commit 7733dde658d4c1b266cf689e200e56aa6fc011a7 Author: Patryk Hegenberg Date: Sun Mar 29 13:45:10 2026 +0200 add Final Infrastructure Setup diff --git a/evaluation/01_ground_truth.py b/evaluation/01_ground_truth.py new file mode 100644 index 0000000..b46ddfc --- /dev/null +++ b/evaluation/01_ground_truth.py @@ -0,0 +1,294 @@ +""" +01_ground_truth.py – Ground-Truth-Aufbereitung und Injektionsfenster +===================================================================== +Liest die GT-CSVs des Scenario-Generators und extrahiert daraus +Injektionsfenster [t_inj, t_stop] pro Szenario und Lauf. + +Ausgabe: + - output/injection_windows.csv + - output/baseline_windows.csv + - output/01_gt_summary.txt +""" + +import sys + +sys.path.insert(0, ".") +from config import * + +GT_OFFSET = pd.Timedelta("-1h") + + +def load_gt_corrected(run_key: str) -> pd.DataFrame: + """Lädt GT-CSV und korrigiert den 1h-Zeitversatz.""" + gt_file, _ = RUNS[run_key] + df = pd.read_csv(ROOT / gt_file, parse_dates=["timestamp"]) + df["timestamp"] = pd.to_datetime(df["timestamp"]).dt.tz_localize(None) + GT_OFFSET + df["timestamp"] = df["timestamp"].dt.tz_localize("UTC") + df["run"] = run_key + return df + + +def extract_injection_windows(run_key: str) -> pd.DataFrame: + """ + Extrahiert Injektionsfenster aus START_ANOMALY / STOP_ANOMALY Paaren. + + Strategie: + 1. Alle START_ANOMALY-Zeilen als t_inj + 2. Nächste STOP_ANOMALY derselben workload_type als t_stop + 3. Szenario-ID aus workload_type ableiten + """ + df = load_gt_corrected(run_key) + df = df.sort_values("timestamp").reset_index(drop=True) + + starts = df[df["action"] == "START_ANOMALY"].copy() + stops = df[df["action"] == "STOP_ANOMALY"].copy() + + if starts.empty: + print( + f" INFO {run_key}: keine START_ANOMALY-Zeilen, " + f"nutze is_anomaly-Blöcke als Fallback" + ) + return _extract_from_anomaly_blocks(df, run_key) + + windows = [] + for _, start_row in starts.iterrows(): + wt = str(start_row.get("workload_type", "")).lower() + t_inj = start_row["timestamp"] + + candidates = stops[ + (stops["workload_type"] == start_row["workload_type"]) + & (stops["timestamp"] > t_inj) + ] + if candidates.empty: + next_starts = starts[starts["timestamp"] > t_inj] + t_stop = ( + next_starts["timestamp"].iloc[0] + if not next_starts.empty + else df["timestamp"].iloc[-1] + ) + else: + t_stop = candidates["timestamp"].iloc[0] + + scenario = _infer_scenario(wt) + duration = (t_stop - t_inj).total_seconds() + + windows.append( + { + "run": run_key, + "scenario": scenario, + "t_inj": t_inj, + "t_stop": t_stop, + "duration_s": duration, + } + ) + + return pd.DataFrame(windows) + + +def _infer_scenario(workload_type: str) -> str: + """Leitet Szenario-ID aus workload_type ab.""" + wt = workload_type.lower().replace("_", "-") + for sid in SCENARIO_IDS: + if sid in wt or sid.replace("-", "_") in wt: + return sid + mapping = { + "slow": "slow-connection", + "latency": "high-latency", + "loss": "packet-loss", + "cong": "congestion", + "outage": "partial-outage", + "flap": "flapping", + "cpu": "cpu-stress", + "io": "io-stress", + "mem": "mem-stress", + } + for key, sid in mapping.items(): + if key in wt: + return sid + return wt if wt else "unknown" + + +def _extract_from_anomaly_blocks(df: pd.DataFrame, run_key: str) -> pd.DataFrame: + """Fallback: zusammenhängende is_anomaly==1-Blöcke als Fenster.""" + GAP = pd.Timedelta("90s") + anomaly_rows = df[df["is_anomaly"] == 1].sort_values("timestamp") + if anomaly_rows.empty: + return pd.DataFrame() + + def get_scenario(row): + wt = str(row.get("workload_type", "")).lower() + return _infer_scenario(wt) + + anomaly_rows = anomaly_rows.copy() + anomaly_rows["scenario"] = anomaly_rows.apply(get_scenario, axis=1) + + windows = [] + for scenario, grp in anomaly_rows.groupby("scenario"): + grp = grp.sort_values("timestamp") + t_start = grp["timestamp"].iloc[0] + t_prev = t_start + for ts in grp["timestamp"].iloc[1:]: + if ts - t_prev > GAP: + windows.append( + { + "run": run_key, + "scenario": scenario, + "t_inj": t_start, + "t_stop": t_prev, + "duration_s": (t_prev - t_start).total_seconds(), + } + ) + t_start = ts + t_prev = ts + windows.append( + { + "run": run_key, + "scenario": scenario, + "t_inj": t_start, + "t_stop": t_prev, + "duration_s": (t_prev - t_start).total_seconds(), + } + ) + return pd.DataFrame(windows) + + +def extract_baseline_windows(run_key: str) -> pd.DataFrame: + """Baseline = scenario_mode == 'training' AND is_anomaly == 0.""" + df = load_gt_corrected(run_key) + df = df.sort_values("timestamp") + baseline = df[(df["scenario_mode"] == "training") & (df["is_anomaly"] == 0)] + if baseline.empty: + return pd.DataFrame() + return pd.DataFrame( + [ + { + "run": run_key, + "t_start": baseline["timestamp"].iloc[0], + "t_end": baseline["timestamp"].iloc[-1], + "duration_s": ( + baseline["timestamp"].iloc[-1] - baseline["timestamp"].iloc[0] + ).total_seconds(), + } + ] + ) + + +def extract_phase_windows(run_key: str) -> pd.DataFrame: + """Extrahiert Workload-Phasen (BW, IOPS, BATCH) aus dem GT.""" + df = load_gt_corrected(run_key) + df = df.sort_values("timestamp").reset_index(drop=True) + + starts = df[df["action"].str.startswith("START_PHASE_", na=False)].copy() + ends = df[df["action"].str.startswith("END_PHASE_", na=False)].copy() + + windows = [] + for _, start_row in starts.iterrows(): + action = start_row["action"] + phase_type = action.replace("START_PHASE_", "") + t_start = start_row["timestamp"] + + end_action = f"END_PHASE_{phase_type}" + candidates = ends[ + (ends["action"] == end_action) & (ends["timestamp"] > t_start) + ] + + if not candidates.empty: + t_end = candidates.iloc[0]["timestamp"] + else: + next_events = df[df["timestamp"] > t_start] + t_end = ( + next_events["timestamp"].iloc[0] + if not next_events.empty + else df["timestamp"].iloc[-1] + ) + + windows.append( + { + "run": run_key, + "phase": phase_type, + "t_start": t_start, + "t_end": t_end, + "duration_s": (t_end - t_start).total_seconds(), + } + ) + + return pd.DataFrame(windows) + + +def main(): + print_section("01 – Ground-Truth-Aufbereitung") + print( + f" Zeitversatz-Korrektur: GT-Zeitstempel + {GT_OFFSET} (Host UTC+1 → VM UTC, Subtraktion 1h)\n" + ) + + all_windows, all_baselines = [], [] + + for run_key in RUNS: + try: + w = extract_injection_windows(run_key) + b = extract_baseline_windows(run_key) + all_windows.append(w) + all_baselines.append(b) + base_min = b["duration_s"].sum() / 60 if not b.empty else 0 + print( + f" {run_key}: {len(w)} Injektionsfenster, Baseline {base_min:.1f} min" + ) + except FileNotFoundError as e: + print(f" WARNUNG – {run_key}: {e}") + + windows_df = pd.concat(all_windows, ignore_index=True) + baselines_df = pd.concat(all_baselines, ignore_index=True) + + windows_df.to_csv(OUTPUT_DIR / "injection_windows.csv", index=False) + baselines_df.to_csv(OUTPUT_DIR / "baseline_windows.csv", index=False) + + all_phases = [] + for run_key in RUNS: + try: + p = extract_phase_windows(run_key) + if not p.empty: + all_phases.append(p) + except Exception as e: + print(f" WARNUNG Phasen {run_key}: {e}") + if all_phases: + phases_df = pd.concat(all_phases, ignore_index=True) + phases_df.to_csv(OUTPUT_DIR / "phase_windows.csv", index=False) + print(f" → {len(phases_df)} Phasen-Fenster extrahiert") + + print_section("Injektionsfenster pro Szenario") + summary = ( + windows_df.groupby("scenario") + .agg( + n_windows=("run", "count"), + dur_mean_s=("duration_s", "mean"), + dur_std_s=("duration_s", "std"), + dur_total_min=("duration_s", lambda x: x.sum() / 60), + ) + .round(1) + ) + print(summary.to_string()) + + print_section("Sanity-Check Fensterlängen") + for _, row in summary.iterrows(): + if row["dur_mean_s"] < 5: + print( + f" WARNUNG: {row.name} – mittlere Dauer {row['dur_mean_s']:.1f}s " + f"sehr kurz (START/STOP-Paare korrekt?)" + ) + else: + print( + f" OK: {row.name} – {row['dur_mean_s']:.0f}s mittlere Dauer, " + f"{row['n_windows']} Fenster" + ) + + with open(OUTPUT_DIR / "01_gt_summary.txt", "w") as f: + f.write(f"GT-Zeitversatz-Korrektur: +{GT_OFFSET}\n") + f.write(summary.to_string()) + f.write("\n\nAlle Injektionsfenster:\n") + f.write(windows_df.to_string()) + + print(f"\n→ Gespeichert: injection_windows.csv, baseline_windows.csv") + + +if __name__ == "__main__": + main() diff --git a/evaluation/02_throughput.py b/evaluation/02_throughput.py new file mode 100644 index 0000000..d7d9a92 --- /dev/null +++ b/evaluation/02_throughput.py @@ -0,0 +1,218 @@ +""" +02_throughput.py – Primary Workload Protection (REQ-NF01) +========================================================= + +Ausgabe: + - output/02_throughput_table.csv + - output/02_throughput_comparison_boxplot.pdf/png + - output/02_throughput_stats.txt +""" + +import sys +from pathlib import Path + +sys.path.insert(0, ".") +from config import * + + +def _to_utc(ts): + ts = pd.Timestamp(ts) + return ts.tz_localize("UTC") if ts.tzinfo is None else ts.tz_convert("UTC") + + +def load_phase_throughput(run_key: str, phase_windows: pd.DataFrame) -> pd.DataFrame: + """ + Berechnet den mittleren Durchsatz pro Phase eines Laufs aus baseline_metrics.csv. + """ + try: + bm = load_baseline_metrics(run_key) + except Exception as e: + print(f" WARNUNG {run_key}: baseline_metrics.csv fehlt ({e})") + return pd.DataFrame() + + bm["timestamp"] = bm["timestamp"].apply(_to_utc) + + run_phases = phase_windows[phase_windows["run"] == run_key] + + results = [] + for _, row in run_phases.iterrows(): + t0 = _to_utc(row["t_start"]) + t1 = _to_utc(row["t_end"]) + mask = (bm["timestamp"] >= t0) & (bm["timestamp"] <= t1) + phase_data = bm.loc[mask, "network_sent_mb_s"] + + if not phase_data.empty: + avg_tp = phase_data.mean() + if avg_tp > 5.0: + results.append( + { + "run": run_key, + "phase": row["phase"], + "throughput_mbs": avg_tp, + "is_pipeline_active": run_key not in VALIDATION_RUNS, + } + ) + + return pd.DataFrame(results) + + +def main(): + print_section("02 – Transferdurchsatz-Vergleich (REQ-NF01)") + print(" Ziel: Durchsatz mit vs. ohne Pipeline ( network_sent_mb_s )") + print(" Referenz: validation_run1-3 (FULL_CYCLE, Pipeline INAKTIV)") + print(" Test: full_cycle_run1-3 (FULL_CYCLE, Pipeline AKTIV)") + + phase_windows = pd.read_csv(OUTPUT_DIR / "phase_windows.csv") + + REFERENCE_RUNS = VALIDATION_RUNS + TEST_RUNS = WORKLOAD_PROFILES["full_cycle"] + + all_results = [] + for run_key in REFERENCE_RUNS + TEST_RUNS: + res = load_phase_throughput(run_key, phase_windows) + if not res.empty: + all_results.append(res) + + if not all_results: + print(" FEHLER: Keine Durchsatzdaten gefunden.") + return + + df = pd.concat(all_results, ignore_index=True) + + comparison = [] + + PHASE_MAPPING = { + "BW": "High Bandwidth", + "IOPS": "High IOPS", + "BATCH_OUT": "Batch Out", + } + + for phase_key, profile_label in PHASE_MAPPING.items(): + sub = df[df["phase"] == phase_key] + if sub.empty: + continue + + def get_run_stats(data_sub): + run_medians = data_sub.groupby("run")["throughput_mbs"].median() + return run_medians.mean(), run_medians.std(), run_medians.count() + + with_p_sub = sub[sub["is_pipeline_active"] == True] + without_p_sub = sub[sub["is_pipeline_active"] == False] + + if with_p_sub.empty or without_p_sub.empty: + continue + + mean_med_with, std_med_with, n_runs_with = get_run_stats(with_p_sub) + mean_med_without, std_med_without, n_runs_without = get_run_stats(without_p_sub) + + diff_pct = (mean_med_with - mean_med_without) / mean_med_without * 100 + + stat, p_val = wilcoxon_test( + with_p_sub["throughput_mbs"].values, without_p_sub["throughput_mbs"].values + ) + + r_val = rosenthal_r(stat, len(with_p_sub), len(without_p_sub)) + + comparison.append( + { + "Profil": profile_label, + "Runs (Test/Ref)": f"{int(n_runs_with)}/{int(n_runs_without)}", + "Median_Ref (MB/s)": f"{mean_med_without:.1f} ± {std_med_without:.2f}", + "Median_Test (MB/s)": f"{mean_med_with:.1f} ± {std_med_with:.2f}", + "Diff (%)": diff_pct, + "p-Wert (MWU)": p_val, + "Effektstärke (r)": r_val, + } + ) + + comp_df = pd.DataFrame(comparison) + print("\nVergleichstabelle Durchsatz (validation_runs vs. full_cycle_runs):") + print( + comp_df.to_string( + index=False, + formatters={ + "Diff (%)": "{:+.2f}%".format, + "p-Wert (MWU)": "{:.4f}".format, + "Effektstärke (r)": "{:.3f}".format, + }, + ) + ) + + comp_df.to_csv(OUTPUT_DIR / "02_throughput_table.csv", index=False) + + plt.figure(figsize=(10, 6)) + df_plot = df[df["phase"].isin(PHASE_MAPPING.keys())].copy() + df_plot["Profil"] = df_plot["phase"].map(PHASE_MAPPING) + df_plot["Status"] = df_plot["is_pipeline_active"].map( + {True: "Pipeline Aktiv (full_cycle)", False: "Ohne Pipeline (validation)"} + ) + + sns.boxplot( + data=df_plot, + x="Profil", + y="throughput_mbs", + hue="Status", + palette="Set2", + showmeans=True, + meanprops={ + "marker": "o", + "markerfacecolor": "white", + "markeredgecolor": "black", + "markersize": "5", + }, + ) + plt.title( + "Durchsatz-Vergleich (REQ-NF01): FULL_CYCLE mit vs. ohne Pipeline\n" + "(Statistik: Mann-Whitney-U-Test)" + ) + plt.ylabel("Durchsatz (MB/s)") + plt.grid(axis="y", alpha=0.3) + save_fig("02_throughput_comparison_boxplot") + + # Report + with open(OUTPUT_DIR / "02_throughput_stats.txt", "w") as f: + f.write("Evaluation REQ-NF01: Workload Protection (Robust Statistics)\n") + f.write("=" * 65 + "\n\n") + f.write("Vergleichsgruppen:\n") + f.write(f" Referenz (Pipeline inaktiv): {', '.join(REFERENCE_RUNS)}\n") + f.write(f" Test (Pipeline aktiv): {', '.join(TEST_RUNS)}\n") + f.write(f" Workload-Profil: FULL_CYCLE (identisch)\n\n") + f.write(comp_df.to_string(index=False)) + f.write("\n\nInterpretation:\n") + for _, row in comp_df.iterrows(): + is_significant = row["p-Wert (MWU)"] < ALPHA + status = ( + "ERFÜLLT" + if (row["Diff (%)"] > -1.0 or not is_significant) + else "KRITISCH" + ) + + f.write(f"- {row['Profil']}:\n") + f.write( + f" Abweichung: {row['Diff (%)']:+.2f}%, p-Wert: {row['p-Wert (MWU)']:.4f}\n" + ) + f.write( + f" Effektstärke r: {row['Effektstärke (r)']:.3f} ({effect_size_label(row['Effektstärke (r)'] or 0)})\n" + ) + f.write(f" Ergebnis: REQ-NF01 {status}\n") + + f.write("\nMethodischer Hinweis:\n") + f.write( + "Aufgrund der Nicht-Normalverteilung der Durchsatzdaten wurde der Mann-Whitney-U-Test\n" + ) + f.write( + "verwendet. Als Effektstärke wird Rosenthal's r (Z / sqrt(N)) berechnet.\n" + ) + f.write("Ein p-Wert > 0.05 indiziert, dass kein statistisch signifikanter\n") + f.write( + "Unterschied zwischen den Gruppen (mit/ohne Pipeline) nachgewiesen werden kann.\n" + ) + f.write( + "Beide Vergleichsgruppen verwenden dasselbe FULL_CYCLE-Workload-Profil.\n" + ) + + print(f"\n→ Ergebnisse gespeichert in {OUTPUT_DIR}/02_throughput_*") + + +if __name__ == "__main__": + main() diff --git a/evaluation/03_resource_overhead.py b/evaluation/03_resource_overhead.py new file mode 100644 index 0000000..0aba7c3 --- /dev/null +++ b/evaluation/03_resource_overhead.py @@ -0,0 +1,570 @@ +""" +03_resource_overhead.py – Ressourceneffizienz (REQ-NF01, NF04, NF05) +============================================================================== +Differenz-basierte Overhead-Berechnung: + + Ebene 0: system_baseline + OS + MFT-Software idle, keine Pipeline, kein Transfer + → Absoluter Nullpunkt + + Ebene 1: pipeline_idle_baseline − system_baseline + = PIPELINE-OVERHEAD (isoliert) + → Beantwortet REQ-NF1 und REQ-NF2 direkt + + Ebene 2: workload_baseline_phase − pipeline_idle_baseline + = TRANSFER-OVERHEAD (MFT-Engine + TIXstream unter Last) + → Trennt Pipeline-Overhead vom Transfer-Overhead + + Ebene 3: workload_injection_phase − workload_baseline_phase + = CHAOS-IMPACT auf Ressourcen + +Alle RAM- und CPU-Werte werden als DIFFERENZEN zum jeweiligen Nullpunkt +dargestellt, nicht als absolute Werte. + +Ausgabe: + - output/03_resource_table.csv + - output/03_resource_overhead_stacked.pdf/png (gestapelte Differenzen) + - output/03_cpu_overhead_timeseries_{run}.pdf/png + - output/03_resource_stats.txt +""" + +import sys + +sys.path.insert(0, ".") +from config import * + +SYSTEM_BASELINE_DIR = ROOT / "pipeline_system_baseline" +IDLE_BASELINE_DIR = ROOT / "pipeline_idle_pipeline_baseline" + + +def _to_utc(ts): + ts = pd.Timestamp(ts) + return ts.tz_localize("UTC") if ts.tzinfo is None else ts.tz_convert("UTC") + + +def load_extra_baseline(directory: Path) -> pd.DataFrame: + path = directory / "baseline_metrics.csv" + df = pd.read_csv(path) + df["timestamp"] = pd.to_datetime(df["timestamp"], unit="s", utc=True) + return df + + +GT_OFFSET = pd.Timedelta("-1h") + + +def load_workload_metrics(run_key: str) -> pd.DataFrame: + _, pipeline_dir = RUNS[run_key] + path = ROOT / pipeline_dir / "baseline_metrics.csv" + df = pd.read_csv(path) + df["timestamp"] = pd.to_datetime(df["timestamp"], unit="s", utc=True) + df["run"] = run_key + return df + + +def get_phase_boundaries(run_key: str) -> dict: + """ + Liest EXPERIMENT_BASELINE_END und EXPERIMENT_CHAOS_START/END + aus der GT-CSV und gibt UTC-Zeitstempel zurück. + + Rückgabe: + baseline_end: Ende der Baseline-Phase (UTC) + chaos_intervals: Liste von (start_utc, end_utc, scenario) Tupeln + """ + gt_file, _ = RUNS[run_key] + gt = pd.read_csv(ROOT / gt_file, parse_dates=["timestamp"]) + gt["timestamp"] = ( + pd.to_datetime(gt["timestamp"]).dt.tz_localize(None) + GT_OFFSET + ).dt.tz_localize("UTC") + + bl_end_rows = gt[gt["action"] == "EXPERIMENT_BASELINE_END"] + if bl_end_rows.empty: + bl_end_rows = gt[gt["action"].isin(["START_ANOMALY", "EXPERIMENT_CHAOS_START"])] + baseline_end = bl_end_rows["timestamp"].iloc[0] if not bl_end_rows.empty else None + + chaos_starts = gt[gt["action"] == "EXPERIMENT_CHAOS_START"].copy() + chaos_ends = gt[gt["action"] == "EXPERIMENT_CHAOS_END"].copy() + chaos_intervals = [] + for _, row in chaos_starts.iterrows(): + scenario = str(row.get("workload_type", row.get("scenario", "unknown"))).lower() + t_start = row["timestamp"] + matching_ends = chaos_ends[ + (chaos_ends["workload_type"] == row.get("workload_type", "")) + & (chaos_ends["timestamp"] > t_start) + ] + t_end = ( + matching_ends["timestamp"].iloc[0] if not matching_ends.empty else t_start + ) + chaos_intervals.append((t_start, t_end, scenario)) + + return { + "baseline_end": baseline_end, + "chaos_intervals": chaos_intervals, + } + + +def split_by_phase( + bm: pd.DataFrame, + run_key: str, + windows_df: pd.DataFrame, + baseline_windows: pd.DataFrame, +) -> dict: + """ + Phasentrennung anhand von EXPERIMENT_BASELINE_END aus der GT-CSV. + Alles vor baseline_end → baseline + Zeiträume in chaos_intervals → injection + """ + boundaries = get_phase_boundaries(run_key) + baseline_end = boundaries["baseline_end"] + chaos_intervals = boundaries["chaos_intervals"] + + bm = bm.copy() + ts = bm["timestamp"] + + if baseline_end is None: + print(f" WARNUNG {run_key}: kein EXPERIMENT_BASELINE_END gefunden") + return {"baseline": bm, "injection": pd.DataFrame()} + + baseline_safe_end = baseline_end - pd.Timedelta("30s") + + in_baseline = ts < baseline_safe_end + + in_injection = pd.Series(False, index=bm.index) + for t_start, t_end, scenario in chaos_intervals: + in_injection |= (ts >= t_start) & (ts <= t_end) + + in_injection &= ~in_baseline + + n_bl = int(in_baseline.sum()) + n_inj = int(in_injection.sum()) + bm_min = ts.min().strftime("%H:%M") + bm_max = ts.max().strftime("%H:%M") + bl_end_h = baseline_end.strftime("%H:%M") + print( + f" {run_key}: bm={bm_min}-{bm_max} UTC, " + f"baseline_end={bl_end_h} UTC → baseline={n_bl}, injection={n_inj}" + ) + + return { + "baseline": bm[in_baseline], + "injection": bm[in_injection], + } + + +def compute_reference_stats(df: pd.DataFrame) -> dict: + """Berechnet Median und P95 für CPU und RAM.""" + return { + "cpu_median": float(df["cpu_percent"].median()), + "cpu_p95": float(df["cpu_percent"].quantile(0.95)), + "cpu_arr": df["cpu_percent"].values, + "ram_median": float(df["memory_used_mb"].median()), + "ram_p95": float(df["memory_used_mb"].quantile(0.95)), + "ram_arr": df["memory_used_mb"].values, + } + + +def analyze_profile( + profile_name: str, + run_keys: list, + windows_df: pd.DataFrame, + baseline_windows: pd.DataFrame, + sys_ref: dict, + idle_ref: dict, +) -> dict: + """ + Berechnet CPU- und RAM-Differenzen auf allen Ebenen für ein Profil. + """ + cpu_bl_abs, cpu_inj_abs = [], [] + ram_bl_abs, ram_inj_abs = [], [] + + cpu_runs, ram_runs = {}, {} + + for rk in run_keys: + try: + bm = load_workload_metrics(rk) + except FileNotFoundError: + continue + phases = split_by_phase(bm, rk, windows_df, baseline_windows) + + if not phases["baseline"].empty: + cpu_runs[rk] = phases["baseline"]["cpu_percent"].median() + ram_runs[rk] = phases["baseline"]["memory_used_mb"].median() + + cpu_bl_abs.extend(phases["baseline"]["cpu_percent"].tolist()) + cpu_inj_abs.extend(phases["injection"]["cpu_percent"].tolist()) + ram_bl_abs.extend(phases["baseline"]["memory_used_mb"].tolist()) + ram_inj_abs.extend(phases["injection"]["memory_used_mb"].tolist()) + + if len(cpu_bl_abs) < 5: + return {} + + cpu_run_vals = list(cpu_runs.values()) + ram_run_vals = list(ram_runs.values()) + cpu_stability = f"{np.mean(cpu_run_vals):.2f} ± {np.std(cpu_run_vals):.2f}" + ram_stability = f"{np.mean(ram_run_vals):.1f} ± {np.std(ram_run_vals):.1f}" + + cpu_bl = np.array(cpu_bl_abs) + cpu_inj = np.array(cpu_inj_abs) + ram_bl = np.array(ram_bl_abs) + ram_inj = np.array(ram_inj_abs) + + cpu_transfer_overhead = cpu_bl - idle_ref["cpu_median"] + ram_transfer_overhead = ram_bl - idle_ref["ram_median"] + cpu_chaos = ( + (cpu_inj - float(np.median(cpu_bl))) if len(cpu_inj) > 0 else np.array([]) + ) + ram_chaos = ( + (ram_inj - float(np.median(ram_bl))) if len(ram_inj) > 0 else np.array([]) + ) + + return { + "profile": profile_name, + "n_bl": len(cpu_bl), + "n_inj": len(cpu_inj), + "cpu_stability": cpu_stability, + "ram_stability": ram_stability, + "cpu_bl_abs_median": float(np.median(cpu_bl)), + "cpu_bl_abs_p95": float(np.percentile(cpu_bl, 95)), + "ram_bl_abs_median": float(np.median(ram_bl)), + "ram_bl_abs_p95": float(np.percentile(ram_bl, 95)), + "cpu_transfer_med": float(np.median(cpu_transfer_overhead)), + "cpu_transfer_p95": float(np.percentile(cpu_transfer_overhead, 95)), + "ram_transfer_med": float(np.median(ram_transfer_overhead)), + "ram_transfer_p95": float(np.percentile(ram_transfer_overhead, 95)), + "cpu_chaos_med": float(np.nanmedian(cpu_chaos)) + if len(cpu_chaos) > 0 + else np.nan, + "cpu_chaos_p95": float(np.nanpercentile(cpu_chaos, 95)) + if len(cpu_chaos) > 0 + else np.nan, + "ram_chaos_med": float(np.nanmedian(ram_chaos)) + if len(ram_chaos) > 0 + else np.nan, + "ram_chaos_p95": float(np.nanpercentile(ram_chaos, 95)) + if len(ram_chaos) > 0 + else np.nan, + # Arrays für Plot + "_cpu_bl_abs": cpu_bl, + "_ram_bl_abs": ram_bl, + "_cpu_transfer": cpu_transfer_overhead, + "_ram_transfer": ram_transfer_overhead, + "_cpu_chaos": cpu_chaos, + } + + +def plot_stacked_overhead( + sys_ref: dict, idle_ref: dict, pipeline_overhead: dict, results: list +): + """ + Gestapeltes Balkendiagramm das die Overhead-Schichten visualisiert: + Ebene 0: System-Baseline (grau) + Ebene 1: + Pipeline-Overhead (grün) + Ebene 2: + Transfer-Overhead pro Profil (blau) + Ebene 3: + Chaos-Impact (rot, gestrichelt) + """ + fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(13, 6)) + + profiles = [r["profile"] for r in results if r] + x = np.arange(len(profiles)) + width = 0.55 + + for ax, metric, unit in [ + (ax1, "cpu", "%"), + (ax2, "ram", "MB"), + ]: + sys_val = sys_ref[f"{metric}_median"] + pipeline_val = pipeline_overhead[f"{metric}_overhead_median"] + sys_arr = np.full(len(x), sys_val) + pipe_arr = np.full(len(x), pipeline_val) + transfer_med = np.array( + [r[f"{metric}_transfer_med"] for r in results if r], dtype=float + ) + chaos_med = np.array( + [r[f"{metric}_chaos_med"] for r in results if r], dtype=float + ) + chaos_clean = np.where(np.isnan(chaos_med), 0.0, chaos_med) + transfer_plot = np.maximum(transfer_med, 0.0) + + ax.bar( + x, + sys_arr, + width, + label=f"System-Baseline ({sys_val:.1f} {unit})", + color="#B0BEC5", + zorder=2, + ) + ax.bar( + x, + pipe_arr, + width, + bottom=sys_arr, + label=f"Pipeline-Overhead ({pipeline_val:+.1f} {unit})", + color="#66BB6A", + zorder=2, + ) + ax.bar( + x, + transfer_plot, + width, + bottom=sys_arr + pipe_arr, + label="Transfer-Overhead (Median, ≥0)", + color="#42A5F5", + zorder=2, + ) + + if np.any(chaos_clean > 0): + totals = sys_arr + pipe_arr + transfer_plot + ax.errorbar( + x, + totals, + yerr=[np.zeros(len(x)), chaos_clean], + fmt="none", + color="firebrick", + capsize=4, + lw=1.5, + label="Chaos-Impact (Median)", + ) + else: + ax.text( + 0.5, + 0.97, + "Chaos-Impact: keine Injektionsdaten (Zeitfenster außerhalb Aufzeichnung)", + transform=ax.transAxes, + ha="center", + va="top", + fontsize=7, + color="gray", + bbox=dict(boxstyle="round,pad=0.3", fc="white", alpha=0.7), + ) + + ax.set_xticks(x) + ax.set_xticklabels(profiles, rotation=15) + ax.set_ylabel( + f"{'CPU-Auslastung' if metric == 'cpu' else 'RAM-Verbrauch'} ({unit})" + ) + ax.set_title(f"{'CPU' if metric == 'cpu' else 'RAM'}: Overhead-Schichten") + ax.legend(fontsize=7.5, loc="upper left") + ax.set_ylim(bottom=0) + + plt.suptitle( + "Ressourcen-Overhead-Analyse: System → Pipeline → Transfer → Chaos", fontsize=11 + ) + plt.tight_layout() + save_fig("03_resource_overhead_stacked") + + +def plot_cpu_overhead_timeseries( + run_key: str, windows_df: pd.DataFrame, sys_ref: dict, idle_ref: dict +): + """ + Zeitreihe des CPU-OVERHEADS (nicht absolute Werte). + Zeigt: CPU_workload − sys_baseline_median als Differenz. + Referenzlinien: Pipeline-Overhead (idle−sys), REQ-NF1-Grenze. + """ + try: + bm = load_workload_metrics(run_key) + except FileNotFoundError: + return + + inj = windows_df[windows_df["run"] == run_key].copy() + inj["t_inj"] = inj["t_inj"].apply(_to_utc) + inj["t_stop"] = inj["t_stop"].apply(_to_utc) + + bm["cpu_overhead"] = bm["cpu_percent"] - sys_ref["cpu_median"] + pipeline_overhead_val = idle_ref["cpu_median"] - sys_ref["cpu_median"] + + fig, ax = plt.subplots(figsize=(14, 4)) + ts_r = bm.set_index("timestamp")["cpu_overhead"].resample("10s").median() + ax.plot( + ts_r.index, + ts_r.values, + color=PALETTE["pipeline"], + lw=0.8, + label="CPU-Overhead (workload − sys_baseline)", + ) + + ax.axhline( + pipeline_overhead_val, + color="#66BB6A", + linestyle="--", + lw=1.2, + label=f"Pipeline-Overhead-Referenz ({pipeline_overhead_val:+.1f}%)", + ) + ax.axhline(0, color="gray", linestyle=":", lw=0.7, alpha=0.5) + + ylim_top = float(ts_r.quantile(0.99)) * 1.15 if not ts_r.empty else 10 + for _, row in inj.iterrows(): + ax.axvspan(row["t_inj"], row["t_stop"], alpha=0.10, color=PALETTE["anomaly"]) + ax.text( + row["t_inj"], + ylim_top, + row["scenario"], + rotation=90, + fontsize=5, + va="top", + color="firebrick", + alpha=0.6, + ) + + ax.xaxis.set_major_formatter(mdates.DateFormatter("%H:%M")) + ax.set_xlabel("Zeit (UTC)") + ax.set_ylabel("CPU-Overhead relativ zu System-Baseline (%)") + ax.set_title(f"CPU-Overhead-Zeitreihe – {run_key}") + ax.set_ylim(bottom=-5, top=max(15, ylim_top)) + ax.legend(loc="upper right", fontsize=8) + save_fig(f"03_cpu_overhead_timeseries_{run_key}") + + +def print_and_save_table( + sys_ref: dict, idle_ref: dict, pipeline_overhead: dict, results: list +): + + print_section("Referenz-Messungen") + print( + f" system_baseline: " + f"CPU={sys_ref['cpu_median']:.2f}% (P95={sys_ref['cpu_p95']:.2f}%), " + f"RAM={sys_ref['ram_median']:.0f} MB (P95={sys_ref['ram_p95']:.0f} MB)" + ) + print( + f" pipeline_idle_baseline: " + f"CPU={idle_ref['cpu_median']:.2f}% (P95={idle_ref['cpu_p95']:.2f}%), " + f"RAM={idle_ref['ram_median']:.0f} MB (P95={idle_ref['ram_p95']:.0f} MB)" + ) + + print_section("Pipeline-Overhead (idle − system) → REQ-NF01") + cpu_ov_med = pipeline_overhead["cpu_overhead_median"] + cpu_ov_p95 = pipeline_overhead["cpu_overhead_p95"] + ram_ov_med = pipeline_overhead["ram_overhead_median"] + ram_ov_p95 = pipeline_overhead["ram_overhead_p95"] + print(f" CPU Overhead: Median={cpu_ov_med:+.2f}%, P95={cpu_ov_p95:+.2f}%") + print(f" RAM Overhead: Median={ram_ov_med:+.1f} MB, P95={ram_ov_p95:+.1f} MB") + + req_nf01 = cpu_ov_p95 < 10.0 + print( + f" REQ-NF01 (Pipeline-CPU-Overhead < 10%): " + f"{'OK' if req_nf01 else 'VERLETZT'} (P95={cpu_ov_p95:.2f}%)" + ) + + print_section( + "Transfer-Overhead pro Workload-Profil (workload_baseline − pipeline_idle)" + ) + rows = [] + for r in results: + if not r: + continue + rows.append( + { + "Profil": r["profile"], + "CPU Stab. (Med±Std)": r["cpu_stability"], + "RAM Stab. (Med±Std)": r["ram_stability"], + "CPU Transfer Med.(%)": f"{r['cpu_transfer_med']:+.2f}", + "CPU Transfer P95(%)": f"{r['cpu_transfer_p95']:+.2f}", + "RAM Transfer Med.(MB)": f"{r['ram_transfer_med']:+.1f}", + "RAM Transfer P95(MB)": f"{r['ram_transfer_p95']:+.1f}", + } + ) + + tdf = pd.DataFrame(rows) + print(tdf.to_string(index=False)) + tdf.to_csv(OUTPUT_DIR / "03_resource_table.csv", index=False) + + with open(OUTPUT_DIR / "03_resource_stats.txt", "w") as f: + f.write("Ressourcenverbrauch-Analyse (differenzbasiert)\n") + f.write("=" * 65 + "\n\n") + f.write( + f"system_baseline: CPU={sys_ref['cpu_median']:.2f}%, " + f"RAM={sys_ref['ram_median']:.0f} MB\n" + ) + f.write( + f"pipeline_idle: CPU={idle_ref['cpu_median']:.2f}%, " + f"RAM={idle_ref['ram_median']:.0f} MB\n\n" + ) + f.write(f"Pipeline-Overhead (idle − system):\n") + f.write(f" CPU: Median={cpu_ov_med:+.2f}%, P95={cpu_ov_p95:+.2f}%\n") + f.write(f" RAM: Median={ram_ov_med:+.1f} MB, P95={ram_ov_p95:+.1f} MB\n") + f.write(f" REQ-NF01 (CPU Overhead): {'OK' if req_nf01 else 'VERLETZT'}\n\n") + f.write("Transfer-Overhead pro Profil:\n") + f.write(tdf.to_string(index=False)) + + +def main(): + print_section("03 – Ressourcenverbrauch (REQ-NF01, NF04, NF05)") + print(" Methode: Differenz-basierte Overhead-Schichten") + print(" Pipeline-Overhead = pipeline_idle − system_baseline") + print(" Transfer-Overhead = workload_baseline − pipeline_idle") + print(" Chaos-Impact = workload_injection − workload_baseline\n") + + windows_df = pd.read_csv( + OUTPUT_DIR / "injection_windows.csv", parse_dates=["t_inj", "t_stop"] + ) + baseline_windows = pd.read_csv( + OUTPUT_DIR / "baseline_windows.csv", parse_dates=["t_start", "t_end"] + ) + for col in ["t_inj", "t_stop"]: + windows_df[col] = windows_df[col].apply(_to_utc) + for col in ["t_start", "t_end"]: + baseline_windows[col] = baseline_windows[col].apply(_to_utc) + + try: + sys_df = load_extra_baseline(SYSTEM_BASELINE_DIR) + idle_df = load_extra_baseline(IDLE_BASELINE_DIR) + except FileNotFoundError as e: + print(f" FEHLER: {e}") + return + + sys_ref = compute_reference_stats(sys_df) + idle_ref = compute_reference_stats(idle_df) + + pipeline_overhead = { + "cpu_overhead_median": idle_ref["cpu_median"] - sys_ref["cpu_median"], + "cpu_overhead_p95": idle_ref["cpu_p95"] - sys_ref["cpu_median"], + "ram_overhead_median": idle_ref["ram_median"] - sys_ref["ram_median"], + "ram_overhead_p95": idle_ref["ram_p95"] - sys_ref["ram_median"], + } + + print( + f" system_baseline: CPU={sys_ref['cpu_median']:.2f}%, " + f"RAM={sys_ref['ram_median']:.0f} MB" + ) + print( + f" pipeline_idle: CPU={idle_ref['cpu_median']:.2f}%, " + f"RAM={idle_ref['ram_median']:.0f} MB" + ) + print( + f" Pipeline-Overhead CPU: {pipeline_overhead['cpu_overhead_median']:+.2f}% " + f"(P95={pipeline_overhead['cpu_overhead_p95']:+.2f}%)" + ) + print( + f" Pipeline-Overhead RAM: {pipeline_overhead['ram_overhead_median']:+.1f} MB " + f"(P95={pipeline_overhead['ram_overhead_p95']:+.1f} MB)\n" + ) + + results = [] + for profile, run_keys in WORKLOAD_PROFILES.items(): + print(f" Profil: {profile}") + r = analyze_profile( + profile, run_keys, windows_df, baseline_windows, sys_ref, idle_ref + ) + results.append(r) + if r: + print( + f" Transfer-Overhead CPU: {r['cpu_transfer_med']:+.2f}% " + f"(P95={r['cpu_transfer_p95']:+.2f}%)" + ) + print( + f" Transfer-Overhead RAM: {r['ram_transfer_med']:+.1f} MB " + f"(P95={r['ram_transfer_p95']:+.1f} MB)" + ) + plot_cpu_overhead_timeseries(run_keys[0], windows_df, sys_ref, idle_ref) + + print_and_save_table(sys_ref, idle_ref, pipeline_overhead, results) + plot_stacked_overhead(sys_ref, idle_ref, pipeline_overhead, results) + + print( + f"\n→ Gespeichert: 03_resource_table.csv, " + f"03_resource_overhead_stacked.pdf/png, " + f"03_cpu_overhead_timeseries_*.pdf/png" + ) + + +if __name__ == "__main__": + main() diff --git a/evaluation/04_detection_behavior.py b/evaluation/04_detection_behavior.py new file mode 100644 index 0000000..e39194c --- /dev/null +++ b/evaluation/04_detection_behavior.py @@ -0,0 +1,442 @@ +""" +04_detection_behavior.py – Detektionsverhalten & Latenz (REQ-NF06, TF3, TF4) +========================================================== +GT-Quelle: injection_windows.csv (aus 01_ground_truth.py) + – Fenster aus START_ANOMALY/STOP_ANOMALY-Paaren + +Matching-Strategie (Overlap): + Ein Feature-Fenster [ws, ws+W] gilt als GT-anomal wenn: + ws < t_stop AND ws + W > t_inj + +Ausgabe: + - output/04_detection_latency_table.csv + - output/04_detection_guete_table.csv + - output/04_detection_latency_boxplot.pdf/png + - output/04_sead_weights_{run_key}.pdf/png + - output/04_detection_stats.txt +""" + +import re +import sys + +sys.path.insert(0, ".") +from config import * + +DETECTORS = ["MAD", "RRCF-fast", "RRCF-mid", "RRCF-slow", "COPOD"] +WINDOW_S = 30 + + +def _to_utc(ts): + ts = pd.Timestamp(ts) + return ts.tz_localize("UTC") if ts.tzinfo is None else ts.tz_convert("UTC") + + +# ── Features mit GT-Labels ──────────────────────────────────────────────────── + + +def build_labeled_features(run_key: str, gt_intervals: pd.DataFrame) -> pd.DataFrame: + """ + Lädt features aus DuckDB und verknüpft GT-Labels via Overlap-Matching. + Pipeline-Alarme kommen aus anomalies.jsonl. + """ + try: + feats = load_duckdb_table(run_key, "features") + except Exception as e: + print(f" WARNUNG features: {e}") + return pd.DataFrame() + + feats["window_start"] = feats["window_start"].apply(_to_utc) + feats = feats.sort_values("window_start").reset_index(drop=True) + window_td = pd.Timedelta(seconds=WINDOW_S) + + feats["gt_label"] = 0 + feats["gt_scenario"] = "" + for _, iv in gt_intervals.iterrows(): + t_inj = _to_utc(iv["t_inj"]) + t_stop = _to_utc(iv["t_stop"]) + mask = (feats["window_start"] < t_stop) & ( + feats["window_start"] + window_td > t_inj + ) + feats.loc[mask, "gt_label"] = 1 + feats.loc[mask, "gt_scenario"] = iv["scenario"] + + try: + anom = load_anomalies(run_key) + anom = anom.sort_values("timestamp") + + feats = feats.sort_values("window_start") + + anom["timestamp"] = anom["timestamp"].dt.as_unit("ns") + feats["window_start"] = feats["window_start"].dt.as_unit("ns") + + merged = pd.merge_asof( + anom[["timestamp", "is_anomaly", "score"]].rename( + columns={"timestamp": "anom_ts"} + ), + feats[["window_start"]], + left_on="anom_ts", + right_on="window_start", + direction="backward", + tolerance=pd.Timedelta("35s"), + ) + + agg = merged.groupby("window_start", as_index=False).agg( + pipeline_is_anomaly=("is_anomaly", "max"), + pipeline_score=("score", "max"), + ) + + agg["pipeline_is_anomaly"] = ( + agg["pipeline_is_anomaly"].fillna(False).astype(bool) + ) + + feats = feats.merge( + agg[["window_start", "pipeline_is_anomaly", "pipeline_score"]], + on="window_start", + how="left", + ) + feats["pipeline_is_anomaly"] = feats["pipeline_is_anomaly"].fillna(False) + feats["pipeline_score"] = feats["pipeline_score"].fillna(np.nan) + except Exception as e: + print(f" WARNUNG anomalies.jsonl: {e}") + feats["pipeline_is_anomaly"] = False + feats["pipeline_score"] = np.nan + + feats["run"] = run_key + return feats[ + [ + "window_start", + "gt_label", + "gt_scenario", + "pipeline_is_anomaly", + "pipeline_score", + "run", + ] + ] + + +# ── Detektionslatenz ────────────────────────────────────────────────────────── + + +def compute_detection_latency( + run_key: str, gt_intervals: pd.DataFrame, labeled: pd.DataFrame +) -> pd.DataFrame: + """Δt = window_start des ersten TP - t_inj des Intervalls.""" + rows = [] + window_td = pd.Timedelta(seconds=WINDOW_S) + for _, iv in gt_intervals.iterrows(): + t_inj = _to_utc(iv["t_inj"]) + t_stop = _to_utc(iv["t_stop"]) + tp_windows = labeled[ + (labeled["pipeline_is_anomaly"] == True) + & (labeled["window_start"] < t_stop) + & (labeled["window_start"] + window_td > t_inj) + ] + if not tp_windows.empty: + t_det = tp_windows["window_start"].min() + t_det_effective = t_det + pd.Timedelta(seconds=WINDOW_S) + delta = (t_det_effective - t_inj).total_seconds() + detected = True + else: + t_det = pd.NaT + delta = np.nan + detected = False + + rows.append( + { + "run": run_key, + "scenario": iv["scenario"], + "t_inj": t_inj, + "t_stop": t_stop, + "t_det": t_det, + "delta_t_s": delta, + "detected": detected, + } + ) + return pd.DataFrame(rows) + + +# ── Precision / Recall / F1 ─────────────────────────────────────────────────── + + +def compute_prf(labeled: pd.DataFrame, run_key: str) -> dict: + tp = int((labeled["pipeline_is_anomaly"] & (labeled["gt_label"] == 1)).sum()) + fp = int((labeled["pipeline_is_anomaly"] & (labeled["gt_label"] == 0)).sum()) + fn = int((~labeled["pipeline_is_anomaly"] & (labeled["gt_label"] == 1)).sum()) + tn = int((~labeled["pipeline_is_anomaly"] & (labeled["gt_label"] == 0)).sum()) + + precision = tp / (tp + fp) if (tp + fp) > 0 else 0.0 + recall = tp / (tp + fn) if (tp + fn) > 0 else 0.0 + f1 = ( + 2 * precision * recall / (precision + recall) + if (precision + recall) > 0 + else 0.0 + ) + + per_scenario = {} + for scen in labeled[labeled["gt_label"] == 1]["gt_scenario"].unique(): + sub = labeled[labeled["gt_scenario"] == scen] + s_tp = int((sub["pipeline_is_anomaly"] & (sub["gt_label"] == 1)).sum()) + s_fn = int((~sub["pipeline_is_anomaly"] & (sub["gt_label"] == 1)).sum()) + s_fp = int((sub["pipeline_is_anomaly"] & (sub["gt_label"] == 0)).sum()) + s_p = s_tp / (s_tp + s_fp) if (s_tp + s_fp) > 0 else 0.0 + s_r = s_tp / (s_tp + s_fn) if (s_tp + s_fn) > 0 else 0.0 + s_f = 2 * s_p * s_r / (s_p + s_r) if (s_p + s_r) > 0 else 0.0 + per_scenario[scen] = {"precision": s_p, "recall": s_r, "f1": s_f} + + return { + "run": run_key, + "tp": tp, + "fp": fp, + "fn": fn, + "tn": tn, + "precision": precision, + "recall": recall, + "f1": f1, + "per_scenario": per_scenario, + } + + +# ── SEAD-Gewichte ───────────────────────────────────────────────────────────── + + +def plot_sead_weights(run_key: str, gt_intervals: pd.DataFrame): + try: + anom = load_anomalies(run_key) + except Exception: + return + + weight_cols = [f"{d}_weight" for d in DETECTORS] + if any(c not in anom.columns for c in weight_cols): + return + + fig, ax = plt.subplots(figsize=(14, 4)) + colors = plt.cm.tab10.colors + for i, (det, col) in enumerate(zip(DETECTORS, weight_cols)): + ax.plot( + anom["timestamp"], anom[col], label=det, color=colors[i], lw=0.9, alpha=0.85 + ) + + for _, row in gt_intervals.iterrows(): + t0, t1 = _to_utc(row["t_inj"]), _to_utc(row["t_stop"]) + ax.axvspan(t0, t1, alpha=0.08, color=PALETTE["anomaly"]) + ylim = ax.get_ylim() + ax.text( + t0, + ylim[1] if ylim[1] > 0 else 0.4, + row["scenario"], + rotation=90, + fontsize=6, + va="top", + color="firebrick", + alpha=0.6, + ) + + ax.axhline(0.2, color="gray", linestyle=":", lw=0.8, label="Gleichgewicht") + ax.set_ylim(0, 0.6) + ax.xaxis.set_major_formatter(mdates.DateFormatter("%H:%M")) + ax.set_xlabel("Zeit (UTC)") + ax.set_ylabel("Ensemble-Gewicht $w_i$") + ax.set_title(f"SEAD-Ensemble-Gewichte – {run_key}") + ax.legend(loc="upper right", ncol=3, fontsize=8) + save_fig(f"04_sead_weights_{run_key}") + + +# ── Plots & Tabellen ────────────────────────────────────────────────────────── + + +def plot_latency_boxplot(latency_df: pd.DataFrame): + valid = latency_df.dropna(subset=["delta_t_s"]) + if valid.empty: + return + + fig, ax = plt.subplots(figsize=(13, 5)) + order = sorted(valid["scenario"].unique()) + sns.boxplot( + data=valid, + x="scenario", + y="delta_t_s", + order=order, + palette="Blues_d", + ax=ax, + flierprops={"markersize": 3}, + hue="scenario", + legend=False, + ) + ax.axhline( + WINDOW_S, + color="orange", + linestyle="--", + lw=1.0, + label=f"Min. Latenz = 1 Fenster ({WINDOW_S}s)", + ) + ax.axhline( + 2 * WINDOW_S, + color="red", + linestyle=":", + lw=0.8, + label=f"2 Fenster ({2 * WINDOW_S}s)", + ) + ax.set_xlabel("Szenario") + ax.set_ylabel("Detektionslatenz Δt (s)") + ax.set_title("Detektionslatenz pro Szenario (alle Läufe und Profile)") + ax.tick_params(axis="x", rotation=35) + ax.legend(fontsize=8) + save_fig("04_detection_latency_boxplot") + + +def build_latency_table(lat: pd.DataFrame) -> pd.DataFrame: + rows = [] + for scen in SCENARIO_IDS: + sub = lat[lat["scenario"] == scen] + valid = sub.dropna(subset=["delta_t_s"]) + rows.append( + { + "Szenario": scen, + "n_detected": int(sub["detected"].sum()) if not sub.empty else 0, + "n_total": len(sub) if not sub.empty else 0, + "Recall_%": f"{sub['detected'].mean() * 100:.0f}" + if not sub.empty + else "0", + "Median_s": f"{valid['delta_t_s'].median():.1f}" + if not valid.empty + else "—", + "IQR_s": f"{valid['delta_t_s'].quantile(0.75) - valid['delta_t_s'].quantile(0.25):.1f}" + if len(valid) >= 4 + else "—", + "Min_s": f"{valid['delta_t_s'].min():.1f}" if not valid.empty else "—", + "Max_s": f"{valid['delta_t_s'].max():.1f}" if not valid.empty else "—", + } + ) + return pd.DataFrame(rows) + + +def build_guete_table(all_metrics: list) -> pd.DataFrame: + scenario_agg = {scen: {"p": [], "r": [], "f": []} for scen in SCENARIO_IDS} + g_p, g_r, g_f = [], [], [] + for m in all_metrics: + if not m: + continue + g_p.append(m["precision"]) + g_r.append(m["recall"]) + g_f.append(m["f1"]) + for s, v in m["per_scenario"].items(): + if s in scenario_agg: + scenario_agg[s]["p"].append(v["precision"]) + scenario_agg[s]["r"].append(v["recall"]) + scenario_agg[s]["f"].append(v["f1"]) + + rows = [] + for s in SCENARIO_IDS: + v = scenario_agg[s] + p_mean = np.mean(v["p"]) if v["p"] else 0.0 + r_mean = np.mean(v["r"]) if v["r"] else 0.0 + f_mean = np.mean(v["f"]) if v["f"] else 0.0 + rows.append( + { + "Szenario": s, + "Precision": f"{p_mean:.3f} ± {np.std(v['p']) if v['p'] else 0:.3f}", + "Recall": f"{r_mean:.3f} ± {np.std(v['r']) if v['r'] else 0:.3f}", + "F1-Score": f"{f_mean:.3f} ± {np.std(v['f']) if v['f'] else 0:.3f}", + } + ) + if g_f: + rows.append( + { + "Szenario": "Makro-Mittel", + "Precision": f"{np.mean(g_p):.3f}", + "Recall": f"{np.mean(g_r):.3f}", + "F1-Score": f"{np.mean(g_f):.3f}", + } + ) + return pd.DataFrame(rows) + + +# ── main ────────────────────────────────────────────────────────────────────── + + +def main(): + print_section("04 – Detektionsverhalten (REQ-NF06, TF3, TF4)") + print(f" GT-Quelle: injection_windows.csv (Zeitversatz bereits korrigiert)") + print(f" Matching: Overlap ws < t_stop AND ws+{WINDOW_S}s > t_inj") + + windows_df = pd.read_csv( + OUTPUT_DIR / "injection_windows.csv", parse_dates=["t_inj", "t_stop"] + ) + + all_latency, all_metrics = [], [] + + for run_key in RUNS: + print(f"\n {run_key} ...") + gt = windows_df[windows_df["run"] == run_key].copy() + if gt.empty: + print(f" WARNUNG: keine GT-Fenster") + continue + + labeled = build_labeled_features(run_key, gt) + if labeled.empty: + continue + + n_gt = int(labeled["gt_label"].sum()) + n_alm = int(labeled["pipeline_is_anomaly"].sum()) + print( + f" Fenster: {len(labeled)} gesamt, " + f"{n_gt} GT-positiv, {n_alm} Pipeline-Alarme" + ) + + lat = compute_detection_latency(run_key, gt, labeled) + dr = lat["detected"].mean() * 100 if not lat.empty else 0 + ml = lat["delta_t_s"].median() + print( + f" Detektionsrate={dr:.0f}% " + + (f"Median-Latenz={ml:.1f}s" if not np.isnan(ml) else "keine Detektionen") + ) + all_latency.append(lat) + + m = compute_prf(labeled, run_key) + all_metrics.append(m) + print( + f" P={m['precision']:.3f} R={m['recall']:.3f} F1={m['f1']:.3f} " + f"TP={m['tp']} FP={m['fp']} FN={m['fn']}" + ) + + plot_sead_weights(run_key, gt) + + latency_df = pd.concat([l for l in all_latency if not l.empty], ignore_index=True) + + print_section("Detektionslatenz pro Szenario") + lat_tbl = build_latency_table(latency_df) + print(lat_tbl.to_string(index=False)) + lat_tbl.to_csv(OUTPUT_DIR / "04_detection_latency_table.csv", index=False) + + print_section("Detektionsgüte (Precision / Recall / F1)") + guete_tbl = build_guete_table(all_metrics) + print(guete_tbl.to_string(index=False)) + guete_tbl.to_csv(OUTPUT_DIR / "04_detection_guete_table.csv", index=False) + + plot_latency_boxplot(latency_df) + + all_tp = sum(m["tp"] for m in all_metrics if m) + all_fp = sum(m["fp"] for m in all_metrics if m) + all_fn = sum(m["fn"] for m in all_metrics if m) + gp = all_tp / (all_tp + all_fp) if (all_tp + all_fp) > 0 else 0 + gr = all_tp / (all_tp + all_fn) if (all_tp + all_fn) > 0 else 0 + gf = 2 * gp * gr / (gp + gr) if (gp + gr) > 0 else 0 + print_section("Globale Summen (alle 12 Läufe)") + print(f" TP={all_tp} FP={all_fp} FN={all_fn}") + print(f" Precision={gp:.3f} Recall={gr:.3f} F1={gf:.3f}") + + with open(OUTPUT_DIR / "04_detection_stats.txt", "w") as f: + f.write(f"Detektionsverhalten – Overlap-Matching (W={WINDOW_S}s)\n") + f.write("=" * 65 + "\n") + f.write("Latenz:\n" + lat_tbl.to_string(index=False)) + f.write("\n\nGüte:\n" + guete_tbl.to_string(index=False)) + f.write( + f"\n\nGlobal: TP={all_tp} FP={all_fp} FN={all_fn} " + f"P={gp:.3f} R={gr:.3f} F1={gf:.3f}\n" + ) + + print(f"\n→ Gespeichert: 04_detection_*.csv, 04_sead_weights_*.pdf/png") + + +if __name__ == "__main__": + main() diff --git a/evaluation/05_visualize_runs.py b/evaluation/05_visualize_runs.py new file mode 100644 index 0000000..350decf --- /dev/null +++ b/evaluation/05_visualize_runs.py @@ -0,0 +1,157 @@ +""" +05_visualize_runs.py – Detaillierte Zeitreihen-Visualisierung der Läufe +====================================================================== +Visualisiert pro Lauf: + - Durchsatz (Net_out / network_sent_mb_s) + - Net_in (network_recv_mb_s) + - CPU-Auslastung (%) + - RAM-Verbrauch (MB) + - Injektions-Fenster (Hintergrund-Shading) + - Detektierte Anomalien (Marker) +""" + +import sys + +import matplotlib.dates as mdates +import matplotlib.pyplot as plt +import pandas as pd + +sys.path.insert(0, ".") +from config import * + + +def _to_utc(ts): + ts = pd.Timestamp(ts) + return ts.tz_localize("UTC") if ts.tzinfo is None else ts.tz_convert("UTC") + + +def plot_run_details(run_key: str, windows_df: pd.DataFrame): + print(f" Erstelle Plot für {run_key}...") + + # 1. Daten laden + try: + bm = load_baseline_metrics(run_key) + anom = load_anomalies(run_key) + except Exception as e: + print(f" Fehler beim Laden der Daten für {run_key}: {e}") + return + + # Zeitstempel normalisieren + bm["timestamp"] = bm["timestamp"].apply(_to_utc) + anom["timestamp"] = anom["timestamp"].apply(_to_utc) + + # Injektionen für diesen Lauf filtern + inj = windows_df[windows_df["run"] == run_key].copy() + + # Plot-Setup: 3 Subplots (Netzwerk, CPU, RAM) + fig, (ax1, ax2, ax3) = plt.subplots(3, 1, figsize=(16, 10), sharex=True) + + # --- Subplot 1: Netzwerk --- + ax1.plot( + bm["timestamp"], + bm["network_sent_mb_s"], + color="tab:blue", + lw=1.2, + label="Net Out (Throughput)", + ) + ax1.plot( + bm["timestamp"], + bm["network_recv_mb_s"], + color="tab:cyan", + lw=0.8, + alpha=0.6, + label="Net In", + ) + ax1.set_ylabel("Durchsatz [MB/s]") + ax1.set_title(f"Detaillierter Laufverlauf: {run_key}") + ax1.legend(loc="upper right", fontsize=8) + + # --- Subplot 2: CPU --- + ax2.plot( + bm["timestamp"], + bm["cpu_percent"], + color="tab:green", + lw=1.0, + label="CPU Auslastung", + ) + # Detektierte Anomalien einzeichnen (als Punkte auf der CPU-Linie) + detected_only = anom[anom["is_anomaly"] == True] + if not detected_only.empty: + ax2.scatter( + detected_only["timestamp"], + [2] * len(detected_only), + color="red", + s=25, + label="Pipeline Alarm", + zorder=5, + marker="^", + ) + + ax2.set_ylabel("CPU [%]") + ax2.set_ylim(0, 100) + ax2.legend(loc="upper right", fontsize=8) + + # --- Subplot 3: RAM --- + ax3.plot( + bm["timestamp"], + bm["memory_used_mb"], + color="tab:purple", + lw=1.2, + label="RAM Used", + ) + ax3.set_ylabel("RAM [MB]") + ax3.set_xlabel("Zeit [UTC]") + ax3.legend(loc="upper right", fontsize=8) + + # --- Anomalie-Bänder über alle Subplots --- + for _, row in inj.iterrows(): + t0, t1 = _to_utc(row["t_inj"]), _to_utc(row["t_stop"]) + for ax in [ax1, ax2, ax3]: + ax.axvspan(t0, t1, color="red", alpha=0.1, zorder=0) + if ax == ax1: + ax.text( + t0, + ax.get_ylim()[1] * 0.9, + row["scenario"], + rotation=90, + color="darkred", + fontsize=7, + va="top", + alpha=0.7, + ) + + for ax in [ax1, ax2, ax3]: + ax.xaxis.set_major_formatter(mdates.DateFormatter("%H:%M:%S")) + ax.grid(True, alpha=0.3) + + plt.tight_layout() + save_fig(f"05_details_{run_key}") + + +def main(): + print_section("05 – Detaillierte Zeitreihen-Visualisierung") + + try: + windows_df = pd.read_csv(OUTPUT_DIR / "injection_windows.csv") + except: + print( + " Fehler: injection_windows.csv nicht gefunden. Bitte erst 01_ground_truth.py ausführen." + ) + return + + sample_runs = [ + "full_cycle_run1", + "high_bw_run1", + "high_iops_run1", + "batch_out_run1", + ] + + for run_key in sample_runs: + if run_key in RUNS: + plot_run_details(run_key, windows_df) + + print(f"\n→ Detaillierte Plots unter {OUTPUT_DIR}/05_details_*.png gespeichert.") + + +if __name__ == "__main__": + main() diff --git a/evaluation/06_sead_details.py b/evaluation/06_sead_details.py new file mode 100644 index 0000000..d556759 --- /dev/null +++ b/evaluation/06_sead_details.py @@ -0,0 +1,147 @@ +""" +06_sead_details.py – Tiefenanalyse der Ensemble-Entscheidungen +============================================================== +Visualisiert pro Lauf: + - Oben: Entwicklung der SEAD-Gewichte (w_i) pro Detektor + - Unten: Einzel-Anomalie-Scores (s_i) und aggregierter Gesamt-Score + - Hintergrund: Ground-Truth Injektionsfenster +""" + +import sys + +import matplotlib.dates as mdates +import matplotlib.pyplot as plt +import numpy as np +import pandas as pd + +sys.path.insert(0, ".") +from config import * + +DETECTORS = ["MAD", "RRCF-fast", "RRCF-mid", "RRCF-slow", "COPOD"] + + +def _to_utc(ts): + ts = pd.Timestamp(ts) + return ts.tz_localize("UTC") if ts.tzinfo is None else ts.tz_convert("UTC") + + +def plot_sead_internals(run_key: str, windows_df: pd.DataFrame): + print(f" Analysiere SEAD-Internals für {run_key}...") + + try: + anom = load_anomalies(run_key) + except Exception as e: + print(f" Fehler: {e}") + return + + if anom.empty: + return + + anom["timestamp"] = anom["timestamp"].apply(_to_utc) + inj = windows_df[windows_df["run"] == run_key].copy() + + fig, (ax1, ax2) = plt.subplots(2, 1, figsize=(16, 10), sharex=True) + + colors = plt.cm.tab10(np.linspace(0, 1, len(DETECTORS))) + det_color_map = {det: colors[i] for i, det in enumerate(DETECTORS)} + + # --- Subplot 1: SEAD Gewichte --- + for det in DETECTORS: + col = f"{det}_weight" + if col in anom.columns: + ax1.plot( + anom["timestamp"], + anom[col], + label=f"w_{det}", + color=det_color_map[det], + lw=1.5, + ) + + ax1.axhline( + 0.2, color="gray", linestyle=":", alpha=0.6, label="Gleichgewicht (0.2)" + ) + ax1.set_ylabel("SEAD Gewicht $w_i$") + ax1.set_ylim(0, 0.7) + ax1.set_title(f"SEAD Ensemble Dynamik: {run_key}") + ax1.legend(loc="upper right", ncol=3, fontsize=9) + + # --- Subplot 2: Anomalie Scores --- + for det in DETECTORS: + col = f"{det}_score" + if col in anom.columns: + ax2.plot( + anom["timestamp"], + anom[col], + color=det_color_map[det], + lw=0.8, + alpha=0.5, + linestyle="--", + ) + + ax2.plot( + anom["timestamp"], + anom["score"], + color="black", + lw=2.0, + label="Aggregierter Score (Pipeline)", + ) + + ax2.axhline( + 0.5, + color="red", + linestyle="--", + lw=1.0, + alpha=0.7, + label="Alarm-Schwellenwert (0.5)", + ) + ax2.set_ylabel("Anomalie Score $s_i$") + ax2.set_ylim(0, 1.1) + ax2.set_xlabel("Zeit [UTC]") + ax2.legend(loc="upper right", fontsize=9) + + # --- Ground Truth Shading --- + for _, row in inj.iterrows(): + t0, t1 = _to_utc(row["t_inj"]), _to_utc(row["t_stop"]) + for ax in [ax1, ax2]: + ax.axvspan(t0, t1, color="red", alpha=0.08, zorder=0) + if ax == ax1: + ax.text( + t0, + ax.get_ylim()[1] * 0.95, + row["scenario"], + rotation=90, + color="darkred", + fontsize=7, + va="top", + alpha=0.6, + ) + + for ax in [ax1, ax2]: + ax.xaxis.set_major_formatter(mdates.DateFormatter("%H:%M")) + ax.grid(True, alpha=0.2) + + plt.tight_layout() + save_fig(f"06_sead_details_{run_key}") + + +def main(): + print_section("06 – SEAD Gewichte & Scores Analyse") + + try: + windows_df = pd.read_csv(OUTPUT_DIR / "injection_windows.csv") + except: + print(" Fehler: injection_windows.csv nicht gefunden.") + return + + sample_runs = ["full_cycle_run1", "high_bw_run1", "high_iops_run1"] + for rk in sample_runs: + if rk in RUNS: + plot_sead_internals(rk, windows_df) + + print( + f"\n→ SEAD Detail-Plots unter {OUTPUT_DIR}/06_sead_details_*.png gespeichert." + ) + + +if __name__ == "__main__": + main() diff --git a/evaluation/07_pipeline_health.py b/evaluation/07_pipeline_health.py new file mode 100644 index 0000000..593ed43 --- /dev/null +++ b/evaluation/07_pipeline_health.py @@ -0,0 +1,134 @@ +""" +07_pipeline_health.py – Performance-Analyse der internen Pipeline-Stufen +======================================================================= +Extrahiert Metriken aus pipeline.log: + - Latenz pro Stage (avg_latency_ms) + - Durchsatz pro Stage (throughput_eps) + - Events verarbeitet/verworfen +""" + +import json +import re +import sys +from pathlib import Path + +import matplotlib.pyplot as plt +import pandas as pd +import seaborn as sns + +sys.path.insert(0, ".") +from config import * + +LOG_PATTERN = re.compile(r"^(\d{4}/\d{2}/\d{2} \d{2}:\d{2}:\d{2}) \[(.*?)\] (\{.*\})$") + + +def parse_pipeline_log(run_key: str) -> pd.DataFrame: + """Liest pipeline.log eines Laufs und extrahiert die Health-Metriken.""" + _, run_dir = RUNS[run_key] + log_path = ROOT / run_dir / "pipeline.log" + + if not log_path.exists(): + return pd.DataFrame() + + records = [] + with open(log_path, "r") as f: + for line in f: + match = LOG_PATTERN.match(line.strip()) + if match: + log_ts, stage_label, json_str = match.groups() + try: + data = json.loads(json_str) + data["log_timestamp"] = pd.to_datetime( + log_ts, format="%Y/%m/%d %H:%M:%S" + ) + data["run"] = run_key + records.append(data) + except json.JSONDecodeError: + continue + + return pd.DataFrame(records) + + +def main(): + print_section("07 – Pipeline Health & Latency Analysis") + + all_data = [] + + for run_key in RUNS: + df_run = parse_pipeline_log(run_key) + if not df_run.empty: + print(f" {run_key}: {len(df_run)} Health-Einträge extrahiert.") + csv_path = OUTPUT_DIR / f"health_{run_key}.csv" + df_run.to_csv(csv_path, index=False) + all_data.append(df_run) + + if not all_data: + print(" Keine pipeline.log Dateien gefunden.") + return + + df = pd.concat(all_data, ignore_index=True) + + # --- Statistik berechnen --- + stats_df = ( + df.groupby("stage_name") + .agg( + { + "avg_latency_ms": ["median", "mean", "std", "max"], + "throughput_eps": ["median", "max"], + "events_processed": "sum", + "events_dropped": "sum", + } + ) + .round(3) + ) + + print("\nStatistik der Pipeline-Stages (Latenz in ms):") + print(stats_df.to_string()) + + stats_df.to_csv(OUTPUT_DIR / "07_pipeline_health_stats.csv") + + # --- Visualisierung 1: Latenzen pro Stage --- + plt.figure(figsize=(12, 7)) + sns.boxplot(data=df, x="stage_name", y="avg_latency_ms", palette="viridis") + plt.yscale("symlog", linthresh=1) + plt.title("Latenz-Verteilung der Pipeline-Komponenten (REQ-NF06)") + plt.ylabel("Durchschnittliche Latenz [ms] (Log-Skala)") + plt.xlabel("Pipeline Stage") + plt.xticks(rotation=15) + plt.grid(True, which="both", axis="y", alpha=0.3) + save_fig("07_pipeline_latency_boxplot") + + # --- Visualisierung 2: Durchsatz pro Stage --- + plt.figure(figsize=(12, 6)) + sns.barplot( + data=df, + x="stage_name", + y="throughput_eps", + estimator="median", + errorbar="sd", + palette="magma", + ) + plt.title("Medianer Durchsatz der Pipeline-Komponenten") + plt.ylabel("Events pro Sekunde [EPS]") + plt.xlabel("Pipeline Stage") + plt.xticks(rotation=15) + plt.grid(True, axis="y", alpha=0.3) + save_fig("07_pipeline_throughput_bar") + + with open(OUTPUT_DIR / "07_health_interpretation.txt", "w") as f: + f.write("Pipeline Health & Performance Summary\n") + f.write("=" * 40 + "\n\n") + f.write(stats_df.to_string()) + f.write("\n\nInterpretation:\n") + f.write( + "- Die Stage mit der höchsten Latenz ist der Flaschenhals der Pipeline.\n" + ) + f.write( + "- 'events_dropped' > 0 deutet auf aktives Load-Shedding hin (REQ-NF04).\n" + ) + + print(f"\n→ Ergebnisse gespeichert in {OUTPUT_DIR}/07_pipeline_*") + + +if __name__ == "__main__": + main() diff --git a/evaluation/config.py b/evaluation/config.py new file mode 100644 index 0000000..2bb4718 --- /dev/null +++ b/evaluation/config.py @@ -0,0 +1,215 @@ +""" +00_config.py – Gemeinsame Konfiguration und Hilfsfunktionen +============================================================ +Dieses Modul wird von allen Auswertungsskripten importiert. +""" + +import json +import os +import re +from pathlib import Path + +import matplotlib +import matplotlib.dates as mdates +import matplotlib.pyplot as plt +import numpy as np +import pandas as pd +import seaborn as sns +from scipy import stats + +# ── Pfade ──────────────────────────────────────────────────────────────────── +ROOT = Path(os.environ.get("ANALYSIS_ROOT", "./data")) +OUTPUT_DIR = Path(os.environ.get("ANALYSIS_OUTPUT", "./output")) +OUTPUT_DIR.mkdir(parents=True, exist_ok=True) + +RUNS = { + "full_cycle_run1": ("gt_full_cycle_run1.csv", "pipeline_full_cycle_run1"), + "full_cycle_run2": ("gt_full_cycle_run2.csv", "pipeline_full_cycle_run2"), + "full_cycle_run3": ("gt_full_cycle_run3.csv", "pipeline_full_cycle_run3"), + "high_bw_run1": ("gt_high-bw_run1.csv", "pipeline_high-bw_run1"), + "high_bw_run2": ("gt_high-bw_run2.csv", "pipeline_high-bw_run2"), + "high_bw_run3": ("gt_high-bw_run3.csv", "pipeline_high-bw_run3"), + "high_iops_run1": ("gt_high-iops_run1.csv", "pipeline_high-iops_run1"), + "high_iops_run2": ("gt_high-iops_run2.csv", "pipeline_high-iops_run2"), + "high_iops_run3": ("gt_high-iops_run3.csv", "pipeline_high-iops_run3"), + "batch_out_run1": ("gt_batch-out_run1.csv", "pipeline_batch-out_run1"), + "batch_out_run2": ("gt_batch-out_run2.csv", "pipeline_batch-out_run2"), + "batch_out_run3": ("gt_batch-out_run3.csv", "pipeline_batch-out_run3"), + "validation_run1": ("gt_validation_run1.csv", "pipeline_validation_run1"), + "validation_run2": ("gt_validation_run2.csv", "pipeline_validation_run2"), + "validation_run3": ("gt_validation_run3.csv", "pipeline_validation_run3"), +} + +VALIDATION_RUNS = ["validation_run1", "validation_run2", "validation_run3"] + +WORKLOAD_PROFILES = { + "full_cycle": ["full_cycle_run1", "full_cycle_run2", "full_cycle_run3"], + "high_bw": ["high_bw_run1", "high_bw_run2", "high_bw_run3"], + "high_iops": ["high_iops_run1", "high_iops_run2", "high_iops_run3"], + "batch_out": ["batch_out_run1", "batch_out_run2", "batch_out_run3"], +} + +SCENARIO_IDS = [ + "slow-connection", + "high-latency", + "packet-loss", + "congestion", + "partial-outage", + "flapping", + "cpu-stress", + "io-stress", + "mem-stress", +] + +ALPHA = 0.05 +PERCENTILES = [50, 75, 90, 95, 99] + +# ── Plot-Stil ───────────────────────────────────────────────────────────────── +plt.rcParams.update( + { + "figure.dpi": 150, + "figure.figsize": (10, 5), + "font.family": "serif", + "font.size": 11, + "axes.titlesize": 12, + "axes.labelsize": 11, + "xtick.labelsize": 9, + "ytick.labelsize": 9, + "legend.fontsize": 9, + "axes.grid": True, + "grid.alpha": 0.3, + "axes.spines.top": False, + "axes.spines.right": False, + "savefig.bbox": "tight", + "savefig.dpi": 300, + } +) + +PALETTE = { + "baseline": "#4878CF", + "pipeline": "#6ACC65", + "anomaly": "#D65F5F", + "normal": "#B8B8B8", +} + +# ── Hilfsfunktionen ─────────────────────────────────────────────────────────── + + +def load_gt(run_key: str) -> pd.DataFrame: + """Lädt die Ground-Truth-CSV eines Laufs und parst Zeitstempel.""" + gt_file, _ = RUNS[run_key] + df = pd.read_csv(ROOT / gt_file, parse_dates=["timestamp"]) + df["run"] = run_key + return df + + +def load_anomalies(run_key: str) -> pd.DataFrame: + """ + Lädt anomalies.jsonl und parst die 'details'-Spalte in separate Spalten + pro Detektor (weight und score). + """ + _, pipeline_dir = RUNS[run_key] + path = ROOT / pipeline_dir / "anomalies.jsonl" + records = [] + with open(path) as f: + for line in f: + line = line.strip() + if line: + records.append(json.loads(line)) + df = pd.DataFrame(records) + df["timestamp"] = pd.to_datetime(df["timestamp"], utc=True) + df["run"] = run_key + + detector_pattern = re.compile( + r"(MAD|RRCF-fast|RRCF-mid|RRCF-slow|COPOD)!?:w=([\d.]+),s=([\d.]+)" + ) + + def parse_details(detail_str): + result = {} + for m in detector_pattern.finditer(str(detail_str)): + name, w, s = m.group(1), float(m.group(2)), float(m.group(3)) + result[f"{name}_weight"] = w + result[f"{name}_score"] = s + return pd.Series(result) + + detail_cols = df["details"].apply(parse_details) + df = pd.concat([df.drop(columns=["details"]), detail_cols], axis=1) + return df + + +def load_baseline_metrics(run_key: str) -> pd.DataFrame: + """Lädt baseline_metrics.csv (unabhängiger metrics-collector).""" + _, pipeline_dir = RUNS[run_key] + path = ROOT / pipeline_dir / "baseline_metrics.csv" + df = pd.read_csv(path) + df["timestamp"] = pd.to_datetime(df["timestamp"], unit="s", utc=True) + df["run"] = run_key + return df + + +def load_duckdb_table(run_key: str, table: str) -> pd.DataFrame: + """ + Lädt eine Tabelle aus pipeline.duckdb via DuckDB-Python-Client. + """ + import duckdb + + _, pipeline_dir = RUNS[run_key] + db_path = str(ROOT / pipeline_dir / "pipeline.duckdb") + con = duckdb.connect(db_path, read_only=True) + df = con.execute(f"SELECT * FROM {table}").df() + con.close() + df["run"] = run_key + return df + + +def rosenthal_r(stat: float, n1: int, n2: int) -> float: + """ + Berechnet die Effektstärke r nach Rosenthal (1991). + r = Z / sqrt(N) + Da mannwhitneyu oft nur U liefert, approximieren wir Z. + """ + n = n1 + n2 + mu_u = (n1 * n2) / 2 + sigma_u = np.sqrt((n1 * n2 * (n1 + n2 + 1)) / 12) + if sigma_u == 0: + return 0.0 + z = (stat - mu_u) / sigma_u + return abs(z / np.sqrt(n)) + + +def wilcoxon_test(a: np.ndarray, b: np.ndarray) -> tuple[float, float]: + """ + Wilcoxon-Vorzeichen-Rang-Test für gepaarte Stichproben. + Gibt (statistik, p_wert) zurück. + Fallback auf Mann-Whitney-U wenn Längen ungleich. + """ + if len(a) == len(b): + stat, p = stats.wilcoxon(a, b, alternative="two-sided", zero_method="wilcox") + else: + stat, p = stats.mannwhitneyu(a, b, alternative="two-sided") + return float(stat), float(p) + + +def effect_size_label(r: float) -> str: + """Klassifikation der Effektstärke nach Cohen (1988) für r.""" + r = abs(r) + if r < 0.1: + return "vernachlässigbar" + if r < 0.3: + return "klein" + if r < 0.5: + return "mittel" + return "groß" + + +def save_fig(name: str): + """Speichert die aktuelle Figure als PDF und PNG.""" + for ext in ("pdf", "png"): + plt.savefig(OUTPUT_DIR / f"{name}.{ext}") + plt.close() + + +def print_section(title: str): + print(f"\n{'=' * 60}") + print(f" {title}") + print("=" * 60) diff --git a/evaluation/data/gt_batch-out_run1.csv b/evaluation/data/gt_batch-out_run1.csv new file mode 100644 index 0000000..c353412 --- /dev/null +++ b/evaluation/data/gt_batch-out_run1.csv @@ -0,0 +1,801 @@ +timestamp,action,source,target,workload_type,is_anomaly,scenario_mode +2026-03-16 11:26:56,EXPERIMENT_BASELINE_START,ALL,ALL,EXPERIMENT,0,training +2026-03-16 11:27:26,SCENARIO_START,ALL,ALL,START,0,training +2026-03-16 11:27:26,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:27:31,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:27:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 11:28:31,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:28:37,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:28:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 11:29:37,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:29:49,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:29:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 11:30:49,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:30:54,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:30:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 11:31:54,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:32:02,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:32:02,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 11:33:02,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:33:07,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:33:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 11:34:07,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:34:12,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:34:12,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 11:35:12,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:35:17,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:35:17,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 11:36:17,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:36:23,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:36:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 11:37:23,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:37:28,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:37:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 11:38:28,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:38:35,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:38:35,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 11:39:35,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:39:40,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:39:40,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 11:40:40,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:40:47,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:40:47,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 11:41:47,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:41:53,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:41:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 11:42:53,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:42:58,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:42:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 11:43:58,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:44:03,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:44:03,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 11:45:03,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:45:08,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:45:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 11:46:08,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:46:16,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:46:16,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 11:47:16,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:47:21,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:47:21,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 11:48:21,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:48:28,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:48:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 11:49:28,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:49:33,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:49:33,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 11:50:33,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:50:39,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:50:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 11:51:39,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:51:44,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:51:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 11:52:44,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:52:49,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:52:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 11:53:49,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:53:54,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:53:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 11:54:54,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:54:59,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:54:59,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 11:55:59,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:56:04,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:56:04,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 11:57:05,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:57:10,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:57:10,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 11:58:10,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:58:15,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:58:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 11:59:15,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:59:20,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 11:59:20,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:00:20,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:00:25,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:00:25,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:01:25,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:01:31,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:01:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:02:31,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:02:36,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:02:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:03:36,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:03:41,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:03:41,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:04:41,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:04:46,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:04:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:05:46,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:05:51,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:05:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:06:51,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:06:57,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:06:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:07:57,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:08:02,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:08:02,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:09:02,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:09:08,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:09:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:10:08,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:10:13,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:10:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:11:13,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:11:19,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:11:19,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:12:19,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:12:24,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:12:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:13:24,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:13:29,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:13:29,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:14:29,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:14:34,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:14:34,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:15:34,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:15:39,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:15:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:16:39,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:16:45,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:16:45,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:17:45,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:17:50,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:17:50,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:18:50,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:18:55,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:18:55,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:19:55,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:20:00,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:20:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:21:00,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:21:05,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:21:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:22:05,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:22:10,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:22:10,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:23:10,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:23:16,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:23:16,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:24:16,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:24:21,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:24:21,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:25:21,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:25:26,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:25:26,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:26:26,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:26:31,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:26:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:27:31,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:27:42,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:27:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:28:42,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:28:47,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:28:47,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:29:47,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:29:52,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:29:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:30:53,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:30:58,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:30:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:31:58,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:32:03,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:32:03,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:33:03,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:33:08,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:33:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:34:08,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:34:19,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:34:19,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:35:19,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:35:24,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:35:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:36:24,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:36:29,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:36:29,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:37:29,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:37:35,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:37:35,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:38:35,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:38:40,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:38:40,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:39:40,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:39:45,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:39:45,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:40:45,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:40:50,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:40:50,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:41:50,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:41:55,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:41:55,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:42:55,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:43:01,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:43:01,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:44:01,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:44:06,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:44:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:45:06,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:45:11,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:45:11,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:46:11,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:46:16,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:46:16,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:47:16,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:47:21,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:47:21,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:48:21,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:48:27,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:48:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:49:27,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:49:38,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:49:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:50:38,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:50:44,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:50:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:51:44,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:51:49,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:51:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:52:49,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:52:54,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:52:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:53:54,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:53:59,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:53:59,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:54:59,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:55:04,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:55:04,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:56:04,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:56:09,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:56:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:56:56,EXPERIMENT_BASELINE_END,ALL,ALL,EXPERIMENT,0,training +2026-03-16 12:57:06,EXPERIMENT_CHAOS_START,Orchestrator,System,slow-connection,1,training +2026-03-16 12:57:06,START_ANOMALY,Orchestrator,System,slow-connection,1,training +2026-03-16 12:57:36,SCENARIO_START,ALL,ALL,START,0,training +2026-03-16 12:57:36,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:58:48,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 12:58:48,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 12:59:48,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:01:00,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:01:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:02:00,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:03:12,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:03:12,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:04:12,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:05:24,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:05:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:06:24,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:07:06,STOP_ANOMALY,Orchestrator,System,slow-connection,1,training +2026-03-16 13:07:06,EXPERIMENT_CHAOS_END,Orchestrator,System,slow-connection,1,training +2026-03-16 13:07:11,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:07:11,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:08:11,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:08:16,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:08:16,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:09:16,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:09:21,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:09:21,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:10:21,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:10:27,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:10:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:11:27,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:11:32,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:11:32,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:12:32,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:12:37,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:12:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:13:37,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:13:42,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:13:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:14:42,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:14:47,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:14:47,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:15:47,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:15:52,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:15:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:16:53,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:16:58,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:16:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:17:06,EXPERIMENT_CHAOS_START,Orchestrator,System,high-latency,1,training +2026-03-16 13:17:06,START_ANOMALY,Orchestrator,System,high-latency,1,training +2026-03-16 13:17:58,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:19:17,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:19:17,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:20:17,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:21:36,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:21:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:22:36,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:23:49,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:23:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:24:49,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:25:58,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:25:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:26:58,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:27:06,STOP_ANOMALY,Orchestrator,System,high-latency,1,training +2026-03-16 13:27:06,EXPERIMENT_CHAOS_END,Orchestrator,System,high-latency,1,training +2026-03-16 13:27:12,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:27:12,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:28:12,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:28:17,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:28:17,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:29:17,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:29:22,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:29:22,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:30:23,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:30:28,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:30:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:31:28,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:31:33,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:31:33,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:32:33,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:32:38,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:32:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:33:38,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:33:43,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:33:43,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:34:43,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:34:48,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:34:48,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:35:48,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:35:54,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:35:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:36:54,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:36:59,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:36:59,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:37:06,EXPERIMENT_CHAOS_START,Orchestrator,System,packet-loss,1,training +2026-03-16 13:37:06,START_ANOMALY,Orchestrator,System,packet-loss,1,training +2026-03-16 13:37:59,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:38:04,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:38:04,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:39:04,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:39:09,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:39:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:40:09,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:40:14,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:40:14,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:41:14,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:41:19,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:41:19,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:42:19,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:42:25,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:42:25,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:43:25,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:43:30,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:43:30,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:44:30,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:44:35,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:44:35,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:45:35,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:45:40,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:45:40,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:46:40,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:46:45,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:46:45,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:47:06,STOP_ANOMALY,Orchestrator,System,packet-loss,1,training +2026-03-16 13:47:06,EXPERIMENT_CHAOS_END,Orchestrator,System,packet-loss,1,training +2026-03-16 13:47:45,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:47:50,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:47:50,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:48:50,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:48:56,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:48:56,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:49:56,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:50:01,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:50:01,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:51:01,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:51:06,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:51:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:52:06,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:52:11,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:52:11,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:53:11,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:53:16,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:53:16,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:54:16,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:54:21,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:54:21,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:55:21,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:55:27,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:55:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:56:27,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:56:32,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:56:32,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:57:06,EXPERIMENT_CHAOS_START,Orchestrator,System,congestion,1,training +2026-03-16 13:57:06,START_ANOMALY,Orchestrator,System,congestion,1,training +2026-03-16 13:57:32,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:57:42,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:57:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:58:42,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:58:53,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:58:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 13:59:53,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:59:58,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 13:59:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:00:58,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:01:04,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:01:04,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:02:04,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:02:09,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:02:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:03:09,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:03:20,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:03:20,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:04:20,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:04:25,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:04:25,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:05:25,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:05:31,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:05:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:06:31,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:06:36,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:06:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:07:06,STOP_ANOMALY,Orchestrator,System,congestion,1,training +2026-03-16 14:07:06,EXPERIMENT_CHAOS_END,Orchestrator,System,congestion,1,training +2026-03-16 14:07:36,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:07:41,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:07:41,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:08:41,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:08:47,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:08:47,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:09:47,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:09:52,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:09:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:10:52,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:10:57,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:10:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:11:57,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:12:02,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:12:02,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:13:02,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:13:07,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:13:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:14:07,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:14:12,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:14:12,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:15:12,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:15:18,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:15:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:16:18,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:16:23,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:16:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:17:06,EXPERIMENT_CHAOS_START,Orchestrator,System,partial-outage,1,training +2026-03-16 14:17:06,START_ANOMALY,Orchestrator,System,partial-outage,1,training +2026-03-16 14:17:23,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:17:28,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:17:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:18:28,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:18:33,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:18:33,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:19:33,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:19:38,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:19:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:20:38,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:20:44,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:20:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:21:44,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:21:49,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:21:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:22:49,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:22:54,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:22:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:23:54,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:23:59,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:23:59,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:24:59,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:25:05,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:25:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:26:05,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:26:10,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:26:10,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:27:06,STOP_ANOMALY,Orchestrator,System,partial-outage,1,training +2026-03-16 14:27:06,EXPERIMENT_CHAOS_END,Orchestrator,System,partial-outage,1,training +2026-03-16 14:27:10,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:27:15,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:27:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:28:15,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:28:20,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:28:20,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:29:20,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:29:25,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:29:25,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:30:25,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:30:31,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:30:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:31:31,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:31:36,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:31:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:32:36,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:32:41,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:32:41,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:33:41,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:33:46,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:33:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:34:46,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:34:51,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:34:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:35:51,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:35:57,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:35:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:36:57,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:37:02,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:37:02,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:37:06,EXPERIMENT_CHAOS_START,Orchestrator,System,flapping,1,training +2026-03-16 14:37:06,START_ANOMALY,Orchestrator,System,flapping,1,training +2026-03-16 14:37:36,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-16 14:38:02,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:38:06,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-16 14:38:14,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:38:14,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:38:36,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-16 14:39:06,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-16 14:39:14,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:39:19,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:39:19,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:39:36,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-16 14:40:06,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-16 14:40:19,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:40:24,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:40:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:40:36,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-16 14:41:06,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-16 14:41:24,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:41:36,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:41:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:41:36,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-16 14:42:06,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-16 14:42:36,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:42:36,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-16 14:43:06,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-16 14:43:31,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:43:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:43:36,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-16 14:44:06,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-16 14:44:31,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:44:36,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:44:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:44:36,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-16 14:45:06,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-16 14:45:36,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:45:36,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-16 14:46:06,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-16 14:46:16,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:46:16,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:46:36,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-16 14:47:06,STOP_ANOMALY,Orchestrator,System,flapping,1,training +2026-03-16 14:47:06,EXPERIMENT_CHAOS_END,Orchestrator,System,flapping,1,training +2026-03-16 14:47:16,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:47:21,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:47:21,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:48:21,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:48:26,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:48:26,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:49:26,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:49:31,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:49:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:50:32,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:50:37,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:50:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:51:37,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:51:42,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:51:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:52:42,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:52:47,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:52:47,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:53:47,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:53:52,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:53:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:54:52,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:54:57,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:54:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:55:57,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:56:02,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:56:02,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:57:02,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:57:06,EXPERIMENT_CHAOS_START,Orchestrator,System,cpu-stress,1,training +2026-03-16 14:57:06,START_ANOMALY,Orchestrator,System,cpu-stress,1,training +2026-03-16 14:57:06,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-16 14:57:08,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:57:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:57:51,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-16 14:58:08,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:58:13,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:58:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:58:46,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-16 14:59:13,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:59:18,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 14:59:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 14:59:31,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-16 15:00:18,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:00:23,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:00:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:00:26,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-16 15:01:11,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-16 15:01:23,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:01:28,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:01:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:02:06,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-16 15:02:28,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:02:33,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:02:33,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:02:51,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-16 15:03:33,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:03:39,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:03:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:03:46,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-16 15:04:31,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-16 15:04:39,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:04:44,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:04:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:05:27,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-16 15:05:44,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:05:49,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:05:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:06:12,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-16 15:06:49,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:06:54,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:06:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:07:06,STOP_ANOMALY,Orchestrator,System,cpu-stress,1,training +2026-03-16 15:07:06,EXPERIMENT_CHAOS_END,Orchestrator,System,cpu-stress,1,training +2026-03-16 15:07:54,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:07:59,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:07:59,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:08:59,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:09:05,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:09:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:10:05,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:10:10,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:10:10,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:11:10,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:11:15,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:11:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:12:15,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:12:20,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:12:20,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:13:20,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:13:25,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:13:25,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:14:25,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:14:31,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:14:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:15:31,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:15:36,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:15:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:16:36,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:16:41,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:16:41,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:17:06,EXPERIMENT_CHAOS_START,Orchestrator,System,io-stress,1,training +2026-03-16 15:17:06,START_ANOMALY,Orchestrator,System,io-stress,1,training +2026-03-16 15:17:06,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-16 15:17:41,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:17:41,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-16 15:17:49,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:17:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:18:41,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-16 15:18:49,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:19:16,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-16 15:19:23,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:19:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:20:16,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-16 15:20:23,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:20:51,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-16 15:21:00,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:21:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:21:51,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-16 15:22:00,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:22:26,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-16 15:22:32,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:22:32,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:23:27,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-16 15:23:32,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:24:02,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-16 15:24:07,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:24:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:25:02,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-16 15:25:07,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:25:37,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-16 15:25:52,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:25:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:26:37,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-16 15:26:52,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:27:06,STOP_ANOMALY,Orchestrator,System,io-stress,1,training +2026-03-16 15:27:06,RECOVERY_RESTART,Orchestrator,System,io-stress,0,training +2026-03-16 15:27:19,EXPERIMENT_CHAOS_END,Orchestrator,System,io-stress,1,training +2026-03-16 15:28:24,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:28:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:29:24,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:29:29,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:29:29,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:30:29,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:30:34,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:30:34,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:31:34,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:31:39,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:31:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:32:39,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:32:45,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:32:45,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:33:45,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:33:50,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:33:50,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:34:50,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:35:20,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:35:20,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:36:20,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:36:30,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:36:30,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:37:19,EXPERIMENT_CHAOS_START,Orchestrator,System,mem-stress,1,training +2026-03-16 15:37:19,START_ANOMALY,Orchestrator,System,mem-stress,1,training +2026-03-16 15:37:19,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-16 15:37:31,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:37:36,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:37:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:37:49,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-16 15:38:36,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:38:41,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:38:41,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:38:49,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-16 15:39:20,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-16 15:39:41,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:39:48,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:39:48,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:40:20,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-16 15:40:48,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:40:50,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-16 15:40:53,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:40:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:41:50,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-16 15:41:53,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:42:04,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:42:04,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:42:20,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-16 15:43:04,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:43:14,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:43:14,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:43:20,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-16 15:43:50,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-16 15:44:14,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:44:19,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:44:19,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:44:50,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-16 15:45:19,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:45:20,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-16 15:45:24,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:45:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:46:20,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-16 15:46:24,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:46:30,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:46:30,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:46:50,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-16 15:47:19,STOP_ANOMALY,Orchestrator,System,mem-stress,1,training +2026-03-16 15:47:19,RECOVERY_RESTART,Orchestrator,System,mem-stress,0,training +2026-03-16 15:47:30,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:47:32,EXPERIMENT_CHAOS_END,Orchestrator,System,mem-stress,1,training +2026-03-16 15:47:36,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:47:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:48:36,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:48:46,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:48:48,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:49:48,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:49:53,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:49:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:50:53,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:50:58,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:50:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:51:58,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:52:03,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:52:03,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:53:03,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:53:08,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:53:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:54:08,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:54:14,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:54:14,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:55:14,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:55:19,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:55:19,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:56:19,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:56:24,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:56:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:57:24,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:57:29,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 15:57:29,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 15:57:32,EXPERIMENT_END,ALL,ALL,EXPERIMENT,0,training diff --git a/evaluation/data/gt_batch-out_run2.csv b/evaluation/data/gt_batch-out_run2.csv new file mode 100644 index 0000000..0cfd5a8 --- /dev/null +++ b/evaluation/data/gt_batch-out_run2.csv @@ -0,0 +1,805 @@ +timestamp,action,source,target,workload_type,is_anomaly,scenario_mode +2026-03-16 16:53:47,EXPERIMENT_BASELINE_START,ALL,ALL,EXPERIMENT,0,training +2026-03-16 16:54:17,SCENARIO_START,ALL,ALL,START,0,training +2026-03-16 16:54:17,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 16:54:22,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 16:54:22,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 16:55:22,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 16:55:28,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 16:55:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 16:56:28,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 16:56:33,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 16:56:33,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 16:57:33,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 16:57:38,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 16:57:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 16:58:38,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 16:58:43,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 16:58:43,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 16:59:43,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 16:59:49,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 16:59:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:00:49,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:00:54,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:00:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:01:54,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:01:59,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:01:59,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:02:59,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:03:04,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:03:04,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:04:04,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:04:09,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:04:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:05:10,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:05:15,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:05:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:06:15,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:06:20,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:06:20,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:07:20,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:07:25,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:07:25,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:08:25,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:08:30,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:08:30,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:09:30,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:09:36,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:09:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:10:36,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:10:41,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:10:41,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:11:41,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:11:46,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:11:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:12:46,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:12:51,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:12:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:13:51,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:13:57,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:13:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:14:57,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:15:02,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:15:02,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:16:02,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:16:08,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:16:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:17:08,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:17:13,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:17:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:18:13,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:18:18,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:18:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:19:18,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:19:23,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:19:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:20:23,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:20:31,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:20:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:21:31,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:21:36,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:21:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:22:36,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:22:41,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:22:41,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:23:41,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:23:46,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:23:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:24:46,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:24:52,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:24:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:25:52,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:25:57,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:25:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:26:57,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:27:02,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:27:02,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:28:02,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:28:07,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:28:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:29:07,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:29:12,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:29:12,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:30:12,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:30:18,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:30:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:31:18,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:31:30,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:31:30,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:32:30,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:32:35,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:32:35,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:33:35,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:33:40,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:33:40,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:34:40,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:34:45,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:34:45,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:35:45,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:35:51,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:35:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:36:51,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:37:02,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:37:02,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:38:02,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:38:07,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:38:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:39:07,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:39:12,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:39:12,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:40:12,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:40:18,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:40:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:41:18,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:41:23,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:41:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:42:23,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:42:28,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:42:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:43:28,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:43:33,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:43:33,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:44:33,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:44:38,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:44:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:45:38,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:45:43,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:45:43,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:46:43,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:46:49,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:46:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:47:49,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:47:54,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:47:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:48:54,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:48:59,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:48:59,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:49:59,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:50:04,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:50:04,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:51:04,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:51:16,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:51:16,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:52:16,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:52:21,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:52:21,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:53:21,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:53:26,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:53:26,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:54:26,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:54:31,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:54:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:55:31,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:55:36,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:55:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:56:36,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:56:42,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:56:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:57:42,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:57:47,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:57:47,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:58:47,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:58:52,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:58:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 17:59:52,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:59:57,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 17:59:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:00:57,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:01:02,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:01:02,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:02:02,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:02:08,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:02:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:03:08,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:03:13,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:03:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:04:13,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:04:18,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:04:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:05:18,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:05:23,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:05:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:06:23,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:06:28,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:06:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:07:28,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:07:39,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:07:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:08:40,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:08:45,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:08:45,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:09:45,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:09:50,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:09:50,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:10:50,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:10:55,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:10:55,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:11:55,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:12:00,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:12:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:13:00,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:13:05,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:13:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:14:05,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:14:11,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:14:11,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:15:11,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:15:16,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:15:16,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:16:16,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:16:21,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:16:21,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:17:21,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:17:26,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:17:26,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:18:26,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:18:31,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:18:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:19:31,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:19:37,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:19:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:20:37,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:20:42,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:20:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:21:42,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:21:47,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:21:47,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:22:47,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:22:52,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:22:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:23:47,EXPERIMENT_BASELINE_END,ALL,ALL,EXPERIMENT,0,training +2026-03-16 18:23:57,EXPERIMENT_CHAOS_START,Orchestrator,System,slow-connection,1,training +2026-03-16 18:23:57,START_ANOMALY,Orchestrator,System,slow-connection,1,training +2026-03-16 18:24:27,SCENARIO_START,ALL,ALL,START,0,training +2026-03-16 18:24:27,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:25:39,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:25:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:26:39,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:27:51,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:27:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:28:51,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:30:03,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:30:03,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:31:03,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:32:20,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:32:20,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:33:20,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:33:57,STOP_ANOMALY,Orchestrator,System,slow-connection,1,training +2026-03-16 18:33:57,EXPERIMENT_CHAOS_END,Orchestrator,System,slow-connection,1,training +2026-03-16 18:34:02,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:34:02,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:35:02,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:35:07,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:35:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:36:07,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:36:12,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:36:12,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:37:12,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:37:18,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:37:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:38:18,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:38:23,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:38:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:39:23,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:39:28,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:39:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:40:28,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:40:33,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:40:33,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:41:33,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:41:38,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:41:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:42:38,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:42:44,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:42:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:43:44,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:43:49,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:43:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:43:57,EXPERIMENT_CHAOS_START,Orchestrator,System,high-latency,1,training +2026-03-16 18:43:57,START_ANOMALY,Orchestrator,System,high-latency,1,training +2026-03-16 18:44:49,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:46:03,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:46:03,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:47:03,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:48:11,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:48:11,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:49:11,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:50:25,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:50:25,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:51:25,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:52:34,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:52:34,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:53:34,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:53:57,STOP_ANOMALY,Orchestrator,System,high-latency,1,training +2026-03-16 18:53:57,EXPERIMENT_CHAOS_END,Orchestrator,System,high-latency,1,training +2026-03-16 18:54:03,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:54:03,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:55:03,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:55:09,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:55:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:56:09,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:56:14,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:56:14,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:57:14,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:57:19,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:57:19,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:58:19,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:58:24,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:58:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 18:59:24,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:59:30,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 18:59:30,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:00:30,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:00:36,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:00:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:01:36,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:01:41,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:01:41,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:02:41,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:02:47,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:02:47,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:03:47,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:03:52,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:03:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:03:57,EXPERIMENT_CHAOS_START,Orchestrator,System,packet-loss,1,training +2026-03-16 19:03:57,START_ANOMALY,Orchestrator,System,packet-loss,1,training +2026-03-16 19:04:52,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:04:57,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:04:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:05:57,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:06:02,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:06:02,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:07:02,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:07:07,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:07:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:08:07,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:08:14,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:08:14,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:09:14,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:09:20,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:09:20,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:10:20,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:10:25,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:10:25,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:11:25,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:11:30,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:11:30,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:12:30,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:12:35,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:12:35,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:13:35,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:13:40,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:13:40,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:13:57,STOP_ANOMALY,Orchestrator,System,packet-loss,1,training +2026-03-16 19:13:57,EXPERIMENT_CHAOS_END,Orchestrator,System,packet-loss,1,training +2026-03-16 19:14:40,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:14:46,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:14:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:15:46,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:15:51,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:15:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:16:51,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:16:58,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:16:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:17:58,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:18:03,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:18:03,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:19:03,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:19:08,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:19:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:20:08,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:20:13,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:20:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:21:13,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:21:18,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:21:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:22:18,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:22:23,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:22:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:23:23,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:23:29,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:23:29,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:23:57,EXPERIMENT_CHAOS_START,Orchestrator,System,congestion,1,training +2026-03-16 19:23:57,START_ANOMALY,Orchestrator,System,congestion,1,training +2026-03-16 19:24:29,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:24:39,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:24:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:25:39,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:25:50,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:25:50,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:26:50,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:26:55,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:26:55,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:27:55,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:28:01,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:28:01,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:29:01,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:29:06,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:29:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:30:06,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:30:17,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:30:17,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:31:17,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:31:22,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:31:22,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:32:22,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:32:28,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:32:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:33:28,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:33:38,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:33:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:33:57,STOP_ANOMALY,Orchestrator,System,congestion,1,training +2026-03-16 19:33:57,EXPERIMENT_CHAOS_END,Orchestrator,System,congestion,1,training +2026-03-16 19:34:38,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:34:44,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:34:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:35:44,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:35:49,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:35:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:36:49,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:36:54,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:36:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:37:54,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:37:59,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:37:59,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:38:59,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:39:04,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:39:04,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:40:04,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:40:09,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:40:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:41:09,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:41:15,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:41:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:42:15,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:42:20,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:42:20,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:43:20,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:43:25,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:43:25,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:43:57,EXPERIMENT_CHAOS_START,Orchestrator,System,partial-outage,1,training +2026-03-16 19:43:57,START_ANOMALY,Orchestrator,System,partial-outage,1,training +2026-03-16 19:44:25,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:44:30,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:44:30,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:45:30,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:45:35,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:45:35,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:46:35,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:46:41,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:46:41,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:47:41,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:47:46,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:47:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:48:46,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:48:51,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:48:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:49:51,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:49:56,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:49:56,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:50:56,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:51:02,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:51:02,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:52:02,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:52:07,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:52:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:53:07,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:53:12,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:53:12,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:53:57,STOP_ANOMALY,Orchestrator,System,partial-outage,1,training +2026-03-16 19:53:57,EXPERIMENT_CHAOS_END,Orchestrator,System,partial-outage,1,training +2026-03-16 19:54:12,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:54:17,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:54:17,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:55:17,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:55:22,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:55:22,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:56:22,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:56:28,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:56:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:57:28,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:57:33,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:57:33,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:58:33,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:58:38,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:58:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 19:59:38,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:59:43,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 19:59:43,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:00:43,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:00:49,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:00:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:01:49,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:01:54,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:01:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:02:54,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:02:59,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:02:59,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:03:57,EXPERIMENT_CHAOS_START,Orchestrator,System,flapping,1,training +2026-03-16 20:03:57,START_ANOMALY,Orchestrator,System,flapping,1,training +2026-03-16 20:03:59,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:04:05,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:04:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:04:27,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-16 20:04:57,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-16 20:05:05,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:05:10,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:05:10,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:05:27,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-16 20:05:57,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-16 20:06:10,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:06:15,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:06:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:06:27,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-16 20:06:57,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-16 20:07:15,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:07:20,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:07:20,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:07:27,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-16 20:07:57,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-16 20:08:20,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:08:26,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:08:26,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:08:27,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-16 20:08:57,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-16 20:09:26,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:09:27,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-16 20:09:57,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-16 20:10:21,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:10:21,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:10:27,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-16 20:10:57,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-16 20:11:22,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:11:27,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:11:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:11:27,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-16 20:11:57,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-16 20:12:27,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:12:27,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-16 20:12:57,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-16 20:13:27,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:13:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:13:27,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-16 20:13:57,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-16 20:13:57,STOP_ANOMALY,Orchestrator,System,flapping,1,training +2026-03-16 20:13:57,EXPERIMENT_CHAOS_END,Orchestrator,System,flapping,1,training +2026-03-16 20:14:27,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:14:32,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:14:32,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:15:32,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:15:37,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:15:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:16:37,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:16:42,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:16:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:17:42,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:17:48,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:17:48,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:18:48,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:18:53,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:18:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:19:53,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:19:58,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:19:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:20:58,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:21:03,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:21:03,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:22:03,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:22:08,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:22:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:23:08,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:23:13,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:23:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:23:57,EXPERIMENT_CHAOS_START,Orchestrator,System,cpu-stress,1,training +2026-03-16 20:23:57,START_ANOMALY,Orchestrator,System,cpu-stress,1,training +2026-03-16 20:23:57,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-16 20:24:13,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:24:19,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:24:19,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:24:42,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-16 20:25:19,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:25:24,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:25:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:25:37,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-16 20:26:23,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-16 20:26:24,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:26:29,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:26:29,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:27:18,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-16 20:27:29,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:27:34,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:27:34,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:28:03,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-16 20:28:34,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:28:39,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:28:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:28:58,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-16 20:29:39,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:29:43,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-16 20:29:44,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:29:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:30:38,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-16 20:30:44,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:30:50,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:30:50,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:31:23,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-16 20:31:50,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:31:55,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:31:55,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:32:18,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-16 20:32:55,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:33:00,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:33:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:33:03,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-16 20:33:57,STOP_ANOMALY,Orchestrator,System,cpu-stress,1,training +2026-03-16 20:33:57,EXPERIMENT_CHAOS_END,Orchestrator,System,cpu-stress,1,training +2026-03-16 20:34:00,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:34:05,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:34:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:35:05,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:35:10,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:35:10,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:36:10,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:36:15,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:36:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:37:15,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:37:21,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:37:21,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:38:21,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:38:26,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:38:26,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:39:26,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:39:31,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:39:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:40:31,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:40:36,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:40:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:41:36,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:41:41,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:41:41,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:42:41,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:42:46,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:42:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:43:46,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:43:52,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:43:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:43:57,EXPERIMENT_CHAOS_START,Orchestrator,System,io-stress,1,training +2026-03-16 20:43:57,START_ANOMALY,Orchestrator,System,io-stress,1,training +2026-03-16 20:43:57,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-16 20:44:32,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-16 20:44:52,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:44:57,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:44:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:45:32,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-16 20:45:57,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:46:07,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-16 20:46:18,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:46:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:47:07,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-16 20:47:18,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:47:43,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-16 20:47:52,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:47:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:48:43,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-16 20:48:52,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:49:18,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-16 20:49:28,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:49:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:50:18,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-16 20:50:28,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:50:53,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-16 20:51:00,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:51:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:51:53,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-16 20:52:00,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:52:28,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-16 20:52:40,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:52:40,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:53:28,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-16 20:53:40,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:53:57,STOP_ANOMALY,Orchestrator,System,io-stress,1,training +2026-03-16 20:53:57,RECOVERY_RESTART,Orchestrator,System,io-stress,0,training +2026-03-16 20:54:10,EXPERIMENT_CHAOS_END,Orchestrator,System,io-stress,1,training +2026-03-16 20:54:13,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:54:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:55:13,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:55:18,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:55:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:56:18,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:56:23,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:56:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:57:23,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:57:28,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:57:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:58:28,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:58:34,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:58:34,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 20:59:34,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:59:39,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 20:59:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:00:39,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:00:44,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:00:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:01:44,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:01:49,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:01:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:02:49,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:02:54,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:02:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:03:54,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:04:00,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:04:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:04:10,EXPERIMENT_CHAOS_START,Orchestrator,System,mem-stress,1,training +2026-03-16 21:04:10,START_ANOMALY,Orchestrator,System,mem-stress,1,training +2026-03-16 21:04:10,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-16 21:04:40,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-16 21:05:00,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:05:05,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:05:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:05:41,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-16 21:06:05,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:06:10,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:06:10,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:06:11,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-16 21:07:10,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:07:11,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-16 21:07:15,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:07:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:07:41,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-16 21:08:15,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:08:20,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:08:20,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:08:41,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-16 21:09:11,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-16 21:09:20,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:09:26,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:09:26,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:10:11,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-16 21:10:26,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:10:31,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:10:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:10:41,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-16 21:11:31,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:11:36,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:11:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:11:41,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-16 21:12:11,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-16 21:12:36,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:12:41,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:12:41,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:13:11,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-16 21:13:41,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-16 21:13:41,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:13:46,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:13:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:14:10,STOP_ANOMALY,Orchestrator,System,mem-stress,1,training +2026-03-16 21:14:10,RECOVERY_RESTART,Orchestrator,System,mem-stress,0,training +2026-03-16 21:14:24,EXPERIMENT_CHAOS_END,Orchestrator,System,mem-stress,1,training +2026-03-16 21:14:46,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:14:52,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:14:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:15:52,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:15:57,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:15:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:16:57,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:17:02,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:17:02,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:18:02,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:18:07,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:18:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:19:07,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:19:12,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:19:12,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:20:12,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:20:17,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:20:17,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:21:17,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:21:23,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:21:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:22:23,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:22:28,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:22:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:23:28,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:23:33,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:23:33,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:24:24,EXPERIMENT_END,ALL,ALL,EXPERIMENT,0,training diff --git a/evaluation/data/gt_batch-out_run3.csv b/evaluation/data/gt_batch-out_run3.csv new file mode 100644 index 0000000..de3c995 --- /dev/null +++ b/evaluation/data/gt_batch-out_run3.csv @@ -0,0 +1,803 @@ +timestamp,action,source,target,workload_type,is_anomaly,scenario_mode +2026-03-16 21:34:04,EXPERIMENT_BASELINE_START,ALL,ALL,EXPERIMENT,0,training +2026-03-16 21:34:34,SCENARIO_START,ALL,ALL,START,0,training +2026-03-16 21:34:34,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:34:40,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:34:40,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:35:40,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:35:45,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:35:45,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:36:45,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:36:50,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:36:50,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:37:50,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:37:55,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:37:55,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:38:55,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:39:01,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:39:01,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:40:01,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:40:06,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:40:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:41:06,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:41:11,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:41:11,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:42:11,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:42:16,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:42:16,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:43:16,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:43:22,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:43:22,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:44:22,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:44:27,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:44:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:45:27,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:45:32,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:45:32,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:46:32,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:46:37,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:46:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:47:37,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:47:43,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:47:43,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:48:43,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:48:48,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:48:48,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:49:48,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:49:53,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:49:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:50:53,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:50:58,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:50:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:51:58,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:52:04,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:52:04,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:53:04,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:53:09,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:53:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:54:09,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:54:14,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:54:14,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:55:14,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:55:19,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:55:19,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:56:19,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:56:24,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:56:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:57:24,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:57:30,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:57:30,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:58:30,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:58:35,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:58:35,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 21:59:35,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:59:40,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 21:59:40,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:00:40,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:00:45,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:00:45,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:01:45,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:01:50,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:01:50,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:02:50,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:02:56,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:02:56,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:03:56,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:04:01,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:04:01,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:05:01,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:05:06,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:05:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:06:06,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:06:11,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:06:11,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:07:11,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:07:16,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:07:16,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:08:16,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:08:22,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:08:22,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:09:22,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:09:27,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:09:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:10:27,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:10:32,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:10:32,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:11:32,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:11:37,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:11:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:12:37,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:12:42,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:12:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:13:42,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:13:48,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:13:48,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:14:48,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:14:53,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:14:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:15:53,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:15:58,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:15:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:16:58,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:17:03,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:17:03,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:18:03,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:18:08,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:18:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:19:08,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:19:14,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:19:14,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:20:14,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:20:19,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:20:19,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:21:19,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:21:24,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:21:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:22:24,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:22:29,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:22:29,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:23:29,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:23:34,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:23:34,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:24:34,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:24:39,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:24:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:25:40,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:25:45,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:25:45,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:26:45,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:26:50,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:26:50,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:27:50,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:27:55,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:27:55,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:28:55,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:29:00,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:29:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:30:00,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:30:05,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:30:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:31:05,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:31:11,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:31:11,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:32:11,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:32:16,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:32:16,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:33:16,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:33:21,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:33:21,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:34:21,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:34:26,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:34:26,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:35:26,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:35:31,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:35:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:36:31,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:36:37,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:36:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:37:37,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:37:42,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:37:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:38:42,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:38:47,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:38:47,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:39:47,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:39:52,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:39:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:40:52,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:40:57,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:40:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:41:57,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:42:03,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:42:03,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:43:03,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:43:08,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:43:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:44:08,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:44:13,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:44:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:45:13,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:45:18,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:45:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:46:18,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:46:23,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:46:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:47:23,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:47:28,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:47:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:48:28,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:48:34,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:48:34,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:49:34,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:49:39,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:49:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:50:39,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:50:44,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:50:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:51:44,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:51:49,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:51:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:52:49,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:52:54,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:52:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:53:54,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:54:01,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:54:01,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:55:01,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:55:06,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:55:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:56:06,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:56:11,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:56:11,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:57:11,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:57:16,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:57:16,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:58:16,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:58:22,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:58:22,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 22:59:22,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:59:27,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 22:59:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:00:27,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:00:32,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:00:32,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:01:32,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:01:37,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:01:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:02:37,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:02:42,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:02:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:03:42,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:03:47,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:03:47,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:04:04,EXPERIMENT_BASELINE_END,ALL,ALL,EXPERIMENT,0,training +2026-03-16 23:04:14,EXPERIMENT_CHAOS_START,Orchestrator,System,slow-connection,1,training +2026-03-16 23:04:14,START_ANOMALY,Orchestrator,System,slow-connection,1,training +2026-03-16 23:04:44,SCENARIO_START,ALL,ALL,START,0,training +2026-03-16 23:04:44,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:05:56,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:05:56,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:06:56,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:08:13,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:08:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:09:13,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:10:26,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:10:26,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:11:26,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:12:38,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:12:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:13:38,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:14:15,STOP_ANOMALY,Orchestrator,System,slow-connection,1,training +2026-03-16 23:14:15,EXPERIMENT_CHAOS_END,Orchestrator,System,slow-connection,1,training +2026-03-16 23:14:20,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:14:20,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:15:20,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:15:25,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:15:25,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:16:25,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:16:30,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:16:30,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:17:30,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:17:35,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:17:35,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:18:35,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:18:41,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:18:41,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:19:41,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:19:46,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:19:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:20:46,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:20:51,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:20:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:21:51,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:21:59,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:21:59,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:22:59,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:23:04,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:23:04,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:24:04,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:24:09,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:24:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:24:15,EXPERIMENT_CHAOS_START,Orchestrator,System,high-latency,1,training +2026-03-16 23:24:15,START_ANOMALY,Orchestrator,System,high-latency,1,training +2026-03-16 23:25:09,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:26:24,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:26:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:27:24,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:28:48,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:28:48,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:29:48,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:30:56,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:30:56,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:31:56,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:33:10,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:33:10,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:34:10,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:34:15,STOP_ANOMALY,Orchestrator,System,high-latency,1,training +2026-03-16 23:34:15,EXPERIMENT_CHAOS_END,Orchestrator,System,high-latency,1,training +2026-03-16 23:34:19,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:34:19,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:35:19,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:35:24,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:35:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:36:24,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:36:30,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:36:30,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:37:30,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:37:35,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:37:35,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:38:35,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:38:40,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:38:40,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:39:40,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:39:45,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:39:45,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:40:45,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:40:50,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:40:50,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:41:50,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:41:55,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:41:55,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:42:56,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:43:01,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:43:01,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:44:01,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:44:06,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:44:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:44:15,EXPERIMENT_CHAOS_START,Orchestrator,System,packet-loss,1,training +2026-03-16 23:44:15,START_ANOMALY,Orchestrator,System,packet-loss,1,training +2026-03-16 23:45:06,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:45:11,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:45:11,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:46:11,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:46:16,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:46:16,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:47:16,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:47:21,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:47:21,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:48:21,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:48:27,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:48:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:49:27,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:49:32,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:49:32,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:50:32,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:50:37,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:50:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:51:37,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:51:42,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:51:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:52:42,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:52:47,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:52:47,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:53:47,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:53:52,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:53:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:54:15,STOP_ANOMALY,Orchestrator,System,packet-loss,1,training +2026-03-16 23:54:15,EXPERIMENT_CHAOS_END,Orchestrator,System,packet-loss,1,training +2026-03-16 23:54:52,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:54:58,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:54:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:55:58,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:56:03,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:56:03,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:57:03,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:57:08,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:57:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:58:08,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:58:13,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:58:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 23:59:13,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:59:18,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-16 23:59:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:00:18,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:00:23,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:00:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:01:23,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:01:29,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:01:29,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:02:29,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:02:34,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:02:34,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:03:34,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:03:39,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:03:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:04:15,EXPERIMENT_CHAOS_START,Orchestrator,System,congestion,1,training +2026-03-17 00:04:15,START_ANOMALY,Orchestrator,System,congestion,1,training +2026-03-17 00:04:39,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:04:44,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:04:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:05:44,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:05:55,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:05:55,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:06:55,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:07:05,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:07:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:08:05,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:08:11,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:08:11,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:09:11,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:09:16,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:09:16,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:10:16,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:10:27,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:10:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:11:27,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:11:37,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:11:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:12:37,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:12:43,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:12:43,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:13:43,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:13:48,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:13:48,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:14:15,STOP_ANOMALY,Orchestrator,System,congestion,1,training +2026-03-17 00:14:15,EXPERIMENT_CHAOS_END,Orchestrator,System,congestion,1,training +2026-03-17 00:14:48,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:14:53,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:14:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:15:53,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:15:59,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:15:59,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:16:59,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:17:04,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:17:04,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:18:04,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:18:09,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:18:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:19:09,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:19:14,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:19:14,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:20:14,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:20:19,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:20:19,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:21:19,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:21:24,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:21:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:22:24,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:22:30,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:22:30,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:23:30,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:23:41,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:23:41,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:24:15,EXPERIMENT_CHAOS_START,Orchestrator,System,partial-outage,1,training +2026-03-17 00:24:15,START_ANOMALY,Orchestrator,System,partial-outage,1,training +2026-03-17 00:24:41,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:24:46,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:24:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:25:46,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:25:51,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:25:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:26:51,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:26:57,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:26:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:27:57,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:28:02,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:28:02,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:29:02,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:29:07,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:29:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:30:07,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:30:12,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:30:12,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:31:12,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:31:18,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:31:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:32:18,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:32:23,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:32:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:33:23,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:33:28,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:33:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:34:15,STOP_ANOMALY,Orchestrator,System,partial-outage,1,training +2026-03-17 00:34:15,EXPERIMENT_CHAOS_END,Orchestrator,System,partial-outage,1,training +2026-03-17 00:34:28,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:34:33,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:34:33,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:35:33,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:35:39,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:35:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:36:39,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:36:44,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:36:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:37:44,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:37:49,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:37:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:38:49,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:38:54,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:38:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:39:54,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:39:59,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:39:59,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:40:59,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:41:04,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:41:04,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:42:04,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:42:10,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:42:10,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:43:10,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:43:15,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:43:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:44:15,EXPERIMENT_CHAOS_START,Orchestrator,System,flapping,1,training +2026-03-17 00:44:15,START_ANOMALY,Orchestrator,System,flapping,1,training +2026-03-17 00:44:15,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:44:20,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:44:20,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:44:45,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-17 00:45:15,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-17 00:45:20,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:45:28,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:45:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:45:45,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-17 00:46:15,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-17 00:46:28,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:46:33,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:46:33,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:46:45,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-17 00:47:15,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-17 00:47:33,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:47:39,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:47:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:47:45,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-17 00:48:15,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-17 00:48:39,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:48:44,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:48:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:48:45,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-17 00:49:15,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-17 00:49:44,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:49:45,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-17 00:50:15,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-17 00:50:44,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:50:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:50:45,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-17 00:51:15,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-17 00:51:44,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:51:45,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-17 00:52:15,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-17 00:52:44,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:52:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:52:45,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-17 00:53:15,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-17 00:53:44,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:53:45,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-17 00:54:15,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-17 00:54:15,STOP_ANOMALY,Orchestrator,System,flapping,1,training +2026-03-17 00:54:15,EXPERIMENT_CHAOS_END,Orchestrator,System,flapping,1,training +2026-03-17 00:54:24,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:54:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:55:24,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:55:29,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:55:29,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:56:29,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:56:35,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:56:35,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:57:35,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:57:40,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:57:40,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:58:40,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:58:45,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:58:45,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 00:59:45,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:59:50,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 00:59:50,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:00:50,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:01:01,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:01:01,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:02:01,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:02:07,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:02:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:03:07,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:03:12,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:03:12,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:04:12,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:04:15,EXPERIMENT_CHAOS_START,Orchestrator,System,cpu-stress,1,training +2026-03-17 01:04:15,START_ANOMALY,Orchestrator,System,cpu-stress,1,training +2026-03-17 01:04:15,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-17 01:04:17,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:04:17,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:05:00,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-17 01:05:17,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:05:22,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:05:22,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:05:55,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-17 01:06:22,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:06:27,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:06:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:06:40,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-17 01:07:27,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:07:32,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:07:32,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:07:35,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-17 01:08:20,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-17 01:08:33,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:08:38,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:08:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:09:15,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-17 01:09:38,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:09:43,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:09:43,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:10:00,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-17 01:10:43,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:10:48,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:10:48,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:10:55,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-17 01:11:40,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-17 01:11:48,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:11:53,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:11:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:12:35,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-17 01:12:53,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:12:58,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:12:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:13:20,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-17 01:13:58,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:14:03,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:14:03,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:14:15,STOP_ANOMALY,Orchestrator,System,cpu-stress,1,training +2026-03-17 01:14:15,EXPERIMENT_CHAOS_END,Orchestrator,System,cpu-stress,1,training +2026-03-17 01:15:04,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:15:09,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:15:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:16:09,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:16:14,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:16:14,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:17:14,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:17:19,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:17:19,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:18:19,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:18:24,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:18:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:19:24,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:19:31,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:19:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:20:31,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:20:37,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:20:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:21:37,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:21:42,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:21:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:22:42,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:22:47,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:22:47,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:23:47,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:23:52,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:23:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:24:15,EXPERIMENT_CHAOS_START,Orchestrator,System,io-stress,1,training +2026-03-17 01:24:15,START_ANOMALY,Orchestrator,System,io-stress,1,training +2026-03-17 01:24:15,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-17 01:24:50,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-17 01:24:52,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:25:05,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:25:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:25:50,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-17 01:26:05,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:26:25,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-17 01:26:36,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:26:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:27:25,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-17 01:27:36,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:28:00,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-17 01:28:05,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:28:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:29:00,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-17 01:29:05,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:29:35,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-17 01:29:45,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:29:45,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:30:35,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-17 01:30:45,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:31:10,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-17 01:31:18,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:31:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:32:10,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-17 01:32:18,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:32:45,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-17 01:32:55,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:32:55,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:33:45,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-17 01:33:55,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:34:15,STOP_ANOMALY,Orchestrator,System,io-stress,1,training +2026-03-17 01:34:15,RECOVERY_RESTART,Orchestrator,System,io-stress,0,training +2026-03-17 01:34:28,EXPERIMENT_CHAOS_END,Orchestrator,System,io-stress,1,training +2026-03-17 01:34:57,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:34:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:35:57,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:36:02,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:36:02,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:37:02,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:37:08,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:37:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:38:08,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:38:13,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:38:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:39:13,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:39:18,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:39:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:40:18,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:40:23,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:40:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:41:23,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:41:28,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:41:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:42:28,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:42:34,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:42:34,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:43:34,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:43:39,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:43:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:44:28,EXPERIMENT_CHAOS_START,Orchestrator,System,mem-stress,1,training +2026-03-17 01:44:28,START_ANOMALY,Orchestrator,System,mem-stress,1,training +2026-03-17 01:44:28,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-17 01:44:39,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:44:44,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:44:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:44:58,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-17 01:45:44,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:45:49,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:45:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:45:58,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-17 01:46:28,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-17 01:46:49,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:46:54,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:46:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:47:28,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-17 01:47:54,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:47:58,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-17 01:48:00,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:48:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:48:58,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-17 01:49:00,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:49:05,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:49:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:49:28,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-17 01:50:05,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:50:10,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:50:10,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:50:28,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-17 01:50:58,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-17 01:51:10,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:51:15,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:51:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:51:58,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-17 01:52:15,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:52:28,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-17 01:52:29,MFT_SERVICE_RESTART,192.168.122.97,transfer-job-manager,N/A,0,training +2026-03-17 01:52:49,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:52:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:53:28,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-17 01:53:49,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:53:55,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:53:55,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:53:58,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-17 01:54:28,STOP_ANOMALY,Orchestrator,System,mem-stress,1,training +2026-03-17 01:54:28,RECOVERY_RESTART,Orchestrator,System,mem-stress,0,training +2026-03-17 01:54:41,EXPERIMENT_CHAOS_END,Orchestrator,System,mem-stress,1,training +2026-03-17 01:54:55,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:55:00,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:55:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:56:00,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:56:05,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:56:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:57:05,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:57:10,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:57:10,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:58:10,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:58:16,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:58:16,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 01:59:16,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:59:21,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 01:59:21,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 02:00:21,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 02:00:26,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 02:00:26,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 02:01:26,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 02:01:31,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 02:01:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 02:02:31,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 02:02:37,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 02:02:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 02:03:37,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 02:03:42,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-17 02:03:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-17 02:04:41,EXPERIMENT_END,ALL,ALL,EXPERIMENT,0,training diff --git a/evaluation/data/gt_full_cycle_run1.csv b/evaluation/data/gt_full_cycle_run1.csv new file mode 100644 index 0000000..721a5f5 --- /dev/null +++ b/evaluation/data/gt_full_cycle_run1.csv @@ -0,0 +1,1142 @@ +timestamp,action,source,target,workload_type,is_anomaly,scenario_mode +2026-03-21 12:18:59,EXPERIMENT_BASELINE_START,ALL,ALL,EXPERIMENT,0,training +2026-03-21 12:19:29,SCENARIO_START,ALL,ALL,START,0,training +2026-03-21 12:19:29,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 12:20:14,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 12:20:14,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 12:20:28,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 12:20:28,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 12:21:46,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 12:21:46,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 12:21:51,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 12:21:51,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 12:22:06,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 12:22:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 12:23:06,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 12:23:56,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 12:23:56,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 12:24:05,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 12:24:05,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 12:24:25,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 12:24:25,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 12:24:31,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 12:24:31,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 12:25:51,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 12:25:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 12:26:51,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 12:27:41,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 12:27:41,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 12:27:55,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 12:27:55,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 12:29:00,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 12:29:00,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 12:29:10,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 12:29:10,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 12:29:36,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 12:29:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 12:30:36,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 12:31:26,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 12:31:26,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 12:31:40,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 12:31:40,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 12:33:05,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 12:33:05,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 12:33:11,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 12:33:11,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 12:33:21,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 12:33:21,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 12:34:21,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 12:35:11,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 12:35:11,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 12:35:22,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 12:35:22,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 12:37:08,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 12:37:08,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 12:37:13,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 12:37:13,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 12:37:18,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 12:37:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 12:38:18,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 12:39:08,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 12:39:08,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 12:39:17,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 12:39:17,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 12:39:54,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 12:39:54,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 12:40:05,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 12:40:05,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 12:41:05,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 12:41:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 12:42:05,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 12:42:55,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 12:42:55,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 12:43:09,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 12:43:09,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 12:43:29,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 12:43:29,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 12:43:39,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 12:43:39,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 12:44:50,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 12:44:50,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 12:45:50,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 12:46:40,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 12:46:40,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 12:46:51,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 12:46:51,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 12:47:16,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 12:47:16,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 12:47:27,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 12:47:27,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 12:48:37,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 12:48:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 12:49:37,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 12:50:27,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 12:50:27,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 12:50:36,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 12:50:36,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 12:52:16,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 12:52:16,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 12:52:28,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 12:52:28,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 12:52:36,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 12:52:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 12:53:36,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 12:54:26,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 12:54:26,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 12:54:39,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 12:54:39,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 12:55:54,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 12:55:54,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 12:56:05,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 12:56:05,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 12:56:20,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 12:56:20,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 12:57:20,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 12:58:10,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 12:58:10,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 12:58:19,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 12:58:19,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 12:58:36,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 12:58:36,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 12:58:46,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 12:58:46,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 13:00:02,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 13:00:02,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 13:01:02,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 13:01:52,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 13:01:52,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 13:02:06,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 13:02:06,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 13:02:26,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 13:02:26,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 13:02:37,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 13:02:37,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 13:03:47,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 13:03:47,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 13:04:47,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 13:05:37,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 13:05:37,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 13:05:51,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 13:05:51,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 13:07:21,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 13:07:21,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 13:07:26,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 13:07:26,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 13:07:32,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 13:07:32,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 13:08:32,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 13:09:17,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 13:09:17,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 13:09:31,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 13:09:31,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 13:09:51,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 13:09:51,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 13:10:01,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 13:10:01,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 13:11:07,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 13:11:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 13:12:07,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 13:12:57,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 13:12:57,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 13:13:11,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 13:13:11,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 13:13:26,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 13:13:26,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 13:13:31,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 13:13:31,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 13:14:37,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 13:14:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 13:15:37,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 13:16:27,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 13:16:27,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 13:16:36,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 13:16:36,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 13:17:03,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 13:17:03,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 13:17:08,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 13:17:08,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 13:18:23,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 13:18:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 13:19:23,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 13:20:13,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 13:20:13,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 13:20:32,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 13:20:32,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 13:22:12,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 13:22:12,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 13:22:18,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 13:22:18,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 13:22:23,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 13:22:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 13:23:23,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 13:24:13,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 13:24:13,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 13:24:27,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 13:24:27,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 13:26:02,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 13:26:02,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 13:26:12,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 13:26:12,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 13:26:18,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 13:26:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 13:27:18,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 13:28:08,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 13:28:08,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 13:28:22,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 13:28:22,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 13:29:07,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 13:29:07,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 13:29:17,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 13:29:17,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 13:30:02,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 13:30:02,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 13:31:02,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 13:31:53,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 13:31:53,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 13:32:07,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 13:32:07,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 13:33:42,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 13:33:42,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 13:33:47,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 13:33:47,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 13:33:52,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 13:33:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 13:34:52,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 13:35:37,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 13:35:37,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 13:35:48,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 13:35:48,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 13:36:03,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 13:36:03,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 13:36:09,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 13:36:09,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 13:37:29,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 13:37:29,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 13:38:29,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 13:39:19,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 13:39:19,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 13:39:33,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 13:39:33,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 13:39:48,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 13:39:48,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 13:39:53,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 13:39:53,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 13:41:13,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 13:41:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 13:42:13,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 13:43:04,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 13:43:04,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 13:43:18,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 13:43:18,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 13:44:48,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 13:44:48,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 13:44:53,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 13:44:53,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 13:44:59,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 13:44:59,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 13:45:59,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 13:46:49,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 13:46:49,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 13:47:02,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 13:47:02,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 13:48:27,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 13:48:27,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 13:48:32,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 13:48:32,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 13:48:42,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 13:48:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 13:49:42,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 13:50:33,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 13:50:33,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 13:50:47,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 13:50:47,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 13:52:32,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 13:52:32,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 13:52:42,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 13:52:42,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 13:52:52,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 13:52:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 13:53:52,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 13:54:42,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 13:54:42,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 13:54:52,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 13:54:52,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 13:55:22,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 13:55:22,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 13:55:27,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 13:55:27,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 13:56:38,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 13:56:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 13:57:38,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 13:58:28,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 13:58:28,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 13:58:42,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 13:58:42,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 13:59:07,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 13:59:07,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 13:59:17,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 13:59:17,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 14:00:23,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 14:00:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 14:01:23,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 14:02:13,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 14:02:13,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 14:02:27,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 14:02:27,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 14:04:07,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 14:04:07,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 14:04:17,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 14:04:17,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 14:04:22,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 14:04:22,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 14:05:22,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 14:06:12,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 14:06:12,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 14:06:26,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 14:06:26,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 14:07:27,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 14:07:27,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 14:07:37,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 14:07:37,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 14:08:07,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 14:08:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 14:09:07,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 14:09:57,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 14:09:57,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 14:10:11,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 14:10:11,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 14:10:36,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 14:10:36,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 14:10:42,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 14:10:42,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 14:11:52,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 14:11:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 14:12:52,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 14:13:42,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 14:13:42,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 14:13:56,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 14:13:56,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 14:15:31,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 14:15:31,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 14:15:41,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 14:15:41,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 14:15:51,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 14:15:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 14:16:52,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 14:17:42,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 14:17:42,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 14:17:56,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 14:17:56,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 14:18:16,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 14:18:16,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 14:18:21,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 14:18:21,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 14:18:59,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 14:18:59,EXPERIMENT_BASELINE_END,ALL,ALL,EXPERIMENT,0,training +2026-03-21 14:19:09,EXPERIMENT_CHAOS_START,Orchestrator,System,slow-connection,1,training +2026-03-21 14:19:09,START_ANOMALY,Orchestrator,System,slow-connection,1,training +2026-03-21 14:19:39,SCENARIO_START,ALL,ALL,START,0,training +2026-03-21 14:19:39,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 14:24:41,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 14:24:41,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 14:26:24,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 14:26:24,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 14:31:28,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 14:31:28,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 14:32:55,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 14:32:55,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 14:34:09,STOP_ANOMALY,Orchestrator,System,slow-connection,1,training +2026-03-21 14:34:09,EXPERIMENT_CHAOS_END,Orchestrator,System,slow-connection,1,training +2026-03-21 14:34:13,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 14:34:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 14:35:13,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 14:36:03,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 14:36:03,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 14:36:17,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 14:36:17,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 14:37:37,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 14:37:37,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 14:37:47,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 14:37:47,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 14:37:58,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 14:37:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 14:38:58,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 14:39:48,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 14:39:48,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 14:40:02,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 14:40:02,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 14:41:37,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 14:41:37,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 14:41:47,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 14:41:47,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 14:41:53,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 14:41:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 14:42:53,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 14:43:43,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 14:43:43,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 14:43:59,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 14:43:59,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 14:45:39,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 14:45:39,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 14:45:50,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 14:45:50,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 14:46:00,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 14:46:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 14:47:00,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 14:47:50,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 14:47:50,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 14:48:04,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 14:48:04,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 14:48:34,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 14:48:34,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 14:48:45,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 14:48:45,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 14:49:09,EXPERIMENT_CHAOS_START,Orchestrator,System,high-latency,1,training +2026-03-21 14:49:09,START_ANOMALY,Orchestrator,System,high-latency,1,training +2026-03-21 14:50:55,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 14:50:55,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 14:51:55,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 14:56:58,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 14:56:58,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 14:59:44,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 14:59:44,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 15:03:48,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 15:03:48,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 15:04:09,STOP_ANOMALY,Orchestrator,System,high-latency,1,training +2026-03-21 15:04:09,EXPERIMENT_CHAOS_END,Orchestrator,System,high-latency,1,training +2026-03-21 15:04:16,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 15:04:16,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 15:04:22,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 15:04:22,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 15:05:22,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 15:06:12,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 15:06:12,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 15:06:21,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 15:06:21,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 15:06:41,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 15:06:41,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 15:06:47,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 15:06:47,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 15:08:03,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 15:08:03,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 15:09:03,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 15:09:53,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 15:09:53,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 15:10:02,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 15:10:02,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 15:10:17,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 15:10:17,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 15:10:29,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 15:10:29,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 15:11:44,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 15:11:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 15:12:44,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 15:13:34,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 15:13:34,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 15:13:48,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 15:13:48,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 15:14:03,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 15:14:03,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 15:14:10,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 15:14:10,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 15:15:30,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 15:15:30,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 15:16:30,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 15:17:20,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 15:17:20,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 15:17:34,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 15:17:34,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 15:19:09,EXPERIMENT_CHAOS_START,Orchestrator,System,packet-loss,1,training +2026-03-21 15:19:09,START_ANOMALY,Orchestrator,System,packet-loss,1,training +2026-03-21 15:19:19,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 15:19:19,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 15:19:26,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 15:19:26,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 15:19:31,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 15:19:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 15:20:31,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 15:21:21,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 15:21:21,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 15:21:30,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 15:21:30,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 15:23:15,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 15:23:15,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 15:23:21,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 15:23:21,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 15:23:26,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 15:23:26,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 15:24:26,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 15:25:16,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 15:25:16,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 15:25:30,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 15:25:30,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 15:27:15,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 15:27:15,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 15:27:25,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 15:27:25,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 15:27:30,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 15:27:30,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 15:28:30,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 15:29:20,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 15:29:20,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 15:29:34,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 15:29:34,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 15:29:55,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 15:29:55,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 15:30:00,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 15:30:00,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 15:31:15,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 15:31:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 15:32:15,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 15:33:05,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 15:33:05,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 15:33:19,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 15:33:19,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 15:34:09,STOP_ANOMALY,Orchestrator,System,packet-loss,1,training +2026-03-21 15:34:09,EXPERIMENT_CHAOS_END,Orchestrator,System,packet-loss,1,training +2026-03-21 15:34:19,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 15:34:19,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 15:34:25,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 15:34:25,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 15:35:00,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 15:35:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 15:36:00,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 15:36:50,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 15:36:50,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 15:37:04,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 15:37:04,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 15:37:24,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 15:37:24,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 15:37:35,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 15:37:35,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 15:38:45,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 15:38:45,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 15:39:45,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 15:40:35,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 15:40:35,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 15:40:49,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 15:40:49,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 15:42:34,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 15:42:34,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 15:42:44,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 15:42:44,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 15:42:49,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 15:42:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 15:43:49,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 15:44:40,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 15:44:40,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 15:44:54,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 15:44:54,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 15:46:19,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 15:46:19,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 15:46:29,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 15:46:29,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 15:46:39,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 15:46:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 15:47:39,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 15:48:29,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 15:48:29,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 15:48:44,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 15:48:44,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 15:49:09,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 15:49:09,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 15:49:09,EXPERIMENT_CHAOS_START,Orchestrator,System,congestion,1,training +2026-03-21 15:49:09,START_ANOMALY,Orchestrator,System,congestion,1,training +2026-03-21 15:49:19,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 15:49:19,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 15:51:15,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 15:51:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 15:52:15,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 15:57:16,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 15:57:16,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 15:57:35,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 15:57:35,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 16:01:46,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 16:01:46,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 16:01:57,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 16:01:57,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 16:02:58,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 16:02:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 16:03:58,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 16:04:09,STOP_ANOMALY,Orchestrator,System,congestion,1,training +2026-03-21 16:04:09,EXPERIMENT_CHAOS_END,Orchestrator,System,congestion,1,training +2026-03-21 16:05:19,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 16:05:19,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 16:05:31,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 16:05:31,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 16:05:56,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 16:05:56,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 16:06:06,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 16:06:06,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 16:07:16,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 16:07:16,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 16:08:17,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 16:09:07,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 16:09:07,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 16:09:21,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 16:09:21,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 16:09:41,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 16:09:41,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 16:09:46,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 16:09:46,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 16:10:56,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 16:10:56,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 16:11:56,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 16:12:46,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 16:12:46,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 16:13:00,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 16:13:00,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 16:14:31,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 16:14:31,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 16:14:41,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 16:14:41,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 16:14:46,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 16:14:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 16:15:46,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 16:16:36,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 16:16:36,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 16:16:50,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 16:16:50,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 16:18:20,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 16:18:20,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 16:18:25,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 16:18:25,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 16:18:30,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 16:18:30,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 16:19:09,EXPERIMENT_CHAOS_START,Orchestrator,System,partial-outage,1,training +2026-03-21 16:19:09,START_ANOMALY,Orchestrator,System,partial-outage,1,training +2026-03-21 16:19:31,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 16:20:21,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 16:20:21,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 16:20:35,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 16:20:35,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 16:21:55,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 16:21:55,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 16:22:00,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 16:22:00,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 16:22:15,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 16:22:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 16:23:15,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 16:24:05,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 16:24:05,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 16:24:19,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 16:24:19,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 16:24:37,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 16:24:37,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 16:24:47,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 16:24:47,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 16:25:57,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 16:25:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 16:26:57,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 16:27:47,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 16:27:47,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 16:28:06,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 16:28:06,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 16:28:21,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 16:28:21,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 16:28:32,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 16:28:32,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 16:29:42,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 16:29:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 16:30:42,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 16:31:32,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 16:31:32,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 16:31:46,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 16:31:46,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 16:32:06,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 16:32:06,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 16:32:11,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 16:32:11,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 16:33:27,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 16:33:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 16:34:09,STOP_ANOMALY,Orchestrator,System,partial-outage,1,training +2026-03-21 16:34:09,EXPERIMENT_CHAOS_END,Orchestrator,System,partial-outage,1,training +2026-03-21 16:34:27,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 16:35:17,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 16:35:17,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 16:35:31,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 16:35:31,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 16:37:16,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 16:37:16,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 16:37:22,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 16:37:22,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 16:37:27,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 16:37:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 16:38:27,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 16:39:17,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 16:39:17,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 16:39:31,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 16:39:31,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 16:40:36,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 16:40:36,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 16:40:47,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 16:40:47,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 16:41:02,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 16:41:02,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 16:42:02,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 16:42:52,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 16:42:52,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 16:43:05,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 16:43:05,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 16:44:20,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 16:44:20,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 16:44:31,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 16:44:31,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 16:44:46,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 16:44:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 16:45:46,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 16:46:36,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 16:46:36,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 16:46:46,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 16:46:46,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 16:48:01,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 16:48:01,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 16:48:11,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 16:48:11,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 16:48:31,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 16:48:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 16:49:09,EXPERIMENT_CHAOS_START,Orchestrator,System,flapping,1,training +2026-03-21 16:49:09,START_ANOMALY,Orchestrator,System,flapping,1,training +2026-03-21 16:49:31,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 16:49:39,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 16:50:09,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 16:50:39,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 16:51:09,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 16:51:39,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 16:52:09,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 16:52:39,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 16:53:09,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 16:53:12,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 16:53:12,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 16:53:26,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 16:53:26,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 16:53:39,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 16:53:41,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 16:53:41,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 16:54:09,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 16:54:15,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 16:54:15,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 16:54:39,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 16:55:09,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 16:55:39,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 16:56:09,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 16:56:20,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 16:56:20,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 16:56:39,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 16:57:09,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 16:57:20,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 16:57:39,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 16:58:09,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 16:58:39,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 16:59:09,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 16:59:26,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 16:59:26,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 16:59:39,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 16:59:40,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 16:59:40,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 17:00:09,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 17:00:13,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 17:00:13,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 17:00:18,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 17:00:18,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 17:00:39,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 17:00:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 17:00:39,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 17:01:10,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 17:01:39,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 17:01:39,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 17:02:09,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 17:02:39,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 17:03:09,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 17:03:39,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 17:04:09,STOP_ANOMALY,Orchestrator,System,flapping,1,training +2026-03-21 17:04:09,EXPERIMENT_CHAOS_END,Orchestrator,System,flapping,1,training +2026-03-21 17:04:40,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 17:04:40,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 17:04:49,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 17:04:49,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 17:05:12,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 17:05:12,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 17:05:23,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 17:05:23,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 17:06:38,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 17:06:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 17:07:38,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 17:08:28,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 17:08:28,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 17:08:42,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 17:08:42,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 17:09:07,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 17:09:07,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 17:09:18,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 17:09:18,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 17:10:23,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 17:10:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 17:11:23,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 17:12:14,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 17:12:14,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 17:12:28,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 17:12:28,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 17:12:43,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 17:12:43,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 17:12:48,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 17:12:48,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 17:14:08,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 17:14:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 17:15:08,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 17:15:58,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 17:15:58,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 17:16:12,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 17:16:12,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 17:16:42,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 17:16:42,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 17:16:50,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 17:16:50,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 17:17:55,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 17:17:55,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 17:18:55,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 17:19:09,EXPERIMENT_CHAOS_START,Orchestrator,System,cpu-stress,1,training +2026-03-21 17:19:09,START_ANOMALY,Orchestrator,System,cpu-stress,1,training +2026-03-21 17:19:09,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-21 17:19:45,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 17:19:45,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 17:19:55,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-21 17:19:55,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 17:19:55,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 17:20:30,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 17:20:30,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 17:20:40,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 17:20:40,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 17:20:50,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-21 17:21:35,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-21 17:21:45,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 17:21:45,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 17:22:30,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-21 17:22:45,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 17:23:15,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-21 17:23:35,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 17:23:35,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 17:23:49,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 17:23:49,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 17:24:09,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 17:24:09,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 17:24:10,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-21 17:24:15,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 17:24:15,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 17:24:55,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-21 17:25:30,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 17:25:30,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 17:25:50,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-21 17:26:30,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 17:26:35,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-21 17:27:20,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 17:27:20,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 17:27:30,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-21 17:27:34,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 17:27:34,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 17:27:54,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 17:27:54,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 17:28:00,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 17:28:00,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 17:28:15,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-21 17:29:10,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-21 17:29:15,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 17:29:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 17:29:55,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-21 17:30:15,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 17:30:50,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-21 17:31:05,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 17:31:05,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 17:31:19,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 17:31:19,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 17:31:35,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-21 17:31:39,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 17:31:39,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 17:31:49,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 17:31:49,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 17:32:30,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-21 17:32:54,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 17:32:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 17:33:15,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-21 17:33:54,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 17:34:10,STOP_ANOMALY,Orchestrator,System,cpu-stress,1,training +2026-03-21 17:34:10,EXPERIMENT_CHAOS_END,Orchestrator,System,cpu-stress,1,training +2026-03-21 17:34:45,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 17:34:45,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 17:34:59,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 17:34:59,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 17:35:29,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 17:35:29,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 17:35:39,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 17:35:39,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 17:36:34,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 17:36:34,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 17:37:34,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 17:38:19,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 17:38:19,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 17:38:33,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 17:38:33,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 17:40:16,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 17:40:16,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 17:40:21,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 17:40:21,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 17:40:27,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 17:40:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 17:41:27,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 17:42:17,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 17:42:17,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 17:42:31,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 17:42:31,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 17:44:21,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 17:44:21,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 17:44:27,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 17:44:27,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 17:44:34,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 17:44:34,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 17:45:34,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 17:46:24,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 17:46:24,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 17:46:38,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 17:46:38,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 17:48:13,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 17:48:13,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 17:48:19,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 17:48:19,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 17:48:24,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 17:48:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 17:49:10,EXPERIMENT_CHAOS_START,Orchestrator,System,io-stress,1,training +2026-03-21 17:49:10,START_ANOMALY,Orchestrator,System,io-stress,1,training +2026-03-21 17:49:10,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-21 17:49:25,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 17:49:45,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-21 17:50:40,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 17:50:40,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 17:50:45,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-21 17:51:20,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-21 17:51:44,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 17:51:44,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 17:52:20,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-21 17:52:26,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 17:52:26,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 17:52:55,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-21 17:53:11,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 17:53:11,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 17:53:31,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 17:53:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 17:53:55,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-21 17:54:30,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-21 17:54:31,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 17:55:23,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 17:55:23,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 17:55:30,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-21 17:56:05,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-21 17:56:17,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 17:56:17,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 17:56:47,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 17:56:47,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 17:56:58,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 17:56:58,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 17:57:05,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-21 17:57:40,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-21 17:58:18,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 17:58:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 17:58:40,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-21 17:59:15,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-21 17:59:19,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 18:00:14,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 18:00:14,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 18:00:15,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-21 18:00:50,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-21 18:01:04,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 18:01:04,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 18:01:32,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 18:01:32,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 18:01:42,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 18:01:42,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 18:01:50,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-21 18:02:25,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-21 18:03:25,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-21 18:04:00,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-21 18:04:10,STOP_ANOMALY,Orchestrator,System,io-stress,1,training +2026-03-21 18:04:10,RECOVERY_RESTART,Orchestrator,System,io-stress,0,training +2026-03-21 18:04:12,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 18:04:12,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 18:04:23,EXPERIMENT_CHAOS_END,Orchestrator,System,io-stress,1,training +2026-03-21 18:05:12,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 18:06:02,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 18:06:02,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 18:06:16,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 18:06:16,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 18:07:47,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 18:07:47,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 18:07:52,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 18:07:52,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 18:07:57,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 18:07:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 18:08:57,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 18:09:47,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 18:09:47,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 18:10:01,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 18:10:01,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 18:10:16,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 18:10:16,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 18:10:27,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 18:10:27,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 18:11:37,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 18:11:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 18:12:37,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 18:13:27,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 18:13:27,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 18:13:41,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 18:13:41,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 18:14:01,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 18:14:01,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 18:14:07,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 18:14:07,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 18:15:23,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 18:15:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 18:16:23,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 18:17:13,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 18:17:13,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 18:17:27,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 18:17:27,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 18:18:32,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 18:18:32,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 18:18:37,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 18:18:37,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 18:19:07,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 18:19:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 18:19:23,EXPERIMENT_CHAOS_START,Orchestrator,System,mem-stress,1,training +2026-03-21 18:19:23,START_ANOMALY,Orchestrator,System,mem-stress,1,training +2026-03-21 18:19:23,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-21 18:19:53,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-21 18:20:08,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 18:20:53,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-21 18:20:58,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 18:20:58,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 18:21:12,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 18:21:12,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 18:21:23,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-21 18:21:37,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 18:21:37,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 18:21:47,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 18:21:47,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 18:22:23,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-21 18:22:52,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 18:22:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 18:22:53,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-21 18:23:53,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 18:23:53,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-21 18:24:23,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-21 18:24:43,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 18:24:43,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 18:24:59,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 18:24:59,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 18:25:14,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 18:25:14,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 18:25:19,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 18:25:19,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 18:25:23,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-21 18:25:53,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-21 18:26:40,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 18:26:40,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 18:26:53,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-21 18:27:23,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-21 18:27:40,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 18:28:23,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-21 18:28:30,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 18:28:30,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 18:28:39,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 18:28:39,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 18:28:53,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-21 18:28:56,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 18:28:56,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 18:29:01,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 18:29:01,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 18:29:53,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-21 18:30:22,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 18:30:22,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 18:30:23,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-21 18:31:22,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 18:31:23,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-21 18:31:53,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-21 18:32:12,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 18:32:12,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 18:32:26,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 18:32:26,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 18:32:51,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 18:32:51,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 18:32:53,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-21 18:32:56,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 18:32:56,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 18:33:23,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-21 18:34:03,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 18:34:03,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 18:34:23,STOP_ANOMALY,Orchestrator,System,mem-stress,1,training +2026-03-21 18:34:23,RECOVERY_RESTART,Orchestrator,System,mem-stress,0,training +2026-03-21 18:34:36,EXPERIMENT_CHAOS_END,Orchestrator,System,mem-stress,1,training +2026-03-21 18:35:03,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 18:35:53,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 18:35:53,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 18:36:02,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 18:36:02,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 18:36:28,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 18:36:28,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 18:36:34,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 18:36:34,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 18:37:49,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 18:37:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 18:38:49,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 18:39:39,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 18:39:39,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 18:39:53,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 18:39:53,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 18:41:28,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 18:41:28,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 18:41:39,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 18:41:39,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 18:41:44,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 18:41:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 18:42:44,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 18:43:34,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 18:43:34,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 18:43:48,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 18:43:48,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 18:45:18,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 18:45:18,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 18:45:23,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 18:45:23,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 18:45:33,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 18:45:33,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 18:46:33,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 18:47:24,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 18:47:24,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 18:47:38,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 18:47:38,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 18:48:33,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 18:48:33,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 18:48:43,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 18:48:43,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 18:49:18,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 18:49:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 18:49:36,EXPERIMENT_END,ALL,ALL,EXPERIMENT,0,training diff --git a/evaluation/data/gt_full_cycle_run2.csv b/evaluation/data/gt_full_cycle_run2.csv new file mode 100644 index 0000000..4fd9012 --- /dev/null +++ b/evaluation/data/gt_full_cycle_run2.csv @@ -0,0 +1,1127 @@ +timestamp,action,source,target,workload_type,is_anomaly,scenario_mode +2026-03-21 19:05:59,EXPERIMENT_BASELINE_START,ALL,ALL,EXPERIMENT,0,training +2026-03-21 19:06:29,SCENARIO_START,ALL,ALL,START,0,training +2026-03-21 19:06:29,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 19:07:19,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 19:07:19,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 19:07:28,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 19:07:28,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 19:09:11,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 19:09:11,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 19:09:16,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 19:09:16,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 19:09:21,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 19:09:21,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 19:10:21,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 19:11:11,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 19:11:11,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 19:11:20,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 19:11:20,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 19:11:42,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 19:11:42,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 19:11:48,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 19:11:48,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 19:13:03,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 19:13:03,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 19:14:03,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 19:14:53,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 19:14:53,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 19:15:07,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 19:15:07,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 19:16:52,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 19:16:52,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 19:16:58,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 19:16:58,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 19:17:03,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 19:17:03,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 19:18:03,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 19:18:53,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 19:18:53,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 19:19:06,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 19:19:06,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 19:20:37,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 19:20:37,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 19:20:42,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 19:20:42,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 19:20:49,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 19:20:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 19:21:49,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 19:22:39,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 19:22:39,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 19:22:48,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 19:22:48,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 19:23:05,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 19:23:05,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 19:23:10,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 19:23:10,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 19:24:31,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 19:24:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 19:25:31,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 19:26:21,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 19:26:21,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 19:26:37,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 19:26:37,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 19:27:02,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 19:27:02,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 19:27:10,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 19:27:10,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 19:28:10,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 19:28:10,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 19:29:10,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 19:29:55,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 19:29:55,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 19:30:09,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 19:30:09,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 19:31:09,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 19:31:09,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 19:31:14,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 19:31:14,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 19:31:54,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 19:31:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 19:32:54,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 19:33:45,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 19:33:45,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 19:33:59,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 19:33:59,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 19:34:19,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 19:34:19,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 19:34:29,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 19:34:29,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 19:35:29,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 19:35:29,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 19:36:29,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 19:37:19,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 19:37:19,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 19:37:28,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 19:37:28,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 19:37:53,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 19:37:53,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 19:37:59,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 19:37:59,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 19:39:14,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 19:39:14,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 19:40:14,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 19:41:04,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 19:41:04,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 19:41:13,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 19:41:13,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 19:41:38,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 19:41:38,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 19:41:43,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 19:41:43,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 19:42:59,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 19:42:59,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 19:43:59,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 19:44:49,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 19:44:49,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 19:44:58,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 19:44:58,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 19:45:28,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 19:45:28,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 19:45:33,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 19:45:33,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 19:46:43,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 19:46:43,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 19:47:43,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 19:48:34,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 19:48:34,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 19:48:48,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 19:48:48,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 19:50:03,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 19:50:03,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 19:50:10,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 19:50:10,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 19:50:27,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 19:50:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 19:51:27,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 19:52:17,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 19:52:17,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 19:52:29,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 19:52:29,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 19:54:19,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 19:54:19,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 19:54:24,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 19:54:24,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 19:54:29,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 19:54:29,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 19:55:29,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 19:56:19,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 19:56:19,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 19:56:33,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 19:56:33,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 19:56:53,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 19:56:53,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 19:56:58,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 19:56:58,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 19:58:14,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 19:58:14,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 19:59:14,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 20:00:04,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 20:00:04,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 20:00:13,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 20:00:13,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 20:00:28,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 20:00:28,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 20:00:34,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 20:00:34,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 20:01:59,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 20:01:59,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 20:02:59,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 20:03:49,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 20:03:49,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 20:04:03,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 20:04:03,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 20:04:23,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 20:04:23,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 20:04:28,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 20:04:28,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 20:05:44,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 20:05:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 20:06:44,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 20:07:34,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 20:07:34,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 20:07:45,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 20:07:45,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 20:09:36,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 20:09:36,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 20:09:43,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 20:09:43,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 20:09:53,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 20:09:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 20:10:53,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 20:11:43,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 20:11:43,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 20:11:52,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 20:11:52,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 20:12:10,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 20:12:10,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 20:12:15,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 20:12:15,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 20:13:35,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 20:13:35,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 20:14:35,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 20:15:25,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 20:15:25,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 20:15:39,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 20:15:39,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 20:16:59,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 20:16:59,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 20:17:04,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 20:17:04,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 20:17:11,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 20:17:11,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 20:18:11,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 20:19:01,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 20:19:01,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 20:19:10,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 20:19:10,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 20:19:40,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 20:19:40,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 20:19:46,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 20:19:46,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 20:20:56,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 20:20:56,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 20:21:57,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 20:22:48,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 20:22:48,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 20:22:57,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 20:22:57,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 20:23:17,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 20:23:17,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 20:23:23,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 20:23:23,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 20:24:38,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 20:24:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 20:25:38,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 20:26:29,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 20:26:29,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 20:26:38,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 20:26:38,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 20:27:13,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 20:27:13,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 20:27:18,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 20:27:18,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 20:28:23,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 20:28:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 20:29:23,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 20:30:13,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 20:30:13,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 20:30:22,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 20:30:22,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 20:30:43,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 20:30:43,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 20:30:53,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 20:30:53,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 20:32:08,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 20:32:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 20:33:08,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 20:33:58,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 20:33:58,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 20:34:12,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 20:34:12,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 20:34:32,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 20:34:32,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 20:34:42,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 20:34:42,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 20:35:53,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 20:35:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 20:36:53,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 20:37:43,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 20:37:43,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 20:37:57,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 20:37:57,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 20:39:27,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 20:39:27,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 20:39:32,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 20:39:32,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 20:39:38,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 20:39:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 20:40:38,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 20:41:28,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 20:41:28,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 20:41:43,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 20:41:43,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 20:42:58,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 20:42:58,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 20:43:08,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 20:43:08,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 20:43:24,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 20:43:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 20:44:24,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 20:45:14,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 20:45:14,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 20:45:23,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 20:45:23,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 20:45:45,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 20:45:45,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 20:45:55,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 20:45:55,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 20:47:05,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 20:47:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 20:48:05,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 20:48:55,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 20:48:55,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 20:49:09,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 20:49:09,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 20:49:39,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 20:49:39,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 20:49:49,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 20:49:49,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 20:50:49,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 20:50:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 20:51:49,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 20:52:40,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 20:52:40,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 20:52:49,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 20:52:49,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 20:54:29,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 20:54:29,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 20:54:39,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 20:54:39,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 20:54:44,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 20:54:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 20:55:44,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 20:56:34,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 20:56:34,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 20:56:43,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 20:56:43,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 20:57:13,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 20:57:13,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 20:57:19,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 20:57:19,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 20:58:30,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 20:58:30,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 20:59:30,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 21:00:21,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 21:00:21,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 21:00:35,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 21:00:35,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 21:01:20,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 21:01:20,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 21:01:25,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 21:01:25,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 21:02:10,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 21:02:10,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 21:03:10,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 21:04:00,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 21:04:00,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 21:04:09,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 21:04:09,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 21:04:27,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 21:04:27,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 21:04:32,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 21:04:32,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 21:05:53,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 21:05:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 21:05:59,EXPERIMENT_BASELINE_END,ALL,ALL,EXPERIMENT,0,training +2026-03-21 21:06:09,EXPERIMENT_CHAOS_START,Orchestrator,System,slow-connection,1,training +2026-03-21 21:06:09,START_ANOMALY,Orchestrator,System,slow-connection,1,training +2026-03-21 21:06:39,SCENARIO_START,ALL,ALL,START,0,training +2026-03-21 21:06:39,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 21:11:39,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 21:11:39,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 21:13:23,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 21:13:23,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 21:18:26,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 21:18:26,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 21:19:49,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 21:19:49,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 21:21:09,STOP_ANOMALY,Orchestrator,System,slow-connection,1,training +2026-03-21 21:21:09,EXPERIMENT_CHAOS_END,Orchestrator,System,slow-connection,1,training +2026-03-21 21:21:12,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 21:21:12,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 21:22:12,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 21:23:02,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 21:23:02,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 21:23:17,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 21:23:17,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 21:25:02,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 21:25:02,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 21:25:13,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 21:25:13,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 21:25:18,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 21:25:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 21:26:18,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 21:27:08,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 21:27:08,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 21:27:22,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 21:27:22,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 21:27:47,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 21:27:47,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 21:27:52,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 21:27:52,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 21:29:02,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 21:29:02,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 21:30:03,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 21:30:53,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 21:30:53,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 21:31:02,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 21:31:02,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 21:31:34,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 21:31:34,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 21:31:44,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 21:31:44,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 21:32:49,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 21:32:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 21:33:49,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 21:34:39,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 21:34:39,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 21:34:48,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 21:34:48,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 21:36:09,EXPERIMENT_CHAOS_START,Orchestrator,System,high-latency,1,training +2026-03-21 21:36:09,START_ANOMALY,Orchestrator,System,high-latency,1,training +2026-03-21 21:39:24,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 21:39:24,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 21:40:37,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 21:40:37,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 21:41:26,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 21:41:26,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 21:42:26,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 21:47:29,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 21:47:29,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 21:50:25,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 21:50:25,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 21:51:09,STOP_ANOMALY,Orchestrator,System,high-latency,1,training +2026-03-21 21:51:09,EXPERIMENT_CHAOS_END,Orchestrator,System,high-latency,1,training +2026-03-21 21:51:28,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 21:51:28,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 21:51:33,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 21:51:33,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 21:51:43,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 21:51:43,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 21:52:43,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 21:53:33,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 21:53:33,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 21:53:47,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 21:53:47,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 21:54:03,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 21:54:03,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 21:54:08,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 21:54:08,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 21:55:28,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 21:55:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 21:56:28,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 21:57:18,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 21:57:18,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 21:57:32,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 21:57:32,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 21:57:53,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 21:57:53,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 21:57:58,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 21:57:58,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 21:59:13,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 21:59:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 22:00:13,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 22:01:03,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 22:01:03,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 22:01:15,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 22:01:15,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 22:01:50,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 22:01:50,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 22:01:56,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 22:01:56,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 22:03:01,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 22:03:01,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 22:04:01,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 22:04:51,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 22:04:51,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 22:05:05,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 22:05:05,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 22:06:09,EXPERIMENT_CHAOS_START,Orchestrator,System,packet-loss,1,training +2026-03-21 22:06:09,START_ANOMALY,Orchestrator,System,packet-loss,1,training +2026-03-21 22:06:40,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 22:06:40,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 22:06:45,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 22:06:45,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 22:06:50,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 22:06:50,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 22:07:50,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 22:08:41,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 22:08:41,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 22:08:53,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 22:08:53,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 22:09:08,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 22:09:08,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 22:09:14,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 22:09:14,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 22:10:34,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 22:10:34,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 22:11:34,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 22:12:24,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 22:12:24,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 22:12:38,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 22:12:38,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 22:14:23,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 22:14:23,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 22:14:34,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 22:14:34,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 22:14:39,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 22:14:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 22:15:39,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 22:16:29,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 22:16:29,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 22:16:43,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 22:16:43,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 22:18:18,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 22:18:18,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 22:18:28,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 22:18:28,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 22:18:33,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 22:18:33,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 22:19:33,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 22:20:24,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 22:20:24,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 22:20:38,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 22:20:38,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 22:20:53,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 22:20:53,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 22:21:03,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 22:21:03,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 22:21:09,STOP_ANOMALY,Orchestrator,System,packet-loss,1,training +2026-03-21 22:21:09,EXPERIMENT_CHAOS_END,Orchestrator,System,packet-loss,1,training +2026-03-21 22:22:18,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 22:22:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 22:23:18,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 22:24:08,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 22:24:08,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 22:24:17,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 22:24:17,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 22:24:52,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 22:24:52,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 22:25:03,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 22:25:03,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 22:26:03,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 22:26:03,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 22:27:03,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 22:27:53,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 22:27:53,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 22:28:08,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 22:28:08,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 22:28:28,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 22:28:28,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 22:28:39,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 22:28:39,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 22:29:49,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 22:29:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 22:30:49,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 22:31:39,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 22:31:39,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 22:31:48,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 22:31:48,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 22:33:30,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 22:33:30,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 22:33:40,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 22:33:40,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 22:33:46,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 22:33:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 22:34:46,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 22:35:31,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 22:35:31,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 22:35:40,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 22:35:40,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 22:36:09,EXPERIMENT_CHAOS_START,Orchestrator,System,congestion,1,training +2026-03-21 22:36:09,START_ANOMALY,Orchestrator,System,congestion,1,training +2026-03-21 22:40:42,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 22:40:42,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 22:40:53,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 22:40:53,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 22:41:43,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 22:41:43,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 22:42:43,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 22:47:44,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 22:47:44,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 22:48:09,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 22:48:09,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 22:51:09,STOP_ANOMALY,Orchestrator,System,congestion,1,training +2026-03-21 22:51:09,EXPERIMENT_CHAOS_END,Orchestrator,System,congestion,1,training +2026-03-21 22:51:15,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 22:51:15,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 22:51:30,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 22:51:30,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 22:51:45,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 22:51:45,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 22:52:45,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 22:53:35,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 22:53:35,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 22:53:49,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 22:53:49,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 22:55:34,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 22:55:34,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 22:55:39,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 22:55:39,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 22:55:45,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 22:55:45,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 22:56:45,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 22:57:35,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 22:57:35,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 22:57:49,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 22:57:49,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 22:58:04,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 22:58:04,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 22:58:14,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 22:58:14,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 22:59:30,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 22:59:30,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 23:00:30,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 23:01:20,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 23:01:20,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 23:01:34,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 23:01:34,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 23:03:09,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 23:03:09,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 23:03:19,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 23:03:19,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 23:03:24,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 23:03:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 23:04:24,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 23:05:14,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 23:05:14,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 23:05:23,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 23:05:23,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 23:05:44,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 23:05:44,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 23:05:49,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 23:05:49,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 23:06:09,EXPERIMENT_CHAOS_START,Orchestrator,System,partial-outage,1,training +2026-03-21 23:06:09,START_ANOMALY,Orchestrator,System,partial-outage,1,training +2026-03-21 23:07:09,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 23:07:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 23:08:09,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 23:08:59,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 23:08:59,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 23:09:13,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 23:09:13,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 23:10:58,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 23:10:58,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 23:11:09,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 23:11:09,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 23:11:14,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 23:11:14,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 23:12:14,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 23:13:04,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 23:13:04,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 23:13:20,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 23:13:20,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 23:14:20,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 23:14:20,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 23:14:26,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 23:14:26,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 23:15:01,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 23:15:01,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 23:16:01,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 23:16:52,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 23:16:52,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 23:17:06,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 23:17:06,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 23:18:31,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 23:18:31,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 23:18:36,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 23:18:36,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 23:18:46,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 23:18:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 23:19:46,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 23:20:36,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 23:20:36,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 23:20:51,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 23:20:51,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 23:21:09,STOP_ANOMALY,Orchestrator,System,partial-outage,1,training +2026-03-21 23:21:09,EXPERIMENT_CHAOS_END,Orchestrator,System,partial-outage,1,training +2026-03-21 23:22:36,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 23:22:36,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 23:22:41,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 23:22:41,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 23:22:51,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 23:22:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 23:23:51,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 23:24:41,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 23:24:41,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 23:24:55,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 23:24:55,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 23:25:20,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 23:25:20,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 23:25:31,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 23:25:31,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 23:26:36,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 23:26:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 23:27:36,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 23:28:26,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 23:28:26,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 23:28:39,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 23:28:39,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 23:29:49,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 23:29:49,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 23:29:54,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 23:29:54,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 23:30:20,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 23:30:20,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 23:31:20,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 23:32:10,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 23:32:10,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 23:32:23,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 23:32:23,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 23:33:43,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 23:33:43,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 23:33:53,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 23:33:53,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 23:34:03,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 23:34:03,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 23:35:03,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 23:35:53,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 23:35:53,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 23:36:07,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 23:36:07,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 23:36:09,EXPERIMENT_CHAOS_START,Orchestrator,System,flapping,1,training +2026-03-21 23:36:09,START_ANOMALY,Orchestrator,System,flapping,1,training +2026-03-21 23:36:39,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 23:37:09,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 23:37:38,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 23:37:38,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 23:37:39,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 23:38:09,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 23:38:38,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 23:38:38,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 23:38:39,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 23:39:09,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 23:39:09,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 23:39:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 23:39:39,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 23:40:09,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 23:40:09,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 23:40:39,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 23:41:09,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 23:41:39,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 23:42:05,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 23:42:05,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 23:42:09,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 23:42:20,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 23:42:20,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 23:42:39,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 23:43:09,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 23:43:39,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 23:44:09,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 23:44:39,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 23:45:09,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 23:45:36,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 23:45:36,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 23:45:39,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 23:46:09,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 23:46:21,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 23:46:21,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 23:46:26,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 23:46:26,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 23:46:39,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 23:47:09,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 23:47:26,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 23:47:39,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 23:48:09,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 23:48:39,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 23:49:09,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 23:49:39,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 23:50:09,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 23:50:39,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 23:51:09,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 23:51:09,STOP_ANOMALY,Orchestrator,System,flapping,1,training +2026-03-21 23:51:09,EXPERIMENT_CHAOS_END,Orchestrator,System,flapping,1,training +2026-03-21 23:52:26,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 23:52:26,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 23:52:35,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 23:52:35,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 23:52:57,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 23:52:57,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 23:53:07,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 23:53:07,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 23:54:18,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 23:54:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 23:55:18,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 23:56:08,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 23:56:08,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 23:56:22,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 23:56:22,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 23:56:42,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 23:56:42,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 23:56:47,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 23:56:47,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 23:58:02,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 23:58:02,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 23:59:02,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 23:59:52,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 23:59:52,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 00:00:06,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 00:00:06,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 00:01:11,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 00:01:11,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 00:01:21,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 00:01:21,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 00:01:46,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 00:01:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 00:02:46,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 00:03:36,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 00:03:36,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 00:03:51,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 00:03:51,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 00:05:31,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 00:05:31,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 00:05:36,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 00:05:36,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 00:05:42,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 00:05:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 00:06:09,EXPERIMENT_CHAOS_START,Orchestrator,System,cpu-stress,1,training +2026-03-22 00:06:09,START_ANOMALY,Orchestrator,System,cpu-stress,1,training +2026-03-22 00:06:09,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-22 00:06:43,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 00:06:54,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-22 00:07:33,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 00:07:33,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 00:07:47,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 00:07:47,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 00:07:49,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-22 00:08:07,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 00:08:07,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 00:08:17,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 00:08:17,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 00:08:34,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-22 00:09:28,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 00:09:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 00:09:29,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-22 00:10:14,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-22 00:10:28,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 00:11:09,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-22 00:11:13,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 00:11:13,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 00:11:27,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 00:11:27,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 00:11:54,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-22 00:12:49,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-22 00:12:52,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 00:12:52,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 00:12:58,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 00:12:58,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 00:13:08,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 00:13:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 00:13:34,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-22 00:14:08,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 00:14:29,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-22 00:14:58,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 00:14:58,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 00:15:07,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 00:15:07,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 00:15:14,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-22 00:15:33,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 00:15:33,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 00:15:43,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 00:15:43,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 00:16:09,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-22 00:16:53,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 00:16:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 00:16:54,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-22 00:17:50,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-22 00:17:53,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 00:18:35,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-22 00:18:43,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 00:18:43,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 00:18:57,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 00:18:57,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 00:19:30,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-22 00:20:15,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-22 00:20:27,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 00:20:27,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 00:20:37,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 00:20:37,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 00:20:43,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 00:20:43,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 00:21:09,STOP_ANOMALY,Orchestrator,System,cpu-stress,1,training +2026-03-22 00:21:09,EXPERIMENT_CHAOS_END,Orchestrator,System,cpu-stress,1,training +2026-03-22 00:21:43,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 00:22:33,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 00:22:33,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 00:22:52,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 00:22:52,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 00:23:42,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 00:23:42,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 00:23:48,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 00:23:48,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 00:24:28,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 00:24:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 00:25:28,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 00:26:18,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 00:26:18,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 00:26:32,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 00:26:32,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 00:28:22,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 00:28:22,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 00:28:28,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 00:28:28,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 00:28:33,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 00:28:33,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 00:29:33,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 00:30:23,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 00:30:23,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 00:30:37,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 00:30:37,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 00:30:57,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 00:30:57,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 00:31:02,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 00:31:02,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 00:32:17,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 00:32:17,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 00:33:17,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 00:34:08,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 00:34:08,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 00:34:17,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 00:34:17,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 00:34:37,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 00:34:37,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 00:34:44,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 00:34:44,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 00:35:59,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 00:35:59,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 00:36:09,EXPERIMENT_CHAOS_START,Orchestrator,System,io-stress,1,training +2026-03-22 00:36:09,START_ANOMALY,Orchestrator,System,io-stress,1,training +2026-03-22 00:36:09,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-22 00:36:44,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-22 00:36:59,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 00:37:44,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 00:37:44,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 00:37:44,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-22 00:38:19,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-22 00:38:44,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 00:38:44,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 00:39:19,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-22 00:39:54,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-22 00:40:14,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 00:40:14,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 00:40:24,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 00:40:24,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 00:40:54,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-22 00:41:29,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-22 00:42:29,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-22 00:43:04,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-22 00:43:09,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 00:43:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 00:44:04,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-22 00:44:09,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 00:44:39,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-22 00:45:36,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 00:45:36,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 00:45:39,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-22 00:46:14,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-22 00:46:24,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 00:46:24,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 00:46:45,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 00:46:45,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 00:46:50,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 00:46:50,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 00:47:15,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-22 00:47:50,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-22 00:48:25,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 00:48:25,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 00:48:50,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-22 00:49:25,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-22 00:49:25,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 00:50:25,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-22 00:50:28,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 00:50:28,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 00:51:00,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-22 00:51:09,STOP_ANOMALY,Orchestrator,System,io-stress,1,training +2026-03-22 00:51:09,RECOVERY_RESTART,Orchestrator,System,io-stress,0,training +2026-03-22 00:51:19,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 00:51:19,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 00:51:22,EXPERIMENT_CHAOS_END,Orchestrator,System,io-stress,1,training +2026-03-22 00:51:34,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 00:51:34,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 00:51:39,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 00:51:39,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 00:54:39,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 00:54:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 00:55:39,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 00:56:29,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 00:56:29,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 00:56:38,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 00:56:38,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 00:57:08,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 00:57:08,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 00:57:14,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 00:57:14,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 00:58:24,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 00:58:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 00:59:24,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 01:00:14,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 01:00:14,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 01:00:23,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 01:00:23,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 01:00:43,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 01:00:43,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 01:00:53,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 01:00:53,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 01:02:08,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 01:02:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 01:03:09,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 01:03:59,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 01:03:59,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 01:04:08,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 01:04:08,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 01:04:44,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 01:04:44,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 01:04:49,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 01:04:49,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 01:05:54,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 01:05:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 01:06:22,EXPERIMENT_CHAOS_START,Orchestrator,System,mem-stress,1,training +2026-03-22 01:06:22,START_ANOMALY,Orchestrator,System,mem-stress,1,training +2026-03-22 01:06:22,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-22 01:06:52,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-22 01:06:54,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 01:07:39,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 01:07:39,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 01:07:52,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-22 01:07:53,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 01:07:53,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 01:08:22,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-22 01:08:23,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 01:08:23,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 01:08:29,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 01:08:29,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 01:09:22,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-22 01:09:34,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 01:09:34,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 01:09:52,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-22 01:10:34,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 01:10:41,MFT_SERVICE_RESTART,192.168.122.97,transfer-job-manager,N/A,0,training +2026-03-22 01:10:52,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-22 01:11:22,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-22 01:11:42,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 01:11:42,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 01:11:56,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 01:11:56,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 01:12:21,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 01:12:21,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 01:12:23,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-22 01:12:33,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 01:12:33,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 01:12:53,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-22 01:13:34,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 01:13:34,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 01:13:53,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-22 01:14:23,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-22 01:14:34,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 01:15:23,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-22 01:15:24,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 01:15:24,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 01:15:32,MFT_SERVICE_RESTART,192.168.122.97,transfer-job-manager,N/A,0,training +2026-03-22 01:15:32,MFT_SERVICE_RESTART,192.168.122.97,transfer-job-manager,N/A,0,training +2026-03-22 01:15:32,MFT_SERVICE_RESTART,192.168.122.97,transfer-job-manager,N/A,0,training +2026-03-22 01:15:53,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-22 01:16:11,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 01:16:11,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 01:16:53,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-22 01:17:01,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 01:17:01,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 01:17:06,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 01:17:06,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 01:17:17,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 01:17:17,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 01:17:23,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-22 01:18:17,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 01:18:23,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-22 01:18:53,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-22 01:18:53,MFT_SERVICE_RESTART,192.168.122.97,transfer-job-manager,N/A,0,training +2026-03-22 01:19:12,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 01:19:12,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 01:19:26,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 01:19:26,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 01:19:53,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-22 01:20:01,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 01:20:01,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 01:20:08,MFT_SERVICE_RESTART,192.168.122.97,transfer-job-manager,N/A,0,training +2026-03-22 01:20:23,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-22 01:20:34,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 01:20:34,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 01:21:22,STOP_ANOMALY,Orchestrator,System,mem-stress,1,training +2026-03-22 01:21:22,RECOVERY_RESTART,Orchestrator,System,mem-stress,0,training +2026-03-22 01:21:35,EXPERIMENT_CHAOS_END,Orchestrator,System,mem-stress,1,training +2026-03-22 01:21:46,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 01:21:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 01:22:46,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 01:23:36,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 01:23:36,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 01:23:50,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 01:23:50,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 01:25:35,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 01:25:35,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 01:25:40,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 01:25:40,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 01:25:46,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 01:25:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 01:26:46,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 01:27:36,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 01:27:36,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 01:27:45,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 01:27:45,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 01:28:10,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 01:28:10,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 01:28:20,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 01:28:20,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 01:29:31,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 01:29:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 01:30:31,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 01:31:21,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 01:31:21,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 01:31:38,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 01:31:38,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 01:31:53,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 01:31:53,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 01:32:03,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 01:32:03,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 01:33:18,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 01:33:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 01:34:18,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 01:35:08,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 01:35:08,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 01:35:22,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 01:35:22,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 01:35:48,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 01:35:48,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 01:35:54,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 01:35:54,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 01:36:35,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 01:36:35,EXPERIMENT_END,ALL,ALL,EXPERIMENT,0,training diff --git a/evaluation/data/gt_full_cycle_run3.csv b/evaluation/data/gt_full_cycle_run3.csv new file mode 100644 index 0000000..548405f --- /dev/null +++ b/evaluation/data/gt_full_cycle_run3.csv @@ -0,0 +1,1121 @@ +timestamp,action,source,target,workload_type,is_anomaly,scenario_mode +2026-03-22 07:01:37,EXPERIMENT_BASELINE_START,ALL,ALL,EXPERIMENT,0,training +2026-03-22 07:02:08,SCENARIO_START,ALL,ALL,START,0,training +2026-03-22 07:02:08,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 07:02:53,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 07:02:53,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 07:03:07,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 07:03:07,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 07:03:31,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 07:03:31,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 07:03:41,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 07:03:41,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 07:04:47,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 07:04:47,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 07:05:47,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 07:06:37,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 07:06:37,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 07:06:46,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 07:06:46,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 07:07:14,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 07:07:14,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 07:07:19,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 07:07:19,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 07:08:30,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 07:08:30,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 07:09:30,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 07:10:21,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 07:10:21,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 07:10:30,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 07:10:30,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 07:12:22,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 07:12:22,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 07:12:27,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 07:12:27,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 07:12:32,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 07:12:32,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 07:13:32,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 07:14:23,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 07:14:23,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 07:14:37,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 07:14:37,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 07:15:02,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 07:15:02,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 07:15:07,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 07:15:07,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 07:16:17,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 07:16:17,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 07:17:17,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 07:18:07,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 07:18:07,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 07:18:22,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 07:18:22,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 07:18:37,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 07:18:37,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 07:18:47,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 07:18:47,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 07:20:02,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 07:20:02,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 07:21:02,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 07:21:52,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 07:21:52,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 07:22:06,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 07:22:06,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 07:23:38,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 07:23:38,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 07:23:45,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 07:23:45,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 07:23:50,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 07:23:50,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 07:24:50,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 07:25:41,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 07:25:41,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 07:25:50,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 07:25:50,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 07:26:12,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 07:26:12,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 07:26:17,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 07:26:17,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 07:27:32,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 07:27:32,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 07:28:32,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 07:29:22,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 07:29:22,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 07:29:36,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 07:29:36,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 07:31:02,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 07:31:02,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 07:31:09,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 07:31:09,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 07:31:19,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 07:31:19,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 07:32:19,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 07:33:09,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 07:33:09,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 07:33:23,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 07:33:23,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 07:35:08,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 07:35:08,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 07:35:14,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 07:35:14,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 07:35:19,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 07:35:19,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 07:36:19,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 07:37:09,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 07:37:09,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 07:37:23,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 07:37:23,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 07:38:48,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 07:38:48,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 07:38:54,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 07:38:54,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 07:39:04,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 07:39:04,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 07:40:04,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 07:40:54,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 07:40:54,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 07:41:08,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 07:41:08,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 07:42:53,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 07:42:53,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 07:43:03,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 07:43:03,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 07:43:09,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 07:43:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 07:44:09,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 07:44:59,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 07:44:59,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 07:45:09,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 07:45:09,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 07:45:24,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 07:45:24,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 07:45:34,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 07:45:34,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 07:46:49,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 07:46:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 07:47:49,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 07:48:34,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 07:48:34,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 07:48:46,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 07:48:46,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 07:50:34,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 07:50:34,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 07:50:44,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 07:50:44,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 07:50:49,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 07:50:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 07:51:49,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 07:52:39,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 07:52:39,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 07:52:48,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 07:52:48,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 07:53:10,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 07:53:10,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 07:53:20,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 07:53:20,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 07:54:30,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 07:54:30,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 07:55:31,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 07:56:21,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 07:56:21,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 07:56:35,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 07:56:35,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 07:58:10,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 07:58:10,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 07:58:15,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 07:58:15,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 07:58:20,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 07:58:20,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 07:59:20,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 08:00:10,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 08:00:10,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 08:00:24,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 08:00:24,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 08:02:15,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 08:02:15,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 08:02:20,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 08:02:20,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 08:02:30,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 08:02:30,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 08:03:30,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 08:04:20,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 08:04:20,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 08:04:34,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 08:04:34,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 08:04:55,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 08:04:55,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 08:05:00,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 08:05:00,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 08:06:15,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 08:06:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 08:07:15,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 08:08:05,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 08:08:05,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 08:08:20,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 08:08:20,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 08:08:41,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 08:08:41,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 08:08:51,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 08:08:51,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 08:09:51,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 08:09:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 08:10:51,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 08:11:41,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 08:11:41,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 08:11:55,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 08:11:55,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 08:13:05,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 08:13:05,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 08:13:11,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 08:13:11,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 08:13:33,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 08:13:33,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 08:14:33,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 08:15:23,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 08:15:23,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 08:15:37,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 08:15:37,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 08:17:07,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 08:17:07,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 08:17:18,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 08:17:18,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 08:17:23,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 08:17:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 08:18:23,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 08:19:08,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 08:19:08,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 08:19:22,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 08:19:22,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 08:19:43,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 08:19:43,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 08:19:48,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 08:19:48,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 08:21:03,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 08:21:03,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 08:22:03,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 08:22:49,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 08:22:49,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 08:23:03,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 08:23:03,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 08:23:33,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 08:23:33,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 08:23:40,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 08:23:40,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 08:24:40,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 08:24:40,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 08:25:40,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 08:26:31,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 08:26:31,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 08:26:44,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 08:26:44,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 08:27:00,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 08:27:00,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 08:27:05,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 08:27:05,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 08:28:25,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 08:28:25,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 08:29:25,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 08:30:15,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 08:30:15,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 08:30:29,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 08:30:29,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 08:32:14,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 08:32:14,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 08:32:20,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 08:32:20,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 08:32:25,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 08:32:25,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 08:33:25,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 08:34:15,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 08:34:15,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 08:34:29,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 08:34:29,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 08:36:14,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 08:36:14,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 08:36:24,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 08:36:24,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 08:36:29,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 08:36:29,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 08:37:29,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 08:38:20,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 08:38:20,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 08:38:32,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 08:38:32,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 08:39:23,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 08:39:23,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 08:39:30,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 08:39:30,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 08:40:10,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 08:40:10,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 08:41:10,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 08:41:55,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 08:41:55,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 08:42:09,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 08:42:09,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 08:42:24,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 08:42:24,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 08:42:32,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 08:42:32,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 08:43:47,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 08:43:47,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 08:44:47,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 08:45:32,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 08:45:32,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 08:45:46,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 08:45:46,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 08:46:01,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 08:46:01,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 08:46:07,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 08:46:07,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 08:47:27,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 08:47:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 08:48:27,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 08:49:17,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 08:49:17,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 08:49:31,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 08:49:31,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 08:50:51,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 08:50:51,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 08:50:56,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 08:50:56,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 08:51:12,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 08:51:12,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 08:52:12,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 08:53:02,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 08:53:02,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 08:53:14,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 08:53:14,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 08:53:29,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 08:53:29,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 08:53:35,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 08:53:35,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 08:54:55,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 08:54:55,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 08:55:55,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 08:56:45,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 08:56:45,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 08:56:54,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 08:56:54,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 08:58:44,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 08:58:44,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 08:58:54,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 08:58:54,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 08:59:00,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 08:59:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 09:00:00,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 09:00:50,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 09:00:50,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 09:01:05,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 09:01:05,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 09:01:38,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 09:01:38,EXPERIMENT_BASELINE_END,ALL,ALL,EXPERIMENT,0,training +2026-03-22 09:01:48,EXPERIMENT_CHAOS_START,Orchestrator,System,slow-connection,1,training +2026-03-22 09:01:48,START_ANOMALY,Orchestrator,System,slow-connection,1,training +2026-03-22 09:02:18,SCENARIO_START,ALL,ALL,START,0,training +2026-03-22 09:02:18,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 09:07:23,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 09:07:23,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 09:09:01,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 09:09:01,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 09:14:04,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 09:14:04,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 09:15:28,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 09:15:28,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 09:16:48,STOP_ANOMALY,Orchestrator,System,slow-connection,1,training +2026-03-22 09:16:48,EXPERIMENT_CHAOS_END,Orchestrator,System,slow-connection,1,training +2026-03-22 09:16:51,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 09:16:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 09:17:51,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 09:18:41,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 09:18:41,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 09:18:55,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 09:18:55,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 09:19:21,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 09:19:21,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 09:19:26,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 09:19:26,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 09:20:36,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 09:20:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 09:21:36,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 09:22:27,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 09:22:27,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 09:22:41,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 09:22:41,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 09:23:01,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 09:23:01,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 09:23:06,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 09:23:06,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 09:24:22,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 09:24:22,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 09:25:22,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 09:26:12,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 09:26:12,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 09:26:26,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 09:26:26,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 09:28:01,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 09:28:01,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 09:28:14,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 09:28:14,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 09:28:19,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 09:28:19,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 09:29:19,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 09:30:09,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 09:30:09,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 09:30:18,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 09:30:18,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 09:30:48,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 09:30:48,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 09:30:59,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 09:30:59,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 09:31:48,EXPERIMENT_CHAOS_START,Orchestrator,System,high-latency,1,training +2026-03-22 09:31:48,START_ANOMALY,Orchestrator,System,high-latency,1,training +2026-03-22 09:32:59,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 09:32:59,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 09:33:59,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 09:39:02,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 09:39:02,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 09:42:05,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 09:42:05,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 09:46:18,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 09:46:18,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 09:46:48,STOP_ANOMALY,Orchestrator,System,high-latency,1,training +2026-03-22 09:46:48,EXPERIMENT_CHAOS_END,Orchestrator,System,high-latency,1,training +2026-03-22 09:46:57,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 09:46:57,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 09:47:04,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 09:47:04,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 09:48:04,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 09:48:54,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 09:48:54,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 09:49:08,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 09:49:08,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 09:50:53,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 09:50:53,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 09:51:03,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 09:51:03,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 09:51:09,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 09:51:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 09:52:09,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 09:52:59,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 09:52:59,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 09:53:13,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 09:53:13,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 09:53:38,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 09:53:38,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 09:53:44,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 09:53:44,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 09:54:54,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 09:54:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 09:55:54,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 09:56:45,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 09:56:45,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 09:56:59,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 09:56:59,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 09:58:29,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 09:58:29,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 09:58:39,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 09:58:39,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 09:58:44,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 09:58:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 09:59:44,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 10:00:34,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 10:00:34,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 10:00:48,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 10:00:48,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 10:01:24,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 10:01:24,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 10:01:34,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 10:01:34,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 10:01:48,EXPERIMENT_CHAOS_START,Orchestrator,System,packet-loss,1,training +2026-03-22 10:01:48,START_ANOMALY,Orchestrator,System,packet-loss,1,training +2026-03-22 10:02:29,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 10:02:29,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 10:03:29,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 10:04:14,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 10:04:14,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 10:04:28,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 10:04:28,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 10:04:43,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 10:04:43,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 10:04:54,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 10:04:54,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 10:06:09,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 10:06:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 10:07:09,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 10:07:54,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 10:07:54,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 10:08:08,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 10:08:08,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 10:09:53,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 10:09:53,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 10:09:58,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 10:09:58,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 10:10:04,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 10:10:04,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 10:11:04,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 10:11:54,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 10:11:54,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 10:12:03,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 10:12:03,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 10:12:29,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 10:12:29,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 10:12:34,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 10:12:34,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 10:13:44,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 10:13:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 10:14:44,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 10:15:34,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 10:15:34,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 10:15:48,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 10:15:48,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 10:16:48,STOP_ANOMALY,Orchestrator,System,packet-loss,1,training +2026-03-22 10:16:48,EXPERIMENT_CHAOS_END,Orchestrator,System,packet-loss,1,training +2026-03-22 10:17:39,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 10:17:39,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 10:17:44,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 10:17:44,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 10:17:49,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 10:17:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 10:18:49,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 10:19:39,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 10:19:39,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 10:19:53,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 10:19:53,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 10:20:13,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 10:20:13,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 10:20:24,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 10:20:24,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 10:21:29,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 10:21:29,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 10:22:29,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 10:23:14,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 10:23:14,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 10:23:28,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 10:23:28,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 10:25:13,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 10:25:13,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 10:25:19,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 10:25:19,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 10:25:24,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 10:25:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 10:26:24,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 10:27:14,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 10:27:14,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 10:27:28,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 10:27:28,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 10:27:48,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 10:27:48,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 10:27:54,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 10:27:54,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 10:29:04,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 10:29:04,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 10:30:04,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 10:30:54,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 10:30:54,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 10:31:08,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 10:31:08,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 10:31:48,EXPERIMENT_CHAOS_START,Orchestrator,System,congestion,1,training +2026-03-22 10:31:48,START_ANOMALY,Orchestrator,System,congestion,1,training +2026-03-22 10:36:08,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 10:36:08,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 10:36:24,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 10:36:24,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 10:37:20,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 10:37:20,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 10:38:20,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 10:43:21,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 10:43:21,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 10:43:40,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 10:43:40,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 10:46:48,STOP_ANOMALY,Orchestrator,System,congestion,1,training +2026-03-22 10:46:48,EXPERIMENT_CHAOS_END,Orchestrator,System,congestion,1,training +2026-03-22 10:47:12,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 10:47:12,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 10:47:23,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 10:47:23,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 10:47:33,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 10:47:33,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 10:48:33,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 10:49:23,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 10:49:23,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 10:49:37,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 10:49:37,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 10:51:08,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 10:51:08,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 10:51:18,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 10:51:18,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 10:51:24,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 10:51:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 10:52:24,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 10:53:09,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 10:53:09,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 10:53:23,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 10:53:23,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 10:54:43,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 10:54:43,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 10:54:54,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 10:54:54,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 10:55:04,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 10:55:04,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 10:56:04,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 10:56:54,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 10:56:54,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 10:57:05,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 10:57:05,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 10:57:26,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 10:57:26,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 10:57:37,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 10:57:37,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 10:58:42,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 10:58:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 10:59:42,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 11:00:32,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 11:00:32,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 11:00:46,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 11:00:46,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 11:01:11,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 11:01:11,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 11:01:16,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 11:01:16,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 11:01:48,EXPERIMENT_CHAOS_START,Orchestrator,System,partial-outage,1,training +2026-03-22 11:01:48,START_ANOMALY,Orchestrator,System,partial-outage,1,training +2026-03-22 11:02:27,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 11:02:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 11:03:27,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 11:04:12,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 11:04:12,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 11:04:26,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 11:04:26,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 11:05:46,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 11:05:46,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 11:05:56,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 11:05:56,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 11:06:06,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 11:06:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 11:07:07,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 11:07:57,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 11:07:57,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 11:08:12,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 11:08:12,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 11:09:42,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 11:09:42,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 11:09:53,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 11:09:53,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 11:09:58,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 11:09:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 11:10:58,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 11:11:48,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 11:11:48,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 11:12:02,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 11:12:02,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 11:12:17,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 11:12:17,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 11:12:27,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 11:12:27,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 11:13:43,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 11:13:43,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 11:14:43,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 11:15:33,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 11:15:33,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 11:15:47,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 11:15:47,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 11:16:48,STOP_ANOMALY,Orchestrator,System,partial-outage,1,training +2026-03-22 11:16:48,EXPERIMENT_CHAOS_END,Orchestrator,System,partial-outage,1,training +2026-03-22 11:17:12,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 11:17:12,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 11:17:17,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 11:17:17,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 11:17:32,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 11:17:32,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 11:18:33,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 11:19:23,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 11:19:23,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 11:19:37,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 11:19:37,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 11:20:42,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 11:20:42,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 11:20:47,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 11:20:47,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 11:21:17,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 11:21:17,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 11:22:17,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 11:23:07,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 11:23:07,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 11:23:16,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 11:23:16,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 11:23:32,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 11:23:32,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 11:23:42,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 11:23:42,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 11:25:02,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 11:25:02,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 11:26:02,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 11:26:52,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 11:26:52,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 11:27:01,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 11:27:01,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 11:27:26,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 11:27:26,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 11:27:37,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 11:27:37,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 11:28:47,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 11:28:47,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 11:29:47,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 11:30:37,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 11:30:37,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 11:30:51,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 11:30:51,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 11:31:48,EXPERIMENT_CHAOS_START,Orchestrator,System,flapping,1,training +2026-03-22 11:31:48,START_ANOMALY,Orchestrator,System,flapping,1,training +2026-03-22 11:32:16,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 11:32:16,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 11:32:18,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-22 11:32:48,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-22 11:33:17,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 11:33:17,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 11:33:18,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-22 11:33:48,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-22 11:33:57,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 11:33:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 11:34:18,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-22 11:34:48,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-22 11:34:57,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 11:35:18,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-22 11:35:48,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-22 11:36:18,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-22 11:36:48,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-22 11:37:18,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-22 11:37:48,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-22 11:38:18,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-22 11:38:48,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-22 11:38:52,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 11:38:52,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 11:39:01,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 11:39:01,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 11:39:18,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-22 11:39:48,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-22 11:40:18,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-22 11:40:48,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-22 11:41:18,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-22 11:41:48,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-22 11:42:12,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 11:42:12,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 11:42:18,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-22 11:42:22,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 11:42:22,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 11:42:48,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-22 11:42:54,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 11:42:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 11:43:18,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-22 11:43:48,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-22 11:43:54,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 11:44:18,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-22 11:44:48,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-22 11:45:18,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-22 11:45:48,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-22 11:46:18,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-22 11:46:48,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-22 11:46:48,STOP_ANOMALY,Orchestrator,System,flapping,1,training +2026-03-22 11:46:48,EXPERIMENT_CHAOS_END,Orchestrator,System,flapping,1,training +2026-03-22 11:47:24,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 11:47:24,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 11:47:38,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 11:47:38,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 11:47:53,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 11:47:53,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 11:47:58,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 11:47:58,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 11:49:18,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 11:49:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 11:50:18,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 11:51:08,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 11:51:08,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 11:51:22,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 11:51:22,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 11:51:48,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 11:51:48,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 11:51:53,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 11:51:53,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 11:52:53,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 11:52:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 11:53:53,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 11:54:43,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 11:54:43,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 11:54:52,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 11:54:52,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 11:55:22,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 11:55:22,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 11:55:33,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 11:55:33,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 11:56:38,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 11:56:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 11:57:38,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 11:58:23,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 11:58:23,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 11:58:37,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 11:58:37,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 11:59:27,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 11:59:27,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 11:59:32,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 11:59:32,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 12:00:17,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 12:00:17,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 12:01:17,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 12:01:48,EXPERIMENT_CHAOS_START,Orchestrator,System,cpu-stress,1,training +2026-03-22 12:01:48,START_ANOMALY,Orchestrator,System,cpu-stress,1,training +2026-03-22 12:01:48,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-22 12:02:03,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 12:02:03,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 12:02:19,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 12:02:19,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 12:02:33,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-22 12:02:49,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 12:02:49,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 12:02:59,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 12:02:59,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 12:03:28,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-22 12:04:04,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 12:04:04,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 12:04:13,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-22 12:05:04,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 12:05:08,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-22 12:05:50,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 12:05:50,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 12:05:53,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-22 12:06:04,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 12:06:04,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 12:06:48,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-22 12:07:33,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-22 12:07:51,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 12:07:51,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 12:07:56,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 12:07:56,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 12:08:06,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 12:08:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 12:08:28,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-22 12:09:06,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 12:09:13,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-22 12:09:56,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 12:09:56,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 12:10:08,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-22 12:10:10,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 12:10:10,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 12:10:53,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-22 12:11:48,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-22 12:11:56,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 12:11:56,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 12:12:01,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 12:12:01,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 12:12:06,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 12:12:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 12:12:33,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-22 12:13:06,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 12:13:28,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-22 12:13:56,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 12:13:56,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 12:14:10,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 12:14:10,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 12:14:13,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-22 12:14:30,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 12:14:30,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 12:14:44,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 12:14:44,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 12:15:08,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-22 12:15:53,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-22 12:15:54,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 12:15:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 12:16:48,STOP_ANOMALY,Orchestrator,System,cpu-stress,1,training +2026-03-22 12:16:48,EXPERIMENT_CHAOS_END,Orchestrator,System,cpu-stress,1,training +2026-03-22 12:16:54,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 12:17:44,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 12:17:44,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 12:17:55,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 12:17:55,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 12:18:10,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 12:18:10,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 12:18:15,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 12:18:15,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 12:19:35,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 12:19:35,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 12:20:35,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 12:21:25,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 12:21:25,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 12:21:39,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 12:21:39,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 12:22:05,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 12:22:05,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 12:22:15,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 12:22:15,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 12:23:20,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 12:23:20,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 12:24:20,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 12:25:10,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 12:25:10,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 12:25:24,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 12:25:24,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 12:25:49,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 12:25:49,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 12:25:56,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 12:25:56,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 12:26:57,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 12:26:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 12:27:57,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 12:28:47,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 12:28:47,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 12:29:01,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 12:29:01,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 12:29:21,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 12:29:21,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 12:29:27,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 12:29:27,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 12:30:42,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 12:30:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 12:31:42,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 12:31:48,EXPERIMENT_CHAOS_START,Orchestrator,System,io-stress,1,training +2026-03-22 12:31:48,START_ANOMALY,Orchestrator,System,io-stress,1,training +2026-03-22 12:31:48,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-22 12:32:23,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-22 12:32:48,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 12:32:48,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 12:33:02,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 12:33:02,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 12:33:22,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 12:33:22,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 12:33:24,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-22 12:33:59,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-22 12:34:17,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 12:34:17,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 12:34:59,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-22 12:35:34,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-22 12:35:52,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 12:35:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 12:36:34,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-22 12:36:52,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 12:37:09,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-22 12:37:56,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 12:37:56,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 12:38:09,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-22 12:38:10,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 12:38:10,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 12:38:44,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-22 12:39:44,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-22 12:40:19,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-22 12:40:41,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 12:40:41,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 12:40:46,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 12:40:46,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 12:40:51,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 12:40:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 12:41:19,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-22 12:41:51,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 12:41:54,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-22 12:42:46,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 12:42:46,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 12:42:54,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-22 12:43:29,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-22 12:43:35,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 12:43:35,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 12:44:29,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-22 12:45:04,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-22 12:45:20,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 12:45:20,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 12:45:26,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 12:45:26,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 12:45:41,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 12:45:41,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 12:46:04,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-22 12:46:39,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-22 12:46:41,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 12:46:48,STOP_ANOMALY,Orchestrator,System,io-stress,1,training +2026-03-22 12:46:48,RECOVERY_RESTART,Orchestrator,System,io-stress,0,training +2026-03-22 12:47:01,EXPERIMENT_CHAOS_END,Orchestrator,System,io-stress,1,training +2026-03-22 12:48:03,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 12:48:03,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 12:48:17,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 12:48:17,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 12:48:37,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 12:48:37,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 12:48:42,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 12:48:42,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 12:49:57,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 12:49:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 12:50:57,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 12:51:48,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 12:51:48,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 12:52:02,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 12:52:02,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 12:53:17,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 12:53:17,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 12:53:27,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 12:53:27,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 12:53:32,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 12:53:32,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 12:54:32,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 12:55:22,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 12:55:22,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 12:55:35,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 12:55:35,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 12:55:51,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 12:55:51,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 12:56:01,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 12:56:01,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 12:57:16,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 12:57:16,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 12:58:16,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 12:59:06,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 12:59:06,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 12:59:20,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 12:59:20,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 12:59:51,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 12:59:51,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 13:00:01,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 13:00:01,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 13:01:01,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 13:01:01,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 13:02:01,EXPERIMENT_CHAOS_START,Orchestrator,System,mem-stress,1,training +2026-03-22 13:02:01,START_ANOMALY,Orchestrator,System,mem-stress,1,training +2026-03-22 13:02:01,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-22 13:02:01,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 13:02:31,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-22 13:02:51,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 13:02:51,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 13:03:05,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 13:03:05,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 13:03:26,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 13:03:26,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 13:03:31,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 13:03:31,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 13:03:31,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-22 13:04:01,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-22 13:04:46,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 13:04:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 13:05:01,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-22 13:05:31,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-22 13:05:46,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 13:06:31,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-22 13:06:31,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 13:06:31,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 13:06:47,MFT_SERVICE_RESTART,192.168.122.97,transfer-job-manager,N/A,0,training +2026-03-22 13:06:47,MFT_SERVICE_RESTART,192.168.122.97,transfer-job-manager,N/A,0,training +2026-03-22 13:07:01,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-22 13:08:02,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-22 13:08:32,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-22 13:09:32,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-22 13:10:02,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-22 13:11:02,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-22 13:11:32,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-22 13:11:33,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 13:11:33,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 13:11:49,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 13:11:49,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 13:11:55,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 13:11:55,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 13:12:01,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 13:12:01,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 13:12:32,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-22 13:13:01,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 13:13:02,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-22 13:13:51,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 13:13:51,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 13:14:02,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-22 13:14:05,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 13:14:05,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 13:14:25,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 13:14:25,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 13:14:32,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-22 13:14:35,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 13:14:35,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 13:15:32,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-22 13:15:46,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 13:15:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 13:16:02,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-22 13:16:46,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 13:17:01,STOP_ANOMALY,Orchestrator,System,mem-stress,1,training +2026-03-22 13:17:01,RECOVERY_RESTART,Orchestrator,System,mem-stress,0,training +2026-03-22 13:17:14,EXPERIMENT_CHAOS_END,Orchestrator,System,mem-stress,1,training +2026-03-22 13:17:51,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 13:17:51,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 13:18:04,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 13:18:04,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 13:18:19,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 13:18:19,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 13:18:25,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 13:18:25,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 13:19:45,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 13:19:45,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 13:20:45,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 13:21:35,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 13:21:35,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 13:21:49,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 13:21:49,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 13:22:19,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 13:22:19,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 13:22:29,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 13:22:29,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 13:23:35,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 13:23:35,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 13:24:35,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 13:25:25,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 13:25:25,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 13:26:42,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 13:26:42,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 13:27:17,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 13:27:17,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 13:27:23,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 13:27:23,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 13:27:28,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 13:27:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 13:28:28,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 13:29:18,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 13:29:18,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 13:29:32,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-22 13:29:32,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 13:29:47,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-22 13:29:47,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 13:29:57,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-22 13:29:57,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 13:31:13,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-22 13:31:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-22 13:32:13,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 13:32:14,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-22 13:32:14,EXPERIMENT_END,ALL,ALL,EXPERIMENT,0,training diff --git a/evaluation/data/gt_high-bw_run1.csv b/evaluation/data/gt_high-bw_run1.csv new file mode 100644 index 0000000..6433e69 --- /dev/null +++ b/evaluation/data/gt_high-bw_run1.csv @@ -0,0 +1,502 @@ +timestamp,action,source,target,workload_type,is_anomaly,scenario_mode +2026-03-15 17:59:58,EXPERIMENT_BASELINE_START,ALL,ALL,EXPERIMENT,0,training +2026-03-15 18:00:28,SCENARIO_START,ALL,ALL,START,0,training +2026-03-15 18:00:28,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:01:18,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:01:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 18:02:18,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:03:09,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:03:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 18:04:09,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:04:59,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:04:59,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 18:05:59,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:06:49,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:06:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 18:07:49,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:08:39,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:08:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 18:09:39,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:10:30,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:10:30,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 18:11:30,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:12:15,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:12:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 18:13:15,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:14:05,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:14:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 18:15:05,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:15:55,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:15:55,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 18:16:55,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:17:46,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:17:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 18:18:46,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:19:36,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:19:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 18:20:36,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:21:26,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:21:26,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 18:22:26,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:23:17,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:23:17,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 18:24:17,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:25:07,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:25:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 18:26:07,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:26:57,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:26:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 18:27:57,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:28:47,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:28:47,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 18:29:47,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:30:38,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:30:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 18:31:38,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:32:30,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:32:30,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 18:33:30,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:34:22,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:34:22,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 18:35:22,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:36:12,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:36:12,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 18:37:12,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:38:03,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:38:03,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 18:39:03,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:39:53,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:39:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 18:40:53,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:41:43,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:41:43,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 18:42:43,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:43:33,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:43:33,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 18:44:33,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:45:23,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:45:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 18:46:23,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:47:14,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:47:14,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 18:48:14,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:49:04,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:49:04,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 18:50:04,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:50:54,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:50:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 18:51:54,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:52:44,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:52:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 18:53:44,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:54:35,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:54:35,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 18:55:35,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:56:25,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:56:25,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 18:57:25,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:58:15,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 18:58:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 18:59:15,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:00:05,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:00:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 19:01:05,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:01:56,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:01:56,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 19:02:56,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:03:41,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:03:41,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 19:04:41,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:05:31,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:05:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 19:06:31,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:07:21,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:07:21,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 19:08:21,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:09:12,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:09:12,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 19:10:12,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:11:02,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:11:02,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 19:12:02,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:12:52,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:12:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 19:13:52,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:14:42,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:14:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 19:15:42,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:16:33,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:16:33,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 19:17:33,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:18:25,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:18:25,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 19:19:25,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:20:15,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:20:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 19:21:15,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:22:00,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:22:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 19:23:00,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:23:51,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:23:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 19:24:51,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:25:41,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:25:41,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 19:26:41,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:27:31,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:27:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 19:28:31,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:29:22,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:29:22,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 19:29:58,EXPERIMENT_BASELINE_END,ALL,ALL,EXPERIMENT,0,training +2026-03-15 19:30:08,EXPERIMENT_CHAOS_START,Orchestrator,System,slow-connection,1,training +2026-03-15 19:30:08,START_ANOMALY,Orchestrator,System,slow-connection,1,training +2026-03-15 19:30:38,SCENARIO_START,ALL,ALL,START,0,training +2026-03-15 19:30:38,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:35:38,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:35:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 19:36:38,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:40:08,STOP_ANOMALY,Orchestrator,System,slow-connection,1,training +2026-03-15 19:40:08,EXPERIMENT_CHAOS_END,Orchestrator,System,slow-connection,1,training +2026-03-15 19:41:21,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:41:21,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 19:42:21,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:43:12,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:43:12,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 19:44:12,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:45:02,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:45:02,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 19:46:02,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:46:52,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:46:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 19:47:52,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:48:42,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:48:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 19:49:42,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:50:08,EXPERIMENT_CHAOS_START,Orchestrator,System,high-latency,1,training +2026-03-15 19:50:08,START_ANOMALY,Orchestrator,System,high-latency,1,training +2026-03-15 19:52:37,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:52:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 19:53:37,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:58:41,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 19:58:41,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 19:59:41,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:00:08,STOP_ANOMALY,Orchestrator,System,high-latency,1,training +2026-03-15 20:00:08,EXPERIMENT_CHAOS_END,Orchestrator,System,high-latency,1,training +2026-03-15 20:01:24,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:01:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 20:02:24,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:03:14,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:03:14,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 20:04:14,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:05:04,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:05:04,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 20:06:04,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:06:54,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:06:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 20:07:55,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:08:45,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:08:45,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 20:09:45,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:10:08,EXPERIMENT_CHAOS_START,Orchestrator,System,packet-loss,1,training +2026-03-15 20:10:08,START_ANOMALY,Orchestrator,System,packet-loss,1,training +2026-03-15 20:10:36,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:10:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 20:11:36,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:12:22,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:12:22,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 20:13:22,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:14:07,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:14:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 20:15:07,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:15:57,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:15:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 20:16:57,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:17:47,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:17:47,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 20:18:47,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:19:37,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:19:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 20:20:08,STOP_ANOMALY,Orchestrator,System,packet-loss,1,training +2026-03-15 20:20:08,EXPERIMENT_CHAOS_END,Orchestrator,System,packet-loss,1,training +2026-03-15 20:20:38,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:21:28,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:21:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 20:22:28,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:23:18,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:23:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 20:24:18,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:25:08,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:25:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 20:26:08,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:26:58,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:26:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 20:27:58,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:28:48,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:28:48,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 20:29:49,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:30:08,EXPERIMENT_CHAOS_START,Orchestrator,System,congestion,1,training +2026-03-15 20:30:08,START_ANOMALY,Orchestrator,System,congestion,1,training +2026-03-15 20:34:49,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:34:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 20:35:49,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:40:09,STOP_ANOMALY,Orchestrator,System,congestion,1,training +2026-03-15 20:40:09,EXPERIMENT_CHAOS_END,Orchestrator,System,congestion,1,training +2026-03-15 20:40:50,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:40:50,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 20:41:50,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:42:40,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:42:40,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 20:43:40,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:44:31,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:44:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 20:45:31,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:46:21,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:46:21,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 20:47:21,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:48:11,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:48:11,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 20:49:11,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:50:01,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:50:01,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 20:50:09,EXPERIMENT_CHAOS_START,Orchestrator,System,partial-outage,1,training +2026-03-15 20:50:09,START_ANOMALY,Orchestrator,System,partial-outage,1,training +2026-03-15 20:51:01,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:51:51,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:51:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 20:52:51,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:53:37,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:53:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 20:54:37,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:55:27,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:55:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 20:56:27,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:57:19,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:57:19,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 20:58:19,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:59:09,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 20:59:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 21:00:09,STOP_ANOMALY,Orchestrator,System,partial-outage,1,training +2026-03-15 21:00:09,EXPERIMENT_CHAOS_END,Orchestrator,System,partial-outage,1,training +2026-03-15 21:00:09,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:00:59,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:00:59,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 21:01:59,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:02:50,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:02:50,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 21:03:50,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:04:40,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:04:40,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 21:05:40,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:06:30,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:06:30,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 21:07:30,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:08:20,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:08:20,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 21:09:20,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:10:09,EXPERIMENT_CHAOS_START,Orchestrator,System,flapping,1,training +2026-03-15 21:10:09,START_ANOMALY,Orchestrator,System,flapping,1,training +2026-03-15 21:10:10,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:10:10,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 21:10:39,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-15 21:11:09,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-15 21:11:10,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:11:39,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-15 21:12:09,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-15 21:12:39,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-15 21:13:09,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-15 21:13:36,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:13:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 21:13:39,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-15 21:14:09,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-15 21:14:36,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:14:39,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-15 21:14:54,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:14:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 21:15:09,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-15 21:15:39,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-15 21:15:54,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:16:09,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-15 21:16:27,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:16:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 21:16:39,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-15 21:17:09,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-15 21:17:27,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:17:39,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-15 21:17:46,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:17:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 21:18:09,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-15 21:18:39,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-15 21:18:46,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:19:05,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:19:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 21:19:09,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-15 21:19:39,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-15 21:20:05,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:20:09,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-15 21:20:09,STOP_ANOMALY,Orchestrator,System,flapping,1,training +2026-03-15 21:20:09,EXPERIMENT_CHAOS_END,Orchestrator,System,flapping,1,training +2026-03-15 21:21:05,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:21:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 21:22:05,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:22:55,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:22:55,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 21:23:55,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:24:45,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:24:45,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 21:25:45,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:26:36,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:26:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 21:27:36,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:28:26,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:28:26,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 21:29:26,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:30:09,EXPERIMENT_CHAOS_START,Orchestrator,System,cpu-stress,1,training +2026-03-15 21:30:09,START_ANOMALY,Orchestrator,System,cpu-stress,1,training +2026-03-15 21:30:09,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-15 21:30:16,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:30:16,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 21:30:54,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-15 21:31:16,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:31:49,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-15 21:32:06,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:32:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 21:32:34,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-15 21:33:06,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:33:29,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-15 21:33:56,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:33:56,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 21:34:14,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-15 21:34:56,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:35:09,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-15 21:35:48,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:35:48,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 21:35:54,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-15 21:36:48,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:36:49,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-15 21:37:34,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-15 21:37:38,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:37:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 21:38:29,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-15 21:38:38,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:39:14,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-15 21:39:28,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:39:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 21:40:09,STOP_ANOMALY,Orchestrator,System,cpu-stress,1,training +2026-03-15 21:40:09,EXPERIMENT_CHAOS_END,Orchestrator,System,cpu-stress,1,training +2026-03-15 21:40:29,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:41:22,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:41:22,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 21:42:22,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:43:12,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:43:12,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 21:44:12,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:45:02,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:45:02,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 21:46:02,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:46:53,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:46:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 21:47:53,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:48:43,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:48:43,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 21:49:43,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:50:09,EXPERIMENT_CHAOS_START,Orchestrator,System,io-stress,1,training +2026-03-15 21:50:09,START_ANOMALY,Orchestrator,System,io-stress,1,training +2026-03-15 21:50:09,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-15 21:50:44,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-15 21:51:03,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:51:03,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 21:51:44,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-15 21:52:11,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:52:19,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-15 21:53:13,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:53:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 21:53:19,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-15 21:53:54,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-15 21:54:13,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:54:54,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-15 21:55:29,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-15 21:55:43,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:55:43,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 21:56:29,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-15 21:56:43,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:57:04,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-15 21:57:58,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:57:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 21:58:04,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-15 21:58:39,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-15 21:58:58,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 21:59:39,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-15 22:00:09,STOP_ANOMALY,Orchestrator,System,io-stress,1,training +2026-03-15 22:00:09,RECOVERY_RESTART,Orchestrator,System,io-stress,0,training +2026-03-15 22:00:18,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:00:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 22:00:22,EXPERIMENT_CHAOS_END,Orchestrator,System,io-stress,1,training +2026-03-15 22:01:18,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:02:08,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:02:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 22:03:08,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:03:59,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:03:59,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 22:04:59,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:05:49,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:05:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 22:06:49,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:07:44,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:07:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 22:08:44,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:09:34,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:09:34,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 22:10:22,EXPERIMENT_CHAOS_START,Orchestrator,System,mem-stress,1,training +2026-03-15 22:10:22,START_ANOMALY,Orchestrator,System,mem-stress,1,training +2026-03-15 22:10:22,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-15 22:10:34,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:10:52,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-15 22:11:02,MFT_SERVICE_RESTART,192.168.122.97,transfer-job-manager,N/A,0,training +2026-03-15 22:11:52,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-15 22:12:22,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-15 22:12:25,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:12:25,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 22:13:22,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-15 22:13:25,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:13:52,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-15 22:14:17,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:14:17,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 22:14:52,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-15 22:15:17,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:15:22,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-15 22:16:07,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:16:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 22:16:22,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-15 22:16:52,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-15 22:17:07,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:17:52,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-15 22:18:02,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:18:02,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 22:18:22,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-15 22:19:02,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:19:22,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-15 22:19:52,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-15 22:19:53,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:19:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 22:20:22,STOP_ANOMALY,Orchestrator,System,mem-stress,1,training +2026-03-15 22:20:22,RECOVERY_RESTART,Orchestrator,System,mem-stress,0,training +2026-03-15 22:20:35,EXPERIMENT_CHAOS_END,Orchestrator,System,mem-stress,1,training +2026-03-15 22:20:53,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:21:43,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:21:43,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 22:22:43,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:23:33,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:23:33,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 22:24:33,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:25:23,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:25:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 22:26:23,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:27:14,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:27:14,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 22:28:14,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:29:04,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:29:04,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 22:30:04,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:30:35,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:30:35,EXPERIMENT_END,ALL,ALL,EXPERIMENT,0,training diff --git a/evaluation/data/gt_high-bw_run2.csv b/evaluation/data/gt_high-bw_run2.csv new file mode 100644 index 0000000..44dfdab --- /dev/null +++ b/evaluation/data/gt_high-bw_run2.csv @@ -0,0 +1,494 @@ +timestamp,action,source,target,workload_type,is_anomaly,scenario_mode +2026-03-15 22:41:16,EXPERIMENT_BASELINE_START,ALL,ALL,EXPERIMENT,0,training +2026-03-15 22:41:46,SCENARIO_START,ALL,ALL,START,0,training +2026-03-15 22:41:46,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:42:36,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:42:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 22:43:36,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:44:27,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:44:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 22:45:27,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:46:17,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:46:17,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 22:47:17,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:48:07,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:48:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 22:49:07,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:49:57,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:49:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 22:50:57,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:51:43,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:51:43,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 22:52:43,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:53:33,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:53:33,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 22:54:33,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:55:23,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:55:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 22:56:23,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:57:17,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:57:17,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 22:58:17,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:59:08,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 22:59:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 23:00:08,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:00:58,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:00:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 23:01:58,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:02:48,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:02:48,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 23:03:48,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:04:38,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:04:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 23:05:38,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:06:29,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:06:29,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 23:07:29,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:08:19,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:08:19,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 23:09:19,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:10:09,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:10:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 23:11:09,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:11:59,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:11:59,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 23:12:59,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:13:50,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:13:50,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 23:14:50,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:15:37,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:15:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 23:16:37,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:17:27,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:17:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 23:18:27,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:19:18,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:19:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 23:20:18,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:21:10,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:21:10,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 23:22:10,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:23:00,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:23:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 23:24:00,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:24:50,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:24:50,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 23:25:50,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:26:41,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:26:41,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 23:27:41,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:28:31,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:28:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 23:29:31,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:30:21,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:30:21,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 23:31:21,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:32:11,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:32:11,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 23:33:11,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:34:02,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:34:02,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 23:35:02,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:35:52,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:35:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 23:36:52,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:37:42,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:37:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 23:38:42,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:39:32,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:39:32,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 23:40:32,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:41:23,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:41:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 23:42:23,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:43:13,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:43:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 23:44:13,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:45:03,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:45:03,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 23:46:03,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:46:53,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:46:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 23:47:53,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:48:50,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:48:50,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 23:49:50,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:50:36,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:50:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 23:51:36,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:52:21,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:52:21,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 23:53:21,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:54:13,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:54:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 23:55:13,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:56:03,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:56:03,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 23:57:03,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:57:54,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:57:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 23:58:54,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:59:44,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-15 23:59:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 00:00:44,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:01:34,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:01:34,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 00:02:34,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:03:24,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:03:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 00:04:24,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:05:15,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:05:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 00:06:15,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:07:00,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:07:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 00:08:00,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:08:50,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:08:50,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 00:09:50,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:10:40,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:10:40,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 00:11:16,EXPERIMENT_BASELINE_END,ALL,ALL,EXPERIMENT,0,training +2026-03-16 00:11:26,EXPERIMENT_CHAOS_START,Orchestrator,System,slow-connection,1,training +2026-03-16 00:11:26,START_ANOMALY,Orchestrator,System,slow-connection,1,training +2026-03-16 00:11:56,SCENARIO_START,ALL,ALL,START,0,training +2026-03-16 00:11:56,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:16:58,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:16:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 00:17:58,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:21:26,STOP_ANOMALY,Orchestrator,System,slow-connection,1,training +2026-03-16 00:21:26,EXPERIMENT_CHAOS_END,Orchestrator,System,slow-connection,1,training +2026-03-16 00:22:46,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:22:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 00:23:46,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:24:36,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:24:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 00:25:37,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:26:27,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:26:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 00:27:27,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:28:19,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:28:19,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 00:29:19,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:30:09,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:30:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 00:31:09,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:31:26,EXPERIMENT_CHAOS_START,Orchestrator,System,high-latency,1,training +2026-03-16 00:31:26,START_ANOMALY,Orchestrator,System,high-latency,1,training +2026-03-16 00:36:09,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:36:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 00:37:09,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:41:26,STOP_ANOMALY,Orchestrator,System,high-latency,1,training +2026-03-16 00:41:26,EXPERIMENT_CHAOS_END,Orchestrator,System,high-latency,1,training +2026-03-16 00:41:58,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:41:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 00:42:58,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:43:51,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:43:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 00:44:51,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:45:41,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:45:41,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 00:46:41,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:47:32,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:47:32,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 00:48:32,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:49:22,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:49:22,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 00:50:22,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:51:14,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:51:14,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 00:51:26,EXPERIMENT_CHAOS_START,Orchestrator,System,packet-loss,1,training +2026-03-16 00:51:26,START_ANOMALY,Orchestrator,System,packet-loss,1,training +2026-03-16 00:52:14,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:53:04,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:53:04,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 00:54:04,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:54:54,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:54:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 00:55:54,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:56:46,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:56:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 00:57:46,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:58:36,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 00:58:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 00:59:36,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:00:26,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:00:26,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 01:01:26,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:01:26,STOP_ANOMALY,Orchestrator,System,packet-loss,1,training +2026-03-16 01:01:26,EXPERIMENT_CHAOS_END,Orchestrator,System,packet-loss,1,training +2026-03-16 01:02:16,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:02:16,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 01:03:17,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:04:07,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:04:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 01:05:07,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:05:57,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:05:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 01:06:57,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:07:47,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:07:47,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 01:08:47,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:09:37,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:09:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 01:10:37,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:11:26,EXPERIMENT_CHAOS_START,Orchestrator,System,congestion,1,training +2026-03-16 01:11:26,START_ANOMALY,Orchestrator,System,congestion,1,training +2026-03-16 01:11:28,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:11:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 01:12:28,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:17:28,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:17:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 01:18:29,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:21:26,STOP_ANOMALY,Orchestrator,System,congestion,1,training +2026-03-16 01:21:26,EXPERIMENT_CHAOS_END,Orchestrator,System,congestion,1,training +2026-03-16 01:22:40,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:22:40,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 01:23:40,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:24:30,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:24:30,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 01:25:30,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:26:20,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:26:20,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 01:27:20,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:28:10,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:28:10,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 01:29:10,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:30:01,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:30:01,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 01:31:01,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:31:26,EXPERIMENT_CHAOS_START,Orchestrator,System,partial-outage,1,training +2026-03-16 01:31:26,START_ANOMALY,Orchestrator,System,partial-outage,1,training +2026-03-16 01:31:51,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:31:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 01:32:51,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:33:41,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:33:41,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 01:34:41,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:35:31,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:35:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 01:36:31,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:37:21,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:37:21,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 01:38:22,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:39:12,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:39:12,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 01:40:12,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:41:02,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:41:02,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 01:41:26,STOP_ANOMALY,Orchestrator,System,partial-outage,1,training +2026-03-16 01:41:26,EXPERIMENT_CHAOS_END,Orchestrator,System,partial-outage,1,training +2026-03-16 01:42:02,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:42:52,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:42:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 01:43:52,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:44:42,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:44:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 01:45:42,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:46:33,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:46:33,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 01:47:33,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:48:18,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:48:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 01:49:18,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:50:08,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:50:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 01:51:08,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:51:26,EXPERIMENT_CHAOS_START,Orchestrator,System,flapping,1,training +2026-03-16 01:51:26,START_ANOMALY,Orchestrator,System,flapping,1,training +2026-03-16 01:51:56,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-16 01:51:58,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:51:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 01:52:27,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-16 01:52:57,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-16 01:52:58,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:53:26,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-16 01:53:29,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:53:29,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 01:53:57,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-16 01:54:27,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-16 01:54:29,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:54:48,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:54:48,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 01:54:56,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-16 01:55:26,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-16 01:55:48,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:55:56,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-16 01:56:26,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-16 01:56:56,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-16 01:57:26,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-16 01:57:56,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-16 01:58:26,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-16 01:58:56,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-16 01:59:26,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-16 01:59:55,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 01:59:55,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 01:59:56,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-16 02:00:27,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-16 02:00:55,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:00:56,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-16 02:01:26,STOP_ANOMALY,Orchestrator,System,flapping,1,training +2026-03-16 02:01:26,EXPERIMENT_CHAOS_END,Orchestrator,System,flapping,1,training +2026-03-16 02:02:35,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:02:35,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 02:03:35,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:04:26,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:04:26,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 02:05:26,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:06:16,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:06:16,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 02:07:16,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:08:06,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:08:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 02:09:06,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:09:53,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:09:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 02:10:53,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:11:27,EXPERIMENT_CHAOS_START,Orchestrator,System,cpu-stress,1,training +2026-03-16 02:11:27,START_ANOMALY,Orchestrator,System,cpu-stress,1,training +2026-03-16 02:11:27,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-16 02:11:44,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:11:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 02:12:12,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-16 02:12:44,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:13:07,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-16 02:13:34,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:13:34,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 02:13:52,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-16 02:14:34,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:14:47,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-16 02:15:19,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:15:19,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 02:15:32,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-16 02:16:19,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:16:27,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-16 02:17:10,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:17:10,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 02:17:12,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-16 02:18:07,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-16 02:18:10,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:18:52,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-16 02:19:00,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:19:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 02:19:47,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-16 02:20:00,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:20:32,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-16 02:20:50,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:20:50,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 02:21:27,STOP_ANOMALY,Orchestrator,System,cpu-stress,1,training +2026-03-16 02:21:27,EXPERIMENT_CHAOS_END,Orchestrator,System,cpu-stress,1,training +2026-03-16 02:21:50,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:22:41,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:22:41,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 02:23:41,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:24:33,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:24:33,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 02:25:33,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:26:23,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:26:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 02:27:23,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:28:13,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:28:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 02:29:13,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:30:04,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:30:04,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 02:31:04,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:31:27,EXPERIMENT_CHAOS_START,Orchestrator,System,io-stress,1,training +2026-03-16 02:31:27,START_ANOMALY,Orchestrator,System,io-stress,1,training +2026-03-16 02:31:27,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-16 02:32:02,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-16 02:32:09,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:32:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 02:33:02,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-16 02:33:09,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:33:37,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-16 02:34:24,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:34:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 02:34:37,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-16 02:35:12,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-16 02:35:24,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:36:12,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-16 02:36:14,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:36:14,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 02:36:47,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-16 02:37:14,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:37:47,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-16 02:38:22,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-16 02:38:24,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:38:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 02:39:22,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-16 02:39:24,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:39:57,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-16 02:40:57,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-16 02:41:27,STOP_ANOMALY,Orchestrator,System,io-stress,1,training +2026-03-16 02:41:27,RECOVERY_RESTART,Orchestrator,System,io-stress,0,training +2026-03-16 02:41:41,EXPERIMENT_CHAOS_END,Orchestrator,System,io-stress,1,training +2026-03-16 02:41:57,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:41:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 02:42:57,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:43:47,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:43:47,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 02:44:47,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:45:38,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:45:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 02:46:38,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:47:28,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:47:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 02:48:28,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:49:18,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:49:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 02:50:18,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:51:08,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:51:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 02:51:41,EXPERIMENT_CHAOS_START,Orchestrator,System,mem-stress,1,training +2026-03-16 02:51:41,START_ANOMALY,Orchestrator,System,mem-stress,1,training +2026-03-16 02:51:41,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-16 02:52:08,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:52:11,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-16 02:52:59,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:52:59,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 02:53:11,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-16 02:53:41,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-16 02:53:59,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:54:41,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-16 02:54:49,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:54:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 02:55:11,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-16 02:55:49,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:56:11,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-16 02:56:39,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:56:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 02:56:41,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-16 02:57:39,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:57:41,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-16 02:58:11,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-16 02:58:29,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:58:29,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 02:59:11,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-16 02:59:30,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 02:59:41,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-16 03:00:20,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 03:00:20,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 03:00:41,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-16 03:01:11,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-16 03:01:20,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 03:01:41,STOP_ANOMALY,Orchestrator,System,mem-stress,1,training +2026-03-16 03:01:41,RECOVERY_RESTART,Orchestrator,System,mem-stress,0,training +2026-03-16 03:01:54,EXPERIMENT_CHAOS_END,Orchestrator,System,mem-stress,1,training +2026-03-16 03:02:46,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 03:02:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 03:03:46,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 03:04:37,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 03:04:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 03:05:37,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 03:06:27,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 03:06:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 03:07:27,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 03:08:19,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 03:08:19,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 03:09:19,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 03:10:09,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 03:10:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 03:11:10,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 03:11:54,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 03:11:54,EXPERIMENT_END,ALL,ALL,EXPERIMENT,0,training diff --git a/evaluation/data/gt_high-bw_run3.csv b/evaluation/data/gt_high-bw_run3.csv new file mode 100644 index 0000000..94076ce --- /dev/null +++ b/evaluation/data/gt_high-bw_run3.csv @@ -0,0 +1,501 @@ +timestamp,action,source,target,workload_type,is_anomaly,scenario_mode +2026-03-16 06:28:48,EXPERIMENT_BASELINE_START,ALL,ALL,EXPERIMENT,0,training +2026-03-16 06:29:18,SCENARIO_START,ALL,ALL,START,0,training +2026-03-16 06:29:18,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 06:30:03,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 06:30:03,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 06:31:03,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 06:31:54,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 06:31:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 06:32:54,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 06:33:44,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 06:33:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 06:34:44,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 06:35:34,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 06:35:34,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 06:36:34,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 06:37:24,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 06:37:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 06:38:24,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 06:39:18,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 06:39:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 06:40:18,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 06:41:08,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 06:41:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 06:42:08,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 06:42:58,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 06:42:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 06:43:58,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 06:44:50,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 06:44:50,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 06:45:50,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 06:46:41,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 06:46:41,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 06:47:41,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 06:48:31,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 06:48:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 06:49:31,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 06:50:23,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 06:50:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 06:51:23,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 06:52:13,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 06:52:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 06:53:13,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 06:54:13,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 06:54:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 06:55:13,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 06:56:08,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 06:56:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 06:57:08,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 06:57:59,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 06:57:59,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 06:58:59,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 06:59:49,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 06:59:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 07:00:49,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:01:39,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:01:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 07:02:40,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:03:30,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:03:30,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 07:04:30,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:05:20,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:05:20,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 07:06:20,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:07:10,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:07:10,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 07:08:10,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:09:00,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:09:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 07:10:00,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:10:51,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:10:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 07:11:51,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:12:44,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:12:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 07:13:44,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:14:34,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:14:34,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 07:15:34,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:16:24,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:16:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 07:17:24,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:18:14,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:18:14,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 07:19:14,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:20:05,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:20:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 07:21:05,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:21:55,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:21:55,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 07:22:55,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:23:45,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:23:45,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 07:24:45,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:25:35,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:25:35,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 07:26:35,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:27:26,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:27:26,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 07:28:26,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:29:16,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:29:16,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 07:30:16,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:31:06,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:31:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 07:32:06,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:32:56,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:32:56,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 07:33:56,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:34:46,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:34:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 07:35:46,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:36:37,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:36:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 07:37:37,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:38:27,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:38:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 07:39:27,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:40:17,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:40:17,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 07:41:17,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:42:07,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:42:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 07:43:07,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:43:58,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:43:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 07:44:58,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:45:48,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:45:48,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 07:46:48,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:47:38,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:47:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 07:48:38,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:49:29,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:49:29,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 07:50:29,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:51:19,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:51:19,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 07:52:19,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:53:09,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:53:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 07:54:09,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:55:01,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:55:01,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 07:56:01,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:56:51,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:56:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 07:57:51,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:58:36,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 07:58:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 07:58:48,EXPERIMENT_BASELINE_END,ALL,ALL,EXPERIMENT,0,training +2026-03-16 07:58:58,EXPERIMENT_CHAOS_START,Orchestrator,System,slow-connection,1,training +2026-03-16 07:58:58,START_ANOMALY,Orchestrator,System,slow-connection,1,training +2026-03-16 07:59:28,SCENARIO_START,ALL,ALL,START,0,training +2026-03-16 07:59:28,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:04:28,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:04:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 08:05:28,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:08:58,STOP_ANOMALY,Orchestrator,System,slow-connection,1,training +2026-03-16 08:08:58,EXPERIMENT_CHAOS_END,Orchestrator,System,slow-connection,1,training +2026-03-16 08:10:16,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:10:16,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 08:11:16,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:12:06,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:12:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 08:13:06,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:13:56,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:13:56,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 08:14:56,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:15:47,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:15:47,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 08:16:47,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:17:37,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:17:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 08:18:37,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:18:58,EXPERIMENT_CHAOS_START,Orchestrator,System,high-latency,1,training +2026-03-16 08:18:58,START_ANOMALY,Orchestrator,System,high-latency,1,training +2026-03-16 08:23:27,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:23:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 08:24:27,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:28:58,STOP_ANOMALY,Orchestrator,System,high-latency,1,training +2026-03-16 08:28:58,EXPERIMENT_CHAOS_END,Orchestrator,System,high-latency,1,training +2026-03-16 08:29:31,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:29:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 08:30:31,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:31:21,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:31:21,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 08:32:21,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:33:11,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:33:11,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 08:34:12,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:35:02,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:35:02,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 08:36:02,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:36:52,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:36:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 08:37:52,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:38:42,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:38:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 08:38:58,EXPERIMENT_CHAOS_START,Orchestrator,System,packet-loss,1,training +2026-03-16 08:38:58,START_ANOMALY,Orchestrator,System,packet-loss,1,training +2026-03-16 08:39:42,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:40:27,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:40:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 08:41:27,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:42:13,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:42:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 08:43:13,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:44:03,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:44:03,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 08:45:03,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:45:48,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:45:48,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 08:46:48,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:47:38,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:47:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 08:48:38,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:48:58,STOP_ANOMALY,Orchestrator,System,packet-loss,1,training +2026-03-16 08:48:58,EXPERIMENT_CHAOS_END,Orchestrator,System,packet-loss,1,training +2026-03-16 08:49:28,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:49:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 08:50:28,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:51:14,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:51:14,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 08:52:14,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:53:04,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:53:04,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 08:54:04,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:54:54,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:54:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 08:55:54,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:56:44,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:56:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 08:57:44,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:58:34,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 08:58:34,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 08:58:58,EXPERIMENT_CHAOS_START,Orchestrator,System,congestion,1,training +2026-03-16 08:58:58,START_ANOMALY,Orchestrator,System,congestion,1,training +2026-03-16 08:59:34,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:04:35,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:04:35,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 09:05:35,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:08:58,STOP_ANOMALY,Orchestrator,System,congestion,1,training +2026-03-16 09:08:58,EXPERIMENT_CHAOS_END,Orchestrator,System,congestion,1,training +2026-03-16 09:10:12,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:10:12,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 09:11:12,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:12:02,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:12:02,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 09:13:02,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:13:52,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:13:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 09:14:52,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:15:42,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:15:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 09:16:42,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:17:28,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:17:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 09:18:28,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:18:58,EXPERIMENT_CHAOS_START,Orchestrator,System,partial-outage,1,training +2026-03-16 09:18:58,START_ANOMALY,Orchestrator,System,partial-outage,1,training +2026-03-16 09:19:18,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:19:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 09:20:18,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:21:08,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:21:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 09:22:08,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:23:03,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:23:03,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 09:24:03,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:24:53,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:24:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 09:25:53,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:26:43,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:26:43,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 09:27:43,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:28:34,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:28:34,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 09:28:58,STOP_ANOMALY,Orchestrator,System,partial-outage,1,training +2026-03-16 09:28:58,EXPERIMENT_CHAOS_END,Orchestrator,System,partial-outage,1,training +2026-03-16 09:29:34,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:30:24,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:30:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 09:31:24,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:32:19,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:32:19,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 09:33:19,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:34:09,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:34:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 09:35:09,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:36:00,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:36:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 09:37:00,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:37:50,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:37:50,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 09:38:50,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:38:58,EXPERIMENT_CHAOS_START,Orchestrator,System,flapping,1,training +2026-03-16 09:38:58,START_ANOMALY,Orchestrator,System,flapping,1,training +2026-03-16 09:39:28,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-16 09:39:58,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-16 09:40:28,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-16 09:40:50,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:40:50,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 09:40:58,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-16 09:41:28,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-16 09:41:50,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:41:58,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-16 09:42:28,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-16 09:42:58,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-16 09:43:28,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-16 09:43:58,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-16 09:44:13,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:44:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 09:44:28,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-16 09:44:58,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-16 09:45:13,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:45:28,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-16 09:45:32,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:45:32,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 09:45:58,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-16 09:46:28,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-16 09:46:32,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:46:58,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-16 09:47:06,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:47:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 09:47:28,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-16 09:47:58,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-16 09:48:06,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:48:25,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:48:25,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 09:48:28,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-16 09:48:58,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-16 09:48:58,STOP_ANOMALY,Orchestrator,System,flapping,1,training +2026-03-16 09:48:58,EXPERIMENT_CHAOS_END,Orchestrator,System,flapping,1,training +2026-03-16 09:49:25,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:49:44,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:49:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 09:50:44,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:51:49,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:51:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 09:52:49,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:53:39,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:53:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 09:54:39,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:55:29,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:55:29,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 09:56:29,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:57:16,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:57:16,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 09:58:16,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:58:58,EXPERIMENT_CHAOS_START,Orchestrator,System,cpu-stress,1,training +2026-03-16 09:58:58,START_ANOMALY,Orchestrator,System,cpu-stress,1,training +2026-03-16 09:58:58,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-16 09:59:07,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 09:59:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 09:59:43,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-16 10:00:07,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:00:38,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-16 10:00:57,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:00:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 10:01:23,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-16 10:01:57,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:02:18,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-16 10:02:47,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:02:47,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 10:03:03,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-16 10:03:47,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:03:58,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-16 10:04:37,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:04:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 10:04:43,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-16 10:05:37,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:05:38,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-16 10:06:23,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-16 10:06:28,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:06:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 10:07:18,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-16 10:07:28,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:08:03,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-16 10:08:18,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:08:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 10:08:58,STOP_ANOMALY,Orchestrator,System,cpu-stress,1,training +2026-03-16 10:08:58,EXPERIMENT_CHAOS_END,Orchestrator,System,cpu-stress,1,training +2026-03-16 10:09:18,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:10:11,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:10:11,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 10:11:11,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:12:01,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:12:01,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 10:13:01,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:13:51,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:13:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 10:14:51,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:15:41,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:15:41,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 10:16:41,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:17:31,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:17:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 10:18:31,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:18:58,EXPERIMENT_CHAOS_START,Orchestrator,System,io-stress,1,training +2026-03-16 10:18:58,START_ANOMALY,Orchestrator,System,io-stress,1,training +2026-03-16 10:18:58,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-16 10:19:33,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-16 10:19:47,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:19:47,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 10:20:34,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-16 10:20:47,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:21:09,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-16 10:21:54,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:21:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 10:22:11,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-16 10:22:46,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-16 10:22:54,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:23:46,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-16 10:23:50,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:23:50,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 10:24:21,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-16 10:24:50,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:25:21,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-16 10:25:56,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-16 10:26:10,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:26:10,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 10:26:56,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-16 10:27:10,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:27:31,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-16 10:28:23,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:28:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 10:28:31,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-16 10:28:59,STOP_ANOMALY,Orchestrator,System,io-stress,1,training +2026-03-16 10:28:59,RECOVERY_RESTART,Orchestrator,System,io-stress,0,training +2026-03-16 10:29:12,EXPERIMENT_CHAOS_END,Orchestrator,System,io-stress,1,training +2026-03-16 10:29:23,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:30:08,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:30:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 10:31:08,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:31:59,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:31:59,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 10:32:59,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:33:49,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:33:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 10:34:49,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:35:39,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:35:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 10:36:39,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:37:29,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:37:29,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 10:38:29,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:39:12,EXPERIMENT_CHAOS_START,Orchestrator,System,mem-stress,1,training +2026-03-16 10:39:12,START_ANOMALY,Orchestrator,System,mem-stress,1,training +2026-03-16 10:39:12,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-16 10:39:19,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:39:19,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 10:39:42,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-16 10:40:19,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:40:42,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-16 10:41:10,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:41:10,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 10:41:12,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-16 10:42:10,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:42:12,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-16 10:42:42,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-16 10:43:00,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:43:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 10:43:42,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-16 10:44:00,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:44:12,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-16 10:44:50,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:44:50,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 10:45:12,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-16 10:45:42,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-16 10:45:50,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:46:42,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-16 10:46:45,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:46:45,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 10:47:12,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-16 10:47:45,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:48:12,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-16 10:48:35,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:48:35,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 10:48:42,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-16 10:49:12,STOP_ANOMALY,Orchestrator,System,mem-stress,1,training +2026-03-16 10:49:12,RECOVERY_RESTART,Orchestrator,System,mem-stress,0,training +2026-03-16 10:49:25,EXPERIMENT_CHAOS_END,Orchestrator,System,mem-stress,1,training +2026-03-16 10:49:36,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:50:26,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:50:26,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 10:51:26,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:52:16,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:52:16,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 10:53:16,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:54:06,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:54:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 10:55:06,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:55:57,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:55:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 10:56:57,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:57:47,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:57:47,IDLE,ALL,ALL,IDLE,0,training +2026-03-16 10:58:47,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:59:25,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-16 10:59:25,EXPERIMENT_END,ALL,ALL,EXPERIMENT,0,training diff --git a/evaluation/data/gt_high-iops_run1.csv b/evaluation/data/gt_high-iops_run1.csv new file mode 100644 index 0000000..52b2b8a --- /dev/null +++ b/evaluation/data/gt_high-iops_run1.csv @@ -0,0 +1,739 @@ +timestamp,action,source,target,workload_type,is_anomaly,scenario_mode +2026-03-14 22:12:49,EXPERIMENT_BASELINE_START,ALL,ALL,EXPERIMENT,0,training +2026-03-14 22:13:19,SCENARIO_START,ALL,ALL,START,0,training +2026-03-14 22:13:19,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:13:28,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:13:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 22:14:28,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:14:37,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:14:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 22:15:37,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:15:46,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:15:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 22:16:46,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:16:55,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:16:55,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 22:17:55,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:18:09,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:18:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 22:19:09,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:19:23,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:19:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 22:20:23,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:20:37,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:20:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 22:21:37,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:21:46,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:21:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 22:22:46,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:23:00,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:23:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 22:24:00,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:24:14,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:24:14,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 22:25:14,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:25:23,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:25:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 22:26:23,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:26:32,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:26:32,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 22:27:32,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:27:45,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:27:45,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 22:28:45,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:28:59,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:28:59,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 22:29:59,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:30:13,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:30:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 22:31:13,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:31:22,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:31:22,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 22:32:22,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:32:31,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:32:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 22:33:31,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:33:40,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:33:40,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 22:34:40,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:34:53,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:34:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 22:35:53,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:36:07,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:36:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 22:37:07,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:37:21,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:37:21,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 22:38:21,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:38:35,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:38:35,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 22:39:35,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:39:44,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:39:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 22:40:44,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:40:58,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:40:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 22:41:58,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:42:07,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:42:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 22:43:07,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:43:16,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:43:16,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 22:44:16,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:44:25,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:44:25,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 22:45:25,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:45:34,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:45:34,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 22:46:34,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:46:46,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:46:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 22:47:46,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:47:55,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:47:55,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 22:48:55,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:49:04,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:49:04,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 22:50:04,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:50:18,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:50:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 22:51:18,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:51:32,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:51:32,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 22:52:32,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:52:46,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:52:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 22:53:46,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:54:00,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:54:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 22:55:00,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:55:14,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:55:14,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 22:56:14,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:56:28,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:56:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 22:57:28,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:57:37,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:57:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 22:58:37,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:58:46,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:58:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 22:59:46,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:59:55,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 22:59:55,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:00:55,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:01:09,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:01:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:02:09,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:02:23,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:02:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:03:23,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:03:37,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:03:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:04:37,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:04:46,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:04:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:05:46,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:05:55,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:05:55,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:06:55,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:07:04,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:07:04,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:08:04,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:08:18,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:08:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:09:18,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:09:32,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:09:32,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:10:32,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:10:45,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:10:45,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:11:45,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:11:54,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:11:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:12:54,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:13:03,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:13:03,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:14:03,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:14:16,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:14:16,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:15:16,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:15:30,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:15:30,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:16:30,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:16:44,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:16:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:17:44,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:17:58,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:17:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:18:58,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:19:07,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:19:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:20:07,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:20:15,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:20:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:21:16,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:21:29,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:21:29,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:22:29,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:22:42,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:22:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:23:42,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:23:56,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:23:56,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:24:56,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:25:05,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:25:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:26:05,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:26:14,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:26:14,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:27:14,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:27:23,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:27:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:28:23,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:28:37,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:28:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:29:37,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:29:46,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:29:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:30:46,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:31:00,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:31:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:32:00,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:32:09,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:32:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:33:09,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:33:18,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:33:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:34:18,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:34:27,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:34:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:35:27,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:35:36,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:35:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:36:36,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:36:50,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:36:50,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:37:50,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:38:04,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:38:04,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:39:04,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:39:18,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:39:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:40:18,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:40:27,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:40:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:41:27,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:41:36,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:41:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:42:36,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:42:45,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:42:45,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:42:49,EXPERIMENT_BASELINE_END,ALL,ALL,EXPERIMENT,0,training +2026-03-14 23:42:59,EXPERIMENT_CHAOS_START,Orchestrator,System,slow-connection,1,training +2026-03-14 23:42:59,START_ANOMALY,Orchestrator,System,slow-connection,1,training +2026-03-14 23:43:29,SCENARIO_START,ALL,ALL,START,0,training +2026-03-14 23:43:29,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:45:03,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:45:03,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:46:04,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:47:42,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:47:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:48:42,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:50:15,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:50:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:51:15,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:52:48,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:52:48,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:52:59,STOP_ANOMALY,Orchestrator,System,slow-connection,1,training +2026-03-14 23:52:59,EXPERIMENT_CHAOS_END,Orchestrator,System,slow-connection,1,training +2026-03-14 23:53:48,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:53:57,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:53:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:54:57,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:55:06,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:55:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:56:06,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:56:15,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:56:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:57:15,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:57:29,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:57:29,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:58:29,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:58:43,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:58:43,IDLE,ALL,ALL,IDLE,0,training +2026-03-14 23:59:43,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:59:52,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-14 23:59:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:00:52,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:01:01,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:01:01,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:02:01,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:02:15,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:02:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:02:59,EXPERIMENT_CHAOS_START,Orchestrator,System,high-latency,1,training +2026-03-15 00:02:59,START_ANOMALY,Orchestrator,System,high-latency,1,training +2026-03-15 00:03:15,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:06:22,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:06:22,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:07:22,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:10:04,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:10:04,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:11:04,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:12:59,STOP_ANOMALY,Orchestrator,System,high-latency,1,training +2026-03-15 00:12:59,EXPERIMENT_CHAOS_END,Orchestrator,System,high-latency,1,training +2026-03-15 00:13:06,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:13:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:14:06,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:14:15,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:14:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:15:15,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:15:24,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:15:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:16:24,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:16:38,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:16:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:17:38,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:17:52,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:17:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:18:52,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:19:06,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:19:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:20:06,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:20:15,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:20:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:21:15,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:21:24,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:21:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:22:24,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:22:38,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:22:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:22:59,EXPERIMENT_CHAOS_START,Orchestrator,System,packet-loss,1,training +2026-03-15 00:22:59,START_ANOMALY,Orchestrator,System,packet-loss,1,training +2026-03-15 00:23:38,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:23:47,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:23:47,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:24:47,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:24:57,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:24:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:25:57,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:26:11,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:26:11,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:27:11,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:27:25,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:27:25,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:28:25,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:28:34,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:28:34,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:29:34,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:29:43,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:29:43,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:30:43,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:30:52,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:30:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:31:52,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:32:06,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:32:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:32:59,STOP_ANOMALY,Orchestrator,System,packet-loss,1,training +2026-03-15 00:32:59,EXPERIMENT_CHAOS_END,Orchestrator,System,packet-loss,1,training +2026-03-15 00:33:06,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:33:20,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:33:20,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:34:20,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:34:34,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:34:34,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:35:34,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:35:48,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:35:48,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:36:48,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:36:57,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:36:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:37:57,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:38:06,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:38:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:39:06,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:39:15,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:39:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:40:15,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:40:28,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:40:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:41:28,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:41:42,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:41:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:42:42,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:42:51,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:42:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:42:59,EXPERIMENT_CHAOS_START,Orchestrator,System,congestion,1,training +2026-03-15 00:43:00,START_ANOMALY,Orchestrator,System,congestion,1,training +2026-03-15 00:43:51,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:44:10,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:44:10,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:45:10,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:45:30,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:45:30,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:46:30,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:46:49,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:46:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:47:49,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:48:13,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:48:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:49:13,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:49:32,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:49:32,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:50:32,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:50:56,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:50:56,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:51:56,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:52:15,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:52:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:53:00,STOP_ANOMALY,Orchestrator,System,congestion,1,training +2026-03-15 00:53:00,EXPERIMENT_CHAOS_END,Orchestrator,System,congestion,1,training +2026-03-15 00:53:16,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:53:29,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:53:29,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:54:29,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:54:43,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:54:43,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:55:43,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:55:57,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:55:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:56:57,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:57:06,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:57:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:58:06,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:58:15,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:58:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 00:59:15,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:59:24,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 00:59:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:00:24,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:00:33,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:00:33,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:01:33,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:01:42,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:01:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:02:42,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:02:58,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:02:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:03:00,EXPERIMENT_CHAOS_START,Orchestrator,System,partial-outage,1,training +2026-03-15 01:03:00,START_ANOMALY,Orchestrator,System,partial-outage,1,training +2026-03-15 01:03:58,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:04:12,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:04:12,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:05:12,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:05:31,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:05:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:06:31,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:06:45,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:06:45,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:07:45,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:07:59,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:07:59,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:08:59,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:09:13,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:09:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:10:13,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:10:27,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:10:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:11:27,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:11:41,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:11:41,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:12:41,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:12:55,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:12:55,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:13:00,STOP_ANOMALY,Orchestrator,System,partial-outage,1,training +2026-03-15 01:13:00,EXPERIMENT_CHAOS_END,Orchestrator,System,partial-outage,1,training +2026-03-15 01:13:55,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:14:09,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:14:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:15:09,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:15:23,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:15:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:16:23,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:16:37,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:16:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:17:37,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:17:51,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:17:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:18:51,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:19:00,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:19:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:20:00,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:20:09,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:20:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:21:09,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:21:25,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:21:25,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:22:25,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:22:39,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:22:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:23:00,EXPERIMENT_CHAOS_START,Orchestrator,System,flapping,1,training +2026-03-15 01:23:00,START_ANOMALY,Orchestrator,System,flapping,1,training +2026-03-15 01:23:30,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-15 01:23:39,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:24:00,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-15 01:24:10,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:24:10,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:24:30,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-15 01:25:00,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-15 01:25:10,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:25:19,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:25:19,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:25:30,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-15 01:26:00,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-15 01:26:19,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:26:28,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:26:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:26:30,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-15 01:27:00,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-15 01:27:28,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:27:30,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-15 01:28:00,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-15 01:28:29,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:28:29,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:28:30,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-15 01:29:00,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-15 01:29:29,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:29:30,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-15 01:30:00,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-15 01:30:19,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:30:19,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:30:30,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-15 01:31:00,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-15 01:31:19,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:31:28,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:31:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:31:30,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-15 01:32:00,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-15 01:32:28,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:32:30,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-15 01:33:00,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-15 01:33:00,STOP_ANOMALY,Orchestrator,System,flapping,1,training +2026-03-15 01:33:00,EXPERIMENT_CHAOS_END,Orchestrator,System,flapping,1,training +2026-03-15 01:33:18,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:33:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:34:18,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:34:27,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:34:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:35:27,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:35:36,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:35:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:36:36,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:36:50,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:36:50,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:37:50,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:38:04,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:38:04,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:39:04,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:39:18,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:39:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:40:18,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:40:27,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:40:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:41:27,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:41:36,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:41:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:42:36,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:42:45,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:42:45,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:43:00,EXPERIMENT_CHAOS_START,Orchestrator,System,cpu-stress,1,training +2026-03-15 01:43:00,START_ANOMALY,Orchestrator,System,cpu-stress,1,training +2026-03-15 01:43:00,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-15 01:43:45,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-15 01:43:45,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:43:59,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:43:59,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:44:40,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-15 01:44:59,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:45:13,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:45:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:45:25,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-15 01:46:13,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:46:20,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-15 01:46:27,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:46:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:47:05,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-15 01:47:27,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:47:41,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:47:41,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:48:00,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-15 01:48:41,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:48:45,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-15 01:48:50,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:48:50,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:49:40,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-15 01:49:50,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:49:59,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:49:59,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:50:25,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-15 01:50:59,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:51:15,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:51:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:51:20,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-15 01:52:05,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-15 01:52:15,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:52:29,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:52:29,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:53:00,STOP_ANOMALY,Orchestrator,System,cpu-stress,1,training +2026-03-15 01:53:00,EXPERIMENT_CHAOS_END,Orchestrator,System,cpu-stress,1,training +2026-03-15 01:53:29,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:53:43,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:53:43,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:54:43,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:54:52,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:54:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:55:52,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:56:01,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:56:01,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:57:01,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:57:16,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:57:16,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:58:16,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:58:30,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:58:30,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 01:59:30,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:59:44,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 01:59:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 02:00:44,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:00:58,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:00:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 02:01:58,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:02:07,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:02:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 02:03:00,EXPERIMENT_CHAOS_START,Orchestrator,System,io-stress,1,training +2026-03-15 02:03:00,START_ANOMALY,Orchestrator,System,io-stress,1,training +2026-03-15 02:03:00,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-15 02:03:12,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:03:35,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-15 02:03:54,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:03:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 02:04:40,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-15 02:04:54,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:05:15,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-15 02:05:31,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:05:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 02:06:15,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-15 02:06:31,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:06:50,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-15 02:07:11,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:07:11,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 02:07:50,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-15 02:08:11,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:08:25,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-15 02:08:38,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:08:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 02:09:25,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-15 02:09:38,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:10:00,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-15 02:10:13,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:10:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 02:11:00,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-15 02:11:13,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:11:35,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-15 02:11:49,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:11:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 02:12:35,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-15 02:12:49,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:13:00,STOP_ANOMALY,Orchestrator,System,io-stress,1,training +2026-03-15 02:13:00,RECOVERY_RESTART,Orchestrator,System,io-stress,0,training +2026-03-15 02:13:13,EXPERIMENT_CHAOS_END,Orchestrator,System,io-stress,1,training +2026-03-15 02:13:15,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:13:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 02:14:15,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:14:24,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:14:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 02:15:24,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:15:33,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:15:33,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 02:16:33,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:16:42,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:16:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 02:17:42,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:17:51,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:17:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 02:18:51,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:19:00,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:19:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 02:20:00,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:20:09,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:20:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 02:21:09,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:21:18,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:21:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 02:22:18,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:22:27,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:22:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 02:23:13,EXPERIMENT_CHAOS_START,Orchestrator,System,mem-stress,1,training +2026-03-15 02:23:13,START_ANOMALY,Orchestrator,System,mem-stress,1,training +2026-03-15 02:23:13,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-15 02:23:27,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:23:41,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:23:41,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 02:23:43,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-15 02:24:41,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:24:43,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-15 02:24:55,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:24:55,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 02:25:13,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-15 02:25:55,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:26:09,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:26:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 02:26:13,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-15 02:26:43,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-15 02:27:09,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:27:16,MFT_SERVICE_RESTART,192.168.122.97,transfer-job-manager,N/A,0,training +2026-03-15 02:27:16,MFT_SERVICE_RESTART,192.168.122.97,transfer-job-manager,N/A,0,training +2026-03-15 02:27:16,MFT_SERVICE_RESTART,192.168.122.97,transfer-job-manager,N/A,0,training +2026-03-15 02:27:41,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:27:41,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 02:27:43,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-15 02:28:13,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-15 02:28:41,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:28:50,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:28:50,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 02:29:13,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-15 02:29:43,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-15 02:29:51,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:29:59,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:29:59,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 02:30:43,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-15 02:31:00,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:31:13,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-15 02:31:14,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:31:14,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 02:32:13,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-15 02:32:14,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:32:28,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:32:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 02:32:43,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-15 02:33:13,STOP_ANOMALY,Orchestrator,System,mem-stress,1,training +2026-03-15 02:33:13,RECOVERY_RESTART,Orchestrator,System,mem-stress,0,training +2026-03-15 02:33:26,EXPERIMENT_CHAOS_END,Orchestrator,System,mem-stress,1,training +2026-03-15 02:33:28,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:33:37,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:33:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 02:34:37,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:34:46,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:34:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 02:35:46,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:35:55,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:35:55,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 02:36:55,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:37:08,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:37:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 02:38:08,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:38:22,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:38:22,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 02:39:22,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:39:31,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:39:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 02:40:31,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:40:44,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:40:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 02:41:44,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:41:58,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:41:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 02:42:58,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:43:12,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 02:43:12,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 02:43:26,EXPERIMENT_END,ALL,ALL,EXPERIMENT,0,training diff --git a/evaluation/data/gt_high-iops_run2.csv b/evaluation/data/gt_high-iops_run2.csv new file mode 100644 index 0000000..cb4c372 --- /dev/null +++ b/evaluation/data/gt_high-iops_run2.csv @@ -0,0 +1,729 @@ +timestamp,action,source,target,workload_type,is_anomaly,scenario_mode +2026-03-15 07:01:12,EXPERIMENT_BASELINE_START,ALL,ALL,EXPERIMENT,0,training +2026-03-15 07:01:42,SCENARIO_START,ALL,ALL,START,0,training +2026-03-15 07:01:42,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:01:51,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:01:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:02:51,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:03:00,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:03:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:04:00,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:04:09,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:04:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:05:09,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:05:18,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:05:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:06:18,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:06:27,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:06:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:07:27,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:07:36,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:07:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:08:36,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:08:45,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:08:45,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:09:45,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:09:59,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:09:59,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:10:59,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:11:10,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:11:10,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:12:10,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:12:19,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:12:19,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:13:19,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:13:33,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:13:33,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:14:33,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:14:47,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:14:47,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:15:47,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:16:01,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:16:01,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:17:01,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:17:15,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:17:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:18:15,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:18:29,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:18:29,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:19:29,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:19:43,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:19:43,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:20:43,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:20:52,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:20:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:21:52,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:22:01,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:22:01,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:23:01,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:23:10,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:23:10,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:24:10,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:24:24,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:24:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:25:24,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:25:38,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:25:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:26:38,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:26:47,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:26:47,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:27:47,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:27:56,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:27:56,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:28:56,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:29:05,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:29:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:30:05,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:30:19,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:30:19,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:31:19,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:31:33,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:31:33,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:32:33,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:32:42,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:32:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:33:42,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:33:51,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:33:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:34:51,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:35:00,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:35:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:36:00,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:36:09,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:36:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:37:09,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:37:23,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:37:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:38:23,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:38:37,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:38:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:39:37,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:39:51,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:39:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:40:51,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:41:00,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:41:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:42:00,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:42:09,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:42:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:43:09,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:43:21,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:43:21,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:44:21,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:44:35,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:44:35,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:45:35,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:45:44,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:45:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:46:44,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:46:53,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:46:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:47:53,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:48:02,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:48:02,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:49:02,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:49:11,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:49:11,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:50:11,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:50:26,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:50:26,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:51:26,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:51:38,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:51:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:52:38,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:52:47,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:52:47,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:53:47,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:54:01,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:54:01,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:55:01,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:55:10,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:55:10,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:56:10,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:56:19,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:56:19,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:57:19,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:57:33,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:57:33,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:58:33,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:58:47,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 07:58:47,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 07:59:47,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:00:01,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:00:01,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 08:01:01,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:01:10,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:01:10,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 08:02:10,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:02:24,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:02:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 08:03:24,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:03:39,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:03:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 08:04:39,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:04:54,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:04:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 08:05:54,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:06:03,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:06:03,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 08:07:03,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:07:12,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:07:12,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 08:08:12,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:08:21,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:08:21,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 08:09:21,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:09:35,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:09:35,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 08:10:35,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:10:46,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:10:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 08:11:46,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:12:00,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:12:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 08:13:00,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:13:14,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:13:14,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 08:14:14,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:14:28,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:14:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 08:15:28,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:15:42,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:15:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 08:16:42,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:16:51,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:16:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 08:17:51,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:18:00,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:18:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 08:19:00,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:19:08,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:19:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 08:20:09,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:20:21,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:20:21,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 08:21:21,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:21:35,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:21:35,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 08:22:35,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:22:44,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:22:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 08:23:44,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:23:53,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:23:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 08:24:53,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:25:02,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:25:02,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 08:26:02,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:26:16,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:26:16,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 08:27:16,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:27:30,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:27:30,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 08:28:30,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:28:39,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:28:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 08:29:39,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:29:48,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:29:48,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 08:30:48,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:30:57,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:30:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 08:31:12,EXPERIMENT_BASELINE_END,ALL,ALL,EXPERIMENT,0,training +2026-03-15 08:31:22,EXPERIMENT_CHAOS_START,Orchestrator,System,slow-connection,1,training +2026-03-15 08:31:22,START_ANOMALY,Orchestrator,System,slow-connection,1,training +2026-03-15 08:31:52,SCENARIO_START,ALL,ALL,START,0,training +2026-03-15 08:31:52,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:33:31,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:33:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 08:34:31,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:36:05,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:36:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 08:37:05,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:38:39,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:38:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 08:39:39,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:41:12,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:41:12,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 08:41:22,STOP_ANOMALY,Orchestrator,System,slow-connection,1,training +2026-03-15 08:41:22,EXPERIMENT_CHAOS_END,Orchestrator,System,slow-connection,1,training +2026-03-15 08:42:12,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:42:25,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:42:25,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 08:43:25,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:43:39,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:43:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 08:44:39,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:44:53,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:44:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 08:45:53,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:46:07,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:46:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 08:47:07,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:47:21,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:47:21,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 08:48:21,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:48:30,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:48:30,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 08:49:30,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:49:39,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:49:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 08:50:39,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:50:48,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:50:48,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 08:51:22,EXPERIMENT_CHAOS_START,Orchestrator,System,high-latency,1,training +2026-03-15 08:51:22,START_ANOMALY,Orchestrator,System,high-latency,1,training +2026-03-15 08:51:48,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:54:35,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:54:35,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 08:55:35,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:58:12,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 08:58:12,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 08:59:12,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:01:22,STOP_ANOMALY,Orchestrator,System,high-latency,1,training +2026-03-15 09:01:22,EXPERIMENT_CHAOS_END,Orchestrator,System,high-latency,1,training +2026-03-15 09:01:29,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:01:29,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:02:29,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:02:38,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:02:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:03:38,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:03:52,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:03:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:04:52,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:05:06,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:05:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:06:06,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:06:20,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:06:20,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:07:20,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:07:34,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:07:34,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:08:34,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:08:43,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:08:43,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:09:43,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:09:52,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:09:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:10:52,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:11:06,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:11:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:11:22,EXPERIMENT_CHAOS_START,Orchestrator,System,packet-loss,1,training +2026-03-15 09:11:22,START_ANOMALY,Orchestrator,System,packet-loss,1,training +2026-03-15 09:12:06,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:12:15,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:12:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:13:15,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:13:24,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:13:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:14:24,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:14:36,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:14:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:15:36,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:15:50,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:15:50,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:16:50,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:17:04,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:17:04,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:18:04,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:18:18,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:18:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:19:18,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:19:27,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:19:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:20:27,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:20:36,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:20:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:21:22,STOP_ANOMALY,Orchestrator,System,packet-loss,1,training +2026-03-15 09:21:22,EXPERIMENT_CHAOS_END,Orchestrator,System,packet-loss,1,training +2026-03-15 09:21:36,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:21:45,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:21:45,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:22:45,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:22:59,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:22:59,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:23:59,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:24:13,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:24:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:25:13,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:25:27,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:25:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:26:27,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:26:41,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:26:41,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:27:41,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:27:50,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:27:50,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:28:50,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:28:59,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:28:59,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:29:59,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:30:08,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:30:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:31:08,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:31:22,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:31:22,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:31:22,EXPERIMENT_CHAOS_START,Orchestrator,System,congestion,1,training +2026-03-15 09:31:22,START_ANOMALY,Orchestrator,System,congestion,1,training +2026-03-15 09:32:22,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:32:46,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:32:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:33:46,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:34:11,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:34:11,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:35:11,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:35:35,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:35:35,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:36:35,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:36:54,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:36:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:37:54,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:38:14,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:38:14,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:39:14,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:39:33,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:39:33,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:40:33,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:40:52,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:40:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:41:22,STOP_ANOMALY,Orchestrator,System,congestion,1,training +2026-03-15 09:41:22,EXPERIMENT_CHAOS_END,Orchestrator,System,congestion,1,training +2026-03-15 09:41:52,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:42:01,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:42:01,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:43:01,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:43:16,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:43:16,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:44:16,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:44:30,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:44:30,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:45:30,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:45:44,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:45:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:46:44,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:46:53,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:46:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:47:53,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:48:02,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:48:02,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:49:02,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:49:11,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:49:11,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:50:11,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:50:25,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:50:25,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:51:22,EXPERIMENT_CHAOS_START,Orchestrator,System,partial-outage,1,training +2026-03-15 09:51:22,START_ANOMALY,Orchestrator,System,partial-outage,1,training +2026-03-15 09:51:25,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:51:39,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:51:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:52:39,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:52:53,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:52:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:53:53,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:54:07,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:54:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:55:07,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:55:21,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:55:21,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:56:21,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:56:30,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:56:30,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:57:30,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:57:50,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:57:50,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 09:58:50,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:59:04,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 09:59:04,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:00:04,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:00:18,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:00:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:01:18,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:01:22,STOP_ANOMALY,Orchestrator,System,partial-outage,1,training +2026-03-15 10:01:22,EXPERIMENT_CHAOS_END,Orchestrator,System,partial-outage,1,training +2026-03-15 10:01:37,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:01:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:02:37,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:02:46,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:02:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:03:46,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:03:55,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:03:55,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:04:55,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:05:03,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:05:03,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:06:04,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:06:18,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:06:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:07:18,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:07:32,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:07:32,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:08:32,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:08:46,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:08:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:09:46,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:09:55,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:09:55,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:10:55,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:11:04,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:11:04,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:11:22,EXPERIMENT_CHAOS_START,Orchestrator,System,flapping,1,training +2026-03-15 10:11:22,START_ANOMALY,Orchestrator,System,flapping,1,training +2026-03-15 10:11:52,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-15 10:12:04,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:12:22,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-15 10:12:39,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:12:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:12:52,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-15 10:13:23,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-15 10:13:39,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:13:52,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-15 10:13:53,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:13:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:14:23,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-15 10:14:53,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-15 10:14:53,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:15:22,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-15 10:15:40,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:15:40,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:15:52,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-15 10:16:22,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-15 10:16:40,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:16:49,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:16:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:16:52,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-15 10:17:22,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-15 10:17:49,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:17:52,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-15 10:18:22,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-15 10:18:52,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-15 10:19:22,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-15 10:19:47,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:19:47,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:19:52,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-15 10:20:22,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-15 10:20:47,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:20:52,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-15 10:21:22,STOP_ANOMALY,Orchestrator,System,flapping,1,training +2026-03-15 10:21:22,EXPERIMENT_CHAOS_END,Orchestrator,System,flapping,1,training +2026-03-15 10:22:26,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:22:26,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:23:26,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:23:35,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:23:35,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:24:35,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:24:49,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:24:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:25:49,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:26:03,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:26:03,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:27:03,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:27:17,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:27:17,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:28:17,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:28:31,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:28:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:29:31,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:29:45,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:29:45,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:30:45,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:30:54,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:30:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:31:23,EXPERIMENT_CHAOS_START,Orchestrator,System,cpu-stress,1,training +2026-03-15 10:31:23,START_ANOMALY,Orchestrator,System,cpu-stress,1,training +2026-03-15 10:31:23,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-15 10:31:54,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:32:03,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:32:03,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:32:08,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-15 10:33:03,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-15 10:33:03,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:33:17,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:33:17,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:33:48,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-15 10:34:17,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:34:31,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:34:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:34:43,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-15 10:35:28,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-15 10:35:31,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:35:44,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:35:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:36:23,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-15 10:36:44,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:36:58,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:36:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:37:08,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-15 10:37:58,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:38:03,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-15 10:38:12,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:38:12,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:38:48,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-15 10:39:12,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:39:21,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:39:21,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:39:43,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-15 10:40:21,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:40:28,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-15 10:40:30,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:40:30,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:41:23,STOP_ANOMALY,Orchestrator,System,cpu-stress,1,training +2026-03-15 10:41:23,EXPERIMENT_CHAOS_END,Orchestrator,System,cpu-stress,1,training +2026-03-15 10:41:30,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:41:44,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:41:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:42:44,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:43:00,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:43:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:44:00,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:44:14,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:44:14,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:45:14,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:45:28,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:45:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:46:28,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:46:42,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:46:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:47:42,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:47:56,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:47:56,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:48:56,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:49:05,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:49:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:50:05,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:50:14,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:50:14,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:51:14,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:51:23,EXPERIMENT_CHAOS_START,Orchestrator,System,io-stress,1,training +2026-03-15 10:51:23,START_ANOMALY,Orchestrator,System,io-stress,1,training +2026-03-15 10:51:23,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-15 10:51:23,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:51:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:51:58,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-15 10:52:23,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:52:37,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:52:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:52:58,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-15 10:53:33,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-15 10:53:37,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:53:51,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:53:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:54:33,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-15 10:54:51,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:55:08,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-15 10:55:19,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:55:19,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:56:08,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-15 10:56:22,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:56:43,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-15 10:56:57,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:56:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:57:43,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-15 10:57:57,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:58:18,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-15 10:58:38,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:58:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 10:59:18,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-15 10:59:38,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 10:59:53,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-15 11:00:05,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:00:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 11:00:53,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-15 11:01:05,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:01:23,STOP_ANOMALY,Orchestrator,System,io-stress,1,training +2026-03-15 11:01:23,RECOVERY_RESTART,Orchestrator,System,io-stress,0,training +2026-03-15 11:01:36,EXPERIMENT_CHAOS_END,Orchestrator,System,io-stress,1,training +2026-03-15 11:01:40,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:01:40,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 11:02:40,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:02:54,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:02:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 11:03:54,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:04:06,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:04:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 11:05:06,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:05:20,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:05:20,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 11:06:20,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:06:29,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:06:29,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 11:07:29,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:07:38,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:07:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 11:08:38,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:08:52,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:08:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 11:09:52,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:10:06,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:10:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 11:11:06,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:11:20,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:11:20,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 11:11:36,EXPERIMENT_CHAOS_START,Orchestrator,System,mem-stress,1,training +2026-03-15 11:11:36,START_ANOMALY,Orchestrator,System,mem-stress,1,training +2026-03-15 11:11:36,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-15 11:12:06,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-15 11:12:20,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:12:32,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:12:32,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 11:13:06,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-15 11:13:32,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:13:36,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-15 11:13:50,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:13:50,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 11:14:36,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-15 11:14:50,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:15:04,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:15:04,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 11:15:06,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-15 11:16:04,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:16:06,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-15 11:16:22,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:16:22,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 11:16:36,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-15 11:17:22,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:17:36,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-15 11:17:36,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:17:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 11:18:06,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-15 11:18:36,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:18:50,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:18:50,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 11:19:06,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-15 11:19:36,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-15 11:19:50,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:20:04,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:20:04,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 11:20:36,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-15 11:21:04,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:21:06,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-15 11:21:17,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:21:17,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 11:21:36,STOP_ANOMALY,Orchestrator,System,mem-stress,1,training +2026-03-15 11:21:36,RECOVERY_RESTART,Orchestrator,System,mem-stress,0,training +2026-03-15 11:21:49,EXPERIMENT_CHAOS_END,Orchestrator,System,mem-stress,1,training +2026-03-15 11:22:17,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:22:31,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:22:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 11:23:31,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:23:45,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:23:45,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 11:24:45,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:24:53,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:24:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 11:25:54,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:26:09,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:26:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 11:27:09,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:27:18,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:27:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 11:28:18,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:28:27,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:28:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 11:29:27,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:29:36,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:29:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 11:30:36,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:30:50,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 11:30:50,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 11:31:49,EXPERIMENT_END,ALL,ALL,EXPERIMENT,0,training diff --git a/evaluation/data/gt_high-iops_run3.csv b/evaluation/data/gt_high-iops_run3.csv new file mode 100644 index 0000000..8adc0a5 --- /dev/null +++ b/evaluation/data/gt_high-iops_run3.csv @@ -0,0 +1,726 @@ +timestamp,action,source,target,workload_type,is_anomaly,scenario_mode +2026-03-15 12:25:54,EXPERIMENT_BASELINE_START,ALL,ALL,EXPERIMENT,0,training +2026-03-15 12:26:24,SCENARIO_START,ALL,ALL,START,0,training +2026-03-15 12:26:24,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:26:33,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:26:33,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 12:27:33,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:27:42,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:27:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 12:28:42,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:28:51,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:28:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 12:29:51,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:30:00,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:30:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 12:31:00,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:31:09,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:31:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 12:32:09,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:32:18,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:32:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 12:33:18,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:33:26,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:33:26,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 12:34:27,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:34:35,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:34:35,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 12:35:35,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:35:44,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:35:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 12:36:44,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:36:53,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:36:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 12:37:53,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:38:02,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:38:02,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 12:39:02,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:39:11,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:39:11,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 12:40:11,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:40:20,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:40:20,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 12:41:20,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:41:29,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:41:29,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 12:42:29,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:42:38,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:42:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 12:43:38,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:43:47,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:43:47,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 12:44:47,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:44:56,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:44:56,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 12:45:56,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:46:05,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:46:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 12:47:05,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:47:14,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:47:14,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 12:48:14,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:48:23,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:48:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 12:49:23,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:49:32,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:49:32,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 12:50:32,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:50:46,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:50:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 12:51:46,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:52:00,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:52:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 12:53:00,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:53:09,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:53:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 12:54:09,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:54:18,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:54:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 12:55:18,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:55:27,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:55:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 12:56:27,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:56:39,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:56:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 12:57:40,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:57:53,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:57:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 12:58:53,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:59:08,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 12:59:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:00:08,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:00:23,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:00:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:01:23,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:01:32,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:01:32,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:02:32,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:02:41,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:02:41,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:03:41,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:03:50,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:03:50,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:04:50,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:04:59,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:04:59,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:05:59,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:06:08,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:06:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:07:08,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:07:24,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:07:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:08:24,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:08:38,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:08:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:09:38,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:09:51,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:09:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:10:51,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:11:05,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:11:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:12:05,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:12:19,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:12:19,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:13:19,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:13:28,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:13:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:14:28,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:14:42,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:14:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:15:42,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:15:51,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:15:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:16:51,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:17:00,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:17:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:18:00,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:18:11,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:18:11,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:19:11,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:19:20,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:19:20,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:20:20,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:20:32,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:20:32,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:21:32,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:21:46,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:21:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:22:46,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:23:00,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:23:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:24:00,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:24:09,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:24:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:25:09,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:25:18,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:25:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:26:18,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:26:27,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:26:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:27:27,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:27:36,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:27:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:28:36,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:28:45,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:28:45,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:29:45,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:29:54,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:29:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:30:54,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:31:11,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:31:11,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:32:11,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:32:27,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:32:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:33:27,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:33:41,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:33:41,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:34:41,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:34:55,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:34:55,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:35:55,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:36:04,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:36:04,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:37:04,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:37:18,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:37:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:38:18,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:38:32,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:38:32,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:39:32,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:39:46,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:39:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:40:46,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:40:55,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:40:55,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:41:55,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:42:09,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:42:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:43:09,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:43:18,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:43:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:44:18,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:44:31,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:44:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:45:31,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:45:45,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:45:45,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:46:45,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:46:59,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:46:59,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:47:59,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:48:13,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:48:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:49:13,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:49:22,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:49:22,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:50:22,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:50:31,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:50:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:51:31,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:51:40,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:51:40,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:52:40,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:52:49,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:52:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:53:49,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:54:05,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:54:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:55:05,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:55:19,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:55:19,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:55:54,EXPERIMENT_BASELINE_END,ALL,ALL,EXPERIMENT,0,training +2026-03-15 13:56:04,EXPERIMENT_CHAOS_START,Orchestrator,System,slow-connection,1,training +2026-03-15 13:56:04,START_ANOMALY,Orchestrator,System,slow-connection,1,training +2026-03-15 13:56:34,SCENARIO_START,ALL,ALL,START,0,training +2026-03-15 13:56:34,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:58:08,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 13:58:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 13:59:08,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:00:41,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:00:41,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 14:01:41,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:03:15,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:03:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 14:04:15,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:05:51,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:05:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 14:06:04,STOP_ANOMALY,Orchestrator,System,slow-connection,1,training +2026-03-15 14:06:04,EXPERIMENT_CHAOS_END,Orchestrator,System,slow-connection,1,training +2026-03-15 14:06:51,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:07:00,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:07:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 14:08:00,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:08:14,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:08:14,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 14:09:14,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:09:28,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:09:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 14:10:28,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:10:37,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:10:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 14:11:37,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:11:46,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:11:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 14:12:46,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:12:55,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:12:55,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 14:13:55,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:14:09,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:14:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 14:15:09,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:15:23,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:15:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 14:16:04,EXPERIMENT_CHAOS_START,Orchestrator,System,high-latency,1,training +2026-03-15 14:16:04,START_ANOMALY,Orchestrator,System,high-latency,1,training +2026-03-15 14:16:23,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:19:05,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:19:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 14:20:05,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:22:47,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:22:47,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 14:23:47,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:26:04,STOP_ANOMALY,Orchestrator,System,high-latency,1,training +2026-03-15 14:26:04,EXPERIMENT_CHAOS_END,Orchestrator,System,high-latency,1,training +2026-03-15 14:26:09,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:26:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 14:27:09,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:27:27,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:27:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 14:28:27,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:28:39,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:28:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 14:29:39,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:29:53,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:29:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 14:30:53,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:31:07,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:31:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 14:32:07,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:32:16,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:32:16,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 14:33:16,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:33:25,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:33:25,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 14:34:25,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:34:34,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:34:34,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 14:35:34,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:35:43,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:35:43,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 14:36:04,EXPERIMENT_CHAOS_START,Orchestrator,System,packet-loss,1,training +2026-03-15 14:36:04,START_ANOMALY,Orchestrator,System,packet-loss,1,training +2026-03-15 14:36:43,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:36:52,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:36:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 14:37:52,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:38:00,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:38:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 14:39:00,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:39:15,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:39:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 14:40:15,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:40:29,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:40:29,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 14:41:29,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:41:43,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:41:43,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 14:42:43,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:42:57,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:42:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 14:43:57,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:44:06,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:44:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 14:45:06,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:45:15,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:45:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 14:46:04,STOP_ANOMALY,Orchestrator,System,packet-loss,1,training +2026-03-15 14:46:04,EXPERIMENT_CHAOS_END,Orchestrator,System,packet-loss,1,training +2026-03-15 14:46:15,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:46:24,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:46:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 14:47:24,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:47:33,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:47:33,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 14:48:33,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:48:42,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:48:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 14:49:42,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:49:51,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:49:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 14:50:51,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:51:00,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:51:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 14:52:00,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:52:14,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:52:14,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 14:53:14,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:53:28,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:53:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 14:54:28,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:54:37,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:54:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 14:55:37,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:55:46,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:55:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 14:56:04,EXPERIMENT_CHAOS_START,Orchestrator,System,congestion,1,training +2026-03-15 14:56:04,START_ANOMALY,Orchestrator,System,congestion,1,training +2026-03-15 14:56:46,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:57:05,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:57:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 14:58:05,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:58:27,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:58:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 14:59:27,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:59:46,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 14:59:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:00:46,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:01:10,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:01:10,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:02:10,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:02:31,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:02:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:03:31,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:03:55,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:03:55,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:04:55,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:05:15,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:05:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:06:04,STOP_ANOMALY,Orchestrator,System,congestion,1,training +2026-03-15 15:06:04,EXPERIMENT_CHAOS_END,Orchestrator,System,congestion,1,training +2026-03-15 15:06:15,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:06:24,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:06:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:07:24,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:07:38,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:07:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:08:38,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:08:47,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:08:47,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:09:47,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:09:56,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:09:56,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:10:56,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:11:11,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:11:11,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:12:11,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:12:24,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:12:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:13:24,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:13:33,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:13:33,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:14:33,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:14:46,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:14:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:15:46,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:15:58,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:15:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:16:04,EXPERIMENT_CHAOS_START,Orchestrator,System,partial-outage,1,training +2026-03-15 15:16:04,START_ANOMALY,Orchestrator,System,partial-outage,1,training +2026-03-15 15:16:58,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:17:12,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:17:12,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:18:12,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:18:26,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:18:26,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:19:26,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:19:40,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:19:40,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:20:40,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:20:54,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:20:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:21:54,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:22:08,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:22:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:23:08,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:23:22,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:23:22,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:24:22,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:24:36,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:24:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:25:36,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:25:51,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:25:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:26:04,STOP_ANOMALY,Orchestrator,System,partial-outage,1,training +2026-03-15 15:26:04,EXPERIMENT_CHAOS_END,Orchestrator,System,partial-outage,1,training +2026-03-15 15:26:51,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:27:00,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:27:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:28:00,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:28:08,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:28:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:29:09,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:29:23,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:29:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:30:23,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:30:37,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:30:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:31:37,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:31:51,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:31:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:32:51,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:33:05,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:33:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:34:05,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:34:19,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:34:19,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:35:19,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:35:28,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:35:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:36:04,EXPERIMENT_CHAOS_START,Orchestrator,System,flapping,1,training +2026-03-15 15:36:04,START_ANOMALY,Orchestrator,System,flapping,1,training +2026-03-15 15:36:28,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:36:34,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-15 15:37:04,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-15 15:37:22,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:37:22,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:37:34,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-15 15:38:04,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-15 15:38:22,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:38:31,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:38:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:38:34,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-15 15:39:04,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-15 15:39:31,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:39:34,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-15 15:40:04,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-15 15:40:31,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:40:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:40:34,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-15 15:41:04,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-15 15:41:31,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:41:34,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-15 15:42:04,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-15 15:42:34,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-15 15:43:04,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-15 15:43:19,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:43:19,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:43:34,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-15 15:44:04,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-15 15:44:19,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:44:28,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:44:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:44:34,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-15 15:45:04,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-15 15:45:28,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:45:34,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-15 15:46:04,STOP_ANOMALY,Orchestrator,System,flapping,1,training +2026-03-15 15:46:04,EXPERIMENT_CHAOS_END,Orchestrator,System,flapping,1,training +2026-03-15 15:46:31,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:46:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:47:31,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:47:45,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:47:45,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:48:45,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:48:54,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:48:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:49:54,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:50:08,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:50:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:51:08,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:51:22,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:51:22,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:52:22,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:52:36,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:52:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:53:36,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:53:50,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:53:50,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:54:50,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:55:04,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:55:04,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:56:04,EXPERIMENT_CHAOS_START,Orchestrator,System,cpu-stress,1,training +2026-03-15 15:56:04,START_ANOMALY,Orchestrator,System,cpu-stress,1,training +2026-03-15 15:56:04,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-15 15:56:04,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:56:18,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:56:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:56:49,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-15 15:57:18,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:57:35,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:57:35,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:57:44,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-15 15:58:29,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-15 15:58:35,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:58:44,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:58:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 15:59:24,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-15 15:59:44,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:59:53,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 15:59:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:00:09,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-15 16:00:53,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:01:04,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-15 16:01:06,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:01:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:01:49,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-15 16:02:07,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:02:15,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:02:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:02:44,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-15 16:03:15,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:03:24,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:03:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:03:29,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-15 16:04:24,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-15 16:04:24,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:04:33,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:04:33,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:05:09,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-15 16:05:33,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:05:42,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:05:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:06:04,STOP_ANOMALY,Orchestrator,System,cpu-stress,1,training +2026-03-15 16:06:04,EXPERIMENT_CHAOS_END,Orchestrator,System,cpu-stress,1,training +2026-03-15 16:06:42,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:06:51,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:06:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:07:51,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:08:00,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:08:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:09:00,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:09:15,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:09:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:10:15,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:10:29,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:10:29,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:11:29,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:11:43,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:11:43,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:12:43,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:12:57,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:12:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:13:57,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:14:11,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:14:11,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:15:11,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:15:20,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:15:20,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:16:04,EXPERIMENT_CHAOS_START,Orchestrator,System,io-stress,1,training +2026-03-15 16:16:04,START_ANOMALY,Orchestrator,System,io-stress,1,training +2026-03-15 16:16:04,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-15 16:16:20,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:16:39,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-15 16:16:57,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:16:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:17:39,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-15 16:18:03,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:18:14,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-15 16:18:30,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:18:30,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:19:19,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-15 16:19:30,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:19:54,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-15 16:20:08,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:20:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:20:54,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-15 16:21:08,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:21:29,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-15 16:21:45,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:21:45,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:22:29,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-15 16:22:45,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:23:04,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-15 16:23:19,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:23:19,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:24:04,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-15 16:24:19,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:24:39,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-15 16:24:56,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:24:56,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:25:39,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-15 16:25:56,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:26:04,STOP_ANOMALY,Orchestrator,System,io-stress,1,training +2026-03-15 16:26:04,RECOVERY_RESTART,Orchestrator,System,io-stress,0,training +2026-03-15 16:26:17,EXPERIMENT_CHAOS_END,Orchestrator,System,io-stress,1,training +2026-03-15 16:26:24,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:26:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:27:24,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:27:38,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:27:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:28:38,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:29:29,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:29:29,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:30:29,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:30:44,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:30:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:31:44,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:31:58,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:31:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:32:58,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:33:12,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:33:12,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:34:12,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:34:21,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:34:21,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:35:21,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:35:35,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:35:35,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:36:17,EXPERIMENT_CHAOS_START,Orchestrator,System,mem-stress,1,training +2026-03-15 16:36:17,START_ANOMALY,Orchestrator,System,mem-stress,1,training +2026-03-15 16:36:17,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-15 16:36:35,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:36:47,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-15 16:36:49,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:36:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:37:47,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-15 16:37:49,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:38:03,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:38:03,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:38:17,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-15 16:39:03,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:39:12,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:39:12,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:39:17,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-15 16:39:47,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-15 16:40:12,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:40:21,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:40:21,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:40:47,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-15 16:41:17,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-15 16:41:21,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:41:35,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:41:35,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:42:18,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-15 16:42:35,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:42:48,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-15 16:42:49,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:42:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:43:48,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-15 16:43:49,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:43:58,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:43:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:44:18,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-15 16:44:58,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:45:17,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:45:17,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:45:18,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-15 16:45:48,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-15 16:46:17,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:46:17,STOP_ANOMALY,Orchestrator,System,mem-stress,1,training +2026-03-15 16:46:17,RECOVERY_RESTART,Orchestrator,System,mem-stress,0,training +2026-03-15 16:46:30,EXPERIMENT_CHAOS_END,Orchestrator,System,mem-stress,1,training +2026-03-15 16:47:20,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:47:20,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:48:20,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:48:34,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:48:34,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:49:34,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:49:43,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:49:43,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:50:43,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:50:52,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:50:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:51:52,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:52:01,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:52:01,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:53:01,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:53:10,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:53:10,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:54:10,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:54:24,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:54:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:55:24,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:55:38,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-15 16:55:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-15 16:56:30,EXPERIMENT_END,ALL,ALL,EXPERIMENT,0,training diff --git a/evaluation/data/gt_idle_pipeline_baseline.csv b/evaluation/data/gt_idle_pipeline_baseline.csv new file mode 100644 index 0000000..38841c3 --- /dev/null +++ b/evaluation/data/gt_idle_pipeline_baseline.csv @@ -0,0 +1,242 @@ +timestamp,action,source,target,workload_type,is_anomaly,scenario_mode +2026-03-13 19:38:52,EXPERIMENT_BASELINE_START,ALL,ALL,EXPERIMENT,0,training +2026-03-13 19:39:22,SCENARIO_START,ALL,ALL,START,0,training +2026-03-13 19:39:22,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:39:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:39:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:40:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:40:22,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:40:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:40:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:41:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:41:22,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:41:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:41:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:42:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:42:22,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:42:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:42:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:43:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:43:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:43:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:43:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:44:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:44:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:44:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:44:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:45:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:45:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:45:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:45:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:46:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:46:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:46:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:46:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:47:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:47:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:47:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:47:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:48:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:48:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:48:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:48:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:49:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:49:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:49:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:49:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:50:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:50:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:50:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:50:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:51:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:51:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:51:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:51:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:52:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:52:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:52:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:52:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:53:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:53:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:53:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:53:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:54:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:54:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:54:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:54:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:55:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:55:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:55:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:55:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:56:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:56:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:56:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:56:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:57:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:57:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:57:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:57:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:58:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:58:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:58:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:58:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:59:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:59:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:59:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 19:59:54,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:00:10,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:00:25,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:00:40,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:00:55,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:01:10,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:01:25,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:01:40,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:01:55,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:02:10,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:02:25,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:02:40,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:02:55,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:03:10,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:03:25,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:03:40,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:03:55,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:04:10,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:04:25,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:04:40,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:04:55,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:05:10,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:05:25,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:05:40,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:05:55,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:06:10,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:06:25,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:06:40,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:06:55,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:07:10,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:07:25,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:07:40,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:07:55,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:08:10,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:08:25,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:08:40,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:08:56,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:09:11,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:09:26,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:09:41,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:09:56,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:10:11,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:10:26,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:10:41,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:10:56,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:11:11,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:11:26,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:11:41,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:11:56,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:12:11,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:12:26,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:12:41,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:12:56,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:13:11,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:13:26,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:13:41,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:13:56,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:14:11,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:14:26,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:14:41,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:14:56,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:15:11,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:15:26,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:15:41,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:15:56,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:16:11,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:16:26,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:16:41,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:16:56,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:17:11,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:17:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:17:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:17:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:18:12,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:18:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:18:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:18:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:19:12,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:19:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:19:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:19:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:20:12,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:20:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:20:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:20:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:21:12,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:21:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:21:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:21:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:22:12,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:22:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:22:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:22:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:23:12,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:23:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:23:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:23:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:24:12,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:24:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:24:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:24:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:25:12,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:25:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:25:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:25:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:26:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:26:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:26:43,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:26:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:27:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:27:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:27:43,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:27:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:28:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:28:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:28:43,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:28:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:29:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:29:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:29:43,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:29:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:30:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:30:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:30:43,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:30:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:31:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:31:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:31:43,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:31:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:32:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:32:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:32:43,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:32:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:33:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:33:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:33:43,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:33:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:34:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:34:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:34:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:34:59,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:35:14,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:35:29,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:35:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:35:59,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:36:14,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:36:29,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:36:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:36:59,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:37:14,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:37:29,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:37:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:37:59,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:38:14,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:38:29,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:38:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-13 20:38:52,EXPERIMENT_BASELINE_END,ALL,ALL,EXPERIMENT,0,training diff --git a/evaluation/data/gt_validation_run1.csv b/evaluation/data/gt_validation_run1.csv new file mode 100644 index 0000000..7a44768 --- /dev/null +++ b/evaluation/data/gt_validation_run1.csv @@ -0,0 +1,936 @@ +timestamp,action,source,target,workload_type,is_anomaly,scenario_mode +2026-03-20 16:18:27,EXPERIMENT_BASELINE_START,ALL,ALL,EXPERIMENT,0,training +2026-03-20 16:18:57,SCENARIO_START,ALL,ALL,START,0,training +2026-03-20 16:18:57,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 16:19:16,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 16:19:16,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 16:22:17,EXPERIMENT_BASELINE_START,ALL,ALL,EXPERIMENT,0,training +2026-03-20 16:22:47,SCENARIO_START,ALL,ALL,START,0,training +2026-03-20 16:22:47,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 16:23:38,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 16:23:38,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 16:23:52,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 16:23:52,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 16:25:32,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 16:25:32,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 16:25:42,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 16:25:42,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 16:25:53,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 16:25:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 16:26:53,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 16:27:43,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 16:27:43,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 16:27:57,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 16:27:57,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 16:29:32,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 16:29:32,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 16:29:42,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 16:29:42,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 16:29:48,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 16:29:48,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 16:30:48,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 16:31:38,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 16:31:38,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 16:31:47,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 16:31:47,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 16:32:04,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 16:32:04,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 16:32:10,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 16:32:10,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 16:33:30,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 16:33:30,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 16:34:30,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 16:35:20,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 16:35:20,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 16:35:34,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 16:35:34,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 16:36:59,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 16:36:59,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 16:37:04,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 16:37:04,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 16:37:15,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 16:37:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 16:38:15,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 16:39:05,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 16:39:05,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 16:39:14,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 16:39:14,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 16:41:04,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 16:41:04,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 16:41:09,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 16:41:09,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 16:41:14,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 16:41:14,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 16:42:15,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 16:43:05,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 16:43:05,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 16:43:19,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 16:43:19,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 16:45:04,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 16:45:04,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 16:45:14,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 16:45:14,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 16:45:19,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 16:45:19,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 16:46:19,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 16:46:23,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 17:48:35,EXPERIMENT_BASELINE_START,ALL,ALL,EXPERIMENT,0,training +2026-03-20 17:49:05,SCENARIO_START,ALL,ALL,START,0,training +2026-03-20 17:49:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 17:50:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 17:51:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 17:52:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 17:53:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 17:54:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 17:55:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 17:56:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 17:57:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 17:58:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 17:59:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:00:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:01:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:02:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:03:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:04:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:05:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:06:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:07:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:08:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:09:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:10:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:11:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:12:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:13:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:14:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:15:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:16:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:17:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:18:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:19:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:20:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:21:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:22:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:23:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:24:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:25:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:26:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:27:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:28:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:29:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:30:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:31:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:32:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:33:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:34:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:35:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:36:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:37:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:38:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:39:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:40:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:41:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:42:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:43:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:44:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:45:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:46:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:47:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:48:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:48:34,EXPERIMENT_BASELINE_END,ALL,ALL,EXPERIMENT,0,training +2026-03-20 18:48:38,EXPERIMENT_BASELINE_START,ALL,ALL,EXPERIMENT,0,training +2026-03-20 18:49:08,SCENARIO_START,ALL,ALL,START,0,training +2026-03-20 18:49:08,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 18:49:58,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 18:49:58,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 18:50:12,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 18:50:12,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 18:51:48,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 18:51:48,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 18:51:53,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 18:51:53,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 18:52:03,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 18:52:03,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:53:03,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 18:53:53,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 18:53:53,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 18:54:07,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 18:54:07,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 18:54:28,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 18:54:28,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 18:54:33,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 18:54:33,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 18:55:48,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 18:55:48,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 18:56:48,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 18:57:38,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 18:57:38,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 18:57:53,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 18:57:53,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 18:58:08,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 18:58:08,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 18:58:16,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 18:58:16,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 18:59:31,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 18:59:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 19:00:31,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 19:01:16,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 19:01:16,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 19:01:29,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 19:01:29,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 19:01:44,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 19:01:44,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 19:01:54,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 19:01:54,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 19:03:10,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 19:03:10,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 19:04:10,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 19:05:00,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 19:05:00,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 19:05:14,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 19:05:14,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 19:06:19,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 19:06:19,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 19:06:24,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 19:06:24,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 19:06:55,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 19:06:55,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 19:07:55,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 19:08:45,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 19:08:45,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 19:08:54,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 19:08:54,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 19:09:14,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 19:09:14,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 19:09:24,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 19:09:24,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 19:10:39,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 19:10:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 19:11:39,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 19:12:30,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 19:12:30,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 19:12:43,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 19:12:43,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 19:14:19,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 19:14:19,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 19:14:29,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 19:14:29,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 19:14:34,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 19:14:34,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 19:15:34,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 19:16:24,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 19:16:24,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 19:16:38,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 19:16:38,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 19:17:48,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 19:17:48,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 19:17:58,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 19:17:58,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 19:18:19,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 19:18:19,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 19:19:19,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 19:20:06,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 19:20:06,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 19:20:19,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 19:20:19,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 19:21:34,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 19:21:34,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 19:21:45,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 19:21:45,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 19:22:00,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 19:22:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 19:23:00,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 19:23:50,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 19:23:50,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 19:24:03,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 19:24:03,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 19:25:29,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 19:25:29,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 19:25:34,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 19:25:34,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 19:25:49,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 19:25:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 19:26:49,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 19:27:39,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 19:27:39,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 19:27:49,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 19:27:49,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 19:28:09,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 19:28:09,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 19:28:14,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 19:28:14,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 19:29:34,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 19:29:34,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 19:30:34,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 19:31:24,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 19:31:24,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 19:31:38,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 19:31:38,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 19:32:04,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 19:32:04,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 19:32:14,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 19:32:14,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 19:33:19,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 19:33:19,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 19:34:19,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 19:35:11,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 19:35:11,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 19:35:25,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 19:35:25,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 19:36:35,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 19:36:35,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 19:36:42,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 19:36:42,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 19:37:02,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 19:37:02,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 19:38:02,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 19:38:53,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 19:38:53,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 19:39:02,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 19:39:02,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 19:40:52,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 19:40:52,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 19:41:03,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 19:41:03,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 19:41:08,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 19:41:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 19:42:08,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 19:42:58,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 19:42:58,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 19:43:12,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 19:43:12,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 19:44:47,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 19:44:47,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 19:44:57,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 19:44:57,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 19:45:03,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 19:45:03,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 19:46:03,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 19:46:53,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 19:46:53,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 19:47:08,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 19:47:08,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 19:47:33,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 19:47:33,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 19:47:43,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 19:47:43,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 19:48:43,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 19:48:43,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 19:49:43,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 19:50:34,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 19:50:34,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 19:50:43,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 19:50:43,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 19:51:03,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 19:51:03,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 19:51:13,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 19:51:13,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 19:52:28,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 19:52:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 19:53:28,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 19:54:19,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 19:54:19,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 19:54:33,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 19:54:33,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 19:54:48,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 19:54:48,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 19:54:58,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 19:54:58,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 19:56:13,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 19:56:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 19:57:13,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 19:58:04,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 19:58:04,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 19:58:18,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 19:58:18,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 19:58:33,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 19:58:33,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 19:58:43,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 19:58:43,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 19:59:58,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 19:59:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 20:00:58,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 20:01:49,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 20:01:49,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 20:02:02,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 20:02:02,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 20:03:38,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 20:03:38,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 20:03:43,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 20:03:43,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 20:03:48,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 20:03:48,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 20:04:48,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 20:05:33,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 20:05:33,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 20:05:47,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 20:05:47,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 20:06:13,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 20:06:13,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 20:06:18,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 20:06:18,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 20:07:28,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 20:07:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 20:08:28,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 20:09:18,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 20:09:18,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 20:09:32,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 20:09:32,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 20:11:18,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 20:11:18,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 20:11:28,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 20:11:28,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 20:11:38,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 20:11:38,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 20:12:38,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 20:13:28,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 20:13:28,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 20:13:37,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 20:13:37,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 20:14:03,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 20:14:03,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 20:14:08,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 20:14:08,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 20:15:23,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 20:15:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 20:16:23,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 20:17:13,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 20:17:13,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 20:17:27,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 20:17:27,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 20:17:53,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 20:17:53,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 20:17:58,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 20:17:58,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 20:18:38,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 20:18:38,EXPERIMENT_BASELINE_END,ALL,ALL,EXPERIMENT,0,training +2026-03-20 20:18:48,EXPERIMENT_CHAOS_START,Orchestrator,System,slow-connection,1,training +2026-03-20 20:18:48,START_ANOMALY,Orchestrator,System,slow-connection,1,training +2026-03-20 20:19:18,SCENARIO_START,ALL,ALL,START,0,training +2026-03-20 20:19:18,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 20:24:21,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 20:24:21,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 20:26:04,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 20:26:04,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 20:28:48,STOP_ANOMALY,Orchestrator,System,slow-connection,1,training +2026-03-20 20:28:48,EXPERIMENT_CHAOS_END,Orchestrator,System,slow-connection,1,training +2026-03-20 20:29:02,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 20:29:02,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 20:29:16,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 20:29:16,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 20:29:27,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 20:29:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 20:30:27,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 20:31:17,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 20:31:17,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 20:31:31,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 20:31:31,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 20:32:41,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 20:32:41,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 20:32:51,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 20:32:51,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 20:33:11,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 20:33:11,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 20:34:11,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 20:35:02,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 20:35:02,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 20:35:16,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 20:35:16,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 20:36:31,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 20:36:31,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 20:36:36,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 20:36:36,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 20:36:56,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 20:36:56,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 20:37:56,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 20:38:46,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 20:38:46,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 20:38:48,EXPERIMENT_CHAOS_START,Orchestrator,System,high-latency,1,training +2026-03-20 20:38:48,START_ANOMALY,Orchestrator,System,high-latency,1,training +2026-03-20 20:41:15,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 20:41:15,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 20:44:13,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 20:44:13,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 20:45:32,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 20:45:32,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 20:46:25,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 20:46:25,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 20:47:25,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 20:48:48,STOP_ANOMALY,Orchestrator,System,high-latency,1,training +2026-03-20 20:48:48,EXPERIMENT_CHAOS_END,Orchestrator,System,high-latency,1,training +2026-03-20 20:49:28,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 20:49:28,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 20:49:37,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 20:49:37,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 20:49:54,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 20:49:54,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 20:50:05,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 20:50:05,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 20:51:22,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 20:51:22,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 20:52:22,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 20:53:07,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 20:53:07,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 20:53:20,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 20:53:20,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 20:54:21,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 20:54:21,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 20:54:27,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 20:54:27,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 20:55:02,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 20:55:02,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 20:56:02,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 20:56:52,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 20:56:52,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 20:57:06,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 20:57:06,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 20:57:26,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 20:57:26,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 20:57:31,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 20:57:31,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 20:58:46,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 20:58:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 20:58:48,EXPERIMENT_CHAOS_START,Orchestrator,System,packet-loss,1,training +2026-03-20 20:58:48,START_ANOMALY,Orchestrator,System,packet-loss,1,training +2026-03-20 20:59:46,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 21:00:37,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 21:00:37,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 21:00:45,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 21:00:45,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 21:01:06,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 21:01:06,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 21:01:16,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 21:01:16,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 21:02:26,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 21:02:26,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 21:03:26,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 21:04:16,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 21:04:16,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 21:04:30,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 21:04:30,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 21:04:55,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 21:04:55,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 21:05:01,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 21:05:01,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 21:06:12,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 21:06:12,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 21:07:12,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 21:07:57,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 21:07:57,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 21:08:16,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 21:08:16,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 21:08:48,STOP_ANOMALY,Orchestrator,System,packet-loss,1,training +2026-03-20 21:08:48,EXPERIMENT_CHAOS_END,Orchestrator,System,packet-loss,1,training +2026-03-20 21:09:51,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 21:09:51,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 21:10:01,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 21:10:01,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 21:10:06,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 21:10:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 21:11:06,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 21:11:57,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 21:11:57,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 21:12:11,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 21:12:11,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 21:13:56,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 21:13:56,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 21:14:01,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 21:14:01,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 21:14:11,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 21:14:11,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 21:15:11,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 21:16:01,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 21:16:01,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 21:16:15,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 21:16:15,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 21:16:45,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 21:16:45,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 21:16:53,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 21:16:53,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 21:17:53,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 21:17:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 21:18:48,EXPERIMENT_CHAOS_START,Orchestrator,System,congestion,1,training +2026-03-20 21:18:48,START_ANOMALY,Orchestrator,System,congestion,1,training +2026-03-20 21:18:53,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 21:23:54,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 21:23:54,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 21:24:18,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 21:24:18,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 21:28:30,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 21:28:30,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 21:28:40,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 21:28:40,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 21:28:48,STOP_ANOMALY,Orchestrator,System,congestion,1,training +2026-03-20 21:28:48,EXPERIMENT_CHAOS_END,Orchestrator,System,congestion,1,training +2026-03-20 21:28:57,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 21:28:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 21:29:57,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 21:30:47,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 21:30:47,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 21:31:01,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 21:31:01,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 21:32:16,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 21:32:16,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 21:32:26,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 21:32:26,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 21:32:41,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 21:32:41,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 21:33:41,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 21:34:32,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 21:34:32,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 21:34:40,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 21:34:40,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 21:35:07,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 21:35:07,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 21:35:13,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 21:35:13,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 21:36:28,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 21:36:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 21:37:28,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 21:38:18,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 21:38:18,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 21:38:32,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 21:38:32,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 21:38:48,EXPERIMENT_CHAOS_START,Orchestrator,System,partial-outage,1,training +2026-03-20 21:38:48,START_ANOMALY,Orchestrator,System,partial-outage,1,training +2026-03-20 21:40:17,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 21:40:17,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 21:40:22,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 21:40:22,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 21:40:28,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 21:40:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 21:41:28,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 21:42:18,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 21:42:18,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 21:42:33,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 21:42:33,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 21:44:18,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 21:44:18,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 21:44:28,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 21:44:28,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 21:44:34,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 21:44:34,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 21:45:34,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 21:46:24,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 21:46:24,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 21:46:38,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 21:46:38,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 21:47:28,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 21:47:28,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 21:47:33,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 21:47:33,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 21:48:18,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 21:48:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 21:48:48,STOP_ANOMALY,Orchestrator,System,partial-outage,1,training +2026-03-20 21:48:48,EXPERIMENT_CHAOS_END,Orchestrator,System,partial-outage,1,training +2026-03-20 21:49:18,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 21:50:08,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 21:50:08,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 21:50:22,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 21:50:22,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 21:50:37,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 21:50:37,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 21:50:47,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 21:50:47,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 21:52:02,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 21:52:02,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 21:53:02,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 21:53:52,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 21:53:52,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 21:54:06,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 21:54:06,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 21:55:36,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 21:55:36,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 21:55:47,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 21:55:47,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 21:55:52,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 21:55:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 21:56:52,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 21:57:42,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 21:57:42,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 21:57:56,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 21:57:56,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 21:58:31,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 21:58:31,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 21:58:41,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 21:58:41,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 21:58:48,EXPERIMENT_CHAOS_START,Orchestrator,System,flapping,1,training +2026-03-20 21:58:48,START_ANOMALY,Orchestrator,System,flapping,1,training +2026-03-20 21:59:18,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-20 21:59:48,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-20 22:00:01,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 22:00:01,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 22:00:18,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-20 22:00:48,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-20 22:01:01,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 22:01:18,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-20 22:01:48,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-20 22:02:18,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-20 22:02:48,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-20 22:03:18,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-20 22:03:48,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-20 22:04:18,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-20 22:04:48,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-20 22:05:16,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 22:05:16,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 22:05:18,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-20 22:05:48,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-20 22:06:01,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 22:06:01,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 22:06:18,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-20 22:06:48,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-20 22:07:18,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-20 22:07:48,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-20 22:08:06,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 22:08:06,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 22:08:16,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 22:08:16,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 22:08:18,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-20 22:08:48,STOP_ANOMALY,Orchestrator,System,flapping,1,training +2026-03-20 22:08:48,EXPERIMENT_CHAOS_END,Orchestrator,System,flapping,1,training +2026-03-20 22:09:17,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 22:09:17,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 22:10:17,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 22:11:07,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 22:11:07,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 22:11:21,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 22:11:21,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 22:11:36,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 22:11:36,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 22:11:41,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 22:11:41,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 22:13:07,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 22:13:07,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 22:14:07,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 22:14:57,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 22:14:57,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 22:15:06,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 22:15:06,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 22:15:26,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 22:15:26,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 22:15:32,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 22:15:32,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 22:16:47,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 22:16:47,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 22:17:47,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 22:18:37,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 22:18:37,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 22:18:48,EXPERIMENT_CHAOS_START,Orchestrator,System,cpu-stress,1,training +2026-03-20 22:18:48,START_ANOMALY,Orchestrator,System,cpu-stress,1,training +2026-03-20 22:18:48,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-20 22:18:51,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 22:18:51,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 22:19:33,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-20 22:20:01,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 22:20:01,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 22:20:12,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 22:20:12,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 22:20:27,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 22:20:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 22:20:28,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-20 22:21:13,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-20 22:21:27,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 22:22:08,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-20 22:22:12,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 22:22:12,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 22:22:26,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 22:22:26,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 22:22:43,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 22:22:43,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 22:22:49,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 22:22:49,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 22:22:53,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-20 22:23:49,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-20 22:24:09,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 22:24:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 22:24:34,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-20 22:25:09,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 22:25:29,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-20 22:25:59,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 22:25:59,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 22:26:13,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 22:26:13,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 22:26:14,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-20 22:26:28,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 22:26:28,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 22:26:33,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 22:26:33,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 22:27:09,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-20 22:27:53,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 22:27:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 22:27:54,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-20 22:28:48,STOP_ANOMALY,Orchestrator,System,cpu-stress,1,training +2026-03-20 22:28:48,EXPERIMENT_CHAOS_END,Orchestrator,System,cpu-stress,1,training +2026-03-20 22:28:53,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 22:29:43,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 22:29:43,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 22:29:57,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 22:29:57,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 22:30:28,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 22:30:28,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 22:30:35,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 22:30:35,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 22:31:35,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 22:31:35,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 22:32:35,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 22:33:25,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 22:33:25,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 22:33:39,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 22:33:39,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 22:34:05,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 22:34:05,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 22:34:15,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 22:34:15,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 22:35:20,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 22:35:20,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 22:36:20,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 22:37:10,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 22:37:10,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 22:37:19,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 22:37:19,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 22:37:44,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 22:37:44,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 22:37:54,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 22:37:54,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 22:38:48,EXPERIMENT_CHAOS_START,Orchestrator,System,io-stress,1,training +2026-03-20 22:38:48,START_ANOMALY,Orchestrator,System,io-stress,1,training +2026-03-20 22:38:48,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-20 22:39:23,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-20 22:39:40,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 22:39:40,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 22:40:31,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-20 22:40:40,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 22:41:06,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-20 22:42:06,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-20 22:42:41,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-20 22:43:02,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 22:43:02,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 22:43:16,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 22:43:16,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 22:43:44,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-20 22:44:19,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-20 22:45:01,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 22:45:01,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 22:45:06,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 22:45:06,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 22:45:17,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 22:45:17,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 22:45:19,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-20 22:45:54,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-20 22:46:17,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 22:46:54,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-20 22:47:29,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-20 22:47:42,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 22:47:42,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 22:47:56,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 22:47:56,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 22:48:26,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 22:48:26,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 22:48:29,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-20 22:48:48,STOP_ANOMALY,Orchestrator,System,io-stress,1,training +2026-03-20 22:48:48,RECOVERY_RESTART,Orchestrator,System,io-stress,0,training +2026-03-20 22:48:56,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 22:48:56,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 22:49:01,EXPERIMENT_CHAOS_END,Orchestrator,System,io-stress,1,training +2026-03-20 22:49:56,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 22:49:56,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 22:50:56,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 22:51:47,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 22:51:47,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 22:51:56,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 22:51:56,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 22:52:26,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 22:52:26,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 22:52:31,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 22:52:31,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 22:53:41,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 22:53:41,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 22:54:41,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 22:55:32,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 22:55:32,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 22:55:41,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 22:55:41,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 22:57:33,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 22:57:33,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 22:57:38,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 22:57:38,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 22:57:43,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 22:57:43,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 22:58:43,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 22:59:01,EXPERIMENT_CHAOS_START,Orchestrator,System,mem-stress,1,training +2026-03-20 22:59:01,START_ANOMALY,Orchestrator,System,mem-stress,1,training +2026-03-20 22:59:01,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-20 22:59:31,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-20 22:59:34,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 22:59:34,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 22:59:43,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 22:59:43,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 23:00:13,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 23:00:13,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 23:00:23,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 23:00:23,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 23:00:32,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-20 23:01:02,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-20 23:01:29,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 23:01:29,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 23:02:02,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-20 23:02:29,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 23:02:32,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-20 23:02:45,MFT_SERVICE_RESTART,192.168.122.97,transfer-job-manager,N/A,0,training +2026-03-20 23:03:32,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-20 23:03:44,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 23:03:44,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 23:04:02,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-20 23:04:08,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 23:04:08,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 23:04:43,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 23:04:43,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 23:04:48,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 23:04:48,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 23:05:02,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-20 23:05:32,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-20 23:05:44,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 23:05:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 23:06:32,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-20 23:06:44,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 23:07:02,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-20 23:07:34,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 23:07:34,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 23:07:43,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 23:07:43,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 23:08:02,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-20 23:08:15,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 23:08:15,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 23:08:20,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 23:08:20,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 23:08:32,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-20 23:09:01,STOP_ANOMALY,Orchestrator,System,mem-stress,1,training +2026-03-20 23:09:01,RECOVERY_RESTART,Orchestrator,System,mem-stress,0,training +2026-03-20 23:09:15,EXPERIMENT_CHAOS_END,Orchestrator,System,mem-stress,1,training +2026-03-20 23:09:30,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 23:09:30,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 23:10:30,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 23:11:20,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 23:11:20,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 23:11:34,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 23:11:34,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 23:13:20,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 23:13:20,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 23:13:26,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 23:13:26,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 23:13:36,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 23:13:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 23:14:36,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 23:15:26,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 23:15:26,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 23:15:40,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 23:15:40,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 23:17:01,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 23:17:01,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 23:17:07,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 23:17:07,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 23:17:22,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 23:17:22,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 23:18:22,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 23:19:12,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 23:19:12,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 23:19:15,EXPERIMENT_END,ALL,ALL,EXPERIMENT,0,training diff --git a/evaluation/data/gt_validation_run2.csv b/evaluation/data/gt_validation_run2.csv new file mode 100644 index 0000000..f0aa741 --- /dev/null +++ b/evaluation/data/gt_validation_run2.csv @@ -0,0 +1,796 @@ +timestamp,action,source,target,workload_type,is_anomaly,scenario_mode +2026-03-20 23:36:19,EXPERIMENT_BASELINE_START,ALL,ALL,EXPERIMENT,0,training +2026-03-20 23:36:49,SCENARIO_START,ALL,ALL,START,0,training +2026-03-20 23:36:49,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 23:37:40,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 23:37:40,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 23:37:54,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 23:37:54,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 23:39:19,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 23:39:19,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 23:39:29,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 23:39:29,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 23:39:39,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 23:39:39,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 23:40:39,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 23:41:30,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 23:41:30,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 23:41:44,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 23:41:44,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 23:42:14,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 23:42:14,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 23:42:21,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 23:42:21,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 23:43:21,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 23:43:21,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 23:44:21,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 23:45:12,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 23:45:12,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 23:45:21,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 23:45:21,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 23:45:41,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 23:45:41,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 23:45:51,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 23:45:51,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 23:47:06,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 23:47:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 23:48:06,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 23:48:56,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 23:48:56,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 23:49:10,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 23:49:10,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 23:49:36,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 23:49:36,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 23:49:41,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 23:49:41,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 23:50:51,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 23:50:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 23:51:51,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 23:52:41,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 23:52:41,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 23:52:50,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 23:52:50,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 23:53:08,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 23:53:08,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 23:53:13,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 23:53:13,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 23:54:34,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 23:54:34,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 23:55:34,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 23:56:20,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-20 23:56:20,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 23:56:34,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-20 23:56:34,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 23:56:59,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-20 23:56:59,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 23:57:05,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-20 23:57:05,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 23:58:15,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-20 23:58:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-20 23:59:15,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 00:00:05,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 00:00:05,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 00:00:22,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 00:00:22,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 00:02:07,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 00:02:07,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 00:02:17,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 00:02:17,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 00:02:22,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 00:02:22,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 00:03:22,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 00:04:13,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 00:04:13,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 00:04:22,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 00:04:22,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 00:04:44,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 00:04:44,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 00:04:49,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 00:04:49,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 00:06:06,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 00:06:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 00:07:06,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 00:07:57,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 00:07:57,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 00:08:11,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 00:08:11,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 00:09:56,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 00:09:56,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 00:10:01,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 00:10:01,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 00:10:06,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 00:10:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 00:11:06,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 00:11:57,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 00:11:57,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 00:12:11,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 00:12:11,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 00:13:56,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 00:13:56,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 00:14:06,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 00:14:06,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 00:14:16,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 00:14:16,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 00:15:16,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 00:16:07,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 00:16:07,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 00:16:21,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 00:16:21,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 00:16:36,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 00:16:36,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 00:16:46,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 00:16:46,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 00:18:01,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 00:18:01,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 00:19:01,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 00:19:51,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 00:19:51,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 00:20:05,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 00:20:05,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 00:20:31,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 00:20:31,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 00:20:36,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 00:20:36,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 00:21:36,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 00:21:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 00:22:36,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 00:23:26,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 00:23:26,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 00:23:40,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 00:23:40,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 00:24:00,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 00:24:00,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 00:24:05,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 00:24:05,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 00:25:20,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 00:25:20,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 00:26:20,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 00:27:11,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 00:27:11,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 00:27:25,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 00:27:25,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 00:29:15,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 00:29:15,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 00:29:20,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 00:29:20,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 00:29:30,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 00:29:30,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 00:30:30,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 00:31:21,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 00:31:21,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 00:31:35,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 00:31:35,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 00:31:55,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 00:31:55,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 00:32:00,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 00:32:00,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 00:33:15,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 00:33:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 00:34:15,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 00:35:06,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 00:35:06,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 00:35:20,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 00:35:20,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 00:36:55,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 00:36:55,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 00:37:00,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 00:37:00,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 00:37:10,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 00:37:10,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 00:38:10,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 00:39:00,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 00:39:00,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 00:39:14,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 00:39:14,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 00:41:00,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 00:41:00,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 00:41:10,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 00:41:10,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 00:41:15,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 00:41:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 00:42:15,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 00:43:05,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 00:43:05,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 00:43:19,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 00:43:19,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 00:43:39,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 00:43:39,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 00:43:50,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 00:43:50,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 00:44:55,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 00:44:55,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 00:45:55,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 00:46:45,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 00:46:45,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 00:46:54,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 00:46:54,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 00:47:36,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 00:47:36,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 00:47:42,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 00:47:42,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 00:48:37,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 00:48:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 00:49:37,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 00:50:27,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 00:50:27,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 00:50:40,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 00:50:40,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 00:50:55,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 00:50:55,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 00:51:00,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 00:51:00,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 00:52:20,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 00:52:20,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 00:53:20,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 00:54:10,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 00:54:10,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 00:54:19,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 00:54:19,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 00:54:45,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 00:54:45,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 00:54:55,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 00:54:55,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 00:56:05,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 00:56:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 00:57:05,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 00:57:55,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 00:57:55,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 00:58:09,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 00:58:09,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 00:59:04,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 00:59:04,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 00:59:15,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 00:59:15,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 00:59:45,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 00:59:45,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 01:00:45,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 01:01:35,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 01:01:35,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 01:01:44,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 01:01:44,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 01:02:00,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 01:02:00,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 01:02:11,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 01:02:11,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 01:03:26,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 01:03:26,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 01:04:26,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 01:05:16,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 01:05:16,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 01:05:30,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 01:05:30,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 01:05:50,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 01:05:50,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 01:06:00,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 01:06:00,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 01:06:19,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 01:06:19,EXPERIMENT_BASELINE_END,ALL,ALL,EXPERIMENT,0,training +2026-03-21 01:06:29,EXPERIMENT_CHAOS_START,Orchestrator,System,slow-connection,1,training +2026-03-21 01:06:29,START_ANOMALY,Orchestrator,System,slow-connection,1,training +2026-03-21 01:06:59,SCENARIO_START,ALL,ALL,START,0,training +2026-03-21 01:06:59,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 01:11:59,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 01:11:59,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 01:13:38,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 01:13:38,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 01:16:29,STOP_ANOMALY,Orchestrator,System,slow-connection,1,training +2026-03-21 01:16:29,EXPERIMENT_CHAOS_END,Orchestrator,System,slow-connection,1,training +2026-03-21 01:16:41,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 01:16:41,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 01:16:58,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 01:16:58,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 01:17:08,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 01:17:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 01:18:08,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 01:18:58,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 01:18:58,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 01:19:10,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 01:19:10,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 01:20:35,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 01:20:35,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 01:20:41,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 01:20:41,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 01:20:51,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 01:20:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 01:21:51,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 01:22:41,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 01:22:41,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 01:22:54,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 01:22:54,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 01:23:10,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 01:23:10,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 01:23:20,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 01:23:20,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 01:24:35,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 01:24:35,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 01:25:35,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 01:26:29,EXPERIMENT_CHAOS_START,Orchestrator,System,high-latency,1,training +2026-03-21 01:26:29,START_ANOMALY,Orchestrator,System,high-latency,1,training +2026-03-21 01:26:30,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 01:26:30,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 01:29:06,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 01:29:06,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 01:32:10,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 01:32:10,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 01:33:33,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 01:33:33,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 01:34:27,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 01:34:27,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 01:35:27,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 01:36:29,STOP_ANOMALY,Orchestrator,System,high-latency,1,training +2026-03-21 01:36:29,EXPERIMENT_CHAOS_END,Orchestrator,System,high-latency,1,training +2026-03-21 01:37:10,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 01:37:10,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 01:37:24,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 01:37:24,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 01:39:11,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 01:39:11,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 01:39:17,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 01:39:17,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 01:39:22,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 01:39:22,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 01:40:22,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 01:41:07,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 01:41:07,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 01:41:23,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 01:41:23,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 01:43:10,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 01:43:10,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 01:43:21,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 01:43:21,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 01:43:31,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 01:43:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 01:44:31,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 01:45:21,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 01:45:21,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 01:45:35,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 01:45:35,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 01:46:29,EXPERIMENT_CHAOS_START,Orchestrator,System,packet-loss,1,training +2026-03-21 01:46:29,START_ANOMALY,Orchestrator,System,packet-loss,1,training +2026-03-21 01:47:20,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 01:47:20,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 01:47:25,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 01:47:25,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 01:47:31,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 01:47:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 01:48:31,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 01:49:21,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 01:49:21,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 01:49:31,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 01:49:31,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 01:50:46,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 01:50:46,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 01:50:53,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 01:50:53,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 01:51:13,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 01:51:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 01:52:13,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 01:53:03,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 01:53:03,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 01:53:17,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 01:53:17,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 01:54:43,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 01:54:43,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 01:54:48,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 01:54:48,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 01:54:58,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 01:54:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 01:55:58,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 01:56:29,STOP_ANOMALY,Orchestrator,System,packet-loss,1,training +2026-03-21 01:56:29,EXPERIMENT_CHAOS_END,Orchestrator,System,packet-loss,1,training +2026-03-21 01:56:48,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 01:56:48,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 01:57:02,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 01:57:02,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 01:57:18,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 01:57:18,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 01:57:30,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 01:57:30,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 01:58:40,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 01:58:40,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 01:59:40,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 02:00:31,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 02:00:31,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 02:00:45,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 02:00:45,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 02:01:10,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 02:01:10,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 02:01:15,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 02:01:15,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 02:02:25,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 02:02:25,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 02:03:25,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 02:04:16,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 02:04:16,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 02:04:30,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 02:04:30,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 02:05:40,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 02:05:40,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 02:05:45,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 02:05:45,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 02:06:00,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 02:06:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 02:06:29,EXPERIMENT_CHAOS_START,Orchestrator,System,congestion,1,training +2026-03-21 02:06:29,START_ANOMALY,Orchestrator,System,congestion,1,training +2026-03-21 02:07:00,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 02:12:01,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 02:12:01,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 02:12:21,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 02:12:21,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 02:16:29,STOP_ANOMALY,Orchestrator,System,congestion,1,training +2026-03-21 02:16:29,EXPERIMENT_CHAOS_END,Orchestrator,System,congestion,1,training +2026-03-21 02:16:32,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 02:16:32,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 02:16:53,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 02:16:53,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 02:17:01,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 02:17:01,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 02:18:01,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 02:18:51,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 02:18:51,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 02:19:05,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 02:19:05,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 02:19:25,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 02:19:25,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 02:19:30,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 02:19:30,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 02:20:46,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 02:20:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 02:21:46,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 02:22:36,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 02:22:36,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 02:22:50,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 02:22:50,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 02:23:15,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 02:23:15,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 02:23:20,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 02:23:20,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 02:24:31,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 02:24:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 02:25:31,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 02:26:21,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 02:26:21,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 02:26:29,EXPERIMENT_CHAOS_START,Orchestrator,System,partial-outage,1,training +2026-03-21 02:26:30,START_ANOMALY,Orchestrator,System,partial-outage,1,training +2026-03-21 02:26:30,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 02:26:30,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 02:26:52,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 02:26:52,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 02:27:02,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 02:27:02,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 02:28:17,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 02:28:17,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 02:29:18,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 02:30:08,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 02:30:08,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 02:30:22,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 02:30:22,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 02:30:42,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 02:30:42,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 02:30:52,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 02:30:52,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 02:32:02,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 02:32:02,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 02:33:02,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 02:33:53,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 02:33:53,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 02:34:07,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 02:34:07,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 02:35:47,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 02:35:47,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 02:35:57,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 02:35:57,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 02:36:02,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 02:36:02,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 02:36:30,STOP_ANOMALY,Orchestrator,System,partial-outage,1,training +2026-03-21 02:36:30,EXPERIMENT_CHAOS_END,Orchestrator,System,partial-outage,1,training +2026-03-21 02:37:02,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 02:37:52,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 02:37:52,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 02:38:02,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 02:38:02,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 02:38:27,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 02:38:27,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 02:38:32,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 02:38:32,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 02:39:52,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 02:39:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 02:40:52,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 02:41:42,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 02:41:42,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 02:41:51,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 02:41:51,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 02:42:27,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 02:42:27,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 02:42:37,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 02:42:37,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 02:43:42,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 02:43:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 02:44:42,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 02:45:32,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 02:45:32,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 02:45:46,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 02:45:46,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 02:46:30,EXPERIMENT_CHAOS_START,Orchestrator,System,flapping,1,training +2026-03-21 02:46:30,START_ANOMALY,Orchestrator,System,flapping,1,training +2026-03-21 02:47:00,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 02:47:30,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 02:47:56,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 02:47:56,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 02:48:00,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 02:48:30,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 02:48:57,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 02:48:57,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 02:49:00,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 02:49:30,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 02:49:47,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 02:49:47,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 02:50:00,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 02:50:30,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 02:50:48,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 02:51:00,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 02:51:30,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 02:52:00,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 02:52:30,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 02:53:00,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 02:53:30,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 02:54:00,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 02:54:30,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 02:54:53,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 02:54:53,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 02:55:00,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 02:55:30,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 02:55:47,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 02:55:47,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 02:56:00,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 02:56:30,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 02:56:30,STOP_ANOMALY,Orchestrator,System,flapping,1,training +2026-03-21 02:56:30,EXPERIMENT_CHAOS_END,Orchestrator,System,flapping,1,training +2026-03-21 02:57:22,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 02:57:22,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 02:57:27,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 02:57:27,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 02:57:37,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 02:57:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 02:58:37,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 02:59:28,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 02:59:28,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 02:59:41,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 02:59:41,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 03:01:27,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 03:01:27,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 03:01:37,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 03:01:37,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 03:01:43,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 03:01:43,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 03:02:43,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 03:03:34,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 03:03:34,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 03:03:43,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 03:03:43,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 03:04:08,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 03:04:08,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 03:04:18,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 03:04:18,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 03:05:28,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 03:05:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 03:06:28,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 03:06:30,EXPERIMENT_CHAOS_START,Orchestrator,System,cpu-stress,1,training +2026-03-21 03:06:30,START_ANOMALY,Orchestrator,System,cpu-stress,1,training +2026-03-21 03:06:30,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-21 03:07:15,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-21 03:07:18,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 03:07:18,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 03:07:32,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 03:07:32,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 03:08:10,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-21 03:08:55,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-21 03:09:17,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 03:09:17,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 03:09:23,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 03:09:23,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 03:09:28,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 03:09:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 03:09:50,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-21 03:10:28,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 03:10:35,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-21 03:11:18,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 03:11:18,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 03:11:27,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 03:11:27,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 03:11:30,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-21 03:12:15,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-21 03:13:07,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 03:13:07,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 03:13:10,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-21 03:13:17,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 03:13:17,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 03:13:23,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 03:13:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 03:13:55,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-21 03:14:23,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 03:14:50,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-21 03:15:13,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 03:15:13,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 03:15:29,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 03:15:29,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 03:15:35,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-21 03:15:54,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 03:15:54,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 03:16:01,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 03:16:01,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 03:16:30,STOP_ANOMALY,Orchestrator,System,cpu-stress,1,training +2026-03-21 03:16:30,EXPERIMENT_CHAOS_END,Orchestrator,System,cpu-stress,1,training +2026-03-21 03:17:11,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 03:17:11,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 03:18:11,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 03:19:01,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 03:19:01,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 03:19:15,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 03:19:15,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 03:19:35,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 03:19:35,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 03:19:46,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 03:19:46,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 03:20:56,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 03:20:56,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 03:21:56,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 03:22:46,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 03:22:46,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 03:22:59,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 03:22:59,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 03:24:12,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 03:24:12,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 03:24:22,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 03:24:22,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 03:24:42,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 03:24:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 03:25:42,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 03:26:30,EXPERIMENT_CHAOS_START,Orchestrator,System,io-stress,1,training +2026-03-21 03:26:30,START_ANOMALY,Orchestrator,System,io-stress,1,training +2026-03-21 03:26:30,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-21 03:26:42,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 03:26:42,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 03:27:05,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-21 03:27:28,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 03:27:28,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 03:27:58,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 03:27:58,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 03:28:06,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-21 03:28:08,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 03:28:08,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 03:28:41,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-21 03:29:41,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-21 03:30:16,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-21 03:30:53,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 03:30:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 03:31:16,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-21 03:31:51,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-21 03:31:53,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 03:32:44,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 03:32:44,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 03:32:51,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-21 03:33:26,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-21 03:33:33,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 03:33:33,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 03:34:26,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-21 03:35:01,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-21 03:35:18,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 03:35:18,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 03:35:23,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 03:35:23,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 03:35:44,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 03:35:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 03:36:01,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-21 03:36:30,STOP_ANOMALY,Orchestrator,System,io-stress,1,training +2026-03-21 03:36:30,RECOVERY_RESTART,Orchestrator,System,io-stress,0,training +2026-03-21 03:36:43,EXPERIMENT_CHAOS_END,Orchestrator,System,io-stress,1,training +2026-03-21 03:36:44,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 03:37:34,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 03:37:34,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 03:37:43,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 03:37:43,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 03:38:18,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 03:38:18,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 03:38:28,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 03:38:28,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 03:39:29,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 03:39:29,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 03:40:29,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 03:41:19,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 03:41:19,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 03:41:28,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 03:41:28,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 03:41:58,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 03:41:58,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 03:42:03,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 03:42:03,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 03:43:13,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 03:43:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 03:44:13,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 03:45:03,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 03:45:03,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 03:45:17,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 03:45:17,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 03:46:28,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 03:46:28,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 03:46:40,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 03:46:40,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 03:46:43,EXPERIMENT_CHAOS_START,Orchestrator,System,mem-stress,1,training +2026-03-21 03:46:43,START_ANOMALY,Orchestrator,System,mem-stress,1,training +2026-03-21 03:46:43,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-21 03:46:50,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 03:46:50,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 03:47:13,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-21 03:47:50,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 03:48:13,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-21 03:48:37,MFT_SERVICE_RESTART,192.168.122.97,transfer-job-manager,N/A,0,training +2026-03-21 03:48:43,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-21 03:49:43,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-21 03:50:01,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 03:50:01,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 03:50:13,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-21 03:50:25,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 03:50:25,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 03:50:50,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 03:50:50,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 03:51:00,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 03:51:00,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 03:51:14,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-21 03:51:44,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-21 03:52:06,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 03:52:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 03:52:44,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-21 03:53:06,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 03:53:14,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-21 03:53:26,MFT_SERVICE_RESTART,192.168.122.97,transfer-job-manager,N/A,0,training +2026-03-21 03:54:14,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-21 03:54:21,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 03:54:21,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 03:54:44,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-21 03:54:47,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 03:54:47,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 03:55:03,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 03:55:03,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 03:55:13,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 03:55:13,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 03:55:44,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-21 03:56:14,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-21 03:56:28,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 03:56:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 03:56:43,STOP_ANOMALY,Orchestrator,System,mem-stress,1,training +2026-03-21 03:56:43,RECOVERY_RESTART,Orchestrator,System,mem-stress,0,training +2026-03-21 03:56:56,EXPERIMENT_CHAOS_END,Orchestrator,System,mem-stress,1,training +2026-03-21 03:57:28,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 03:58:18,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 03:58:18,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 03:58:27,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 03:58:27,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 03:58:58,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 03:58:58,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 03:59:08,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 03:59:08,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 04:00:14,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 04:00:14,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 04:01:14,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 04:02:04,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 04:02:04,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 04:02:17,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 04:02:17,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 04:04:03,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 04:04:03,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 04:04:08,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 04:04:08,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 04:04:13,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 04:04:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 04:05:13,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 04:06:03,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 04:06:03,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 04:06:17,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 04:06:17,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 04:06:42,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 04:06:42,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 04:06:47,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 04:06:47,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 04:06:56,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 04:06:56,EXPERIMENT_END,ALL,ALL,EXPERIMENT,0,training diff --git a/evaluation/data/gt_validation_run3.csv b/evaluation/data/gt_validation_run3.csv new file mode 100644 index 0000000..96ab1a0 --- /dev/null +++ b/evaluation/data/gt_validation_run3.csv @@ -0,0 +1,799 @@ +timestamp,action,source,target,workload_type,is_anomaly,scenario_mode +2026-03-21 07:24:16,EXPERIMENT_BASELINE_START,ALL,ALL,EXPERIMENT,0,training +2026-03-21 07:24:46,SCENARIO_START,ALL,ALL,START,0,training +2026-03-21 07:24:46,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 07:25:37,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 07:25:37,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 07:25:51,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 07:25:51,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 07:26:11,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 07:26:11,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 07:26:16,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 07:26:16,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 07:27:32,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 07:27:32,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 07:28:32,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 07:29:22,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 07:29:22,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 07:29:31,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 07:29:31,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 07:31:22,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 07:31:22,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 07:31:28,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 07:31:28,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 07:31:33,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 07:31:33,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 07:32:33,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 07:33:23,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 07:33:23,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 07:33:37,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 07:33:37,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 07:34:47,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 07:34:47,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 07:34:55,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 07:34:55,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 07:35:15,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 07:35:15,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 07:36:15,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 07:37:05,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 07:37:05,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 07:37:19,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 07:37:19,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 07:38:59,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 07:38:59,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 07:39:10,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 07:39:10,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 07:39:20,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 07:39:20,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 07:40:20,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 07:41:10,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 07:41:10,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 07:41:24,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 07:41:24,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 07:43:09,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 07:43:09,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 07:43:15,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 07:43:15,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 07:43:20,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 07:43:20,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 07:44:20,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 07:45:10,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 07:45:10,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 07:45:24,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 07:45:24,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 07:46:54,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 07:46:54,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 07:47:05,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 07:47:05,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 07:47:10,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 07:47:10,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 07:48:10,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 07:49:01,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 07:49:01,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 07:49:12,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 07:49:12,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 07:49:38,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 07:49:38,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 07:49:43,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 07:49:43,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 07:50:58,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 07:50:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 07:51:58,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 07:52:48,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 07:52:48,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 07:53:02,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 07:53:02,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 07:54:47,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 07:54:47,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 07:54:53,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 07:54:53,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 07:54:58,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 07:54:58,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 07:55:58,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 07:56:48,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 07:56:48,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 07:56:57,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 07:56:57,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 07:58:44,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 07:58:44,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 07:58:50,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 07:58:50,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 07:59:00,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 07:59:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 08:00:00,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 08:00:50,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 08:00:50,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 08:00:59,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 08:00:59,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 08:01:30,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 08:01:30,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 08:01:35,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 08:01:35,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 08:02:45,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 08:02:45,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 08:03:45,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 08:04:35,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 08:04:35,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 08:04:44,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 08:04:44,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 08:06:32,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 08:06:32,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 08:06:37,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 08:06:37,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 08:06:43,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 08:06:43,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 08:07:43,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 08:08:28,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 08:08:28,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 08:08:40,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 08:08:40,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 08:08:56,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 08:08:56,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 08:09:02,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 08:09:02,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 08:10:23,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 08:10:23,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 08:11:23,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 08:12:13,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 08:12:13,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 08:12:27,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 08:12:27,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 08:14:07,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 08:14:07,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 08:14:12,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 08:14:12,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 08:14:18,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 08:14:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 08:15:18,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 08:16:08,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 08:16:08,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 08:16:22,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 08:16:22,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 08:17:52,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 08:17:52,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 08:18:02,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 08:18:02,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 08:18:08,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 08:18:08,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 08:19:08,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 08:19:58,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 08:19:58,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 08:20:12,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 08:20:12,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 08:20:37,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 08:20:37,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 08:20:42,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 08:20:42,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 08:21:53,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 08:21:53,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 08:22:53,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 08:23:43,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 08:23:43,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 08:23:52,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 08:23:52,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 08:25:42,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 08:25:42,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 08:25:47,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 08:25:47,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 08:25:57,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 08:25:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 08:26:57,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 08:27:48,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 08:27:48,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 08:27:57,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 08:27:57,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 08:28:22,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 08:28:22,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 08:28:27,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 08:28:27,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 08:29:42,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 08:29:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 08:30:42,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 08:31:32,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 08:31:32,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 08:31:46,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 08:31:46,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 08:32:06,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 08:32:06,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 08:32:12,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 08:32:12,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 08:33:24,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 08:33:24,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 08:34:24,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 08:35:09,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 08:35:09,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 08:35:23,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 08:35:23,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 08:35:40,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 08:35:40,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 08:35:50,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 08:35:50,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 08:37:00,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 08:37:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 08:38:00,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 08:38:50,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 08:38:50,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 08:39:04,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 08:39:04,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 08:40:50,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 08:40:50,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 08:40:55,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 08:40:55,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 08:41:00,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 08:41:00,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 08:42:00,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 08:42:50,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 08:42:50,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 08:43:04,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 08:43:04,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 08:43:50,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 08:43:50,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 08:43:55,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 08:43:55,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 08:44:45,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 08:44:45,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 08:45:45,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 08:46:36,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 08:46:36,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 08:46:50,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 08:46:50,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 08:47:10,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 08:47:10,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 08:47:15,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 08:47:15,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 08:48:30,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 08:48:30,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 08:49:30,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 08:50:20,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 08:50:20,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 08:50:34,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 08:50:34,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 08:51:04,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 08:51:04,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 08:51:09,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 08:51:09,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 08:52:14,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 08:52:14,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 08:53:14,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 08:54:04,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 08:54:04,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 08:54:16,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 08:54:16,EXPERIMENT_BASELINE_END,ALL,ALL,EXPERIMENT,0,training +2026-03-21 08:54:26,EXPERIMENT_CHAOS_START,Orchestrator,System,slow-connection,1,training +2026-03-21 08:54:26,START_ANOMALY,Orchestrator,System,slow-connection,1,training +2026-03-21 08:54:56,SCENARIO_START,ALL,ALL,START,0,training +2026-03-21 08:54:56,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 08:59:56,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 08:59:56,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 09:01:35,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 09:01:35,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 09:04:26,STOP_ANOMALY,Orchestrator,System,slow-connection,1,training +2026-03-21 09:04:26,EXPERIMENT_CHAOS_END,Orchestrator,System,slow-connection,1,training +2026-03-21 09:04:36,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 09:04:36,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 09:04:56,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 09:04:56,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 09:05:01,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 09:05:01,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 09:06:01,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 09:06:51,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 09:06:51,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 09:07:00,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 09:07:00,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 09:08:50,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 09:08:50,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 09:08:56,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 09:08:56,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 09:09:01,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 09:09:01,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 09:10:01,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 09:10:51,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 09:10:51,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 09:11:05,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 09:11:05,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 09:11:26,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 09:11:26,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 09:11:36,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 09:11:36,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 09:12:42,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 09:12:42,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 09:13:42,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 09:14:26,EXPERIMENT_CHAOS_START,Orchestrator,System,high-latency,1,training +2026-03-21 09:14:26,START_ANOMALY,Orchestrator,System,high-latency,1,training +2026-03-21 09:14:37,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 09:14:37,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 09:17:28,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 09:17:28,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 09:20:21,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 09:20:21,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 09:21:40,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 09:21:40,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 09:22:28,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 09:22:28,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 09:23:29,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 09:24:26,STOP_ANOMALY,Orchestrator,System,high-latency,1,training +2026-03-21 09:24:26,EXPERIMENT_CHAOS_END,Orchestrator,System,high-latency,1,training +2026-03-21 09:25:07,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 09:25:07,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 09:25:16,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 09:25:16,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 09:25:51,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 09:25:51,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 09:26:01,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 09:26:01,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 09:27:06,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 09:27:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 09:28:06,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 09:28:57,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 09:28:57,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 09:29:06,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 09:29:06,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 09:29:36,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 09:29:36,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 09:29:46,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 09:29:46,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 09:30:51,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 09:30:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 09:31:51,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 09:32:41,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 09:32:41,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 09:32:55,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 09:32:55,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 09:33:21,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 09:33:21,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 09:33:31,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 09:33:31,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 09:34:26,EXPERIMENT_CHAOS_START,Orchestrator,System,packet-loss,1,training +2026-03-21 09:34:26,START_ANOMALY,Orchestrator,System,packet-loss,1,training +2026-03-21 09:34:36,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 09:34:36,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 09:35:36,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 09:36:26,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 09:36:26,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 09:36:41,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 09:36:41,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 09:37:01,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 09:37:01,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 09:37:11,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 09:37:11,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 09:38:16,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 09:38:16,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 09:39:16,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 09:40:07,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 09:40:07,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 09:40:16,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 09:40:16,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 09:40:31,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 09:40:31,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 09:40:41,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 09:40:41,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 09:41:57,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 09:41:57,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 09:42:57,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 09:43:47,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 09:43:47,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 09:44:01,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 09:44:01,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 09:44:26,STOP_ANOMALY,Orchestrator,System,packet-loss,1,training +2026-03-21 09:44:26,EXPERIMENT_CHAOS_END,Orchestrator,System,packet-loss,1,training +2026-03-21 09:45:41,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 09:45:41,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 09:45:46,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 09:45:46,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 09:45:51,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 09:45:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 09:46:52,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 09:47:37,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 09:47:37,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 09:47:46,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 09:47:46,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 09:49:33,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 09:49:33,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 09:49:38,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 09:49:38,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 09:49:44,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 09:49:44,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 09:50:44,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 09:51:34,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 09:51:34,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 09:51:48,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 09:51:48,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 09:52:48,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 09:52:48,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 09:52:54,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 09:52:54,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 09:53:29,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 09:53:29,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 09:54:26,EXPERIMENT_CHAOS_START,Orchestrator,System,congestion,1,training +2026-03-21 09:54:26,START_ANOMALY,Orchestrator,System,congestion,1,training +2026-03-21 09:54:29,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 09:59:30,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 09:59:30,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 09:59:49,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 09:59:49,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 10:04:00,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 10:04:00,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 10:04:11,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 10:04:11,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 10:04:27,STOP_ANOMALY,Orchestrator,System,congestion,1,training +2026-03-21 10:04:27,EXPERIMENT_CHAOS_END,Orchestrator,System,congestion,1,training +2026-03-21 10:04:32,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 10:04:32,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 10:05:32,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 10:06:22,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 10:06:22,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 10:06:31,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 10:06:31,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 10:06:58,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 10:06:58,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 10:07:11,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 10:07:11,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 10:08:16,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 10:08:16,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 10:09:16,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 10:10:06,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 10:10:06,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 10:10:20,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 10:10:20,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 10:11:21,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 10:11:21,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 10:11:31,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 10:11:31,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 10:12:01,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 10:12:01,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 10:13:01,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 10:13:51,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 10:13:51,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 10:14:05,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 10:14:05,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 10:14:27,EXPERIMENT_CHAOS_START,Orchestrator,System,partial-outage,1,training +2026-03-21 10:14:27,START_ANOMALY,Orchestrator,System,partial-outage,1,training +2026-03-21 10:15:40,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 10:15:40,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 10:15:46,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 10:15:46,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 10:15:51,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 10:15:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 10:16:51,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 10:17:41,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 10:17:41,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 10:17:50,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 10:17:50,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 10:18:08,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 10:18:08,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 10:18:18,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 10:18:18,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 10:19:35,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 10:19:35,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 10:20:35,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 10:21:25,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 10:21:25,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 10:21:39,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 10:21:39,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 10:22:25,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 10:22:25,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 10:22:35,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 10:22:35,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 10:23:20,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 10:23:20,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 10:24:20,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 10:24:27,STOP_ANOMALY,Orchestrator,System,partial-outage,1,training +2026-03-21 10:24:27,EXPERIMENT_CHAOS_END,Orchestrator,System,partial-outage,1,training +2026-03-21 10:25:10,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 10:25:10,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 10:25:24,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 10:25:24,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 10:27:10,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 10:27:10,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 10:27:20,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 10:27:20,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 10:27:25,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 10:27:25,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 10:28:25,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 10:29:10,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 10:29:10,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 10:29:26,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 10:29:26,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 10:29:41,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 10:29:41,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 10:29:51,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 10:29:51,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 10:31:06,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 10:31:06,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 10:32:06,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 10:32:57,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 10:32:57,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 10:33:06,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 10:33:06,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 10:33:41,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 10:33:41,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 10:33:46,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 10:33:46,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 10:34:27,EXPERIMENT_CHAOS_START,Orchestrator,System,flapping,1,training +2026-03-21 10:34:27,START_ANOMALY,Orchestrator,System,flapping,1,training +2026-03-21 10:34:51,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 10:34:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 10:34:57,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 10:35:27,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 10:35:51,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 10:35:57,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 10:36:27,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 10:36:57,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 10:37:27,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 10:37:57,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 10:38:27,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 10:38:57,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 10:39:27,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 10:39:57,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 10:40:27,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 10:40:51,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 10:40:51,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 10:40:57,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 10:41:27,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 10:41:57,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 10:42:27,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 10:42:57,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 10:43:27,FLAP_OFF,Orchestrator,System,flapping,1,training +2026-03-21 10:43:40,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 10:43:40,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 10:43:55,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 10:43:55,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 10:43:57,FLAP_ON,Orchestrator,System,flapping,1,training +2026-03-21 10:44:27,STOP_ANOMALY,Orchestrator,System,flapping,1,training +2026-03-21 10:44:27,EXPERIMENT_CHAOS_END,Orchestrator,System,flapping,1,training +2026-03-21 10:46:00,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 10:46:00,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 10:46:05,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 10:46:05,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 10:47:05,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 10:47:56,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 10:47:56,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 10:48:05,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 10:48:05,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 10:48:24,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 10:48:24,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 10:48:34,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 10:48:34,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 10:49:49,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 10:49:49,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 10:50:50,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 10:51:40,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 10:51:40,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 10:51:54,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 10:51:54,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 10:52:19,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 10:52:19,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 10:52:29,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 10:52:29,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 10:53:34,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 10:53:34,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 10:54:27,EXPERIMENT_CHAOS_START,Orchestrator,System,cpu-stress,1,training +2026-03-21 10:54:27,START_ANOMALY,Orchestrator,System,cpu-stress,1,training +2026-03-21 10:54:27,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-21 10:54:34,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 10:55:12,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-21 10:55:25,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 10:55:25,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 10:55:39,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 10:55:39,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 10:56:07,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-21 10:56:39,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 10:56:39,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 10:56:44,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 10:56:44,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 10:56:52,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-21 10:57:19,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 10:57:19,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 10:57:47,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-21 10:58:19,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 10:58:32,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-21 10:59:05,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 10:59:05,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 10:59:19,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 10:59:19,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 10:59:27,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-21 11:00:12,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-21 11:00:34,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 11:00:34,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 11:00:39,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 11:00:39,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 11:00:59,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 11:00:59,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 11:01:07,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-21 11:01:52,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-21 11:01:59,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 11:02:47,PULSE_ON,Orchestrator,System,cpu-stress,1,training +2026-03-21 11:02:49,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 11:02:49,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 11:02:58,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 11:02:58,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 11:03:21,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 11:03:21,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 11:03:26,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 11:03:26,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 11:03:32,PULSE_OFF,Orchestrator,System,cpu-stress,1,training +2026-03-21 11:04:27,STOP_ANOMALY,Orchestrator,System,cpu-stress,1,training +2026-03-21 11:04:27,EXPERIMENT_CHAOS_END,Orchestrator,System,cpu-stress,1,training +2026-03-21 11:04:46,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 11:04:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 11:05:46,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 11:06:31,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 11:06:31,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 11:06:45,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 11:06:45,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 11:07:51,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 11:07:51,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 11:08:01,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 11:08:01,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 11:08:26,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 11:08:26,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 11:09:26,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 11:10:16,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 11:10:16,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 11:10:27,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 11:10:27,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 11:10:47,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 11:10:47,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 11:10:58,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 11:10:58,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 11:12:13,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 11:12:13,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 11:13:13,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 11:13:58,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 11:13:58,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 11:14:12,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 11:14:12,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 11:14:27,EXPERIMENT_CHAOS_START,Orchestrator,System,io-stress,1,training +2026-03-21 11:14:27,START_ANOMALY,Orchestrator,System,io-stress,1,training +2026-03-21 11:14:27,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-21 11:15:02,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-21 11:15:12,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 11:15:12,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 11:15:23,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 11:15:23,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 11:16:02,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-21 11:16:37,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-21 11:16:48,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 11:16:48,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 11:17:37,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-21 11:17:48,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 11:18:12,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-21 11:19:06,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 11:19:06,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 11:19:12,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-21 11:19:47,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-21 11:19:55,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 11:19:55,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 11:20:36,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 11:20:36,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 11:20:41,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 11:20:41,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 11:20:50,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-21 11:21:25,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-21 11:21:46,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 11:21:46,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 11:22:25,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-21 11:22:46,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 11:23:00,PULSE_OFF,Orchestrator,System,io-stress,1,training +2026-03-21 11:23:55,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 11:23:55,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 11:24:00,PULSE_ON,Orchestrator,System,io-stress,1,training +2026-03-21 11:24:27,STOP_ANOMALY,Orchestrator,System,io-stress,1,training +2026-03-21 11:24:27,RECOVERY_RESTART,Orchestrator,System,io-stress,0,training +2026-03-21 11:24:40,EXPERIMENT_CHAOS_END,Orchestrator,System,io-stress,1,training +2026-03-21 11:24:44,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 11:24:44,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 11:25:09,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 11:25:09,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 11:25:19,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 11:25:19,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 11:26:09,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 11:26:09,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 11:27:09,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 11:27:59,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 11:27:59,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 11:28:13,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 11:28:13,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 11:29:24,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 11:29:24,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 11:29:31,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 11:29:31,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 11:29:51,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 11:29:51,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 11:30:51,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 11:31:36,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 11:31:36,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 11:31:50,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 11:31:50,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 11:32:16,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 11:32:16,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 11:32:26,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 11:32:26,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 11:33:31,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 11:33:31,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 11:34:31,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 11:34:40,EXPERIMENT_CHAOS_START,Orchestrator,System,mem-stress,1,training +2026-03-21 11:34:40,START_ANOMALY,Orchestrator,System,mem-stress,1,training +2026-03-21 11:34:40,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-21 11:35:10,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-21 11:35:21,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 11:35:21,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 11:35:35,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 11:35:35,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 11:36:11,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-21 11:36:41,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-21 11:37:01,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 11:37:01,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 11:37:11,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 11:37:11,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 11:37:16,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 11:37:16,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 11:37:41,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-21 11:38:11,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-21 11:38:16,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 11:39:06,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 11:39:06,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 11:39:11,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-21 11:39:20,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 11:39:20,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 11:39:36,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 11:39:36,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 11:39:41,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-21 11:39:41,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 11:39:41,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 11:40:41,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-21 11:41:02,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 11:41:02,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 11:41:11,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-21 11:42:02,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 11:42:11,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-21 11:42:36,MFT_SERVICE_RESTART,192.168.122.97,transfer-job-manager,N/A,0,training +2026-03-21 11:42:41,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-21 11:42:57,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 11:42:57,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 11:43:06,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 11:43:06,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 11:43:26,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 11:43:26,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 11:43:36,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 11:43:36,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 11:43:41,PULSE_ON,Orchestrator,System,mem-stress,1,training +2026-03-21 11:44:11,PULSE_OFF,Orchestrator,System,mem-stress,1,training +2026-03-21 11:44:40,STOP_ANOMALY,Orchestrator,System,mem-stress,1,training +2026-03-21 11:44:40,RECOVERY_RESTART,Orchestrator,System,mem-stress,0,training +2026-03-21 11:44:52,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 11:44:52,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 11:44:53,EXPERIMENT_CHAOS_END,Orchestrator,System,mem-stress,1,training +2026-03-21 11:45:52,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 11:46:42,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 11:46:42,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 11:46:56,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 11:46:56,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 11:47:31,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 11:47:31,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 11:47:41,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 11:47:41,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 11:48:37,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 11:48:37,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 11:49:37,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 11:50:27,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 11:50:27,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 11:50:41,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 11:50:41,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 11:51:06,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 11:51:06,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 11:51:11,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 11:51:11,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 11:52:18,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 11:52:18,IDLE,ALL,ALL,IDLE,0,training +2026-03-21 11:53:18,START_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 11:54:08,END_PHASE_BW,192.168.122.97,192.168.122.219,HIGH_BW,0,training +2026-03-21 11:54:08,START_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 11:54:22,END_PHASE_IOPS,192.168.122.97,192.168.122.244,HIGH_IOPS,0,training +2026-03-21 11:54:22,START_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 11:54:43,END_PHASE_INTERFERENCE,192.168.122.219,192.168.122.97,INTERFERENCE,0,training +2026-03-21 11:54:43,START_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 11:54:48,END_PHASE_BATCH_OUT,192.168.122.97,192.168.122.244,BATCH_IOPS_OUT,0,training +2026-03-21 11:54:48,START_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 11:54:53,END_PHASE_BATCH_IN,192.168.122.219,192.168.122.97,BATCH_IOPS_IN,0,training +2026-03-21 11:54:53,EXPERIMENT_END,ALL,ALL,EXPERIMENT,0,training diff --git a/evaluation/data/pipeline_batch-out_run1/anomalies.jsonl b/evaluation/data/pipeline_batch-out_run1/anomalies.jsonl new file mode 100644 index 0000000..f0c786d --- /dev/null +++ b/evaluation/data/pipeline_batch-out_run1/anomalies.jsonl @@ -0,0 +1,541 @@ +{"timestamp":"2026-03-16T10:27:16.039437632Z","score":0.5,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=0.50 RRCF-fast:w=0.20,s=0.50 RRCF-mid:w=0.20,s=0.50 RRCF-slow:w=0.20,s=0.50 COPOD:w=0.20,s=0.50"} +{"timestamp":"2026-03-16T10:27:46.122410215Z","score":1,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=1.00 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-16T10:28:16.030391809Z","score":0.8,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=0.00 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-16T10:28:46.07929734Z","score":0.9999999999999999,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=1.00 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-16T10:29:16.036377796Z","score":0.75,"is_anomaly":false,"confidence":0.7500000000000001,"method":"SEAD","details":"MAD!:w=0.20,s=0.75 RRCF-fast:w=0.20,s=0.75 RRCF-mid:w=0.20,s=0.75 RRCF-slow:w=0.20,s=0.75 COPOD!:w=0.20,s=0.75"} +{"timestamp":"2026-03-16T10:29:46.073296603Z","score":1,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=1.00 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-16T10:30:16.08110558Z","score":0.7669347711355801,"is_anomaly":false,"confidence":0.7669347711355801,"method":"SEAD","details":"MAD!:w=0.20,s=0.83 RRCF-fast:w=0.20,s=0.83 RRCF-mid:w=0.20,s=0.83 RRCF-slow:w=0.20,s=0.83 COPOD!:w=0.20,s=0.50"} +{"timestamp":"2026-03-16T10:30:46.031247201Z","score":0.37020418902611585,"is_anomaly":false,"confidence":0.3702041890261159,"method":"SEAD","details":"MAD!:w=0.20,s=0.00 RRCF-fast:w=0.20,s=0.43 RRCF-mid:w=0.20,s=0.43 RRCF-slow:w=0.20,s=0.43 COPOD!:w=0.20,s=0.57"} +{"timestamp":"2026-03-16T10:31:16.07239444Z","score":0.39993079061220266,"is_anomaly":false,"confidence":0.3999307906122027,"method":"SEAD","details":"MAD!:w=0.20,s=0.38 RRCF-fast:w=0.20,s=0.38 RRCF-mid:w=0.20,s=0.38 RRCF-slow:w=0.20,s=0.38 COPOD!:w=0.20,s=0.50"} +{"timestamp":"2026-03-16T10:31:46.032422149Z","score":0.46402253299514573,"is_anomaly":false,"confidence":0.4640225329951458,"method":"SEAD","details":"MAD!:w=0.20,s=0.00 RRCF-fast:w=0.20,s=0.56 RRCF-mid:w=0.20,s=0.56 RRCF-slow:w=0.20,s=0.56 COPOD!:w=0.20,s=0.67"} +{"timestamp":"2026-03-16T10:32:16.069888899Z","score":0.5999628642548199,"is_anomaly":false,"confidence":0.59996286425482,"method":"SEAD","details":"MAD!:w=0.21,s=0.60 RRCF-fast:w=0.20,s=0.60 RRCF-mid:w=0.20,s=0.50 RRCF-slow:w=0.20,s=0.50 COPOD!:w=0.20,s=0.80"} +{"timestamp":"2026-03-16T10:32:46.036351145Z","score":0.29076541402565714,"is_anomaly":false,"confidence":0.2907654140256572,"method":"SEAD","details":"MAD!:w=0.21,s=0.27 RRCF-fast:w=0.20,s=0.36 RRCF-mid:w=0.20,s=0.27 RRCF-slow:w=0.20,s=0.27 COPOD!:w=0.20,s=0.27"} +{"timestamp":"2026-03-16T10:33:16.075587626Z","score":0.9655702409146416,"is_anomaly":false,"confidence":0.9655702409146417,"method":"SEAD","details":"MAD!:w=0.21,s=0.83 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-16T10:33:46.033222866Z","score":0.7540475883127368,"is_anomaly":false,"confidence":0.7540475883127369,"method":"SEAD","details":"MAD!:w=0.21,s=0.77 RRCF-fast:w=0.20,s=0.77 RRCF-mid:w=0.20,s=0.77 RRCF-slow:w=0.20,s=0.77 COPOD!:w=0.20,s=0.69"} +{"timestamp":"2026-03-16T10:34:16.077157294Z","score":0.9858840476751174,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.21,s=1.00 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=0.93"} +{"timestamp":"2026-03-16T10:34:46.037120635Z","score":0.9070599388383174,"is_anomaly":false,"confidence":0.9200472824135042,"method":"SEAD","details":"MAD!:w=0.21,s=0.93 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=0.60"} +{"timestamp":"2026-03-16T10:35:16.071081111Z","score":0.7365321441097207,"is_anomaly":false,"confidence":0.7470778595582198,"method":"SEAD","details":"MAD!:w=0.21,s=0.62 RRCF-fast:w=0.20,s=0.81 RRCF-mid:w=0.20,s=0.75 RRCF-slow:w=0.20,s=0.69 COPOD!:w=0.20,s=0.81"} +{"timestamp":"2026-03-16T10:35:46.120053569Z","score":0.6109712423143165,"is_anomaly":false,"confidence":0.6197191685524184,"method":"SEAD","details":"MAD!:w=0.21,s=0.53 RRCF-fast:w=0.20,s=0.65 RRCF-mid:w=0.20,s=0.65 RRCF-slow:w=0.20,s=0.65 COPOD!:w=0.20,s=0.59"} +{"timestamp":"2026-03-16T10:36:16.031528808Z","score":0.39808973093789235,"is_anomaly":false,"confidence":0.4037896057621135,"method":"SEAD","details":"MAD!:w=0.21,s=0.22 RRCF-fast:w=0.20,s=0.56 RRCF-mid:w=0.20,s=0.44 RRCF-slow:w=0.20,s=0.44 COPOD!:w=0.20,s=0.33"} +{"timestamp":"2026-03-16T10:36:46.07473985Z","score":0.3662571385530044,"is_anomaly":false,"confidence":0.3715012322358812,"method":"SEAD","details":"MAD!:w=0.21,s=0.16 RRCF-fast:w=0.20,s=0.42 RRCF-mid:w=0.20,s=0.37 RRCF-slow:w=0.20,s=0.42 COPOD!:w=0.20,s=0.47"} +{"timestamp":"2026-03-16T10:37:16.040999003Z","score":0.336735628472049,"is_anomaly":false,"confidence":0.34155703124127934,"method":"SEAD","details":"MAD!:w=0.21,s=0.05 RRCF-fast:w=0.20,s=0.40 RRCF-mid:w=0.20,s=0.30 RRCF-slow:w=0.20,s=0.40 COPOD!:w=0.20,s=0.55"} +{"timestamp":"2026-03-16T10:37:46.079310421Z","score":0.3765991872091453,"is_anomaly":false,"confidence":0.3900277486311195,"method":"SEAD","details":"MAD!:w=0.21,s=0.05 RRCF-fast:w=0.20,s=0.43 RRCF-mid:w=0.20,s=0.48 RRCF-slow:w=0.20,s=0.48 COPOD!:w=0.20,s=0.48"} +{"timestamp":"2026-03-16T10:38:16.0931327Z","score":0.3437695463856707,"is_anomaly":false,"confidence":0.3560274869905199,"method":"SEAD","details":"MAD!:w=0.21,s=0.23 RRCF-fast:w=0.20,s=0.32 RRCF-mid:w=0.20,s=0.45 RRCF-slow:w=0.20,s=0.45 COPOD!:w=0.20,s=0.27"} +{"timestamp":"2026-03-16T10:38:46.083032635Z","score":0.9117251480865722,"is_anomaly":false,"confidence":0.9442349292195829,"method":"SEAD","details":"MAD!:w=0.21,s=0.83 RRCF-fast:w=0.20,s=0.91 RRCF-mid!:w=0.20,s=0.96 RRCF-slow:w=0.20,s=0.91 COPOD!:w=0.20,s=0.96"} +{"timestamp":"2026-03-16T10:39:16.037146219Z","score":0.7258057396102306,"is_anomaly":false,"confidence":0.7516861113311728,"method":"SEAD","details":"MAD!:w=0.21,s=0.79 RRCF-fast:w=0.20,s=0.88 RRCF-mid:w=0.20,s=0.71 RRCF-slow:w=0.20,s=0.71 COPOD!:w=0.20,s=0.54"} +{"timestamp":"2026-03-16T10:39:46.128791097Z","score":0.7275684530123874,"is_anomaly":false,"confidence":0.7535116785736833,"method":"SEAD","details":"MAD!:w=0.21,s=0.68 RRCF-fast:w=0.20,s=0.68 RRCF-mid:w=0.20,s=0.68 RRCF-slow:w=0.20,s=0.68 COPOD!:w=0.20,s=0.92"} +{"timestamp":"2026-03-16T10:40:16.030902945Z","score":0.6158758580422293,"is_anomaly":false,"confidence":0.6378364120448012,"method":"SEAD","details":"MAD!:w=0.21,s=0.65 RRCF-fast:w=0.20,s=0.65 RRCF-mid:w=0.20,s=0.65 RRCF-slow:w=0.20,s=0.65 COPOD!:w=0.20,s=0.46"} +{"timestamp":"2026-03-16T10:40:46.072330419Z","score":0.7447671655565617,"is_anomaly":false,"confidence":0.816876848378699,"method":"SEAD","details":"MAD!:w=0.21,s=0.52 RRCF-fast:w=0.20,s=0.78 RRCF-mid:w=0.20,s=0.74 RRCF-slow:w=0.20,s=0.70 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-16T10:41:16.081874621Z","score":0.5133475257280411,"is_anomaly":false,"confidence":0.5630507470430075,"method":"SEAD","details":"MAD!:w=0.21,s=0.46 RRCF-fast:w=0.20,s=0.57 RRCF-mid:w=0.20,s=0.54 RRCF-slow:w=0.20,s=0.54 COPOD!:w=0.20,s=0.46"} +{"timestamp":"2026-03-16T10:41:46.034769789Z","score":0.3429176853959193,"is_anomaly":false,"confidence":0.37611958616650754,"method":"SEAD","details":"MAD!:w=0.21,s=0.24 RRCF-fast:w=0.19,s=0.41 RRCF-mid:w=0.20,s=0.38 RRCF-slow:w=0.20,s=0.41 COPOD!:w=0.20,s=0.28"} +{"timestamp":"2026-03-16T10:42:16.126546009Z","score":0.4108661459565742,"is_anomaly":false,"confidence":0.4506469376421771,"method":"SEAD","details":"MAD!:w=0.21,s=0.27 RRCF-fast:w=0.19,s=0.40 RRCF-mid:w=0.20,s=0.43 RRCF-slow:w=0.20,s=0.43 COPOD!:w=0.20,s=0.53"} +{"timestamp":"2026-03-16T10:42:46.085265328Z","score":0.45158330767359295,"is_anomaly":false,"confidence":0.49530640744233717,"method":"SEAD","details":"MAD!:w=0.22,s=0.45 RRCF-fast:w=0.19,s=0.48 RRCF-mid:w=0.20,s=0.39 RRCF-slow:w=0.20,s=0.39 COPOD!:w=0.20,s=0.55"} +{"timestamp":"2026-03-16T10:43:16.128502712Z","score":0.3610003048719156,"is_anomaly":false,"confidence":0.3959529970512967,"method":"SEAD","details":"MAD!:w=0.22,s=0.28 RRCF-fast:w=0.19,s=0.38 RRCF-mid:w=0.20,s=0.38 RRCF-slow:w=0.20,s=0.44 COPOD!:w=0.20,s=0.34"} +{"timestamp":"2026-03-16T10:43:46.035344248Z","score":0.28814949520197347,"is_anomaly":false,"confidence":0.3160486422982954,"method":"SEAD","details":"MAD!:w=0.22,s=0.15 RRCF-fast:w=0.19,s=0.36 RRCF-mid:w=0.20,s=0.36 RRCF-slow:w=0.20,s=0.39 COPOD!:w=0.20,s=0.18"} +{"timestamp":"2026-03-16T10:44:16.073845414Z","score":0.714041647506668,"is_anomaly":false,"confidence":0.787204480027141,"method":"SEAD","details":"MAD!:w=0.22,s=0.53 RRCF-fast:w=0.19,s=0.71 RRCF-mid:w=0.20,s=0.79 RRCF-slow:w=0.20,s=0.76 COPOD!:w=0.20,s=0.79"} +{"timestamp":"2026-03-16T10:44:46.077615346Z","score":0.4564840675727231,"is_anomaly":false,"confidence":0.5032567838431358,"method":"SEAD","details":"MAD!:w=0.22,s=0.40 RRCF-fast:w=0.19,s=0.26 RRCF-mid:w=0.20,s=0.49 RRCF-slow:w=0.20,s=0.46 COPOD!:w=0.20,s=0.69"} +{"timestamp":"2026-03-16T10:45:16.077635543Z","score":0.7683118694911475,"is_anomaly":false,"confidence":0.8470353904893361,"method":"SEAD","details":"MAD!:w=0.22,s=0.58 RRCF-fast:w=0.19,s=0.69 RRCF-mid:w=0.20,s=0.86 RRCF-slow:w=0.20,s=0.86 COPOD!:w=0.20,s=0.86"} +{"timestamp":"2026-03-16T10:45:46.035582602Z","score":0.6039602439201519,"is_anomaly":false,"confidence":0.6658438081761731,"method":"SEAD","details":"MAD!:w=0.22,s=0.54 RRCF-fast:w=0.20,s=0.62 RRCF-mid:w=0.20,s=0.65 RRCF-slow:w=0.20,s=0.62 COPOD!:w=0.20,s=0.59"} +{"timestamp":"2026-03-16T10:46:16.078553448Z","score":0.9289818952483487,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.22,s=0.82 RRCF-fast:w=0.20,s=0.84 RRCF-mid!:w=0.20,s=1.00 RRCF-slow!:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-16T10:46:46.036920059Z","score":0.7141936457760949,"is_anomaly":false,"confidence":0.7833431459853504,"method":"SEAD","details":"MAD!:w=0.22,s=0.77 RRCF-fast!:w=0.20,s=0.90 RRCF-mid:w=0.20,s=0.69 RRCF-slow:w=0.20,s=0.72 COPOD!:w=0.20,s=0.49"} +{"timestamp":"2026-03-16T10:47:16.082794623Z","score":0.24478540545676514,"is_anomaly":false,"confidence":0.2684859641861296,"method":"SEAD","details":"MAD!:w=0.22,s=0.03 RRCF-fast:w=0.19,s=0.20 RRCF-mid:w=0.20,s=0.40 RRCF-slow:w=0.20,s=0.40 COPOD!:w=0.20,s=0.23"} +{"timestamp":"2026-03-16T10:47:46.127738137Z","score":0.6826071223595894,"is_anomaly":false,"confidence":0.7525490798698624,"method":"SEAD","details":"MAD!:w=0.22,s=0.51 RRCF-fast:w=0.19,s=0.83 RRCF-mid!:w=0.19,s=1.00 RRCF-slow!:w=0.19,s=1.00 COPOD!:w=0.20,s=0.10"} +{"timestamp":"2026-03-16T10:48:16.082685204Z","score":0.2900161139910426,"is_anomaly":false,"confidence":0.31973202825214586,"method":"SEAD","details":"MAD!:w=0.22,s=0.31 RRCF-fast:w=0.19,s=0.29 RRCF-mid:w=0.19,s=0.38 RRCF-slow:w=0.19,s=0.38 COPOD!:w=0.20,s=0.10"} +{"timestamp":"2026-03-16T10:48:46.132420108Z","score":0.3646750495326918,"is_anomaly":false,"confidence":0.40204074054878397,"method":"SEAD","details":"MAD!:w=0.22,s=0.23 RRCF-fast:w=0.19,s=0.16 RRCF-mid:w=0.19,s=0.42 RRCF-slow:w=0.19,s=0.47 COPOD!:w=0.20,s=0.56"} +{"timestamp":"2026-03-16T10:49:16.084702483Z","score":0.39942069476532294,"is_anomaly":false,"confidence":0.4403465280109999,"method":"SEAD","details":"MAD!:w=0.22,s=0.43 RRCF-fast:w=0.20,s=0.45 RRCF-mid:w=0.19,s=0.50 RRCF-slow:w=0.19,s=0.50 COPOD!:w=0.20,s=0.11"} +{"timestamp":"2026-03-16T10:49:46.075453217Z","score":0.7236496114203839,"is_anomaly":false,"confidence":0.7977969045211838,"method":"SEAD","details":"MAD!:w=0.22,s=0.53 RRCF-fast:w=0.19,s=0.64 RRCF-mid:w=0.19,s=0.80 RRCF-slow:w=0.19,s=0.87 COPOD!:w=0.20,s=0.80"} +{"timestamp":"2026-03-16T10:50:16.088005984Z","score":0.38660525781556504,"is_anomaly":false,"confidence":0.42621798324672466,"method":"SEAD","details":"MAD!:w=0.22,s=0.41 RRCF-fast:w=0.20,s=0.22 RRCF-mid:w=0.19,s=0.52 RRCF-slow:w=0.19,s=0.48 COPOD!:w=0.20,s=0.30"} +{"timestamp":"2026-03-16T10:50:46.082224749Z","score":0.7983886276012012,"is_anomaly":false,"confidence":0.9979857845015014,"method":"SEAD","details":"MAD!:w=0.22,s=0.74 RRCF-fast:w=0.20,s=0.60 RRCF-mid:w=0.19,s=0.87 RRCF-slow:w=0.19,s=0.87 COPOD!:w=0.20,s=0.91"} +{"timestamp":"2026-03-16T10:51:16.037327482Z","score":0.5719760888878682,"is_anomaly":false,"confidence":0.7149701111098352,"method":"SEAD","details":"MAD!:w=0.22,s=0.69 RRCF-fast:w=0.20,s=0.65 RRCF-mid:w=0.19,s=0.67 RRCF-slow:w=0.19,s=0.65 COPOD!:w=0.20,s=0.21"} +{"timestamp":"2026-03-16T10:51:46.074327679Z","score":0.9698446438725136,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.22,s=0.92 RRCF-fast!:w=0.20,s=0.96 RRCF-mid!:w=0.19,s=1.00 RRCF-slow!:w=0.19,s=1.00 COPOD!:w=0.20,s=0.98"} +{"timestamp":"2026-03-16T10:52:16.03764838Z","score":0.83221554132105,"is_anomaly":false,"confidence":0.9174868227417017,"method":"SEAD","details":"MAD!:w=0.22,s=0.88 RRCF-fast!:w=0.20,s=0.94 RRCF-mid:w=0.19,s=0.84 RRCF-slow:w=0.19,s=0.86 COPOD!:w=0.20,s=0.64"} +{"timestamp":"2026-03-16T10:52:46.071786223Z","score":0.8469338501414734,"is_anomaly":false,"confidence":0.9337132132923341,"method":"SEAD","details":"MAD!:w=0.22,s=0.75 RRCF-fast!:w=0.20,s=0.90 RRCF-mid!:w=0.19,s=0.92 RRCF-slow!:w=0.19,s=0.94 COPOD!:w=0.20,s=0.75"} +{"timestamp":"2026-03-16T10:53:16.070579514Z","score":0.6551788341293386,"is_anomaly":false,"confidence":0.7223104075883167,"method":"SEAD","details":"MAD!:w=0.22,s=0.67 RRCF-fast:w=0.20,s=0.67 RRCF-mid:w=0.19,s=0.60 RRCF-slow:w=0.19,s=0.62 COPOD!:w=0.20,s=0.71"} +{"timestamp":"2026-03-16T10:53:46.032975633Z","score":0.40000313015288796,"is_anomaly":false,"confidence":0.44098864146197086,"method":"SEAD","details":"MAD!:w=0.22,s=0.42 RRCF-fast:w=0.20,s=0.11 RRCF-mid:w=0.19,s=0.49 RRCF-slow:w=0.19,s=0.49 COPOD!:w=0.20,s=0.49"} +{"timestamp":"2026-03-16T10:54:16.074138452Z","score":0.4053250749956291,"is_anomaly":false,"confidence":0.4785793777494226,"method":"SEAD","details":"MAD!:w=0.22,s=0.35 RRCF-fast:w=0.20,s=0.26 RRCF-mid:w=0.19,s=0.48 RRCF-slow:w=0.19,s=0.48 COPOD!:w=0.20,s=0.46"} +{"timestamp":"2026-03-16T10:54:46.082168576Z","score":0.40922492422104706,"is_anomaly":false,"confidence":0.48318404578195734,"method":"SEAD","details":"MAD!:w=0.22,s=0.35 RRCF-fast:w=0.20,s=0.40 RRCF-mid:w=0.19,s=0.42 RRCF-slow:w=0.19,s=0.44 COPOD!:w=0.20,s=0.45"} +{"timestamp":"2026-03-16T10:55:16.075273454Z","score":0.49764345959912604,"is_anomaly":false,"confidence":0.5875824416700298,"method":"SEAD","details":"MAD!:w=0.22,s=0.16 RRCF-fast:w=0.20,s=0.45 RRCF-mid:w=0.19,s=0.62 RRCF-slow:w=0.19,s=0.61 COPOD!:w=0.20,s=0.70"} +{"timestamp":"2026-03-16T10:55:46.031984034Z","score":0.40800033074114306,"is_anomaly":false,"confidence":0.4817381318186656,"method":"SEAD","details":"MAD!:w=0.22,s=0.28 RRCF-fast:w=0.20,s=0.42 RRCF-mid:w=0.19,s=0.53 RRCF-slow:w=0.19,s=0.58 COPOD!:w=0.20,s=0.26"} +{"timestamp":"2026-03-16T10:56:16.076536421Z","score":0.9538457361790327,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.22,s=0.93 RRCF-fast!:w=0.20,s=1.00 RRCF-mid!:w=0.19,s=0.98 RRCF-slow!:w=0.19,s=0.98 COPOD!:w=0.20,s=0.88"} +{"timestamp":"2026-03-16T10:56:46.031332976Z","score":0.7569051666062194,"is_anomaly":false,"confidence":0.8344599228752149,"method":"SEAD","details":"MAD!:w=0.22,s=0.88 RRCF-fast:w=0.20,s=0.59 RRCF-mid:w=0.19,s=0.86 RRCF-slow:w=0.19,s=0.86 COPOD!:w=0.20,s=0.58"} +{"timestamp":"2026-03-16T10:57:16.076203478Z","score":0.8082916126732282,"is_anomaly":false,"confidence":0.8911115771559893,"method":"SEAD","details":"MAD!:w=0.22,s=0.82 RRCF-fast:w=0.20,s=0.55 RRCF-mid!:w=0.19,s=0.90 RRCF-slow!:w=0.19,s=0.93 COPOD!:w=0.20,s=0.85"} +{"timestamp":"2026-03-16T10:57:46.029495775Z","score":0.6595405916718504,"is_anomaly":false,"confidence":0.7787392032585302,"method":"SEAD","details":"MAD!:w=0.22,s=0.77 RRCF-fast:w=0.20,s=0.44 RRCF-mid:w=0.19,s=0.77 RRCF-slow:w=0.19,s=0.74 COPOD!:w=0.20,s=0.57"} +{"timestamp":"2026-03-16T10:58:16.081733759Z","score":0.9735175474407876,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.22,s=0.97 RRCF-fast!:w=0.20,s=1.00 RRCF-mid!:w=0.19,s=0.98 RRCF-slow!:w=0.19,s=1.00 COPOD!:w=0.20,s=0.92"} +{"timestamp":"2026-03-16T10:58:46.034864076Z","score":0.8805378865472191,"is_anomaly":false,"confidence":0.970760419289308,"method":"SEAD","details":"MAD!:w=0.22,s=0.95 RRCF-fast!:w=0.20,s=0.98 RRCF-mid!:w=0.19,s=1.00 RRCF-slow!:w=0.19,s=1.00 COPOD!:w=0.20,s=0.48"} +{"timestamp":"2026-03-16T10:59:16.044806657Z","score":0.5986314789078518,"is_anomaly":false,"confidence":0.6599690420398528,"method":"SEAD","details":"MAD!:w=0.22,s=0.36 RRCF-fast!:w=0.20,s=0.97 RRCF-mid:w=0.19,s=0.64 RRCF-slow:w=0.19,s=0.66 COPOD!:w=0.20,s=0.41"} +{"timestamp":"2026-03-16T10:59:46.08108234Z","score":0.5555492468530743,"is_anomaly":false,"confidence":0.61247247625617,"method":"SEAD","details":"MAD!:w=0.22,s=0.28 RRCF-fast!:w=0.20,s=0.95 RRCF-mid:w=0.19,s=0.57 RRCF-slow:w=0.19,s=0.52 COPOD!:w=0.20,s=0.49"} +{"timestamp":"2026-03-16T11:00:16.036605745Z","score":0.45031033542798987,"is_anomaly":false,"confidence":0.49645047272698184,"method":"SEAD","details":"MAD!:w=0.23,s=0.44 RRCF-fast:w=0.20,s=0.80 RRCF-mid:w=0.19,s=0.45 RRCF-slow:w=0.19,s=0.52 COPOD!:w=0.20,s=0.06"} +{"timestamp":"2026-03-16T11:00:46.075353611Z","score":0.4280454104548003,"is_anomaly":false,"confidence":0.4861181068917541,"method":"SEAD","details":"MAD!:w=0.23,s=0.21 RRCF-fast:w=0.19,s=0.78 RRCF-mid:w=0.19,s=0.42 RRCF-slow:w=0.19,s=0.43 COPOD!:w=0.21,s=0.34"} +{"timestamp":"2026-03-16T11:01:16.085617344Z","score":0.4173016615408414,"is_anomaly":false,"confidence":0.4739167591949645,"method":"SEAD","details":"MAD!:w=0.23,s=0.38 RRCF-fast:w=0.19,s=0.68 RRCF-mid:w=0.19,s=0.43 RRCF-slow:w=0.19,s=0.53 COPOD!:w=0.21,s=0.10"} +{"timestamp":"2026-03-16T11:01:46.079750943Z","score":0.6323828046278906,"is_anomaly":false,"confidence":0.7181778482100315,"method":"SEAD","details":"MAD!:w=0.23,s=0.52 RRCF-fast:w=0.19,s=0.84 RRCF-mid:w=0.19,s=0.52 RRCF-slow:w=0.19,s=0.61 COPOD!:w=0.21,s=0.68"} +{"timestamp":"2026-03-16T11:02:16.037206228Z","score":0.4074030770765119,"is_anomaly":false,"confidence":0.4626752389656147,"method":"SEAD","details":"MAD!:w=0.23,s=0.36 RRCF-fast:w=0.19,s=0.67 RRCF-mid:w=0.19,s=0.47 RRCF-slow:w=0.19,s=0.44 COPOD!:w=0.21,s=0.13"} +{"timestamp":"2026-03-16T11:02:46.081374947Z","score":0.8805660252280751,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.23,s=0.79 RRCF-fast!:w=0.19,s=0.93 RRCF-mid!:w=0.19,s=0.92 RRCF-slow!:w=0.19,s=0.92 COPOD!:w=0.21,s=0.87"} +{"timestamp":"2026-03-16T11:03:16.033456015Z","score":0.7163680797740175,"is_anomaly":false,"confidence":0.813531364202328,"method":"SEAD","details":"MAD!:w=0.23,s=0.72 RRCF-fast:w=0.19,s=0.85 RRCF-mid:w=0.19,s=0.68 RRCF-slow:w=0.19,s=0.79 COPOD!:w=0.21,s=0.56"} +{"timestamp":"2026-03-16T11:03:46.072474115Z","score":0.9227020745997546,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.23,s=0.92 RRCF-fast:w=0.19,s=0.86 RRCF-mid!:w=0.19,s=0.95 RRCF-slow!:w=0.19,s=0.97 COPOD!:w=0.21,s=0.92"} +{"timestamp":"2026-03-16T11:04:17.055831019Z","score":0.8341108647547839,"is_anomaly":false,"confidence":0.9472439781431962,"method":"SEAD","details":"MAD!:w=0.23,s=0.88 RRCF-fast:w=0.19,s=0.84 RRCF-mid:w=0.19,s=0.82 RRCF-slow!:w=0.19,s=0.92 COPOD!:w=0.21,s=0.72"} +{"timestamp":"2026-03-16T11:04:46.083354024Z","score":0.8736579163988079,"is_anomaly":false,"confidence":0.9921549223665789,"method":"SEAD","details":"MAD!:w=0.23,s=0.71 RRCF-fast!:w=0.19,s=0.92 RRCF-mid!:w=0.19,s=1.00 RRCF-slow!:w=0.19,s=0.99 COPOD!:w=0.21,s=0.80"} +{"timestamp":"2026-03-16T11:05:16.028883024Z","score":0.6394727954756689,"is_anomaly":false,"confidence":0.7262065275684912,"method":"SEAD","details":"MAD!:w=0.23,s=0.67 RRCF-fast:w=0.19,s=0.61 RRCF-mid:w=0.19,s=0.61 RRCF-slow:w=0.18,s=0.83 COPOD!:w=0.21,s=0.50"} +{"timestamp":"2026-03-16T11:05:46.088283735Z","score":0.3375503224735418,"is_anomaly":false,"confidence":0.38333334787259477,"method":"SEAD","details":"MAD!:w=0.23,s=0.34 RRCF-fast:w=0.19,s=0.42 RRCF-mid:w=0.19,s=0.40 RRCF-slow:w=0.18,s=0.53 COPOD!:w=0.21,s=0.04"} +{"timestamp":"2026-03-16T11:06:16.085998565Z","score":0.3277470049078678,"is_anomaly":false,"confidence":0.3722003751200577,"method":"SEAD","details":"MAD!:w=0.23,s=0.18 RRCF-fast:w=0.19,s=0.42 RRCF-mid:w=0.19,s=0.38 RRCF-slow:w=0.18,s=0.42 COPOD!:w=0.21,s=0.27"} +{"timestamp":"2026-03-16T11:06:46.034493377Z","score":0.3361314186991114,"is_anomaly":false,"confidence":0.38172199365976006,"method":"SEAD","details":"MAD!:w=0.23,s=0.05 RRCF-fast:w=0.19,s=0.42 RRCF-mid:w=0.19,s=0.33 RRCF-slow:w=0.18,s=0.51 COPOD!:w=0.21,s=0.43"} +{"timestamp":"2026-03-16T11:07:16.121708474Z","score":0.44923202473253493,"is_anomaly":false,"confidence":0.5101627951364345,"method":"SEAD","details":"MAD!:w=0.23,s=0.15 RRCF-fast:w=0.19,s=0.46 RRCF-mid:w=0.19,s=0.53 RRCF-slow:w=0.18,s=0.57 COPOD!:w=0.21,s=0.59"} +{"timestamp":"2026-03-16T11:07:46.087074487Z","score":0.521175270377337,"is_anomaly":false,"confidence":0.5918828460873828,"method":"SEAD","details":"MAD!:w=0.23,s=0.19 RRCF-fast:w=0.19,s=0.42 RRCF-mid:w=0.19,s=0.68 RRCF-slow:w=0.18,s=0.67 COPOD!:w=0.21,s=0.72"} +{"timestamp":"2026-03-16T11:08:16.075544611Z","score":0.5098299261926107,"is_anomaly":false,"confidence":0.5789982850048223,"method":"SEAD","details":"MAD!:w=0.23,s=0.49 RRCF-fast:w=0.19,s=0.48 RRCF-mid:w=0.19,s=0.49 RRCF-slow:w=0.18,s=0.62 COPOD!:w=0.21,s=0.49"} +{"timestamp":"2026-03-16T11:08:46.087373833Z","score":0.32135869696001096,"is_anomaly":false,"confidence":0.3649572629067994,"method":"SEAD","details":"MAD!:w=0.23,s=0.23 RRCF-fast:w=0.19,s=0.28 RRCF-mid:w=0.19,s=0.35 RRCF-slow:w=0.18,s=0.40 COPOD!:w=0.21,s=0.37"} +{"timestamp":"2026-03-16T11:09:16.075048201Z","score":0.8813255890223122,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.23,s=0.85 RRCF-fast:w=0.19,s=0.80 RRCF-mid:w=0.19,s=0.86 RRCF-slow!:w=0.18,s=0.92 COPOD!:w=0.21,s=0.99"} +{"timestamp":"2026-03-16T11:09:46.039332026Z","score":0.6965825871766785,"is_anomaly":false,"confidence":0.7910623022234555,"method":"SEAD","details":"MAD!:w=0.23,s=0.78 RRCF-fast:w=0.19,s=0.62 RRCF-mid:w=0.19,s=0.66 RRCF-slow:w=0.18,s=0.67 COPOD!:w=0.21,s=0.73"} +{"timestamp":"2026-03-16T11:10:16.080499339Z","score":0.8220930668469417,"is_anomaly":false,"confidence":0.9335961680261416,"method":"SEAD","details":"MAD!:w=0.23,s=0.73 RRCF-fast:w=0.19,s=0.62 RRCF-mid!:w=0.19,s=0.91 RRCF-slow!:w=0.18,s=0.94 COPOD!:w=0.21,s=0.93"} +{"timestamp":"2026-03-16T11:10:46.031255822Z","score":0.5844167530832479,"is_anomaly":false,"confidence":0.6637042675981534,"method":"SEAD","details":"MAD!:w=0.23,s=0.68 RRCF-fast:w=0.19,s=0.40 RRCF-mid:w=0.19,s=0.48 RRCF-slow:w=0.18,s=0.68 COPOD!:w=0.21,s=0.66"} +{"timestamp":"2026-03-16T11:11:16.076693844Z","score":0.8116731834605186,"is_anomaly":false,"confidence":0.9217924587473073,"method":"SEAD","details":"MAD!:w=0.23,s=0.62 RRCF-fast:w=0.19,s=0.81 RRCF-mid!:w=0.19,s=0.91 RRCF-slow!:w=0.18,s=0.98 COPOD!:w=0.21,s=0.80"} +{"timestamp":"2026-03-16T11:11:46.077653205Z","score":0.5079293347062761,"is_anomaly":false,"confidence":0.5768398412679069,"method":"SEAD","details":"MAD!:w=0.23,s=0.57 RRCF-fast:w=0.19,s=0.45 RRCF-mid:w=0.19,s=0.57 RRCF-slow:w=0.18,s=0.71 COPOD!:w=0.21,s=0.26"} +{"timestamp":"2026-03-16T11:12:16.080318166Z","score":0.22620580783859065,"is_anomaly":false,"confidence":0.2568950312014318,"method":"SEAD","details":"MAD!:w=0.23,s=0.12 RRCF-fast:w=0.19,s=0.07 RRCF-mid:w=0.19,s=0.30 RRCF-slow:w=0.18,s=0.34 COPOD!:w=0.21,s=0.32"} +{"timestamp":"2026-03-16T11:12:46.074487717Z","score":0.25282659935912316,"is_anomaly":false,"confidence":0.2871274515518138,"method":"SEAD","details":"MAD!:w=0.23,s=0.16 RRCF-fast:w=0.19,s=0.20 RRCF-mid:w=0.19,s=0.22 RRCF-slow:w=0.18,s=0.31 COPOD!:w=0.21,s=0.38"} +{"timestamp":"2026-03-16T11:13:16.034226475Z","score":0.2610338499285201,"is_anomaly":false,"confidence":0.29644817550337405,"method":"SEAD","details":"MAD!:w=0.24,s=0.28 RRCF-fast:w=0.19,s=0.12 RRCF-mid:w=0.19,s=0.21 RRCF-slow:w=0.18,s=0.39 COPOD!:w=0.21,s=0.30"} +{"timestamp":"2026-03-16T11:13:46.075026494Z","score":0.36060153281372886,"is_anomaly":false,"confidence":0.40952415372804235,"method":"SEAD","details":"MAD!:w=0.24,s=0.46 RRCF-fast:w=0.19,s=0.28 RRCF-mid:w=0.19,s=0.28 RRCF-slow:w=0.18,s=0.35 COPOD!:w=0.21,s=0.40"} +{"timestamp":"2026-03-16T11:14:16.037478115Z","score":0.19710260341924618,"is_anomaly":false,"confidence":0.22560615513185903,"method":"SEAD","details":"MAD!:w=0.23,s=0.29 RRCF-fast:w=0.19,s=0.12 RRCF-mid:w=0.19,s=0.09 RRCF-slow:w=0.18,s=0.35 COPOD!:w=0.21,s=0.14"} +{"timestamp":"2026-03-16T11:14:46.083182575Z","score":0.7690686731331446,"is_anomaly":false,"confidence":0.8802858174778786,"method":"SEAD","details":"MAD!:w=0.23,s=0.72 RRCF-fast:w=0.19,s=0.52 RRCF-mid:w=0.19,s=0.85 RRCF-slow:w=0.18,s=0.91 COPOD!:w=0.21,s=0.87"} +{"timestamp":"2026-03-16T11:15:16.037015076Z","score":0.5342553548732983,"is_anomaly":false,"confidence":0.6115154969069394,"method":"SEAD","details":"MAD!:w=0.23,s=0.65 RRCF-fast:w=0.19,s=0.47 RRCF-mid:w=0.19,s=0.53 RRCF-slow:w=0.18,s=0.70 COPOD!:w=0.21,s=0.33"} +{"timestamp":"2026-03-16T11:15:46.073355354Z","score":0.7965982670662176,"is_anomaly":false,"confidence":0.9117965420032731,"method":"SEAD","details":"MAD!:w=0.23,s=0.71 RRCF-fast:w=0.19,s=0.53 RRCF-mid:w=0.19,s=0.82 RRCF-slow!:w=0.18,s=0.94 COPOD!:w=0.21,s=1.00"} +{"timestamp":"2026-03-16T11:16:16.038092495Z","score":0.6775684221250831,"is_anomaly":false,"confidence":0.7755534625245544,"method":"SEAD","details":"MAD!:w=0.23,s=0.63 RRCF-fast:w=0.20,s=0.77 RRCF-mid:w=0.19,s=0.82 RRCF-slow:w=0.18,s=0.64 COPOD!:w=0.21,s=0.55"} +{"timestamp":"2026-03-16T11:16:46.082728767Z","score":0.8669387085797587,"is_anomaly":false,"confidence":0.992309108985419,"method":"SEAD","details":"MAD!:w=0.23,s=1.00 RRCF-fast:w=0.20,s=0.66 RRCF-mid:w=0.19,s=0.82 RRCF-slow:w=0.18,s=0.89 COPOD!:w=0.21,s=0.94"} +{"timestamp":"2026-03-16T11:17:16.034824693Z","score":0.5157524161435316,"is_anomaly":false,"confidence":0.5903367971178558,"method":"SEAD","details":"MAD!:w=0.23,s=0.00 RRCF-fast:w=0.20,s=0.79 RRCF-mid:w=0.19,s=0.56 RRCF-slow:w=0.18,s=0.76 COPOD!:w=0.21,s=0.59"} +{"timestamp":"2026-03-16T11:17:46.033185802Z","score":0.2501765670816324,"is_anomaly":false,"confidence":0.28857468769790895,"method":"SEAD","details":"MAD!:w=0.24,s=0.00 RRCF-fast:w=0.20,s=0.20 RRCF-mid:w=0.19,s=0.33 RRCF-slow:w=0.18,s=0.54 COPOD!:w=0.21,s=0.27"} +{"timestamp":"2026-03-16T11:18:16.076144203Z","score":0.31728507326693395,"is_anomaly":false,"confidence":0.3659832813172208,"method":"SEAD","details":"MAD:w=0.24,s=0.00 RRCF-fast:w=0.20,s=0.45 RRCF-mid:w=0.18,s=0.22 RRCF-slow:w=0.17,s=0.49 COPOD!:w=0.21,s=0.50"} +{"timestamp":"2026-03-16T11:18:46.086422278Z","score":0.176226139010059,"is_anomaly":false,"confidence":0.2032740460957813,"method":"SEAD","details":"MAD!:w=0.24,s=0.01 RRCF-fast:w=0.19,s=0.24 RRCF-mid:w=0.19,s=0.21 RRCF-slow:w=0.17,s=0.28 COPOD!:w=0.21,s=0.18"} +{"timestamp":"2026-03-16T11:19:16.077214106Z","score":0.2486788878000023,"is_anomaly":false,"confidence":0.2868471384873268,"method":"SEAD","details":"MAD:w=0.24,s=0.01 RRCF-fast:w=0.19,s=0.10 RRCF-mid:w=0.18,s=0.08 RRCF-slow:w=0.17,s=0.34 COPOD!:w=0.21,s=0.75"} +{"timestamp":"2026-03-16T11:19:46.033630673Z","score":0.23028626119533965,"is_anomaly":false,"confidence":0.26563153648151266,"method":"SEAD","details":"MAD!:w=0.24,s=0.05 RRCF-fast:w=0.20,s=0.25 RRCF-mid:w=0.19,s=0.30 RRCF-slow:w=0.17,s=0.53 COPOD!:w=0.20,s=0.11"} +{"timestamp":"2026-03-16T11:20:16.075750399Z","score":0.1773545106255593,"is_anomaly":false,"confidence":0.20457560479229958,"method":"SEAD","details":"MAD!:w=0.24,s=0.02 RRCF-fast:w=0.19,s=0.18 RRCF-mid:w=0.19,s=0.21 RRCF-slow:w=0.17,s=0.33 COPOD!:w=0.21,s=0.21"} +{"timestamp":"2026-03-16T11:20:46.078184266Z","score":0.2601955799407794,"is_anomaly":false,"confidence":0.30722066416086197,"method":"SEAD","details":"MAD:w=0.24,s=0.02 RRCF-fast:w=0.19,s=0.17 RRCF-mid:w=0.19,s=0.21 RRCF-slow:w=0.17,s=0.25 COPOD!:w=0.20,s=0.68"} +{"timestamp":"2026-03-16T11:21:16.073298354Z","score":0.9981198934412234,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.24,s=1.00 RRCF-fast!:w=0.20,s=1.00 RRCF-mid!:w=0.19,s=1.00 RRCF-slow!:w=0.17,s=1.00 COPOD!:w=0.20,s=0.99"} +{"timestamp":"2026-03-16T11:21:46.035031763Z","score":0.7010431380785479,"is_anomaly":false,"confidence":0.8086421002322237,"method":"SEAD","details":"MAD!:w=0.24,s=0.06 RRCF-fast!:w=0.20,s=0.97 RRCF-mid!:w=0.19,s=0.97 RRCF-slow!:w=0.17,s=0.99 COPOD!:w=0.20,s=0.72"} +{"timestamp":"2026-03-16T11:22:16.07571387Z","score":0.9256060880330728,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=1.00 RRCF-fast!:w=0.19,s=0.95 RRCF-mid:w=0.18,s=0.79 RRCF-slow!:w=0.17,s=0.93 COPOD!:w=0.20,s=0.94"} +{"timestamp":"2026-03-16T11:22:46.082523842Z","score":0.47374803174143076,"is_anomaly":false,"confidence":0.5422580427064705,"method":"SEAD","details":"MAD!:w=0.25,s=0.05 RRCF-fast!:w=0.19,s=0.93 RRCF-mid:w=0.18,s=0.52 RRCF-slow:w=0.17,s=0.76 COPOD!:w=0.20,s=0.27"} +{"timestamp":"2026-03-16T11:23:16.08071762Z","score":0.9520395331246607,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.97 RRCF-fast!:w=0.19,s=0.96 RRCF-mid!:w=0.18,s=0.92 RRCF-slow!:w=0.17,s=0.99 COPOD!:w=0.20,s=0.92"} +{"timestamp":"2026-03-16T11:23:46.032971869Z","score":0.6319458624733856,"is_anomaly":false,"confidence":0.7176816263424882,"method":"SEAD","details":"MAD!:w=0.25,s=0.07 RRCF-fast:w=0.19,s=0.90 RRCF-mid:w=0.18,s=0.78 RRCF-slow!:w=0.17,s=0.96 COPOD!:w=0.20,s=0.66"} +{"timestamp":"2026-03-16T11:24:16.036664923Z","score":0.30171326896835454,"is_anomaly":false,"confidence":0.345344857872985,"method":"SEAD","details":"MAD!:w=0.25,s=0.04 RRCF-fast:w=0.19,s=0.50 RRCF-mid:w=0.18,s=0.36 RRCF-slow:w=0.17,s=0.74 COPOD!:w=0.20,s=0.04"} +{"timestamp":"2026-03-16T11:24:46.074844932Z","score":0.3731365531562759,"is_anomaly":false,"confidence":0.4270968603985571,"method":"SEAD","details":"MAD:w=0.26,s=0.00 RRCF-fast:w=0.19,s=0.58 RRCF-mid:w=0.18,s=0.36 RRCF-slow:w=0.17,s=0.72 COPOD!:w=0.20,s=0.37"} +{"timestamp":"2026-03-16T11:25:16.084308511Z","score":0.2349616065216601,"is_anomaly":false,"confidence":0.26894005320774167,"method":"SEAD","details":"MAD!:w=0.26,s=0.05 RRCF-fast:w=0.19,s=0.47 RRCF-mid:w=0.18,s=0.21 RRCF-slow:w=0.17,s=0.53 COPOD!:w=0.20,s=0.03"} +{"timestamp":"2026-03-16T11:25:46.125204194Z","score":0.3543982101956585,"is_anomaly":false,"confidence":0.40564871392281027,"method":"SEAD","details":"MAD:w=0.26,s=0.03 RRCF-fast:w=0.19,s=0.48 RRCF-mid:w=0.18,s=0.28 RRCF-slow:w=0.17,s=0.51 COPOD!:w=0.20,s=0.58"} +{"timestamp":"2026-03-16T11:26:16.034026616Z","score":0.4197908881171737,"is_anomaly":false,"confidence":0.48049800755831223,"method":"SEAD","details":"MAD!:w=0.26,s=0.10 RRCF-fast:w=0.19,s=0.49 RRCF-mid:w=0.18,s=0.39 RRCF-slow:w=0.16,s=0.75 COPOD!:w=0.20,s=0.52"} +{"timestamp":"2026-03-16T11:26:46.070957011Z","score":0.34094338551915204,"is_anomaly":false,"confidence":0.3902481498988879,"method":"SEAD","details":"MAD!:w=0.26,s=0.13 RRCF-fast:w=0.19,s=0.51 RRCF-mid:w=0.18,s=0.27 RRCF-slow:w=0.16,s=0.78 COPOD!:w=0.20,s=0.16"} +{"timestamp":"2026-03-16T11:27:16.040014244Z","score":0.22410376724234976,"is_anomaly":false,"confidence":0.2565120318100005,"method":"SEAD","details":"MAD:w=0.26,s=0.03 RRCF-fast:w=0.19,s=0.23 RRCF-mid:w=0.18,s=0.23 RRCF-slow:w=0.16,s=0.48 COPOD!:w=0.20,s=0.26"} +{"timestamp":"2026-03-16T11:27:46.08127975Z","score":0.9916483323005608,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.26,s=0.99 RRCF-fast!:w=0.19,s=0.97 RRCF-mid!:w=0.18,s=1.00 RRCF-slow!:w=0.16,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-16T11:28:16.039887622Z","score":0.716702112887931,"is_anomaly":false,"confidence":0.8203463843630651,"method":"SEAD","details":"MAD!:w=0.26,s=0.15 RRCF-fast!:w=0.19,s=0.96 RRCF-mid!:w=0.18,s=0.99 RRCF-slow!:w=0.16,s=1.00 COPOD!:w=0.20,s=0.76"} +{"timestamp":"2026-03-16T11:28:46.074876637Z","score":0.9576473312536886,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.27,s=0.98 RRCF-fast!:w=0.19,s=0.93 RRCF-mid!:w=0.18,s=0.98 RRCF-slow!:w=0.16,s=0.98 COPOD!:w=0.20,s=0.91"} +{"timestamp":"2026-03-16T11:29:16.07861807Z","score":0.6633677346808318,"is_anomaly":false,"confidence":0.7533664874796486,"method":"SEAD","details":"MAD!:w=0.27,s=0.12 RRCF-fast:w=0.19,s=0.87 RRCF-mid!:w=0.18,s=0.98 RRCF-slow!:w=0.16,s=0.97 COPOD!:w=0.20,s=0.67"} +{"timestamp":"2026-03-16T11:29:46.100382457Z","score":0.5670161802109166,"is_anomaly":false,"confidence":0.6439429681263467,"method":"SEAD","details":"MAD!:w=0.27,s=0.06 RRCF-fast:w=0.18,s=0.77 RRCF-mid:w=0.18,s=0.84 RRCF-slow!:w=0.16,s=0.95 COPOD!:w=0.20,s=0.51"} +{"timestamp":"2026-03-16T11:30:16.128870062Z","score":0.5054269294593488,"is_anomaly":false,"confidence":0.5739979360129953,"method":"SEAD","details":"MAD!:w=0.28,s=0.05 RRCF-fast:w=0.18,s=0.71 RRCF-mid:w=0.18,s=0.87 RRCF-slow!:w=0.16,s=0.95 COPOD!:w=0.20,s=0.27"} +{"timestamp":"2026-03-16T11:30:46.039617304Z","score":0.4157150248725863,"is_anomaly":false,"confidence":0.47583272247580766,"method":"SEAD","details":"MAD!:w=0.28,s=0.08 RRCF-fast:w=0.18,s=0.59 RRCF-mid:w=0.18,s=0.76 RRCF-slow:w=0.16,s=0.92 COPOD!:w=0.20,s=0.03"} +{"timestamp":"2026-03-16T11:31:16.075533625Z","score":0.4017371775021674,"is_anomaly":false,"confidence":0.459833500002056,"method":"SEAD","details":"MAD!:w=0.28,s=0.05 RRCF-fast:w=0.18,s=0.48 RRCF-mid:w=0.18,s=0.69 RRCF-slow:w=0.16,s=0.87 COPOD!:w=0.20,s=0.20"} +{"timestamp":"2026-03-16T11:31:46.073906791Z","score":0.3632649793169039,"is_anomaly":false,"confidence":0.4157977310092621,"method":"SEAD","details":"MAD!:w=0.28,s=0.11 RRCF-fast:w=0.18,s=0.40 RRCF-mid:w=0.18,s=0.71 RRCF-slow:w=0.15,s=0.84 COPOD!:w=0.21,s=0.03"} +{"timestamp":"2026-03-16T11:32:16.129135505Z","score":0.8654084923018388,"is_anomaly":false,"confidence":0.9905576039063746,"method":"SEAD","details":"MAD!:w=0.28,s=0.91 RRCF-fast:w=0.18,s=0.85 RRCF-mid!:w=0.17,s=0.90 RRCF-slow:w=0.15,s=0.90 COPOD!:w=0.21,s=0.77"} +{"timestamp":"2026-03-16T11:32:46.036796391Z","score":0.36598375356911383,"is_anomaly":false,"confidence":0.4189096747130594,"method":"SEAD","details":"MAD:w=0.28,s=0.00 RRCF-fast:w=0.18,s=0.31 RRCF-mid:w=0.17,s=0.57 RRCF-slow:w=0.15,s=0.81 COPOD!:w=0.21,s=0.42"} +{"timestamp":"2026-03-16T11:33:16.078995985Z","score":0.943207120928341,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=0.96 RRCF-fast:w=0.18,s=0.86 RRCF-mid!:w=0.17,s=0.97 RRCF-slow!:w=0.15,s=0.98 COPOD!:w=0.21,s=0.94"} +{"timestamp":"2026-03-16T11:33:46.035958495Z","score":0.5924626120692505,"is_anomaly":false,"confidence":0.6728417040548085,"method":"SEAD","details":"MAD!:w=0.29,s=0.17 RRCF-fast:w=0.18,s=0.70 RRCF-mid!:w=0.17,s=0.91 RRCF-slow!:w=0.15,s=0.95 COPOD!:w=0.21,s=0.56"} +{"timestamp":"2026-03-16T11:34:16.077544625Z","score":0.9117444362318683,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=0.96 RRCF-fast:w=0.18,s=0.84 RRCF-mid:w=0.17,s=0.87 RRCF-slow:w=0.15,s=0.93 COPOD!:w=0.21,s=0.94"} +{"timestamp":"2026-03-16T11:34:46.038065492Z","score":0.5078733565875512,"is_anomaly":false,"confidence":0.5767762686271607,"method":"SEAD","details":"MAD!:w=0.29,s=0.14 RRCF-fast:w=0.18,s=0.50 RRCF-mid:w=0.17,s=0.79 RRCF-slow:w=0.15,s=0.90 COPOD!:w=0.21,s=0.51"} +{"timestamp":"2026-03-16T11:35:16.084802142Z","score":0.2273684319039698,"is_anomaly":false,"confidence":0.2582153878642644,"method":"SEAD","details":"MAD:w=0.29,s=0.01 RRCF-fast:w=0.18,s=0.11 RRCF-mid:w=0.17,s=0.49 RRCF-slow:w=0.15,s=0.72 COPOD!:w=0.21,s=0.06"} +{"timestamp":"2026-03-16T11:35:46.083466058Z","score":0.3702590749820954,"is_anomaly":false,"confidence":0.4204919295795005,"method":"SEAD","details":"MAD:w=0.29,s=0.00 RRCF-fast:w=0.18,s=0.18 RRCF-mid:w=0.17,s=0.57 RRCF-slow:w=0.15,s=0.77 COPOD!:w=0.21,s=0.61"} +{"timestamp":"2026-03-16T11:36:16.088666149Z","score":0.2378191878306241,"is_anomaly":false,"confidence":0.27008399236876107,"method":"SEAD","details":"MAD!:w=0.30,s=0.15 RRCF-fast:w=0.18,s=0.10 RRCF-mid:w=0.17,s=0.49 RRCF-slow:w=0.15,s=0.57 COPOD!:w=0.21,s=0.04"} +{"timestamp":"2026-03-16T11:36:46.12967509Z","score":0.24138533756780906,"is_anomaly":false,"confidence":0.27413395977126387,"method":"SEAD","details":"MAD:w=0.30,s=0.06 RRCF-fast:w=0.18,s=0.14 RRCF-mid:w=0.17,s=0.53 RRCF-slow:w=0.15,s=0.68 COPOD!:w=0.21,s=0.05"} +{"timestamp":"2026-03-16T11:37:16.087831047Z","score":0.2505249123763792,"is_anomaly":false,"confidence":0.2845134959027623,"method":"SEAD","details":"MAD!:w=0.30,s=0.09 RRCF-fast:w=0.18,s=0.10 RRCF-mid:w=0.17,s=0.39 RRCF-slow:w=0.15,s=0.70 COPOD!:w=0.21,s=0.18"} +{"timestamp":"2026-03-16T11:37:46.07779594Z","score":0.8537161878611024,"is_anomaly":false,"confidence":0.9771744430361202,"method":"SEAD","details":"MAD!:w=0.30,s=0.95 RRCF-fast:w=0.18,s=0.63 RRCF-mid:w=0.17,s=0.84 RRCF-slow:w=0.14,s=0.89 COPOD!:w=0.21,s=0.90"} +{"timestamp":"2026-03-16T11:38:16.080468912Z","score":0.45611416652787806,"is_anomaly":false,"confidence":0.522074095554433,"method":"SEAD","details":"MAD!:w=0.30,s=0.11 RRCF-fast:w=0.18,s=0.58 RRCF-mid:w=0.17,s=0.73 RRCF-slow:w=0.14,s=0.75 COPOD!:w=0.21,s=0.42"} +{"timestamp":"2026-03-16T11:38:46.083541657Z","score":0.8884946969480683,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=0.95 RRCF-fast:w=0.18,s=0.80 RRCF-mid:w=0.17,s=0.80 RRCF-slow:w=0.14,s=0.88 COPOD!:w=0.21,s=0.95"} +{"timestamp":"2026-03-16T11:39:16.037427744Z","score":0.3965487720944161,"is_anomaly":false,"confidence":0.4503483361168822,"method":"SEAD","details":"MAD!:w=0.30,s=0.14 RRCF-fast:w=0.18,s=0.44 RRCF-mid:w=0.17,s=0.58 RRCF-slow:w=0.14,s=0.76 COPOD!:w=0.21,s=0.33"} +{"timestamp":"2026-03-16T11:39:46.080962257Z","score":0.8461753975182267,"is_anomaly":false,"confidence":0.9609755700987095,"method":"SEAD","details":"MAD!:w=0.30,s=0.99 RRCF-fast:w=0.18,s=0.77 RRCF-mid:w=0.17,s=0.61 RRCF-slow:w=0.14,s=0.85 COPOD!:w=0.21,s=0.90"} +{"timestamp":"2026-03-16T11:40:16.037867323Z","score":0.5052798817359854,"is_anomaly":false,"confidence":0.5738309384020918,"method":"SEAD","details":"MAD!:w=0.30,s=0.16 RRCF-fast:w=0.18,s=0.69 RRCF-mid:w=0.17,s=0.60 RRCF-slow:w=0.14,s=0.68 COPOD!:w=0.21,s=0.65"} +{"timestamp":"2026-03-16T11:40:46.036466482Z","score":0.3240780076375398,"is_anomaly":false,"confidence":0.3709438231537806,"method":"SEAD","details":"MAD!:w=0.30,s=0.17 RRCF-fast:w=0.18,s=0.20 RRCF-mid:w=0.17,s=0.33 RRCF-slow:w=0.14,s=0.46 COPOD!:w=0.21,s=0.57"} +{"timestamp":"2026-03-16T11:41:16.089880786Z","score":0.1469030126438298,"is_anomaly":false,"confidence":0.16814706292522327,"method":"SEAD","details":"MAD!:w=0.31,s=0.08 RRCF-fast:w=0.18,s=0.07 RRCF-mid:w=0.17,s=0.22 RRCF-slow:w=0.14,s=0.49 COPOD!:w=0.20,s=0.01"} +{"timestamp":"2026-03-16T11:41:46.088317219Z","score":0.27009552155299227,"is_anomaly":false,"confidence":0.3091547807021746,"method":"SEAD","details":"MAD!:w=0.31,s=0.09 RRCF-fast:w=0.18,s=0.38 RRCF-mid:w=0.17,s=0.50 RRCF-slow:w=0.14,s=0.60 COPOD!:w=0.20,s=0.03"} +{"timestamp":"2026-03-16T11:42:16.083114387Z","score":0.21347990358257404,"is_anomaly":false,"confidence":0.24435182189217938,"method":"SEAD","details":"MAD:w=0.31,s=0.04 RRCF-fast:w=0.18,s=0.13 RRCF-mid:w=0.17,s=0.32 RRCF-slow:w=0.14,s=0.51 COPOD!:w=0.21,s=0.25"} +{"timestamp":"2026-03-16T11:42:46.085682149Z","score":0.14131907641750954,"is_anomaly":false,"confidence":0.16175561826306412,"method":"SEAD","details":"MAD!:w=0.31,s=0.17 RRCF-fast:w=0.18,s=0.07 RRCF-mid:w=0.16,s=0.17 RRCF-slow:w=0.14,s=0.28 COPOD!:w=0.21,s=0.03"} +{"timestamp":"2026-03-16T11:43:16.078307235Z","score":0.44712499784474,"is_anomaly":false,"confidence":0.5117849783674783,"method":"SEAD","details":"MAD!:w=0.31,s=0.27 RRCF-fast:w=0.18,s=0.37 RRCF-mid:w=0.16,s=0.38 RRCF-slow:w=0.14,s=0.63 COPOD!:w=0.21,s=0.71"} +{"timestamp":"2026-03-16T11:43:46.035796861Z","score":0.19052815981113375,"is_anomaly":false,"confidence":0.2180809630804757,"method":"SEAD","details":"MAD!:w=0.31,s=0.12 RRCF-fast:w=0.18,s=0.12 RRCF-mid:w=0.16,s=0.21 RRCF-slow:w=0.14,s=0.48 COPOD!:w=0.20,s=0.15"} +{"timestamp":"2026-03-16T11:44:16.080983542Z","score":0.8350051474209648,"is_anomaly":false,"confidence":0.9631651455370953,"method":"SEAD","details":"MAD!:w=0.31,s=0.95 RRCF-fast:w=0.18,s=0.60 RRCF-mid:w=0.16,s=0.75 RRCF-slow:w=0.14,s=0.84 COPOD!:w=0.20,s=0.94"} +{"timestamp":"2026-03-16T11:44:46.037389069Z","score":0.3851593368668942,"is_anomaly":false,"confidence":0.4442751639246471,"method":"SEAD","details":"MAD!:w=0.31,s=0.09 RRCF-fast:w=0.18,s=0.53 RRCF-mid:w=0.17,s=0.59 RRCF-slow:w=0.14,s=0.60 COPOD!:w=0.20,s=0.39"} +{"timestamp":"2026-03-16T11:45:16.082150331Z","score":0.9614282850542815,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=0.98 RRCF-fast:w=0.18,s=0.87 RRCF-mid!:w=0.16,s=0.98 RRCF-slow!:w=0.14,s=0.97 COPOD!:w=0.20,s=0.99"} +{"timestamp":"2026-03-16T11:45:46.038303777Z","score":0.5098368810553782,"is_anomaly":false,"confidence":0.5835658001668557,"method":"SEAD","details":"MAD!:w=0.31,s=0.24 RRCF-fast:w=0.18,s=0.60 RRCF-mid:w=0.16,s=0.63 RRCF-slow:w=0.14,s=0.76 COPOD!:w=0.20,s=0.58"} +{"timestamp":"2026-03-16T11:46:16.072117295Z","score":0.8914295362911733,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=1.00 RRCF-fast:w=0.18,s=0.78 RRCF-mid:w=0.16,s=0.87 RRCF-slow:w=0.14,s=0.90 COPOD!:w=0.20,s=0.83"} +{"timestamp":"2026-03-16T11:46:46.041269078Z","score":0.398771333246853,"is_anomaly":false,"confidence":0.45287243097570995,"method":"SEAD","details":"MAD:w=0.31,s=0.07 RRCF-fast:w=0.18,s=0.42 RRCF-mid:w=0.16,s=0.56 RRCF-slow:w=0.14,s=0.70 COPOD!:w=0.20,s=0.55"} +{"timestamp":"2026-03-16T11:47:16.038461878Z","score":0.2513160579588827,"is_anomaly":false,"confidence":0.28541197579169214,"method":"SEAD","details":"MAD:w=0.32,s=0.01 RRCF-fast:w=0.18,s=0.08 RRCF-mid:w=0.16,s=0.30 RRCF-slow:w=0.14,s=0.56 COPOD!:w=0.20,s=0.54"} +{"timestamp":"2026-03-16T11:47:46.08023919Z","score":0.16956635659791114,"is_anomaly":false,"confidence":0.1940878156256612,"method":"SEAD","details":"MAD:w=0.32,s=0.00 RRCF-fast:w=0.18,s=0.11 RRCF-mid:w=0.16,s=0.34 RRCF-slow:w=0.14,s=0.31 COPOD!:w=0.20,s=0.26"} +{"timestamp":"2026-03-16T11:48:16.039164983Z","score":0.1722805995874016,"is_anomaly":false,"confidence":0.1971945727883256,"method":"SEAD","details":"MAD!:w=0.32,s=0.09 RRCF-fast:w=0.18,s=0.03 RRCF-mid:w=0.16,s=0.27 RRCF-slow:w=0.14,s=0.36 COPOD!:w=0.20,s=0.22"} +{"timestamp":"2026-03-16T11:48:46.120036031Z","score":0.6624680256932283,"is_anomaly":false,"confidence":0.7582693560700531,"method":"SEAD","details":"MAD!:w=0.32,s=0.30 RRCF-fast:w=0.18,s=0.90 RRCF-mid!:w=0.16,s=0.94 RRCF-slow!:w=0.13,s=0.96 COPOD!:w=0.20,s=0.60"} +{"timestamp":"2026-03-16T11:49:16.036478817Z","score":0.3116698580871056,"is_anomaly":false,"confidence":0.35674129683595107,"method":"SEAD","details":"MAD!:w=0.32,s=0.18 RRCF-fast:w=0.18,s=0.22 RRCF-mid:w=0.16,s=0.27 RRCF-slow:w=0.13,s=0.62 COPOD!:w=0.20,s=0.44"} +{"timestamp":"2026-03-16T11:49:46.12963613Z","score":0.8120270639407074,"is_anomaly":false,"confidence":0.9294565397951856,"method":"SEAD","details":"MAD!:w=0.32,s=0.98 RRCF-fast:w=0.18,s=0.41 RRCF-mid:w=0.16,s=0.73 RRCF-slow:w=0.13,s=0.84 COPOD!:w=0.20,s=0.97"} +{"timestamp":"2026-03-16T11:50:16.037706341Z","score":0.33675347566607583,"is_anomaly":false,"confidence":0.3854523256129398,"method":"SEAD","details":"MAD!:w=0.32,s=0.20 RRCF-fast:w=0.18,s=0.40 RRCF-mid:w=0.16,s=0.55 RRCF-slow:w=0.13,s=0.55 COPOD!:w=0.20,s=0.18"} +{"timestamp":"2026-03-16T11:50:46.082961861Z","score":0.8058327180880399,"is_anomaly":false,"confidence":0.9295152126823081,"method":"SEAD","details":"MAD!:w=0.32,s=0.96 RRCF-fast:w=0.18,s=0.54 RRCF-mid:w=0.16,s=0.81 RRCF-slow:w=0.13,s=0.78 COPOD!:w=0.20,s=0.80"} +{"timestamp":"2026-03-16T11:51:16.032733457Z","score":0.34920014253626297,"is_anomaly":false,"confidence":0.4027968056799905,"method":"SEAD","details":"MAD!:w=0.32,s=0.18 RRCF-fast:w=0.18,s=0.39 RRCF-mid:w=0.16,s=0.56 RRCF-slow:w=0.13,s=0.70 COPOD!:w=0.20,s=0.18"} +{"timestamp":"2026-03-16T11:51:46.090592064Z","score":0.8541496018904551,"is_anomaly":false,"confidence":0.985247969017031,"method":"SEAD","details":"MAD!:w=0.32,s=1.00 RRCF-fast:w=0.18,s=0.63 RRCF-mid!:w=0.16,s=0.90 RRCF-slow:w=0.13,s=0.89 COPOD!:w=0.20,s=0.77"} +{"timestamp":"2026-03-16T11:52:16.077816437Z","score":0.3275375339639046,"is_anomaly":false,"confidence":0.37780933152758284,"method":"SEAD","details":"MAD!:w=0.32,s=0.08 RRCF-fast:w=0.19,s=0.31 RRCF-mid:w=0.16,s=0.40 RRCF-slow:w=0.13,s=0.68 COPOD!:w=0.20,s=0.45"} +{"timestamp":"2026-03-16T11:52:46.036291048Z","score":0.28230858793282537,"is_anomaly":false,"confidence":0.32563846225681925,"method":"SEAD","details":"MAD:w=0.32,s=0.04 RRCF-fast:w=0.18,s=0.20 RRCF-mid:w=0.16,s=0.29 RRCF-slow:w=0.13,s=0.33 COPOD!:w=0.20,s=0.71"} +{"timestamp":"2026-03-16T11:53:16.078561669Z","score":0.29567820349120555,"is_anomaly":false,"confidence":0.3410601009794489,"method":"SEAD","details":"MAD:w=0.33,s=0.03 RRCF-fast:w=0.19,s=0.29 RRCF-mid:w=0.16,s=0.28 RRCF-slow:w=0.13,s=0.42 COPOD!:w=0.20,s=0.66"} +{"timestamp":"2026-03-16T11:53:46.084546607Z","score":0.2534672206781655,"is_anomaly":false,"confidence":0.2923704042393055,"method":"SEAD","details":"MAD:w=0.33,s=0.04 RRCF-fast:w=0.18,s=0.21 RRCF-mid:w=0.16,s=0.28 RRCF-slow:w=0.13,s=0.29 COPOD!:w=0.20,s=0.60"} +{"timestamp":"2026-03-16T11:54:16.076999508Z","score":0.1667541379289234,"is_anomaly":false,"confidence":0.19268835401116283,"method":"SEAD","details":"MAD:w=0.33,s=0.09 RRCF-fast:w=0.18,s=0.03 RRCF-mid:w=0.16,s=0.19 RRCF-slow:w=0.13,s=0.21 COPOD!:w=0.19,s=0.38"} +{"timestamp":"2026-03-16T11:54:46.032725408Z","score":0.25719012657061696,"is_anomaly":false,"confidence":0.2971892798122828,"method":"SEAD","details":"MAD!:w=0.33,s=0.18 RRCF-fast:w=0.19,s=0.31 RRCF-mid:w=0.16,s=0.18 RRCF-slow:w=0.13,s=0.40 COPOD!:w=0.19,s=0.31"} +{"timestamp":"2026-03-16T11:55:16.124823832Z","score":0.8611079085397435,"is_anomaly":false,"confidence":0.9950305736535396,"method":"SEAD","details":"MAD!:w=0.33,s=0.97 RRCF-fast:w=0.18,s=0.69 RRCF-mid:w=0.16,s=0.82 RRCF-slow:w=0.13,s=0.78 COPOD!:w=0.19,s=0.91"} +{"timestamp":"2026-03-16T11:55:46.03441392Z","score":0.40597451117502314,"is_anomaly":false,"confidence":0.4691131584521435,"method":"SEAD","details":"MAD!:w=0.33,s=0.23 RRCF-fast:w=0.19,s=0.24 RRCF-mid:w=0.16,s=0.48 RRCF-slow:w=0.13,s=0.62 COPOD!:w=0.19,s=0.67"} +{"timestamp":"2026-03-16T11:56:16.077004013Z","score":0.7680015605260849,"is_anomaly":false,"confidence":0.8874439843816785,"method":"SEAD","details":"MAD!:w=0.33,s=0.99 RRCF-fast:w=0.19,s=0.38 RRCF-mid:w=0.16,s=0.66 RRCF-slow:w=0.13,s=0.76 COPOD!:w=0.19,s=0.86"} +{"timestamp":"2026-03-16T11:56:46.032410106Z","score":0.3576039463734219,"is_anomaly":false,"confidence":0.4132198257290687,"method":"SEAD","details":"MAD!:w=0.33,s=0.15 RRCF-fast:w=0.19,s=0.52 RRCF-mid:w=0.16,s=0.35 RRCF-slow:w=0.13,s=0.52 COPOD!:w=0.19,s=0.46"} +{"timestamp":"2026-03-16T11:57:16.03585314Z","score":0.19228325305720603,"is_anomaly":false,"confidence":0.2221878509023703,"method":"SEAD","details":"MAD:w=0.33,s=0.06 RRCF-fast:w=0.19,s=0.10 RRCF-mid:w=0.16,s=0.14 RRCF-slow:w=0.13,s=0.21 COPOD!:w=0.19,s=0.55"} +{"timestamp":"2026-03-16T11:57:46.077217761Z","score":0.7428476153348648,"is_anomaly":false,"confidence":0.8626649551907808,"method":"SEAD","details":"MAD!:w=0.33,s=0.86 RRCF-fast:w=0.19,s=0.50 RRCF-mid:w=0.16,s=0.65 RRCF-slow:w=0.13,s=0.77 COPOD!:w=0.19,s=0.85"} +{"timestamp":"2026-03-16T11:58:16.032756626Z","score":0.8800268479618992,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.33,s=0.86 RRCF-fast!:w=0.19,s=0.92 RRCF-mid!:w=0.16,s=0.97 RRCF-slow!:w=0.13,s=0.95 COPOD!:w=0.19,s=0.74"} +{"timestamp":"2026-03-16T11:58:46.076146041Z","score":0.8365218697743901,"is_anomaly":false,"confidence":0.9666208238255033,"method":"SEAD","details":"MAD!:w=0.33,s=0.86 RRCF-fast:w=0.19,s=0.76 RRCF-mid:w=0.16,s=0.86 RRCF-slow:w=0.13,s=0.92 COPOD!:w=0.19,s=0.80"} +{"timestamp":"2026-03-16T11:59:16.073763799Z","score":0.5051014659840506,"is_anomaly":false,"confidence":0.5836567014041738,"method":"SEAD","details":"MAD!:w=0.33,s=0.33 RRCF-fast:w=0.19,s=0.45 RRCF-mid:w=0.16,s=0.46 RRCF-slow:w=0.13,s=0.76 COPOD!:w=0.19,s=0.72"} +{"timestamp":"2026-03-16T11:59:46.038968032Z","score":0.4228358339030637,"is_anomaly":false,"confidence":0.48859681602891664,"method":"SEAD","details":"MAD!:w=0.33,s=0.32 RRCF-fast:w=0.19,s=0.39 RRCF-mid:w=0.16,s=0.26 RRCF-slow:w=0.13,s=0.68 COPOD!:w=0.19,s=0.59"} +{"timestamp":"2026-03-16T12:00:16.077551438Z","score":0.8873128010380344,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.33,s=0.90 RRCF-fast!:w=0.19,s=0.83 RRCF-mid!:w=0.16,s=0.93 RRCF-slow!:w=0.13,s=0.96 COPOD!:w=0.19,s=0.84"} +{"timestamp":"2026-03-16T12:00:46.038959899Z","score":0.8057609745309346,"is_anomaly":false,"confidence":0.931075881157288,"method":"SEAD","details":"MAD!:w=0.33,s=0.87 RRCF-fast:w=0.19,s=0.68 RRCF-mid:w=0.16,s=0.83 RRCF-slow:w=0.13,s=0.88 COPOD!:w=0.19,s=0.75"} +{"timestamp":"2026-03-16T12:01:16.076484447Z","score":0.4675774786319535,"is_anomaly":false,"confidence":0.5402968456991648,"method":"SEAD","details":"MAD!:w=0.33,s=0.34 RRCF-fast:w=0.19,s=0.35 RRCF-mid:w=0.16,s=0.70 RRCF-slow:w=0.13,s=0.86 COPOD!:w=0.19,s=0.36"} +{"timestamp":"2026-03-16T12:01:46.038672606Z","score":0.39998800412873686,"is_anomaly":false,"confidence":0.46219560783929575,"method":"SEAD","details":"MAD!:w=0.33,s=0.33 RRCF-fast:w=0.19,s=0.38 RRCF-mid:w=0.16,s=0.40 RRCF-slow:w=0.13,s=0.70 COPOD!:w=0.19,s=0.35"} +{"timestamp":"2026-03-16T12:02:16.076451401Z","score":0.8111986848692212,"is_anomaly":false,"confidence":0.9373592841821684,"method":"SEAD","details":"MAD!:w=0.34,s=0.84 RRCF-fast!:w=0.19,s=0.79 RRCF-mid:w=0.16,s=0.81 RRCF-slow:w=0.13,s=0.80 COPOD!:w=0.19,s=0.79"} +{"timestamp":"2026-03-16T12:02:46.032244932Z","score":0.7899569327000943,"is_anomaly":false,"confidence":0.9128139366866435,"method":"SEAD","details":"MAD!:w=0.34,s=0.88 RRCF-fast:w=0.19,s=0.58 RRCF-mid:w=0.16,s=0.81 RRCF-slow:w=0.13,s=0.86 COPOD!:w=0.19,s=0.78"} +{"timestamp":"2026-03-16T12:03:16.075313375Z","score":0.729844686769024,"is_anomaly":false,"confidence":0.8433528134531726,"method":"SEAD","details":"MAD!:w=0.33,s=0.83 RRCF-fast:w=0.19,s=0.60 RRCF-mid:w=0.16,s=0.62 RRCF-slow:w=0.13,s=0.73 COPOD!:w=0.19,s=0.77"} +{"timestamp":"2026-03-16T12:03:46.032850048Z","score":0.425005032762222,"is_anomaly":false,"confidence":0.49110337666294585,"method":"SEAD","details":"MAD!:w=0.33,s=0.31 RRCF-fast:w=0.19,s=0.32 RRCF-mid:w=0.16,s=0.54 RRCF-slow:w=0.13,s=0.51 COPOD!:w=0.19,s=0.58"} +{"timestamp":"2026-03-16T12:04:16.083197259Z","score":0.5877913523588157,"is_anomaly":false,"confidence":0.682598947854962,"method":"SEAD","details":"MAD!:w=0.33,s=0.82 RRCF-fast:w=0.19,s=0.32 RRCF-mid:w=0.16,s=0.41 RRCF-slow:w=0.13,s=0.49 COPOD!:w=0.19,s=0.65"} +{"timestamp":"2026-03-16T12:04:46.071001719Z","score":0.7118245362159125,"is_anomaly":false,"confidence":0.8266380196449664,"method":"SEAD","details":"MAD!:w=0.33,s=0.86 RRCF-fast:w=0.19,s=0.38 RRCF-mid:w=0.16,s=0.72 RRCF-slow:w=0.13,s=0.70 COPOD!:w=0.19,s=0.79"} +{"timestamp":"2026-03-16T12:05:16.038263532Z","score":0.625533014815048,"is_anomaly":false,"confidence":0.7264281382292951,"method":"SEAD","details":"MAD!:w=0.33,s=0.86 RRCF-fast:w=0.19,s=0.19 RRCF-mid:w=0.16,s=0.55 RRCF-slow:w=0.13,s=0.66 COPOD!:w=0.19,s=0.71"} +{"timestamp":"2026-03-16T12:05:46.129404713Z","score":0.40476350661392013,"is_anomaly":false,"confidence":0.4700496913334744,"method":"SEAD","details":"MAD!:w=0.33,s=0.33 RRCF-fast:w=0.20,s=0.16 RRCF-mid:w=0.16,s=0.28 RRCF-slow:w=0.13,s=0.61 COPOD!:w=0.19,s=0.75"} +{"timestamp":"2026-03-16T12:06:16.036176151Z","score":0.23573957459042122,"is_anomaly":false,"confidence":0.27376310477764115,"method":"SEAD","details":"MAD!:w=0.33,s=0.31 RRCF-fast:w=0.20,s=0.19 RRCF-mid:w=0.16,s=0.29 RRCF-slow:w=0.13,s=0.30 COPOD!:w=0.19,s=0.06"} +{"timestamp":"2026-03-16T12:06:46.077533691Z","score":0.932240100821189,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.33,s=0.90 RRCF-fast!:w=0.20,s=0.98 RRCF-mid!:w=0.16,s=0.95 RRCF-slow!:w=0.13,s=0.92 COPOD!:w=0.19,s=0.92"} +{"timestamp":"2026-03-16T12:07:16.08473443Z","score":0.9802015559675298,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.33,s=1.00 RRCF-fast!:w=0.20,s=0.99 RRCF-mid!:w=0.16,s=1.00 RRCF-slow!:w=0.13,s=1.00 COPOD!:w=0.19,s=0.90"} +{"timestamp":"2026-03-16T12:07:46.039774075Z","score":0.713728725723767,"is_anomaly":false,"confidence":0.8247304389460871,"method":"SEAD","details":"MAD!:w=0.33,s=0.59 RRCF-fast!:w=0.20,s=0.96 RRCF-mid!:w=0.16,s=0.98 RRCF-slow!:w=0.13,s=0.99 COPOD!:w=0.19,s=0.27"} +{"timestamp":"2026-03-16T12:08:16.071773026Z","score":0.943395938791078,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.33,s=0.97 RRCF-fast!:w=0.19,s=0.93 RRCF-mid!:w=0.16,s=0.97 RRCF-slow!:w=0.13,s=0.94 COPOD!:w=0.19,s=0.90"} +{"timestamp":"2026-03-16T12:08:46.035752063Z","score":0.6699150254968893,"is_anomaly":false,"confidence":0.7727363178815274,"method":"SEAD","details":"MAD!:w=0.33,s=0.34 RRCF-fast!:w=0.20,s=0.91 RRCF-mid!:w=0.16,s=0.91 RRCF-slow!:w=0.13,s=0.91 COPOD!:w=0.19,s=0.64"} +{"timestamp":"2026-03-16T12:09:16.037003788Z","score":0.5909336024979083,"is_anomaly":false,"confidence":0.6816325037164287,"method":"SEAD","details":"MAD!:w=0.33,s=0.34 RRCF-fast:w=0.19,s=0.74 RRCF-mid!:w=0.16,s=0.93 RRCF-slow!:w=0.13,s=0.91 COPOD!:w=0.19,s=0.38"} +{"timestamp":"2026-03-16T12:09:46.084103214Z","score":0.41276675079276415,"is_anomaly":false,"confidence":0.4761198764200635,"method":"SEAD","details":"MAD:w=0.33,s=0.03 RRCF-fast:w=0.19,s=0.79 RRCF-mid:w=0.16,s=0.59 RRCF-slow:w=0.13,s=0.63 COPOD!:w=0.19,s=0.41"} +{"timestamp":"2026-03-16T12:10:16.039455817Z","score":0.3503776203706199,"is_anomaly":false,"confidence":0.4041550076182635,"method":"SEAD","details":"MAD:w=0.34,s=0.04 RRCF-fast:w=0.19,s=0.69 RRCF-mid:w=0.16,s=0.66 RRCF-slow:w=0.12,s=0.64 COPOD!:w=0.19,s=0.11"} +{"timestamp":"2026-03-16T12:10:46.081219166Z","score":0.5149564134255891,"is_anomaly":false,"confidence":0.5950443264728,"method":"SEAD","details":"MAD!:w=0.34,s=0.29 RRCF-fast:w=0.19,s=0.58 RRCF-mid:w=0.16,s=0.67 RRCF-slow:w=0.12,s=0.69 COPOD!:w=0.19,s=0.62"} +{"timestamp":"2026-03-16T12:11:16.085449151Z","score":0.4110475570402128,"is_anomaly":false,"confidence":0.47497518304551933,"method":"SEAD","details":"MAD!:w=0.34,s=0.28 RRCF-fast:w=0.19,s=0.40 RRCF-mid:w=0.15,s=0.73 RRCF-slow:w=0.12,s=0.66 COPOD!:w=0.19,s=0.23"} +{"timestamp":"2026-03-16T12:11:46.080297991Z","score":0.44718274351278425,"is_anomaly":false,"confidence":0.5167302464566237,"method":"SEAD","details":"MAD!:w=0.34,s=0.32 RRCF-fast:w=0.19,s=0.45 RRCF-mid:w=0.15,s=0.64 RRCF-slow:w=0.12,s=0.47 COPOD!:w=0.19,s=0.50"} +{"timestamp":"2026-03-16T12:12:16.08734179Z","score":0.35438013641266697,"is_anomaly":false,"confidence":0.40949463700093386,"method":"SEAD","details":"MAD:w=0.34,s=0.07 RRCF-fast:w=0.19,s=0.45 RRCF-mid:w=0.15,s=0.63 RRCF-slow:w=0.12,s=0.66 COPOD!:w=0.19,s=0.36"} +{"timestamp":"2026-03-16T12:12:46.130574702Z","score":0.9259254611562582,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.35,s=0.95 RRCF-fast!:w=0.19,s=0.94 RRCF-mid:w=0.15,s=0.88 RRCF-slow:w=0.12,s=0.81 COPOD!:w=0.19,s=0.99"} +{"timestamp":"2026-03-16T12:13:16.088416311Z","score":0.46064696439370945,"is_anomaly":false,"confidence":0.531348940628517,"method":"SEAD","details":"MAD!:w=0.35,s=0.25 RRCF-fast:w=0.19,s=0.69 RRCF-mid:w=0.15,s=0.73 RRCF-slow:w=0.12,s=0.59 COPOD!:w=0.19,s=0.31"} +{"timestamp":"2026-03-16T12:13:46.081285878Z","score":0.9019638337310236,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.35,s=0.90 RRCF-fast!:w=0.19,s=0.86 RRCF-mid!:w=0.15,s=0.92 RRCF-slow:w=0.12,s=0.81 COPOD!:w=0.19,s=0.99"} +{"timestamp":"2026-03-16T12:14:16.039376911Z","score":0.48781551354616143,"is_anomaly":false,"confidence":0.562687429593856,"method":"SEAD","details":"MAD!:w=0.35,s=0.16 RRCF-fast:w=0.19,s=0.80 RRCF-mid:w=0.15,s=0.60 RRCF-slow:w=0.12,s=0.68 COPOD!:w=0.19,s=0.56"} +{"timestamp":"2026-03-16T12:14:46.072302572Z","score":0.9862110658958957,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.35,s=0.98 RRCF-fast!:w=0.19,s=1.00 RRCF-mid!:w=0.15,s=1.00 RRCF-slow!:w=0.12,s=0.98 COPOD!:w=0.19,s=0.99"} +{"timestamp":"2026-03-16T12:15:16.083070768Z","score":0.5883403164986484,"is_anomaly":false,"confidence":0.6734218341702549,"method":"SEAD","details":"MAD!:w=0.35,s=0.28 RRCF-fast!:w=0.19,s=0.98 RRCF-mid!:w=0.15,s=0.99 RRCF-slow!:w=0.12,s=0.94 COPOD!:w=0.19,s=0.23"} +{"timestamp":"2026-03-16T12:15:46.087350452Z","score":0.43026999396374443,"is_anomaly":false,"confidence":0.49249252583586106,"method":"SEAD","details":"MAD:w=0.36,s=0.04 RRCF-fast!:w=0.18,s=0.90 RRCF-mid!:w=0.15,s=0.94 RRCF-slow:w=0.12,s=0.70 COPOD!:w=0.19,s=0.13"} +{"timestamp":"2026-03-16T12:16:16.080142741Z","score":0.4956558911565408,"is_anomaly":false,"confidence":0.5673340581627415,"method":"SEAD","details":"MAD!:w=0.36,s=0.25 RRCF-fast:w=0.18,s=0.89 RRCF-mid!:w=0.15,s=0.94 RRCF-slow:w=0.12,s=0.61 COPOD!:w=0.19,s=0.17"} +{"timestamp":"2026-03-16T12:16:46.036117689Z","score":0.410220123108803,"is_anomaly":false,"confidence":0.46954318779565146,"method":"SEAD","details":"MAD:w=0.36,s=0.05 RRCF-fast:w=0.18,s=0.85 RRCF-mid:w=0.15,s=0.89 RRCF-slow:w=0.12,s=0.46 COPOD!:w=0.19,s=0.28"} +{"timestamp":"2026-03-16T12:17:16.083770702Z","score":0.4333355939418436,"is_anomaly":false,"confidence":0.4960014506914104,"method":"SEAD","details":"MAD:w=0.37,s=0.08 RRCF-fast:w=0.18,s=0.68 RRCF-mid:w=0.15,s=0.88 RRCF-slow:w=0.12,s=0.54 COPOD!:w=0.19,s=0.47"} +{"timestamp":"2026-03-16T12:17:46.035679639Z","score":0.9158301184934418,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.37,s=1.00 RRCF-fast!:w=0.18,s=0.96 RRCF-mid!:w=0.14,s=0.98 RRCF-slow!:w=0.12,s=1.00 COPOD!:w=0.19,s=0.62"} +{"timestamp":"2026-03-16T12:18:16.07790186Z","score":0.8205219856866167,"is_anomaly":false,"confidence":0.9391799356306232,"method":"SEAD","details":"MAD!:w=0.37,s=0.80 RRCF-fast:w=0.18,s=0.79 RRCF-mid:w=0.14,s=0.92 RRCF-slow:w=0.12,s=0.88 COPOD!:w=0.19,s=0.77"} +{"timestamp":"2026-03-16T12:18:46.037174328Z","score":0.9250474484465457,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.37,s=0.99 RRCF-fast:w=0.18,s=0.89 RRCF-mid!:w=0.14,s=0.97 RRCF-slow!:w=0.12,s=0.97 COPOD!:w=0.19,s=0.76"} +{"timestamp":"2026-03-16T12:19:16.091087535Z","score":0.7165768554337371,"is_anomaly":false,"confidence":0.8142670386628491,"method":"SEAD","details":"MAD!:w=0.37,s=0.61 RRCF-fast:w=0.18,s=0.78 RRCF-mid!:w=0.14,s=0.95 RRCF-slow!:w=0.12,s=0.94 COPOD!:w=0.19,s=0.56"} +{"timestamp":"2026-03-16T12:19:46.077543983Z","score":0.5537508235224058,"is_anomaly":false,"confidence":0.629243101849525,"method":"SEAD","details":"MAD!:w=0.37,s=0.36 RRCF-fast:w=0.18,s=0.61 RRCF-mid:w=0.14,s=0.86 RRCF-slow:w=0.12,s=0.79 COPOD!:w=0.19,s=0.49"} +{"timestamp":"2026-03-16T12:20:16.041206739Z","score":0.548973172068673,"is_anomaly":false,"confidence":0.6238141181034068,"method":"SEAD","details":"MAD!:w=0.37,s=0.37 RRCF-fast:w=0.18,s=0.63 RRCF-mid:w=0.14,s=0.86 RRCF-slow:w=0.12,s=0.75 COPOD!:w=0.19,s=0.47"} +{"timestamp":"2026-03-16T12:20:46.079449969Z","score":0.9524320036268913,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.37,s=0.98 RRCF-fast:w=0.18,s=0.89 RRCF-mid!:w=0.14,s=0.96 RRCF-slow!:w=0.12,s=0.94 COPOD!:w=0.19,s=0.95"} +{"timestamp":"2026-03-16T12:21:16.037716056Z","score":0.9032950136669549,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.37,s=1.00 RRCF-fast:w=0.18,s=0.80 RRCF-mid!:w=0.14,s=0.97 RRCF-slow!:w=0.12,s=0.97 COPOD!:w=0.19,s=0.73"} +{"timestamp":"2026-03-16T12:21:46.081203828Z","score":0.6485218791044667,"is_anomaly":false,"confidence":0.7365065024600614,"method":"SEAD","details":"MAD!:w=0.37,s=0.59 RRCF-fast:w=0.18,s=0.47 RRCF-mid:w=0.14,s=0.83 RRCF-slow:w=0.12,s=0.91 COPOD!:w=0.19,s=0.62"} +{"timestamp":"2026-03-16T12:22:16.036526118Z","score":0.41469126236598713,"is_anomaly":false,"confidence":0.47095220853253905,"method":"SEAD","details":"MAD!:w=0.37,s=0.37 RRCF-fast:w=0.18,s=0.30 RRCF-mid:w=0.14,s=0.82 RRCF-slow:w=0.12,s=0.67 COPOD!:w=0.19,s=0.15"} +{"timestamp":"2026-03-16T12:22:46.07946453Z","score":0.6937982689064011,"is_anomaly":false,"confidence":0.787925516330632,"method":"SEAD","details":"MAD!:w=0.37,s=0.79 RRCF-fast:w=0.18,s=0.44 RRCF-mid:w=0.14,s=0.72 RRCF-slow:w=0.12,s=0.66 COPOD!:w=0.19,s=0.74"} +{"timestamp":"2026-03-16T12:23:16.073249102Z","score":0.8760630047416378,"is_anomaly":false,"confidence":0.9949180133257771,"method":"SEAD","details":"MAD!:w=0.37,s=0.99 RRCF-fast:w=0.18,s=0.70 RRCF-mid!:w=0.14,s=0.95 RRCF-slow!:w=0.12,s=0.95 COPOD!:w=0.19,s=0.73"} +{"timestamp":"2026-03-16T12:23:46.076132557Z","score":0.7560979265973808,"is_anomaly":false,"confidence":0.8586773359204402,"method":"SEAD","details":"MAD!:w=0.37,s=0.79 RRCF-fast:w=0.18,s=0.63 RRCF-mid:w=0.14,s=0.82 RRCF-slow:w=0.12,s=0.82 COPOD!:w=0.19,s=0.73"} +{"timestamp":"2026-03-16T12:24:16.080973449Z","score":0.5178136133591199,"is_anomaly":false,"confidence":0.5884066089101166,"method":"SEAD","details":"MAD!:w=0.37,s=0.36 RRCF-fast:w=0.18,s=0.61 RRCF-mid:w=0.14,s=0.88 RRCF-slow:w=0.12,s=0.81 COPOD!:w=0.20,s=0.29"} +{"timestamp":"2026-03-16T12:24:46.038921757Z","score":0.4050227269200565,"is_anomaly":false,"confidence":0.4602390573174785,"method":"SEAD","details":"MAD!:w=0.37,s=0.36 RRCF-fast:w=0.18,s=0.21 RRCF-mid:w=0.14,s=0.60 RRCF-slow:w=0.12,s=0.68 COPOD!:w=0.20,s=0.37"} +{"timestamp":"2026-03-16T12:25:16.072127417Z","score":0.6829232052415919,"is_anomaly":false,"confidence":0.7760254210689252,"method":"SEAD","details":"MAD!:w=0.37,s=0.63 RRCF-fast:w=0.18,s=0.51 RRCF-mid:w=0.14,s=0.86 RRCF-slow:w=0.12,s=0.74 COPOD!:w=0.20,s=0.78"} +{"timestamp":"2026-03-16T12:25:46.08023348Z","score":0.8229104468971684,"is_anomaly":false,"confidence":0.935096978919439,"method":"SEAD","details":"MAD!:w=0.37,s=0.97 RRCF-fast:w=0.18,s=0.64 RRCF-mid:w=0.14,s=0.76 RRCF-slow:w=0.12,s=0.89 COPOD!:w=0.20,s=0.71"} +{"timestamp":"2026-03-16T12:26:16.141054518Z","score":0.4245443121638447,"is_anomaly":false,"confidence":0.48242200013223385,"method":"SEAD","details":"MAD!:w=0.37,s=0.37 RRCF-fast:w=0.18,s=0.37 RRCF-mid:w=0.14,s=0.48 RRCF-slow:w=0.12,s=0.72 COPOD!:w=0.20,s=0.35"} +{"timestamp":"2026-03-16T12:26:46.098338724Z","score":0.423390102866242,"is_anomaly":false,"confidence":0.4811104386721764,"method":"SEAD","details":"MAD!:w=0.37,s=0.34 RRCF-fast:w=0.18,s=0.27 RRCF-mid:w=0.14,s=0.36 RRCF-slow:w=0.12,s=0.54 COPOD!:w=0.20,s=0.70"} +{"timestamp":"2026-03-16T12:27:16.079956391Z","score":0.9096277487130344,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.37,s=0.89 RRCF-fast:w=0.18,s=0.89 RRCF-mid!:w=0.14,s=0.95 RRCF-slow:w=0.12,s=0.87 COPOD!:w=0.19,s=0.95"} +{"timestamp":"2026-03-16T12:27:46.038717732Z","score":0.516400132642123,"is_anomaly":false,"confidence":0.5868004298256143,"method":"SEAD","details":"MAD!:w=0.37,s=0.34 RRCF-fast:w=0.18,s=0.41 RRCF-mid:w=0.14,s=0.79 RRCF-slow:w=0.12,s=0.61 COPOD!:w=0.19,s=0.70"} +{"timestamp":"2026-03-16T12:28:16.074699916Z","score":0.8540905475785301,"is_anomaly":false,"confidence":0.9705278305503561,"method":"SEAD","details":"MAD!:w=0.37,s=0.88 RRCF-fast:w=0.18,s=0.81 RRCF-mid:w=0.14,s=0.90 RRCF-slow:w=0.11,s=0.88 COPOD!:w=0.19,s=0.81"} +{"timestamp":"2026-03-16T12:28:46.082090148Z","score":0.4198345845040251,"is_anomaly":false,"confidence":0.477070200160759,"method":"SEAD","details":"MAD!:w=0.37,s=0.12 RRCF-fast:w=0.18,s=0.40 RRCF-mid:w=0.14,s=0.70 RRCF-slow:w=0.11,s=0.58 COPOD!:w=0.19,s=0.72"} +{"timestamp":"2026-03-16T12:29:16.036746259Z","score":0.21645864106603754,"is_anomaly":false,"confidence":0.24596822422786938,"method":"SEAD","details":"MAD:w=0.38,s=0.03 RRCF-fast:w=0.18,s=0.20 RRCF-mid:w=0.14,s=0.40 RRCF-slow:w=0.11,s=0.33 COPOD!:w=0.19,s=0.39"} +{"timestamp":"2026-03-16T12:29:46.126082482Z","score":0.21773137834847947,"is_anomaly":false,"confidence":0.24741447247062417,"method":"SEAD","details":"MAD:w=0.38,s=0.03 RRCF-fast:w=0.18,s=0.17 RRCF-mid:w=0.14,s=0.46 RRCF-slow:w=0.11,s=0.34 COPOD!:w=0.19,s=0.39"} +{"timestamp":"2026-03-16T12:30:16.044085504Z","score":0.19980447069094104,"is_anomaly":false,"confidence":0.22704360799182297,"method":"SEAD","details":"MAD:w=0.38,s=0.11 RRCF-fast:w=0.18,s=0.20 RRCF-mid:w=0.14,s=0.44 RRCF-slow:w=0.11,s=0.46 COPOD!:w=0.19,s=0.06"} +{"timestamp":"2026-03-16T12:30:46.133403968Z","score":0.21377301801368337,"is_anomaly":false,"confidence":0.24401557520024234,"method":"SEAD","details":"MAD:w=0.38,s=0.10 RRCF-fast:w=0.18,s=0.09 RRCF-mid:w=0.14,s=0.34 RRCF-slow:w=0.11,s=0.35 COPOD!:w=0.19,s=0.38"} +{"timestamp":"2026-03-16T12:31:16.089315234Z","score":0.25959767970982106,"is_anomaly":false,"confidence":0.2963230707206724,"method":"SEAD","details":"MAD!:w=0.38,s=0.27 RRCF-fast:w=0.18,s=0.12 RRCF-mid:w=0.13,s=0.35 RRCF-slow:w=0.11,s=0.43 COPOD!:w=0.19,s=0.20"} +{"timestamp":"2026-03-16T12:31:46.124398987Z","score":0.6397101898760786,"is_anomaly":false,"confidence":0.7302102547575757,"method":"SEAD","details":"MAD!:w=0.38,s=0.78 RRCF-fast:w=0.18,s=0.38 RRCF-mid:w=0.13,s=0.57 RRCF-slow:w=0.11,s=0.44 COPOD!:w=0.19,s=0.77"} +{"timestamp":"2026-03-16T12:32:16.097645046Z","score":0.2495714586788153,"is_anomaly":false,"confidence":0.28487843605770924,"method":"SEAD","details":"MAD!:w=0.38,s=0.31 RRCF-fast:w=0.18,s=0.06 RRCF-mid:w=0.14,s=0.31 RRCF-slow:w=0.11,s=0.37 COPOD!:w=0.19,s=0.19"} +{"timestamp":"2026-03-16T12:32:46.081115419Z","score":0.9440126092974759,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.38,s=0.92 RRCF-fast!:w=0.18,s=0.98 RRCF-mid!:w=0.13,s=0.98 RRCF-slow!:w=0.11,s=1.00 COPOD!:w=0.19,s=0.90"} +{"timestamp":"2026-03-16T12:33:16.037678935Z","score":0.6429094284139851,"is_anomaly":false,"confidence":0.730556607338666,"method":"SEAD","details":"MAD!:w=0.38,s=0.29 RRCF-fast!:w=0.18,s=0.96 RRCF-mid!:w=0.13,s=0.97 RRCF-slow!:w=0.11,s=1.00 COPOD!:w=0.19,s=0.60"} +{"timestamp":"2026-03-16T12:33:46.083082976Z","score":0.9508960502845215,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.38,s=0.96 RRCF-fast!:w=0.18,s=0.94 RRCF-mid!:w=0.13,s=0.96 RRCF-slow!:w=0.11,s=0.97 COPOD!:w=0.19,s=0.93"} +{"timestamp":"2026-03-16T12:34:16.040306377Z","score":0.6379251060802678,"is_anomaly":false,"confidence":0.7248927774847691,"method":"SEAD","details":"MAD!:w=0.38,s=0.28 RRCF-fast:w=0.18,s=0.92 RRCF-mid:w=0.13,s=0.93 RRCF-slow:w=0.11,s=0.94 COPOD!:w=0.19,s=0.71"} +{"timestamp":"2026-03-16T12:34:46.076234929Z","score":0.9232308559696476,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.39,s=0.97 RRCF-fast:w=0.18,s=0.92 RRCF-mid:w=0.13,s=0.92 RRCF-slow:w=0.11,s=0.94 COPOD!:w=0.19,s=0.82"} +{"timestamp":"2026-03-16T12:35:16.083763582Z","score":0.48647523602785625,"is_anomaly":false,"confidence":0.5524750762689288,"method":"SEAD","details":"MAD!:w=0.39,s=0.20 RRCF-fast:w=0.18,s=0.82 RRCF-mid:w=0.13,s=0.79 RRCF-slow:w=0.11,s=0.86 COPOD!:w=0.19,s=0.32"} +{"timestamp":"2026-03-16T12:35:46.038686772Z","score":0.3408297006661978,"is_anomaly":false,"confidence":0.38706988747828364,"method":"SEAD","details":"MAD:w=0.39,s=0.04 RRCF-fast:w=0.18,s=0.66 RRCF-mid:w=0.13,s=0.55 RRCF-slow:w=0.11,s=0.86 COPOD!:w=0.19,s=0.21"} +{"timestamp":"2026-03-16T12:36:16.078150567Z","score":0.32108962772178673,"is_anomaly":false,"confidence":0.36465168918608276,"method":"SEAD","details":"MAD!:w=0.39,s=0.26 RRCF-fast:w=0.18,s=0.42 RRCF-mid:w=0.13,s=0.43 RRCF-slow:w=0.11,s=0.65 COPOD!:w=0.19,s=0.09"} +{"timestamp":"2026-03-16T12:36:46.037172976Z","score":0.3769489392415023,"is_anomaly":false,"confidence":0.4280894042158722,"method":"SEAD","details":"MAD:w=0.39,s=0.05 RRCF-fast:w=0.18,s=0.76 RRCF-mid:w=0.13,s=0.62 RRCF-slow:w=0.11,s=0.76 COPOD!:w=0.19,s=0.32"} +{"timestamp":"2026-03-16T12:37:16.125558012Z","score":0.3441755160244778,"is_anomaly":false,"confidence":0.3908696278522041,"method":"SEAD","details":"MAD!:w=0.40,s=0.25 RRCF-fast:w=0.17,s=0.43 RRCF-mid:w=0.13,s=0.46 RRCF-slow:w=0.11,s=0.72 COPOD!:w=0.19,s=0.16"} +{"timestamp":"2026-03-16T12:37:46.089232133Z","score":0.29486530751336276,"is_anomaly":false,"confidence":0.33506399060012426,"method":"SEAD","details":"MAD:w=0.40,s=0.08 RRCF-fast:w=0.17,s=0.36 RRCF-mid:w=0.13,s=0.48 RRCF-slow:w=0.11,s=0.70 COPOD!:w=0.19,s=0.33"} +{"timestamp":"2026-03-16T12:38:16.076039295Z","score":0.854262896873919,"is_anomaly":false,"confidence":0.9707236760473293,"method":"SEAD","details":"MAD!:w=0.40,s=0.97 RRCF-fast:w=0.17,s=0.68 RRCF-mid:w=0.13,s=0.74 RRCF-slow:w=0.11,s=0.88 COPOD!:w=0.19,s=0.83"} +{"timestamp":"2026-03-16T12:38:46.040403579Z","score":0.4289032503683088,"is_anomaly":false,"confidence":0.4873751878839021,"method":"SEAD","details":"MAD!:w=0.40,s=0.16 RRCF-fast:w=0.17,s=0.56 RRCF-mid:w=0.13,s=0.59 RRCF-slow:w=0.11,s=0.64 COPOD!:w=0.19,s=0.65"} +{"timestamp":"2026-03-16T12:39:16.081331123Z","score":0.8238978417393025,"is_anomaly":false,"confidence":0.9362189842814581,"method":"SEAD","details":"MAD!:w=0.40,s=0.87 RRCF-fast:w=0.17,s=0.61 RRCF-mid:w=0.13,s=0.81 RRCF-slow:w=0.11,s=0.86 COPOD!:w=0.19,s=0.91"} +{"timestamp":"2026-03-16T12:39:46.095449313Z","score":0.42657388325020384,"is_anomaly":false,"confidence":0.48472826055037854,"method":"SEAD","details":"MAD!:w=0.40,s=0.23 RRCF-fast:w=0.17,s=0.38 RRCF-mid:w=0.13,s=0.63 RRCF-slow:w=0.11,s=0.60 COPOD!:w=0.19,s=0.65"} +{"timestamp":"2026-03-16T12:40:16.075024718Z","score":0.9283843104956448,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.40,s=0.96 RRCF-fast:w=0.17,s=0.80 RRCF-mid:w=0.13,s=0.92 RRCF-slow:w=0.11,s=0.94 COPOD!:w=0.19,s=0.98"} +{"timestamp":"2026-03-16T12:40:46.037914646Z","score":0.5088693633439387,"is_anomaly":false,"confidence":0.5782429985203932,"method":"SEAD","details":"MAD!:w=0.40,s=0.29 RRCF-fast:w=0.17,s=0.49 RRCF-mid:w=0.13,s=0.74 RRCF-slow:w=0.11,s=0.78 COPOD!:w=0.19,s=0.68"} +{"timestamp":"2026-03-16T12:41:16.111168289Z","score":0.8197000874651634,"is_anomaly":false,"confidence":0.9314489544990022,"method":"SEAD","details":"MAD!:w=0.41,s=0.99 RRCF-fast:w=0.17,s=0.55 RRCF-mid:w=0.13,s=0.78 RRCF-slow:w=0.11,s=0.93 COPOD!:w=0.19,s=0.68"} +{"timestamp":"2026-03-16T12:41:46.594780268Z","score":0.26768564595865524,"is_anomaly":false,"confidence":0.3041789538337411,"method":"SEAD","details":"MAD!:w=0.40,s=0.13 RRCF-fast:w=0.17,s=0.28 RRCF-mid:w=0.13,s=0.36 RRCF-slow:w=0.11,s=0.48 COPOD!:w=0.19,s=0.38"} +{"timestamp":"2026-03-16T12:42:16.05355588Z","score":0.2497889522264284,"is_anomaly":false,"confidence":0.2838424223135099,"method":"SEAD","details":"MAD!:w=0.41,s=0.17 RRCF-fast:w=0.17,s=0.29 RRCF-mid:w=0.13,s=0.38 RRCF-slow:w=0.11,s=0.40 COPOD!:w=0.19,s=0.21"} +{"timestamp":"2026-03-16T12:42:46.121219697Z","score":0.3730879504974308,"is_anomaly":false,"confidence":0.42395064578027924,"method":"SEAD","details":"MAD!:w=0.41,s=0.32 RRCF-fast:w=0.17,s=0.11 RRCF-mid:w=0.13,s=0.32 RRCF-slow:w=0.11,s=0.65 COPOD!:w=0.19,s=0.62"} +{"timestamp":"2026-03-16T12:43:16.03845783Z","score":0.20187734259563134,"is_anomaly":false,"confidence":0.22939907238417756,"method":"SEAD","details":"MAD:w=0.41,s=0.07 RRCF-fast:w=0.17,s=0.12 RRCF-mid:w=0.13,s=0.34 RRCF-slow:w=0.11,s=0.49 COPOD!:w=0.19,s=0.31"} +{"timestamp":"2026-03-16T12:43:46.131648554Z","score":0.3315322700073861,"is_anomaly":false,"confidence":0.3767297222524509,"method":"SEAD","details":"MAD!:w=0.41,s=0.34 RRCF-fast:w=0.17,s=0.27 RRCF-mid:w=0.13,s=0.28 RRCF-slow:w=0.10,s=0.51 COPOD!:w=0.18,s=0.31"} +{"timestamp":"2026-03-16T12:44:16.032207559Z","score":0.24723857774791552,"is_anomaly":false,"confidence":0.28221552149759976,"method":"SEAD","details":"MAD:w=0.41,s=0.09 RRCF-fast:w=0.18,s=0.18 RRCF-mid:w=0.13,s=0.27 RRCF-slow:w=0.10,s=0.50 COPOD!:w=0.18,s=0.51"} +{"timestamp":"2026-03-16T12:44:46.080463364Z","score":0.7770740116193027,"is_anomaly":false,"confidence":0.8870069931197149,"method":"SEAD","details":"MAD!:w=0.41,s=0.90 RRCF-fast:w=0.18,s=0.56 RRCF-mid:w=0.13,s=0.61 RRCF-slow:w=0.10,s=0.75 COPOD!:w=0.18,s=0.84"} +{"timestamp":"2026-03-16T12:45:16.090585332Z","score":0.5177859088122329,"is_anomaly":false,"confidence":0.5910372952741391,"method":"SEAD","details":"MAD!:w=0.41,s=0.31 RRCF-fast:w=0.18,s=0.63 RRCF-mid:w=0.13,s=0.75 RRCF-slow:w=0.10,s=0.72 COPOD!:w=0.18,s=0.59"} +{"timestamp":"2026-03-16T12:45:46.078375728Z","score":0.8621398668999187,"is_anomaly":false,"confidence":0.9841071500949579,"method":"SEAD","details":"MAD!:w=0.41,s=0.96 RRCF-fast:w=0.18,s=0.72 RRCF-mid:w=0.13,s=0.75 RRCF-slow:w=0.10,s=0.84 COPOD!:w=0.18,s=0.87"} +{"timestamp":"2026-03-16T12:46:16.074234494Z","score":0.333692231632835,"is_anomaly":false,"confidence":0.3808998095191169,"method":"SEAD","details":"MAD!:w=0.41,s=0.28 RRCF-fast:w=0.18,s=0.50 RRCF-mid:w=0.13,s=0.41 RRCF-slow:w=0.10,s=0.55 COPOD!:w=0.18,s=0.11"} +{"timestamp":"2026-03-16T12:46:46.082536264Z","score":0.7921926018698242,"is_anomaly":false,"confidence":0.9042644165797779,"method":"SEAD","details":"MAD!:w=0.41,s=0.95 RRCF-fast:w=0.18,s=0.47 RRCF-mid:w=0.13,s=0.73 RRCF-slow:w=0.10,s=0.77 COPOD!:w=0.18,s=0.81"} +{"timestamp":"2026-03-16T12:47:16.033005786Z","score":0.28220308824569446,"is_anomaly":false,"confidence":0.3221264757423694,"method":"SEAD","details":"MAD!:w=0.41,s=0.25 RRCF-fast:w=0.18,s=0.33 RRCF-mid:w=0.13,s=0.38 RRCF-slow:w=0.10,s=0.44 COPOD!:w=0.18,s=0.15"} +{"timestamp":"2026-03-16T12:47:46.03591204Z","score":0.15718347347754805,"is_anomaly":false,"confidence":0.17991420958612003,"method":"SEAD","details":"MAD!:w=0.41,s=0.14 RRCF-fast:w=0.18,s=0.28 RRCF-mid:w=0.13,s=0.08 RRCF-slow:w=0.10,s=0.35 COPOD!:w=0.18,s=0.02"} +{"timestamp":"2026-03-16T12:48:16.083254332Z","score":0.1932634742873593,"is_anomaly":false,"confidence":0.22121183893575375,"method":"SEAD","details":"MAD:w=0.41,s=0.01 RRCF-fast:w=0.18,s=0.22 RRCF-mid:w=0.13,s=0.24 RRCF-slow:w=0.10,s=0.37 COPOD!:w=0.18,s=0.44"} +{"timestamp":"2026-03-16T12:48:46.094480104Z","score":0.13208897904531466,"is_anomaly":false,"confidence":0.15119073102408495,"method":"SEAD","details":"MAD:w=0.41,s=0.05 RRCF-fast:w=0.18,s=0.18 RRCF-mid:w=0.13,s=0.07 RRCF-slow:w=0.10,s=0.39 COPOD!:w=0.18,s=0.16"} +{"timestamp":"2026-03-16T12:49:16.081206027Z","score":0.17868287139851569,"is_anomaly":false,"confidence":0.20452269480375249,"method":"SEAD","details":"MAD:w=0.41,s=0.08 RRCF-fast:w=0.18,s=0.24 RRCF-mid:w=0.13,s=0.14 RRCF-slow:w=0.10,s=0.43 COPOD!:w=0.18,s=0.24"} +{"timestamp":"2026-03-16T12:49:46.038928719Z","score":0.1220112849002368,"is_anomaly":false,"confidence":0.13965567370254447,"method":"SEAD","details":"MAD:w=0.41,s=0.09 RRCF-fast:w=0.17,s=0.11 RRCF-mid:w=0.13,s=0.15 RRCF-slow:w=0.10,s=0.39 COPOD!:w=0.18,s=0.04"} +{"timestamp":"2026-03-16T12:50:16.083848458Z","score":0.16843201952561657,"is_anomaly":false,"confidence":0.19278943893725403,"method":"SEAD","details":"MAD!:w=0.41,s=0.16 RRCF-fast:w=0.17,s=0.06 RRCF-mid:w=0.13,s=0.23 RRCF-slow:w=0.10,s=0.24 COPOD!:w=0.18,s=0.21"} +{"timestamp":"2026-03-16T12:50:46.032330353Z","score":0.23225631359920967,"is_anomaly":false,"confidence":0.26790396056913635,"method":"SEAD","details":"MAD:w=0.41,s=0.12 RRCF-fast:w=0.18,s=0.17 RRCF-mid:w=0.13,s=0.09 RRCF-slow:w=0.10,s=0.23 COPOD!:w=0.18,s=0.64"} +{"timestamp":"2026-03-16T12:51:16.130876504Z","score":0.8019187757077949,"is_anomaly":false,"confidence":0.9250005424507101,"method":"SEAD","details":"MAD!:w=0.41,s=0.89 RRCF-fast:w=0.18,s=0.75 RRCF-mid:w=0.13,s=0.53 RRCF-slow:w=0.10,s=0.75 COPOD!:w=0.18,s=0.89"} +{"timestamp":"2026-03-16T12:51:46.090734048Z","score":0.3624747790488437,"is_anomaly":false,"confidence":0.41810888758521253,"method":"SEAD","details":"MAD!:w=0.41,s=0.19 RRCF-fast:w=0.18,s=0.45 RRCF-mid:w=0.13,s=0.39 RRCF-slow:w=0.10,s=0.33 COPOD!:w=0.18,s=0.67"} +{"timestamp":"2026-03-16T12:52:16.082058384Z","score":0.8264260525747084,"is_anomaly":false,"confidence":0.9532692961980908,"method":"SEAD","details":"MAD!:w=0.42,s=0.86 RRCF-fast:w=0.18,s=0.78 RRCF-mid:w=0.13,s=0.68 RRCF-slow:w=0.10,s=0.79 COPOD!:w=0.18,s=0.92"} +{"timestamp":"2026-03-16T12:52:46.037721391Z","score":0.5337322644461492,"is_anomaly":false,"confidence":0.6156516708320974,"method":"SEAD","details":"MAD!:w=0.42,s=0.40 RRCF-fast!:w=0.18,s=0.85 RRCF-mid:w=0.13,s=0.76 RRCF-slow:w=0.10,s=0.74 COPOD!:w=0.18,s=0.26"} +{"timestamp":"2026-03-16T12:53:16.073563538Z","score":0.8295661495733352,"is_anomaly":false,"confidence":0.9568913481004346,"method":"SEAD","details":"MAD!:w=0.42,s=0.90 RRCF-fast:w=0.17,s=0.81 RRCF-mid:w=0.13,s=0.71 RRCF-slow:w=0.10,s=0.80 COPOD!:w=0.18,s=0.79"} +{"timestamp":"2026-03-16T12:53:46.031246164Z","score":0.38636237659792005,"is_anomaly":false,"confidence":0.4456628511038212,"method":"SEAD","details":"MAD!:w=0.42,s=0.23 RRCF-fast:w=0.17,s=0.48 RRCF-mid:w=0.13,s=0.38 RRCF-slow:w=0.10,s=0.46 COPOD!:w=0.18,s=0.63"} +{"timestamp":"2026-03-16T12:54:16.045660199Z","score":0.18355561137716922,"is_anomaly":false,"confidence":0.21210285432829834,"method":"SEAD","details":"MAD!:w=0.42,s=0.14 RRCF-fast:w=0.17,s=0.32 RRCF-mid:w=0.13,s=0.18 RRCF-slow:w=0.10,s=0.24 COPOD!:w=0.18,s=0.12"} +{"timestamp":"2026-03-16T12:54:46.080185036Z","score":0.15551768387009257,"is_anomaly":false,"confidence":0.17970436534132234,"method":"SEAD","details":"MAD:w=0.42,s=0.00 RRCF-fast:w=0.17,s=0.28 RRCF-mid:w=0.13,s=0.17 RRCF-slow:w=0.10,s=0.20 COPOD!:w=0.18,s=0.36"} +{"timestamp":"2026-03-16T12:55:16.039287862Z","score":0.07420817898069171,"is_anomaly":false,"confidence":0.08574930757070644,"method":"SEAD","details":"MAD:w=0.42,s=0.06 RRCF-fast:w=0.17,s=0.03 RRCF-mid:w=0.13,s=0.19 RRCF-slow:w=0.10,s=0.19 COPOD!:w=0.18,s=0.02"} +{"timestamp":"2026-03-16T12:55:46.126041857Z","score":0.19640438770517554,"is_anomaly":false,"confidence":0.226949919549291,"method":"SEAD","details":"MAD!:w=0.42,s=0.19 RRCF-fast:w=0.17,s=0.21 RRCF-mid:w=0.13,s=0.13 RRCF-slow:w=0.10,s=0.25 COPOD!:w=0.18,s=0.23"} +{"timestamp":"2026-03-16T12:56:16.081888688Z","score":0.49060240248509274,"is_anomaly":false,"confidence":0.5669026902892692,"method":"SEAD","details":"MAD!:w=0.42,s=0.41 RRCF-fast:w=0.17,s=0.75 RRCF-mid:w=0.13,s=0.50 RRCF-slow:w=0.10,s=0.66 COPOD!:w=0.18,s=0.34"} +{"timestamp":"2026-03-16T12:56:46.12547934Z","score":0.6257525568748589,"is_anomaly":false,"confidence":0.7230718931477826,"method":"SEAD","details":"MAD!:w=0.42,s=0.77 RRCF-fast:w=0.17,s=0.52 RRCF-mid:w=0.13,s=0.47 RRCF-slow:w=0.10,s=0.25 COPOD!:w=0.18,s=0.70"} +{"timestamp":"2026-03-16T12:57:16.033614329Z","score":0.6442061804907758,"is_anomaly":false,"confidence":0.744395492095643,"method":"SEAD","details":"MAD!:w=0.42,s=0.85 RRCF-fast:w=0.17,s=0.80 RRCF-mid:w=0.13,s=0.62 RRCF-slow:w=0.10,s=0.53 COPOD!:w=0.18,s=0.09"} +{"timestamp":"2026-03-16T12:57:46.075919447Z","score":0.9006166474456241,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.42,s=0.77 RRCF-fast!:w=0.17,s=1.00 RRCF-mid!:w=0.13,s=1.00 RRCF-slow!:w=0.10,s=1.00 COPOD!:w=0.18,s=0.99"} +{"timestamp":"2026-03-16T12:58:16.032978341Z","score":0.6868113685034396,"is_anomaly":false,"confidence":0.7936267954531375,"method":"SEAD","details":"MAD!:w=0.42,s=0.37 RRCF-fast!:w=0.17,s=1.00 RRCF-mid!:w=0.13,s=1.00 RRCF-slow!:w=0.10,s=1.00 COPOD!:w=0.18,s=0.73"} +{"timestamp":"2026-03-16T12:58:46.081809036Z","score":0.8601881210396825,"is_anomaly":false,"confidence":0.9939677374227389,"method":"SEAD","details":"MAD!:w=0.42,s=0.80 RRCF-fast!:w=0.17,s=0.94 RRCF-mid!:w=0.13,s=0.97 RRCF-slow!:w=0.10,s=0.98 COPOD!:w=0.18,s=0.78"} +{"timestamp":"2026-03-16T12:59:16.075949141Z","score":0.4447182094324131,"is_anomaly":false,"confidence":0.5138824189828998,"method":"SEAD","details":"MAD:w=0.42,s=0.00 RRCF-fast!:w=0.17,s=0.93 RRCF-mid!:w=0.13,s=0.94 RRCF-slow!:w=0.10,s=0.97 COPOD!:w=0.18,s=0.38"} +{"timestamp":"2026-03-16T12:59:46.032818885Z","score":0.48776573653312444,"is_anomaly":false,"confidence":0.5636248556282951,"method":"SEAD","details":"MAD:w=0.43,s=0.04 RRCF-fast:w=0.17,s=0.91 RRCF-mid:w=0.12,s=0.91 RRCF-slow!:w=0.10,s=0.96 COPOD!:w=0.18,s=0.61"} +{"timestamp":"2026-03-16T13:00:16.123073253Z","score":0.4506433262340364,"is_anomaly":false,"confidence":0.5207290317147248,"method":"SEAD","details":"MAD:w=0.43,s=0.14 RRCF-fast:w=0.17,s=0.84 RRCF-mid!:w=0.12,s=0.93 RRCF-slow!:w=0.10,s=0.95 COPOD!:w=0.18,s=0.24"} +{"timestamp":"2026-03-16T13:00:46.031946259Z","score":0.40222468161842967,"is_anomaly":false,"confidence":0.4665422596274878,"method":"SEAD","details":"MAD:w=0.44,s=0.08 RRCF-fast:w=0.16,s=0.83 RRCF-mid:w=0.12,s=0.88 RRCF-slow:w=0.10,s=0.94 COPOD!:w=0.18,s=0.19"} +{"timestamp":"2026-03-16T13:01:16.082950295Z","score":0.8567665027988883,"is_anomaly":false,"confidence":0.993767410245913,"method":"SEAD","details":"MAD!:w=0.44,s=0.77 RRCF-fast!:w=0.16,s=0.93 RRCF-mid!:w=0.12,s=0.96 RRCF-slow!:w=0.10,s=0.97 COPOD!:w=0.18,s=0.88"} +{"timestamp":"2026-03-16T13:01:46.032494994Z","score":0.6041721439893515,"is_anomaly":false,"confidence":0.7007820507846746,"method":"SEAD","details":"MAD!:w=0.44,s=0.34 RRCF-fast!:w=0.16,s=0.93 RRCF-mid:w=0.12,s=0.92 RRCF-slow:w=0.10,s=0.94 COPOD!:w=0.18,s=0.56"} +{"timestamp":"2026-03-16T13:02:16.080957281Z","score":0.8419410106050539,"is_anomaly":false,"confidence":0.9765712536093525,"method":"SEAD","details":"MAD!:w=0.45,s=0.76 RRCF-fast:w=0.16,s=0.85 RRCF-mid:w=0.12,s=0.86 RRCF-slow:w=0.10,s=0.93 COPOD!:w=0.18,s=0.98"} +{"timestamp":"2026-03-16T13:02:46.0765936Z","score":0.45954101920927054,"is_anomaly":false,"confidence":0.5330237434230799,"method":"SEAD","details":"MAD!:w=0.45,s=0.18 RRCF-fast:w=0.16,s=0.67 RRCF-mid:w=0.12,s=0.86 RRCF-slow:w=0.10,s=0.88 COPOD!:w=0.18,s=0.49"} +{"timestamp":"2026-03-16T13:03:16.076481087Z","score":0.8532128428920907,"is_anomaly":false,"confidence":0.9896455037627157,"method":"SEAD","details":"MAD!:w=0.45,s=0.76 RRCF-fast!:w=0.16,s=0.92 RRCF-mid:w=0.12,s=0.91 RRCF-slow:w=0.09,s=0.93 COPOD!:w=0.18,s=0.96"} +{"timestamp":"2026-03-16T13:03:46.033262459Z","score":0.6044868102129072,"is_anomaly":false,"confidence":0.7011470335857684,"method":"SEAD","details":"MAD!:w=0.45,s=0.34 RRCF-fast:w=0.16,s=0.89 RRCF-mid:w=0.12,s=0.84 RRCF-slow:w=0.09,s=0.90 COPOD!:w=0.18,s=0.70"} +{"timestamp":"2026-03-16T13:04:16.033630947Z","score":0.3418310342264939,"is_anomaly":false,"confidence":0.39696654836925943,"method":"SEAD","details":"MAD!:w=0.46,s=0.21 RRCF-fast:w=0.16,s=0.40 RRCF-mid:w=0.12,s=0.63 RRCF-slow:w=0.09,s=0.82 COPOD!:w=0.17,s=0.18"} +{"timestamp":"2026-03-16T13:04:46.080804171Z","score":0.25340779748045067,"is_anomaly":false,"confidence":0.2942811173458813,"method":"SEAD","details":"MAD:w=0.46,s=0.00 RRCF-fast:w=0.16,s=0.49 RRCF-mid:w=0.12,s=0.59 RRCF-slow:w=0.09,s=0.71 COPOD!:w=0.17,s=0.23"} +{"timestamp":"2026-03-16T13:05:16.038282812Z","score":0.5814900107248915,"is_anomaly":false,"confidence":0.6752812335807893,"method":"SEAD","details":"MAD!:w=0.46,s=0.41 RRCF-fast:w=0.16,s=0.70 RRCF-mid:w=0.12,s=0.83 RRCF-slow!:w=0.09,s=0.94 COPOD!:w=0.17,s=0.59"} +{"timestamp":"2026-03-16T13:05:46.478869196Z","score":0.5228921291866135,"is_anomaly":false,"confidence":0.6072318277430848,"method":"SEAD","details":"MAD!:w=0.46,s=0.42 RRCF-fast:w=0.15,s=0.43 RRCF-mid:w=0.12,s=0.68 RRCF-slow:w=0.09,s=0.77 COPOD!:w=0.17,s=0.64"} +{"timestamp":"2026-03-16T13:06:16.041759635Z","score":0.34542366119708146,"is_anomaly":false,"confidence":0.40113864681935946,"method":"SEAD","details":"MAD!:w=0.47,s=0.34 RRCF-fast:w=0.15,s=0.39 RRCF-mid:w=0.11,s=0.42 RRCF-slow:w=0.09,s=0.72 COPOD!:w=0.17,s=0.08"} +{"timestamp":"2026-03-16T13:06:46.12932945Z","score":0.844047638587863,"is_anomaly":false,"confidence":0.9801879999211585,"method":"SEAD","details":"MAD!:w=0.47,s=0.76 RRCF-fast:w=0.15,s=0.88 RRCF-mid!:w=0.11,s=0.95 RRCF-slow!:w=0.09,s=0.96 COPOD!:w=0.17,s=0.90"} +{"timestamp":"2026-03-16T13:07:16.048307232Z","score":0.515612703280044,"is_anomaly":false,"confidence":0.5987782694440862,"method":"SEAD","details":"MAD!:w=0.47,s=0.38 RRCF-fast:w=0.15,s=0.66 RRCF-mid:w=0.11,s=0.85 RRCF-slow:w=0.09,s=0.87 COPOD!:w=0.17,s=0.34"} +{"timestamp":"2026-03-16T13:07:46.131425164Z","score":0.8550335365252562,"is_anomaly":false,"confidence":0.9940076078844287,"method":"SEAD","details":"MAD!:w=0.47,s=0.89 RRCF-fast:w=0.15,s=0.77 RRCF-mid:w=0.11,s=0.77 RRCF-slow:w=0.09,s=0.84 COPOD!:w=0.17,s=0.89"} +{"timestamp":"2026-03-16T13:08:16.034234628Z","score":0.4714057095151167,"is_anomaly":false,"confidence":0.5480262956262909,"method":"SEAD","details":"MAD!:w=0.47,s=0.32 RRCF-fast:w=0.15,s=0.46 RRCF-mid:w=0.11,s=0.73 RRCF-slow:w=0.09,s=0.74 COPOD!:w=0.17,s=0.59"} +{"timestamp":"2026-03-16T13:08:46.073420761Z","score":0.804287262060843,"is_anomaly":false,"confidence":0.9350132167469671,"method":"SEAD","details":"MAD!:w=0.47,s=0.85 RRCF-fast:w=0.15,s=0.73 RRCF-mid:w=0.11,s=0.68 RRCF-slow:w=0.09,s=0.83 COPOD!:w=0.17,s=0.81"} +{"timestamp":"2026-03-16T13:09:16.083671766Z","score":0.4723722941122819,"is_anomaly":false,"confidence":0.549149985402426,"method":"SEAD","details":"MAD!:w=0.47,s=0.30 RRCF-fast:w=0.15,s=0.51 RRCF-mid:w=0.11,s=0.61 RRCF-slow:w=0.09,s=0.68 COPOD!:w=0.17,s=0.70"} +{"timestamp":"2026-03-16T13:09:46.089280683Z","score":0.25121212703340856,"is_anomaly":false,"confidence":0.2920432413432731,"method":"SEAD","details":"MAD!:w=0.47,s=0.23 RRCF-fast:w=0.15,s=0.34 RRCF-mid:w=0.11,s=0.33 RRCF-slow:w=0.09,s=0.53 COPOD!:w=0.17,s=0.04"} +{"timestamp":"2026-03-16T13:10:16.081551513Z","score":0.17757580028486794,"is_anomaly":false,"confidence":0.20643833126902245,"method":"SEAD","details":"MAD:w=0.47,s=0.03 RRCF-fast:w=0.15,s=0.23 RRCF-mid:w=0.11,s=0.38 RRCF-slow:w=0.09,s=0.41 COPOD!:w=0.17,s=0.28"} +{"timestamp":"2026-03-16T13:10:46.034985094Z","score":0.15504282399300476,"is_anomaly":false,"confidence":0.18096275179586296,"method":"SEAD","details":"MAD:w=0.47,s=0.07 RRCF-fast:w=0.15,s=0.10 RRCF-mid:w=0.11,s=0.42 RRCF-slow:w=0.09,s=0.57 COPOD!:w=0.17,s=0.06"} +{"timestamp":"2026-03-16T13:11:16.076590475Z","score":0.3687873271076845,"is_anomaly":false,"confidence":0.430440879636317,"method":"SEAD","details":"MAD!:w=0.47,s=0.32 RRCF-fast:w=0.15,s=0.24 RRCF-mid:w=0.11,s=0.25 RRCF-slow:w=0.09,s=0.63 COPOD!:w=0.17,s=0.55"} +{"timestamp":"2026-03-16T13:11:46.037161846Z","score":0.173561872526347,"is_anomaly":false,"confidence":0.20257779915455887,"method":"SEAD","details":"MAD!:w=0.48,s=0.17 RRCF-fast:w=0.15,s=0.03 RRCF-mid:w=0.11,s=0.24 RRCF-slow:w=0.09,s=0.45 COPOD!:w=0.17,s=0.11"} +{"timestamp":"2026-03-16T13:12:16.078391181Z","score":0.6107161391054398,"is_anomaly":false,"confidence":0.7128151452120849,"method":"SEAD","details":"MAD!:w=0.47,s=0.75 RRCF-fast:w=0.15,s=0.27 RRCF-mid:w=0.11,s=0.33 RRCF-slow:w=0.09,s=0.51 COPOD!:w=0.17,s=0.76"} +{"timestamp":"2026-03-16T13:12:46.034062937Z","score":0.38368369819889087,"is_anomaly":false,"confidence":0.4478276134109718,"method":"SEAD","details":"MAD!:w=0.47,s=0.36 RRCF-fast:w=0.15,s=0.13 RRCF-mid:w=0.11,s=0.32 RRCF-slow:w=0.09,s=0.49 COPOD!:w=0.17,s=0.65"} +{"timestamp":"2026-03-16T13:13:16.124091464Z","score":0.8793437109087656,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.47,s=0.96 RRCF-fast:w=0.15,s=0.67 RRCF-mid:w=0.11,s=0.79 RRCF-slow:w=0.09,s=0.78 COPOD!:w=0.17,s=0.95"} +{"timestamp":"2026-03-16T13:13:46.032219751Z","score":0.4712051264559797,"is_anomaly":false,"confidence":0.5477931105191837,"method":"SEAD","details":"MAD!:w=0.47,s=0.32 RRCF-fast:w=0.16,s=0.44 RRCF-mid:w=0.11,s=0.63 RRCF-slow:w=0.09,s=0.57 COPOD!:w=0.17,s=0.75"} +{"timestamp":"2026-03-16T13:14:16.133719687Z","score":0.7583149646123745,"is_anomaly":false,"confidence":0.8850894171692147,"method":"SEAD","details":"MAD!:w=0.47,s=0.86 RRCF-fast:w=0.16,s=0.54 RRCF-mid:w=0.11,s=0.66 RRCF-slow:w=0.09,s=0.67 COPOD!:w=0.17,s=0.80"} +{"timestamp":"2026-03-16T13:14:46.033554986Z","score":0.4037221946540209,"is_anomaly":false,"confidence":0.47121612870617563,"method":"SEAD","details":"MAD!:w=0.47,s=0.32 RRCF-fast:w=0.16,s=0.32 RRCF-mid:w=0.11,s=0.35 RRCF-slow:w=0.09,s=0.47 COPOD!:w=0.17,s=0.72"} +{"timestamp":"2026-03-16T13:15:16.07532359Z","score":0.7824493516179103,"is_anomaly":false,"confidence":0.9132585705227755,"method":"SEAD","details":"MAD!:w=0.47,s=0.96 RRCF-fast:w=0.16,s=0.52 RRCF-mid:w=0.11,s=0.53 RRCF-slow:w=0.09,s=0.62 COPOD!:w=0.17,s=0.78"} +{"timestamp":"2026-03-16T13:15:46.082484514Z","score":0.3435036401853288,"is_anomaly":false,"confidence":0.4009302873807154,"method":"SEAD","details":"MAD!:w=0.47,s=0.31 RRCF-fast:w=0.16,s=0.24 RRCF-mid:w=0.11,s=0.29 RRCF-slow:w=0.09,s=0.41 COPOD!:w=0.17,s=0.52"} +{"timestamp":"2026-03-16T13:16:16.032244324Z","score":0.23610723195685773,"is_anomaly":false,"confidence":0.275579438721684,"method":"SEAD","details":"MAD!:w=0.47,s=0.33 RRCF-fast:w=0.16,s=0.09 RRCF-mid:w=0.11,s=0.23 RRCF-slow:w=0.09,s=0.29 COPOD!:w=0.17,s=0.07"} +{"timestamp":"2026-03-16T13:16:46.080435607Z","score":0.11568160213108031,"is_anomaly":false,"confidence":0.13502115425051187,"method":"SEAD","details":"MAD:w=0.47,s=0.01 RRCF-fast:w=0.16,s=0.12 RRCF-mid:w=0.11,s=0.18 RRCF-slow:w=0.09,s=0.23 COPOD!:w=0.17,s=0.31"} +{"timestamp":"2026-03-16T13:17:16.04060542Z","score":0.208162317935316,"is_anomaly":false,"confidence":0.2429627176777926,"method":"SEAD","details":"MAD!:w=0.47,s=0.34 RRCF-fast:w=0.16,s=0.03 RRCF-mid:w=0.11,s=0.14 RRCF-slow:w=0.09,s=0.23 COPOD!:w=0.17,s=0.02"} +{"timestamp":"2026-03-16T13:17:46.077074946Z","score":0.1358961533186677,"is_anomaly":false,"confidence":0.15893663524700072,"method":"SEAD","details":"MAD:w=0.47,s=0.12 RRCF-fast:w=0.16,s=0.00 RRCF-mid:w=0.11,s=0.18 RRCF-slow:w=0.09,s=0.26 COPOD!:w=0.17,s=0.20"} +{"timestamp":"2026-03-16T13:18:16.038378143Z","score":0.11382850424363448,"is_anomaly":false,"confidence":0.13312753170620484,"method":"SEAD","details":"MAD:w=0.47,s=0.13 RRCF-fast:w=0.16,s=0.04 RRCF-mid:w=0.11,s=0.16 RRCF-slow:w=0.09,s=0.21 COPOD!:w=0.17,s=0.07"} +{"timestamp":"2026-03-16T13:18:46.081160224Z","score":0.6913075380473247,"is_anomaly":false,"confidence":0.8085151149236878,"method":"SEAD","details":"MAD!:w=0.47,s=0.74 RRCF-fast:w=0.16,s=0.64 RRCF-mid:w=0.11,s=0.53 RRCF-slow:w=0.09,s=0.56 COPOD!:w=0.17,s=0.79"} +{"timestamp":"2026-03-16T13:19:16.035465209Z","score":0.3314130784547433,"is_anomaly":false,"confidence":0.3876024322993955,"method":"SEAD","details":"MAD!:w=0.47,s=0.33 RRCF-fast:w=0.16,s=0.29 RRCF-mid:w=0.11,s=0.22 RRCF-slow:w=0.09,s=0.37 COPOD!:w=0.17,s=0.43"} +{"timestamp":"2026-03-16T13:19:46.137168928Z","score":0.8059143060410222,"is_anomaly":false,"confidence":0.9425528609277152,"method":"SEAD","details":"MAD!:w=0.47,s=0.82 RRCF-fast:w=0.16,s=0.74 RRCF-mid:w=0.11,s=0.73 RRCF-slow:w=0.09,s=0.70 COPOD!:w=0.17,s=0.94"} +{"timestamp":"2026-03-16T13:20:16.039465118Z","score":0.43850960876260825,"is_anomaly":false,"confidence":0.512856619103683,"method":"SEAD","details":"MAD!:w=0.47,s=0.39 RRCF-fast:w=0.16,s=0.52 RRCF-mid:w=0.11,s=0.47 RRCF-slow:w=0.09,s=0.54 COPOD!:w=0.17,s=0.41"} +{"timestamp":"2026-03-16T13:20:46.086162519Z","score":0.7513081185034038,"is_anomaly":false,"confidence":0.8794811541654602,"method":"SEAD","details":"MAD!:w=0.47,s=0.81 RRCF-fast:w=0.16,s=0.54 RRCF-mid:w=0.11,s=0.67 RRCF-slow:w=0.09,s=0.64 COPOD!:w=0.17,s=0.90"} +{"timestamp":"2026-03-16T13:21:16.046101493Z","score":0.36910259274546786,"is_anomaly":false,"confidence":0.4320714315185152,"method":"SEAD","details":"MAD!:w=0.47,s=0.38 RRCF-fast:w=0.16,s=0.49 RRCF-mid:w=0.11,s=0.28 RRCF-slow:w=0.09,s=0.46 COPOD!:w=0.17,s=0.23"} +{"timestamp":"2026-03-16T13:21:46.089724888Z","score":0.7317552997255741,"is_anomaly":false,"confidence":0.8565926278705912,"method":"SEAD","details":"MAD!:w=0.47,s=0.87 RRCF-fast:w=0.16,s=0.56 RRCF-mid:w=0.11,s=0.56 RRCF-slow:w=0.09,s=0.47 COPOD!:w=0.17,s=0.78"} +{"timestamp":"2026-03-16T13:22:16.080303034Z","score":0.21942397432034683,"is_anomaly":false,"confidence":0.2568576665606158,"method":"SEAD","details":"MAD!:w=0.47,s=0.22 RRCF-fast:w=0.16,s=0.32 RRCF-mid:w=0.12,s=0.22 RRCF-slow:w=0.09,s=0.17 COPOD!:w=0.17,s=0.15"} +{"timestamp":"2026-03-16T13:22:46.037409945Z","score":0.09612201881494536,"is_anomaly":false,"confidence":0.11252041867520328,"method":"SEAD","details":"MAD:w=0.46,s=0.09 RRCF-fast:w=0.16,s=0.11 RRCF-mid:w=0.12,s=0.12 RRCF-slow:w=0.09,s=0.15 COPOD!:w=0.17,s=0.06"} +{"timestamp":"2026-03-16T13:23:16.083730976Z","score":0.12818820302006595,"is_anomaly":false,"confidence":0.15005708838480117,"method":"SEAD","details":"MAD:w=0.46,s=0.10 RRCF-fast:w=0.16,s=0.13 RRCF-mid:w=0.12,s=0.06 RRCF-slow:w=0.09,s=0.22 COPOD!:w=0.17,s=0.19"} +{"timestamp":"2026-03-16T13:23:46.038327746Z","score":0.10015610900708141,"is_anomaly":false,"confidence":0.11724272395955819,"method":"SEAD","details":"MAD:w=0.47,s=0.10 RRCF-fast:w=0.16,s=0.00 RRCF-mid:w=0.12,s=0.12 RRCF-slow:w=0.09,s=0.14 COPOD!:w=0.17,s=0.15"} +{"timestamp":"2026-03-16T13:24:16.08492187Z","score":0.10329952574880284,"is_anomaly":false,"confidence":0.1209384462864282,"method":"SEAD","details":"MAD:w=0.47,s=0.15 RRCF-fast:w=0.16,s=0.09 RRCF-mid:w=0.12,s=0.01 RRCF-slow:w=0.09,s=0.12 COPOD!:w=0.17,s=0.05"} +{"timestamp":"2026-03-16T13:24:46.088499372Z","score":0.14775220974825323,"is_anomaly":false,"confidence":0.1729816526533984,"method":"SEAD","details":"MAD:w=0.46,s=0.16 RRCF-fast:w=0.16,s=0.07 RRCF-mid:w=0.12,s=0.08 RRCF-slow:w=0.09,s=0.06 COPOD!:w=0.17,s=0.28"} +{"timestamp":"2026-03-16T13:25:16.080853366Z","score":0.778512913586979,"is_anomaly":false,"confidence":0.9114479616497246,"method":"SEAD","details":"MAD!:w=0.46,s=0.81 RRCF-fast:w=0.16,s=0.80 RRCF-mid:w=0.12,s=0.57 RRCF-slow:w=0.09,s=0.45 COPOD!:w=0.17,s=0.99"} +{"timestamp":"2026-03-16T13:25:46.091834378Z","score":0.4925302054474038,"is_anomaly":false,"confidence":0.5766322484460643,"method":"SEAD","details":"MAD!:w=0.46,s=0.50 RRCF-fast:w=0.16,s=0.60 RRCF-mid:w=0.12,s=0.29 RRCF-slow:w=0.09,s=0.31 COPOD!:w=0.17,s=0.61"} +{"timestamp":"2026-03-16T13:26:16.1258583Z","score":0.7309214809610738,"is_anomaly":false,"confidence":0.8557300493301813,"method":"SEAD","details":"MAD!:w=0.46,s=0.82 RRCF-fast:w=0.16,s=0.65 RRCF-mid:w=0.12,s=0.46 RRCF-slow:w=0.09,s=0.50 COPOD!:w=0.17,s=0.89"} +{"timestamp":"2026-03-16T13:26:46.039330063Z","score":0.39830825743097076,"is_anomaly":false,"confidence":0.46632142255807535,"method":"SEAD","details":"MAD!:w=0.46,s=0.46 RRCF-fast:w=0.16,s=0.32 RRCF-mid:w=0.12,s=0.28 RRCF-slow:w=0.09,s=0.11 COPOD!:w=0.17,s=0.54"} +{"timestamp":"2026-03-16T13:27:16.087809173Z","score":0.7785324530709401,"is_anomaly":false,"confidence":0.9114708376001645,"method":"SEAD","details":"MAD!:w=0.46,s=0.94 RRCF-fast:w=0.16,s=0.61 RRCF-mid:w=0.12,s=0.57 RRCF-slow:w=0.09,s=0.51 COPOD!:w=0.17,s=0.80"} +{"timestamp":"2026-03-16T13:27:46.093729493Z","score":0.25572166372138966,"is_anomaly":false,"confidence":0.2994081417320417,"method":"SEAD","details":"MAD!:w=0.46,s=0.32 RRCF-fast:w=0.16,s=0.25 RRCF-mid:w=0.12,s=0.13 RRCF-slow:w=0.09,s=0.14 COPOD!:w=0.17,s=0.24"} +{"timestamp":"2026-03-16T13:28:16.037707324Z","score":0.3148453111008252,"is_anomaly":false,"confidence":0.3686322392789114,"method":"SEAD","details":"MAD!:w=0.46,s=0.47 RRCF-fast:w=0.16,s=0.02 RRCF-mid:w=0.12,s=0.17 RRCF-slow:w=0.09,s=0.10 COPOD!:w=0.17,s=0.39"} +{"timestamp":"2026-03-16T13:28:46.083157853Z","score":0.0953725141719437,"is_anomaly":false,"confidence":0.11166557742892547,"method":"SEAD","details":"MAD:w=0.46,s=0.02 RRCF-fast:w=0.16,s=0.02 RRCF-mid:w=0.12,s=0.04 RRCF-slow:w=0.09,s=0.06 COPOD!:w=0.17,s=0.42"} +{"timestamp":"2026-03-16T13:29:16.041638731Z","score":0.2831951899159061,"is_anomaly":false,"confidence":0.33157513652247445,"method":"SEAD","details":"MAD!:w=0.46,s=0.49 RRCF-fast:w=0.16,s=0.19 RRCF-mid:w=0.12,s=0.07 RRCF-slow:w=0.09,s=0.05 COPOD!:w=0.17,s=0.08"} +{"timestamp":"2026-03-16T13:29:46.132719053Z","score":0.18906062708665322,"is_anomaly":false,"confidence":0.22135899714926874,"method":"SEAD","details":"MAD:w=0.45,s=0.13 RRCF-fast:w=0.17,s=0.06 RRCF-mid:w=0.12,s=0.01 RRCF-slow:w=0.09,s=0.02 COPOD!:w=0.17,s=0.68"} +{"timestamp":"2026-03-16T13:30:16.033705721Z","score":0.2176985563284168,"is_anomaly":false,"confidence":0.25488931699996403,"method":"SEAD","details":"MAD:w=0.45,s=0.19 RRCF-fast:w=0.17,s=0.51 RRCF-mid:w=0.12,s=0.23 RRCF-slow:w=0.09,s=0.07 COPOD!:w=0.17,s=0.08"} +{"timestamp":"2026-03-16T13:30:46.079344191Z","score":0.3659747563984759,"is_anomaly":false,"confidence":0.42868433514818055,"method":"SEAD","details":"MAD!:w=0.46,s=0.54 RRCF-fast:w=0.16,s=0.30 RRCF-mid:w=0.12,s=0.02 RRCF-slow:w=0.09,s=0.02 COPOD!:w=0.17,s=0.40"} +{"timestamp":"2026-03-16T13:31:16.034265832Z","score":0.31657611832160465,"is_anomaly":false,"confidence":0.37082126686007133,"method":"SEAD","details":"MAD!:w=0.45,s=0.40 RRCF-fast:w=0.17,s=0.38 RRCF-mid:w=0.12,s=0.15 RRCF-slow:w=0.09,s=0.06 COPOD!:w=0.17,s=0.30"} +{"timestamp":"2026-03-16T13:31:46.126019691Z","score":0.8053356872856265,"is_anomaly":false,"confidence":0.9433295265295506,"method":"SEAD","details":"MAD!:w=0.45,s=0.90 RRCF-fast!:w=0.17,s=0.74 RRCF-mid:w=0.12,s=0.69 RRCF-slow:w=0.09,s=0.52 COPOD!:w=0.17,s=0.86"} +{"timestamp":"2026-03-16T13:32:16.031931585Z","score":0.378884977104129,"is_anomaly":false,"confidence":0.4438067152660958,"method":"SEAD","details":"MAD!:w=0.45,s=0.38 RRCF-fast:w=0.17,s=0.43 RRCF-mid:w=0.12,s=0.22 RRCF-slow:w=0.09,s=0.13 COPOD!:w=0.17,s=0.58"} +{"timestamp":"2026-03-16T13:32:46.131682908Z","score":0.7297239240856523,"is_anomaly":false,"confidence":0.8547617281498435,"method":"SEAD","details":"MAD!:w=0.45,s=0.92 RRCF-fast:w=0.17,s=0.55 RRCF-mid:w=0.12,s=0.44 RRCF-slow:w=0.09,s=0.37 COPOD!:w=0.17,s=0.81"} +{"timestamp":"2026-03-16T13:33:16.03661354Z","score":0.3648763141425324,"is_anomaly":false,"confidence":0.4273976753992358,"method":"SEAD","details":"MAD!:w=0.45,s=0.36 RRCF-fast:w=0.17,s=0.32 RRCF-mid:w=0.12,s=0.22 RRCF-slow:w=0.10,s=0.16 COPOD!:w=0.17,s=0.63"} +{"timestamp":"2026-03-16T13:33:46.082943597Z","score":0.7585649675858838,"is_anomaly":false,"confidence":0.8885446690268224,"method":"SEAD","details":"MAD!:w=0.45,s=0.91 RRCF-fast:w=0.17,s=0.55 RRCF-mid:w=0.12,s=0.64 RRCF-slow:w=0.10,s=0.46 COPOD!:w=0.17,s=0.81"} +{"timestamp":"2026-03-16T13:34:16.038734843Z","score":0.3071617020833986,"is_anomaly":false,"confidence":0.3600059523743557,"method":"SEAD","details":"MAD!:w=0.45,s=0.23 RRCF-fast:w=0.17,s=0.33 RRCF-mid:w=0.12,s=0.20 RRCF-slow:w=0.10,s=0.08 COPOD!:w=0.17,s=0.69"} +{"timestamp":"2026-03-16T13:34:46.038760063Z","score":0.10223001603327057,"is_anomaly":false,"confidence":0.11981771826915646,"method":"SEAD","details":"MAD:w=0.45,s=0.09 RRCF-fast:w=0.17,s=0.10 RRCF-mid:w=0.12,s=0.01 RRCF-slow:w=0.10,s=0.01 COPOD!:w=0.17,s=0.27"} +{"timestamp":"2026-03-16T13:35:16.085377539Z","score":0.09987300147367645,"is_anomaly":false,"confidence":0.11705520176553155,"method":"SEAD","details":"MAD:w=0.45,s=0.09 RRCF-fast:w=0.17,s=0.16 RRCF-mid:w=0.12,s=0.02 RRCF-slow:w=0.10,s=0.01 COPOD!:w=0.17,s=0.17"} +{"timestamp":"2026-03-16T13:35:46.038264786Z","score":0.10237491172938405,"is_anomaly":false,"confidence":0.11998754189209014,"method":"SEAD","details":"MAD:w=0.45,s=0.09 RRCF-fast:w=0.17,s=0.10 RRCF-mid:w=0.12,s=0.01 RRCF-slow:w=0.10,s=0.01 COPOD!:w=0.17,s=0.25"} +{"timestamp":"2026-03-16T13:36:16.13211202Z","score":0.24805944583596967,"is_anomaly":false,"confidence":0.29073571489516686,"method":"SEAD","details":"MAD!:w=0.45,s=0.36 RRCF-fast:w=0.17,s=0.19 RRCF-mid:w=0.12,s=0.12 RRCF-slow:w=0.10,s=0.01 COPOD!:w=0.17,s=0.23"} +{"timestamp":"2026-03-16T13:36:46.03427856Z","score":0.1798985356356778,"is_anomaly":false,"confidence":0.21084836818194766,"method":"SEAD","details":"MAD!:w=0.45,s=0.25 RRCF-fast:w=0.17,s=0.21 RRCF-mid:w=0.12,s=0.11 RRCF-slow:w=0.10,s=0.02 COPOD!:w=0.17,s=0.10"} +{"timestamp":"2026-03-16T13:37:16.074494096Z","score":0.5890683276680942,"is_anomaly":false,"confidence":0.6904119324685273,"method":"SEAD","details":"MAD!:w=0.44,s=0.71 RRCF-fast:w=0.17,s=0.62 RRCF-mid:w=0.12,s=0.33 RRCF-slow:w=0.10,s=0.11 COPOD!:w=0.17,s=0.70"} +{"timestamp":"2026-03-16T13:37:46.037928678Z","score":0.9352323294979066,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.44,s=1.00 RRCF-fast!:w=0.17,s=0.99 RRCF-mid!:w=0.12,s=0.99 RRCF-slow!:w=0.10,s=0.99 COPOD!:w=0.17,s=0.64"} +{"timestamp":"2026-03-16T13:38:16.079851646Z","score":0.8888845638926606,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.44,s=0.93 RRCF-fast!:w=0.17,s=0.89 RRCF-mid!:w=0.12,s=0.87 RRCF-slow!:w=0.10,s=0.81 COPOD!:w=0.17,s=0.83"} +{"timestamp":"2026-03-16T13:38:46.082493593Z","score":0.4373442414066313,"is_anomaly":false,"confidence":0.5122829432370869,"method":"SEAD","details":"MAD!:w=0.44,s=0.42 RRCF-fast:w=0.17,s=0.52 RRCF-mid:w=0.12,s=0.26 RRCF-slow:w=0.10,s=0.32 COPOD!:w=0.17,s=0.59"} +{"timestamp":"2026-03-16T13:39:16.082581014Z","score":0.9054406313630347,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.44,s=0.98 RRCF-fast!:w=0.17,s=0.94 RRCF-mid!:w=0.13,s=0.88 RRCF-slow!:w=0.10,s=0.69 COPOD!:w=0.17,s=0.83"} +{"timestamp":"2026-03-16T13:39:46.125540716Z","score":0.40304259283735744,"is_anomaly":false,"confidence":0.47189679593111217,"method":"SEAD","details":"MAD!:w=0.44,s=0.21 RRCF-fast:w=0.17,s=0.64 RRCF-mid:w=0.13,s=0.34 RRCF-slow:w=0.10,s=0.54 COPOD!:w=0.17,s=0.64"} +{"timestamp":"2026-03-16T13:40:16.032852822Z","score":0.9030191807791956,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.44,s=1.00 RRCF-fast!:w=0.17,s=0.96 RRCF-mid!:w=0.13,s=0.98 RRCF-slow!:w=0.10,s=0.99 COPOD!:w=0.17,s=0.48"} +{"timestamp":"2026-03-16T13:40:46.079638623Z","score":0.4728778044339969,"is_anomaly":false,"confidence":0.5536623789768821,"method":"SEAD","details":"MAD!:w=0.44,s=0.38 RRCF-fast:w=0.17,s=0.42 RRCF-mid:w=0.13,s=0.64 RRCF-slow:w=0.10,s=0.51 COPOD!:w=0.17,s=0.63"} +{"timestamp":"2026-03-16T13:41:16.034238851Z","score":0.8504559200775974,"is_anomaly":false,"confidence":0.9957444471066477,"method":"SEAD","details":"MAD!:w=0.44,s=0.99 RRCF-fast!:w=0.17,s=0.90 RRCF-mid!:w=0.12,s=0.95 RRCF-slow!:w=0.10,s=0.91 COPOD!:w=0.17,s=0.32"} +{"timestamp":"2026-03-16T13:41:46.127592536Z","score":0.645667854641869,"is_anomaly":false,"confidence":0.755971198220646,"method":"SEAD","details":"MAD!:w=0.44,s=0.69 RRCF-fast:w=0.17,s=0.66 RRCF-mid:w=0.12,s=0.48 RRCF-slow:w=0.10,s=0.52 COPOD!:w=0.17,s=0.71"} +{"timestamp":"2026-03-16T13:42:16.034656914Z","score":0.9027732725118718,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.44,s=1.00 RRCF-fast!:w=0.17,s=0.94 RRCF-mid!:w=0.13,s=0.95 RRCF-slow!:w=0.10,s=0.94 COPOD!:w=0.17,s=0.56"} +{"timestamp":"2026-03-16T13:42:46.131225272Z","score":0.8875523284847076,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.44,s=0.96 RRCF-fast!:w=0.17,s=0.85 RRCF-mid!:w=0.13,s=0.80 RRCF-slow!:w=0.10,s=0.80 COPOD!:w=0.17,s=0.85"} +{"timestamp":"2026-03-16T13:43:16.050376244Z","score":0.8772893563865276,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.44,s=0.98 RRCF-fast!:w=0.17,s=0.88 RRCF-mid!:w=0.13,s=0.84 RRCF-slow!:w=0.10,s=0.82 COPOD!:w=0.17,s=0.67"} +{"timestamp":"2026-03-16T13:43:46.079073153Z","score":0.6817715924994909,"is_anomaly":false,"confidence":0.7973623996903338,"method":"SEAD","details":"MAD!:w=0.44,s=0.68 RRCF-fast:w=0.17,s=0.64 RRCF-mid!:w=0.13,s=0.78 RRCF-slow:w=0.10,s=0.57 COPOD!:w=0.17,s=0.72"} +{"timestamp":"2026-03-16T13:44:16.033557315Z","score":0.8741848751719402,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.44,s=1.00 RRCF-fast!:w=0.17,s=0.97 RRCF-mid!:w=0.13,s=1.00 RRCF-slow!:w=0.10,s=0.99 COPOD!:w=0.17,s=0.30"} +{"timestamp":"2026-03-16T13:44:46.074390458Z","score":0.8652800071637957,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.43,s=0.86 RRCF-fast!:w=0.17,s=0.88 RRCF-mid!:w=0.13,s=0.91 RRCF-slow!:w=0.10,s=0.78 COPOD!:w=0.17,s=0.89"} +{"timestamp":"2026-03-16T13:45:16.035341019Z","score":0.512913521860794,"is_anomaly":false,"confidence":0.5986619693757937,"method":"SEAD","details":"MAD!:w=0.43,s=0.35 RRCF-fast:w=0.17,s=0.78 RRCF-mid:w=0.13,s=0.82 RRCF-slow:w=0.10,s=0.72 COPOD!:w=0.17,s=0.33"} +{"timestamp":"2026-03-16T13:45:46.081035257Z","score":0.4587496618334412,"is_anomaly":false,"confidence":0.5354430411725901,"method":"SEAD","details":"MAD!:w=0.44,s=0.42 RRCF-fast:w=0.17,s=0.46 RRCF-mid:w=0.12,s=0.66 RRCF-slow:w=0.10,s=0.67 COPOD!:w=0.17,s=0.30"} +{"timestamp":"2026-03-16T13:46:16.084105059Z","score":0.8520034715018183,"is_anomaly":false,"confidence":0.9944406891708416,"method":"SEAD","details":"MAD!:w=0.44,s=0.83 RRCF-fast:w=0.17,s=0.82 RRCF-mid!:w=0.12,s=0.85 RRCF-slow!:w=0.10,s=0.84 COPOD!:w=0.17,s=0.94"} +{"timestamp":"2026-03-16T13:46:46.041128683Z","score":0.3428315655471989,"is_anomaly":false,"confidence":0.4001458558746582,"method":"SEAD","details":"MAD:w=0.44,s=0.11 RRCF-fast:w=0.17,s=0.33 RRCF-mid:w=0.12,s=0.61 RRCF-slow:w=0.10,s=0.67 COPOD!:w=0.17,s=0.57"} +{"timestamp":"2026-03-16T13:47:16.038700155Z","score":0.8200440340179549,"is_anomaly":false,"confidence":0.957138300037445,"method":"SEAD","details":"MAD!:w=0.44,s=0.99 RRCF-fast:w=0.17,s=0.80 RRCF-mid!:w=0.12,s=0.91 RRCF-slow!:w=0.10,s=0.92 COPOD!:w=0.17,s=0.29"} +{"timestamp":"2026-03-16T13:47:46.088898605Z","score":0.535474443327227,"is_anomaly":false,"confidence":0.626261334149915,"method":"SEAD","details":"MAD!:w=0.44,s=0.50 RRCF-fast:w=0.17,s=0.59 RRCF-mid:w=0.12,s=0.71 RRCF-slow:w=0.10,s=0.42 COPOD!:w=0.17,s=0.52"} +{"timestamp":"2026-03-16T13:48:16.03667649Z","score":0.3199018677714922,"is_anomaly":false,"confidence":0.3741395560594399,"method":"SEAD","details":"MAD!:w=0.44,s=0.28 RRCF-fast:w=0.17,s=0.29 RRCF-mid:w=0.12,s=0.49 RRCF-slow:w=0.10,s=0.59 COPOD!:w=0.17,s=0.17"} +{"timestamp":"2026-03-16T13:48:46.083391943Z","score":0.8183034338259332,"is_anomaly":false,"confidence":0.957042500521571,"method":"SEAD","details":"MAD!:w=0.44,s=0.94 RRCF-fast:w=0.17,s=0.76 RRCF-mid!:w=0.12,s=0.90 RRCF-slow!:w=0.10,s=0.85 COPOD!:w=0.17,s=0.51"} +{"timestamp":"2026-03-16T13:49:16.046090078Z","score":0.36789036958589333,"is_anomaly":false,"confidence":0.43026425733071405,"method":"SEAD","details":"MAD!:w=0.44,s=0.28 RRCF-fast:w=0.17,s=0.46 RRCF-mid:w=0.12,s=0.39 RRCF-slow:w=0.10,s=0.72 COPOD!:w=0.18,s=0.28"} +{"timestamp":"2026-03-16T13:49:46.120828406Z","score":0.5527749227329992,"is_anomaly":false,"confidence":0.6464950193408832,"method":"SEAD","details":"MAD!:w=0.44,s=0.58 RRCF-fast:w=0.17,s=0.41 RRCF-mid:w=0.12,s=0.62 RRCF-slow:w=0.10,s=0.58 COPOD!:w=0.18,s=0.56"} +{"timestamp":"2026-03-16T13:50:16.03474603Z","score":0.33246729211317083,"is_anomaly":false,"confidence":0.3888353823690638,"method":"SEAD","details":"MAD!:w=0.44,s=0.32 RRCF-fast:w=0.17,s=0.27 RRCF-mid:w=0.12,s=0.51 RRCF-slow:w=0.10,s=0.64 COPOD!:w=0.18,s=0.12"} +{"timestamp":"2026-03-16T13:50:46.079343213Z","score":0.8223505177703909,"is_anomaly":false,"confidence":0.9626433745158453,"method":"SEAD","details":"MAD!:w=0.44,s=0.86 RRCF-fast:w=0.17,s=0.82 RRCF-mid:w=0.12,s=0.71 RRCF-slow:w=0.10,s=0.80 COPOD!:w=0.18,s=0.84"} +{"timestamp":"2026-03-16T13:51:16.034227308Z","score":0.4135177645336497,"is_anomaly":false,"confidence":0.484063823966688,"method":"SEAD","details":"MAD!:w=0.44,s=0.46 RRCF-fast:w=0.17,s=0.40 RRCF-mid:w=0.12,s=0.37 RRCF-slow:w=0.10,s=0.46 COPOD!:w=0.18,s=0.30"} +{"timestamp":"2026-03-16T13:51:46.077852489Z","score":0.8871672111627688,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.44,s=0.90 RRCF-fast!:w=0.17,s=0.97 RRCF-mid:w=0.12,s=0.82 RRCF-slow:w=0.10,s=0.76 COPOD!:w=0.18,s=0.89"} +{"timestamp":"2026-03-16T13:52:16.032434252Z","score":0.5198218573826037,"is_anomaly":false,"confidence":0.6079549341363747,"method":"SEAD","details":"MAD!:w=0.44,s=0.47 RRCF-fast!:w=0.17,s=0.89 RRCF-mid:w=0.12,s=0.40 RRCF-slow:w=0.10,s=0.57 COPOD!:w=0.18,s=0.33"} +{"timestamp":"2026-03-16T13:52:46.084816449Z","score":0.861265597576395,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.44,s=0.83 RRCF-fast!:w=0.17,s=0.93 RRCF-mid!:w=0.12,s=0.86 RRCF-slow:w=0.10,s=0.77 COPOD!:w=0.18,s=0.93"} +{"timestamp":"2026-03-16T13:53:16.078962649Z","score":0.41744555849594217,"is_anomaly":false,"confidence":0.4872337528745922,"method":"SEAD","details":"MAD!:w=0.44,s=0.24 RRCF-fast:w=0.17,s=0.79 RRCF-mid:w=0.12,s=0.37 RRCF-slow:w=0.10,s=0.39 COPOD!:w=0.18,s=0.56"} +{"timestamp":"2026-03-16T13:53:46.039564202Z","score":0.25988885998687183,"is_anomaly":false,"confidence":0.30333685915341674,"method":"SEAD","details":"MAD:w=0.44,s=0.06 RRCF-fast:w=0.16,s=0.67 RRCF-mid:w=0.12,s=0.42 RRCF-slow:w=0.10,s=0.34 COPOD!:w=0.18,s=0.23"} +{"timestamp":"2026-03-16T13:54:16.077680336Z","score":0.2630458631177612,"is_anomaly":false,"confidence":0.3076439132279477,"method":"SEAD","details":"MAD:w=0.44,s=0.02 RRCF-fast:w=0.16,s=0.64 RRCF-mid:w=0.12,s=0.28 RRCF-slow:w=0.10,s=0.21 COPOD!:w=0.18,s=0.55"} +{"timestamp":"2026-03-16T13:54:46.039290017Z","score":0.19640444057456288,"is_anomaly":false,"confidence":0.22970378609092304,"method":"SEAD","details":"MAD:w=0.44,s=0.08 RRCF-fast:w=0.16,s=0.54 RRCF-mid:w=0.12,s=0.28 RRCF-slow:w=0.10,s=0.32 COPOD!:w=0.17,s=0.06"} +{"timestamp":"2026-03-16T13:55:16.129273391Z","score":0.2861799073925807,"is_anomaly":false,"confidence":0.3347002136963869,"method":"SEAD","details":"MAD:w=0.45,s=0.19 RRCF-fast:w=0.16,s=0.61 RRCF-mid:w=0.12,s=0.31 RRCF-slow:w=0.10,s=0.39 COPOD!:w=0.17,s=0.16"} +{"timestamp":"2026-03-16T13:55:46.041624282Z","score":0.2587532754228277,"is_anomaly":false,"confidence":0.3026235397436772,"method":"SEAD","details":"MAD:w=0.45,s=0.19 RRCF-fast:w=0.16,s=0.45 RRCF-mid:w=0.12,s=0.43 RRCF-slow:w=0.10,s=0.20 COPOD!:w=0.17,s=0.16"} +{"timestamp":"2026-03-16T13:56:16.128043407Z","score":0.6407825666209404,"is_anomaly":false,"confidence":0.7494238988858805,"method":"SEAD","details":"MAD!:w=0.45,s=0.66 RRCF-fast:w=0.16,s=0.66 RRCF-mid:w=0.12,s=0.55 RRCF-slow:w=0.10,s=0.37 COPOD!:w=0.18,s=0.78"} +{"timestamp":"2026-03-16T13:56:46.087814493Z","score":0.4730340864424683,"is_anomaly":false,"confidence":0.5532345413781272,"method":"SEAD","details":"MAD!:w=0.45,s=0.55 RRCF-fast:w=0.16,s=0.64 RRCF-mid:w=0.12,s=0.32 RRCF-slow:w=0.10,s=0.29 COPOD!:w=0.17,s=0.33"} +{"timestamp":"2026-03-16T13:57:16.083236386Z","score":0.8240425699102517,"is_anomaly":false,"confidence":0.9637546771078154,"method":"SEAD","details":"MAD!:w=0.45,s=0.87 RRCF-fast:w=0.16,s=0.83 RRCF-mid:w=0.12,s=0.63 RRCF-slow:w=0.10,s=0.56 COPOD!:w=0.18,s=0.98"} +{"timestamp":"2026-03-16T13:57:46.029249827Z","score":0.42210292314396386,"is_anomaly":false,"confidence":0.4941136091577933,"method":"SEAD","details":"MAD!:w=0.45,s=0.51 RRCF-fast:w=0.16,s=0.42 RRCF-mid:w=0.12,s=0.19 RRCF-slow:w=0.10,s=0.26 COPOD!:w=0.18,s=0.47"} +{"timestamp":"2026-03-16T13:58:16.07507838Z","score":0.8668351563336779,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.45,s=0.85 RRCF-fast!:w=0.16,s=0.93 RRCF-mid:w=0.12,s=0.83 RRCF-slow:w=0.10,s=0.67 COPOD!:w=0.18,s=1.00"} +{"timestamp":"2026-03-16T13:58:46.039988879Z","score":0.4420965693518203,"is_anomaly":false,"confidence":0.5170517300975616,"method":"SEAD","details":"MAD!:w=0.45,s=0.35 RRCF-fast:w=0.16,s=0.88 RRCF-mid:w=0.12,s=0.25 RRCF-slow:w=0.10,s=0.26 COPOD!:w=0.17,s=0.50"} +{"timestamp":"2026-03-16T13:59:16.077789646Z","score":0.9037441195232305,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.45,s=0.92 RRCF-fast!:w=0.16,s=0.96 RRCF-mid!:w=0.12,s=0.96 RRCF-slow:w=0.10,s=0.73 COPOD!:w=0.17,s=0.86"} +{"timestamp":"2026-03-16T13:59:46.085278161Z","score":0.5525657211257341,"is_anomaly":false,"confidence":0.6449431896795803,"method":"SEAD","details":"MAD!:w=0.45,s=0.40 RRCF-fast!:w=0.16,s=0.94 RRCF-mid:w=0.12,s=0.90 RRCF-slow:w=0.10,s=0.23 COPOD!:w=0.17,s=0.52"} +{"timestamp":"2026-03-16T14:00:16.04098347Z","score":0.376216706383569,"is_anomaly":false,"confidence":0.43911229623770626,"method":"SEAD","details":"MAD!:w=0.45,s=0.24 RRCF-fast:w=0.16,s=0.80 RRCF-mid:w=0.12,s=0.63 RRCF-slow:w=0.10,s=0.32 COPOD!:w=0.17,s=0.20"} +{"timestamp":"2026-03-16T14:00:46.085189306Z","score":0.28761545435852076,"is_anomaly":false,"confidence":0.33637915014111863,"method":"SEAD","details":"MAD:w=0.45,s=0.11 RRCF-fast:w=0.16,s=0.77 RRCF-mid:w=0.12,s=0.48 RRCF-slow:w=0.10,s=0.19 COPOD!:w=0.17,s=0.23"} +{"timestamp":"2026-03-16T14:01:16.040354668Z","score":0.3971764158593764,"is_anomaly":false,"confidence":0.46451559955583627,"method":"SEAD","details":"MAD!:w=0.45,s=0.43 RRCF-fast:w=0.15,s=0.75 RRCF-mid:w=0.12,s=0.46 RRCF-slow:w=0.10,s=0.09 COPOD!:w=0.17,s=0.11"} +{"timestamp":"2026-03-16T14:01:46.084951849Z","score":0.31850466167915437,"is_anomaly":false,"confidence":0.37250546098287024,"method":"SEAD","details":"MAD:w=0.45,s=0.16 RRCF-fast:w=0.15,s=0.78 RRCF-mid:w=0.12,s=0.37 RRCF-slow:w=0.10,s=0.10 COPOD!:w=0.18,s=0.41"} +{"timestamp":"2026-03-16T14:02:16.09122139Z","score":0.4138693599863134,"is_anomaly":false,"confidence":0.4840387450394333,"method":"SEAD","details":"MAD!:w=0.45,s=0.50 RRCF-fast:w=0.15,s=0.76 RRCF-mid:w=0.12,s=0.43 RRCF-slow:w=0.10,s=0.14 COPOD!:w=0.17,s=0.04"} +{"timestamp":"2026-03-16T14:02:46.126560891Z","score":0.6599505383458195,"is_anomaly":false,"confidence":0.7718416999498894,"method":"SEAD","details":"MAD!:w=0.45,s=0.66 RRCF-fast:w=0.15,s=0.85 RRCF-mid:w=0.12,s=0.59 RRCF-slow:w=0.10,s=0.33 COPOD!:w=0.18,s=0.74"} +{"timestamp":"2026-03-16T14:03:16.039725459Z","score":0.3072367341745769,"is_anomaly":false,"confidence":0.3593271153119287,"method":"SEAD","details":"MAD!:w=0.45,s=0.28 RRCF-fast:w=0.15,s=0.57 RRCF-mid:w=0.12,s=0.44 RRCF-slow:w=0.10,s=0.10 COPOD!:w=0.18,s=0.17"} +{"timestamp":"2026-03-16T14:03:46.08561934Z","score":0.8328077872763773,"is_anomaly":false,"confidence":0.974005991227898,"method":"SEAD","details":"MAD!:w=0.45,s=0.87 RRCF-fast:w=0.15,s=0.88 RRCF-mid:w=0.12,s=0.66 RRCF-slow:w=0.10,s=0.58 COPOD!:w=0.18,s=0.96"} +{"timestamp":"2026-03-16T14:04:16.042899843Z","score":0.3425997142120192,"is_anomaly":false,"confidence":0.40104716647032795,"method":"SEAD","details":"MAD!:w=0.45,s=0.26 RRCF-fast:w=0.15,s=0.66 RRCF-mid:w=0.12,s=0.35 RRCF-slow:w=0.10,s=0.09 COPOD!:w=0.18,s=0.42"} +{"timestamp":"2026-03-16T14:04:46.081130668Z","score":0.7935401857555892,"is_anomaly":false,"confidence":0.9289180048196662,"method":"SEAD","details":"MAD!:w=0.45,s=0.78 RRCF-fast:w=0.15,s=0.81 RRCF-mid:w=0.12,s=0.73 RRCF-slow:w=0.10,s=0.58 COPOD!:w=0.18,s=1.00"} +{"timestamp":"2026-03-16T14:05:16.035302964Z","score":0.5279302632671845,"is_anomaly":false,"confidence":0.6179950752854738,"method":"SEAD","details":"MAD!:w=0.45,s=0.52 RRCF-fast:w=0.15,s=0.71 RRCF-mid:w=0.12,s=0.44 RRCF-slow:w=0.10,s=0.15 COPOD!:w=0.18,s=0.67"} +{"timestamp":"2026-03-16T14:05:46.081036024Z","score":0.837935335647975,"is_anomaly":false,"confidence":0.9808869596400676,"method":"SEAD","details":"MAD!:w=0.45,s=0.95 RRCF-fast:w=0.15,s=0.89 RRCF-mid:w=0.12,s=0.77 RRCF-slow:w=0.10,s=0.55 COPOD!:w=0.17,s=0.71"} +{"timestamp":"2026-03-16T14:06:16.076816638Z","score":0.40313103822458385,"is_anomaly":false,"confidence":0.4719051239376046,"method":"SEAD","details":"MAD!:w=0.45,s=0.40 RRCF-fast:w=0.15,s=0.45 RRCF-mid:w=0.12,s=0.44 RRCF-slow:w=0.10,s=0.04 COPOD!:w=0.18,s=0.54"} +{"timestamp":"2026-03-16T14:06:46.039440662Z","score":0.2926213709191902,"is_anomaly":false,"confidence":0.34254252641664046,"method":"SEAD","details":"MAD!:w=0.45,s=0.40 RRCF-fast:w=0.15,s=0.45 RRCF-mid:w=0.12,s=0.18 RRCF-slow:w=0.10,s=0.03 COPOD!:w=0.18,s=0.11"} +{"timestamp":"2026-03-16T14:07:16.082220948Z","score":0.2754811732948218,"is_anomaly":false,"confidence":0.3224782140286261,"method":"SEAD","details":"MAD!:w=0.45,s=0.34 RRCF-fast:w=0.15,s=0.49 RRCF-mid:w=0.12,s=0.33 RRCF-slow:w=0.10,s=0.03 COPOD!:w=0.18,s=0.02"} +{"timestamp":"2026-03-16T14:07:46.039501818Z","score":0.20501832355118474,"is_anomaly":false,"confidence":0.24002624727263924,"method":"SEAD","details":"MAD:w=0.45,s=0.11 RRCF-fast:w=0.15,s=0.46 RRCF-mid:w=0.12,s=0.21 RRCF-slow:w=0.10,s=0.03 COPOD!:w=0.18,s=0.32"} +{"timestamp":"2026-03-16T14:08:16.087093287Z","score":0.46545405711548843,"is_anomaly":false,"confidence":0.5449327097797828,"method":"SEAD","details":"MAD!:w=0.45,s=0.54 RRCF-fast:w=0.15,s=0.71 RRCF-mid:w=0.12,s=0.39 RRCF-slow:w=0.10,s=0.12 COPOD!:w=0.18,s=0.33"} +{"timestamp":"2026-03-16T14:08:46.042380983Z","score":0.2882770339791339,"is_anomaly":false,"confidence":0.3375018068744654,"method":"SEAD","details":"MAD!:w=0.45,s=0.31 RRCF-fast:w=0.15,s=0.52 RRCF-mid:w=0.12,s=0.27 RRCF-slow:w=0.10,s=0.06 COPOD!:w=0.18,s=0.18"} +{"timestamp":"2026-03-16T14:09:16.132155306Z","score":0.8835633664540099,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.45,s=0.81 RRCF-fast!:w=0.15,s=0.95 RRCF-mid!:w=0.12,s=0.97 RRCF-slow:w=0.10,s=0.82 COPOD!:w=0.18,s=0.99"} +{"timestamp":"2026-03-16T14:09:46.031709309Z","score":0.5552619303298195,"is_anomaly":false,"confidence":0.649989520043232,"method":"SEAD","details":"MAD!:w=0.45,s=0.44 RRCF-fast:w=0.15,s=0.91 RRCF-mid!:w=0.12,s=0.93 RRCF-slow:w=0.10,s=0.43 COPOD!:w=0.18,s=0.36"} +{"timestamp":"2026-03-16T14:10:16.082233743Z","score":0.9463616795598269,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.45,s=0.90 RRCF-fast!:w=0.15,s=0.98 RRCF-mid!:w=0.12,s=0.98 RRCF-slow!:w=0.10,s=0.95 COPOD!:w=0.18,s=1.00"} +{"timestamp":"2026-03-16T14:10:46.040059089Z","score":0.6606631734786069,"is_anomaly":false,"confidence":0.7733721971260031,"method":"SEAD","details":"MAD!:w=0.45,s=0.49 RRCF-fast!:w=0.15,s=0.97 RRCF-mid!:w=0.12,s=0.99 RRCF-slow!:w=0.10,s=0.86 COPOD!:w=0.18,s=0.50"} +{"timestamp":"2026-03-16T14:11:16.074319645Z","score":0.870058222025766,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.45,s=0.78 RRCF-fast!:w=0.14,s=0.92 RRCF-mid!:w=0.12,s=0.96 RRCF-slow!:w=0.10,s=0.91 COPOD!:w=0.18,s=0.99"} +{"timestamp":"2026-03-16T14:11:46.031588347Z","score":0.6341248173852104,"is_anomaly":false,"confidence":0.7416373630936283,"method":"SEAD","details":"MAD!:w=0.46,s=0.48 RRCF-fast:w=0.14,s=0.92 RRCF-mid!:w=0.12,s=0.95 RRCF-slow:w=0.10,s=0.75 COPOD!:w=0.18,s=0.52"} +{"timestamp":"2026-03-16T14:12:16.040488202Z","score":0.5104331867003759,"is_anomaly":false,"confidence":0.5969744634517018,"method":"SEAD","details":"MAD!:w=0.46,s=0.39 RRCF-fast:w=0.14,s=0.63 RRCF-mid!:w=0.12,s=0.90 RRCF-slow:w=0.10,s=0.50 COPOD!:w=0.18,s=0.46"} +{"timestamp":"2026-03-16T14:12:46.080316363Z","score":0.3025473724796754,"is_anomaly":false,"confidence":0.353842696871503,"method":"SEAD","details":"MAD:w=0.46,s=0.03 RRCF-fast:w=0.14,s=0.69 RRCF-mid:w=0.12,s=0.85 RRCF-slow:w=0.10,s=0.33 COPOD!:w=0.18,s=0.31"} +{"timestamp":"2026-03-16T14:13:16.039156276Z","score":0.2566522407691834,"is_anomaly":false,"confidence":0.3001662856549281,"method":"SEAD","details":"MAD:w=0.46,s=0.07 RRCF-fast:w=0.14,s=0.45 RRCF-mid:w=0.12,s=0.78 RRCF-slow:w=0.10,s=0.27 COPOD!:w=0.18,s=0.24"} +{"timestamp":"2026-03-16T14:13:46.082607554Z","score":0.31062459388951386,"is_anomaly":false,"confidence":0.36328936891978686,"method":"SEAD","details":"MAD:w=0.47,s=0.13 RRCF-fast:w=0.14,s=0.54 RRCF-mid:w=0.12,s=0.81 RRCF-slow:w=0.10,s=0.33 COPOD!:w=0.18,s=0.26"} +{"timestamp":"2026-03-16T14:14:17.139226545Z","score":0.3455680673705363,"is_anomaly":false,"confidence":0.4045219201666192,"method":"SEAD","details":"MAD!:w=0.47,s=0.31 RRCF-fast:w=0.14,s=0.45 RRCF-mid:w=0.12,s=0.81 RRCF-slow:w=0.10,s=0.27 COPOD!:w=0.17,s=0.09"} +{"timestamp":"2026-03-16T14:14:46.082656666Z","score":0.5156746041841132,"is_anomaly":false,"confidence":0.6036486028729183,"method":"SEAD","details":"MAD!:w=0.47,s=0.57 RRCF-fast:w=0.14,s=0.37 RRCF-mid:w=0.12,s=0.74 RRCF-slow:w=0.10,s=0.18 COPOD!:w=0.18,s=0.53"} +{"timestamp":"2026-03-16T14:15:16.530038058Z","score":0.3326315831346227,"is_anomaly":false,"confidence":0.389378473947366,"method":"SEAD","details":"MAD!:w=0.47,s=0.30 RRCF-fast:w=0.14,s=0.49 RRCF-mid:w=0.11,s=0.72 RRCF-slow:w=0.10,s=0.18 COPOD!:w=0.18,s=0.13"} +{"timestamp":"2026-03-16T14:15:46.081322302Z","score":0.7945841309424244,"is_anomaly":false,"confidence":0.9301400468756369,"method":"SEAD","details":"MAD!:w=0.47,s=0.81 RRCF-fast:w=0.14,s=0.67 RRCF-mid:w=0.11,s=0.82 RRCF-slow:w=0.10,s=0.65 COPOD!:w=0.18,s=0.92"} +{"timestamp":"2026-03-16T14:16:16.091687483Z","score":0.474967418306977,"is_anomaly":false,"confidence":0.5559967780938022,"method":"SEAD","details":"MAD!:w=0.47,s=0.47 RRCF-fast:w=0.14,s=0.63 RRCF-mid:w=0.11,s=0.65 RRCF-slow:w=0.10,s=0.21 COPOD!:w=0.18,s=0.39"} +{"timestamp":"2026-03-16T14:16:46.135762746Z","score":0.7900786812472068,"is_anomaly":false,"confidence":0.9248659682381299,"method":"SEAD","details":"MAD!:w=0.47,s=0.84 RRCF-fast:w=0.14,s=0.63 RRCF-mid:w=0.11,s=0.78 RRCF-slow:w=0.10,s=0.63 COPOD!:w=0.18,s=0.89"} +{"timestamp":"2026-03-16T14:17:44.059385507Z","score":0.8614063592746849,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.47,s=0.75 RRCF-fast!:w=0.14,s=0.98 RRCF-mid!:w=0.11,s=1.00 RRCF-slow!:w=0.10,s=0.99 COPOD!:w=0.18,s=0.91"} +{"timestamp":"2026-03-16T14:17:46.133728407Z","score":0.9605974215394077,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.47,s=0.95 RRCF-fast!:w=0.14,s=0.94 RRCF-mid!:w=0.11,s=0.96 RRCF-slow!:w=0.10,s=0.97 COPOD!:w=0.18,s=1.00"} +{"timestamp":"2026-03-16T14:18:16.075582367Z","score":0.5409105407071665,"is_anomaly":false,"confidence":0.6326190934046351,"method":"SEAD","details":"MAD!:w=0.47,s=0.53 RRCF-fast:w=0.14,s=0.39 RRCF-mid:w=0.11,s=0.75 RRCF-slow:w=0.10,s=0.49 COPOD!:w=0.18,s=0.58"} +{"timestamp":"2026-03-16T14:19:10.998909295Z","score":0.7802406647450594,"is_anomaly":false,"confidence":0.9125263880477189,"method":"SEAD","details":"MAD!:w=0.47,s=0.65 RRCF-fast!:w=0.14,s=0.93 RRCF-mid!:w=0.11,s=0.96 RRCF-slow!:w=0.10,s=0.98 COPOD!:w=0.18,s=0.78"} +{"timestamp":"2026-03-16T14:19:19.271878845Z","score":0.7997445713910485,"is_anomaly":false,"confidence":0.9353370800414511,"method":"SEAD","details":"MAD!:w=0.47,s=0.65 RRCF-fast!:w=0.14,s=0.99 RRCF-mid!:w=0.11,s=1.00 RRCF-slow!:w=0.10,s=1.00 COPOD!:w=0.18,s=0.81"} +{"timestamp":"2026-03-16T14:19:46.18620001Z","score":0.5988603567255947,"is_anomaly":false,"confidence":0.7003939975960293,"method":"SEAD","details":"MAD!:w=0.47,s=0.54 RRCF-fast:w=0.14,s=0.59 RRCF-mid:w=0.11,s=0.84 RRCF-slow!:w=0.10,s=0.86 COPOD!:w=0.17,s=0.45"} +{"timestamp":"2026-03-16T14:20:16.040376664Z","score":0.49993121176711713,"is_anomaly":false,"confidence":0.5846919336038816,"method":"SEAD","details":"MAD!:w=0.47,s=0.54 RRCF-fast:w=0.14,s=0.44 RRCF-mid:w=0.11,s=0.75 RRCF-slow!:w=0.10,s=0.86 COPOD!:w=0.17,s=0.08"} +{"timestamp":"2026-03-16T14:20:54.96430362Z","score":0.7730897688049831,"is_anomaly":false,"confidence":0.904978750258287,"method":"SEAD","details":"MAD!:w=0.47,s=0.66 RRCF-fast!:w=0.14,s=0.95 RRCF-mid!:w=0.11,s=0.98 RRCF-slow!:w=0.10,s=0.99 COPOD!:w=0.18,s=0.69"} +{"timestamp":"2026-03-16T14:21:16.078299995Z","score":0.7371020291791733,"is_anomaly":false,"confidence":0.8628515084484145,"method":"SEAD","details":"MAD!:w=0.47,s=0.66 RRCF-fast:w=0.14,s=0.75 RRCF-mid:w=0.11,s=0.87 RRCF-slow!:w=0.10,s=0.90 COPOD!:w=0.18,s=0.77"} +{"timestamp":"2026-03-16T14:21:46.041827196Z","score":0.5635811192353275,"is_anomaly":false,"confidence":0.6597279611436837,"method":"SEAD","details":"MAD!:w=0.48,s=0.55 RRCF-fast:w=0.14,s=0.65 RRCF-mid:w=0.11,s=0.82 RRCF-slow:w=0.10,s=0.84 COPOD!:w=0.18,s=0.22"} +{"timestamp":"2026-03-16T14:22:29.744966355Z","score":0.7828421191223743,"is_anomaly":false,"confidence":0.9163948498607383,"method":"SEAD","details":"MAD!:w=0.48,s=0.66 RRCF-fast!:w=0.14,s=0.94 RRCF-mid!:w=0.11,s=0.96 RRCF-slow!:w=0.10,s=0.98 COPOD!:w=0.18,s=0.79"} +{"timestamp":"2026-03-16T14:22:46.076453512Z","score":0.6362933104508243,"is_anomaly":false,"confidence":0.7448448396615018,"method":"SEAD","details":"MAD!:w=0.48,s=0.56 RRCF-fast:w=0.14,s=0.63 RRCF-mid:w=0.11,s=0.87 RRCF-slow:w=0.10,s=0.82 COPOD!:w=0.18,s=0.60"} +{"timestamp":"2026-03-16T14:23:16.039328994Z","score":0.5138061902786759,"is_anomaly":false,"confidence":0.6014614378769031,"method":"SEAD","details":"MAD!:w=0.48,s=0.55 RRCF-fast:w=0.14,s=0.35 RRCF-mid:w=0.11,s=0.76 RRCF-slow:w=0.10,s=0.81 COPOD!:w=0.18,s=0.24"} +{"timestamp":"2026-03-16T14:24:05.881628409Z","score":0.7729526257871757,"is_anomaly":false,"confidence":0.9048182106652539,"method":"SEAD","details":"MAD!:w=0.48,s=0.65 RRCF-fast:w=0.14,s=0.91 RRCF-mid!:w=0.11,s=0.95 RRCF-slow!:w=0.10,s=0.98 COPOD!:w=0.18,s=0.77"} +{"timestamp":"2026-03-16T14:24:16.125443023Z","score":0.7710998265053964,"is_anomaly":false,"confidence":0.9027690521645765,"method":"SEAD","details":"MAD!:w=0.48,s=0.66 RRCF-fast:w=0.14,s=0.84 RRCF-mid:w=0.11,s=0.94 RRCF-slow!:w=0.10,s=0.96 COPOD!:w=0.18,s=0.82"} +{"timestamp":"2026-03-16T14:24:46.042181082Z","score":0.588692881660048,"is_anomaly":false,"confidence":0.6892151917616277,"method":"SEAD","details":"MAD!:w=0.48,s=0.54 RRCF-fast:w=0.14,s=0.42 RRCF-mid:w=0.11,s=0.80 RRCF-slow:w=0.10,s=0.72 COPOD!:w=0.18,s=0.66"} +{"timestamp":"2026-03-16T14:25:42.092564235Z","score":0.7840801327190063,"is_anomaly":false,"confidence":0.9179658118245717,"method":"SEAD","details":"MAD!:w=0.48,s=0.73 RRCF-fast:w=0.14,s=0.88 RRCF-mid!:w=0.11,s=0.95 RRCF-slow!:w=0.10,s=0.97 COPOD!:w=0.18,s=0.65"} +{"timestamp":"2026-03-16T14:25:46.84342737Z","score":0.8908876709166937,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.48,s=0.81 RRCF-fast!:w=0.14,s=0.94 RRCF-mid:w=0.11,s=0.94 RRCF-slow!:w=0.10,s=0.97 COPOD!:w=0.18,s=1.00"} +{"timestamp":"2026-03-16T14:26:16.078431171Z","score":0.6162146070141713,"is_anomaly":false,"confidence":0.7213407128755571,"method":"SEAD","details":"MAD!:w=0.48,s=0.54 RRCF-fast:w=0.14,s=0.75 RRCF-mid:w=0.11,s=0.93 RRCF-slow:w=0.10,s=0.94 COPOD!:w=0.18,s=0.36"} +{"timestamp":"2026-03-16T14:27:04.440400759Z","score":0.730237892243049,"is_anomaly":false,"confidence":0.8548163509328033,"method":"SEAD","details":"MAD!:w=0.48,s=0.64 RRCF-fast:w=0.14,s=0.87 RRCF-mid:w=0.11,s=0.92 RRCF-slow!:w=0.10,s=0.96 COPOD!:w=0.18,s=0.64"} +{"timestamp":"2026-03-16T14:27:16.087630939Z","score":0.7541183852609771,"is_anomaly":false,"confidence":0.8827708519480247,"method":"SEAD","details":"MAD!:w=0.49,s=0.64 RRCF-fast:w=0.14,s=0.81 RRCF-mid:w=0.11,s=0.90 RRCF-slow:w=0.10,s=0.93 COPOD!:w=0.18,s=0.85"} +{"timestamp":"2026-03-16T14:27:46.047900315Z","score":0.507137280245697,"is_anomaly":false,"confidence":0.5937335557181909,"method":"SEAD","details":"MAD!:w=0.49,s=0.53 RRCF-fast:w=0.13,s=0.53 RRCF-mid:w=0.11,s=0.81 RRCF-slow:w=0.10,s=0.90 COPOD!:w=0.18,s=0.05"} +{"timestamp":"2026-03-16T14:28:16.041581395Z","score":0.5357903405912967,"is_anomaly":false,"confidence":0.6272792721619883,"method":"SEAD","details":"MAD!:w=0.49,s=0.52 RRCF-fast:w=0.13,s=0.32 RRCF-mid:w=0.11,s=0.76 RRCF-slow:w=0.10,s=0.88 COPOD!:w=0.18,s=0.42"} +{"timestamp":"2026-03-16T14:28:46.082326528Z","score":0.5350800744950509,"is_anomaly":false,"confidence":0.6264477245095936,"method":"SEAD","details":"MAD!:w=0.49,s=0.53 RRCF-fast:w=0.14,s=0.41 RRCF-mid:w=0.11,s=0.78 RRCF-slow:w=0.10,s=0.83 COPOD!:w=0.18,s=0.35"} +{"timestamp":"2026-03-16T14:29:16.042999043Z","score":0.47293074243364425,"is_anomaly":false,"confidence":0.5536860772245583,"method":"SEAD","details":"MAD!:w=0.49,s=0.53 RRCF-fast:w=0.14,s=0.22 RRCF-mid:w=0.11,s=0.75 RRCF-slow:w=0.09,s=0.85 COPOD!:w=0.18,s=0.15"} +{"timestamp":"2026-03-16T14:29:48.599504009Z","score":0.48442190588956135,"is_anomaly":false,"confidence":0.5671394154108481,"method":"SEAD","details":"MAD!:w=0.49,s=0.52 RRCF-fast:w=0.14,s=0.36 RRCF-mid:w=0.11,s=0.60 RRCF-slow:w=0.09,s=0.85 COPOD!:w=0.18,s=0.24"} +{"timestamp":"2026-03-16T14:30:16.041080472Z","score":0.44059444597803926,"is_anomaly":false,"confidence":0.515828193331577,"method":"SEAD","details":"MAD!:w=0.48,s=0.52 RRCF-fast:w=0.14,s=0.27 RRCF-mid:w=0.11,s=0.71 RRCF-slow:w=0.09,s=0.81 COPOD!:w=0.18,s=0.00"} +{"timestamp":"2026-03-16T14:30:46.090668599Z","score":0.8284982969487723,"is_anomaly":false,"confidence":0.9700356704540104,"method":"SEAD","details":"MAD!:w=0.48,s=0.78 RRCF-fast:w=0.14,s=0.78 RRCF-mid:w=0.11,s=0.84 RRCF-slow:w=0.09,s=0.91 COPOD!:w=0.18,s=0.93"} +{"timestamp":"2026-03-16T14:31:16.040059155Z","score":0.5378451880474338,"is_anomaly":false,"confidence":0.6297285335522123,"method":"SEAD","details":"MAD!:w=0.48,s=0.51 RRCF-fast:w=0.14,s=0.36 RRCF-mid:w=0.11,s=0.67 RRCF-slow:w=0.09,s=0.77 COPOD!:w=0.18,s=0.55"} +{"timestamp":"2026-03-16T14:31:46.085174904Z","score":0.784759015123556,"is_anomaly":false,"confidence":0.9188241426491148,"method":"SEAD","details":"MAD!:w=0.48,s=0.86 RRCF-fast:w=0.14,s=0.53 RRCF-mid:w=0.11,s=0.76 RRCF-slow:w=0.09,s=0.82 COPOD!:w=0.18,s=0.79"} +{"timestamp":"2026-03-16T14:32:16.037701923Z","score":0.4342056051910542,"is_anomaly":false,"confidence":0.508383574109431,"method":"SEAD","details":"MAD!:w=0.48,s=0.46 RRCF-fast:w=0.14,s=0.26 RRCF-mid:w=0.11,s=0.60 RRCF-slow:w=0.09,s=0.69 COPOD!:w=0.18,s=0.27"} +{"timestamp":"2026-03-16T14:32:46.074933064Z","score":0.7876068162578214,"is_anomaly":false,"confidence":0.9221584508701101,"method":"SEAD","details":"MAD!:w=0.48,s=0.83 RRCF-fast:w=0.14,s=0.58 RRCF-mid:w=0.11,s=0.80 RRCF-slow:w=0.09,s=0.85 COPOD!:w=0.18,s=0.80"} +{"timestamp":"2026-03-16T14:33:16.047546914Z","score":0.3602543390267197,"is_anomaly":false,"confidence":0.42179876600682764,"method":"SEAD","details":"MAD!:w=0.48,s=0.22 RRCF-fast:w=0.14,s=0.21 RRCF-mid:w=0.11,s=0.58 RRCF-slow:w=0.09,s=0.62 COPOD!:w=0.18,s=0.59"} +{"timestamp":"2026-03-16T14:33:46.098441072Z","score":0.561107535268496,"is_anomaly":false,"confidence":0.6569649282026558,"method":"SEAD","details":"MAD!:w=0.48,s=0.67 RRCF-fast:w=0.14,s=0.15 RRCF-mid:w=0.10,s=0.62 RRCF-slow:w=0.09,s=0.74 COPOD!:w=0.18,s=0.46"} +{"timestamp":"2026-03-16T14:34:22.318269329Z","score":0.370379680741364,"is_anomaly":false,"confidence":0.43384404092103723,"method":"SEAD","details":"MAD!:w=0.48,s=0.22 RRCF-fast:w=0.14,s=0.21 RRCF-mid:w=0.10,s=0.48 RRCF-slow:w=0.09,s=0.72 COPOD!:w=0.18,s=0.63"} +{"timestamp":"2026-03-16T14:34:46.047527303Z","score":0.5213543745408771,"is_anomaly":false,"confidence":0.6106881677470314,"method":"SEAD","details":"MAD!:w=0.48,s=0.57 RRCF-fast:w=0.14,s=0.24 RRCF-mid:w=0.10,s=0.51 RRCF-slow:w=0.09,s=0.66 COPOD!:w=0.18,s=0.55"} +{"timestamp":"2026-03-16T14:35:20.376974636Z","score":0.7850345345596879,"is_anomaly":false,"confidence":0.9195497821430688,"method":"SEAD","details":"MAD!:w=0.48,s=0.78 RRCF-fast:w=0.14,s=0.59 RRCF-mid:w=0.10,s=0.79 RRCF-slow:w=0.09,s=0.81 COPOD!:w=0.18,s=0.93"} +{"timestamp":"2026-03-16T14:35:48.28250569Z","score":0.3808968171982123,"is_anomaly":false,"confidence":0.44616328308417097,"method":"SEAD","details":"MAD!:w=0.48,s=0.28 RRCF-fast:w=0.14,s=0.36 RRCF-mid:w=0.10,s=0.53 RRCF-slow:w=0.09,s=0.65 COPOD!:w=0.18,s=0.45"} +{"timestamp":"2026-03-16T14:36:16.034094034Z","score":0.36936586365864726,"is_anomaly":false,"confidence":0.4326565068234857,"method":"SEAD","details":"MAD!:w=0.48,s=0.33 RRCF-fast:w=0.14,s=0.20 RRCF-mid:w=0.10,s=0.39 RRCF-slow:w=0.09,s=0.64 COPOD!:w=0.18,s=0.46"} +{"timestamp":"2026-03-16T14:36:46.077503716Z","score":0.3436289752305994,"is_anomaly":false,"confidence":0.4025096163299026,"method":"SEAD","details":"MAD!:w=0.48,s=0.28 RRCF-fast:w=0.14,s=0.26 RRCF-mid:w=0.10,s=0.34 RRCF-slow:w=0.09,s=0.66 COPOD!:w=0.18,s=0.42"} +{"timestamp":"2026-03-16T14:37:16.041130388Z","score":0.3155253306413048,"is_anomaly":false,"confidence":0.3695904272728164,"method":"SEAD","details":"MAD!:w=0.49,s=0.34 RRCF-fast:w=0.14,s=0.38 RRCF-mid:w=0.10,s=0.39 RRCF-slow:w=0.09,s=0.63 COPOD!:w=0.18,s=0.00"} +{"timestamp":"2026-03-16T14:37:46.157845371Z","score":0.7968486586487193,"is_anomaly":false,"confidence":0.9339388937790521,"method":"SEAD","details":"MAD!:w=0.48,s=0.75 RRCF-fast:w=0.14,s=0.78 RRCF-mid:w=0.10,s=0.77 RRCF-slow:w=0.09,s=0.86 COPOD!:w=0.18,s=0.92"} +{"timestamp":"2026-03-16T14:38:16.060825202Z","score":0.5168374174960378,"is_anomaly":false,"confidence":0.6057543809867433,"method":"SEAD","details":"MAD!:w=0.49,s=0.47 RRCF-fast:w=0.14,s=0.43 RRCF-mid:w=0.10,s=0.47 RRCF-slow:w=0.09,s=0.55 COPOD!:w=0.18,s=0.73"} +{"timestamp":"2026-03-16T14:38:46.087429613Z","score":0.7070227520144946,"is_anomaly":false,"confidence":0.8286592939903914,"method":"SEAD","details":"MAD!:w=0.49,s=0.77 RRCF-fast:w=0.14,s=0.45 RRCF-mid:w=0.10,s=0.57 RRCF-slow:w=0.09,s=0.70 COPOD!:w=0.18,s=0.82"} +{"timestamp":"2026-03-16T14:39:16.076102453Z","score":0.8595009201700935,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=0.93 RRCF-fast:w=0.14,s=0.88 RRCF-mid:w=0.10,s=0.82 RRCF-slow:w=0.09,s=0.92 COPOD!:w=0.18,s=0.65"} +{"timestamp":"2026-03-16T14:39:46.093227616Z","score":0.6728355180366595,"is_anomaly":false,"confidence":0.7881255241538518,"method":"SEAD","details":"MAD!:w=0.48,s=0.77 RRCF-fast:w=0.14,s=0.34 RRCF-mid:w=0.10,s=0.54 RRCF-slow:w=0.09,s=0.66 COPOD!:w=0.18,s=0.76"} +{"timestamp":"2026-03-16T14:40:16.126025811Z","score":0.4859905054542196,"is_anomaly":false,"confidence":0.569264718608439,"method":"SEAD","details":"MAD!:w=0.48,s=0.58 RRCF-fast:w=0.14,s=0.26 RRCF-mid:w=0.10,s=0.38 RRCF-slow:w=0.09,s=0.58 COPOD!:w=0.18,s=0.43"} +{"timestamp":"2026-03-16T14:40:46.077218714Z","score":0.6687689158291659,"is_anomaly":false,"confidence":0.7838242490142027,"method":"SEAD","details":"MAD!:w=0.48,s=0.66 RRCF-fast:w=0.14,s=0.80 RRCF-mid:w=0.11,s=0.82 RRCF-slow:w=0.09,s=0.90 COPOD!:w=0.18,s=0.38"} +{"timestamp":"2026-03-16T14:41:16.095565963Z","score":0.35792717727836937,"is_anomaly":false,"confidence":0.41950514488872725,"method":"SEAD","details":"MAD!:w=0.48,s=0.49 RRCF-fast:w=0.14,s=0.14 RRCF-mid:w=0.10,s=0.34 RRCF-slow:w=0.09,s=0.52 COPOD!:w=0.18,s=0.10"} +{"timestamp":"2026-03-16T14:41:46.034356318Z","score":0.46878823108317486,"is_anomaly":false,"confidence":0.5494387889124455,"method":"SEAD","details":"MAD!:w=0.48,s=0.49 RRCF-fast:w=0.14,s=0.33 RRCF-mid:w=0.11,s=0.35 RRCF-slow:w=0.09,s=0.47 COPOD!:w=0.18,s=0.57"} +{"timestamp":"2026-03-16T14:42:16.142423184Z","score":0.8438091190088981,"is_anomaly":false,"confidence":0.988978454835118,"method":"SEAD","details":"MAD!:w=0.48,s=0.95 RRCF-fast:w=0.14,s=0.77 RRCF-mid:w=0.11,s=0.76 RRCF-slow:w=0.09,s=0.84 COPOD!:w=0.18,s=0.67"} +{"timestamp":"2026-03-16T14:42:46.059084648Z","score":0.47956048625426906,"is_anomaly":false,"confidence":0.5620643081610541,"method":"SEAD","details":"MAD!:w=0.48,s=0.49 RRCF-fast:w=0.14,s=0.32 RRCF-mid:w=0.11,s=0.34 RRCF-slow:w=0.09,s=0.54 COPOD!:w=0.18,s=0.62"} +{"timestamp":"2026-03-16T14:43:16.084047241Z","score":0.7431064653148824,"is_anomaly":false,"confidence":0.8709508670732307,"method":"SEAD","details":"MAD!:w=0.48,s=0.76 RRCF-fast:w=0.14,s=0.74 RRCF-mid:w=0.11,s=0.59 RRCF-slow:w=0.09,s=0.71 COPOD!:w=0.18,s=0.80"} +{"timestamp":"2026-03-16T14:43:46.138699226Z","score":0.8643994393746326,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.48,s=0.93 RRCF-fast!:w=0.14,s=0.91 RRCF-mid:w=0.11,s=0.86 RRCF-slow:w=0.09,s=0.91 COPOD!:w=0.18,s=0.64"} +{"timestamp":"2026-03-16T14:44:16.093031331Z","score":0.7660468122838745,"is_anomaly":false,"confidence":0.8978378826170103,"method":"SEAD","details":"MAD!:w=0.47,s=0.94 RRCF-fast:w=0.14,s=0.55 RRCF-mid:w=0.11,s=0.61 RRCF-slow:w=0.09,s=0.68 COPOD!:w=0.18,s=0.62"} +{"timestamp":"2026-03-16T14:44:46.079217384Z","score":0.6017176445172367,"is_anomaly":false,"confidence":0.7052374440094292,"method":"SEAD","details":"MAD!:w=0.47,s=0.60 RRCF-fast:w=0.15,s=0.60 RRCF-mid:w=0.11,s=0.61 RRCF-slow:w=0.09,s=0.73 COPOD!:w=0.18,s=0.55"} +{"timestamp":"2026-03-16T14:45:16.173274843Z","score":0.7893528116018402,"is_anomaly":false,"confidence":0.9251534575197117,"method":"SEAD","details":"MAD!:w=0.47,s=0.91 RRCF-fast:w=0.15,s=0.79 RRCF-mid:w=0.11,s=0.66 RRCF-slow:w=0.09,s=0.88 COPOD!:w=0.18,s=0.52"} +{"timestamp":"2026-03-16T14:45:46.16278056Z","score":0.44970019374767667,"is_anomaly":false,"confidence":0.527066836246102,"method":"SEAD","details":"MAD!:w=0.47,s=0.48 RRCF-fast:w=0.15,s=0.29 RRCF-mid:w=0.11,s=0.38 RRCF-slow:w=0.09,s=0.43 COPOD!:w=0.18,s=0.54"} +{"timestamp":"2026-03-16T14:46:16.058712805Z","score":0.32641502077056,"is_anomaly":false,"confidence":0.38257162147738916,"method":"SEAD","details":"MAD!:w=0.47,s=0.48 RRCF-fast:w=0.15,s=0.17 RRCF-mid:w=0.11,s=0.25 RRCF-slow:w=0.09,s=0.44 COPOD!:w=0.18,s=0.05"} +{"timestamp":"2026-03-16T14:46:46.110976445Z","score":0.5996540802052963,"is_anomaly":false,"confidence":0.7028188630783855,"method":"SEAD","details":"MAD!:w=0.47,s=0.65 RRCF-fast:w=0.15,s=0.78 RRCF-mid:w=0.11,s=0.65 RRCF-slow:w=0.09,s=0.88 COPOD!:w=0.19,s=0.16"} +{"timestamp":"2026-03-16T14:47:16.053186063Z","score":0.38675553724097816,"is_anomaly":false,"confidence":0.45329315007731635,"method":"SEAD","details":"MAD!:w=0.47,s=0.56 RRCF-fast:w=0.15,s=0.21 RRCF-mid:w=0.11,s=0.25 RRCF-slow:w=0.09,s=0.46 COPOD!:w=0.19,s=0.13"} +{"timestamp":"2026-03-16T14:47:46.086831519Z","score":0.6163409572660739,"is_anomaly":false,"confidence":0.7234019318954834,"method":"SEAD","details":"MAD!:w=0.46,s=0.76 RRCF-fast:w=0.15,s=0.26 RRCF-mid:w=0.11,s=0.34 RRCF-slow:w=0.09,s=0.53 COPOD!:w=0.19,s=0.73"} +{"timestamp":"2026-03-16T14:48:16.041252781Z","score":0.38926852743386603,"is_anomaly":false,"confidence":0.45688608140023906,"method":"SEAD","details":"MAD!:w=0.46,s=0.45 RRCF-fast:w=0.15,s=0.24 RRCF-mid:w=0.11,s=0.15 RRCF-slow:w=0.09,s=0.38 COPOD!:w=0.19,s=0.49"} +{"timestamp":"2026-03-16T14:48:48.446825983Z","score":0.7777739228604281,"is_anomaly":false,"confidence":0.9128764716057477,"method":"SEAD","details":"MAD!:w=0.46,s=0.82 RRCF-fast:w=0.15,s=0.78 RRCF-mid:w=0.11,s=0.56 RRCF-slow:w=0.09,s=0.76 COPOD!:w=0.19,s=0.82"} +{"timestamp":"2026-03-16T14:49:16.096020374Z","score":0.5189336325036229,"is_anomaly":false,"confidence":0.6090745517608086,"method":"SEAD","details":"MAD!:w=0.46,s=0.59 RRCF-fast:w=0.15,s=0.24 RRCF-mid:w=0.11,s=0.34 RRCF-slow:w=0.09,s=0.60 COPOD!:w=0.19,s=0.62"} +{"timestamp":"2026-03-16T14:49:46.036225089Z","score":0.5328019289565128,"is_anomaly":false,"confidence":0.6253518286930779,"method":"SEAD","details":"MAD!:w=0.46,s=0.61 RRCF-fast:w=0.15,s=0.55 RRCF-mid:w=0.11,s=0.45 RRCF-slow:w=0.09,s=0.70 COPOD!:w=0.19,s=0.30"} +{"timestamp":"2026-03-16T14:50:16.078680505Z","score":0.4119118103821179,"is_anomaly":false,"confidence":0.48346259629206073,"method":"SEAD","details":"MAD!:w=0.46,s=0.53 RRCF-fast:w=0.15,s=0.39 RRCF-mid:w=0.11,s=0.28 RRCF-slow:w=0.09,s=0.63 COPOD!:w=0.19,s=0.13"} +{"timestamp":"2026-03-16T14:50:46.041351884Z","score":0.39968964798760837,"is_anomaly":false,"confidence":0.46997103383222943,"method":"SEAD","details":"MAD!:w=0.46,s=0.44 RRCF-fast:w=0.15,s=0.17 RRCF-mid:w=0.11,s=0.21 RRCF-slow:w=0.09,s=0.47 COPOD!:w=0.19,s=0.56"} +{"timestamp":"2026-03-16T14:51:16.079718365Z","score":0.3213571227147352,"is_anomaly":false,"confidence":0.3778645255187522,"method":"SEAD","details":"MAD!:w=0.45,s=0.39 RRCF-fast:w=0.15,s=0.08 RRCF-mid:w=0.11,s=0.17 RRCF-slow:w=0.09,s=0.40 COPOD!:w=0.19,s=0.39"} +{"timestamp":"2026-03-16T14:51:46.043663925Z","score":0.41448475858947587,"is_anomaly":false,"confidence":0.4873677151329106,"method":"SEAD","details":"MAD!:w=0.45,s=0.39 RRCF-fast:w=0.15,s=0.25 RRCF-mid:w=0.11,s=0.22 RRCF-slow:w=0.09,s=0.57 COPOD!:w=0.19,s=0.63"} +{"timestamp":"2026-03-16T14:52:16.079124522Z","score":0.5491393137887264,"is_anomaly":false,"confidence":0.6456999132166917,"method":"SEAD","details":"MAD!:w=0.45,s=0.67 RRCF-fast:w=0.15,s=0.34 RRCF-mid:w=0.11,s=0.29 RRCF-slow:w=0.09,s=0.52 COPOD!:w=0.19,s=0.59"} +{"timestamp":"2026-03-16T14:52:46.046161046Z","score":0.22218697270117604,"is_anomaly":false,"confidence":0.2612563067124081,"method":"SEAD","details":"MAD:w=0.45,s=0.03 RRCF-fast:w=0.15,s=0.14 RRCF-mid:w=0.11,s=0.18 RRCF-slow:w=0.09,s=0.51 COPOD!:w=0.19,s=0.62"} +{"timestamp":"2026-03-16T14:53:16.123602674Z","score":0.7587156345127335,"is_anomaly":false,"confidence":0.8921281122289167,"method":"SEAD","details":"MAD!:w=0.45,s=0.85 RRCF-fast:w=0.15,s=0.71 RRCF-mid:w=0.11,s=0.60 RRCF-slow:w=0.09,s=0.65 COPOD!:w=0.19,s=0.74"} +{"timestamp":"2026-03-16T14:53:46.033092117Z","score":0.28555906132343745,"is_anomaly":false,"confidence":0.33577173676136257,"method":"SEAD","details":"MAD!:w=0.45,s=0.17 RRCF-fast:w=0.15,s=0.10 RRCF-mid:w=0.11,s=0.34 RRCF-slow:w=0.09,s=0.25 COPOD!:w=0.19,s=0.70"} +{"timestamp":"2026-03-16T14:54:16.07647169Z","score":0.8007801477822474,"is_anomaly":false,"confidence":0.9455049501782029,"method":"SEAD","details":"MAD!:w=0.46,s=0.83 RRCF-fast!:w=0.15,s=0.86 RRCF-mid:w=0.11,s=0.65 RRCF-slow:w=0.09,s=0.75 COPOD!:w=0.19,s=0.81"} +{"timestamp":"2026-03-16T14:54:46.036481919Z","score":0.4457012339242453,"is_anomaly":false,"confidence":0.5262527101140125,"method":"SEAD","details":"MAD!:w=0.45,s=0.30 RRCF-fast:w=0.15,s=0.60 RRCF-mid:w=0.11,s=0.42 RRCF-slow:w=0.09,s=0.42 COPOD!:w=0.19,s=0.69"} +{"timestamp":"2026-03-16T14:55:16.080828114Z","score":0.8672253269080682,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.46,s=0.97 RRCF-fast!:w=0.15,s=0.88 RRCF-mid!:w=0.11,s=0.83 RRCF-slow:w=0.09,s=0.66 COPOD!:w=0.19,s=0.74"} +{"timestamp":"2026-03-16T14:55:46.083425149Z","score":0.4059713043491133,"is_anomaly":false,"confidence":0.47735725599049467,"method":"SEAD","details":"MAD!:w=0.46,s=0.31 RRCF-fast:w=0.15,s=0.58 RRCF-mid:w=0.11,s=0.34 RRCF-slow:w=0.09,s=0.40 COPOD!:w=0.19,s=0.54"} +{"timestamp":"2026-03-16T14:56:16.040733831Z","score":0.48287225496979025,"is_anomaly":false,"confidence":0.5677804617148552,"method":"SEAD","details":"MAD!:w=0.46,s=0.62 RRCF-fast:w=0.15,s=0.49 RRCF-mid:w=0.11,s=0.43 RRCF-slow:w=0.09,s=0.41 COPOD!:w=0.19,s=0.19"} +{"timestamp":"2026-03-16T14:56:46.086135941Z","score":0.2607303545667354,"is_anomaly":false,"confidence":0.3065771528087497,"method":"SEAD","details":"MAD:w=0.45,s=0.08 RRCF-fast:w=0.15,s=0.46 RRCF-mid:w=0.11,s=0.28 RRCF-slow:w=0.09,s=0.37 COPOD!:w=0.19,s=0.47"} +{"timestamp":"2026-03-16T14:57:16.031821327Z","score":0.3430110082618136,"is_anomaly":false,"confidence":0.40332602803272455,"method":"SEAD","details":"MAD!:w=0.46,s=0.38 RRCF-fast:w=0.15,s=0.35 RRCF-mid:w=0.11,s=0.25 RRCF-slow:w=0.09,s=0.44 COPOD!:w=0.19,s=0.24"} diff --git a/evaluation/data/pipeline_batch-out_run1/baseline_metrics.csv b/evaluation/data/pipeline_batch-out_run1/baseline_metrics.csv new file mode 100644 index 0000000..b78f577 --- /dev/null +++ b/evaluation/data/pipeline_batch-out_run1/baseline_metrics.csv @@ -0,0 +1,3248 @@ +timestamp,cpu_percent,cpu_count,cpu_freq_current,memory_percent,memory_available_mb,memory_used_mb,swap_percent,disk_io_read_mb_s,disk_io_write_mb_s,disk_io_read_count,disk_io_write_count,network_sent_mb_s,network_recv_mb_s,network_packets_sent,network_packets_recv,network_errin,network_errout,network_dropin,network_dropout,tixstream_active,transfer_job_manager_active +1773656821.323822,0.80,4,3992.50,48.41,1793.28,1895.30,0.00,3513321834075.201660,0.000000,11,0,0.000008,0.000038,62003776,30108447,0,0,71671,0,1,1 +1773656826.326963,0.60,4,3992.50,48.45,1791.57,1897.01,0.00,0.000000,0.000000,11,0,0.000000,0.000020,62003776,30108449,0,0,71673,0,1,1 +1773656831.323315,0.60,4,3992.50,48.47,1790.84,1897.75,0.00,0.000000,0.000000,11,0,0.000000,0.000030,62003776,30108452,0,0,71676,0,1,1 +1773656836.328015,0.65,4,3992.50,48.92,1773.13,1915.42,0.00,48334.670430,48565.630503,3376784,2978454,0.000000,0.000020,62003776,30108454,0,0,71678,0,1,1 +1773656841.328080,0.65,4,3992.50,48.92,1773.17,1915.41,0.00,3518391067469.135742,3518391067237.907715,75,0,0.000000,0.000030,62003776,30108457,0,0,71681,0,1,1 +1773656846.323398,0.60,4,3992.50,48.94,1772.43,1916.15,0.00,3521734746473.925293,0.000000,11,0,0.000000,0.000664,62003776,30108463,0,0,71683,0,1,1 +1773656851.328085,13.18,4,3992.50,48.98,1770.90,1917.51,0.00,0.000000,0.000000,11,0,40.027325,0.020811,62008200,30109847,0,0,71686,0,1,1 +1773656856.323470,0.60,4,3992.50,48.98,1770.90,1917.51,0.00,0.000000,0.000000,11,0,0.000025,0.000051,62008202,30109851,0,0,71688,0,1,1 +1773656861.323477,0.60,4,3992.50,48.98,1770.66,1917.75,0.00,48429.902095,48621.988929,3378513,2979126,0.000056,0.000086,62008206,30109858,0,0,71691,0,1,1 +1773656866.323463,0.60,4,3992.50,49.42,1754.04,1934.98,0.00,0.000000,0.067188,3378513,2979156,0.000008,0.000028,62008207,30109861,0,0,71693,0,1,1 +1773656871.323440,0.55,4,3992.50,49.42,1754.14,1934.90,0.00,3518452813346.104492,3518452813153.949707,11,0,0.000000,0.000030,62008207,30109864,0,0,71696,0,1,1 +1773656876.328239,0.60,4,3992.50,49.42,1754.14,1934.90,0.00,0.053464,0.000000,75,0,0.000000,0.000020,62008207,30109866,0,0,71698,0,1,1 +1773656881.323436,0.55,4,3992.50,49.42,1754.14,1934.90,0.00,3521820076252.654785,0.000000,11,0,0.000000,0.000030,62008207,30109869,0,0,71701,0,1,1 +1773656886.323413,0.55,4,3992.50,49.43,1753.91,1935.13,0.00,0.053516,0.000000,75,0,0.000000,0.000020,62008207,30109871,0,0,71703,0,1,1 +1773656891.327973,0.50,4,3992.50,49.43,1753.91,1935.13,0.00,1.602738,10.665469,253,556,0.000000,0.000030,62008207,30109874,0,0,71706,0,1,1 +1773656896.326865,0.65,4,3992.50,49.43,1758.54,1935.13,0.00,3519216989943.740234,3519216989934.720703,11,0,0.000157,0.000201,62008219,30109888,0,0,71708,0,1,1 +1773656901.324800,0.60,4,3992.50,49.42,1758.51,1935.09,0.00,0.180348,0.000000,205,0,0.000000,0.000030,62008219,30109891,0,0,71711,0,1,1 +1773656906.323612,0.50,4,3992.50,49.42,1758.52,1935.09,0.00,3519272890496.614746,0.000000,11,0,0.000000,0.000020,62008219,30109893,0,0,71713,0,1,1 +1773656911.328310,0.55,4,3992.50,49.43,1758.28,1935.32,0.00,0.000000,0.000000,11,0,0.000000,0.000673,62008219,30109900,0,0,71716,0,1,1 +1773656916.327480,12.72,4,3992.50,49.63,1750.52,1943.07,0.00,0.000000,0.000000,11,0,40.071842,0.023301,62012637,30111479,0,0,71718,0,1,1 +1773656921.327814,0.70,4,3992.50,49.63,1750.53,1943.07,0.00,0.053512,0.000000,75,0,0.000008,0.000038,62012638,30111483,0,0,71721,0,1,1 +1773656926.325306,0.80,4,3992.50,49.63,1750.60,1942.99,0.00,48444.622656,48636.151065,3377081,2978863,0.000000,0.000020,62012638,30111485,0,0,71723,0,1,1 +1773656931.323460,0.50,4,3992.50,49.67,1748.89,1944.71,0.00,9.729764,10.715577,3378584,2979462,0.000000,0.000030,62012638,30111488,0,0,71726,0,1,1 +1773656936.327446,0.65,4,3992.50,49.68,1748.64,1944.96,0.00,3515634208581.671875,3515634208398.471680,253,556,0.000000,0.000020,62012638,30111490,0,0,71728,0,1,1 +1773656941.326380,0.60,4,3992.50,49.68,1748.64,1944.96,0.00,48438.764829,48622.162412,3378584,2979472,0.000000,0.000030,62012638,30111493,0,0,71731,0,1,1 +1773656946.323506,0.60,4,3992.50,49.68,1748.65,1944.95,0.00,3520460839469.125000,3520460839468.178223,3377081,2978918,0.000000,0.000020,62012638,30111495,0,0,71733,0,1,1 +1773656951.327766,0.65,4,3992.50,49.68,1748.65,1944.95,0.00,3515441972263.481445,3515441972072.214355,11,0,0.000000,0.000030,62012638,30111498,0,0,71736,0,1,1 +1773656956.325288,0.85,4,3992.50,50.07,1733.15,1960.45,0.00,0.000000,0.000000,11,0,0.000000,0.000020,62012638,30111500,0,0,71738,0,1,1 +1773656961.327917,0.65,4,3992.50,50.07,1733.19,1960.41,0.00,48404.649010,48596.969182,3378584,2979505,0.000157,0.000210,62012650,30111515,0,0,71741,0,1,1 +1773656966.327821,0.65,4,3992.50,50.07,1733.19,1960.41,0.00,3518505010602.200195,3518505010407.600098,258,2,0.000016,0.000036,62012652,30111519,0,0,71743,0,1,1 +1773656971.326121,0.70,4,3992.50,50.08,1732.95,1960.66,0.00,3519633409793.770508,3519633409795.946777,11,0,0.000000,0.000030,62012652,30111522,0,0,71746,0,1,1 +1773656976.327565,0.60,4,3992.50,50.08,1732.70,1960.90,0.00,48406.396694,48597.827557,3377081,2978960,0.000000,0.000342,62012652,30111526,0,0,71748,0,1,1 +1773656981.324599,1.15,4,3992.50,49.89,1740.12,1953.48,0.00,3520525252992.672363,3520525252801.072266,11,0,0.003173,0.002667,62012688,30111563,0,0,71751,0,1,1 +1773656986.326440,18.88,4,3992.50,51.53,1680.79,2017.52,0.00,48412.277834,48604.791147,3378584,2979647,40.050271,0.020085,62017247,30113011,0,0,71753,0,1,1 +1773656991.323444,0.85,4,3992.50,50.63,1716.02,1982.30,0.00,3520546912968.761230,3520546912776.061035,11,0,0.000000,0.000030,62017247,30113014,0,0,71756,0,1,1 +1773656996.323431,0.60,4,3992.50,50.27,1730.13,1968.19,0.00,0.000000,0.000000,11,0,0.000000,0.000020,62017247,30113016,0,0,71758,0,1,1 +1773657001.325690,0.70,4,3992.50,50.19,1733.16,1965.15,0.00,0.180192,0.000000,205,0,0.000000,0.000030,62017247,30113019,0,0,71761,0,1,1 +1773657006.328350,0.65,4,3992.50,50.20,1732.98,1965.34,0.00,0.000000,0.000000,205,0,0.000000,0.000020,62017247,30113021,0,0,71763,0,1,1 +1773657011.327996,0.55,4,3992.50,50.20,1732.73,1965.58,0.00,1.995258,0.000195,258,2,0.000000,0.000030,62017247,30113024,0,0,71766,0,1,1 +1773657016.323429,0.70,4,3992.50,50.40,1732.79,1973.17,0.00,3521654583352.072754,3521654583354.250488,11,0,0.000000,0.000020,62017247,30113026,0,0,71768,0,1,1 +1773657021.327955,0.65,4,3992.50,50.40,1731.53,1973.17,0.00,2.173423,0.000195,258,2,0.000000,0.000030,62017247,30113029,0,0,71771,0,1,1 +1773657026.327832,0.65,4,3992.50,50.40,1731.54,1973.17,0.00,3518523742750.248535,3518523742752.424316,11,0,0.000000,0.000020,62017247,30113031,0,0,71773,0,1,1 +1773657031.327466,0.55,4,3992.50,50.40,1731.54,1973.17,0.00,2.175550,0.000195,258,2,0.000157,0.000210,62017259,30113046,0,0,71776,0,1,1 +1773657036.326578,0.55,4,3992.50,50.40,1731.54,1973.17,0.00,3519062529400.999023,3519062529403.174805,11,0,0.000016,0.000036,62017261,30113050,0,0,71778,0,1,1 +1773657041.328201,0.55,4,3992.50,50.40,1731.54,1973.16,0.00,48414.425280,48607.167805,3378598,2979834,0.000000,0.000673,62017261,30113057,0,0,71781,0,1,1 +1773657046.327567,0.75,4,3992.50,50.40,1730.71,1973.12,0.00,0.000000,0.046881,3378598,2979869,0.000000,0.000020,62017261,30113059,0,0,71783,0,1,1 +1773657051.328145,11.65,4,3992.50,55.16,1544.30,2159.50,0.00,3518030331075.533691,3518030331074.604980,3377095,2979359,36.253497,0.019403,62021308,30114405,0,0,71786,0,1,1 +1773657056.323445,1.00,4,3992.50,51.09,1703.68,2000.13,0.00,3521747673008.195312,3521747672813.913574,258,2,3.812249,0.002234,62021783,30114508,0,0,71788,0,1,1 +1773657061.325026,0.60,4,3992.50,50.54,1725.02,1978.79,0.00,3517325486407.785156,3517325486409.779785,205,0,0.000512,0.001116,62021797,30114533,0,0,71791,0,1,1 +1773657066.327570,0.70,4,3992.50,50.30,1734.54,1969.27,0.00,3516647260747.159180,0.000000,11,0,0.000205,0.000552,62021804,30114546,0,0,71793,0,1,1 +1773657071.323421,0.55,4,3992.50,50.30,1734.54,1969.27,0.00,2.177197,0.000195,258,2,0.000000,0.000030,62021804,30114549,0,0,71796,0,1,1 +1773657076.328213,0.75,4,3992.50,50.25,1733.61,1967.46,0.00,48371.872963,48565.962713,3377095,2979482,0.000000,0.000020,62021804,30114551,0,0,71798,0,1,1 +1773657081.327549,0.70,4,3992.50,50.27,1732.88,1968.20,0.00,3518904759566.706543,3518904759383.599121,253,556,0.000000,0.000030,62021804,30114554,0,0,71801,0,1,1 +1773657086.327980,0.55,4,3992.50,50.28,1732.64,1968.43,0.00,3518134336918.418457,3518134336909.221680,205,0,0.000000,0.000020,62021804,30114556,0,0,71803,0,1,1 +1773657091.328244,0.60,4,3992.50,50.28,1732.64,1968.43,0.00,3518251327703.376465,0.000000,75,0,0.000000,0.000030,62021804,30114559,0,0,71806,0,1,1 +1773657096.326895,0.55,4,3992.50,50.28,1732.42,1968.65,0.00,2.122448,0.000195,258,2,0.000056,0.000076,62021808,30114565,0,0,71808,0,1,1 +1773657101.327703,0.55,4,3992.50,50.28,1732.42,1968.65,0.00,48420.131339,48615.383353,3378598,2980095,0.000117,0.000170,62021818,30114578,0,0,71811,0,1,1 +1773657106.327546,0.75,4,3992.50,50.48,1724.82,1976.23,0.00,3518548160091.868652,3518548159898.753906,11,0,0.000062,0.000070,62021822,30114584,0,0,71813,0,1,1 +1773657111.328108,0.65,4,3992.50,50.48,1724.83,1976.23,0.00,48414.972898,48607.147207,3377095,2979559,0.001140,0.001314,62021846,30114607,0,0,71816,0,1,1 +1773657116.328049,1.05,4,3992.50,50.22,1734.96,1966.11,0.00,3518478235177.758789,3518478234985.507324,75,0,0.004276,0.002610,62021902,30114652,0,0,71818,0,1,1 +1773657121.323438,11.20,4,3992.50,50.33,1730.73,1970.34,0.00,0.000000,0.000000,75,0,40.098941,0.026835,62026179,30116501,0,0,71821,0,1,1 +1773657126.328127,0.60,4,3992.50,50.32,1730.75,1970.32,0.00,2.119887,0.000195,258,2,0.000000,0.000020,62026179,30116503,0,0,71823,0,1,1 +1773657131.323673,0.70,4,3992.50,50.36,1729.27,1971.80,0.00,3521574071411.922363,10.684517,253,556,0.000000,0.000030,62026179,30116506,0,0,71826,0,1,1 +1773657136.327936,0.70,4,3992.50,50.37,1727.97,1971.96,0.00,3515440433014.574219,3515440433005.564453,11,0,0.000000,0.000020,62026179,30116508,0,0,71828,0,1,1 +1773657141.327625,0.70,4,3992.50,50.37,1727.73,1972.21,0.00,1.657818,10.675859,253,556,0.000000,0.000030,62026179,30116511,0,0,71831,0,1,1 +1773657146.327758,0.70,4,3992.50,50.37,1727.73,1972.21,0.00,3518343544947.206543,3518343544938.009277,205,0,0.000000,0.000020,62026179,30116513,0,0,71833,0,1,1 +1773657151.323433,0.50,4,3992.50,50.37,1727.73,1972.21,0.00,3521482904937.021484,0.000000,75,0,0.000000,0.000030,62026179,30116516,0,0,71836,0,1,1 +1773657156.327931,0.65,4,3992.50,50.37,1727.73,1972.21,0.00,48386.556478,48579.834463,3378598,2980330,0.000025,0.000051,62026181,30116520,0,0,71838,0,1,1 +1773657161.323450,0.75,4,3992.50,50.37,1727.72,1972.22,0.00,3521593636670.120117,3521593636476.547852,11,0,0.000064,0.000094,62026186,30116528,0,0,71841,0,1,1 +1773657166.323419,0.90,4,3992.50,50.38,1729.77,1972.42,0.00,48420.708781,48613.195020,3377095,2979794,0.000157,0.000200,62026198,30116542,0,0,71843,0,1,1 +1773657171.328352,0.55,4,3992.50,50.36,1730.53,1971.69,0.00,3514969331090.565918,3514969330896.097656,258,2,0.000000,0.000030,62026198,30116545,0,0,71846,0,1,1 +1773657176.327136,0.65,4,3992.50,50.36,1730.53,1971.69,0.00,3519293184038.755859,3519293184040.877930,75,0,0.000000,0.000664,62026198,30116551,0,0,71848,0,1,1 +1773657181.326164,0.75,4,3992.50,50.36,1730.54,1971.69,0.00,2.122288,0.000195,258,2,0.000000,0.000030,62026198,30116554,0,0,71851,0,1,1 +1773657186.327880,16.54,4,3992.50,50.50,1725.22,1977.00,0.00,3517229914790.308594,10.671337,253,556,40.052046,0.029745,62030613,30118682,0,0,71853,0,1,1 +1773657191.328105,0.75,4,3992.50,50.49,1725.25,1976.97,0.00,3518278609807.402344,3518278609798.385254,11,0,0.003085,0.001438,62030669,30118722,0,0,71856,0,1,1 +1773657196.326574,0.95,4,3992.50,50.41,1735.64,1973.75,0.00,2.176057,0.000195,258,2,0.000000,0.000020,62030669,30118724,0,0,71858,0,1,1 +1773657201.327852,0.55,4,3992.50,50.44,1734.42,1974.97,0.00,3517538093784.560547,10.672272,253,556,0.000000,0.000030,62030669,30118727,0,0,71861,0,1,1 +1773657206.323797,0.60,4,3992.50,50.44,1734.42,1974.97,0.00,0.518096,3521293053598.923828,258,2,0.000000,0.000020,62030669,30118729,0,0,71863,0,1,1 +1773657211.327541,0.60,4,3992.50,50.44,1734.43,1974.97,0.00,3515803981393.702637,10.667011,253,556,0.000000,0.000030,62030669,30118732,0,0,71866,0,1,1 +1773657216.323869,0.65,4,3992.50,50.43,1735.09,1974.30,0.00,3521023731084.229980,3521023731075.025879,205,0,0.000000,0.000020,62030669,30118734,0,0,71868,0,1,1 +1773657221.328082,0.60,4,3992.50,50.43,1734.88,1974.52,0.00,1.476197,10.666206,253,556,0.000000,0.000030,62030669,30118737,0,0,71871,0,1,1 +1773657226.325454,0.80,4,3992.50,50.44,1734.52,1974.72,0.00,3520287837574.849121,3520287837565.827148,11,0,0.000000,0.000020,62030669,30118739,0,0,71873,0,1,1 +1773657231.327666,0.55,4,3992.50,50.35,1732.50,1971.25,0.00,0.180194,0.000000,205,0,0.000056,0.000086,62030673,30118746,0,0,71876,0,1,1 +1773657236.328139,0.60,4,3992.50,50.35,1732.27,1971.48,0.00,48425.380674,48619.275043,3378598,2980617,0.000117,0.000160,62030683,30118758,0,0,71878,0,1,1 +1773657241.328115,0.55,4,3992.50,50.35,1732.27,1971.48,0.00,3518454133341.546387,3518454133340.597168,3377095,2980059,0.000000,0.000674,62030683,30118765,0,0,71881,0,1,1 +1773657246.327639,0.65,4,3992.50,50.35,1732.27,1971.48,0.00,3518771547213.314453,3518771547029.531250,253,556,0.000000,0.000020,62030683,30118767,0,0,71883,0,1,1 +1773657251.328070,20.21,4,3992.50,50.27,1735.64,1968.11,0.00,3518134208869.176270,3518134208860.160156,11,0,40.057751,0.021831,62034949,30120277,0,0,71886,0,1,1 +1773657256.327399,1.05,4,3992.50,50.42,1733.27,1974.23,0.00,48436.633651,48630.567373,3378598,2980758,0.003085,0.001429,62035005,30120316,0,0,71888,0,1,1 +1773657261.327615,0.65,4,3992.50,50.45,1731.88,1975.12,0.00,3518285114947.191406,3518285114753.291992,11,0,0.000000,0.000030,62035005,30120319,0,0,71891,0,1,1 +1773657266.328391,0.70,4,3992.50,50.25,1739.51,1967.49,0.00,2.175053,0.000195,258,2,0.000000,0.000020,62035005,30120321,0,0,71893,0,1,1 +1773657271.327648,0.60,4,3992.50,50.26,1739.30,1967.71,0.00,48425.430517,48620.637545,3377095,2980247,0.000000,0.000030,62035005,30120324,0,0,71896,0,1,1 +1773657276.327595,0.65,4,3992.50,50.28,1738.31,1968.69,0.00,3518474495699.357422,3518474495506.352051,11,0,0.000000,0.000020,62035005,30120326,0,0,71898,0,1,1 +1773657281.327586,0.65,4,3992.50,50.31,1737.33,1969.67,0.00,2.175394,0.000195,258,2,0.000000,0.000030,62035005,30120329,0,0,71901,0,1,1 +1773657286.323428,0.85,4,3992.50,50.64,1723.78,1982.68,0.00,3521365763987.015137,3521365763989.192383,11,0,0.000000,0.000020,62035005,30120331,0,0,71903,0,1,1 +1773657291.328261,0.95,4,3992.50,50.68,1721.92,1984.39,0.00,0.000000,0.000000,11,0,0.000000,0.000030,62035005,30120334,0,0,71906,0,1,1 +1773657296.324064,0.65,4,3992.50,50.58,1726.14,1980.18,0.00,2.177218,0.000195,258,2,0.000056,0.000076,62035009,30120340,0,0,71908,0,1,1 +1773657301.327788,0.70,4,3992.50,50.57,1726.39,1979.92,0.00,0.000000,0.000000,258,2,0.000117,0.000170,62035019,30120353,0,0,71911,0,1,1 +1773657306.323550,0.65,4,3992.50,50.57,1726.26,1980.02,0.00,3521421664450.118164,3521421664452.295410,11,0,0.000000,0.000664,62035019,30120359,0,0,71913,0,1,1 +1773657311.324637,0.70,4,3992.50,50.57,1726.29,1980.02,0.00,0.180234,0.000000,205,0,0.000000,0.000030,62035019,30120362,0,0,71916,0,1,1 +1773657316.325459,15.17,4,3992.50,51.95,1668.38,2033.97,0.00,3517859304103.029297,0.000000,75,0,40.053873,0.020989,62039229,30121805,0,0,71918,0,1,1 +1773657321.323642,0.95,4,3992.50,51.32,1693.21,2009.15,0.00,0.126804,0.000000,205,0,0.003086,0.001439,62039285,30121845,0,0,71921,0,1,1 +1773657326.323415,0.65,4,3992.50,51.09,1702.22,2000.14,0.00,3518597136160.105957,0.000000,75,0,0.000000,0.000020,62039285,30121847,0,0,71923,0,1,1 +1773657331.328018,0.60,4,3992.50,50.99,1706.12,1996.24,0.00,0.126641,0.000000,205,0,0.000000,0.000030,62039285,30121850,0,0,71926,0,1,1 +1773657336.327853,0.70,4,3992.50,50.97,1706.96,1995.39,0.00,48431.583276,48626.040398,3378604,2981099,0.000000,0.000020,62039285,30121852,0,0,71928,0,1,1 +1773657341.323499,0.60,4,3992.50,50.97,1706.72,1995.64,0.00,3521503459586.783691,3521503459401.369629,253,556,0.000000,0.000030,62039285,30121855,0,0,71931,0,1,1 +1773657346.327953,0.70,4,3992.50,50.89,1707.33,1992.36,0.00,3515305803999.907715,3515305803990.898438,11,0,0.000000,0.000020,62039285,30121857,0,0,71933,0,1,1 +1773657351.328067,0.65,4,3992.50,50.87,1708.09,1991.60,0.00,0.000000,0.000000,11,0,0.000000,0.000030,62039285,30121860,0,0,71936,0,1,1 +1773657356.323666,0.65,4,3992.50,50.87,1708.09,1991.60,0.00,0.000000,0.000000,11,0,0.000000,0.000020,62039285,30121862,0,0,71938,0,1,1 +1773657361.323541,0.65,4,3992.50,50.90,1706.66,1993.04,0.00,0.000000,0.000000,11,0,0.001503,0.001843,62039306,30121894,0,0,71941,0,1,1 +1773657366.327480,0.55,4,3992.50,50.91,1706.43,1993.27,0.00,0.053473,0.000000,75,0,0.000313,0.000684,62039322,30121916,0,0,71943,0,1,1 +1773657371.328379,0.60,4,3992.50,50.91,1706.43,1993.27,0.00,3517804848283.619141,0.000000,11,0,0.000000,0.000674,62039322,30121923,0,0,71946,0,1,1 +1773657376.328136,0.75,4,3992.50,51.01,1705.78,1997.16,0.00,1.657795,10.675712,253,556,0.000000,0.000020,62039322,30121925,0,0,71948,0,1,1 +1773657381.328134,13.42,4,3992.50,52.16,1660.82,2042.11,0.00,3518438858325.859863,3518438858316.662109,205,0,40.063689,0.024102,62043754,30123614,0,0,71951,0,1,1 +1773657386.326625,0.85,4,3992.50,51.35,1692.52,2010.41,0.00,48434.869919,48628.638647,3377101,2980722,0.003086,0.001416,62043810,30123652,0,0,71953,0,1,1 +1773657391.323507,0.75,4,3992.50,51.05,1704.05,1998.87,0.00,0.000000,0.005179,3377101,2980731,0.000000,0.000030,62043810,30123655,0,0,71956,0,1,1 +1773657396.323461,0.65,4,3992.50,51.05,1704.37,1998.56,0.00,3518469702087.522461,3518469701891.810059,258,2,0.000000,0.000020,62043810,30123657,0,0,71958,0,1,1 +1773657401.323480,0.60,4,3992.50,51.05,1704.33,1998.60,0.00,3518423985940.181152,3518423985942.176270,205,0,0.000013,0.000030,62043811,30123660,0,0,71961,0,1,1 +1773657406.323445,0.80,4,3992.50,51.15,1697.05,2002.80,0.00,3518461890189.487305,0.000000,11,0,0.000062,0.000070,62043815,30123666,0,0,71963,0,1,1 +1773657411.323449,0.70,4,3992.50,51.17,1696.55,2003.32,0.00,48430.118882,48624.760905,3378604,2981395,0.001810,0.001584,62043842,30123686,0,0,71966,0,1,1 +1773657416.326911,0.50,4,3992.50,51.14,1697.72,2002.16,0.00,3516002607117.193848,3516002606920.512207,258,2,0.001371,0.000975,62043871,30123712,0,0,71968,0,1,1 +1773657421.323466,0.65,4,3992.50,51.18,1696.25,2003.63,0.00,3520863067338.450684,3520863067340.627441,11,0,0.000008,0.000038,62043872,30123716,0,0,71971,0,1,1 +1773657426.323440,0.55,4,3992.50,51.18,1696.08,2003.79,0.00,48420.686554,48614.399284,3377101,2980854,0.000031,0.000045,62043874,30123720,0,0,71973,0,1,1 +1773657431.323424,0.55,4,3992.50,51.18,1696.11,2003.77,0.00,9.726203,10.678550,3378604,2981416,0.000076,0.000123,62043880,30123729,0,0,71976,0,1,1 +1773657436.326313,0.65,4,3992.50,51.37,1695.14,2011.24,0.00,3516405527623.824219,3516405527427.098633,258,2,0.000000,0.000663,62043880,30123735,0,0,71978,0,1,1 +1773657441.323450,0.65,4,3992.50,51.37,1695.11,2011.33,0.00,3520452545451.600586,3520452545453.723633,75,0,0.000000,0.000030,62043880,30123738,0,0,71981,0,1,1 +1773657446.326221,11.09,4,3992.50,52.74,1641.73,2064.70,0.00,48393.562631,48587.296874,3377101,2980936,40.045115,0.025930,62048368,30125476,0,0,71983,0,1,1 +1773657451.328098,0.80,4,3992.50,51.93,1673.27,2033.15,0.00,9.722523,10.697450,3378604,2981520,0.003085,0.001442,62048424,30125516,0,0,71986,0,1,1 +1773657456.323450,0.65,4,3992.50,51.42,1693.16,2013.26,0.00,3521710559247.636230,3521710559246.687012,3377101,2980963,0.000025,0.000051,62048426,30125520,0,0,71988,0,1,1 +1773657461.327996,0.60,4,3992.50,51.24,1700.20,2006.22,0.00,0.000000,0.007513,3377101,2980974,0.000056,0.000086,62048430,30125527,0,0,71991,0,1,1 +1773657466.327612,0.85,4,3992.50,51.43,1695.13,2013.60,0.00,3518707556952.643066,3518707556758.625488,205,0,0.000000,0.000020,62048430,30125529,0,0,71993,0,1,1 +1773657471.323436,0.65,4,3992.50,51.43,1694.41,2013.52,0.00,3521377894660.236816,0.000000,11,0,0.000000,0.000030,62048430,30125532,0,0,71996,0,1,1 +1773657476.323551,0.50,4,3992.50,51.43,1694.41,2013.52,0.00,0.000000,0.000000,11,0,0.000000,0.000020,62048430,30125534,0,0,71998,0,1,1 +1773657481.323564,0.50,4,3992.50,51.43,1694.41,2013.52,0.00,0.000000,0.000000,11,0,0.000000,0.000030,62048430,30125537,0,0,72001,0,1,1 +1773657486.323583,0.80,4,3992.50,51.43,1694.42,2013.52,0.00,48420.245085,48614.241790,3377101,2981092,0.000000,0.000020,62048430,30125539,0,0,72003,0,1,1 +1773657491.323482,0.60,4,3992.50,51.42,1694.92,2013.02,0.00,0.100002,0.002344,3377105,2981095,0.000056,0.000086,62048434,30125546,0,0,72006,0,1,1 +1773657496.323900,0.80,4,3992.50,51.27,1695.87,2007.23,0.00,3518142739060.694824,3518142738864.636230,258,2,0.000117,0.000160,62048444,30125558,0,0,72008,0,1,1 +1773657501.328264,0.70,4,3992.50,51.28,1695.55,2007.56,0.00,3515369218907.498535,3515369218909.491699,205,0,0.000000,0.000673,62048444,30125565,0,0,72011,0,1,1 +1773657506.328122,0.70,4,3992.50,51.28,1695.55,2007.56,0.00,3518536577281.967285,0.000000,75,0,0.000000,0.000020,62048444,30125567,0,0,72013,0,1,1 +1773657511.323555,1.00,4,3992.50,51.08,1703.15,1999.98,0.00,3521653692266.047852,0.000000,11,0,0.002236,0.000735,62048468,30125586,0,0,72016,0,1,1 +1773657516.327541,13.10,4,3992.50,52.25,1657.36,2045.73,0.00,0.000000,0.000000,11,0,40.031842,0.021693,62052875,30127052,0,0,72018,0,1,1 +1773657521.327790,0.60,4,3992.50,51.69,1679.29,2023.82,0.00,2.175282,0.000195,258,2,0.000000,0.000030,62052875,30127055,0,0,72021,0,1,1 +1773657526.327914,0.85,4,3992.50,51.63,1681.81,2021.25,0.00,3518349708229.108887,10.674735,253,556,0.000000,0.000020,62052875,30127057,0,0,72023,0,1,1 +1773657531.327383,0.70,4,3992.50,51.52,1685.77,2017.30,0.00,3518811309194.592285,3518811309185.574219,11,0,0.000000,0.000030,62052875,30127060,0,0,72026,0,1,1 +1773657536.323508,0.60,4,3992.50,51.54,1685.06,2018.01,0.00,48467.823529,48663.040133,3378610,2981853,0.000000,0.000020,62052875,30127062,0,0,72028,0,1,1 +1773657541.328175,0.70,4,3992.50,51.54,1685.06,2018.01,0.00,3515156623662.806641,3515156623476.932129,253,556,0.000000,0.000030,62052875,30127065,0,0,72031,0,1,1 +1773657546.323509,0.55,4,3992.50,51.54,1685.06,2018.01,0.00,3521723694111.272461,3521723694102.066406,205,0,0.000000,0.000020,62052875,30127067,0,0,72033,0,1,1 +1773657551.328309,0.70,4,3992.50,51.55,1684.83,2018.24,0.00,48373.914721,48568.098105,3377107,2981348,0.000000,0.000030,62052875,30127070,0,0,72036,0,1,1 +1773657556.327418,1.05,4,3992.50,51.57,1694.95,2018.93,0.00,3519064629393.022949,3519064629198.618652,205,0,0.000000,0.000020,62052875,30127072,0,0,72038,0,1,1 +1773657561.327789,0.65,4,3992.50,51.57,1692.78,2019.16,0.00,3518175678257.625000,0.000000,11,0,0.000157,0.000210,62052887,30127087,0,0,72041,0,1,1 +1773657566.327452,1.00,4,3992.50,51.59,1692.04,2019.90,0.00,48433.537343,48628.740078,3378610,2981938,0.000016,0.000680,62052889,30127095,0,0,72043,0,1,1 +1773657571.323413,0.65,4,3992.50,51.59,1692.04,2019.90,0.00,3521281543932.908203,3521281543737.560547,11,0,0.000000,0.000030,62052889,30127098,0,0,72046,0,1,1 +1773657576.323508,0.90,4,3992.50,51.55,1693.53,2018.43,0.00,0.053515,0.000000,75,0,0.002234,0.000725,62052913,30127116,0,0,72048,0,1,1 +1773657581.323436,16.93,4,3992.50,52.70,1648.61,2063.32,0.00,3518488039072.451660,0.000000,11,0,40.064384,0.020131,62057337,30128456,0,0,72051,0,1,1 +1773657586.323435,0.90,4,3992.50,52.11,1672.62,2040.27,0.00,2.175391,0.000195,258,2,0.000008,0.000028,62057338,30128459,0,0,72053,0,1,1 +1773657591.323490,0.95,4,3992.50,51.62,1690.75,2020.86,0.00,3518398758412.033203,3518398758414.208496,11,0,0.000000,0.000030,62057338,30128462,0,0,72056,0,1,1 +1773657596.323419,0.70,4,3992.50,51.61,1691.07,2020.54,0.00,0.180276,0.000000,205,0,0.000000,0.000020,62057338,30128464,0,0,72058,0,1,1 +1773657601.323438,0.75,4,3992.50,51.63,1690.05,2021.55,0.00,1.995110,0.000195,258,2,0.000000,0.000030,62057338,30128467,0,0,72061,0,1,1 +1773657606.323436,0.70,4,3992.50,51.63,1690.05,2021.58,0.00,3518438664810.943848,3518438664813.119141,11,0,0.000000,0.000020,62057338,30128469,0,0,72063,0,1,1 +1773657611.323406,0.65,4,3992.50,51.65,1689.31,2022.32,0.00,0.180275,0.000000,205,0,0.000000,0.000030,62057338,30128472,0,0,72066,0,1,1 +1773657616.328011,0.75,4,3992.50,51.54,1695.39,2017.86,0.00,1.476082,10.665372,253,556,0.000000,0.000020,62057338,30128474,0,0,72068,0,1,1 +1773657621.323453,0.65,4,3992.50,51.55,1694.99,2018.24,0.00,3521647341864.667969,3521647341855.461914,205,0,0.000000,0.000030,62057338,30128477,0,0,72071,0,1,1 +1773657626.328153,0.65,4,3992.50,51.55,1695.00,2018.24,0.00,3515133068162.140625,0.000000,11,0,0.000157,0.000200,62057350,30128491,0,0,72073,0,1,1 +1773657631.327789,0.70,4,3992.50,51.55,1695.00,2018.24,0.00,0.000000,0.000000,11,0,0.000016,0.000690,62057352,30128500,0,0,72076,0,1,1 +1773657636.326767,0.60,4,3992.50,51.52,1696.29,2016.95,0.00,0.180310,0.000000,205,0,0.000000,0.000020,62057352,30128502,0,0,72078,0,1,1 +1773657641.323428,0.70,4,3992.50,51.36,1702.32,2010.91,0.00,0.000000,0.000000,205,0,0.000000,0.000030,62057352,30128505,0,0,72081,0,1,1 +1773657646.323454,15.98,4,3992.50,51.59,1688.38,2019.98,0.00,3518419074951.161133,0.000000,75,0,40.063159,0.021289,62061763,30129971,0,0,72083,0,1,1 +1773657651.323440,0.85,4,3992.50,51.63,1686.79,2021.55,0.00,1.604204,10.675226,253,556,0.003268,0.001592,62061823,30130014,0,0,72086,0,1,1 +1773657656.323426,0.70,4,3992.50,51.63,1686.81,2021.55,0.00,0.517677,3518447478517.024902,258,2,0.000000,0.000020,62061823,30130016,0,0,72088,0,1,1 +1773657661.327886,0.80,4,3992.50,51.58,1688.70,2019.66,0.00,48375.245039,48571.996945,3377121,2981829,0.001445,0.001785,62061840,30130044,0,0,72091,0,1,1 +1773657666.327294,0.65,4,3992.50,51.62,1687.48,2020.88,0.00,3518854094705.115723,3518854094510.340332,11,0,0.000205,0.000552,62061847,30130057,0,0,72093,0,1,1 +1773657671.328068,0.55,4,3992.50,51.62,1687.48,2020.88,0.00,2.175054,0.000195,258,2,0.000000,0.000030,62061847,30130060,0,0,72096,0,1,1 +1773657676.327436,0.80,4,3992.50,51.61,1685.18,2020.80,0.00,3518882160271.425781,10.676350,253,556,0.000000,0.000020,62061847,30130062,0,0,72098,0,1,1 +1773657681.323429,0.60,4,3992.50,51.63,1684.70,2021.29,0.00,48457.754927,48643.726228,3377121,2981883,0.000000,0.000030,62061847,30130065,0,0,72101,0,1,1 +1773657686.328293,0.65,4,3992.50,51.63,1684.47,2021.52,0.00,9.716719,10.668137,3378624,2982445,0.000000,0.000020,62061847,30130067,0,0,72103,0,1,1 +1773657691.327610,0.60,4,3992.50,51.63,1684.47,2021.52,0.00,3518917755943.804688,3518917755745.810547,258,2,0.000056,0.000086,62061851,30130074,0,0,72106,0,1,1 +1773657696.327873,0.65,4,3992.50,51.63,1684.47,2021.52,0.00,3518252267728.668945,3518252267730.844238,11,0,0.000109,0.000796,62061860,30130089,0,0,72108,0,1,1 +1773657701.328027,0.60,4,3992.50,51.63,1684.47,2021.52,0.00,2.175324,0.000195,258,2,0.000000,0.000030,62061860,30130092,0,0,72111,0,1,1 +1773657706.323417,0.80,4,3992.50,51.64,1685.92,2021.73,0.00,48472.820485,48671.006430,3378624,2982471,0.000062,0.000070,62061864,30130098,0,0,72113,0,1,1 +1773657711.326421,15.89,4,3992.50,53.16,1626.27,2081.38,0.00,3516324903381.825684,3516324903195.127930,253,556,40.039843,0.021528,62066281,30131551,0,0,72116,0,1,1 +1773657716.325806,0.90,4,3992.50,52.27,1661.15,2046.51,0.00,48424.878847,48610.909449,3377121,2982078,0.005136,0.003307,62066370,30131616,0,0,72118,0,1,1 +1773657721.327545,0.65,4,3992.50,51.73,1682.18,2025.48,0.00,9.722791,10.677927,3378624,2982642,0.000000,0.000030,62066370,30131619,0,0,72121,0,1,1 +1773657726.327892,0.60,4,3992.50,51.55,1689.45,2018.20,0.00,3518192902874.280273,3518192902678.259766,75,0,0.000000,0.000020,62066370,30131621,0,0,72123,0,1,1 +1773657731.327212,0.65,4,3992.50,51.54,1689.64,2018.02,0.00,48427.104775,48622.226011,3377121,2982098,0.000000,0.000030,62066370,30131624,0,0,72126,0,1,1 +1773657736.327497,0.90,4,3992.50,51.76,1682.06,2026.39,0.00,3518236606199.474121,3518236606004.443848,11,0,0.000000,0.000020,62066370,30131626,0,0,72128,0,1,1 +1773657741.326661,0.70,4,3992.50,51.53,1690.18,2017.47,0.00,48428.678923,48623.823867,3377121,2982129,0.000000,0.000030,62066370,30131629,0,0,72131,0,1,1 +1773657746.328267,0.60,4,3992.50,51.54,1689.93,2017.72,0.00,0.000000,0.011715,3377121,2982136,0.000000,0.000020,62066370,30131631,0,0,72133,0,1,1 +1773657751.325266,0.70,4,3992.50,51.54,1689.93,2017.72,0.00,0.000000,0.004690,3377121,2982140,0.000000,0.000030,62066370,30131634,0,0,72136,0,1,1 +1773657756.326550,0.65,4,3992.50,51.54,1689.93,2017.71,0.00,0.000000,0.003124,3377121,2982144,0.000056,0.000076,62066374,30131640,0,0,72138,0,1,1 +1773657761.328076,0.85,4,3992.50,51.53,1690.22,2017.39,0.00,3517363895258.223633,3517363895063.150879,11,0,0.000190,0.000893,62066389,30131662,0,0,72141,0,1,1 +1773657766.325746,0.85,4,3992.50,51.62,1687.69,2021.08,0.00,48452.883289,48649.202700,3378624,2982742,0.000000,0.000020,62066389,30131664,0,0,72143,0,1,1 +1773657771.325443,0.60,4,3992.50,51.58,1688.95,2019.65,0.00,3518650427262.750977,3518650427066.511230,11,0,0.000000,0.000030,62066389,30131667,0,0,72146,0,1,1 +1773657776.328247,15.89,4,3992.50,52.18,1665.66,2042.94,0.00,0.000000,0.000000,11,0,40.041264,0.019691,62070724,30132887,0,0,72148,0,1,1 +1773657781.328215,0.85,4,3992.50,51.80,1680.43,2028.17,0.00,48430.619791,48627.005442,3378624,2982924,0.003093,0.001446,62070781,30132928,0,0,72151,0,1,1 +1773657786.328120,0.65,4,3992.50,51.67,1685.62,2022.98,0.00,3518503209795.148926,3518503209598.760742,11,0,0.000000,0.000020,62070781,30132930,0,0,72153,0,1,1 +1773657791.328293,0.70,4,3992.50,51.67,1685.64,2022.96,0.00,2.175316,0.000195,258,2,0.000000,0.000030,62070781,30132933,0,0,72156,0,1,1 +1773657796.327800,0.80,4,3992.50,51.54,1681.77,2017.82,0.00,3518783676063.094238,3518783676065.269531,11,0,0.000000,0.000020,62070781,30132935,0,0,72158,0,1,1 +1773657801.323403,0.75,4,3992.50,51.50,1681.24,2016.30,0.00,0.000000,0.000000,11,0,0.000000,0.000030,62070781,30132938,0,0,72161,0,1,1 +1773657806.323501,0.65,4,3992.50,51.50,1681.24,2016.30,0.00,2.175348,0.000195,258,2,0.000000,0.000020,62070781,30132940,0,0,72163,0,1,1 +1773657811.323485,0.50,4,3992.50,51.50,1681.24,2016.30,0.00,48418.548869,48616.282275,3377121,2982449,0.000000,0.000030,62070781,30132943,0,0,72166,0,1,1 +1773657816.327780,0.65,4,3992.50,51.50,1681.02,2016.52,0.00,3515417914257.450684,3515417914062.060547,11,0,0.000000,0.000020,62070781,30132945,0,0,72168,0,1,1 +1773657821.328293,0.75,4,3992.50,51.50,1681.02,2016.52,0.00,0.000000,0.000000,11,0,0.000056,0.000086,62070785,30132952,0,0,72171,0,1,1 +1773657826.327568,0.85,4,3992.50,51.56,1681.30,2018.70,0.00,0.053523,0.000000,75,0,0.000117,0.000804,62070795,30132968,0,0,72173,0,1,1 +1773657831.327648,0.60,4,3992.50,51.51,1683.25,2016.61,0.00,0.000000,0.000000,75,0,0.000000,0.000030,62070795,30132971,0,0,72176,0,1,1 +1773657836.328331,0.60,4,3992.50,51.53,1682.52,2017.35,0.00,48423.636091,48620.226616,3378624,2983049,0.000000,0.000020,62070795,30132973,0,0,72178,0,1,1 +1773657841.323420,16.01,4,3992.50,56.51,1487.21,2212.64,0.00,3521896543332.637207,3521896543135.826172,75,0,40.102672,0.032953,62075231,30135365,0,0,72181,0,1,1 +1773657846.323730,2.76,4,3992.50,52.20,1655.98,2043.86,0.00,48427.250962,48623.953813,3378624,2983178,0.003385,0.001690,62075310,30135425,0,0,72183,0,1,1 +1773657851.327677,0.60,4,3992.50,51.74,1674.02,2025.83,0.00,3515661066504.719727,3515661066308.213379,11,0,0.000000,0.000030,62075310,30135428,0,0,72186,0,1,1 +1773657856.327760,0.85,4,3992.50,51.83,1675.67,2029.28,0.00,0.053515,0.000000,75,0,0.000000,0.000020,62075310,30135430,0,0,72188,0,1,1 +1773657861.328035,0.65,4,3992.50,51.83,1675.27,2029.28,0.00,0.000000,0.000000,75,0,0.000000,0.000030,62075310,30135433,0,0,72191,0,1,1 +1773657866.327599,0.50,4,3992.50,51.83,1675.27,2029.28,0.00,48434.475360,48631.322018,3378624,2983256,0.000000,0.000020,62075310,30135435,0,0,72193,0,1,1 +1773657871.327979,0.70,4,3992.50,51.83,1675.27,2029.28,0.00,3518169350367.264160,3518169350179.520020,253,556,0.000000,0.000030,62075310,30135438,0,0,72196,0,1,1 +1773657876.328291,0.55,4,3992.50,51.83,1675.27,2029.28,0.00,48425.626515,48613.392829,3378624,2983265,0.000000,0.000020,62075310,30135440,0,0,72198,0,1,1 +1773657881.327643,0.60,4,3992.50,51.66,1682.11,2022.44,0.00,3518893178044.685059,3518893177845.688477,258,2,0.000000,0.000030,62075310,30135443,0,0,72201,0,1,1 +1773657886.327435,0.70,4,3992.50,51.89,1677.01,2031.73,0.00,3518583966203.387695,3518583966205.562988,11,0,0.000056,0.000076,62075314,30135449,0,0,72203,0,1,1 +1773657891.326888,0.65,4,3992.50,51.89,1673.43,2031.73,0.00,1.657896,10.676363,253,556,0.000117,0.000814,62075324,30135466,0,0,72206,0,1,1 +1773657896.327585,0.70,4,3992.50,51.89,1673.43,2031.72,0.00,3517946468013.861816,3517946468004.845703,11,0,0.000000,0.000020,62075324,30135468,0,0,72208,0,1,1 +1773657901.327270,0.75,4,3992.50,51.71,1680.61,2024.54,0.00,0.053519,0.000000,75,0,0.000000,0.000030,62075324,30135471,0,0,72211,0,1,1 +1773657906.323461,11.46,4,3992.50,56.52,1492.17,2212.98,0.00,0.126854,0.000000,205,0,40.092742,0.020454,62079693,30136860,0,0,72213,0,1,1 +1773657911.328090,0.90,4,3992.50,51.88,1673.93,2031.22,0.00,0.000000,0.000000,205,0,0.003217,0.001591,62079760,30136913,0,0,72216,0,1,1 +1773657916.328239,0.80,4,3992.50,51.96,1670.36,2034.20,0.00,48428.682260,48625.938494,3378624,2983520,0.000000,0.000020,62079760,30136915,0,0,72218,0,1,1 +1773657921.323448,0.60,4,3992.50,51.96,1670.36,2034.20,0.00,3521811955777.356445,3521811955580.031738,75,0,0.000000,0.000030,62079760,30136918,0,0,72221,0,1,1 +1773657926.323494,0.55,4,3992.50,51.96,1670.36,2034.20,0.00,1.604184,10.675097,253,556,0.000000,0.000020,62079760,30136920,0,0,72223,0,1,1 +1773657931.323459,0.65,4,3992.50,51.96,1670.36,2034.20,0.00,3518461822633.068848,3518461822624.051758,11,0,0.000000,0.000030,62079760,30136923,0,0,72226,0,1,1 +1773657936.323413,0.65,4,3992.50,51.96,1670.36,2034.20,0.00,1.657730,10.675293,253,556,0.000000,0.000020,62079760,30136925,0,0,72228,0,1,1 +1773657941.323490,0.70,4,3992.50,51.96,1670.14,2034.42,0.00,3518383423354.329590,3518383423345.131836,205,0,0.000000,0.000030,62079760,30136928,0,0,72231,0,1,1 +1773657946.324722,0.80,4,3992.50,51.96,1676.52,2034.38,0.00,1.994626,0.000195,258,2,0.000000,0.000020,62079760,30136930,0,0,72233,0,1,1 +1773657951.328248,0.75,4,3992.50,51.96,1676.55,2034.38,0.00,3515958142657.410156,3515958142659.583984,11,0,0.000087,0.000111,62079766,30136939,0,0,72236,0,1,1 +1773657956.324915,0.60,4,3992.50,51.77,1683.95,2026.98,0.00,1.658820,10.682314,253,556,0.000109,0.000797,62079775,30136954,0,0,72238,0,1,1 +1773657961.323424,0.80,4,3992.50,51.78,1683.46,2027.46,0.00,3519487332394.857910,3519487332385.837891,11,0,0.000512,0.001117,62079789,30136979,0,0,72241,0,1,1 +1773657966.323413,0.60,4,3992.50,51.78,1683.46,2027.46,0.00,0.180274,0.000000,205,0,0.000205,0.000552,62079796,30136992,0,0,72243,0,1,1 +1773657971.326325,1.05,4,3992.50,51.74,1685.00,2025.91,0.00,1.993956,0.000195,258,2,0.002208,0.000724,62079818,30137010,0,0,72246,0,1,1 +1773657976.327874,16.05,4,3992.50,53.30,1620.93,2086.97,0.00,3517347593688.119629,3517347593690.114258,205,0,40.050257,0.025047,62084168,30138741,0,0,72248,0,1,1 +1773657981.328049,0.85,4,3992.50,52.49,1652.68,2055.23,0.00,3518314216358.307129,0.000000,11,0,0.000008,0.000038,62084169,30138745,0,0,72251,0,1,1 +1773657986.327472,0.75,4,3992.50,51.98,1672.76,2035.15,0.00,0.000000,0.000000,11,0,0.000000,0.000020,62084169,30138747,0,0,72253,0,1,1 +1773657991.323419,0.60,4,3992.50,51.94,1674.46,2033.45,0.00,0.000000,0.000000,11,0,0.000000,0.000030,62084169,30138750,0,0,72256,0,1,1 +1773657996.327557,0.65,4,3992.50,51.90,1675.87,2032.04,0.00,2.173592,0.000195,258,2,0.000000,0.000020,62084169,30138752,0,0,72258,0,1,1 +1773658001.323505,0.60,4,3992.50,51.90,1675.87,2032.04,0.00,3521290729078.875977,3521290729080.999512,75,0,0.000000,0.000030,62084169,30138755,0,0,72261,0,1,1 +1773658006.327845,0.85,4,3992.50,51.88,1682.70,2031.13,0.00,3515385928423.456543,0.000000,11,0,0.000062,0.000070,62084173,30138761,0,0,72263,0,1,1 +1773658011.327496,0.80,4,3992.50,51.88,1682.58,2031.13,0.00,2.175542,0.000195,258,2,0.001148,0.000670,62084198,30138780,0,0,72266,0,1,1 +1773658016.323443,0.65,4,3992.50,51.88,1682.58,2031.12,0.00,3521291527650.614258,3521291527652.791504,11,0,0.001373,0.000977,62084227,30138806,0,0,72268,0,1,1 +1773658021.325176,0.65,4,3992.50,51.71,1689.01,2024.70,0.00,48413.543999,48611.001522,3378625,2983928,0.000107,0.000792,62084235,30138821,0,0,72271,0,1,1 +1773658026.328020,0.65,4,3992.50,51.71,1689.01,2024.70,0.00,3516437370258.743652,3516437370059.156250,258,2,0.000000,0.000020,62084235,30138823,0,0,72273,0,1,1 +1773658031.323504,0.70,4,3992.50,51.72,1688.77,2024.94,0.00,3521618343781.179199,3521618343783.356445,11,0,0.000000,0.000030,62084235,30138826,0,0,72276,0,1,1 +1773658036.327926,0.90,4,3992.50,52.11,1677.26,2040.40,0.00,0.000000,0.000000,11,0,0.000000,0.000020,62084235,30138828,0,0,72278,0,1,1 +1773658041.325117,15.65,4,3992.50,53.17,1635.90,2081.61,0.00,0.053546,0.000000,75,0,40.087112,0.019860,62088622,30140118,0,0,72281,0,1,1 +1773658046.328070,0.75,4,3992.50,52.43,1664.89,2052.61,0.00,48391.966301,48588.629052,3377122,2983530,0.000626,0.000280,62088635,30140128,0,0,72283,0,1,1 +1773658051.327442,0.60,4,3992.50,51.93,1684.21,2033.30,0.00,3518879057775.794922,3518879057579.044922,11,0,0.000000,0.000030,62088635,30140131,0,0,72286,0,1,1 +1773658056.328160,0.55,4,3992.50,51.88,1686.17,2031.34,0.00,48413.658241,48610.366943,3377122,2983542,0.000025,0.000051,62088637,30140135,0,0,72288,0,1,1 +1773658061.328145,0.70,4,3992.50,51.85,1687.39,2030.12,0.00,3518447254889.948242,3518447254691.035645,258,2,0.000056,0.000086,62088641,30140142,0,0,72291,0,1,1 +1773658066.323427,0.90,4,3992.50,51.90,1687.37,2032.01,0.00,3521760554855.103027,3521760554857.100586,205,0,0.000000,0.000020,62088641,30140144,0,0,72293,0,1,1 +1773658071.328119,0.75,4,3992.50,51.86,1689.00,2030.38,0.00,3515138362608.083984,0.000000,11,0,0.000000,0.000030,62088641,30140147,0,0,72296,0,1,1 +1773658076.324651,0.50,4,3992.50,51.86,1689.01,2030.37,0.00,48454.212060,48651.206714,3377122,2983618,0.000000,0.000020,62088641,30140149,0,0,72298,0,1,1 +1773658081.328153,0.70,4,3992.50,51.86,1689.01,2030.37,0.00,3515974765820.082520,3515974765632.373535,253,556,0.000000,0.000030,62088641,30140152,0,0,72301,0,1,1 +1773658086.327826,0.70,4,3992.50,51.87,1688.55,2030.82,0.00,48431.835583,48620.649389,3378625,2984186,0.000132,0.000813,62088651,30140168,0,0,72303,0,1,1 +1773658091.327817,0.60,4,3992.50,51.87,1688.56,2030.82,0.00,3518443637907.609375,3518443637709.790039,11,0,0.000041,0.000077,62088655,30140175,0,0,72306,0,1,1 +1773658096.328381,0.90,4,3992.50,51.97,1677.13,2034.68,0.00,48415.139638,48612.021528,3377122,2983644,0.000000,0.000020,62088655,30140177,0,0,72308,0,1,1 +1773658101.327863,0.70,4,3992.50,51.93,1678.49,2033.36,0.00,3518801389485.318848,3518801389286.218750,258,2,0.000000,0.000030,62088655,30140180,0,0,72311,0,1,1 +1773658106.323427,17.05,4,3992.50,56.39,1504.23,2207.61,0.00,48471.159942,48671.390434,3378625,2984258,40.098501,0.024176,62092941,30141753,0,0,72313,0,1,1 +1773658111.323432,0.90,4,3992.50,52.14,1670.58,2041.27,0.00,3518433539281.126953,3518433539083.195801,75,0,0.003377,0.001705,62093019,30141814,0,0,72316,0,1,1 +1773658116.324279,0.60,4,3992.50,51.67,1688.68,2023.16,0.00,1.603927,10.673386,253,556,0.000000,0.000020,62093019,30141816,0,0,72318,0,1,1 +1773658121.324393,0.60,4,3992.50,51.54,1694.04,2017.80,0.00,3518357086743.128906,3518357086733.931641,205,0,0.000000,0.000030,62093019,30141819,0,0,72321,0,1,1 +1773658126.325847,1.00,4,3992.50,51.63,1692.72,2021.47,0.00,3517414399647.267090,0.000000,11,0,0.000000,0.000020,62093019,30141821,0,0,72323,0,1,1 +1773658131.327750,0.65,4,3992.50,51.60,1693.90,2020.30,0.00,48402.185287,48599.260888,3377122,2983889,0.000000,0.000030,62093019,30141824,0,0,72326,0,1,1 +1773658136.327579,0.60,4,3992.50,51.61,1693.54,2020.66,0.00,3518557015183.516602,3518557014984.184082,258,2,0.000000,0.000020,62093019,30141826,0,0,72328,0,1,1 +1773658141.328022,0.55,4,3992.50,51.61,1693.54,2020.66,0.00,3518126039780.114258,3518126039782.109375,205,0,0.000000,0.000030,62093019,30141829,0,0,72331,0,1,1 +1773658146.327946,0.60,4,3992.50,51.61,1693.55,2020.66,0.00,0.000000,0.000000,205,0,0.000000,0.000020,62093019,30141831,0,0,72333,0,1,1 +1773658151.328272,0.60,4,3992.50,51.61,1693.55,2020.66,0.00,0.000000,0.000000,205,0,0.000056,0.000730,62093023,30141842,0,0,72336,0,1,1 +1773658156.327278,0.90,4,3992.50,51.67,1689.52,2023.12,0.00,1.995514,0.000195,258,2,0.000117,0.000160,62093033,30141854,0,0,72338,0,1,1 +1773658161.327893,0.60,4,3992.50,51.67,1689.54,2023.12,0.00,3518004179153.814453,3518004179155.989746,11,0,0.000000,0.000030,62093033,30141857,0,0,72341,0,1,1 +1773658166.323432,0.60,4,3992.50,51.67,1689.54,2023.12,0.00,0.000000,0.000000,11,0,0.000000,0.000020,62093033,30141859,0,0,72343,0,1,1 +1773658171.328043,12.53,4,3992.50,56.60,1496.47,2216.19,0.00,48385.713050,48583.727733,3378625,2984543,40.024949,0.018992,62097362,30143134,0,0,72346,0,1,1 +1773658176.323453,0.85,4,3992.50,52.50,1657.26,2055.40,0.00,3521670075416.458984,3521670075218.079590,11,0,0.003380,0.001692,62097440,30143194,0,0,72348,0,1,1 +1773658181.324155,0.60,4,3992.50,51.99,1677.04,2035.62,0.00,0.180248,0.000000,205,0,0.000000,0.000030,62097440,30143197,0,0,72351,0,1,1 +1773658186.328315,0.80,4,3992.50,51.94,1681.11,2033.76,0.00,3515511849523.187988,0.000000,11,0,0.000000,0.000020,62097440,30143199,0,0,72353,0,1,1 +1773658191.327495,0.60,4,3992.50,51.96,1680.64,2034.24,0.00,0.000000,0.000000,11,0,0.000000,0.000030,62097440,30143202,0,0,72356,0,1,1 +1773658196.327608,0.90,4,3992.50,51.86,1684.52,2030.36,0.00,1.657677,10.674954,253,556,0.000000,0.000020,62097440,30143204,0,0,72358,0,1,1 +1773658201.327855,0.70,4,3992.50,51.89,1683.14,2031.74,0.00,3518263985746.951660,3518263985737.881348,75,0,0.000000,0.000030,62097440,30143207,0,0,72361,0,1,1 +1773658206.324647,0.55,4,3992.50,51.89,1683.14,2031.74,0.00,0.000000,0.000000,75,0,0.000000,0.000020,62097440,30143209,0,0,72363,0,1,1 +1773658211.328152,0.60,4,3992.50,51.90,1682.92,2031.96,0.00,48386.636140,48584.052312,3377132,2984195,0.000000,0.000030,62097440,30143212,0,0,72366,0,1,1 +1773658216.328026,0.85,4,3992.50,52.49,1665.93,2055.04,0.00,3518526489516.805176,3518526489319.298828,11,0,0.000087,0.000584,62097446,30143223,0,0,72368,0,1,1 +1773658221.323452,0.70,4,3992.50,52.22,1670.39,2044.48,0.00,0.180438,0.000000,205,0,0.000109,0.000323,62097455,30143236,0,0,72371,0,1,1 +1773658226.327610,0.75,4,3992.50,52.22,1670.39,2044.48,0.00,3515513763885.192871,0.000000,11,0,0.000000,0.000020,62097455,30143238,0,0,72373,0,1,1 +1773658231.327871,0.50,4,3992.50,52.22,1670.39,2044.48,0.00,48418.091707,48615.635608,3377132,2984236,0.000000,0.000030,62097455,30143241,0,0,72376,0,1,1 +1773658236.327749,15.01,4,3992.50,57.09,1479.73,2235.13,0.00,0.000000,0.019239,3377132,2984277,30.448670,0.017469,62100784,30144434,0,0,72378,0,1,1 +1773658241.325755,0.95,4,3992.50,53.07,1637.06,2077.80,0.00,3519841052586.249023,3519841052388.596680,11,0,9.621500,0.004342,62101864,30144674,0,0,72381,0,1,1 +1773658246.327600,0.85,4,3992.50,52.40,1661.70,2051.48,0.00,48402.757854,48600.404953,3377132,2984395,0.000000,0.000020,62101864,30144676,0,0,72383,0,1,1 +1773658251.327860,0.60,4,3992.50,52.01,1676.66,2036.16,0.00,3518254057857.356445,3518254057668.663574,253,556,0.000000,0.000030,62101864,30144679,0,0,72386,0,1,1 +1773658256.326054,0.65,4,3992.50,52.02,1676.31,2036.51,0.00,3519708555769.554688,3519708555760.534180,11,0,0.000000,0.000020,62101864,30144681,0,0,72388,0,1,1 +1773658261.323440,0.65,4,3992.50,51.83,1683.46,2029.36,0.00,0.053544,0.000000,75,0,0.001447,0.001787,62101881,30144709,0,0,72391,0,1,1 +1773658266.327905,0.55,4,3992.50,51.83,1683.46,2029.36,0.00,48377.355153,48575.008409,3377132,2984445,0.000212,0.000559,62101889,30144723,0,0,72393,0,1,1 +1773658271.323411,0.60,4,3992.50,51.83,1683.47,2029.35,0.00,0.000000,0.023459,3377132,2984458,0.000000,0.000030,62101889,30144726,0,0,72396,0,1,1 +1773658276.328275,0.95,4,3992.50,52.18,1671.94,2042.84,0.00,0.000000,0.035903,3377132,2984482,0.000000,0.000020,62101889,30144728,0,0,72398,0,1,1 +1773658281.328172,0.60,4,3992.50,52.13,1673.76,2041.02,0.00,3518509648094.652344,3518509647896.812500,11,0,0.000031,0.000055,62101891,30144733,0,0,72401,0,1,1 +1773658286.323487,0.70,4,3992.50,51.93,1681.53,2033.27,0.00,1.659270,10.685208,253,556,0.000126,0.000820,62101901,30144749,0,0,72403,0,1,1 +1773658291.328270,0.75,4,3992.50,51.94,1681.09,2033.70,0.00,3515074078800.901367,3515074078791.893066,11,0,0.000000,0.000030,62101901,30144752,0,0,72406,0,1,1 +1773658296.327557,0.55,4,3992.50,51.94,1681.10,2033.70,0.00,48437.247816,48636.084466,3378635,2985064,0.000000,0.000020,62101901,30144754,0,0,72408,0,1,1 +1773658301.323490,13.19,4,3992.50,56.97,1484.18,2230.61,0.00,3521301888139.457031,3521301887949.511719,253,556,24.059631,0.017054,62104638,30145913,0,0,72411,0,1,1 +1773658306.323920,1.80,4,3992.50,53.00,1642.37,2074.96,0.00,3518134507181.470703,3518134507172.273926,205,0,16.025251,0.006184,62106391,30146300,0,0,72413,0,1,1 +1773658311.326696,0.85,4,3992.50,52.40,1665.18,2051.61,0.00,3516484404521.788574,0.000000,75,0,0.001809,0.001583,62106418,30146320,0,0,72416,0,1,1 +1773658316.323873,0.60,4,3992.50,51.92,1683.91,2032.87,0.00,0.126829,0.000000,205,0,0.001373,0.000976,62106447,30146346,0,0,72418,0,1,1 +1773658321.328290,0.65,4,3992.50,51.95,1682.92,2033.86,0.00,3515331913018.065918,0.000000,11,0,0.000000,0.000030,62106447,30146349,0,0,72421,0,1,1 +1773658326.327820,0.65,4,3992.50,51.98,1681.70,2035.09,0.00,0.000000,0.000000,11,0,0.000000,0.000020,62106447,30146351,0,0,72423,0,1,1 +1773658331.327689,0.65,4,3992.50,51.98,1681.71,2035.07,0.00,48421.887259,48620.010720,3377133,2984745,0.000000,0.000030,62106447,30146354,0,0,72426,0,1,1 +1773658336.326139,0.80,4,3992.50,51.95,1678.56,2034.04,0.00,3519528318419.511719,3519528318221.151855,205,0,0.000000,0.000020,62106447,30146356,0,0,72428,0,1,1 +1773658341.323432,0.55,4,3992.50,51.95,1678.11,2034.04,0.00,3520342873274.334961,0.000000,11,0,0.000000,0.000030,62106447,30146359,0,0,72431,0,1,1 +1773658346.325166,0.60,4,3992.50,51.96,1677.90,2034.24,0.00,0.000000,0.000000,11,0,0.000031,0.000045,62106449,30146363,0,0,72433,0,1,1 +1773658351.328083,0.65,4,3992.50,51.96,1677.68,2034.46,0.00,1.656748,10.668970,253,556,0.000091,0.000783,62106457,30146378,0,0,72436,0,1,1 +1773658356.327666,0.55,4,3992.50,51.92,1679.28,2032.85,0.00,3518730650609.165039,3518730650600.147461,11,0,0.000050,0.000082,62106461,30146384,0,0,72438,0,1,1 +1773658361.327480,0.60,4,3992.50,51.92,1679.28,2032.85,0.00,2.175471,0.000195,258,2,0.000081,0.000117,62106467,30146393,0,0,72441,0,1,1 +1773658366.326696,12.07,4,3992.50,57.24,1480.98,2241.18,0.00,0.000000,0.000000,258,2,14.228739,0.014954,62108234,30147397,0,0,72443,0,1,1 +1773658371.327945,4.36,4,3992.50,52.71,1658.61,2063.55,0.00,48406.350669,48606.828720,3377133,2984959,25.832586,0.011797,62110882,30148182,0,0,72446,0,1,1 +1773658376.327841,0.50,4,3992.50,52.34,1672.94,2049.21,0.00,3518510588260.104004,3518510588061.692871,75,0,0.000000,0.000020,62110882,30148184,0,0,72448,0,1,1 +1773658381.327420,0.65,4,3992.50,52.36,1672.30,2049.85,0.00,48424.630890,48623.061035,3377133,2984968,0.000000,0.000030,62110882,30148187,0,0,72451,0,1,1 +1773658386.328112,0.55,4,3992.50,52.36,1672.30,2049.85,0.00,3517950881149.841797,3517950880960.525391,253,556,0.000000,0.000020,62110882,30148189,0,0,72453,0,1,1 +1773658391.323457,0.65,4,3992.50,52.36,1672.09,2050.07,0.00,48464.075063,48653.604918,3377133,2984977,0.000000,0.000030,62110882,30148192,0,0,72456,0,1,1 +1773658396.323454,0.85,4,3992.50,52.55,1664.78,2057.37,0.00,3518438923202.142090,3518438923012.788574,253,556,0.000000,0.000020,62110882,30148194,0,0,72458,0,1,1 +1773658401.323489,0.55,4,3992.50,52.28,1675.23,2046.92,0.00,0.517672,3518412486395.348145,258,2,0.000000,0.000030,62110882,30148197,0,0,72461,0,1,1 +1773658406.328329,0.45,4,3992.50,52.28,1675.22,2046.93,0.00,0.000000,0.000000,258,2,0.000000,0.000020,62110882,30148199,0,0,72463,0,1,1 +1773658411.327392,0.60,4,3992.50,52.28,1675.22,2046.93,0.00,3519096790377.167480,3519096790379.343262,11,0,0.000031,0.000055,62110884,30148204,0,0,72466,0,1,1 +1773658416.327438,0.55,4,3992.50,52.28,1675.23,2046.93,0.00,1.657700,10.675098,253,556,0.000165,0.000852,62110897,30148223,0,0,72468,0,1,1 +1773658421.324331,0.60,4,3992.50,52.08,1683.26,2038.89,0.00,48449.060559,48638.665373,3377133,2985057,0.000000,0.000030,62110897,30148226,0,0,72471,0,1,1 +1773658426.323440,0.70,4,3992.50,52.48,1669.36,2054.84,0.00,3519064250675.583496,3519064250486.062500,253,556,0.000000,0.000020,62110897,30148228,0,0,72473,0,1,1 +1773658431.327582,10.23,4,3992.50,56.80,1498.33,2223.82,0.00,48388.598559,48578.929067,3378636,2985678,7.812662,0.013467,62112008,30149011,0,0,72476,0,1,1 +1773658436.323429,5.07,4,3992.50,53.55,1625.58,2096.58,0.00,3521362402682.803223,3521362402483.078125,75,0,32.276183,0.011487,62115392,30149788,0,0,72478,0,1,1 +1773658441.323461,0.70,4,3992.50,52.71,1658.45,2063.71,0.00,1.604189,10.675127,253,556,0.000000,0.000030,62115392,30149791,0,0,72481,0,1,1 +1773658446.323494,0.50,4,3992.50,52.23,1677.08,2045.08,0.00,3518413943017.556152,3518413943008.485352,75,0,0.000000,0.000020,62115392,30149793,0,0,72483,0,1,1 +1773658451.323480,0.60,4,3992.50,52.07,1683.69,2038.47,0.00,0.126758,0.000000,205,0,0.000000,0.000030,62115392,30149796,0,0,72486,0,1,1 +1773658456.323453,0.85,4,3992.50,52.56,1672.48,2057.92,0.00,3518456103695.987793,0.000000,11,0,0.000000,0.000020,62115392,30149798,0,0,72488,0,1,1 +1773658461.324250,0.55,4,3992.50,52.46,1676.50,2053.89,0.00,0.000000,0.000000,11,0,0.000000,0.000030,62115392,30149801,0,0,72491,0,1,1 +1773658466.323478,0.65,4,3992.50,52.45,1676.71,2053.68,0.00,48428.087166,48626.889416,3377133,2985303,0.000000,0.000020,62115392,30149803,0,0,72493,0,1,1 +1773658471.323457,0.50,4,3992.50,52.46,1676.47,2053.93,0.00,3518451806370.126465,3518451806171.299805,75,0,0.000000,0.000043,62115392,30149807,0,0,72496,0,1,1 +1773658476.328120,0.50,4,3992.50,52.47,1676.22,2054.18,0.00,2.119898,0.000195,258,2,0.000031,0.000045,62115394,30149811,0,0,72498,0,1,1 +1773658481.327708,0.65,4,3992.50,52.47,1676.22,2054.17,0.00,0.000000,0.000000,258,2,0.000142,0.000845,62115406,30149830,0,0,72501,0,1,1 +1773658486.328156,0.75,4,3992.50,52.76,1664.80,2065.74,0.00,3518122322158.735352,10.674045,253,556,0.000000,0.000020,62115406,30149832,0,0,72503,0,1,1 +1773658491.324817,0.55,4,3992.50,52.55,1672.95,2057.45,0.00,48451.311542,48641.250285,3377133,2985344,0.000000,0.000030,62115406,30149835,0,0,72506,0,1,1 +1773658496.328589,15.51,4,3992.50,57.18,1491.59,2238.82,0.00,3515784742057.534180,3515784741858.854492,11,0,23.421216,0.017138,62118059,30151003,0,0,72508,0,1,1 +1773658501.327495,1.15,4,3992.50,53.17,1648.61,2081.79,0.00,0.000000,0.000000,11,0,16.629498,0.005645,62119768,30151348,0,0,72511,0,1,1 +1773658506.323453,0.55,4,3992.50,52.54,1673.17,2057.22,0.00,2.177151,0.000195,258,2,0.000000,0.000020,62119768,30151350,0,0,72513,0,1,1 +1773658511.327393,0.65,4,3992.50,52.25,1684.70,2045.70,0.00,48380.357513,48581.359460,3377135,2985544,0.000000,0.000030,62119768,30151353,0,0,72516,0,1,1 +1773658516.323509,0.65,4,3992.50,52.43,1674.84,2052.75,0.00,3521172686283.779785,3521172686093.664062,253,556,0.000000,0.000020,62119768,30151355,0,0,72518,0,1,1 +1773658521.323541,0.60,4,3992.50,52.24,1682.23,2045.36,0.00,48418.689183,48608.707973,3377135,2985575,0.000000,0.000030,62119768,30151358,0,0,72521,0,1,1 +1773658526.324486,0.50,4,3992.50,52.24,1682.23,2045.36,0.00,0.000000,0.003906,3377135,2985579,0.000000,0.000020,62119768,30151360,0,0,72523,0,1,1 +1773658531.327585,0.65,4,3992.50,52.24,1682.23,2045.36,0.00,9.720147,10.686735,3378638,2986152,0.000000,0.000030,62119768,30151363,0,0,72526,0,1,1 +1773658536.327931,0.50,4,3992.50,52.24,1682.23,2045.36,0.00,3518194389560.058594,3518194389359.883789,205,0,0.000000,0.000020,62119768,30151365,0,0,72528,0,1,1 +1773658541.328126,0.60,4,3992.50,52.24,1682.24,2045.35,0.00,3518299901600.079590,0.000000,11,0,0.000031,0.000055,62119770,30151370,0,0,72531,0,1,1 +1773658546.327738,0.80,4,3992.50,52.25,1671.84,2045.68,0.00,0.000000,0.000000,11,0,0.000142,0.000872,62119782,30151389,0,0,72533,0,1,1 +1773658551.323480,1.35,4,3992.50,52.25,1671.93,2045.61,0.00,48461.946443,48661.213806,3377136,2985630,0.000000,0.000030,62119782,30151392,0,0,72536,0,1,1 +1773658556.327634,0.55,4,3992.50,52.25,1671.93,2045.61,0.00,3515516007122.083008,3515516006922.970703,205,0,0.000000,0.000020,62119782,30151394,0,0,72538,0,1,1 +1773658561.328807,12.09,4,3992.50,57.12,1481.08,2236.46,0.00,48418.868034,48619.064348,3378640,2986232,18.909990,0.018037,62122015,30152518,0,0,72541,0,1,1 +1773658566.323681,2.21,4,3992.50,52.22,1672.97,2044.57,0.00,3522048202360.496094,3522048202160.047363,205,0,21.173632,0.008062,62124151,30153023,0,0,72543,0,1,1 +1773658571.328006,0.70,4,3992.50,52.22,1672.98,2044.57,0.00,1.476164,10.665969,253,556,0.000000,0.000030,62124151,30153026,0,0,72546,0,1,1 +1773658576.327377,0.80,4,3992.50,52.41,1660.63,2051.88,0.00,48425.112732,48615.393513,3377137,2985806,0.000000,0.000020,62124151,30153028,0,0,72548,0,1,1 +1773658581.323408,0.55,4,3992.50,52.41,1660.48,2051.87,0.00,9.733898,10.715145,3378640,2986397,0.000000,0.000030,62124151,30153031,0,0,72551,0,1,1 +1773658586.327990,0.65,4,3992.50,52.41,1660.25,2052.11,0.00,3515215764700.832031,3515215764500.760254,11,0,0.000000,0.000020,62124151,30153033,0,0,72553,0,1,1 +1773658591.328255,0.50,4,3992.50,52.41,1660.25,2052.10,0.00,0.053513,0.000000,75,0,0.000000,0.000030,62124151,30153036,0,0,72556,0,1,1 +1773658596.327952,0.65,4,3992.50,52.41,1660.25,2052.10,0.00,0.000000,0.000000,75,0,0.000000,0.000020,62124151,30153038,0,0,72558,0,1,1 +1773658601.324973,0.55,4,3992.50,52.24,1667.19,2045.16,0.00,48459.220486,48659.697447,3378640,2986424,0.000000,0.000030,62124151,30153041,0,0,72561,0,1,1 +1773658606.327773,0.75,4,3992.50,52.24,1667.20,2045.11,0.00,3516468301105.364746,3516468300914.185547,253,556,0.000093,0.000095,62124157,30153049,0,0,72563,0,1,1 +1773658611.323430,0.75,4,3992.50,52.24,1667.01,2045.33,0.00,0.518126,3521495620071.266602,258,2,0.001275,0.001479,62124192,30153083,0,0,72566,0,1,1 +1773658616.323459,0.75,4,3992.50,52.25,1666.78,2045.56,0.00,3518417480410.708496,3518417480412.704102,205,0,0.002042,0.001906,62124224,30153112,0,0,72568,0,1,1 +1773658621.323417,0.60,4,3992.50,52.04,1675.02,2037.32,0.00,1.477454,10.675284,253,556,0.000000,0.000030,62124224,30153115,0,0,72571,0,1,1 +1773658626.323415,10.84,4,3992.50,57.11,1476.24,2236.09,0.00,48428.761515,48620.131795,3378640,2986509,13.826126,0.013933,62125962,30154055,0,0,72573,0,1,1 +1773658631.323432,3.51,4,3992.50,53.34,1624.08,2088.25,0.00,3518425333617.880859,3518425333417.493652,11,0,26.239822,0.008232,62128675,30154576,0,0,72576,0,1,1 +1773658636.327369,0.90,4,3992.50,52.59,1639.49,2058.95,0.00,48392.295071,48592.684242,3378640,2986641,0.000000,0.000020,62128675,30154578,0,0,72578,0,1,1 +1773658641.323457,0.55,4,3992.50,52.42,1643.79,2052.45,0.00,3521192256064.810059,3521192255864.105469,11,0,0.000000,0.000030,62128675,30154581,0,0,72581,0,1,1 +1773658646.327840,0.55,4,3992.50,52.28,1649.31,2046.93,0.00,0.180116,0.000000,205,0,0.000000,0.000020,62128675,30154583,0,0,72583,0,1,1 +1773658651.323478,0.55,4,3992.50,52.28,1649.47,2046.77,0.00,3521509489267.020996,0.000000,75,0,0.000000,0.000030,62128675,30154586,0,0,72586,0,1,1 +1773658656.323408,0.60,4,3992.50,52.28,1649.47,2046.77,0.00,3518486700620.774902,0.000000,11,0,0.000025,0.000051,62128677,30154590,0,0,72588,0,1,1 +1773658661.323415,0.55,4,3992.50,52.27,1649.57,2046.67,0.00,0.180273,0.000000,205,0,0.000064,0.000094,62128682,30154598,0,0,72591,0,1,1 +1773658666.323462,0.75,4,3992.50,52.37,1649.21,2050.32,0.00,48429.761962,48630.581830,3378640,2986710,0.000000,0.000020,62128682,30154600,0,0,72593,0,1,1 +1773658671.323436,0.65,4,3992.50,52.37,1648.99,2050.32,0.00,3518455283312.270508,3518455283111.627930,11,0,0.000031,0.000055,62128684,30154605,0,0,72596,0,1,1 +1773658676.327906,0.50,4,3992.50,52.37,1648.99,2050.32,0.00,48377.434616,48576.963397,3377137,2986168,0.000126,0.000818,62128694,30154621,0,0,72598,0,1,1 +1773658681.323421,0.55,4,3992.50,52.37,1648.76,2050.55,0.00,3521596043384.722656,3521596043182.658691,258,2,0.000000,0.000030,62128694,30154624,0,0,72601,0,1,1 +1773658686.323474,0.55,4,3992.50,52.37,1648.76,2050.55,0.00,3518399796328.684082,3518399796330.805664,75,0,0.000000,0.000020,62128694,30154626,0,0,72603,0,1,1 +1773658691.328533,10.20,4,3992.50,57.04,1466.04,2233.21,0.00,3514880622093.543457,0.000000,11,0,3.208267,0.007740,62129349,30155075,0,0,72606,0,1,1 +1773658696.327928,9.76,4,3992.50,52.42,1647.39,2052.29,0.00,0.053522,0.000000,75,0,36.858994,0.015365,62133159,30156163,0,0,72608,0,1,1 +1773658701.327501,0.60,4,3992.50,52.46,1645.28,2054.01,0.00,1.604336,10.676106,253,556,0.000000,0.000030,62133159,30156166,0,0,72611,0,1,1 +1773658706.327991,0.75,4,3992.50,52.30,1651.50,2047.79,0.00,3518092600453.431152,3518092600444.415039,11,0,0.000000,0.000020,62133159,30156168,0,0,72613,0,1,1 +1773658711.323497,0.65,4,3992.50,52.23,1654.18,2045.10,0.00,0.000000,0.000000,11,0,0.000000,0.000030,62133159,30156171,0,0,72616,0,1,1 +1773658716.327563,0.55,4,3992.50,52.22,1654.79,2044.50,0.00,0.053472,0.000000,75,0,0.000000,0.000020,62133159,30156173,0,0,72618,0,1,1 +1773658721.328387,0.70,4,3992.50,52.17,1656.80,2042.50,0.00,3517857693188.916016,0.000000,11,0,0.000000,0.000030,62133159,30156176,0,0,72621,0,1,1 +1773658726.328237,0.80,4,3992.50,52.39,1647.88,2051.31,0.00,0.053517,0.000000,75,0,0.000000,0.000020,62133159,30156178,0,0,72623,0,1,1 +1773658731.327553,0.55,4,3992.50,52.22,1654.72,2044.48,0.00,3518918720830.095215,0.000000,11,0,0.000000,0.000030,62133159,30156181,0,0,72626,0,1,1 +1773658736.327596,0.60,4,3992.50,52.26,1653.00,2046.20,0.00,0.180272,0.000000,205,0,0.000031,0.000045,62133161,30156185,0,0,72628,0,1,1 +1773658741.326467,0.55,4,3992.50,52.29,1652.05,2047.16,0.00,3519232161901.507324,0.000000,75,0,0.000142,0.000845,62133173,30156204,0,0,72631,0,1,1 +1773658746.326674,0.65,4,3992.50,52.29,1652.05,2047.16,0.00,3518291268050.373047,0.000000,11,0,0.000000,0.000020,62133173,30156206,0,0,72633,0,1,1 +1773658751.328122,0.65,4,3992.50,52.27,1652.61,2046.59,0.00,0.053500,0.000000,75,0,0.000000,0.000030,62133173,30156209,0,0,72636,0,1,1 +1773658756.326544,4.91,4,3992.50,57.44,1450.07,2248.87,0.00,3519548225375.360352,0.000000,11,0,2.212104,0.008834,62133704,30156621,0,0,72638,0,1,1 +1773658761.324273,8.14,4,3992.50,52.49,1643.87,2055.07,0.00,0.000000,0.000000,11,0,37.871703,0.015018,62137550,30157710,0,0,72641,0,1,1 +1773658766.323464,0.65,4,3992.50,52.49,1643.87,2055.07,0.00,1.657983,10.676924,253,556,0.000000,0.000020,62137550,30157712,0,0,72643,0,1,1 +1773658771.326162,0.60,4,3992.50,52.50,1643.41,2055.53,0.00,3516539158277.477539,3516539158268.464844,11,0,0.000000,0.000030,62137550,30157715,0,0,72646,0,1,1 +1773658776.323425,0.55,4,3992.50,52.51,1643.18,2055.76,0.00,0.000000,0.000000,11,0,0.000000,0.000020,62137550,30157717,0,0,72648,0,1,1 +1773658781.323433,0.50,4,3992.50,52.51,1643.18,2055.76,0.00,48420.596163,48620.769362,3377138,2986589,0.000000,0.000030,62137550,30157720,0,0,72651,0,1,1 +1773658786.327590,1.00,4,3992.50,52.51,1642.03,2055.93,0.00,3515514656880.023926,3515514656680.016602,11,0,0.000000,0.000020,62137550,30157722,0,0,72653,0,1,1 +1773658791.328327,0.60,4,3992.50,52.49,1642.84,2055.12,0.00,0.053508,0.000000,75,0,0.000000,0.000030,62137550,30157725,0,0,72656,0,1,1 +1773658796.327892,0.85,4,3992.50,52.49,1642.84,2055.12,0.00,2.122060,0.000195,258,2,0.000000,0.000020,62137550,30157727,0,0,72658,0,1,1 +1773658801.327918,1.05,4,3992.50,52.49,1642.92,2055.04,0.00,3518418844845.705566,3518418844847.881348,11,0,0.000031,0.000055,62137552,30157732,0,0,72661,0,1,1 +1773658806.328130,0.70,4,3992.50,52.49,1642.93,2055.04,0.00,48428.359015,48629.645088,3378651,2987281,0.000126,0.000819,62137562,30157748,0,0,72663,0,1,1 +1773658811.327403,0.60,4,3992.50,52.49,1642.93,2055.04,0.00,3518949018331.511230,3518949018130.187012,11,0,0.000016,0.000046,62137564,30157753,0,0,72666,0,1,1 +1773658816.323462,0.75,4,3992.50,52.56,1642.53,2057.70,0.00,48468.627550,48670.145106,3378651,2987330,0.000000,0.000020,62137564,30157755,0,0,72668,0,1,1 +1773658821.326333,0.90,4,3992.50,52.21,1656.27,2043.95,0.00,3516417795538.867188,3516417795537.930664,3377148,2986801,0.002345,0.001355,62137595,30157785,0,0,72671,0,1,1 +1773658826.328059,14.57,4,3992.50,52.71,1636.70,2063.52,0.00,3517223009453.746094,3517223009262.407715,253,556,40.048916,0.019857,62141953,30159142,0,0,72673,0,1,1 +1773658831.323417,0.60,4,3992.50,52.71,1636.70,2063.52,0.00,3521706596470.016602,3521706596460.810547,205,0,0.000000,0.000030,62141953,30159145,0,0,72676,0,1,1 +1773658836.326494,0.65,4,3992.50,52.71,1636.70,2063.52,0.00,48390.734592,48591.338399,3377148,2986926,0.000000,0.000020,62141953,30159147,0,0,72678,0,1,1 +1773658841.328323,0.60,4,3992.50,52.71,1636.46,2063.76,0.00,0.000000,0.003905,3377148,2986930,0.000000,0.000030,62141953,30159150,0,0,72681,0,1,1 +1773658846.327745,0.70,4,3992.50,52.71,1642.48,2063.68,0.00,3518843151917.541504,3518843151716.967285,11,0,0.000000,0.000020,62141953,30159152,0,0,72683,0,1,1 +1773658851.323496,0.65,4,3992.50,52.70,1642.68,2063.44,0.00,48461.877732,48662.701629,3377148,2986996,0.000000,0.000030,62141953,30159155,0,0,72686,0,1,1 +1773658856.323431,0.70,4,3992.50,52.70,1642.68,2063.43,0.00,0.000000,0.004688,3377148,2987001,0.000000,0.000020,62141953,30159157,0,0,72688,0,1,1 +1773658861.323425,0.60,4,3992.50,52.71,1642.47,2063.65,0.00,3518441630292.413574,3518441630100.772461,253,556,0.000512,0.001117,62141967,30159182,0,0,72691,0,1,1 +1773658866.324579,0.60,4,3992.50,52.71,1642.47,2063.65,0.00,0.000000,0.000000,253,556,0.000213,0.000560,62141975,30159196,0,0,72693,0,1,1 +1773658871.327473,0.60,4,3992.50,52.71,1642.48,2063.64,0.00,0.517376,3516401903495.015625,258,2,0.000157,0.000854,62141987,30159215,0,0,72696,0,1,1 +1773658876.328028,0.85,4,3992.50,52.47,1649.36,2054.45,0.00,3518046804191.250000,3518046804193.245117,205,0,0.000000,0.000020,62141987,30159217,0,0,72698,0,1,1 +1773658881.328236,0.75,4,3992.50,52.45,1650.30,2053.51,0.00,3518291327155.088379,0.000000,11,0,0.000000,0.000030,62141987,30159220,0,0,72701,0,1,1 +1773658886.323436,0.90,4,3992.50,52.27,1657.49,2046.30,0.00,2.177481,0.000196,258,2,0.002236,0.000725,62142011,30159238,0,0,72703,0,1,1 +1773658891.323758,16.57,4,3992.50,53.40,1613.04,2090.77,0.00,3518210790205.425781,10.674313,253,556,40.062279,0.024776,62146522,30160947,0,0,72706,0,1,1 +1773658896.327112,0.75,4,3992.50,52.69,1641.05,2062.76,0.00,3516078657775.477051,3516078657766.465820,11,0,0.000008,0.000028,62146523,30160950,0,0,72708,0,1,1 +1773658901.327575,0.65,4,3992.50,52.51,1648.00,2055.80,0.00,48416.204794,48617.020266,3377148,2987185,0.000000,0.000030,62146523,30160953,0,0,72711,0,1,1 +1773658906.327738,1.45,4,3992.50,52.76,1640.38,2065.56,0.00,3518323038731.270020,3518323038528.267578,258,2,0.000062,0.000070,62146527,30160959,0,0,72713,0,1,1 +1773658911.328232,0.75,4,3992.50,52.78,1637.39,2066.30,0.00,48423.460062,48627.466379,3378651,2987771,0.001140,0.000662,62146551,30160977,0,0,72716,0,1,1 +1773658916.326523,0.70,4,3992.50,52.78,1637.39,2066.30,0.00,3519639624918.383789,3519639624725.483887,253,556,0.001372,0.000976,62146580,30161003,0,0,72718,0,1,1 +1773658921.324834,0.55,4,3992.50,52.78,1637.15,2066.54,0.00,3519626440677.151367,3519626440668.131348,11,0,0.000000,0.000030,62146580,30161006,0,0,72721,0,1,1 +1773658926.327677,0.55,4,3992.50,52.78,1637.16,2066.53,0.00,1.656773,10.669130,253,556,0.000000,0.000020,62146580,30161008,0,0,72723,0,1,1 +1773658931.328267,0.65,4,3992.50,52.78,1637.16,2066.53,0.00,48413.316022,48605.253705,3377148,2987276,0.000000,0.000030,62146580,30161011,0,0,72726,0,1,1 +1773658936.326080,0.90,4,3992.50,52.80,1636.92,2067.21,0.00,3519976534904.631348,3519976534703.565430,11,0,0.000107,0.000783,62146588,30161025,0,0,72728,0,1,1 +1773658941.323427,0.60,4,3992.50,52.64,1642.92,2060.77,0.00,0.000000,0.000000,11,0,0.000008,0.000038,62146589,30161029,0,0,72731,0,1,1 +1773658946.325879,0.65,4,3992.50,52.64,1642.70,2060.99,0.00,48396.958458,48597.876826,3377148,2987304,0.000000,0.000020,62146589,30161031,0,0,72733,0,1,1 +1773658951.327683,2.15,4,3992.50,52.48,1648.79,2054.89,0.00,9.722664,10.698972,3378651,2987882,0.002233,0.000734,62146613,30161050,0,0,72736,0,1,1 +1773658956.328007,15.17,4,3992.50,53.87,1594.52,2109.15,0.00,3518209145318.074707,3518209145116.093750,11,0,40.058395,0.021695,62150871,30162542,0,0,72738,0,1,1 +1773658961.327240,0.65,4,3992.50,53.08,1625.41,2078.27,0.00,48437.847693,48639.973912,3378651,2988004,0.000056,0.000086,62150875,30162549,0,0,72741,0,1,1 +1773658966.327778,0.95,4,3992.50,53.13,1631.50,2079.98,0.00,3518058759460.018555,3518058759257.765137,205,0,0.000000,0.000020,62150875,30162551,0,0,72743,0,1,1 +1773658971.327920,0.75,4,3992.50,52.78,1645.23,2066.27,0.00,3518337115710.468262,0.000000,75,0,0.000000,0.000030,62150875,30162554,0,0,72746,0,1,1 +1773658976.325163,0.65,4,3992.50,52.76,1645.79,2065.71,0.00,2.123046,0.000195,258,2,0.000000,0.000020,62150875,30162556,0,0,72748,0,1,1 +1773658981.328252,0.60,4,3992.50,52.76,1645.79,2065.71,0.00,3516264504122.814453,10.668408,253,556,0.000000,0.000030,62150875,30162559,0,0,72751,0,1,1 +1773658986.327497,0.60,4,3992.50,52.77,1645.57,2065.93,0.00,3518968601996.166504,3518968601986.967285,205,0,0.000000,0.000020,62150875,30162561,0,0,72753,0,1,1 +1773658991.323462,0.70,4,3992.50,52.77,1645.57,2065.93,0.00,48469.358194,48671.909471,3378651,2988078,0.000000,0.000030,62150875,30162564,0,0,72756,0,1,1 +1773658996.326565,0.80,4,3992.50,52.59,1640.74,2058.86,0.00,3516254997814.546875,3516254997813.629395,3377148,2987535,0.000000,0.000020,62150875,30162566,0,0,72758,0,1,1 +1773659001.327401,0.55,4,3992.50,52.56,1641.65,2057.94,0.00,0.000000,0.009373,3377148,2987547,0.000157,0.000854,62150887,30162585,0,0,72761,0,1,1 +1773659006.328331,0.55,4,3992.50,52.56,1641.66,2057.93,0.00,3517783340325.979004,3517783340124.717285,11,0,0.000016,0.000036,62150889,30162589,0,0,72763,0,1,1 +1773659011.323510,0.65,4,3992.50,52.57,1641.42,2058.17,0.00,2.177490,0.000196,258,2,0.000000,0.000030,62150889,30162592,0,0,72766,0,1,1 +1773659016.323440,0.80,4,3992.50,52.57,1641.43,2058.16,0.00,48419.195038,48622.687735,3377148,2987567,0.002196,0.000408,62150910,30162609,0,0,72768,0,1,1 +1773659021.323479,16.28,4,3992.50,52.69,1636.64,2062.94,0.00,3518409267217.700195,3518409267016.207031,205,0,40.062070,0.023773,62155225,30164215,0,0,72771,0,1,1 +1773659026.323492,0.90,4,3992.50,52.85,1635.40,2069.12,0.00,48430.113014,48632.726850,3378651,2988277,0.000000,0.000020,62155225,30164217,0,0,72773,0,1,1 +1773659031.325013,0.55,4,3992.50,52.75,1639.26,2065.27,0.00,3517367019827.308105,3517367019624.936035,11,0,0.000000,0.000030,62155225,30164220,0,0,72776,0,1,1 +1773659036.327054,0.50,4,3992.50,52.76,1638.71,2065.82,0.00,48400.938587,48602.378741,3377148,2987761,0.000000,0.000020,62155225,30164222,0,0,72778,0,1,1 +1773659041.325060,0.95,4,3992.50,52.74,1639.76,2064.77,0.00,3519840669474.884277,3519840669273.101074,205,0,0.000000,0.000030,62155225,30164225,0,0,72781,0,1,1 +1773659046.324734,0.60,4,3992.50,52.71,1640.75,2063.78,0.00,0.000000,0.000000,205,0,0.000000,0.000020,62155225,30164227,0,0,72783,0,1,1 +1773659051.327590,0.60,4,3992.50,52.72,1640.27,2064.26,0.00,3516428084334.608398,0.000000,11,0,0.000000,0.000030,62155225,30164230,0,0,72786,0,1,1 +1773659056.328055,0.75,4,3992.50,52.71,1640.78,2063.74,0.00,0.180257,0.000000,205,0,0.000000,0.000020,62155225,30164232,0,0,72788,0,1,1 +1773659061.323716,0.95,4,3992.50,52.77,1634.63,2065.88,0.00,1.996850,0.000195,258,2,0.000000,0.000030,62155225,30164235,0,0,72791,0,1,1 +1773659066.328300,0.60,4,3992.50,52.76,1634.88,2065.62,0.00,3515214985658.388672,3515214985660.508301,75,0,0.000157,0.000200,62155237,30164249,0,0,72793,0,1,1 +1773659071.327705,0.70,4,3992.50,52.76,1634.88,2065.62,0.00,0.126773,0.000000,205,0,0.000016,0.000690,62155239,30164258,0,0,72796,0,1,1 +1773659076.326354,0.70,4,3992.50,52.77,1634.63,2065.87,0.00,1.995657,0.000195,258,2,0.000000,0.000020,62155239,30164260,0,0,72798,0,1,1 +1773659081.323499,0.60,4,3992.50,52.77,1634.63,2065.87,0.00,48455.902998,48660.743270,3378651,2988377,0.000000,0.000030,62155239,30164263,0,0,72801,0,1,1 +1773659086.328009,14.87,4,3992.50,53.65,1603.76,2100.58,0.00,3515267018042.257812,3515267018041.392578,3377148,2987897,40.030787,0.026596,62159650,30165959,0,0,72803,0,1,1 +1773659091.325889,0.70,4,3992.50,52.89,1633.76,2070.60,0.00,3519929624000.993164,3519929623797.049316,258,2,0.000176,0.000191,62159653,30165964,0,0,72806,0,1,1 +1773659096.327750,0.90,4,3992.50,52.51,1648.41,2055.94,0.00,3517127818069.061523,3517127818071.235840,11,0,0.000000,0.000020,62159653,30165966,0,0,72808,0,1,1 +1773659101.323658,0.60,4,3992.50,52.56,1646.64,2057.71,0.00,0.000000,0.000000,11,0,0.000000,0.000030,62159653,30165969,0,0,72811,0,1,1 +1773659106.328251,0.70,4,3992.50,52.55,1647.03,2057.33,0.00,0.180108,0.000000,205,0,0.000000,0.000020,62159653,30165971,0,0,72813,0,1,1 +1773659111.323765,0.65,4,3992.50,52.54,1647.33,2057.02,0.00,48473.730797,48676.933923,3378651,2988646,0.000000,0.000030,62159653,30165974,0,0,72816,0,1,1 +1773659116.327631,0.70,4,3992.50,52.73,1644.06,2064.61,0.00,3515718378085.384766,3515718377882.520996,205,0,0.000000,0.000020,62159653,30165976,0,0,72818,0,1,1 +1773659121.326318,0.60,4,3992.50,52.73,1644.07,2064.61,0.00,1.477830,10.678000,253,556,0.000000,0.000030,62159653,30165979,0,0,72821,0,1,1 +1773659126.327490,0.65,4,3992.50,52.73,1644.07,2064.61,0.00,48417.412072,48611.243596,3378651,2988682,0.000000,0.000020,62159653,30165981,0,0,72823,0,1,1 +1773659131.327998,0.60,4,3992.50,52.74,1643.85,2064.83,0.00,0.000000,0.004687,3378651,2988687,0.000132,0.000179,62159663,30165994,0,0,72826,0,1,1 +1773659136.328288,0.65,4,3992.50,52.74,1643.86,2064.82,0.00,3518233722106.035645,3518233721903.147949,11,0,0.000033,0.000703,62159666,30166003,0,0,72828,0,1,1 +1773659141.328273,0.65,4,3992.50,52.68,1645.97,2062.71,0.00,1.657720,10.675227,253,556,0.000000,0.000030,62159666,30166006,0,0,72831,0,1,1 +1773659146.328199,0.95,4,3992.50,52.90,1634.86,2071.07,0.00,3518488982039.570801,3518488982030.500000,75,0,0.000000,0.000020,62159666,30166008,0,0,72833,0,1,1 +1773659151.324048,16.88,4,3992.50,53.63,1606.33,2099.61,0.00,48470.602137,48673.790346,3378651,2988773,40.097325,0.020853,62164009,30167378,0,0,72836,0,1,1 +1773659156.324502,0.85,4,3992.50,52.87,1635.93,2070.02,0.00,3518118092472.425781,3518118092269.298340,205,0,0.000619,0.000273,62164021,30167387,0,0,72838,0,1,1 +1773659161.323457,0.65,4,3992.50,52.48,1651.13,2054.81,0.00,48430.632390,48632.966080,3377148,2988299,0.001447,0.001787,62164038,30167415,0,0,72841,0,1,1 +1773659166.323438,0.60,4,3992.50,52.40,1654.21,2051.73,0.00,3518450425022.786133,3518450424818.499023,258,2,0.000205,0.000552,62164045,30167428,0,0,72843,0,1,1 +1773659171.323504,0.75,4,3992.50,52.40,1654.30,2051.64,0.00,3518390566986.292480,10.674858,253,556,0.000000,0.000030,62164045,30167431,0,0,72846,0,1,1 +1773659176.324544,1.05,4,3992.50,52.53,1643.31,2056.81,0.00,3517705837736.030273,3517705837727.014648,11,0,0.000000,0.000020,62164045,30167433,0,0,72848,0,1,1 +1773659181.323510,0.60,4,3992.50,52.54,1643.08,2057.06,0.00,0.053527,0.000000,75,0,0.000000,0.000030,62164045,30167436,0,0,72851,0,1,1 +1773659186.328140,0.60,4,3992.50,52.54,1643.08,2057.06,0.00,3515181782864.199707,0.000000,11,0,0.000000,0.000020,62164045,30167438,0,0,72853,0,1,1 +1773659191.324760,0.75,4,3992.50,52.54,1643.08,2057.05,0.00,48453.448361,48655.923720,3377148,2988401,0.000000,0.000030,62164045,30167441,0,0,72856,0,1,1 +1773659196.327990,0.55,4,3992.50,52.52,1643.70,2056.43,0.00,3516166276118.753906,3516166275916.365723,205,0,0.000132,0.000169,62164055,30167453,0,0,72858,0,1,1 +1773659201.323435,0.70,4,3992.50,52.52,1643.70,2056.43,0.00,3521645314367.429199,0.000000,11,0,0.000033,0.000713,62164058,30167463,0,0,72861,0,1,1 +1773659206.327781,0.90,4,3992.50,52.62,1640.77,2060.08,0.00,0.000000,0.000000,11,0,0.000062,0.000070,62164062,30167469,0,0,72863,0,1,1 +1773659211.327708,0.75,4,3992.50,52.62,1640.58,2060.30,0.00,0.000000,0.000000,11,0,0.001798,0.001592,62164088,30167490,0,0,72866,0,1,1 +1773659216.328132,13.01,4,3992.50,52.34,1651.69,2049.17,0.00,48426.310640,48629.658726,3378651,2989054,40.061698,0.022710,62168438,30168934,0,0,72868,0,1,1 +1773659221.328007,0.70,4,3992.50,52.37,1650.48,2050.39,0.00,3518524752720.748535,3518524752526.395996,253,556,0.000000,0.000030,62168438,30168937,0,0,72871,0,1,1 +1773659226.328290,0.60,4,3992.50,52.37,1650.48,2050.39,0.00,3518238016799.925293,3518238016790.728027,205,0,0.000000,0.000020,62168438,30168939,0,0,72873,0,1,1 +1773659231.328279,0.60,4,3992.50,52.37,1650.54,2050.34,0.00,1.995122,0.000195,258,2,0.000000,0.000030,62168438,30168942,0,0,72876,0,1,1 +1773659236.328285,0.90,4,3992.50,52.55,1648.49,2057.64,0.00,0.000000,0.000000,258,2,0.000000,0.000020,62168438,30168944,0,0,72878,0,1,1 +1773659241.327985,0.60,4,3992.50,52.56,1648.22,2057.89,0.00,3518648522021.744141,3518648522023.919922,11,0,0.000000,0.000030,62168438,30168947,0,0,72881,0,1,1 +1773659246.323503,0.55,4,3992.50,52.56,1648.22,2057.89,0.00,48464.139945,48666.941777,3377148,2988653,0.000000,0.000020,62168438,30168949,0,0,72883,0,1,1 +1773659251.323499,0.75,4,3992.50,52.56,1648.22,2057.89,0.00,0.000000,0.021875,3377148,2988666,0.000000,0.000030,62168438,30168952,0,0,72886,0,1,1 +1773659256.324999,0.55,4,3992.50,52.57,1648.01,2058.09,0.00,3517382047852.232422,3517382047649.651367,11,0,0.000025,0.000051,62168440,30168956,0,0,72888,0,1,1 +1773659261.327761,0.75,4,3992.50,52.57,1648.01,2058.09,0.00,2.174189,0.000195,258,2,0.000252,0.000300,62168459,30168978,0,0,72891,0,1,1 +1773659266.323809,0.95,4,3992.50,52.65,1646.09,2061.21,0.00,3521220626741.410156,3521220626743.534180,75,0,0.000000,0.000664,62168459,30168984,0,0,72893,0,1,1 +1773659271.326349,0.65,4,3992.50,52.65,1644.66,2061.43,0.00,48405.772353,48609.364331,3378651,2989258,0.000000,0.000030,62168459,30168987,0,0,72896,0,1,1 +1773659276.323500,0.75,4,3992.50,52.65,1644.65,2061.46,0.00,3520443017352.551758,3520443017148.793945,11,0,0.000000,0.000020,62168459,30168989,0,0,72898,0,1,1 +1773659281.323415,14.95,4,3992.50,53.39,1615.61,2090.50,0.00,0.053517,0.000000,75,0,40.068797,0.030204,62172898,30171079,0,0,72901,0,1,1 +1773659286.323445,0.60,4,3992.50,52.72,1641.86,2064.25,0.00,0.000000,0.000000,75,0,0.000013,0.000020,62172899,30171081,0,0,72903,0,1,1 +1773659291.328324,0.65,4,3992.50,52.54,1648.91,2057.20,0.00,3515007157339.795410,0.000000,11,0,0.000000,0.000030,62172899,30171084,0,0,72906,0,1,1 +1773659296.327710,0.85,4,3992.50,52.66,1635.19,2061.75,0.00,48426.639545,48629.563590,3377148,2988884,0.000000,0.000020,62172899,30171086,0,0,72908,0,1,1 +1773659301.323418,0.55,4,3992.50,52.45,1643.42,2053.52,0.00,0.000000,0.032059,3377148,2988918,0.000000,0.000030,62172899,30171089,0,0,72911,0,1,1 +1773659306.323349,0.60,4,3992.50,52.46,1643.20,2053.74,0.00,9.726308,10.681008,3378651,2989480,0.000000,0.000020,62172899,30171091,0,0,72913,0,1,1 +1773659311.326297,0.65,4,3992.50,52.46,1643.21,2053.73,0.00,0.000000,0.002342,3378651,2989483,0.000000,0.000030,62172899,30171094,0,0,72916,0,1,1 +1773659316.327889,0.75,4,3992.50,52.46,1643.21,2053.73,0.00,3517316850014.577148,3517316849810.573730,205,0,0.000000,0.000020,62172899,30171096,0,0,72918,0,1,1 +1773659321.327585,0.65,4,3992.50,52.46,1643.21,2053.73,0.00,1.995238,0.000195,258,2,0.000000,0.000030,62172899,30171099,0,0,72921,0,1,1 +1773659326.327472,0.85,4,3992.50,52.53,1644.47,2056.61,0.00,3518517091181.952637,3518517091184.127930,11,0,0.000144,0.000200,62172910,30171113,0,0,72923,0,1,1 +1773659331.327994,0.65,4,3992.50,52.55,1643.67,2057.35,0.00,48425.360664,48629.286927,3378651,2989524,0.000021,0.000682,62172912,30171121,0,0,72926,0,1,1 +1773659336.327688,0.55,4,3992.50,52.55,1643.67,2057.35,0.00,3518652242998.906250,3518652242803.964844,253,556,0.000000,0.000020,62172912,30171123,0,0,72928,0,1,1 +1773659341.327493,0.60,4,3992.50,52.55,1643.67,2057.34,0.00,3518574796415.574707,3518574796406.503906,75,0,0.000000,0.000030,62172912,30171126,0,0,72931,0,1,1 +1773659346.327658,15.15,4,3992.50,57.42,1452.75,2248.26,0.00,2.121805,0.000195,258,2,28.043660,0.018082,62175990,30172368,0,0,72933,0,1,1 +1773659351.323432,1.05,4,3992.50,53.02,1625.00,2076.02,0.00,48469.208363,48675.618270,3378651,2989665,12.030098,0.004817,62177256,30172647,0,0,72936,0,1,1 +1773659356.327775,0.75,4,3992.50,52.78,1635.59,2066.39,0.00,0.000000,0.099913,3378651,2989726,0.000000,0.000020,62177256,30172649,0,0,72938,0,1,1 +1773659361.323436,0.65,4,3992.50,52.75,1636.84,2065.15,0.00,0.000000,0.032743,3378651,2989765,0.000000,0.000030,62177256,30172652,0,0,72941,0,1,1 +1773659366.326604,0.50,4,3992.50,52.75,1636.59,2065.39,0.00,3516209247375.945801,3516209247171.828613,75,0,0.000000,0.000020,62177256,30172654,0,0,72943,0,1,1 +1773659371.324934,0.70,4,3992.50,52.78,1635.61,2066.37,0.00,48436.813055,48640.186829,3377148,2989215,0.000000,0.000030,62177256,30172657,0,0,72946,0,1,1 +1773659376.328117,0.55,4,3992.50,52.78,1635.61,2066.37,0.00,3516198881168.731934,3516198880974.620117,253,556,0.000000,0.000020,62177256,30172659,0,0,72948,0,1,1 +1773659381.327476,0.55,4,3992.50,52.78,1635.61,2066.37,0.00,3518888601354.838379,3518888601345.639648,205,0,0.000000,0.000030,62177256,30172662,0,0,72951,0,1,1 +1773659386.327726,0.90,4,3992.50,52.83,1640.16,2068.33,0.00,3518261284560.409180,0.000000,75,0,0.000000,0.000020,62177256,30172664,0,0,72953,0,1,1 +1773659391.323500,0.70,4,3992.50,52.81,1635.21,2067.59,0.00,3521412977511.227051,0.000000,11,0,0.000031,0.000055,62177258,30172669,0,0,72956,0,1,1 +1773659396.323602,0.95,4,3992.50,52.78,1636.46,2066.34,0.00,0.053515,0.000000,75,0,0.000134,0.000827,62177269,30172686,0,0,72958,0,1,1 +1773659401.324140,0.65,4,3992.50,52.79,1635.99,2066.81,0.00,0.126744,0.000000,205,0,0.000000,0.000030,62177269,30172689,0,0,72961,0,1,1 +1773659406.323491,0.55,4,3992.50,52.80,1635.75,2067.06,0.00,1.995376,0.000195,258,2,0.000000,0.000020,62177269,30172691,0,0,72963,0,1,1 +1773659411.327793,12.96,4,3992.50,52.60,1643.24,2059.56,0.00,3515412606232.129395,10.665823,253,556,40.029073,0.023689,62181580,30174191,0,0,72966,0,1,1 +1773659416.327507,1.00,4,3992.50,53.06,1625.84,2077.40,0.00,3518638188568.960449,3518638188559.762207,205,0,0.003085,0.001428,62181636,30174230,0,0,72968,0,1,1 +1773659421.327725,0.75,4,3992.50,52.79,1635.78,2067.02,0.00,48428.127989,48632.814777,3378651,2990022,0.000000,0.000030,62181636,30174233,0,0,72971,0,1,1 +1773659426.323414,0.65,4,3992.50,52.73,1638.46,2064.34,0.00,3521473515073.782227,3521473514878.116211,253,556,0.000000,0.000020,62181636,30174235,0,0,72973,0,1,1 +1773659431.328297,0.75,4,3992.50,52.74,1637.72,2065.08,0.00,48381.506769,48576.855332,3378651,2990066,0.000000,0.000030,62181636,30174238,0,0,72976,0,1,1 +1773659436.328015,0.65,4,3992.50,52.74,1637.72,2065.08,0.00,3518636162550.773438,3518636162346.205078,11,0,0.000000,0.000020,62181636,30174240,0,0,72978,0,1,1 +1773659441.327730,0.70,4,3992.50,52.57,1644.38,2058.42,0.00,0.000000,0.000000,11,0,0.000000,0.000030,62181636,30174243,0,0,72981,0,1,1 +1773659446.327409,0.80,4,3992.50,52.77,1637.91,2066.01,0.00,0.000000,0.000000,11,0,0.000000,0.000020,62181636,30174245,0,0,72983,0,1,1 +1773659451.323492,0.70,4,3992.50,52.77,1637.63,2066.23,0.00,2.177096,0.000195,258,2,0.000000,0.000030,62181636,30174248,0,0,72986,0,1,1 +1773659456.327965,0.50,4,3992.50,52.77,1637.62,2066.23,0.00,0.000000,0.000000,258,2,0.000087,0.000101,62181642,30174256,0,0,72988,0,1,1 +1773659461.325299,0.65,4,3992.50,52.77,1637.62,2066.23,0.00,3520314253818.408691,3520314253820.531250,75,0,0.001544,0.002564,62181667,30174297,0,0,72991,0,1,1 +1773659466.327925,0.55,4,3992.50,52.77,1637.63,2066.23,0.00,2.120761,0.000195,258,2,0.000205,0.000552,62181674,30174310,0,0,72993,0,1,1 +1773659471.327559,0.65,4,3992.50,52.77,1637.63,2066.23,0.00,3518695006774.435059,3518695006776.610352,11,0,0.000000,0.000030,62181674,30174313,0,0,72996,0,1,1 +1773659476.327193,12.20,4,3992.50,57.76,1442.80,2261.37,0.00,0.053520,0.000000,75,0,40.066161,0.019017,62186126,30175589,0,0,72998,0,1,1 +1773659481.327972,2.05,4,3992.50,52.82,1635.65,2068.20,0.00,2.121545,0.000195,258,2,0.003364,0.001710,62186203,30175651,0,0,73001,0,1,1 +1773659486.328319,0.55,4,3992.50,52.83,1635.38,2068.46,0.00,3518192726150.291504,3518192726152.466797,11,0,0.000000,0.000020,62186203,30175653,0,0,73003,0,1,1 +1773659491.327924,0.60,4,3992.50,52.82,1635.88,2067.96,0.00,1.657846,10.676038,253,556,0.000000,0.000030,62186203,30175656,0,0,73006,0,1,1 +1773659496.327803,0.55,4,3992.50,52.82,1635.88,2067.96,0.00,0.000000,0.000000,253,556,0.000000,0.000020,62186203,30175658,0,0,73008,0,1,1 +1773659501.327906,0.70,4,3992.50,52.75,1638.45,2065.39,0.00,0.000000,0.000000,253,556,0.000000,0.000030,62186203,30175661,0,0,73011,0,1,1 +1773659506.325915,0.90,4,3992.50,52.79,1642.36,2066.83,0.00,0.000000,0.000000,253,556,0.000062,0.000070,62186207,30175667,0,0,73013,0,1,1 +1773659511.325980,0.85,4,3992.50,52.75,1642.50,2065.24,0.00,0.000000,0.000000,253,556,0.001148,0.000670,62186232,30175686,0,0,73016,0,1,1 +1773659516.323426,0.75,4,3992.50,52.73,1643.10,2064.64,0.00,3520235006980.547363,3520235006971.525391,11,0,0.002043,0.001899,62186264,30175714,0,0,73018,0,1,1 +1773659521.327380,0.75,4,3992.50,52.70,1644.60,2063.14,0.00,0.000000,0.000000,11,0,0.000062,0.000080,62186268,30175721,0,0,73021,0,1,1 +1773659526.323455,0.60,4,3992.50,52.70,1644.59,2063.14,0.00,0.000000,0.000000,11,0,0.000076,0.000758,62186274,30175733,0,0,73023,0,1,1 +1773659531.327877,0.60,4,3992.50,52.76,1641.90,2065.84,0.00,2.173468,0.000195,258,2,0.000000,0.000030,62186274,30175736,0,0,73026,0,1,1 +1773659536.327486,0.85,4,3992.50,52.88,1644.44,2070.27,0.00,3518712455236.817871,3518712455238.813477,205,0,0.000000,0.000020,62186274,30175738,0,0,73028,0,1,1 +1773659541.328264,13.96,4,3992.50,57.56,1461.31,2253.41,0.00,3517890046818.807617,0.000000,11,0,29.041808,0.019643,62189477,30177103,0,0,73031,0,1,1 +1773659546.323447,1.00,4,3992.50,53.98,1601.19,2113.53,0.00,48467.376382,48671.739926,3377149,2990014,11.029718,0.004132,62190683,30177327,0,0,73033,0,1,1 +1773659551.328163,0.70,4,3992.50,53.08,1636.54,2078.18,0.00,9.717009,10.669236,3378652,2990577,0.000000,0.000030,62190683,30177330,0,0,73036,0,1,1 +1773659556.328024,0.55,4,3992.50,52.68,1652.04,2062.68,0.00,3518534304370.097656,3518534304164.972168,11,0,0.000025,0.000051,62190685,30177334,0,0,73038,0,1,1 +1773659561.323441,0.65,4,3992.50,52.66,1652.89,2061.84,0.00,1.659236,10.684990,253,556,0.000056,0.000086,62190689,30177341,0,0,73041,0,1,1 +1773659566.328203,0.65,4,3992.50,53.11,1635.17,2079.54,0.00,3515089221377.786133,3515089221368.597656,205,0,0.000000,0.000020,62190689,30177343,0,0,73043,0,1,1 +1773659571.328334,0.80,4,3992.50,53.07,1636.84,2077.86,0.00,3518345393437.962891,0.000000,11,0,0.000000,0.000030,62190689,30177346,0,0,73046,0,1,1 +1773659576.327726,0.50,4,3992.50,53.08,1636.49,2078.21,0.00,48436.305192,48641.567932,3378652,2990658,0.000000,0.000020,62190689,30177348,0,0,73048,0,1,1 +1773659581.328247,0.60,4,3992.50,52.77,1648.59,2066.11,0.00,3518070839919.346680,3518070839714.129883,11,0,0.000000,0.000030,62190689,30177351,0,0,73051,0,1,1 +1773659586.328342,0.60,4,3992.50,52.80,1647.37,2067.33,0.00,0.000000,0.000000,11,0,0.000031,0.000045,62190691,30177355,0,0,73053,0,1,1 +1773659591.328269,0.65,4,3992.50,52.80,1647.37,2067.33,0.00,0.000000,0.000000,11,0,0.000134,0.000837,62190702,30177373,0,0,73056,0,1,1 +1773659596.323480,0.80,4,3992.50,53.08,1637.65,2078.11,0.00,48467.119220,48671.660757,3377149,2990144,0.000000,0.000020,62190702,30177375,0,0,73058,0,1,1 +1773659601.327672,0.65,4,3992.50,52.99,1640.25,2074.51,0.00,3515489544820.387207,3515489544614.039551,258,2,0.000000,0.000030,62190702,30177378,0,0,73061,0,1,1 +1773659606.327580,15.26,4,3992.50,57.93,1446.50,2268.25,0.00,3518502023206.794434,3518502023208.969727,11,0,20.035167,0.016477,62193034,30178491,0,0,73063,0,1,1 +1773659611.326719,1.20,4,3992.50,53.42,1623.31,2091.44,0.00,0.000000,0.000000,11,0,20.034908,0.006249,62195167,30178884,0,0,73066,0,1,1 +1773659616.326891,0.55,4,3992.50,53.13,1634.45,2080.31,0.00,1.657657,10.674826,253,556,0.000000,0.000020,62195167,30178886,0,0,73068,0,1,1 +1773659621.328256,0.60,4,3992.50,52.95,1641.84,2072.91,0.00,0.517535,3517477581191.257324,258,2,0.000000,0.000030,62195167,30178889,0,0,73071,0,1,1 +1773659626.328237,0.75,4,3992.50,53.04,1646.90,2076.77,0.00,3518450704955.896484,10.675041,253,556,0.000000,0.000020,62195167,30178891,0,0,73073,0,1,1 +1773659631.324109,0.55,4,3992.50,53.04,1646.04,2076.77,0.00,48468.767658,48665.458916,3378652,2990928,0.000000,0.000030,62195167,30178894,0,0,73076,0,1,1 +1773659636.327559,0.60,4,3992.50,53.06,1645.59,2077.22,0.00,3516011450089.499023,3516011449883.914062,205,0,0.000000,0.000020,62195167,30178896,0,0,73078,0,1,1 +1773659641.327616,0.60,4,3992.50,53.06,1645.37,2077.44,0.00,3518396938719.017578,0.000000,11,0,0.000000,0.000030,62195167,30178899,0,0,73081,0,1,1 +1773659646.324114,0.70,4,3992.50,53.06,1645.37,2077.44,0.00,48454.628977,48659.421140,3377149,2990423,0.000000,0.000020,62195167,30178901,0,0,73083,0,1,1 +1773659651.328290,0.70,4,3992.50,53.06,1645.37,2077.44,0.00,9.718056,10.671166,3378652,2990986,0.000031,0.000055,62195169,30178906,0,0,73086,0,1,1 +1773659656.325617,0.85,4,3992.50,53.06,1639.91,2077.39,0.00,3520318827191.070312,3520318826985.304199,75,0,0.000134,0.000828,62195180,30178923,0,0,73088,0,1,1 +1773659661.323956,0.65,4,3992.50,53.06,1639.92,2077.39,0.00,48436.737969,48641.553603,3377149,2990456,0.000000,0.000030,62195180,30178926,0,0,73091,0,1,1 +1773659666.328296,0.60,4,3992.50,53.06,1639.92,2077.39,0.00,3515385172660.230469,3515385172455.713867,11,0,0.000000,0.000020,62195180,30178928,0,0,73093,0,1,1 +1773659671.326868,11.25,4,3992.50,57.75,1456.28,2261.00,0.00,0.053531,0.000000,75,0,17.636346,0.015674,62197291,30179988,0,0,73096,0,1,1 +1773659676.323440,2.56,4,3992.50,52.92,1645.17,2072.12,0.00,3520850674561.843750,0.000000,11,0,22.451143,0.008855,62199722,30180566,0,0,73098,0,1,1 +1773659681.328254,0.65,4,3992.50,52.93,1644.93,2072.36,0.00,0.180100,0.000000,205,0,0.000000,0.000030,62199722,30180569,0,0,73101,0,1,1 +1773659686.327499,0.80,4,3992.50,53.13,1637.44,2080.00,0.00,1.477665,10.676808,253,556,0.000000,0.000020,62199722,30180571,0,0,73103,0,1,1 +1773659691.325237,0.75,4,3992.50,53.02,1641.54,2075.74,0.00,3520029577333.546875,3520029577324.525391,11,0,0.000000,0.000030,62199722,30180574,0,0,73106,0,1,1 +1773659696.324677,0.70,4,3992.50,53.02,1641.29,2075.99,0.00,48435.839328,48641.748116,3378652,2991239,0.000000,0.000020,62199722,30180576,0,0,73108,0,1,1 +1773659701.327967,0.70,4,3992.50,53.02,1641.29,2075.99,0.00,3516123802745.092773,3516123802539.289062,75,0,0.000000,0.000030,62199722,30180579,0,0,73111,0,1,1 +1773659706.323415,0.80,4,3992.50,52.83,1648.71,2068.57,0.00,3521643110628.748047,0.000000,11,0,0.000000,0.000020,62199722,30180581,0,0,73113,0,1,1 +1773659711.326452,0.70,4,3992.50,52.83,1648.72,2068.56,0.00,0.000000,0.000000,11,0,0.000000,0.000030,62199722,30180584,0,0,73116,0,1,1 +1773659716.323991,0.75,4,3992.50,53.03,1640.66,2076.39,0.00,0.000000,0.000000,11,0,0.000031,0.000045,62199724,30180588,0,0,73118,0,1,1 +1773659721.323485,0.60,4,3992.50,53.04,1640.39,2076.61,0.00,48435.323648,48641.381039,3378652,2991372,0.000165,0.000862,62199737,30180608,0,0,73121,0,1,1 +1773659726.327985,0.60,4,3992.50,53.04,1640.39,2076.61,0.00,3515273474085.806641,3515273473879.901855,75,0,0.000000,0.000020,62199737,30180610,0,0,73123,0,1,1 +1773659731.324406,0.60,4,3992.50,52.92,1645.20,2071.80,0.00,3520957068424.708496,0.000000,11,0,0.000000,0.000030,62199737,30180613,0,0,73126,0,1,1 +1773659736.325033,9.18,4,3992.50,57.89,1450.52,2266.47,0.00,0.180251,0.000000,205,0,11.224067,0.015215,62201276,30181533,0,0,73128,0,1,1 +1773659741.328360,4.51,4,3992.50,53.95,1604.91,2112.09,0.00,3516098133741.403320,0.000000,11,0,28.824576,0.011465,62204264,30182338,0,0,73131,0,1,1 +1773659746.326572,0.80,4,3992.50,53.49,1622.75,2094.23,0.00,0.000000,0.000000,11,0,0.000000,0.000020,62204264,30182340,0,0,73133,0,1,1 +1773659751.328151,0.60,4,3992.50,53.28,1631.00,2085.99,0.00,2.174704,0.000195,258,2,0.000000,0.000030,62204264,30182343,0,0,73136,0,1,1 +1773659756.323462,0.60,4,3992.50,53.28,1631.00,2085.99,0.00,3521739828875.319336,3521739828877.316406,205,0,0.000000,0.000020,62204264,30182345,0,0,73138,0,1,1 +1773659761.324552,0.75,4,3992.50,53.28,1630.78,2086.21,0.00,48409.959444,48615.443851,3377149,2991054,0.000512,0.001116,62204278,30182370,0,0,73141,0,1,1 +1773659766.326946,0.65,4,3992.50,53.28,1630.79,2086.21,0.00,3516753270773.623535,3516753270566.198730,258,2,0.000213,0.000560,62204286,30182384,0,0,73143,0,1,1 +1773659771.323620,0.60,4,3992.50,53.28,1630.79,2086.21,0.00,3520778994471.798828,3520778994473.975586,11,0,0.000000,0.000030,62204286,30182387,0,0,73146,0,1,1 +1773659776.323618,0.80,4,3992.50,53.28,1629.02,2086.17,0.00,2.175392,0.000195,258,2,0.000000,0.000020,62204286,30182389,0,0,73148,0,1,1 +1773659781.323988,0.70,4,3992.50,53.26,1627.40,2085.30,0.00,3518177040392.576660,3518177040394.698242,75,0,0.000031,0.000055,62204288,30182394,0,0,73151,0,1,1 +1773659786.328210,0.55,4,3992.50,53.27,1626.93,2085.79,0.00,0.126651,0.000000,205,0,0.000126,0.000819,62204298,30182410,0,0,73153,0,1,1 +1773659791.327565,0.55,4,3992.50,53.27,1626.93,2085.79,0.00,48436.487353,48643.057266,3378652,2991671,0.000000,0.000030,62204298,30182413,0,0,73156,0,1,1 +1773659796.327807,0.60,4,3992.50,53.28,1626.69,2086.03,0.00,0.000000,0.005468,3378652,2991675,0.000000,0.000020,62204298,30182415,0,0,73158,0,1,1 +1773659801.331670,7.71,4,3992.50,57.80,1449.56,2263.14,0.00,3515721076776.834961,3515721076579.636230,253,556,0.204354,0.003060,62204415,30182492,0,0,73161,0,1,1 +1773659806.326369,9.37,4,3992.50,53.94,1604.62,2111.76,0.00,0.518225,3522171376926.892090,258,2,39.903931,0.018147,62208770,30183800,0,0,73163,0,1,1 +1773659811.328045,0.85,4,3992.50,53.43,1624.62,2091.75,0.00,0.000000,0.000000,258,2,0.001140,0.000662,62208794,30183818,0,0,73166,0,1,1 +1773659816.327658,0.65,4,3992.50,53.07,1638.59,2077.79,0.00,3518709409907.298340,3518709409909.474121,11,0,0.001372,0.000976,62208823,30183844,0,0,73168,0,1,1 +1773659821.324939,0.60,4,3992.50,52.89,1645.74,2070.64,0.00,0.000000,0.000000,11,0,0.000000,0.000030,62208823,30183847,0,0,73171,0,1,1 +1773659826.328192,0.75,4,3992.50,52.89,1645.45,2070.92,0.00,48398.936178,48605.427447,3378652,2991916,0.000000,0.000020,62208823,30183849,0,0,73173,0,1,1 +1773659831.323548,1.20,4,3992.50,52.89,1645.70,2070.68,0.00,3521707928380.041016,3521707928182.249512,253,556,0.000000,0.000030,62208823,30183852,0,0,73176,0,1,1 +1773659836.327410,0.80,4,3992.50,52.97,1628.77,2074.04,0.00,3515721384426.500488,3515721384417.490234,11,0,0.000000,0.000020,62208823,30183854,0,0,73178,0,1,1 +1773659841.327774,0.70,4,3992.50,52.76,1636.91,2065.65,0.00,0.053512,0.000000,75,0,0.000000,0.000030,62208823,30183857,0,0,73181,0,1,1 +1773659846.327372,0.60,4,3992.50,52.75,1637.28,2065.28,0.00,3518719926065.558105,0.000000,11,0,0.000031,0.000045,62208825,30183861,0,0,73183,0,1,1 +1773659851.323446,0.55,4,3992.50,52.75,1637.28,2065.28,0.00,0.053558,0.000000,75,0,0.000076,0.000768,62208831,30183874,0,0,73186,0,1,1 +1773659856.323478,0.60,4,3992.50,52.75,1637.28,2065.28,0.00,2.121861,0.000195,258,2,0.000058,0.000090,62208836,30183881,0,0,73188,0,1,1 +1773659861.323421,0.60,4,3992.50,52.75,1637.28,2065.28,0.00,3518477259707.671875,3518477259709.847168,11,0,0.000081,0.000117,62208842,30183890,0,0,73191,0,1,1 +1773659866.329540,2.50,4,3992.50,57.49,1460.72,2250.71,0.00,48371.219379,48577.726314,3378652,2992028,0.003750,0.002699,62208900,30183938,0,0,73193,0,1,1 +1773659871.327637,9.19,4,3992.50,53.27,1623.39,2085.79,0.00,3519777043683.145020,3519777043682.287598,3377149,2991568,40.076603,0.019331,62213266,30185369,0,0,73196,0,1,1 +1773659876.327117,0.55,4,3992.50,52.67,1647.01,2062.17,0.00,3518803174406.436523,3518803174209.530762,253,556,0.000000,0.000020,62213266,30185371,0,0,73198,0,1,1 +1773659881.327494,0.65,4,3992.50,52.50,1653.61,2055.57,0.00,48425.110506,48622.962193,3378652,2992154,0.000000,0.000030,62213266,30185374,0,0,73201,0,1,1 +1773659886.324394,0.55,4,3992.50,52.50,1653.86,2055.32,0.00,3520620093480.907227,3520620093273.895020,11,0,0.000000,0.000020,62213266,30185376,0,0,73203,0,1,1 +1773659891.323454,0.65,4,3992.50,52.50,1653.86,2055.32,0.00,48439.520747,48646.456214,3378652,2992167,0.000000,0.000030,62213266,30185379,0,0,73206,0,1,1 +1773659896.323810,0.85,4,3992.50,53.00,1634.45,2075.18,0.00,3518187016652.440430,3518187016445.378906,205,0,0.000000,0.000020,62213266,30185381,0,0,73208,0,1,1 +1773659901.328141,0.65,4,3992.50,52.92,1637.08,2072.11,0.00,3515391931018.068848,0.000000,75,0,0.000000,0.000030,62213266,30185384,0,0,73211,0,1,1 +1773659906.326342,0.65,4,3992.50,52.93,1636.93,2072.25,0.00,2.122639,0.000195,258,2,0.000000,0.000020,62213266,30185386,0,0,73213,0,1,1 +1773659911.327457,0.50,4,3992.50,52.91,1637.52,2071.67,0.00,3517652334814.463867,3517652334816.584961,75,0,0.000031,0.000055,62213268,30185391,0,0,73216,0,1,1 +1773659916.328080,0.65,4,3992.50,52.92,1637.30,2071.89,0.00,0.126742,0.000000,205,0,0.000126,0.000819,62213278,30185407,0,0,73218,0,1,1 +1773659921.327718,0.65,4,3992.50,52.91,1637.82,2071.37,0.00,3518692096604.851562,0.000000,11,0,0.000016,0.000046,62213280,30185412,0,0,73221,0,1,1 +1773659926.328111,0.65,4,3992.50,52.90,1639.46,2071.33,0.00,48416.886466,48622.988722,3377149,2991726,0.000000,0.000020,62213280,30185414,0,0,73223,0,1,1 +1773659931.327904,9.89,4,3992.50,57.81,1446.30,2263.49,0.00,3518583224593.097168,3518583224386.916504,75,0,14.025902,0.012874,62214953,30186270,0,0,73226,0,1,1 +1773659936.323452,3.66,4,3992.50,53.02,1634.04,2075.72,0.00,1.605629,10.684708,253,556,26.063485,0.009864,62217687,30186909,0,0,73228,0,1,1 +1773659941.323440,0.60,4,3992.50,52.82,1641.70,2068.08,0.00,3518445752371.571777,3518445752362.500977,75,0,0.000000,0.000030,62217687,30186912,0,0,73231,0,1,1 +1773659946.328301,0.50,4,3992.50,52.83,1641.45,2068.33,0.00,48383.325511,48590.411970,3378652,2992467,0.000000,0.000020,62217687,30186914,0,0,73233,0,1,1 +1773659951.327921,0.55,4,3992.50,52.83,1641.45,2068.32,0.00,3518704811438.185059,3518704811230.754395,205,0,0.000000,0.000030,62217687,30186917,0,0,73236,0,1,1 +1773659956.327371,0.80,4,3992.50,52.85,1637.47,2069.20,0.00,48425.834263,48632.398860,3377149,2991946,0.000000,0.000020,62217687,30186919,0,0,73238,0,1,1 +1773659961.327569,0.60,4,3992.50,52.71,1642.66,2063.88,0.00,3518298126468.305176,3518298126261.771484,205,0,0.000000,0.000030,62217687,30186922,0,0,73241,0,1,1 +1773659966.328274,0.55,4,3992.50,52.71,1642.66,2063.88,0.00,48413.680067,48620.238125,3377149,2991993,0.000000,0.000020,62217687,30186924,0,0,73243,0,1,1 +1773659971.327398,0.60,4,3992.50,52.71,1642.66,2063.88,0.00,3519054182273.286621,3519054182066.843262,11,0,0.000000,0.000030,62217687,30186927,0,0,73246,0,1,1 +1773659976.327459,0.55,4,3992.50,52.71,1642.66,2063.88,0.00,48420.095837,48626.513509,3377149,2992005,0.000031,0.000045,62217689,30186931,0,0,73248,0,1,1 +1773659981.327687,0.75,4,3992.50,52.71,1642.66,2063.88,0.00,3518277034527.199707,3518277034320.735352,75,0,0.000165,0.000218,62217702,30186947,0,0,73251,0,1,1 +1773659986.328324,0.75,4,3992.50,52.91,1635.45,2071.71,0.00,48414.473893,48620.955706,3377149,2992028,0.000000,0.000664,62217702,30186953,0,0,73253,0,1,1 +1773659991.328352,0.55,4,3992.50,52.77,1641.16,2066.04,0.00,3518416629797.843262,3518416629591.335938,75,0,0.000000,0.000030,62217702,30186956,0,0,73256,0,1,1 +1773659996.327572,9.89,4,3992.50,58.05,1434.24,2272.94,0.00,48428.201724,48634.768456,3377149,2992074,4.213724,0.009086,62218461,30187511,0,0,73258,0,1,1 +1773660001.325573,6.67,4,3992.50,54.21,1584.71,2122.49,0.00,3519844369604.223145,3519844369406.680176,253,556,35.866715,0.014346,62222106,30188518,0,0,73261,0,1,1 +1773660006.327738,0.55,4,3992.50,53.45,1614.55,2092.64,0.00,48407.807011,48606.279353,3378661,2992768,0.000008,0.000028,62222107,30188521,0,0,73263,0,1,1 +1773660011.327825,0.50,4,3992.50,53.16,1625.90,2081.29,0.00,3518376317171.117188,3518376316963.544922,11,0,0.000000,0.000030,62222107,30188524,0,0,73266,0,1,1 +1773660016.328115,0.90,4,3992.50,53.73,1603.67,2103.50,0.00,0.000000,0.000000,11,0,0.000000,0.000020,62222107,30188526,0,0,73268,0,1,1 +1773660021.324001,0.65,4,3992.50,53.50,1612.52,2094.67,0.00,48460.572468,48667.455953,3377158,2992265,0.000000,0.000030,62222107,30188529,0,0,73271,0,1,1 +1773660026.323545,0.60,4,3992.50,53.49,1613.13,2094.05,0.00,3518758157064.119629,3518758156857.387207,11,0,0.000000,0.000020,62222107,30188531,0,0,73273,0,1,1 +1773660031.323740,0.55,4,3992.50,53.49,1613.14,2094.05,0.00,48428.539041,48636.219213,3378661,2992846,0.000000,0.000030,62222107,30188534,0,0,73276,0,1,1 +1773660036.323570,0.70,4,3992.50,53.51,1612.25,2094.94,0.00,3518557331717.066895,3518557331716.121094,3377158,2992292,0.000000,0.000020,62222107,30188536,0,0,73278,0,1,1 +1773660041.328358,0.65,4,3992.50,53.51,1612.25,2094.93,0.00,3515070848818.028809,3515070848611.484375,11,0,0.000031,0.000055,62222109,30188541,0,0,73281,0,1,1 +1773660046.323453,0.80,4,3992.50,53.51,1621.65,2095.11,0.00,0.180450,0.000000,205,0,0.000142,0.000191,62222121,30188555,0,0,73283,0,1,1 +1773660051.323609,0.65,4,3992.50,53.49,1622.71,2094.09,0.00,1.477395,10.674863,253,556,0.000000,0.000674,62222121,30188562,0,0,73286,0,1,1 +1773660056.323602,0.65,4,3992.50,53.47,1623.39,2093.41,0.00,3518441894742.458008,3518441894733.440430,11,0,0.000000,0.000020,62222121,30188564,0,0,73288,0,1,1 +1773660061.329124,5.31,4,3992.50,57.92,1449.12,2267.67,0.00,48376.999686,48584.519414,3378661,2992914,1.810484,0.010580,62222629,30189003,0,0,73291,0,1,1 +1773660066.324367,15.43,4,3992.50,54.29,1591.02,2125.77,0.00,3521787919785.807129,3521787919577.860352,11,0,38.293037,0.018090,62226586,30190275,0,0,73293,0,1,1 +1773660071.327475,0.60,4,3992.50,53.58,1618.88,2097.91,0.00,48390.624682,48597.398008,3377158,2992464,0.000008,0.000038,62226587,30190279,0,0,73296,0,1,1 +1773660076.327544,0.75,4,3992.50,53.33,1629.80,2088.06,0.00,3518388486372.498047,3518388486165.599121,11,0,0.000000,0.000020,62226587,30190281,0,0,73298,0,1,1 +1773660081.327605,0.65,4,3992.50,53.19,1635.37,2082.52,0.00,0.180271,0.000000,205,0,0.000000,0.000030,62226587,30190284,0,0,73301,0,1,1 +1773660086.328079,0.70,4,3992.50,53.19,1635.54,2082.36,0.00,3518103910051.168457,0.000000,11,0,0.000000,0.000020,62226587,30190286,0,0,73303,0,1,1 +1773660091.323425,0.55,4,3992.50,53.16,1636.40,2081.49,0.00,0.053565,0.000000,75,0,0.000000,0.000030,62226587,30190289,0,0,73306,0,1,1 +1773660096.328084,0.70,4,3992.50,53.16,1636.40,2081.48,0.00,2.119899,0.000195,258,2,0.000000,0.000020,62226587,30190291,0,0,73308,0,1,1 +1773660101.328008,0.65,4,3992.50,53.16,1636.41,2081.48,0.00,48419.269980,48628.475234,3377158,2992545,0.000000,0.000030,62226587,30190294,0,0,73311,0,1,1 +1773660106.323477,0.75,4,3992.50,53.14,1646.62,2080.57,0.00,9.734994,10.717134,3378661,2993120,0.000093,0.000095,62226593,30190302,0,0,73313,0,1,1 +1773660111.328384,0.75,4,3992.50,52.93,1652.92,2072.36,0.00,3514986779130.819824,3514986778922.835449,205,0,0.001904,0.001715,62226628,30190331,0,0,73316,0,1,1 +1773660116.327767,0.70,4,3992.50,52.96,1651.96,2073.31,0.00,1.477624,10.676513,253,556,0.001372,0.001628,62226657,30190362,0,0,73318,0,1,1 +1773660121.327788,0.65,4,3992.50,52.94,1652.71,2072.56,0.00,3518423020488.869629,3518423020479.852539,11,0,0.000000,0.000030,62226657,30190365,0,0,73321,0,1,1 +1773660126.328134,1.00,4,3992.50,52.94,1652.72,2072.54,0.00,0.180261,0.000000,205,0,0.003158,0.002323,62226692,30190398,0,0,73323,0,1,1 +1773660131.327688,12.32,4,3992.50,53.20,1642.30,2082.98,0.00,0.000000,0.000000,205,0,40.065387,0.021943,62231067,30191984,0,0,73326,0,1,1 +1773660136.327655,0.85,4,3992.50,53.80,1621.00,2106.27,0.00,1.477451,10.675264,253,556,0.000000,0.000020,62231067,30191986,0,0,73328,0,1,1 +1773660141.327543,0.55,4,3992.50,53.67,1624.12,2101.13,0.00,3518516464168.601074,3518516464159.583496,11,0,0.000000,0.000030,62231067,30191989,0,0,73331,0,1,1 +1773660146.327880,0.65,4,3992.50,53.43,1633.28,2091.96,0.00,0.000000,0.000000,11,0,0.000000,0.000020,62231067,30191991,0,0,73333,0,1,1 +1773660151.327563,0.50,4,3992.50,53.43,1633.28,2091.96,0.00,0.053519,0.000000,75,0,0.000000,0.000030,62231067,30191994,0,0,73336,0,1,1 +1773660156.328008,0.80,4,3992.50,53.44,1632.82,2092.43,0.00,48426.069888,48634.374018,3378661,2993361,0.000025,0.000051,62231069,30191998,0,0,73338,0,1,1 +1773660161.323946,0.60,4,3992.50,53.49,1630.85,2094.39,0.00,3521297653501.447266,3521297653292.955078,75,0,0.000064,0.000094,62231074,30192006,0,0,73341,0,1,1 +1773660166.326578,0.75,4,3992.50,53.49,1627.57,2094.35,0.00,0.126691,0.000000,205,0,0.000000,0.000020,62231074,30192008,0,0,73343,0,1,1 +1773660171.326908,0.50,4,3992.50,53.42,1629.77,2091.54,0.00,48427.056332,48635.535747,3378661,2993386,0.000000,0.000030,62231074,30192011,0,0,73346,0,1,1 +1773660176.327572,0.75,4,3992.50,53.23,1637.39,2083.93,0.00,3517969500586.572754,3517969500376.112305,258,2,0.000188,0.000226,62231088,30192027,0,0,73348,0,1,1 +1773660181.328201,0.60,4,3992.50,53.22,1637.81,2083.51,0.00,0.000000,0.000000,258,2,0.000000,0.000687,62231088,30192035,0,0,73351,0,1,1 +1773660186.327621,0.70,4,3992.50,53.22,1637.81,2083.51,0.00,0.000000,0.000000,258,2,0.000000,0.000020,62231088,30192037,0,0,73353,0,1,1 +1773660191.327933,0.95,4,3992.50,53.02,1645.45,2075.85,0.00,3518217748790.646973,3518217748792.822266,11,0,0.002209,0.000724,62231110,30192055,0,0,73356,0,1,1 +1773660196.327971,18.94,4,3992.50,53.43,1628.58,2092.02,0.00,0.000000,0.000000,11,0,40.061170,0.022161,62235366,30193557,0,0,73358,0,1,1 +1773660201.323434,0.65,4,3992.50,53.40,1629.90,2090.71,0.00,0.000000,0.000000,11,0,0.000008,0.000038,62235367,30193561,0,0,73361,0,1,1 +1773660206.323449,0.65,4,3992.50,53.35,1631.68,2088.93,0.00,0.180273,0.000000,205,0,0.000000,0.000020,62235367,30193563,0,0,73363,0,1,1 +1773660211.323483,0.70,4,3992.50,53.39,1630.22,2090.39,0.00,0.000000,0.000000,205,0,0.000000,0.000030,62235367,30193566,0,0,73366,0,1,1 +1773660216.324677,0.65,4,3992.50,53.39,1630.23,2090.38,0.00,1.477089,10.672646,253,556,0.000000,0.000020,62235367,30193568,0,0,73368,0,1,1 +1773660221.327967,0.60,4,3992.50,53.40,1629.98,2090.62,0.00,3516123543332.106445,3516123543323.041504,75,0,0.000000,0.000030,62235367,30193571,0,0,73371,0,1,1 +1773660226.323417,0.75,4,3992.50,53.33,1628.45,2088.11,0.00,1.605660,10.684919,253,556,0.000000,0.000020,62235367,30193573,0,0,73373,0,1,1 +1773660231.327825,0.70,4,3992.50,53.33,1628.46,2088.11,0.00,0.000000,0.000000,253,556,0.000000,0.000030,62235367,30193576,0,0,73376,0,1,1 +1773660236.327658,0.65,4,3992.50,53.33,1628.46,2088.10,0.00,3518554711719.904785,3518554711710.833496,75,0,0.000000,0.000020,62235367,30193578,0,0,73378,0,1,1 +1773660241.328296,0.70,4,3992.50,53.33,1628.46,2088.10,0.00,0.000000,0.000000,75,0,0.000157,0.000210,62235379,30193593,0,0,73381,0,1,1 +1773660246.328042,0.65,4,3992.50,53.14,1635.86,2080.70,0.00,2.121983,0.000195,258,2,0.000016,0.000680,62235381,30193601,0,0,73383,0,1,1 +1773660251.327714,0.55,4,3992.50,53.14,1635.86,2080.70,0.00,0.000000,0.000000,258,2,0.000000,0.000030,62235381,30193604,0,0,73386,0,1,1 +1773660256.323430,1.40,4,3992.50,53.06,1639.04,2077.47,0.00,3521454154158.588379,3521454154160.765625,11,0,0.002198,0.000398,62235402,30193620,0,0,73388,0,1,1 +1773660261.324032,13.50,4,3992.50,54.08,1599.25,2117.24,0.00,2.175129,0.000195,258,2,40.057043,0.021090,62239732,30195041,0,0,73391,0,1,1 +1773660266.323607,0.60,4,3992.50,53.40,1625.59,2090.91,0.00,3518735746866.808594,3518735746868.930664,75,0,0.000000,0.000020,62239732,30195043,0,0,73393,0,1,1 +1773660271.323479,0.60,4,3992.50,53.11,1637.29,2079.21,0.00,3518527333849.686523,0.000000,11,0,0.000000,0.000030,62239732,30195046,0,0,73396,0,1,1 +1773660276.327873,0.65,4,3992.50,53.10,1637.40,2079.11,0.00,48387.910857,48596.549983,3378661,2993862,0.000000,0.000020,62239732,30195048,0,0,73398,0,1,1 +1773660281.326214,0.65,4,3992.50,53.10,1637.41,2079.10,0.00,3519604996363.267578,3519604996154.195312,205,0,0.000000,0.000030,62239732,30195051,0,0,73401,0,1,1 +1773660286.323424,0.80,4,3992.50,53.30,1632.57,2086.65,0.00,3520401264687.371094,0.000000,75,0,0.000000,0.000020,62239732,30195053,0,0,73403,0,1,1 +1773660291.327567,0.60,4,3992.50,53.25,1631.83,2084.84,0.00,3515524189291.512207,0.000000,11,0,0.000000,0.000030,62239732,30195056,0,0,73406,0,1,1 +1773660296.328173,0.75,4,3992.50,53.25,1631.83,2084.84,0.00,0.180252,0.000000,205,0,0.000000,0.000020,62239732,30195058,0,0,73408,0,1,1 +1773660301.327476,0.60,4,3992.50,53.25,1631.84,2084.84,0.00,1.477647,10.676683,253,556,0.000000,0.000030,62239732,30195061,0,0,73411,0,1,1 +1773660306.323459,0.65,4,3992.50,53.25,1631.84,2084.83,0.00,0.000000,0.000000,253,556,0.000157,0.000201,62239744,30195075,0,0,73413,0,1,1 +1773660311.323453,0.60,4,3992.50,53.25,1631.84,2084.83,0.00,48428.820289,48628.787967,3378661,2993974,0.000016,0.000690,62239746,30195084,0,0,73416,0,1,1 +1773660316.327747,0.75,4,3992.50,53.22,1648.68,2083.61,0.00,3515418664404.682129,3515418664403.762695,3377158,2993431,0.000000,0.000020,62239746,30195086,0,0,73418,0,1,1 +1773660321.325700,0.65,4,3992.50,53.21,1647.60,2083.48,0.00,3519878211273.806641,3519878211065.603027,75,0,0.000000,0.000030,62239746,30195089,0,0,73421,0,1,1 +1773660326.327067,16.80,4,3992.50,53.32,1643.41,2087.64,0.00,2.121295,0.000195,258,2,40.055224,0.022951,62244215,30196613,0,0,73423,0,1,1 +1773660331.328288,0.55,4,3992.50,53.27,1645.28,2085.80,0.00,3517578566547.556641,10.672395,253,556,0.000000,0.000030,62244215,30196616,0,0,73426,0,1,1 +1773660336.325582,0.60,4,3992.50,53.27,1645.28,2085.80,0.00,0.517956,3520342783094.248047,258,2,0.000000,0.000020,62244215,30196618,0,0,73428,0,1,1 +1773660341.324265,0.60,4,3992.50,53.27,1645.28,2085.80,0.00,3519363444102.768555,3519363444104.764648,205,0,0.000000,0.000030,62244215,30196621,0,0,73431,0,1,1 +1773660346.325019,0.85,4,3992.50,53.37,1641.52,2089.65,0.00,3517906735986.958984,0.000000,75,0,0.000000,0.000020,62244215,30196623,0,0,73433,0,1,1 +1773660351.324892,0.65,4,3992.50,53.38,1641.29,2089.89,0.00,48421.887532,48630.212092,3377158,2993611,0.000000,0.000030,62244215,30196626,0,0,73436,0,1,1 +1773660356.327462,0.65,4,3992.50,53.38,1641.29,2089.88,0.00,9.721176,10.677715,3378661,2994175,0.000000,0.000020,62244215,30196628,0,0,73438,0,1,1 +1773660361.327878,0.70,4,3992.50,53.18,1648.93,2082.24,0.00,3518143987183.316406,3518143986983.127930,253,556,0.001434,0.001773,62244231,30196655,0,0,73441,0,1,1 +1773660366.327691,0.60,4,3992.50,53.21,1647.95,2083.23,0.00,48430.586845,48630.812120,3378661,2994184,0.001135,0.001230,62244241,30196672,0,0,73443,0,1,1 +1773660371.327733,0.60,4,3992.50,53.21,1647.70,2083.46,0.00,3518407702099.120605,3518407702098.174805,3377158,2993630,0.000157,0.000210,62244253,30196687,0,0,73446,0,1,1 +1773660376.328341,0.70,4,3992.50,53.21,1640.77,2083.46,0.00,9.724989,10.705339,3378661,2994204,0.000000,0.000664,62244253,30196693,0,0,73448,0,1,1 +1773660381.327683,0.70,4,3992.50,53.23,1637.68,2083.89,0.00,3518900132290.435059,3518900132080.957520,205,0,0.000000,0.000030,62244253,30196696,0,0,73451,0,1,1 +1773660386.327712,0.65,4,3992.50,53.20,1638.53,2083.04,0.00,3518416970948.602539,0.000000,11,0,0.000000,0.000020,62244253,30196698,0,0,73453,0,1,1 +1773660391.327022,13.12,4,3992.50,53.47,1628.20,2093.36,0.00,48437.109886,48646.470007,3378661,2994303,40.071057,0.023090,62248650,30198180,0,0,73456,0,1,1 +1773660396.328311,0.70,4,3992.50,53.48,1627.75,2093.81,0.00,3517530449442.895020,3517530449233.564453,75,0,0.000008,0.000028,62248651,30198183,0,0,73458,0,1,1 +1773660401.325279,0.60,4,3992.50,53.48,1627.75,2093.81,0.00,0.000000,0.000000,75,0,0.000000,0.000030,62248651,30198186,0,0,73461,0,1,1 +1773660406.326502,0.85,4,3992.50,53.54,1630.63,2096.19,0.00,1.603807,10.672585,253,556,0.000062,0.000070,62248655,30198192,0,0,73463,0,1,1 +1773660411.325275,0.65,4,3992.50,53.52,1631.27,2095.55,0.00,48440.660497,48641.211961,3378661,2994444,0.001141,0.000662,62248679,30198210,0,0,73466,0,1,1 +1773660416.323435,0.75,4,3992.50,53.53,1631.02,2095.80,0.00,3519732438887.171387,3519732438675.398438,258,2,0.002042,0.001898,62248711,30198238,0,0,73468,0,1,1 +1773660421.323443,0.55,4,3992.50,53.33,1638.67,2088.15,0.00,3518431095255.333496,3518431095257.328613,205,0,0.000000,0.000030,62248711,30198241,0,0,73471,0,1,1 +1773660426.327561,0.65,4,3992.50,53.35,1638.20,2088.62,0.00,48390.402003,48599.951321,3378661,2994460,0.000000,0.000020,62248711,30198243,0,0,73473,0,1,1 +1773660431.323502,0.65,4,3992.50,53.35,1638.20,2088.62,0.00,3521295621471.638184,3521295621261.926270,11,0,0.000000,0.000030,62248711,30198246,0,0,73476,0,1,1 +1773660436.323462,1.05,4,3992.50,53.56,1625.50,2097.17,0.00,2.175408,0.000195,258,2,0.000107,0.000138,62248719,30198256,0,0,73478,0,1,1 +1773660441.328413,0.65,4,3992.50,53.35,1633.99,2088.68,0.00,3514956842728.765137,3514956842730.758301,205,0,0.000008,0.000681,62248720,30198264,0,0,73481,0,1,1 +1773660446.325451,0.70,4,3992.50,53.35,1633.75,2088.92,0.00,3520522666527.880859,0.000000,75,0,0.000000,0.000020,62248720,30198266,0,0,73483,0,1,1 +1773660451.323433,0.65,4,3992.50,53.35,1633.75,2088.92,0.00,0.126809,0.000000,205,0,0.000000,0.000030,62248720,30198269,0,0,73486,0,1,1 +1773660456.328193,20.28,4,3992.50,58.20,1443.95,2278.70,0.00,0.000000,0.000000,205,0,24.417354,0.019184,62251503,30199599,0,0,73488,0,1,1 +1773660461.324814,1.05,4,3992.50,53.38,1632.89,2089.77,0.00,3520817144665.107910,0.000000,11,0,15.635148,0.007283,62253116,30200073,0,0,73491,0,1,1 +1773660466.327695,0.90,4,3992.50,53.49,1628.47,2094.36,0.00,2.174138,0.000195,258,2,0.000000,0.000020,62253116,30200075,0,0,73493,0,1,1 +1773660471.324341,0.65,4,3992.50,53.51,1627.73,2095.10,0.00,48460.761741,48672.900135,3378661,2994715,0.000000,0.000030,62253116,30200078,0,0,73496,0,1,1 +1773660476.323426,0.60,4,3992.50,53.51,1627.73,2095.10,0.00,3519081067687.596680,3519081067686.649414,3377158,2994160,0.000000,0.000020,62253116,30200080,0,0,73498,0,1,1 +1773660481.327418,0.65,4,3992.50,53.51,1627.73,2095.10,0.00,3515630339558.856445,3515630339350.148438,11,0,0.000000,0.000030,62253116,30200083,0,0,73501,0,1,1 +1773660486.323630,0.55,4,3992.50,53.52,1627.49,2095.34,0.00,0.000000,0.000000,11,0,0.000000,0.000020,62253116,30200085,0,0,73503,0,1,1 +1773660491.327965,0.70,4,3992.50,53.52,1627.26,2095.57,0.00,0.000000,0.000000,11,0,0.000000,0.000030,62253116,30200088,0,0,73506,0,1,1 +1773660496.323456,0.85,4,3992.50,53.57,1625.57,2097.25,0.00,2.177354,0.000195,258,2,0.000000,0.000020,62253116,30200090,0,0,73508,0,1,1 +1773660501.327590,0.75,4,3992.50,53.30,1636.07,2086.76,0.00,3515530700283.642090,10.666182,253,556,0.000031,0.000055,62253118,30200095,0,0,73511,0,1,1 +1773660506.328048,0.60,4,3992.50,53.30,1636.07,2086.76,0.00,0.000000,0.000000,253,556,0.000142,0.000674,62253130,30200112,0,0,73513,0,1,1 +1773660511.327004,0.70,4,3992.50,53.30,1636.08,2086.75,0.00,3519171992990.149414,3519171992981.130371,11,0,0.000000,0.000191,62253130,30200116,0,0,73516,0,1,1 +1773660516.323417,0.65,4,3992.50,53.30,1636.08,2086.75,0.00,0.053554,0.000000,75,0,0.000000,0.000020,62253130,30200118,0,0,73518,0,1,1 +1773660521.328017,0.75,4,3992.50,53.30,1635.83,2087.00,0.00,3515202969759.394531,0.000000,11,0,0.000000,0.000030,62253130,30200121,0,0,73521,0,1,1 +1773660526.324154,15.12,4,3992.50,53.73,1619.56,2103.47,0.00,48458.142299,48667.333704,3377158,2994299,40.095356,0.021033,62257496,30201523,0,0,73523,0,1,1 +1773660531.323488,0.65,4,3992.50,53.74,1619.02,2103.93,0.00,3518905722465.314453,3518905722256.256836,11,0,0.000855,0.000598,62257514,30201539,0,0,73526,0,1,1 +1773660536.325818,0.60,4,3992.50,53.73,1619.42,2103.54,0.00,0.180189,0.000000,205,0,0.000000,0.000020,62257514,30201541,0,0,73528,0,1,1 +1773660541.328111,0.70,4,3992.50,53.47,1629.55,2093.41,0.00,48398.335436,48607.564222,3377158,2994404,0.000000,0.000030,62257514,30201544,0,0,73531,0,1,1 +1773660546.328021,0.65,4,3992.50,53.49,1628.57,2094.38,0.00,9.726347,10.678708,3378661,2994966,0.000000,0.000020,62257514,30201546,0,0,73533,0,1,1 +1773660551.327410,0.60,4,3992.50,53.49,1628.57,2094.38,0.00,3518867342690.845215,3518867342489.741699,253,556,0.000000,0.000030,62257514,30201549,0,0,73536,0,1,1 +1773660556.327710,0.90,4,3992.50,53.52,1625.28,2095.37,0.00,3518225598870.272949,3518225598861.075684,205,0,0.000000,0.000020,62257514,30201551,0,0,73538,0,1,1 +1773660561.327865,0.75,4,3992.50,53.49,1626.02,2094.33,0.00,48419.020136,48628.445371,3377158,2994480,0.000000,0.000030,62257514,30201554,0,0,73541,0,1,1 +1773660566.328022,0.60,4,3992.50,53.49,1626.02,2094.33,0.00,3518326789847.433105,3518326789638.188477,11,0,0.000000,0.000020,62257514,30201556,0,0,73543,0,1,1 +1773660571.325986,0.60,4,3992.50,53.38,1630.29,2090.06,0.00,48440.429984,48649.776855,3377158,2994489,0.000107,0.000631,62257522,30201570,0,0,73546,0,1,1 +1773660576.327643,0.50,4,3992.50,53.42,1628.82,2091.54,0.00,3517271645674.720215,3517271645465.348145,205,0,0.000066,0.000259,62257528,30201579,0,0,73548,0,1,1 +1773660581.328366,0.55,4,3992.50,53.43,1628.60,2091.75,0.00,0.000000,0.000000,205,0,0.000000,0.000030,62257528,30201582,0,0,73551,0,1,1 +1773660586.323426,0.95,4,3992.50,53.56,1623.84,2096.87,0.00,0.000000,0.000000,205,0,0.000000,0.000020,62257528,30201584,0,0,73553,0,1,1 +1773660591.323720,16.55,4,3992.50,54.93,1569.56,2150.80,0.00,48427.406274,48637.857003,3378661,2995117,40.059321,0.019954,62261835,30202945,0,0,73556,0,1,1 +1773660596.326202,1.10,4,3992.50,54.21,1597.84,2122.52,0.00,3516691355296.494141,3516691355086.315918,11,0,0.003083,0.001428,62261891,30202984,0,0,73558,0,1,1 +1773660601.323428,0.80,4,3992.50,53.83,1612.88,2107.48,0.00,2.176598,0.000195,258,2,0.000000,0.000030,62261891,30202987,0,0,73561,0,1,1 +1773660606.326817,0.95,4,3992.50,53.40,1629.81,2090.55,0.00,48395.456826,48607.993062,3378661,2995313,0.000000,0.000020,62261891,30202989,0,0,73563,0,1,1 +1773660611.327545,0.90,4,3992.50,53.27,1634.79,2085.57,0.00,3517924724060.770020,3517924723848.120605,258,2,0.000000,0.000030,62261891,30202992,0,0,73566,0,1,1 +1773660616.328273,0.90,4,3992.50,53.48,1626.66,2093.70,0.00,3517924582539.716309,3517924582541.711426,205,0,0.000000,0.000020,62261891,30202994,0,0,73568,0,1,1 +1773660621.327677,0.70,4,3992.50,53.38,1630.24,2090.12,0.00,3518857499111.453125,0.000000,75,0,0.000000,0.000030,62261891,30202997,0,0,73571,0,1,1 +1773660626.327785,0.70,4,3992.50,53.36,1631.02,2089.34,0.00,3518360383373.159668,0.000000,11,0,0.000000,0.000020,62261891,30202999,0,0,73573,0,1,1 +1773660631.326245,0.65,4,3992.50,53.37,1630.81,2089.54,0.00,0.000000,0.000000,11,0,0.000000,0.000030,62261891,30203002,0,0,73576,0,1,1 +1773660636.325324,0.60,4,3992.50,53.37,1630.82,2089.54,0.00,48429.631978,48639.335871,3377158,2994845,0.000056,0.000720,62261895,30203012,0,0,73578,0,1,1 +1773660641.323684,0.75,4,3992.50,53.27,1634.66,2085.70,0.00,3519591515385.451660,3519591515184.737793,253,556,0.000117,0.000170,62261905,30203025,0,0,73581,0,1,1 +1773660646.323537,1.05,4,3992.50,53.27,1631.43,2085.66,0.00,0.000000,0.000000,253,556,0.000000,0.000020,62261905,30203027,0,0,73583,0,1,1 +1773660651.327777,0.80,4,3992.50,53.07,1637.33,2077.71,0.00,48387.739455,48589.210111,3378661,2995435,0.000000,0.000030,62261905,30203030,0,0,73586,0,1,1 +1773660656.328043,13.98,4,3992.50,53.19,1632.57,2082.45,0.00,3518250128868.672363,3518250128657.971191,75,0,40.064744,0.030854,62266339,30205242,0,0,73588,0,1,1 +1773660661.323509,0.95,4,3992.50,53.19,1632.36,2082.67,0.00,3521630920323.018555,0.000000,11,0,0.003601,0.002527,62266409,30205304,0,0,73591,0,1,1 +1773660666.323474,0.60,4,3992.50,53.19,1632.36,2082.67,0.00,1.657726,10.675269,253,556,0.000205,0.000552,62266416,30205317,0,0,73593,0,1,1 +1773660671.323559,0.75,4,3992.50,53.19,1632.36,2082.67,0.00,0.000000,0.000000,253,556,0.000000,0.000030,62266416,30205320,0,0,73596,0,1,1 +1773660676.327928,0.90,4,3992.50,53.22,1632.86,2083.72,0.00,3515365559793.437012,3515365559784.427246,11,0,0.000000,0.000020,62266416,30205322,0,0,73598,0,1,1 +1773660681.327596,0.70,4,3992.50,53.03,1640.10,2076.43,0.00,0.180285,0.000000,205,0,0.000000,0.000030,62266416,30205325,0,0,73601,0,1,1 +1773660686.327567,0.60,4,3992.50,53.07,1638.62,2077.90,0.00,1.477450,10.675259,253,556,0.000000,0.000020,62266416,30205327,0,0,73603,0,1,1 +1773660691.323414,0.75,4,3992.50,53.07,1638.62,2077.90,0.00,48469.027714,48671.062796,3378661,2995648,0.000000,0.000030,62266416,30205330,0,0,73606,0,1,1 +1773660696.323568,0.70,4,3992.50,53.09,1637.88,2078.64,0.00,3518329154652.142090,3518329154651.202637,3377158,2995095,0.000000,0.000020,62266416,30205332,0,0,73608,0,1,1 +1773660701.323583,0.60,4,3992.50,53.10,1637.64,2078.89,0.00,3518426508779.741211,3518426508578.813477,253,556,0.000056,0.000569,62266420,30205342,0,0,73611,0,1,1 +1773660706.328229,1.00,4,3992.50,53.24,1630.64,2084.29,0.00,48383.812239,48585.532702,3378661,2995672,0.000171,0.000363,62266433,30205358,0,0,73613,0,1,1 +1773660711.327907,0.75,4,3992.50,53.27,1629.39,2085.45,0.00,0.000000,0.010157,3378661,2995683,0.001810,0.001592,62266460,30205379,0,0,73616,0,1,1 +1773660716.325089,0.70,4,3992.50,53.07,1637.05,2077.80,0.00,3520420761951.707520,3520420761738.476562,258,2,0.002295,0.001654,62266491,30205409,0,0,73618,0,1,1 +1773660721.326154,17.64,4,3992.50,53.46,1621.93,2092.90,0.00,3517688442161.678223,3517688442163.853027,11,0,40.053939,0.024349,62270861,30207120,0,0,73621,0,1,1 +1773660726.328182,0.85,4,3992.50,53.45,1622.07,2092.76,0.00,48410.790180,48621.757619,3378661,2995823,0.003084,0.001407,62270917,30207157,0,0,73623,0,1,1 +1773660731.326719,0.60,4,3992.50,53.45,1622.07,2092.76,0.00,3519466810033.741699,3519466809820.451172,258,2,0.000000,0.000030,62270917,30207160,0,0,73626,0,1,1 +1773660736.327557,0.90,4,3992.50,53.41,1629.40,2091.27,0.00,3517848059387.987305,3517848059390.162109,11,0,0.000000,0.000020,62270917,30207162,0,0,73628,0,1,1 +1773660741.327687,0.70,4,3992.50,53.22,1636.83,2083.85,0.00,0.000000,0.000000,11,0,0.000000,0.000030,62270917,30207165,0,0,73631,0,1,1 +1773660746.327936,0.60,4,3992.50,53.25,1635.85,2084.83,0.00,1.657632,10.674662,253,556,0.000000,0.000020,62270917,30207167,0,0,73633,0,1,1 +1773660751.327873,0.55,4,3992.50,53.26,1635.61,2085.06,0.00,0.000000,0.000000,253,556,0.000000,0.000030,62270917,30207170,0,0,73636,0,1,1 +1773660756.328208,0.60,4,3992.50,53.24,1636.03,2084.65,0.00,3518201516118.293457,3518201516109.276855,11,0,0.000025,0.000051,62270919,30207174,0,0,73638,0,1,1 +1773660761.323458,0.65,4,3992.50,53.24,1636.32,2084.36,0.00,48466.753119,48677.188116,3377158,2995350,0.000064,0.000094,62270924,30207182,0,0,73641,0,1,1 +1773660766.327839,0.85,4,3992.50,53.44,1628.50,2092.44,0.00,3515356947053.633789,3515356946843.582520,11,0,0.000056,0.000076,62270928,30207188,0,0,73643,0,1,1 +1773660771.323448,0.75,4,3992.50,53.44,1628.43,2092.44,0.00,0.180432,0.000000,205,0,0.000101,0.000799,62270936,30207203,0,0,73646,0,1,1 +1773660776.327759,0.55,4,3992.50,53.44,1628.43,2092.44,0.00,48388.529980,48599.754603,3378661,2995940,0.000000,0.000020,62270936,30207205,0,0,73648,0,1,1 +1773660781.327641,0.65,4,3992.50,53.46,1627.95,2092.91,0.00,3518520023006.719238,3518520022795.487793,11,0,0.000000,0.000030,62270936,30207208,0,0,73651,0,1,1 +1773660786.327553,18.18,4,3992.50,58.34,1436.88,2283.99,0.00,2.175429,0.000195,258,2,36.259155,0.019822,62275011,30208567,0,0,73653,0,1,1 +1773660791.323534,1.00,4,3992.50,54.18,1599.75,2121.11,0.00,3521267753907.802246,3521267753909.799316,205,0,3.811948,0.002384,62275487,30208673,0,0,73656,0,1,1 +1773660796.327456,0.85,4,3992.50,53.73,1613.20,2103.67,0.00,1.993553,0.000195,258,2,0.000008,0.000028,62275488,30208676,0,0,73658,0,1,1 +1773660801.323503,0.65,4,3992.50,53.42,1625.49,2091.38,0.00,0.000000,0.000000,258,2,0.000000,0.000030,62275488,30208679,0,0,73661,0,1,1 +1773660806.323588,0.70,4,3992.50,53.42,1625.44,2091.44,0.00,3518377772221.823242,3518377772223.818359,205,0,0.000000,0.000020,62275488,30208681,0,0,73663,0,1,1 +1773660811.323622,0.60,4,3992.50,53.40,1626.02,2090.85,0.00,3518413479295.149414,0.000000,11,0,0.000000,0.000030,62275488,30208684,0,0,73666,0,1,1 +1773660816.328033,0.60,4,3992.50,53.41,1625.78,2091.10,0.00,1.656254,10.665786,253,556,0.000000,0.000020,62275488,30208686,0,0,73668,0,1,1 +1773660821.326739,0.80,4,3992.50,53.42,1625.56,2091.32,0.00,48441.305011,48643.800174,3378661,2996162,0.000000,0.000030,62275488,30208689,0,0,73671,0,1,1 +1773660826.326048,0.90,4,3992.50,53.43,1631.71,2092.01,0.00,3518923622086.222656,3518923621883.751953,253,556,0.000000,0.000020,62275488,30208691,0,0,73673,0,1,1 +1773660831.328228,0.75,4,3992.50,53.45,1630.93,2092.75,0.00,3516904196672.640137,3516904196663.626953,11,0,0.000031,0.000055,62275490,30208696,0,0,73676,0,1,1 +1773660836.327621,0.75,4,3992.50,53.45,1630.93,2092.75,0.00,48436.309617,48647.842423,3378661,2996195,0.000142,0.000835,62275502,30208714,0,0,73678,0,1,1 +1773660841.323502,0.65,4,3992.50,53.46,1630.68,2092.99,0.00,3521337997847.875977,3521337997636.194336,11,0,0.000000,0.000030,62275502,30208717,0,0,73681,0,1,1 +1773660846.327422,0.70,4,3992.50,53.46,1630.45,2093.22,0.00,0.053474,0.000000,75,0,0.000000,0.000020,62275502,30208719,0,0,73683,0,1,1 +1773660851.324579,1.00,4,3992.50,53.28,1637.85,2085.83,0.00,3520438808582.523926,0.000000,11,0,0.002335,0.001344,62275532,30208748,0,0,73686,0,1,1 +1773660856.324787,17.49,4,3992.50,53.58,1625.31,2097.95,0.00,0.180266,0.000000,205,0,40.061864,0.018569,62279939,30210002,0,0,73688,0,1,1 +1773660861.323469,0.70,4,3992.50,53.39,1632.96,2090.31,0.00,48443.014007,48654.945922,3378661,2996375,0.000000,0.000030,62279939,30210005,0,0,73691,0,1,1 +1773660866.323464,0.65,4,3992.50,53.39,1632.96,2090.31,0.00,3518440699300.605469,3518440699088.729492,205,0,0.000000,0.000020,62279939,30210007,0,0,73693,0,1,1 +1773660871.324626,0.70,4,3992.50,53.40,1632.73,2090.54,0.00,48409.273464,48620.155998,3377158,2995822,0.000000,0.000030,62279939,30210010,0,0,73696,0,1,1 +1773660876.328207,0.55,4,3992.50,53.21,1640.13,2083.14,0.00,3515919392305.060547,3515919392092.286621,258,2,0.000000,0.000020,62279939,30210012,0,0,73698,0,1,1 +1773660881.327837,0.65,4,3992.50,53.20,1640.24,2083.04,0.00,3518697048472.101562,3518697048474.223633,75,0,0.000000,0.000030,62279939,30210015,0,0,73701,0,1,1 +1773660886.327870,1.00,4,3992.50,53.25,1634.51,2084.95,0.00,0.000000,0.000000,75,0,0.000000,0.000020,62279939,30210017,0,0,73703,0,1,1 +1773660891.323422,0.70,4,3992.50,53.26,1634.32,2085.16,0.00,3521569621819.395508,0.000000,11,0,0.000000,0.000030,62279939,30210020,0,0,73706,0,1,1 +1773660896.327743,0.85,4,3992.50,53.26,1634.32,2085.16,0.00,0.053469,0.000000,75,0,0.000000,0.000020,62279939,30210022,0,0,73708,0,1,1 +1773660901.328122,0.65,4,3992.50,53.26,1634.33,2085.16,0.00,0.126748,0.000000,205,0,0.000157,0.000854,62279951,30210041,0,0,73711,0,1,1 +1773660906.325587,0.60,4,3992.50,53.25,1634.54,2084.94,0.00,3520221872662.868652,0.000000,11,0,0.000016,0.000036,62279953,30210045,0,0,73713,0,1,1 +1773660911.326744,0.70,4,3992.50,53.26,1634.31,2085.18,0.00,48409.541990,48620.379621,3377160,2995962,0.000000,0.000030,62279953,30210048,0,0,73716,0,1,1 +1773660916.323501,0.85,4,3992.50,53.47,1625.98,2093.50,0.00,9.732484,10.716716,3378663,2996535,0.000000,0.000020,62279953,30210050,0,0,73718,0,1,1 +1773660921.323415,16.89,4,3992.50,58.43,1431.81,2287.67,0.00,3518497678614.458008,3518497678411.602051,253,556,20.435855,0.018965,62282342,30211361,0,0,73721,0,1,1 +1773660926.323431,2.05,4,3992.50,54.46,1587.41,2132.07,0.00,3518426123728.197266,3518426123719.179688,11,0,19.632897,0.012036,62284473,30212207,0,0,73723,0,1,1 +1773660931.325271,0.65,4,3992.50,53.83,1612.07,2107.41,0.00,0.180207,0.000000,205,0,0.000000,0.000030,62284473,30212210,0,0,73726,0,1,1 +1773660936.328042,0.75,4,3992.50,53.55,1622.72,2096.76,0.00,0.000000,0.000000,205,0,0.000000,0.000020,62284473,30212212,0,0,73728,0,1,1 +1773660941.327438,0.55,4,3992.50,53.46,1626.44,2093.04,0.00,3518862606294.866211,0.000000,75,0,0.000000,0.000030,62284473,30212215,0,0,73731,0,1,1 +1773660946.323495,0.95,4,3992.50,53.46,1626.31,2093.12,0.00,1.605465,10.683619,253,556,0.000000,0.000020,62284473,30212217,0,0,73733,0,1,1 +1773660951.328283,0.80,4,3992.50,53.12,1639.85,2079.58,0.00,3515071411304.846680,3515071411295.837891,11,0,0.000000,0.000030,62284473,30212220,0,0,73736,0,1,1 +1773660956.327484,0.70,4,3992.50,53.13,1639.37,2080.06,0.00,0.053524,0.000000,75,0,0.000000,0.000020,62284473,30212222,0,0,73738,0,1,1 +1773660961.323472,0.65,4,3992.50,53.14,1638.94,2080.49,0.00,1.605487,10.683768,253,556,0.001448,0.001788,62284490,30212250,0,0,73741,0,1,1 +1773660966.328241,0.75,4,3992.50,53.14,1638.94,2080.49,0.00,48372.945865,48574.927710,3377160,2996224,0.000244,0.001228,62284500,30212270,0,0,73743,0,1,1 +1773660971.327815,0.60,4,3992.50,53.02,1643.75,2075.68,0.00,0.000000,0.006251,3377160,2996229,0.000126,0.000185,62284510,30212283,0,0,73746,0,1,1 +1773660976.327447,0.95,4,3992.50,53.19,1634.35,2082.65,0.00,3518696232919.131836,3518696232716.936035,253,556,0.000000,0.000020,62284510,30212285,0,0,73748,0,1,1 +1773660981.323477,0.75,4,3992.50,53.00,1641.07,2075.01,0.00,3521233285722.676270,3521233285713.598145,75,0,0.000000,0.000030,62284510,30212288,0,0,73751,0,1,1 +1773660986.328363,15.28,4,3992.50,58.29,1434.04,2282.04,0.00,3515002061341.634766,0.000000,11,0,11.413669,0.016345,62286115,30213401,0,0,73753,0,1,1 +1773660991.325308,3.51,4,3992.50,54.49,1582.57,2133.52,0.00,48460.078024,48672.506342,3378663,2996948,28.661391,0.011136,62289166,30214172,0,0,73756,0,1,1 +1773660996.323508,0.70,4,3992.50,53.87,1606.93,2109.15,0.00,3519704478622.178223,3519704478409.802734,11,0,0.000000,0.000020,62289166,30214174,0,0,73758,0,1,1 +1773661001.323969,0.75,4,3992.50,53.59,1618.06,2098.03,0.00,0.180257,0.000000,205,0,0.000000,0.000030,62289166,30214177,0,0,73761,0,1,1 +1773661006.326457,0.95,4,3992.50,53.62,1616.77,2099.46,0.00,0.000000,0.000000,205,0,0.000062,0.000070,62289170,30214183,0,0,73763,0,1,1 +1773661011.324321,0.70,4,3992.50,53.62,1617.04,2099.14,0.00,1.995970,0.000195,258,2,0.001819,0.001593,62289198,30214204,0,0,73766,0,1,1 +1773661016.323541,0.85,4,3992.50,53.61,1617.41,2098.77,0.00,0.000000,0.000000,258,2,0.002029,0.001898,62289229,30214232,0,0,73768,0,1,1 +1773661021.323542,0.65,4,3992.50,53.51,1621.22,2094.96,0.00,48418.561508,48632.204732,3377160,2996466,0.000000,0.000030,62289229,30214235,0,0,73771,0,1,1 +1773661026.323482,0.65,4,3992.50,53.51,1621.22,2094.96,0.00,9.726287,10.681767,3378663,2997029,0.000013,0.000020,62289230,30214237,0,0,73773,0,1,1 +1773661031.327897,0.70,4,3992.50,53.51,1621.22,2094.96,0.00,3515333609508.561523,3515333609305.334961,253,556,0.000031,0.000698,62289232,30214246,0,0,73776,0,1,1 +1773661036.328148,0.90,4,3992.50,53.70,1613.16,2102.59,0.00,48426.378359,48629.809339,3378663,2997049,0.000076,0.000113,62289238,30214254,0,0,73778,0,1,1 +1773661041.327711,0.65,4,3992.50,53.52,1620.30,2095.39,0.00,3518744811349.127930,3518744811136.596680,75,0,0.000000,0.000030,62289238,30214257,0,0,73781,0,1,1 +1773661046.327873,0.80,4,3992.50,53.45,1622.97,2092.73,0.00,2.121806,0.000195,258,2,0.000000,0.000020,62289238,30214259,0,0,73783,0,1,1 +1773661051.327809,11.72,4,3992.50,58.58,1422.21,2293.46,0.00,3518482696529.075195,3518482696531.197266,75,0,9.957966,0.012343,62290517,30215023,0,0,73786,0,1,1 +1773661056.323610,5.06,4,3992.50,54.53,1580.62,2135.06,0.00,48461.387519,48673.252054,3377160,2996640,30.132260,0.010699,62293533,30215739,0,0,73788,0,1,1 +1773661061.327551,0.65,4,3992.50,53.95,1603.40,2112.28,0.00,3515666001425.085938,3515666001213.619141,11,0,0.000056,0.000086,62293537,30215746,0,0,73791,0,1,1 +1773661066.328335,0.80,4,3992.50,53.80,1608.10,2106.47,0.00,0.180245,0.000000,205,0,0.000000,0.000020,62293537,30215748,0,0,73793,0,1,1 +1773661071.325130,0.65,4,3992.50,53.60,1615.97,2098.63,0.00,3520693856758.165527,0.000000,11,0,0.000000,0.000030,62293537,30215751,0,0,73796,0,1,1 +1773661076.323548,0.70,4,3992.50,53.61,1615.73,2098.87,0.00,48445.797333,48658.563371,3378663,2997270,0.000000,0.000020,62293537,30215753,0,0,73798,0,1,1 +1773661081.323549,0.70,4,3992.50,53.61,1615.73,2098.87,0.00,3518436693204.335938,3518436692991.636719,11,0,0.000000,0.000030,62293537,30215756,0,0,73801,0,1,1 +1773661086.323425,0.65,4,3992.50,53.61,1615.73,2098.87,0.00,1.657756,10.675459,253,556,0.000000,0.000020,62293537,30215758,0,0,73803,0,1,1 +1773661091.323577,0.60,4,3992.50,53.61,1615.48,2099.11,0.00,3518330250938.247559,3518330250929.230469,11,0,0.000000,0.000030,62293537,30215761,0,0,73806,0,1,1 +1773661096.323553,0.90,4,3992.50,53.81,1612.33,2106.70,0.00,48430.703575,48643.448637,3378663,2997295,0.000031,0.000689,62293539,30215769,0,0,73808,0,1,1 +1773661101.328144,0.70,4,3992.50,53.64,1618.95,2100.09,0.00,3515210048583.276367,3515210048370.673828,75,0,0.000134,0.000193,62293550,30215783,0,0,73811,0,1,1 +1773661106.327324,0.80,4,3992.50,53.66,1618.08,2100.96,0.00,0.126779,0.000000,205,0,0.000000,0.000020,62293550,30215785,0,0,73813,0,1,1 +1773661111.328056,0.65,4,3992.50,53.66,1618.08,2100.96,0.00,48413.599110,48625.479163,3377199,2996781,0.000000,0.000030,62293550,30215788,0,0,73816,0,1,1 +1773661116.323398,7.79,4,3992.50,58.41,1432.18,2286.85,0.00,3521717886489.514648,3521717886277.586426,11,0,3.214070,0.007039,62294157,30216180,0,0,73818,0,1,1 +1773661121.323425,9.07,4,3992.50,54.44,1587.61,2131.43,0.00,0.053515,0.000000,75,0,36.853295,0.019049,62297885,30217561,0,0,73821,0,1,1 +1773661126.328492,1.05,4,3992.50,54.52,1584.79,2134.45,0.00,2.119727,0.000195,258,2,0.000000,0.000020,62297885,30217563,0,0,73823,0,1,1 +1773661131.326761,0.60,4,3992.50,54.00,1604.89,2114.15,0.00,0.000000,0.000000,258,2,0.000000,0.000030,62297885,30217566,0,0,73826,0,1,1 +1773661136.327800,0.70,4,3992.50,53.98,1605.56,2113.49,0.00,3517706543945.815430,10.672783,253,556,0.000000,0.000020,62297885,30217568,0,0,73828,0,1,1 +1773661141.328246,0.65,4,3992.50,53.97,1605.96,2113.09,0.00,0.000000,0.000000,253,556,0.000000,0.000030,62297885,30217571,0,0,73831,0,1,1 +1773661146.324592,0.70,4,3992.50,53.98,1605.71,2113.33,0.00,3521010061636.124512,3521010061627.101074,11,0,0.000000,0.000020,62297885,30217573,0,0,73833,0,1,1 +1773661151.327406,0.65,4,3992.50,53.96,1606.59,2112.46,0.00,0.180172,0.000000,205,0,0.000000,0.000030,62297885,30217576,0,0,73836,0,1,1 +1773661156.323541,0.85,4,3992.50,53.97,1611.45,2113.15,0.00,3521158970400.078125,0.000000,11,0,0.000000,0.000020,62297885,30217578,0,0,73838,0,1,1 +1773661161.327545,0.85,4,3992.50,53.94,1612.56,2112.05,0.00,0.053473,0.000000,75,0,0.000031,0.000698,62297887,30217587,0,0,73841,0,1,1 +1773661166.326945,0.55,4,3992.50,53.94,1612.56,2112.05,0.00,2.122129,0.000195,258,2,0.000134,0.000183,62297898,30217600,0,0,73843,0,1,1 +1773661171.326740,0.60,4,3992.50,53.94,1612.56,2112.05,0.00,0.000000,0.000000,258,2,0.000000,0.000030,62297898,30217603,0,0,73846,0,1,1 +1773661176.327392,0.70,4,3992.50,53.95,1612.34,2112.27,0.00,3517978244292.710938,3517978244294.706055,205,0,0.000000,0.000020,62297898,30217605,0,0,73848,0,1,1 +1773661181.328543,2.76,4,3992.50,58.39,1438.70,2285.91,0.00,48409.535772,48621.698559,3377199,2997070,0.003754,0.002699,62297956,30217653,0,0,73851,0,1,1 +1773661186.323488,13.70,4,3992.50,54.55,1587.10,2135.67,0.00,0.000000,0.148197,3377199,2997193,40.102881,0.026153,62302367,30219596,0,0,73853,0,1,1 +1773661191.323421,0.70,4,3992.50,53.79,1616.70,2106.07,0.00,3518484584708.665039,3518484584496.482422,11,0,0.000000,0.000030,62302367,30219599,0,0,73856,0,1,1 +1773661196.323434,0.95,4,3992.50,53.55,1626.34,2096.44,0.00,2.175385,0.000195,258,2,0.000000,0.000020,62302367,30219601,0,0,73858,0,1,1 +1773661201.327955,0.65,4,3992.50,53.53,1626.77,2096.01,0.00,0.000000,0.000000,258,2,0.000000,0.000030,62302367,30219604,0,0,73861,0,1,1 +1773661206.324589,0.65,4,3992.50,53.53,1626.79,2095.98,0.00,3520807129647.056152,3520807129649.179199,75,0,0.000000,0.000020,62302367,30219606,0,0,73863,0,1,1 +1773661211.326707,0.65,4,3992.50,53.53,1626.79,2095.98,0.00,3516947254178.914062,0.000000,11,0,0.000000,0.000030,62302367,30219609,0,0,73866,0,1,1 +1773661216.323442,0.95,4,3992.50,53.31,1629.80,2087.16,0.00,48452.513202,48664.979130,3377205,2997312,0.000000,0.000020,62302367,30219611,0,0,73868,0,1,1 +1773661221.327426,0.65,4,3992.50,53.33,1628.52,2087.89,0.00,0.000000,0.011709,3377205,2997322,0.000000,0.000030,62302367,30219614,0,0,73871,0,1,1 +1773661226.328266,0.70,4,3992.50,53.33,1628.52,2087.90,0.00,3517846012472.179688,3517846012259.696289,205,0,0.000031,0.000689,62302369,30219622,0,0,73873,0,1,1 +1773661231.323423,0.65,4,3992.50,53.33,1628.52,2087.90,0.00,1.997052,0.000196,258,2,0.000126,0.000185,62302379,30219635,0,0,73876,0,1,1 +1773661236.323421,0.60,4,3992.50,53.33,1628.52,2087.89,0.00,0.000000,0.000000,258,2,0.000008,0.000028,62302380,30219638,0,0,73878,0,1,1 +1773661241.327966,0.75,4,3992.50,53.22,1632.61,2083.80,0.00,48384.436428,48599.719651,3378708,2997895,0.000000,0.000030,62302380,30219641,0,0,73881,0,1,1 +1773661246.324293,1.25,4,3992.50,53.26,1636.63,2085.25,0.00,3521023993403.788574,3521023993199.352539,253,556,0.002236,0.000738,62302404,30219660,0,0,73883,0,1,1 +1773661251.323662,16.28,4,3992.50,54.53,1586.97,2134.95,0.00,0.517741,3518881349408.474609,258,2,40.069072,0.023194,62306848,30221243,0,0,73886,0,1,1 +1773661256.323428,0.75,4,3992.50,53.85,1613.62,2108.29,0.00,3518601444531.147949,10.675498,253,556,0.000000,0.000020,62306848,30221245,0,0,73888,0,1,1 +1773661261.327678,0.75,4,3992.50,53.51,1627.01,2094.91,0.00,0.000000,0.000000,253,556,0.001433,0.001785,62306864,30221273,0,0,73891,0,1,1 +1773661266.327475,0.70,4,3992.50,53.55,1625.45,2096.47,0.00,3518580647340.211914,3518580647331.194336,11,0,0.000213,0.000560,62306872,30221287,0,0,73893,0,1,1 +1773661271.323461,0.75,4,3992.50,53.55,1625.45,2096.47,0.00,1.659047,10.683771,253,556,0.000000,0.000030,62306872,30221290,0,0,73896,0,1,1 +1773661276.325534,0.95,4,3992.50,53.83,1608.75,2107.71,0.00,3516979034204.351074,3516979034195.157227,205,0,0.000000,0.000020,62306872,30221292,0,0,73898,0,1,1 +1773661281.327428,0.70,4,3992.50,53.83,1608.76,2107.71,0.00,0.000000,0.000000,205,0,0.000000,0.000030,62306872,30221295,0,0,73901,0,1,1 +1773661286.325959,0.60,4,3992.50,53.64,1616.39,2100.08,0.00,3519471000697.409180,0.000000,11,0,0.000000,0.000020,62306872,30221297,0,0,73903,0,1,1 +1773661291.328039,0.70,4,3992.50,53.64,1616.17,2100.30,0.00,48400.729725,48613.288466,3377205,2997584,0.000000,0.000673,62306872,30221304,0,0,73906,0,1,1 +1773661296.324583,1.50,4,3992.50,53.50,1621.73,2094.74,0.00,3520871176732.271973,3520871176519.424316,75,0,0.000157,0.000201,62306884,30221318,0,0,73908,0,1,1 +1773661301.323499,0.55,4,3992.50,53.50,1621.73,2094.74,0.00,0.000000,0.000000,75,0,0.000016,0.000046,62306886,30221323,0,0,73911,0,1,1 +1773661306.323663,0.95,4,3992.50,53.57,1622.53,2097.31,0.00,0.126754,0.000000,205,0,0.000062,0.000070,62306890,30221329,0,0,73913,0,1,1 +1773661311.328210,1.10,4,3992.50,53.58,1620.09,2097.75,0.00,1.476099,10.665495,253,556,0.003346,0.001363,62306936,30221363,0,0,73916,0,1,1 +1773661316.325596,17.00,4,3992.50,53.42,1626.32,2091.53,0.00,0.000000,0.000000,253,556,40.085805,0.028697,62311268,30223149,0,0,73918,0,1,1 +1773661321.324810,0.75,4,3992.50,53.42,1626.32,2091.52,0.00,48426.818770,48630.633031,3377205,2997750,0.000000,0.000030,62311268,30223152,0,0,73921,0,1,1 +1773661326.328032,0.55,4,3992.50,53.42,1626.32,2091.52,0.00,9.719909,10.695062,3378708,2998340,0.000000,0.000020,62311268,30223154,0,0,73923,0,1,1 +1773661331.328048,0.65,4,3992.50,53.43,1626.08,2091.77,0.00,3518425715015.415527,3518425714810.658203,253,556,0.000000,0.000030,62311268,30223157,0,0,73926,0,1,1 +1773661336.327661,1.00,4,3992.50,53.47,1624.36,2093.48,0.00,48432.680286,48637.524454,3378708,2998371,0.000000,0.000020,62311268,30223159,0,0,73928,0,1,1 +1773661341.323658,0.55,4,3992.50,53.48,1623.84,2093.88,0.00,3521256512055.117188,3521256512054.175293,3377205,2997818,0.000000,0.000030,62311268,30223162,0,0,73931,0,1,1 +1773661346.327690,0.70,4,3992.50,53.29,1631.24,2086.48,0.00,3515602073482.217285,3515602073269.483887,11,0,0.000000,0.000020,62311268,30223164,0,0,73933,0,1,1 +1773661351.327329,0.65,4,3992.50,53.29,1631.24,2086.48,0.00,0.000000,0.000000,11,0,0.000000,0.000030,62311268,30223167,0,0,73936,0,1,1 +1773661356.323503,0.70,4,3992.50,53.29,1631.25,2086.48,0.00,0.000000,0.000000,11,0,0.000025,0.000695,62311270,30223175,0,0,73938,0,1,1 +1773661361.327985,0.70,4,3992.50,53.29,1631.25,2086.48,0.00,48387.223174,48600.929000,3378708,2998419,0.000252,0.000300,62311289,30223197,0,0,73941,0,1,1 +1773661366.328287,0.95,4,3992.50,53.89,1607.75,2110.06,0.00,3518224161532.710938,3518224161318.826660,11,0,0.000000,0.000020,62311289,30223199,0,0,73943,0,1,1 +1773661371.327602,0.65,4,3992.50,53.76,1612.98,2104.75,0.00,48427.500032,48640.518769,3377205,2997890,0.000000,0.000030,62311289,30223202,0,0,73946,0,1,1 +1773661376.323498,0.85,4,3992.50,53.55,1621.21,2096.50,0.00,3521327989040.813477,3521327988827.648438,11,0,0.002223,0.000738,62311312,30223221,0,0,73948,0,1,1 +1773661381.327587,16.44,4,3992.50,54.49,1584.33,2133.40,0.00,1.656360,10.666470,253,556,40.030998,0.024632,62315650,30224870,0,0,73951,0,1,1 +1773661386.324447,0.75,4,3992.50,53.58,1620.04,2097.69,0.00,3520648198482.337891,3520648198473.314941,11,0,0.000008,0.000028,62315651,30224873,0,0,73953,0,1,1 +1773661391.323430,0.75,4,3992.50,52.89,1646.86,2070.88,0.00,1.658052,10.677368,253,556,0.000000,0.000030,62315651,30224876,0,0,73956,0,1,1 +1773661396.328276,0.85,4,3992.50,53.19,1635.42,2082.36,0.00,3515029936406.053223,3515029936396.864746,205,0,0.000000,0.000020,62315651,30224878,0,0,73958,0,1,1 +1773661401.327540,0.65,4,3992.50,53.19,1635.43,2082.36,0.00,3518955496835.842773,0.000000,75,0,0.000000,0.000030,62315651,30224881,0,0,73961,0,1,1 +1773661406.323591,0.75,4,3992.50,53.05,1640.93,2076.85,0.00,0.000000,0.000000,75,0,0.000000,0.000020,62315651,30224883,0,0,73963,0,1,1 +1773661411.323505,0.70,4,3992.50,53.05,1640.93,2076.85,0.00,1.604227,10.675378,253,556,0.000000,0.000030,62315651,30224886,0,0,73966,0,1,1 +1773661416.323665,0.70,4,3992.50,53.06,1640.20,2077.59,0.00,3518324624604.603027,3518324624595.532715,75,0,0.000000,0.000020,62315651,30224888,0,0,73968,0,1,1 +1773661421.323426,0.60,4,3992.50,53.07,1639.95,2077.85,0.00,3518605197651.098145,0.000000,11,0,0.000000,0.000674,62315651,30224895,0,0,73971,0,1,1 +1773661426.323407,0.90,4,3992.50,53.47,1623.78,2093.31,0.00,0.000000,0.000000,11,0,0.000157,0.000200,62315663,30224909,0,0,73973,0,1,1 +1773661431.325242,0.75,4,3992.50,53.38,1627.18,2089.94,0.00,0.000000,0.000000,11,0,0.000016,0.000046,62315665,30224914,0,0,73976,0,1,1 +1773661436.325005,0.65,4,3992.50,53.38,1627.14,2089.98,0.00,0.053518,0.000000,75,0,0.000000,0.000020,62315665,30224916,0,0,73978,0,1,1 +1773661441.323420,0.90,4,3992.50,53.33,1629.05,2088.06,0.00,48445.890934,48660.368085,3378708,2998738,0.002197,0.000408,62315686,30224933,0,0,73981,0,1,1 +1773661446.327898,15.06,4,3992.50,54.10,1599.00,2118.11,0.00,3515289072151.072266,3515289071945.917969,253,556,40.028578,0.025166,62320203,30226663,0,0,73983,0,1,1 +1773661451.324765,0.75,4,3992.50,53.50,1622.57,2094.55,0.00,3520643362306.033691,3520643362296.957031,75,0,0.000619,0.000283,62320215,30226673,0,0,73986,0,1,1 +1773661456.327550,0.95,4,3992.50,53.58,1619.44,2097.66,0.00,0.126687,0.000000,205,0,0.000000,0.000020,62320215,30226675,0,0,73988,0,1,1 +1773661461.323418,0.55,4,3992.50,53.58,1619.42,2097.66,0.00,1.996767,0.000195,258,2,0.000000,0.000030,62320215,30226678,0,0,73991,0,1,1 +1773661466.328310,0.70,4,3992.50,53.39,1626.57,2090.50,0.00,3514998655121.312500,10.664567,253,556,0.000000,0.000020,62320215,30226680,0,0,73993,0,1,1 +1773661471.325894,0.65,4,3992.50,53.20,1634.20,2082.87,0.00,0.000000,0.000000,253,556,0.000000,0.000030,62320215,30226683,0,0,73996,0,1,1 +1773661476.323450,0.60,4,3992.50,53.20,1634.20,2082.87,0.00,0.517929,3520157633817.720703,258,2,0.000000,0.000020,62320215,30226685,0,0,73998,0,1,1 +1773661481.323421,0.80,4,3992.50,53.20,1633.99,2083.09,0.00,48418.967911,48634.803234,3377205,2998417,0.000000,0.000030,62320215,30226688,0,0,74001,0,1,1 +1773661486.327763,0.95,4,3992.50,53.40,1629.18,2090.92,0.00,3515384683040.691406,3515384682827.037598,205,0,0.000000,0.000663,62320215,30226694,0,0,74003,0,1,1 +1773661491.323484,0.75,4,3992.50,53.40,1629.18,2090.92,0.00,48471.894376,48686.906612,3378708,2998996,0.000132,0.000179,62320225,30226707,0,0,74006,0,1,1 +1773661496.328154,0.90,4,3992.50,53.40,1629.19,2090.91,0.00,3515154266490.779297,3515154266285.340820,253,556,0.000041,0.000067,62320229,30226713,0,0,74008,0,1,1 +1773661501.327459,0.85,4,3992.50,53.41,1628.95,2091.15,0.00,3518926122846.768555,3518926122837.750000,11,0,0.000000,0.000030,62320229,30226716,0,0,74011,0,1,1 +1773661506.324241,0.95,4,3992.50,53.42,1628.71,2091.38,0.00,0.180390,0.000000,205,0,0.000000,0.000020,62320229,30226718,0,0,74013,0,1,1 +1773661511.327700,16.93,4,3992.50,54.65,1580.58,2139.50,0.00,48387.203810,48601.027733,3377205,2998565,40.038215,0.024183,62324679,30228342,0,0,74016,0,1,1 +1773661516.323500,1.05,4,3992.50,54.08,1602.03,2117.23,0.00,3521395446746.256348,3521395446532.104492,205,0,0.000000,0.000020,62324679,30228344,0,0,74018,0,1,1 +1773661521.328019,0.70,4,3992.50,53.60,1619.45,2098.45,0.00,0.000000,0.000000,205,0,0.000000,0.000030,62324679,30228347,0,0,74021,0,1,1 +1773661526.324721,0.65,4,3992.50,53.50,1623.09,2094.80,0.00,3520759706189.285156,0.000000,11,0,0.000000,0.000020,62324679,30228349,0,0,74023,0,1,1 +1773661531.323502,0.70,4,3992.50,53.49,1623.71,2094.17,0.00,48432.673408,48646.743277,3377205,2998743,0.000000,0.000030,62324679,30228352,0,0,74026,0,1,1 +1773661536.327461,0.60,4,3992.50,53.37,1628.20,2089.69,0.00,3515653215933.625000,3515653215717.603516,258,2,0.000000,0.000020,62324679,30228354,0,0,74028,0,1,1 +1773661541.323509,0.65,4,3992.50,53.37,1628.20,2089.69,0.00,3521220231347.900391,3521220231350.077148,11,0,0.000000,0.000030,62324679,30228357,0,0,74031,0,1,1 +1773661546.325567,0.90,4,3992.50,53.37,1627.55,2089.62,0.00,2.174496,0.000195,258,2,0.000000,0.000020,62324679,30228359,0,0,74033,0,1,1 +1773661551.323411,0.65,4,3992.50,53.30,1630.37,2086.82,0.00,48449.307229,48666.609426,3378708,2999350,0.000000,0.000674,62324679,30228366,0,0,74036,0,1,1 +1773661556.323453,0.60,4,3992.50,53.31,1630.14,2087.04,0.00,3518407848596.822266,3518407848381.790527,11,0,0.000157,0.000200,62324691,30228380,0,0,74038,0,1,1 +1773661561.325347,0.80,4,3992.50,53.33,1629.16,2088.02,0.00,1.657087,10.671153,253,556,0.000520,0.001124,62324706,30228406,0,0,74041,0,1,1 +1773661566.324015,0.70,4,3992.50,53.34,1628.92,2088.26,0.00,3519374966049.926270,3519374966040.726074,205,0,0.000205,0.000552,62324713,30228419,0,0,74043,0,1,1 +1773661571.325733,0.55,4,3992.50,53.32,1629.62,2087.56,0.00,3517228599095.317871,0.000000,11,0,0.000000,0.000030,62324713,30228422,0,0,74046,0,1,1 +1773661576.328212,11.93,4,3992.50,53.71,1613.99,2103.00,0.00,0.000000,0.000000,11,0,40.045345,0.019507,62329144,30229703,0,0,74048,0,1,1 +1773661581.328000,0.70,4,3992.50,53.71,1614.00,2103.00,0.00,2.175483,0.000195,258,2,0.000000,0.000030,62329144,30229706,0,0,74051,0,1,1 +1773661586.326846,0.55,4,3992.50,53.71,1614.01,2103.00,0.00,3519249515017.239746,10.677465,253,556,0.000000,0.000020,62329144,30229708,0,0,74053,0,1,1 +1773661591.323433,0.55,4,3992.50,53.71,1614.01,2103.00,0.00,48462.014781,48668.409969,3378708,2999570,0.000000,0.000030,62329144,30229711,0,0,74056,0,1,1 +1773661596.323482,0.60,4,3992.50,53.73,1613.27,2103.74,0.00,3518402467596.917480,3518402467381.647949,11,0,0.000000,0.000020,62329144,30229713,0,0,74058,0,1,1 +1773661601.325458,0.65,4,3992.50,53.54,1620.91,2096.09,0.00,48411.463115,48626.657679,3378708,2999578,0.000000,0.000030,62329144,30229716,0,0,74061,0,1,1 +1773661606.325811,0.85,4,3992.50,53.59,1619.30,2098.12,0.00,3518188846683.989746,3518188846468.545410,205,0,0.000062,0.000070,62329148,30229722,0,0,74063,0,1,1 +1773661611.326465,0.90,4,3992.50,53.38,1627.21,2089.83,0.00,1.477248,10.673799,253,556,0.001148,0.000670,62329173,30229741,0,0,74066,0,1,1 +1773661616.327052,0.65,4,3992.50,53.38,1627.21,2089.83,0.00,3518024037363.073730,3518024037353.877441,205,0,0.001372,0.001620,62329202,30229771,0,0,74068,0,1,1 +1773661621.327646,0.65,4,3992.50,53.39,1626.57,2090.47,0.00,48424.666377,48640.177237,3378708,2999627,0.000107,0.000148,62329210,30229782,0,0,74071,0,1,1 +1773661626.326653,0.70,4,3992.50,53.39,1626.57,2090.47,0.00,3519135536979.679199,3519135536978.732910,3377205,2999073,0.000000,0.000020,62329210,30229784,0,0,74073,0,1,1 +1773661631.323451,0.70,4,3992.50,53.40,1626.35,2090.69,0.00,3520691816430.725586,3520691816215.998047,205,0,0.000000,0.000030,62329210,30229787,0,0,74076,0,1,1 +1773661636.327600,0.95,4,3992.50,53.59,1626.95,2098.28,0.00,48380.541697,48594.986909,3377205,2999093,0.000000,0.000020,62329210,30229789,0,0,74078,0,1,1 +1773661641.323504,14.11,4,3992.50,54.91,1575.32,2149.91,0.00,3521322010564.309082,3521322010347.513184,258,2,40.098311,0.022429,62333622,30231190,0,0,74081,0,1,1 +1773661646.323455,0.75,4,3992.50,54.06,1608.65,2116.59,0.00,3518471297238.340820,3518471297240.516113,11,0,0.000000,0.000020,62333622,30231192,0,0,74083,0,1,1 +1773661651.327629,0.65,4,3992.50,53.55,1628.54,2096.70,0.00,0.180123,0.000000,205,0,0.000000,0.000030,62333622,30231195,0,0,74086,0,1,1 +1773661656.323491,0.55,4,3992.50,53.55,1628.59,2096.65,0.00,0.000000,0.000000,205,0,0.000025,0.000051,62333624,30231199,0,0,74088,0,1,1 +1773661661.327456,0.70,4,3992.50,53.56,1628.43,2096.80,0.00,3515649088919.690918,0.000000,11,0,0.000064,0.000094,62333629,30231207,0,0,74091,0,1,1 +1773661666.325053,0.90,4,3992.50,53.77,1618.03,2105.09,0.00,2.176437,0.000195,258,2,0.000000,0.000020,62333629,30231209,0,0,74093,0,1,1 +1773661671.323509,0.60,4,3992.50,53.76,1618.28,2104.84,0.00,0.000000,0.000000,258,2,0.000000,0.000030,62333629,30231212,0,0,74096,0,1,1 +1773661676.326059,0.75,4,3992.50,53.57,1625.68,2097.44,0.00,0.000000,0.000000,258,2,0.000000,0.000020,62333629,30231214,0,0,74098,0,1,1 +1773661681.324974,0.60,4,3992.50,53.57,1625.68,2097.44,0.00,3519201075405.008789,3519201075407.184570,11,0,0.000000,0.000674,62333629,30231221,0,0,74101,0,1,1 +1773661686.327455,0.65,4,3992.50,53.38,1633.09,2090.03,0.00,48396.852059,48611.431530,3377205,2999322,0.000188,0.000226,62333643,30231237,0,0,74103,0,1,1 +1773661691.327885,0.65,4,3992.50,53.38,1633.09,2090.03,0.00,3518134342679.461914,3518134342473.811035,253,556,0.000000,0.000030,62333643,30231240,0,0,74106,0,1,1 +1773661696.323585,0.85,4,3992.50,53.60,1623.86,2098.66,0.00,3521465813156.715332,3521465813147.637207,75,0,0.000000,0.000020,62333643,30231242,0,0,74108,0,1,1 +1773661701.327579,0.60,4,3992.50,53.58,1623.94,2097.62,0.00,0.126657,0.000000,205,0,0.000000,0.000030,62333643,30231245,0,0,74111,0,1,1 +1773661706.323437,15.24,4,3992.50,54.73,1578.59,2142.97,0.00,3521353940717.950195,0.000000,11,0,40.104137,0.031212,62338278,30233328,0,0,74113,0,1,1 +1773661711.324144,0.85,4,3992.50,53.84,1613.51,2108.05,0.00,0.180248,0.000000,205,0,0.000008,0.000038,62338279,30233332,0,0,74116,0,1,1 +1773661716.326678,0.45,4,3992.50,53.37,1631.95,2089.61,0.00,48405.881518,48621.748886,3378708,3000051,0.000000,0.000020,62338279,30233334,0,0,74118,0,1,1 +1773661721.324921,0.70,4,3992.50,53.27,1635.88,2085.68,0.00,3519674318936.366699,3519674318720.494141,11,0,0.000000,0.000030,62338279,30233337,0,0,74121,0,1,1 +1773661726.327591,0.90,4,3992.50,53.48,1631.81,2093.71,0.00,0.000000,0.000000,11,0,0.000000,0.000020,62338279,30233339,0,0,74123,0,1,1 +1773661731.327953,0.45,4,3992.50,53.48,1627.92,2093.96,0.00,48417.362730,48632.296792,3377205,2999555,0.000000,0.000030,62338279,30233342,0,0,74126,0,1,1 +1773661736.323580,0.55,4,3992.50,53.49,1627.70,2094.18,0.00,3521516869233.761230,3521516869018.623535,11,0,0.000000,0.000020,62338279,30233344,0,0,74128,0,1,1 +1773661741.328215,0.55,4,3992.50,53.49,1627.70,2094.18,0.00,2.173376,0.000195,258,2,0.000000,0.000030,62338279,30233347,0,0,74131,0,1,1 +1773661746.323439,0.65,4,3992.50,53.49,1627.70,2094.17,0.00,3521801694511.283691,3521801694513.461426,11,0,0.000000,0.000503,62338279,30233352,0,0,74133,0,1,1 +1773661751.323469,0.60,4,3992.50,53.49,1627.71,2094.17,0.00,0.000000,0.000000,11,0,0.000188,0.000397,62338293,30233370,0,0,74136,0,1,1 +1773661756.328303,0.80,4,3992.50,53.49,1628.26,2094.12,0.00,1.656114,10.664884,253,556,0.000008,0.000028,62338294,30233373,0,0,74138,0,1,1 +1773661761.327454,0.60,4,3992.50,53.49,1627.47,2094.12,0.00,3519034575557.846680,3519034575548.828125,11,0,0.000000,0.000030,62338294,30233376,0,0,74141,0,1,1 +1773661766.327898,0.65,4,3992.50,53.48,1627.82,2093.77,0.00,0.000000,0.000000,11,0,0.000000,0.000020,62338294,30233378,0,0,74143,0,1,1 +1773661771.325352,9.25,4,3992.50,58.50,1431.10,2290.46,0.00,0.053543,0.000000,75,0,3.814411,0.008549,62338986,30233890,0,0,74146,0,1,1 +1773661776.325673,5.56,4,3992.50,53.95,1609.33,2112.25,0.00,0.000000,0.000000,75,0,36.250214,0.013612,62342642,30234839,0,0,74148,0,1,1 +1773661781.325431,0.60,4,3992.50,53.44,1629.22,2092.36,0.00,3518607762838.626465,0.000000,11,0,0.000000,0.000030,62342642,30234842,0,0,74151,0,1,1 +1773661786.327376,0.85,4,3992.50,53.70,1615.19,2102.49,0.00,0.000000,0.000000,11,0,0.000000,0.000020,62342642,30234844,0,0,74153,0,1,1 +1773661791.327557,0.50,4,3992.50,53.72,1614.52,2103.16,0.00,0.180267,0.000000,205,0,0.000000,0.000030,62342642,30234847,0,0,74156,0,1,1 +1773661796.327816,0.90,4,3992.50,53.72,1614.52,2103.16,0.00,1.477365,10.674643,253,556,0.000000,0.000020,62342642,30234849,0,0,74158,0,1,1 +1773661801.323581,0.55,4,3992.50,53.71,1614.78,2102.90,0.00,0.000000,0.000000,253,556,0.000000,0.000030,62342642,30234852,0,0,74161,0,1,1 +1773661806.325952,0.55,4,3992.50,53.52,1622.16,2095.52,0.00,3516769306482.433594,3516769306473.420410,11,0,0.000000,0.000020,62342642,30234854,0,0,74163,0,1,1 +1773661811.327385,0.70,4,3992.50,53.53,1621.86,2095.83,0.00,48406.985342,48622.244032,3377205,2999882,0.000000,0.000513,62342642,30234860,0,0,74166,0,1,1 +1773661816.328291,0.90,4,3992.50,53.92,1606.61,2111.04,0.00,0.000000,0.036712,3377205,2999899,0.000031,0.000206,62342644,30234865,0,0,74168,0,1,1 +1773661821.326361,0.65,4,3992.50,53.74,1613.57,2104.10,0.00,3519795945304.897461,3519795945089.457031,11,0,0.000134,0.000193,62342655,30234879,0,0,74171,0,1,1 +1773661826.327772,0.50,4,3992.50,53.72,1614.40,2103.26,0.00,2.174777,0.000195,258,2,0.000000,0.000020,62342655,30234881,0,0,74173,0,1,1 +1773661831.328115,0.55,4,3992.50,53.71,1614.74,2102.92,0.00,48425.100734,48643.597007,3378708,3000488,0.000000,0.000030,62342655,30234884,0,0,74176,0,1,1 +1773661836.328344,0.55,4,3992.50,53.72,1614.50,2103.17,0.00,3518275657529.000977,3518275657310.499512,258,2,0.000000,0.000020,62342655,30234886,0,0,74178,0,1,1 +1773661841.328306,13.89,4,3992.50,58.63,1422.14,2295.50,0.00,3518464079391.199219,3518464079393.374512,11,0,22.597326,0.015611,62345132,30235931,0,0,74181,0,1,1 +1773661846.327712,2.56,4,3992.50,54.36,1588.98,2128.42,0.00,2.175649,0.000195,258,2,17.469056,0.005772,62347019,30236315,0,0,74183,0,1,1 +1773661851.327783,0.70,4,3992.50,53.84,1609.61,2107.78,0.00,3518386714402.254395,3518386714404.429688,11,0,0.000000,0.000030,62347019,30236318,0,0,74186,0,1,1 +1773661856.323842,0.60,4,3992.50,53.75,1613.14,2104.26,0.00,0.000000,0.000000,11,0,0.000000,0.000020,62347019,30236320,0,0,74188,0,1,1 +1773661861.324085,0.60,4,3992.50,53.75,1613.14,2104.25,0.00,2.175285,0.000195,258,2,0.001434,0.001786,62347035,30236348,0,0,74191,0,1,1 +1773661866.323543,0.60,4,3992.50,53.75,1612.90,2104.50,0.00,3518818196253.478516,3518818196255.654297,11,0,0.000205,0.000552,62347042,30236361,0,0,74193,0,1,1 +1773661871.328153,0.70,4,3992.50,53.74,1613.28,2104.11,0.00,48385.980439,48602.355459,3378708,3000708,0.000008,0.000038,62347043,30236365,0,0,74196,0,1,1 +1773661876.328289,0.80,4,3992.50,53.84,1615.23,2108.00,0.00,3518341516449.489258,3518341516232.920410,11,0,0.000000,0.000516,62347043,30236371,0,0,74198,0,1,1 +1773661881.324084,0.70,4,3992.50,53.65,1622.66,2100.60,0.00,0.053561,0.000000,75,0,0.000000,0.000191,62347043,30236375,0,0,74201,0,1,1 +1773661886.327718,0.85,4,3992.50,53.68,1621.43,2101.83,0.00,2.120334,0.000195,258,2,0.000056,0.000076,62347047,30236381,0,0,74203,0,1,1 +1773661891.327502,0.60,4,3992.50,53.68,1621.43,2101.82,0.00,48430.502302,48649.330187,3378708,3000759,0.000101,0.000154,62347055,30236392,0,0,74206,0,1,1 +1773661896.323510,0.55,4,3992.50,53.68,1621.44,2101.82,0.00,3521249179342.901367,3521249179135.109375,253,556,0.000000,0.000020,62347055,30236394,0,0,74208,0,1,1 +1773661901.323509,0.75,4,3992.50,53.68,1621.44,2101.82,0.00,48428.945951,48636.576474,3378708,3000765,0.000000,0.000030,62347055,30236397,0,0,74211,0,1,1 +1773661906.325594,12.79,4,3992.50,58.85,1419.43,2304.17,0.00,3516970537314.590820,3516970537097.979980,75,0,40.045863,0.020574,62351473,30237798,0,0,74213,0,1,1 +1773661911.327815,1.05,4,3992.50,53.81,1616.58,2106.68,0.00,3516874328219.432129,0.000000,11,0,0.005185,0.003253,62351578,30237876,0,0,74216,0,1,1 +1773661916.327897,0.60,4,3992.50,53.85,1615.01,2108.25,0.00,0.000000,0.000000,11,0,0.001372,0.000976,62351607,30237902,0,0,74218,0,1,1 +1773661921.326657,0.60,4,3992.50,53.85,1615.01,2108.25,0.00,0.180318,0.000000,205,0,0.000008,0.000038,62351608,30237906,0,0,74221,0,1,1 +1773661926.327755,0.65,4,3992.50,53.85,1615.01,2108.25,0.00,0.000000,0.000000,205,0,0.000000,0.000020,62351608,30237908,0,0,74223,0,1,1 +1773661931.328358,0.60,4,3992.50,53.85,1614.77,2108.48,0.00,3518013104663.623535,0.000000,11,0,0.000000,0.000030,62351608,30237911,0,0,74226,0,1,1 +1773661936.325830,0.80,4,3992.50,53.86,1613.87,2108.64,0.00,2.176491,0.000195,258,2,0.000000,0.000020,62351608,30237913,0,0,74228,0,1,1 +1773661941.327122,0.75,4,3992.50,53.64,1622.08,2100.21,0.00,3517528874585.770996,3517528874587.892578,75,0,0.000000,0.000030,62351608,30237916,0,0,74231,0,1,1 +1773661946.327562,0.50,4,3992.50,53.64,1622.08,2100.20,0.00,1.604058,10.674256,253,556,0.000000,0.000664,62351608,30237922,0,0,74233,0,1,1 +1773661951.327825,0.70,4,3992.50,53.64,1622.08,2100.20,0.00,3518252079160.787598,3518252079151.770508,11,0,0.000062,0.000080,62351612,30237929,0,0,74236,0,1,1 +1773661956.328260,0.55,4,3992.50,53.64,1622.09,2100.20,0.00,0.000000,0.000000,11,0,0.000126,0.000175,62351622,30237941,0,0,74238,0,1,1 +1773661961.328305,0.45,4,3992.50,53.64,1622.09,2100.20,0.00,0.053515,0.000000,75,0,0.000081,0.000117,62351628,30237950,0,0,74241,0,1,1 +1773661966.323476,0.85,4,3992.50,53.69,1622.24,2101.93,0.00,3521838525163.404785,0.000000,11,0,0.000000,0.000020,62351628,30237952,0,0,74243,0,1,1 +1773661971.323427,12.90,4,3992.50,58.28,1440.97,2281.84,0.00,0.000000,0.000000,11,0,33.254591,0.021039,62355351,30239356,0,0,74246,0,1,1 +1773661976.323429,0.85,4,3992.50,53.52,1627.30,2095.52,0.00,0.000000,0.000000,11,0,6.812613,0.002743,62356122,30239500,0,0,74248,0,1,1 +1773661981.323459,0.60,4,3992.50,53.53,1627.05,2095.76,0.00,0.000000,0.000000,11,0,0.000000,0.000030,62356122,30239503,0,0,74251,0,1,1 +1773661986.327718,0.55,4,3992.50,53.53,1626.82,2095.99,0.00,0.180120,0.000000,205,0,0.000000,0.000020,62356122,30239505,0,0,74253,0,1,1 +1773661991.328311,0.85,4,3992.50,53.53,1626.82,2095.99,0.00,1.994881,0.000195,258,2,0.000000,0.000030,62356122,30239508,0,0,74256,0,1,1 +1773661996.327621,0.85,4,3992.50,53.74,1619.09,2103.87,0.00,0.000000,0.000000,258,2,0.000000,0.000020,62356122,30239510,0,0,74258,0,1,1 +1773662001.327593,0.55,4,3992.50,53.50,1628.05,2094.76,0.00,3518456747575.214844,3518456747577.210449,205,0,0.000000,0.000030,62356122,30239513,0,0,74261,0,1,1 +1773662006.327723,0.60,4,3992.50,53.48,1629.12,2093.68,0.00,0.000000,0.000000,205,0,0.000000,0.000020,62356122,30239515,0,0,74263,0,1,1 +1773662011.324982,0.60,4,3992.50,53.48,1628.88,2093.93,0.00,3520367016347.361816,0.000000,11,0,0.000000,0.000674,62356122,30239522,0,0,74266,0,1,1 +1773662016.323424,0.55,4,3992.50,53.48,1628.89,2093.92,0.00,0.053532,0.000000,75,0,0.000056,0.000076,62356126,30239528,0,0,74268,0,1,1 +1773662021.327853,0.50,4,3992.50,53.51,1627.91,2094.90,0.00,1.602780,10.665748,253,556,0.000101,0.000154,62356134,30239539,0,0,74271,0,1,1 +1773662026.324662,0.75,4,3992.50,53.60,1631.30,2098.54,0.00,3520683826236.646973,3520683826227.443359,205,0,0.000008,0.000028,62356135,30239542,0,0,74273,0,1,1 +1773662031.324933,0.55,4,3992.50,53.60,1631.32,2098.55,0.00,1.995009,0.000195,258,2,0.000000,0.000030,62356135,30239545,0,0,74276,0,1,1 +1773662036.323439,17.90,4,3992.50,58.59,1435.77,2294.10,0.00,3519488784264.715332,3519488784266.891113,11,0,15.835817,0.017325,62358121,30240675,0,0,74278,0,1,1 +1773662041.328019,2.51,4,3992.50,54.64,1590.49,2139.37,0.00,0.000000,0.000000,11,0,24.214090,0.008028,62360611,30241210,0,0,74281,0,1,1 +1773662046.327587,0.55,4,3992.50,53.95,1617.71,2112.15,0.00,48425.048701,48641.514278,3377205,3000883,0.000000,0.000020,62360611,30241212,0,0,74283,0,1,1 +1773662051.326088,0.60,4,3992.50,53.76,1625.08,2104.78,0.00,0.000000,0.002344,3377205,3000886,0.000000,0.000030,62360611,30241215,0,0,74286,0,1,1 +1773662056.327805,0.85,4,3992.50,53.76,1623.11,2104.79,0.00,3517229035198.992188,3517229034982.563477,75,0,0.000000,0.000020,62360611,30241217,0,0,74288,0,1,1 +1773662061.327730,0.55,4,3992.50,53.76,1622.90,2105.01,0.00,3518489787083.431152,0.000000,11,0,0.000000,0.000030,62360611,30241220,0,0,74291,0,1,1 +1773662066.324075,0.60,4,3992.50,53.77,1622.65,2105.25,0.00,1.658928,10.683004,253,556,0.000000,0.000020,62360611,30241222,0,0,74293,0,1,1 +1773662071.323593,0.60,4,3992.50,53.76,1622.90,2105.01,0.00,0.000000,0.000000,253,556,0.000000,0.000030,62360611,30241225,0,0,74296,0,1,1 +1773662076.328306,0.55,4,3992.50,53.77,1622.67,2105.23,0.00,0.517188,3515123813093.891113,258,2,0.000000,0.000663,62360611,30241231,0,0,74298,0,1,1 +1773662081.326698,0.65,4,3992.50,53.77,1622.67,2105.23,0.00,48443.999120,48663.764541,3378708,3001522,0.000031,0.000055,62360613,30241236,0,0,74301,0,1,1 +1773662086.328138,0.80,4,3992.50,53.97,1611.61,2112.85,0.00,3517424000236.664551,3517424000019.154297,75,0,0.000134,0.000183,62360624,30241249,0,0,74303,0,1,1 +1773662091.327908,0.65,4,3992.50,53.71,1621.64,2102.79,0.00,48432.762550,48650.384657,3378708,3001542,0.000000,0.000030,62360624,30241252,0,0,74306,0,1,1 +1773662096.327423,0.75,4,3992.50,53.71,1621.65,2102.79,0.00,3518779016733.356934,3518779016732.419922,3377205,3000998,0.000000,0.000020,62360624,30241254,0,0,74308,0,1,1 +1773662101.327955,10.14,4,3992.50,58.63,1428.94,2295.50,0.00,3518062282078.122070,3518062281861.470215,75,0,21.034614,0.017321,62363096,30242442,0,0,74311,0,1,1 +1773662106.327397,2.25,4,3992.50,53.84,1616.63,2107.81,0.00,3518830575434.343750,0.000000,11,0,19.031390,0.004886,62365115,30242747,0,0,74313,0,1,1 +1773662111.327425,0.65,4,3992.50,53.84,1616.63,2107.81,0.00,0.000000,0.000000,11,0,0.000000,0.000030,62365115,30242750,0,0,74316,0,1,1 +1773662116.326545,0.85,4,3992.50,53.88,1616.93,2109.53,0.00,0.000000,0.000000,11,0,0.000000,0.000020,62365115,30242752,0,0,74318,0,1,1 +1773662121.327563,0.55,4,3992.50,53.78,1618.65,2105.78,0.00,2.174948,0.000195,258,2,0.000000,0.000030,62365115,30242755,0,0,74321,0,1,1 +1773662126.328106,0.60,4,3992.50,53.78,1618.65,2105.78,0.00,48413.433227,48632.473996,3377205,3001234,0.000000,0.000020,62365115,30242757,0,0,74323,0,1,1 +1773662131.327730,0.60,4,3992.50,53.78,1618.65,2105.77,0.00,3518701481799.125977,3518701481582.040527,205,0,0.000000,0.000030,62365115,30242760,0,0,74326,0,1,1 +1773662136.328145,0.65,4,3992.50,53.78,1618.65,2105.77,0.00,3518145660855.733887,0.000000,11,0,0.000000,0.000020,62365115,30242762,0,0,74328,0,1,1 +1773662141.324973,0.55,4,3992.50,53.78,1618.65,2105.77,0.00,0.053550,0.000000,75,0,0.000000,0.000674,62365115,30242769,0,0,74331,0,1,1 +1773662146.328266,0.80,4,3992.50,53.60,1617.17,2098.55,0.00,0.126674,0.000000,205,0,0.000031,0.000082,62365117,30242774,0,0,74333,0,1,1 +1773662151.323453,0.55,4,3992.50,53.57,1618.29,2097.45,0.00,1.478865,10.685481,253,556,0.000134,0.000193,62365128,30242788,0,0,74336,0,1,1 +1773662156.327821,0.65,4,3992.50,53.57,1618.29,2097.45,0.00,48386.662307,48595.365138,3378708,3001834,0.000000,0.000020,62365128,30242790,0,0,74338,0,1,1 +1773662161.327543,0.60,4,3992.50,53.57,1618.29,2097.44,0.00,3518633035012.675781,3518633034794.760742,11,0,0.001434,0.001786,62365144,30242818,0,0,74341,0,1,1 +1773662166.326332,8.94,4,3992.50,58.28,1434.05,2281.67,0.00,0.000000,0.000000,11,0,14.229934,0.013839,62366896,30243719,0,0,74343,0,1,1 +1773662171.323896,3.91,4,3992.50,53.40,1624.93,2090.80,0.00,0.000000,0.000000,11,0,25.851101,0.008464,62369554,30244289,0,0,74346,0,1,1 +1773662176.323428,0.75,4,3992.50,53.48,1616.80,2093.99,0.00,0.000000,0.000000,11,0,0.000000,0.000020,62369554,30244291,0,0,74348,0,1,1 +1773662181.323544,0.50,4,3992.50,53.50,1616.06,2094.73,0.00,2.175340,0.000195,258,2,0.000000,0.000030,62369554,30244294,0,0,74351,0,1,1 +1773662186.328223,0.60,4,3992.50,53.50,1616.06,2094.73,0.00,3515147651454.392090,3515147651456.511719,75,0,0.000000,0.000020,62369554,30244296,0,0,74353,0,1,1 +1773662191.324934,0.50,4,3992.50,53.51,1615.82,2094.97,0.00,0.126841,0.000000,205,0,0.000000,0.000030,62369554,30244299,0,0,74356,0,1,1 +1773662196.328370,0.65,4,3992.50,53.51,1615.82,2094.97,0.00,3516021238177.587891,0.000000,11,0,0.000000,0.000020,62369554,30244301,0,0,74358,0,1,1 +1773662201.328327,0.50,4,3992.50,53.51,1615.82,2094.97,0.00,48431.005983,48649.131875,3378708,3002043,0.000000,0.000030,62369554,30244304,0,0,74361,0,1,1 +1773662206.323484,0.80,4,3992.50,53.53,1614.91,2095.90,0.00,0.000000,0.043792,3378708,3002069,0.000062,0.000715,62369558,30244314,0,0,74363,0,1,1 +1773662211.323727,0.70,4,3992.50,53.53,1614.84,2095.90,0.00,3518266262648.651367,3518266262647.713867,3377205,3001524,0.001179,0.000695,62369585,30244335,0,0,74366,0,1,1 +1773662216.327741,0.70,4,3992.50,53.53,1614.84,2095.90,0.00,0.000000,0.009367,3377205,3001531,0.002141,0.002028,62369625,30244372,0,0,74368,0,1,1 +1773662221.328234,0.65,4,3992.50,53.53,1614.84,2095.89,0.00,3518090384404.178711,3518090384186.780273,205,0,0.000000,0.000030,62369625,30244375,0,0,74371,0,1,1 +1773662226.328409,0.55,4,3992.50,53.54,1614.61,2096.13,0.00,1.995047,0.000195,258,2,0.000000,0.000020,62369625,30244377,0,0,74373,0,1,1 +1773662231.328377,0.60,4,3992.50,53.34,1622.26,2088.49,0.00,3518459389249.014648,3518459389251.189941,11,0,0.000000,0.000030,62369625,30244380,0,0,74376,0,1,1 +1773662236.328341,0.85,4,3992.50,53.37,1625.90,2089.47,0.00,48430.948950,48649.176930,3378708,3002117,0.000000,0.000020,62369625,30244382,0,0,74378,0,1,1 +1773662241.323451,0.55,4,3992.50,53.39,1625.07,2090.16,0.00,3521881159438.121094,3521881159228.708008,253,556,0.000000,0.000030,62369625,30244385,0,0,74381,0,1,1 +1773662246.323423,0.60,4,3992.50,53.39,1625.08,2090.16,0.00,48419.477601,48627.785307,3377205,3001610,0.000000,0.000020,62369625,30244387,0,0,74383,0,1,1 +1773662251.323374,0.50,4,3992.50,53.39,1625.08,2090.16,0.00,3518471706224.935547,3518471706007.609375,11,0,0.000000,0.000030,62369625,30244390,0,0,74386,0,1,1 +1773662256.327904,0.65,4,3992.50,53.39,1624.83,2090.41,0.00,48386.749467,48604.835265,3378708,3002177,0.000067,0.000113,62369630,30244398,0,0,74388,0,1,1 +1773662261.323482,1.05,4,3992.50,53.48,1621.15,2094.04,0.00,3521552038731.788574,3521552038513.258301,75,0,0.003732,0.002716,62369686,30244447,0,0,74391,0,1,1 +1773662266.323458,11.73,4,3992.50,58.99,1407.69,2309.63,0.00,1.604207,10.675246,253,556,1.224008,0.020859,62371964,30246009,0,0,74393,0,1,1 +1773662271.323422,0.71,4,3992.50,59.10,1403.46,2313.86,0.00,48419.557929,48627.997818,3377205,3001729,3.716400,0.073819,62378643,30251822,0,0,74396,0,1,1 +1773662276.323430,1.01,4,3992.50,59.03,1406.02,2311.31,0.00,3518431390234.908691,3518431390017.399902,75,0,3.530224,0.075549,62385393,30257043,0,0,74398,0,1,1 +1773662281.323438,0.86,4,3992.50,59.22,1398.62,2318.70,0.00,48430.454859,48648.925384,3378708,3002305,3.520175,0.076354,62391954,30262779,0,0,74401,0,1,1 +1773662286.323415,0.61,4,3992.50,59.26,1396.99,2320.33,0.00,3518453843555.528809,3518453843334.935059,258,2,3.587602,0.075081,62398478,30268641,0,0,74403,0,1,1 +1773662291.323416,0.86,4,3992.50,59.14,1401.96,2315.37,0.00,3518436519269.124512,10.674998,253,556,3.466666,0.071354,62405109,30273746,0,0,74406,0,1,1 +1773662296.323787,1.31,4,3992.50,59.32,1395.82,2322.42,0.00,3518175735949.941406,3518175735940.924805,11,0,3.522333,0.074086,62411648,30279370,0,0,74408,0,1,1 +1773662301.325551,0.76,4,3992.50,59.38,1393.27,2324.98,0.00,0.000000,0.000000,11,0,3.601249,0.074995,62418195,30285229,0,0,74411,0,1,1 +1773662306.323355,0.66,4,3992.50,59.29,1396.91,2321.35,0.00,0.000000,0.000000,11,0,3.447736,0.071454,62424810,30290306,0,0,74413,0,1,1 +1773662311.325157,0.65,4,3992.50,59.29,1396.98,2321.29,0.00,0.053496,0.000000,75,0,3.545452,0.074594,62431398,30295982,0,0,74416,0,1,1 +1773662316.324131,0.76,4,3992.50,59.41,1392.25,2326.01,0.00,2.122310,0.000195,258,2,3.589013,0.074279,62437933,30301797,0,0,74418,0,1,1 +1773662321.328177,0.96,4,3992.50,54.18,1597.14,2121.14,0.00,3515592537648.389160,3515592537650.382812,205,0,3.434001,0.071080,62444544,30306844,0,0,74421,0,1,1 +1773662326.326849,0.85,4,3992.50,53.60,1613.19,2098.51,0.00,3519371259869.682617,0.000000,75,0,1.166626,0.033920,62446819,30309318,0,0,74423,0,1,1 +1773662331.325502,1.05,4,3992.50,53.58,1613.89,2097.76,0.00,0.000000,0.000000,75,0,0.002904,0.001393,62446873,30309354,0,0,74426,0,1,1 +1773662336.323414,0.50,4,3992.50,53.58,1613.89,2097.76,0.00,48441.088866,48658.870060,3377208,3001978,0.000000,0.000503,62446873,30309359,0,0,74428,0,1,1 +1773662341.323588,0.60,4,3992.50,53.58,1613.89,2097.76,0.00,3518314075762.716797,3518314075545.034180,75,0,0.000000,0.000191,62446873,30309363,0,0,74431,0,1,1 +1773662346.325499,0.65,4,3992.50,53.58,1613.89,2097.76,0.00,2.121065,0.000195,258,2,0.000000,0.000020,62446873,30309365,0,0,74433,0,1,1 +1773662351.328097,0.60,4,3992.50,53.39,1621.31,2090.34,0.00,3516609794864.635254,3516609794866.755859,75,0,0.000000,0.000030,62446873,30309368,0,0,74436,0,1,1 +1773662356.327775,0.80,4,3992.50,53.49,1618.70,2094.23,0.00,1.604303,10.675883,253,556,0.000000,0.000053,62446873,30309371,0,0,74438,0,1,1 +1773662361.327581,0.60,4,3992.50,53.50,1618.43,2094.46,0.00,3518573399487.311035,3518573399478.239746,75,0,0.000000,0.000030,62446873,30309374,0,0,74441,0,1,1 +1773662366.328244,0.65,4,3992.50,53.50,1618.18,2094.70,0.00,48424.167502,48642.873293,3378711,3002601,0.000000,0.000020,62446873,30309376,0,0,74443,0,1,1 +1773662371.327915,0.60,4,3992.50,53.50,1618.18,2094.70,0.00,3518668339075.299805,3518668338865.622070,253,556,0.000025,0.000061,62446875,30309381,0,0,74446,0,1,1 +1773662376.323470,0.70,4,3992.50,53.50,1618.18,2094.70,0.00,48462.334847,48671.242145,3377208,3002049,0.000117,0.000160,62446885,30309393,0,0,74448,0,1,1 +1773662381.328319,0.60,4,3992.50,53.50,1618.19,2094.70,0.00,3515028348537.436523,3515028348319.854980,75,0,0.000000,0.000030,62446885,30309396,0,0,74451,0,1,1 +1773662386.328331,0.90,4,3992.50,53.54,1616.14,2096.03,0.00,0.000000,0.000000,75,0,0.000000,0.000020,62446885,30309398,0,0,74453,0,1,1 +1773662391.327581,1.00,4,3992.50,53.47,1618.41,2093.66,0.00,48428.117614,48646.003114,3377208,3002096,0.003281,0.001873,62446919,30309431,0,0,74456,0,1,1 +1773662396.327980,5.27,4,3992.50,59.23,1393.04,2319.02,0.00,3518156832318.627930,3518156832100.846191,11,0,0.028421,0.002689,62447035,30309478,0,0,74458,0,1,1 +1773662401.327623,5.78,4,3992.50,59.44,1384.70,2327.37,0.00,2.175546,0.000195,258,2,3.475586,0.064359,62453304,30314508,0,0,74461,0,1,1 +1773662406.323412,1.01,4,3992.50,59.16,1395.73,2316.33,0.00,3521402899188.746094,3521402899190.869629,75,0,3.657953,0.068535,62460149,30319504,0,0,74463,0,1,1 +1773662411.328258,0.91,4,3992.50,59.18,1395.05,2317.02,0.00,48373.980987,48591.812744,3377214,3002293,3.503511,0.078217,62466802,30325105,0,0,74466,0,1,1 +1773662416.327953,1.26,4,3992.50,59.01,1405.59,2310.23,0.00,3518651423814.624512,3518651423596.621582,11,0,3.549635,0.074024,62473234,30330956,0,0,74468,0,1,1 +1773662421.327942,0.65,4,3992.50,59.15,1400.00,2315.92,0.00,0.053516,0.000000,75,0,3.557332,0.071124,62479976,30336111,0,0,74471,0,1,1 +1773662426.324181,0.71,4,3992.50,59.21,1397.59,2318.33,0.00,1.605407,10.683232,253,556,3.452510,0.070273,62486495,30341298,0,0,74473,0,1,1 +1773662431.327883,0.65,4,3992.50,59.39,1390.67,2325.25,0.00,48393.150607,48603.020495,3378717,3002944,3.556428,0.073344,62492947,30347100,0,0,74476,0,1,1 +1773662436.323425,0.61,4,3992.50,59.23,1397.08,2318.83,0.00,3521577209987.614746,3521577209768.376465,11,0,3.592316,0.070060,62499702,30352179,0,0,74478,0,1,1 +1773662441.327894,0.65,4,3992.50,59.23,1396.91,2319.00,0.00,2.173448,0.000195,258,2,3.448708,0.071660,62506232,30357440,0,0,74481,0,1,1 +1773662446.328307,1.01,4,3992.50,59.38,1399.19,2324.87,0.00,48414.739800,48635.029504,3377214,3002420,3.571254,0.073372,62512705,30363240,0,0,74483,0,1,1 +1773662451.324895,0.71,4,3992.50,59.10,1410.01,2313.99,0.00,9.732815,10.686884,3378717,3002986,3.567181,0.072056,62519454,30368511,0,0,74486,0,1,1 +1773662456.327554,0.80,4,3992.50,53.72,1620.73,2103.29,0.00,3516567178735.439941,3516567178514.295898,258,2,2.386849,0.060790,62524090,30372920,0,0,74488,0,1,1 +1773662461.327588,1.00,4,3992.50,53.74,1619.80,2104.22,0.00,3518412965608.379395,3518412965610.501465,75,0,0.003424,0.002500,62524159,30372980,0,0,74491,0,1,1 +1773662466.327636,0.70,4,3992.50,53.75,1619.55,2104.46,0.00,48430.129694,48649.332497,3378717,3003072,0.000205,0.001035,62524166,30372996,0,0,74493,0,1,1 +1773662471.327937,0.70,4,3992.50,53.75,1619.56,2104.46,0.00,0.000000,0.003906,3378717,3003077,0.000000,0.000191,62524166,30373000,0,0,74496,0,1,1 +1773662476.327568,0.85,4,3992.50,53.95,1618.86,2112.26,0.00,3518696962739.062012,3518696962519.890625,11,0,0.000000,0.000020,62524166,30373002,0,0,74498,0,1,1 +1773662481.327378,0.50,4,3992.50,53.95,1618.86,2112.26,0.00,48422.749315,48641.050351,3377214,3002576,0.000000,0.000030,62524166,30373005,0,0,74501,0,1,1 +1773662486.326668,0.65,4,3992.50,54.04,1615.47,2115.64,0.00,3518936729834.071289,3518936729615.747070,11,0,0.000000,0.000020,62524166,30373007,0,0,74503,0,1,1 +1773662491.323456,0.65,4,3992.50,54.04,1615.47,2115.64,0.00,0.000000,0.000000,11,0,0.000000,0.000030,62524166,30373010,0,0,74506,0,1,1 +1773662496.327977,0.55,4,3992.50,54.04,1615.47,2115.64,0.00,0.000000,0.000000,11,0,0.000000,0.000020,62524166,30373012,0,0,74508,0,1,1 +1773662501.327813,0.65,4,3992.50,53.84,1622.99,2108.12,0.00,48432.227456,48651.505529,3378717,3003155,0.000025,0.000061,62524168,30373017,0,0,74511,0,1,1 +1773662506.323431,0.95,4,3992.50,53.78,1615.29,2105.68,0.00,3521523428515.621582,3521523428295.978027,205,0,0.000171,0.000203,62524181,30373032,0,0,74513,0,1,1 +1773662511.328179,0.70,4,3992.50,53.79,1615.08,2105.91,0.00,3515098934188.636230,0.000000,11,0,0.001139,0.000670,62524205,30373051,0,0,74516,0,1,1 +1773662516.323540,0.70,4,3992.50,53.79,1614.86,2106.13,0.00,0.180441,0.000000,205,0,0.001373,0.000985,62524234,30373078,0,0,74518,0,1,1 +1773662521.327554,0.80,4,3992.50,53.75,1616.64,2104.35,0.00,0.000000,0.000000,205,0,0.000563,0.000116,62524245,30373086,0,0,74521,0,1,1 +1773662526.328195,1.25,4,3992.50,53.78,1615.49,2105.47,0.00,3517986463349.470215,0.000000,75,0,0.003757,0.002890,62524300,30373134,0,0,74523,0,1,1 +1773662531.327686,12.16,4,3992.50,59.43,1393.98,2326.98,0.00,0.126771,0.000000,205,0,2.167202,0.041811,62528256,30376378,0,0,74526,0,1,1 +1773662536.327926,1.26,4,3992.50,59.45,1394.47,2327.45,0.00,48418.406821,48637.116221,3377214,3002792,3.774448,0.069060,62535092,30381697,0,0,74528,0,1,1 +1773662541.327391,0.66,4,3992.50,59.39,1396.52,2325.40,0.00,3518813896642.078613,3518813896423.461914,75,0,3.450929,0.079694,62541871,30387016,0,0,74531,0,1,1 +1773662546.324659,0.81,4,3992.50,59.53,1391.06,2330.86,0.00,0.000000,0.000000,75,0,3.592187,0.075821,62548385,30392989,0,0,74533,0,1,1 +1773662551.327876,0.65,4,3992.50,59.39,1396.62,2325.29,0.00,3516175163386.456055,0.000000,11,0,3.443184,0.072469,62554869,30398337,0,0,74536,0,1,1 +1773662556.327539,0.81,4,3992.50,59.46,1394.00,2327.92,0.00,0.000000,0.000000,11,0,3.519808,0.071490,62561516,30403610,0,0,74538,0,1,1 +1773662561.327706,0.91,4,3992.50,59.78,1381.28,2340.64,0.00,0.053514,0.000000,75,0,3.571414,0.074384,62567993,30409490,0,0,74541,0,1,1 +1773662566.327123,0.91,4,3992.50,59.35,1389.78,2323.85,0.00,0.126773,0.000000,205,0,3.497286,0.072206,62574557,30414808,0,0,74543,0,1,1 +1773662571.324838,1.06,4,3992.50,59.28,1392.77,2320.86,0.00,3520046252297.342773,0.000000,11,0,3.537079,0.070033,62581262,30419900,0,0,74546,0,1,1 +1773662576.326691,0.71,4,3992.50,59.63,1379.09,2334.55,0.00,0.053496,0.000000,75,0,3.569725,0.074899,62587738,30425752,0,0,74548,0,1,1 +1773662581.326780,0.76,4,3992.50,59.25,1393.82,2319.82,0.00,48429.721629,48649.377557,3378717,3003486,3.478671,0.073430,62594325,30431115,0,0,74551,0,1,1 +1773662586.327673,0.96,4,3992.50,54.13,1594.29,2119.36,0.00,3517809040875.168457,3517809040664.617188,253,556,3.321865,0.073073,62600354,30436892,0,0,74553,0,1,1 +1773662591.328257,0.80,4,3992.50,54.03,1598.43,2115.20,0.00,3518026812056.571289,3518026812047.555176,11,0,0.395747,0.015041,62601125,30438027,0,0,74556,0,1,1 +1773662596.323470,0.95,4,3992.50,54.11,1595.21,2118.58,0.00,0.000000,0.000000,11,0,0.000267,0.000425,62601134,30438038,0,0,74558,0,1,1 +1773662601.323446,0.55,4,3992.50,54.10,1595.66,2117.97,0.00,48421.148025,48639.934227,3377214,3003034,0.000000,0.000674,62601134,30438045,0,0,74561,0,1,1 +1773662606.328146,0.60,4,3992.50,54.09,1595.73,2117.91,0.00,3515133104070.845703,3515133103852.266113,11,0,0.000000,0.000020,62601134,30438047,0,0,74563,0,1,1 +1773662611.323454,0.55,4,3992.50,54.07,1596.56,2117.09,0.00,0.180443,0.000000,205,0,0.000000,0.000030,62601134,30438050,0,0,74566,0,1,1 +1773662616.323450,0.55,4,3992.50,54.08,1596.31,2117.33,0.00,0.000000,0.000000,205,0,0.000000,0.000020,62601134,30438052,0,0,74568,0,1,1 +1773662621.327899,1.25,4,3992.50,54.08,1596.32,2117.33,0.00,3515309429976.850586,0.000000,11,0,0.000000,0.000030,62601134,30438055,0,0,74571,0,1,1 +1773662626.323453,0.90,4,3992.50,54.02,1603.38,2114.89,0.00,0.180434,0.000000,205,0,0.000000,0.000020,62601134,30438057,0,0,74573,0,1,1 +1773662631.327765,0.55,4,3992.50,53.66,1612.92,2100.78,0.00,3515405705100.955566,0.000000,11,0,0.000000,0.000030,62601134,30438060,0,0,74576,0,1,1 +1773662636.328362,0.60,4,3992.50,53.66,1612.67,2101.04,0.00,0.000000,0.000000,11,0,0.000101,0.000144,62601142,30438070,0,0,74578,0,1,1 +1773662641.323436,0.55,4,3992.50,53.66,1612.67,2101.04,0.00,0.000000,0.000000,11,0,0.000033,0.000069,62601145,30438076,0,0,74581,0,1,1 +1773662646.327435,0.60,4,3992.50,53.54,1617.40,2096.31,0.00,0.180129,0.000000,205,0,0.000008,0.000028,62601146,30438079,0,0,74583,0,1,1 +1773662651.328065,0.60,4,3992.50,53.54,1617.40,2096.30,0.00,1.994866,0.000195,258,2,0.000000,0.000030,62601146,30438082,0,0,74586,0,1,1 +1773662656.327475,1.40,4,3992.50,53.63,1614.66,2099.58,0.00,3518852454583.959961,3518852454585.955566,205,0,0.002446,0.001347,62601181,30438111,0,0,74588,0,1,1 +1773662661.327852,10.25,4,3992.50,59.35,1390.43,2323.81,0.00,0.000000,0.000000,205,0,0.141661,0.004146,62601514,30438269,0,0,74591,0,1,1 +1773662666.323406,3.78,4,3992.50,59.69,1377.09,2337.16,0.00,3521568735003.758301,0.000000,11,0,3.774828,0.068150,62608300,30443601,0,0,74593,0,1,1 +1773662671.328293,0.75,4,3992.50,59.21,1395.96,2318.29,0.00,0.180097,0.000000,205,0,3.589071,0.070897,62615034,30448764,0,0,74596,0,1,1 +1773662676.326618,0.71,4,3992.50,59.34,1391.13,2323.12,0.00,0.000000,0.000000,205,0,3.475873,0.075291,62621614,30454226,0,0,74598,0,1,1 +1773662681.327916,0.70,4,3992.50,59.50,1384.85,2329.40,0.00,3517524620185.097656,0.000000,75,0,3.549661,0.073138,62628051,30460009,0,0,74601,0,1,1 +1773662686.327461,0.86,4,3992.50,59.52,1393.60,2330.43,0.00,3518756785189.382812,0.000000,11,0,3.546385,0.071353,62634743,30465220,0,0,74603,0,1,1 +1773662691.325935,0.81,4,3992.50,59.33,1401.11,2322.93,0.00,0.000000,0.000000,11,0,3.455921,0.067910,62641255,30470248,0,0,74606,0,1,1 +1773662696.328080,1.21,4,3992.50,59.54,1392.80,2331.24,0.00,0.053493,0.000000,75,0,3.546613,0.073017,62647689,30476022,0,0,74608,0,1,1 +1773662701.327597,0.76,4,3992.50,59.27,1403.36,2320.69,0.00,0.126770,0.000000,205,0,3.582077,0.070260,62654450,30481152,0,0,74611,0,1,1 +1773662706.328000,0.76,4,3992.50,59.19,1406.79,2317.26,0.00,0.000000,0.000000,205,0,3.480260,0.072368,62661026,30486479,0,0,74613,0,1,1 +1773662711.326746,0.86,4,3992.50,59.55,1392.37,2331.68,0.00,48432.884544,48652.362935,3377214,3003448,3.543939,0.070294,62667450,30492033,0,0,74616,0,1,1 +1773662716.327468,1.01,4,3992.50,59.88,1383.78,2344.24,0.00,3517928997731.494141,3517928997510.107910,258,2,3.560679,0.072443,62674203,30497332,0,0,74618,0,1,1 +1773662721.327364,0.75,4,3992.50,54.31,1597.50,2126.53,0.00,0.000000,0.000000,258,2,2.052452,0.052946,62678184,30501163,0,0,74621,0,1,1 +1773662726.325319,0.85,4,3992.50,54.32,1597.28,2126.75,0.00,3519877089930.030273,3519877089932.206543,11,0,0.002226,0.001057,62678226,30501193,0,0,74623,0,1,1 +1773662731.328233,0.80,4,3992.50,54.33,1596.91,2127.12,0.00,0.053484,0.000000,75,0,0.000000,0.000673,62678226,30501200,0,0,74626,0,1,1 +1773662736.323446,0.60,4,3992.50,54.33,1596.91,2127.12,0.00,2.123908,0.000195,258,2,0.000000,0.000020,62678226,30501202,0,0,74628,0,1,1 +1773662741.324158,0.65,4,3992.50,54.14,1604.31,2119.71,0.00,3517936273049.191406,3517936273051.186523,205,0,0.000000,0.000030,62678226,30501205,0,0,74631,0,1,1 +1773662746.324856,0.90,4,3992.50,54.24,1598.07,2123.57,0.00,48413.977591,48633.541275,3377214,3003594,0.000000,0.000020,62678226,30501207,0,0,74633,0,1,1 +1773662751.325501,0.75,4,3992.50,54.21,1599.33,2122.32,0.00,3517983077500.151855,3517983077280.766113,11,0,0.000000,0.000030,62678226,30501210,0,0,74636,0,1,1 +1773662756.327629,0.60,4,3992.50,54.21,1599.33,2122.32,0.00,1.657010,10.670656,253,556,0.000000,0.000020,62678226,30501212,0,0,74638,0,1,1 +1773662761.327557,0.90,4,3992.50,54.21,1599.11,2122.54,0.00,3518487545068.059082,3518487545059.041992,11,0,0.001447,0.001786,62678243,30501240,0,0,74641,0,1,1 +1773662766.324204,0.70,4,3992.50,54.21,1599.11,2122.54,0.00,48453.408070,48673.019399,3377214,3003640,0.001173,0.001262,62678256,30501259,0,0,74643,0,1,1 +1773662771.325191,0.70,4,3992.50,54.22,1598.87,2122.78,0.00,3517743042219.440918,3517743041999.966797,75,0,0.000101,0.000167,62678264,30501271,0,0,74646,0,1,1 +1773662776.328316,0.90,4,3992.50,54.20,1597.79,2121.95,0.00,3516239601327.191895,0.000000,11,0,0.000000,0.000020,62678264,30501273,0,0,74648,0,1,1 +1773662781.327465,0.70,4,3992.50,54.16,1599.09,2120.65,0.00,0.053525,0.000000,75,0,0.000000,0.000030,62678264,30501276,0,0,74651,0,1,1 +1773662786.328147,0.90,4,3992.50,54.16,1599.11,2120.63,0.00,2.121586,0.000195,258,2,0.002234,0.000408,62678288,30501293,0,0,74653,0,1,1 +1773662791.327564,1.20,4,3992.50,54.19,1598.22,2121.48,0.00,3518847945703.770508,3518847945705.893066,75,0,0.002582,0.003377,62678342,30501345,0,0,74656,0,1,1 +1773662796.328276,13.55,4,3992.50,59.57,1387.35,2332.36,0.00,48413.966767,48633.599056,3377214,3003797,2.494768,0.044852,62682854,30504816,0,0,74658,0,1,1 +1773662801.324330,0.66,4,3992.50,59.22,1401.30,2318.40,0.00,0.000000,0.005669,3377214,3003805,3.640650,0.066607,62689586,30509765,0,0,74661,0,1,1 +1773662806.326272,1.06,4,3992.50,59.36,1399.62,2324.03,0.00,9.722397,10.734895,3378717,3004396,3.513059,0.076101,62696308,30515103,0,0,74663,0,1,1 +1773662811.327030,1.06,4,3992.50,59.59,1390.36,2333.00,0.00,3517903259532.148438,3517903259311.553711,11,0,3.576787,0.076650,62702822,30521073,0,0,74666,0,1,1 +1773662816.328125,0.80,4,3992.50,59.29,1401.90,2321.45,0.00,1.657352,10.672858,253,556,3.465737,0.074859,62709410,30526449,0,0,74668,0,1,1 +1773662821.327980,0.66,4,3992.50,59.34,1399.92,2323.44,0.00,48420.666078,48631.379331,3377214,3003886,3.528602,0.070247,62716062,30531636,0,0,74671,0,1,1 +1773662826.327303,0.76,4,3992.50,59.56,1391.39,2331.97,0.00,3518913767069.428223,3518913766849.620117,75,0,3.579929,0.074823,62722553,30537532,0,0,74673,0,1,1 +1773662831.328076,1.00,4,3992.50,54.01,1608.58,2114.80,0.00,3517893109723.858887,0.000000,11,0,17.515429,0.033662,62726572,30539957,0,0,74676,0,1,1 +1773662836.327944,0.95,4,3992.50,54.00,1611.45,2114.29,0.00,0.000000,0.000000,11,0,0.000070,0.000078,62726577,30539964,0,0,74678,0,1,1 +1773662841.328260,0.65,4,3992.50,54.00,1611.48,2114.29,0.00,1.657610,10.674521,253,556,0.000000,0.000030,62726577,30539967,0,0,74681,0,1,1 +1773662846.327712,0.70,4,3992.50,54.02,1610.75,2115.01,0.00,48434.292323,48646.118660,3378717,3004579,0.000000,0.000020,62726577,30539969,0,0,74683,0,1,1 +1773662851.327940,0.60,4,3992.50,54.02,1610.75,2115.01,0.00,3518276512428.723145,3518276512207.912598,11,0,0.000000,0.000030,62726577,30539972,0,0,74686,0,1,1 +1773662856.328183,0.70,4,3992.50,54.02,1610.76,2115.00,0.00,0.180265,0.000000,205,0,0.000025,0.000051,62726579,30539976,0,0,74688,0,1,1 +1773662861.326261,0.70,4,3992.50,53.83,1618.39,2107.37,0.00,3519790171171.503906,0.000000,11,0,0.000056,0.000730,62726583,30539987,0,0,74691,0,1,1 +1773662866.323504,0.95,4,3992.50,53.60,1632.24,2098.43,0.00,48447.628637,48667.683072,3377214,3004052,0.000008,0.000028,62726584,30539990,0,0,74693,0,1,1 +1773662871.325226,0.60,4,3992.50,53.63,1630.65,2099.59,0.00,3517225804681.641113,3517225804461.603516,205,0,0.000000,0.000030,62726584,30539993,0,0,74696,0,1,1 +1773662876.323983,0.70,4,3992.50,53.63,1630.65,2099.59,0.00,3519311760671.049805,0.000000,75,0,0.000126,0.000175,62726594,30540005,0,0,74698,0,1,1 +1773662881.323651,0.60,4,3992.50,53.63,1630.65,2099.59,0.00,48424.080304,48644.104981,3377214,3004077,0.000008,0.000038,62726595,30540009,0,0,74701,0,1,1 +1773662886.323623,0.75,4,3992.50,53.62,1630.96,2099.27,0.00,3518456765303.379883,3518456765083.422363,11,0,0.000000,0.000020,62726595,30540011,0,0,74703,0,1,1 +1773662891.328229,0.75,4,3992.50,53.63,1630.48,2099.75,0.00,2.173389,0.000195,258,2,0.000000,0.000030,62726595,30540014,0,0,74706,0,1,1 +1773662896.328074,12.61,4,3992.50,54.18,1611.47,2121.14,0.00,3518546483677.116699,10.675332,253,556,40.066297,0.023801,62730972,30541563,0,0,74708,0,1,1 +1773662901.328076,0.60,4,3992.50,54.11,1612.00,2118.33,0.00,48428.962441,48641.053066,3378717,3004821,0.000000,0.000030,62730972,30541566,0,0,74711,0,1,1 +1773662906.328110,0.65,4,3992.50,54.06,1613.57,2116.75,0.00,3518413610305.073730,3518413610081.791504,258,2,0.000000,0.000020,62730972,30541568,0,0,74713,0,1,1 +1773662911.328066,0.65,4,3992.50,54.07,1613.33,2117.00,0.00,0.000000,0.000000,258,2,0.000000,0.000030,62730972,30541571,0,0,74716,0,1,1 +1773662916.323433,0.55,4,3992.50,54.07,1613.34,2116.99,0.00,0.000000,0.000000,258,2,0.000000,0.000020,62730972,30541573,0,0,74718,0,1,1 +1773662921.327734,0.65,4,3992.50,54.08,1613.11,2117.22,0.00,48377.120052,48599.304482,3377214,3004304,0.000000,0.000030,62730972,30541576,0,0,74721,0,1,1 +1773662926.324811,0.90,4,3992.50,53.95,1616.94,2112.19,0.00,3520495332864.831543,3520495332642.325684,258,2,0.000000,0.000664,62730972,30541582,0,0,74723,0,1,1 +1773662931.327404,0.75,4,3992.50,53.92,1617.98,2111.10,0.00,3516613940205.107422,3516613940207.102051,205,0,0.000000,0.000030,62730972,30541585,0,0,74726,0,1,1 +1773662936.326827,0.60,4,3992.50,53.93,1617.74,2111.34,0.00,3518843070131.422363,0.000000,11,0,0.000000,0.000020,62730972,30541587,0,0,74728,0,1,1 +1773662941.327719,0.60,4,3992.50,53.93,1617.75,2111.34,0.00,48412.278030,48632.510217,3377214,3004350,0.000157,0.000210,62730984,30541602,0,0,74731,0,1,1 +1773662946.327723,0.50,4,3992.50,53.93,1617.75,2111.34,0.00,3518434561042.829590,3518434560822.558594,11,0,0.000016,0.000036,62730986,30541606,0,0,74733,0,1,1 +1773662951.323687,0.60,4,3992.50,53.93,1617.75,2111.33,0.00,48460.030931,48680.488951,3377214,3004358,0.000000,0.000030,62730986,30541609,0,0,74736,0,1,1 +1773662956.328317,0.95,4,3992.50,53.91,1612.95,2110.70,0.00,3515182653913.647949,3515182653691.397949,258,2,0.000000,0.000020,62730986,30541611,0,0,74738,0,1,1 +1773662961.327998,15.85,4,3992.50,54.88,1575.00,2148.68,0.00,3518661575632.715820,3518661575634.837891,75,0,40.071801,0.028588,62735542,30543588,0,0,74741,0,1,1 +1773662966.324112,0.75,4,3992.50,54.29,1598.10,2125.59,0.00,0.000000,0.000000,75,0,0.000619,0.000273,62735554,30543597,0,0,74743,0,1,1 +1773662971.326288,0.65,4,3992.50,54.00,1609.34,2114.35,0.00,2.120952,0.000195,258,2,0.000000,0.000030,62735554,30543600,0,0,74746,0,1,1 +1773662976.325851,0.70,4,3992.50,53.98,1610.36,2113.33,0.00,3518744903417.857422,3518744903420.032715,11,0,0.000000,0.000020,62735554,30543602,0,0,74748,0,1,1 +1773662981.328118,0.65,4,3992.50,53.97,1610.61,2113.07,0.00,0.000000,0.000000,11,0,0.000000,0.000030,62735554,30543605,0,0,74751,0,1,1 +1773662986.323414,0.95,4,3992.50,53.96,1612.92,2112.63,0.00,48476.246753,48697.911339,3378717,3005110,0.000000,0.000020,62735554,30543607,0,0,74753,0,1,1 +1773662991.324360,0.85,4,3992.50,53.77,1618.57,2105.08,0.00,3517771494665.460449,3517771494441.871582,258,2,0.000000,0.000674,62735554,30543614,0,0,74756,0,1,1 +1773662996.323553,0.75,4,3992.50,53.77,1618.34,2105.31,0.00,48426.565616,48649.332078,3377214,3004594,0.000000,0.000020,62735554,30543616,0,0,74758,0,1,1 +1773663001.327077,0.65,4,3992.50,53.77,1618.46,2105.18,0.00,3515958666970.244141,3515958666749.844238,11,0,0.000000,0.000030,62735554,30543619,0,0,74761,0,1,1 +1773663006.323453,0.70,4,3992.50,53.64,1623.39,2100.25,0.00,48456.076477,48676.811302,3377222,3004629,0.000132,0.000169,62735564,30543631,0,0,74763,0,1,1 +1773663011.323437,0.70,4,3992.50,53.68,1621.95,2101.70,0.00,0.000000,0.010938,3377222,3004641,0.000041,0.000077,62735568,30543638,0,0,74766,0,1,1 +1773663016.327561,0.85,4,3992.50,53.70,1620.04,2102.39,0.00,3515537403186.567871,3515537402963.990234,258,2,0.000000,0.000020,62735568,30543640,0,0,74768,0,1,1 +1773663021.325802,0.65,4,3992.50,53.68,1618.83,2101.58,0.00,48435.817554,48658.703799,3377222,3004675,0.000000,0.000030,62735568,30543643,0,0,74771,0,1,1 +1773663026.323980,12.41,4,3992.50,53.57,1623.16,2097.23,0.00,9.729716,10.696670,3378725,3005285,40.079670,0.023046,62740010,30545203,0,0,74773,0,1,1 +1773663031.328278,0.50,4,3992.50,53.62,1621.23,2099.17,0.00,3515415360733.503418,3515415360512.094727,11,0,0.000000,0.000030,62740010,30545206,0,0,74776,0,1,1 +1773663036.323414,0.50,4,3992.50,53.62,1621.23,2099.17,0.00,2.177509,0.000196,258,2,0.000000,0.000020,62740010,30545208,0,0,74778,0,1,1 +1773663041.323501,0.60,4,3992.50,53.62,1621.23,2099.17,0.00,3518375861072.160645,3518375861074.336426,11,0,0.000000,0.000030,62740010,30545211,0,0,74781,0,1,1 +1773663046.323458,0.95,4,3992.50,53.78,1618.36,2105.68,0.00,2.175409,0.000195,258,2,0.000000,0.000020,62740010,30545213,0,0,74783,0,1,1 +1773663051.325962,0.80,4,3992.50,53.80,1617.09,2106.38,0.00,48404.265518,48628.092032,3378725,3005403,0.000000,0.000030,62740010,30545216,0,0,74786,0,1,1 +1773663056.327819,0.60,4,3992.50,53.80,1617.09,2106.38,0.00,3517130283470.924316,3517130283249.189453,75,0,0.000000,0.000664,62740010,30545222,0,0,74788,0,1,1 +1773663061.325535,0.70,4,3992.50,53.80,1617.09,2106.38,0.00,0.126816,0.000000,205,0,0.001447,0.001787,62740027,30545250,0,0,74791,0,1,1 +1773663066.328163,0.60,4,3992.50,53.80,1617.09,2106.38,0.00,3516588595227.244141,0.000000,11,0,0.000008,0.000028,62740028,30545253,0,0,74793,0,1,1 +1773663071.328354,0.70,4,3992.50,53.70,1620.98,2102.48,0.00,48419.099100,48639.959511,3377222,3004893,0.001283,0.001412,62740049,30545282,0,0,74796,0,1,1 +1773663076.327493,0.95,4,3992.50,53.70,1618.52,2102.45,0.00,3519043515589.663574,3519043515368.576660,205,0,0.000000,0.000020,62740049,30545284,0,0,74798,0,1,1 +1773663081.328179,0.65,4,3992.50,53.70,1618.53,2102.45,0.00,48414.124091,48635.195998,3377222,3004930,0.000000,0.000030,62740049,30545287,0,0,74801,0,1,1 +1773663086.324455,0.80,4,3992.50,53.41,1629.96,2091.03,0.00,3521059346879.632324,3521059346667.569824,253,556,0.000000,0.000020,62740049,30545289,0,0,74803,0,1,1 +1773663091.328010,12.63,4,3992.50,55.14,1562.12,2158.86,0.00,3515937383027.709473,3515937383018.698730,11,0,40.035247,0.024201,62744383,30546943,0,0,74806,0,1,1 +1773663096.328145,0.70,4,3992.50,54.36,1592.88,2128.12,0.00,0.180269,0.000000,205,0,0.000000,0.000020,62744383,30546945,0,0,74808,0,1,1 +1773663101.327830,0.70,4,3992.50,54.00,1606.83,2114.16,0.00,3518658913247.611328,0.000000,75,0,0.000000,0.000030,62744383,30546948,0,0,74811,0,1,1 +1773663106.327366,0.95,4,3992.50,53.84,1611.05,2107.80,0.00,0.000000,0.000000,75,0,0.000062,0.000070,62744387,30546954,0,0,74813,0,1,1 +1773663111.323471,0.75,4,3992.50,53.79,1612.72,2106.14,0.00,1.605450,10.683518,253,556,0.000008,0.000038,62744388,30546958,0,0,74816,0,1,1 +1773663116.327903,0.85,4,3992.50,53.79,1612.72,2106.14,0.00,3515321371443.006836,3515321371433.997559,11,0,0.002116,0.002127,62744422,30546988,0,0,74818,0,1,1 +1773663121.327490,0.75,4,3992.50,53.79,1612.73,2106.13,0.00,48434.667777,48656.777202,3378725,3005690,0.001064,0.001075,62744444,30547008,0,0,74821,0,1,1 +1773663126.327209,0.55,4,3992.50,53.79,1612.73,2106.13,0.00,3518635472860.614746,3518635472647.529297,253,556,0.000000,0.000020,62744444,30547010,0,0,74823,0,1,1 +1773663131.327563,0.65,4,3992.50,53.78,1613.33,2105.52,0.00,3518187477380.015625,3518187477370.818848,205,0,0.000000,0.000030,62744444,30547013,0,0,74826,0,1,1 +1773663136.327567,1.05,4,3992.50,53.98,1612.75,2113.34,0.00,3518434533465.400391,0.000000,11,0,0.000107,0.000138,62744452,30547023,0,0,74828,0,1,1 +1773663141.323434,0.65,4,3992.50,53.84,1618.06,2107.77,0.00,1.659086,10.684027,253,556,0.000000,0.000030,62744452,30547026,0,0,74831,0,1,1 +1773663146.323433,0.60,4,3992.50,53.83,1618.29,2107.54,0.00,48419.297396,48631.489026,3377222,3005179,0.000000,0.000020,62744452,30547028,0,0,74833,0,1,1 +1773663151.328046,0.65,4,3992.50,53.83,1618.11,2107.73,0.00,3515194546757.525391,3515194546534.346680,258,2,0.000000,0.000030,62744452,30547031,0,0,74836,0,1,1 +1773663156.324596,16.62,4,3992.50,55.19,1564.94,2160.88,0.00,3520866564560.172363,3520866564562.349609,11,0,40.091681,0.025180,62748806,30548762,0,0,74838,0,1,1 +1773663161.327819,0.85,4,3992.50,54.37,1596.99,2128.83,0.00,48389.751769,48610.921193,3377222,3005310,0.000919,0.000662,62748829,30548783,0,0,74841,0,1,1 +1773663166.323907,0.90,4,3992.50,54.02,1606.41,2115.12,0.00,3521192676833.893555,3521192676612.408203,11,0,0.000025,0.000051,62748831,30548787,0,0,74843,0,1,1 +1773663171.328108,0.75,4,3992.50,53.92,1610.53,2110.91,0.00,0.000000,0.000000,11,0,0.000000,0.000030,62748831,30548790,0,0,74846,0,1,1 +1773663176.323322,0.70,4,3992.50,53.90,1611.15,2110.29,0.00,48477.070521,48699.651026,3378725,3005935,0.000000,0.000020,62748831,30548792,0,0,74848,0,1,1 +1773663181.327305,0.60,4,3992.50,53.91,1610.91,2110.54,0.00,3515636719459.849609,3515636719458.903809,3377222,3005380,0.000000,0.000030,62748831,30548795,0,0,74851,0,1,1 +1773663186.323706,0.60,4,3992.50,53.91,1610.91,2110.54,0.00,3520971440921.758301,3520971440700.178223,11,0,0.000000,0.000664,62748831,30548801,0,0,74853,0,1,1 +1773663191.324054,0.75,4,3992.50,53.91,1610.91,2110.53,0.00,2.175239,0.000195,258,2,0.000000,0.000030,62748831,30548804,0,0,74856,0,1,1 +1773663196.327474,0.90,4,3992.50,53.91,1612.98,2110.56,0.00,3516032319424.096680,3516032319426.216797,75,0,0.000000,0.000020,62748831,30548806,0,0,74858,0,1,1 +1773663201.323477,0.65,4,3992.50,53.91,1613.00,2110.56,0.00,1.605483,10.683736,253,556,0.000094,0.000148,62748838,30548817,0,0,74861,0,1,1 +1773663206.327508,0.65,4,3992.50,53.91,1613.00,2110.55,0.00,0.517259,3515602883421.952637,258,2,0.000079,0.000098,62748845,30548825,0,0,74863,0,1,1 +1773663211.327912,0.70,4,3992.50,53.72,1620.17,2103.39,0.00,3518153128570.352051,3518153128572.527344,11,0,0.000000,0.000030,62748845,30548828,0,0,74866,0,1,1 +1773663216.327927,0.60,4,3992.50,53.72,1620.17,2103.39,0.00,0.180273,0.000000,205,0,0.000000,0.000020,62748845,30548830,0,0,74868,0,1,1 +1773663221.327561,16.06,4,3992.50,54.25,1599.36,2124.20,0.00,3518695308702.607910,0.000000,11,0,40.066048,0.023785,62753189,30550423,0,0,74871,0,1,1 +1773663226.327810,1.00,4,3992.50,53.86,1609.61,2108.87,0.00,1.657632,10.674663,253,556,0.003085,0.001428,62753245,30550462,0,0,74873,0,1,1 +1773663231.323656,0.80,4,3992.50,53.38,1628.66,2089.83,0.00,3521362879000.571289,3521362878991.546875,11,0,0.000000,0.000030,62753245,30550465,0,0,74876,0,1,1 +1773663236.326574,0.65,4,3992.50,53.38,1628.66,2089.82,0.00,1.656748,10.668968,253,556,0.000000,0.000020,62753245,30550467,0,0,74878,0,1,1 +1773663241.328106,0.65,4,3992.50,53.39,1628.21,2090.28,0.00,3517359138305.651855,3517359138296.637207,11,0,0.000000,0.000030,62753245,30550470,0,0,74881,0,1,1 +1773663246.327754,0.70,4,3992.50,53.39,1628.21,2090.28,0.00,0.180286,0.000000,205,0,0.000000,0.000020,62753245,30550472,0,0,74883,0,1,1 +1773663251.327640,0.65,4,3992.50,53.39,1628.21,2090.27,0.00,48431.601580,48654.484898,3378725,3006211,0.000000,0.000674,62753245,30550479,0,0,74886,0,1,1 +1773663256.328130,0.85,4,3992.50,53.79,1613.57,2105.95,0.00,3518092708217.175293,3518092707994.499023,11,0,0.000000,0.000020,62753245,30550481,0,0,74888,0,1,1 +1773663261.323411,0.65,4,3992.50,53.61,1620.43,2099.09,0.00,0.000000,0.000000,11,0,0.000000,0.000030,62753245,30550484,0,0,74891,0,1,1 +1773663266.325926,0.65,4,3992.50,53.61,1620.39,2099.12,0.00,1.656881,10.669828,253,556,0.000056,0.000076,62753249,30550490,0,0,74893,0,1,1 +1773663271.326645,0.65,4,3992.50,53.61,1620.40,2099.12,0.00,0.000000,0.000000,253,556,0.000117,0.000170,62753259,30550503,0,0,74896,0,1,1 +1773663276.327743,0.60,4,3992.50,53.61,1620.73,2098.79,0.00,48418.382417,48632.073764,3378725,3006251,0.000000,0.000020,62753259,30550505,0,0,74898,0,1,1 +1773663281.327425,0.75,4,3992.50,53.61,1620.52,2099.00,0.00,3518661589135.643555,3518661588910.698242,258,2,0.000000,0.000030,62753259,30550508,0,0,74901,0,1,1 +1773663286.327464,18.84,4,3992.50,55.51,1546.76,2173.33,0.00,3518409067239.599121,10.674915,253,556,40.062611,0.025136,62757657,30552280,0,0,74903,0,1,1 +1773663291.325790,0.85,4,3992.50,54.49,1586.04,2133.29,0.00,3519616135982.888184,3519616135973.814453,75,0,0.003086,0.001451,62757713,30552321,0,0,74906,0,1,1 +1773663296.323440,0.95,4,3992.50,53.77,1614.29,2105.03,0.00,1.604953,10.680214,253,556,0.000000,0.000020,62757713,30552323,0,0,74908,0,1,1 +1773663301.328397,0.80,4,3992.50,53.54,1623.24,2096.08,0.00,0.000000,0.000000,253,556,0.000000,0.000030,62757713,30552326,0,0,74911,0,1,1 +1773663306.327428,0.85,4,3992.50,53.57,1622.12,2097.21,0.00,3519118737604.212891,3519118737595.194336,11,0,0.000000,0.000020,62757713,30552328,0,0,74913,0,1,1 +1773663311.323503,0.85,4,3992.50,53.57,1621.91,2097.43,0.00,0.180415,0.000000,205,0,0.000000,0.000030,62757713,30552331,0,0,74916,0,1,1 +1773663316.327760,1.05,4,3992.50,53.87,1612.96,2109.30,0.00,0.000000,0.000000,205,0,0.000000,0.000663,62757713,30552337,0,0,74918,0,1,1 +1773663321.327668,0.75,4,3992.50,53.81,1615.37,2106.90,0.00,1.995154,0.000195,258,2,0.000000,0.000030,62757713,30552340,0,0,74921,0,1,1 +1773663326.327847,0.65,4,3992.50,53.81,1615.45,2106.82,0.00,3518310847339.798340,3518310847341.793457,205,0,0.000000,0.000020,62757713,30552342,0,0,74923,0,1,1 +1773663331.328272,0.60,4,3992.50,53.81,1615.62,2106.65,0.00,48426.378540,48649.684658,3378725,3006592,0.000056,0.000086,62757717,30552349,0,0,74926,0,1,1 +1773663336.325567,0.70,4,3992.50,53.81,1615.61,2106.66,0.00,3520341569489.986328,3520341569275.743164,253,556,0.000117,0.000160,62757727,30552361,0,0,74928,0,1,1 +1773663341.323426,0.55,4,3992.50,53.81,1615.61,2106.66,0.00,3519945025908.812012,3519945025899.610840,205,0,0.000000,0.000030,62757727,30552364,0,0,74931,0,1,1 +1773663346.327889,1.15,4,3992.50,53.81,1615.38,2106.86,0.00,3515299300866.189941,0.000000,75,0,0.000000,0.000020,62757727,30552366,0,0,74933,0,1,1 +1773663351.323464,15.09,4,3992.50,55.27,1558.47,2163.77,0.00,48463.785576,48686.292065,3377222,3006095,40.097777,0.021770,62762083,30553869,0,0,74936,0,1,1 +1773663356.324252,0.90,4,3992.50,54.38,1593.15,2129.09,0.00,3517882229315.862305,3517882229093.461426,205,0,0.003084,0.001428,62762139,30553908,0,0,74938,0,1,1 +1773663361.323420,0.65,4,3992.50,53.84,1614.12,2108.12,0.00,3519023176211.987793,0.000000,11,0,0.001434,0.001761,62762155,30553934,0,0,74941,0,1,1 +1773663366.327464,0.60,4,3992.50,53.69,1620.08,2102.16,0.00,1.656375,10.666568,253,556,0.000000,0.000032,62762155,30553937,0,0,74943,0,1,1 +1773663371.328233,0.65,4,3992.50,53.68,1620.48,2101.77,0.00,3517895980584.982422,3517895980575.913086,75,0,0.000205,0.000562,62762162,30553951,0,0,74946,0,1,1 +1773663376.327457,1.00,4,3992.50,53.77,1615.23,2105.38,0.00,0.000000,0.000000,75,0,0.000000,0.000020,62762162,30553953,0,0,74948,0,1,1 +1773663381.327498,0.60,4,3992.50,53.78,1615.01,2105.61,0.00,3518408425487.499512,0.000000,11,0,0.000000,0.000030,62762162,30553956,0,0,74951,0,1,1 +1773663386.323448,0.65,4,3992.50,53.61,1621.60,2099.03,0.00,48460.201153,48682.855721,3377222,3006277,0.000000,0.000664,62762162,30553962,0,0,74953,0,1,1 +1773663391.327660,0.60,4,3992.50,53.62,1621.27,2099.36,0.00,3515475876859.991211,3515475876646.713867,253,556,0.000000,0.000030,62762162,30553965,0,0,74956,0,1,1 +1773663396.323429,0.65,4,3992.50,53.66,1619.82,2100.81,0.00,3521416905095.625488,3521416905086.600586,11,0,0.000056,0.000076,62762166,30553971,0,0,74958,0,1,1 +1773663401.327964,0.55,4,3992.50,53.61,1621.50,2099.12,0.00,2.173419,0.000195,258,2,0.000109,0.000162,62762175,30553983,0,0,74961,0,1,1 +1773663406.328088,0.85,4,3992.50,53.77,1613.16,2105.21,0.00,3518350038944.129395,3518350038946.304688,11,0,0.000062,0.000058,62762179,30553988,0,0,74963,0,1,1 +1773663411.323507,0.75,4,3992.50,53.81,1611.68,2106.69,0.00,48465.352462,48688.083090,3377222,3006311,0.000000,0.000042,62762179,30553992,0,0,74966,0,1,1 +1773663416.328130,15.26,4,3992.50,58.38,1432.75,2285.60,0.00,3515187099319.523926,3515187099097.203125,11,0,40.025843,0.022248,62766466,30555429,0,0,74968,0,1,1 +1773663421.323778,1.60,4,3992.50,54.61,1580.20,2138.16,0.00,48463.129758,48685.962085,3377222,3006447,0.005628,0.003231,62766569,30555510,0,0,74971,0,1,1 +1773663426.327851,0.75,4,3992.50,54.21,1595.88,2122.47,0.00,3515573725662.752441,3515573725440.242188,75,0,0.000000,0.000020,62766569,30555512,0,0,74973,0,1,1 +1773663431.323504,0.65,4,3992.50,53.68,1616.74,2101.62,0.00,1.605595,10.684482,253,556,0.000000,0.000030,62766569,30555515,0,0,74976,0,1,1 +1773663436.327762,0.95,4,3992.50,54.02,1595.84,2114.96,0.00,3515444073317.648438,3515444073308.585449,75,0,0.000000,0.000020,62766569,30555517,0,0,74978,0,1,1 +1773663441.328083,0.65,4,3992.50,53.91,1599.70,2110.86,0.00,48417.784391,48640.603355,3377223,3006550,0.000000,0.000030,62766569,30555520,0,0,74981,0,1,1 +1773663446.323507,0.70,4,3992.50,53.92,1599.45,2111.11,0.00,3521660645622.665527,3521660645399.681641,11,0,0.000000,0.000020,62766569,30555522,0,0,74983,0,1,1 +1773663451.328237,0.65,4,3992.50,53.92,1599.46,2111.11,0.00,48375.184938,48597.761953,3377223,3006558,0.000000,0.000673,62766569,30555529,0,0,74986,0,1,1 +1773663456.326884,0.70,4,3992.50,53.93,1599.22,2111.34,0.00,3519389974060.391602,3519389973837.490234,75,0,0.000000,0.000020,62766569,30555531,0,0,74988,0,1,1 +1773663461.327868,0.70,4,3992.50,53.93,1599.22,2111.34,0.00,0.126733,0.000000,205,0,0.000210,0.000234,62766583,30555548,0,0,74991,0,1,1 +1773663466.326565,0.80,4,3992.50,53.94,1605.45,2112.04,0.00,0.000000,0.000000,205,0,0.000310,0.000414,62766605,30555576,0,0,74993,0,1,1 +1773663471.327754,0.60,4,3992.50,53.95,1605.33,2112.12,0.00,48418.988214,48642.892698,3378726,3007143,0.000000,0.000030,62766605,30555579,0,0,74996,0,1,1 +1773663476.327706,0.60,4,3992.50,53.89,1607.64,2109.80,0.00,3518470834195.542480,3518470834194.609375,3377223,3006599,0.000000,0.000020,62766605,30555581,0,0,74998,0,1,1 +1773663481.327575,0.85,4,3992.50,53.74,1613.37,2104.08,0.00,3518529281892.199707,3518529281669.349121,11,0,0.000971,0.000375,62766623,30555597,0,0,75001,0,1,1 +1773663486.323543,0.90,4,3992.50,53.75,1612.93,2104.52,0.00,0.053559,0.000000,75,0,0.002334,0.002112,62766651,30555626,0,0,75003,0,1,1 +1773663491.327695,1.15,4,3992.50,53.81,1610.67,2106.73,0.00,3515518077354.506836,0.000000,11,0,0.001657,0.001502,62766694,30555665,0,0,75006,0,1,1 +1773663496.327967,12.15,4,3992.50,59.16,1401.46,2316.14,0.00,0.000000,0.000000,11,0,1.288543,0.024905,62769184,30557139,0,0,75008,0,1,1 +1773663501.327623,0.71,4,3992.50,58.95,1409.70,2307.91,0.00,0.053519,0.000000,75,0,4.976998,0.138582,62778499,30565059,0,0,75011,0,1,1 +1773663506.327908,0.86,4,3992.50,58.91,1411.35,2306.26,0.00,0.126751,0.000000,205,0,3.791005,0.112850,62785707,30571612,0,0,75013,0,1,1 +1773663511.324255,0.71,4,3992.50,59.06,1405.34,2312.27,0.00,48465.899166,48690.263533,3378726,3007391,4.530358,0.124095,62794180,30578771,0,0,75016,0,1,1 +1773663516.327590,0.65,4,3992.50,59.15,1401.71,2315.90,0.00,3516092152719.772949,3516092152495.901855,11,0,5.988297,0.178422,62805764,30588779,0,0,75018,0,1,1 +1773663521.327482,0.81,4,3992.50,59.21,1399.51,2318.09,0.00,1.657751,10.675427,253,556,3.523413,0.110982,62812509,30595142,0,0,75021,0,1,1 +1773663526.323915,0.96,4,3992.50,59.83,1374.55,2342.63,0.00,0.518045,3520948829130.691406,258,2,3.893472,0.111910,62819784,30601655,0,0,75023,0,1,1 +1773663531.325268,0.66,4,3992.50,59.40,1391.66,2325.56,0.00,3517485817608.004395,3517485817610.179199,11,0,6.560702,0.174992,62832168,30611542,0,0,75026,0,1,1 +1773663536.323451,0.81,4,3992.50,59.07,1404.36,2312.85,0.00,0.000000,0.000000,11,0,4.283412,0.137734,62840467,30619303,0,0,75028,0,1,1 +1773663541.327830,0.75,4,3992.50,53.67,1615.74,2101.48,0.00,48388.301820,48612.211486,3378726,3007479,1.720772,0.055763,62843845,30622639,0,0,75031,0,1,1 +1773663546.325178,0.70,4,3992.50,53.70,1614.76,2102.46,0.00,3520304383406.286621,3520304383181.881348,205,0,1.127045,0.036986,62845993,30624885,0,0,75033,0,1,1 +1773663551.326578,0.75,4,3992.50,53.70,1614.76,2102.46,0.00,3517452591594.241699,0.000000,11,0,0.547263,0.018509,62847037,30625953,0,0,75036,0,1,1 +1773663556.328127,1.10,4,3992.50,53.79,1613.12,2106.06,0.00,0.000000,0.000000,11,0,0.001530,0.000887,62847067,30625982,0,0,75038,0,1,1 +1773663561.327672,0.85,4,3992.50,53.79,1611.13,2106.06,0.00,2.175589,0.000195,258,2,0.001533,0.000855,62847097,30626015,0,0,75041,0,1,1 +1773663566.325316,0.60,4,3992.50,53.60,1618.79,2098.41,0.00,48441.604727,48667.175084,3377223,3007047,0.000000,0.000020,62847097,30626017,0,0,75043,0,1,1 +1773663571.328396,0.65,4,3992.50,53.60,1618.79,2098.40,0.00,3516271185233.610840,3516271185010.279297,205,0,0.000000,0.000030,62847097,30626020,0,0,75046,0,1,1 +1773663576.328097,0.60,4,3992.50,53.60,1618.79,2098.40,0.00,1.995236,0.000195,258,2,0.000000,0.000020,62847097,30626022,0,0,75048,0,1,1 +1773663581.325976,0.70,4,3992.50,53.60,1618.79,2098.40,0.00,3519930512649.544434,3519930512651.720703,11,0,0.000000,0.000674,62847097,30626029,0,0,75051,0,1,1 +1773663586.327839,1.00,4,3992.50,53.73,1616.87,2103.73,0.00,2.174580,0.000195,258,2,0.000000,0.000020,62847097,30626031,0,0,75053,0,1,1 +1773663591.328330,0.70,4,3992.50,53.73,1616.87,2103.73,0.00,3518092093193.774902,3518092093195.896484,75,0,0.000000,0.000030,62847097,30626034,0,0,75056,0,1,1 +1773663596.325646,0.85,4,3992.50,53.74,1616.62,2103.98,0.00,0.126826,0.000000,205,0,0.000025,0.000064,62847099,30626039,0,0,75058,0,1,1 +1773663601.327619,0.70,4,3992.50,53.74,1616.66,2103.93,0.00,3517049400181.828613,0.000000,75,0,0.000069,0.000108,62847105,30626048,0,0,75061,0,1,1 +1773663606.327800,0.80,4,3992.50,53.75,1615.98,2104.61,0.00,3518309397146.690918,0.000000,11,0,0.000040,0.000107,62847108,30626056,0,0,75063,0,1,1 +1773663611.327559,0.60,4,3992.50,53.75,1615.98,2104.61,0.00,0.000000,0.000000,11,0,0.000000,0.000030,62847108,30626059,0,0,75066,0,1,1 +1773663616.327571,1.05,4,3992.50,53.95,1606.35,2112.45,0.00,0.000000,0.000000,11,0,0.000000,0.000020,62847108,30626061,0,0,75068,0,1,1 +1773663621.323415,0.95,4,3992.50,53.76,1613.98,2104.82,0.00,0.000000,0.000000,11,0,0.002274,0.000822,62847135,30626086,0,0,75071,0,1,1 +1773663626.325057,0.90,4,3992.50,53.77,1613.77,2105.02,0.00,48405.064163,48628.667497,3377225,3007313,0.001376,0.001932,62847158,30626114,0,0,75073,0,1,1 +1773663631.323611,1.00,4,3992.50,53.76,1613.80,2104.99,0.00,3519454976987.292480,3519454976763.370605,205,0,0.001444,0.001320,62847201,30626152,0,0,75076,0,1,1 +1773663636.324200,14.48,4,3992.50,59.70,1381.49,2337.31,0.00,3518023006704.674316,0.000000,11,0,2.383646,0.048370,62851684,30628969,0,0,75078,0,1,1 +1773663641.327598,0.70,4,3992.50,59.58,1386.27,2332.53,0.00,0.000000,0.000000,11,0,5.226010,0.143734,62861596,30637171,0,0,75081,0,1,1 +1773663646.323610,1.06,4,3992.50,59.64,1387.05,2335.09,0.00,48459.610144,48683.594165,3377225,3007419,4.947521,0.136779,62870884,30645030,0,0,75083,0,1,1 +1773663651.327760,0.65,4,3992.50,59.34,1394.67,2323.32,0.00,3515519356035.107910,3515519355811.434570,75,0,6.590621,0.177001,62883203,30655086,0,0,75086,0,1,1 +1773663656.327316,0.76,4,3992.50,59.41,1392.05,2325.93,0.00,48425.208753,48649.122305,3377225,3007459,4.180503,0.139838,62891398,30663006,0,0,75088,0,1,1 +1773663661.323432,0.86,4,3992.50,59.62,1383.91,2334.07,0.00,3521171804599.675781,3521171804375.661621,11,0,3.453683,0.102165,62897906,30668970,0,0,75091,0,1,1 +1773663666.325831,0.81,4,3992.50,59.82,1375.82,2342.16,0.00,48397.738995,48621.478722,3377225,3007477,5.235948,0.138433,62907641,30676862,0,0,75093,0,1,1 +1773663671.328144,0.66,4,3992.50,59.36,1393.99,2324.00,0.00,3516810293867.367188,3516810293643.623535,11,0,5.448503,0.162606,62918225,30685961,0,0,75096,0,1,1 +1773663676.328059,0.91,4,3992.50,59.02,1400.09,2310.64,0.00,0.180277,0.000000,205,0,2.457159,0.081809,62923091,30690693,0,0,75098,0,1,1 +1773663681.324706,0.90,4,3992.50,53.70,1608.33,2102.44,0.00,1.996456,0.000195,258,2,1.501618,0.043809,62925959,30693390,0,0,75101,0,1,1 +1773663686.323824,0.70,4,3992.50,53.48,1616.74,2094.03,0.00,3519057824992.412598,3519057824994.534668,75,0,0.766602,0.028968,62927419,30695053,0,0,75103,0,1,1 +1773663691.327929,0.70,4,3992.50,53.48,1616.74,2094.03,0.00,48390.904041,48615.627461,3378728,3008102,0.001291,0.000783,62927442,30695076,0,0,75106,0,1,1 +1773663696.328107,0.90,4,3992.50,53.48,1616.77,2094.00,0.00,3518312315250.995605,3518312315026.149414,11,0,0.001842,0.001063,62927479,30695114,0,0,75108,0,1,1 +1773663701.323444,0.65,4,3992.50,53.48,1616.77,2094.00,0.00,1.659262,10.685160,253,556,0.000013,0.000055,62927480,30695119,0,0,75111,0,1,1 +1773663706.323507,1.00,4,3992.50,53.49,1616.54,2094.17,0.00,3518392629439.750977,3518392629430.553223,205,0,0.000031,0.000020,62927482,30695121,0,0,75113,0,1,1 +1773663711.328226,0.70,4,3992.50,53.47,1617.41,2093.32,0.00,3515119624920.541504,0.000000,11,0,0.000031,0.000739,62927484,30695133,0,0,75116,0,1,1 +1773663716.324360,0.80,4,3992.50,53.47,1617.20,2093.54,0.00,48468.160717,48693.312735,3378728,3008219,0.001939,0.001181,62927518,30695166,0,0,75118,0,1,1 +1773663721.328383,0.75,4,3992.50,53.49,1616.46,2094.28,0.00,3515608810274.222168,3515608810049.424805,11,0,0.002351,0.002360,62927556,30695205,0,0,75121,0,1,1 +1773663726.323500,0.65,4,3992.50,53.49,1616.46,2094.28,0.00,0.000000,0.000000,11,0,0.000000,0.000020,62927556,30695207,0,0,75123,0,1,1 +1773663731.328172,0.65,4,3992.50,53.53,1614.74,2096.00,0.00,48385.470634,48610.255699,3378728,3008233,0.000000,0.000030,62927556,30695210,0,0,75126,0,1,1 +1773663736.323921,0.95,4,3992.50,53.53,1615.58,2095.95,0.00,3521431367871.198242,3521431367870.280273,3377225,3007691,0.000000,0.000020,62927556,30695212,0,0,75128,0,1,1 +1773663741.328271,0.65,4,3992.50,53.52,1616.02,2095.34,0.00,3515378871540.775879,3515378871316.892578,11,0,0.000080,0.000135,62927562,30695222,0,0,75131,0,1,1 +1773663746.327699,0.70,4,3992.50,53.52,1616.02,2095.34,0.00,1.657905,10.676417,253,556,0.000000,0.000020,62927562,30695224,0,0,75133,0,1,1 +1773663751.327965,0.70,4,3992.50,53.52,1616.02,2095.34,0.00,48416.722370,48631.797146,3377225,3007714,0.000000,0.000030,62927562,30695227,0,0,75136,0,1,1 +1773663756.323508,0.75,4,3992.50,53.39,1621.16,2090.20,0.00,0.000000,0.007624,3377225,3007725,0.000058,0.000020,62927566,30695229,0,0,75138,0,1,1 +1773663761.327550,0.90,4,3992.50,53.43,1619.50,2091.87,0.00,3515595378859.194824,3515595378635.264648,11,0,0.002300,0.000973,62927596,30695264,0,0,75141,0,1,1 +1773663766.327327,1.20,4,3992.50,53.58,1620.73,2097.60,0.00,0.000000,0.000000,11,0,0.001546,0.001973,62927626,30695295,0,0,75143,0,1,1 +1773663771.327848,0.96,4,3992.50,53.58,1618.24,2097.60,0.00,0.053510,0.000000,75,0,0.001484,0.001363,62927671,30695336,0,0,75146,0,1,1 +1773663776.328158,13.72,4,3992.50,59.34,1392.50,2323.34,0.00,0.126750,0.000000,205,0,2.696802,0.061551,62932650,30698919,0,0,75148,0,1,1 +1773663781.328252,0.71,4,3992.50,59.19,1398.55,2317.29,0.00,3518371152168.311523,0.000000,11,0,5.993060,0.150332,62943745,30707577,0,0,75151,0,1,1 +1773663786.327434,0.55,4,3992.50,59.14,1400.42,2315.42,0.00,2.175747,0.000195,258,2,5.201380,0.156479,62953792,30716456,0,0,75153,0,1,1 +1773663791.327721,0.71,4,3992.50,59.36,1391.75,2324.09,0.00,3518234654964.528320,3518234654966.703613,11,0,5.656853,0.152307,62964374,30725165,0,0,75156,0,1,1 +1773663796.327793,0.86,4,3992.50,59.42,1397.23,2326.45,0.00,2.175360,0.000195,258,2,5.623760,0.159386,62975018,30734217,0,0,75158,0,1,1 +1773663801.328025,0.70,4,3992.50,59.40,1397.97,2325.71,0.00,3518273334042.197266,3518273334044.192383,205,0,4.418343,0.129615,62983398,30741677,0,0,75161,0,1,1 +1773663806.327636,0.71,4,3992.50,59.38,1399.00,2324.68,0.00,48434.277019,48659.826521,3378728,3008579,6.220912,0.162121,62994881,30750898,0,0,75163,0,1,1 +1773663811.324822,0.81,4,3992.50,53.99,1609.85,2113.84,0.00,3520418103945.764648,3520418103729.308594,253,556,4.119659,0.129096,63002620,30758258,0,0,75166,0,1,1 +1773663816.328270,0.65,4,3992.50,53.86,1615.08,2108.61,0.00,3516012582075.398438,3516012582066.387695,11,0,1.367534,0.040435,63005198,30760703,0,0,75168,0,1,1 +1773663821.328301,0.70,4,3992.50,53.70,1621.28,2102.41,0.00,0.000000,0.000000,11,0,0.481141,0.020037,63006128,30761841,0,0,75171,0,1,1 +1773663826.327967,1.10,4,3992.50,53.75,1620.90,2104.50,0.00,0.180285,0.000000,205,0,0.002467,0.001612,63006164,30761874,0,0,75173,0,1,1 +1773663831.327757,0.75,4,3992.50,53.78,1619.67,2105.74,0.00,1.477504,10.675646,253,556,0.001112,0.000773,63006186,30761901,0,0,75176,0,1,1 +1773663836.324827,0.50,4,3992.50,53.78,1619.67,2105.74,0.00,3520500219898.155762,3520500219889.079590,75,0,0.000000,0.000020,63006186,30761903,0,0,75178,0,1,1 +1773663841.324575,0.55,4,3992.50,53.78,1619.67,2105.74,0.00,0.000000,0.000000,75,0,0.000000,0.000674,63006186,30761910,0,0,75181,0,1,1 +1773663846.326994,0.65,4,3992.50,53.59,1627.31,2098.10,0.00,1.603424,10.670035,253,556,0.000000,0.000020,63006186,30761912,0,0,75183,0,1,1 +1773663851.325119,0.70,4,3992.50,53.59,1627.07,2098.34,0.00,3519757146673.733887,3519757146664.532715,205,0,0.000000,0.000030,63006186,30761915,0,0,75186,0,1,1 +1773663856.327445,0.95,4,3992.50,53.85,1616.89,2108.33,0.00,48407.985902,48633.633961,3378728,3008768,0.000000,0.000020,63006186,30761917,0,0,75188,0,1,1 +1773663861.327558,0.85,4,3992.50,53.87,1615.91,2109.07,0.00,3518357623624.027344,3518357623623.105469,3377225,3008240,0.000000,0.000030,63006186,30761920,0,0,75191,0,1,1 +1773663866.326717,0.60,4,3992.50,53.67,1623.79,2101.19,0.00,3519028838710.290039,3519028838485.601074,11,0,0.000027,0.000051,63006188,30761924,0,0,75193,0,1,1 +1773663871.327415,0.65,4,3992.50,53.68,1623.32,2101.65,0.00,0.180248,0.000000,205,0,0.000058,0.000100,63006193,30761932,0,0,75196,0,1,1 +1773663876.326335,0.75,4,3992.50,53.59,1626.65,2098.32,0.00,0.000000,0.000000,205,0,0.000048,0.000090,63006197,30761939,0,0,75198,0,1,1 +1773663881.327915,0.60,4,3992.50,53.60,1626.42,2098.56,0.00,1.476975,10.671824,253,556,0.000000,0.000030,63006197,30761942,0,0,75201,0,1,1 +1773663886.327590,0.95,4,3992.50,53.68,1621.39,2101.54,0.00,48432.171452,48648.816572,3378728,3008830,0.000000,0.000020,63006197,30761944,0,0,75203,0,1,1 +1773663891.324935,0.95,4,3992.50,53.67,1621.59,2101.23,0.00,3520306773555.706543,3520306773338.960449,253,556,0.000576,0.000117,63006209,30761952,0,0,75206,0,1,1 +1773663896.323437,1.30,4,3992.50,53.65,1622.13,2100.68,0.00,0.517831,3519491466206.142090,258,2,0.001925,0.001379,63006236,30761985,0,0,75208,0,1,1 +1773663901.325199,1.10,4,3992.50,53.69,1620.68,2102.13,0.00,0.000000,0.000000,258,2,0.001912,0.001995,63006268,30762014,0,0,75211,0,1,1 +1773663906.323420,10.45,4,3992.50,59.20,1405.17,2317.65,0.00,3519689087672.281250,3519689087674.277344,205,0,0.198942,0.004110,63006704,30762220,0,0,75213,0,1,1 +1773663911.323421,0.65,4,3992.50,59.43,1395.83,2326.98,0.00,48430.493102,48656.498322,3378728,3009002,3.159414,0.086075,63012673,30767284,0,0,75216,0,1,1 +1773663916.326292,0.81,4,3992.50,59.87,1382.07,2343.87,0.00,3516418383955.002930,3516418383729.307129,11,0,5.283609,0.138848,63022524,30775279,0,0,75218,0,1,1 +1773663921.323402,0.61,4,3992.50,59.43,1398.97,2326.96,0.00,0.000000,0.000000,11,0,5.219357,0.162022,63032591,30784379,0,0,75221,0,1,1 +1773663926.324326,0.76,4,3992.50,59.79,1384.84,2341.10,0.00,0.000000,0.000000,11,0,5.792976,0.155552,63043326,30793276,0,0,75223,0,1,1 +1773663931.323434,0.66,4,3992.50,59.30,1404.40,2321.53,0.00,2.175779,0.000195,258,2,6.785625,0.180936,63055933,30803539,0,0,75226,0,1,1 +1773663936.325848,0.60,4,3992.50,59.29,1404.70,2321.23,0.00,3516738969302.618164,3516738969304.792480,11,0,4.856412,0.139292,63065257,30811434,0,0,75228,0,1,1 +1773663941.328124,0.70,4,3992.50,59.61,1392.04,2333.89,0.00,0.000000,0.000000,11,0,4.698529,0.128043,63073996,30818852,0,0,75231,0,1,1 +1773663946.327446,1.01,4,3992.50,54.11,1602.58,2118.54,0.00,1.657940,10.676644,253,556,4.032532,0.120444,63081490,30825775,0,0,75233,0,1,1 +1773663951.323481,0.75,4,3992.50,53.86,1611.46,2108.62,0.00,3521229301457.021484,3521229301447.997070,11,0,1.574004,0.052436,63084435,30828758,0,0,75236,0,1,1 +1773663956.328182,1.70,4,3992.50,53.73,1616.52,2103.57,0.00,2.173347,0.000195,258,2,0.001079,0.003071,63084466,30828913,0,0,75238,0,1,1 +1773663961.323560,0.80,4,3992.50,53.76,1615.31,2104.76,0.00,3521692584735.113281,10.684877,253,556,0.002220,0.001129,63084508,30828956,0,0,75241,0,1,1 +1773663966.323417,0.80,4,3992.50,53.76,1615.32,2104.77,0.00,3518538134629.576172,3518538134620.378418,205,0,0.002529,0.002562,63084538,30828995,0,0,75243,0,1,1 +1773663971.323456,0.50,4,3992.50,53.76,1615.32,2104.77,0.00,0.000000,0.000000,205,0,0.000000,0.000674,63084538,30829002,0,0,75246,0,1,1 +1773663976.323589,0.90,4,3992.50,53.86,1614.38,2108.62,0.00,3518344042429.161133,0.000000,75,0,0.000205,0.000565,63084545,30829016,0,0,75248,0,1,1 +1773663981.327076,0.65,4,3992.50,53.71,1620.04,2102.96,0.00,0.126669,0.000000,205,0,0.000000,0.000030,63084545,30829019,0,0,75251,0,1,1 +1773663986.327417,0.65,4,3992.50,53.72,1619.82,2103.18,0.00,48427.197061,48653.533262,3378728,3009330,0.000000,0.000020,63084545,30829021,0,0,75253,0,1,1 +1773663991.323434,0.60,4,3992.50,53.72,1619.82,2103.18,0.00,3521242532265.279297,3521242532038.873535,75,0,0.000000,0.000030,63084545,30829024,0,0,75256,0,1,1 +1773663996.326694,0.50,4,3992.50,53.72,1619.82,2103.18,0.00,48389.352444,48614.524271,3377225,3008815,0.000000,0.000020,63084545,30829026,0,0,75258,0,1,1 +1773664001.327850,0.45,4,3992.50,53.72,1619.82,2103.18,0.00,3517623765544.968262,3517623765319.701660,75,0,0.000053,0.000104,63084549,30829034,0,0,75261,0,1,1 +1773664006.328298,0.85,4,3992.50,53.95,1612.64,2112.25,0.00,0.000000,0.000000,75,0,0.000071,0.000121,63084555,30829043,0,0,75263,0,1,1 +1773664011.324501,0.65,4,3992.50,53.95,1612.65,2112.25,0.00,0.000000,0.000000,75,0,0.000070,0.000088,63084560,30829051,0,0,75266,0,1,1 +1773664016.325719,0.85,4,3992.50,53.95,1612.65,2112.25,0.00,48409.115416,48634.439349,3377225,3008859,0.001134,0.000707,63084584,30829072,0,0,75268,0,1,1 +1773664021.327775,1.10,4,3992.50,53.89,1615.08,2109.82,0.00,3516991241658.457520,3516991241433.171387,75,0,0.003014,0.001718,63084627,30829111,0,0,75271,0,1,1 +1773664026.328056,1.15,4,3992.50,53.92,1613.88,2111.02,0.00,3518238899125.710938,0.000000,11,0,0.003581,0.003290,63084672,30829163,0,0,75273,0,1,1 +1773664031.327965,16.45,4,3992.50,54.72,1582.36,2142.52,0.00,0.000000,0.000000,11,0,40.063909,0.021556,63089114,30830689,0,0,75276,0,1,1 +1773664036.327799,0.90,4,3992.50,54.29,1599.35,2125.55,0.00,0.000000,0.000000,11,0,0.000013,0.000664,63089115,30830695,0,0,75278,0,1,1 +1773664041.323409,0.55,4,3992.50,54.06,1608.28,2116.58,0.00,0.180432,0.000000,205,0,0.000000,0.000030,63089115,30830698,0,0,75281,0,1,1 +1773664046.327951,0.50,4,3992.50,54.02,1609.76,2115.10,0.00,3515243477307.682129,0.000000,11,0,0.000000,0.000020,63089115,30830700,0,0,75283,0,1,1 +1773664051.327482,0.70,4,3992.50,53.99,1610.90,2113.96,0.00,48435.233707,48661.789359,3378728,3009664,0.000000,0.000030,63089115,30830703,0,0,75286,0,1,1 +1773664056.327969,0.65,4,3992.50,53.99,1610.90,2113.96,0.00,0.000000,0.003125,3378728,3009668,0.000000,0.000020,63089115,30830705,0,0,75288,0,1,1 +1773664061.323508,0.65,4,3992.50,53.99,1610.90,2113.96,0.00,3521579227540.669434,3521579227311.752441,258,2,0.000013,0.000061,63089116,30830710,0,0,75291,0,1,1 +1773664066.323440,0.95,4,3992.50,54.16,1614.81,2120.31,0.00,3518484832277.106934,3518484832279.102051,205,0,0.000039,0.000053,63089119,30830715,0,0,75293,0,1,1 +1773664071.327731,0.70,4,3992.50,54.18,1613.50,2121.25,0.00,48388.978108,48615.544415,3378728,3009691,0.000025,0.000061,63089121,30830720,0,0,75296,0,1,1 +1773664076.326928,0.70,4,3992.50,54.18,1613.50,2121.25,0.00,3519002431889.159668,3519002431662.542480,11,0,0.000144,0.000200,63089132,30830734,0,0,75298,0,1,1 +1773664081.327973,0.70,4,3992.50,54.11,1616.34,2118.41,0.00,0.180236,0.000000,205,0,0.000013,0.000030,63089133,30830737,0,0,75301,0,1,1 +1773664086.323503,0.80,4,3992.50,54.11,1616.34,2118.41,0.00,3521585500686.095703,0.000000,11,0,0.000000,0.000020,63089133,30830739,0,0,75303,0,1,1 +1773664091.323503,0.60,4,3992.50,54.14,1615.11,2119.63,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63089133,30830742,0,0,75306,0,1,1 +1773664096.323508,15.12,4,3992.50,55.80,1544.57,2184.77,0.00,0.053516,0.000000,75,0,40.062576,0.022239,63093509,30832284,0,0,75308,0,1,1 +1773664101.327674,1.05,4,3992.50,54.83,1582.56,2146.79,0.00,3515507789677.726562,0.000000,11,0,0.002998,0.002081,63093564,30832328,0,0,75311,0,1,1 +1773664106.328127,0.70,4,3992.50,54.27,1604.73,2124.62,0.00,0.180257,0.000000,205,0,0.000008,0.000028,63093565,30832331,0,0,75313,0,1,1 +1773664111.325564,0.65,4,3992.50,54.20,1607.17,2122.19,0.00,1.478199,10.680671,253,556,0.000000,0.000030,63093565,30832334,0,0,75316,0,1,1 +1773664116.327660,0.70,4,3992.50,54.21,1606.95,2122.40,0.00,3516962424849.956543,3516962424840.889648,75,0,0.000000,0.000020,63093565,30832336,0,0,75318,0,1,1 +1773664121.328008,0.65,4,3992.50,54.21,1606.95,2122.40,0.00,2.121728,0.000195,258,2,0.000000,0.000030,63093565,30832339,0,0,75321,0,1,1 +1773664126.327707,0.95,4,3992.50,54.13,1603.08,2119.48,0.00,3518649078705.459961,3518649078707.635742,11,0,0.000000,0.000020,63093565,30832341,0,0,75323,0,1,1 +1773664131.323498,0.75,4,3992.50,53.93,1611.14,2111.41,0.00,1.659111,10.684187,253,556,0.000000,0.000030,63093565,30832344,0,0,75326,0,1,1 +1773664136.328173,0.50,4,3992.50,53.93,1610.93,2111.62,0.00,48374.187421,48590.823259,3377264,3009430,0.000000,0.000020,63093565,30832346,0,0,75328,0,1,1 +1773664141.327492,0.75,4,3992.50,53.94,1610.68,2111.87,0.00,3518916239090.853027,3518916238864.913086,75,0,0.000056,0.000086,63093569,30832353,0,0,75331,0,1,1 +1773664146.328042,0.65,4,3992.50,53.95,1610.45,2112.11,0.00,3518050395020.553711,0.000000,11,0,0.000117,0.000160,63093579,30832365,0,0,75333,0,1,1 +1773664151.327858,0.65,4,3992.50,53.95,1610.45,2112.10,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63093579,30832368,0,0,75336,0,1,1 +1773664156.328105,0.85,4,3992.50,53.95,1610.88,2112.10,0.00,0.053513,0.000000,75,0,0.000000,0.000020,63093579,30832370,0,0,75338,0,1,1 +1773664161.326823,15.27,4,3992.50,55.43,1552.85,2170.16,0.00,0.000000,0.000000,75,0,40.075097,0.028812,63097906,30834354,0,0,75341,0,1,1 +1773664166.323438,0.85,4,3992.50,54.38,1593.88,2129.14,0.00,0.126844,0.000000,205,0,0.003087,0.002074,63097962,30834397,0,0,75343,0,1,1 +1773664171.328030,0.70,4,3992.50,53.88,1613.44,2109.58,0.00,3515208550291.164062,0.000000,11,0,0.000000,0.000030,63097962,30834400,0,0,75346,0,1,1 +1773664176.328095,0.60,4,3992.50,53.86,1614.23,2108.78,0.00,48430.171206,48657.137799,3378767,3010161,0.000000,0.000020,63097962,30834402,0,0,75348,0,1,1 +1773664181.323502,0.80,4,3992.50,53.86,1614.25,2108.77,0.00,3521672185426.141113,3521672185198.782715,205,0,0.000000,0.000030,63097962,30834405,0,0,75351,0,1,1 +1773664186.327578,0.95,4,3992.50,54.06,1596.84,2116.64,0.00,3515571280019.888184,0.000000,75,0,0.000000,0.000020,63097962,30834407,0,0,75353,0,1,1 +1773664191.326321,0.65,4,3992.50,54.06,1596.54,2116.55,0.00,48433.200211,48659.445006,3377264,3009679,0.000000,0.000030,63097962,30834410,0,0,75356,0,1,1 +1773664196.326443,1.10,4,3992.50,54.07,1596.29,2116.80,0.00,3518350728660.303711,3518350728431.999512,258,2,0.000000,0.000020,63097962,30834412,0,0,75358,0,1,1 +1773664201.326597,1.20,4,3992.50,53.88,1603.67,2109.43,0.00,3518329118071.851074,10.674672,253,556,0.000000,0.000030,63097962,30834415,0,0,75361,0,1,1 +1773664206.327826,0.85,4,3992.50,53.88,1603.67,2109.42,0.00,48407.512951,48624.678017,3377264,3009763,0.000056,0.000076,63097966,30834421,0,0,75363,0,1,1 +1773664211.328069,0.80,4,3992.50,53.86,1604.48,2108.62,0.00,3518266423214.529297,3518266422988.304199,11,0,0.000117,0.000170,63097976,30834434,0,0,75366,0,1,1 +1773664216.328115,1.25,4,3992.50,54.06,1601.23,2116.70,0.00,1.657700,10.675098,253,556,0.000000,0.000020,63097976,30834436,0,0,75368,0,1,1 +1773664221.328127,0.65,4,3992.50,54.06,1601.25,2116.69,0.00,3518428550732.564453,3518428550723.547363,11,0,0.000000,0.000030,63097976,30834439,0,0,75371,0,1,1 +1773664226.327872,16.36,4,3992.50,55.61,1540.84,2177.09,0.00,0.000000,0.000000,11,0,40.068182,0.027618,63102518,30836402,0,0,75373,0,1,1 +1773664231.327725,0.90,4,3992.50,54.68,1577.17,2140.77,0.00,2.175455,0.000195,258,2,0.003085,0.002082,63102574,30836446,0,0,75376,0,1,1 +1773664236.323426,0.65,4,3992.50,54.13,1598.80,2119.13,0.00,48460.554127,48689.362534,3377264,3009962,0.000000,0.000020,63102574,30836448,0,0,75378,0,1,1 +1773664241.328415,0.75,4,3992.50,53.92,1606.78,2111.16,0.00,3514930195098.851074,3514930194872.640137,11,0,0.000000,0.000030,63102574,30836451,0,0,75381,0,1,1 +1773664246.327877,0.95,4,3992.50,53.87,1603.07,2109.08,0.00,48436.014752,48663.497650,3378767,3010552,0.000000,0.000020,63102574,30836453,0,0,75383,0,1,1 +1773664251.328107,0.60,4,3992.50,53.89,1602.34,2109.81,0.00,3518275421109.363281,3518275420881.915039,11,0,0.000000,0.000030,63102574,30836456,0,0,75386,0,1,1 +1773664256.324641,0.70,4,3992.50,53.89,1602.34,2109.81,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63102574,30836458,0,0,75388,0,1,1 +1773664261.327294,0.80,4,3992.50,53.91,1601.60,2110.55,0.00,48395.394915,48621.829268,3377264,3010036,0.000000,0.000030,63102574,30836461,0,0,75391,0,1,1 +1773664266.328171,0.65,4,3992.50,53.91,1601.60,2110.55,0.00,3517819980757.167969,3517819980530.473145,205,0,0.000000,0.000020,63102574,30836463,0,0,75393,0,1,1 +1773664271.327677,0.70,4,3992.50,53.91,1601.54,2110.61,0.00,3518785016854.197266,0.000000,11,0,0.001503,0.001843,63102595,30836495,0,0,75396,0,1,1 +1773664276.327839,0.95,4,3992.50,53.74,1609.63,2104.11,0.00,2.175320,0.000195,258,2,0.000313,0.000684,63102611,30836517,0,0,75398,0,1,1 +1773664281.323431,0.70,4,3992.50,53.74,1609.55,2104.18,0.00,0.000000,0.000000,258,2,0.000000,0.000030,63102611,30836520,0,0,75401,0,1,1 +1773664286.325321,0.70,4,3992.50,53.74,1609.55,2104.18,0.00,3517107542458.267090,3517107542460.441406,11,0,0.000000,0.000020,63102611,30836522,0,0,75403,0,1,1 +1773664291.323567,15.70,4,3992.50,55.02,1559.76,2153.96,0.00,48447.791343,48675.447561,3378767,3010677,40.080936,0.029994,63107063,30838666,0,0,75406,0,1,1 +1773664296.327944,0.90,4,3992.50,54.21,1591.34,2122.38,0.00,0.000000,0.113572,3378767,3010796,0.003208,0.002196,63107129,30838719,0,0,75408,0,1,1 +1773664301.326100,0.65,4,3992.50,53.71,1611.00,2102.71,0.00,3519734896564.203125,3519734896336.248535,205,0,0.000000,0.000030,63107129,30838722,0,0,75411,0,1,1 +1773664306.324487,0.95,4,3992.50,53.56,1615.03,2096.96,0.00,48446.252000,48674.265426,3378767,3010826,0.000000,0.000020,63107129,30838724,0,0,75413,0,1,1 +1773664311.324134,0.70,4,3992.50,53.55,1615.20,2096.50,0.00,3518685613299.292969,3518685613298.347656,3377264,3010272,0.000000,0.000030,63107129,30838727,0,0,75416,0,1,1 +1773664316.323461,0.80,4,3992.50,53.55,1615.21,2096.49,0.00,3518910289914.901855,3518910289688.057129,11,0,0.001172,0.000678,63107155,30838746,0,0,75418,0,1,1 +1773664321.323443,0.70,4,3992.50,53.55,1615.20,2096.50,0.00,2.175399,0.000195,258,2,0.001269,0.001287,63107167,30838766,0,0,75421,0,1,1 +1773664326.328116,0.70,4,3992.50,53.56,1614.73,2096.97,0.00,3515151954894.284180,3515151954896.457520,11,0,0.001732,0.001342,63107192,30838783,0,0,75423,0,1,1 +1773664331.327656,0.65,4,3992.50,53.44,1619.34,2092.36,0.00,0.180290,0.000000,205,0,0.000000,0.000030,63107192,30838786,0,0,75426,0,1,1 +1773664336.323695,0.95,4,3992.50,53.84,1608.25,2107.82,0.00,1.996699,0.000195,258,2,0.000031,0.000045,63107194,30838790,0,0,75428,0,1,1 +1773664341.326362,0.75,4,3992.50,53.75,1607.31,2104.48,0.00,3516561354085.045410,3516561354087.219238,11,0,0.000075,0.000123,63107200,30838799,0,0,75431,0,1,1 +1773664346.325659,0.60,4,3992.50,53.76,1607.06,2104.73,0.00,48437.603647,48665.507738,3378767,3010921,0.000000,0.000020,63107200,30838801,0,0,75433,0,1,1 +1773664351.328035,0.65,4,3992.50,53.76,1607.07,2104.72,0.00,3516766221735.295410,3516766221516.544922,253,556,0.000000,0.000030,63107200,30838804,0,0,75436,0,1,1 +1773664356.325051,19.20,4,3992.50,58.27,1430.51,2281.28,0.00,3520538216801.848145,3520538216792.771973,75,0,30.064941,0.017265,63110444,30839979,0,0,75438,0,1,1 +1773664361.323569,1.05,4,3992.50,53.45,1619.07,2092.71,0.00,0.126795,0.000000,205,0,10.020162,0.004751,63111505,30840205,0,0,75441,0,1,1 +1773664366.323557,0.85,4,3992.50,53.51,1620.69,2095.10,0.00,3518445881852.172363,0.000000,75,0,0.000031,0.000045,63111507,30840209,0,0,75443,0,1,1 +1773664371.323935,0.65,4,3992.50,53.52,1620.35,2095.34,0.00,1.604078,10.674387,253,556,0.000025,0.000061,63111509,30840214,0,0,75446,0,1,1 +1773664376.323559,0.65,4,3992.50,53.52,1620.35,2095.33,0.00,0.000000,0.000000,253,556,0.000000,0.000020,63111509,30840216,0,0,75448,0,1,1 +1773664381.326884,0.80,4,3992.50,53.52,1620.35,2095.34,0.00,48396.957063,48615.891357,3378767,3011125,0.000000,0.000030,63111509,30840219,0,0,75451,0,1,1 +1773664386.328168,0.60,4,3992.50,53.52,1620.09,2095.60,0.00,3517533829626.858887,3517533829396.645020,258,2,0.000000,0.000020,63111509,30840221,0,0,75453,0,1,1 +1773664391.325228,0.80,4,3992.50,53.52,1620.10,2095.59,0.00,3520507027618.966797,3520507027620.963379,205,0,0.000000,0.000030,63111509,30840224,0,0,75456,0,1,1 +1773664396.323935,0.85,4,3992.50,53.52,1622.69,2095.55,0.00,1.477824,10.677958,253,556,0.000000,0.000020,63111509,30840226,0,0,75458,0,1,1 +1773664401.327708,0.70,4,3992.50,53.51,1620.68,2094.98,0.00,3515784255741.202148,3515784255732.011230,205,0,0.000031,0.000055,63111511,30840231,0,0,75461,0,1,1 +1773664406.323725,0.70,4,3992.50,53.31,1628.31,2087.35,0.00,48469.224044,48697.749328,3378767,3011170,0.000142,0.000191,63111523,30840245,0,0,75463,0,1,1 +1773664411.328161,0.60,4,3992.50,53.24,1631.03,2084.63,0.00,3515318243555.316406,3515318243327.302246,75,0,0.000000,0.000030,63111523,30840248,0,0,75466,0,1,1 +1773664416.328357,0.60,4,3992.50,53.28,1629.83,2085.83,0.00,0.000000,0.000000,75,0,0.000000,0.000020,63111523,30840250,0,0,75468,0,1,1 +1773664421.323424,17.86,4,3992.50,58.21,1436.42,2279.23,0.00,3521912302997.134766,0.000000,11,0,24.464365,0.016146,63114263,30841336,0,0,75471,0,1,1 +1773664426.327821,1.45,4,3992.50,53.83,1615.23,2107.43,0.00,1.656258,10.665815,253,556,15.611146,0.005681,63115900,30841637,0,0,75473,0,1,1 +1773664431.323563,0.70,4,3992.50,53.57,1625.36,2097.30,0.00,3521436098373.170898,3521436098363.965332,205,0,0.000000,0.000030,63115900,30841640,0,0,75476,0,1,1 +1773664436.323447,0.70,4,3992.50,53.53,1626.84,2095.82,0.00,48422.017472,48649.638487,3377264,3010822,0.000000,0.000020,63115900,30841642,0,0,75478,0,1,1 +1773664441.323552,0.70,4,3992.50,53.56,1625.72,2096.94,0.00,3518363205172.886230,3518363204954.472656,253,556,0.000000,0.000030,63115900,30841645,0,0,75481,0,1,1 +1773664446.325966,0.65,4,3992.50,53.56,1625.51,2097.15,0.00,3516738973521.185547,3516738973512.172852,11,0,0.000000,0.000020,63115900,30841647,0,0,75483,0,1,1 +1773664451.326619,0.65,4,3992.50,53.59,1624.54,2098.12,0.00,0.053509,0.000000,75,0,0.000000,0.000030,63115900,30841650,0,0,75486,0,1,1 +1773664456.323977,0.95,4,3992.50,53.45,1624.83,2092.63,0.00,2.122997,0.000195,258,2,0.000000,0.000020,63115900,30841652,0,0,75488,0,1,1 +1773664461.327924,0.65,4,3992.50,53.45,1624.64,2092.59,0.00,3515661347447.967773,3515661347449.961426,205,0,0.000000,0.000030,63115900,30841655,0,0,75491,0,1,1 +1773664466.327019,0.65,4,3992.50,53.45,1624.65,2092.59,0.00,3519074712493.081055,0.000000,11,0,0.000031,0.000045,63115902,30841659,0,0,75493,0,1,1 +1773664471.323967,0.75,4,3992.50,53.45,1624.65,2092.59,0.00,48450.648332,48678.291494,3377264,3010876,0.000142,0.000201,63115914,30841674,0,0,75496,0,1,1 +1773664476.324554,0.70,4,3992.50,53.45,1624.65,2092.59,0.00,3518023681510.056152,3518023681282.524902,75,0,0.000000,0.000020,63115914,30841676,0,0,75498,0,1,1 +1773664481.325203,0.65,4,3992.50,53.45,1624.65,2092.58,0.00,48424.458108,48652.942410,3378767,3011442,0.000000,0.000030,63115914,30841679,0,0,75501,0,1,1 +1773664486.327722,15.56,4,3992.50,53.70,1604.95,2102.66,0.00,3516665740662.183594,3516665740433.838379,11,0,40.042931,0.021552,63120281,30843097,0,0,75503,0,1,1 +1773664491.328094,1.05,4,3992.50,53.45,1615.00,2092.62,0.00,48427.195490,48655.813249,3378767,3011607,0.003098,0.002082,63120338,30843141,0,0,75506,0,1,1 +1773664496.323446,0.60,4,3992.50,53.37,1617.97,2089.64,0.00,0.000000,0.003910,3378767,3011609,0.000000,0.000020,63120338,30843143,0,0,75508,0,1,1 +1773664501.323607,0.90,4,3992.50,53.37,1618.02,2089.59,0.00,3518323486941.037598,3518323486710.230957,258,2,0.000000,0.000030,63120338,30843146,0,0,75511,0,1,1 +1773664506.323581,0.70,4,3992.50,53.37,1618.03,2089.58,0.00,0.000000,0.000000,258,2,0.000000,0.000020,63120338,30843148,0,0,75513,0,1,1 +1773664511.323564,0.70,4,3992.50,53.34,1619.05,2088.56,0.00,0.000000,0.000000,258,2,0.000000,0.000030,63120338,30843151,0,0,75516,0,1,1 +1773664516.327343,1.00,4,3992.50,53.74,1608.98,2104.01,0.00,3515779922647.229492,3515779922649.403320,11,0,0.000000,0.000020,63120338,30843153,0,0,75518,0,1,1 +1773664521.323445,0.65,4,3992.50,53.68,1611.37,2101.62,0.00,2.177088,0.000195,258,2,0.000000,0.000030,63120338,30843156,0,0,75521,0,1,1 +1773664526.323417,0.70,4,3992.50,53.66,1611.94,2101.05,0.00,48428.896639,48659.890718,3378767,3011741,0.000000,0.000020,63120338,30843158,0,0,75523,0,1,1 +1773664531.323411,0.80,4,3992.50,53.46,1619.95,2093.05,0.00,3518441630984.338379,3518441630755.520508,11,0,0.000056,0.000086,63120342,30843165,0,0,75526,0,1,1 +1773664536.327545,0.65,4,3992.50,53.47,1619.49,2093.50,0.00,1.656345,10.666374,253,556,0.000117,0.000160,63120352,30843177,0,0,75528,0,1,1 +1773664541.327839,0.70,4,3992.50,53.45,1620.21,2092.78,0.00,0.517645,3518230088556.273438,258,2,0.000000,0.000030,63120352,30843180,0,0,75531,0,1,1 +1773664546.323553,0.95,4,3992.50,53.66,1609.64,2100.75,0.00,48470.174480,48701.414706,3378767,3011773,0.000000,0.000020,63120352,30843182,0,0,75533,0,1,1 +1773664551.324578,16.53,4,3992.50,58.73,1410.88,2299.59,0.00,3517715962547.019531,3517715962318.199707,11,0,34.446589,0.015727,63124098,30844237,0,0,75536,0,1,1 +1773664556.323442,1.00,4,3992.50,55.15,1551.41,2159.05,0.00,0.053528,0.000000,75,0,5.612951,0.003549,63124747,30844380,0,0,75538,0,1,1 +1773664561.327234,0.65,4,3992.50,54.45,1578.69,2131.77,0.00,0.000000,0.000000,75,0,0.000000,0.000191,63124747,30844384,0,0,75541,0,1,1 +1773664566.324707,0.65,4,3992.50,54.14,1590.60,2119.86,0.00,0.126822,0.000000,205,0,0.000000,0.000020,63124747,30844386,0,0,75543,0,1,1 +1773664571.326414,0.75,4,3992.50,53.67,1609.25,2101.21,0.00,48414.089078,48643.202557,3378767,3011938,0.001446,0.001786,63124764,30844414,0,0,75546,0,1,1 +1773664576.326838,1.00,4,3992.50,53.72,1607.51,2103.36,0.00,3518138163740.652344,3518138163511.660645,11,0,0.000205,0.000552,63124771,30844427,0,0,75548,0,1,1 +1773664581.327421,0.65,4,3992.50,53.72,1607.52,2103.35,0.00,0.000000,0.000000,11,0,0.000008,0.000038,63124772,30844431,0,0,75551,0,1,1 +1773664586.328182,0.75,4,3992.50,53.72,1607.52,2103.35,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63124772,30844433,0,0,75553,0,1,1 +1773664591.326488,0.60,4,3992.50,53.72,1607.52,2103.35,0.00,48447.214590,48676.421652,3378767,3012017,0.000000,0.000030,63124772,30844436,0,0,75556,0,1,1 +1773664596.323561,0.60,4,3992.50,53.72,1607.52,2103.35,0.00,3520498582764.742188,3520498582535.478516,11,0,0.000031,0.000045,63124774,30844440,0,0,75558,0,1,1 +1773664601.324609,0.80,4,3992.50,53.73,1607.29,2103.58,0.00,1.657367,10.672958,253,556,0.000126,0.000185,63124784,30844453,0,0,75561,0,1,1 +1773664606.325839,0.80,4,3992.50,53.70,1618.91,2102.31,0.00,3517571948091.577637,3517571948082.562500,11,0,0.000000,0.000020,63124784,30844455,0,0,75563,0,1,1 +1773664611.327329,0.65,4,3992.50,53.69,1618.91,2102.00,0.00,1.657221,10.672014,253,556,0.000000,0.000030,63124784,30844458,0,0,75566,0,1,1 +1773664616.326567,16.57,4,3992.50,58.51,1430.04,2290.86,0.00,0.517755,3518973544779.815918,258,2,28.852106,0.017877,63128018,30845648,0,0,75568,0,1,1 +1773664621.327680,1.15,4,3992.50,53.72,1617.47,2103.41,0.00,0.000000,0.000000,258,2,11.218254,0.005512,63129265,30845899,0,0,75571,0,1,1 +1773664626.328366,0.70,4,3992.50,53.55,1624.41,2096.48,0.00,48412.259348,48642.743765,3377264,3011629,0.001072,0.001073,63129288,30845919,0,0,75573,0,1,1 +1773664631.328126,0.55,4,3992.50,53.55,1624.41,2096.48,0.00,3518605687600.141602,3518605687371.789551,11,0,0.000000,0.000030,63129288,30845922,0,0,75576,0,1,1 +1773664636.325317,1.05,4,3992.50,53.79,1614.86,2106.05,0.00,0.180375,0.000000,205,0,0.000000,0.000020,63129288,30845924,0,0,75578,0,1,1 +1773664641.327733,0.60,4,3992.50,53.69,1618.71,2102.19,0.00,0.000000,0.000000,205,0,0.000000,0.000030,63129288,30845927,0,0,75581,0,1,1 +1773664646.323564,0.55,4,3992.50,53.51,1625.96,2094.94,0.00,48471.029458,48700.803057,3378767,3012260,0.000000,0.000020,63129288,30845929,0,0,75583,0,1,1 +1773664651.323427,0.70,4,3992.50,53.53,1624.98,2095.92,0.00,0.000000,0.012500,3378767,3012267,0.000000,0.000030,63129288,30845932,0,0,75586,0,1,1 +1773664656.323436,0.60,4,3992.50,53.53,1624.92,2095.97,0.00,3518430469101.335938,3518430468871.921875,11,0,0.000000,0.000020,63129288,30845934,0,0,75588,0,1,1 +1773664661.323502,0.65,4,3992.50,53.53,1624.93,2095.97,0.00,0.000000,0.000000,11,0,0.000056,0.000086,63129292,30845941,0,0,75591,0,1,1 +1773664666.328133,0.95,4,3992.50,53.73,1623.64,2103.76,0.00,0.000000,0.000000,11,0,0.000148,0.000185,63129304,30845955,0,0,75593,0,1,1 +1773664671.328170,0.55,4,3992.50,53.69,1625.35,2102.02,0.00,1.657703,10.675116,253,556,0.000050,0.000092,63129308,30845962,0,0,75596,0,1,1 +1773664676.323451,0.60,4,3992.50,53.69,1625.36,2102.02,0.00,0.000000,0.000000,253,556,0.000000,0.000020,63129308,30845964,0,0,75598,0,1,1 +1773664681.328236,12.79,4,3992.50,58.69,1429.47,2297.90,0.00,48373.114048,48592.428741,3377264,3011794,28.019160,0.019526,63132480,30847322,0,0,75601,0,1,1 +1773664686.323451,1.00,4,3992.50,54.84,1580.13,2147.23,0.00,3521807609234.832031,3521807609003.893555,258,2,12.031140,0.004666,63133776,30847618,0,0,75603,0,1,1 +1773664691.323467,0.65,4,3992.50,53.96,1614.82,2112.55,0.00,3518426059692.526855,3518426059694.702148,11,0,0.000000,0.000674,63133776,30847625,0,0,75606,0,1,1 +1773664696.327431,0.80,4,3992.50,53.91,1610.98,2110.55,0.00,0.180131,0.000000,205,0,0.000000,0.000020,63133776,30847627,0,0,75608,0,1,1 +1773664701.328060,0.50,4,3992.50,53.77,1616.39,2105.14,0.00,1.994866,0.000195,258,2,0.000000,0.000030,63133776,30847630,0,0,75611,0,1,1 +1773664706.323446,0.60,4,3992.50,53.75,1616.92,2104.62,0.00,48473.352325,48705.440316,3378767,3012518,0.000000,0.000020,63133776,30847632,0,0,75613,0,1,1 +1773664711.326400,0.60,4,3992.50,53.73,1617.76,2103.77,0.00,3516360185633.912598,3516360185632.967773,3377264,3011962,0.000000,0.000030,63133776,30847635,0,0,75616,0,1,1 +1773664716.328302,0.65,4,3992.50,53.76,1616.54,2104.99,0.00,3517099137072.488281,3517099136843.768555,75,0,0.000000,0.000020,63133776,30847637,0,0,75618,0,1,1 +1773664721.327621,0.55,4,3992.50,53.77,1616.29,2105.24,0.00,3518916702807.121094,0.000000,11,0,0.000000,0.000030,63133776,30847640,0,0,75621,0,1,1 +1773664726.327989,1.00,4,3992.50,53.99,1604.53,2113.82,0.00,0.180260,0.000000,205,0,0.000056,0.000076,63133780,30847646,0,0,75623,0,1,1 +1773664731.324974,1.80,4,3992.50,53.83,1610.71,2107.39,0.00,0.000000,0.000000,205,0,0.000117,0.000170,63133790,30847659,0,0,75626,0,1,1 +1773664736.323503,0.50,4,3992.50,53.83,1610.71,2107.39,0.00,1.995704,0.000195,258,2,0.000000,0.000020,63133790,30847661,0,0,75628,0,1,1 +1773664741.323446,0.65,4,3992.50,53.63,1618.34,2099.76,0.00,3518477369487.072754,10.675122,253,556,0.000000,0.000030,63133790,30847664,0,0,75631,0,1,1 +1773664746.323397,12.90,4,3992.50,58.70,1419.77,2298.31,0.00,0.517681,3518471651191.518066,258,2,18.448013,0.015159,63135931,30848635,0,0,75633,0,1,1 +1773664751.326642,3.00,4,3992.50,54.49,1584.68,2133.41,0.00,0.000000,0.000000,258,2,21.604886,0.006467,63138273,30849045,0,0,75636,0,1,1 +1773664756.323657,0.85,4,3992.50,54.12,1597.20,2118.80,0.00,0.000000,0.000000,258,2,0.000000,0.000664,63138273,30849051,0,0,75638,0,1,1 +1773664761.323505,0.75,4,3992.50,53.86,1606.33,2108.75,0.00,3518543998098.837891,3518543998100.959961,75,0,0.000000,0.000030,63138273,30849054,0,0,75641,0,1,1 +1773664766.328014,0.60,4,3992.50,53.86,1606.34,2108.74,0.00,2.119963,0.000195,258,2,0.000000,0.000020,63138273,30849056,0,0,75643,0,1,1 +1773664771.323826,0.60,4,3992.50,53.84,1606.95,2108.14,0.00,0.000000,0.000000,258,2,0.000000,0.000030,63138273,30849059,0,0,75646,0,1,1 +1773664776.327730,0.65,4,3992.50,53.85,1606.71,2108.37,0.00,48390.847726,48622.838406,3378767,3012778,0.000000,0.000020,63138273,30849061,0,0,75648,0,1,1 +1773664781.327367,0.65,4,3992.50,53.85,1606.72,2108.36,0.00,3518692473259.622559,3518692473029.556152,75,0,0.000000,0.000030,63138273,30849064,0,0,75651,0,1,1 +1773664786.327702,0.90,4,3992.50,53.65,1614.45,2100.69,0.00,48417.777158,48646.904104,3377264,3012240,0.000000,0.000020,63138273,30849066,0,0,75653,0,1,1 +1773664791.323436,0.70,4,3992.50,53.64,1614.89,2100.26,0.00,3521441039113.274414,3521441038883.809570,205,0,0.000062,0.000068,63138277,30849072,0,0,75656,0,1,1 +1773664796.327082,0.65,4,3992.50,53.64,1614.89,2100.26,0.00,3515873896326.822266,0.000000,11,0,0.000134,0.000196,63138288,30849086,0,0,75658,0,1,1 +1773664801.327559,0.90,4,3992.50,53.64,1614.89,2100.26,0.00,48416.452104,48645.539327,3377264,3012264,0.000000,0.000030,63138288,30849089,0,0,75661,0,1,1 +1773664806.327080,0.55,4,3992.50,53.64,1614.91,2100.23,0.00,3518774299154.013672,3518774298924.882812,11,0,0.000000,0.000020,63138288,30849091,0,0,75663,0,1,1 +1773664811.328359,10.56,4,3992.50,58.41,1428.05,2287.07,0.00,48408.688033,48637.883697,3377264,3012403,10.219170,0.013802,63139653,30849950,0,0,75666,0,1,1 +1773664816.323499,4.52,4,3992.50,54.88,1563.98,2148.69,0.00,9.735635,10.777859,3378767,3013021,29.875629,0.011453,63142824,30850724,0,0,75668,0,1,1 +1773664821.327745,0.60,4,3992.50,54.20,1590.82,2121.85,0.00,3515452045986.800781,3515452045756.520508,205,0,0.000000,0.000673,63142824,30850731,0,0,75671,0,1,1 +1773664826.327640,0.60,4,3992.50,53.85,1604.27,2108.41,0.00,1.477472,10.675420,253,556,0.000000,0.000020,63142824,30850733,0,0,75673,0,1,1 +1773664831.327779,0.85,4,3992.50,53.87,1603.40,2109.28,0.00,3518338969820.880371,3518338969811.810059,75,0,0.000000,0.000030,63142824,30850736,0,0,75676,0,1,1 +1773664836.327754,0.60,4,3992.50,53.87,1603.40,2109.28,0.00,48421.262529,48650.736147,3377264,3012542,0.000000,0.000020,63142824,30850738,0,0,75678,0,1,1 +1773664841.326276,0.70,4,3992.50,53.87,1603.41,2109.27,0.00,3519477628560.728516,3519477628331.241211,11,0,0.000000,0.000030,63142824,30850741,0,0,75681,0,1,1 +1773664846.323800,0.95,4,3992.50,54.09,1602.62,2117.61,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63142824,30850743,0,0,75683,0,1,1 +1773664851.327858,0.55,4,3992.50,54.09,1602.54,2117.61,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63142824,30850746,0,0,75686,0,1,1 +1773664856.323501,0.75,4,3992.50,54.09,1602.54,2117.60,0.00,0.000000,0.000000,11,0,0.000031,0.000045,63142826,30850750,0,0,75688,0,1,1 +1773664861.325654,0.70,4,3992.50,54.09,1602.54,2117.60,0.00,1.657001,10.670600,253,556,0.000142,0.000201,63142838,30850765,0,0,75691,0,1,1 +1773664866.327532,0.70,4,3992.50,54.09,1602.54,2117.60,0.00,3517116073164.313477,3517116073155.119629,205,0,0.000000,0.000020,63142838,30850767,0,0,75693,0,1,1 +1773664871.323428,0.60,4,3992.50,53.97,1607.02,2113.12,0.00,3521327403846.470215,0.000000,75,0,0.000513,0.001117,63142852,30850792,0,0,75696,0,1,1 +1773664876.328090,8.92,4,3992.50,58.77,1418.87,2300.79,0.00,1.602705,10.665251,253,556,2.208252,0.007533,63143395,30851193,0,0,75698,0,1,1 +1773664881.325546,7.32,4,3992.50,54.89,1570.52,2149.16,0.00,3520228495456.643555,3520228495447.621582,11,0,37.874130,0.025557,63147225,30853090,0,0,75701,0,1,1 +1773664886.323687,0.60,4,3992.50,54.17,1598.67,2121.01,0.00,48448.807264,48679.517729,3378767,3013328,0.000000,0.000664,63147225,30853096,0,0,75703,0,1,1 +1773664891.328182,0.65,4,3992.50,53.81,1612.74,2106.94,0.00,3515277246098.388672,3515277245867.971191,11,0,0.000000,0.000030,63147225,30853099,0,0,75706,0,1,1 +1773664896.327580,0.65,4,3992.50,53.80,1613.34,2106.34,0.00,1.657915,10.676481,253,556,0.000000,0.000020,63147225,30853101,0,0,75708,0,1,1 +1773664901.327385,0.70,4,3992.50,53.81,1613.10,2106.58,0.00,3518573872401.890137,3518573872392.872559,11,0,0.000000,0.000030,63147225,30853104,0,0,75711,0,1,1 +1773664906.328306,0.60,4,3992.50,53.59,1621.43,2098.25,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63147225,30853106,0,0,75713,0,1,1 +1773664911.327375,0.85,4,3992.50,54.00,1604.19,2114.40,0.00,48439.814664,48670.570605,3378767,3013373,0.000000,0.000030,63147225,30853109,0,0,75716,0,1,1 +1773664916.325481,0.60,4,3992.50,54.01,1603.79,2114.80,0.00,3519770419769.579102,3519770419768.657715,3377264,3012848,0.001842,0.001600,63147254,30853130,0,0,75718,0,1,1 +1773664921.323429,0.55,4,3992.50,54.01,1604.04,2114.55,0.00,3519881960074.492188,3519881959844.605469,11,0,0.000378,0.000643,63147266,30853149,0,0,75721,0,1,1 +1773664926.324652,0.55,4,3992.50,54.01,1603.80,2114.80,0.00,48418.946223,48649.639461,3378767,3013414,0.001165,0.000553,63147296,30853173,0,0,75723,0,1,1 +1773664931.323425,0.55,4,3992.50,53.99,1604.65,2113.94,0.00,0.000000,0.005470,3378767,3013419,0.000000,0.000030,63147296,30853176,0,0,75726,0,1,1 +1773664936.323440,1.00,4,3992.50,54.00,1604.50,2114.14,0.00,3518425851529.687500,3518425851307.950684,253,556,0.000000,0.000020,63147296,30853178,0,0,75728,0,1,1 +1773664941.323449,11.49,4,3992.50,58.79,1416.93,2301.65,0.00,48419.331412,48640.167265,3377264,3012919,22.038146,0.016812,63149817,30854268,0,0,75731,0,1,1 +1773664946.323422,2.01,4,3992.50,53.87,1609.58,2109.00,0.00,3518456344493.500488,3518456344263.645508,11,0,18.029159,0.006774,63151738,30854700,0,0,75733,0,1,1 +1773664951.327819,0.55,4,3992.50,53.87,1609.58,2109.00,0.00,1.656258,10.665816,253,556,0.000008,0.000681,63151739,30854708,0,0,75736,0,1,1 +1773664956.327343,0.70,4,3992.50,53.92,1607.62,2110.97,0.00,48433.750557,48655.661524,3378767,3013581,0.000000,0.000020,63151739,30854710,0,0,75738,0,1,1 +1773664961.327408,0.50,4,3992.50,53.92,1607.62,2110.96,0.00,3518391382662.122070,3518391382431.217285,11,0,0.000025,0.000061,63151741,30854715,0,0,75741,0,1,1 +1773664966.323468,0.75,4,3992.50,54.12,1599.88,2118.78,0.00,0.180416,0.000000,205,0,0.000031,0.000045,63151743,30854719,0,0,75743,0,1,1 +1773664971.323457,0.65,4,3992.50,54.03,1603.27,2115.33,0.00,1.477445,10.675219,253,556,0.000025,0.000061,63151745,30854724,0,0,75746,0,1,1 +1773664976.328178,0.55,4,3992.50,54.02,1603.49,2115.10,0.00,3515117887981.267090,3515117887972.078125,205,0,0.000000,0.000020,63151745,30854726,0,0,75748,0,1,1 +1773664981.325958,0.65,4,3992.50,54.02,1603.50,2115.10,0.00,3520000045959.424805,0.000000,11,0,0.000000,0.000030,63151745,30854729,0,0,75751,0,1,1 +1773664986.327458,0.65,4,3992.50,54.02,1603.50,2115.10,0.00,0.053500,0.000000,75,0,0.000031,0.000045,63151747,30854733,0,0,75753,0,1,1 +1773664991.324164,0.65,4,3992.50,54.02,1603.50,2115.09,0.00,3520756681976.930176,0.000000,11,0,0.000134,0.000193,63151758,30854747,0,0,75756,0,1,1 +1773664996.324568,0.90,4,3992.50,53.93,1608.10,2111.65,0.00,48426.885088,48657.936242,3378767,3013686,0.000000,0.000020,63151758,30854749,0,0,75758,0,1,1 +1773665001.323440,0.75,4,3992.50,53.94,1607.75,2111.84,0.00,3519231224302.893555,3519231224080.791504,253,556,0.000000,0.000030,63151758,30854752,0,0,75761,0,1,1 +1773665006.327587,12.58,4,3992.50,58.95,1411.48,2308.09,0.00,0.517247,3515521213397.192871,258,2,9.411318,0.011266,63152980,30855481,0,0,75763,0,1,1 +1773665011.323431,8.70,4,3992.50,55.16,1559.97,2159.62,0.00,3521364446605.433594,3521364446607.557129,75,0,30.671993,0.013844,63156150,30856446,0,0,75766,0,1,1 +1773665016.324917,0.65,4,3992.50,54.59,1582.37,2137.22,0.00,3517392023581.602051,0.000000,11,0,0.000000,0.000664,63156150,30856452,0,0,75768,0,1,1 +1773665021.327688,0.70,4,3992.50,54.04,1603.93,2115.66,0.00,0.180174,0.000000,205,0,0.000000,0.000030,63156150,30856455,0,0,75771,0,1,1 +1773665026.323440,0.95,4,3992.50,53.96,1609.36,2112.54,0.00,0.000000,0.000000,205,0,0.000000,0.000020,63156150,30856457,0,0,75773,0,1,1 +1773665031.328288,0.80,4,3992.50,53.96,1609.27,2112.61,0.00,1.993185,0.000195,258,2,0.000000,0.000030,63156150,30856460,0,0,75776,0,1,1 +1773665036.323467,0.65,4,3992.50,53.96,1609.25,2112.64,0.00,3521833221088.636719,3521833221090.634277,205,0,0.000000,0.000020,63156150,30856462,0,0,75778,0,1,1 +1773665041.328360,0.55,4,3992.50,53.94,1609.84,2112.05,0.00,3514997561621.127441,0.000000,11,0,0.000000,0.000030,63156150,30856465,0,0,75781,0,1,1 +1773665046.327821,0.50,4,3992.50,53.94,1609.85,2112.04,0.00,0.180293,0.000000,205,0,0.000000,0.000020,63156150,30856467,0,0,75783,0,1,1 +1773665051.327807,0.80,4,3992.50,53.94,1609.86,2112.04,0.00,1.995123,0.000195,258,2,0.000031,0.000055,63156152,30856472,0,0,75786,0,1,1 +1773665056.325880,0.70,4,3992.50,53.94,1609.74,2112.00,0.00,0.000000,0.000000,258,2,0.000142,0.000191,63156164,30856486,0,0,75788,0,1,1 +1773665061.328114,0.65,4,3992.50,53.92,1610.09,2111.23,0.00,3516865501292.334961,10.670231,253,556,0.000000,0.000030,63156164,30856489,0,0,75791,0,1,1 +1773665066.327788,0.70,4,3992.50,53.92,1610.09,2111.23,0.00,3518667115072.227539,3518667115063.156250,75,0,0.000000,0.000020,63156164,30856491,0,0,75793,0,1,1 +1773665071.327754,7.98,4,3992.50,59.01,1410.77,2310.54,0.00,1.604210,10.675266,253,556,8.618833,0.010998,63157350,30857198,0,0,75796,0,1,1 +1773665076.323431,5.72,4,3992.50,55.09,1564.48,2156.83,0.00,0.000000,0.000000,253,556,31.473986,0.010519,63160614,30857929,0,0,75798,0,1,1 +1773665081.327823,0.65,4,3992.50,54.65,1581.69,2139.62,0.00,0.000000,0.000000,253,556,0.000000,0.000673,63160614,30857936,0,0,75801,0,1,1 +1773665086.323433,0.90,4,3992.50,54.35,1604.44,2127.74,0.00,48461.971619,48683.751041,3377265,3013556,0.000000,0.000020,63160614,30857938,0,0,75803,0,1,1 +1773665091.326573,0.70,4,3992.50,54.14,1611.86,2119.88,0.00,3516228654516.303223,3516228654285.791992,75,0,0.000000,0.000030,63160614,30857941,0,0,75806,0,1,1 +1773665096.326297,0.65,4,3992.50,54.15,1611.73,2120.02,0.00,3518631226208.959473,0.000000,11,0,0.000000,0.000020,63160614,30857943,0,0,75808,0,1,1 +1773665101.328126,1.00,4,3992.50,54.15,1611.73,2120.02,0.00,1.657109,10.671293,253,556,0.000000,0.000030,63160614,30857946,0,0,75811,0,1,1 +1773665106.328296,0.90,4,3992.50,53.96,1619.03,2112.72,0.00,0.000000,0.000000,253,556,0.000000,0.000020,63160614,30857948,0,0,75813,0,1,1 +1773665111.328044,0.80,4,3992.50,53.96,1619.05,2112.69,0.00,3518615034055.632812,3518615034046.561523,75,0,0.000000,0.000030,63160614,30857951,0,0,75816,0,1,1 +1773665116.328017,1.10,4,3992.50,53.81,1627.45,2106.80,0.00,3518456074140.924316,0.000000,11,0,0.000031,0.000045,63160616,30857955,0,0,75818,0,1,1 +1773665121.325888,0.90,4,3992.50,53.63,1634.41,2099.87,0.00,2.176317,0.000195,258,2,0.000142,0.000201,63160628,30857970,0,0,75821,0,1,1 +1773665126.327078,0.75,4,3992.50,53.66,1633.52,2100.75,0.00,3517600041176.877930,3517600041178.999512,75,0,0.000000,0.000020,63160628,30857972,0,0,75823,0,1,1 +1773665131.327755,0.60,4,3992.50,53.66,1633.52,2100.75,0.00,48414.471084,48645.462694,3377265,3013796,0.000000,0.000030,63160628,30857975,0,0,75826,0,1,1 +1773665136.327819,4.96,4,3992.50,58.59,1440.41,2293.86,0.00,3518392063120.199219,3518392062889.052246,205,0,2.812004,0.008972,63161277,30858450,0,0,75828,0,1,1 +1773665141.328233,9.77,4,3992.50,53.79,1628.33,2105.93,0.00,3518145743877.093262,0.000000,11,0,37.251229,0.012870,63165111,30859331,0,0,75831,0,1,1 +1773665146.327871,0.90,4,3992.50,53.69,1627.16,2101.91,0.00,2.175548,0.000195,258,2,0.000000,0.000664,63165111,30859337,0,0,75833,0,1,1 +1773665151.327917,0.55,4,3992.50,53.66,1628.34,2100.73,0.00,3518405033772.330078,10.674902,253,556,0.000000,0.000030,63165111,30859340,0,0,75836,0,1,1 +1773665156.323444,0.65,4,3992.50,53.67,1627.85,2101.22,0.00,48472.502016,48695.829918,3378768,3014550,0.000000,0.000020,63165111,30859342,0,0,75838,0,1,1 +1773665161.327592,0.65,4,3992.50,53.69,1627.12,2101.95,0.00,3515520896653.999512,3515520896422.045898,11,0,0.000000,0.000030,63165111,30859345,0,0,75841,0,1,1 +1773665166.327764,0.80,4,3992.50,53.65,1628.61,2100.46,0.00,2.175316,0.000195,258,2,0.000000,0.000020,63165111,30859347,0,0,75843,0,1,1 +1773665171.327870,0.65,4,3992.50,53.69,1627.14,2101.93,0.00,3518362649852.424316,10.674774,253,556,0.001447,0.001786,63165128,30859375,0,0,75846,0,1,1 +1773665176.323444,0.85,4,3992.50,53.88,1625.04,2109.51,0.00,3521553874916.987305,3521553874907.908691,75,0,0.000213,0.000560,63165136,30859389,0,0,75848,0,1,1 +1773665181.327572,0.60,4,3992.50,53.88,1625.05,2109.51,0.00,48390.800933,48622.861623,3378768,3014583,0.000031,0.000055,63165138,30859394,0,0,75851,0,1,1 +1773665186.328025,0.60,4,3992.50,53.88,1625.05,2109.51,0.00,3518118106543.114258,3518118106310.882812,75,0,0.000157,0.000200,63165150,30859408,0,0,75853,0,1,1 +1773665191.327709,0.70,4,3992.50,53.88,1625.05,2109.51,0.00,2.122009,0.000195,258,2,0.000000,0.000030,63165150,30859411,0,0,75856,0,1,1 +1773665196.328256,0.70,4,3992.50,53.88,1625.05,2109.50,0.00,3518052279785.268555,10.673832,253,556,0.000000,0.000020,63165150,30859413,0,0,75858,0,1,1 +1773665201.323420,0.90,4,3992.50,53.73,1630.80,2103.74,0.00,3521843184129.462402,3521843184120.255859,205,0,0.002224,0.000735,63165173,30859432,0,0,75861,0,1,1 +1773665206.323460,13.27,4,3992.50,54.23,1615.99,2123.04,0.00,48430.228527,48662.783783,3378768,3014749,40.061805,0.023407,63169499,30861061,0,0,75863,0,1,1 +1773665211.323456,0.70,4,3992.50,54.24,1611.20,2123.51,0.00,3518440396713.878418,3518440396481.500977,11,0,0.000000,0.000674,63169499,30861068,0,0,75866,0,1,1 +1773665216.323597,0.80,4,3992.50,54.17,1613.79,2120.92,0.00,0.053514,0.000000,75,0,0.001171,0.000677,63169525,30861087,0,0,75868,0,1,1 +1773665221.327795,0.55,4,3992.50,54.17,1613.82,2120.89,0.00,3515485524974.017090,0.000000,11,0,0.000338,0.000609,63169534,30861103,0,0,75871,0,1,1 +1773665226.327505,0.75,4,3992.50,54.06,1618.14,2116.57,0.00,0.180284,0.000000,205,0,0.001742,0.001351,63169560,30861121,0,0,75873,0,1,1 +1773665231.328169,0.65,4,3992.50,54.06,1618.16,2116.55,0.00,3517970142762.639648,0.000000,11,0,0.000000,0.000030,63169560,30861124,0,0,75876,0,1,1 +1773665236.328138,0.75,4,3992.50,53.85,1626.98,2108.31,0.00,0.053516,0.000000,75,0,0.000000,0.000020,63169560,30861126,0,0,75878,0,1,1 +1773665241.323765,1.15,4,3992.50,53.72,1631.95,2103.21,0.00,3521517118599.128906,0.000000,11,0,0.000000,0.000030,63169560,30861129,0,0,75881,0,1,1 +1773665246.323760,0.65,4,3992.50,53.72,1631.73,2103.43,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63169560,30861131,0,0,75883,0,1,1 +1773665251.327846,0.70,4,3992.50,53.72,1631.73,2103.43,0.00,48391.252288,48623.559608,3378768,3014834,0.000107,0.000148,63169568,30861142,0,0,75886,0,1,1 +1773665256.325826,0.65,4,3992.50,53.72,1631.73,2103.43,0.00,3519858877212.730469,3519858876989.160645,253,556,0.000000,0.000020,63169568,30861144,0,0,75888,0,1,1 +1773665261.323551,0.70,4,3992.50,53.73,1631.50,2103.66,0.00,3520039182937.924805,3520039182928.723145,205,0,0.000050,0.000092,63169572,30861151,0,0,75891,0,1,1 +1773665266.327507,1.30,4,3992.50,53.76,1625.07,2104.73,0.00,48392.328793,48624.869408,3378768,3014861,0.002238,0.000739,63169596,30861170,0,0,75893,0,1,1 +1773665271.325667,13.37,4,3992.50,54.71,1587.86,2142.00,0.00,3519732314944.618652,3519732314711.808594,205,0,40.078433,0.021373,63173956,30862557,0,0,75896,0,1,1 +1773665276.323554,0.75,4,3992.50,53.98,1616.37,2113.49,0.00,1.478066,10.679709,253,556,0.000000,0.000664,63173956,30862563,0,0,75898,0,1,1 +1773665281.323560,0.60,4,3992.50,53.66,1628.79,2101.07,0.00,0.000000,0.000000,253,556,0.000000,0.000030,63173956,30862566,0,0,75901,0,1,1 +1773665286.327718,0.70,4,3992.50,53.66,1628.79,2101.07,0.00,3515513027644.431152,3515513027635.421387,11,0,0.000000,0.000020,63173956,30862568,0,0,75903,0,1,1 +1773665291.326939,0.70,4,3992.50,53.66,1628.79,2101.07,0.00,0.180302,0.000000,205,0,0.000000,0.000030,63173956,30862571,0,0,75906,0,1,1 +1773665296.327028,0.95,4,3992.50,53.66,1626.65,2100.98,0.00,3518375234814.283691,0.000000,11,0,0.000000,0.000020,63173956,30862573,0,0,75908,0,1,1 +1773665301.327873,0.75,4,3992.50,53.67,1626.42,2101.21,0.00,0.053507,0.000000,75,0,0.000000,0.000030,63173956,30862576,0,0,75911,0,1,1 +1773665306.324160,0.70,4,3992.50,53.67,1626.42,2101.21,0.00,3521052006890.820312,0.000000,11,0,0.000000,0.000020,63173956,30862578,0,0,75913,0,1,1 +1773665311.327574,0.75,4,3992.50,53.67,1626.42,2101.20,0.00,2.173906,0.000195,258,2,0.000000,0.000030,63173956,30862581,0,0,75916,0,1,1 +1773665316.328217,0.60,4,3992.50,53.69,1625.69,2101.94,0.00,3517985130201.868164,3517985130204.042969,11,0,0.000157,0.000200,63173968,30862595,0,0,75918,0,1,1 +1773665321.327068,0.70,4,3992.50,53.69,1625.69,2101.94,0.00,48432.204237,48664.068368,3377265,3014490,0.000016,0.000046,63173970,30862600,0,0,75921,0,1,1 +1773665326.323813,0.95,4,3992.50,53.88,1622.23,2109.53,0.00,3520729180507.941406,3520729180275.925781,75,0,0.000000,0.000020,63173970,30862602,0,0,75923,0,1,1 +1773665331.327575,1.45,4,3992.50,53.75,1627.24,2104.37,0.00,0.000000,0.000000,75,0,0.002207,0.000724,63173992,30862620,0,0,75926,0,1,1 +1773665336.324406,16.73,4,3992.50,55.07,1575.42,2156.18,0.00,2.123220,0.000195,258,2,40.086796,0.020953,63178238,30864025,0,0,75928,0,1,1 +1773665341.324825,0.70,4,3992.50,54.15,1611.52,2120.08,0.00,0.000000,0.000000,258,2,0.000000,0.000674,63178238,30864032,0,0,75931,0,1,1 +1773665346.324932,0.65,4,3992.50,53.77,1626.36,2105.24,0.00,3518361595068.312500,3518361595070.487793,11,0,0.000000,0.000020,63178238,30864034,0,0,75933,0,1,1 +1773665351.328203,0.65,4,3992.50,53.73,1628.13,2103.47,0.00,0.180156,0.000000,205,0,0.000000,0.000030,63178238,30864037,0,0,75936,0,1,1 +1773665356.324408,1.00,4,3992.50,53.88,1628.44,2109.53,0.00,48457.675209,48690.086684,3377265,3014711,0.000000,0.000020,63178238,30864039,0,0,75938,0,1,1 +1773665361.327552,0.75,4,3992.50,53.88,1628.27,2109.53,0.00,9.720060,10.698351,3378768,3015300,0.000000,0.000030,63178238,30864042,0,0,75941,0,1,1 +1773665366.327782,0.60,4,3992.50,53.88,1628.27,2109.54,0.00,3518275174006.680176,3518275174005.748535,3377265,3014747,0.000000,0.000020,63178238,30864044,0,0,75943,0,1,1 +1773665371.323648,0.60,4,3992.50,53.88,1628.14,2109.66,0.00,3521348729910.993164,3521348729687.723145,253,556,0.000000,0.000030,63178238,30864047,0,0,75946,0,1,1 +1773665376.324247,0.70,4,3992.50,53.88,1628.14,2109.66,0.00,3518015611297.890625,3518015611288.874512,11,0,0.000000,0.000020,63178238,30864049,0,0,75948,0,1,1 +1773665381.327933,0.85,4,3992.50,53.88,1628.14,2109.67,0.00,48395.125127,48628.016052,3378768,3015316,0.000157,0.000210,63178250,30864064,0,0,75951,0,1,1 +1773665386.323429,0.95,4,3992.50,54.22,1606.54,2122.80,0.00,3521609704681.725098,3521609704448.271484,205,0,0.000016,0.000036,63178252,30864068,0,0,75953,0,1,1 +1773665391.323466,0.70,4,3992.50,54.19,1607.81,2121.54,0.00,3518411341522.836426,0.000000,11,0,0.000000,0.000030,63178252,30864071,0,0,75956,0,1,1 +1773665396.327715,0.90,4,3992.50,54.19,1607.82,2121.53,0.00,0.053470,0.000000,75,0,0.002344,0.001344,63178283,30864100,0,0,75958,0,1,1 +1773665401.328330,16.78,4,3992.50,54.69,1588.18,2141.16,0.00,1.604002,10.673884,253,556,40.063477,0.031016,63182845,30866331,0,0,75961,0,1,1 +1773665406.328042,0.70,4,3992.50,54.02,1614.42,2114.92,0.00,48431.928740,48656.210691,3378768,3015528,0.000000,0.000664,63182845,30866337,0,0,75963,0,1,1 +1773665411.327368,0.60,4,3992.50,53.87,1620.18,2109.16,0.00,3518911257034.196289,3518911256798.702637,258,2,0.000000,0.000030,63182845,30866340,0,0,75966,0,1,1 +1773665416.327940,1.15,4,3992.50,53.98,1615.17,2113.59,0.00,3518034813246.315430,10.673779,253,556,0.000000,0.000020,63182845,30866342,0,0,75968,0,1,1 +1773665421.327142,0.65,4,3992.50,53.79,1622.70,2106.01,0.00,0.000000,0.000000,253,556,0.000000,0.000030,63182845,30866345,0,0,75971,0,1,1 +1773665426.327665,0.65,4,3992.50,53.79,1622.71,2106.00,0.00,48414.345224,48637.740874,3377265,3015036,0.000000,0.000020,63182845,30866347,0,0,75973,0,1,1 +1773665431.327358,0.60,4,3992.50,53.79,1622.71,2106.00,0.00,3518653657591.833008,3518653657359.382324,11,0,0.000000,0.000030,63182845,30866350,0,0,75976,0,1,1 +1773665436.323450,0.55,4,3992.50,53.79,1622.71,2106.00,0.00,1.659011,10.683545,253,556,0.000000,0.000020,63182845,30866352,0,0,75978,0,1,1 +1773665441.328219,0.65,4,3992.50,53.79,1622.71,2106.00,0.00,3515084461565.718262,3515084461556.656250,75,0,0.000000,0.000030,63182845,30866355,0,0,75981,0,1,1 +1773665446.328321,0.80,4,3992.50,54.00,1612.59,2114.09,0.00,0.126755,0.000000,205,0,0.000157,0.000200,63182857,30866369,0,0,75983,0,1,1 +1773665451.327817,0.50,4,3992.50,54.00,1612.67,2114.04,0.00,0.000000,0.000000,205,0,0.000016,0.000046,63182859,30866374,0,0,75986,0,1,1 +1773665456.323428,0.65,4,3992.50,54.00,1612.70,2114.04,0.00,48473.163364,48707.014317,3378768,3015645,0.000000,0.000020,63182859,30866376,0,0,75988,0,1,1 +1773665461.323424,0.90,4,3992.50,53.94,1614.77,2111.97,0.00,3518440188422.027344,3518440188188.561523,11,0,0.002853,0.001330,63182882,30866395,0,0,75991,0,1,1 +1773665466.323502,15.58,4,3992.50,54.24,1603.28,2123.44,0.00,1.657689,10.675028,253,556,40.061192,0.022274,63187165,30867881,0,0,75993,0,1,1 +1773665471.326630,0.80,4,3992.50,53.91,1615.98,2110.75,0.00,3516237291897.805176,3516237291888.793457,11,0,0.001433,0.002429,63187181,30867913,0,0,75996,0,1,1 +1773665476.327397,0.90,4,3992.50,54.29,1602.38,2125.67,0.00,0.053507,0.000000,75,0,0.000205,0.000552,63187188,30867926,0,0,75998,0,1,1 +1773665481.327937,1.40,4,3992.50,54.21,1605.58,2122.46,0.00,48415.789084,48648.529274,3377265,3015264,0.000000,0.000030,63187188,30867929,0,0,76001,0,1,1 +1773665486.325578,0.70,4,3992.50,54.22,1605.35,2122.70,0.00,3520098419517.782227,3520098419284.960449,11,0,0.000000,0.000020,63187188,30867931,0,0,76003,0,1,1 +1773665491.326958,0.70,4,3992.50,54.21,1605.60,2122.44,0.00,0.053501,0.000000,75,0,0.000000,0.000030,63187188,30867934,0,0,76006,0,1,1 +1773665496.327352,0.50,4,3992.50,54.21,1605.61,2122.44,0.00,1.604073,10.674354,253,556,0.000000,0.000020,63187188,30867936,0,0,76008,0,1,1 +1773665501.326643,0.60,4,3992.50,54.02,1612.99,2115.05,0.00,48436.014882,48660.752830,3378768,3015873,0.000000,0.000030,63187188,30867939,0,0,76011,0,1,1 +1773665506.327538,0.80,4,3992.50,54.02,1613.31,2115.03,0.00,3517807313938.495605,3517807313704.633789,205,0,0.000000,0.000020,63187188,30867941,0,0,76013,0,1,1 +1773665511.323537,0.75,4,3992.50,53.64,1628.12,2100.22,0.00,1.996715,0.000195,258,2,0.000157,0.000211,63187200,30867956,0,0,76016,0,1,1 +1773665516.323573,0.75,4,3992.50,53.65,1627.90,2100.44,0.00,3518412160602.828613,10.674924,253,556,0.001179,0.000694,63187227,30867977,0,0,76018,0,1,1 +1773665521.328164,0.70,4,3992.50,53.65,1627.91,2100.43,0.00,3515209895379.816406,3515209895370.627441,205,0,0.000338,0.000609,63187236,30867993,0,0,76021,0,1,1 +1773665526.327942,0.80,4,3992.50,53.65,1627.91,2100.43,0.00,3518592998106.657715,0.000000,75,0,0.001064,0.000429,63187258,30868009,0,0,76023,0,1,1 +1773665531.327484,15.55,4,3992.50,55.03,1573.61,2154.72,0.00,48425.458100,48658.383259,3377265,3015412,40.068599,0.022980,63191631,30869535,0,0,76026,0,1,1 +1773665536.324868,1.05,4,3992.50,54.49,1592.83,2133.30,0.00,0.000000,0.150274,3377265,3015513,0.000000,0.000664,63191631,30869541,0,0,76028,0,1,1 +1773665541.328218,0.65,4,3992.50,54.08,1608.58,2117.53,0.00,3516081342363.515137,3516081342130.490723,205,0,0.000000,0.000030,63191631,30869544,0,0,76031,0,1,1 +1773665546.326310,0.55,4,3992.50,54.00,1612.04,2114.07,0.00,0.000000,0.000000,205,0,0.000000,0.000033,63191631,30869547,0,0,76033,0,1,1 +1773665551.327682,0.75,4,3992.50,54.00,1612.04,2114.07,0.00,3517471283128.956055,0.000000,75,0,0.000000,0.000030,63191631,30869550,0,0,76036,0,1,1 +1773665556.327407,0.60,4,3992.50,53.81,1619.19,2106.92,0.00,48433.416562,48667.477224,3378768,3016120,0.000000,0.000020,63191631,30869552,0,0,76038,0,1,1 +1773665561.326761,0.65,4,3992.50,53.81,1619.19,2106.92,0.00,3518892185585.805664,3518892185351.781250,11,0,0.000025,0.000061,63191633,30869557,0,0,76041,0,1,1 +1773665566.327710,1.05,4,3992.50,53.96,1613.58,2112.53,0.00,0.053505,0.000000,75,0,0.000039,0.000053,63191636,30869562,0,0,76043,0,1,1 +1773665571.323851,0.60,4,3992.50,53.83,1618.73,2107.38,0.00,48458.420193,48691.758979,3377265,3015592,0.000033,0.000069,63191639,30869568,0,0,76046,0,1,1 +1773665576.328117,0.70,4,3992.50,53.83,1618.72,2107.38,0.00,3515438284197.023926,3515438283961.944336,258,2,0.000157,0.000200,63191651,30869582,0,0,76048,0,1,1 +1773665581.327883,0.65,4,3992.50,53.83,1618.72,2107.38,0.00,3518601343892.794434,3518601343894.969727,11,0,0.000000,0.000030,63191651,30869585,0,0,76051,0,1,1 +1773665586.323462,0.60,4,3992.50,53.83,1618.72,2107.38,0.00,48473.659966,48707.931663,3378768,3016161,0.000000,0.000020,63191651,30869587,0,0,76053,0,1,1 +1773665591.327825,0.70,4,3992.50,53.83,1618.72,2107.38,0.00,3515369716242.077148,3515369716241.132324,3377265,3015606,0.000000,0.000030,63191651,30869590,0,0,76056,0,1,1 +1773665596.328280,14.41,4,3992.50,55.01,1571.93,2153.79,0.00,9.725288,10.749023,3378768,3016237,40.063166,0.021107,63196089,30870917,0,0,76058,0,1,1 +1773665601.328003,0.70,4,3992.50,54.35,1597.96,2127.75,0.00,3518632241165.022461,3518632240930.687012,205,0,0.000000,0.000513,63196089,30870923,0,0,76061,0,1,1 +1773665606.328325,0.65,4,3992.50,54.11,1607.34,2118.38,0.00,1.477346,10.674508,253,556,0.000000,0.000181,63196089,30870926,0,0,76063,0,1,1 +1773665611.328348,0.60,4,3992.50,54.09,1607.87,2117.84,0.00,3518421210620.297363,3518421210611.280273,11,0,0.000000,0.000030,63196089,30870929,0,0,76066,0,1,1 +1773665616.327814,0.75,4,3992.50,53.90,1615.25,2110.45,0.00,0.053521,0.000000,75,0,0.000000,0.000020,63196089,30870931,0,0,76068,0,1,1 +1773665621.327393,0.60,4,3992.50,53.90,1615.27,2110.45,0.00,0.000000,0.000000,75,0,0.000000,0.000030,63196089,30870934,0,0,76071,0,1,1 +1773665626.328028,0.85,4,3992.50,54.08,1612.30,2117.46,0.00,48414.862301,48648.252933,3377265,3015809,0.000000,0.000020,63196089,30870936,0,0,76073,0,1,1 +1773665631.325876,0.65,4,3992.50,53.90,1619.49,2110.25,0.00,3519952272528.709473,3519952272293.065918,258,2,0.000000,0.000030,63196089,30870939,0,0,76076,0,1,1 +1773665636.327756,0.55,4,3992.50,53.90,1619.26,2110.48,0.00,0.000000,0.000000,258,2,0.000000,0.000020,63196089,30870941,0,0,76078,0,1,1 +1773665641.323501,0.70,4,3992.50,53.91,1619.04,2110.70,0.00,48469.875907,48706.610789,3378768,3016405,0.000157,0.000211,63196101,30870956,0,0,76081,0,1,1 +1773665646.327502,0.70,4,3992.50,53.91,1619.04,2110.70,0.00,3515623913198.730957,3515623912973.570801,253,556,0.000016,0.000036,63196103,30870960,0,0,76083,0,1,1 +1773665651.323898,0.60,4,3992.50,53.91,1619.04,2110.70,0.00,3520974846577.162109,3520974846568.138672,11,0,0.000000,0.000030,63196103,30870963,0,0,76086,0,1,1 +1773665656.323444,0.95,4,3992.50,54.10,1608.93,2118.30,0.00,2.175588,0.000195,258,2,0.000000,0.000020,63196103,30870965,0,0,76088,0,1,1 +1773665661.323461,14.94,4,3992.50,55.11,1569.25,2157.73,0.00,3518425136460.876465,3518425136462.871582,205,0,40.065985,0.022862,63200591,30872494,0,0,76091,0,1,1 +1773665666.323444,0.65,4,3992.50,54.40,1597.07,2129.93,0.00,3518449555826.201172,0.000000,11,0,0.000619,0.000756,63200603,30872506,0,0,76093,0,1,1 +1773665671.323981,0.55,4,3992.50,54.05,1610.91,2116.09,0.00,48425.593978,48660.069362,3378768,3016561,0.000000,0.000191,63200603,30872510,0,0,76096,0,1,1 +1773665676.326582,0.60,4,3992.50,54.02,1612.03,2114.97,0.00,3516607546208.153809,3516607545973.774902,11,0,0.000000,0.000020,63200603,30872512,0,0,76098,0,1,1 +1773665681.323468,0.70,4,3992.50,54.00,1612.66,2114.34,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63200603,30872515,0,0,76101,0,1,1 +1773665686.327549,0.95,4,3992.50,53.83,1614.93,2107.45,0.00,2.173616,0.000195,258,2,0.000000,0.000020,63200603,30872517,0,0,76103,0,1,1 +1773665691.323406,0.70,4,3992.50,53.66,1621.51,2100.72,0.00,3521355460383.346191,3521355460385.343262,205,0,0.000000,0.000030,63200603,30872520,0,0,76106,0,1,1 +1773665696.327508,0.55,4,3992.50,53.66,1621.30,2100.94,0.00,3515552650824.666016,0.000000,75,0,0.000000,0.000020,63200603,30872522,0,0,76108,0,1,1 +1773665701.325367,0.75,4,3992.50,53.65,1621.74,2100.50,0.00,3519944782929.962402,0.000000,11,0,0.000000,0.000030,63200603,30872525,0,0,76111,0,1,1 +1773665706.323984,0.65,4,3992.50,53.65,1621.74,2100.50,0.00,0.000000,0.000000,11,0,0.000132,0.000169,63200613,30872537,0,0,76113,0,1,1 +1773665711.328348,0.65,4,3992.50,53.65,1621.74,2100.49,0.00,2.173494,0.000195,258,2,0.000041,0.000077,63200617,30872544,0,0,76116,0,1,1 +1773665716.328030,0.95,4,3992.50,53.96,1605.72,2112.58,0.00,3518661393354.379395,3518661393356.554688,11,0,0.000000,0.000020,63200617,30872546,0,0,76118,0,1,1 +1773665721.328260,0.65,4,3992.50,53.89,1608.66,2109.74,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63200617,30872549,0,0,76121,0,1,1 +1773665726.325890,13.78,4,3992.50,53.62,1619.13,2099.23,0.00,48444.034005,48677.946534,3377265,3016208,40.083986,0.019867,63205039,30873856,0,0,76123,0,1,1 +1773665731.323498,0.55,4,3992.50,53.60,1619.91,2098.46,0.00,3520121530870.561523,3520121530636.467773,205,0,0.000000,0.000674,63205039,30873863,0,0,76126,0,1,1 +1773665736.327554,0.70,4,3992.50,53.61,1619.43,2098.93,0.00,48381.647378,48615.524074,3377265,3016288,0.000000,0.000020,63205039,30873865,0,0,76128,0,1,1 +1773665741.327442,0.65,4,3992.50,53.64,1618.21,2100.16,0.00,3518515804216.327148,3518515803982.382324,75,0,0.000000,0.000030,63205039,30873868,0,0,76131,0,1,1 +1773665746.327549,1.05,4,3992.50,53.71,1615.57,2102.79,0.00,3518361871607.734863,0.000000,11,0,0.000000,0.000056,63205039,30873871,0,0,76133,0,1,1 +1773665751.326837,0.55,4,3992.50,53.73,1614.84,2103.53,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63205039,30873874,0,0,76136,0,1,1 +1773665756.328038,0.65,4,3992.50,53.73,1614.84,2103.52,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63205039,30873876,0,0,76138,0,1,1 +1773665761.327827,0.65,4,3992.50,53.54,1622.24,2096.13,0.00,48432.849534,48667.820615,3378768,3016922,0.000000,0.000030,63205039,30873879,0,0,76141,0,1,1 +1773665766.324163,0.50,4,3992.50,53.54,1622.24,2096.12,0.00,3521017164653.698730,3521017164418.564941,11,0,0.000000,0.000020,63205039,30873881,0,0,76143,0,1,1 +1773665771.323639,0.65,4,3992.50,53.55,1621.77,2096.59,0.00,1.657889,10.676314,253,556,0.000669,0.001297,63205065,30873918,0,0,76146,0,1,1 +1773665776.326281,0.85,4,3992.50,53.76,1618.51,2104.71,0.00,3516579248148.521484,3516579248139.509277,11,0,0.000213,0.000560,63205073,30873932,0,0,76148,0,1,1 +1773665781.325059,0.60,4,3992.50,53.76,1618.34,2104.67,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63205073,30873935,0,0,76151,0,1,1 +1773665786.327981,0.55,4,3992.50,53.76,1618.34,2104.67,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63205073,30873937,0,0,76153,0,1,1 +1773665791.327411,17.16,4,3992.50,55.54,1548.50,2174.51,0.00,0.053522,0.000000,75,0,40.066937,0.021047,63209372,30875314,0,0,76156,0,1,1 +1773665796.328115,0.80,4,3992.50,54.63,1583.95,2139.05,0.00,1.603973,10.673692,253,556,0.003085,0.001428,63209428,30875353,0,0,76158,0,1,1 +1773665801.327365,0.55,4,3992.50,54.00,1608.68,2114.33,0.00,48436.408348,48662.579098,3378768,3017122,0.000000,0.000674,63209428,30875360,0,0,76161,0,1,1 +1773665806.327759,0.90,4,3992.50,54.04,1608.02,2115.62,0.00,3518159927339.410645,3518159927104.094727,205,0,0.000000,0.000020,63209428,30875362,0,0,76163,0,1,1 +1773665811.328161,0.70,4,3992.50,54.04,1607.80,2115.85,0.00,3518154136090.336914,0.000000,11,0,0.000000,0.000030,63209428,30875365,0,0,76166,0,1,1 +1773665816.327412,0.60,4,3992.50,54.05,1607.58,2116.07,0.00,1.657963,10.676796,253,556,0.001841,0.001600,63209457,30875386,0,0,76168,0,1,1 +1773665821.323495,0.75,4,3992.50,54.05,1607.59,2116.07,0.00,3521195302710.493652,3521195302701.289062,205,0,0.000339,0.000610,63209466,30875402,0,0,76171,0,1,1 +1773665826.323559,0.70,4,3992.50,54.05,1607.60,2116.05,0.00,0.000000,0.000000,205,0,0.001072,0.000429,63209489,30875418,0,0,76173,0,1,1 +1773665831.326447,0.60,4,3992.50,54.05,1607.36,2116.29,0.00,48402.656544,48637.984073,3378768,3017202,0.000000,0.000030,63209489,30875421,0,0,76176,0,1,1 +1773665836.325811,0.85,4,3992.50,54.05,1608.66,2116.29,0.00,3518884857616.180664,3518884857380.867676,11,0,0.000044,0.000047,63209492,30875425,0,0,76178,0,1,1 +1773665841.323742,0.65,4,3992.50,54.05,1608.70,2116.26,0.00,0.000000,0.000000,11,0,0.000142,0.000198,63209502,30875439,0,0,76181,0,1,1 +1773665846.327500,0.75,4,3992.50,54.05,1608.70,2116.26,0.00,0.180138,0.000000,205,0,0.000000,0.000020,63209502,30875441,0,0,76183,0,1,1 +1773665851.328314,0.60,4,3992.50,54.05,1608.70,2116.26,0.00,48413.016273,48647.556437,3377265,3016687,0.000000,0.000030,63209502,30875444,0,0,76186,0,1,1 +1773665856.323419,24.42,4,3992.50,59.10,1411.10,2313.85,0.00,3521884738363.149902,3521884738128.521973,11,0,21.982651,0.026095,63213523,30877291,0,0,76188,0,1,1 +1773665861.323436,1.05,4,3992.50,53.64,1624.81,2100.14,0.00,2.175383,0.000195,258,2,18.121009,0.004586,63215250,30877580,0,0,76191,0,1,1 +1773665866.323422,0.85,4,3992.50,53.78,1625.27,2105.51,0.00,48428.754564,48666.475031,3378768,3017430,0.000044,0.000691,63215253,30877588,0,0,76193,0,1,1 +1773665871.326322,0.70,4,3992.50,53.79,1624.80,2106.00,0.00,3516397473394.859375,3516397473159.270996,205,0,0.000052,0.000094,63215257,30877596,0,0,76196,0,1,1 +1773665876.327851,0.55,4,3992.50,53.79,1624.81,2106.00,0.00,48415.814365,48651.504699,3378768,3017468,0.000000,0.000020,63215257,30877598,0,0,76198,0,1,1 +1773665881.327801,0.65,4,3992.50,53.81,1624.07,2106.73,0.00,3518472763879.956543,3518472763653.389648,253,556,0.000000,0.000030,63215257,30877601,0,0,76201,0,1,1 +1773665886.328000,0.50,4,3992.50,53.83,1623.34,2107.47,0.00,3518297171506.724121,3518297171497.526855,205,0,0.000000,0.000020,63215257,30877603,0,0,76203,0,1,1 +1773665891.323555,0.70,4,3992.50,53.83,1623.34,2107.47,0.00,3521567483734.620117,0.000000,11,0,0.000000,0.000030,63215257,30877606,0,0,76206,0,1,1 +1773665896.328080,0.70,4,3992.50,54.07,1618.62,2117.03,0.00,2.173424,0.000195,258,2,0.000000,0.000020,63215257,30877608,0,0,76208,0,1,1 +1773665901.326467,0.65,4,3992.50,54.07,1618.62,2117.03,0.00,3519572532175.112793,3519572532177.108887,205,0,0.000031,0.000055,63215259,30877613,0,0,76211,0,1,1 +1773665906.327538,0.85,4,3992.50,54.07,1618.62,2117.03,0.00,0.000000,0.000000,205,0,0.000138,0.000183,63215270,30877626,0,0,76213,0,1,1 +1773665911.327654,0.55,4,3992.50,54.07,1618.62,2117.03,0.00,3518355872939.345215,0.000000,75,0,0.000000,0.000030,63215270,30877629,0,0,76216,0,1,1 +1773665916.327566,0.55,4,3992.50,54.08,1618.38,2117.27,0.00,3518499172468.373047,0.000000,11,0,0.000000,0.000020,63215270,30877631,0,0,76218,0,1,1 +1773665921.327564,0.60,4,3992.50,54.08,1618.38,2117.27,0.00,48421.090951,48655.797386,3377265,3016961,0.000000,0.000030,63215270,30877634,0,0,76221,0,1,1 +1773665926.327497,10.64,4,3992.50,59.51,1395.09,2330.00,0.00,3518484698005.185059,3518484697770.475586,11,0,22.351630,0.024418,63219180,30879329,0,0,76223,0,1,1 +1773665931.328186,1.81,4,3992.50,54.64,1585.68,2139.39,0.00,2.175091,0.000195,258,2,17.727818,0.006016,63220898,30879657,0,0,76226,0,1,1 +1773665936.328306,0.55,4,3992.50,54.23,1601.68,2123.40,0.00,3518352625574.552246,10.674743,253,556,0.000000,0.000020,63220898,30879659,0,0,76228,0,1,1 +1773665941.327585,0.65,4,3992.50,54.18,1603.85,2121.23,0.00,0.517750,3518944569596.780762,258,2,0.000000,0.000030,63220898,30879662,0,0,76231,0,1,1 +1773665946.328273,0.60,4,3992.50,54.18,1603.63,2121.45,0.00,0.000000,0.000000,258,2,0.000000,0.000020,63220898,30879664,0,0,76233,0,1,1 +1773665951.328018,0.70,4,3992.50,54.17,1604.38,2120.71,0.00,3518616882829.985840,3518616882831.981445,205,0,0.000000,0.000030,63220898,30879667,0,0,76236,0,1,1 +1773665956.327903,0.85,4,3992.50,53.88,1613.57,2109.35,0.00,0.000000,0.000000,205,0,0.000000,0.000053,63220898,30879670,0,0,76238,0,1,1 +1773665961.327480,0.60,4,3992.50,53.87,1613.57,2109.18,0.00,3518735121888.420898,0.000000,75,0,0.000000,0.000030,63220898,30879673,0,0,76241,0,1,1 +1773665966.325190,0.65,4,3992.50,53.87,1613.58,2109.18,0.00,2.122847,0.000195,258,2,0.000000,0.000020,63220898,30879675,0,0,76243,0,1,1 +1773665971.328130,0.50,4,3992.50,53.87,1613.58,2109.18,0.00,3516369743115.259277,3516369743117.433594,11,0,0.000031,0.000055,63220900,30879680,0,0,76246,0,1,1 +1773665976.327556,0.55,4,3992.50,53.87,1613.58,2109.18,0.00,1.657905,10.676422,253,556,0.000149,0.000191,63220912,30879694,0,0,76248,0,1,1 +1773665981.328271,0.55,4,3992.50,53.87,1613.58,2109.17,0.00,48412.486941,48638.456459,3377265,3017236,0.000000,0.000030,63220912,30879697,0,0,76251,0,1,1 +1773665986.327605,0.75,4,3992.50,53.97,1609.31,2112.86,0.00,0.000000,0.027347,3377265,3017251,0.000000,0.000020,63220912,30879699,0,0,76253,0,1,1 +1773665991.325766,0.55,4,3992.50,53.81,1615.50,2106.60,0.00,3519732125522.875000,3519732125287.741699,11,0,0.000000,0.000030,63220912,30879702,0,0,76256,0,1,1 +1773665996.327610,14.08,4,3992.50,58.84,1418.38,2303.71,0.00,0.180207,0.000000,205,0,26.191009,0.024873,63224979,30881415,0,0,76258,0,1,1 +1773666001.327647,1.60,4,3992.50,53.48,1628.32,2093.77,0.00,48420.533897,48655.908033,3377265,3017392,13.877223,0.004332,63226326,30881656,0,0,76261,0,1,1 +1773666006.327451,0.75,4,3992.50,53.49,1627.75,2094.34,0.00,3518575505221.271973,3518575504986.066895,11,0,0.000000,0.000020,63226326,30881658,0,0,76263,0,1,1 +1773666011.328333,0.75,4,3992.50,53.50,1627.50,2094.59,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63226326,30881661,0,0,76266,0,1,1 +1773666016.328037,1.05,4,3992.50,53.72,1621.73,2103.15,0.00,1.657813,10.675826,253,556,0.000000,0.000020,63226326,30881663,0,0,76268,0,1,1 +1773666021.327621,1.40,4,3992.50,53.74,1620.89,2103.88,0.00,3518729651910.457520,3518729651901.386230,75,0,0.000000,0.000030,63226326,30881666,0,0,76271,0,1,1 +1773666026.327665,0.75,4,3992.50,53.74,1620.90,2103.88,0.00,2.121857,0.000195,258,2,0.000000,0.000020,63226326,30881668,0,0,76273,0,1,1 +1773666031.327989,0.60,4,3992.50,53.74,1620.66,2104.11,0.00,48415.762007,48653.276802,3377265,3017534,0.000000,0.000030,63226326,30881671,0,0,76276,0,1,1 +1773666036.323425,0.60,4,3992.50,53.74,1620.66,2104.11,0.00,3521651333600.469727,3521651333364.899902,11,0,0.000000,0.000020,63226326,30881673,0,0,76278,0,1,1 +1773666041.323483,0.70,4,3992.50,53.76,1619.93,2104.85,0.00,0.000000,0.000000,11,0,0.000031,0.000055,63226328,30881678,0,0,76281,0,1,1 +1773666046.328220,0.75,4,3992.50,53.76,1623.18,2104.78,0.00,48375.241257,48610.442154,3377265,3017586,0.000134,0.000191,63226339,30881692,0,0,76283,0,1,1 +1773666051.327869,0.60,4,3992.50,53.78,1622.22,2105.72,0.00,0.000000,0.014845,3377265,3017604,0.000000,0.000030,63226339,30881695,0,0,76286,0,1,1 +1773666056.328137,0.70,4,3992.50,53.79,1621.77,2106.18,0.00,0.000000,0.002344,3377265,3017607,0.000000,0.000020,63226339,30881697,0,0,76288,0,1,1 +1773666061.328245,12.49,4,3992.50,59.12,1413.36,2314.59,0.00,3518361463618.963379,3518361463383.473633,75,0,7.034327,0.021971,63228744,30883201,0,0,76291,0,1,1 +1773666066.327453,3.71,4,3992.50,54.82,1581.76,2146.18,0.00,48428.682738,48664.326082,3377265,3017739,33.049942,0.007156,63231848,30883666,0,0,76293,0,1,1 +1773666071.323439,0.85,4,3992.50,54.17,1607.25,2120.69,0.00,3521264326547.087402,3521264326320.370605,253,556,0.001579,0.002467,63231874,30883700,0,0,76296,0,1,1 +1773666076.323458,0.85,4,3992.50,53.94,1608.47,2111.80,0.00,48428.958479,48656.534183,3378768,3018358,0.000232,0.000552,63231883,30883713,0,0,76298,0,1,1 +1773666081.323547,0.75,4,3992.50,53.76,1615.38,2104.88,0.00,3518374683265.800293,3518374683029.210449,11,0,0.000000,0.000030,63231883,30883716,0,0,76301,0,1,1 +1773666086.323491,0.65,4,3992.50,53.76,1615.38,2104.88,0.00,2.175415,0.000195,258,2,0.000000,0.000020,63231883,30883718,0,0,76303,0,1,1 +1773666091.323509,0.45,4,3992.50,53.76,1615.39,2104.87,0.00,3518424719880.818848,3518424719882.813965,205,0,0.000000,0.000030,63231883,30883721,0,0,76306,0,1,1 +1773666096.323491,0.65,4,3992.50,53.77,1615.14,2105.12,0.00,3518449626195.440430,0.000000,11,0,0.000000,0.000020,63231883,30883723,0,0,76308,0,1,1 +1773666101.325884,0.60,4,3992.50,53.77,1615.14,2105.12,0.00,0.053490,0.000000,75,0,0.000000,0.000030,63231883,30883726,0,0,76311,0,1,1 +1773666106.323435,0.80,4,3992.50,53.85,1609.91,2108.23,0.00,0.126820,0.000000,205,0,0.000031,0.000045,63231885,30883730,0,0,76313,0,1,1 +1773666111.326965,0.70,4,3992.50,53.77,1612.92,2105.21,0.00,3515954494967.396973,0.000000,11,0,0.000151,0.000201,63231897,30883745,0,0,76316,0,1,1 +1773666116.325601,0.80,4,3992.50,53.78,1612.48,2105.68,0.00,48444.011526,48680.781083,3378768,3018446,0.001879,0.001665,63231929,30883771,0,0,76318,0,1,1 +1773666121.327957,0.70,4,3992.50,53.79,1612.25,2105.91,0.00,3516780602643.065918,3516780602642.123535,3377265,3017892,0.000353,0.000609,63231939,30883787,0,0,76321,0,1,1 +1773666126.330546,1.86,4,3992.50,57.66,1460.54,2257.59,0.00,9.721138,10.699538,3378768,3018488,0.005692,0.004764,63232036,30883861,0,0,76323,0,1,1 +1773666131.323436,13.48,4,3992.50,54.96,1566.45,2151.68,0.00,3523447637588.932129,3523447637351.673828,205,0,40.134098,0.025060,63237614,30885717,0,0,76326,0,1,1 +1773666136.325370,0.90,4,3992.50,54.31,1591.09,2126.34,0.00,3517076402783.712402,0.000000,11,0,0.000000,0.000020,63237614,30885719,0,0,76328,0,1,1 +1773666141.323566,0.65,4,3992.50,53.95,1605.13,2112.35,0.00,0.053535,0.000000,75,0,0.000000,0.000030,63237614,30885722,0,0,76331,0,1,1 +1773666146.323564,0.65,4,3992.50,53.95,1605.38,2112.10,0.00,1.604200,10.675200,253,556,0.000000,0.000020,63237614,30885724,0,0,76333,0,1,1 +1773666151.323627,0.65,4,3992.50,53.95,1605.38,2112.10,0.00,0.517669,3518393185329.632812,258,2,0.000000,0.000030,63237614,30885727,0,0,76336,0,1,1 +1773666156.326084,0.60,4,3992.50,53.95,1605.38,2112.10,0.00,3516709041790.597656,3516709041792.718262,75,0,0.000000,0.000020,63237614,30885729,0,0,76338,0,1,1 +1773666161.327136,0.60,4,3992.50,53.95,1605.38,2112.09,0.00,1.603862,10.672949,253,556,0.000027,0.000061,63237616,30885734,0,0,76341,0,1,1 +1773666166.323450,0.85,4,3992.50,53.98,1604.05,2113.57,0.00,48464.873373,48693.040424,3378768,3018709,0.000039,0.000053,63237619,30885739,0,0,76343,0,1,1 +1773666171.327561,0.65,4,3992.50,53.94,1605.57,2111.88,0.00,3515546272613.072754,3515546272376.197266,75,0,0.000059,0.000086,63237623,30885746,0,0,76346,0,1,1 +1773666176.323457,0.75,4,3992.50,53.95,1605.35,2112.12,0.00,2.123618,0.000195,258,2,0.000120,0.000175,63237632,30885758,0,0,76348,0,1,1 +1773666181.323432,0.60,4,3992.50,53.95,1605.35,2112.12,0.00,3518454363457.172363,3518454363459.294434,75,0,0.000000,0.000030,63237632,30885761,0,0,76351,0,1,1 +1773666186.323475,0.60,4,3992.50,53.98,1604.14,2113.34,0.00,0.000000,0.000000,75,0,0.000000,0.000020,63237632,30885763,0,0,76353,0,1,1 +1773666191.325284,1.35,4,3992.50,53.95,1605.18,2112.29,0.00,3517164505321.073242,0.000000,11,0,0.003181,0.002729,63237674,30885801,0,0,76356,0,1,1 +1773666196.327825,16.36,4,3992.50,55.07,1568.41,2156.27,0.00,0.000000,0.000000,11,0,40.054835,0.026445,63243113,30887750,0,0,76358,0,1,1 +1773666201.323468,0.55,4,3992.50,54.43,1593.70,2130.98,0.00,1.659160,10.684505,253,556,0.000640,0.000278,63243127,30887760,0,0,76361,0,1,1 +1773666206.323436,0.65,4,3992.50,54.00,1610.62,2114.05,0.00,0.517679,3518460035233.849609,258,2,0.000000,0.000020,63243127,30887762,0,0,76363,0,1,1 +1773666211.327601,0.65,4,3992.50,54.00,1610.30,2114.38,0.00,3515508450743.492188,3515508450745.612305,75,0,0.000000,0.000030,63243127,30887765,0,0,76366,0,1,1 +1773666216.323441,0.50,4,3992.50,54.00,1610.61,2114.06,0.00,1.605535,10.684085,253,556,0.000000,0.000020,63243127,30887767,0,0,76368,0,1,1 +1773666221.327807,0.50,4,3992.50,54.00,1610.61,2114.06,0.00,48386.890978,48614.940483,3378768,3018948,0.000000,0.000030,63243127,30887770,0,0,76371,0,1,1 +1773666226.327239,0.80,4,3992.50,53.80,1603.32,2106.33,0.00,3518836532214.334473,3518836531974.866211,258,2,0.000000,0.000020,63243127,30887772,0,0,76373,0,1,1 +1773666231.327761,0.60,4,3992.50,53.64,1609.53,2100.15,0.00,48423.565800,48663.043815,3378768,3018983,0.000000,0.000030,63243127,30887775,0,0,76376,0,1,1 +1773666236.323419,0.65,4,3992.50,53.67,1608.30,2101.38,0.00,3521495907146.877930,3521495906909.343750,11,0,0.000000,0.000020,63243127,30887777,0,0,76378,0,1,1 +1773666241.327397,0.85,4,3992.50,53.68,1608.06,2101.62,0.00,1.656397,10.666708,253,556,0.000134,0.000179,63243137,30887790,0,0,76381,0,1,1 +1773666246.327662,0.75,4,3992.50,53.68,1607.84,2101.84,0.00,48426.571513,48654.880687,3378768,3018991,0.000033,0.000059,63243140,30887795,0,0,76383,0,1,1 +1773666251.324736,0.55,4,3992.50,53.68,1607.84,2101.84,0.00,0.000000,0.003127,3378768,3018994,0.000000,0.000030,63243140,30887798,0,0,76386,0,1,1 +1773666256.323577,0.85,4,3992.50,53.77,1609.17,2105.29,0.00,3519253273177.074219,3519253272937.501465,258,2,0.000000,0.000664,63243140,30887804,0,0,76388,0,1,1 +1773666261.327756,1.10,4,3992.50,53.98,1601.22,2113.24,0.00,3515498501734.148926,3515498501736.142578,205,0,0.004643,0.003264,63243197,30887848,0,0,76391,0,1,1 +1773666266.324308,12.15,4,3992.50,55.15,1555.08,2159.38,0.00,48464.044789,48701.861059,3378768,3019140,40.103841,0.026105,63248707,30889788,0,0,76393,0,1,1 +1773666271.328387,0.60,4,3992.50,54.39,1584.80,2129.67,0.00,3515568722152.173828,3515568721914.841797,75,0,0.000000,0.000030,63248707,30889791,0,0,76396,0,1,1 +1773666276.327749,0.60,4,3992.50,54.00,1600.12,2114.34,0.00,48427.204458,48663.851675,3377265,3018622,0.000000,0.000020,63248707,30889793,0,0,76398,0,1,1 +1773666281.323542,0.60,4,3992.50,53.93,1603.11,2111.35,0.00,3521399525135.789551,3521399524898.846191,205,0,0.000000,0.000030,63248707,30889796,0,0,76401,0,1,1 +1773666286.328192,1.00,4,3992.50,54.00,1599.29,2114.38,0.00,3515168351892.712402,0.000000,11,0,0.000000,0.000020,63248707,30889798,0,0,76403,0,1,1 +1773666291.327544,0.60,4,3992.50,53.95,1601.54,2112.14,0.00,1.657930,10.676580,253,556,0.000000,0.000030,63248707,30889801,0,0,76406,0,1,1 +1773666296.328006,0.60,4,3992.50,54.00,1599.42,2114.26,0.00,0.517628,3518112075508.842773,258,2,0.000000,0.000020,63248707,30889803,0,0,76408,0,1,1 +1773666301.327706,0.95,4,3992.50,54.00,1599.42,2114.26,0.00,48431.529543,48671.345886,3378768,3019249,0.000000,0.000030,63248707,30889806,0,0,76411,0,1,1 +1773666306.327045,0.70,4,3992.50,53.99,1599.70,2113.98,0.00,0.000000,0.021878,3378768,3019256,0.000031,0.000032,63248709,30889809,0,0,76413,0,1,1 +1773666311.327830,0.60,4,3992.50,53.99,1599.70,2113.98,0.00,3517884682291.716309,3517884682054.051270,75,0,0.000130,0.000198,63248719,30889823,0,0,76416,0,1,1 +1773666316.327312,1.00,4,3992.50,54.01,1602.12,2114.69,0.00,48435.757562,48673.552286,3378768,3019309,0.000008,0.000028,63248720,30889826,0,0,76418,0,1,1 +1773666321.326509,0.70,4,3992.50,54.00,1602.54,2114.29,0.00,3519002946308.741211,3519002946307.805176,3377265,3018765,0.000000,0.000030,63248720,30889829,0,0,76421,0,1,1 +1773666326.328115,0.90,4,3992.50,53.97,1603.82,2113.01,0.00,3517306864757.797363,3517306864530.107422,253,556,0.002246,0.001368,63248745,30889851,0,0,76423,0,1,1 +1773666331.326039,13.02,4,3992.50,54.99,1563.95,2152.88,0.00,0.000000,0.000000,253,556,40.094357,0.027782,63254290,30891799,0,0,76426,0,1,1 +1773666336.327809,0.65,4,3992.50,54.45,1585.18,2131.64,0.00,48412.007417,48640.746287,3378768,3019451,0.000000,0.000020,63254290,30891801,0,0,76428,0,1,1 +1773666341.328063,0.70,4,3992.50,54.22,1593.89,2122.94,0.00,3518258033270.198730,3518258033032.373047,11,0,0.000000,0.000030,63254290,30891804,0,0,76431,0,1,1 +1773666346.328199,0.65,4,3992.50,54.23,1593.53,2123.30,0.00,0.180269,0.000000,205,0,0.000000,0.000020,63254290,30891806,0,0,76433,0,1,1 +1773666351.327747,1.05,4,3992.50,54.19,1595.30,2121.71,0.00,48434.998804,48673.134011,3378768,3019512,0.000000,0.000030,63254290,30891809,0,0,76436,0,1,1 +1773666356.328133,0.70,4,3992.50,53.83,1609.58,2107.43,0.00,0.000000,0.029685,3378768,3019544,0.000000,0.000020,63254290,30891811,0,0,76438,0,1,1 +1773666361.328144,0.70,4,3992.50,53.88,1607.37,2109.64,0.00,3518429267911.867676,3518429267673.904785,11,0,0.000000,0.000030,63254290,30891814,0,0,76441,0,1,1 +1773666366.328010,0.75,4,3992.50,53.89,1607.15,2109.86,0.00,0.180278,0.000000,205,0,0.000000,0.000020,63254290,30891816,0,0,76443,0,1,1 +1773666371.328304,0.75,4,3992.50,53.91,1606.45,2110.56,0.00,3518230459366.482422,0.000000,75,0,0.001551,0.001811,63254314,30891846,0,0,76446,0,1,1 +1773666376.327397,1.00,4,3992.50,54.10,1599.55,2118.15,0.00,0.126781,0.000000,205,0,0.000389,0.000741,63254335,30891872,0,0,76448,0,1,1 +1773666381.326970,0.60,4,3992.50,54.10,1599.58,2118.15,0.00,3518737462046.908203,0.000000,11,0,0.000000,0.000030,63254335,30891875,0,0,76451,0,1,1 +1773666386.328021,0.80,4,3992.50,54.11,1599.36,2118.36,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63254335,30891877,0,0,76453,0,1,1 +1773666391.327236,0.75,4,3992.50,53.99,1604.04,2113.69,0.00,0.000000,0.000000,11,0,0.000564,0.000761,63254346,30891889,0,0,76456,0,1,1 +1773666396.327458,19.99,4,3992.50,55.48,1545.63,2172.09,0.00,0.180265,0.000000,205,0,40.074577,0.027127,63259799,30893802,0,0,76458,0,1,1 +1773666401.327644,0.90,4,3992.50,54.54,1582.38,2135.34,0.00,3518306508018.268066,0.000000,75,0,0.002263,0.001089,63259844,30893835,0,0,76461,0,1,1 +1773666406.328351,0.85,4,3992.50,54.47,1595.68,2132.59,0.00,1.603972,10.673685,253,556,0.000000,0.000020,63259844,30893837,0,0,76463,0,1,1 +1773666411.324636,0.70,4,3992.50,54.09,1608.53,2117.86,0.00,3521053845540.527832,3521053845531.503906,11,0,0.000000,0.000030,63259844,30893840,0,0,76466,0,1,1 +1773666416.327838,0.80,4,3992.50,54.10,1608.40,2117.98,0.00,0.053481,0.000000,75,0,0.001196,0.000694,63259872,30893860,0,0,76468,0,1,1 +1773666421.323904,0.80,4,3992.50,54.09,1608.58,2117.81,0.00,3521207783197.160645,0.000000,11,0,0.000375,0.000618,63259884,30893877,0,0,76471,0,1,1 +1773666426.324665,0.65,4,3992.50,54.09,1608.75,2117.63,0.00,0.180246,0.000000,205,0,0.001786,0.001383,63259913,30893897,0,0,76473,0,1,1 +1773666431.323432,0.65,4,3992.50,54.10,1608.30,2118.09,0.00,0.000000,0.000000,205,0,0.000000,0.000030,63259913,30893900,0,0,76476,0,1,1 +1773666436.324393,1.05,4,3992.50,54.03,1607.36,2115.49,0.00,48421.313616,48659.797669,3378768,3019861,0.000000,0.000020,63259913,30893902,0,0,76478,0,1,1 +1773666441.327742,0.70,4,3992.50,54.03,1607.36,2115.49,0.00,3516081863088.102539,3516081862849.859375,75,0,0.000031,0.000055,63259915,30893907,0,0,76481,0,1,1 +1773666446.325182,0.65,4,3992.50,54.03,1607.36,2115.49,0.00,0.000000,0.000000,75,0,0.000076,0.000113,63259921,30893915,0,0,76483,0,1,1 +1773666451.327906,0.80,4,3992.50,53.86,1614.02,2108.83,0.00,2.120720,0.000195,258,2,0.000008,0.000038,63259922,30893919,0,0,76486,0,1,1 +1773666456.328300,0.70,4,3992.50,53.87,1613.80,2109.05,0.00,3518160038382.352539,3518160038384.527832,11,0,0.000000,0.000664,63259922,30893925,0,0,76488,0,1,1 +1773666461.323912,17.47,4,3992.50,55.61,1545.67,2177.18,0.00,0.000000,0.000000,11,0,40.099085,0.021069,63264254,30895320,0,0,76491,0,1,1 +1773666466.325465,1.05,4,3992.50,54.79,1573.75,2145.09,0.00,0.000000,0.000000,11,0,0.000693,0.000463,63264271,30895334,0,0,76493,0,1,1 +1773666471.327678,0.65,4,3992.50,54.16,1598.38,2120.46,0.00,0.180194,0.000000,205,0,0.000025,0.000061,63264273,30895339,0,0,76496,0,1,1 +1773666476.328040,0.55,4,3992.50,54.00,1604.66,2114.18,0.00,3518182175857.145508,0.000000,75,0,0.000000,0.000020,63264273,30895341,0,0,76498,0,1,1 +1773666481.327593,0.70,4,3992.50,54.00,1604.75,2114.09,0.00,0.126769,0.000000,205,0,0.000000,0.000030,63264273,30895344,0,0,76501,0,1,1 +1773666486.327317,0.60,4,3992.50,53.82,1611.79,2107.05,0.00,3518631259285.790527,0.000000,11,0,0.000000,0.000020,63264273,30895346,0,0,76503,0,1,1 +1773666491.328036,0.60,4,3992.50,53.82,1611.57,2107.27,0.00,0.053508,0.000000,75,0,0.000000,0.000030,63264273,30895349,0,0,76506,0,1,1 +1773666496.327344,0.85,4,3992.50,53.96,1600.08,2112.69,0.00,3518924370180.523926,0.000000,11,0,0.000000,0.000020,63264273,30895351,0,0,76508,0,1,1 +1773666501.327407,0.55,4,3992.50,53.96,1600.00,2112.66,0.00,48430.185499,48668.833160,3378768,3020116,0.000000,0.000030,63264273,30895354,0,0,76511,0,1,1 +1773666506.324713,0.55,4,3992.50,53.96,1600.01,2112.66,0.00,3520333615567.978516,3520333615329.199219,11,0,0.000132,0.000169,63264283,30895366,0,0,76513,0,1,1 +1773666511.328081,0.60,4,3992.50,53.78,1607.03,2105.63,0.00,0.000000,0.000000,11,0,0.000041,0.000077,63264287,30895373,0,0,76516,0,1,1 +1773666516.327114,0.60,4,3992.50,53.83,1605.10,2107.56,0.00,2.175811,0.000195,258,2,0.000000,0.000020,63264287,30895375,0,0,76518,0,1,1 +1773666521.327981,0.55,4,3992.50,53.84,1604.86,2107.80,0.00,0.000000,0.000000,258,2,0.000000,0.000674,63264287,30895382,0,0,76521,0,1,1 +1773666526.323398,15.90,4,3992.50,55.53,1538.27,2174.24,0.00,3521664945809.975586,3521664945811.972656,205,0,40.102373,0.024377,63268705,30897017,0,0,76523,0,1,1 +1773666531.327855,0.60,4,3992.50,54.71,1570.62,2141.91,0.00,48387.492912,48626.247308,3378768,3020247,0.000000,0.000030,63268705,30897020,0,0,76526,0,1,1 +1773666536.327963,0.55,4,3992.50,54.24,1588.93,2123.61,0.00,3518360572779.452637,3518360572540.670898,11,0,0.000000,0.000020,63268705,30897022,0,0,76528,0,1,1 +1773666541.328296,0.60,4,3992.50,53.94,1600.74,2111.79,0.00,48417.847186,48655.673725,3377265,3019694,0.000000,0.000030,63268705,30897025,0,0,76531,0,1,1 +1773666546.323436,0.55,4,3992.50,53.94,1600.50,2112.04,0.00,3521860479990.259766,3521860479752.185547,11,0,0.000000,0.000020,63268705,30897027,0,0,76533,0,1,1 +1773666551.327728,0.60,4,3992.50,53.75,1608.14,2104.40,0.00,1.656293,10.666040,253,556,0.000000,0.000030,63268705,30897030,0,0,76536,0,1,1 +1773666556.327497,0.95,4,3992.50,53.87,1603.25,2109.27,0.00,0.000000,0.000000,253,556,0.000000,0.000020,63268705,30897032,0,0,76538,0,1,1 +1773666561.327765,0.70,4,3992.50,53.90,1602.29,2110.25,0.00,48426.549877,48656.460133,3378768,3020363,0.000000,0.000030,63268705,30897035,0,0,76541,0,1,1 +1773666566.326810,0.65,4,3992.50,53.90,1602.07,2110.46,0.00,3519109192066.016602,3519109191827.030762,11,0,0.000000,0.000020,63268705,30897037,0,0,76543,0,1,1 +1773666571.328369,0.65,4,3992.50,53.90,1602.07,2110.46,0.00,0.000000,0.000000,11,0,0.000157,0.000210,63268717,30897052,0,0,76546,0,1,1 +1773666576.327812,0.60,4,3992.50,53.90,1602.08,2110.46,0.00,48436.195086,48675.171124,3378768,3020370,0.000016,0.000036,63268719,30897056,0,0,76548,0,1,1 +1773666581.327671,0.65,4,3992.50,53.90,1602.08,2110.46,0.00,0.000000,0.005469,3378768,3020373,0.000000,0.000030,63268719,30897059,0,0,76551,0,1,1 +1773666586.323462,0.95,4,3992.50,54.00,1613.63,2114.12,0.00,3521402070423.672852,3521402070184.516602,11,0,0.000000,0.000664,63268719,30897065,0,0,76553,0,1,1 +1773666591.323547,15.38,4,3992.50,55.06,1572.08,2155.66,0.00,0.180270,0.000000,205,0,40.065313,0.034611,63273096,30899465,0,0,76556,0,1,1 +1773666596.327561,0.65,4,3992.50,54.47,1595.00,2132.76,0.00,1.476256,10.666632,253,556,0.000000,0.000020,63273096,30899467,0,0,76558,0,1,1 +1773666601.327617,0.95,4,3992.50,54.06,1611.32,2116.44,0.00,3518397958337.598633,3518397958328.581543,11,0,0.000000,0.000030,63273096,30899470,0,0,76561,0,1,1 +1773666606.327413,0.60,4,3992.50,53.99,1613.91,2113.85,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63273096,30899472,0,0,76563,0,1,1 +1773666611.326741,0.80,4,3992.50,53.95,1615.36,2112.39,0.00,2.175683,0.000195,258,2,0.000000,0.000030,63273096,30899475,0,0,76566,0,1,1 +1773666616.328130,0.95,4,3992.50,54.39,1598.45,2129.30,0.00,3517460143575.674316,3517460143577.849121,11,0,0.000000,0.000020,63273096,30899477,0,0,76568,0,1,1 +1773666621.325761,0.70,4,3992.50,54.20,1605.85,2121.91,0.00,48453.755947,48693.113200,3378768,3020622,0.000000,0.000030,63273096,30899480,0,0,76571,0,1,1 +1773666626.323787,0.75,4,3992.50,54.20,1605.61,2122.14,0.00,3519826484541.112793,3519826484310.795898,253,556,0.000000,0.000020,63273096,30899482,0,0,76573,0,1,1 +1773666631.323503,0.55,4,3992.50,54.21,1605.39,2122.36,0.00,0.517705,3518637249733.719238,258,2,0.000000,0.000030,63273096,30899485,0,0,76576,0,1,1 +1773666636.323646,0.65,4,3992.50,54.21,1605.40,2122.36,0.00,3518336300181.266113,3518336300183.441406,11,0,0.000157,0.000200,63273108,30899499,0,0,76578,0,1,1 +1773666641.323847,0.65,4,3992.50,54.21,1605.40,2122.36,0.00,0.000000,0.000000,11,0,0.000016,0.000046,63273110,30899504,0,0,76581,0,1,1 +1773666646.328299,0.80,4,3992.50,54.35,1588.95,2127.82,0.00,0.053468,0.000000,75,0,0.000000,0.000020,63273110,30899506,0,0,76583,0,1,1 +1773666651.327709,0.65,4,3992.50,54.35,1587.52,2127.82,0.00,3518852833259.152832,0.000000,11,0,0.000000,0.000674,63273110,30899513,0,0,76586,0,1,1 +1773666656.328015,13.00,4,3992.50,54.00,1601.29,2114.03,0.00,0.180262,0.000000,205,0,40.062862,0.026515,63277561,30901311,0,0,76588,0,1,1 +1773666661.328180,0.75,4,3992.50,54.00,1601.05,2114.27,0.00,1.995052,0.000195,258,2,0.000000,0.000030,63277561,30901314,0,0,76591,0,1,1 +1773666666.327968,0.65,4,3992.50,53.97,1602.39,2112.92,0.00,48430.676676,48672.244241,3378768,3020755,0.000000,0.000020,63277561,30901316,0,0,76593,0,1,1 +1773666671.328087,0.80,4,3992.50,53.83,1607.86,2107.42,0.00,3518353161749.475586,3518353161748.664551,3377265,3020222,0.001434,0.001786,63277577,30901344,0,0,76596,0,1,1 +1773666676.323442,0.85,4,3992.50,53.98,1607.91,2113.26,0.00,9.735216,10.758823,3378768,3020837,0.000213,0.000561,63277585,30901358,0,0,76598,0,1,1 +1773666681.323331,0.65,4,3992.50,54.02,1606.22,2114.95,0.00,3518515510621.350098,3518515510620.417969,3377265,3020297,0.000000,0.000030,63277585,30901361,0,0,76601,0,1,1 +1773666686.323426,0.55,4,3992.50,54.02,1606.00,2115.17,0.00,3518370321279.118164,3518370321049.478027,253,556,0.000000,0.000020,63277585,30901363,0,0,76603,0,1,1 +1773666691.327481,0.60,4,3992.50,54.02,1606.00,2115.17,0.00,48389.901018,48620.390477,3378768,3020929,0.000000,0.000030,63277585,30901366,0,0,76606,0,1,1 +1773666696.328262,0.60,4,3992.50,54.02,1606.00,2115.17,0.00,3517887419481.961426,3517887419242.125000,205,0,0.000000,0.000020,63277585,30901368,0,0,76608,0,1,1 +1773666701.327650,0.75,4,3992.50,54.02,1606.00,2115.17,0.00,3518868047122.558105,0.000000,11,0,0.000188,0.000236,63277599,30901385,0,0,76611,0,1,1 +1773666706.328172,0.85,4,3992.50,54.10,1606.07,2118.32,0.00,48425.740528,48665.453867,3378768,3020952,0.000008,0.000028,63277600,30901388,0,0,76613,0,1,1 +1773666711.323973,0.60,4,3992.50,54.10,1606.08,2118.32,0.00,0.000000,0.014074,3378768,3020966,0.000000,0.000030,63277600,30901391,0,0,76616,0,1,1 +1773666716.325260,0.65,4,3992.50,54.10,1606.08,2118.32,0.00,3517531510762.082520,3517531510520.217285,258,2,0.001841,0.002251,63277629,30901417,0,0,76618,0,1,1 +1773666721.328242,12.61,4,3992.50,54.19,1602.78,2121.60,0.00,48399.760193,48641.567260,3378768,3021022,40.042517,0.020938,63282121,30902776,0,0,76621,0,1,1 +1773666726.323464,0.60,4,3992.50,54.19,1602.79,2121.59,0.00,3521802665515.621582,3521802665275.615723,11,0,0.001065,0.000422,63282143,30902791,0,0,76623,0,1,1 +1773666731.328157,0.50,4,3992.50,54.19,1602.79,2121.59,0.00,48385.381794,48624.956525,3378768,3021038,0.000000,0.000030,63282143,30902794,0,0,76626,0,1,1 +1773666736.327817,1.05,4,3992.50,54.23,1601.19,2123.26,0.00,3518676749265.640137,3518676749023.648438,258,2,0.000000,0.000020,63282143,30902796,0,0,76628,0,1,1 +1773666741.323452,0.60,4,3992.50,54.23,1601.19,2123.26,0.00,3521511682969.359375,10.684328,253,556,0.000000,0.000030,63282143,30902799,0,0,76631,0,1,1 +1773666746.323459,0.70,4,3992.50,54.23,1601.19,2123.26,0.00,3518432339371.184570,3518432339362.167480,11,0,0.000000,0.000020,63282143,30902801,0,0,76633,0,1,1 +1773666751.323480,0.60,4,3992.50,54.11,1605.88,2118.57,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63282143,30902804,0,0,76636,0,1,1 +1773666756.328278,0.65,4,3992.50,54.11,1605.88,2118.57,0.00,48384.369072,48624.133134,3378768,3021183,0.000000,0.000020,63282143,30902806,0,0,76638,0,1,1 +1773666761.323424,0.65,4,3992.50,54.12,1605.66,2118.78,0.00,3521856098759.182617,3521856098518.901367,75,0,0.000025,0.000061,63282145,30902811,0,0,76641,0,1,1 +1773666766.327979,0.75,4,3992.50,54.51,1591.17,2134.29,0.00,48386.658255,48626.546713,3378768,3021223,0.000163,0.000194,63282157,30902825,0,0,76643,0,1,1 +1773666771.327744,0.65,4,3992.50,54.46,1593.00,2132.38,0.00,3518602857090.759277,3518602856850.641113,75,0,0.000058,0.000100,63282162,30902833,0,0,76646,0,1,1 +1773666776.324866,0.55,4,3992.50,54.46,1593.00,2132.38,0.00,3520463618017.664551,0.000000,11,0,0.000000,0.000020,63282162,30902835,0,0,76648,0,1,1 +1773666781.328229,0.60,4,3992.50,54.48,1592.51,2132.86,0.00,0.180152,0.000000,205,0,0.000000,0.000351,63282162,30902840,0,0,76651,0,1,1 +1773666786.327769,13.72,4,3992.50,55.60,1548.45,2176.91,0.00,1.477577,10.676177,253,556,40.072106,0.029233,63286857,30904810,0,0,76653,0,1,1 +1773666791.328358,0.75,4,3992.50,54.60,1587.70,2137.66,0.00,0.517615,3518023098855.535645,258,2,0.000619,0.000282,63286869,30904820,0,0,76656,0,1,1 +1773666796.327547,1.00,4,3992.50,54.26,1600.37,2124.43,0.00,3519007588635.289551,10.676731,253,556,0.000000,0.000020,63286869,30904822,0,0,76658,0,1,1 +1773666801.328105,0.60,4,3992.50,54.14,1604.98,2119.82,0.00,3518045134712.631836,3518045134703.615723,11,0,0.000000,0.000030,63286869,30904825,0,0,76661,0,1,1 +1773666806.327626,0.70,4,3992.50,54.13,1605.41,2119.38,0.00,1.657874,10.676217,253,556,0.000000,0.000020,63286869,30904827,0,0,76663,0,1,1 +1773666811.323418,0.55,4,3992.50,54.13,1605.41,2119.38,0.00,0.000000,0.000000,253,556,0.000000,0.000030,63286869,30904830,0,0,76666,0,1,1 +1773666816.324303,0.60,4,3992.50,54.13,1605.41,2119.38,0.00,0.517584,3517814597199.033203,258,2,0.000000,0.000020,63286869,30904832,0,0,76668,0,1,1 +1773666821.327538,0.60,4,3992.50,54.13,1605.41,2119.38,0.00,3516162120484.607910,3516162120486.782227,11,0,0.000000,0.000030,63286869,30904835,0,0,76671,0,1,1 +1773666826.327470,0.70,4,3992.50,54.33,1599.68,2127.21,0.00,0.180276,0.000000,205,0,0.000000,0.000020,63286869,30904837,0,0,76673,0,1,1 +1773666831.327710,0.65,4,3992.50,54.14,1607.09,2119.81,0.00,0.000000,0.000000,205,0,0.000132,0.000179,63286879,30904850,0,0,76676,0,1,1 +1773666836.324365,0.65,4,3992.50,54.14,1607.09,2119.81,0.00,0.000000,0.000000,205,0,0.000033,0.000059,63286882,30904855,0,0,76678,0,1,1 +1773666841.324741,0.55,4,3992.50,54.14,1607.09,2119.81,0.00,3518172696476.104004,0.000000,11,0,0.000000,0.000030,63286882,30904858,0,0,76681,0,1,1 +1773666846.328091,0.55,4,3992.50,54.14,1607.10,2119.80,0.00,48388.645945,48627.964964,3377265,3020976,0.000000,0.000663,63286882,30904864,0,0,76683,0,1,1 +1773666851.327551,16.51,4,3992.50,55.58,1550.71,2176.19,0.00,3518817498185.343750,3518817497945.784668,75,0,40.070131,0.026860,63291395,30906702,0,0,76686,0,1,1 +1773666856.327485,0.90,4,3992.50,54.94,1579.38,2150.90,0.00,0.126759,0.000000,205,0,0.000619,0.000273,63291407,30906711,0,0,76688,0,1,1 +1773666861.328410,0.70,4,3992.50,54.51,1596.05,2134.22,0.00,3517786673739.744141,0.000000,75,0,0.000000,0.000030,63291407,30906714,0,0,76691,0,1,1 +1773666866.323545,0.70,4,3992.50,54.43,1599.15,2131.12,0.00,0.126881,0.000000,205,0,0.000000,0.000020,63291407,30906716,0,0,76693,0,1,1 +1773666871.324678,0.55,4,3992.50,54.24,1606.54,2123.73,0.00,0.000000,0.000000,205,0,0.000000,0.000030,63291407,30906719,0,0,76696,0,1,1 +1773666876.327409,0.60,4,3992.50,54.25,1606.30,2123.97,0.00,3516516618320.510742,0.000000,11,0,0.000000,0.000020,63291407,30906721,0,0,76698,0,1,1 +1773666881.323462,0.55,4,3992.50,54.07,1613.24,2117.03,0.00,1.659024,10.683628,253,556,0.000000,0.000030,63291407,30906724,0,0,76701,0,1,1 +1773666886.328021,0.80,4,3992.50,54.17,1602.37,2121.00,0.00,48375.312805,48605.828139,3377265,3021200,0.000000,0.000020,63291407,30906726,0,0,76703,0,1,1 +1773666891.327582,0.60,4,3992.50,53.98,1608.84,2113.36,0.00,3518746068364.652344,3518746068124.708008,205,0,0.000000,0.000030,63291407,30906729,0,0,76706,0,1,1 +1773666896.323481,0.70,4,3992.50,54.01,1607.57,2114.63,0.00,0.000000,0.000000,205,0,0.000163,0.000195,63291419,30906743,0,0,76708,0,1,1 +1773666901.326762,1.00,4,3992.50,54.02,1607.35,2114.85,0.00,3516129802848.298828,0.000000,11,0,0.000033,0.000069,63291422,30906749,0,0,76711,0,1,1 +1773666906.327595,0.80,4,3992.50,54.02,1607.36,2114.84,0.00,48422.732890,48663.466227,3378768,3021844,0.000000,0.000020,63291422,30906751,0,0,76713,0,1,1 +1773666911.327773,0.75,4,3992.50,54.02,1607.36,2114.84,0.00,3518312099939.479004,3518312099707.731445,253,556,0.000000,0.000674,63291422,30906758,0,0,76716,0,1,1 +1773666916.327987,14.63,4,3992.50,54.18,1599.00,2121.40,0.00,48427.090238,48658.895633,3378770,3021910,40.062312,0.023862,63295824,30908340,0,0,76718,0,1,1 +1773666921.327702,0.85,4,3992.50,54.02,1605.32,2115.08,0.00,3518638127469.026855,3518638127228.180176,11,0,0.003085,0.001438,63295880,30908380,0,0,76721,0,1,1 +1773666926.326070,0.90,4,3992.50,53.96,1607.86,2112.54,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63295880,30908382,0,0,76723,0,1,1 +1773666931.327882,0.70,4,3992.50,53.86,1611.59,2108.81,0.00,0.053496,0.000000,75,0,0.000000,0.000030,63295880,30908385,0,0,76726,0,1,1 +1773666936.327582,0.60,4,3992.50,53.87,1611.36,2109.04,0.00,48423.946721,48664.052422,3377267,3021505,0.000000,0.000020,63295880,30908387,0,0,76728,0,1,1 +1773666941.327639,0.65,4,3992.50,53.87,1611.14,2109.26,0.00,3518397239319.666016,3518397239079.630859,11,0,0.000000,0.000030,63295880,30908390,0,0,76731,0,1,1 +1773666946.328226,1.00,4,3992.50,53.75,1609.48,2104.46,0.00,2.175135,0.000195,258,2,0.000000,0.000020,63295880,30908392,0,0,76733,0,1,1 +1773666951.328094,0.65,4,3992.50,53.66,1612.95,2100.99,0.00,3518530052333.568848,3518530052335.690918,75,0,0.000000,0.000030,63295880,30908395,0,0,76736,0,1,1 +1773666956.327978,0.60,4,3992.50,53.69,1611.75,2102.21,0.00,0.000000,0.000000,75,0,0.000000,0.000020,63295880,30908397,0,0,76738,0,1,1 +1773666961.323490,0.70,4,3992.50,53.70,1611.50,2102.46,0.00,1.605641,10.684786,253,556,0.000087,0.000111,63295886,30908406,0,0,76741,0,1,1 +1773666966.323446,0.60,4,3992.50,53.70,1611.50,2102.46,0.00,3518468029957.971680,3518468029948.773926,205,0,0.000109,0.000152,63295895,30908417,0,0,76743,0,1,1 +1773666971.323426,0.75,4,3992.50,53.71,1611.29,2102.68,0.00,3518451276354.913086,0.000000,11,0,0.000512,0.001117,63295909,30908442,0,0,76746,0,1,1 +1773666976.327595,0.90,4,3992.50,53.63,1603.84,2099.61,0.00,2.173579,0.000195,258,2,0.000204,0.000873,63295916,30908457,0,0,76748,0,1,1 +1773666981.323596,12.19,4,3992.50,53.87,1594.34,2109.11,0.00,48457.674945,48700.251653,3377267,3021663,40.097386,0.023319,63300361,30910014,0,0,76751,0,1,1 +1773666986.324146,0.65,4,3992.50,53.45,1610.69,2092.79,0.00,3518050212230.089355,3518050211989.908203,11,0,0.000000,0.000020,63300361,30910016,0,0,76753,0,1,1 +1773666991.328073,0.50,4,3992.50,53.32,1615.75,2087.73,0.00,1.656414,10.666818,253,556,0.000000,0.000030,63300361,30910019,0,0,76756,0,1,1 +1773666996.327815,0.70,4,3992.50,53.33,1615.39,2088.07,0.00,3518618899102.091797,3518618899092.893555,205,0,0.000000,0.000020,63300361,30910021,0,0,76758,0,1,1 +1773667001.323785,0.60,4,3992.50,53.33,1615.40,2088.07,0.00,3521275147488.151367,0.000000,11,0,0.000000,0.000030,63300361,30910024,0,0,76761,0,1,1 +1773667006.323419,0.95,4,3992.50,53.53,1614.40,2095.80,0.00,48434.366348,48675.715835,3378770,3022342,0.000000,0.000020,63300361,30910026,0,0,76763,0,1,1 +1773667011.328284,0.70,4,3992.50,53.53,1614.33,2095.85,0.00,3515017378251.967285,3515017378010.869629,11,0,0.000000,0.000030,63300361,30910029,0,0,76766,0,1,1 +1773667016.328031,0.75,4,3992.50,53.54,1613.87,2096.31,0.00,2.175500,0.000195,258,2,0.001172,0.000678,63300387,30910048,0,0,76768,0,1,1 +1773667021.324342,0.70,4,3992.50,53.55,1613.65,2096.53,0.00,3521035509853.645508,3521035509855.822266,11,0,0.000347,0.000618,63300397,30910065,0,0,76771,0,1,1 +1773667026.328036,0.75,4,3992.50,53.55,1613.41,2096.77,0.00,48395.061147,48636.274107,3378770,3022399,0.001852,0.001499,63300431,30910093,0,0,76773,0,1,1 +1773667031.328354,0.65,4,3992.50,53.49,1616.04,2094.15,0.00,3518213442185.086426,3518213441943.710449,11,0,0.000000,0.000030,63300431,30910096,0,0,76776,0,1,1 +1773667036.323549,0.90,4,3992.50,53.72,1612.67,2103.21,0.00,1.659310,10.685465,253,556,0.000000,0.000020,63300431,30910098,0,0,76778,0,1,1 +1773667041.327969,0.75,4,3992.50,53.74,1611.73,2104.17,0.00,3515329442516.195801,3515329442507.186523,11,0,0.000000,0.000030,63300431,30910101,0,0,76781,0,1,1 +1773667046.327540,19.28,4,3992.50,53.60,1617.34,2098.54,0.00,0.053520,0.000000,75,0,40.067891,0.022462,63304881,30911610,0,0,76783,0,1,1 +1773667051.328374,0.85,4,3992.50,53.60,1617.22,2098.65,0.00,48412.972024,48653.637072,3377267,3022049,0.003223,0.001571,63304948,30911660,0,0,76786,0,1,1 +1773667056.324561,0.65,4,3992.50,53.61,1616.98,2098.89,0.00,3521122054056.438477,3521122053815.603027,11,0,0.000000,0.000020,63304948,30911662,0,0,76788,0,1,1 +1773667061.324049,0.65,4,3992.50,53.61,1616.98,2098.89,0.00,0.000000,0.000000,11,0,0.000025,0.000061,63304950,30911667,0,0,76791,0,1,1 +1773667066.328119,0.95,4,3992.50,53.61,1607.33,2098.84,0.00,2.173621,0.000195,258,2,0.000031,0.000045,63304952,30911671,0,0,76793,0,1,1 +1773667071.328031,0.80,4,3992.50,53.42,1614.53,2091.67,0.00,3518499038760.933105,3518499038763.108398,11,0,0.000033,0.000069,63304955,30911677,0,0,76796,0,1,1 +1773667076.327853,0.65,4,3992.50,53.45,1613.55,2092.66,0.00,2.175468,0.000195,258,2,0.000000,0.000020,63304955,30911679,0,0,76798,0,1,1 +1773667081.328227,0.60,4,3992.50,53.45,1613.55,2092.66,0.00,3518173699078.232910,3518173699080.408203,11,0,0.000000,0.000030,63304955,30911682,0,0,76801,0,1,1 +1773667086.324872,0.60,4,3992.50,53.45,1613.55,2092.64,0.00,0.053552,0.000000,75,0,0.000000,0.000020,63304955,30911684,0,0,76803,0,1,1 +1773667091.323407,0.70,4,3992.50,53.33,1618.34,2087.87,0.00,1.604669,10.678324,253,556,0.000056,0.000086,63304959,30911691,0,0,76806,0,1,1 +1773667096.323437,0.95,4,3992.50,53.73,1603.02,2103.62,0.00,3518415659289.365723,3518415659280.294922,75,0,0.000117,0.000160,63304969,30911703,0,0,76808,0,1,1 +1773667101.325958,0.70,4,3992.50,53.72,1602.74,2103.34,0.00,48406.369137,48648.101676,3378770,3022738,0.000000,0.000030,63304969,30911706,0,0,76811,0,1,1 +1773667106.327807,0.65,4,3992.50,53.53,1610.41,2095.68,0.00,3517136551492.906250,3517136551251.014648,205,0,0.000000,0.000020,63304969,30911708,0,0,76813,0,1,1 +1773667111.325366,20.21,4,3992.50,58.63,1410.70,2295.38,0.00,0.000000,0.000000,205,0,34.072202,0.022823,63308795,30913177,0,0,76816,0,1,1 +1773667116.325925,0.90,4,3992.50,53.38,1616.31,2089.77,0.00,3518043299907.206543,0.000000,11,0,6.010831,0.002682,63309452,30913316,0,0,76818,0,1,1 +1773667121.328077,0.55,4,3992.50,53.38,1616.32,2089.77,0.00,1.657002,10.670604,253,556,0.000000,0.000030,63309452,30913319,0,0,76821,0,1,1 +1773667126.328351,0.90,4,3992.50,53.58,1608.35,2097.58,0.00,3518243976367.808105,3518243976358.611328,205,0,0.000000,0.000020,63309452,30913321,0,0,76823,0,1,1 +1773667131.327843,0.65,4,3992.50,53.57,1608.36,2097.57,0.00,3518794996439.462402,0.000000,11,0,0.000000,0.000030,63309452,30913324,0,0,76826,0,1,1 +1773667136.323410,0.70,4,3992.50,53.59,1607.62,2098.31,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63309452,30913326,0,0,76828,0,1,1 +1773667141.327935,0.75,4,3992.50,53.59,1607.62,2098.31,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63309452,30913329,0,0,76831,0,1,1 +1773667146.328196,0.65,4,3992.50,53.59,1607.62,2098.31,0.00,0.180264,0.000000,205,0,0.000000,0.000020,63309452,30913331,0,0,76833,0,1,1 +1773667151.327435,0.65,4,3992.50,53.59,1607.63,2098.31,0.00,0.000000,0.000000,205,0,0.000000,0.000030,63309452,30913334,0,0,76836,0,1,1 +1773667156.327216,0.90,4,3992.50,53.69,1612.70,2101.96,0.00,48432.758101,48675.077078,3378770,3023012,0.000044,0.000076,63309455,30913340,0,0,76838,0,1,1 +1773667161.325672,0.60,4,3992.50,53.70,1612.21,2102.45,0.00,3519524307019.529785,3519524306777.273438,75,0,0.000129,0.000170,63309466,30913353,0,0,76841,0,1,1 +1773667166.328066,0.65,4,3992.50,53.71,1611.97,2102.70,0.00,2.120859,0.000195,258,2,0.000000,0.000020,63309466,30913355,0,0,76843,0,1,1 +1773667171.323501,0.65,4,3992.50,53.52,1619.12,2095.54,0.00,3521652987289.441895,3521652987291.619141,11,0,0.000000,0.000030,63309466,30913358,0,0,76846,0,1,1 +1773667176.323446,16.70,4,3992.50,58.73,1415.14,2299.52,0.00,2.175415,0.000195,258,2,28.247383,0.019069,63312706,30914627,0,0,76848,0,1,1 +1773667181.326575,1.15,4,3992.50,54.41,1584.27,2130.38,0.00,48388.637164,48631.971391,3377267,3022613,11.812424,0.003914,63313937,30914835,0,0,76851,0,1,1 +1773667186.327652,0.90,4,3992.50,54.09,1596.99,2117.69,0.00,3517679073183.934570,3517679072942.675293,11,0,0.000008,0.000028,63313938,30914838,0,0,76853,0,1,1 +1773667191.327495,0.70,4,3992.50,54.00,1600.52,2114.10,0.00,0.053517,0.000000,75,0,0.000000,0.000030,63313938,30914841,0,0,76856,0,1,1 +1773667196.324657,1.10,4,3992.50,53.98,1601.15,2113.47,0.00,2.123080,0.000195,258,2,0.000000,0.000020,63313938,30914843,0,0,76858,0,1,1 +1773667201.328103,0.85,4,3992.50,54.00,1600.48,2114.15,0.00,48385.585222,48629.016457,3377268,3022690,0.000000,0.000030,63313938,30914846,0,0,76861,0,1,1 +1773667206.327707,0.65,4,3992.50,54.00,1600.48,2114.15,0.00,3518716107385.245605,3518716107143.802734,11,0,0.000000,0.000020,63313938,30914848,0,0,76863,0,1,1 +1773667211.328269,0.65,4,3992.50,54.00,1600.48,2114.15,0.00,48425.390658,48667.786442,3378771,3023287,0.000000,0.000030,63313938,30914851,0,0,76866,0,1,1 +1773667216.326772,0.90,4,3992.50,54.03,1596.99,2115.28,0.00,3519490675640.587402,3519490675398.038086,75,0,0.000000,0.000020,63313938,30914853,0,0,76868,0,1,1 +1773667221.325240,0.70,4,3992.50,54.03,1597.02,2115.27,0.00,48435.899383,48677.547649,3377268,3022761,0.000031,0.000068,63313940,30914859,0,0,76871,0,1,1 +1773667226.328000,0.60,4,3992.50,54.03,1597.02,2115.27,0.00,0.000000,0.004685,3377268,3022766,0.000142,0.000191,63313952,30914873,0,0,76873,0,1,1 +1773667231.327765,0.75,4,3992.50,53.87,1603.20,2109.09,0.00,3518602428514.489258,3518602428272.898926,75,0,0.000000,0.000030,63313952,30914876,0,0,76876,0,1,1 +1773667236.328362,0.70,4,3992.50,53.90,1601.97,2110.32,0.00,48424.998841,48667.512839,3378771,3023335,0.000000,0.000020,63313952,30914878,0,0,76878,0,1,1 +1773667241.327619,17.10,4,3992.50,59.02,1401.36,2310.91,0.00,3518960609364.142090,3518960609119.440918,258,2,19.839798,0.017724,63316397,30916005,0,0,76881,0,1,1 +1773667246.326338,2.16,4,3992.50,54.70,1568.67,2141.68,0.00,3519338809990.374023,3519338809992.369629,205,0,20.235614,0.005127,63318427,30916297,0,0,76883,0,1,1 +1773667251.324273,0.80,4,3992.50,54.40,1577.60,2129.91,0.00,3519890255483.363281,0.000000,11,0,0.000008,0.000038,63318428,30916301,0,0,76886,0,1,1 +1773667256.327332,0.60,4,3992.50,54.06,1591.06,2116.45,0.00,1.656701,10.668668,253,556,0.000000,0.000020,63318428,30916303,0,0,76888,0,1,1 +1773667261.327584,0.65,4,3992.50,54.05,1591.43,2116.08,0.00,48417.018777,48649.743696,3377268,3022973,0.000000,0.000030,63318428,30916306,0,0,76891,0,1,1 +1773667266.327939,0.60,4,3992.50,54.03,1592.02,2115.49,0.00,3518187452887.453613,3518187452654.733398,253,556,0.000000,0.000020,63318428,30916308,0,0,76893,0,1,1 +1773667271.328021,0.70,4,3992.50,54.03,1592.02,2115.49,0.00,0.000000,0.000000,253,556,0.001434,0.001774,63318444,30916335,0,0,76896,0,1,1 +1773667276.327853,1.00,4,3992.50,54.01,1604.03,2114.71,0.00,3518554990398.893066,3518554990389.695312,205,0,0.000213,0.000560,63318452,30916349,0,0,76898,0,1,1 +1773667281.323419,0.70,4,3992.50,54.00,1604.56,2114.19,0.00,48463.909895,48706.127043,3377268,3023015,0.000000,0.000030,63318452,30916352,0,0,76901,0,1,1 +1773667286.323607,0.70,4,3992.50,54.00,1604.71,2114.04,0.00,3518305152949.142578,3518305152707.275879,75,0,0.000031,0.000045,63318454,30916356,0,0,76903,0,1,1 +1773667291.327573,0.65,4,3992.50,53.99,1604.83,2113.92,0.00,3515648426393.947266,0.000000,11,0,0.000126,0.000185,63318464,30916369,0,0,76906,0,1,1 +1773667296.328177,0.70,4,3992.50,53.99,1604.83,2113.92,0.00,1.657515,10.673906,253,556,0.000000,0.000020,63318464,30916371,0,0,76908,0,1,1 +1773667301.328275,0.70,4,3992.50,53.80,1612.23,2106.52,0.00,48418.502226,48651.324899,3377268,3023033,0.000000,0.000030,63318464,30916374,0,0,76911,0,1,1 +1773667306.328606,15.39,4,3992.50,58.87,1414.68,2304.75,0.00,3518204391134.139160,3518204390892.256348,75,0,7.619790,0.014040,63319729,30917268,0,0,76913,0,1,1 +1773667311.325866,3.77,4,3992.50,54.58,1581.82,2136.95,0.00,3520366280891.844727,0.000000,11,0,32.464247,0.007134,63322979,30917711,0,0,76916,0,1,1 +1773667316.327751,0.90,4,3992.50,54.04,1602.94,2115.84,0.00,48412.582062,48655.461181,3378771,3023763,0.001171,0.000677,63323005,30917730,0,0,76918,0,1,1 +1773667321.328110,0.65,4,3992.50,53.67,1617.67,2101.11,0.00,3518184982582.087402,3518184982338.954102,205,0,0.000339,0.000610,63323014,30917746,0,0,76921,0,1,1 +1773667326.328072,0.65,4,3992.50,53.68,1616.97,2101.80,0.00,1.477453,10.675277,253,556,0.001064,0.000421,63323036,30917761,0,0,76923,0,1,1 +1773667331.328177,0.65,4,3992.50,53.68,1616.98,2101.80,0.00,0.517665,3518362922861.444824,258,2,0.000000,0.000030,63323036,30917764,0,0,76926,0,1,1 +1773667336.323405,1.05,4,3992.50,53.87,1606.79,2109.12,0.00,48465.190134,48709.708460,3377268,3023250,0.000000,0.000020,63323036,30917766,0,0,76928,0,1,1 +1773667341.323542,0.70,4,3992.50,53.84,1608.07,2107.84,0.00,3518340677711.527832,3518340677467.249023,258,2,0.000000,0.000030,63323036,30917769,0,0,76931,0,1,1 +1773667346.323423,0.55,4,3992.50,53.84,1608.07,2107.84,0.00,48420.088798,48664.413171,3377268,3023285,0.000000,0.000020,63323036,30917771,0,0,76933,0,1,1 +1773667351.327075,0.75,4,3992.50,53.70,1613.63,2102.28,0.00,3515869334043.188965,3515869333801.222168,11,0,0.000031,0.000055,63323038,30917776,0,0,76936,0,1,1 +1773667356.328059,0.60,4,3992.50,53.74,1611.71,2104.21,0.00,0.000000,0.000000,11,0,0.000092,0.000129,63323046,30917786,0,0,76938,0,1,1 +1773667361.326073,0.70,4,3992.50,53.74,1611.75,2104.16,0.00,2.176255,0.000195,258,2,0.000050,0.000092,63323050,30917793,0,0,76941,0,1,1 +1773667366.328091,1.00,4,3992.50,53.79,1609.84,2106.09,0.00,48399.402304,48643.667589,3377268,3023316,0.000031,0.000045,63323052,30917797,0,0,76943,0,1,1 +1773667371.327435,10.05,4,3992.50,58.71,1417.36,2298.57,0.00,0.000000,0.013283,3377268,3023349,2.211581,0.008231,63323692,30918248,0,0,76946,0,1,1 +1773667376.328287,8.64,4,3992.50,54.87,1567.59,2148.35,0.00,3517838108516.333008,3517838108271.997070,258,2,37.850479,0.018065,63327571,30919534,0,0,76948,0,1,1 +1773667381.327842,0.70,4,3992.50,54.20,1593.92,2122.02,0.00,3518750515611.987793,3518750515614.109863,75,0,0.000000,0.000030,63327571,30919537,0,0,76951,0,1,1 +1773667386.323555,0.55,4,3992.50,53.89,1606.12,2109.83,0.00,0.000000,0.000000,75,0,0.000000,0.000020,63327571,30919539,0,0,76953,0,1,1 +1773667391.327432,0.70,4,3992.50,53.86,1607.24,2108.70,0.00,3515711056215.935059,0.000000,11,0,0.000000,0.000030,63327571,30919542,0,0,76956,0,1,1 +1773667396.323413,1.10,4,3992.50,54.25,1592.73,2124.00,0.00,0.053559,0.000000,75,0,0.000000,0.000020,63327571,30919544,0,0,76958,0,1,1 +1773667401.326351,0.60,4,3992.50,53.95,1604.34,2112.31,0.00,2.120629,0.000195,258,2,0.000000,0.000030,63327571,30919547,0,0,76961,0,1,1 +1773667406.323427,0.65,4,3992.50,53.95,1604.43,2112.22,0.00,3520495876580.988281,3520495876583.164551,11,0,0.000000,0.000020,63327571,30919549,0,0,76963,0,1,1 +1773667411.327908,0.55,4,3992.50,53.95,1604.44,2112.21,0.00,48377.754978,48620.016087,3377268,3023580,0.000000,0.000030,63327571,30919552,0,0,76966,0,1,1 +1773667416.327568,0.65,4,3992.50,53.95,1604.45,2112.20,0.00,3518676813317.432129,3518676813074.937500,11,0,0.000031,0.000045,63327573,30919556,0,0,76968,0,1,1 +1773667421.327681,0.65,4,3992.50,53.93,1605.26,2111.39,0.00,2.175341,0.000195,258,2,0.000134,0.000193,63327584,30919570,0,0,76971,0,1,1 +1773667426.323435,0.90,4,3992.50,54.19,1595.66,2121.50,0.00,48460.088504,48704.995994,3377268,3023612,0.000000,0.000020,63327584,30919572,0,0,76973,0,1,1 +1773667431.327490,0.80,4,3992.50,54.13,1597.30,2119.28,0.00,3515585952755.333984,3515585952512.826660,205,0,0.000000,0.000030,63327584,30919575,0,0,76976,0,1,1 +1773667436.330534,2.61,4,3992.50,58.81,1413.89,2302.67,0.00,3516296562784.396484,0.000000,75,0,0.032479,0.004143,63327680,30919643,0,0,76978,0,1,1 +1773667441.327678,17.76,4,3992.50,55.18,1556.09,2160.46,0.00,1.605116,10.681296,253,556,40.057506,0.018532,63332074,30920958,0,0,76981,0,1,1 +1773667446.326637,0.65,4,3992.50,54.43,1585.65,2130.91,0.00,3519170062674.248047,3519170062665.229004,11,0,0.000000,0.000020,63332074,30920960,0,0,76983,0,1,1 +1773667451.325662,0.70,4,3992.50,54.03,1600.98,2115.58,0.00,48430.546022,48673.307476,3377268,3023807,0.000000,0.000030,63332074,30920963,0,0,76986,0,1,1 +1773667456.328069,0.90,4,3992.50,54.16,1602.22,2120.29,0.00,3516744649731.203613,3516744649488.426270,205,0,0.000000,0.000020,63332074,30920965,0,0,76988,0,1,1 +1773667461.328232,0.70,4,3992.50,54.17,1601.77,2120.78,0.00,3518322524938.386230,0.000000,75,0,0.000000,0.000030,63332074,30920968,0,0,76991,0,1,1 +1773667466.328135,0.65,4,3992.50,54.17,1601.77,2120.77,0.00,0.000000,0.000000,75,0,0.000000,0.000020,63332074,30920970,0,0,76993,0,1,1 +1773667471.323461,0.60,4,3992.50,54.17,1601.77,2120.77,0.00,2.123861,0.000195,258,2,0.000000,0.000030,63332074,30920973,0,0,76996,0,1,1 +1773667476.327893,0.65,4,3992.50,54.13,1603.34,2119.21,0.00,3515320842504.180664,3515320842506.174316,205,0,0.000000,0.000020,63332074,30920975,0,0,76998,0,1,1 +1773667481.328404,0.65,4,3992.50,54.13,1603.12,2119.43,0.00,3518077764767.000488,0.000000,75,0,0.000031,0.000055,63332076,30920980,0,0,77001,0,1,1 +1773667486.323419,0.95,4,3992.50,54.21,1599.93,2122.59,0.00,1.605800,10.685850,253,556,0.000126,0.000175,63332086,30920992,0,0,77003,0,1,1 +1773667491.323430,0.75,4,3992.50,54.21,1599.96,2122.59,0.00,0.517675,3518429181224.505371,258,2,0.000008,0.000038,63332087,30920996,0,0,77006,0,1,1 +1773667496.327565,0.80,4,3992.50,54.22,1599.72,2122.83,0.00,0.000000,0.000000,258,2,0.000000,0.000020,63332087,30920998,0,0,77008,0,1,1 +1773667501.325370,10.83,4,3992.50,59.31,1400.59,2321.92,0.00,48440.201649,48685.385265,3377268,3023951,8.825468,0.013909,63333468,30921934,0,0,77011,0,1,1 +1773667506.323499,4.97,4,3992.50,54.62,1584.17,2138.35,0.00,0.000000,0.145367,3377268,3024084,31.261783,0.018880,63336742,30923242,0,0,77013,0,1,1 +1773667511.327552,0.70,4,3992.50,54.24,1598.75,2123.77,0.00,3515587968366.488770,3515587968132.649414,253,556,0.000000,0.000030,63336742,30923245,0,0,77016,0,1,1 +1773667516.328299,1.05,4,3992.50,54.20,1603.46,2121.90,0.00,0.000000,0.000000,253,556,0.000000,0.000020,63336742,30923247,0,0,77018,0,1,1 +1773667521.323819,0.60,4,3992.50,54.14,1605.86,2119.52,0.00,3521592206861.441895,3521592206852.235840,205,0,0.000000,0.000030,63336742,30923250,0,0,77021,0,1,1 +1773667526.323444,0.70,4,3992.50,54.14,1605.55,2119.83,0.00,0.000000,0.000000,205,0,0.000000,0.000020,63336742,30923252,0,0,77023,0,1,1 +1773667531.328054,0.60,4,3992.50,54.17,1604.59,2120.80,0.00,1.993280,0.000195,258,2,0.000000,0.000030,63336742,30923255,0,0,77026,0,1,1 +1773667536.328319,0.65,4,3992.50,54.17,1604.59,2120.80,0.00,48426.094497,48672.393354,3378771,3024738,0.000000,0.000020,63336742,30923257,0,0,77028,0,1,1 +1773667541.324765,0.65,4,3992.50,54.17,1604.59,2120.79,0.00,3520939346985.221191,3520939346749.935059,253,556,0.000000,0.000030,63336742,30923260,0,0,77031,0,1,1 +1773667546.327944,0.95,4,3992.50,54.28,1602.04,2125.22,0.00,3516201714723.906250,3516201714714.841309,75,0,0.000031,0.000045,63336744,30923264,0,0,77033,0,1,1 +1773667551.328356,0.70,4,3992.50,54.29,1601.94,2125.41,0.00,48417.069677,48660.337531,3377268,3024208,0.000134,0.000193,63336755,30923278,0,0,77036,0,1,1 +1773667556.327542,0.60,4,3992.50,54.29,1601.94,2125.41,0.00,9.727756,10.687287,3378771,3024778,0.000000,0.000020,63336755,30923280,0,0,77038,0,1,1 +1773667561.324670,0.70,4,3992.50,54.29,1601.94,2125.40,0.00,0.000000,0.006254,3378771,3024783,0.000000,0.000030,63336755,30923283,0,0,77041,0,1,1 +1773667566.328558,6.36,4,3992.50,59.44,1400.27,2327.03,0.00,3515703390980.889648,3515703390736.825684,75,0,1.685742,0.007895,63337289,30923694,0,0,77043,0,1,1 +1773667571.327579,11.76,4,3992.50,54.90,1577.73,2149.61,0.00,48430.541876,48674.009575,3377268,3024365,38.389224,0.016914,63341260,30924744,0,0,77046,0,1,1 +1773667576.325009,1.10,4,3992.50,54.51,1593.08,2134.21,0.00,0.000000,0.072694,3377268,3024395,0.000205,0.000552,63341267,30924757,0,0,77048,0,1,1 +1773667581.327988,0.60,4,3992.50,54.47,1594.52,2132.78,0.00,3516341498290.278809,3516341498055.996582,253,556,0.000000,0.000030,63341267,30924760,0,0,77051,0,1,1 +1773667586.328288,0.60,4,3992.50,54.47,1594.53,2132.76,0.00,3518226275736.116211,3518226275727.099609,11,0,0.000000,0.000020,63341267,30924762,0,0,77053,0,1,1 +1773667591.327579,0.70,4,3992.50,54.48,1594.46,2132.84,0.00,0.053523,0.000000,75,0,0.000000,0.000030,63341267,30924765,0,0,77056,0,1,1 +1773667596.325104,0.60,4,3992.50,54.28,1602.04,2125.25,0.00,48454.765496,48699.377675,3378771,3025005,0.000000,0.000020,63341267,30924767,0,0,77058,0,1,1 +1773667601.327851,0.70,4,3992.50,54.28,1602.04,2125.25,0.00,3516505893306.035645,3516505893061.551758,205,0,0.000000,0.000030,63341267,30924770,0,0,77061,0,1,1 +1773667606.327652,1.00,4,3992.50,54.38,1603.84,2128.94,0.00,48432.582138,48677.250360,3378771,3025027,0.000000,0.000020,63341267,30924772,0,0,77063,0,1,1 +1773667611.323437,0.65,4,3992.50,54.39,1603.27,2129.63,0.00,3521405230376.144531,3521405230131.459961,11,0,0.000031,0.000055,63341269,30924777,0,0,77066,0,1,1 +1773667616.324095,0.75,4,3992.50,54.22,1610.21,2122.69,0.00,48414.749957,48658.262591,3377268,3024486,0.001967,0.001763,63341308,30924809,0,0,77068,0,1,1 +1773667621.327610,0.65,4,3992.50,54.24,1609.47,2123.43,0.00,3515965303249.398438,3515965303003.851562,258,2,0.000347,0.000617,63341318,30924826,0,0,77071,0,1,1 +1773667626.323543,0.80,4,3992.50,54.24,1609.47,2123.43,0.00,0.000000,0.000000,258,2,0.001053,0.000430,63341339,30924842,0,0,77073,0,1,1 +1773667631.328539,1.90,4,3992.50,59.62,1398.47,2334.42,0.00,3514925272700.955566,3514925272702.949219,205,0,0.003788,0.002707,63341400,30924891,0,0,77076,0,1,1 +1773667636.326099,16.71,4,3992.50,55.51,1553.71,2173.26,0.00,1.996091,0.000195,258,2,40.079515,0.020862,63345622,30926368,0,0,77078,0,1,1 +1773667641.327821,0.80,4,3992.50,54.97,1574.55,2152.20,0.00,3517225808080.198730,10.671325,253,556,0.000000,0.000030,63345622,30926371,0,0,77081,0,1,1 +1773667646.328310,0.50,4,3992.50,54.55,1590.95,2135.80,0.00,3518092902979.840820,3518092902970.770996,75,0,0.000000,0.000020,63345622,30926373,0,0,77083,0,1,1 +1773667651.328124,0.65,4,3992.50,54.55,1591.09,2135.66,0.00,48432.590973,48677.378428,3378771,3025248,0.000000,0.000030,63345622,30926376,0,0,77086,0,1,1 +1773667656.328354,0.70,4,3992.50,54.55,1591.09,2135.66,0.00,3518274931390.142090,3518274931143.253418,258,2,0.000000,0.000020,63345622,30926378,0,0,77088,0,1,1 +1773667661.323501,0.70,4,3992.50,54.55,1590.84,2135.91,0.00,3521855523260.823730,3521855523262.821289,205,0,0.000025,0.000061,63345624,30926383,0,0,77091,0,1,1 +1773667666.327706,0.95,4,3992.50,54.56,1581.75,2136.27,0.00,1.993441,0.000195,258,2,0.000031,0.000045,63345626,30926387,0,0,77093,0,1,1 +1773667671.323509,0.70,4,3992.50,54.56,1581.77,2136.27,0.00,3521392890709.778320,10.683968,253,556,0.000033,0.000069,63345629,30926393,0,0,77096,0,1,1 +1773667676.327662,0.75,4,3992.50,54.37,1589.17,2128.88,0.00,48388.985317,48624.569610,3378771,3025299,0.000031,0.000045,63345631,30926397,0,0,77098,0,1,1 +1773667681.325581,1.40,4,3992.50,54.19,1596.56,2121.48,0.00,3519902483888.736816,3519902483643.837402,11,0,0.000126,0.000185,63345641,30926410,0,0,77101,0,1,1 +1773667686.323447,0.70,4,3992.50,54.19,1596.32,2121.73,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63345641,30926412,0,0,77103,0,1,1 +1773667691.328360,0.70,4,3992.50,54.19,1596.32,2121.73,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63345641,30926415,0,0,77106,0,1,1 +1773667696.328235,1.20,4,3992.50,54.16,1606.01,2120.60,0.00,0.000000,0.000000,11,0,0.002222,0.000725,63345664,30926433,0,0,77108,0,1,1 +1773667701.323402,15.68,4,3992.50,54.08,1608.73,2117.54,0.00,0.053567,0.000000,75,0,40.106232,0.030475,63350166,30928534,0,0,77111,0,1,1 +1773667706.326076,0.70,4,3992.50,54.09,1608.52,2117.75,0.00,3516556418068.374512,0.000000,11,0,0.000000,0.000020,63350166,30928536,0,0,77113,0,1,1 +1773667711.323419,0.65,4,3992.50,53.99,1612.54,2113.74,0.00,0.053544,0.000000,75,0,0.000000,0.000030,63350166,30928539,0,0,77116,0,1,1 +1773667716.323622,0.60,4,3992.50,53.99,1612.54,2113.74,0.00,0.126753,0.000000,205,0,0.000000,0.000020,63350166,30928541,0,0,77118,0,1,1 +1773667721.327451,0.65,4,3992.50,54.02,1611.09,2115.18,0.00,48383.876628,48627.911612,3377268,3024919,0.000000,0.000030,63350166,30928544,0,0,77121,0,1,1 +1773667726.327731,1.00,4,3992.50,54.53,1591.55,2134.77,0.00,3518240141125.130371,3518240140881.102051,11,0,0.000000,0.000020,63350166,30928546,0,0,77123,0,1,1 +1773667731.323419,0.70,4,3992.50,54.38,1597.07,2129.20,0.00,1.659146,10.684411,253,556,0.000000,0.000030,63350166,30928549,0,0,77126,0,1,1 +1773667736.327433,0.75,4,3992.50,54.39,1596.83,2129.44,0.00,48390.325893,48626.224669,3378771,3025554,0.000000,0.000020,63350166,30928551,0,0,77128,0,1,1 +1773667741.323438,0.60,4,3992.50,54.39,1596.83,2129.44,0.00,3521250750370.840332,3521250750134.563477,253,556,0.000000,0.000030,63350166,30928554,0,0,77131,0,1,1 +1773667746.328121,0.70,4,3992.50,54.39,1596.83,2129.44,0.00,3515145167166.073730,3515145167157.011230,75,0,0.000157,0.000200,63350178,30928568,0,0,77133,0,1,1 +1773667751.324643,0.80,4,3992.50,54.39,1596.83,2129.44,0.00,1.605316,10.682625,253,556,0.000016,0.000046,63350180,30928573,0,0,77136,0,1,1 +1773667756.328237,1.00,4,3992.50,54.39,1598.04,2129.41,0.00,48394.396987,48630.363231,3378771,3025590,0.000000,0.000020,63350180,30928575,0,0,77138,0,1,1 +1773667761.323827,0.95,4,3992.50,54.00,1612.21,2114.13,0.00,3521542974009.353027,3521542973763.983398,11,0,0.002906,0.001658,63350207,30928596,0,0,77141,0,1,1 +1773667766.328186,14.28,4,3992.50,54.10,1608.40,2117.94,0.00,0.180116,0.000000,205,0,40.031750,0.027352,63354705,30930458,0,0,77143,0,1,1 +1773667771.325471,0.60,4,3992.50,54.11,1607.93,2118.42,0.00,0.000000,0.000000,205,0,0.000000,0.000030,63354705,30930461,0,0,77146,0,1,1 +1773667776.327482,0.55,4,3992.50,54.11,1607.93,2118.42,0.00,48401.468483,48645.920774,3377268,3025211,0.000000,0.000020,63354705,30930463,0,0,77148,0,1,1 +1773667781.327999,0.60,4,3992.50,54.11,1607.93,2118.42,0.00,3518073438810.879883,3518073438566.354980,205,0,0.000000,0.000030,63354705,30930466,0,0,77151,0,1,1 +1773667786.328107,0.95,4,3992.50,54.23,1603.23,2123.22,0.00,3518361016664.187012,0.000000,11,0,0.000000,0.000020,63354705,30930468,0,0,77153,0,1,1 +1773667791.327741,0.65,4,3992.50,54.04,1610.36,2115.97,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63354705,30930471,0,0,77156,0,1,1 +1773667796.328254,0.55,4,3992.50,54.06,1609.62,2116.71,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63354705,30930473,0,0,77158,0,1,1 +1773667801.327744,1.15,4,3992.50,54.05,1609.97,2116.36,0.00,48426.047015,48670.575064,3377268,3025292,0.000000,0.000030,63354705,30930476,0,0,77161,0,1,1 +1773667806.327882,0.85,4,3992.50,54.01,1611.54,2114.79,0.00,3518340576386.098145,3518340576139.426270,258,2,0.000000,0.000020,63354705,30930478,0,0,77163,0,1,1 +1773667811.323412,0.60,4,3992.50,54.06,1609.83,2116.50,0.00,3521585336431.380859,3521585336433.558594,11,0,0.000157,0.000211,63354717,30930493,0,0,77166,0,1,1 +1773667816.327744,1.10,4,3992.50,54.06,1604.51,2116.41,0.00,0.053469,0.000000,75,0,0.000016,0.000036,63354719,30930497,0,0,77168,0,1,1 +1773667821.327939,0.70,4,3992.50,54.06,1604.21,2116.66,0.00,48428.899371,48674.517549,3378771,3025954,0.000000,0.000030,63354719,30930500,0,0,77171,0,1,1 +1773667826.325230,0.95,4,3992.50,53.91,1610.34,2110.54,0.00,3520344905059.243652,3520344904813.536133,11,0,0.002210,0.000702,63354741,30930516,0,0,77173,0,1,1 +1773667831.327488,14.36,4,3992.50,54.75,1577.49,2143.39,0.00,0.053491,0.000000,75,0,40.046255,0.029402,63359238,30932521,0,0,77176,0,1,1 +1773667836.328200,0.60,4,3992.50,54.26,1596.52,2124.35,0.00,2.121573,0.000195,258,2,0.000619,0.000273,63359250,30932530,0,0,77178,0,1,1 +1773667841.325555,0.65,4,3992.50,54.04,1604.93,2115.95,0.00,3520299726948.559082,3520299726950.555176,205,0,0.000000,0.000030,63359250,30932533,0,0,77181,0,1,1 +1773667846.323443,0.80,4,3992.50,54.26,1604.23,2124.31,0.00,48451.115941,48697.198172,3378771,3026152,0.000000,0.000020,63359250,30932535,0,0,77183,0,1,1 +1773667851.323447,0.75,4,3992.50,54.27,1603.86,2124.73,0.00,3518434536405.542969,3518434536168.762695,253,556,0.000000,0.000030,63359250,30932538,0,0,77186,0,1,1 +1773667856.323471,0.55,4,3992.50,54.27,1603.86,2124.73,0.00,3518420808114.967773,3518420808105.770020,205,0,0.000000,0.000020,63359250,30932540,0,0,77188,0,1,1 +1773667861.323789,0.55,4,3992.50,54.27,1603.87,2124.72,0.00,3518213420252.855957,0.000000,11,0,0.000000,0.000030,63359250,30932543,0,0,77191,0,1,1 +1773667866.324108,0.60,4,3992.50,54.27,1603.87,2124.72,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63359250,30932545,0,0,77193,0,1,1 +1773667871.324972,0.65,4,3992.50,54.27,1603.87,2124.72,0.00,1.657428,10.673351,253,556,0.001434,0.001786,63359266,30932573,0,0,77196,0,1,1 +1773667876.327569,0.80,4,3992.50,54.33,1593.88,2127.06,0.00,0.517407,3516610335429.846191,258,2,0.001297,0.001404,63359288,30932602,0,0,77198,0,1,1 +1773667881.328273,0.65,4,3992.50,54.33,1593.40,2127.06,0.00,3517942179538.123047,10.673498,253,556,0.000025,0.000061,63359290,30932607,0,0,77201,0,1,1 +1773667886.327935,0.60,4,3992.50,54.13,1601.04,2119.42,0.00,0.000000,0.000000,253,556,0.000000,0.000020,63359290,30932609,0,0,77203,0,1,1 +1773667891.328038,0.85,4,3992.50,53.95,1608.23,2112.23,0.00,3518364984588.812012,3518364984579.794922,11,0,0.002234,0.000735,63359314,30932628,0,0,77206,0,1,1 +1773667896.328312,12.79,4,3992.50,54.07,1603.64,2116.81,0.00,48418.454615,48663.422230,3377268,3025741,40.060334,0.027490,63363688,30934535,0,0,77208,0,1,1 +1773667901.327635,0.70,4,3992.50,54.07,1603.65,2116.81,0.00,3518913678380.543457,3518913678135.528809,11,0,0.000000,0.000030,63363688,30934538,0,0,77211,0,1,1 +1773667906.327479,0.85,4,3992.50,54.06,1603.89,2116.73,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63363688,30934540,0,0,77213,0,1,1 +1773667911.327590,0.55,4,3992.50,53.98,1606.94,2113.46,0.00,48429.763267,48675.853709,3378771,3026409,0.000000,0.000030,63363688,30934543,0,0,77216,0,1,1 +1773667916.324191,0.65,4,3992.50,53.82,1613.38,2107.03,0.00,3520830657751.798828,3520830657514.559082,253,556,0.001172,0.000678,63363714,30934562,0,0,77218,0,1,1 +1773667921.327837,0.60,4,3992.50,53.74,1616.47,2103.93,0.00,48393.892988,48630.833797,3378771,3026446,0.000347,0.000617,63363724,30934579,0,0,77221,0,1,1 +1773667926.327691,0.55,4,3992.50,53.82,1613.28,2107.12,0.00,3518540034120.122070,3518540033883.001953,253,556,0.001696,0.001343,63363746,30934596,0,0,77223,0,1,1 +1773667931.328334,0.70,4,3992.50,53.82,1613.28,2107.12,0.00,48413.226237,48649.368031,3377268,3025896,0.000025,0.000030,63363748,30934599,0,0,77226,0,1,1 +1773667936.323556,0.75,4,3992.50,54.02,1605.39,2114.97,0.00,3521802392677.127441,3521802392431.649902,75,0,0.000000,0.000020,63363748,30934601,0,0,77228,0,1,1 +1773667941.323546,0.75,4,3992.50,54.00,1606.36,2114.02,0.00,0.126758,0.000000,205,0,0.000107,0.000148,63363756,30934612,0,0,77231,0,1,1 +1773667946.323755,0.70,4,3992.50,53.81,1613.77,2106.61,0.00,48418.916796,48664.330416,3377268,3025935,0.000000,0.000020,63363756,30934614,0,0,77233,0,1,1 +1773667951.327501,0.75,4,3992.50,53.81,1613.77,2106.61,0.00,0.000000,0.003123,3377268,3025939,0.000000,0.000030,63363756,30934617,0,0,77236,0,1,1 +1773667956.327540,0.75,4,3992.50,53.81,1613.52,2106.86,0.00,3518409555724.396484,3518409555479.151367,11,0,0.000000,0.000020,63363756,30934619,0,0,77238,0,1,1 +1773667961.323458,14.67,4,3992.50,53.75,1615.78,2104.57,0.00,0.000000,0.000000,11,0,40.098603,0.023842,63368207,30936164,0,0,77241,0,1,1 +1773667966.324556,0.90,4,3992.50,53.89,1617.87,2109.81,0.00,0.053504,0.000000,75,0,0.000039,0.000053,63368210,30936169,0,0,77243,0,1,1 +1773667971.327790,0.60,4,3992.50,53.89,1617.65,2110.03,0.00,48399.471015,48645.785096,3378771,3026691,0.000013,0.000061,63368211,30936174,0,0,77246,0,1,1 +1773667976.327847,0.60,4,3992.50,53.89,1617.65,2110.03,0.00,3518397275901.023438,3518397275654.426270,205,0,0.000013,0.000020,63368212,30936176,0,0,77248,0,1,1 +1773667981.328321,0.60,4,3992.50,53.89,1617.65,2110.03,0.00,3518104013473.682129,0.000000,75,0,0.000000,0.000030,63368212,30936179,0,0,77251,0,1,1 +1773667986.327953,0.60,4,3992.50,53.89,1617.65,2110.03,0.00,3518695819654.846680,0.000000,11,0,0.000000,0.000020,63368212,30936181,0,0,77253,0,1,1 +1773667991.327563,0.60,4,3992.50,53.89,1617.65,2110.03,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63368212,30936184,0,0,77256,0,1,1 +1773667996.323431,0.80,4,3992.50,54.31,1601.43,2126.24,0.00,0.053560,0.000000,75,0,0.000000,0.000020,63368212,30936186,0,0,77258,0,1,1 +1773668001.328023,0.65,4,3992.50,54.22,1604.96,2122.71,0.00,48386.344656,48632.652036,3378771,3026739,0.000000,0.000030,63368212,30936189,0,0,77261,0,1,1 +1773668006.323451,0.60,4,3992.50,54.09,1609.84,2117.83,0.00,3521657225772.303223,3521657225534.623535,253,556,0.000157,0.000201,63368224,30936203,0,0,77263,0,1,1 +1773668011.323455,0.50,4,3992.50,54.09,1610.02,2117.65,0.00,48419.422080,48655.943900,3377268,3026190,0.000008,0.000038,63368225,30936207,0,0,77266,0,1,1 +1773668016.327935,0.55,4,3992.50,54.09,1609.78,2117.89,0.00,3515287528222.807129,3515287527986.496582,253,556,0.000000,0.000020,63368225,30936209,0,0,77268,0,1,1 +1773668021.324133,0.55,4,3992.50,54.09,1609.78,2117.89,0.00,0.518070,3521114086561.235840,258,2,0.000013,0.000030,63368226,30936212,0,0,77271,0,1,1 +1773668026.327947,13.16,4,3992.50,54.22,1590.39,2122.96,0.00,0.000000,0.000000,258,2,40.035395,0.022353,63372692,30937632,0,0,77273,0,1,1 +1773668031.328078,0.70,4,3992.50,54.22,1590.32,2122.96,0.00,48417.665514,48665.582936,3377268,3026375,0.000008,0.000038,63372693,30937636,0,0,77276,0,1,1 +1773668036.323459,0.60,4,3992.50,54.22,1590.32,2122.96,0.00,3521690693428.000000,3521690693191.049805,253,556,0.000000,0.000020,63372693,30937638,0,0,77278,0,1,1 +1773668041.323460,0.60,4,3992.50,54.22,1590.33,2122.96,0.00,0.517676,3518436187822.343262,258,2,0.000000,0.000030,63372693,30937641,0,0,77281,0,1,1 +1773668046.323465,0.55,4,3992.50,54.22,1590.33,2122.96,0.00,3518434146435.943359,3518434146438.118652,11,0,0.000000,0.000020,63372693,30937643,0,0,77283,0,1,1 +1773668051.327702,0.45,4,3992.50,54.22,1590.33,2122.96,0.00,1.656311,10.666157,253,556,0.000000,0.000030,63372693,30937646,0,0,77286,0,1,1 +1773668056.327434,1.00,4,3992.50,54.37,1580.12,2128.57,0.00,3518625691807.700195,3518625691798.682617,11,0,0.000000,0.000020,63372693,30937648,0,0,77288,0,1,1 +1773668061.323886,0.60,4,3992.50,54.37,1580.04,2128.56,0.00,48455.493997,48701.496192,3377268,3026424,0.000000,0.000030,63372693,30937651,0,0,77291,0,1,1 +1773668066.324554,0.60,4,3992.50,54.37,1580.04,2128.56,0.00,3517966842772.942871,3517966842536.164551,253,556,0.000000,0.000020,63372693,30937653,0,0,77293,0,1,1 +1773668071.327642,0.65,4,3992.50,54.37,1580.04,2128.56,0.00,3516265849317.043945,3516265849308.032227,11,0,0.000188,0.000235,63372707,30937670,0,0,77296,0,1,1 +1773668076.323422,0.60,4,3992.50,54.37,1580.05,2128.55,0.00,0.053561,0.000000,75,0,0.000000,0.000020,63372707,30937672,0,0,77298,0,1,1 +1773668081.323560,0.65,4,3992.50,54.37,1580.05,2128.55,0.00,3518340343344.149902,0.000000,11,0,0.000000,0.000030,63372707,30937675,0,0,77301,0,1,1 +1773668086.327373,1.00,4,3992.50,54.46,1576.74,2132.20,0.00,0.180136,0.000000,205,0,0.000000,0.000020,63372707,30937677,0,0,77303,0,1,1 +1773668091.323820,16.62,4,3992.50,54.52,1574.29,2134.69,0.00,3520939651955.356934,0.000000,11,0,40.094454,0.027424,63377102,30939437,0,0,77306,0,1,1 +1773668096.323586,0.70,4,3992.50,54.03,1593.47,2115.50,0.00,0.053518,0.000000,75,0,0.000008,0.000028,63377103,30939440,0,0,77308,0,1,1 +1773668101.327585,0.85,4,3992.50,53.92,1597.75,2111.23,0.00,2.120179,0.000195,258,2,0.000000,0.000030,63377103,30939443,0,0,77311,0,1,1 +1773668106.328229,0.70,4,3992.50,53.91,1598.20,2110.77,0.00,3517984205796.066895,10.673626,253,556,0.000000,0.000020,63377103,30939445,0,0,77313,0,1,1 +1773668111.327720,0.65,4,3992.50,53.72,1605.59,2103.38,0.00,48424.383488,48661.529281,3377269,3026702,0.000000,0.000030,63377103,30939448,0,0,77316,0,1,1 +1773668116.327611,0.90,4,3992.50,53.95,1605.39,2112.44,0.00,3518514125143.812500,3518514124897.614258,75,0,0.000000,0.000020,63377103,30939450,0,0,77318,0,1,1 +1773668121.328182,0.80,4,3992.50,53.96,1605.18,2112.69,0.00,48425.255864,48672.414826,3378772,3027291,0.000000,0.000030,63377103,30939453,0,0,77321,0,1,1 +1773668126.327416,0.60,4,3992.50,53.96,1605.18,2112.69,0.00,3518976365318.309570,3518976365317.375977,3377269,3026749,0.000000,0.000020,63377103,30939455,0,0,77323,0,1,1 +1773668131.327379,0.60,4,3992.50,53.96,1605.18,2112.68,0.00,3518463178793.597656,3518463178547.395996,11,0,0.000000,0.000030,63377103,30939458,0,0,77326,0,1,1 +1773668136.325185,0.65,4,3992.50,53.96,1605.38,2112.49,0.00,48452.111793,48699.381368,3378772,3027316,0.000157,0.000201,63377115,30939472,0,0,77328,0,1,1 +1773668141.325454,0.60,4,3992.50,53.96,1605.38,2112.49,0.00,3518247802022.985352,3518247801775.657227,205,0,0.000008,0.000038,63377116,30939476,0,0,77331,0,1,1 +1773668146.328116,0.90,4,3992.50,54.15,1599.81,2120.07,0.00,1.476655,10.669514,253,556,0.000000,0.000020,63377116,30939478,0,0,77333,0,1,1 +1773668151.327394,0.65,4,3992.50,54.15,1599.82,2120.07,0.00,3518945345293.372070,3518945345284.172852,205,0,0.000000,0.000030,63377116,30939481,0,0,77336,0,1,1 +1773668156.328078,16.33,4,3992.50,55.45,1548.83,2171.05,0.00,48424.037313,48671.407371,3378772,3027400,40.059730,0.021231,63381502,30940822,0,0,77338,0,1,1 +1773668161.323430,0.75,4,3992.50,54.31,1593.42,2126.48,0.00,0.000000,0.101071,3378772,3027479,0.000008,0.000038,63381503,30940826,0,0,77341,0,1,1 +1773668166.323435,0.60,4,3992.50,54.02,1605.05,2114.85,0.00,0.000000,0.003906,3378772,3027483,0.000000,0.000020,63381503,30940828,0,0,77343,0,1,1 +1773668171.323439,0.75,4,3992.50,53.93,1608.38,2111.52,0.00,3518434340075.389160,3518434339828.061035,11,0,0.000512,0.001117,63381517,30940853,0,0,77346,0,1,1 +1773668176.326457,0.90,4,3992.50,54.03,1616.54,2115.55,0.00,0.053483,0.000000,75,0,0.000205,0.000552,63381524,30940866,0,0,77348,0,1,1 +1773668181.327589,0.60,4,3992.50,54.03,1616.55,2115.55,0.00,0.126729,0.000000,205,0,0.000000,0.000030,63381524,30940869,0,0,77351,0,1,1 +1773668186.323414,0.65,4,3992.50,54.03,1616.55,2115.54,0.00,0.000000,0.000000,205,0,0.000000,0.000020,63381524,30940871,0,0,77353,0,1,1 +1773668191.327995,0.55,4,3992.50,54.03,1616.55,2115.54,0.00,1.993291,0.000195,258,2,0.000000,0.000030,63381524,30940874,0,0,77356,0,1,1 +1773668196.324325,0.60,4,3992.50,53.91,1621.51,2110.58,0.00,3521022055254.568359,3521022055256.564941,205,0,0.000000,0.000020,63381524,30940876,0,0,77358,0,1,1 +1773668201.327829,1.50,4,3992.50,53.91,1621.28,2110.81,0.00,1.476407,10.667718,253,556,0.000157,0.000210,63381536,30940891,0,0,77361,0,1,1 +1773668206.328186,0.75,4,3992.50,54.00,1615.98,2114.22,0.00,48416.004188,48653.517803,3377269,3027033,0.000008,0.000028,63381537,30940894,0,0,77363,0,1,1 +1773668211.328235,0.65,4,3992.50,54.01,1615.61,2114.46,0.00,3518403028434.484375,3518403028187.758789,205,0,0.000000,0.000030,63381537,30940897,0,0,77366,0,1,1 +1773668216.323535,0.80,4,3992.50,54.03,1614.88,2115.20,0.00,1.996994,0.000195,258,2,0.001173,0.000686,63381563,30940917,0,0,77368,0,1,1 +1773668221.323438,15.51,4,3992.50,54.21,1607.53,2122.54,0.00,3518505547406.869629,3518505547409.044922,11,0,40.066803,0.024226,63385933,30942404,0,0,77371,0,1,1 +1773668226.327439,0.60,4,3992.50,54.21,1607.54,2122.53,0.00,0.180129,0.000000,205,0,0.001287,0.000885,63385960,30942426,0,0,77373,0,1,1 +1773668231.327133,0.60,4,3992.50,54.22,1607.30,2122.77,0.00,3518652701026.658203,0.000000,11,0,0.000025,0.000030,63385962,30942429,0,0,77376,0,1,1 +1773668236.327451,0.80,4,3992.50,54.19,1600.29,2121.54,0.00,48418.039796,48664.778117,3377269,3027205,0.000000,0.000020,63385962,30942431,0,0,77378,0,1,1 +1773668241.327525,0.65,4,3992.50,54.18,1600.38,2121.35,0.00,3518384991960.452637,3518384991713.702637,11,0,0.000000,0.000030,63385962,30942434,0,0,77381,0,1,1 +1773668246.323502,0.65,4,3992.50,54.18,1600.38,2121.35,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63385962,30942436,0,0,77383,0,1,1 +1773668251.323426,0.65,4,3992.50,54.18,1600.38,2121.35,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63385962,30942439,0,0,77386,0,1,1 +1773668256.323747,0.60,4,3992.50,54.19,1600.14,2121.58,0.00,0.053512,0.000000,75,0,0.000000,0.000020,63385962,30942441,0,0,77388,0,1,1 +1773668261.323423,0.75,4,3992.50,54.19,1600.14,2121.58,0.00,1.604303,10.675887,253,556,0.000000,0.000030,63385962,30942444,0,0,77391,0,1,1 +1773668266.323421,0.90,4,3992.50,54.19,1604.05,2121.58,0.00,3518438802030.685059,3518438802021.614258,75,0,0.000298,0.000020,63385980,30942446,0,0,77393,0,1,1 +1773668271.323411,0.70,4,3992.50,54.19,1599.97,2121.79,0.00,2.121879,0.000195,258,2,0.000093,0.000030,63385985,30942449,0,0,77396,0,1,1 +1773668276.328055,0.60,4,3992.50,54.20,1599.73,2122.04,0.00,3515171755631.604980,10.665093,253,556,0.000018,0.000020,63385986,30942451,0,0,77398,0,1,1 +1773668281.323497,0.55,4,3992.50,54.20,1599.73,2122.04,0.00,48473.376544,48712.367663,3378772,3027843,0.000056,0.000030,63385989,30942454,0,0,77401,0,1,1 +1773668286.323471,0.95,4,3992.50,54.01,1607.15,2114.61,0.00,3518455698493.916504,3518455698243.949219,258,2,0.000174,0.000664,63386000,30942460,0,0,77403,0,1,1 +1773668291.328288,9.97,4,3992.50,58.83,1418.48,2303.27,0.00,3515050433183.353027,3515050433185.472656,75,0,19.014265,0.014572,63388227,30943451,0,0,77406,0,1,1 +1773668296.328361,3.01,4,3992.50,54.18,1609.93,2121.08,0.00,3518386481490.533691,0.000000,11,0,21.032443,0.007498,63390451,30943905,0,0,77408,0,1,1 +1773668301.328016,0.70,4,3992.50,53.99,1617.37,2113.67,0.00,48424.448752,48671.540360,3377269,3027503,0.000000,0.000030,63390451,30943908,0,0,77411,0,1,1 +1773668306.323447,0.45,4,3992.50,53.99,1617.12,2113.91,0.00,3521655155268.597656,3521655155030.322754,253,556,0.000000,0.000020,63390451,30943910,0,0,77413,0,1,1 +1773668311.326843,0.55,4,3992.50,54.00,1616.89,2114.16,0.00,0.517325,3516049754832.198242,258,2,0.000000,0.000030,63390451,30943913,0,0,77416,0,1,1 +1773668316.328094,0.60,4,3992.50,54.00,1616.89,2114.14,0.00,3517556986676.914551,3517556986679.035645,75,0,0.000000,0.000020,63390451,30943915,0,0,77418,0,1,1 +1773668321.324551,0.50,4,3992.50,54.00,1616.65,2114.39,0.00,3520932201296.833008,0.000000,11,0,0.000000,0.000030,63390451,30943918,0,0,77421,0,1,1 +1773668326.323560,0.85,4,3992.50,54.10,1615.38,2118.06,0.00,48440.440816,48688.565367,3378772,3028091,0.000000,0.000020,63390451,30943920,0,0,77423,0,1,1 +1773668331.327810,0.65,4,3992.50,54.12,1614.61,2118.80,0.00,3515448806790.273438,3515448806542.355469,75,0,0.000000,0.000030,63390451,30943923,0,0,77426,0,1,1 +1773668336.328253,0.50,4,3992.50,54.12,1614.61,2118.80,0.00,0.000000,0.000000,75,0,0.000081,0.000020,63390456,30943925,0,0,77428,0,1,1 +1773668341.328199,0.60,4,3992.50,54.12,1614.38,2119.03,0.00,0.000000,0.000000,75,0,0.000155,0.000030,63390465,30943928,0,0,77431,0,1,1 +1773668346.326325,0.60,4,3992.50,54.12,1614.38,2119.03,0.00,48439.209824,48686.506371,3377269,3027556,0.000037,0.000020,63390467,30943930,0,0,77433,0,1,1 +1773668351.327668,0.65,4,3992.50,54.12,1614.38,2119.03,0.00,3517492975299.691895,3517492975052.607910,11,0,0.000108,0.000643,63390475,30943944,0,0,77436,0,1,1 +1773668356.323433,7.12,4,3992.50,59.31,1399.51,2322.27,0.00,0.180426,0.000000,205,0,13.437334,0.013236,63392173,30944815,0,0,77438,0,1,1 +1773668361.328176,4.11,4,3992.50,55.36,1554.23,2167.58,0.00,1.476041,10.665080,253,556,26.615790,0.011174,63394972,30945560,0,0,77441,0,1,1 +1773668366.323430,0.60,4,3992.50,54.88,1573.07,2148.75,0.00,3521780157973.766602,3521780157964.560059,205,0,0.000000,0.000020,63394972,30945562,0,0,77443,0,1,1 +1773668371.323474,0.55,4,3992.50,54.21,1599.35,2122.47,0.00,3518406429863.571289,0.000000,11,0,0.000000,0.000030,63394972,30945565,0,0,77446,0,1,1 +1773668376.323645,0.50,4,3992.50,54.19,1600.33,2121.48,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63394972,30945567,0,0,77448,0,1,1 +1773668381.326123,0.60,4,3992.50,54.19,1600.05,2121.77,0.00,48406.854104,48655.020767,3378772,3028286,0.000000,0.000030,63394972,30945570,0,0,77451,0,1,1 +1773668386.325201,0.95,4,3992.50,54.20,1608.60,2121.96,0.00,3519086051063.720703,3519086050815.331543,75,0,0.000000,0.000020,63394972,30945572,0,0,77453,0,1,1 +1773668391.325031,0.50,4,3992.50,54.17,1609.79,2120.79,0.00,2.121947,0.000195,258,2,0.000000,0.000030,63394972,30945575,0,0,77456,0,1,1 +1773668396.323446,0.50,4,3992.50,54.17,1609.79,2120.79,0.00,48434.293173,48683.973872,3377269,3027767,0.000000,0.000020,63394972,30945577,0,0,77458,0,1,1 +1773668401.323462,0.85,4,3992.50,54.17,1609.79,2120.79,0.00,3518425874761.422363,3518425874511.821289,258,2,0.000062,0.000030,63394976,30945580,0,0,77461,0,1,1 +1773668406.326166,0.50,4,3992.50,54.19,1609.06,2121.51,0.00,3516535444711.662109,10.669230,253,556,0.000173,0.000020,63394986,30945582,0,0,77463,0,1,1 +1773668411.323423,0.70,4,3992.50,54.15,1610.62,2119.95,0.00,48455.768305,48695.314074,3378772,3028366,0.000108,0.000160,63394994,30945593,0,0,77466,0,1,1 +1773668416.326148,0.70,4,3992.50,54.56,1594.15,2136.16,0.00,0.000000,0.030452,3378772,3028380,0.000000,0.000020,63394994,30945595,0,0,77468,0,1,1 +1773668421.323471,10.58,4,3992.50,58.98,1421.02,2309.30,0.00,3520322220482.841309,3520322220234.191895,75,0,28.862600,0.019800,63398196,30946815,0,0,77471,0,1,1 +1773668426.323472,0.90,4,3992.50,54.66,1590.37,2139.96,0.00,0.000000,0.000000,75,0,11.218543,0.004410,63399411,30947091,0,0,77473,0,1,1 +1773668431.326063,0.60,4,3992.50,54.28,1605.27,2125.06,0.00,3516614934190.398438,0.000000,11,0,0.000000,0.000030,63399411,30947094,0,0,77476,0,1,1 +1773668436.327914,0.60,4,3992.50,54.19,1608.67,2121.65,0.00,2.174586,0.000195,258,2,0.000000,0.000020,63399411,30947096,0,0,77478,0,1,1 +1773668441.328107,0.60,4,3992.50,54.19,1608.68,2121.65,0.00,3518301427074.049316,3518301427076.224609,11,0,0.000000,0.000030,63399411,30947099,0,0,77481,0,1,1 +1773668446.327719,0.75,4,3992.50,54.17,1601.01,2120.79,0.00,2.175559,0.000195,258,2,0.000000,0.000020,63399411,30947101,0,0,77483,0,1,1 +1773668451.328005,0.60,4,3992.50,54.16,1601.50,2120.31,0.00,3518236486453.052734,3518236486455.174805,75,0,0.000000,0.000030,63399411,30947104,0,0,77486,0,1,1 +1773668456.326243,0.55,4,3992.50,54.16,1601.50,2120.31,0.00,0.126802,0.000000,205,0,0.000000,0.000020,63399411,30947106,0,0,77488,0,1,1 +1773668461.327984,0.55,4,3992.50,54.17,1601.02,2120.79,0.00,48404.086533,48651.974945,3377269,3028064,0.000000,0.000030,63399411,30947109,0,0,77491,0,1,1 +1773668466.328069,0.65,4,3992.50,54.15,1601.63,2120.18,0.00,3518377173540.282227,3518377173301.509277,253,556,0.000124,0.000020,63399419,30947111,0,0,77493,0,1,1 +1773668471.327507,0.55,4,3992.50,54.15,1601.63,2120.18,0.00,3518832539864.718262,3518832539855.646484,75,0,0.001648,0.001967,63399450,30947151,0,0,77496,0,1,1 +1773668476.327877,0.80,4,3992.50,54.25,1597.95,2123.82,0.00,48417.489687,48665.359964,3377269,3028087,0.000205,0.000552,63399457,30947164,0,0,77498,0,1,1 +1773668481.328236,0.60,4,3992.50,54.25,1597.75,2124.05,0.00,9.725473,10.686341,3378772,3028658,0.000000,0.000030,63399457,30947167,0,0,77501,0,1,1 +1773668486.327683,1.00,4,3992.50,53.99,1608.14,2113.66,0.00,3518826310834.212402,3518826310833.268066,3377269,3028111,0.002209,0.001358,63399479,30947188,0,0,77503,0,1,1 +1773668491.327953,14.41,4,3992.50,55.79,1537.57,2184.22,0.00,0.000000,0.085445,3377269,3028213,40.059663,0.022584,63403794,30948747,0,0,77506,0,1,1 +1773668496.328119,0.65,4,3992.50,54.92,1571.68,2150.11,0.00,3518320585131.659180,3518320584883.549805,205,0,0.000771,0.000463,63403811,30948761,0,0,77508,0,1,1 +1773668501.323433,0.50,4,3992.50,54.46,1589.74,2132.05,0.00,48466.363099,48714.758608,3377269,3028259,0.000000,0.000030,63403811,30948764,0,0,77511,0,1,1 +1773668506.327585,0.85,4,3992.50,54.54,1587.84,2135.38,0.00,3515518174395.497070,3515518174147.540527,205,0,0.000000,0.000020,63403811,30948766,0,0,77513,0,1,1 +1773668511.327912,0.55,4,3992.50,54.51,1589.21,2134.05,0.00,1.994986,0.000195,258,2,0.000000,0.000030,63403811,30948769,0,0,77516,0,1,1 +1773668516.327555,0.75,4,3992.50,54.51,1589.21,2134.05,0.00,0.000000,0.000000,258,2,0.000332,0.000020,63403832,30948771,0,0,77518,0,1,1 +1773668521.327428,0.55,4,3992.50,54.51,1588.98,2134.28,0.00,3518526895428.063477,3518526895430.059082,205,0,0.000286,0.000030,63403850,30948774,0,0,77521,0,1,1 +1773668526.326128,0.60,4,3992.50,54.34,1595.89,2127.38,0.00,3519352078533.242676,0.000000,11,0,0.000182,0.000020,63403861,30948776,0,0,77523,0,1,1 +1773668531.328132,0.65,4,3992.50,54.32,1596.34,2126.91,0.00,0.053494,0.000000,75,0,0.001775,0.001392,63403889,30948797,0,0,77526,0,1,1 +1773668536.326667,0.75,4,3992.50,54.35,1591.11,2128.09,0.00,0.126795,0.000000,205,0,0.000113,0.000153,63403897,30948808,0,0,77528,0,1,1 +1773668541.324315,0.65,4,3992.50,54.32,1592.36,2126.84,0.00,3520092827518.993164,0.000000,75,0,0.000075,0.000088,63403902,30948815,0,0,77531,0,1,1 +1773668546.327589,0.60,4,3992.50,54.32,1592.37,2126.84,0.00,0.126675,0.000000,205,0,0.000000,0.000020,63403902,30948817,0,0,77533,0,1,1 +1773668551.327809,0.50,4,3992.50,54.32,1592.42,2126.79,0.00,3518282816078.201660,0.000000,11,0,0.000000,0.000674,63403902,30948824,0,0,77536,0,1,1 +1773668556.327563,1.35,4,3992.50,56.47,1508.07,2211.12,0.00,48433.218806,48682.386690,3378772,3028996,0.004668,0.003301,63403961,30948870,0,0,77538,0,1,1 +1773668561.323466,9.63,4,3992.50,59.89,1374.46,2344.75,0.00,3521322902882.147461,3521322902632.787109,11,0,11.159269,0.010577,63405429,30949708,0,0,77541,0,1,1 +1773668566.327490,0.95,4,3992.50,59.99,1369.35,2348.62,0.00,48382.177577,48630.341712,3377269,3028538,0.000707,0.000020,63405440,30949710,0,0,77543,0,1,1 +1773668571.327025,0.80,4,3992.50,59.80,1376.38,2341.44,0.00,3518764014932.719727,3518764014684.279297,75,0,0.000708,0.000030,63405451,30949713,0,0,77546,0,1,1 +1773668576.323423,0.70,4,3992.50,59.81,1376.14,2341.68,0.00,2.123405,0.000195,258,2,0.000000,0.000020,63405451,30949715,0,0,77548,0,1,1 +1773668581.323465,0.70,4,3992.50,59.81,1376.14,2341.69,0.00,0.000000,0.000000,258,2,0.000000,0.000030,63405451,30949718,0,0,77551,0,1,1 +1773668586.327902,0.70,4,3992.50,59.81,1376.14,2341.68,0.00,3515317696975.670898,10.665535,253,556,0.000707,0.000020,63405462,30949720,0,0,77553,0,1,1 +1773668591.327891,1.00,4,3992.50,59.81,1376.14,2341.68,0.00,48429.289604,48669.637092,3378772,3029156,0.000742,0.001939,63405487,30949759,0,0,77556,0,1,1 +1773668596.323723,2.46,4,3992.50,60.24,1361.63,2358.45,0.00,0.000000,0.040268,3378772,3029186,0.001432,0.003838,63405531,30949833,0,0,77558,0,1,1 +1773668601.323421,0.70,4,3992.50,60.07,1365.95,2351.91,0.00,3518649921249.738770,3518649921000.265625,75,0,0.000758,0.002012,63405556,30949877,0,0,77561,0,1,1 +1773668606.327315,0.90,4,3992.50,60.07,1365.95,2351.91,0.00,48393.104295,48642.408980,3378772,3029249,0.004096,0.003021,63405622,30949929,0,0,77563,0,1,1 +1773668611.326082,1.10,4,3992.50,54.70,1576.38,2141.47,0.00,0.000000,0.011819,3378772,3029278,28.922679,0.010330,63408445,30950557,0,0,77566,0,1,1 +1773668616.323424,0.55,4,3992.50,54.25,1593.84,2124.02,0.00,3520308518282.203125,3520308518281.268555,3377269,3028731,0.000000,0.000664,63408445,30950563,0,0,77568,0,1,1 +1773668621.323447,0.65,4,3992.50,54.02,1602.88,2114.97,0.00,3518420514814.807617,3518420514566.105469,205,0,0.000000,0.000030,63408445,30950566,0,0,77571,0,1,1 +1773668626.323448,0.80,4,3992.50,54.32,1592.90,2126.68,0.00,3518436690265.451660,0.000000,11,0,0.000000,0.000020,63408445,30950568,0,0,77573,0,1,1 +1773668631.323453,0.65,4,3992.50,54.32,1593.00,2126.62,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63408445,30950571,0,0,77576,0,1,1 +1773668636.323448,0.50,4,3992.50,54.32,1592.77,2126.85,0.00,0.180274,0.000000,205,0,0.000000,0.000020,63408445,30950573,0,0,77578,0,1,1 +1773668641.327439,0.60,4,3992.50,54.32,1592.77,2126.85,0.00,1.993526,0.000195,258,2,0.000124,0.000030,63408453,30950576,0,0,77581,0,1,1 +1773668646.327873,0.55,4,3992.50,54.32,1592.77,2126.85,0.00,3518132279691.067383,3518132279693.242676,11,0,0.000409,0.000020,63408477,30950578,0,0,77583,0,1,1 +1773668651.327874,0.60,4,3992.50,54.32,1592.77,2126.85,0.00,1.657714,10.675192,253,556,0.000101,0.000112,63408483,30950587,0,0,77586,0,1,1 +1773668656.323416,0.85,4,3992.50,54.32,1592.95,2126.82,0.00,3521577016664.037109,3521577016655.012207,11,0,0.000126,0.000175,63408493,30950599,0,0,77588,0,1,1 +1773668661.328166,0.55,4,3992.50,54.20,1597.39,2121.99,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63408493,30950602,0,0,77591,0,1,1 +1773668666.328025,0.60,4,3992.50,54.20,1597.39,2121.99,0.00,0.180279,0.000000,205,0,0.000000,0.000020,63408493,30950604,0,0,77593,0,1,1 +1773668671.327729,0.85,4,3992.50,54.13,1600.17,2119.21,0.00,48433.529364,48683.372957,3378772,3029427,0.002209,0.000724,63408515,30950622,0,0,77596,0,1,1 +1773668676.327397,11.18,4,3992.50,55.13,1560.89,2158.46,0.00,3518671252020.879395,3518671251771.214355,11,0,40.065327,0.024254,63412905,30952280,0,0,77598,0,1,1 +1773668681.327565,0.60,4,3992.50,54.69,1578.08,2141.29,0.00,48429.232953,48678.959578,3378775,3029548,0.000008,0.000682,63412906,30952288,0,0,77601,0,1,1 +1773668686.323487,0.75,4,3992.50,54.55,1585.72,2135.69,0.00,3521309608198.694336,3521309607948.755371,11,0,0.000000,0.000020,63412906,30952290,0,0,77603,0,1,1 +1773668691.324459,0.55,4,3992.50,54.49,1585.06,2133.39,0.00,0.180238,0.000000,205,0,0.000000,0.000030,63412906,30952293,0,0,77606,0,1,1 +1773668696.323502,0.60,4,3992.50,54.49,1585.18,2133.28,0.00,1.995499,0.000195,258,2,0.000000,0.000020,63412906,30952295,0,0,77608,0,1,1 +1773668701.323598,0.90,4,3992.50,54.48,1585.45,2133.00,0.00,3518370212075.446777,3518370212077.622070,11,0,0.000000,0.000030,63412906,30952298,0,0,77611,0,1,1 +1773668706.323439,0.80,4,3992.50,54.21,1596.07,2122.39,0.00,0.053517,0.000000,75,0,0.000000,0.000020,63412906,30952300,0,0,77613,0,1,1 +1773668711.323430,0.65,4,3992.50,54.25,1594.35,2124.11,0.00,2.121879,0.000195,258,2,0.000000,0.000030,63412906,30952303,0,0,77616,0,1,1 +1773668716.327891,1.20,4,3992.50,54.36,1598.81,2128.20,0.00,3515300808988.273926,3515300808990.267578,205,0,0.000000,0.000020,63412906,30952305,0,0,77618,0,1,1 +1773668721.327423,0.75,4,3992.50,54.17,1606.18,2120.84,0.00,3518766681563.714355,0.000000,11,0,0.000188,0.000236,63412920,30952322,0,0,77621,0,1,1 +1773668726.328115,1.00,4,3992.50,54.18,1605.93,2121.09,0.00,48414.459941,48663.457411,3377273,3029182,0.000008,0.000028,63412921,30952325,0,0,77623,0,1,1 +1773668731.324820,0.90,4,3992.50,54.18,1605.93,2121.09,0.00,9.732587,10.684777,3378776,3029742,0.000000,0.000030,63412921,30952328,0,0,77626,0,1,1 +1773668736.327896,0.75,4,3992.50,54.00,1612.84,2114.18,0.00,3516273763878.432617,3516273763637.615234,253,556,0.000000,0.000020,63412921,30952330,0,0,77628,0,1,1 +1773668741.327786,0.80,4,3992.50,53.96,1614.41,2112.59,0.00,3518514272085.012695,3518514272075.814941,205,0,0.002891,0.001656,63412947,30952351,0,0,77631,0,1,1 +1773668746.327436,0.85,4,3992.50,54.46,1599.20,2132.24,0.00,48434.102222,48684.421723,3378776,3029839,0.000000,0.000664,63412947,30952357,0,0,77633,0,1,1 +1773668751.324025,0.60,4,3992.50,54.43,1600.41,2131.05,0.00,3520838858429.577637,3520838858179.231445,75,0,0.000000,0.000030,63412947,30952360,0,0,77636,0,1,1 +1773668756.327670,0.70,4,3992.50,54.39,1602.05,2129.42,0.00,1.603031,10.667419,253,556,0.000000,0.000020,63412947,30952362,0,0,77638,0,1,1 +1773668761.328330,0.60,4,3992.50,54.39,1601.83,2129.64,0.00,0.517607,3517972944093.876953,258,2,0.000000,0.000030,63412947,30952365,0,0,77641,0,1,1 +1773668766.325340,0.65,4,3992.50,54.39,1601.83,2129.63,0.00,48457.689844,48710.168172,3378776,3029867,0.000000,0.000020,63412947,30952367,0,0,77643,0,1,1 +1773668771.325063,12.25,4,3992.50,59.43,1404.55,2326.91,0.00,3518631726712.273438,3518631726462.106934,11,0,28.446699,0.022181,63416092,30953778,0,0,77646,0,1,1 +1773668776.327598,1.35,4,3992.50,54.64,1592.04,2139.18,0.00,0.000000,0.000000,11,0,11.613145,0.007909,63417334,30954301,0,0,77648,0,1,1 +1773668781.323500,0.70,4,3992.50,54.49,1597.77,2133.48,0.00,48470.639014,48721.124196,3378779,3030022,0.000000,0.000030,63417334,30954304,0,0,77651,0,1,1 +1773668786.325078,0.65,4,3992.50,54.48,1598.26,2132.99,0.00,3517326900036.767578,3517326899786.386719,205,0,0.000000,0.000020,63417334,30954306,0,0,77653,0,1,1 +1773668791.324792,0.55,4,3992.50,54.48,1598.26,2132.99,0.00,48433.508278,48683.987480,3378779,3030027,0.000000,0.000030,63417334,30954309,0,0,77656,0,1,1 +1773668796.328161,0.75,4,3992.50,54.45,1599.55,2131.70,0.00,3516067515893.384766,3516067515652.280273,253,556,0.000000,0.000020,63417334,30954311,0,0,77658,0,1,1 +1773668801.323412,0.55,4,3992.50,54.45,1599.55,2131.70,0.00,3521782682670.894043,3521782682661.814453,75,0,0.000000,0.000030,63417334,30954314,0,0,77661,0,1,1 +1773668806.323430,1.10,4,3992.50,54.18,1605.46,2121.46,0.00,0.000000,0.000000,75,0,0.000000,0.000020,63417334,30954316,0,0,77663,0,1,1 +1773668811.326205,0.70,4,3992.50,54.18,1605.50,2121.40,0.00,48394.272459,48643.570616,3377276,3029495,0.000000,0.000673,63417334,30954323,0,0,77666,0,1,1 +1773668816.326623,0.70,4,3992.50,54.17,1606.01,2120.89,0.00,0.000000,0.008593,3377276,3029505,0.000459,0.000020,63417362,30954325,0,0,77668,0,1,1 +1773668821.327466,0.65,4,3992.50,54.17,1606.01,2120.89,0.00,0.000000,0.000781,3377276,3029506,0.000229,0.000030,63417375,30954328,0,0,77671,0,1,1 +1773668826.327422,0.75,4,3992.50,54.20,1604.79,2122.11,0.00,9.726256,10.678608,3378779,3030067,0.000227,0.000020,63417389,30954330,0,0,77673,0,1,1 +1773668831.326487,0.85,4,3992.50,54.16,1606.28,2120.62,0.00,3519095427662.965820,3519095427412.394043,205,0,0.002635,0.001714,63417449,30954378,0,0,77676,0,1,1 +1773668836.327789,0.80,4,3992.50,54.18,1608.07,2121.33,0.00,3517521228767.496094,0.000000,75,0,0.000000,0.000020,63417449,30954380,0,0,77678,0,1,1 +1773668841.323411,19.18,4,3992.50,55.43,1559.35,2170.05,0.00,3521520835645.921875,0.000000,11,0,40.101129,0.023224,63421881,30955922,0,0,77681,0,1,1 +1773668846.323501,0.85,4,3992.50,54.66,1589.32,2140.09,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63421881,30955924,0,0,77683,0,1,1 +1773668851.326204,0.65,4,3992.50,54.28,1604.20,2125.21,0.00,2.174215,0.000195,258,2,0.000000,0.000030,63421881,30955927,0,0,77686,0,1,1 +1773668856.328041,0.65,4,3992.50,54.09,1611.60,2117.81,0.00,3517144795337.565430,3517144795339.560059,205,0,0.000000,0.000020,63421881,30955929,0,0,77688,0,1,1 +1773668861.328175,0.65,4,3992.50,54.09,1611.60,2117.81,0.00,1.995064,0.000195,258,2,0.000000,0.000030,63421881,30955932,0,0,77691,0,1,1 +1773668866.324553,0.95,4,3992.50,54.42,1599.16,2130.54,0.00,3520987885742.003906,3520987885744.181152,11,0,0.000000,0.000020,63421881,30955934,0,0,77693,0,1,1 +1773668871.323477,0.65,4,3992.50,54.32,1602.47,2126.94,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63421881,30955937,0,0,77696,0,1,1 +1773668876.323450,0.65,4,3992.50,54.32,1602.81,2126.60,0.00,48421.443860,48671.114721,3377276,3029739,0.000081,0.000751,63421887,30955949,0,0,77698,0,1,1 +1773668881.323449,0.55,4,3992.50,54.32,1602.81,2126.60,0.00,3518437813484.072754,3518437813234.402832,11,0,0.000008,0.000038,63421888,30955953,0,0,77701,0,1,1 +1773668886.323633,0.65,4,3992.50,54.29,1603.80,2125.60,0.00,0.000000,0.000000,11,0,0.000157,0.000200,63421900,30955967,0,0,77703,0,1,1 +1773668891.327852,0.70,4,3992.50,54.27,1604.46,2124.95,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63421900,30955970,0,0,77706,0,1,1 +1773668896.327637,0.85,4,3992.50,54.10,1602.09,2118.25,0.00,0.180281,0.000000,205,0,0.000000,0.000020,63421900,30955972,0,0,77708,0,1,1 +1773668901.328180,0.50,4,3992.50,54.11,1601.92,2118.42,0.00,48425.469702,48676.296157,3378779,3030337,0.000000,0.000030,63421900,30955975,0,0,77711,0,1,1 +1773668906.328213,13.17,4,3992.50,53.93,1608.77,2111.55,0.00,3518413871367.190430,3518413871116.518555,11,0,40.065995,0.023536,63426311,30957495,0,0,77713,0,1,1 +1773668911.323439,0.55,4,3992.50,53.96,1607.73,2112.61,0.00,2.177470,0.000195,258,2,0.000000,0.000030,63426311,30957498,0,0,77716,0,1,1 +1773668916.323462,0.55,4,3992.50,53.96,1607.55,2112.79,0.00,48428.517716,48681.479365,3378779,3030471,0.000000,0.000020,63426311,30957500,0,0,77718,0,1,1 +1773668921.323426,0.65,4,3992.50,53.96,1607.55,2112.79,0.00,3518462101424.397461,3518462101182.625488,253,556,0.000000,0.000030,63426311,30957503,0,0,77721,0,1,1 +1773668926.328251,0.95,4,3992.50,54.21,1597.82,2122.57,0.00,3515045575852.848145,3515045575843.839844,11,0,0.000000,0.000020,63426311,30957505,0,0,77723,0,1,1 +1773668931.328357,0.60,4,3992.50,54.02,1605.23,2115.16,0.00,0.053514,0.000000,75,0,0.000000,0.000030,63426311,30957508,0,0,77726,0,1,1 +1773668936.328319,0.65,4,3992.50,54.03,1605.00,2115.38,0.00,3518464100504.266602,0.000000,11,0,0.000000,0.000020,63426311,30957510,0,0,77728,0,1,1 +1773668941.326791,0.75,4,3992.50,54.03,1605.00,2115.38,0.00,2.176056,0.000195,258,2,0.000000,0.000674,63426311,30957517,0,0,77731,0,1,1 +1773668946.327445,0.40,4,3992.50,54.04,1604.76,2115.62,0.00,0.000000,0.000000,258,2,0.000000,0.000020,63426311,30957519,0,0,77733,0,1,1 +1773668951.323443,0.65,4,3992.50,54.04,1604.76,2115.62,0.00,48467.530926,48720.827711,3378779,3030557,0.000157,0.000211,63426323,30957534,0,0,77736,0,1,1 +1773668956.323468,1.05,4,3992.50,54.23,1597.15,2123.20,0.00,0.000000,0.032812,3378779,3030573,0.000016,0.000049,63426325,30957539,0,0,77738,0,1,1 +1773668961.323812,0.60,4,3992.50,54.06,1603.76,2116.62,0.00,0.000000,0.010156,3378779,3030584,0.000000,0.000030,63426325,30957542,0,0,77741,0,1,1 +1773668966.326910,0.60,4,3992.50,54.06,1603.75,2116.62,0.00,0.000000,0.002342,3378779,3030587,0.000000,0.000020,63426325,30957544,0,0,77743,0,1,1 +1773668971.328138,12.63,4,3992.50,54.28,1595.36,2125.01,0.00,3517573918267.299805,3517573918014.222168,258,2,40.055279,0.024395,63430746,30959174,0,0,77746,0,1,1 +1773668976.327879,0.65,4,3992.50,54.28,1595.12,2125.24,0.00,48421.518056,48673.826336,3377276,3030151,0.000000,0.000020,63430746,30959176,0,0,77748,0,1,1 +1773668981.324361,0.55,4,3992.50,54.30,1594.39,2125.98,0.00,3520914406124.058105,3520914405873.761719,11,0,0.000000,0.000030,63430746,30959179,0,0,77751,0,1,1 +1773668986.328181,0.95,4,3992.50,54.32,1589.53,2126.61,0.00,1.656449,10.667045,253,556,0.000000,0.000020,63430746,30959181,0,0,77753,0,1,1 +1773668991.328325,0.50,4,3992.50,54.32,1589.57,2126.61,0.00,48427.858520,48670.007986,3378779,3030773,0.000000,0.000030,63430746,30959184,0,0,77756,0,1,1 +1773668996.327682,0.65,4,3992.50,54.32,1589.57,2126.61,0.00,3518889478505.854980,3518889478254.648926,11,0,0.000000,0.000020,63430746,30959186,0,0,77758,0,1,1 +1773669001.323480,0.85,4,3992.50,54.32,1589.36,2126.82,0.00,0.053561,0.000000,75,0,0.000000,0.000030,63430746,30959189,0,0,77761,0,1,1 +1773669006.328348,0.50,4,3992.50,54.32,1589.39,2126.79,0.00,2.119811,0.000195,258,2,0.000000,0.000663,63430746,30959195,0,0,77763,0,1,1 +1773669011.327759,0.55,4,3992.50,54.32,1589.39,2126.79,0.00,3518851689495.191406,3518851689497.313965,75,0,0.000000,0.000030,63430746,30959198,0,0,77766,0,1,1 +1773669016.326487,0.80,4,3992.50,54.41,1585.88,2130.44,0.00,0.126790,0.000000,205,0,0.000188,0.000226,63430760,30959214,0,0,77768,0,1,1 +1773669021.325695,0.60,4,3992.50,54.41,1585.85,2130.44,0.00,48438.411748,48689.908914,3378785,3030854,0.000008,0.000038,63430761,30959218,0,0,77771,0,1,1 +1773669026.323546,0.60,4,3992.50,54.41,1585.85,2130.44,0.00,3519949680015.481934,3519949679773.118652,253,556,0.000000,0.000020,63430761,30959220,0,0,77773,0,1,1 +1773669031.327456,0.60,4,3992.50,54.41,1585.85,2130.44,0.00,3515688211408.212891,3515688211399.202637,11,0,0.000000,0.000030,63430761,30959223,0,0,77776,0,1,1 +1773669036.326505,11.94,4,3992.50,54.23,1593.15,2123.12,0.00,0.053526,0.000000,75,0,40.072941,0.027105,63435199,30961067,0,0,77778,0,1,1 +1773669041.326240,0.55,4,3992.50,54.23,1593.16,2123.12,0.00,0.000000,0.000000,75,0,0.000000,0.000030,63435199,30961070,0,0,77781,0,1,1 +1773669046.328080,0.80,4,3992.50,54.23,1601.98,2123.29,0.00,3517142946001.876465,0.000000,11,0,0.000000,0.000020,63435199,30961072,0,0,77783,0,1,1 +1773669051.327570,0.70,4,3992.50,54.23,1601.79,2123.29,0.00,48426.135896,48676.728763,3377282,3030497,0.000000,0.000030,63435199,30961075,0,0,77786,0,1,1 +1773669056.323619,0.65,4,3992.50,54.24,1601.55,2123.49,0.00,9.733863,10.797985,3378785,3031079,0.000000,0.000020,63435199,30961077,0,0,77788,0,1,1 +1773669061.323490,0.65,4,3992.50,54.24,1601.59,2123.49,0.00,0.000000,0.008594,3378785,3031089,0.000000,0.000030,63435199,30961080,0,0,77791,0,1,1 +1773669066.328250,0.70,4,3992.50,54.25,1601.10,2123.98,0.00,3515091096729.048340,3515091096477.647949,11,0,0.000000,0.000020,63435199,30961082,0,0,77793,0,1,1 +1773669071.326553,0.65,4,3992.50,54.01,1610.55,2114.54,0.00,0.180335,0.000000,205,0,0.000512,0.001761,63435213,30961111,0,0,77796,0,1,1 +1773669076.328354,0.85,4,3992.50,54.42,1595.59,2130.49,0.00,0.000000,0.000000,205,0,0.000213,0.000560,63435221,30961125,0,0,77798,0,1,1 +1773669081.323995,0.65,4,3992.50,54.33,1598.82,2127.21,0.00,48463.261488,48714.403770,3377282,3030557,0.000188,0.000236,63435235,30961142,0,0,77801,0,1,1 +1773669086.327499,0.65,4,3992.50,54.34,1598.57,2127.46,0.00,3515972830577.511719,3515972830324.770508,258,2,0.000000,0.000020,63435235,30961144,0,0,77803,0,1,1 +1773669091.327967,0.55,4,3992.50,54.34,1598.57,2127.46,0.00,48424.215199,48678.073786,3378785,3031131,0.000000,0.000030,63435235,30961147,0,0,77806,0,1,1 +1773669096.325453,0.65,4,3992.50,54.34,1598.57,2127.46,0.00,3520207064946.922852,3520207064704.111328,253,556,0.000000,0.000020,63435235,30961149,0,0,77808,0,1,1 +1773669101.327545,12.80,4,3992.50,55.77,1542.54,2183.49,0.00,3516965683710.592285,3516965683701.525391,75,0,40.048059,0.023559,63439601,30962680,0,0,77811,0,1,1 +1773669106.323414,0.75,4,3992.50,55.16,1565.85,2159.57,0.00,0.126863,0.000000,205,0,0.000000,0.000020,63439601,30962682,0,0,77813,0,1,1 +1773669111.323407,0.55,4,3992.50,54.63,1585.90,2139.03,0.00,1.995120,0.000195,258,2,0.000000,0.000030,63439601,30962685,0,0,77816,0,1,1 +1773669116.328192,0.70,4,3992.50,54.54,1589.72,2135.21,0.00,3515073311139.835449,3515073311142.008789,11,0,0.000062,0.000070,63439605,30962691,0,0,77818,0,1,1 +1773669121.325736,0.55,4,3992.50,54.53,1590.15,2134.78,0.00,2.176460,0.000195,258,2,0.000039,0.000063,63439608,30962697,0,0,77821,0,1,1 +1773669126.326539,0.65,4,3992.50,54.51,1590.91,2134.02,0.00,48411.240200,48664.353154,3377282,3030770,0.000000,0.000020,63439608,30962699,0,0,77823,0,1,1 +1773669131.323418,0.70,4,3992.50,54.52,1590.54,2134.39,0.00,3520635195817.357910,3520635195566.168945,75,0,0.003153,0.002516,63439662,30962741,0,0,77826,0,1,1 +1773669136.326917,0.80,4,3992.50,54.58,1590.83,2136.99,0.00,48387.271028,48638.175003,3377282,3030794,0.000000,0.000663,63439662,30962747,0,0,77828,0,1,1 +1773669141.327555,0.50,4,3992.50,54.47,1595.25,2132.45,0.00,3517988490282.091309,3517988490030.917480,205,0,0.000000,0.000030,63439662,30962750,0,0,77831,0,1,1 +1773669146.327847,0.60,4,3992.50,54.47,1595.12,2132.57,0.00,3518231310024.770020,0.000000,11,0,0.000107,0.000138,63439670,30962760,0,0,77833,0,1,1 +1773669151.326918,0.70,4,3992.50,54.47,1595.12,2132.57,0.00,48439.918439,48691.956185,3378785,3031367,0.000000,0.000030,63439670,30962763,0,0,77836,0,1,1 +1773669156.323428,0.55,4,3992.50,54.40,1597.70,2129.99,0.00,3520895331270.491211,3520895331018.324219,11,0,0.000000,0.000020,63439670,30962765,0,0,77838,0,1,1 +1773669161.323501,0.65,4,3992.50,54.45,1596.00,2131.70,0.00,0.053515,0.000000,75,0,0.000000,0.000030,63439670,30962768,0,0,77841,0,1,1 +1773669166.323537,17.00,4,3992.50,54.35,1596.93,2128.11,0.00,1.604188,10.675117,253,556,40.065701,0.024856,63444158,30964455,0,0,77843,0,1,1 +1773669171.323421,0.80,4,3992.50,54.36,1596.71,2128.33,0.00,48430.386797,48673.550752,3378785,3031522,0.000627,0.000290,63444171,30964466,0,0,77846,0,1,1 +1773669176.323665,0.70,4,3992.50,54.36,1596.71,2128.33,0.00,3518265682296.061035,3518265682041.722656,258,2,0.000081,0.000107,63444177,30964474,0,0,77848,0,1,1 +1773669181.328025,0.60,4,3992.50,54.36,1596.72,2128.33,0.00,48386.548544,48640.700549,3378785,3031550,0.000000,0.000030,63444177,30964477,0,0,77851,0,1,1 +1773669186.323474,0.65,4,3992.50,54.36,1596.72,2128.32,0.00,3521642490950.206055,3521642490949.258301,3377282,3030995,0.000000,0.000020,63444177,30964479,0,0,77853,0,1,1 +1773669191.323452,0.60,4,3992.50,54.17,1604.21,2120.85,0.00,3518452728210.124512,3518452727956.696289,258,2,0.000000,0.000030,63444177,30964482,0,0,77856,0,1,1 +1773669196.323503,1.10,4,3992.50,54.38,1593.05,2128.97,0.00,48428.252653,48682.686990,3378785,3031582,0.000000,0.000020,63444177,30964484,0,0,77858,0,1,1 +1773669201.327878,0.60,4,3992.50,54.38,1593.05,2128.92,0.00,3515361217187.233398,3515361217186.305176,3377282,3031044,0.000000,0.000673,63444177,30964491,0,0,77861,0,1,1 +1773669206.323693,0.60,4,3992.50,54.38,1592.84,2129.13,0.00,3521384253427.631348,3521384253185.112793,253,556,0.000000,0.000020,63444177,30964493,0,0,77863,0,1,1 +1773669211.327370,0.80,4,3992.50,54.39,1592.37,2129.61,0.00,48383.952180,48626.096466,3377282,3031051,0.000132,0.000179,63444187,30964506,0,0,77866,0,1,1 +1773669216.323425,0.70,4,3992.50,54.20,1600.02,2121.96,0.00,9.733854,10.688513,3378785,3031613,0.000041,0.000067,63444191,30964512,0,0,77868,0,1,1 +1773669221.323624,0.60,4,3992.50,54.20,1599.77,2122.20,0.00,3518296339937.616211,3518296339685.332520,11,0,0.000000,0.000030,63444191,30964515,0,0,77871,0,1,1 +1773669226.327957,0.95,4,3992.50,54.20,1607.40,2122.17,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63444191,30964517,0,0,77873,0,1,1 +1773669231.328047,13.01,4,3992.50,54.09,1611.56,2117.88,0.00,0.053515,0.000000,75,0,40.065139,0.023910,63448608,30966096,0,0,77876,0,1,1 +1773669236.327872,0.65,4,3992.50,54.11,1611.10,2118.36,0.00,48432.564062,48685.074776,3378785,3031770,0.000008,0.000028,63448609,30966099,0,0,77878,0,1,1 +1773669241.328296,0.65,4,3992.50,54.11,1611.10,2118.36,0.00,3518138431096.384766,3518138430843.904297,75,0,0.000000,0.000030,63448609,30966102,0,0,77881,0,1,1 +1773669246.328150,0.70,4,3992.50,54.11,1611.10,2118.36,0.00,0.126762,0.000000,205,0,0.000000,0.000020,63448609,30966104,0,0,77883,0,1,1 +1773669251.327784,0.50,4,3992.50,54.11,1611.10,2118.36,0.00,48434.279611,48686.934510,3378785,3031778,0.000000,0.000030,63448609,30966107,0,0,77886,0,1,1 +1773669256.327408,0.90,4,3992.50,54.15,1611.70,2120.07,0.00,3518701654785.118164,3518701654784.239258,3377282,3031246,0.000000,0.000020,63448609,30966109,0,0,77888,0,1,1 +1773669261.323455,0.60,4,3992.50,54.15,1610.73,2120.03,0.00,0.000000,0.039875,3377282,3031285,0.000000,0.000030,63448609,30966112,0,0,77891,0,1,1 +1773669266.328226,0.75,4,3992.50,54.15,1610.73,2120.02,0.00,3515083061177.041992,3515083060923.491211,258,2,0.000000,0.000663,63448609,30966118,0,0,77893,0,1,1 +1773669271.327681,0.60,4,3992.50,54.15,1610.74,2120.02,0.00,3518820806093.559082,3518820806095.734863,11,0,0.000000,0.000030,63448609,30966121,0,0,77896,0,1,1 +1773669276.328188,0.65,4,3992.50,54.15,1610.74,2120.02,0.00,0.053510,0.000000,75,0,0.000157,0.000200,63448621,30966135,0,0,77898,0,1,1 +1773669281.327851,0.65,4,3992.50,54.15,1610.74,2120.02,0.00,0.126766,0.000000,205,0,0.000016,0.000046,63448623,30966140,0,0,77901,0,1,1 +1773669286.328284,0.95,4,3992.50,54.15,1615.86,2119.99,0.00,0.000000,0.000000,205,0,0.000000,0.000020,63448623,30966142,0,0,77903,0,1,1 +1773669291.326180,0.70,4,3992.50,54.15,1615.46,2119.99,0.00,3519918507452.249512,0.000000,11,0,0.000000,0.000030,63448623,30966145,0,0,77906,0,1,1 +1773669296.327824,14.66,4,3992.50,53.87,1626.24,2109.19,0.00,0.180214,0.000000,205,0,40.051008,0.021814,63452981,30967608,0,0,77908,0,1,1 +1773669301.327458,0.80,4,3992.50,53.93,1623.79,2111.65,0.00,48424.556108,48676.540273,3377282,3031450,0.000008,0.000038,63452982,30967612,0,0,77911,0,1,1 +1773669306.327618,0.70,4,3992.50,53.94,1623.55,2111.88,0.00,9.725861,10.714110,3378785,3032015,0.000000,0.000020,63452982,30967614,0,0,77913,0,1,1 +1773669311.327747,0.65,4,3992.50,53.94,1623.56,2111.88,0.00,3518346066955.919922,3518346066712.169922,253,556,0.000000,0.000030,63452982,30967617,0,0,77916,0,1,1 +1773669316.328206,0.95,4,3992.50,53.94,1624.66,2111.91,0.00,3518114837686.358398,3518114837677.341797,11,0,0.000000,0.000020,63452982,30967619,0,0,77918,0,1,1 +1773669321.327609,0.55,4,3992.50,53.99,1622.86,2113.72,0.00,0.053522,0.000000,75,0,0.000000,0.000030,63452982,30967622,0,0,77921,0,1,1 +1773669326.327406,0.65,4,3992.50,53.99,1622.86,2113.72,0.00,0.000000,0.000000,75,0,0.000000,0.000020,63452982,30967624,0,0,77923,0,1,1 +1773669331.326142,0.70,4,3992.50,53.99,1622.86,2113.72,0.00,0.000000,0.000000,75,0,0.000000,0.000674,63452982,30967631,0,0,77926,0,1,1 +1773669336.323546,0.65,4,3992.50,53.99,1622.86,2113.72,0.00,3520265018487.370605,0.000000,11,0,0.000000,0.000020,63452982,30967633,0,0,77928,0,1,1 +1773669341.327722,0.65,4,3992.50,53.99,1622.64,2113.93,0.00,0.000000,0.000000,11,0,0.000157,0.000210,63452994,30967648,0,0,77931,0,1,1 +1773669346.323423,0.95,4,3992.50,54.39,1609.20,2129.39,0.00,0.053562,0.000000,75,0,0.000016,0.000073,63452996,30967653,0,0,77933,0,1,1 +1773669351.328387,0.65,4,3992.50,54.16,1616.06,2120.52,0.00,3514947929212.681641,0.000000,11,0,0.000000,0.000030,63452996,30967656,0,0,77936,0,1,1 +1773669356.327839,0.70,4,3992.50,54.16,1616.07,2120.52,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63452996,30967658,0,0,77938,0,1,1 +1773669361.323919,16.44,4,3992.50,54.35,1608.61,2127.95,0.00,2.177098,0.000195,258,2,40.097715,0.029316,63457411,30969749,0,0,77941,0,1,1 +1773669366.324465,0.85,4,3992.50,54.35,1608.64,2127.93,0.00,3518052823615.127441,3518052823617.249023,75,0,0.003092,0.001449,63457468,30969790,0,0,77943,0,1,1 +1773669371.323423,0.65,4,3992.50,54.36,1608.39,2128.17,0.00,3519170527303.118652,0.000000,11,0,0.001434,0.001787,63457484,30969818,0,0,77946,0,1,1 +1773669376.324184,0.85,4,3992.50,54.59,1599.10,2137.45,0.00,2.175059,0.000195,258,2,0.000205,0.000552,63457491,30969831,0,0,77948,0,1,1 +1773669381.323499,0.60,4,3992.50,54.51,1602.24,2134.32,0.00,3518919471869.814453,10.676463,253,556,0.000000,0.000030,63457491,30969834,0,0,77951,0,1,1 +1773669386.326621,0.55,4,3992.50,54.53,1601.51,2135.05,0.00,3516241877724.354980,3516241877715.343750,11,0,0.000000,0.000020,63457491,30969836,0,0,77953,0,1,1 +1773669391.328140,0.60,4,3992.50,54.54,1601.26,2135.30,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63457491,30969839,0,0,77956,0,1,1 +1773669396.328152,0.65,4,3992.50,54.54,1601.04,2135.52,0.00,0.000000,0.000000,11,0,0.000000,0.000664,63457491,30969845,0,0,77958,0,1,1 +1773669401.324780,0.60,4,3992.50,54.54,1601.04,2135.52,0.00,2.176859,0.000195,258,2,0.000000,0.000030,63457491,30969848,0,0,77961,0,1,1 +1773669406.323502,1.00,4,3992.50,54.34,1604.66,2127.42,0.00,3519336492265.281738,3519336492267.457520,11,0,0.000056,0.000076,63457495,30969854,0,0,77963,0,1,1 +1773669411.328321,0.65,4,3992.50,54.14,1610.16,2119.80,0.00,1.656119,10.664917,253,556,0.000109,0.000162,63457504,30969866,0,0,77966,0,1,1 +1773669416.327837,0.60,4,3992.50,54.18,1608.71,2121.24,0.00,48424.214683,48667.541912,3377282,3031859,0.000062,0.000070,63457508,30969872,0,0,77968,0,1,1 +1773669421.328369,1.20,4,3992.50,53.99,1616.11,2113.84,0.00,3518063059486.838379,3518063059234.543945,11,0,0.000031,0.000055,63457510,30969877,0,0,77971,0,1,1 +1773669426.328096,11.99,4,3992.50,54.16,1609.28,2120.67,0.00,0.000000,0.000000,11,0,40.064090,0.022643,63461785,30971380,0,0,77973,0,1,1 +1773669431.324677,1.05,4,3992.50,53.92,1618.74,2111.18,0.00,48455.156088,48706.933155,3377344,3031990,0.005578,0.003012,63461893,30971458,0,0,77976,0,1,1 +1773669436.323554,1.10,4,3992.50,54.21,1607.51,2122.46,0.00,0.000000,0.068765,3377344,3032019,0.000000,0.000020,63461893,30971460,0,0,77978,0,1,1 +1773669441.323502,0.60,4,3992.50,54.21,1607.51,2122.46,0.00,3518474392253.685059,3518474392001.828613,205,0,0.000000,0.000030,63461893,30971463,0,0,77981,0,1,1 +1773669446.323502,0.55,4,3992.50,54.21,1607.51,2122.45,0.00,3518436994962.049805,0.000000,11,0,0.000000,0.000020,63461893,30971465,0,0,77983,0,1,1 +1773669451.324399,0.80,4,3992.50,54.21,1607.52,2122.45,0.00,0.180241,0.000000,205,0,0.000000,0.000030,63461893,30971468,0,0,77986,0,1,1 +1773669456.323724,0.70,4,3992.50,54.21,1607.52,2122.45,0.00,48428.377035,48680.310268,3377344,3032065,0.000000,0.000020,63461893,30971470,0,0,77988,0,1,1 +1773669461.328168,0.65,4,3992.50,54.21,1607.52,2122.44,0.00,3515312007309.117676,3515312007057.568848,75,0,0.000000,0.000512,63461893,30971476,0,0,77991,0,1,1 +1773669466.323840,0.80,4,3992.50,54.30,1606.21,2126.09,0.00,48473.657951,48726.636149,3378847,3032640,0.000000,0.000181,63461893,30971479,0,0,77993,0,1,1 +1773669471.326583,0.55,4,3992.50,54.25,1605.92,2124.16,0.00,3516507670276.969727,3516507670033.415527,253,556,0.000031,0.000055,63461895,30971484,0,0,77996,0,1,1 +1773669476.323507,0.65,4,3992.50,54.23,1606.78,2123.32,0.00,48459.909138,48703.756711,3378850,3032657,0.000215,0.000271,63461912,30971503,0,0,77998,0,1,1 +1773669481.323499,0.65,4,3992.50,54.24,1606.54,2123.57,0.00,3518442720999.979492,3518442720756.281738,253,556,0.000000,0.000030,63461912,30971506,0,0,78001,0,1,1 +1773669486.323409,0.65,4,3992.50,54.24,1606.54,2123.56,0.00,48421.249605,48664.006259,3377347,3032104,0.000000,0.000020,63461912,30971508,0,0,78003,0,1,1 +1773669491.323506,13.83,4,3992.50,55.97,1538.79,2191.27,0.00,3518368891438.549805,3518368891186.785156,11,0,40.062810,0.022366,63466344,30973069,0,0,78006,0,1,1 +1773669496.324292,1.00,4,3992.50,55.31,1570.31,2165.67,0.00,1.657454,10.673516,253,556,0.003105,0.001547,63466402,30973109,0,0,78008,0,1,1 +1773669501.327599,0.60,4,3992.50,54.69,1594.61,2141.37,0.00,3516112103804.933594,3516112103795.868652,75,0,0.000000,0.000030,63466402,30973112,0,0,78011,0,1,1 +1773669506.327801,0.60,4,3992.50,54.54,1600.79,2135.19,0.00,1.604134,10.674763,253,556,0.000000,0.000020,63466402,30973114,0,0,78013,0,1,1 +1773669511.327194,0.70,4,3992.50,54.54,1600.77,2135.21,0.00,48435.972835,48679.902135,3378850,3032851,0.000000,0.000030,63466402,30973117,0,0,78016,0,1,1 +1773669516.327991,0.65,4,3992.50,54.54,1600.77,2135.21,0.00,3517876484111.709473,3517876483858.832520,11,0,0.000000,0.000020,63466402,30973119,0,0,78018,0,1,1 +1773669521.324209,0.55,4,3992.50,54.33,1608.73,2127.25,0.00,1.658970,10.683278,253,556,0.000000,0.000030,63466402,30973122,0,0,78021,0,1,1 +1773669526.328294,0.95,4,3992.50,54.54,1601.30,2135.21,0.00,48390.558699,48634.308467,3378850,3032871,0.000000,0.000663,63466402,30973128,0,0,78023,0,1,1 +1773669531.327776,0.75,4,3992.50,54.54,1601.32,2135.21,0.00,3518801402003.540039,3518801402002.595215,3377347,3032317,0.000000,0.000030,63466402,30973131,0,0,78026,0,1,1 +1773669536.323432,0.70,4,3992.50,54.34,1608.96,2127.56,0.00,3521496996949.114746,3521496996696.873535,11,0,0.000031,0.000045,63466404,30973135,0,0,78028,0,1,1 +1773669541.327506,0.65,4,3992.50,54.35,1608.50,2128.03,0.00,2.173619,0.000195,258,2,0.000142,0.000201,63466416,30973150,0,0,78031,0,1,1 +1773669546.323444,0.65,4,3992.50,54.35,1608.50,2128.03,0.00,3521297844345.165527,3521297844347.289062,75,0,0.000000,0.000020,63466416,30973152,0,0,78033,0,1,1 +1773669551.323428,0.75,4,3992.50,54.35,1608.50,2128.02,0.00,1.604204,10.675230,253,556,0.000000,0.000030,63466416,30973155,0,0,78036,0,1,1 +1773669556.328056,15.40,4,3992.50,58.86,1424.44,2304.49,0.00,3515183845771.119141,3515183845762.110352,11,0,34.022347,0.024201,63470121,30974833,0,0,78038,0,1,1 +1773669561.327399,0.95,4,3992.50,54.09,1611.31,2117.66,0.00,0.000000,0.000000,11,0,6.013113,0.005670,63470819,30975180,0,0,78041,0,1,1 +1773669566.324563,0.70,4,3992.50,54.09,1611.30,2117.68,0.00,2.176625,0.000195,258,2,0.000000,0.000020,63470819,30975182,0,0,78043,0,1,1 +1773669571.323632,0.65,4,3992.50,54.11,1610.58,2118.42,0.00,3519092280870.924316,3519092280873.100098,11,0,0.000000,0.000030,63470819,30975185,0,0,78046,0,1,1 +1773669576.327836,0.65,4,3992.50,54.11,1610.58,2118.41,0.00,48381.344766,48633.352581,3377347,3032509,0.000000,0.000020,63470819,30975187,0,0,78048,0,1,1 +1773669581.327489,0.75,4,3992.50,54.11,1610.59,2118.41,0.00,3518681711655.257812,3518681711402.840332,205,0,0.000000,0.000030,63470819,30975190,0,0,78051,0,1,1 +1773669586.327903,0.90,4,3992.50,54.16,1602.07,2120.31,0.00,3518145826194.939941,0.000000,75,0,0.000000,0.000020,63470819,30975192,0,0,78053,0,1,1 +1773669591.323598,0.60,4,3992.50,54.16,1602.02,2120.31,0.00,3521469222759.990723,0.000000,11,0,0.000000,0.000352,63470819,30975197,0,0,78056,0,1,1 +1773669596.323592,0.75,4,3992.50,53.96,1609.66,2112.66,0.00,48431.812251,48685.087749,3378850,3033129,0.000000,0.000342,63470819,30975201,0,0,78058,0,1,1 +1773669601.328116,1.20,4,3992.50,53.98,1608.96,2113.36,0.00,3515256659574.408203,3515256659321.361816,11,0,0.000031,0.000055,63470821,30975206,0,0,78061,0,1,1 +1773669606.327420,0.75,4,3992.50,53.98,1608.96,2113.36,0.00,0.000000,0.000000,11,0,0.000142,0.000191,63470833,30975220,0,0,78063,0,1,1 +1773669611.327474,0.90,4,3992.50,53.98,1608.96,2113.36,0.00,48421.511962,48673.919623,3377347,3032643,0.000000,0.000030,63470833,30975223,0,0,78066,0,1,1 +1773669616.328289,1.10,4,3992.50,53.94,1609.36,2111.86,0.00,3517863446886.825684,3517863446634.275879,205,0,0.000000,0.000020,63470833,30975225,0,0,78068,0,1,1 +1773669621.327585,15.99,4,3992.50,53.97,1608.05,2113.14,0.00,48438.396902,48692.021982,3378850,3033249,40.070664,0.023225,63475285,30976842,0,0,78071,0,1,1 +1773669626.328287,1.20,4,3992.50,54.02,1606.37,2114.84,0.00,3517943346744.043457,3517943346490.490234,205,0,0.003084,0.001428,63475341,30976881,0,0,78073,0,1,1 +1773669631.323417,0.85,4,3992.50,53.71,1618.44,2102.77,0.00,48478.790825,48732.661230,3378850,3033287,0.000000,0.000030,63475341,30976884,0,0,78076,0,1,1 +1773669636.327715,0.90,4,3992.50,53.67,1619.75,2101.46,0.00,3515415204782.221680,3515415204528.816406,205,0,0.000000,0.000020,63475341,30976886,0,0,78078,0,1,1 +1773669641.325651,0.60,4,3992.50,53.71,1618.30,2102.89,0.00,3519890435776.181152,0.000000,11,0,0.000000,0.000030,63475341,30976889,0,0,78081,0,1,1 +1773669646.327729,1.10,4,3992.50,54.15,1601.09,2120.12,0.00,48411.628983,48665.045412,3378850,3033321,0.000000,0.000020,63475341,30976891,0,0,78083,0,1,1 +1773669651.328374,0.70,4,3992.50,54.09,1603.41,2117.69,0.00,0.000000,0.101549,3378850,3033423,0.000000,0.000030,63475341,30976894,0,0,78086,0,1,1 +1773669656.328199,0.55,4,3992.50,54.08,1603.63,2117.47,0.00,3518560284024.094238,3518560283770.408203,75,0,0.000000,0.000020,63475341,30976896,0,0,78088,0,1,1 +1773669661.325391,0.65,4,3992.50,54.08,1603.83,2117.25,0.00,48449.186348,48702.087277,3377347,3032886,0.000000,0.000674,63475341,30976903,0,0,78091,0,1,1 +1773669666.323543,0.50,4,3992.50,54.08,1603.62,2117.47,0.00,0.000000,0.002345,3377347,3032889,0.000056,0.000076,63475345,30976909,0,0,78093,0,1,1 +1773669671.328352,0.65,4,3992.50,54.08,1603.63,2117.47,0.00,3515055957132.056641,3515055956879.411621,205,0,0.001541,0.001917,63475370,30976946,0,0,78096,0,1,1 +1773669676.327578,1.15,4,3992.50,54.37,1598.73,2128.75,0.00,1.995426,0.000195,258,2,0.000205,0.000552,63475377,30976959,0,0,78098,0,1,1 +1773669681.327494,0.65,4,3992.50,54.37,1598.73,2128.75,0.00,3518496121172.858887,3518496121174.854492,205,0,0.000000,0.000030,63475377,30976962,0,0,78101,0,1,1 +1773669686.327696,11.13,4,3992.50,54.24,1603.98,2123.49,0.00,3518295216117.422852,0.000000,75,0,40.063894,0.022990,63479842,30978511,0,0,78103,0,1,1 +1773669691.323500,0.90,4,3992.50,54.30,1601.54,2125.93,0.00,2.123657,0.000195,258,2,0.000868,0.000599,63479861,30978527,0,0,78106,0,1,1 +1773669696.327875,0.60,4,3992.50,54.11,1608.94,2118.54,0.00,0.000000,0.000000,258,2,0.000000,0.000020,63479861,30978529,0,0,78108,0,1,1 +1773669701.328356,0.65,4,3992.50,54.12,1608.69,2118.78,0.00,3518098708681.245117,3518098708683.366699,75,0,0.000000,0.000030,63479861,30978532,0,0,78111,0,1,1 +1773669706.325327,1.10,4,3992.50,54.41,1597.14,2130.33,0.00,0.000000,0.000000,75,0,0.000000,0.000020,63479861,30978534,0,0,78113,0,1,1 +1773669711.327989,0.65,4,3992.50,54.08,1610.22,2117.23,0.00,2.120746,0.000195,258,2,0.000000,0.000030,63479861,30978537,0,0,78116,0,1,1 +1773669716.326912,0.80,4,3992.50,54.11,1608.97,2118.49,0.00,3519194708505.298340,10.677298,253,556,0.000062,0.000070,63479865,30978543,0,0,78118,0,1,1 +1773669721.325678,0.55,4,3992.50,54.11,1608.97,2118.49,0.00,48442.145483,48687.065256,3378887,3033699,0.000039,0.000063,63479868,30978549,0,0,78121,0,1,1 +1773669726.327785,0.70,4,3992.50,54.11,1608.98,2118.48,0.00,3516954872997.994629,3516954872744.224609,11,0,0.000000,0.000663,63479868,30978555,0,0,78123,0,1,1 +1773669731.327798,0.90,4,3992.50,54.16,1607.02,2120.45,0.00,1.657710,10.675167,253,556,0.003895,0.003518,63479930,30978605,0,0,78126,0,1,1 +1773669736.327549,0.80,4,3992.50,54.25,1595.09,2124.10,0.00,3518612590607.508301,3518612590598.490723,11,0,0.000063,0.000082,63479935,30978611,0,0,78128,0,1,1 +1773669741.327557,0.75,4,3992.50,54.23,1596.11,2123.07,0.00,48431.761592,48685.727012,3378887,3033764,0.000000,0.000030,63479935,30978614,0,0,78131,0,1,1 +1773669746.327927,0.65,4,3992.50,54.23,1595.87,2123.30,0.00,3518176579666.815918,3518176579412.688477,205,0,0.000000,0.000020,63479935,30978616,0,0,78133,0,1,1 +1773669751.327065,12.98,4,3992.50,58.95,1411.15,2308.00,0.00,3519043744224.686523,0.000000,11,0,40.067936,0.021864,63484233,30980157,0,0,78136,0,1,1 +1773669756.327503,0.85,4,3992.50,54.17,1598.39,2120.78,0.00,48417.874933,48670.985206,3377384,3033334,0.003377,0.001674,63484311,30980215,0,0,78138,0,1,1 +1773669761.327976,0.65,4,3992.50,53.91,1608.42,2110.75,0.00,0.000000,0.003906,3377384,3033337,0.000000,0.000030,63484311,30980218,0,0,78141,0,1,1 +1773669766.323412,0.85,4,3992.50,54.02,1604.27,2114.89,0.00,0.000000,0.063339,3377384,3033364,0.000000,0.000020,63484311,30980220,0,0,78143,0,1,1 +1773669771.323494,0.65,4,3992.50,53.95,1606.92,2112.25,0.00,0.000000,0.003125,3377384,3033368,0.000000,0.000030,63484311,30980223,0,0,78146,0,1,1 +1773669776.324377,0.75,4,3992.50,53.91,1608.62,2110.55,0.00,9.724455,10.702407,3378887,3033957,0.000081,0.000107,63484317,30980231,0,0,78148,0,1,1 +1773669781.325753,0.80,4,3992.50,53.95,1606.93,2112.24,0.00,3517468879237.758301,3517468879236.818359,3377384,3033405,0.000008,0.000038,63484318,30980235,0,0,78151,0,1,1 +1773669786.327391,0.65,4,3992.50,53.95,1606.93,2112.23,0.00,3517285177111.685059,3517285176856.352051,258,2,0.000000,0.000020,63484318,30980237,0,0,78153,0,1,1 +1773669791.323426,0.75,4,3992.50,53.95,1606.93,2112.23,0.00,3521229659498.998047,10.683472,253,556,0.000000,0.000674,63484318,30980244,0,0,78156,0,1,1 +1773669796.327414,0.95,4,3992.50,54.02,1611.22,2114.99,0.00,48381.867182,48625.935124,3377384,3033425,0.000056,0.000076,63484322,30980250,0,0,78158,0,1,1 +1773669801.327817,0.65,4,3992.50,53.95,1613.84,2112.15,0.00,0.000000,0.011718,3377384,3033439,0.000101,0.000154,63484330,30980261,0,0,78161,0,1,1 +1773669806.327781,0.75,4,3992.50,53.97,1613.10,2112.89,0.00,9.726242,10.677812,3378887,3034000,0.000000,0.000020,63484330,30980263,0,0,78163,0,1,1 +1773669811.327583,0.80,4,3992.50,53.97,1612.88,2113.11,0.00,3518576236399.396973,3518576236145.143555,11,0,0.000000,0.000030,63484330,30980266,0,0,78166,0,1,1 +1773669816.327805,12.90,4,3992.50,59.03,1414.64,2311.33,0.00,2.175294,0.000195,258,2,32.849928,0.019751,63487895,30981601,0,0,78168,0,1,1 +1773669821.328148,1.10,4,3992.50,55.15,1566.70,2159.29,0.00,48416.615269,48672.183871,3377384,3033574,7.212869,0.003194,63488723,30981781,0,0,78171,0,1,1 +1773669826.327364,1.00,4,3992.50,54.81,1580.14,2145.84,0.00,9.727698,10.745045,3378887,3034160,0.000000,0.000020,63488723,30981783,0,0,78173,0,1,1 +1773669831.327427,0.75,4,3992.50,54.52,1591.48,2134.50,0.00,3518392820259.859375,3518392820003.259277,258,2,0.000000,0.000030,63488723,30981786,0,0,78176,0,1,1 +1773669836.327458,0.65,4,3992.50,54.52,1591.42,2134.57,0.00,3518415366558.429199,3518415366560.604492,11,0,0.000000,0.000020,63488723,30981788,0,0,78178,0,1,1 +1773669841.327481,0.70,4,3992.50,54.36,1597.60,2128.39,0.00,48431.615290,48686.078182,3378887,3034197,0.000000,0.000030,63488723,30981791,0,0,78181,0,1,1 +1773669846.325577,0.65,4,3992.50,54.38,1596.86,2129.12,0.00,3519777577635.678711,3519777577380.937500,205,0,0.000000,0.000020,63488723,30981793,0,0,78183,0,1,1 +1773669851.323536,0.75,4,3992.50,54.38,1596.86,2129.12,0.00,48441.704274,48695.510802,3377384,3033647,0.000000,0.000030,63488723,30981796,0,0,78186,0,1,1 +1773669856.327668,1.05,4,3992.50,54.29,1602.33,2125.38,0.00,3515531458401.467773,3515531458147.974609,205,0,0.000000,0.000663,63488723,30981802,0,0,78188,0,1,1 +1773669861.328323,0.75,4,3992.50,54.29,1600.35,2125.38,0.00,1.477248,10.673798,253,556,0.000087,0.000111,63488729,30981811,0,0,78191,0,1,1 +1773669866.328038,0.70,4,3992.50,54.29,1600.34,2125.38,0.00,3518637808534.189453,3518637808525.171387,11,0,0.000109,0.000152,63488738,30981822,0,0,78193,0,1,1 +1773669871.328026,0.75,4,3992.50,54.29,1600.11,2125.61,0.00,48422.230645,48675.808611,3377384,3033683,0.000000,0.000030,63488738,30981825,0,0,78196,0,1,1 +1773669876.327587,0.65,4,3992.50,53.90,1615.39,2110.33,0.00,0.000000,0.009376,3377384,3033691,0.000000,0.000020,63488738,30981827,0,0,78198,0,1,1 +1773669881.328009,14.36,4,3992.50,58.80,1423.60,2302.09,0.00,3518140359585.932617,3518140359332.367188,11,0,21.036082,0.016712,63491219,30982909,0,0,78201,0,1,1 +1773669886.328024,3.00,4,3992.50,55.38,1557.47,2168.21,0.00,0.000000,0.000000,11,0,19.032201,0.010039,63493327,30983598,0,0,78203,0,1,1 +1773669891.326335,0.65,4,3992.50,54.91,1576.02,2149.67,0.00,48438.472220,48692.373993,3377384,3033913,0.000000,0.000030,63493327,30983601,0,0,78206,0,1,1 +1773669896.328119,0.70,4,3992.50,54.42,1595.02,2130.67,0.00,3517182172883.452148,3517182172629.726562,11,0,0.000000,0.000020,63493327,30983603,0,0,78208,0,1,1 +1773669901.328317,0.95,4,3992.50,54.40,1595.77,2129.92,0.00,1.657649,10.674773,253,556,0.000000,0.000030,63493327,30983606,0,0,78211,0,1,1 +1773669906.325209,0.70,4,3992.50,54.29,1600.02,2125.67,0.00,0.000000,0.000000,253,556,0.000000,0.000020,63493327,30983608,0,0,78213,0,1,1 +1773669911.327785,0.75,4,3992.50,54.32,1598.80,2126.89,0.00,0.000000,0.000000,253,556,0.000000,0.000030,63493327,30983611,0,0,78216,0,1,1 +1773669916.326373,0.95,4,3992.50,54.33,1598.82,2127.08,0.00,48434.138790,48679.087002,3377384,3033973,0.000000,0.000020,63493327,30983613,0,0,78218,0,1,1 +1773669921.325824,0.60,4,3992.50,53.93,1614.50,2111.34,0.00,3518823825715.587402,3518823825459.487793,258,2,0.000000,0.000674,63493327,30983620,0,0,78221,0,1,1 +1773669926.328063,0.55,4,3992.50,53.97,1612.79,2113.05,0.00,48398.259300,48654.238205,3377384,3033993,0.000031,0.000045,63493329,30983624,0,0,78223,0,1,1 +1773669931.325706,0.65,4,3992.50,53.98,1612.33,2113.51,0.00,3520096725550.955078,3520096725296.736816,205,0,0.000142,0.000201,63493341,30983639,0,0,78226,0,1,1 +1773669936.323429,0.70,4,3992.50,53.98,1612.32,2113.53,0.00,1.478114,10.680058,253,556,0.000000,0.000020,63493341,30983641,0,0,78228,0,1,1 +1773669941.327493,0.60,4,3992.50,53.98,1612.32,2113.53,0.00,48390.853163,48636.516111,3378887,3034563,0.000000,0.000030,63493341,30983644,0,0,78231,0,1,1 +1773669946.328562,10.28,4,3992.50,59.10,1404.06,2313.78,0.00,3517685113725.418945,3517685113724.538086,3377384,3034055,18.227077,0.013500,63495451,30984550,0,0,78233,0,1,1 +1773669951.327679,2.81,4,3992.50,54.55,1582.20,2135.65,0.00,9.727889,10.776805,3378887,3034719,21.837836,0.009900,63497763,30985195,0,0,78236,0,1,1 +1773669956.328104,0.65,4,3992.50,54.03,1602.64,2115.20,0.00,3518137692350.881348,3518137692104.872070,253,556,0.000000,0.000020,63497763,30985197,0,0,78238,0,1,1 +1773669961.327681,0.65,4,3992.50,54.04,1602.18,2115.66,0.00,0.000000,0.000000,253,556,0.000000,0.000030,63497763,30985200,0,0,78241,0,1,1 +1773669966.324703,0.60,4,3992.50,54.04,1601.95,2115.90,0.00,3520533866346.358887,3520533866337.155762,205,0,0.000000,0.000020,63497763,30985202,0,0,78243,0,1,1 +1773669971.327296,0.60,4,3992.50,54.04,1601.95,2115.90,0.00,3516613882564.393555,0.000000,75,0,0.000512,0.001116,63497777,30985227,0,0,78246,0,1,1 +1773669976.327365,0.75,4,3992.50,54.04,1605.24,2115.82,0.00,0.126756,0.000000,205,0,0.000213,0.000560,63497785,30985241,0,0,78248,0,1,1 +1773669981.323616,0.60,4,3992.50,53.95,1609.02,2112.11,0.00,0.000000,0.000000,205,0,0.000000,0.000030,63497785,30985244,0,0,78251,0,1,1 +1773669986.328181,0.60,4,3992.50,53.95,1609.03,2112.09,0.00,1.993297,0.000195,258,2,0.000000,0.000663,63497785,30985250,0,0,78253,0,1,1 +1773669991.327766,0.65,4,3992.50,53.95,1609.03,2112.09,0.00,48423.956515,48680.402414,3377384,3034261,0.000031,0.000055,63497787,30985255,0,0,78256,0,1,1 +1773669996.328275,0.65,4,3992.50,53.91,1610.62,2110.50,0.00,3518078832874.107910,3518078832619.884277,11,0,0.000157,0.000200,63497799,30985269,0,0,78258,0,1,1 +1773670001.327441,0.70,4,3992.50,53.92,1610.16,2110.96,0.00,48430.193915,48684.496705,3377384,3034270,0.000000,0.000030,63497799,30985272,0,0,78261,0,1,1 +1773670006.323660,0.80,4,3992.50,54.15,1601.35,2120.05,0.00,3521099830941.865723,3521099830687.412598,11,0,0.000000,0.000020,63497799,30985274,0,0,78263,0,1,1 +1773670011.323439,15.91,4,3992.50,58.61,1426.78,2294.61,0.00,2.175487,0.000195,258,2,28.646815,0.025196,63500950,30987081,0,0,78266,0,1,1 +1773670016.325783,1.05,4,3992.50,54.51,1587.29,2134.10,0.00,48406.970426,48664.402092,3378887,3035008,11.414340,0.008370,63502200,30987643,0,0,78268,0,1,1 +1773670021.327859,0.70,4,3992.50,53.96,1608.54,2112.84,0.00,3516976903903.512207,3516976903648.241211,11,0,0.000031,0.000055,63502202,30987648,0,0,78271,0,1,1 +1773670026.323424,0.65,4,3992.50,53.86,1612.70,2108.68,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63502202,30987650,0,0,78273,0,1,1 +1773670031.323643,0.90,4,3992.50,53.89,1611.29,2110.10,0.00,2.175295,0.000195,258,2,0.002481,0.001593,63502253,30987690,0,0,78276,0,1,1 +1773670036.328333,1.10,4,3992.50,54.17,1601.04,2120.88,0.00,48384.282302,48641.676825,3378887,3035048,0.000000,0.000020,63502253,30987692,0,0,78278,0,1,1 +1773670041.327929,0.60,4,3992.50,53.90,1611.67,2110.25,0.00,3518720755973.154297,3518720755717.672852,11,0,0.000000,0.000030,63502253,30987695,0,0,78281,0,1,1 +1773670046.328220,0.65,4,3992.50,53.92,1610.71,2111.20,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63502253,30987697,0,0,78283,0,1,1 +1773670051.328084,0.60,4,3992.50,53.94,1610.23,2111.69,0.00,0.000000,0.000000,11,0,0.000000,0.000674,63502253,30987704,0,0,78286,0,1,1 +1773670056.327909,0.75,4,3992.50,53.76,1617.13,2104.79,0.00,48423.813749,48678.381876,3377384,3034531,0.000031,0.000045,63502255,30987708,0,0,78288,0,1,1 +1773670061.323950,0.65,4,3992.50,53.79,1615.93,2105.99,0.00,9.733878,10.687758,3378887,3035093,0.000092,0.000139,63502263,30987719,0,0,78291,0,1,1 +1773670066.327747,0.95,4,3992.50,54.19,1603.23,2121.46,0.00,3515767350713.853027,3515767350467.545898,253,556,0.000000,0.000020,63502263,30987721,0,0,78293,0,1,1 +1773670071.327683,0.65,4,3992.50,53.72,1618.70,2103.32,0.00,3518482267972.858887,3518482267963.841309,11,0,0.000000,0.000030,63502263,30987724,0,0,78296,0,1,1 +1773670076.323635,13.91,4,3992.50,59.04,1410.34,2311.66,0.00,0.000000,0.000000,11,0,23.266128,0.018725,63504947,30988940,0,0,78298,0,1,1 +1773670081.327981,2.00,4,3992.50,54.85,1574.54,2147.49,0.00,0.180117,0.000000,205,0,16.808015,0.010716,63506829,30989683,0,0,78301,0,1,1 +1773670086.323560,0.60,4,3992.50,54.26,1597.45,2124.58,0.00,0.000000,0.000000,205,0,0.000000,0.000020,63506829,30989685,0,0,78303,0,1,1 +1773670091.326017,0.70,4,3992.50,54.02,1607.13,2114.90,0.00,3516709024920.679688,0.000000,75,0,0.000000,0.000030,63506829,30989688,0,0,78306,0,1,1 +1773670096.327878,1.10,4,3992.50,54.01,1606.79,2114.61,0.00,3517128223093.567871,0.000000,11,0,0.000000,0.000020,63506829,30989690,0,0,78308,0,1,1 +1773670101.324365,0.60,4,3992.50,53.98,1608.16,2113.26,0.00,1.658880,10.682700,253,556,0.000000,0.000030,63506829,30989693,0,0,78311,0,1,1 +1773670106.326727,0.60,4,3992.50,53.99,1607.68,2113.74,0.00,0.000000,0.000000,253,556,0.000000,0.000020,63506829,30989695,0,0,78313,0,1,1 +1773670111.327779,0.65,4,3992.50,53.98,1607.81,2113.61,0.00,48419.990674,48666.690808,3378887,3035323,0.000000,0.000030,63506829,30989698,0,0,78316,0,1,1 +1773670116.328058,0.65,4,3992.50,53.81,1614.47,2106.95,0.00,3518240784212.986328,3518240783957.050781,205,0,0.000000,0.000664,63506829,30989704,0,0,78318,0,1,1 +1773670121.327405,0.60,4,3992.50,53.83,1614.01,2107.41,0.00,48437.985460,48693.985895,3378887,3035332,0.000031,0.000055,63506831,30989709,0,0,78321,0,1,1 +1773670126.327589,0.95,4,3992.50,54.02,1604.11,2115.02,0.00,3518307887968.295898,3518307887712.518555,11,0,0.000142,0.000191,63506843,30989723,0,0,78323,0,1,1 +1773670131.326911,0.70,4,3992.50,54.02,1604.04,2115.01,0.00,48438.399754,48694.260977,3378887,3035350,0.000000,0.000030,63506843,30989726,0,0,78326,0,1,1 +1773670136.327680,0.70,4,3992.50,54.02,1604.04,2115.01,0.00,3517896543480.224121,3517896543233.453125,253,556,0.000000,0.000020,63506843,30989728,0,0,78328,0,1,1 +1773670141.324035,13.34,4,3992.50,58.91,1412.52,2306.53,0.00,0.518053,3521003858719.354004,258,2,14.036422,0.014708,63508586,30990712,0,0,78331,0,1,1 +1773670146.328164,2.81,4,3992.50,55.08,1562.38,2156.67,0.00,3515533762592.696777,3515533762594.690430,205,0,26.017344,0.016795,63511227,30991933,0,0,78333,0,1,1 +1773670151.323562,0.65,4,3992.50,54.40,1589.24,2129.81,0.00,3521679041220.908691,0.000000,11,0,0.000000,0.000030,63511227,30991936,0,0,78336,0,1,1 +1773670156.325873,0.95,4,3992.50,54.27,1595.72,2124.79,0.00,48409.457638,48665.353884,3378887,3035526,0.000000,0.000020,63511227,30991938,0,0,78338,0,1,1 +1773670161.327724,0.80,4,3992.50,54.23,1597.05,2123.41,0.00,3517135674644.501953,3517135674386.407715,258,2,0.000000,0.000030,63511227,30991941,0,0,78341,0,1,1 +1773670166.327979,0.65,4,3992.50,54.24,1596.99,2123.46,0.00,3518257295055.733887,10.674454,253,556,0.000000,0.000020,63511227,30991943,0,0,78343,0,1,1 +1773670171.328221,1.00,4,3992.50,54.21,1598.08,2122.37,0.00,0.517651,3518266795287.415039,258,2,0.000000,0.000030,63511227,30991946,0,0,78346,0,1,1 +1773670176.328001,0.80,4,3992.50,54.21,1598.09,2122.37,0.00,48431.795030,48690.048491,3378887,3035571,0.000000,0.000020,63511227,30991948,0,0,78348,0,1,1 +1773670181.327575,0.70,4,3992.50,54.21,1598.09,2122.37,0.00,3518737331265.637695,3518737331009.549316,11,0,0.000000,0.000674,63511227,30991955,0,0,78351,0,1,1 +1773670186.327898,0.75,4,3992.50,54.26,1596.41,2124.29,0.00,0.000000,0.000000,11,0,0.000031,0.000045,63511229,30991959,0,0,78353,0,1,1 +1773670191.327799,0.75,4,3992.50,54.26,1596.42,2124.29,0.00,48432.802072,48688.918596,3378887,3035593,0.000142,0.000201,63511241,30991974,0,0,78356,0,1,1 +1773670196.328005,0.65,4,3992.50,54.07,1603.81,2116.89,0.00,3518292241159.968750,3518292241159.031250,3377384,3035050,0.000000,0.000020,63511241,30991976,0,0,78358,0,1,1 +1773670201.323427,0.90,4,3992.50,54.07,1603.82,2116.88,0.00,9.735085,10.699249,3378887,3035614,0.000000,0.000030,63511241,30991979,0,0,78361,0,1,1 +1773670206.327577,13.12,4,3992.50,58.87,1415.67,2305.02,0.00,3515519741708.195801,3515519741452.217773,75,0,3.810444,0.008818,63511961,30992463,0,0,78363,0,1,1 +1773670211.323506,8.28,4,3992.50,55.09,1563.67,2157.02,0.00,1.605506,10.683894,253,556,36.285566,0.017165,63515810,30993691,0,0,78366,0,1,1 +1773670216.327831,0.90,4,3992.50,54.77,1576.41,2144.42,0.00,3515396556084.167480,3515396556075.158203,11,0,0.000000,0.000020,63515810,30993693,0,0,78368,0,1,1 +1773670221.327255,0.70,4,3992.50,54.41,1590.25,2130.26,0.00,1.657906,10.676424,253,556,0.000000,0.000030,63515810,30993696,0,0,78371,0,1,1 +1773670226.327994,0.75,4,3992.50,54.35,1592.46,2128.05,0.00,0.000000,0.000000,253,556,0.000000,0.000020,63515810,30993698,0,0,78373,0,1,1 +1773670231.328109,0.45,4,3992.50,54.35,1592.53,2127.99,0.00,3518356228283.758789,3518356228274.561523,205,0,0.000000,0.000030,63515810,30993701,0,0,78376,0,1,1 +1773670236.327719,0.60,4,3992.50,54.14,1600.86,2119.65,0.00,3518711858418.416992,0.000000,11,0,0.000000,0.000020,63515810,30993703,0,0,78378,0,1,1 +1773670241.328183,0.55,4,3992.50,54.16,1599.92,2120.59,0.00,1.657561,10.674203,253,556,0.000000,0.000030,63515810,30993706,0,0,78381,0,1,1 +1773670246.327944,0.95,4,3992.50,54.49,1587.29,2133.37,0.00,3518605603715.966797,3518605603706.949219,11,0,0.000000,0.000664,63515810,30993712,0,0,78383,0,1,1 +1773670251.328412,0.75,4,3992.50,54.42,1589.75,2130.71,0.00,2.175187,0.000195,258,2,0.000031,0.000055,63515812,30993717,0,0,78386,0,1,1 +1773670256.323446,0.75,4,3992.50,54.40,1590.57,2129.90,0.00,0.000000,0.000000,258,2,0.000142,0.000191,63515824,30993731,0,0,78388,0,1,1 +1773670261.323558,0.60,4,3992.50,54.41,1590.32,2130.14,0.00,3518358205556.520020,10.674760,253,556,0.000000,0.000030,63515824,30993734,0,0,78391,0,1,1 +1773670266.325177,0.70,4,3992.50,54.39,1590.89,2129.58,0.00,3517298679699.256348,3517298679690.241699,11,0,0.000000,0.000020,63515824,30993736,0,0,78393,0,1,1 +1773670271.327568,8.32,4,3992.50,58.96,1411.95,2308.52,0.00,0.180187,0.000000,205,0,3.051291,0.008465,63516412,30994128,0,0,78396,0,1,1 +1773670276.327928,11.16,4,3992.50,55.53,1546.11,2174.30,0.00,0.000000,0.000000,205,0,37.011460,0.016399,63520248,30995268,0,0,78398,0,1,1 +1773670281.323776,0.70,4,3992.50,54.89,1571.44,2148.96,0.00,1.478669,10.684067,253,556,0.000000,0.000030,63520248,30995271,0,0,78401,0,1,1 +1773670286.328337,0.70,4,3992.50,54.28,1595.18,2125.27,0.00,3515230681540.231445,3515230681531.168945,75,0,0.000000,0.000020,63520248,30995273,0,0,78403,0,1,1 +1773670291.328073,0.80,4,3992.50,54.16,1599.80,2120.64,0.00,3518623394025.142578,0.000000,11,0,0.000000,0.000030,63520248,30995276,0,0,78406,0,1,1 +1773670296.327960,0.70,4,3992.50,54.12,1601.69,2118.76,0.00,0.180277,0.000000,205,0,0.000000,0.000020,63520248,30995278,0,0,78408,0,1,1 +1773670301.328301,0.70,4,3992.50,54.12,1601.69,2118.76,0.00,48428.355811,48685.226286,3378887,3036134,0.000000,0.000030,63520248,30995281,0,0,78411,0,1,1 +1773670306.327851,0.85,4,3992.50,53.94,1607.13,2111.88,0.00,3518753836332.869141,3518753836076.138184,11,0,0.000000,0.000020,63520248,30995283,0,0,78413,0,1,1 +1773670311.324605,0.55,4,3992.50,53.90,1608.48,2110.28,0.00,48453.564702,48709.567503,3377384,3035628,0.000000,0.000030,63520248,30995286,0,0,78416,0,1,1 +1773670316.328170,0.60,4,3992.50,53.90,1608.48,2110.28,0.00,3515930719550.798340,3515930719294.963867,205,0,0.000093,0.000739,63520254,30995298,0,0,78418,0,1,1 +1773670321.327896,0.70,4,3992.50,53.91,1608.02,2110.74,0.00,3518629692705.455566,0.000000,11,0,0.000165,0.000218,63520267,30995314,0,0,78421,0,1,1 +1773670326.328192,0.65,4,3992.50,53.94,1607.04,2111.70,0.00,2.175262,0.000195,258,2,0.000000,0.000020,63520267,30995316,0,0,78423,0,1,1 +1773670331.327958,0.80,4,3992.50,53.95,1606.30,2112.44,0.00,3518601600762.693359,3518601600764.869141,11,0,0.003151,0.002531,63520321,30995360,0,0,78426,0,1,1 +1773670336.328645,2.31,4,3992.50,59.17,1402.09,2316.62,0.00,1.657487,10.673728,253,556,0.003767,0.002699,63520380,30995408,0,0,78428,0,1,1 +1773670341.323825,14.36,4,3992.50,54.31,1592.28,2126.45,0.00,48467.174597,48714.402075,3377384,3035801,40.099228,0.021938,63524651,30997017,0,0,78431,0,1,1 +1773670346.327454,0.65,4,3992.50,54.12,1599.67,2119.07,0.00,3515885732813.720215,3515885732557.719238,205,0,0.000000,0.000020,63524651,30997019,0,0,78433,0,1,1 +1773670351.328072,0.65,4,3992.50,54.12,1599.68,2119.06,0.00,3518002223387.307129,0.000000,11,0,0.000000,0.000030,63524651,30997022,0,0,78436,0,1,1 +1773670356.327954,0.70,4,3992.50,54.12,1599.68,2119.06,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63524651,30997024,0,0,78438,0,1,1 +1773670361.323930,0.75,4,3992.50,54.13,1599.44,2119.30,0.00,1.659050,10.683793,253,556,0.000000,0.000030,63524651,30997027,0,0,78441,0,1,1 +1773670366.328146,0.95,4,3992.50,54.14,1598.12,2119.70,0.00,3515473394821.351074,3515473394812.341309,11,0,0.000000,0.000020,63524651,30997029,0,0,78443,0,1,1 +1773670371.325449,0.70,4,3992.50,54.14,1598.16,2119.70,0.00,48448.241116,48704.550150,3377384,3035919,0.000000,0.000030,63524651,30997032,0,0,78446,0,1,1 +1773670376.327970,0.75,4,3992.50,54.15,1597.92,2119.95,0.00,9.721271,10.674696,3378887,3036482,0.000081,0.000107,63524657,30997040,0,0,78448,0,1,1 +1773670381.323532,0.60,4,3992.50,54.15,1597.92,2119.95,0.00,3521562351944.158203,3521562351686.805176,11,0,0.000047,0.000716,63524661,30997051,0,0,78451,0,1,1 +1773670386.323411,0.70,4,3992.50,54.15,1597.92,2119.94,0.00,0.000000,0.000000,11,0,0.000126,0.000175,63524671,30997063,0,0,78453,0,1,1 +1773670391.326921,0.65,4,3992.50,54.15,1597.93,2119.94,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63524671,30997066,0,0,78456,0,1,1 +1773670396.323647,1.05,4,3992.50,54.24,1594.14,2123.60,0.00,48463.570849,48720.912495,3378887,3036512,0.000000,0.000020,63524671,30997068,0,0,78458,0,1,1 +1773670401.325432,0.90,4,3992.50,54.19,1596.00,2121.73,0.00,3517182035752.557129,3517182035495.475586,11,0,0.002878,0.001658,63524696,30997089,0,0,78461,0,1,1 +1773670406.323907,14.58,4,3992.50,55.39,1549.07,2168.66,0.00,0.000000,0.000000,11,0,40.073798,0.020985,63528919,30998494,0,0,78463,0,1,1 +1773670411.326710,0.60,4,3992.50,54.53,1582.77,2134.97,0.00,2.174172,0.000195,258,2,0.000008,0.000038,63528920,30998498,0,0,78466,0,1,1 +1773670416.323420,0.70,4,3992.50,54.10,1599.54,2118.20,0.00,48451.813504,48710.522970,3377384,3036101,0.000000,0.000020,63528920,30998500,0,0,78468,0,1,1 +1773670421.326639,0.60,4,3992.50,53.97,1604.73,2113.01,0.00,3516173562548.957031,3516173562292.578125,205,0,0.000000,0.000030,63528920,30998503,0,0,78471,0,1,1 +1773670426.323794,0.95,4,3992.50,54.25,1593.80,2123.93,0.00,48449.494286,48706.258131,3377384,3036133,0.000000,0.000020,63528920,30998505,0,0,78473,0,1,1 +1773670431.325248,0.55,4,3992.50,54.22,1594.80,2122.93,0.00,3517414396249.228027,3517414395992.865234,11,0,0.000000,0.000030,63528920,30998508,0,0,78476,0,1,1 +1773670436.327840,0.80,4,3992.50,54.22,1594.80,2122.94,0.00,48397.028179,48653.369539,3377384,3036171,0.000000,0.000020,63528920,30998510,0,0,78478,0,1,1 +1773670441.326444,0.65,4,3992.50,54.21,1595.36,2122.38,0.00,3519419790210.896484,3519419789963.370117,253,556,0.000000,0.000030,63528920,30998513,0,0,78481,0,1,1 +1773670446.327129,0.65,4,3992.50,54.21,1595.12,2122.62,0.00,3517954957765.657715,3517954957756.641602,11,0,0.000000,0.000664,63528920,30998519,0,0,78483,0,1,1 +1773670451.327845,0.80,4,3992.50,54.21,1595.12,2122.62,0.00,0.000000,0.000000,11,0,0.000157,0.000210,63528932,30998534,0,0,78486,0,1,1 +1773670456.323502,0.60,4,3992.50,54.21,1595.12,2122.62,0.00,48464.213435,48720.944273,3377384,3036192,0.000008,0.000028,63528933,30998537,0,0,78488,0,1,1 +1773670461.323417,0.95,4,3992.50,54.28,1592.48,2125.25,0.00,3518496942540.597656,3518496942293.102539,253,556,0.000000,0.000030,63528933,30998540,0,0,78491,0,1,1 +1773670466.324811,1.00,4,3992.50,54.11,1599.21,2118.53,0.00,3517456742436.838867,3517456742427.770508,75,0,0.002208,0.000714,63528955,30998557,0,0,78493,0,1,1 +1773670471.327592,20.28,4,3992.50,55.44,1547.32,2170.41,0.00,0.126687,0.000000,205,0,40.039892,0.021501,63533253,31000007,0,0,78496,0,1,1 +1773670476.327926,0.65,4,3992.50,54.64,1578.40,2139.34,0.00,48428.426415,48686.193884,3378887,3036904,0.000000,0.000020,63533253,31000009,0,0,78498,0,1,1 +1773670481.325847,0.75,4,3992.50,54.14,1597.89,2119.86,0.00,3519901021663.590332,3519901021662.646484,3377384,3036349,0.000000,0.000030,63533253,31000012,0,0,78501,0,1,1 +1773670486.327683,1.15,4,3992.50,54.14,1599.10,2119.55,0.00,3517145665979.452637,3517145665722.832520,75,0,0.000000,0.000020,63533253,31000014,0,0,78503,0,1,1 +1773670491.327708,0.60,4,3992.50,54.17,1597.87,2120.77,0.00,3518419486604.192383,0.000000,11,0,0.000000,0.000030,63533253,31000017,0,0,78506,0,1,1 +1773670496.328094,0.60,4,3992.50,54.17,1597.88,2120.77,0.00,48428.097973,48685.795748,3378887,3036978,0.000000,0.000020,63533253,31000019,0,0,78508,0,1,1 +1773670501.326011,1.20,4,3992.50,54.08,1601.27,2117.37,0.00,0.000000,0.003126,3378887,3036981,0.000000,0.000030,63533253,31000022,0,0,78511,0,1,1 +1773670506.326572,0.85,4,3992.50,54.08,1601.28,2117.36,0.00,3518042075885.114746,3518042075625.247559,258,2,0.000000,0.000020,63533253,31000024,0,0,78513,0,1,1 +1773670511.323369,0.80,4,3992.50,54.09,1600.71,2117.93,0.00,3520692586380.333984,3520692586382.330566,205,0,0.000000,0.000674,63533253,31000031,0,0,78516,0,1,1 +1773670516.328369,0.90,4,3992.50,54.09,1600.71,2117.93,0.00,3514922219177.389648,0.000000,75,0,0.000157,0.000200,63533265,31000045,0,0,78518,0,1,1 +1773670521.328310,1.20,4,3992.50,54.37,1589.03,2128.74,0.00,0.126759,0.000000,205,0,0.000016,0.000046,63533267,31000050,0,0,78521,0,1,1 +1773670526.328084,0.80,4,3992.50,54.35,1589.87,2127.90,0.00,48433.842662,48691.895222,3378887,3037094,0.000000,0.000020,63533267,31000052,0,0,78523,0,1,1 +1773670531.327591,1.15,4,3992.50,53.96,1605.07,2112.70,0.00,3518784285708.294922,3518784285448.233398,258,2,0.002209,0.000712,63533289,31000069,0,0,78526,0,1,1 +1773670536.327745,15.54,4,3992.50,54.40,1587.82,2129.93,0.00,48428.168676,48688.218759,3378887,3037145,40.062875,0.024584,63537682,31001701,0,0,78528,0,1,1 +1773670541.327959,0.80,4,3992.50,53.91,1607.14,2110.61,0.00,0.000000,0.099312,3378887,3037223,0.000000,0.000030,63537682,31001704,0,0,78531,0,1,1 +1773670546.328133,0.95,4,3992.50,54.22,1594.88,2122.86,0.00,3518314312174.367188,3518314311916.213379,205,0,0.000000,0.000020,63537682,31001706,0,0,78533,0,1,1 +1773670551.323485,0.60,4,3992.50,54.21,1595.48,2122.26,0.00,1.478816,10.685128,253,556,0.000000,0.000030,63537682,31001709,0,0,78536,0,1,1 +1773670556.328105,0.65,4,3992.50,54.21,1595.48,2122.26,0.00,3515189707197.888672,3515189707188.879883,11,0,0.000000,0.000020,63537682,31001711,0,0,78538,0,1,1 +1773670561.328014,0.65,4,3992.50,54.03,1602.40,2115.35,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63537682,31001714,0,0,78541,0,1,1 +1773670566.327742,0.60,4,3992.50,54.04,1602.15,2115.59,0.00,2.175509,0.000195,258,2,0.000000,0.000020,63537682,31001716,0,0,78543,0,1,1 +1773670571.323574,0.70,4,3992.50,54.06,1601.18,2116.57,0.00,3521372350205.292480,3521372350207.289062,205,0,0.001435,0.001788,63537698,31001744,0,0,78546,0,1,1 +1773670576.327542,0.95,4,3992.50,54.46,1585.86,2132.05,0.00,3515647677451.886230,0.000000,75,0,0.000213,0.001203,63537706,31001762,0,0,78548,0,1,1 +1773670581.323331,0.70,4,3992.50,54.40,1588.00,2129.91,0.00,0.126865,0.000000,205,0,0.000188,0.000236,63537720,31001779,0,0,78551,0,1,1 +1773670586.328066,0.65,4,3992.50,54.41,1587.75,2130.15,0.00,0.000000,0.000000,205,0,0.000000,0.000020,63537720,31001781,0,0,78553,0,1,1 +1773670591.327446,0.70,4,3992.50,54.37,1589.22,2128.69,0.00,3518873278920.137695,0.000000,11,0,0.000000,0.000030,63537720,31001784,0,0,78556,0,1,1 +1773670596.327871,0.90,4,3992.50,54.17,1596.86,2121.05,0.00,0.053511,0.000000,75,0,0.000000,0.000020,63537720,31001786,0,0,78558,0,1,1 +1773670601.327359,16.64,4,3992.50,54.98,1565.21,2152.68,0.00,0.126771,0.000000,205,0,40.067791,0.022249,63541985,31003254,0,0,78561,0,1,1 +1773670606.325884,1.00,4,3992.50,54.48,1586.06,2132.87,0.00,3519475985739.740234,0.000000,75,0,0.000000,0.000020,63541985,31003256,0,0,78563,0,1,1 +1773670611.327553,0.70,4,3992.50,54.19,1596.97,2121.52,0.00,48415.621070,48674.003641,3378888,3037572,0.000000,0.000030,63541985,31003259,0,0,78566,0,1,1 +1773670616.327631,0.65,4,3992.50,54.19,1596.97,2121.52,0.00,3518382345330.209961,3518382345329.264648,3377385,3037019,0.000062,0.000070,63541989,31003265,0,0,78568,0,1,1 +1773670621.327888,0.70,4,3992.50,54.19,1596.97,2121.52,0.00,0.000000,0.003125,3377385,3037022,0.000031,0.000055,63541991,31003270,0,0,78571,0,1,1 +1773670626.325907,0.70,4,3992.50,54.19,1596.97,2121.51,0.00,3519832024134.613770,3519832023876.857910,205,0,0.000000,0.000020,63541991,31003272,0,0,78573,0,1,1 +1773670631.327386,20.22,4,3992.50,54.63,1556.42,2139.05,0.00,48407.770044,49431.840831,3377449,3041772,0.002489,0.001601,63542043,31003313,0,0,78576,0,1,1 +1773670636.323502,5.96,4,3992.50,54.58,1561.81,2136.85,0.00,3521171972336.599121,3521171971311.429199,205,0,0.000000,0.000664,63542043,31003319,0,0,78578,0,1,1 +1773670641.323502,0.70,4,3992.50,54.62,1560.35,2138.30,0.00,1.995117,0.000195,258,2,0.000000,0.000030,63542043,31003322,0,0,78581,0,1,1 +1773670646.323427,8.48,4,3992.50,54.50,1561.20,2133.83,0.00,3518489862379.775391,10.675160,253,583,0.000107,0.000138,63542051,31003332,0,0,78583,0,1,1 +1773670651.323502,0.60,4,3992.50,54.51,1560.96,2134.07,0.00,3518384228348.208496,3518384228339.137695,75,0,0.000000,0.000352,63542051,31003337,0,0,78586,0,1,1 +1773670656.327938,9.83,4,3992.50,53.83,1600.46,2107.64,0.00,3515318838441.813965,0.000000,11,0,0.000000,0.000341,63542051,31003341,0,0,78588,0,1,1 +1773670661.327546,2.51,4,3992.50,53.93,1600.60,2111.61,0.00,0.053520,0.000000,75,0,0.000000,0.000030,63542051,31003344,0,0,78591,0,1,1 +1773670666.326945,18.16,4,3992.50,59.56,1398.27,2332.06,0.00,3518860289901.065918,0.000000,11,0,26.648836,0.021610,63545180,31004864,0,0,78593,0,1,1 +1773670671.326464,1.20,4,3992.50,55.21,1568.20,2161.51,0.00,0.053521,0.000000,75,0,13.424802,0.007719,63546646,31005370,0,0,78596,0,1,1 +1773670676.328166,0.65,4,3992.50,54.61,1591.54,2138.17,0.00,0.126715,0.000000,205,0,0.000081,0.000107,63546652,31005378,0,0,78598,0,1,1 +1773670681.328192,0.60,4,3992.50,54.41,1599.46,2130.25,0.00,3518419276907.333008,0.000000,11,0,0.000008,0.000038,63546653,31005382,0,0,78601,0,1,1 +1773670686.323477,0.65,4,3992.50,54.42,1599.23,2130.48,0.00,2.177444,0.000195,258,2,0.000000,0.000020,63546653,31005384,0,0,78603,0,1,1 +1773670691.325328,0.65,4,3992.50,54.41,1599.38,2130.34,0.00,3517134945353.264648,10.671049,253,592,0.000000,0.000030,63546653,31005387,0,0,78606,0,1,1 +1773670696.328029,0.90,4,3992.50,54.25,1607.91,2123.85,0.00,0.517396,3516538091223.437988,258,2,0.000000,0.000020,63546653,31005389,0,0,78608,0,1,1 +1773670701.323508,0.70,4,3992.50,54.08,1612.79,2117.44,0.00,3521621160805.474609,3521621160807.652344,11,0,0.000000,0.000030,63546653,31005392,0,0,78611,0,1,1 +1773670706.327839,0.70,4,3992.50,54.09,1612.57,2117.66,0.00,48380.418646,50537.747668,3377523,3048856,0.000000,0.000663,63546653,31005398,0,0,78613,0,1,1 +1773670711.327704,0.70,4,3992.50,54.09,1612.34,2117.89,0.00,3518532577436.892578,3518532575275.460449,258,2,0.000031,0.000055,63546655,31005403,0,0,78616,0,1,1 +1773670716.325353,0.60,4,3992.50,54.09,1612.34,2117.89,0.00,3520092616212.056152,3520092616214.179199,75,0,0.000126,0.000175,63546665,31005415,0,0,78618,0,1,1 +1773670721.327637,0.65,4,3992.50,54.09,1612.34,2117.89,0.00,48409.885643,50569.116967,3379026,3049465,0.000000,0.000030,63546665,31005418,0,0,78621,0,1,1 +1773670726.328135,7.45,4,3992.50,54.72,1564.46,2142.58,0.00,3518086452966.905762,3518086450806.956543,11,0,0.000000,0.000020,63546665,31005420,0,0,78623,0,1,1 +1773670731.328058,7.42,4,3992.50,54.43,1576.17,2130.86,0.00,1.657740,10.675360,253,595,0.002866,0.001330,63546689,31005439,0,0,78626,0,1,1 +1773670736.328224,0.60,4,3992.50,54.47,1574.25,2132.79,0.00,3518320793275.805664,3518320793266.789062,11,0,0.000008,0.000028,63546690,31005442,0,0,78628,0,1,1 +1773670741.328044,8.89,4,3992.50,54.66,1569.00,2139.97,0.00,0.000000,0.000000,11,0,0.000013,0.000346,63546691,31005446,0,0,78631,0,1,1 +1773670746.323448,0.75,4,3992.50,54.67,1568.18,2140.35,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63546691,31005448,0,0,78633,0,1,1 +1773670751.327862,2.20,4,3992.50,54.68,1564.61,2140.87,0.00,2.173472,0.000195,258,2,0.000112,0.000650,63546698,31005462,0,0,78636,0,1,1 +1773670756.327570,10.13,4,3992.50,59.85,1356.52,2343.41,0.00,0.000000,0.000000,258,2,0.603178,0.002532,63546868,31005575,0,0,78638,0,1,1 +1773670761.326981,12.01,4,3992.50,55.29,1558.02,2164.82,0.00,3518851733134.039551,3518851733136.215332,11,0,39.467091,0.016277,63551235,31006764,0,0,78641,0,1,1 +1773670766.326452,0.65,4,3992.50,54.71,1581.02,2141.82,0.00,48437.253325,51929.808504,3379108,3057936,0.000008,0.000028,63551236,31006767,0,0,78643,0,1,1 +1773670771.327463,0.75,4,3992.50,54.39,1593.23,2129.62,0.00,3517725166545.464355,3517725163053.985840,11,0,0.000000,0.000513,63551236,31006773,0,0,78646,0,1,1 +1773670776.327699,0.65,4,3992.50,54.41,1592.77,2130.08,0.00,48420.107463,51911.191721,3377605,3057340,0.000000,0.000181,63551236,31006776,0,0,78648,0,1,1 +1773670781.328094,0.70,4,3992.50,54.41,1592.77,2130.08,0.00,3518159695871.146484,3518159692379.992188,205,0,0.000000,0.000030,63551236,31006779,0,0,78651,0,1,1 +1773670786.328283,0.95,4,3992.50,54.45,1590.84,2131.97,0.00,3518303993931.629395,0.000000,75,0,0.000000,0.000020,63551236,31006781,0,0,78653,0,1,1 +1773670791.327957,0.75,4,3992.50,54.40,1592.98,2129.86,0.00,1.604304,10.675892,253,604,0.000000,0.000030,63551236,31006784,0,0,78656,0,1,1 +1773670796.324806,0.65,4,3992.50,54.39,1593.23,2129.61,0.00,0.518002,3520656105903.926758,258,2,0.000000,0.000020,63551236,31006786,0,0,78658,0,1,1 +1773670801.323381,0.90,4,3992.50,54.39,1593.27,2129.57,0.00,48443.759035,51939.241333,3379115,3058020,0.000000,0.000030,63551236,31006789,0,0,78661,0,1,1 +1773670806.326424,0.60,4,3992.50,54.38,1593.88,2128.97,0.00,3516296666193.457520,3516296662703.270996,11,0,0.000157,0.000200,63551248,31006803,0,0,78663,0,1,1 +1773670811.327575,0.60,4,3992.50,54.40,1592.90,2129.95,0.00,0.000000,0.000000,11,0,0.000016,0.000046,63551250,31006808,0,0,78666,0,1,1 +1773670816.327770,0.85,4,3992.50,54.41,1584.69,2130.15,0.00,0.053514,0.000000,75,0,0.000000,0.000020,63551250,31006810,0,0,78668,0,1,1 +1773670821.327873,7.13,4,3992.50,54.31,1567.47,2126.46,0.00,0.000000,0.000000,75,0,0.000000,0.000030,63551250,31006813,0,0,78671,0,1,1 +1773670826.327732,3.21,4,3992.50,54.11,1568.77,2118.34,0.00,48433.462912,52245.538401,3379146,3060080,0.000000,0.000020,63551250,31006815,0,0,78673,0,1,1 +1773670831.327555,6.01,4,3992.50,54.56,1555.57,2136.21,0.00,3518561958216.181152,3518561954401.956055,258,2,0.002196,0.000408,63551271,31006832,0,0,78676,0,1,1 +1773670836.323449,5.66,4,3992.50,54.20,1574.81,2122.06,0.00,48460.055090,52763.065481,3377658,3062521,0.000000,0.000020,63551271,31006834,0,0,78678,0,1,1 +1773670841.326265,8.21,4,3992.50,54.50,1563.54,2133.79,0.00,3516456827710.808594,3516456823415.745117,205,0,0.000000,0.000030,63551271,31006837,0,0,78681,0,1,1 +1773670846.327450,1.65,4,3992.50,54.48,1560.82,2132.87,0.00,1.477091,10.672667,253,613,0.000000,0.000020,63551271,31006839,0,0,78683,0,1,1 +1773670851.323442,0.60,4,3992.50,54.48,1560.58,2133.11,0.00,48469.350406,53083.226895,3379161,3065101,0.000000,0.000030,63551271,31006842,0,0,78686,0,1,1 +1773670856.327593,5.40,4,3992.50,59.03,1407.34,2310.98,0.00,3515518767313.186523,3515518762706.831543,253,616,2.010032,0.009952,63551830,31007276,0,0,78688,0,1,1 +1773670861.327905,24.43,4,3992.50,59.15,1402.51,2315.82,0.00,48427.488428,53103.114972,3379161,3065813,78.111207,0.039867,63560133,31010128,0,0,78691,0,1,1 +1773670866.328099,0.90,4,3992.50,55.09,1561.22,2157.09,0.00,3518300899471.839844,3518300894787.085938,11,0,0.004116,0.002521,63560218,31010204,0,0,78693,0,1,1 +1773670871.327870,0.85,4,3992.50,54.63,1579.55,2138.78,0.00,0.000000,0.000000,11,0,0.000512,0.001117,63560232,31010229,0,0,78696,0,1,1 +1773670876.324572,0.95,4,3992.50,54.56,1580.14,2136.30,0.00,48464.132235,53152.317527,3379162,3065920,0.000197,0.000540,63560238,31010241,0,0,78698,0,1,1 +1773670881.328001,0.55,4,3992.50,54.30,1590.42,2125.91,0.00,3516025689309.585938,3516025684627.704102,11,0,0.000000,0.000042,63560238,31010245,0,0,78701,0,1,1 +1773670886.324148,0.75,4,3992.50,54.29,1590.68,2125.66,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63560238,31010247,0,0,78703,0,1,1 +1773670891.324096,0.60,4,3992.50,54.12,1597.45,2118.88,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63560238,31010250,0,0,78706,0,1,1 +1773670896.323949,0.65,4,3992.50,54.15,1596.23,2120.11,0.00,48423.861253,53108.206633,3377659,3065364,0.000000,0.000020,63560238,31010252,0,0,78708,0,1,1 +1773670901.327883,0.70,4,3992.50,54.16,1596.03,2120.31,0.00,3515671094428.878418,3515671089748.353027,11,0,0.000031,0.000055,63560240,31010257,0,0,78711,0,1,1 +1773670906.327748,0.85,4,3992.50,54.47,1584.18,2132.55,0.00,48423.742892,53108.111199,3377659,3065381,0.000062,0.000714,63560244,31010267,0,0,78713,0,1,1 +1773670911.328032,0.65,4,3992.50,54.27,1591.59,2124.74,0.00,0.000000,0.013280,3377659,3065397,0.000165,0.000218,63560257,31010283,0,0,78716,0,1,1 +1773670916.323449,5.47,4,3992.50,54.46,1561.29,2132.10,0.00,3521665280855.453613,3521665276175.925781,253,623,0.000062,0.000715,63560261,31010293,0,0,78718,0,1,1 +1773670921.325931,4.77,4,3992.50,54.63,1556.51,2139.00,0.00,3516691037444.034180,3516691037434.840820,205,0,0.000031,0.000042,63560263,31010297,0,0,78721,0,1,1 +1773670926.323436,5.48,4,3992.50,54.53,1559.45,2134.91,0.00,0.000000,0.000000,205,0,0.002223,0.000409,63560286,31010314,0,0,78723,0,1,1 +1773670931.328068,3.01,4,3992.50,54.50,1561.41,2133.95,0.00,1.476074,10.665315,253,625,0.003272,0.003465,63560348,31010370,0,0,78726,0,1,1 +1773670936.326613,5.62,4,3992.50,54.17,1572.33,2121.05,0.00,3519461629840.416992,3519461629831.397461,11,0,0.000008,0.000672,63560349,31010377,0,0,78728,0,1,1 +1773670941.324733,7.28,4,3992.50,54.06,1576.79,2116.55,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63560349,31010380,0,0,78731,0,1,1 +1773670946.323420,2.81,4,3992.50,53.94,1582.88,2111.98,0.00,1.658150,10.677999,253,627,0.000000,0.000664,63560349,31010386,0,0,78733,0,1,1 +1773670951.323410,15.20,4,3992.50,55.55,1541.10,2175.09,0.00,48430.613960,54418.152901,3379174,3074598,40.060128,0.020733,63564699,31011914,0,0,78736,0,1,1 +1773670956.323408,0.80,4,3992.50,54.57,1579.80,2136.39,0.00,3518438722639.993652,3518438716641.271484,258,2,0.003085,0.001420,63564755,31011952,0,0,78738,0,1,1 +1773670961.328044,0.75,4,3992.50,54.23,1593.12,2123.07,0.00,3515177939410.780762,3515177939412.954102,11,0,0.000000,0.000030,63564755,31011955,0,0,78741,0,1,1 +1773670966.323449,0.85,4,3992.50,54.11,1600.68,2118.59,0.00,0.180439,0.000000,205,0,0.000000,0.000033,63564755,31011958,0,0,78743,0,1,1 +1773670971.325476,0.55,4,3992.50,54.07,1600.36,2116.98,0.00,0.000000,0.000000,205,0,0.000000,0.000030,63564755,31011961,0,0,78746,0,1,1 +1773670976.324658,0.60,4,3992.50,54.07,1600.36,2116.97,0.00,3519012557582.949219,0.000000,11,0,0.000081,0.000107,63564761,31011969,0,0,78748,0,1,1 +1773670981.327080,0.75,4,3992.50,54.08,1599.89,2117.45,0.00,0.000000,0.000000,11,0,0.000008,0.000038,63564762,31011973,0,0,78751,0,1,1 +1773670986.328097,0.60,4,3992.50,54.09,1599.68,2117.67,0.00,2.174948,0.000195,258,2,0.000000,0.000020,63564762,31011975,0,0,78753,0,1,1 +1773670991.328051,0.80,4,3992.50,53.89,1607.31,2110.04,0.00,3518469995392.009766,3518469995394.005371,205,0,0.000000,0.000030,63564762,31011978,0,0,78756,0,1,1 +1773670996.327646,0.90,4,3992.50,53.92,1605.92,2111.00,0.00,3518721767208.589355,0.000000,11,0,0.000056,0.000720,63564766,31011988,0,0,78758,0,1,1 +1773671001.326787,0.75,4,3992.50,53.92,1605.96,2110.96,0.00,2.175765,0.000195,258,2,0.000101,0.000154,63564774,31011999,0,0,78761,0,1,1 +1773671006.323435,0.65,4,3992.50,53.92,1605.72,2111.20,0.00,48462.492264,54465.418353,3379174,3074743,0.000000,0.000664,63564774,31012005,0,0,78763,0,1,1 +1773671011.323556,7.11,4,3992.50,53.83,1588.77,2107.55,0.00,3518351456927.886230,3518351450931.306152,11,0,0.000000,0.000030,63564774,31012008,0,0,78766,0,1,1 +1773671016.327545,6.46,4,3992.50,54.13,1574.54,2119.50,0.00,0.053473,0.000000,75,0,0.002344,0.001345,63564805,31012037,0,0,78768,0,1,1 +1773671021.327740,2.61,4,3992.50,53.94,1582.02,2112.00,0.00,48430.229497,54980.172483,3379174,3078388,0.000008,0.000682,63564806,31012045,0,0,78771,0,1,1 +1773671026.326561,7.67,4,3992.50,53.91,1586.21,2110.52,0.00,3519266708626.369141,3519266702074.679199,11,0,0.000000,0.000020,63564806,31012047,0,0,78773,0,1,1 +1773671031.324725,3.58,4,3992.50,54.16,1574.52,2120.61,0.00,0.180340,0.000000,205,0,0.000000,0.000674,63564806,31012054,0,0,78776,0,1,1 +1773671036.327491,22.09,4,3992.50,59.17,1378.82,2316.81,0.00,3516491807548.965332,0.000000,11,0,40.037015,0.019941,63569165,31013533,0,0,78778,0,1,1 +1773671041.328604,1.35,4,3992.50,54.80,1548.64,2145.67,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63569165,31013536,0,0,78781,0,1,1 +1773671046.323459,3.86,4,3992.50,55.09,1563.64,2156.80,0.00,0.000000,0.000000,11,0,0.001457,0.001191,63569180,31013549,0,0,78783,0,1,1 +1773671051.327473,0.80,4,3992.50,54.73,1577.59,2142.84,0.00,2.173646,0.000195,258,2,0.003091,0.001453,63569237,31013591,0,0,78786,0,1,1 +1773671056.323502,0.90,4,3992.50,54.73,1580.00,2142.82,0.00,3521233769924.110840,3521233769926.288086,11,0,0.000000,0.000020,63569237,31013593,0,0,78788,0,1,1 +1773671061.323659,0.65,4,3992.50,54.63,1581.58,2138.99,0.00,0.000000,0.000000,11,0,0.000000,0.000674,63569237,31013600,0,0,78791,0,1,1 +1773671066.327473,0.60,4,3992.50,54.63,1581.59,2138.98,0.00,0.180136,0.000000,205,0,0.000000,0.000020,63569237,31013602,0,0,78793,0,1,1 +1773671071.327821,0.65,4,3992.50,54.63,1581.59,2138.98,0.00,0.000000,0.000000,205,0,0.000000,0.000030,63569237,31013605,0,0,78796,0,1,1 +1773671076.323469,0.55,4,3992.50,54.58,1583.75,2136.83,0.00,48464.452797,55901.482892,3377671,3083486,0.000000,0.000020,63569237,31013607,0,0,78798,0,1,1 +1773671081.326062,0.60,4,3992.50,54.39,1591.16,2129.41,0.00,9.721130,10.697967,3379174,3084162,0.000000,0.000030,63569237,31013610,0,0,78801,0,1,1 +1773671086.327789,1.00,4,3992.50,54.54,1588.16,2135.26,0.00,3517222828717.741699,3517222821288.952637,11,0,0.000000,0.000020,63569237,31013612,0,0,78803,0,1,1 +1773671091.325642,0.65,4,3992.50,54.56,1587.14,2136.21,0.00,2.176325,0.000195,258,2,0.000056,0.000086,63569241,31013619,0,0,78806,0,1,1 +1773671096.327695,0.60,4,3992.50,54.56,1587.15,2136.21,0.00,3516993353684.035645,3516993353686.156738,75,0,0.000117,0.000160,63569251,31013631,0,0,78808,0,1,1 +1773671101.323417,0.75,4,3992.50,54.54,1587.97,2135.39,0.00,1.605573,10.684336,253,648,0.000000,0.000030,63569251,31013634,0,0,78811,0,1,1 +1773671106.324744,9.12,4,3992.50,54.74,1557.54,2143.06,0.00,0.517538,3517504051629.669434,258,2,0.000000,0.000020,63569251,31013636,0,0,78813,0,1,1 +1773671111.328043,0.90,4,3992.50,54.50,1566.85,2133.75,0.00,3516117185452.866211,3516117185454.860352,205,0,0.000000,0.000351,63569251,31013641,0,0,78816,0,1,1 +1773671116.327282,11.24,4,3992.50,54.79,1558.61,2145.16,0.00,48429.634806,56684.312774,3377671,3088735,0.002222,0.000718,63569274,31013659,0,0,78818,0,1,1 +1773671121.328295,0.80,4,3992.50,54.70,1561.23,2141.77,0.00,3517724662921.075684,3517724654667.330078,258,2,0.000000,0.000030,63569274,31013662,0,0,78821,0,1,1 +1773671126.325021,0.70,4,3992.50,54.70,1561.23,2141.77,0.00,0.000000,0.000000,258,2,0.000000,0.000020,63569274,31013664,0,0,78823,0,1,1 +1773671131.327759,3.96,4,3992.50,54.88,1552.02,2148.51,0.00,3516511190384.828125,10.669156,253,652,0.000000,0.000030,63569274,31013667,0,0,78826,0,1,1 +1773671136.327469,8.20,4,3992.50,54.63,1568.14,2138.72,0.00,48423.603806,57175.490436,3377671,3091881,0.000013,0.000336,63569275,31013670,0,0,78828,0,1,1 +1773671141.326778,1.10,4,3992.50,54.66,1566.68,2140.17,0.00,3518923173719.931152,3518923164958.145508,205,0,0.002205,0.000416,63569297,31013688,0,0,78831,0,1,1 +1773671146.327485,29.23,4,3992.50,56.42,1512.76,2208.81,0.00,48415.428779,57176.744125,3377671,3092075,80.108682,0.041273,63577992,31016612,0,0,78833,0,1,1 +1773671151.325775,1.26,4,3992.50,55.83,1538.26,2185.93,0.00,3519640607240.209473,3519640598474.659668,205,0,0.007072,0.003668,63578123,31016704,0,0,78836,0,1,1 +1773671156.326925,0.65,4,3992.50,55.14,1565.53,2158.67,0.00,1.994659,0.000195,258,2,0.000000,0.000020,63578123,31016706,0,0,78838,0,1,1 +1773671161.323450,0.75,4,3992.50,54.81,1578.09,2146.11,0.00,3520883883062.369629,3520883883064.546875,11,0,0.000000,0.000030,63578123,31016709,0,0,78841,0,1,1 +1773671166.323459,0.65,4,3992.50,54.69,1582.83,2141.38,0.00,48432.092934,57195.680286,3379174,3092899,0.000000,0.000020,63578123,31016711,0,0,78843,0,1,1 +1773671171.323491,0.65,4,3992.50,54.69,1582.98,2141.23,0.00,3518414307646.414062,3518414298882.868652,11,0,0.001434,0.001786,63578139,31016739,0,0,78846,0,1,1 +1773671176.328074,0.90,4,3992.50,54.69,1587.11,2141.14,0.00,0.000000,0.000000,11,0,0.001133,0.001216,63578149,31016755,0,0,78848,0,1,1 +1773671181.328150,0.65,4,3992.50,54.67,1587.51,2140.47,0.00,0.000000,0.000000,11,0,0.000000,0.000042,63578149,31016759,0,0,78851,0,1,1 +1773671186.328388,0.60,4,3992.50,54.69,1586.77,2141.20,0.00,0.053513,0.000000,75,0,0.000000,0.000020,63578149,31016761,0,0,78853,0,1,1 +1773671191.325559,0.80,4,3992.50,54.69,1586.77,2141.20,0.00,2.123076,0.000195,258,2,0.000062,0.000724,63578153,31016772,0,0,78856,0,1,1 +1773671196.327965,0.60,4,3992.50,54.69,1586.77,2141.20,0.00,48406.703000,57168.384771,3379174,3092991,0.000157,0.000200,63578165,31016786,0,0,78858,0,1,1 +1773671201.323475,7.13,4,3992.50,55.18,1547.18,2160.53,0.00,3521599584348.422363,3521599575574.645020,258,2,0.000008,0.000682,63578166,31016794,0,0,78861,0,1,1 +1773671206.323453,3.36,4,3992.50,55.42,1537.74,2170.00,0.00,3518452657702.954102,3518452657705.129395,11,0,0.000000,0.000020,63578166,31016796,0,0,78863,0,1,1 +1773671211.327920,6.60,4,3992.50,54.68,1569.82,2141.03,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63578166,31016799,0,0,78866,0,1,1 +1773671216.323449,5.58,4,3992.50,54.75,1561.41,2143.71,0.00,48475.516725,58047.245522,3379174,3097983,0.002261,0.000449,63578191,31016819,0,0,78868,0,1,1 +1773671221.326583,5.71,4,3992.50,54.74,1561.79,2143.32,0.00,3516233458180.811523,3516233448632.642090,253,662,0.000031,0.000686,63578193,31016827,0,0,78871,0,1,1 +1773671226.323436,4.88,4,3992.50,54.71,1558.36,2142.01,0.00,3520653286204.935547,3520653286195.913086,11,0,0.000112,0.000970,63578200,31016842,0,0,78873,0,1,1 +1773671231.323442,3.51,4,3992.50,53.74,1623.34,2103.94,0.00,0.180273,0.000000,205,0,0.002848,0.002263,63578261,31016898,0,0,78876,0,1,1 +1773671236.327404,1.20,4,3992.50,54.33,1600.29,2127.23,0.00,1.476272,10.666742,253,668,0.001153,0.003185,63578298,31016960,0,0,78878,0,1,1 +1773671241.328286,0.85,4,3992.50,54.15,1607.26,2119.94,0.00,3517816392383.990723,3517816392374.794922,205,0,0.001138,0.003185,63578333,31017022,0,0,78881,0,1,1 +1773671246.327454,0.80,4,3992.50,54.15,1607.26,2119.94,0.00,48440.540059,58392.312999,3379212,3100768,0.000910,0.002567,63578361,31017073,0,0,78883,0,1,1 +1773671251.327803,0.80,4,3992.50,54.15,1607.27,2119.94,0.00,3518191563237.719238,3518191553288.298340,205,0,0.001125,0.003198,63578395,31017136,0,0,78886,0,1,1 +1773671256.327956,0.85,4,3992.50,54.14,1607.40,2119.79,0.00,3518329072335.369141,0.000000,75,0,0.001146,0.003196,63578431,31017199,0,0,78888,0,1,1 +1773671261.327599,0.90,4,3992.50,54.17,1606.43,2120.77,0.00,3518689065386.641602,0.000000,11,0,0.001163,0.003229,63578468,31017264,0,0,78891,0,1,1 +1773671266.328231,1.20,4,3992.50,54.36,1598.51,2128.40,0.00,48416.803552,58364.586993,3377709,3100128,0.001138,0.003188,63578503,31017326,0,0,78893,0,1,1 +1773671271.328211,0.90,4,3992.50,54.32,1599.80,2126.91,0.00,3518451528409.114746,3518451518459.853027,205,0,0.000527,0.001341,63578517,31017356,0,0,78896,0,1,1 +1773671276.326727,0.65,4,3992.50,54.32,1599.82,2126.91,0.00,1.477880,10.678363,253,668,0.000101,0.000788,63578525,31017370,0,0,78898,0,1,1 +1773671281.328268,0.75,4,3992.50,54.15,1606.76,2119.97,0.00,3517353882176.072266,3517353882167.057617,11,0,0.000008,0.000038,63578526,31017374,0,0,78901,0,1,1 +1773671286.323605,0.75,4,3992.50,53.99,1612.94,2113.79,0.00,48477.860201,58437.191292,3379212,3100874,0.000000,0.000664,63578526,31017380,0,0,78903,0,1,1 +1773671291.327930,0.70,4,3992.50,53.95,1614.52,2112.23,0.00,3515396350341.427734,3515396340399.929688,75,0,0.000000,0.000030,63578526,31017383,0,0,78906,0,1,1 +1773671296.323544,1.05,4,3992.50,54.15,1607.51,2120.27,0.00,1.605608,10.684568,253,668,0.000464,0.001304,63578540,31017409,0,0,78908,0,1,1 +1773671301.327991,15.87,4,3992.50,59.02,1417.06,2310.69,0.00,3515310569328.427246,3515310569319.364746,75,0,38.222349,0.021769,63582632,31018947,0,0,78911,0,1,1 +1773671306.328332,0.95,4,3992.50,54.24,1604.16,2123.61,0.00,48429.294986,58378.823063,3379212,3100999,1.806474,0.003180,63582901,31019050,0,0,78913,0,1,1 +1773671311.323635,0.65,4,3992.50,54.24,1604.18,2123.59,0.00,3521745847540.637207,3521745847539.760742,3377709,3100377,0.000000,0.000030,63582901,31019053,0,0,78916,0,1,1 +1773671316.328044,0.60,4,3992.50,54.24,1604.18,2123.59,0.00,3515337263645.422852,3515337253704.730957,205,0,0.000031,0.000045,63582903,31019057,0,0,78918,0,1,1 +1773671321.328150,0.75,4,3992.50,54.25,1603.94,2123.82,0.00,48431.441153,58381.669192,3379212,3101080,0.000000,0.000030,63582903,31019060,0,0,78921,0,1,1 +1773671326.326045,0.90,4,3992.50,54.24,1605.04,2123.77,0.00,3519919285824.390625,3519919275869.939453,11,0,0.000000,0.000020,63582903,31019062,0,0,78923,0,1,1 +1773671331.325821,0.65,4,3992.50,54.03,1613.39,2115.38,0.00,48425.093257,58374.906685,3377709,3100452,0.000000,0.000030,63582903,31019065,0,0,78926,0,1,1 +1773671336.327689,0.65,4,3992.50,53.83,1621.09,2107.67,0.00,9.722540,10.676871,3379212,3101125,0.000000,0.000503,63582903,31019070,0,0,78928,0,1,1 +1773671341.323431,1.45,4,3992.50,53.88,1619.20,2109.57,0.00,3521435953862.981445,3521435953862.037109,3377709,3100458,0.000062,0.000241,63582907,31019078,0,0,78931,0,1,1 +1773671346.326476,0.65,4,3992.50,53.88,1619.20,2109.57,0.00,3516296274725.555176,3516296264782.229492,11,0,0.000070,0.000078,63582912,31019085,0,0,78933,0,1,1 +1773671351.323506,0.60,4,3992.50,53.88,1619.20,2109.56,0.00,2.176683,0.000195,258,2,0.000126,0.000185,63582922,31019098,0,0,78936,0,1,1 +1773671356.323436,1.05,4,3992.50,53.98,1620.57,2113.25,0.00,0.000000,0.000000,258,2,0.000000,0.000020,63582922,31019100,0,0,78938,0,1,1 +1773671361.328320,0.60,4,3992.50,53.97,1620.53,2113.22,0.00,48383.211630,58326.054373,3379212,3101162,0.000000,0.000030,63582922,31019103,0,0,78941,0,1,1 +1773671366.327594,10.04,4,3992.50,59.10,1420.00,2313.76,0.00,3518948285577.711914,3518948275625.832031,75,0,8.420123,0.012752,63584082,31019878,0,0,78943,0,1,1 +1773671371.323416,5.37,4,3992.50,55.28,1569.51,2164.25,0.00,0.000000,0.000000,75,0,31.673057,0.011497,63587282,31020620,0,0,78946,0,1,1 +1773671376.326550,0.65,4,3992.50,54.57,1597.12,2136.64,0.00,2.120546,0.000195,258,2,0.000000,0.000020,63587282,31020622,0,0,78948,0,1,1 +1773671381.327471,0.70,4,3992.50,54.24,1609.99,2123.77,0.00,0.000000,0.000000,258,2,0.000000,0.000030,63587282,31020625,0,0,78951,0,1,1 +1773671386.325803,0.70,4,3992.50,54.24,1605.81,2123.46,0.00,48436.910675,58392.023576,3377709,3100645,0.000000,0.000020,63587282,31020627,0,0,78953,0,1,1 +1773671391.327913,1.10,4,3992.50,54.23,1602.61,2123.13,0.00,9.722069,10.701343,3379212,3101339,0.000000,0.000030,63587282,31020630,0,0,78956,0,1,1 +1773671396.327615,0.60,4,3992.50,54.21,1603.36,2122.38,0.00,3518646690934.887207,3518646680983.697754,11,0,0.000000,0.000664,63587282,31020636,0,0,78958,0,1,1 +1773671401.328141,0.85,4,3992.50,54.22,1603.06,2122.68,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63587282,31020639,0,0,78961,0,1,1 +1773671406.328104,1.10,4,3992.50,54.05,1609.46,2116.29,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63587282,31020641,0,0,78963,0,1,1 +1773671411.327822,0.80,4,3992.50,53.97,1612.85,2112.89,0.00,48435.401825,58386.666791,3379220,3101444,0.000031,0.000055,63587284,31020646,0,0,78966,0,1,1 +1773671416.324873,1.25,4,3992.50,53.97,1615.67,2113.11,0.00,3520513487487.030273,3520513477530.401367,75,0,0.000165,0.000209,63587297,31020661,0,0,78968,0,1,1 +1773671421.327893,0.80,4,3992.50,53.97,1615.67,2113.08,0.00,3516313676813.421387,0.000000,11,0,0.000000,0.000030,63587297,31020664,0,0,78971,0,1,1 +1773671426.323425,0.85,4,3992.50,53.77,1623.54,2105.21,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63587297,31020666,0,0,78973,0,1,1 +1773671431.328548,14.95,4,3992.50,58.77,1427.77,2300.98,0.00,0.000000,0.000000,11,0,23.415935,0.016985,63589988,31021820,0,0,78976,0,1,1 +1773671436.323417,2.11,4,3992.50,54.61,1590.73,2138.02,0.00,1.659418,10.686162,253,668,16.647988,0.014541,63591865,31022860,0,0,78978,0,1,1 +1773671441.327974,0.75,4,3992.50,54.14,1608.88,2119.86,0.00,48377.189452,58309.047509,3377717,3100944,0.000000,0.000030,63591865,31022863,0,0,78981,0,1,1 +1773671446.323454,0.95,4,3992.50,54.36,1585.48,2128.46,0.00,3521620811322.318359,3521620801363.387207,11,0,0.000000,0.000020,63591865,31022865,0,0,78983,0,1,1 +1773671451.327682,0.70,4,3992.50,54.35,1585.74,2127.91,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63591865,31022868,0,0,78986,0,1,1 +1773671456.328049,0.55,4,3992.50,54.29,1587.96,2125.69,0.00,48419.383464,58368.707818,3377717,3101036,0.000000,0.000020,63591865,31022870,0,0,78988,0,1,1 +1773671461.327409,0.60,4,3992.50,54.12,1594.91,2118.74,0.00,9.727417,10.681446,3379220,3101710,0.000000,0.000674,63591865,31022877,0,0,78991,0,1,1 +1773671466.328099,0.70,4,3992.50,53.95,1601.58,2112.07,0.00,3517951678195.466309,3517951668254.846191,253,668,0.000000,0.000020,63591865,31022879,0,0,78993,0,1,1 +1773671471.326289,0.60,4,3992.50,53.94,1601.58,2112.06,0.00,0.000000,0.000000,253,668,0.001435,0.001787,63591881,31022907,0,0,78996,0,1,1 +1773671476.327599,1.05,4,3992.50,54.23,1590.29,2123.35,0.00,0.517540,3517515940493.569824,258,2,0.000244,0.000572,63591891,31022922,0,0,78998,0,1,1 +1773671481.327369,0.65,4,3992.50,54.10,1595.55,2118.09,0.00,3518598603480.367676,3518598603482.543457,11,0,0.000126,0.000198,63591901,31022936,0,0,79001,0,1,1 +1773671486.328267,0.55,4,3992.50,54.11,1595.31,2118.34,0.00,48414.247448,58362.581274,3377717,3101085,0.000000,0.000020,63591901,31022938,0,0,79003,0,1,1 +1773671491.327700,0.65,4,3992.50,54.11,1595.08,2118.57,0.00,9.727275,10.680509,3379220,3101759,0.000000,0.000030,63591901,31022941,0,0,79006,0,1,1 +1773671496.328122,11.14,4,3992.50,58.70,1415.25,2298.40,0.00,3518140091515.717285,3518140081565.483887,11,0,18.632773,0.016782,63594138,31024038,0,0,79008,0,1,1 +1773671501.323800,2.96,4,3992.50,54.53,1578.65,2134.99,0.00,48464.837582,58423.677396,3377717,3101215,21.451654,0.011845,63596394,31024866,0,0,79011,0,1,1 +1773671506.328331,1.00,4,3992.50,54.09,1598.02,2117.82,0.00,9.717366,10.738316,3379220,3101913,0.000008,0.000028,63596395,31024869,0,0,79013,0,1,1 +1773671511.327983,0.65,4,3992.50,53.91,1604.73,2110.69,0.00,0.000000,0.035159,3379220,3101948,0.000000,0.000030,63596395,31024872,0,0,79016,0,1,1 +1773671516.327576,0.60,4,3992.50,53.90,1605.12,2110.30,0.00,3518724001769.493164,3518724001768.546875,3377717,3101281,0.000062,0.000070,63596399,31024878,0,0,79018,0,1,1 +1773671521.323425,0.70,4,3992.50,53.90,1605.13,2110.30,0.00,3521360576404.040039,3521360566445.376953,75,0,0.000031,0.000042,63596401,31024882,0,0,79021,0,1,1 +1773671526.323498,0.55,4,3992.50,53.90,1605.13,2110.30,0.00,2.121844,0.000195,258,2,0.000000,0.000676,63596401,31024889,0,0,79023,0,1,1 +1773671531.324916,0.90,4,3992.50,53.90,1605.13,2110.29,0.00,3517439742464.200195,3517439742466.375000,11,0,0.003150,0.002514,63596455,31024931,0,0,79026,0,1,1 +1773671536.327291,0.80,4,3992.50,53.94,1605.16,2111.97,0.00,0.180188,0.000000,205,0,0.000008,0.000028,63596456,31024934,0,0,79028,0,1,1 +1773671541.328100,0.70,4,3992.50,53.94,1605.11,2111.97,0.00,3517867839158.957520,0.000000,11,0,0.000031,0.000055,63596458,31024939,0,0,79031,0,1,1 +1773671546.323503,0.65,4,3992.50,53.95,1604.88,2112.20,0.00,48477.240686,58437.746166,3379220,3101991,0.000076,0.000113,63596464,31024947,0,0,79033,0,1,1 +1773671551.325378,0.75,4,3992.50,53.95,1604.94,2112.14,0.00,0.000000,0.003124,3379220,3101994,0.000000,0.000030,63596464,31024950,0,0,79036,0,1,1 +1773671556.328401,0.60,4,3992.50,53.95,1604.94,2112.14,0.00,3516310759428.712402,3516310749481.202148,258,2,0.000000,0.000020,63596464,31024952,0,0,79038,0,1,1 +1773671561.327843,11.06,4,3992.50,58.65,1420.78,2296.27,0.00,3518830072888.766602,10.676192,253,668,9.220292,0.010684,63597685,31025634,0,0,79041,0,1,1 +1773671566.327160,4.91,4,3992.50,54.46,1579.46,2132.27,0.00,48427.905288,58370.828544,3377717,3101481,30.850464,0.016189,63600874,31026788,0,0,79043,0,1,1 +1773671571.323508,0.75,4,3992.50,53.92,1600.45,2111.26,0.00,3521008732710.860352,3521008722762.030273,253,668,0.000000,0.000030,63600874,31026791,0,0,79046,0,1,1 +1773671576.323437,0.65,4,3992.50,53.68,1609.97,2101.74,0.00,3518487283992.567871,3518487283983.550781,11,0,0.000081,0.000107,63600880,31026799,0,0,79048,0,1,1 +1773671581.323509,0.65,4,3992.50,53.68,1609.97,2101.74,0.00,1.657691,10.675040,253,668,0.000000,0.000030,63600880,31026802,0,0,79051,0,1,1 +1773671586.325637,0.60,4,3992.50,53.68,1609.92,2101.79,0.00,3516940979096.153809,3516940979087.086914,75,0,0.000000,0.000020,63600880,31026804,0,0,79053,0,1,1 +1773671591.327634,0.65,4,3992.50,53.68,1610.17,2101.54,0.00,3517032451959.533691,0.000000,11,0,0.000000,0.000673,63600880,31026811,0,0,79056,0,1,1 +1773671596.327708,1.05,4,3992.50,53.67,1610.45,2101.26,0.00,0.053515,0.000000,75,0,0.000000,0.000020,63600880,31026813,0,0,79058,0,1,1 +1773671601.326684,1.20,4,3992.50,53.49,1617.55,2094.17,0.00,3519157690260.062500,0.000000,11,0,0.000000,0.000030,63600880,31026816,0,0,79061,0,1,1 +1773671606.328216,0.70,4,3992.50,53.49,1617.55,2094.16,0.00,48408.110237,58355.782881,3377717,3101602,0.000031,0.000045,63600882,31026820,0,0,79063,0,1,1 +1773671611.327856,0.60,4,3992.50,53.49,1617.55,2094.16,0.00,3518690982641.821289,3518690972690.329590,75,0,0.000142,0.000201,63600894,31026835,0,0,79066,0,1,1 +1773671616.328023,0.70,4,3992.50,53.49,1617.55,2094.16,0.00,2.121804,0.000195,258,2,0.000000,0.000020,63600894,31026837,0,0,79068,0,1,1 +1773671621.323787,0.60,4,3992.50,53.49,1617.55,2094.16,0.00,48461.821854,58423.166638,3377717,3101610,0.000000,0.000030,63600894,31026840,0,0,79071,0,1,1 +1773671626.327543,7.97,4,3992.50,58.75,1411.28,2300.18,0.00,3515795824625.855957,3515795814680.421875,258,2,5.009703,0.008753,63601680,31027369,0,0,79073,0,1,1 +1773671631.327602,6.67,4,3992.50,53.68,1609.92,2101.56,0.00,3518395764995.287598,10.674874,253,668,35.052289,0.012913,63605340,31028243,0,0,79076,0,1,1 +1773671636.326384,0.60,4,3992.50,53.68,1609.92,2101.55,0.00,3519294884272.185547,3519294884263.166504,11,0,0.000000,0.000020,63605340,31028245,0,0,79078,0,1,1 +1773671641.327875,0.65,4,3992.50,53.68,1609.70,2101.79,0.00,48408.507394,58356.483071,3377717,3101800,0.000000,0.000030,63605340,31028248,0,0,79081,0,1,1 +1773671646.327979,0.70,4,3992.50,53.68,1609.70,2101.79,0.00,9.725970,10.676731,3379220,3102471,0.000000,0.000020,63605340,31028250,0,0,79083,0,1,1 +1773671651.327547,0.55,4,3992.50,53.68,1609.70,2101.78,0.00,3518740565967.077148,3518740556014.326172,11,0,0.000000,0.000030,63605340,31028253,0,0,79086,0,1,1 +1773671656.327859,0.60,4,3992.50,53.68,1609.70,2101.77,0.00,2.175255,0.000195,258,2,0.000000,0.000664,63605340,31028259,0,0,79088,0,1,1 +1773671661.326351,0.70,4,3992.50,53.68,1609.77,2101.71,0.00,48435.380307,58391.574092,3377717,3101832,0.000000,0.000030,63605340,31028262,0,0,79091,0,1,1 +1773671666.325743,0.80,4,3992.50,53.68,1606.86,2101.70,0.00,3518864684222.953125,3518864674279.747559,253,668,0.000000,0.000020,63605340,31028264,0,0,79093,0,1,1 +1773671671.323405,0.55,4,3992.50,53.68,1606.87,2101.70,0.00,3520083778053.916992,3520083778044.895508,11,0,0.000031,0.000055,63605342,31028269,0,0,79096,0,1,1 +1773671676.323679,0.55,4,3992.50,53.51,1613.52,2095.05,0.00,0.053513,0.000000,75,0,0.000165,0.000208,63605355,31028284,0,0,79098,0,1,1 +1773671681.326540,0.60,4,3992.50,53.52,1613.30,2095.27,0.00,0.000000,0.000000,75,0,0.000000,0.000030,63605355,31028287,0,0,79101,0,1,1 +1773671686.326503,0.80,4,3992.50,53.63,1608.90,2099.68,0.00,48423.243260,58374.456993,3377717,3101891,0.000000,0.000020,63605355,31028289,0,0,79103,0,1,1 +1773671691.327746,0.90,4,3992.50,53.46,1615.58,2093.00,0.00,3517562510099.972168,3517562500151.358398,11,0,0.002865,0.001329,63605379,31028308,0,0,79106,0,1,1 +1773671696.323679,0.75,4,3992.50,53.46,1615.59,2092.97,0.00,0.000000,0.000000,11,0,0.000112,0.000958,63605386,31028322,0,0,79108,0,1,1 +1773671701.327436,0.65,4,3992.50,53.46,1615.61,2092.97,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63605386,31028325,0,0,79111,0,1,1 +1773671706.328005,11.85,4,3992.50,58.78,1407.32,2301.22,0.00,0.180253,0.000000,205,0,21.342414,0.018448,63608008,31029685,0,0,79113,0,1,1 +1773671711.323433,2.51,4,3992.50,54.65,1568.95,2139.61,0.00,48467.097955,58427.608587,3377721,3102019,18.734495,0.011136,63609929,31030529,0,0,79116,0,1,1 +1773671716.328154,0.70,4,3992.50,54.07,1591.80,2116.76,0.00,9.716998,10.694200,3379224,3102691,0.000248,0.000776,63609938,31030544,0,0,79118,0,1,1 +1773671721.328198,1.20,4,3992.50,53.86,1598.83,2108.63,0.00,0.000000,0.050097,3379224,3102730,0.003086,0.001446,63609994,31030585,0,0,79121,0,1,1 +1773671726.328081,0.60,4,3992.50,53.88,1598.03,2109.43,0.00,3518519556439.435547,3518519546495.968750,253,668,0.000008,0.000028,63609995,31030588,0,0,79123,0,1,1 +1773671731.326153,0.45,4,3992.50,53.88,1598.04,2109.43,0.00,0.000000,0.000000,253,668,0.000000,0.000030,63609995,31030591,0,0,79126,0,1,1 +1773671736.326864,0.60,4,3992.50,53.88,1598.04,2109.43,0.00,3517936990606.678711,3517936990597.482422,205,0,0.000000,0.000664,63609995,31030597,0,0,79128,0,1,1 +1773671741.323439,0.60,4,3992.50,53.88,1598.04,2109.43,0.00,48455.980536,58414.384959,3377721,3102170,0.000000,0.000030,63609995,31030600,0,0,79131,0,1,1 +1773671746.327739,0.65,4,3992.50,53.88,1598.04,2109.42,0.00,3515413867973.654785,3515413858030.624023,205,0,0.000000,0.000020,63609995,31030602,0,0,79133,0,1,1 +1773671751.323441,0.85,4,3992.50,54.15,1587.30,2120.13,0.00,48474.176590,58435.326309,3379224,3102867,0.000031,0.000055,63609997,31030607,0,0,79136,0,1,1 +1773671756.327600,0.65,4,3992.50,54.15,1587.33,2120.13,0.00,3515512521211.812988,3515512511267.678223,11,0,0.000039,0.000053,63610000,31030612,0,0,79138,0,1,1 +1773671761.328314,0.50,4,3992.50,54.16,1587.10,2120.36,0.00,0.000000,0.000000,11,0,0.000056,0.000086,63610004,31030619,0,0,79141,0,1,1 +1773671766.325581,0.60,4,3992.50,54.15,1587.20,2120.27,0.00,48459.169197,58417.047255,3379224,3102889,0.000101,0.000144,63610012,31030629,0,0,79143,0,1,1 +1773671771.323453,0.70,4,3992.50,54.15,1587.20,2120.26,0.00,0.000000,0.000782,3379224,3102890,0.000521,0.001125,63610027,31030655,0,0,79146,0,1,1 +1773671776.323474,0.85,4,3992.50,54.15,1587.93,2120.24,0.00,3518422641327.638184,3518422631375.241211,11,0,0.000035,0.000078,63610030,31030661,0,0,79148,0,1,1 +1773671781.323424,1.00,4,3992.50,53.90,1597.61,2110.50,0.00,0.000000,0.000000,11,0,0.002379,0.001199,63610056,31030686,0,0,79151,0,1,1 +1773671786.323432,13.10,4,3992.50,55.61,1530.77,2177.35,0.00,48422.885008,58374.493058,3377721,3102350,40.060284,0.019379,63614436,31032040,0,0,79153,0,1,1 +1773671791.327529,0.70,4,3992.50,54.70,1566.66,2141.45,0.00,0.000000,0.012685,3377721,3102375,0.003331,0.002202,63614501,31032094,0,0,79156,0,1,1 +1773671796.327593,0.60,4,3992.50,54.23,1585.03,2123.09,0.00,3518392581722.727539,3518392571771.036133,205,0,0.000000,0.000020,63614501,31032096,0,0,79158,0,1,1 +1773671801.325862,0.55,4,3992.50,53.91,1597.38,2110.74,0.00,3519655420754.407227,0.000000,75,0,0.000000,0.000352,63614501,31032101,0,0,79161,0,1,1 +1773671806.326735,0.80,4,3992.50,54.51,1582.07,2134.15,0.00,3517823369108.612305,0.000000,11,0,0.000000,0.000342,63614501,31032105,0,0,79163,0,1,1 +1773671811.324131,0.75,4,3992.50,54.45,1584.22,2131.91,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63614501,31032108,0,0,79166,0,1,1 +1773671816.323326,0.55,4,3992.50,54.26,1591.81,2124.33,0.00,0.000000,0.000000,11,0,0.000062,0.000070,63614505,31032114,0,0,79168,0,1,1 +1773671821.328317,0.65,4,3992.50,54.26,1591.93,2124.21,0.00,1.656062,10.664550,253,668,0.000008,0.000038,63614506,31032118,0,0,79171,0,1,1 +1773671826.323693,0.55,4,3992.50,54.25,1592.04,2124.10,0.00,48475.859243,58428.781665,3379224,3103146,0.000031,0.000045,63614508,31032122,0,0,79173,0,1,1 +1773671831.323766,0.90,4,3992.50,54.26,1591.82,2124.32,0.00,3518385623140.077637,3518385613185.311523,258,2,0.003465,0.002326,63614565,31032170,0,0,79176,0,1,1 +1773671836.327970,0.85,4,3992.50,54.48,1583.21,2132.93,0.00,48389.833309,58336.414613,3379224,3103161,0.000107,0.000138,63614573,31032180,0,0,79178,0,1,1 +1773671841.329118,9.17,4,3992.50,92.27,142.61,3612.64,0.00,3517629710359.800781,3517629700409.316406,11,0,0.000000,0.000030,63614573,31032183,0,0,79181,0,1,1 +1773671846.324222,28.86,4,3992.50,55.35,1578.96,2167.06,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63614573,31032185,0,0,79183,0,1,1 +1773671851.328195,29.14,4,3992.50,68.08,1069.70,2665.66,0.00,0.000000,0.000000,11,0,0.002207,0.000724,63614595,31032203,0,0,79186,0,1,1 +1773671856.324761,42.25,4,3992.50,90.03,210.23,3524.97,0.00,0.000000,0.000000,11,0,40.091281,0.022098,63619018,31033697,0,0,79188,0,1,1 +1773671861.324460,28.81,4,3992.50,62.07,1311.58,2430.20,0.00,0.000000,0.000000,11,0,0.000008,0.000038,63619019,31033701,0,0,79191,0,1,1 +1773671866.328627,29.30,4,3992.50,87.58,292.46,3428.91,0.00,0.180123,0.000000,205,0,0.000000,0.000663,63619019,31033707,0,0,79193,0,1,1 +1773671871.325110,23.20,4,3992.50,53.63,1638.11,2099.68,0.00,1.478481,10.682709,253,668,0.000000,0.000030,63619019,31033710,0,0,79196,0,1,1 +1773671876.327907,0.65,4,3992.50,53.61,1634.62,2098.76,0.00,0.517386,3516470007638.501953,258,2,0.000081,0.000107,63619025,31033718,0,0,79198,0,1,1 +1773671881.326319,0.70,4,3992.50,53.54,1635.39,2096.18,0.00,3519555621590.632812,3519555621592.628906,205,0,0.000000,0.000030,63619025,31033721,0,0,79201,0,1,1 +1773671886.328006,0.65,4,3992.50,53.43,1638.87,2091.77,0.00,3517250224160.171387,0.000000,11,0,0.000000,0.000020,63619025,31033723,0,0,79203,0,1,1 +1773671891.323441,0.60,4,3992.50,53.47,1636.13,2093.35,0.00,49343.830968,58453.512151,3432401,3116243,0.000000,0.000030,63619025,31033726,0,0,79206,0,1,1 +1773671896.328040,1.05,4,3992.50,53.83,1611.46,2107.57,0.00,3515203610959.746094,3515203601866.746094,11,0,0.000000,0.000020,63619025,31033728,0,0,79208,0,1,1 +1773671901.326267,0.55,4,3992.50,53.56,1622.01,2096.84,0.00,49310.802948,58410.455359,3431135,3115805,0.000157,0.000210,63619037,31033743,0,0,79211,0,1,1 +1773671906.328091,0.55,4,3992.50,53.52,1623.33,2095.45,0.00,3517153914729.207520,3517153905636.100586,11,0,0.000008,0.000028,63619038,31033746,0,0,79213,0,1,1 +1773671911.328292,0.60,4,3992.50,53.52,1623.40,2095.23,0.00,49301.143290,58398.090560,3432642,3116495,0.000000,0.000030,63619038,31033749,0,0,79216,0,1,1 +1773671916.327768,0.90,4,3992.50,53.39,1619.94,2090.38,0.00,3518805356112.546875,3518805347014.102539,205,0,0.002197,0.000398,63619059,31033765,0,0,79218,0,1,1 +1773671921.328341,11.42,4,3992.50,54.66,1553.29,2140.07,0.00,1.477272,10.673973,253,668,40.060254,0.020597,63623603,31035108,0,0,79221,0,1,1 +1773671926.326226,0.95,4,3992.50,54.10,1575.40,2117.97,0.00,0.517895,3519926130585.910645,258,2,0.000000,0.000020,63623603,31035110,0,0,79223,0,1,1 +1773671931.328672,8.27,4,3992.50,76.97,719.24,3013.58,0.00,3516716781094.335449,3516716781096.509766,11,0,0.000000,0.000512,63623603,31035116,0,0,79226,0,1,1 +1773671936.328181,29.33,4,3992.50,76.25,759.63,2985.51,0.00,0.180291,0.000000,205,0,0.000000,0.000181,63623603,31035119,0,0,79228,0,1,1 +1773671941.324467,29.48,4,3992.50,59.54,1404.11,2331.18,0.00,49754.765526,58450.708170,3459712,3122723,0.000000,0.000030,63623603,31035122,0,0,79231,0,1,1 +1773671946.324478,30.02,4,3992.50,75.39,785.77,2951.78,0.00,3518429591024.811523,3518429582344.543457,253,668,0.000000,0.000020,63623603,31035124,0,0,79233,0,1,1 +1773671951.329419,29.65,4,3992.50,56.28,1537.66,2203.38,0.00,3514963918375.563477,3514963918366.375000,205,0,0.000013,0.000030,63623604,31035127,0,0,79236,0,1,1 +1773671956.328586,29.78,4,3992.50,59.73,1402.18,2338.60,0.00,0.000000,0.000000,205,0,0.000000,0.000020,63623604,31035129,0,0,79238,0,1,1 +1773671961.325301,23.59,4,3992.50,53.34,1654.42,2088.34,0.00,3520750002938.800293,0.000000,11,0,0.000000,0.000030,63623604,31035132,0,0,79241,0,1,1 +1773671966.327844,0.60,4,3992.50,53.43,1644.64,2091.94,0.00,50340.361037,58389.379791,3503974,3133408,0.000188,0.000226,63623618,31035148,0,0,79243,0,1,1 +1773671971.328044,0.55,4,3992.50,53.48,1641.94,2094.04,0.00,3518296549797.805176,3518296541742.840332,258,2,0.000008,0.000038,63623619,31035152,0,0,79246,0,1,1 +1773671976.327950,0.75,4,3992.50,53.43,1642.31,2092.06,0.00,50365.608389,58420.170356,3504055,3133413,0.000000,0.000020,63623619,31035154,0,0,79248,0,1,1 +1773671981.327587,0.55,4,3992.50,53.33,1646.23,2087.88,0.00,3518692761676.534668,3518692761675.468262,3502560,3132746,0.000000,0.000030,63623619,31035157,0,0,79251,0,1,1 +1773671986.326046,12.35,4,3992.50,54.24,1567.98,2123.44,0.00,3519521922346.203125,3519521914290.375977,258,2,40.077849,0.021256,63628111,31036549,0,0,79253,0,1,1 +1773671991.323869,0.70,4,3992.50,53.86,1582.71,2108.73,0.00,3519969825568.548340,10.679650,253,668,0.000619,0.000283,63628123,31036559,0,0,79256,0,1,1 +1773671996.323485,0.60,4,3992.50,53.82,1584.29,2107.16,0.00,3518707214768.496582,3518707214759.425293,75,0,0.000000,0.000664,63628123,31036565,0,0,79258,0,1,1 +1773672001.323484,0.55,4,3992.50,53.68,1589.86,2101.54,0.00,0.000000,0.000000,75,0,0.000000,0.000030,63628123,31036568,0,0,79261,0,1,1 +1773672006.323640,0.75,4,3992.50,53.74,1587.29,2104.15,0.00,50417.327263,58417.573264,3505272,3133700,0.000000,0.000020,63628123,31036570,0,0,79263,0,1,1 +1773672011.325131,0.55,4,3992.50,53.69,1589.36,2102.04,0.00,3517388258512.580566,3517388250514.469727,75,0,0.000000,0.000030,63628123,31036573,0,0,79266,0,1,1 +1773672016.327462,0.80,4,3992.50,53.79,1586.28,2105.90,0.00,3516797824739.401855,0.000000,11,0,0.000000,0.000020,63628123,31036575,0,0,79268,0,1,1 +1773672021.328255,8.17,4,3992.50,91.60,165.28,3586.48,0.00,1.657452,10.673501,253,668,0.000000,0.000030,63628123,31036578,0,0,79271,0,1,1 +1773672026.328203,28.31,4,3992.50,70.45,975.11,2758.38,0.00,3518473866453.367188,3518473866444.349609,11,0,0.000000,0.000020,63628123,31036580,0,0,79273,0,1,1 +1773672031.328721,28.92,4,3992.50,82.63,501.34,3235.13,0.00,1.657543,10.674090,253,668,0.000163,0.000204,63628135,31036595,0,0,79276,0,1,1 +1773672036.328659,29.58,4,3992.50,87.01,335.06,3406.60,0.00,3518481032970.200195,3518481032961.182617,11,0,0.000033,0.000059,63628138,31036600,0,0,79278,0,1,1 +1773672041.328177,28.86,4,3992.50,89.70,223.26,3511.98,0.00,50984.799185,58425.440209,3540424,3142688,0.000000,0.000030,63628138,31036603,0,0,79281,0,1,1 +1773672046.328666,29.82,4,3992.50,84.84,395.87,3321.74,0.00,3518092705668.217285,3518092698229.022461,11,0,0.000000,0.000020,63628138,31036605,0,0,79283,0,1,1 +1773672051.328789,35.58,4,3992.50,58.98,1421.67,2309.04,0.00,0.000000,0.000000,11,0,38.262242,0.028061,63632345,31038556,0,0,79286,0,1,1 +1773672056.325095,0.90,4,3992.50,54.87,1577.12,2148.33,0.00,0.180407,0.000000,205,0,1.808561,0.004031,63632633,31038771,0,0,79288,0,1,1 +1773672061.326545,0.55,4,3992.50,54.22,1601.78,2122.98,0.00,3517417107974.384277,0.000000,11,0,0.000000,0.000352,63632633,31038776,0,0,79291,0,1,1 +1773672066.323496,0.75,4,3992.50,53.87,1614.74,2109.32,0.00,0.053548,0.000000,75,0,0.000000,0.000342,63632633,31038780,0,0,79293,0,1,1 +1773672071.323432,0.70,4,3992.50,53.87,1614.44,2108.96,0.00,51308.788749,58425.545408,3559478,3147054,0.001434,0.001786,63632649,31038808,0,0,79296,0,1,1 +1773672076.325855,1.05,4,3992.50,54.14,1593.26,2119.82,0.00,3516733364967.754883,3516733357854.407715,205,0,0.000008,0.000028,63632650,31038811,0,0,79298,0,1,1 +1773672081.324481,0.70,4,3992.50,53.80,1606.26,2106.47,0.00,51336.099503,58451.893966,3561221,3147990,0.000205,0.000562,63632657,31038825,0,0,79301,0,1,1 +1773672086.327709,0.55,4,3992.50,53.77,1607.30,2105.36,0.00,3516166817875.239746,3516166810763.997559,258,2,0.000000,0.000020,63632657,31038827,0,0,79303,0,1,1 +1773672091.328037,0.60,4,3992.50,53.76,1607.50,2104.93,0.00,3518206100033.290527,3518206100035.412109,75,0,0.000000,0.000030,63632657,31038830,0,0,79306,0,1,1 +1773672096.323990,0.55,4,3992.50,53.76,1607.72,2104.72,0.00,1.605499,10.683843,253,668,0.000031,0.000045,63632659,31038834,0,0,79308,0,1,1 +1773672101.327466,0.65,4,3992.50,53.76,1607.50,2104.94,0.00,0.517316,3515992751478.383789,258,2,0.000126,0.000185,63632669,31038847,0,0,79311,0,1,1 +1773672106.323481,0.80,4,3992.50,54.03,1597.19,2115.43,0.00,51361.252161,58482.523240,3561244,3148047,0.000000,0.000020,63632669,31038849,0,0,79313,0,1,1 +1773672111.328524,7.56,4,3992.50,87.11,319.21,3410.71,0.00,3514891845734.182129,3514891838625.756836,258,2,0.000000,0.000030,63632669,31038852,0,0,79316,0,1,1 +1773672116.326323,41.93,4,3992.50,73.24,862.92,2867.57,0.00,3519987313438.215332,3519987313440.391602,11,0,31.633119,0.020396,63636250,31040234,0,0,79318,0,1,1 +1773672121.326415,29.41,4,3992.50,94.05,48.03,3682.19,0.00,51719.883081,58440.566294,3584105,3153095,8.450775,0.007920,63637246,31040754,0,0,79321,0,1,1 +1773672126.324789,29.68,4,3992.50,61.37,1332.58,2402.69,0.00,3519581814565.831543,3519581807842.836914,11,0,0.000031,0.000045,63637248,31040758,0,0,79323,0,1,1 +1773672131.324502,29.11,4,3992.50,92.58,114.46,3624.52,0.00,0.053519,0.000000,75,0,0.003126,0.003164,63637300,31040804,0,0,79326,0,1,1 +1773672136.328226,28.76,4,3992.50,75.79,768.45,2967.20,0.00,0.126663,0.000000,205,0,0.000000,0.000020,63637300,31040806,0,0,79328,0,1,1 +1773672141.325898,23.90,4,3992.50,53.88,1628.84,2109.36,0.00,1.478130,10.680168,253,668,0.000000,0.000030,63637300,31040809,0,0,79331,0,1,1 +1773672146.326084,0.70,4,3992.50,53.84,1625.38,2107.80,0.00,0.000000,0.000000,253,668,0.000000,0.000020,63637300,31040811,0,0,79333,0,1,1 +1773672151.327796,0.65,4,3992.50,53.75,1628.37,2104.23,0.00,52258.764535,58422.054349,3619108,3162694,0.000000,0.000030,63637300,31040814,0,0,79336,0,1,1 +1773672156.325221,0.70,4,3992.50,53.68,1630.87,2101.55,0.00,3520250571443.812500,3520250565266.159180,75,0,0.000000,0.000020,63637300,31040816,0,0,79338,0,1,1 +1773672161.326017,0.65,4,3992.50,53.68,1629.45,2101.70,0.00,3517876799148.260742,0.000000,11,0,0.000062,0.000080,63637304,31040823,0,0,79341,0,1,1 +1773672166.323983,0.95,4,3992.50,53.93,1609.62,2111.32,0.00,52294.737236,58466.142901,3617881,3162271,0.000084,0.000121,63637311,31040832,0,0,79343,0,1,1 +1773672171.327986,0.65,4,3992.50,53.85,1612.53,2108.37,0.00,0.003903,0.021077,3617883,3162290,0.000000,0.000030,63637311,31040835,0,0,79346,0,1,1 +1773672176.327408,0.65,4,3992.50,53.81,1613.98,2106.80,0.00,3518843747746.663574,3518843741574.863281,258,2,0.000132,0.000169,63637321,31040847,0,0,79348,0,1,1 +1773672181.328324,0.60,4,3992.50,53.80,1614.18,2106.42,0.00,3517792842805.565918,3517792842807.687500,75,0,0.000000,0.000030,63637321,31040850,0,0,79351,0,1,1 +1773672186.327050,13.21,4,3992.50,59.17,1377.88,2316.54,0.00,3519333566249.668945,0.000000,11,0,23.799606,0.019010,63640093,31042114,0,0,79353,0,1,1 +1773672191.328221,2.61,4,3992.50,55.10,1537.03,2157.41,0.00,0.053503,0.000000,75,0,16.270618,0.005466,63641855,31042445,0,0,79356,0,1,1 +1773672196.327479,1.00,4,3992.50,54.61,1556.43,2138.01,0.00,2.122190,0.000195,258,2,0.000000,0.000664,63641855,31042451,0,0,79358,0,1,1 +1773672201.324395,7.87,4,3992.50,89.52,232.54,3504.91,0.00,52395.831217,58489.940081,3622790,3163686,0.000000,0.000030,63641855,31042454,0,0,79361,0,1,1 +1773672206.325242,29.43,4,3992.50,55.56,1563.12,2175.35,0.00,3517841578199.123535,3517841572111.925781,75,0,0.000000,0.000020,63641855,31042456,0,0,79363,0,1,1 +1773672211.327000,29.45,4,3992.50,65.93,1158.23,2581.32,0.00,3517199936027.490234,0.000000,11,0,0.000000,0.000030,63641855,31042459,0,0,79366,0,1,1 +1773672216.328756,29.83,4,3992.50,68.07,1074.38,2665.27,0.00,0.180210,0.000000,205,0,0.000000,0.000020,63641855,31042461,0,0,79368,0,1,1 +1773672221.328437,29.74,4,3992.50,61.29,1341.11,2399.50,0.00,1.477536,10.675877,253,668,0.000000,0.000030,63641855,31042464,0,0,79371,0,1,1 +1773672226.328700,30.63,4,3992.50,85.89,366.20,3362.66,0.00,53222.520511,58446.110783,3682829,3177763,0.000000,0.000020,63641855,31042466,0,0,79373,0,1,1 +1773672231.328507,23.72,4,3992.50,54.07,1624.23,2116.77,0.00,3518573080949.195801,3518573075716.110840,11,0,0.000031,0.000055,63641857,31042471,0,0,79376,0,1,1 +1773672236.323428,0.55,4,3992.50,53.89,1626.36,2109.91,0.00,1.659400,10.686050,253,668,0.000142,0.000192,63641869,31042485,0,0,79378,0,1,1 +1773672241.323451,0.60,4,3992.50,53.89,1625.50,2110.07,0.00,3518421484352.424805,3518421484343.227539,205,0,0.000000,0.000030,63641869,31042488,0,0,79381,0,1,1 +1773672246.323449,0.65,4,3992.50,53.73,1630.55,2103.80,0.00,3518438611332.703613,0.000000,75,0,0.000000,0.000020,63641869,31042490,0,0,79383,0,1,1 +1773672251.323559,0.75,4,3992.50,53.66,1632.02,2100.98,0.00,53380.263080,58461.838171,3693403,3180687,0.000000,0.000030,63641869,31042493,0,0,79386,0,1,1 +1773672256.327976,9.39,4,3992.50,58.89,1400.42,2305.58,0.00,59.009975,10.739243,3696054,3181407,18.815035,0.013126,63644024,31043370,0,0,79388,0,1,1 +1773672261.324952,3.21,4,3992.50,54.70,1564.50,2141.49,0.00,3520566909720.693848,3520566904684.273438,75,0,21.245713,0.007597,63646267,31043823,0,0,79391,0,1,1 +1773672266.323443,0.65,4,3992.50,54.23,1582.74,2123.21,0.00,2.122515,0.000195,258,2,0.000000,0.000020,63646267,31043825,0,0,79393,0,1,1 +1773672271.325763,0.55,4,3992.50,53.89,1596.01,2109.97,0.00,3516805552480.310059,3516805552482.431152,75,0,0.000000,0.000030,63646267,31043828,0,0,79396,0,1,1 +1773672276.327120,0.70,4,3992.50,53.89,1596.07,2109.92,0.00,3517482160417.856934,0.000000,11,0,0.000000,0.000020,63646267,31043830,0,0,79398,0,1,1 +1773672281.323421,0.60,4,3992.50,53.89,1595.99,2110.00,0.00,53480.207547,58517.300684,3696076,3181540,0.000000,0.000030,63646267,31043833,0,0,79401,0,1,1 +1773672286.327500,0.90,4,3992.50,54.06,1595.75,2116.44,0.00,3515569440763.303223,3515569435733.985840,75,0,0.000000,0.000020,63646267,31043835,0,0,79403,0,1,1 +1773672291.328151,7.26,4,3992.50,87.45,297.57,3423.90,0.00,0.000000,0.000000,75,0,0.000000,0.000030,63646267,31043838,0,0,79406,0,1,1 +1773672296.325511,30.54,4,3992.50,72.27,907.50,2829.45,0.00,53588.121090,58507.236139,3703782,3183648,0.000000,0.000020,63646267,31043840,0,0,79408,0,1,1 +1773672301.328674,29.16,4,3992.50,91.89,126.43,3597.88,0.00,3516213235545.846191,3516213230641.500977,253,668,0.000031,0.000055,63646269,31043845,0,0,79411,0,1,1 +1773672306.324380,29.33,4,3992.50,77.44,689.91,3031.91,0.00,3521461250348.906738,3521461250339.701172,205,0,0.000142,0.000191,63646281,31043859,0,0,79413,0,1,1 +1773672311.325408,28.72,4,3992.50,72.70,887.59,2846.39,0.00,3517713841686.555664,0.000000,11,0,0.000000,0.000030,63646281,31043862,0,0,79416,0,1,1 +1773672316.325169,29.40,4,3992.50,67.63,1080.62,2647.89,0.00,1.657794,10.675706,253,668,0.000000,0.000020,63646281,31043864,0,0,79418,0,1,1 +1773672321.327833,31.21,4,3992.50,58.72,1394.14,2299.04,0.00,3516563409475.428223,3516563409466.416016,11,0,11.817172,0.013152,63647810,31044740,0,0,79421,0,1,1 +1773672326.323424,4.82,4,3992.50,53.78,1587.55,2105.65,0.00,2.177311,0.000195,258,2,28.266444,0.013362,63650648,31045639,0,0,79423,0,1,1 +1773672331.323477,0.85,4,3992.50,53.68,1591.62,2101.64,0.00,3518400231198.274414,3518400231200.449707,11,0,0.000000,0.000030,63650648,31045642,0,0,79426,0,1,1 +1773672336.326244,0.65,4,3992.50,53.61,1594.26,2099.00,0.00,0.053486,0.000000,75,0,0.000000,0.000020,63650648,31045644,0,0,79428,0,1,1 +1773672341.327980,0.80,4,3992.50,53.41,1602.24,2091.02,0.00,3517215814891.722168,0.000000,11,0,0.000000,0.000030,63650648,31045647,0,0,79431,0,1,1 +1773672346.324264,1.25,4,3992.50,53.75,1588.64,2104.59,0.00,0.180408,0.000000,205,0,0.000000,0.000020,63650648,31045649,0,0,79433,0,1,1 +1773672351.328346,0.75,4,3992.50,53.67,1591.86,2101.40,0.00,3515566736689.585938,0.000000,11,0,0.000000,0.000030,63650648,31045652,0,0,79436,0,1,1 +1773672356.323559,0.70,4,3992.50,53.58,1595.33,2097.96,0.00,2.177475,0.000195,258,2,0.000000,0.000020,63650648,31045654,0,0,79438,0,1,1 +1773672361.328379,0.65,4,3992.50,53.49,1599.11,2094.18,0.00,54134.595126,58421.913112,3742147,3194256,0.000000,0.000030,63650648,31045657,0,0,79441,0,1,1 +1773672366.328313,0.65,4,3992.50,53.48,1599.23,2093.98,0.00,3518483729567.070801,3518483725277.738281,11,0,0.000031,0.000045,63650650,31045661,0,0,79443,0,1,1 +1773672371.323857,0.75,4,3992.50,53.42,1601.61,2091.60,0.00,2.177331,0.000195,258,2,0.001569,0.001951,63650677,31045700,0,0,79446,0,1,1 +1773672376.328345,1.05,4,3992.50,53.73,1600.36,2103.52,0.00,0.000000,0.000000,258,2,0.000000,0.000020,63650677,31045702,0,0,79448,0,1,1 +1773672381.330784,6.26,4,3992.50,55.80,1557.43,2184.62,0.00,3516721990327.893555,3516721990330.067871,11,0,0.000205,0.000562,63650684,31045716,0,0,79451,0,1,1 +1773672386.328148,32.23,4,3992.50,75.45,723.28,2954.07,0.00,54443.221277,58522.755472,3755437,3197681,1.209046,0.006472,63651041,31045992,0,0,79453,0,1,1 +1773672391.325983,37.31,4,3992.50,93.04,91.86,3642.87,0.00,3519961631547.499512,3519961627468.349121,11,0,38.874476,0.019220,63655126,31047330,0,0,79456,0,1,1 +1773672396.325928,28.75,4,3992.50,65.45,1181.25,2562.46,0.00,54699.872684,58487.595629,3772847,3202317,0.000000,0.000020,63655126,31047332,0,0,79458,0,1,1 +1773672401.324595,28.73,4,3992.50,82.30,525.67,3222.05,0.00,3519376002636.547852,3519375998856.875000,253,668,0.000000,0.000030,63655126,31047335,0,0,79461,0,1,1 +1773672406.328882,29.19,4,3992.50,93.62,93.78,3665.49,0.00,54926.793673,58432.025595,3790319,3207699,0.000000,0.000020,63655126,31047337,0,0,79463,0,1,1 +1773672411.325518,25.49,4,3992.50,53.24,1654.91,2084.58,0.00,3520806117036.915527,3520806113517.291992,11,0,0.000000,0.000030,63655126,31047340,0,0,79466,0,1,1 +1773672416.323591,0.65,4,3992.50,53.34,1643.84,2088.46,0.00,55150.766825,58528.395634,3800898,3210577,0.000062,0.000070,63655130,31047346,0,0,79468,0,1,1 +1773672421.327758,0.65,4,3992.50,53.31,1644.20,2087.15,0.00,3515507343294.371094,3515507339929.865723,253,668,0.000008,0.000038,63655131,31047350,0,0,79471,0,1,1 +1773672426.323459,0.65,4,3992.50,53.34,1642.46,2088.46,0.00,3521465124470.258789,3521465124461.053223,205,0,0.000031,0.000045,63655133,31047354,0,0,79473,0,1,1 +1773672431.323476,0.80,4,3992.50,53.17,1647.31,2081.54,0.00,55130.518570,58505.651035,3801001,3210591,0.002512,0.001618,63655186,31047396,0,0,79476,0,1,1 +1773672436.327488,1.00,4,3992.50,53.56,1623.66,2096.93,0.00,3515616495889.506348,3515616492526.258301,253,668,0.000107,0.000138,63655194,31047406,0,0,79478,0,1,1 +1773672441.327732,0.65,4,3992.50,53.50,1623.93,2094.66,0.00,3518265601255.102539,3518265601245.905273,205,0,0.000000,0.000030,63655194,31047409,0,0,79481,0,1,1 +1773672446.327790,1.46,4,3992.50,53.07,1615.79,2077.89,0.00,3518396282193.785645,0.000000,11,0,0.000000,0.000020,63655194,31047411,0,0,79483,0,1,1 +1773672451.328345,0.85,4,3992.50,53.18,1611.46,2082.20,0.00,55134.200818,58489.030496,3810747,3210224,0.002196,0.000421,63655215,31047429,0,0,79486,0,1,1 +1773672456.328331,12.47,4,3992.50,54.68,1552.75,2140.95,0.00,3518446931506.905762,3518446928151.694336,11,0,40.062323,0.021983,63659570,31048873,0,0,79488,0,1,1 +1773672461.327469,0.65,4,3992.50,53.99,1579.64,2114.02,0.00,0.000000,0.000000,11,0,0.000008,0.000038,63659571,31048877,0,0,79491,0,1,1 +1773672466.326447,1.10,4,3992.50,53.83,1586.85,2107.60,0.00,55192.862102,58507.753430,3811140,3210467,0.000000,0.000020,63659571,31048879,0,0,79493,0,1,1 +1773672471.323830,0.60,4,3992.50,53.75,1590.24,2104.36,0.00,9.731265,10.718500,3812643,3211176,0.000000,0.000030,63659571,31048882,0,0,79496,0,1,1 +1773672476.324824,0.65,4,3992.50,53.75,1590.25,2104.36,0.00,3517738011003.410156,3517738007686.693848,258,2,0.000081,0.000107,63659577,31048890,0,0,79498,0,1,1 +1773672481.323454,0.60,4,3992.50,53.76,1589.82,2104.78,0.00,3519401422104.339844,3519401422106.335449,205,0,0.000000,0.000030,63659577,31048893,0,0,79501,0,1,1 +1773672486.323548,0.80,4,3992.50,53.73,1590.78,2103.80,0.00,1.477414,10.674994,253,668,0.000000,0.000020,63659577,31048895,0,0,79503,0,1,1 +1773672491.323464,0.65,4,3992.50,53.68,1592.77,2101.83,0.00,3518496072617.138184,3518496072608.120605,11,0,0.000000,0.000030,63659577,31048898,0,0,79506,0,1,1 +1773672496.328115,1.00,4,3992.50,53.78,1600.64,2105.52,0.00,55130.883120,58441.517101,3811167,3210546,0.000000,0.000020,63659577,31048900,0,0,79508,0,1,1 +1773672501.323473,0.75,4,3992.50,53.78,1600.57,2105.48,0.00,0.000000,0.006256,3811167,3210553,0.000157,0.000211,63659589,31048915,0,0,79511,0,1,1 +1773672506.323419,0.60,4,3992.50,53.64,1605.94,2100.11,0.00,3518474875973.875488,3518474872660.119629,11,0,0.000008,0.000028,63659590,31048918,0,0,79513,0,1,1 +1773672511.323456,0.60,4,3992.50,53.65,1605.69,2100.36,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63659590,31048921,0,0,79516,0,1,1 +1773672516.323916,0.70,4,3992.50,53.66,1605.20,2100.84,0.00,55186.818264,58501.205983,3812670,3211245,0.000000,0.000020,63659590,31048923,0,0,79518,0,1,1 +1773672521.327632,14.19,4,3992.50,53.71,1603.30,2102.74,0.00,3515823806697.552734,3515823803385.322266,11,0,40.033585,0.023471,63663986,31050439,0,0,79521,0,1,1 +1773672526.328330,0.75,4,3992.50,53.73,1602.52,2103.50,0.00,0.000000,0.000000,11,0,0.002891,0.001163,63664039,31050476,0,0,79523,0,1,1 +1773672531.327628,1.00,4,3992.50,53.73,1601.82,2103.57,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63664039,31050479,0,0,79526,0,1,1 +1773672536.323423,0.65,4,3992.50,53.73,1601.82,2103.57,0.00,0.053561,0.000000,75,0,0.000000,0.000020,63664039,31050481,0,0,79528,0,1,1 +1773672541.327547,0.65,4,3992.50,53.73,1601.82,2103.57,0.00,0.126653,0.000000,205,0,0.000000,0.000030,63664039,31050484,0,0,79531,0,1,1 +1773672546.327466,0.65,4,3992.50,53.73,1601.82,2103.56,0.00,3518494291527.007324,0.000000,11,0,0.000000,0.000020,63664039,31050486,0,0,79533,0,1,1 +1773672551.323496,0.65,4,3992.50,53.67,1604.18,2101.21,0.00,0.053558,0.000000,75,0,0.000000,0.000030,63664039,31050489,0,0,79536,0,1,1 +1773672556.323478,0.90,4,3992.50,53.70,1602.46,2102.40,0.00,0.126758,0.000000,205,0,0.000000,0.000020,63664039,31050491,0,0,79538,0,1,1 +1773672561.324344,0.55,4,3992.50,53.72,1601.48,2103.34,0.00,3517827617902.857910,0.000000,11,0,0.000000,0.000030,63664039,31050494,0,0,79541,0,1,1 +1773672566.323428,0.65,4,3992.50,53.69,1602.86,2101.97,0.00,2.175789,0.000195,258,2,0.000087,0.000101,63664045,31050502,0,0,79543,0,1,1 +1773672571.323423,0.60,4,3992.50,53.69,1602.86,2101.97,0.00,55180.410704,58496.399552,3811209,3210902,0.000109,0.000162,63664054,31050514,0,0,79546,0,1,1 +1773672576.323325,0.60,4,3992.50,53.69,1602.86,2101.96,0.00,3518506237459.712402,3518506234145.656250,205,0,0.000000,0.000020,63664054,31050516,0,0,79548,0,1,1 +1773672581.323489,0.65,4,3992.50,53.69,1602.86,2101.96,0.00,0.000000,0.000000,205,0,0.000000,0.000030,63664054,31050519,0,0,79551,0,1,1 +1773672586.326491,0.80,4,3992.50,53.78,1606.25,2105.61,0.00,55149.248422,58461.303382,3811209,3210931,0.000000,0.000342,63664054,31050523,0,0,79553,0,1,1 +1773672591.328337,14.29,4,3992.50,58.63,1416.41,2295.43,0.00,3517138327273.477051,3517138323960.836914,11,0,40.050640,0.027266,63668525,31052424,0,0,79556,0,1,1 +1773672596.327873,1.95,4,3992.50,54.46,1579.76,2132.10,0.00,0.053521,0.000000,75,0,0.004236,0.002195,63668617,31052495,0,0,79558,0,1,1 +1773672601.328144,0.75,4,3992.50,53.48,1617.86,2093.97,0.00,2.121760,0.000195,258,2,0.000000,0.000030,63668617,31052498,0,0,79561,0,1,1 +1773672606.323420,1.05,4,3992.50,53.50,1617.23,2094.61,0.00,0.000000,0.000000,258,2,0.000000,0.000020,63668617,31052500,0,0,79563,0,1,1 +1773672611.323644,0.65,4,3992.50,53.30,1624.89,2086.96,0.00,3518278924326.842285,3518278924329.017578,11,0,0.000000,0.000030,63668617,31052503,0,0,79566,0,1,1 +1773672616.323542,0.85,4,3992.50,53.54,1612.24,2096.06,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63668617,31052505,0,0,79568,0,1,1 +1773672621.327693,0.55,4,3992.50,53.54,1612.27,2096.06,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63668617,31052508,0,0,79571,0,1,1 +1773672626.327959,0.70,4,3992.50,53.48,1614.61,2093.72,0.00,55191.972137,58504.294683,3812870,3211901,0.000000,0.000033,63668617,31052511,0,0,79573,0,1,1 +1773672631.327553,0.55,4,3992.50,53.28,1622.25,2086.08,0.00,3518722658624.011719,3518722655320.263184,253,668,0.000000,0.000030,63668617,31052514,0,0,79576,0,1,1 +1773672636.327960,0.65,4,3992.50,53.13,1628.36,2079.96,0.00,3518150635810.611816,3518150635801.595215,11,0,0.000062,0.000070,63668621,31052520,0,0,79578,0,1,1 +1773672641.328368,0.55,4,3992.50,53.12,1628.61,2079.71,0.00,0.000000,0.000000,11,0,0.000134,0.000193,63668632,31052534,0,0,79581,0,1,1 +1773672646.327872,0.95,4,3992.50,53.27,1620.87,2085.58,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63668632,31052536,0,0,79583,0,1,1 +1773672651.327898,0.75,4,3992.50,53.36,1616.85,2089.19,0.00,0.053515,0.000000,75,0,0.000000,0.000513,63668632,31052542,0,0,79586,0,1,1 +1773672656.327530,13.30,4,3992.50,53.77,1600.70,2105.33,0.00,3518696545263.403809,0.000000,11,0,40.066218,0.020140,63673038,31053875,0,0,79588,0,1,1 +1773672661.323441,1.00,4,3992.50,53.79,1599.91,2106.09,0.00,0.000000,0.000000,11,0,0.002228,0.001062,63673080,31053906,0,0,79591,0,1,1 +1773672666.328382,0.65,4,3992.50,53.80,1599.61,2106.42,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63673080,31053908,0,0,79593,0,1,1 +1773672671.327417,0.55,4,3992.50,53.81,1599.37,2106.66,0.00,55205.687316,58518.904500,3812881,3212107,0.000512,0.001117,63673094,31053933,0,0,79596,0,1,1 +1773672676.328074,0.95,4,3992.50,53.96,1593.66,2112.64,0.00,3517975169670.914551,3517975166358.771973,11,0,0.000008,0.000028,63673095,31053936,0,0,79598,0,1,1 +1773672681.323484,0.60,4,3992.50,53.98,1592.93,2113.37,0.00,2.177390,0.000195,258,2,0.000205,0.000562,63673102,31053950,0,0,79601,0,1,1 +1773672686.323419,0.55,4,3992.50,53.81,1599.34,2106.96,0.00,0.000000,0.000000,258,2,0.000000,0.000020,63673102,31053952,0,0,79603,0,1,1 +1773672691.323475,0.75,4,3992.50,53.82,1599.12,2107.18,0.00,3518397374289.812500,3518397374291.808105,205,0,0.000000,0.000030,63673102,31053955,0,0,79606,0,1,1 +1773672696.323678,0.50,4,3992.50,53.82,1599.12,2107.18,0.00,55192.626043,58505.355502,3812882,3212197,0.000000,0.000020,63673102,31053957,0,0,79608,0,1,1 +1773672701.324340,0.65,4,3992.50,53.82,1599.12,2107.18,0.00,3517971765424.922363,3517971762112.623047,75,0,0.000087,0.000111,63673108,31053966,0,0,79611,0,1,1 +1773672706.323439,0.80,4,3992.50,53.90,1596.73,2110.44,0.00,55204.945483,58518.318268,3812882,3212219,0.000109,0.000152,63673117,31053977,0,0,79613,0,1,1 +1773672711.327683,0.95,4,3992.50,53.90,1594.06,2110.40,0.00,3515452722052.304199,3515452718742.391602,11,0,0.000000,0.000030,63673117,31053980,0,0,79616,0,1,1 +1773672716.323762,0.55,4,3992.50,53.90,1594.06,2110.39,0.00,55238.363426,58553.703930,3812882,3212240,0.000062,0.000715,63673121,31053990,0,0,79618,0,1,1 +1773672721.326232,18.89,4,3992.50,58.54,1412.66,2291.81,0.00,3516700100775.749023,3516700097462.469727,258,2,40.041827,0.023186,63677357,31055537,0,0,79621,0,1,1 +1773672726.324322,0.85,4,3992.50,53.74,1600.33,2104.15,0.00,3519781923262.120605,3519781923264.116699,205,0,0.003409,0.001708,63677437,31055598,0,0,79623,0,1,1 +1773672731.327724,0.75,4,3992.50,53.75,1599.87,2104.61,0.00,1.993761,0.000195,258,2,0.003149,0.002513,63677491,31055640,0,0,79626,0,1,1 +1773672736.327762,0.85,4,3992.50,53.77,1594.68,2105.14,0.00,3518410346521.710938,3518410346523.886230,11,0,0.000000,0.000020,63677491,31055642,0,0,79628,0,1,1 +1773672741.327709,0.65,4,3992.50,53.77,1594.44,2105.38,0.00,2.175413,0.000195,258,2,0.000000,0.000030,63677491,31055645,0,0,79631,0,1,1 +1773672746.327808,0.55,4,3992.50,53.59,1601.58,2098.23,0.00,3518367752783.396973,3518367752785.392090,205,0,0.000000,0.000020,63677491,31055647,0,0,79633,0,1,1 +1773672751.327967,0.60,4,3992.50,53.59,1601.58,2098.23,0.00,55193.137728,58506.163194,3812887,3212470,0.000000,0.000030,63677491,31055650,0,0,79636,0,1,1 +1773672756.323407,0.60,4,3992.50,53.62,1600.61,2099.21,0.00,3521649453003.391113,3521649449685.238281,258,2,0.000000,0.000020,63677491,31055652,0,0,79638,0,1,1 +1773672761.323419,0.60,4,3992.50,53.59,1601.79,2098.03,0.00,55183.034970,58497.218914,3811384,3211813,0.000000,0.000030,63677491,31055655,0,0,79641,0,1,1 +1773672766.323473,0.90,4,3992.50,53.95,1587.52,2112.29,0.00,3518399172578.781250,3518399169266.799805,11,0,0.000031,0.000045,63677493,31055659,0,0,79643,0,1,1 +1773672771.327442,0.60,4,3992.50,53.97,1586.79,2113.03,0.00,0.053473,0.000000,75,0,0.000091,0.000139,63677501,31055670,0,0,79646,0,1,1 +1773672776.323465,0.60,4,3992.50,53.97,1586.80,2113.03,0.00,3521237971282.858398,0.000000,11,0,0.000132,0.000170,63677511,31055682,0,0,79648,0,1,1 +1773672781.323867,0.60,4,3992.50,53.98,1586.58,2113.25,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63677511,31055685,0,0,79651,0,1,1 +1773672786.327410,11.75,4,3992.50,55.38,1531.68,2168.14,0.00,0.053478,0.000000,75,0,40.034495,0.019586,63681956,31056961,0,0,79653,0,1,1 +1773672791.325963,0.80,4,3992.50,54.33,1572.54,2127.27,0.00,0.126794,0.000000,205,0,0.003212,0.001573,63682022,31057012,0,0,79656,0,1,1 +1773672796.324280,0.85,4,3992.50,54.08,1582.41,2117.36,0.00,55203.805775,58517.316864,3811391,3212026,0.000000,0.000020,63682022,31057014,0,0,79658,0,1,1 +1773672801.324614,0.50,4,3992.50,54.02,1584.66,2115.12,0.00,3518201952750.116699,3518201949437.942871,205,0,0.000000,0.000030,63682022,31057017,0,0,79661,0,1,1 +1773672806.323479,0.60,4,3992.50,54.04,1583.96,2115.82,0.00,1.477777,10.677619,253,668,0.000000,0.000020,63682022,31057019,0,0,79663,0,1,1 +1773672811.323419,0.55,4,3992.50,54.06,1583.22,2116.55,0.00,3518479456671.823730,3518479456662.752930,75,0,0.000000,0.000030,63682022,31057022,0,0,79666,0,1,1 +1773672816.323575,0.55,4,3992.50,54.06,1583.24,2116.54,0.00,55183.631932,58495.860945,3811393,3212089,0.000000,0.000020,63682022,31057024,0,0,79668,0,1,1 +1773672821.327876,0.55,4,3992.50,54.06,1583.24,2116.54,0.00,3515412990846.219727,3515412987536.608398,205,0,0.000000,0.000030,63682022,31057027,0,0,79671,0,1,1 +1773672826.326552,0.75,4,3992.50,54.07,1583.43,2116.78,0.00,55199.832605,58513.212177,3811393,3212113,0.000000,0.000020,63682022,31057029,0,0,79673,0,1,1 +1773672831.323418,0.70,4,3992.50,54.06,1583.33,2116.75,0.00,3520643973611.323730,3520643970296.743652,205,0,0.000087,0.000111,63682028,31057038,0,0,79676,0,1,1 +1773672836.328313,0.70,4,3992.50,54.04,1584.16,2115.92,0.00,0.000000,0.000000,205,0,0.000109,0.000152,63682037,31057049,0,0,79678,0,1,1 +1773672841.327990,0.50,4,3992.50,54.04,1584.17,2115.91,0.00,55188.787144,58501.534181,3811393,3212145,0.000000,0.000030,63682037,31057052,0,0,79681,0,1,1 +1773672846.327535,0.60,4,3992.50,54.01,1585.34,2114.74,0.00,9.727056,10.681049,3812896,3212820,0.000000,0.000020,63682037,31057054,0,0,79683,0,1,1 +1773672851.327408,13.19,4,3992.50,58.60,1401.60,2294.48,0.00,3518526596041.557617,3518526592728.166992,11,0,33.856054,0.022133,63685827,31058481,0,0,79686,0,1,1 +1773672856.327466,1.25,4,3992.50,54.93,1555.75,2150.80,0.00,0.180271,0.000000,205,0,6.211797,0.002957,63686531,31058632,0,0,79688,0,1,1 +1773672861.323447,0.45,4,3992.50,54.31,1580.11,2126.45,0.00,1.996722,0.000195,258,2,0.000000,0.000030,63686531,31058635,0,0,79691,0,1,1 +1773672866.327546,0.70,4,3992.50,53.91,1595.79,2110.77,0.00,3515555475714.651367,3515555475716.645020,205,0,0.000000,0.000020,63686531,31058637,0,0,79693,0,1,1 +1773672871.326990,0.50,4,3992.50,53.91,1595.80,2110.75,0.00,1.477606,10.676384,253,668,0.000000,0.000030,63686531,31058640,0,0,79696,0,1,1 +1773672876.327699,0.50,4,3992.50,53.92,1595.59,2110.97,0.00,55185.648164,58489.680991,3812900,3213038,0.000000,0.000020,63686531,31058642,0,0,79698,0,1,1 +1773672881.328333,0.75,4,3992.50,53.92,1595.59,2110.97,0.00,0.000000,0.015623,3812900,3213044,0.000000,0.000030,63686531,31058645,0,0,79701,0,1,1 +1773672886.328127,0.80,4,3992.50,53.88,1589.38,2109.38,0.00,3518581758955.938965,3518581755640.092773,258,2,0.000000,0.000020,63686531,31058647,0,0,79703,0,1,1 +1773672891.327774,0.70,4,3992.50,53.85,1590.33,2108.41,0.00,3518685822331.538574,3518685822333.714355,11,0,0.000000,0.000030,63686531,31058650,0,0,79706,0,1,1 +1773672896.323483,0.50,4,3992.50,53.86,1590.09,2108.65,0.00,0.053562,0.000000,75,0,0.000087,0.000101,63686537,31058658,0,0,79708,0,1,1 +1773672901.323488,0.60,4,3992.50,53.86,1590.09,2108.65,0.00,3518434207658.767090,0.000000,11,0,0.000109,0.000162,63686546,31058670,0,0,79711,0,1,1 +1773672906.327899,0.75,4,3992.50,53.85,1590.36,2108.36,0.00,0.180115,0.000000,205,0,0.000000,0.000020,63686546,31058672,0,0,79713,0,1,1 +1773672911.327985,0.60,4,3992.50,53.85,1590.39,2108.36,0.00,3518376511962.460938,0.000000,11,0,0.000000,0.000030,63686546,31058675,0,0,79716,0,1,1 +1773672916.327632,12.50,4,3992.50,58.69,1400.86,2297.71,0.00,0.053519,0.000000,75,0,28.647997,0.021310,63689727,31060125,0,0,79718,0,1,1 +1773672921.323437,0.95,4,3992.50,53.92,1587.42,2111.16,0.00,1.605546,10.684158,253,668,11.428021,0.004700,63690932,31060424,0,0,79721,0,1,1 +1773672926.328221,0.65,4,3992.50,53.69,1596.65,2101.93,0.00,0.517181,3515074458057.062988,258,2,0.000000,0.000020,63690932,31060426,0,0,79723,0,1,1 +1773672931.326315,0.70,4,3992.50,53.70,1596.16,2102.42,0.00,0.000000,0.000000,258,2,0.000000,0.000030,63690932,31060429,0,0,79726,0,1,1 +1773672936.323566,0.60,4,3992.50,53.70,1596.16,2102.42,0.00,3520372747133.349609,3520372747135.525879,11,0,0.000000,0.000020,63690932,31060431,0,0,79728,0,1,1 +1773672941.325690,0.65,4,3992.50,53.65,1598.05,2100.52,0.00,55162.080746,58473.477937,3811407,3212676,0.000000,0.000030,63690932,31060434,0,0,79731,0,1,1 +1773672946.327732,1.05,4,3992.50,53.66,1598.39,2100.91,0.00,3517000734632.621094,3517000731318.995117,258,2,0.000000,0.000056,63690932,31060437,0,0,79733,0,1,1 +1773672951.327659,0.85,4,3992.50,53.66,1598.44,2100.86,0.00,3518488622444.225098,3518488622446.346680,75,0,0.000000,0.000030,63690932,31060440,0,0,79736,0,1,1 +1773672956.323421,0.60,4,3992.50,53.66,1598.45,2100.85,0.00,3521422125444.953613,0.000000,11,0,0.000000,0.000020,63690932,31060442,0,0,79738,0,1,1 +1773672961.323495,0.60,4,3992.50,53.66,1598.45,2100.85,0.00,1.657690,10.675037,253,668,0.000056,0.000086,63690936,31060449,0,0,79741,0,1,1 +1773672966.328009,0.50,4,3992.50,53.68,1597.77,2101.53,0.00,55143.802530,58445.678731,3812911,3213438,0.000117,0.000160,63690946,31060461,0,0,79743,0,1,1 +1773672971.327582,0.75,4,3992.50,53.68,1597.77,2101.53,0.00,0.000000,0.006251,3812911,3213445,0.001434,0.001786,63690962,31060489,0,0,79746,0,1,1 +1773672976.323468,0.80,4,3992.50,53.67,1605.11,2101.49,0.00,3521334669132.497070,3521334665824.911621,253,668,0.000000,0.000020,63690962,31060491,0,0,79748,0,1,1 +1773672981.323569,12.34,4,3992.50,58.59,1412.74,2293.88,0.00,3518365888086.805176,3518365888077.607910,205,0,21.436190,0.018451,63693438,31061683,0,0,79751,0,1,1 +1773672986.323488,1.65,4,3992.50,53.80,1600.25,2106.37,0.00,1.477465,10.675369,253,668,18.628832,0.005665,63695347,31062029,0,0,79753,0,1,1 +1773672991.327921,0.70,4,3992.50,53.80,1600.25,2106.37,0.00,0.000000,0.000000,253,668,0.000000,0.000030,63695347,31062032,0,0,79756,0,1,1 +1773672996.327461,0.75,4,3992.50,53.82,1599.51,2107.11,0.00,55198.692252,58504.032021,3812914,3213634,0.000000,0.000020,63695347,31062034,0,0,79758,0,1,1 +1773673001.325597,0.70,4,3992.50,53.82,1599.52,2107.11,0.00,0.000000,0.007034,3812914,3213639,0.000000,0.000030,63695347,31062037,0,0,79761,0,1,1 +1773673006.327612,0.95,4,3992.50,54.22,1576.61,2122.77,0.00,3517019640025.800293,3517019636722.089355,253,668,0.000000,0.000020,63695347,31062039,0,0,79763,0,1,1 +1773673011.328175,0.70,4,3992.50,54.12,1580.27,2118.98,0.00,3518041387009.007324,3518041386999.991211,11,0,0.000000,0.000030,63695347,31062042,0,0,79766,0,1,1 +1773673016.323984,0.65,4,3992.50,54.12,1580.27,2118.97,0.00,0.053561,0.000000,75,0,0.000062,0.000070,63695351,31062048,0,0,79768,0,1,1 +1773673021.325187,0.60,4,3992.50,54.12,1580.27,2118.97,0.00,55172.206198,58484.681614,3811411,3213038,0.000008,0.000038,63695352,31062052,0,0,79771,0,1,1 +1773673026.327268,0.60,4,3992.50,54.12,1580.27,2118.97,0.00,3516973378826.475586,3516973375514.634766,11,0,0.000062,0.000070,63695356,31062058,0,0,79773,0,1,1 +1773673031.323460,0.80,4,3992.50,53.93,1587.68,2111.56,0.00,55227.600841,58543.353917,3811411,3213045,0.003279,0.002688,63695420,31062112,0,0,79776,0,1,1 +1773673036.325781,0.85,4,3992.50,53.93,1587.70,2111.52,0.00,3516804126407.102539,3516804123093.238281,258,2,0.000000,0.000020,63695420,31062114,0,0,79778,0,1,1 +1773673041.326800,0.65,4,3992.50,53.90,1588.94,2110.31,0.00,55181.844220,58497.565219,3812914,3213745,0.000000,0.000030,63695420,31062117,0,0,79781,0,1,1 +1773673046.327956,11.40,4,3992.50,58.68,1401.80,2297.45,0.00,3517623964156.099609,3517623960840.469238,258,2,11.419570,0.013248,63696875,31062956,0,0,79783,0,1,1 +1773673051.327565,4.87,4,3992.50,54.35,1571.31,2127.93,0.00,3518712322218.960449,3518712322221.082520,75,0,28.645520,0.014187,63699841,31063950,0,0,79786,0,1,1 diff --git a/evaluation/data/pipeline_batch-out_run1/pipeline.duckdb b/evaluation/data/pipeline_batch-out_run1/pipeline.duckdb new file mode 100644 index 0000000..1cebe78 Binary files /dev/null and b/evaluation/data/pipeline_batch-out_run1/pipeline.duckdb differ diff --git a/evaluation/data/pipeline_batch-out_run2/anomalies.jsonl b/evaluation/data/pipeline_batch-out_run2/anomalies.jsonl new file mode 100644 index 0000000..7a5abf0 --- /dev/null +++ b/evaluation/data/pipeline_batch-out_run2/anomalies.jsonl @@ -0,0 +1,541 @@ +{"timestamp":"2026-03-16T15:54:07.113866539Z","score":0.5,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=0.50 RRCF-fast:w=0.20,s=0.50 RRCF-mid:w=0.20,s=0.50 RRCF-slow:w=0.20,s=0.50 COPOD:w=0.20,s=0.50"} +{"timestamp":"2026-03-16T15:54:38.799899406Z","score":0.8,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=0.00 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-16T15:55:07.113877439Z","score":0.7987927970219627,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=0.50 RRCF-fast:w=0.20,s=0.50 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-16T15:55:37.103036396Z","score":0.9338695500284521,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=1.00 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=0.67"} +{"timestamp":"2026-03-16T15:56:07.065279263Z","score":0.696103035806944,"is_anomaly":false,"confidence":0.87012879475868,"method":"SEAD","details":"MAD!:w=0.20,s=0.00 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=0.50"} +{"timestamp":"2026-03-16T15:56:37.112344622Z","score":1,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.21,s=1.00 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-16T15:57:07.066071956Z","score":0.6607748427630299,"is_anomaly":false,"confidence":0.7075665361858069,"method":"SEAD","details":"MAD!:w=0.21,s=0.00 RRCF-fast:w=0.20,s=0.83 RRCF-mid:w=0.20,s=0.83 RRCF-slow:w=0.20,s=0.83 COPOD!:w=0.20,s=0.83"} +{"timestamp":"2026-03-16T15:57:37.102455935Z","score":1.0000000000000002,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.21,s=1.00 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-16T15:58:07.109013952Z","score":0.8251280954836477,"is_anomaly":false,"confidence":0.8835581966009157,"method":"SEAD","details":"MAD!:w=0.21,s=0.88 RRCF-fast:w=0.20,s=0.88 RRCF-mid:w=0.20,s=0.88 RRCF-slow:w=0.20,s=0.88 COPOD!:w=0.20,s=0.62"} +{"timestamp":"2026-03-16T15:58:37.111894737Z","score":0.6433702633604088,"is_anomaly":false,"confidence":0.688929479862372,"method":"SEAD","details":"MAD!:w=0.21,s=0.56 RRCF-fast:w=0.20,s=0.67 RRCF-mid:w=0.20,s=0.67 RRCF-slow:w=0.20,s=0.67 COPOD!:w=0.20,s=0.67"} +{"timestamp":"2026-03-16T15:59:07.156671437Z","score":0.5531979195982777,"is_anomaly":false,"confidence":0.592371728558259,"method":"SEAD","details":"MAD!:w=0.21,s=0.00 RRCF-fast:w=0.20,s=0.60 RRCF-mid:w=0.20,s=0.70 RRCF-slow:w=0.20,s=0.70 COPOD!:w=0.20,s=0.80"} +{"timestamp":"2026-03-16T15:59:38.373097646Z","score":0.4195415820689121,"is_anomaly":false,"confidence":0.44925073534749044,"method":"SEAD","details":"MAD!:w=0.21,s=0.55 RRCF-fast:w=0.20,s=0.45 RRCF-mid:w=0.20,s=0.45 RRCF-slow:w=0.20,s=0.45 COPOD!:w=0.20,s=0.18"} +{"timestamp":"2026-03-16T16:00:07.107851881Z","score":0.734520711650529,"is_anomaly":false,"confidence":0.7865345985723065,"method":"SEAD","details":"MAD!:w=0.21,s=0.83 RRCF-fast:w=0.20,s=0.67 RRCF-mid:w=0.20,s=0.75 RRCF-slow:w=0.20,s=0.75 COPOD!:w=0.20,s=0.67"} +{"timestamp":"2026-03-16T16:00:37.066402173Z","score":0.5792951626614017,"is_anomaly":false,"confidence":0.6203170053502145,"method":"SEAD","details":"MAD!:w=0.21,s=0.23 RRCF-fast:w=0.20,s=0.69 RRCF-mid:w=0.20,s=0.69 RRCF-slow:w=0.20,s=0.69 COPOD!:w=0.20,s=0.62"} +{"timestamp":"2026-03-16T16:01:07.107229058Z","score":0.47408901818647503,"is_anomaly":false,"confidence":0.5745641443812289,"method":"SEAD","details":"MAD!:w=0.21,s=0.57 RRCF-fast:w=0.20,s=0.43 RRCF-mid:w=0.19,s=0.36 RRCF-slow:w=0.19,s=0.36 COPOD!:w=0.20,s=0.64"} +{"timestamp":"2026-03-16T16:01:37.064873762Z","score":0.8134497507512184,"is_anomaly":false,"confidence":0.9858466281825198,"method":"SEAD","details":"MAD!:w=0.21,s=0.87 RRCF-fast:w=0.20,s=0.87 RRCF-mid:w=0.20,s=0.87 RRCF-slow:w=0.20,s=0.87 COPOD!:w=0.20,s=0.60"} +{"timestamp":"2026-03-16T16:02:07.157007662Z","score":0.39924149461589337,"is_anomaly":false,"confidence":0.4838539577080799,"method":"SEAD","details":"MAD!:w=0.21,s=0.44 RRCF-fast:w=0.20,s=0.44 RRCF-mid:w=0.19,s=0.50 RRCF-slow:w=0.19,s=0.50 COPOD!:w=0.20,s=0.12"} +{"timestamp":"2026-03-16T16:02:37.065419153Z","score":0.452102790118614,"is_anomaly":false,"confidence":0.5479183081914264,"method":"SEAD","details":"MAD!:w=0.21,s=0.00 RRCF-fast:w=0.20,s=0.47 RRCF-mid:w=0.19,s=0.59 RRCF-slow:w=0.19,s=0.59 COPOD!:w=0.20,s=0.65"} +{"timestamp":"2026-03-16T16:03:07.106908975Z","score":1,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.21,s=1.00 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.19,s=1.00 RRCF-slow:w=0.19,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-16T16:03:37.066496376Z","score":0.9262425879544928,"is_anomaly":false,"confidence":0.9918329470387733,"method":"SEAD","details":"MAD!:w=0.21,s=0.95 RRCF-fast!:w=0.20,s=0.95 RRCF-mid!:w=0.19,s=0.95 RRCF-slow!:w=0.19,s=0.95 COPOD!:w=0.20,s=0.84"} +{"timestamp":"2026-03-16T16:04:07.104676717Z","score":0.9100517131386239,"is_anomaly":false,"confidence":0.9744955418140547,"method":"SEAD","details":"MAD!:w=0.21,s=0.90 RRCF-fast:w=0.20,s=0.90 RRCF-mid:w=0.19,s=0.90 RRCF-slow:w=0.19,s=0.90 COPOD!:w=0.20,s=0.95"} +{"timestamp":"2026-03-16T16:04:37.106732201Z","score":0.7542525434912272,"is_anomaly":false,"confidence":0.8143142555741395,"method":"SEAD","details":"MAD!:w=0.21,s=0.86 RRCF-fast:w=0.20,s=0.76 RRCF-mid:w=0.19,s=0.71 RRCF-slow:w=0.19,s=0.71 COPOD!:w=0.20,s=0.71"} +{"timestamp":"2026-03-16T16:05:07.110013003Z","score":0.46615440438619227,"is_anomaly":false,"confidence":0.5032746393314134,"method":"SEAD","details":"MAD!:w=0.21,s=0.18 RRCF-fast:w=0.20,s=0.64 RRCF-mid:w=0.19,s=0.64 RRCF-slow:w=0.19,s=0.64 COPOD!:w=0.20,s=0.27"} +{"timestamp":"2026-03-16T16:05:37.108005523Z","score":0.616870315897655,"is_anomaly":false,"confidence":0.6659921751816085,"method":"SEAD","details":"MAD!:w=0.21,s=0.61 RRCF-fast:w=0.20,s=0.65 RRCF-mid:w=0.19,s=0.65 RRCF-slow:w=0.19,s=0.61 COPOD!:w=0.20,s=0.57"} +{"timestamp":"2026-03-16T16:06:07.111840798Z","score":0.44255142900227795,"is_anomaly":false,"confidence":0.4777921408036368,"method":"SEAD","details":"MAD!:w=0.21,s=0.17 RRCF-fast:w=0.20,s=0.71 RRCF-mid:w=0.19,s=0.58 RRCF-slow:w=0.19,s=0.58 COPOD!:w=0.20,s=0.21"} +{"timestamp":"2026-03-16T16:06:37.150986855Z","score":0.3921061735186057,"is_anomaly":false,"confidence":0.4233298906979975,"method":"SEAD","details":"MAD!:w=0.22,s=0.08 RRCF-fast:w=0.20,s=0.56 RRCF-mid:w=0.19,s=0.52 RRCF-slow:w=0.19,s=0.52 COPOD!:w=0.20,s=0.32"} +{"timestamp":"2026-03-16T16:07:07.112803882Z","score":0.44856079558487616,"is_anomaly":false,"confidence":0.48428003788454005,"method":"SEAD","details":"MAD!:w=0.22,s=0.00 RRCF-fast:w=0.19,s=0.62 RRCF-mid:w=0.19,s=0.69 RRCF-slow:w=0.19,s=0.69 COPOD!:w=0.20,s=0.31"} +{"timestamp":"2026-03-16T16:07:37.10998174Z","score":0.4507951183183584,"is_anomaly":false,"confidence":0.4953511012727371,"method":"SEAD","details":"MAD!:w=0.22,s=0.44 RRCF-fast:w=0.19,s=0.52 RRCF-mid:w=0.19,s=0.48 RRCF-slow:w=0.19,s=0.44 COPOD!:w=0.20,s=0.37"} +{"timestamp":"2026-03-16T16:08:07.065878617Z","score":0.3499814513490026,"is_anomaly":false,"confidence":0.38457314710388507,"method":"SEAD","details":"MAD!:w=0.22,s=0.18 RRCF-fast:w=0.19,s=0.43 RRCF-mid:w=0.19,s=0.50 RRCF-slow:w=0.19,s=0.50 COPOD!:w=0.20,s=0.18"} +{"timestamp":"2026-03-16T16:08:37.108382927Z","score":0.7569920368914399,"is_anomaly":false,"confidence":0.8318121112927688,"method":"SEAD","details":"MAD!:w=0.22,s=0.66 RRCF-fast:w=0.19,s=0.76 RRCF-mid:w=0.19,s=0.76 RRCF-slow:w=0.19,s=0.76 COPOD!:w=0.20,s=0.86"} +{"timestamp":"2026-03-16T16:09:07.078477107Z","score":0.5105539897848725,"is_anomaly":false,"confidence":0.5610164591900529,"method":"SEAD","details":"MAD!:w=0.22,s=0.33 RRCF-fast:w=0.19,s=0.57 RRCF-mid:w=0.19,s=0.47 RRCF-slow:w=0.19,s=0.50 COPOD!:w=0.20,s=0.70"} +{"timestamp":"2026-03-16T16:09:37.106901913Z","score":0.9199919108847963,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.22,s=0.81 RRCF-fast!:w=0.19,s=0.94 RRCF-mid!:w=0.19,s=0.94 RRCF-slow!:w=0.19,s=0.94 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-16T16:10:07.072378633Z","score":0.7866381811330151,"is_anomaly":false,"confidence":0.8550490192641704,"method":"SEAD","details":"MAD!:w=0.22,s=0.78 RRCF-fast:w=0.19,s=0.88 RRCF-mid:w=0.19,s=0.78 RRCF-slow:w=0.19,s=0.78 COPOD!:w=0.20,s=0.72"} +{"timestamp":"2026-03-16T16:10:37.125713841Z","score":0.7272145894668929,"is_anomaly":false,"confidence":0.790457590836314,"method":"SEAD","details":"MAD!:w=0.22,s=0.67 RRCF-fast:w=0.19,s=0.70 RRCF-mid:w=0.19,s=0.70 RRCF-slow:w=0.19,s=0.70 COPOD!:w=0.20,s=0.88"} +{"timestamp":"2026-03-16T16:11:07.157026103Z","score":0.5458959461875987,"is_anomaly":false,"confidence":0.5998515670113848,"method":"SEAD","details":"MAD!:w=0.22,s=0.44 RRCF-fast:w=0.19,s=0.53 RRCF-mid:w=0.19,s=0.53 RRCF-slow:w=0.19,s=0.50 COPOD!:w=0.20,s=0.74"} +{"timestamp":"2026-03-16T16:11:37.064935033Z","score":0.36053504770000044,"is_anomaly":false,"confidence":0.3961698467184599,"method":"SEAD","details":"MAD!:w=0.22,s=0.20 RRCF-fast:w=0.19,s=0.23 RRCF-mid:w=0.19,s=0.51 RRCF-slow:w=0.19,s=0.49 COPOD!:w=0.20,s=0.40"} +{"timestamp":"2026-03-16T16:12:07.103433514Z","score":0.36295106753194156,"is_anomaly":false,"confidence":0.39882466269986017,"method":"SEAD","details":"MAD!:w=0.22,s=0.50 RRCF-fast:w=0.19,s=0.25 RRCF-mid:w=0.19,s=0.44 RRCF-slow:w=0.19,s=0.47 COPOD!:w=0.20,s=0.14"} +{"timestamp":"2026-03-16T16:12:37.945668037Z","score":0.3891660408696016,"is_anomaly":false,"confidence":0.4276306887302368,"method":"SEAD","details":"MAD!:w=0.22,s=0.16 RRCF-fast:w=0.19,s=0.32 RRCF-mid:w=0.19,s=0.49 RRCF-slow:w=0.19,s=0.41 COPOD!:w=0.20,s=0.59"} +{"timestamp":"2026-03-16T16:13:07.110943676Z","score":0.31376780746508337,"is_anomaly":false,"confidence":0.34478019538356564,"method":"SEAD","details":"MAD!:w=0.22,s=0.11 RRCF-fast:w=0.19,s=0.29 RRCF-mid:w=0.19,s=0.42 RRCF-slow:w=0.19,s=0.45 COPOD!:w=0.20,s=0.34"} +{"timestamp":"2026-03-16T16:13:37.267714563Z","score":0.329342122993798,"is_anomaly":false,"confidence":0.36189385530405666,"method":"SEAD","details":"MAD!:w=0.23,s=0.31 RRCF-fast:w=0.19,s=0.21 RRCF-mid:w=0.19,s=0.51 RRCF-slow:w=0.19,s=0.51 COPOD!:w=0.20,s=0.13"} +{"timestamp":"2026-03-16T16:14:07.108980699Z","score":0.45262365924110987,"is_anomaly":false,"confidence":0.4973603727200103,"method":"SEAD","details":"MAD!:w=0.23,s=0.00 RRCF-fast:w=0.19,s=0.55 RRCF-mid:w=0.19,s=0.68 RRCF-slow:w=0.19,s=0.70 COPOD!:w=0.20,s=0.42"} +{"timestamp":"2026-03-16T16:14:37.067631376Z","score":0.35492634953696645,"is_anomaly":false,"confidence":0.43014696927623924,"method":"SEAD","details":"MAD!:w=0.23,s=0.10 RRCF-fast:w=0.19,s=0.20 RRCF-mid:w=0.19,s=0.41 RRCF-slow:w=0.19,s=0.37 COPOD!:w=0.20,s=0.73"} +{"timestamp":"2026-03-16T16:15:07.108181374Z","score":0.8041524883315514,"is_anomaly":false,"confidence":0.9745789686875206,"method":"SEAD","details":"MAD!:w=0.23,s=0.74 RRCF-fast:w=0.19,s=0.79 RRCF-mid:w=0.19,s=0.76 RRCF-slow:w=0.19,s=0.76 COPOD!:w=0.20,s=0.98"} +{"timestamp":"2026-03-16T16:15:37.066605501Z","score":0.5302250125794169,"is_anomaly":false,"confidence":0.6425972106411262,"method":"SEAD","details":"MAD!:w=0.23,s=0.12 RRCF-fast:w=0.19,s=0.60 RRCF-mid:w=0.19,s=0.58 RRCF-slow:w=0.19,s=0.60 COPOD!:w=0.20,s=0.81"} +{"timestamp":"2026-03-16T16:16:07.102276549Z","score":0.906288129284835,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.23,s=0.95 RRCF-fast:w=0.19,s=0.75 RRCF-mid!:w=0.19,s=0.93 RRCF-slow!:w=0.19,s=0.93 COPOD!:w=0.20,s=0.95"} +{"timestamp":"2026-03-16T16:16:37.155079053Z","score":0.743955017934191,"is_anomaly":false,"confidence":0.8208813443482446,"method":"SEAD","details":"MAD!:w=0.23,s=0.93 RRCF-fast:w=0.19,s=0.73 RRCF-mid:w=0.19,s=0.73 RRCF-slow:w=0.19,s=0.76 COPOD!:w=0.20,s=0.53"} +{"timestamp":"2026-03-16T16:17:07.116850025Z","score":0.35059010597977014,"is_anomaly":false,"confidence":0.38684177211548143,"method":"SEAD","details":"MAD!:w=0.23,s=0.39 RRCF-fast:w=0.19,s=0.22 RRCF-mid:w=0.19,s=0.28 RRCF-slow:w=0.19,s=0.35 COPOD!:w=0.20,s=0.50"} +{"timestamp":"2026-03-16T16:17:37.148540863Z","score":0.4969531683978369,"is_anomaly":false,"confidence":0.6022739634220653,"method":"SEAD","details":"MAD!:w=0.23,s=0.60 RRCF-fast:w=0.20,s=0.47 RRCF-mid:w=0.19,s=0.49 RRCF-slow:w=0.19,s=0.49 COPOD!:w=0.20,s=0.43"} +{"timestamp":"2026-03-16T16:18:07.066016038Z","score":0.27929750021520067,"is_anomaly":false,"confidence":0.33848986811131526,"method":"SEAD","details":"MAD!:w=0.23,s=0.46 RRCF-fast:w=0.20,s=0.17 RRCF-mid:w=0.19,s=0.42 RRCF-slow:w=0.19,s=0.27 COPOD!:w=0.20,s=0.06"} +{"timestamp":"2026-03-16T16:18:37.104808405Z","score":0.44975443025797573,"is_anomaly":false,"confidence":0.5450722532897789,"method":"SEAD","details":"MAD!:w=0.23,s=0.20 RRCF-fast:w=0.20,s=0.27 RRCF-mid:w=0.19,s=0.51 RRCF-slow:w=0.19,s=0.49 COPOD!:w=0.20,s=0.82"} +{"timestamp":"2026-03-16T16:19:07.064578565Z","score":0.4488458055585737,"is_anomaly":false,"confidence":0.5439710609968786,"method":"SEAD","details":"MAD!:w=0.23,s=0.68 RRCF-fast:w=0.20,s=0.24 RRCF-mid:w=0.19,s=0.56 RRCF-slow:w=0.19,s=0.58 COPOD!:w=0.20,s=0.16"} +{"timestamp":"2026-03-16T16:19:37.797937695Z","score":0.33987137427826386,"is_anomaly":false,"confidence":0.4119013473647976,"method":"SEAD","details":"MAD!:w=0.23,s=0.12 RRCF-fast:w=0.20,s=0.18 RRCF-mid:w=0.19,s=0.29 RRCF-slow:w=0.19,s=0.33 COPOD!:w=0.20,s=0.80"} +{"timestamp":"2026-03-16T16:20:07.063004318Z","score":0.4038180108824567,"is_anomaly":false,"confidence":0.4894003889732531,"method":"SEAD","details":"MAD!:w=0.23,s=0.56 RRCF-fast:w=0.20,s=0.44 RRCF-mid:w=0.19,s=0.44 RRCF-slow:w=0.19,s=0.46 COPOD!:w=0.20,s=0.10"} +{"timestamp":"2026-03-16T16:20:37.108525659Z","score":0.7252712249062084,"is_anomaly":false,"confidence":0.878980159415238,"method":"SEAD","details":"MAD!:w=0.23,s=0.72 RRCF-fast:w=0.20,s=0.68 RRCF-mid:w=0.19,s=0.68 RRCF-slow:w=0.19,s=0.70 COPOD!:w=0.20,s=0.85"} +{"timestamp":"2026-03-16T16:21:07.064850472Z","score":0.3523555099218709,"is_anomaly":false,"confidence":0.43316198646132925,"method":"SEAD","details":"MAD!:w=0.23,s=0.67 RRCF-fast:w=0.20,s=0.17 RRCF-mid:w=0.19,s=0.31 RRCF-slow:w=0.19,s=0.22 COPOD!:w=0.20,s=0.33"} +{"timestamp":"2026-03-16T16:21:37.108261903Z","score":1,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.23,s=1.00 RRCF-fast!:w=0.20,s=1.00 RRCF-mid!:w=0.19,s=1.00 RRCF-slow!:w=0.19,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-16T16:22:07.06279008Z","score":0.9568463296526148,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.23,s=0.98 RRCF-fast!:w=0.20,s=1.00 RRCF-mid!:w=0.19,s=1.00 RRCF-slow!:w=0.19,s=1.00 COPOD!:w=0.20,s=0.80"} +{"timestamp":"2026-03-16T16:22:37.072652895Z","score":0.8430157212109374,"is_anomaly":false,"confidence":0.9301851077716015,"method":"SEAD","details":"MAD!:w=0.23,s=0.70 RRCF-fast!:w=0.20,s=0.89 RRCF-mid!:w=0.19,s=0.93 RRCF-slow!:w=0.19,s=0.93 COPOD!:w=0.20,s=0.79"} +{"timestamp":"2026-03-16T16:23:07.108764953Z","score":0.6142280409278078,"is_anomaly":false,"confidence":0.6777403577077677,"method":"SEAD","details":"MAD!:w=0.23,s=0.16 RRCF-fast:w=0.20,s=0.83 RRCF-mid!:w=0.19,s=0.88 RRCF-slow!:w=0.19,s=0.90 COPOD!:w=0.20,s=0.41"} +{"timestamp":"2026-03-16T16:23:37.069581616Z","score":0.5899185997058011,"is_anomaly":false,"confidence":0.6509172752503272,"method":"SEAD","details":"MAD!:w=0.23,s=0.05 RRCF-fast:w=0.20,s=0.64 RRCF-mid:w=0.19,s=0.85 RRCF-slow:w=0.19,s=0.85 COPOD!:w=0.20,s=0.68"} +{"timestamp":"2026-03-16T16:24:07.109350476Z","score":0.5215308333383094,"is_anomaly":false,"confidence":0.5754580872088183,"method":"SEAD","details":"MAD!:w=0.23,s=0.40 RRCF-fast:w=0.20,s=0.65 RRCF-mid:w=0.18,s=0.77 RRCF-slow:w=0.19,s=0.77 COPOD!:w=0.20,s=0.08"} +{"timestamp":"2026-03-16T16:24:37.065338805Z","score":0.4488934099751677,"is_anomaly":false,"confidence":0.5324852178680148,"method":"SEAD","details":"MAD!:w=0.23,s=0.31 RRCF-fast:w=0.20,s=0.57 RRCF-mid:w=0.18,s=0.69 RRCF-slow:w=0.18,s=0.69 COPOD!:w=0.20,s=0.05"} +{"timestamp":"2026-03-16T16:25:07.114422532Z","score":0.6247130348897337,"is_anomaly":false,"confidence":0.7410455335190831,"method":"SEAD","details":"MAD!:w=0.23,s=0.69 RRCF-fast:w=0.20,s=0.60 RRCF-mid:w=0.18,s=0.81 RRCF-slow:w=0.18,s=0.77 COPOD!:w=0.20,s=0.27"} +{"timestamp":"2026-03-16T16:25:37.11090775Z","score":0.4438881634957633,"is_anomaly":false,"confidence":0.5265479069099053,"method":"SEAD","details":"MAD!:w=0.23,s=0.24 RRCF-fast:w=0.20,s=0.56 RRCF-mid:w=0.18,s=0.67 RRCF-slow:w=0.18,s=0.67 COPOD!:w=0.20,s=0.17"} +{"timestamp":"2026-03-16T16:26:07.156331509Z","score":0.5528627655932061,"is_anomaly":false,"confidence":0.6558154868085433,"method":"SEAD","details":"MAD!:w=0.23,s=0.52 RRCF-fast:w=0.20,s=0.39 RRCF-mid:w=0.18,s=0.72 RRCF-slow:w=0.18,s=0.69 COPOD!:w=0.21,s=0.48"} +{"timestamp":"2026-03-16T16:26:37.070791178Z","score":0.5803431383235863,"is_anomaly":false,"confidence":0.6884131858062635,"method":"SEAD","details":"MAD!:w=0.23,s=0.58 RRCF-fast:w=0.20,s=0.46 RRCF-mid:w=0.18,s=0.63 RRCF-slow:w=0.18,s=0.63 COPOD!:w=0.21,s=0.60"} +{"timestamp":"2026-03-16T16:27:07.112334308Z","score":0.8385290106944683,"is_anomaly":false,"confidence":0.994677785474719,"method":"SEAD","details":"MAD!:w=0.23,s=0.76 RRCF-fast:w=0.20,s=0.80 RRCF-mid:w=0.18,s=0.86 RRCF-slow!:w=0.18,s=0.89 COPOD!:w=0.21,s=0.89"} +{"timestamp":"2026-03-16T16:27:37.065046276Z","score":0.6346417446418802,"is_anomaly":false,"confidence":0.756851267574238,"method":"SEAD","details":"MAD!:w=0.24,s=0.67 RRCF-fast:w=0.20,s=0.51 RRCF-mid:w=0.18,s=0.64 RRCF-slow:w=0.18,s=0.64 COPOD!:w=0.21,s=0.70"} +{"timestamp":"2026-03-16T16:28:07.11586669Z","score":0.9430390698107954,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.24,s=0.85 RRCF-fast!:w=0.20,s=0.96 RRCF-mid!:w=0.18,s=0.97 RRCF-slow!:w=0.18,s=0.97 COPOD!:w=0.21,s=0.99"} +{"timestamp":"2026-03-16T16:28:37.067493258Z","score":0.8572630006119877,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.24,s=0.84 RRCF-fast:w=0.20,s=0.83 RRCF-mid!:w=0.18,s=0.93 RRCF-slow!:w=0.18,s=0.93 COPOD!:w=0.21,s=0.78"} +{"timestamp":"2026-03-16T16:29:07.330137171Z","score":0.42574536068953817,"is_anomaly":false,"confidence":0.49663330901439195,"method":"SEAD","details":"MAD!:w=0.24,s=0.09 RRCF-fast:w=0.20,s=0.36 RRCF-mid:w=0.18,s=0.61 RRCF-slow:w=0.18,s=0.67 COPOD!:w=0.21,s=0.50"} +{"timestamp":"2026-03-16T16:29:37.157478923Z","score":0.34831898246453225,"is_anomaly":false,"confidence":0.4063151940721486,"method":"SEAD","details":"MAD!:w=0.24,s=0.17 RRCF-fast:w=0.20,s=0.42 RRCF-mid:w=0.18,s=0.58 RRCF-slow:w=0.18,s=0.59 COPOD!:w=0.21,s=0.07"} +{"timestamp":"2026-03-16T16:30:07.066256947Z","score":0.7748580759082528,"is_anomaly":false,"confidence":0.903874394853263,"method":"SEAD","details":"MAD!:w=0.24,s=0.79 RRCF-fast:w=0.20,s=0.71 RRCF-mid:w=0.18,s=0.76 RRCF-slow:w=0.18,s=0.83 COPOD!:w=0.21,s=0.78"} +{"timestamp":"2026-03-16T16:30:37.110939055Z","score":0.5301888684745782,"is_anomaly":false,"confidence":0.6184669909888612,"method":"SEAD","details":"MAD!:w=0.24,s=0.36 RRCF-fast:w=0.20,s=0.41 RRCF-mid:w=0.18,s=0.58 RRCF-slow:w=0.18,s=0.58 COPOD!:w=0.21,s=0.77"} +{"timestamp":"2026-03-16T16:31:07.066869765Z","score":0.35156273946284416,"is_anomaly":false,"confidence":0.4170298733668301,"method":"SEAD","details":"MAD!:w=0.24,s=0.32 RRCF-fast:w=0.20,s=0.24 RRCF-mid:w=0.18,s=0.53 RRCF-slow:w=0.18,s=0.58 COPOD!:w=0.21,s=0.14"} +{"timestamp":"2026-03-16T16:31:37.112037503Z","score":0.43800843224838715,"is_anomaly":false,"confidence":0.5195732668178672,"method":"SEAD","details":"MAD!:w=0.24,s=0.49 RRCF-fast:w=0.20,s=0.35 RRCF-mid:w=0.18,s=0.41 RRCF-slow:w=0.18,s=0.63 COPOD!:w=0.21,s=0.32"} +{"timestamp":"2026-03-16T16:32:07.068128497Z","score":0.3203428744599579,"is_anomaly":false,"confidence":0.3799963232000065,"method":"SEAD","details":"MAD!:w=0.24,s=0.01 RRCF-fast:w=0.20,s=0.09 RRCF-mid:w=0.18,s=0.41 RRCF-slow:w=0.18,s=0.54 COPOD!:w=0.21,s=0.63"} +{"timestamp":"2026-03-16T16:32:37.11428847Z","score":0.9370687138095769,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.24,s=0.87 RRCF-fast!:w=0.20,s=0.92 RRCF-mid!:w=0.18,s=0.95 RRCF-slow!:w=0.18,s=0.96 COPOD!:w=0.21,s=1.00"} +{"timestamp":"2026-03-16T16:33:07.116799315Z","score":0.8214781020282095,"is_anomaly":false,"confidence":0.9582568026868862,"method":"SEAD","details":"MAD!:w=0.24,s=0.86 RRCF-fast:w=0.20,s=0.82 RRCF-mid!:w=0.18,s=0.94 RRCF-slow!:w=0.18,s=0.91 COPOD!:w=0.20,s=0.60"} +{"timestamp":"2026-03-16T16:33:37.104773151Z","score":0.9233710297538301,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.24,s=0.92 RRCF-fast!:w=0.20,s=0.91 RRCF-mid!:w=0.18,s=0.91 RRCF-slow!:w=0.18,s=0.96 COPOD!:w=0.21,s=0.91"} +{"timestamp":"2026-03-16T16:34:07.113526589Z","score":0.7849421845172498,"is_anomaly":false,"confidence":0.8661066598507242,"method":"SEAD","details":"MAD!:w=0.24,s=0.90 RRCF-fast:w=0.20,s=0.71 RRCF-mid:w=0.18,s=0.85 RRCF-slow!:w=0.18,s=0.88 COPOD!:w=0.21,s=0.59"} +{"timestamp":"2026-03-16T16:34:37.11593083Z","score":0.4205689967444842,"is_anomaly":false,"confidence":0.4905950641101343,"method":"SEAD","details":"MAD!:w=0.24,s=0.37 RRCF-fast:w=0.20,s=0.47 RRCF-mid:w=0.18,s=0.48 RRCF-slow:w=0.18,s=0.52 COPOD!:w=0.21,s=0.30"} +{"timestamp":"2026-03-16T16:35:07.162579287Z","score":0.8020493681643077,"is_anomaly":false,"confidence":0.9355931232209208,"method":"SEAD","details":"MAD!:w=0.24,s=0.78 RRCF-fast:w=0.20,s=0.77 RRCF-mid:w=0.18,s=0.82 RRCF-slow:w=0.18,s=0.87 COPOD!:w=0.21,s=0.79"} +{"timestamp":"2026-03-16T16:35:37.065722716Z","score":0.4757232413416538,"is_anomaly":false,"confidence":0.5549326647738697,"method":"SEAD","details":"MAD!:w=0.24,s=0.57 RRCF-fast:w=0.20,s=0.47 RRCF-mid:w=0.18,s=0.43 RRCF-slow:w=0.18,s=0.58 COPOD!:w=0.21,s=0.33"} +{"timestamp":"2026-03-16T16:36:07.160871658Z","score":0.38127682775904226,"is_anomaly":false,"confidence":0.44476062478708894,"method":"SEAD","details":"MAD!:w=0.24,s=0.64 RRCF-fast:w=0.20,s=0.19 RRCF-mid:w=0.18,s=0.40 RRCF-slow:w=0.18,s=0.50 COPOD!:w=0.21,s=0.14"} +{"timestamp":"2026-03-16T16:36:37.112771905Z","score":0.291784229987981,"is_anomaly":false,"confidence":0.34036722660336494,"method":"SEAD","details":"MAD!:w=0.24,s=0.26 RRCF-fast:w=0.20,s=0.15 RRCF-mid:w=0.18,s=0.53 RRCF-slow:w=0.17,s=0.51 COPOD!:w=0.21,s=0.08"} +{"timestamp":"2026-03-16T16:37:07.110247945Z","score":0.43424246831231406,"is_anomaly":false,"confidence":0.506545211915497,"method":"SEAD","details":"MAD!:w=0.24,s=0.63 RRCF-fast:w=0.20,s=0.27 RRCF-mid:w=0.18,s=0.30 RRCF-slow:w=0.17,s=0.50 COPOD!:w=0.21,s=0.43"} +{"timestamp":"2026-03-16T16:37:38.8442393Z","score":0.3466548576266656,"is_anomaly":false,"confidence":0.41120805805224886,"method":"SEAD","details":"MAD!:w=0.24,s=0.39 RRCF-fast:w=0.20,s=0.40 RRCF-mid:w=0.18,s=0.33 RRCF-slow:w=0.17,s=0.53 COPOD!:w=0.21,s=0.10"} +{"timestamp":"2026-03-16T16:38:07.107737753Z","score":0.8713761094812598,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.24,s=0.89 RRCF-fast:w=0.20,s=0.74 RRCF-mid!:w=0.18,s=0.89 RRCF-slow:w=0.17,s=0.88 COPOD!:w=0.21,s=0.97"} +{"timestamp":"2026-03-16T16:38:37.066382001Z","score":0.7789625800194824,"is_anomaly":false,"confidence":0.9086623118732434,"method":"SEAD","details":"MAD!:w=0.24,s=0.88 RRCF-fast:w=0.20,s=0.64 RRCF-mid:w=0.18,s=0.82 RRCF-slow:w=0.17,s=0.87 COPOD!:w=0.21,s=0.70"} +{"timestamp":"2026-03-16T16:39:07.064020146Z","score":0.41835411896337454,"is_anomaly":false,"confidence":0.48801140217729866,"method":"SEAD","details":"MAD!:w=0.24,s=0.43 RRCF-fast:w=0.20,s=0.10 RRCF-mid:w=0.18,s=0.26 RRCF-slow:w=0.17,s=0.57 COPOD!:w=0.21,s=0.72"} +{"timestamp":"2026-03-16T16:39:37.10643677Z","score":0.330713789933882,"is_anomaly":false,"confidence":0.385778681335588,"method":"SEAD","details":"MAD!:w=0.24,s=0.19 RRCF-fast:w=0.20,s=0.05 RRCF-mid:w=0.18,s=0.18 RRCF-slow:w=0.17,s=0.56 COPOD!:w=0.21,s=0.70"} +{"timestamp":"2026-03-16T16:40:07.068703742Z","score":0.560427296127568,"is_anomaly":false,"confidence":0.6537402124289594,"method":"SEAD","details":"MAD!:w=0.24,s=0.71 RRCF-fast:w=0.21,s=0.38 RRCF-mid:w=0.18,s=0.57 RRCF-slow:w=0.17,s=0.58 COPOD!:w=0.21,s=0.55"} +{"timestamp":"2026-03-16T16:40:38.639328397Z","score":0.3353786403285768,"is_anomaly":false,"confidence":0.39122024406647066,"method":"SEAD","details":"MAD!:w=0.24,s=0.01 RRCF-fast:w=0.21,s=0.41 RRCF-mid:w=0.18,s=0.25 RRCF-slow:w=0.17,s=0.46 COPOD!:w=0.21,s=0.60"} +{"timestamp":"2026-03-16T16:41:07.068282725Z","score":0.1472197139816634,"is_anomaly":false,"confidence":0.17463460084729124,"method":"SEAD","details":"MAD!:w=0.24,s=0.05 RRCF-fast:w=0.21,s=0.06 RRCF-mid:w=0.18,s=0.14 RRCF-slow:w=0.17,s=0.44 COPOD!:w=0.21,s=0.11"} +{"timestamp":"2026-03-16T16:41:37.156325761Z","score":0.6153742769211772,"is_anomaly":false,"confidence":0.729967735402647,"method":"SEAD","details":"MAD!:w=0.24,s=0.77 RRCF-fast:w=0.21,s=0.62 RRCF-mid:w=0.18,s=0.63 RRCF-slow:w=0.17,s=0.78 COPOD!:w=0.21,s=0.28"} +{"timestamp":"2026-03-16T16:42:07.06436458Z","score":0.33071616163057305,"is_anomaly":false,"confidence":0.39230129795862023,"method":"SEAD","details":"MAD!:w=0.24,s=0.00 RRCF-fast:w=0.21,s=0.30 RRCF-mid:w=0.18,s=0.38 RRCF-slow:w=0.17,s=0.62 COPOD!:w=0.21,s=0.46"} +{"timestamp":"2026-03-16T16:42:37.109936885Z","score":0.31322742045945506,"is_anomaly":false,"confidence":0.3715558471549311,"method":"SEAD","details":"MAD!:w=0.24,s=0.60 RRCF-fast:w=0.21,s=0.15 RRCF-mid:w=0.18,s=0.33 RRCF-slow:w=0.17,s=0.38 COPOD!:w=0.21,s=0.07"} +{"timestamp":"2026-03-16T16:43:07.860459548Z","score":0.25829395145664663,"is_anomaly":false,"confidence":0.30639280497120996,"method":"SEAD","details":"MAD!:w=0.24,s=0.22 RRCF-fast:w=0.21,s=0.15 RRCF-mid:w=0.18,s=0.34 RRCF-slow:w=0.17,s=0.47 COPOD!:w=0.21,s=0.16"} +{"timestamp":"2026-03-16T16:43:37.109836775Z","score":0.8739009608852669,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.24,s=0.92 RRCF-fast:w=0.21,s=0.73 RRCF-mid:w=0.18,s=0.87 RRCF-slow!:w=0.17,s=0.94 COPOD!:w=0.21,s=0.92"} +{"timestamp":"2026-03-16T16:44:07.117200031Z","score":0.7062594855251878,"is_anomaly":false,"confidence":0.8238539223330522,"method":"SEAD","details":"MAD!:w=0.24,s=0.76 RRCF-fast:w=0.21,s=0.54 RRCF-mid:w=0.18,s=0.82 RRCF-slow:w=0.17,s=0.86 COPOD!:w=0.21,s=0.59"} +{"timestamp":"2026-03-16T16:44:37.100914124Z","score":0.8955640045103328,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.24,s=1.00 RRCF-fast:w=0.21,s=0.78 RRCF-mid:w=0.18,s=0.85 RRCF-slow!:w=0.17,s=0.94 COPOD!:w=0.21,s=0.89"} +{"timestamp":"2026-03-16T16:45:07.109086164Z","score":0.8885442578024338,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.24,s=0.87 RRCF-fast!:w=0.21,s=0.94 RRCF-mid:w=0.18,s=0.87 RRCF-slow!:w=0.17,s=0.93 COPOD!:w=0.21,s=0.83"} +{"timestamp":"2026-03-16T16:45:37.117399437Z","score":0.330870413820772,"is_anomaly":false,"confidence":0.3797102195259208,"method":"SEAD","details":"MAD!:w=0.24,s=0.00 RRCF-fast:w=0.21,s=0.52 RRCF-mid:w=0.18,s=0.49 RRCF-slow:w=0.17,s=0.55 COPOD!:w=0.21,s=0.20"} +{"timestamp":"2026-03-16T16:46:07.155459969Z","score":0.2865313756809017,"is_anomaly":false,"confidence":0.3288262927606279,"method":"SEAD","details":"MAD:w=0.24,s=0.00 RRCF-fast:w=0.21,s=0.20 RRCF-mid:w=0.18,s=0.18 RRCF-slow:w=0.17,s=0.51 COPOD!:w=0.21,s=0.61"} +{"timestamp":"2026-03-16T16:46:37.118201236Z","score":0.25513006512938574,"is_anomaly":false,"confidence":0.29278983248837015,"method":"SEAD","details":"MAD:w=0.24,s=0.00 RRCF-fast:w=0.21,s=0.14 RRCF-mid:w=0.18,s=0.31 RRCF-slow:w=0.17,s=0.35 COPOD!:w=0.21,s=0.53"} +{"timestamp":"2026-03-16T16:47:07.160123553Z","score":0.18801523136379486,"is_anomaly":false,"confidence":0.21576817325841363,"method":"SEAD","details":"MAD:w=0.24,s=0.00 RRCF-fast:w=0.21,s=0.23 RRCF-mid:w=0.18,s=0.14 RRCF-slow:w=0.17,s=0.37 COPOD!:w=0.21,s=0.26"} +{"timestamp":"2026-03-16T16:47:37.115885875Z","score":0.22204924473786275,"is_anomaly":false,"confidence":0.25902114587862185,"method":"SEAD","details":"MAD!:w=0.24,s=0.03 RRCF-fast:w=0.21,s=0.24 RRCF-mid:w=0.18,s=0.13 RRCF-slow:w=0.17,s=0.41 COPOD!:w=0.21,s=0.36"} +{"timestamp":"2026-03-16T16:48:08.68891889Z","score":0.21603554751370724,"is_anomaly":false,"confidence":0.25200614905750346,"method":"SEAD","details":"MAD:w=0.24,s=0.00 RRCF-fast:w=0.21,s=0.05 RRCF-mid:w=0.18,s=0.11 RRCF-slow:w=0.16,s=0.56 COPOD!:w=0.21,s=0.45"} +{"timestamp":"2026-03-16T16:48:37.067390285Z","score":0.14673332645320572,"is_anomaly":false,"confidence":0.17116488912790465,"method":"SEAD","details":"MAD!:w=0.24,s=0.05 RRCF-fast:w=0.21,s=0.15 RRCF-mid:w=0.18,s=0.11 RRCF-slow:w=0.16,s=0.44 COPOD!:w=0.21,s=0.06"} +{"timestamp":"2026-03-16T16:49:07.107712523Z","score":0.19704361368260737,"is_anomaly":false,"confidence":0.22985199821051505,"method":"SEAD","details":"MAD:w=0.25,s=0.01 RRCF-fast:w=0.21,s=0.05 RRCF-mid:w=0.18,s=0.13 RRCF-slow:w=0.16,s=0.39 COPOD!:w=0.21,s=0.48"} +{"timestamp":"2026-03-16T16:49:37.065240168Z","score":0.663503384381904,"is_anomaly":false,"confidence":0.7739787951984847,"method":"SEAD","details":"MAD!:w=0.25,s=0.78 RRCF-fast:w=0.21,s=0.55 RRCF-mid:w=0.18,s=0.50 RRCF-slow:w=0.16,s=0.65 COPOD!:w=0.20,s=0.79"} +{"timestamp":"2026-03-16T16:50:07.108022165Z","score":0.869599321073995,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.97 RRCF-fast:w=0.21,s=0.79 RRCF-mid:w=0.18,s=0.73 RRCF-slow:w=0.16,s=0.88 COPOD!:w=0.20,s=0.94"} +{"timestamp":"2026-03-16T16:50:37.118260164Z","score":0.7473078161840601,"is_anomaly":false,"confidence":0.8593702847664378,"method":"SEAD","details":"MAD!:w=0.25,s=0.76 RRCF-fast:w=0.21,s=0.74 RRCF-mid:w=0.18,s=0.67 RRCF-slow:w=0.16,s=0.80 COPOD!:w=0.20,s=0.76"} +{"timestamp":"2026-03-16T16:51:08.402314599Z","score":0.785317908135201,"is_anomaly":false,"confidence":0.9160758222092565,"method":"SEAD","details":"MAD!:w=0.25,s=0.84 RRCF-fast:w=0.21,s=0.78 RRCF-mid:w=0.18,s=0.64 RRCF-slow:w=0.16,s=0.77 COPOD!:w=0.20,s=0.86"} +{"timestamp":"2026-03-16T16:51:37.110376805Z","score":0.32748232459440557,"is_anomaly":false,"confidence":0.3820091668025106,"method":"SEAD","details":"MAD!:w=0.24,s=0.06 RRCF-fast:w=0.21,s=0.26 RRCF-mid:w=0.18,s=0.16 RRCF-slow:w=0.16,s=0.52 COPOD!:w=0.20,s=0.71"} +{"timestamp":"2026-03-16T16:52:07.116827711Z","score":0.1755005488309537,"is_anomaly":false,"confidence":0.20472194496399168,"method":"SEAD","details":"MAD!:w=0.25,s=0.06 RRCF-fast:w=0.21,s=0.25 RRCF-mid:w=0.18,s=0.19 RRCF-slow:w=0.16,s=0.37 COPOD!:w=0.20,s=0.07"} +{"timestamp":"2026-03-16T16:52:37.151824481Z","score":0.21876372495959698,"is_anomaly":false,"confidence":0.255188576671832,"method":"SEAD","details":"MAD:w=0.25,s=0.03 RRCF-fast:w=0.21,s=0.10 RRCF-mid:w=0.18,s=0.06 RRCF-slow:w=0.16,s=0.32 COPOD!:w=0.20,s=0.63"} +{"timestamp":"2026-03-16T16:53:07.06516467Z","score":0.19198712486919778,"is_anomaly":false,"confidence":0.22395358802624277,"method":"SEAD","details":"MAD!:w=0.25,s=0.06 RRCF-fast:w=0.21,s=0.31 RRCF-mid:w=0.18,s=0.15 RRCF-slow:w=0.16,s=0.42 COPOD!:w=0.20,s=0.09"} +{"timestamp":"2026-03-16T16:53:37.127455839Z","score":0.22959558702315358,"is_anomaly":false,"confidence":0.2678239780082059,"method":"SEAD","details":"MAD:w=0.25,s=0.03 RRCF-fast:w=0.21,s=0.24 RRCF-mid:w=0.18,s=0.08 RRCF-slow:w=0.16,s=0.41 COPOD!:w=0.20,s=0.46"} +{"timestamp":"2026-03-16T16:54:08.456869675Z","score":0.20828588007208368,"is_anomaly":false,"confidence":0.24296613749035173,"method":"SEAD","details":"MAD:w=0.25,s=0.03 RRCF-fast:w=0.21,s=0.06 RRCF-mid:w=0.18,s=0.10 RRCF-slow:w=0.16,s=0.37 COPOD!:w=0.20,s=0.57"} +{"timestamp":"2026-03-16T16:54:37.159109865Z","score":0.5586855551763084,"is_anomaly":false,"confidence":0.6627225817020267,"method":"SEAD","details":"MAD!:w=0.25,s=0.12 RRCF-fast:w=0.21,s=0.68 RRCF-mid:w=0.18,s=0.61 RRCF-slow:w=0.16,s=0.69 COPOD!:w=0.20,s=0.84"} +{"timestamp":"2026-03-16T16:55:07.114400834Z","score":0.28052304352836077,"is_anomaly":false,"confidence":0.33276134296215454,"method":"SEAD","details":"MAD!:w=0.25,s=0.11 RRCF-fast:w=0.21,s=0.36 RRCF-mid:w=0.18,s=0.21 RRCF-slow:w=0.16,s=0.47 COPOD!:w=0.20,s=0.32"} +{"timestamp":"2026-03-16T16:55:37.11317998Z","score":0.9171619591610471,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=1.00 RRCF-fast!:w=0.21,s=0.98 RRCF-mid:w=0.18,s=0.75 RRCF-slow:w=0.16,s=0.84 COPOD!:w=0.20,s=0.97"} +{"timestamp":"2026-03-16T16:56:07.067097111Z","score":0.789339122723978,"is_anomaly":false,"confidence":0.92076658173802,"method":"SEAD","details":"MAD!:w=0.25,s=0.76 RRCF-fast!:w=0.21,s=0.99 RRCF-mid:w=0.18,s=0.64 RRCF-slow:w=0.16,s=0.85 COPOD!:w=0.20,s=0.70"} +{"timestamp":"2026-03-16T16:56:37.084871305Z","score":0.29814430632615413,"is_anomaly":false,"confidence":0.3477862757558803,"method":"SEAD","details":"MAD!:w=0.25,s=0.09 RRCF-fast:w=0.21,s=0.78 RRCF-mid:w=0.18,s=0.06 RRCF-slow:w=0.16,s=0.29 COPOD!:w=0.20,s=0.28"} +{"timestamp":"2026-03-16T16:57:07.111570945Z","score":0.24696101818220775,"is_anomaly":false,"confidence":0.2880808083469202,"method":"SEAD","details":"MAD!:w=0.26,s=0.09 RRCF-fast:w=0.21,s=0.70 RRCF-mid:w=0.18,s=0.09 RRCF-slow:w=0.16,s=0.27 COPOD!:w=0.20,s=0.11"} +{"timestamp":"2026-03-16T16:57:37.114040805Z","score":0.2607095164337926,"is_anomaly":false,"confidence":0.3092581904158327,"method":"SEAD","details":"MAD!:w=0.26,s=0.09 RRCF-fast:w=0.20,s=0.58 RRCF-mid:w=0.18,s=0.06 RRCF-slow:w=0.16,s=0.39 COPOD!:w=0.20,s=0.24"} +{"timestamp":"2026-03-16T16:58:07.127029892Z","score":0.24854511765514697,"is_anomaly":false,"confidence":0.2948285677260301,"method":"SEAD","details":"MAD:w=0.26,s=0.00 RRCF-fast:w=0.20,s=0.61 RRCF-mid:w=0.18,s=0.12 RRCF-slow:w=0.16,s=0.23 COPOD!:w=0.20,s=0.34"} +{"timestamp":"2026-03-16T16:58:37.110647177Z","score":0.16947230743197203,"is_anomaly":false,"confidence":0.20103101658476316,"method":"SEAD","details":"MAD!:w=0.26,s=0.08 RRCF-fast:w=0.20,s=0.34 RRCF-mid:w=0.18,s=0.09 RRCF-slow:w=0.16,s=0.37 COPOD!:w=0.20,s=0.03"} +{"timestamp":"2026-03-16T16:59:07.109554858Z","score":0.18296683826008997,"is_anomaly":false,"confidence":0.21703846518694808,"method":"SEAD","details":"MAD:w=0.26,s=0.00 RRCF-fast:w=0.20,s=0.50 RRCF-mid:w=0.18,s=0.15 RRCF-slow:w=0.16,s=0.28 COPOD!:w=0.20,s=0.05"} +{"timestamp":"2026-03-16T16:59:38.4709379Z","score":0.2681441640360043,"is_anomaly":false,"confidence":0.31807729949666014,"method":"SEAD","details":"MAD!:w=0.26,s=0.10 RRCF-fast:w=0.20,s=0.47 RRCF-mid:w=0.18,s=0.16 RRCF-slow:w=0.16,s=0.40 COPOD!:w=0.20,s=0.29"} +{"timestamp":"2026-03-16T17:00:07.157006052Z","score":0.7074821746215848,"is_anomaly":false,"confidence":0.8392277354037153,"method":"SEAD","details":"MAD!:w=0.26,s=0.68 RRCF-fast:w=0.20,s=0.77 RRCF-mid:w=0.18,s=0.64 RRCF-slow:w=0.16,s=0.73 COPOD!:w=0.20,s=0.73"} +{"timestamp":"2026-03-16T17:00:37.114237131Z","score":0.36280278033850005,"is_anomaly":false,"confidence":0.4303630065372416,"method":"SEAD","details":"MAD:w=0.26,s=0.08 RRCF-fast:w=0.20,s=0.63 RRCF-mid:w=0.18,s=0.40 RRCF-slow:w=0.16,s=0.47 COPOD!:w=0.20,s=0.35"} +{"timestamp":"2026-03-16T17:01:07.110392Z","score":0.8399744270220179,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.26,s=0.82 RRCF-fast!:w=0.20,s=0.87 RRCF-mid:w=0.18,s=0.81 RRCF-slow:w=0.16,s=0.79 COPOD!:w=0.20,s=0.91"} +{"timestamp":"2026-03-16T17:01:37.12161551Z","score":0.40517287696871623,"is_anomaly":false,"confidence":0.48236334813809234,"method":"SEAD","details":"MAD!:w=0.26,s=0.17 RRCF-fast:w=0.20,s=0.52 RRCF-mid:w=0.18,s=0.48 RRCF-slow:w=0.16,s=0.44 COPOD!:w=0.20,s=0.50"} +{"timestamp":"2026-03-16T17:02:07.102248345Z","score":0.966116395503647,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.27,s=1.00 RRCF-fast!:w=0.20,s=0.96 RRCF-mid!:w=0.18,s=0.99 RRCF-slow!:w=0.16,s=0.91 COPOD!:w=0.20,s=0.96"} +{"timestamp":"2026-03-16T17:02:37.065420866Z","score":0.8108934114376715,"is_anomaly":false,"confidence":0.961895954055134,"method":"SEAD","details":"MAD!:w=0.27,s=0.77 RRCF-fast!:w=0.20,s=0.92 RRCF-mid!:w=0.18,s=0.97 RRCF-slow:w=0.16,s=0.85 COPOD!:w=0.20,s=0.58"} +{"timestamp":"2026-03-16T17:03:07.070430634Z","score":0.3714399817952112,"is_anomaly":false,"confidence":0.4406086060431492,"method":"SEAD","details":"MAD!:w=0.27,s=0.15 RRCF-fast:w=0.20,s=0.59 RRCF-mid:w=0.18,s=0.67 RRCF-slow:w=0.16,s=0.41 COPOD!:w=0.20,s=0.14"} +{"timestamp":"2026-03-16T17:03:37.113301514Z","score":0.47111122587091325,"is_anomaly":false,"confidence":0.5588403798617095,"method":"SEAD","details":"MAD!:w=0.27,s=0.12 RRCF-fast:w=0.20,s=0.73 RRCF-mid:w=0.18,s=0.56 RRCF-slow:w=0.16,s=0.33 COPOD!:w=0.20,s=0.73"} +{"timestamp":"2026-03-16T17:04:07.113098772Z","score":0.38769095935300124,"is_anomaly":false,"confidence":0.4598857999897183,"method":"SEAD","details":"MAD!:w=0.27,s=0.11 RRCF-fast:w=0.19,s=0.29 RRCF-mid:w=0.18,s=0.61 RRCF-slow:w=0.16,s=0.41 COPOD!:w=0.20,s=0.64"} +{"timestamp":"2026-03-16T17:04:37.153114753Z","score":0.1972682845829384,"is_anomaly":false,"confidence":0.23485034572102217,"method":"SEAD","details":"MAD:w=0.27,s=0.04 RRCF-fast:w=0.19,s=0.27 RRCF-mid:w=0.18,s=0.39 RRCF-slow:w=0.16,s=0.30 COPOD!:w=0.20,s=0.09"} +{"timestamp":"2026-03-16T17:05:07.06659391Z","score":0.4492925082922602,"is_anomaly":false,"confidence":0.5348883178326608,"method":"SEAD","details":"MAD!:w=0.27,s=0.19 RRCF-fast:w=0.19,s=0.49 RRCF-mid:w=0.18,s=0.62 RRCF-slow:w=0.16,s=0.41 COPOD!:w=0.20,s=0.64"} +{"timestamp":"2026-03-16T17:05:37.111021325Z","score":0.2931971985087335,"is_anomaly":false,"confidence":0.3490549105741383,"method":"SEAD","details":"MAD!:w=0.27,s=0.12 RRCF-fast:w=0.19,s=0.34 RRCF-mid:w=0.18,s=0.51 RRCF-slow:w=0.16,s=0.50 COPOD!:w=0.20,s=0.13"} +{"timestamp":"2026-03-16T17:06:07.114525291Z","score":0.22284835737479874,"is_anomaly":false,"confidence":0.2653037404541809,"method":"SEAD","details":"MAD!:w=0.28,s=0.10 RRCF-fast:w=0.19,s=0.12 RRCF-mid:w=0.18,s=0.51 RRCF-slow:w=0.16,s=0.22 COPOD!:w=0.20,s=0.24"} +{"timestamp":"2026-03-16T17:06:37.159151801Z","score":0.22491393782392272,"is_anomaly":false,"confidence":0.26776283966324504,"method":"SEAD","details":"MAD:w=0.28,s=0.00 RRCF-fast:w=0.19,s=0.24 RRCF-mid:w=0.18,s=0.45 RRCF-slow:w=0.16,s=0.25 COPOD!:w=0.20,s=0.30"} +{"timestamp":"2026-03-16T17:07:07.063726101Z","score":0.3414454484493934,"is_anomaly":false,"confidence":0.4064950520695355,"method":"SEAD","details":"MAD!:w=0.28,s=0.18 RRCF-fast:w=0.19,s=0.45 RRCF-mid:w=0.18,s=0.43 RRCF-slow:w=0.16,s=0.30 COPOD!:w=0.20,s=0.41"} +{"timestamp":"2026-03-16T17:07:37.110126872Z","score":0.9783299547696587,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=1.00 RRCF-fast!:w=0.19,s=0.97 RRCF-mid!:w=0.18,s=0.94 RRCF-slow!:w=0.16,s=0.97 COPOD!:w=0.20,s=0.99"} +{"timestamp":"2026-03-16T17:08:07.123124684Z","score":0.8082343634314367,"is_anomaly":false,"confidence":0.9622130596247912,"method":"SEAD","details":"MAD!:w=0.28,s=0.76 RRCF-fast!:w=0.19,s=0.92 RRCF-mid!:w=0.18,s=0.85 RRCF-slow!:w=0.16,s=0.89 COPOD!:w=0.20,s=0.66"} +{"timestamp":"2026-03-16T17:08:37.065659798Z","score":0.3600431117294958,"is_anomaly":false,"confidence":0.4286358014564391,"method":"SEAD","details":"MAD!:w=0.28,s=0.15 RRCF-fast:w=0.19,s=0.62 RRCF-mid:w=0.18,s=0.51 RRCF-slow:w=0.16,s=0.28 COPOD!:w=0.20,s=0.33"} +{"timestamp":"2026-03-16T17:09:07.110814269Z","score":0.21151661349284448,"is_anomaly":false,"confidence":0.25181315845857305,"method":"SEAD","details":"MAD!:w=0.28,s=0.15 RRCF-fast:w=0.19,s=0.26 RRCF-mid:w=0.18,s=0.23 RRCF-slow:w=0.16,s=0.37 COPOD!:w=0.20,s=0.12"} +{"timestamp":"2026-03-16T17:09:37.065854361Z","score":0.3386205865061712,"is_anomaly":false,"confidence":0.4031320188004904,"method":"SEAD","details":"MAD!:w=0.28,s=0.15 RRCF-fast:w=0.19,s=0.59 RRCF-mid:w=0.18,s=0.31 RRCF-slow:w=0.16,s=0.41 COPOD!:w=0.20,s=0.34"} +{"timestamp":"2026-03-16T17:10:07.158811958Z","score":0.4605958268483117,"is_anomaly":false,"confidence":0.5483450591243277,"method":"SEAD","details":"MAD!:w=0.28,s=0.22 RRCF-fast:w=0.19,s=0.57 RRCF-mid:w=0.18,s=0.56 RRCF-slow:w=0.15,s=0.47 COPOD!:w=0.20,s=0.61"} +{"timestamp":"2026-03-16T17:10:37.115013671Z","score":0.31420757225232915,"is_anomaly":false,"confidence":0.37406802176858767,"method":"SEAD","details":"MAD!:w=0.28,s=0.11 RRCF-fast:w=0.19,s=0.50 RRCF-mid:w=0.18,s=0.41 RRCF-slow:w=0.15,s=0.26 COPOD!:w=0.20,s=0.39"} +{"timestamp":"2026-03-16T17:11:07.159156076Z","score":0.20719025711039776,"is_anomaly":false,"confidence":0.2470877625793807,"method":"SEAD","details":"MAD:w=0.29,s=0.06 RRCF-fast:w=0.19,s=0.18 RRCF-mid:w=0.18,s=0.33 RRCF-slow:w=0.15,s=0.19 COPOD!:w=0.20,s=0.34"} +{"timestamp":"2026-03-16T17:11:37.068231978Z","score":0.2864847609895282,"is_anomaly":false,"confidence":0.3416515795348118,"method":"SEAD","details":"MAD:w=0.29,s=0.07 RRCF-fast:w=0.19,s=0.43 RRCF-mid:w=0.18,s=0.52 RRCF-slow:w=0.15,s=0.29 COPOD!:w=0.19,s=0.26"} +{"timestamp":"2026-03-16T17:12:07.158962782Z","score":0.34451814241049805,"is_anomaly":false,"confidence":0.4108601348511111,"method":"SEAD","details":"MAD!:w=0.29,s=0.23 RRCF-fast:w=0.19,s=0.37 RRCF-mid:w=0.17,s=0.37 RRCF-slow:w=0.15,s=0.26 COPOD!:w=0.19,s=0.53"} +{"timestamp":"2026-03-16T17:12:37.068197081Z","score":0.16314866514709514,"is_anomaly":false,"confidence":0.19456531982355113,"method":"SEAD","details":"MAD!:w=0.29,s=0.13 RRCF-fast:w=0.19,s=0.38 RRCF-mid:w=0.17,s=0.13 RRCF-slow:w=0.15,s=0.17 COPOD!:w=0.19,s=0.02"} +{"timestamp":"2026-03-16T17:13:07.11269954Z","score":0.9415386512850573,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=0.96 RRCF-fast!:w=0.19,s=0.94 RRCF-mid!:w=0.17,s=0.86 RRCF-slow!:w=0.15,s=0.94 COPOD!:w=0.19,s=0.98"} +{"timestamp":"2026-03-16T17:13:37.066706673Z","score":0.7632146548609703,"is_anomaly":false,"confidence":0.9086165367757851,"method":"SEAD","details":"MAD!:w=0.29,s=0.77 RRCF-fast!:w=0.19,s=0.88 RRCF-mid:w=0.17,s=0.78 RRCF-slow!:w=0.15,s=0.86 COPOD!:w=0.19,s=0.54"} +{"timestamp":"2026-03-16T17:14:07.117671453Z","score":0.7947694750234537,"is_anomaly":false,"confidence":0.9461829425464412,"method":"SEAD","details":"MAD!:w=0.29,s=0.82 RRCF-fast:w=0.19,s=0.81 RRCF-mid:w=0.17,s=0.69 RRCF-slow:w=0.15,s=0.74 COPOD!:w=0.19,s=0.88"} +{"timestamp":"2026-03-16T17:14:37.109694562Z","score":0.3849915322229506,"is_anomaly":false,"confidence":0.45912726609673443,"method":"SEAD","details":"MAD!:w=0.29,s=0.21 RRCF-fast:w=0.19,s=0.50 RRCF-mid:w=0.18,s=0.44 RRCF-slow:w=0.15,s=0.35 COPOD!:w=0.19,s=0.50"} +{"timestamp":"2026-03-16T17:15:07.066071412Z","score":0.5258687831808614,"is_anomaly":false,"confidence":0.6271324861442036,"method":"SEAD","details":"MAD!:w=0.29,s=0.25 RRCF-fast:w=0.19,s=0.63 RRCF-mid:w=0.17,s=0.69 RRCF-slow:w=0.15,s=0.67 COPOD!:w=0.19,s=0.59"} +{"timestamp":"2026-03-16T17:15:37.112556788Z","score":0.27153621382382936,"is_anomaly":false,"confidence":0.3238244716171997,"method":"SEAD","details":"MAD:w=0.29,s=0.07 RRCF-fast:w=0.19,s=0.55 RRCF-mid:w=0.17,s=0.34 RRCF-slow:w=0.15,s=0.29 COPOD!:w=0.19,s=0.23"} +{"timestamp":"2026-03-16T17:16:07.064647856Z","score":0.1471454346792421,"is_anomaly":false,"confidence":0.17548043395347349,"method":"SEAD","details":"MAD!:w=0.29,s=0.10 RRCF-fast:w=0.19,s=0.17 RRCF-mid:w=0.17,s=0.18 RRCF-slow:w=0.15,s=0.21 COPOD!:w=0.19,s=0.12"} +{"timestamp":"2026-03-16T17:16:37.155407722Z","score":0.20910958985277894,"is_anomaly":false,"confidence":0.24937669083100028,"method":"SEAD","details":"MAD:w=0.29,s=0.05 RRCF-fast:w=0.18,s=0.35 RRCF-mid:w=0.17,s=0.20 RRCF-slow:w=0.15,s=0.16 COPOD!:w=0.19,s=0.35"} +{"timestamp":"2026-03-16T17:17:07.118860762Z","score":0.37396964490868156,"is_anomaly":false,"confidence":0.4459829536475554,"method":"SEAD","details":"MAD!:w=0.29,s=0.27 RRCF-fast:w=0.18,s=0.35 RRCF-mid:w=0.17,s=0.39 RRCF-slow:w=0.15,s=0.17 COPOD!:w=0.19,s=0.72"} +{"timestamp":"2026-03-16T17:17:37.112597348Z","score":0.31413367563620975,"is_anomaly":false,"confidence":0.3807089800427662,"method":"SEAD","details":"MAD!:w=0.30,s=0.16 RRCF-fast:w=0.18,s=0.17 RRCF-mid:w=0.17,s=0.38 RRCF-slow:w=0.15,s=0.25 COPOD!:w=0.19,s=0.68"} +{"timestamp":"2026-03-16T17:18:07.072601553Z","score":0.10956697067732953,"is_anomaly":false,"confidence":0.1327878317040059,"method":"SEAD","details":"MAD:w=0.30,s=0.04 RRCF-fast:w=0.18,s=0.04 RRCF-mid:w=0.17,s=0.21 RRCF-slow:w=0.15,s=0.20 COPOD!:w=0.19,s=0.13"} +{"timestamp":"2026-03-16T17:18:37.113973742Z","score":0.8273910338749207,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=0.85 RRCF-fast:w=0.19,s=0.82 RRCF-mid!:w=0.17,s=0.78 RRCF-slow:w=0.15,s=0.76 COPOD!:w=0.19,s=0.89"} +{"timestamp":"2026-03-16T17:19:07.066821725Z","score":0.4589303252843217,"is_anomaly":false,"confidence":0.5546716201830386,"method":"SEAD","details":"MAD!:w=0.30,s=0.25 RRCF-fast:w=0.19,s=0.64 RRCF-mid:w=0.17,s=0.34 RRCF-slow:w=0.15,s=0.39 COPOD!:w=0.19,s=0.79"} +{"timestamp":"2026-03-16T17:19:37.110108997Z","score":0.9627045806833022,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=1.00 RRCF-fast!:w=0.18,s=0.99 RRCF-mid!:w=0.17,s=0.85 RRCF-slow!:w=0.15,s=0.93 COPOD!:w=0.19,s=1.00"} +{"timestamp":"2026-03-16T17:20:07.067633867Z","score":0.7540069787860569,"is_anomaly":false,"confidence":0.8992020182600357,"method":"SEAD","details":"MAD!:w=0.30,s=0.79 RRCF-fast!:w=0.18,s=0.99 RRCF-mid:w=0.17,s=0.65 RRCF-slow!:w=0.15,s=0.84 COPOD!:w=0.19,s=0.49"} +{"timestamp":"2026-03-16T17:20:37.067715283Z","score":0.33189091322830605,"is_anomaly":false,"confidence":0.39580134854658705,"method":"SEAD","details":"MAD!:w=0.30,s=0.24 RRCF-fast:w=0.18,s=0.78 RRCF-mid:w=0.17,s=0.12 RRCF-slow:w=0.15,s=0.35 COPOD!:w=0.19,s=0.22"} +{"timestamp":"2026-03-16T17:21:07.108662281Z","score":0.39687667962244316,"is_anomaly":false,"confidence":0.4796724443142083,"method":"SEAD","details":"MAD!:w=0.30,s=0.25 RRCF-fast:w=0.18,s=0.80 RRCF-mid:w=0.17,s=0.11 RRCF-slow:w=0.15,s=0.27 COPOD!:w=0.19,s=0.61"} +{"timestamp":"2026-03-16T17:21:37.065435695Z","score":0.26309943260788493,"is_anomaly":false,"confidence":0.3179868065232847,"method":"SEAD","details":"MAD!:w=0.30,s=0.25 RRCF-fast:w=0.18,s=0.77 RRCF-mid:w=0.18,s=0.16 RRCF-slow:w=0.15,s=0.11 COPOD!:w=0.19,s=0.02"} +{"timestamp":"2026-03-16T17:22:07.112073693Z","score":0.2837240726101603,"is_anomaly":false,"confidence":0.3429141252370058,"method":"SEAD","details":"MAD:w=0.30,s=0.07 RRCF-fast:w=0.18,s=0.70 RRCF-mid:w=0.18,s=0.11 RRCF-slow:w=0.16,s=0.22 COPOD!:w=0.19,s=0.44"} +{"timestamp":"2026-03-16T17:22:37.114177716Z","score":0.16021084669495908,"is_anomaly":false,"confidence":0.1936337718631583,"method":"SEAD","details":"MAD!:w=0.30,s=0.11 RRCF-fast:w=0.18,s=0.52 RRCF-mid:w=0.18,s=0.13 RRCF-slow:w=0.16,s=0.07 COPOD!:w=0.19,s=0.01"} +{"timestamp":"2026-03-16T17:23:07.159376205Z","score":0.24646243262626283,"is_anomaly":false,"confidence":0.29787902277838957,"method":"SEAD","details":"MAD!:w=0.30,s=0.12 RRCF-fast:w=0.18,s=0.48 RRCF-mid:w=0.18,s=0.13 RRCF-slow:w=0.16,s=0.19 COPOD!:w=0.19,s=0.38"} +{"timestamp":"2026-03-16T17:23:37.114646655Z","score":0.1890054778982976,"is_anomaly":false,"confidence":0.22843549199841842,"method":"SEAD","details":"MAD!:w=0.30,s=0.13 RRCF-fast:w=0.18,s=0.52 RRCF-mid:w=0.18,s=0.15 RRCF-slow:w=0.16,s=0.17 COPOD!:w=0.19,s=0.03"} +{"timestamp":"2026-03-16T17:24:07.118130018Z","score":0.20326564642337708,"is_anomaly":false,"confidence":0.2456705935903402,"method":"SEAD","details":"MAD:w=0.30,s=0.02 RRCF-fast:w=0.17,s=0.49 RRCF-mid:w=0.18,s=0.14 RRCF-slow:w=0.16,s=0.13 COPOD!:w=0.19,s=0.36"} +{"timestamp":"2026-03-16T17:24:37.10080179Z","score":0.9122261012163984,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=0.83 RRCF-fast!:w=0.17,s=0.93 RRCF-mid!:w=0.18,s=0.98 RRCF-slow!:w=0.16,s=0.98 COPOD!:w=0.19,s=0.91"} +{"timestamp":"2026-03-16T17:25:07.064633617Z","score":0.8926780506923174,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=0.82 RRCF-fast:w=0.17,s=0.91 RRCF-mid!:w=0.18,s=0.97 RRCF-slow!:w=0.16,s=0.95 COPOD!:w=0.19,s=0.87"} +{"timestamp":"2026-03-16T17:25:37.107170864Z","score":0.8649718479907614,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=0.81 RRCF-fast:w=0.17,s=0.89 RRCF-mid!:w=0.18,s=0.91 RRCF-slow!:w=0.16,s=0.90 COPOD!:w=0.19,s=0.86"} +{"timestamp":"2026-03-16T17:26:07.152117371Z","score":0.7314520474088048,"is_anomaly":false,"confidence":0.8708027576530393,"method":"SEAD","details":"MAD!:w=0.31,s=0.80 RRCF-fast:w=0.17,s=0.61 RRCF-mid:w=0.18,s=0.73 RRCF-slow:w=0.16,s=0.71 COPOD!:w=0.19,s=0.74"} +{"timestamp":"2026-03-16T17:26:37.115053662Z","score":0.7009028224323596,"is_anomaly":false,"confidence":0.8344335254553972,"method":"SEAD","details":"MAD!:w=0.31,s=0.80 RRCF-fast:w=0.17,s=0.56 RRCF-mid:w=0.18,s=0.65 RRCF-slow:w=0.16,s=0.61 COPOD!:w=0.19,s=0.80"} +{"timestamp":"2026-03-16T17:27:07.108154505Z","score":0.8957243748714374,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=0.93 RRCF-fast:w=0.17,s=0.84 RRCF-mid!:w=0.18,s=0.89 RRCF-slow!:w=0.16,s=0.92 COPOD!:w=0.19,s=0.88"} +{"timestamp":"2026-03-16T17:27:37.065418569Z","score":0.8899785527397868,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=0.97 RRCF-fast:w=0.17,s=0.75 RRCF-mid!:w=0.18,s=0.89 RRCF-slow!:w=0.16,s=0.96 COPOD!:w=0.19,s=0.82"} +{"timestamp":"2026-03-16T17:28:09.395889319Z","score":0.4045056626725497,"is_anomaly":false,"confidence":0.4798316952992331,"method":"SEAD","details":"MAD!:w=0.30,s=0.28 RRCF-fast:w=0.17,s=0.36 RRCF-mid:w=0.18,s=0.55 RRCF-slow:w=0.16,s=0.30 COPOD!:w=0.19,s=0.59"} +{"timestamp":"2026-03-16T17:28:37.067473101Z","score":0.30312325891223935,"is_anomaly":false,"confidence":0.359570113920085,"method":"SEAD","details":"MAD!:w=0.31,s=0.27 RRCF-fast:w=0.17,s=0.42 RRCF-mid:w=0.18,s=0.40 RRCF-slow:w=0.16,s=0.30 COPOD!:w=0.19,s=0.16"} +{"timestamp":"2026-03-16T17:29:07.104701616Z","score":0.8935558911242254,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=0.86 RRCF-fast:w=0.17,s=0.89 RRCF-mid!:w=0.18,s=0.97 RRCF-slow:w=0.16,s=0.89 COPOD!:w=0.19,s=0.88"} +{"timestamp":"2026-03-16T17:29:37.064181391Z","score":0.8967719693921066,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=0.92 RRCF-fast:w=0.17,s=0.85 RRCF-mid!:w=0.18,s=0.97 RRCF-slow:w=0.16,s=0.87 COPOD!:w=0.19,s=0.85"} +{"timestamp":"2026-03-16T17:30:07.115808137Z","score":0.7924853160236707,"is_anomaly":false,"confidence":0.9161978136797523,"method":"SEAD","details":"MAD!:w=0.31,s=0.81 RRCF-fast:w=0.17,s=0.76 RRCF-mid:w=0.18,s=0.73 RRCF-slow:w=0.16,s=0.77 COPOD!:w=0.19,s=0.87"} +{"timestamp":"2026-03-16T17:30:37.068298242Z","score":0.7080963661105222,"is_anomaly":false,"confidence":0.8186351587688727,"method":"SEAD","details":"MAD!:w=0.31,s=0.78 RRCF-fast:w=0.17,s=0.57 RRCF-mid:w=0.18,s=0.69 RRCF-slow:w=0.16,s=0.64 COPOD!:w=0.19,s=0.79"} +{"timestamp":"2026-03-16T17:31:07.069023246Z","score":0.708750297076589,"is_anomaly":false,"confidence":0.8267594618811525,"method":"SEAD","details":"MAD!:w=0.30,s=0.78 RRCF-fast:w=0.18,s=0.50 RRCF-mid:w=0.18,s=0.70 RRCF-slow:w=0.16,s=0.68 COPOD!:w=0.19,s=0.83"} +{"timestamp":"2026-03-16T17:31:37.107671868Z","score":0.8690776398931739,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=0.98 RRCF-fast:w=0.18,s=0.70 RRCF-mid:w=0.18,s=0.87 RRCF-slow:w=0.16,s=0.86 COPOD!:w=0.19,s=0.85"} +{"timestamp":"2026-03-16T17:32:07.107428297Z","score":0.8568989003184073,"is_anomaly":false,"confidence":0.990666808762497,"method":"SEAD","details":"MAD!:w=0.30,s=0.94 RRCF-fast:w=0.18,s=0.67 RRCF-mid:w=0.18,s=0.85 RRCF-slow:w=0.16,s=0.86 COPOD!:w=0.19,s=0.90"} +{"timestamp":"2026-03-16T17:32:37.107386644Z","score":0.6819549568168122,"is_anomaly":false,"confidence":0.7884128927443381,"method":"SEAD","details":"MAD!:w=0.30,s=0.80 RRCF-fast:w=0.18,s=0.47 RRCF-mid:w=0.18,s=0.63 RRCF-slow:w=0.16,s=0.62 COPOD!:w=0.19,s=0.79"} +{"timestamp":"2026-03-16T17:33:07.120270375Z","score":0.49635971549253666,"is_anomaly":false,"confidence":0.57384493685607,"method":"SEAD","details":"MAD!:w=0.30,s=0.77 RRCF-fast:w=0.18,s=0.34 RRCF-mid:w=0.18,s=0.56 RRCF-slow:w=0.16,s=0.57 COPOD!:w=0.19,s=0.08"} +{"timestamp":"2026-03-16T17:33:37.108463972Z","score":0.7904403394804237,"is_anomaly":false,"confidence":0.913833602002809,"method":"SEAD","details":"MAD!:w=0.30,s=0.97 RRCF-fast:w=0.18,s=0.47 RRCF-mid:w=0.18,s=0.73 RRCF-slow:w=0.16,s=0.87 COPOD!:w=0.19,s=0.80"} +{"timestamp":"2026-03-16T17:34:07.101971134Z","score":0.563414630595624,"is_anomaly":false,"confidence":0.651367592950426,"method":"SEAD","details":"MAD!:w=0.30,s=0.76 RRCF-fast:w=0.18,s=0.34 RRCF-mid:w=0.18,s=0.56 RRCF-slow:w=0.16,s=0.50 COPOD!:w=0.19,s=0.53"} +{"timestamp":"2026-03-16T17:34:37.111529589Z","score":0.25892971958079986,"is_anomaly":false,"confidence":0.30204233636113265,"method":"SEAD","details":"MAD:w=0.30,s=0.08 RRCF-fast:w=0.18,s=0.03 RRCF-mid:w=0.18,s=0.44 RRCF-slow:w=0.16,s=0.31 COPOD!:w=0.19,s=0.53"} +{"timestamp":"2026-03-16T17:35:07.112507025Z","score":0.8690650691763553,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=0.96 RRCF-fast:w=0.18,s=0.69 RRCF-mid!:w=0.18,s=0.89 RRCF-slow:w=0.16,s=0.74 COPOD!:w=0.19,s=0.99"} +{"timestamp":"2026-03-16T17:35:37.065832411Z","score":0.7328742357025605,"is_anomaly":false,"confidence":0.8472810270125556,"method":"SEAD","details":"MAD!:w=0.30,s=0.72 RRCF-fast:w=0.18,s=0.71 RRCF-mid:w=0.18,s=0.82 RRCF-slow:w=0.16,s=0.66 COPOD!:w=0.19,s=0.75"} +{"timestamp":"2026-03-16T17:36:07.064104339Z","score":0.35237342911248754,"is_anomaly":false,"confidence":0.407381384643921,"method":"SEAD","details":"MAD!:w=0.30,s=0.25 RRCF-fast:w=0.18,s=0.26 RRCF-mid:w=0.18,s=0.47 RRCF-slow:w=0.16,s=0.28 COPOD!:w=0.19,s=0.55"} +{"timestamp":"2026-03-16T17:36:37.151486939Z","score":0.24150997160939094,"is_anomaly":false,"confidence":0.2792113664397208,"method":"SEAD","details":"MAD!:w=0.30,s=0.25 RRCF-fast:w=0.18,s=0.06 RRCF-mid:w=0.18,s=0.42 RRCF-slow:w=0.16,s=0.18 COPOD!:w=0.19,s=0.29"} +{"timestamp":"2026-03-16T17:37:07.06527275Z","score":0.24173902808826853,"is_anomaly":false,"confidence":0.2794761802361578,"method":"SEAD","details":"MAD!:w=0.30,s=0.25 RRCF-fast:w=0.18,s=0.04 RRCF-mid:w=0.17,s=0.24 RRCF-slow:w=0.16,s=0.27 COPOD!:w=0.19,s=0.41"} +{"timestamp":"2026-03-16T17:37:37.396559661Z","score":0.27715821553744446,"is_anomaly":false,"confidence":0.3233059345143617,"method":"SEAD","details":"MAD!:w=0.30,s=0.22 RRCF-fast:w=0.18,s=0.03 RRCF-mid:w=0.17,s=0.43 RRCF-slow:w=0.16,s=0.32 COPOD!:w=0.19,s=0.43"} +{"timestamp":"2026-03-16T17:38:07.067442696Z","score":0.14811482656637795,"is_anomaly":false,"confidence":0.17277641337680608,"method":"SEAD","details":"MAD!:w=0.30,s=0.12 RRCF-fast:w=0.18,s=0.02 RRCF-mid:w=0.17,s=0.22 RRCF-slow:w=0.16,s=0.22 COPOD!:w=0.19,s=0.18"} +{"timestamp":"2026-03-16T17:38:37.108778611Z","score":0.19506294354897852,"is_anomaly":false,"confidence":0.22754154023879009,"method":"SEAD","details":"MAD!:w=0.30,s=0.16 RRCF-fast:w=0.18,s=0.07 RRCF-mid:w=0.17,s=0.22 RRCF-slow:w=0.16,s=0.21 COPOD!:w=0.19,s=0.34"} +{"timestamp":"2026-03-16T17:39:07.069120894Z","score":0.1435651907377479,"is_anomaly":false,"confidence":0.16746924880142824,"method":"SEAD","details":"MAD!:w=0.30,s=0.11 RRCF-fast:w=0.19,s=0.08 RRCF-mid:w=0.17,s=0.21 RRCF-slow:w=0.16,s=0.20 COPOD!:w=0.19,s=0.15"} +{"timestamp":"2026-03-16T17:39:37.107877157Z","score":0.15742616994819864,"is_anomaly":false,"confidence":0.1836381248646149,"method":"SEAD","details":"MAD:w=0.30,s=0.02 RRCF-fast:w=0.19,s=0.08 RRCF-mid:w=0.17,s=0.30 RRCF-slow:w=0.16,s=0.18 COPOD!:w=0.19,s=0.29"} +{"timestamp":"2026-03-16T17:40:07.06869303Z","score":0.49248207436609903,"is_anomaly":false,"confidence":0.5744818964711217,"method":"SEAD","details":"MAD!:w=0.30,s=0.69 RRCF-fast:w=0.19,s=0.20 RRCF-mid:w=0.17,s=0.42 RRCF-slow:w=0.16,s=0.30 COPOD!:w=0.19,s=0.70"} +{"timestamp":"2026-03-16T17:40:37.10886338Z","score":0.8944098356610908,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=0.87 RRCF-fast:w=0.19,s=0.84 RRCF-mid!:w=0.17,s=0.94 RRCF-slow!:w=0.16,s=0.91 COPOD!:w=0.18,s=0.94"} +{"timestamp":"2026-03-16T17:41:07.115687648Z","score":0.7393060881350544,"is_anomaly":false,"confidence":0.8624028887369155,"method":"SEAD","details":"MAD!:w=0.30,s=0.70 RRCF-fast:w=0.19,s=0.71 RRCF-mid!:w=0.17,s=0.89 RRCF-slow:w=0.16,s=0.75 COPOD!:w=0.18,s=0.69"} +{"timestamp":"2026-03-16T17:41:37.138108662Z","score":0.9575190745025624,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=1.00 RRCF-fast!:w=0.19,s=0.91 RRCF-mid!:w=0.17,s=0.93 RRCF-slow!:w=0.16,s=0.98 COPOD!:w=0.18,s=0.95"} +{"timestamp":"2026-03-16T17:42:07.157499036Z","score":0.6850498161489716,"is_anomaly":false,"confidence":0.7919908812526908,"method":"SEAD","details":"MAD!:w=0.30,s=0.73 RRCF-fast:w=0.19,s=0.72 RRCF-mid:w=0.17,s=0.78 RRCF-slow:w=0.16,s=0.75 COPOD!:w=0.18,s=0.43"} +{"timestamp":"2026-03-16T17:42:37.065665052Z","score":0.2974546575193545,"is_anomaly":false,"confidence":0.3438894088984634,"method":"SEAD","details":"MAD!:w=0.30,s=0.22 RRCF-fast:w=0.19,s=0.32 RRCF-mid:w=0.17,s=0.20 RRCF-slow:w=0.16,s=0.33 COPOD!:w=0.19,s=0.47"} +{"timestamp":"2026-03-16T17:43:07.153013512Z","score":0.23225641414440493,"is_anomaly":false,"confidence":0.2685132639679686,"method":"SEAD","details":"MAD:w=0.30,s=0.09 RRCF-fast:w=0.19,s=0.08 RRCF-mid:w=0.17,s=0.32 RRCF-slow:w=0.16,s=0.26 COPOD!:w=0.19,s=0.52"} +{"timestamp":"2026-03-16T17:43:37.068826749Z","score":0.21425373908500417,"is_anomaly":false,"confidence":0.2477002454850907,"method":"SEAD","details":"MAD:w=0.30,s=0.09 RRCF-fast:w=0.19,s=0.07 RRCF-mid:w=0.17,s=0.14 RRCF-slow:w=0.16,s=0.22 COPOD!:w=0.18,s=0.63"} +{"timestamp":"2026-03-16T17:44:07.160202063Z","score":0.30839520745315163,"is_anomaly":false,"confidence":0.3565378551562357,"method":"SEAD","details":"MAD!:w=0.30,s=0.25 RRCF-fast:w=0.19,s=0.28 RRCF-mid:w=0.17,s=0.28 RRCF-slow:w=0.16,s=0.28 COPOD!:w=0.18,s=0.50"} +{"timestamp":"2026-03-16T17:44:37.065915569Z","score":0.7479211727105668,"is_anomaly":false,"confidence":0.8724524121263098,"method":"SEAD","details":"MAD!:w=0.30,s=0.94 RRCF-fast:w=0.19,s=0.61 RRCF-mid:w=0.17,s=0.68 RRCF-slow:w=0.16,s=0.72 COPOD!:w=0.18,s=0.66"} +{"timestamp":"2026-03-16T17:45:07.111364817Z","score":0.834271129932271,"is_anomaly":false,"confidence":0.9731799101754035,"method":"SEAD","details":"MAD!:w=0.30,s=0.74 RRCF-fast!:w=0.19,s=0.91 RRCF-mid:w=0.17,s=0.85 RRCF-slow:w=0.16,s=0.82 COPOD!:w=0.18,s=0.91"} +{"timestamp":"2026-03-16T17:45:37.058282443Z","score":0.957075712856321,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=0.98 RRCF-fast!:w=0.19,s=0.97 RRCF-mid!:w=0.17,s=0.99 RRCF-slow!:w=0.16,s=1.00 COPOD!:w=0.18,s=0.84"} +{"timestamp":"2026-03-16T17:46:07.10873301Z","score":0.8877203465132796,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=0.98 RRCF-fast:w=0.19,s=0.76 RRCF-mid:w=0.17,s=0.88 RRCF-slow!:w=0.16,s=0.98 COPOD!:w=0.18,s=0.80"} +{"timestamp":"2026-03-16T17:46:37.119363228Z","score":0.7612952067188291,"is_anomaly":false,"confidence":0.8759933332038491,"method":"SEAD","details":"MAD!:w=0.30,s=0.92 RRCF-fast:w=0.19,s=0.68 RRCF-mid:w=0.17,s=0.78 RRCF-slow:w=0.16,s=0.85 COPOD!:w=0.18,s=0.49"} +{"timestamp":"2026-03-16T17:47:07.071981132Z","score":0.7922642617322194,"is_anomaly":false,"confidence":0.9116282426160301,"method":"SEAD","details":"MAD!:w=0.30,s=0.92 RRCF-fast:w=0.19,s=0.64 RRCF-mid:w=0.17,s=0.74 RRCF-slow:w=0.16,s=0.81 COPOD!:w=0.18,s=0.78"} +{"timestamp":"2026-03-16T17:47:37.107598611Z","score":0.8690731644019561,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=0.93 RRCF-fast:w=0.19,s=0.71 RRCF-mid:w=0.17,s=0.87 RRCF-slow!:w=0.16,s=0.97 COPOD!:w=0.18,s=0.84"} +{"timestamp":"2026-03-16T17:48:07.10963696Z","score":0.7552751200734065,"is_anomaly":false,"confidence":0.8690662493076707,"method":"SEAD","details":"MAD!:w=0.30,s=0.93 RRCF-fast:w=0.19,s=0.70 RRCF-mid:w=0.17,s=0.71 RRCF-slow:w=0.16,s=0.89 COPOD!:w=0.18,s=0.46"} +{"timestamp":"2026-03-16T17:48:37.11014722Z","score":0.6326542050474817,"is_anomaly":false,"confidence":0.7279710432350839,"method":"SEAD","details":"MAD!:w=0.29,s=0.83 RRCF-fast:w=0.19,s=0.51 RRCF-mid:w=0.17,s=0.55 RRCF-slow:w=0.16,s=0.70 COPOD!:w=0.19,s=0.46"} +{"timestamp":"2026-03-16T17:49:07.064888809Z","score":0.6275277966509546,"is_anomaly":false,"confidence":0.7220722807852415,"method":"SEAD","details":"MAD!:w=0.29,s=0.83 RRCF-fast:w=0.19,s=0.42 RRCF-mid:w=0.17,s=0.58 RRCF-slow:w=0.16,s=0.67 COPOD!:w=0.19,s=0.53"} +{"timestamp":"2026-03-16T17:49:37.1063937Z","score":0.8942650380929666,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=0.97 RRCF-fast:w=0.19,s=0.76 RRCF-mid!:w=0.17,s=0.91 RRCF-slow!:w=0.16,s=0.97 COPOD!:w=0.19,s=0.84"} +{"timestamp":"2026-03-16T17:50:07.067687013Z","score":0.8958421467435839,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=0.99 RRCF-fast:w=0.19,s=0.69 RRCF-mid!:w=0.17,s=0.91 RRCF-slow!:w=0.16,s=0.99 COPOD!:w=0.19,s=0.86"} +{"timestamp":"2026-03-16T17:50:37.155310715Z","score":0.8356575208783176,"is_anomaly":false,"confidence":0.9615453010401185,"method":"SEAD","details":"MAD!:w=0.29,s=0.99 RRCF-fast:w=0.19,s=0.69 RRCF-mid:w=0.17,s=0.77 RRCF-slow!:w=0.16,s=0.94 COPOD!:w=0.19,s=0.73"} +{"timestamp":"2026-03-16T17:51:07.06669106Z","score":0.6527129936521997,"is_anomaly":false,"confidence":0.7510449296882358,"method":"SEAD","details":"MAD!:w=0.29,s=0.93 RRCF-fast:w=0.19,s=0.37 RRCF-mid:w=0.17,s=0.60 RRCF-slow:w=0.16,s=0.75 COPOD!:w=0.19,s=0.49"} +{"timestamp":"2026-03-16T17:51:37.120749209Z","score":0.7874770773662731,"is_anomaly":false,"confidence":0.9061113720018814,"method":"SEAD","details":"MAD!:w=0.29,s=0.92 RRCF-fast:w=0.20,s=0.59 RRCF-mid:w=0.17,s=0.66 RRCF-slow:w=0.16,s=0.78 COPOD!:w=0.19,s=0.90"} +{"timestamp":"2026-03-16T17:52:07.104913935Z","score":0.8922179392546943,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=0.97 RRCF-fast:w=0.20,s=0.82 RRCF-mid:w=0.18,s=0.84 RRCF-slow!:w=0.16,s=0.95 COPOD!:w=0.19,s=0.84"} +{"timestamp":"2026-03-16T17:52:37.107547024Z","score":0.7610697777856953,"is_anomaly":false,"confidence":0.8757212737394156,"method":"SEAD","details":"MAD!:w=0.29,s=0.97 RRCF-fast:w=0.20,s=0.49 RRCF-mid:w=0.18,s=0.70 RRCF-slow:w=0.16,s=0.81 COPOD!:w=0.19,s=0.74"} +{"timestamp":"2026-03-16T17:53:07.200990792Z","score":0.6029909017008456,"is_anomaly":false,"confidence":0.6938285764376179,"method":"SEAD","details":"MAD!:w=0.28,s=0.89 RRCF-fast:w=0.20,s=0.13 RRCF-mid:w=0.18,s=0.58 RRCF-slow:w=0.16,s=0.70 COPOD!:w=0.19,s=0.61"} +{"timestamp":"2026-03-16T17:53:37.067686793Z","score":0.6180240628277279,"is_anomaly":false,"confidence":0.7111264108735956,"method":"SEAD","details":"MAD!:w=0.28,s=0.89 RRCF-fast:w=0.20,s=0.27 RRCF-mid:w=0.18,s=0.49 RRCF-slow:w=0.16,s=0.63 COPOD!:w=0.19,s=0.70"} +{"timestamp":"2026-03-16T17:54:07.159400063Z","score":0.6351371403690582,"is_anomaly":false,"confidence":0.7308174911129098,"method":"SEAD","details":"MAD!:w=0.28,s=0.88 RRCF-fast:w=0.20,s=0.31 RRCF-mid:w=0.18,s=0.45 RRCF-slow:w=0.16,s=0.64 COPOD!:w=0.19,s=0.79"} +{"timestamp":"2026-03-16T17:54:37.116310407Z","score":0.32133659563296924,"is_anomaly":false,"confidence":0.3697463099716049,"method":"SEAD","details":"MAD!:w=0.28,s=0.12 RRCF-fast:w=0.20,s=0.30 RRCF-mid:w=0.18,s=0.22 RRCF-slow:w=0.16,s=0.54 COPOD!:w=0.19,s=0.56"} +{"timestamp":"2026-03-16T17:55:07.10494279Z","score":0.9274049057829368,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=0.95 RRCF-fast!:w=0.20,s=0.91 RRCF-mid!:w=0.18,s=0.93 RRCF-slow:w=0.15,s=0.92 COPOD!:w=0.19,s=0.93"} +{"timestamp":"2026-03-16T17:55:37.111155685Z","score":0.6519356565923695,"is_anomaly":false,"confidence":0.7501466228868858,"method":"SEAD","details":"MAD!:w=0.28,s=0.63 RRCF-fast:w=0.20,s=0.59 RRCF-mid:w=0.18,s=0.64 RRCF-slow:w=0.15,s=0.72 COPOD!:w=0.19,s=0.70"} +{"timestamp":"2026-03-16T17:56:07.067886131Z","score":0.22119011759451956,"is_anomaly":false,"confidence":0.25451134333833286,"method":"SEAD","details":"MAD!:w=0.28,s=0.22 RRCF-fast:w=0.20,s=0.02 RRCF-mid:w=0.18,s=0.28 RRCF-slow:w=0.15,s=0.61 COPOD!:w=0.19,s=0.06"} +{"timestamp":"2026-03-16T17:56:37.156175371Z","score":0.24551476723305202,"is_anomaly":false,"confidence":0.28250038427318236,"method":"SEAD","details":"MAD!:w=0.28,s=0.24 RRCF-fast:w=0.20,s=0.05 RRCF-mid:w=0.18,s=0.23 RRCF-slow:w=0.15,s=0.57 COPOD!:w=0.19,s=0.21"} +{"timestamp":"2026-03-16T17:57:07.069494669Z","score":0.29673709665111325,"is_anomaly":false,"confidence":0.34143911088034423,"method":"SEAD","details":"MAD!:w=0.28,s=0.24 RRCF-fast:w=0.20,s=0.07 RRCF-mid:w=0.18,s=0.16 RRCF-slow:w=0.15,s=0.57 COPOD!:w=0.19,s=0.54"} +{"timestamp":"2026-03-16T17:57:37.111578328Z","score":0.2108170676943694,"is_anomaly":false,"confidence":0.24257689263646867,"method":"SEAD","details":"MAD:w=0.28,s=0.06 RRCF-fast:w=0.20,s=0.02 RRCF-mid:w=0.18,s=0.15 RRCF-slow:w=0.15,s=0.46 COPOD!:w=0.19,s=0.50"} +{"timestamp":"2026-03-16T17:58:07.069487891Z","score":0.17211460040807755,"is_anomaly":false,"confidence":0.19804385575122027,"method":"SEAD","details":"MAD!:w=0.28,s=0.16 RRCF-fast:w=0.21,s=0.02 RRCF-mid:w=0.18,s=0.06 RRCF-slow:w=0.15,s=0.46 COPOD!:w=0.18,s=0.24"} +{"timestamp":"2026-03-16T17:58:37.109764979Z","score":0.5870323256194279,"is_anomaly":false,"confidence":0.6754693962083022,"method":"SEAD","details":"MAD!:w=0.28,s=0.65 RRCF-fast:w=0.21,s=0.41 RRCF-mid:w=0.18,s=0.45 RRCF-slow:w=0.15,s=0.69 COPOD!:w=0.18,s=0.73"} +{"timestamp":"2026-03-16T17:59:07.068339274Z","score":0.14519918302382978,"is_anomaly":false,"confidence":0.16707360090188392,"method":"SEAD","details":"MAD:w=0.28,s=0.07 RRCF-fast:w=0.21,s=0.10 RRCF-mid:w=0.18,s=0.05 RRCF-slow:w=0.15,s=0.37 COPOD!:w=0.18,s=0.21"} +{"timestamp":"2026-03-16T17:59:37.161619335Z","score":0.2515052517344808,"is_anomaly":false,"confidence":0.2893947967056969,"method":"SEAD","details":"MAD!:w=0.28,s=0.29 RRCF-fast:w=0.21,s=0.04 RRCF-mid:w=0.18,s=0.20 RRCF-slow:w=0.15,s=0.55 COPOD!:w=0.18,s=0.24"} +{"timestamp":"2026-03-16T18:00:07.068569429Z","score":0.36677338926760145,"is_anomaly":false,"confidence":0.42202820693467485,"method":"SEAD","details":"MAD!:w=0.28,s=0.31 RRCF-fast:w=0.21,s=0.17 RRCF-mid:w=0.18,s=0.45 RRCF-slow:w=0.15,s=0.53 COPOD!:w=0.18,s=0.47"} +{"timestamp":"2026-03-16T18:00:37.108055205Z","score":0.8842553077275295,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=0.89 RRCF-fast!:w=0.21,s=0.86 RRCF-mid:w=0.18,s=0.80 RRCF-slow:w=0.15,s=0.89 COPOD!:w=0.18,s=0.97"} +{"timestamp":"2026-03-16T18:01:07.070920175Z","score":0.6545534954360954,"is_anomaly":false,"confidence":0.7531627051060997,"method":"SEAD","details":"MAD!:w=0.28,s=0.67 RRCF-fast:w=0.21,s=0.65 RRCF-mid:w=0.18,s=0.61 RRCF-slow:w=0.15,s=0.69 COPOD!:w=0.18,s=0.65"} +{"timestamp":"2026-03-16T18:01:37.120855365Z","score":0.6844087268958834,"is_anomaly":false,"confidence":0.7875156602802853,"method":"SEAD","details":"MAD!:w=0.28,s=0.75 RRCF-fast:w=0.21,s=0.62 RRCF-mid:w=0.18,s=0.48 RRCF-slow:w=0.15,s=0.64 COPOD!:w=0.18,s=0.89"} +{"timestamp":"2026-03-16T18:02:07.10981144Z","score":0.28814982710685433,"is_anomaly":false,"confidence":0.33155991797899054,"method":"SEAD","details":"MAD!:w=0.28,s=0.28 RRCF-fast:w=0.21,s=0.23 RRCF-mid:w=0.18,s=0.11 RRCF-slow:w=0.15,s=0.39 COPOD!:w=0.18,s=0.45"} +{"timestamp":"2026-03-16T18:02:37.068631879Z","score":0.19894765345123627,"is_anomaly":false,"confidence":0.22891933798018038,"method":"SEAD","details":"MAD!:w=0.28,s=0.28 RRCF-fast:w=0.21,s=0.14 RRCF-mid:w=0.18,s=0.09 RRCF-slow:w=0.15,s=0.47 COPOD!:w=0.18,s=0.03"} +{"timestamp":"2026-03-16T18:03:07.1094065Z","score":0.13556594588210918,"is_anomaly":false,"confidence":0.1559891059061725,"method":"SEAD","details":"MAD!:w=0.28,s=0.10 RRCF-fast:w=0.21,s=0.02 RRCF-mid:w=0.18,s=0.06 RRCF-slow:w=0.15,s=0.28 COPOD!:w=0.18,s=0.28"} +{"timestamp":"2026-03-16T18:03:37.070648358Z","score":0.15791587886254155,"is_anomaly":false,"confidence":0.18170608106534938,"method":"SEAD","details":"MAD:w=0.28,s=0.06 RRCF-fast:w=0.21,s=0.04 RRCF-mid:w=0.18,s=0.03 RRCF-slow:w=0.15,s=0.38 COPOD!:w=0.18,s=0.39"} +{"timestamp":"2026-03-16T18:04:07.110998832Z","score":0.17658588685820675,"is_anomaly":false,"confidence":0.20318874646155083,"method":"SEAD","details":"MAD:w=0.28,s=0.07 RRCF-fast:w=0.21,s=0.02 RRCF-mid:w=0.18,s=0.02 RRCF-slow:w=0.15,s=0.27 COPOD!:w=0.18,s=0.60"} +{"timestamp":"2026-03-16T18:04:37.064451309Z","score":0.18302024391876603,"is_anomaly":false,"confidence":0.2105944081865136,"method":"SEAD","details":"MAD!:w=0.28,s=0.16 RRCF-fast:w=0.21,s=0.18 RRCF-mid:w=0.18,s=0.03 RRCF-slow:w=0.15,s=0.18 COPOD!:w=0.18,s=0.37"} +{"timestamp":"2026-03-16T18:05:07.171493418Z","score":0.20750000294342194,"is_anomaly":false,"confidence":0.23876233242244713,"method":"SEAD","details":"MAD!:w=0.28,s=0.31 RRCF-fast:w=0.21,s=0.04 RRCF-mid:w=0.18,s=0.04 RRCF-slow:w=0.15,s=0.23 COPOD!:w=0.18,s=0.39"} +{"timestamp":"2026-03-16T18:05:37.10331394Z","score":0.17415178228343503,"is_anomaly":false,"confidence":0.20038980792138503,"method":"SEAD","details":"MAD:w=0.28,s=0.02 RRCF-fast:w=0.21,s=0.06 RRCF-mid:w=0.18,s=0.05 RRCF-slow:w=0.15,s=0.28 COPOD!:w=0.18,s=0.59"} +{"timestamp":"2026-03-16T18:06:07.156584999Z","score":0.7190769904893932,"is_anomaly":false,"confidence":0.8274144433982242,"method":"SEAD","details":"MAD!:w=0.28,s=0.76 RRCF-fast:w=0.21,s=0.77 RRCF-mid:w=0.18,s=0.54 RRCF-slow:w=0.15,s=0.58 COPOD!:w=0.18,s=0.90"} +{"timestamp":"2026-03-16T18:06:37.114674863Z","score":0.4671140889995095,"is_anomaly":false,"confidence":0.5374903509149328,"method":"SEAD","details":"MAD!:w=0.28,s=0.71 RRCF-fast:w=0.21,s=0.45 RRCF-mid:w=0.18,s=0.25 RRCF-slow:w=0.15,s=0.44 COPOD!:w=0.18,s=0.34"} +{"timestamp":"2026-03-16T18:07:07.107662064Z","score":0.9000561990091276,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=1.00 RRCF-fast!:w=0.21,s=0.88 RRCF-mid:w=0.18,s=0.76 RRCF-slow:w=0.15,s=0.85 COPOD!:w=0.18,s=0.95"} +{"timestamp":"2026-03-16T18:07:37.066765819Z","score":0.6598600694693473,"is_anomaly":false,"confidence":0.7592757928870858,"method":"SEAD","details":"MAD!:w=0.28,s=0.69 RRCF-fast:w=0.21,s=0.56 RRCF-mid:w=0.18,s=0.67 RRCF-slow:w=0.15,s=0.66 COPOD!:w=0.18,s=0.73"} +{"timestamp":"2026-03-16T18:08:07.435189882Z","score":0.26170479109412226,"is_anomaly":false,"confidence":0.3011337129705943,"method":"SEAD","details":"MAD!:w=0.28,s=0.62 RRCF-fast:w=0.21,s=0.13 RRCF-mid:w=0.18,s=0.10 RRCF-slow:w=0.15,s=0.27 COPOD!:w=0.18,s=0.03"} +{"timestamp":"2026-03-16T18:08:37.113377569Z","score":0.214853000771622,"is_anomaly":false,"confidence":0.24722314633499887,"method":"SEAD","details":"MAD!:w=0.28,s=0.20 RRCF-fast:w=0.21,s=0.14 RRCF-mid:w=0.19,s=0.14 RRCF-slow:w=0.15,s=0.23 COPOD!:w=0.18,s=0.39"} +{"timestamp":"2026-03-16T18:09:07.06840307Z","score":0.1306202390180409,"is_anomaly":false,"confidence":0.15029972282953966,"method":"SEAD","details":"MAD!:w=0.28,s=0.24 RRCF-fast:w=0.21,s=0.05 RRCF-mid:w=0.19,s=0.04 RRCF-slow:w=0.15,s=0.13 COPOD!:w=0.18,s=0.14"} +{"timestamp":"2026-03-16T18:09:37.113275507Z","score":0.14797232582837938,"is_anomaly":false,"confidence":0.17026610673538883,"method":"SEAD","details":"MAD:w=0.27,s=0.04 RRCF-fast:w=0.21,s=0.02 RRCF-mid:w=0.19,s=0.06 RRCF-slow:w=0.15,s=0.14 COPOD!:w=0.18,s=0.58"} +{"timestamp":"2026-03-16T18:10:07.067594918Z","score":0.1939753706845488,"is_anomaly":false,"confidence":0.22320005436231183,"method":"SEAD","details":"MAD!:w=0.28,s=0.33 RRCF-fast:w=0.22,s=0.12 RRCF-mid:w=0.19,s=0.04 RRCF-slow:w=0.15,s=0.22 COPOD!:w=0.18,s=0.21"} +{"timestamp":"2026-03-16T18:10:37.212211937Z","score":0.18056105294297722,"is_anomaly":false,"confidence":0.2077647110061638,"method":"SEAD","details":"MAD:w=0.27,s=0.06 RRCF-fast:w=0.22,s=0.08 RRCF-mid:w=0.19,s=0.03 RRCF-slow:w=0.15,s=0.11 COPOD!:w=0.18,s=0.71"} +{"timestamp":"2026-03-16T18:11:07.067348065Z","score":0.19259726251507506,"is_anomaly":false,"confidence":0.22266304153419356,"method":"SEAD","details":"MAD:w=0.28,s=0.08 RRCF-fast:w=0.22,s=0.08 RRCF-mid:w=0.19,s=0.07 RRCF-slow:w=0.15,s=0.13 COPOD!:w=0.17,s=0.70"} +{"timestamp":"2026-03-16T18:11:38.158461238Z","score":0.18107553527188536,"is_anomaly":false,"confidence":0.20934269212634465,"method":"SEAD","details":"MAD!:w=0.28,s=0.31 RRCF-fast:w=0.22,s=0.18 RRCF-mid:w=0.19,s=0.04 RRCF-slow:w=0.15,s=0.11 COPOD!:w=0.17,s=0.18"} +{"timestamp":"2026-03-16T18:12:07.115414007Z","score":0.14219245700404215,"is_anomaly":false,"confidence":0.16438969353088226,"method":"SEAD","details":"MAD:w=0.27,s=0.09 RRCF-fast:w=0.22,s=0.06 RRCF-mid:w=0.19,s=0.02 RRCF-slow:w=0.15,s=0.16 COPOD!:w=0.17,s=0.45"} +{"timestamp":"2026-03-16T18:12:37.108655345Z","score":0.8892381027615003,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=0.90 RRCF-fast!:w=0.22,s=0.97 RRCF-mid:w=0.19,s=0.70 RRCF-slow:w=0.15,s=0.90 COPOD!:w=0.17,s=0.97"} +{"timestamp":"2026-03-16T18:13:07.066660057Z","score":0.7339997102479844,"is_anomaly":false,"confidence":0.8445854473746399,"method":"SEAD","details":"MAD!:w=0.28,s=0.66 RRCF-fast!:w=0.22,s=0.98 RRCF-mid:w=0.19,s=0.65 RRCF-slow:w=0.15,s=0.77 COPOD!:w=0.17,s=0.60"} +{"timestamp":"2026-03-16T18:13:37.120429916Z","score":0.9060482356613249,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=0.94 RRCF-fast!:w=0.22,s=0.96 RRCF-mid!:w=0.19,s=0.84 RRCF-slow:w=0.15,s=0.84 COPOD!:w=0.17,s=0.92"} +{"timestamp":"2026-03-16T18:14:07.109581679Z","score":0.5926237470223509,"is_anomaly":false,"confidence":0.6819031714437517,"method":"SEAD","details":"MAD!:w=0.28,s=0.30 RRCF-fast!:w=0.21,s=0.88 RRCF-mid:w=0.19,s=0.61 RRCF-slow:w=0.15,s=0.67 COPOD!:w=0.17,s=0.62"} +{"timestamp":"2026-03-16T18:14:37.111668402Z","score":0.25020498835249133,"is_anomaly":false,"confidence":0.2879013289414793,"method":"SEAD","details":"MAD!:w=0.28,s=0.27 RRCF-fast:w=0.21,s=0.56 RRCF-mid:w=0.19,s=0.10 RRCF-slow:w=0.15,s=0.13 COPOD!:w=0.17,s=0.11"} +{"timestamp":"2026-03-16T18:15:07.164765401Z","score":0.5405185579110838,"is_anomaly":false,"confidence":0.6219540711990105,"method":"SEAD","details":"MAD!:w=0.28,s=0.36 RRCF-fast:w=0.21,s=0.75 RRCF-mid:w=0.19,s=0.45 RRCF-slow:w=0.15,s=0.52 COPOD!:w=0.17,s=0.68"} +{"timestamp":"2026-03-16T18:15:37.118945609Z","score":0.3557422437734951,"is_anomaly":false,"confidence":0.40933902004673256,"method":"SEAD","details":"MAD!:w=0.28,s=0.22 RRCF-fast:w=0.21,s=0.55 RRCF-mid:w=0.19,s=0.21 RRCF-slow:w=0.15,s=0.29 COPOD!:w=0.17,s=0.55"} +{"timestamp":"2026-03-16T18:16:07.161110858Z","score":0.22141594255868094,"is_anomaly":false,"confidence":0.25477487292007367,"method":"SEAD","details":"MAD:w=0.28,s=0.01 RRCF-fast:w=0.21,s=0.49 RRCF-mid:w=0.19,s=0.03 RRCF-slow:w=0.15,s=0.15 COPOD!:w=0.17,s=0.51"} +{"timestamp":"2026-03-16T18:16:37.072251425Z","score":0.24895787957135165,"is_anomaly":false,"confidence":0.28646632847330766,"method":"SEAD","details":"MAD!:w=0.28,s=0.19 RRCF-fast:w=0.21,s=0.50 RRCF-mid:w=0.19,s=0.15 RRCF-slow:w=0.15,s=0.16 COPOD!:w=0.17,s=0.21"} +{"timestamp":"2026-03-16T18:17:09.076574805Z","score":0.2858751045368992,"is_anomaly":false,"confidence":0.3289455699880257,"method":"SEAD","details":"MAD!:w=0.28,s=0.34 RRCF-fast:w=0.21,s=0.48 RRCF-mid:w=0.19,s=0.12 RRCF-slow:w=0.15,s=0.06 COPOD!:w=0.17,s=0.36"} +{"timestamp":"2026-03-16T18:17:37.070800572Z","score":0.196088810125603,"is_anomaly":false,"confidence":0.22669964413419544,"method":"SEAD","details":"MAD:w=0.28,s=0.05 RRCF-fast:w=0.21,s=0.46 RRCF-mid:w=0.19,s=0.04 RRCF-slow:w=0.15,s=0.05 COPOD!:w=0.17,s=0.42"} +{"timestamp":"2026-03-16T18:18:07.156773006Z","score":0.7876750581132863,"is_anomaly":false,"confidence":0.910636640883715,"method":"SEAD","details":"MAD!:w=0.28,s=0.78 RRCF-fast!:w=0.21,s=0.88 RRCF-mid:w=0.19,s=0.70 RRCF-slow:w=0.15,s=0.62 COPOD!:w=0.17,s=0.93"} +{"timestamp":"2026-03-16T18:18:37.0752597Z","score":0.4882972814932084,"is_anomaly":false,"confidence":0.5645239005494475,"method":"SEAD","details":"MAD!:w=0.28,s=0.58 RRCF-fast:w=0.21,s=0.58 RRCF-mid:w=0.19,s=0.27 RRCF-slow:w=0.15,s=0.16 COPOD!:w=0.17,s=0.76"} +{"timestamp":"2026-03-16T18:19:07.10415753Z","score":0.9729436283866794,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=0.99 RRCF-fast!:w=0.21,s=0.98 RRCF-mid!:w=0.19,s=1.00 RRCF-slow!:w=0.15,s=0.89 COPOD!:w=0.17,s=0.98"} +{"timestamp":"2026-03-16T18:19:37.160974467Z","score":0.8381549583362821,"is_anomaly":false,"confidence":0.96443291539796,"method":"SEAD","details":"MAD!:w=0.28,s=0.68 RRCF-fast!:w=0.21,s=0.98 RRCF-mid!:w=0.19,s=1.00 RRCF-slow:w=0.15,s=0.83 COPOD!:w=0.17,s=0.75"} +{"timestamp":"2026-03-16T18:20:07.066960044Z","score":0.6098017872243128,"is_anomaly":false,"confidence":0.7016756383986807,"method":"SEAD","details":"MAD!:w=0.28,s=0.37 RRCF-fast:w=0.20,s=0.85 RRCF-mid!:w=0.19,s=0.92 RRCF-slow:w=0.15,s=0.27 COPOD!:w=0.17,s=0.66"} +{"timestamp":"2026-03-16T18:20:37.155350998Z","score":0.5086393184388375,"is_anomaly":false,"confidence":0.5852718472747886,"method":"SEAD","details":"MAD!:w=0.28,s=0.32 RRCF-fast:w=0.20,s=0.81 RRCF-mid!:w=0.19,s=0.88 RRCF-slow:w=0.15,s=0.21 COPOD!:w=0.17,s=0.31"} +{"timestamp":"2026-03-16T18:21:07.069711758Z","score":0.4131813768629233,"is_anomaly":false,"confidence":0.47768187811279655,"method":"SEAD","details":"MAD!:w=0.29,s=0.32 RRCF-fast:w=0.20,s=0.65 RRCF-mid:w=0.19,s=0.75 RRCF-slow:w=0.15,s=0.29 COPOD!:w=0.17,s=0.03"} +{"timestamp":"2026-03-16T18:21:37.117912622Z","score":0.37434673057670464,"is_anomaly":false,"confidence":0.4327848720698514,"method":"SEAD","details":"MAD!:w=0.29,s=0.18 RRCF-fast:w=0.20,s=0.68 RRCF-mid!:w=0.19,s=0.79 RRCF-slow:w=0.15,s=0.19 COPOD!:w=0.17,s=0.04"} +{"timestamp":"2026-03-16T18:22:07.06621873Z","score":0.3814302862410014,"is_anomaly":false,"confidence":0.4409742202905491,"method":"SEAD","details":"MAD!:w=0.29,s=0.17 RRCF-fast:w=0.20,s=0.62 RRCF-mid!:w=0.19,s=0.78 RRCF-slow:w=0.15,s=0.04 COPOD!:w=0.17,s=0.31"} +{"timestamp":"2026-03-16T18:22:37.108032645Z","score":0.36002860094973926,"is_anomaly":false,"confidence":0.4162315823180232,"method":"SEAD","details":"MAD:w=0.29,s=0.01 RRCF-fast:w=0.20,s=0.64 RRCF-mid:w=0.19,s=0.72 RRCF-slow:w=0.15,s=0.28 COPOD!:w=0.17,s=0.32"} +{"timestamp":"2026-03-16T18:23:07.067545965Z","score":0.27072687775743354,"is_anomaly":false,"confidence":0.3129892358766399,"method":"SEAD","details":"MAD!:w=0.29,s=0.14 RRCF-fast:w=0.20,s=0.42 RRCF-mid:w=0.19,s=0.66 RRCF-slow:w=0.15,s=0.07 COPOD!:w=0.17,s=0.06"} +{"timestamp":"2026-03-16T18:23:37.159899768Z","score":0.2897991185903185,"is_anomaly":false,"confidence":0.33503878682698324,"method":"SEAD","details":"MAD:w=0.29,s=0.02 RRCF-fast:w=0.20,s=0.44 RRCF-mid:w=0.18,s=0.70 RRCF-slow:w=0.15,s=0.10 COPOD!:w=0.17,s=0.30"} +{"timestamp":"2026-03-16T18:24:07.11320255Z","score":0.3475808628357855,"is_anomaly":false,"confidence":0.40184066526925616,"method":"SEAD","details":"MAD!:w=0.30,s=0.14 RRCF-fast:w=0.20,s=0.52 RRCF-mid:w=0.18,s=0.64 RRCF-slow:w=0.15,s=0.08 COPOD!:w=0.17,s=0.44"} +{"timestamp":"2026-03-16T18:24:37.110152294Z","score":0.9260368347394605,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=0.97 RRCF-fast!:w=0.20,s=0.94 RRCF-mid!:w=0.18,s=0.97 RRCF-slow!:w=0.15,s=0.75 COPOD!:w=0.17,s=0.95"} +{"timestamp":"2026-03-16T18:25:07.067443401Z","score":0.7119237373653325,"is_anomaly":false,"confidence":0.8230600094315861,"method":"SEAD","details":"MAD!:w=0.30,s=0.70 RRCF-fast:w=0.20,s=0.80 RRCF-mid!:w=0.18,s=0.84 RRCF-slow:w=0.16,s=0.69 COPOD!:w=0.17,s=0.52"} +{"timestamp":"2026-03-16T18:25:37.112807825Z","score":0.3585512067072463,"is_anomaly":false,"confidence":0.4145235565066343,"method":"SEAD","details":"MAD!:w=0.30,s=0.21 RRCF-fast:w=0.19,s=0.25 RRCF-mid:w=0.18,s=0.58 RRCF-slow:w=0.16,s=0.41 COPOD!:w=0.17,s=0.46"} +{"timestamp":"2026-03-16T18:26:07.109132939Z","score":0.2729362711749008,"is_anomaly":false,"confidence":0.31554353105121635,"method":"SEAD","details":"MAD:w=0.30,s=0.11 RRCF-fast:w=0.20,s=0.48 RRCF-mid:w=0.18,s=0.53 RRCF-slow:w=0.16,s=0.27 COPOD!:w=0.17,s=0.07"} +{"timestamp":"2026-03-16T18:26:37.116656191Z","score":0.33250566554471406,"is_anomaly":false,"confidence":0.3844121242987153,"method":"SEAD","details":"MAD!:w=0.30,s=0.29 RRCF-fast:w=0.19,s=0.41 RRCF-mid:w=0.18,s=0.55 RRCF-slow:w=0.16,s=0.17 COPOD!:w=0.17,s=0.22"} +{"timestamp":"2026-03-16T18:27:07.111129002Z","score":0.1712539451099636,"is_anomaly":false,"confidence":0.1979878830828639,"method":"SEAD","details":"MAD:w=0.30,s=0.08 RRCF-fast:w=0.19,s=0.06 RRCF-mid:w=0.18,s=0.54 RRCF-slow:w=0.16,s=0.03 COPOD!:w=0.17,s=0.21"} +{"timestamp":"2026-03-16T18:27:37.118267741Z","score":0.2941684620622984,"is_anomaly":false,"confidence":0.343148440854552,"method":"SEAD","details":"MAD!:w=0.30,s=0.28 RRCF-fast:w=0.19,s=0.40 RRCF-mid:w=0.18,s=0.51 RRCF-slow:w=0.16,s=0.13 COPOD!:w=0.17,s=0.12"} +{"timestamp":"2026-03-16T18:28:07.107481574Z","score":0.702226515250057,"is_anomaly":false,"confidence":0.8191494497589976,"method":"SEAD","details":"MAD!:w=0.30,s=0.77 RRCF-fast:w=0.19,s=0.65 RRCF-mid:w=0.18,s=0.79 RRCF-slow:w=0.16,s=0.40 COPOD!:w=0.17,s=0.84"} +{"timestamp":"2026-03-16T18:28:37.068237262Z","score":0.3391189693302025,"is_anomaly":false,"confidence":0.39558334966995007,"method":"SEAD","details":"MAD!:w=0.30,s=0.14 RRCF-fast:w=0.19,s=0.51 RRCF-mid:w=0.18,s=0.40 RRCF-slow:w=0.16,s=0.17 COPOD!:w=0.17,s=0.58"} +{"timestamp":"2026-03-16T18:29:07.110863135Z","score":0.9919415009410867,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=0.99 RRCF-fast!:w=0.19,s=0.99 RRCF-mid!:w=0.18,s=1.00 RRCF-slow!:w=0.16,s=1.00 COPOD!:w=0.17,s=0.98"} +{"timestamp":"2026-03-16T18:29:37.112211617Z","score":0.8680852330883216,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=0.71 RRCF-fast!:w=0.19,s=0.99 RRCF-mid!:w=0.18,s=1.00 RRCF-slow!:w=0.16,s=1.00 COPOD!:w=0.17,s=0.77"} +{"timestamp":"2026-03-16T18:30:07.066125281Z","score":0.6927024895999185,"is_anomaly":false,"confidence":0.7979659867448072,"method":"SEAD","details":"MAD!:w=0.30,s=0.38 RRCF-fast:w=0.19,s=0.83 RRCF-mid!:w=0.18,s=0.97 RRCF-slow!:w=0.16,s=0.99 COPOD!:w=0.17,s=0.55"} +{"timestamp":"2026-03-16T18:30:37.112240076Z","score":0.5853754325971705,"is_anomaly":false,"confidence":0.6743294440277763,"method":"SEAD","details":"MAD!:w=0.31,s=0.14 RRCF-fast:w=0.19,s=0.63 RRCF-mid!:w=0.17,s=0.93 RRCF-slow!:w=0.16,s=0.98 COPOD!:w=0.17,s=0.61"} +{"timestamp":"2026-03-16T18:31:07.116348235Z","score":0.5059716685901526,"is_anomaly":false,"confidence":0.5849573830240505,"method":"SEAD","details":"MAD:w=0.31,s=0.13 RRCF-fast:w=0.19,s=0.52 RRCF-mid!:w=0.17,s=0.91 RRCF-slow!:w=0.15,s=0.98 COPOD!:w=0.17,s=0.35"} +{"timestamp":"2026-03-16T18:31:37.160000008Z","score":0.5283474129472756,"is_anomaly":false,"confidence":0.6108261374917242,"method":"SEAD","details":"MAD!:w=0.31,s=0.21 RRCF-fast:w=0.19,s=0.66 RRCF-mid:w=0.17,s=0.87 RRCF-slow!:w=0.15,s=0.98 COPOD!:w=0.17,s=0.21"} +{"timestamp":"2026-03-16T18:32:07.068846498Z","score":0.49323051829771286,"is_anomaly":false,"confidence":0.5702272501046542,"method":"SEAD","details":"MAD!:w=0.31,s=0.14 RRCF-fast:w=0.19,s=0.64 RRCF-mid:w=0.17,s=0.78 RRCF-slow!:w=0.15,s=0.97 COPOD!:w=0.17,s=0.26"} +{"timestamp":"2026-03-16T18:32:37.111300204Z","score":0.47998132850570396,"is_anomaly":false,"confidence":0.554909769168384,"method":"SEAD","details":"MAD!:w=0.32,s=0.36 RRCF-fast:w=0.19,s=0.37 RRCF-mid:w=0.17,s=0.71 RRCF-slow!:w=0.15,s=0.96 COPOD!:w=0.17,s=0.16"} +{"timestamp":"2026-03-16T18:33:08.30147842Z","score":0.5089600194058279,"is_anomaly":false,"confidence":0.5884122362919538,"method":"SEAD","details":"MAD!:w=0.32,s=0.31 RRCF-fast:w=0.19,s=0.64 RRCF-mid:w=0.17,s=0.72 RRCF-slow!:w=0.15,s=0.93 COPOD!:w=0.17,s=0.17"} +{"timestamp":"2026-03-16T18:33:37.110032715Z","score":0.9198647889565191,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.32,s=0.86 RRCF-fast!:w=0.19,s=0.96 RRCF-mid!:w=0.17,s=0.96 RRCF-slow!:w=0.15,s=0.97 COPOD!:w=0.17,s=0.90"} +{"timestamp":"2026-03-16T18:34:07.069264026Z","score":0.7681280232904176,"is_anomaly":false,"confidence":0.8848532310101697,"method":"SEAD","details":"MAD!:w=0.32,s=0.71 RRCF-fast:w=0.19,s=0.88 RRCF-mid!:w=0.17,s=0.93 RRCF-slow!:w=0.15,s=0.97 COPOD!:w=0.17,s=0.42"} +{"timestamp":"2026-03-16T18:34:37.120356267Z","score":0.3937109128909082,"is_anomaly":false,"confidence":0.455171938607548,"method":"SEAD","details":"MAD:w=0.32,s=0.13 RRCF-fast:w=0.19,s=0.58 RRCF-mid:w=0.17,s=0.68 RRCF-slow:w=0.15,s=0.88 COPOD!:w=0.18,s=0.00"} +{"timestamp":"2026-03-16T18:35:07.112135369Z","score":0.5095061890348588,"is_anomaly":false,"confidence":0.5890436668180451,"method":"SEAD","details":"MAD!:w=0.32,s=0.41 RRCF-fast:w=0.19,s=0.43 RRCF-mid:w=0.17,s=0.62 RRCF-slow:w=0.15,s=0.84 COPOD!:w=0.18,s=0.38"} +{"timestamp":"2026-03-16T18:35:37.118780189Z","score":0.7565271840582054,"is_anomaly":false,"confidence":0.8746263659511444,"method":"SEAD","details":"MAD!:w=0.32,s=0.77 RRCF-fast:w=0.19,s=0.79 RRCF-mid:w=0.17,s=0.72 RRCF-slow:w=0.15,s=0.86 COPOD!:w=0.18,s=0.64"} +{"timestamp":"2026-03-16T18:36:07.111677137Z","score":0.4293029482897832,"is_anomaly":false,"confidence":0.496320139536343,"method":"SEAD","details":"MAD:w=0.32,s=0.08 RRCF-fast:w=0.19,s=0.54 RRCF-mid:w=0.17,s=0.53 RRCF-slow:w=0.15,s=0.83 COPOD!:w=0.18,s=0.53"} +{"timestamp":"2026-03-16T18:36:37.112405798Z","score":0.449932932793997,"is_anomaly":false,"confidence":0.5201706088344307,"method":"SEAD","details":"MAD!:w=0.33,s=0.24 RRCF-fast:w=0.19,s=0.57 RRCF-mid:w=0.17,s=0.58 RRCF-slow:w=0.14,s=0.80 COPOD!:w=0.18,s=0.30"} +{"timestamp":"2026-03-16T18:37:07.161086189Z","score":0.33280127925920067,"is_anomaly":false,"confidence":0.3847538853805046,"method":"SEAD","details":"MAD!:w=0.33,s=0.16 RRCF-fast:w=0.19,s=0.20 RRCF-mid:w=0.16,s=0.55 RRCF-slow:w=0.14,s=0.75 COPOD!:w=0.18,s=0.26"} +{"timestamp":"2026-03-16T18:37:38.350782143Z","score":0.2882168149669931,"is_anomaly":false,"confidence":0.33620582570487617,"method":"SEAD","details":"MAD:w=0.33,s=0.08 RRCF-fast:w=0.19,s=0.21 RRCF-mid:w=0.16,s=0.56 RRCF-slow:w=0.14,s=0.83 COPOD!:w=0.18,s=0.07"} +{"timestamp":"2026-03-16T18:38:07.111692824Z","score":0.488568588732667,"is_anomaly":false,"confidence":0.5699168031092966,"method":"SEAD","details":"MAD!:w=0.33,s=0.24 RRCF-fast:w=0.19,s=0.61 RRCF-mid:w=0.16,s=0.59 RRCF-slow:w=0.14,s=0.72 COPOD!:w=0.18,s=0.55"} +{"timestamp":"2026-03-16T18:38:37.070404678Z","score":0.3306701393031071,"is_anomaly":false,"confidence":0.38572776273681064,"method":"SEAD","details":"MAD:w=0.33,s=0.08 RRCF-fast:w=0.19,s=0.29 RRCF-mid:w=0.16,s=0.56 RRCF-slow:w=0.14,s=0.73 COPOD!:w=0.18,s=0.32"} +{"timestamp":"2026-03-16T18:39:07.109951837Z","score":0.92884952366259,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.34,s=0.90 RRCF-fast:w=0.19,s=0.89 RRCF-mid!:w=0.16,s=0.93 RRCF-slow:w=0.14,s=0.96 COPOD!:w=0.18,s=1.00"} +{"timestamp":"2026-03-16T18:39:38.497822575Z","score":0.7673098141644676,"is_anomaly":false,"confidence":0.8870922399923739,"method":"SEAD","details":"MAD!:w=0.34,s=0.70 RRCF-fast:w=0.19,s=0.78 RRCF-mid:w=0.16,s=0.90 RRCF-slow:w=0.14,s=0.94 COPOD!:w=0.18,s=0.63"} +{"timestamp":"2026-03-16T18:40:07.102254053Z","score":0.9033592008034861,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.34,s=0.94 RRCF-fast:w=0.19,s=0.89 RRCF-mid:w=0.16,s=0.90 RRCF-slow:w=0.14,s=0.88 COPOD!:w=0.18,s=0.88"} +{"timestamp":"2026-03-16T18:40:37.113849973Z","score":0.6712166736841438,"is_anomaly":false,"confidence":0.7732151730034695,"method":"SEAD","details":"MAD!:w=0.34,s=0.46 RRCF-fast:w=0.19,s=0.81 RRCF-mid:w=0.16,s=0.82 RRCF-slow:w=0.14,s=0.82 COPOD!:w=0.18,s=0.68"} +{"timestamp":"2026-03-16T18:41:07.071972936Z","score":0.3872225576136419,"is_anomaly":false,"confidence":0.44767070571501155,"method":"SEAD","details":"MAD!:w=0.34,s=0.31 RRCF-fast:w=0.19,s=0.50 RRCF-mid:w=0.16,s=0.52 RRCF-slow:w=0.14,s=0.60 COPOD!:w=0.18,s=0.13"} +{"timestamp":"2026-03-16T18:41:37.110035265Z","score":0.35325697663290534,"is_anomaly":false,"confidence":0.4084028601086661,"method":"SEAD","details":"MAD!:w=0.34,s=0.24 RRCF-fast:w=0.18,s=0.40 RRCF-mid:w=0.16,s=0.49 RRCF-slow:w=0.14,s=0.57 COPOD!:w=0.18,s=0.24"} +{"timestamp":"2026-03-16T18:42:07.113548591Z","score":0.2572558225657745,"is_anomaly":false,"confidence":0.29741525480089637,"method":"SEAD","details":"MAD:w=0.34,s=0.12 RRCF-fast:w=0.18,s=0.21 RRCF-mid:w=0.16,s=0.45 RRCF-slow:w=0.14,s=0.63 COPOD!:w=0.18,s=0.11"} +{"timestamp":"2026-03-16T18:42:37.157302013Z","score":0.3688253410793132,"is_anomaly":false,"confidence":0.42640155507494915,"method":"SEAD","details":"MAD:w=0.34,s=0.06 RRCF-fast:w=0.18,s=0.30 RRCF-mid:w=0.16,s=0.41 RRCF-slow:w=0.14,s=0.62 COPOD!:w=0.18,s=0.79"} +{"timestamp":"2026-03-16T18:43:07.116183377Z","score":0.28588449292681667,"is_anomaly":false,"confidence":0.3305130607324345,"method":"SEAD","details":"MAD!:w=0.34,s=0.23 RRCF-fast:w=0.18,s=0.28 RRCF-mid:w=0.16,s=0.46 RRCF-slow:w=0.14,s=0.55 COPOD!:w=0.18,s=0.03"} +{"timestamp":"2026-03-16T18:43:37.113948928Z","score":0.24511484476340994,"is_anomaly":false,"confidence":0.2833789854927486,"method":"SEAD","details":"MAD:w=0.34,s=0.05 RRCF-fast:w=0.18,s=0.12 RRCF-mid:w=0.16,s=0.25 RRCF-slow:w=0.14,s=0.61 COPOD!:w=0.18,s=0.46"} +{"timestamp":"2026-03-16T18:44:07.647985848Z","score":0.15569353860843035,"is_anomaly":false,"confidence":0.17999838835227996,"method":"SEAD","details":"MAD:w=0.35,s=0.04 RRCF-fast:w=0.18,s=0.08 RRCF-mid:w=0.16,s=0.29 RRCF-slow:w=0.14,s=0.58 COPOD!:w=0.18,s=0.01"} +{"timestamp":"2026-03-16T18:44:37.114985594Z","score":0.48471069764803665,"is_anomaly":false,"confidence":0.5654165609643816,"method":"SEAD","details":"MAD!:w=0.35,s=0.41 RRCF-fast:w=0.18,s=0.57 RRCF-mid:w=0.16,s=0.52 RRCF-slow:w=0.13,s=0.53 COPOD!:w=0.18,s=0.47"} +{"timestamp":"2026-03-16T18:45:07.918347135Z","score":0.4366367488736357,"is_anomaly":false,"confidence":0.5093381477585374,"method":"SEAD","details":"MAD!:w=0.35,s=0.34 RRCF-fast:w=0.18,s=0.34 RRCF-mid:w=0.16,s=0.43 RRCF-slow:w=0.13,s=0.57 COPOD!:w=0.18,s=0.65"} +{"timestamp":"2026-03-16T18:45:37.118901331Z","score":0.8827870717137367,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.35,s=0.83 RRCF-fast!:w=0.18,s=0.89 RRCF-mid:w=0.16,s=0.79 RRCF-slow:w=0.13,s=0.96 COPOD!:w=0.18,s=1.00"} +{"timestamp":"2026-03-16T18:46:07.122922167Z","score":0.7718858534179872,"is_anomaly":false,"confidence":0.8923826309619172,"method":"SEAD","details":"MAD!:w=0.35,s=0.70 RRCF-fast!:w=0.18,s=0.95 RRCF-mid:w=0.16,s=0.82 RRCF-slow:w=0.13,s=0.88 COPOD!:w=0.17,s=0.60"} +{"timestamp":"2026-03-16T18:46:37.109451857Z","score":0.7564942493714313,"is_anomaly":false,"confidence":0.8745882899295367,"method":"SEAD","details":"MAD!:w=0.35,s=0.77 RRCF-fast:w=0.18,s=0.85 RRCF-mid:w=0.16,s=0.65 RRCF-slow:w=0.13,s=0.58 COPOD!:w=0.18,s=0.87"} +{"timestamp":"2026-03-16T18:47:07.15816587Z","score":0.7524591768187866,"is_anomaly":false,"confidence":0.8699233143444727,"method":"SEAD","details":"MAD!:w=0.35,s=0.85 RRCF-fast:w=0.18,s=0.78 RRCF-mid:w=0.16,s=0.79 RRCF-slow:w=0.13,s=0.72 COPOD!:w=0.17,s=0.53"} +{"timestamp":"2026-03-16T18:47:37.069153931Z","score":0.429082223790627,"is_anomaly":false,"confidence":0.5005257703695498,"method":"SEAD","details":"MAD!:w=0.35,s=0.40 RRCF-fast:w=0.18,s=0.53 RRCF-mid:w=0.16,s=0.33 RRCF-slow:w=0.13,s=0.55 COPOD!:w=0.18,s=0.38"} +{"timestamp":"2026-03-16T18:48:07.113203406Z","score":0.23367473184109255,"is_anomaly":false,"confidence":0.2725823133324027,"method":"SEAD","details":"MAD!:w=0.35,s=0.16 RRCF-fast:w=0.18,s=0.28 RRCF-mid:w=0.16,s=0.38 RRCF-slow:w=0.13,s=0.48 COPOD!:w=0.18,s=0.00"} +{"timestamp":"2026-03-16T18:48:37.116496793Z","score":0.2773468109315205,"is_anomaly":false,"confidence":0.32352593163769655,"method":"SEAD","details":"MAD!:w=0.35,s=0.18 RRCF-fast:w=0.18,s=0.27 RRCF-mid:w=0.16,s=0.22 RRCF-slow:w=0.13,s=0.45 COPOD!:w=0.18,s=0.40"} +{"timestamp":"2026-03-16T18:49:07.682376185Z","score":0.25020775290149,"is_anomaly":false,"confidence":0.2918681346598072,"method":"SEAD","details":"MAD:w=0.35,s=0.05 RRCF-fast:w=0.18,s=0.23 RRCF-mid:w=0.16,s=0.25 RRCF-slow:w=0.13,s=0.50 COPOD!:w=0.18,s=0.48"} +{"timestamp":"2026-03-16T18:49:37.115294776Z","score":0.25955710367040624,"is_anomaly":false,"confidence":0.3027741818848034,"method":"SEAD","details":"MAD!:w=0.35,s=0.24 RRCF-fast:w=0.18,s=0.21 RRCF-mid:w=0.16,s=0.18 RRCF-slow:w=0.13,s=0.42 COPOD!:w=0.18,s=0.30"} +{"timestamp":"2026-03-16T18:50:07.111075227Z","score":0.3555093641225532,"is_anomaly":false,"confidence":0.41470279700484003,"method":"SEAD","details":"MAD!:w=0.35,s=0.48 RRCF-fast:w=0.18,s=0.22 RRCF-mid:w=0.16,s=0.15 RRCF-slow:w=0.13,s=0.43 COPOD!:w=0.17,s=0.37"} +{"timestamp":"2026-03-16T18:50:37.073084681Z","score":0.1858571985542153,"is_anomaly":false,"confidence":0.21680300960327759,"method":"SEAD","details":"MAD:w=0.35,s=0.07 RRCF-fast:w=0.18,s=0.21 RRCF-mid:w=0.16,s=0.09 RRCF-slow:w=0.13,s=0.34 COPOD!:w=0.17,s=0.37"} +{"timestamp":"2026-03-16T18:51:07.112231378Z","score":0.613304328263272,"is_anomaly":false,"confidence":0.7157254234255404,"method":"SEAD","details":"MAD!:w=0.35,s=0.52 RRCF-fast:w=0.18,s=0.64 RRCF-mid:w=0.16,s=0.61 RRCF-slow:w=0.13,s=0.57 COPOD!:w=0.17,s=0.82"} +{"timestamp":"2026-03-16T18:51:37.069972891Z","score":0.4171876686914414,"is_anomaly":false,"confidence":0.4868575143887131,"method":"SEAD","details":"MAD!:w=0.35,s=0.39 RRCF-fast:w=0.18,s=0.31 RRCF-mid:w=0.16,s=0.47 RRCF-slow:w=0.13,s=0.56 COPOD!:w=0.17,s=0.43"} +{"timestamp":"2026-03-16T18:52:07.110082862Z","score":0.9662842298296672,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.35,s=0.99 RRCF-fast!:w=0.18,s=0.97 RRCF-mid!:w=0.16,s=0.93 RRCF-slow!:w=0.13,s=0.98 COPOD!:w=0.17,s=0.93"} +{"timestamp":"2026-03-16T18:52:37.070006776Z","score":0.7426986544295884,"is_anomaly":false,"confidence":0.8663603280433035,"method":"SEAD","details":"MAD!:w=0.35,s=0.69 RRCF-fast!:w=0.18,s=0.97 RRCF-mid:w=0.16,s=0.84 RRCF-slow:w=0.13,s=0.94 COPOD!:w=0.17,s=0.38"} +{"timestamp":"2026-03-16T18:53:07.0719401Z","score":0.5821941127059274,"is_anomaly":false,"confidence":0.6791312727719584,"method":"SEAD","details":"MAD!:w=0.35,s=0.52 RRCF-fast:w=0.18,s=0.77 RRCF-mid:w=0.16,s=0.43 RRCF-slow:w=0.13,s=0.47 COPOD!:w=0.17,s=0.73"} +{"timestamp":"2026-03-16T18:53:37.11383044Z","score":0.3608784710474166,"is_anomaly":false,"confidence":0.420965877204301,"method":"SEAD","details":"MAD:w=0.35,s=0.14 RRCF-fast:w=0.18,s=0.70 RRCF-mid:w=0.16,s=0.29 RRCF-slow:w=0.13,s=0.52 COPOD!:w=0.17,s=0.40"} +{"timestamp":"2026-03-16T18:54:07.116238051Z","score":0.35153406809681015,"is_anomaly":false,"confidence":0.4100656016250031,"method":"SEAD","details":"MAD:w=0.36,s=0.14 RRCF-fast:w=0.18,s=0.55 RRCF-mid:w=0.16,s=0.15 RRCF-slow:w=0.13,s=0.45 COPOD!:w=0.17,s=0.68"} +{"timestamp":"2026-03-16T18:54:37.534659029Z","score":0.19632311107782285,"is_anomaly":false,"confidence":0.22910883769937496,"method":"SEAD","details":"MAD:w=0.36,s=0.01 RRCF-fast:w=0.18,s=0.33 RRCF-mid:w=0.16,s=0.16 RRCF-slow:w=0.13,s=0.40 COPOD!:w=0.17,s=0.32"} +{"timestamp":"2026-03-16T18:55:07.111498246Z","score":0.3877048469385055,"is_anomaly":false,"confidence":0.45245109638306424,"method":"SEAD","details":"MAD!:w=0.36,s=0.48 RRCF-fast:w=0.18,s=0.45 RRCF-mid:w=0.16,s=0.14 RRCF-slow:w=0.13,s=0.45 COPOD!:w=0.17,s=0.31"} +{"timestamp":"2026-03-16T18:55:37.157662966Z","score":0.31202344846438956,"is_anomaly":false,"confidence":0.36413099415630895,"method":"SEAD","details":"MAD:w=0.36,s=0.11 RRCF-fast:w=0.18,s=0.52 RRCF-mid:w=0.16,s=0.11 RRCF-slow:w=0.13,s=0.31 COPOD!:w=0.17,s=0.70"} +{"timestamp":"2026-03-16T18:56:07.06626886Z","score":0.23862204676514484,"is_anomaly":false,"confidence":0.2784716454607159,"method":"SEAD","details":"MAD!:w=0.36,s=0.24 RRCF-fast:w=0.18,s=0.44 RRCF-mid:w=0.16,s=0.12 RRCF-slow:w=0.13,s=0.31 COPOD!:w=0.17,s=0.07"} +{"timestamp":"2026-03-16T18:56:37.15771649Z","score":0.26978569627383864,"is_anomaly":false,"confidence":0.3148395874631084,"method":"SEAD","details":"MAD!:w=0.36,s=0.29 RRCF-fast:w=0.18,s=0.44 RRCF-mid:w=0.16,s=0.21 RRCF-slow:w=0.13,s=0.39 COPOD!:w=0.17,s=0.02"} +{"timestamp":"2026-03-16T18:57:07.119287061Z","score":0.36150256854529883,"is_anomaly":false,"confidence":0.421873068586004,"method":"SEAD","details":"MAD!:w=0.36,s=0.39 RRCF-fast:w=0.18,s=0.55 RRCF-mid:w=0.16,s=0.31 RRCF-slow:w=0.13,s=0.27 COPOD!:w=0.17,s=0.22"} +{"timestamp":"2026-03-16T18:57:37.112932071Z","score":0.8198713861273467,"is_anomaly":false,"confidence":0.9725457847329996,"method":"SEAD","details":"MAD!:w=0.36,s=0.77 RRCF-fast!:w=0.18,s=0.88 RRCF-mid:w=0.16,s=0.85 RRCF-slow:w=0.13,s=0.72 COPOD!:w=0.17,s=0.92"} +{"timestamp":"2026-03-16T18:58:07.068187813Z","score":0.513081458132005,"is_anomaly":false,"confidence":0.6086262037853776,"method":"SEAD","details":"MAD!:w=0.36,s=0.55 RRCF-fast:w=0.18,s=0.49 RRCF-mid:w=0.16,s=0.40 RRCF-slow:w=0.13,s=0.44 COPOD!:w=0.17,s=0.62"} +{"timestamp":"2026-03-16T18:58:37.104827396Z","score":0.9681441257401805,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.36,s=1.00 RRCF-fast!:w=0.18,s=0.97 RRCF-mid!:w=0.16,s=0.95 RRCF-slow:w=0.13,s=0.93 COPOD!:w=0.17,s=0.94"} +{"timestamp":"2026-03-16T18:59:07.113966237Z","score":0.7718207536197881,"is_anomaly":false,"confidence":0.9007139037440638,"method":"SEAD","details":"MAD!:w=0.36,s=0.71 RRCF-fast!:w=0.18,s=0.89 RRCF-mid:w=0.16,s=0.90 RRCF-slow:w=0.13,s=0.77 COPOD!:w=0.17,s=0.67"} +{"timestamp":"2026-03-16T18:59:37.117487306Z","score":0.3408417408487901,"is_anomaly":false,"confidence":0.39776190717731086,"method":"SEAD","details":"MAD!:w=0.36,s=0.40 RRCF-fast:w=0.18,s=0.42 RRCF-mid:w=0.16,s=0.22 RRCF-slow:w=0.13,s=0.33 COPOD!:w=0.17,s=0.24"} +{"timestamp":"2026-03-16T19:00:07.11404613Z","score":0.6205652687410163,"is_anomaly":false,"confidence":0.7241989323482922,"method":"SEAD","details":"MAD!:w=0.36,s=0.52 RRCF-fast:w=0.18,s=0.72 RRCF-mid:w=0.16,s=0.74 RRCF-slow:w=0.13,s=0.61 COPOD!:w=0.17,s=0.64"} +{"timestamp":"2026-03-16T19:00:37.068150692Z","score":0.37241477325053834,"is_anomaly":false,"confidence":0.43460759853018377,"method":"SEAD","details":"MAD!:w=0.36,s=0.35 RRCF-fast:w=0.18,s=0.51 RRCF-mid:w=0.16,s=0.41 RRCF-slow:w=0.13,s=0.40 COPOD!:w=0.17,s=0.22"} +{"timestamp":"2026-03-16T19:01:07.113445628Z","score":0.31243011760571876,"is_anomaly":false,"confidence":0.3706100725582355,"method":"SEAD","details":"MAD!:w=0.36,s=0.30 RRCF-fast:w=0.17,s=0.43 RRCF-mid:w=0.16,s=0.16 RRCF-slow:w=0.13,s=0.38 COPOD!:w=0.17,s=0.30"} +{"timestamp":"2026-03-16T19:01:37.116975949Z","score":0.4125723634118959,"is_anomaly":false,"confidence":0.489400556871303,"method":"SEAD","details":"MAD!:w=0.36,s=0.41 RRCF-fast:w=0.17,s=0.42 RRCF-mid:w=0.16,s=0.44 RRCF-slow:w=0.13,s=0.48 COPOD!:w=0.17,s=0.34"} +{"timestamp":"2026-03-16T19:02:07.164607224Z","score":0.22946099135243422,"is_anomaly":false,"confidence":0.2721906431624174,"method":"SEAD","details":"MAD:w=0.36,s=0.13 RRCF-fast:w=0.17,s=0.44 RRCF-mid:w=0.16,s=0.33 RRCF-slow:w=0.13,s=0.38 COPOD!:w=0.17,s=0.03"} +{"timestamp":"2026-03-16T19:02:37.066341759Z","score":0.31282060423521296,"is_anomaly":false,"confidence":0.37107327463106676,"method":"SEAD","details":"MAD!:w=0.36,s=0.40 RRCF-fast:w=0.17,s=0.32 RRCF-mid:w=0.16,s=0.28 RRCF-slow:w=0.13,s=0.31 COPOD!:w=0.17,s=0.15"} +{"timestamp":"2026-03-16T19:03:07.104825515Z","score":0.32618119151069536,"is_anomaly":false,"confidence":0.38692183704730587,"method":"SEAD","details":"MAD!:w=0.36,s=0.48 RRCF-fast:w=0.17,s=0.19 RRCF-mid:w=0.16,s=0.14 RRCF-slow:w=0.13,s=0.22 COPOD!:w=0.17,s=0.38"} +{"timestamp":"2026-03-16T19:03:37.070275705Z","score":0.23096456150580574,"is_anomaly":false,"confidence":0.2739742043885494,"method":"SEAD","details":"MAD!:w=0.36,s=0.38 RRCF-fast:w=0.17,s=0.12 RRCF-mid:w=0.16,s=0.13 RRCF-slow:w=0.13,s=0.19 COPOD!:w=0.17,s=0.16"} +{"timestamp":"2026-03-16T19:04:07.110014209Z","score":0.9133494252499896,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.36,s=0.90 RRCF-fast!:w=0.17,s=0.93 RRCF-mid!:w=0.16,s=0.95 RRCF-slow:w=0.13,s=0.84 COPOD!:w=0.17,s=0.96"} +{"timestamp":"2026-03-16T19:04:37.065707766Z","score":0.7607068766377179,"is_anomaly":false,"confidence":0.9023638082870054,"method":"SEAD","details":"MAD!:w=0.36,s=0.67 RRCF-fast!:w=0.17,s=0.93 RRCF-mid!:w=0.16,s=0.87 RRCF-slow:w=0.13,s=0.82 COPOD!:w=0.17,s=0.65"} +{"timestamp":"2026-03-16T19:05:07.102334507Z","score":0.9190455948992005,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.36,s=0.94 RRCF-fast!:w=0.17,s=0.94 RRCF-mid:w=0.16,s=0.85 RRCF-slow!:w=0.13,s=0.91 COPOD!:w=0.18,s=0.93"} +{"timestamp":"2026-03-16T19:05:37.110852403Z","score":0.6774320586424876,"is_anomaly":false,"confidence":0.7905624086934488,"method":"SEAD","details":"MAD!:w=0.36,s=0.58 RRCF-fast:w=0.17,s=0.85 RRCF-mid:w=0.16,s=0.83 RRCF-slow:w=0.13,s=0.72 COPOD!:w=0.18,s=0.55"} +{"timestamp":"2026-03-16T19:06:07.068228246Z","score":0.8718969291592328,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.36,s=0.92 RRCF-fast:w=0.17,s=0.82 RRCF-mid!:w=0.16,s=0.91 RRCF-slow!:w=0.13,s=0.90 COPOD!:w=0.18,s=0.78"} +{"timestamp":"2026-03-16T19:06:37.162897726Z","score":0.48644600695437923,"is_anomaly":false,"confidence":0.567440804755498,"method":"SEAD","details":"MAD!:w=0.36,s=0.46 RRCF-fast:w=0.17,s=0.54 RRCF-mid:w=0.16,s=0.38 RRCF-slow:w=0.13,s=0.41 COPOD!:w=0.18,s=0.64"} +{"timestamp":"2026-03-16T19:07:07.068535258Z","score":0.3021863208712707,"is_anomaly":false,"confidence":0.35250129849946193,"method":"SEAD","details":"MAD!:w=0.36,s=0.37 RRCF-fast:w=0.17,s=0.33 RRCF-mid:w=0.16,s=0.29 RRCF-slow:w=0.13,s=0.25 COPOD!:w=0.18,s=0.18"} +{"timestamp":"2026-03-16T19:07:37.107896929Z","score":0.3528412469657429,"is_anomaly":false,"confidence":0.41176531657892645,"method":"SEAD","details":"MAD!:w=0.36,s=0.37 RRCF-fast:w=0.17,s=0.28 RRCF-mid:w=0.16,s=0.37 RRCF-slow:w=0.13,s=0.39 COPOD!:w=0.18,s=0.34"} +{"timestamp":"2026-03-16T19:08:07.068990848Z","score":0.33702254844088825,"is_anomaly":false,"confidence":0.39330491416858754,"method":"SEAD","details":"MAD!:w=0.36,s=0.37 RRCF-fast:w=0.17,s=0.38 RRCF-mid:w=0.16,s=0.35 RRCF-slow:w=0.13,s=0.47 COPOD!:w=0.18,s=0.12"} +{"timestamp":"2026-03-16T19:08:37.112555829Z","score":0.21937409767599103,"is_anomaly":false,"confidence":0.25600931171048974,"method":"SEAD","details":"MAD:w=0.36,s=0.07 RRCF-fast:w=0.17,s=0.41 RRCF-mid:w=0.16,s=0.39 RRCF-slow:w=0.13,s=0.30 COPOD!:w=0.18,s=0.12"} +{"timestamp":"2026-03-16T19:09:07.066146732Z","score":0.2860095961628714,"is_anomaly":false,"confidence":0.3337728593846902,"method":"SEAD","details":"MAD!:w=0.36,s=0.40 RRCF-fast:w=0.17,s=0.20 RRCF-mid:w=0.16,s=0.27 RRCF-slow:w=0.13,s=0.21 COPOD!:w=0.18,s=0.19"} +{"timestamp":"2026-03-16T19:09:37.113638436Z","score":0.957310847296184,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.36,s=1.00 RRCF-fast!:w=0.17,s=0.99 RRCF-mid!:w=0.16,s=0.99 RRCF-slow!:w=0.13,s=0.99 COPOD!:w=0.18,s=0.79"} +{"timestamp":"2026-03-16T19:10:07.070596971Z","score":0.7025846501156695,"is_anomaly":false,"confidence":0.8195672152117897,"method":"SEAD","details":"MAD!:w=0.36,s=0.64 RRCF-fast:w=0.17,s=0.61 RRCF-mid:w=0.16,s=0.76 RRCF-slow:w=0.13,s=0.79 COPOD!:w=0.18,s=0.80"} +{"timestamp":"2026-03-16T19:10:37.111050434Z","score":0.5667131126573647,"is_anomaly":false,"confidence":0.6610726372802703,"method":"SEAD","details":"MAD!:w=0.36,s=0.58 RRCF-fast:w=0.17,s=0.32 RRCF-mid:w=0.16,s=0.69 RRCF-slow:w=0.13,s=0.66 COPOD!:w=0.18,s=0.60"} +{"timestamp":"2026-03-16T19:11:07.072498627Z","score":0.8830310313087897,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.36,s=0.97 RRCF-fast:w=0.17,s=0.82 RRCF-mid!:w=0.16,s=0.94 RRCF-slow!:w=0.13,s=0.90 COPOD!:w=0.18,s=0.70"} +{"timestamp":"2026-03-16T19:11:37.106664877Z","score":0.5409354237641703,"is_anomaly":false,"confidence":0.6310028817037528,"method":"SEAD","details":"MAD!:w=0.36,s=0.58 RRCF-fast:w=0.17,s=0.31 RRCF-mid:w=0.16,s=0.70 RRCF-slow:w=0.13,s=0.52 COPOD!:w=0.18,s=0.56"} +{"timestamp":"2026-03-16T19:12:07.067773439Z","score":0.42313279903074974,"is_anomaly":false,"confidence":0.4935857475811756,"method":"SEAD","details":"MAD!:w=0.36,s=0.46 RRCF-fast:w=0.18,s=0.42 RRCF-mid:w=0.16,s=0.64 RRCF-slow:w=0.13,s=0.50 COPOD!:w=0.18,s=0.10"} +{"timestamp":"2026-03-16T19:12:37.155887846Z","score":0.9473093152133362,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.36,s=1.00 RRCF-fast!:w=0.18,s=0.93 RRCF-mid!:w=0.16,s=0.98 RRCF-slow!:w=0.13,s=0.99 COPOD!:w=0.18,s=0.81"} +{"timestamp":"2026-03-16T19:13:07.071304949Z","score":0.6310760146125822,"is_anomaly":false,"confidence":0.7295913919955954,"method":"SEAD","details":"MAD!:w=0.36,s=0.64 RRCF-fast:w=0.18,s=0.40 RRCF-mid:w=0.16,s=0.59 RRCF-slow:w=0.13,s=0.71 COPOD!:w=0.18,s=0.82"} +{"timestamp":"2026-03-16T19:13:39.064712091Z","score":0.5223136076529484,"is_anomaly":false,"confidence":0.6038504130119703,"method":"SEAD","details":"MAD!:w=0.36,s=0.59 RRCF-fast:w=0.18,s=0.32 RRCF-mid:w=0.16,s=0.65 RRCF-slow:w=0.13,s=0.65 COPOD!:w=0.18,s=0.37"} +{"timestamp":"2026-03-16T19:14:07.068713188Z","score":0.8584757136296496,"is_anomaly":false,"confidence":0.9924897736542505,"method":"SEAD","details":"MAD!:w=0.36,s=0.99 RRCF-fast:w=0.18,s=0.79 RRCF-mid:w=0.16,s=0.85 RRCF-slow!:w=0.13,s=0.89 COPOD!:w=0.18,s=0.65"} +{"timestamp":"2026-03-16T19:14:37.159709186Z","score":0.7698921493253071,"is_anomaly":false,"confidence":0.896812964073486,"method":"SEAD","details":"MAD!:w=0.35,s=0.77 RRCF-fast:w=0.18,s=0.68 RRCF-mid:w=0.16,s=0.75 RRCF-slow:w=0.13,s=0.76 COPOD!:w=0.18,s=0.89"} +{"timestamp":"2026-03-16T19:15:07.068299141Z","score":0.7442842604513613,"is_anomaly":false,"confidence":0.86698347854771,"method":"SEAD","details":"MAD!:w=0.35,s=0.59 RRCF-fast:w=0.18,s=0.83 RRCF-mid:w=0.16,s=0.84 RRCF-slow!:w=0.13,s=0.90 COPOD!:w=0.18,s=0.76"} +{"timestamp":"2026-03-16T19:15:37.108868237Z","score":0.913677556311264,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.36,s=0.89 RRCF-fast:w=0.18,s=0.86 RRCF-mid!:w=0.16,s=0.94 RRCF-slow!:w=0.13,s=0.94 COPOD!:w=0.18,s=0.97"} +{"timestamp":"2026-03-16T19:16:07.06701874Z","score":0.7422454863467077,"is_anomaly":false,"confidence":0.8581151953914637,"method":"SEAD","details":"MAD!:w=0.36,s=0.67 RRCF-fast:w=0.18,s=0.81 RRCF-mid:w=0.16,s=0.83 RRCF-slow:w=0.13,s=0.83 COPOD!:w=0.18,s=0.68"} +{"timestamp":"2026-03-16T19:16:37.066726762Z","score":0.45527920469976346,"is_anomaly":false,"confidence":0.5263514711575055,"method":"SEAD","details":"MAD!:w=0.36,s=0.48 RRCF-fast:w=0.18,s=0.36 RRCF-mid:w=0.16,s=0.58 RRCF-slow:w=0.13,s=0.61 COPOD!:w=0.18,s=0.28"} +{"timestamp":"2026-03-16T19:17:07.1130354Z","score":0.4560902765336354,"is_anomaly":false,"confidence":0.5272891569743976,"method":"SEAD","details":"MAD!:w=0.36,s=0.53 RRCF-fast:w=0.18,s=0.16 RRCF-mid:w=0.16,s=0.54 RRCF-slow:w=0.13,s=0.61 COPOD!:w=0.18,s=0.43"} +{"timestamp":"2026-03-16T19:17:37.067983882Z","score":0.38377177102195625,"is_anomaly":false,"confidence":0.44703858819647074,"method":"SEAD","details":"MAD!:w=0.36,s=0.48 RRCF-fast:w=0.18,s=0.15 RRCF-mid:w=0.16,s=0.50 RRCF-slow:w=0.13,s=0.55 COPOD!:w=0.18,s=0.20"} +{"timestamp":"2026-03-16T19:18:07.110830013Z","score":0.32185298614932706,"is_anomaly":false,"confidence":0.3749121623820053,"method":"SEAD","details":"MAD!:w=0.35,s=0.18 RRCF-fast:w=0.18,s=0.31 RRCF-mid:w=0.16,s=0.40 RRCF-slow:w=0.13,s=0.57 COPOD!:w=0.18,s=0.36"} +{"timestamp":"2026-03-16T19:18:37.069184981Z","score":0.26901166098139295,"is_anomaly":false,"confidence":0.3133596637743043,"method":"SEAD","details":"MAD!:w=0.36,s=0.23 RRCF-fast:w=0.18,s=0.21 RRCF-mid:w=0.16,s=0.38 RRCF-slow:w=0.13,s=0.49 COPOD!:w=0.18,s=0.15"} +{"timestamp":"2026-03-16T19:19:07.110194232Z","score":0.3235776031225292,"is_anomaly":false,"confidence":0.37692109163395865,"method":"SEAD","details":"MAD:w=0.36,s=0.12 RRCF-fast:w=0.18,s=0.21 RRCF-mid:w=0.16,s=0.30 RRCF-slow:w=0.13,s=0.50 COPOD!:w=0.18,s=0.72"} +{"timestamp":"2026-03-16T19:19:37.070121971Z","score":0.25113247303930175,"is_anomaly":false,"confidence":0.2925329966266716,"method":"SEAD","details":"MAD:w=0.36,s=0.13 RRCF-fast:w=0.18,s=0.12 RRCF-mid:w=0.16,s=0.36 RRCF-slow:w=0.13,s=0.41 COPOD!:w=0.18,s=0.40"} +{"timestamp":"2026-03-16T19:20:07.111433912Z","score":0.30025359989639366,"is_anomaly":false,"confidence":0.3497520024496866,"method":"SEAD","details":"MAD:w=0.36,s=0.12 RRCF-fast:w=0.18,s=0.00 RRCF-mid:w=0.16,s=0.46 RRCF-slow:w=0.13,s=0.52 COPOD!:w=0.18,s=0.66"} +{"timestamp":"2026-03-16T19:20:37.067029221Z","score":0.7195205949851828,"is_anomaly":false,"confidence":0.8381373911476631,"method":"SEAD","details":"MAD!:w=0.36,s=0.73 RRCF-fast:w=0.18,s=0.68 RRCF-mid:w=0.16,s=0.70 RRCF-slow:w=0.13,s=0.72 COPOD!:w=0.18,s=0.76"} +{"timestamp":"2026-03-16T19:21:07.176824973Z","score":0.7948777463961569,"is_anomaly":false,"confidence":0.9272274037590625,"method":"SEAD","details":"MAD!:w=0.36,s=0.81 RRCF-fast:w=0.18,s=0.77 RRCF-mid:w=0.16,s=0.71 RRCF-slow:w=0.13,s=0.73 COPOD!:w=0.18,s=0.91"} +{"timestamp":"2026-03-16T19:21:37.130439828Z","score":0.5477125970825049,"is_anomaly":false,"confidence":0.6389084758020592,"method":"SEAD","details":"MAD!:w=0.36,s=0.63 RRCF-fast:w=0.18,s=0.42 RRCF-mid:w=0.16,s=0.38 RRCF-slow:w=0.13,s=0.52 COPOD!:w=0.18,s=0.68"} +{"timestamp":"2026-03-16T19:22:07.104420265Z","score":0.9767911827591592,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.36,s=0.99 RRCF-fast!:w=0.18,s=1.00 RRCF-mid!:w=0.16,s=0.95 RRCF-slow!:w=0.13,s=0.95 COPOD!:w=0.18,s=0.97"} +{"timestamp":"2026-03-16T19:22:37.110276772Z","score":0.7937360321668667,"is_anomaly":false,"confidence":0.924587637792265,"method":"SEAD","details":"MAD!:w=0.36,s=0.71 RRCF-fast!:w=0.18,s=0.99 RRCF-mid:w=0.16,s=0.87 RRCF-slow:w=0.13,s=0.82 COPOD!:w=0.18,s=0.68"} +{"timestamp":"2026-03-16T19:23:07.069434565Z","score":0.5055999166561569,"is_anomaly":false,"confidence":0.588950751464444,"method":"SEAD","details":"MAD!:w=0.36,s=0.43 RRCF-fast!:w=0.18,s=0.90 RRCF-mid:w=0.16,s=0.37 RRCF-slow:w=0.13,s=0.48 COPOD!:w=0.18,s=0.40"} +{"timestamp":"2026-03-16T19:23:37.100471781Z","score":0.5492165589809459,"is_anomaly":false,"confidence":0.6397578292096922,"method":"SEAD","details":"MAD!:w=0.36,s=0.36 RRCF-fast!:w=0.18,s=0.90 RRCF-mid:w=0.16,s=0.57 RRCF-slow:w=0.13,s=0.49 COPOD!:w=0.18,s=0.60"} +{"timestamp":"2026-03-16T19:24:07.068050842Z","score":0.41202240619965036,"is_anomaly":false,"confidence":0.4799464908070757,"method":"SEAD","details":"MAD!:w=0.36,s=0.36 RRCF-fast:w=0.18,s=0.85 RRCF-mid:w=0.16,s=0.41 RRCF-slow:w=0.13,s=0.42 COPOD!:w=0.18,s=0.08"} +{"timestamp":"2026-03-16T19:24:37.111922757Z","score":0.438684203303122,"is_anomaly":false,"confidence":0.5117265098224836,"method":"SEAD","details":"MAD!:w=0.36,s=0.20 RRCF-fast:w=0.18,s=0.81 RRCF-mid:w=0.16,s=0.35 RRCF-slow:w=0.13,s=0.42 COPOD!:w=0.18,s=0.65"} +{"timestamp":"2026-03-16T19:25:07.117331788Z","score":0.533930028042686,"is_anomaly":false,"confidence":0.6228310654507672,"method":"SEAD","details":"MAD!:w=0.37,s=0.56 RRCF-fast:w=0.17,s=0.71 RRCF-mid:w=0.16,s=0.26 RRCF-slow:w=0.13,s=0.40 COPOD!:w=0.18,s=0.64"} +{"timestamp":"2026-03-16T19:25:37.109606598Z","score":0.28049068295594914,"is_anomaly":false,"confidence":0.32719326829189044,"method":"SEAD","details":"MAD:w=0.37,s=0.03 RRCF-fast:w=0.17,s=0.67 RRCF-mid:w=0.16,s=0.23 RRCF-slow:w=0.13,s=0.40 COPOD!:w=0.18,s=0.36"} +{"timestamp":"2026-03-16T19:26:07.067088698Z","score":0.2320118853041093,"is_anomaly":false,"confidence":0.27064259759079695,"method":"SEAD","details":"MAD:w=0.37,s=0.04 RRCF-fast:w=0.17,s=0.70 RRCF-mid:w=0.16,s=0.26 RRCF-slow:w=0.13,s=0.36 COPOD!:w=0.18,s=0.06"} +{"timestamp":"2026-03-16T19:26:37.154885525Z","score":0.4691791898173012,"is_anomaly":false,"confidence":0.5472990079851352,"method":"SEAD","details":"MAD!:w=0.37,s=0.51 RRCF-fast:w=0.17,s=0.68 RRCF-mid:w=0.16,s=0.24 RRCF-slow:w=0.13,s=0.40 COPOD!:w=0.18,s=0.43"} +{"timestamp":"2026-03-16T19:27:07.070476474Z","score":0.20669109365625024,"is_anomaly":false,"confidence":0.2411058140952035,"method":"SEAD","details":"MAD:w=0.37,s=0.14 RRCF-fast:w=0.17,s=0.61 RRCF-mid:w=0.16,s=0.07 RRCF-slow:w=0.13,s=0.28 COPOD!:w=0.18,s=0.03"} +{"timestamp":"2026-03-16T19:27:37.117045688Z","score":0.9167914503112988,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.37,s=0.82 RRCF-fast!:w=0.17,s=0.98 RRCF-mid!:w=0.16,s=0.99 RRCF-slow!:w=0.13,s=0.97 COPOD!:w=0.18,s=0.95"} +{"timestamp":"2026-03-16T19:28:07.062004092Z","score":0.7275685971619659,"is_anomaly":false,"confidence":0.8487110684149032,"method":"SEAD","details":"MAD!:w=0.37,s=0.65 RRCF-fast!:w=0.17,s=0.98 RRCF-mid!:w=0.16,s=0.99 RRCF-slow:w=0.13,s=0.85 COPOD!:w=0.18,s=0.34"} +{"timestamp":"2026-03-16T19:28:37.103649676Z","score":0.9779789543681406,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.37,s=0.98 RRCF-fast!:w=0.17,s=1.00 RRCF-mid!:w=0.16,s=1.00 RRCF-slow!:w=0.12,s=0.99 COPOD!:w=0.18,s=0.93"} +{"timestamp":"2026-03-16T19:29:07.112421309Z","score":0.8029493440400516,"is_anomaly":false,"confidence":0.9353198131198941,"method":"SEAD","details":"MAD!:w=0.37,s=0.62 RRCF-fast!:w=0.17,s=0.99 RRCF-mid!:w=0.16,s=1.00 RRCF-slow!:w=0.12,s=0.99 COPOD!:w=0.18,s=0.72"} +{"timestamp":"2026-03-16T19:29:37.067615168Z","score":0.5961574124681899,"is_anomaly":false,"confidence":0.69443713200415,"method":"SEAD","details":"MAD!:w=0.37,s=0.34 RRCF-fast:w=0.17,s=0.90 RRCF-mid!:w=0.16,s=0.97 RRCF-slow!:w=0.12,s=0.92 COPOD!:w=0.18,s=0.30"} +{"timestamp":"2026-03-16T19:30:07.108392613Z","score":0.7126086677174406,"is_anomaly":false,"confidence":0.8300859959153873,"method":"SEAD","details":"MAD!:w=0.38,s=0.54 RRCF-fast:w=0.17,s=0.89 RRCF-mid!:w=0.15,s=0.95 RRCF-slow!:w=0.12,s=0.90 COPOD!:w=0.18,s=0.57"} +{"timestamp":"2026-03-16T19:30:37.068115902Z","score":0.4603422281379945,"is_anomaly":false,"confidence":0.5362320923345169,"method":"SEAD","details":"MAD!:w=0.38,s=0.18 RRCF-fast:w=0.17,s=0.81 RRCF-mid!:w=0.15,s=0.94 RRCF-slow:w=0.12,s=0.82 COPOD!:w=0.18,s=0.08"} +{"timestamp":"2026-03-16T19:31:07.110331857Z","score":0.6567885072161102,"is_anomaly":false,"confidence":0.7661458697590334,"method":"SEAD","details":"MAD!:w=0.38,s=0.43 RRCF-fast:w=0.16,s=0.76 RRCF-mid:w=0.15,s=0.93 RRCF-slow:w=0.12,s=0.72 COPOD!:w=0.18,s=0.76"} +{"timestamp":"2026-03-16T19:31:37.377610947Z","score":0.44044189762644953,"is_anomaly":false,"confidence":0.5137768658066713,"method":"SEAD","details":"MAD!:w=0.38,s=0.24 RRCF-fast:w=0.16,s=0.70 RRCF-mid:w=0.15,s=0.87 RRCF-slow:w=0.12,s=0.70 COPOD!:w=0.18,s=0.09"} +{"timestamp":"2026-03-16T19:32:07.110928705Z","score":0.43181189989253793,"is_anomaly":false,"confidence":0.5037099461708643,"method":"SEAD","details":"MAD:w=0.39,s=0.13 RRCF-fast:w=0.16,s=0.66 RRCF-mid:w=0.15,s=0.85 RRCF-slow:w=0.12,s=0.72 COPOD!:w=0.18,s=0.33"} +{"timestamp":"2026-03-16T19:32:37.118746056Z","score":0.4201079312487351,"is_anomaly":false,"confidence":0.4900572297519269,"method":"SEAD","details":"MAD:w=0.39,s=0.11 RRCF-fast:w=0.16,s=0.67 RRCF-mid:w=0.15,s=0.84 RRCF-slow:w=0.12,s=0.70 COPOD!:w=0.18,s=0.33"} +{"timestamp":"2026-03-16T19:33:07.111619717Z","score":0.5962193250156446,"is_anomaly":false,"confidence":0.695491727264576,"method":"SEAD","details":"MAD!:w=0.39,s=0.53 RRCF-fast:w=0.16,s=0.59 RRCF-mid:w=0.15,s=0.80 RRCF-slow:w=0.12,s=0.66 COPOD!:w=0.18,s=0.54"} +{"timestamp":"2026-03-16T19:33:37.066601263Z","score":0.3895112158052365,"is_anomaly":false,"confidence":0.45436606447166167,"method":"SEAD","details":"MAD:w=0.39,s=0.06 RRCF-fast:w=0.16,s=0.58 RRCF-mid:w=0.15,s=0.75 RRCF-slow:w=0.12,s=0.62 COPOD!:w=0.18,s=0.49"} +{"timestamp":"2026-03-16T19:34:07.114708118Z","score":0.9194176204731925,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.40,s=0.89 RRCF-fast:w=0.16,s=0.89 RRCF-mid:w=0.15,s=0.93 RRCF-slow!:w=0.12,s=0.93 COPOD!:w=0.18,s=1.00"} +{"timestamp":"2026-03-16T19:34:37.066580422Z","score":0.7532650345800285,"is_anomaly":false,"confidence":0.8786860438888456,"method":"SEAD","details":"MAD!:w=0.40,s=0.70 RRCF-fast:w=0.16,s=0.82 RRCF-mid:w=0.15,s=0.84 RRCF-slow:w=0.12,s=0.86 COPOD!:w=0.18,s=0.67"} +{"timestamp":"2026-03-16T19:35:07.109107352Z","score":0.8975626111290642,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.40,s=0.93 RRCF-fast:w=0.16,s=0.76 RRCF-mid:w=0.15,s=0.91 RRCF-slow!:w=0.12,s=0.93 COPOD!:w=0.18,s=0.93"} +{"timestamp":"2026-03-16T19:35:37.137536461Z","score":0.6592338479090926,"is_anomaly":false,"confidence":0.7679120532389214,"method":"SEAD","details":"MAD!:w=0.40,s=0.59 RRCF-fast:w=0.16,s=0.75 RRCF-mid:w=0.15,s=0.78 RRCF-slow:w=0.12,s=0.86 COPOD!:w=0.18,s=0.50"} +{"timestamp":"2026-03-16T19:36:07.068256035Z","score":0.5637337293185851,"is_anomaly":false,"confidence":0.6566682322731175,"method":"SEAD","details":"MAD!:w=0.40,s=0.56 RRCF-fast:w=0.16,s=0.51 RRCF-mid:w=0.14,s=0.64 RRCF-slow:w=0.12,s=0.63 COPOD!:w=0.18,s=0.53"} +{"timestamp":"2026-03-16T19:36:37.115033905Z","score":0.4134940143515933,"is_anomaly":false,"confidence":0.48166070138820083,"method":"SEAD","details":"MAD!:w=0.40,s=0.47 RRCF-fast:w=0.16,s=0.23 RRCF-mid:w=0.14,s=0.63 RRCF-slow:w=0.12,s=0.59 COPOD!:w=0.18,s=0.16"} +{"timestamp":"2026-03-16T19:37:09.002390677Z","score":0.38118205776776304,"is_anomaly":false,"confidence":0.4440219469414213,"method":"SEAD","details":"MAD!:w=0.40,s=0.46 RRCF-fast:w=0.16,s=0.21 RRCF-mid:w=0.14,s=0.62 RRCF-slow:w=0.12,s=0.55 COPOD!:w=0.18,s=0.05"} +{"timestamp":"2026-03-16T19:37:38.285371788Z","score":0.2768081645060303,"is_anomaly":false,"confidence":0.3228975988797148,"method":"SEAD","details":"MAD:w=0.40,s=0.04 RRCF-fast:w=0.16,s=0.27 RRCF-mid:w=0.14,s=0.56 RRCF-slow:w=0.12,s=0.51 COPOD!:w=0.18,s=0.42"} +{"timestamp":"2026-03-16T19:38:07.110559524Z","score":0.32494640024197824,"is_anomaly":false,"confidence":0.379051003029413,"method":"SEAD","details":"MAD!:w=0.40,s=0.27 RRCF-fast:w=0.16,s=0.21 RRCF-mid:w=0.14,s=0.55 RRCF-slow:w=0.12,s=0.49 COPOD!:w=0.18,s=0.26"} +{"timestamp":"2026-03-16T19:38:38.47442143Z","score":0.261331981709852,"is_anomaly":false,"confidence":0.3048445827281603,"method":"SEAD","details":"MAD:w=0.40,s=0.02 RRCF-fast:w=0.16,s=0.13 RRCF-mid:w=0.14,s=0.49 RRCF-slow:w=0.12,s=0.48 COPOD!:w=0.18,s=0.58"} +{"timestamp":"2026-03-16T19:39:07.120742713Z","score":0.22236799124363335,"is_anomaly":false,"confidence":0.2593929646851527,"method":"SEAD","details":"MAD:w=0.40,s=0.09 RRCF-fast:w=0.16,s=0.24 RRCF-mid:w=0.14,s=0.50 RRCF-slow:w=0.12,s=0.52 COPOD!:w=0.18,s=0.08"} +{"timestamp":"2026-03-16T19:39:37.159403769Z","score":0.6586538330545786,"is_anomaly":false,"confidence":0.7683217782458536,"method":"SEAD","details":"MAD!:w=0.40,s=0.60 RRCF-fast:w=0.16,s=0.71 RRCF-mid:w=0.14,s=0.63 RRCF-slow:w=0.12,s=0.59 COPOD!:w=0.18,s=0.82"} +{"timestamp":"2026-03-16T19:40:07.067895438Z","score":0.4924432262985938,"is_anomaly":false,"confidence":0.574436580077579,"method":"SEAD","details":"MAD!:w=0.41,s=0.56 RRCF-fast:w=0.16,s=0.49 RRCF-mid:w=0.14,s=0.55 RRCF-slow:w=0.12,s=0.54 COPOD!:w=0.18,s=0.27"} +{"timestamp":"2026-03-16T19:40:37.112081291Z","score":0.8713880807093999,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.40,s=0.85 RRCF-fast:w=0.16,s=0.84 RRCF-mid:w=0.14,s=0.88 RRCF-slow:w=0.12,s=0.86 COPOD!:w=0.18,s=0.96"} +{"timestamp":"2026-03-16T19:41:07.069138447Z","score":0.6913593164372847,"is_anomaly":false,"confidence":0.806472827992965,"method":"SEAD","details":"MAD!:w=0.40,s=0.68 RRCF-fast:w=0.16,s=0.70 RRCF-mid:w=0.14,s=0.67 RRCF-slow:w=0.12,s=0.68 COPOD!:w=0.18,s=0.74"} +{"timestamp":"2026-03-16T19:41:37.071858634Z","score":0.5638945324212308,"is_anomaly":false,"confidence":0.6577847545253611,"method":"SEAD","details":"MAD!:w=0.40,s=0.51 RRCF-fast:w=0.16,s=0.57 RRCF-mid:w=0.14,s=0.51 RRCF-slow:w=0.12,s=0.48 COPOD!:w=0.18,s=0.77"} +{"timestamp":"2026-03-16T19:42:08.103862849Z","score":0.3114171442861149,"is_anomaly":false,"confidence":0.36326908319127116,"method":"SEAD","details":"MAD!:w=0.41,s=0.34 RRCF-fast:w=0.16,s=0.21 RRCF-mid:w=0.14,s=0.42 RRCF-slow:w=0.12,s=0.36 COPOD!:w=0.18,s=0.21"} +{"timestamp":"2026-03-16T19:42:37.116867883Z","score":0.28230057436802425,"is_anomaly":false,"confidence":0.3293045123450959,"method":"SEAD","details":"MAD!:w=0.40,s=0.34 RRCF-fast:w=0.16,s=0.09 RRCF-mid:w=0.14,s=0.39 RRCF-slow:w=0.12,s=0.42 COPOD!:w=0.18,s=0.16"} +{"timestamp":"2026-03-16T19:43:07.152645804Z","score":0.17985239173632525,"is_anomaly":false,"confidence":0.20979838346917018,"method":"SEAD","details":"MAD!:w=0.40,s=0.18 RRCF-fast:w=0.16,s=0.09 RRCF-mid:w=0.14,s=0.35 RRCF-slow:w=0.12,s=0.34 COPOD!:w=0.18,s=0.02"} +{"timestamp":"2026-03-16T19:43:37.115346542Z","score":0.17490778235865378,"is_anomaly":false,"confidence":0.20403048100033438,"method":"SEAD","details":"MAD!:w=0.40,s=0.20 RRCF-fast:w=0.16,s=0.07 RRCF-mid:w=0.14,s=0.30 RRCF-slow:w=0.12,s=0.32 COPOD!:w=0.18,s=0.01"} +{"timestamp":"2026-03-16T19:44:33.543460592Z","score":0.9329132448890272,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.40,s=0.91 RRCF-fast!:w=0.16,s=0.98 RRCF-mid!:w=0.14,s=0.99 RRCF-slow!:w=0.12,s=1.00 COPOD!:w=0.18,s=0.85"} +{"timestamp":"2026-03-16T19:44:37.067629738Z","score":0.8872084161974779,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.40,s=0.83 RRCF-fast!:w=0.16,s=0.93 RRCF-mid!:w=0.14,s=0.97 RRCF-slow!:w=0.12,s=0.98 COPOD!:w=0.18,s=0.85"} +{"timestamp":"2026-03-16T19:45:07.113200988Z","score":0.6512642070511757,"is_anomaly":false,"confidence":0.7586285747066971,"method":"SEAD","details":"MAD!:w=0.40,s=0.56 RRCF-fast:w=0.16,s=0.74 RRCF-mid:w=0.14,s=0.68 RRCF-slow:w=0.12,s=0.83 COPOD!:w=0.18,s=0.64"} +{"timestamp":"2026-03-16T19:45:51.216421824Z","score":0.8775451586152225,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.40,s=0.83 RRCF-fast!:w=0.16,s=0.92 RRCF-mid!:w=0.14,s=0.96 RRCF-slow!:w=0.12,s=0.98 COPOD!:w=0.18,s=0.82"} +{"timestamp":"2026-03-16T19:46:11.596644859Z","score":0.9124740994419644,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.41,s=0.91 RRCF-fast:w=0.16,s=0.90 RRCF-mid!:w=0.14,s=0.97 RRCF-slow!:w=0.11,s=0.98 COPOD!:w=0.18,s=0.84"} +{"timestamp":"2026-03-16T19:46:37.112573401Z","score":0.6266037256688176,"is_anomaly":false,"confidence":0.7218228139183944,"method":"SEAD","details":"MAD!:w=0.41,s=0.53 RRCF-fast:w=0.16,s=0.63 RRCF-mid:w=0.14,s=0.70 RRCF-slow:w=0.11,s=0.87 COPOD!:w=0.18,s=0.64"} +{"timestamp":"2026-03-16T19:47:07.076930586Z","score":0.42511096688646155,"is_anomaly":false,"confidence":0.4897110913568662,"method":"SEAD","details":"MAD!:w=0.41,s=0.39 RRCF-fast:w=0.16,s=0.18 RRCF-mid:w=0.14,s=0.56 RRCF-slow:w=0.11,s=0.82 COPOD!:w=0.18,s=0.35"} +{"timestamp":"2026-03-16T19:47:48.010912397Z","score":0.912607975886885,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.41,s=0.91 RRCF-fast:w=0.16,s=0.91 RRCF-mid:w=0.14,s=0.95 RRCF-slow!:w=0.11,s=0.96 COPOD!:w=0.18,s=0.86"} +{"timestamp":"2026-03-16T19:48:07.161372268Z","score":0.5542753315776319,"is_anomaly":false,"confidence":0.638503352494234,"method":"SEAD","details":"MAD!:w=0.41,s=0.56 RRCF-fast:w=0.16,s=0.56 RRCF-mid:w=0.14,s=0.65 RRCF-slow:w=0.11,s=0.84 COPOD!:w=0.18,s=0.28"} +{"timestamp":"2026-03-16T19:48:37.145411017Z","score":0.380971349149207,"is_anomaly":false,"confidence":0.43886399011057226,"method":"SEAD","details":"MAD!:w=0.41,s=0.40 RRCF-fast:w=0.16,s=0.18 RRCF-mid:w=0.14,s=0.59 RRCF-slow:w=0.11,s=0.74 COPOD!:w=0.18,s=0.12"} +{"timestamp":"2026-03-16T19:49:20.272238219Z","score":0.8995128275839667,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.41,s=0.91 RRCF-fast:w=0.16,s=0.84 RRCF-mid:w=0.14,s=0.94 RRCF-slow!:w=0.11,s=0.97 COPOD!:w=0.18,s=0.87"} +{"timestamp":"2026-03-16T19:49:37.971263063Z","score":0.5566452392071204,"is_anomaly":false,"confidence":0.6405104277573525,"method":"SEAD","details":"MAD!:w=0.41,s=0.56 RRCF-fast:w=0.16,s=0.39 RRCF-mid:w=0.14,s=0.59 RRCF-slow:w=0.11,s=0.83 COPOD!:w=0.18,s=0.50"} +{"timestamp":"2026-03-16T19:50:08.519861578Z","score":0.44152350333609874,"is_anomaly":false,"confidence":0.5080442408697277,"method":"SEAD","details":"MAD!:w=0.41,s=0.52 RRCF-fast:w=0.16,s=0.18 RRCF-mid:w=0.14,s=0.51 RRCF-slow:w=0.11,s=0.69 COPOD!:w=0.18,s=0.30"} +{"timestamp":"2026-03-16T19:50:55.640613862Z","score":0.9153944783713772,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.40,s=0.91 RRCF-fast!:w=0.16,s=0.97 RRCF-mid!:w=0.14,s=0.97 RRCF-slow!:w=0.11,s=0.98 COPOD!:w=0.18,s=0.80"} +{"timestamp":"2026-03-16T19:51:07.164606574Z","score":0.512628903574432,"is_anomaly":false,"confidence":0.5898625105945969,"method":"SEAD","details":"MAD!:w=0.40,s=0.56 RRCF-fast:w=0.16,s=0.46 RRCF-mid:w=0.14,s=0.60 RRCF-slow:w=0.11,s=0.76 COPOD!:w=0.18,s=0.24"} +{"timestamp":"2026-03-16T19:51:37.067750981Z","score":0.5162906247776408,"is_anomaly":false,"confidence":0.5940759134030645,"method":"SEAD","details":"MAD!:w=0.40,s=0.43 RRCF-fast:w=0.16,s=0.56 RRCF-mid:w=0.14,s=0.48 RRCF-slow:w=0.11,s=0.65 COPOD!:w=0.18,s=0.62"} +{"timestamp":"2026-03-16T19:52:33.916064365Z","score":0.8760199288213044,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.40,s=0.91 RRCF-fast:w=0.16,s=0.80 RRCF-mid:w=0.14,s=0.90 RRCF-slow:w=0.11,s=0.95 COPOD!:w=0.18,s=0.82"} +{"timestamp":"2026-03-16T19:52:37.101901403Z","score":0.9085885973886149,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.40,s=0.89 RRCF-fast:w=0.16,s=0.90 RRCF-mid:w=0.14,s=0.87 RRCF-slow:w=0.11,s=0.93 COPOD!:w=0.18,s=0.97"} +{"timestamp":"2026-03-16T19:53:07.070144406Z","score":0.624260422877888,"is_anomaly":false,"confidence":0.718302248524794,"method":"SEAD","details":"MAD!:w=0.40,s=0.68 RRCF-fast:w=0.16,s=0.80 RRCF-mid:w=0.14,s=0.64 RRCF-slow:w=0.11,s=0.77 COPOD!:w=0.18,s=0.26"} +{"timestamp":"2026-03-16T19:53:57.451125193Z","score":0.8472753171696878,"is_anomaly":false,"confidence":0.9749132623799113,"method":"SEAD","details":"MAD!:w=0.40,s=0.92 RRCF-fast:w=0.16,s=0.73 RRCF-mid:w=0.14,s=0.82 RRCF-slow:w=0.11,s=0.93 COPOD!:w=0.19,s=0.77"} +{"timestamp":"2026-03-16T19:54:08.944933012Z","score":0.9547518344699106,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.40,s=0.95 RRCF-fast!:w=0.16,s=0.98 RRCF-mid:w=0.14,s=0.91 RRCF-slow:w=0.11,s=0.95 COPOD!:w=0.19,s=0.98"} +{"timestamp":"2026-03-16T19:54:37.125455992Z","score":0.7399019426311728,"is_anomaly":false,"confidence":0.8513646061842309,"method":"SEAD","details":"MAD!:w=0.40,s=0.64 RRCF-fast!:w=0.16,s=0.95 RRCF-mid:w=0.14,s=0.68 RRCF-slow:w=0.11,s=0.86 COPOD!:w=0.19,s=0.75"} +{"timestamp":"2026-03-16T19:55:07.066503428Z","score":0.45395201980542343,"is_anomaly":false,"confidence":0.5223377049042739,"method":"SEAD","details":"MAD!:w=0.40,s=0.40 RRCF-fast:w=0.16,s=0.73 RRCF-mid:w=0.14,s=0.47 RRCF-slow:w=0.11,s=0.79 COPOD!:w=0.19,s=0.12"} +{"timestamp":"2026-03-16T19:55:37.112501402Z","score":0.41349871270516414,"is_anomaly":false,"confidence":0.47579030195275873,"method":"SEAD","details":"MAD!:w=0.40,s=0.40 RRCF-fast:w=0.16,s=0.69 RRCF-mid:w=0.14,s=0.38 RRCF-slow:w=0.11,s=0.63 COPOD!:w=0.19,s=0.10"} +{"timestamp":"2026-03-16T19:56:07.119895655Z","score":0.3866145684136362,"is_anomaly":false,"confidence":0.44485619082451416,"method":"SEAD","details":"MAD!:w=0.40,s=0.40 RRCF-fast:w=0.16,s=0.59 RRCF-mid:w=0.14,s=0.36 RRCF-slow:w=0.11,s=0.60 COPOD!:w=0.19,s=0.07"} +{"timestamp":"2026-03-16T19:56:37.114072255Z","score":0.46677712405576605,"is_anomaly":false,"confidence":0.5370948493314611,"method":"SEAD","details":"MAD!:w=0.40,s=0.38 RRCF-fast:w=0.16,s=0.47 RRCF-mid:w=0.14,s=0.26 RRCF-slow:w=0.11,s=0.63 COPOD!:w=0.19,s=0.70"} +{"timestamp":"2026-03-16T19:57:07.117604947Z","score":0.3409968624258136,"is_anomaly":false,"confidence":0.3923663971699106,"method":"SEAD","details":"MAD!:w=0.40,s=0.39 RRCF-fast:w=0.16,s=0.46 RRCF-mid:w=0.14,s=0.31 RRCF-slow:w=0.11,s=0.58 COPOD!:w=0.19,s=0.02"} +{"timestamp":"2026-03-16T19:57:37.133795797Z","score":0.44161652136351204,"is_anomaly":false,"confidence":0.5081465398455906,"method":"SEAD","details":"MAD!:w=0.40,s=0.39 RRCF-fast:w=0.16,s=0.40 RRCF-mid:w=0.14,s=0.24 RRCF-slow:w=0.11,s=0.60 COPOD!:w=0.19,s=0.64"} +{"timestamp":"2026-03-16T19:58:08.233096642Z","score":0.3044804066301518,"is_anomaly":false,"confidence":0.3503507174101698,"method":"SEAD","details":"MAD!:w=0.40,s=0.37 RRCF-fast:w=0.16,s=0.31 RRCF-mid:w=0.14,s=0.22 RRCF-slow:w=0.11,s=0.47 COPOD!:w=0.19,s=0.12"} +{"timestamp":"2026-03-16T19:58:37.110851991Z","score":0.817234187782575,"is_anomaly":false,"confidence":0.9403514240886109,"method":"SEAD","details":"MAD!:w=0.40,s=0.79 RRCF-fast:w=0.16,s=0.84 RRCF-mid:w=0.14,s=0.72 RRCF-slow:w=0.11,s=0.88 COPOD!:w=0.19,s=0.89"} +{"timestamp":"2026-03-16T19:59:07.114076875Z","score":0.580466125467699,"is_anomaly":false,"confidence":0.6679139907249821,"method":"SEAD","details":"MAD!:w=0.40,s=0.64 RRCF-fast:w=0.16,s=0.61 RRCF-mid:w=0.14,s=0.58 RRCF-slow:w=0.11,s=0.63 COPOD!:w=0.19,s=0.40"} +{"timestamp":"2026-03-16T19:59:37.103203414Z","score":0.9347328273067086,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.40,s=0.99 RRCF-fast!:w=0.16,s=0.91 RRCF-mid:w=0.14,s=0.82 RRCF-slow:w=0.11,s=0.92 COPOD!:w=0.19,s=0.93"} +{"timestamp":"2026-03-16T20:00:07.159154721Z","score":0.6013795051226022,"is_anomaly":false,"confidence":0.6919744307269522,"method":"SEAD","details":"MAD!:w=0.40,s=0.64 RRCF-fast:w=0.16,s=0.53 RRCF-mid:w=0.14,s=0.64 RRCF-slow:w=0.11,s=0.67 COPOD!:w=0.19,s=0.52"} +{"timestamp":"2026-03-16T20:00:37.127081668Z","score":0.4228446310212684,"is_anomaly":false,"confidence":0.48654413784393763,"method":"SEAD","details":"MAD!:w=0.40,s=0.39 RRCF-fast:w=0.16,s=0.51 RRCF-mid:w=0.14,s=0.39 RRCF-slow:w=0.11,s=0.52 COPOD!:w=0.19,s=0.39"} +{"timestamp":"2026-03-16T20:01:07.113261404Z","score":0.4278008783084574,"is_anomaly":false,"confidence":0.4922495548494404,"method":"SEAD","details":"MAD!:w=0.40,s=0.31 RRCF-fast:w=0.16,s=0.47 RRCF-mid:w=0.14,s=0.38 RRCF-slow:w=0.11,s=0.48 COPOD!:w=0.19,s=0.65"} +{"timestamp":"2026-03-16T20:01:37.070845326Z","score":0.4037716772915516,"is_anomaly":false,"confidence":0.46460032806260104,"method":"SEAD","details":"MAD!:w=0.40,s=0.31 RRCF-fast:w=0.16,s=0.31 RRCF-mid:w=0.14,s=0.31 RRCF-slow:w=0.11,s=0.45 COPOD!:w=0.19,s=0.73"} +{"timestamp":"2026-03-16T20:02:07.110724454Z","score":0.28770581408137375,"is_anomaly":false,"confidence":0.3310490138990261,"method":"SEAD","details":"MAD:w=0.40,s=0.10 RRCF-fast:w=0.16,s=0.48 RRCF-mid:w=0.14,s=0.18 RRCF-slow:w=0.11,s=0.47 COPOD!:w=0.19,s=0.50"} +{"timestamp":"2026-03-16T20:02:37.073247341Z","score":0.2693525763374812,"is_anomaly":false,"confidence":0.3099308405441715,"method":"SEAD","details":"MAD!:w=0.41,s=0.18 RRCF-fast:w=0.16,s=0.52 RRCF-mid:w=0.14,s=0.11 RRCF-slow:w=0.11,s=0.53 COPOD!:w=0.19,s=0.21"} +{"timestamp":"2026-03-16T20:03:08.694292505Z","score":0.3628805408844076,"is_anomaly":false,"confidence":0.4175488966272709,"method":"SEAD","details":"MAD!:w=0.41,s=0.28 RRCF-fast:w=0.16,s=0.42 RRCF-mid:w=0.14,s=0.21 RRCF-slow:w=0.11,s=0.45 COPOD!:w=0.19,s=0.55"} +{"timestamp":"2026-03-16T20:03:37.119084174Z","score":0.19307620291926592,"is_anomaly":false,"confidence":0.222163346916976,"method":"SEAD","details":"MAD:w=0.41,s=0.03 RRCF-fast:w=0.16,s=0.26 RRCF-mid:w=0.14,s=0.19 RRCF-slow:w=0.11,s=0.51 COPOD!:w=0.19,s=0.31"} +{"timestamp":"2026-03-16T20:04:07.109920382Z","score":0.3451674125328558,"is_anomaly":false,"confidence":0.3971672658542843,"method":"SEAD","details":"MAD!:w=0.41,s=0.49 RRCF-fast:w=0.16,s=0.34 RRCF-mid:w=0.14,s=0.19 RRCF-slow:w=0.11,s=0.39 COPOD!:w=0.18,s=0.11"} +{"timestamp":"2026-03-16T20:04:37.171759821Z","score":0.7410369548675075,"is_anomaly":false,"confidence":0.8526829361233162,"method":"SEAD","details":"MAD!:w=0.41,s=0.76 RRCF-fast:w=0.16,s=0.78 RRCF-mid:w=0.14,s=0.65 RRCF-slow:w=0.11,s=0.84 COPOD!:w=0.19,s=0.69"} +{"timestamp":"2026-03-16T20:05:07.137012599Z","score":0.77419732211944,"is_anomaly":false,"confidence":0.8908393048787189,"method":"SEAD","details":"MAD!:w=0.41,s=0.81 RRCF-fast:w=0.16,s=0.66 RRCF-mid:w=0.14,s=0.68 RRCF-slow:w=0.11,s=0.69 COPOD!:w=0.19,s=0.91"} +{"timestamp":"2026-03-16T20:05:37.074796758Z","score":0.6439684204701028,"is_anomaly":false,"confidence":0.7409898790206989,"method":"SEAD","details":"MAD!:w=0.41,s=0.74 RRCF-fast:w=0.16,s=0.61 RRCF-mid:w=0.14,s=0.45 RRCF-slow:w=0.11,s=0.55 COPOD!:w=0.19,s=0.66"} +{"timestamp":"2026-03-16T20:06:07.131585383Z","score":0.8075974463340618,"is_anomaly":false,"confidence":0.9292715528187682,"method":"SEAD","details":"MAD!:w=0.41,s=0.87 RRCF-fast:w=0.16,s=0.75 RRCF-mid:w=0.14,s=0.62 RRCF-slow:w=0.11,s=0.79 COPOD!:w=0.19,s=0.88"} +{"timestamp":"2026-03-16T20:06:37.136248256Z","score":0.5762556699650608,"is_anomaly":false,"confidence":0.6630754018352152,"method":"SEAD","details":"MAD!:w=0.41,s=0.60 RRCF-fast:w=0.16,s=0.62 RRCF-mid:w=0.14,s=0.52 RRCF-slow:w=0.11,s=0.55 COPOD!:w=0.19,s=0.55"} +{"timestamp":"2026-03-16T20:07:07.066448091Z","score":0.3240372418332902,"is_anomaly":false,"confidence":0.3728572845994053,"method":"SEAD","details":"MAD!:w=0.41,s=0.38 RRCF-fast:w=0.16,s=0.39 RRCF-mid:w=0.14,s=0.10 RRCF-slow:w=0.11,s=0.37 COPOD!:w=0.19,s=0.29"} +{"timestamp":"2026-03-16T20:07:37.14377787Z","score":0.6862829868359109,"is_anomaly":false,"confidence":0.7905709723852501,"method":"SEAD","details":"MAD!:w=0.40,s=0.75 RRCF-fast:w=0.16,s=0.75 RRCF-mid:w=0.14,s=0.61 RRCF-slow:w=0.11,s=0.83 COPOD!:w=0.19,s=0.47"} +{"timestamp":"2026-03-16T20:08:07.101160245Z","score":0.4520989847177634,"is_anomaly":false,"confidence":0.5208002250071284,"method":"SEAD","details":"MAD!:w=0.40,s=0.47 RRCF-fast:w=0.16,s=0.51 RRCF-mid:w=0.14,s=0.52 RRCF-slow:w=0.11,s=0.52 COPOD!:w=0.19,s=0.27"} +{"timestamp":"2026-03-16T20:08:37.11637042Z","score":0.3793531944735347,"is_anomaly":false,"confidence":0.4369999396533199,"method":"SEAD","details":"MAD!:w=0.40,s=0.42 RRCF-fast:w=0.16,s=0.45 RRCF-mid:w=0.14,s=0.23 RRCF-slow:w=0.11,s=0.33 COPOD!:w=0.19,s=0.36"} +{"timestamp":"2026-03-16T20:09:07.092942077Z","score":0.7317814014475915,"is_anomaly":false,"confidence":0.8429833541162632,"method":"SEAD","details":"MAD!:w=0.40,s=0.75 RRCF-fast:w=0.16,s=0.79 RRCF-mid:w=0.14,s=0.62 RRCF-slow:w=0.11,s=0.78 COPOD!:w=0.19,s=0.71"} +{"timestamp":"2026-03-16T20:09:37.134095595Z","score":0.4732241088746331,"is_anomaly":false,"confidence":0.5451355360476289,"method":"SEAD","details":"MAD!:w=0.40,s=0.47 RRCF-fast:w=0.16,s=0.55 RRCF-mid:w=0.14,s=0.42 RRCF-slow:w=0.11,s=0.54 COPOD!:w=0.19,s=0.42"} +{"timestamp":"2026-03-16T20:10:07.066635685Z","score":0.4786418345717807,"is_anomaly":false,"confidence":0.5513765426799769,"method":"SEAD","details":"MAD!:w=0.40,s=0.63 RRCF-fast:w=0.16,s=0.60 RRCF-mid:w=0.14,s=0.25 RRCF-slow:w=0.11,s=0.48 COPOD!:w=0.19,s=0.23"} +{"timestamp":"2026-03-16T20:10:37.170649029Z","score":0.8261562234319412,"is_anomaly":false,"confidence":0.9516994322006691,"method":"SEAD","details":"MAD!:w=0.40,s=0.93 RRCF-fast:w=0.16,s=0.76 RRCF-mid:w=0.14,s=0.66 RRCF-slow:w=0.11,s=0.76 COPOD!:w=0.19,s=0.82"} +{"timestamp":"2026-03-16T20:11:07.089836842Z","score":0.4941201904803671,"is_anomaly":false,"confidence":0.571255806334225,"method":"SEAD","details":"MAD!:w=0.40,s=0.47 RRCF-fast:w=0.16,s=0.56 RRCF-mid:w=0.14,s=0.36 RRCF-slow:w=0.11,s=0.49 COPOD!:w=0.19,s=0.59"} +{"timestamp":"2026-03-16T20:11:37.116145088Z","score":0.7770482996868038,"is_anomaly":false,"confidence":0.8983509711810913,"method":"SEAD","details":"MAD!:w=0.40,s=0.81 RRCF-fast:w=0.16,s=0.68 RRCF-mid:w=0.14,s=0.65 RRCF-slow:w=0.11,s=0.68 COPOD!:w=0.19,s=0.94"} +{"timestamp":"2026-03-16T20:12:07.172962876Z","score":0.7712929618826685,"is_anomaly":false,"confidence":0.8916971849133597,"method":"SEAD","details":"MAD!:w=0.40,s=0.85 RRCF-fast:w=0.16,s=0.71 RRCF-mid:w=0.15,s=0.60 RRCF-slow:w=0.11,s=0.74 COPOD!:w=0.19,s=0.81"} +{"timestamp":"2026-03-16T20:12:37.143321182Z","score":0.761853686395738,"is_anomaly":false,"confidence":0.880784372538186,"method":"SEAD","details":"MAD!:w=0.40,s=0.92 RRCF-fast:w=0.16,s=0.68 RRCF-mid:w=0.15,s=0.47 RRCF-slow:w=0.11,s=0.56 COPOD!:w=0.19,s=0.83"} +{"timestamp":"2026-03-16T20:13:07.116202238Z","score":0.3639857168032528,"is_anomaly":false,"confidence":0.4208064316182698,"method":"SEAD","details":"MAD!:w=0.40,s=0.51 RRCF-fast:w=0.16,s=0.29 RRCF-mid:w=0.15,s=0.17 RRCF-slow:w=0.11,s=0.30 COPOD!:w=0.19,s=0.31"} +{"timestamp":"2026-03-16T20:13:37.103559193Z","score":0.7119742771996713,"is_anomaly":false,"confidence":0.823118438887361,"method":"SEAD","details":"MAD!:w=0.39,s=0.75 RRCF-fast:w=0.16,s=0.70 RRCF-mid:w=0.15,s=0.59 RRCF-slow:w=0.11,s=0.71 COPOD!:w=0.19,s=0.75"} +{"timestamp":"2026-03-16T20:14:07.191304542Z","score":0.4095093043509364,"is_anomaly":false,"confidence":0.47343656941226864,"method":"SEAD","details":"MAD!:w=0.39,s=0.46 RRCF-fast:w=0.16,s=0.34 RRCF-mid:w=0.15,s=0.24 RRCF-slow:w=0.11,s=0.48 COPOD!:w=0.19,s=0.44"} +{"timestamp":"2026-03-16T20:14:37.159644508Z","score":0.26024347852366403,"is_anomaly":false,"confidence":0.30314599981326235,"method":"SEAD","details":"MAD!:w=0.39,s=0.24 RRCF-fast:w=0.16,s=0.32 RRCF-mid:w=0.15,s=0.08 RRCF-slow:w=0.11,s=0.18 COPOD!:w=0.19,s=0.44"} +{"timestamp":"2026-03-16T20:15:07.112908311Z","score":0.30122371410787024,"is_anomaly":false,"confidence":0.35088204514754573,"method":"SEAD","details":"MAD!:w=0.39,s=0.47 RRCF-fast:w=0.16,s=0.13 RRCF-mid:w=0.15,s=0.20 RRCF-slow:w=0.11,s=0.26 COPOD!:w=0.19,s=0.19"} +{"timestamp":"2026-03-16T20:15:37.701244192Z","score":0.2023094289537823,"is_anomaly":false,"confidence":0.23566121410518961,"method":"SEAD","details":"MAD!:w=0.39,s=0.24 RRCF-fast:w=0.16,s=0.27 RRCF-mid:w=0.15,s=0.11 RRCF-slow:w=0.11,s=0.28 COPOD!:w=0.19,s=0.10"} +{"timestamp":"2026-03-16T20:16:07.113164696Z","score":0.314757798023129,"is_anomaly":false,"confidence":0.36664729476426045,"method":"SEAD","details":"MAD!:w=0.39,s=0.24 RRCF-fast:w=0.16,s=0.40 RRCF-mid:w=0.15,s=0.13 RRCF-slow:w=0.11,s=0.30 COPOD!:w=0.19,s=0.55"} +{"timestamp":"2026-03-16T20:16:37.075635076Z","score":0.23911958324698002,"is_anomaly":false,"confidence":0.2785397180730698,"method":"SEAD","details":"MAD!:w=0.39,s=0.24 RRCF-fast:w=0.16,s=0.06 RRCF-mid:w=0.15,s=0.05 RRCF-slow:w=0.11,s=0.19 COPOD!:w=0.19,s=0.57"} +{"timestamp":"2026-03-16T20:17:07.114299807Z","score":0.631736110355675,"is_anomaly":false,"confidence":0.7358811674295179,"method":"SEAD","details":"MAD!:w=0.39,s=0.77 RRCF-fast:w=0.16,s=0.47 RRCF-mid:w=0.15,s=0.39 RRCF-slow:w=0.11,s=0.38 COPOD!:w=0.19,s=0.83"} +{"timestamp":"2026-03-16T20:17:37.119170504Z","score":0.39209247925400803,"is_anomaly":false,"confidence":0.45737711644396045,"method":"SEAD","details":"MAD!:w=0.39,s=0.61 RRCF-fast:w=0.16,s=0.23 RRCF-mid:w=0.15,s=0.16 RRCF-slow:w=0.11,s=0.26 COPOD!:w=0.19,s=0.34"} +{"timestamp":"2026-03-16T20:18:07.114733229Z","score":0.8718260151669303,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.39,s=0.87 RRCF-fast!:w=0.16,s=0.96 RRCF-mid!:w=0.15,s=0.83 RRCF-slow:w=0.11,s=0.69 COPOD!:w=0.19,s=0.95"} +{"timestamp":"2026-03-16T20:18:37.069356529Z","score":0.7315834997931389,"is_anomaly":false,"confidence":0.8521889299581833,"method":"SEAD","details":"MAD!:w=0.39,s=0.70 RRCF-fast!:w=0.16,s=0.94 RRCF-mid:w=0.15,s=0.72 RRCF-slow:w=0.11,s=0.55 COPOD!:w=0.19,s=0.74"} +{"timestamp":"2026-03-16T20:19:07.069015814Z","score":0.4398066963504662,"is_anomaly":false,"confidence":0.5123111689333134,"method":"SEAD","details":"MAD!:w=0.39,s=0.44 RRCF-fast:w=0.16,s=0.58 RRCF-mid:w=0.15,s=0.26 RRCF-slow:w=0.11,s=0.17 COPOD!:w=0.19,s=0.62"} +{"timestamp":"2026-03-16T20:19:37.112133153Z","score":0.47328944415156304,"is_anomaly":false,"confidence":0.5513137257552545,"method":"SEAD","details":"MAD!:w=0.39,s=0.45 RRCF-fast:w=0.16,s=0.56 RRCF-mid:w=0.15,s=0.32 RRCF-slow:w=0.11,s=0.18 COPOD!:w=0.19,s=0.75"} +{"timestamp":"2026-03-16T20:20:07.062912686Z","score":0.3715437059187382,"is_anomaly":false,"confidence":0.4327946615377682,"method":"SEAD","details":"MAD!:w=0.39,s=0.52 RRCF-fast:w=0.16,s=0.46 RRCF-mid:w=0.15,s=0.29 RRCF-slow:w=0.11,s=0.14 COPOD!:w=0.19,s=0.19"} +{"timestamp":"2026-03-16T20:20:37.114993175Z","score":0.23488767104866262,"is_anomaly":false,"confidence":0.2736101526454996,"method":"SEAD","details":"MAD:w=0.39,s=0.02 RRCF-fast:w=0.16,s=0.39 RRCF-mid:w=0.15,s=0.16 RRCF-slow:w=0.11,s=0.18 COPOD!:w=0.19,s=0.65"} +{"timestamp":"2026-03-16T20:21:07.675398155Z","score":0.47897601205453505,"is_anomaly":false,"confidence":0.5587270320923695,"method":"SEAD","details":"MAD!:w=0.39,s=0.63 RRCF-fast:w=0.16,s=0.57 RRCF-mid:w=0.15,s=0.35 RRCF-slow:w=0.11,s=0.15 COPOD!:w=0.19,s=0.39"} +{"timestamp":"2026-03-16T20:21:37.114176468Z","score":0.5163282547315627,"is_anomaly":false,"confidence":0.6022985412445929,"method":"SEAD","details":"MAD!:w=0.39,s=0.77 RRCF-fast:w=0.16,s=0.40 RRCF-mid:w=0.15,s=0.27 RRCF-slow:w=0.11,s=0.28 COPOD!:w=0.19,s=0.44"} +{"timestamp":"2026-03-16T20:22:07.117434168Z","score":0.29806336932466426,"is_anomaly":false,"confidence":0.3476918624878026,"method":"SEAD","details":"MAD!:w=0.38,s=0.23 RRCF-fast:w=0.16,s=0.51 RRCF-mid:w=0.15,s=0.24 RRCF-slow:w=0.11,s=0.13 COPOD!:w=0.19,s=0.41"} +{"timestamp":"2026-03-16T20:22:37.158593363Z","score":0.30326967868602017,"is_anomaly":false,"confidence":0.3537650388148332,"method":"SEAD","details":"MAD!:w=0.39,s=0.19 RRCF-fast:w=0.16,s=0.48 RRCF-mid:w=0.15,s=0.22 RRCF-slow:w=0.11,s=0.09 COPOD!:w=0.19,s=0.59"} +{"timestamp":"2026-03-16T20:23:07.070017673Z","score":0.2506493381999163,"is_anomaly":false,"confidence":0.29238324530626114,"method":"SEAD","details":"MAD!:w=0.39,s=0.16 RRCF-fast:w=0.16,s=0.37 RRCF-mid:w=0.15,s=0.28 RRCF-slow:w=0.11,s=0.11 COPOD!:w=0.18,s=0.41"} +{"timestamp":"2026-03-16T20:23:37.113158653Z","score":0.721323598874441,"is_anomaly":false,"confidence":0.8414262581722277,"method":"SEAD","details":"MAD!:w=0.39,s=0.83 RRCF-fast:w=0.16,s=0.63 RRCF-mid:w=0.15,s=0.56 RRCF-slow:w=0.11,s=0.48 COPOD!:w=0.18,s=0.86"} +{"timestamp":"2026-03-16T20:24:07.473824657Z","score":0.5347551888766408,"is_anomaly":false,"confidence":0.6237936181718874,"method":"SEAD","details":"MAD!:w=0.39,s=0.68 RRCF-fast:w=0.16,s=0.39 RRCF-mid:w=0.15,s=0.41 RRCF-slow:w=0.11,s=0.19 COPOD!:w=0.18,s=0.69"} diff --git a/evaluation/data/pipeline_batch-out_run2/baseline_metrics.csv b/evaluation/data/pipeline_batch-out_run2/baseline_metrics.csv new file mode 100644 index 0000000..ba5e3f9 --- /dev/null +++ b/evaluation/data/pipeline_batch-out_run2/baseline_metrics.csv @@ -0,0 +1,3248 @@ +timestamp,cpu_percent,cpu_count,cpu_freq_current,memory_percent,memory_available_mb,memory_used_mb,swap_percent,disk_io_read_mb_s,disk_io_write_mb_s,disk_io_read_count,disk_io_write_count,network_sent_mb_s,network_recv_mb_s,network_packets_sent,network_packets_recv,network_errin,network_errout,network_dropin,network_dropout,tixstream_active,transfer_job_manager_active +1773676432.356645,0.95,4,3992.50,48.54,1784.63,1900.52,0.00,3508024550092.506836,0.000000,75,0,0.000000,0.000020,63700950,31066955,0,0,81476,0,1,1 +1773676437.353617,0.70,4,3992.50,48.57,1783.66,1901.48,0.00,0.000000,0.000000,75,0,0.000000,0.000030,63700950,31066958,0,0,81479,0,1,1 +1773676442.358192,0.65,4,3992.50,48.57,1783.41,1901.73,0.00,2.119935,0.000195,258,2,0.000000,0.000663,63700950,31066964,0,0,81481,0,1,1 +1773676447.354662,0.75,4,3992.50,48.93,1769.43,1915.71,0.00,55236.827126,58550.253636,3816796,3220646,0.000000,0.000030,63700950,31066967,0,0,81484,0,1,1 +1773676452.356374,0.75,4,3992.50,48.95,1768.45,1916.69,0.00,0.000000,0.027334,3816796,3220676,0.000000,0.000020,63700950,31066969,0,0,81486,0,1,1 +1773676457.355788,0.60,4,3992.50,48.97,1767.95,1917.18,0.00,9.727311,10.679766,3818299,3221351,0.000000,0.000030,63700950,31066972,0,0,81489,0,1,1 +1773676462.357994,15.42,4,3992.50,50.14,1722.00,1963.10,0.00,3516885995569.469238,3516885995568.550293,3816796,3220737,40.047474,0.021220,63705330,31068301,0,0,81491,0,1,1 +1773676467.357859,0.75,4,3992.50,49.55,1744.91,1940.18,0.00,3518531651591.471191,3518531648282.409668,11,0,0.000627,0.000290,63705343,31068312,0,0,81494,0,1,1 +1773676472.353732,0.65,4,3992.50,49.30,1754.77,1930.32,0.00,55245.609485,58557.352272,3816796,3220766,0.000000,0.000020,63705343,31068314,0,0,81496,0,1,1 +1773676477.354280,0.60,4,3992.50,49.33,1753.87,1931.21,0.00,3518051044768.251953,3518051041468.622559,253,669,0.000000,0.000030,63705343,31068317,0,0,81499,0,1,1 +1773676482.354736,0.95,4,3992.50,49.44,1751.41,1935.70,0.00,0.000000,0.000000,253,669,0.000000,0.000020,63705343,31068319,0,0,81501,0,1,1 +1773676487.357812,0.70,4,3992.50,49.26,1758.30,1928.80,0.00,3516273698419.063965,3516273698409.999023,75,0,0.000000,0.000030,63705343,31068322,0,0,81504,0,1,1 +1773676492.353441,0.55,4,3992.50,49.28,1757.58,1929.53,0.00,2.123732,0.000195,258,2,0.000000,0.000020,63705343,31068324,0,0,81506,0,1,1 +1773676497.357874,0.70,4,3992.50,49.31,1756.60,1930.50,0.00,55148.933354,58457.344385,3816796,3220895,0.000000,0.000030,63705343,31068327,0,0,81509,0,1,1 +1773676502.357786,0.70,4,3992.50,49.31,1756.50,1930.61,0.00,0.032813,0.006250,3816798,3220903,0.000000,0.000020,63705343,31068329,0,0,81511,0,1,1 +1773676507.353452,1.15,4,3992.50,49.74,1739.85,1947.25,0.00,3521489323560.106934,3521489320248.093750,11,0,0.000132,0.000824,63705353,31068346,0,0,81514,0,1,1 +1773676512.357800,0.60,4,3992.50,49.75,1739.12,1947.99,0.00,2.173501,0.000195,258,2,0.000041,0.000067,63705357,31068352,0,0,81516,0,1,1 +1773676517.353517,0.70,4,3992.50,49.75,1739.12,1947.99,0.00,3521453430936.736816,3521453430938.914062,11,0,0.000000,0.000030,63705357,31068355,0,0,81519,0,1,1 +1773676522.353591,0.65,4,3992.50,49.75,1739.12,1947.99,0.00,55199.213351,58508.416664,3816798,3221000,0.000000,0.000020,63705357,31068357,0,0,81521,0,1,1 +1773676527.357659,16.45,4,3992.50,51.35,1676.75,2010.34,0.00,3515576771441.216797,3515576768132.480957,258,2,40.030815,0.021446,63709648,31069776,0,0,81524,0,1,1 +1773676532.353621,0.75,4,3992.50,50.45,1711.70,1975.39,0.00,55242.481395,58556.724209,3816798,3221164,0.000619,0.000273,63709660,31069785,0,0,81526,0,1,1 +1773676537.357703,0.80,4,3992.50,50.38,1714.74,1972.34,0.00,0.000000,0.099040,3816798,3221229,0.000000,0.000030,63709660,31069788,0,0,81529,0,1,1 +1773676542.357864,0.60,4,3992.50,50.27,1719.10,1967.98,0.00,3518323486504.280273,3518323483203.914551,253,669,0.000000,0.000020,63709660,31069790,0,0,81531,0,1,1 +1773676547.353595,0.75,4,3992.50,50.27,1718.86,1968.23,0.00,3521444153141.158203,3521444153131.952637,205,0,0.000000,0.000066,63709660,31069794,0,0,81534,0,1,1 +1773676552.356683,0.50,4,3992.50,50.28,1718.37,1968.72,0.00,3516265491583.655273,0.000000,75,0,0.000000,0.000020,63709660,31069796,0,0,81536,0,1,1 +1773676557.353479,0.75,4,3992.50,50.23,1720.62,1966.46,0.00,55235.371994,58547.059326,3816798,3221251,0.000000,0.000030,63709660,31069799,0,0,81539,0,1,1 +1773676562.357881,0.70,4,3992.50,50.23,1720.40,1966.68,0.00,0.000000,0.008586,3816798,3221257,0.000000,0.000020,63709660,31069801,0,0,81541,0,1,1 +1773676567.358238,0.85,4,3992.50,50.44,1719.48,1974.77,0.00,3518186229604.951172,3518186226295.613281,75,0,0.000000,0.000030,63709660,31069804,0,0,81544,0,1,1 +1773676572.358343,0.70,4,3992.50,50.44,1719.33,1974.77,0.00,55198.813811,58508.382700,3816798,3221310,0.001566,0.002570,63709686,31069845,0,0,81546,0,1,1 +1773676577.357460,0.65,4,3992.50,50.44,1719.34,1974.76,0.00,9.727889,10.685871,3818301,3221991,0.000238,0.000601,63709696,31069862,0,0,81549,0,1,1 +1773676582.353577,0.65,4,3992.50,50.44,1719.34,1974.76,0.00,3521171933123.691406,3521171929810.574707,11,0,0.000000,0.000020,63709696,31069864,0,0,81551,0,1,1 +1773676587.358082,0.70,4,3992.50,50.44,1719.34,1974.76,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63709696,31069867,0,0,81554,0,1,1 +1773676592.353708,15.21,4,3992.50,51.16,1691.15,2002.93,0.00,0.000000,0.000000,11,0,40.098420,0.021901,63713984,31071329,0,0,81556,0,1,1 +1773676597.356845,0.95,4,3992.50,50.83,1707.59,1989.96,0.00,2.174027,0.000195,258,2,0.000662,0.000448,63713999,31071342,0,0,81559,0,1,1 +1773676602.358156,0.65,4,3992.50,50.56,1717.89,1979.65,0.00,55193.114535,58505.207293,3818301,3222223,0.000000,0.000020,63713999,31071344,0,0,81561,0,1,1 +1773676607.357855,0.60,4,3992.50,50.53,1719.05,1978.49,0.00,3518648744800.968750,3518648741489.803711,205,0,0.000000,0.000030,63713999,31071347,0,0,81564,0,1,1 +1773676612.353472,0.65,4,3992.50,50.53,1719.05,1978.49,0.00,55248.286372,58561.216945,3816798,3221563,0.000000,0.000020,63713999,31071349,0,0,81566,0,1,1 +1773676617.358381,0.55,4,3992.50,50.53,1719.05,1978.49,0.00,3514986546224.527344,3514986542917.927246,11,0,0.000062,0.000080,63714003,31071356,0,0,81569,0,1,1 +1773676622.358109,0.65,4,3992.50,50.53,1719.05,1978.49,0.00,0.053519,0.000000,75,0,0.000031,0.000045,63714005,31071360,0,0,81571,0,1,1 +1773676627.357647,0.85,4,3992.50,50.44,1717.26,1974.88,0.00,3518761822402.539062,0.000000,11,0,0.000008,0.000038,63714006,31071364,0,0,81574,0,1,1 +1773676632.357553,0.85,4,3992.50,50.44,1717.26,1974.87,0.00,2.175432,0.000195,258,2,0.002481,0.001583,63714057,31071403,0,0,81576,0,1,1 +1773676637.353576,0.55,4,3992.50,50.26,1724.42,1967.71,0.00,3521237589981.203125,10.683496,253,669,0.000082,0.000762,63714063,31071416,0,0,81579,0,1,1 +1773676642.355234,0.70,4,3992.50,50.26,1724.43,1967.70,0.00,55189.807166,58490.566558,3818301,3222293,0.000025,0.000051,63714065,31071420,0,0,81581,0,1,1 +1773676647.357472,0.65,4,3992.50,50.26,1724.43,1967.71,0.00,3516862770972.376465,3516862767672.000488,253,669,0.000000,0.000030,63714065,31071423,0,0,81584,0,1,1 +1773676652.356211,0.50,4,3992.50,50.26,1724.18,1967.95,0.00,0.000000,0.000000,253,669,0.000000,0.000020,63714065,31071425,0,0,81586,0,1,1 +1773676657.355807,19.31,4,3992.50,50.67,1708.34,1983.96,0.00,3518721683454.816406,3518721683445.744629,75,0,40.066968,0.024347,63718464,31073084,0,0,81589,0,1,1 +1773676662.355370,0.90,4,3992.50,50.70,1707.39,1984.91,0.00,0.000000,0.000000,75,0,0.003085,0.001421,63718520,31073122,0,0,81591,0,1,1 +1773676667.353504,0.60,4,3992.50,50.70,1707.40,1984.91,0.00,55230.320333,58542.688517,3818301,3222506,0.000000,0.000030,63718520,31073125,0,0,81594,0,1,1 +1773676672.357458,0.70,4,3992.50,50.69,1707.74,1984.57,0.00,3515657126706.606934,3515657123398.091309,75,0,0.000000,0.000020,63718520,31073127,0,0,81596,0,1,1 +1773676677.358200,0.65,4,3992.50,50.69,1707.74,1984.57,0.00,0.000000,0.000000,75,0,0.000081,0.000117,63718526,31073136,0,0,81599,0,1,1 +1773676682.353552,0.65,4,3992.50,50.69,1707.74,1984.56,0.00,55261.072141,58575.304468,3818301,3222533,0.000008,0.000028,63718527,31073139,0,0,81601,0,1,1 +1773676687.356903,0.85,4,3992.50,50.88,1704.61,1991.87,0.00,3516080768463.911133,3516080765154.850098,205,0,0.000000,0.000030,63718527,31073142,0,0,81604,0,1,1 +1773676692.357368,0.75,4,3992.50,50.81,1702.96,1989.34,0.00,3518109962034.192871,0.000000,11,0,0.000000,0.000020,63718527,31073144,0,0,81606,0,1,1 +1773676697.354671,0.60,4,3992.50,50.82,1702.72,1989.59,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63718527,31073147,0,0,81609,0,1,1 +1773676702.357943,0.60,4,3992.50,50.84,1701.75,1990.55,0.00,55163.931213,58472.030802,3816798,3221938,0.000056,0.000720,63718531,31073157,0,0,81611,0,1,1 +1773676707.357783,0.75,4,3992.50,50.81,1703.07,1989.23,0.00,3518550137846.642090,3518550134536.270996,11,0,0.000101,0.000154,63718539,31073168,0,0,81614,0,1,1 +1773676712.358143,0.50,4,3992.50,50.83,1702.05,1990.26,0.00,0.053512,0.000000,75,0,0.000000,0.000020,63718539,31073170,0,0,81616,0,1,1 +1773676717.358311,0.85,4,3992.50,51.02,1698.67,1997.60,0.00,0.000000,0.000000,75,0,0.000000,0.000030,63718539,31073173,0,0,81619,0,1,1 +1773676722.357840,16.72,4,3992.50,50.79,1707.77,1988.51,0.00,55205.190980,58515.893664,3816798,3222017,40.065404,0.020407,63722838,31074569,0,0,81621,0,1,1 +1773676727.356112,0.90,4,3992.50,50.80,1707.32,1988.97,0.00,0.000000,0.108924,3816798,3222127,0.003094,0.001447,63722895,31074610,0,0,81624,0,1,1 +1773676732.354572,0.55,4,3992.50,50.81,1707.08,1989.21,0.00,3519521773156.509277,3519521769854.063477,253,669,0.000000,0.000020,63722895,31074612,0,0,81626,0,1,1 +1773676737.357848,0.70,4,3992.50,50.81,1707.07,1989.21,0.00,3516133339162.943359,3516133339153.751465,205,0,0.000000,0.000030,63722895,31074615,0,0,81629,0,1,1 +1773676742.356448,0.60,4,3992.50,50.64,1713.72,1982.57,0.00,3519422637367.152832,0.000000,75,0,0.000000,0.000020,63722895,31074617,0,0,81631,0,1,1 +1773676747.357207,0.80,4,3992.50,50.53,1714.98,1978.22,0.00,2.121553,0.000195,258,2,0.000000,0.000030,63722895,31074620,0,0,81634,0,1,1 +1773676752.355443,0.70,4,3992.50,50.53,1714.76,1978.44,0.00,3519679157941.198242,3519679157943.320801,75,0,0.000000,0.000020,63722895,31074622,0,0,81636,0,1,1 +1773676757.354369,0.60,4,3992.50,50.53,1714.77,1978.44,0.00,2.122331,0.000195,258,2,0.000000,0.000063,63722895,31074626,0,0,81639,0,1,1 +1773676762.357491,0.70,4,3992.50,50.53,1714.76,1978.44,0.00,0.000000,0.000000,258,2,0.000000,0.000020,63722895,31074628,0,0,81641,0,1,1 +1773676767.358301,0.55,4,3992.50,50.53,1714.76,1978.44,0.00,3517867166649.606445,3517867166651.781250,11,0,0.000056,0.000730,63722899,31074639,0,0,81644,0,1,1 +1773676772.358292,0.70,4,3992.50,50.53,1714.76,1978.44,0.00,1.657718,10.675214,253,669,0.000117,0.000160,63722909,31074651,0,0,81646,0,1,1 +1773676777.353377,0.70,4,3992.50,50.53,1714.77,1978.43,0.00,55262.427897,58568.209338,3818301,3222916,0.000000,0.000030,63722909,31074654,0,0,81649,0,1,1 +1773676782.357402,0.90,4,3992.50,50.73,1713.57,1986.02,0.00,3515607100504.534668,3515607097195.469238,205,0,0.000000,0.000020,63722909,31074656,0,0,81651,0,1,1 +1773676787.353442,15.39,4,3992.50,51.86,1669.34,2030.25,0.00,0.000000,0.000000,205,0,40.094124,0.022462,63727221,31076143,0,0,81654,0,1,1 +1773676792.353558,0.80,4,3992.50,51.15,1696.99,2002.60,0.00,3518355721653.492676,0.000000,11,0,0.003085,0.001416,63727277,31076181,0,0,81656,0,1,1 +1773676797.357944,0.65,4,3992.50,50.79,1711.02,1988.56,0.00,55151.648497,58459.533221,3816798,3222453,0.000000,0.000030,63727277,31076184,0,0,81659,0,1,1 +1773676802.353755,1.00,4,3992.50,50.79,1711.10,1988.49,0.00,3521387351582.328125,3521387348268.711426,75,0,0.000000,0.000020,63727277,31076186,0,0,81661,0,1,1 +1773676807.358138,1.20,4,3992.50,50.85,1705.53,1990.85,0.00,55151.635431,58459.737135,3816798,3222570,0.000000,0.000030,63727277,31076189,0,0,81664,0,1,1 +1773676812.358080,0.65,4,3992.50,50.85,1705.52,1990.85,0.00,3518478204472.073242,3518478201161.086426,11,0,0.000000,0.000020,63727277,31076191,0,0,81666,0,1,1 +1773676817.357783,0.60,4,3992.50,50.86,1705.29,1991.09,0.00,0.053519,0.000000,75,0,0.000000,0.000030,63727277,31076194,0,0,81669,0,1,1 +1773676822.354280,0.75,4,3992.50,50.87,1704.55,1991.82,0.00,0.126847,0.000000,205,0,0.000000,0.000020,63727277,31076196,0,0,81671,0,1,1 +1773676827.357807,0.70,4,3992.50,50.71,1710.99,1985.39,0.00,3515957446990.338379,0.000000,11,0,0.000000,0.000030,63727277,31076199,0,0,81674,0,1,1 +1773676832.357510,0.65,4,3992.50,50.77,1708.54,1987.84,0.00,55213.033861,58525.214984,3818301,3223322,0.000056,0.000720,63727281,31076209,0,0,81676,0,1,1 +1773676837.357813,0.90,4,3992.50,50.75,1705.67,1986.83,0.00,3518224290549.368652,3518224287237.404297,205,0,0.000117,0.000170,63727291,31076222,0,0,81679,0,1,1 +1773676842.356710,0.70,4,3992.50,50.75,1705.51,1986.95,0.00,55212.029567,58524.023405,3816798,3222684,0.000000,0.000020,63727291,31076224,0,0,81681,0,1,1 +1773676847.357772,0.60,4,3992.50,50.71,1706.88,1985.58,0.00,3517690171471.715820,3517690168161.335449,11,0,0.000000,0.000030,63727291,31076227,0,0,81684,0,1,1 +1773676852.357475,14.89,4,3992.50,55.65,1513.71,2178.73,0.00,0.180284,0.000000,205,0,40.066136,0.025072,63731618,31077996,0,0,81686,0,1,1 +1773676857.357542,0.95,4,3992.50,51.53,1674.91,2017.53,0.00,3518390118749.669922,0.000000,11,0,0.003097,0.001549,63731675,31078036,0,0,81689,0,1,1 +1773676862.357790,0.65,4,3992.50,51.08,1692.73,1999.71,0.00,0.180264,0.000000,205,0,0.000000,0.000020,63731675,31078038,0,0,81691,0,1,1 +1773676867.357467,0.80,4,3992.50,51.14,1690.05,2002.39,0.00,1.995246,0.000195,258,2,0.000000,0.000030,63731675,31078041,0,0,81694,0,1,1 +1773676872.357047,0.75,4,3992.50,51.15,1689.69,2002.76,0.00,55202.501949,58516.267771,3816800,3222891,0.001434,0.001776,63731691,31078068,0,0,81696,0,1,1 +1773676877.357531,0.65,4,3992.50,51.15,1689.69,2002.76,0.00,3518096574493.600098,3518096571182.608398,11,0,0.000205,0.000562,63731698,31078082,0,0,81699,0,1,1 +1773676882.357620,0.65,4,3992.50,50.96,1697.18,1995.26,0.00,0.053515,0.000000,75,0,0.000008,0.000028,63731699,31078085,0,0,81701,0,1,1 +1773676887.353462,0.70,4,3992.50,50.96,1697.19,1995.26,0.00,3521365181070.551270,0.000000,11,0,0.000000,0.000030,63731699,31078088,0,0,81704,0,1,1 +1773676892.357396,0.70,4,3992.50,50.97,1696.97,1995.48,0.00,1.656412,10.666803,253,669,0.000000,0.000020,63731699,31078090,0,0,81706,0,1,1 +1773676897.358220,0.85,4,3992.50,50.91,1702.35,1993.36,0.00,55199.006139,58501.809400,3818303,3223661,0.000031,0.000538,63731701,31078098,0,0,81709,0,1,1 +1773676902.358347,0.60,4,3992.50,50.94,1701.12,1994.59,0.00,3518347626503.456543,3518347623191.122070,75,0,0.000126,0.000336,63731711,31078111,0,0,81711,0,1,1 +1773676907.354683,0.55,4,3992.50,50.98,1699.90,1995.80,0.00,0.000000,0.000000,75,0,0.000000,0.000030,63731711,31078114,0,0,81714,0,1,1 +1773676912.358142,0.65,4,3992.50,50.99,1699.16,1996.54,0.00,0.126670,0.000000,205,0,0.000000,0.000020,63731711,31078116,0,0,81716,0,1,1 +1773676917.357181,16.04,4,3992.50,56.15,1497.48,2198.21,0.00,0.000000,0.000000,205,0,36.959158,0.020732,63735700,31079530,0,0,81719,0,1,1 +1773676922.354716,0.90,4,3992.50,51.35,1685.08,2010.62,0.00,1.478170,10.680462,253,669,3.114877,0.003281,63736113,31079687,0,0,81721,0,1,1 +1773676927.357476,0.95,4,3992.50,51.44,1681.69,2014.01,0.00,3516495991972.880371,3516495991963.687500,205,0,0.000000,0.000030,63736113,31079690,0,0,81724,0,1,1 +1773676932.357544,0.90,4,3992.50,51.44,1681.67,2014.03,0.00,0.000000,0.000000,205,0,0.003821,0.003427,63736170,31079733,0,0,81726,0,1,1 +1773676937.354981,0.60,4,3992.50,51.44,1681.67,2014.03,0.00,3520241653072.263672,0.000000,75,0,0.000008,0.000038,63736171,31079737,0,0,81729,0,1,1 +1773676942.358064,0.60,4,3992.50,51.44,1681.67,2014.02,0.00,2.120568,0.000195,258,2,0.000000,0.000020,63736171,31079739,0,0,81731,0,1,1 +1773676947.358019,0.65,4,3992.50,51.44,1681.67,2014.02,0.00,3518468511287.981934,3518468511290.157715,11,0,0.000000,0.000030,63736171,31079742,0,0,81734,0,1,1 +1773676952.353453,0.65,4,3992.50,51.44,1681.67,2014.02,0.00,1.659230,10.684953,253,669,0.000000,0.000020,63736171,31079744,0,0,81736,0,1,1 +1773676957.357785,0.85,4,3992.50,51.44,1681.53,2014.02,0.00,55150.592450,58450.444875,3816800,3223287,0.000000,0.000030,63736171,31079747,0,0,81739,0,1,1 +1773676962.358131,0.65,4,3992.50,51.43,1682.06,2013.40,0.00,3518193836804.868652,3518193833493.187988,205,0,0.000062,0.000553,63736175,31079756,0,0,81741,0,1,1 +1773676967.357821,0.65,4,3992.50,51.41,1682.72,2012.74,0.00,55213.013367,58526.098178,3818303,3223977,0.000076,0.000284,63736181,31079766,0,0,81744,0,1,1 +1773676972.358197,0.65,4,3992.50,51.41,1682.72,2012.73,0.00,3518172048855.220215,3518172045542.590820,205,0,0.000000,0.000020,63736181,31079768,0,0,81746,0,1,1 +1773676977.358269,0.70,4,3992.50,51.22,1690.14,2005.32,0.00,3518386375940.391602,0.000000,75,0,0.000132,0.000179,63736191,31079781,0,0,81749,0,1,1 +1773676982.357925,18.33,4,3992.50,52.88,1624.93,2070.53,0.00,0.000000,0.000000,75,0,40.065799,0.022454,63740535,31081290,0,0,81751,0,1,1 +1773676987.358019,1.10,4,3992.50,52.32,1647.40,2048.35,0.00,55208.670790,58521.560951,3818303,3224163,0.003093,0.001446,63740592,31081331,0,0,81754,0,1,1 +1773676992.357757,0.70,4,3992.50,51.61,1675.08,2020.70,0.00,3518621514664.253418,3518621511360.199219,253,669,0.000000,0.000020,63740592,31081333,0,0,81756,0,1,1 +1773676997.357804,0.65,4,3992.50,51.42,1682.59,2013.19,0.00,3518403784749.268066,3518403784740.250977,11,0,0.000000,0.000030,63740592,31081336,0,0,81759,0,1,1 +1773677002.357495,0.65,4,3992.50,51.30,1687.12,2008.66,0.00,2.175525,0.000195,258,2,0.000000,0.000020,63740592,31081338,0,0,81761,0,1,1 +1773677007.357756,0.70,4,3992.50,51.30,1687.12,2008.66,0.00,3518253904334.408203,3518253904336.530273,75,0,0.000000,0.000030,63740592,31081341,0,0,81764,0,1,1 +1773677012.353894,0.60,4,3992.50,51.28,1687.93,2007.85,0.00,0.126856,0.000000,205,0,0.000000,0.000020,63740592,31081343,0,0,81766,0,1,1 +1773677017.357845,0.95,4,3992.50,51.47,1688.63,2015.30,0.00,55165.992293,58476.563150,3818303,3224256,0.000000,0.000030,63740592,31081346,0,0,81769,0,1,1 +1773677022.353450,0.55,4,3992.50,51.47,1688.67,2015.27,0.00,3521532182793.110352,3521532182792.169434,3816800,3223592,0.000000,0.000020,63740592,31081348,0,0,81771,0,1,1 +1773677027.358127,0.60,4,3992.50,51.50,1687.69,2016.25,0.00,0.000000,0.010927,3816800,3223605,0.000056,0.000729,63740596,31081359,0,0,81774,0,1,1 +1773677032.353440,0.70,4,3992.50,51.31,1694.86,2009.07,0.00,3521738699193.586914,3521738695887.427734,253,669,0.000101,0.000144,63740604,31081369,0,0,81776,0,1,1 +1773677037.353749,0.60,4,3992.50,51.31,1694.87,2009.07,0.00,3518220064339.224609,3518220064330.154297,75,0,0.000008,0.000038,63740605,31081373,0,0,81779,0,1,1 +1773677042.358340,0.60,4,3992.50,51.31,1694.87,2009.07,0.00,1.602727,10.665401,253,669,0.000000,0.000020,63740605,31081375,0,0,81781,0,1,1 +1773677047.356795,17.14,4,3992.50,56.52,1495.30,2212.71,0.00,0.517836,3519524636399.433594,258,2,40.074119,0.020274,63744917,31082761,0,0,81784,0,1,1 +1773677052.357670,0.85,4,3992.50,52.04,1666.64,2037.29,0.00,3517821718130.720215,10.673133,253,669,0.003223,0.001682,63744984,31082820,0,0,81786,0,1,1 +1773677057.357973,0.60,4,3992.50,51.56,1685.22,2018.71,0.00,55204.761546,58508.775337,3818303,3224481,0.000000,0.000030,63744984,31082823,0,0,81789,0,1,1 +1773677062.353456,0.60,4,3992.50,51.34,1693.69,2010.24,0.00,3521618641006.120605,3521618637687.715820,258,2,0.000000,0.000020,63744984,31082825,0,0,81791,0,1,1 +1773677067.353560,0.75,4,3992.50,51.24,1697.69,2006.24,0.00,3518363982578.854004,3518363982580.976074,75,0,0.000000,0.000030,63744984,31082828,0,0,81794,0,1,1 +1773677072.356729,0.60,4,3992.50,51.28,1696.09,2007.84,0.00,0.126678,0.000000,205,0,0.000000,0.000020,63744984,31082830,0,0,81796,0,1,1 +1773677077.353752,0.95,4,3992.50,51.33,1691.72,2009.49,0.00,0.000000,0.000000,205,0,0.000000,0.000030,63744984,31082833,0,0,81799,0,1,1 +1773677082.354667,0.75,4,3992.50,51.29,1693.05,2008.15,0.00,0.000000,0.000000,205,0,0.000000,0.000020,63744984,31082835,0,0,81801,0,1,1 +1773677087.353577,0.55,4,3992.50,51.29,1693.05,2008.15,0.00,3519204253938.367188,0.000000,11,0,0.000000,0.000030,63744984,31082838,0,0,81804,0,1,1 +1773677092.357471,0.85,4,3992.50,51.13,1699.46,2001.74,0.00,0.180133,0.000000,205,0,0.000044,0.000559,63744987,31082847,0,0,81806,0,1,1 +1773677097.353565,0.65,4,3992.50,51.18,1697.54,2003.67,0.00,3521188055359.760254,0.000000,75,0,0.000121,0.000323,63744997,31082860,0,0,81809,0,1,1 +1773677102.353556,0.70,4,3992.50,51.18,1697.57,2003.63,0.00,3518443732781.515625,0.000000,11,0,0.000000,0.000020,63744997,31082862,0,0,81811,0,1,1 +1773677107.354230,1.05,4,3992.50,51.50,1684.81,2016.39,0.00,55192.603492,58504.670084,3816801,3223993,0.000000,0.000030,63744997,31082865,0,0,81814,0,1,1 +1773677112.357425,15.55,4,3992.50,56.46,1490.51,2210.68,0.00,3516189889214.114746,3516189885903.717285,11,0,36.801164,0.023992,63749051,31084501,0,0,81816,0,1,1 +1773677117.353451,0.85,4,3992.50,52.16,1659.13,2042.05,0.00,0.180417,0.000000,205,0,3.246617,0.004712,63749475,31084769,0,0,81819,0,1,1 +1773677122.355757,0.60,4,3992.50,51.72,1676.23,2024.96,0.00,55174.416134,58485.738205,3816801,3224198,0.000000,0.000020,63749475,31084771,0,0,81821,0,1,1 +1773677127.353806,0.70,4,3992.50,51.60,1680.91,2020.28,0.00,3519810287290.890137,3519810283985.949219,253,669,0.000000,0.000030,63749475,31084774,0,0,81824,0,1,1 +1773677132.358331,0.60,4,3992.50,51.60,1680.91,2020.28,0.00,0.000000,0.000000,253,669,0.000000,0.000020,63749475,31084776,0,0,81826,0,1,1 +1773677137.353842,0.85,4,3992.50,51.69,1671.54,2023.71,0.00,3521598450614.541504,3521598450605.516113,11,0,0.000000,0.000030,63749475,31084779,0,0,81829,0,1,1 +1773677142.353565,0.70,4,3992.50,51.69,1671.34,2023.93,0.00,55203.106455,58516.106268,3816801,3224310,0.000000,0.000020,63749475,31084781,0,0,81831,0,1,1 +1773677147.354207,0.60,4,3992.50,51.70,1671.10,2024.16,0.00,3517985191793.248047,3517985188480.804199,75,0,0.000000,0.000030,63749475,31084784,0,0,81834,0,1,1 +1773677152.357277,0.60,4,3992.50,51.70,1671.11,2024.15,0.00,0.126680,0.000000,205,0,0.000000,0.000020,63749475,31084786,0,0,81836,0,1,1 +1773677157.358081,0.65,4,3992.50,51.70,1671.11,2024.15,0.00,3517871235465.727051,0.000000,11,0,0.000031,0.000055,63749477,31084791,0,0,81839,0,1,1 +1773677162.353528,0.70,4,3992.50,51.70,1671.11,2024.15,0.00,0.180438,0.000000,205,0,0.000134,0.000828,63749488,31084808,0,0,81841,0,1,1 +1773677167.355611,0.80,4,3992.50,51.52,1690.86,2016.96,0.00,55186.606075,58499.245395,3818304,3225036,0.000000,0.000030,63749488,31084811,0,0,81844,0,1,1 +1773677172.358148,0.70,4,3992.50,51.31,1698.75,2009.08,0.00,3516652963617.394043,3516652960314.249023,253,669,0.000512,0.001106,63749502,31084835,0,0,81846,0,1,1 +1773677177.354591,17.17,4,3992.50,56.36,1501.11,2206.73,0.00,55247.411463,58554.620911,3818304,3225088,28.665990,0.018714,63752634,31086094,0,0,81849,0,1,1 +1773677182.353569,1.05,4,3992.50,52.54,1650.89,2056.94,0.00,3519156600900.770020,3519156597595.237793,253,669,11.421124,0.005056,63753813,31086392,0,0,81851,0,1,1 +1773677187.355278,0.60,4,3992.50,51.83,1678.42,2029.40,0.00,3517234716979.986816,3517234716970.972656,11,0,0.000000,0.000030,63753813,31086395,0,0,81854,0,1,1 +1773677192.357999,0.70,4,3992.50,51.52,1690.61,2017.21,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63753813,31086397,0,0,81856,0,1,1 +1773677197.358141,0.80,4,3992.50,51.64,1683.12,2021.75,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63753813,31086400,0,0,81859,0,1,1 +1773677202.355638,0.55,4,3992.50,51.64,1683.20,2021.67,0.00,55237.423316,58553.185222,3818304,3225276,0.000000,0.000020,63753813,31086402,0,0,81861,0,1,1 +1773677207.357451,0.70,4,3992.50,51.64,1683.23,2021.64,0.00,3517162000962.523438,3517161997649.622559,11,0,0.000000,0.000030,63753813,31086405,0,0,81864,0,1,1 +1773677212.357916,0.75,4,3992.50,51.64,1683.12,2021.76,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63753813,31086407,0,0,81866,0,1,1 +1773677217.358123,0.60,4,3992.50,51.64,1683.12,2021.75,0.00,0.053513,0.000000,75,0,0.000062,0.000080,63753817,31086414,0,0,81869,0,1,1 +1773677222.358261,0.60,4,3992.50,51.64,1683.12,2021.75,0.00,55198.468979,58511.618285,3816801,3224630,0.000070,0.000078,63753822,31086421,0,0,81871,0,1,1 +1773677227.354347,0.90,4,3992.50,51.43,1684.48,2013.62,0.00,3521192991435.968262,3521192988118.009277,258,2,0.000126,0.000830,63753832,31086438,0,0,81874,0,1,1 +1773677232.353882,0.90,4,3992.50,51.43,1684.49,2013.62,0.00,3518765040959.895996,3518765040962.018066,75,0,0.002482,0.001599,63753883,31086479,0,0,81876,0,1,1 +1773677237.357894,0.65,4,3992.50,51.43,1684.50,2013.62,0.00,0.000000,0.000000,75,0,0.000000,0.000030,63753883,31086482,0,0,81879,0,1,1 +1773677242.357415,16.42,4,3992.50,56.56,1483.54,2214.56,0.00,2.122078,0.000195,258,2,18.433666,0.014699,63755998,31087454,0,0,81881,0,1,1 +1773677247.358185,2.71,4,3992.50,52.10,1658.23,2039.87,0.00,3517895437504.908691,3517895437507.083984,11,0,21.629580,0.006256,63758237,31087847,0,0,81884,0,1,1 +1773677252.358013,0.60,4,3992.50,51.73,1672.74,2025.37,0.00,0.053517,0.000000,75,0,0.000000,0.000020,63758237,31087849,0,0,81886,0,1,1 +1773677257.357800,0.95,4,3992.50,51.97,1665.40,2034.84,0.00,3518586886050.692383,0.000000,11,0,0.000000,0.000030,63758237,31087852,0,0,81889,0,1,1 +1773677262.358378,0.65,4,3992.50,51.85,1668.19,2030.00,0.00,1.657523,10.673962,253,669,0.000000,0.000020,63758237,31087854,0,0,81891,0,1,1 +1773677267.358359,0.55,4,3992.50,51.85,1668.05,2030.14,0.00,55208.320423,58513.743036,3818304,3225577,0.000000,0.000030,63758237,31087857,0,0,81894,0,1,1 +1773677272.358226,0.75,4,3992.50,51.85,1668.31,2029.88,0.00,0.000000,0.013282,3818304,3225583,0.000000,0.000020,63758237,31087859,0,0,81896,0,1,1 +1773677277.357546,0.70,4,3992.50,51.84,1668.56,2029.64,0.00,3518915648081.823242,3518915644766.751465,205,0,0.000081,0.000117,63758243,31087868,0,0,81899,0,1,1 +1773677282.355945,0.60,4,3992.50,51.84,1668.56,2029.64,0.00,1.477915,10.678615,253,669,0.000016,0.000036,63758245,31087872,0,0,81901,0,1,1 +1773677287.357654,0.90,4,3992.50,51.94,1663.92,2033.53,0.00,0.517499,3517234976454.199707,258,2,0.000031,0.000055,63758247,31087877,0,0,81904,0,1,1 +1773677292.355757,0.70,4,3992.50,51.85,1666.98,2029.87,0.00,3519772590891.282227,3519772590893.458496,11,0,0.000126,0.000820,63758257,31087893,0,0,81906,0,1,1 +1773677297.353561,0.65,4,3992.50,51.85,1666.98,2029.87,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63758257,31087896,0,0,81909,0,1,1 +1773677302.353582,0.75,4,3992.50,51.83,1667.70,2029.15,0.00,55209.535517,58524.029540,3818304,3225640,0.000000,0.000020,63758257,31087898,0,0,81911,0,1,1 +1773677307.357563,14.27,4,3992.50,56.81,1472.72,2224.12,0.00,3515638171312.064941,3515638168000.193848,11,0,11.615087,0.015305,63759796,31088880,0,0,81914,0,1,1 +1773677312.358365,4.06,4,3992.50,51.62,1675.75,2021.09,0.00,2.175042,0.000195,258,2,28.438827,0.008682,63762777,31089455,0,0,81916,0,1,1 +1773677317.356453,0.90,4,3992.50,51.91,1666.46,2032.54,0.00,55218.978535,58536.164554,3816801,3225153,0.000000,0.000030,63762777,31089458,0,0,81919,0,1,1 +1773677322.354664,0.75,4,3992.50,51.62,1675.78,2021.07,0.00,3519696587004.760254,3519696583687.655273,258,2,0.000000,0.000020,63762777,31089460,0,0,81921,0,1,1 +1773677327.357805,0.65,4,3992.50,51.42,1683.65,2013.19,0.00,3516228305822.016602,10.668298,253,669,0.000000,0.000030,63762777,31089463,0,0,81924,0,1,1 +1773677332.354580,0.60,4,3992.50,51.43,1683.16,2013.68,0.00,3520708021898.940918,3520708021889.864258,75,0,0.000000,0.000020,63762777,31089465,0,0,81926,0,1,1 +1773677337.358348,0.65,4,3992.50,51.43,1683.17,2013.68,0.00,55168.145005,58480.462020,3818304,3225887,0.000000,0.000030,63762777,31089468,0,0,81929,0,1,1 +1773677342.355941,0.70,4,3992.50,51.45,1682.43,2014.41,0.00,3520131991625.097168,3520131988317.762695,253,669,0.000000,0.000020,63762777,31089470,0,0,81931,0,1,1 +1773677347.358023,0.90,4,3992.50,51.50,1684.58,2016.39,0.00,55175.402945,58478.861853,3816801,3225239,0.000000,0.000030,63762777,31089473,0,0,81934,0,1,1 +1773677352.358663,0.70,4,3992.50,51.51,1681.85,2016.88,0.00,9.724927,10.688866,3818304,3225927,0.000031,0.000045,63762779,31089477,0,0,81936,0,1,1 +1773677357.357590,0.70,4,3992.50,51.49,1682.74,2015.99,0.00,3519192433603.631348,3519192430288.103516,11,0,0.000142,0.000845,63762791,31089496,0,0,81939,0,1,1 +1773677362.357570,0.65,4,3992.50,51.50,1682.49,2016.23,0.00,55209.993979,58524.832519,3818304,3225938,0.000000,0.000020,63762791,31089498,0,0,81941,0,1,1 +1773677367.353449,0.60,4,3992.50,51.34,1688.70,2010.03,0.00,3521339373272.556641,3521339369964.022461,253,669,0.000000,0.000030,63762791,31089501,0,0,81944,0,1,1 +1773677372.354567,11.59,4,3992.50,56.63,1481.46,2217.27,0.00,0.000000,0.000000,253,669,6.013644,0.009898,63763705,31090121,0,0,81946,0,1,1 +1773677377.358248,5.57,4,3992.50,53.09,1620.36,2078.76,0.00,0.517295,3515848639997.216797,258,2,34.025161,0.011890,63767189,31090934,0,0,81949,0,1,1 +1773677382.353470,0.75,4,3992.50,52.36,1649.28,2049.84,0.00,3521802888839.080566,3521802888841.257812,11,0,0.000000,0.000020,63767189,31090936,0,0,81951,0,1,1 +1773677387.357965,0.70,4,3992.50,51.76,1672.44,2026.68,0.00,55150.458218,58461.582070,3816801,3225494,0.000000,0.000030,63767189,31090939,0,0,81954,0,1,1 +1773677392.353473,0.65,4,3992.50,51.79,1671.50,2027.62,0.00,3521601010742.263184,3521601007425.182129,11,0,0.000000,0.000020,63767189,31090941,0,0,81956,0,1,1 +1773677397.358140,0.65,4,3992.50,51.77,1672.13,2026.98,0.00,55158.286988,58470.255169,3818304,3226176,0.000000,0.000030,63767189,31090944,0,0,81959,0,1,1 +1773677402.353456,0.65,4,3992.50,51.78,1671.90,2027.22,0.00,3521736174548.134277,3521736171229.786621,205,0,0.000000,0.000020,63767189,31090946,0,0,81961,0,1,1 +1773677407.357782,1.20,4,3992.50,52.10,1659.43,2039.69,0.00,55161.857401,58474.343301,3818304,3226254,0.000000,0.000030,63767189,31090949,0,0,81964,0,1,1 +1773677412.358266,0.65,4,3992.50,51.90,1666.96,2032.16,0.00,3518096504128.802734,3518096500813.897949,75,0,0.000000,0.000020,63767189,31090951,0,0,81966,0,1,1 +1773677417.353707,0.60,4,3992.50,51.88,1667.79,2031.32,0.00,55250.376748,58567.697045,3816801,3225605,0.000031,0.000055,63767191,31090956,0,0,81969,0,1,1 +1773677422.357506,0.65,4,3992.50,51.89,1667.55,2031.57,0.00,3515765717384.784668,3515765714073.060059,11,0,0.000142,0.000835,63767203,31090974,0,0,81971,0,1,1 +1773677427.358047,0.60,4,3992.50,51.89,1667.55,2031.57,0.00,55194.065552,58507.956704,3816801,3225616,0.000000,0.000030,63767203,31090977,0,0,81974,0,1,1 +1773677432.355998,0.55,4,3992.50,51.90,1667.30,2031.81,0.00,3519879830637.894043,3519879827322.285156,11,0,0.000000,0.000020,63767203,31090979,0,0,81976,0,1,1 +1773677437.357550,7.67,4,3992.50,56.93,1476.55,2228.75,0.00,1.657200,10.671882,253,669,1.207665,0.006248,63767544,31091238,0,0,81979,0,1,1 +1773677442.353560,8.30,4,3992.50,52.97,1631.32,2074.06,0.00,3521246949855.893066,3521246949846.687988,205,0,38.891222,0.019853,63771727,31092678,0,0,81981,0,1,1 +1773677447.357585,0.75,4,3992.50,52.31,1657.16,2048.21,0.00,3515607119839.231934,0.000000,75,0,0.000000,0.000030,63771727,31092681,0,0,81984,0,1,1 +1773677452.353438,0.65,4,3992.50,51.93,1672.09,2033.29,0.00,55245.808715,58563.072009,3816801,3225820,0.000000,0.000020,63771727,31092683,0,0,81986,0,1,1 +1773677457.354018,0.55,4,3992.50,51.96,1670.96,2034.42,0.00,0.000000,0.006249,3816801,3225827,0.000000,0.000030,63771727,31092686,0,0,81989,0,1,1 +1773677462.356166,0.60,4,3992.50,51.96,1670.96,2034.41,0.00,3516926518390.494629,3516926515075.278809,258,2,0.000000,0.000020,63771727,31092688,0,0,81991,0,1,1 +1773677467.357907,0.95,4,3992.50,51.87,1668.60,2030.68,0.00,55188.379817,58504.880779,3818304,3226534,0.000000,0.000030,63771727,31092691,0,0,81994,0,1,1 +1773677472.354890,0.75,4,3992.50,51.86,1668.92,2030.36,0.00,3520561607709.174316,3520561604389.515625,258,2,0.001435,0.001777,63771743,31092718,0,0,81996,0,1,1 +1773677477.353572,0.65,4,3992.50,51.74,1673.52,2025.76,0.00,3519364779701.091797,3519364779703.268066,11,0,0.000213,0.000570,63771751,31092733,0,0,81999,0,1,1 +1773677482.353481,0.70,4,3992.50,51.76,1672.83,2026.45,0.00,2.175430,0.000195,258,2,0.000031,0.000045,63771753,31092737,0,0,82001,0,1,1 +1773677487.353447,0.55,4,3992.50,51.75,1673.25,2026.03,0.00,3518460862791.371094,10.675072,253,669,0.000126,0.000829,63771763,31092754,0,0,82004,0,1,1 +1773677492.357981,0.60,4,3992.50,51.75,1673.00,2026.28,0.00,3515249815168.015625,3515249815158.826172,205,0,0.000000,0.000020,63771763,31092756,0,0,82006,0,1,1 +1773677497.358059,0.80,4,3992.50,51.92,1669.25,2032.92,0.00,3518382407965.985840,0.000000,11,0,0.000000,0.000030,63771763,31092759,0,0,82009,0,1,1 +1773677502.364547,2.05,4,3992.50,55.38,1533.86,2168.38,0.00,1.655567,10.661361,253,669,0.003774,0.002696,63771823,31092807,0,0,82011,0,1,1 +1773677507.355167,16.62,4,3992.50,52.81,1634.78,2067.46,0.00,55302.146702,58614.115867,3816803,3226123,40.137883,0.018757,63776254,31094162,0,0,82014,0,1,1 +1773677512.354399,0.65,4,3992.50,52.06,1663.80,2038.45,0.00,0.000000,0.004005,3816803,3226130,0.000000,0.000020,63776254,31094164,0,0,82016,0,1,1 +1773677517.357871,0.70,4,3992.50,51.83,1672.99,2029.26,0.00,3515995843065.476074,3515995839752.998047,11,0,0.000062,0.000080,63776258,31094171,0,0,82019,0,1,1 +1773677522.358098,0.60,4,3992.50,51.83,1673.16,2029.09,0.00,0.180265,0.000000,205,0,0.000031,0.000045,63776260,31094175,0,0,82021,0,1,1 +1773677527.353993,0.75,4,3992.50,51.99,1666.82,2035.71,0.00,0.000000,0.000000,205,0,0.000008,0.000038,63776261,31094179,0,0,82024,0,1,1 +1773677532.353564,0.70,4,3992.50,51.83,1673.12,2029.18,0.00,55214.350114,58530.635745,3818306,3226855,0.003821,0.003427,63776318,31094222,0,0,82026,0,1,1 +1773677537.357692,0.50,4,3992.50,51.83,1673.12,2029.18,0.00,3515534276479.213867,3515534273163.955078,258,2,0.000000,0.000030,63776318,31094225,0,0,82029,0,1,1 +1773677542.354667,0.55,4,3992.50,51.83,1672.90,2029.39,0.00,3520567182303.375977,3520567182305.372559,205,0,0.000000,0.000020,63776318,31094227,0,0,82031,0,1,1 +1773677547.357600,0.65,4,3992.50,51.64,1680.30,2022.00,0.00,1.476575,10.668938,253,669,0.000031,0.000042,63776320,31094231,0,0,82034,0,1,1 +1773677552.358346,0.60,4,3992.50,51.68,1678.85,2023.45,0.00,0.517599,3517912466495.285156,258,2,0.000076,0.000770,63776326,31094244,0,0,82036,0,1,1 +1773677557.354873,0.55,4,3992.50,51.68,1678.85,2023.44,0.00,3520882517420.975098,10.682419,253,669,0.000000,0.000030,63776326,31094247,0,0,82039,0,1,1 +1773677562.356712,0.80,4,3992.50,51.81,1676.80,2028.50,0.00,55187.843991,58493.520191,3818306,3226933,0.000000,0.000020,63776326,31094249,0,0,82041,0,1,1 +1773677567.357912,0.75,4,3992.50,51.68,1682.06,2023.21,0.00,0.000000,0.017964,3818306,3226956,0.002221,0.000734,63776349,31094268,0,0,82044,0,1,1 +1773677572.356936,11.61,4,3992.50,52.00,1669.21,2036.07,0.00,0.000000,0.098554,3818306,3227080,40.071847,0.021632,63780812,31095754,0,0,82046,0,1,1 +1773677577.358262,0.60,4,3992.50,52.00,1669.21,2036.08,0.00,0.000000,0.019526,3818306,3227090,0.000081,0.000117,63780818,31095763,0,0,82049,0,1,1 +1773677582.353573,0.65,4,3992.50,52.00,1669.21,2036.07,0.00,3521739630500.518555,3521739627190.387207,253,669,0.000000,0.000020,63780818,31095765,0,0,82051,0,1,1 +1773677587.357581,0.95,4,3992.50,52.44,1652.07,2053.21,0.00,3515619276906.547852,3515619276897.357422,205,0,0.000000,0.000030,63780818,31095768,0,0,82054,0,1,1 +1773677592.357805,0.65,4,3992.50,52.17,1662.83,2042.43,0.00,1.995027,0.000195,258,2,0.000000,0.000020,63780818,31095770,0,0,82056,0,1,1 +1773677597.354569,0.75,4,3992.50,52.17,1662.83,2042.43,0.00,3520716239623.058594,10.681915,253,669,0.000000,0.000030,63780818,31095773,0,0,82059,0,1,1 +1773677602.357570,0.60,4,3992.50,52.17,1662.84,2042.42,0.00,55175.013224,58480.183709,3818306,3227178,0.000000,0.000020,63780818,31095775,0,0,82061,0,1,1 +1773677607.357491,0.70,4,3992.50,51.98,1669.98,2035.28,0.00,3518493322902.471680,3518493319595.264648,253,669,0.000000,0.000030,63780818,31095778,0,0,82064,0,1,1 +1773677612.355115,0.60,4,3992.50,51.99,1669.77,2035.49,0.00,0.000000,0.000000,253,669,0.000000,0.000020,63780818,31095780,0,0,82066,0,1,1 +1773677617.355219,0.85,4,3992.50,52.30,1657.27,2047.51,0.00,0.000000,0.000000,253,669,0.000157,0.000854,63780830,31095799,0,0,82069,0,1,1 +1773677622.353462,0.65,4,3992.50,52.30,1657.27,2047.51,0.00,55227.545510,58535.911312,3818306,3227215,0.000016,0.000036,63780832,31095803,0,0,82071,0,1,1 +1773677627.357740,0.70,4,3992.50,52.03,1667.81,2036.97,0.00,3515428797715.708984,3515428797714.770020,3816803,3226553,0.000000,0.000030,63780832,31095806,0,0,82074,0,1,1 +1773677632.358189,0.90,4,3992.50,52.04,1667.34,2037.44,0.00,3518121369220.085449,3518121365904.921875,205,0,0.002221,0.000725,63780855,31095824,0,0,82076,0,1,1 +1773677637.357773,17.26,4,3992.50,52.83,1636.20,2068.59,0.00,55204.485846,58520.254302,3816803,3226622,40.066828,0.022428,63785196,31097296,0,0,82079,0,1,1 +1773677642.357898,0.60,4,3992.50,52.42,1652.36,2052.44,0.00,9.725928,10.772972,3818306,3227382,0.000000,0.000020,63785196,31097298,0,0,82081,0,1,1 +1773677647.357445,0.95,4,3992.50,52.23,1668.12,2045.08,0.00,3518755756600.041992,3518755753292.400879,253,669,0.000000,0.000030,63785196,31097301,0,0,82084,0,1,1 +1773677652.357808,0.60,4,3992.50,52.14,1671.20,2041.33,0.00,3518182090018.247070,3518182090009.177246,75,0,0.000000,0.000020,63785196,31097303,0,0,82086,0,1,1 +1773677657.354421,0.60,4,3992.50,52.14,1671.17,2041.36,0.00,55237.425893,58555.252585,3816803,3226789,0.000000,0.000030,63785196,31097306,0,0,82089,0,1,1 +1773677662.354611,0.65,4,3992.50,52.14,1671.14,2041.39,0.00,3518303720607.388184,3518303717291.807617,205,0,0.000000,0.000020,63785196,31097308,0,0,82091,0,1,1 +1773677667.357552,0.65,4,3992.50,52.14,1671.14,2041.39,0.00,1.476573,10.668919,253,669,0.000000,0.000030,63785196,31097311,0,0,82094,0,1,1 +1773677672.354945,0.60,4,3992.50,52.14,1671.14,2041.39,0.00,3520272857979.607422,3520272857970.532227,75,0,0.000000,0.000020,63785196,31097313,0,0,82096,0,1,1 +1773677677.354884,0.90,4,3992.50,52.23,1667.46,2045.08,0.00,55200.693668,58516.368733,3816803,3226826,0.000000,0.000030,63785196,31097316,0,0,82099,0,1,1 +1773677682.353435,0.55,4,3992.50,52.24,1667.12,2045.28,0.00,3519456409376.027344,3519456406059.485840,11,0,0.000157,0.000845,63785208,31097334,0,0,82101,0,1,1 +1773677687.353621,0.70,4,3992.50,52.24,1667.13,2045.28,0.00,0.000000,0.000000,11,0,0.000016,0.000046,63785210,31097339,0,0,82104,0,1,1 +1773677692.354573,0.60,4,3992.50,52.24,1667.14,2045.28,0.00,1.657399,10.673162,253,669,0.000000,0.000020,63785210,31097341,0,0,82106,0,1,1 +1773677697.357958,0.95,4,3992.50,52.23,1667.37,2045.05,0.00,0.000000,0.000000,253,669,0.002207,0.000418,63785232,31097359,0,0,82109,0,1,1 +1773677702.357451,15.79,4,3992.50,52.99,1637.64,2074.71,0.00,3518794124392.186035,3518794124383.114258,75,0,40.066598,0.026243,63789602,31099152,0,0,82111,0,1,1 +1773677707.357263,1.25,4,3992.50,52.48,1668.65,2054.86,0.00,55202.154726,58518.132251,3816806,3227077,0.000176,0.000191,63789605,31099157,0,0,82114,0,1,1 +1773677712.358038,0.65,4,3992.50,52.24,1678.36,2045.16,0.00,0.000000,0.050773,3816806,3227134,0.000000,0.000020,63789605,31099159,0,0,82116,0,1,1 +1773677717.355391,0.65,4,3992.50,52.25,1677.86,2045.65,0.00,9.731324,10.685736,3818309,3227811,0.000000,0.000030,63789605,31099162,0,0,82119,0,1,1 +1773677722.354660,0.70,4,3992.50,52.25,1677.87,2045.64,0.00,3518951359737.054199,3518951356419.712891,75,0,0.000000,0.000020,63789605,31099164,0,0,82121,0,1,1 +1773677727.355333,0.70,4,3992.50,52.25,1677.87,2045.64,0.00,2.121590,0.000195,258,2,0.000000,0.000030,63789605,31099167,0,0,82124,0,1,1 +1773677732.357755,0.55,4,3992.50,52.25,1677.87,2045.64,0.00,3516733584267.210449,3516733584269.384766,11,0,0.000000,0.000020,63789605,31099169,0,0,82126,0,1,1 +1773677737.358042,0.85,4,3992.50,52.58,1664.86,2058.64,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63789605,31099172,0,0,82129,0,1,1 +1773677742.357569,0.75,4,3992.50,52.38,1672.59,2050.89,0.00,2.175596,0.000195,258,2,0.000000,0.000020,63789605,31099174,0,0,82131,0,1,1 +1773677747.357677,0.65,4,3992.50,52.39,1672.36,2051.14,0.00,55206.479171,58525.467233,3818309,3227864,0.000163,0.000848,63789617,31099193,0,0,82134,0,1,1 +1773677752.355426,0.60,4,3992.50,52.39,1672.36,2051.14,0.00,3520021839633.161621,3520021839632.216309,3816806,3227198,0.000033,0.000059,63789620,31099198,0,0,82136,0,1,1 +1773677757.354322,0.70,4,3992.50,52.39,1672.36,2051.14,0.00,0.000000,0.007033,3816806,3227205,0.000000,0.000030,63789620,31099201,0,0,82139,0,1,1 +1773677762.358221,0.65,4,3992.50,52.39,1672.36,2051.14,0.00,3515695662721.938965,3515695659408.521973,75,0,0.000000,0.000020,63789620,31099203,0,0,82141,0,1,1 +1773677767.358283,18.04,4,3992.50,52.07,1674.89,2038.73,0.00,1.604180,10.675064,253,669,40.062242,0.020460,63793907,31100513,0,0,82144,0,1,1 +1773677772.358222,0.85,4,3992.50,52.06,1675.49,2038.07,0.00,55208.859222,58516.952280,3818309,3228051,0.003660,0.002800,63793965,31100567,0,0,82146,0,1,1 +1773677777.353350,0.60,4,3992.50,52.06,1675.49,2038.07,0.00,3521869505710.368652,3521869502399.088867,253,669,0.000205,0.000562,63793972,31100581,0,0,82149,0,1,1 +1773677782.357841,0.50,4,3992.50,52.06,1675.49,2038.07,0.00,55148.922100,58453.079114,3816806,3227407,0.000008,0.000028,63793973,31100584,0,0,82151,0,1,1 +1773677787.353554,0.75,4,3992.50,52.06,1675.38,2038.18,0.00,3521456785271.337402,3521456781950.170898,258,2,0.000000,0.000030,63793973,31100587,0,0,82154,0,1,1 +1773677792.358368,0.70,4,3992.50,52.06,1675.38,2038.18,0.00,55144.851779,58460.140164,3816806,3227466,0.000000,0.000020,63793973,31100589,0,0,82156,0,1,1 +1773677797.355137,0.90,4,3992.50,51.96,1674.75,2034.51,0.00,0.000000,0.063322,3816806,3227497,0.000000,0.000030,63793973,31100592,0,0,82159,0,1,1 +1773677802.357711,0.70,4,3992.50,51.95,1675.39,2033.90,0.00,0.000000,0.028111,3816806,3227527,0.000000,0.000020,63793973,31100594,0,0,82161,0,1,1 +1773677807.358279,0.60,4,3992.50,51.95,1675.39,2033.90,0.00,3518037674876.287109,3518037671560.212891,75,0,0.000000,0.000030,63793973,31100597,0,0,82164,0,1,1 +1773677812.354650,0.70,4,3992.50,51.95,1675.39,2033.89,0.00,55240.168158,58559.040032,3816806,3227536,0.000056,0.000721,63793977,31100607,0,0,82166,0,1,1 +1773677817.356689,0.65,4,3992.50,51.95,1675.39,2033.89,0.00,3517002377088.532227,3517002373773.475098,11,0,0.000171,0.000212,63793990,31100623,0,0,82169,0,1,1 +1773677822.358244,0.75,4,3992.50,51.95,1675.31,2033.97,0.00,0.053499,0.000000,75,0,0.000031,0.000045,63793992,31100627,0,0,82171,0,1,1 +1773677827.357492,0.85,4,3992.50,52.06,1671.00,2038.23,0.00,55218.115754,58536.102426,3818310,3228278,0.000000,0.000030,63793992,31100630,0,0,82174,0,1,1 +1773677832.357655,15.72,4,3992.50,53.43,1617.20,2092.02,0.00,3518322705764.679199,3518322705763.763672,3816807,3227669,40.067209,0.025005,63798475,31102229,0,0,82176,0,1,1 +1773677837.358188,0.60,4,3992.50,52.69,1646.43,2062.80,0.00,3518062230274.774414,3518062226967.625000,253,669,0.000000,0.000030,63798475,31102232,0,0,82179,0,1,1 +1773677842.354717,0.65,4,3992.50,52.29,1662.07,2047.16,0.00,3520881490721.909668,3520881490712.886230,11,0,0.000000,0.000020,63798475,31102234,0,0,82181,0,1,1 +1773677847.356759,0.60,4,3992.50,52.20,1665.31,2043.91,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63798475,31102237,0,0,82184,0,1,1 +1773677852.357815,0.70,4,3992.50,52.21,1665.24,2043.99,0.00,55198.218966,58515.112200,3818310,3228454,0.000000,0.000020,63798475,31102239,0,0,82186,0,1,1 +1773677857.357693,0.95,4,3992.50,52.17,1671.36,2042.56,0.00,3518522443361.244629,3518522440043.390625,205,0,0.000000,0.000030,63798475,31102242,0,0,82189,0,1,1 +1773677862.357086,0.60,4,3992.50,52.17,1671.37,2042.56,0.00,55216.394408,58534.677207,3818310,3228525,0.000000,0.000020,63798475,31102244,0,0,82191,0,1,1 +1773677867.353450,0.70,4,3992.50,51.97,1679.01,2034.92,0.00,3520997529418.191895,3520997526098.077637,11,0,0.000000,0.000030,63798475,31102247,0,0,82194,0,1,1 +1773677872.355247,0.70,4,3992.50,52.01,1677.53,2036.39,0.00,0.053496,0.000000,75,0,0.000000,0.000020,63798475,31102249,0,0,82196,0,1,1 +1773677877.358084,0.75,4,3992.50,52.01,1677.53,2036.39,0.00,0.000000,0.000000,75,0,0.000238,0.000941,63798493,31102274,0,0,82199,0,1,1 +1773677882.357545,0.60,4,3992.50,52.01,1677.54,2036.39,0.00,0.126771,0.000000,205,0,0.000016,0.000036,63798495,31102278,0,0,82201,0,1,1 +1773677887.357622,1.00,4,3992.50,52.60,1654.80,2059.48,0.00,1.995087,0.000195,258,2,0.000000,0.000030,63798495,31102281,0,0,82204,0,1,1 +1773677892.355454,0.70,4,3992.50,52.40,1662.30,2051.68,0.00,0.000000,0.000000,258,2,0.000000,0.000020,63798495,31102283,0,0,82206,0,1,1 +1773677897.357931,16.14,4,3992.50,52.08,1674.73,2039.23,0.00,3516694946770.505859,3516694946772.500488,205,0,40.044520,0.029841,63802847,31104369,0,0,82209,0,1,1 +1773677902.357798,0.80,4,3992.50,52.09,1674.54,2039.44,0.00,55201.429679,58518.634180,3816807,3228051,0.000619,0.000273,63802859,31104378,0,0,82211,0,1,1 +1773677907.355741,0.70,4,3992.50,51.89,1682.18,2031.80,0.00,3519885600689.460938,3519885597368.983398,258,2,0.000000,0.000030,63802859,31104381,0,0,82214,0,1,1 +1773677912.353555,0.65,4,3992.50,51.90,1681.93,2032.04,0.00,0.000000,0.000000,258,2,0.000000,0.000020,63802859,31104383,0,0,82216,0,1,1 +1773677917.357661,0.85,4,3992.50,52.11,1676.82,2040.08,0.00,0.000000,0.000000,258,2,0.000000,0.000030,63802859,31104386,0,0,82219,0,1,1 +1773677922.355554,0.60,4,3992.50,52.13,1675.88,2041.03,0.00,3519920770303.678223,3519920770305.801270,75,0,0.000000,0.000020,63802859,31104388,0,0,82221,0,1,1 +1773677927.357826,0.65,4,3992.50,51.97,1682.35,2034.56,0.00,3516838970159.272461,0.000000,11,0,0.000000,0.000030,63802859,31104391,0,0,82224,0,1,1 +1773677932.358018,0.65,4,3992.50,51.97,1682.10,2034.80,0.00,2.175307,0.000195,258,2,0.000000,0.000020,63802859,31104393,0,0,82226,0,1,1 +1773677937.356545,0.75,4,3992.50,51.99,1681.40,2035.51,0.00,55214.235664,58534.473435,3816807,3228154,0.000000,0.000030,63802859,31104396,0,0,82229,0,1,1 +1773677942.356888,0.65,4,3992.50,51.99,1681.40,2035.51,0.00,3518195644330.672852,3518195641011.641602,258,2,0.000132,0.000813,63802869,31104412,0,0,82231,0,1,1 +1773677947.353468,0.85,4,3992.50,52.10,1671.43,2039.88,0.00,55245.482607,58568.003059,3818310,3228852,0.000041,0.000077,63802873,31104419,0,0,82234,0,1,1 +1773677952.356950,0.75,4,3992.50,52.10,1671.46,2039.88,0.00,3515988603741.513184,3515988600423.576172,258,2,0.000000,0.000020,63802873,31104421,0,0,82236,0,1,1 +1773677957.353478,0.70,4,3992.50,52.10,1671.46,2039.88,0.00,3520882289107.757812,3520882289109.754883,205,0,0.000000,0.000030,63802873,31104424,0,0,82239,0,1,1 +1773677962.353503,14.86,4,3992.50,53.53,1615.70,2095.64,0.00,0.000000,0.000000,205,0,40.064861,0.022330,63807232,31105880,0,0,82241,0,1,1 +1773677967.356676,0.70,4,3992.50,52.67,1649.23,2062.12,0.00,3516205667240.574707,0.000000,11,0,0.000855,0.000598,63807250,31105896,0,0,82244,0,1,1 +1773677972.357719,0.55,4,3992.50,52.19,1668.00,2043.35,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63807250,31105898,0,0,82246,0,1,1 +1773677977.353563,0.55,4,3992.50,52.03,1674.43,2036.91,0.00,1.659094,10.684077,253,669,0.000000,0.000030,63807250,31105901,0,0,82249,0,1,1 +1773677982.358105,0.85,4,3992.50,51.98,1680.42,2035.31,0.00,3515243765294.546875,3515243765285.537598,11,0,0.000000,0.000020,63807250,31105903,0,0,82251,0,1,1 +1773677987.354407,0.55,4,3992.50,51.98,1680.42,2035.31,0.00,2.177001,0.000195,258,2,0.000000,0.000030,63807250,31105906,0,0,82254,0,1,1 +1773677992.353466,0.55,4,3992.50,51.99,1680.34,2035.39,0.00,3519099756126.490234,3519099756128.666016,11,0,0.000000,0.000020,63807250,31105908,0,0,82256,0,1,1 +1773677997.354582,0.65,4,3992.50,51.99,1680.03,2035.70,0.00,0.053504,0.000000,75,0,0.000000,0.000030,63807250,31105911,0,0,82259,0,1,1 +1773678002.353431,0.60,4,3992.50,52.01,1679.55,2036.18,0.00,0.126787,0.000000,205,0,0.000000,0.000020,63807250,31105913,0,0,82261,0,1,1 +1773678007.357719,0.90,4,3992.50,52.41,1663.86,2051.86,0.00,3515422669962.887695,0.000000,75,0,0.000107,0.000148,63807258,31105924,0,0,82264,0,1,1 +1773678012.357668,0.70,4,3992.50,52.17,1673.01,2042.69,0.00,0.000000,0.000000,75,0,0.000066,0.000742,63807264,31105936,0,0,82266,0,1,1 +1773678017.355315,0.70,4,3992.50,52.17,1673.01,2042.69,0.00,3520093646678.126465,0.000000,11,0,0.000000,0.000030,63807264,31105939,0,0,82269,0,1,1 +1773678022.353477,0.60,4,3992.50,52.17,1673.01,2042.69,0.00,0.180340,0.000000,205,0,0.000000,0.000020,63807264,31105941,0,0,82271,0,1,1 +1773678027.353571,1.05,4,3992.50,52.13,1674.85,2040.84,0.00,0.000000,0.000000,205,0,0.002346,0.001356,63807295,31105971,0,0,82274,0,1,1 +1773678032.357749,16.45,4,3992.50,53.60,1617.08,2098.61,0.00,3515500201114.399414,0.000000,11,0,40.028211,0.020004,63811556,31107303,0,0,82276,0,1,1 +1773678037.357772,0.90,4,3992.50,52.95,1641.93,2073.23,0.00,55199.884032,58517.556397,3816807,3228704,0.000000,0.000030,63811556,31107306,0,0,82279,0,1,1 +1773678042.357821,0.65,4,3992.50,52.43,1662.34,2052.82,0.00,3518402249021.708008,3518402245704.052734,11,0,0.000000,0.000020,63811556,31107308,0,0,82281,0,1,1 +1773678047.356659,0.70,4,3992.50,52.25,1669.59,2045.56,0.00,2.175897,0.000195,258,2,0.000000,0.000030,63811556,31107311,0,0,82284,0,1,1 +1773678052.357411,0.65,4,3992.50,52.25,1669.47,2045.69,0.00,0.000000,0.000000,258,2,0.000000,0.000020,63811556,31107313,0,0,82286,0,1,1 +1773678057.357834,0.70,4,3992.50,52.28,1668.24,2046.91,0.00,3518139057854.096680,3518139057856.091797,205,0,0.000000,0.000030,63811556,31107316,0,0,82289,0,1,1 +1773678062.355479,0.70,4,3992.50,52.28,1668.25,2046.91,0.00,55235.708362,58556.184271,3818310,3229473,0.000000,0.000020,63811556,31107318,0,0,82291,0,1,1 +1773678067.353466,0.90,4,3992.50,52.49,1660.44,2055.01,0.00,3519853752608.842285,3519853749286.598633,258,2,0.000000,0.000030,63811556,31107321,0,0,82294,0,1,1 +1773678072.357962,0.70,4,3992.50,52.27,1668.89,2046.30,0.00,3515276605405.666016,3515276605407.839355,11,0,0.000512,0.001106,63811570,31107345,0,0,82296,0,1,1 +1773678077.353552,0.70,4,3992.50,52.27,1668.89,2046.30,0.00,1.659178,10.684619,253,669,0.000401,0.001421,63811592,31107378,0,0,82299,0,1,1 +1773678082.357777,0.70,4,3992.50,52.27,1668.89,2046.30,0.00,3515466985200.998535,3515466985191.989258,11,0,0.000000,0.000020,63811592,31107380,0,0,82301,0,1,1 +1773678087.354916,0.55,4,3992.50,52.27,1668.89,2046.31,0.00,0.053546,0.000000,75,0,0.000000,0.000030,63811592,31107383,0,0,82304,0,1,1 +1773678092.357565,8.85,4,3992.50,57.41,1467.64,2247.55,0.00,2.120752,0.000195,258,2,3.610667,0.009382,63812279,31107891,0,0,82306,0,1,1 +1773678097.358250,10.73,4,3992.50,53.32,1629.98,2087.75,0.00,3517954900782.262207,3517954900784.257324,205,0,36.449981,0.016969,63816127,31109107,0,0,82309,0,1,1 +1773678102.358206,0.65,4,3992.50,52.87,1647.78,2069.96,0.00,0.000000,0.000000,205,0,0.000000,0.000020,63816127,31109109,0,0,82311,0,1,1 +1773678107.358414,0.65,4,3992.50,52.29,1670.64,2047.09,0.00,55207.394736,58526.386545,3818311,3229656,0.000000,0.000030,63816127,31109112,0,0,82314,0,1,1 +1773678112.354578,0.70,4,3992.50,52.14,1676.36,2041.38,0.00,3521138805168.272949,3521138801846.774902,11,0,0.000000,0.000020,63816127,31109114,0,0,82316,0,1,1 +1773678117.353472,0.65,4,3992.50,52.13,1676.55,2041.19,0.00,0.000000,0.000000,11,0,0.000062,0.000080,63816131,31109121,0,0,82319,0,1,1 +1773678122.353457,0.65,4,3992.50,52.16,1675.58,2042.15,0.00,55200.302808,58518.417340,3816808,3229088,0.000039,0.000053,63816134,31109126,0,0,82321,0,1,1 +1773678127.353601,0.90,4,3992.50,52.40,1659.65,2051.74,0.00,3518335941009.375488,3518335937691.365723,11,0,0.000000,0.000030,63816134,31109129,0,0,82324,0,1,1 +1773678132.354474,0.80,4,3992.50,52.40,1657.84,2051.70,0.00,0.000000,0.000000,11,0,0.003820,0.003426,63816191,31109172,0,0,82326,0,1,1 +1773678137.355573,0.60,4,3992.50,52.40,1657.84,2051.70,0.00,0.180234,0.000000,205,0,0.000031,0.000055,63816193,31109177,0,0,82329,0,1,1 +1773678142.356622,0.55,4,3992.50,52.40,1657.84,2051.70,0.00,1.994699,0.000195,258,2,0.000076,0.000757,63816199,31109189,0,0,82331,0,1,1 +1773678147.353460,0.70,4,3992.50,52.41,1657.59,2051.94,0.00,0.000000,0.000000,258,2,0.000000,0.000030,63816199,31109192,0,0,82334,0,1,1 +1773678152.353458,0.65,4,3992.50,52.41,1657.60,2051.94,0.00,55207.719224,58529.026657,3818311,3229822,0.000000,0.000020,63816199,31109194,0,0,82336,0,1,1 +1773678157.358536,4.06,4,3992.50,56.85,1483.54,2225.90,0.00,3514867645301.616699,3514867641985.799805,75,0,2.208521,0.007203,63816774,31109600,0,0,82339,0,1,1 +1773678162.356460,12.27,4,3992.50,52.29,1662.16,2047.28,0.00,3519898234162.589844,0.000000,11,0,37.870206,0.018163,63820618,31110900,0,0,82341,0,1,1 +1773678167.357988,0.65,4,3992.50,51.98,1674.37,2035.06,0.00,2.174726,0.000195,258,2,0.000000,0.000030,63820618,31110903,0,0,82344,0,1,1 +1773678172.357597,0.70,4,3992.50,51.92,1676.50,2032.94,0.00,3518711955540.452637,3518711955542.627930,11,0,0.000000,0.000020,63820618,31110905,0,0,82346,0,1,1 +1773678177.357788,0.75,4,3992.50,51.91,1676.97,2032.46,0.00,55207.761342,58526.898040,3818311,3229945,0.000081,0.000117,63820624,31110914,0,0,82349,0,1,1 +1773678182.353580,0.65,4,3992.50,51.91,1676.89,2032.54,0.00,3521400882975.513672,3521400879653.453613,11,0,0.000008,0.000028,63820625,31110917,0,0,82351,0,1,1 +1773678187.353556,0.95,4,3992.50,52.31,1663.70,2048.05,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63820625,31110920,0,0,82354,0,1,1 +1773678192.357928,0.75,4,3992.50,52.31,1663.70,2047.98,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63820625,31110922,0,0,82356,0,1,1 +1773678197.353480,0.70,4,3992.50,52.29,1664.32,2047.36,0.00,55259.020184,58581.427055,3818311,3230095,0.000000,0.000030,63820625,31110925,0,0,82359,0,1,1 +1773678202.354577,0.55,4,3992.50,52.29,1664.32,2047.36,0.00,3517665388440.283691,3517665385121.379883,205,0,0.000031,0.000045,63820627,31110929,0,0,82361,0,1,1 +1773678207.353572,0.65,4,3992.50,52.30,1664.08,2047.60,0.00,0.000000,0.000000,205,0,0.000157,0.000854,63820639,31110948,0,0,82364,0,1,1 +1773678212.353490,0.80,4,3992.50,52.30,1664.08,2047.60,0.00,1.477466,10.675370,253,669,0.000000,0.000020,63820639,31110950,0,0,82366,0,1,1 +1773678217.358436,0.80,4,3992.50,52.30,1666.98,2047.59,0.00,55153.648572,58460.863348,3818311,3230133,0.000000,0.000030,63820639,31110953,0,0,82369,0,1,1 +1773678222.357322,1.00,4,3992.50,52.13,1673.66,2040.93,0.00,3519221484977.508301,3519221484976.577148,3816808,3229485,0.002235,0.000725,63820663,31110971,0,0,82371,0,1,1 +1773678227.358032,17.30,4,3992.50,52.95,1641.48,2073.11,0.00,3517937218921.342773,3517937215603.187500,75,0,40.055726,0.022645,63824914,31112511,0,0,82374,0,1,1 +1773678232.357662,0.55,4,3992.50,52.40,1663.21,2051.39,0.00,55213.930620,58533.777947,3818312,3230222,0.000008,0.000028,63824915,31112514,0,0,82376,0,1,1 +1773678237.357503,0.65,4,3992.50,52.20,1670.99,2043.60,0.00,3518549131501.591797,3518549128179.763184,258,2,0.000000,0.000030,63824915,31112517,0,0,82379,0,1,1 +1773678242.357166,0.65,4,3992.50,52.19,1671.18,2043.42,0.00,3518674221146.735840,3518674221148.857422,75,0,0.000000,0.000020,63824915,31112519,0,0,82381,0,1,1 +1773678247.357583,0.85,4,3992.50,52.63,1654.19,2060.57,0.00,55195.510585,58513.969575,3816809,3229592,0.000000,0.000030,63824915,31112522,0,0,82384,0,1,1 +1773678252.357672,0.65,4,3992.50,52.27,1668.23,2046.36,0.00,3518374263446.802246,3518374260128.125488,75,0,0.000000,0.000020,63824915,31112524,0,0,82386,0,1,1 +1773678257.353567,0.55,4,3992.50,52.27,1668.24,2046.36,0.00,2.123619,0.000195,258,2,0.000000,0.000030,63824915,31112527,0,0,82389,0,1,1 +1773678262.357576,0.60,4,3992.50,52.27,1668.24,2046.36,0.00,3515618582073.614746,3515618582075.608887,205,0,0.000000,0.000020,63824915,31112529,0,0,82391,0,1,1 +1773678267.357558,0.65,4,3992.50,52.27,1668.24,2046.36,0.00,3518449429865.269043,0.000000,11,0,0.000000,0.000030,63824915,31112532,0,0,82394,0,1,1 +1773678272.357430,0.70,4,3992.50,52.26,1668.32,2046.27,0.00,55201.590150,58520.488393,3816809,3229730,0.000157,0.000844,63824927,31112550,0,0,82396,0,1,1 +1773678277.357550,0.85,4,3992.50,52.55,1657.99,2057.55,0.00,3518352221364.259766,3518352218045.346680,205,0,0.000000,0.000030,63824927,31112553,0,0,82399,0,1,1 +1773678282.357573,0.65,4,3992.50,52.55,1656.62,2057.55,0.00,3518421396393.579590,0.000000,11,0,0.000000,0.000020,63824927,31112555,0,0,82401,0,1,1 +1773678287.357678,0.90,4,3992.50,52.36,1664.02,2050.14,0.00,0.180270,0.000000,205,0,0.002209,0.000712,63824949,31112572,0,0,82404,0,1,1 +1773678292.357439,16.18,4,3992.50,53.17,1632.48,2081.71,0.00,1.995213,0.000195,258,2,40.065609,0.026503,63829351,31114398,0,0,82406,0,1,1 +1773678297.358203,0.60,4,3992.50,52.70,1651.04,2063.14,0.00,3517899769483.175293,3517899769485.296875,75,0,0.000000,0.000030,63829351,31114401,0,0,82409,0,1,1 +1773678302.358044,0.65,4,3992.50,52.51,1658.43,2055.75,0.00,3518548550537.188965,0.000000,11,0,0.000000,0.000020,63829351,31114403,0,0,82411,0,1,1 +1773678307.357633,1.20,4,3992.50,52.52,1657.71,2056.41,0.00,0.180288,0.000000,205,0,0.000000,0.000030,63829351,31114406,0,0,82414,0,1,1 +1773678312.358026,0.70,4,3992.50,52.53,1657.33,2056.82,0.00,55205.377983,58525.409160,3818312,3230719,0.000000,0.000020,63829351,31114408,0,0,82416,0,1,1 +1773678317.355760,0.55,4,3992.50,52.53,1657.33,2056.82,0.00,3520031928779.043457,3520031925457.246582,205,0,0.000000,0.000030,63829351,31114411,0,0,82419,0,1,1 +1773678322.355326,0.75,4,3992.50,52.53,1657.33,2056.82,0.00,55204.781834,58524.422994,3816809,3230059,0.000000,0.000020,63829351,31114413,0,0,82421,0,1,1 +1773678327.357495,0.65,4,3992.50,52.53,1657.33,2056.82,0.00,3516911461925.306641,3516911458616.586426,253,669,0.000000,0.000030,63829351,31114416,0,0,82424,0,1,1 +1773678332.358370,0.65,4,3992.50,52.53,1657.34,2056.82,0.00,3517821835604.275391,3517821835595.259766,11,0,0.000000,0.000020,63829351,31114418,0,0,82426,0,1,1 +1773678337.358000,0.95,4,3992.50,52.82,1646.95,2067.84,0.00,0.180287,0.000000,205,0,0.000157,0.000854,63829363,31114437,0,0,82429,0,1,1 +1773678342.358052,0.65,4,3992.50,52.78,1648.08,2066.61,0.00,1.477426,10.675085,253,669,0.000008,0.000028,63829364,31114440,0,0,82431,0,1,1 +1773678347.353465,0.65,4,3992.50,52.76,1648.97,2065.75,0.00,3521667800978.153320,3521667800969.074219,75,0,0.000000,0.000030,63829364,31114443,0,0,82434,0,1,1 +1773678352.357857,1.00,4,3992.50,52.57,1656.48,2058.24,0.00,3515349573298.570801,0.000000,11,0,0.002207,0.000714,63829386,31114460,0,0,82436,0,1,1 +1773678357.353558,17.72,4,3992.50,54.15,1594.46,2120.24,0.00,0.053562,0.000000,75,0,40.097034,0.021346,63833721,31115896,0,0,82439,0,1,1 +1773678362.357852,0.65,4,3992.50,53.15,1633.95,2080.76,0.00,3515417686561.704590,0.000000,11,0,0.000000,0.000020,63833721,31115898,0,0,82441,0,1,1 +1773678367.357895,0.95,4,3992.50,52.97,1642.55,2073.73,0.00,1.657701,10.675105,253,669,0.000000,0.000030,63833721,31115901,0,0,82444,0,1,1 +1773678372.357983,0.85,4,3992.50,52.93,1643.93,2072.37,0.00,0.517667,3518374806273.285645,258,2,0.001434,0.001776,63833737,31115928,0,0,82446,0,1,1 +1773678377.358114,0.65,4,3992.50,52.92,1644.27,2072.02,0.00,3518345025426.682617,3518345025428.857910,11,0,0.000205,0.000562,63833744,31115942,0,0,82449,0,1,1 +1773678382.356387,0.65,4,3992.50,52.92,1644.27,2072.03,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63833744,31115944,0,0,82451,0,1,1 +1773678387.357636,0.65,4,3992.50,52.93,1644.03,2072.26,0.00,55186.396256,58505.045090,3816810,3230352,0.000000,0.000030,63833744,31115947,0,0,82454,0,1,1 +1773678392.356544,0.60,4,3992.50,52.93,1644.03,2072.26,0.00,3519206381109.951660,3519206377789.747559,11,0,0.000000,0.000020,63833744,31115949,0,0,82456,0,1,1 +1773678397.355621,0.85,4,3992.50,53.03,1642.92,2076.16,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63833744,31115952,0,0,82459,0,1,1 +1773678402.357849,0.70,4,3992.50,53.03,1642.89,2076.16,0.00,0.000000,0.000000,11,0,0.000157,0.000844,63833756,31115970,0,0,82461,0,1,1 +1773678407.358033,0.65,4,3992.50,53.03,1642.89,2076.15,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63833756,31115973,0,0,82464,0,1,1 +1773678412.358358,0.65,4,3992.50,53.03,1642.89,2076.15,0.00,0.053512,0.000000,75,0,0.000000,0.000020,63833756,31115975,0,0,82466,0,1,1 +1773678417.357955,0.90,4,3992.50,52.89,1648.10,2070.95,0.00,3518720976136.267090,0.000000,11,0,0.002928,0.001380,63833784,31115998,0,0,82469,0,1,1 +1773678422.357965,15.85,4,3992.50,52.92,1647.08,2071.96,0.00,2.175386,0.000195,258,2,40.062454,0.021381,63838154,31117405,0,0,82471,0,1,1 +1773678427.353584,0.95,4,3992.50,53.16,1640.30,2081.47,0.00,3521522944769.988281,3521522944772.165527,11,0,0.000000,0.000030,63838154,31117408,0,0,82474,0,1,1 +1773678432.357255,0.90,4,3992.50,52.99,1644.31,2074.78,0.00,2.173794,0.000195,258,2,0.002479,0.001582,63838205,31117447,0,0,82476,0,1,1 +1773678437.353444,0.55,4,3992.50,52.92,1647.00,2072.10,0.00,3521121090474.642090,3521121090476.818848,11,0,0.000000,0.000030,63838205,31117450,0,0,82479,0,1,1 +1773678442.353448,0.70,4,3992.50,52.93,1646.75,2072.34,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63838205,31117452,0,0,82481,0,1,1 +1773678447.353436,0.60,4,3992.50,52.93,1646.75,2072.34,0.00,1.657719,10.675221,253,669,0.000000,0.000030,63838205,31117455,0,0,82484,0,1,1 +1773678452.354883,0.75,4,3992.50,52.93,1646.75,2072.34,0.00,3517418864765.876953,3517418864756.862305,11,0,0.000000,0.000020,63838205,31117457,0,0,82486,0,1,1 +1773678457.353451,0.85,4,3992.50,52.94,1649.04,2072.76,0.00,0.180325,0.000000,205,0,0.000000,0.000030,63838205,31117460,0,0,82489,0,1,1 +1773678462.355569,0.55,4,3992.50,52.92,1649.95,2071.88,0.00,55176.638742,58495.262482,3816810,3230676,0.000000,0.000020,63838205,31117462,0,0,82491,0,1,1 +1773678467.354146,0.75,4,3992.50,52.92,1649.95,2071.88,0.00,3519438321969.646973,3519438318646.677246,258,2,0.000138,0.000818,63838215,31117479,0,0,82494,0,1,1 +1773678472.353496,0.60,4,3992.50,52.88,1651.64,2070.19,0.00,0.000000,0.000000,258,2,0.000008,0.000028,63838216,31117482,0,0,82496,0,1,1 +1773678477.353467,0.70,4,3992.50,52.88,1651.40,2070.43,0.00,0.000000,0.000000,258,2,0.000132,0.000179,63838226,31117495,0,0,82499,0,1,1 +1773678482.353449,0.65,4,3992.50,52.88,1651.40,2070.43,0.00,3518450452328.527344,3518450452330.702637,11,0,0.000000,0.000020,63838226,31117497,0,0,82501,0,1,1 +1773678487.358022,16.02,4,3992.50,54.43,1583.75,2131.20,0.00,0.053467,0.000000,75,0,40.028324,0.020680,63842590,31118842,0,0,82504,0,1,1 +1773678492.357810,0.70,4,3992.50,53.31,1627.66,2087.24,0.00,2.121965,0.000195,258,2,0.000000,0.000020,63842590,31118844,0,0,82506,0,1,1 +1773678497.358190,1.10,4,3992.50,52.82,1646.87,2068.03,0.00,55193.819765,58515.835648,3816810,3230909,0.000000,0.000030,63842590,31118847,0,0,82509,0,1,1 +1773678502.358296,0.70,4,3992.50,52.80,1647.77,2067.14,0.00,3518362556656.591797,3518362553336.388672,205,0,0.000000,0.000020,63842590,31118849,0,0,82511,0,1,1 +1773678507.357709,0.55,4,3992.50,52.80,1647.77,2067.14,0.00,3518850102308.784180,0.000000,11,0,0.000000,0.000030,63842590,31118852,0,0,82514,0,1,1 +1773678512.358308,0.70,4,3992.50,52.60,1655.41,2059.50,0.00,55193.582442,58513.295374,3816810,3230924,0.000000,0.000020,63842590,31118854,0,0,82516,0,1,1 +1773678517.357022,0.90,4,3992.50,52.65,1649.89,2061.18,0.00,3519342359508.269043,3519342356187.124023,205,0,0.000000,0.000030,63842590,31118857,0,0,82519,0,1,1 +1773678522.354662,0.65,4,3992.50,52.60,1651.70,2059.39,0.00,55226.075724,58547.999883,3816810,3230964,0.000000,0.000020,63842590,31118859,0,0,82521,0,1,1 +1773678527.358164,0.55,4,3992.50,52.61,1651.46,2059.62,0.00,3515974447045.733398,3515974443725.707520,258,2,0.000000,0.000030,63842590,31118862,0,0,82524,0,1,1 +1773678532.357804,0.75,4,3992.50,52.61,1651.46,2059.62,0.00,3518690652429.257324,10.675769,253,669,0.000157,0.000844,63842602,31118880,0,0,82526,0,1,1 +1773678537.357796,0.60,4,3992.50,52.61,1651.46,2059.62,0.00,3518442624468.429688,3518442624459.412598,11,0,0.000016,0.000046,63842604,31118885,0,0,82529,0,1,1 +1773678542.357835,0.65,4,3992.50,52.61,1651.46,2059.62,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63842604,31118887,0,0,82531,0,1,1 +1773678547.357558,0.75,4,3992.50,52.62,1650.91,2060.32,0.00,0.053519,0.000000,75,0,0.000000,0.000030,63842604,31118890,0,0,82534,0,1,1 +1773678552.354336,18.89,4,3992.50,53.62,1611.67,2099.33,0.00,1.605234,10.682080,253,669,40.091295,0.022503,63847009,31120377,0,0,82536,0,1,1 +1773678557.353554,0.65,4,3992.50,53.05,1634.14,2076.86,0.00,3518986968955.124512,3518986968945.925293,205,0,0.000000,0.000030,63847009,31120380,0,0,82539,0,1,1 +1773678562.353550,0.65,4,3992.50,52.63,1650.51,2060.49,0.00,3518440076411.681641,0.000000,11,0,0.000000,0.000020,63847009,31120382,0,0,82541,0,1,1 +1773678567.355805,0.65,4,3992.50,52.52,1654.85,2056.15,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63847009,31120385,0,0,82544,0,1,1 +1773678572.358105,0.65,4,3992.50,52.49,1655.91,2055.09,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63847009,31120387,0,0,82546,0,1,1 +1773678577.357680,0.90,4,3992.50,53.32,1623.68,2087.48,0.00,2.175576,0.000195,258,2,0.000000,0.000030,63847009,31120390,0,0,82549,0,1,1 +1773678582.353561,0.65,4,3992.50,53.07,1633.05,2077.96,0.00,3521337771426.919434,10.683800,253,669,0.000000,0.000020,63847009,31120392,0,0,82551,0,1,1 +1773678587.355694,0.60,4,3992.50,53.07,1633.17,2077.85,0.00,3516937080471.670410,3516937080462.476562,205,0,0.000000,0.000030,63847009,31120395,0,0,82554,0,1,1 +1773678592.353455,0.70,4,3992.50,53.02,1635.26,2075.75,0.00,55224.739881,58546.893396,3816810,3231245,0.000000,0.000020,63847009,31120397,0,0,82556,0,1,1 +1773678597.353557,0.65,4,3992.50,53.03,1634.77,2076.24,0.00,3518365602792.765137,3518365599472.347168,11,0,0.000157,0.000854,63847021,31120416,0,0,82559,0,1,1 +1773678602.354634,0.85,4,3992.50,53.05,1634.05,2076.97,0.00,2.174922,0.000195,258,2,0.000016,0.000036,63847023,31120420,0,0,82561,0,1,1 +1773678607.356012,1.30,4,3992.50,53.24,1632.38,2084.56,0.00,3517467918537.545898,3517467918539.720703,11,0,0.000000,0.000030,63847023,31120423,0,0,82564,0,1,1 +1773678612.358072,0.60,4,3992.50,53.20,1633.97,2082.87,0.00,0.053494,0.000000,75,0,0.000000,0.000020,63847023,31120425,0,0,82566,0,1,1 +1773678617.357743,15.09,4,3992.50,53.39,1626.40,2090.42,0.00,3518668518410.476074,0.000000,11,0,40.068926,0.021960,63851480,31121811,0,0,82569,0,1,1 +1773678622.353472,0.60,4,3992.50,52.93,1644.65,2072.20,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63851480,31121813,0,0,82571,0,1,1 +1773678627.357540,0.80,4,3992.50,52.83,1648.29,2068.55,0.00,55155.319434,58473.388152,3816810,3231539,0.000000,0.000030,63851480,31121816,0,0,82574,0,1,1 +1773678632.354162,0.55,4,3992.50,52.65,1655.45,2061.39,0.00,3520816043038.129883,3520816039715.062988,75,0,0.000000,0.000020,63851480,31121818,0,0,82576,0,1,1 +1773678637.355750,0.95,4,3992.50,53.05,1640.09,2076.90,0.00,55192.325115,58513.118070,3818313,3232243,0.000000,0.000030,63851480,31121821,0,0,82579,0,1,1 +1773678642.354566,0.60,4,3992.50,52.86,1647.08,2069.73,0.00,0.000000,0.003907,3818313,3232247,0.000000,0.000020,63851480,31121823,0,0,82581,0,1,1 +1773678647.357790,0.65,4,3992.50,52.68,1654.18,2062.62,0.00,0.000000,0.045283,3818313,3232289,0.000000,0.000030,63851480,31121826,0,0,82584,0,1,1 +1773678652.354599,0.65,4,3992.50,52.68,1654.15,2062.66,0.00,3520684238840.541504,3520684235514.399414,258,2,0.000000,0.000020,63851480,31121828,0,0,82586,0,1,1 +1773678657.357962,0.55,4,3992.50,52.68,1654.15,2062.66,0.00,55160.908425,58481.752949,3816810,3231625,0.000000,0.000043,63851480,31121832,0,0,82589,0,1,1 +1773678662.355494,0.80,4,3992.50,52.70,1653.41,2063.39,0.00,3520174828144.004883,3520174824821.407715,75,0,0.000188,0.000870,63851494,31121852,0,0,82591,0,1,1 +1773678667.353471,0.95,4,3992.50,52.90,1645.54,2071.27,0.00,2.122734,0.000195,258,2,0.000008,0.000038,63851495,31121856,0,0,82594,0,1,1 +1773678672.353579,0.65,4,3992.50,52.71,1653.08,2063.73,0.00,3518361070845.437500,10.674769,253,669,0.001434,0.001776,63851511,31121883,0,0,82596,0,1,1 +1773678677.353469,0.70,4,3992.50,52.74,1652.11,2064.70,0.00,3518514862504.557617,3518514862495.540039,11,0,0.000205,0.000562,63851518,31121897,0,0,82599,0,1,1 +1773678682.353572,1.15,4,3992.50,52.61,1657.14,2059.65,0.00,0.000000,0.000000,11,0,0.002346,0.001346,63851549,31121926,0,0,82601,0,1,1 +1773678687.353492,15.27,4,3992.50,53.81,1610.01,2106.78,0.00,0.053516,0.000000,75,0,40.065284,0.020066,63856045,31123299,0,0,82604,0,1,1 +1773678692.353410,0.70,4,3992.50,53.17,1634.93,2081.86,0.00,3518494547677.692871,0.000000,11,0,0.000000,0.000020,63856045,31123301,0,0,82606,0,1,1 +1773678697.353469,1.00,4,3992.50,52.89,1645.73,2070.71,0.00,2.175365,0.000195,258,2,0.000000,0.000030,63856045,31123304,0,0,82609,0,1,1 +1773678702.357974,0.65,4,3992.50,52.79,1649.48,2066.92,0.00,55148.335287,58468.707283,3816810,3231881,0.000000,0.000020,63856045,31123306,0,0,82611,0,1,1 +1773678707.356552,0.65,4,3992.50,52.79,1649.48,2066.92,0.00,3519437919231.383301,3519437915907.074707,258,2,0.000000,0.000030,63856045,31123309,0,0,82614,0,1,1 +1773678712.357646,0.70,4,3992.50,52.79,1649.48,2066.91,0.00,3517667648026.132324,3517667648028.307129,11,0,0.000000,0.000020,63856045,31123311,0,0,82616,0,1,1 +1773678717.357920,0.65,4,3992.50,52.79,1649.48,2066.91,0.00,2.175271,0.000195,258,2,0.000062,0.000080,63856049,31123318,0,0,82619,0,1,1 +1773678722.355639,0.60,4,3992.50,52.79,1649.48,2066.91,0.00,3520042870100.323730,3520042870102.319824,205,0,0.000039,0.000053,63856052,31123323,0,0,82621,0,1,1 +1773678727.356504,0.95,4,3992.50,52.74,1646.70,2064.71,0.00,3517828573883.006348,0.000000,11,0,0.000000,0.000030,63856052,31123326,0,0,82624,0,1,1 +1773678732.358287,0.90,4,3992.50,52.74,1646.51,2064.93,0.00,2.174615,0.000195,258,2,0.004595,0.005122,63856120,31123384,0,0,82626,0,1,1 +1773678737.354134,0.55,4,3992.50,52.75,1646.27,2065.16,0.00,55253.632898,58580.801628,3818313,3232638,0.000000,0.000030,63856120,31123387,0,0,82629,0,1,1 +1773678742.353553,0.75,4,3992.50,52.75,1646.28,2065.16,0.00,3518845589599.894531,3518845586277.099121,205,0,0.000000,0.000020,63856120,31123389,0,0,82631,0,1,1 +1773678747.353447,0.65,4,3992.50,52.75,1646.28,2065.16,0.00,3518512185562.937988,0.000000,75,0,0.000000,0.000030,63856120,31123392,0,0,82634,0,1,1 +1773678752.358246,16.37,4,3992.50,57.51,1459.74,2251.70,0.00,0.126636,0.000000,205,0,28.219264,0.020185,63859306,31124800,0,0,82636,0,1,1 +1773678757.353572,1.40,4,3992.50,53.66,1606.02,2100.83,0.00,0.000000,0.000000,205,0,11.832929,0.007517,63860630,31125288,0,0,82639,0,1,1 +1773678762.358469,0.70,4,3992.50,52.91,1635.44,2071.41,0.00,1.475996,10.664751,253,669,0.000000,0.000020,63860630,31125290,0,0,82641,0,1,1 +1773678767.357474,0.55,4,3992.50,52.57,1648.55,2058.30,0.00,0.517779,3519137153991.214844,258,2,0.000000,0.000030,63860630,31125293,0,0,82644,0,1,1 +1773678772.353559,0.60,4,3992.50,52.57,1648.77,2058.08,0.00,55241.272596,58567.509040,3816811,3232115,0.000000,0.000020,63860630,31125295,0,0,82646,0,1,1 +1773678777.353930,0.70,4,3992.50,52.55,1649.39,2057.46,0.00,3518176394190.830078,3518176390867.443848,258,2,0.000081,0.000117,63860636,31125304,0,0,82649,0,1,1 +1773678782.353462,0.60,4,3992.50,52.55,1649.39,2057.46,0.00,3518766759685.709961,3518766759687.832031,75,0,0.000008,0.000028,63860637,31125307,0,0,82651,0,1,1 +1773678787.357753,0.85,4,3992.50,52.99,1632.31,2074.62,0.00,1.602824,10.666041,253,669,0.000000,0.000030,63860637,31125310,0,0,82654,0,1,1 +1773678792.358025,0.70,4,3992.50,52.73,1642.36,2064.49,0.00,3518245731172.219727,3518245731163.203125,11,0,0.000000,0.000020,63860637,31125312,0,0,82656,0,1,1 +1773678797.353552,0.65,4,3992.50,52.72,1642.68,2064.18,0.00,1.659199,10.684754,253,669,0.000031,0.000699,63860639,31125321,0,0,82659,0,1,1 +1773678802.356447,0.65,4,3992.50,52.72,1642.68,2064.17,0.00,3516401188681.820801,3516401188672.755371,75,0,0.000126,0.000175,63860649,31125333,0,0,82661,0,1,1 +1773678807.358418,0.70,4,3992.50,52.73,1642.43,2064.42,0.00,3517051150279.384766,0.000000,11,0,0.000000,0.000030,63860649,31125336,0,0,82664,0,1,1 +1773678812.355312,0.65,4,3992.50,52.73,1642.43,2064.42,0.00,0.053549,0.000000,75,0,0.000000,0.000020,63860649,31125338,0,0,82666,0,1,1 +1773678817.354603,15.45,4,3992.50,57.93,1441.16,2268.16,0.00,0.000000,0.000000,75,0,19.235946,0.016696,63862877,31126469,0,0,82669,0,1,1 +1773678822.358027,2.36,4,3992.50,53.12,1627.05,2079.79,0.00,3516028975157.191895,0.000000,11,0,20.817522,0.007165,63865031,31126935,0,0,82671,0,1,1 +1773678827.357578,0.60,4,3992.50,52.64,1645.74,2061.09,0.00,0.000000,0.000000,11,0,0.000008,0.000038,63865032,31126939,0,0,82674,0,1,1 +1773678832.358210,0.60,4,3992.50,52.62,1646.59,2060.24,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63865032,31126941,0,0,82676,0,1,1 +1773678837.353617,0.75,4,3992.50,52.65,1645.37,2061.47,0.00,0.053565,0.000000,75,0,0.000000,0.000030,63865032,31126944,0,0,82679,0,1,1 +1773678842.357912,0.70,4,3992.50,52.68,1644.39,2062.45,0.00,3515417550983.040527,0.000000,11,0,0.000000,0.000020,63865032,31126946,0,0,82681,0,1,1 +1773678847.358335,0.85,4,3992.50,52.72,1642.89,2063.93,0.00,0.180258,0.000000,205,0,0.000000,0.000030,63865032,31126949,0,0,82684,0,1,1 +1773678852.354196,0.60,4,3992.50,52.73,1642.42,2064.42,0.00,1.996770,0.000195,258,2,0.000000,0.000020,63865032,31126951,0,0,82686,0,1,1 +1773678857.353450,0.65,4,3992.50,52.73,1642.20,2064.64,0.00,3518962256348.275391,3518962256350.451172,11,0,0.000000,0.000030,63865032,31126954,0,0,82689,0,1,1 +1773678862.357579,0.60,4,3992.50,52.74,1641.96,2064.88,0.00,0.000000,0.000000,11,0,0.000031,0.000688,63865034,31126962,0,0,82691,0,1,1 +1773678867.358358,0.60,4,3992.50,52.74,1641.96,2064.88,0.00,55201.323896,58523.709019,3818314,3233220,0.000134,0.000193,63865045,31126976,0,0,82694,0,1,1 +1773678872.353465,0.75,4,3992.50,52.74,1641.96,2064.88,0.00,3521883594999.842773,3521883591673.631348,75,0,0.000008,0.000028,63865046,31126979,0,0,82696,0,1,1 +1773678877.353604,0.80,4,3992.50,52.88,1636.55,2070.25,0.00,0.000000,0.000000,75,0,0.000000,0.000030,63865046,31126982,0,0,82699,0,1,1 +1773678882.357915,12.49,4,3992.50,57.94,1438.41,2268.42,0.00,0.000000,0.000000,75,0,15.214730,0.014435,63866907,31127963,0,0,82701,0,1,1 +1773678887.357778,3.86,4,3992.50,53.75,1602.45,2104.39,0.00,55201.663802,58523.902224,3816811,3232711,24.838010,0.013612,63869472,31128903,0,0,82704,0,1,1 +1773678892.353814,0.70,4,3992.50,53.09,1628.31,2078.52,0.00,9.733888,10.693242,3818314,3233387,0.000000,0.000020,63869472,31128905,0,0,82706,0,1,1 +1773678897.357200,0.55,4,3992.50,52.77,1640.93,2065.91,0.00,3516056255478.327148,3516056252166.535156,253,669,0.000000,0.000030,63869472,31128908,0,0,82709,0,1,1 +1773678902.357997,0.80,4,3992.50,52.76,1641.06,2065.77,0.00,3517876351744.111328,3517876351735.042480,75,0,0.000000,0.000020,63869472,31128910,0,0,82711,0,1,1 +1773678907.353500,1.10,4,3992.50,52.89,1643.40,2070.86,0.00,55259.561838,58585.817085,3818314,3233500,0.000000,0.000030,63869472,31128913,0,0,82714,0,1,1 +1773678912.357900,0.65,4,3992.50,52.91,1642.68,2071.60,0.00,3515343925215.914062,3515343921895.625000,11,0,0.000000,0.000020,63869472,31128915,0,0,82716,0,1,1 +1773678917.358438,0.60,4,3992.50,52.91,1642.68,2071.60,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63869472,31128918,0,0,82719,0,1,1 +1773678922.353455,0.70,4,3992.50,52.91,1642.68,2071.59,0.00,55265.009276,58591.561436,3818314,3233516,0.000000,0.000020,63869472,31128920,0,0,82721,0,1,1 +1773678927.358133,0.65,4,3992.50,52.91,1642.69,2071.59,0.00,3515148263552.126465,3515148260231.816895,205,0,0.000031,0.000698,63869474,31128929,0,0,82724,0,1,1 +1773678932.353508,0.60,4,3992.50,52.95,1641.21,2073.07,0.00,1.478809,10.685077,253,669,0.000165,0.000209,63869487,31128944,0,0,82726,0,1,1 +1773678937.357833,0.85,4,3992.50,52.95,1636.39,2073.02,0.00,55160.552326,58471.949097,3818314,3233543,0.000000,0.000030,63869487,31128947,0,0,82729,0,1,1 +1773678942.354954,0.65,4,3992.50,52.95,1636.18,2073.27,0.00,3520464847076.735840,3520464843751.541992,11,0,0.000000,0.000020,63869487,31128949,0,0,82731,0,1,1 +1773678947.357549,11.40,4,3992.50,57.93,1441.29,2268.15,0.00,1.656855,10.669657,253,669,3.811353,0.009218,63870206,31129465,0,0,82734,0,1,1 +1773678952.358116,12.05,4,3992.50,53.88,1599.88,2109.55,0.00,3518038316107.123535,3518038316098.054199,75,0,36.248118,0.014733,63873837,31130504,0,0,82736,0,1,1 +1773678957.354384,0.75,4,3992.50,53.15,1628.71,2080.74,0.00,3521065197441.826172,0.000000,11,0,0.000000,0.000030,63873837,31130507,0,0,82739,0,1,1 +1773678962.355883,0.60,4,3992.50,53.00,1634.44,2075.01,0.00,55193.372763,58515.795683,3818314,3233720,0.000000,0.000020,63873837,31130509,0,0,82741,0,1,1 +1773678967.358373,0.95,4,3992.50,53.03,1626.79,2076.11,0.00,3516686275758.682129,3516686272445.930176,253,669,0.000000,0.000030,63873837,31130512,0,0,82744,0,1,1 +1773678972.357659,0.65,4,3992.50,52.82,1634.80,2068.09,0.00,3518939163031.937988,3518939163022.919434,11,0,0.000512,0.001107,63873851,31130536,0,0,82746,0,1,1 +1773678977.358107,0.70,4,3992.50,52.84,1634.06,2068.83,0.00,0.000000,0.000000,11,0,0.000205,0.000562,63873858,31130550,0,0,82749,0,1,1 +1773678982.357782,0.60,4,3992.50,52.85,1633.82,2069.07,0.00,1.657822,10.675889,253,669,0.000008,0.000028,63873859,31130553,0,0,82751,0,1,1 +1773678987.355149,0.70,4,3992.50,52.85,1633.82,2069.07,0.00,55227.625486,58542.963096,3816811,3233136,0.000000,0.000030,63873859,31130556,0,0,82754,0,1,1 +1773678992.357198,0.60,4,3992.50,52.85,1633.82,2069.07,0.00,3516995392373.117676,3516995389060.883789,253,669,0.000031,0.000689,63873861,31130564,0,0,82756,0,1,1 +1773678997.354965,0.80,4,3992.50,53.04,1639.92,2076.70,0.00,3520009368970.053711,3520009368961.032715,11,0,0.000126,0.000185,63873871,31130577,0,0,82759,0,1,1 +1773679002.358127,0.75,4,3992.50,53.05,1639.82,2076.89,0.00,0.053482,0.000000,75,0,0.000000,0.000020,63873871,31130579,0,0,82761,0,1,1 +1773679007.356004,0.55,4,3992.50,53.05,1639.82,2076.89,0.00,55233.316009,58558.393948,3818314,3233843,0.000000,0.000030,63873871,31130582,0,0,82764,0,1,1 +1773679012.357689,0.90,4,3992.50,52.93,1644.32,2072.39,0.00,3517252047251.278320,3517252043928.731445,75,0,0.002221,0.000408,63873894,31130599,0,0,82766,0,1,1 +1773679017.358174,16.27,4,3992.50,54.62,1578.34,2138.38,0.00,1.604044,10.674160,253,669,40.054410,0.020760,63878085,31132040,0,0,82769,0,1,1 +1773679022.357965,0.80,4,3992.50,54.02,1601.54,2115.18,0.00,3518583840233.403320,3518583840224.332031,75,0,0.003116,0.001454,63878143,31132081,0,0,82771,0,1,1 +1773679027.356000,0.95,4,3992.50,53.75,1612.37,2104.29,0.00,3519820394111.348633,0.000000,11,0,0.000008,0.000038,63878144,31132085,0,0,82774,0,1,1 +1773679032.357970,0.80,4,3992.50,53.26,1631.57,2085.09,0.00,2.174534,0.000195,258,2,0.002480,0.001582,63878195,31132124,0,0,82776,0,1,1 +1773679037.357312,0.60,4,3992.50,53.24,1632.31,2084.34,0.00,55205.286888,58530.794413,3816811,3233388,0.000000,0.000030,63878195,31132127,0,0,82779,0,1,1 +1773679042.354192,0.65,4,3992.50,53.23,1632.43,2084.23,0.00,3520633657306.248535,3520633653981.279785,11,0,0.000000,0.000020,63878195,31132129,0,0,82781,0,1,1 +1773679047.357728,0.70,4,3992.50,53.24,1632.18,2084.47,0.00,1.656543,10.667651,253,669,0.000000,0.000030,63878195,31132132,0,0,82784,0,1,1 +1773679052.358303,0.70,4,3992.50,53.25,1631.95,2084.71,0.00,0.000000,0.000000,253,669,0.000000,0.000020,63878195,31132134,0,0,82786,0,1,1 +1773679057.357835,0.70,4,3992.50,53.25,1631.95,2084.71,0.00,3518766413407.127930,3518766413398.109863,11,0,0.000000,0.000674,63878195,31132141,0,0,82789,0,1,1 +1773679062.357593,0.80,4,3992.50,53.48,1632.18,2094.01,0.00,0.180282,0.000000,205,0,0.000031,0.000045,63878197,31132145,0,0,82791,0,1,1 +1773679067.356156,0.70,4,3992.50,53.48,1632.18,2094.01,0.00,1.995691,0.000195,258,2,0.000076,0.000123,63878203,31132154,0,0,82794,0,1,1 +1773679072.358343,0.60,4,3992.50,53.48,1632.18,2094.00,0.00,3516898501075.871094,3516898501078.045898,11,0,0.000000,0.000020,63878203,31132156,0,0,82796,0,1,1 +1773679077.357667,0.70,4,3992.50,53.48,1632.18,2094.00,0.00,2.175685,0.000195,258,2,0.000132,0.000179,63878213,31132169,0,0,82799,0,1,1 +1773679082.357471,0.70,4,3992.50,53.48,1632.18,2094.00,0.00,3518574996981.621582,3518574996983.796875,11,0,0.000008,0.000028,63878214,31132172,0,0,82801,0,1,1 +1773679087.354354,17.23,4,3992.50,54.46,1596.19,2132.08,0.00,0.000000,0.000000,11,0,40.091175,0.024053,63882640,31133711,0,0,82804,0,1,1 +1773679092.354159,0.70,4,3992.50,53.68,1626.81,2101.49,0.00,2.175476,0.000195,258,2,0.000000,0.000020,63882640,31133713,0,0,82806,0,1,1 +1773679097.358087,0.65,4,3992.50,53.16,1646.79,2081.51,0.00,3515675770018.597168,3515675770020.770996,11,0,0.000000,0.000030,63882640,31133716,0,0,82809,0,1,1 +1773679102.357751,0.70,4,3992.50,53.09,1649.70,2078.60,0.00,55203.898684,58527.256345,3816811,3233605,0.000000,0.000020,63882640,31133718,0,0,82811,0,1,1 +1773679107.357878,0.65,4,3992.50,53.10,1649.46,2078.84,0.00,3518348268245.021484,3518348264930.987793,253,669,0.000000,0.000030,63882640,31133721,0,0,82814,0,1,1 +1773679112.357918,0.65,4,3992.50,53.10,1649.24,2079.06,0.00,3518409251601.809570,3518409251592.611816,205,0,0.000000,0.000020,63882640,31133723,0,0,82816,0,1,1 +1773679117.357607,0.90,4,3992.50,53.71,1625.56,2102.86,0.00,3518655674472.858887,0.000000,75,0,0.000000,0.000030,63882640,31133726,0,0,82819,0,1,1 +1773679122.357496,0.60,4,3992.50,53.52,1632.78,2095.54,0.00,0.000000,0.000000,75,0,0.000000,0.000664,63882640,31133732,0,0,82821,0,1,1 +1773679127.353481,0.70,4,3992.50,53.53,1632.54,2095.79,0.00,55254.246030,58581.228236,3818314,3234412,0.000000,0.000030,63882640,31133735,0,0,82824,0,1,1 +1773679132.356696,1.25,4,3992.50,53.53,1632.54,2095.79,0.00,3516175849293.047852,3516175849292.100098,3816811,3233742,0.000157,0.000200,63882652,31133749,0,0,82826,0,1,1 +1773679137.358359,0.70,4,3992.50,53.54,1632.29,2096.03,0.00,3517267480051.611328,3517267476729.227539,205,0,0.000016,0.000046,63882654,31133754,0,0,82829,0,1,1 +1773679142.356071,0.60,4,3992.50,53.51,1633.37,2094.96,0.00,0.000000,0.000000,205,0,0.000000,0.000020,63882654,31133756,0,0,82831,0,1,1 +1773679147.353553,0.90,4,3992.50,53.52,1633.37,2095.38,0.00,55237.553392,58563.711071,3818314,3234436,0.000000,0.000030,63882654,31133759,0,0,82834,0,1,1 +1773679152.356809,16.62,4,3992.50,53.06,1651.47,2077.26,0.00,3516147205143.289062,3516147201818.976074,258,2,40.042407,0.028803,63887164,31135742,0,0,82836,0,1,1 +1773679157.353472,0.70,4,3992.50,53.07,1650.75,2078.00,0.00,3520787423211.519531,10.682131,253,669,0.000000,0.000030,63887164,31135745,0,0,82839,0,1,1 +1773679162.357050,0.70,4,3992.50,53.07,1650.75,2077.99,0.00,0.517306,3515921097600.133789,258,2,0.000000,0.000020,63887164,31135747,0,0,82841,0,1,1 +1773679167.354239,0.70,4,3992.50,53.07,1650.76,2077.99,0.00,3520416561684.665527,3520416561686.842285,11,0,0.000000,0.000030,63887164,31135750,0,0,82844,0,1,1 +1773679172.353451,0.65,4,3992.50,53.07,1650.76,2077.99,0.00,55218.617540,58543.594829,3818314,3234623,0.000000,0.000020,63887164,31135752,0,0,82846,0,1,1 +1773679177.353556,1.00,4,3992.50,53.10,1646.02,2078.88,0.00,0.000000,0.071092,3818314,3234651,0.000000,0.000030,63887164,31135755,0,0,82849,0,1,1 +1773679182.357476,0.65,4,3992.50,53.08,1646.60,2078.04,0.00,3515681319725.296875,3515681319724.390625,3816811,3234015,0.000000,0.000020,63887164,31135757,0,0,82851,0,1,1 +1773679187.355919,0.60,4,3992.50,53.08,1646.60,2078.04,0.00,3519533428514.097656,3519533425189.264160,205,0,0.000000,0.000674,63887164,31135764,0,0,82854,0,1,1 +1773679192.355224,0.65,4,3992.50,53.08,1646.36,2078.29,0.00,1.995395,0.000195,258,2,0.000000,0.000020,63887164,31135766,0,0,82856,0,1,1 +1773679197.357878,0.75,4,3992.50,53.08,1646.36,2078.29,0.00,0.000000,0.000000,258,2,0.000157,0.000210,63887176,31135781,0,0,82859,0,1,1 +1773679202.357595,0.65,4,3992.50,53.10,1645.64,2079.01,0.00,0.000000,0.000000,258,2,0.000016,0.000036,63887178,31135785,0,0,82861,0,1,1 +1773679207.358088,1.15,4,3992.50,53.51,1631.52,2094.96,0.00,3518090395531.490723,10.673948,253,669,0.000000,0.000030,63887178,31135788,0,0,82864,0,1,1 +1773679212.358117,0.70,4,3992.50,53.02,1648.79,2075.88,0.00,0.000000,0.000000,253,669,0.000000,0.000020,63887178,31135790,0,0,82866,0,1,1 +1773679217.353626,15.78,4,3992.50,53.05,1647.58,2077.06,0.00,3521600100909.186523,3521600100900.107422,75,0,40.100284,0.023424,63891502,31137350,0,0,82869,0,1,1 +1773679222.353677,0.65,4,3992.50,53.08,1646.61,2078.05,0.00,3518401225490.133301,0.000000,11,0,0.000000,0.000020,63891502,31137352,0,0,82871,0,1,1 +1773679227.358265,0.70,4,3992.50,53.08,1646.61,2078.05,0.00,0.180108,0.000000,205,0,0.000000,0.000030,63891502,31137355,0,0,82874,0,1,1 +1773679232.358009,0.65,4,3992.50,53.08,1646.61,2078.05,0.00,1.477517,10.675742,253,669,0.000000,0.000020,63891502,31137357,0,0,82876,0,1,1 +1773679237.357492,0.65,4,3992.50,53.08,1646.61,2078.03,0.00,3518800729851.101562,3518800729842.083496,11,0,0.000000,0.000030,63891502,31137360,0,0,82879,0,1,1 +1773679242.355867,1.00,4,3992.50,53.45,1628.91,2092.59,0.00,0.180332,0.000000,205,0,0.000000,0.000020,63891502,31137362,0,0,82881,0,1,1 +1773679247.354647,0.70,4,3992.50,53.37,1632.06,2089.45,0.00,1.995604,0.000195,258,2,0.000000,0.000030,63891502,31137365,0,0,82884,0,1,1 +1773679252.357616,0.75,4,3992.50,53.37,1631.81,2089.70,0.00,0.000000,0.000000,258,2,0.000000,0.000663,63891502,31137371,0,0,82886,0,1,1 +1773679257.358321,0.70,4,3992.50,53.37,1631.81,2089.69,0.00,3517940807030.753418,10.673494,253,669,0.000000,0.000030,63891502,31137374,0,0,82889,0,1,1 +1773679262.356712,0.60,4,3992.50,53.37,1631.82,2089.69,0.00,3519570161332.311523,3519570161323.111328,205,0,0.000157,0.000201,63891514,31137388,0,0,82891,0,1,1 +1773679267.358173,1.00,4,3992.50,53.37,1631.66,2089.64,0.00,1.994534,0.000195,258,2,0.000016,0.000046,63891516,31137393,0,0,82894,0,1,1 +1773679272.353471,0.75,4,3992.50,53.12,1641.69,2079.65,0.00,3521749264742.525879,3521749264744.523438,205,0,0.001435,0.001778,63891532,31137420,0,0,82896,0,1,1 +1773679277.355954,0.80,4,3992.50,53.12,1641.45,2079.89,0.00,3516690479272.036621,0.000000,11,0,0.001126,0.001231,63891541,31137437,0,0,82899,0,1,1 +1773679282.358044,16.96,4,3992.50,54.68,1580.45,2140.88,0.00,0.000000,0.000000,11,0,40.048657,0.024971,63895951,31139122,0,0,82901,0,1,1 +1773679287.357902,0.75,4,3992.50,53.95,1609.19,2112.12,0.00,55211.490422,58536.658153,3818315,3235173,0.000000,0.000030,63895951,31139125,0,0,82904,0,1,1 +1773679292.357763,0.70,4,3992.50,53.53,1625.38,2095.95,0.00,3518534690580.783203,3518534690579.836914,3816812,3234505,0.000000,0.000020,63895951,31139127,0,0,82906,0,1,1 +1773679297.358126,1.80,4,3992.50,53.51,1631.44,2094.85,0.00,3518182203684.158203,3518182200360.271484,11,0,0.000000,0.000030,63895951,31139130,0,0,82909,0,1,1 +1773679302.358143,0.65,4,3992.50,53.44,1633.86,2092.32,0.00,1.657709,10.675159,253,669,0.000000,0.000020,63895951,31139132,0,0,82911,0,1,1 +1773679307.353668,0.70,4,3992.50,53.44,1633.86,2092.32,0.00,3521588662376.195312,3521588662367.169922,11,0,0.000000,0.000030,63895951,31139135,0,0,82914,0,1,1 +1773679312.355686,0.75,4,3992.50,53.44,1633.86,2092.32,0.00,55187.652454,58511.506345,3818315,3235242,0.000000,0.000020,63895951,31139137,0,0,82916,0,1,1 +1773679317.353425,0.70,4,3992.50,53.44,1633.86,2092.32,0.00,0.000000,0.006253,3818315,3235245,0.000076,0.000724,63895956,31139148,0,0,82919,0,1,1 +1773679322.357396,0.70,4,3992.50,53.44,1633.86,2092.32,0.00,3515644603337.966309,3515644600024.414551,253,669,0.000039,0.000053,63895959,31139153,0,0,82921,0,1,1 +1773679327.353567,0.80,4,3992.50,53.54,1632.19,2096.01,0.00,3521133949598.696289,3521133949589.671875,11,0,0.000157,0.000211,63895971,31139168,0,0,82924,0,1,1 +1773679332.353566,0.85,4,3992.50,53.40,1637.41,2090.85,0.00,2.175391,0.000195,258,2,0.003589,0.003443,63896028,31139213,0,0,82926,0,1,1 +1773679337.356919,0.70,4,3992.50,53.40,1637.41,2090.85,0.00,3516079669024.405762,3516079669026.526367,75,0,0.000000,0.000030,63896028,31139216,0,0,82929,0,1,1 +1773679342.353913,0.60,4,3992.50,53.42,1636.68,2091.59,0.00,1.605164,10.681616,253,669,0.000000,0.000020,63896028,31139218,0,0,82931,0,1,1 +1773679347.358176,15.55,4,3992.50,54.89,1579.19,2149.08,0.00,3515440123919.388184,3515440123910.325195,75,0,40.027341,0.021816,63900295,31140727,0,0,82934,0,1,1 +1773679352.357962,0.80,4,3992.50,54.01,1613.62,2114.64,0.00,55212.231045,58537.794079,3818315,3235436,0.003093,0.001428,63900352,31140766,0,0,82936,0,1,1 +1773679357.353583,0.90,4,3992.50,53.59,1624.89,2098.13,0.00,3521520958292.574219,3521520958291.699219,3816812,3234795,0.000000,0.000030,63900352,31140769,0,0,82939,0,1,1 +1773679362.353572,0.75,4,3992.50,53.48,1629.20,2093.82,0.00,3518445289032.253906,3518445285707.699707,75,0,0.000000,0.000020,63900352,31140771,0,0,82941,0,1,1 +1773679367.353657,0.60,4,3992.50,53.48,1629.20,2093.82,0.00,0.000000,0.000000,75,0,0.000000,0.000030,63900352,31140774,0,0,82944,0,1,1 +1773679372.358272,0.65,4,3992.50,53.29,1636.60,2086.43,0.00,55149.251871,58470.777108,3816812,3234839,0.000000,0.000020,63900352,31140776,0,0,82946,0,1,1 +1773679377.357818,0.65,4,3992.50,53.29,1636.60,2086.42,0.00,9.727055,10.689642,3818315,3235516,0.000081,0.000117,63900358,31140785,0,0,82949,0,1,1 +1773679382.358293,0.55,4,3992.50,53.26,1637.81,2085.21,0.00,0.000000,0.006249,3818315,3235520,0.000008,0.000672,63900359,31140792,0,0,82951,0,1,1 +1773679387.353631,0.65,4,3992.50,53.26,1637.59,2085.43,0.00,3521720724634.358398,3521720724633.426270,3816812,3234858,0.000000,0.000030,63900359,31140795,0,0,82954,0,1,1 +1773679392.357583,0.90,4,3992.50,53.21,1639.27,2083.13,0.00,3515658765826.406738,3515658762504.404297,75,0,0.000056,0.000076,63900363,31140801,0,0,82956,0,1,1 +1773679397.356231,0.65,4,3992.50,53.22,1638.81,2083.59,0.00,1.604633,10.678082,253,669,0.000101,0.000154,63900371,31140812,0,0,82959,0,1,1 +1773679402.355637,0.60,4,3992.50,53.22,1638.81,2083.59,0.00,3518855239735.179688,3518855239725.980957,205,0,0.000000,0.000020,63900371,31140814,0,0,82961,0,1,1 +1773679407.357551,0.70,4,3992.50,53.23,1638.35,2084.05,0.00,0.000000,0.000000,205,0,0.000000,0.000030,63900371,31140817,0,0,82964,0,1,1 +1773679412.358049,16.55,4,3992.50,54.80,1576.73,2145.66,0.00,3518086789144.769531,0.000000,11,0,40.057943,0.022122,63904625,31142278,0,0,82966,0,1,1 +1773679417.354319,1.20,4,3992.50,54.00,1610.08,2114.19,0.00,0.180408,0.000000,205,0,0.003095,0.001447,63904682,31142319,0,0,82969,0,1,1 +1773679422.355603,0.75,4,3992.50,53.31,1633.60,2087.08,0.00,3517533444090.682129,0.000000,11,0,0.000000,0.000020,63904682,31142321,0,0,82971,0,1,1 +1773679427.353465,0.60,4,3992.50,53.04,1643.90,2076.79,0.00,55223.816674,58550.094234,3816812,3235124,0.000000,0.000030,63904682,31142324,0,0,82974,0,1,1 +1773679432.353940,0.75,4,3992.50,53.06,1643.41,2077.28,0.00,9.725248,10.677501,3818315,3235799,0.000000,0.000020,63904682,31142326,0,0,82976,0,1,1 +1773679437.355766,0.70,4,3992.50,53.06,1643.41,2077.27,0.00,3517152503170.036621,3517152499845.443359,11,0,0.000000,0.000030,63904682,31142329,0,0,82979,0,1,1 +1773679442.353450,0.65,4,3992.50,53.08,1642.68,2078.01,0.00,55225.778481,58552.195310,3816812,3235137,0.000000,0.000020,63904682,31142331,0,0,82981,0,1,1 +1773679447.354315,1.00,4,3992.50,53.22,1635.53,2083.63,0.00,3517828973117.419922,3517828969793.118652,11,0,0.000000,0.000674,63904682,31142338,0,0,82984,0,1,1 +1773679452.357922,0.75,4,3992.50,53.24,1634.83,2084.36,0.00,55170.119823,58493.595684,3818315,3235839,0.000000,0.000020,63904682,31142340,0,0,82986,0,1,1 +1773679457.358081,0.60,4,3992.50,53.04,1642.71,2076.48,0.00,3518325078836.877930,3518325075520.127441,253,669,0.000056,0.000086,63904686,31142347,0,0,82989,0,1,1 +1773679462.357790,0.75,4,3992.50,53.07,1641.49,2077.70,0.00,0.000000,0.000000,253,669,0.000117,0.000160,63904696,31142359,0,0,82991,0,1,1 +1773679467.356781,0.65,4,3992.50,53.08,1641.03,2078.16,0.00,3519148001468.251953,3519148001459.052246,205,0,0.000000,0.000030,63904696,31142362,0,0,82994,0,1,1 +1773679472.357410,0.70,4,3992.50,53.08,1641.03,2078.16,0.00,0.000000,0.000000,205,0,0.000000,0.000020,63904696,31142364,0,0,82996,0,1,1 +1773679477.354662,15.68,4,3992.50,54.88,1568.21,2148.64,0.00,55230.372704,58557.423112,3816812,3235268,40.083869,0.021818,63909016,31143872,0,0,82999,0,1,1 +1773679482.357960,0.75,4,3992.50,54.01,1602.08,2114.79,0.00,3516117859757.983887,3516117856432.960449,258,2,0.003083,0.001427,63909072,31143911,0,0,83001,0,1,1 +1773679487.358273,0.75,4,3992.50,53.34,1628.34,2088.53,0.00,3518216998753.748535,3518216998755.744141,205,0,0.000000,0.000030,63909072,31143914,0,0,83004,0,1,1 +1773679492.356562,0.60,4,3992.50,53.21,1633.74,2083.12,0.00,55218.912467,58545.418074,3816812,3235422,0.000000,0.000020,63909072,31143916,0,0,83006,0,1,1 +1773679497.358162,0.60,4,3992.50,53.21,1633.74,2083.12,0.00,3517311554894.603027,3517311551570.479492,11,0,0.000000,0.000030,63909072,31143919,0,0,83009,0,1,1 +1773679502.353438,0.90,4,3992.50,53.19,1634.29,2082.57,0.00,2.177448,0.000195,258,2,0.000000,0.000020,63909072,31143921,0,0,83011,0,1,1 +1773679507.358016,1.10,4,3992.50,53.18,1634.02,2082.06,0.00,3515218244092.634766,10.665234,253,669,0.000000,0.000030,63909072,31143924,0,0,83014,0,1,1 +1773679512.358263,0.95,4,3992.50,53.18,1634.02,2082.05,0.00,0.517650,3518263223719.585449,258,2,0.000000,0.000020,63909072,31143926,0,0,83016,0,1,1 +1773679517.357937,0.70,4,3992.50,52.99,1641.43,2074.66,0.00,55201.628048,58529.406886,3816812,3235584,0.000000,0.000674,63909072,31143933,0,0,83019,0,1,1 +1773679522.353478,0.80,4,3992.50,53.00,1641.18,2074.90,0.00,3521577963142.007324,3521577959813.472168,205,0,0.000056,0.000076,63909076,31143939,0,0,83021,0,1,1 +1773679527.353581,0.70,4,3992.50,53.04,1639.46,2076.62,0.00,1.477411,10.674975,253,669,0.000117,0.000170,63909086,31143952,0,0,83024,0,1,1 +1773679532.358024,0.65,4,3992.50,52.85,1646.84,2069.24,0.00,3515313523079.930664,3515313523070.867676,75,0,0.000000,0.000020,63909086,31143954,0,0,83026,0,1,1 +1773679537.354438,1.00,4,3992.50,53.29,1629.65,2086.43,0.00,2.123398,0.000195,258,2,0.000000,0.000030,63909086,31143957,0,0,83029,0,1,1 +1773679542.356556,15.71,4,3992.50,53.23,1632.05,2083.95,0.00,3516947408153.856445,3516947408156.031250,11,0,40.046934,0.021918,63913473,31145444,0,0,83031,0,1,1 +1773679547.353563,0.70,4,3992.50,53.22,1632.20,2083.80,0.00,0.000000,0.000000,11,0,0.001831,0.000904,63913509,31145471,0,0,83034,0,1,1 +1773679552.357860,0.65,4,3992.50,53.22,1632.20,2083.80,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63913509,31145473,0,0,83036,0,1,1 +1773679557.355919,0.65,4,3992.50,53.23,1631.96,2084.03,0.00,0.053536,0.000000,75,0,0.000000,0.000030,63913509,31145476,0,0,83039,0,1,1 +1773679562.358074,0.70,4,3992.50,53.23,1631.97,2084.03,0.00,0.000000,0.000000,75,0,0.000000,0.000020,63913509,31145478,0,0,83041,0,1,1 +1773679567.353571,0.90,4,3992.50,53.42,1629.89,2091.59,0.00,0.126872,0.000000,205,0,0.000000,0.000030,63913509,31145481,0,0,83044,0,1,1 +1773679572.353578,0.75,4,3992.50,53.43,1629.52,2092.07,0.00,3518432304188.387207,0.000000,11,0,0.001434,0.001776,63913525,31145508,0,0,83046,0,1,1 +1773679577.353465,0.65,4,3992.50,53.43,1629.53,2092.06,0.00,0.053517,0.000000,75,0,0.000213,0.000570,63913533,31145523,0,0,83049,0,1,1 +1773679582.353447,0.70,4,3992.50,53.43,1629.53,2092.06,0.00,1.604205,10.675232,253,669,0.000000,0.000664,63913533,31145529,0,0,83051,0,1,1 +1773679587.353565,0.70,4,3992.50,53.32,1634.01,2087.57,0.00,3518354234126.297363,3518354234117.280273,11,0,0.000069,0.000117,63913538,31145538,0,0,83054,0,1,1 +1773679592.358034,0.55,4,3992.50,53.32,1634.01,2087.57,0.00,55160.643939,58484.297086,3818316,3236525,0.000088,0.000113,63913545,31145546,0,0,83056,0,1,1 +1773679597.358141,1.00,4,3992.50,53.32,1634.00,2087.53,0.00,3518361873395.443848,3518361870068.711426,205,0,0.000000,0.000030,63913545,31145549,0,0,83059,0,1,1 +1773679602.358222,0.65,4,3992.50,53.15,1639.91,2081.12,0.00,3518380615730.869141,0.000000,75,0,0.000000,0.000020,63913545,31145551,0,0,83061,0,1,1 +1773679607.356563,15.73,4,3992.50,54.59,1583.60,2137.44,0.00,3519604804692.818359,0.000000,11,0,40.075120,0.020863,63917786,31146933,0,0,83064,0,1,1 +1773679612.356650,0.90,4,3992.50,53.72,1617.76,2103.27,0.00,0.000000,0.000000,11,0,0.003093,0.001436,63917843,31146973,0,0,83066,0,1,1 +1773679617.353568,0.60,4,3992.50,53.20,1638.10,2082.93,0.00,0.000000,0.000000,11,0,0.000062,0.000080,63917847,31146980,0,0,83069,0,1,1 +1773679622.353460,0.65,4,3992.50,53.00,1645.93,2075.10,0.00,0.180277,0.000000,205,0,0.000031,0.000045,63917849,31146984,0,0,83071,0,1,1 +1773679627.358255,0.95,4,3992.50,53.29,1635.89,2086.34,0.00,55156.868573,58480.708610,3818316,3236727,0.000000,0.000030,63917849,31146987,0,0,83074,0,1,1 +1773679632.353562,0.85,4,3992.50,53.19,1639.43,2082.52,0.00,3521742675435.386719,3521742672105.413574,11,0,0.002484,0.001585,63917900,31147026,0,0,83076,0,1,1 +1773679637.353458,0.75,4,3992.50,53.20,1638.97,2082.98,0.00,55211.103039,58538.064722,3818316,3236764,0.000000,0.000030,63917900,31147029,0,0,83079,0,1,1 +1773679642.357611,0.65,4,3992.50,53.21,1638.72,2083.23,0.00,3515517393090.229004,3515517393089.287598,3816813,3236096,0.000000,0.000020,63917900,31147031,0,0,83081,0,1,1 +1773679647.354571,0.75,4,3992.50,53.21,1638.72,2083.23,0.00,0.000000,0.002345,3816813,3236099,0.000000,0.000674,63917900,31147038,0,0,83084,0,1,1 +1773679652.358104,0.55,4,3992.50,53.21,1638.73,2083.23,0.00,3515952588909.633301,3515952585585.849609,205,0,0.000031,0.000045,63917902,31147042,0,0,83086,0,1,1 +1773679657.358140,0.90,4,3992.50,53.25,1637.45,2084.95,0.00,3518411796098.298340,0.000000,11,0,0.000084,0.000131,63917909,31147052,0,0,83089,0,1,1 +1773679662.353575,0.70,4,3992.50,53.19,1639.94,2082.35,0.00,55250.672743,58579.713257,3816813,3236132,0.000000,0.000020,63917909,31147054,0,0,83091,0,1,1 +1773679667.354179,0.65,4,3992.50,53.19,1639.94,2082.35,0.00,3518011610073.407227,3518011606747.808594,11,0,0.000000,0.000030,63917909,31147057,0,0,83094,0,1,1 +1773679672.357475,16.11,4,3992.50,53.80,1615.88,2106.40,0.00,0.180155,0.000000,205,0,40.035446,0.021610,63922229,31148550,0,0,83096,0,1,1 +1773679677.358415,0.85,4,3992.50,53.33,1634.10,2088.18,0.00,1.477164,10.673190,253,669,0.003166,0.001517,63922291,31148595,0,0,83099,0,1,1 +1773679682.354669,0.75,4,3992.50,53.31,1635.00,2087.28,0.00,0.000000,0.000000,253,669,0.000000,0.000020,63922291,31148597,0,0,83101,0,1,1 +1773679687.357592,0.65,4,3992.50,53.30,1635.36,2086.91,0.00,0.000000,0.000000,253,669,0.000000,0.000030,63922291,31148600,0,0,83104,0,1,1 +1773679692.355216,0.95,4,3992.50,53.40,1634.32,2090.85,0.00,55224.804136,58543.542449,3816813,3236305,0.000000,0.000020,63922291,31148602,0,0,83106,0,1,1 +1773679697.358200,0.65,4,3992.50,53.41,1634.12,2091.05,0.00,3516338365242.127930,3516338361917.933105,11,0,0.000000,0.000030,63922291,31148605,0,0,83109,0,1,1 +1773679702.357920,0.60,4,3992.50,53.41,1634.12,2091.05,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63922291,31148607,0,0,83111,0,1,1 +1773679707.357507,0.60,4,3992.50,53.41,1634.12,2091.05,0.00,1.657852,10.676079,253,669,0.000000,0.000030,63922291,31148610,0,0,83114,0,1,1 +1773679712.353451,0.65,4,3992.50,53.41,1634.12,2091.05,0.00,3521293210785.099609,3521293210776.074707,11,0,0.000000,0.000664,63922291,31148616,0,0,83116,0,1,1 +1773679717.354702,0.90,4,3992.50,53.47,1633.87,2093.45,0.00,2.174847,0.000195,258,2,0.000056,0.000086,63922295,31148623,0,0,83119,0,1,1 +1773679722.354582,0.55,4,3992.50,53.47,1633.90,2093.45,0.00,3518521702661.192383,3518521702663.368164,11,0,0.000117,0.000160,63922305,31148635,0,0,83121,0,1,1 +1773679727.358429,0.70,4,3992.50,53.48,1633.67,2093.68,0.00,0.053474,0.000000,75,0,0.000000,0.000030,63922305,31148638,0,0,83124,0,1,1 +1773679732.357759,0.60,4,3992.50,53.48,1633.67,2093.68,0.00,1.604414,10.676626,253,669,0.000000,0.000020,63922305,31148640,0,0,83126,0,1,1 +1773679737.353436,16.55,4,3992.50,54.22,1604.34,2123.01,0.00,3521481741840.563965,3521481741831.539062,11,0,40.097552,0.019534,63926658,31149895,0,0,83129,0,1,1 +1773679742.354844,0.85,4,3992.50,53.62,1627.82,2099.52,0.00,0.053501,0.000000,75,0,0.003084,0.001428,63926714,31149934,0,0,83131,0,1,1 +1773679747.353555,0.85,4,3992.50,53.63,1626.73,2099.64,0.00,2.122422,0.000195,258,2,0.000000,0.000030,63926714,31149937,0,0,83134,0,1,1 +1773679752.357824,0.65,4,3992.50,53.62,1626.99,2099.39,0.00,3515435699647.918457,3515435699650.091797,11,0,0.000000,0.000020,63926714,31149939,0,0,83136,0,1,1 +1773679757.357984,0.55,4,3992.50,53.63,1626.74,2099.63,0.00,0.180268,0.000000,205,0,0.000000,0.000030,63926714,31149942,0,0,83139,0,1,1 +1773679762.356544,0.75,4,3992.50,53.63,1626.75,2099.63,0.00,3519450429098.227051,0.000000,75,0,0.000000,0.000020,63926714,31149944,0,0,83141,0,1,1 +1773679767.357629,0.70,4,3992.50,53.63,1626.74,2099.63,0.00,55197.923999,58524.718834,3818316,3237270,0.000000,0.000030,63926714,31149947,0,0,83144,0,1,1 +1773679772.353581,0.65,4,3992.50,53.63,1626.75,2099.63,0.00,0.000000,0.008601,3818316,3237274,0.000000,0.000020,63926714,31149949,0,0,83146,0,1,1 +1773679777.358362,0.95,4,3992.50,54.02,1622.96,2115.06,0.00,3515076235324.499023,3515076232000.026367,205,0,0.000000,0.000673,63926714,31149956,0,0,83149,0,1,1 +1773679782.356887,0.60,4,3992.50,54.02,1622.61,2115.05,0.00,3519475425977.879883,0.000000,11,0,0.000056,0.000076,63926718,31149962,0,0,83151,0,1,1 +1773679787.357917,0.60,4,3992.50,54.02,1622.62,2115.05,0.00,0.180236,0.000000,205,0,0.000117,0.000170,63926728,31149975,0,0,83154,0,1,1 +1773679792.354643,0.65,4,3992.50,53.83,1630.01,2107.66,0.00,3520742623543.748047,0.000000,11,0,0.000000,0.000020,63926728,31149977,0,0,83156,0,1,1 +1773679797.354565,0.65,4,3992.50,53.83,1630.01,2107.66,0.00,0.180276,0.000000,205,0,0.000000,0.000030,63926728,31149980,0,0,83159,0,1,1 +1773679802.358210,15.86,4,3992.50,58.88,1432.57,2305.09,0.00,3515873585047.367188,0.000000,11,0,40.031322,0.023603,63930998,31151661,0,0,83161,0,1,1 +1773679807.355913,1.15,4,3992.50,54.32,1611.16,2126.70,0.00,0.053540,0.000000,75,0,0.004250,0.002195,63931091,31151732,0,0,83164,0,1,1 +1773679812.357571,0.95,4,3992.50,53.90,1627.60,2110.25,0.00,55191.592654,58518.295702,3818317,3237526,0.000000,0.000020,63931091,31151734,0,0,83166,0,1,1 +1773679817.357448,0.65,4,3992.50,53.78,1632.18,2105.66,0.00,3518523960586.946289,3518523957268.129395,253,669,0.000000,0.000030,63931091,31151737,0,0,83169,0,1,1 +1773679822.357385,0.70,4,3992.50,53.80,1631.32,2106.52,0.00,3518481493193.312012,3518481493184.294922,11,0,0.000000,0.000020,63931091,31151739,0,0,83171,0,1,1 +1773679827.358033,0.70,4,3992.50,53.80,1631.32,2106.52,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63931091,31151742,0,0,83174,0,1,1 +1773679832.357425,0.65,4,3992.50,53.61,1638.72,2099.12,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63931091,31151744,0,0,83176,0,1,1 +1773679837.357832,0.85,4,3992.50,53.47,1628.48,2093.32,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63931091,31151747,0,0,83179,0,1,1 +1773679842.353562,0.75,4,3992.50,53.47,1628.27,2093.54,0.00,0.000000,0.000000,11,0,0.000000,0.000664,63931091,31151753,0,0,83181,0,1,1 +1773679847.353554,0.55,4,3992.50,53.47,1628.27,2093.54,0.00,1.657717,10.675212,253,669,0.000031,0.000055,63931093,31151758,0,0,83184,0,1,1 +1773679852.355619,0.60,4,3992.50,53.28,1635.91,2085.90,0.00,3516984512098.248047,3516984512089.234375,11,0,0.000142,0.000191,63931105,31151772,0,0,83186,0,1,1 +1773679857.358046,1.15,4,3992.50,53.31,1634.70,2087.11,0.00,2.174335,0.000195,258,2,0.000000,0.000030,63931105,31151775,0,0,83189,0,1,1 +1773679862.357724,0.60,4,3992.50,53.31,1634.70,2087.11,0.00,3518663842502.114258,10.675688,253,669,0.000000,0.000020,63931105,31151777,0,0,83191,0,1,1 +1773679867.358026,1.00,4,3992.50,53.29,1635.32,2086.48,0.00,55195.244019,58513.001629,3816814,3236979,0.002234,0.000734,63931129,31151796,0,0,83194,0,1,1 +1773679872.355866,21.45,4,3992.50,55.22,1568.57,2162.00,0.00,3519957619794.774414,3519957616464.185547,258,2,40.080537,0.024733,63935521,31153450,0,0,83196,0,1,1 +1773679877.353437,0.70,4,3992.50,54.35,1602.73,2127.84,0.00,3520147154859.120117,3520147154861.116211,205,0,0.000824,0.000815,63935540,31153471,0,0,83199,0,1,1 +1773679882.357720,0.60,4,3992.50,53.91,1619.69,2110.88,0.00,3515426066467.329590,0.000000,75,0,0.000008,0.000028,63935541,31153474,0,0,83201,0,1,1 +1773679887.353635,0.75,4,3992.50,53.83,1623.01,2107.56,0.00,55255.040433,58585.902870,3818317,3237834,0.000000,0.000030,63935541,31153477,0,0,83204,0,1,1 +1773679892.358307,0.60,4,3992.50,53.84,1622.78,2107.79,0.00,3515152194034.418945,3515152190718.447754,253,669,0.000000,0.000020,63935541,31153479,0,0,83206,0,1,1 +1773679897.358239,0.85,4,3992.50,53.83,1622.72,2107.71,0.00,0.517683,3518485248159.011719,258,2,0.000000,0.000030,63935541,31153482,0,0,83209,0,1,1 +1773679902.358053,0.65,4,3992.50,53.77,1625.11,2105.33,0.00,55200.104341,58529.616114,3816814,3237196,0.000000,0.000020,63935541,31153484,0,0,83211,0,1,1 +1773679907.358016,0.60,4,3992.50,53.77,1625.11,2105.33,0.00,3518463351457.396484,3518463348130.158691,11,0,0.000000,0.000674,63935541,31153491,0,0,83214,0,1,1 +1773679912.357905,0.60,4,3992.50,53.77,1625.11,2105.32,0.00,0.053517,0.000000,75,0,0.000000,0.000020,63935541,31153493,0,0,83216,0,1,1 +1773679917.353561,0.75,4,3992.50,53.78,1624.89,2105.54,0.00,1.605594,10.684478,253,669,0.000194,0.000230,63935555,31153510,0,0,83219,0,1,1 +1773679922.357367,0.70,4,3992.50,53.78,1624.89,2105.54,0.00,3515760991926.226562,3515760991917.216309,11,0,0.000064,0.000084,63935560,31153517,0,0,83221,0,1,1 +1773679927.353458,1.00,4,3992.50,53.78,1625.07,2105.50,0.00,0.180414,0.000000,205,0,0.000000,0.000030,63935560,31153520,0,0,83224,0,1,1 +1773679932.353586,0.85,4,3992.50,53.30,1643.63,2086.84,0.00,1.995066,0.000195,258,2,0.004510,0.004125,63935619,31153569,0,0,83226,0,1,1 +1773679937.357568,10.38,4,3992.50,58.46,1441.72,2288.72,0.00,55163.842025,58491.625047,3818317,3237964,4.610290,0.009814,63936460,31154183,0,0,83229,0,1,1 +1773679942.355908,7.73,4,3992.50,54.02,1615.49,2114.96,0.00,0.000000,0.090655,3818317,3238069,35.463815,0.016939,63940081,31155395,0,0,83231,0,1,1 +1773679947.353584,0.70,4,3992.50,53.63,1630.55,2099.90,0.00,3520073214007.845215,3520073210675.771973,258,2,0.000000,0.000030,63940081,31155398,0,0,83234,0,1,1 +1773679952.358047,0.70,4,3992.50,53.63,1630.55,2099.89,0.00,0.000000,0.000000,258,2,0.000000,0.000020,63940081,31155400,0,0,83236,0,1,1 +1773679957.357720,0.95,4,3992.50,53.76,1632.35,2104.97,0.00,3518666756144.195312,3518666756146.371094,11,0,0.000000,0.000030,63940081,31155403,0,0,83239,0,1,1 +1773679962.353841,0.70,4,3992.50,53.63,1637.79,2099.54,0.00,2.177080,0.000195,258,2,0.000000,0.000020,63940081,31155405,0,0,83241,0,1,1 +1773679967.355052,0.65,4,3992.50,53.60,1638.95,2098.37,0.00,55184.682672,58513.566720,3816814,3237470,0.000000,0.000030,63940081,31155408,0,0,83244,0,1,1 +1773679972.353816,0.65,4,3992.50,53.63,1637.54,2099.79,0.00,3519307151045.862793,3519307147717.524414,11,0,0.000000,0.000664,63940081,31155414,0,0,83246,0,1,1 +1773679977.357614,0.70,4,3992.50,53.62,1638.05,2099.27,0.00,55158.335892,58483.346260,3816814,3237482,0.000081,0.000117,63940087,31155423,0,0,83249,0,1,1 +1773679982.358151,0.65,4,3992.50,53.62,1638.11,2099.22,0.00,3518059040439.213379,3518059037109.860352,258,2,0.000047,0.000061,63940091,31155429,0,0,83251,0,1,1 +1773679987.357858,0.85,4,3992.50,53.74,1633.67,2103.91,0.00,3518643431646.452637,3518643431648.628418,11,0,0.000126,0.000185,63940101,31155442,0,0,83254,0,1,1 +1773679992.357578,0.60,4,3992.50,53.70,1633.07,2102.52,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63940101,31155444,0,0,83256,0,1,1 +1773679997.354584,0.70,4,3992.50,53.73,1631.84,2103.74,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63940101,31155447,0,0,83259,0,1,1 +1773680002.361554,5.40,4,3992.50,58.57,1442.37,2293.21,0.00,0.180022,0.000000,205,0,3.006920,0.007138,63940712,31155848,0,0,83261,0,1,1 +1773680007.353510,10.84,4,3992.50,54.68,1594.86,2140.72,0.00,0.000000,0.000000,205,0,37.112841,0.014885,63944399,31156858,0,0,83264,0,1,1 +1773680012.353550,0.70,4,3992.50,53.92,1624.68,2110.91,0.00,1.995101,0.000195,258,2,0.000008,0.000028,63944400,31156861,0,0,83266,0,1,1 +1773680017.353454,0.90,4,3992.50,53.74,1622.79,2103.96,0.00,55208.869565,58539.786437,3818318,3238358,0.000000,0.000030,63944400,31156864,0,0,83269,0,1,1 +1773680022.357573,0.75,4,3992.50,53.74,1621.69,2104.05,0.00,3515540543729.244141,3515540540403.307129,11,0,0.000000,0.000020,63944400,31156866,0,0,83271,0,1,1 +1773680027.358397,0.65,4,3992.50,53.74,1621.78,2103.95,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63944400,31156869,0,0,83274,0,1,1 +1773680032.357853,0.70,4,3992.50,53.72,1622.43,2103.30,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63944400,31156871,0,0,83276,0,1,1 +1773680037.357464,0.70,4,3992.50,53.73,1622.21,2103.52,0.00,0.180287,0.000000,205,0,0.000000,0.000674,63944400,31156878,0,0,83279,0,1,1 +1773680042.353558,0.60,4,3992.50,53.73,1621.97,2103.76,0.00,3521187707899.153320,0.000000,11,0,0.000000,0.000020,63944400,31156880,0,0,83281,0,1,1 +1773680047.353441,0.70,4,3992.50,53.73,1621.98,2103.75,0.00,2.175442,0.000195,258,2,0.000031,0.000055,63944402,31156885,0,0,83284,0,1,1 +1773680052.355068,1.00,4,3992.50,53.73,1621.75,2103.71,0.00,55180.118984,58509.048294,3816815,3237753,0.000165,0.000208,63944415,31156900,0,0,83286,0,1,1 +1773680057.353463,0.55,4,3992.50,53.54,1629.38,2096.08,0.00,0.000000,0.014849,3816815,3237770,0.000000,0.000030,63944415,31156903,0,0,83289,0,1,1 +1773680062.354584,0.70,4,3992.50,53.54,1629.19,2096.27,0.00,9.723992,10.789378,3818318,3238468,0.000000,0.000020,63944415,31156905,0,0,83291,0,1,1 +1773680067.353576,1.00,4,3992.50,53.52,1629.91,2095.55,0.00,3519146710074.647949,3519146706745.004883,75,0,0.002879,0.001646,63944440,31156925,0,0,83294,0,1,1 +1773680072.357820,15.97,4,3992.50,54.52,1590.98,2134.46,0.00,3515453578746.518555,0.000000,11,0,40.035214,0.029287,63948957,31158982,0,0,83296,0,1,1 +1773680077.355390,1.00,4,3992.50,54.16,1608.76,2120.31,0.00,2.176448,0.000195,258,2,0.000000,0.000030,63948957,31158985,0,0,83299,0,1,1 +1773680082.357738,0.60,4,3992.50,53.84,1621.00,2108.08,0.00,3516785281288.094727,3516785281290.089355,205,0,0.000000,0.000020,63948957,31158987,0,0,83301,0,1,1 +1773680087.354152,0.85,4,3992.50,53.85,1620.75,2108.33,0.00,1.996549,0.000195,258,2,0.000000,0.000030,63948957,31158990,0,0,83304,0,1,1 +1773680092.358116,0.65,4,3992.50,53.68,1627.29,2101.79,0.00,3515649913035.592285,3515649913037.766113,11,0,0.000000,0.000020,63948957,31158992,0,0,83306,0,1,1 +1773680097.356808,0.80,4,3992.50,53.70,1626.55,2102.52,0.00,1.658149,10.677988,253,669,0.000000,0.000030,63948957,31158995,0,0,83309,0,1,1 +1773680102.353556,0.55,4,3992.50,53.71,1626.32,2102.75,0.00,3520726998886.861328,3520726998877.838379,11,0,0.000000,0.000503,63948957,31159000,0,0,83311,0,1,1 +1773680107.357461,0.90,4,3992.50,53.76,1624.31,2104.66,0.00,1.656421,10.666865,253,669,0.000000,0.000191,63948957,31159004,0,0,83314,0,1,1 +1773680112.353564,0.95,4,3992.50,53.76,1624.34,2104.66,0.00,0.518080,3521181779926.161133,258,2,0.000000,0.000020,63948957,31159006,0,0,83316,0,1,1 +1773680117.353448,0.75,4,3992.50,53.76,1624.34,2104.66,0.00,3518518874407.803223,3518518874409.979004,11,0,0.000157,0.000210,63948969,31159021,0,0,83319,0,1,1 +1773680122.354658,0.65,4,3992.50,53.60,1630.46,2098.55,0.00,0.000000,0.000000,11,0,0.000016,0.000036,63948971,31159025,0,0,83321,0,1,1 +1773680127.358270,0.75,4,3992.50,53.62,1629.48,2099.53,0.00,0.053477,0.000000,75,0,0.000000,0.000030,63948971,31159028,0,0,83324,0,1,1 +1773680132.355451,1.05,4,3992.50,53.45,1636.48,2092.51,0.00,1.605104,10.681217,253,669,0.002210,0.000715,63948993,31159045,0,0,83326,0,1,1 +1773680137.353561,17.08,4,3992.50,53.79,1623.59,2105.87,0.00,55219.467636,58540.198647,3816815,3238266,40.077790,0.021951,63953341,31160529,0,0,83329,0,1,1 +1773680142.356236,0.65,4,3992.50,53.79,1622.88,2106.11,0.00,3516555534137.323242,3516555530810.429688,205,0,0.000000,0.000020,63953341,31160531,0,0,83331,0,1,1 +1773680147.357394,0.70,4,3992.50,53.79,1622.88,2106.10,0.00,3517622893957.138672,0.000000,75,0,0.000000,0.000066,63953341,31160535,0,0,83334,0,1,1 +1773680152.358239,0.60,4,3992.50,53.79,1622.89,2106.10,0.00,3517842354405.249023,0.000000,11,0,0.000000,0.000020,63953341,31160537,0,0,83336,0,1,1 +1773680157.358041,0.70,4,3992.50,53.80,1622.64,2106.34,0.00,2.175477,0.000195,258,2,0.000000,0.000030,63953341,31160540,0,0,83339,0,1,1 +1773680162.354026,0.70,4,3992.50,53.80,1622.64,2106.34,0.00,55242.432510,58575.804849,3816815,3238286,0.000000,0.000020,63953341,31160542,0,0,83341,0,1,1 +1773680167.357697,0.85,4,3992.50,53.89,1624.73,2110.00,0.00,3515855660573.649414,3515855657256.582031,253,669,0.000000,0.000030,63953341,31160545,0,0,83344,0,1,1 +1773680172.358021,0.65,4,3992.50,53.87,1625.31,2109.26,0.00,3518208977739.716797,3518208977730.646973,75,0,0.001434,0.002420,63953357,31160576,0,0,83346,0,1,1 +1773680177.355045,0.65,4,3992.50,53.88,1625.08,2109.50,0.00,1.605155,10.681555,253,669,0.000213,0.000570,63953365,31160591,0,0,83349,0,1,1 +1773680182.357746,0.65,4,3992.50,53.88,1625.08,2109.49,0.00,3516536970062.647949,3516536970053.635742,11,0,0.000157,0.000200,63953377,31160605,0,0,83351,0,1,1 +1773680187.357903,0.55,4,3992.50,53.88,1625.08,2109.49,0.00,55208.246074,58537.700570,3818318,3239020,0.000000,0.000030,63953377,31160608,0,0,83354,0,1,1 +1773680192.357551,0.65,4,3992.50,53.73,1630.96,2103.61,0.00,3518685028849.729980,3518685025517.761230,258,2,0.000000,0.000020,63953377,31160610,0,0,83356,0,1,1 +1773680197.357794,1.25,4,3992.50,53.94,1622.88,2111.69,0.00,3518266325278.298828,3518266325280.474121,11,0,0.002234,0.000734,63953401,31160629,0,0,83359,0,1,1 +1773680202.356568,16.23,4,3992.50,54.80,1589.15,2145.43,0.00,1.658121,10.677813,253,669,40.076848,0.029176,63957923,31162679,0,0,83361,0,1,1 +1773680207.356047,0.60,4,3992.50,54.03,1619.37,2115.20,0.00,3518803890063.470703,3518803890054.452637,11,0,0.000000,0.000030,63957923,31162682,0,0,83364,0,1,1 +1773680212.358096,0.70,4,3992.50,53.60,1636.09,2098.48,0.00,55187.364856,58515.729136,3818318,3239196,0.000000,0.000020,63957923,31162684,0,0,83366,0,1,1 +1773680217.357677,0.65,4,3992.50,53.62,1635.09,2099.48,0.00,3518731366062.733398,3518731362732.673340,75,0,0.000062,0.000080,63957927,31162691,0,0,83369,0,1,1 +1773680222.357589,0.60,4,3992.50,53.60,1635.95,2098.62,0.00,3518499865625.053223,0.000000,11,0,0.000031,0.000045,63957929,31162695,0,0,83371,0,1,1 +1773680227.358173,1.00,4,3992.50,54.20,1614.42,2121.91,0.00,1.657521,10.673948,253,669,0.000000,0.000043,63957929,31162699,0,0,83374,0,1,1 +1773680232.354095,0.85,4,3992.50,53.94,1622.71,2111.87,0.00,0.000000,0.000000,253,669,0.002483,0.001584,63957980,31162738,0,0,83376,0,1,1 +1773680237.356446,0.60,4,3992.50,53.94,1622.59,2111.98,0.00,55172.651116,58490.949063,3816815,3238571,0.000008,0.000681,63957981,31162746,0,0,83379,0,1,1 +1773680242.357989,0.60,4,3992.50,53.95,1622.35,2112.23,0.00,3517352045654.229980,3517352042335.395020,253,669,0.000000,0.000020,63957981,31162748,0,0,83381,0,1,1 +1773680247.354087,0.75,4,3992.50,53.97,1621.61,2112.96,0.00,3521184582870.319824,3521184582861.115234,205,0,0.000107,0.000148,63957989,31162759,0,0,83384,0,1,1 +1773680252.358357,0.70,4,3992.50,53.97,1621.61,2112.96,0.00,1.993415,0.000195,258,2,0.000000,0.000020,63957989,31162761,0,0,83386,0,1,1 +1773680257.357840,0.90,4,3992.50,53.95,1622.15,2112.07,0.00,3518801505474.618164,3518801505476.740234,75,0,0.000000,0.000030,63957989,31162764,0,0,83389,0,1,1 +1773680262.354564,0.95,4,3992.50,53.89,1624.20,2110.05,0.00,55246.116128,58578.268604,3818318,3239321,0.002236,0.000725,63958013,31162782,0,0,83391,0,1,1 +1773680267.357470,17.53,4,3992.50,53.78,1628.80,2105.41,0.00,3516393866155.231934,3516393866154.297852,3816815,3238696,40.044108,0.028372,63962529,31164720,0,0,83394,0,1,1 +1773680272.358027,0.60,4,3992.50,53.77,1628.82,2105.41,0.00,3518045093590.802734,3518045090262.192383,11,0,0.000008,0.000028,63962530,31164723,0,0,83396,0,1,1 +1773680277.354807,0.60,4,3992.50,53.77,1628.82,2105.41,0.00,1.658783,10.682075,253,669,0.000081,0.000117,63962536,31164732,0,0,83399,0,1,1 +1773680282.355329,0.60,4,3992.50,53.78,1628.59,2105.64,0.00,0.517622,3518069618443.144043,258,2,0.000000,0.000020,63962536,31164734,0,0,83401,0,1,1 +1773680287.357485,0.90,4,3992.50,53.78,1631.15,2105.56,0.00,3516920920078.674805,3516920920080.795410,75,0,0.000000,0.000030,63962536,31164737,0,0,83404,0,1,1 +1773680292.357795,0.75,4,3992.50,53.78,1628.67,2105.56,0.00,3518218644475.364258,0.000000,11,0,0.000000,0.000020,63962536,31164739,0,0,83406,0,1,1 +1773680297.353798,0.60,4,3992.50,53.78,1628.67,2105.56,0.00,0.053558,0.000000,75,0,0.000000,0.000030,63962536,31164742,0,0,83409,0,1,1 +1773680302.357559,0.60,4,3992.50,53.78,1628.67,2105.56,0.00,0.000000,0.000000,75,0,0.000000,0.000663,63962536,31164748,0,0,83411,0,1,1 +1773680307.357835,0.60,4,3992.50,53.78,1628.68,2105.56,0.00,3518243129926.424316,0.000000,11,0,0.000000,0.000030,63962536,31164751,0,0,83414,0,1,1 +1773680312.354130,0.65,4,3992.50,53.61,1635.14,2099.09,0.00,55250.923377,58583.539265,3818318,3239538,0.000157,0.000201,63962548,31164765,0,0,83416,0,1,1 +1773680317.357756,0.95,4,3992.50,53.69,1633.54,2102.24,0.00,3515887019290.933105,3515887019290.024414,3816815,3238881,0.000016,0.000046,63962550,31164770,0,0,83419,0,1,1 +1773680322.357652,0.75,4,3992.50,53.51,1640.55,2095.22,0.00,3518510142363.220215,3518510139031.738770,258,2,0.000000,0.000020,63962550,31164772,0,0,83421,0,1,1 +1773680327.357362,0.75,4,3992.50,53.35,1646.98,2088.80,0.00,55211.013782,58543.592043,3818318,3239576,0.000000,0.000030,63962550,31164775,0,0,83424,0,1,1 +1773680332.356983,14.31,4,3992.50,54.61,1597.67,2138.10,0.00,0.000000,0.012794,3818318,3239621,40.069027,0.025726,63966998,31166519,0,0,83426,0,1,1 +1773680337.355737,0.70,4,3992.50,54.01,1621.00,2114.79,0.00,3519314394873.655762,3519314391551.623535,253,669,0.000000,0.000030,63966998,31166522,0,0,83429,0,1,1 +1773680342.353567,0.70,4,3992.50,53.74,1631.76,2104.03,0.00,55222.562274,58544.281298,3816815,3238965,0.000000,0.000020,63966998,31166524,0,0,83431,0,1,1 +1773680347.353454,0.95,4,3992.50,53.84,1630.08,2107.88,0.00,3518516858647.005859,3518516855326.652832,253,669,0.000000,0.000030,63966998,31166527,0,0,83434,0,1,1 +1773680352.358165,0.65,4,3992.50,53.66,1636.69,2100.88,0.00,3515124705806.127930,3515124705797.119629,11,0,0.000000,0.000020,63966998,31166529,0,0,83436,0,1,1 +1773680357.358249,0.70,4,3992.50,53.66,1636.70,2100.88,0.00,2.175354,0.000195,258,2,0.000000,0.000063,63966998,31166533,0,0,83439,0,1,1 +1773680362.357675,0.55,4,3992.50,53.67,1636.45,2101.12,0.00,3518840976881.380859,3518840976883.556641,11,0,0.000000,0.000020,63966998,31166535,0,0,83441,0,1,1 +1773680367.357816,0.75,4,3992.50,53.67,1636.45,2101.12,0.00,1.657668,10.674894,253,669,0.000000,0.000674,63966998,31166542,0,0,83444,0,1,1 +1773680372.353437,0.60,4,3992.50,53.63,1637.99,2099.58,0.00,0.000000,0.000000,253,669,0.000000,0.000020,63966998,31166544,0,0,83446,0,1,1 +1773680377.353450,0.60,4,3992.50,53.65,1637.01,2100.55,0.00,55208.176358,58529.595783,3818318,3239787,0.000157,0.000210,63967010,31166559,0,0,83449,0,1,1 +1773680382.353445,0.85,4,3992.50,53.69,1635.79,2101.99,0.00,3518440615818.842773,3518440612488.340332,75,0,0.000016,0.000036,63967012,31166563,0,0,83451,0,1,1 +1773680387.357630,0.65,4,3992.50,53.69,1635.81,2101.99,0.00,55163.759930,58491.516320,3818318,3239816,0.000000,0.000030,63967012,31166566,0,0,83454,0,1,1 +1773680392.357611,0.65,4,3992.50,53.70,1635.41,2102.39,0.00,3518449965756.928223,3518449962426.428223,11,0,0.000000,0.000020,63967012,31166568,0,0,83456,0,1,1 +1773680397.357714,16.55,4,3992.50,54.85,1590.37,2147.43,0.00,55199.111382,58528.601439,3816815,3239204,40.068395,0.031238,63971486,31168669,0,0,83459,0,1,1 +1773680402.355169,1.00,4,3992.50,54.11,1619.16,2118.60,0.00,9.731126,10.815467,3818318,3239972,0.000000,0.000020,63971486,31168671,0,0,83461,0,1,1 +1773680407.354370,1.10,4,3992.50,53.79,1621.27,2105.94,0.00,3518999310294.223145,3518999306962.868652,205,0,0.000000,0.000030,63971486,31168674,0,0,83464,0,1,1 +1773680412.356634,1.10,4,3992.50,53.71,1624.36,2102.83,0.00,3516845229409.225098,0.000000,11,0,0.000000,0.000020,63971486,31168676,0,0,83466,0,1,1 +1773680417.357208,0.60,4,3992.50,53.71,1624.30,2102.88,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63971486,31168679,0,0,83469,0,1,1 +1773680422.357464,0.70,4,3992.50,53.69,1625.07,2102.12,0.00,1.657630,10.674651,253,669,0.000000,0.000020,63971486,31168681,0,0,83471,0,1,1 +1773680427.358413,0.80,4,3992.50,53.70,1624.82,2102.36,0.00,55197.837554,58518.997605,3818318,3240120,0.000000,0.000030,63971486,31168684,0,0,83474,0,1,1 +1773680432.354603,0.55,4,3992.50,53.71,1624.28,2102.91,0.00,3521120422084.599609,3521120418749.074219,258,2,0.000000,0.000664,63971486,31168690,0,0,83476,0,1,1 +1773680437.357334,1.00,4,3992.50,53.69,1625.03,2102.11,0.00,3516516552244.273438,3516516552246.267578,205,0,0.000000,0.000030,63971486,31168693,0,0,83479,0,1,1 +1773680442.358111,0.60,4,3992.50,53.73,1623.35,2103.78,0.00,1.994807,0.000195,258,2,0.000157,0.000200,63971498,31168707,0,0,83481,0,1,1 +1773680447.358066,0.60,4,3992.50,53.73,1623.35,2103.78,0.00,3518469397950.212402,3518469397952.334473,75,0,0.000016,0.000046,63971500,31168712,0,0,83484,0,1,1 +1773680452.353435,0.65,4,3992.50,53.73,1623.35,2103.77,0.00,3521698984648.193848,0.000000,11,0,0.000000,0.000020,63971500,31168714,0,0,83486,0,1,1 +1773680457.353560,0.70,4,3992.50,53.73,1623.35,2103.77,0.00,55208.590101,58539.393534,3818318,3240176,0.000000,0.000030,63971500,31168717,0,0,83489,0,1,1 +1773680462.357496,17.57,4,3992.50,55.12,1569.10,2158.00,0.00,3515669903094.822754,3515669899766.501953,75,0,40.033700,0.023324,63975899,31170272,0,0,83491,0,1,1 +1773680467.358135,0.95,4,3992.50,54.62,1588.64,2138.46,0.00,2.121604,0.000195,258,2,0.000000,0.000030,63975899,31170275,0,0,83494,0,1,1 +1773680472.357474,0.70,4,3992.50,54.04,1611.30,2115.81,0.00,55205.372258,58538.141576,3816815,3239709,0.001434,0.001777,63975915,31170302,0,0,83496,0,1,1 +1773680477.357713,0.70,4,3992.50,53.80,1620.73,2106.38,0.00,3518269161961.354492,3518269158640.376465,253,669,0.000205,0.000562,63975922,31170316,0,0,83499,0,1,1 +1773680482.357009,0.65,4,3992.50,53.81,1620.23,2106.88,0.00,0.000000,0.000000,253,669,0.000008,0.000028,63975923,31170319,0,0,83501,0,1,1 +1773680487.357935,0.65,4,3992.50,53.82,1620.07,2107.04,0.00,3517785645327.871582,3517785645318.855957,11,0,0.000000,0.000030,63975923,31170322,0,0,83504,0,1,1 +1773680492.356232,0.75,4,3992.50,53.82,1620.07,2107.04,0.00,0.180335,0.000000,205,0,0.000000,0.000020,63975923,31170324,0,0,83506,0,1,1 +1773680497.358221,0.85,4,3992.50,53.80,1619.64,2106.47,0.00,55187.840538,58517.864433,3818318,3240423,0.000000,0.000673,63975923,31170331,0,0,83509,0,1,1 +1773680502.353443,0.75,4,3992.50,53.76,1621.42,2104.72,0.00,3521802384473.305176,3521802381147.977051,253,669,0.000000,0.000020,63975923,31170333,0,0,83511,0,1,1 +1773680507.353455,0.60,4,3992.50,53.76,1621.42,2104.72,0.00,55198.457884,58519.671814,3816815,3239768,0.000157,0.000210,63975935,31170348,0,0,83514,0,1,1 +1773680512.353791,0.55,4,3992.50,53.73,1622.44,2103.70,0.00,3518201383528.152832,3518201380198.135742,11,0,0.000000,0.000020,63975935,31170350,0,0,83516,0,1,1 +1773680517.357890,1.45,4,3992.50,53.76,1621.21,2104.93,0.00,1.656357,10.666450,253,669,0.000062,0.000080,63975939,31170357,0,0,83519,0,1,1 +1773680522.353429,0.65,4,3992.50,53.76,1621.21,2104.93,0.00,3521579070166.889160,3521579070157.863770,11,0,0.000039,0.000053,63975942,31170362,0,0,83521,0,1,1 +1773680527.353453,17.57,4,3992.50,54.13,1595.04,2119.25,0.00,1.657707,10.675145,253,669,40.064920,0.024549,63980370,31172027,0,0,83524,0,1,1 +1773680532.353632,0.95,4,3992.50,53.71,1610.95,2103.05,0.00,0.517657,3518311004945.791016,258,2,0.004439,0.003679,63980439,31172077,0,0,83526,0,1,1 +1773680537.357475,0.70,4,3992.50,53.64,1614.07,2099.94,0.00,3515735409813.881348,3515735409815.875488,205,0,0.000000,0.000030,63980439,31172080,0,0,83529,0,1,1 +1773680542.353492,0.60,4,3992.50,53.63,1614.09,2099.91,0.00,55253.803149,58588.045199,3818318,3240646,0.000000,0.000020,63980439,31172082,0,0,83531,0,1,1 +1773680547.353444,0.70,4,3992.50,53.66,1613.28,2100.73,0.00,3518471185030.219238,3518471181698.780762,11,0,0.000000,0.000030,63980439,31172085,0,0,83534,0,1,1 +1773680552.353471,0.65,4,3992.50,53.32,1626.48,2087.53,0.00,1.657706,10.675139,253,669,0.000000,0.000020,63980439,31172087,0,0,83536,0,1,1 +1773680557.354185,0.95,4,3992.50,53.57,1617.74,2097.54,0.00,3517934525588.485352,3517934525579.469727,11,0,0.000000,0.000030,63980439,31172090,0,0,83539,0,1,1 +1773680562.358114,0.65,4,3992.50,53.59,1617.00,2098.28,0.00,2.173683,0.000195,258,2,0.000000,0.000020,63980439,31172092,0,0,83541,0,1,1 +1773680567.357732,0.65,4,3992.50,53.59,1617.01,2098.28,0.00,55202.284894,58535.264243,3816815,3240035,0.000000,0.000674,63980439,31172099,0,0,83544,0,1,1 +1773680572.354594,0.75,4,3992.50,53.42,1623.66,2091.62,0.00,3520647077938.017090,3520647074614.397949,253,669,0.000081,0.000107,63980445,31172107,0,0,83546,0,1,1 +1773680577.357006,0.60,4,3992.50,53.43,1623.45,2091.84,0.00,3516740263541.910645,3516740263532.897461,11,0,0.000165,0.000218,63980458,31172123,0,0,83549,0,1,1 +1773680582.358170,0.65,4,3992.50,53.43,1623.20,2092.08,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63980458,31172125,0,0,83551,0,1,1 +1773680587.354525,1.00,4,3992.50,53.59,1616.91,2098.23,0.00,55250.253292,58584.231346,3818318,3240738,0.000000,0.000030,63980458,31172128,0,0,83554,0,1,1 +1773680592.353448,16.58,4,3992.50,54.52,1580.34,2134.39,0.00,3519195544836.970703,3519195544836.047363,3816815,3240129,40.080153,0.031927,63985078,31174278,0,0,83556,0,1,1 +1773680597.357466,0.75,4,3992.50,53.78,1609.30,2105.44,0.00,3515611631302.467285,3515611627974.517578,11,0,0.000618,0.000282,63985090,31174288,0,0,83559,0,1,1 +1773680602.357543,0.70,4,3992.50,53.47,1621.11,2093.62,0.00,0.053515,0.000000,75,0,0.000000,0.000020,63985090,31174290,0,0,83561,0,1,1 +1773680607.353560,0.70,4,3992.50,53.36,1625.43,2089.31,0.00,55244.199633,58577.632756,3816815,3240228,0.000000,0.000030,63985090,31174293,0,0,83564,0,1,1 +1773680612.357815,0.75,4,3992.50,53.35,1625.84,2088.90,0.00,3515445673236.451172,3515445669917.568359,253,669,0.000000,0.000020,63985090,31174295,0,0,83566,0,1,1 +1773680617.353571,1.05,4,3992.50,53.64,1615.36,2100.14,0.00,0.000000,0.000000,253,669,0.000000,0.000030,63985090,31174298,0,0,83569,0,1,1 +1773680622.353444,0.55,4,3992.50,53.04,1637.99,2076.73,0.00,3518526675866.920410,3518526675857.722656,205,0,0.000000,0.000020,63985090,31174300,0,0,83571,0,1,1 +1773680627.353559,0.60,4,3992.50,53.05,1637.76,2076.96,0.00,1.995071,0.000195,258,2,0.000000,0.000030,63985090,31174303,0,0,83574,0,1,1 +1773680632.353447,0.70,4,3992.50,53.05,1637.75,2076.97,0.00,55199.314293,58532.416928,3816815,3240309,0.000000,0.000664,63985090,31174309,0,0,83576,0,1,1 +1773680637.356797,0.55,4,3992.50,53.05,1637.75,2076.98,0.00,3516080994054.455566,3516080990725.833496,11,0,0.000163,0.000204,63985102,31174324,0,0,83579,0,1,1 +1773680642.354938,0.70,4,3992.50,53.05,1637.76,2076.97,0.00,0.000000,0.000000,11,0,0.000033,0.000059,63985105,31174329,0,0,83581,0,1,1 +1773680647.357557,0.85,4,3992.50,53.39,1624.89,2090.22,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63985105,31174332,0,0,83584,0,1,1 +1773680652.353568,0.80,4,3992.50,53.31,1627.55,2087.18,0.00,0.000000,0.000000,11,0,0.000000,0.000020,63985105,31174334,0,0,83586,0,1,1 +1773680657.357928,18.37,4,3992.50,54.61,1576.66,2138.07,0.00,0.000000,0.000000,11,0,40.028156,0.021705,63989506,31175836,0,0,83589,0,1,1 +1773680662.358076,0.85,4,3992.50,54.21,1592.33,2122.40,0.00,1.657666,10.674879,253,669,0.003085,0.001428,63989562,31175875,0,0,83591,0,1,1 +1773680667.353795,0.65,4,3992.50,53.84,1606.80,2107.92,0.00,3521452606211.125000,3521452606201.919434,205,0,0.000000,0.000030,63989562,31175878,0,0,83594,0,1,1 +1773680672.356215,0.55,4,3992.50,53.66,1613.97,2100.75,0.00,55183.081963,58513.560653,3818318,3241101,0.000000,0.000020,63989562,31175880,0,0,83596,0,1,1 +1773680677.355494,0.95,4,3992.50,54.09,1597.30,2117.89,0.00,3518944672764.916992,3518944669432.472168,75,0,0.000000,0.000030,63989562,31175883,0,0,83599,0,1,1 +1773680682.357323,0.70,4,3992.50,53.96,1602.21,2112.55,0.00,55189.738860,58520.588043,3818318,3241165,0.000000,0.000020,63989562,31175885,0,0,83601,0,1,1 +1773680687.353459,0.70,4,3992.50,53.96,1602.04,2112.73,0.00,3521158280848.786621,3521158277514.195801,11,0,0.000000,0.000030,63989562,31175888,0,0,83604,0,1,1 +1773680692.353504,0.60,4,3992.50,53.77,1609.68,2105.09,0.00,55209.480684,58541.550532,3818318,3241252,0.000000,0.000020,63989562,31175890,0,0,83606,0,1,1 +1773680697.353581,0.75,4,3992.50,53.77,1609.59,2105.18,0.00,3518383108807.439453,3518383108806.494141,3816815,3240585,0.000000,0.000674,63989562,31175897,0,0,83609,0,1,1 +1773680702.357598,0.60,4,3992.50,53.77,1609.50,2105.27,0.00,3515612602940.001465,3515612599611.520996,11,0,0.000056,0.000076,63989566,31175903,0,0,83611,0,1,1 +1773680707.358293,0.90,4,3992.50,53.79,1608.73,2105.96,0.00,0.180248,0.000000,205,0,0.000117,0.000170,63989576,31175916,0,0,83614,0,1,1 +1773680712.357686,0.95,4,3992.50,53.71,1611.59,2102.93,0.00,3518864254730.109375,0.000000,11,0,0.000000,0.000020,63989576,31175918,0,0,83616,0,1,1 +1773680717.357763,0.70,4,3992.50,53.74,1610.62,2103.91,0.00,2.175357,0.000195,258,2,0.000000,0.000030,63989576,31175921,0,0,83619,0,1,1 +1773680722.354596,15.32,4,3992.50,53.59,1616.49,2098.02,0.00,3520666954293.111816,10.681765,253,669,40.092994,0.023335,63994084,31177365,0,0,83621,0,1,1 +1773680727.358236,0.75,4,3992.50,53.59,1616.50,2098.02,0.00,0.000000,0.000000,253,669,0.000000,0.000030,63994084,31177368,0,0,83624,0,1,1 +1773680732.355833,0.70,4,3992.50,53.53,1618.71,2095.82,0.00,3520128691263.907715,3520128691254.886230,11,0,0.000000,0.000020,63994084,31177370,0,0,83626,0,1,1 +1773680737.357745,0.90,4,3992.50,53.77,1611.68,2105.34,0.00,0.053495,0.000000,75,0,0.000000,0.000030,63994084,31177373,0,0,83629,0,1,1 +1773680742.354643,0.70,4,3992.50,53.69,1612.36,2102.20,0.00,2.123192,0.000195,258,2,0.000000,0.000020,63994084,31177375,0,0,83631,0,1,1 +1773680747.353575,0.55,4,3992.50,53.69,1612.36,2102.20,0.00,3519188512696.042969,10.677279,253,669,0.000000,0.000030,63994084,31177378,0,0,83634,0,1,1 +1773680752.353572,0.60,4,3992.50,53.65,1614.12,2100.44,0.00,3518440027152.003906,3518440027142.986816,11,0,0.000000,0.000020,63994084,31177380,0,0,83636,0,1,1 +1773680757.358376,0.65,4,3992.50,53.69,1612.65,2101.91,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63994084,31177383,0,0,83639,0,1,1 +1773680762.357505,0.70,4,3992.50,53.69,1612.42,2102.14,0.00,0.180305,0.000000,205,0,0.000000,0.000664,63994084,31177389,0,0,83641,0,1,1 +1773680767.357712,0.90,4,3992.50,53.69,1611.26,2102.14,0.00,55197.784126,58529.413892,3816815,3240939,0.000188,0.000236,63994098,31177406,0,0,83644,0,1,1 +1773680772.357023,0.70,4,3992.50,53.67,1612.18,2101.11,0.00,3518921864762.248535,3518921861428.026367,258,2,0.000520,0.001115,63994113,31177431,0,0,83646,0,1,1 +1773680777.355598,0.65,4,3992.50,53.67,1612.19,2101.11,0.00,3519440429598.810547,3519440429600.986328,11,0,0.000205,0.000562,63994120,31177445,0,0,83649,0,1,1 +1773680782.356104,0.60,4,3992.50,53.67,1611.97,2101.32,0.00,0.180255,0.000000,205,0,0.000000,0.000020,63994120,31177447,0,0,83651,0,1,1 +1773680787.357912,16.28,4,3992.50,53.50,1618.71,2094.57,0.00,3517165207796.414551,0.000000,75,0,40.049785,0.026290,63998440,31179210,0,0,83654,0,1,1 +1773680792.353493,0.80,4,3992.50,53.40,1622.68,2090.61,0.00,2.123752,0.000195,258,2,0.000619,0.000273,63998452,31179219,0,0,83656,0,1,1 +1773680797.358147,0.95,4,3992.50,53.83,1608.07,2107.75,0.00,3515165146230.667969,10.665073,253,669,0.000000,0.000030,63998452,31179222,0,0,83659,0,1,1 +1773680802.353549,0.70,4,3992.50,53.80,1609.46,2106.34,0.00,0.518152,3521675650941.898926,258,2,0.000000,0.000020,63998452,31179224,0,0,83661,0,1,1 +1773680807.358083,0.75,4,3992.50,53.81,1609.23,2106.59,0.00,0.000000,0.000000,258,2,0.000000,0.000030,63998452,31179227,0,0,83664,0,1,1 +1773680812.357664,0.70,4,3992.50,53.81,1609.23,2106.58,0.00,3518731899862.652832,3518731899864.828125,11,0,0.000000,0.000020,63998452,31179229,0,0,83666,0,1,1 +1773680817.357211,0.60,4,3992.50,53.82,1608.50,2107.32,0.00,0.053520,0.000000,75,0,0.000062,0.000080,63998456,31179236,0,0,83669,0,1,1 +1773680822.354925,0.65,4,3992.50,53.83,1608.27,2107.55,0.00,55235.191572,58569.557818,3818319,3241864,0.000039,0.000053,63998459,31179241,0,0,83671,0,1,1 +1773680827.357553,0.95,4,3992.50,53.83,1608.26,2107.51,0.00,0.000000,0.033576,3818319,3241881,0.000000,0.000673,63998459,31179248,0,0,83674,0,1,1 +1773680832.357796,0.80,4,3992.50,53.83,1608.05,2107.72,0.00,3518265689902.825684,3518265689901.894531,3816816,3241226,0.002594,0.001696,63998518,31179295,0,0,83676,0,1,1 +1773680837.357747,0.60,4,3992.50,53.74,1611.55,2104.22,0.00,0.000000,0.009375,3816816,3241233,0.000025,0.000061,63998520,31179300,0,0,83679,0,1,1 +1773680842.357873,0.70,4,3992.50,53.74,1611.55,2104.22,0.00,3518348632031.354004,3518348628699.537598,11,0,0.000000,0.000020,63998520,31179302,0,0,83681,0,1,1 +1773680847.358287,0.65,4,3992.50,53.75,1611.34,2104.43,0.00,0.000000,0.000000,11,0,0.000000,0.000030,63998520,31179305,0,0,83684,0,1,1 +1773680852.356563,10.55,4,3992.50,58.56,1422.99,2292.77,0.00,55229.039822,58563.057558,3818319,3241940,6.617644,0.009904,63999460,31179925,0,0,83686,0,1,1 +1773680857.357734,6.17,4,3992.50,53.85,1607.57,2108.18,0.00,3517612816587.138672,3517612813255.051758,11,0,33.441256,0.014549,64002859,31180949,0,0,83689,0,1,1 +1773680862.354828,0.80,4,3992.50,53.86,1606.82,2108.91,0.00,2.176656,0.000195,258,2,0.000000,0.000020,64002859,31180951,0,0,83691,0,1,1 +1773680867.356386,0.55,4,3992.50,53.83,1608.28,2107.46,0.00,55180.894734,58514.083183,3816816,3241363,0.000000,0.000030,64002859,31180954,0,0,83694,0,1,1 +1773680872.357955,0.65,4,3992.50,53.82,1608.48,2107.26,0.00,3517333157069.460449,3517333153738.454102,11,0,0.000000,0.000020,64002859,31180956,0,0,83696,0,1,1 +1773680877.358336,0.70,4,3992.50,53.82,1608.48,2107.26,0.00,0.180260,0.000000,205,0,0.000081,0.000117,64002865,31180965,0,0,83699,0,1,1 +1773680882.357580,0.55,4,3992.50,53.83,1608.25,2107.49,0.00,3518969202424.279297,0.000000,11,0,0.000016,0.000036,64002867,31180969,0,0,83701,0,1,1 +1773680887.353491,0.95,4,3992.50,53.69,1613.57,2102.19,0.00,0.000000,0.000000,11,0,0.000000,0.000030,64002867,31180972,0,0,83704,0,1,1 +1773680892.355152,0.65,4,3992.50,53.62,1616.29,2099.43,0.00,55191.653755,58523.694685,3818319,3242160,0.000000,0.000664,64002867,31180978,0,0,83706,0,1,1 +1773680897.353501,0.60,4,3992.50,53.62,1616.29,2099.43,0.00,3519599237353.578613,3519599234017.153320,258,2,0.000031,0.000055,64002869,31180983,0,0,83709,0,1,1 +1773680902.354950,0.65,4,3992.50,53.62,1616.29,2099.43,0.00,55191.815408,58526.180549,3818319,3242168,0.000126,0.000175,64002879,31180995,0,0,83711,0,1,1 +1773680907.358022,0.70,4,3992.50,53.62,1616.29,2099.42,0.00,0.000000,0.006246,3818319,3242174,0.000008,0.000038,64002880,31180999,0,0,83714,0,1,1 +1773680912.357939,0.60,4,3992.50,53.62,1616.29,2099.42,0.00,3518495107512.000000,3518495104176.606934,258,2,0.000000,0.000020,64002880,31181001,0,0,83716,0,1,1 +1773680917.357364,0.85,4,3992.50,53.62,1619.80,2099.37,0.00,3518841673692.166992,3518841673694.162598,205,0,0.000000,0.000030,64002880,31181004,0,0,83719,0,1,1 +1773680922.356444,13.20,4,3992.50,58.91,1412.59,2306.60,0.00,0.000000,0.000000,205,0,17.635246,0.016112,64004950,31182039,0,0,83721,0,1,1 +1773680927.353693,3.01,4,3992.50,54.40,1589.19,2130.00,0.00,0.000000,0.000000,205,0,22.448233,0.007960,64007383,31182566,0,0,83724,0,1,1 +1773680932.357716,0.65,4,3992.50,54.11,1600.72,2118.48,0.00,3515608773656.453125,0.000000,11,0,0.000000,0.000020,64007383,31182568,0,0,83726,0,1,1 +1773680937.353570,0.70,4,3992.50,54.07,1602.17,2117.03,0.00,2.177196,0.000195,258,2,0.000000,0.000030,64007383,31182571,0,0,83729,0,1,1 +1773680942.357447,0.60,4,3992.50,54.08,1602.00,2117.20,0.00,55165.041722,58497.904206,3818319,3242283,0.000000,0.000020,64007383,31182573,0,0,83731,0,1,1 +1773680947.353943,0.90,4,3992.50,54.09,1601.95,2117.61,0.00,3520904628987.717773,3520904625652.108398,11,0,0.000000,0.000030,64007383,31182576,0,0,83734,0,1,1 +1773680952.357398,0.65,4,3992.50,54.11,1601.24,2118.34,0.00,55162.149057,58492.349958,3816816,3241756,0.000000,0.000020,64007383,31182578,0,0,83736,0,1,1 +1773680957.357415,0.75,4,3992.50,54.11,1601.24,2118.35,0.00,3518424679460.077148,3518424676127.586914,11,0,0.000000,0.000674,64007383,31182585,0,0,83739,0,1,1 +1773680962.353434,0.60,4,3992.50,54.11,1601.24,2118.35,0.00,55253.993906,58590.113639,3818319,3242436,0.000000,0.000020,64007383,31182587,0,0,83741,0,1,1 +1773680967.358332,0.60,4,3992.50,54.11,1601.25,2118.34,0.00,3514993478709.238281,3514993475378.984375,75,0,0.000031,0.000055,64007385,31182592,0,0,83744,0,1,1 +1773680972.358184,0.65,4,3992.50,54.11,1601.25,2118.34,0.00,55201.841373,58534.513262,3816816,3241772,0.000126,0.000175,64007395,31182604,0,0,83746,0,1,1 +1773680977.358027,0.90,4,3992.50,54.17,1590.07,2120.99,0.00,3518548053393.269531,3518548050069.662109,253,669,0.000000,0.000030,64007395,31182607,0,0,83749,0,1,1 +1773680982.357881,0.65,4,3992.50,54.17,1590.08,2120.98,0.00,55209.947464,58534.551054,3818319,3242478,0.000000,0.000020,64007395,31182609,0,0,83751,0,1,1 +1773680987.356162,18.18,4,3992.50,58.63,1415.65,2295.42,0.00,3519647133037.099121,3519647129702.428711,11,0,28.255741,0.019961,64010586,31183999,0,0,83754,0,1,1 +1773680992.355814,1.15,4,3992.50,54.36,1582.74,2128.32,0.00,0.000000,0.000000,11,0,11.820127,0.004408,64011804,31184246,0,0,83756,0,1,1 +1773680997.357576,0.70,4,3992.50,53.95,1598.71,2112.36,0.00,55190.540755,58522.941489,3818319,3242552,0.000000,0.000030,64011804,31184249,0,0,83759,0,1,1 +1773681002.353562,0.70,4,3992.50,53.83,1603.48,2107.58,0.00,3521264747844.884277,3521264747843.928223,3816818,3241888,0.000000,0.000020,64011804,31184251,0,0,83761,0,1,1 +1773681007.354650,0.90,4,3992.50,54.32,1586.61,2126.87,0.00,3517671675261.898926,3517671671939.019531,253,669,0.000000,0.000030,64011804,31184254,0,0,83764,0,1,1 +1773681012.353438,0.90,4,3992.50,53.88,1601.56,2109.49,0.00,55212.025670,58536.520652,3816818,3241957,0.000000,0.000020,64011804,31184256,0,0,83766,0,1,1 +1773681017.358300,0.70,4,3992.50,53.89,1601.08,2109.96,0.00,9.716723,10.747752,3818321,3242713,0.000000,0.000030,64011804,31184259,0,0,83769,0,1,1 +1773681022.358421,0.65,4,3992.50,53.89,1600.96,2110.09,0.00,0.000000,0.063280,3818321,3242768,0.000000,0.000664,64011804,31184265,0,0,83771,0,1,1 +1773681027.353457,0.55,4,3992.50,53.89,1600.96,2110.09,0.00,3521933662496.552246,3521933659159.436523,11,0,0.000000,0.000030,64011804,31184268,0,0,83774,0,1,1 +1773681032.353568,0.65,4,3992.50,53.89,1600.96,2110.09,0.00,1.657678,10.674958,253,669,0.000031,0.000045,64011806,31184272,0,0,83776,0,1,1 +1773681037.357919,0.90,4,3992.50,53.84,1603.21,2108.05,0.00,3515377987045.225098,3515377987036.162109,75,0,0.000126,0.000185,64011816,31184285,0,0,83779,0,1,1 +1773681042.357787,0.60,4,3992.50,53.85,1602.70,2108.54,0.00,3518530183228.414062,0.000000,11,0,0.000000,0.000020,64011816,31184287,0,0,83781,0,1,1 +1773681047.356437,0.55,4,3992.50,53.85,1602.70,2108.53,0.00,0.000000,0.000000,11,0,0.000000,0.000030,64011816,31184290,0,0,83784,0,1,1 +1773681052.356592,14.09,4,3992.50,58.18,1433.20,2278.02,0.00,0.180268,0.000000,205,0,28.189985,0.020475,64014925,31185650,0,0,83786,0,1,1 +1773681057.358346,0.95,4,3992.50,53.72,1607.99,2103.24,0.00,3517203337373.354492,0.000000,11,0,11.869935,0.008113,64016199,31186221,0,0,83789,0,1,1 +1773681062.357601,0.60,4,3992.50,53.46,1618.29,2092.93,0.00,0.053524,0.000000,75,0,0.000000,0.000020,64016199,31186223,0,0,83791,0,1,1 +1773681067.358099,1.00,4,3992.50,53.56,1614.16,2097.04,0.00,1.604040,10.674133,253,669,0.000000,0.000030,64016199,31186226,0,0,83794,0,1,1 +1773681072.357957,0.65,4,3992.50,53.45,1618.64,2092.56,0.00,0.517690,3518537071991.702148,258,2,0.001434,0.001764,64016215,31186252,0,0,83796,0,1,1 +1773681077.357874,0.65,4,3992.50,53.45,1618.42,2092.80,0.00,55199.040894,58534.402278,3816818,3242324,0.000205,0.000562,64016222,31186266,0,0,83799,0,1,1 +1773681082.356176,0.65,4,3992.50,53.44,1618.86,2092.37,0.00,3519632831381.669922,3519632828047.352539,75,0,0.000000,0.000020,64016222,31186268,0,0,83801,0,1,1 +1773681087.358342,0.70,4,3992.50,53.45,1618.61,2092.61,0.00,55186.071850,58518.815138,3818321,3243053,0.000000,0.000673,64016222,31186275,0,0,83804,0,1,1 +1773681092.357881,0.70,4,3992.50,53.39,1621.06,2090.16,0.00,3518761651057.616699,3518761647723.175293,11,0,0.000000,0.000020,64016222,31186277,0,0,83806,0,1,1 +1773681097.358741,0.90,4,3992.50,53.38,1611.49,2090.00,0.00,55200.539752,58534.139090,3818321,3243074,0.000056,0.000086,64016226,31186284,0,0,83809,0,1,1 +1773681102.357552,0.70,4,3992.50,53.37,1611.84,2089.65,0.00,3519274307383.781250,3519274304048.761230,75,0,0.000101,0.000144,64016234,31186294,0,0,83811,0,1,1 +1773681107.358113,0.65,4,3992.50,53.38,1611.48,2090.01,0.00,55203.783829,58537.659254,3818321,3243096,0.000000,0.000030,64016234,31186297,0,0,83814,0,1,1 +1773681112.358230,0.60,4,3992.50,53.30,1614.61,2086.89,0.00,3518354955753.675781,3518354952419.557129,11,0,0.000000,0.000020,64016234,31186299,0,0,83816,0,1,1 +1773681117.353473,14.54,4,3992.50,58.58,1408.00,2293.46,0.00,2.177462,0.000195,258,2,15.843780,0.014016,64018110,31187216,0,0,83819,0,1,1 +1773681122.358294,4.11,4,3992.50,53.65,1601.06,2100.42,0.00,3515048050167.744629,3515048050169.917969,11,0,24.213013,0.007435,64020607,31187704,0,0,83821,0,1,1 +1773681127.358350,1.00,4,3992.50,53.17,1619.65,2081.91,0.00,1.657696,10.675074,253,669,0.000000,0.000030,64020607,31187707,0,0,83824,0,1,1 +1773681132.356214,0.80,4,3992.50,53.19,1618.93,2082.64,0.00,55222.247310,58548.126947,3816818,3242637,0.003822,0.003428,64020664,31187750,0,0,83826,0,1,1 +1773681137.357469,0.55,4,3992.50,53.18,1619.33,2082.24,0.00,3517554192706.856934,3517554189374.037109,205,0,0.000000,0.000030,64020664,31187753,0,0,83829,0,1,1 +1773681142.358349,0.70,4,3992.50,53.20,1618.63,2082.95,0.00,55200.139089,58534.171814,3818321,3243319,0.000000,0.000020,64020664,31187755,0,0,83831,0,1,1 +1773681147.353557,0.70,4,3992.50,53.20,1618.63,2082.95,0.00,3521812481555.121582,3521812481554.175293,3816818,3242652,0.000000,0.000030,64020664,31187758,0,0,83834,0,1,1 +1773681152.354667,0.60,4,3992.50,53.20,1618.63,2082.94,0.00,3517656106689.713379,3517656103365.974609,253,669,0.000000,0.000664,64020664,31187764,0,0,83836,0,1,1 +1773681157.357627,0.90,4,3992.50,53.40,1619.45,2090.54,0.00,55175.710303,58499.208930,3818321,3243345,0.000000,0.000030,64020664,31187767,0,0,83839,0,1,1 +1773681162.353501,0.65,4,3992.50,53.28,1624.00,2085.90,0.00,3521343487479.526855,3521343484151.313965,253,669,0.000031,0.000045,64020666,31187771,0,0,83841,0,1,1 +1773681167.357456,0.70,4,3992.50,53.31,1622.80,2087.10,0.00,3515656355642.004883,3515656355632.995117,11,0,0.000075,0.000123,64020672,31187780,0,0,83844,0,1,1 +1773681172.353554,0.75,4,3992.50,53.31,1622.71,2087.19,0.00,0.180414,0.000000,205,0,0.000000,0.000020,64020672,31187782,0,0,83846,0,1,1 +1773681177.353563,0.55,4,3992.50,53.31,1622.73,2087.17,0.00,1.995114,0.000195,258,2,0.000132,0.000179,64020682,31187795,0,0,83849,0,1,1 +1773681182.358576,12.69,4,3992.50,58.58,1416.50,2293.37,0.00,0.000000,0.000000,258,2,10.681311,0.012049,64022033,31188587,0,0,83851,0,1,1 +1773681187.354276,4.62,4,3992.50,55.10,1553.70,2157.12,0.00,3521465674995.919434,3521465674998.042969,75,0,29.398202,0.011774,64025049,31189351,0,0,83854,0,1,1 +1773681192.357658,0.70,4,3992.50,54.22,1587.28,2122.70,0.00,0.000000,0.000000,75,0,0.000000,0.000020,64025049,31189353,0,0,83856,0,1,1 +1773681197.353563,0.75,4,3992.50,53.90,1599.61,2110.37,0.00,0.000000,0.000000,75,0,0.000000,0.000030,64025049,31189356,0,0,83859,0,1,1 +1773681202.357554,0.70,4,3992.50,53.80,1603.54,2106.45,0.00,1.602920,10.666681,253,669,0.000000,0.000020,64025049,31189358,0,0,83861,0,1,1 +1773681207.353458,0.65,4,3992.50,53.81,1603.29,2106.69,0.00,55243.924578,58571.416062,3816819,3242921,0.000000,0.000030,64025049,31189361,0,0,83864,0,1,1 +1773681212.354579,0.60,4,3992.50,53.81,1603.29,2106.69,0.00,3517647937005.850098,3517647933672.814941,11,0,0.000000,0.000020,64025049,31189363,0,0,83866,0,1,1 +1773681217.357408,1.00,4,3992.50,53.77,1598.75,2105.09,0.00,1.656777,10.669159,253,669,0.000000,0.000673,64025049,31189370,0,0,83869,0,1,1 +1773681222.358361,0.60,4,3992.50,53.74,1598.94,2104.06,0.00,55197.870279,58522.992501,3818322,3243615,0.000000,0.000020,64025049,31189372,0,0,83871,0,1,1 +1773681227.357604,0.65,4,3992.50,53.74,1598.95,2104.05,0.00,3518970330462.771973,3518970327127.493164,11,0,0.000031,0.000055,64025051,31189377,0,0,83874,0,1,1 +1773681232.354647,0.65,4,3992.50,53.68,1601.41,2101.59,0.00,55242.710950,58579.475251,3818322,3243631,0.000157,0.000201,64025063,31189391,0,0,83876,0,1,1 +1773681237.357980,0.65,4,3992.50,53.68,1601.39,2101.61,0.00,3516093801624.269531,3516093798291.519531,205,0,0.000008,0.000038,64025064,31189395,0,0,83879,0,1,1 +1773681242.358238,0.55,4,3992.50,53.68,1601.19,2101.80,0.00,3518255279902.496094,0.000000,11,0,0.000000,0.000020,64025064,31189397,0,0,83881,0,1,1 +1773681247.357561,9.03,4,3992.50,58.29,1422.69,2282.34,0.00,0.053523,0.000000,75,0,3.212722,0.008229,64025696,31189834,0,0,83884,0,1,1 +1773681252.357487,8.99,4,3992.50,53.50,1610.26,2094.78,0.00,0.126760,0.000000,205,0,36.853145,0.014755,64029343,31190874,0,0,83886,0,1,1 +1773681257.358161,0.60,4,3992.50,53.29,1618.52,2086.51,0.00,55192.699273,58526.407358,3816819,3243080,0.000000,0.000030,64029343,31190877,0,0,83889,0,1,1 +1773681262.357770,0.70,4,3992.50,53.30,1618.24,2086.80,0.00,3518712114996.195312,3518712111661.957520,11,0,0.000000,0.000020,64029343,31190879,0,0,83891,0,1,1 +1773681267.358022,0.65,4,3992.50,53.30,1618.24,2086.80,0.00,0.053513,0.000000,75,0,0.000000,0.000030,64029343,31190882,0,0,83894,0,1,1 +1773681272.354596,0.60,4,3992.50,53.30,1618.24,2086.79,0.00,55238.122944,58574.455805,3816819,3243096,0.000000,0.000020,64029343,31190884,0,0,83896,0,1,1 +1773681277.353569,1.00,4,3992.50,53.76,1599.26,2104.89,0.00,3519159780769.764648,3519159777432.911133,258,2,0.000000,0.000030,64029343,31190887,0,0,83899,0,1,1 +1773681282.357818,0.65,4,3992.50,53.77,1599.02,2105.11,0.00,55161.004445,58495.452731,3818322,3243904,0.000000,0.000663,64029343,31190893,0,0,83901,0,1,1 +1773681287.355949,0.65,4,3992.50,53.77,1599.02,2105.11,0.00,3519752690807.263672,3519752687470.910156,11,0,0.000000,0.000030,64029343,31190896,0,0,83904,0,1,1 +1773681292.354133,0.70,4,3992.50,53.77,1599.02,2105.11,0.00,0.000000,0.000000,11,0,0.000031,0.000045,64029345,31190900,0,0,83906,0,1,1 +1773681297.357600,0.60,4,3992.50,53.77,1599.02,2105.11,0.00,55162.070287,58493.934833,3816819,3243247,0.000142,0.000201,64029357,31190915,0,0,83909,0,1,1 +1773681302.353450,0.85,4,3992.50,53.76,1599.28,2104.84,0.00,3521360428651.701172,3521360425312.578613,258,2,0.000000,0.000020,64029357,31190917,0,0,83911,0,1,1 +1773681307.358373,1.10,4,3992.50,53.80,1597.50,2106.53,0.00,3514975827297.813965,10.664498,253,669,0.000000,0.000030,64029357,31190920,0,0,83914,0,1,1 +1773681312.357728,4.26,4,3992.50,58.26,1423.10,2280.92,0.00,3518891531559.625000,3518891531550.606445,11,0,0.806292,0.004014,64029598,31191072,0,0,83916,0,1,1 +1773681317.353510,13.13,4,3992.50,54.37,1575.43,2128.60,0.00,0.180424,0.000000,205,0,39.296543,0.022682,64033867,31192731,0,0,83919,0,1,1 +1773681322.357794,0.65,4,3992.50,53.71,1601.01,2103.03,0.00,55153.248389,58484.915000,3816819,3243385,0.000000,0.000020,64033867,31192733,0,0,83921,0,1,1 +1773681327.357702,0.70,4,3992.50,53.42,1612.72,2091.32,0.00,3518501697781.902832,3518501694447.342773,205,0,0.000000,0.000030,64033867,31192736,0,0,83924,0,1,1 +1773681332.358348,0.60,4,3992.50,53.42,1612.66,2091.38,0.00,1.994860,0.000195,258,2,0.000000,0.000020,64033867,31192738,0,0,83926,0,1,1 +1773681337.357217,0.95,4,3992.50,53.76,1599.37,2104.67,0.00,3519233025010.416016,3519233025012.538574,75,0,0.000000,0.000030,64033867,31192741,0,0,83929,0,1,1 +1773681342.353574,0.70,4,3992.50,53.73,1600.39,2103.62,0.00,2.123422,0.000195,258,2,0.000000,0.000020,64033867,31192743,0,0,83931,0,1,1 +1773681347.353450,0.60,4,3992.50,53.72,1600.95,2103.07,0.00,3518524429584.767578,10.675265,253,669,0.000000,0.000674,64033867,31192750,0,0,83934,0,1,1 +1773681352.357234,0.65,4,3992.50,53.71,1600.98,2103.04,0.00,3515776167121.514648,3515776167112.504395,11,0,0.000000,0.000020,64033867,31192752,0,0,83936,0,1,1 +1773681357.353559,0.75,4,3992.50,53.71,1600.98,2103.04,0.00,0.180406,0.000000,205,0,0.000031,0.000055,64033869,31192757,0,0,83939,0,1,1 +1773681362.356114,0.60,4,3992.50,53.74,1600.00,2104.01,0.00,3516640592370.783203,0.000000,11,0,0.000126,0.000175,64033879,31192769,0,0,83941,0,1,1 +1773681367.353443,0.90,4,3992.50,53.74,1604.43,2103.97,0.00,2.176553,0.000195,258,2,0.000016,0.000046,64033881,31192774,0,0,83944,0,1,1 +1773681372.357582,0.80,4,3992.50,53.78,1602.91,2105.45,0.00,3515526740151.226074,3515526740153.399414,11,0,0.001433,0.001775,64033897,31192801,0,0,83946,0,1,1 +1773681377.358605,13.37,4,3992.50,58.41,1421.66,2286.71,0.00,55198.752680,58533.655895,3818322,3244326,8.417835,0.013779,64035100,31193627,0,0,83949,0,1,1 +1773681382.353559,4.67,4,3992.50,54.55,1572.54,2135.83,0.00,3521991354343.008301,3521991351003.873047,205,0,31.678304,0.010115,64038284,31194298,0,0,83951,0,1,1 +1773681387.354558,0.55,4,3992.50,53.77,1603.13,2105.23,0.00,1.994719,0.000195,258,2,0.000000,0.000030,64038284,31194301,0,0,83954,0,1,1 +1773681392.353467,0.65,4,3992.50,53.56,1611.47,2096.89,0.00,3519205034666.216309,3519205034668.392090,11,0,0.000000,0.000020,64038284,31194303,0,0,83956,0,1,1 +1773681397.353465,0.95,4,3992.50,53.79,1602.26,2106.15,0.00,0.000000,0.000000,11,0,0.000000,0.000030,64038284,31194306,0,0,83959,0,1,1 +1773681402.353454,0.55,4,3992.50,53.52,1612.75,2095.61,0.00,1.657718,10.675219,253,669,0.000000,0.000020,64038284,31194308,0,0,83961,0,1,1 +1773681407.353817,0.70,4,3992.50,53.52,1612.85,2095.51,0.00,3518181817730.846191,3518181817721.648926,205,0,0.000000,0.000030,64038284,31194311,0,0,83964,0,1,1 +1773681412.358069,0.65,4,3992.50,53.52,1612.86,2095.51,0.00,3515447002707.718262,0.000000,11,0,0.000000,0.000663,64038284,31194317,0,0,83966,0,1,1 +1773681417.353581,0.65,4,3992.50,53.33,1620.50,2087.87,0.00,55259.654139,58598.469229,3818322,3244516,0.000062,0.000080,64038288,31194324,0,0,83969,0,1,1 +1773681422.353688,0.75,4,3992.50,53.33,1620.26,2088.10,0.00,0.000000,0.021875,3818322,3244522,0.000070,0.000078,64038293,31194331,0,0,83971,0,1,1 +1773681427.357579,0.95,4,3992.50,53.74,1604.66,2103.85,0.00,3515701683228.973633,3515701679893.553711,258,2,0.000126,0.000185,64038303,31194344,0,0,83974,0,1,1 +1773681432.358068,0.85,4,3992.50,53.44,1616.11,2092.25,0.00,3518092745385.795898,10.673955,253,669,0.002481,0.001599,64038354,31194385,0,0,83976,0,1,1 +1773681437.358134,0.65,4,3992.50,53.25,1623.36,2085.00,0.00,3518391265024.725098,3518391265015.708008,11,0,0.000000,0.000030,64038354,31194388,0,0,83979,0,1,1 +1773681442.358586,9.98,4,3992.50,58.68,1410.88,2297.47,0.00,55205.057298,58540.661796,3818322,3244594,7.216114,0.011700,64039402,31195151,0,0,83981,0,1,1 +1773681447.357617,7.88,4,3992.50,54.30,1582.27,2126.09,0.00,3519119138551.492188,3519119135214.759277,205,0,32.853501,0.014027,64042649,31196133,0,0,83984,0,1,1 +1773681452.358118,0.65,4,3992.50,53.94,1596.48,2111.87,0.00,0.000000,0.000000,205,0,0.000000,0.000020,64042649,31196135,0,0,83986,0,1,1 +1773681457.353635,1.00,4,3992.50,54.07,1594.23,2116.80,0.00,1.478767,10.684777,253,669,0.000000,0.000030,64042649,31196138,0,0,83989,0,1,1 +1773681462.357848,0.60,4,3992.50,53.69,1609.01,2101.99,0.00,0.517240,3515474694442.290527,258,2,0.000000,0.000020,64042649,31196140,0,0,83991,0,1,1 +1773681467.358050,0.60,4,3992.50,53.69,1608.76,2102.24,0.00,3518295133087.140137,3518295133089.135254,205,0,0.000000,0.000030,64042649,31196143,0,0,83994,0,1,1 +1773681472.357685,0.75,4,3992.50,53.69,1608.77,2102.23,0.00,0.000000,0.000000,205,0,0.000000,0.000020,64042649,31196145,0,0,83996,0,1,1 +1773681477.357597,0.55,4,3992.50,53.69,1608.77,2102.23,0.00,55210.841368,58547.232962,3818323,3244819,0.000081,0.000761,64042655,31196158,0,0,83999,0,1,1 +1773681482.353564,0.70,4,3992.50,53.69,1608.77,2102.23,0.00,3521277126354.289062,3521277123015.443359,11,0,0.000016,0.000036,64042657,31196162,0,0,84001,0,1,1 +1773681487.353450,1.00,4,3992.50,54.09,1594.68,2117.93,0.00,2.175440,0.000195,258,2,0.000031,0.000055,64042659,31196167,0,0,84004,0,1,1 +1773681492.357895,0.70,4,3992.50,53.74,1607.11,2103.88,0.00,3515311921521.916016,10.665518,253,669,0.000126,0.000175,64042669,31196179,0,0,84006,0,1,1 +1773681497.356632,0.65,4,3992.50,53.74,1607.11,2103.88,0.00,55222.343821,58550.379124,3818323,3244856,0.000000,0.000030,64042669,31196182,0,0,84009,0,1,1 +1773681502.358188,0.65,4,3992.50,53.74,1607.12,2103.88,0.00,0.000000,0.006248,3818323,3244861,0.000000,0.000020,64042669,31196184,0,0,84011,0,1,1 +1773681507.360540,5.36,4,3992.50,58.37,1425.71,2285.27,0.00,3516783057269.629395,3516783053934.926270,75,0,2.209201,0.006848,64043229,31196562,0,0,84014,0,1,1 +1773681512.358119,10.37,4,3992.50,53.55,1614.48,2096.51,0.00,55236.736254,58574.695955,3818323,3244961,37.874580,0.016995,64047118,31197777,0,0,84016,0,1,1 +1773681517.357416,0.95,4,3992.50,53.65,1606.99,2100.66,0.00,3518931627916.418457,3518931627915.538574,3816820,3244317,0.000008,0.000038,64047119,31197781,0,0,84019,0,1,1 +1773681522.354350,0.65,4,3992.50,53.65,1607.00,2100.66,0.00,3520596138845.566895,3520596135508.109863,11,0,0.000000,0.000020,64047119,31197783,0,0,84021,0,1,1 +1773681527.357816,0.65,4,3992.50,53.67,1606.54,2101.12,0.00,0.000000,0.000000,11,0,0.000000,0.000030,64047119,31197786,0,0,84024,0,1,1 +1773681532.357748,0.60,4,3992.50,53.67,1606.30,2101.36,0.00,0.053516,0.000000,75,0,0.000000,0.000020,64047119,31197788,0,0,84026,0,1,1 +1773681537.357907,0.75,4,3992.50,53.67,1606.30,2101.36,0.00,55198.512126,58533.917670,3816820,3244364,0.000000,0.000030,64047119,31197791,0,0,84029,0,1,1 +1773681542.353837,0.65,4,3992.50,53.67,1606.30,2101.36,0.00,3521303426358.700195,3521303423020.471191,75,0,0.000000,0.000664,64047119,31197797,0,0,84031,0,1,1 +1773681547.355584,0.80,4,3992.50,53.87,1601.14,2108.98,0.00,3517208372952.779297,0.000000,11,0,0.000000,0.000030,64047119,31197800,0,0,84034,0,1,1 +1773681552.358005,0.60,4,3992.50,53.86,1601.06,2108.93,0.00,0.180186,0.000000,205,0,0.000031,0.000045,64047121,31197804,0,0,84036,0,1,1 +1773681557.358407,0.65,4,3992.50,53.79,1604.07,2105.91,0.00,3518154680656.865234,0.000000,11,0,0.000134,0.000193,64047132,31197818,0,0,84039,0,1,1 +1773681562.353565,0.60,4,3992.50,53.79,1603.86,2106.13,0.00,55263.568531,58603.323596,3818323,3245132,0.000000,0.000020,64047132,31197820,0,0,84041,0,1,1 +1773681567.353457,0.60,4,3992.50,53.79,1603.86,2106.13,0.00,3518513119076.752441,3518513115749.177246,253,669,0.000000,0.000030,64047132,31197823,0,0,84044,0,1,1 +1773681572.357702,1.05,4,3992.50,53.75,1605.41,2104.56,0.00,55161.550482,58486.246927,3818323,3245165,0.003265,0.002014,64047165,31197855,0,0,84046,0,1,1 +1773681577.357637,17.36,4,3992.50,54.17,1589.03,2120.99,0.00,3518483459028.219727,3518483455700.656250,253,669,40.062634,0.020478,64051460,31199262,0,0,84049,0,1,1 +1773681582.356436,0.65,4,3992.50,54.19,1588.52,2121.47,0.00,3519282748235.350098,3519282748226.330566,11,0,0.000000,0.000020,64051460,31199264,0,0,84051,0,1,1 +1773681587.357692,0.60,4,3992.50,54.19,1588.52,2121.47,0.00,55196.180576,58531.993118,3818323,3245258,0.000000,0.000030,64051460,31199267,0,0,84054,0,1,1 +1773681592.358303,0.65,4,3992.50,53.98,1596.70,2113.28,0.00,3518007244744.805664,3518007241408.382812,205,0,0.000000,0.000020,64051460,31199269,0,0,84056,0,1,1 +1773681597.358346,0.60,4,3992.50,53.91,1599.48,2110.50,0.00,3518407063171.302246,0.000000,11,0,0.000000,0.000030,64051460,31199272,0,0,84059,0,1,1 +1773681602.353439,0.70,4,3992.50,53.91,1599.24,2110.75,0.00,0.000000,0.000000,11,0,0.000000,0.000020,64051460,31199274,0,0,84061,0,1,1 +1773681607.355399,0.90,4,3992.50,54.09,1592.71,2117.84,0.00,55188.407951,58523.878043,3818323,3245359,0.000000,0.000352,64051460,31199279,0,0,84064,0,1,1 +1773681612.353473,0.95,4,3992.50,54.02,1594.86,2115.14,0.00,3519793271592.127441,3519793268254.062988,11,0,0.000000,0.000342,64051460,31199283,0,0,84066,0,1,1 +1773681617.353482,0.75,4,3992.50,53.81,1603.04,2106.96,0.00,1.657712,10.675176,253,669,0.000000,0.000030,64051460,31199286,0,0,84069,0,1,1 +1773681622.353474,0.65,4,3992.50,53.81,1603.04,2106.96,0.00,3518442637134.842285,3518442637125.825195,11,0,0.000157,0.000200,64051472,31199300,0,0,84071,0,1,1 +1773681627.358210,0.65,4,3992.50,53.83,1602.59,2107.41,0.00,55157.809196,58491.467430,3818323,3245394,0.000008,0.000038,64051473,31199304,0,0,84074,0,1,1 +1773681632.357748,0.60,4,3992.50,53.83,1602.59,2107.41,0.00,3518762252117.677734,3518762248780.500488,75,0,0.000000,0.000020,64051473,31199306,0,0,84076,0,1,1 +1773681637.354639,1.20,4,3992.50,53.76,1606.85,2104.98,0.00,55234.614597,58572.694931,3816820,3244782,0.002210,0.000725,64051495,31199324,0,0,84079,0,1,1 +1773681642.357568,15.50,4,3992.50,53.64,1611.17,2099.93,0.00,9.720478,10.771132,3818323,3245593,40.040994,0.023001,64055974,31200894,0,0,84081,0,1,1 +1773681647.358404,0.60,4,3992.50,53.69,1609.21,2101.89,0.00,3517848479725.007812,3517848476386.388672,258,2,0.000000,0.000030,64055974,31200897,0,0,84084,0,1,1 +1773681652.356846,0.70,4,3992.50,53.56,1613.93,2097.17,0.00,3519534024498.003418,3519534024500.179688,11,0,0.000000,0.000020,64055974,31200899,0,0,84086,0,1,1 +1773681657.358160,0.70,4,3992.50,53.58,1613.22,2097.88,0.00,2.174819,0.000195,258,2,0.000000,0.000030,64055974,31200902,0,0,84089,0,1,1 +1773681662.358150,0.60,4,3992.50,53.58,1613.22,2097.88,0.00,3518444039588.283203,3518444039590.458496,11,0,0.000000,0.000020,64055974,31200904,0,0,84091,0,1,1 +1773681667.354236,1.05,4,3992.50,54.01,1596.51,2114.59,0.00,0.180415,0.000000,205,0,0.000000,0.000030,64055974,31200907,0,0,84094,0,1,1 +1773681672.355662,0.70,4,3992.50,53.84,1603.27,2107.83,0.00,0.000000,0.000000,205,0,0.000512,0.001589,64055988,31200934,0,0,84096,0,1,1 +1773681677.356951,0.60,4,3992.50,53.84,1603.27,2107.82,0.00,55185.924015,58521.440509,3816820,3245010,0.000205,0.000723,64055995,31200949,0,0,84099,0,1,1 +1773681682.357034,0.75,4,3992.50,53.84,1603.27,2107.82,0.00,9.726009,10.690055,3818323,3245696,0.000000,0.000020,64055995,31200951,0,0,84101,0,1,1 +1773681687.357934,0.55,4,3992.50,53.84,1603.28,2107.82,0.00,3517803982346.267090,3517803982345.321777,3816820,3245030,0.000157,0.000210,64056007,31200966,0,0,84104,0,1,1 +1773681692.353447,0.55,4,3992.50,53.65,1610.43,2100.67,0.00,3521598056284.164551,3521598052944.952637,11,0,0.000000,0.000020,64056007,31200968,0,0,84106,0,1,1 +1773681697.353546,1.10,4,3992.50,54.05,1604.28,2116.34,0.00,55199.223980,58535.407083,3816820,3245052,0.000000,0.000030,64056007,31200971,0,0,84109,0,1,1 +1773681702.357552,0.90,4,3992.50,53.86,1611.96,2108.70,0.00,3515620274890.783691,3515620271557.151367,75,0,0.002876,0.001647,64056032,31200991,0,0,84111,0,1,1 +1773681707.358288,15.80,4,3992.50,55.12,1562.66,2157.99,0.00,3517919580085.380859,0.000000,11,0,40.058193,0.023512,64060440,31202588,0,0,84114,0,1,1 +1773681712.358260,0.80,4,3992.50,54.44,1589.02,2131.63,0.00,0.180274,0.000000,205,0,0.000008,0.000028,64060441,31202591,0,0,84116,0,1,1 +1773681717.358259,0.70,4,3992.50,54.07,1603.84,2116.81,0.00,1.477442,10.675197,253,669,0.000062,0.000080,64060445,31202598,0,0,84119,0,1,1 +1773681722.354983,0.70,4,3992.50,53.92,1609.52,2111.13,0.00,0.000000,0.000000,253,669,0.000031,0.000045,64060447,31202602,0,0,84121,0,1,1 +1773681727.357861,0.95,4,3992.50,54.06,1612.94,2116.70,0.00,3516413800382.124512,3516413800373.059082,75,0,0.000000,0.000030,64060447,31202605,0,0,84124,0,1,1 +1773681732.357614,0.90,4,3992.50,54.07,1612.70,2116.92,0.00,55202.986429,58539.850187,3816820,3245333,0.003576,0.003427,64060503,31202648,0,0,84126,0,1,1 +1773681737.353562,0.70,4,3992.50,54.07,1612.70,2116.92,0.00,3521291279284.382812,3521291275945.029785,11,0,0.000000,0.000352,64060503,31202653,0,0,84129,0,1,1 +1773681742.358021,0.60,4,3992.50,54.07,1612.70,2116.91,0.00,55160.855471,58495.494763,3818323,3246014,0.000000,0.000341,64060503,31202657,0,0,84131,0,1,1 +1773681747.358237,0.65,4,3992.50,54.07,1612.71,2116.91,0.00,3518285265782.117188,3518285262442.473145,258,2,0.000000,0.000030,64060503,31202660,0,0,84134,0,1,1 +1773681752.355281,0.60,4,3992.50,54.07,1612.71,2116.91,0.00,3520518666959.760742,3520518666961.883789,75,0,0.000094,0.000138,64060510,31202670,0,0,84136,0,1,1 +1773681757.357478,1.00,4,3992.50,53.98,1613.50,2113.53,0.00,2.120943,0.000195,258,2,0.000013,0.000030,64060511,31202673,0,0,84139,0,1,1 +1773681762.357767,0.60,4,3992.50,53.92,1616.01,2110.91,0.00,55204.687143,58544.335102,3818323,3246045,0.000000,0.000020,64060511,31202675,0,0,84141,0,1,1 +1773681767.353466,0.65,4,3992.50,53.90,1616.62,2110.30,0.00,3521466178725.917480,3521466175385.198242,205,0,0.000000,0.000030,64060511,31202678,0,0,84144,0,1,1 +1773681772.358016,16.02,4,3992.50,55.49,1554.23,2172.67,0.00,55149.950444,58483.843120,3816820,3245434,40.027415,0.022508,64064822,31204181,0,0,84146,0,1,1 +1773681777.358067,0.80,4,3992.50,54.54,1591.46,2135.45,0.00,3518401676935.268555,3518401673598.375488,205,0,0.000708,0.000378,64064841,31204198,0,0,84149,0,1,1 +1773681782.356077,0.55,4,3992.50,54.22,1604.08,2122.83,0.00,0.000000,0.000000,205,0,0.000000,0.000020,64064841,31204200,0,0,84151,0,1,1 +1773681787.358101,0.95,4,3992.50,53.91,1615.48,2110.80,0.00,1.476844,10.670876,253,669,0.000000,0.000030,64064841,31204203,0,0,84154,0,1,1 +1773681792.357765,0.70,4,3992.50,53.91,1615.47,2110.80,0.00,3518673863625.853516,3518673863616.835938,11,0,0.000000,0.000020,64064841,31204205,0,0,84156,0,1,1 +1773681797.357770,0.60,4,3992.50,53.92,1615.24,2111.04,0.00,2.175388,0.000195,258,2,0.000000,0.000030,64064841,31204208,0,0,84159,0,1,1 +1773681802.354020,0.75,4,3992.50,53.92,1615.24,2111.03,0.00,55249.310662,58591.911957,3818323,3246280,0.000000,0.000020,64064841,31204210,0,0,84161,0,1,1 +1773681807.353649,0.65,4,3992.50,53.92,1615.24,2111.03,0.00,3518698293869.206543,3518698290528.863770,258,2,0.000000,0.000674,64064841,31204217,0,0,84164,0,1,1 +1773681812.358120,0.60,4,3992.50,53.92,1615.24,2111.03,0.00,3515293852803.546875,3515293852805.666504,75,0,0.000000,0.000020,64064841,31204219,0,0,84166,0,1,1 +1773681817.358283,1.05,4,3992.50,53.92,1611.21,2111.22,0.00,2.121806,0.000195,258,2,0.000132,0.000179,64064851,31204232,0,0,84169,0,1,1 +1773681822.357578,0.65,4,3992.50,53.92,1610.97,2111.22,0.00,3518933978902.187012,3518933978904.362793,11,0,0.000033,0.000059,64064854,31204237,0,0,84171,0,1,1 +1773681827.353466,0.75,4,3992.50,53.92,1610.97,2111.22,0.00,0.000000,0.000000,11,0,0.000000,0.000030,64064854,31204240,0,0,84174,0,1,1 +1773681832.353432,0.70,4,3992.50,53.92,1610.98,2111.21,0.00,0.000000,0.000000,11,0,0.000000,0.000020,64064854,31204242,0,0,84176,0,1,1 +1773681837.357923,0.55,4,3992.50,53.92,1610.98,2111.21,0.00,0.000000,0.000000,11,0,0.000000,0.000030,64064854,31204245,0,0,84179,0,1,1 +1773681842.357983,0.80,4,3992.50,53.92,1610.98,2111.21,0.00,55209.380859,58547.333827,3818323,3246335,0.000000,0.000020,64064854,31204247,0,0,84181,0,1,1 +1773681847.353463,0.90,4,3992.50,54.04,1608.63,2115.60,0.00,3521620861631.129395,3521620858289.935547,205,0,0.000000,0.000030,64064854,31204250,0,0,84184,0,1,1 +1773681852.354647,0.60,4,3992.50,53.81,1615.46,2106.75,0.00,3517604138212.570801,0.000000,11,0,0.000000,0.000020,64064854,31204252,0,0,84186,0,1,1 +1773681857.354681,0.70,4,3992.50,53.81,1615.46,2106.75,0.00,0.053515,0.000000,75,0,0.000000,0.000030,64064854,31204255,0,0,84189,0,1,1 +1773681862.357562,0.70,4,3992.50,53.81,1615.46,2106.75,0.00,3516411173026.510254,0.000000,11,0,0.000000,0.000020,64064854,31204257,0,0,84191,0,1,1 +1773681867.354645,0.50,4,3992.50,53.81,1615.47,2106.74,0.00,55242.280587,58582.303966,3818323,3246403,0.000000,0.000030,64064854,31204260,0,0,84194,0,1,1 +1773681872.357555,1.25,4,3992.50,53.83,1614.53,2107.64,0.00,0.000000,0.014054,3818323,3246435,0.003673,0.003227,64064901,31204304,0,0,84196,0,1,1 +1773681877.357377,13.78,4,3992.50,59.29,1396.61,2321.52,0.00,3518562639691.132812,3518562636352.925293,11,0,1.540187,0.026218,64067742,31206242,0,0,84199,0,1,1 +1773681882.354598,0.80,4,3992.50,59.26,1397.82,2320.32,0.00,0.000000,0.000000,11,0,3.516489,0.071468,64074337,31211452,0,0,84201,0,1,1 +1773681887.353441,0.71,4,3992.50,59.11,1403.96,2314.17,0.00,55213.099076,58551.135366,3816820,3245857,3.503458,0.073039,64080915,31216862,0,0,84204,0,1,1 +1773681892.354359,0.76,4,3992.50,59.53,1387.38,2330.75,0.00,3517791482052.474121,3517791478715.769043,75,0,3.568307,0.075711,64087379,31222849,0,0,84206,0,1,1 +1773681897.358356,0.80,4,3992.50,59.14,1402.76,2315.38,0.00,2.120180,0.000195,258,2,3.498998,0.072040,64093999,31228101,0,0,84209,0,1,1 +1773681902.353558,0.66,4,3992.50,59.23,1398.97,2319.17,0.00,3521816702631.432617,3521816702633.609863,11,0,3.535477,0.070192,64100655,31233239,0,0,84211,0,1,1 +1773681907.355954,1.01,4,3992.50,59.50,1388.06,2329.44,0.00,1.656921,10.670082,253,669,3.563254,0.074521,64107115,31239133,0,0,84214,0,1,1 +1773681912.357415,1.01,4,3992.50,59.29,1396.11,2321.33,0.00,3517409538592.415527,3517409538583.347168,75,0,3.498525,0.072058,64113729,31244402,0,0,84216,0,1,1 +1773681917.357486,0.70,4,3992.50,59.41,1391.37,2326.07,0.00,2.121845,0.000195,258,2,3.530987,0.070538,64120390,31249597,0,0,84219,0,1,1 +1773681922.355537,0.91,4,3992.50,59.67,1381.34,2336.10,0.00,55229.404431,58571.228904,3818323,3246663,3.555927,0.073598,64126839,31255410,0,0,84221,0,1,1 +1773681927.357736,0.65,4,3992.50,59.29,1396.08,2321.36,0.00,0.000000,0.004100,3818323,3246670,3.510976,0.072970,64133465,31260752,0,0,84224,0,1,1 +1773681932.357651,0.86,4,3992.50,54.16,1597.09,2120.36,0.00,3518497647906.964844,3518497644568.503418,75,0,3.502806,0.071550,64140097,31266027,0,0,84226,0,1,1 +1773681937.357892,1.15,4,3992.50,54.20,1597.34,2122.00,0.00,3518266984571.631836,0.000000,11,0,0.959717,0.031485,64141867,31268425,0,0,84229,0,1,1 +1773681942.358115,0.80,4,3992.50,54.22,1596.69,2122.65,0.00,0.180265,0.000000,205,0,0.002846,0.001122,64141917,31268458,0,0,84231,0,1,1 +1773681947.358135,0.65,4,3992.50,54.22,1596.69,2122.65,0.00,1.477435,10.675152,253,669,0.000000,0.000030,64141917,31268461,0,0,84234,0,1,1 +1773681952.353570,0.60,4,3992.50,54.22,1596.46,2122.88,0.00,55258.847125,58591.398419,3818323,3246846,0.000000,0.000020,64141917,31268463,0,0,84236,0,1,1 +1773681957.357670,0.70,4,3992.50,54.22,1596.46,2122.88,0.00,3515554379395.123047,3515554376059.151855,205,0,0.000000,0.000030,64141917,31268466,0,0,84239,0,1,1 +1773681962.353450,0.70,4,3992.50,54.22,1596.46,2122.88,0.00,55256.503307,58598.039761,3818323,3246855,0.000000,0.000020,64141917,31268468,0,0,84241,0,1,1 +1773681967.353457,0.90,4,3992.50,54.41,1589.78,2130.43,0.00,3518432651486.730469,3518432648148.198242,11,0,0.000000,0.000030,64141917,31268471,0,0,84244,0,1,1 +1773681972.358206,0.75,4,3992.50,54.21,1597.55,2122.61,0.00,0.053465,0.000000,75,0,0.001433,0.001775,64141933,31268498,0,0,84246,0,1,1 +1773681977.353503,0.65,4,3992.50,54.21,1597.55,2122.61,0.00,0.126877,0.000000,205,0,0.000095,0.000434,64141939,31268508,0,0,84249,0,1,1 +1773681982.353437,0.60,4,3992.50,54.21,1597.55,2122.60,0.00,0.000000,0.000000,205,0,0.000143,0.000188,64141943,31268517,0,0,84251,0,1,1 +1773681987.357877,0.65,4,3992.50,54.02,1605.19,2114.96,0.00,55151.173478,58486.084952,3816820,3246259,0.000101,0.000154,64141951,31268528,0,0,84254,0,1,1 +1773681992.357590,0.60,4,3992.50,54.02,1605.19,2114.96,0.00,3518639052488.161133,3518639049150.097656,205,0,0.000000,0.000020,64141951,31268530,0,0,84256,0,1,1 +1773681997.358036,0.85,4,3992.50,54.11,1601.50,2118.61,0.00,3518123819338.620117,0.000000,75,0,0.000000,0.000030,64141951,31268533,0,0,84259,0,1,1 +1773682002.358309,1.20,4,3992.50,54.06,1603.38,2116.73,0.00,3518244883322.950684,0.000000,11,0,0.002373,0.001977,64141984,31268565,0,0,84261,0,1,1 +1773682007.357582,8.39,4,3992.50,59.68,1383.67,2336.42,0.00,0.000000,0.000000,11,0,0.043495,0.003682,64142129,31268632,0,0,84264,0,1,1 +1773682012.353432,6.45,4,3992.50,60.01,1370.76,2349.33,0.00,0.000000,0.000000,11,0,3.577046,0.067025,64148578,31273907,0,0,84266,0,1,1 +1773682017.357947,0.70,4,3992.50,59.66,1384.23,2335.86,0.00,0.053467,0.000000,75,0,3.623904,0.072317,64155394,31279158,0,0,84269,0,1,1 +1773682022.357968,0.80,4,3992.50,59.71,1382.30,2337.79,0.00,3518421831972.372070,0.000000,11,0,3.494337,0.076394,64161999,31284684,0,0,84271,0,1,1 +1773682027.353438,1.01,4,3992.50,59.72,1377.51,2338.36,0.00,2.177364,0.000195,258,2,3.552129,0.075145,64168434,31290619,0,0,84274,0,1,1 +1773682032.353497,0.81,4,3992.50,59.27,1395.07,2320.74,0.00,55197.495094,58537.602890,3816820,3246518,3.547222,0.074059,64175185,31295955,0,0,84276,0,1,1 +1773682037.358252,0.85,4,3992.50,59.29,1394.66,2321.14,0.00,3515094213317.767090,3515094209982.912598,75,0,3.462521,0.069999,64181711,31301120,0,0,84279,0,1,1 +1773682042.358072,0.66,4,3992.50,59.50,1386.08,2329.72,0.00,3518563908147.202637,0.000000,11,0,3.550773,0.074675,64188147,31307023,0,0,84281,0,1,1 +1773682047.358160,0.75,4,3992.50,59.16,1399.49,2316.31,0.00,55199.349976,58537.299159,3816820,3246566,3.566064,0.071272,64194897,31312195,0,0,84284,0,1,1 +1773682052.357482,1.21,4,3992.50,59.29,1394.56,2321.24,0.00,3518914247372.933594,3518914244034.292480,205,0,3.464737,0.071380,64201468,31317471,0,0,84286,0,1,1 +1773682057.358204,1.06,4,3992.50,59.62,1381.39,2334.40,0.00,3517929649029.117188,0.000000,11,0,3.547790,0.072708,64207899,31323219,0,0,84289,0,1,1 +1773682062.355500,0.81,4,3992.50,54.34,1588.28,2127.53,0.00,2.176567,0.000195,258,2,3.566949,0.072136,64214627,31328498,0,0,84291,0,1,1 +1773682067.358290,0.85,4,3992.50,53.98,1602.27,2113.55,0.00,3516475198576.982422,3516475198579.103516,75,0,2.307858,0.059184,64218928,31332986,0,0,84294,0,1,1 +1773682072.357140,0.90,4,3992.50,53.80,1609.45,2106.36,0.00,55212.973368,58551.876490,3816820,3246646,0.003180,0.001456,64218992,31333037,0,0,84296,0,1,1 +1773682077.358098,0.65,4,3992.50,53.81,1609.22,2106.59,0.00,3517763088362.516602,3517763085025.075195,11,0,0.000125,0.000295,64219001,31333050,0,0,84299,0,1,1 +1773682082.357541,0.55,4,3992.50,53.61,1616.87,2098.94,0.00,0.000000,0.000000,11,0,0.000000,0.000020,64219001,31333052,0,0,84301,0,1,1 +1773682087.353434,0.70,4,3992.50,53.62,1616.38,2099.41,0.00,55255.428861,58597.284579,3818323,3247369,0.000000,0.000030,64219001,31333055,0,0,84304,0,1,1 +1773682092.354931,0.90,4,3992.50,53.73,1612.84,2103.73,0.00,3517383911050.391113,3517383907721.294434,253,669,0.000000,0.000020,64219001,31333057,0,0,84306,0,1,1 +1773682097.353447,0.70,4,3992.50,53.73,1612.83,2103.75,0.00,55224.781296,58555.934691,3818323,3247429,0.000000,0.000030,64219001,31333060,0,0,84309,0,1,1 +1773682102.358039,0.65,4,3992.50,53.74,1612.59,2104.00,0.00,3515209295864.219238,3515209292528.100098,11,0,0.000000,0.000020,64219001,31333062,0,0,84311,0,1,1 +1773682107.353464,0.60,4,3992.50,53.74,1612.59,2104.00,0.00,0.053565,0.000000,75,0,0.000000,0.000030,64219001,31333065,0,0,84314,0,1,1 +1773682112.353597,0.70,4,3992.50,53.74,1612.59,2104.00,0.00,55208.525008,58547.686660,3818323,3247443,0.000000,0.000020,64219001,31333067,0,0,84316,0,1,1 +1773682117.356737,0.90,4,3992.50,53.74,1619.66,2103.90,0.00,3516229038837.703613,3516229038836.788574,3816820,3246789,0.000126,0.000185,64219011,31333080,0,0,84319,0,1,1 +1773682122.357650,0.65,4,3992.50,53.76,1618.92,2104.64,0.00,3517794795208.663574,3517794791880.007324,253,669,0.000016,0.000036,64219013,31333084,0,0,84321,0,1,1 +1773682127.353482,0.70,4,3992.50,53.76,1618.92,2104.64,0.00,3521372312143.083008,3521372312134.058594,11,0,0.000000,0.000030,64219013,31333087,0,0,84324,0,1,1 +1773682132.358221,0.80,4,3992.50,53.56,1626.57,2096.98,0.00,55157.780299,58493.888467,3818323,3247491,0.000563,0.000750,64219024,31333098,0,0,84326,0,1,1 +1773682137.358023,1.05,4,3992.50,53.43,1631.82,2091.73,0.00,3518576062130.077148,3518576058790.675781,11,0,0.003138,0.002523,64219062,31333135,0,0,84329,0,1,1 +1773682142.357856,15.18,4,3992.50,59.24,1404.16,2319.39,0.00,0.180279,0.000000,205,0,1.429792,0.024874,64221668,31335016,0,0,84331,0,1,1 +1773682147.357744,1.01,4,3992.50,59.40,1397.16,2325.77,0.00,3518516135533.322754,0.000000,75,0,3.784043,0.065229,64228493,31340120,0,0,84334,0,1,1 +1773682152.357410,0.70,4,3992.50,59.21,1404.59,2318.35,0.00,1.604306,10.675908,253,669,3.416924,0.074841,64235198,31345142,0,0,84336,0,1,1 +1773682157.357758,0.76,4,3992.50,59.34,1399.67,2323.27,0.00,55194.830500,58524.120005,3816820,3247026,3.591902,0.073171,64241777,31350836,0,0,84339,0,1,1 +1773682162.358228,0.65,4,3992.50,59.13,1407.78,2315.16,0.00,3518106102009.541504,3518106098671.317383,11,0,3.460524,0.071199,64248304,31356065,0,0,84341,0,1,1 +1773682167.353448,0.86,4,3992.50,59.21,1404.70,2318.24,0.00,0.000000,0.000000,11,0,3.520678,0.068761,64254947,31361086,0,0,84344,0,1,1 +1773682172.354894,0.75,4,3992.50,59.19,1405.45,2317.50,0.00,0.053500,0.000000,75,0,3.583171,0.073405,64261444,31366890,0,0,84346,0,1,1 +1773682177.358040,1.11,4,3992.50,59.41,1398.51,2326.20,0.00,0.000000,0.000000,75,0,3.488808,0.071215,64268002,31372164,0,0,84349,0,1,1 +1773682182.356029,0.76,4,3992.50,59.23,1405.50,2319.10,0.00,1.604845,10.679491,253,669,3.531333,0.070779,64274683,31377347,0,0,84351,0,1,1 +1773682187.357495,1.61,4,3992.50,59.39,1399.45,2325.15,0.00,55192.213623,58521.775866,3818323,3247772,3.572734,0.072836,64281163,31383097,0,0,84354,0,1,1 +1773682192.357457,0.71,4,3992.50,59.13,1409.52,2315.08,0.00,3518463430965.492188,3518463427625.857910,75,0,3.483881,0.072336,64287718,31388406,0,0,84356,0,1,1 +1773682197.357581,0.86,4,3992.50,53.81,1617.79,2106.81,0.00,0.000000,0.000000,75,0,3.367600,0.070435,64294048,31393623,0,0,84359,0,1,1 +1773682202.354553,1.00,4,3992.50,53.86,1615.86,2108.74,0.00,55243.453421,58585.118516,3818324,3247806,1.132490,0.031887,64296136,31396096,0,0,84361,0,1,1 +1773682207.358201,1.20,4,3992.50,53.89,1608.45,2109.74,0.00,3515871890568.865234,3515871887240.723145,253,669,0.002174,0.000925,64296175,31396125,0,0,84364,0,1,1 +1773682212.353566,1.15,4,3992.50,53.92,1607.22,2110.97,0.00,0.000000,0.000000,253,669,0.000000,0.000020,64296175,31396127,0,0,84366,0,1,1 +1773682217.358356,0.70,4,3992.50,53.73,1614.61,2103.58,0.00,55145.842440,58472.447210,3816821,3247292,0.000000,0.000030,64296175,31396130,0,0,84369,0,1,1 +1773682222.357693,0.65,4,3992.50,53.73,1614.61,2103.57,0.00,3518904051725.383789,3518904048386.131348,11,0,0.000000,0.000020,64296175,31396132,0,0,84371,0,1,1 +1773682227.353553,0.60,4,3992.50,53.73,1614.62,2103.57,0.00,0.000000,0.000000,11,0,0.000000,0.000030,64296175,31396135,0,0,84374,0,1,1 +1773682232.354378,0.65,4,3992.50,53.73,1614.62,2103.57,0.00,2.175032,0.000195,258,2,0.000000,0.000020,64296175,31396137,0,0,84376,0,1,1 +1773682237.357428,0.90,4,3992.50,53.73,1614.98,2103.53,0.00,55174.231081,58514.200314,3818324,3248018,0.000000,0.000030,64296175,31396140,0,0,84379,0,1,1 +1773682242.358218,0.65,4,3992.50,53.73,1615.01,2103.53,0.00,3517881218682.697754,3517881215343.394043,11,0,0.000000,0.000020,64296175,31396142,0,0,84381,0,1,1 +1773682247.355794,0.65,4,3992.50,53.73,1614.79,2103.75,0.00,55236.829311,58578.296338,3818324,3248035,0.000050,0.000092,64296179,31396149,0,0,84384,0,1,1 +1773682252.355126,0.70,4,3992.50,53.73,1614.79,2103.74,0.00,3518907526044.324707,3518907522701.855469,258,2,0.000084,0.000121,64296186,31396158,0,0,84386,0,1,1 +1773682257.358067,0.65,4,3992.50,53.73,1614.80,2103.74,0.00,3516368710613.196289,3516368710615.370117,11,0,0.000008,0.000038,64296187,31396162,0,0,84389,0,1,1 +1773682262.357787,0.75,4,3992.50,53.75,1614.06,2104.48,0.00,0.000000,0.000000,11,0,0.000000,0.000664,64296187,31396168,0,0,84391,0,1,1 +1773682267.353420,1.60,4,3992.50,53.75,1614.30,2104.55,0.00,55248.587724,58590.453480,3816822,3247417,0.003323,0.002027,64296224,31396201,0,0,84394,0,1,1 +1773682272.357430,9.80,4,3992.50,59.30,1396.88,2321.64,0.00,3515617503289.244141,3515617499952.972656,11,0,0.086479,0.004968,64296465,31396327,0,0,84396,0,1,1 +1773682277.353441,4.88,4,3992.50,59.38,1393.65,2324.87,0.00,0.000000,0.000000,11,0,3.637900,0.068911,64303006,31401750,0,0,84399,0,1,1 +1773682282.354576,0.75,4,3992.50,59.12,1403.81,2314.71,0.00,0.000000,0.000000,11,0,3.675637,0.071532,64309878,31406864,0,0,84401,0,1,1 +1773682287.358485,0.70,4,3992.50,59.13,1403.33,2315.19,0.00,0.000000,0.000000,11,0,3.519679,0.075372,64316585,31412268,0,0,84404,0,1,1 +1773682292.358335,0.70,4,3992.50,59.40,1392.70,2325.82,0.00,0.000000,0.000000,11,0,3.545922,0.075092,64323016,31418204,0,0,84406,0,1,1 +1773682297.358287,1.16,4,3992.50,59.18,1402.39,2316.89,0.00,0.000000,0.000000,11,0,3.545099,0.070021,64329673,31423321,0,0,84409,0,1,1 +1773682302.357782,0.80,4,3992.50,59.19,1401.16,2317.32,0.00,1.657882,10.676273,253,669,3.458479,0.070585,64336181,31428552,0,0,84411,0,1,1 +1773682307.357787,0.71,4,3992.50,59.40,1393.02,2325.46,0.00,0.000000,0.000000,253,669,3.556207,0.073902,64342626,31434394,0,0,84414,0,1,1 +1773682312.353459,0.81,4,3992.50,59.15,1402.66,2315.82,0.00,55256.234126,58590.272939,3818325,3248354,3.573442,0.072165,64349376,31439602,0,0,84416,0,1,1 +1773682317.357997,0.80,4,3992.50,59.26,1398.46,2320.03,0.00,3515246906809.949707,3515246903472.808105,11,0,3.455855,0.070543,64355923,31444795,0,0,84419,0,1,1 +1773682322.354566,0.66,4,3992.50,59.42,1392.25,2326.24,0.00,0.053552,0.000000,75,0,3.562887,0.074043,64362375,31450644,0,0,84421,0,1,1 +1773682327.357783,1.16,4,3992.50,54.16,1598.15,2120.34,0.00,3516174800750.509766,0.000000,11,0,3.571242,0.073431,64369143,31455965,0,0,84424,0,1,1 +1773682332.358075,0.96,4,3992.50,53.57,1621.00,2097.49,0.00,55197.107040,58536.201303,3816822,3247738,2.162770,0.056719,64373377,31459884,0,0,84426,0,1,1 +1773682337.357978,0.85,4,3992.50,53.57,1621.04,2097.45,0.00,3518505673062.521973,3518505669722.986816,205,0,0.003214,0.001253,64373434,31459919,0,0,84429,0,1,1 +1773682342.358330,0.85,4,3992.50,53.57,1621.04,2097.45,0.00,3518189541708.403809,0.000000,11,0,0.000153,0.000385,64373439,31459929,0,0,84431,0,1,1 +1773682347.357448,0.65,4,3992.50,53.57,1621.04,2097.45,0.00,0.053525,0.000000,75,0,0.000008,0.000038,64373440,31459933,0,0,84434,0,1,1 +1773682352.357846,0.65,4,3992.50,53.59,1620.30,2098.19,0.00,0.126748,0.000000,205,0,0.000000,0.000020,64373440,31459935,0,0,84436,0,1,1 +1773682357.357073,0.90,4,3992.50,53.61,1631.04,2098.81,0.00,3518981454554.780762,0.000000,11,0,0.000000,0.000030,64373440,31459938,0,0,84439,0,1,1 +1773682362.354657,0.65,4,3992.50,53.55,1633.40,2096.45,0.00,55236.748100,58578.773483,3818325,3248562,0.000000,0.000020,64373440,31459940,0,0,84441,0,1,1 +1773682367.358220,0.60,4,3992.50,53.54,1633.75,2096.11,0.00,3515932106895.516602,3515932103557.483887,11,0,0.000000,0.000030,64373440,31459943,0,0,84444,0,1,1 +1773682372.357835,0.70,4,3992.50,53.54,1633.74,2096.11,0.00,0.000000,0.000000,11,0,0.000000,0.000020,64373440,31459945,0,0,84446,0,1,1 +1773682377.357907,0.70,4,3992.50,53.54,1633.75,2096.11,0.00,0.000000,0.000000,11,0,0.000081,0.000117,64373446,31459954,0,0,84449,0,1,1 +1773682382.357814,0.65,4,3992.50,53.54,1633.75,2096.11,0.00,2.175431,0.000195,258,2,0.000109,0.000152,64373455,31459965,0,0,84451,0,1,1 +1773682387.357758,0.95,4,3992.50,53.65,1629.66,2100.50,0.00,55208.508279,58551.174079,3818325,3248590,0.000025,0.000061,64373457,31459970,0,0,84454,0,1,1 +1773682392.358089,0.65,4,3992.50,53.55,1633.41,2096.77,0.00,3518204101502.345703,3518204098171.130859,253,669,0.000008,0.000672,64373458,31459977,0,0,84456,0,1,1 +1773682397.353497,0.65,4,3992.50,53.55,1633.41,2096.77,0.00,0.518152,3521671741108.222168,258,2,0.000000,0.000030,64373458,31459980,0,0,84459,0,1,1 +1773682402.354652,1.35,4,3992.50,53.56,1633.12,2097.06,0.00,0.000000,0.000000,258,2,0.002234,0.000371,64373482,31459994,0,0,84461,0,1,1 +1773682407.357544,1.00,4,3992.50,53.57,1632.69,2097.48,0.00,3516403230529.462891,3516403230531.457031,205,0,0.002431,0.003051,64373533,31460042,0,0,84464,0,1,1 +1773682412.353458,15.13,4,3992.50,59.40,1404.60,2325.58,0.00,1.996749,0.000195,258,2,2.315450,0.043697,64377742,31463443,0,0,84466,0,1,1 +1773682417.357655,1.06,4,3992.50,59.67,1383.30,2336.33,0.00,55161.588517,58501.593430,3818325,3248769,3.766341,0.067682,64384585,31468660,0,0,84469,0,1,1 +1773682422.357587,0.86,4,3992.50,59.09,1405.56,2313.68,0.00,3518484645475.186523,3518484642134.508301,11,0,3.456404,0.079873,64391391,31474044,0,0,84471,0,1,1 +1773682427.355242,0.66,4,3992.50,59.30,1397.57,2321.66,0.00,0.000000,0.000000,11,0,3.579967,0.073376,64397884,31479839,0,0,84474,0,1,1 +1773682432.353447,0.75,4,3992.50,58.88,1413.84,2305.39,0.00,1.658310,10.679029,253,669,3.464405,0.072680,64404441,31485131,0,0,84476,0,1,1 +1773682437.353542,0.80,4,3992.50,58.91,1412.71,2306.52,0.00,3518370378139.883789,3518370378130.866699,11,0,3.527703,0.067922,64411062,31490150,0,0,84479,0,1,1 +1773682442.357897,1.00,4,3992.50,53.67,1617.93,2101.30,0.00,55162.013029,58499.798941,3818325,3248853,21.068950,0.036684,64415971,31492814,0,0,84481,0,1,1 +1773682447.353574,1.05,4,3992.50,53.76,1618.82,2104.83,0.00,3521482127150.604004,3521482123806.965820,75,0,0.000000,0.000030,64415971,31492817,0,0,84484,0,1,1 +1773682452.356507,0.65,4,3992.50,53.60,1625.04,2098.62,0.00,1.603258,10.668935,253,669,0.000031,0.000045,64415973,31492821,0,0,84486,0,1,1 +1773682457.353457,0.60,4,3992.50,53.61,1624.82,2098.84,0.00,3520585021339.031250,3520585021330.008789,11,0,0.000031,0.000699,64415975,31492830,0,0,84489,0,1,1 +1773682462.355713,0.60,4,3992.50,53.60,1625.09,2098.57,0.00,2.174410,0.000195,258,2,0.000000,0.000020,64415975,31492832,0,0,84491,0,1,1 +1773682467.353449,0.65,4,3992.50,53.60,1625.10,2098.56,0.00,3520030619733.646973,3520030619735.823242,11,0,0.000000,0.000030,64415975,31492835,0,0,84494,0,1,1 +1773682472.357735,0.70,4,3992.50,53.61,1624.85,2098.81,0.00,0.180119,0.000000,205,0,0.000000,0.000020,64415975,31492837,0,0,84496,0,1,1 +1773682477.357552,1.00,4,3992.50,54.10,1606.65,2117.96,0.00,3518565875096.280762,0.000000,75,0,0.000000,0.000030,64415975,31492840,0,0,84499,0,1,1 +1773682482.353453,0.60,4,3992.50,53.95,1611.25,2112.41,0.00,0.000000,0.000000,75,0,0.000000,0.000020,64415975,31492842,0,0,84501,0,1,1 +1773682487.357921,0.65,4,3992.50,53.95,1611.53,2112.13,0.00,2.119980,0.000195,258,2,0.000126,0.000185,64415985,31492855,0,0,84504,0,1,1 +1773682492.353452,0.70,4,3992.50,53.95,1611.53,2112.13,0.00,3521584795031.971191,3521584795034.148438,11,0,0.000016,0.000036,64415987,31492859,0,0,84506,0,1,1 +1773682497.357437,0.60,4,3992.50,53.95,1611.54,2112.12,0.00,0.000000,0.000000,11,0,0.000000,0.000030,64415987,31492862,0,0,84509,0,1,1 +1773682502.357898,0.65,4,3992.50,53.95,1611.54,2112.12,0.00,55195.245513,58534.898001,3816822,3248334,0.000000,0.000020,64415987,31492864,0,0,84511,0,1,1 +1773682507.353559,16.68,4,3992.50,54.06,1607.57,2116.39,0.00,3521493412037.416016,3521493408703.579590,253,669,40.099713,0.022673,64420349,31494365,0,0,84514,0,1,1 +1773682512.357376,0.95,4,3992.50,54.06,1607.27,2116.38,0.00,3515752680685.278320,3515752680676.087891,205,0,0.000000,0.000020,64420349,31494367,0,0,84516,0,1,1 +1773682517.357597,0.65,4,3992.50,53.92,1612.51,2111.14,0.00,3518281911919.427734,0.000000,11,0,0.000000,0.000030,64420349,31494370,0,0,84519,0,1,1 +1773682522.358052,0.70,4,3992.50,53.88,1614.30,2109.36,0.00,0.053511,0.000000,75,0,0.000000,0.000664,64420349,31494376,0,0,84521,0,1,1 +1773682527.358387,0.70,4,3992.50,53.88,1614.30,2109.36,0.00,3518201563260.641113,0.000000,11,0,0.000000,0.000030,64420349,31494379,0,0,84524,0,1,1 +1773682532.358069,0.55,4,3992.50,53.88,1614.30,2109.36,0.00,0.180285,0.000000,205,0,0.000000,0.000020,64420349,31494381,0,0,84526,0,1,1 +1773682537.358426,0.95,4,3992.50,53.78,1618.50,2105.61,0.00,3518186099053.836426,0.000000,11,0,0.000000,0.000030,64420349,31494384,0,0,84529,0,1,1 +1773682542.353557,0.85,4,3992.50,53.78,1618.05,2105.61,0.00,0.053568,0.000000,75,0,0.000000,0.000020,64420349,31494386,0,0,84531,0,1,1 +1773682547.353536,0.60,4,3992.50,53.79,1617.82,2105.84,0.00,0.126758,0.000000,205,0,0.000000,0.000030,64420349,31494389,0,0,84534,0,1,1 +1773682552.357075,0.70,4,3992.50,53.79,1617.82,2105.84,0.00,3515948799636.025879,0.000000,11,0,0.000157,0.000200,64420361,31494403,0,0,84536,0,1,1 +1773682557.353551,0.65,4,3992.50,53.79,1617.58,2106.08,0.00,0.000000,0.000000,11,0,0.000016,0.000046,64420363,31494408,0,0,84539,0,1,1 +1773682562.357501,0.60,4,3992.50,53.80,1617.33,2106.32,0.00,55166.507384,58505.085281,3818327,3249294,0.000000,0.000020,64420363,31494410,0,0,84541,0,1,1 +1773682567.357429,0.90,4,3992.50,53.82,1620.50,2107.02,0.00,3518487830453.521973,3518487827112.078613,205,0,0.000000,0.000030,64420363,31494413,0,0,84544,0,1,1 +1773682572.353453,16.50,4,3992.50,55.25,1564.23,2162.99,0.00,55244.099651,58587.255434,3816824,3248690,40.102240,0.032152,64424822,31496493,0,0,84546,0,1,1 +1773682577.353455,0.70,4,3992.50,54.50,1593.31,2133.93,0.00,3518435829345.257324,3518435826013.958984,253,669,0.000000,0.000030,64424822,31496496,0,0,84549,0,1,1 +1773682582.358086,0.65,4,3992.50,53.98,1613.97,2113.27,0.00,55147.620658,58475.940341,3816824,3248786,0.000000,0.000020,64424822,31496498,0,0,84551,0,1,1 +1773682587.353557,0.65,4,3992.50,53.60,1628.75,2098.49,0.00,3521627070952.406250,3521627067608.957520,11,0,0.000205,0.001207,64424829,31496516,0,0,84554,0,1,1 +1773682592.357781,0.60,4,3992.50,53.59,1628.95,2098.30,0.00,55153.751092,58491.354571,3816824,3248791,0.000008,0.000028,64424830,31496519,0,0,84556,0,1,1 +1773682597.357276,1.10,4,3992.50,54.03,1612.08,2115.20,0.00,3518793222481.962891,3518793219150.219727,253,669,0.000000,0.000030,64424830,31496522,0,0,84559,0,1,1 +1773682602.358149,0.75,4,3992.50,53.92,1615.97,2111.27,0.00,0.517585,3517822930853.726562,258,2,0.000000,0.000020,64424830,31496524,0,0,84561,0,1,1 +1773682607.353551,0.65,4,3992.50,53.92,1615.97,2111.27,0.00,3521675815211.550293,3521675815213.727539,11,0,0.000000,0.000030,64424830,31496527,0,0,84564,0,1,1 +1773682612.353563,0.65,4,3992.50,53.93,1615.73,2111.51,0.00,0.180273,0.000000,205,0,0.000000,0.000020,64424830,31496529,0,0,84566,0,1,1 +1773682617.357461,0.65,4,3992.50,53.94,1615.37,2111.87,0.00,3515696933362.194336,0.000000,75,0,0.000219,0.000261,64424846,31496548,0,0,84569,0,1,1 +1773682622.357594,0.70,4,3992.50,53.94,1615.38,2111.87,0.00,55198.832718,58539.343697,3816824,3248864,0.000008,0.000028,64424847,31496551,0,0,84571,0,1,1 +1773682627.357667,0.85,4,3992.50,53.94,1617.29,2111.69,0.00,3518385591742.052734,3518385588401.501465,75,0,0.000000,0.000030,64424847,31496554,0,0,84574,0,1,1 +1773682632.357825,0.90,4,3992.50,53.88,1619.16,2109.65,0.00,3518326020633.246582,0.000000,11,0,0.003182,0.002546,64424903,31496599,0,0,84576,0,1,1 +1773682637.354966,15.64,4,3992.50,55.19,1567.88,2160.92,0.00,1.658663,10.681302,253,669,40.093148,0.032979,64429497,31498908,0,0,84579,0,1,1 +1773682642.354559,0.65,4,3992.50,54.37,1600.03,2128.78,0.00,55203.187676,58535.190314,3816824,3249054,0.000000,0.000020,64429497,31498910,0,0,84581,0,1,1 +1773682647.357571,0.65,4,3992.50,53.76,1623.89,2104.91,0.00,3516319503709.973145,3516319500371.054688,205,0,0.000000,0.000030,64429497,31498913,0,0,84584,0,1,1 +1773682652.358112,0.60,4,3992.50,53.69,1626.69,2102.12,0.00,3518056031733.647949,0.000000,11,0,0.000000,0.000503,64429497,31498918,0,0,84586,0,1,1 +1773682657.357250,0.65,4,3992.50,53.70,1626.46,2102.34,0.00,0.053525,0.000000,75,0,0.000000,0.000191,64429497,31498922,0,0,84589,0,1,1 +1773682662.353873,1.00,4,3992.50,54.04,1607.29,2115.77,0.00,55247.335694,58591.441070,3818327,3249793,0.000000,0.000020,64429497,31498924,0,0,84591,0,1,1 +1773682667.355770,0.70,4,3992.50,54.03,1607.53,2115.54,0.00,3517103407900.206543,3517103407899.288086,3816824,3249152,0.000000,0.000030,64429497,31498927,0,0,84594,0,1,1 +1773682672.357440,0.65,4,3992.50,54.02,1608.14,2114.93,0.00,9.722923,10.675729,3818327,3249827,0.000000,0.000020,64429497,31498929,0,0,84596,0,1,1 +1773682677.357729,0.70,4,3992.50,54.02,1607.92,2115.14,0.00,3518234041098.575195,3518234037754.765137,258,2,0.000081,0.000117,64429503,31498938,0,0,84599,0,1,1 +1773682682.353442,0.70,4,3992.50,54.02,1607.92,2115.14,0.00,3521456312547.597168,3521456312549.774414,11,0,0.000165,0.000209,64429516,31498953,0,0,84601,0,1,1 +1773682687.353887,0.95,4,3992.50,53.98,1599.73,2113.33,0.00,0.000000,0.000000,11,0,0.000000,0.000030,64429516,31498956,0,0,84604,0,1,1 +1773682692.356614,0.60,4,3992.50,53.94,1601.39,2111.68,0.00,0.000000,0.000000,11,0,0.000000,0.000020,64429516,31498958,0,0,84606,0,1,1 +1773682697.357440,0.70,4,3992.50,53.94,1601.15,2111.92,0.00,1.657441,10.673434,253,669,0.000000,0.000030,64429516,31498961,0,0,84609,0,1,1 +1773682702.357462,22.64,4,3992.50,53.50,1618.54,2094.53,0.00,3518421414687.811523,3518421414678.794434,11,0,40.065953,0.023758,64433988,31500549,0,0,84611,0,1,1 +1773682707.356328,0.65,4,3992.50,53.51,1618.09,2094.97,0.00,0.000000,0.000000,11,0,0.000000,0.000030,64433988,31500552,0,0,84614,0,1,1 +1773682712.353447,0.65,4,3992.50,53.51,1618.09,2094.97,0.00,0.180377,0.000000,205,0,0.000000,0.000020,64433988,31500554,0,0,84616,0,1,1 +1773682717.353455,0.95,4,3992.50,53.75,1608.07,2104.24,0.00,55209.809844,58552.071775,3818327,3250049,0.000000,0.000513,64433988,31500560,0,0,84619,0,1,1 +1773682722.353599,0.60,4,3992.50,53.75,1607.97,2104.48,0.00,3518336035993.436035,3518336032660.461914,253,669,0.000000,0.000181,64433988,31500563,0,0,84621,0,1,1 +1773682727.357380,0.55,4,3992.50,53.55,1615.85,2096.61,0.00,55166.709709,58497.303972,3818327,3250090,0.000000,0.000030,64433988,31500566,0,0,84624,0,1,1 +1773682732.357862,0.70,4,3992.50,53.56,1615.61,2096.85,0.00,0.000000,0.005468,3818327,3250094,0.000000,0.000020,64433988,31500568,0,0,84626,0,1,1 +1773682737.353446,0.60,4,3992.50,53.56,1615.61,2096.85,0.00,3521546991677.492188,3521546988341.428223,253,669,0.000000,0.000030,64433988,31500571,0,0,84629,0,1,1 +1773682742.357742,0.55,4,3992.50,53.56,1615.61,2096.85,0.00,3515417085237.194824,3515417085228.185059,11,0,0.000000,0.000020,64433988,31500573,0,0,84631,0,1,1 +1773682747.353565,1.00,4,3992.50,53.57,1615.22,2097.54,0.00,0.000000,0.000000,11,0,0.000157,0.000211,64434000,31500588,0,0,84634,0,1,1 +1773682752.358181,0.70,4,3992.50,53.59,1614.49,2098.28,0.00,55149.443071,58487.608726,3816824,3249467,0.000016,0.000036,64434002,31500592,0,0,84636,0,1,1 +1773682757.358274,0.60,4,3992.50,53.60,1614.26,2098.51,0.00,0.000000,0.003906,3816824,3249471,0.000000,0.000030,64434002,31500595,0,0,84639,0,1,1 +1773682762.357904,0.75,4,3992.50,53.60,1614.26,2098.51,0.00,0.000000,0.004688,3816824,3249476,0.000000,0.000020,64434002,31500597,0,0,84641,0,1,1 +1773682767.357795,15.78,4,3992.50,53.65,1612.32,2100.45,0.00,3518513890359.687012,3518513887018.357910,11,0,40.062447,0.024018,64438301,31502280,0,0,84644,0,1,1 +1773682772.353559,0.80,4,3992.50,53.65,1612.34,2100.43,0.00,55247.161753,58591.370988,3816824,3249618,0.003088,0.001442,64438357,31502320,0,0,84646,0,1,1 +1773682777.357605,1.00,4,3992.50,53.65,1618.35,2100.41,0.00,3515591830528.412598,3515591827189.685547,75,0,0.000000,0.000030,64438357,31502323,0,0,84649,0,1,1 +1773682782.357883,0.75,4,3992.50,53.66,1615.81,2100.86,0.00,3518241517957.083008,0.000000,11,0,0.000000,0.000664,64438357,31502329,0,0,84651,0,1,1 +1773682787.357543,0.65,4,3992.50,53.66,1615.82,2100.86,0.00,0.180286,0.000000,205,0,0.000000,0.000030,64438357,31502332,0,0,84654,0,1,1 +1773682792.354383,0.60,4,3992.50,53.47,1623.21,2093.46,0.00,55235.077063,58578.862577,3816824,3249690,0.000000,0.000020,64438357,31502334,0,0,84656,0,1,1 +1773682797.353633,0.75,4,3992.50,53.48,1622.99,2093.68,0.00,3518965199043.718750,3518965195701.725098,11,0,0.000000,0.000030,64438357,31502337,0,0,84659,0,1,1 +1773682802.358023,0.65,4,3992.50,53.48,1623.01,2093.66,0.00,0.053469,0.000000,75,0,0.000000,0.000020,64438357,31502339,0,0,84661,0,1,1 +1773682807.357670,0.90,4,3992.50,53.44,1625.80,2092.17,0.00,55204.189899,58546.074278,3816824,3249774,0.000000,0.000030,64438357,31502342,0,0,84664,0,1,1 +1773682812.357908,0.95,4,3992.50,53.44,1625.45,2092.41,0.00,3518269952830.573730,3518269949498.153809,253,669,0.000056,0.000076,64438361,31502348,0,0,84666,0,1,1 +1773682817.354061,0.60,4,3992.50,53.44,1625.45,2092.41,0.00,3521146314771.317871,3521146314762.240234,75,0,0.000117,0.000170,64438371,31502361,0,0,84669,0,1,1 +1773682822.353577,0.55,4,3992.50,53.45,1625.22,2092.64,0.00,1.604355,10.676230,253,669,0.000000,0.000020,64438371,31502363,0,0,84671,0,1,1 +1773682827.353450,0.80,4,3992.50,53.46,1624.98,2092.89,0.00,0.517689,3518526372553.037109,258,2,0.000000,0.000030,64438371,31502366,0,0,84674,0,1,1 +1773682832.357707,15.99,4,3992.50,55.53,1543.71,2174.15,0.00,0.000000,0.000000,258,2,40.026754,0.023148,64442611,31503982,0,0,84676,0,1,1 +1773682837.353581,1.15,4,3992.50,54.56,1585.86,2136.27,0.00,0.000000,0.000000,258,2,0.003087,0.001440,64442667,31504022,0,0,84679,0,1,1 +1773682842.354646,0.70,4,3992.50,54.03,1606.74,2115.39,0.00,3517687456012.078613,3517687456014.200195,75,0,0.000000,0.000020,64442667,31504024,0,0,84681,0,1,1 +1773682847.358226,0.60,4,3992.50,53.64,1622.08,2100.05,0.00,3515920446927.931152,0.000000,11,0,0.000000,0.000673,64442667,31504031,0,0,84684,0,1,1 +1773682852.355124,0.60,4,3992.50,53.65,1621.62,2100.52,0.00,55244.351020,58589.229336,3818327,3250689,0.000000,0.000020,64442667,31504033,0,0,84686,0,1,1 +1773682857.354076,0.70,4,3992.50,53.65,1621.62,2100.51,0.00,3519174315418.205078,3519174315417.263672,3816824,3250024,0.000000,0.000030,64442667,31504036,0,0,84689,0,1,1 +1773682862.358106,0.70,4,3992.50,53.65,1621.56,2100.57,0.00,9.718340,10.671478,3818327,3250699,0.000000,0.000020,64442667,31504038,0,0,84691,0,1,1 +1773682867.356239,0.85,4,3992.50,53.77,1617.80,2105.05,0.00,3519751370407.137207,3519751367062.892578,205,0,0.000000,0.000030,64442667,31504041,0,0,84694,0,1,1 +1773682872.357968,0.65,4,3992.50,53.77,1617.56,2105.29,0.00,1.994428,0.000195,258,2,0.001434,0.001776,64442683,31504068,0,0,84696,0,1,1 +1773682877.357661,0.75,4,3992.50,53.77,1617.57,2105.29,0.00,55201.569966,58545.864878,3816824,3250064,0.000064,0.000094,64442688,31504076,0,0,84699,0,1,1 +1773682882.357405,0.60,4,3992.50,53.77,1617.57,2105.29,0.00,3518617003568.643066,3518617000226.558105,11,0,0.000101,0.000144,64442696,31504086,0,0,84701,0,1,1 +1773682887.357552,0.75,4,3992.50,53.77,1617.57,2105.29,0.00,2.175327,0.000195,258,2,0.001126,0.001219,64442705,31504102,0,0,84704,0,1,1 +1773682892.357765,0.65,4,3992.50,53.78,1617.09,2105.76,0.00,3518287093421.952148,3518287093424.127441,11,0,0.000000,0.000020,64442705,31504104,0,0,84706,0,1,1 +1773682897.354827,14.66,4,3992.50,55.59,1560.48,2176.51,0.00,2.176669,0.000195,258,2,40.085715,0.022914,64447051,31505699,0,0,84709,0,1,1 +1773682902.356220,1.00,4,3992.50,54.70,1594.91,2141.75,0.00,3517457321953.355957,10.672027,253,669,0.003084,0.001415,64447107,31505737,0,0,84711,0,1,1 +1773682907.358228,0.60,4,3992.50,54.18,1615.59,2121.08,0.00,3517024966498.232910,3517024966489.166016,75,0,0.000000,0.000030,64447107,31505740,0,0,84714,0,1,1 +1773682912.356893,0.60,4,3992.50,53.99,1622.93,2113.73,0.00,55224.771265,58568.804723,3818327,3250940,0.000000,0.000020,64447107,31505742,0,0,84716,0,1,1 +1773682917.357396,0.65,4,3992.50,53.99,1622.69,2113.98,0.00,0.000000,0.005468,3818327,3250946,0.000062,0.000724,64447111,31505753,0,0,84719,0,1,1 +1773682922.354601,0.55,4,3992.50,53.99,1622.69,2113.98,0.00,3520405003039.311523,3520404999694.295898,75,0,0.000008,0.000028,64447112,31505756,0,0,84721,0,1,1 +1773682927.357509,1.05,4,3992.50,54.19,1610.27,2121.53,0.00,2.120642,0.000195,258,2,0.000000,0.000030,64447112,31505759,0,0,84724,0,1,1 +1773682932.358272,0.90,4,3992.50,54.19,1610.28,2121.53,0.00,55199.483894,58544.311714,3818327,3250982,0.003169,0.002530,64447167,31505802,0,0,84726,0,1,1 +1773682937.356827,0.60,4,3992.50,54.00,1617.68,2114.12,0.00,3519454688558.256348,3519454685214.073242,75,0,0.000000,0.000030,64447167,31505805,0,0,84729,0,1,1 +1773682942.353446,0.65,4,3992.50,54.00,1617.44,2114.37,0.00,0.126844,0.000000,205,0,0.000031,0.000045,64447169,31505809,0,0,84731,0,1,1 +1773682947.353554,0.70,4,3992.50,54.01,1617.22,2114.59,0.00,3518361209466.206055,0.000000,11,0,0.000076,0.000123,64447175,31505818,0,0,84734,0,1,1 +1773682952.355128,0.70,4,3992.50,54.01,1617.22,2114.58,0.00,0.053499,0.000000,75,0,0.000000,0.000020,64447175,31505820,0,0,84736,0,1,1 +1773682957.353452,0.95,4,3992.50,54.17,1611.76,2120.94,0.00,2.122586,0.000195,258,2,0.000000,0.000030,64447175,31505823,0,0,84739,0,1,1 +1773682962.353556,15.94,4,3992.50,53.73,1629.03,2103.68,0.00,3518363584308.332031,3518363584310.507324,11,0,40.060571,0.020898,64451411,31507188,0,0,84741,0,1,1 +1773682967.353509,0.80,4,3992.50,53.77,1627.34,2105.36,0.00,1.657731,10.675297,253,669,0.003093,0.001438,64451468,31507228,0,0,84744,0,1,1 +1773682972.357879,0.75,4,3992.50,53.77,1627.34,2105.36,0.00,3515364505402.315918,3515364505393.306641,11,0,0.000000,0.000020,64451468,31507230,0,0,84746,0,1,1 +1773682977.355583,0.60,4,3992.50,53.68,1631.20,2101.50,0.00,2.176390,0.000195,258,2,0.000081,0.000117,64451474,31507239,0,0,84749,0,1,1 +1773682982.353604,0.60,4,3992.50,53.71,1629.98,2102.72,0.00,0.000000,0.000000,258,2,0.000000,0.000664,64451474,31507245,0,0,84751,0,1,1 +1773682987.353673,1.00,4,3992.50,53.91,1618.27,2110.76,0.00,3518388700856.005859,3518388700858.181152,11,0,0.000000,0.000030,64451474,31507248,0,0,84754,0,1,1 +1773682992.357709,0.80,4,3992.50,53.73,1623.35,2103.59,0.00,0.180128,0.000000,205,0,0.000000,0.000020,64451474,31507250,0,0,84756,0,1,1 +1773682997.357507,0.70,4,3992.50,53.73,1623.36,2103.58,0.00,0.000000,0.000000,205,0,0.000000,0.000030,64451474,31507253,0,0,84759,0,1,1 +1773683002.357702,0.60,4,3992.50,53.73,1623.36,2103.58,0.00,1.477384,10.674779,253,669,0.000013,0.000020,64451475,31507255,0,0,84761,0,1,1 +1773683007.358087,0.65,4,3992.50,53.73,1623.36,2103.58,0.00,55204.175129,58538.439298,3818327,3251329,0.000056,0.000086,64451479,31507262,0,0,84764,0,1,1 +1773683012.358193,0.65,4,3992.50,53.73,1623.36,2103.57,0.00,0.000000,0.006250,3818327,3251335,0.000109,0.000152,64451488,31507273,0,0,84766,0,1,1 +1773683017.358106,0.90,4,3992.50,53.73,1626.25,2103.57,0.00,0.000000,0.035157,3818327,3251353,0.000000,0.000030,64451488,31507276,0,0,84769,0,1,1 +1773683022.353453,0.75,4,3992.50,53.73,1626.38,2103.53,0.00,3521714073663.136719,3521714073662.200684,3816824,3250697,0.000000,0.000020,64451488,31507278,0,0,84771,0,1,1 +1773683027.358255,17.67,4,3992.50,54.04,1614.06,2115.84,0.00,3515061744639.965820,3515061741309.536621,253,669,40.023558,0.021447,64455807,31508759,0,0,84774,0,1,1 +1773683032.354577,0.85,4,3992.50,54.05,1613.87,2116.04,0.00,55239.318909,58575.441704,3816824,3250766,0.003087,0.001429,64455863,31508798,0,0,84776,0,1,1 +1773683037.354554,0.65,4,3992.50,54.05,1613.63,2116.28,0.00,3518453584862.745117,3518453581529.060059,253,669,0.000000,0.000030,64455863,31508801,0,0,84779,0,1,1 +1773683042.357695,0.55,4,3992.50,54.05,1613.63,2116.27,0.00,3516228552505.208008,3516228552496.143066,75,0,0.000000,0.000020,64455863,31508803,0,0,84781,0,1,1 +1773683047.354020,1.00,4,3992.50,54.05,1609.68,2116.20,0.00,55250.633500,58596.859825,3818327,3251472,0.000000,0.000674,64455863,31508810,0,0,84784,0,1,1 +1773683052.357615,0.65,4,3992.50,54.07,1609.00,2116.89,0.00,3515909057548.197266,3515909054206.706055,205,0,0.000000,0.000020,64455863,31508812,0,0,84786,0,1,1 +1773683057.357777,0.70,4,3992.50,54.07,1609.00,2116.89,0.00,1.477394,10.674851,253,669,0.000000,0.000030,64455863,31508815,0,0,84789,0,1,1 +1773683062.358258,0.60,4,3992.50,54.07,1608.77,2117.12,0.00,55193.382292,58527.034669,3816824,3250943,0.000000,0.000020,64455863,31508817,0,0,84791,0,1,1 +1773683067.357826,0.65,4,3992.50,54.07,1608.77,2117.12,0.00,3518740733745.573242,3518740730400.118652,258,2,0.000000,0.000030,64455863,31508820,0,0,84794,0,1,1 +1773683072.357672,0.75,4,3992.50,54.07,1608.77,2117.11,0.00,55199.885063,58545.161525,3816824,3250950,0.000134,0.000139,64455872,31508830,0,0,84796,0,1,1 +1773683077.354465,0.85,4,3992.50,53.94,1608.43,2111.75,0.00,9.732415,10.720549,3818327,3251636,0.000261,0.000351,64455891,31508855,0,0,84799,0,1,1 +1773683082.353991,0.60,4,3992.50,53.91,1609.35,2110.85,0.00,3518770823535.253418,3518770823534.308594,3816824,3250968,0.000000,0.000020,64455891,31508857,0,0,84801,0,1,1 +1773683087.357551,0.70,4,3992.50,53.91,1609.35,2110.85,0.00,3515933417414.664062,3515933414074.001953,11,0,0.000000,0.000030,64455891,31508860,0,0,84804,0,1,1 +1773683092.357802,0.85,4,3992.50,53.71,1617.23,2102.96,0.00,55207.316012,58551.164019,3818327,3251667,0.002255,0.000443,64455916,31508879,0,0,84806,0,1,1 +1773683097.354959,0.95,4,3992.50,53.72,1617.02,2103.17,0.00,3520438363759.283203,3520438360413.185059,205,0,0.001045,0.002089,64455936,31508909,0,0,84809,0,1,1 +1773683102.356438,1.26,4,3992.50,53.73,1616.37,2103.81,0.00,1.994527,0.000195,258,2,0.001648,0.001375,64455978,31508946,0,0,84811,0,1,1 +1773683107.355073,15.13,4,3992.50,59.69,1377.62,2337.13,0.00,3519397920751.719238,3519397920753.895020,11,0,0.958705,0.017234,64457827,31509982,0,0,84814,0,1,1 +1773683112.358043,1.01,4,3992.50,59.29,1393.30,2321.46,0.00,1.656731,10.668858,253,669,6.260237,0.144028,64467937,31518185,0,0,84816,0,1,1 +1773683117.353448,0.81,4,3992.50,59.36,1390.75,2324.01,0.00,55249.470243,58586.735022,3816824,3251136,5.716432,0.138502,64478413,31526108,0,0,84819,0,1,1 +1773683122.353440,0.66,4,3992.50,59.30,1392.90,2321.86,0.00,3518442866228.859375,3518442862883.463379,258,2,6.440549,0.158715,64490150,31535223,0,0,84821,0,1,1 +1773683127.353447,0.70,4,3992.50,59.43,1387.84,2326.92,0.00,0.000000,0.000000,258,2,5.466542,0.144834,64500391,31543506,0,0,84824,0,1,1 +1773683132.357406,0.55,4,3992.50,59.44,1387.45,2327.32,0.00,3515653449791.509766,3515653449793.630371,75,0,6.258283,0.172805,64512283,31553330,0,0,84826,0,1,1 +1773683137.355365,0.96,4,3992.50,59.54,1383.33,2331.15,0.00,55232.580619,58578.318417,3818327,3251954,5.441508,0.152811,64522499,31562038,0,0,84829,0,1,1 +1773683142.357787,0.85,4,3992.50,53.89,1604.45,2110.05,0.00,3516733399732.911133,3516733396390.212402,11,0,3.969159,0.124588,64529892,31569136,0,0,84831,0,1,1 +1773683147.356119,0.75,4,3992.50,53.92,1603.47,2111.03,0.00,55218.769905,58563.273019,3816824,3251312,0.975772,0.034352,64531743,31571119,0,0,84834,0,1,1 +1773683152.353436,0.80,4,3992.50,53.72,1611.35,2103.15,0.00,3520326198036.169922,3520326194690.987305,11,0,0.253566,0.009002,64532239,31571649,0,0,84836,0,1,1 +1773683157.353470,0.70,4,3992.50,53.54,1618.21,2096.29,0.00,0.000000,0.000000,11,0,0.265151,0.009276,64532764,31572183,0,0,84839,0,1,1 +1773683162.354579,0.75,4,3992.50,53.58,1616.74,2097.76,0.00,55197.830210,58541.457500,3818327,3252042,0.001829,0.000925,64532800,31572215,0,0,84841,0,1,1 +1773683167.354048,1.15,4,3992.50,53.58,1616.59,2097.91,0.00,3518810828161.094238,3518810824814.194336,258,2,0.001157,0.000778,64532825,31572242,0,0,84844,0,1,1 +1773683172.358340,0.75,4,3992.50,53.61,1615.39,2099.11,0.00,0.000000,0.000000,258,2,0.000337,0.000574,64532834,31572255,0,0,84846,0,1,1 +1773683177.353567,0.65,4,3992.50,53.61,1615.39,2099.10,0.00,3521799120434.471191,3521799120436.648438,11,0,0.001201,0.001917,64532848,31572279,0,0,84849,0,1,1 +1773683182.353549,0.70,4,3992.50,53.61,1615.39,2099.10,0.00,55210.286541,58554.773749,3818327,3252116,0.000000,0.000020,64532848,31572281,0,0,84851,0,1,1 +1773683187.357720,0.60,4,3992.50,53.61,1615.40,2099.10,0.00,3515504183656.301270,3515504183655.358398,3816824,3251449,0.001229,0.001853,64532864,31572302,0,0,84854,0,1,1 +1773683192.355757,0.70,4,3992.50,53.42,1622.82,2091.69,0.00,3519818589558.212402,3519818586211.192383,258,2,0.000000,0.000020,64532864,31572304,0,0,84856,0,1,1 +1773683197.357722,0.90,4,3992.50,53.65,1614.24,2100.52,0.00,3517055728383.070312,3517055728385.191406,75,0,0.000000,0.000030,64532864,31572307,0,0,84859,0,1,1 +1773683202.357401,0.60,4,3992.50,53.65,1613.88,2100.52,0.00,2.122011,0.000195,258,2,0.000027,0.000064,64532866,31572312,0,0,84861,0,1,1 +1773683207.357975,0.65,4,3992.50,53.65,1613.88,2100.51,0.00,3518033298552.824707,3518033298554.946289,75,0,0.000053,0.000105,64532870,31572320,0,0,84864,0,1,1 +1773683212.353558,0.60,4,3992.50,53.65,1613.88,2100.51,0.00,3521548312287.921387,0.000000,11,0,0.000054,0.000098,64532875,31572328,0,0,84866,0,1,1 +1773683217.353445,0.70,4,3992.50,53.66,1613.65,2100.75,0.00,0.000000,0.000000,11,0,0.000031,0.000057,64532877,31572333,0,0,84869,0,1,1 +1773683222.356892,0.55,4,3992.50,53.66,1613.65,2100.74,0.00,55162.319761,58503.650006,3816824,3251532,0.000031,0.000045,64532879,31572337,0,0,84871,0,1,1 +1773683227.357902,1.15,4,3992.50,53.65,1613.67,2100.68,0.00,3517726539151.815918,3517726535808.803223,75,0,0.002306,0.000877,64532909,31572366,0,0,84874,0,1,1 +1773683232.354494,1.15,4,3992.50,53.76,1609.37,2105.01,0.00,55247.689452,58594.665351,3818327,3252255,0.001687,0.002286,64532952,31572397,0,0,84876,0,1,1 +1773683237.354125,1.15,4,3992.50,53.78,1608.64,2105.74,0.00,3518696655440.420410,3518696652095.352539,205,0,0.005259,0.004612,64533048,31572490,0,0,84879,0,1,1 +1773683242.358110,17.12,4,3992.50,59.78,1373.82,2340.55,0.00,3515635326278.207520,0.000000,11,0,2.561578,0.059860,64537902,31575969,0,0,84881,0,1,1 +1773683247.353484,0.71,4,3992.50,59.81,1372.75,2341.63,0.00,0.000000,0.000000,11,0,5.966696,0.155411,64548894,31584882,0,0,84884,0,1,1 +1773683252.355327,0.60,4,3992.50,59.45,1386.76,2327.62,0.00,0.053496,0.000000,75,0,5.611315,0.170723,64559761,31594494,0,0,84886,0,1,1 +1773683257.357554,1.11,4,3992.50,60.19,1357.89,2356.49,0.00,55175.728331,58518.149668,3816824,3251741,4.138210,0.122741,64567582,31601557,0,0,84889,0,1,1 +1773683262.353442,0.81,4,3992.50,59.96,1366.70,2347.68,0.00,9.734177,10.726692,3818327,3252456,4.860751,0.133115,64576602,31609196,0,0,84891,0,1,1 +1773683267.357355,1.26,4,3992.50,59.76,1374.46,2339.91,0.00,3515685679622.705566,3515685676289.483887,253,669,6.325131,0.181798,64588697,31619436,0,0,84894,0,1,1 +1773683272.357710,0.80,4,3992.50,59.76,1374.58,2339.80,0.00,0.000000,0.000000,253,669,3.599389,0.113488,64595655,31625958,0,0,84896,0,1,1 +1773683277.357558,0.80,4,3992.50,59.77,1374.44,2339.93,0.00,55210.107893,58546.053091,3818327,3252481,3.766666,0.106244,64602683,31632186,0,0,84899,0,1,1 +1773683282.357843,0.80,4,3992.50,54.32,1587.49,2126.90,0.00,3518235985161.551758,3518235981816.701660,205,0,3.841268,0.117041,64609823,31638910,0,0,84901,0,1,1 +1773683287.357553,0.95,4,3992.50,54.31,1597.15,2126.54,0.00,0.000000,0.000000,205,0,1.184503,0.044284,64612044,31641397,0,0,84904,0,1,1 +1773683292.358212,0.90,4,3992.50,54.31,1595.12,2126.47,0.00,55192.896304,58536.643893,3816824,3251898,0.002230,0.000987,64612086,31641433,0,0,84906,0,1,1 +1773683297.357713,0.75,4,3992.50,54.31,1595.13,2126.48,0.00,3518788592693.541504,3518788589349.199219,11,0,0.000775,0.000729,64612106,31641457,0,0,84909,0,1,1 +1773683302.353462,0.55,4,3992.50,54.31,1595.13,2126.48,0.00,0.000000,0.000000,11,0,0.000008,0.000028,64612107,31641460,0,0,84911,0,1,1 +1773683307.357990,0.65,4,3992.50,54.32,1594.90,2126.71,0.00,0.000000,0.000000,11,0,0.000000,0.000673,64612107,31641467,0,0,84914,0,1,1 +1773683312.357843,0.80,4,3992.50,54.32,1594.90,2126.71,0.00,0.000000,0.000000,11,0,0.000000,0.000020,64612107,31641469,0,0,84916,0,1,1 +1773683317.353561,0.90,4,3992.50,54.20,1592.77,2122.17,0.00,55257.396421,58605.308804,3818327,3252635,0.000000,0.000030,64612107,31641472,0,0,84919,0,1,1 +1773683322.353576,0.65,4,3992.50,54.15,1594.73,2120.22,0.00,3518426536469.257324,3518426533124.167969,75,0,0.000000,0.000020,64612107,31641474,0,0,84921,0,1,1 +1773683327.353447,0.65,4,3992.50,54.15,1594.73,2120.22,0.00,3518528295136.239746,0.000000,11,0,0.000000,0.000030,64612107,31641477,0,0,84924,0,1,1 +1773683332.353441,0.55,4,3992.50,54.15,1594.73,2120.22,0.00,0.000000,0.000000,11,0,0.000027,0.000051,64612109,31641481,0,0,84926,0,1,1 +1773683337.353449,0.65,4,3992.50,53.96,1602.36,2112.59,0.00,0.000000,0.000000,11,0,0.000063,0.000125,64612114,31641491,0,0,84929,0,1,1 +1773683342.357961,0.60,4,3992.50,53.96,1602.14,2112.81,0.00,0.000000,0.000000,11,0,0.000053,0.000107,64612118,31641499,0,0,84931,0,1,1 +1773683347.357704,0.90,4,3992.50,54.07,1597.96,2116.94,0.00,0.053518,0.000000,75,0,0.000000,0.000030,64612118,31641502,0,0,84934,0,1,1 +1773683352.358062,0.85,4,3992.50,53.69,1612.75,2102.18,0.00,3518185754999.953613,0.000000,11,0,0.000058,0.000020,64612122,31641504,0,0,84936,0,1,1 +1773683357.358093,0.80,4,3992.50,53.73,1611.29,2103.64,0.00,0.000000,0.000000,11,0,0.002313,0.001221,64612151,31641535,0,0,84939,0,1,1 +1773683362.358331,0.90,4,3992.50,53.77,1609.66,2105.25,0.00,0.000000,0.000000,11,0,0.001577,0.001644,64612180,31641565,0,0,84941,0,1,1 +1773683367.357943,12.64,4,3992.50,59.72,1376.63,2338.27,0.00,0.180287,0.000000,205,0,0.060574,0.002001,64612349,31641634,0,0,84944,0,1,1 +1773683372.358117,4.33,4,3992.50,59.67,1378.77,2336.14,0.00,3518314426746.154785,0.000000,11,0,4.198752,0.096190,64620114,31647142,0,0,84946,0,1,1 +1773683377.354884,0.91,4,3992.50,59.90,1376.80,2345.21,0.00,55245.803814,58593.236238,3818327,3252844,5.091861,0.139301,64629835,31655069,0,0,84949,0,1,1 +1773683382.357654,0.80,4,3992.50,59.85,1378.95,2343.10,0.00,3516488956197.882812,3516488952854.467285,11,0,5.658200,0.135854,64640337,31662909,0,0,84951,0,1,1 +1773683387.357361,0.66,4,3992.50,59.67,1385.74,2336.30,0.00,55203.593737,58548.213070,3816824,3252281,5.619516,0.153315,64651022,31671620,0,0,84954,0,1,1 +1773683392.358238,0.85,4,3992.50,59.72,1384.04,2338.00,0.00,9.724467,10.677132,3818327,3252961,3.288842,0.094980,64657313,31677234,0,0,84956,0,1,1 +1773683397.357651,0.66,4,3992.50,60.07,1370.20,2351.84,0.00,3518849783149.358887,3518849779812.609863,253,669,3.980458,0.104852,64664735,31683423,0,0,84959,0,1,1 +1773683402.357295,0.71,4,3992.50,59.72,1383.75,2338.29,0.00,0.000000,0.000000,253,669,6.400960,0.179721,64676942,31693531,0,0,84961,0,1,1 +1773683407.358008,0.96,4,3992.50,59.72,1390.57,2338.03,0.00,0.000000,0.000000,253,669,3.686044,0.119236,64684147,31700315,0,0,84964,0,1,1 +1773683412.358118,0.96,4,3992.50,54.43,1597.52,2130.91,0.00,3518359807780.512207,3518359807771.441895,75,0,2.376705,0.072817,64688647,31704716,0,0,84966,0,1,1 +1773683417.357919,0.70,4,3992.50,53.97,1615.46,2112.97,0.00,1.604263,10.675619,253,669,1.826270,0.059457,64692082,31708210,0,0,84969,0,1,1 +1773683422.353436,0.75,4,3992.50,53.99,1614.61,2113.82,0.00,55248.239493,58586.763517,3816825,3252421,0.117853,0.006952,64692333,31708603,0,0,84971,0,1,1 +1773683427.358237,0.80,4,3992.50,53.99,1614.63,2113.79,0.00,9.716842,10.668858,3818328,3253109,0.002230,0.001081,64692376,31708645,0,0,84974,0,1,1 +1773683432.357548,0.70,4,3992.50,54.00,1614.39,2114.03,0.00,0.000000,0.034087,3818328,3253151,0.000228,0.000382,64692383,31708655,0,0,84976,0,1,1 +1773683437.358284,0.85,4,3992.50,53.99,1620.08,2113.97,0.00,3517918990944.104980,3517918987596.887695,258,2,0.000000,0.000674,64692383,31708662,0,0,84979,0,1,1 +1773683442.353562,0.80,4,3992.50,53.99,1620.13,2113.97,0.00,3521763293849.864258,3521763293851.861328,205,0,0.000000,0.000020,64692383,31708664,0,0,84981,0,1,1 +1773683447.354201,0.55,4,3992.50,53.99,1620.13,2113.96,0.00,3517988096190.334961,0.000000,75,0,0.000000,0.000030,64692383,31708667,0,0,84984,0,1,1 +1773683452.354576,0.65,4,3992.50,53.99,1620.13,2113.96,0.00,2.121716,0.000195,258,2,0.000000,0.000020,64692383,31708669,0,0,84986,0,1,1 +1773683457.357330,0.65,4,3992.50,53.99,1620.13,2113.96,0.00,55177.516074,58523.508997,3818328,3253244,0.000000,0.000030,64692383,31708672,0,0,84989,0,1,1 +1773683462.357937,0.60,4,3992.50,53.99,1620.13,2113.96,0.00,3518010003230.937012,3518009999885.681641,11,0,0.000000,0.000020,64692383,31708674,0,0,84991,0,1,1 +1773683467.358335,0.85,4,3992.50,54.04,1613.51,2115.65,0.00,55195.972608,58540.455141,3816825,3252592,0.000025,0.000073,64692385,31708680,0,0,84994,0,1,1 +1773683472.353568,0.75,4,3992.50,54.04,1613.52,2115.65,0.00,9.735455,10.700438,3818328,3253279,0.000094,0.000142,64692393,31708691,0,0,84996,0,1,1 +1773683477.353470,0.65,4,3992.50,53.84,1621.16,2108.00,0.00,0.000000,0.003125,3818328,3253282,0.001139,0.001024,64692412,31708714,0,0,84999,0,1,1 +1773683482.354847,0.65,4,3992.50,53.85,1620.91,2108.25,0.00,3517468555394.125000,3517468552047.155762,258,2,0.000496,0.001462,64692423,31708730,0,0,85001,0,1,1 +1773683487.358266,0.85,4,3992.50,53.84,1621.15,2108.00,0.00,55160.463727,58505.126456,3816825,3252622,0.000576,0.000116,64692435,31708738,0,0,85004,0,1,1 +1773683492.353559,0.95,4,3992.50,53.87,1620.19,2108.96,0.00,3521752069731.761719,3521752066383.835449,11,0,0.003142,0.002589,64692477,31708785,0,0,85006,0,1,1 +1773683497.357594,1.20,4,3992.50,54.09,1611.27,2117.73,0.00,2.173637,0.000195,258,2,0.001640,0.002175,64692512,31708816,0,0,85009,0,1,1 +1773683502.353442,14.20,4,3992.50,59.70,1391.53,2337.50,0.00,55253.798575,58604.680515,3818328,3253494,0.232218,0.004372,64693012,31709049,0,0,85011,0,1,1 +1773683507.358311,0.75,4,3992.50,59.51,1399.18,2329.85,0.00,3515014588188.267090,3515014584854.606934,253,669,5.097134,0.122116,64702338,31716105,0,0,85014,0,1,1 +1773683512.353427,0.66,4,3992.50,59.51,1399.22,2329.81,0.00,3521877167185.818848,3521877167176.792969,11,0,6.552071,0.167179,64714529,31725590,0,0,85016,0,1,1 +1773683517.357694,0.75,4,3992.50,59.54,1397.89,2331.14,0.00,2.173536,0.000195,258,2,4.980168,0.141135,64723890,31733707,0,0,85019,0,1,1 +1773683522.357735,0.65,4,3992.50,59.58,1396.45,2332.58,0.00,3518408045502.075195,10.674912,253,669,6.674039,0.164324,64735970,31743126,0,0,85021,0,1,1 +1773683527.353844,0.71,4,3992.50,59.65,1392.57,2335.30,0.00,55241.692078,58580.324072,3816825,3252888,6.101362,0.174071,64747545,31752925,0,0,85024,0,1,1 +1773683532.353544,0.75,4,3992.50,59.67,1391.53,2336.30,0.00,3518649081214.927246,3518649077878.691895,253,669,3.587779,0.114395,64754506,31759458,0,0,85026,0,1,1 +1773683537.358005,0.96,4,3992.50,59.57,1395.73,2332.10,0.00,3515300315177.971680,3515300315168.962402,11,0,3.694207,0.105816,64761516,31765527,0,0,85029,0,1,1 +1773683542.353445,0.75,4,3992.50,59.31,1405.73,2322.11,0.00,0.180438,0.000000,205,0,3.034319,0.093357,64767175,31770922,0,0,85031,0,1,1 +1773683547.353609,0.85,4,3992.50,54.02,1612.72,2115.12,0.00,0.000000,0.000000,205,0,1.670987,0.052278,64770312,31773946,0,0,85034,0,1,1 +1773683552.353946,0.75,4,3992.50,53.99,1613.95,2113.89,0.00,0.000000,0.000000,205,0,0.181363,0.010601,64770685,31774531,0,0,85036,0,1,1 +1773683557.356745,1.05,4,3992.50,54.01,1610.74,2114.75,0.00,1.476615,10.669221,253,669,0.002191,0.001065,64770725,31774569,0,0,85039,0,1,1 +1773683562.357879,0.65,4,3992.50,54.01,1611.00,2114.48,0.00,3517639932976.621094,3517639932967.605957,11,0,0.000013,0.000058,64770726,31774574,0,0,85041,0,1,1 +1773683567.357446,0.65,4,3992.50,54.01,1611.01,2114.48,0.00,0.180289,0.000000,205,0,0.000000,0.000674,64770726,31774581,0,0,85044,0,1,1 +1773683572.355906,0.65,4,3992.50,54.01,1610.89,2114.60,0.00,1.477896,10.678483,253,669,0.000000,0.000020,64770726,31774583,0,0,85046,0,1,1 +1773683577.357919,0.60,4,3992.50,54.00,1611.13,2114.35,0.00,3517021431201.188477,3517021431191.994629,205,0,0.000000,0.000030,64770726,31774586,0,0,85049,0,1,1 +1773683582.358210,0.60,4,3992.50,54.00,1611.13,2114.35,0.00,55196.976296,58542.176039,3816825,3253061,0.000059,0.000095,64770730,31774593,0,0,85051,0,1,1 +1773683587.353484,0.90,4,3992.50,54.20,1603.32,2122.16,0.00,9.735373,10.740229,3818328,3253760,0.000033,0.000050,64770733,31774598,0,0,85054,0,1,1 +1773683592.358126,0.75,4,3992.50,54.12,1606.39,2119.09,0.00,3515173485931.030762,3515173482585.743652,258,2,0.000000,0.000020,64770733,31774600,0,0,85056,0,1,1 +1773683597.353441,0.60,4,3992.50,54.13,1606.37,2119.11,0.00,3521737412810.757324,3521737412812.754395,205,0,0.000050,0.000092,64770737,31774607,0,0,85059,0,1,1 +1773683602.353555,0.70,4,3992.50,54.13,1606.36,2119.13,0.00,1.477407,10.674950,253,669,0.000080,0.000126,64770743,31774616,0,0,85061,0,1,1 +1773683607.353444,0.65,4,3992.50,54.14,1605.62,2119.87,0.00,3518515870229.743652,3518515870220.726074,11,0,0.000000,0.000030,64770743,31774619,0,0,85064,0,1,1 +1773683612.353451,0.70,4,3992.50,54.15,1605.21,2120.27,0.00,0.000000,0.000000,11,0,0.000000,0.000020,64770743,31774621,0,0,85066,0,1,1 +1773683617.357439,1.25,4,3992.50,54.11,1606.29,2118.63,0.00,2.173657,0.000195,258,2,0.001340,0.001314,64770765,31774640,0,0,85069,0,1,1 +1773683622.357727,0.95,4,3992.50,54.14,1605.34,2119.59,0.00,3518234416442.020508,3518234416444.142090,75,0,0.002653,0.002139,64770794,31774672,0,0,85071,0,1,1 +1773683627.353447,1.16,4,3992.50,54.27,1600.15,2124.79,0.00,0.000000,0.000000,75,0,0.001622,0.001382,64770834,31774710,0,0,85074,0,1,1 +1773683632.354567,13.26,4,3992.50,59.81,1383.41,2341.52,0.00,55197.665876,58543.424711,3818328,3253994,0.760450,0.013839,64772326,31775503,0,0,85076,0,1,1 +1773683637.357929,0.65,4,3992.50,59.55,1393.58,2331.36,0.00,3516072892462.322754,3516072892461.384766,3816825,3253331,5.643926,0.146291,64782756,31783851,0,0,85079,0,1,1 +1773683642.354580,1.11,4,3992.50,54.51,1590.78,2134.16,0.00,3520795532518.583496,3520795529168.647949,258,2,34.517908,0.052335,64790522,31787546,0,0,85081,0,1,1 +1773683647.353568,1.00,4,3992.50,54.33,1598.96,2127.10,0.00,3519149867697.805664,3519149867699.928223,75,0,0.000008,0.000038,64790523,31787550,0,0,85084,0,1,1 +1773683652.353446,0.65,4,3992.50,54.24,1602.54,2123.56,0.00,1.604238,10.675456,253,669,0.000000,0.000020,64790523,31787552,0,0,85086,0,1,1 +1773683657.356850,0.65,4,3992.50,54.23,1602.79,2123.31,0.00,55161.149969,58495.524483,3816825,3253457,0.000000,0.000030,64790523,31787555,0,0,85089,0,1,1 +1773683662.357916,0.65,4,3992.50,54.23,1602.79,2123.31,0.00,3517687146904.884277,3517687143557.760254,258,2,0.000000,0.000020,64790523,31787557,0,0,85091,0,1,1 +1773683667.357493,0.75,4,3992.50,54.23,1602.79,2123.31,0.00,55202.855856,58550.983352,3816825,3253463,0.000000,0.000030,64790523,31787560,0,0,85094,0,1,1 +1773683672.353561,0.65,4,3992.50,54.24,1602.56,2123.54,0.00,3521205934953.026855,3521205931604.725098,11,0,0.000062,0.000070,64790527,31787566,0,0,85096,0,1,1 +1773683677.357876,1.00,4,3992.50,54.24,1603.04,2123.50,0.00,0.053469,0.000000,75,0,0.000008,0.000038,64790528,31787570,0,0,85099,0,1,1 +1773683682.356648,0.65,4,3992.50,54.03,1610.77,2115.39,0.00,55213.868946,58560.459578,3816825,3253485,0.000000,0.000020,64790528,31787572,0,0,85101,0,1,1 +1773683687.358166,0.65,4,3992.50,54.03,1610.78,2115.38,0.00,9.723220,10.685428,3818328,3254171,0.000126,0.000185,64790538,31787585,0,0,85104,0,1,1 +1773683692.357682,0.65,4,3992.50,54.03,1610.78,2115.38,0.00,3518778021218.984863,3518778017871.803223,205,0,0.000000,0.000020,64790538,31787587,0,0,85106,0,1,1 +1773683697.355135,0.70,4,3992.50,54.03,1610.78,2115.38,0.00,3520230581200.012207,0.000000,11,0,0.000000,0.000674,64790538,31787594,0,0,85109,0,1,1 +1773683702.355287,0.65,4,3992.50,54.03,1610.79,2115.37,0.00,2.175324,0.000195,258,2,0.000000,0.000020,64790538,31787596,0,0,85111,0,1,1 +1773683707.355858,14.95,4,3992.50,59.07,1417.47,2312.61,0.00,3518035663106.524414,10.673782,253,669,40.058702,0.022145,64794972,31789131,0,0,85114,0,1,1 +1773683712.357731,1.15,4,3992.50,54.73,1587.11,2142.96,0.00,0.517482,3517119312612.015625,258,2,0.003218,0.001549,64795039,31789180,0,0,85116,0,1,1 +1773683717.353559,0.70,4,3992.50,54.24,1606.45,2123.63,0.00,55244.288180,58595.210785,3816826,3253728,0.000000,0.000030,64795039,31789183,0,0,85119,0,1,1 +1773683722.357878,0.60,4,3992.50,54.20,1608.07,2122.00,0.00,3515400762835.756348,3515400759501.701660,253,669,0.000000,0.000020,64795039,31789185,0,0,85121,0,1,1 +1773683727.353941,0.65,4,3992.50,54.20,1608.08,2122.00,0.00,55242.212833,58581.806345,3816826,3253765,0.000000,0.000030,64795039,31789188,0,0,85124,0,1,1 +1773683732.357745,0.65,4,3992.50,54.06,1613.45,2116.63,0.00,3515762097493.747070,3515762094150.309570,11,0,0.000000,0.000020,64795039,31789190,0,0,85126,0,1,1 +1773683737.358192,0.90,4,3992.50,54.09,1612.94,2117.79,0.00,55205.161870,58551.879899,3818329,3254470,0.000000,0.000030,64795039,31789193,0,0,85129,0,1,1 +1773683742.357559,0.55,4,3992.50,54.04,1614.32,2115.77,0.00,3518882522447.110352,3518882519099.669434,11,0,0.000000,0.000020,64795039,31789195,0,0,85131,0,1,1 +1773683747.355607,0.75,4,3992.50,54.04,1614.32,2115.77,0.00,55231.670735,58580.034897,3818329,3254504,0.000000,0.000066,64795039,31789199,0,0,85134,0,1,1 +1773683752.357177,0.75,4,3992.50,54.04,1614.32,2115.77,0.00,3517332711201.966309,3517332707855.780273,205,0,0.000056,0.000076,64795043,31789205,0,0,85136,0,1,1 +1773683757.356086,0.55,4,3992.50,54.05,1613.87,2116.22,0.00,3519204753070.391602,0.000000,11,0,0.000109,0.000162,64795052,31789217,0,0,85139,0,1,1 +1773683762.358033,0.70,4,3992.50,54.06,1613.65,2116.44,0.00,0.000000,0.000000,11,0,0.000000,0.000663,64795052,31789223,0,0,85141,0,1,1 +1773683767.357465,1.00,4,3992.50,54.40,1608.20,2129.69,0.00,55206.647395,58553.173207,3816826,3253856,0.000000,0.000030,64795052,31789226,0,0,85144,0,1,1 +1773683772.355042,16.57,4,3992.50,55.43,1567.70,2170.18,0.00,3520142459946.125488,3520142456607.379883,253,669,40.080953,0.020790,64799335,31790653,0,0,85146,0,1,1 +1773683777.357748,0.95,4,3992.50,54.50,1604.08,2133.81,0.00,3516534140078.783203,3516534140069.590820,205,0,0.003391,0.001992,64799398,31790704,0,0,85149,0,1,1 +1773683782.354727,0.70,4,3992.50,54.12,1619.04,2118.85,0.00,0.000000,0.000000,205,0,0.001135,0.001230,64799408,31790721,0,0,85151,0,1,1 +1773683787.358210,0.55,4,3992.50,54.10,1619.91,2117.98,0.00,1.476413,10.667765,253,669,0.000000,0.000030,64799408,31790724,0,0,85154,0,1,1 +1773683792.357764,0.60,4,3992.50,54.15,1617.70,2120.19,0.00,55213.363943,58551.858712,3818329,3254682,0.000000,0.000020,64799408,31790726,0,0,85156,0,1,1 +1773683797.358256,1.10,4,3992.50,53.77,1619.32,2105.16,0.00,3518090785673.745117,3518090782326.860352,11,0,0.001139,0.001231,64799418,31790743,0,0,85159,0,1,1 +1773683802.354651,0.60,4,3992.50,53.77,1619.09,2105.40,0.00,2.176960,0.000195,258,2,0.000000,0.000020,64799418,31790745,0,0,85161,0,1,1 +1773683807.355881,0.70,4,3992.50,53.79,1618.35,2106.14,0.00,0.000000,0.000000,258,2,0.000000,0.000030,64799418,31790748,0,0,85164,0,1,1 +1773683812.358112,0.70,4,3992.50,53.81,1617.61,2106.88,0.00,3516867548599.564453,3516867548601.558594,205,0,0.000000,0.000020,64799418,31790750,0,0,85166,0,1,1 +1773683817.353566,0.70,4,3992.50,53.82,1617.38,2107.11,0.00,55260.158679,58610.723948,3818329,3254753,0.000056,0.000086,64799422,31790757,0,0,85169,0,1,1 +1773683822.357532,0.55,4,3992.50,53.82,1617.38,2107.11,0.00,0.000000,0.000781,3818329,3254754,0.000140,0.000177,64799433,31790770,0,0,85171,0,1,1 +1773683827.357795,0.85,4,3992.50,53.65,1622.29,2100.57,0.00,3518252159049.208008,3518252155701.864258,205,0,0.000031,0.000699,64799435,31790779,0,0,85174,0,1,1 +1773683832.357934,0.80,4,3992.50,53.58,1625.16,2097.71,0.00,3518339368087.200195,0.000000,11,0,0.000000,0.000020,64799435,31790781,0,0,85176,0,1,1 +1773683837.357551,18.78,4,3992.50,55.09,1566.13,2156.73,0.00,55204.600893,58551.309607,3816826,3254146,40.066567,0.022971,64803740,31792243,0,0,85179,0,1,1 +1773683842.358058,0.95,4,3992.50,54.06,1606.43,2116.44,0.00,3518079917295.962891,3518079913947.675293,258,2,0.004188,0.001855,64803821,31792297,0,0,85181,0,1,1 +1773683847.354685,0.55,4,3992.50,53.50,1628.32,2094.55,0.00,3520812753353.741211,3520812753355.917969,11,0,0.000000,0.000030,64803821,31792300,0,0,85184,0,1,1 +1773683852.354033,0.65,4,3992.50,53.50,1628.34,2094.54,0.00,0.180297,0.000000,205,0,0.000000,0.000020,64803821,31792302,0,0,85186,0,1,1 +1773683857.355573,1.05,4,3992.50,53.89,1605.63,2109.96,0.00,0.000000,0.000000,205,0,0.000000,0.000030,64803821,31792305,0,0,85189,0,1,1 +1773683862.353466,0.60,4,3992.50,53.79,1609.83,2105.80,0.00,3519920498453.179199,0.000000,11,0,0.000000,0.000020,64803821,31792307,0,0,85191,0,1,1 +1773683867.353473,0.75,4,3992.50,53.79,1609.61,2106.02,0.00,55210.023396,58557.633997,3818329,3254988,0.000000,0.000030,64803821,31792310,0,0,85194,0,1,1 +1773683872.358440,0.60,4,3992.50,53.78,1609.94,2105.68,0.00,3514945585992.378906,3514945582645.913086,258,2,0.000000,0.000020,64803821,31792312,0,0,85196,0,1,1 +1773683877.353566,0.75,4,3992.50,53.78,1609.95,2105.68,0.00,55252.052201,58604.171647,3816826,3254325,0.000000,0.000030,64803821,31792315,0,0,85199,0,1,1 +1773683882.354743,0.65,4,3992.50,53.78,1610.12,2105.50,0.00,9.723883,10.675222,3818329,3254998,0.000087,0.000101,64803827,31792323,0,0,85201,0,1,1 +1773683887.358284,0.95,4,3992.50,53.78,1609.89,2105.71,0.00,3515947308162.493164,3515947304817.180176,75,0,0.000159,0.000224,64803840,31792339,0,0,85204,0,1,1 +1773683892.353558,0.70,4,3992.50,53.74,1611.61,2104.01,0.00,55262.271506,58613.156204,3818329,3255017,0.000000,0.000020,64803840,31792341,0,0,85206,0,1,1 +1773683897.358079,0.55,4,3992.50,53.75,1611.38,2104.25,0.00,0.000000,0.011708,3818329,3255028,0.000000,0.000686,64803840,31792349,0,0,85209,0,1,1 +1773683902.353542,16.01,4,3992.50,55.13,1557.26,2158.35,0.00,3521633008161.447754,3521633004808.554199,258,2,40.099092,0.021941,64808118,31793843,0,0,85211,0,1,1 +1773683907.353454,0.70,4,3992.50,54.20,1593.68,2121.94,0.00,55208.892349,58558.917489,3818329,3255171,0.000779,0.000481,64808136,31793859,0,0,85214,0,1,1 +1773683912.358164,0.50,4,3992.50,53.69,1613.52,2102.09,0.00,3515125916310.000000,3515125912974.368652,253,669,0.000000,0.000020,64808136,31793861,0,0,85216,0,1,1 +1773683917.353499,1.00,4,3992.50,53.68,1612.70,2101.87,0.00,3521722874193.200684,3521722874184.175293,11,0,0.000000,0.000030,64808136,31793864,0,0,85219,0,1,1 +1773683922.357676,0.65,4,3992.50,53.68,1613.06,2101.49,0.00,0.180123,0.000000,205,0,0.000000,0.000020,64808136,31793866,0,0,85221,0,1,1 +1773683927.357387,0.65,4,3992.50,53.68,1613.06,2101.49,0.00,3518640426553.398926,0.000000,11,0,0.000000,0.000030,64808136,31793869,0,0,85224,0,1,1 +1773683932.353452,0.65,4,3992.50,53.68,1612.85,2101.71,0.00,2.177104,0.000195,258,2,0.000000,0.000020,64808136,31793871,0,0,85226,0,1,1 +1773683937.353453,0.65,4,3992.50,53.61,1615.62,2098.93,0.00,3518436849298.436523,10.674999,253,669,0.000000,0.000030,64808136,31793874,0,0,85229,0,1,1 +1773683942.357776,0.65,4,3992.50,53.65,1614.15,2100.41,0.00,0.517229,3515397720773.632812,258,2,0.000000,0.000020,64808136,31793876,0,0,85231,0,1,1 +1773683947.358135,0.90,4,3992.50,53.87,1605.69,2109.22,0.00,3518184859333.640137,10.674234,253,669,0.000119,0.000179,64808145,31793889,0,0,85234,0,1,1 +1773683952.357688,0.60,4,3992.50,53.90,1604.47,2110.45,0.00,0.000000,0.000000,253,669,0.000054,0.000067,64808150,31793895,0,0,85236,0,1,1 +1773683957.358394,0.70,4,3992.50,53.90,1604.47,2110.45,0.00,55200.645397,58539.139777,3818329,3255294,0.000000,0.000063,64808150,31793899,0,0,85239,0,1,1 +1773683962.357502,0.80,4,3992.50,53.92,1604.01,2110.90,0.00,3519064959788.620605,3519064956440.040039,11,0,0.000000,0.000664,64808150,31793905,0,0,85241,0,1,1 +1773683967.357722,17.04,4,3992.50,58.71,1416.14,2298.76,0.00,2.175295,0.000195,258,2,10.422965,0.016006,64809603,31794919,0,0,85244,0,1,1 +1773683972.355105,4.16,4,3992.50,53.79,1608.80,2106.12,0.00,3520279490123.833496,3520279490125.829590,205,0,29.659063,0.012008,64812638,31795760,0,0,85246,0,1,1 +1773683977.357555,1.05,4,3992.50,54.00,1600.88,2114.16,0.00,3516713560658.848145,0.000000,11,0,0.000008,0.000038,64812639,31795764,0,0,85249,0,1,1 +1773683982.353599,0.55,4,3992.50,53.91,1604.26,2110.68,0.00,2.177113,0.000195,258,2,0.000000,0.000020,64812639,31795766,0,0,85251,0,1,1 +1773683987.357697,0.75,4,3992.50,53.93,1603.52,2111.42,0.00,3515555693500.402832,3515555693502.576660,11,0,0.000000,0.000030,64812639,31795769,0,0,85254,0,1,1 +1773683992.357870,0.65,4,3992.50,53.93,1603.29,2111.65,0.00,1.657658,10.674827,253,669,0.000000,0.000020,64812639,31795771,0,0,85256,0,1,1 +1773683997.358399,0.60,4,3992.50,53.93,1603.29,2111.65,0.00,0.517621,3518064954679.927246,258,2,0.000000,0.000030,64812639,31795774,0,0,85259,0,1,1 +1773684002.357744,0.90,4,3992.50,53.75,1610.70,2104.24,0.00,3518898414710.966309,10.676399,253,669,0.000000,0.000020,64812639,31795776,0,0,85261,0,1,1 +1773684007.357890,1.25,4,3992.50,53.76,1610.00,2104.94,0.00,3518334540361.319824,3518334540352.302734,11,0,0.000000,0.000030,64812639,31795779,0,0,85264,0,1,1 +1773684012.356021,1.05,4,3992.50,53.43,1623.18,2091.74,0.00,2.176204,0.000195,258,2,0.000031,0.000045,64812641,31795783,0,0,85266,0,1,1 +1773684017.357008,0.80,4,3992.50,53.47,1621.49,2093.43,0.00,0.000000,0.000000,258,2,0.000134,0.000193,64812652,31795797,0,0,85269,0,1,1 +1773684022.357552,0.85,4,3992.50,53.49,1620.75,2094.17,0.00,3518054625365.846191,3518054625367.967773,75,0,0.000000,0.000020,64812652,31795799,0,0,85271,0,1,1 +1773684027.357981,0.60,4,3992.50,53.49,1620.75,2094.16,0.00,55195.576213,58542.751521,3816826,3254944,0.000000,0.000674,64812652,31795806,0,0,85274,0,1,1 +1773684032.357485,12.04,4,3992.50,58.68,1417.62,2297.28,0.00,3518785975159.090332,3518785971811.349121,11,0,9.220837,0.012917,64813922,31796665,0,0,85276,0,1,1 +1773684037.354645,5.47,4,3992.50,54.04,1598.85,2115.86,0.00,55241.484462,58591.880715,3818329,3255743,30.863277,0.012063,64817059,31797452,0,0,85279,0,1,1 +1773684042.357381,0.60,4,3992.50,54.04,1598.76,2115.86,0.00,3516512349847.051758,3516512346500.210938,205,0,0.000000,0.000020,64817059,31797454,0,0,85281,0,1,1 +1773684047.355975,0.70,4,3992.50,54.05,1598.52,2116.10,0.00,1.995678,0.000195,258,2,0.000000,0.000030,64817059,31797457,0,0,85284,0,1,1 +1773684052.357699,0.55,4,3992.50,54.05,1598.52,2116.10,0.00,3517224528952.993652,3517224528954.988281,205,0,0.000000,0.000020,64817059,31797459,0,0,85286,0,1,1 +1773684057.358206,0.60,4,3992.50,54.05,1598.52,2116.10,0.00,3518080937751.767090,0.000000,11,0,0.000000,0.000030,64817059,31797462,0,0,85289,0,1,1 +1773684062.357592,0.65,4,3992.50,54.05,1598.52,2116.10,0.00,55207.147673,58555.230951,3816826,3255207,0.000000,0.000020,64817059,31797464,0,0,85291,0,1,1 +1773684067.354308,0.90,4,3992.50,54.23,1591.45,2123.19,0.00,3520749269866.550293,3520749266525.701172,253,669,0.000000,0.000030,64817059,31797467,0,0,85294,0,1,1 +1773684072.356002,0.85,4,3992.50,53.92,1603.73,2110.91,0.00,3517245755950.876953,3517245755941.682617,205,0,0.000000,0.000020,64817059,31797469,0,0,85296,0,1,1 +1773684077.357776,0.70,4,3992.50,53.92,1603.50,2111.15,0.00,3517188843198.828125,0.000000,75,0,0.000339,0.000609,64817068,31797485,0,0,85299,0,1,1 +1773684082.357396,0.60,4,3992.50,53.92,1603.50,2111.14,0.00,3518704774712.920410,0.000000,11,0,0.000370,0.000741,64817088,31797511,0,0,85301,0,1,1 +1773684087.353506,0.65,4,3992.50,53.92,1603.50,2111.14,0.00,55243.349559,58593.697135,3816826,3255255,0.000000,0.000030,64817088,31797514,0,0,85304,0,1,1 +1773684092.357501,0.60,4,3992.50,53.94,1602.77,2111.88,0.00,3515628598854.662109,3515628595509.593262,11,0,0.000000,0.000663,64817088,31797520,0,0,85306,0,1,1 +1773684097.360534,7.31,4,3992.50,58.78,1416.22,2301.43,0.00,0.180164,0.000000,205,0,2.810174,0.008526,64817694,31797950,0,0,85309,0,1,1 +1773684102.356564,10.67,4,3992.50,54.58,1580.71,2136.96,0.00,55253.798290,58605.519175,3818329,3256098,37.289451,0.026811,64821659,31799895,0,0,85311,0,1,1 +1773684107.358209,0.65,4,3992.50,53.89,1607.69,2109.98,0.00,3517279192205.279785,3517279188866.518066,253,669,0.000000,0.000030,64821659,31799898,0,0,85314,0,1,1 +1773684112.358216,0.70,4,3992.50,53.54,1621.51,2096.16,0.00,0.517675,3518432851645.281738,258,2,0.000000,0.000020,64821659,31799900,0,0,85316,0,1,1 +1773684117.358093,0.65,4,3992.50,53.52,1622.38,2095.30,0.00,3518523622413.781250,3518523622415.957031,11,0,0.000000,0.000030,64821659,31799903,0,0,85319,0,1,1 +1773684122.354622,0.60,4,3992.50,53.52,1622.13,2095.54,0.00,0.180399,0.000000,205,0,0.000031,0.000045,64821661,31799907,0,0,85321,0,1,1 +1773684127.357847,0.90,4,3992.50,53.86,1610.66,2108.75,0.00,55174.327698,58521.323892,3818329,3256160,0.000039,0.000063,64821664,31799913,0,0,85324,0,1,1 +1773684132.355476,0.60,4,3992.50,53.84,1611.34,2108.06,0.00,3520106506740.887695,3520106506739.972656,3816826,3255525,0.000000,0.000020,64821664,31799915,0,0,85326,0,1,1 +1773684137.357195,0.80,4,3992.50,53.82,1612.29,2107.12,0.00,0.000000,0.005467,3816826,3255531,0.001416,0.001191,64821693,31799942,0,0,85329,0,1,1 +1773684142.357759,0.70,4,3992.50,53.83,1611.82,2107.58,0.00,0.000000,0.005468,3816826,3255536,0.001796,0.001393,64821722,31799963,0,0,85331,0,1,1 +1773684147.354812,0.75,4,3992.50,53.83,1611.82,2107.58,0.00,3520511700400.331543,3520511697059.309570,253,669,0.000107,0.000148,64821730,31799974,0,0,85334,0,1,1 +1773684152.354931,0.65,4,3992.50,53.87,1610.35,2109.05,0.00,3518353419294.861816,3518353419285.844727,11,0,0.000000,0.000020,64821730,31799976,0,0,85336,0,1,1 +1773684157.354431,0.95,4,3992.50,54.26,1592.01,2124.51,0.00,0.053521,0.000000,75,0,0.000000,0.000674,64821730,31799983,0,0,85339,0,1,1 +1773684162.354656,1.86,4,3992.50,53.96,1604.04,2112.48,0.00,2.121780,0.000195,258,2,0.003184,0.002334,64821767,31800017,0,0,85341,0,1,1 +1773684167.358243,14.52,4,3992.50,53.78,1610.96,2105.55,0.00,3515914190264.509766,3515914190266.629883,75,0,40.030906,0.021522,64825993,31801610,0,0,85344,0,1,1 +1773684172.357556,0.65,4,3992.50,53.78,1610.96,2105.55,0.00,0.000000,0.000000,75,0,0.000008,0.000028,64825994,31801613,0,0,85346,0,1,1 +1773684177.355569,0.60,4,3992.50,53.78,1610.96,2105.55,0.00,1.604837,10.679439,253,669,0.000000,0.000030,64825994,31801616,0,0,85349,0,1,1 +1773684182.358028,0.70,4,3992.50,53.78,1610.71,2105.80,0.00,55181.301652,58519.839797,3818329,3256404,0.000056,0.000076,64825998,31801622,0,0,85351,0,1,1 +1773684187.353549,0.90,4,3992.50,53.98,1605.45,2113.34,0.00,0.000000,0.071157,3818329,3256431,0.000025,0.000061,64826000,31801627,0,0,85354,0,1,1 +1773684192.356672,0.65,4,3992.50,53.98,1605.43,2113.33,0.00,3516240341028.589844,3516240337681.232422,205,0,0.000000,0.000020,64826000,31801629,0,0,85356,0,1,1 +1773684197.357566,0.65,4,3992.50,53.98,1605.43,2113.33,0.00,3517808120663.978027,0.000000,75,0,0.000000,0.000030,64826000,31801632,0,0,85359,0,1,1 +1773684202.354659,0.55,4,3992.50,53.79,1612.83,2105.93,0.00,0.126832,0.000000,205,0,0.000000,0.000020,64826000,31801634,0,0,85361,0,1,1 +1773684207.357643,0.60,4,3992.50,53.79,1612.61,2106.15,0.00,3516338149812.768555,0.000000,75,0,0.000000,0.000030,64826000,31801637,0,0,85364,0,1,1 +1773684212.357279,0.65,4,3992.50,53.79,1612.61,2106.15,0.00,55214.069859,58563.688515,3818330,3256480,0.000157,0.000200,64826012,31801651,0,0,85366,0,1,1 +1773684217.358396,1.05,4,3992.50,53.99,1604.71,2113.74,0.00,3517651064893.161133,3517651061544.588379,11,0,0.000008,0.000038,64826013,31801655,0,0,85369,0,1,1 +1773684222.357325,0.65,4,3992.50,53.90,1607.78,2110.32,0.00,2.175857,0.000195,258,2,0.000000,0.000664,64826013,31801661,0,0,85371,0,1,1 +1773684227.357996,0.80,4,3992.50,53.71,1615.07,2103.04,0.00,3517964960079.335938,3517964960081.330566,205,0,0.002234,0.000722,64826037,31801679,0,0,85374,0,1,1 +1773684232.353570,14.92,4,3992.50,54.09,1600.23,2117.88,0.00,3521554514294.319336,0.000000,75,0,40.098157,0.021206,64830441,31803132,0,0,85376,0,1,1 +1773684237.353439,0.60,4,3992.50,53.72,1614.98,2103.12,0.00,55211.492884,58561.107065,3818330,3256650,0.000000,0.000030,64830441,31803135,0,0,85379,0,1,1 +1773684242.353562,0.65,4,3992.50,53.62,1618.87,2099.24,0.00,3518350322898.323730,3518350319548.753418,205,0,0.000000,0.000020,64830441,31803137,0,0,85381,0,1,1 +1773684247.354581,0.95,4,3992.50,53.91,1613.33,2110.73,0.00,3517720490921.596680,0.000000,11,0,0.000000,0.000030,64830441,31803140,0,0,85384,0,1,1 +1773684252.357828,0.65,4,3992.50,53.94,1612.36,2111.71,0.00,55164.546364,58510.970110,3816827,3256011,0.000000,0.000020,64830441,31803142,0,0,85386,0,1,1 +1773684257.353498,0.60,4,3992.50,53.90,1613.93,2110.13,0.00,3521486551155.710938,3521486547804.031738,205,0,0.000000,0.000030,64830441,31803145,0,0,85389,0,1,1 +1773684262.353448,0.65,4,3992.50,53.90,1613.93,2110.13,0.00,1.477456,10.675302,253,669,0.000000,0.000020,64830441,31803147,0,0,85391,0,1,1 +1773684267.358385,0.70,4,3992.50,53.93,1612.72,2111.35,0.00,55144.266796,58480.616207,3816827,3256063,0.000000,0.000030,64830441,31803150,0,0,85394,0,1,1 +1773684272.357384,0.55,4,3992.50,53.93,1612.72,2111.35,0.00,3519141799891.361328,3519141796542.029785,11,0,0.000000,0.000020,64830441,31803152,0,0,85396,0,1,1 +1773684277.353570,0.85,4,3992.50,54.13,1604.14,2119.15,0.00,0.000000,0.000000,11,0,0.000157,0.000211,64830453,31803167,0,0,85399,0,1,1 +1773684282.358438,0.60,4,3992.50,54.13,1603.80,2119.15,0.00,1.656103,10.664812,253,669,0.000008,0.000028,64830454,31803170,0,0,85401,0,1,1 +1773684287.353448,0.75,4,3992.50,54.13,1603.80,2119.15,0.00,0.518193,3521952014846.733398,258,2,0.000000,0.000674,64830454,31803177,0,0,85404,0,1,1 +1773684292.353487,0.85,4,3992.50,53.94,1611.20,2111.73,0.00,0.000000,0.000000,258,2,0.002866,0.001330,64830478,31803196,0,0,85406,0,1,1 +1773684297.354100,15.00,4,3992.50,54.41,1592.62,2130.29,0.00,55201.152379,58552.687848,3818330,3256914,40.058657,0.022464,64834876,31804659,0,0,85409,0,1,1 +1773684302.355237,0.75,4,3992.50,53.87,1613.70,2109.23,0.00,3517637870368.157227,3517637867018.966797,205,0,0.000000,0.000020,64834876,31804661,0,0,85411,0,1,1 +1773684307.358150,0.90,4,3992.50,53.89,1615.91,2110.10,0.00,1.476581,10.668979,253,669,0.000000,0.000030,64834876,31804664,0,0,85414,0,1,1 +1773684312.357757,0.90,4,3992.50,53.78,1620.05,2105.44,0.00,55212.780124,58554.007731,3818330,3257071,0.000000,0.000020,64834876,31804666,0,0,85416,0,1,1 +1773684317.357620,0.55,4,3992.50,53.81,1618.82,2106.66,0.00,3518533880984.317871,3518533877634.243652,11,0,0.000000,0.000030,64834876,31804669,0,0,85419,0,1,1 +1773684322.357550,0.65,4,3992.50,53.81,1618.82,2106.66,0.00,2.175421,0.000195,258,2,0.000000,0.000020,64834876,31804671,0,0,85421,0,1,1 +1773684327.358305,0.65,4,3992.50,53.81,1618.83,2106.66,0.00,3517905275570.858887,3517905275573.034180,11,0,0.000000,0.000030,64834876,31804674,0,0,85424,0,1,1 +1773684332.358180,0.70,4,3992.50,53.81,1618.61,2106.88,0.00,55211.480919,58561.567604,3818330,3257086,0.000000,0.000020,64834876,31804676,0,0,85426,0,1,1 +1773684337.357472,0.95,4,3992.50,53.88,1621.91,2109.43,0.00,3518935482091.282227,3518935478740.625000,205,0,0.000000,0.000030,64834876,31804679,0,0,85429,0,1,1 +1773684342.354590,0.65,4,3992.50,53.88,1621.94,2109.40,0.00,3520466542392.209961,0.000000,75,0,0.000188,0.000226,64834890,31804695,0,0,85431,0,1,1 +1773684347.356579,0.70,4,3992.50,53.88,1621.70,2109.64,0.00,1.603561,10.670951,253,669,0.000008,0.000038,64834891,31804699,0,0,85434,0,1,1 +1773684352.357048,0.80,4,3992.50,53.89,1621.47,2109.88,0.00,3518107188614.985840,3518107188605.969238,11,0,0.000000,0.000664,64834891,31804705,0,0,85436,0,1,1 +1773684357.358484,0.70,4,3992.50,53.89,1621.47,2109.87,0.00,0.000000,0.000000,11,0,0.000000,0.000030,64834891,31804708,0,0,85439,0,1,1 +1773684362.357943,19.26,4,3992.50,53.86,1622.46,2108.87,0.00,0.180293,0.000000,205,0,40.080650,0.023404,64839209,31806280,0,0,85441,0,1,1 +1773684367.357868,1.05,4,3992.50,53.86,1615.93,2108.78,0.00,55201.020335,58550.539804,3816827,3256622,0.000619,0.000282,64839221,31806290,0,0,85444,0,1,1 +1773684372.358193,0.65,4,3992.50,53.86,1615.96,2108.77,0.00,3518208855702.898926,3518208852353.827148,11,0,0.000000,0.000020,64839221,31806292,0,0,85446,0,1,1 +1773684377.358319,0.65,4,3992.50,53.86,1615.96,2108.77,0.00,2.175336,0.000195,258,2,0.001229,0.001254,64839230,31806309,0,0,85449,0,1,1 +1773684382.353955,0.65,4,3992.50,53.86,1615.96,2108.77,0.00,3521510821560.056641,10.684325,253,669,0.000205,0.000552,64839237,31806322,0,0,85451,0,1,1 +1773684387.354347,0.70,4,3992.50,53.86,1615.96,2108.77,0.00,55194.384404,58534.461787,3816827,3256697,0.000000,0.000030,64839237,31806325,0,0,85454,0,1,1 +1773684392.358183,0.75,4,3992.50,53.86,1615.96,2108.77,0.00,9.718715,10.673451,3818330,3257373,0.000000,0.000020,64839237,31806327,0,0,85456,0,1,1 +1773684397.356302,0.90,4,3992.50,53.86,1610.18,2108.77,0.00,3519761667442.882812,3519761664091.128906,205,0,0.000205,0.000562,64839244,31806341,0,0,85459,0,1,1 +1773684402.357942,0.65,4,3992.50,53.85,1610.63,2108.28,0.00,55182.089692,58530.573720,3816827,3256721,0.000008,0.000028,64839245,31806344,0,0,85461,0,1,1 +1773684407.357558,0.75,4,3992.50,53.85,1610.47,2108.45,0.00,3518707110301.472168,3518707106960.831055,253,669,0.000132,0.000179,64839255,31806357,0,0,85464,0,1,1 +1773684412.357927,0.65,4,3992.50,53.85,1610.47,2108.45,0.00,3518177474504.038086,3518177474495.021484,11,0,0.000025,0.000051,64839257,31806361,0,0,85466,0,1,1 +1773684417.353569,0.65,4,3992.50,53.85,1610.47,2108.45,0.00,0.180431,0.000000,205,0,0.000000,0.000674,64839257,31806368,0,0,85469,0,1,1 +1773684422.358197,0.55,4,3992.50,53.85,1610.61,2108.30,0.00,3515183600639.708008,0.000000,75,0,0.000031,0.000045,64839259,31806372,0,0,85471,0,1,1 +1773684427.353647,15.78,4,3992.50,55.63,1541.32,2178.13,0.00,3521641756381.156250,0.000000,11,0,40.101558,0.021649,64843612,31807754,0,0,85474,0,1,1 +1773684432.357941,0.65,4,3992.50,55.04,1564.71,2154.75,0.00,0.000000,0.000000,11,0,0.000618,0.000260,64843624,31807762,0,0,85476,0,1,1 +1773684437.357899,0.75,4,3992.50,54.54,1584.27,2135.19,0.00,0.180275,0.000000,205,0,0.001417,0.001192,64843653,31807789,0,0,85479,0,1,1 +1773684442.354659,0.70,4,3992.50,54.29,1593.84,2125.62,0.00,3520718919216.760254,0.000000,11,0,0.001096,0.000447,64843677,31807806,0,0,85481,0,1,1 +1773684447.354714,0.60,4,3992.50,54.03,1604.26,2115.21,0.00,55199.763663,58549.347403,3816827,3256938,0.000000,0.000030,64843677,31807809,0,0,85484,0,1,1 +1773684452.356635,0.55,4,3992.50,54.03,1604.18,2115.29,0.00,0.000000,0.001562,3816827,3256940,0.000000,0.000020,64843677,31807811,0,0,85486,0,1,1 +1773684457.353605,0.95,4,3992.50,54.21,1599.86,2122.27,0.00,9.732069,10.728766,3818330,3257630,0.000000,0.000030,64843677,31807814,0,0,85489,0,1,1 +1773684462.357784,0.70,4,3992.50,54.21,1599.62,2122.51,0.00,3515499642248.735352,3515499638900.914551,11,0,0.000000,0.000020,64843677,31807816,0,0,85491,0,1,1 +1773684467.357544,0.60,4,3992.50,54.21,1599.63,2122.51,0.00,0.180282,0.000000,205,0,0.000000,0.000030,64843677,31807819,0,0,85494,0,1,1 +1773684472.358262,0.80,4,3992.50,54.21,1599.63,2122.51,0.00,0.000000,0.000000,205,0,0.000081,0.000107,64843683,31807827,0,0,85496,0,1,1 +1773684477.353552,0.65,4,3992.50,54.21,1599.63,2122.51,0.00,3521754624965.486328,0.000000,11,0,0.000033,0.000069,64843686,31807833,0,0,85499,0,1,1 +1773684482.354659,0.60,4,3992.50,54.21,1599.63,2122.50,0.00,0.180234,0.000000,205,0,0.000081,0.000751,64843692,31807845,0,0,85501,0,1,1 +1773684487.355948,0.80,4,3992.50,54.21,1600.77,2122.48,0.00,3517529719983.549316,0.000000,11,0,0.000050,0.000092,64843696,31807852,0,0,85504,0,1,1 +1773684492.359099,14.67,4,3992.50,58.80,1421.07,2302.32,0.00,0.000000,0.000000,11,0,24.425121,0.018837,64846472,31809154,0,0,85506,0,1,1 +1773684497.355612,1.50,4,3992.50,54.00,1609.21,2114.21,0.00,1.658872,10.682646,253,669,15.635707,0.005873,64848102,31809516,0,0,85509,0,1,1 +1773684502.357750,0.70,4,3992.50,53.90,1613.29,2110.14,0.00,0.517455,3516933306292.728027,258,2,0.000000,0.000020,64848102,31809518,0,0,85511,0,1,1 +1773684507.353930,0.60,4,3992.50,53.91,1612.55,2110.87,0.00,0.000000,0.000000,258,2,0.000000,0.000030,64848102,31809521,0,0,85514,0,1,1 +1773684512.353441,0.65,4,3992.50,53.91,1612.55,2110.87,0.00,3518780975484.721680,3518780975486.843750,75,0,0.000000,0.000020,64848102,31809523,0,0,85516,0,1,1 +1773684517.357496,0.95,4,3992.50,53.94,1608.16,2111.75,0.00,1.602899,10.666545,253,669,0.000000,0.000030,64848102,31809526,0,0,85519,0,1,1 +1773684522.356634,0.70,4,3992.50,53.88,1610.29,2109.63,0.00,0.517765,3519044076469.217773,258,2,0.000000,0.000020,64848102,31809528,0,0,85521,0,1,1 +1773684527.357361,0.70,4,3992.50,53.74,1615.88,2104.05,0.00,3517925539277.526367,10.673448,253,669,0.000000,0.000030,64848102,31809531,0,0,85524,0,1,1 +1773684532.357914,0.60,4,3992.50,53.74,1615.88,2104.05,0.00,3518048109946.143555,3518048109937.127441,11,0,0.000000,0.000020,64848102,31809533,0,0,85526,0,1,1 +1773684537.358274,0.70,4,3992.50,53.74,1615.88,2104.04,0.00,0.180260,0.000000,205,0,0.000031,0.000055,64848104,31809538,0,0,85529,0,1,1 +1773684542.358392,0.65,4,3992.50,53.74,1615.98,2103.94,0.00,0.000000,0.000000,205,0,0.000134,0.000183,64848115,31809551,0,0,85531,0,1,1 +1773684547.353447,0.90,4,3992.50,53.83,1616.13,2107.59,0.00,1.997092,0.000196,258,2,0.000000,0.000674,64848115,31809558,0,0,85534,0,1,1 +1773684552.353507,0.70,4,3992.50,53.83,1616.14,2107.58,0.00,3518395212612.087891,3518395212614.263184,11,0,0.000000,0.000020,64848115,31809560,0,0,85536,0,1,1 +1773684557.357581,18.14,4,3992.50,58.71,1424.90,2298.80,0.00,0.000000,0.000000,11,0,38.839995,0.024199,64852415,31811288,0,0,85539,0,1,1 +1773684562.357804,0.95,4,3992.50,54.31,1597.20,2126.51,0.00,2.175294,0.000195,258,2,1.205775,0.002373,64852632,31811373,0,0,85541,0,1,1 +1773684567.358435,0.65,4,3992.50,53.91,1613.00,2110.70,0.00,3517993043965.660156,3517993043967.835449,11,0,0.000000,0.000030,64852632,31811376,0,0,85544,0,1,1 +1773684572.353553,0.60,4,3992.50,53.79,1617.64,2106.06,0.00,55254.326356,58607.795019,3816827,3257468,0.000000,0.000020,64852632,31811378,0,0,85546,0,1,1 +1773684577.355160,1.00,4,3992.50,54.20,1601.47,2122.23,0.00,3517306360793.847656,3517306357442.555664,258,2,0.000000,0.000030,64852632,31811381,0,0,85549,0,1,1 +1773684582.353967,0.60,4,3992.50,54.09,1606.04,2117.66,0.00,3519277097733.705078,3519277097735.827637,75,0,0.000000,0.000020,64852632,31811383,0,0,85551,0,1,1 +1773684587.356315,0.65,4,3992.50,54.07,1606.87,2116.84,0.00,1.603446,10.670184,253,669,0.000000,0.000030,64852632,31811386,0,0,85554,0,1,1 +1773684592.357482,0.65,4,3992.50,54.07,1606.87,2116.84,0.00,3517615819557.372070,3517615819548.303711,75,0,0.000000,0.000020,64852632,31811388,0,0,85556,0,1,1 +1773684597.357966,0.70,4,3992.50,54.07,1606.88,2116.82,0.00,0.126746,0.000000,205,0,0.000000,0.000030,64852632,31811391,0,0,85559,0,1,1 +1773684602.357383,0.65,4,3992.50,54.07,1606.65,2117.05,0.00,1.995350,0.000195,258,2,0.000031,0.000045,64852634,31811395,0,0,85561,0,1,1 +1773684607.357565,0.95,4,3992.50,54.17,1601.71,2120.70,0.00,55196.182354,58548.664457,3816827,3257641,0.000134,0.000193,64852645,31811409,0,0,85564,0,1,1 +1773684612.357990,0.85,4,3992.50,53.95,1610.14,2112.22,0.00,9.725345,10.678389,3818330,3258316,0.000000,0.000342,64852645,31811413,0,0,85566,0,1,1 +1773684617.358392,0.70,4,3992.50,53.95,1610.14,2112.22,0.00,3518154085809.881836,3518154082458.769043,11,0,0.000000,0.000352,64852645,31811418,0,0,85569,0,1,1 +1773684622.355023,16.96,4,3992.50,58.81,1419.86,2302.48,0.00,1.658833,10.682395,253,669,30.596886,0.019322,64855990,31812684,0,0,85571,0,1,1 +1773684627.358115,0.90,4,3992.50,53.92,1611.34,2111.02,0.00,55164.597582,58504.087978,3816827,3257800,9.496361,0.004206,64857040,31812915,0,0,85574,0,1,1 +1773684632.355342,0.60,4,3992.50,53.92,1611.34,2111.02,0.00,9.731568,10.690694,3818330,3258475,0.000000,0.000020,64857040,31812917,0,0,85576,0,1,1 +1773684637.357470,0.95,4,3992.50,53.96,1607.07,2112.68,0.00,3516940357557.400879,3516940357556.517578,3816827,3257831,0.000000,0.000030,64857040,31812920,0,0,85579,0,1,1 +1773684642.357781,0.60,4,3992.50,53.95,1607.33,2112.43,0.00,3518218570985.056152,3518218567634.435547,205,0,0.000000,0.000020,64857040,31812922,0,0,85581,0,1,1 +1773684647.357581,0.65,4,3992.50,53.95,1607.34,2112.43,0.00,1.995197,0.000195,258,2,0.000000,0.000030,64857040,31812925,0,0,85584,0,1,1 +1773684652.357557,0.65,4,3992.50,53.95,1607.34,2112.43,0.00,3518454217792.404297,3518454217794.579590,11,0,0.000000,0.000020,64857040,31812927,0,0,85586,0,1,1 +1773684657.358247,0.65,4,3992.50,53.95,1607.33,2112.43,0.00,0.000000,0.000000,11,0,0.000000,0.000030,64857040,31812930,0,0,85589,0,1,1 +1773684662.357689,0.65,4,3992.50,53.95,1607.33,2112.43,0.00,0.180294,0.000000,205,0,0.000000,0.000020,64857040,31812932,0,0,85591,0,1,1 +1773684667.357658,0.90,4,3992.50,54.06,1605.92,2116.60,0.00,3518459069772.911621,0.000000,11,0,0.000031,0.000055,64857042,31812937,0,0,85594,0,1,1 +1773684672.358097,0.70,4,3992.50,54.01,1605.88,2114.61,0.00,1.657569,10.674259,253,669,0.000142,0.000191,64857054,31812951,0,0,85596,0,1,1 +1773684677.358092,0.70,4,3992.50,54.02,1605.68,2114.82,0.00,55208.496337,58551.187464,3818330,3258591,0.000308,0.001067,64857061,31812968,0,0,85599,0,1,1 +1773684682.357934,0.60,4,3992.50,54.02,1605.68,2114.82,0.00,3518548764854.816406,3518548761502.951660,75,0,0.001127,0.001383,64857070,31812985,0,0,85601,0,1,1 +1773684687.356284,16.32,4,3992.50,58.74,1420.88,2299.62,0.00,1.604729,10.678718,253,669,25.228913,0.018314,64859938,31814244,0,0,85604,0,1,1 +1773684692.358297,1.00,4,3992.50,54.62,1582.03,2138.48,0.00,55186.219811,58527.798402,3818330,3258773,14.840461,0.006511,64861574,31814657,0,0,85606,0,1,1 +1773684697.355629,0.55,4,3992.50,54.05,1609.04,2116.18,0.00,3520315997717.698242,3520315994363.966797,11,0,0.000205,0.000562,64861581,31814671,0,0,85609,0,1,1 +1773684702.354441,0.95,4,3992.50,53.84,1616.21,2108.01,0.00,0.000000,0.000000,11,0,0.000000,0.000020,64861581,31814673,0,0,85611,0,1,1 +1773684707.358119,0.60,4,3992.50,53.84,1616.25,2107.97,0.00,0.180141,0.000000,205,0,0.000000,0.000030,64861581,31814676,0,0,85614,0,1,1 +1773684712.353434,0.80,4,3992.50,53.83,1616.84,2107.38,0.00,55251.965391,58606.404702,3816827,3258180,0.000000,0.000020,64861581,31814678,0,0,85616,0,1,1 +1773684717.357096,0.65,4,3992.50,53.83,1616.60,2107.62,0.00,3515861835518.379883,3515861832178.727539,253,669,0.000000,0.000030,64861581,31814681,0,0,85619,0,1,1 +1773684722.353574,0.60,4,3992.50,53.83,1616.60,2107.62,0.00,3520917778550.190430,3520917778541.166504,11,0,0.000031,0.000045,64861583,31814685,0,0,85621,0,1,1 +1773684727.353441,0.85,4,3992.50,53.95,1611.76,2112.43,0.00,55201.841702,58553.099042,3816827,3258206,0.000039,0.000063,64861586,31814691,0,0,85624,0,1,1 +1773684732.354613,0.60,4,3992.50,53.87,1615.14,2109.09,0.00,3517612457886.522949,3517612454533.965820,258,2,0.000031,0.000045,64861588,31814695,0,0,85626,0,1,1 +1773684737.357255,0.80,4,3992.50,53.88,1614.89,2109.33,0.00,55178.760516,58531.298400,3818330,3258897,0.003133,0.002945,64861632,31814738,0,0,85629,0,1,1 +1773684742.355453,0.70,4,3992.50,53.69,1622.06,2102.16,0.00,3519705938677.759766,3519705935324.416016,11,0,0.001096,0.000938,64861656,31814759,0,0,85631,0,1,1 +1773684747.353432,0.65,4,3992.50,53.69,1622.06,2102.16,0.00,0.000000,0.000000,11,0,0.000000,0.000191,64861656,31814763,0,0,85634,0,1,1 +1773684752.357364,14.52,4,3992.50,58.70,1426.07,2298.14,0.00,0.053474,0.000000,75,0,20.218412,0.016273,64863954,31815823,0,0,85636,0,1,1 +1773684757.357473,2.91,4,3992.50,54.80,1579.30,2145.40,0.00,3518360315822.116699,0.000000,11,0,19.830250,0.005585,64866016,31816153,0,0,85639,0,1,1 +1773684762.358331,0.70,4,3992.50,54.18,1603.58,2121.13,0.00,55190.902342,58541.738880,3816827,3258442,0.000000,0.000020,64866016,31816155,0,0,85641,0,1,1 +1773684767.353464,0.65,4,3992.50,54.08,1607.48,2117.23,0.00,3521865033523.870605,3521865030167.016602,258,2,0.000000,0.000030,64866016,31816158,0,0,85644,0,1,1 +1773684772.357967,0.55,4,3992.50,54.06,1608.07,2116.64,0.00,55148.532782,58499.113817,3816827,3258453,0.000000,0.000020,64866016,31816160,0,0,85646,0,1,1 +1773684777.353446,0.70,4,3992.50,54.06,1608.07,2116.64,0.00,3521621491173.018555,3521621487827.587402,253,669,0.000000,0.000030,64866016,31816163,0,0,85649,0,1,1 +1773684782.353535,0.65,4,3992.50,54.06,1608.07,2116.63,0.00,0.000000,0.000000,253,669,0.000056,0.000076,64866020,31816169,0,0,85651,0,1,1 +1773684787.353474,0.90,4,3992.50,54.06,1608.39,2116.59,0.00,0.517682,3518479670588.885742,258,2,0.000041,0.000077,64866024,31816176,0,0,85654,0,1,1 +1773684792.358128,0.75,4,3992.50,54.06,1608.39,2116.59,0.00,0.000000,0.000000,258,2,0.000000,0.000020,64866024,31816178,0,0,85656,0,1,1 +1773684797.358346,0.70,4,3992.50,54.06,1608.40,2116.59,0.00,3518283742751.479004,3518283742753.654297,11,0,0.000062,0.000080,64866028,31816185,0,0,85659,0,1,1 +1773684802.354566,0.70,4,3992.50,54.06,1608.40,2116.59,0.00,0.053556,0.000000,75,0,0.000126,0.000175,64866038,31816197,0,0,85661,0,1,1 +1773684807.353450,1.10,4,3992.50,54.07,1608.16,2116.82,0.00,0.000000,0.000000,75,0,0.000000,0.000030,64866038,31816200,0,0,85664,0,1,1 +1773684812.357354,0.70,4,3992.50,54.07,1608.16,2116.82,0.00,3515692437483.354492,0.000000,11,0,0.000000,0.000663,64866038,31816206,0,0,85666,0,1,1 +1773684817.357595,12.41,4,3992.50,59.06,1416.08,2312.14,0.00,1.657635,10.674681,253,669,9.407521,0.012329,64867310,31817019,0,0,85669,0,1,1 +1773684822.357427,4.82,4,3992.50,54.14,1608.15,2119.83,0.00,0.517693,3518555221918.378906,258,2,30.658806,0.011179,64870467,31817775,0,0,85671,0,1,1 +1773684827.353818,0.65,4,3992.50,53.77,1622.79,2105.20,0.00,3520978756272.468750,3520978756274.645996,11,0,0.000000,0.000030,64870467,31817778,0,0,85674,0,1,1 +1773684832.357648,0.60,4,3992.50,53.80,1621.42,2106.57,0.00,55158.119895,58507.266840,3816827,3258712,0.000000,0.000020,64870467,31817780,0,0,85676,0,1,1 +1773684837.356269,0.75,4,3992.50,53.79,1622.05,2105.94,0.00,3519407697928.160156,3519407694575.522949,11,0,0.000000,0.000030,64870467,31817783,0,0,85679,0,1,1 +1773684842.356861,0.65,4,3992.50,53.79,1621.81,2106.18,0.00,0.180252,0.000000,205,0,0.000000,0.000020,64870467,31817785,0,0,85681,0,1,1 +1773684847.354125,0.95,4,3992.50,53.99,1612.95,2113.93,0.00,3520363890663.050781,0.000000,75,0,0.000000,0.000030,64870467,31817788,0,0,85684,0,1,1 +1773684852.353729,0.65,4,3992.50,53.99,1612.45,2113.93,0.00,55204.685769,58556.808331,3816827,3258758,0.000000,0.000020,64870467,31817790,0,0,85686,0,1,1 +1773684857.353789,0.65,4,3992.50,53.76,1621.49,2104.88,0.00,3518394455153.058105,3518394451810.312012,253,669,0.000000,0.000030,64870467,31817793,0,0,85689,0,1,1 +1773684862.357558,0.65,4,3992.50,53.77,1621.26,2105.11,0.00,0.000000,0.000000,253,669,0.000031,0.000045,64870469,31817797,0,0,85691,0,1,1 +1773684867.357860,0.60,4,3992.50,53.77,1621.04,2105.33,0.00,3518224725699.287109,3518224725690.216797,75,0,0.000142,0.000201,64870481,31817812,0,0,85694,0,1,1 +1773684872.357582,0.70,4,3992.50,53.77,1621.04,2105.32,0.00,55203.390584,58555.477471,3816827,3258805,0.000000,0.000020,64870481,31817814,0,0,85696,0,1,1 +1773684877.353612,0.95,4,3992.50,54.36,1599.03,2128.43,0.00,3521232597564.274902,3521232594209.584961,205,0,0.000000,0.000674,64870481,31817821,0,0,85699,0,1,1 +1773684882.353471,9.72,4,3992.50,58.61,1431.73,2294.74,0.00,3518536333792.376465,0.000000,75,0,5.615030,0.010056,64871375,31818453,0,0,85701,0,1,1 +1773684887.353447,5.72,4,3992.50,55.02,1572.43,2154.05,0.00,3518454276904.843262,0.000000,11,0,34.450021,0.010892,64874818,31819185,0,0,85704,0,1,1 +1773684892.353615,0.70,4,3992.50,54.46,1594.38,2132.11,0.00,0.053514,0.000000,75,0,0.000000,0.000020,64874818,31819187,0,0,85706,0,1,1 +1773684897.357722,0.60,4,3992.50,54.03,1610.99,2115.49,0.00,3515549256183.287109,0.000000,11,0,0.000000,0.000030,64874818,31819190,0,0,85709,0,1,1 +1773684902.356342,0.90,4,3992.50,53.94,1614.59,2111.88,0.00,1.658172,10.678142,253,669,0.000000,0.000020,64874818,31819192,0,0,85711,0,1,1 +1773684907.357539,1.20,4,3992.50,54.38,1597.26,2129.25,0.00,3517595485568.538574,3517595485559.342773,205,0,0.000000,0.000030,64874818,31819195,0,0,85714,0,1,1 +1773684912.355026,1.15,4,3992.50,53.94,1614.73,2111.70,0.00,0.000000,0.000000,205,0,0.000000,0.000020,64874818,31819197,0,0,85716,0,1,1 +1773684917.358180,0.80,4,3992.50,53.92,1615.39,2111.04,0.00,3516219184150.905762,0.000000,75,0,0.000000,0.000030,64874818,31819200,0,0,85719,0,1,1 +1773684922.353573,1.71,4,3992.50,53.92,1615.18,2111.25,0.00,3521681816748.271484,0.000000,11,0,0.000000,0.000020,64874818,31819202,0,0,85721,0,1,1 +1773684927.356146,0.75,4,3992.50,53.92,1615.18,2111.25,0.00,1.656862,10.669705,253,669,0.000031,0.000055,64874820,31819207,0,0,85724,0,1,1 +1773684932.353492,0.60,4,3992.50,53.92,1615.18,2111.24,0.00,3520306081647.268555,3520306081638.246582,11,0,0.000142,0.000191,64874832,31819221,0,0,85726,0,1,1 +1773684937.356495,0.85,4,3992.50,53.92,1618.79,2111.21,0.00,0.000000,0.000000,11,0,0.000000,0.000030,64874832,31819224,0,0,85729,0,1,1 +1773684942.353444,0.70,4,3992.50,53.89,1619.74,2110.00,0.00,0.053548,0.000000,75,0,0.000000,0.000664,64874832,31819230,0,0,85731,0,1,1 +1773684947.355539,4.75,4,3992.50,58.59,1435.64,2294.09,0.00,1.603527,10.670724,253,669,1.808926,0.006952,64875300,31819545,0,0,85734,0,1,1 +1773684952.357780,13.06,4,3992.50,55.04,1574.86,2154.86,0.00,3516860703623.993164,3516860703614.799316,205,0,38.237488,0.015560,64879106,31820649,0,0,85736,0,1,1 +1773684957.353434,0.80,4,3992.50,54.38,1600.55,2129.18,0.00,55248.231843,58603.781958,3816828,3259401,0.000000,0.000030,64879106,31820652,0,0,85739,0,1,1 +1773684962.357856,0.65,4,3992.50,53.90,1619.42,2110.31,0.00,3515328296471.327637,3515328293130.845703,253,669,0.000000,0.000020,64879106,31820654,0,0,85741,0,1,1 +1773684967.358177,1.05,4,3992.50,54.08,1610.00,2117.30,0.00,0.000000,0.000000,253,669,0.000000,0.000030,64879106,31820657,0,0,85744,0,1,1 +1773684972.354575,0.70,4,3992.50,54.10,1609.02,2118.29,0.00,0.000000,0.000000,253,669,0.000000,0.000020,64879106,31820659,0,0,85746,0,1,1 +1773684977.354278,0.65,4,3992.50,54.11,1608.80,2118.50,0.00,3518646082046.535156,3518646082037.517578,11,0,0.000308,0.000584,64879113,31820673,0,0,85749,0,1,1 +1773684982.355562,0.70,4,3992.50,54.07,1610.46,2116.84,0.00,0.000000,0.000000,11,0,0.000213,0.000560,64879121,31820687,0,0,85751,0,1,1 +1773684987.355092,0.60,4,3992.50,54.07,1610.46,2116.84,0.00,55205.588743,58558.487351,3816828,3259493,0.000000,0.000030,64879121,31820690,0,0,85754,0,1,1 +1773684992.357817,0.65,4,3992.50,54.07,1610.25,2117.05,0.00,3516520290735.985840,3516520287385.229492,11,0,0.000031,0.000045,64879123,31820694,0,0,85756,0,1,1 +1773684997.354599,0.95,4,3992.50,54.03,1610.59,2115.27,0.00,1.658783,10.682071,253,669,0.000331,0.000718,64879140,31820718,0,0,85759,0,1,1 +1773685002.354583,0.60,4,3992.50,53.98,1612.37,2113.41,0.00,55208.627362,58553.199071,3818331,3260194,0.000000,0.000020,64879140,31820720,0,0,85761,0,1,1 +1773685007.356863,0.60,4,3992.50,54.02,1610.89,2114.89,0.00,3516833936698.637695,3516833933344.412598,258,2,0.000000,0.000673,64879140,31820727,0,0,85764,0,1,1 +1773685012.357745,0.85,4,3992.50,53.82,1618.52,2107.26,0.00,3517816512671.442871,3517816512673.564453,75,0,0.002209,0.000408,64879162,31820744,0,0,85766,0,1,1 +1773685017.355491,16.52,4,3992.50,55.25,1562.78,2163.00,0.00,55234.956830,58590.226119,3818331,3260352,40.081801,0.023215,64883567,31822303,0,0,85769,0,1,1 +1773685022.357672,0.75,4,3992.50,54.34,1598.36,2127.43,0.00,3516903291808.093750,3516903291807.188477,3816828,3259693,0.000031,0.000045,64883569,31822307,0,0,85771,0,1,1 +1773685027.357490,0.65,4,3992.50,53.76,1620.93,2104.85,0.00,3518565135859.923828,3518565132507.003418,11,0,0.000031,0.000055,64883571,31822312,0,0,85774,0,1,1 +1773685032.353549,0.95,4,3992.50,53.83,1618.28,2107.46,0.00,1.659023,10.683617,253,669,0.000008,0.000028,64883572,31822315,0,0,85776,0,1,1 +1773685037.353548,0.80,4,3992.50,53.83,1618.28,2107.46,0.00,55208.468515,58553.357652,3818331,3260505,0.001417,0.001192,64883601,31822342,0,0,85779,0,1,1 +1773685042.357662,0.85,4,3992.50,53.83,1618.28,2107.47,0.00,3515544224986.302734,3515544221635.154297,11,0,0.001764,0.001367,64883628,31822361,0,0,85781,0,1,1 +1773685047.353549,0.55,4,3992.50,53.80,1619.19,2106.56,0.00,0.000000,0.000000,11,0,0.000000,0.000030,64883628,31822364,0,0,85784,0,1,1 +1773685052.357633,0.65,4,3992.50,53.84,1617.95,2107.79,0.00,0.000000,0.000000,11,0,0.000000,0.000020,64883628,31822366,0,0,85786,0,1,1 +1773685057.353552,0.95,4,3992.50,54.24,1607.58,2123.71,0.00,2.177168,0.000195,258,2,0.000000,0.000030,64883628,31822369,0,0,85789,0,1,1 +1773685062.357713,0.75,4,3992.50,54.10,1612.83,2118.03,0.00,3515511364081.652344,3515511364083.645996,205,0,0.000107,0.000138,64883636,31822379,0,0,85791,0,1,1 +1773685067.357727,0.65,4,3992.50,54.10,1612.59,2118.27,0.00,0.000000,0.000000,205,0,0.000000,0.000030,64883636,31822382,0,0,85794,0,1,1 +1773685072.353451,0.75,4,3992.50,54.05,1614.62,2116.24,0.00,1.478706,10.684333,253,669,0.000000,0.000664,64883636,31822388,0,0,85796,0,1,1 +1773685077.354688,0.70,4,3992.50,54.08,1613.39,2117.46,0.00,3517566792606.818359,3517566792597.803223,11,0,0.000000,0.000030,64883636,31822391,0,0,85799,0,1,1 +1773685082.356642,17.57,4,3992.50,54.45,1599.05,2131.78,0.00,55178.825430,58530.572510,3816828,3259955,40.051102,0.025127,64888086,31824038,0,0,85801,0,1,1 +1773685087.358331,1.05,4,3992.50,53.88,1616.18,2109.57,0.00,3517248887725.661133,3517248884373.556641,205,0,0.000033,0.000069,64888089,31824044,0,0,85804,0,1,1 +1773685092.353552,0.70,4,3992.50,53.64,1625.50,2100.25,0.00,55253.016880,58609.663174,3816828,3260110,0.000000,0.000020,64888089,31824046,0,0,85806,0,1,1 +1773685097.357616,0.70,4,3992.50,53.65,1625.26,2100.48,0.00,0.000000,0.007806,3816828,3260118,0.000000,0.000030,64888089,31824049,0,0,85809,0,1,1 +1773685102.357929,0.60,4,3992.50,53.48,1631.70,2094.05,0.00,3518217033621.704102,3518217030266.472656,258,2,0.000000,0.000020,64888089,31824051,0,0,85811,0,1,1 +1773685107.353616,0.75,4,3992.50,53.49,1631.46,2094.28,0.00,3521474669534.540527,3521474669536.717773,11,0,0.000000,0.000030,64888089,31824054,0,0,85814,0,1,1 +1773685112.358079,0.60,4,3992.50,53.50,1631.22,2094.52,0.00,1.656236,10.665675,253,669,0.000000,0.000020,64888089,31824056,0,0,85816,0,1,1 +1773685117.354640,1.15,4,3992.50,53.89,1615.98,2109.75,0.00,3520859153672.122070,3520859153663.098633,11,0,0.000000,0.000030,64888089,31824059,0,0,85819,0,1,1 +1773685122.357918,0.60,4,3992.50,53.72,1622.46,2103.26,0.00,0.000000,0.000000,11,0,0.000000,0.000020,64888089,31824061,0,0,85821,0,1,1 +1773685127.357507,0.70,4,3992.50,53.61,1626.71,2099.00,0.00,55214.658759,58569.215360,3818331,3260839,0.000157,0.000210,64888101,31824076,0,0,85824,0,1,1 +1773685132.357582,0.60,4,3992.50,53.64,1625.48,2100.23,0.00,3518384485178.286621,3518384485177.343750,3816828,3260173,0.000008,0.000028,64888102,31824079,0,0,85826,0,1,1 +1773685137.356861,0.75,4,3992.50,53.61,1626.74,2098.97,0.00,3518944432747.824707,3518944429394.003906,11,0,0.000008,0.000682,64888103,31824087,0,0,85829,0,1,1 +1773685142.358317,0.65,4,3992.50,53.61,1626.75,2098.96,0.00,0.053500,0.000000,75,0,0.000000,0.000020,64888103,31824089,0,0,85831,0,1,1 +1773685147.357800,17.29,4,3992.50,54.03,1617.34,2115.44,0.00,3518801011385.871582,0.000000,11,0,40.069454,0.021365,64892534,31825510,0,0,85834,0,1,1 +1773685152.353565,0.75,4,3992.50,54.01,1615.78,2114.59,0.00,2.177234,0.000195,258,2,0.000772,0.000464,64892551,31825524,0,0,85836,0,1,1 +1773685157.357392,0.60,4,3992.50,54.02,1615.54,2114.82,0.00,3515746898883.152344,3515746898885.326172,11,0,0.000000,0.000030,64892551,31825527,0,0,85839,0,1,1 +1773685162.358024,0.70,4,3992.50,54.02,1615.55,2114.82,0.00,1.657505,10.673845,253,669,0.000000,0.000020,64892551,31825529,0,0,85841,0,1,1 +1773685167.357534,0.70,4,3992.50,53.82,1623.18,2107.19,0.00,55213.869637,58559.687532,3818331,3261058,0.000000,0.000030,64892551,31825532,0,0,85844,0,1,1 +1773685172.357891,0.55,4,3992.50,53.82,1623.18,2107.18,0.00,0.000000,0.004687,3818331,3261064,0.000000,0.000020,64892551,31825534,0,0,85846,0,1,1 +1773685177.357615,0.85,4,3992.50,53.94,1608.52,2112.03,0.00,3518631083026.883301,3518631079681.204102,253,669,0.000000,0.000030,64892551,31825537,0,0,85849,0,1,1 +1773685182.357772,0.70,4,3992.50,53.94,1608.53,2112.03,0.00,3518327236527.109863,3518327236518.093262,11,0,0.000000,0.000020,64892551,31825539,0,0,85851,0,1,1 +1773685187.353443,0.60,4,3992.50,53.94,1608.53,2112.03,0.00,55257.953834,58615.478905,3818331,3261135,0.000000,0.000030,64892551,31825542,0,0,85854,0,1,1 +1773685192.358346,0.65,4,3992.50,53.95,1608.31,2112.24,0.00,3514990083042.077148,3514990079699.753906,253,669,0.000119,0.000169,64892560,31825554,0,0,85856,0,1,1 +1773685197.354335,0.80,4,3992.50,53.95,1608.32,2112.24,0.00,55243.050768,58590.397248,3816828,3260476,0.000054,0.000077,64892565,31825561,0,0,85859,0,1,1 +1773685202.353578,0.70,4,3992.50,53.95,1608.32,2112.24,0.00,3518969939807.577637,3518969936453.391113,11,0,0.000000,0.000664,64892565,31825567,0,0,85861,0,1,1 +1773685207.358149,0.95,4,3992.50,54.04,1608.45,2115.87,0.00,55149.987053,58500.667529,3816829,3260542,0.000000,0.000030,64892565,31825570,0,0,85864,0,1,1 +1773685212.358258,16.63,4,3992.50,55.61,1547.05,2177.11,0.00,3518360234587.859375,3518360231234.009277,205,0,40.062859,0.021531,64897002,31827018,0,0,85866,0,1,1 +1773685217.354270,0.80,4,3992.50,54.64,1585.07,2139.10,0.00,3521246011753.006348,0.000000,75,0,0.003263,0.001573,64897061,31827059,0,0,85869,0,1,1 +1773685222.357964,0.70,4,3992.50,53.96,1611.35,2112.82,0.00,0.126664,0.000000,205,0,0.000000,0.000020,64897061,31827061,0,0,85871,0,1,1 +1773685227.354936,0.55,4,3992.50,53.87,1614.85,2109.31,0.00,3520569191653.585449,0.000000,75,0,0.000000,0.000030,64897061,31827064,0,0,85874,0,1,1 +1773685232.356609,0.80,4,3992.50,53.86,1615.27,2108.90,0.00,0.126715,0.000000,205,0,0.000000,0.000020,64897061,31827066,0,0,85876,0,1,1 +1773685237.357755,0.95,4,3992.50,53.98,1609.97,2113.32,0.00,3517631089547.331055,0.000000,11,0,0.000000,0.000030,64897061,31827069,0,0,85879,0,1,1 +1773685242.358351,0.60,4,3992.50,54.01,1608.25,2114.75,0.00,2.175131,0.000195,258,2,0.000000,0.000020,64897061,31827071,0,0,85881,0,1,1 +1773685247.353913,0.60,4,3992.50,54.01,1608.25,2114.75,0.00,3521562681687.205078,3521562681689.328613,75,0,0.000000,0.000043,64897061,31827075,0,0,85884,0,1,1 +1773685252.353449,0.65,4,3992.50,54.02,1608.00,2115.00,0.00,0.126770,0.000000,205,0,0.000000,0.000020,64897061,31827077,0,0,85886,0,1,1 +1773685257.353555,0.65,4,3992.50,54.02,1608.01,2114.99,0.00,3518362167847.358398,0.000000,11,0,0.000087,0.000111,64897067,31827086,0,0,85889,0,1,1 +1773685262.357398,0.65,4,3992.50,54.02,1608.01,2114.99,0.00,0.000000,0.000000,11,0,0.000109,0.000152,64897076,31827097,0,0,85891,0,1,1 +1773685267.357929,0.95,4,3992.50,54.25,1599.21,2123.93,0.00,55204.272364,58558.933235,3818332,3261501,0.000000,0.000674,64897076,31827104,0,0,85894,0,1,1 +1773685272.355743,0.75,4,3992.50,54.10,1604.68,2118.32,0.00,3519975617448.328125,3519975614091.791016,75,0,0.000000,0.000020,64897076,31827106,0,0,85896,0,1,1 +1773685277.356647,15.79,4,3992.50,55.60,1545.98,2177.02,0.00,55200.092456,58554.600602,3818332,3261557,40.056731,0.023599,64901416,31828564,0,0,85899,0,1,1 +1773685282.358033,1.00,4,3992.50,54.75,1579.41,2143.60,0.00,3517462314318.388672,3517462310964.257324,11,0,0.003289,0.001960,64901479,31828614,0,0,85901,0,1,1 +1773685287.357975,0.60,4,3992.50,54.54,1587.52,2135.50,0.00,0.053516,0.000000,75,0,0.000000,0.000030,64901479,31828617,0,0,85904,0,1,1 +1773685292.358050,0.65,4,3992.50,54.18,1601.77,2121.25,0.00,1.604175,10.675036,253,669,0.000000,0.000020,64901479,31828619,0,0,85906,0,1,1 +1773685297.353560,1.00,4,3992.50,54.38,1599.39,2129.12,0.00,55248.352442,58596.641252,3816829,3261038,0.000205,0.000562,64901486,31828633,0,0,85909,0,1,1 +1773685302.358342,0.65,4,3992.50,54.40,1598.17,2129.77,0.00,3515074877705.655762,3515074874363.570312,253,669,0.000008,0.000028,64901487,31828636,0,0,85911,0,1,1 +1773685307.358100,0.70,4,3992.50,54.40,1598.17,2129.77,0.00,3518607790283.493652,3518607790274.476074,11,0,0.000000,0.000030,64901487,31828639,0,0,85914,0,1,1 +1773685312.358149,0.65,4,3992.50,54.40,1598.17,2129.77,0.00,2.175369,0.000195,258,2,0.000000,0.000020,64901487,31828641,0,0,85916,0,1,1 +1773685317.353449,0.75,4,3992.50,54.37,1599.18,2128.76,0.00,55259.894085,58620.531827,3818332,3261762,0.000000,0.000030,64901487,31828644,0,0,85919,0,1,1 +1773685322.357987,0.65,4,3992.50,54.38,1598.94,2129.01,0.00,3515246935970.992188,3515246935970.049316,3816829,3261097,0.000118,0.000126,64901495,31828654,0,0,85921,0,1,1 +1773685327.358349,0.85,4,3992.50,54.38,1605.16,2129.00,0.00,3518182527333.473633,3518182523979.176270,205,0,0.000132,0.000179,64901505,31828667,0,0,85924,0,1,1 +1773685332.353427,0.70,4,3992.50,54.40,1604.39,2129.71,0.00,55254.615750,58612.507689,3816829,3261128,0.000000,0.000664,64901505,31828673,0,0,85926,0,1,1 +1773685337.357620,0.70,4,3992.50,54.40,1604.39,2129.71,0.00,3515488432998.121094,3515488429646.472656,75,0,0.001416,0.001199,64901534,31828701,0,0,85929,0,1,1 +1773685342.354558,15.62,4,3992.50,54.50,1600.41,2133.67,0.00,3520593355444.805664,0.000000,11,0,40.090394,0.024766,64905957,31830381,0,0,85931,0,1,1 +1773685347.358033,0.75,4,3992.50,54.16,1613.54,2120.55,0.00,2.173880,0.000195,258,2,0.000854,0.000598,64905975,31830397,0,0,85934,0,1,1 +1773685352.357276,0.65,4,3992.50,54.12,1615.22,2118.87,0.00,55216.317565,58574.415953,3818332,3261878,0.000000,0.000020,64905975,31830399,0,0,85936,0,1,1 +1773685357.357794,0.90,4,3992.50,54.04,1613.99,2115.83,0.00,0.000000,0.069524,3818332,3261906,0.000000,0.000030,64905975,31830402,0,0,85939,0,1,1 +1773685362.358169,0.70,4,3992.50,54.04,1613.46,2115.83,0.00,3518173085934.135254,3518173082578.723145,205,0,0.000000,0.000020,64905975,31830404,0,0,85941,0,1,1 +1773685367.353546,0.60,4,3992.50,54.04,1613.46,2115.83,0.00,1.478809,10.685075,253,669,0.000000,0.000030,64905975,31830407,0,0,85944,0,1,1 +1773685372.357688,0.55,4,3992.50,54.04,1613.46,2115.82,0.00,0.517247,3515525359684.134766,258,2,0.000000,0.000020,64905975,31830409,0,0,85946,0,1,1 +1773685377.358190,0.75,4,3992.50,53.85,1621.10,2108.18,0.00,3518083856761.810059,10.673928,253,669,0.000000,0.000030,64905975,31830412,0,0,85949,0,1,1 +1773685382.353618,0.60,4,3992.50,53.85,1620.86,2108.43,0.00,3521657100115.068359,3521657100106.042969,11,0,0.000056,0.000076,64905979,31830418,0,0,85951,0,1,1 +1773685387.358250,1.00,4,3992.50,53.87,1622.25,2109.13,0.00,0.000000,0.000000,11,0,0.000140,0.000187,64905990,31830432,0,0,85954,0,1,1 +1773685392.353492,0.75,4,3992.50,53.87,1622.25,2109.13,0.00,0.000000,0.000000,11,0,0.000050,0.000082,64905994,31830438,0,0,85956,0,1,1 +1773685397.357744,0.65,4,3992.50,53.87,1622.25,2109.13,0.00,0.000000,0.000000,11,0,0.000000,0.000673,64905994,31830445,0,0,85959,0,1,1 +1773685402.353574,0.60,4,3992.50,53.88,1622.02,2109.36,0.00,55246.471954,58603.986251,3816829,3261408,0.000000,0.000020,64905994,31830447,0,0,85961,0,1,1 +1773685407.354113,17.60,4,3992.50,54.53,1596.34,2135.04,0.00,3518058019608.318359,3518058016251.790527,258,2,40.058946,0.021126,64910356,31831851,0,0,85964,0,1,1 +1773685412.353440,0.90,4,3992.50,54.26,1607.14,2124.23,0.00,3518910629043.071289,10.676436,253,669,0.003085,0.001429,64910412,31831890,0,0,85966,0,1,1 +1773685417.353454,0.90,4,3992.50,54.16,1617.10,2120.63,0.00,3518427276361.521484,3518427276352.323730,205,0,0.000000,0.000030,64910412,31831893,0,0,85969,0,1,1 +1773685422.354798,0.60,4,3992.50,54.18,1616.37,2121.37,0.00,1.477045,10.672328,253,669,0.000000,0.000020,64910412,31831895,0,0,85971,0,1,1 +1773685427.355502,0.80,4,3992.50,54.18,1616.37,2121.37,0.00,55190.971737,58536.348476,3816829,3261542,0.000000,0.000030,64910412,31831898,0,0,85974,0,1,1 +1773685432.353560,0.55,4,3992.50,54.19,1616.13,2121.61,0.00,9.729950,10.681882,3818332,3262216,0.000000,0.000020,64910412,31831900,0,0,85976,0,1,1 +1773685437.353452,0.65,4,3992.50,53.81,1630.94,2106.80,0.00,3518512812254.075684,3518512808898.186523,11,0,0.000000,0.000030,64910412,31831903,0,0,85979,0,1,1 +1773685442.357690,0.70,4,3992.50,53.81,1630.94,2106.80,0.00,0.180121,0.000000,205,0,0.000000,0.000020,64910412,31831905,0,0,85981,0,1,1 +1773685447.354995,0.90,4,3992.50,53.95,1624.06,2112.18,0.00,55229.986213,58586.970667,3816829,3261652,0.000000,0.000030,64910412,31831908,0,0,85984,0,1,1 +1773685452.356721,0.60,4,3992.50,53.79,1630.18,2106.08,0.00,0.000000,0.003905,3816829,3261656,0.000071,0.000091,64910417,31831915,0,0,85986,0,1,1 +1773685457.357619,0.70,4,3992.50,53.79,1630.18,2106.08,0.00,3517805158175.742188,3517805154821.345703,11,0,0.000217,0.000276,64910433,31831935,0,0,85989,0,1,1 +1773685462.357414,0.60,4,3992.50,53.79,1630.18,2106.07,0.00,55212.383098,58568.487077,3818332,3262348,0.000000,0.000664,64910433,31831941,0,0,85991,0,1,1 +1773685467.357682,0.60,4,3992.50,53.79,1630.19,2106.07,0.00,3518248900933.898926,3518248900932.954590,3816829,3261682,0.000000,0.000030,64910433,31831944,0,0,85994,0,1,1 +1773685472.354672,10.30,4,3992.50,59.10,1422.28,2313.98,0.00,3520556923253.027344,3520556919895.930176,75,0,10.567977,0.019731,64913215,31833316,0,0,85996,0,1,1 +1773685477.358069,6.98,4,3992.50,54.71,1594.04,2142.19,0.00,2.120434,0.000195,258,2,29.498138,0.007223,64915990,31833787,0,0,85999,0,1,1 +1773685482.357936,0.70,4,3992.50,54.01,1621.74,2114.52,0.00,0.000000,0.000000,258,2,0.000000,0.000020,64915990,31833789,0,0,86001,0,1,1 +1773685487.354553,0.60,4,3992.50,54.00,1622.09,2114.17,0.00,3520819663047.336914,3520819663049.513672,11,0,0.000000,0.000030,64915990,31833792,0,0,86004,0,1,1 +1773685492.357943,0.65,4,3992.50,54.00,1622.09,2114.16,0.00,0.000000,0.000000,11,0,0.000000,0.000020,64915990,31833794,0,0,86006,0,1,1 +1773685497.358217,0.70,4,3992.50,54.00,1622.10,2114.16,0.00,0.180264,0.000000,205,0,0.000000,0.000030,64915990,31833797,0,0,86009,0,1,1 +1773685502.355374,0.65,4,3992.50,54.00,1622.10,2114.16,0.00,3520438850147.261230,0.000000,75,0,0.000000,0.000020,64915990,31833799,0,0,86011,0,1,1 +1773685507.357990,0.95,4,3992.50,54.04,1620.34,2115.82,0.00,55181.205710,58535.765384,3818332,3262604,0.000000,0.000030,64915990,31833802,0,0,86014,0,1,1 +1773685512.353551,0.85,4,3992.50,54.04,1620.27,2115.77,0.00,0.000000,0.006256,3818332,3262607,0.000000,0.000020,64915990,31833804,0,0,86016,0,1,1 +1773685517.353450,0.60,4,3992.50,54.04,1620.27,2115.77,0.00,3518508362260.680664,3518508362259.747070,3816829,3261951,0.000031,0.000055,64915992,31833809,0,0,86019,0,1,1 +1773685522.354753,0.75,4,3992.50,54.04,1620.28,2115.77,0.00,3517520610924.814453,3517520607570.354980,11,0,0.000149,0.000191,64916004,31833823,0,0,86021,0,1,1 +1773685527.354587,0.65,4,3992.50,54.04,1620.28,2115.77,0.00,0.000000,0.000000,11,0,0.000000,0.000674,64916004,31833830,0,0,86024,0,1,1 +1773685532.353686,0.65,4,3992.50,54.04,1620.28,2115.77,0.00,55210.345181,58566.295101,3816829,3261964,0.000000,0.000020,64916004,31833832,0,0,86026,0,1,1 +1773685537.358295,0.95,4,3992.50,54.04,1610.73,2115.96,0.00,0.000000,0.063223,3816829,3262013,0.000000,0.000030,64916004,31833835,0,0,86029,0,1,1 +1773685542.357949,1.25,4,3992.50,53.97,1613.72,2112.96,0.00,9.726845,10.690193,3818332,3262718,0.003843,0.002700,64916069,31833883,0,0,86031,0,1,1 +1773685547.357581,17.65,4,3992.50,54.22,1604.04,2122.64,0.00,3518696329584.936523,3518696326228.263672,75,0,40.078040,0.025142,64921493,31835749,0,0,86034,0,1,1 +1773685552.358206,0.65,4,3992.50,54.22,1604.05,2122.64,0.00,1.603999,10.673861,253,669,0.000000,0.000020,64921493,31835751,0,0,86036,0,1,1 +1773685557.355202,0.70,4,3992.50,54.22,1604.05,2122.64,0.00,3520552294738.500977,3520552294729.478516,11,0,0.000000,0.000030,64921493,31835754,0,0,86039,0,1,1 +1773685562.358387,0.75,4,3992.50,54.22,1604.05,2122.64,0.00,1.656659,10.668399,253,669,0.000000,0.000020,64921493,31835756,0,0,86041,0,1,1 +1773685567.354474,0.95,4,3992.50,54.22,1607.15,2122.80,0.00,3521193331410.730469,3521193331401.652832,75,0,0.000000,0.000030,64921493,31835759,0,0,86044,0,1,1 +1773685572.357493,0.65,4,3992.50,54.22,1607.17,2122.80,0.00,55176.749903,58531.360187,3818332,3262909,0.000000,0.000020,64921493,31835761,0,0,86046,0,1,1 +1773685577.353555,0.65,4,3992.50,54.22,1607.17,2122.79,0.00,0.000000,0.021892,3818332,3262924,0.000338,0.000585,64921502,31835775,0,0,86049,0,1,1 +1773685582.353549,0.65,4,3992.50,54.22,1606.95,2123.02,0.00,3518441455319.596680,3518441451962.987793,11,0,0.001175,0.001257,64921515,31835794,0,0,86051,0,1,1 +1773685587.354508,0.70,4,3992.50,54.22,1606.95,2123.02,0.00,0.000000,0.000000,11,0,0.000031,0.000055,64921517,31835799,0,0,86054,0,1,1 +1773685592.357923,0.50,4,3992.50,54.22,1606.95,2123.02,0.00,2.173906,0.000195,258,2,0.000133,0.000819,64921527,31835815,0,0,86056,0,1,1 +1773685597.357118,1.00,4,3992.50,54.22,1600.92,2122.98,0.00,0.000000,0.000000,258,2,0.000217,0.000562,64921535,31835829,0,0,86059,0,1,1 +1773685602.353447,0.65,4,3992.50,54.19,1602.25,2121.68,0.00,55248.515709,58609.827515,3818332,3262970,0.000000,0.000020,64921535,31835831,0,0,86061,0,1,1 +1773685607.353445,0.60,4,3992.50,54.19,1602.25,2121.68,0.00,3518438803429.939453,3518438803429.001465,3816829,3262311,0.000000,0.000030,64921535,31835834,0,0,86064,0,1,1 +1773685612.357675,6.32,4,3992.50,59.17,1407.28,2316.64,0.00,9.717951,10.689883,3818332,3263015,0.490332,0.007307,64922185,31836160,0,0,86066,0,1,1 +1773685617.358101,12.67,4,3992.50,53.57,1626.57,2097.35,0.00,0.000000,0.105753,3818332,3263138,39.585813,0.022762,64927054,31837855,0,0,86069,0,1,1 +1773685622.353573,0.60,4,3992.50,53.63,1624.37,2099.55,0.00,3521626846059.184082,3521626842699.278320,75,0,0.000031,0.000032,64927056,31837858,0,0,86071,0,1,1 +1773685627.355598,1.00,4,3992.50,53.78,1618.75,2105.66,0.00,2.121016,0.000195,258,2,0.000031,0.000055,64927058,31837863,0,0,86074,0,1,1 +1773685632.356649,0.60,4,3992.50,53.78,1618.61,2105.66,0.00,3517697676966.540039,3517697676968.714844,11,0,0.000000,0.000020,64927058,31837865,0,0,86076,0,1,1 +1773685637.353502,0.90,4,3992.50,53.79,1618.14,2106.12,0.00,0.053549,0.000000,75,0,0.002168,0.002189,64927096,31837899,0,0,86079,0,1,1 +1773685642.353864,0.65,4,3992.50,53.79,1618.23,2106.04,0.00,55196.353932,58552.137752,3816829,3262546,0.001108,0.000476,64927121,31837918,0,0,86081,0,1,1 +1773685647.354497,0.60,4,3992.50,53.80,1618.02,2106.25,0.00,3517991303167.962891,3517991299810.240234,258,2,0.000008,0.000038,64927122,31837922,0,0,86084,0,1,1 +1773685652.357671,0.70,4,3992.50,53.80,1618.02,2106.25,0.00,3516205365036.763672,3516205365038.884277,75,0,0.000000,0.000020,64927122,31837924,0,0,86086,0,1,1 +1773685657.357388,0.90,4,3992.50,54.23,1601.56,2123.19,0.00,1.604290,10.675799,253,669,0.000031,0.000699,64927124,31837933,0,0,86089,0,1,1 +1773685662.357501,0.60,4,3992.50,54.03,1609.02,2115.27,0.00,0.000000,0.000000,253,669,0.000086,0.000121,64927131,31837942,0,0,86091,0,1,1 +1773685667.354649,0.70,4,3992.50,54.01,1609.61,2114.67,0.00,0.000000,0.000000,253,669,0.000000,0.000030,64927131,31837945,0,0,86094,0,1,1 +1773685672.357776,0.65,4,3992.50,53.93,1612.80,2111.48,0.00,3516237994705.749023,3516237994696.684082,75,0,0.000000,0.000020,64927131,31837947,0,0,86096,0,1,1 +1773685677.355792,1.30,4,3992.50,54.04,1608.64,2115.65,0.00,3519834447293.112305,0.000000,11,0,0.003618,0.002571,64927179,31837986,0,0,86099,0,1,1 +1773685682.357562,17.40,4,3992.50,53.56,1627.12,2097.15,0.00,0.053497,0.000000,75,0,40.061649,0.027134,64932661,31840009,0,0,86101,0,1,1 +1773685687.354005,0.85,4,3992.50,53.98,1609.94,2113.33,0.00,2.123385,0.000195,258,2,0.000025,0.000061,64932663,31840014,0,0,86104,0,1,1 +1773685692.358248,0.65,4,3992.50,53.90,1612.88,2110.37,0.00,3515453958091.467285,3515453958093.640625,11,0,0.000000,0.000020,64932663,31840016,0,0,86106,0,1,1 +1773685697.358283,1.50,4,3992.50,53.90,1612.88,2110.37,0.00,0.180272,0.000000,205,0,0.000000,0.000030,64932663,31840019,0,0,86109,0,1,1 +1773685702.357941,0.70,4,3992.50,53.91,1612.63,2110.61,0.00,3518677170702.559082,0.000000,11,0,0.000000,0.000020,64932663,31840021,0,0,86111,0,1,1 +1773685707.358082,0.60,4,3992.50,53.90,1612.88,2110.36,0.00,0.000000,0.000000,11,0,0.000000,0.000030,64932663,31840024,0,0,86114,0,1,1 +1773685712.353459,0.65,4,3992.50,53.90,1612.88,2110.36,0.00,55251.490788,58610.884372,3816830,3262844,0.000000,0.000020,64932663,31840026,0,0,86116,0,1,1 +1773685717.353565,1.00,4,3992.50,53.95,1611.45,2112.09,0.00,3518362945781.058105,3518362942422.666016,258,2,0.000000,0.000030,64932663,31840029,0,0,86119,0,1,1 +1773685722.358047,0.65,4,3992.50,53.92,1612.17,2111.06,0.00,3515285684256.317871,3515285684258.491211,11,0,0.000031,0.000515,64932665,31840035,0,0,86121,0,1,1 +1773685727.357708,0.65,4,3992.50,53.92,1612.17,2111.06,0.00,0.000000,0.000000,11,0,0.000130,0.000359,64932675,31840050,0,0,86124,0,1,1 +1773685732.357918,0.65,4,3992.50,53.93,1611.94,2111.29,0.00,2.175299,0.000195,258,2,0.000016,0.000036,64932677,31840054,0,0,86126,0,1,1 +1773685737.357508,0.65,4,3992.50,53.93,1611.94,2111.29,0.00,0.000000,0.000000,258,2,0.000000,0.000030,64932677,31840057,0,0,86129,0,1,1 +1773685742.358331,0.95,4,3992.50,53.86,1614.67,2108.56,0.00,3517858172943.616211,3517858172945.791504,11,0,0.002271,0.000737,64932704,31840076,0,0,86131,0,1,1 +1773685747.357742,19.76,4,3992.50,54.35,1595.73,2128.09,0.00,1.657910,10.676453,253,669,40.082603,0.030469,64938228,31842201,0,0,86134,0,1,1 +1773685752.358367,0.60,4,3992.50,54.38,1594.90,2128.95,0.00,55201.577101,58549.574433,3818333,3263675,0.000619,0.000285,64938240,31842211,0,0,86136,0,1,1 +1773685757.357682,0.65,4,3992.50,54.36,1595.39,2128.46,0.00,3518918818354.434082,3518918814996.540527,11,0,0.000000,0.000030,64938240,31842214,0,0,86139,0,1,1 +1773685762.357581,0.60,4,3992.50,54.32,1597.18,2126.67,0.00,0.000000,0.000000,11,0,0.000000,0.000020,64938240,31842216,0,0,86141,0,1,1 +1773685767.358034,0.65,4,3992.50,54.35,1596.11,2127.73,0.00,55195.412387,58551.606730,3816830,3263019,0.000000,0.000030,64938240,31842219,0,0,86144,0,1,1 +1773685772.357789,0.65,4,3992.50,54.35,1596.04,2127.80,0.00,9.726648,10.677476,3818333,3263692,0.000000,0.000020,64938240,31842221,0,0,86146,0,1,1 +1773685777.357943,0.85,4,3992.50,54.94,1577.01,2150.88,0.00,3518328796182.798828,3518328792825.452637,11,0,0.000000,0.000030,64938240,31842224,0,0,86149,0,1,1 +1773685782.353448,0.75,4,3992.50,54.69,1582.55,2141.29,0.00,0.180436,0.000000,205,0,0.000000,0.000020,64938240,31842226,0,0,86151,0,1,1 +1773685787.357503,0.60,4,3992.50,54.63,1585.02,2138.82,0.00,0.000000,0.000000,205,0,0.000000,0.000512,64938240,31842232,0,0,86154,0,1,1 +1773685792.357540,0.65,4,3992.50,54.45,1592.13,2131.71,0.00,1.995103,0.000195,258,2,0.000154,0.000349,64938251,31842246,0,0,86156,0,1,1 +1773685797.358311,0.65,4,3992.50,54.45,1591.91,2131.93,0.00,55189.722268,58548.058958,3816830,3263171,0.000041,0.000077,64938255,31842253,0,0,86159,0,1,1 +1773685802.357792,0.95,4,3992.50,54.45,1591.92,2131.92,0.00,3518802330766.293945,3518802327409.085938,205,0,0.000000,0.000020,64938255,31842255,0,0,86161,0,1,1 +1773685807.357259,1.40,4,3992.50,54.56,1588.02,2136.08,0.00,55215.839599,58574.153494,3818333,3263957,0.002234,0.000418,64938279,31842273,0,0,86164,0,1,1 +1773685812.357682,15.82,4,3992.50,55.56,1548.46,2175.41,0.00,3518139377652.511230,3518139374295.019531,11,0,40.069275,0.025181,64943600,31844066,0,0,86166,0,1,1 +1773685817.358253,1.00,4,3992.50,54.85,1576.28,2147.60,0.00,2.175142,0.000195,258,2,0.002942,0.001426,64943657,31844105,0,0,86169,0,1,1 +1773685822.358145,0.85,4,3992.50,54.47,1591.20,2132.68,0.00,0.000000,0.000000,258,2,0.000000,0.000020,64943657,31844107,0,0,86171,0,1,1 +1773685827.357875,0.70,4,3992.50,54.44,1592.33,2131.55,0.00,55201.219947,58560.512933,3816830,3263426,0.000000,0.000030,64943657,31844110,0,0,86174,0,1,1 +1773685832.357734,0.70,4,3992.50,54.44,1592.34,2131.54,0.00,3518536106179.586914,3518536102820.380859,258,2,0.000000,0.000020,64943657,31844112,0,0,86176,0,1,1 +1773685837.357582,0.90,4,3992.50,54.62,1586.44,2138.30,0.00,0.000000,0.000000,258,2,0.000000,0.000030,64943657,31844115,0,0,86179,0,1,1 +1773685842.356566,0.60,4,3992.50,54.45,1592.23,2131.79,0.00,55209.451635,58569.354962,3816830,3263496,0.000000,0.000020,64943657,31844117,0,0,86181,0,1,1 +1773685847.353454,0.70,4,3992.50,54.41,1593.68,2130.35,0.00,3520627991897.661621,3520627988538.345215,205,0,0.000000,0.000030,64943657,31844120,0,0,86184,0,1,1 +1773685852.358328,0.60,4,3992.50,54.42,1593.46,2130.57,0.00,3515011296795.577148,0.000000,11,0,0.000000,0.000663,64943657,31844126,0,0,86186,0,1,1 +1773685857.357836,0.65,4,3992.50,54.42,1593.22,2130.80,0.00,0.053521,0.000000,75,0,0.000059,0.000086,64943661,31844133,0,0,86189,0,1,1 +1773685862.358333,0.65,4,3992.50,54.40,1594.09,2129.93,0.00,3518087192277.534180,0.000000,11,0,0.000121,0.000160,64943671,31844145,0,0,86191,0,1,1 +1773685867.353468,0.90,4,3992.50,54.30,1606.51,2126.02,0.00,1.659329,10.685591,253,669,0.000000,0.000030,64943671,31844148,0,0,86194,0,1,1 +1773685872.353611,0.70,4,3992.50,54.30,1603.29,2126.02,0.00,0.000000,0.000000,253,669,0.000000,0.000020,64943671,31844150,0,0,86196,0,1,1 +1773685877.353584,0.70,4,3992.50,54.15,1609.43,2119.90,0.00,0.000000,0.000000,253,669,0.000323,0.000584,64943679,31844164,0,0,86199,0,1,1 +1773685882.354573,16.88,4,3992.50,54.08,1611.84,2117.47,0.00,3517740964925.949707,3517740964916.880859,75,0,40.069945,0.028674,64949166,31846156,0,0,86201,0,1,1 +1773685887.358423,0.70,4,3992.50,54.09,1611.64,2117.66,0.00,55157.885848,58512.627301,3816831,3263739,0.001560,0.000846,64949198,31846181,0,0,86204,0,1,1 +1773685892.357907,0.70,4,3992.50,54.03,1613.93,2115.38,0.00,0.000000,0.007813,3816831,3263746,0.000000,0.000020,64949198,31846183,0,0,86206,0,1,1 +1773685897.353453,1.00,4,3992.50,53.82,1605.66,2107.26,0.00,3521573861782.022461,3521573858430.775879,253,669,0.000235,0.000562,64949207,31846197,0,0,86209,0,1,1 +1773685902.357825,0.65,4,3992.50,53.42,1621.30,2091.62,0.00,3515363418698.918457,3515363418689.729004,205,0,0.000000,0.000020,64949207,31846199,0,0,86211,0,1,1 +1773685907.358272,0.65,4,3992.50,53.44,1620.82,2092.11,0.00,0.000000,0.000000,205,0,0.000000,0.000030,64949207,31846202,0,0,86214,0,1,1 +1773685912.357736,0.70,4,3992.50,53.47,1619.39,2093.54,0.00,1.995331,0.000195,258,2,0.000000,0.000020,64949207,31846204,0,0,86216,0,1,1 +1773685917.357875,0.60,4,3992.50,53.47,1619.39,2093.54,0.00,55196.701695,58556.228840,3816831,3263868,0.000000,0.000352,64949207,31846209,0,0,86219,0,1,1 +1773685922.356907,0.65,4,3992.50,53.47,1619.39,2093.54,0.00,3519118376876.124512,3519118373518.028809,11,0,0.000031,0.000369,64949209,31846215,0,0,86221,0,1,1 +1773685927.353565,1.05,4,3992.50,53.87,1603.87,2108.97,0.00,0.180394,0.000000,205,0,0.000123,0.000153,64949218,31846227,0,0,86224,0,1,1 +1773685932.354166,0.60,4,3992.50,53.87,1603.81,2108.97,0.00,1.477264,10.673913,253,669,0.000112,0.000150,64949226,31846237,0,0,86226,0,1,1 +1773685937.358368,0.75,4,3992.50,53.87,1603.82,2108.97,0.00,0.000000,0.000000,253,669,0.002150,0.002145,64949263,31846269,0,0,86229,0,1,1 +1773685942.356183,0.75,4,3992.50,53.87,1603.58,2109.20,0.00,3519975583938.766113,3519975583929.691406,75,0,0.001804,0.001450,64949293,31846294,0,0,86231,0,1,1 +1773685947.357595,23.05,4,3992.50,58.90,1406.72,2306.05,0.00,55184.777775,58541.471326,3816831,3264018,40.066406,0.028196,64954874,31848311,0,0,86234,0,1,1 +1773685952.358244,0.95,4,3992.50,54.39,1583.39,2129.39,0.00,3517980424134.722656,3517980420777.517090,75,0,0.003235,0.001710,64954942,31848372,0,0,86236,0,1,1 +1773685957.358382,0.85,4,3992.50,54.09,1595.11,2117.80,0.00,55198.853302,58556.507157,3816832,3264118,0.000008,0.000038,64954943,31848376,0,0,86239,0,1,1 +1773685962.354659,0.65,4,3992.50,53.81,1605.89,2106.89,0.00,3521059292171.519043,3521059288811.143555,205,0,0.000000,0.000020,64954943,31848378,0,0,86241,0,1,1 +1773685967.358010,0.65,4,3992.50,53.81,1605.90,2106.89,0.00,1.993781,0.000195,258,2,0.000000,0.000030,64954943,31848381,0,0,86244,0,1,1 +1773685972.354115,0.60,4,3992.50,53.82,1605.68,2107.11,0.00,3521180547266.571777,10.683323,253,669,0.000000,0.000020,64954943,31848383,0,0,86246,0,1,1 +1773685977.357940,0.75,4,3992.50,53.82,1605.68,2107.10,0.00,3515747149013.463379,3515747149004.452637,11,0,0.000000,0.000030,64954943,31848386,0,0,86249,0,1,1 +1773685982.358315,0.60,4,3992.50,53.82,1605.68,2107.10,0.00,1.657591,10.674395,253,669,0.000056,0.000076,64954947,31848392,0,0,86251,0,1,1 +1773685987.356849,0.70,4,3992.50,53.82,1605.68,2107.09,0.00,3519469231995.113770,3519469231986.040039,75,0,0.000044,0.000721,64954951,31848403,0,0,86254,0,1,1 +1773685992.358304,0.95,4,3992.50,53.91,1609.62,2110.75,0.00,55194.048449,58551.869054,3818335,3264865,0.000056,0.000076,64954955,31848409,0,0,86256,0,1,1 +1773685997.358016,0.70,4,3992.50,53.91,1609.63,2110.75,0.00,3518639765001.369629,3518639765000.431152,3816832,3264207,0.000110,0.000154,64954963,31848420,0,0,86259,0,1,1 +1773686002.358157,0.55,4,3992.50,53.91,1609.63,2110.75,0.00,3518337740938.891113,3518337737581.180176,11,0,0.000000,0.000020,64954963,31848422,0,0,86261,0,1,1 +1773686007.358323,0.65,4,3992.50,53.91,1609.63,2110.75,0.00,2.175318,0.000195,258,2,0.000000,0.000030,64954963,31848425,0,0,86264,0,1,1 +1773686012.358023,14.97,4,3992.50,58.96,1411.83,2308.55,0.00,3518648294703.412598,3518648294705.588379,11,0,33.780704,0.025122,64959813,31850206,0,0,86266,0,1,1 +1773686017.358254,1.25,4,3992.50,53.82,1616.37,2107.29,0.00,0.000000,0.000000,11,0,6.300205,0.003269,64960471,31850383,0,0,86269,0,1,1 +1773686022.354631,0.75,4,3992.50,53.68,1621.95,2101.71,0.00,0.000000,0.000000,11,0,0.000000,0.000020,64960471,31850385,0,0,86271,0,1,1 +1773686027.356722,0.65,4,3992.50,53.74,1619.50,2104.16,0.00,0.180198,0.000000,205,0,0.000000,0.000030,64960471,31850388,0,0,86274,0,1,1 +1773686032.353699,0.55,4,3992.50,53.74,1619.50,2104.16,0.00,55233.646622,58593.918563,3816832,3264457,0.000000,0.000020,64960471,31850390,0,0,86276,0,1,1 +1773686037.353717,0.60,4,3992.50,53.74,1619.50,2104.16,0.00,3518424868750.492188,3518424865392.443848,11,0,0.000000,0.000030,64960471,31850393,0,0,86279,0,1,1 +1773686042.354586,0.75,4,3992.50,53.74,1619.50,2104.16,0.00,2.175012,0.000195,258,2,0.000000,0.000020,64960471,31850395,0,0,86281,0,1,1 +1773686047.357575,0.90,4,3992.50,54.03,1608.47,2115.20,0.00,3516334956774.898438,3516334956777.019043,75,0,0.000000,0.000030,64960471,31850398,0,0,86284,0,1,1 +1773686052.357298,0.65,4,3992.50,53.99,1609.66,2113.96,0.00,3518631961643.591309,0.000000,11,0,0.000000,0.000664,64960471,31850404,0,0,86286,0,1,1 +1773686057.353572,0.65,4,3992.50,54.00,1609.47,2114.16,0.00,0.000000,0.000000,11,0,0.000031,0.000055,64960473,31850409,0,0,86289,0,1,1 +1773686062.353618,0.70,4,3992.50,53.81,1616.86,2106.77,0.00,0.000000,0.000000,11,0,0.000142,0.000191,64960485,31850423,0,0,86291,0,1,1 +1773686067.353499,0.75,4,3992.50,53.81,1616.86,2106.76,0.00,0.180278,0.000000,205,0,0.000000,0.000030,64960485,31850426,0,0,86294,0,1,1 +1773686072.353697,0.70,4,3992.50,53.82,1616.65,2106.98,0.00,55207.794601,58566.935633,3818335,3265190,0.000000,0.000020,64960485,31850428,0,0,86296,0,1,1 +1773686077.356389,0.85,4,3992.50,53.83,1615.94,2107.43,0.00,3516543977914.253418,3516543974556.787109,205,0,0.000000,0.000030,64960485,31850431,0,0,86299,0,1,1 +1773686082.354636,15.22,4,3992.50,53.58,1625.29,2097.90,0.00,3519671018295.535645,0.000000,11,0,40.080817,0.027674,64964919,31852344,0,0,86301,0,1,1 +1773686087.353760,1.00,4,3992.50,53.58,1625.31,2097.88,0.00,2.175772,0.000195,258,2,0.003085,0.001439,64964975,31852384,0,0,86304,0,1,1 +1773686092.353664,0.60,4,3992.50,53.63,1623.59,2099.60,0.00,3518504966140.217285,10.675206,253,669,0.000008,0.000028,64964976,31852387,0,0,86306,0,1,1 +1773686097.357674,0.65,4,3992.50,53.63,1623.59,2099.60,0.00,3515617402475.544922,3515617402466.354492,205,0,0.000000,0.000030,64964976,31852390,0,0,86309,0,1,1 +1773686102.358139,0.65,4,3992.50,53.64,1623.18,2099.97,0.00,1.477304,10.674204,253,669,0.000000,0.000020,64964976,31852392,0,0,86311,0,1,1 +1773686107.358329,0.90,4,3992.50,53.66,1623.39,2100.90,0.00,55196.690506,58545.987000,3816834,3264807,0.000000,0.000030,64964976,31852395,0,0,86314,0,1,1 +1773686112.357551,0.70,4,3992.50,53.66,1623.08,2100.89,0.00,3518985011790.883301,3518985008431.917969,11,0,0.000000,0.000020,64964976,31852397,0,0,86316,0,1,1 +1773686117.355884,0.90,4,3992.50,53.66,1623.08,2100.89,0.00,1.658268,10.678755,253,669,0.000000,0.000674,64964976,31852404,0,0,86319,0,1,1 +1773686122.354589,0.75,4,3992.50,53.66,1623.08,2100.89,0.00,3519349156008.374023,3519349155999.354492,11,0,0.000000,0.000020,64964976,31852406,0,0,86321,0,1,1 +1773686127.357475,0.60,4,3992.50,53.67,1622.84,2101.14,0.00,0.000000,0.000000,11,0,0.000056,0.000086,64964980,31852413,0,0,86324,0,1,1 +1773686132.355152,0.70,4,3992.50,53.67,1622.84,2101.14,0.00,0.053540,0.000000,75,0,0.000117,0.000160,64964990,31852425,0,0,86326,0,1,1 +1773686137.357268,1.00,4,3992.50,53.88,1614.47,2109.50,0.00,55186.771082,58544.860798,3818337,3265523,0.000000,0.000030,64964990,31852428,0,0,86329,0,1,1 +1773686142.355697,0.60,4,3992.50,53.54,1627.60,2096.37,0.00,3519543381353.210449,3519543377992.696777,11,0,0.000000,0.000020,64964990,31852430,0,0,86331,0,1,1 +1773686147.353636,16.21,4,3992.50,54.73,1581.32,2142.64,0.00,55232.949751,58593.824765,3818337,3265576,40.082701,0.031318,64969393,31854641,0,0,86334,0,1,1 +1773686152.357754,0.80,4,3992.50,54.00,1609.64,2114.32,0.00,3515541686744.576172,3515541683387.797363,75,0,0.003082,0.001415,64969449,31854679,0,0,86336,0,1,1 +1773686157.357405,0.70,4,3992.50,53.53,1628.23,2095.73,0.00,0.126767,0.000000,205,0,0.000000,0.000030,64969449,31854682,0,0,86339,0,1,1 +1773686162.353970,0.75,4,3992.50,53.51,1628.80,2095.16,0.00,1.996489,0.000195,258,2,0.000000,0.000020,64969449,31854684,0,0,86341,0,1,1 +1773686167.356669,0.90,4,3992.50,53.71,1621.83,2102.73,0.00,55178.216002,58538.247501,3818337,3265723,0.000000,0.000030,64969449,31854687,0,0,86344,0,1,1 +1773686172.356651,0.70,4,3992.50,53.69,1622.07,2102.21,0.00,3518449932683.353027,3518449929323.490234,205,0,0.000000,0.000020,64969449,31854689,0,0,86346,0,1,1 +1773686177.357842,0.65,4,3992.50,53.69,1622.07,2102.21,0.00,3517599498894.090820,0.000000,75,0,0.001229,0.001254,64969458,31854706,0,0,86349,0,1,1 +1773686182.354840,0.65,4,3992.50,53.69,1622.07,2102.21,0.00,2.123150,0.000195,258,2,0.000213,0.001205,64969466,31854724,0,0,86351,0,1,1 +1773686187.358118,0.65,4,3992.50,53.69,1622.07,2102.21,0.00,3516131704530.490723,10.668005,253,669,0.000000,0.000030,64969466,31854727,0,0,86354,0,1,1 +1773686192.354378,0.65,4,3992.50,53.69,1622.07,2102.21,0.00,3521071381536.068359,3521071381527.044434,11,0,0.000087,0.000101,64969472,31854735,0,0,86356,0,1,1 +1773686197.353593,1.00,4,3992.50,53.89,1614.31,2110.03,0.00,0.000000,0.000000,11,0,0.000305,0.000686,64969487,31854757,0,0,86359,0,1,1 +1773686202.354382,0.75,4,3992.50,53.86,1615.46,2108.80,0.00,1.657453,10.673512,253,669,0.000000,0.000020,64969487,31854759,0,0,86361,0,1,1 +1773686207.356360,0.60,4,3992.50,53.86,1615.62,2108.64,0.00,3517045825458.668457,3517045825449.654785,11,0,0.000000,0.000030,64969487,31854762,0,0,86364,0,1,1 +1773686212.358143,17.09,4,3992.50,55.42,1554.39,2169.87,0.00,1.657124,10.671390,253,669,40.047581,0.021826,64973809,31856272,0,0,86366,0,1,1 +1773686217.353679,0.95,4,3992.50,54.70,1582.57,2141.68,0.00,3521581006651.228516,3521581006642.149902,75,0,0.003087,0.001427,64973865,31856311,0,0,86369,0,1,1 +1773686222.357808,0.60,4,3992.50,54.03,1608.88,2115.38,0.00,0.000000,0.000000,75,0,0.000031,0.000045,64973867,31856315,0,0,86371,0,1,1 +1773686227.354651,0.95,4,3992.50,54.03,1608.96,2115.32,0.00,0.126838,0.000000,205,0,0.000031,0.000055,64973869,31856320,0,0,86374,0,1,1 +1773686232.358143,0.60,4,3992.50,53.97,1610.72,2113.19,0.00,55161.751173,58518.632806,3816834,3265353,0.000008,0.000028,64973870,31856323,0,0,86376,0,1,1 +1773686237.357724,0.80,4,3992.50,53.98,1610.50,2113.41,0.00,3518731829881.495117,3518731826531.186035,253,669,0.001417,0.001192,64973899,31856350,0,0,86379,0,1,1 +1773686242.358190,0.70,4,3992.50,53.99,1610.26,2113.65,0.00,3518109743930.379395,3518109743921.182617,205,0,0.002422,0.002290,64973928,31856371,0,0,86381,0,1,1 +1773686247.357588,0.70,4,3992.50,53.99,1610.26,2113.65,0.00,3518860703768.717773,0.000000,11,0,0.000000,0.000674,64973928,31856378,0,0,86384,0,1,1 +1773686252.353560,0.70,4,3992.50,53.99,1610.26,2113.65,0.00,0.000000,0.000000,11,0,0.000000,0.000020,64973928,31856380,0,0,86386,0,1,1 +1773686257.357592,0.65,4,3992.50,53.99,1610.26,2113.65,0.00,55165.698390,58523.047072,3818337,3266069,0.000031,0.000055,64973930,31856385,0,0,86389,0,1,1 +1773686262.357643,0.90,4,3992.50,53.67,1622.47,2101.44,0.00,3518401182244.667969,3518401178893.664062,253,669,0.000076,0.000113,64973936,31856393,0,0,86391,0,1,1 +1773686267.358367,0.70,4,3992.50,53.69,1621.77,2102.14,0.00,3517927727109.220215,3517927727100.204102,11,0,0.000000,0.000030,64973936,31856396,0,0,86394,0,1,1 +1773686272.354638,0.65,4,3992.50,53.70,1621.53,2102.38,0.00,1.658952,10.683162,253,669,0.000000,0.000020,64973936,31856398,0,0,86396,0,1,1 +1773686277.357486,16.62,4,3992.50,58.91,1417.51,2306.39,0.00,55177.092247,58526.302282,3818337,3266149,38.038068,0.019377,64978151,31857743,0,0,86399,0,1,1 +1773686282.358290,0.95,4,3992.50,54.68,1583.14,2140.77,0.00,3517871627665.950684,3517871624306.301758,75,0,2.006519,0.002539,64978443,31857840,0,0,86401,0,1,1 +1773686287.354166,1.05,4,3992.50,54.34,1596.77,2127.61,0.00,0.126862,0.000000,205,0,0.000033,0.000069,64978446,31857846,0,0,86404,0,1,1 +1773686292.358132,0.65,4,3992.50,53.81,1617.33,2106.61,0.00,1.993536,0.000195,258,2,0.000000,0.000020,64978446,31857848,0,0,86406,0,1,1 +1773686297.357666,0.70,4,3992.50,53.80,1617.67,2106.27,0.00,3518765285184.907227,3518765285187.083008,11,0,0.000000,0.000030,64978446,31857851,0,0,86409,0,1,1 +1773686302.353582,0.55,4,3992.50,53.42,1632.46,2091.48,0.00,1.659070,10.683921,253,669,0.000000,0.000020,64978446,31857853,0,0,86411,0,1,1 +1773686307.353709,0.60,4,3992.50,53.44,1631.48,2092.47,0.00,0.000000,0.000000,253,669,0.000000,0.000030,64978446,31857856,0,0,86414,0,1,1 +1773686312.357496,0.65,4,3992.50,53.47,1630.52,2093.43,0.00,0.000000,0.000000,253,669,0.000000,0.000663,64978446,31857862,0,0,86416,0,1,1 +1773686317.358014,0.95,4,3992.50,53.91,1613.30,2110.65,0.00,3518072519151.729492,3518072519142.660156,75,0,0.000000,0.000030,64978446,31857865,0,0,86419,0,1,1 +1773686322.354666,0.65,4,3992.50,53.82,1616.94,2106.98,0.00,55247.118806,58609.838620,3818337,3266368,0.000031,0.000045,64978448,31857869,0,0,86421,0,1,1 +1773686327.357700,0.55,4,3992.50,53.81,1617.00,2106.92,0.00,3516303877513.961914,3516303874155.404785,205,0,0.000134,0.000193,64978459,31857883,0,0,86424,0,1,1 +1773686332.353572,0.70,4,3992.50,53.81,1617.02,2106.91,0.00,1.478662,10.684016,253,669,0.000000,0.000020,64978459,31857885,0,0,86426,0,1,1 +1773686337.353718,0.60,4,3992.50,53.81,1617.02,2106.91,0.00,3518334739493.255371,3518334739484.238281,11,0,0.000000,0.000030,64978459,31857888,0,0,86429,0,1,1 +1773686342.357562,15.86,4,3992.50,58.95,1415.88,2308.04,0.00,2.173719,0.000195,258,2,31.025069,0.017177,64981863,31859058,0,0,86431,0,1,1 +1773686347.355631,1.45,4,3992.50,54.29,1595.89,2125.39,0.00,3519796350787.522949,3519796350789.645996,75,0,9.020188,0.003828,64982888,31859259,0,0,86434,0,1,1 +1773686352.358222,0.55,4,3992.50,54.30,1595.42,2125.87,0.00,3516615260363.274902,0.000000,11,0,0.000000,0.000020,64982888,31859261,0,0,86436,0,1,1 +1773686357.357386,0.60,4,3992.50,54.26,1597.08,2124.20,0.00,55219.414024,58580.631905,3818337,3266599,0.000000,0.000030,64982888,31859264,0,0,86439,0,1,1 +1773686362.353568,0.60,4,3992.50,54.24,1597.81,2123.47,0.00,3521125693703.491699,3521125690340.267578,11,0,0.000000,0.000020,64982888,31859266,0,0,86441,0,1,1 +1773686367.357451,0.70,4,3992.50,54.25,1597.35,2123.94,0.00,0.053474,0.000000,75,0,0.000000,0.000030,64982888,31859269,0,0,86444,0,1,1 +1773686372.357663,0.65,4,3992.50,54.25,1597.35,2123.94,0.00,1.604131,10.674744,253,669,0.000000,0.000020,64982888,31859271,0,0,86446,0,1,1 +1773686377.353477,0.65,4,3992.50,54.25,1597.35,2123.93,0.00,3521385095566.281738,3521385095557.203613,75,0,0.000000,0.000674,64982888,31859278,0,0,86449,0,1,1 +1773686382.357465,0.95,4,3992.50,53.92,1610.04,2111.23,0.00,55166.133317,58524.219362,3818337,3266633,0.000000,0.000020,64982888,31859280,0,0,86451,0,1,1 +1773686387.357781,0.55,4,3992.50,53.97,1608.34,2112.93,0.00,3518214065832.207031,3518214062469.534180,258,2,0.000031,0.000055,64982890,31859285,0,0,86454,0,1,1 +1773686392.357974,0.60,4,3992.50,53.93,1609.85,2111.42,0.00,3518302092711.296387,3518302092713.291992,205,0,0.000134,0.000183,64982901,31859298,0,0,86456,0,1,1 +1773686397.353454,0.65,4,3992.50,53.99,1607.64,2113.63,0.00,1.996922,0.000195,258,2,0.000008,0.000038,64982902,31859302,0,0,86459,0,1,1 +1773686402.357020,0.65,4,3992.50,53.98,1607.65,2113.62,0.00,55158.938756,58518.515872,3816834,3265991,0.000000,0.000020,64982902,31859304,0,0,86461,0,1,1 +1773686407.354117,14.72,4,3992.50,58.91,1413.92,2306.37,0.00,3520480987226.379395,3520480983864.628906,11,0,28.062884,0.019456,64986057,31860565,0,0,86464,0,1,1 +1773686412.353718,0.95,4,3992.50,53.90,1607.69,2110.35,0.00,0.000000,0.000000,11,0,12.020163,0.003770,64987316,31860790,0,0,86466,0,1,1 +1773686417.358311,0.90,4,3992.50,53.90,1607.69,2110.34,0.00,1.656194,10.665398,253,669,0.000000,0.000030,64987316,31860793,0,0,86469,0,1,1 +1773686422.358186,0.60,4,3992.50,53.90,1607.69,2110.34,0.00,0.000000,0.000000,253,669,0.000000,0.000020,64987316,31860795,0,0,86471,0,1,1 +1773686427.357597,0.70,4,3992.50,53.90,1607.69,2110.34,0.00,55215.032548,58567.412333,3818337,3266933,0.000000,0.000030,64987316,31860798,0,0,86474,0,1,1 +1773686432.358490,0.65,4,3992.50,53.90,1607.70,2110.34,0.00,3517808400621.862305,3517808400620.917480,3816834,3266266,0.000000,0.000020,64987316,31860800,0,0,86476,0,1,1 +1773686437.357467,0.85,4,3992.50,54.00,1609.36,2114.27,0.00,3519157392176.826660,3519157388816.027832,75,0,0.000000,0.000030,64987316,31860803,0,0,86479,0,1,1 +1773686442.353559,0.65,4,3992.50,53.81,1616.82,2106.81,0.00,0.000000,0.000000,75,0,0.000000,0.000664,64987316,31860809,0,0,86481,0,1,1 +1773686447.353446,0.55,4,3992.50,53.82,1616.36,2107.27,0.00,3518516141163.147949,0.000000,11,0,0.000000,0.000030,64987316,31860812,0,0,86484,0,1,1 +1773686452.357882,0.60,4,3992.50,53.82,1616.36,2107.27,0.00,1.656246,10.665734,253,669,0.000087,0.000101,64987322,31860820,0,0,86486,0,1,1 +1773686457.353438,0.70,4,3992.50,53.84,1615.62,2108.01,0.00,3521566706184.427246,3521566706175.348633,75,0,0.000109,0.000162,64987331,31860832,0,0,86489,0,1,1 +1773686462.357057,0.65,4,3992.50,53.84,1615.62,2108.00,0.00,3515892546493.696289,0.000000,11,0,0.000000,0.000020,64987331,31860834,0,0,86491,0,1,1 +1773686467.357929,1.05,4,3992.50,54.44,1592.38,2131.35,0.00,1.657426,10.673335,253,669,0.000000,0.000030,64987331,31860837,0,0,86494,0,1,1 +1773686472.357804,16.83,4,3992.50,58.77,1422.64,2301.02,0.00,55209.895302,58562.150196,3818337,3267074,40.067582,0.026887,64991843,31862749,0,0,86496,0,1,1 +1773686477.356929,1.05,4,3992.50,54.17,1602.61,2121.05,0.00,3519053569395.364746,3519053566033.532715,75,0,0.003685,0.002381,64991928,31862822,0,0,86499,0,1,1 +1773686482.356214,0.65,4,3992.50,53.61,1624.58,2099.08,0.00,1.604429,10.676722,253,669,0.001127,0.001222,64991937,31862838,0,0,86501,0,1,1 +1773686487.357987,0.65,4,3992.50,53.68,1622.13,2101.53,0.00,55188.948620,58540.040271,3818338,3267203,0.000000,0.000030,64991937,31862841,0,0,86504,0,1,1 +1773686492.357546,0.65,4,3992.50,53.68,1622.13,2101.53,0.00,3518747675415.784668,3518747672063.208496,253,669,0.000000,0.000020,64991937,31862843,0,0,86506,0,1,1 +1773686497.353560,1.00,4,3992.50,53.89,1614.01,2109.84,0.00,3521244236332.604492,3521244236323.399414,205,0,0.000205,0.000562,64991944,31862857,0,0,86509,0,1,1 +1773686502.358376,0.55,4,3992.50,53.69,1621.69,2102.20,0.00,0.000000,0.000000,205,0,0.000000,0.000020,64991944,31862859,0,0,86511,0,1,1 +1773686507.353453,0.75,4,3992.50,53.70,1621.45,2102.44,0.00,3521904929304.986816,0.000000,11,0,0.000000,0.000674,64991944,31862866,0,0,86514,0,1,1 +1773686512.355888,0.55,4,3992.50,53.70,1621.45,2102.44,0.00,0.000000,0.000000,11,0,0.000000,0.000020,64991944,31862868,0,0,86516,0,1,1 +1773686517.358312,0.70,4,3992.50,53.70,1621.45,2102.44,0.00,0.000000,0.000000,11,0,0.000031,0.000055,64991946,31862873,0,0,86519,0,1,1 +1773686522.357652,0.65,4,3992.50,53.51,1628.85,2095.04,0.00,1.657934,10.676605,253,669,0.000173,0.000217,64991960,31862889,0,0,86521,0,1,1 +1773686527.355892,1.00,4,3992.50,53.72,1616.07,2103.36,0.00,55227.964835,58581.597500,3818338,3267305,0.000031,0.000055,64991962,31862894,0,0,86524,0,1,1 +1773686532.355172,0.65,4,3992.50,53.53,1623.50,2095.97,0.00,3518943993111.585449,3518943993110.651367,3816835,3266650,0.000000,0.000020,64991962,31862896,0,0,86526,0,1,1 +1773686537.358173,16.70,4,3992.50,59.06,1407.13,2312.34,0.00,3516326070361.918945,3516326067003.399902,11,0,30.631164,0.018558,64995335,31864108,0,0,86529,0,1,1 +1773686542.358409,1.10,4,3992.50,54.42,1588.72,2130.75,0.00,1.657637,10.674692,253,669,9.417827,0.004315,64996422,31864328,0,0,86531,0,1,1 +1773686547.358269,0.75,4,3992.50,54.13,1600.14,2119.33,0.00,55200.351615,58552.068910,3816835,3266797,0.000000,0.000030,64996422,31864331,0,0,86534,0,1,1 +1773686552.353572,0.60,4,3992.50,54.13,1600.06,2119.40,0.00,3521745795823.244141,3521745792459.263184,205,0,0.000000,0.000020,64996422,31864333,0,0,86536,0,1,1 +1773686557.356367,1.00,4,3992.50,54.20,1606.99,2121.90,0.00,3516471419074.325684,0.000000,11,0,0.000000,0.000030,64996422,31864336,0,0,86539,0,1,1 +1773686562.358005,0.65,4,3992.50,54.01,1614.40,2114.51,0.00,2.174678,0.000195,258,2,0.000000,0.000020,64996422,31864338,0,0,86541,0,1,1 +1773686567.357717,0.60,4,3992.50,53.90,1618.42,2110.49,0.00,3518639784010.669922,3518639784012.845215,11,0,0.000000,0.000030,64996422,31864341,0,0,86544,0,1,1 +1773686572.357909,0.75,4,3992.50,53.94,1617.20,2111.71,0.00,55208.064802,58569.643523,3818338,3267541,0.000000,0.000664,64996422,31864347,0,0,86546,0,1,1 +1773686577.357708,0.80,4,3992.50,53.94,1616.98,2111.93,0.00,3518578698354.835449,3518578695002.010742,253,669,0.000000,0.000030,64996422,31864350,0,0,86549,0,1,1 +1773686582.357396,0.55,4,3992.50,53.94,1616.98,2111.92,0.00,3518656896928.813477,3518656896919.615234,205,0,0.000087,0.000101,64996428,31864358,0,0,86551,0,1,1 +1773686587.357546,1.00,4,3992.50,54.16,1607.75,2120.50,0.00,3518331141050.443848,0.000000,11,0,0.000159,0.000224,64996441,31864374,0,0,86554,0,1,1 +1773686592.356732,1.10,4,3992.50,54.25,1604.14,2124.12,0.00,1.657985,10.676934,253,669,0.000000,0.000020,64996441,31864376,0,0,86556,0,1,1 +1773686597.353372,0.60,4,3992.50,54.26,1603.94,2124.32,0.00,55236.643579,58590.038819,3816946,3266978,0.000000,0.000030,64996441,31864379,0,0,86559,0,1,1 +1773686602.357446,16.16,4,3992.50,58.82,1425.31,2302.95,0.00,3515572448691.560547,3515572445334.137207,11,0,24.622994,0.018551,64999368,31865588,0,0,86561,0,1,1 +1773686607.357679,1.05,4,3992.50,54.66,1588.11,2140.13,0.00,2.175289,0.000195,258,2,15.424205,0.005253,65001010,31865902,0,0,86564,0,1,1 +1773686612.356580,0.60,4,3992.50,54.08,1610.71,2117.53,0.00,3519210429385.148438,3519210429387.324707,11,0,0.000000,0.000020,65001010,31865904,0,0,86566,0,1,1 +1773686617.353566,0.90,4,3992.50,53.92,1601.48,2111.10,0.00,0.180382,0.000000,205,0,0.000000,0.000030,65001010,31865907,0,0,86569,0,1,1 +1773686622.358131,0.75,4,3992.50,53.73,1608.89,2103.71,0.00,55150.657543,58508.178810,3816946,3267191,0.000000,0.000020,65001010,31865909,0,0,86571,0,1,1 +1773686627.358191,0.60,4,3992.50,53.74,1608.67,2103.93,0.00,3518394970941.031250,3518394967580.665527,11,0,0.000000,0.000030,65001010,31865912,0,0,86574,0,1,1 +1773686632.353449,0.65,4,3992.50,53.74,1608.67,2103.93,0.00,0.000000,0.000000,11,0,0.000000,0.000020,65001010,31865914,0,0,86576,0,1,1 +1773686637.353499,0.65,4,3992.50,53.74,1608.67,2103.93,0.00,0.000000,0.000000,11,0,0.000000,0.000674,65001010,31865921,0,0,86579,0,1,1 +1773686642.353467,0.65,4,3992.50,53.54,1616.55,2096.05,0.00,55211.262578,58572.698650,3818449,3267910,0.000000,0.000020,65001010,31865923,0,0,86581,0,1,1 +1773686647.353451,0.75,4,3992.50,53.58,1614.83,2097.77,0.00,3518447836697.009277,3518447836696.077148,3816946,3267245,0.000031,0.000055,65001012,31865928,0,0,86584,0,1,1 +1773686652.357576,0.95,4,3992.50,53.62,1613.37,2099.23,0.00,9.718156,10.686888,3818449,3267930,0.000142,0.000191,65001024,31865942,0,0,86586,0,1,1 +1773686657.353461,0.60,4,3992.50,53.64,1612.40,2100.20,0.00,0.000000,0.012510,3818449,3267945,0.000000,0.000030,65001024,31865945,0,0,86589,0,1,1 +1773686662.353472,0.65,4,3992.50,53.59,1614.26,2098.34,0.00,3518428731961.331543,3518428728599.821777,75,0,0.000000,0.000020,65001024,31865947,0,0,86591,0,1,1 +1773686667.357682,15.37,4,3992.50,58.71,1413.81,2298.79,0.00,1.602850,10.666217,253,669,12.816529,0.016602,65002791,31867070,0,0,86594,0,1,1 +1773686672.358216,3.26,4,3992.50,54.83,1565.77,2146.82,0.00,0.517620,3518061311761.098145,258,2,27.236697,0.005694,65005528,31867419,0,0,86596,0,1,1 +1773686677.354622,1.05,4,3992.50,54.50,1580.45,2133.70,0.00,55238.711183,58604.001325,3816946,3267452,0.000000,0.000030,65005528,31867422,0,0,86599,0,1,1 +1773686682.357542,0.70,4,3992.50,53.75,1608.95,2104.42,0.00,3516383769818.952148,3516383766460.217773,11,0,0.000000,0.000020,65005528,31867424,0,0,86601,0,1,1 +1773686687.358100,0.65,4,3992.50,53.55,1616.83,2096.54,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65005528,31867427,0,0,86604,0,1,1 +1773686692.355188,0.65,4,3992.50,53.55,1616.58,2096.79,0.00,1.658681,10.681415,253,669,0.000000,0.000020,65005528,31867429,0,0,86606,0,1,1 +1773686697.356496,0.65,4,3992.50,53.56,1616.36,2097.00,0.00,3517517274699.253906,3517517274690.185547,75,0,0.000000,0.000030,65005528,31867432,0,0,86609,0,1,1 +1773686702.353461,0.90,4,3992.50,53.36,1624.04,2089.33,0.00,0.126835,0.000000,205,0,0.000000,0.000664,65005528,31867438,0,0,86611,0,1,1 +1773686707.357815,0.85,4,3992.50,53.40,1622.57,2090.80,0.00,3515375815028.474121,0.000000,75,0,0.000000,0.000030,65005528,31867441,0,0,86614,0,1,1 +1773686712.358199,1.15,4,3992.50,53.75,1617.74,2104.31,0.00,2.121712,0.000195,258,2,0.000031,0.000045,65005530,31867445,0,0,86616,0,1,1 +1773686717.358288,1.05,4,3992.50,53.79,1616.02,2106.04,0.00,0.000000,0.000000,258,2,0.000142,0.000201,65005542,31867460,0,0,86619,0,1,1 +1773686722.353445,0.80,4,3992.50,53.81,1615.28,2106.77,0.00,3521848703272.659180,3521848703274.836426,11,0,0.000000,0.000020,65005542,31867462,0,0,86621,0,1,1 +1773686727.353508,0.85,4,3992.50,53.83,1614.55,2107.50,0.00,0.180271,0.000000,205,0,0.000000,0.000030,65005542,31867465,0,0,86624,0,1,1 +1773686732.357761,10.53,4,3992.50,58.84,1418.35,2303.68,0.00,55154.083995,58512.320072,3816946,3267644,6.213193,0.012362,65006654,31868231,0,0,86626,0,1,1 +1773686737.353466,7.79,4,3992.50,54.83,1558.14,2146.86,0.00,3521462071289.833008,3521462067925.850586,205,0,33.877653,0.009909,65010007,31868886,0,0,86629,0,1,1 +1773686742.353563,0.70,4,3992.50,54.27,1579.45,2124.91,0.00,55199.933436,58561.185127,3816946,3267847,0.000000,0.000020,65010007,31868888,0,0,86631,0,1,1 +1773686747.353566,0.60,4,3992.50,53.88,1594.79,2109.58,0.00,0.000000,0.007812,3816946,3267853,0.000000,0.000030,65010007,31868891,0,0,86634,0,1,1 +1773686752.353451,0.65,4,3992.50,53.79,1598.22,2106.14,0.00,3518517943076.265137,3518517939714.990234,75,0,0.000000,0.000020,65010007,31868893,0,0,86636,0,1,1 +1773686757.353471,0.65,4,3992.50,53.79,1598.35,2106.02,0.00,0.126757,0.000000,205,0,0.000000,0.000030,65010007,31868896,0,0,86639,0,1,1 +1773686762.358329,0.60,4,3992.50,53.80,1598.11,2106.25,0.00,1.476007,10.664833,253,669,0.000000,0.000020,65010007,31868898,0,0,86641,0,1,1 +1773686767.358419,1.10,4,3992.50,53.81,1597.09,2106.65,0.00,0.000000,0.000000,253,669,0.000000,0.000674,65010007,31868905,0,0,86644,0,1,1 +1773686772.353467,0.60,4,3992.50,53.77,1598.39,2105.28,0.00,0.000000,0.000000,253,669,0.000000,0.000020,65010007,31868907,0,0,86646,0,1,1 +1773686777.358335,0.70,4,3992.50,53.78,1598.17,2105.50,0.00,3515014557658.412109,3515014557649.403809,11,0,0.000338,0.000609,65010016,31868923,0,0,86649,0,1,1 +1773686782.358024,0.75,4,3992.50,53.78,1598.17,2105.50,0.00,0.053519,0.000000,75,0,0.000339,0.000715,65010034,31868947,0,0,86651,0,1,1 +1773686787.355750,0.65,4,3992.50,53.78,1598.17,2105.50,0.00,0.000000,0.000000,75,0,0.000000,0.000030,65010034,31868950,0,0,86654,0,1,1 +1773686792.353446,0.65,4,3992.50,53.78,1598.17,2105.50,0.00,0.000000,0.000000,75,0,0.000000,0.000020,65010034,31868952,0,0,86656,0,1,1 +1773686797.360538,5.21,4,3992.50,58.68,1406.07,2297.38,0.00,0.000000,0.000000,75,0,0.204516,0.003627,65010165,31869043,0,0,86659,0,1,1 +1773686802.358217,12.30,4,3992.50,53.71,1600.56,2102.89,0.00,55236.495607,58600.520033,3818449,3268807,39.880462,0.017965,65014529,31870337,0,0,86661,0,1,1 +1773686807.357239,0.60,4,3992.50,53.71,1600.56,2102.89,0.00,3519125513627.691895,3519125510273.644043,253,669,0.000000,0.000030,65014529,31870340,0,0,86664,0,1,1 +1773686812.358165,0.80,4,3992.50,53.72,1600.32,2103.12,0.00,55189.310184,58541.167814,3816946,3268176,0.000000,0.000020,65014529,31870342,0,0,86666,0,1,1 +1773686817.357592,0.70,4,3992.50,53.72,1600.33,2103.12,0.00,0.000000,0.005469,3816946,3268182,0.000000,0.000030,65014529,31870345,0,0,86669,0,1,1 +1773686822.355718,0.60,4,3992.50,53.72,1600.33,2103.12,0.00,3519755737247.425293,3519755733884.664551,11,0,0.000031,0.000045,65014531,31870349,0,0,86671,0,1,1 +1773686827.357738,1.00,4,3992.50,53.71,1601.38,2103.05,0.00,0.053494,0.000000,75,0,0.000031,0.000055,65014533,31870354,0,0,86674,0,1,1 +1773686832.357469,0.70,4,3992.50,53.71,1601.39,2103.05,0.00,3518626988844.690918,0.000000,11,0,0.000000,0.000664,65014533,31870360,0,0,86676,0,1,1 +1773686837.356700,0.85,4,3992.50,53.72,1601.17,2103.27,0.00,0.053524,0.000000,75,0,0.002074,0.002114,65014564,31870389,0,0,86679,0,1,1 +1773686842.357602,0.65,4,3992.50,53.72,1601.17,2103.26,0.00,0.126735,0.000000,205,0,0.001134,0.000479,65014591,31870409,0,0,86681,0,1,1 +1773686847.357579,0.75,4,3992.50,53.72,1601.18,2103.26,0.00,1.995126,0.000195,258,2,0.000076,0.000123,65014597,31870418,0,0,86684,0,1,1 +1773686852.354312,0.65,4,3992.50,53.73,1600.94,2103.49,0.00,3520737334747.714355,3520737334749.891113,11,0,0.000000,0.000020,65014597,31870420,0,0,86686,0,1,1 +1773686857.357725,0.95,4,3992.50,53.79,1598.51,2105.91,0.00,0.053479,0.000000,75,0,0.000000,0.000030,65014597,31870423,0,0,86689,0,1,1 +1773686862.357470,1.15,4,3992.50,53.57,1607.15,2097.27,0.00,2.121984,0.000195,258,2,0.003138,0.002077,65014636,31870456,0,0,86691,0,1,1 +1773686867.353503,18.38,4,3992.50,53.69,1602.31,2102.11,0.00,55252.574056,58620.140596,3818449,3269103,40.095120,0.020101,65019070,31871883,0,0,86694,0,1,1 +1773686872.358378,0.75,4,3992.50,53.69,1602.31,2102.10,0.00,3515009573636.438965,3515009570286.004395,253,669,0.000000,0.000020,65019070,31871885,0,0,86696,0,1,1 +1773686877.353445,0.80,4,3992.50,53.69,1602.31,2102.10,0.00,3521912342479.906738,3521912342470.880859,11,0,0.000000,0.000030,65019070,31871888,0,0,86699,0,1,1 +1773686882.357644,0.60,4,3992.50,53.70,1601.84,2102.57,0.00,0.180122,0.000000,205,0,0.000056,0.000076,65019074,31871894,0,0,86701,0,1,1 +1773686887.353440,1.20,4,3992.50,53.60,1601.18,2098.43,0.00,3521398067989.428223,0.000000,11,0,0.000025,0.000061,65019076,31871899,0,0,86704,0,1,1 +1773686892.355902,0.65,4,3992.50,53.60,1599.70,2098.43,0.00,0.000000,0.000000,11,0,0.000000,0.000020,65019076,31871901,0,0,86706,0,1,1 +1773686897.357792,0.65,4,3992.50,53.60,1599.70,2098.43,0.00,0.000000,0.000000,11,0,0.000000,0.000513,65019076,31871907,0,0,86709,0,1,1 +1773686902.355628,0.65,4,3992.50,53.60,1599.70,2098.42,0.00,0.000000,0.000000,11,0,0.000000,0.000181,65019076,31871910,0,0,86711,0,1,1 +1773686907.357814,0.75,4,3992.50,53.60,1599.70,2098.42,0.00,2.174440,0.000195,258,2,0.000000,0.000030,65019076,31871913,0,0,86714,0,1,1 +1773686912.358101,0.65,4,3992.50,53.60,1599.70,2098.42,0.00,3518235557691.799805,3518235557693.975098,11,0,0.000157,0.000200,65019088,31871927,0,0,86716,0,1,1 +1773686917.358181,0.85,4,3992.50,53.69,1596.04,2102.07,0.00,0.180271,0.000000,205,0,0.000008,0.000038,65019089,31871931,0,0,86719,0,1,1 +1773686922.358238,0.65,4,3992.50,53.69,1596.04,2102.07,0.00,3518397313072.207520,0.000000,11,0,0.000000,0.000020,65019089,31871933,0,0,86721,0,1,1 +1773686927.360537,7.73,4,3992.50,58.59,1404.10,2294.00,0.00,0.053491,0.000000,75,0,6.616733,0.013449,65020268,31872762,0,0,86724,0,1,1 +1773686932.357548,11.95,4,3992.50,54.26,1573.67,2124.43,0.00,0.000000,0.000000,75,0,33.468576,0.010862,65023605,31873491,0,0,86726,0,1,1 +1773686937.357626,0.70,4,3992.50,53.74,1593.88,2104.22,0.00,2.121842,0.000195,258,2,0.000000,0.000030,65023605,31873494,0,0,86729,0,1,1 +1773686942.358218,0.65,4,3992.50,53.57,1600.79,2097.31,0.00,3518021291517.493164,3518021291519.614746,75,0,0.000000,0.000020,65023605,31873496,0,0,86731,0,1,1 +1773686947.358283,0.65,4,3992.50,53.60,1599.34,2098.75,0.00,3518390934301.900391,0.000000,11,0,0.000000,0.000030,65023605,31873499,0,0,86734,0,1,1 +1773686952.353467,0.95,4,3992.50,53.71,1597.11,2102.79,0.00,0.000000,0.000000,11,0,0.000000,0.000020,65023605,31873501,0,0,86736,0,1,1 +1773686957.353625,0.65,4,3992.50,53.71,1596.89,2103.01,0.00,1.657662,10.674857,253,669,0.000000,0.000030,65023605,31873504,0,0,86739,0,1,1 +1773686962.358280,0.75,4,3992.50,53.52,1604.53,2095.37,0.00,3515164178351.222656,3515164178342.213867,11,0,0.000000,0.000502,65023605,31873509,0,0,86741,0,1,1 +1773686967.353545,0.70,4,3992.50,53.52,1604.29,2095.61,0.00,0.180444,0.000000,205,0,0.000000,0.000191,65023605,31873513,0,0,86744,0,1,1 +1773686972.354566,0.65,4,3992.50,53.53,1604.05,2095.85,0.00,3517718830193.130371,0.000000,11,0,0.000031,0.000045,65023607,31873517,0,0,86746,0,1,1 +1773686977.357407,0.95,4,3992.50,53.54,1608.83,2096.02,0.00,0.180171,0.000000,205,0,0.000142,0.000201,65023619,31873532,0,0,86749,0,1,1 +1773686982.358049,0.55,4,3992.50,53.54,1608.62,2096.02,0.00,3517985204775.565918,0.000000,11,0,0.000000,0.000020,65023619,31873534,0,0,86751,0,1,1 +1773686987.353471,0.70,4,3992.50,53.54,1608.62,2096.02,0.00,2.177385,0.000195,258,2,0.000000,0.000030,65023619,31873537,0,0,86754,0,1,1 +1773686992.356534,1.20,4,3992.50,53.38,1614.82,2089.80,0.00,3516282951801.293945,3516282951803.468262,11,0,0.003815,0.002698,65023682,31873585,0,0,86756,0,1,1 +1773686997.357677,16.43,4,3992.50,54.58,1567.73,2136.91,0.00,0.000000,0.000000,11,0,40.055282,0.023256,65028138,31875295,0,0,86759,0,1,1 +1773687002.354653,0.65,4,3992.50,53.98,1591.14,2113.50,0.00,0.000000,0.000000,11,0,0.000000,0.000020,65028138,31875297,0,0,86761,0,1,1 +1773687007.354603,1.05,4,3992.50,54.24,1581.30,2123.50,0.00,1.657732,10.675303,253,669,0.000000,0.000030,65028138,31875300,0,0,86764,0,1,1 +1773687012.358308,0.65,4,3992.50,54.11,1586.24,2118.39,0.00,55158.674709,58509.728703,3816948,3269121,0.000000,0.000020,65028138,31875302,0,0,86766,0,1,1 +1773687017.358302,0.90,4,3992.50,54.08,1587.44,2117.20,0.00,3518441482070.880371,3518441478706.145996,258,2,0.000000,0.000030,65028138,31875305,0,0,86769,0,1,1 +1773687022.358114,0.80,4,3992.50,53.92,1593.37,2111.23,0.00,0.000000,0.000000,258,2,0.000000,0.000020,65028138,31875307,0,0,86771,0,1,1 +1773687027.357777,0.60,4,3992.50,53.95,1592.45,2112.18,0.00,3518675000937.641602,3518675000939.763672,75,0,0.000000,0.000513,65028138,31875313,0,0,86774,0,1,1 +1773687032.353561,0.65,4,3992.50,53.95,1592.22,2112.41,0.00,55257.464804,58623.992469,3818451,3269834,0.000000,0.000181,65028138,31875316,0,0,86776,0,1,1 +1773687037.358341,0.95,4,3992.50,53.89,1594.59,2109.75,0.00,3515076899742.262695,3515076896390.848145,253,669,0.000031,0.000055,65028140,31875321,0,0,86779,0,1,1 +1773687042.353503,0.70,4,3992.50,53.91,1593.51,2110.70,0.00,0.000000,0.000000,253,669,0.000134,0.000183,65028151,31875334,0,0,86781,0,1,1 +1773687047.358104,0.70,4,3992.50,53.91,1593.51,2110.71,0.00,0.000000,0.000000,253,669,0.000008,0.000038,65028152,31875338,0,0,86784,0,1,1 +1773687052.354705,0.70,4,3992.50,53.91,1593.51,2110.70,0.00,3520831147320.374512,3520831147311.170898,205,0,0.000000,0.000020,65028152,31875340,0,0,86786,0,1,1 +1773687057.357548,0.90,4,3992.50,53.71,1601.39,2102.83,0.00,3516437730741.380859,0.000000,11,0,0.002245,0.000734,65028177,31875359,0,0,86789,0,1,1 +1773687062.354559,17.22,4,3992.50,53.61,1605.38,2098.83,0.00,0.053548,0.000000,75,0,40.089302,0.021174,65032658,31876731,0,0,86791,0,1,1 +1773687067.353555,0.95,4,3992.50,53.78,1594.39,2105.42,0.00,3519143812842.525391,0.000000,11,0,0.000000,0.000030,65032658,31876734,0,0,86794,0,1,1 +1773687072.356977,0.80,4,3992.50,53.79,1593.85,2105.91,0.00,0.000000,0.000000,11,0,0.000000,0.000020,65032658,31876736,0,0,86796,0,1,1 +1773687077.357551,0.65,4,3992.50,53.81,1593.11,2106.64,0.00,2.175141,0.000195,258,2,0.001229,0.001254,65032667,31876753,0,0,86799,0,1,1 +1773687082.357702,0.70,4,3992.50,53.81,1593.12,2106.64,0.00,55207.090692,58573.097877,3818451,3270107,0.000205,0.000552,65032674,31876766,0,0,86801,0,1,1 +1773687087.353461,0.70,4,3992.50,53.81,1593.12,2106.64,0.00,3521424138312.136719,3521424134945.166992,205,0,0.000000,0.000030,65032674,31876769,0,0,86804,0,1,1 +1773687092.353473,0.60,4,3992.50,53.81,1593.12,2106.64,0.00,55210.608389,58574.718960,3818451,3270114,0.000000,0.000342,65032674,31876773,0,0,86806,0,1,1 +1773687097.358364,0.95,4,3992.50,54.00,1585.93,2114.27,0.00,3514999282615.086426,3514999279252.260742,258,2,0.000204,0.000883,65032681,31876789,0,0,86809,0,1,1 +1773687102.357041,0.75,4,3992.50,53.82,1592.93,2107.07,0.00,3519368410534.674316,3519368410536.796387,75,0,0.000008,0.000028,65032682,31876792,0,0,86811,0,1,1 +1773687107.358031,0.65,4,3992.50,53.82,1592.93,2107.07,0.00,3517740452845.843750,0.000000,11,0,0.000157,0.000210,65032694,31876807,0,0,86814,0,1,1 +1773687112.357807,0.65,4,3992.50,53.82,1592.93,2107.06,0.00,1.657789,10.675675,253,669,0.000000,0.000020,65032694,31876809,0,0,86816,0,1,1 +1773687117.354312,0.70,4,3992.50,53.82,1592.93,2107.06,0.00,0.000000,0.000000,253,669,0.000000,0.000030,65032694,31876812,0,0,86819,0,1,1 +1773687122.358315,0.90,4,3992.50,53.74,1595.79,2104.21,0.00,3515622714539.333496,3515622714530.323242,11,0,0.002276,0.000737,65032721,31876831,0,0,86821,0,1,1 +1773687127.356364,18.25,4,3992.50,55.39,1544.32,2168.48,0.00,1.658362,10.679360,253,669,40.079572,0.020425,65037172,31878194,0,0,86824,0,1,1 +1773687132.353557,0.75,4,3992.50,54.55,1576.97,2135.84,0.00,3520413980474.533691,3520413980465.511230,11,0,0.000000,0.000020,65037172,31878196,0,0,86826,0,1,1 +1773687137.356072,0.80,4,3992.50,54.11,1594.18,2118.63,0.00,1.656881,10.669827,253,669,0.001416,0.001191,65037201,31878223,0,0,86829,0,1,1 +1773687142.357505,0.75,4,3992.50,53.98,1599.36,2113.45,0.00,55183.739187,58537.025876,3816948,3269695,0.001773,0.001376,65037229,31878243,0,0,86831,0,1,1 +1773687147.357964,0.75,4,3992.50,53.97,1599.67,2113.13,0.00,3518114002245.676758,3518113998882.721191,11,0,0.000000,0.000030,65037229,31878246,0,0,86834,0,1,1 +1773687152.358427,0.75,4,3992.50,54.02,1597.95,2114.85,0.00,1.657561,10.674207,253,669,0.000000,0.000020,65037229,31878248,0,0,86836,0,1,1 +1773687157.355589,0.90,4,3992.50,54.08,1598.44,2117.20,0.00,55230.907328,58587.150906,3816948,3269759,0.000000,0.000030,65037229,31878251,0,0,86839,0,1,1 +1773687162.354646,0.60,4,3992.50,54.09,1597.59,2117.93,0.00,3519100326731.106445,3519100323366.937012,205,0,0.000000,0.000664,65037229,31878257,0,0,86841,0,1,1 +1773687167.358184,0.65,4,3992.50,54.10,1597.59,2117.94,0.00,55171.720814,58533.860030,3818451,3270463,0.000000,0.000030,65037229,31878260,0,0,86844,0,1,1 +1773687172.356575,0.65,4,3992.50,53.91,1604.75,2110.77,0.00,3519569129054.102539,3519569129053.154785,3816948,3269794,0.000107,0.000138,65037237,31878270,0,0,86846,0,1,1 +1773687177.353571,0.70,4,3992.50,53.93,1604.02,2111.51,0.00,3520552568524.706055,3520552565168.316406,253,669,0.000000,0.000030,65037237,31878273,0,0,86849,0,1,1 +1773687182.357841,0.60,4,3992.50,53.93,1604.02,2111.51,0.00,55152.450238,58503.969888,3816948,3269802,0.000081,0.000107,65037243,31878281,0,0,86851,0,1,1 +1773687187.355565,1.25,4,3992.50,54.00,1601.34,2114.09,0.00,3520039462269.068848,3520039458904.138184,11,0,0.000058,0.000100,65037248,31878289,0,0,86854,0,1,1 +1773687192.353559,15.93,4,3992.50,54.07,1598.31,2117.07,0.00,0.053537,0.000000,75,0,40.082427,0.022680,65041720,31879801,0,0,86856,0,1,1 +1773687197.357996,0.80,4,3992.50,54.07,1598.34,2117.05,0.00,0.000000,0.000000,75,0,0.000606,0.000270,65041731,31879810,0,0,86859,0,1,1 +1773687202.358218,0.70,4,3992.50,54.07,1598.34,2117.05,0.00,55198.987040,58562.236675,3817169,3270050,0.000000,0.000020,65041731,31879812,0,0,86861,0,1,1 +1773687207.353454,0.55,4,3992.50,53.93,1604.05,2111.33,0.00,3521792511209.350098,3521792507842.797363,11,0,0.000000,0.000030,65041731,31879815,0,0,86864,0,1,1 +1773687212.357852,0.65,4,3992.50,53.93,1603.81,2111.58,0.00,55152.987028,58513.386544,3817169,3270058,0.000000,0.000020,65041731,31879817,0,0,86866,0,1,1 +1773687217.355323,1.05,4,3992.50,54.08,1598.21,2117.17,0.00,0.000000,0.073475,3817169,3270087,0.000000,0.000030,65041731,31879820,0,0,86869,0,1,1 +1773687222.353556,0.75,4,3992.50,53.89,1605.54,2109.85,0.00,3519680876563.541016,3519680873198.870117,75,0,0.000000,0.000020,65041731,31879822,0,0,86871,0,1,1 +1773687227.354065,0.60,4,3992.50,53.89,1605.54,2109.84,0.00,3518079162005.360352,0.000000,11,0,0.000000,0.000674,65041731,31879829,0,0,86874,0,1,1 +1773687232.353468,0.75,4,3992.50,53.89,1605.54,2109.85,0.00,2.175650,0.000195,258,2,0.000000,0.000020,65041731,31879831,0,0,86876,0,1,1 +1773687237.353613,0.60,4,3992.50,53.89,1605.32,2110.07,0.00,3518335603570.849609,3518335603572.971191,75,0,0.000132,0.000179,65041741,31879844,0,0,86879,0,1,1 +1773687242.358130,0.60,4,3992.50,53.89,1605.32,2110.06,0.00,3515261263837.219238,0.000000,11,0,0.000041,0.000067,65041745,31879850,0,0,86881,0,1,1 +1773687247.358053,1.00,4,3992.50,54.28,1590.07,2125.32,0.00,1.657740,10.675360,253,669,0.000000,0.000030,65041745,31879853,0,0,86884,0,1,1 +1773687252.353505,0.80,4,3992.50,54.22,1592.46,2122.92,0.00,0.518147,3521640214602.149902,258,2,0.000000,0.000020,65041745,31879855,0,0,86886,0,1,1 +1773687257.353573,16.56,4,3992.50,55.46,1543.84,2171.54,0.00,55198.569991,58564.348271,3817169,3270314,40.066217,0.022767,65046237,31881306,0,0,86889,0,1,1 +1773687262.354132,0.70,4,3992.50,54.58,1578.62,2136.75,0.00,3518043296069.760254,3518043292706.488281,11,0,0.000619,0.000273,65046249,31881315,0,0,86891,0,1,1 +1773687267.358316,0.65,4,3992.50,54.10,1597.43,2117.96,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65046249,31881318,0,0,86894,0,1,1 +1773687272.357813,0.70,4,3992.50,53.97,1602.37,2113.02,0.00,0.180292,0.000000,205,0,0.000000,0.000020,65046249,31881320,0,0,86896,0,1,1 +1773687277.357969,0.60,4,3992.50,53.96,1602.62,2112.77,0.00,55199.592389,58563.422552,3817169,3270379,0.000000,0.000030,65046249,31881323,0,0,86899,0,1,1 +1773687282.354577,1.00,4,3992.50,54.06,1589.12,2116.47,0.00,3520825385874.208984,3520825382508.117676,75,0,0.000000,0.000020,65046249,31881325,0,0,86901,0,1,1 +1773687287.353467,0.65,4,3992.50,54.03,1590.30,2115.33,0.00,55223.425614,58588.995878,3818672,3271110,0.000000,0.000030,65046249,31881328,0,0,86904,0,1,1 +1773687292.355053,0.60,4,3992.50,54.03,1590.07,2115.57,0.00,3517321273649.599609,3517321270285.717285,205,0,0.000000,0.000664,65046249,31881334,0,0,86906,0,1,1 +1773687297.356080,0.65,4,3992.50,53.87,1596.53,2109.11,0.00,3517714927733.649902,0.000000,75,0,0.000000,0.000030,65046249,31881337,0,0,86909,0,1,1 +1773687302.358191,0.70,4,3992.50,53.79,1599.70,2105.93,0.00,3516952272853.816895,0.000000,11,0,0.000132,0.000169,65046259,31881349,0,0,86911,0,1,1 +1773687307.358432,0.95,4,3992.50,53.95,1599.74,2112.39,0.00,2.175286,0.000195,258,2,0.000041,0.000077,65046263,31881356,0,0,86914,0,1,1 +1773687312.357839,0.60,4,3992.50,53.95,1600.04,2112.23,0.00,55205.851898,58572.362319,3817169,3270525,0.000000,0.000020,65046263,31881358,0,0,86916,0,1,1 +1773687317.357051,0.95,4,3992.50,53.95,1600.04,2112.23,0.00,3518992411977.580078,3518992408610.937012,258,2,0.000000,0.000030,65046263,31881361,0,0,86919,0,1,1 +1773687322.353498,17.44,4,3992.50,55.26,1548.58,2163.68,0.00,3520938902164.664062,3520938902166.841309,11,0,40.094128,0.024420,65050696,31883000,0,0,86921,0,1,1 +1773687327.357985,0.60,4,3992.50,54.57,1575.69,2136.57,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65050696,31883003,0,0,86924,0,1,1 +1773687332.357663,0.65,4,3992.50,54.24,1588.83,2123.43,0.00,55205.049411,58569.245377,3817169,3270599,0.000000,0.000020,65050696,31883005,0,0,86926,0,1,1 +1773687337.355803,0.90,4,3992.50,53.94,1599.11,2111.96,0.00,3519746358537.232422,3519746355172.001953,11,0,0.000000,0.000030,65050696,31883008,0,0,86929,0,1,1 +1773687342.358074,0.55,4,3992.50,53.92,1599.96,2111.12,0.00,0.053491,0.000000,75,0,0.000000,0.000020,65050696,31883010,0,0,86931,0,1,1 +1773687347.353554,0.70,4,3992.50,53.81,1604.15,2106.93,0.00,2.123795,0.000195,258,2,0.000000,0.000066,65050696,31883014,0,0,86934,0,1,1 +1773687352.357890,0.70,4,3992.50,53.82,1603.93,2107.15,0.00,55161.207728,58525.584402,3818672,3271422,0.000000,0.000020,65050696,31883016,0,0,86936,0,1,1 +1773687357.353565,0.60,4,3992.50,53.82,1603.94,2107.15,0.00,3521483477751.366699,3521483474392.359863,253,669,0.000000,0.000674,65050696,31883023,0,0,86939,0,1,1 +1773687362.353565,0.70,4,3992.50,53.83,1603.45,2107.64,0.00,3518436982294.253906,3518436982285.183105,75,0,0.000000,0.000020,65050696,31883025,0,0,86941,0,1,1 +1773687367.353562,1.05,4,3992.50,54.09,1600.89,2117.68,0.00,1.604200,10.675202,253,669,0.000157,0.000210,65050708,31883040,0,0,86944,0,1,1 +1773687372.353556,0.70,4,3992.50,54.11,1600.16,2118.42,0.00,3518441605526.172363,3518441605517.155273,11,0,0.000016,0.000036,65050710,31883044,0,0,86946,0,1,1 +1773687377.357967,0.65,4,3992.50,54.09,1600.92,2117.66,0.00,0.053468,0.000000,75,0,0.000307,0.000584,65050717,31883058,0,0,86949,0,1,1 +1773687382.358037,0.65,4,3992.50,54.14,1598.71,2119.88,0.00,55200.666843,58564.918132,3817169,3270804,0.001126,0.001222,65050726,31883074,0,0,86951,0,1,1 +1773687387.357867,16.64,4,3992.50,55.62,1541.09,2177.46,0.00,3518556494673.654785,3518556491309.116211,205,0,40.067972,0.024967,65055165,31884708,0,0,86954,0,1,1 +1773687392.357490,0.70,4,3992.50,54.60,1580.87,2137.70,0.00,1.995268,0.000195,258,2,0.000000,0.000020,65055165,31884710,0,0,86956,0,1,1 +1773687397.356211,1.10,4,3992.50,54.39,1591.11,2129.66,0.00,3519337087185.267090,3519337087187.442871,11,0,0.000205,0.000562,65055172,31884724,0,0,86959,0,1,1 +1773687402.355659,0.60,4,3992.50,54.34,1590.47,2127.68,0.00,0.053522,0.000000,75,0,0.000000,0.000020,65055172,31884726,0,0,86961,0,1,1 +1773687407.357898,0.65,4,3992.50,54.15,1598.11,2120.04,0.00,3516862542120.382324,0.000000,11,0,0.000000,0.000030,65055172,31884729,0,0,86964,0,1,1 +1773687412.353472,0.70,4,3992.50,54.15,1598.12,2120.04,0.00,0.053563,0.000000,75,0,0.000000,0.000020,65055172,31884731,0,0,86966,0,1,1 +1773687417.358289,0.65,4,3992.50,54.15,1598.11,2120.04,0.00,55158.024363,58520.267611,3818672,3271695,0.000000,0.000030,65055172,31884734,0,0,86969,0,1,1 +1773687422.353555,0.60,4,3992.50,54.15,1598.12,2120.04,0.00,0.000000,0.011730,3818672,3271701,0.000031,0.000045,65055174,31884738,0,0,86971,0,1,1 +1773687427.353494,0.95,4,3992.50,54.15,1600.28,2120.00,0.00,3518479994684.400391,3518479991318.918945,11,0,0.000039,0.000707,65055177,31884748,0,0,86974,0,1,1 +1773687432.358398,0.65,4,3992.50,54.15,1600.06,2120.23,0.00,0.180097,0.000000,205,0,0.000157,0.000200,65055189,31884762,0,0,86976,0,1,1 +1773687437.353577,0.80,4,3992.50,54.15,1600.06,2120.23,0.00,1.478867,10.685497,253,669,0.001418,0.001201,65055218,31884790,0,0,86979,0,1,1 +1773687442.354569,0.80,4,3992.50,54.11,1601.82,2118.46,0.00,3517739414613.259766,3517739414604.190918,75,0,0.001095,0.000454,65055242,31884808,0,0,86981,0,1,1 +1773687447.353552,1.50,4,3992.50,53.90,1609.93,2110.38,0.00,0.126784,0.000000,205,0,0.000000,0.000030,65055242,31884811,0,0,86984,0,1,1 +1773687452.357423,15.73,4,3992.50,54.98,1567.61,2152.66,0.00,1.476299,10.666938,253,669,40.034283,0.030129,65059646,31886906,0,0,86986,0,1,1 +1773687457.354837,1.00,4,3992.50,54.39,1591.18,2129.43,0.00,3520257558002.536621,3520257557993.514648,11,0,0.000008,0.000038,65059647,31886910,0,0,86989,0,1,1 +1773687462.358297,0.70,4,3992.50,54.08,1603.20,2117.41,0.00,0.053479,0.000000,75,0,0.000000,0.000020,65059647,31886912,0,0,86991,0,1,1 +1773687467.353460,0.60,4,3992.50,53.89,1610.60,2110.01,0.00,3521844143704.868652,0.000000,11,0,0.000000,0.000030,65059647,31886915,0,0,86994,0,1,1 +1773687472.353466,0.75,4,3992.50,53.89,1610.57,2110.04,0.00,0.000000,0.000000,11,0,0.000000,0.000020,65059647,31886917,0,0,86996,0,1,1 +1773687477.353582,0.65,4,3992.50,53.89,1610.57,2110.03,0.00,1.657676,10.674948,253,669,0.000000,0.000030,65059647,31886920,0,0,86999,0,1,1 +1773687482.355343,0.65,4,3992.50,53.89,1610.57,2110.04,0.00,3517198767320.141113,3517198767311.126953,11,0,0.000056,0.000076,65059651,31886926,0,0,87001,0,1,1 +1773687487.353501,0.90,4,3992.50,54.09,1602.92,2117.64,0.00,2.176192,0.000195,258,2,0.000033,0.000069,65059654,31886932,0,0,87004,0,1,1 +1773687492.357479,0.80,4,3992.50,54.05,1604.20,2116.36,0.00,3515639988517.958008,3515639988520.078125,75,0,0.000000,0.000663,65059654,31886938,0,0,87006,0,1,1 +1773687497.357062,0.70,4,3992.50,54.07,1603.73,2116.83,0.00,3518730489439.472168,0.000000,11,0,0.000157,0.000210,65059666,31886953,0,0,87009,0,1,1 +1773687502.357444,0.65,4,3992.50,54.07,1603.73,2116.83,0.00,0.053512,0.000000,75,0,0.000000,0.000020,65059666,31886955,0,0,87011,0,1,1 +1773687507.353448,0.70,4,3992.50,54.07,1603.73,2116.82,0.00,3521251345069.107910,0.000000,11,0,0.000000,0.000030,65059666,31886958,0,0,87014,0,1,1 +1773687512.357657,0.75,4,3992.50,54.07,1603.73,2116.83,0.00,0.180122,0.000000,205,0,0.000000,0.000020,65059666,31886960,0,0,87016,0,1,1 +1773687517.353550,14.43,4,3992.50,54.22,1595.83,2122.76,0.00,0.000000,0.000000,205,0,40.097730,0.023573,65064032,31888532,0,0,87019,0,1,1 +1773687522.354583,0.65,4,3992.50,54.22,1595.85,2122.74,0.00,1.477136,10.672990,253,669,0.000008,0.000028,65064033,31888535,0,0,87021,0,1,1 +1773687527.357443,0.65,4,3992.50,54.22,1595.85,2122.74,0.00,3516426218177.098633,3516426218168.032715,75,0,0.000000,0.000030,65064033,31888538,0,0,87024,0,1,1 +1773687532.356323,0.60,4,3992.50,54.22,1595.86,2122.74,0.00,0.126786,0.000000,205,0,0.000000,0.000020,65064033,31888540,0,0,87026,0,1,1 +1773687537.358345,0.55,4,3992.50,54.22,1595.85,2122.74,0.00,1.476844,10.670880,253,669,0.000000,0.000030,65064033,31888543,0,0,87029,0,1,1 +1773687542.353455,0.70,4,3992.50,54.02,1603.48,2115.11,0.00,55253.863480,58613.171746,3817169,3271539,0.000000,0.000020,65064033,31888545,0,0,87031,0,1,1 +1773687547.357658,0.95,4,3992.50,54.22,1593.04,2122.96,0.00,3515482221428.537109,3515482218066.142578,205,0,0.000000,0.000030,65064033,31888548,0,0,87034,0,1,1 +1773687552.355580,0.65,4,3992.50,54.22,1593.04,2122.89,0.00,1.995947,0.000195,258,2,0.000000,0.000020,65064033,31888550,0,0,87036,0,1,1 +1773687557.357624,0.70,4,3992.50,54.22,1593.05,2122.88,0.00,0.000000,0.000000,258,2,0.000000,0.000706,65064033,31888558,0,0,87039,0,1,1 +1773687562.358102,0.60,4,3992.50,54.22,1593.04,2122.88,0.00,55194.039394,58561.058558,3817169,3271623,0.000157,0.000200,65064045,31888572,0,0,87041,0,1,1 +1773687567.358285,0.65,4,3992.50,54.22,1593.04,2122.88,0.00,3518296328244.074219,3518296324876.868164,258,2,0.000016,0.000059,65064047,31888578,0,0,87044,0,1,1 +1773687572.354363,0.70,4,3992.50,54.22,1593.05,2122.88,0.00,3521211295197.545410,3521211295199.722168,11,0,0.000000,0.000020,65064047,31888580,0,0,87046,0,1,1 +1773687577.353455,1.05,4,3992.50,54.55,1580.32,2135.89,0.00,0.180306,0.000000,205,0,0.000000,0.000030,65064047,31888583,0,0,87049,0,1,1 +1773687582.353885,15.84,4,3992.50,54.20,1594.06,2121.86,0.00,55206.290906,58572.362775,3818672,3272365,40.060296,0.030851,65068468,31890739,0,0,87051,0,1,1 +1773687587.357550,0.85,4,3992.50,54.19,1594.19,2121.73,0.00,3515860225719.534668,3515860222364.830078,253,669,0.003082,0.001437,65068524,31890779,0,0,87054,0,1,1 +1773687592.358464,0.70,4,3992.50,54.19,1594.19,2121.73,0.00,3517794301016.441895,3517794301007.426270,11,0,0.000000,0.000020,65068524,31890781,0,0,87056,0,1,1 +1773687597.355897,0.65,4,3992.50,54.05,1599.94,2115.98,0.00,55229.841930,58596.909411,3817169,3271812,0.000000,0.000030,65068524,31890784,0,0,87059,0,1,1 +1773687602.354655,0.95,4,3992.50,53.94,1604.15,2111.77,0.00,3519311523814.533691,3519311520448.178223,205,0,0.000000,0.000020,65068524,31890786,0,0,87061,0,1,1 +1773687607.357742,1.20,4,3992.50,54.31,1589.12,2126.42,0.00,1.993886,0.000195,258,2,0.000000,0.000030,65068524,31890789,0,0,87064,0,1,1 +1773687612.354595,0.90,4,3992.50,53.91,1604.47,2110.70,0.00,3520652730295.680176,3520652730297.676758,205,0,0.000000,0.000020,65068524,31890791,0,0,87066,0,1,1 +1773687617.357770,1.10,4,3992.50,53.92,1604.24,2110.94,0.00,3516204393776.299805,0.000000,11,0,0.000000,0.000030,65068524,31890794,0,0,87069,0,1,1 +1773687622.357275,0.90,4,3992.50,53.92,1604.24,2110.94,0.00,55206.960567,58572.804205,3817169,3271930,0.000000,0.000664,65068524,31890800,0,0,87071,0,1,1 +1773687627.357558,0.80,4,3992.50,53.92,1604.22,2110.96,0.00,3518237860987.312988,3518237857621.812988,205,0,0.000056,0.000086,65068528,31890807,0,0,87074,0,1,1 +1773687632.357961,0.90,4,3992.50,53.92,1604.22,2110.95,0.00,55196.857437,58562.284952,3817169,3271940,0.000117,0.000160,65068538,31890819,0,0,87076,0,1,1 +1773687637.357816,1.05,4,3992.50,54.01,1614.20,2114.64,0.00,3518539565701.779785,3518539562336.109375,75,0,0.000000,0.000030,65068538,31890822,0,0,87079,0,1,1 +1773687642.354642,0.60,4,3992.50,54.02,1613.74,2115.10,0.00,2.123223,0.000195,258,2,0.000000,0.000020,65068538,31890824,0,0,87081,0,1,1 +1773687647.357774,13.24,4,3992.50,58.95,1420.89,2307.95,0.00,3516234777253.136719,3516234777255.130859,205,0,9.414815,0.013278,65069819,31891685,0,0,87084,0,1,1 +1773687652.357780,4.76,4,3992.50,54.14,1609.24,2119.59,0.00,0.000000,0.000000,205,0,30.643760,0.008982,65072868,31892295,0,0,87086,0,1,1 +1773687657.357703,0.60,4,3992.50,54.14,1609.00,2119.83,0.00,1.995148,0.000195,258,2,0.000008,0.000038,65072869,31892299,0,0,87089,0,1,1 +1773687662.357599,0.65,4,3992.50,54.04,1612.87,2115.96,0.00,3518511102541.751465,10.675224,253,669,0.000000,0.000020,65072869,31892301,0,0,87091,0,1,1 +1773687667.357773,0.95,4,3992.50,53.92,1609.84,2111.10,0.00,55197.901473,58554.539480,3817169,3272175,0.000000,0.000030,65072869,31892304,0,0,87094,0,1,1 +1773687672.358105,0.60,4,3992.50,53.92,1609.27,2111.05,0.00,3518203376103.775879,3518203372738.226562,11,0,0.000000,0.000020,65072869,31892306,0,0,87096,0,1,1 +1773687677.357958,0.75,4,3992.50,53.92,1609.27,2111.05,0.00,55212.843702,58579.739290,3818672,3272923,0.000308,0.000584,65072876,31892320,0,0,87099,0,1,1 +1773687682.355608,0.70,4,3992.50,53.92,1609.28,2111.05,0.00,3520091888325.281738,3520091884954.725586,258,2,0.000213,0.000560,65072884,31892334,0,0,87101,0,1,1 +1773687687.353493,0.60,4,3992.50,53.92,1609.28,2111.04,0.00,55232.395601,58602.806365,3818672,3272934,0.000000,0.000674,65072884,31892341,0,0,87104,0,1,1 +1773687692.354184,0.60,4,3992.50,53.92,1609.28,2111.05,0.00,3517950817375.650391,3517950814009.251953,75,0,0.000031,0.000045,65072886,31892345,0,0,87106,0,1,1 +1773687697.358135,0.90,4,3992.50,54.11,1599.48,2118.64,0.00,55167.578040,58531.823131,3818672,3272954,0.001251,0.001386,65072905,31892372,0,0,87109,0,1,1 +1773687702.357663,0.75,4,3992.50,54.07,1601.17,2116.96,0.00,3518768708247.668945,3518768704889.520996,253,669,0.000000,0.000020,65072905,31892374,0,0,87111,0,1,1 +1773687707.357802,0.65,4,3992.50,54.07,1601.18,2116.95,0.00,55208.025164,58565.779519,3818672,3272968,0.000000,0.000030,65072905,31892377,0,0,87114,0,1,1 +1773687712.358148,14.59,4,3992.50,55.05,1562.82,2155.30,0.00,3518193545508.886719,3518193542151.271973,253,669,40.059055,0.025699,65077211,31894194,0,0,87116,0,1,1 +1773687717.353450,0.95,4,3992.50,54.19,1596.27,2121.85,0.00,0.000000,0.000000,253,669,0.003096,0.001448,65077268,31894235,0,0,87119,0,1,1 +1773687722.355408,0.65,4,3992.50,53.79,1612.16,2105.96,0.00,0.517473,3517059921173.273438,258,2,0.000031,0.000045,65077270,31894239,0,0,87121,0,1,1 +1773687727.357781,1.00,4,3992.50,54.02,1604.08,2114.86,0.00,3516768277260.475098,3516768277262.469238,205,0,0.000031,0.000055,65077272,31894244,0,0,87124,0,1,1 +1773687732.357927,0.80,4,3992.50,54.01,1603.35,2114.75,0.00,3518334253275.099609,0.000000,11,0,0.000000,0.000020,65077272,31894246,0,0,87126,0,1,1 +1773687737.353502,0.95,4,3992.50,54.00,1603.75,2114.34,0.00,1.659183,10.684652,253,669,0.002088,0.002115,65077304,31894275,0,0,87129,0,1,1 +1773687742.353457,0.65,4,3992.50,54.02,1603.02,2115.08,0.00,3518468445140.885254,3518468445131.687500,205,0,0.001103,0.000454,65077329,31894293,0,0,87131,0,1,1 +1773687747.353495,0.60,4,3992.50,53.98,1604.66,2113.43,0.00,3518411101568.963379,0.000000,11,0,0.000000,0.000030,65077329,31894296,0,0,87134,0,1,1 +1773687752.357649,0.65,4,3992.50,54.01,1603.41,2114.68,0.00,0.180124,0.000000,205,0,0.000000,0.000663,65077329,31894302,0,0,87136,0,1,1 +1773687757.355290,0.90,4,3992.50,53.93,1600.01,2111.44,0.00,3520098196785.997559,0.000000,11,0,0.000031,0.000055,65077331,31894307,0,0,87139,0,1,1 +1773687762.357459,0.70,4,3992.50,53.89,1601.50,2109.86,0.00,55177.551582,58542.299672,3817169,3272547,0.000075,0.000113,65077337,31894315,0,0,87141,0,1,1 +1773687767.356286,0.70,4,3992.50,53.92,1600.28,2111.08,0.00,9.728454,10.680240,3818672,3273221,0.000008,0.000038,65077338,31894319,0,0,87144,0,1,1 +1773687772.357471,0.80,4,3992.50,53.93,1599.82,2111.54,0.00,3517603087067.458984,3517603083698.922852,258,2,0.000000,0.000020,65077338,31894321,0,0,87146,0,1,1 +1773687777.356833,14.69,4,3992.50,58.57,1418.25,2293.10,0.00,55216.087115,58585.865732,3818672,3273257,40.067056,0.021415,65081663,31895806,0,0,87149,0,1,1 +1773687782.358035,0.95,4,3992.50,54.33,1584.28,2127.08,0.00,0.000000,0.026166,3818672,3273282,0.003278,0.001726,65081734,31895859,0,0,87151,0,1,1 +1773687787.357790,0.85,4,3992.50,54.03,1595.91,2115.53,0.00,3518609267853.940918,3518609264484.401367,258,2,0.000033,0.000069,65081737,31895865,0,0,87154,0,1,1 +1773687792.358099,0.60,4,3992.50,53.69,1609.22,2102.10,0.00,3518220226168.453613,10.674342,253,669,0.000000,0.000020,65081737,31895867,0,0,87156,0,1,1 +1773687797.358558,0.75,4,3992.50,53.69,1609.42,2101.90,0.00,3518114168602.352539,3518114168593.335938,11,0,0.000000,0.000030,65081737,31895870,0,0,87159,0,1,1 +1773687802.353454,0.65,4,3992.50,53.69,1609.20,2102.12,0.00,0.000000,0.000000,11,0,0.000000,0.000020,65081737,31895872,0,0,87161,0,1,1 +1773687807.354727,0.65,4,3992.50,53.69,1609.21,2102.11,0.00,55197.160755,58563.689002,3818672,3273430,0.000000,0.000030,65081737,31895875,0,0,87164,0,1,1 +1773687812.353450,0.70,4,3992.50,53.69,1609.21,2102.11,0.00,3519336465908.065918,3519336462539.819336,11,0,0.000000,0.000020,65081737,31895877,0,0,87166,0,1,1 +1773687817.353564,1.05,4,3992.50,53.78,1605.23,2105.80,0.00,0.000000,0.000000,11,0,0.000000,0.000674,65081737,31895884,0,0,87169,0,1,1 +1773687822.358016,0.55,4,3992.50,53.71,1608.02,2102.97,0.00,0.053468,0.000000,75,0,0.000031,0.000045,65081739,31895888,0,0,87171,0,1,1 +1773687827.357776,0.65,4,3992.50,53.73,1607.51,2103.48,0.00,3518606375033.002930,0.000000,11,0,0.000134,0.000193,65081750,31895902,0,0,87174,0,1,1 +1773687832.357887,0.75,4,3992.50,53.73,1607.52,2103.48,0.00,0.000000,0.000000,11,0,0.000000,0.000020,65081750,31895904,0,0,87176,0,1,1 +1773687837.353550,0.65,4,3992.50,53.73,1607.51,2103.48,0.00,2.177279,0.000195,258,2,0.000000,0.000030,65081750,31895907,0,0,87179,0,1,1 +1773687842.354862,15.87,4,3992.50,58.88,1405.71,2305.27,0.00,55184.835752,58552.648088,3817169,3272841,34.043832,0.019864,65085441,31897290,0,0,87181,0,1,1 +1773687847.354558,1.30,4,3992.50,54.79,1566.69,2144.98,0.00,9.726762,10.848412,3818672,3273648,6.012594,0.003122,65086132,31897435,0,0,87184,0,1,1 +1773687852.353563,0.85,4,3992.50,54.37,1582.95,2128.70,0.00,3519137439502.141113,3519137436131.652832,258,2,0.000000,0.000020,65086132,31897437,0,0,87186,0,1,1 +1773687857.358051,0.65,4,3992.50,54.23,1588.31,2123.33,0.00,3515282280298.106934,10.665428,253,669,0.000000,0.000030,65086132,31897440,0,0,87189,0,1,1 +1773687862.355144,0.65,4,3992.50,54.15,1591.41,2120.23,0.00,55231.939031,58591.616893,3817169,3273023,0.000000,0.000020,65086132,31897442,0,0,87191,0,1,1 +1773687867.357083,0.75,4,3992.50,54.19,1589.94,2121.71,0.00,9.722401,10.675157,3818672,3273699,0.000000,0.000030,65086132,31897445,0,0,87194,0,1,1 +1773687872.353506,0.55,4,3992.50,54.20,1589.72,2121.92,0.00,0.000000,0.007818,3818672,3273706,0.000000,0.000020,65086132,31897447,0,0,87196,0,1,1 +1773687877.353582,0.95,4,3992.50,54.29,1587.63,2125.57,0.00,3518383314981.531738,3518383314980.612305,3817169,3273052,0.000000,0.000030,65086132,31897450,0,0,87199,0,1,1 +1773687882.353462,0.65,4,3992.50,54.29,1585.34,2125.57,0.00,3518521345564.171387,3518521342197.307129,11,0,0.000000,0.000664,65086132,31897456,0,0,87201,0,1,1 +1773687887.353492,0.75,4,3992.50,54.29,1585.34,2125.56,0.00,55210.881825,58578.622517,3818672,3273750,0.000099,0.000030,65086138,31897459,0,0,87204,0,1,1 +1773687892.357884,0.60,4,3992.50,54.30,1585.12,2125.78,0.00,3515349346739.529785,3515349343372.551270,258,2,0.000037,0.000020,65086140,31897461,0,0,87206,0,1,1 +1773687897.355983,0.70,4,3992.50,54.14,1591.30,2119.60,0.00,55230.048115,58601.274491,3818672,3273757,0.000000,0.000030,65086140,31897464,0,0,87209,0,1,1 +1773687902.355558,0.70,4,3992.50,54.17,1590.08,2120.82,0.00,3518735679688.367188,3518735676320.258789,75,0,0.000089,0.000135,65086147,31897473,0,0,87211,0,1,1 +1773687907.354368,15.72,4,3992.50,59.68,1373.72,2336.76,0.00,2.122380,0.000195,258,2,29.819226,0.018652,65089422,31898688,0,0,87214,0,1,1 +1773687912.357741,1.00,4,3992.50,54.64,1571.34,2139.12,0.00,0.000000,0.000000,258,2,10.246521,0.004538,65090520,31898945,0,0,87216,0,1,1 +1773687917.355682,0.90,4,3992.50,54.54,1575.11,2135.36,0.00,3519886939787.252930,3519886939789.249512,205,0,0.000000,0.000030,65090520,31898948,0,0,87219,0,1,1 +1773687922.358176,0.65,4,3992.50,54.53,1575.33,2135.15,0.00,55183.505200,58550.090722,3818672,3274027,0.000000,0.000020,65090520,31898950,0,0,87221,0,1,1 +1773687927.358343,0.60,4,3992.50,54.53,1575.38,2135.10,0.00,3518319500365.886230,3518319497006.931152,253,669,0.000000,0.000030,65090520,31898953,0,0,87224,0,1,1 +1773687932.357686,0.70,4,3992.50,54.53,1575.38,2135.10,0.00,55216.815050,58576.354366,3818672,3274063,0.000000,0.000020,65090520,31898955,0,0,87226,0,1,1 +1773687937.357485,0.95,4,3992.50,54.53,1574.97,2135.04,0.00,3518578512875.403809,3518578512874.522949,3817169,3273423,0.000000,0.000030,65090520,31898958,0,0,87229,0,1,1 +1773687942.358061,0.70,4,3992.50,54.53,1574.98,2135.04,0.00,3518031982642.056641,3518031979275.029785,205,0,0.000000,0.000020,65090520,31898960,0,0,87231,0,1,1 +1773687947.353470,0.75,4,3992.50,54.53,1574.99,2135.04,0.00,3521671129194.641113,0.000000,75,0,0.000000,0.000674,65090520,31898967,0,0,87234,0,1,1 +1773687952.353467,0.70,4,3992.50,54.53,1574.99,2135.04,0.00,0.000000,0.000000,75,0,0.000081,0.000020,65090525,31898969,0,0,87236,0,1,1 +1773687957.353550,0.65,4,3992.50,54.54,1574.75,2135.27,0.00,2.121840,0.000195,258,2,0.000053,0.000030,65090529,31898972,0,0,87239,0,1,1 +1773687962.353469,0.65,4,3992.50,54.54,1574.75,2135.27,0.00,55209.932244,58580.392772,3818672,3274141,0.000097,0.000128,65090537,31898981,0,0,87241,0,1,1 +1773687967.357968,1.00,4,3992.50,54.54,1585.45,2135.23,0.00,3515274698658.351562,3515274695292.968262,205,0,0.000018,0.000045,65090538,31898985,0,0,87244,0,1,1 +1773687972.356847,13.76,4,3992.50,58.98,1408.68,2309.10,0.00,1.995564,0.000195,258,2,21.966253,0.016650,65093119,31900112,0,0,87246,0,1,1 +1773687977.357712,2.51,4,3992.50,54.62,1579.48,2138.32,0.00,3517828959370.028320,10.673155,253,669,18.103284,0.008984,65095046,31900639,0,0,87249,0,1,1 +1773687982.358223,0.60,4,3992.50,54.14,1598.07,2119.73,0.00,0.517623,3518077138602.697266,258,2,0.000213,0.000560,65095054,31900653,0,0,87251,0,1,1 +1773687987.358095,0.60,4,3992.50,54.03,1602.22,2115.57,0.00,3518527651930.611816,3518527651932.787598,11,0,0.000000,0.000030,65095054,31900656,0,0,87254,0,1,1 +1773687992.356287,0.70,4,3992.50,54.04,1602.08,2115.71,0.00,1.658314,10.679056,253,669,0.000000,0.000020,65095054,31900658,0,0,87256,0,1,1 +1773687997.356855,1.05,4,3992.50,54.24,1593.16,2123.52,0.00,3518037648459.406738,3518037648450.209961,205,0,0.000000,0.000030,65095054,31900661,0,0,87259,0,1,1 +1773688002.357585,0.70,4,3992.50,54.16,1596.12,2120.61,0.00,0.000000,0.000000,205,0,0.000000,0.000020,65095054,31900663,0,0,87261,0,1,1 +1773688007.356618,0.65,4,3992.50,54.19,1594.90,2121.83,0.00,0.000000,0.000000,205,0,0.000000,0.000030,65095054,31900666,0,0,87264,0,1,1 +1773688012.356604,0.60,4,3992.50,54.19,1594.90,2121.83,0.00,55201.470174,58569.226010,3817169,3273720,0.000000,0.000342,65095054,31900670,0,0,87266,0,1,1 +1773688017.357439,0.60,4,3992.50,54.20,1594.68,2122.05,0.00,3517849598220.396484,3517849594853.393066,11,0,0.000081,0.000352,65095059,31900675,0,0,87269,0,1,1 +1773688022.357485,0.65,4,3992.50,54.20,1594.68,2122.04,0.00,0.000000,0.000000,11,0,0.000191,0.000289,65095074,31900696,0,0,87271,0,1,1 +1773688027.357814,0.95,4,3992.50,54.33,1601.10,2127.19,0.00,1.657606,10.674492,253,669,0.000031,0.000055,65095076,31900701,0,0,87274,0,1,1 +1773688032.354790,0.65,4,3992.50,54.37,1599.50,2128.65,0.00,55242.970864,58604.549985,3818672,3274424,0.000000,0.000020,65095076,31900703,0,0,87276,0,1,1 +1773688037.358561,11.84,4,3992.50,59.21,1410.14,2318.01,0.00,3515785133313.877930,3515785133312.944824,3817169,3273787,14.018196,0.016065,65096868,31901696,0,0,87279,0,1,1 +1773688042.354405,4.37,4,3992.50,55.34,1561.27,2166.88,0.00,3521364231357.378906,3521364227986.767578,205,0,26.061806,0.009684,65099542,31902271,0,0,87281,0,1,1 +1773688047.353488,0.70,4,3992.50,54.84,1580.91,2147.25,0.00,55221.167171,58590.660414,3818672,3274578,0.000008,0.000038,65099543,31902275,0,0,87284,0,1,1 +1773688052.358135,0.65,4,3992.50,54.51,1593.96,2134.19,0.00,3515169957865.284180,3515169954508.727051,253,669,0.000000,0.000020,65099543,31902277,0,0,87286,0,1,1 +1773688057.357455,1.05,4,3992.50,54.44,1597.39,2131.63,0.00,3518915980625.552246,3518915980616.533691,11,0,0.000000,0.000030,65099543,31902280,0,0,87289,0,1,1 +1773688062.357472,0.65,4,3992.50,54.24,1605.33,2123.57,0.00,0.180273,0.000000,205,0,0.000000,0.000020,65099543,31902282,0,0,87291,0,1,1 +1773688067.353561,1.36,4,3992.50,54.13,1609.50,2119.39,0.00,55254.260699,58625.892872,3818672,3274654,0.000000,0.000030,65099543,31902285,0,0,87294,0,1,1 +1773688072.358298,0.70,4,3992.50,54.16,1608.52,2120.38,0.00,3515106848644.811523,3515106845279.132324,75,0,0.000000,0.000020,65099543,31902287,0,0,87296,0,1,1 +1773688077.355795,0.70,4,3992.50,54.16,1608.52,2120.38,0.00,0.126821,0.000000,205,0,0.000000,0.000513,65099543,31902293,0,0,87299,0,1,1 +1773688082.354597,0.60,4,3992.50,54.16,1608.53,2120.37,0.00,3519280260915.848633,0.000000,75,0,0.000087,0.000262,65099549,31902302,0,0,87301,0,1,1 +1773688087.357571,0.85,4,3992.50,54.55,1593.34,2135.84,0.00,55168.630369,58534.599739,3817169,3274013,0.000159,0.000224,65099562,31902318,0,0,87304,0,1,1 +1773688092.357929,0.80,4,3992.50,54.53,1593.96,2134.94,0.00,0.000000,0.003906,3817169,3274017,0.000000,0.000020,65099562,31902320,0,0,87306,0,1,1 +1773688097.353450,0.75,4,3992.50,54.34,1601.36,2127.54,0.00,3521592149497.135742,3521592146126.140625,75,0,0.000000,0.000030,65099562,31902323,0,0,87309,0,1,1 +1773688102.353663,1.05,4,3992.50,54.30,1603.08,2125.81,0.00,2.121784,0.000195,258,2,0.002221,0.000725,65099585,31902341,0,0,87311,0,1,1 +1773688107.358098,15.54,4,3992.50,54.54,1593.52,2135.37,0.00,0.000000,0.000000,258,2,40.025743,0.021155,65103863,31903793,0,0,87314,0,1,1 +1773688112.357891,0.70,4,3992.50,54.36,1600.49,2128.41,0.00,55201.597206,58571.985744,3817169,3274204,0.000000,0.000020,65103863,31903795,0,0,87316,0,1,1 +1773688117.355378,0.95,4,3992.50,54.27,1604.18,2124.87,0.00,3520206595383.512695,3520206592013.690918,75,0,0.000000,0.000030,65103863,31903798,0,0,87319,0,1,1 +1773688122.353435,0.70,4,3992.50,54.27,1604.14,2124.91,0.00,2.122700,0.000195,258,2,0.000000,0.000020,65103863,31903800,0,0,87321,0,1,1 +1773688127.355896,0.70,4,3992.50,54.30,1603.18,2125.87,0.00,0.000000,0.000000,258,2,0.000000,0.000030,65103863,31903803,0,0,87324,0,1,1 +1773688132.357859,0.65,4,3992.50,54.32,1602.20,2126.85,0.00,3517056315500.858398,3517056315502.979492,75,0,0.000000,0.000020,65103863,31903805,0,0,87326,0,1,1 +1773688137.358116,0.60,4,3992.50,54.33,1601.96,2127.09,0.00,1.604117,10.674647,253,669,0.000000,0.000030,65103863,31903808,0,0,87329,0,1,1 +1773688142.354091,0.75,4,3992.50,54.33,1601.96,2127.09,0.00,55254.033899,58616.863632,3818672,3274947,0.000000,0.000503,65103863,31903813,0,0,87331,0,1,1 +1773688147.353580,0.90,4,3992.50,54.33,1601.23,2127.06,0.00,3518796767972.337402,3518796767971.421875,3817169,3274292,0.000000,0.000191,65103863,31903817,0,0,87334,0,1,1 +1773688152.353450,0.50,4,3992.50,54.33,1601.23,2127.06,0.00,3518528964065.381836,3518528960697.068848,11,0,0.000157,0.000200,65103875,31903831,0,0,87336,0,1,1 +1773688157.353575,0.75,4,3992.50,54.33,1601.00,2127.30,0.00,0.180269,0.000000,205,0,0.000016,0.000046,65103877,31903836,0,0,87339,0,1,1 +1773688162.357675,0.70,4,3992.50,54.33,1601.00,2127.29,0.00,3515554405053.114258,0.000000,11,0,0.000000,0.000020,65103877,31903838,0,0,87341,0,1,1 +1773688167.360541,5.81,4,3992.50,59.29,1407.03,2321.24,0.00,0.000000,0.000000,11,0,2.007590,0.006321,65104319,31904174,0,0,87344,0,1,1 +1773688172.353568,11.37,4,3992.50,59.94,1381.43,2346.84,0.00,0.180525,0.000000,205,0,7.036212,0.005920,65105180,31904644,0,0,87346,0,1,1 +1773688177.357793,0.95,4,3992.50,60.04,1378.16,2350.51,0.00,55154.708111,58520.448445,3817169,3274447,0.000446,0.000030,65105191,31904647,0,0,87349,0,1,1 +1773688182.357866,0.55,4,3992.50,60.04,1377.92,2350.71,0.00,3518385586111.709473,3518385582743.175293,205,0,0.000447,0.000020,65105202,31904649,0,0,87351,0,1,1 +1773688187.356413,0.80,4,3992.50,60.05,1377.75,2350.92,0.00,1.477871,10.678299,253,669,0.000000,0.000030,65105202,31904652,0,0,87354,0,1,1 +1773688192.358414,0.65,4,3992.50,60.05,1377.75,2350.92,0.00,3517029235161.199219,3517029235152.004883,205,0,0.000000,0.000020,65105202,31904654,0,0,87356,0,1,1 +1773688197.354150,0.75,4,3992.50,60.05,1377.52,2351.16,0.00,55258.157613,58630.604338,3818672,3275154,0.000447,0.000030,65105213,31904657,0,0,87359,0,1,1 +1773688202.358030,0.90,4,3992.50,60.05,1377.55,2351.12,0.00,3515709677710.705566,3515709677709.781738,3817169,3274504,0.000716,0.001890,65105236,31904693,0,0,87361,0,1,1 +1773688207.357722,1.10,4,3992.50,60.27,1368.96,2359.71,0.00,3518653531875.367676,3518653528504.519043,258,2,0.000721,0.001946,65105259,31904733,0,0,87364,0,1,1 +1773688212.358336,0.90,4,3992.50,60.16,1373.46,2355.21,0.00,55202.255573,58573.518393,3818672,3275266,0.000758,0.002646,65105284,31904780,0,0,87366,0,1,1 +1773688217.353562,1.10,4,3992.50,60.16,1373.21,2355.46,0.00,0.000000,0.002932,3818672,3275282,0.004773,0.003946,65105353,31904834,0,0,87369,0,1,1 +1773688222.353454,1.25,4,3992.50,54.63,1589.81,2138.85,0.00,3518512804513.749512,3518512801153.189941,253,669,31.031371,0.009927,65108269,31905430,0,0,87371,0,1,1 +1773688227.354153,0.55,4,3992.50,54.55,1592.82,2135.86,0.00,3517945297404.962402,3517945297395.946777,11,0,0.000000,0.000030,65108269,31905433,0,0,87374,0,1,1 +1773688232.355843,0.70,4,3992.50,54.55,1593.07,2135.61,0.00,2.174656,0.000195,258,2,0.000000,0.000020,65108269,31905435,0,0,87376,0,1,1 +1773688237.357759,1.05,4,3992.50,54.57,1592.36,2136.52,0.00,3517088984871.591309,3517088984873.766113,11,0,0.000000,0.000030,65108269,31905438,0,0,87379,0,1,1 +1773688242.358356,0.60,4,3992.50,54.54,1593.36,2135.32,0.00,1.657517,10.673921,253,669,0.000000,0.000020,65108269,31905440,0,0,87381,0,1,1 +1773688247.357457,0.70,4,3992.50,54.54,1593.36,2135.31,0.00,3519069752519.976074,3519069752510.957520,11,0,0.000000,0.000030,65108269,31905443,0,0,87384,0,1,1 +1773688252.354652,0.60,4,3992.50,54.54,1593.36,2135.31,0.00,1.658646,10.681189,253,669,0.000161,0.000020,65108279,31905445,0,0,87386,0,1,1 +1773688257.357466,0.75,4,3992.50,54.54,1593.36,2135.31,0.00,3516457972621.526855,3516457972612.515137,11,0,0.000371,0.000030,65108301,31905448,0,0,87389,0,1,1 +1773688262.357461,0.65,4,3992.50,54.54,1593.36,2135.31,0.00,55201.537837,58570.297448,3817169,3274770,0.000101,0.000072,65108307,31905454,0,0,87391,0,1,1 +1773688267.358048,1.00,4,3992.50,54.37,1592.77,2128.53,0.00,3518024637852.383789,3518024634483.968750,75,0,0.000163,0.000215,65108319,31905469,0,0,87394,0,1,1 +1773688272.357582,0.70,4,3992.50,54.26,1596.62,2124.42,0.00,0.000000,0.000000,75,0,0.000000,0.000020,65108319,31905471,0,0,87396,0,1,1 +1773688277.358192,0.75,4,3992.50,54.26,1596.62,2124.42,0.00,0.126742,0.000000,205,0,0.000308,0.001228,65108326,31905489,0,0,87399,0,1,1 +1773688282.358063,0.90,4,3992.50,54.08,1603.71,2117.33,0.00,0.000000,0.000000,205,0,0.003361,0.001926,65108359,31905521,0,0,87401,0,1,1 +1773688287.358075,14.52,4,3992.50,55.17,1560.99,2160.04,0.00,3518428472625.122070,0.000000,11,0,40.064149,0.022877,65112771,31907077,0,0,87404,0,1,1 +1773688292.358284,0.55,4,3992.50,54.43,1590.00,2131.03,0.00,0.180266,0.000000,205,0,0.000013,0.000020,65112772,31907079,0,0,87406,0,1,1 +1773688297.357705,1.10,4,3992.50,54.24,1596.68,2123.76,0.00,3518845204909.202148,0.000000,75,0,0.000000,0.000030,65112772,31907082,0,0,87409,0,1,1 +1773688302.355963,0.60,4,3992.50,54.17,1599.53,2121.01,0.00,3519663091347.412598,0.000000,11,0,0.000000,0.000020,65112772,31907084,0,0,87411,0,1,1 +1773688307.355483,0.75,4,3992.50,54.19,1598.79,2121.75,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65112772,31907087,0,0,87414,0,1,1 +1773688312.354892,0.55,4,3992.50,54.20,1598.55,2121.99,0.00,0.000000,0.000000,11,0,0.000000,0.000020,65112772,31907089,0,0,87416,0,1,1 +1773688317.355256,0.70,4,3992.50,54.20,1598.55,2121.99,0.00,2.175232,0.000195,258,2,0.000000,0.000030,65112772,31907092,0,0,87419,0,1,1 +1773688322.357597,0.60,4,3992.50,54.20,1598.31,2122.22,0.00,3516790778263.258789,3516790778265.433105,11,0,0.000236,0.000554,65112781,31907106,0,0,87421,0,1,1 +1773688327.357485,0.95,4,3992.50,54.30,1604.22,2125.87,0.00,0.053517,0.000000,75,0,0.000031,0.000055,65112783,31907111,0,0,87424,0,1,1 +1773688332.353806,0.80,4,3992.50,54.26,1602.44,2124.30,0.00,0.000000,0.000000,75,0,0.000144,0.000201,65112794,31907125,0,0,87426,0,1,1 +1773688337.357759,0.80,4,3992.50,54.27,1601.98,2124.77,0.00,0.000000,0.000000,75,0,0.001428,0.001199,65112824,31907153,0,0,87429,0,1,1 +1773688342.353440,0.70,4,3992.50,54.13,1607.55,2119.19,0.00,2.123710,0.000195,258,2,0.001065,0.001074,65112846,31907173,0,0,87431,0,1,1 +1773688347.353451,1.00,4,3992.50,54.10,1608.55,2118.19,0.00,55199.184504,58570.459812,3817169,3275079,0.002234,0.000735,65112870,31907192,0,0,87434,0,1,1 +1773688352.357661,13.66,4,3992.50,59.77,1386.47,2340.26,0.00,3515477392411.235352,3515477389042.788086,258,2,0.327837,0.003030,65113055,31907256,0,0,87436,0,1,1 +1773688357.358258,0.95,4,3992.50,60.17,1371.12,2355.95,0.00,3518017103463.065430,10.673725,253,669,0.000446,0.000030,65113066,31907259,0,0,87439,0,1,1 +1773688362.357799,0.75,4,3992.50,60.13,1372.60,2354.10,0.00,3518760377464.625000,3518760377455.606934,11,0,0.000447,0.000020,65113077,31907261,0,0,87441,0,1,1 +1773688367.357488,0.75,4,3992.50,60.11,1373.19,2353.50,0.00,1.657818,10.675859,253,669,0.000118,0.000030,65113084,31907264,0,0,87444,0,1,1 +1773688372.357720,0.70,4,3992.50,60.12,1372.71,2353.99,0.00,55207.000396,58568.085919,3818672,3275927,0.000019,0.000020,65113085,31907266,0,0,87446,0,1,1 +1773688377.353449,0.70,4,3992.50,60.13,1372.46,2354.24,0.00,3521444689994.720215,3521444686619.403809,258,2,0.000465,0.000030,65113097,31907269,0,0,87449,0,1,1 +1773688382.353461,1.00,4,3992.50,60.14,1372.25,2354.45,0.00,0.000000,0.000000,258,2,0.002414,0.004976,65113167,31907366,0,0,87451,0,1,1 +1773688387.358227,1.10,4,3992.50,60.04,1373.09,2350.68,0.00,3515086824261.982910,3515086824264.156250,11,0,0.003499,0.002006,65113229,31907412,0,0,87454,0,1,1 +1773688392.358360,0.90,4,3992.50,60.02,1373.89,2349.74,0.00,0.053514,0.000000,75,0,0.004346,0.002444,65113304,31907464,0,0,87456,0,1,1 +1773688397.353627,1.10,4,3992.50,60.02,1373.64,2350.00,0.00,55253.748545,58626.390802,3817169,3275354,0.004350,0.002456,65113379,31907517,0,0,87459,0,1,1 +1773688402.356865,0.80,4,3992.50,59.85,1380.43,2343.21,0.00,3516159841033.180176,3516159837663.791504,258,2,4.709905,0.004256,65113909,31907740,0,0,87461,0,1,1 +1773688407.357277,1.20,4,3992.50,54.12,1604.87,2118.76,0.00,55194.760389,58566.066057,3817169,3275393,35.034511,0.027868,65117955,31909758,0,0,87464,0,1,1 +1773688412.357889,0.70,4,3992.50,54.12,1604.89,2118.75,0.00,3518006934502.939941,3518006931133.889648,75,0,0.000000,0.000020,65117955,31909760,0,0,87466,0,1,1 +1773688417.357534,0.70,4,3992.50,54.12,1604.66,2118.98,0.00,0.000000,0.000000,75,0,0.000000,0.000030,65117955,31909763,0,0,87469,0,1,1 +1773688422.353830,0.95,4,3992.50,54.16,1604.34,2120.64,0.00,55242.363839,58614.435298,3817169,3275466,0.000000,0.000020,65117955,31909765,0,0,87471,0,1,1 +1773688427.355741,0.65,4,3992.50,54.16,1604.34,2120.64,0.00,3517092690837.464355,3517092687469.178711,75,0,0.000385,0.000030,65117979,31909768,0,0,87474,0,1,1 +1773688432.358304,0.65,4,3992.50,54.05,1608.93,2116.05,0.00,0.126693,0.000000,205,0,0.000240,0.000020,65117992,31909770,0,0,87476,0,1,1 +1773688437.354496,0.60,4,3992.50,54.05,1608.68,2116.30,0.00,55243.386172,58615.689816,3817169,3275504,0.000056,0.000030,65117995,31909773,0,0,87479,0,1,1 +1773688442.354594,0.75,4,3992.50,54.08,1607.70,2117.28,0.00,3518368219702.705078,3518368216331.041016,258,2,0.000101,0.000102,65118001,31909781,0,0,87481,0,1,1 +1773688447.357946,0.90,4,3992.50,54.17,1603.47,2120.93,0.00,3516079485609.641602,10.667847,253,669,0.000000,0.000030,65118001,31909784,0,0,87484,0,1,1 +1773688452.353550,0.65,4,3992.50,54.17,1603.62,2120.79,0.00,55258.144921,58622.641337,3818672,3276208,0.000126,0.000175,65118011,31909796,0,0,87486,0,1,1 +1773688457.353495,0.70,4,3992.50,54.17,1603.62,2120.79,0.00,3518475788648.886719,3518475785287.312012,253,669,0.000008,0.000038,65118012,31909800,0,0,87489,0,1,1 +1773688462.353570,0.75,4,3992.50,54.17,1603.62,2120.79,0.00,3518384020766.623047,3518384020757.605957,11,0,0.000000,0.000020,65118012,31909802,0,0,87491,0,1,1 +1773688467.355458,0.55,4,3992.50,54.17,1603.62,2120.79,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65118012,31909805,0,0,87494,0,1,1 +1773688472.357037,13.58,4,3992.50,54.20,1602.34,2122.02,0.00,0.180217,0.000000,205,0,40.052584,0.024132,65122399,31911376,0,0,87496,0,1,1 +1773688477.358218,1.05,4,3992.50,54.31,1601.82,2126.38,0.00,0.000000,0.000000,205,0,0.000008,0.000038,65122400,31911380,0,0,87499,0,1,1 +1773688482.357488,0.65,4,3992.50,54.14,1608.67,2119.59,0.00,1.477657,10.676755,253,669,0.000000,0.000020,65122400,31911382,0,0,87501,0,1,1 +1773688487.358030,0.55,4,3992.50,54.14,1608.43,2119.82,0.00,0.517620,3518056053532.739746,258,2,0.000000,0.000030,65122400,31911385,0,0,87504,0,1,1 +1773688492.357601,0.70,4,3992.50,54.10,1610.05,2118.21,0.00,55213.773584,58587.009852,3818672,3276420,0.000000,0.000020,65122400,31911387,0,0,87506,0,1,1 +1773688497.357085,0.60,4,3992.50,54.16,1607.84,2120.42,0.00,3518800789360.777832,3518800785989.477539,205,0,0.000000,0.000030,65122400,31911390,0,0,87509,0,1,1 +1773688502.357553,0.70,4,3992.50,54.16,1607.85,2120.41,0.00,0.000000,0.000000,205,0,0.000000,0.000020,65122400,31911392,0,0,87511,0,1,1 +1773688507.357930,1.85,4,3992.50,54.16,1617.20,2120.61,0.00,3518172097728.229492,0.000000,11,0,0.000000,0.000030,65122400,31911395,0,0,87514,0,1,1 +1773688512.354382,1.00,4,3992.50,54.15,1617.72,2120.08,0.00,55240.686626,58613.065522,3817169,3275874,0.000000,0.000020,65122400,31911397,0,0,87516,0,1,1 +1773688517.358010,1.05,4,3992.50,54.15,1617.72,2120.07,0.00,3515886035917.528320,3515886032547.812012,258,2,0.000157,0.000210,65122412,31911412,0,0,87519,0,1,1 +1773688522.354614,0.80,4,3992.50,54.15,1617.72,2120.07,0.00,3520828634556.229980,3520828634558.353516,75,0,0.000016,0.000036,65122414,31911416,0,0,87521,0,1,1 +1773688527.358113,0.90,4,3992.50,54.15,1617.72,2120.07,0.00,0.000000,0.000000,75,0,0.000000,0.000030,65122414,31911419,0,0,87524,0,1,1 +1773688532.358114,0.80,4,3992.50,54.07,1620.67,2117.14,0.00,1.604199,10.675191,253,669,0.000000,0.000020,65122414,31911421,0,0,87526,0,1,1 +1773688537.357737,12.40,4,3992.50,54.50,1600.89,2133.64,0.00,55204.001522,58565.395577,3817169,3276046,40.067606,0.023150,65126758,31912872,0,0,87529,0,1,1 +1773688542.355177,0.70,4,3992.50,54.38,1605.43,2129.08,0.00,3520239736796.133301,3520239733422.072754,258,2,0.000000,0.000020,65126758,31912874,0,0,87531,0,1,1 +1773688547.354576,0.70,4,3992.50,54.38,1605.43,2129.07,0.00,55215.667732,58589.433833,3818672,3276794,0.000000,0.000030,65126758,31912877,0,0,87534,0,1,1 +1773688552.353458,0.60,4,3992.50,54.38,1605.43,2129.07,0.00,3519224528075.672363,3519224524703.678223,75,0,0.000000,0.000020,65126758,31912879,0,0,87536,0,1,1 +1773688557.357981,0.75,4,3992.50,54.39,1605.19,2129.32,0.00,55161.264779,58529.464502,3818672,3276802,0.000000,0.000030,65126758,31912882,0,0,87539,0,1,1 +1773688562.354703,0.75,4,3992.50,54.39,1605.19,2129.31,0.00,3520745207767.376953,3520745204393.791992,205,0,0.000000,0.000020,65126758,31912884,0,0,87541,0,1,1 +1773688567.358413,1.00,4,3992.50,54.24,1606.51,2123.42,0.00,1.476346,10.667281,253,669,0.000000,0.000030,65126758,31912887,0,0,87544,0,1,1 +1773688572.353435,0.65,4,3992.50,54.24,1606.52,2123.42,0.00,3521943350681.239746,3521943350672.160156,75,0,0.000000,0.000020,65126758,31912889,0,0,87546,0,1,1 +1773688577.357715,0.70,4,3992.50,54.24,1606.30,2123.64,0.00,0.126649,0.000000,205,0,0.000307,0.000584,65126765,31912903,0,0,87549,0,1,1 +1773688582.357898,0.65,4,3992.50,54.24,1606.30,2123.64,0.00,1.477387,10.674804,253,669,0.000370,0.000741,65126785,31912929,0,0,87551,0,1,1 +1773688587.358263,0.70,4,3992.50,54.24,1606.30,2123.64,0.00,3518180122090.936523,3518180122081.919922,11,0,0.000000,0.000030,65126785,31912932,0,0,87554,0,1,1 +1773688592.357829,0.70,4,3992.50,54.25,1606.05,2123.88,0.00,55216.017281,58587.586276,3818672,3276855,0.000000,0.000020,65126785,31912934,0,0,87556,0,1,1 +1773688597.358077,0.90,4,3992.50,54.23,1612.22,2123.36,0.00,3518262236230.043945,3518262232867.952637,253,669,0.000000,0.000030,65126785,31912937,0,0,87559,0,1,1 +1773688602.354278,15.17,4,3992.50,54.45,1603.45,2131.92,0.00,0.000000,0.000000,253,669,40.098274,0.026606,65131309,31914699,0,0,87561,0,1,1 +1773688607.353466,0.75,4,3992.50,54.48,1602.33,2133.06,0.00,55218.531832,58581.611414,3818672,3277046,0.000000,0.000030,65131309,31914702,0,0,87564,0,1,1 +1773688612.354732,0.60,4,3992.50,54.49,1602.09,2133.30,0.00,3517546686728.239746,3517546683357.542480,11,0,0.000000,0.000020,65131309,31914704,0,0,87566,0,1,1 +1773688617.353464,0.70,4,3992.50,54.49,1602.09,2133.30,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65131309,31914707,0,0,87569,0,1,1 +1773688622.358246,0.75,4,3992.50,54.49,1602.07,2133.31,0.00,0.000000,0.000000,11,0,0.000236,0.000577,65131318,31914722,0,0,87571,0,1,1 +1773688627.353476,0.95,4,3992.50,54.59,1591.34,2137.21,0.00,0.180446,0.000000,205,0,0.000039,0.000063,65131321,31914728,0,0,87574,0,1,1 +1773688632.356864,0.65,4,3992.50,54.59,1591.10,2137.45,0.00,55173.650276,58543.261125,3818672,3277160,0.000000,0.000020,65131321,31914730,0,0,87576,0,1,1 +1773688637.358257,0.80,4,3992.50,54.60,1590.65,2137.90,0.00,0.000000,0.005467,3818672,3277165,0.002073,0.002113,65131352,31914759,0,0,87579,0,1,1 +1773688642.357620,0.70,4,3992.50,54.60,1590.66,2137.89,0.00,3518885457570.123535,3518885454195.798828,258,2,0.001064,0.000421,65131374,31914774,0,0,87581,0,1,1 +1773688647.357601,0.65,4,3992.50,54.60,1590.66,2137.89,0.00,3518450681734.032715,10.675041,253,669,0.000107,0.000148,65131382,31914785,0,0,87584,0,1,1 +1773688652.357647,0.75,4,3992.50,54.60,1590.66,2137.89,0.00,55209.046503,58571.727286,3818672,3277174,0.000000,0.000020,65131382,31914787,0,0,87586,0,1,1 +1773688657.357891,0.95,4,3992.50,54.60,1589.28,2137.83,0.00,3518265577009.459961,3518265573635.719727,258,2,0.000008,0.000038,65131383,31914791,0,0,87589,0,1,1 +1773688662.357749,0.60,4,3992.50,54.60,1589.43,2137.65,0.00,3518536940403.239258,3518536940405.361328,75,0,0.000000,0.000020,65131383,31914793,0,0,87591,0,1,1 +1773688667.358058,16.14,4,3992.50,55.75,1544.21,2182.86,0.00,0.126750,0.000000,205,0,40.061590,0.023216,65135619,31916240,0,0,87594,0,1,1 +1773688672.355507,0.75,4,3992.50,55.04,1571.98,2155.10,0.00,3520232805007.918457,0.000000,11,0,0.000013,0.000020,65135620,31916242,0,0,87596,0,1,1 +1773688677.356997,0.75,4,3992.50,54.71,1585.12,2141.96,0.00,55185.046014,58554.987401,3817169,3276683,0.000000,0.000030,65135620,31916245,0,0,87599,0,1,1 +1773688682.357402,0.55,4,3992.50,54.39,1597.55,2129.53,0.00,3518152344473.365723,3518152341102.512695,205,0,0.000056,0.000076,65135624,31916251,0,0,87601,0,1,1 +1773688687.353461,1.10,4,3992.50,54.61,1588.87,2137.96,0.00,1.478607,10.683617,253,669,0.000033,0.000069,65135627,31916257,0,0,87604,0,1,1 +1773688692.353506,0.70,4,3992.50,54.61,1588.72,2138.12,0.00,3518405577008.223145,3518405576999.025879,205,0,0.000000,0.000020,65135627,31916259,0,0,87606,0,1,1 +1773688697.353559,0.70,4,3992.50,54.61,1588.72,2138.12,0.00,55200.720480,58571.919701,3817169,3276747,0.000000,0.000030,65135627,31916262,0,0,87609,0,1,1 +1773688702.353626,0.75,4,3992.50,54.61,1588.72,2138.12,0.00,0.000000,0.009375,3817169,3276753,0.000000,0.000020,65135627,31916264,0,0,87611,0,1,1 +1773688707.354231,0.70,4,3992.50,54.62,1588.49,2138.36,0.00,9.724996,10.675662,3818672,3277426,0.000000,0.000030,65135627,31916267,0,0,87614,0,1,1 +1773688712.355268,0.65,4,3992.50,54.62,1588.49,2138.36,0.00,3517707462949.378418,3517707459577.882324,205,0,0.000144,0.000200,65135638,31916281,0,0,87616,0,1,1 +1773688717.358292,0.95,4,3992.50,54.62,1592.60,2138.31,0.00,0.000000,0.000000,205,0,0.000021,0.000038,65135640,31916285,0,0,87619,0,1,1 +1773688722.354770,0.75,4,3992.50,54.53,1596.10,2134.85,0.00,1.996524,0.000195,258,2,0.000000,0.000020,65135640,31916287,0,0,87621,0,1,1 +1773688727.357706,0.75,4,3992.50,54.55,1595.01,2135.94,0.00,3516372527150.347168,10.668736,253,669,0.000000,0.000030,65135640,31916290,0,0,87624,0,1,1 +1773688732.355777,15.28,4,3992.50,56.08,1535.18,2195.75,0.00,55230.868602,58595.233061,3818672,3277500,40.077227,0.024492,65139941,31917964,0,0,87626,0,1,1 +1773688737.356070,0.85,4,3992.50,55.35,1563.69,2167.26,0.00,3518230935380.345703,3518230932008.406250,75,0,0.003085,0.001438,65139997,31918004,0,0,87629,0,1,1 +1773688742.353476,0.60,4,3992.50,54.90,1581.41,2149.54,0.00,0.126824,0.000000,205,0,0.000008,0.000028,65139998,31918007,0,0,87631,0,1,1 +1773688747.353485,0.95,4,3992.50,54.58,1597.03,2136.95,0.00,3518431385879.076172,0.000000,11,0,0.000000,0.000030,65139998,31918010,0,0,87634,0,1,1 +1773688752.353478,0.70,4,3992.50,54.52,1599.22,2134.55,0.00,0.000000,0.000000,11,0,0.000000,0.000020,65139998,31918012,0,0,87636,0,1,1 +1773688757.358367,0.65,4,3992.50,54.47,1601.14,2132.64,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65139998,31918015,0,0,87639,0,1,1 +1773688762.353456,0.65,4,3992.50,54.51,1599.66,2134.11,0.00,1.659345,10.685693,253,669,0.000000,0.000020,65139998,31918017,0,0,87641,0,1,1 +1773688767.353453,0.65,4,3992.50,54.52,1599.21,2134.57,0.00,55209.583764,58572.887017,3818672,3277706,0.000000,0.000030,65139998,31918020,0,0,87644,0,1,1 +1773688772.353572,0.65,4,3992.50,54.52,1599.22,2134.56,0.00,0.000000,0.000781,3818672,3277707,0.000000,0.000020,65139998,31918022,0,0,87646,0,1,1 +1773688777.357721,0.95,4,3992.50,54.63,1594.80,2138.95,0.00,3515520249179.794922,3515520245810.270996,11,0,0.000056,0.000086,65140002,31918029,0,0,87649,0,1,1 +1773688782.353503,0.75,4,3992.50,54.66,1593.86,2139.93,0.00,0.000000,0.000000,11,0,0.000117,0.000160,65140012,31918041,0,0,87651,0,1,1 +1773688787.357635,0.70,4,3992.50,54.47,1601.25,2132.53,0.00,1.656346,10.666379,253,669,0.000000,0.000030,65140012,31918044,0,0,87654,0,1,1 +1773688792.357732,0.65,4,3992.50,54.47,1601.25,2132.53,0.00,0.517666,3518369417634.260254,258,2,0.000000,0.000020,65140012,31918046,0,0,87656,0,1,1 +1773688797.357545,14.73,4,3992.50,55.87,1546.29,2187.48,0.00,55201.380012,58575.121529,3817169,3277114,40.066445,0.020232,65144427,31919320,0,0,87659,0,1,1 +1773688802.358134,0.75,4,3992.50,55.04,1578.77,2155.00,0.00,3518022715830.270996,3518022712459.047852,205,0,0.000619,0.000273,65144439,31919329,0,0,87661,0,1,1 +1773688807.357843,1.00,4,3992.50,55.02,1575.45,2154.16,0.00,55204.514536,58576.524992,3817169,3277271,0.000000,0.000030,65144439,31919332,0,0,87664,0,1,1 +1773688812.353461,0.70,4,3992.50,54.78,1584.58,2144.92,0.00,3521523442888.507324,3521523439511.738281,258,2,0.000000,0.000020,65144439,31919334,0,0,87666,0,1,1 +1773688817.357873,0.95,4,3992.50,54.77,1585.20,2144.30,0.00,55150.653388,58521.530182,3817169,3277311,0.000000,0.000030,65144439,31919337,0,0,87669,0,1,1 +1773688822.357883,0.55,4,3992.50,54.77,1585.20,2144.29,0.00,9.726153,10.679276,3818672,3277986,0.000000,0.000020,65144439,31919339,0,0,87671,0,1,1 +1773688827.357585,0.70,4,3992.50,54.77,1584.99,2144.51,0.00,3518646857987.480469,3518646854614.597168,75,0,0.000000,0.000030,65144439,31919342,0,0,87674,0,1,1 +1773688832.353444,0.60,4,3992.50,54.79,1584.50,2145.00,0.00,0.126863,0.000000,205,0,0.000000,0.000020,65144439,31919344,0,0,87676,0,1,1 +1773688837.353452,0.95,4,3992.50,54.71,1589.61,2142.11,0.00,3518431342954.284668,0.000000,11,0,0.000000,0.000030,65144439,31919347,0,0,87679,0,1,1 +1773688842.353472,0.65,4,3992.50,54.62,1593.34,2138.39,0.00,1.657708,10.675152,253,669,0.000132,0.000169,65144449,31919359,0,0,87681,0,1,1 +1773688847.357890,0.70,4,3992.50,54.66,1591.68,2140.05,0.00,3515330903602.162109,3515330903593.152832,11,0,0.000041,0.000077,65144453,31919366,0,0,87684,0,1,1 +1773688852.358053,0.55,4,3992.50,54.66,1591.65,2140.08,0.00,0.053514,0.000000,75,0,0.000000,0.000020,65144453,31919368,0,0,87686,0,1,1 +1773688857.358373,0.60,4,3992.50,54.66,1591.65,2140.08,0.00,0.126750,0.000000,205,0,0.000000,0.000030,65144453,31919371,0,0,87689,0,1,1 +1773688862.353459,17.25,4,3992.50,55.77,1548.09,2183.64,0.00,1.478895,10.685697,253,669,40.105387,0.025516,65148886,31920991,0,0,87691,0,1,1 +1773688867.353481,1.10,4,3992.50,55.10,1574.94,2157.46,0.00,3518421601163.319336,3518421601154.302246,11,0,0.000619,0.000282,65148898,31921001,0,0,87694,0,1,1 +1773688872.357962,0.65,4,3992.50,54.42,1601.23,2130.51,0.00,55152.067238,58521.046919,3817169,3277592,0.000008,0.000028,65148899,31921004,0,0,87696,0,1,1 +1773688877.354613,0.70,4,3992.50,54.26,1607.30,2124.43,0.00,3520795004748.842773,3520795001372.407715,258,2,0.001230,0.001255,65148908,31921021,0,0,87699,0,1,1 +1773688882.355922,0.75,4,3992.50,54.26,1607.27,2124.46,0.00,3517516061472.936035,3517516061475.110840,11,0,0.000205,0.000552,65148915,31921034,0,0,87701,0,1,1 +1773688887.358338,0.65,4,3992.50,54.21,1609.34,2122.39,0.00,2.174340,0.000195,258,2,0.000000,0.000030,65148915,31921037,0,0,87704,0,1,1 +1773688892.357752,0.65,4,3992.50,54.25,1607.87,2123.87,0.00,3518849467433.508789,10.676251,253,669,0.000000,0.000020,65148915,31921039,0,0,87706,0,1,1 +1773688897.357684,1.00,4,3992.50,54.25,1612.29,2123.82,0.00,0.517683,3518485070824.943359,258,2,0.000000,0.000030,65148915,31921042,0,0,87709,0,1,1 +1773688902.355334,0.65,4,3992.50,54.23,1612.90,2123.21,0.00,0.000000,0.000000,258,2,0.000000,0.000020,65148915,31921044,0,0,87711,0,1,1 +1773688907.357570,0.65,4,3992.50,54.25,1612.16,2123.94,0.00,0.000000,0.000000,258,2,0.000132,0.000179,65148925,31921057,0,0,87714,0,1,1 +1773688912.353503,0.75,4,3992.50,54.25,1612.16,2123.94,0.00,55253.984682,58631.934329,3818672,3278314,0.000033,0.000059,65148928,31921062,0,0,87716,0,1,1 +1773688917.353506,0.70,4,3992.50,54.25,1611.95,2124.16,0.00,3518435528468.665039,3518435528467.720703,3817169,3277648,0.000000,0.000030,65148928,31921065,0,0,87719,0,1,1 +1773688922.354371,0.60,4,3992.50,54.24,1612.52,2123.59,0.00,3517828372377.076172,3517828369003.402344,258,2,0.000236,0.000577,65148937,31921080,0,0,87721,0,1,1 +1773688927.353426,16.08,4,3992.50,55.72,1548.75,2181.43,0.00,3519102218555.666016,10.677018,253,669,40.069538,0.020175,65153261,31922411,0,0,87724,0,1,1 +1773688932.357965,0.95,4,3992.50,54.95,1578.80,2151.39,0.00,55159.485711,58520.633306,3818672,3278505,0.002999,0.001427,65153316,31922450,0,0,87726,0,1,1 +1773688937.358274,0.75,4,3992.50,54.50,1596.38,2133.81,0.00,0.000000,0.002344,3818672,3278508,0.001425,0.001200,65153346,31922478,0,0,87729,0,1,1 +1773688942.358029,0.80,4,3992.50,54.42,1599.56,2130.63,0.00,3518609472644.854492,3518609469271.470703,11,0,0.001721,0.001343,65153370,31922495,0,0,87731,0,1,1 +1773688947.357481,0.65,4,3992.50,54.29,1604.71,2125.48,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65153370,31922498,0,0,87734,0,1,1 +1773688952.357968,0.65,4,3992.50,54.30,1604.19,2126.00,0.00,0.180256,0.000000,205,0,0.000000,0.000020,65153370,31922500,0,0,87736,0,1,1 +1773688957.357470,1.00,4,3992.50,54.35,1601.52,2128.05,0.00,3518787935625.412109,0.000000,11,0,0.000000,0.000030,65153370,31922503,0,0,87739,0,1,1 +1773688962.353438,0.70,4,3992.50,54.33,1602.34,2127.22,0.00,1.659053,10.683810,253,669,0.000000,0.000020,65153370,31922505,0,0,87741,0,1,1 +1773688967.353460,0.65,4,3992.50,54.15,1609.31,2120.25,0.00,55209.312355,58573.608640,3818672,3278580,0.000031,0.000055,65153372,31922510,0,0,87744,0,1,1 +1773688972.358251,0.65,4,3992.50,54.20,1607.62,2121.94,0.00,3515069112869.967773,3515069109499.868164,11,0,0.000039,0.000053,65153375,31922515,0,0,87746,0,1,1 +1773688977.358070,0.80,4,3992.50,54.20,1607.40,2122.16,0.00,55203.487847,58575.998037,3817169,3277916,0.000084,0.000131,65153382,31922525,0,0,87749,0,1,1 +1773688982.353459,0.50,4,3992.50,54.16,1609.02,2120.55,0.00,3521684610347.804199,3521684606981.329102,253,669,0.000082,0.000107,65153388,31922533,0,0,87751,0,1,1 +1773688987.353469,0.95,4,3992.50,54.29,1605.36,2125.43,0.00,0.000000,0.000000,253,669,0.000050,0.000092,65153392,31922540,0,0,87754,0,1,1 +1773688992.356570,14.26,4,3992.50,55.38,1561.25,2168.38,0.00,0.517355,3516256965696.219238,258,2,40.039230,0.023821,65157817,31924111,0,0,87756,0,1,1 +1773688997.353470,1.00,4,3992.50,54.77,1585.34,2144.29,0.00,55243.286426,58621.040426,3818672,3278753,0.003086,0.001439,65157873,31924151,0,0,87759,0,1,1 +1773689002.353479,0.60,4,3992.50,54.33,1602.50,2127.12,0.00,3518430748720.649902,3518430745347.171387,11,0,0.000000,0.000020,65157873,31924153,0,0,87761,0,1,1 +1773689007.353455,0.65,4,3992.50,54.23,1606.34,2123.28,0.00,2.175401,0.000195,258,2,0.000000,0.000030,65157873,31924156,0,0,87764,0,1,1 +1773689012.357774,0.60,4,3992.50,54.23,1606.35,2123.28,0.00,0.000000,0.000000,258,2,0.000000,0.000020,65157873,31924158,0,0,87766,0,1,1 +1773689017.355106,0.85,4,3992.50,54.42,1594.46,2130.59,0.00,3520315580982.572266,10.680699,253,669,0.000000,0.000030,65157873,31924161,0,0,87769,0,1,1 +1773689022.354923,0.65,4,3992.50,54.42,1594.43,2130.64,0.00,3518565689307.687500,3518565689298.669922,11,0,0.000000,0.000020,65157873,31924163,0,0,87771,0,1,1 +1773689027.353447,0.70,4,3992.50,54.42,1594.43,2130.64,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65157873,31924166,0,0,87774,0,1,1 +1773689032.358030,0.75,4,3992.50,54.42,1594.43,2130.63,0.00,0.180108,0.000000,205,0,0.000000,0.000020,65157873,31924168,0,0,87776,0,1,1 +1773689037.356426,0.75,4,3992.50,54.41,1594.68,2130.39,0.00,55228.743769,58603.629320,3818672,3278838,0.000056,0.000086,65157877,31924175,0,0,87779,0,1,1 +1773689042.354535,0.75,4,3992.50,54.33,1597.98,2127.07,0.00,3519768384281.010254,3519768380915.131836,253,669,0.000117,0.000160,65157887,31924187,0,0,87781,0,1,1 +1773689047.356280,0.90,4,3992.50,54.34,1590.37,2127.48,0.00,55190.997919,58553.762034,3818711,3278854,0.000000,0.000030,65157887,31924190,0,0,87784,0,1,1 +1773689052.353446,0.65,4,3992.50,54.32,1591.20,2126.66,0.00,3520432599646.379883,3520432596280.534668,253,669,0.000000,0.000020,65157887,31924192,0,0,87786,0,1,1 +1773689057.353452,18.44,4,3992.50,55.62,1540.30,2177.54,0.00,55200.465266,58563.476861,3817208,3278235,40.061678,0.023700,65162185,31925803,0,0,87789,0,1,1 +1773689062.357762,0.85,4,3992.50,54.94,1566.90,2150.95,0.00,9.717796,10.767770,3818711,3279013,0.003082,0.001427,65162241,31925842,0,0,87791,0,1,1 +1773689067.358228,0.55,4,3992.50,54.26,1593.52,2124.33,0.00,3518109078357.844238,3518109078356.899902,3817208,3278347,0.000000,0.000030,65162241,31925845,0,0,87794,0,1,1 +1773689072.354193,0.70,4,3992.50,54.03,1602.62,2115.23,0.00,3521278863049.045898,3521278859674.182617,11,0,0.000000,0.000020,65162241,31925847,0,0,87796,0,1,1 +1773689077.356004,1.00,4,3992.50,54.33,1591.16,2126.98,0.00,0.053496,0.000000,75,0,0.000000,0.000030,65162241,31925850,0,0,87799,0,1,1 +1773689082.353552,0.70,4,3992.50,54.33,1590.98,2127.20,0.00,1.604986,10.680431,253,669,0.000000,0.000020,65162241,31925852,0,0,87801,0,1,1 +1773689087.356537,0.75,4,3992.50,54.33,1591.18,2127.00,0.00,3516338415487.828613,3516338415478.816895,11,0,0.000000,0.000030,65162241,31925855,0,0,87804,0,1,1 +1773689092.353472,0.70,4,3992.50,54.13,1598.80,2119.38,0.00,55236.047072,58610.363468,3817208,3278415,0.000000,0.000020,65162241,31925857,0,0,87806,0,1,1 +1773689097.353612,0.60,4,3992.50,54.14,1598.59,2119.59,0.00,3518338844960.671387,3518338841588.517090,11,0,0.000000,0.000030,65162241,31925860,0,0,87809,0,1,1 +1773689102.355820,0.75,4,3992.50,54.13,1598.68,2119.50,0.00,55177.868610,58548.618117,3817210,3278428,0.000056,0.000076,65162245,31925866,0,0,87811,0,1,1 +1773689107.353472,1.05,4,3992.50,54.31,1593.84,2126.46,0.00,9.730741,10.760912,3818713,3279167,0.000117,0.000170,65162255,31925879,0,0,87814,0,1,1 +1773689112.353488,0.70,4,3992.50,54.33,1593.32,2126.94,0.00,3518425901041.522949,3518425897668.266113,11,0,0.000000,0.000020,65162255,31925881,0,0,87816,0,1,1 +1773689117.353448,0.85,4,3992.50,54.33,1593.10,2127.16,0.00,55212.402962,58585.700006,3818713,3279170,0.000000,0.000030,65162255,31925884,0,0,87819,0,1,1 +1773689122.357532,15.60,4,3992.50,55.74,1538.04,2182.20,0.00,3515565563082.160156,3515565559709.469727,258,2,40.034425,0.029281,65166818,31927944,0,0,87821,0,1,1 +1773689127.353460,0.90,4,3992.50,54.88,1571.62,2148.62,0.00,3521305111884.524414,3521305111886.701172,11,0,0.003088,0.001601,65166874,31927985,0,0,87824,0,1,1 +1773689132.356812,0.65,4,3992.50,54.35,1592.32,2127.91,0.00,0.000000,0.000000,11,0,0.000000,0.000020,65166874,31927987,0,0,87826,0,1,1 +1773689137.357959,0.95,4,3992.50,54.12,1607.02,2118.89,0.00,55199.309603,58571.989163,3818713,3279341,0.000000,0.000030,65166874,31927990,0,0,87829,0,1,1 +1773689142.357432,1.60,4,3992.50,54.06,1609.16,2116.75,0.00,3518807605290.786133,3518807601916.978027,11,0,0.000000,0.000020,65166874,31927992,0,0,87831,0,1,1 +1773689147.358415,0.70,4,3992.50,53.68,1624.20,2101.72,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65166874,31927995,0,0,87834,0,1,1 +1773689152.358010,0.65,4,3992.50,53.71,1622.97,2102.95,0.00,0.053520,0.000000,75,0,0.000000,0.000033,65166874,31927998,0,0,87836,0,1,1 +1773689157.358066,0.80,4,3992.50,53.71,1622.97,2102.95,0.00,55201.570384,58574.137572,3817210,3278714,0.000000,0.000030,65166874,31928001,0,0,87839,0,1,1 +1773689162.354341,0.70,4,3992.50,53.73,1622.24,2103.68,0.00,3521059760819.671875,3521059757444.426758,205,0,0.000000,0.000020,65166874,31928003,0,0,87841,0,1,1 +1773689167.356193,0.80,4,3992.50,54.18,1600.94,2121.36,0.00,55181.626392,58553.170460,3817210,3278753,0.000056,0.000086,65166878,31928010,0,0,87844,0,1,1 +1773689172.358020,0.70,4,3992.50,54.38,1593.21,2129.11,0.00,3517151447714.549316,3517151444342.989258,205,0,0.000117,0.000160,65166888,31928022,0,0,87846,0,1,1 +1773689177.357461,0.65,4,3992.50,54.16,1601.71,2120.62,0.00,0.000000,0.000000,205,0,0.000308,0.000584,65166895,31928036,0,0,87849,0,1,1 +1773689182.354643,0.75,4,3992.50,54.16,1601.74,2120.59,0.00,3520421648739.799805,0.000000,11,0,0.001127,0.001222,65166904,31928052,0,0,87851,0,1,1 +1773689187.357956,14.66,4,3992.50,59.21,1404.24,2318.07,0.00,2.173950,0.000195,258,2,40.035926,0.020260,65171268,31929360,0,0,87854,0,1,1 +1773689192.358419,0.95,4,3992.50,54.95,1570.94,2151.36,0.00,3518111444428.129395,10.674012,253,669,0.004248,0.002238,65171361,31929422,0,0,87856,0,1,1 +1773689197.357888,1.05,4,3992.50,54.48,1588.44,2133.20,0.00,3518810653218.546875,3518810653209.528809,11,0,0.000000,0.000030,65171361,31929425,0,0,87859,0,1,1 +1773689202.356935,0.70,4,3992.50,54.39,1592.32,2129.29,0.00,0.180308,0.000000,205,0,0.000000,0.000020,65171361,31929427,0,0,87861,0,1,1 +1773689207.353621,0.65,4,3992.50,54.39,1592.11,2129.51,0.00,55248.399452,58624.648390,3818713,3279664,0.000000,0.000030,65171361,31929430,0,0,87864,0,1,1 +1773689212.358243,0.70,4,3992.50,54.39,1592.11,2129.51,0.00,3515187782282.116211,3515187778909.227539,258,2,0.000000,0.000020,65171361,31929432,0,0,87866,0,1,1 +1773689217.356874,0.65,4,3992.50,54.39,1592.11,2129.51,0.00,3519400930662.807129,10.677924,253,669,0.000000,0.000030,65171361,31929435,0,0,87869,0,1,1 +1773689222.353456,0.65,4,3992.50,54.39,1592.11,2129.51,0.00,3520843787998.564453,3520843787989.360352,205,0,0.000236,0.000578,65171370,31929450,0,0,87871,0,1,1 +1773689227.353472,0.95,4,3992.50,54.41,1594.46,2130.20,0.00,55201.879596,58574.979278,3817210,3279026,0.000039,0.000063,65171373,31929456,0,0,87874,0,1,1 +1773689232.353578,0.65,4,3992.50,54.41,1594.48,2130.20,0.00,3518362622094.524414,3518362618721.665527,11,0,0.000031,0.000045,65171375,31929460,0,0,87876,0,1,1 +1773689237.353496,0.75,4,3992.50,54.39,1595.39,2129.29,0.00,0.000000,0.000000,11,0,0.001543,0.001355,65171414,31929498,0,0,87879,0,1,1 +1773689242.353661,0.70,4,3992.50,54.42,1593.96,2130.73,0.00,0.000000,0.000000,11,0,0.001064,0.000429,65171436,31929514,0,0,87881,0,1,1 +1773689247.353575,0.70,4,3992.50,54.42,1593.96,2130.72,0.00,1.657743,10.675378,253,669,0.000000,0.000030,65171436,31929517,0,0,87884,0,1,1 +1773689252.353707,17.91,4,3992.50,56.19,1524.54,2200.14,0.00,55208.852107,58573.664172,3818713,3279759,40.062210,0.022801,65175856,31931068,0,0,87886,0,1,1 +1773689257.357564,1.15,4,3992.50,55.41,1559.62,2169.38,0.00,3515725216757.323730,3515725213386.006348,11,0,0.003082,0.001603,65175912,31931109,0,0,87889,0,1,1 +1773689262.357856,0.60,4,3992.50,54.63,1590.03,2138.98,0.00,55199.008190,58571.983995,3817210,3279258,0.000000,0.000020,65175912,31931111,0,0,87891,0,1,1 +1773689267.353554,0.70,4,3992.50,54.27,1604.14,2124.86,0.00,3521467188151.680176,3521467184784.627441,253,669,0.000031,0.000055,65175914,31931116,0,0,87894,0,1,1 +1773689272.356964,0.70,4,3992.50,54.26,1604.59,2124.42,0.00,3516039100741.932129,3516039100732.740723,205,0,0.000008,0.000028,65175915,31931119,0,0,87896,0,1,1 +1773689277.357468,0.60,4,3992.50,54.25,1605.17,2123.83,0.00,1.994916,0.000195,258,2,0.000000,0.000030,65175915,31931122,0,0,87899,0,1,1 +1773689282.358307,0.65,4,3992.50,54.25,1605.17,2123.83,0.00,3517847479745.455566,10.673211,253,669,0.000056,0.000076,65175919,31931128,0,0,87901,0,1,1 +1773689287.358364,0.90,4,3992.50,54.26,1604.48,2124.52,0.00,3518397056230.837891,3518397056221.640137,205,0,0.000025,0.000061,65175921,31931133,0,0,87904,0,1,1 +1773689292.357790,0.70,4,3992.50,54.21,1606.58,2122.43,0.00,55218.109526,58592.853471,3818713,3279966,0.000008,0.000028,65175922,31931136,0,0,87906,0,1,1 +1773689297.357962,0.70,4,3992.50,54.21,1606.58,2122.43,0.00,3518316433197.836914,3518316429823.722168,75,0,0.000056,0.000086,65175926,31931143,0,0,87909,0,1,1 +1773689302.357969,0.75,4,3992.50,54.21,1606.69,2122.31,0.00,55211.832107,58586.072737,3818713,3279979,0.000101,0.000144,65175934,31931153,0,0,87911,0,1,1 +1773689307.358083,0.65,4,3992.50,54.16,1608.40,2120.60,0.00,3518356384876.901367,3518356381500.611328,258,2,0.000000,0.000030,65175934,31931156,0,0,87914,0,1,1 +1773689312.356277,0.65,4,3992.50,54.16,1608.65,2120.35,0.00,3519708885332.882812,3519708885335.005371,75,0,0.000000,0.000020,65175934,31931158,0,0,87916,0,1,1 +1773689317.356400,20.93,4,3992.50,59.49,1396.26,2329.22,0.00,3518350843221.328125,0.000000,11,0,38.660392,0.022611,65180153,31932680,0,0,87919,0,1,1 +1773689322.353455,0.80,4,3992.50,54.49,1592.14,2133.35,0.00,55234.766612,58610.178879,3817210,3279491,1.406146,0.002840,65180377,31932784,0,0,87921,0,1,1 +1773689327.353718,0.65,4,3992.50,54.49,1592.14,2133.35,0.00,3518252174536.385254,3518252171163.138184,11,0,0.000000,0.000030,65180377,31932787,0,0,87924,0,1,1 +1773689332.354277,0.70,4,3992.50,54.49,1592.14,2133.35,0.00,0.000000,0.000000,11,0,0.000000,0.000020,65180377,31932789,0,0,87926,0,1,1 +1773689337.358367,0.65,4,3992.50,54.49,1592.14,2133.34,0.00,0.053472,0.000000,75,0,0.000000,0.000030,65180377,31932792,0,0,87929,0,1,1 +1773689342.357664,0.75,4,3992.50,54.49,1592.14,2133.34,0.00,55219.676725,58594.599635,3818713,3280175,0.000000,0.000020,65180377,31932794,0,0,87931,0,1,1 +1773689347.357654,0.85,4,3992.50,54.45,1589.24,2132.02,0.00,3518444239114.248047,3518444235739.846680,11,0,0.000000,0.000030,65180377,31932797,0,0,87934,0,1,1 +1773689352.357293,0.70,4,3992.50,54.47,1588.80,2132.50,0.00,0.180286,0.000000,205,0,0.000000,0.000020,65180377,31932799,0,0,87936,0,1,1 +1773689357.357583,0.60,4,3992.50,54.47,1588.57,2132.74,0.00,3518233084517.688477,0.000000,11,0,0.000000,0.000030,65180377,31932802,0,0,87939,0,1,1 +1773689362.354585,0.55,4,3992.50,54.47,1588.57,2132.74,0.00,2.176696,0.000195,258,2,0.000056,0.000076,65180381,31932808,0,0,87941,0,1,1 +1773689367.357450,0.75,4,3992.50,54.47,1588.57,2132.73,0.00,3516421655064.225586,3516421655066.399414,11,0,0.000117,0.000170,65180391,31932821,0,0,87944,0,1,1 +1773689372.354877,0.70,4,3992.50,54.48,1588.36,2132.95,0.00,55230.668414,58605.972499,3817210,3279582,0.000000,0.000020,65180391,31932823,0,0,87946,0,1,1 +1773689377.357867,0.90,4,3992.50,54.57,1584.68,2136.61,0.00,3516334271857.344727,3516334268485.614746,205,0,0.000000,0.000030,65180391,31932826,0,0,87949,0,1,1 +1773689382.358004,14.89,4,3992.50,59.43,1394.53,2326.78,0.00,3518340424263.624512,0.000000,11,0,40.059865,0.019669,65184696,31934193,0,0,87951,0,1,1 +1773689387.358137,1.00,4,3992.50,55.80,1536.57,2184.74,0.00,55210.489362,58585.061642,3818713,3280419,0.004082,0.002823,65184777,31934267,0,0,87954,0,1,1 +1773689392.356030,0.60,4,3992.50,54.89,1572.21,2149.10,0.00,0.000000,0.006253,3818713,3280421,0.000000,0.000020,65184777,31934269,0,0,87956,0,1,1 +1773689397.353454,0.80,4,3992.50,54.64,1581.89,2139.41,0.00,3520250943960.760254,3520250940584.352051,11,0,0.000000,0.000030,65184777,31934272,0,0,87959,0,1,1 +1773689402.353443,0.90,4,3992.50,54.45,1589.40,2131.91,0.00,55202.362796,58576.132846,3817210,3279760,0.000000,0.000020,65184777,31934274,0,0,87961,0,1,1 +1773689407.353684,1.10,4,3992.50,54.65,1589.81,2139.85,0.00,3518267129903.699707,3518267126530.046875,75,0,0.000000,0.000030,65184777,31934277,0,0,87964,0,1,1 +1773689412.357902,1.00,4,3992.50,54.21,1604.53,2122.29,0.00,3515471710222.969238,0.000000,11,0,0.000000,0.000020,65184777,31934279,0,0,87966,0,1,1 +1773689417.353390,1.00,4,3992.50,54.24,1603.10,2123.72,0.00,0.053564,0.000000,75,0,0.000000,0.000030,65184777,31934282,0,0,87969,0,1,1 +1773689422.356885,1.00,4,3992.50,54.26,1602.54,2124.29,0.00,3515979815348.231445,0.000000,11,0,0.000000,0.000020,65184777,31934284,0,0,87971,0,1,1 +1773689427.358349,0.85,4,3992.50,54.28,1601.73,2125.09,0.00,0.053500,0.000000,75,0,0.000031,0.000055,65184779,31934289,0,0,87974,0,1,1 +1773689432.353554,0.85,4,3992.50,54.28,1601.84,2124.99,0.00,3521814601615.942383,0.000000,11,0,0.000142,0.000191,65184791,31934303,0,0,87976,0,1,1 +1773689437.353552,1.10,4,3992.50,54.39,1594.29,2129.39,0.00,1.657715,10.675199,253,669,0.000000,0.000030,65184791,31934306,0,0,87979,0,1,1 +1773689442.353599,0.70,4,3992.50,54.26,1599.13,2124.55,0.00,55200.063552,58564.990275,3817210,3279941,0.000000,0.000020,65184791,31934308,0,0,87981,0,1,1 +1773689447.353466,16.81,4,3992.50,59.26,1403.51,2320.17,0.00,3518530280029.353027,3518530276655.234375,75,0,29.047472,0.018196,65188031,31935559,0,0,87984,0,1,1 +1773689452.353477,1.00,4,3992.50,54.69,1582.48,2141.20,0.00,55202.058751,58576.139562,3817210,3280029,11.018659,0.005271,65189204,31935827,0,0,87986,0,1,1 +1773689457.353561,0.60,4,3992.50,54.49,1590.39,2133.29,0.00,3518378541013.031250,3518378537638.872559,205,0,0.000000,0.000030,65189204,31935830,0,0,87989,0,1,1 +1773689462.353498,0.70,4,3992.50,54.49,1590.09,2133.58,0.00,3518481488972.612305,0.000000,75,0,0.000000,0.000020,65189204,31935832,0,0,87991,0,1,1 +1773689467.357691,0.90,4,3992.50,54.91,1573.91,2149.76,0.00,55165.638340,58538.002823,3818713,3280816,0.000000,0.000030,65189204,31935835,0,0,87994,0,1,1 +1773689472.358172,0.65,4,3992.50,54.84,1576.75,2146.92,0.00,3518099300744.891113,3518099297369.895508,205,0,0.000000,0.000020,65189204,31935837,0,0,87996,0,1,1 +1773689477.358256,0.70,4,3992.50,54.83,1576.83,2146.84,0.00,3518377566050.249512,0.000000,75,0,0.000308,0.000584,65189211,31935851,0,0,87999,0,1,1 +1773689482.354672,0.65,4,3992.50,54.84,1576.59,2147.09,0.00,2.123397,0.000195,258,2,0.000213,0.000560,65189219,31935865,0,0,88001,0,1,1 +1773689487.357561,0.75,4,3992.50,54.84,1576.36,2147.30,0.00,3516405249887.690918,3516405249889.865234,11,0,0.000000,0.000030,65189219,31935868,0,0,88004,0,1,1 +1773689492.357740,0.65,4,3992.50,54.84,1576.36,2147.30,0.00,1.657656,10.674814,253,669,0.000031,0.000045,65189221,31935872,0,0,88006,0,1,1 +1773689497.357682,0.80,4,3992.50,54.84,1577.48,2147.28,0.00,0.000000,0.000000,253,669,0.000126,0.000185,65189231,31935885,0,0,88009,0,1,1 +1773689502.357905,0.90,4,3992.50,54.82,1578.44,2146.32,0.00,55207.835658,58573.935323,3818713,3280917,0.000000,0.000020,65189231,31935887,0,0,88011,0,1,1 +1773689507.357627,0.55,4,3992.50,54.62,1586.08,2138.68,0.00,3518633195727.192383,3518633192351.736816,11,0,0.000000,0.000030,65189231,31935890,0,0,88014,0,1,1 +1773689512.355233,15.46,4,3992.50,59.31,1402.68,2322.07,0.00,2.176432,0.000195,258,2,24.014346,0.020036,65191935,31937215,0,0,88016,0,1,1 +1773689517.353566,1.51,4,3992.50,55.30,1559.84,2164.93,0.00,55228.201175,58606.909060,3818713,3281084,16.068890,0.010282,65193673,31937881,0,0,88019,0,1,1 +1773689522.357944,0.60,4,3992.50,54.81,1579.02,2145.74,0.00,3515358679549.953125,3515358676177.500488,11,0,0.000236,0.000577,65193682,31937896,0,0,88021,0,1,1 +1773689527.353467,1.00,4,3992.50,54.58,1593.58,2136.93,0.00,1.659201,10.684764,253,669,0.000039,0.000063,65193685,31937902,0,0,88024,0,1,1 +1773689532.353436,0.75,4,3992.50,54.57,1593.93,2136.58,0.00,3518459145770.804688,3518459145761.606934,205,0,0.000000,0.000020,65193685,31937904,0,0,88026,0,1,1 +1773689537.357851,0.80,4,3992.50,54.56,1594.27,2136.24,0.00,55163.071192,58535.834046,3818713,3281204,0.002085,0.002112,65193717,31937933,0,0,88029,0,1,1 +1773689542.357812,0.85,4,3992.50,54.54,1595.13,2135.38,0.00,3518464139587.677734,3518464136211.910645,205,0,0.001064,0.000421,65193739,31937948,0,0,88031,0,1,1 +1773689547.358340,0.60,4,3992.50,54.55,1594.89,2135.62,0.00,3518065832706.801758,0.000000,75,0,0.000000,0.000030,65193739,31937951,0,0,88034,0,1,1 +1773689552.354304,0.70,4,3992.50,54.36,1602.28,2128.23,0.00,55246.775613,58624.191869,3817210,3280549,0.000013,0.000020,65193740,31937953,0,0,88036,0,1,1 +1773689557.354840,0.90,4,3992.50,54.75,1586.63,2143.74,0.00,3518060215340.865234,3518060211966.589844,11,0,0.000031,0.000055,65193742,31937958,0,0,88039,0,1,1 +1773689562.358138,0.70,4,3992.50,54.56,1594.03,2136.30,0.00,55175.563665,58548.971769,3818713,3281250,0.000075,0.000113,65193748,31937966,0,0,88041,0,1,1 +1773689567.357571,0.65,4,3992.50,54.37,1601.67,2128.66,0.00,3518836449723.153809,3518836449722.209473,3817210,3280584,0.000031,0.000055,65193750,31937971,0,0,88044,0,1,1 +1773689572.353504,0.70,4,3992.50,54.38,1601.43,2128.91,0.00,3521301345688.453613,3521301342320.041992,253,669,0.000000,0.000020,65193750,31937973,0,0,88046,0,1,1 +1773689577.358603,11.93,4,3992.50,59.16,1414.03,2316.29,0.00,0.000000,0.000000,253,669,20.213307,0.013849,65196028,31938880,0,0,88049,0,1,1 +1773689582.357862,2.61,4,3992.50,54.38,1601.41,2128.92,0.00,3518958580600.010742,3518958580590.992676,11,0,19.834001,0.006352,65198131,31939233,0,0,88051,0,1,1 +1773689587.357936,0.95,4,3992.50,54.62,1594.79,2138.43,0.00,0.000000,0.000000,11,0,0.000025,0.000061,65198133,31939238,0,0,88054,0,1,1 +1773689592.357846,0.70,4,3992.50,54.62,1594.55,2138.67,0.00,55212.964306,58588.894130,3818713,3281474,0.000000,0.000020,65198133,31939240,0,0,88056,0,1,1 +1773689597.358151,0.60,4,3992.50,54.42,1602.42,2130.81,0.00,3518222361270.625977,3518222357894.910156,75,0,0.000000,0.000030,65198133,31939243,0,0,88059,0,1,1 +1773689602.354029,0.70,4,3992.50,54.43,1602.17,2131.06,0.00,3521339790818.478027,0.000000,11,0,0.000000,0.000020,65198133,31939245,0,0,88061,0,1,1 +1773689607.358400,0.55,4,3992.50,54.43,1602.18,2131.05,0.00,55163.743230,58536.686909,3818713,3281490,0.000000,0.000030,65198133,31939248,0,0,88064,0,1,1 +1773689612.358368,0.60,4,3992.50,54.43,1602.18,2131.05,0.00,3518459500814.913086,3518459497439.000000,11,0,0.000000,0.000020,65198133,31939250,0,0,88066,0,1,1 +1773689617.357739,0.90,4,3992.50,54.55,1597.18,2135.94,0.00,55209.175492,58584.582375,3817210,3280840,0.000000,0.000030,65198133,31939253,0,0,88069,0,1,1 +1773689622.357647,0.70,4,3992.50,54.55,1595.14,2135.94,0.00,3518502024302.967773,3518502020927.742676,205,0,0.000031,0.000045,65198135,31939257,0,0,88071,0,1,1 +1773689627.358002,0.70,4,3992.50,54.52,1596.48,2134.60,0.00,55198.136876,58573.078904,3817210,3280861,0.000134,0.000193,65198146,31939271,0,0,88074,0,1,1 +1773689632.357318,0.70,4,3992.50,54.53,1596.26,2134.82,0.00,3518918694481.617188,3518918691103.978516,258,2,0.000000,0.000020,65198146,31939273,0,0,88076,0,1,1 +1773689637.353474,0.55,4,3992.50,54.55,1595.52,2135.55,0.00,55252.264012,58632.999011,3818713,3281538,0.000000,0.000030,65198146,31939276,0,0,88079,0,1,1 +1773689642.357790,12.01,4,3992.50,59.49,1401.89,2329.15,0.00,3515402094714.761230,3515402091339.539062,258,2,9.612883,0.014133,65199459,31940183,0,0,88081,0,1,1 +1773689647.358096,4.91,4,3992.50,56.09,1527.11,2195.94,0.00,3518222346118.493652,10.674348,253,669,30.444978,0.012377,65202663,31940986,0,0,88084,0,1,1 +1773689652.353622,0.65,4,3992.50,55.37,1555.14,2167.90,0.00,3521588510812.309082,3521588510803.229980,75,0,0.000000,0.000020,65202663,31940988,0,0,88086,0,1,1 +1773689657.353560,0.75,4,3992.50,54.99,1570.17,2152.88,0.00,0.126759,0.000000,205,0,0.000000,0.000030,65202663,31940991,0,0,88089,0,1,1 +1773689662.354821,0.70,4,3992.50,54.68,1582.31,2140.74,0.00,0.000000,0.000000,205,0,0.000000,0.000020,65202663,31940993,0,0,88091,0,1,1 +1773689667.357804,0.65,4,3992.50,54.68,1582.22,2140.84,0.00,3516339676399.382812,0.000000,11,0,0.000000,0.000030,65202663,31940996,0,0,88094,0,1,1 +1773689672.353558,0.65,4,3992.50,54.68,1582.03,2141.02,0.00,1.659124,10.684267,253,669,0.000000,0.000020,65202663,31940998,0,0,88096,0,1,1 +1773689677.357956,0.90,4,3992.50,54.68,1580.27,2141.00,0.00,0.000000,0.000000,253,669,0.000000,0.000030,65202663,31941001,0,0,88099,0,1,1 +1773689682.355864,0.70,4,3992.50,54.66,1581.10,2139.90,0.00,55233.410501,58602.038460,3818713,3281783,0.000000,0.000020,65202663,31941003,0,0,88101,0,1,1 +1773689687.357445,0.75,4,3992.50,54.66,1581.10,2139.90,0.00,3517325199147.327148,3517325195769.983398,258,2,0.000031,0.000055,65202665,31941008,0,0,88104,0,1,1 +1773689692.357999,0.60,4,3992.50,54.66,1581.10,2139.90,0.00,55203.662969,58581.708253,3818713,3281789,0.000142,0.000191,65202677,31941022,0,0,88106,0,1,1 +1773689697.358392,0.70,4,3992.50,54.66,1581.10,2139.90,0.00,0.000000,0.007031,3818713,3281794,0.000000,0.000030,65202677,31941025,0,0,88109,0,1,1 +1773689702.357773,0.65,4,3992.50,54.44,1589.64,2131.36,0.00,3518872763375.912109,3518872759999.242188,11,0,0.000000,0.000020,65202677,31941027,0,0,88111,0,1,1 +1773689707.357689,16.06,4,3992.50,59.15,1405.65,2315.78,0.00,0.180276,0.000000,205,0,24.441253,0.015494,65205467,31942063,0,0,88114,0,1,1 +1773689712.357595,1.45,4,3992.50,55.29,1555.60,2164.75,0.00,1.477469,10.675395,253,669,15.625508,0.005371,65207131,31942339,0,0,88116,0,1,1 +1773689717.353879,0.85,4,3992.50,54.68,1579.51,2140.84,0.00,55251.362162,58621.343173,3818713,3282020,0.000000,0.000030,65207131,31942342,0,0,88119,0,1,1 +1773689722.354589,0.70,4,3992.50,54.43,1589.27,2131.09,0.00,3517937576283.319824,3517937572905.129883,258,2,0.000000,0.000020,65207131,31942344,0,0,88121,0,1,1 +1773689727.357714,0.75,4,3992.50,54.38,1591.32,2129.04,0.00,3516239524016.172363,3516239524018.292969,75,0,0.000000,0.000030,65207131,31942347,0,0,88124,0,1,1 +1773689732.358082,0.50,4,3992.50,54.38,1591.08,2129.28,0.00,55198.127626,58573.515701,3817210,3281391,0.000000,0.000020,65207131,31942349,0,0,88126,0,1,1 +1773689737.353468,1.05,4,3992.50,54.43,1590.49,2131.01,0.00,3521686482793.560059,3521686479423.885742,253,669,0.000000,0.000030,65207131,31942352,0,0,88129,0,1,1 +1773689742.353452,0.65,4,3992.50,54.39,1590.03,2129.47,0.00,0.517677,3518448273688.655762,258,2,0.000000,0.000020,65207131,31942354,0,0,88131,0,1,1 +1773689747.357774,0.70,4,3992.50,54.39,1590.04,2129.47,0.00,55162.102283,58538.008902,3818713,3282132,0.000000,0.000030,65207131,31942357,0,0,88134,0,1,1 +1773689752.357820,0.75,4,3992.50,54.39,1590.04,2129.47,0.00,3518405543927.259766,3518405543926.313477,3817210,3281462,0.000031,0.000045,65207133,31942361,0,0,88136,0,1,1 +1773689757.356235,0.70,4,3992.50,54.39,1590.04,2129.47,0.00,3519552898410.035156,3519552895031.084961,258,2,0.000142,0.000201,65207145,31942376,0,0,88139,0,1,1 +1773689762.354590,0.50,4,3992.50,54.39,1590.04,2129.47,0.00,3519594700806.134277,3519594700808.130371,205,0,0.000000,0.000020,65207145,31942378,0,0,88141,0,1,1 +1773689767.357629,1.00,4,3992.50,54.46,1586.79,2132.10,0.00,3516300179558.672852,0.000000,11,0,0.000000,0.000030,65207145,31942381,0,0,88144,0,1,1 +1773689772.357534,15.02,4,3992.50,58.95,1410.71,2308.18,0.00,0.180277,0.000000,205,0,16.630150,0.015165,65209112,31943391,0,0,88146,0,1,1 +1773689777.357600,2.71,4,3992.50,54.65,1579.33,2139.55,0.00,3518391191141.006348,0.000000,75,0,23.436086,0.009337,65211528,31943899,0,0,88149,0,1,1 +1773689782.355404,0.75,4,3992.50,54.15,1598.96,2119.93,0.00,3519982972093.521973,0.000000,11,0,0.000205,0.000552,65211535,31943912,0,0,88151,0,1,1 +1773689787.357436,0.70,4,3992.50,54.00,1604.57,2114.33,0.00,0.053494,0.000000,75,0,0.000000,0.000030,65211535,31943915,0,0,88154,0,1,1 +1773689792.357321,0.70,4,3992.50,54.00,1604.53,2114.36,0.00,55203.449289,58579.438964,3817210,3281642,0.000000,0.000020,65211535,31943917,0,0,88156,0,1,1 +1773689797.353595,0.95,4,3992.50,54.10,1602.22,2117.98,0.00,3521060679093.524414,3521060675724.172363,253,669,0.000000,0.000030,65211535,31943920,0,0,88159,0,1,1 +1773689802.355920,0.70,4,3992.50,54.10,1601.96,2118.23,0.00,3516801951539.728027,3516801951530.534180,205,0,0.000000,0.000020,65211535,31943922,0,0,88161,0,1,1 +1773689807.357558,0.60,4,3992.50,54.10,1601.97,2118.22,0.00,0.000000,0.000000,205,0,0.000000,0.000030,65211535,31943925,0,0,88164,0,1,1 +1773689812.353556,0.65,4,3992.50,54.11,1601.76,2118.43,0.00,1.996715,0.000195,258,2,0.000000,0.000020,65211535,31943927,0,0,88166,0,1,1 +1773689817.353954,0.80,4,3992.50,54.11,1601.76,2118.43,0.00,55195.668333,58573.581850,3817210,3281734,0.000031,0.000055,65211537,31943932,0,0,88169,0,1,1 +1773689822.354929,0.65,4,3992.50,54.11,1601.76,2118.43,0.00,9.724275,10.678776,3818713,3282408,0.000370,0.000740,65211557,31943958,0,0,88171,0,1,1 +1773689827.357569,0.65,4,3992.50,54.06,1603.73,2116.46,0.00,3516580092033.545410,3516580088658.366211,11,0,0.000031,0.000055,65211559,31943963,0,0,88174,0,1,1 +1773689832.358419,1.05,4,3992.50,54.18,1598.80,2121.35,0.00,1.657433,10.673382,253,669,0.000000,0.000020,65211559,31943965,0,0,88176,0,1,1 +1773689837.354569,12.34,4,3992.50,58.99,1410.52,2309.64,0.00,55252.854545,58623.453844,3818713,3282464,12.434554,0.014846,65213094,31944838,0,0,88179,0,1,1 +1773689842.353698,4.06,4,3992.50,54.18,1598.90,2121.25,0.00,3519049417595.643066,3519049414217.980957,75,0,27.651826,0.018647,65216060,31946039,0,0,88181,0,1,1 +1773689847.357810,0.60,4,3992.50,54.04,1604.53,2115.62,0.00,1.602881,10.666425,253,669,0.000000,0.000030,65216060,31946042,0,0,88184,0,1,1 +1773689852.358144,0.65,4,3992.50,54.04,1604.30,2115.86,0.00,0.000000,0.000000,253,669,0.000000,0.000020,65216060,31946044,0,0,88186,0,1,1 +1773689857.357557,0.65,4,3992.50,53.85,1611.93,2108.21,0.00,3518850775894.381836,3518850775885.363770,11,0,0.000000,0.000030,65216060,31946047,0,0,88189,0,1,1 +1773689862.354574,0.95,4,3992.50,53.96,1610.42,2112.82,0.00,0.000000,0.000000,11,0,0.000000,0.000020,65216060,31946049,0,0,88191,0,1,1 +1773689867.353464,0.70,4,3992.50,53.96,1610.42,2112.82,0.00,0.053528,0.000000,75,0,0.000031,0.000055,65216062,31946054,0,0,88194,0,1,1 +1773689872.356713,0.60,4,3992.50,53.97,1610.19,2113.05,0.00,0.126675,0.000000,205,0,0.000008,0.000028,65216063,31946057,0,0,88196,0,1,1 +1773689877.353456,0.70,4,3992.50,53.97,1610.19,2113.05,0.00,1.478404,10.682153,253,669,0.000000,0.000030,65216063,31946060,0,0,88199,0,1,1 +1773689882.357007,0.80,4,3992.50,53.95,1610.90,2112.34,0.00,0.000000,0.000000,253,669,0.000087,0.000101,65216069,31946068,0,0,88201,0,1,1 +1773689887.353553,1.00,4,3992.50,54.10,1608.90,2118.20,0.00,0.000000,0.000000,253,669,0.000151,0.000216,65216081,31946083,0,0,88204,0,1,1 +1773689892.358232,0.65,4,3992.50,54.06,1610.36,2116.71,0.00,0.000000,0.000000,253,669,0.000000,0.000020,65216081,31946085,0,0,88206,0,1,1 +1773689897.355349,0.70,4,3992.50,54.10,1609.14,2117.94,0.00,55232.422469,58601.714342,3817210,3282025,0.000000,0.000030,65216081,31946088,0,0,88209,0,1,1 +1773689902.357620,9.91,4,3992.50,58.96,1418.59,2308.45,0.00,3516839726300.124023,3516839722925.236328,75,0,7.214034,0.011725,65217159,31946853,0,0,88211,0,1,1 +1773689907.353471,5.57,4,3992.50,54.15,1607.02,2120.03,0.00,1.605532,10.684063,253,669,32.874659,0.014805,65220479,31947878,0,0,88214,0,1,1 +1773689912.353558,0.60,4,3992.50,54.16,1606.53,2120.52,0.00,3518375935660.947754,3518375935651.930664,11,0,0.000000,0.000020,65220479,31947880,0,0,88216,0,1,1 +1773689917.357581,0.70,4,3992.50,54.17,1606.30,2120.74,0.00,2.173641,0.000195,258,2,0.000000,0.000030,65220479,31947883,0,0,88219,0,1,1 +1773689922.358114,0.90,4,3992.50,54.40,1602.50,2130.02,0.00,3518062760353.116699,3518062760355.238281,75,0,0.000000,0.000020,65220479,31947885,0,0,88221,0,1,1 +1773689927.353454,0.65,4,3992.50,54.21,1609.89,2122.62,0.00,0.000000,0.000000,75,0,0.000000,0.000030,65220479,31947888,0,0,88224,0,1,1 +1773689932.357847,0.80,4,3992.50,54.22,1609.65,2122.87,0.00,3515348480984.604980,0.000000,11,0,0.000000,0.000020,65220479,31947890,0,0,88226,0,1,1 +1773689937.356129,0.65,4,3992.50,54.23,1609.43,2123.09,0.00,0.053534,0.000000,75,0,0.000000,0.000030,65220479,31947893,0,0,88229,0,1,1 +1773689942.358113,0.70,4,3992.50,54.23,1609.43,2123.08,0.00,55190.012953,58566.294853,3818713,3282923,0.000000,0.000020,65220479,31947895,0,0,88231,0,1,1 +1773689947.358073,1.05,4,3992.50,54.56,1593.16,2136.18,0.00,3518464752508.757812,3518464749131.163574,11,0,0.000031,0.000055,65220481,31947900,0,0,88234,0,1,1 +1773689952.358234,0.65,4,3992.50,54.55,1593.25,2135.93,0.00,0.000000,0.000000,11,0,0.000142,0.000191,65220493,31947914,0,0,88236,0,1,1 +1773689957.358036,0.70,4,3992.50,54.54,1593.95,2135.23,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65220493,31947917,0,0,88239,0,1,1 +1773689962.356168,0.65,4,3992.50,54.53,1594.12,2135.05,0.00,0.053536,0.000000,75,0,0.000000,0.000020,65220493,31947919,0,0,88241,0,1,1 +1773689967.359537,5.21,4,3992.50,58.90,1422.95,2306.21,0.00,0.126672,0.000000,205,0,1.808457,0.006675,65220926,31948233,0,0,88244,0,1,1 +1773689972.356056,11.88,4,3992.50,55.19,1568.21,2160.95,0.00,1.478471,10.682631,253,669,38.282249,0.018369,65224813,31949512,0,0,88246,0,1,1 +1773689977.353817,1.00,4,3992.50,54.85,1581.59,2147.52,0.00,3520013931537.960938,3520013931528.886230,75,0,0.000000,0.000030,65224813,31949515,0,0,88249,0,1,1 +1773689982.357901,0.65,4,3992.50,54.25,1605.20,2123.96,0.00,1.602890,10.666482,253,669,0.000000,0.000020,65224813,31949517,0,0,88251,0,1,1 +1773689987.357053,0.65,4,3992.50,54.13,1609.87,2119.29,0.00,3519033977220.681152,3519033977211.481934,205,0,0.000000,0.000030,65224813,31949520,0,0,88254,0,1,1 +1773689992.357554,0.75,4,3992.50,54.16,1608.73,2120.43,0.00,3518084868461.794922,0.000000,75,0,0.000000,0.000020,65224813,31949522,0,0,88256,0,1,1 +1773689997.357673,0.80,4,3992.50,54.16,1608.73,2120.43,0.00,3518353555805.333008,0.000000,11,0,0.000000,0.000030,65224813,31949525,0,0,88259,0,1,1 +1773690002.354796,0.70,4,3992.50,54.17,1608.25,2120.90,0.00,0.000000,0.000000,11,0,0.000000,0.000020,65224813,31949527,0,0,88261,0,1,1 +1773690007.356389,1.00,4,3992.50,54.26,1605.25,2124.55,0.00,0.180216,0.000000,205,0,0.000000,0.000030,65224813,31949530,0,0,88264,0,1,1 +1773690012.358196,0.70,4,3992.50,54.26,1605.25,2124.55,0.00,1.994396,0.000195,258,2,0.000031,0.000045,65224815,31949534,0,0,88266,0,1,1 +1773690017.357909,0.90,4,3992.50,54.26,1605.25,2124.55,0.00,3518639623551.464844,3518639623553.640625,11,0,0.000126,0.000185,65224825,31949547,0,0,88269,0,1,1 +1773690022.353445,0.85,4,3992.50,54.26,1605.38,2124.43,0.00,1.659196,10.684735,253,669,0.000016,0.000036,65224827,31949551,0,0,88271,0,1,1 +1773690027.354339,0.80,4,3992.50,54.26,1605.38,2124.43,0.00,0.000000,0.000000,253,669,0.000000,0.000030,65224827,31949554,0,0,88274,0,1,1 +1773690032.358065,1.15,4,3992.50,54.21,1607.18,2122.60,0.00,3515817432679.808594,3515817432670.744629,75,0,0.002319,0.001334,65224856,31949582,0,0,88276,0,1,1 +1773690037.358637,15.71,4,3992.50,54.27,1606.97,2124.80,0.00,0.126743,0.000000,205,0,40.057527,0.026104,65229164,31951388,0,0,88279,0,1,1 +1773690042.354224,0.75,4,3992.50,54.27,1607.00,2124.80,0.00,1.996880,0.000195,258,2,0.000008,0.000028,65229165,31951391,0,0,88281,0,1,1 +1773690047.355916,0.65,4,3992.50,54.22,1608.91,2122.90,0.00,55181.409103,58559.694461,3817214,3282854,0.000000,0.000030,65229165,31951394,0,0,88284,0,1,1 +1773690052.355394,0.70,4,3992.50,54.23,1608.66,2123.14,0.00,3518804737174.850098,3518804733795.067871,258,2,0.000000,0.000020,65229165,31951396,0,0,88286,0,1,1 +1773690057.357569,0.70,4,3992.50,54.27,1607.20,2124.61,0.00,3516907255048.347168,3516907255050.468262,75,0,0.000000,0.000030,65229165,31951399,0,0,88289,0,1,1 +1773690062.353472,0.65,4,3992.50,54.27,1607.20,2124.61,0.00,55257.215422,58638.257236,3818717,3283533,0.000000,0.000020,65229165,31951401,0,0,88291,0,1,1 +1773690067.353459,0.95,4,3992.50,53.99,1615.07,2113.74,0.00,3518446214376.076660,3518446210995.675293,258,2,0.000000,0.000030,65229165,31951404,0,0,88294,0,1,1 +1773690072.353674,0.65,4,3992.50,53.93,1617.11,2111.64,0.00,3518285866999.880371,3518285867002.001953,75,0,0.000000,0.000020,65229165,31951406,0,0,88296,0,1,1 +1773690077.354265,0.75,4,3992.50,53.94,1616.86,2111.88,0.00,1.604010,10.673933,253,669,0.000308,0.000584,65229172,31951420,0,0,88299,0,1,1 +1773690082.354889,0.75,4,3992.50,53.95,1616.63,2112.12,0.00,55203.437854,58572.285403,3818717,3283575,0.001291,0.001410,65229194,31951449,0,0,88301,0,1,1 +1773690087.355641,0.60,4,3992.50,53.95,1616.63,2112.12,0.00,3517908418369.822266,3517908415001.060547,253,669,0.000000,0.000030,65229194,31951452,0,0,88304,0,1,1 +1773690092.358410,0.65,4,3992.50,53.95,1616.64,2112.11,0.00,3516489982795.562988,3516489982786.370605,205,0,0.000000,0.000020,65229194,31951454,0,0,88306,0,1,1 +1773690097.358090,1.35,4,3992.50,53.99,1602.30,2113.97,0.00,3518662380052.225098,0.000000,75,0,0.002234,0.000735,65229218,31951473,0,0,88309,0,1,1 +1773690102.358055,14.39,4,3992.50,53.84,1607.87,2108.12,0.00,55212.316658,58590.839753,3818717,3283730,40.061868,0.018947,65233537,31952748,0,0,88311,0,1,1 +1773690107.357496,0.75,4,3992.50,53.62,1616.61,2099.38,0.00,3518830820054.192871,3518830816675.314453,75,0,0.000008,0.000682,65233538,31952756,0,0,88314,0,1,1 +1773690112.354582,0.70,4,3992.50,53.71,1613.18,2102.82,0.00,3520488990000.092773,0.000000,11,0,0.000000,0.000020,65233538,31952758,0,0,88316,0,1,1 +1773690117.353629,0.70,4,3992.50,53.71,1613.18,2102.82,0.00,55212.789046,58590.962156,3817214,3283084,0.000000,0.000030,65233538,31952761,0,0,88319,0,1,1 +1773690122.358155,0.60,4,3992.50,53.72,1612.93,2103.06,0.00,3515254464786.201172,3515254461411.673340,75,0,0.000236,0.000577,65233547,31952776,0,0,88321,0,1,1 +1773690127.354759,0.75,4,3992.50,53.71,1612.94,2103.05,0.00,55249.475778,58630.345400,3818717,3283764,0.000039,0.000063,65233550,31952782,0,0,88324,0,1,1 +1773690132.358180,1.10,4,3992.50,53.96,1603.55,2112.59,0.00,3516030953668.830078,3516030950292.621582,11,0,0.000000,0.000020,65233550,31952784,0,0,88326,0,1,1 +1773690137.357499,0.85,4,3992.50,53.96,1603.34,2112.80,0.00,55209.787568,58587.895800,3817214,3283163,0.002087,0.002114,65233582,31952813,0,0,88329,0,1,1 +1773690142.357132,0.75,4,3992.50,53.97,1603.10,2113.05,0.00,3518695089513.256348,3518695086135.360840,11,0,0.001064,0.000421,65233604,31952828,0,0,88331,0,1,1 +1773690147.357749,0.70,4,3992.50,53.78,1610.49,2105.65,0.00,0.000000,0.000000,11,0,0.000107,0.000148,65233612,31952839,0,0,88334,0,1,1 +1773690152.353565,0.70,4,3992.50,53.78,1610.49,2105.65,0.00,0.053560,0.000000,75,0,0.000008,0.000028,65233613,31952842,0,0,88336,0,1,1 +1773690157.358149,0.95,4,3992.50,54.11,1597.35,2118.65,0.00,1.602730,10.665416,253,669,0.000000,0.000030,65233613,31952845,0,0,88339,0,1,1 +1773690162.357615,8.52,4,3992.50,59.31,1393.97,2322.02,0.00,3518813137060.517578,3518813137051.445801,75,0,1.809640,0.006328,65234099,31953181,0,0,88341,0,1,1 +1773690167.355688,7.93,4,3992.50,54.49,1582.62,2133.39,0.00,2.122693,0.000195,258,2,38.270460,0.015149,65237994,31954251,0,0,88344,0,1,1 +1773690172.358086,0.65,4,3992.50,54.37,1587.31,2128.70,0.00,3516750344716.875977,3516750344719.050293,11,0,0.000008,0.000671,65237995,31954258,0,0,88346,0,1,1 +1773690177.358260,0.70,4,3992.50,54.40,1586.08,2129.93,0.00,1.657657,10.674824,253,669,0.000000,0.000030,65237995,31954261,0,0,88349,0,1,1 +1773690182.353424,0.65,4,3992.50,54.37,1587.23,2128.77,0.00,3521843462624.248535,3521843462615.222656,11,0,0.000056,0.000076,65237999,31954267,0,0,88351,0,1,1 +1773690187.357685,1.05,4,3992.50,54.47,1585.54,2132.50,0.00,55155.262987,58530.326683,3817214,3283410,0.000025,0.000061,65238001,31954272,0,0,88354,0,1,1 +1773690192.357923,0.65,4,3992.50,54.47,1584.88,2132.66,0.00,0.000000,0.038279,3817214,3283449,0.000008,0.000028,65238002,31954275,0,0,88356,0,1,1 +1773690197.357743,0.65,4,3992.50,54.47,1584.88,2132.66,0.00,3518563832536.774902,3518563829156.499512,258,2,0.000000,0.000030,65238002,31954278,0,0,88359,0,1,1 +1773690202.355827,0.65,4,3992.50,54.47,1584.89,2132.66,0.00,3519785917634.772949,10.679092,253,669,0.000000,0.000020,65238002,31954280,0,0,88361,0,1,1 +1773690207.354787,0.65,4,3992.50,54.48,1584.65,2132.89,0.00,3519169041902.654297,3519169041893.634766,11,0,0.000031,0.000055,65238004,31954285,0,0,88364,0,1,1 +1773690212.358023,0.65,4,3992.50,54.48,1584.65,2132.89,0.00,55166.565756,58542.376524,3817214,3283465,0.000134,0.000183,65238015,31954298,0,0,88366,0,1,1 +1773690217.353704,0.90,4,3992.50,54.52,1584.66,2134.61,0.00,3521478618141.706055,3521478614769.815918,253,669,0.000000,0.000030,65238015,31954301,0,0,88369,0,1,1 +1773690222.358330,0.75,4,3992.50,54.52,1584.63,2134.57,0.00,0.517197,3515185548348.291016,258,2,0.000000,0.000020,65238015,31954303,0,0,88371,0,1,1 +1773690227.357453,2.05,4,3992.50,54.37,1590.36,2128.84,0.00,3519054208878.512207,3519054208880.507812,205,0,0.003364,0.002369,65238052,31954340,0,0,88374,0,1,1 +1773690232.354652,14.68,4,3992.50,55.26,1555.68,2163.50,0.00,55233.031221,58613.227323,3817215,3283628,40.084063,0.018902,65242382,31955693,0,0,88376,0,1,1 +1773690237.357742,0.70,4,3992.50,54.60,1581.54,2137.66,0.00,3516264255680.036133,3516264252304.000000,11,0,0.000008,0.000681,65242383,31955701,0,0,88379,0,1,1 +1773690242.357970,9.90,4,3992.50,54.84,1553.99,2147.16,0.00,0.000000,0.000000,11,0,0.000000,0.000020,65242383,31955703,0,0,88381,0,1,1 +1773690247.355857,6.68,4,3992.50,55.59,1521.41,2176.62,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65242383,31955706,0,0,88384,0,1,1 +1773690252.357948,2.46,4,3992.50,55.39,1531.87,2168.69,0.00,0.053493,0.000000,75,0,0.000000,0.000020,65242383,31955708,0,0,88386,0,1,1 +1773690257.358073,8.06,4,3992.50,55.26,1533.73,2163.74,0.00,3518349349366.864258,0.000000,11,0,0.000000,0.000030,65242383,31955711,0,0,88389,0,1,1 +1773690262.353448,0.65,4,3992.50,55.27,1533.51,2163.96,0.00,1.659250,10.685079,253,678,0.000000,0.000020,65242383,31955713,0,0,88391,0,1,1 +1773690267.353452,7.75,4,3992.50,54.82,1551.34,2146.35,0.00,3518434660831.160645,3518434660822.143555,11,0,0.000000,0.000030,65242383,31955716,0,0,88394,0,1,1 +1773690272.358333,4.21,4,3992.50,54.93,1556.49,2150.69,0.00,55148.593311,60035.147308,3817335,3290917,0.000000,0.000020,65242383,31955718,0,0,88396,0,1,1 +1773690277.353579,1.36,4,3992.50,55.02,1572.34,2154.17,0.00,0.000000,23.336249,3817335,3291094,0.000157,0.000211,65242395,31955733,0,0,88399,0,1,1 +1773690282.357566,0.70,4,3992.50,54.90,1576.77,2149.59,0.00,3515634026876.156250,3515634021963.259766,258,2,0.000016,0.000036,65242397,31955737,0,0,88401,0,1,1 +1773690287.357694,0.65,4,3992.50,54.82,1579.94,2146.43,0.00,3518347048424.888672,10.674726,253,687,0.000000,0.000030,65242397,31955740,0,0,88404,0,1,1 +1773690292.353570,0.95,4,3992.50,54.63,1587.31,2139.06,0.00,0.000000,0.000000,253,687,0.002211,0.000715,65242419,31955757,0,0,88406,0,1,1 +1773690297.354840,16.26,4,3992.50,56.14,1528.25,2198.11,0.00,3517543154234.575195,3517543154225.506836,75,0,40.051643,0.024317,65246668,31957393,0,0,88409,0,1,1 +1773690302.356353,1.00,4,3992.50,55.10,1568.98,2157.39,0.00,3517373237245.662598,0.000000,11,0,0.000606,0.000904,65246679,31957405,0,0,88411,0,1,1 +1773690307.357898,1.05,4,3992.50,54.93,1569.70,2150.49,0.00,0.053499,0.000000,75,0,0.000000,0.000030,65246679,31957408,0,0,88414,0,1,1 +1773690312.353566,0.90,4,3992.50,54.23,1596.92,2123.27,0.00,1.605590,10.684451,253,687,0.000000,0.000020,65246679,31957410,0,0,88416,0,1,1 +1773690317.358069,1.10,4,3992.50,54.04,1604.30,2115.88,0.00,0.517210,3515271895652.118164,258,2,0.000000,0.000030,65246679,31957413,0,0,88419,0,1,1 +1773690322.356584,0.95,4,3992.50,54.03,1604.64,2115.55,0.00,3519482540244.907227,3519482540247.029785,75,0,0.000000,0.000020,65246679,31957415,0,0,88421,0,1,1 +1773690327.357867,0.75,4,3992.50,54.04,1604.42,2115.77,0.00,1.603788,10.672457,253,687,0.000000,0.000030,65246679,31957418,0,0,88424,0,1,1 +1773690332.358214,0.85,4,3992.50,54.02,1605.22,2114.96,0.00,0.000000,0.000000,253,687,0.000000,0.000020,65246679,31957420,0,0,88426,0,1,1 +1773690337.357962,8.23,4,3992.50,54.49,1564.10,2133.36,0.00,55203.569783,60384.362862,3817350,3292798,0.000000,0.000030,65246679,31957423,0,0,88429,0,1,1 +1773690342.357130,5.16,4,3992.50,54.69,1556.11,2141.35,0.00,3519022987255.390625,3519022982064.977051,11,0,0.000132,0.000169,65246689,31957435,0,0,88431,0,1,1 +1773690347.358263,3.36,4,3992.50,54.59,1566.26,2137.25,0.00,0.180233,0.000000,205,0,0.000041,0.000077,65246693,31957442,0,0,88434,0,1,1 +1773690352.358078,7.40,4,3992.50,55.12,1541.46,2158.09,0.00,55214.059331,60965.544038,3818886,3296203,0.000000,0.000020,65246693,31957444,0,0,88436,0,1,1 +1773690357.357996,3.76,4,3992.50,54.73,1554.33,2142.99,0.00,3518494649394.249023,3518494643640.888184,258,2,0.002209,0.000418,65246715,31957462,0,0,88439,0,1,1 +1773690362.357457,5.22,4,3992.50,54.87,1550.28,2148.13,0.00,55215.992366,61288.049500,3818916,3297819,0.000025,0.000336,65246717,31957465,0,0,88441,0,1,1 +1773690367.356175,2.81,4,3992.50,54.90,1550.23,2149.59,0.00,3519339586951.130859,3519339580880.292969,75,0,0.000000,0.000030,65246717,31957468,0,0,88444,0,1,1 +1773690372.358952,13.25,4,3992.50,59.73,1388.18,2338.60,0.00,55171.803061,61376.160201,3817420,3298003,6.609796,0.010690,65247660,31958144,0,0,88446,0,1,1 +1773690377.353467,6.03,4,3992.50,55.09,1569.90,2156.89,0.00,3522301120830.271484,3522301114613.527344,258,2,33.487160,0.011889,65251147,31958875,0,0,88449,0,1,1 +1773690382.353554,0.70,4,3992.50,54.58,1589.81,2137.00,0.00,3518376267789.365723,3518376267791.541016,11,0,0.000213,0.000560,65251155,31958889,0,0,88451,0,1,1 +1773690387.353729,0.65,4,3992.50,54.29,1601.32,2125.49,0.00,1.657657,10.674822,253,705,0.000000,0.000030,65251155,31958892,0,0,88454,0,1,1 +1773690392.357450,0.75,4,3992.50,54.33,1599.59,2127.22,0.00,0.517291,3515820340197.144043,258,2,0.000000,0.000020,65251155,31958894,0,0,88456,0,1,1 +1773690397.357906,1.00,4,3992.50,54.62,1585.75,2138.36,0.00,3518116569145.817383,10.674027,253,705,0.000000,0.000030,65251155,31958897,0,0,88459,0,1,1 +1773690402.358050,0.75,4,3992.50,54.58,1587.18,2136.97,0.00,55199.243508,61397.916928,3817420,3298102,0.000000,0.000020,65251155,31958899,0,0,88461,0,1,1 +1773690407.357605,0.70,4,3992.50,54.57,1587.50,2136.64,0.00,3518750516010.083008,3518750509799.484863,258,2,0.000000,0.000030,65251155,31958902,0,0,88464,0,1,1 +1773690412.353570,0.60,4,3992.50,54.58,1587.20,2136.95,0.00,55254.639094,61470.693807,3818923,3298848,0.000000,0.000020,65251155,31958904,0,0,88466,0,1,1 +1773690417.353467,0.70,4,3992.50,54.57,1587.54,2136.61,0.00,3518509168407.188965,3518509162207.216797,253,705,0.000031,0.000055,65251157,31958909,0,0,88469,0,1,1 +1773690422.358407,0.55,4,3992.50,54.57,1587.55,2136.61,0.00,0.517165,3514964954257.426758,258,2,0.000369,0.000740,65251177,31958935,0,0,88471,0,1,1 +1773690427.354146,0.90,4,3992.50,54.47,1592.11,2132.62,0.00,55257.126899,61473.498236,3818923,3298863,0.000031,0.000055,65251179,31958940,0,0,88474,0,1,1 +1773690432.353498,7.82,4,3992.50,55.07,1546.11,2155.99,0.00,3518893936366.460449,3518893930156.701172,75,0,0.000000,0.000020,65251179,31958942,0,0,88476,0,1,1 +1773690437.353499,11.56,4,3992.50,54.50,1569.08,2133.66,0.00,55202.431409,61864.096267,3817423,3300492,0.002087,0.002765,65251211,31958976,0,0,88479,0,1,1 +1773690442.354815,6.98,4,3992.50,54.59,1564.47,2137.28,0.00,3517510710304.475586,3517510703653.631836,253,711,0.001734,0.001351,65251236,31958994,0,0,88481,0,1,1 +1773690447.356041,0.80,4,3992.50,54.63,1563.00,2138.75,0.00,3517575130010.859375,3517575130001.844727,11,0,0.000000,0.000674,65251236,31959001,0,0,88484,0,1,1 +1773690452.354083,0.60,4,3992.50,54.44,1570.41,2131.34,0.00,1.658364,10.679378,253,711,0.000000,0.000020,65251236,31959003,0,0,88486,0,1,1 +1773690457.355453,5.73,4,3992.50,55.00,1548.57,2153.44,0.00,3517472938699.105469,3517472938690.037109,75,0,0.002208,0.000724,65251258,31959021,0,0,88489,0,1,1 +1773690462.355769,7.12,4,3992.50,54.79,1558.89,2145.21,0.00,1.604098,10.674522,253,714,0.000120,0.000649,65251266,31959035,0,0,88491,0,1,1 +1773690467.357255,1.15,4,3992.50,54.74,1564.94,2143.18,0.00,55184.441949,62675.919563,3817423,3304753,0.000031,0.000055,65251268,31959040,0,0,88494,0,1,1 +1773690472.357996,15.82,4,3992.50,55.16,1564.68,2159.67,0.00,9.724729,10.797031,3818926,3305571,40.060628,0.028209,65255769,31961052,0,0,88496,0,1,1 +1773690477.358079,0.60,4,3992.50,54.52,1589.88,2134.48,0.00,3518378961793.975586,3518378954290.306152,11,0,0.000000,0.000030,65255769,31961055,0,0,88499,0,1,1 +1773690482.353947,0.75,4,3992.50,54.50,1590.43,2133.93,0.00,0.053560,0.000000,75,0,0.000056,0.000076,65255773,31961061,0,0,88501,0,1,1 +1773690487.355084,0.95,4,3992.50,54.49,1594.21,2133.27,0.00,3517637623820.733887,0.000000,11,0,0.000025,0.000061,65255775,31961066,0,0,88504,0,1,1 +1773690492.353480,0.65,4,3992.50,54.28,1602.54,2124.98,0.00,2.176089,0.000195,258,2,0.000000,0.000020,65255775,31961068,0,0,88506,0,1,1 +1773690497.357062,0.75,4,3992.50,54.08,1610.18,2117.34,0.00,3515918655792.606445,3515918655794.780273,11,0,0.000000,0.000030,65255775,31961071,0,0,88509,0,1,1 +1773690502.354669,0.60,4,3992.50,54.09,1609.94,2117.59,0.00,55238.666974,62746.228071,3818926,3305700,0.000000,0.000020,65255775,31961073,0,0,88511,0,1,1 +1773690507.353487,0.65,4,3992.50,54.09,1609.69,2117.84,0.00,3519268858257.125488,3519268850751.384277,11,0,0.000000,0.000674,65255775,31961080,0,0,88514,0,1,1 +1773690512.357831,0.75,4,3992.50,54.09,1609.70,2117.83,0.00,0.180117,0.000000,205,0,0.000000,0.000020,65255775,31961082,0,0,88516,0,1,1 +1773690517.353465,0.90,4,3992.50,54.51,1593.52,2134.03,0.00,3521512198264.661133,0.000000,11,0,0.000157,0.000211,65255787,31961097,0,0,88519,0,1,1 +1773690522.357413,0.60,4,3992.50,54.51,1593.45,2134.03,0.00,1.656407,10.666773,253,717,0.000008,0.000028,65255788,31961100,0,0,88521,0,1,1 +1773690527.354115,8.53,4,3992.50,54.85,1553.50,2147.45,0.00,0.000000,0.000000,253,720,0.000000,0.000030,65255788,31961103,0,0,88524,0,1,1 +1773690532.353482,7.73,4,3992.50,54.85,1561.95,2147.37,0.00,0.000000,0.000000,253,720,0.000000,0.000020,65255788,31961105,0,0,88526,0,1,1 +1773690537.358427,6.06,4,3992.50,55.29,1540.24,2164.60,0.00,3514960743285.325195,3514960743276.316895,11,0,0.002219,0.000418,65255811,31961123,0,0,88529,0,1,1 +1773690542.357426,0.80,4,3992.50,55.11,1547.07,2157.77,0.00,0.053526,0.000000,75,0,0.000000,0.000020,65255811,31961125,0,0,88531,0,1,1 +1773690547.356547,5.17,4,3992.50,54.66,1566.03,2140.20,0.00,0.000000,0.000000,75,0,0.000125,0.000967,65255819,31961140,0,0,88534,0,1,1 +1773690552.358103,3.16,4,3992.50,54.59,1567.55,2137.27,0.00,0.000000,0.000000,75,0,0.000000,0.000020,65255819,31961142,0,0,88536,0,1,1 +1773690557.353478,5.08,4,3992.50,54.93,1555.33,2150.59,0.00,3521694644718.130859,0.000000,11,0,0.000000,0.000030,65255819,31961145,0,0,88539,0,1,1 +1773690562.357560,14.34,4,3992.50,59.70,1389.78,2337.44,0.00,55167.230585,64080.950072,3818981,3312863,40.025523,0.020717,65260055,31962675,0,0,88541,0,1,1 +1773690567.353575,1.00,4,3992.50,55.04,1572.39,2154.84,0.00,3521244312443.906250,3521244312443.018555,3817478,3312205,0.004176,0.002204,65260148,31962747,0,0,88544,0,1,1 +1773690572.357662,0.75,4,3992.50,54.54,1591.97,2135.26,0.00,3515562641933.569336,3515562633020.747559,11,0,0.000000,0.000502,65260148,31962752,0,0,88546,0,1,1 +1773690577.354316,0.75,4,3992.50,54.52,1592.82,2134.40,0.00,0.053551,0.000000,75,0,0.000000,0.000191,65260148,31962756,0,0,88549,0,1,1 +1773690582.354389,1.05,4,3992.50,54.82,1581.46,2146.14,0.00,2.121844,0.000195,258,2,0.000000,0.000020,65260148,31962758,0,0,88551,0,1,1 +1773690587.353463,0.60,4,3992.50,54.63,1588.64,2138.96,0.00,3519088714666.396973,3519088714668.572754,11,0,0.000000,0.000030,65260148,31962761,0,0,88554,0,1,1 +1773690592.353447,0.70,4,3992.50,54.63,1588.64,2138.96,0.00,0.180274,0.000000,205,0,0.000000,0.000020,65260148,31962763,0,0,88556,0,1,1 +1773690597.355866,0.75,4,3992.50,54.45,1595.88,2131.71,0.00,55185.383440,64102.416798,3818981,3313009,0.000000,0.000030,65260148,31962766,0,0,88559,0,1,1 +1773690602.354656,0.65,4,3992.50,54.45,1595.80,2131.80,0.00,3519289371413.472656,3519289362499.164062,253,729,0.000000,0.000020,65260148,31962768,0,0,88561,0,1,1 +1773690607.353474,0.70,4,3992.50,54.46,1595.41,2132.18,0.00,3519268897288.278320,3519268897279.259277,11,0,0.000031,0.000055,65260150,31962773,0,0,88564,0,1,1 +1773690612.353566,0.95,4,3992.50,54.93,1580.08,2150.52,0.00,0.000000,0.000000,11,0,0.000134,0.000183,65260161,31962786,0,0,88566,0,1,1 +1773690617.353571,1.00,4,3992.50,54.86,1582.65,2147.96,0.00,55202.506806,64122.820649,3817480,3312392,0.000000,0.000030,65260161,31962789,0,0,88569,0,1,1 +1773690622.353467,10.43,4,3992.50,55.27,1540.43,2163.86,0.00,9.726375,415.563774,3818983,3315158,0.000000,0.000020,65260161,31962791,0,0,88571,0,1,1 +1773690627.353461,6.12,4,3992.50,54.89,1559.45,2149.07,0.00,3518441423651.415527,3518441414325.250977,11,0,0.000000,0.000030,65260161,31962794,0,0,88574,0,1,1 +1773690632.356697,0.75,4,3992.50,54.74,1565.51,2143.03,0.00,55176.587564,64740.145807,3818983,3316350,0.000000,0.000020,65260161,31962796,0,0,88576,0,1,1 +1773690637.358188,8.92,4,3992.50,55.07,1554.21,2156.14,0.00,0.000000,375.664681,3818983,3318201,0.000000,0.000030,65260161,31962799,0,0,88579,0,1,1 +1773690642.354648,1.86,4,3992.50,54.68,1567.32,2140.72,0.00,3520929993936.376465,3520929983983.805176,11,0,0.002223,0.000409,65260184,31962816,0,0,88581,0,1,1 +1773690647.355989,6.60,4,3992.50,55.12,1553.01,2157.95,0.00,55187.774833,65451.956453,3817480,3319072,0.000000,0.000030,65260184,31962819,0,0,88584,0,1,1 +1773690652.353593,2.86,4,3992.50,55.04,1555.65,2154.75,0.00,3520124092188.957031,3520124081917.100586,11,0,0.000000,0.000020,65260184,31962821,0,0,88586,0,1,1 +1773690657.353469,13.30,4,3992.50,59.88,1388.74,2344.61,0.00,55213.664125,65634.702021,3818983,3320713,31.851254,0.018033,65263763,31964024,0,0,88589,0,1,1 +1773690662.357841,1.00,4,3992.50,55.70,1552.41,2180.94,0.00,3515362832477.823730,3515362822066.149414,11,0,8.207538,0.003935,65264672,31964262,0,0,88591,0,1,1 +1773690667.355288,1.05,4,3992.50,55.20,1563.38,2161.32,0.00,55230.779011,65656.069451,3817480,3320067,0.000000,0.000674,65264672,31964269,0,0,88594,0,1,1 +1773690672.353439,0.75,4,3992.50,54.44,1593.20,2131.50,0.00,3519738584061.616699,3519738573637.743164,75,0,0.000000,0.000020,65264672,31964271,0,0,88596,0,1,1 +1773690677.353492,0.80,4,3992.50,54.46,1592.54,2132.16,0.00,3518399571155.574219,0.000000,11,0,0.001229,0.001254,65264681,31964288,0,0,88599,0,1,1 +1773690682.354243,0.75,4,3992.50,54.47,1592.07,2132.57,0.00,55204.008738,65623.511828,3818983,3320870,0.000205,0.000552,65264688,31964301,0,0,88601,0,1,1 +1773690687.358113,0.70,4,3992.50,54.48,1591.88,2132.82,0.00,3515716494664.065430,3515716484251.056152,11,0,0.000000,0.000030,65264688,31964304,0,0,88604,0,1,1 +1773690692.358328,0.65,4,3992.50,54.48,1591.66,2133.04,0.00,0.180266,0.000000,205,0,0.000000,0.000020,65264688,31964306,0,0,88606,0,1,1 +1773690697.358312,1.00,4,3992.50,54.49,1585.89,2133.31,0.00,55212.284551,65633.622557,3818983,3320904,0.000000,0.000030,65264688,31964309,0,0,88609,0,1,1 +1773690702.357491,0.75,4,3992.50,54.51,1584.88,2134.21,0.00,3519015586931.437012,3519015576508.543945,75,0,0.000056,0.000076,65264692,31964315,0,0,88611,0,1,1 +1773690707.354292,0.75,4,3992.50,54.52,1584.65,2134.45,0.00,3520689199421.973145,0.000000,11,0,0.000109,0.000162,65264701,31964327,0,0,88614,0,1,1 +1773690712.356916,0.70,4,3992.50,54.32,1592.28,2126.82,0.00,1.656845,10.669597,253,741,0.000000,0.000020,65264701,31964329,0,0,88616,0,1,1 +1773690717.353488,9.30,4,3992.50,54.97,1546.20,2152.03,0.00,55248.518268,65988.221352,3818983,3322501,0.000000,0.000030,65264701,31964332,0,0,88619,0,1,1 +1773690722.356557,5.81,4,3992.50,54.58,1559.49,2137.03,0.00,3516278856083.173828,3516278845348.225586,205,0,0.002456,0.000965,65264733,31964362,0,0,88621,0,1,1 +1773690727.353464,5.41,4,3992.50,54.73,1553.55,2142.97,0.00,1.996352,0.000195,258,2,0.000044,0.000371,65264736,31964368,0,0,88624,0,1,1 +1773690732.353454,0.80,4,3992.50,54.77,1552.08,2144.45,0.00,3518444405507.211426,3518444405509.386719,11,0,0.000000,0.000020,65264736,31964370,0,0,88626,0,1,1 +1773690737.353578,5.42,4,3992.50,54.46,1566.13,2132.15,0.00,0.000000,0.000000,11,0,0.001529,0.001821,65264772,31964409,0,0,88629,0,1,1 +1773690742.354081,5.74,4,3992.50,54.55,1562.81,2135.71,0.00,2.175172,0.000195,258,2,0.001734,0.001995,65264797,31964431,0,0,88631,0,1,1 +1773690747.358442,6.65,4,3992.50,54.52,1566.82,2134.72,0.00,55162.004280,67009.083743,3818983,3327994,0.000008,0.000038,65264798,31964435,0,0,88634,0,1,1 +1773690752.354462,1.35,4,3992.50,54.37,1572.31,2128.62,0.00,3521239839015.878906,44.095057,3817480,3327564,0.000000,0.000020,65264798,31964437,0,0,88636,0,1,1 +1773690757.357941,15.37,4,3992.50,55.84,1526.99,2186.33,0.00,3515991045662.021973,3515991033759.103516,258,2,40.034167,0.022567,65269086,31965905,0,0,88639,0,1,1 +1773690762.354161,0.65,4,3992.50,55.26,1549.62,2163.71,0.00,0.000000,0.000000,258,2,0.000619,0.000273,65269098,31965914,0,0,88641,0,1,1 +1773690767.357151,0.75,4,3992.50,54.77,1569.10,2144.23,0.00,3516334382549.162598,3516334382551.283203,75,0,0.000031,0.000055,65269100,31965919,0,0,88644,0,1,1 +1773690772.358150,0.70,4,3992.50,54.24,1589.65,2123.67,0.00,55191.494105,67108.768393,3817480,3327926,0.000000,0.000020,65269100,31965921,0,0,88646,0,1,1 +1773690777.353473,0.75,4,3992.50,54.25,1589.44,2123.89,0.00,9.735277,10.703370,3818983,3328697,0.000000,0.000030,65269100,31965924,0,0,88649,0,1,1 +1773690782.357399,0.75,4,3992.50,54.28,1588.23,2125.11,0.00,3515677073648.466797,3515677061737.196289,75,0,0.000056,0.000076,65269104,31965930,0,0,88651,0,1,1 +1773690787.358288,1.75,4,3992.50,54.47,1580.71,2132.71,0.00,0.126735,0.000000,205,0,0.000025,0.000061,65269106,31965935,0,0,88654,0,1,1 +1773690792.357593,0.70,4,3992.50,54.29,1587.64,2125.69,0.00,3518926850663.440430,0.000000,11,0,0.000008,0.000028,65269107,31965938,0,0,88656,0,1,1 +1773690797.356094,0.70,4,3992.50,54.22,1590.47,2122.87,0.00,1.658212,10.678397,253,749,0.000000,0.000030,65269107,31965941,0,0,88659,0,1,1 +1773690802.358227,0.70,4,3992.50,54.27,1588.54,2124.80,0.00,0.517455,3516937038980.312988,258,2,0.000132,0.000813,65269117,31965957,0,0,88661,0,1,1 +1773690807.354215,0.60,4,3992.50,54.27,1588.53,2124.82,0.00,3521262232355.497070,3521262232357.674316,11,0,0.000025,0.000061,65269119,31965962,0,0,88664,0,1,1 +1773690812.355565,7.57,4,3992.50,54.68,1549.79,2141.03,0.00,0.000000,0.000000,11,0,0.000000,0.000503,65269119,31965967,0,0,88666,0,1,1 +1773690817.353444,7.02,4,3992.50,54.31,1564.30,2126.50,0.00,0.000000,0.000000,11,0,0.000000,0.000191,65269119,31965971,0,0,88669,0,1,1 +1773690822.357593,2.26,4,3992.50,54.55,1557.63,2135.56,0.00,0.053471,0.000000,75,0,0.000000,0.000020,65269119,31965973,0,0,88671,0,1,1 +1773690827.354077,3.91,4,3992.50,54.56,1554.68,2136.14,0.00,55251.097284,67953.622364,3818983,3332527,0.002198,0.000408,65269140,31965990,0,0,88674,0,1,1 +1773690832.358200,6.39,4,3992.50,54.92,1545.86,2150.41,0.00,3515538337786.422852,3515538325103.342285,11,0,0.000140,0.001616,65269150,31966010,0,0,88676,0,1,1 +1773690837.354555,5.73,4,3992.50,54.67,1550.42,2140.33,0.00,2.176977,0.000195,258,2,0.000000,0.000030,65269150,31966013,0,0,88679,0,1,1 +1773690842.353472,4.51,4,3992.50,55.85,1510.45,2186.54,0.00,3519199745562.693359,3519199745564.869629,11,0,0.000000,0.000020,65269150,31966015,0,0,88681,0,1,1 +1773690847.353500,16.31,4,3992.50,55.51,1535.92,2173.31,0.00,2.175378,0.000195,258,2,40.058306,0.017739,65273363,31967288,0,0,88684,0,1,1 +1773690852.358223,1.30,4,3992.50,54.64,1571.58,2139.30,0.00,3515116523998.975586,10.664925,253,761,0.003102,0.001559,65273421,31967329,0,0,88686,0,1,1 +1773690857.353471,0.65,4,3992.50,53.93,1599.30,2111.58,0.00,0.000000,0.000000,253,761,0.000000,0.000030,65273421,31967332,0,0,88689,0,1,1 +1773690862.357836,0.70,4,3992.50,53.96,1598.41,2112.47,0.00,0.517224,3515367677700.548340,258,2,0.000000,0.000020,65273421,31967334,0,0,88691,0,1,1 +1773690867.355935,0.75,4,3992.50,53.96,1598.41,2112.47,0.00,55221.392280,68498.316645,3817480,3335130,0.000000,0.000030,65273421,31967337,0,0,88694,0,1,1 +1773690872.358025,0.65,4,3992.50,53.96,1598.42,2112.46,0.00,9.722109,10.675617,3818983,3335898,0.000000,0.000020,65273421,31967339,0,0,88696,0,1,1 +1773690877.353479,0.90,4,3992.50,54.14,1594.88,2119.54,0.00,0.000000,0.062557,3818983,3335928,0.000000,0.000030,65273421,31967342,0,0,88699,0,1,1 +1773690882.358341,0.80,4,3992.50,54.14,1594.46,2119.76,0.00,3515018974876.967285,3515018961616.969238,258,2,0.000000,0.000020,65273421,31967344,0,0,88701,0,1,1 +1773690887.353446,0.65,4,3992.50,54.10,1596.05,2118.17,0.00,0.000000,0.000000,258,2,0.000000,0.000030,65273421,31967347,0,0,88704,0,1,1 +1773690892.357973,0.75,4,3992.50,54.13,1594.88,2119.34,0.00,3515254921717.875977,3515254921719.869141,205,0,0.000031,0.000688,65273423,31967355,0,0,88706,0,1,1 +1773690897.353716,0.65,4,3992.50,54.13,1594.88,2119.34,0.00,1.996817,0.000195,258,2,0.000142,0.000201,65273435,31967370,0,0,88709,0,1,1 +1773690902.357770,0.75,4,3992.50,54.13,1594.80,2119.42,0.00,0.000000,0.000000,258,2,0.000000,0.000663,65273435,31967376,0,0,88711,0,1,1 +1773690907.353597,1.00,4,3992.50,54.13,1598.67,2119.41,0.00,3521376121220.786621,3521376121222.963867,11,0,0.000000,0.000030,65273435,31967379,0,0,88714,0,1,1 +1773690912.353442,0.70,4,3992.50,54.13,1598.67,2119.41,0.00,55204.278000,68474.576761,3817480,3335270,0.000000,0.000020,65273435,31967381,0,0,88716,0,1,1 +1773690917.358085,19.95,4,3992.50,53.76,1613.23,2104.85,0.00,3515173511926.697754,3515173498666.944824,258,2,40.025192,0.020673,65277742,31968772,0,0,88719,0,1,1 +1773690922.357767,0.85,4,3992.50,53.76,1613.40,2104.68,0.00,3518660419327.117188,3518660419329.292480,11,0,0.002409,0.001718,65277788,31968807,0,0,88721,0,1,1 +1773690927.356481,0.60,4,3992.50,53.56,1621.04,2097.05,0.00,0.053529,0.000000,75,0,0.000000,0.000030,65277788,31968810,0,0,88724,0,1,1 +1773690932.357837,0.80,4,3992.50,53.59,1619.83,2098.25,0.00,55197.267065,68464.717272,3818983,3336229,0.000000,0.000020,65277788,31968812,0,0,88726,0,1,1 +1773690937.353834,1.00,4,3992.50,53.85,1608.55,2108.43,0.00,0.000000,0.077406,3818983,3336259,0.000000,0.000030,65277788,31968815,0,0,88729,0,1,1 +1773690942.357364,0.55,4,3992.50,53.66,1615.96,2101.04,0.00,0.000000,0.038254,3818983,3336296,0.000000,0.000020,65277788,31968817,0,0,88731,0,1,1 +1773690947.357459,0.70,4,3992.50,53.66,1616.09,2100.91,0.00,3518370421758.779785,3518370421757.833984,3817480,3335537,0.000000,0.000066,65277788,31968821,0,0,88734,0,1,1 +1773690952.357461,0.70,4,3992.50,53.66,1616.09,2100.91,0.00,3518435541535.122070,3518435528273.979980,253,761,0.000000,0.000664,65277788,31968827,0,0,88736,0,1,1 +1773690957.358024,0.60,4,3992.50,53.66,1616.09,2100.90,0.00,0.000000,0.000000,253,761,0.000000,0.000030,65277788,31968830,0,0,88739,0,1,1 +1773690962.358016,0.70,4,3992.50,53.63,1617.26,2099.73,0.00,3518442771539.564453,3518442771530.546875,11,0,0.000069,0.000107,65277793,31968838,0,0,88741,0,1,1 +1773690967.353558,0.95,4,3992.50,53.83,1607.54,2107.59,0.00,0.000000,0.000000,11,0,0.000104,0.000139,65277802,31968849,0,0,88744,0,1,1 +1773690972.357324,0.75,4,3992.50,53.60,1616.55,2098.53,0.00,0.000000,0.000000,11,0,0.000000,0.000020,65277802,31968851,0,0,88746,0,1,1 +1773690977.353473,0.70,4,3992.50,53.60,1616.34,2098.75,0.00,0.000000,0.000000,11,0,0.000308,0.000585,65277809,31968865,0,0,88749,0,1,1 +1773690982.353459,15.00,4,3992.50,54.59,1577.89,2137.19,0.00,2.175397,0.000195,258,2,40.067718,0.024649,65282223,31970421,0,0,88751,0,1,1 +1773690987.357847,0.80,4,3992.50,54.26,1590.72,2124.37,0.00,3515351913170.372559,10.665639,253,761,0.000875,0.000606,65282243,31970438,0,0,88754,0,1,1 +1773690992.357863,0.65,4,3992.50,54.03,1599.53,2115.56,0.00,3518426153282.883789,3518426153273.866211,11,0,0.000000,0.000020,65282243,31970440,0,0,88756,0,1,1 +1773690997.353634,1.05,4,3992.50,54.13,1592.78,2119.39,0.00,0.180426,0.000000,205,0,0.000000,0.000030,65282243,31970443,0,0,88759,0,1,1 +1773691002.354681,0.60,4,3992.50,54.13,1592.71,2119.39,0.00,1.477132,10.672960,253,761,0.000000,0.000020,65282243,31970445,0,0,88761,0,1,1 +1773691007.358097,0.60,4,3992.50,54.13,1592.72,2119.39,0.00,3516034517552.283203,3516034517543.272461,11,0,0.000000,0.000512,65282243,31970451,0,0,88764,0,1,1 +1773691012.357645,0.80,4,3992.50,54.15,1591.98,2120.12,0.00,0.053520,0.000000,75,0,0.000000,0.000181,65282243,31970454,0,0,88766,0,1,1 +1773691017.357952,0.65,4,3992.50,54.15,1591.98,2120.12,0.00,0.126750,0.000000,205,0,0.000000,0.000030,65282243,31970457,0,0,88769,0,1,1 +1773691022.357820,0.70,4,3992.50,54.00,1597.80,2114.30,0.00,1.995170,0.000195,258,2,0.000236,0.000577,65282252,31970472,0,0,88771,0,1,1 +1773691027.357890,1.05,4,3992.50,54.20,1590.65,2122.12,0.00,3518387673500.969727,3518387673503.145020,11,0,0.000133,0.000181,65282262,31970486,0,0,88774,0,1,1 +1773691032.353466,0.80,4,3992.50,54.20,1587.65,2122.12,0.00,0.000000,0.000000,11,0,0.000063,0.000082,65282267,31970492,0,0,88776,0,1,1 +1773691037.353479,0.80,4,3992.50,54.20,1587.65,2122.12,0.00,0.180273,0.000000,205,0,0.001417,0.001200,65282296,31970520,0,0,88779,0,1,1 +1773691042.357942,0.70,4,3992.50,54.20,1587.65,2122.11,0.00,0.000000,0.000000,205,0,0.001063,0.000429,65282318,31970536,0,0,88781,0,1,1 +1773691047.353583,15.90,4,3992.50,53.94,1597.95,2111.80,0.00,55250.552662,68532.864107,3817480,3335904,40.101382,0.024428,65286800,31972201,0,0,88784,0,1,1 +1773691052.353499,0.60,4,3992.50,53.94,1597.72,2112.04,0.00,9.726336,10.771862,3818983,3336759,0.000000,0.000020,65286800,31972203,0,0,88786,0,1,1 +1773691057.357562,2.80,4,3992.50,54.68,1568.89,2140.77,0.00,3515580153475.676270,3515580140214.800781,75,0,0.000000,0.000030,65286800,31972206,0,0,88789,0,1,1 +1773691062.358295,1.40,4,3992.50,55.18,1549.36,2160.26,0.00,2.121564,0.000195,258,2,0.000000,0.000020,65286800,31972208,0,0,88791,0,1,1 +1773691067.357737,0.65,4,3992.50,55.02,1555.45,2154.17,0.00,3518829854695.350586,3518829854697.472656,75,0,0.000031,0.000055,65286802,31972213,0,0,88794,0,1,1 +1773691072.357089,0.60,4,3992.50,54.78,1564.91,2144.71,0.00,3518893007575.524902,0.000000,11,0,0.000016,0.000519,65286804,31972220,0,0,88796,0,1,1 +1773691077.353450,0.70,4,3992.50,54.78,1564.87,2144.75,0.00,0.000000,0.000000,11,0,0.000000,0.000191,65286804,31972224,0,0,88799,0,1,1 +1773691082.354079,0.70,4,3992.50,54.58,1572.51,2137.11,0.00,55217.992929,68475.474180,3819593,3336901,0.000056,0.000076,65286808,31972230,0,0,88801,0,1,1 +1773691087.357604,0.70,4,3992.50,54.58,1572.52,2137.09,0.00,0.000000,0.035912,3819593,3336908,0.000025,0.000061,65286810,31972235,0,0,88804,0,1,1 +1773691092.357510,1.05,4,3992.50,54.39,1580.51,2129.52,0.00,3518503438043.007812,3518503424781.398438,258,2,0.000165,0.000208,65286823,31972250,0,0,88806,0,1,1 +1773691097.358347,0.60,4,3992.50,54.42,1579.54,2130.50,0.00,3517848066422.505371,3517848066424.680176,11,0,0.000000,0.000030,65286823,31972253,0,0,88809,0,1,1 +1773691102.355749,0.60,4,3992.50,54.43,1578.80,2131.24,0.00,2.176522,0.000195,258,2,0.000000,0.000020,65286823,31972255,0,0,88811,0,1,1 +1773691107.353458,0.70,4,3992.50,54.43,1578.85,2131.19,0.00,3520049783817.216797,10.679893,253,761,0.000000,0.000030,65286823,31972258,0,0,88814,0,1,1 +1773691112.357866,16.09,4,3992.50,55.90,1521.48,2188.56,0.00,3515338675476.185059,3515338675466.995605,205,0,40.028486,0.022300,65291233,31973735,0,0,88816,0,1,1 +1773691117.355432,1.20,4,3992.50,55.14,1551.11,2158.95,0.00,1.996089,0.000195,258,2,0.003094,0.001447,65291290,31973776,0,0,88819,0,1,1 +1773691122.358366,0.75,4,3992.50,54.59,1572.75,2137.29,0.00,55190.378798,68444.245038,3819593,3337157,0.000000,0.000020,65291290,31973778,0,0,88821,0,1,1 +1773691127.357545,0.70,4,3992.50,54.40,1580.05,2129.97,0.00,3519014902005.860352,3519014888744.215332,11,0,0.000000,0.000030,65291290,31973781,0,0,88824,0,1,1 +1773691132.355829,0.65,4,3992.50,54.17,1589.24,2120.79,0.00,2.176137,0.000195,258,2,0.000000,0.000020,65291290,31973783,0,0,88826,0,1,1 +1773691137.358058,0.75,4,3992.50,54.21,1587.78,2122.25,0.00,3516868973702.009277,3516868973704.184082,11,0,0.000000,0.000512,65291290,31973789,0,0,88829,0,1,1 +1773691142.358202,0.65,4,3992.50,54.08,1592.55,2117.48,0.00,2.175328,0.000195,258,2,0.000000,0.000181,65291290,31973792,0,0,88831,0,1,1 +1773691147.353619,0.95,4,3992.50,54.14,1597.73,2119.67,0.00,55273.426825,68547.317436,3819593,3337225,0.000000,0.000030,65291290,31973795,0,0,88834,0,1,1 +1773691152.353450,0.70,4,3992.50,54.14,1597.66,2119.71,0.00,3518556363051.555176,3518556349791.557617,11,0,0.000000,0.000020,65291290,31973797,0,0,88836,0,1,1 +1773691157.358333,0.70,4,3992.50,54.14,1597.66,2119.71,0.00,0.180098,0.000000,205,0,0.000056,0.000119,65291294,31973805,0,0,88839,0,1,1 +1773691162.357619,0.65,4,3992.50,54.13,1598.17,2119.20,0.00,1.995402,0.000195,258,2,0.000117,0.000160,65291304,31973817,0,0,88841,0,1,1 +1773691167.354288,0.75,4,3992.50,54.13,1598.00,2119.37,0.00,3520782930508.476074,3520782930510.652832,11,0,0.000000,0.000030,65291304,31973820,0,0,88844,0,1,1 +1773691172.353484,0.70,4,3992.50,54.13,1598.00,2119.36,0.00,0.053524,0.000000,75,0,0.000000,0.000020,65291304,31973822,0,0,88846,0,1,1 +1773691177.355918,16.28,4,3992.50,56.07,1523.91,2195.07,0.00,0.126696,0.000000,205,0,40.042525,0.021382,65295635,31975297,0,0,88849,0,1,1 +1773691182.358153,0.80,4,3992.50,55.06,1563.21,2155.76,0.00,55190.362979,68443.437058,3818090,3336677,0.003083,0.001428,65295691,31975336,0,0,88851,0,1,1 +1773691187.357932,0.60,4,3992.50,54.63,1579.95,2139.03,0.00,0.000000,0.002344,3818090,3336679,0.000000,0.000030,65295691,31975339,0,0,88854,0,1,1 +1773691192.353557,0.75,4,3992.50,54.52,1584.38,2134.60,0.00,3521517909944.682617,3521517896674.253906,11,0,0.000000,0.000020,65295691,31975341,0,0,88856,0,1,1 +1773691197.353444,0.70,4,3992.50,54.52,1584.38,2134.60,0.00,2.175440,0.000195,258,2,0.000000,0.000030,65295691,31975344,0,0,88859,0,1,1 +1773691202.353570,1.15,4,3992.50,54.52,1584.39,2134.59,0.00,3518349008798.720703,10.674732,253,761,0.000000,0.000020,65295691,31975346,0,0,88861,0,1,1 +1773691207.353579,1.20,4,3992.50,54.66,1586.05,2140.25,0.00,0.517675,3518430841216.388672,258,2,0.000000,0.000674,65295691,31975353,0,0,88864,0,1,1 +1773691212.358083,0.85,4,3992.50,54.62,1584.82,2138.41,0.00,55163.333097,68412.573947,3818090,3336827,0.000000,0.000020,65295691,31975355,0,0,88866,0,1,1 +1773691217.354904,1.00,4,3992.50,54.66,1583.11,2140.12,0.00,3520676241089.465820,3520676227821.844727,205,0,0.000000,0.000030,65295691,31975358,0,0,88869,0,1,1 +1773691222.353484,0.95,4,3992.50,54.66,1583.11,2140.12,0.00,3519436527545.072754,0.000000,11,0,0.000056,0.000076,65295695,31975364,0,0,88871,0,1,1 +1773691227.353492,0.80,4,3992.50,54.66,1583.11,2140.12,0.00,0.000000,0.000000,11,0,0.000117,0.000170,65295705,31975377,0,0,88874,0,1,1 +1773691232.357804,1.00,4,3992.50,54.66,1583.11,2140.12,0.00,0.053470,0.000000,75,0,0.000000,0.000020,65295705,31975379,0,0,88876,0,1,1 +1773691237.357818,1.15,4,3992.50,54.66,1580.46,2140.11,0.00,3518427536725.847656,0.000000,11,0,0.000000,0.000030,65295705,31975382,0,0,88879,0,1,1 +1773691242.354601,15.48,4,3992.50,59.22,1401.99,2318.57,0.00,2.176791,0.000195,258,2,40.090160,0.022595,65300205,31976978,0,0,88881,0,1,1 +1773691247.358235,0.95,4,3992.50,55.01,1566.95,2153.61,0.00,3515881527257.692383,10.667246,253,761,0.004162,0.002180,65300297,31977048,0,0,88884,0,1,1 +1773691252.355018,0.70,4,3992.50,54.50,1586.94,2133.63,0.00,0.518009,3520702700083.867188,258,2,0.000000,0.000020,65300297,31977050,0,0,88886,0,1,1 +1773691257.357724,0.70,4,3992.50,54.31,1594.12,2126.44,0.00,3516534115475.715332,3516534115477.835938,75,0,0.000000,0.000030,65300297,31977053,0,0,88889,0,1,1 +1773691262.358357,0.75,4,3992.50,54.34,1592.92,2127.64,0.00,55208.165938,68465.759250,3818090,3337054,0.000000,0.000020,65300297,31977055,0,0,88891,0,1,1 +1773691267.353585,1.05,4,3992.50,54.58,1583.62,2136.94,0.00,9.735462,10.753621,3819593,3337844,0.000000,0.000030,65300297,31977058,0,0,88894,0,1,1 +1773691272.354784,0.70,4,3992.50,54.59,1583.38,2137.18,0.00,3517594197384.802246,3517594184127.743164,11,0,0.000000,0.000664,65300297,31977064,0,0,88896,0,1,1 +1773691277.353539,0.70,4,3992.50,54.59,1583.38,2137.18,0.00,55238.683224,68502.265077,3819593,3337886,0.000308,0.000585,65300304,31977078,0,0,88899,0,1,1 +1773691282.358133,0.70,4,3992.50,54.59,1583.38,2137.18,0.00,3515207500901.463379,3515207500900.519043,3818090,3337127,0.000212,0.000559,65300312,31977092,0,0,88901,0,1,1 +1773691287.358235,0.75,4,3992.50,54.59,1583.14,2137.42,0.00,3518365614742.120605,3518365601480.879395,258,2,0.000031,0.000055,65300314,31977097,0,0,88904,0,1,1 +1773691292.355840,0.60,4,3992.50,54.59,1583.14,2137.42,0.00,3520122893651.283691,3520122893653.406738,75,0,0.000126,0.000175,65300324,31977109,0,0,88906,0,1,1 +1773691297.357837,0.90,4,3992.50,54.59,1591.50,2137.39,0.00,1.603559,10.670935,253,761,0.000000,0.000030,65300324,31977112,0,0,88909,0,1,1 +1773691302.353455,0.65,4,3992.50,54.57,1592.21,2136.70,0.00,55271.712351,68534.654260,3819593,3337927,0.000000,0.000020,65300324,31977114,0,0,88911,0,1,1 +1773691307.353438,17.30,4,3992.50,59.57,1396.73,2332.17,0.00,3518449291604.629883,3518449278344.246582,11,0,31.650664,0.028531,65303783,31979136,0,0,88914,0,1,1 +1773691312.357037,1.15,4,3992.50,55.32,1562.86,2166.05,0.00,55175.496333,68425.464030,3818090,3337311,8.409348,0.008183,65304711,31979683,0,0,88916,0,1,1 +1773691317.358194,0.70,4,3992.50,54.63,1590.20,2138.71,0.00,0.000000,0.028900,3818090,3337343,0.000000,0.000030,65304711,31979686,0,0,88919,0,1,1 +1773691322.358092,0.60,4,3992.50,54.43,1597.75,2131.16,0.00,3518509352074.666016,3518509338812.684570,258,2,0.000236,0.000577,65304720,31979701,0,0,88921,0,1,1 +1773691327.357171,1.00,4,3992.50,54.41,1591.85,2130.09,0.00,55232.936002,68498.111929,3819593,3338140,0.000031,0.000055,65304722,31979706,0,0,88924,0,1,1 +1773691332.353450,0.65,4,3992.50,54.40,1592.22,2129.72,0.00,3521057224737.555176,3521057224736.635742,3818090,3337410,0.000000,0.000020,65304722,31979708,0,0,88926,0,1,1 +1773691337.358260,0.80,4,3992.50,54.40,1591.94,2130.00,0.00,0.000000,0.007805,3818090,3337416,0.002085,0.002755,65304754,31979741,0,0,88929,0,1,1 +1773691342.358001,0.70,4,3992.50,54.40,1591.94,2130.00,0.00,0.000000,0.008594,3818090,3337421,0.001064,0.000421,65304776,31979756,0,0,88931,0,1,1 +1773691347.357565,0.70,4,3992.50,54.40,1591.95,2130.00,0.00,0.000000,0.005469,3818090,3337427,0.000008,0.000038,65304777,31979760,0,0,88934,0,1,1 +1773691352.353556,0.70,4,3992.50,54.40,1591.95,2130.00,0.00,0.000000,0.002346,3818090,3337430,0.000031,0.000045,65304779,31979764,0,0,88936,0,1,1 +1773691357.357863,1.05,4,3992.50,54.40,1584.49,2129.75,0.00,0.000000,0.032784,3818090,3337446,0.000075,0.000123,65304785,31979773,0,0,88939,0,1,1 +1773691362.358410,0.65,4,3992.50,54.21,1591.67,2122.59,0.00,3518052622073.124512,3518052608814.825195,75,0,0.000000,0.000020,65304785,31979775,0,0,88941,0,1,1 +1773691367.357954,0.80,4,3992.50,54.21,1591.67,2122.59,0.00,3518758075987.076172,0.000000,11,0,0.000031,0.000055,65304787,31979780,0,0,88944,0,1,1 +1773691372.357932,16.02,4,3992.50,58.72,1415.25,2298.99,0.00,0.053516,0.000000,75,0,23.439081,0.017505,65307447,31980975,0,0,88946,0,1,1 +1773691377.358070,1.25,4,3992.50,53.91,1603.54,2110.71,0.00,2.121816,0.000195,258,2,16.625210,0.005439,65309141,31981303,0,0,88949,0,1,1 +1773691382.357553,0.65,4,3992.50,53.92,1603.29,2110.96,0.00,3518800509550.913574,3518800509553.089355,11,0,0.000056,0.000076,65309145,31981309,0,0,88951,0,1,1 +1773691387.353575,0.60,4,3992.50,53.92,1603.30,2110.95,0.00,55268.908104,68540.308759,3819593,3338405,0.000025,0.000061,65309147,31981314,0,0,88954,0,1,1 +1773691392.354250,1.05,4,3992.50,54.05,1595.88,2116.30,0.00,0.000000,0.036714,3819593,3338433,0.000008,0.000028,65309148,31981317,0,0,88956,0,1,1 +1773691397.357902,0.65,4,3992.50,54.05,1595.88,2116.30,0.00,3515869235195.782715,3515869221944.582520,11,0,0.000000,0.000030,65309148,31981320,0,0,88959,0,1,1 +1773691402.353439,0.65,4,3992.50,54.05,1595.88,2116.30,0.00,55264.540610,68536.353536,3818090,3337707,0.000000,0.000664,65309148,31981326,0,0,88961,0,1,1 +1773691407.358059,0.60,4,3992.50,54.05,1595.89,2116.30,0.00,9.717194,10.668658,3819593,3338474,0.000000,0.000030,65309148,31981329,0,0,88964,0,1,1 +1773691412.354485,0.70,4,3992.50,54.02,1597.00,2115.18,0.00,3520953586228.248047,3520953572957.844727,11,0,0.000000,0.000020,65309148,31981331,0,0,88966,0,1,1 +1773691417.357579,1.00,4,3992.50,54.30,1587.12,2125.80,0.00,55181.064730,68432.890991,3818090,3337748,0.000031,0.000055,65309150,31981336,0,0,88969,0,1,1 +1773691422.357563,0.85,4,3992.50,54.30,1586.89,2125.93,0.00,0.000000,0.004688,3818090,3337753,0.000126,0.000175,65309160,31981348,0,0,88971,0,1,1 +1773691427.358391,0.60,4,3992.50,54.24,1589.41,2123.42,0.00,0.000000,0.007030,3818090,3337759,0.000000,0.000030,65309160,31981351,0,0,88974,0,1,1 +1773691432.354578,0.70,4,3992.50,54.24,1589.16,2123.66,0.00,3521122152971.414062,3521122139701.256836,11,0,0.000000,0.000020,65309160,31981353,0,0,88976,0,1,1 +1773691437.358250,18.62,4,3992.50,58.92,1405.98,2306.85,0.00,0.000000,0.000000,11,0,37.631317,0.021847,65313217,31982804,0,0,88979,0,1,1 +1773691442.357771,0.90,4,3992.50,54.90,1563.46,2149.36,0.00,2.175599,0.000195,258,2,2.406901,0.002471,65313539,31982917,0,0,88981,0,1,1 +1773691447.357898,1.00,4,3992.50,54.47,1580.18,2132.79,0.00,3518347852698.598145,10.674729,253,761,0.000000,0.000030,65313539,31982920,0,0,88984,0,1,1 +1773691452.359869,9.13,4,3992.50,89.30,242.34,3496.28,0.00,0.517472,3517051101752.583008,258,2,0.000000,0.000020,65313539,31982922,0,0,88986,0,1,1 +1773691457.357928,28.56,4,3992.50,74.58,812.31,2919.91,0.00,3519803664243.768066,3519803664245.890625,75,0,0.000000,0.000030,65313539,31982925,0,0,88989,0,1,1 +1773691462.355059,28.99,4,3992.50,62.85,1272.62,2460.80,0.00,3520457095785.053223,0.000000,11,0,0.000000,0.000020,65313539,31982927,0,0,88991,0,1,1 +1773691467.358005,28.51,4,3992.50,56.16,1545.52,2198.60,0.00,2.174110,0.000195,258,2,0.000000,0.000673,65313539,31982934,0,0,88994,0,1,1 +1773691472.359497,29.03,4,3992.50,94.26,40.93,3690.52,0.00,55799.655764,68466.574518,3855489,3348595,0.000000,0.000020,65313539,31982936,0,0,88996,0,1,1 +1773691477.356204,29.49,4,3992.50,83.89,440.72,3284.55,0.00,3520756120209.483887,3520756107541.633301,253,761,0.000000,0.000030,65313539,31982939,0,0,88999,0,1,1 +1773691482.355049,23.39,4,3992.50,54.02,1625.68,2115.04,0.00,3519250139475.209961,3519250139466.190918,11,0,0.000031,0.000045,65313541,31982943,0,0,89001,0,1,1 +1773691487.358072,0.65,4,3992.50,54.05,1620.27,2116.15,0.00,0.000000,0.000000,11,0,0.000142,0.000201,65313553,31982958,0,0,89004,0,1,1 +1773691492.355084,0.65,4,3992.50,53.70,1633.68,2102.55,0.00,2.176691,0.000195,258,2,0.000000,0.000020,65313553,31982960,0,0,89006,0,1,1 +1773691497.357559,0.70,4,3992.50,53.65,1634.70,2100.43,0.00,3516696030079.342773,3516696030081.517090,11,0,0.000000,0.000043,65313553,31982964,0,0,89009,0,1,1 +1773691502.356148,14.27,4,3992.50,59.19,1376.45,2317.32,0.00,0.053531,0.000000,75,0,36.665946,0.019863,65317457,31984347,0,0,89011,0,1,1 +1773691507.357927,1.35,4,3992.50,54.01,1583.57,2114.63,0.00,56152.936243,68479.295462,3876610,3354898,3.407794,0.002747,65317904,31984462,0,0,89014,0,1,1 +1773691512.358296,0.65,4,3992.50,53.81,1590.16,2106.64,0.00,3518177756762.765625,3518177744430.808594,258,2,0.000008,0.000028,65317905,31984465,0,0,89016,0,1,1 +1773691517.358464,0.95,4,3992.50,53.88,1587.36,2109.44,0.00,3518319319853.567871,10.674642,253,761,0.000000,0.000030,65317905,31984468,0,0,89019,0,1,1 +1773691522.355139,0.70,4,3992.50,53.79,1590.92,2105.81,0.00,3520778082688.491211,3520778082679.468262,11,0,0.000000,0.000020,65317905,31984470,0,0,89021,0,1,1 +1773691527.353467,0.65,4,3992.50,53.78,1591.15,2105.66,0.00,0.180334,0.000000,205,0,0.000000,0.000030,65317905,31984473,0,0,89024,0,1,1 +1773691532.353554,0.70,4,3992.50,53.78,1591.15,2105.66,0.00,56174.824142,68502.516672,3876756,3354949,0.000000,0.000664,65317905,31984479,0,0,89026,0,1,1 +1773691537.355333,0.90,4,3992.50,54.13,1577.38,2119.40,0.00,3517185930696.520508,3517185918382.191895,253,761,0.000000,0.000030,65317905,31984482,0,0,89029,0,1,1 +1773691542.358206,7.96,4,3992.50,81.17,560.36,3177.92,0.00,56170.188589,68454.082242,3878444,3355286,0.000000,0.000020,65317905,31984484,0,0,89031,0,1,1 +1773691547.358244,28.83,4,3992.50,63.06,1261.76,2468.86,0.00,3518410101734.852051,3518410089434.977051,11,0,0.000031,0.000055,65317907,31984489,0,0,89034,0,1,1 +1773691552.354474,29.02,4,3992.50,84.19,442.18,3296.06,0.00,0.000000,0.000000,11,0,0.000142,0.000191,65317919,31984503,0,0,89036,0,1,1 +1773691557.357316,28.82,4,3992.50,61.18,1347.65,2395.13,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65317919,31984506,0,0,89039,0,1,1 +1773691562.358332,28.51,4,3992.50,85.60,389.92,3351.23,0.00,1.657378,10.673028,253,761,0.000000,0.000020,65317919,31984508,0,0,89041,0,1,1 +1773691567.358746,41.28,4,3992.50,74.22,825.14,2905.86,0.00,3518145746689.899414,3518145746680.882812,11,0,27.642734,0.021231,65321034,31985999,0,0,89044,0,1,1 +1773691572.357902,25.68,4,3992.50,53.43,1643.22,2092.00,0.00,0.180304,0.000000,205,0,12.422864,0.006915,65322364,31986444,0,0,89046,0,1,1 +1773691577.357402,0.60,4,3992.50,53.34,1643.95,2088.27,0.00,0.000000,0.000000,205,0,0.001238,0.001262,65322374,31986462,0,0,89049,0,1,1 +1773691582.358046,0.80,4,3992.50,53.36,1642.63,2088.99,0.00,57140.626824,68501.727984,3935073,3370485,0.000205,0.000552,65322381,31986475,0,0,89051,0,1,1 +1773691587.353453,0.65,4,3992.50,53.51,1635.54,2094.88,0.00,3521671943351.724121,3521671931978.714355,205,0,0.000000,0.000030,65322381,31986478,0,0,89054,0,1,1 +1773691592.353553,0.80,4,3992.50,53.52,1634.14,2095.56,0.00,1.995077,0.000195,258,2,0.000000,0.000020,65322381,31986480,0,0,89056,0,1,1 +1773691597.358221,1.00,4,3992.50,53.75,1613.95,2104.36,0.00,57107.712478,68457.662687,3936878,3371541,0.000000,0.000030,65322381,31986483,0,0,89059,0,1,1 +1773691602.355885,0.70,4,3992.50,53.54,1622.06,2096.20,0.00,3520081681784.520508,3520081670420.840820,11,0,0.000000,0.000664,65322381,31986489,0,0,89061,0,1,1 +1773691607.354831,0.70,4,3992.50,53.47,1624.42,2093.53,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65322381,31986492,0,0,89064,0,1,1 +1773691612.357548,0.75,4,3992.50,53.40,1625.12,2090.64,0.00,0.053487,0.000000,75,0,0.000031,0.000045,65322383,31986496,0,0,89066,0,1,1 +1773691617.353462,0.75,4,3992.50,53.42,1624.40,2091.38,0.00,0.000000,0.000000,75,0,0.000134,0.000193,65322394,31986510,0,0,89069,0,1,1 +1773691622.356890,0.60,4,3992.50,53.41,1624.65,2091.03,0.00,57125.037845,68474.677376,3936952,3371589,0.001157,0.001233,65322405,31986527,0,0,89071,0,1,1 +1773691627.355918,1.00,4,3992.50,53.60,1622.11,2098.41,0.00,3519120859188.304688,3519120847828.730957,11,0,0.000031,0.000055,65322407,31986532,0,0,89074,0,1,1 +1773691632.358065,18.85,4,3992.50,89.64,222.68,3509.66,0.00,57225.499764,68492.661863,3940376,3372032,13.620155,0.013260,65324096,31987400,0,0,89076,0,1,1 +1773691637.354585,34.27,4,3992.50,94.26,42.95,3690.61,0.00,3520887690874.338379,3520887679594.488770,11,0,26.459417,0.009093,65326865,31987941,0,0,89079,0,1,1 +1773691642.358850,29.05,4,3992.50,79.81,612.50,3124.82,0.00,1.656302,10.666095,253,761,0.001740,0.001365,65326891,31987960,0,0,89081,0,1,1 +1773691647.357088,29.17,4,3992.50,77.55,712.30,3036.22,0.00,3519677842525.864746,3519677842516.844238,11,0,0.000000,0.000030,65326891,31987963,0,0,89084,0,1,1 +1773691652.354527,28.69,4,3992.50,73.32,872.66,2870.73,0.00,0.000000,0.000000,11,0,0.000000,0.000020,65326891,31987965,0,0,89086,0,1,1 +1773691657.354642,29.07,4,3992.50,90.80,168.19,3554.84,0.00,0.053514,0.000000,75,0,0.000000,0.000030,65326891,31987968,0,0,89089,0,1,1 +1773691662.355261,23.68,4,3992.50,53.91,1623.53,2110.82,0.00,0.000000,0.000000,75,0,0.000000,0.000020,65326891,31987970,0,0,89091,0,1,1 +1773691667.358188,0.60,4,3992.50,54.08,1612.86,2117.35,0.00,3516378889467.438965,0.000000,11,0,0.000031,0.000698,65326893,31987979,0,0,89094,0,1,1 +1773691672.357833,0.70,4,3992.50,54.09,1611.21,2117.71,0.00,0.180286,0.000000,205,0,0.000008,0.000028,65326894,31987982,0,0,89096,0,1,1 +1773691677.355328,0.65,4,3992.50,54.01,1614.11,2114.68,0.00,1.478182,10.680547,253,761,0.000031,0.000055,65326896,31987987,0,0,89099,0,1,1 +1773691682.358222,0.70,4,3992.50,54.01,1613.87,2114.76,0.00,0.000000,0.000000,253,761,0.000157,0.000200,65326908,31988001,0,0,89101,0,1,1 +1773691687.355344,1.00,4,3992.50,54.20,1599.58,2121.88,0.00,58138.042212,68568.218227,3994377,3388661,0.000050,0.000092,65326912,31988008,0,0,89104,0,1,1 +1773691692.358230,0.60,4,3992.50,54.19,1599.58,2121.55,0.00,3516407706705.305664,3516407696278.132324,11,0,0.000000,0.000020,65326912,31988010,0,0,89106,0,1,1 +1773691697.353452,10.74,4,3992.50,58.91,1395.21,2306.50,0.00,0.000000,0.000000,11,0,10.631969,0.011837,65328340,31988783,0,0,89109,0,1,1 +1773691702.356192,5.36,4,3992.50,54.99,1548.85,2152.84,0.00,0.180175,0.000000,205,0,29.428314,0.009275,65331394,31989389,0,0,89111,0,1,1 +1773691707.358095,0.60,4,3992.50,54.34,1574.04,2127.65,0.00,0.000000,0.000000,205,0,0.000000,0.000030,65331394,31989392,0,0,89114,0,1,1 +1773691712.354936,0.70,4,3992.50,54.09,1584.07,2117.61,0.00,3520661810869.772461,0.000000,75,0,0.000000,0.000020,65331394,31989394,0,0,89116,0,1,1 +1773691717.357692,1.05,4,3992.50,54.32,1581.14,2126.60,0.00,0.126688,0.000000,205,0,0.000000,0.000030,65331394,31989397,0,0,89119,0,1,1 +1773691722.358672,7.71,4,3992.50,70.83,963.84,2773.12,0.00,3517747949792.332031,0.000000,11,0,0.000000,0.000020,65331394,31989399,0,0,89121,0,1,1 +1773691727.355863,28.73,4,3992.50,59.94,1390.73,2346.77,0.00,58340.923672,68570.732377,4004253,3391220,0.000000,0.000030,65331394,31989402,0,0,89124,0,1,1 +1773691732.358305,28.37,4,3992.50,92.30,142.39,3613.68,0.00,137.794021,13.593751,4014000,3394773,0.000000,0.000663,65331394,31989408,0,0,89126,0,1,1 +1773691737.354405,28.79,4,3992.50,54.32,1618.88,2126.75,0.00,3521183852013.662598,3521183841905.976562,11,0,0.000000,0.000030,65331394,31989411,0,0,89129,0,1,1 +1773691742.355436,28.76,4,3992.50,67.83,1083.78,2655.59,0.00,1.657373,10.672995,253,761,0.000031,0.000045,65331396,31989415,0,0,89131,0,1,1 +1773691747.358320,28.99,4,3992.50,93.46,66.30,3659.12,0.00,58826.514182,68504.367709,4040382,3403171,0.000134,0.000193,65331407,31989429,0,0,89134,0,1,1 +1773691752.359105,23.63,4,3992.50,54.30,1608.64,2125.88,0.00,3517884568452.429199,3517884558761.498047,11,0,0.000000,0.000020,65331407,31989431,0,0,89136,0,1,1 +1773691757.357956,0.70,4,3992.50,54.03,1617.05,2115.26,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65331407,31989434,0,0,89139,0,1,1 +1773691762.357578,8.63,4,3992.50,59.89,1333.01,2344.82,0.00,0.053520,0.000000,75,0,3.011363,0.008267,65331983,31989853,0,0,89141,0,1,1 +1773691767.357021,7.98,4,3992.50,55.35,1510.71,2167.07,0.00,59038.498370,68554.044408,4048384,3404856,37.058671,0.016320,65335793,31991018,0,0,89144,0,1,1 +1773691772.354650,0.75,4,3992.50,54.64,1538.48,2139.25,0.00,3520106200463.601074,3520106190953.677246,253,761,0.000000,0.000020,65335793,31991020,0,0,89146,0,1,1 +1773691777.358010,1.05,4,3992.50,54.32,1553.35,2126.81,0.00,3516074614891.951660,3516074614882.940918,11,0,0.000000,0.000030,65335793,31991023,0,0,89149,0,1,1 +1773691782.358156,0.60,4,3992.50,54.24,1554.29,2123.49,0.00,0.000000,0.000000,11,0,0.000000,0.000020,65335793,31991025,0,0,89151,0,1,1 +1773691787.357814,0.65,4,3992.50,54.12,1558.84,2118.93,0.00,0.053519,0.000000,75,0,0.000000,0.000030,65335793,31991028,0,0,89154,0,1,1 +1773691792.354645,0.60,4,3992.50,53.92,1566.77,2111.00,0.00,0.000000,0.000000,75,0,0.000000,0.000020,65335793,31991030,0,0,89156,0,1,1 +1773691797.354573,0.70,4,3992.50,53.86,1569.06,2108.71,0.00,0.000000,0.000000,75,0,0.000000,0.000674,65335793,31991037,0,0,89159,0,1,1 +1773691802.354598,0.70,4,3992.50,53.84,1569.67,2108.06,0.00,3518418865254.550293,0.000000,11,0,0.000000,0.000020,65335793,31991039,0,0,89161,0,1,1 +1773691807.353551,1.00,4,3992.50,53.99,1564.29,2113.69,0.00,0.000000,0.000000,11,0,0.000031,0.000055,65335795,31991044,0,0,89164,0,1,1 +1773691812.358908,7.11,4,3992.50,85.87,361.14,3362.18,0.00,0.000000,0.000000,11,0,0.000126,0.000175,65335805,31991056,0,0,89166,0,1,1 +1773691817.358708,28.71,4,3992.50,96.02,0.42,3759.26,0.00,2.175478,0.000195,258,2,0.000008,0.000038,65335806,31991060,0,0,89169,0,1,1 +1773691822.357026,28.46,4,3992.50,57.85,1465.78,2264.83,0.00,59325.182179,68575.571356,4066189,3410585,0.000000,0.000020,65335806,31991062,0,0,89171,0,1,1 +1773691827.358968,30.21,4,3992.50,80.82,513.66,3164.12,0.00,3517071785731.030273,3517071776489.515625,11,0,0.023576,0.002791,65335876,31991117,0,0,89174,0,1,1 +1773691832.358512,39.52,4,3992.50,54.26,1606.46,2124.25,0.00,0.000000,0.000000,11,0,40.044498,0.020011,65340184,31992603,0,0,89176,0,1,1 +1773691837.357500,28.87,4,3992.50,75.46,768.32,2954.25,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65340184,31992606,0,0,89179,0,1,1 +1773691842.355149,23.17,4,3992.50,54.22,1611.09,2122.91,0.00,0.180358,0.000000,205,0,0.000000,0.000020,65340184,31992608,0,0,89181,0,1,1 +1773691847.353497,0.65,4,3992.50,54.22,1605.48,2122.87,0.00,3519599938287.271973,0.000000,11,0,0.000000,0.000030,65340184,31992611,0,0,89184,0,1,1 +1773691852.355660,0.60,4,3992.50,54.24,1603.43,2123.75,0.00,0.180196,0.000000,205,0,0.000000,0.000020,65340184,31992613,0,0,89186,0,1,1 +1773691857.357506,0.75,4,3992.50,54.27,1602.06,2124.63,0.00,3517138253755.721191,0.000000,11,0,0.000000,0.000030,65340184,31992616,0,0,89189,0,1,1 +1773691862.357919,0.65,4,3992.50,54.23,1603.41,2123.12,0.00,0.000000,0.000000,11,0,0.000000,0.000664,65340184,31992622,0,0,89191,0,1,1 +1773691867.358165,0.90,4,3992.50,54.53,1583.12,2134.82,0.00,59878.862522,68571.032054,4102665,3422069,0.000000,0.000030,65340184,31992625,0,0,89194,0,1,1 +1773691872.358119,0.80,4,3992.50,54.30,1587.77,2125.84,0.00,3518469269107.353516,3518469260414.677734,11,0,0.000031,0.000045,65340186,31992629,0,0,89196,0,1,1 +1773691877.353446,0.70,4,3992.50,54.06,1597.15,2116.43,0.00,0.000000,0.000000,11,0,0.000434,0.000741,65340203,31992653,0,0,89199,0,1,1 +1773691882.354709,0.65,4,3992.50,54.01,1598.89,2114.50,0.00,0.000000,0.000000,11,0,0.001147,0.001229,65340214,31992670,0,0,89201,0,1,1 +1773691887.358055,0.70,4,3992.50,54.01,1598.69,2114.67,0.00,59833.100578,68517.917789,4101234,3421347,0.000000,0.000030,65340214,31992673,0,0,89204,0,1,1 +1773691892.355562,1.05,4,3992.50,53.91,1596.67,2110.57,0.00,3520191663930.163574,3520191655235.201172,11,0,0.002235,0.000725,65340238,31992691,0,0,89206,0,1,1 +1773691897.353495,14.71,4,3992.50,54.30,1555.86,2126.13,0.00,1.658401,10.679612,253,761,40.080135,0.022839,65344632,31994244,0,0,89209,0,1,1 +1773691902.354664,6.86,4,3992.50,58.94,1437.37,2307.80,0.00,3517614948799.366211,3517614948790.170410,205,0,0.000000,0.000020,65344632,31994246,0,0,89211,0,1,1 +1773691907.354597,28.89,4,3992.50,87.98,295.07,3444.80,0.00,60081.931655,68567.915230,4112121,3424429,0.000000,0.000030,65344632,31994249,0,0,89214,0,1,1 +1773691912.358492,29.01,4,3992.50,71.85,923.54,2812.93,0.00,142.118189,3.085097,4121216,3427407,0.000000,0.000020,65344632,31994251,0,0,89216,0,1,1 +1773691917.359415,28.74,4,3992.50,55.89,1556.78,2188.16,0.00,148.154292,13.710360,4131635,3431085,0.000000,0.000030,65344632,31994254,0,0,89219,0,1,1 +1773691922.355495,28.64,4,3992.50,85.89,382.23,3362.95,0.00,3521197964905.222656,3521197956684.520996,258,2,0.000236,0.000578,65344641,31994269,0,0,89221,0,1,1 +1773691927.358127,29.37,4,3992.50,76.54,731.84,2996.54,0.00,3516586323299.822754,10.669384,253,761,0.000039,0.000706,65344644,31994279,0,0,89224,0,1,1 +1773691932.359089,23.93,4,3992.50,54.41,1606.81,2130.25,0.00,3517760505735.678711,3517760505726.663574,11,0,0.000000,0.000020,65344644,31994281,0,0,89226,0,1,1 +1773691937.357574,0.70,4,3992.50,54.40,1599.96,2129.69,0.00,0.000000,0.000000,11,0,0.002339,0.001862,65344675,31994311,0,0,89229,0,1,1 +1773691942.353667,0.75,4,3992.50,54.41,1599.22,2130.25,0.00,2.177092,0.000195,258,2,0.001172,0.000540,65344705,31994334,0,0,89231,0,1,1 +1773691947.357958,0.65,4,3992.50,54.22,1605.81,2122.84,0.00,3515420389706.940430,10.665847,253,761,0.000000,0.000030,65344705,31994337,0,0,89234,0,1,1 +1773691952.357990,0.60,4,3992.50,54.14,1609.15,2119.53,0.00,0.517672,3518414793051.878906,258,2,0.000000,0.000020,65344705,31994339,0,0,89236,0,1,1 +1773691957.356661,9.52,4,3992.50,59.52,1358.59,2330.24,0.00,0.000000,0.000000,258,2,3.812951,0.008364,65345390,31994837,0,0,89239,0,1,1 +1773691962.356950,7.23,4,3992.50,54.66,1548.58,2140.21,0.00,3518234194805.987793,3518234194808.163086,11,0,36.251171,0.021439,65349103,31996407,0,0,89241,0,1,1 +1773691967.357680,0.80,4,3992.50,54.59,1551.47,2137.30,0.00,0.053508,0.000000,75,0,0.000031,0.000055,65349105,31996412,0,0,89244,0,1,1 +1773691972.357752,0.70,4,3992.50,54.51,1554.50,2134.29,0.00,60836.678875,68581.558525,4158180,3439455,0.000008,0.000028,65349106,31996415,0,0,89246,0,1,1 +1773691977.354896,0.65,4,3992.50,54.52,1554.03,2134.77,0.00,3520447615128.549316,3520447607388.208496,253,761,0.000000,0.000030,65349106,31996418,0,0,89249,0,1,1 +1773691982.357795,0.75,4,3992.50,54.50,1555.12,2133.68,0.00,0.000000,0.000000,253,761,0.000056,0.000076,65349110,31996424,0,0,89251,0,1,1 +1773691987.356319,1.15,4,3992.50,54.54,1548.93,2135.38,0.00,60863.660732,68602.896462,4159686,3440285,0.000025,0.000061,65349112,31996429,0,0,89254,0,1,1 +1773691992.355126,6.87,4,3992.50,81.09,572.90,3174.96,0.00,3519276719359.597656,3519276711611.601074,205,0,0.000000,0.000664,65349112,31996435,0,0,89256,0,1,1 +1773691997.358644,28.76,4,3992.50,79.63,618.24,3117.54,0.00,3515963660238.346680,0.000000,11,0,0.000000,0.000030,65349112,31996438,0,0,89259,0,1,1 +1773692002.358170,29.12,4,3992.50,65.88,1155.59,2579.34,0.00,0.000000,0.000000,11,0,0.000031,0.000045,65349114,31996442,0,0,89261,0,1,1 +1773692007.358733,28.92,4,3992.50,91.60,148.46,3586.48,0.00,0.000000,0.000000,11,0,0.000126,0.000185,65349124,31996455,0,0,89264,0,1,1 +1773692012.355020,28.54,4,3992.50,76.39,752.34,2990.80,0.00,0.000000,0.000000,11,0,0.000000,0.000020,65349124,31996457,0,0,89266,0,1,1 +1773692017.357537,28.90,4,3992.50,60.23,1391.93,2357.99,0.00,0.053489,0.000000,75,0,0.000000,0.000030,65349124,31996460,0,0,89269,0,1,1 +1773692022.367630,28.70,4,3992.50,58.88,1388.43,2305.30,0.00,0.126502,0.000000,205,0,1.004572,0.004556,65349402,31996656,0,0,89271,0,1,1 +1773692027.353549,8.08,4,3992.50,53.77,1588.52,2105.32,0.00,1.481614,10.705344,253,761,39.168113,0.014443,65353507,31997698,0,0,89274,0,1,1 +1773692032.357999,0.70,4,3992.50,53.77,1588.74,2105.09,0.00,0.517215,3515308703646.774902,258,2,0.000000,0.000020,65353507,31997700,0,0,89276,0,1,1 +1773692037.357955,0.70,4,3992.50,53.61,1594.93,2098.85,0.00,3518468063031.162598,3518468063033.337891,11,0,0.000000,0.000030,65353507,31997703,0,0,89279,0,1,1 +1773692042.358178,0.75,4,3992.50,53.58,1596.20,2097.61,0.00,2.175294,0.000195,258,2,0.000000,0.000020,65353507,31997705,0,0,89281,0,1,1 +1773692047.357869,1.05,4,3992.50,53.71,1591.77,2102.73,0.00,0.000000,0.000000,258,2,0.000000,0.000030,65353507,31997708,0,0,89284,0,1,1 +1773692052.358309,0.75,4,3992.50,53.70,1591.38,2102.29,0.00,0.000000,0.000000,258,2,0.000000,0.000020,65353507,31997710,0,0,89286,0,1,1 +1773692057.357489,1.62,4,3992.50,53.28,1606.24,2086.22,0.00,3519014317377.492188,10.676751,253,761,0.000000,0.000674,65353507,31997717,0,0,89289,0,1,1 +1773692062.354320,0.55,4,3992.50,53.29,1606.01,2086.46,0.00,3520668257764.755371,3520668257755.732422,11,0,0.000000,0.000020,65353507,31997719,0,0,89291,0,1,1 +1773692067.357781,0.75,4,3992.50,53.29,1606.05,2086.42,0.00,1.656568,10.667811,253,761,0.000031,0.000055,65353509,31997724,0,0,89294,0,1,1 +1773692072.357846,0.60,4,3992.50,53.24,1607.90,2084.57,0.00,3518392104502.299805,3518392104493.102051,205,0,0.000126,0.000175,65353519,31997736,0,0,89296,0,1,1 +1773692077.357893,1.05,4,3992.50,53.44,1603.18,2092.28,0.00,61805.920534,68611.583260,4227765,3458642,0.000016,0.000046,65353521,31997741,0,0,89299,0,1,1 +1773692082.357568,0.60,4,3992.50,53.46,1602.45,2093.02,0.00,3518665920882.427246,3518665914076.437988,11,0,0.000000,0.000020,65353521,31997743,0,0,89301,0,1,1 +1773692087.358059,0.95,4,3992.50,53.41,1604.31,2091.09,0.00,61800.713082,68605.527407,4227772,3458685,0.002938,0.002064,65353551,31997771,0,0,89304,0,1,1 +1773692092.354178,14.82,4,3992.50,54.96,1543.67,2151.77,0.00,3521170175139.716797,3521170168328.946777,11,0,40.094141,0.023097,65357903,31999371,0,0,89306,0,1,1 +1773692097.353595,0.65,4,3992.50,54.11,1576.91,2118.52,0.00,0.180294,0.000000,205,0,0.000000,0.000030,65357903,31999374,0,0,89309,0,1,1 +1773692102.357678,0.85,4,3992.50,53.62,1596.04,2099.40,0.00,1.993489,0.000195,258,2,0.000000,0.000020,65357903,31999376,0,0,89311,0,1,1 +1773692107.353472,1.15,4,3992.50,53.70,1603.67,2102.35,0.00,3521399912639.217773,3521399912641.341797,75,0,0.000000,0.000030,65357903,31999379,0,0,89314,0,1,1 +1773692112.353557,0.85,4,3992.50,53.34,1615.13,2088.35,0.00,0.126756,0.000000,205,0,0.000000,0.000020,65357903,31999381,0,0,89316,0,1,1 +1773692117.353477,1.15,4,3992.50,53.44,1611.02,2092.44,0.00,1.995149,0.000195,258,2,0.000000,0.000030,65357903,31999384,0,0,89319,0,1,1 +1773692122.353495,0.90,4,3992.50,53.44,1611.04,2092.44,0.00,0.000000,0.000000,258,2,0.000000,0.000664,65357903,31999390,0,0,89321,0,1,1 +1773692127.353461,0.75,4,3992.50,53.44,1611.04,2092.44,0.00,61798.678885,68602.374873,4226449,3458218,0.000000,0.000030,65357903,31999393,0,0,89324,0,1,1 +1773692132.353552,0.90,4,3992.50,53.45,1610.80,2092.68,0.00,0.000000,0.004687,4226449,3458223,0.000000,0.000020,65357903,31999395,0,0,89326,0,1,1 +1773692137.353446,0.75,4,3992.50,53.45,1610.80,2092.67,0.00,3518512349656.797363,3518512342852.997559,258,2,0.000157,0.000210,65357915,31999410,0,0,89329,0,1,1 +1773692142.358397,1.15,4,3992.50,53.56,1601.57,2097.11,0.00,61737.121924,68534.079851,4226449,3458245,0.000008,0.000028,65357916,31999413,0,0,89331,0,1,1 +1773692147.357857,0.90,4,3992.50,53.56,1601.74,2096.93,0.00,3518816961851.813477,3518816955049.512207,75,0,0.000000,0.000030,65357916,31999416,0,0,89334,0,1,1 +1773692152.358266,1.15,4,3992.50,53.46,1605.42,2093.20,0.00,3518149671917.720703,0.000000,11,0,0.002234,0.000725,65357940,31999434,0,0,89336,0,1,1 +1773692157.357061,16.08,4,3992.50,53.61,1599.82,2098.86,0.00,1.658114,10.677768,253,761,40.073199,0.023056,65362360,32001006,0,0,89339,0,1,1 +1773692162.353370,0.60,4,3992.50,53.61,1599.82,2098.85,0.00,3521036590201.263184,3521036590192.185547,75,0,0.000000,0.000020,65362360,32001008,0,0,89341,0,1,1 +1773692167.353459,1.05,4,3992.50,53.69,1597.36,2101.97,0.00,0.000000,0.000000,75,0,0.000000,0.000030,65362360,32001011,0,0,89344,0,1,1 +1773692172.357463,0.70,4,3992.50,53.49,1604.88,2094.33,0.00,2.120177,0.000195,258,2,0.000000,0.000020,65362360,32001013,0,0,89346,0,1,1 +1773692177.358299,0.65,4,3992.50,53.49,1604.88,2094.33,0.00,3517849085021.013672,3517849085023.188477,11,0,0.000308,0.000584,65362367,32001027,0,0,89349,0,1,1 +1773692182.357868,0.85,4,3992.50,53.50,1604.67,2094.54,0.00,0.053520,0.000000,75,0,0.000213,0.000560,65362375,32001041,0,0,89351,0,1,1 +1773692187.357697,0.60,4,3992.50,53.50,1604.67,2094.54,0.00,0.000000,0.000000,75,0,0.000000,0.000674,65362375,32001048,0,0,89354,0,1,1 +1773692192.358176,0.65,4,3992.50,53.32,1611.44,2087.76,0.00,3518100016587.056641,0.000000,11,0,0.000000,0.000020,65362375,32001050,0,0,89356,0,1,1 +1773692197.357853,1.10,4,3992.50,53.65,1602.99,2100.37,0.00,61804.570004,68606.703757,4226466,3458536,0.000000,0.000030,65362375,32001053,0,0,89359,0,1,1 +1773692202.357059,0.70,4,3992.50,53.65,1603.00,2100.37,0.00,3518996381764.817383,3518996374962.041504,11,0,0.000157,0.000200,65362387,32001067,0,0,89361,0,1,1 +1773692207.353482,0.70,4,3992.50,53.66,1602.27,2101.10,0.00,61844.823481,68651.410068,4226467,3458558,0.000000,0.000030,65362387,32001070,0,0,89364,0,1,1 +1773692212.356654,0.75,4,3992.50,53.67,1602.05,2101.32,0.00,3516205761499.945312,3516205754702.488281,75,0,0.000000,0.000020,65362387,32001072,0,0,89366,0,1,1 +1773692217.357866,0.80,4,3992.50,53.38,1613.55,2089.82,0.00,3517584839684.582520,0.000000,11,0,0.002183,0.000408,65362407,32001089,0,0,89369,0,1,1 +1773692222.353460,16.62,4,3992.50,54.68,1562.34,2140.98,0.00,0.180432,0.000000,205,0,40.098057,0.033172,65366752,32003408,0,0,89371,0,1,1 +1773692227.357551,1.05,4,3992.50,54.47,1571.25,2132.70,0.00,3515560863467.327637,0.000000,11,0,0.000039,0.000063,65366755,32003414,0,0,89374,0,1,1 +1773692232.353473,0.65,4,3992.50,54.19,1582.45,2121.50,0.00,0.180421,0.000000,205,0,0.000000,0.000020,65366755,32003416,0,0,89376,0,1,1 +1773692237.358232,0.80,4,3992.50,54.00,1589.61,2114.35,0.00,3515090934408.844727,0.000000,11,0,0.002072,0.002112,65366786,32003445,0,0,89379,0,1,1 +1773692242.357592,0.65,4,3992.50,54.00,1589.70,2114.26,0.00,2.175670,0.000195,258,2,0.001064,0.000421,65366808,32003460,0,0,89381,0,1,1 +1773692247.354448,0.70,4,3992.50,54.00,1589.70,2114.26,0.00,3520650299517.122070,3520650299519.298828,11,0,0.000000,0.000030,65366808,32003463,0,0,89384,0,1,1 +1773692252.353575,1.45,4,3992.50,54.00,1589.70,2114.26,0.00,0.000000,0.000000,11,0,0.000000,0.000664,65366808,32003469,0,0,89386,0,1,1 +1773692257.358054,0.95,4,3992.50,54.29,1582.47,2125.53,0.00,1.656231,10.665640,253,761,0.000000,0.000030,65366808,32003472,0,0,89389,0,1,1 +1773692262.357989,0.75,4,3992.50,54.31,1581.48,2126.50,0.00,0.000000,0.000000,253,761,0.000000,0.000020,65366808,32003474,0,0,89391,0,1,1 +1773692267.353448,0.60,4,3992.50,54.31,1581.48,2126.50,0.00,61855.165094,68654.301492,4226482,3458860,0.000138,0.000174,65366818,32003487,0,0,89394,0,1,1 +1773692272.353475,0.65,4,3992.50,54.29,1582.32,2125.66,0.00,3518418678199.280273,3518418671397.283203,75,0,0.000008,0.000028,65366819,32003490,0,0,89396,0,1,1 +1773692277.353596,0.80,4,3992.50,54.29,1582.32,2125.66,0.00,61808.816874,68611.643383,4227985,3459632,0.000000,0.000030,65366819,32003493,0,0,89399,0,1,1 +1773692282.354898,0.60,4,3992.50,54.29,1582.32,2125.66,0.00,3517521322407.307129,3517521315606.139648,11,0,0.000081,0.000107,65366825,32003501,0,0,89401,0,1,1 +1773692287.354581,16.24,4,3992.50,55.95,1514.82,2190.73,0.00,0.053519,0.000000,75,0,40.067877,0.022907,65371141,32004970,0,0,89404,0,1,1 +1773692292.357977,0.65,4,3992.50,55.23,1543.23,2162.34,0.00,2.120435,0.000195,258,2,0.000000,0.000020,65371141,32004972,0,0,89406,0,1,1 +1773692297.353663,0.70,4,3992.50,54.68,1564.88,2140.69,0.00,3521475147458.859375,3521475147460.983398,75,0,0.000000,0.000030,65371141,32004975,0,0,89409,0,1,1 +1773692302.354389,0.55,4,3992.50,54.46,1573.41,2132.16,0.00,0.000000,0.000000,75,0,0.000000,0.000020,65371141,32004977,0,0,89411,0,1,1 +1773692307.353458,0.75,4,3992.50,54.47,1572.93,2132.64,0.00,3519092917947.454590,0.000000,11,0,0.000000,0.000030,65371141,32004980,0,0,89414,0,1,1 +1773692312.353508,0.70,4,3992.50,54.47,1572.93,2132.63,0.00,0.180272,0.000000,205,0,0.000000,0.000020,65371141,32004982,0,0,89416,0,1,1 +1773692317.353560,1.00,4,3992.50,54.56,1576.61,2136.32,0.00,3518400848321.292969,0.000000,11,0,0.000000,0.000674,65371141,32004989,0,0,89419,0,1,1 +1773692322.357816,0.60,4,3992.50,54.59,1575.74,2137.27,0.00,61757.952552,68555.247942,4227996,3459895,0.000000,0.000020,65371141,32004991,0,0,89421,0,1,1 +1773692327.358148,0.60,4,3992.50,54.59,1575.74,2137.27,0.00,3518203598165.392090,3518203591360.586914,258,2,0.000000,0.000030,65371141,32004994,0,0,89424,0,1,1 +1773692332.357767,0.60,4,3992.50,54.59,1575.75,2137.27,0.00,61813.060923,68618.849043,4227996,3459904,0.000157,0.000200,65371153,32005008,0,0,89426,0,1,1 +1773692337.353508,0.50,4,3992.50,54.28,1587.72,2125.29,0.00,3521436896476.054688,3521436889676.185547,253,761,0.000016,0.000046,65371155,32005013,0,0,89429,0,1,1 +1773692342.353464,0.65,4,3992.50,54.33,1585.76,2127.25,0.00,0.000000,0.000000,253,761,0.000000,0.000020,65371155,32005015,0,0,89431,0,1,1 +1773692347.357543,1.05,4,3992.50,54.47,1580.16,2132.63,0.00,3515569325548.888672,3515569325539.878906,11,0,0.000000,0.000030,65371155,32005018,0,0,89434,0,1,1 +1773692352.353460,15.26,4,3992.50,54.57,1576.11,2136.70,0.00,61851.353488,68659.075633,4226501,3459218,40.097489,0.021859,65375571,32006483,0,0,89436,0,1,1 +1773692357.358353,0.80,4,3992.50,54.49,1579.36,2133.44,0.00,0.000000,0.148487,4226501,3459324,0.000000,0.000030,65375571,32006486,0,0,89439,0,1,1 +1773692362.357681,0.65,4,3992.50,54.50,1579.12,2133.69,0.00,3518910552454.677246,3518910545660.469238,253,761,0.000000,0.000020,65375571,32006488,0,0,89441,0,1,1 +1773692367.354960,0.65,4,3992.50,54.50,1579.12,2133.69,0.00,3520352591186.246094,3520352591177.224121,11,0,0.000000,0.000030,65375571,32006491,0,0,89444,0,1,1 +1773692372.357464,0.60,4,3992.50,54.30,1586.75,2126.05,0.00,61769.916741,68568.870890,4226501,3459371,0.000000,0.000020,65375571,32006493,0,0,89446,0,1,1 +1773692377.357431,1.00,4,3992.50,54.50,1582.24,2133.89,0.00,9.726234,10.719991,4228004,3460162,0.000000,0.000030,65375571,32006496,0,0,89449,0,1,1 +1773692382.357747,0.80,4,3992.50,54.50,1582.25,2133.83,0.00,3518215190617.986816,3518215183824.081543,253,761,0.000000,0.000664,65375571,32006502,0,0,89451,0,1,1 +1773692387.357958,0.60,4,3992.50,54.50,1582.25,2133.82,0.00,61806.294306,68600.359026,4228004,3460182,0.000000,0.000030,65375571,32006505,0,0,89454,0,1,1 +1773692392.358158,0.75,4,3992.50,54.51,1582.02,2134.06,0.00,3518296776882.519531,3518296770079.367676,75,0,0.000000,0.000020,65375571,32006507,0,0,89456,0,1,1 +1773692397.356960,0.60,4,3992.50,54.51,1582.02,2134.06,0.00,3519280632641.003906,0.000000,11,0,0.000157,0.000210,65375583,32006522,0,0,89459,0,1,1 +1773692402.357840,0.65,4,3992.50,54.50,1582.11,2133.96,0.00,1.657423,10.673316,253,761,0.000016,0.000036,65375585,32006526,0,0,89461,0,1,1 +1773692407.354365,1.00,4,3992.50,54.50,1583.98,2133.91,0.00,61851.959690,68651.069885,4228023,3460267,0.000000,0.000030,65375585,32006529,0,0,89464,0,1,1 +1773692412.355136,0.60,4,3992.50,54.38,1588.91,2128.99,0.00,3517894432941.416016,3517894432940.476074,4226521,3459513,0.000000,0.000020,65375585,32006531,0,0,89466,0,1,1 +1773692417.353572,15.25,4,3992.50,55.26,1554.48,2163.41,0.00,9.753442,10.712336,4228027,3460329,40.077825,0.023681,65379955,32008054,0,0,89469,0,1,1 +1773692422.356803,1.00,4,3992.50,54.71,1575.83,2142.07,0.00,3516165395507.776367,3516165388708.693848,75,0,0.000618,0.000272,65379967,32008063,0,0,89471,0,1,1 +1773692427.353565,0.60,4,3992.50,54.51,1583.60,2134.29,0.00,61840.929939,68647.977286,4226524,3459675,0.000000,0.000030,65379967,32008066,0,0,89474,0,1,1 +1773692432.355772,0.55,4,3992.50,54.48,1584.75,2133.14,0.00,3516884399715.979980,3516884392914.222656,258,2,0.000000,0.000020,65379967,32008068,0,0,89476,0,1,1 +1773692437.358042,1.15,4,3992.50,54.18,1592.64,2121.21,0.00,3516840626541.363770,10.670156,253,761,0.000000,0.000030,65379967,32008071,0,0,89479,0,1,1 +1773692442.354643,0.65,4,3992.50,54.19,1592.17,2121.46,0.00,0.518028,3520830889410.994141,258,2,0.000000,0.000020,65379967,32008073,0,0,89481,0,1,1 +1773692447.356055,0.70,4,3992.50,54.18,1592.18,2121.46,0.00,3517443531788.440918,10.671985,253,761,0.000000,0.000513,65379967,32008079,0,0,89484,0,1,1 +1773692452.357559,0.50,4,3992.50,54.18,1592.18,2121.46,0.00,0.517520,3517379360547.219727,258,2,0.000000,0.000181,65379967,32008082,0,0,89486,0,1,1 +1773692457.355608,0.70,4,3992.50,54.18,1592.18,2121.46,0.00,3519810934067.654297,3519810934069.830566,11,0,0.000000,0.000030,65379967,32008085,0,0,89489,0,1,1 +1773692462.357637,0.65,4,3992.50,54.18,1592.24,2121.39,0.00,61775.865638,68575.804389,4226526,3459762,0.000132,0.000169,65379977,32008097,0,0,89491,0,1,1 +1773692467.358196,0.65,4,3992.50,54.01,1598.93,2114.68,0.00,3518044484768.921875,3518044477966.801758,205,0,0.000041,0.000077,65379981,32008104,0,0,89494,0,1,1 +1773692472.357759,1.00,4,3992.50,54.43,1582.04,2131.15,0.00,0.000000,0.000000,205,0,0.000000,0.000020,65379981,32008106,0,0,89496,0,1,1 +1773692477.358142,0.60,4,3992.50,54.27,1588.45,2124.73,0.00,3518167171258.156250,0.000000,11,0,0.001229,0.001254,65379990,32008123,0,0,89499,0,1,1 +1773692482.357569,15.42,4,3992.50,55.45,1542.10,2171.09,0.00,0.000000,0.000000,11,0,40.068403,0.022164,65384305,32009566,0,0,89501,0,1,1 +1773692487.358005,0.70,4,3992.50,54.76,1569.35,2143.84,0.00,1.657570,10.674265,253,761,0.000619,0.000282,65384317,32009576,0,0,89504,0,1,1 +1773692492.353458,0.60,4,3992.50,54.37,1584.37,2128.82,0.00,61855.581074,68655.563917,4226532,3459946,0.000000,0.000020,65384317,32009578,0,0,89506,0,1,1 +1773692497.357774,1.10,4,3992.50,54.61,1578.22,2138.21,0.00,3515402981676.479980,3515402974879.349121,205,0,0.000000,0.000030,65384317,32009581,0,0,89509,0,1,1 +1773692502.357657,0.60,4,3992.50,54.60,1578.53,2137.87,0.00,61812.070333,68616.322340,4228051,3460800,0.000000,0.000020,65384317,32009583,0,0,89511,0,1,1 +1773692507.357729,0.75,4,3992.50,54.60,1578.53,2137.86,0.00,3518386118511.161621,3518386111707.347656,11,0,0.000000,0.000030,65384317,32009586,0,0,89514,0,1,1 +1773692512.353456,0.55,4,3992.50,54.47,1583.71,2132.69,0.00,2.177252,0.000195,258,2,0.000000,0.000503,65384317,32009591,0,0,89516,0,1,1 +1773692517.356802,0.75,4,3992.50,54.47,1583.71,2132.69,0.00,3516083809601.247070,3516083809603.420898,11,0,0.000000,0.000191,65384317,32009595,0,0,89519,0,1,1 +1773692522.353466,0.75,4,3992.50,54.48,1583.49,2132.90,0.00,0.000000,0.000000,11,0,0.000236,0.000578,65384326,32009610,0,0,89521,0,1,1 +1773692527.358127,0.85,4,3992.50,54.67,1576.01,2140.53,0.00,0.000000,0.000000,11,0,0.000171,0.000212,65384339,32009626,0,0,89524,0,1,1 +1773692532.354769,0.65,4,3992.50,54.67,1575.91,2140.49,0.00,1.658829,10.682369,253,761,0.000025,0.000051,65384341,32009630,0,0,89526,0,1,1 +1773692537.357849,0.75,4,3992.50,54.68,1575.67,2140.72,0.00,0.517357,3516271841554.453125,258,2,0.001416,0.001199,65384370,32009658,0,0,89529,0,1,1 +1773692542.358299,0.75,4,3992.50,54.67,1575.73,2140.61,0.00,3518120490085.562012,10.674039,253,761,0.001734,0.001351,65384395,32009676,0,0,89531,0,1,1 +1773692547.355742,16.76,4,3992.50,55.13,1557.73,2158.65,0.00,3520237092025.927246,3520237092016.724609,205,0,40.085127,0.032517,65388785,32011971,0,0,89534,0,1,1 +1773692552.358341,0.70,4,3992.50,54.60,1578.49,2137.90,0.00,3516609794163.618652,0.000000,11,0,0.000618,0.000272,65388797,32011980,0,0,89536,0,1,1 +1773692557.358143,1.05,4,3992.50,54.50,1582.87,2133.74,0.00,0.053518,0.000000,75,0,0.000000,0.000030,65388797,32011983,0,0,89539,0,1,1 +1773692562.355096,0.75,4,3992.50,54.27,1591.55,2124.87,0.00,3520582441996.585449,0.000000,11,0,0.000000,0.000020,65388797,32011985,0,0,89541,0,1,1 +1773692567.353554,0.65,4,3992.50,54.27,1591.55,2124.87,0.00,0.053532,0.000000,75,0,0.000031,0.000055,65388799,32011990,0,0,89544,0,1,1 +1773692572.353552,0.70,4,3992.50,54.27,1591.56,2124.87,0.00,3518438621184.409180,0.000000,11,0,0.000008,0.000028,65388800,32011993,0,0,89546,0,1,1 +1773692577.353485,0.70,4,3992.50,54.28,1591.32,2125.11,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65388800,32011996,0,0,89549,0,1,1 +1773692582.354977,0.65,4,3992.50,54.28,1591.32,2125.10,0.00,61782.791879,68583.889150,4226558,3460309,0.000056,0.000720,65388804,32012006,0,0,89551,0,1,1 +1773692587.354557,1.05,4,3992.50,54.52,1581.77,2134.65,0.00,3518733135875.895508,3518733129072.196289,11,0,0.000025,0.000061,65388806,32012011,0,0,89554,0,1,1 +1773692592.354888,0.65,4,3992.50,54.28,1591.28,2125.12,0.00,61806.853980,68610.513741,4228061,3461091,0.000132,0.000169,65388816,32012023,0,0,89556,0,1,1 +1773692597.358261,0.65,4,3992.50,54.26,1592.19,2124.21,0.00,3516065446223.510742,3516065446222.574219,4226558,3460343,0.000025,0.000061,65388818,32012028,0,0,89559,0,1,1 +1773692602.358162,0.70,4,3992.50,54.25,1592.43,2123.96,0.00,3518506669255.249512,3518506662451.940918,11,0,0.000000,0.000020,65388818,32012030,0,0,89561,0,1,1 +1773692607.354643,0.70,4,3992.50,54.25,1592.45,2123.95,0.00,61854.491074,68663.417369,4228061,3461114,0.000000,0.000030,65388818,32012033,0,0,89564,0,1,1 +1773692612.357783,15.76,4,3992.50,55.93,1526.68,2189.70,0.00,3516228743043.573242,3516228736241.536621,258,2,40.039763,0.022336,65393159,32013472,0,0,89566,0,1,1 +1773692617.357659,1.15,4,3992.50,55.27,1553.00,2164.13,0.00,3518524711072.063965,3518524711074.239258,11,0,0.000627,0.000278,65393172,32013482,0,0,89569,0,1,1 +1773692622.353787,0.65,4,3992.50,54.83,1570.60,2146.54,0.00,61858.887229,68668.459814,4228067,3461311,0.000000,0.000020,65393172,32013484,0,0,89571,0,1,1 +1773692627.357375,0.60,4,3992.50,54.70,1575.55,2141.59,0.00,3515914175579.437012,3515914168780.017090,11,0,0.000000,0.000030,65393172,32013487,0,0,89574,0,1,1 +1773692632.353864,0.65,4,3992.50,54.70,1575.55,2141.59,0.00,0.000000,0.000000,11,0,0.000000,0.000020,65393172,32013489,0,0,89576,0,1,1 +1773692637.353484,0.70,4,3992.50,54.71,1575.30,2141.83,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65393172,32013492,0,0,89579,0,1,1 +1773692642.353553,0.65,4,3992.50,54.71,1575.30,2141.83,0.00,0.053515,0.000000,75,0,0.000000,0.000020,65393172,32013494,0,0,89581,0,1,1 +1773692647.353940,0.65,4,3992.50,54.70,1575.31,2141.82,0.00,0.000000,0.000000,75,0,0.000000,0.000674,65393172,32013501,0,0,89584,0,1,1 +1773692652.353576,1.15,4,3992.50,54.55,1574.30,2135.64,0.00,61815.415901,68620.332787,4228067,3461342,0.000000,0.000020,65393172,32013503,0,0,89586,0,1,1 +1773692657.353571,0.65,4,3992.50,54.55,1574.30,2135.64,0.00,3518441179207.466309,3518441172412.106934,253,761,0.000132,0.000179,65393182,32013516,0,0,89589,0,1,1 +1773692662.353449,0.65,4,3992.50,54.55,1574.30,2135.64,0.00,0.000000,0.000000,253,761,0.000033,0.000059,65393185,32013521,0,0,89591,0,1,1 diff --git a/evaluation/data/pipeline_batch-out_run2/pipeline.duckdb b/evaluation/data/pipeline_batch-out_run2/pipeline.duckdb new file mode 100644 index 0000000..08d7668 Binary files /dev/null and b/evaluation/data/pipeline_batch-out_run2/pipeline.duckdb differ diff --git a/evaluation/data/pipeline_batch-out_run3/anomalies.jsonl b/evaluation/data/pipeline_batch-out_run3/anomalies.jsonl new file mode 100644 index 0000000..093ad8d --- /dev/null +++ b/evaluation/data/pipeline_batch-out_run3/anomalies.jsonl @@ -0,0 +1,540 @@ +{"timestamp":"2026-03-16T20:34:24.466037289Z","score":0.5,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=0.50 RRCF-fast:w=0.20,s=0.50 RRCF-mid:w=0.20,s=0.50 RRCF-slow:w=0.20,s=0.50 COPOD:w=0.20,s=0.50"} +{"timestamp":"2026-03-16T20:34:54.507771188Z","score":1,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=1.00 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-16T20:35:24.465937307Z","score":0.8999999999999999,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=0.50 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-16T20:35:54.517963244Z","score":0.6659979995709293,"is_anomaly":false,"confidence":0.7399977773010327,"method":"SEAD","details":"MAD!:w=0.20,s=0.33 RRCF-fast:w=0.20,s=0.67 RRCF-mid:w=0.20,s=0.67 RRCF-slow:w=0.20,s=0.67 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-16T20:36:24.515698516Z","score":0.5977825736367888,"is_anomaly":false,"confidence":0.664202859596432,"method":"SEAD","details":"MAD!:w=0.20,s=0.00 RRCF-fast:w=0.20,s=0.75 RRCF-mid:w=0.20,s=0.75 RRCF-slow:w=0.20,s=0.75 COPOD!:w=0.20,s=0.75"} +{"timestamp":"2026-03-16T20:36:54.52198672Z","score":0.9178318913170558,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.21,s=0.60 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-16T20:37:25.410380616Z","score":0.7973032578491536,"is_anomaly":false,"confidence":0.8686811445449472,"method":"SEAD","details":"MAD!:w=0.21,s=0.50 RRCF-fast:w=0.20,s=0.83 RRCF-mid:w=0.20,s=0.83 RRCF-slow:w=0.20,s=0.83 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-16T20:37:54.498979315Z","score":0.8530585354113286,"is_anomaly":false,"confidence":0.9478428171236986,"method":"SEAD","details":"MAD!:w=0.21,s=0.43 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=0.86"} +{"timestamp":"2026-03-16T20:38:25.93755579Z","score":0.6205187784999187,"is_anomaly":false,"confidence":0.6894653094443541,"method":"SEAD","details":"MAD!:w=0.21,s=0.25 RRCF-fast:w=0.20,s=0.75 RRCF-mid:w=0.20,s=0.75 RRCF-slow:w=0.20,s=0.75 COPOD!:w=0.20,s=0.62"} +{"timestamp":"2026-03-16T20:38:54.46516436Z","score":0.5911844426182769,"is_anomaly":false,"confidence":0.6568716029091966,"method":"SEAD","details":"MAD!:w=0.21,s=0.00 RRCF-fast:w=0.20,s=0.67 RRCF-mid:w=0.20,s=0.67 RRCF-slow:w=0.20,s=0.67 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-16T20:39:24.556128319Z","score":0.5546515597600622,"is_anomaly":false,"confidence":0.6162795108445136,"method":"SEAD","details":"MAD!:w=0.21,s=0.20 RRCF-fast:w=0.20,s=0.80 RRCF-mid:w=0.20,s=0.90 RRCF-slow:w=0.20,s=0.70 COPOD!:w=0.19,s=0.20"} +{"timestamp":"2026-03-16T20:39:54.464597211Z","score":0.6256396194414405,"is_anomaly":false,"confidence":0.6951551327127118,"method":"SEAD","details":"MAD!:w=0.22,s=0.09 RRCF-fast:w=0.20,s=0.64 RRCF-mid:w=0.20,s=0.82 RRCF-slow:w=0.20,s=0.64 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-16T20:40:24.560013559Z","score":0.9272966716096422,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.22,s=0.67 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.19,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.19,s=1.00"} +{"timestamp":"2026-03-16T20:40:54.465810465Z","score":0.7767530345552036,"is_anomaly":false,"confidence":0.8462911802297378,"method":"SEAD","details":"MAD!:w=0.22,s=0.46 RRCF-fast:w=0.20,s=0.85 RRCF-mid:w=0.19,s=0.85 RRCF-slow:w=0.20,s=0.85 COPOD!:w=0.19,s=0.92"} +{"timestamp":"2026-03-16T20:41:24.50950451Z","score":0.9546139623536423,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.22,s=0.86 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.19,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.19,s=0.93"} +{"timestamp":"2026-03-16T20:41:54.464172775Z","score":0.8240284138731283,"is_anomaly":false,"confidence":0.8977988471185907,"method":"SEAD","details":"MAD!:w=0.22,s=0.73 RRCF-fast:w=0.20,s=0.80 RRCF-mid:w=0.19,s=0.80 RRCF-slow:w=0.20,s=0.80 COPOD!:w=0.19,s=1.00"} +{"timestamp":"2026-03-16T20:42:24.507084509Z","score":0.9740079504230706,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.22,s=0.94 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.19,s=0.94 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.19,s=1.00"} +{"timestamp":"2026-03-16T20:42:55.978457111Z","score":0.7990483791911371,"is_anomaly":false,"confidence":0.8616965892955422,"method":"SEAD","details":"MAD!:w=0.22,s=0.76 RRCF-fast:w=0.20,s=0.82 RRCF-mid:w=0.19,s=0.76 RRCF-slow:w=0.20,s=0.82 COPOD!:w=0.19,s=0.82"} +{"timestamp":"2026-03-16T20:43:24.552458301Z","score":0.8063087649268671,"is_anomaly":false,"confidence":0.8695262148706314,"method":"SEAD","details":"MAD!:w=0.22,s=0.61 RRCF-fast:w=0.20,s=0.94 RRCF-mid:w=0.19,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.19,s=0.50"} +{"timestamp":"2026-03-16T20:43:54.512420837Z","score":0.6081612679742218,"is_anomaly":false,"confidence":0.6558432555554726,"method":"SEAD","details":"MAD!:w=0.22,s=0.53 RRCF-fast:w=0.19,s=0.68 RRCF-mid:w=0.19,s=0.68 RRCF-slow:w=0.19,s=0.74 COPOD!:w=0.19,s=0.42"} +{"timestamp":"2026-03-16T20:44:24.508908275Z","score":0.8049201429017387,"is_anomaly":false,"confidence":0.8680287199829188,"method":"SEAD","details":"MAD!:w=0.22,s=0.65 RRCF-fast!:w=0.19,s=1.00 RRCF-mid!:w=0.19,s=1.00 RRCF-slow!:w=0.19,s=1.00 COPOD!:w=0.19,s=0.40"} +{"timestamp":"2026-03-16T20:44:55.703254159Z","score":0.569198896220588,"is_anomaly":false,"confidence":0.6201559366212565,"method":"SEAD","details":"MAD!:w=0.22,s=0.52 RRCF-fast:w=0.19,s=0.71 RRCF-mid:w=0.19,s=0.67 RRCF-slow:w=0.19,s=0.62 COPOD!:w=0.20,s=0.33"} +{"timestamp":"2026-03-16T20:45:24.519550951Z","score":0.5295208314526662,"is_anomaly":false,"confidence":0.5769257273168213,"method":"SEAD","details":"MAD!:w=0.22,s=0.09 RRCF-fast:w=0.19,s=0.82 RRCF-mid:w=0.19,s=0.82 RRCF-slow:w=0.19,s=0.82 COPOD!:w=0.20,s=0.18"} +{"timestamp":"2026-03-16T20:45:54.568877821Z","score":0.7462958909320598,"is_anomaly":false,"confidence":0.8131073870849618,"method":"SEAD","details":"MAD!:w=0.23,s=0.22 RRCF-fast:w=0.19,s=0.91 RRCF-mid!:w=0.19,s=0.96 RRCF-slow!:w=0.19,s=0.96 COPOD!:w=0.20,s=0.78"} +{"timestamp":"2026-03-16T20:46:24.463026308Z","score":0.5954256056962585,"is_anomaly":false,"confidence":0.6487305696491371,"method":"SEAD","details":"MAD!:w=0.23,s=0.04 RRCF-fast:w=0.19,s=0.79 RRCF-mid:w=0.19,s=0.75 RRCF-slow:w=0.19,s=0.79 COPOD!:w=0.20,s=0.71"} +{"timestamp":"2026-03-16T20:46:54.556575937Z","score":0.8608319972981149,"is_anomaly":false,"confidence":0.937897239616344,"method":"SEAD","details":"MAD!:w=0.23,s=0.80 RRCF-fast:w=0.19,s=0.88 RRCF-mid!:w=0.19,s=0.92 RRCF-slow!:w=0.19,s=0.92 COPOD!:w=0.20,s=0.80"} +{"timestamp":"2026-03-16T20:47:24.515354586Z","score":0.7252962296415848,"is_anomaly":false,"confidence":0.7902277492241099,"method":"SEAD","details":"MAD!:w=0.23,s=0.62 RRCF-fast:w=0.19,s=0.88 RRCF-mid:w=0.19,s=0.77 RRCF-slow:w=0.19,s=0.73 COPOD!:w=0.20,s=0.65"} +{"timestamp":"2026-03-16T20:47:54.507386462Z","score":0.8857162178402791,"is_anomaly":false,"confidence":0.9841291309336435,"method":"SEAD","details":"MAD!:w=0.23,s=0.96 RRCF-fast:w=0.19,s=0.74 RRCF-mid:w=0.19,s=0.85 RRCF-slow:w=0.19,s=0.89 COPOD!:w=0.20,s=0.96"} +{"timestamp":"2026-03-16T20:48:24.469085868Z","score":0.6810421886383643,"is_anomaly":false,"confidence":0.7567135429315159,"method":"SEAD","details":"MAD!:w=0.23,s=0.86 RRCF-fast:w=0.19,s=0.46 RRCF-mid:w=0.19,s=0.61 RRCF-slow:w=0.19,s=0.54 COPOD!:w=0.20,s=0.89"} +{"timestamp":"2026-03-16T20:48:54.510555505Z","score":0.9931999149053974,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.23,s=1.00 RRCF-fast!:w=0.19,s=1.00 RRCF-mid!:w=0.19,s=1.00 RRCF-slow!:w=0.19,s=1.00 COPOD!:w=0.20,s=0.97"} +{"timestamp":"2026-03-16T20:49:24.516362375Z","score":0.9074732191662624,"is_anomaly":false,"confidence":0.9887139766565215,"method":"SEAD","details":"MAD!:w=0.23,s=0.97 RRCF-fast!:w=0.19,s=0.97 RRCF-mid!:w=0.19,s=0.97 RRCF-slow!:w=0.19,s=0.97 COPOD!:w=0.20,s=0.67"} +{"timestamp":"2026-03-16T20:49:54.509658043Z","score":0.935483870967742,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.23,s=0.94 RRCF-fast!:w=0.19,s=0.94 RRCF-mid!:w=0.19,s=0.94 RRCF-slow!:w=0.19,s=0.94 COPOD!:w=0.20,s=0.94"} +{"timestamp":"2026-03-16T20:50:24.466466652Z","score":0.7699485286568696,"is_anomaly":false,"confidence":0.830315207883103,"method":"SEAD","details":"MAD!:w=0.23,s=0.91 RRCF-fast!:w=0.19,s=0.91 RRCF-mid!:w=0.19,s=0.91 RRCF-slow!:w=0.19,s=0.91 COPOD!:w=0.20,s=0.22"} +{"timestamp":"2026-03-16T20:50:54.503698712Z","score":0.6307846432400048,"is_anomaly":false,"confidence":0.6802403832045048,"method":"SEAD","details":"MAD!:w=0.23,s=0.30 RRCF-fast:w=0.19,s=0.88 RRCF-mid:w=0.19,s=0.88 RRCF-slow:w=0.19,s=0.88 COPOD!:w=0.20,s=0.30"} +{"timestamp":"2026-03-16T20:51:24.876278159Z","score":0.5332044096673549,"is_anomaly":false,"confidence":0.5809390746950683,"method":"SEAD","details":"MAD!:w=0.23,s=0.09 RRCF-fast:w=0.19,s=0.85 RRCF-mid:w=0.19,s=0.85 RRCF-slow:w=0.19,s=0.85 COPOD!:w=0.20,s=0.15"} +{"timestamp":"2026-03-16T20:51:54.466035337Z","score":0.6229009391675726,"is_anomaly":false,"confidence":0.6786656086592635,"method":"SEAD","details":"MAD!:w=0.23,s=0.00 RRCF-fast:w=0.19,s=0.83 RRCF-mid:w=0.19,s=0.83 RRCF-slow:w=0.19,s=0.83 COPOD!:w=0.20,s=0.77"} +{"timestamp":"2026-03-16T20:52:24.508607793Z","score":0.7002313435236969,"is_anomaly":false,"confidence":0.7629189507883519,"method":"SEAD","details":"MAD!:w=0.24,s=0.53 RRCF-fast:w=0.19,s=0.81 RRCF-mid:w=0.19,s=0.81 RRCF-slow:w=0.19,s=0.81 COPOD!:w=0.20,s=0.61"} +{"timestamp":"2026-03-16T20:52:54.467724194Z","score":0.6191595345362783,"is_anomaly":false,"confidence":0.6745892580043242,"method":"SEAD","details":"MAD!:w=0.24,s=0.38 RRCF-fast:w=0.19,s=0.81 RRCF-mid:w=0.19,s=0.84 RRCF-slow:w=0.19,s=0.84 COPOD!:w=0.20,s=0.32"} +{"timestamp":"2026-03-16T20:53:24.508766588Z","score":0.7249475369053648,"is_anomaly":false,"confidence":0.789847840071335,"method":"SEAD","details":"MAD!:w=0.24,s=0.53 RRCF-fast:w=0.19,s=0.79 RRCF-mid:w=0.18,s=0.82 RRCF-slow:w=0.19,s=0.84 COPOD!:w=0.20,s=0.71"} +{"timestamp":"2026-03-16T20:53:54.466127374Z","score":0.5782864124465293,"is_anomaly":false,"confidence":0.6300570049017463,"method":"SEAD","details":"MAD!:w=0.24,s=0.36 RRCF-fast:w=0.19,s=0.72 RRCF-mid:w=0.18,s=0.74 RRCF-slow:w=0.19,s=0.74 COPOD!:w=0.20,s=0.41"} +{"timestamp":"2026-03-16T20:54:24.51003624Z","score":0.787321474181946,"is_anomaly":false,"confidence":0.8578057503015808,"method":"SEAD","details":"MAD!:w=0.24,s=0.75 RRCF-fast:w=0.19,s=0.72 RRCF-mid:w=0.18,s=0.85 RRCF-slow:w=0.18,s=0.85 COPOD!:w=0.20,s=0.78"} +{"timestamp":"2026-03-16T20:54:54.46710755Z","score":0.6383525269286962,"is_anomaly":false,"confidence":0.7034395213504814,"method":"SEAD","details":"MAD!:w=0.24,s=0.59 RRCF-fast:w=0.19,s=0.68 RRCF-mid:w=0.18,s=0.71 RRCF-slow:w=0.18,s=0.71 COPOD!:w=0.20,s=0.54"} +{"timestamp":"2026-03-16T20:55:24.52859259Z","score":0.715859015986677,"is_anomaly":false,"confidence":0.7888486413344183,"method":"SEAD","details":"MAD!:w=0.24,s=0.69 RRCF-fast:w=0.19,s=0.79 RRCF-mid:w=0.18,s=0.74 RRCF-slow:w=0.18,s=0.74 COPOD!:w=0.20,s=0.64"} +{"timestamp":"2026-03-16T20:55:54.512706629Z","score":0.5828533134083741,"is_anomaly":false,"confidence":0.6422815583955946,"method":"SEAD","details":"MAD!:w=0.24,s=0.51 RRCF-fast:w=0.19,s=0.60 RRCF-mid:w=0.18,s=0.70 RRCF-slow:w=0.18,s=0.70 COPOD!:w=0.21,s=0.44"} +{"timestamp":"2026-03-16T20:56:24.509376162Z","score":0.6741518460505763,"is_anomaly":false,"confidence":0.7428889710596096,"method":"SEAD","details":"MAD!:w=0.24,s=0.27 RRCF-fast:w=0.18,s=0.77 RRCF-mid:w=0.18,s=0.80 RRCF-slow:w=0.18,s=0.77 COPOD!:w=0.21,s=0.86"} +{"timestamp":"2026-03-16T20:56:54.517035343Z","score":0.3876664391590854,"is_anomaly":false,"confidence":0.42719325592357693,"method":"SEAD","details":"MAD!:w=0.25,s=0.04 RRCF-fast:w=0.18,s=0.47 RRCF-mid:w=0.18,s=0.64 RRCF-slow:w=0.18,s=0.62 COPOD!:w=0.20,s=0.29"} +{"timestamp":"2026-03-16T20:57:24.467591596Z","score":0.41634909737841597,"is_anomaly":false,"confidence":0.45880042362124485,"method":"SEAD","details":"MAD!:w=0.25,s=0.20 RRCF-fast:w=0.18,s=0.57 RRCF-mid:w=0.18,s=0.65 RRCF-slow:w=0.18,s=0.65 COPOD!:w=0.21,s=0.13"} +{"timestamp":"2026-03-16T20:57:54.990879489Z","score":0.38624231419072097,"is_anomaly":false,"confidence":0.4291581268785789,"method":"SEAD","details":"MAD!:w=0.25,s=0.13 RRCF-fast:w=0.18,s=0.57 RRCF-mid:w=0.18,s=0.64 RRCF-slow:w=0.18,s=0.62 COPOD!:w=0.21,s=0.11"} +{"timestamp":"2026-03-16T20:58:24.463576516Z","score":0.40322270555004924,"is_anomaly":false,"confidence":0.44802522838894365,"method":"SEAD","details":"MAD!:w=0.25,s=0.15 RRCF-fast:w=0.18,s=0.56 RRCF-mid:w=0.18,s=0.62 RRCF-slow:w=0.18,s=0.62 COPOD!:w=0.21,s=0.19"} +{"timestamp":"2026-03-16T20:58:55.033051478Z","score":0.7358014248514593,"is_anomaly":false,"confidence":0.8175571387238437,"method":"SEAD","details":"MAD!:w=0.25,s=0.80 RRCF-fast:w=0.18,s=0.65 RRCF-mid:w=0.18,s=0.71 RRCF-slow:w=0.18,s=0.73 COPOD!:w=0.21,s=0.76"} +{"timestamp":"2026-03-16T20:59:24.465368401Z","score":0.563698631308112,"is_anomaly":false,"confidence":0.626331812564569,"method":"SEAD","details":"MAD!:w=0.25,s=0.66 RRCF-fast:w=0.18,s=0.42 RRCF-mid:w=0.18,s=0.56 RRCF-slow:w=0.18,s=0.56 COPOD!:w=0.21,s=0.58"} +{"timestamp":"2026-03-16T20:59:54.556269522Z","score":0.655379192245793,"is_anomaly":false,"confidence":0.7281991024953256,"method":"SEAD","details":"MAD!:w=0.25,s=0.55 RRCF-fast:w=0.18,s=0.67 RRCF-mid:w=0.18,s=0.71 RRCF-slow:w=0.18,s=0.71 COPOD!:w=0.21,s=0.69"} +{"timestamp":"2026-03-16T21:00:24.464993004Z","score":0.6336914412534064,"is_anomaly":false,"confidence":0.7041016013926739,"method":"SEAD","details":"MAD!:w=0.25,s=0.38 RRCF-fast!:w=0.18,s=0.90 RRCF-mid!:w=0.18,s=0.90 RRCF-slow!:w=0.18,s=0.90 COPOD!:w=0.21,s=0.23"} +{"timestamp":"2026-03-16T21:00:54.507485985Z","score":0.6818398312484002,"is_anomaly":false,"confidence":0.7575998124982225,"method":"SEAD","details":"MAD!:w=0.25,s=0.62 RRCF-fast:w=0.18,s=0.43 RRCF-mid:w=0.18,s=0.70 RRCF-slow:w=0.18,s=0.72 COPOD!:w=0.21,s=0.92"} +{"timestamp":"2026-03-16T21:01:24.466557971Z","score":0.4225659283939326,"is_anomaly":false,"confidence":0.47708952357710327,"method":"SEAD","details":"MAD!:w=0.25,s=0.44 RRCF-fast:w=0.18,s=0.37 RRCF-mid:w=0.18,s=0.52 RRCF-slow:w=0.18,s=0.52 COPOD!:w=0.21,s=0.28"} +{"timestamp":"2026-03-16T21:01:54.508041402Z","score":0.5444447070923143,"is_anomaly":false,"confidence":0.6146942961255496,"method":"SEAD","details":"MAD!:w=0.25,s=0.49 RRCF-fast:w=0.18,s=0.58 RRCF-mid:w=0.18,s=0.71 RRCF-slow:w=0.18,s=0.67 COPOD!:w=0.21,s=0.33"} +{"timestamp":"2026-03-16T21:02:24.465483252Z","score":0.36242164899487816,"is_anomaly":false,"confidence":0.40918484012701406,"method":"SEAD","details":"MAD!:w=0.25,s=0.32 RRCF-fast:w=0.18,s=0.41 RRCF-mid:w=0.18,s=0.52 RRCF-slow:w=0.18,s=0.52 COPOD!:w=0.21,s=0.11"} +{"timestamp":"2026-03-16T21:02:54.500003812Z","score":0.6181042857534996,"is_anomaly":false,"confidence":0.6978581551331176,"method":"SEAD","details":"MAD!:w=0.25,s=0.60 RRCF-fast:w=0.18,s=0.40 RRCF-mid:w=0.18,s=0.63 RRCF-slow:w=0.18,s=0.63 COPOD!:w=0.21,s=0.81"} +{"timestamp":"2026-03-16T21:03:24.513857578Z","score":0.3860366142384244,"is_anomaly":false,"confidence":0.43584683949869624,"method":"SEAD","details":"MAD!:w=0.25,s=0.40 RRCF-fast:w=0.18,s=0.31 RRCF-mid:w=0.18,s=0.53 RRCF-slow:w=0.18,s=0.53 COPOD!:w=0.21,s=0.19"} +{"timestamp":"2026-03-16T21:03:54.465259808Z","score":0.5550793552056695,"is_anomaly":false,"confidence":0.6267011307065925,"method":"SEAD","details":"MAD!:w=0.25,s=0.22 RRCF-fast:w=0.18,s=0.73 RRCF-mid!:w=0.18,s=0.92 RRCF-slow!:w=0.18,s=0.92 COPOD!:w=0.21,s=0.20"} +{"timestamp":"2026-03-16T21:04:25.156302013Z","score":0.3083587468150094,"is_anomaly":false,"confidence":0.3481462127530058,"method":"SEAD","details":"MAD!:w=0.25,s=0.15 RRCF-fast:w=0.18,s=0.45 RRCF-mid:w=0.17,s=0.55 RRCF-slow:w=0.18,s=0.48 COPOD!:w=0.21,s=0.03"} +{"timestamp":"2026-03-16T21:04:54.466328162Z","score":0.3912296216346724,"is_anomaly":false,"confidence":0.45447848460863566,"method":"SEAD","details":"MAD!:w=0.26,s=0.02 RRCF-fast:w=0.18,s=0.33 RRCF-mid:w=0.17,s=0.57 RRCF-slow:w=0.17,s=0.54 COPOD!:w=0.21,s=0.62"} +{"timestamp":"2026-03-16T21:05:24.510045799Z","score":0.9450134346038868,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.26,s=0.97 RRCF-fast!:w=0.18,s=0.97 RRCF-mid!:w=0.17,s=0.95 RRCF-slow!:w=0.17,s=0.95 COPOD!:w=0.21,s=0.89"} +{"timestamp":"2026-03-16T21:05:54.470319776Z","score":0.7971761009926672,"is_anomaly":false,"confidence":0.9000355700119084,"method":"SEAD","details":"MAD!:w=0.26,s=0.95 RRCF-fast!:w=0.18,s=0.95 RRCF-mid:w=0.17,s=0.87 RRCF-slow:w=0.17,s=0.86 COPOD!:w=0.21,s=0.37"} +{"timestamp":"2026-03-16T21:06:24.505363511Z","score":0.7773304917736663,"is_anomaly":false,"confidence":0.8776292859005118,"method":"SEAD","details":"MAD!:w=0.26,s=0.75 RRCF-fast!:w=0.18,s=0.89 RRCF-mid:w=0.17,s=0.69 RRCF-slow:w=0.17,s=0.69 COPOD!:w=0.21,s=0.86"} +{"timestamp":"2026-03-16T21:06:55.576373206Z","score":0.624903729925584,"is_anomaly":false,"confidence":0.7055349301939423,"method":"SEAD","details":"MAD!:w=0.26,s=0.58 RRCF-fast:w=0.18,s=0.74 RRCF-mid:w=0.17,s=0.54 RRCF-slow:w=0.17,s=0.57 COPOD!:w=0.21,s=0.69"} +{"timestamp":"2026-03-16T21:07:24.509058217Z","score":0.90811104014014,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.26,s=0.89 RRCF-fast!:w=0.18,s=0.89 RRCF-mid!:w=0.17,s=0.88 RRCF-slow!:w=0.17,s=0.88 COPOD!:w=0.21,s=0.98"} +{"timestamp":"2026-03-16T21:07:54.511187073Z","score":0.684338928342512,"is_anomaly":false,"confidence":0.7726390400880281,"method":"SEAD","details":"MAD!:w=0.26,s=0.84 RRCF-fast:w=0.18,s=0.70 RRCF-mid:w=0.17,s=0.58 RRCF-slow:w=0.17,s=0.60 COPOD!:w=0.21,s=0.64"} +{"timestamp":"2026-03-16T21:08:24.507420032Z","score":0.7285711961440908,"is_anomaly":false,"confidence":0.8225785883436018,"method":"SEAD","details":"MAD!:w=0.26,s=0.75 RRCF-fast:w=0.18,s=0.84 RRCF-mid:w=0.17,s=0.71 RRCF-slow:w=0.18,s=0.71 COPOD!:w=0.21,s=0.65"} +{"timestamp":"2026-03-16T21:08:55.54393536Z","score":0.4840060791850791,"is_anomaly":false,"confidence":0.5464572844395628,"method":"SEAD","details":"MAD!:w=0.26,s=0.59 RRCF-fast:w=0.18,s=0.67 RRCF-mid:w=0.17,s=0.38 RRCF-slow:w=0.18,s=0.48 COPOD!:w=0.21,s=0.29"} +{"timestamp":"2026-03-16T21:09:24.5149534Z","score":0.7503754292722677,"is_anomaly":false,"confidence":0.8471962172059749,"method":"SEAD","details":"MAD!:w=0.26,s=0.87 RRCF-fast!:w=0.18,s=0.89 RRCF-mid:w=0.17,s=0.70 RRCF-slow:w=0.18,s=0.76 COPOD!:w=0.22,s=0.53"} +{"timestamp":"2026-03-16T21:09:54.558291646Z","score":0.5204118664472179,"is_anomaly":false,"confidence":0.587560502974852,"method":"SEAD","details":"MAD!:w=0.25,s=0.77 RRCF-fast:w=0.18,s=0.62 RRCF-mid:w=0.17,s=0.41 RRCF-slow:w=0.18,s=0.51 COPOD!:w=0.22,s=0.24"} +{"timestamp":"2026-03-16T21:10:24.466438447Z","score":0.3185503466274456,"is_anomaly":false,"confidence":0.3596528326016151,"method":"SEAD","details":"MAD!:w=0.25,s=0.07 RRCF-fast:w=0.18,s=0.60 RRCF-mid:w=0.17,s=0.43 RRCF-slow:w=0.18,s=0.62 COPOD!:w=0.22,s=0.04"} +{"timestamp":"2026-03-16T21:10:54.536231729Z","score":0.3880937277512648,"is_anomaly":false,"confidence":0.4381693819467237,"method":"SEAD","details":"MAD!:w=0.25,s=0.21 RRCF-fast:w=0.18,s=0.66 RRCF-mid:w=0.17,s=0.52 RRCF-slow:w=0.17,s=0.56 COPOD!:w=0.22,s=0.14"} +{"timestamp":"2026-03-16T21:11:24.461468574Z","score":0.2673227213223298,"is_anomaly":false,"confidence":0.310539945263853,"method":"SEAD","details":"MAD!:w=0.26,s=0.05 RRCF-fast:w=0.18,s=0.53 RRCF-mid:w=0.17,s=0.32 RRCF-slow:w=0.17,s=0.39 COPOD!:w=0.22,s=0.16"} +{"timestamp":"2026-03-16T21:11:54.557987883Z","score":0.8085612900703283,"is_anomaly":false,"confidence":0.9392788518644194,"method":"SEAD","details":"MAD!:w=0.26,s=0.89 RRCF-fast:w=0.18,s=0.73 RRCF-mid:w=0.17,s=0.71 RRCF-slow:w=0.17,s=0.72 COPOD!:w=0.22,s=0.92"} +{"timestamp":"2026-03-16T21:12:24.52254085Z","score":0.5465178455419417,"is_anomaly":false,"confidence":0.6348716674766877,"method":"SEAD","details":"MAD!:w=0.26,s=0.79 RRCF-fast:w=0.18,s=0.57 RRCF-mid:w=0.17,s=0.39 RRCF-slow:w=0.17,s=0.58 COPOD!:w=0.22,s=0.34"} +{"timestamp":"2026-03-16T21:12:54.509888442Z","score":0.9234586205342274,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.95 RRCF-fast:w=0.18,s=0.88 RRCF-mid!:w=0.17,s=0.94 RRCF-slow!:w=0.17,s=0.94 COPOD!:w=0.22,s=0.91"} +{"timestamp":"2026-03-16T21:13:24.761165009Z","score":0.7270080695218525,"is_anomaly":false,"confidence":0.8208137718134835,"method":"SEAD","details":"MAD!:w=0.25,s=0.94 RRCF-fast:w=0.18,s=0.68 RRCF-mid:w=0.17,s=0.73 RRCF-slow:w=0.17,s=0.88 COPOD!:w=0.22,s=0.40"} +{"timestamp":"2026-03-16T21:13:54.509784991Z","score":0.8684727681744249,"is_anomaly":false,"confidence":0.9805316315558719,"method":"SEAD","details":"MAD!:w=0.25,s=0.90 RRCF-fast:w=0.18,s=0.71 RRCF-mid:w=0.17,s=0.85 RRCF-slow!:w=0.17,s=0.94 COPOD!:w=0.22,s=0.92"} +{"timestamp":"2026-03-16T21:14:25.687545416Z","score":0.6097963991273385,"is_anomaly":false,"confidence":0.6884783035973525,"method":"SEAD","details":"MAD!:w=0.25,s=0.88 RRCF-fast:w=0.18,s=0.31 RRCF-mid:w=0.17,s=0.55 RRCF-slow:w=0.17,s=0.71 COPOD!:w=0.22,s=0.51"} +{"timestamp":"2026-03-16T21:14:54.506698408Z","score":0.8896208682461648,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.93 RRCF-fast:w=0.18,s=0.78 RRCF-mid:w=0.17,s=0.89 RRCF-slow!:w=0.17,s=0.94 COPOD!:w=0.22,s=0.90"} +{"timestamp":"2026-03-16T21:15:24.517012543Z","score":0.5981364390627677,"is_anomaly":false,"confidence":0.6753138612740514,"method":"SEAD","details":"MAD!:w=0.25,s=0.89 RRCF-fast:w=0.18,s=0.49 RRCF-mid:w=0.17,s=0.57 RRCF-slow:w=0.17,s=0.82 COPOD!:w=0.22,s=0.21"} +{"timestamp":"2026-03-16T21:15:54.506764154Z","score":0.5246813878231815,"is_anomaly":false,"confidence":0.5923809198193966,"method":"SEAD","details":"MAD!:w=0.25,s=0.36 RRCF-fast:w=0.18,s=0.45 RRCF-mid:w=0.17,s=0.59 RRCF-slow:w=0.17,s=0.72 COPOD!:w=0.22,s=0.57"} +{"timestamp":"2026-03-16T21:16:24.509916958Z","score":0.3543940720465506,"is_anomaly":false,"confidence":0.40012146656939546,"method":"SEAD","details":"MAD!:w=0.25,s=0.21 RRCF-fast:w=0.18,s=0.43 RRCF-mid:w=0.17,s=0.37 RRCF-slow:w=0.17,s=0.62 COPOD!:w=0.22,s=0.24"} +{"timestamp":"2026-03-16T21:16:54.514991874Z","score":0.2700993062395009,"is_anomaly":false,"confidence":0.30495016439702116,"method":"SEAD","details":"MAD!:w=0.25,s=0.07 RRCF-fast:w=0.18,s=0.25 RRCF-mid:w=0.17,s=0.35 RRCF-slow:w=0.17,s=0.61 COPOD!:w=0.22,s=0.19"} +{"timestamp":"2026-03-16T21:17:24.511649123Z","score":0.642663981875898,"is_anomaly":false,"confidence":0.7255867838154335,"method":"SEAD","details":"MAD!:w=0.25,s=0.53 RRCF-fast:w=0.18,s=0.51 RRCF-mid:w=0.17,s=0.53 RRCF-slow:w=0.17,s=0.69 COPOD!:w=0.23,s=0.92"} +{"timestamp":"2026-03-16T21:17:54.461030927Z","score":0.4176873318951428,"is_anomaly":false,"confidence":0.48094465042714396,"method":"SEAD","details":"MAD!:w=0.25,s=0.37 RRCF-fast:w=0.18,s=0.15 RRCF-mid:w=0.17,s=0.31 RRCF-slow:w=0.17,s=0.48 COPOD!:w=0.22,s=0.72"} +{"timestamp":"2026-03-16T21:18:24.557424306Z","score":0.8338711317428935,"is_anomaly":false,"confidence":0.9601580640182124,"method":"SEAD","details":"MAD!:w=0.25,s=0.89 RRCF-fast:w=0.18,s=0.77 RRCF-mid:w=0.17,s=0.76 RRCF-slow:w=0.17,s=0.89 COPOD!:w=0.22,s=0.84"} +{"timestamp":"2026-03-16T21:18:54.468751831Z","score":0.6664876788625912,"is_anomaly":false,"confidence":0.7674249594072858,"method":"SEAD","details":"MAD!:w=0.25,s=0.87 RRCF-fast:w=0.18,s=0.53 RRCF-mid:w=0.18,s=0.45 RRCF-slow:w=0.17,s=0.58 COPOD!:w=0.22,s=0.79"} +{"timestamp":"2026-03-16T21:19:24.509973821Z","score":0.8840850074618221,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.94 RRCF-fast:w=0.18,s=0.77 RRCF-mid!:w=0.18,s=0.90 RRCF-slow!:w=0.17,s=0.96 COPOD!:w=0.22,s=0.84"} +{"timestamp":"2026-03-16T21:19:54.51245383Z","score":0.600347524994974,"is_anomaly":false,"confidence":0.6790608594512323,"method":"SEAD","details":"MAD!:w=0.25,s=0.92 RRCF-fast:w=0.18,s=0.29 RRCF-mid:w=0.18,s=0.51 RRCF-slow:w=0.17,s=0.73 COPOD!:w=0.22,s=0.47"} +{"timestamp":"2026-03-16T21:20:24.508667696Z","score":0.7895266596754048,"is_anomaly":false,"confidence":0.8930438283781205,"method":"SEAD","details":"MAD!:w=0.25,s=0.78 RRCF-fast:w=0.18,s=0.62 RRCF-mid:w=0.18,s=0.70 RRCF-slow:w=0.17,s=0.80 COPOD!:w=0.22,s=1.00"} +{"timestamp":"2026-03-16T21:20:54.510899016Z","score":0.44438249584289446,"is_anomaly":false,"confidence":0.5026467953785366,"method":"SEAD","details":"MAD!:w=0.25,s=0.70 RRCF-fast:w=0.18,s=0.25 RRCF-mid:w=0.18,s=0.30 RRCF-slow:w=0.17,s=0.41 COPOD!:w=0.22,s=0.46"} +{"timestamp":"2026-03-16T21:21:24.510563866Z","score":0.8760823270354307,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.91 RRCF-fast:w=0.18,s=0.80 RRCF-mid:w=0.18,s=0.80 RRCF-slow!:w=0.17,s=0.89 COPOD!:w=0.22,s=0.95"} +{"timestamp":"2026-03-16T21:21:54.515820752Z","score":0.6098825494047276,"is_anomaly":false,"confidence":0.6961475315550597,"method":"SEAD","details":"MAD!:w=0.25,s=0.88 RRCF-fast:w=0.18,s=0.35 RRCF-mid:w=0.18,s=0.35 RRCF-slow:w=0.17,s=0.81 COPOD!:w=0.22,s=0.58"} +{"timestamp":"2026-03-16T21:22:24.468595117Z","score":0.2291777157263348,"is_anomaly":false,"confidence":0.26159381219553623,"method":"SEAD","details":"MAD!:w=0.25,s=0.12 RRCF-fast:w=0.19,s=0.22 RRCF-mid:w=0.18,s=0.32 RRCF-slow:w=0.17,s=0.46 COPOD!:w=0.22,s=0.10"} +{"timestamp":"2026-03-16T21:22:54.515302087Z","score":0.21045201360216084,"is_anomaly":false,"confidence":0.24021944868390172,"method":"SEAD","details":"MAD!:w=0.25,s=0.11 RRCF-fast:w=0.19,s=0.21 RRCF-mid:w=0.18,s=0.27 RRCF-slow:w=0.17,s=0.33 COPOD!:w=0.22,s=0.19"} +{"timestamp":"2026-03-16T21:23:24.467092094Z","score":0.2349172002625552,"is_anomaly":false,"confidence":0.26814511948607617,"method":"SEAD","details":"MAD!:w=0.25,s=0.06 RRCF-fast:w=0.19,s=0.20 RRCF-mid:w=0.18,s=0.29 RRCF-slow:w=0.17,s=0.34 COPOD!:w=0.22,s=0.34"} +{"timestamp":"2026-03-16T21:23:54.510278389Z","score":0.8044103608909743,"is_anomaly":false,"confidence":0.9181903755700829,"method":"SEAD","details":"MAD!:w=0.25,s=1.00 RRCF-fast:w=0.19,s=0.66 RRCF-mid:w=0.18,s=0.60 RRCF-slow:w=0.17,s=0.67 COPOD!:w=0.22,s=0.98"} +{"timestamp":"2026-03-16T21:24:24.46706566Z","score":0.3346195512119683,"is_anomaly":false,"confidence":0.3819498931616224,"method":"SEAD","details":"MAD!:w=0.25,s=0.00 RRCF-fast:w=0.19,s=0.39 RRCF-mid:w=0.18,s=0.24 RRCF-slow:w=0.17,s=0.32 COPOD!:w=0.22,s=0.75"} +{"timestamp":"2026-03-16T21:24:54.512806958Z","score":0.7895043473953325,"is_anomaly":false,"confidence":0.9090720818511234,"method":"SEAD","details":"MAD!:w=0.25,s=0.99 RRCF-fast:w=0.19,s=0.50 RRCF-mid:w=0.18,s=0.76 RRCF-slow!:w=0.17,s=0.87 COPOD!:w=0.22,s=0.76"} +{"timestamp":"2026-03-16T21:25:24.472080432Z","score":0.28909451699303146,"is_anomaly":false,"confidence":0.33287689330861026,"method":"SEAD","details":"MAD!:w=0.25,s=0.00 RRCF-fast:w=0.19,s=0.22 RRCF-mid:w=0.18,s=0.57 RRCF-slow:w=0.17,s=0.56 COPOD!:w=0.22,s=0.25"} +{"timestamp":"2026-03-16T21:25:54.507135686Z","score":0.6302776466367374,"is_anomaly":false,"confidence":0.7257310415865013,"method":"SEAD","details":"MAD!:w=0.25,s=0.99 RRCF-fast:w=0.19,s=0.42 RRCF-mid:w=0.18,s=0.40 RRCF-slow:w=0.17,s=0.60 COPOD!:w=0.22,s=0.61"} +{"timestamp":"2026-03-16T21:26:24.46748262Z","score":0.1601609023518259,"is_anomaly":false,"confidence":0.18441672349553628,"method":"SEAD","details":"MAD!:w=0.25,s=0.00 RRCF-fast:w=0.19,s=0.14 RRCF-mid:w=0.18,s=0.18 RRCF-slow:w=0.17,s=0.38 COPOD!:w=0.22,s=0.17"} +{"timestamp":"2026-03-16T21:26:54.553447423Z","score":0.967404036877552,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=1.00 RRCF-fast!:w=0.19,s=0.96 RRCF-mid!:w=0.18,s=0.94 RRCF-slow!:w=0.17,s=0.93 COPOD!:w=0.22,s=0.98"} +{"timestamp":"2026-03-16T21:27:24.46775984Z","score":0.4806477854739758,"is_anomaly":false,"confidence":0.5486331257251094,"method":"SEAD","details":"MAD!:w=0.25,s=0.00 RRCF-fast!:w=0.19,s=0.96 RRCF-mid!:w=0.18,s=0.92 RRCF-slow:w=0.17,s=0.55 COPOD!:w=0.22,s=0.21"} +{"timestamp":"2026-03-16T21:27:54.50217751Z","score":0.7708320404097083,"is_anomaly":false,"confidence":0.887571917804674,"method":"SEAD","details":"MAD!:w=0.25,s=0.99 RRCF-fast:w=0.19,s=0.75 RRCF-mid:w=0.18,s=0.68 RRCF-slow:w=0.17,s=0.74 COPOD!:w=0.22,s=0.64"} +{"timestamp":"2026-03-16T21:28:24.508453516Z","score":0.36608997695196327,"is_anomaly":false,"confidence":0.42153305246577105,"method":"SEAD","details":"MAD:w=0.25,s=0.00 RRCF-fast:w=0.19,s=0.63 RRCF-mid:w=0.18,s=0.32 RRCF-slow:w=0.17,s=0.57 COPOD!:w=0.22,s=0.44"} +{"timestamp":"2026-03-16T21:28:54.46636745Z","score":0.25811679026376816,"is_anomaly":false,"confidence":0.2972076957649958,"method":"SEAD","details":"MAD:w=0.25,s=0.00 RRCF-fast:w=0.19,s=0.52 RRCF-mid:w=0.18,s=0.21 RRCF-slow:w=0.17,s=0.32 COPOD!:w=0.22,s=0.32"} +{"timestamp":"2026-03-16T21:29:24.512742038Z","score":0.25396063595995705,"is_anomaly":false,"confidence":0.29242210609987873,"method":"SEAD","details":"MAD!:w=0.25,s=0.05 RRCF-fast:w=0.18,s=0.46 RRCF-mid:w=0.18,s=0.30 RRCF-slow:w=0.16,s=0.59 COPOD!:w=0.22,s=0.02"} +{"timestamp":"2026-03-16T21:29:54.516314117Z","score":0.32360076513788527,"is_anomaly":false,"confidence":0.3726089947737924,"method":"SEAD","details":"MAD!:w=0.25,s=0.05 RRCF-fast:w=0.18,s=0.65 RRCF-mid:w=0.18,s=0.26 RRCF-slow:w=0.16,s=0.43 COPOD!:w=0.22,s=0.33"} +{"timestamp":"2026-03-16T21:30:24.513250632Z","score":0.7118180590251278,"is_anomaly":false,"confidence":0.8196204706814315,"method":"SEAD","details":"MAD!:w=0.26,s=0.96 RRCF-fast:w=0.18,s=0.67 RRCF-mid:w=0.18,s=0.48 RRCF-slow:w=0.16,s=0.77 COPOD!:w=0.22,s=0.61"} +{"timestamp":"2026-03-16T21:30:54.465619136Z","score":0.25491215724825,"is_anomaly":false,"confidence":0.29351773203446396,"method":"SEAD","details":"MAD!:w=0.25,s=0.05 RRCF-fast:w=0.18,s=0.49 RRCF-mid:w=0.18,s=0.24 RRCF-slow:w=0.16,s=0.27 COPOD!:w=0.22,s=0.30"} +{"timestamp":"2026-03-16T21:31:24.510747614Z","score":0.79763971478643,"is_anomaly":false,"confidence":0.9265916198398458,"method":"SEAD","details":"MAD!:w=0.26,s=0.98 RRCF-fast:w=0.18,s=0.68 RRCF-mid:w=0.18,s=0.51 RRCF-slow:w=0.16,s=0.68 COPOD!:w=0.22,s=1.00"} +{"timestamp":"2026-03-16T21:31:54.527339354Z","score":0.21083952161638989,"is_anomaly":false,"confidence":0.24492528423449625,"method":"SEAD","details":"MAD!:w=0.25,s=0.03 RRCF-fast:w=0.18,s=0.29 RRCF-mid:w=0.18,s=0.27 RRCF-slow:w=0.16,s=0.41 COPOD!:w=0.22,s=0.16"} +{"timestamp":"2026-03-16T21:32:24.520319529Z","score":0.7324256504576092,"is_anomaly":false,"confidence":0.8508346027522984,"method":"SEAD","details":"MAD!:w=0.26,s=0.98 RRCF-fast:w=0.18,s=0.47 RRCF-mid:w=0.18,s=0.52 RRCF-slow:w=0.16,s=0.70 COPOD!:w=0.22,s=0.86"} +{"timestamp":"2026-03-16T21:32:54.465112295Z","score":0.1968220107500243,"is_anomaly":false,"confidence":0.2286416064549037,"method":"SEAD","details":"MAD!:w=0.25,s=0.03 RRCF-fast:w=0.18,s=0.27 RRCF-mid:w=0.18,s=0.20 RRCF-slow:w=0.16,s=0.38 COPOD!:w=0.22,s=0.19"} +{"timestamp":"2026-03-16T21:33:24.513688444Z","score":0.7130975532731636,"is_anomaly":false,"confidence":0.8283817928601122,"method":"SEAD","details":"MAD!:w=0.26,s=0.97 RRCF-fast:w=0.18,s=0.44 RRCF-mid:w=0.18,s=0.38 RRCF-slow:w=0.16,s=0.70 COPOD!:w=0.22,s=0.92"} +{"timestamp":"2026-03-16T21:33:55.742505972Z","score":0.2378047963756593,"is_anomaly":false,"confidence":0.2762499501901125,"method":"SEAD","details":"MAD:w=0.25,s=0.00 RRCF-fast:w=0.18,s=0.36 RRCF-mid:w=0.18,s=0.18 RRCF-slow:w=0.16,s=0.24 COPOD!:w=0.22,s=0.46"} +{"timestamp":"2026-03-16T21:34:24.502894021Z","score":0.7294031999430177,"is_anomaly":false,"confidence":0.8473235221650549,"method":"SEAD","details":"MAD!:w=0.26,s=0.94 RRCF-fast:w=0.18,s=0.47 RRCF-mid:w=0.18,s=0.39 RRCF-slow:w=0.16,s=0.75 COPOD!:w=0.22,s=0.97"} +{"timestamp":"2026-03-16T21:34:54.509507196Z","score":0.2657707585089789,"is_anomaly":false,"confidence":0.3115504358453307,"method":"SEAD","details":"MAD:w=0.25,s=0.01 RRCF-fast:w=0.18,s=0.25 RRCF-mid:w=0.18,s=0.19 RRCF-slow:w=0.16,s=0.36 COPOD!:w=0.22,s=0.58"} +{"timestamp":"2026-03-16T21:35:24.465611045Z","score":0.15835408093810044,"is_anomaly":false,"confidence":0.18563096711967733,"method":"SEAD","details":"MAD:w=0.26,s=0.00 RRCF-fast:w=0.18,s=0.15 RRCF-mid:w=0.18,s=0.21 RRCF-slow:w=0.16,s=0.43 COPOD!:w=0.22,s=0.11"} +{"timestamp":"2026-03-16T21:35:54.559942285Z","score":0.3257983591982494,"is_anomaly":false,"confidence":0.38191794076728347,"method":"SEAD","details":"MAD!:w=0.26,s=0.18 RRCF-fast:w=0.18,s=0.38 RRCF-mid:w=0.18,s=0.33 RRCF-slow:w=0.16,s=0.43 COPOD!:w=0.22,s=0.37"} +{"timestamp":"2026-03-16T21:36:24.517920471Z","score":0.22432506336284852,"is_anomaly":false,"confidence":0.2629656161340479,"method":"SEAD","details":"MAD!:w=0.26,s=0.11 RRCF-fast:w=0.18,s=0.20 RRCF-mid:w=0.18,s=0.22 RRCF-slow:w=0.16,s=0.44 COPOD!:w=0.22,s=0.22"} +{"timestamp":"2026-03-16T21:36:54.510064173Z","score":0.7539002799110538,"is_anomaly":false,"confidence":0.8837614871850938,"method":"SEAD","details":"MAD!:w=0.26,s=0.98 RRCF-fast:w=0.18,s=0.69 RRCF-mid:w=0.18,s=0.50 RRCF-slow:w=0.16,s=0.74 COPOD!:w=0.22,s=0.76"} +{"timestamp":"2026-03-16T21:37:24.469875786Z","score":0.362831206712326,"is_anomaly":false,"confidence":0.42532978881381883,"method":"SEAD","details":"MAD!:w=0.26,s=0.12 RRCF-fast:w=0.18,s=0.60 RRCF-mid:w=0.18,s=0.40 RRCF-slow:w=0.16,s=0.69 COPOD!:w=0.22,s=0.17"} +{"timestamp":"2026-03-16T21:37:54.509493588Z","score":0.7091861508475021,"is_anomaly":false,"confidence":0.8504745204036691,"method":"SEAD","details":"MAD!:w=0.26,s=0.92 RRCF-fast:w=0.18,s=0.69 RRCF-mid:w=0.18,s=0.46 RRCF-slow:w=0.16,s=0.62 COPOD!:w=0.22,s=0.75"} +{"timestamp":"2026-03-16T21:38:24.513744142Z","score":0.20831841459803765,"is_anomaly":false,"confidence":0.24982087359545171,"method":"SEAD","details":"MAD!:w=0.26,s=0.06 RRCF-fast:w=0.18,s=0.47 RRCF-mid:w=0.18,s=0.16 RRCF-slow:w=0.16,s=0.39 COPOD!:w=0.22,s=0.06"} +{"timestamp":"2026-03-16T21:38:54.514477199Z","score":0.6401791688068079,"is_anomaly":false,"confidence":0.7677195485455343,"method":"SEAD","details":"MAD!:w=0.26,s=0.95 RRCF-fast:w=0.18,s=0.29 RRCF-mid:w=0.18,s=0.43 RRCF-slow:w=0.16,s=0.67 COPOD!:w=0.22,s=0.74"} +{"timestamp":"2026-03-16T21:39:24.469228843Z","score":0.15712615838764046,"is_anomaly":false,"confidence":0.18842978537850016,"method":"SEAD","details":"MAD:w=0.26,s=0.04 RRCF-fast:w=0.18,s=0.13 RRCF-mid:w=0.18,s=0.15 RRCF-slow:w=0.16,s=0.27 COPOD!:w=0.22,s=0.25"} +{"timestamp":"2026-03-16T21:39:54.507575986Z","score":0.669420705154711,"is_anomaly":false,"confidence":0.8027867612535514,"method":"SEAD","details":"MAD!:w=0.26,s=0.95 RRCF-fast:w=0.18,s=0.60 RRCF-mid:w=0.18,s=0.44 RRCF-slow:w=0.16,s=0.59 COPOD!:w=0.22,s=0.66"} +{"timestamp":"2026-03-16T21:40:24.46776446Z","score":0.14883501883080713,"is_anomaly":false,"confidence":0.17848683467399043,"method":"SEAD","details":"MAD:w=0.25,s=0.01 RRCF-fast:w=0.18,s=0.20 RRCF-mid:w=0.19,s=0.17 RRCF-slow:w=0.16,s=0.21 COPOD!:w=0.22,s=0.21"} +{"timestamp":"2026-03-16T21:40:54.504250048Z","score":0.7155218822335353,"is_anomaly":false,"confidence":0.8580724946527485,"method":"SEAD","details":"MAD!:w=0.26,s=1.00 RRCF-fast:w=0.18,s=0.64 RRCF-mid:w=0.19,s=0.49 RRCF-slow!:w=0.16,s=0.89 COPOD!:w=0.22,s=0.51"} +{"timestamp":"2026-03-16T21:41:24.508843491Z","score":0.2492965101950395,"is_anomaly":false,"confidence":0.3025338762571147,"method":"SEAD","details":"MAD!:w=0.25,s=0.13 RRCF-fast:w=0.18,s=0.22 RRCF-mid:w=0.19,s=0.21 RRCF-slow:w=0.16,s=0.21 COPOD!:w=0.22,s=0.49"} +{"timestamp":"2026-03-16T21:41:54.5124436Z","score":0.25160925615600715,"is_anomaly":false,"confidence":0.30534051001152274,"method":"SEAD","details":"MAD!:w=0.25,s=0.13 RRCF-fast:w=0.18,s=0.26 RRCF-mid:w=0.19,s=0.23 RRCF-slow:w=0.16,s=0.27 COPOD!:w=0.22,s=0.39"} +{"timestamp":"2026-03-16T21:42:24.510675882Z","score":0.5853808056325789,"is_anomaly":false,"confidence":0.710389102823713,"method":"SEAD","details":"MAD!:w=0.26,s=0.86 RRCF-fast:w=0.18,s=0.52 RRCF-mid:w=0.19,s=0.35 RRCF-slow:w=0.16,s=0.49 COPOD!:w=0.21,s=0.60"} +{"timestamp":"2026-03-16T21:42:54.465017635Z","score":0.31796413893700015,"is_anomaly":false,"confidence":0.3858655036450667,"method":"SEAD","details":"MAD!:w=0.25,s=0.15 RRCF-fast:w=0.18,s=0.39 RRCF-mid:w=0.19,s=0.18 RRCF-slow:w=0.16,s=0.23 COPOD!:w=0.21,s=0.63"} +{"timestamp":"2026-03-16T21:43:24.508367098Z","score":0.6104094972184936,"is_anomaly":false,"confidence":0.7407626811670542,"method":"SEAD","details":"MAD!:w=0.25,s=0.93 RRCF-fast:w=0.18,s=0.38 RRCF-mid:w=0.19,s=0.31 RRCF-slow:w=0.16,s=0.51 COPOD!:w=0.21,s=0.77"} +{"timestamp":"2026-03-16T21:43:54.467014414Z","score":0.14583846712987852,"is_anomaly":false,"confidence":0.17698232812677328,"method":"SEAD","details":"MAD!:w=0.25,s=0.09 RRCF-fast:w=0.19,s=0.12 RRCF-mid:w=0.19,s=0.23 RRCF-slow:w=0.16,s=0.22 COPOD!:w=0.21,s=0.10"} +{"timestamp":"2026-03-16T21:44:24.511779048Z","score":0.6895948125446327,"is_anomaly":false,"confidence":0.8368580511725003,"method":"SEAD","details":"MAD!:w=0.25,s=0.92 RRCF-fast:w=0.19,s=0.56 RRCF-mid:w=0.19,s=0.39 RRCF-slow:w=0.16,s=0.61 COPOD!:w=0.21,s=0.84"} +{"timestamp":"2026-03-16T21:44:54.5136861Z","score":0.28491367765193476,"is_anomaly":false,"confidence":0.3523711574507272,"method":"SEAD","details":"MAD:w=0.25,s=0.04 RRCF-fast:w=0.19,s=0.52 RRCF-mid:w=0.19,s=0.13 RRCF-slow:w=0.16,s=0.40 COPOD!:w=0.21,s=0.41"} +{"timestamp":"2026-03-16T21:45:24.514155672Z","score":0.6345715442396334,"is_anomaly":false,"confidence":0.7848156373952043,"method":"SEAD","details":"MAD!:w=0.25,s=0.94 RRCF-fast:w=0.18,s=0.41 RRCF-mid:w=0.19,s=0.42 RRCF-slow:w=0.16,s=0.43 COPOD!:w=0.21,s=0.82"} +{"timestamp":"2026-03-16T21:45:54.468307065Z","score":0.19377956235182453,"is_anomaly":false,"confidence":0.23965970759615474,"method":"SEAD","details":"MAD:w=0.25,s=0.01 RRCF-fast:w=0.19,s=0.10 RRCF-mid:w=0.19,s=0.18 RRCF-slow:w=0.16,s=0.17 COPOD!:w=0.21,s=0.52"} +{"timestamp":"2026-03-16T21:46:24.511616691Z","score":0.7500018362321945,"is_anomaly":false,"confidence":0.927575739084615,"method":"SEAD","details":"MAD!:w=0.25,s=0.88 RRCF-fast!:w=0.19,s=0.88 RRCF-mid:w=0.19,s=0.53 RRCF-slow:w=0.16,s=0.55 COPOD!:w=0.21,s=0.83"} +{"timestamp":"2026-03-16T21:46:54.513284856Z","score":0.35873536469931666,"is_anomaly":false,"confidence":0.44367120848453434,"method":"SEAD","details":"MAD:w=0.25,s=0.06 RRCF-fast!:w=0.19,s=0.74 RRCF-mid:w=0.19,s=0.42 RRCF-slow:w=0.16,s=0.36 COPOD!:w=0.21,s=0.32"} +{"timestamp":"2026-03-16T21:47:24.466843344Z","score":0.2291655182335254,"is_anomaly":false,"confidence":0.2834238060216718,"method":"SEAD","details":"MAD!:w=0.25,s=0.08 RRCF-fast:w=0.18,s=0.66 RRCF-mid:w=0.19,s=0.25 RRCF-slow:w=0.16,s=0.21 COPOD!:w=0.21,s=0.02"} +{"timestamp":"2026-03-16T21:47:54.511587695Z","score":0.20972854438989655,"is_anomaly":false,"confidence":0.26010946862138984,"method":"SEAD","details":"MAD!:w=0.25,s=0.13 RRCF-fast:w=0.18,s=0.39 RRCF-mid:w=0.19,s=0.22 RRCF-slow:w=0.16,s=0.23 COPOD!:w=0.21,s=0.12"} +{"timestamp":"2026-03-16T21:48:24.465553504Z","score":0.23443122577685577,"is_anomaly":false,"confidence":0.29074622027470937,"method":"SEAD","details":"MAD!:w=0.25,s=0.14 RRCF-fast:w=0.18,s=0.37 RRCF-mid:w=0.19,s=0.25 RRCF-slow:w=0.16,s=0.16 COPOD!:w=0.21,s=0.28"} +{"timestamp":"2026-03-16T21:48:54.551679332Z","score":0.6358843976647239,"is_anomaly":false,"confidence":0.7886363454357329,"method":"SEAD","details":"MAD!:w=0.26,s=0.92 RRCF-fast:w=0.18,s=0.70 RRCF-mid:w=0.19,s=0.39 RRCF-slow:w=0.16,s=0.58 COPOD!:w=0.21,s=0.50"} +{"timestamp":"2026-03-16T21:49:24.467495817Z","score":0.22500262950025718,"is_anomaly":false,"confidence":0.2790526895992072,"method":"SEAD","details":"MAD!:w=0.25,s=0.15 RRCF-fast:w=0.18,s=0.34 RRCF-mid:w=0.19,s=0.15 RRCF-slow:w=0.16,s=0.18 COPOD!:w=0.21,s=0.32"} +{"timestamp":"2026-03-16T21:49:54.509809148Z","score":0.6408469577043111,"is_anomaly":false,"confidence":0.7947910100697423,"method":"SEAD","details":"MAD!:w=0.25,s=0.88 RRCF-fast:w=0.18,s=0.72 RRCF-mid:w=0.19,s=0.53 RRCF-slow:w=0.16,s=0.40 COPOD!:w=0.21,s=0.58"} +{"timestamp":"2026-03-16T21:50:24.517842544Z","score":0.116943348689063,"is_anomaly":false,"confidence":0.145035442718609,"method":"SEAD","details":"MAD:w=0.25,s=0.03 RRCF-fast:w=0.18,s=0.18 RRCF-mid:w=0.19,s=0.17 RRCF-slow:w=0.16,s=0.21 COPOD!:w=0.21,s=0.05"} +{"timestamp":"2026-03-16T21:50:54.509118927Z","score":0.7850363414817398,"is_anomaly":false,"confidence":0.9736175217603437,"method":"SEAD","details":"MAD!:w=0.25,s=0.92 RRCF-fast!:w=0.18,s=0.78 RRCF-mid:w=0.19,s=0.52 RRCF-slow:w=0.16,s=0.70 COPOD!:w=0.21,s=0.94"} +{"timestamp":"2026-03-16T21:51:24.516686701Z","score":0.23145643424471302,"is_anomaly":false,"confidence":0.2875520463561914,"method":"SEAD","details":"MAD:w=0.25,s=0.07 RRCF-fast:w=0.18,s=0.32 RRCF-mid:w=0.19,s=0.27 RRCF-slow:w=0.16,s=0.31 COPOD!:w=0.21,s=0.26"} +{"timestamp":"2026-03-16T21:51:54.506382503Z","score":0.5277017101431265,"is_anomaly":false,"confidence":0.6555951106413622,"method":"SEAD","details":"MAD!:w=0.25,s=0.86 RRCF-fast:w=0.18,s=0.37 RRCF-mid:w=0.19,s=0.43 RRCF-slow:w=0.16,s=0.25 COPOD!:w=0.21,s=0.57"} +{"timestamp":"2026-03-16T21:52:24.466897372Z","score":0.1601355313750888,"is_anomaly":false,"confidence":0.19894586163268305,"method":"SEAD","details":"MAD!:w=0.25,s=0.09 RRCF-fast:w=0.18,s=0.12 RRCF-mid:w=0.19,s=0.13 RRCF-slow:w=0.16,s=0.17 COPOD!:w=0.21,s=0.30"} +{"timestamp":"2026-03-16T21:52:54.509247876Z","score":0.7510528520227584,"is_anomaly":false,"confidence":0.9330774719032516,"method":"SEAD","details":"MAD!:w=0.25,s=0.93 RRCF-fast!:w=0.18,s=0.74 RRCF-mid:w=0.19,s=0.45 RRCF-slow:w=0.16,s=0.69 COPOD!:w=0.21,s=0.88"} +{"timestamp":"2026-03-16T21:53:24.961350426Z","score":0.24807935848940382,"is_anomaly":false,"confidence":0.3082036903624715,"method":"SEAD","details":"MAD:w=0.25,s=0.01 RRCF-fast:w=0.18,s=0.42 RRCF-mid:w=0.20,s=0.30 RRCF-slow:w=0.16,s=0.15 COPOD!:w=0.21,s=0.41"} +{"timestamp":"2026-03-16T21:53:55.667920963Z","score":0.2039806305701411,"is_anomaly":false,"confidence":0.2534172269994269,"method":"SEAD","details":"MAD:w=0.25,s=0.00 RRCF-fast:w=0.18,s=0.19 RRCF-mid:w=0.20,s=0.14 RRCF-slow:w=0.16,s=0.17 COPOD!:w=0.21,s=0.54"} +{"timestamp":"2026-03-16T21:54:24.566084021Z","score":0.19037057730860044,"is_anomaly":false,"confidence":0.2365086511840965,"method":"SEAD","details":"MAD!:w=0.25,s=0.22 RRCF-fast:w=0.18,s=0.16 RRCF-mid:w=0.20,s=0.30 RRCF-slow:w=0.16,s=0.20 COPOD!:w=0.21,s=0.07"} +{"timestamp":"2026-03-16T21:54:54.468788352Z","score":0.2557336451932821,"is_anomaly":false,"confidence":0.3179144098915242,"method":"SEAD","details":"MAD!:w=0.25,s=0.16 RRCF-fast:w=0.18,s=0.36 RRCF-mid:w=0.20,s=0.22 RRCF-slow:w=0.16,s=0.17 COPOD!:w=0.21,s=0.39"} +{"timestamp":"2026-03-16T21:55:24.511108188Z","score":0.7167099047968168,"is_anomaly":false,"confidence":0.8909754767491813,"method":"SEAD","details":"MAD!:w=0.25,s=0.97 RRCF-fast:w=0.18,s=0.65 RRCF-mid:w=0.20,s=0.41 RRCF-slow:w=0.16,s=0.48 COPOD!:w=0.21,s=0.94"} +{"timestamp":"2026-03-16T21:55:54.46925805Z","score":0.22355630359000409,"is_anomaly":false,"confidence":0.277913257286232,"method":"SEAD","details":"MAD!:w=0.25,s=0.14 RRCF-fast:w=0.18,s=0.17 RRCF-mid:w=0.20,s=0.20 RRCF-slow:w=0.16,s=0.17 COPOD!:w=0.21,s=0.44"} +{"timestamp":"2026-03-16T21:56:24.511344654Z","score":0.609120607848824,"is_anomaly":false,"confidence":0.7572262087402193,"method":"SEAD","details":"MAD!:w=0.25,s=0.86 RRCF-fast:w=0.18,s=0.58 RRCF-mid:w=0.20,s=0.37 RRCF-slow:w=0.16,s=0.24 COPOD!:w=0.21,s=0.85"} +{"timestamp":"2026-03-16T21:56:54.518927429Z","score":0.18217451326882678,"is_anomaly":false,"confidence":0.2264696256112964,"method":"SEAD","details":"MAD:w=0.25,s=0.02 RRCF-fast:w=0.18,s=0.13 RRCF-mid:w=0.20,s=0.12 RRCF-slow:w=0.17,s=0.21 COPOD!:w=0.20,s=0.47"} +{"timestamp":"2026-03-16T21:57:24.570533015Z","score":0.8921445688410395,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.99 RRCF-fast!:w=0.18,s=0.93 RRCF-mid!:w=0.20,s=0.72 RRCF-slow!:w=0.17,s=0.92 COPOD!:w=0.20,s=0.89"} +{"timestamp":"2026-03-16T21:57:54.510719414Z","score":0.5355133743155297,"is_anomaly":false,"confidence":0.6657216271088165,"method":"SEAD","details":"MAD:w=0.25,s=0.08 RRCF-fast!:w=0.18,s=0.89 RRCF-mid!:w=0.20,s=0.64 RRCF-slow:w=0.17,s=0.50 COPOD!:w=0.20,s=0.71"} +{"timestamp":"2026-03-16T21:58:24.51136637Z","score":0.6438306655626614,"is_anomaly":false,"confidence":0.800375898750915,"method":"SEAD","details":"MAD!:w=0.25,s=0.87 RRCF-fast!:w=0.18,s=0.88 RRCF-mid:w=0.20,s=0.51 RRCF-slow:w=0.17,s=0.42 COPOD!:w=0.20,s=0.47"} +{"timestamp":"2026-03-16T21:58:54.466650828Z","score":0.1470195120587671,"is_anomaly":false,"confidence":0.18276680560892647,"method":"SEAD","details":"MAD:w=0.25,s=0.03 RRCF-fast:w=0.18,s=0.28 RRCF-mid:w=0.20,s=0.22 RRCF-slow:w=0.17,s=0.15 COPOD!:w=0.20,s=0.10"} +{"timestamp":"2026-03-16T21:59:24.500887926Z","score":0.9567975288800818,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=1.00 RRCF-fast!:w=0.18,s=0.98 RRCF-mid!:w=0.20,s=0.99 RRCF-slow!:w=0.17,s=0.95 COPOD!:w=0.20,s=0.85"} +{"timestamp":"2026-03-16T21:59:54.552953125Z","score":0.6774314240318985,"is_anomaly":false,"confidence":0.841613208472777,"method":"SEAD","details":"MAD!:w=0.25,s=0.23 RRCF-fast!:w=0.18,s=0.96 RRCF-mid!:w=0.20,s=0.98 RRCF-slow:w=0.17,s=0.60 COPOD!:w=0.20,s=0.75"} +{"timestamp":"2026-03-16T22:00:24.518257158Z","score":0.4972790268759264,"is_anomaly":false,"confidence":0.6177992081093094,"method":"SEAD","details":"MAD!:w=0.26,s=0.23 RRCF-fast!:w=0.18,s=0.83 RRCF-mid!:w=0.20,s=0.96 RRCF-slow:w=0.17,s=0.53 COPOD!:w=0.20,s=0.07"} +{"timestamp":"2026-03-16T22:00:54.505799374Z","score":0.48423816162416267,"is_anomaly":false,"confidence":0.6015977682934894,"method":"SEAD","details":"MAD!:w=0.26,s=0.25 RRCF-fast!:w=0.18,s=0.87 RRCF-mid!:w=0.19,s=0.92 RRCF-slow:w=0.17,s=0.26 COPOD!:w=0.20,s=0.21"} +{"timestamp":"2026-03-16T22:01:24.496267345Z","score":0.6558811613332904,"is_anomaly":false,"confidence":0.8153564315193912,"method":"SEAD","details":"MAD!:w=0.26,s=0.25 RRCF-fast!:w=0.18,s=0.93 RRCF-mid!:w=0.19,s=0.97 RRCF-slow!:w=0.17,s=0.98 COPOD!:w=0.21,s=0.39"} +{"timestamp":"2026-03-16T22:01:54.510471273Z","score":0.8043859684987051,"is_anomaly":false,"confidence":0.9999696766806409,"method":"SEAD","details":"MAD!:w=0.26,s=0.92 RRCF-fast:w=0.17,s=0.79 RRCF-mid!:w=0.19,s=0.93 RRCF-slow!:w=0.17,s=0.75 COPOD!:w=0.21,s=0.59"} +{"timestamp":"2026-03-16T22:02:24.515100435Z","score":0.4097156001395279,"is_anomaly":false,"confidence":0.5093365526591703,"method":"SEAD","details":"MAD!:w=0.26,s=0.22 RRCF-fast:w=0.17,s=0.61 RRCF-mid!:w=0.19,s=0.82 RRCF-slow:w=0.17,s=0.40 COPOD!:w=0.21,s=0.11"} +{"timestamp":"2026-03-16T22:02:54.511799474Z","score":0.8282086406098145,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.26,s=0.91 RRCF-fast!:w=0.17,s=0.89 RRCF-mid!:w=0.19,s=0.92 RRCF-slow:w=0.17,s=0.68 COPOD!:w=0.21,s=0.72"} +{"timestamp":"2026-03-16T22:03:24.514307345Z","score":0.4155648637240573,"is_anomaly":false,"confidence":0.516280860143399,"method":"SEAD","details":"MAD:w=0.26,s=0.06 RRCF-fast:w=0.17,s=0.66 RRCF-mid!:w=0.19,s=0.74 RRCF-slow:w=0.17,s=0.26 COPOD!:w=0.21,s=0.49"} +{"timestamp":"2026-03-16T22:03:54.506599339Z","score":0.8458967745487138,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.26,s=0.91 RRCF-fast:w=0.17,s=0.73 RRCF-mid!:w=0.19,s=0.89 RRCF-slow!:w=0.17,s=0.75 COPOD!:w=0.21,s=0.91"} +{"timestamp":"2026-03-16T22:04:24.467791906Z","score":0.435021103353749,"is_anomaly":false,"confidence":0.5395217344477283,"method":"SEAD","details":"MAD:w=0.26,s=0.07 RRCF-fast:w=0.17,s=0.52 RRCF-mid:w=0.19,s=0.68 RRCF-slow:w=0.17,s=0.25 COPOD!:w=0.21,s=0.74"} +{"timestamp":"2026-03-16T22:04:54.511848462Z","score":0.6015430557593853,"is_anomaly":false,"confidence":0.747332590772075,"method":"SEAD","details":"MAD!:w=0.27,s=0.80 RRCF-fast:w=0.17,s=0.67 RRCF-mid:w=0.19,s=0.73 RRCF-slow:w=0.17,s=0.57 COPOD!:w=0.21,s=0.20"} +{"timestamp":"2026-03-16T22:05:24.509429951Z","score":0.9329390255718831,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.26,s=0.98 RRCF-fast!:w=0.17,s=0.95 RRCF-mid!:w=0.19,s=0.98 RRCF-slow!:w=0.17,s=0.99 COPOD!:w=0.21,s=0.77"} +{"timestamp":"2026-03-16T22:05:54.512889043Z","score":0.9203770024107514,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.26,s=0.86 RRCF-fast!:w=0.17,s=0.90 RRCF-mid!:w=0.19,s=0.95 RRCF-slow!:w=0.17,s=0.98 COPOD!:w=0.21,s=0.93"} +{"timestamp":"2026-03-16T22:06:24.507597813Z","score":0.5754722512606867,"is_anomaly":false,"confidence":0.7117237225277411,"method":"SEAD","details":"MAD!:w=0.26,s=0.26 RRCF-fast:w=0.17,s=0.71 RRCF-mid!:w=0.19,s=0.94 RRCF-slow!:w=0.17,s=0.93 COPOD!:w=0.21,s=0.26"} +{"timestamp":"2026-03-16T22:06:54.466505723Z","score":0.6515256528208224,"is_anomaly":false,"confidence":0.8057838791220799,"method":"SEAD","details":"MAD!:w=0.27,s=0.25 RRCF-fast:w=0.17,s=0.77 RRCF-mid:w=0.19,s=0.82 RRCF-slow!:w=0.17,s=0.89 COPOD!:w=0.21,s=0.72"} +{"timestamp":"2026-03-16T22:07:24.512362399Z","score":0.8838063332444102,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.27,s=0.81 RRCF-fast:w=0.17,s=0.80 RRCF-mid!:w=0.18,s=0.91 RRCF-slow!:w=0.17,s=0.95 COPOD!:w=0.21,s=0.97"} +{"timestamp":"2026-03-16T22:07:54.46356673Z","score":0.7851380826441583,"is_anomaly":false,"confidence":0.9710310056716509,"method":"SEAD","details":"MAD!:w=0.27,s=0.82 RRCF-fast:w=0.17,s=0.72 RRCF-mid:w=0.18,s=0.87 RRCF-slow!:w=0.17,s=0.93 COPOD!:w=0.21,s=0.60"} +{"timestamp":"2026-03-16T22:08:24.507891427Z","score":0.7325149530743613,"is_anomaly":false,"confidence":0.90594858060871,"method":"SEAD","details":"MAD!:w=0.27,s=0.78 RRCF-fast:w=0.17,s=0.61 RRCF-mid:w=0.18,s=0.81 RRCF-slow!:w=0.16,s=0.88 COPOD!:w=0.21,s=0.59"} +{"timestamp":"2026-03-16T22:08:54.465350329Z","score":0.5401819760454607,"is_anomaly":false,"confidence":0.6680779585657334,"method":"SEAD","details":"MAD!:w=0.27,s=0.24 RRCF-fast:w=0.17,s=0.60 RRCF-mid:w=0.18,s=0.71 RRCF-slow:w=0.16,s=0.73 COPOD!:w=0.21,s=0.57"} +{"timestamp":"2026-03-16T22:09:24.499468286Z","score":0.7272478807581061,"is_anomaly":false,"confidence":0.8994344518952304,"method":"SEAD","details":"MAD!:w=0.27,s=0.77 RRCF-fast:w=0.17,s=0.73 RRCF-mid:w=0.18,s=0.75 RRCF-slow:w=0.16,s=0.85 COPOD!:w=0.21,s=0.56"} +{"timestamp":"2026-03-16T22:09:54.464526536Z","score":0.8485777619986814,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.27,s=0.98 RRCF-fast:w=0.17,s=0.68 RRCF-mid!:w=0.18,s=0.94 RRCF-slow!:w=0.16,s=0.97 COPOD!:w=0.21,s=0.65"} +{"timestamp":"2026-03-16T22:10:24.510849823Z","score":0.7825639675729115,"is_anomaly":false,"confidence":0.9496808051735448,"method":"SEAD","details":"MAD!:w=0.27,s=0.82 RRCF-fast:w=0.17,s=0.54 RRCF-mid:w=0.18,s=0.83 RRCF-slow!:w=0.16,s=0.90 COPOD!:w=0.21,s=0.81"} +{"timestamp":"2026-03-16T22:10:54.50749868Z","score":0.620677492697708,"is_anomaly":false,"confidence":0.7532234110476568,"method":"SEAD","details":"MAD!:w=0.27,s=0.25 RRCF-fast!:w=0.17,s=0.90 RRCF-mid!:w=0.18,s=0.94 RRCF-slow!:w=0.16,s=0.98 COPOD!:w=0.21,s=0.32"} +{"timestamp":"2026-03-16T22:11:24.466410117Z","score":0.505352210538725,"is_anomaly":false,"confidence":0.6250017367202549,"method":"SEAD","details":"MAD!:w=0.27,s=0.25 RRCF-fast:w=0.17,s=0.58 RRCF-mid:w=0.18,s=0.58 RRCF-slow:w=0.16,s=0.80 COPOD!:w=0.21,s=0.48"} +{"timestamp":"2026-03-16T22:11:54.507486329Z","score":0.921811551994442,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.27,s=0.91 RRCF-fast:w=0.17,s=0.85 RRCF-mid!:w=0.18,s=0.93 RRCF-slow!:w=0.16,s=0.92 COPOD!:w=0.21,s=0.99"} +{"timestamp":"2026-03-16T22:12:24.46516597Z","score":0.7627342605081109,"is_anomaly":false,"confidence":0.9256164565043086,"method":"SEAD","details":"MAD!:w=0.27,s=0.82 RRCF-fast:w=0.17,s=0.86 RRCF-mid:w=0.18,s=0.83 RRCF-slow!:w=0.16,s=0.92 COPOD!:w=0.21,s=0.44"} +{"timestamp":"2026-03-16T22:12:54.51109188Z","score":0.6195672558638335,"is_anomaly":false,"confidence":0.7518760827089942,"method":"SEAD","details":"MAD!:w=0.27,s=0.74 RRCF-fast:w=0.17,s=0.57 RRCF-mid:w=0.18,s=0.73 RRCF-slow:w=0.16,s=0.85 COPOD!:w=0.21,s=0.25"} +{"timestamp":"2026-03-16T22:13:24.466617038Z","score":0.45067220917692963,"is_anomaly":false,"confidence":0.546913433553418,"method":"SEAD","details":"MAD!:w=0.27,s=0.24 RRCF-fast:w=0.17,s=0.20 RRCF-mid:w=0.18,s=0.63 RRCF-slow:w=0.16,s=0.64 COPOD!:w=0.22,s=0.63"} +{"timestamp":"2026-03-16T22:13:54.505974204Z","score":0.8233058076925373,"is_anomaly":false,"confidence":0.9991230809903816,"method":"SEAD","details":"MAD!:w=0.27,s=0.76 RRCF-fast:w=0.17,s=0.80 RRCF-mid:w=0.18,s=0.76 RRCF-slow:w=0.16,s=0.83 COPOD!:w=0.22,s=0.97"} +{"timestamp":"2026-03-16T22:14:24.512374951Z","score":0.978965838281287,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.27,s=1.00 RRCF-fast!:w=0.17,s=0.95 RRCF-mid!:w=0.18,s=0.98 RRCF-slow!:w=0.16,s=1.00 COPOD!:w=0.21,s=0.95"} +{"timestamp":"2026-03-16T22:14:54.463074583Z","score":0.7474009508385827,"is_anomaly":false,"confidence":0.9070087126311841,"method":"SEAD","details":"MAD!:w=0.27,s=0.38 RRCF-fast!:w=0.17,s=0.92 RRCF-mid!:w=0.18,s=0.94 RRCF-slow!:w=0.16,s=0.99 COPOD!:w=0.22,s=0.74"} +{"timestamp":"2026-03-16T22:15:24.506075419Z","score":0.9066123323483842,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=0.91 RRCF-fast:w=0.17,s=0.82 RRCF-mid:w=0.18,s=0.93 RRCF-slow!:w=0.16,s=0.95 COPOD!:w=0.21,s=0.92"} +{"timestamp":"2026-03-16T22:15:54.468576857Z","score":0.6416390790466182,"is_anomaly":false,"confidence":0.774731206105476,"method":"SEAD","details":"MAD!:w=0.28,s=0.27 RRCF-fast:w=0.17,s=0.71 RRCF-mid:w=0.18,s=0.76 RRCF-slow:w=0.16,s=0.89 COPOD!:w=0.21,s=0.79"} +{"timestamp":"2026-03-16T22:16:24.509984126Z","score":0.45418729840659355,"is_anomaly":false,"confidence":0.5483971986481244,"method":"SEAD","details":"MAD!:w=0.28,s=0.27 RRCF-fast:w=0.17,s=0.42 RRCF-mid:w=0.18,s=0.77 RRCF-slow:w=0.16,s=0.92 COPOD!:w=0.21,s=0.12"} +{"timestamp":"2026-03-16T22:16:54.558600777Z","score":0.3657494572339693,"is_anomaly":false,"confidence":0.44161511882400306,"method":"SEAD","details":"MAD!:w=0.28,s=0.17 RRCF-fast:w=0.17,s=0.46 RRCF-mid:w=0.18,s=0.60 RRCF-slow:w=0.16,s=0.83 COPOD!:w=0.22,s=0.01"} +{"timestamp":"2026-03-16T22:17:24.85204237Z","score":0.3383416198107816,"is_anomaly":false,"confidence":0.408522204696704,"method":"SEAD","details":"MAD!:w=0.28,s=0.17 RRCF-fast:w=0.17,s=0.23 RRCF-mid:w=0.18,s=0.64 RRCF-slow:w=0.15,s=0.85 COPOD!:w=0.22,s=0.03"} +{"timestamp":"2026-03-16T22:17:54.532287598Z","score":0.8427386915543422,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=0.92 RRCF-fast:w=0.17,s=0.80 RRCF-mid:w=0.18,s=0.80 RRCF-slow:w=0.15,s=0.83 COPOD!:w=0.22,s=0.82"} +{"timestamp":"2026-03-16T22:18:24.464151808Z","score":0.33371727215255786,"is_anomaly":false,"confidence":0.40293865070864276,"method":"SEAD","details":"MAD!:w=0.28,s=0.14 RRCF-fast:w=0.17,s=0.19 RRCF-mid:w=0.18,s=0.46 RRCF-slow:w=0.15,s=0.72 COPOD!:w=0.22,s=0.32"} +{"timestamp":"2026-03-16T22:18:54.509759229Z","score":0.8395954537417548,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=0.89 RRCF-fast:w=0.17,s=0.72 RRCF-mid:w=0.17,s=0.74 RRCF-slow:w=0.15,s=0.87 COPOD!:w=0.22,s=0.93"} +{"timestamp":"2026-03-16T22:19:24.520846779Z","score":0.44710603008256733,"is_anomaly":false,"confidence":0.536181207218507,"method":"SEAD","details":"MAD!:w=0.28,s=0.13 RRCF-fast:w=0.17,s=0.25 RRCF-mid:w=0.18,s=0.51 RRCF-slow:w=0.15,s=0.65 COPOD!:w=0.22,s=0.82"} +{"timestamp":"2026-03-16T22:19:54.508032264Z","score":0.8219659586402357,"is_anomaly":false,"confidence":0.9857230060503779,"method":"SEAD","details":"MAD!:w=0.28,s=0.93 RRCF-fast:w=0.17,s=0.70 RRCF-mid:w=0.17,s=0.70 RRCF-slow:w=0.15,s=0.81 COPOD!:w=0.22,s=0.89"} +{"timestamp":"2026-03-16T22:20:24.469794583Z","score":0.42120963263459305,"is_anomaly":false,"confidence":0.5051255722862272,"method":"SEAD","details":"MAD:w=0.28,s=0.09 RRCF-fast:w=0.17,s=0.27 RRCF-mid:w=0.18,s=0.44 RRCF-slow:w=0.15,s=0.66 COPOD!:w=0.22,s=0.80"} +{"timestamp":"2026-03-16T22:20:54.509861544Z","score":0.7627914084945308,"is_anomaly":false,"confidence":0.914759342849779,"method":"SEAD","details":"MAD!:w=0.29,s=0.82 RRCF-fast:w=0.17,s=0.65 RRCF-mid:w=0.18,s=0.73 RRCF-slow:w=0.15,s=0.85 COPOD!:w=0.21,s=0.75"} +{"timestamp":"2026-03-16T22:21:24.465320185Z","score":0.3065209095185345,"is_anomaly":false,"confidence":0.3701010765751508,"method":"SEAD","details":"MAD:w=0.29,s=0.08 RRCF-fast:w=0.17,s=0.34 RRCF-mid:w=0.18,s=0.38 RRCF-slow:w=0.15,s=0.68 COPOD!:w=0.21,s=0.26"} +{"timestamp":"2026-03-16T22:21:54.519175918Z","score":0.6776887767847597,"is_anomaly":false,"confidence":0.8182585203237843,"method":"SEAD","details":"MAD!:w=0.29,s=0.74 RRCF-fast:w=0.17,s=0.50 RRCF-mid:w=0.17,s=0.57 RRCF-slow:w=0.15,s=0.85 COPOD!:w=0.21,s=0.70"} +{"timestamp":"2026-03-16T22:22:24.510692865Z","score":0.24278013056613523,"is_anomaly":false,"confidence":0.29313885253282906,"method":"SEAD","details":"MAD!:w=0.29,s=0.19 RRCF-fast:w=0.17,s=0.20 RRCF-mid:w=0.18,s=0.30 RRCF-slow:w=0.15,s=0.55 COPOD!:w=0.21,s=0.09"} +{"timestamp":"2026-03-16T22:22:56.107972737Z","score":0.29703041405002273,"is_anomaly":false,"confidence":0.3586420129972535,"method":"SEAD","details":"MAD!:w=0.29,s=0.19 RRCF-fast:w=0.17,s=0.15 RRCF-mid:w=0.17,s=0.35 RRCF-slow:w=0.15,s=0.61 COPOD!:w=0.21,s=0.29"} +{"timestamp":"2026-03-16T22:23:25.554504911Z","score":0.6988103234086435,"is_anomaly":false,"confidence":0.843761208400465,"method":"SEAD","details":"MAD!:w=0.29,s=0.78 RRCF-fast:w=0.17,s=0.67 RRCF-mid:w=0.17,s=0.61 RRCF-slow:w=0.15,s=0.78 COPOD!:w=0.21,s=0.63"} +{"timestamp":"2026-03-16T22:23:54.515612779Z","score":0.3451616502959949,"is_anomaly":false,"confidence":0.4167568815049436,"method":"SEAD","details":"MAD!:w=0.29,s=0.17 RRCF-fast:w=0.18,s=0.11 RRCF-mid:w=0.17,s=0.23 RRCF-slow:w=0.15,s=0.47 COPOD!:w=0.21,s=0.79"} +{"timestamp":"2026-03-16T22:24:24.512018678Z","score":0.7441338116721656,"is_anomaly":false,"confidence":0.8984859311830602,"method":"SEAD","details":"MAD!:w=0.29,s=0.91 RRCF-fast:w=0.18,s=0.75 RRCF-mid:w=0.18,s=0.57 RRCF-slow:w=0.15,s=0.68 COPOD!:w=0.21,s=0.70"} +{"timestamp":"2026-03-16T22:24:54.518162947Z","score":0.7266140997897671,"is_anomaly":false,"confidence":0.8817828215103762,"method":"SEAD","details":"MAD!:w=0.29,s=1.00 RRCF-fast:w=0.18,s=0.65 RRCF-mid!:w=0.18,s=0.95 RRCF-slow!:w=0.15,s=0.97 COPOD!:w=0.21,s=0.07"} +{"timestamp":"2026-03-16T22:25:24.510185655Z","score":0.6275882675060743,"is_anomaly":false,"confidence":0.7616099844861673,"method":"SEAD","details":"MAD!:w=0.29,s=0.73 RRCF-fast:w=0.18,s=0.64 RRCF-mid:w=0.18,s=0.56 RRCF-slow:w=0.15,s=0.71 COPOD!:w=0.22,s=0.48"} +{"timestamp":"2026-03-16T22:25:54.49936569Z","score":0.9257952986834113,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=1.00 RRCF-fast!:w=0.18,s=0.94 RRCF-mid!:w=0.18,s=0.96 RRCF-slow!:w=0.15,s=0.97 COPOD!:w=0.22,s=0.76"} +{"timestamp":"2026-03-16T22:26:24.51009026Z","score":0.6856429091088994,"is_anomaly":false,"confidence":0.8278625402942631,"method":"SEAD","details":"MAD!:w=0.28,s=0.73 RRCF-fast:w=0.18,s=0.78 RRCF-mid:w=0.18,s=0.78 RRCF-slow:w=0.15,s=0.92 COPOD!:w=0.22,s=0.32"} +{"timestamp":"2026-03-16T22:26:54.512219916Z","score":0.5086338555060237,"is_anomaly":false,"confidence":0.6141373448259534,"method":"SEAD","details":"MAD!:w=0.28,s=0.29 RRCF-fast:w=0.18,s=0.45 RRCF-mid:w=0.18,s=0.41 RRCF-slow:w=0.15,s=0.81 COPOD!:w=0.22,s=0.72"} +{"timestamp":"2026-03-16T22:27:24.469044826Z","score":0.3908213021110858,"is_anomaly":false,"confidence":0.4718874966377095,"method":"SEAD","details":"MAD!:w=0.28,s=0.29 RRCF-fast:w=0.18,s=0.49 RRCF-mid:w=0.18,s=0.43 RRCF-slow:w=0.15,s=0.77 COPOD!:w=0.22,s=0.15"} +{"timestamp":"2026-03-16T22:27:54.507935424Z","score":0.9550025391619357,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=1.00 RRCF-fast!:w=0.18,s=0.91 RRCF-mid:w=0.18,s=0.92 RRCF-slow!:w=0.15,s=0.97 COPOD!:w=0.22,s=0.96"} +{"timestamp":"2026-03-16T22:28:24.505555058Z","score":0.9471359866540604,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=1.00 RRCF-fast!:w=0.18,s=0.95 RRCF-mid!:w=0.18,s=0.97 RRCF-slow!:w=0.15,s=1.00 COPOD!:w=0.22,s=0.82"} +{"timestamp":"2026-03-16T22:28:54.508779239Z","score":0.6186317702885366,"is_anomaly":false,"confidence":0.7418793465070794,"method":"SEAD","details":"MAD!:w=0.28,s=0.44 RRCF-fast!:w=0.18,s=0.94 RRCF-mid!:w=0.18,s=0.97 RRCF-slow!:w=0.15,s=0.97 COPOD!:w=0.22,s=0.08"} +{"timestamp":"2026-03-16T22:29:24.465665882Z","score":0.6380177476492629,"is_anomaly":false,"confidence":0.7651275159456918,"method":"SEAD","details":"MAD!:w=0.29,s=0.40 RRCF-fast:w=0.17,s=0.75 RRCF-mid:w=0.17,s=0.80 RRCF-slow:w=0.14,s=0.92 COPOD!:w=0.22,s=0.55"} +{"timestamp":"2026-03-16T22:29:54.508109623Z","score":0.7135451808467451,"is_anomaly":false,"confidence":0.855701982817594,"method":"SEAD","details":"MAD!:w=0.29,s=0.72 RRCF-fast:w=0.17,s=0.70 RRCF-mid:w=0.17,s=0.74 RRCF-slow:w=0.14,s=0.92 COPOD!:w=0.22,s=0.56"} +{"timestamp":"2026-03-16T22:30:24.505299828Z","score":0.9053153955351316,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=0.99 RRCF-fast:w=0.17,s=0.84 RRCF-mid:w=0.17,s=0.84 RRCF-slow:w=0.14,s=0.94 COPOD!:w=0.22,s=0.88"} +{"timestamp":"2026-03-16T22:30:54.512982358Z","score":0.8397236696185667,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=0.97 RRCF-fast!:w=0.17,s=0.90 RRCF-mid:w=0.17,s=0.77 RRCF-slow:w=0.14,s=0.93 COPOD!:w=0.22,s=0.62"} +{"timestamp":"2026-03-16T22:31:24.559308782Z","score":0.5362781928732349,"is_anomaly":false,"confidence":0.6387340361161422,"method":"SEAD","details":"MAD!:w=0.29,s=0.29 RRCF-fast:w=0.17,s=0.74 RRCF-mid:w=0.17,s=0.63 RRCF-slow:w=0.14,s=0.89 COPOD!:w=0.22,s=0.40"} +{"timestamp":"2026-03-16T22:31:54.46865469Z","score":0.48820208617748323,"is_anomaly":false,"confidence":0.5814729986944949,"method":"SEAD","details":"MAD!:w=0.29,s=0.29 RRCF-fast:w=0.17,s=0.43 RRCF-mid:w=0.17,s=0.51 RRCF-slow:w=0.14,s=0.84 COPOD!:w=0.22,s=0.56"} +{"timestamp":"2026-03-16T22:32:24.50707277Z","score":0.7325140801898951,"is_anomaly":false,"confidence":0.8724607510978779,"method":"SEAD","details":"MAD!:w=0.29,s=0.81 RRCF-fast:w=0.17,s=0.56 RRCF-mid:w=0.17,s=0.72 RRCF-slow:w=0.14,s=0.84 COPOD!:w=0.22,s=0.69"} +{"timestamp":"2026-03-16T22:32:54.466828818Z","score":0.7271738138437308,"is_anomaly":false,"confidence":0.8661002279169047,"method":"SEAD","details":"MAD!:w=0.29,s=0.96 RRCF-fast:w=0.17,s=0.69 RRCF-mid:w=0.17,s=0.70 RRCF-slow:w=0.14,s=0.92 COPOD!:w=0.22,s=0.35"} +{"timestamp":"2026-03-16T22:33:24.513582349Z","score":0.35620742568499647,"is_anomaly":false,"confidence":0.4242607842830933,"method":"SEAD","details":"MAD!:w=0.29,s=0.29 RRCF-fast:w=0.17,s=0.56 RRCF-mid:w=0.17,s=0.36 RRCF-slow:w=0.14,s=0.76 COPOD!:w=0.23,s=0.03"} +{"timestamp":"2026-03-16T22:33:54.510752301Z","score":0.44818834933787915,"is_anomaly":false,"confidence":0.5338146453038491,"method":"SEAD","details":"MAD!:w=0.29,s=0.26 RRCF-fast:w=0.17,s=0.36 RRCF-mid:w=0.17,s=0.35 RRCF-slow:w=0.14,s=0.74 COPOD!:w=0.23,s=0.64"} +{"timestamp":"2026-03-16T22:34:24.513022065Z","score":0.8625150742989287,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=0.88 RRCF-fast!:w=0.17,s=0.90 RRCF-mid:w=0.17,s=0.68 RRCF-slow:w=0.14,s=0.82 COPOD!:w=0.23,s=0.98"} +{"timestamp":"2026-03-16T22:34:54.468294758Z","score":0.5739730114855263,"is_anomaly":false,"confidence":0.6836304424083631,"method":"SEAD","details":"MAD!:w=0.29,s=0.26 RRCF-fast!:w=0.17,s=0.90 RRCF-mid:w=0.17,s=0.41 RRCF-slow:w=0.14,s=0.69 COPOD!:w=0.23,s=0.79"} +{"timestamp":"2026-03-16T22:35:24.508579848Z","score":0.8540567958524267,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=0.84 RRCF-fast:w=0.17,s=0.85 RRCF-mid!:w=0.17,s=0.93 RRCF-slow:w=0.14,s=0.72 COPOD!:w=0.22,s=0.90"} +{"timestamp":"2026-03-16T22:35:54.965391726Z","score":0.4329159102908069,"is_anomaly":false,"confidence":0.5155456800300189,"method":"SEAD","details":"MAD!:w=0.29,s=0.12 RRCF-fast:w=0.17,s=0.63 RRCF-mid:w=0.17,s=0.26 RRCF-slow:w=0.14,s=0.56 COPOD!:w=0.22,s=0.74"} +{"timestamp":"2026-03-16T22:36:24.520136638Z","score":0.40114283695031494,"is_anomaly":false,"confidence":0.47770814550520974,"method":"SEAD","details":"MAD!:w=0.29,s=0.12 RRCF-fast:w=0.17,s=0.43 RRCF-mid:w=0.17,s=0.32 RRCF-slow:w=0.14,s=0.62 COPOD!:w=0.22,s=0.68"} +{"timestamp":"2026-03-16T22:36:56.394485406Z","score":0.2517038866590245,"is_anomaly":false,"confidence":0.2997460900123938,"method":"SEAD","details":"MAD!:w=0.29,s=0.14 RRCF-fast:w=0.17,s=0.36 RRCF-mid:w=0.17,s=0.27 RRCF-slow:w=0.14,s=0.58 COPOD!:w=0.22,s=0.10"} +{"timestamp":"2026-03-16T22:37:24.524098481Z","score":0.33982084867083223,"is_anomaly":false,"confidence":0.40468175539840545,"method":"SEAD","details":"MAD!:w=0.30,s=0.14 RRCF-fast:w=0.17,s=0.45 RRCF-mid:w=0.17,s=0.21 RRCF-slow:w=0.14,s=0.58 COPOD!:w=0.22,s=0.47"} +{"timestamp":"2026-03-16T22:37:54.552625705Z","score":0.7542766388678783,"is_anomaly":false,"confidence":0.8983810423297991,"method":"SEAD","details":"MAD!:w=0.30,s=0.94 RRCF-fast:w=0.17,s=0.62 RRCF-mid:w=0.17,s=0.56 RRCF-slow:w=0.14,s=0.73 COPOD!:w=0.22,s=0.79"} +{"timestamp":"2026-03-16T22:38:24.517950822Z","score":0.2986004685252064,"is_anomaly":false,"confidence":0.3556480292913196,"method":"SEAD","details":"MAD!:w=0.30,s=0.13 RRCF-fast:w=0.17,s=0.21 RRCF-mid:w=0.18,s=0.28 RRCF-slow:w=0.14,s=0.55 COPOD!:w=0.22,s=0.44"} +{"timestamp":"2026-03-16T22:38:54.508203931Z","score":0.945532839030066,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=0.95 RRCF-fast!:w=0.17,s=0.97 RRCF-mid!:w=0.18,s=0.98 RRCF-slow:w=0.14,s=0.87 COPOD!:w=0.22,s=0.94"} +{"timestamp":"2026-03-16T22:39:24.513576219Z","score":0.5482518961747211,"is_anomaly":false,"confidence":0.6528956084133692,"method":"SEAD","details":"MAD:w=0.30,s=0.07 RRCF-fast!:w=0.17,s=0.94 RRCF-mid!:w=0.18,s=0.95 RRCF-slow:w=0.14,s=0.78 COPOD!:w=0.22,s=0.43"} +{"timestamp":"2026-03-16T22:39:54.511562881Z","score":0.8945595045472134,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=0.95 RRCF-fast:w=0.17,s=0.89 RRCF-mid:w=0.17,s=0.86 RRCF-slow:w=0.14,s=0.70 COPOD!:w=0.22,s=0.96"} +{"timestamp":"2026-03-16T22:40:24.51161326Z","score":0.43982205632835525,"is_anomaly":false,"confidence":0.5218961235981109,"method":"SEAD","details":"MAD!:w=0.30,s=0.13 RRCF-fast:w=0.17,s=0.81 RRCF-mid:w=0.17,s=0.75 RRCF-slow:w=0.14,s=0.52 COPOD!:w=0.22,s=0.28"} +{"timestamp":"2026-03-16T22:40:54.510103474Z","score":0.7775591803497796,"is_anomaly":false,"confidence":0.9226575071753903,"method":"SEAD","details":"MAD!:w=0.30,s=0.81 RRCF-fast:w=0.17,s=0.71 RRCF-mid:w=0.17,s=0.79 RRCF-slow:w=0.14,s=0.70 COPOD!:w=0.22,s=0.83"} +{"timestamp":"2026-03-16T22:41:24.471232706Z","score":0.3795343113754386,"is_anomaly":false,"confidence":0.4519752450801309,"method":"SEAD","details":"MAD!:w=0.30,s=0.13 RRCF-fast:w=0.17,s=0.48 RRCF-mid:w=0.17,s=0.58 RRCF-slow:w=0.14,s=0.38 COPOD!:w=0.22,s=0.48"} +{"timestamp":"2026-03-16T22:41:54.501633903Z","score":0.744306662892067,"is_anomaly":false,"confidence":0.8863709453732065,"method":"SEAD","details":"MAD!:w=0.30,s=0.77 RRCF-fast:w=0.17,s=0.86 RRCF-mid:w=0.17,s=0.76 RRCF-slow:w=0.14,s=0.75 COPOD!:w=0.22,s=0.60"} +{"timestamp":"2026-03-16T22:42:24.52594174Z","score":0.29457639376527234,"is_anomaly":false,"confidence":0.35080158440583165,"method":"SEAD","details":"MAD!:w=0.30,s=0.14 RRCF-fast:w=0.17,s=0.41 RRCF-mid:w=0.17,s=0.49 RRCF-slow:w=0.14,s=0.28 COPOD!:w=0.22,s=0.28"} +{"timestamp":"2026-03-16T22:42:54.517087283Z","score":0.23259807986247757,"is_anomaly":false,"confidence":0.2769935971533733,"method":"SEAD","details":"MAD!:w=0.31,s=0.13 RRCF-fast:w=0.17,s=0.20 RRCF-mid:w=0.17,s=0.46 RRCF-slow:w=0.14,s=0.41 COPOD!:w=0.22,s=0.12"} +{"timestamp":"2026-03-16T22:43:24.513629392Z","score":0.26226976966257465,"is_anomaly":false,"confidence":0.3123286613817938,"method":"SEAD","details":"MAD!:w=0.31,s=0.25 RRCF-fast:w=0.17,s=0.21 RRCF-mid:w=0.17,s=0.53 RRCF-slow:w=0.14,s=0.37 COPOD!:w=0.22,s=0.05"} +{"timestamp":"2026-03-16T22:43:54.468583451Z","score":0.285942170046129,"is_anomaly":false,"confidence":0.340519364157038,"method":"SEAD","details":"MAD!:w=0.31,s=0.20 RRCF-fast:w=0.17,s=0.53 RRCF-mid:w=0.17,s=0.40 RRCF-slow:w=0.14,s=0.37 COPOD!:w=0.22,s=0.08"} +{"timestamp":"2026-03-16T22:44:24.509538666Z","score":0.6913627245466094,"is_anomaly":false,"confidence":0.8233217063663951,"method":"SEAD","details":"MAD!:w=0.31,s=0.89 RRCF-fast:w=0.17,s=0.60 RRCF-mid:w=0.17,s=0.61 RRCF-slow:w=0.14,s=0.51 COPOD!:w=0.22,s=0.66"} +{"timestamp":"2026-03-16T22:44:54.468409942Z","score":0.3734014559140776,"is_anomaly":false,"confidence":0.4447397306047461,"method":"SEAD","details":"MAD!:w=0.30,s=0.20 RRCF-fast:w=0.17,s=0.48 RRCF-mid:w=0.17,s=0.38 RRCF-slow:w=0.14,s=0.22 COPOD!:w=0.22,s=0.62"} +{"timestamp":"2026-03-16T22:45:24.511818947Z","score":0.7100969318182395,"is_anomaly":false,"confidence":0.8457608109400901,"method":"SEAD","details":"MAD!:w=0.31,s=0.90 RRCF-fast:w=0.17,s=0.35 RRCF-mid:w=0.17,s=0.63 RRCF-slow:w=0.14,s=0.55 COPOD!:w=0.22,s=0.89"} +{"timestamp":"2026-03-16T22:45:54.512807596Z","score":0.2688932935021235,"is_anomaly":false,"confidence":0.32026530432456396,"method":"SEAD","details":"MAD!:w=0.30,s=0.13 RRCF-fast:w=0.17,s=0.22 RRCF-mid:w=0.17,s=0.29 RRCF-slow:w=0.14,s=0.27 COPOD!:w=0.22,s=0.47"} +{"timestamp":"2026-03-16T22:46:24.511890727Z","score":0.8701230615787743,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=0.92 RRCF-fast:w=0.17,s=0.87 RRCF-mid!:w=0.17,s=0.88 RRCF-slow:w=0.14,s=0.80 COPOD!:w=0.22,s=0.84"} +{"timestamp":"2026-03-16T22:46:54.468095605Z","score":0.4429461357654717,"is_anomaly":false,"confidence":0.527490354019286,"method":"SEAD","details":"MAD!:w=0.31,s=0.11 RRCF-fast:w=0.17,s=0.68 RRCF-mid:w=0.17,s=0.72 RRCF-slow:w=0.14,s=0.39 COPOD!:w=0.22,s=0.54"} +{"timestamp":"2026-03-16T22:47:24.561486351Z","score":0.6838474218171988,"is_anomaly":false,"confidence":0.8143719732561873,"method":"SEAD","details":"MAD!:w=0.31,s=0.80 RRCF-fast:w=0.17,s=0.52 RRCF-mid:w=0.17,s=0.52 RRCF-slow:w=0.14,s=0.58 COPOD!:w=0.22,s=0.85"} +{"timestamp":"2026-03-16T22:47:55.382071608Z","score":0.2535062798657443,"is_anomaly":false,"confidence":0.3019386047601426,"method":"SEAD","details":"MAD:w=0.31,s=0.04 RRCF-fast:w=0.17,s=0.23 RRCF-mid:w=0.17,s=0.39 RRCF-slow:w=0.14,s=0.23 COPOD!:w=0.22,s=0.48"} +{"timestamp":"2026-03-16T22:48:24.50922094Z","score":0.6571891589649062,"is_anomaly":false,"confidence":0.7827450184920204,"method":"SEAD","details":"MAD!:w=0.31,s=0.96 RRCF-fast:w=0.17,s=0.48 RRCF-mid:w=0.17,s=0.74 RRCF-slow:w=0.14,s=0.64 COPOD!:w=0.22,s=0.31"} +{"timestamp":"2026-03-16T22:48:54.511505452Z","score":0.2574615238544264,"is_anomaly":false,"confidence":0.30664949733472135,"method":"SEAD","details":"MAD!:w=0.31,s=0.13 RRCF-fast:w=0.17,s=0.12 RRCF-mid:w=0.17,s=0.22 RRCF-slow:w=0.14,s=0.26 COPOD!:w=0.22,s=0.56"} +{"timestamp":"2026-03-16T22:49:24.468106735Z","score":0.24866367667948036,"is_anomaly":false,"confidence":0.29617082318786003,"method":"SEAD","details":"MAD!:w=0.31,s=0.13 RRCF-fast:w=0.17,s=0.15 RRCF-mid:w=0.17,s=0.41 RRCF-slow:w=0.14,s=0.30 COPOD!:w=0.22,s=0.33"} +{"timestamp":"2026-03-16T22:49:54.513395257Z","score":0.426277175266526,"is_anomaly":false,"confidence":0.5077173457368929,"method":"SEAD","details":"MAD!:w=0.31,s=0.70 RRCF-fast:w=0.17,s=0.35 RRCF-mid:w=0.17,s=0.39 RRCF-slow:w=0.14,s=0.30 COPOD!:w=0.22,s=0.20"} +{"timestamp":"2026-03-16T22:50:24.821250891Z","score":0.29167851548952783,"is_anomaly":false,"confidence":0.34740363848997585,"method":"SEAD","details":"MAD!:w=0.31,s=0.26 RRCF-fast:w=0.17,s=0.27 RRCF-mid:w=0.17,s=0.26 RRCF-slow:w=0.14,s=0.31 COPOD!:w=0.22,s=0.37"} +{"timestamp":"2026-03-16T22:50:54.554687705Z","score":0.9730528595044726,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=0.96 RRCF-fast!:w=0.17,s=0.96 RRCF-mid!:w=0.17,s=0.99 RRCF-slow!:w=0.14,s=0.97 COPOD!:w=0.22,s=0.99"} +{"timestamp":"2026-03-16T22:51:24.518854712Z","score":0.5651976278493223,"is_anomaly":false,"confidence":0.6731785234549011,"method":"SEAD","details":"MAD!:w=0.31,s=0.16 RRCF-fast!:w=0.17,s=0.97 RRCF-mid!:w=0.17,s=0.97 RRCF-slow!:w=0.14,s=0.96 COPOD!:w=0.22,s=0.26"} +{"timestamp":"2026-03-16T22:51:54.552877336Z","score":0.8919242004196897,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=0.88 RRCF-fast:w=0.17,s=0.89 RRCF-mid:w=0.17,s=0.91 RRCF-slow:w=0.14,s=0.84 COPOD!:w=0.22,s=0.94"} +{"timestamp":"2026-03-16T22:52:24.516905772Z","score":0.470054499036868,"is_anomaly":false,"confidence":0.5597728348545707,"method":"SEAD","details":"MAD!:w=0.31,s=0.12 RRCF-fast:w=0.17,s=0.72 RRCF-mid:w=0.17,s=0.88 RRCF-slow:w=0.14,s=0.86 COPOD!:w=0.22,s=0.22"} +{"timestamp":"2026-03-16T22:52:54.557648981Z","score":0.9010857095079259,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=0.91 RRCF-fast:w=0.17,s=0.88 RRCF-mid:w=0.17,s=0.86 RRCF-slow:w=0.14,s=0.85 COPOD!:w=0.22,s=0.97"} +{"timestamp":"2026-03-16T22:53:24.514910123Z","score":0.4178214665332962,"is_anomaly":false,"confidence":0.49579006009878196,"method":"SEAD","details":"MAD!:w=0.31,s=0.26 RRCF-fast:w=0.17,s=0.54 RRCF-mid:w=0.17,s=0.70 RRCF-slow:w=0.14,s=0.68 COPOD!:w=0.22,s=0.17"} +{"timestamp":"2026-03-16T22:53:54.507129138Z","score":0.8077581968447348,"is_anomaly":false,"confidence":0.9584918847797417,"method":"SEAD","details":"MAD!:w=0.31,s=0.82 RRCF-fast:w=0.17,s=0.71 RRCF-mid:w=0.16,s=0.77 RRCF-slow:w=0.14,s=0.73 COPOD!:w=0.22,s=0.94"} +{"timestamp":"2026-03-16T22:54:24.467648972Z","score":0.4331717545050251,"is_anomaly":false,"confidence":0.5140048259871464,"method":"SEAD","details":"MAD!:w=0.31,s=0.16 RRCF-fast:w=0.17,s=0.56 RRCF-mid:w=0.17,s=0.61 RRCF-slow:w=0.14,s=0.58 COPOD!:w=0.22,s=0.51"} +{"timestamp":"2026-03-16T22:54:54.519701099Z","score":0.7719492849929914,"is_anomaly":false,"confidence":0.9192896579223961,"method":"SEAD","details":"MAD!:w=0.32,s=0.97 RRCF-fast:w=0.17,s=0.74 RRCF-mid:w=0.16,s=0.78 RRCF-slow:w=0.13,s=0.76 COPOD!:w=0.22,s=0.51"} +{"timestamp":"2026-03-16T22:55:24.566768616Z","score":0.3595576947536391,"is_anomaly":false,"confidence":0.4281857327148625,"method":"SEAD","details":"MAD!:w=0.31,s=0.25 RRCF-fast:w=0.17,s=0.35 RRCF-mid:w=0.16,s=0.57 RRCF-slow:w=0.13,s=0.55 COPOD!:w=0.22,s=0.24"} +{"timestamp":"2026-03-16T22:55:54.521000195Z","score":0.38295413123596395,"is_anomaly":false,"confidence":0.45604779892642033,"method":"SEAD","details":"MAD!:w=0.31,s=0.25 RRCF-fast:w=0.17,s=0.30 RRCF-mid:w=0.16,s=0.51 RRCF-slow:w=0.13,s=0.48 COPOD!:w=0.22,s=0.47"} +{"timestamp":"2026-03-16T22:56:24.516277981Z","score":0.546050941692634,"is_anomaly":false,"confidence":0.6502745622743615,"method":"SEAD","details":"MAD!:w=0.32,s=0.69 RRCF-fast:w=0.17,s=0.40 RRCF-mid:w=0.16,s=0.62 RRCF-slow:w=0.13,s=0.51 COPOD!:w=0.22,s=0.41"} +{"timestamp":"2026-03-16T22:56:54.516527826Z","score":0.27054845925179294,"is_anomaly":false,"confidence":0.3221874874322478,"method":"SEAD","details":"MAD!:w=0.31,s=0.26 RRCF-fast:w=0.17,s=0.08 RRCF-mid:w=0.16,s=0.49 RRCF-slow:w=0.13,s=0.47 COPOD!:w=0.22,s=0.14"} +{"timestamp":"2026-03-16T22:57:25.888624188Z","score":0.6498640786986641,"is_anomaly":false,"confidence":0.7739022993050276,"method":"SEAD","details":"MAD!:w=0.31,s=0.92 RRCF-fast:w=0.17,s=0.48 RRCF-mid:w=0.16,s=0.62 RRCF-slow:w=0.13,s=0.58 COPOD!:w=0.22,s=0.46"} +{"timestamp":"2026-03-16T22:57:54.515411707Z","score":0.24996950409285168,"is_anomaly":false,"confidence":0.29772612867165194,"method":"SEAD","details":"MAD!:w=0.31,s=0.11 RRCF-fast:w=0.17,s=0.33 RRCF-mid:w=0.16,s=0.45 RRCF-slow:w=0.13,s=0.38 COPOD!:w=0.22,s=0.16"} +{"timestamp":"2026-03-16T22:58:24.510792436Z","score":0.654225818666867,"is_anomaly":false,"confidence":0.7792155326130383,"method":"SEAD","details":"MAD!:w=0.31,s=0.87 RRCF-fast:w=0.17,s=0.43 RRCF-mid:w=0.16,s=0.60 RRCF-slow:w=0.13,s=0.58 COPOD!:w=0.22,s=0.60"} +{"timestamp":"2026-03-16T22:58:54.468975733Z","score":0.236726778941744,"is_anomaly":false,"confidence":0.2819533834857532,"method":"SEAD","details":"MAD:w=0.31,s=0.05 RRCF-fast:w=0.17,s=0.31 RRCF-mid:w=0.16,s=0.26 RRCF-slow:w=0.13,s=0.36 COPOD!:w=0.22,s=0.35"} +{"timestamp":"2026-03-16T22:59:24.560250674Z","score":0.9042937080829119,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=0.82 RRCF-fast!:w=0.17,s=0.99 RRCF-mid!:w=0.16,s=1.00 RRCF-slow!:w=0.13,s=1.00 COPOD!:w=0.22,s=0.83"} +{"timestamp":"2026-03-16T22:59:54.468205521Z","score":0.49513844796111955,"is_anomaly":false,"confidence":0.589644505538387,"method":"SEAD","details":"MAD!:w=0.31,s=0.10 RRCF-fast!:w=0.17,s=0.95 RRCF-mid!:w=0.16,s=0.97 RRCF-slow!:w=0.13,s=1.00 COPOD!:w=0.22,s=0.07"} +{"timestamp":"2026-03-16T23:00:24.510819463Z","score":0.8923476463254286,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.32,s=0.93 RRCF-fast:w=0.17,s=0.83 RRCF-mid!:w=0.16,s=0.92 RRCF-slow!:w=0.13,s=0.95 COPOD!:w=0.22,s=0.82"} +{"timestamp":"2026-03-16T23:00:54.468319823Z","score":0.5319113857222034,"is_anomaly":false,"confidence":0.6311700068512924,"method":"SEAD","details":"MAD:w=0.32,s=0.05 RRCF-fast:w=0.17,s=0.70 RRCF-mid:w=0.16,s=0.85 RRCF-slow!:w=0.13,s=0.94 COPOD!:w=0.22,s=0.61"} +{"timestamp":"2026-03-16T23:01:24.51906711Z","score":0.7575467136387838,"is_anomaly":false,"confidence":0.9021380973849282,"method":"SEAD","details":"MAD!:w=0.32,s=0.98 RRCF-fast:w=0.17,s=0.77 RRCF-mid:w=0.16,s=0.80 RRCF-slow!:w=0.13,s=0.94 COPOD!:w=0.22,s=0.29"} +{"timestamp":"2026-03-16T23:01:54.509696701Z","score":0.42252840648707685,"is_anomaly":false,"confidence":0.503175534731568,"method":"SEAD","details":"MAD!:w=0.32,s=0.21 RRCF-fast:w=0.17,s=0.54 RRCF-mid:w=0.16,s=0.72 RRCF-slow:w=0.13,s=0.86 COPOD!:w=0.23,s=0.17"} +{"timestamp":"2026-03-16T23:02:24.511661408Z","score":0.4215135316275468,"is_anomaly":false,"confidence":0.501966952794142,"method":"SEAD","details":"MAD!:w=0.32,s=0.21 RRCF-fast:w=0.17,s=0.64 RRCF-mid:w=0.16,s=0.72 RRCF-slow:w=0.13,s=0.84 COPOD!:w=0.23,s=0.10"} +{"timestamp":"2026-03-16T23:02:54.587853215Z","score":0.7761235856960061,"is_anomaly":false,"confidence":0.9242606988183981,"method":"SEAD","details":"MAD!:w=0.32,s=0.72 RRCF-fast:w=0.16,s=0.72 RRCF-mid:w=0.16,s=0.71 RRCF-slow:w=0.13,s=0.84 COPOD!:w=0.23,s=0.90"} +{"timestamp":"2026-03-16T23:03:24.513721635Z","score":0.4182251463895709,"is_anomaly":false,"confidence":0.49805092022658376,"method":"SEAD","details":"MAD!:w=0.32,s=0.24 RRCF-fast:w=0.16,s=0.47 RRCF-mid:w=0.16,s=0.59 RRCF-slow:w=0.13,s=0.79 COPOD!:w=0.23,s=0.31"} +{"timestamp":"2026-03-16T23:03:54.507932374Z","score":0.7000223894700961,"is_anomaly":false,"confidence":0.833634223729899,"method":"SEAD","details":"MAD!:w=0.32,s=0.87 RRCF-fast:w=0.16,s=0.52 RRCF-mid:w=0.16,s=0.66 RRCF-slow:w=0.13,s=0.83 COPOD!:w=0.23,s=0.54"} +{"timestamp":"2026-03-16T23:04:24.518416527Z","score":0.7023638346534815,"is_anomaly":false,"confidence":0.8364225757415186,"method":"SEAD","details":"MAD!:w=0.32,s=0.95 RRCF-fast:w=0.16,s=0.68 RRCF-mid:w=0.16,s=0.85 RRCF-slow:w=0.13,s=0.81 COPOD!:w=0.23,s=0.21"} +{"timestamp":"2026-03-16T23:04:54.555536344Z","score":0.7263139420743858,"is_anomaly":false,"confidence":0.8650760778151945,"method":"SEAD","details":"MAD!:w=0.32,s=0.68 RRCF-fast:w=0.16,s=0.67 RRCF-mid:w=0.16,s=0.64 RRCF-slow:w=0.13,s=0.79 COPOD!:w=0.23,s=0.86"} +{"timestamp":"2026-03-16T23:05:24.469203679Z","score":0.31877043695789703,"is_anomaly":false,"confidence":0.37967146622490566,"method":"SEAD","details":"MAD:w=0.32,s=0.01 RRCF-fast:w=0.16,s=0.41 RRCF-mid:w=0.16,s=0.64 RRCF-slow:w=0.13,s=0.71 COPOD!:w=0.23,s=0.25"} +{"timestamp":"2026-03-16T23:05:54.509885107Z","score":0.8093156544959347,"is_anomaly":false,"confidence":0.9639352510654093,"method":"SEAD","details":"MAD!:w=0.32,s=0.68 RRCF-fast:w=0.16,s=0.82 RRCF-mid:w=0.16,s=0.81 RRCF-slow!:w=0.13,s=0.90 COPOD!:w=0.23,s=0.94"} +{"timestamp":"2026-03-16T23:06:24.467760739Z","score":0.39866997209467603,"is_anomaly":false,"confidence":0.47483579183040703,"method":"SEAD","details":"MAD:w=0.32,s=0.07 RRCF-fast:w=0.16,s=0.43 RRCF-mid:w=0.16,s=0.60 RRCF-slow:w=0.13,s=0.75 COPOD!:w=0.23,s=0.51"} +{"timestamp":"2026-03-16T23:06:54.518846443Z","score":0.2605539916318493,"is_anomaly":false,"confidence":0.3103327804726194,"method":"SEAD","details":"MAD:w=0.33,s=0.08 RRCF-fast:w=0.16,s=0.20 RRCF-mid:w=0.15,s=0.32 RRCF-slow:w=0.13,s=0.59 COPOD!:w=0.23,s=0.33"} +{"timestamp":"2026-03-16T23:07:24.511995363Z","score":0.30337649921142423,"is_anomaly":false,"confidence":0.36133651970051955,"method":"SEAD","details":"MAD!:w=0.33,s=0.36 RRCF-fast:w=0.16,s=0.21 RRCF-mid:w=0.15,s=0.36 RRCF-slow:w=0.13,s=0.56 COPOD!:w=0.23,s=0.12"} +{"timestamp":"2026-03-16T23:07:54.46847569Z","score":0.2721700935092992,"is_anomaly":false,"confidence":0.3263934715432949,"method":"SEAD","details":"MAD!:w=0.33,s=0.28 RRCF-fast:w=0.16,s=0.16 RRCF-mid:w=0.15,s=0.41 RRCF-slow:w=0.13,s=0.59 COPOD!:w=0.23,s=0.08"} +{"timestamp":"2026-03-16T23:08:24.51282687Z","score":0.6907525386782626,"is_anomaly":false,"confidence":0.8283684521306123,"method":"SEAD","details":"MAD!:w=0.33,s=0.67 RRCF-fast:w=0.16,s=0.57 RRCF-mid:w=0.15,s=0.74 RRCF-slow:w=0.12,s=0.67 COPOD!:w=0.23,s=0.79"} +{"timestamp":"2026-03-16T23:08:54.51419221Z","score":0.3518295639070027,"is_anomaly":false,"confidence":0.421923185146889,"method":"SEAD","details":"MAD!:w=0.33,s=0.28 RRCF-fast:w=0.16,s=0.37 RRCF-mid:w=0.15,s=0.38 RRCF-slow:w=0.12,s=0.51 COPOD!:w=0.23,s=0.34"} +{"timestamp":"2026-03-16T23:09:24.510616316Z","score":0.6148960870246536,"is_anomaly":false,"confidence":0.7373994177486933,"method":"SEAD","details":"MAD!:w=0.33,s=0.67 RRCF-fast:w=0.16,s=0.49 RRCF-mid:w=0.15,s=0.55 RRCF-slow:w=0.12,s=0.72 COPOD!:w=0.23,s=0.61"} +{"timestamp":"2026-03-16T23:09:54.477032793Z","score":0.23006447168998545,"is_anomaly":false,"confidence":0.27589931217443914,"method":"SEAD","details":"MAD:w=0.33,s=0.01 RRCF-fast:w=0.17,s=0.25 RRCF-mid:w=0.15,s=0.31 RRCF-slow:w=0.12,s=0.46 COPOD!:w=0.23,s=0.35"} +{"timestamp":"2026-03-16T23:10:24.51088597Z","score":0.6502313230043412,"is_anomaly":false,"confidence":0.7797743539163869,"method":"SEAD","details":"MAD!:w=0.33,s=0.67 RRCF-fast:w=0.16,s=0.52 RRCF-mid:w=0.15,s=0.54 RRCF-slow:w=0.12,s=0.52 COPOD!:w=0.23,s=0.87"} +{"timestamp":"2026-03-16T23:10:54.517052255Z","score":0.13356382946630357,"is_anomaly":false,"confidence":0.16017322627195246,"method":"SEAD","details":"MAD:w=0.33,s=0.01 RRCF-fast:w=0.17,s=0.08 RRCF-mid:w=0.15,s=0.22 RRCF-slow:w=0.12,s=0.29 COPOD!:w=0.23,s=0.20"} +{"timestamp":"2026-03-16T23:11:24.735399363Z","score":0.2447297324221227,"is_anomaly":false,"confidence":0.2954928509824854,"method":"SEAD","details":"MAD:w=0.33,s=0.01 RRCF-fast:w=0.17,s=0.05 RRCF-mid:w=0.15,s=0.38 RRCF-slow:w=0.12,s=0.45 COPOD!:w=0.23,s=0.52"} +{"timestamp":"2026-03-16T23:11:54.559409255Z","score":0.47558566459793317,"is_anomaly":false,"confidence":0.5742341256519092,"method":"SEAD","details":"MAD!:w=0.33,s=0.66 RRCF-fast:w=0.17,s=0.23 RRCF-mid:w=0.15,s=0.39 RRCF-slow:w=0.12,s=0.42 COPOD!:w=0.23,s=0.46"} +{"timestamp":"2026-03-16T23:12:24.468893557Z","score":0.14440138259146756,"is_anomaly":false,"confidence":0.17435387112738168,"method":"SEAD","details":"MAD:w=0.33,s=0.02 RRCF-fast:w=0.17,s=0.15 RRCF-mid:w=0.15,s=0.19 RRCF-slow:w=0.12,s=0.17 COPOD!:w=0.23,s=0.27"} +{"timestamp":"2026-03-16T23:12:54.511321436Z","score":0.6954123863319063,"is_anomaly":false,"confidence":0.8396584534784259,"method":"SEAD","details":"MAD!:w=0.33,s=0.66 RRCF-fast:w=0.17,s=0.44 RRCF-mid:w=0.15,s=0.65 RRCF-slow:w=0.12,s=0.66 COPOD!:w=0.23,s=0.99"} +{"timestamp":"2026-03-16T23:13:24.515625343Z","score":0.25162863637483174,"is_anomaly":false,"confidence":0.30382276160455923,"method":"SEAD","details":"MAD:w=0.33,s=0.05 RRCF-fast:w=0.17,s=0.09 RRCF-mid:w=0.15,s=0.32 RRCF-slow:w=0.12,s=0.36 COPOD!:w=0.22,s=0.57"} +{"timestamp":"2026-03-16T23:13:54.510023944Z","score":0.6203520913459416,"is_anomaly":false,"confidence":0.7490287603002705,"method":"SEAD","details":"MAD!:w=0.33,s=0.66 RRCF-fast:w=0.17,s=0.53 RRCF-mid:w=0.15,s=0.42 RRCF-slow:w=0.12,s=0.48 COPOD!:w=0.22,s=0.86"} +{"timestamp":"2026-03-16T23:14:24.466175195Z","score":0.14790369968467032,"is_anomaly":false,"confidence":0.1785826571137534,"method":"SEAD","details":"MAD:w=0.33,s=0.03 RRCF-fast:w=0.17,s=0.02 RRCF-mid:w=0.15,s=0.18 RRCF-slow:w=0.12,s=0.13 COPOD!:w=0.22,s=0.41"} +{"timestamp":"2026-03-16T23:14:54.511204172Z","score":0.6935339297633258,"is_anomaly":false,"confidence":0.8416383683950319,"method":"SEAD","details":"MAD!:w=0.33,s=0.80 RRCF-fast:w=0.17,s=0.50 RRCF-mid:w=0.15,s=0.50 RRCF-slow:w=0.12,s=0.60 COPOD!:w=0.22,s=0.87"} +{"timestamp":"2026-03-16T23:15:24.46600222Z","score":0.19017061198901972,"is_anomaly":false,"confidence":0.23078161964728,"method":"SEAD","details":"MAD:w=0.33,s=0.10 RRCF-fast:w=0.17,s=0.10 RRCF-mid:w=0.15,s=0.47 RRCF-slow:w=0.12,s=0.42 COPOD!:w=0.22,s=0.07"} +{"timestamp":"2026-03-16T23:15:54.470234011Z","score":0.121480056751702,"is_anomaly":false,"confidence":0.14742216980203027,"method":"SEAD","details":"MAD:w=0.33,s=0.06 RRCF-fast:w=0.17,s=0.15 RRCF-mid:w=0.15,s=0.29 RRCF-slow:w=0.12,s=0.21 COPOD!:w=0.22,s=0.02"} +{"timestamp":"2026-03-16T23:16:24.522421428Z","score":0.20310392645916026,"is_anomaly":false,"confidence":0.2464768484190051,"method":"SEAD","details":"MAD!:w=0.33,s=0.22 RRCF-fast:w=0.17,s=0.03 RRCF-mid:w=0.15,s=0.12 RRCF-slow:w=0.12,s=0.20 COPOD!:w=0.22,s=0.37"} +{"timestamp":"2026-03-16T23:16:54.47162532Z","score":0.19696461515155475,"is_anomaly":false,"confidence":0.23902648480987992,"method":"SEAD","details":"MAD!:w=0.33,s=0.22 RRCF-fast:w=0.17,s=0.20 RRCF-mid:w=0.15,s=0.18 RRCF-slow:w=0.12,s=0.12 COPOD!:w=0.22,s=0.21"} +{"timestamp":"2026-03-16T23:17:24.528159856Z","score":0.5036551633027899,"is_anomaly":false,"confidence":0.6112109180015912,"method":"SEAD","details":"MAD!:w=0.33,s=0.65 RRCF-fast:w=0.17,s=0.43 RRCF-mid:w=0.15,s=0.20 RRCF-slow:w=0.12,s=0.27 COPOD!:w=0.22,s=0.68"} +{"timestamp":"2026-03-16T23:17:54.520932479Z","score":0.3186935191742081,"is_anomaly":false,"confidence":0.3870900899720409,"method":"SEAD","details":"MAD!:w=0.33,s=0.26 RRCF-fast:w=0.17,s=0.58 RRCF-mid:w=0.15,s=0.31 RRCF-slow:w=0.12,s=0.27 COPOD!:w=0.22,s=0.24"} +{"timestamp":"2026-03-16T23:18:24.56238311Z","score":0.7307211777962228,"is_anomaly":false,"confidence":0.8875452729335173,"method":"SEAD","details":"MAD!:w=0.33,s=0.90 RRCF-fast:w=0.17,s=0.66 RRCF-mid:w=0.15,s=0.40 RRCF-slow:w=0.12,s=0.57 COPOD!:w=0.22,s=0.85"} +{"timestamp":"2026-03-16T23:18:54.471012201Z","score":0.16855816262747475,"is_anomaly":false,"confidence":0.2047333579485967,"method":"SEAD","details":"MAD!:w=0.33,s=0.15 RRCF-fast:w=0.17,s=0.27 RRCF-mid:w=0.16,s=0.07 RRCF-slow:w=0.12,s=0.12 COPOD!:w=0.22,s=0.22"} +{"timestamp":"2026-03-16T23:19:24.560623142Z","score":0.6515735610103237,"is_anomaly":false,"confidence":0.7914113503419536,"method":"SEAD","details":"MAD!:w=0.33,s=0.89 RRCF-fast:w=0.17,s=0.34 RRCF-mid:w=0.16,s=0.37 RRCF-slow:w=0.12,s=0.38 COPOD!:w=0.22,s=0.89"} +{"timestamp":"2026-03-16T23:19:54.470229639Z","score":0.2541088465350002,"is_anomaly":false,"confidence":0.308644545150466,"method":"SEAD","details":"MAD:w=0.33,s=0.09 RRCF-fast:w=0.17,s=0.19 RRCF-mid:w=0.16,s=0.09 RRCF-slow:w=0.13,s=0.09 COPOD!:w=0.22,s=0.77"} +{"timestamp":"2026-03-16T23:20:24.508482436Z","score":0.8443405601678646,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.33,s=0.92 RRCF-fast!:w=0.17,s=0.87 RRCF-mid:w=0.16,s=0.69 RRCF-slow:w=0.13,s=0.67 COPOD!:w=0.21,s=0.93"} +{"timestamp":"2026-03-16T23:20:54.516062367Z","score":0.09097176996043281,"is_anomaly":false,"confidence":0.11039882658031656,"method":"SEAD","details":"MAD:w=0.33,s=0.04 RRCF-fast:w=0.17,s=0.06 RRCF-mid:w=0.16,s=0.12 RRCF-slow:w=0.13,s=0.07 COPOD!:w=0.21,s=0.19"} +{"timestamp":"2026-03-16T23:21:24.502772958Z","score":0.7138283126744929,"is_anomaly":false,"confidence":0.867026937020067,"method":"SEAD","details":"MAD!:w=0.33,s=0.94 RRCF-fast:w=0.17,s=0.52 RRCF-mid:w=0.16,s=0.32 RRCF-slow:w=0.13,s=0.59 COPOD!:w=0.21,s=0.89"} +{"timestamp":"2026-03-16T23:21:55.405979256Z","score":0.14659376316408854,"is_anomaly":false,"confidence":0.17805505778581102,"method":"SEAD","details":"MAD:w=0.33,s=0.12 RRCF-fast:w=0.17,s=0.02 RRCF-mid:w=0.16,s=0.07 RRCF-slow:w=0.13,s=0.10 COPOD!:w=0.21,s=0.38"} +{"timestamp":"2026-03-16T23:22:24.516188284Z","score":0.06462207144060064,"is_anomaly":false,"confidence":0.07849096998564316,"method":"SEAD","details":"MAD:w=0.33,s=0.03 RRCF-fast:w=0.17,s=0.11 RRCF-mid:w=0.16,s=0.07 RRCF-slow:w=0.13,s=0.06 COPOD!:w=0.21,s=0.08"} +{"timestamp":"2026-03-16T23:22:54.562756311Z","score":0.12783211834536415,"is_anomaly":false,"confidence":0.15526687307555462,"method":"SEAD","details":"MAD!:w=0.33,s=0.28 RRCF-fast:w=0.17,s=0.04 RRCF-mid:w=0.16,s=0.13 RRCF-slow:w=0.13,s=0.05 COPOD!:w=0.21,s=0.01"} +{"timestamp":"2026-03-16T23:23:24.466386345Z","score":0.15195611020307304,"is_anomaly":false,"confidence":0.18456824764659124,"method":"SEAD","details":"MAD!:w=0.33,s=0.28 RRCF-fast:w=0.17,s=0.03 RRCF-mid:w=0.16,s=0.06 RRCF-slow:w=0.13,s=0.03 COPOD!:w=0.21,s=0.20"} +{"timestamp":"2026-03-16T23:23:54.551146438Z","score":0.6669322372419308,"is_anomaly":false,"confidence":0.8100662366407064,"method":"SEAD","details":"MAD!:w=0.33,s=0.85 RRCF-fast:w=0.17,s=0.39 RRCF-mid:w=0.16,s=0.31 RRCF-slow:w=0.13,s=0.47 COPOD!:w=0.21,s=1.00"} +{"timestamp":"2026-03-16T23:24:24.668731651Z","score":0.19582129066008286,"is_anomaly":false,"confidence":0.23784757599233666,"method":"SEAD","details":"MAD!:w=0.33,s=0.28 RRCF-fast:w=0.17,s=0.02 RRCF-mid:w=0.16,s=0.19 RRCF-slow:w=0.13,s=0.12 COPOD!:w=0.21,s=0.26"} +{"timestamp":"2026-03-16T23:24:54.509879411Z","score":0.7229608991573061,"is_anomaly":false,"confidence":0.879550900566841,"method":"SEAD","details":"MAD!:w=0.33,s=0.72 RRCF-fast!:w=0.17,s=0.73 RRCF-mid:w=0.16,s=0.55 RRCF-slow:w=0.13,s=0.63 COPOD!:w=0.21,s=0.91"} +{"timestamp":"2026-03-16T23:25:24.470247861Z","score":0.3508550636217732,"is_anomaly":false,"confidence":0.42684865465984356,"method":"SEAD","details":"MAD!:w=0.33,s=0.16 RRCF-fast:w=0.17,s=0.31 RRCF-mid:w=0.16,s=0.37 RRCF-slow:w=0.13,s=0.20 COPOD!:w=0.21,s=0.76"} +{"timestamp":"2026-03-16T23:25:54.508956519Z","score":0.57014505685247,"is_anomaly":false,"confidence":0.693635850559616,"method":"SEAD","details":"MAD!:w=0.33,s=0.72 RRCF-fast:w=0.17,s=0.43 RRCF-mid:w=0.16,s=0.22 RRCF-slow:w=0.13,s=0.29 COPOD!:w=0.21,s=0.90"} +{"timestamp":"2026-03-16T23:26:24.467536118Z","score":0.28104620872332675,"is_anomaly":false,"confidence":0.3419195232710813,"method":"SEAD","details":"MAD!:w=0.33,s=0.17 RRCF-fast:w=0.18,s=0.72 RRCF-mid:w=0.16,s=0.33 RRCF-slow:w=0.13,s=0.07 COPOD!:w=0.21,s=0.18"} +{"timestamp":"2026-03-16T23:26:54.510636277Z","score":0.911127362076921,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.33,s=0.82 RRCF-fast!:w=0.17,s=1.00 RRCF-mid!:w=0.16,s=0.94 RRCF-slow!:w=0.13,s=0.93 COPOD!:w=0.21,s=0.95"} +{"timestamp":"2026-03-16T23:27:24.565420403Z","score":0.6105533202533988,"is_anomaly":false,"confidence":0.7415875298688642,"method":"SEAD","details":"MAD!:w=0.33,s=0.33 RRCF-fast!:w=0.17,s=1.00 RRCF-mid!:w=0.16,s=0.89 RRCF-slow:w=0.13,s=0.74 COPOD!:w=0.21,s=0.43"} +{"timestamp":"2026-03-16T23:27:54.471653953Z","score":0.34448911777055724,"is_anomaly":false,"confidence":0.4191038742534298,"method":"SEAD","details":"MAD!:w=0.33,s=0.33 RRCF-fast!:w=0.17,s=0.92 RRCF-mid:w=0.16,s=0.26 RRCF-slow:w=0.13,s=0.16 COPOD!:w=0.21,s=0.06"} +{"timestamp":"2026-03-16T23:28:24.554236032Z","score":0.5089154739028332,"is_anomaly":false,"confidence":0.6191442219148874,"method":"SEAD","details":"MAD!:w=0.33,s=0.63 RRCF-fast!:w=0.17,s=0.81 RRCF-mid:w=0.16,s=0.36 RRCF-slow:w=0.13,s=0.21 COPOD!:w=0.21,s=0.37"} +{"timestamp":"2026-03-16T23:28:54.468549873Z","score":0.43635280868815585,"is_anomaly":false,"confidence":0.5308648175771256,"method":"SEAD","details":"MAD!:w=0.33,s=0.38 RRCF-fast!:w=0.17,s=0.88 RRCF-mid:w=0.16,s=0.23 RRCF-slow:w=0.13,s=0.36 COPOD!:w=0.21,s=0.37"} +{"timestamp":"2026-03-16T23:29:24.511730907Z","score":0.6549104393579464,"is_anomaly":false,"confidence":0.7967610245579434,"method":"SEAD","details":"MAD!:w=0.33,s=0.71 RRCF-fast!:w=0.17,s=0.83 RRCF-mid:w=0.16,s=0.35 RRCF-slow:w=0.13,s=0.26 COPOD!:w=0.21,s=0.91"} +{"timestamp":"2026-03-16T23:29:54.469246688Z","score":0.37972900645150487,"is_anomaly":false,"confidence":0.46197656053747543,"method":"SEAD","details":"MAD!:w=0.33,s=0.21 RRCF-fast:w=0.17,s=0.77 RRCF-mid:w=0.16,s=0.27 RRCF-slow:w=0.13,s=0.17 COPOD!:w=0.21,s=0.56"} +{"timestamp":"2026-03-16T23:30:24.554315577Z","score":0.8312205758536431,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.33,s=0.72 RRCF-fast!:w=0.17,s=0.94 RRCF-mid!:w=0.16,s=0.90 RRCF-slow!:w=0.13,s=0.87 COPOD!:w=0.21,s=0.85"} +{"timestamp":"2026-03-16T23:30:55.933860829Z","score":0.44489371429554275,"is_anomaly":false,"confidence":0.5403748037954906,"method":"SEAD","details":"MAD!:w=0.33,s=0.15 RRCF-fast!:w=0.17,s=0.89 RRCF-mid:w=0.16,s=0.72 RRCF-slow:w=0.13,s=0.74 COPOD!:w=0.21,s=0.15"} +{"timestamp":"2026-03-16T23:31:24.562572662Z","score":0.6270431060857538,"is_anomaly":false,"confidence":0.7628577552324193,"method":"SEAD","details":"MAD!:w=0.33,s=0.72 RRCF-fast!:w=0.16,s=0.83 RRCF-mid:w=0.16,s=0.48 RRCF-slow:w=0.13,s=0.35 COPOD!:w=0.21,s=0.60"} +{"timestamp":"2026-03-16T23:31:54.515566181Z","score":0.18277356814777515,"is_anomaly":false,"confidence":0.2223614813077349,"method":"SEAD","details":"MAD!:w=0.33,s=0.14 RRCF-fast:w=0.16,s=0.45 RRCF-mid:w=0.16,s=0.20 RRCF-slow:w=0.13,s=0.17 COPOD!:w=0.21,s=0.03"} +{"timestamp":"2026-03-16T23:32:24.514610421Z","score":0.6629281968305464,"is_anomaly":false,"confidence":0.8065153913760823,"method":"SEAD","details":"MAD!:w=0.33,s=0.71 RRCF-fast:w=0.16,s=0.70 RRCF-mid:w=0.16,s=0.54 RRCF-slow:w=0.13,s=0.30 COPOD!:w=0.21,s=0.89"} +{"timestamp":"2026-03-16T23:32:54.514119232Z","score":0.21152884277933848,"is_anomaly":false,"confidence":0.25734501600196075,"method":"SEAD","details":"MAD!:w=0.33,s=0.20 RRCF-fast:w=0.16,s=0.51 RRCF-mid:w=0.16,s=0.21 RRCF-slow:w=0.13,s=0.14 COPOD!:w=0.21,s=0.04"} +{"timestamp":"2026-03-16T23:33:24.520148019Z","score":0.4078845758566707,"is_anomaly":false,"confidence":0.4962304966150024,"method":"SEAD","details":"MAD!:w=0.33,s=0.61 RRCF-fast:w=0.16,s=0.65 RRCF-mid:w=0.16,s=0.27 RRCF-slow:w=0.13,s=0.14 COPOD!:w=0.21,s=0.18"} +{"timestamp":"2026-03-16T23:33:54.55647682Z","score":0.28285231644605024,"is_anomaly":false,"confidence":0.34411682560913837,"method":"SEAD","details":"MAD!:w=0.33,s=0.27 RRCF-fast:w=0.16,s=0.24 RRCF-mid:w=0.16,s=0.28 RRCF-slow:w=0.13,s=0.18 COPOD!:w=0.21,s=0.40"} +{"timestamp":"2026-03-16T23:34:24.468201743Z","score":0.20166587368054814,"is_anomaly":false,"confidence":0.2453457732168867,"method":"SEAD","details":"MAD!:w=0.33,s=0.27 RRCF-fast:w=0.16,s=0.41 RRCF-mid:w=0.16,s=0.12 RRCF-slow:w=0.13,s=0.09 COPOD!:w=0.21,s=0.07"} +{"timestamp":"2026-03-16T23:34:55.16070699Z","score":0.560800374555028,"is_anomaly":false,"confidence":0.6929315792171483,"method":"SEAD","details":"MAD!:w=0.33,s=0.61 RRCF-fast:w=0.16,s=0.54 RRCF-mid:w=0.16,s=0.45 RRCF-slow:w=0.13,s=0.28 COPOD!:w=0.21,s=0.77"} +{"timestamp":"2026-03-16T23:35:24.468087183Z","score":0.2314044857406648,"is_anomaly":false,"confidence":0.28592612098278297,"method":"SEAD","details":"MAD!:w=0.33,s=0.28 RRCF-fast:w=0.16,s=0.26 RRCF-mid:w=0.16,s=0.16 RRCF-slow:w=0.13,s=0.04 COPOD!:w=0.21,s=0.31"} +{"timestamp":"2026-03-16T23:35:56.100775388Z","score":0.6262635392681211,"is_anomaly":false,"confidence":0.7738186402166856,"method":"SEAD","details":"MAD!:w=0.33,s=0.89 RRCF-fast:w=0.16,s=0.57 RRCF-mid:w=0.16,s=0.42 RRCF-slow:w=0.13,s=0.37 COPOD!:w=0.21,s=0.58"} +{"timestamp":"2026-03-16T23:36:24.471684652Z","score":0.2124481352901474,"is_anomaly":false,"confidence":0.2625034300398727,"method":"SEAD","details":"MAD!:w=0.33,s=0.16 RRCF-fast:w=0.16,s=0.31 RRCF-mid:w=0.16,s=0.14 RRCF-slow:w=0.13,s=0.03 COPOD!:w=0.21,s=0.39"} +{"timestamp":"2026-03-16T23:36:54.509332304Z","score":0.7242499786981929,"is_anomaly":false,"confidence":0.894891844331464,"method":"SEAD","details":"MAD!:w=0.33,s=0.91 RRCF-fast:w=0.16,s=0.79 RRCF-mid:w=0.17,s=0.47 RRCF-slow:w=0.13,s=0.36 COPOD!:w=0.21,s=0.82"} +{"timestamp":"2026-03-16T23:37:24.506254498Z","score":0.1674259674932017,"is_anomaly":false,"confidence":0.20687350672523377,"method":"SEAD","details":"MAD:w=0.33,s=0.10 RRCF-fast:w=0.16,s=0.37 RRCF-mid:w=0.17,s=0.07 RRCF-slow:w=0.13,s=0.12 COPOD!:w=0.21,s=0.22"} +{"timestamp":"2026-03-16T23:37:54.510463434Z","score":0.5579890296707584,"is_anomaly":false,"confidence":0.6901010925494896,"method":"SEAD","details":"MAD!:w=0.33,s=0.87 RRCF-fast:w=0.16,s=0.44 RRCF-mid:w=0.17,s=0.32 RRCF-slow:w=0.13,s=0.28 COPOD!:w=0.21,s=0.52"} +{"timestamp":"2026-03-16T23:38:24.467288813Z","score":0.1362272142647083,"is_anomaly":false,"confidence":0.1684809994463862,"method":"SEAD","details":"MAD:w=0.32,s=0.04 RRCF-fast:w=0.16,s=0.08 RRCF-mid:w=0.17,s=0.08 RRCF-slow:w=0.14,s=0.03 COPOD!:w=0.21,s=0.44"} +{"timestamp":"2026-03-16T23:38:54.509791578Z","score":0.7624027197773352,"is_anomaly":false,"confidence":0.9429127131612024,"method":"SEAD","details":"MAD!:w=0.33,s=0.91 RRCF-fast:w=0.16,s=0.83 RRCF-mid:w=0.17,s=0.58 RRCF-slow:w=0.14,s=0.49 COPOD!:w=0.21,s=0.80"} +{"timestamp":"2026-03-16T23:39:24.516598387Z","score":0.5171971799984474,"is_anomaly":false,"confidence":0.6396511759219413,"method":"SEAD","details":"MAD!:w=0.32,s=0.41 RRCF-fast:w=0.16,s=0.72 RRCF-mid!:w=0.17,s=0.85 RRCF-slow!:w=0.14,s=0.72 COPOD!:w=0.21,s=0.13"} +{"timestamp":"2026-03-16T23:39:54.517530539Z","score":0.21616522953321526,"is_anomaly":false,"confidence":0.26734550885364955,"method":"SEAD","details":"MAD:w=0.33,s=0.03 RRCF-fast:w=0.16,s=0.34 RRCF-mid:w=0.17,s=0.28 RRCF-slow:w=0.14,s=0.05 COPOD!:w=0.21,s=0.47"} +{"timestamp":"2026-03-16T23:40:24.512379548Z","score":0.15791068997386834,"is_anomaly":false,"confidence":0.19529835513166027,"method":"SEAD","details":"MAD!:w=0.33,s=0.33 RRCF-fast:w=0.16,s=0.07 RRCF-mid:w=0.17,s=0.15 RRCF-slow:w=0.14,s=0.09 COPOD!:w=0.21,s=0.01"} +{"timestamp":"2026-03-16T23:40:54.467277891Z","score":0.29250891668112383,"is_anomaly":false,"confidence":0.3617646803938407,"method":"SEAD","details":"MAD!:w=0.33,s=0.33 RRCF-fast:w=0.16,s=0.15 RRCF-mid:w=0.17,s=0.29 RRCF-slow:w=0.14,s=0.04 COPOD!:w=0.21,s=0.51"} +{"timestamp":"2026-03-16T23:41:24.554480539Z","score":0.6224063477512118,"is_anomaly":false,"confidence":0.7705354773030538,"method":"SEAD","details":"MAD!:w=0.32,s=0.82 RRCF-fast:w=0.16,s=0.49 RRCF-mid:w=0.17,s=0.40 RRCF-slow:w=0.14,s=0.21 COPOD!:w=0.21,s=0.87"} +{"timestamp":"2026-03-16T23:41:54.469687917Z","score":0.22252342321008367,"is_anomaly":false,"confidence":0.27548271757477016,"method":"SEAD","details":"MAD!:w=0.32,s=0.28 RRCF-fast:w=0.16,s=0.40 RRCF-mid:w=0.17,s=0.03 RRCF-slow:w=0.14,s=0.04 COPOD!:w=0.21,s=0.27"} +{"timestamp":"2026-03-16T23:42:24.558775628Z","score":0.5651971755108801,"is_anomaly":false,"confidence":0.6997108512406973,"method":"SEAD","details":"MAD!:w=0.32,s=0.77 RRCF-fast:w=0.16,s=0.61 RRCF-mid:w=0.17,s=0.29 RRCF-slow:w=0.14,s=0.34 COPOD!:w=0.21,s=0.59"} +{"timestamp":"2026-03-16T23:42:54.516407063Z","score":0.049358678643939835,"is_anomaly":false,"confidence":0.06110576016033599,"method":"SEAD","details":"MAD:w=0.32,s=0.06 RRCF-fast:w=0.16,s=0.04 RRCF-mid:w=0.17,s=0.08 RRCF-slow:w=0.14,s=0.04 COPOD!:w=0.21,s=0.02"} +{"timestamp":"2026-03-16T23:43:24.510362049Z","score":0.6553947445748503,"is_anomaly":false,"confidence":0.8113749227614815,"method":"SEAD","details":"MAD!:w=0.32,s=0.88 RRCF-fast:w=0.16,s=0.58 RRCF-mid:w=0.17,s=0.47 RRCF-slow:w=0.14,s=0.30 COPOD!:w=0.21,s=0.77"} +{"timestamp":"2026-03-16T23:43:54.518163134Z","score":0.1855098797795328,"is_anomaly":false,"confidence":0.2296601637769465,"method":"SEAD","details":"MAD:w=0.32,s=0.05 RRCF-fast:w=0.16,s=0.05 RRCF-mid:w=0.17,s=0.13 RRCF-slow:w=0.14,s=0.06 COPOD!:w=0.21,s=0.64"} +{"timestamp":"2026-03-16T23:44:24.510072389Z","score":0.6534030487136055,"is_anomaly":false,"confidence":0.8089092147451163,"method":"SEAD","details":"MAD!:w=0.32,s=0.84 RRCF-fast:w=0.16,s=0.56 RRCF-mid:w=0.17,s=0.46 RRCF-slow:w=0.14,s=0.33 COPOD!:w=0.21,s=0.82"} +{"timestamp":"2026-03-16T23:44:54.465971541Z","score":0.18275960967208826,"is_anomaly":false,"confidence":0.22666206498284155,"method":"SEAD","details":"MAD:w=0.32,s=0.00 RRCF-fast:w=0.16,s=0.12 RRCF-mid:w=0.17,s=0.09 RRCF-slow:w=0.14,s=0.03 COPOD!:w=0.21,s=0.69"} +{"timestamp":"2026-03-16T23:45:24.468326165Z","score":0.8738701296438752,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.32,s=1.00 RRCF-fast!:w=0.16,s=0.97 RRCF-mid!:w=0.17,s=0.98 RRCF-slow!:w=0.14,s=0.99 COPOD!:w=0.20,s=0.43"} +{"timestamp":"2026-03-16T23:45:54.558142236Z","score":0.39877454092768083,"is_anomaly":false,"confidence":0.49368058719227365,"method":"SEAD","details":"MAD!:w=0.32,s=0.32 RRCF-fast:w=0.16,s=0.71 RRCF-mid:w=0.17,s=0.54 RRCF-slow:w=0.14,s=0.42 COPOD!:w=0.21,s=0.14"} +{"timestamp":"2026-03-16T23:46:24.47565622Z","score":0.8500912000481394,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.32,s=1.00 RRCF-fast!:w=0.16,s=0.95 RRCF-mid!:w=0.17,s=0.97 RRCF-slow!:w=0.14,s=0.99 COPOD!:w=0.21,s=0.35"} +{"timestamp":"2026-03-16T23:46:55.189938896Z","score":0.5996129273805301,"is_anomaly":false,"confidence":0.7415800567553463,"method":"SEAD","details":"MAD!:w=0.32,s=0.58 RRCF-fast:w=0.16,s=0.81 RRCF-mid!:w=0.17,s=0.68 RRCF-slow:w=0.14,s=0.63 COPOD!:w=0.21,s=0.39"} +{"timestamp":"2026-03-16T23:47:24.466330421Z","score":0.8651754880797862,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.32,s=1.00 RRCF-fast!:w=0.16,s=0.99 RRCF-mid!:w=0.17,s=0.97 RRCF-slow!:w=0.14,s=0.99 COPOD!:w=0.21,s=0.40"} +{"timestamp":"2026-03-16T23:47:54.559659714Z","score":0.8126753339338,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.32,s=0.84 RRCF-fast:w=0.16,s=0.79 RRCF-mid!:w=0.17,s=0.83 RRCF-slow!:w=0.14,s=0.81 COPOD!:w=0.21,s=0.77"} +{"timestamp":"2026-03-16T23:48:24.466635217Z","score":0.7995149295348405,"is_anomaly":false,"confidence":0.9878901082579474,"method":"SEAD","details":"MAD!:w=0.32,s=1.00 RRCF-fast!:w=0.16,s=0.98 RRCF-mid!:w=0.17,s=0.99 RRCF-slow!:w=0.14,s=0.99 COPOD!:w=0.21,s=0.08"} +{"timestamp":"2026-03-16T23:48:54.512274834Z","score":0.7768696401276372,"is_anomaly":false,"confidence":0.9599093206858752,"method":"SEAD","details":"MAD!:w=0.31,s=0.82 RRCF-fast:w=0.16,s=0.82 RRCF-mid:w=0.17,s=0.82 RRCF-slow!:w=0.14,s=0.88 COPOD!:w=0.22,s=0.58"} +{"timestamp":"2026-03-16T23:49:24.470089251Z","score":0.4310582053129539,"is_anomaly":false,"confidence":0.5326206195547144,"method":"SEAD","details":"MAD!:w=0.31,s=0.15 RRCF-fast:w=0.16,s=0.35 RRCF-mid:w=0.17,s=0.62 RRCF-slow!:w=0.14,s=0.80 COPOD!:w=0.22,s=0.51"} +{"timestamp":"2026-03-16T23:49:54.511153136Z","score":0.8812076135212006,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.32,s=0.95 RRCF-fast!:w=0.16,s=0.91 RRCF-mid!:w=0.17,s=0.87 RRCF-slow!:w=0.14,s=0.93 COPOD!:w=0.22,s=0.74"} +{"timestamp":"2026-03-16T23:50:24.468391Z","score":0.8193964993823183,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.32,s=0.99 RRCF-fast:w=0.16,s=0.87 RRCF-mid!:w=0.17,s=0.91 RRCF-slow!:w=0.14,s=0.94 COPOD!:w=0.22,s=0.38"} +{"timestamp":"2026-03-16T23:50:54.511646405Z","score":0.6740182173219222,"is_anomaly":false,"confidence":0.8225788343372399,"method":"SEAD","details":"MAD!:w=0.31,s=0.55 RRCF-fast:w=0.16,s=0.80 RRCF-mid:w=0.17,s=0.74 RRCF-slow:w=0.14,s=0.84 COPOD!:w=0.22,s=0.61"} +{"timestamp":"2026-03-16T23:51:24.516825253Z","score":0.8481098456433573,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.32,s=1.00 RRCF-fast!:w=0.16,s=1.00 RRCF-mid!:w=0.17,s=1.00 RRCF-slow!:w=0.14,s=1.00 COPOD!:w=0.22,s=0.30"} +{"timestamp":"2026-03-16T23:51:54.514980821Z","score":0.9084743199492595,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=0.93 RRCF-fast!:w=0.16,s=0.92 RRCF-mid!:w=0.17,s=0.90 RRCF-slow!:w=0.14,s=0.93 COPOD!:w=0.22,s=0.86"} +{"timestamp":"2026-03-16T23:52:24.524844216Z","score":0.7538526921425511,"is_anomaly":false,"confidence":0.9171337136511551,"method":"SEAD","details":"MAD!:w=0.31,s=0.99 RRCF-fast:w=0.16,s=0.89 RRCF-mid!:w=0.17,s=0.89 RRCF-slow!:w=0.14,s=0.94 COPOD!:w=0.22,s=0.11"} +{"timestamp":"2026-03-16T23:52:54.564212272Z","score":0.6409800524670288,"is_anomaly":false,"confidence":0.7798133800180621,"method":"SEAD","details":"MAD!:w=0.31,s=0.54 RRCF-fast:w=0.16,s=0.69 RRCF-mid:w=0.17,s=0.76 RRCF-slow:w=0.14,s=0.90 COPOD!:w=0.22,s=0.51"} +{"timestamp":"2026-03-16T23:53:24.519088609Z","score":0.8103850801828747,"is_anomaly":false,"confidence":0.98591075660053,"method":"SEAD","details":"MAD!:w=0.31,s=1.00 RRCF-fast!:w=0.16,s=0.95 RRCF-mid!:w=0.17,s=0.97 RRCF-slow!:w=0.14,s=0.98 COPOD!:w=0.22,s=0.23"} +{"timestamp":"2026-03-16T23:53:54.46816106Z","score":0.5843222843826619,"is_anomaly":false,"confidence":0.7108838002844987,"method":"SEAD","details":"MAD!:w=0.31,s=0.76 RRCF-fast:w=0.16,s=0.50 RRCF-mid:w=0.17,s=0.79 RRCF-slow:w=0.14,s=0.92 COPOD!:w=0.23,s=0.05"} +{"timestamp":"2026-03-16T23:54:24.514667851Z","score":0.8336720472948018,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=0.90 RRCF-fast:w=0.16,s=0.72 RRCF-mid:w=0.17,s=0.83 RRCF-slow:w=0.14,s=0.90 COPOD!:w=0.23,s=0.80"} +{"timestamp":"2026-03-16T23:54:54.469405591Z","score":0.46199268064270405,"is_anomaly":false,"confidence":0.562058167721411,"method":"SEAD","details":"MAD!:w=0.31,s=0.22 RRCF-fast:w=0.16,s=0.05 RRCF-mid:w=0.17,s=0.68 RRCF-slow:w=0.14,s=0.78 COPOD!:w=0.23,s=0.73"} +{"timestamp":"2026-03-16T23:55:24.468713829Z","score":0.36156773194993225,"is_anomaly":false,"confidence":0.4398816376143698,"method":"SEAD","details":"MAD!:w=0.31,s=0.29 RRCF-fast:w=0.16,s=0.28 RRCF-mid:w=0.16,s=0.69 RRCF-slow:w=0.14,s=0.79 COPOD!:w=0.23,s=0.03"} +{"timestamp":"2026-03-16T23:55:54.557373523Z","score":0.42071698143175484,"is_anomaly":false,"confidence":0.5118423421424164,"method":"SEAD","details":"MAD!:w=0.31,s=0.29 RRCF-fast:w=0.16,s=0.16 RRCF-mid:w=0.16,s=0.63 RRCF-slow:w=0.13,s=0.64 COPOD!:w=0.23,s=0.50"} +{"timestamp":"2026-03-16T23:56:24.473059891Z","score":0.4557159041508058,"is_anomaly":false,"confidence":0.5544218703469045,"method":"SEAD","details":"MAD!:w=0.31,s=0.29 RRCF-fast:w=0.16,s=0.38 RRCF-mid:w=0.16,s=0.60 RRCF-slow:w=0.13,s=0.67 COPOD!:w=0.23,s=0.51"} +{"timestamp":"2026-03-16T23:56:54.555806578Z","score":0.9319627691171859,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=0.90 RRCF-fast!:w=0.16,s=0.95 RRCF-mid!:w=0.16,s=0.90 RRCF-slow:w=0.13,s=0.92 COPOD!:w=0.23,s=0.99"} +{"timestamp":"2026-03-16T23:57:24.473709167Z","score":0.5603894565635152,"is_anomaly":false,"confidence":0.6806577232026427,"method":"SEAD","details":"MAD!:w=0.31,s=0.32 RRCF-fast!:w=0.16,s=0.93 RRCF-mid:w=0.16,s=0.34 RRCF-slow:w=0.13,s=0.76 COPOD!:w=0.23,s=0.67"} +{"timestamp":"2026-03-16T23:57:54.557173952Z","score":0.8322908270473174,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=0.74 RRCF-fast:w=0.16,s=0.82 RRCF-mid:w=0.16,s=0.79 RRCF-slow:w=0.13,s=0.87 COPOD!:w=0.23,s=0.98"} +{"timestamp":"2026-03-16T23:58:24.519220802Z","score":0.48092311958704037,"is_anomaly":false,"confidence":0.5841366781256092,"method":"SEAD","details":"MAD!:w=0.32,s=0.19 RRCF-fast:w=0.16,s=0.69 RRCF-mid:w=0.16,s=0.58 RRCF-slow:w=0.13,s=0.67 COPOD!:w=0.23,s=0.56"} +{"timestamp":"2026-03-16T23:58:55.089787972Z","score":0.9102164248674876,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.32,s=0.83 RRCF-fast!:w=0.16,s=0.96 RRCF-mid!:w=0.16,s=0.92 RRCF-slow:w=0.13,s=0.89 COPOD!:w=0.23,s=0.99"} +{"timestamp":"2026-03-16T23:59:24.517286887Z","score":0.5067860177346867,"is_anomaly":false,"confidence":0.6150103676069526,"method":"SEAD","details":"MAD!:w=0.32,s=0.17 RRCF-fast!:w=0.16,s=0.93 RRCF-mid:w=0.16,s=0.61 RRCF-slow:w=0.13,s=0.67 COPOD!:w=0.23,s=0.52"} +{"timestamp":"2026-03-16T23:59:54.517863089Z","score":0.8300908090932665,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.32,s=0.72 RRCF-fast:w=0.16,s=0.90 RRCF-mid:w=0.16,s=0.80 RRCF-slow:w=0.13,s=0.83 COPOD!:w=0.23,s=0.96"} +{"timestamp":"2026-03-17T00:00:24.524749129Z","score":0.5989951828337148,"is_anomaly":false,"confidence":0.7232418903438045,"method":"SEAD","details":"MAD!:w=0.32,s=0.44 RRCF-fast:w=0.16,s=0.88 RRCF-mid:w=0.16,s=0.81 RRCF-slow:w=0.13,s=0.90 COPOD!:w=0.23,s=0.31"} +{"timestamp":"2026-03-17T00:00:54.516617281Z","score":0.8333921018547124,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.32,s=0.95 RRCF-fast:w=0.16,s=0.87 RRCF-mid:w=0.16,s=0.80 RRCF-slow:w=0.13,s=0.85 COPOD!:w=0.23,s=0.66"} +{"timestamp":"2026-03-17T00:01:24.513959819Z","score":0.47189823891299837,"is_anomaly":false,"confidence":0.5697818348834627,"method":"SEAD","details":"MAD!:w=0.32,s=0.39 RRCF-fast:w=0.16,s=0.57 RRCF-mid:w=0.16,s=0.54 RRCF-slow:w=0.13,s=0.66 COPOD!:w=0.23,s=0.37"} +{"timestamp":"2026-03-17T00:01:54.468983969Z","score":0.4651394818811355,"is_anomaly":false,"confidence":0.5616211411881079,"method":"SEAD","details":"MAD!:w=0.32,s=0.39 RRCF-fast:w=0.16,s=0.61 RRCF-mid:w=0.16,s=0.42 RRCF-slow:w=0.13,s=0.59 COPOD!:w=0.23,s=0.44"} +{"timestamp":"2026-03-17T00:02:24.510764715Z","score":0.8760393675433391,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.32,s=0.88 RRCF-fast:w=0.16,s=0.87 RRCF-mid:w=0.16,s=0.81 RRCF-slow:w=0.13,s=0.79 COPOD!:w=0.23,s=0.98"} +{"timestamp":"2026-03-17T00:02:54.521326504Z","score":0.7391152807685025,"is_anomaly":false,"confidence":0.890402920586316,"method":"SEAD","details":"MAD!:w=0.32,s=0.97 RRCF-fast:w=0.16,s=0.80 RRCF-mid:w=0.16,s=0.78 RRCF-slow:w=0.13,s=0.80 COPOD!:w=0.23,s=0.31"} +{"timestamp":"2026-03-17T00:03:24.508551692Z","score":0.719411404975241,"is_anomaly":false,"confidence":0.8666659082288551,"method":"SEAD","details":"MAD!:w=0.32,s=0.75 RRCF-fast:w=0.16,s=0.76 RRCF-mid:w=0.16,s=0.66 RRCF-slow:w=0.13,s=0.81 COPOD!:w=0.23,s=0.65"} +{"timestamp":"2026-03-17T00:03:54.468636236Z","score":0.28919966021638255,"is_anomaly":false,"confidence":0.34839520814871344,"method":"SEAD","details":"MAD!:w=0.32,s=0.16 RRCF-fast:w=0.16,s=0.43 RRCF-mid:w=0.16,s=0.31 RRCF-slow:w=0.13,s=0.59 COPOD!:w=0.23,s=0.19"} +{"timestamp":"2026-03-17T00:04:24.556567251Z","score":0.7774316358353994,"is_anomaly":false,"confidence":0.936562153584873,"method":"SEAD","details":"MAD!:w=0.32,s=0.70 RRCF-fast:w=0.16,s=0.76 RRCF-mid:w=0.16,s=0.68 RRCF-slow:w=0.13,s=0.77 COPOD!:w=0.23,s=0.97"} +{"timestamp":"2026-03-17T00:04:54.520023483Z","score":0.4015048420732879,"is_anomaly":false,"confidence":0.48478707222573497,"method":"SEAD","details":"MAD!:w=0.32,s=0.20 RRCF-fast:w=0.16,s=0.33 RRCF-mid:w=0.16,s=0.16 RRCF-slow:w=0.13,s=0.39 COPOD!:w=0.23,s=0.91"} +{"timestamp":"2026-03-17T00:05:24.514864034Z","score":0.8437035816392391,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.33,s=0.74 RRCF-fast:w=0.16,s=0.85 RRCF-mid:w=0.16,s=0.82 RRCF-slow:w=0.13,s=0.87 COPOD!:w=0.23,s=0.99"} +{"timestamp":"2026-03-17T00:05:54.470234753Z","score":0.3812705120308894,"is_anomaly":false,"confidence":0.45931181005047245,"method":"SEAD","details":"MAD!:w=0.33,s=0.17 RRCF-fast:w=0.16,s=0.03 RRCF-mid:w=0.16,s=0.61 RRCF-slow:w=0.13,s=0.38 COPOD!:w=0.23,s=0.77"} +{"timestamp":"2026-03-17T00:06:24.505137321Z","score":0.8041452884602599,"is_anomaly":false,"confidence":0.9687437562869203,"method":"SEAD","details":"MAD!:w=0.33,s=0.94 RRCF-fast:w=0.16,s=0.86 RRCF-mid:w=0.16,s=0.79 RRCF-slow:w=0.13,s=0.87 COPOD!:w=0.22,s=0.54"} +{"timestamp":"2026-03-17T00:06:55.684532434Z","score":0.264791471886216,"is_anomaly":false,"confidence":0.31899096940424604,"method":"SEAD","details":"MAD!:w=0.33,s=0.37 RRCF-fast:w=0.16,s=0.04 RRCF-mid:w=0.16,s=0.19 RRCF-slow:w=0.13,s=0.29 COPOD!:w=0.23,s=0.30"} +{"timestamp":"2026-03-17T00:07:24.470272415Z","score":0.3342465244685163,"is_anomaly":false,"confidence":0.40266260125639025,"method":"SEAD","details":"MAD!:w=0.33,s=0.37 RRCF-fast:w=0.16,s=0.42 RRCF-mid:w=0.16,s=0.51 RRCF-slow:w=0.13,s=0.45 COPOD!:w=0.23,s=0.03"} +{"timestamp":"2026-03-17T00:07:54.516464788Z","score":0.5672068716277238,"is_anomaly":false,"confidence":0.6848598816960981,"method":"SEAD","details":"MAD!:w=0.33,s=0.53 RRCF-fast:w=0.16,s=0.69 RRCF-mid:w=0.16,s=0.60 RRCF-slow:w=0.13,s=0.58 COPOD!:w=0.23,s=0.51"} +{"timestamp":"2026-03-17T00:08:24.515651362Z","score":0.7769134000991641,"is_anomaly":false,"confidence":0.9380648329473097,"method":"SEAD","details":"MAD!:w=0.33,s=0.99 RRCF-fast!:w=0.16,s=0.93 RRCF-mid:w=0.16,s=0.81 RRCF-slow:w=0.13,s=0.90 COPOD!:w=0.23,s=0.27"} +{"timestamp":"2026-03-17T00:08:54.512261127Z","score":0.7539232302419377,"is_anomaly":false,"confidence":0.9103059220522259,"method":"SEAD","details":"MAD!:w=0.32,s=0.81 RRCF-fast:w=0.16,s=0.72 RRCF-mid:w=0.16,s=0.57 RRCF-slow:w=0.13,s=0.59 COPOD!:w=0.23,s=0.92"} +{"timestamp":"2026-03-17T00:09:24.469896794Z","score":0.4106205966229521,"is_anomaly":false,"confidence":0.49579366416729237,"method":"SEAD","details":"MAD!:w=0.32,s=0.19 RRCF-fast:w=0.16,s=0.62 RRCF-mid:w=0.16,s=0.49 RRCF-slow:w=0.13,s=0.64 COPOD!:w=0.23,s=0.39"} +{"timestamp":"2026-03-17T00:09:55.960507415Z","score":0.7395476084888504,"is_anomaly":false,"confidence":0.8929484337960027,"method":"SEAD","details":"MAD!:w=0.32,s=0.80 RRCF-fast:w=0.16,s=0.71 RRCF-mid:w=0.16,s=0.56 RRCF-slow:w=0.13,s=0.56 COPOD!:w=0.23,s=0.91"} +{"timestamp":"2026-03-17T00:10:24.46909294Z","score":0.33438763604399535,"is_anomaly":false,"confidence":0.40374806497766547,"method":"SEAD","details":"MAD!:w=0.32,s=0.23 RRCF-fast:w=0.16,s=0.28 RRCF-mid:w=0.16,s=0.26 RRCF-slow:w=0.13,s=0.39 COPOD!:w=0.23,s=0.55"} +{"timestamp":"2026-03-17T00:10:54.563507387Z","score":0.7618877836832125,"is_anomaly":false,"confidence":0.9199225247423529,"method":"SEAD","details":"MAD!:w=0.33,s=0.82 RRCF-fast:w=0.16,s=0.75 RRCF-mid:w=0.16,s=0.62 RRCF-slow:w=0.13,s=0.68 COPOD!:w=0.23,s=0.83"} +{"timestamp":"2026-03-17T00:11:24.471128266Z","score":0.27473632952903604,"is_anomaly":false,"confidence":0.33340637883797036,"method":"SEAD","details":"MAD!:w=0.32,s=0.19 RRCF-fast:w=0.16,s=0.21 RRCF-mid:w=0.16,s=0.13 RRCF-slow:w=0.13,s=0.26 COPOD!:w=0.23,s=0.54"} +{"timestamp":"2026-03-17T00:11:54.51466504Z","score":0.6354941297103067,"is_anomaly":false,"confidence":0.77120414661836,"method":"SEAD","details":"MAD!:w=0.33,s=0.77 RRCF-fast:w=0.16,s=0.64 RRCF-mid:w=0.16,s=0.63 RRCF-slow:w=0.13,s=0.58 COPOD!:w=0.23,s=0.47"} +{"timestamp":"2026-03-17T00:12:24.468983856Z","score":0.23791060937777925,"is_anomaly":false,"confidence":0.2887165119216498,"method":"SEAD","details":"MAD:w=0.32,s=0.05 RRCF-fast:w=0.16,s=0.26 RRCF-mid:w=0.16,s=0.18 RRCF-slow:w=0.13,s=0.23 COPOD!:w=0.23,s=0.54"} +{"timestamp":"2026-03-17T00:12:54.523435606Z","score":0.36588011409476123,"is_anomaly":false,"confidence":0.44401395380899333,"method":"SEAD","details":"MAD!:w=0.33,s=0.52 RRCF-fast:w=0.16,s=0.54 RRCF-mid:w=0.16,s=0.29 RRCF-slow:w=0.13,s=0.42 COPOD!:w=0.22,s=0.04"} +{"timestamp":"2026-03-17T00:13:24.557932977Z","score":0.6740342974775301,"is_anomaly":false,"confidence":0.8179745821013739,"method":"SEAD","details":"MAD!:w=0.32,s=0.98 RRCF-fast:w=0.16,s=0.88 RRCF-mid:w=0.16,s=0.65 RRCF-slow:w=0.13,s=0.84 COPOD!:w=0.23,s=0.01"} +{"timestamp":"2026-03-17T00:13:54.471663965Z","score":0.3046914159866931,"is_anomaly":false,"confidence":0.3697583855811129,"method":"SEAD","details":"MAD!:w=0.32,s=0.37 RRCF-fast:w=0.16,s=0.27 RRCF-mid:w=0.16,s=0.27 RRCF-slow:w=0.13,s=0.33 COPOD!:w=0.23,s=0.24"} +{"timestamp":"2026-03-17T00:14:24.559182011Z","score":0.6381230567460896,"is_anomaly":false,"confidence":0.7743944820382593,"method":"SEAD","details":"MAD!:w=0.32,s=0.62 RRCF-fast:w=0.16,s=0.66 RRCF-mid:w=0.16,s=0.70 RRCF-slow:w=0.13,s=0.56 COPOD!:w=0.23,s=0.66"} +{"timestamp":"2026-03-17T00:14:54.473342038Z","score":0.24445682903846674,"is_anomaly":false,"confidence":0.2969210550373755,"method":"SEAD","details":"MAD!:w=0.32,s=0.35 RRCF-fast:w=0.16,s=0.32 RRCF-mid:w=0.16,s=0.15 RRCF-slow:w=0.13,s=0.25 COPOD!:w=0.23,s=0.11"} +{"timestamp":"2026-03-17T00:15:24.510867581Z","score":0.7007475041097079,"is_anomaly":false,"confidence":0.8511387841094902,"method":"SEAD","details":"MAD!:w=0.32,s=0.88 RRCF-fast:w=0.16,s=0.57 RRCF-mid:w=0.16,s=0.48 RRCF-slow:w=0.13,s=0.59 COPOD!:w=0.23,s=0.76"} +{"timestamp":"2026-03-17T00:15:54.46919948Z","score":0.17044442840232255,"is_anomaly":false,"confidence":0.20702444560669836,"method":"SEAD","details":"MAD:w=0.32,s=0.00 RRCF-fast:w=0.16,s=0.25 RRCF-mid:w=0.16,s=0.16 RRCF-slow:w=0.13,s=0.22 COPOD!:w=0.23,s=0.32"} +{"timestamp":"2026-03-17T00:16:24.56458385Z","score":0.640677124367779,"is_anomaly":false,"confidence":0.7781763694384618,"method":"SEAD","details":"MAD!:w=0.32,s=0.73 RRCF-fast:w=0.16,s=0.51 RRCF-mid:w=0.16,s=0.59 RRCF-slow:w=0.13,s=0.53 COPOD!:w=0.23,s=0.71"} +{"timestamp":"2026-03-17T00:16:54.47379651Z","score":0.13185099275783768,"is_anomaly":false,"confidence":0.16014826025261966,"method":"SEAD","details":"MAD:w=0.32,s=0.06 RRCF-fast:w=0.16,s=0.05 RRCF-mid:w=0.17,s=0.06 RRCF-slow:w=0.13,s=0.17 COPOD!:w=0.23,s=0.31"} +{"timestamp":"2026-03-17T00:17:24.571802106Z","score":0.5774431425709815,"is_anomaly":false,"confidence":0.7013713946575573,"method":"SEAD","details":"MAD!:w=0.32,s=0.66 RRCF-fast:w=0.16,s=0.61 RRCF-mid:w=0.17,s=0.53 RRCF-slow:w=0.13,s=0.52 COPOD!:w=0.23,s=0.51"} +{"timestamp":"2026-03-17T00:17:54.468506798Z","score":0.15334830609528605,"is_anomaly":false,"confidence":0.18656284300260748,"method":"SEAD","details":"MAD:w=0.32,s=0.10 RRCF-fast:w=0.16,s=0.25 RRCF-mid:w=0.17,s=0.16 RRCF-slow:w=0.13,s=0.13 COPOD!:w=0.23,s=0.17"} +{"timestamp":"2026-03-17T00:18:24.511754987Z","score":0.7824510968126063,"is_anomaly":false,"confidence":0.9519264010726208,"method":"SEAD","details":"MAD!:w=0.32,s=0.78 RRCF-fast:w=0.16,s=0.85 RRCF-mid:w=0.17,s=0.82 RRCF-slow:w=0.13,s=0.79 COPOD!:w=0.23,s=0.71"} +{"timestamp":"2026-03-17T00:18:54.520310466Z","score":0.3044199962246858,"is_anomaly":false,"confidence":0.37035596550529004,"method":"SEAD","details":"MAD:w=0.32,s=0.09 RRCF-fast:w=0.16,s=0.61 RRCF-mid:w=0.17,s=0.00 RRCF-slow:w=0.13,s=0.28 COPOD!:w=0.23,s=0.62"} +{"timestamp":"2026-03-17T00:19:24.493499942Z","score":0.24838773001955727,"is_anomaly":false,"confidence":0.30218736847747424,"method":"SEAD","details":"MAD:w=0.32,s=0.08 RRCF-fast:w=0.15,s=0.48 RRCF-mid:w=0.17,s=0.26 RRCF-slow:w=0.13,s=0.31 COPOD!:w=0.23,s=0.28"} +{"timestamp":"2026-03-17T00:19:54.515755725Z","score":0.3275370611169416,"is_anomaly":false,"confidence":0.39848008019551145,"method":"SEAD","details":"MAD!:w=0.32,s=0.51 RRCF-fast:w=0.15,s=0.37 RRCF-mid:w=0.17,s=0.37 RRCF-slow:w=0.13,s=0.22 COPOD!:w=0.23,s=0.07"} +{"timestamp":"2026-03-17T00:20:24.517052042Z","score":0.24579164767807263,"is_anomaly":false,"confidence":0.299028986656189,"method":"SEAD","details":"MAD!:w=0.32,s=0.41 RRCF-fast:w=0.15,s=0.28 RRCF-mid:w=0.17,s=0.27 RRCF-slow:w=0.13,s=0.16 COPOD!:w=0.23,s=0.03"} +{"timestamp":"2026-03-17T00:20:54.510755205Z","score":0.9086408004336972,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.32,s=0.76 RRCF-fast!:w=0.15,s=0.98 RRCF-mid!:w=0.17,s=1.00 RRCF-slow!:w=0.13,s=0.91 COPOD!:w=0.23,s=1.00"} +{"timestamp":"2026-03-17T00:21:24.469679031Z","score":0.5624129651128503,"is_anomaly":false,"confidence":0.6842290233566857,"method":"SEAD","details":"MAD!:w=0.32,s=0.40 RRCF-fast!:w=0.15,s=0.99 RRCF-mid!:w=0.17,s=0.99 RRCF-slow:w=0.13,s=0.69 COPOD!:w=0.23,s=0.12"} +{"timestamp":"2026-03-17T00:21:54.511182222Z","score":0.7737682188525596,"is_anomaly":false,"confidence":0.9413628517324383,"method":"SEAD","details":"MAD!:w=0.32,s=0.84 RRCF-fast:w=0.15,s=0.87 RRCF-mid!:w=0.16,s=0.91 RRCF-slow:w=0.13,s=0.48 COPOD!:w=0.23,s=0.69"} +{"timestamp":"2026-03-17T00:22:24.470639855Z","score":0.4116148406102097,"is_anomaly":false,"confidence":0.5007687195357058,"method":"SEAD","details":"MAD!:w=0.32,s=0.14 RRCF-fast:w=0.15,s=0.79 RRCF-mid!:w=0.16,s=0.85 RRCF-slow:w=0.13,s=0.16 COPOD!:w=0.23,s=0.38"} +{"timestamp":"2026-03-17T00:22:54.560390807Z","score":0.7707992208978874,"is_anomaly":false,"confidence":0.9377507824934836,"method":"SEAD","details":"MAD!:w=0.32,s=0.80 RRCF-fast:w=0.15,s=0.84 RRCF-mid:w=0.16,s=0.77 RRCF-slow:w=0.13,s=0.60 COPOD!:w=0.23,s=0.78"} +{"timestamp":"2026-03-17T00:23:24.516958473Z","score":0.3276059370190424,"is_anomaly":false,"confidence":0.398563874300823,"method":"SEAD","details":"MAD!:w=0.32,s=0.13 RRCF-fast:w=0.15,s=0.50 RRCF-mid:w=0.16,s=0.78 RRCF-slow:w=0.13,s=0.19 COPOD!:w=0.23,s=0.25"} +{"timestamp":"2026-03-17T00:23:54.512544043Z","score":0.5272336584522285,"is_anomaly":false,"confidence":0.6414300408795787,"method":"SEAD","details":"MAD!:w=0.33,s=0.66 RRCF-fast:w=0.15,s=0.66 RRCF-mid:w=0.16,s=0.69 RRCF-slow:w=0.13,s=0.36 COPOD!:w=0.23,s=0.23"} +{"timestamp":"2026-03-17T00:24:42.661354281Z","score":0.8195561856908906,"is_anomaly":false,"confidence":0.9970682813272078,"method":"SEAD","details":"MAD!:w=0.32,s=0.52 RRCF-fast!:w=0.15,s=1.00 RRCF-mid!:w=0.16,s=1.00 RRCF-slow!:w=0.13,s=1.00 COPOD!:w=0.23,s=0.90"} +{"timestamp":"2026-03-17T00:25:24.514821763Z","score":0.5846116002600192,"is_anomaly":false,"confidence":0.713327054895191,"method":"SEAD","details":"MAD!:w=0.33,s=0.43 RRCF-fast:w=0.15,s=0.61 RRCF-mid!:w=0.16,s=0.82 RRCF-slow:w=0.13,s=0.69 COPOD!:w=0.23,s=0.56"} +{"timestamp":"2026-03-17T00:26:09.846771644Z","score":0.8014946907935424,"is_anomaly":false,"confidence":0.9779618588539817,"method":"SEAD","details":"MAD!:w=0.33,s=0.51 RRCF-fast!:w=0.15,s=0.97 RRCF-mid!:w=0.16,s=0.97 RRCF-slow!:w=0.13,s=0.97 COPOD!:w=0.23,s=0.89"} +{"timestamp":"2026-03-17T00:26:29.481574493Z","score":0.8159189688109262,"is_anomaly":false,"confidence":0.9955619676314221,"method":"SEAD","details":"MAD!:w=0.33,s=0.52 RRCF-fast!:w=0.15,s=0.99 RRCF-mid!:w=0.16,s=1.00 RRCF-slow!:w=0.13,s=1.00 COPOD!:w=0.23,s=0.91"} +{"timestamp":"2026-03-17T00:26:54.564068216Z","score":0.755409991509919,"is_anomaly":false,"confidence":0.9217305716179838,"method":"SEAD","details":"MAD!:w=0.33,s=0.52 RRCF-fast:w=0.15,s=0.89 RRCF-mid!:w=0.16,s=0.92 RRCF-slow!:w=0.13,s=0.94 COPOD!:w=0.23,s=0.79"} +{"timestamp":"2026-03-17T00:27:24.493179099Z","score":0.5233665038561,"is_anomaly":false,"confidence":0.6385974665237856,"method":"SEAD","details":"MAD!:w=0.34,s=0.42 RRCF-fast:w=0.15,s=0.40 RRCF-mid:w=0.16,s=0.79 RRCF-slow:w=0.13,s=0.70 COPOD!:w=0.23,s=0.46"} +{"timestamp":"2026-03-17T00:27:55.663058437Z","score":0.805070664519894,"is_anomaly":false,"confidence":0.9823251640047286,"method":"SEAD","details":"MAD!:w=0.34,s=0.52 RRCF-fast!:w=0.15,s=0.93 RRCF-mid!:w=0.16,s=0.97 RRCF-slow!:w=0.13,s=0.99 COPOD!:w=0.23,s=0.92"} +{"timestamp":"2026-03-17T00:28:24.559244058Z","score":0.6957195060610494,"is_anomaly":false,"confidence":0.849063312554423,"method":"SEAD","details":"MAD!:w=0.34,s=0.46 RRCF-fast:w=0.15,s=0.75 RRCF-mid!:w=0.16,s=0.91 RRCF-slow!:w=0.13,s=0.94 COPOD!:w=0.23,s=0.72"} +{"timestamp":"2026-03-17T00:28:54.519359891Z","score":0.5538118438834007,"is_anomaly":false,"confidence":0.6758777274504809,"method":"SEAD","details":"MAD!:w=0.34,s=0.43 RRCF-fast:w=0.15,s=0.74 RRCF-mid:w=0.16,s=0.76 RRCF-slow:w=0.13,s=0.79 COPOD!:w=0.23,s=0.35"} +{"timestamp":"2026-03-17T00:29:40.428334921Z","score":0.7922978003025897,"is_anomaly":false,"confidence":0.9669284661331159,"method":"SEAD","details":"MAD!:w=0.34,s=0.62 RRCF-fast!:w=0.15,s=0.89 RRCF-mid!:w=0.15,s=0.93 RRCF-slow!:w=0.13,s=0.97 COPOD!:w=0.23,s=0.79"} +{"timestamp":"2026-03-17T00:29:54.567612241Z","score":0.8272061033596416,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.34,s=0.68 RRCF-fast!:w=0.15,s=0.90 RRCF-mid!:w=0.15,s=0.93 RRCF-slow!:w=0.13,s=0.94 COPOD!:w=0.23,s=0.88"} +{"timestamp":"2026-03-17T00:30:24.517697642Z","score":0.4399558306209847,"is_anomaly":false,"confidence":0.5368220486922436,"method":"SEAD","details":"MAD!:w=0.34,s=0.43 RRCF-fast:w=0.15,s=0.44 RRCF-mid:w=0.15,s=0.68 RRCF-slow:w=0.13,s=0.76 COPOD!:w=0.23,s=0.11"} +{"timestamp":"2026-03-17T00:31:14.96968676Z","score":0.7543244566440525,"is_anomaly":false,"confidence":0.920406031720879,"method":"SEAD","details":"MAD!:w=0.34,s=0.51 RRCF-fast!:w=0.15,s=0.92 RRCF-mid!:w=0.15,s=0.93 RRCF-slow!:w=0.13,s=0.96 COPOD!:w=0.23,s=0.78"} +{"timestamp":"2026-03-17T00:31:24.61578081Z","score":0.8054284591895299,"is_anomaly":false,"confidence":0.9827617352561973,"method":"SEAD","details":"MAD!:w=0.35,s=0.67 RRCF-fast:w=0.15,s=0.76 RRCF-mid:w=0.15,s=0.87 RRCF-slow:w=0.13,s=0.89 COPOD!:w=0.23,s=0.96"} +{"timestamp":"2026-03-17T00:31:54.490004809Z","score":0.47943165165269463,"is_anomaly":false,"confidence":0.5851033681668183,"method":"SEAD","details":"MAD!:w=0.35,s=0.43 RRCF-fast:w=0.15,s=0.06 RRCF-mid:w=0.15,s=0.64 RRCF-slow:w=0.13,s=0.71 COPOD!:w=0.23,s=0.59"} +{"timestamp":"2026-03-17T00:32:44.396932284Z","score":0.669066992258537,"is_anomaly":false,"confidence":0.8165363078349696,"method":"SEAD","details":"MAD!:w=0.35,s=0.51 RRCF-fast:w=0.15,s=0.78 RRCF-mid:w=0.15,s=0.92 RRCF-slow!:w=0.13,s=0.97 COPOD!:w=0.23,s=0.52"} +{"timestamp":"2026-03-17T00:32:54.548919445Z","score":0.8161337228216774,"is_anomaly":false,"confidence":0.9960180735906238,"method":"SEAD","details":"MAD!:w=0.35,s=0.69 RRCF-fast:w=0.15,s=0.66 RRCF-mid:w=0.15,s=0.90 RRCF-slow:w=0.12,s=0.91 COPOD!:w=0.23,s=1.00"} +{"timestamp":"2026-03-17T00:33:24.627669455Z","score":0.43157541239772024,"is_anomaly":false,"confidence":0.5266991166340748,"method":"SEAD","details":"MAD!:w=0.35,s=0.43 RRCF-fast:w=0.15,s=0.20 RRCF-mid:w=0.15,s=0.68 RRCF-slow:w=0.12,s=0.45 COPOD!:w=0.23,s=0.40"} +{"timestamp":"2026-03-17T00:34:04.156997537Z","score":0.6096910537639071,"is_anomaly":false,"confidence":0.7440732956798175,"method":"SEAD","details":"MAD!:w=0.35,s=0.50 RRCF-fast:w=0.15,s=0.78 RRCF-mid:w=0.15,s=0.91 RRCF-slow!:w=0.12,s=0.94 COPOD!:w=0.23,s=0.29"} +{"timestamp":"2026-03-17T00:34:24.572745923Z","score":0.916562543302726,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.35,s=0.93 RRCF-fast:w=0.15,s=0.89 RRCF-mid:w=0.15,s=0.87 RRCF-slow:w=0.12,s=0.86 COPOD!:w=0.23,s=0.98"} +{"timestamp":"2026-03-17T00:34:54.467815583Z","score":0.4002680235578824,"is_anomaly":false,"confidence":0.48839607405373203,"method":"SEAD","details":"MAD!:w=0.35,s=0.42 RRCF-fast:w=0.15,s=0.24 RRCF-mid:w=0.15,s=0.66 RRCF-slow:w=0.12,s=0.70 COPOD!:w=0.23,s=0.14"} +{"timestamp":"2026-03-17T00:35:24.513948862Z","score":0.4812629652023275,"is_anomaly":false,"confidence":0.5873383222470631,"method":"SEAD","details":"MAD!:w=0.35,s=0.42 RRCF-fast:w=0.15,s=0.24 RRCF-mid:w=0.15,s=0.72 RRCF-slow:w=0.12,s=0.76 COPOD!:w=0.23,s=0.42"} +{"timestamp":"2026-03-17T00:35:54.467562954Z","score":0.45552196780736254,"is_anomaly":false,"confidence":0.5559237416205054,"method":"SEAD","details":"MAD!:w=0.35,s=0.43 RRCF-fast:w=0.15,s=0.39 RRCF-mid:w=0.15,s=0.68 RRCF-slow:w=0.12,s=0.71 COPOD!:w=0.23,s=0.25"} +{"timestamp":"2026-03-17T00:36:24.563269491Z","score":0.5863868575405031,"is_anomaly":false,"confidence":0.7156326125173055,"method":"SEAD","details":"MAD!:w=0.35,s=0.53 RRCF-fast:w=0.15,s=0.55 RRCF-mid:w=0.15,s=0.72 RRCF-slow:w=0.12,s=0.79 COPOD!:w=0.23,s=0.50"} +{"timestamp":"2026-03-17T00:36:54.469372755Z","score":0.4444857120914195,"is_anomaly":false,"confidence":0.5424549804966021,"method":"SEAD","details":"MAD!:w=0.35,s=0.42 RRCF-fast:w=0.15,s=0.10 RRCF-mid:w=0.15,s=0.65 RRCF-slow:w=0.12,s=0.67 COPOD!:w=0.23,s=0.44"} +{"timestamp":"2026-03-17T00:37:25.780090266Z","score":0.7115573252580776,"is_anomaly":false,"confidence":0.8683919516308252,"method":"SEAD","details":"MAD!:w=0.35,s=0.69 RRCF-fast:w=0.15,s=0.52 RRCF-mid:w=0.15,s=0.71 RRCF-slow:w=0.12,s=0.81 COPOD!:w=0.23,s=0.82"} +{"timestamp":"2026-03-17T00:37:54.46848Z","score":0.4148243654051952,"is_anomaly":false,"confidence":0.5062559648691448,"method":"SEAD","details":"MAD!:w=0.35,s=0.42 RRCF-fast:w=0.15,s=0.32 RRCF-mid:w=0.15,s=0.54 RRCF-slow:w=0.12,s=0.43 COPOD!:w=0.23,s=0.38"} +{"timestamp":"2026-03-17T00:38:26.412652666Z","score":0.6535265781399568,"is_anomaly":false,"confidence":0.8007591891687464,"method":"SEAD","details":"MAD!:w=0.35,s=0.74 RRCF-fast:w=0.15,s=0.28 RRCF-mid:w=0.15,s=0.77 RRCF-slow:w=0.12,s=0.73 COPOD!:w=0.23,s=0.65"} +{"timestamp":"2026-03-17T00:38:54.516146827Z","score":0.44295480027503104,"is_anomaly":false,"confidence":0.5427478216971255,"method":"SEAD","details":"MAD!:w=0.35,s=0.41 RRCF-fast:w=0.15,s=0.10 RRCF-mid:w=0.15,s=0.45 RRCF-slow:w=0.12,s=0.49 COPOD!:w=0.23,s=0.68"} +{"timestamp":"2026-03-17T00:39:26.168087281Z","score":0.7453219599695581,"is_anomaly":false,"confidence":0.9132350975434556,"method":"SEAD","details":"MAD!:w=0.35,s=0.79 RRCF-fast:w=0.15,s=0.50 RRCF-mid:w=0.15,s=0.77 RRCF-slow:w=0.12,s=0.75 COPOD!:w=0.23,s=0.81"} +{"timestamp":"2026-03-17T00:39:54.472740219Z","score":0.45051938061863595,"is_anomaly":false,"confidence":0.5520166218117089,"method":"SEAD","details":"MAD!:w=0.35,s=0.40 RRCF-fast:w=0.15,s=0.02 RRCF-mid:w=0.15,s=0.52 RRCF-slow:w=0.12,s=0.46 COPOD!:w=0.23,s=0.76"} +{"timestamp":"2026-03-17T00:40:24.51364472Z","score":0.6899180436441579,"is_anomaly":false,"confidence":0.8453492661213103,"method":"SEAD","details":"MAD!:w=0.35,s=0.73 RRCF-fast:w=0.15,s=0.35 RRCF-mid:w=0.15,s=0.74 RRCF-slow:w=0.12,s=0.74 COPOD!:w=0.23,s=0.80"} +{"timestamp":"2026-03-17T00:40:54.520854975Z","score":0.37033838133994823,"is_anomaly":false,"confidence":0.4537716932704985,"method":"SEAD","details":"MAD:w=0.35,s=0.11 RRCF-fast:w=0.15,s=0.09 RRCF-mid:w=0.15,s=0.38 RRCF-slow:w=0.12,s=0.50 COPOD!:w=0.23,s=0.89"} +{"timestamp":"2026-03-17T00:41:24.516789559Z","score":0.3796192239054773,"is_anomaly":false,"confidence":0.4651434112941598,"method":"SEAD","details":"MAD!:w=0.35,s=0.54 RRCF-fast:w=0.15,s=0.26 RRCF-mid:w=0.15,s=0.52 RRCF-slow:w=0.12,s=0.55 COPOD!:w=0.22,s=0.04"} +{"timestamp":"2026-03-17T00:41:54.515440764Z","score":0.29230114018250974,"is_anomaly":false,"confidence":0.35824775664732095,"method":"SEAD","details":"MAD!:w=0.35,s=0.27 RRCF-fast:w=0.15,s=0.11 RRCF-mid:w=0.15,s=0.51 RRCF-slow:w=0.12,s=0.52 COPOD!:w=0.23,s=0.18"} +{"timestamp":"2026-03-17T00:42:24.467637224Z","score":0.4210154044643792,"is_anomaly":false,"confidence":0.5160014910278934,"method":"SEAD","details":"MAD!:w=0.35,s=0.39 RRCF-fast:w=0.15,s=0.34 RRCF-mid:w=0.15,s=0.65 RRCF-slow:w=0.12,s=0.80 COPOD!:w=0.23,s=0.18"} +{"timestamp":"2026-03-17T00:42:54.511242109Z","score":0.6560003597774802,"is_anomaly":false,"confidence":0.8040018492688039,"method":"SEAD","details":"MAD!:w=0.35,s=0.64 RRCF-fast:w=0.15,s=0.68 RRCF-mid:w=0.14,s=0.72 RRCF-slow:w=0.12,s=0.76 COPOD!:w=0.23,s=0.57"} +{"timestamp":"2026-03-17T00:43:24.469999625Z","score":0.25442229099871094,"is_anomaly":false,"confidence":0.31182298821841525,"method":"SEAD","details":"MAD!:w=0.35,s=0.32 RRCF-fast:w=0.15,s=0.12 RRCF-mid:w=0.14,s=0.43 RRCF-slow:w=0.12,s=0.46 COPOD!:w=0.23,s=0.02"} +{"timestamp":"2026-03-17T00:43:55.460273445Z","score":0.560020698404855,"is_anomaly":false,"confidence":0.6863680338514464,"method":"SEAD","details":"MAD!:w=0.35,s=0.70 RRCF-fast:w=0.15,s=0.41 RRCF-mid:w=0.14,s=0.58 RRCF-slow:w=0.12,s=0.69 COPOD!:w=0.23,s=0.36"} +{"timestamp":"2026-03-17T00:44:24.468775828Z","score":0.29892401546051517,"is_anomaly":false,"confidence":0.36636483141965676,"method":"SEAD","details":"MAD:w=0.35,s=0.08 RRCF-fast:w=0.15,s=0.20 RRCF-mid:w=0.14,s=0.32 RRCF-slow:w=0.12,s=0.41 COPOD!:w=0.23,s=0.62"} +{"timestamp":"2026-03-17T00:44:54.611894306Z","score":0.8206579741707655,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.35,s=0.64 RRCF-fast!:w=0.15,s=0.97 RRCF-mid:w=0.14,s=0.90 RRCF-slow:w=0.12,s=0.91 COPOD!:w=0.23,s=0.89"} +{"timestamp":"2026-03-17T00:45:24.493779485Z","score":0.556844603299025,"is_anomaly":false,"confidence":0.6824753738849074,"method":"SEAD","details":"MAD!:w=0.35,s=0.42 RRCF-fast!:w=0.15,s=0.92 RRCF-mid:w=0.14,s=0.58 RRCF-slow:w=0.12,s=0.45 COPOD!:w=0.23,s=0.56"} +{"timestamp":"2026-03-17T00:45:54.568588107Z","score":0.66167869815055,"is_anomaly":false,"confidence":0.8109612883676952,"method":"SEAD","details":"MAD!:w=0.36,s=0.67 RRCF-fast:w=0.15,s=0.83 RRCF-mid:w=0.14,s=0.62 RRCF-slow:w=0.12,s=0.65 COPOD!:w=0.23,s=0.58"} +{"timestamp":"2026-03-17T00:46:24.487860833Z","score":0.8368791122902155,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.36,s=0.96 RRCF-fast!:w=0.15,s=0.96 RRCF-mid:w=0.14,s=0.92 RRCF-slow!:w=0.12,s=0.94 COPOD!:w=0.23,s=0.45"} +{"timestamp":"2026-03-17T00:46:54.530507806Z","score":0.7157889430419577,"is_anomaly":false,"confidence":0.8770486049359772,"method":"SEAD","details":"MAD!:w=0.35,s=0.67 RRCF-fast:w=0.15,s=0.73 RRCF-mid:w=0.14,s=0.70 RRCF-slow:w=0.12,s=0.73 COPOD!:w=0.23,s=0.79"} +{"timestamp":"2026-03-17T00:47:24.471176683Z","score":0.49133974990155777,"is_anomaly":false,"confidence":0.6020333876203691,"method":"SEAD","details":"MAD!:w=0.36,s=0.40 RRCF-fast:w=0.15,s=0.68 RRCF-mid:w=0.14,s=0.33 RRCF-slow:w=0.12,s=0.63 COPOD!:w=0.23,s=0.53"} +{"timestamp":"2026-03-17T00:47:54.485604672Z","score":0.7981343618328683,"is_anomaly":false,"confidence":0.9779455737638453,"method":"SEAD","details":"MAD!:w=0.36,s=0.91 RRCF-fast:w=0.15,s=0.89 RRCF-mid:w=0.14,s=0.83 RRCF-slow:w=0.12,s=0.91 COPOD!:w=0.23,s=0.49"} +{"timestamp":"2026-03-17T00:48:24.53308642Z","score":0.3115052522423312,"is_anomaly":false,"confidence":0.38178454497301517,"method":"SEAD","details":"MAD!:w=0.35,s=0.42 RRCF-fast:w=0.15,s=0.30 RRCF-mid:w=0.14,s=0.40 RRCF-slow:w=0.12,s=0.39 COPOD!:w=0.23,s=0.05"} +{"timestamp":"2026-03-17T00:48:54.466360265Z","score":0.3817454461661775,"is_anomaly":false,"confidence":0.4678717627101029,"method":"SEAD","details":"MAD!:w=0.35,s=0.40 RRCF-fast:w=0.15,s=0.52 RRCF-mid:w=0.14,s=0.35 RRCF-slow:w=0.12,s=0.48 COPOD!:w=0.23,s=0.23"} +{"timestamp":"2026-03-17T00:49:24.568372388Z","score":0.8009824824774452,"is_anomaly":false,"confidence":0.9816936645617536,"method":"SEAD","details":"MAD!:w=0.35,s=0.64 RRCF-fast:w=0.15,s=0.89 RRCF-mid:w=0.14,s=0.81 RRCF-slow:w=0.12,s=0.83 COPOD!:w=0.23,s=0.97"} +{"timestamp":"2026-03-17T00:49:54.53989929Z","score":0.44280175370801966,"is_anomaly":false,"confidence":0.5427030999822614,"method":"SEAD","details":"MAD!:w=0.35,s=0.41 RRCF-fast:w=0.15,s=0.58 RRCF-mid:w=0.14,s=0.29 RRCF-slow:w=0.12,s=0.25 COPOD!:w=0.23,s=0.59"} +{"timestamp":"2026-03-17T00:50:24.512763736Z","score":0.6356104477895811,"is_anomaly":false,"confidence":0.7790117304367657,"method":"SEAD","details":"MAD!:w=0.35,s=0.66 RRCF-fast:w=0.15,s=0.74 RRCF-mid:w=0.14,s=0.56 RRCF-slow:w=0.12,s=0.66 COPOD!:w=0.23,s=0.57"} +{"timestamp":"2026-03-17T00:50:56.175506381Z","score":0.7758514322843251,"is_anomaly":false,"confidence":0.9508927503119663,"method":"SEAD","details":"MAD!:w=0.35,s=0.95 RRCF-fast:w=0.15,s=0.89 RRCF-mid:w=0.14,s=0.78 RRCF-slow:w=0.12,s=0.88 COPOD!:w=0.23,s=0.38"} +{"timestamp":"2026-03-17T00:51:24.965474408Z","score":0.6137494702021442,"is_anomaly":false,"confidence":0.7522186560959451,"method":"SEAD","details":"MAD!:w=0.35,s=0.67 RRCF-fast:w=0.15,s=0.71 RRCF-mid:w=0.14,s=0.48 RRCF-slow:w=0.12,s=0.66 COPOD!:w=0.23,s=0.53"} +{"timestamp":"2026-03-17T00:51:54.518431419Z","score":0.37788724818123,"is_anomaly":false,"confidence":0.4649916546033775,"method":"SEAD","details":"MAD!:w=0.35,s=0.40 RRCF-fast:w=0.15,s=0.42 RRCF-mid:w=0.14,s=0.38 RRCF-slow:w=0.12,s=0.41 COPOD!:w=0.24,s=0.29"} +{"timestamp":"2026-03-17T00:52:28.905706591Z","score":0.5995654169545701,"is_anomaly":false,"confidence":0.7377674600413187,"method":"SEAD","details":"MAD!:w=0.35,s=0.63 RRCF-fast:w=0.15,s=0.86 RRCF-mid:w=0.14,s=0.68 RRCF-slow:w=0.12,s=0.90 COPOD!:w=0.24,s=0.19"} +{"timestamp":"2026-03-17T00:52:54.515010703Z","score":0.7077935291011631,"is_anomaly":false,"confidence":0.8709425517753189,"method":"SEAD","details":"MAD!:w=0.35,s=0.67 RRCF-fast:w=0.15,s=0.75 RRCF-mid:w=0.14,s=0.72 RRCF-slow:w=0.12,s=0.66 COPOD!:w=0.24,s=0.75"} +{"timestamp":"2026-03-17T00:53:24.472715608Z","score":0.3791758690430357,"is_anomaly":false,"confidence":0.46657730733331587,"method":"SEAD","details":"MAD!:w=0.35,s=0.41 RRCF-fast:w=0.15,s=0.66 RRCF-mid:w=0.14,s=0.41 RRCF-slow:w=0.12,s=0.39 COPOD!:w=0.24,s=0.13"} +{"timestamp":"2026-03-17T00:53:54.531662152Z","score":0.7751777518122484,"is_anomaly":false,"confidence":0.953859086703121,"method":"SEAD","details":"MAD!:w=0.35,s=0.67 RRCF-fast:w=0.15,s=0.82 RRCF-mid:w=0.14,s=0.79 RRCF-slow:w=0.12,s=0.72 COPOD!:w=0.24,s=0.93"} +{"timestamp":"2026-03-17T00:54:24.486449603Z","score":0.40004658649447344,"is_anomaly":false,"confidence":0.4922588022427428,"method":"SEAD","details":"MAD!:w=0.35,s=0.42 RRCF-fast:w=0.15,s=0.32 RRCF-mid:w=0.14,s=0.32 RRCF-slow:w=0.12,s=0.46 COPOD!:w=0.24,s=0.44"} +{"timestamp":"2026-03-17T00:54:54.517808418Z","score":0.6370695291589696,"is_anomaly":false,"confidence":0.7839164086292607,"method":"SEAD","details":"MAD!:w=0.35,s=0.50 RRCF-fast!:w=0.15,s=0.90 RRCF-mid:w=0.14,s=0.82 RRCF-slow:w=0.12,s=0.85 COPOD!:w=0.24,s=0.46"} +{"timestamp":"2026-03-17T00:55:24.511906736Z","score":0.2825225530341401,"is_anomaly":false,"confidence":0.3486275351594392,"method":"SEAD","details":"MAD!:w=0.35,s=0.40 RRCF-fast:w=0.15,s=0.37 RRCF-mid:w=0.14,s=0.16 RRCF-slow:w=0.12,s=0.43 COPOD!:w=0.24,s=0.05"} +{"timestamp":"2026-03-17T00:55:54.468392328Z","score":0.3494187363947553,"is_anomaly":false,"confidence":0.4311761715996845,"method":"SEAD","details":"MAD!:w=0.35,s=0.40 RRCF-fast:w=0.15,s=0.61 RRCF-mid:w=0.14,s=0.39 RRCF-slow:w=0.12,s=0.38 COPOD!:w=0.24,s=0.07"} +{"timestamp":"2026-03-17T00:56:24.555757626Z","score":0.6292336784164052,"is_anomaly":false,"confidence":0.7764625655181236,"method":"SEAD","details":"MAD!:w=0.35,s=0.76 RRCF-fast:w=0.15,s=0.66 RRCF-mid:w=0.14,s=0.62 RRCF-slow:w=0.12,s=0.58 COPOD!:w=0.24,s=0.45"} +{"timestamp":"2026-03-17T00:56:54.515822825Z","score":0.27369049499117093,"is_anomaly":false,"confidence":0.3377289410725687,"method":"SEAD","details":"MAD!:w=0.35,s=0.39 RRCF-fast:w=0.15,s=0.23 RRCF-mid:w=0.14,s=0.09 RRCF-slow:w=0.12,s=0.25 COPOD!:w=0.24,s=0.25"} +{"timestamp":"2026-03-17T00:57:24.51409927Z","score":0.6569187442691995,"is_anomaly":false,"confidence":0.8106254178827633,"method":"SEAD","details":"MAD!:w=0.35,s=0.74 RRCF-fast:w=0.15,s=0.56 RRCF-mid:w=0.14,s=0.54 RRCF-slow:w=0.12,s=0.66 COPOD!:w=0.24,s=0.68"} +{"timestamp":"2026-03-17T00:57:54.471162918Z","score":0.24955931224537226,"is_anomaly":false,"confidence":0.3079515138519773,"method":"SEAD","details":"MAD!:w=0.35,s=0.39 RRCF-fast:w=0.15,s=0.39 RRCF-mid:w=0.14,s=0.07 RRCF-slow:w=0.12,s=0.20 COPOD!:w=0.24,s=0.09"} +{"timestamp":"2026-03-17T00:58:24.514918756Z","score":0.6847480652664575,"is_anomaly":false,"confidence":0.8460828126362371,"method":"SEAD","details":"MAD!:w=0.35,s=0.81 RRCF-fast:w=0.15,s=0.58 RRCF-mid:w=0.15,s=0.51 RRCF-slow:w=0.12,s=0.59 COPOD!:w=0.24,s=0.73"} +{"timestamp":"2026-03-17T00:58:54.472998654Z","score":0.3330783330883908,"is_anomaly":false,"confidence":0.4115555299567777,"method":"SEAD","details":"MAD!:w=0.34,s=0.36 RRCF-fast:w=0.15,s=0.28 RRCF-mid:w=0.15,s=0.24 RRCF-slow:w=0.12,s=0.34 COPOD!:w=0.24,s=0.37"} +{"timestamp":"2026-03-17T00:59:24.51211403Z","score":0.8020866586929682,"is_anomaly":false,"confidence":0.9910677672391388,"method":"SEAD","details":"MAD!:w=0.34,s=0.90 RRCF-fast:w=0.15,s=0.68 RRCF-mid:w=0.15,s=0.67 RRCF-slow:w=0.12,s=0.61 COPOD!:w=0.24,s=0.91"} +{"timestamp":"2026-03-17T00:59:54.468605334Z","score":0.36723644131152067,"is_anomaly":false,"confidence":0.453761692698563,"method":"SEAD","details":"MAD!:w=0.34,s=0.22 RRCF-fast:w=0.15,s=0.40 RRCF-mid:w=0.15,s=0.17 RRCF-slow:w=0.12,s=0.33 COPOD!:w=0.24,s=0.69"} +{"timestamp":"2026-03-17T01:00:24.502190053Z","score":0.763392216391594,"is_anomaly":false,"confidence":0.9432564564280632,"method":"SEAD","details":"MAD!:w=0.34,s=0.93 RRCF-fast:w=0.15,s=0.78 RRCF-mid:w=0.15,s=0.58 RRCF-slow:w=0.12,s=0.61 COPOD!:w=0.24,s=0.71"} +{"timestamp":"2026-03-17T01:00:54.520332577Z","score":0.28444054883915426,"is_anomaly":false,"confidence":0.3514581081670935,"method":"SEAD","details":"MAD!:w=0.34,s=0.19 RRCF-fast:w=0.15,s=0.23 RRCF-mid:w=0.15,s=0.33 RRCF-slow:w=0.12,s=0.45 COPOD!:w=0.24,s=0.34"} +{"timestamp":"2026-03-17T01:01:24.512736304Z","score":0.26955020463728874,"is_anomaly":false,"confidence":0.333059422661449,"method":"SEAD","details":"MAD!:w=0.34,s=0.19 RRCF-fast:w=0.15,s=0.44 RRCF-mid:w=0.15,s=0.38 RRCF-slow:w=0.12,s=0.39 COPOD!:w=0.24,s=0.14"} +{"timestamp":"2026-03-17T01:01:54.565747357Z","score":0.4097733540779433,"is_anomaly":false,"confidence":0.506793188234749,"method":"SEAD","details":"MAD!:w=0.34,s=0.54 RRCF-fast:w=0.15,s=0.46 RRCF-mid:w=0.15,s=0.47 RRCF-slow:w=0.12,s=0.48 COPOD!:w=0.24,s=0.12"} +{"timestamp":"2026-03-17T01:02:24.521183506Z","score":0.29096616213108273,"is_anomaly":false,"confidence":0.35985665614263407,"method":"SEAD","details":"MAD!:w=0.34,s=0.38 RRCF-fast:w=0.15,s=0.24 RRCF-mid:w=0.15,s=0.38 RRCF-slow:w=0.12,s=0.46 COPOD!:w=0.24,s=0.05"} +{"timestamp":"2026-03-17T01:02:54.563331759Z","score":0.865144394438597,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.34,s=0.88 RRCF-fast!:w=0.15,s=0.92 RRCF-mid!:w=0.15,s=0.92 RRCF-slow:w=0.12,s=0.83 COPOD!:w=0.25,s=0.80"} +{"timestamp":"2026-03-17T01:03:25.867535709Z","score":0.5374705303834162,"is_anomaly":false,"confidence":0.6641049476772675,"method":"SEAD","details":"MAD!:w=0.34,s=0.33 RRCF-fast!:w=0.15,s=0.91 RRCF-mid!:w=0.15,s=0.88 RRCF-slow:w=0.12,s=0.35 COPOD!:w=0.25,s=0.48"} +{"timestamp":"2026-03-17T01:03:54.514872233Z","score":0.8491204383858635,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.34,s=0.91 RRCF-fast!:w=0.15,s=0.92 RRCF-mid!:w=0.15,s=0.91 RRCF-slow:w=0.12,s=0.83 COPOD!:w=0.25,s=0.70"} +{"timestamp":"2026-03-17T01:04:24.518234263Z","score":0.38512432867481367,"is_anomaly":false,"confidence":0.47523620324784976,"method":"SEAD","details":"MAD:w=0.34,s=0.10 RRCF-fast:w=0.15,s=0.82 RRCF-mid!:w=0.15,s=0.86 RRCF-slow:w=0.12,s=0.43 COPOD!:w=0.25,s=0.22"} diff --git a/evaluation/data/pipeline_batch-out_run3/baseline_metrics.csv b/evaluation/data/pipeline_batch-out_run3/baseline_metrics.csv new file mode 100644 index 0000000..0c0e11e --- /dev/null +++ b/evaluation/data/pipeline_batch-out_run3/baseline_metrics.csv @@ -0,0 +1,3248 @@ +timestamp,cpu_percent,cpu_count,cpu_freq_current,memory_percent,memory_available_mb,memory_used_mb,swap_percent,disk_io_read_mb_s,disk_io_write_mb_s,disk_io_read_count,disk_io_write_count,network_sent_mb_s,network_recv_mb_s,network_packets_sent,network_packets_recv,network_errin,network_errout,network_dropin,network_dropout,tixstream_active,transfer_job_manager_active +1773693249.813401,1.10,4,3992.50,48.74,1779.23,1908.29,0.00,1.989917,0.000195,258,2,0.000000,0.000020,65393382,32014046,0,0,89885,0,1,1 +1773693254.814149,0.70,4,3992.50,48.76,1778.27,1909.23,0.00,61822.921869,68611.076825,4230499,3465220,0.000000,0.000030,65393382,32014049,0,0,89888,0,1,1 +1773693259.810430,0.65,4,3992.50,48.79,1777.28,1910.22,0.00,3521056071085.366211,3521056071084.417480,4228996,3464458,0.000000,0.000020,65393382,32014051,0,0,89890,0,1,1 +1773693264.813677,0.80,4,3992.50,49.18,1762.03,1925.47,0.00,3516153549490.479492,3516153542708.835449,11,0,0.000000,0.000030,65393382,32014054,0,0,89893,0,1,1 +1773693269.814062,0.75,4,3992.50,49.18,1762.07,1925.43,0.00,0.053512,0.000000,75,0,0.000000,0.000020,65393382,32014056,0,0,89895,0,1,1 +1773693274.813889,0.70,4,3992.50,49.18,1761.83,1925.67,0.00,2.121948,0.000195,258,2,0.000000,0.000030,65393382,32014059,0,0,89898,0,1,1 +1773693279.813761,16.71,4,3992.50,49.78,1738.53,1948.92,0.00,61824.054471,68612.728942,4228999,3464790,40.067083,0.023394,65397848,32015618,0,0,89900,0,1,1 +1773693284.814056,0.75,4,3992.50,49.79,1738.06,1949.39,0.00,3518229694646.785156,3518229687858.685059,258,2,0.000008,0.000038,65397849,32015622,0,0,89903,0,1,1 +1773693289.809449,0.60,4,3992.50,49.79,1738.06,1949.39,0.00,3521681705360.040527,10.684844,253,762,0.000000,0.000020,65397849,32015624,0,0,89905,0,1,1 +1773693294.813547,0.85,4,3992.50,49.92,1735.41,1954.50,0.00,0.517252,3515556146627.242188,258,2,0.000000,0.000030,65397849,32015627,0,0,89908,0,1,1 +1773693299.809572,0.85,4,3992.50,49.92,1735.14,1954.48,0.00,0.000000,0.000000,258,2,0.000000,0.000664,65397849,32015633,0,0,89910,0,1,1 +1773693304.809564,0.60,4,3992.50,49.92,1735.27,1954.36,0.00,3518442613912.567871,3518442613914.743164,11,0,0.000000,0.000030,65397849,32015636,0,0,89913,0,1,1 +1773693309.810633,0.70,4,3992.50,49.92,1735.28,1954.36,0.00,0.000000,0.000000,11,0,0.000000,0.000020,65397849,32015638,0,0,89915,0,1,1 +1773693314.814410,0.75,4,3992.50,49.92,1735.28,1954.36,0.00,0.180137,0.000000,205,0,0.000000,0.000030,65397849,32015641,0,0,89918,0,1,1 +1773693319.813809,0.95,4,3992.50,49.92,1735.28,1954.36,0.00,3518859881664.109375,0.000000,11,0,0.000000,0.000020,65397849,32015643,0,0,89920,0,1,1 +1773693324.814029,0.80,4,3992.50,50.13,1729.08,1962.73,0.00,0.053513,0.000000,75,0,0.000157,0.000210,65397861,32015658,0,0,89923,0,1,1 +1773693329.813933,0.70,4,3992.50,50.12,1729.25,1962.42,0.00,3518505236367.087402,0.000000,11,0,0.000016,0.000036,65397863,32015662,0,0,89925,0,1,1 +1773693334.814029,0.75,4,3992.50,50.15,1728.27,1963.39,0.00,1.657683,10.674991,253,762,0.000000,0.000030,65397863,32015665,0,0,89928,0,1,1 +1773693339.814036,0.65,4,3992.50,50.15,1728.27,1963.39,0.00,3518432426628.187988,3518432426619.170898,11,0,0.000000,0.000020,65397863,32015667,0,0,89930,0,1,1 +1773693344.814106,13.16,4,3992.50,50.15,1728.27,1963.39,0.00,61823.823482,68610.358030,4229002,3465104,40.064545,0.022440,65402247,32017150,0,0,89933,0,1,1 +1773693349.814108,0.65,4,3992.50,50.15,1728.27,1963.39,0.00,3518435575725.357422,3518435568938.549805,205,0,0.000000,0.000020,65402247,32017152,0,0,89935,0,1,1 +1773693354.812847,0.90,4,3992.50,50.34,1723.02,1970.96,0.00,61840.115491,68628.733995,4229002,3465148,0.000000,0.000030,65402247,32017155,0,0,89938,0,1,1 +1773693359.809896,0.70,4,3992.50,50.34,1722.92,1970.93,0.00,3520515331902.535156,3520515325111.800781,11,0,0.000000,0.000020,65402247,32017157,0,0,89940,0,1,1 +1773693364.809467,0.65,4,3992.50,50.35,1722.68,1971.18,0.00,1.657857,10.676110,253,762,0.000000,0.000674,65402247,32017164,0,0,89943,0,1,1 +1773693369.813693,0.75,4,3992.50,50.35,1722.68,1971.18,0.00,3515465949014.019531,3515465949005.009766,11,0,0.000000,0.000020,65402247,32017166,0,0,89945,0,1,1 +1773693374.809469,0.55,4,3992.50,50.35,1722.68,1971.18,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65402247,32017169,0,0,89948,0,1,1 +1773693379.813690,0.70,4,3992.50,50.35,1722.69,1971.17,0.00,61782.257534,68564.328349,4230505,3466042,0.001228,0.001243,65402256,32017185,0,0,89950,0,1,1 +1773693384.809474,0.80,4,3992.50,50.46,1723.98,1975.51,0.00,3521406687179.256348,3521406687178.338379,4229002,3465294,0.000213,0.000570,65402264,32017200,0,0,89953,0,1,1 +1773693389.813755,1.55,4,3992.50,50.41,1720.07,1973.79,0.00,0.000000,0.002342,4229002,3465297,0.000157,0.000200,65402276,32017214,0,0,89955,0,1,1 +1773693394.813628,0.65,4,3992.50,50.42,1719.73,1974.12,0.00,3518526552818.212402,3518526546031.157715,11,0,0.000000,0.000030,65402276,32017217,0,0,89958,0,1,1 +1773693399.809577,0.75,4,3992.50,50.23,1727.28,1966.58,0.00,61874.824770,68667.214689,4229002,3465300,0.000000,0.000020,65402276,32017219,0,0,89960,0,1,1 +1773693404.811610,0.60,4,3992.50,50.23,1727.06,1966.80,0.00,3517006980788.816406,3517006974004.688477,11,0,0.000000,0.000030,65402276,32017222,0,0,89963,0,1,1 +1773693409.810665,16.01,4,3992.50,51.90,1661.95,2031.90,0.00,0.000000,0.000000,11,0,40.074008,0.022791,65406738,32018731,0,0,89965,0,1,1 +1773693414.811792,0.80,4,3992.50,50.74,1707.75,1986.68,0.00,61820.498637,68606.979014,4230508,3466239,0.000008,0.000038,65406739,32018735,0,0,89968,0,1,1 +1773693419.809467,0.80,4,3992.50,50.50,1717.14,1977.30,0.00,3520074070198.937988,3520074063416.791992,253,762,0.000205,0.000552,65406746,32018748,0,0,89970,0,1,1 +1773693424.809576,0.65,4,3992.50,50.26,1726.46,1967.97,0.00,3518360110352.771973,3518360110343.754883,11,0,0.000031,0.000055,65406748,32018753,0,0,89973,0,1,1 +1773693429.813442,0.75,4,3992.50,50.28,1726.00,1968.43,0.00,0.000000,0.000000,11,0,0.000031,0.000688,65406750,32018761,0,0,89975,0,1,1 +1773693434.809589,0.65,4,3992.50,50.28,1726.00,1968.43,0.00,1.658994,10.683430,253,762,0.000000,0.000030,65406750,32018764,0,0,89978,0,1,1 +1773693439.809474,0.80,4,3992.50,50.28,1726.05,1968.38,0.00,0.000000,0.000000,253,762,0.002339,0.001852,65406781,32018793,0,0,89980,0,1,1 +1773693444.811650,0.75,4,3992.50,50.27,1726.18,1968.25,0.00,3516906160360.453125,3516906160351.439941,11,0,0.001741,0.001360,65406807,32018812,0,0,89983,0,1,1 +1773693449.809600,0.80,4,3992.50,50.46,1719.24,1975.71,0.00,61859.796796,68650.680020,4230508,3466309,0.000000,0.000020,65406807,32018814,0,0,89985,0,1,1 +1773693454.813563,0.65,4,3992.50,50.42,1721.12,1973.87,0.00,3515650209564.618164,3515650202781.843262,75,0,0.000107,0.000148,65406815,32018825,0,0,89988,0,1,1 +1773693459.814025,0.55,4,3992.50,50.42,1721.12,1973.87,0.00,0.126746,0.000000,205,0,0.000000,0.000020,65406815,32018827,0,0,89990,0,1,1 +1773693464.812335,0.80,4,3992.50,50.42,1721.12,1973.86,0.00,1.477941,10.678805,253,762,0.000031,0.000055,65406817,32018832,0,0,89993,0,1,1 +1773693469.813633,0.65,4,3992.50,50.43,1720.38,1974.61,0.00,3517523898574.877930,3517523898565.862793,11,0,0.000000,0.000020,65406817,32018834,0,0,89995,0,1,1 +1773693474.810579,16.33,4,3992.50,52.14,1653.23,2041.41,0.00,0.000000,0.000000,11,0,40.088818,0.022952,65411129,32020298,0,0,89998,0,1,1 +1773693479.814255,0.70,4,3992.50,51.16,1691.65,2002.96,0.00,61789.015890,68572.300917,4230511,3466507,0.000626,0.000280,65411142,32020308,0,0,90000,0,1,1 +1773693484.814059,0.80,4,3992.50,50.65,1711.54,1983.07,0.00,3518574923887.047363,3518574917098.508789,11,0,0.000056,0.000086,65411146,32020315,0,0,90003,0,1,1 +1773693489.813968,0.65,4,3992.50,50.50,1717.61,1976.99,0.00,61835.680156,68623.985959,4230515,3466520,0.000025,0.000051,65411148,32020319,0,0,90005,0,1,1 +1773693494.813591,0.70,4,3992.50,50.49,1717.63,1976.98,0.00,3518702318566.601074,3518702311777.908203,11,0,0.000000,0.000674,65411148,32020326,0,0,90008,0,1,1 +1773693499.814086,0.55,4,3992.50,50.49,1717.63,1976.98,0.00,0.000000,0.000000,11,0,0.000000,0.000020,65411148,32020328,0,0,90010,0,1,1 +1773693504.813580,0.65,4,3992.50,50.49,1717.63,1976.98,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65411148,32020331,0,0,90013,0,1,1 +1773693509.811575,0.90,4,3992.50,50.73,1708.36,1986.05,0.00,61859.355860,68650.331117,4230515,3466551,0.000000,0.000020,65411148,32020333,0,0,90015,0,1,1 +1773693514.814086,0.60,4,3992.50,50.73,1708.17,1986.29,0.00,3516671109983.930176,3516671103199.085449,11,0,0.000000,0.000030,65411148,32020336,0,0,90018,0,1,1 +1773693519.813826,0.65,4,3992.50,50.74,1707.93,1986.52,0.00,0.000000,0.000000,11,0,0.000132,0.000169,65411158,32020348,0,0,90020,0,1,1 +1773693524.814266,0.65,4,3992.50,50.74,1707.95,1986.52,0.00,0.000000,0.000000,11,0,0.000041,0.000077,65411162,32020355,0,0,90023,0,1,1 +1773693529.813787,0.70,4,3992.50,50.74,1707.94,1986.52,0.00,0.180291,0.000000,205,0,0.000000,0.000020,65411162,32020357,0,0,90025,0,1,1 +1773693534.813837,0.85,4,3992.50,50.75,1705.71,1987.01,0.00,3518402190929.747559,0.000000,75,0,0.000000,0.000030,65411162,32020360,0,0,90028,0,1,1 +1773693539.809576,15.56,4,3992.50,51.68,1669.31,2023.52,0.00,61877.531857,68670.735541,4229014,3465872,40.097317,0.024254,65415559,32022059,0,0,90030,0,1,1 +1773693544.809452,0.80,4,3992.50,50.79,1704.45,1988.38,0.00,3518524330461.619629,3518524323674.090332,11,0,0.003085,0.001451,65415615,32022100,0,0,90033,0,1,1 +1773693549.810567,0.70,4,3992.50,50.48,1716.25,1976.59,0.00,61811.062660,68597.007511,4229015,3465979,0.000000,0.000020,65415615,32022102,0,0,90035,0,1,1 +1773693554.814355,0.65,4,3992.50,50.50,1715.48,1977.36,0.00,3515773107255.179199,3515773100481.870117,253,762,0.000000,0.000030,65415615,32022105,0,0,90038,0,1,1 +1773693559.813907,0.65,4,3992.50,50.51,1715.23,1977.60,0.00,0.517722,3518752937424.842285,258,2,0.000000,0.000664,65415615,32022111,0,0,90040,0,1,1 +1773693564.814085,0.90,4,3992.50,50.67,1711.31,1983.84,0.00,61820.480577,68609.950359,4229015,3466017,0.000000,0.000030,65415615,32022114,0,0,90043,0,1,1 +1773693569.814275,0.65,4,3992.50,50.64,1712.25,1982.82,0.00,0.000000,0.001562,4229015,3466019,0.000000,0.000020,65415615,32022116,0,0,90045,0,1,1 +1773693574.809455,0.70,4,3992.50,50.63,1712.66,1982.41,0.00,0.000000,0.000782,4229015,3466020,0.000000,0.000030,65415615,32022119,0,0,90048,0,1,1 +1773693579.809448,0.55,4,3992.50,50.66,1711.43,1983.64,0.00,3518442040507.719238,3518442033719.991211,205,0,0.000000,0.000020,65415615,32022121,0,0,90050,0,1,1 +1773693584.809508,0.75,4,3992.50,50.66,1711.43,1983.64,0.00,1.477424,10.675068,253,762,0.000056,0.000086,65415619,32022128,0,0,90053,0,1,1 +1773693589.810579,0.65,4,3992.50,50.67,1711.19,1983.88,0.00,0.000000,0.000000,253,762,0.000117,0.000160,65415629,32022140,0,0,90055,0,1,1 +1773693594.814229,0.90,4,3992.50,50.50,1718.29,1977.22,0.00,3515870409015.046875,3515870409005.855957,205,0,0.000000,0.000030,65415629,32022143,0,0,90058,0,1,1 +1773693599.809473,0.80,4,3992.50,50.47,1718.41,1975.89,0.00,3521787034804.846191,0.000000,11,0,0.000000,0.000020,65415629,32022145,0,0,90060,0,1,1 +1773693604.814181,14.94,4,3992.50,50.74,1707.74,1986.56,0.00,0.053465,0.000000,75,0,40.025562,0.026476,65420061,32024026,0,0,90063,0,1,1 +1773693609.813620,0.85,4,3992.50,50.55,1715.17,1979.13,0.00,0.000000,0.000000,75,0,0.003093,0.001424,65420118,32024065,0,0,90065,0,1,1 +1773693614.813700,0.60,4,3992.50,50.42,1720.06,1974.23,0.00,61823.805986,68611.567379,4229017,3466306,0.000000,0.000030,65420118,32024068,0,0,90068,0,1,1 +1773693619.814296,0.90,4,3992.50,50.43,1719.88,1974.41,0.00,3518018227780.396484,3518018220993.207520,205,0,0.000000,0.000020,65420118,32024070,0,0,90070,0,1,1 +1773693624.814277,0.85,4,3992.50,50.56,1715.91,1979.54,0.00,1.995124,0.000195,258,2,0.000000,0.000674,65420118,32024077,0,0,90073,0,1,1 +1773693629.809493,0.65,4,3992.50,50.58,1715.04,1980.44,0.00,3521807155712.182617,3521807155714.359863,11,0,0.000000,0.000020,65420118,32024079,0,0,90075,0,1,1 +1773693634.809502,0.55,4,3992.50,50.58,1715.04,1980.44,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65420118,32024082,0,0,90078,0,1,1 +1773693639.810040,0.65,4,3992.50,50.58,1715.04,1980.44,0.00,2.175156,0.000195,258,2,0.000000,0.000020,65420118,32024084,0,0,90080,0,1,1 +1773693644.809469,0.75,4,3992.50,50.60,1714.30,1981.18,0.00,0.000000,0.000000,258,2,0.000000,0.000030,65420118,32024087,0,0,90083,0,1,1 +1773693649.813503,0.70,4,3992.50,50.62,1713.66,1981.82,0.00,0.000000,0.000000,258,2,0.000056,0.000076,65420122,32024093,0,0,90085,0,1,1 +1773693654.813949,0.80,4,3992.50,50.72,1715.07,1985.75,0.00,61817.156791,68606.706150,4229017,3466408,0.000117,0.000170,65420132,32024106,0,0,90088,0,1,1 +1773693659.813774,0.70,4,3992.50,50.75,1714.02,1986.94,0.00,3518560157329.052246,3518560150540.654297,205,0,0.000000,0.000020,65420132,32024108,0,0,90090,0,1,1 +1773693664.813868,0.55,4,3992.50,50.75,1714.02,1986.94,0.00,3518371216905.126465,0.000000,11,0,0.000000,0.000030,65420132,32024111,0,0,90093,0,1,1 +1773693669.810591,15.08,4,3992.50,52.45,1647.33,2053.61,0.00,61865.408483,68657.886213,4229017,3466471,40.087655,0.019268,65424402,32025416,0,0,90095,0,1,1 +1773693674.814019,0.75,4,3992.50,51.36,1689.99,2010.95,0.00,3516025874094.022949,3516025867310.650391,11,0,0.003091,0.001458,65424459,32025458,0,0,90098,0,1,1 +1773693679.814074,0.75,4,3992.50,50.98,1704.79,1996.15,0.00,0.000000,0.000000,11,0,0.000308,0.000574,65424466,32025471,0,0,90100,0,1,1 +1773693684.813963,0.90,4,3992.50,51.17,1690.02,2003.55,0.00,0.180277,0.000000,205,0,0.001127,0.001232,65424475,32025488,0,0,90103,0,1,1 +1773693689.809532,0.55,4,3992.50,51.17,1689.86,2003.46,0.00,61889.240268,68684.616958,4230522,3467416,0.000000,0.000664,65424475,32025494,0,0,90105,0,1,1 +1773693694.812319,0.70,4,3992.50,51.17,1689.86,2003.46,0.00,3516477003689.949219,3516476996904.556641,11,0,0.000000,0.000030,65424475,32025497,0,0,90108,0,1,1 +1773693699.813490,0.65,4,3992.50,51.17,1689.86,2003.46,0.00,0.053503,0.000000,75,0,0.000000,0.000020,65424475,32025499,0,0,90110,0,1,1 +1773693704.813502,0.65,4,3992.50,51.17,1689.86,2003.46,0.00,0.000000,0.000000,75,0,0.000000,0.000030,65424475,32025502,0,0,90113,0,1,1 +1773693709.813929,0.60,4,3992.50,51.16,1690.24,2003.08,0.00,0.126747,0.000000,205,0,0.000000,0.000020,65424475,32025504,0,0,90115,0,1,1 +1773693714.810164,0.85,4,3992.50,51.26,1689.29,2006.77,0.00,61871.257615,68664.837261,4229019,3466682,0.000056,0.000086,65424479,32025511,0,0,90118,0,1,1 +1773693719.813847,0.75,4,3992.50,51.25,1689.23,2006.72,0.00,3515847982379.449707,3515847975596.106934,75,0,0.000321,0.000692,65424496,32025534,0,0,90120,0,1,1 +1773693724.813211,0.55,4,3992.50,51.25,1689.31,2006.65,0.00,0.000000,0.000000,75,0,0.000031,0.000055,65424498,32025539,0,0,90123,0,1,1 +1773693729.809597,0.60,4,3992.50,51.25,1689.35,2006.61,0.00,0.000000,0.000000,75,0,0.000031,0.000045,65424500,32025543,0,0,90125,0,1,1 +1773693734.813197,16.55,4,3992.50,51.08,1696.01,1999.94,0.00,3515906244394.968750,0.000000,11,0,40.036126,0.027949,65428887,32027531,0,0,90128,0,1,1 +1773693739.814158,1.30,4,3992.50,51.09,1695.61,2000.33,0.00,0.000000,0.000000,11,0,0.004635,0.002724,65428983,32027605,0,0,90130,0,1,1 +1773693744.810803,0.90,4,3992.50,51.13,1689.99,2001.96,0.00,0.180394,0.000000,205,0,0.001065,0.000431,65429005,32027621,0,0,90133,0,1,1 +1773693749.813723,0.70,4,3992.50,51.14,1689.76,2002.20,0.00,61788.624364,68573.339826,4229024,3466935,0.000000,0.000020,65429005,32027623,0,0,90135,0,1,1 +1773693754.814252,0.60,4,3992.50,51.14,1689.76,2002.20,0.00,0.000000,0.003125,4229024,3466938,0.000000,0.000674,65429005,32027630,0,0,90138,0,1,1 +1773693759.809452,0.65,4,3992.50,51.10,1691.41,2000.55,0.00,3521818007117.321777,3521818000322.116699,205,0,0.000000,0.000020,65429005,32027632,0,0,90140,0,1,1 +1773693764.812348,0.65,4,3992.50,51.10,1691.41,2000.55,0.00,61788.934586,68573.693481,4229024,3466944,0.000031,0.000055,65429007,32027637,0,0,90143,0,1,1 +1773693769.809566,0.70,4,3992.50,51.10,1691.41,2000.55,0.00,3520396026366.287109,3520396019573.819824,205,0,0.000008,0.000028,65429008,32027640,0,0,90145,0,1,1 +1773693774.809450,0.60,4,3992.50,51.10,1691.41,2000.55,0.00,1.477475,10.675440,253,762,0.000000,0.000030,65429008,32027643,0,0,90148,0,1,1 +1773693779.809565,0.85,4,3992.50,51.10,1692.63,2000.51,0.00,3518356917865.662598,3518356917856.645508,11,0,0.000031,0.000045,65429010,32027647,0,0,90150,0,1,1 +1773693784.813351,0.75,4,3992.50,51.10,1692.41,2000.74,0.00,0.053475,0.000000,75,0,0.000157,0.000210,65429022,32027662,0,0,90153,0,1,1 +1773693789.809570,0.60,4,3992.50,51.10,1692.41,2000.74,0.00,61881.369701,68676.081379,4230527,3467745,0.000050,0.000082,65429026,32027668,0,0,90155,0,1,1 +1773693794.809637,0.65,4,3992.50,51.10,1692.42,2000.73,0.00,3518389799978.274902,3518389799977.329590,4229024,3466985,0.000008,0.000038,65429027,32027672,0,0,90158,0,1,1 +1773693799.812534,15.06,4,3992.50,55.82,1507.79,2185.34,0.00,0.014054,0.013859,4229025,3467027,40.039045,0.023423,65433313,32029217,0,0,90160,0,1,1 +1773693804.812450,1.15,4,3992.50,51.09,1700.45,2000.32,0.00,3518496095941.881836,3518496089153.194336,11,0,0.003378,0.001688,65433391,32029277,0,0,90163,0,1,1 +1773693809.810562,0.60,4,3992.50,51.10,1700.26,2000.54,0.00,0.180342,0.000000,205,0,0.000000,0.000020,65433391,32029279,0,0,90165,0,1,1 +1773693814.813507,0.60,4,3992.50,51.12,1699.27,2001.52,0.00,61788.336591,68573.303727,4229027,3467206,0.000000,0.000030,65433391,32029282,0,0,90168,0,1,1 +1773693819.813584,0.80,4,3992.50,51.12,1699.28,2001.52,0.00,3518383036438.398926,3518383029649.539551,205,0,0.000000,0.000664,65433391,32029288,0,0,90170,0,1,1 +1773693824.813430,0.60,4,3992.50,51.12,1699.27,2001.53,0.00,3518545459748.925293,0.000000,11,0,0.000000,0.000030,65433391,32029291,0,0,90173,0,1,1 +1773693829.809472,0.65,4,3992.50,50.93,1706.68,1994.12,0.00,0.180416,0.000000,205,0,0.000000,0.000020,65433391,32029293,0,0,90175,0,1,1 +1773693834.814002,0.95,4,3992.50,51.13,1697.75,2001.75,0.00,3515252273616.747070,0.000000,11,0,0.000000,0.000030,65433391,32029296,0,0,90178,0,1,1 +1773693839.813463,0.60,4,3992.50,50.99,1702.84,1996.44,0.00,1.657893,10.676346,253,762,0.000000,0.000020,65433391,32029298,0,0,90180,0,1,1 +1773693844.813729,0.65,4,3992.50,50.99,1702.84,1996.44,0.00,61819.970717,68599.434364,4229027,3467245,0.000056,0.000086,65433395,32029305,0,0,90183,0,1,1 +1773693849.813966,0.70,4,3992.50,50.87,1707.77,1991.51,0.00,3518269761154.136230,3518269754374.634766,253,762,0.000109,0.000152,65433404,32029316,0,0,90185,0,1,1 +1773693854.813570,0.70,4,3992.50,50.87,1707.54,1991.74,0.00,3518716374690.228027,3518716374681.029785,205,0,0.000000,0.000030,65433404,32029319,0,0,90188,0,1,1 +1773693859.811325,0.70,4,3992.50,50.87,1707.54,1991.74,0.00,3520017302409.863770,0.000000,11,0,0.000000,0.000020,65433404,32029321,0,0,90190,0,1,1 +1773693864.809964,14.97,4,3992.50,56.35,1493.20,2206.09,0.00,0.000000,0.000000,11,0,32.859869,0.019872,65436956,32030704,0,0,90193,0,1,1 +1773693869.814330,0.90,4,3992.50,51.16,1696.29,2002.96,0.00,0.000000,0.000000,11,0,7.207782,0.003761,65437786,32030899,0,0,90195,0,1,1 +1773693874.814301,0.65,4,3992.50,51.16,1696.29,2002.96,0.00,61825.267151,68614.351971,4229028,3467445,0.000008,0.000038,65437787,32030903,0,0,90198,0,1,1 +1773693879.814155,0.65,4,3992.50,51.16,1696.29,2002.96,0.00,0.000000,0.002734,4229028,3467451,0.000000,0.000020,65437787,32030905,0,0,90200,0,1,1 +1773693884.809469,0.80,4,3992.50,51.16,1696.29,2002.96,0.00,3521737711191.221680,3521737704393.627441,258,2,0.000000,0.000674,65437787,32030912,0,0,90203,0,1,1 +1773693889.809474,0.65,4,3992.50,51.16,1696.05,2003.20,0.00,3518434233693.036621,3518434233695.211914,11,0,0.000000,0.000020,65437787,32030914,0,0,90205,0,1,1 +1773693894.813541,0.70,4,3992.50,51.17,1695.80,2003.46,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65437787,32030917,0,0,90208,0,1,1 +1773693899.810198,1.00,4,3992.50,51.21,1694.89,2005.10,0.00,0.180394,0.000000,205,0,0.000000,0.000020,65437787,32030919,0,0,90210,0,1,1 +1773693904.810356,0.75,4,3992.50,51.22,1694.45,2005.55,0.00,1.477395,10.674857,253,762,0.000000,0.000030,65437787,32030922,0,0,90213,0,1,1 +1773693909.813576,0.65,4,3992.50,51.22,1694.45,2005.55,0.00,61783.459388,68559.327670,4229028,3467610,0.000031,0.000045,65437789,32030926,0,0,90215,0,1,1 +1773693914.809478,0.60,4,3992.50,51.22,1694.45,2005.55,0.00,0.000000,0.000782,4229028,3467611,0.000134,0.000193,65437800,32030940,0,0,90218,0,1,1 +1773693919.814403,0.95,4,3992.50,51.22,1694.45,2005.54,0.00,3514974408684.471680,3514974401901.722656,205,0,0.000000,0.000020,65437800,32030942,0,0,90220,0,1,1 +1773693924.814148,0.85,4,3992.50,51.32,1689.75,2009.23,0.00,3518616514062.013672,0.000000,75,0,0.000000,0.000030,65437800,32030945,0,0,90223,0,1,1 +1773693929.809437,13.96,4,3992.50,56.32,1493.88,2204.96,0.00,0.126877,0.000000,205,0,22.860528,0.017567,65440393,32032140,0,0,90225,0,1,1 +1773693934.809488,2.01,4,3992.50,51.49,1682.84,2016.02,0.00,0.000000,0.000000,205,0,17.230622,0.014649,65442299,32033190,0,0,90228,0,1,1 +1773693939.810594,0.70,4,3992.50,51.50,1682.60,2016.27,0.00,61820.782097,68609.831070,4230533,3468571,0.000000,0.000020,65442299,32033192,0,0,90230,0,1,1 +1773693944.809952,0.70,4,3992.50,51.50,1682.60,2016.27,0.00,3518888540217.611816,3518888533426.369629,11,0,0.000000,0.000030,65442299,32033195,0,0,90233,0,1,1 +1773693949.810655,0.70,4,3992.50,51.50,1682.60,2016.26,0.00,0.053508,0.000000,75,0,0.000000,0.000664,65442299,32033201,0,0,90235,0,1,1 +1773693954.813552,0.90,4,3992.50,51.59,1678.87,2019.71,0.00,2.120646,0.000195,258,2,0.000000,0.000030,65442299,32033204,0,0,90238,0,1,1 +1773693959.813055,0.65,4,3992.50,51.58,1678.61,2019.62,0.00,61828.876693,68621.233106,4229030,3467842,0.000000,0.000020,65442299,32033206,0,0,90240,0,1,1 +1773693964.809460,0.60,4,3992.50,51.58,1678.61,2019.62,0.00,3520968698201.319336,3520968691406.926758,11,0,0.000000,0.000030,65442299,32033209,0,0,90243,0,1,1 +1773693969.809456,0.65,4,3992.50,51.58,1678.61,2019.62,0.00,61824.959352,68614.508737,4229030,3467878,0.000000,0.000020,65442299,32033211,0,0,90245,0,1,1 +1773693974.809480,0.65,4,3992.50,51.58,1678.61,2019.62,0.00,9.726126,10.678465,4230533,3468645,0.000031,0.000055,65442301,32033216,0,0,90248,0,1,1 +1773693979.809477,0.75,4,3992.50,51.60,1678.14,2020.09,0.00,3518439312296.292969,3518439305505.611816,205,0,0.000442,0.000738,65442319,32033240,0,0,90250,0,1,1 +1773693984.814046,0.90,4,3992.50,51.69,1677.34,2023.79,0.00,3515224708296.206055,0.000000,75,0,0.000204,0.000561,65442326,32033254,0,0,90253,0,1,1 +1773693989.811906,0.65,4,3992.50,51.69,1677.42,2023.75,0.00,3519944388527.270508,0.000000,11,0,0.000000,0.000020,65442326,32033256,0,0,90255,0,1,1 +1773693994.811604,13.16,4,3992.50,57.00,1469.36,2231.83,0.00,0.000000,0.000000,11,0,17.341361,0.014859,65444411,32034241,0,0,90258,0,1,1 +1773693999.813153,3.21,4,3992.50,51.92,1668.36,2032.85,0.00,0.000000,0.000000,11,0,22.717736,0.008383,65446691,32034794,0,0,90260,0,1,1 +1773694004.813846,0.70,4,3992.50,51.93,1668.12,2033.09,0.00,61816.348963,68605.143582,4229032,3468095,0.000000,0.000030,65446691,32034797,0,0,90263,0,1,1 +1773694009.810913,0.65,4,3992.50,51.93,1667.89,2033.32,0.00,3520502265944.558594,3520502259148.661133,258,2,0.000000,0.000020,65446691,32034799,0,0,90265,0,1,1 +1773694014.814039,0.90,4,3992.50,51.95,1674.10,2034.05,0.00,3516238763577.332520,3516238763579.506348,11,0,0.000000,0.000673,65446691,32034806,0,0,90268,0,1,1 +1773694019.814033,0.65,4,3992.50,51.90,1676.00,2032.09,0.00,61834.711926,68625.486793,4230535,3468898,0.000205,0.000552,65446698,32034819,0,0,90270,0,1,1 +1773694024.814554,0.70,4,3992.50,51.90,1676.00,2032.09,0.00,3518070720188.725586,3518070720187.817383,4229032,3468174,0.000031,0.000055,65446700,32034824,0,0,90273,0,1,1 +1773694029.813750,0.70,4,3992.50,51.90,1676.00,2032.09,0.00,3519002947835.851562,3519002941044.900879,11,0,0.000031,0.000045,65446702,32034828,0,0,90275,0,1,1 +1773694034.814055,0.60,4,3992.50,51.90,1676.00,2032.09,0.00,0.053512,0.000000,75,0,0.000000,0.000030,65446702,32034831,0,0,90278,0,1,1 +1773694039.813873,0.80,4,3992.50,51.90,1676.01,2032.08,0.00,0.126762,0.000000,205,0,0.002118,0.002129,65446736,32034861,0,0,90280,0,1,1 +1773694044.813853,0.95,4,3992.50,51.94,1669.86,2033.70,0.00,1.477447,10.675239,253,762,0.001148,0.000532,65446765,32034884,0,0,90283,0,1,1 +1773694049.810391,0.70,4,3992.50,51.75,1677.28,2026.31,0.00,0.518034,3520874799926.734375,258,2,0.000000,0.000020,65446765,32034886,0,0,90285,0,1,1 +1773694054.812268,0.60,4,3992.50,51.76,1677.07,2026.52,0.00,61809.267283,68599.760159,4230535,3468982,0.000000,0.000030,65446765,32034889,0,0,90288,0,1,1 +1773694059.809455,11.80,4,3992.50,56.42,1494.71,2208.85,0.00,3520417984156.175293,3520417977361.432129,75,0,8.824084,0.011722,65447977,32035653,0,0,90290,0,1,1 +1773694064.809469,5.36,4,3992.50,52.57,1645.15,2058.42,0.00,2.121869,0.000195,258,2,31.246966,0.019488,65451223,32037068,0,0,90293,0,1,1 +1773694069.810902,0.60,4,3992.50,51.89,1672.16,2031.42,0.00,3517428605222.591797,3517428605224.766113,11,0,0.000000,0.000020,65451223,32037070,0,0,90295,0,1,1 +1773694074.809577,0.95,4,3992.50,51.64,1681.93,2021.92,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65451223,32037073,0,0,90298,0,1,1 +1773694079.813991,0.55,4,3992.50,51.56,1684.65,2018.77,0.00,0.000000,0.000000,11,0,0.000000,0.000663,65451223,32037079,0,0,90300,0,1,1 +1773694084.813479,0.65,4,3992.50,51.60,1683.21,2020.21,0.00,61831.247739,68622.100806,4229034,3468449,0.000056,0.000086,65451227,32037086,0,0,90303,0,1,1 +1773694089.810657,0.70,4,3992.50,51.61,1682.72,2020.71,0.00,3520423832064.121094,3520423825269.949219,205,0,0.000025,0.000051,65451229,32037090,0,0,90305,0,1,1 +1773694094.811798,0.70,4,3992.50,51.61,1682.72,2020.71,0.00,0.000000,0.000000,205,0,0.000000,0.000030,65451229,32037093,0,0,90308,0,1,1 +1773694099.814308,0.70,4,3992.50,51.61,1682.94,2020.49,0.00,61793.711054,68580.650854,4229034,3468458,0.000000,0.000020,65451229,32037095,0,0,90310,0,1,1 +1773694104.814037,0.80,4,3992.50,51.75,1674.96,2026.30,0.00,3518628022072.776855,3518628015282.061035,205,0,0.000031,0.000055,65451231,32037100,0,0,90313,0,1,1 +1773694109.814093,0.75,4,3992.50,51.58,1681.76,2019.36,0.00,1.477425,10.675076,253,762,0.000134,0.000183,65451242,32037113,0,0,90315,0,1,1 +1773694114.813998,0.65,4,3992.50,51.59,1681.41,2019.70,0.00,61834.154603,68616.426255,4230537,3469252,0.000000,0.000030,65451242,32037116,0,0,90318,0,1,1 +1773694119.809596,0.65,4,3992.50,51.57,1681.86,2019.26,0.00,3521537715920.125000,3521537709122.925781,75,0,0.000000,0.000020,65451242,32037118,0,0,90320,0,1,1 +1773694124.813846,8.70,4,3992.50,56.36,1494.51,2206.59,0.00,3515448908569.314941,0.000000,11,0,2.809566,0.008926,65451813,32037540,0,0,90323,0,1,1 +1773694129.809571,13.62,4,3992.50,51.54,1683.23,2017.88,0.00,61877.822986,68673.966336,4229036,3468641,37.286458,0.015315,65455621,32038623,0,0,90325,0,1,1 +1773694134.813030,0.95,4,3992.50,51.69,1677.91,2023.71,0.00,3516004673764.037598,3516004666978.399414,11,0,0.000000,0.000030,65455621,32038626,0,0,90328,0,1,1 +1773694139.813169,0.60,4,3992.50,51.41,1688.43,2012.69,0.00,0.053514,0.000000,75,0,0.000000,0.000020,65455621,32038628,0,0,90330,0,1,1 +1773694144.811062,0.60,4,3992.50,51.43,1687.70,2013.42,0.00,3519920570994.238281,0.000000,11,0,0.000000,0.000674,65455621,32038635,0,0,90333,0,1,1 +1773694149.812337,0.70,4,3992.50,51.25,1694.57,2006.55,0.00,61818.883279,68608.556523,4230539,3469485,0.000000,0.000020,65455621,32038637,0,0,90335,0,1,1 +1773694154.809575,0.55,4,3992.50,51.28,1693.34,2007.78,0.00,3520381686903.500488,3520381680108.342773,11,0,0.000000,0.000030,65455621,32038640,0,0,90338,0,1,1 +1773694159.811653,0.75,4,3992.50,51.25,1694.50,2006.62,0.00,0.053493,0.000000,75,0,0.000000,0.000020,65455621,32038642,0,0,90340,0,1,1 +1773694164.809476,0.85,4,3992.50,51.46,1685.93,2014.87,0.00,0.126813,0.000000,205,0,0.000000,0.000030,65455621,32038645,0,0,90343,0,1,1 +1773694169.814029,0.65,4,3992.50,51.46,1685.73,2014.86,0.00,61768.487258,68552.985595,4229036,3468746,0.000031,0.000045,65455623,32038649,0,0,90345,0,1,1 +1773694174.814365,0.70,4,3992.50,51.46,1685.73,2014.86,0.00,3518200668385.795898,3518200661595.755859,11,0,0.000134,0.000193,65455634,32038663,0,0,90348,0,1,1 +1773694179.809577,0.60,4,3992.50,51.46,1685.73,2014.86,0.00,0.053567,0.000000,75,0,0.000008,0.000028,65455635,32038666,0,0,90350,0,1,1 +1773694184.809571,0.65,4,3992.50,51.01,1703.52,1997.07,0.00,61824.944565,68615.522884,4229036,3468763,0.000000,0.000030,65455635,32038669,0,0,90353,0,1,1 +1773694189.810339,15.42,4,3992.50,56.55,1486.52,2214.07,0.00,3517896879714.940918,3517896872923.292480,258,2,15.025190,0.014378,65457434,32039616,0,0,90355,0,1,1 +1773694194.813073,3.41,4,3992.50,52.60,1644.31,2059.44,0.00,3516514249483.340332,10.669166,253,762,25.024157,0.007666,65460044,32040122,0,0,90358,0,1,1 +1773694199.810154,0.65,4,3992.50,52.12,1663.08,2040.57,0.00,0.517978,3520492635119.667480,258,2,0.000000,0.000020,65460044,32040124,0,0,90360,0,1,1 +1773694204.813698,0.80,4,3992.50,51.88,1672.46,2031.19,0.00,3515945168123.484863,3515945168125.479004,205,0,0.000000,0.000030,65460044,32040127,0,0,90363,0,1,1 +1773694209.813537,0.65,4,3992.50,51.88,1672.41,2031.24,0.00,3518550357721.712891,0.000000,11,0,0.000000,0.000181,65460044,32040130,0,0,90365,0,1,1 +1773694214.812751,0.65,4,3992.50,51.89,1672.16,2031.48,0.00,0.180302,0.000000,205,0,0.000000,0.000513,65460044,32040136,0,0,90368,0,1,1 +1773694219.813601,0.90,4,3992.50,51.87,1672.78,2030.87,0.00,3517839694664.551270,0.000000,75,0,0.000000,0.000020,65460044,32040138,0,0,90370,0,1,1 +1773694224.809484,0.85,4,3992.50,51.88,1674.55,2031.07,0.00,61885.573783,68682.991686,4230544,3469833,0.000000,0.000030,65460044,32040141,0,0,90373,0,1,1 +1773694229.809466,0.70,4,3992.50,51.88,1674.48,2031.03,0.00,3518449819097.389648,3518449812305.596680,11,0,0.000000,0.000020,65460044,32040143,0,0,90375,0,1,1 +1773694234.809475,0.60,4,3992.50,51.88,1674.48,2031.03,0.00,2.175387,0.000195,258,2,0.000031,0.000055,65460046,32040148,0,0,90378,0,1,1 +1773694239.809495,0.75,4,3992.50,51.88,1674.48,2031.03,0.00,61832.254348,68626.197803,4230544,3469860,0.000142,0.000191,65460058,32040162,0,0,90380,0,1,1 +1773694244.813598,0.60,4,3992.50,51.88,1674.48,2031.02,0.00,3515552381042.003906,3515552381041.058594,4229041,3469099,0.000000,0.000030,65460058,32040165,0,0,90383,0,1,1 +1773694249.809480,0.65,4,3992.50,51.85,1675.64,2029.88,0.00,3521337376863.229980,3521337370066.782715,11,0,0.000000,0.000020,65460058,32040167,0,0,90385,0,1,1 +1773694254.814604,12.53,4,3992.50,56.97,1473.68,2230.34,0.00,0.053461,0.000000,75,0,10.409768,0.011688,65461378,32040930,0,0,90388,0,1,1 +1773694259.813950,4.90,4,3992.50,53.09,1625.51,2078.52,0.00,3518897080874.616699,0.000000,11,0,29.653031,0.018945,65464558,32042290,0,0,90390,0,1,1 +1773694264.813947,0.55,4,3992.50,52.34,1654.82,2049.21,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65464558,32042293,0,0,90393,0,1,1 +1773694269.812607,0.70,4,3992.50,52.12,1663.51,2040.53,0.00,61851.260198,68645.092504,4230546,3470073,0.000000,0.000020,65464558,32042295,0,0,90395,0,1,1 +1773694274.813581,0.65,4,3992.50,52.01,1667.84,2036.20,0.00,3517751335394.325195,3517751328603.637695,11,0,0.000000,0.000352,65464558,32042300,0,0,90398,0,1,1 +1773694279.813505,0.75,4,3992.50,52.01,1667.55,2036.49,0.00,0.053516,0.000000,75,0,0.001229,0.001566,65464567,32042318,0,0,90400,0,1,1 +1773694284.809451,0.80,4,3992.50,52.01,1667.55,2036.46,0.00,0.126861,0.000000,205,0,0.000213,0.000570,65464575,32042333,0,0,90403,0,1,1 +1773694289.809599,0.90,4,3992.50,52.01,1669.82,2036.43,0.00,61822.939234,68614.055687,4229043,3469346,0.000000,0.000020,65464575,32042335,0,0,90405,0,1,1 +1773694294.813890,0.60,4,3992.50,52.01,1669.82,2036.43,0.00,3515420924342.170898,3515420917556.854492,11,0,0.000000,0.000030,65464575,32042338,0,0,90408,0,1,1 +1773694299.812365,0.60,4,3992.50,52.01,1669.82,2036.42,0.00,61843.811431,68637.060369,4229043,3469386,0.000031,0.000045,65464577,32042342,0,0,90410,0,1,1 +1773694304.810660,0.75,4,3992.50,52.01,1669.82,2036.42,0.00,3519637363111.211426,3519637356315.541504,258,2,0.000126,0.000185,65464587,32042355,0,0,90413,0,1,1 +1773694309.813793,0.70,4,3992.50,52.01,1669.82,2036.42,0.00,3516234017519.029297,3516234017521.203613,11,0,0.000000,0.000020,65464587,32042357,0,0,90415,0,1,1 +1773694314.813448,0.85,4,3992.50,52.31,1658.01,2048.23,0.00,61838.941806,68631.568709,4230546,3470170,0.000000,0.000030,65464587,32042360,0,0,90418,0,1,1 +1773694319.813895,9.47,4,3992.50,57.00,1474.36,2231.87,0.00,3518122866802.382812,3518122860008.655762,258,2,5.213762,0.009782,65465423,32042939,0,0,90420,0,1,1 +1773694324.809821,6.02,4,3992.50,52.86,1636.49,2069.73,0.00,3521306228343.683594,3521306228345.807129,75,0,34.880783,0.015482,65469073,32044036,0,0,90423,0,1,1 +1773694329.813606,0.65,4,3992.50,52.17,1663.49,2042.73,0.00,3515775934554.777832,0.000000,11,0,0.000031,0.000045,65469075,32044040,0,0,90425,0,1,1 +1773694334.813958,0.55,4,3992.50,52.04,1668.59,2037.63,0.00,61832.550983,68622.184839,4230720,3470387,0.000000,0.000030,65469075,32044043,0,0,90428,0,1,1 +1773694339.809474,0.85,4,3992.50,52.05,1668.38,2037.84,0.00,0.000000,0.002346,4230720,3470389,0.001418,0.001505,65469104,32044071,0,0,90430,0,1,1 +1773694344.809588,0.90,4,3992.50,51.96,1667.50,2034.29,0.00,3518357373218.613281,3518357366428.599609,75,0,0.001734,0.001675,65469129,32044091,0,0,90433,0,1,1 +1773694349.809469,0.75,4,3992.50,51.86,1671.52,2030.24,0.00,3518520305777.208496,0.000000,11,0,0.000000,0.000020,65469129,32044093,0,0,90435,0,1,1 +1773694354.813654,0.65,4,3992.50,51.84,1671.93,2029.83,0.00,0.053471,0.000000,75,0,0.000000,0.000030,65469129,32044096,0,0,90438,0,1,1 +1773694359.814326,0.65,4,3992.50,51.85,1671.68,2030.07,0.00,61828.551579,68617.936889,4230720,3470470,0.000000,0.000020,65469129,32044098,0,0,90440,0,1,1 +1773694364.810796,0.75,4,3992.50,51.85,1671.68,2030.07,0.00,3520922409141.770996,3520922402346.731934,11,0,0.000062,0.000080,65469133,32044105,0,0,90443,0,1,1 +1773694369.813338,0.65,4,3992.50,51.83,1672.41,2029.34,0.00,0.000000,0.000000,11,0,0.000083,0.000121,65469140,32044114,0,0,90445,0,1,1 +1773694374.814106,0.95,4,3992.50,51.85,1671.14,2029.94,0.00,61817.674220,68605.958869,4229217,3469726,0.000000,0.000030,65469140,32044117,0,0,90448,0,1,1 +1773694379.813441,0.65,4,3992.50,51.82,1671.82,2028.98,0.00,3518905787891.096680,3518905781100.810547,75,0,0.000000,0.000020,65469140,32044119,0,0,90450,0,1,1 +1773694384.813895,5.11,4,3992.50,56.82,1476.29,2224.52,0.00,3518117166468.136719,0.000000,11,0,1.006577,0.004964,65469423,32044346,0,0,90453,0,1,1 +1773694389.813666,10.46,4,3992.50,51.81,1672.36,2028.44,0.00,1.657791,10.675686,253,762,39.060118,0.021085,65473521,32045887,0,0,90455,0,1,1 +1773694394.809481,0.60,4,3992.50,51.79,1673.07,2027.72,0.00,3521384468939.496582,3521384468930.471680,11,0,0.000000,0.000030,65473521,32045890,0,0,90458,0,1,1 +1773694399.809564,0.80,4,3992.50,51.82,1671.84,2028.95,0.00,2.175354,0.000195,258,2,0.000000,0.000020,65473521,32045892,0,0,90460,0,1,1 +1773694404.809467,0.80,4,3992.50,52.12,1661.41,2040.43,0.00,61826.223731,68618.054522,4229224,3469929,0.000000,0.000030,65473521,32045895,0,0,90463,0,1,1 +1773694409.809452,0.70,4,3992.50,52.12,1660.36,2040.43,0.00,3518447746029.651367,3518447739249.124512,253,762,0.000000,0.000664,65473521,32045901,0,0,90465,0,1,1 +1773694414.809602,0.70,4,3992.50,52.13,1659.62,2041.16,0.00,0.517660,3518331202960.712402,258,2,0.000000,0.000030,65473521,32045904,0,0,90468,0,1,1 +1773694419.811835,0.60,4,3992.50,52.15,1658.91,2041.87,0.00,3516866984745.580566,3516866984747.754883,11,0,0.000000,0.000020,65473521,32045906,0,0,90470,0,1,1 +1773694424.814081,0.70,4,3992.50,52.15,1658.91,2041.87,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65473521,32045909,0,0,90473,0,1,1 +1773694429.813620,0.75,4,3992.50,51.97,1666.08,2034.71,0.00,0.000000,0.000000,11,0,0.000031,0.000045,65473523,32045913,0,0,90475,0,1,1 +1773694434.814351,0.85,4,3992.50,52.07,1664.31,2038.64,0.00,0.053508,0.000000,75,0,0.000126,0.000185,65473533,32045926,0,0,90478,0,1,1 +1773694439.814337,0.70,4,3992.50,52.07,1663.98,2038.85,0.00,61837.042290,68627.684396,4230727,3470774,0.000016,0.000036,65473535,32045930,0,0,90480,0,1,1 +1773694444.809462,0.70,4,3992.50,52.07,1663.98,2038.85,0.00,3521871603525.736816,3521871603524.789551,4229224,3470013,0.000000,0.000030,65473535,32045933,0,0,90483,0,1,1 +1773694449.809547,1.15,4,3992.50,51.83,1673.48,2029.35,0.00,3518376710491.949707,3518376703702.389648,75,0,0.003937,0.002937,65473571,32045967,0,0,90485,0,1,1 +1773694454.809620,14.87,4,3992.50,53.57,1605.35,2097.47,0.00,3518386013551.940918,0.000000,11,0,40.061858,0.023628,65477892,32047623,0,0,90488,0,1,1 +1773694459.814306,0.70,4,3992.50,52.86,1633.12,2069.70,0.00,0.180105,0.000000,205,0,0.000000,0.000020,65477892,32047625,0,0,90490,0,1,1 +1773694464.809495,1.00,4,3992.50,52.38,1647.45,2050.78,0.00,1.478865,10.685478,253,762,0.000000,0.000030,65477892,32047628,0,0,90493,0,1,1 +1773694469.810576,0.60,4,3992.50,52.39,1647.21,2051.02,0.00,0.000000,0.000000,253,762,0.000000,0.000020,65477892,32047630,0,0,90495,0,1,1 +1773694474.809719,0.65,4,3992.50,52.39,1646.97,2051.26,0.00,3519040836290.518066,3519040836281.445801,75,0,0.000000,0.000674,65477892,32047637,0,0,90498,0,1,1 +1773694479.810594,0.65,4,3992.50,52.39,1646.98,2051.25,0.00,1.603918,10.673327,253,762,0.000000,0.000020,65477892,32047639,0,0,90500,0,1,1 +1773694484.809661,0.65,4,3992.50,52.39,1646.98,2051.25,0.00,0.000000,0.000000,253,762,0.000000,0.000030,65477892,32047642,0,0,90503,0,1,1 +1773694489.809487,0.70,4,3992.50,52.19,1654.80,2043.43,0.00,3518559489379.656738,3518559489370.458984,205,0,0.000000,0.000020,65477892,32047644,0,0,90505,0,1,1 +1773694494.809584,1.00,4,3992.50,52.80,1631.62,2067.04,0.00,0.000000,0.000000,205,0,0.000000,0.000030,65477892,32047647,0,0,90508,0,1,1 +1773694499.814254,0.60,4,3992.50,52.71,1634.52,2063.74,0.00,3515153682034.677734,0.000000,11,0,0.000157,0.000200,65477904,32047661,0,0,90510,0,1,1 +1773694504.814302,0.75,4,3992.50,52.68,1635.80,2062.48,0.00,0.000000,0.000000,11,0,0.000016,0.000046,65477906,32047666,0,0,90513,0,1,1 +1773694509.810661,0.70,4,3992.50,52.49,1643.32,2054.97,0.00,61881.987975,68677.848528,4230729,3471084,0.000000,0.000020,65477906,32047668,0,0,90515,0,1,1 +1773694514.809825,1.85,4,3992.50,52.29,1651.19,2047.11,0.00,0.000000,0.029497,4230729,3471104,0.002209,0.000724,65477928,32047686,0,0,90518,0,1,1 +1773694519.809621,14.80,4,3992.50,52.49,1643.05,2055.25,0.00,3518581192030.718262,3518581192029.849121,4229228,3470460,40.064077,0.023231,65482260,32049272,0,0,90520,0,1,1 +1773694524.809470,0.95,4,3992.50,52.50,1653.88,2055.41,0.00,3518543353583.472656,3518543346793.141602,75,0,0.000000,0.000030,65482260,32049275,0,0,90523,0,1,1 +1773694529.809476,0.80,4,3992.50,52.28,1662.07,2046.88,0.00,3518432758769.393066,0.000000,11,0,0.000000,0.000020,65482260,32049277,0,0,90525,0,1,1 +1773694534.809470,0.65,4,3992.50,52.29,1661.82,2047.13,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65482260,32049280,0,0,90528,0,1,1 +1773694539.813641,0.75,4,3992.50,52.29,1661.61,2047.34,0.00,0.053471,0.000000,75,0,0.000000,0.000663,65482260,32049286,0,0,90530,0,1,1 +1773694544.814474,0.95,4,3992.50,52.30,1661.36,2047.58,0.00,3517851420486.028809,0.000000,11,0,0.000000,0.000066,65482260,32049290,0,0,90533,0,1,1 +1773694549.810581,0.60,4,3992.50,52.27,1662.29,2046.66,0.00,0.000000,0.000000,11,0,0.000000,0.000020,65482260,32049292,0,0,90535,0,1,1 +1773694554.812142,1.00,4,3992.50,52.27,1657.77,2046.61,0.00,0.180217,0.000000,205,0,0.000000,0.000030,65482260,32049295,0,0,90538,0,1,1 +1773694559.809497,0.70,4,3992.50,52.23,1659.30,2045.00,0.00,1.478223,10.680845,253,762,0.000000,0.000020,65482260,32049297,0,0,90540,0,1,1 +1773694564.809931,0.65,4,3992.50,52.24,1659.06,2045.25,0.00,3518132194560.345215,3518132194551.148438,205,0,0.000157,0.000210,65482272,32049312,0,0,90543,0,1,1 +1773694569.812220,0.70,4,3992.50,52.24,1659.06,2045.25,0.00,61808.439474,68596.739413,4230731,3471363,0.000016,0.000036,65482274,32049316,0,0,90545,0,1,1 +1773694574.809484,0.75,4,3992.50,52.24,1658.82,2045.48,0.00,0.000000,0.010162,4230731,3471367,0.000000,0.000030,65482274,32049319,0,0,90548,0,1,1 +1773694579.813438,0.95,4,3992.50,52.06,1666.23,2038.07,0.00,3515656746314.307129,3515656739528.435547,11,0,0.002489,0.000952,65482301,32049346,0,0,90550,0,1,1 +1773694584.810494,13.81,4,3992.50,53.92,1593.17,2111.12,0.00,0.000000,0.000000,11,0,40.086496,0.026734,65486643,32051133,0,0,90553,0,1,1 +1773694589.814013,0.75,4,3992.50,53.18,1622.04,2082.20,0.00,0.000000,0.000000,11,0,0.000000,0.000020,65486643,32051135,0,0,90555,0,1,1 +1773694594.814323,0.75,4,3992.50,52.46,1650.39,2053.85,0.00,2.175255,0.000195,258,2,0.000000,0.000030,65486643,32051138,0,0,90558,0,1,1 +1773694599.810989,0.60,4,3992.50,52.44,1651.27,2052.96,0.00,0.000000,0.000000,258,2,0.000000,0.000020,65486643,32051140,0,0,90560,0,1,1 +1773694604.811003,0.65,4,3992.50,52.44,1651.23,2053.00,0.00,3518427446652.411133,3518427446654.406250,205,0,0.000000,0.000674,65486643,32051147,0,0,90563,0,1,1 +1773694609.809447,0.65,4,3992.50,52.44,1651.20,2053.04,0.00,1.995738,0.000195,258,2,0.000000,0.000020,65486643,32051149,0,0,90565,0,1,1 +1773694614.814081,1.00,4,3992.50,52.64,1643.20,2060.88,0.00,3515179363144.589844,3515179363146.583496,205,0,0.000000,0.000030,65486643,32051152,0,0,90568,0,1,1 +1773694619.810149,0.65,4,3992.50,52.59,1645.13,2058.97,0.00,3521206193177.731934,0.000000,11,0,0.000205,0.000552,65486650,32051165,0,0,90570,0,1,1 +1773694624.814351,0.70,4,3992.50,52.59,1645.13,2058.97,0.00,0.180122,0.000000,205,0,0.000039,0.000063,65486653,32051171,0,0,90573,0,1,1 +1773694629.814092,0.70,4,3992.50,52.58,1645.38,2058.71,0.00,3518620007525.980957,0.000000,75,0,0.000188,0.000226,65486667,32051187,0,0,90575,0,1,1 +1773694634.811916,0.60,4,3992.50,52.58,1645.38,2058.73,0.00,3519968676150.772949,0.000000,11,0,0.000000,0.000030,65486667,32051190,0,0,90578,0,1,1 +1773694639.810051,0.85,4,3992.50,52.57,1645.88,2058.23,0.00,0.000000,0.000000,11,0,0.001417,0.001190,65486696,32051217,0,0,90580,0,1,1 +1773694644.814381,0.85,4,3992.50,52.77,1638.87,2066.11,0.00,0.000000,0.000000,11,0,0.001063,0.000439,65486718,32051234,0,0,90583,0,1,1 +1773694649.810268,15.64,4,3992.50,53.08,1625.82,2078.34,0.00,0.180422,0.000000,205,0,40.101593,0.028431,65491183,32053181,0,0,90585,0,1,1 +1773694654.810943,0.65,4,3992.50,52.31,1655.95,2048.21,0.00,61818.672026,68608.646973,4229232,3471027,0.000000,0.000030,65491183,32053184,0,0,90588,0,1,1 +1773694659.811576,0.65,4,3992.50,52.02,1667.40,2036.76,0.00,3517991647590.900879,3517991640801.048828,11,0,0.000000,0.000020,65491183,32053186,0,0,90590,0,1,1 +1773694664.812373,0.65,4,3992.50,52.02,1667.40,2036.76,0.00,1.657451,10.673495,253,762,0.000031,0.000055,65491185,32053191,0,0,90593,0,1,1 +1773694669.814104,0.80,4,3992.50,52.00,1668.44,2035.72,0.00,3517219042576.347656,3517219042567.333496,11,0,0.000008,0.000672,65491186,32053198,0,0,90595,0,1,1 +1773694674.813545,0.75,4,3992.50,51.99,1672.66,2035.68,0.00,0.053522,0.000000,75,0,0.000000,0.000030,65491186,32053201,0,0,90598,0,1,1 +1773694679.810147,0.85,4,3992.50,52.13,1667.29,2041.04,0.00,61869.189425,68664.687196,4229232,3471093,0.000000,0.000020,65491186,32053203,0,0,90600,0,1,1 +1773694684.813852,0.60,4,3992.50,52.13,1667.34,2041.04,0.00,0.000000,0.005465,4229232,3471095,0.000056,0.000086,65491190,32053210,0,0,90603,0,1,1 +1773694689.809400,0.75,4,3992.50,51.83,1679.04,2029.34,0.00,3521572746978.131348,3521572740181.247070,11,0,0.000025,0.000051,65491192,32053214,0,0,90605,0,1,1 +1773694694.809677,0.65,4,3992.50,51.90,1676.37,2032.01,0.00,61823.771781,68614.232581,4229232,3471098,0.000157,0.000210,65491204,32053229,0,0,90608,0,1,1 +1773694699.810013,0.70,4,3992.50,51.90,1676.30,2032.07,0.00,0.000000,0.006250,4229232,3471102,0.000000,0.000020,65491204,32053231,0,0,90610,0,1,1 +1773694704.813413,0.85,4,3992.50,52.18,1666.68,2043.14,0.00,3516046305889.098633,3516046299102.688965,205,0,0.000000,0.000030,65491204,32053234,0,0,90613,0,1,1 +1773694709.813891,0.75,4,3992.50,52.18,1666.70,2043.10,0.00,0.000000,0.000000,205,0,0.000000,0.000020,65491204,32053236,0,0,90615,0,1,1 +1773694714.813778,15.42,4,3992.50,53.10,1630.88,2078.91,0.00,3518516409279.985840,0.000000,11,0,40.065543,0.025687,65495541,32054977,0,0,90618,0,1,1 +1773694719.811470,0.60,4,3992.50,52.41,1657.89,2051.91,0.00,1.658481,10.680127,253,762,0.000008,0.000028,65495542,32054980,0,0,90620,0,1,1 +1773694724.813925,0.80,4,3992.50,52.08,1670.91,2038.89,0.00,3516710572214.769531,3516710572205.756836,11,0,0.000000,0.000030,65495542,32054983,0,0,90623,0,1,1 +1773694729.809494,0.70,4,3992.50,51.92,1677.01,2032.78,0.00,61882.052115,68679.065344,4229235,3471279,0.000000,0.000020,65495542,32054985,0,0,90625,0,1,1 +1773694734.811018,0.70,4,3992.50,51.97,1674.98,2034.82,0.00,3517365414961.367188,3517365408170.270508,258,2,0.000000,0.000673,65495542,32054992,0,0,90628,0,1,1 +1773694739.809449,1.05,4,3992.50,51.97,1677.16,2034.89,0.00,3519541226315.886230,3519541226318.062012,11,0,0.000000,0.000020,65495542,32054994,0,0,90630,0,1,1 +1773694744.809471,0.60,4,3992.50,51.97,1677.16,2034.89,0.00,0.180273,0.000000,205,0,0.000000,0.000030,65495542,32054997,0,0,90633,0,1,1 +1773694749.810680,0.70,4,3992.50,51.95,1678.18,2033.87,0.00,1.994635,0.000195,258,2,0.000000,0.000020,65495542,32054999,0,0,90635,0,1,1 +1773694754.809487,0.65,4,3992.50,51.98,1676.95,2035.09,0.00,61849.521397,68645.374324,4230738,3472109,0.000000,0.000063,65495542,32055003,0,0,90638,0,1,1 +1773694759.809451,0.70,4,3992.50,51.98,1676.74,2035.31,0.00,3518462579197.469238,3518462572405.362793,11,0,0.000157,0.000200,65495554,32055017,0,0,90640,0,1,1 +1773694764.810117,0.85,4,3992.50,52.08,1669.03,2038.97,0.00,1.657494,10.673774,253,762,0.000016,0.000046,65495556,32055022,0,0,90643,0,1,1 +1773694769.813528,0.75,4,3992.50,51.97,1673.29,2034.64,0.00,61793.136022,68571.590628,4230738,3472130,0.000000,0.000020,65495556,32055024,0,0,90645,0,1,1 +1773694774.813498,0.65,4,3992.50,51.97,1673.05,2034.89,0.00,3518457657543.376953,3518457650751.187500,75,0,0.000000,0.000030,65495556,32055027,0,0,90648,0,1,1 +1773694779.813509,14.86,4,3992.50,53.68,1606.09,2101.85,0.00,61827.037317,68618.252674,4229236,3471431,40.065409,0.025294,65499910,32056645,0,0,90650,0,1,1 +1773694784.810465,0.60,4,3992.50,52.84,1639.15,2068.79,0.00,3520580656813.577148,3520580650018.263672,11,0,0.000000,0.000030,65499910,32056648,0,0,90653,0,1,1 +1773694789.813446,0.85,4,3992.50,52.38,1657.32,2050.62,0.00,0.000000,0.000000,11,0,0.000000,0.000020,65499910,32056650,0,0,90655,0,1,1 +1773694794.813434,0.95,4,3992.50,52.41,1661.93,2052.08,0.00,0.180274,0.000000,205,0,0.000000,0.000030,65499910,32056653,0,0,90658,0,1,1 +1773694799.812061,0.65,4,3992.50,52.37,1663.17,2050.48,0.00,61853.748899,68648.241155,4230739,3472380,0.000000,0.000664,65499910,32056659,0,0,90660,0,1,1 +1773694804.813503,1.25,4,3992.50,52.62,1653.43,2060.04,0.00,3517422558470.157227,3517422551688.684570,253,762,0.000000,0.000030,65499910,32056662,0,0,90663,0,1,1 +1773694809.813554,0.70,4,3992.50,52.42,1661.07,2052.40,0.00,61837.344435,68618.098333,4234138,3472459,0.000000,0.000020,65499910,32056664,0,0,90665,0,1,1 +1773694814.814237,0.65,4,3992.50,52.45,1659.84,2053.63,0.00,3517957149144.492676,3517957149143.592285,4232635,3471733,0.000000,0.000030,65499910,32056667,0,0,90668,0,1,1 +1773694819.813977,0.95,4,3992.50,52.46,1659.62,2053.85,0.00,3518619954842.050781,3518619948052.577637,205,0,0.000000,0.000020,65499910,32056669,0,0,90670,0,1,1 +1773694824.813684,0.95,4,3992.50,52.65,1646.82,2061.45,0.00,1.995234,0.000195,258,2,0.000157,0.000210,65499922,32056684,0,0,90673,0,1,1 +1773694829.814310,0.65,4,3992.50,52.39,1656.98,2051.20,0.00,0.000000,0.000000,258,2,0.000016,0.000036,65499924,32056688,0,0,90675,0,1,1 +1773694834.809588,0.65,4,3992.50,52.42,1656.00,2052.19,0.00,3521762838407.788574,3521762838409.965820,11,0,0.000000,0.000030,65499924,32056691,0,0,90678,0,1,1 +1773694839.809672,0.60,4,3992.50,52.42,1656.00,2052.18,0.00,1.657687,10.675015,253,762,0.000000,0.000020,65499924,32056693,0,0,90680,0,1,1 +1773694844.813784,15.63,4,3992.50,52.59,1649.21,2058.98,0.00,3515546466426.460938,3515546466417.397949,75,0,40.030035,0.021218,65504309,32058155,0,0,90683,0,1,1 +1773694849.809563,0.95,4,3992.50,52.61,1648.50,2059.70,0.00,1.605555,10.684215,253,762,0.003087,0.001430,65504365,32058194,0,0,90685,0,1,1 +1773694854.809481,0.95,4,3992.50,52.43,1659.86,2052.72,0.00,0.000000,0.000000,253,762,0.000000,0.000030,65504365,32058197,0,0,90688,0,1,1 +1773694859.812591,0.65,4,3992.50,52.22,1667.32,2044.39,0.00,61799.557180,68576.490333,4234139,3472772,0.000000,0.000020,65504365,32058199,0,0,90690,0,1,1 +1773694864.813789,0.65,4,3992.50,52.23,1666.90,2044.81,0.00,3517594486178.995605,3517594479390.275391,205,0,0.000000,0.000674,65504365,32058206,0,0,90693,0,1,1 +1773694869.813688,0.75,4,3992.50,52.18,1668.61,2043.11,0.00,3518508320047.272461,0.000000,11,0,0.000000,0.000020,65504365,32058208,0,0,90695,0,1,1 +1773694874.811631,0.65,4,3992.50,52.23,1666.89,2044.82,0.00,0.180348,0.000000,205,0,0.000000,0.000030,65504365,32058211,0,0,90698,0,1,1 +1773694879.813618,0.65,4,3992.50,52.22,1667.31,2044.40,0.00,1.476854,10.670954,253,762,0.000308,0.000574,65504372,32058224,0,0,90700,0,1,1 +1773694884.813961,1.00,4,3992.50,52.53,1652.09,2056.68,0.00,3518196568458.275879,3518196568449.078613,205,0,0.000213,0.000570,65504380,32058239,0,0,90703,0,1,1 +1773694889.814212,0.65,4,3992.50,52.25,1662.09,2045.54,0.00,1.995017,0.000195,258,2,0.000056,0.000076,65504384,32058245,0,0,90705,0,1,1 +1773694894.812565,0.60,4,3992.50,52.25,1662.09,2045.53,0.00,3519596203463.794434,3519596203465.970703,11,0,0.000101,0.000154,65504392,32058256,0,0,90708,0,1,1 +1773694899.810462,0.70,4,3992.50,52.25,1662.09,2045.53,0.00,1.658413,10.679689,253,762,0.000000,0.000020,65504392,32058258,0,0,90710,0,1,1 +1773694904.812681,0.70,4,3992.50,52.25,1662.09,2045.53,0.00,3516875891126.301270,3516875891117.288086,11,0,0.000000,0.000030,65504392,32058261,0,0,90713,0,1,1 +1773694909.813541,14.69,4,3992.50,53.69,1605.34,2102.26,0.00,1.657430,10.673360,253,762,40.054649,0.026896,65508688,32060173,0,0,90715,0,1,1 +1773694914.814020,1.15,4,3992.50,53.08,1625.91,2078.36,0.00,3518100537214.432129,3518100537205.416016,11,0,0.003084,0.001438,65508744,32060213,0,0,90718,0,1,1 +1773694919.809466,0.70,4,3992.50,52.58,1645.50,2058.70,0.00,0.000000,0.000000,11,0,0.000205,0.000552,65508751,32060226,0,0,90720,0,1,1 +1773694924.812575,0.75,4,3992.50,52.38,1653.46,2050.74,0.00,61791.502136,68576.788439,4232636,3472258,0.000039,0.000063,65508754,32060232,0,0,90723,0,1,1 +1773694929.809477,0.70,4,3992.50,52.38,1653.43,2050.77,0.00,3520618404628.305664,3520618397834.410645,205,0,0.000031,0.000689,65508756,32060240,0,0,90725,0,1,1 +1773694934.813202,0.70,4,3992.50,52.38,1653.43,2050.77,0.00,61793.435043,68579.021045,4234139,3473028,0.000000,0.000030,65508756,32060243,0,0,90728,0,1,1 +1773694939.814362,0.85,4,3992.50,52.38,1653.43,2050.77,0.00,3517621462687.200195,3517621455898.259766,75,0,0.002086,0.002103,65508788,32060271,0,0,90730,0,1,1 +1773694944.813835,0.95,4,3992.50,52.57,1644.98,2058.36,0.00,1.604368,10.676320,253,762,0.001064,0.000431,65508810,32060287,0,0,90733,0,1,1 +1773694949.813529,0.70,4,3992.50,52.57,1644.98,2058.36,0.00,3518652891044.127441,3518652891035.056152,75,0,0.000000,0.000020,65508810,32060289,0,0,90735,0,1,1 +1773694954.812106,0.70,4,3992.50,52.57,1645.23,2058.11,0.00,61857.204757,68649.714381,4234139,3473068,0.000031,0.000055,65508812,32060294,0,0,90738,0,1,1 +1773694959.812685,0.65,4,3992.50,52.57,1645.00,2058.34,0.00,3518029794375.830566,3518029787583.918945,258,2,0.000076,0.000113,65508818,32060302,0,0,90740,0,1,1 +1773694964.813539,0.65,4,3992.50,52.57,1645.00,2058.34,0.00,3517835798969.319336,3517835798971.440430,75,0,0.000031,0.000055,65508820,32060307,0,0,90743,0,1,1 +1773694969.813931,0.60,4,3992.50,52.48,1648.49,2054.85,0.00,3518161997142.758301,0.000000,11,0,0.000008,0.000028,65508821,32060310,0,0,90745,0,1,1 +1773694974.811738,12.72,4,3992.50,54.15,1583.34,2120.12,0.00,0.000000,0.000000,11,0,40.083191,0.023259,65513282,32061847,0,0,90748,0,1,1 +1773694979.810287,0.65,4,3992.50,53.11,1623.72,2079.56,0.00,61847.881535,68639.620619,4232636,3472486,0.000000,0.000020,65513282,32061849,0,0,90750,0,1,1 +1773694984.814076,0.65,4,3992.50,52.60,1643.98,2059.30,0.00,3515772711673.843262,3515772704898.228027,253,762,0.000056,0.000086,65513286,32061856,0,0,90753,0,1,1 +1773694989.809477,0.60,4,3992.50,52.33,1654.55,2048.73,0.00,3521676299535.966797,3521676299526.760742,205,0,0.000025,0.000051,65513288,32061860,0,0,90755,0,1,1 +1773694994.814056,0.80,4,3992.50,52.33,1654.31,2048.98,0.00,1.993292,0.000195,258,2,0.000000,0.000673,65513288,32061867,0,0,90758,0,1,1 +1773694999.814405,0.65,4,3992.50,52.33,1654.30,2048.99,0.00,3518192206901.258789,3518192206903.380371,75,0,0.000000,0.000020,65513288,32061869,0,0,90760,0,1,1 +1773695004.812556,0.85,4,3992.50,52.33,1654.62,2048.95,0.00,0.126805,0.000000,205,0,0.000000,0.000030,65513288,32061872,0,0,90763,0,1,1 +1773695009.809497,0.65,4,3992.50,52.33,1654.47,2048.95,0.00,3520591459501.260742,0.000000,75,0,0.000000,0.000020,65513288,32061874,0,0,90765,0,1,1 +1773695014.809862,0.80,4,3992.50,52.33,1654.46,2048.96,0.00,0.000000,0.000000,75,0,0.000000,0.000030,65513288,32061877,0,0,90768,0,1,1 +1773695019.809583,0.65,4,3992.50,52.33,1654.46,2048.96,0.00,0.000000,0.000000,75,0,0.000188,0.000226,65513302,32061893,0,0,90770,0,1,1 +1773695024.813835,0.60,4,3992.50,52.33,1654.46,2048.95,0.00,61787.062546,68572.175682,4234139,3473337,0.000008,0.000038,65513303,32061897,0,0,90773,0,1,1 +1773695029.809879,0.70,4,3992.50,52.33,1654.47,2048.95,0.00,3521223155001.410156,3521223148205.203613,11,0,0.000000,0.000020,65513303,32061899,0,0,90775,0,1,1 +1773695034.809456,0.95,4,3992.50,52.33,1654.91,2048.94,0.00,1.657855,10.676098,253,762,0.000000,0.000030,65513303,32061902,0,0,90778,0,1,1 +1773695039.809454,16.56,4,3992.50,53.65,1603.47,2100.47,0.00,0.517676,3518438779503.596191,258,2,40.063237,0.019844,65517727,32063254,0,0,90780,0,1,1 +1773695044.813888,0.90,4,3992.50,52.85,1634.63,2069.32,0.00,3515319831691.048828,3515319831693.222168,11,0,0.002999,0.001437,65517782,32063294,0,0,90783,0,1,1 +1773695049.814082,0.55,4,3992.50,52.52,1647.50,2056.45,0.00,0.000000,0.000000,11,0,0.000000,0.000020,65517782,32063296,0,0,90785,0,1,1 +1773695054.812718,0.80,4,3992.50,52.55,1646.41,2057.54,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65517782,32063299,0,0,90788,0,1,1 +1773695059.811357,0.80,4,3992.50,52.33,1655.25,2048.70,0.00,61846.760064,68638.661229,4232636,3472760,0.000000,0.000664,65517782,32063305,0,0,90790,0,1,1 +1773695064.813717,0.70,4,3992.50,52.33,1655.04,2048.92,0.00,3516777328031.098145,3516777321244.068359,205,0,0.000000,0.000030,65517782,32063308,0,0,90793,0,1,1 +1773695069.809457,1.00,4,3992.50,52.63,1648.26,2060.46,0.00,3521437979015.347168,0.000000,11,0,0.000000,0.000020,65517782,32063310,0,0,90795,0,1,1 +1773695074.810264,0.55,4,3992.50,52.63,1648.27,2060.46,0.00,0.180244,0.000000,205,0,0.000000,0.000030,65517782,32063313,0,0,90798,0,1,1 +1773695079.809463,0.75,4,3992.50,52.63,1648.27,2060.46,0.00,3519000799382.699707,0.000000,75,0,0.000000,0.000020,65517782,32063315,0,0,90800,0,1,1 +1773695084.810565,0.60,4,3992.50,52.63,1648.27,2060.46,0.00,3517662290393.611328,0.000000,11,0,0.000056,0.000086,65517786,32063322,0,0,90803,0,1,1 +1773695089.812653,0.60,4,3992.50,52.63,1648.27,2060.46,0.00,61813.843453,68602.138223,4234139,3473600,0.000109,0.000152,65517795,32063333,0,0,90805,0,1,1 +1773695094.809693,0.90,4,3992.50,52.57,1643.15,2058.26,0.00,3520520589720.515137,3520520582925.184570,205,0,0.000000,0.000030,65517795,32063336,0,0,90808,0,1,1 +1773695099.814356,0.65,4,3992.50,52.53,1644.18,2056.81,0.00,3515159131767.989258,0.000000,11,0,0.000000,0.000020,65517795,32063338,0,0,90810,0,1,1 +1773695104.813784,16.08,4,3992.50,54.01,1586.35,2114.65,0.00,2.175640,0.000195,258,2,40.067630,0.024925,65522089,32064972,0,0,90813,0,1,1 +1773695109.811921,0.80,4,3992.50,52.92,1629.00,2072.00,0.00,3519747850348.563477,3519747850350.739258,11,0,0.003086,0.001442,65522145,32065012,0,0,90815,0,1,1 +1773695114.809461,0.60,4,3992.50,52.46,1647.01,2053.99,0.00,0.053542,0.000000,75,0,0.000000,0.000030,65522145,32065015,0,0,90818,0,1,1 +1773695119.810672,0.90,4,3992.50,52.41,1649.02,2051.98,0.00,2.121361,0.000195,258,2,0.000000,0.000020,65522145,32065017,0,0,90820,0,1,1 +1773695124.814339,0.90,4,3992.50,52.72,1639.01,2064.16,0.00,61782.503496,68570.119184,4232640,3473100,0.000000,0.000673,65522145,32065024,0,0,90823,0,1,1 +1773695129.813329,0.60,4,3992.50,52.60,1642.40,2059.26,0.00,3519148202912.762695,3519148196120.918457,75,0,0.000000,0.000020,65522145,32065026,0,0,90825,0,1,1 +1773695134.814305,0.60,4,3992.50,52.63,1641.18,2060.48,0.00,0.000000,0.000000,75,0,0.000000,0.000030,65522145,32065029,0,0,90828,0,1,1 +1773695139.809462,0.55,4,3992.50,52.63,1640.93,2060.73,0.00,3521848467082.144043,0.000000,11,0,0.000000,0.000020,65522145,32065031,0,0,90830,0,1,1 +1773695144.814010,0.75,4,3992.50,52.63,1640.94,2060.72,0.00,61783.511972,68568.767340,4234143,3473921,0.000000,0.000030,65522145,32065034,0,0,90833,0,1,1 +1773695149.813723,0.60,4,3992.50,52.65,1640.48,2061.18,0.00,3518639672204.180664,3518639665410.186035,258,2,0.000056,0.000076,65522149,32065040,0,0,90835,0,1,1 +1773695154.809606,1.00,4,3992.50,53.04,1626.98,2076.68,0.00,3521336399791.304688,3521336399793.481934,11,0,0.000109,0.000162,65522158,32065052,0,0,90838,0,1,1 +1773695159.811898,0.65,4,3992.50,52.76,1636.11,2065.52,0.00,0.180191,0.000000,205,0,0.000000,0.000020,65522158,32065054,0,0,90840,0,1,1 +1773695164.813075,0.65,4,3992.50,52.73,1637.00,2064.65,0.00,3517609204480.605469,0.000000,75,0,0.000000,0.000030,65522158,32065057,0,0,90843,0,1,1 +1773695169.809585,14.98,4,3992.50,53.03,1625.37,2076.29,0.00,0.000000,0.000000,75,0,40.090776,0.019906,65526527,32066412,0,0,90845,0,1,1 +1773695174.809464,1.55,4,3992.50,52.57,1643.31,2058.34,0.00,0.000000,0.000000,75,0,0.003085,0.001438,65526583,32066452,0,0,90848,0,1,1 +1773695179.814129,0.70,4,3992.50,52.46,1647.78,2053.88,0.00,3515157481885.735840,0.000000,11,0,0.001228,0.001243,65526592,32066468,0,0,90850,0,1,1 +1773695184.814331,0.95,4,3992.50,52.72,1638.04,2064.30,0.00,0.180266,0.000000,205,0,0.000205,0.000562,65526599,32066482,0,0,90853,0,1,1 +1773695189.809464,0.70,4,3992.50,52.54,1645.05,2057.14,0.00,3521865434959.849121,0.000000,75,0,0.000000,0.000664,65526599,32066488,0,0,90855,0,1,1 +1773695194.814113,0.60,4,3992.50,52.54,1645.05,2057.14,0.00,3515168863225.922363,0.000000,11,0,0.000000,0.000030,65526599,32066491,0,0,90858,0,1,1 +1773695199.813803,0.65,4,3992.50,52.54,1645.05,2057.14,0.00,0.180285,0.000000,205,0,0.000000,0.000020,65526599,32066493,0,0,90860,0,1,1 +1773695204.809370,0.70,4,3992.50,52.55,1644.82,2057.38,0.00,3521560144618.443848,0.000000,11,0,0.000000,0.000030,65526599,32066496,0,0,90863,0,1,1 +1773695209.809448,0.50,4,3992.50,52.47,1648.04,2054.15,0.00,2.175357,0.000195,258,2,0.000000,0.000020,65526599,32066498,0,0,90865,0,1,1 +1773695214.813780,0.55,4,3992.50,52.25,1652.74,2045.84,0.00,3515391083837.756836,3515391083839.750488,205,0,0.000056,0.000086,65526603,32066505,0,0,90868,0,1,1 +1773695219.813496,0.75,4,3992.50,52.45,1644.29,2053.54,0.00,61833.326138,68624.747180,4232640,3473477,0.000313,0.000684,65526619,32066527,0,0,90870,0,1,1 +1773695224.809448,0.55,4,3992.50,52.45,1644.29,2053.54,0.00,3521287669564.579102,3521287662768.041992,205,0,0.000031,0.000055,65526621,32066532,0,0,90873,0,1,1 +1773695229.810464,0.65,4,3992.50,52.42,1645.63,2052.21,0.00,3517722643329.312500,0.000000,11,0,0.000031,0.000045,65526623,32066536,0,0,90875,0,1,1 +1773695234.813747,17.35,4,3992.50,54.29,1572.22,2125.61,0.00,0.053481,0.000000,75,0,40.035583,0.022227,65530936,32068079,0,0,90878,0,1,1 +1773695239.814096,1.05,4,3992.50,53.30,1610.95,2086.88,0.00,2.121727,0.000195,258,2,0.004627,0.002716,65531031,32068152,0,0,90880,0,1,1 +1773695244.810855,1.10,4,3992.50,53.17,1628.59,2081.67,0.00,3520719498398.065430,10.681925,253,762,0.001735,0.001354,65531056,32068170,0,0,90883,0,1,1 +1773695249.809598,0.65,4,3992.50,52.85,1641.01,2069.27,0.00,3519321381365.657715,3519321381356.584961,75,0,0.000000,0.000020,65531056,32068172,0,0,90885,0,1,1 +1773695254.809436,0.65,4,3992.50,52.87,1640.48,2069.80,0.00,0.000000,0.000000,75,0,0.000000,0.000674,65531056,32068179,0,0,90888,0,1,1 +1773695259.811640,0.70,4,3992.50,52.87,1640.23,2070.04,0.00,61812.420662,68601.534279,4234143,3474478,0.000000,0.000020,65531056,32068181,0,0,90890,0,1,1 +1773695264.814196,0.60,4,3992.50,52.88,1639.99,2070.29,0.00,3516639601941.062500,3516639595152.479492,11,0,0.000031,0.000055,65531058,32068186,0,0,90893,0,1,1 +1773695269.813668,0.75,4,3992.50,52.88,1639.99,2070.29,0.00,2.175620,0.000195,258,2,0.000008,0.000028,65531059,32068189,0,0,90895,0,1,1 +1773695274.813485,1.00,4,3992.50,52.84,1637.85,2068.81,0.00,3518566348006.842773,3518566348009.018066,11,0,0.000000,0.000030,65531059,32068192,0,0,90898,0,1,1 +1773695279.809462,0.60,4,3992.50,52.81,1639.02,2067.65,0.00,1.659050,10.683792,253,762,0.000031,0.000045,65531061,32068196,0,0,90900,0,1,1 +1773695284.813411,0.70,4,3992.50,52.81,1639.02,2067.65,0.00,3515660534566.464844,3515660534557.274902,205,0,0.000157,0.000210,65531073,32068211,0,0,90903,0,1,1 +1773695289.809450,0.65,4,3992.50,52.62,1646.66,2060.01,0.00,3521226172128.315918,0.000000,11,0,0.000050,0.000082,65531077,32068217,0,0,90905,0,1,1 +1773695294.810594,0.70,4,3992.50,52.62,1646.41,2060.25,0.00,0.180232,0.000000,205,0,0.000000,0.000030,65531077,32068220,0,0,90908,0,1,1 +1773695299.814273,15.55,4,3992.50,57.56,1453.20,2253.46,0.00,3515850050934.279297,0.000000,11,0,39.220612,0.019857,65535310,32069603,0,0,90910,0,1,1 +1773695304.814284,1.20,4,3992.50,52.82,1638.59,2068.06,0.00,0.000000,0.000000,11,0,0.816134,0.002542,65535491,32069692,0,0,90913,0,1,1 +1773695309.813676,0.70,4,3992.50,52.63,1646.00,2060.66,0.00,61837.510739,68629.713528,4232640,3473965,0.000000,0.000020,65535491,32069694,0,0,90915,0,1,1 +1773695314.813087,0.60,4,3992.50,52.63,1646.25,2060.41,0.00,3518851571353.437012,3518851564570.278320,253,762,0.000000,0.000030,65535491,32069697,0,0,90918,0,1,1 +1773695319.814108,0.80,4,3992.50,52.52,1650.52,2056.14,0.00,61825.435694,68607.367307,4234143,3474737,0.000000,0.000342,65535491,32069701,0,0,90920,0,1,1 +1773695324.813620,0.60,4,3992.50,52.56,1648.83,2057.83,0.00,3518781071298.057129,3518781064504.878906,205,0,0.000000,0.000352,65535491,32069706,0,0,90923,0,1,1 +1773695329.810937,0.60,4,3992.50,52.52,1650.33,2056.33,0.00,3520326307508.112793,0.000000,11,0,0.000000,0.000020,65535491,32069708,0,0,90925,0,1,1 +1773695334.814164,0.70,4,3992.50,52.56,1648.86,2057.80,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65535491,32069711,0,0,90928,0,1,1 +1773695339.814208,0.90,4,3992.50,52.53,1647.75,2056.64,0.00,0.053515,0.000000,75,0,0.000000,0.000020,65535491,32069713,0,0,90930,0,1,1 +1773695344.811316,0.75,4,3992.50,52.53,1647.78,2056.64,0.00,61865.723180,68661.164753,4232640,3474017,0.000031,0.000055,65535493,32069718,0,0,90933,0,1,1 +1773695349.810596,0.55,4,3992.50,52.51,1648.41,2056.01,0.00,3518943369578.158691,3518943362785.723633,11,0,0.000134,0.000183,65535504,32069731,0,0,90935,0,1,1 +1773695354.814400,0.70,4,3992.50,52.54,1647.44,2056.98,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65535504,32069734,0,0,90938,0,1,1 +1773695359.813815,0.75,4,3992.50,52.54,1647.45,2056.98,0.00,2.175645,0.000195,258,2,0.000000,0.000020,65535504,32069736,0,0,90940,0,1,1 +1773695364.813415,14.97,4,3992.50,57.68,1449.06,2258.30,0.00,3518718474123.715332,3518718474125.710938,205,0,30.850659,0.019457,65538838,32071086,0,0,90943,0,1,1 +1773695369.809566,1.05,4,3992.50,52.89,1636.48,2070.91,0.00,3521147836375.071777,0.000000,11,0,9.223935,0.004403,65539875,32071332,0,0,90945,0,1,1 +1773695374.813893,0.65,4,3992.50,52.89,1636.48,2070.90,0.00,61786.257135,68572.989530,4234143,3474982,0.000000,0.000030,65539875,32071335,0,0,90948,0,1,1 +1773695379.809591,0.65,4,3992.50,52.89,1636.48,2070.90,0.00,3521466453345.307129,3521466446546.853516,11,0,0.000000,0.000020,65539875,32071337,0,0,90950,0,1,1 +1773695384.809572,0.75,4,3992.50,52.89,1636.48,2070.90,0.00,2.175388,0.000195,258,2,0.000000,0.000191,65539875,32071341,0,0,90953,0,1,1 +1773695389.814429,0.65,4,3992.50,52.89,1636.48,2070.90,0.00,3515039736678.472656,3515039736680.592285,75,0,0.000000,0.000502,65539875,32071346,0,0,90955,0,1,1 +1773695394.813790,0.80,4,3992.50,53.09,1634.48,2078.52,0.00,2.122146,0.000195,258,2,0.000000,0.000030,65539875,32071349,0,0,90958,0,1,1 +1773695399.813251,0.65,4,3992.50,53.09,1634.54,2078.45,0.00,3518816174122.819336,3518816174124.941406,75,0,0.000000,0.000020,65539875,32071351,0,0,90960,0,1,1 +1773695404.810421,0.60,4,3992.50,53.02,1637.12,2075.86,0.00,0.126830,0.000000,205,0,0.000000,0.000030,65539875,32071354,0,0,90963,0,1,1 +1773695409.813656,0.50,4,3992.50,53.02,1637.13,2075.86,0.00,3516162492256.043945,0.000000,11,0,0.000031,0.000045,65539877,32071358,0,0,90965,0,1,1 +1773695414.809467,0.75,4,3992.50,53.02,1637.13,2075.86,0.00,0.180425,0.000000,205,0,0.000142,0.000201,65539889,32071373,0,0,90968,0,1,1 +1773695419.809900,1.00,4,3992.50,53.02,1637.13,2075.86,0.00,1.477314,10.674271,253,762,0.000000,0.000020,65539889,32071375,0,0,90970,0,1,1 +1773695424.813928,0.90,4,3992.50,53.02,1631.91,2075.84,0.00,3515605207481.686523,3515605207472.676758,11,0,0.000000,0.000030,65539889,32071378,0,0,90973,0,1,1 +1773695429.815817,14.26,4,3992.50,57.57,1453.82,2253.93,0.00,0.053495,0.000000,75,0,26.835112,0.018876,65542892,32072561,0,0,90975,0,1,1 +1773695434.809455,1.20,4,3992.50,52.74,1642.96,2064.78,0.00,0.126919,0.000000,205,0,13.238147,0.006051,65544314,32072967,0,0,90978,0,1,1 +1773695439.810701,0.65,4,3992.50,52.65,1646.30,2061.44,0.00,3517560918328.172363,0.000000,75,0,0.000000,0.000020,65544314,32072969,0,0,90980,0,1,1 +1773695444.813648,0.60,4,3992.50,52.65,1646.30,2061.45,0.00,3516364579910.270508,0.000000,11,0,0.000000,0.000030,65544314,32072972,0,0,90983,0,1,1 +1773695449.814177,0.80,4,3992.50,52.61,1648.12,2059.62,0.00,0.000000,0.000000,11,0,0.000000,0.000181,65544314,32072975,0,0,90985,0,1,1 +1773695454.813489,0.90,4,3992.50,52.74,1643.68,2064.77,0.00,61838.506584,68631.440716,4232640,3474481,0.000000,0.000513,65544314,32072981,0,0,90988,0,1,1 +1773695459.809559,0.65,4,3992.50,52.53,1650.86,2056.61,0.00,9.733823,10.720536,4234143,3475283,0.000000,0.000020,65544314,32072983,0,0,90990,0,1,1 +1773695464.810045,0.65,4,3992.50,52.55,1650.02,2057.45,0.00,3518094852599.734863,3518094845805.235352,258,2,0.000000,0.000030,65544314,32072986,0,0,90993,0,1,1 +1773695469.810568,0.65,4,3992.50,52.50,1651.80,2055.64,0.00,61831.075365,68625.621484,4234143,3475382,0.000000,0.000020,65544314,32072988,0,0,90995,0,1,1 +1773695474.813806,0.50,4,3992.50,52.54,1650.35,2057.12,0.00,3516160137296.073242,3516160130505.213867,258,2,0.000056,0.000086,65544318,32072995,0,0,90998,0,1,1 +1773695479.813747,0.65,4,3992.50,52.55,1650.14,2057.33,0.00,3518478919041.271484,3518478919043.393555,75,0,0.001338,0.001377,65544336,32073020,0,0,91000,0,1,1 +1773695484.814351,0.70,4,3992.50,52.80,1643.65,2067.14,0.00,61822.465660,68613.872850,4232640,3474646,0.000205,0.000562,65544343,32073034,0,0,91003,0,1,1 +1773695489.810561,0.55,4,3992.50,52.56,1649.75,2057.80,0.00,0.000000,0.009382,4232640,3474658,0.000000,0.000020,65544343,32073036,0,0,91005,0,1,1 +1773695494.814110,13.55,4,3992.50,57.90,1440.60,2266.96,0.00,9.734107,10.693290,4234144,3475466,14.016492,0.014078,65546064,32073960,0,0,91008,0,1,1 +1773695499.813396,3.56,4,3992.50,52.74,1642.52,2065.04,0.00,3518939049801.199707,3518939043007.086914,11,0,26.042463,0.009034,65548740,32074574,0,0,91010,0,1,1 +1773695504.811012,0.65,4,3992.50,52.74,1642.75,2064.81,0.00,0.000000,0.000000,11,0,0.000008,0.000038,65548741,32074578,0,0,91013,0,1,1 +1773695509.809458,0.65,4,3992.50,52.56,1649.59,2057.97,0.00,2.176067,0.000195,258,2,0.000000,0.000020,65548741,32074580,0,0,91015,0,1,1 +1773695514.810095,0.95,4,3992.50,52.65,1643.77,2061.33,0.00,3517988922108.305176,10.673640,253,762,0.000000,0.000352,65548741,32074585,0,0,91018,0,1,1 +1773695519.814266,0.65,4,3992.50,52.60,1645.69,2059.38,0.00,3515504516656.552734,3515504516647.362793,205,0,0.000204,0.000873,65548748,32074600,0,0,91020,0,1,1 +1773695524.811844,0.65,4,3992.50,52.62,1644.71,2060.36,0.00,3520142518693.260254,0.000000,11,0,0.000039,0.000063,65548751,32074606,0,0,91023,0,1,1 +1773695529.811299,0.75,4,3992.50,52.63,1644.49,2060.58,0.00,0.053521,0.000000,75,0,0.000031,0.000045,65548753,32074610,0,0,91025,0,1,1 +1773695534.810580,0.55,4,3992.50,52.63,1644.49,2060.58,0.00,0.126776,0.000000,205,0,0.000000,0.000030,65548753,32074613,0,0,91028,0,1,1 +1773695539.809566,0.85,4,3992.50,52.65,1643.75,2061.31,0.00,3519151453750.635742,0.000000,75,0,0.001448,0.001207,65548784,32074641,0,0,91030,0,1,1 +1773695544.814245,1.00,4,3992.50,52.76,1639.02,2065.62,0.00,0.126639,0.000000,205,0,0.001139,0.000524,65548812,32074663,0,0,91033,0,1,1 +1773695549.809458,0.70,4,3992.50,52.73,1640.12,2064.39,0.00,0.000000,0.000000,205,0,0.000008,0.000028,65548813,32074666,0,0,91035,0,1,1 +1773695554.811134,0.70,4,3992.50,52.76,1638.68,2065.84,0.00,61809.109359,68599.517214,4232641,3474968,0.000000,0.000030,65548813,32074669,0,0,91038,0,1,1 +1773695559.809472,18.42,4,3992.50,57.57,1450.55,2253.95,0.00,3519606700395.246582,3519606693598.309082,258,2,26.452845,0.018417,65551845,32075936,0,0,91040,0,1,1 +1773695564.812083,0.95,4,3992.50,53.64,1604.39,2100.11,0.00,61795.569992,68586.751177,4232641,3475035,13.615002,0.005751,65553274,32076289,0,0,91043,0,1,1 +1773695569.813995,0.60,4,3992.50,52.97,1630.52,2073.98,0.00,3517091735664.329590,3517091728883.389160,253,762,0.000008,0.000028,65553275,32076292,0,0,91045,0,1,1 +1773695574.813859,0.95,4,3992.50,52.80,1639.02,2067.05,0.00,0.000000,0.000000,253,762,0.000000,0.000030,65553275,32076295,0,0,91048,0,1,1 +1773695579.814362,0.70,4,3992.50,52.82,1638.10,2067.96,0.00,61822.139506,68605.071077,4232641,3475068,0.000000,0.000020,65553275,32076297,0,0,91050,0,1,1 +1773695584.814087,0.65,4,3992.50,52.82,1638.11,2067.96,0.00,9.726707,10.708011,4234144,3475864,0.000056,0.000730,65553279,32076308,0,0,91053,0,1,1 +1773695589.814450,0.65,4,3992.50,52.82,1638.11,2067.96,0.00,3518181295050.957520,3518181288255.664551,258,2,0.000025,0.000051,65553281,32076312,0,0,91055,0,1,1 +1773695594.809472,0.75,4,3992.50,52.82,1638.11,2067.96,0.00,3521943822388.000488,10.685639,253,762,0.000008,0.000038,65553282,32076316,0,0,91058,0,1,1 +1773695599.809556,0.60,4,3992.50,52.82,1638.11,2067.96,0.00,3518378401297.645020,3518378401288.574219,75,0,0.000000,0.000020,65553282,32076318,0,0,91060,0,1,1 +1773695604.814280,0.80,4,3992.50,52.91,1633.71,2071.64,0.00,3515116015491.020996,0.000000,11,0,0.000031,0.000055,65553284,32076323,0,0,91063,0,1,1 +1773695609.813634,0.60,4,3992.50,52.73,1640.72,2064.51,0.00,61837.990032,68631.652904,4232641,3475221,0.000126,0.000175,65553294,32076335,0,0,91065,0,1,1 +1773695614.813858,0.60,4,3992.50,52.74,1640.52,2064.72,0.00,3518279952415.886230,3518279945623.403809,11,0,0.000000,0.000030,65553294,32076338,0,0,91068,0,1,1 +1773695619.813660,0.55,4,3992.50,52.74,1640.52,2064.71,0.00,0.000000,0.000000,11,0,0.000000,0.000020,65553294,32076340,0,0,91070,0,1,1 +1773695624.814333,17.20,4,3992.50,57.72,1445.26,2259.96,0.00,2.175098,0.000195,258,2,22.435475,0.020556,65555922,32077778,0,0,91073,0,1,1 +1773695629.812146,1.15,4,3992.50,53.63,1605.45,2099.78,0.00,61864.611888,68663.553891,4234144,3476063,17.634421,0.007168,65557693,32078244,0,0,91075,0,1,1 +1773695634.813668,0.90,4,3992.50,53.51,1612.44,2094.93,0.00,3517366898747.753418,3517366898746.873047,4232641,3475324,0.000000,0.000030,65557693,32078247,0,0,91078,0,1,1 +1773695639.814120,0.70,4,3992.50,53.16,1623.99,2081.23,0.00,3518119111196.465332,3518119104404.112305,75,0,0.000000,0.000020,65557693,32078249,0,0,91080,0,1,1 +1773695644.809585,0.70,4,3992.50,53.15,1624.43,2080.79,0.00,0.000000,0.000000,75,0,0.000000,0.000030,65557693,32078252,0,0,91083,0,1,1 +1773695649.814318,0.70,4,3992.50,52.97,1631.30,2073.92,0.00,3515110016647.988770,0.000000,11,0,0.000000,0.000663,65557693,32078258,0,0,91085,0,1,1 +1773695654.813697,0.75,4,3992.50,52.97,1631.18,2074.04,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65557693,32078261,0,0,91088,0,1,1 +1773695659.811458,0.65,4,3992.50,53.00,1630.20,2075.02,0.00,61857.705230,68653.778406,4232641,3475452,0.000000,0.000020,65557693,32078263,0,0,91090,0,1,1 +1773695664.813481,0.70,4,3992.50,53.00,1630.20,2075.02,0.00,3517014341716.520020,3517014334935.250488,253,762,0.000000,0.000030,65557693,32078266,0,0,91093,0,1,1 +1773695669.814273,0.85,4,3992.50,53.05,1627.90,2077.12,0.00,3517879984431.344238,3517879984422.328613,11,0,0.000031,0.000045,65557695,32078270,0,0,91095,0,1,1 +1773695674.809469,0.70,4,3992.50,53.07,1627.20,2077.86,0.00,0.053567,0.000000,75,0,0.000142,0.000201,65557707,32078285,0,0,91098,0,1,1 +1773695679.814100,0.75,4,3992.50,53.07,1627.20,2077.85,0.00,1.602715,10.665318,253,762,0.000000,0.000020,65557707,32078287,0,0,91100,0,1,1 +1773695684.809507,0.60,4,3992.50,53.07,1627.20,2077.85,0.00,61894.928543,68686.179186,4234144,3476251,0.000000,0.000030,65557707,32078290,0,0,91103,0,1,1 +1773695689.809438,15.81,4,3992.50,57.74,1444.45,2260.59,0.00,3518486102555.399902,3518486095761.274902,11,0,12.624506,0.012920,65559269,32079121,0,0,91105,0,1,1 +1773695694.809722,4.11,4,3992.50,54.16,1585.28,2120.32,0.00,61836.212262,68629.960585,4234144,3476341,27.438160,0.007997,65562014,32079653,0,0,91108,0,1,1 +1773695699.809459,0.75,4,3992.50,53.24,1620.77,2084.49,0.00,3518622333544.329590,3518622326749.836426,11,0,0.000008,0.000028,65562015,32079656,0,0,91110,0,1,1 +1773695704.809458,1.05,4,3992.50,53.01,1629.64,2075.56,0.00,0.180273,0.000000,205,0,0.000000,0.000030,65562015,32079659,0,0,91113,0,1,1 +1773695709.810033,0.75,4,3992.50,53.02,1629.25,2076.01,0.00,61822.770534,68615.357629,4232644,3475624,0.000000,0.000020,65562015,32079661,0,0,91115,0,1,1 +1773695714.813011,0.60,4,3992.50,53.02,1629.26,2076.00,0.00,3516343038185.727051,3516343031396.401855,205,0,0.000000,0.000673,65562015,32079668,0,0,91118,0,1,1 +1773695719.809479,0.65,4,3992.50,53.03,1629.02,2076.23,0.00,1.478486,10.682741,253,762,0.000000,0.000020,65562015,32079670,0,0,91120,0,1,1 +1773695724.809483,1.30,4,3992.50,53.08,1635.99,2078.38,0.00,0.000000,0.000000,253,762,0.000000,0.000030,65562015,32079673,0,0,91123,0,1,1 +1773695729.813825,0.65,4,3992.50,53.06,1637.17,2077.25,0.00,61784.475284,68563.836705,4234147,3476493,0.000000,0.000020,65562015,32079675,0,0,91125,0,1,1 +1773695734.814316,0.70,4,3992.50,53.06,1637.20,2077.25,0.00,3518091702806.812988,3518091696011.038574,258,2,0.000031,0.000055,65562017,32079680,0,0,91128,0,1,1 +1773695739.814301,0.70,4,3992.50,53.06,1637.20,2077.25,0.00,3518447966887.528320,3518447966889.703613,11,0,0.000142,0.000191,65562029,32079694,0,0,91130,0,1,1 +1773695744.813890,0.70,4,3992.50,53.06,1637.20,2077.24,0.00,0.053520,0.000000,75,0,0.000000,0.000030,65562029,32079697,0,0,91133,0,1,1 +1773695749.814265,0.70,4,3992.50,53.06,1637.20,2077.24,0.00,1.604079,10.674394,253,762,0.000000,0.000020,65562029,32079699,0,0,91135,0,1,1 +1773695754.814588,12.36,4,3992.50,58.31,1444.07,2283.04,0.00,3518210007101.188965,3518210007092.119141,75,0,11.824707,0.016123,65563606,32080692,0,0,91138,0,1,1 +1773695759.809488,4.76,4,3992.50,54.18,1605.79,2121.33,0.00,2.124042,0.000196,258,2,28.270549,0.013476,65566450,32081629,0,0,91140,0,1,1 +1773695764.809545,0.55,4,3992.50,53.64,1626.93,2100.19,0.00,3518397448175.142578,3518397448177.317871,11,0,0.000000,0.000030,65566450,32081632,0,0,91143,0,1,1 +1773695769.813952,0.60,4,3992.50,53.38,1637.09,2090.03,0.00,61775.613862,68563.119593,4232644,3475899,0.000000,0.000020,65566450,32081634,0,0,91145,0,1,1 +1773695774.813473,0.60,4,3992.50,53.38,1637.12,2090.00,0.00,3518774220992.087402,3518774214197.948242,11,0,0.000000,0.000030,65566450,32081637,0,0,91148,0,1,1 +1773695779.813938,0.65,4,3992.50,53.39,1636.91,2090.21,0.00,2.175188,0.000195,258,2,0.000308,0.001218,65566457,32081654,0,0,91150,0,1,1 +1773695784.814348,0.95,4,3992.50,53.66,1626.04,2101.09,0.00,3518149307466.774902,10.674127,253,762,0.001134,0.001239,65566467,32081672,0,0,91153,0,1,1 +1773695789.811031,0.80,4,3992.50,53.43,1635.20,2091.91,0.00,0.518019,3520772607054.081543,258,2,0.000000,0.000020,65566467,32081674,0,0,91155,0,1,1 +1773695794.814060,0.50,4,3992.50,53.43,1635.22,2091.90,0.00,3516306591514.480469,10.668536,253,762,0.000000,0.000030,65566467,32081677,0,0,91158,0,1,1 +1773695799.809499,0.70,4,3992.50,53.43,1635.22,2091.90,0.00,3521650095487.587402,3521650095478.562012,11,0,0.000031,0.000045,65566469,32081681,0,0,91160,0,1,1 +1773695804.813941,0.65,4,3992.50,53.43,1635.22,2091.90,0.00,0.000000,0.000000,11,0,0.000126,0.000185,65566479,32081694,0,0,91163,0,1,1 +1773695809.813819,0.75,4,3992.50,53.43,1635.22,2091.90,0.00,0.000000,0.000000,11,0,0.000000,0.000020,65566479,32081696,0,0,91165,0,1,1 +1773695814.809470,0.90,4,3992.50,53.48,1633.40,2093.87,0.00,0.180430,0.000000,205,0,0.000000,0.000030,65566479,32081699,0,0,91168,0,1,1 +1773695819.809584,9.39,4,3992.50,58.19,1448.88,2278.23,0.00,3518357597598.369629,0.000000,75,0,5.214473,0.010651,65567341,32082347,0,0,91170,0,1,1 +1773695824.813762,6.62,4,3992.50,54.03,1611.76,2115.36,0.00,2.120103,0.000195,258,2,34.823905,0.012420,65571018,32083201,0,0,91173,0,1,1 +1773695829.813153,0.60,4,3992.50,53.55,1630.62,2096.49,0.00,61845.185389,68643.017134,4234149,3477054,0.000039,0.000053,65571021,32083206,0,0,91175,0,1,1 +1773695834.809457,0.80,4,3992.50,53.25,1642.27,2084.85,0.00,0.000000,0.006255,4234149,3477058,0.000000,0.000030,65571021,32083209,0,0,91178,0,1,1 +1773695839.814246,0.90,4,3992.50,53.25,1642.36,2084.76,0.00,0.000000,0.000781,4234149,3477059,0.002085,0.002102,65571053,32083237,0,0,91180,0,1,1 +1773695844.813816,1.00,4,3992.50,53.55,1631.12,2096.57,0.00,3518739862124.122070,3518739855337.720215,253,762,0.001064,0.001075,65571075,32083257,0,0,91183,0,1,1 +1773695849.814545,0.60,4,3992.50,53.25,1642.21,2084.96,0.00,61819.430889,68603.413817,4232646,3476357,0.000000,0.000020,65571075,32083259,0,0,91185,0,1,1 +1773695854.813907,0.80,4,3992.50,53.26,1641.98,2085.19,0.00,0.000000,0.005469,4232646,3476359,0.000000,0.000030,65571075,32083262,0,0,91188,0,1,1 +1773695859.813319,0.70,4,3992.50,53.26,1641.98,2085.18,0.00,3518850985745.949707,3518850978951.101562,75,0,0.000000,0.000020,65571075,32083264,0,0,91190,0,1,1 +1773695864.811014,0.60,4,3992.50,53.26,1641.98,2085.18,0.00,61868.291521,68666.430519,4234149,3477129,0.000062,0.000080,65571079,32083271,0,0,91193,0,1,1 +1773695869.813790,0.70,4,3992.50,53.26,1641.98,2085.18,0.00,3516485122239.915527,3516485115448.732910,11,0,0.000083,0.000121,65571086,32083280,0,0,91195,0,1,1 +1773695874.813437,0.70,4,3992.50,53.21,1641.04,2083.21,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65571086,32083283,0,0,91198,0,1,1 +1773695879.814090,0.60,4,3992.50,53.15,1643.10,2081.04,0.00,0.000000,0.000000,11,0,0.000000,0.000020,65571086,32083285,0,0,91200,0,1,1 +1773695884.817535,5.01,4,3992.50,58.13,1448.32,2275.81,0.00,61797.263206,68587.583001,4234150,3477187,1.407155,0.005628,65571469,32083565,0,0,91203,0,1,1 +1773695889.809938,10.83,4,3992.50,53.33,1636.31,2087.83,0.00,3523791167669.353516,3523791167668.484863,4232648,3476536,38.716563,0.018714,65575523,32084916,0,0,91205,0,1,1 +1773695894.811656,0.50,4,3992.50,53.33,1636.31,2087.83,0.00,3517228542914.415527,3517228536120.444336,258,2,0.000000,0.000030,65575523,32084919,0,0,91208,0,1,1 +1773695899.814184,0.65,4,3992.50,53.33,1636.08,2088.06,0.00,3516659474919.914062,3516659474922.088379,11,0,0.000000,0.000020,65575523,32084921,0,0,91210,0,1,1 +1773695904.809971,0.90,4,3992.50,53.30,1633.81,2086.71,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65575523,32084924,0,0,91213,0,1,1 +1773695909.814305,0.60,4,3992.50,53.32,1632.86,2087.43,0.00,0.180117,0.000000,205,0,0.000000,0.000663,65575523,32084930,0,0,91215,0,1,1 +1773695914.809707,0.65,4,3992.50,53.32,1632.86,2087.43,0.00,61896.596673,68698.222638,4234151,3477368,0.000000,0.000030,65575523,32084933,0,0,91218,0,1,1 +1773695919.813566,0.70,4,3992.50,53.32,1632.86,2087.43,0.00,3515723120594.240723,3515723113804.291504,11,0,0.000000,0.000020,65575523,32084935,0,0,91220,0,1,1 +1773695924.809579,0.65,4,3992.50,53.32,1632.86,2087.43,0.00,1.659038,10.683715,253,762,0.000000,0.000030,65575523,32084938,0,0,91223,0,1,1 +1773695929.810313,0.60,4,3992.50,53.19,1637.94,2082.35,0.00,0.517600,3517920805538.054199,258,2,0.000031,0.000045,65575525,32084942,0,0,91225,0,1,1 +1773695934.809486,1.10,4,3992.50,53.70,1617.93,2102.36,0.00,61838.183568,68635.766998,4232648,3476625,0.000134,0.000193,65575536,32084956,0,0,91228,0,1,1 +1773695939.813006,0.55,4,3992.50,53.51,1625.07,2095.18,0.00,3515961640735.384766,3515961633945.827637,75,0,0.000008,0.000028,65575537,32084959,0,0,91230,0,1,1 +1773695944.809483,0.70,4,3992.50,53.52,1624.98,2095.30,0.00,2.123371,0.000195,258,2,0.000000,0.000030,65575537,32084962,0,0,91233,0,1,1 +1773695949.813593,1.05,4,3992.50,53.33,1632.18,2088.10,0.00,3515547826527.812500,3515547826529.806641,205,0,0.002344,0.001345,65575568,32084991,0,0,91235,0,1,1 +1773695954.813501,16.80,4,3992.50,54.32,1593.56,2126.72,0.00,3518501733982.672363,0.000000,75,0,40.063853,0.022908,65579956,32086590,0,0,91238,0,1,1 +1773695959.813544,0.65,4,3992.50,53.52,1625.04,2095.25,0.00,61839.268472,68634.625518,4234151,3477550,0.000000,0.000020,65579956,32086592,0,0,91240,0,1,1 +1773695964.814002,1.00,4,3992.50,53.52,1625.01,2095.54,0.00,3518114905310.250000,3518114898524.526855,253,762,0.000000,0.000030,65579956,32086595,0,0,91243,0,1,1 +1773695969.809496,0.65,4,3992.50,53.15,1639.55,2080.79,0.00,0.000000,0.000000,253,762,0.000000,0.000020,65579956,32086597,0,0,91245,0,1,1 +1773695974.814221,0.55,4,3992.50,53.14,1639.90,2080.44,0.00,3515115849030.383301,3515115849021.194336,205,0,0.000000,0.000673,65579956,32086604,0,0,91248,0,1,1 +1773695979.814433,0.65,4,3992.50,53.11,1640.90,2079.44,0.00,3518287994770.926758,0.000000,75,0,0.000000,0.000020,65579956,32086606,0,0,91250,0,1,1 +1773695984.813940,0.65,4,3992.50,53.14,1639.68,2080.66,0.00,0.126770,0.000000,205,0,0.000000,0.000030,65579956,32086609,0,0,91253,0,1,1 +1773695989.810593,0.65,4,3992.50,53.16,1639.03,2081.31,0.00,1.996454,0.000195,258,2,0.000000,0.000020,65579956,32086611,0,0,91255,0,1,1 +1773695994.813697,0.90,4,3992.50,53.53,1624.39,2095.80,0.00,3516254394104.312988,3516254394106.433594,75,0,0.000000,0.000030,65579956,32086614,0,0,91258,0,1,1 +1773695999.813708,0.75,4,3992.50,53.53,1624.21,2095.92,0.00,3518429922214.777832,0.000000,11,0,0.000157,0.000200,65579968,32086628,0,0,91260,0,1,1 +1773696004.814078,0.70,4,3992.50,53.51,1624.93,2095.20,0.00,61835.301494,68630.299619,4234152,3477648,0.000016,0.000046,65579970,32086633,0,0,91263,0,1,1 +1773696009.813443,0.70,4,3992.50,53.47,1626.48,2093.65,0.00,3518883712390.051758,3518883705602.706543,253,762,0.000000,0.000020,65579970,32086635,0,0,91265,0,1,1 +1773696014.813838,0.85,4,3992.50,53.32,1632.42,2087.70,0.00,3518159823792.026855,3518159823783.010254,11,0,0.002221,0.000734,65579993,32086654,0,0,91268,0,1,1 +1773696019.809473,16.21,4,3992.50,53.28,1634.20,2085.91,0.00,0.180431,0.000000,205,0,40.101372,0.028663,65584444,32088660,0,0,91270,0,1,1 +1773696024.809434,1.15,4,3992.50,53.13,1647.28,2080.18,0.00,1.477453,10.675278,253,762,0.000000,0.000030,65584444,32088663,0,0,91273,0,1,1 +1773696029.810688,0.65,4,3992.50,53.13,1646.77,2080.17,0.00,3517554798602.373047,3517554798593.304688,75,0,0.000000,0.000020,65584444,32088665,0,0,91275,0,1,1 +1773696034.810983,0.60,4,3992.50,53.14,1646.30,2080.65,0.00,0.000000,0.000000,75,0,0.000000,0.000030,65584444,32088668,0,0,91278,0,1,1 +1773696039.814213,0.60,4,3992.50,53.14,1646.30,2080.65,0.00,3516166117188.054688,0.000000,11,0,0.000000,0.000663,65584444,32088674,0,0,91280,0,1,1 +1773696044.812558,0.60,4,3992.50,53.14,1646.30,2080.65,0.00,2.176111,0.000195,258,2,0.000000,0.000030,65584444,32088677,0,0,91283,0,1,1 +1773696049.809490,0.70,4,3992.50,53.03,1650.74,2076.21,0.00,3520597932206.501953,3520597932208.678711,11,0,0.000000,0.000020,65584444,32088679,0,0,91285,0,1,1 +1773696054.809585,0.85,4,3992.50,53.14,1629.79,2080.48,0.00,61828.977225,68623.699368,4232649,3477163,0.000000,0.000030,65584444,32088682,0,0,91288,0,1,1 +1773696059.809613,0.70,4,3992.50,53.14,1629.62,2080.68,0.00,3518416876749.915527,3518416869954.922852,205,0,0.000000,0.000020,65584444,32088684,0,0,91290,0,1,1 +1773696064.810085,0.60,4,3992.50,53.15,1629.41,2080.90,0.00,3518105424100.358398,0.000000,75,0,0.000157,0.000210,65584456,32088699,0,0,91293,0,1,1 +1773696069.811053,0.65,4,3992.50,53.15,1629.41,2080.90,0.00,61827.857850,68622.413147,4234152,3477943,0.000016,0.000036,65584458,32088703,0,0,91295,0,1,1 +1773696074.809578,0.65,4,3992.50,53.15,1629.41,2080.90,0.00,0.000000,0.000781,4234152,3477944,0.000000,0.000030,65584458,32088706,0,0,91298,0,1,1 +1773696079.810582,1.10,4,3992.50,52.95,1637.04,2073.27,0.00,3517730641800.124023,3517730635005.490723,205,0,0.003186,0.002190,65584490,32088736,0,0,91300,0,1,1 +1773696084.814108,18.19,4,3992.50,53.33,1621.48,2088.12,0.00,1.993711,0.000195,258,2,40.035282,0.023935,65588827,32090299,0,0,91303,0,1,1 +1773696089.814243,0.65,4,3992.50,53.33,1621.43,2088.12,0.00,3518342182680.680664,3518342182682.855957,11,0,0.000000,0.000020,65588827,32090301,0,0,91305,0,1,1 +1773696094.813948,0.80,4,3992.50,53.33,1621.43,2088.12,0.00,0.053519,0.000000,75,0,0.000000,0.000030,65588827,32090304,0,0,91308,0,1,1 +1773696099.814292,0.70,4,3992.50,53.33,1621.43,2088.12,0.00,3518194759527.683105,0.000000,11,0,0.000000,0.000020,65588827,32090306,0,0,91310,0,1,1 +1773696104.811803,0.65,4,3992.50,53.33,1621.43,2088.11,0.00,0.000000,0.000000,11,0,0.000000,0.000674,65588827,32090313,0,0,91313,0,1,1 +1773696109.813288,0.75,4,3992.50,53.31,1622.16,2087.39,0.00,2.174744,0.000195,258,2,0.000000,0.000020,65588827,32090315,0,0,91315,0,1,1 +1773696114.811619,0.85,4,3992.50,53.51,1614.30,2095.23,0.00,0.000000,0.000000,258,2,0.000000,0.000030,65588827,32090318,0,0,91318,0,1,1 +1773696119.809477,0.75,4,3992.50,53.48,1614.98,2093.98,0.00,61864.201643,68665.408690,4234152,3478202,0.000205,0.000552,65588834,32090331,0,0,91320,0,1,1 +1773696124.809580,0.70,4,3992.50,53.48,1614.98,2093.99,0.00,3518365016340.104004,3518365009553.142090,253,762,0.000039,0.000063,65588837,32090337,0,0,91323,0,1,1 +1773696129.809486,0.60,4,3992.50,53.48,1614.98,2093.99,0.00,3518503091444.527832,3518503091435.510742,11,0,0.000188,0.000226,65588851,32090353,0,0,91325,0,1,1 +1773696134.813819,0.65,4,3992.50,53.48,1614.98,2093.98,0.00,1.656280,10.665952,253,762,0.000000,0.000030,65588851,32090356,0,0,91328,0,1,1 +1773696139.814252,0.75,4,3992.50,53.36,1619.65,2089.31,0.00,3518132838322.661133,3518132838313.644531,11,0,0.001417,0.001190,65588880,32090383,0,0,91330,0,1,1 +1773696144.813865,1.65,4,3992.50,53.39,1628.81,2090.32,0.00,0.000000,0.000000,11,0,0.005501,0.004029,65588964,32090447,0,0,91333,0,1,1 +1773696149.809583,16.33,4,3992.50,53.68,1614.48,2101.62,0.00,0.053561,0.000000,75,0,40.095462,0.020713,65593248,32091919,0,0,91335,0,1,1 +1773696154.813557,0.70,4,3992.50,53.68,1614.24,2101.86,0.00,61790.722327,68581.656709,4234152,3478376,0.000000,0.000030,65593248,32091922,0,0,91338,0,1,1 +1773696159.811352,0.65,4,3992.50,53.59,1617.77,2098.34,0.00,3519988908105.720215,3519988901306.265137,205,0,0.000000,0.000020,65593248,32091924,0,0,91340,0,1,1 +1773696164.814277,0.65,4,3992.50,53.59,1617.77,2098.33,0.00,61803.547040,68596.033054,4234152,3478378,0.000031,0.000055,65593250,32091929,0,0,91343,0,1,1 +1773696169.809468,0.70,4,3992.50,53.59,1617.77,2098.33,0.00,0.000000,0.004692,4234152,3478380,0.000000,0.000664,65593250,32091935,0,0,91345,0,1,1 +1773696174.813861,1.10,4,3992.50,53.69,1625.55,2101.96,0.00,3515348343334.199219,3515348336543.881836,11,0,0.000000,0.000030,65593250,32091938,0,0,91348,0,1,1 +1773696179.809875,0.75,4,3992.50,53.23,1642.95,2084.15,0.00,61879.480328,68680.372849,4232649,3477717,0.000000,0.000020,65593250,32091940,0,0,91350,0,1,1 +1773696184.813543,0.60,4,3992.50,53.26,1642.00,2085.10,0.00,3515858186319.814941,3515858179538.335449,253,762,0.000056,0.000086,65593254,32091947,0,0,91353,0,1,1 +1773696189.813576,0.65,4,3992.50,53.26,1642.00,2085.10,0.00,61837.808667,68625.175651,4234152,3478485,0.000064,0.000072,65593259,32091953,0,0,91355,0,1,1 +1773696194.813708,0.60,4,3992.50,53.21,1643.75,2083.35,0.00,3518344796827.599121,3518344790029.172363,258,2,0.000157,0.000223,65593271,32091969,0,0,91358,0,1,1 +1773696199.813956,0.70,4,3992.50,53.24,1642.53,2084.57,0.00,61824.909279,68622.230025,4232649,3477723,0.000000,0.000020,65593271,32091971,0,0,91360,0,1,1 +1773696204.813472,0.85,4,3992.50,53.44,1634.91,2092.16,0.00,3518777735883.902344,3518777729087.761230,11,0,0.000000,0.000030,65593271,32091974,0,0,91363,0,1,1 +1773696209.813901,0.80,4,3992.50,53.03,1650.76,2076.34,0.00,2.175204,0.000195,258,2,0.002209,0.000714,65593293,32091991,0,0,91365,0,1,1 +1773696214.812723,16.16,4,3992.50,54.23,1603.86,2123.25,0.00,61852.274695,68652.623068,4234152,3478654,40.075410,0.026583,65597776,32093827,0,0,91368,0,1,1 +1773696219.810560,0.70,4,3992.50,53.80,1620.69,2106.41,0.00,3519959669573.669434,3519959669572.735840,4232649,3477897,0.000000,0.000020,65597776,32093829,0,0,91370,0,1,1 +1773696224.814029,0.75,4,3992.50,53.38,1637.24,2089.87,0.00,3515997890468.329102,3515997883675.228027,258,2,0.000000,0.000030,65597776,32093832,0,0,91373,0,1,1 +1773696229.809561,0.65,4,3992.50,53.18,1644.95,2082.16,0.00,3521584093609.807129,3521584093611.984375,11,0,0.000000,0.000020,65597776,32093834,0,0,91375,0,1,1 +1773696234.814001,0.95,4,3992.50,53.50,1625.98,2094.46,0.00,1.656244,10.665724,253,762,0.000000,0.000673,65597776,32093841,0,0,91378,0,1,1 +1773696239.814353,0.75,4,3992.50,53.45,1627.47,2092.62,0.00,3518189505824.099609,3518189505814.902344,205,0,0.000000,0.000020,65597776,32093843,0,0,91380,0,1,1 +1773696244.813888,0.70,4,3992.50,53.45,1627.23,2092.86,0.00,0.000000,0.000000,205,0,0.000000,0.000030,65597776,32093846,0,0,91383,0,1,1 +1773696249.809585,0.65,4,3992.50,53.45,1627.23,2092.86,0.00,61883.233709,68685.029979,4232649,3477967,0.000000,0.000020,65597776,32093848,0,0,91385,0,1,1 +1773696254.809473,0.70,4,3992.50,53.43,1628.00,2092.09,0.00,3518515795734.582520,3518515788947.686523,253,762,0.000000,0.000030,65597776,32093851,0,0,91388,0,1,1 +1773696259.813781,0.65,4,3992.50,53.45,1627.59,2092.50,0.00,61784.982687,68566.838019,4234152,3478736,0.000157,0.000200,65597788,32093865,0,0,91390,0,1,1 +1773696264.809458,0.90,4,3992.50,53.64,1623.00,2100.13,0.00,3521482087236.355957,3521482087235.444336,4232649,3477992,0.000016,0.000059,65597790,32093871,0,0,91393,0,1,1 +1773696269.813583,0.70,4,3992.50,53.47,1626.57,2093.57,0.00,3515536928227.058105,3515536921445.863770,253,762,0.000000,0.000020,65597790,32093873,0,0,91395,0,1,1 +1773696274.809467,0.60,4,3992.50,53.47,1626.57,2093.56,0.00,0.518102,3521336040310.560547,258,2,0.000000,0.000030,65597790,32093876,0,0,91398,0,1,1 +1773696279.810790,17.45,4,3992.50,54.19,1598.53,2121.59,0.00,3517506884591.817871,10.672177,253,762,40.054321,0.023389,65602162,32095435,0,0,91400,0,1,1 +1773696284.814025,0.70,4,3992.50,53.35,1631.38,2088.74,0.00,3516162028421.249023,3516162028412.237305,11,0,0.000000,0.000030,65602162,32095438,0,0,91403,0,1,1 +1773696289.812431,0.70,4,3992.50,53.07,1642.49,2077.63,0.00,61849.867585,68647.973623,4232649,3478157,0.000000,0.000020,65602162,32095440,0,0,91405,0,1,1 +1773696294.810352,1.05,4,3992.50,52.97,1632.43,2073.89,0.00,3519901152084.057129,3519901145285.236328,75,0,0.000000,0.000030,65602162,32095443,0,0,91408,0,1,1 +1773696299.813220,0.60,4,3992.50,52.97,1632.44,2073.89,0.00,0.126685,0.000000,205,0,0.000000,0.000502,65602162,32095448,0,0,91410,0,1,1 +1773696304.810723,0.75,4,3992.50,52.97,1632.50,2073.80,0.00,1.478179,10.680528,253,762,0.000000,0.000191,65602162,32095452,0,0,91413,0,1,1 +1773696309.814253,0.70,4,3992.50,52.78,1639.93,2066.41,0.00,3515955352956.546875,3515955352947.355957,205,0,0.000013,0.000020,65602163,32095454,0,0,91415,0,1,1 +1773696314.813909,0.65,4,3992.50,52.60,1647.10,2059.23,0.00,61834.236611,68630.975620,4232650,3478275,0.000000,0.000030,65602163,32095457,0,0,91418,0,1,1 +1773696319.814257,0.65,4,3992.50,52.58,1647.70,2058.63,0.00,3518192694580.949219,3518192687785.329590,11,0,0.000000,0.000020,65602163,32095459,0,0,91420,0,1,1 +1773696324.814409,1.15,4,3992.50,52.65,1640.88,2061.54,0.00,61838.004323,68634.879711,4234153,3479060,0.000157,0.000210,65602175,32095474,0,0,91423,0,1,1 +1773696329.813896,0.70,4,3992.50,52.68,1639.92,2062.49,0.00,3518798491052.885254,3518798484255.050293,75,0,0.000008,0.000028,65602176,32095477,0,0,91425,0,1,1 +1773696334.811642,0.60,4,3992.50,52.68,1639.93,2062.49,0.00,61867.736887,68667.960053,4234153,3479080,0.000000,0.000030,65602176,32095480,0,0,91428,0,1,1 +1773696339.814103,0.65,4,3992.50,52.68,1639.93,2062.49,0.00,3516705833374.609375,3516705826580.670410,205,0,0.000000,0.000020,65602176,32095482,0,0,91430,0,1,1 +1773696344.814176,15.33,4,3992.50,53.46,1609.26,2093.14,0.00,61829.093994,68625.347517,4232650,3478367,40.064582,0.030341,65606571,32097593,0,0,91433,0,1,1 +1773696349.809452,0.70,4,3992.50,53.07,1624.61,2077.80,0.00,3521764499586.947754,3521764492784.348633,11,0,0.000000,0.000020,65606571,32097595,0,0,91435,0,1,1 +1773696354.809906,1.00,4,3992.50,53.09,1627.95,2078.64,0.00,0.053511,0.000000,75,0,0.000000,0.000030,65606571,32097598,0,0,91438,0,1,1 +1773696359.809455,0.80,4,3992.50,53.09,1628.02,2078.69,0.00,61845.424637,68643.399558,4234153,3479279,0.000000,0.000020,65606571,32097600,0,0,91440,0,1,1 +1773696364.813835,0.60,4,3992.50,53.08,1628.46,2078.25,0.00,3515357479454.497070,3515357472663.138672,11,0,0.000000,0.000673,65606571,32097607,0,0,91443,0,1,1 +1773696369.814150,0.70,4,3992.50,53.09,1628.21,2078.50,0.00,1.657610,10.674523,253,762,0.000000,0.000020,65606571,32097609,0,0,91445,0,1,1 +1773696374.811574,0.70,4,3992.50,53.14,1626.25,2080.46,0.00,61860.391863,68651.246716,4232650,3478519,0.000000,0.000030,65606571,32097612,0,0,91448,0,1,1 +1773696379.813711,0.65,4,3992.50,53.14,1626.25,2080.46,0.00,3516933854780.583984,3516933847984.940430,258,2,0.001229,0.001244,65606580,32097628,0,0,91450,0,1,1 +1773696384.811560,0.95,4,3992.50,53.23,1620.97,2084.11,0.00,61864.335250,68666.790844,4234153,3479300,0.000213,0.000570,65606588,32097643,0,0,91453,0,1,1 +1773696389.813749,0.65,4,3992.50,53.16,1623.83,2081.29,0.00,3516897703784.750977,3516897703783.805176,4232650,3478539,0.000157,0.000200,65606600,32097657,0,0,91455,0,1,1 +1773696394.812550,0.60,4,3992.50,53.19,1622.60,2082.51,0.00,3519280512364.182129,3519280505563.969238,258,2,0.000000,0.000030,65606600,32097660,0,0,91458,0,1,1 +1773696399.809551,0.65,4,3992.50,53.19,1622.60,2082.50,0.00,3520549385720.666992,3520549385722.790039,75,0,0.000000,0.000020,65606600,32097662,0,0,91460,0,1,1 +1773696404.811919,0.60,4,3992.50,53.19,1622.61,2082.50,0.00,0.126698,0.000000,205,0,0.000000,0.000030,65606600,32097665,0,0,91463,0,1,1 +1773696409.809706,19.83,4,3992.50,54.63,1566.12,2138.98,0.00,61857.366917,68656.994528,4232650,3478604,40.083941,0.023463,65610980,32099120,0,0,91465,0,1,1 +1773696414.809500,0.85,4,3992.50,53.92,1594.79,2111.24,0.00,3518582482806.200195,3518582476009.481445,11,0,0.000619,0.000282,65610992,32099130,0,0,91468,0,1,1 +1773696419.814056,0.75,4,3992.50,53.61,1606.98,2099.06,0.00,1.656206,10.665477,253,762,0.000212,0.000559,65611000,32099144,0,0,91470,0,1,1 +1773696424.813854,0.70,4,3992.50,53.32,1618.64,2087.40,0.00,61840.726394,68629.573668,4234153,3479525,0.000031,0.000055,65611002,32099149,0,0,91473,0,1,1 +1773696429.813381,0.60,4,3992.50,53.32,1618.50,2087.54,0.00,3518770260578.825195,3518770253780.589844,11,0,0.000031,0.000528,65611004,32099156,0,0,91475,0,1,1 +1773696434.809450,0.70,4,3992.50,53.31,1618.71,2087.33,0.00,2.177102,0.000195,258,2,0.000000,0.000191,65611004,32099160,0,0,91478,0,1,1 +1773696439.813481,0.85,4,3992.50,53.32,1618.31,2087.72,0.00,0.000000,0.000000,258,2,0.001416,0.001181,65611033,32099186,0,0,91480,0,1,1 +1773696444.811364,0.95,4,3992.50,53.45,1612.28,2092.85,0.00,61854.187320,68655.936751,4232650,3478792,0.001065,0.000431,65611055,32099202,0,0,91483,0,1,1 +1773696449.813264,0.70,4,3992.50,53.27,1619.44,2085.70,0.00,3517100219885.423340,3517100213089.137695,258,2,0.000000,0.000020,65611055,32099204,0,0,91485,0,1,1 +1773696454.813890,0.70,4,3992.50,53.27,1619.44,2085.69,0.00,3517997170758.912109,3517997170761.086914,11,0,0.000081,0.000117,65611061,32099213,0,0,91488,0,1,1 +1773696459.809454,0.55,4,3992.50,53.27,1619.44,2085.69,0.00,2.177322,0.000195,258,2,0.000033,0.000059,65611064,32099218,0,0,91490,0,1,1 +1773696464.813420,0.70,4,3992.50,53.23,1620.92,2084.21,0.00,3515648524049.389160,3515648524051.562988,11,0,0.000031,0.000055,65611066,32099223,0,0,91493,0,1,1 +1773696469.810002,0.70,4,3992.50,53.23,1620.92,2084.21,0.00,2.176879,0.000195,258,2,0.000000,0.000020,65611066,32099225,0,0,91495,0,1,1 +1773696474.809571,17.83,4,3992.50,53.98,1591.59,2113.43,0.00,3518740949414.770996,3518740949416.946289,11,0,40.067187,0.021779,65615371,32100668,0,0,91498,0,1,1 +1773696479.809664,0.90,4,3992.50,53.60,1606.50,2098.48,0.00,61838.743656,68636.618260,4234153,3479809,0.000619,0.000273,65615383,32100677,0,0,91500,0,1,1 +1773696484.812100,0.70,4,3992.50,53.61,1606.02,2098.97,0.00,3516723643144.010742,3516723636347.145996,258,2,0.000056,0.000086,65615387,32100684,0,0,91503,0,1,1 +1773696489.810308,0.65,4,3992.50,53.61,1606.07,2098.92,0.00,0.000000,0.000000,258,2,0.000025,0.000051,65615389,32100688,0,0,91505,0,1,1 +1773696494.813556,0.65,4,3992.50,53.60,1606.32,2098.67,0.00,0.000000,0.000000,258,2,0.000008,0.000199,65615390,32100693,0,0,91508,0,1,1 +1773696499.814371,0.75,4,3992.50,53.60,1606.32,2098.67,0.00,3517863637398.776855,10.673260,253,762,0.000000,0.000503,65615390,32100698,0,0,91510,0,1,1 +1773696504.812480,0.90,4,3992.50,53.60,1614.56,2098.67,0.00,3519768119089.893066,3519768119080.691895,205,0,0.000000,0.000030,65615390,32100701,0,0,91513,0,1,1 +1773696509.810670,0.70,4,3992.50,53.39,1622.89,2090.18,0.00,3519711786625.578613,0.000000,11,0,0.000000,0.000020,65615390,32100703,0,0,91515,0,1,1 +1773696514.813928,0.70,4,3992.50,53.39,1622.89,2090.18,0.00,2.173974,0.000195,258,2,0.000000,0.000030,65615390,32100706,0,0,91518,0,1,1 +1773696519.809453,0.75,4,3992.50,53.39,1622.77,2090.30,0.00,3521589669042.601074,3521589669044.725098,75,0,0.000132,0.000170,65615400,32100718,0,0,91520,0,1,1 +1773696524.809462,0.60,4,3992.50,53.38,1622.97,2090.09,0.00,3518430737785.333984,0.000000,11,0,0.000025,0.000061,65615402,32100723,0,0,91523,0,1,1 +1773696529.813684,0.80,4,3992.50,53.38,1622.98,2090.09,0.00,2.173555,0.000195,258,2,0.000008,0.000028,65615403,32100726,0,0,91525,0,1,1 +1773696534.809358,0.85,4,3992.50,53.38,1623.70,2090.09,0.00,3521484131472.268066,3521484131474.445312,11,0,0.000000,0.000030,65615403,32100729,0,0,91528,0,1,1 +1773696539.813961,16.71,4,3992.50,53.36,1623.56,2089.03,0.00,2.173390,0.000195,258,2,40.025072,0.020947,65619724,32102171,0,0,91530,0,1,1 +1773696544.813771,0.85,4,3992.50,53.28,1626.47,2086.11,0.00,3518570870240.280762,3518570870242.276367,205,0,0.003001,0.001438,65619779,32102211,0,0,91533,0,1,1 +1773696549.813552,0.65,4,3992.50,53.29,1626.12,2086.46,0.00,1.477506,10.675663,253,762,0.000000,0.000020,65619779,32102213,0,0,91535,0,1,1 +1773696554.813554,0.60,4,3992.50,53.27,1627.04,2085.55,0.00,3518435423627.588379,3518435423618.390625,205,0,0.000000,0.000030,65619779,32102216,0,0,91538,0,1,1 +1773696559.813633,0.65,4,3992.50,53.27,1627.04,2085.54,0.00,0.000000,0.000000,205,0,0.000000,0.000181,65619779,32102219,0,0,91540,0,1,1 +1773696564.813441,1.00,4,3992.50,53.49,1618.57,2094.17,0.00,3518572288280.595215,0.000000,11,0,0.000000,0.000513,65619779,32102225,0,0,91543,0,1,1 +1773696569.813470,0.60,4,3992.50,53.33,1624.63,2087.89,0.00,61829.808403,68627.172840,4232651,3479346,0.000000,0.000020,65619779,32102227,0,0,91545,0,1,1 +1773696574.813695,0.70,4,3992.50,53.14,1632.02,2080.50,0.00,3518279183356.428223,3518279176557.153809,258,2,0.000000,0.000030,65619779,32102230,0,0,91548,0,1,1 +1773696579.809478,0.70,4,3992.50,53.07,1634.52,2078.00,0.00,3521407107997.677734,3521407107999.854980,11,0,0.000000,0.000020,65619779,32102232,0,0,91550,0,1,1 +1773696584.813809,0.60,4,3992.50,53.08,1634.31,2078.21,0.00,0.180117,0.000000,205,0,0.000056,0.000086,65619783,32102239,0,0,91553,0,1,1 +1773696589.813618,0.75,4,3992.50,53.08,1634.31,2078.21,0.00,1.477498,10.675604,253,762,0.000109,0.000152,65619792,32102250,0,0,91555,0,1,1 +1773696594.814055,0.95,4,3992.50,53.43,1621.22,2091.73,0.00,61832.843142,68621.639047,4234154,3480135,0.000000,0.000030,65619792,32102253,0,0,91558,0,1,1 +1773696599.813647,0.65,4,3992.50,53.42,1620.83,2091.69,0.00,0.000000,0.016408,4234154,3480151,0.000000,0.000020,65619792,32102255,0,0,91560,0,1,1 +1773696604.809868,15.79,4,3992.50,53.58,1614.75,2097.78,0.00,3521098438313.038086,3521098431509.473145,11,0,40.092458,0.021309,65624132,32103723,0,0,91563,0,1,1 +1773696609.813823,1.10,4,3992.50,53.58,1614.76,2097.78,0.00,2.173671,0.000195,258,2,0.003083,0.001427,65624188,32103762,0,0,91565,0,1,1 +1773696614.813622,0.70,4,3992.50,53.58,1614.77,2097.77,0.00,0.000000,0.000000,258,2,0.000000,0.000030,65624188,32103765,0,0,91568,0,1,1 +1773696619.814415,0.55,4,3992.50,53.59,1614.52,2098.02,0.00,3517879394224.151855,3517879394226.327148,11,0,0.000000,0.000020,65624188,32103767,0,0,91570,0,1,1 +1773696624.813936,1.20,4,3992.50,53.63,1616.25,2099.91,0.00,61836.126689,68634.338054,4232653,3479485,0.000000,0.000352,65624188,32103772,0,0,91573,0,1,1 +1773696629.814035,0.65,4,3992.50,53.60,1617.63,2098.54,0.00,3518367220912.008789,3518367214114.403809,205,0,0.000000,0.000342,65624188,32103776,0,0,91575,0,1,1 +1773696634.814207,0.65,4,3992.50,53.61,1617.40,2098.76,0.00,61837.623451,68636.241103,4234156,3480420,0.000000,0.000030,65624188,32103779,0,0,91578,0,1,1 +1773696639.814110,0.70,4,3992.50,53.61,1617.19,2098.98,0.00,3518505630533.163086,3518505623734.359863,11,0,0.000000,0.000020,65624188,32103781,0,0,91580,0,1,1 +1773696644.809831,0.70,4,3992.50,53.61,1617.19,2098.98,0.00,0.053561,0.000000,75,0,0.000000,0.000030,65624188,32103784,0,0,91583,0,1,1 +1773696649.809984,0.60,4,3992.50,53.61,1617.19,2098.98,0.00,61828.245308,68625.823031,4232653,3479664,0.000056,0.000076,65624192,32103790,0,0,91585,0,1,1 +1773696654.813893,0.95,4,3992.50,53.67,1620.04,2101.16,0.00,3515689027162.588379,3515689020379.174316,253,762,0.000117,0.000170,65624202,32103803,0,0,91588,0,1,1 +1773696659.813888,0.75,4,3992.50,53.64,1620.14,2100.20,0.00,3518441070018.772461,3518441070009.755371,11,0,0.000000,0.000020,65624202,32103805,0,0,91590,0,1,1 +1773696664.813543,0.70,4,3992.50,53.64,1620.14,2100.20,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65624202,32103808,0,0,91593,0,1,1 +1773696669.809467,15.64,4,3992.50,55.04,1565.21,2155.12,0.00,2.177165,0.000195,258,2,40.099943,0.024207,65628736,32105403,0,0,91595,0,1,1 +1773696674.812479,0.70,4,3992.50,54.20,1598.26,2122.07,0.00,61800.529342,68597.450635,4234156,3480606,0.000618,0.000282,65628748,32105413,0,0,91598,0,1,1 +1773696679.809469,0.75,4,3992.50,53.64,1620.04,2100.29,0.00,3520555881647.017090,3520555874844.029297,75,0,0.000308,0.000575,65628755,32105426,0,0,91600,0,1,1 +1773696684.809483,1.00,4,3992.50,53.58,1620.76,2097.61,0.00,61839.709763,68638.657015,4234156,3480637,0.001126,0.001232,65628764,32105443,0,0,91603,0,1,1 +1773696689.812553,0.80,4,3992.50,53.58,1620.21,2097.72,0.00,3516277756570.037598,3516277749773.124512,258,2,0.000008,0.000028,65628765,32105446,0,0,91605,0,1,1 +1773696694.810816,0.60,4,3992.50,53.58,1620.21,2097.72,0.00,3519660064087.366699,3519660064089.362793,205,0,0.000000,0.000674,65628765,32105453,0,0,91608,0,1,1 +1773696699.814193,0.70,4,3992.50,53.58,1620.22,2097.71,0.00,3516062331696.311035,0.000000,11,0,0.000000,0.000020,65628765,32105455,0,0,91610,0,1,1 +1773696704.814174,1.00,4,3992.50,53.57,1620.68,2097.25,0.00,61830.447537,68628.493430,4232653,3479918,0.000000,0.000030,65628765,32105458,0,0,91613,0,1,1 +1773696709.809491,0.75,4,3992.50,53.57,1620.44,2097.50,0.00,3521735185143.090820,3521735178336.522461,258,2,0.000000,0.000020,65628765,32105460,0,0,91615,0,1,1 +1773696714.809477,0.85,4,3992.50,53.76,1613.16,2104.84,0.00,61828.196633,68628.453957,4232653,3479936,0.000163,0.000204,65628777,32105475,0,0,91618,0,1,1 +1773696719.809465,0.70,4,3992.50,53.76,1613.18,2104.82,0.00,3518446245755.042969,3518446238956.908203,75,0,0.001152,0.001253,65628788,32105493,0,0,91620,0,1,1 +1773696724.809447,0.85,4,3992.50,53.77,1612.70,2105.29,0.00,3518449761304.514648,0.000000,11,0,0.000039,0.000063,65628791,32105499,0,0,91623,0,1,1 +1773696729.809571,0.75,4,3992.50,53.77,1612.70,2105.29,0.00,0.000000,0.000000,11,0,0.000031,0.000045,65628793,32105503,0,0,91625,0,1,1 +1773696734.809576,13.46,4,3992.50,55.14,1559.32,2158.66,0.00,0.053516,0.000000,75,0,40.066183,0.024316,65633266,32107093,0,0,91628,0,1,1 +1773696739.809452,1.00,4,3992.50,54.27,1593.29,2124.70,0.00,61841.439912,68640.763801,4234157,3480854,0.002074,0.002104,65633297,32107121,0,0,91630,0,1,1 +1773696744.810631,1.00,4,3992.50,54.04,1593.47,2115.67,0.00,3517607630360.359863,3517607630359.479004,4232654,3480119,0.001064,0.000431,65633319,32107137,0,0,91633,0,1,1 +1773696749.809464,0.65,4,3992.50,53.80,1602.76,2106.37,0.00,3519258429354.113770,3519258422554.307129,11,0,0.000000,0.000020,65633319,32107139,0,0,91635,0,1,1 +1773696754.810719,0.75,4,3992.50,53.79,1603.05,2106.13,0.00,0.180228,0.000000,205,0,0.000000,0.000030,65633319,32107142,0,0,91638,0,1,1 +1773696759.812587,0.65,4,3992.50,53.79,1603.05,2106.13,0.00,3517124018881.240234,0.000000,11,0,0.000000,0.000664,65633319,32107148,0,0,91640,0,1,1 +1773696764.809453,0.70,4,3992.50,53.79,1603.06,2106.13,0.00,0.000000,0.000000,11,0,0.000031,0.000055,65633321,32107153,0,0,91643,0,1,1 +1773696769.809477,0.70,4,3992.50,53.79,1603.18,2106.00,0.00,1.657707,10.675143,253,762,0.000016,0.000036,65633323,32107157,0,0,91645,0,1,1 +1773696774.813778,0.90,4,3992.50,53.81,1611.41,2106.66,0.00,0.000000,0.000000,253,762,0.000000,0.000030,65633323,32107160,0,0,91648,0,1,1 +1773696779.813528,0.70,4,3992.50,53.83,1610.68,2107.41,0.00,3518612988934.353027,3518612988925.335449,11,0,0.000107,0.000138,65633331,32107170,0,0,91650,0,1,1 +1773696784.814020,0.65,4,3992.50,53.83,1610.68,2107.39,0.00,61833.862384,68632.489822,4234157,3480976,0.000081,0.000117,65633337,32107179,0,0,91653,0,1,1 +1773696789.813890,0.75,4,3992.50,53.83,1610.68,2107.39,0.00,0.000000,0.003125,4234157,3480980,0.000050,0.000082,65633341,32107185,0,0,91655,0,1,1 +1773696794.809578,0.65,4,3992.50,53.83,1610.68,2107.40,0.00,3521473980984.777832,3521473974179.608398,11,0,0.000000,0.000030,65633341,32107188,0,0,91658,0,1,1 +1773696799.809478,15.33,4,3992.50,53.45,1625.29,2092.77,0.00,0.000000,0.000000,11,0,40.064225,0.035281,65637784,32109766,0,0,91660,0,1,1 +1773696804.814171,1.15,4,3992.50,53.66,1621.43,2100.91,0.00,1.656161,10.665187,253,762,0.003090,0.001445,65637841,32109807,0,0,91663,0,1,1 +1773696809.814159,0.60,4,3992.50,53.65,1621.94,2100.41,0.00,3518445598263.226562,3518445598254.209473,11,0,0.000000,0.000020,65637841,32109809,0,0,91665,0,1,1 +1773696814.810191,0.70,4,3992.50,53.68,1620.71,2101.64,0.00,2.177118,0.000195,258,2,0.000000,0.000030,65637841,32109812,0,0,91668,0,1,1 +1773696819.811654,0.75,4,3992.50,53.68,1620.71,2101.64,0.00,61809.994643,68608.785528,4232655,3480493,0.000000,0.000020,65637841,32109814,0,0,91670,0,1,1 +1773696824.810359,0.70,4,3992.50,53.68,1620.71,2101.64,0.00,3519348972362.719727,3519348965562.353027,11,0,0.000000,0.000674,65637841,32109821,0,0,91673,0,1,1 +1773696829.814296,0.55,4,3992.50,53.68,1620.71,2101.64,0.00,61781.590376,68574.864653,4232655,3480504,0.000000,0.000020,65637841,32109823,0,0,91675,0,1,1 +1773696834.811169,0.65,4,3992.50,53.67,1621.23,2101.12,0.00,3520639166025.731934,3520639159222.851562,11,0,0.000000,0.000030,65637841,32109826,0,0,91678,0,1,1 +1773696839.813570,0.85,4,3992.50,53.59,1619.16,2098.23,0.00,61810.296290,68606.648953,4234158,3481287,0.000000,0.000020,65637841,32109828,0,0,91680,0,1,1 +1773696844.809569,0.85,4,3992.50,53.60,1618.92,2098.47,0.00,3521254905220.253418,3521254898415.138184,75,0,0.000056,0.000086,65637845,32109835,0,0,91683,0,1,1 +1773696849.813166,0.70,4,3992.50,53.60,1618.92,2098.47,0.00,3515908117728.637207,0.000000,11,0,0.000117,0.000160,65637855,32109847,0,0,91685,0,1,1 +1773696854.814137,0.70,4,3992.50,53.60,1618.92,2098.47,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65637855,32109850,0,0,91688,0,1,1 +1773696859.809561,0.80,4,3992.50,53.60,1618.92,2098.47,0.00,0.053565,0.000000,75,0,0.000000,0.000020,65637855,32109852,0,0,91690,0,1,1 +1773696864.812268,17.93,4,3992.50,55.39,1548.77,2168.68,0.00,3516533577739.160645,0.000000,11,0,40.040716,0.021404,65642219,32111329,0,0,91693,0,1,1 +1773696869.814137,0.75,4,3992.50,54.57,1580.66,2136.63,0.00,0.000000,0.000000,11,0,0.003084,0.001428,65642275,32111368,0,0,91695,0,1,1 +1773696874.809493,0.80,4,3992.50,54.00,1603.02,2114.27,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65642275,32111371,0,0,91698,0,1,1 +1773696879.813565,0.65,4,3992.50,53.77,1612.01,2105.28,0.00,61791.166150,68584.192003,4234523,3481664,0.000000,0.000020,65642275,32111373,0,0,91700,0,1,1 +1773696884.813974,0.65,4,3992.50,53.77,1611.89,2105.39,0.00,3518149522136.965820,3518149515336.788574,258,2,0.000000,0.000030,65642275,32111376,0,0,91703,0,1,1 +1773696889.813584,0.65,4,3992.50,53.75,1612.73,2104.56,0.00,61834.405080,68634.730710,4233020,3480910,0.000000,0.000664,65642275,32111382,0,0,91705,0,1,1 +1773696894.813833,0.90,4,3992.50,53.95,1607.45,2112.44,0.00,3518262305598.856934,3518262298801.574707,11,0,0.000000,0.000030,65642275,32111385,0,0,91708,0,1,1 +1773696899.811591,0.70,4,3992.50,53.95,1604.93,2112.35,0.00,61869.222313,68670.923081,4234523,3481708,0.000000,0.000020,65642275,32111387,0,0,91710,0,1,1 +1773696904.811557,0.70,4,3992.50,53.95,1605.08,2112.20,0.00,3518461453980.821289,3518461447182.122559,11,0,0.000000,0.000030,65642275,32111390,0,0,91713,0,1,1 +1773696909.809582,0.65,4,3992.50,53.95,1605.09,2112.20,0.00,2.176250,0.000195,258,2,0.000056,0.000076,65642279,32111396,0,0,91715,0,1,1 +1773696914.809473,0.65,4,3992.50,53.95,1605.09,2112.20,0.00,61840.682645,68641.670970,4234525,3481754,0.000117,0.000170,65642289,32111409,0,0,91718,0,1,1 +1773696919.813619,0.70,4,3992.50,53.95,1605.08,2112.22,0.00,3515522402106.388184,3515522395313.300781,75,0,0.000000,0.000020,65642289,32111411,0,0,91720,0,1,1 +1773696924.813654,1.10,4,3992.50,53.95,1611.32,2112.19,0.00,1.604188,10.675119,253,762,0.000000,0.000030,65642289,32111414,0,0,91723,0,1,1 +1773696929.810602,16.66,4,3992.50,55.03,1569.03,2154.48,0.00,0.517992,3520586784107.057617,258,2,40.090064,0.028465,65646740,32113442,0,0,91725,0,1,1 +1773696934.813880,0.80,4,3992.50,54.00,1609.11,2114.39,0.00,61798.827135,68595.391149,4234525,3481955,0.003083,0.001437,65646796,32113482,0,0,91728,0,1,1 +1773696939.810462,0.65,4,3992.50,53.75,1619.09,2104.42,0.00,3520843997406.647461,3520843990603.151367,11,0,0.000000,0.000020,65646796,32113484,0,0,91730,0,1,1 +1773696944.810724,0.60,4,3992.50,53.75,1619.07,2104.44,0.00,2.175277,0.000195,258,2,0.000000,0.000030,65646796,32113487,0,0,91733,0,1,1 +1773696949.809567,0.65,4,3992.50,53.75,1619.27,2104.25,0.00,3519251769968.802734,3519251769970.925293,75,0,0.000000,0.000020,65646796,32113489,0,0,91735,0,1,1 +1773696954.809648,1.00,4,3992.50,54.15,1603.74,2119.93,0.00,61830.727662,68628.652227,4233022,3481232,0.000000,0.000674,65646796,32113496,0,0,91738,0,1,1 +1773696959.814152,0.65,4,3992.50,54.04,1607.66,2115.90,0.00,3515270534408.805664,3515270527614.768555,258,2,0.000000,0.000020,65646796,32113498,0,0,91740,0,1,1 +1773696964.812660,0.70,4,3992.50,53.85,1615.29,2108.27,0.00,3519487973132.330566,3519487973134.506836,11,0,0.000000,0.000030,65646796,32113501,0,0,91743,0,1,1 +1773696969.813982,0.65,4,3992.50,53.85,1615.05,2108.52,0.00,0.000000,0.000000,11,0,0.000000,0.000020,65646796,32113503,0,0,91745,0,1,1 +1773696974.814348,0.65,4,3992.50,53.86,1614.80,2108.76,0.00,0.180260,0.000000,205,0,0.000056,0.000086,65646800,32113510,0,0,91748,0,1,1 +1773696979.814148,0.65,4,3992.50,53.87,1614.59,2108.98,0.00,0.000000,0.000000,205,0,0.000416,0.000707,65646816,32113532,0,0,91750,0,1,1 +1773696984.814221,0.90,4,3992.50,53.91,1618.49,2110.86,0.00,0.000000,0.000000,205,0,0.000205,0.000562,65646823,32113546,0,0,91753,0,1,1 +1773696989.813692,0.60,4,3992.50,53.91,1618.57,2110.77,0.00,61838.155946,68637.130113,4233022,3481299,0.000000,0.000020,65646823,32113548,0,0,91755,0,1,1 +1773696994.814330,17.61,4,3992.50,58.53,1437.65,2291.66,0.00,3517988291146.926758,3517988284349.720215,11,0,35.049769,0.017298,65650612,32114727,0,0,91758,0,1,1 +1773696999.812177,0.95,4,3992.50,54.52,1594.59,2134.74,0.00,0.000000,0.000000,11,0,5.012818,0.003923,65651184,32114935,0,0,91760,0,1,1 +1773697004.810681,0.70,4,3992.50,53.95,1616.92,2112.41,0.00,0.053532,0.000000,75,0,0.000000,0.000030,65651184,32114938,0,0,91763,0,1,1 +1773697009.814133,0.70,4,3992.50,53.68,1627.49,2101.84,0.00,3516009477471.949219,0.000000,11,0,0.000000,0.000020,65651184,32114940,0,0,91765,0,1,1 +1773697014.809472,0.95,4,3992.50,53.66,1620.06,2100.76,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65651184,32114943,0,0,91768,0,1,1 +1773697019.813597,0.70,4,3992.50,53.66,1620.07,2100.76,0.00,61780.836589,68573.515867,4233023,3481526,0.000204,0.001195,65651191,32114960,0,0,91770,0,1,1 +1773697024.810655,0.60,4,3992.50,53.66,1619.85,2100.97,0.00,3520508731269.763184,3520508724467.476562,11,0,0.000031,0.000055,65651193,32114965,0,0,91773,0,1,1 +1773697029.811773,0.75,4,3992.50,53.48,1627.04,2093.78,0.00,0.000000,0.000000,11,0,0.000039,0.000053,65651196,32114970,0,0,91775,0,1,1 +1773697034.814329,0.65,4,3992.50,53.52,1625.59,2095.24,0.00,1.656868,10.669741,253,762,0.000000,0.000030,65651196,32114973,0,0,91778,0,1,1 +1773697039.813552,0.75,4,3992.50,53.52,1625.59,2095.23,0.00,3518983892882.510254,3518983892873.437988,75,0,0.003040,0.002799,65651232,32115006,0,0,91780,0,1,1 +1773697044.812772,1.05,4,3992.50,53.61,1619.73,2098.93,0.00,0.000000,0.000000,75,0,0.001810,0.001446,65651263,32115030,0,0,91783,0,1,1 +1773697049.814386,0.75,4,3992.50,53.61,1617.48,2098.88,0.00,3517301681098.040039,0.000000,11,0,0.000000,0.000020,65651263,32115032,0,0,91785,0,1,1 +1773697054.809572,0.70,4,3992.50,53.61,1617.48,2098.88,0.00,0.180447,0.000000,205,0,0.000000,0.000030,65651263,32115035,0,0,91788,0,1,1 +1773697059.813448,16.09,4,3992.50,58.41,1429.40,2286.93,0.00,3515712212691.568359,0.000000,75,0,29.823549,0.018895,65654461,32116340,0,0,91790,0,1,1 +1773697064.810884,1.71,4,3992.50,54.18,1595.07,2121.26,0.00,61873.210135,68676.187361,4234526,3482504,10.223242,0.003892,65655584,32116545,0,0,91793,0,1,1 +1773697069.812999,0.55,4,3992.50,53.70,1613.92,2102.43,0.00,0.000000,0.003124,4234526,3482505,0.000000,0.000020,65655584,32116547,0,0,91795,0,1,1 +1773697074.814095,0.90,4,3992.50,53.73,1613.45,2103.77,0.00,3517666332077.026855,3517666325276.903809,258,2,0.000000,0.000030,65655584,32116550,0,0,91798,0,1,1 +1773697079.809450,0.75,4,3992.50,53.75,1612.60,2104.55,0.00,3521708652943.460938,3521708652945.458008,205,0,0.000000,0.000020,65655584,32116552,0,0,91800,0,1,1 +1773697084.813945,0.70,4,3992.50,53.75,1612.60,2104.54,0.00,1.993325,0.000195,258,2,0.000056,0.000568,65655588,32116562,0,0,91803,0,1,1 +1773697089.813690,0.70,4,3992.50,53.77,1611.86,2105.29,0.00,3518617053139.568359,3518617053141.743652,11,0,0.000033,0.000220,65655591,32116568,0,0,91805,0,1,1 +1773697094.813799,0.65,4,3992.50,53.77,1611.86,2105.28,0.00,0.180269,0.000000,205,0,0.000000,0.000030,65655591,32116571,0,0,91808,0,1,1 +1773697099.813560,0.65,4,3992.50,53.77,1611.87,2105.28,0.00,0.000000,0.000000,205,0,0.000000,0.000020,65655591,32116573,0,0,91810,0,1,1 +1773697104.814256,0.95,4,3992.50,53.79,1618.84,2106.00,0.00,3517947698421.806641,0.000000,11,0,0.000031,0.000055,65655593,32116578,0,0,91813,0,1,1 +1773697109.813543,0.55,4,3992.50,53.77,1619.62,2105.16,0.00,0.053523,0.000000,75,0,0.000126,0.000175,65655603,32116590,0,0,91815,0,1,1 +1773697114.809658,0.70,4,3992.50,53.58,1627.05,2097.76,0.00,0.000000,0.000000,75,0,0.000000,0.000030,65655603,32116593,0,0,91818,0,1,1 +1773697119.814022,0.65,4,3992.50,53.58,1627.06,2097.75,0.00,1.602800,10.665885,253,762,0.000000,0.000020,65655603,32116595,0,0,91820,0,1,1 +1773697124.811041,14.92,4,3992.50,58.39,1438.64,2286.18,0.00,0.000000,0.000000,253,762,22.462772,0.018355,65658107,32117858,0,0,91823,0,1,1 +1773697129.813656,1.20,4,3992.50,54.05,1608.71,2116.10,0.00,0.517405,3516597766605.716309,258,2,17.606698,0.011645,65660008,32118680,0,0,91825,0,1,1 +1773697134.814327,0.95,4,3992.50,53.51,1621.90,2095.02,0.00,3517965499662.629883,3517965499664.804688,11,0,0.000000,0.000030,65660008,32118683,0,0,91828,0,1,1 +1773697139.810412,0.60,4,3992.50,53.52,1621.67,2095.26,0.00,0.180415,0.000000,205,0,0.000000,0.000020,65660008,32118685,0,0,91830,0,1,1 +1773697144.814121,0.65,4,3992.50,53.52,1621.67,2095.26,0.00,1.993639,0.000195,258,2,0.000000,0.000030,65660008,32118688,0,0,91833,0,1,1 +1773697149.814328,0.70,4,3992.50,53.52,1621.67,2095.26,0.00,3518291331374.868652,3518291331377.043945,11,0,0.000000,0.000503,65660008,32118693,0,0,91835,0,1,1 +1773697154.813973,0.65,4,3992.50,53.52,1621.67,2095.26,0.00,0.000000,0.000000,11,0,0.000000,0.000191,65660008,32118697,0,0,91838,0,1,1 +1773697159.810305,1.05,4,3992.50,53.54,1620.69,2096.24,0.00,0.000000,0.000000,11,0,0.000000,0.000020,65660008,32118699,0,0,91840,0,1,1 +1773697164.813903,0.90,4,3992.50,53.68,1615.43,2101.61,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65660008,32118702,0,0,91843,0,1,1 +1773697169.812714,0.65,4,3992.50,53.47,1623.57,2093.37,0.00,61856.242243,68657.822974,4234526,3482915,0.000031,0.000045,65660010,32118706,0,0,91845,0,1,1 +1773697174.809560,0.55,4,3992.50,53.47,1623.57,2093.37,0.00,3520658293041.426758,3520658286246.194336,253,762,0.000142,0.000201,65660022,32118721,0,0,91848,0,1,1 +1773697179.814149,0.65,4,3992.50,53.47,1623.33,2093.61,0.00,0.000000,0.000000,253,762,0.000000,0.000020,65660022,32118723,0,0,91850,0,1,1 +1773697184.810644,0.55,4,3992.50,53.47,1623.33,2093.61,0.00,0.000000,0.000000,253,762,0.000000,0.000030,65660022,32118726,0,0,91853,0,1,1 +1773697189.813633,13.44,4,3992.50,58.56,1424.36,2292.55,0.00,3516335188011.972168,3516335188002.960449,11,0,16.619535,0.015781,65661968,32119785,0,0,91855,0,1,1 +1773697194.811847,3.46,4,3992.50,54.97,1564.59,2152.34,0.00,61853.924790,68655.444149,4233024,3482247,23.443550,0.016110,65664376,32120961,0,0,91858,0,1,1 +1773697199.813870,0.80,4,3992.50,54.30,1590.79,2126.03,0.00,3517013790470.458008,3517013783671.944336,258,2,0.000000,0.000020,65664376,32120963,0,0,91860,0,1,1 +1773697204.812421,0.70,4,3992.50,53.97,1603.73,2113.09,0.00,61847.578742,68650.852115,4233024,3482282,0.000000,0.000030,65664376,32120966,0,0,91863,0,1,1 +1773697209.813678,0.75,4,3992.50,53.97,1603.96,2112.86,0.00,3517552833565.679688,3517552826768.082031,205,0,0.000000,0.000020,65664376,32120968,0,0,91865,0,1,1 +1773697214.814324,0.70,4,3992.50,53.96,1604.00,2112.81,0.00,3517983120286.592285,0.000000,11,0,0.000000,0.000674,65664376,32120975,0,0,91868,0,1,1 +1773697219.813465,0.60,4,3992.50,53.94,1604.85,2111.96,0.00,0.000000,0.000000,11,0,0.000000,0.000020,65664376,32120977,0,0,91870,0,1,1 +1773697224.810636,1.20,4,3992.50,54.09,1612.66,2117.82,0.00,0.053546,0.000000,75,0,0.000000,0.000030,65664376,32120980,0,0,91873,0,1,1 +1773697229.810564,0.60,4,3992.50,54.09,1612.70,2117.81,0.00,2.121906,0.000195,258,2,0.000000,0.000020,65664376,32120982,0,0,91875,0,1,1 +1773697234.812823,0.75,4,3992.50,54.09,1612.70,2117.81,0.00,3516848386812.839355,10.670179,253,762,0.000031,0.000055,65664378,32120987,0,0,91878,0,1,1 +1773697239.809453,0.65,4,3992.50,54.09,1612.70,2117.81,0.00,3520810165925.497070,3520810165916.473633,11,0,0.000142,0.000191,65664390,32121001,0,0,91880,0,1,1 +1773697244.813867,0.75,4,3992.50,54.09,1612.71,2117.80,0.00,1.656253,10.665780,253,762,0.000000,0.000030,65664390,32121004,0,0,91883,0,1,1 +1773697249.809941,0.65,4,3992.50,53.90,1620.10,2110.41,0.00,0.000000,0.000000,253,762,0.000000,0.000020,65664390,32121006,0,0,91885,0,1,1 +1773697254.809723,17.60,4,3992.50,59.02,1422.38,2310.57,0.00,3518591104315.725098,3518591104306.527344,205,0,30.650082,0.018082,65667782,32122247,0,0,91888,0,1,1 +1773697259.809578,1.05,4,3992.50,54.96,1581.32,2151.64,0.00,61833.437368,68633.319062,4233024,3482634,9.416881,0.004098,65668800,32122469,0,0,91890,0,1,1 +1773697264.813451,0.75,4,3992.50,54.43,1602.07,2130.90,0.00,3515713855413.143555,3515713848616.728027,258,2,0.000000,0.000030,65668800,32122472,0,0,91893,0,1,1 +1773697269.813851,0.65,4,3992.50,54.08,1615.79,2117.17,0.00,3518156032223.537109,10.674147,253,762,0.000000,0.000020,65668800,32122474,0,0,91895,0,1,1 +1773697274.813686,0.75,4,3992.50,54.08,1615.54,2117.42,0.00,0.000000,0.000000,253,762,0.000000,0.000030,65668800,32122477,0,0,91898,0,1,1 +1773697279.809465,0.80,4,3992.50,54.13,1613.58,2119.38,0.00,3521409890850.512695,3521409890841.434082,75,0,0.001231,0.001245,65668809,32122493,0,0,91900,0,1,1 +1773697284.813868,0.95,4,3992.50,54.33,1601.43,2127.17,0.00,61777.380439,68571.035763,4233024,3482672,0.000204,0.001205,65668816,32122511,0,0,91903,0,1,1 +1773697289.809566,0.70,4,3992.50,54.33,1601.59,2127.17,0.00,3521467147681.694336,3521467140874.077637,258,2,0.000000,0.000020,65668816,32122513,0,0,91905,0,1,1 +1773697294.811291,0.70,4,3992.50,54.33,1601.60,2127.16,0.00,3517223520560.784668,3517223520562.959473,11,0,0.000000,0.000030,65668816,32122516,0,0,91908,0,1,1 +1773697299.810562,0.75,4,3992.50,54.32,1601.91,2126.85,0.00,1.657956,10.676751,253,762,0.000031,0.000045,65668818,32122520,0,0,91910,0,1,1 +1773697304.810841,0.70,4,3992.50,54.32,1601.92,2126.84,0.00,3518240967733.376465,3518240967724.179199,205,0,0.000134,0.000193,65668829,32122534,0,0,91913,0,1,1 +1773697309.813747,0.60,4,3992.50,54.32,1601.92,2126.84,0.00,3516393388213.004883,0.000000,11,0,0.000000,0.000020,65668829,32122536,0,0,91915,0,1,1 +1773697314.813503,1.05,4,3992.50,53.94,1605.18,2111.92,0.00,2.175497,0.000195,258,2,0.000000,0.000030,65668829,32122539,0,0,91918,0,1,1 +1773697319.814531,15.37,4,3992.50,58.76,1416.60,2300.49,0.00,61816.947938,68617.400033,4233024,3482772,25.838352,0.019461,65671831,32123859,0,0,91920,0,1,1 +1773697324.813866,1.15,4,3992.50,53.95,1604.74,2112.36,0.00,0.000000,0.101283,4233024,3482885,14.226072,0.005694,65673386,32124207,0,0,91923,0,1,1 +1773697329.814222,0.75,4,3992.50,53.77,1611.91,2105.18,0.00,3518186813284.876953,3518186806494.601074,253,762,0.000031,0.000045,65673388,32124211,0,0,91925,0,1,1 +1773697334.810410,0.70,4,3992.50,53.62,1617.67,2099.43,0.00,3521122290684.240234,3521122290675.216309,11,0,0.000000,0.000030,65673388,32124214,0,0,91928,0,1,1 +1773697339.810578,0.70,4,3992.50,53.62,1617.67,2099.42,0.00,2.175317,0.000195,258,2,0.001417,0.001182,65673417,32124240,0,0,91930,0,1,1 +1773697344.809663,1.05,4,3992.50,53.72,1611.95,2103.12,0.00,61840.979436,68644.253870,4233024,3482921,0.001734,0.001353,65673442,32124258,0,0,91933,0,1,1 +1773697349.813023,0.60,4,3992.50,53.72,1611.67,2103.27,0.00,3516073815928.006348,3516073809141.731445,253,762,0.000008,0.000671,65673443,32124265,0,0,91935,0,1,1 +1773697354.812567,0.70,4,3992.50,53.72,1611.67,2103.27,0.00,3518758444784.986816,3518758444775.968750,11,0,0.000000,0.000030,65673443,32124268,0,0,91938,0,1,1 +1773697359.811084,0.70,4,3992.50,53.72,1611.67,2103.27,0.00,0.000000,0.000000,11,0,0.000000,0.000020,65673443,32124270,0,0,91940,0,1,1 +1773697364.813396,0.55,4,3992.50,53.73,1611.43,2103.51,0.00,0.000000,0.000000,11,0,0.000062,0.000080,65673447,32124277,0,0,91943,0,1,1 +1773697369.811632,0.70,4,3992.50,53.73,1611.43,2103.51,0.00,0.000000,0.000000,11,0,0.000076,0.000113,65673453,32124285,0,0,91945,0,1,1 +1773697374.812455,0.85,4,3992.50,53.87,1608.41,2109.13,0.00,0.053507,0.000000,75,0,0.000000,0.000030,65673453,32124288,0,0,91948,0,1,1 +1773697379.814271,0.65,4,3992.50,53.69,1615.59,2101.91,0.00,61809.333614,68606.866074,4233024,3482995,0.000000,0.000020,65673453,32124290,0,0,91950,0,1,1 +1773697384.810422,13.75,4,3992.50,58.55,1425.07,2292.43,0.00,9.733665,10.694267,4234527,3483793,18.247889,0.017701,65675642,32125411,0,0,91953,0,1,1 +1773697389.814352,2.26,4,3992.50,54.73,1574.65,2142.85,0.00,3515673645446.602539,3515673638648.863281,258,2,21.816633,0.014798,65677949,32126483,0,0,91955,0,1,1 +1773697394.814304,0.70,4,3992.50,54.12,1598.40,2119.10,0.00,0.000000,0.000000,258,2,0.000008,0.000038,65677950,32126487,0,0,91958,0,1,1 +1773697399.812247,0.60,4,3992.50,53.79,1611.37,2106.13,0.00,3519885793240.032227,3519885793242.208496,11,0,0.000000,0.000020,65677950,32126489,0,0,91960,0,1,1 +1773697404.813464,0.95,4,3992.50,53.80,1610.78,2106.29,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65677950,32126492,0,0,91963,0,1,1 +1773697409.813817,0.60,4,3992.50,53.60,1618.26,2098.72,0.00,0.000000,0.000000,11,0,0.000000,0.000020,65677950,32126494,0,0,91965,0,1,1 +1773697414.814287,0.60,4,3992.50,53.46,1623.72,2093.27,0.00,0.180256,0.000000,205,0,0.000000,0.000674,65677950,32126501,0,0,91968,0,1,1 +1773697419.813628,0.65,4,3992.50,53.46,1623.72,2093.27,0.00,3518901124620.398438,0.000000,75,0,0.000000,0.000020,65677950,32126503,0,0,91970,0,1,1 +1773697424.814292,0.65,4,3992.50,53.48,1623.24,2093.75,0.00,2.121593,0.000195,258,2,0.000000,0.000030,65677950,32126506,0,0,91973,0,1,1 +1773697429.809564,0.75,4,3992.50,53.48,1623.25,2093.74,0.00,61888.178471,68697.005294,4233024,3483230,0.000062,0.000070,65677954,32126512,0,0,91975,0,1,1 +1773697434.809462,0.90,4,3992.50,53.50,1629.73,2094.48,0.00,0.000000,0.028126,4233024,3483247,0.000126,0.000185,65677964,32126525,0,0,91978,0,1,1 +1773697439.809596,0.65,4,3992.50,53.49,1629.57,2094.44,0.00,3518342533894.953125,3518342527094.894531,11,0,0.000008,0.000028,65677965,32126528,0,0,91980,0,1,1 +1773697444.809480,0.80,4,3992.50,53.49,1629.57,2094.43,0.00,61842.995802,68644.353786,4234527,3484023,0.000000,0.000030,65677965,32126531,0,0,91983,0,1,1 +1773697449.811793,12.80,4,3992.50,58.46,1435.02,2288.98,0.00,3516810122974.387207,3516810116185.346191,253,762,8.414827,0.012110,65679161,32127327,0,0,91985,0,1,1 +1773697454.813935,4.41,4,3992.50,53.58,1626.18,2097.82,0.00,0.000000,0.000000,253,762,31.633430,0.011528,65682403,32128111,0,0,91988,0,1,1 +1773697459.813958,0.75,4,3992.50,53.47,1630.46,2093.54,0.00,3518421464649.171875,3518421464640.154785,11,0,0.000000,0.000020,65682403,32128113,0,0,91990,0,1,1 +1773697464.809470,0.90,4,3992.50,53.66,1621.54,2101.02,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65682403,32128116,0,0,91993,0,1,1 +1773697469.813762,0.70,4,3992.50,53.66,1621.44,2100.93,0.00,0.000000,0.000000,11,0,0.000000,0.000020,65682403,32128118,0,0,91995,0,1,1 +1773697474.813689,0.60,4,3992.50,53.66,1621.44,2100.93,0.00,2.175422,0.000195,258,2,0.000000,0.000030,65682403,32128121,0,0,91998,0,1,1 +1773697479.813707,0.65,4,3992.50,53.66,1621.44,2100.92,0.00,3518424629107.263184,10.674962,253,762,0.000000,0.000664,65682403,32128127,0,0,92000,0,1,1 +1773697484.809586,0.80,4,3992.50,53.66,1621.44,2100.92,0.00,0.000000,0.000000,253,762,0.000000,0.000030,65682403,32128130,0,0,92003,0,1,1 +1773697489.809492,0.65,4,3992.50,53.66,1621.44,2100.92,0.00,3518503256817.458008,3518503256808.260254,205,0,0.000000,0.000020,65682403,32128132,0,0,92005,0,1,1 +1773697494.813951,0.95,4,3992.50,53.66,1621.77,2100.73,0.00,3515301938503.423828,0.000000,11,0,0.000031,0.000055,65682405,32128137,0,0,92008,0,1,1 +1773697499.813450,0.65,4,3992.50,53.68,1620.73,2101.66,0.00,2.175609,0.000195,258,2,0.000142,0.000191,65682417,32128151,0,0,92010,0,1,1 +1773697504.811934,0.95,4,3992.50,53.68,1620.58,2101.77,0.00,0.000000,0.000000,258,2,0.000000,0.000030,65682417,32128154,0,0,92013,0,1,1 +1773697509.809461,0.80,4,3992.50,53.69,1620.41,2101.98,0.00,3520178079156.362305,3520178079158.538574,11,0,0.000000,0.000020,65682417,32128156,0,0,92015,0,1,1 +1773697514.813546,9.78,4,3992.50,58.44,1434.43,2287.97,0.00,2.173615,0.000195,258,2,4.610144,0.009927,65683254,32128779,0,0,92018,0,1,1 +1773697519.812663,6.82,4,3992.50,54.32,1595.63,2126.76,0.00,0.000000,0.000000,258,2,35.458090,0.014708,65686858,32129809,0,0,92020,0,1,1 +1773697524.811234,1.10,4,3992.50,53.90,1610.11,2110.12,0.00,0.000000,0.000000,258,2,0.000000,0.000089,65686858,32129815,0,0,92023,0,1,1 +1773697529.814155,0.75,4,3992.50,53.58,1621.93,2097.92,0.00,3516383115090.897461,3516383115093.071289,11,0,0.000000,0.000020,65686858,32129817,0,0,92025,0,1,1 +1773697534.813670,0.60,4,3992.50,53.41,1628.82,2091.03,0.00,61847.562395,68650.002574,4234528,3484554,0.000000,0.000089,65686858,32129823,0,0,92028,0,1,1 +1773697539.809450,0.70,4,3992.50,53.41,1628.82,2091.02,0.00,3521409072627.098633,3521409065828.598145,253,762,0.000000,0.000020,65686858,32129825,0,0,92030,0,1,1 +1773697544.813563,0.70,4,3992.50,53.41,1628.82,2091.02,0.00,61779.363869,68565.599530,4233025,3483795,0.000000,0.000673,65686858,32129832,0,0,92033,0,1,1 +1773697549.814205,0.65,4,3992.50,53.41,1628.57,2091.27,0.00,3517985448273.758301,3517985441473.795898,11,0,0.000000,0.000079,65686858,32129837,0,0,92035,0,1,1 +1773697554.812043,0.85,4,3992.50,53.36,1629.97,2089.30,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65686858,32129840,0,0,92038,0,1,1 +1773697559.814313,0.65,4,3992.50,53.39,1628.88,2090.24,0.00,0.053491,0.000000,75,0,0.000031,0.000045,65686860,32129844,0,0,92040,0,1,1 +1773697564.809854,0.75,4,3992.50,53.39,1628.88,2090.23,0.00,3521577753332.199219,0.000000,11,0,0.000142,0.000201,65686872,32129859,0,0,92043,0,1,1 +1773697569.809563,0.70,4,3992.50,53.39,1628.64,2090.48,0.00,61845.159416,68647.399364,4234528,3484597,0.000000,0.000020,65686872,32129861,0,0,92045,0,1,1 +1773697574.809569,0.60,4,3992.50,53.35,1630.38,2088.73,0.00,3518433270434.031738,3518433263630.019531,258,2,0.000000,0.000030,65686872,32129864,0,0,92048,0,1,1 +1773697579.816533,4.85,4,3992.50,58.72,1420.11,2298.98,0.00,61753.378850,68547.950138,4234528,3484637,1.606478,0.006150,65687297,32130152,0,0,92050,0,1,1 +1773697584.813161,13.91,4,3992.50,55.02,1569.27,2154.00,0.00,0.000000,0.150492,4234528,3484775,38.482702,0.017823,65691193,32131353,0,0,92053,0,1,1 +1773697589.812748,0.65,4,3992.50,54.44,1591.99,2131.29,0.00,3518727936829.624023,3518727930026.998047,75,0,0.000000,0.000020,65691193,32131355,0,0,92055,0,1,1 +1773697594.809429,0.70,4,3992.50,54.14,1603.62,2119.65,0.00,1.605265,10.682286,253,762,0.000000,0.000030,65691193,32131358,0,0,92058,0,1,1 +1773697599.809470,0.60,4,3992.50,54.17,1602.52,2120.75,0.00,3518408197494.909180,3518408197485.892090,11,0,0.000000,0.000020,65691193,32131360,0,0,92060,0,1,1 +1773697604.813378,0.65,4,3992.50,54.17,1602.52,2120.75,0.00,0.053474,0.000000,75,0,0.000000,0.000030,65691193,32131363,0,0,92063,0,1,1 +1773697609.814146,0.90,4,3992.50,54.17,1602.28,2121.00,0.00,0.000000,0.000000,75,0,0.000000,0.000664,65691193,32131369,0,0,92065,0,1,1 +1773697614.814316,0.90,4,3992.50,54.07,1605.59,2117.10,0.00,61829.686875,68630.709546,4233025,3484113,0.000000,0.000030,65691193,32131372,0,0,92068,0,1,1 +1773697619.809568,0.70,4,3992.50,53.88,1613.25,2109.44,0.00,3521780867384.621094,3521780860574.780273,258,2,0.000205,0.000553,65691200,32131385,0,0,92070,0,1,1 +1773697624.812134,0.60,4,3992.50,53.92,1611.56,2111.13,0.00,3516632610878.777832,10.669525,253,762,0.000070,0.000088,65691205,32131393,0,0,92073,0,1,1 +1773697629.813768,0.75,4,3992.50,53.92,1611.57,2111.12,0.00,61809.988050,68599.974161,4233025,3484138,0.000157,0.000200,65691217,32131407,0,0,92075,0,1,1 +1773697634.813922,0.60,4,3992.50,53.91,1612.01,2110.68,0.00,3518328629834.151855,3518328623033.086426,75,0,0.000000,0.000030,65691217,32131410,0,0,92078,0,1,1 +1773697639.813699,0.80,4,3992.50,53.92,1611.80,2110.89,0.00,3518593662446.628418,0.000000,11,0,0.002087,0.002112,65691249,32131439,0,0,92080,0,1,1 +1773697644.813714,1.35,4,3992.50,53.65,1626.39,2100.49,0.00,0.000000,0.000000,11,0,0.004055,0.002748,65691303,32131488,0,0,92083,0,1,1 +1773697649.813540,15.40,4,3992.50,54.75,1583.54,2143.45,0.00,0.000000,0.000000,11,0,40.064468,0.017470,65695687,32132654,0,0,92085,0,1,1 +1773697654.813809,0.65,4,3992.50,54.18,1605.70,2121.30,0.00,0.053513,0.000000,75,0,0.000000,0.000030,65695687,32132657,0,0,92088,0,1,1 +1773697659.810898,0.70,4,3992.50,53.82,1619.93,2107.07,0.00,3520486900429.437988,0.000000,11,0,0.000000,0.000020,65695687,32132659,0,0,92090,0,1,1 +1773697664.810943,0.55,4,3992.50,53.75,1622.63,2104.38,0.00,61831.282718,68632.622401,4233025,3484338,0.000031,0.000055,65695689,32132664,0,0,92093,0,1,1 +1773697669.813985,0.75,4,3992.50,53.74,1622.82,2104.18,0.00,0.000000,0.003123,4233025,3484341,0.000008,0.000028,65695690,32132667,0,0,92095,0,1,1 +1773697674.814339,0.95,4,3992.50,54.00,1612.79,2114.20,0.00,3518188044561.415527,3518188037760.492676,11,0,0.000000,0.000674,65695690,32132674,0,0,92098,0,1,1 +1773697679.810561,0.75,4,3992.50,54.00,1612.81,2114.19,0.00,0.053556,0.000000,75,0,0.000000,0.000020,65695690,32132676,0,0,92100,0,1,1 +1773697684.814351,0.65,4,3992.50,54.00,1612.81,2114.19,0.00,0.126662,0.000000,205,0,0.000056,0.000086,65695694,32132683,0,0,92103,0,1,1 +1773697689.812931,0.75,4,3992.50,53.80,1620.63,2106.37,0.00,3519437091519.031250,0.000000,11,0,0.000025,0.000051,65695696,32132687,0,0,92105,0,1,1 +1773697694.813892,0.65,4,3992.50,53.80,1620.45,2106.55,0.00,0.053505,0.000000,75,0,0.000157,0.000210,65695708,32132702,0,0,92108,0,1,1 +1773697699.814324,0.60,4,3992.50,53.72,1623.62,2103.39,0.00,0.000000,0.000000,75,0,0.000000,0.000020,65695708,32132704,0,0,92110,0,1,1 +1773697704.813396,0.90,4,3992.50,54.02,1610.95,2115.19,0.00,0.126781,0.000000,205,0,0.000000,0.000030,65695708,32132707,0,0,92113,0,1,1 +1773697709.814013,1.00,4,3992.50,53.87,1616.78,2109.20,0.00,3518003343381.089355,0.000000,11,0,0.002234,0.000725,65695732,32132725,0,0,92115,0,1,1 +1773697714.813744,15.65,4,3992.50,54.32,1599.30,2126.68,0.00,61844.899454,68647.877159,4234528,3485342,40.065750,0.021012,65700085,32134086,0,0,92118,0,1,1 +1773697719.809854,1.36,4,3992.50,53.77,1620.62,2105.37,0.00,3521176187602.500488,3521176180794.540039,75,0,0.000000,0.000020,65700085,32134088,0,0,92120,0,1,1 +1773697724.813826,0.65,4,3992.50,53.79,1620.13,2105.86,0.00,2.120191,0.000195,258,2,0.000000,0.000030,65700085,32134091,0,0,92123,0,1,1 +1773697729.813745,0.65,4,3992.50,53.77,1620.74,2105.25,0.00,3518494159227.485840,3518494159229.661621,11,0,0.000000,0.000020,65700085,32134093,0,0,92125,0,1,1 +1773697734.813453,1.00,4,3992.50,53.73,1625.36,2103.81,0.00,61845.176041,68648.269625,4234528,3485382,0.000000,0.000030,65700085,32134096,0,0,92128,0,1,1 +1773697739.814361,0.70,4,3992.50,53.73,1625.57,2103.61,0.00,0.000000,0.038274,4234528,3485415,0.000000,0.000664,65700085,32134102,0,0,92130,0,1,1 +1773697744.812478,0.60,4,3992.50,53.74,1625.33,2103.84,0.00,3519762732629.504883,3519762725833.228516,253,762,0.000000,0.000030,65700085,32134105,0,0,92133,0,1,1 +1773697749.813734,0.65,4,3992.50,53.76,1624.36,2104.81,0.00,61824.380538,68616.433332,4234528,3485430,0.000000,0.000020,65700085,32134107,0,0,92135,0,1,1 +1773697754.813667,0.55,4,3992.50,53.77,1624.14,2105.03,0.00,3518484393953.826172,3518484387150.905273,75,0,0.000000,0.000030,65700085,32134110,0,0,92138,0,1,1 +1773697759.809488,0.75,4,3992.50,53.77,1623.93,2105.25,0.00,61893.233356,68701.769749,4234528,3485448,0.000157,0.000201,65700097,32134124,0,0,92140,0,1,1 +1773697764.809472,0.80,4,3992.50,53.78,1616.17,2105.49,0.00,3518448945104.636719,3518448938301.820312,11,0,0.000016,0.000046,65700099,32134129,0,0,92143,0,1,1 +1773697769.814306,0.75,4,3992.50,53.73,1617.93,2103.60,0.00,2.173289,0.000195,258,2,0.000000,0.000020,65700099,32134131,0,0,92145,0,1,1 +1773697774.813544,6.61,4,3992.50,58.45,1433.00,2288.51,0.00,3518973698239.138184,3518973698241.133789,205,0,3.011492,0.007606,65700717,32134567,0,0,92148,0,1,1 +1773697779.813715,9.35,4,3992.50,55.06,1565.81,2155.70,0.00,0.000000,0.000000,205,0,37.052796,0.013413,65704489,32135501,0,0,92150,0,1,1 +1773697784.813791,0.70,4,3992.50,54.25,1597.41,2124.10,0.00,0.000000,0.000000,205,0,0.000000,0.000030,65704489,32135504,0,0,92153,0,1,1 +1773697789.810443,0.70,4,3992.50,53.85,1613.30,2108.21,0.00,0.000000,0.000000,205,0,0.000000,0.000020,65704489,32135506,0,0,92155,0,1,1 +1773697794.814236,0.95,4,3992.50,53.60,1617.50,2098.65,0.00,1.993605,0.000195,258,2,0.000000,0.000030,65704489,32135509,0,0,92158,0,1,1 +1773697799.811077,0.65,4,3992.50,53.60,1617.68,2098.54,0.00,3520661033014.263672,3520661033016.440430,11,0,0.000000,0.000020,65704489,32135511,0,0,92160,0,1,1 +1773697804.809457,0.70,4,3992.50,53.63,1616.62,2099.60,0.00,0.053533,0.000000,75,0,0.000000,0.000674,65704489,32135518,0,0,92163,0,1,1 +1773697809.813482,0.70,4,3992.50,53.63,1616.39,2099.84,0.00,3515607287750.163574,0.000000,11,0,0.000000,0.000020,65704489,32135520,0,0,92165,0,1,1 +1773697814.812443,0.60,4,3992.50,53.44,1624.03,2092.20,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65704489,32135523,0,0,92168,0,1,1 +1773697819.809470,0.65,4,3992.50,53.45,1623.57,2092.66,0.00,0.000000,0.000000,11,0,0.000031,0.000045,65704491,32135527,0,0,92170,0,1,1 +1773697824.809463,1.20,4,3992.50,53.51,1618.80,2095.11,0.00,1.657717,10.675211,253,762,0.000126,0.000185,65704501,32135540,0,0,92173,0,1,1 +1773697829.809493,0.65,4,3992.50,53.53,1618.09,2095.82,0.00,61829.833636,68623.014160,4233026,3485055,0.000016,0.000036,65704503,32135544,0,0,92175,0,1,1 +1773697834.813935,0.55,4,3992.50,53.33,1625.73,2088.18,0.00,3515313818845.855469,3515313812049.601562,75,0,0.000000,0.000030,65704503,32135547,0,0,92178,0,1,1 +1773697839.814179,1.25,4,3992.50,53.25,1629.12,2084.79,0.00,61838.540795,68641.445431,4234530,3485847,0.003184,0.002334,65704540,32135581,0,0,92180,0,1,1 +1773697844.809459,16.85,4,3992.50,54.73,1571.09,2142.80,0.00,3521761603359.829590,3521761596550.219238,11,0,40.100431,0.018090,65708929,32136869,0,0,92183,0,1,1 +1773697849.809900,0.65,4,3992.50,54.02,1598.81,2115.11,0.00,2.175199,0.000195,258,2,0.000000,0.000020,65708929,32136871,0,0,92185,0,1,1 +1773697854.813659,1.05,4,3992.50,53.93,1600.95,2111.36,0.00,3515793644264.670898,10.666979,253,762,0.000000,0.000030,65708929,32136874,0,0,92188,0,1,1 +1773697859.813602,0.65,4,3992.50,53.86,1603.57,2108.75,0.00,61830.925214,68624.387247,4233027,3485228,0.000000,0.000020,65708929,32136876,0,0,92190,0,1,1 +1773697864.813594,0.60,4,3992.50,53.86,1603.56,2108.76,0.00,3518443051702.628906,3518443044900.035156,205,0,0.000000,0.000030,65708929,32136879,0,0,92193,0,1,1 +1773697869.813575,0.75,4,3992.50,53.86,1603.56,2108.76,0.00,0.000000,0.000000,205,0,0.000000,0.000664,65708929,32136885,0,0,92195,0,1,1 +1773697874.814362,0.50,4,3992.50,53.66,1611.37,2100.95,0.00,3517883309712.985352,0.000000,11,0,0.000000,0.000030,65708929,32136888,0,0,92198,0,1,1 +1773697879.813587,0.80,4,3992.50,53.67,1610.98,2101.34,0.00,0.000000,0.000000,11,0,0.000308,0.000575,65708936,32136901,0,0,92200,0,1,1 +1773697884.810183,0.90,4,3992.50,53.68,1610.73,2101.59,0.00,0.180396,0.000000,205,0,0.000213,0.000570,65708944,32136916,0,0,92203,0,1,1 +1773697889.809570,0.65,4,3992.50,53.68,1610.75,2101.54,0.00,61849.006654,68653.481038,4234530,3486071,0.000157,0.000200,65708956,32136930,0,0,92205,0,1,1 +1773697894.812720,0.65,4,3992.50,53.68,1610.75,2101.54,0.00,3516221902629.383301,3516221895830.207031,11,0,0.000000,0.000030,65708956,32136933,0,0,92208,0,1,1 +1773697899.812779,0.55,4,3992.50,53.68,1610.75,2101.54,0.00,61831.152962,68633.590883,4233027,3485314,0.000000,0.000020,65708956,32136935,0,0,92210,0,1,1 +1773697904.811998,1.00,4,3992.50,53.61,1613.29,2099.01,0.00,3518986676233.517578,3518986669429.883789,75,0,0.002234,0.000735,65708980,32136954,0,0,92213,0,1,1 +1773697909.809463,16.35,4,3992.50,53.94,1600.50,2111.79,0.00,3520221836034.118652,0.000000,11,0,40.082326,0.022588,65713278,32138489,0,0,92215,0,1,1 +1773697914.810968,0.90,4,3992.50,54.03,1598.25,2115.39,0.00,0.180219,0.000000,205,0,0.000000,0.000030,65713278,32138492,0,0,92218,0,1,1 +1773697919.809482,0.75,4,3992.50,54.05,1597.53,2116.12,0.00,3519483116909.459961,0.000000,11,0,0.000205,0.000552,65713285,32138505,0,0,92220,0,1,1 +1773697924.813711,0.65,4,3992.50,54.05,1597.53,2116.12,0.00,0.053470,0.000000,75,0,0.000039,0.000063,65713288,32138511,0,0,92223,0,1,1 +1773697929.814267,0.75,4,3992.50,54.05,1597.53,2116.12,0.00,61834.679738,68637.657459,4234531,3486293,0.000031,0.000045,65713290,32138515,0,0,92225,0,1,1 +1773697934.813755,0.70,4,3992.50,53.85,1605.18,2108.48,0.00,3518797614681.562500,3518797614680.614746,4233028,3485531,0.000000,0.000674,65713290,32138522,0,0,92228,0,1,1 +1773697939.813908,0.75,4,3992.50,53.87,1604.71,2108.95,0.00,0.000000,0.010937,4233028,3485534,0.001417,0.001182,65713319,32138548,0,0,92230,0,1,1 +1773697944.813680,1.00,4,3992.50,53.87,1605.57,2108.95,0.00,0.000000,0.035158,4233028,3485550,0.001721,0.001353,65713343,32138566,0,0,92233,0,1,1 +1773697949.814032,0.65,4,3992.50,53.87,1605.03,2109.15,0.00,3518189229403.612305,3518189222601.312500,11,0,0.000000,0.000020,65713343,32138568,0,0,92235,0,1,1 +1773697954.809459,0.75,4,3992.50,53.87,1605.03,2109.15,0.00,0.180438,0.000000,205,0,0.000107,0.000148,65713351,32138579,0,0,92238,0,1,1 +1773697959.810400,0.70,4,3992.50,53.88,1604.80,2109.39,0.00,1.477163,10.673187,253,762,0.000008,0.000028,65713352,32138582,0,0,92240,0,1,1 +1773697964.813623,0.60,4,3992.50,53.88,1604.80,2109.38,0.00,61800.119302,68590.477779,4234531,3486340,0.000031,0.000055,65713354,32138587,0,0,92243,0,1,1 +1773697969.813547,0.90,4,3992.50,53.75,1609.62,2104.55,0.00,3518490652025.237305,3518490645221.381348,11,0,0.002853,0.001320,65713377,32138605,0,0,92245,0,1,1 +1773697974.813244,16.06,4,3992.50,53.84,1619.84,2107.92,0.00,2.175522,0.000195,258,2,40.065542,0.022359,65717763,32140098,0,0,92248,0,1,1 +1773697979.813459,0.60,4,3992.50,53.86,1616.40,2108.62,0.00,61836.771126,68642.591179,4234531,3486538,0.000000,0.000020,65717763,32140100,0,0,92250,0,1,1 +1773697984.809460,0.75,4,3992.50,53.86,1616.40,2108.63,0.00,3521253826147.155762,3521253819337.770996,11,0,0.000056,0.000086,65717767,32140107,0,0,92253,0,1,1 +1773697989.809572,0.65,4,3992.50,53.86,1616.16,2108.86,0.00,0.053514,0.000000,75,0,0.000033,0.000059,65717770,32140112,0,0,92255,0,1,1 +1773697994.813755,0.60,4,3992.50,53.70,1622.41,2102.62,0.00,0.000000,0.000000,75,0,0.000000,0.000030,65717770,32140115,0,0,92258,0,1,1 +1773697999.809563,0.75,4,3992.50,53.74,1621.18,2103.84,0.00,61893.442648,68703.156911,4234531,3486549,0.000000,0.000503,65717770,32140120,0,0,92260,0,1,1 +1773698004.809461,0.65,4,3992.50,53.74,1621.18,2103.85,0.00,3518509465077.731445,3518509458273.639648,11,0,0.000000,0.000191,65717770,32140124,0,0,92263,0,1,1 +1773698009.811700,0.85,4,3992.50,53.94,1613.03,2111.92,0.00,0.000000,0.000000,11,0,0.000000,0.000020,65717770,32140126,0,0,92265,0,1,1 +1773698014.809583,0.65,4,3992.50,53.91,1614.43,2110.52,0.00,61858.074809,68664.039800,4233028,3485831,0.000000,0.000030,65717770,32140129,0,0,92268,0,1,1 +1773698019.809460,0.70,4,3992.50,53.94,1612.96,2111.99,0.00,3518523590842.600586,3518523584039.350098,11,0,0.000157,0.000200,65717782,32140143,0,0,92270,0,1,1 +1773698024.813931,0.60,4,3992.50,53.94,1612.96,2111.98,0.00,61786.362969,68584.323274,4234531,3486600,0.000016,0.000046,65717784,32140148,0,0,92273,0,1,1 +1773698029.811557,0.75,4,3992.50,53.94,1612.96,2111.98,0.00,3520108256482.503418,3520108249675.179688,75,0,0.000000,0.000079,65717784,32140153,0,0,92275,0,1,1 +1773698034.813821,0.75,4,3992.50,53.91,1614.31,2110.63,0.00,1.603473,10.670364,253,762,0.000000,0.000030,65717784,32140156,0,0,92278,0,1,1 +1773698039.814250,15.59,4,3992.50,53.82,1621.21,2107.36,0.00,3518135193158.631836,3518135193149.615234,11,0,40.058097,0.021257,65722009,32141571,0,0,92280,0,1,1 +1773698044.812497,0.90,4,3992.50,53.64,1628.42,2100.16,0.00,1.658296,10.678939,253,762,0.003086,0.001439,65722065,32141611,0,0,92283,0,1,1 +1773698049.809571,0.65,4,3992.50,53.64,1628.42,2100.15,0.00,3520497272923.211914,3520497272914.135742,75,0,0.000008,0.000028,65722066,32141614,0,0,92285,0,1,1 +1773698054.809448,0.75,4,3992.50,53.64,1628.42,2100.15,0.00,3518524062242.213379,0.000000,11,0,0.000000,0.000030,65722066,32141617,0,0,92288,0,1,1 +1773698059.813918,0.60,4,3992.50,53.64,1628.43,2100.15,0.00,1.656234,10.665660,253,762,0.000000,0.000020,65722066,32141619,0,0,92290,0,1,1 +1773698064.812579,1.05,4,3992.50,53.86,1619.52,2108.77,0.00,3519379725519.322266,3519379725510.302734,11,0,0.000000,0.000352,65722066,32141624,0,0,92293,0,1,1 +1773698069.812893,0.65,4,3992.50,53.88,1618.60,2109.42,0.00,0.000000,0.000000,11,0,0.000000,0.000342,65722066,32141628,0,0,92295,0,1,1 +1773698074.809554,0.65,4,3992.50,53.84,1620.02,2108.00,0.00,61873.200561,68681.160655,4233028,3486118,0.000000,0.000030,65722066,32141631,0,0,92298,0,1,1 +1773698079.809571,0.70,4,3992.50,53.84,1620.02,2108.00,0.00,3518424791750.998047,3518424784947.427734,205,0,0.000000,0.000020,65722066,32141633,0,0,92300,0,1,1 +1773698084.814056,0.50,4,3992.50,53.88,1618.55,2109.46,0.00,3515284112226.500977,0.000000,11,0,0.000056,0.000086,65722070,32141640,0,0,92303,0,1,1 +1773698089.809442,0.65,4,3992.50,53.88,1618.55,2109.46,0.00,61898.727397,68709.390798,4234531,3486898,0.000117,0.000160,65722080,32141652,0,0,92305,0,1,1 +1773698094.811390,0.90,4,3992.50,53.92,1618.28,2111.19,0.00,3517067149503.808594,3517067142711.093750,253,762,0.000000,0.000030,65722080,32141655,0,0,92308,0,1,1 +1773698099.809465,0.75,4,3992.50,53.92,1618.21,2111.14,0.00,3519792694423.376953,3519792694414.356445,11,0,0.000000,0.000020,65722080,32141657,0,0,92310,0,1,1 +1773698104.814138,15.60,4,3992.50,54.04,1613.66,2115.69,0.00,0.180105,0.000000,205,0,40.024519,0.022043,65726404,32143186,0,0,92313,0,1,1 +1773698109.814088,0.90,4,3992.50,54.04,1613.69,2115.66,0.00,3518472567421.292480,0.000000,75,0,0.003085,0.001428,65726460,32143225,0,0,92315,0,1,1 +1773698114.813659,0.80,4,3992.50,54.04,1613.70,2115.64,0.00,0.000000,0.000000,75,0,0.000008,0.000038,65726461,32143229,0,0,92318,0,1,1 +1773698119.813459,0.65,4,3992.50,54.04,1613.70,2115.65,0.00,2.121960,0.000195,258,2,0.000000,0.000020,65726461,32143231,0,0,92320,0,1,1 +1773698124.813817,1.20,4,3992.50,54.05,1602.14,2116.36,0.00,3518185485525.741699,10.674236,253,762,0.000000,0.000030,65726461,32143234,0,0,92323,0,1,1 +1773698129.813793,0.75,4,3992.50,54.02,1603.33,2115.10,0.00,3518454033425.219727,3518454033416.021973,205,0,0.000000,0.000181,65726461,32143237,0,0,92325,0,1,1 +1773698134.814129,0.65,4,3992.50,54.02,1603.34,2115.10,0.00,1.994983,0.000195,258,2,0.000000,0.000513,65726461,32143243,0,0,92328,0,1,1 +1773698139.813372,0.60,4,3992.50,54.02,1603.34,2115.09,0.00,3518970354707.558594,3518970354709.554688,205,0,0.000000,0.000020,65726461,32143245,0,0,92330,0,1,1 +1773698144.813481,0.75,4,3992.50,53.82,1611.22,2107.21,0.00,61840.116813,68644.837162,4234533,3487220,0.000000,0.000066,65726461,32143249,0,0,92333,0,1,1 +1773698149.814231,0.70,4,3992.50,53.83,1610.76,2107.68,0.00,3517909602724.866211,3517909595921.017090,205,0,0.000056,0.000076,65726465,32143255,0,0,92335,0,1,1 +1773698154.814139,0.90,4,3992.50,53.93,1609.72,2111.60,0.00,3518502291323.602539,0.000000,11,0,0.000109,0.000162,65726474,32143267,0,0,92338,0,1,1 +1773698159.813397,0.75,4,3992.50,53.93,1609.42,2111.56,0.00,0.000000,0.000000,11,0,0.000000,0.000020,65726474,32143269,0,0,92340,0,1,1 +1773698164.810366,0.70,4,3992.50,53.93,1609.42,2111.56,0.00,2.176710,0.000195,258,2,0.000000,0.000030,65726474,32143272,0,0,92343,0,1,1 +1773698169.813636,15.81,4,3992.50,53.83,1613.57,2107.39,0.00,3516137407480.458496,3516137407482.632812,11,0,40.035926,0.019267,65730816,32144580,0,0,92345,0,1,1 +1773698174.809460,0.90,4,3992.50,53.68,1619.24,2101.73,0.00,0.180424,0.000000,205,0,0.003088,0.001440,65730872,32144620,0,0,92348,0,1,1 +1773698179.813646,0.85,4,3992.50,53.71,1618.26,2102.71,0.00,0.000000,0.000000,205,0,0.001236,0.001251,65730882,32144637,0,0,92350,0,1,1 +1773698184.809587,1.00,4,3992.50,53.90,1608.46,2110.34,0.00,0.000000,0.000000,205,0,0.000205,0.000562,65730889,32144651,0,0,92353,0,1,1 +1773698189.813550,0.70,4,3992.50,53.72,1615.29,2103.09,0.00,61792.501927,68592.251008,4234533,3487466,0.000000,0.000020,65730889,32144653,0,0,92355,0,1,1 +1773698194.814197,0.75,4,3992.50,53.73,1614.84,2103.55,0.00,0.000000,0.002343,4234533,3487468,0.000000,0.000191,65730889,32144657,0,0,92358,0,1,1 +1773698199.810107,0.70,4,3992.50,53.73,1614.84,2103.55,0.00,3521317240865.670410,3521317234064.165039,253,762,0.000000,0.000503,65730889,32144662,0,0,92360,0,1,1 +1773698204.813500,0.55,4,3992.50,53.73,1614.62,2103.77,0.00,0.000000,0.000000,253,762,0.000000,0.000030,65730889,32144665,0,0,92363,0,1,1 +1773698209.809470,0.80,4,3992.50,53.75,1613.88,2104.51,0.00,3521275197529.165527,3521275197520.087402,75,0,0.000000,0.000020,65730889,32144667,0,0,92365,0,1,1 +1773698214.810829,0.95,4,3992.50,53.72,1615.11,2103.14,0.00,1.603763,10.672294,253,762,0.000056,0.000086,65730893,32144674,0,0,92368,0,1,1 +1773698219.813869,0.70,4,3992.50,53.75,1613.92,2104.32,0.00,3516299377625.052246,3516299377616.040527,11,0,0.000313,0.000684,65730909,32144696,0,0,92370,0,1,1 +1773698224.810455,0.75,4,3992.50,53.75,1613.92,2104.32,0.00,61874.177962,68682.897471,4233030,3486747,0.000031,0.000055,65730911,32144701,0,0,92373,0,1,1 +1773698229.813488,0.65,4,3992.50,53.75,1613.92,2104.32,0.00,3516303792883.095703,3516303786092.163086,253,762,0.000031,0.000045,65730913,32144705,0,0,92375,0,1,1 +1773698234.813843,14.75,4,3992.50,53.63,1618.52,2099.71,0.00,61835.613334,68631.157669,4234533,3487556,40.058934,0.023344,65735228,32146336,0,0,92378,0,1,1 +1773698239.813777,0.80,4,3992.50,53.67,1617.11,2101.12,0.00,3518483463655.823242,3518483456859.708008,253,762,0.004641,0.002716,65735324,32146409,0,0,92380,0,1,1 +1773698244.809952,0.85,4,3992.50,53.87,1599.95,2109.19,0.00,3521131162249.372559,3521131162240.167969,205,0,0.001065,0.000431,65735346,32146425,0,0,92383,0,1,1 +1773698249.809589,0.55,4,3992.50,53.88,1599.34,2109.44,0.00,3518692082529.117676,0.000000,75,0,0.000000,0.000020,65735346,32146427,0,0,92385,0,1,1 +1773698254.809453,0.55,4,3992.50,53.70,1606.49,2102.29,0.00,3518533402067.825684,0.000000,11,0,0.000000,0.000030,65735346,32146430,0,0,92388,0,1,1 +1773698259.812128,0.70,4,3992.50,53.61,1609.85,2098.93,0.00,2.174227,0.000195,258,2,0.000000,0.000020,65735346,32146432,0,0,92390,0,1,1 +1773698264.813935,0.65,4,3992.50,53.61,1609.63,2099.14,0.00,3517166074110.832520,3517166074112.953613,75,0,0.000031,0.000699,65735348,32146441,0,0,92393,0,1,1 +1773698269.813888,0.65,4,3992.50,53.58,1611.16,2097.61,0.00,0.000000,0.000000,75,0,0.000008,0.000028,65735349,32146444,0,0,92395,0,1,1 +1773698274.812377,0.95,4,3992.50,53.61,1614.12,2098.84,0.00,1.604684,10.678421,253,762,0.000000,0.000030,65735349,32146447,0,0,92398,0,1,1 +1773698279.813690,0.65,4,3992.50,53.62,1613.57,2099.28,0.00,0.000000,0.000000,253,762,0.000031,0.000045,65735351,32146451,0,0,92400,0,1,1 +1773698284.810590,0.70,4,3992.50,53.62,1613.57,2099.28,0.00,0.517997,3520620554803.419434,258,2,0.000157,0.000211,65735363,32146466,0,0,92403,0,1,1 +1773698289.813472,0.65,4,3992.50,53.62,1613.33,2099.52,0.00,61803.853589,68607.418818,4234533,3487780,0.000050,0.000082,65735367,32146472,0,0,92405,0,1,1 +1773698294.813427,0.85,4,3992.50,53.62,1613.33,2099.52,0.00,3518468481819.810059,3518468475023.456055,253,762,0.000000,0.000030,65735367,32146475,0,0,92408,0,1,1 +1773698299.809546,16.83,4,3992.50,58.83,1409.37,2303.48,0.00,3521170227125.921875,3521170227116.897461,11,0,37.086372,0.020496,65739373,32147836,0,0,92410,0,1,1 +1773698304.813237,1.25,4,3992.50,54.96,1561.09,2151.75,0.00,2.173786,0.000195,258,2,3.006211,0.002583,65739780,32147938,0,0,92413,0,1,1 +1773698309.814280,0.65,4,3992.50,54.36,1584.37,2128.49,0.00,61816.856570,68622.156060,4233030,3487184,0.000000,0.000020,65739780,32147940,0,0,92415,0,1,1 +1773698314.809605,0.55,4,3992.50,54.09,1595.05,2117.80,0.00,3521730045643.741211,3521730038832.829102,11,0,0.000000,0.000030,65739780,32147943,0,0,92418,0,1,1 +1773698319.811680,0.65,4,3992.50,54.11,1594.23,2118.62,0.00,0.180199,0.000000,205,0,0.000000,0.000020,65739780,32147945,0,0,92420,0,1,1 +1773698324.809994,0.70,4,3992.50,54.12,1593.75,2119.11,0.00,1.995790,0.000195,258,2,0.000000,0.000030,65739780,32147948,0,0,92423,0,1,1 +1773698329.814013,0.70,4,3992.50,54.12,1593.75,2119.11,0.00,61780.102543,68581.403470,4233030,3487230,0.000000,0.000663,65739780,32147954,0,0,92425,0,1,1 +1773698334.813950,0.95,4,3992.50,54.14,1593.30,2119.84,0.00,3518481052065.287109,3518481045260.557617,75,0,0.000000,0.000030,65739780,32147957,0,0,92428,0,1,1 +1773698339.814168,0.70,4,3992.50,54.11,1594.56,2118.54,0.00,61829.179618,68633.697737,4233030,3487289,0.000000,0.000020,65739780,32147959,0,0,92430,0,1,1 +1773698344.812964,0.65,4,3992.50,54.11,1594.57,2118.54,0.00,3519284713282.997559,3519284706485.616699,253,762,0.000031,0.000055,65739782,32147964,0,0,92433,0,1,1 +1773698349.810570,0.70,4,3992.50,54.11,1594.57,2118.54,0.00,3520122766866.668457,3520122766857.593262,75,0,0.000142,0.000191,65739794,32147978,0,0,92435,0,1,1 +1773698354.809485,0.55,4,3992.50,53.91,1602.28,2110.83,0.00,3519200369302.271973,0.000000,11,0,0.000000,0.000063,65739794,32147982,0,0,92438,0,1,1 +1773698359.814341,0.70,4,3992.50,53.97,1600.20,2112.90,0.00,0.000000,0.000000,11,0,0.000000,0.000020,65739794,32147984,0,0,92440,0,1,1 +1773698364.809361,19.00,4,3992.50,59.05,1394.99,2312.07,0.00,61893.561420,68705.186751,4233030,3487360,22.631286,0.019061,65742363,32149252,0,0,92443,0,1,1 +1773698369.810796,1.20,4,3992.50,54.71,1565.23,2141.84,0.00,3517427681887.819336,3517427675084.929688,11,0,17.452061,0.007004,65744157,32149705,0,0,92445,0,1,1 +1773698374.814074,0.70,4,3992.50,54.12,1588.32,2118.75,0.00,61791.425285,68591.906561,4233030,3487480,0.000000,0.000030,65744157,32149708,0,0,92448,0,1,1 +1773698379.813941,0.60,4,3992.50,54.03,1591.50,2115.57,0.00,3518530239620.646973,3518530232815.528320,11,0,0.000000,0.000020,65744157,32149710,0,0,92450,0,1,1 +1773698384.809450,0.65,4,3992.50,54.01,1592.33,2114.74,0.00,1.659205,10.684793,253,762,0.000000,0.000030,65744157,32149713,0,0,92453,0,1,1 +1773698389.809472,0.70,4,3992.50,54.01,1592.33,2114.74,0.00,3518421739085.020508,3518421739075.822754,205,0,0.000000,0.000020,65744157,32149715,0,0,92455,0,1,1 +1773698394.813725,0.95,4,3992.50,54.01,1594.75,2114.67,0.00,61779.191520,68578.609090,4233030,3487519,0.000000,0.000673,65744157,32149722,0,0,92458,0,1,1 +1773698399.814315,0.65,4,3992.50,54.01,1594.65,2114.66,0.00,0.000000,0.043745,4233030,3487560,0.000000,0.000020,65744157,32149724,0,0,92460,0,1,1 +1773698404.809556,1.50,4,3992.50,54.01,1594.73,2114.58,0.00,3521789856481.103027,3521789849669.553223,11,0,0.000000,0.000030,65744157,32149727,0,0,92463,0,1,1 +1773698409.814065,0.90,4,3992.50,54.01,1594.73,2114.58,0.00,61776.212986,68575.204111,4233031,3487619,0.000031,0.000045,65744159,32149731,0,0,92465,0,1,1 +1773698414.813636,0.90,4,3992.50,54.02,1594.49,2114.81,0.00,9.727007,10.682558,4234534,3488388,0.000142,0.000201,65744171,32149746,0,0,92468,0,1,1 +1773698419.814327,0.75,4,3992.50,54.01,1594.50,2114.80,0.00,3517950986619.303711,3517950979814.164551,11,0,0.000000,0.000020,65744171,32149748,0,0,92470,0,1,1 +1773698424.813926,1.15,4,3992.50,54.01,1597.69,2114.77,0.00,0.000000,0.000000,11,0,0.000000,0.000030,65744171,32149751,0,0,92473,0,1,1 +1773698429.813860,15.86,4,3992.50,53.99,1598.53,2113.89,0.00,61842.476275,68648.725037,4234534,3488464,40.061759,0.021067,65748443,32151201,0,0,92475,0,1,1 +1773698434.814010,0.95,4,3992.50,54.00,1598.31,2114.11,0.00,3518331751192.113770,3518331744385.978516,205,0,0.003085,0.001438,65748499,32151241,0,0,92478,0,1,1 +1773698439.812244,0.65,4,3992.50,54.00,1598.07,2114.35,0.00,3519680452938.561523,0.000000,11,0,0.000000,0.000020,65748499,32151243,0,0,92480,0,1,1 +1773698444.814047,0.55,4,3992.50,54.00,1598.07,2114.34,0.00,1.657117,10.671347,253,762,0.000000,0.000030,65748499,32151246,0,0,92483,0,1,1 +1773698449.813421,0.70,4,3992.50,54.00,1598.08,2114.34,0.00,3518877780825.188477,3518877780815.989746,205,0,0.000000,0.000020,65748499,32151248,0,0,92485,0,1,1 +1773698454.813917,1.05,4,3992.50,53.91,1602.55,2110.89,0.00,61835.342572,68641.245641,4234534,3488676,0.000000,0.000030,65748499,32151251,0,0,92488,0,1,1 +1773698459.813612,0.60,4,3992.50,53.88,1603.80,2109.63,0.00,3518652299258.812988,3518652292451.944824,75,0,0.000000,0.000664,65748499,32151257,0,0,92490,0,1,1 +1773698464.809479,0.55,4,3992.50,53.88,1603.80,2109.62,0.00,0.126863,0.000000,205,0,0.000000,0.000030,65748499,32151260,0,0,92493,0,1,1 +1773698469.814282,0.75,4,3992.50,53.89,1603.57,2109.85,0.00,1.993203,0.000195,258,2,0.000000,0.000020,65748499,32151262,0,0,92495,0,1,1 +1773698474.813950,0.60,4,3992.50,53.85,1605.07,2108.35,0.00,3518670832438.412598,3518670832440.588379,11,0,0.000056,0.000086,65748503,32151269,0,0,92498,0,1,1 +1773698479.814281,0.65,4,3992.50,53.89,1603.41,2110.01,0.00,61837.578439,68643.575930,4234534,3488722,0.000416,0.000707,65748519,32151291,0,0,92500,0,1,1 +1773698484.814044,0.95,4,3992.50,53.88,1601.82,2109.43,0.00,0.000000,0.029689,4234534,3488738,0.001127,0.001232,65748528,32151308,0,0,92503,0,1,1 +1773698489.814017,0.70,4,3992.50,53.85,1602.80,2108.17,0.00,3518456758921.170410,3518456752123.673828,253,762,0.000000,0.000020,65748528,32151310,0,0,92505,0,1,1 +1773698494.813963,15.52,4,3992.50,58.85,1407.02,2303.93,0.00,3518474541303.995605,3518474541294.797852,205,0,39.059401,0.019190,65752670,32152640,0,0,92508,0,1,1 +1773698499.812620,0.95,4,3992.50,54.32,1584.29,2126.67,0.00,1.477838,10.678064,253,762,1.005878,0.002324,65752865,32152721,0,0,92510,0,1,1 +1773698504.813659,0.55,4,3992.50,53.91,1600.46,2110.50,0.00,0.517568,3517706183093.956543,258,2,0.000000,0.000030,65752865,32152724,0,0,92513,0,1,1 +1773698509.809470,0.65,4,3992.50,53.81,1604.07,2106.90,0.00,3521387219333.193848,10.683950,253,762,0.000000,0.000020,65752865,32152726,0,0,92515,0,1,1 +1773698514.809689,0.95,4,3992.50,53.89,1611.29,2109.80,0.00,61837.294953,68634.642510,4234534,3488926,0.000000,0.000030,65752865,32152729,0,0,92518,0,1,1 +1773698519.813573,0.70,4,3992.50,53.88,1611.40,2109.64,0.00,0.000000,0.032006,4234534,3488960,0.000204,0.000552,65752872,32152742,0,0,92520,0,1,1 +1773698524.811021,0.70,4,3992.50,53.89,1611.17,2109.87,0.00,3520234465408.025879,3520234458597.854004,11,0,0.000031,0.000699,65752874,32152751,0,0,92523,0,1,1 +1773698529.813593,0.70,4,3992.50,53.89,1611.17,2109.87,0.00,61800.133573,68602.395214,4233031,3488203,0.000031,0.000045,65752876,32152755,0,0,92525,0,1,1 +1773698534.811245,0.75,4,3992.50,53.89,1611.17,2109.87,0.00,3520090370870.467285,3520090364061.327148,205,0,0.000008,0.000038,65752877,32152759,0,0,92528,0,1,1 +1773698539.814044,0.75,4,3992.50,53.89,1611.17,2109.87,0.00,1.476615,10.669222,253,762,0.002117,0.002187,65752911,32152792,0,0,92530,0,1,1 +1773698544.813395,1.00,4,3992.50,53.91,1607.22,2110.74,0.00,61848.042101,68646.665562,4234534,3488988,0.001140,0.000524,65752939,32152814,0,0,92533,0,1,1 +1773698549.814312,0.60,4,3992.50,53.91,1607.23,2110.74,0.00,3517791372711.696289,3517791365906.134277,75,0,0.000000,0.000020,65752939,32152816,0,0,92535,0,1,1 +1773698554.809569,0.65,4,3992.50,53.88,1608.51,2109.46,0.00,1.605722,10.685331,253,762,0.000000,0.000030,65752939,32152819,0,0,92538,0,1,1 +1773698559.813705,15.93,4,3992.50,58.84,1414.45,2303.53,0.00,3515529628229.193848,3515529628220.184082,11,0,29.622250,0.018546,65756179,32154099,0,0,92540,0,1,1 +1773698564.809568,1.15,4,3992.50,53.89,1608.14,2109.83,0.00,2.177192,0.000195,258,2,10.426741,0.004272,65757310,32154334,0,0,92543,0,1,1 +1773698569.809463,0.70,4,3992.50,53.89,1607.89,2110.07,0.00,3518511531807.515625,3518511531809.690918,11,0,0.000000,0.000020,65757310,32154336,0,0,92545,0,1,1 +1773698574.810431,0.80,4,3992.50,54.00,1603.45,2114.38,0.00,61819.961358,68624.631058,4233031,3488411,0.000000,0.000030,65757310,32154339,0,0,92548,0,1,1 +1773698579.809689,0.85,4,3992.50,54.04,1601.82,2115.87,0.00,3518959140302.500977,3518959133504.522461,253,762,0.000000,0.000020,65757310,32154341,0,0,92550,0,1,1 +1773698584.814256,0.60,4,3992.50,54.04,1601.82,2115.87,0.00,3515226670107.429199,3515226670098.419922,11,0,0.000056,0.000086,65757314,32154348,0,0,92553,0,1,1 +1773698589.810663,0.65,4,3992.50,54.04,1601.82,2115.87,0.00,61876.399647,68687.329334,4233031,3488449,0.000033,0.000703,65757317,32154357,0,0,92555,0,1,1 +1773698594.814261,0.55,4,3992.50,54.00,1603.42,2114.27,0.00,3515906735614.855469,3515906728822.725586,253,762,0.000000,0.000030,65757317,32154360,0,0,92558,0,1,1 +1773698599.810580,0.75,4,3992.50,54.00,1603.34,2114.36,0.00,3521029872046.022949,3521029872036.999023,11,0,0.000000,0.000020,65757317,32154362,0,0,92560,0,1,1 +1773698604.810427,0.90,4,3992.50,54.06,1600.41,2116.55,0.00,0.180279,0.000000,205,0,0.000031,0.000055,65757319,32154367,0,0,92563,0,1,1 +1773698609.809566,0.60,4,3992.50,54.06,1600.53,2116.51,0.00,0.000000,0.000000,205,0,0.000126,0.000175,65757329,32154379,0,0,92565,0,1,1 +1773698614.810630,0.75,4,3992.50,54.06,1600.54,2116.51,0.00,3517688150961.132812,0.000000,75,0,0.000000,0.000030,65757329,32154382,0,0,92568,0,1,1 +1773698619.810566,0.55,4,3992.50,54.06,1600.54,2116.51,0.00,0.000000,0.000000,75,0,0.000000,0.000020,65757329,32154384,0,0,92570,0,1,1 +1773698624.810555,17.19,4,3992.50,58.72,1417.88,2299.16,0.00,0.000000,0.000000,75,0,19.634363,0.017026,65759592,32155470,0,0,92573,0,1,1 +1773698629.811846,2.21,4,3992.50,53.88,1607.66,2109.37,0.00,3517528855598.086426,0.000000,11,0,20.425682,0.006715,65761683,32155900,0,0,92575,0,1,1 +1773698634.813677,0.85,4,3992.50,53.93,1607.08,2111.32,0.00,2.174594,0.000195,258,2,0.000008,0.000038,65761684,32155904,0,0,92578,0,1,1 +1773698639.810655,0.65,4,3992.50,53.94,1606.12,2112.00,0.00,3520564870007.114258,10.681455,253,762,0.000000,0.000020,65761684,32155906,0,0,92580,0,1,1 +1773698644.813890,0.70,4,3992.50,53.94,1606.12,2111.99,0.00,61800.017369,68593.870970,4234534,3489466,0.000000,0.000030,65761684,32155909,0,0,92583,0,1,1 +1773698649.814220,0.60,4,3992.50,53.94,1606.12,2111.99,0.00,3518205272688.807129,3518205265879.813965,258,2,0.000000,0.000020,65761684,32155911,0,0,92585,0,1,1 +1773698654.814279,0.75,4,3992.50,53.76,1613.28,2104.84,0.00,3518395237240.613770,3518395237242.735352,75,0,0.000000,0.000674,65761684,32155918,0,0,92588,0,1,1 +1773698659.809605,0.65,4,3992.50,53.76,1613.28,2104.84,0.00,2.123860,0.000195,258,2,0.000000,0.000020,65761684,32155920,0,0,92590,0,1,1 +1773698664.814245,0.85,4,3992.50,53.81,1605.71,2106.77,0.00,0.000000,0.000000,258,2,0.000000,0.000030,65761684,32155923,0,0,92593,0,1,1 +1773698669.812694,0.80,4,3992.50,53.81,1605.71,2106.76,0.00,3519529405437.613281,10.678314,253,762,0.000062,0.000062,65761688,32155928,0,0,92595,0,1,1 +1773698674.813694,0.65,4,3992.50,53.83,1604.99,2107.50,0.00,3517733463085.391602,3517733463076.195801,205,0,0.000212,0.000341,65761703,32155951,0,0,92598,0,1,1 +1773698679.812701,0.70,4,3992.50,53.83,1604.99,2107.50,0.00,61844.039384,68651.984943,4233031,3488773,0.000008,0.000028,65761704,32155954,0,0,92600,0,1,1 +1773698684.809461,0.70,4,3992.50,53.83,1604.99,2107.49,0.00,3520718269003.717773,3520718262192.838379,75,0,0.000000,0.000030,65761704,32155957,0,0,92603,0,1,1 +1773698689.813315,1.05,4,3992.50,53.83,1605.00,2107.46,0.00,0.000000,0.000000,75,0,0.004153,0.003014,65761747,32155995,0,0,92605,0,1,1 +1773698694.809441,13.27,4,3992.50,59.61,1366.23,2333.84,0.00,3521164981449.811035,0.000000,11,0,0.745703,0.011993,65763170,32156847,0,0,92608,0,1,1 +1773698699.813772,0.75,4,3992.50,59.73,1361.49,2338.59,0.00,2.173508,0.000195,258,2,3.702911,0.073549,65769824,32162658,0,0,92610,0,1,1 +1773698704.813680,0.66,4,3992.50,59.62,1365.91,2334.16,0.00,3518502186468.356445,3518502186470.478516,75,0,3.710472,0.070565,65776758,32167657,0,0,92613,0,1,1 +1773698709.813713,0.86,4,3992.50,59.66,1364.33,2335.75,0.00,0.126757,0.000000,205,0,3.493425,0.079600,65783395,32173365,0,0,92615,0,1,1 +1773698714.812670,0.81,4,3992.50,59.87,1356.20,2343.87,0.00,0.000000,0.000000,205,0,3.553701,0.075209,65789845,32179280,0,0,92618,0,1,1 +1773698719.810574,0.76,4,3992.50,59.70,1362.62,2337.45,0.00,3519912803497.077148,0.000000,11,0,3.496039,0.071061,65796455,32184405,0,0,92620,0,1,1 +1773698724.812563,1.41,4,3992.50,59.99,1353.52,2348.80,0.00,0.180202,0.000000,205,0,3.475066,0.072705,65802970,32189867,0,0,92623,0,1,1 +1773698729.814504,0.76,4,3992.50,60.07,1348.36,2351.70,0.00,1.994343,0.000195,258,2,3.600600,0.075185,65809498,32195813,0,0,92625,0,1,1 +1773698734.814034,0.71,4,3992.50,59.87,1356.00,2344.07,0.00,3518768047677.046387,10.676004,253,762,3.508067,0.071657,65816195,32200944,0,0,92628,0,1,1 +1773698739.809473,0.91,4,3992.50,60.02,1350.21,2349.86,0.00,0.000000,0.000000,253,762,3.491543,0.072376,65822731,32206365,0,0,92630,0,1,1 +1773698744.813847,0.76,4,3992.50,59.88,1355.69,2344.38,0.00,61776.276530,68567.992415,4233033,3489077,3.597444,0.073511,65829257,32212180,0,0,92633,0,1,1 +1773698749.813543,0.81,4,3992.50,54.24,1576.31,2123.77,0.00,3518651547638.694336,3518651540831.424316,205,0,3.446070,0.071468,65835867,32217320,0,0,92635,0,1,1 +1773698754.814212,1.11,4,3992.50,53.94,1588.64,2111.74,0.00,61833.376117,68640.220663,4234543,3489887,1.534441,0.042432,65838830,32220408,0,0,92638,0,1,1 +1773698759.812903,1.00,4,3992.50,53.92,1589.07,2110.99,0.00,3519358613668.463867,3519358606859.105469,11,0,0.002847,0.001135,65838880,32220442,0,0,92640,0,1,1 +1773698764.813636,0.70,4,3992.50,53.94,1588.36,2111.72,0.00,61832.766880,68639.427754,4234543,3489994,0.000000,0.000030,65838880,32220445,0,0,92643,0,1,1 +1773698769.814219,0.60,4,3992.50,53.74,1596.00,2104.08,0.00,3518027232138.776855,3518027225340.927246,253,762,0.000000,0.000020,65838880,32220447,0,0,92645,0,1,1 +1773698774.810168,0.85,4,3992.50,53.74,1596.00,2104.07,0.00,61890.327699,68694.489065,4234543,3489999,0.000000,0.000030,65838880,32220450,0,0,92648,0,1,1 +1773698779.813060,0.70,4,3992.50,53.74,1596.00,2104.07,0.00,3516403089300.657227,3516403082496.873535,75,0,0.000307,0.000574,65838887,32220463,0,0,92650,0,1,1 +1773698784.814285,0.95,4,3992.50,53.95,1590.91,2112.20,0.00,3517575410646.204102,0.000000,11,0,0.000213,0.001214,65838895,32220482,0,0,92653,0,1,1 +1773698789.810573,0.65,4,3992.50,53.91,1592.66,2110.52,0.00,0.053555,0.000000,75,0,0.000000,0.000020,65838895,32220484,0,0,92655,0,1,1 +1773698794.811223,0.70,4,3992.50,53.91,1592.67,2110.52,0.00,61824.014297,68629.999527,4233040,3489300,0.000000,0.000030,65838895,32220487,0,0,92658,0,1,1 +1773698799.813694,0.70,4,3992.50,53.91,1592.67,2110.52,0.00,0.000000,0.001562,4233040,3489302,0.000025,0.000051,65838897,32220491,0,0,92660,0,1,1 +1773698804.814243,0.65,4,3992.50,53.91,1592.67,2110.51,0.00,9.725104,10.678125,4234543,3490070,0.000101,0.000154,65838905,32220502,0,0,92663,0,1,1 +1773698809.813858,0.65,4,3992.50,53.89,1593.15,2110.04,0.00,3518708277588.985840,3518708270780.688965,11,0,0.000000,0.000020,65838905,32220504,0,0,92665,0,1,1 +1773698814.813980,0.95,4,3992.50,53.92,1600.62,2111.28,0.00,61830.601548,68637.295507,4233040,3489325,0.000000,0.000030,65838905,32220507,0,0,92668,0,1,1 +1773698819.813849,0.90,4,3992.50,53.58,1614.25,2097.64,0.00,3518529024992.108398,3518529018185.070801,11,0,0.002486,0.001315,65838940,32220540,0,0,92670,0,1,1 +1773698824.810764,1.16,4,3992.50,53.68,1610.30,2101.58,0.00,0.000000,0.000000,11,0,0.002647,0.003097,65838998,32220594,0,0,92673,0,1,1 +1773698829.813750,14.72,4,3992.50,59.52,1381.51,2330.38,0.00,61804.925100,68608.781688,4234543,3490235,3.182829,0.056283,65844756,32225023,0,0,92675,0,1,1 +1773698834.809474,0.81,4,3992.50,59.32,1389.20,2322.69,0.00,3521448552506.974609,3521448545693.228027,11,0,3.549976,0.068216,65851430,32230001,0,0,92678,0,1,1 +1773698839.810951,0.91,4,3992.50,59.48,1382.96,2328.93,0.00,2.174749,0.000195,258,2,3.492069,0.074082,65858071,32235344,0,0,92680,0,1,1 +1773698844.813848,1.06,4,3992.50,60.07,1367.67,2351.73,0.00,0.000000,0.000000,258,2,3.544616,0.076957,65864523,32241342,0,0,92683,0,1,1 +1773698849.813959,0.65,4,3992.50,59.65,1383.96,2335.44,0.00,61838.284933,68648.337478,4234543,3490317,3.559068,0.072686,65871234,32246588,0,0,92685,0,1,1 +1773698854.814317,0.65,4,3992.50,59.63,1384.60,2334.80,0.00,0.000000,0.001953,4234543,3490325,3.475589,0.071491,65877794,32251847,0,0,92688,0,1,1 +1773698859.813691,0.80,4,3992.50,59.85,1376.08,2343.32,0.00,3518877851303.642090,3518877844494.578125,205,0,3.543937,0.074996,65884216,32257775,0,0,92690,0,1,1 +1773698864.813996,0.65,4,3992.50,59.64,1384.29,2335.10,0.00,61828.160884,68635.015452,4233040,3489575,3.543757,0.070820,65890917,32262936,0,0,92693,0,1,1 +1773698869.813321,0.75,4,3992.50,59.59,1386.22,2333.18,0.00,3518912198088.143066,3518912191289.153320,253,762,3.467097,0.069266,65897463,32268090,0,0,92695,0,1,1 +1773698874.813556,0.96,4,3992.50,59.96,1371.39,2347.75,0.00,3518271648868.960938,3518271648859.890625,75,0,3.542037,0.073619,65903887,32273910,0,0,92698,0,1,1 +1773698879.809822,0.71,4,3992.50,59.39,1393.74,2325.40,0.00,3521066738002.019531,0.000000,11,0,3.537720,0.071164,65910562,32279105,0,0,92700,0,1,1 +1773698884.811319,0.70,4,3992.50,53.88,1609.60,2109.55,0.00,61813.611255,68618.719694,4233040,3489626,2.810859,0.067815,65915745,32284391,0,0,92703,0,1,1 +1773698889.809595,0.85,4,3992.50,53.89,1609.41,2109.73,0.00,9.729526,10.684543,4234543,3490411,0.002794,0.002030,65915803,32284482,0,0,92705,0,1,1 +1773698894.814108,0.75,4,3992.50,53.90,1608.96,2110.18,0.00,3515264027177.395996,3515264020375.256348,205,0,0.001131,0.000650,65915826,32284500,0,0,92708,0,1,1 +1773698899.813455,0.80,4,3992.50,53.90,1608.96,2110.20,0.00,0.000000,0.000000,205,0,0.000000,0.000020,65915826,32284502,0,0,92710,0,1,1 +1773698904.810961,1.05,4,3992.50,54.03,1599.51,2115.30,0.00,1.478179,10.680524,253,762,0.000000,0.000030,65915826,32284505,0,0,92713,0,1,1 +1773698909.814156,0.65,4,3992.50,54.03,1599.59,2115.29,0.00,61790.969824,68584.892064,4233040,3489750,0.000000,0.000020,65915826,32284507,0,0,92715,0,1,1 +1773698914.809573,0.70,4,3992.50,54.03,1599.59,2115.29,0.00,3521664367878.682617,3521664361064.977539,205,0,0.000000,0.000674,65915826,32284514,0,0,92718,0,1,1 +1773698919.813985,0.70,4,3992.50,53.99,1600.98,2113.89,0.00,1.993358,0.000195,258,2,0.000000,0.000020,65915826,32284516,0,0,92720,0,1,1 +1773698924.813723,0.60,4,3992.50,54.04,1599.27,2115.61,0.00,61842.896023,68653.675524,4234543,3490524,0.000000,0.000030,65915826,32284519,0,0,92723,0,1,1 +1773698929.809573,0.65,4,3992.50,54.04,1599.05,2115.82,0.00,0.000000,0.003909,4234543,3490528,0.000000,0.000020,65915826,32284521,0,0,92725,0,1,1 +1773698934.809675,0.95,4,3992.50,54.22,1601.08,2122.91,0.00,3518365124701.573242,3518365117902.478027,253,762,0.000076,0.000123,65915832,32284530,0,0,92728,0,1,1 +1773698939.811795,0.70,4,3992.50,54.22,1601.04,2122.89,0.00,3516946251569.174316,3516946251559.980469,205,0,0.000066,0.000098,65915838,32284538,0,0,92730,0,1,1 +1773698944.814176,0.65,4,3992.50,54.22,1601.04,2122.89,0.00,0.000000,0.000000,205,0,0.000000,0.000030,65915838,32284541,0,0,92733,0,1,1 +1773698949.812881,0.60,4,3992.50,54.22,1601.04,2122.89,0.00,61847.948869,68657.250192,4233040,3489803,0.000000,0.000020,65915838,32284543,0,0,92735,0,1,1 +1773698954.810153,1.10,4,3992.50,54.01,1609.43,2114.51,0.00,3520357967009.346191,3520357960198.272461,11,0,0.001138,0.000782,65915852,32284552,0,0,92738,0,1,1 +1773698959.814004,1.05,4,3992.50,53.85,1615.46,2108.44,0.00,2.173716,0.000195,258,2,0.003437,0.003049,65915899,32284594,0,0,92740,0,1,1 +1773698964.813553,13.89,4,3992.50,59.71,1385.89,2337.68,0.00,3518754615326.149902,3518754615328.271973,75,0,1.825450,0.034197,65919240,32287233,0,0,92743,0,1,1 +1773698969.813786,0.81,4,3992.50,59.95,1376.33,2347.25,0.00,0.126752,0.000000,205,0,3.762628,0.066466,65926008,32292456,0,0,92745,0,1,1 +1773698974.813622,0.76,4,3992.50,59.59,1390.60,2332.98,0.00,1.477490,10.675547,253,762,3.436791,0.075930,65932676,32297540,0,0,92748,0,1,1 +1773698979.813833,0.71,4,3992.50,59.89,1378.80,2344.78,0.00,0.000000,0.000000,253,762,3.594013,0.074145,65939262,32303227,0,0,92750,0,1,1 +1773698984.814216,0.85,4,3992.50,59.54,1392.49,2331.10,0.00,61835.443895,68634.413316,4234543,3490780,3.440560,0.072417,65945690,32308659,0,0,92753,0,1,1 +1773698989.814070,0.70,4,3992.50,59.60,1390.16,2333.43,0.00,3518539776513.273926,3518539769704.567871,11,0,3.517000,0.071896,65952344,32313906,0,0,92755,0,1,1 +1773698994.814280,1.01,4,3992.50,60.15,1364.96,2354.82,0.00,0.000000,0.000000,11,0,3.588031,0.073461,65958877,32319683,0,0,92758,0,1,1 +1773698999.810220,0.76,4,3992.50,60.02,1369.80,2349.77,0.00,0.000000,0.000000,11,0,3.510103,0.072806,65965382,32325194,0,0,92760,0,1,1 +1773699004.814192,0.86,4,3992.50,59.87,1375.39,2344.18,0.00,0.000000,0.000000,11,0,3.498650,0.072515,65972126,32330381,0,0,92763,0,1,1 +1773699009.813630,0.70,4,3992.50,60.18,1363.45,2356.12,0.00,2.175635,0.000195,258,2,3.584655,0.073046,65978626,32336145,0,0,92765,0,1,1 +1773699014.813418,0.75,4,3992.50,59.80,1378.08,2341.49,0.00,3518586044367.037598,3518586044369.159180,75,0,3.477948,0.072663,65985117,32341572,0,0,92768,0,1,1 +1773699019.813988,0.86,4,3992.50,54.27,1594.88,2124.72,0.00,0.126743,0.000000,205,0,3.433350,0.070401,65991599,32346851,0,0,92770,0,1,1 +1773699024.813641,1.25,4,3992.50,54.06,1597.36,2116.53,0.00,1.477544,10.675937,253,762,0.652765,0.022294,65992809,32348591,0,0,92773,0,1,1 +1773699029.814182,0.90,4,3992.50,54.07,1596.94,2116.97,0.00,3518056935774.852051,3518056935765.835938,11,0,0.002225,0.001043,65992851,32348620,0,0,92775,0,1,1 +1773699034.814337,0.70,4,3992.50,54.08,1596.73,2117.19,0.00,61839.953156,68648.449155,4234545,3491002,0.000000,0.000030,65992851,32348623,0,0,92778,0,1,1 +1773699039.813819,0.70,4,3992.50,54.08,1596.73,2117.19,0.00,3518801451975.692871,3518801451974.745117,4233042,3490240,0.000000,0.000020,65992851,32348625,0,0,92780,0,1,1 +1773699044.813820,0.60,4,3992.50,54.08,1596.73,2117.19,0.00,3518436230146.573730,3518436223338.815918,11,0,0.000000,0.000674,65992851,32348632,0,0,92783,0,1,1 +1773699049.809588,0.70,4,3992.50,54.08,1596.73,2117.19,0.00,1.659119,10.684240,253,762,0.000000,0.000020,65992851,32348634,0,0,92785,0,1,1 +1773699054.809483,0.95,4,3992.50,54.07,1606.99,2117.10,0.00,61841.512883,68641.425922,4234545,3491049,0.000000,0.000030,65992851,32348637,0,0,92788,0,1,1 +1773699059.809469,0.60,4,3992.50,53.91,1613.09,2110.65,0.00,3518446748884.682617,3518446742073.701172,258,2,0.000000,0.000020,65992851,32348639,0,0,92790,0,1,1 +1773699064.810443,0.70,4,3992.50,53.92,1612.84,2110.89,0.00,3517752250456.785645,10.672922,253,762,0.000000,0.000030,65992851,32348642,0,0,92793,0,1,1 +1773699069.810618,0.70,4,3992.50,53.92,1612.61,2111.13,0.00,61838.042261,68637.588524,4234545,3491059,0.000025,0.000051,65992853,32348646,0,0,92795,0,1,1 +1773699074.814241,0.65,4,3992.50,53.92,1612.61,2111.12,0.00,3515889394358.614746,3515889387563.753906,253,762,0.000109,0.000162,65992862,32348658,0,0,92798,0,1,1 +1773699079.814048,0.75,4,3992.50,53.92,1612.61,2111.12,0.00,3518573668316.871582,3518573668307.673828,205,0,0.001238,0.001252,65992872,32348675,0,0,92800,0,1,1 +1773699084.813557,1.05,4,3992.50,54.13,1603.29,2119.21,0.00,61838.022379,68646.779933,4233042,3490339,0.000205,0.000562,65992879,32348689,0,0,92803,0,1,1 +1773699089.809466,0.95,4,3992.50,53.84,1614.34,2108.05,0.00,3521319077689.541992,3521319070873.878418,258,2,0.003001,0.001121,65992910,32348713,0,0,92805,0,1,1 +1773699094.815563,1.75,4,3992.50,57.10,1486.69,2235.71,0.00,3514151410966.444824,3514151410968.617676,11,0,0.002937,0.003425,65992969,32348768,0,0,92808,0,1,1 +1773699099.810007,16.98,4,3992.50,59.47,1394.02,2328.38,0.00,1.659559,10.687073,253,762,3.170648,0.059195,65998700,32353418,0,0,92810,0,1,1 +1773699104.809530,0.85,4,3992.50,59.30,1400.50,2321.90,0.00,0.000000,0.000000,253,762,3.699672,0.071688,66005675,32358475,0,0,92813,0,1,1 +1773699109.809440,0.66,4,3992.50,59.41,1396.30,2326.10,0.00,3518500617892.277832,3518500617883.260254,11,0,3.545753,0.083062,66012447,32364336,0,0,92815,0,1,1 +1773699114.809472,1.01,4,3992.50,59.75,1384.82,2339.48,0.00,61841.474805,68650.483939,4234545,3491296,3.548329,0.075049,66018882,32370269,0,0,92818,0,1,1 +1773699119.810581,0.70,4,3992.50,59.47,1395.92,2328.38,0.00,3517656659231.217285,3517656652423.675293,11,0,3.538009,0.070825,66025599,32375394,0,0,92820,0,1,1 +1773699124.810559,0.70,4,3992.50,59.51,1394.35,2329.94,0.00,2.175400,0.000195,258,2,3.466963,0.071331,66032167,32380603,0,0,92823,0,1,1 +1773699129.813535,0.70,4,3992.50,59.79,1383.20,2341.10,0.00,3516344223835.878906,10.668650,253,762,3.545669,0.073531,66038600,32386410,0,0,92825,0,1,1 +1773699134.809458,0.76,4,3992.50,59.47,1396.05,2328.24,0.00,61880.935148,68685.631386,4233042,3490612,3.574014,0.072611,66045360,32391619,0,0,92828,0,1,1 +1773699139.813764,0.90,4,3992.50,59.53,1393.73,2330.57,0.00,3515409635494.215820,3515409628691.907715,11,0,3.505167,0.072286,66051998,32396894,0,0,92830,0,1,1 +1773699144.814300,1.11,4,3992.50,59.73,1381.24,2338.43,0.00,2.175158,0.000195,258,2,3.541424,0.076225,66058452,32402788,0,0,92833,0,1,1 +1773699149.809466,0.86,4,3992.50,54.43,1588.40,2131.12,0.00,61899.532673,68717.465058,4234545,3491421,3.544732,0.071928,66065139,32408012,0,0,92835,0,1,1 +1773699154.809595,0.70,4,3992.50,54.14,1599.93,2119.60,0.00,3518346990103.431152,3518346983294.385742,75,0,2.730707,0.066060,66070351,32412861,0,0,92838,0,1,1 +1773699159.809712,0.90,4,3992.50,54.14,1599.95,2119.58,0.00,61840.361279,68649.430747,4234545,3491448,0.003218,0.001516,66070418,32412907,0,0,92840,0,1,1 +1773699164.809471,0.65,4,3992.50,54.14,1599.95,2119.57,0.00,3518607168251.043457,3518607161441.358398,205,0,0.000000,0.000030,66070418,32412910,0,0,92843,0,1,1 +1773699169.809460,0.90,4,3992.50,53.95,1607.12,2112.41,0.00,0.000000,0.000000,205,0,0.000031,0.000045,66070420,32412914,0,0,92845,0,1,1 +1773699174.813709,0.85,4,3992.50,54.04,1600.00,2115.78,0.00,1.993423,0.000195,258,2,0.000000,0.000673,66070420,32412921,0,0,92848,0,1,1 +1773699179.814207,0.75,4,3992.50,53.89,1605.88,2109.86,0.00,61823.807717,68633.640945,4233042,3490760,0.000000,0.000020,66070420,32412923,0,0,92850,0,1,1 +1773699184.814285,0.70,4,3992.50,53.89,1605.66,2110.07,0.00,3518382298285.730957,3518382291477.500488,11,0,0.000025,0.000061,66070422,32412928,0,0,92853,0,1,1 +1773699189.813749,0.70,4,3992.50,53.76,1610.87,2104.87,0.00,61838.777827,68647.876962,4233042,3490797,0.000056,0.000076,66070426,32412934,0,0,92855,0,1,1 +1773699194.814357,0.65,4,3992.50,53.77,1610.42,2105.32,0.00,9.724989,10.681122,4234545,3491565,0.000000,0.000030,66070426,32412937,0,0,92858,0,1,1 +1773699199.810115,0.75,4,3992.50,53.81,1608.95,2106.80,0.00,3521424776643.204590,3521424769828.097656,11,0,0.000025,0.000051,66070428,32412941,0,0,92860,0,1,1 +1773699204.813595,0.85,4,3992.50,54.04,1603.83,2115.86,0.00,0.000000,0.000000,11,0,0.000101,0.000154,66070436,32412952,0,0,92863,0,1,1 +1773699209.813542,0.60,4,3992.50,53.89,1609.75,2109.94,0.00,0.053516,0.000000,75,0,0.000008,0.000028,66070437,32412955,0,0,92865,0,1,1 +1773699214.809460,0.70,4,3992.50,53.89,1609.78,2109.94,0.00,0.126861,0.000000,205,0,0.000000,0.000030,66070437,32412958,0,0,92868,0,1,1 +1773699219.813658,0.80,4,3992.50,53.79,1613.56,2106.15,0.00,0.000000,0.000000,205,0,0.000971,0.000318,66070455,32412970,0,0,92870,0,1,1 +1773699224.810443,1.05,4,3992.50,53.83,1612.13,2107.58,0.00,61871.743952,68684.755242,4233042,3490881,0.002953,0.002583,66070496,32413006,0,0,92873,0,1,1 +1773699229.810569,16.11,4,3992.50,59.47,1391.26,2328.42,0.00,3518348805536.224609,3518348798736.961914,253,762,1.959978,0.035604,66074069,32415757,0,0,92875,0,1,1 +1773699234.813746,1.06,4,3992.50,59.99,1379.61,2348.58,0.00,3516202635383.796387,3516202635374.604492,205,0,3.664210,0.066128,66080744,32420831,0,0,92878,0,1,1 +1773699239.813897,0.71,4,3992.50,59.32,1403.56,2322.58,0.00,61839.834219,68649.323660,4234545,3491725,3.462021,0.077398,66087503,32426162,0,0,92880,0,1,1 +1773699244.814115,0.76,4,3992.50,59.68,1389.35,2336.79,0.00,3518283680121.210938,3518283680120.268555,4233042,3490969,3.587226,0.073645,66094008,32431972,0,0,92883,0,1,1 +1773699249.813472,0.70,4,3992.50,59.34,1402.82,2323.32,0.00,3518889383454.350586,3518889376644.724609,205,0,3.459704,0.073160,66100518,32437362,0,0,92885,0,1,1 +1773699254.814333,0.65,4,3992.50,59.34,1402.95,2323.19,0.00,1.477187,10.673358,253,762,3.532268,0.070463,66107194,32442534,0,0,92888,0,1,1 +1773699259.814264,1.30,4,3992.50,54.46,1593.75,2132.39,0.00,3518485716133.072266,3518485716124.001465,75,0,21.458853,0.033740,66112007,32444951,0,0,92890,0,1,1 +1773699264.810785,0.90,4,3992.50,54.17,1606.26,2120.97,0.00,3520886817298.043457,0.000000,11,0,0.000619,0.000283,66112019,32444961,0,0,92893,0,1,1 +1773699269.809929,0.65,4,3992.50,54.06,1610.48,2116.76,0.00,61842.739403,68652.652060,4233042,3491146,0.000031,0.000045,66112021,32444965,0,0,92895,0,1,1 +1773699274.813461,0.65,4,3992.50,54.07,1610.15,2117.09,0.00,0.000000,0.025763,4233042,3491172,0.000031,0.000055,66112023,32444970,0,0,92898,0,1,1 +1773699279.809448,0.65,4,3992.50,53.99,1613.55,2113.68,0.00,9.733984,10.684747,4234545,3491937,0.000000,0.000020,66112023,32444972,0,0,92900,0,1,1 +1773699284.809778,0.70,4,3992.50,53.99,1613.55,2113.68,0.00,3518205099602.192871,3518205092792.866211,75,0,0.000000,0.000030,66112023,32444975,0,0,92903,0,1,1 +1773699289.809437,0.60,4,3992.50,53.99,1613.55,2113.68,0.00,0.126766,0.000000,205,0,0.000000,0.000020,66112023,32444977,0,0,92905,0,1,1 +1773699294.809831,1.75,4,3992.50,54.04,1614.42,2115.71,0.00,3518160286746.896973,0.000000,11,0,0.000000,0.000030,66112023,32444980,0,0,92908,0,1,1 +1773699299.814005,0.70,4,3992.50,53.99,1616.20,2113.95,0.00,0.180123,0.000000,205,0,0.000000,0.000020,66112023,32444982,0,0,92910,0,1,1 +1773699304.810875,0.85,4,3992.50,54.01,1615.61,2114.52,0.00,3520641015385.808105,0.000000,75,0,0.000101,0.000476,66112031,32444995,0,0,92913,0,1,1 +1773699309.813942,0.80,4,3992.50,54.03,1614.88,2115.25,0.00,3516280477154.800781,0.000000,11,0,0.000033,0.000381,66112034,32445002,0,0,92915,0,1,1 +1773699314.813537,0.85,4,3992.50,54.04,1614.50,2115.64,0.00,0.000000,0.000000,11,0,0.000000,0.000030,66112034,32445005,0,0,92918,0,1,1 +1773699319.811988,0.70,4,3992.50,54.05,1614.10,2116.04,0.00,0.000000,0.000000,11,0,0.000000,0.000020,66112034,32445007,0,0,92920,0,1,1 +1773699324.814228,18.95,4,3992.50,55.19,1564.22,2160.80,0.00,1.656972,10.670414,253,762,40.048363,0.021685,66116507,32446432,0,0,92923,0,1,1 +1773699329.812019,0.70,4,3992.50,54.43,1594.00,2130.94,0.00,3519992568990.222168,3519992568981.020508,205,0,0.000000,0.000020,66116507,32446434,0,0,92925,0,1,1 +1773699334.813757,0.60,4,3992.50,54.07,1608.10,2116.83,0.00,61820.223912,68628.002521,4234546,3492157,0.000000,0.000030,66116507,32446437,0,0,92928,0,1,1 +1773699339.813428,0.80,4,3992.50,54.05,1608.86,2116.08,0.00,0.000000,0.032815,4234546,3492192,0.000000,0.000020,66116507,32446439,0,0,92930,0,1,1 +1773699344.809569,0.65,4,3992.50,54.05,1608.86,2116.08,0.00,3521154820106.475586,3521154813291.217285,11,0,0.000000,0.000030,66116507,32446442,0,0,92933,0,1,1 +1773699349.813813,0.70,4,3992.50,54.03,1609.49,2115.44,0.00,0.000000,0.000000,11,0,0.000000,0.000020,66116507,32446444,0,0,92935,0,1,1 +1773699354.813712,0.95,4,3992.50,54.24,1601.45,2123.78,0.00,0.000000,0.000000,11,0,0.000000,0.000030,66116507,32446447,0,0,92938,0,1,1 +1773699359.814159,0.70,4,3992.50,54.23,1601.69,2123.19,0.00,2.175196,0.000195,258,2,0.000000,0.000020,66116507,32446449,0,0,92940,0,1,1 +1773699364.809589,0.75,4,3992.50,54.23,1601.59,2123.28,0.00,3521655528018.853516,3521655528020.977539,75,0,0.000000,0.000030,66116507,32446452,0,0,92943,0,1,1 +1773699369.809571,0.60,4,3992.50,54.23,1601.59,2123.28,0.00,3518450481885.744629,0.000000,11,0,0.000157,0.000361,66116519,32446467,0,0,92945,0,1,1 +1773699374.809636,0.75,4,3992.50,54.24,1601.13,2123.75,0.00,0.000000,0.000000,11,0,0.000008,0.000521,66116520,32446474,0,0,92948,0,1,1 +1773699379.814407,0.70,4,3992.50,54.26,1600.65,2124.23,0.00,1.656135,10.665019,253,762,0.001228,0.001243,66116529,32446490,0,0,92950,0,1,1 +1773699384.809460,0.95,4,3992.50,54.24,1599.64,2123.71,0.00,3521921600180.767578,3521921600171.741211,11,0,0.000205,0.000562,66116536,32446504,0,0,92953,0,1,1 +1773699389.811690,18.74,4,3992.50,55.83,1537.38,2185.97,0.00,1.656976,10.670438,253,762,40.049107,0.024593,66121061,32448159,0,0,92955,0,1,1 +1773699394.812839,0.65,4,3992.50,54.88,1574.88,2148.48,0.00,0.000000,0.000000,253,762,0.000000,0.000030,66121061,32448162,0,0,92958,0,1,1 +1773699399.814492,0.65,4,3992.50,54.33,1596.39,2126.96,0.00,3517274012599.744629,3517274012590.730469,11,0,0.000000,0.000020,66121061,32448164,0,0,92960,0,1,1 +1773699404.813822,0.65,4,3992.50,54.11,1604.70,2118.66,0.00,61840.465317,68650.748034,4233043,3491734,0.000000,0.000030,66121061,32448167,0,0,92963,0,1,1 +1773699409.811549,0.75,4,3992.50,54.12,1604.46,2118.90,0.00,3520037103179.472168,3520037096367.006348,11,0,0.000000,0.000020,66121061,32448169,0,0,92965,0,1,1 +1773699414.813920,0.90,4,3992.50,54.35,1597.82,2127.75,0.00,61802.861587,68609.070287,4233043,3491763,0.000000,0.000030,66121061,32448172,0,0,92968,0,1,1 +1773699419.814449,0.70,4,3992.50,54.31,1599.07,2126.29,0.00,3518064674064.556152,3518064667255.787109,75,0,0.000000,0.000020,66121061,32448174,0,0,92970,0,1,1 +1773699424.809485,0.70,4,3992.50,54.31,1599.14,2126.21,0.00,61903.321032,68720.572962,4234547,3492568,0.000031,0.000055,66121063,32448179,0,0,92973,0,1,1 +1773699429.809477,0.70,4,3992.50,54.31,1599.15,2126.21,0.00,0.000000,0.037500,4234547,3492606,0.001158,0.001247,66121074,32448197,0,0,92975,0,1,1 +1773699434.809565,0.55,4,3992.50,54.31,1599.15,2126.21,0.00,0.000000,0.005469,4234547,3492612,0.000165,0.000379,66121087,32448214,0,0,92978,0,1,1 +1773699439.810220,0.75,4,3992.50,54.31,1599.15,2126.21,0.00,3517976410335.725098,3517976403525.964355,205,0,0.000000,0.000503,66121087,32448219,0,0,92980,0,1,1 +1773699444.809453,0.80,4,3992.50,54.31,1598.91,2126.45,0.00,3518976851021.077637,0.000000,11,0,0.001417,0.001200,66121116,32448247,0,0,92983,0,1,1 +1773699449.809622,0.90,4,3992.50,54.29,1597.28,2125.65,0.00,0.000000,0.000000,11,0,0.001734,0.001351,66121141,32448265,0,0,92985,0,1,1 +1773699454.809564,16.09,4,3992.50,53.97,1610.04,2112.89,0.00,61832.894963,68642.588312,4233044,3491934,40.065312,0.027832,66125537,32450243,0,0,92988,0,1,1 +1773699459.811471,0.95,4,3992.50,53.97,1610.07,2112.87,0.00,3517095430715.965332,3517095423917.960938,253,762,0.003084,0.001420,66125593,32450281,0,0,92990,0,1,1 +1773699464.812411,0.70,4,3992.50,53.97,1610.07,2112.87,0.00,3517776347456.469238,3517776347447.453613,11,0,0.000000,0.000030,66125593,32450284,0,0,92993,0,1,1 +1773699469.810327,0.70,4,3992.50,53.97,1610.07,2112.86,0.00,1.658406,10.679646,253,762,0.000000,0.000020,66125593,32450286,0,0,92995,0,1,1 +1773699474.809566,0.90,4,3992.50,54.16,1603.60,2120.49,0.00,0.000000,0.000000,253,762,0.000031,0.000055,66125595,32450291,0,0,92998,0,1,1 +1773699479.809447,0.75,4,3992.50,54.16,1603.64,2120.41,0.00,3518520674525.333008,3518520674516.261719,75,0,0.000000,0.000020,66125595,32450293,0,0,93000,0,1,1 +1773699484.809477,0.65,4,3992.50,54.16,1603.64,2120.41,0.00,61841.486915,68652.311146,4234547,3492918,0.000000,0.000030,66125595,32450296,0,0,93003,0,1,1 +1773699489.813683,0.65,4,3992.50,54.16,1603.64,2120.41,0.00,3515479875452.422852,3515479868645.162109,258,2,0.000056,0.000076,66125599,32450302,0,0,93005,0,1,1 +1773699494.813796,0.60,4,3992.50,54.16,1603.64,2120.41,0.00,3518357855134.468262,3518357855136.463379,205,0,0.000033,0.000069,66125602,32450308,0,0,93008,0,1,1 +1773699499.813078,0.85,4,3992.50,53.96,1611.46,2112.59,0.00,1.995396,0.000195,258,2,0.000056,0.000237,66125606,32450315,0,0,93010,0,1,1 +1773699504.814329,0.90,4,3992.50,54.21,1601.68,2122.38,0.00,3517570419730.959473,3517570419733.080566,75,0,0.000101,0.000637,66125614,32450329,0,0,93013,0,1,1 +1773699509.814368,0.70,4,3992.50,54.22,1601.23,2122.80,0.00,61831.645943,68641.562217,4233044,3492188,0.000000,0.000020,66125614,32450331,0,0,93015,0,1,1 +1773699514.809460,0.60,4,3992.50,54.24,1600.49,2123.53,0.00,3521893711044.655273,3521893704225.872070,258,2,0.000000,0.000030,66125614,32450334,0,0,93018,0,1,1 +1773699519.813639,14.93,4,3992.50,54.33,1596.80,2127.22,0.00,61778.381831,68584.811150,4233044,3492230,40.028426,0.018922,66129937,32451614,0,0,93020,0,1,1 +1773699524.810979,0.90,4,3992.50,54.33,1596.82,2127.20,0.00,3520309456022.050293,3520309449208.484375,11,0,0.003086,0.001439,66129993,32451654,0,0,93023,0,1,1 +1773699529.813933,0.70,4,3992.50,54.33,1596.83,2127.19,0.00,0.053484,0.000000,75,0,0.000000,0.000020,66129993,32451656,0,0,93025,0,1,1 +1773699534.809457,1.41,4,3992.50,54.35,1592.77,2127.93,0.00,1.605637,10.684760,253,762,0.000000,0.000030,66129993,32451659,0,0,93028,0,1,1 +1773699539.809557,0.70,4,3992.50,54.18,1599.39,2121.21,0.00,3518367338328.243652,3518367338319.226562,11,0,0.000000,0.000020,66129993,32451661,0,0,93030,0,1,1 +1773699544.810719,0.60,4,3992.50,54.19,1598.93,2121.67,0.00,0.000000,0.000000,11,0,0.000000,0.000030,66129993,32451664,0,0,93033,0,1,1 +1773699549.813445,0.70,4,3992.50,54.20,1598.70,2121.90,0.00,0.000000,0.000000,11,0,0.000000,0.000020,66129993,32451666,0,0,93035,0,1,1 +1773699554.813618,0.65,4,3992.50,54.20,1598.70,2121.90,0.00,0.000000,0.000000,11,0,0.000000,0.000030,66129993,32451669,0,0,93038,0,1,1 +1773699559.814120,0.70,4,3992.50,54.20,1598.70,2121.90,0.00,2.175172,0.000195,258,2,0.000000,0.000020,66129993,32451671,0,0,93040,0,1,1 +1773699564.814409,0.80,4,3992.50,54.26,1596.89,2124.35,0.00,61826.425047,68638.411083,4233044,3492439,0.000056,0.000145,66129997,32451681,0,0,93043,0,1,1 +1773699569.814205,0.70,4,3992.50,54.04,1605.57,2115.67,0.00,3518580837447.825195,3518580830637.341309,11,0,0.000117,0.000804,66130007,32451697,0,0,93045,0,1,1 +1773699574.813878,0.65,4,3992.50,54.08,1603.99,2117.24,0.00,0.180285,0.000000,205,0,0.000000,0.000030,66130007,32451700,0,0,93048,0,1,1 +1773699579.813730,0.60,4,3992.50,53.91,1610.73,2110.51,0.00,61843.544595,68655.099167,4234547,3493222,0.000000,0.000020,66130007,32451702,0,0,93050,0,1,1 +1773699584.812977,15.64,4,3992.50,54.12,1602.21,2119.02,0.00,3518967568766.835938,3518967561952.459473,258,2,40.068262,0.020587,66134284,32453041,0,0,93053,0,1,1 +1773699589.814300,0.85,4,3992.50,54.12,1602.24,2118.99,0.00,3517506459084.599121,3517506459086.593750,205,0,0.003084,0.001428,66134340,32453080,0,0,93055,0,1,1 +1773699594.814194,0.95,4,3992.50,54.02,1606.32,2115.03,0.00,1.995160,0.000195,258,2,0.000000,0.000030,66134340,32453083,0,0,93058,0,1,1 +1773699599.809608,0.70,4,3992.50,54.03,1606.14,2115.21,0.00,3521667593008.467285,3521667593010.590820,75,0,0.000000,0.000020,66134340,32453085,0,0,93060,0,1,1 +1773699604.813454,0.70,4,3992.50,54.04,1605.40,2115.94,0.00,0.000000,0.000000,75,0,0.000000,0.000030,66134340,32453088,0,0,93063,0,1,1 +1773699609.814231,0.60,4,3992.50,54.04,1605.40,2115.94,0.00,3517890887464.105469,0.000000,11,0,0.000000,0.000020,66134340,32453090,0,0,93065,0,1,1 +1773699614.813615,0.65,4,3992.50,54.05,1605.16,2116.18,0.00,1.657919,10.676510,253,762,0.000000,0.000030,66134340,32453093,0,0,93068,0,1,1 +1773699619.811468,0.60,4,3992.50,54.00,1607.18,2114.16,0.00,0.000000,0.000000,253,762,0.000000,0.000020,66134340,32453095,0,0,93070,0,1,1 +1773699624.812473,1.20,4,3992.50,54.07,1611.08,2116.79,0.00,3517730345592.761719,3517730345583.692383,75,0,0.000000,0.000030,66134340,32453098,0,0,93073,0,1,1 +1773699629.813687,0.75,4,3992.50,54.07,1610.62,2117.04,0.00,3517582848511.668457,0.000000,11,0,0.000056,0.000076,66134344,32453104,0,0,93075,0,1,1 +1773699634.814185,0.65,4,3992.50,54.08,1610.38,2117.28,0.00,0.053510,0.000000,75,0,0.000117,0.000814,66134354,32453121,0,0,93078,0,1,1 +1773699639.809455,0.65,4,3992.50,54.08,1610.38,2117.28,0.00,1.605718,10.685305,253,762,0.000000,0.000020,66134354,32453123,0,0,93080,0,1,1 +1773699644.809651,0.70,4,3992.50,54.08,1610.38,2117.28,0.00,3518299169117.481934,3518299169108.284668,205,0,0.000000,0.000030,66134354,32453126,0,0,93083,0,1,1 +1773699649.813567,16.17,4,3992.50,59.01,1417.35,2310.28,0.00,3515683718363.429688,0.000000,11,0,40.030159,0.021338,66138648,32454598,0,0,93085,0,1,1 +1773699654.813819,1.15,4,3992.50,54.26,1605.75,2124.48,0.00,0.000000,0.000000,11,0,0.003223,0.001677,66138715,32454657,0,0,93088,0,1,1 +1773699659.814104,0.70,4,3992.50,54.26,1603.89,2124.31,0.00,0.053513,0.000000,75,0,0.000000,0.000020,66138715,32454659,0,0,93090,0,1,1 +1773699664.812072,0.70,4,3992.50,54.26,1603.89,2124.31,0.00,0.000000,0.000000,75,0,0.000000,0.000030,66138715,32454662,0,0,93093,0,1,1 +1773699669.812602,0.65,4,3992.50,54.26,1603.89,2124.31,0.00,61835.301084,68646.381253,4234547,3493758,0.000000,0.000020,66138715,32454664,0,0,93095,0,1,1 +1773699674.813699,0.60,4,3992.50,54.26,1603.89,2124.31,0.00,3517665293887.356445,3517665287076.921875,205,0,0.000000,0.000030,66138715,32454667,0,0,93098,0,1,1 +1773699679.813558,0.75,4,3992.50,54.26,1603.89,2124.31,0.00,61843.473893,68655.606730,4234547,3493768,0.000308,0.000575,66138722,32454680,0,0,93100,0,1,1 +1773699684.812798,0.95,4,3992.50,54.45,1592.94,2131.93,0.00,3518972380631.177734,3518972373816.205566,258,2,0.001127,0.001232,66138731,32454697,0,0,93103,0,1,1 +1773699689.814397,0.60,4,3992.50,54.45,1592.95,2131.88,0.00,61819.952108,68631.761078,4234547,3493809,0.000008,0.000028,66138732,32454700,0,0,93105,0,1,1 +1773699694.812238,0.70,4,3992.50,54.46,1592.72,2132.11,0.00,3519957725132.730957,3519957718326.995117,253,762,0.000044,0.000086,66138735,32454707,0,0,93108,0,1,1 +1773699699.814283,0.60,4,3992.50,54.39,1595.25,2129.58,0.00,61814.960404,68614.982822,4234547,3493818,0.000113,0.000788,66138744,32454721,0,0,93110,0,1,1 +1773699704.812583,0.65,4,3992.50,54.39,1595.25,2129.58,0.00,3519634132375.760742,3519634125570.642090,253,762,0.000000,0.000030,66138744,32454724,0,0,93113,0,1,1 +1773699709.810651,0.65,4,3992.50,54.39,1595.25,2129.58,0.00,3519797302204.600586,3519797302195.579590,11,0,0.000000,0.000020,66138744,32454726,0,0,93115,0,1,1 +1773699714.816533,9.16,4,3992.50,59.18,1408.64,2317.11,0.00,61759.527421,68562.549804,4233045,3493188,4.207509,0.008239,66139468,32455215,0,0,93118,0,1,1 +1773699719.810001,8.66,4,3992.50,54.38,1596.75,2129.02,0.00,3523039526104.626953,3523039519284.637695,75,0,35.901945,0.019690,66143196,32456638,0,0,93120,0,1,1 +1773699724.810675,0.65,4,3992.50,54.38,1596.75,2129.02,0.00,3517962904459.700684,0.000000,11,0,0.000031,0.000055,66143198,32456643,0,0,93123,0,1,1 +1773699729.813292,0.70,4,3992.50,54.38,1596.76,2129.01,0.00,61809.577197,68618.108523,4234549,3494094,0.000236,0.000577,66143207,32456658,0,0,93125,0,1,1 +1773699734.813398,0.60,4,3992.50,54.38,1596.52,2129.25,0.00,3518362324844.411133,3518362318032.461914,11,0,0.000008,0.000038,66143208,32456662,0,0,93128,0,1,1 +1773699739.814065,0.55,4,3992.50,54.38,1596.52,2129.25,0.00,0.180249,0.000000,205,0,0.000000,0.000020,66143208,32456664,0,0,93130,0,1,1 +1773699744.814313,1.20,4,3992.50,54.34,1597.02,2127.53,0.00,3518263033049.706543,0.000000,75,0,0.002339,0.001861,66143239,32456694,0,0,93133,0,1,1 +1773699749.811604,0.65,4,3992.50,54.34,1597.02,2127.53,0.00,3520344447720.723633,0.000000,11,0,0.001065,0.000421,66143261,32456709,0,0,93135,0,1,1 +1773699754.813740,0.70,4,3992.50,54.34,1597.02,2127.53,0.00,0.053493,0.000000,75,0,0.000000,0.000030,66143261,32456712,0,0,93138,0,1,1 +1773699759.809456,0.75,4,3992.50,54.34,1597.03,2127.53,0.00,0.000000,0.000000,75,0,0.000031,0.000045,66143263,32456716,0,0,93140,0,1,1 +1773699764.811487,0.65,4,3992.50,54.34,1597.03,2127.53,0.00,61816.746654,68626.245027,4234549,3494178,0.000076,0.000767,66143269,32456729,0,0,93143,0,1,1 +1773699769.809456,0.75,4,3992.50,54.36,1596.29,2128.27,0.00,3519867221809.811035,3519867221808.865234,4233046,3493418,0.000000,0.000020,66143269,32456731,0,0,93145,0,1,1 +1773699774.810158,0.65,4,3992.50,54.36,1596.29,2128.26,0.00,3517943151141.608887,3517943144331.118652,205,0,0.000031,0.000055,66143271,32456736,0,0,93148,0,1,1 +1773699779.814535,3.36,4,3992.50,59.26,1404.90,2320.11,0.00,0.000000,0.000000,205,0,0.404991,0.003553,66143453,32456852,0,0,93150,0,1,1 +1773699784.813368,14.24,4,3992.50,54.40,1595.31,2129.70,0.00,0.000000,0.000000,205,0,39.669370,0.023074,66147690,32458552,0,0,93153,0,1,1 +1773699789.810581,0.70,4,3992.50,54.30,1599.09,2125.93,0.00,1.996230,0.000195,258,2,0.000056,0.000076,66147694,32458558,0,0,93155,0,1,1 +1773699794.813467,0.60,4,3992.50,54.30,1599.23,2125.79,0.00,3516407650207.268066,3516407650209.262207,205,0,0.000025,0.000061,66147696,32458563,0,0,93158,0,1,1 +1773699799.811568,0.65,4,3992.50,54.11,1606.63,2118.39,0.00,1.478003,10.679253,253,762,0.000000,0.000020,66147696,32458565,0,0,93160,0,1,1 +1773699804.813916,0.70,4,3992.50,54.10,1607.00,2118.01,0.00,61811.231387,68611.446705,4234550,3494374,0.000000,0.000030,66147696,32458568,0,0,93163,0,1,1 +1773699809.814333,0.90,4,3992.50,54.41,1594.55,2130.24,0.00,3518143590325.588867,3518143583513.729980,11,0,0.000000,0.000020,66147696,32458570,0,0,93165,0,1,1 +1773699814.814174,0.60,4,3992.50,54.37,1595.94,2128.88,0.00,0.000000,0.000000,11,0,0.000000,0.000030,66147696,32458573,0,0,93168,0,1,1 +1773699819.814143,0.65,4,3992.50,54.37,1595.98,2128.83,0.00,2.175404,0.000195,258,2,0.000000,0.000033,66147696,32458576,0,0,93170,0,1,1 +1773699824.809472,0.60,4,3992.50,54.37,1595.99,2128.83,0.00,3521727326287.971680,3521727326290.149414,11,0,0.000031,0.000055,66147698,32458581,0,0,93173,0,1,1 +1773699829.813108,0.70,4,3992.50,54.37,1595.99,2128.83,0.00,2.173810,0.000195,258,2,0.000126,0.000819,66147708,32458597,0,0,93175,0,1,1 +1773699834.809579,0.90,4,3992.50,54.57,1588.12,2136.69,0.00,3520922413236.441406,3520922413238.437988,205,0,0.000016,0.000046,66147710,32458602,0,0,93178,0,1,1 +1773699839.814322,0.70,4,3992.50,54.39,1595.27,2129.52,0.00,3515103164464.486816,0.000000,75,0,0.000000,0.000020,66147710,32458604,0,0,93180,0,1,1 +1773699844.812715,0.95,4,3992.50,54.22,1602.01,2122.76,0.00,61852.014559,68665.872536,4233047,3493735,0.002235,0.000735,66147734,32458623,0,0,93183,0,1,1 +1773699849.813375,15.56,4,3992.50,55.22,1562.70,2162.05,0.00,3517972578369.966797,3517972571557.076660,258,2,40.057978,0.019929,66152132,32459947,0,0,93185,0,1,1 +1773699854.811993,0.55,4,3992.50,54.49,1591.27,2133.50,0.00,3519410434263.993652,3519410434266.116211,75,0,0.000000,0.000030,66152132,32459950,0,0,93188,0,1,1 +1773699859.810946,0.70,4,3992.50,54.04,1609.04,2115.73,0.00,2.122319,0.000195,258,2,0.000000,0.000020,66152132,32459952,0,0,93190,0,1,1 +1773699864.814201,1.00,4,3992.50,54.39,1595.48,2129.58,0.00,3516148388261.968262,3516148388264.142090,11,0,0.000000,0.000030,66152132,32459955,0,0,93193,0,1,1 +1773699869.814340,0.75,4,3992.50,54.21,1602.34,2122.36,0.00,0.000000,0.000000,11,0,0.000000,0.000020,66152132,32459957,0,0,93195,0,1,1 +1773699874.813612,0.65,4,3992.50,54.21,1602.12,2122.57,0.00,0.000000,0.000000,11,0,0.000000,0.000030,66152132,32459960,0,0,93198,0,1,1 +1773699879.813569,0.65,4,3992.50,54.22,1601.89,2122.81,0.00,0.053516,0.000000,75,0,0.000000,0.000020,66152132,32459962,0,0,93200,0,1,1 +1773699884.809502,0.65,4,3992.50,54.22,1601.89,2122.80,0.00,0.126861,0.000000,205,0,0.000000,0.000030,66152132,32459965,0,0,93203,0,1,1 +1773699889.814314,0.75,4,3992.50,54.22,1601.89,2122.80,0.00,1.993199,0.000195,258,2,0.000000,0.000020,66152132,32459967,0,0,93205,0,1,1 +1773699894.809892,0.95,4,3992.50,54.28,1595.93,2125.25,0.00,3521551318825.245605,3521551318827.369629,75,0,0.000377,0.001099,66152158,32460002,0,0,93208,0,1,1 +1773699899.811497,0.60,4,3992.50,54.28,1595.96,2125.22,0.00,3517308589675.587402,0.000000,11,0,0.000016,0.000036,66152160,32460006,0,0,93210,0,1,1 +1773699904.809465,0.70,4,3992.50,54.28,1595.97,2125.18,0.00,0.180347,0.000000,205,0,0.000000,0.000030,66152160,32460009,0,0,93213,0,1,1 +1773699909.809473,0.90,4,3992.50,54.09,1603.61,2117.57,0.00,3518431619502.548828,0.000000,11,0,0.000071,0.000020,66152165,32460011,0,0,93215,0,1,1 +1773699914.809586,0.70,4,3992.50,54.12,1602.40,2118.77,0.00,0.180269,0.000000,205,0,0.002958,0.001861,66152197,32460046,0,0,93218,0,1,1 +1773699919.809487,0.90,4,3992.50,54.15,1601.24,2119.93,0.00,0.000000,0.000000,205,0,0.001550,0.001888,66152221,32460071,0,0,93220,0,1,1 +1773699924.815539,6.42,4,3992.50,59.58,1395.27,2332.78,0.00,3514183508328.402344,0.000000,11,0,0.014672,0.001603,66152303,32460114,0,0,93223,0,1,1 +1773699929.811357,14.72,4,3992.50,59.97,1379.91,2348.12,0.00,61883.968610,68701.921709,4233048,3494252,2.529397,0.062347,66157091,32463767,0,0,93225,0,1,1 +1773699934.813010,0.61,4,3992.50,60.32,1366.36,2361.68,0.00,3517274026036.082031,3517274019235.098633,253,762,5.095963,0.136627,66166568,32471646,0,0,93228,0,1,1 +1773699939.813839,0.60,4,3992.50,60.00,1378.86,2349.18,0.00,0.517590,3517853689113.268066,258,2,6.190221,0.181526,66178473,32481881,0,0,93230,0,1,1 +1773699944.809445,0.76,4,3992.50,60.06,1376.46,2351.59,0.00,3521532367492.942383,10.684391,253,762,3.860470,0.119525,66185820,32488743,0,0,93233,0,1,1 +1773699949.810601,0.81,4,3992.50,60.38,1364.02,2364.02,0.00,3517623620528.448730,3517623620519.433594,11,0,4.188352,0.118180,66193626,32495580,0,0,93235,0,1,1 +1773699954.810100,0.81,4,3992.50,60.21,1368.55,2357.19,0.00,0.000000,0.000000,11,0,6.571428,0.175563,66206020,32505519,0,0,93238,0,1,1 +1773699959.813648,0.75,4,3992.50,59.90,1380.34,2345.29,0.00,0.053478,0.000000,75,0,4.056014,0.133496,66213959,32513069,0,0,93240,0,1,1 +1773699964.813921,0.75,4,3992.50,60.19,1368.91,2356.72,0.00,0.000000,0.000000,75,0,4.570993,0.124474,66222465,32520302,0,0,93243,0,1,1 +1773699969.813809,0.86,4,3992.50,55.01,1572.07,2153.57,0.00,61833.539986,68646.146718,4233048,3494395,3.587365,0.107394,66229146,32526543,0,0,93245,0,1,1 +1773699974.809590,0.70,4,3992.50,54.79,1580.45,2145.19,0.00,3521408268370.734863,3521408261552.528809,75,0,1.123835,0.043703,66231256,32529024,0,0,93248,0,1,1 +1773699979.809474,0.70,4,3992.50,54.53,1590.53,2135.12,0.00,0.126761,0.000000,205,0,0.072103,0.004865,66231419,32529288,0,0,93250,0,1,1 +1773699984.813886,1.25,4,3992.50,54.58,1580.36,2136.75,0.00,61777.504645,68584.148348,4233048,3494458,0.003539,0.001940,66231484,32529347,0,0,93253,0,1,1 +1773699989.814007,0.65,4,3992.50,54.60,1579.37,2137.62,0.00,3518352751619.930664,3518352744807.570801,75,0,0.000602,0.001275,66231497,32529371,0,0,93255,0,1,1 +1773699994.811527,0.60,4,3992.50,54.57,1580.36,2136.63,0.00,0.000000,0.000000,75,0,0.000000,0.000030,66231497,32529374,0,0,93258,0,1,1 +1773699999.812567,0.70,4,3992.50,54.38,1587.76,2129.24,0.00,3517705882051.515137,0.000000,11,0,0.000000,0.000020,66231497,32529376,0,0,93260,0,1,1 +1773700004.814206,0.65,4,3992.50,54.24,1593.33,2123.66,0.00,2.174678,0.000195,258,2,0.000000,0.000030,66231497,32529379,0,0,93263,0,1,1 +1773700009.813599,0.75,4,3992.50,54.25,1593.09,2123.91,0.00,3518864362418.486328,3518864362420.608398,75,0,0.000000,0.000020,66231497,32529381,0,0,93265,0,1,1 +1773700014.809596,0.95,4,3992.50,54.47,1582.74,2132.48,0.00,61891.419359,68710.491183,4234551,3495333,0.000000,0.000030,66231497,32529384,0,0,93268,0,1,1 +1773700019.809606,0.75,4,3992.50,54.48,1582.21,2132.89,0.00,3518430539428.901855,3518430532615.175293,205,0,0.000000,0.000020,66231497,32529386,0,0,93270,0,1,1 +1773700024.814300,0.55,4,3992.50,54.48,1582.21,2132.89,0.00,1.476056,10.665182,253,762,0.000025,0.000704,66231499,32529395,0,0,93273,0,1,1 +1773700029.814269,0.65,4,3992.50,54.48,1582.21,2132.89,0.00,3518459290732.050781,3518459290723.033691,11,0,0.000372,0.000693,66231519,32529418,0,0,93275,0,1,1 +1773700034.810376,0.70,4,3992.50,54.48,1582.21,2132.89,0.00,1.659006,10.683512,253,762,0.000071,0.000088,66231524,32529425,0,0,93278,0,1,1 +1773700039.809546,0.70,4,3992.50,54.29,1589.61,2125.49,0.00,3519021214381.593750,3519021214372.394531,205,0,0.000000,0.000020,66231524,32529427,0,0,93280,0,1,1 +1773700044.809591,1.25,4,3992.50,54.16,1600.54,2120.52,0.00,3518406170911.142090,0.000000,11,0,0.003206,0.002929,66231572,32529470,0,0,93283,0,1,1 +1773700049.809443,0.95,4,3992.50,54.18,1599.14,2121.21,0.00,0.000000,0.000000,11,0,0.003489,0.001945,66231631,32529526,0,0,93285,0,1,1 +1773700054.809653,1.75,4,3992.50,54.39,1590.85,2129.50,0.00,1.657646,10.674749,253,762,0.001499,0.001393,66231654,32529549,0,0,93288,0,1,1 +1773700059.809489,11.23,4,3992.50,59.90,1375.06,2345.29,0.00,3518551834855.797363,3518551834846.780273,11,0,0.080779,0.002329,66231868,32529641,0,0,93290,0,1,1 +1773700064.812229,3.32,4,3992.50,59.69,1383.21,2337.15,0.00,0.000000,0.000000,11,0,4.872668,0.111462,66241089,32536004,0,0,93293,0,1,1 +1773700069.809546,0.71,4,3992.50,59.64,1385.21,2335.14,0.00,61875.125255,68692.568579,4234551,3495574,4.477572,0.137662,66249771,32543838,0,0,93295,0,1,1 +1773700074.809455,0.96,4,3992.50,59.94,1373.54,2346.74,0.00,3518501537026.802734,3518501530212.892578,11,0,4.341527,0.121162,66257859,32550878,0,0,93298,0,1,1 +1773700079.809497,0.66,4,3992.50,59.79,1379.17,2341.10,0.00,61831.674934,68644.550164,4233048,3494883,6.480045,0.177258,66270019,32560917,0,0,93300,0,1,1 +1773700084.812237,0.70,4,3992.50,59.89,1375.40,2344.88,0.00,3516510014463.532227,3516510007654.330566,11,0,3.796065,0.126682,66277540,32568078,0,0,93303,0,1,1 +1773700089.813855,0.65,4,3992.50,59.90,1375.11,2345.16,0.00,2.174687,0.000195,258,2,2.902436,0.087071,66283046,32573198,0,0,93305,0,1,1 +1773700094.809589,0.90,4,3992.50,60.22,1362.57,2357.70,0.00,3521441649370.354492,3521441649372.531738,11,0,4.208715,0.113660,66290880,32579844,0,0,93308,0,1,1 +1773700099.814009,0.65,4,3992.50,59.82,1378.34,2341.93,0.00,61777.585546,68584.543519,4233048,3494944,6.445170,0.181489,66303258,32590053,0,0,93310,0,1,1 +1773700104.813664,1.16,4,3992.50,54.60,1584.51,2137.58,0.00,3518679908519.038574,3518679901705.539062,75,0,2.773879,0.093604,66308703,32595432,0,0,93313,0,1,1 +1773700109.810337,0.70,4,3992.50,54.14,1602.32,2119.69,0.00,61883.047678,68701.638827,4234551,3495770,1.330986,0.043110,66311251,32598066,0,0,93315,0,1,1 +1773700114.809841,0.80,4,3992.50,54.24,1598.57,2123.44,0.00,3518786254974.474609,3518786248159.797852,11,0,0.724042,0.024738,66312630,32599524,0,0,93318,0,1,1 +1773700119.813557,0.70,4,3992.50,54.26,1597.59,2124.43,0.00,1.656484,10.667269,253,762,0.107853,0.003976,66312856,32599762,0,0,93320,0,1,1 +1773700124.813879,0.90,4,3992.50,54.27,1597.37,2124.63,0.00,61826.548250,68630.158124,4233048,3495042,0.001568,0.000863,66312889,32599789,0,0,93323,0,1,1 +1773700129.813150,0.75,4,3992.50,54.27,1597.37,2124.64,0.00,3518950291643.169434,3518950284829.108887,11,0,0.001515,0.000831,66312918,32599821,0,0,93325,0,1,1 +1773700134.810652,0.90,4,3992.50,54.33,1592.91,2127.07,0.00,61872.847644,68690.355021,4234551,3495849,0.000000,0.000030,66312918,32599824,0,0,93328,0,1,1 +1773700139.814161,0.80,4,3992.50,54.33,1592.91,2127.07,0.00,3515969364091.732422,3515969357280.237793,258,2,0.000000,0.000020,66312918,32599826,0,0,93330,0,1,1 +1773700144.812090,0.80,4,3992.50,54.33,1592.91,2127.07,0.00,0.000000,0.000000,258,2,0.000000,0.000030,66312918,32599829,0,0,93333,0,1,1 +1773700149.813980,0.75,4,3992.50,54.33,1592.91,2127.07,0.00,61816.378005,68630.116259,4234551,3495888,0.000000,0.000020,66312918,32599831,0,0,93335,0,1,1 +1773700154.814167,0.70,4,3992.50,54.33,1592.92,2127.07,0.00,3518305267590.285156,3518305260776.400879,11,0,0.000000,0.000674,66312918,32599838,0,0,93338,0,1,1 +1773700159.809640,0.70,4,3992.50,54.33,1592.68,2127.30,0.00,0.000000,0.000000,11,0,0.000000,0.000020,66312918,32599840,0,0,93340,0,1,1 +1773700164.810875,0.90,4,3992.50,54.27,1598.46,2124.82,0.00,61826.652253,68639.177340,4234551,3495945,0.000027,0.000061,66312920,32599845,0,0,93343,0,1,1 +1773700169.810334,0.70,4,3992.50,54.27,1598.33,2124.81,0.00,3518818064627.880859,3518818064626.942383,4233048,3495195,0.000063,0.000090,66312925,32599852,0,0,93345,0,1,1 +1773700174.809599,0.85,4,3992.50,54.29,1597.75,2125.40,0.00,3518954368594.604004,3518954361780.152344,205,0,0.000053,0.000105,66312929,32599860,0,0,93348,0,1,1 +1773700179.813647,0.75,4,3992.50,54.31,1596.74,2126.40,0.00,3515591303270.227539,0.000000,11,0,0.000000,0.000020,66312929,32599862,0,0,93350,0,1,1 +1773700184.813488,0.65,4,3992.50,54.31,1596.74,2126.40,0.00,0.000000,0.000000,11,0,0.000000,0.000030,66312929,32599865,0,0,93353,0,1,1 +1773700189.814152,0.90,4,3992.50,54.13,1603.93,2119.19,0.00,1.657495,10.673780,253,762,0.000563,0.000107,66312940,32599872,0,0,93355,0,1,1 +1773700194.813879,1.20,4,3992.50,54.20,1599.32,2122.24,0.00,3518629250036.382812,3518629250027.184570,205,0,0.001937,0.001380,66312968,32599905,0,0,93358,0,1,1 +1773700199.810554,1.10,4,3992.50,54.32,1594.73,2126.86,0.00,3520778339173.215820,0.000000,75,0,0.001915,0.002004,66313000,32599934,0,0,93360,0,1,1 +1773700204.813225,15.08,4,3992.50,59.73,1382.96,2338.62,0.00,61799.188648,68609.074346,4233051,3495462,0.391166,0.006510,66313809,32600327,0,0,93363,0,1,1 +1773700209.814063,0.91,4,3992.50,59.85,1378.30,2343.28,0.00,3517847716187.565430,3517847709375.236328,11,0,3.592436,0.099038,66320547,32606108,0,0,93365,0,1,1 +1773700214.813788,0.91,4,3992.50,59.85,1378.33,2343.26,0.00,0.000000,0.000000,11,0,6.085541,0.160184,66331827,32615194,0,0,93368,0,1,1 +1773700219.813543,0.76,4,3992.50,59.51,1391.51,2330.07,0.00,2.175497,0.000195,258,2,4.187930,0.143605,66340206,32623235,0,0,93370,0,1,1 +1773700224.813818,1.41,4,3992.50,59.76,1395.77,2339.75,0.00,61836.401605,68652.771932,4234554,3496358,2.665657,0.082268,66345354,32628074,0,0,93373,0,1,1 +1773700229.809556,0.71,4,3992.50,60.01,1385.75,2349.55,0.00,3521439080893.343262,3521439074081.983887,253,762,3.468423,0.093975,66351858,32633599,0,0,93375,0,1,1 +1773700234.813679,0.65,4,3992.50,59.73,1396.60,2338.71,0.00,3515538059250.618652,3515538059241.608887,11,0,6.207790,0.163691,66363514,32642888,0,0,93378,0,1,1 +1773700239.811620,0.71,4,3992.50,59.76,1395.42,2339.89,0.00,2.176287,0.000195,258,2,5.144275,0.139643,66373213,32650856,0,0,93380,0,1,1 +1773700244.813979,0.65,4,3992.50,59.99,1386.58,2348.73,0.00,3516777993023.915527,3516777993026.090332,11,0,5.881316,0.153850,66384055,32659711,0,0,93383,0,1,1 +1773700249.809927,0.70,4,3992.50,54.28,1610.32,2125.00,0.00,0.180420,0.000000,205,0,3.786438,0.120608,66391061,32666564,0,0,93385,0,1,1 +1773700254.814253,1.05,4,3992.50,53.90,1614.08,2110.25,0.00,3515395528369.837891,0.000000,11,0,0.485282,0.020534,66391996,32667711,0,0,93388,0,1,1 +1773700259.814417,0.90,4,3992.50,53.84,1616.21,2107.84,0.00,0.000000,0.000000,11,0,0.002162,0.000903,66392034,32667746,0,0,93390,0,1,1 +1773700264.814444,0.65,4,3992.50,53.84,1615.98,2108.08,0.00,61841.652945,68656.382373,4234554,3496565,0.000056,0.000208,66392038,32667753,0,0,93393,0,1,1 +1773700269.814244,0.65,4,3992.50,53.69,1622.13,2101.93,0.00,3518577835970.731934,3518577829153.517578,258,2,0.000000,0.000020,66392038,32667755,0,0,93395,0,1,1 +1773700274.813875,0.60,4,3992.50,53.69,1622.14,2101.93,0.00,3518696909121.359863,3518696909123.535156,11,0,0.000000,0.000030,66392038,32667758,0,0,93398,0,1,1 +1773700279.814297,0.65,4,3992.50,53.69,1622.13,2101.93,0.00,61836.769128,68650.968969,4234554,3496576,0.000000,0.000020,66392038,32667760,0,0,93400,0,1,1 +1773700284.813749,0.85,4,3992.50,53.73,1620.04,2103.84,0.00,3518822547488.438477,3518822540672.737305,205,0,0.000348,0.001228,66392048,32667778,0,0,93403,0,1,1 +1773700289.810203,0.70,4,3992.50,53.69,1621.34,2102.19,0.00,3520934528875.417480,0.000000,11,0,0.001194,0.001258,66392062,32667797,0,0,93405,0,1,1 +1773700294.809551,0.75,4,3992.50,53.67,1622.09,2101.45,0.00,0.000000,0.000000,11,0,0.000000,0.000042,66392062,32667801,0,0,93408,0,1,1 +1773700299.813418,0.60,4,3992.50,53.68,1621.96,2101.57,0.00,61794.190898,68603.802590,4234554,3496648,0.000055,0.000082,66392066,32667807,0,0,93410,0,1,1 +1773700304.813452,0.55,4,3992.50,53.68,1621.96,2101.57,0.00,3518413335031.630371,3518413335030.683594,4233051,3495887,0.000080,0.000123,66392072,32667816,0,0,93413,0,1,1 +1773700309.813793,0.70,4,3992.50,53.68,1621.96,2101.57,0.00,3518196925268.577637,3518196918455.058105,75,0,0.000000,0.000020,66392072,32667818,0,0,93415,0,1,1 +1773700314.811880,0.80,4,3992.50,53.97,1602.55,2112.89,0.00,3519784259181.366211,0.000000,11,0,0.000000,0.000030,66392072,32667821,0,0,93418,0,1,1 +1773700319.812559,0.90,4,3992.50,53.72,1611.45,2103.45,0.00,2.175095,0.000195,258,2,0.000984,0.000377,66392091,32667837,0,0,93420,0,1,1 +1773700324.813650,0.95,4,3992.50,53.52,1619.34,2095.55,0.00,0.000000,0.000000,258,2,0.002330,0.002122,66392119,32667868,0,0,93423,0,1,1 +1773700329.814211,1.05,4,3992.50,53.44,1622.56,2092.32,0.00,3518042744116.742676,3518042744118.864258,75,0,0.001717,0.001428,66392166,32667909,0,0,93425,0,1,1 +1773700334.813815,13.06,4,3992.50,59.32,1392.41,2322.48,0.00,0.126768,0.000000,205,0,0.618239,0.012044,66393391,32668611,0,0,93428,0,1,1 +1773700339.813875,0.81,4,3992.50,59.25,1395.19,2319.70,0.00,61831.325706,68645.539420,4233051,3496091,4.911906,0.116961,66402373,32675403,0,0,93430,0,1,1 +1773700344.813492,1.01,4,3992.50,59.28,1396.24,2320.98,0.00,3518707096629.464355,3518707089814.825195,11,0,6.281825,0.167850,66414188,32684899,0,0,93433,0,1,1 +1773700349.809464,0.81,4,3992.50,59.32,1394.71,2322.56,0.00,0.053559,0.000000,75,0,4.745095,0.137493,66423304,32692666,0,0,93435,0,1,1 +1773700354.809953,0.86,4,3992.50,59.31,1395.21,2322.07,0.00,2.121667,0.000195,258,2,4.945019,0.131269,66432527,32700266,0,0,93438,0,1,1 +1773700359.810573,0.71,4,3992.50,59.37,1392.77,2324.51,0.00,61822.422116,68637.986878,4233051,3496194,6.621410,0.172667,66444876,32710045,0,0,93440,0,1,1 +1773700364.813659,0.60,4,3992.50,59.39,1392.02,2325.25,0.00,0.000000,0.002635,4233051,3496201,5.286937,0.144535,66454855,32718280,0,0,93443,0,1,1 +1773700369.813916,0.65,4,3992.50,59.49,1387.95,2329.33,0.00,3518256072262.200195,3518256065448.133789,205,0,4.647753,0.129252,66463492,32725740,0,0,93445,0,1,1 +1773700374.813779,1.11,4,3992.50,59.34,1392.78,2323.19,0.00,1.995172,0.000195,258,2,2.627739,0.085975,66468416,32730694,0,0,93448,0,1,1 +1773700379.809808,0.70,4,3992.50,53.45,1623.31,2092.74,0.00,0.000000,0.000000,258,2,0.539008,0.016436,66469444,32731653,0,0,93450,0,1,1 +1773700384.812547,0.75,4,3992.50,53.31,1628.97,2087.07,0.00,0.000000,0.000000,258,2,0.413969,0.013947,66470236,32732429,0,0,93453,0,1,1 +1773700389.810984,0.95,4,3992.50,53.34,1627.84,2088.19,0.00,3519537999999.278320,3519538000001.400879,75,0,0.001614,0.000887,66470272,32732458,0,0,93455,0,1,1 +1773700394.813891,0.75,4,3992.50,53.35,1627.39,2088.66,0.00,2.120642,0.000195,258,2,0.001517,0.000890,66470301,32732493,0,0,93458,0,1,1 +1773700399.810036,0.65,4,3992.50,53.35,1627.39,2088.66,0.00,61887.523514,68710.286548,4234554,3497105,0.000033,0.000059,66470304,32732498,0,0,93460,0,1,1 +1773700404.813696,1.00,4,3992.50,53.35,1624.41,2088.89,0.00,3515863125283.867676,3515863118473.525879,11,0,0.000000,0.000030,66470304,32732501,0,0,93463,0,1,1 +1773700409.813861,0.60,4,3992.50,53.35,1624.46,2088.84,0.00,2.175319,0.000195,258,2,0.000000,0.000020,66470304,32732503,0,0,93465,0,1,1 +1773700414.809470,0.65,4,3992.50,53.35,1624.46,2088.84,0.00,3521530308403.675781,3521530308405.672852,205,0,0.000000,0.000674,66470304,32732510,0,0,93468,0,1,1 +1773700419.814200,0.55,4,3992.50,53.35,1624.39,2088.91,0.00,61773.631096,68581.844257,4233051,3496409,0.000000,0.000020,66470304,32732512,0,0,93470,0,1,1 +1773700424.813890,0.75,4,3992.50,53.35,1624.39,2088.91,0.00,9.726775,10.681521,4234554,3497177,0.000000,0.000030,66470304,32732515,0,0,93473,0,1,1 +1773700429.814255,0.65,4,3992.50,53.35,1624.39,2088.91,0.00,3518180755398.506836,3518180748592.591797,253,762,0.000025,0.000051,66470306,32732519,0,0,93475,0,1,1 +1773700434.813562,0.85,4,3992.50,53.47,1619.96,2093.34,0.00,61839.175916,68645.613470,4233051,3496434,0.000054,0.000108,66470311,32732528,0,0,93478,0,1,1 +1773700439.813782,0.80,4,3992.50,53.38,1623.47,2089.80,0.00,3518281757211.540527,3518281750397.330078,11,0,0.000053,0.000095,66470315,32732535,0,0,93480,0,1,1 +1773700444.809572,0.50,4,3992.50,53.38,1623.28,2090.01,0.00,61894.099211,68715.319469,4234554,3497212,0.000000,0.000030,66470315,32732538,0,0,93483,0,1,1 +1773700449.809910,0.60,4,3992.50,53.38,1623.50,2089.79,0.00,3518199379387.118652,3518199372572.102051,11,0,0.000000,0.000020,66470315,32732540,0,0,93485,0,1,1 +1773700454.812553,0.95,4,3992.50,53.34,1624.87,2088.42,0.00,0.180178,0.000000,205,0,0.002331,0.000870,66470347,32732569,0,0,93488,0,1,1 +1773700459.813626,16.88,4,3992.50,54.50,1579.56,2133.73,0.00,61828.543255,68642.850325,4234554,3497360,40.060567,0.031514,66474967,32734801,0,0,93490,0,1,1 +1773700464.814183,1.00,4,3992.50,53.91,1601.27,2110.78,0.00,0.000000,0.112683,4234554,3497430,0.000000,0.000030,66474967,32734804,0,0,93493,0,1,1 +1773700469.810263,0.70,4,3992.50,53.57,1613.62,2097.46,0.00,3521198346838.625000,3521198340017.574707,11,0,0.000000,0.000020,66474967,32734806,0,0,93495,0,1,1 +1773700474.812935,0.65,4,3992.50,53.56,1614.25,2096.82,0.00,0.053487,0.000000,75,0,0.000000,0.000030,66474967,32734809,0,0,93498,0,1,1 +1773700479.809464,0.75,4,3992.50,53.37,1621.37,2089.70,0.00,61884.885497,68705.420285,4234554,3497477,0.000000,0.000664,66474967,32734815,0,0,93500,0,1,1 +1773700484.813998,0.65,4,3992.50,53.38,1621.18,2089.89,0.00,3515249584065.892578,3515249584064.946289,4233051,3496716,0.000000,0.000030,66474967,32734818,0,0,93503,0,1,1 +1773700489.814370,0.60,4,3992.50,53.38,1621.19,2089.89,0.00,3518175465160.023438,3518175458345.549805,205,0,0.000000,0.000020,66474967,32734820,0,0,93505,0,1,1 +1773700494.809569,0.95,4,3992.50,53.72,1608.07,2103.15,0.00,1.478861,10.685455,253,762,0.000000,0.000030,66474967,32734823,0,0,93508,0,1,1 +1773700499.812486,0.75,4,3992.50,53.57,1613.60,2097.48,0.00,3516385703748.960938,3516385703739.948730,11,0,0.000000,0.000020,66474967,32734825,0,0,93510,0,1,1 +1773700504.813876,0.65,4,3992.50,53.55,1614.61,2096.45,0.00,0.000000,0.000000,11,0,0.000157,0.000210,66474979,32734840,0,0,93513,0,1,1 +1773700509.811681,0.70,4,3992.50,53.55,1614.63,2096.45,0.00,61859.442275,68677.321531,4233053,3496800,0.000016,0.000036,66474981,32734844,0,0,93515,0,1,1 +1773700514.809880,0.55,4,3992.50,53.55,1614.63,2096.44,0.00,9.729675,10.682362,4234556,3497567,0.000000,0.000030,66474981,32734847,0,0,93518,0,1,1 +1773700519.813496,0.90,4,3992.50,53.38,1621.18,2089.89,0.00,0.000000,0.004684,4234556,3497572,0.002876,0.001329,66475006,32734866,0,0,93520,0,1,1 +1773700524.809566,16.78,4,3992.50,53.38,1620.42,2089.90,0.00,0.000000,0.154711,4234556,3497728,40.094737,0.032997,66479438,32737215,0,0,93523,0,1,1 +1773700529.809469,0.65,4,3992.50,53.39,1620.07,2090.14,0.00,3518505994258.259277,3518505994257.336914,4233053,3496979,0.000627,0.000281,66479451,32737225,0,0,93525,0,1,1 +1773700534.809457,0.75,4,3992.50,53.41,1619.10,2091.11,0.00,3518444837667.701660,3518444830852.558105,75,0,0.000000,0.000030,66479451,32737228,0,0,93528,0,1,1 +1773700539.810883,0.60,4,3992.50,53.41,1619.10,2091.11,0.00,1.603742,10.672152,253,762,0.000000,0.000020,66479451,32737230,0,0,93530,0,1,1 +1773700544.813600,0.55,4,3992.50,53.41,1619.10,2091.11,0.00,0.000000,0.000000,253,762,0.000000,0.000191,66479451,32737234,0,0,93533,0,1,1 +1773700549.809699,0.70,4,3992.50,53.41,1619.10,2091.11,0.00,3521184889452.432617,3521184889443.408203,11,0,0.000000,0.000503,66479451,32737239,0,0,93535,0,1,1 +1773700554.813579,0.60,4,3992.50,53.41,1619.11,2091.10,0.00,2.173704,0.000195,258,2,0.000000,0.000030,66479451,32737242,0,0,93538,0,1,1 +1773700559.809581,0.90,4,3992.50,53.56,1613.09,2097.12,0.00,3521253063403.248535,3521253063405.425293,11,0,0.000000,0.000020,66479451,32737244,0,0,93540,0,1,1 +1773700564.814283,0.55,4,3992.50,53.56,1613.09,2097.12,0.00,0.180104,0.000000,205,0,0.000000,0.000030,66479451,32737247,0,0,93543,0,1,1 +1773700569.814162,0.65,4,3992.50,53.58,1612.35,2097.86,0.00,0.000000,0.000000,205,0,0.000132,0.000169,66479461,32737259,0,0,93545,0,1,1 +1773700574.809470,0.60,4,3992.50,53.58,1612.35,2097.86,0.00,61890.172754,68711.968926,4233053,3497101,0.000041,0.000077,66479465,32737266,0,0,93548,0,1,1 +1773700579.814050,0.70,4,3992.50,53.58,1612.36,2097.86,0.00,3515217063393.910156,3515217056584.932617,11,0,0.000000,0.000020,66479465,32737268,0,0,93550,0,1,1 +1773700584.814229,1.05,4,3992.50,53.58,1614.03,2097.83,0.00,0.000000,0.000000,11,0,0.000308,0.000584,66479472,32737282,0,0,93553,0,1,1 +1773700589.810795,18.02,4,3992.50,54.97,1559.52,2152.36,0.00,61874.787402,68694.733752,4233054,3497181,40.095231,0.023361,66484068,32738837,0,0,93555,0,1,1 +1773700594.814388,0.65,4,3992.50,53.86,1603.14,2108.75,0.00,3515910879295.963867,3515910872485.541504,75,0,0.001134,0.001239,66484078,32738855,0,0,93558,0,1,1 +1773700599.814333,0.75,4,3992.50,53.37,1622.24,2089.64,0.00,3518475404044.742676,0.000000,11,0,0.000000,0.000020,66484078,32738857,0,0,93560,0,1,1 +1773700604.810450,0.70,4,3992.50,53.18,1629.64,2082.25,0.00,61880.354863,68701.022082,4233054,3497285,0.000000,0.000030,66484078,32738860,0,0,93563,0,1,1 +1773700609.813723,0.65,4,3992.50,53.18,1629.64,2082.25,0.00,3516135421513.549316,3516135414702.638672,11,0,0.000000,0.000342,66484078,32738864,0,0,93565,0,1,1 +1773700614.809577,0.65,4,3992.50,53.17,1630.30,2081.59,0.00,2.177196,0.000195,258,2,0.000000,0.000352,66484078,32738869,0,0,93568,0,1,1 +1773700619.811348,0.95,4,3992.50,53.33,1626.57,2088.11,0.00,3517191479451.258301,3517191479453.433105,11,0,0.000000,0.000020,66484078,32738871,0,0,93570,0,1,1 +1773700624.814414,0.65,4,3992.50,53.39,1624.54,2090.16,0.00,61804.115951,68616.382797,4234557,3498120,0.000000,0.000030,66484078,32738874,0,0,93573,0,1,1 +1773700629.810918,0.65,4,3992.50,53.40,1624.09,2090.61,0.00,3520898972982.509277,3520898966161.295410,11,0,0.000031,0.000045,66484080,32738878,0,0,93575,0,1,1 +1773700634.813661,0.65,4,3992.50,53.40,1623.84,2090.86,0.00,0.180175,0.000000,205,0,0.000369,0.000750,66484100,32738905,0,0,93578,0,1,1 +1773700639.809592,0.65,4,3992.50,53.40,1623.84,2090.85,0.00,3521303217995.758789,0.000000,75,0,0.000031,0.000045,66484102,32738909,0,0,93580,0,1,1 +1773700644.809462,0.85,4,3992.50,53.45,1624.19,2092.82,0.00,61843.571545,68660.285805,4234557,3498148,0.000000,0.000030,66484102,32738912,0,0,93583,0,1,1 +1773700649.810671,0.90,4,3992.50,53.50,1620.08,2094.57,0.00,3517586304823.746582,3517586298008.730957,205,0,0.003008,0.002781,66484136,32738944,0,0,93585,0,1,1 +1773700654.814261,15.10,4,3992.50,53.95,1602.53,2112.09,0.00,61797.460394,68609.264001,4234557,3498214,40.038971,0.024702,66488665,32740589,0,0,93588,0,1,1 +1773700659.811089,0.70,4,3992.50,53.78,1609.16,2105.48,0.00,3520671181898.315430,3520671175077.472168,11,0,0.000008,0.000028,66488666,32740592,0,0,93590,0,1,1 +1773700664.809464,0.80,4,3992.50,53.81,1607.94,2106.70,0.00,0.000000,0.000000,11,0,0.000000,0.000030,66488666,32740595,0,0,93593,0,1,1 +1773700669.811240,0.60,4,3992.50,53.81,1607.94,2106.70,0.00,0.000000,0.000000,11,0,0.000000,0.000020,66488666,32740597,0,0,93595,0,1,1 +1773700674.814240,0.90,4,3992.50,53.81,1602.59,2106.70,0.00,0.180165,0.000000,205,0,0.000000,0.000352,66488666,32740602,0,0,93598,0,1,1 +1773700679.813891,0.80,4,3992.50,53.77,1603.97,2105.12,0.00,61846.148248,68663.504663,4234557,3498348,0.000031,0.000367,66488668,32740608,0,0,93600,0,1,1 +1773700684.814339,0.60,4,3992.50,53.79,1603.22,2105.88,0.00,3518121563797.224121,3518121556980.954590,205,0,0.000008,0.000038,66488669,32740612,0,0,93603,0,1,1 +1773700689.809983,0.70,4,3992.50,53.79,1602.97,2106.12,0.00,0.000000,0.000000,205,0,0.000000,0.000020,66488669,32740614,0,0,93605,0,1,1 +1773700694.814268,0.70,4,3992.50,53.79,1602.98,2106.12,0.00,3515424452160.987305,0.000000,75,0,0.000056,0.000086,66488673,32740621,0,0,93608,0,1,1 +1773700699.809452,0.70,4,3992.50,53.60,1610.61,2098.49,0.00,0.126880,0.000000,205,0,0.000182,0.000232,66488687,32740637,0,0,93610,0,1,1 +1773700704.814268,1.00,4,3992.50,53.63,1609.97,2099.71,0.00,3515051052643.445801,0.000000,11,0,0.000000,0.000030,66488687,32740640,0,0,93613,0,1,1 +1773700709.809597,0.65,4,3992.50,53.63,1610.01,2099.68,0.00,0.000000,0.000000,11,0,0.000000,0.000020,66488687,32740642,0,0,93615,0,1,1 +1773700714.809494,0.70,4,3992.50,53.63,1610.02,2099.68,0.00,1.657749,10.675416,253,762,0.000000,0.000030,66488687,32740645,0,0,93618,0,1,1 +1773700719.813609,18.50,4,3992.50,54.88,1561.18,2148.51,0.00,0.517250,3515543582527.464844,258,2,40.032339,0.023160,66493092,32742187,0,0,93620,0,1,1 +1773700724.814076,0.75,4,3992.50,53.92,1598.55,2111.14,0.00,3518108620350.370605,3518108620352.545898,11,0,0.000000,0.000030,66493092,32742190,0,0,93623,0,1,1 +1773700729.813754,0.65,4,3992.50,53.71,1606.65,2103.04,0.00,61836.273966,68652.733844,4233054,3497867,0.000000,0.000020,66493092,32742192,0,0,93625,0,1,1 +1773700734.810051,1.00,4,3992.50,53.71,1601.54,2102.73,0.00,3521044959001.009766,3521044952179.883301,75,0,0.000000,0.000030,66493092,32742195,0,0,93628,0,1,1 +1773700739.814280,0.70,4,3992.50,53.49,1607.71,2094.37,0.00,2.120082,0.000195,258,2,0.000000,0.000020,66493092,32742197,0,0,93630,0,1,1 +1773700744.813664,0.75,4,3992.50,53.49,1607.72,2094.37,0.00,3518870808366.333984,10.676316,253,762,0.000000,0.000674,66493092,32742204,0,0,93633,0,1,1 +1773700749.810661,0.60,4,3992.50,53.30,1615.32,2086.77,0.00,3520551989675.421875,3520551989666.399414,11,0,0.000000,0.000020,66493092,32742206,0,0,93635,0,1,1 +1773700754.810146,0.75,4,3992.50,53.32,1614.39,2087.70,0.00,0.000000,0.000000,11,0,0.000000,0.000030,66493092,32742209,0,0,93638,0,1,1 +1773700759.814042,0.65,4,3992.50,53.29,1615.77,2086.32,0.00,2.173697,0.000195,258,2,0.000000,0.000020,66493092,32742211,0,0,93640,0,1,1 +1773700764.813419,0.90,4,3992.50,53.52,1606.52,2095.42,0.00,3518875997234.825195,3518875997237.000977,11,0,0.000157,0.000210,66493104,32742226,0,0,93643,0,1,1 +1773700769.810530,0.55,4,3992.50,53.46,1608.92,2092.92,0.00,61868.038185,68688.166844,4233054,3497976,0.000016,0.000036,66493106,32742230,0,0,93645,0,1,1 +1773700774.811302,0.60,4,3992.50,53.47,1608.46,2093.39,0.00,3517893923018.022461,3517893916202.706543,205,0,0.000000,0.000030,66493106,32742233,0,0,93648,0,1,1 +1773700779.813617,0.65,4,3992.50,53.43,1609.99,2091.85,0.00,1.476758,10.670254,253,762,0.000000,0.000020,66493106,32742235,0,0,93650,0,1,1 +1773700784.813768,17.80,4,3992.50,53.20,1619.10,2082.72,0.00,0.000000,0.000000,253,762,40.068236,0.032110,66497587,32744474,0,0,93653,0,1,1 +1773700789.810383,0.65,4,3992.50,53.20,1619.12,2082.72,0.00,3520821006093.810059,3520821006084.605957,205,0,0.000000,0.000020,66497587,32744476,0,0,93655,0,1,1 +1773700794.814045,0.90,4,3992.50,53.66,1600.93,2100.91,0.00,61786.862667,68598.441389,4233054,3498159,0.000000,0.000030,66497587,32744479,0,0,93658,0,1,1 +1773700799.813632,0.75,4,3992.50,53.58,1604.06,2097.78,0.00,3518727876313.383789,3518727869505.451660,253,762,0.000000,0.000020,66497587,32744481,0,0,93660,0,1,1 +1773700804.814300,0.75,4,3992.50,53.58,1603.94,2097.90,0.00,3517966910178.802246,3517966910169.732422,75,0,0.000000,0.000030,66497587,32744484,0,0,93663,0,1,1 +1773700809.814248,0.70,4,3992.50,53.58,1603.94,2097.90,0.00,2.121897,0.000195,258,2,0.000000,0.000664,66497587,32744490,0,0,93665,0,1,1 +1773700814.814194,0.65,4,3992.50,53.59,1603.69,2098.15,0.00,61830.775856,68649.514507,4233054,3498259,0.000000,0.000030,66497587,32744493,0,0,93668,0,1,1 +1773700819.813622,0.70,4,3992.50,53.59,1603.70,2098.14,0.00,3518839623481.828613,3518839616664.558105,11,0,0.000000,0.000020,66497587,32744495,0,0,93670,0,1,1 +1773700824.809555,1.30,4,3992.50,53.79,1597.27,2106.02,0.00,61892.366816,68715.390825,4234557,3499039,0.000000,0.000030,66497587,32744498,0,0,93673,0,1,1 +1773700829.813821,0.65,4,3992.50,53.79,1597.37,2105.98,0.00,3515437549329.917480,3515437542518.255859,11,0,0.000157,0.000200,66497599,32744512,0,0,93675,0,1,1 +1773700834.809443,0.60,4,3992.50,53.79,1597.37,2105.98,0.00,0.180431,0.000000,205,0,0.000016,0.000046,66497601,32744517,0,0,93678,0,1,1 +1773700839.813913,0.70,4,3992.50,53.79,1597.37,2105.98,0.00,3515294825672.274902,0.000000,75,0,0.000000,0.000020,66497601,32744519,0,0,93680,0,1,1 +1773700844.814428,1.45,4,3992.50,53.79,1597.37,2105.98,0.00,0.000000,0.000000,75,0,0.000000,0.000030,66497601,32744522,0,0,93683,0,1,1 +1773700849.813441,16.32,4,3992.50,55.15,1544.05,2159.29,0.00,1.604516,10.677303,253,762,40.074170,0.025725,66502074,32746217,0,0,93685,0,1,1 +1773700854.809458,1.00,4,3992.50,54.67,1558.17,2140.31,0.00,3521242121196.835449,3521242121187.757812,75,0,0.000759,0.000474,66502090,32746232,0,0,93688,0,1,1 +1773700859.813752,0.75,4,3992.50,54.18,1577.29,2121.20,0.00,0.000000,0.000000,75,0,0.000000,0.000020,66502090,32746234,0,0,93690,0,1,1 +1773700864.809577,0.55,4,3992.50,53.86,1589.59,2108.89,0.00,0.126864,0.000000,205,0,0.000000,0.000030,66502090,32746237,0,0,93693,0,1,1 +1773700869.813934,0.55,4,3992.50,53.89,1588.56,2109.93,0.00,3515373656359.719727,0.000000,75,0,0.000000,0.000020,66502090,32746239,0,0,93695,0,1,1 +1773700874.814159,0.75,4,3992.50,53.89,1588.42,2110.07,0.00,0.000000,0.000000,75,0,0.000000,0.000674,66502090,32746246,0,0,93698,0,1,1 +1773700879.809556,0.65,4,3992.50,53.85,1590.19,2108.30,0.00,3521679183627.965820,0.000000,11,0,0.000000,0.000020,66502090,32746248,0,0,93700,0,1,1 +1773700884.809568,1.05,4,3992.50,54.27,1573.73,2124.75,0.00,0.000000,0.000000,11,0,0.000308,0.000584,66502097,32746262,0,0,93703,0,1,1 +1773700889.811760,0.65,4,3992.50,54.06,1581.91,2116.58,0.00,61805.194804,68619.039869,4233054,3498550,0.000008,0.000028,66502098,32746265,0,0,93705,0,1,1 +1773700894.813087,0.65,4,3992.50,54.06,1581.91,2116.57,0.00,3517503974351.538086,3517503967536.513672,11,0,0.000336,0.000711,66502115,32746289,0,0,93708,0,1,1 +1773700899.813610,0.55,4,3992.50,54.02,1583.38,2115.11,0.00,61825.825445,68641.960603,4233054,3498567,0.000025,0.000051,66502117,32746293,0,0,93710,0,1,1 +1773700904.813627,0.80,4,3992.50,54.03,1583.04,2115.44,0.00,3518424825527.170898,3518424818710.346680,11,0,0.000000,0.000030,66502117,32746296,0,0,93713,0,1,1 +1773700909.810198,0.70,4,3992.50,54.04,1582.80,2115.69,0.00,1.658853,10.682523,253,762,0.000000,0.000020,66502117,32746298,0,0,93715,0,1,1 +1773700914.814347,17.08,4,3992.50,54.28,1581.88,2125.01,0.00,0.517246,3515519544206.836914,258,2,40.032574,0.029279,66506531,32748390,0,0,93718,0,1,1 +1773700919.810718,0.90,4,3992.50,54.28,1581.54,2125.22,0.00,3520992829276.322754,3520992829278.319824,205,0,0.003087,0.001442,66506587,32748430,0,0,93720,0,1,1 +1773700924.813783,0.65,4,3992.50,54.28,1581.54,2125.22,0.00,61794.232547,68607.220746,4233054,3498687,0.000000,0.000030,66506587,32748433,0,0,93723,0,1,1 +1773700929.809460,0.75,4,3992.50,54.10,1588.72,2118.05,0.00,3521481698991.062988,3521481692166.002930,258,2,0.000031,0.000045,66506589,32748437,0,0,93725,0,1,1 +1773700934.809634,0.70,4,3992.50,54.10,1588.72,2118.05,0.00,0.000000,0.000000,258,2,0.000213,0.000570,66506597,32748452,0,0,93728,0,1,1 +1773700939.813567,0.70,4,3992.50,53.90,1596.37,2110.40,0.00,61791.237009,68606.004582,4234557,3499466,0.000031,0.000688,66506599,32748460,0,0,93730,0,1,1 +1773700944.813542,1.05,4,3992.50,54.20,1584.95,2121.96,0.00,3518454903277.874023,3518454896457.711426,258,2,0.000000,0.000030,66506599,32748463,0,0,93733,0,1,1 +1773700949.811864,0.90,4,3992.50,54.20,1584.87,2121.90,0.00,3519618676590.333496,3519618676592.329590,205,0,0.001417,0.001182,66506628,32748489,0,0,93735,0,1,1 +1773700954.814164,0.80,4,3992.50,54.20,1584.87,2121.90,0.00,3516819168915.505859,0.000000,11,0,0.001733,0.001352,66506653,32748507,0,0,93738,0,1,1 +1773700959.814018,0.70,4,3992.50,54.11,1588.31,2118.46,0.00,0.000000,0.000000,11,0,0.000031,0.000045,66506655,32748511,0,0,93740,0,1,1 +1773700964.809489,0.75,4,3992.50,54.15,1586.84,2119.93,0.00,61888.345087,68711.708527,4233054,3498854,0.000076,0.000123,66506661,32748520,0,0,93743,0,1,1 +1773700969.813958,0.70,4,3992.50,54.15,1586.84,2119.93,0.00,3515294875581.927246,3515294868770.778809,75,0,0.000000,0.000020,66506661,32748522,0,0,93745,0,1,1 +1773700974.811789,0.95,4,3992.50,54.28,1581.57,2125.34,0.00,3519964775036.499023,0.000000,11,0,0.000000,0.000030,66506661,32748525,0,0,93748,0,1,1 +1773700979.814389,15.48,4,3992.50,54.14,1587.11,2119.65,0.00,0.000000,0.000000,11,0,40.042322,0.024047,66511008,32750162,0,0,93750,0,1,1 +1773700984.809557,0.80,4,3992.50,53.98,1593.22,2113.55,0.00,1.659318,10.685522,253,762,0.003096,0.001440,66511065,32750202,0,0,93753,0,1,1 +1773700989.809505,0.80,4,3992.50,53.99,1593.02,2113.75,0.00,61841.001322,68650.338521,4234557,3499795,0.000000,0.000020,66511065,32750204,0,0,93755,0,1,1 +1773700994.809772,0.65,4,3992.50,53.99,1593.02,2113.75,0.00,3518249572268.941895,3518249565450.967773,75,0,0.000056,0.000086,66511069,32750211,0,0,93758,0,1,1 +1773700999.813941,0.70,4,3992.50,53.97,1593.66,2113.10,0.00,3515506044628.446777,0.000000,11,0,0.000025,0.000051,66511071,32750215,0,0,93760,0,1,1 +1773701004.809490,1.10,4,3992.50,54.19,1584.56,2121.71,0.00,61897.113953,68721.549969,4234557,3499831,0.000000,0.000674,66511071,32750222,0,0,93763,0,1,1 +1773701009.809751,0.65,4,3992.50,53.92,1594.70,2111.16,0.00,3518253259203.911133,3518253252383.730957,258,2,0.000000,0.000020,66511071,32750224,0,0,93765,0,1,1 +1773701014.813837,0.65,4,3992.50,53.94,1593.96,2111.90,0.00,3515564086709.761230,3515564086711.935059,11,0,0.000000,0.000030,66511071,32750227,0,0,93768,0,1,1 +1773701019.809762,0.65,4,3992.50,53.95,1593.55,2112.30,0.00,0.000000,0.000000,11,0,0.000000,0.000020,66511071,32750229,0,0,93770,0,1,1 +1773701024.810452,0.70,4,3992.50,53.95,1593.55,2112.30,0.00,61833.483031,68650.980002,4234557,3499896,0.000056,0.000086,66511075,32750236,0,0,93773,0,1,1 +1773701029.813939,0.70,4,3992.50,53.95,1593.56,2112.30,0.00,3515985477089.552734,3515985470275.812500,75,0,0.000109,0.000152,66511084,32750247,0,0,93775,0,1,1 +1773701034.809481,1.05,4,3992.50,53.96,1593.34,2112.52,0.00,1.605631,10.684721,253,762,0.000000,0.000030,66511084,32750250,0,0,93778,0,1,1 +1773701039.809583,0.65,4,3992.50,53.74,1601.67,2104.19,0.00,61829.370314,68637.736827,4233054,3499153,0.000000,0.000020,66511084,32750252,0,0,93780,0,1,1 +1773701044.813642,14.79,4,3992.50,55.68,1525.91,2179.94,0.00,9.718283,10.761870,4234557,3500037,40.029367,0.020745,66515406,32751678,0,0,93783,0,1,1 +1773701049.809478,0.90,4,3992.50,54.69,1564.76,2141.07,0.00,3521370012316.015625,3521370005491.583984,205,0,0.003088,0.001430,66515462,32751717,0,0,93785,0,1,1 +1773701054.809470,0.70,4,3992.50,54.21,1583.51,2122.32,0.00,61832.203937,68650.076344,4233054,3499346,0.000000,0.000030,66515462,32751720,0,0,93788,0,1,1 +1773701059.814215,0.75,4,3992.50,53.89,1595.75,2110.07,0.00,3515101549787.583008,3515101542985.373535,253,762,0.000000,0.000020,66515462,32751722,0,0,93790,0,1,1 +1773701064.809497,1.00,4,3992.50,54.12,1591.18,2119.08,0.00,3521760253813.214355,3521760253804.007812,205,0,0.000000,0.000030,66515462,32751725,0,0,93793,0,1,1 +1773701069.813643,0.80,4,3992.50,54.14,1585.96,2119.80,0.00,3515521613142.472656,0.000000,11,0,0.000000,0.000663,66515462,32751731,0,0,93795,0,1,1 +1773701074.809674,0.70,4,3992.50,54.14,1585.96,2119.80,0.00,0.000000,0.000000,11,0,0.000000,0.000030,66515462,32751734,0,0,93798,0,1,1 +1773701079.814301,0.60,4,3992.50,54.14,1585.96,2119.80,0.00,2.173379,0.000195,258,2,0.000000,0.000020,66515462,32751736,0,0,93800,0,1,1 +1773701084.814367,0.70,4,3992.50,54.14,1585.96,2119.80,0.00,3518390991296.963379,3518390991299.138672,11,0,0.000000,0.000030,66515462,32751739,0,0,93803,0,1,1 +1773701089.813552,0.60,4,3992.50,54.15,1585.73,2120.04,0.00,0.000000,0.000000,11,0,0.000056,0.000076,66515466,32751745,0,0,93805,0,1,1 +1773701094.812379,0.90,4,3992.50,54.20,1582.89,2121.97,0.00,0.180316,0.000000,205,0,0.000117,0.000170,66515476,32751758,0,0,93808,0,1,1 +1773701099.814274,0.75,4,3992.50,54.19,1583.09,2121.73,0.00,0.000000,0.000000,205,0,0.000000,0.000020,66515476,32751760,0,0,93810,0,1,1 +1773701104.814125,0.95,4,3992.50,54.20,1582.86,2121.96,0.00,61833.946421,68652.207060,4233054,3499471,0.000000,0.000030,66515476,32751763,0,0,93813,0,1,1 +1773701109.810645,15.00,4,3992.50,54.09,1586.95,2117.88,0.00,3520887747597.215332,3520887740772.411621,258,2,40.102307,0.025022,66519793,32753524,0,0,93815,0,1,1 +1773701114.810281,1.91,4,3992.50,54.09,1586.97,2117.86,0.00,3518693597786.288086,3518693597788.463867,11,0,0.003085,0.001438,66519849,32753564,0,0,93818,0,1,1 +1773701119.814043,0.85,4,3992.50,53.85,1596.38,2108.45,0.00,0.053475,0.000000,75,0,0.000000,0.000020,66519849,32753566,0,0,93820,0,1,1 +1773701124.814174,1.35,4,3992.50,53.95,1596.50,2112.27,0.00,3518344980395.168457,0.000000,11,0,0.000000,0.000030,66519849,32753569,0,0,93823,0,1,1 +1773701129.810817,0.70,4,3992.50,53.95,1596.51,2112.27,0.00,1.658829,10.682369,253,762,0.000000,0.000020,66519849,32753571,0,0,93825,0,1,1 +1773701134.809492,0.65,4,3992.50,53.96,1596.05,2112.73,0.00,3519369368761.020508,3519369368752.000977,11,0,0.000000,0.000674,66519849,32753578,0,0,93828,0,1,1 +1773701139.814373,0.75,4,3992.50,53.86,1600.21,2108.57,0.00,61781.711837,68594.198786,4234557,3500541,0.000000,0.000020,66519849,32753580,0,0,93830,0,1,1 +1773701144.809646,0.65,4,3992.50,53.87,1599.49,2109.29,0.00,3521766285389.121094,3521766278563.532227,11,0,0.000000,0.000030,66519849,32753583,0,0,93833,0,1,1 +1773701149.810656,0.60,4,3992.50,53.89,1598.78,2110.00,0.00,0.180237,0.000000,205,0,0.000000,0.000020,66519849,32753585,0,0,93835,0,1,1 +1773701154.813989,1.05,4,3992.50,54.04,1594.52,2115.63,0.00,0.000000,0.000000,205,0,0.000056,0.000086,66519853,32753592,0,0,93838,0,1,1 +1773701159.809567,0.65,4,3992.50,54.04,1594.41,2115.59,0.00,3521551200398.342285,0.000000,11,0,0.000117,0.000160,66519863,32753604,0,0,93840,0,1,1 +1773701164.813894,0.70,4,3992.50,54.04,1594.41,2115.59,0.00,0.180118,0.000000,205,0,0.000000,0.000030,66519863,32753607,0,0,93843,0,1,1 +1773701169.812656,0.75,4,3992.50,54.04,1594.42,2115.59,0.00,3519308497461.107910,0.000000,11,0,0.000000,0.000020,66519863,32753609,0,0,93845,0,1,1 +1773701174.813841,17.03,4,3992.50,55.83,1524.28,2185.73,0.00,1.657322,10.672667,253,762,40.053222,0.030102,66524189,32755705,0,0,93848,0,1,1 +1773701179.813687,0.90,4,3992.50,54.71,1568.11,2141.89,0.00,61842.258984,68652.740262,4234557,3500718,0.003085,0.001428,66524245,32755744,0,0,93850,0,1,1 +1773701184.812119,0.90,4,3992.50,54.40,1577.71,2129.69,0.00,3519540856048.120117,3519540849226.691406,11,0,0.001230,0.001242,66524254,32755760,0,0,93853,0,1,1 +1773701189.810327,0.75,4,3992.50,54.31,1580.87,2126.50,0.00,0.000000,0.000000,11,0,0.000000,0.000020,66524254,32755762,0,0,93855,0,1,1 +1773701194.812823,0.65,4,3992.50,54.31,1580.95,2126.42,0.00,1.656888,10.669868,253,762,0.000205,0.000562,66524261,32755776,0,0,93858,0,1,1 +1773701199.814409,0.70,4,3992.50,54.31,1580.95,2126.42,0.00,0.517512,3517321425879.735840,258,2,0.000000,0.000503,66524261,32755781,0,0,93860,0,1,1 +1773701204.813913,0.70,4,3992.50,54.31,1580.95,2126.42,0.00,3518786252772.276367,3518786252774.271973,205,0,0.000000,0.000191,66524261,32755785,0,0,93863,0,1,1 +1773701209.812217,0.65,4,3992.50,54.31,1580.96,2126.41,0.00,3519630919162.428711,0.000000,75,0,0.000000,0.000020,66524261,32755787,0,0,93865,0,1,1 +1773701214.811602,1.00,4,3992.50,54.40,1578.68,2130.07,0.00,0.126773,0.000000,205,0,0.000000,0.000030,66524261,32755790,0,0,93868,0,1,1 +1773701219.810618,0.65,4,3992.50,54.40,1578.47,2130.06,0.00,1.995510,0.000195,258,2,0.000056,0.000076,66524265,32755796,0,0,93870,0,1,1 +1773701224.814171,0.55,4,3992.50,54.41,1578.22,2130.30,0.00,61786.215741,68602.063544,4233054,3500056,0.000117,0.000170,66524275,32755809,0,0,93873,0,1,1 +1773701229.813592,0.75,4,3992.50,54.41,1578.22,2130.30,0.00,3518844449777.181152,3518844442957.823242,75,0,0.000031,0.000045,66524277,32755813,0,0,93875,0,1,1 +1773701234.809470,0.60,4,3992.50,54.42,1577.75,2130.78,0.00,61892.987015,68718.137871,4234557,3500825,0.000205,0.000562,66524284,32755827,0,0,93878,0,1,1 +1773701239.809494,15.08,4,3992.50,54.88,1559.77,2148.76,0.00,3518420366990.822754,3518420360171.331055,75,0,40.062295,0.022840,66528655,32757417,0,0,93880,0,1,1 +1773701244.814073,1.25,4,3992.50,54.77,1570.04,2144.41,0.00,0.000000,0.000000,75,0,0.003082,0.001437,66528711,32757457,0,0,93883,0,1,1 +1773701249.809433,0.80,4,3992.50,54.33,1587.49,2126.97,0.00,1.605689,10.685110,253,762,0.001418,0.001183,66528740,32757483,0,0,93885,0,1,1 +1773701254.813658,0.75,4,3992.50,54.26,1589.89,2124.57,0.00,0.000000,0.000000,253,762,0.001063,0.000431,66528762,32757499,0,0,93888,0,1,1 +1773701259.814383,0.65,4,3992.50,54.21,1591.88,2122.58,0.00,3517927417576.488770,3517927417567.419434,75,0,0.000000,0.000020,66528762,32757501,0,0,93890,0,1,1 +1773701264.810214,0.65,4,3992.50,54.26,1589.95,2124.50,0.00,2.123646,0.000195,258,2,0.000000,0.000352,66528762,32757506,0,0,93893,0,1,1 +1773701269.814018,0.55,4,3992.50,54.27,1589.71,2124.74,0.00,61792.834135,68609.528180,4234557,3501042,0.000000,0.000342,66528762,32757510,0,0,93895,0,1,1 +1773701274.813699,0.75,4,3992.50,54.28,1589.30,2125.14,0.00,3518661453167.883789,3518661453166.955566,4233054,3500285,0.000000,0.000030,66528762,32757513,0,0,93898,0,1,1 +1773701279.813658,1.00,4,3992.50,54.35,1585.85,2127.78,0.00,3518466295433.087891,3518466288614.254883,11,0,0.000031,0.000045,66528764,32757517,0,0,93900,0,1,1 +1773701284.813789,0.55,4,3992.50,54.39,1584.13,2129.50,0.00,0.053514,0.000000,75,0,0.000039,0.000063,66528767,32757523,0,0,93903,0,1,1 +1773701289.809432,0.70,4,3992.50,54.39,1584.13,2129.49,0.00,0.000000,0.000000,75,0,0.000076,0.000113,66528773,32757531,0,0,93905,0,1,1 +1773701294.810622,0.60,4,3992.50,54.39,1584.13,2129.49,0.00,3517599773904.973145,0.000000,11,0,0.000081,0.000117,66528779,32757540,0,0,93908,0,1,1 +1773701299.811893,0.65,4,3992.50,54.40,1583.64,2129.98,0.00,61816.572435,68633.658358,4233054,3500321,0.000050,0.000082,66528783,32757546,0,0,93910,0,1,1 +1773701304.812398,15.76,4,3992.50,56.35,1511.78,2206.09,0.00,9.725190,10.740908,4234557,3501141,40.058906,0.025408,66533120,32759290,0,0,93913,0,1,1 +1773701309.813823,1.05,4,3992.50,55.39,1549.41,2168.46,0.00,3517435092393.705566,3517435085575.812500,11,0,0.003097,0.001428,66533177,32759329,0,0,93915,0,1,1 +1773701314.813495,0.65,4,3992.50,54.77,1573.43,2144.45,0.00,2.175533,0.000195,258,2,0.000000,0.000030,66533177,32759332,0,0,93918,0,1,1 +1773701319.814218,0.65,4,3992.50,54.51,1583.88,2134.00,0.00,3517928722538.368164,3517928722540.543457,11,0,0.000000,0.000020,66533177,32759334,0,0,93920,0,1,1 +1773701324.809458,0.75,4,3992.50,54.51,1583.85,2134.03,0.00,0.180445,0.000000,205,0,0.000000,0.000030,66533177,32759337,0,0,93923,0,1,1 +1773701329.814108,0.60,4,3992.50,54.50,1583.94,2133.94,0.00,3515168591404.535156,0.000000,75,0,0.000000,0.000020,66533177,32759339,0,0,93925,0,1,1 +1773701334.814167,0.90,4,3992.50,54.57,1588.38,2136.62,0.00,1.604180,10.675069,253,762,0.000000,0.000674,66533177,32759346,0,0,93928,0,1,1 +1773701339.813937,0.65,4,3992.50,54.39,1595.31,2129.45,0.00,61833.475960,68643.846886,4233054,3500536,0.000000,0.000020,66533177,32759348,0,0,93930,0,1,1 +1773701344.811896,0.65,4,3992.50,54.41,1594.33,2130.43,0.00,3519873996928.778809,3519873990115.939941,253,762,0.000000,0.000030,66533177,32759351,0,0,93933,0,1,1 +1773701349.810580,0.65,4,3992.50,54.21,1602.16,2122.60,0.00,3519363827110.872070,3519363827101.671875,205,0,0.000044,0.000076,66533180,32759357,0,0,93935,0,1,1 +1773701354.813961,0.65,4,3992.50,54.22,1601.73,2123.02,0.00,1.993769,0.000195,258,2,0.000129,0.000170,66533191,32759370,0,0,93938,0,1,1 +1773701359.809922,0.70,4,3992.50,54.22,1601.73,2123.02,0.00,61880.097643,68706.917023,4233054,3500587,0.000000,0.000020,66533191,32759372,0,0,93940,0,1,1 +1773701364.814047,0.90,4,3992.50,54.32,1595.88,2126.71,0.00,3515536990047.373047,3515536983242.874023,253,762,0.000000,0.000030,66533191,32759375,0,0,93943,0,1,1 +1773701369.814255,17.60,4,3992.50,59.17,1406.01,2316.55,0.00,3518290763546.980957,3518290763537.783691,205,0,31.849421,0.017338,66536735,32760557,0,0,93945,0,1,1 +1773701374.809472,1.05,4,3992.50,54.84,1575.37,2147.18,0.00,3521806598735.775391,0.000000,11,0,8.223416,0.003986,66537676,32760770,0,0,93948,0,1,1 +1773701379.814023,0.65,4,3992.50,54.38,1593.54,2129.00,0.00,0.000000,0.000000,11,0,0.000000,0.000020,66537676,32760772,0,0,93950,0,1,1 +1773701384.813425,0.60,4,3992.50,54.30,1596.48,2126.07,0.00,0.000000,0.000000,11,0,0.000000,0.000030,66537676,32760775,0,0,93953,0,1,1 +1773701389.814263,0.65,4,3992.50,54.29,1596.96,2125.59,0.00,2.175026,0.000195,258,2,0.000000,0.000020,66537676,32760777,0,0,93955,0,1,1 +1773701394.813751,1.05,4,3992.50,54.38,1580.09,2129.16,0.00,3518797171979.266113,3518797171981.261230,205,0,0.000000,0.000030,66537676,32760780,0,0,93958,0,1,1 +1773701399.813709,0.60,4,3992.50,54.40,1579.48,2129.82,0.00,61832.624091,68652.263054,4233054,3500830,0.000000,0.000664,66537676,32760786,0,0,93960,0,1,1 +1773701404.809472,0.65,4,3992.50,54.40,1579.26,2130.04,0.00,3521421796410.040039,3521421789584.853516,11,0,0.000000,0.000030,66537676,32760789,0,0,93963,0,1,1 +1773701409.809602,0.65,4,3992.50,54.40,1579.26,2130.04,0.00,0.053514,0.000000,75,0,0.000000,0.000020,66537676,32760791,0,0,93965,0,1,1 +1773701414.809548,0.65,4,3992.50,54.40,1579.26,2130.04,0.00,61832.894476,68652.456896,4233054,3500853,0.000031,0.000055,66537678,32760796,0,0,93968,0,1,1 +1773701419.809459,0.60,4,3992.50,54.40,1579.26,2130.04,0.00,3518499935385.957031,3518499928566.398926,11,0,0.000142,0.000191,66537690,32760810,0,0,93970,0,1,1 +1773701424.812701,0.95,4,3992.50,54.40,1579.26,2130.04,0.00,2.173981,0.000195,258,2,0.000000,0.000030,66537690,32760813,0,0,93973,0,1,1 +1773701429.810596,0.85,4,3992.50,54.50,1579.23,2133.69,0.00,0.000000,0.000000,258,2,0.000000,0.000020,66537690,32760815,0,0,93975,0,1,1 +1773701434.813598,19.34,4,3992.50,59.27,1392.18,2320.73,0.00,0.000000,0.000000,258,2,20.022734,0.017074,66540035,32761977,0,0,93978,0,1,1 +1773701439.814267,1.05,4,3992.50,54.38,1583.68,2129.24,0.00,3517966130701.140625,3517966130703.315918,11,0,20.040382,0.008145,66542103,32762520,0,0,93980,0,1,1 +1773701444.814357,0.60,4,3992.50,54.29,1587.33,2125.58,0.00,61831.185439,68650.622411,4233054,3500997,0.000000,0.000030,66542103,32762523,0,0,93983,0,1,1 +1773701449.813834,0.65,4,3992.50,54.28,1587.77,2125.14,0.00,9.727187,10.681193,4234557,3501766,0.000000,0.000020,66542103,32762525,0,0,93985,0,1,1 +1773701454.814069,0.90,4,3992.50,54.30,1583.34,2126.04,0.00,0.000000,0.071872,4234557,3501794,0.000000,0.000030,66542103,32762528,0,0,93988,0,1,1 +1773701459.813500,0.65,4,3992.50,54.28,1584.32,2125.07,0.00,3518837813880.896484,3518837807057.359863,258,2,0.000000,0.000020,66542103,32762530,0,0,93990,0,1,1 +1773701464.813987,0.65,4,3992.50,54.28,1584.32,2125.07,0.00,0.000000,0.000000,258,2,0.000000,0.000030,66542103,32762533,0,0,93993,0,1,1 +1773701469.814128,0.60,4,3992.50,54.28,1584.32,2125.07,0.00,61838.095738,68660.779383,4234557,3501912,0.000000,0.000664,66542103,32762539,0,0,93995,0,1,1 +1773701474.813164,0.60,4,3992.50,54.28,1584.32,2125.07,0.00,3519116135057.652832,3519116135056.708984,4233054,3501150,0.000000,0.000030,66542103,32762542,0,0,93998,0,1,1 +1773701479.813671,0.80,4,3992.50,54.28,1584.32,2125.07,0.00,9.725184,10.795388,4234557,3501939,0.000031,0.000045,66542105,32762546,0,0,94000,0,1,1 +1773701484.813633,0.90,4,3992.50,54.49,1575.82,2133.54,0.00,3518463790962.263184,3518463784139.208496,258,2,0.000450,0.000756,66542124,32762572,0,0,94003,0,1,1 +1773701489.812795,1.55,4,3992.50,54.30,1583.31,2126.07,0.00,3519027016811.841797,3519027016813.964355,75,0,0.000000,0.000020,66542124,32762574,0,0,94005,0,1,1 +1773701494.814344,0.70,4,3992.50,54.30,1583.31,2126.07,0.00,61822.809347,68641.642711,4234557,3501986,0.001126,0.001231,66542133,32762591,0,0,94008,0,1,1 +1773701499.809911,16.18,4,3992.50,58.90,1403.41,2305.98,0.00,3521559912128.593262,3521559905310.672852,253,762,17.853700,0.016327,66544206,32763619,0,0,94010,0,1,1 +1773701504.809452,2.71,4,3992.50,53.75,1604.92,2104.47,0.00,61846.038549,68658.635725,4234557,3502124,22.235945,0.008621,66546493,32764199,0,0,94013,0,1,1 +1773701509.814226,0.70,4,3992.50,53.80,1602.96,2106.43,0.00,3515080888055.069336,3515080881238.413574,258,2,0.000000,0.000020,66546493,32764201,0,0,94015,0,1,1 +1773701514.814411,0.95,4,3992.50,53.98,1597.55,2113.50,0.00,3518306886572.157715,3518306886574.152832,205,0,0.000000,0.000030,66546493,32764204,0,0,94018,0,1,1 +1773701519.810655,0.65,4,3992.50,54.00,1596.80,2114.23,0.00,3521082283922.390625,0.000000,11,0,0.000000,0.000020,66546493,32764206,0,0,94020,0,1,1 +1773701524.814264,0.65,4,3992.50,54.00,1596.80,2114.23,0.00,61787.687856,68602.918114,4233054,3501430,0.000000,0.000030,66546493,32764209,0,0,94023,0,1,1 +1773701529.809478,0.75,4,3992.50,54.00,1596.80,2114.23,0.00,3521808063952.778320,3521808057126.040527,75,0,0.000031,0.000045,66546495,32764213,0,0,94025,0,1,1 +1773701534.809488,0.75,4,3992.50,54.00,1596.80,2114.23,0.00,3518430404238.744629,0.000000,11,0,0.000205,0.001206,66546502,32764231,0,0,94028,0,1,1 +1773701539.809447,0.65,4,3992.50,53.81,1604.43,2106.60,0.00,0.180275,0.000000,205,0,0.000039,0.000053,66546505,32764236,0,0,94030,0,1,1 +1773701544.813572,1.00,4,3992.50,53.86,1601.29,2108.88,0.00,3515537067985.000488,0.000000,11,0,0.000031,0.000055,66546507,32764241,0,0,94033,0,1,1 +1773701549.810657,0.85,4,3992.50,53.87,1600.91,2109.18,0.00,61868.359863,68692.560223,4233054,3501473,0.002189,0.002229,66546547,32764277,0,0,94035,0,1,1 +1773701554.814159,0.70,4,3992.50,53.87,1600.92,2109.17,0.00,0.000000,0.002342,4233054,3501475,0.001064,0.000439,66546569,32764294,0,0,94038,0,1,1 +1773701559.813430,0.70,4,3992.50,53.87,1600.92,2109.17,0.00,9.727590,10.681635,4234557,3502244,0.000000,0.000020,66546569,32764296,0,0,94040,0,1,1 +1773701564.813548,15.76,4,3992.50,58.43,1422.32,2287.75,0.00,0.000000,0.009765,4234557,3502278,39.296619,0.020197,66550824,32765702,0,0,94043,0,1,1 +1773701569.814374,1.00,4,3992.50,53.69,1607.96,2102.12,0.00,3517855824180.522949,3517855817360.461914,11,0,0.805183,0.002181,66550997,32765771,0,0,94045,0,1,1 +1773701574.814355,0.95,4,3992.50,53.93,1602.42,2111.46,0.00,61842.254181,68663.633566,4234557,3502416,0.000000,0.000030,66550997,32765774,0,0,94048,0,1,1 +1773701579.810574,0.70,4,3992.50,53.95,1601.75,2112.13,0.00,3521099704612.174805,3521099704611.264648,4233054,3501692,0.000031,0.000045,66550999,32765778,0,0,94050,0,1,1 +1773701584.812878,0.70,4,3992.50,53.82,1606.64,2107.25,0.00,3516816505866.589844,3516816499047.113281,258,2,0.000008,0.000038,66551000,32765782,0,0,94053,0,1,1 +1773701589.813607,0.60,4,3992.50,53.83,1606.39,2107.49,0.00,0.000000,0.000000,258,2,0.000000,0.000020,66551000,32765784,0,0,94055,0,1,1 +1773701594.813649,0.60,4,3992.50,53.83,1606.39,2107.49,0.00,0.000000,0.000000,258,2,0.000056,0.000086,66551004,32765791,0,0,94058,0,1,1 +1773701599.813678,0.80,4,3992.50,53.83,1606.39,2107.49,0.00,3518416486111.604492,3518416486113.779785,11,0,0.000025,0.000695,66551006,32765799,0,0,94060,0,1,1 +1773701604.809477,0.90,4,3992.50,53.92,1602.13,2111.18,0.00,0.053561,0.000000,75,0,0.000000,0.000030,66551006,32765802,0,0,94063,0,1,1 +1773701609.810633,0.65,4,3992.50,53.92,1602.02,2111.13,0.00,0.000000,0.000000,75,0,0.000031,0.000045,66551008,32765806,0,0,94065,0,1,1 +1773701614.813990,0.65,4,3992.50,53.92,1602.03,2111.13,0.00,3516076522841.079102,0.000000,11,0,0.000126,0.000244,66551018,32765822,0,0,94068,0,1,1 +1773701619.809559,0.65,4,3992.50,53.92,1602.03,2111.12,0.00,0.053563,0.000000,75,0,0.000000,0.000020,66551018,32765824,0,0,94070,0,1,1 +1773701624.809455,0.70,4,3992.50,53.92,1602.04,2111.12,0.00,1.604233,10.675417,253,762,0.000000,0.000030,66551018,32765827,0,0,94073,0,1,1 +1773701629.809661,15.33,4,3992.50,59.22,1394.57,2318.58,0.00,61837.830630,68649.988354,4234558,3502535,31.128728,0.021505,66554490,32767286,0,0,94075,0,1,1 +1773701634.810658,1.30,4,3992.50,54.34,1592.40,2127.62,0.00,3517735929301.689941,3517735922490.608887,253,762,8.938297,0.008201,66555526,32767829,0,0,94078,0,1,1 +1773701639.813589,0.70,4,3992.50,54.34,1588.66,2127.62,0.00,3516375960632.688477,3516375960623.496094,205,0,0.000000,0.000020,66555526,32767831,0,0,94080,0,1,1 +1773701644.814407,0.65,4,3992.50,54.34,1588.66,2127.61,0.00,61831.745273,68652.466599,4234558,3502711,0.000000,0.000030,66555526,32767834,0,0,94083,0,1,1 +1773701649.809445,0.60,4,3992.50,54.34,1588.66,2127.61,0.00,3521932098322.117188,3521932091493.630859,75,0,0.000000,0.000020,66555526,32767836,0,0,94085,0,1,1 +1773701654.809455,0.65,4,3992.50,54.34,1588.67,2127.61,0.00,61832.132032,68652.885215,4233055,3501952,0.000000,0.000030,66555526,32767839,0,0,94088,0,1,1 +1773701659.812582,0.65,4,3992.50,54.34,1588.67,2127.61,0.00,3516238658211.892578,3516238651395.260742,205,0,0.000000,0.000020,66555526,32767841,0,0,94090,0,1,1 +1773701664.810507,0.95,4,3992.50,54.36,1587.24,2128.32,0.00,61857.804812,68681.580020,4233055,3501974,0.000000,0.000674,66555526,32767848,0,0,94093,0,1,1 +1773701669.809574,0.70,4,3992.50,54.38,1586.26,2129.27,0.00,3519093731817.362793,3519093724995.326660,11,0,0.000000,0.000020,66555526,32767850,0,0,94095,0,1,1 +1773701674.809549,0.65,4,3992.50,54.38,1586.27,2129.27,0.00,61842.344990,68664.122921,4234558,3502771,0.000031,0.000055,66555528,32767855,0,0,94098,0,1,1 +1773701679.812549,0.70,4,3992.50,54.40,1585.53,2130.01,0.00,3516327251531.470215,3516327244722.829102,253,762,0.000134,0.000183,66555539,32767868,0,0,94100,0,1,1 +1773701684.811063,0.55,4,3992.50,54.40,1585.54,2130.01,0.00,3519483322506.907715,3519483322497.887695,11,0,0.000000,0.000030,66555539,32767871,0,0,94103,0,1,1 +1773701689.814287,0.65,4,3992.50,54.40,1585.54,2130.01,0.00,0.000000,0.000000,11,0,0.000000,0.000020,66555539,32767873,0,0,94105,0,1,1 +1773701694.812441,15.59,4,3992.50,59.33,1407.86,2322.95,0.00,0.053535,0.000000,75,0,26.052069,0.019599,66558459,32769234,0,0,94108,0,1,1 +1773701699.814277,1.75,4,3992.50,54.91,1580.84,2149.81,0.00,0.000000,0.000000,75,0,14.017876,0.007376,66559959,32769717,0,0,94110,0,1,1 +1773701704.809477,0.65,4,3992.50,54.50,1596.87,2133.78,0.00,61901.456445,68730.011497,4234560,3502980,0.000000,0.000030,66559959,32769720,0,0,94113,0,1,1 +1773701709.812412,0.60,4,3992.50,54.28,1605.29,2125.37,0.00,0.000000,0.056217,4234560,3503042,0.000000,0.000020,66559959,32769722,0,0,94115,0,1,1 +1773701714.813664,0.75,4,3992.50,54.26,1606.24,2124.41,0.00,3517556203935.978516,3517556197113.509766,258,2,0.000000,0.000030,66559959,32769725,0,0,94118,0,1,1 +1773701719.813723,0.55,4,3992.50,54.26,1606.11,2124.55,0.00,3518396090089.779297,3518396090091.774414,205,0,0.000000,0.000020,66559959,32769727,0,0,94120,0,1,1 +1773701724.810165,1.25,4,3992.50,54.70,1588.88,2141.77,0.00,61876.204880,68702.358601,4233057,3502310,0.000000,0.000030,66559959,32769730,0,0,94123,0,1,1 +1773701729.809597,0.65,4,3992.50,54.48,1597.50,2133.15,0.00,3518836644799.389648,3518836637986.517578,253,762,0.000000,0.000664,66559959,32769736,0,0,94125,0,1,1 +1773701734.813668,0.65,4,3992.50,54.43,1599.56,2131.09,0.00,0.517255,3515575209328.557129,258,2,0.000000,0.000030,66559959,32769739,0,0,94128,0,1,1 +1773701739.813913,0.65,4,3992.50,54.44,1599.23,2131.43,0.00,3518264683032.290039,3518264683034.285156,205,0,0.000031,0.000045,66559961,32769743,0,0,94130,0,1,1 +1773701744.813658,0.70,4,3992.50,54.42,1599.84,2130.82,0.00,0.000000,0.000000,205,0,0.000134,0.000230,66559972,32769758,0,0,94133,0,1,1 +1773701749.810647,0.60,4,3992.50,54.42,1599.84,2130.82,0.00,3520557647795.402344,0.000000,11,0,0.000000,0.000020,66559972,32769760,0,0,94135,0,1,1 +1773701754.813542,1.00,4,3992.50,54.36,1594.07,2128.49,0.00,1.656756,10.669018,253,762,0.000000,0.000030,66559972,32769763,0,0,94138,0,1,1 +1773701759.813566,14.41,4,3992.50,59.28,1401.06,2320.93,0.00,0.000000,0.000000,253,762,14.827603,0.014647,66561773,32770731,0,0,94140,0,1,1 +1773701764.812022,3.21,4,3992.50,55.00,1568.70,2153.27,0.00,61849.800375,68664.182082,4233057,3502509,25.245145,0.007479,66564343,32771222,0,0,94143,0,1,1 +1773701769.813938,0.60,4,3992.50,54.53,1586.91,2135.07,0.00,0.000000,0.003124,4233057,3502512,0.000000,0.000020,66564343,32771224,0,0,94145,0,1,1 +1773701774.814086,0.65,4,3992.50,54.38,1593.04,2128.94,0.00,3518332883366.844727,3518332876545.749023,11,0,0.000000,0.000030,66564343,32771227,0,0,94148,0,1,1 +1773701779.811739,0.75,4,3992.50,54.38,1592.79,2129.18,0.00,61861.394717,68685.899870,4233057,3502517,0.000000,0.000020,66564343,32771229,0,0,94150,0,1,1 +1773701784.809581,0.95,4,3992.50,54.46,1597.78,2132.14,0.00,3519956244007.381348,3519956237182.954590,205,0,0.000308,0.000585,66564350,32771243,0,0,94153,0,1,1 +1773701789.810647,0.60,4,3992.50,54.46,1597.83,2132.06,0.00,1.994692,0.000195,258,2,0.000000,0.000020,66564350,32771245,0,0,94155,0,1,1 +1773701794.809463,0.80,4,3992.50,54.44,1598.26,2131.64,0.00,61844.831070,68670.042684,4233057,3502580,0.000213,0.001214,66564358,32771264,0,0,94158,0,1,1 +1773701799.809567,0.75,4,3992.50,54.45,1598.13,2131.76,0.00,3518363730060.218750,3518363723247.958496,253,762,0.000000,0.000020,66564358,32771266,0,0,94160,0,1,1 +1773701804.809455,0.60,4,3992.50,54.45,1598.13,2131.76,0.00,3518515809709.972168,3518515809700.901367,75,0,0.000031,0.000055,66564360,32771271,0,0,94163,0,1,1 +1773701809.809454,0.65,4,3992.50,54.45,1597.90,2131.99,0.00,3518438203193.782715,0.000000,11,0,0.000126,0.000175,66564370,32771283,0,0,94165,0,1,1 +1773701814.809552,1.00,4,3992.50,54.32,1602.45,2126.72,0.00,61831.146052,68652.469659,4233057,3502601,0.000000,0.000030,66564370,32771286,0,0,94168,0,1,1 +1773701819.809562,0.65,4,3992.50,53.99,1613.21,2113.75,0.00,0.000000,0.016406,4233057,3502616,0.000000,0.000020,66564370,32771288,0,0,94170,0,1,1 +1773701824.814527,11.45,4,3992.50,58.93,1419.91,2307.05,0.00,3514946880020.504395,3514946873214.805664,253,762,9.410752,0.012280,66565619,32772027,0,0,94173,0,1,1 +1773701829.810349,4.62,4,3992.50,54.90,1577.70,2149.28,0.00,61882.403559,68700.660023,4233057,3502762,30.670709,0.013141,66568716,32772938,0,0,94175,0,1,1 +1773701834.809579,0.55,4,3992.50,54.40,1597.21,2129.77,0.00,3518979042375.386230,3518979035552.704590,75,0,0.000205,0.000562,66568723,32772952,0,0,94178,0,1,1 +1773701839.813984,0.70,4,3992.50,54.19,1605.36,2121.62,0.00,3515340052979.801270,0.000000,11,0,0.000031,0.000045,66568725,32772956,0,0,94180,0,1,1 +1773701844.809661,0.70,4,3992.50,54.19,1605.16,2121.82,0.00,61885.871499,68713.394766,4233057,3502771,0.000000,0.000030,66568725,32772959,0,0,94183,0,1,1 +1773701849.811366,1.10,4,3992.50,54.22,1607.09,2122.83,0.00,3517237764752.431641,3517237757933.083984,75,0,0.001416,0.001181,66568754,32772985,0,0,94185,0,1,1 +1773701854.811676,0.70,4,3992.50,54.21,1607.36,2122.59,0.00,1.604100,10.674534,253,762,0.001721,0.001353,66568778,32773003,0,0,94188,0,1,1 +1773701859.813890,0.60,4,3992.50,54.22,1607.11,2122.84,0.00,3516879514013.946777,3516879514004.933594,11,0,0.000000,0.000342,66568778,32773007,0,0,94190,0,1,1 +1773701864.813862,0.60,4,3992.50,54.22,1607.29,2122.67,0.00,0.180274,0.000000,205,0,0.000000,0.000352,66568778,32773012,0,0,94193,0,1,1 +1773701869.813766,0.70,4,3992.50,54.22,1607.29,2122.67,0.00,3518505173032.643066,0.000000,11,0,0.000031,0.000045,66568780,32773016,0,0,94195,0,1,1 +1773701874.813575,1.00,4,3992.50,54.23,1608.14,2123.12,0.00,0.180280,0.000000,205,0,0.000076,0.000123,66568786,32773025,0,0,94198,0,1,1 +1773701879.814495,0.60,4,3992.50,54.01,1616.25,2114.80,0.00,0.000000,0.000000,205,0,0.000031,0.000045,66568788,32773029,0,0,94200,0,1,1 +1773701884.814166,0.75,4,3992.50,54.02,1616.24,2114.80,0.00,0.000000,0.000000,205,0,0.000008,0.000038,66568789,32773033,0,0,94203,0,1,1 +1773701889.814101,7.42,4,3992.50,59.08,1417.89,2313.11,0.00,1.995143,0.000195,258,2,5.013793,0.008969,66569609,32773579,0,0,94205,0,1,1 +1773701894.811861,7.58,4,3992.50,55.08,1574.66,2156.34,0.00,3520014150580.385742,3520014150582.562012,11,0,35.066192,0.015189,66573108,32774651,0,0,94208,0,1,1 +1773701899.810196,0.70,4,3992.50,54.45,1599.16,2131.85,0.00,0.000000,0.000000,11,0,0.000025,0.000051,66573110,32774655,0,0,94210,0,1,1 +1773701904.814347,0.85,4,3992.50,54.51,1597.00,2134.30,0.00,0.000000,0.000000,11,0,0.000000,0.000030,66573110,32774658,0,0,94213,0,1,1 +1773701909.810575,0.70,4,3992.50,54.03,1615.79,2115.23,0.00,61888.823995,68716.828718,4234563,3503843,0.000000,0.000020,66573110,32774660,0,0,94215,0,1,1 +1773701914.814072,0.70,4,3992.50,54.03,1615.79,2115.23,0.00,3515978514632.411133,3515978514631.467285,4233060,3503084,0.000000,0.000030,66573110,32774663,0,0,94218,0,1,1 +1773701919.813601,0.60,4,3992.50,54.03,1615.79,2115.23,0.00,0.000000,0.010157,4233060,3503087,0.000000,0.000020,66573110,32774665,0,0,94220,0,1,1 +1773701924.809784,0.70,4,3992.50,54.03,1615.57,2115.45,0.00,3521124990771.895508,3521124983953.787598,253,762,0.000000,0.000191,66573110,32774669,0,0,94223,0,1,1 +1773701929.813773,0.65,4,3992.50,54.03,1615.57,2115.45,0.00,3515632712728.931641,3515632712719.921387,11,0,0.000000,0.000502,66573110,32774674,0,0,94225,0,1,1 +1773701934.812155,0.85,4,3992.50,54.14,1601.31,2119.88,0.00,0.180332,0.000000,205,0,0.000031,0.000055,66573112,32774679,0,0,94228,0,1,1 +1773701939.814063,0.70,4,3992.50,54.15,1601.07,2120.06,0.00,3517094988363.638184,0.000000,11,0,0.000134,0.000183,66573123,32774692,0,0,94230,0,1,1 +1773701944.809461,0.60,4,3992.50,54.15,1601.07,2120.06,0.00,0.180440,0.000000,205,0,0.000008,0.000038,66573124,32774696,0,0,94233,0,1,1 +1773701949.809568,0.60,4,3992.50,54.15,1601.07,2120.06,0.00,3518361518371.728516,0.000000,75,0,0.000000,0.000020,66573124,32774698,0,0,94235,0,1,1 +1773701954.812539,2.56,4,3992.50,58.95,1413.09,2308.04,0.00,3516348224465.921875,0.000000,11,0,0.205337,0.003964,66573245,32774795,0,0,94238,0,1,1 +1773701959.813691,19.24,4,3992.50,55.27,1557.27,2163.86,0.00,61827.892612,68649.354412,4234563,3504028,39.850885,0.019689,66577477,32776227,0,0,94240,0,1,1 +1773701964.813461,0.85,4,3992.50,54.55,1582.81,2135.74,0.00,3518599680310.823730,3518599673485.299316,258,2,0.000008,0.000038,66577478,32776231,0,0,94243,0,1,1 +1773701969.814288,0.65,4,3992.50,54.15,1598.60,2119.96,0.00,3517855314101.379883,3517855314103.554688,11,0,0.000000,0.000020,66577478,32776233,0,0,94245,0,1,1 +1773701974.814176,0.75,4,3992.50,54.06,1601.99,2116.57,0.00,61843.522805,68666.816994,4234563,3504094,0.000000,0.000030,66577478,32776236,0,0,94248,0,1,1 +1773701979.813941,0.60,4,3992.50,54.04,1602.84,2115.71,0.00,3518602263787.425293,3518602256972.981445,253,762,0.000000,0.000020,66577478,32776238,0,0,94250,0,1,1 +1773701984.813977,0.65,4,3992.50,54.05,1602.36,2116.20,0.00,3518412423073.386230,3518412423064.369141,11,0,0.000000,0.000030,66577478,32776241,0,0,94253,0,1,1 +1773701989.813621,0.60,4,3992.50,53.86,1609.98,2108.57,0.00,61836.814268,68659.499220,4233060,3503338,0.000000,0.000342,66577478,32776245,0,0,94255,0,1,1 +1773701994.811819,0.95,4,3992.50,54.15,1598.51,2120.07,0.00,3519706084865.038574,3519706078049.398438,253,762,0.000000,0.000352,66577478,32776250,0,0,94258,0,1,1 +1773701999.813411,0.65,4,3992.50,53.99,1604.80,2113.75,0.00,0.000000,0.000000,253,762,0.000031,0.000045,66577480,32776254,0,0,94260,0,1,1 +1773702004.809574,1.20,4,3992.50,53.99,1604.76,2113.79,0.00,3521139248746.371582,3521139248737.347656,11,0,0.000126,0.000185,66577490,32776267,0,0,94263,0,1,1 +1773702009.813814,0.80,4,3992.50,53.99,1604.54,2114.01,0.00,61780.035787,68596.603690,4233060,3503461,0.000016,0.000036,66577492,32776271,0,0,94265,0,1,1 +1773702014.814236,0.85,4,3992.50,53.98,1605.14,2113.41,0.00,3518140221645.099609,3518140214823.327637,11,0,0.000000,0.000030,66577492,32776274,0,0,94268,0,1,1 +1773702019.809453,1.15,4,3992.50,53.91,1607.98,2110.58,0.00,0.000000,0.000000,11,0,0.002236,0.000725,66577516,32776292,0,0,94270,0,1,1 +1773702024.812429,17.17,4,3992.50,54.82,1569.52,2146.37,0.00,0.053484,0.000000,75,0,40.038473,0.021729,66581837,32777760,0,0,94273,0,1,1 +1773702029.813681,0.65,4,3992.50,54.11,1597.23,2118.59,0.00,0.000000,0.000000,75,0,0.000008,0.000028,66581838,32777763,0,0,94275,0,1,1 +1773702034.814163,0.75,4,3992.50,53.77,1610.61,2105.21,0.00,1.604044,10.674166,253,762,0.000000,0.000030,66581838,32777766,0,0,94278,0,1,1 +1773702039.810520,0.65,4,3992.50,53.77,1610.58,2105.23,0.00,3521002853101.161133,3521002853092.083984,75,0,0.000000,0.000020,66581838,32777768,0,0,94280,0,1,1 +1773702044.813188,0.65,4,3992.50,53.76,1610.96,2104.85,0.00,1.603344,10.669501,253,762,0.000000,0.000030,66581838,32777771,0,0,94283,0,1,1 +1773702049.809684,0.70,4,3992.50,53.76,1610.96,2104.85,0.00,3520905390319.217285,3520905390310.013184,205,0,0.000000,0.000020,66581838,32777773,0,0,94285,0,1,1 +1773702054.809467,0.95,4,3992.50,54.16,1595.33,2120.32,0.00,0.000000,0.000000,205,0,0.000000,0.000030,66581838,32777776,0,0,94288,0,1,1 +1773702059.809618,0.60,4,3992.50,54.10,1597.61,2118.05,0.00,1.477397,10.674875,253,762,0.000000,0.000664,66581838,32777782,0,0,94290,0,1,1 +1773702064.813956,0.55,4,3992.50,54.08,1598.18,2117.49,0.00,0.000000,0.000000,253,762,0.000000,0.000030,66581838,32777785,0,0,94293,0,1,1 +1773702069.810891,0.70,4,3992.50,54.08,1598.24,2117.42,0.00,3520595731892.563477,3520595731883.487305,75,0,0.000157,0.000201,66581850,32777799,0,0,94295,0,1,1 +1773702074.813549,0.70,4,3992.50,54.07,1598.84,2116.82,0.00,3516568036221.835449,0.000000,11,0,0.000016,0.000046,66581852,32777804,0,0,94298,0,1,1 +1773702079.813993,0.60,4,3992.50,54.07,1598.84,2116.82,0.00,2.175197,0.000195,258,2,0.000000,0.000020,66581852,32777806,0,0,94300,0,1,1 +1773702084.812560,10.43,4,3992.50,59.33,1392.71,2322.95,0.00,3519446253126.805664,3519446253128.981445,11,0,3.814540,0.009604,66582555,32778319,0,0,94303,0,1,1 +1773702089.814066,7.04,4,3992.50,54.85,1568.21,2147.44,0.00,1.657216,10.671980,253,762,36.242673,0.016831,66586294,32779524,0,0,94305,0,1,1 +1773702094.813499,0.60,4,3992.50,54.37,1587.05,2128.61,0.00,3518835670572.784180,3518835670563.585449,205,0,0.000213,0.000570,66586302,32779539,0,0,94308,0,1,1 +1773702099.809456,0.70,4,3992.50,54.12,1596.67,2118.98,0.00,3521284722535.715820,0.000000,75,0,0.000000,0.000020,66586302,32779541,0,0,94310,0,1,1 +1773702104.809565,0.60,4,3992.50,54.08,1598.27,2117.38,0.00,3518360916041.370605,0.000000,11,0,0.000000,0.000030,66586302,32779544,0,0,94313,0,1,1 +1773702109.814379,0.65,4,3992.50,54.11,1597.18,2118.48,0.00,1.656120,10.664925,253,762,0.000000,0.000020,66586302,32779546,0,0,94315,0,1,1 +1773702114.813763,1.00,4,3992.50,54.09,1598.46,2117.93,0.00,61838.379965,68653.123377,4233060,3503974,0.000000,0.000030,66586302,32779549,0,0,94318,0,1,1 +1773702119.813966,0.75,4,3992.50,54.07,1599.50,2117.00,0.00,9.725778,10.709332,4234563,3504765,0.000000,0.000020,66586302,32779551,0,0,94320,0,1,1 +1773702124.810734,0.60,4,3992.50,54.06,1599.95,2116.55,0.00,3520713025368.422363,3520713018549.127441,253,762,0.000000,0.000674,66586302,32779558,0,0,94323,0,1,1 +1773702129.809444,0.65,4,3992.50,54.06,1599.95,2116.55,0.00,3519344938036.292480,3519344938027.272949,11,0,0.000062,0.000070,66586306,32779564,0,0,94325,0,1,1 +1773702134.814219,0.65,4,3992.50,54.06,1599.95,2116.55,0.00,0.180101,0.000000,205,0,0.000338,0.000725,66586324,32779589,0,0,94328,0,1,1 +1773702139.813611,0.70,4,3992.50,54.07,1599.72,2116.79,0.00,3518864952957.706055,0.000000,75,0,0.000031,0.000045,66586326,32779593,0,0,94330,0,1,1 +1773702144.814052,0.90,4,3992.50,54.24,1592.74,2123.76,0.00,1.604058,10.674254,253,762,0.000000,0.000030,66586326,32779596,0,0,94333,0,1,1 +1773702149.815714,4.86,4,3992.50,59.29,1395.34,2321.17,0.00,3517268215245.206055,3517268215236.138184,75,0,1.008779,0.006804,66586670,32779831,0,0,94335,0,1,1 +1773702154.814018,11.25,4,3992.50,55.41,1547.16,2169.34,0.00,61853.338931,68678.751564,4233060,3504095,39.078431,0.028867,66590955,32781957,0,0,94338,0,1,1 +1773702159.812817,0.70,4,3992.50,54.63,1577.55,2138.94,0.00,3519282728631.453125,3519282721806.588867,205,0,0.000008,0.000028,66590956,32781960,0,0,94340,0,1,1 +1773702164.809604,0.65,4,3992.50,54.21,1593.86,2122.63,0.00,61881.734180,68710.315650,4234563,3504871,0.000000,0.000030,66590956,32781963,0,0,94343,0,1,1 +1773702169.809446,0.65,4,3992.50,54.18,1595.15,2121.35,0.00,3518548039712.204102,3518548032887.976074,11,0,0.000000,0.000020,66590956,32781965,0,0,94345,0,1,1 +1773702174.813545,0.95,4,3992.50,54.38,1587.70,2129.13,0.00,0.000000,0.000000,11,0,0.000000,0.000030,66590956,32781968,0,0,94348,0,1,1 +1773702179.813556,0.65,4,3992.50,54.21,1594.04,2122.47,0.00,0.180273,0.000000,205,0,0.000031,0.000045,66590958,32781972,0,0,94350,0,1,1 +1773702184.809449,0.75,4,3992.50,54.16,1596.13,2120.38,0.00,1.996757,0.000195,258,2,0.000008,0.000038,66590959,32781976,0,0,94353,0,1,1 +1773702189.810579,0.60,4,3992.50,54.18,1595.17,2121.34,0.00,3517642643057.282227,3517642643059.457031,11,0,0.000000,0.000664,66590959,32781982,0,0,94355,0,1,1 +1773702194.811531,0.65,4,3992.50,54.18,1595.18,2121.34,0.00,0.053505,0.000000,75,0,0.000087,0.000111,66590965,32781991,0,0,94358,0,1,1 +1773702199.811180,0.70,4,3992.50,54.18,1595.18,2121.34,0.00,61846.426825,68671.180802,4234563,3505036,0.000151,0.000206,66590977,32782005,0,0,94360,0,1,1 +1773702204.811660,0.90,4,3992.50,54.21,1600.32,2122.29,0.00,0.000000,0.032809,4234563,3505052,0.000000,0.000030,66590977,32782008,0,0,94363,0,1,1 +1773702209.813605,0.65,4,3992.50,54.21,1599.95,2122.52,0.00,3517068813130.603027,3517068806308.948730,75,0,0.000000,0.000020,66590977,32782010,0,0,94365,0,1,1 +1773702214.814374,0.95,4,3992.50,54.22,1599.70,2122.76,0.00,61832.580278,68655.864581,4234563,3505089,0.002346,0.001355,66591008,32782040,0,0,94368,0,1,1 +1773702219.813823,14.81,4,3992.50,55.76,1539.36,2183.08,0.00,3518824721657.795898,3518824714841.782715,253,762,40.066320,0.020922,66595287,32783481,0,0,94370,0,1,1 +1773702224.813814,0.60,4,3992.50,55.22,1560.59,2161.87,0.00,3518443876332.741211,3518443876323.670410,75,0,0.000000,0.000030,66595287,32783484,0,0,94373,0,1,1 +1773702229.814111,0.70,4,3992.50,54.69,1581.21,2141.25,0.00,61828.696230,68651.799225,4233060,3504465,0.000000,0.000020,66595287,32783486,0,0,94375,0,1,1 +1773702234.810576,0.85,4,3992.50,54.95,1570.34,2151.25,0.00,3520926117186.425293,3520926110357.963867,205,0,0.000000,0.000030,66595287,32783489,0,0,94378,0,1,1 +1773702239.814116,0.60,4,3992.50,54.92,1571.46,2150.04,0.00,1.993706,0.000195,258,2,0.000000,0.000020,66595287,32783491,0,0,94380,0,1,1 +1773702244.813483,0.65,4,3992.50,54.92,1571.21,2150.29,0.00,3518882322862.870605,3518882322864.866211,205,0,0.000000,0.000030,66595287,32783494,0,0,94383,0,1,1 +1773702249.814068,0.65,4,3992.50,54.92,1571.21,2150.29,0.00,1.477269,10.673947,253,762,0.000000,0.000020,66595287,32783496,0,0,94385,0,1,1 +1773702254.812778,0.60,4,3992.50,54.93,1570.97,2150.53,0.00,3519345076734.261719,3519345076725.242188,11,0,0.000000,0.000674,66595287,32783503,0,0,94388,0,1,1 +1773702259.809566,0.65,4,3992.50,54.75,1577.87,2143.62,0.00,0.180389,0.000000,205,0,0.000000,0.000020,66595287,32783505,0,0,94390,0,1,1 +1773702264.809603,0.95,4,3992.50,54.87,1573.32,2148.24,0.00,61841.507822,68666.197522,4234563,3505328,0.000270,0.000331,66595306,32783528,0,0,94393,0,1,1 +1773702269.813680,0.70,4,3992.50,54.81,1575.51,2145.97,0.00,3515570212893.265137,3515570206083.276855,253,762,0.000016,0.000036,66595308,32783532,0,0,94395,0,1,1 +1773702274.813909,0.85,4,3992.50,54.80,1575.95,2145.53,0.00,0.000000,0.000000,253,762,0.000000,0.000030,66595308,32783535,0,0,94398,0,1,1 +1773702279.809573,0.80,4,3992.50,54.60,1583.61,2137.88,0.00,0.518125,3521490404440.001465,258,2,0.002236,0.000409,66595332,32783552,0,0,94400,0,1,1 +1773702284.812609,16.65,4,3992.50,55.86,1534.43,2187.01,0.00,3516302252212.092285,3516302252214.266602,11,0,40.053849,0.028635,66600886,32785519,0,0,94403,0,1,1 +1773702289.810175,0.70,4,3992.50,54.86,1573.64,2147.82,0.00,0.180361,0.000000,205,0,0.000772,0.000451,66600903,32785532,0,0,94405,0,1,1 +1773702294.812301,1.00,4,3992.50,54.71,1592.00,2141.95,0.00,3516942239033.708496,0.000000,75,0,0.000000,0.000030,66600903,32785535,0,0,94408,0,1,1 +1773702299.812886,0.55,4,3992.50,54.59,1596.72,2137.24,0.00,61834.852706,68658.876387,4234563,3505531,0.000000,0.000020,66600903,32785537,0,0,94410,0,1,1 +1773702304.812901,0.70,4,3992.50,54.59,1596.78,2137.16,0.00,3518426344768.492188,3518426337943.744141,11,0,0.000000,0.000030,66600903,32785540,0,0,94413,0,1,1 +1773702309.814440,0.70,4,3992.50,54.59,1596.80,2137.16,0.00,61813.434781,68635.238164,4233062,3504892,0.000000,0.000020,66600903,32785542,0,0,94415,0,1,1 +1773702314.809670,0.50,4,3992.50,54.59,1596.80,2137.16,0.00,3521797170469.846680,3521797163648.453613,253,762,0.000000,0.000030,66600903,32785545,0,0,94418,0,1,1 +1773702319.814190,0.65,4,3992.50,54.59,1596.55,2137.41,0.00,3515259154476.898438,3515259154467.708984,205,0,0.000000,0.000663,66600903,32785551,0,0,94420,0,1,1 +1773702324.809741,0.95,4,3992.50,54.91,1584.04,2149.99,0.00,61897.078699,68728.232975,4234565,3505679,0.000000,0.000030,66600903,32785554,0,0,94423,0,1,1 +1773702329.809558,0.90,4,3992.50,54.80,1588.36,2145.62,0.00,3518566114452.237793,3518566107627.091797,11,0,0.000136,0.000169,66600913,32785566,0,0,94425,0,1,1 +1773702334.811064,0.70,4,3992.50,54.78,1589.31,2144.66,0.00,2.174735,0.000195,258,2,0.000043,0.000077,66600917,32785573,0,0,94428,0,1,1 +1773702339.813917,0.60,4,3992.50,54.80,1588.57,2145.40,0.00,3516430862835.346680,3516430862837.520996,11,0,0.000000,0.000020,66600917,32785575,0,0,94430,0,1,1 +1773702344.814375,0.70,4,3992.50,54.61,1596.02,2137.95,0.00,0.053511,0.000000,75,0,0.000000,0.000030,66600917,32785578,0,0,94433,0,1,1 +1773702349.814195,17.77,4,3992.50,54.17,1612.94,2121.03,0.00,0.000000,0.000000,75,0,40.078410,0.027498,66606433,32787539,0,0,94435,0,1,1 +1773702354.809562,1.05,4,3992.50,54.85,1586.68,2147.36,0.00,61889.752103,68720.307604,4233062,3505118,0.003029,0.001440,66606490,32787579,0,0,94438,0,1,1 +1773702359.809459,1.15,4,3992.50,54.52,1599.59,2134.43,0.00,3518509838056.594727,3518509831232.281250,11,0,0.000000,0.000020,66606490,32787581,0,0,94440,0,1,1 +1773702364.813616,0.70,4,3992.50,54.41,1603.89,2130.13,0.00,0.053471,0.000000,75,0,0.000000,0.000030,66606490,32787584,0,0,94443,0,1,1 +1773702369.813934,0.60,4,3992.50,54.40,1604.09,2129.93,0.00,0.126750,0.000000,205,0,0.000000,0.000020,66606490,32787586,0,0,94445,0,1,1 +1773702374.809468,0.70,4,3992.50,54.24,1610.38,2123.64,0.00,1.478762,10.684739,253,762,0.000000,0.000030,66606490,32787589,0,0,94448,0,1,1 +1773702379.809539,0.55,4,3992.50,54.27,1609.16,2124.86,0.00,3518387610875.249512,3518387610866.052246,205,0,0.000000,0.000020,66606490,32787591,0,0,94450,0,1,1 +1773702384.813965,0.90,4,3992.50,54.72,1591.72,2142.30,0.00,3515325343756.551758,0.000000,11,0,0.000116,0.001201,66606497,32787607,0,0,94453,0,1,1 +1773702389.809556,0.65,4,3992.50,54.50,1600.27,2133.71,0.00,61887.025565,68717.353603,4233062,3505236,0.000221,0.000059,66606499,32787612,0,0,94455,0,1,1 +1773702394.809468,0.85,4,3992.50,54.45,1602.29,2131.70,0.00,3518499137378.122070,3518499130551.521484,258,2,0.001333,0.001939,66606523,32787640,0,0,94458,0,1,1 +1773702399.814098,0.55,4,3992.50,54.45,1602.16,2131.82,0.00,3515182080675.372070,10.665124,253,762,0.000105,0.000144,66606531,32787650,0,0,94460,0,1,1 +1773702404.813776,0.70,4,3992.50,54.44,1602.70,2131.29,0.00,3518663534246.374512,3518663534237.176270,205,0,0.000000,0.000030,66606531,32787653,0,0,94463,0,1,1 +1773702409.811927,0.70,4,3992.50,54.45,1602.25,2131.73,0.00,0.000000,0.000000,205,0,0.000000,0.000020,66606531,32787655,0,0,94465,0,1,1 +1773702414.809480,0.95,4,3992.50,54.84,1587.32,2147.24,0.00,3520160361173.407227,0.000000,75,0,0.000000,0.000030,66606531,32787658,0,0,94468,0,1,1 +1773702419.814338,15.27,4,3992.50,54.48,1600.93,2133.04,0.00,3515021728352.115234,0.000000,11,0,40.037577,0.026603,66612014,32789550,0,0,94470,0,1,1 +1773702424.809571,0.95,4,3992.50,54.48,1600.82,2133.16,0.00,61891.461871,68722.439745,4233062,3505424,0.003247,0.001675,66612083,32789609,0,0,94473,0,1,1 +1773702429.809575,0.65,4,3992.50,54.48,1600.82,2133.16,0.00,3518434372415.056152,3518434365599.613281,253,762,0.000000,0.000020,66612083,32789611,0,0,94475,0,1,1 +1773702434.809480,0.65,4,3992.50,54.49,1600.57,2133.40,0.00,3518504272980.440430,3518504272971.369629,75,0,0.000266,0.000589,66612094,32789627,0,0,94478,0,1,1 +1773702439.811205,0.75,4,3992.50,54.50,1600.34,2133.63,0.00,61820.794991,68643.949137,4234565,3506230,0.000031,0.000047,66612096,32789631,0,0,94480,0,1,1 +1773702444.809581,0.85,4,3992.50,54.27,1593.70,2124.77,0.00,3519580298274.905762,3519580291447.232910,11,0,0.000000,0.000030,66612096,32789634,0,0,94483,0,1,1 +1773702449.814383,0.75,4,3992.50,54.27,1593.76,2124.62,0.00,61782.842136,68601.827674,4234565,3506263,0.002137,0.002836,66612132,32789672,0,0,94485,0,1,1 +1773702454.812581,1.60,4,3992.50,54.27,1593.77,2124.62,0.00,0.000000,0.035950,4234565,3506297,0.001762,0.001396,66612159,32789693,0,0,94488,0,1,1 +1773702459.809567,0.55,4,3992.50,54.27,1593.77,2124.62,0.00,0.000000,0.002345,4234565,3506300,0.000008,0.000028,66612160,32789696,0,0,94490,0,1,1 +1773702464.809864,0.60,4,3992.50,54.08,1601.16,2117.22,0.00,3518228167717.723633,3518228167716.776855,4233062,3505539,0.000031,0.000055,66612162,32789701,0,0,94493,0,1,1 +1773702469.813758,0.65,4,3992.50,54.08,1600.95,2117.44,0.00,3515699384750.674805,3515699377931.178711,205,0,0.000080,0.000113,66612168,32789709,0,0,94495,0,1,1 +1773702474.809577,1.00,4,3992.50,54.68,1577.58,2140.81,0.00,1.996787,0.000195,258,2,0.000000,0.000030,66612168,32789712,0,0,94498,0,1,1 +1773702479.810553,0.65,4,3992.50,54.43,1587.19,2131.20,0.00,61818.208291,68643.724523,4233062,3505572,0.000031,0.000045,66612170,32789716,0,0,94500,0,1,1 +1773702484.809471,0.65,4,3992.50,54.24,1594.71,2123.68,0.00,3519198923407.481934,3519198916581.149902,205,0,0.000000,0.000030,66612170,32789719,0,0,94503,0,1,1 +1773702489.813375,16.88,4,3992.50,55.77,1534.89,2183.48,0.00,1.993561,0.000195,258,2,40.044802,0.026990,66617620,32791641,0,0,94505,0,1,1 +1773702494.814039,0.90,4,3992.50,54.85,1570.95,2147.43,0.00,61822.078859,68648.128881,4233062,3505712,0.003166,0.001475,66617682,32791683,0,0,94508,0,1,1 +1773702499.810848,0.70,4,3992.50,54.22,1595.63,2122.75,0.00,9.732383,10.690025,4234565,3506481,0.000025,0.000051,66617684,32791687,0,0,94510,0,1,1 +1773702504.813029,1.10,4,3992.50,54.30,1592.23,2126.06,0.00,3516902815189.166016,3516902808366.225098,205,0,0.000000,0.000030,66617684,32791690,0,0,94513,0,1,1 +1773702509.810652,0.55,4,3992.50,54.06,1601.59,2116.67,0.00,1.996066,0.000195,258,2,0.000000,0.000020,66617684,32791692,0,0,94515,0,1,1 +1773702514.809602,0.70,4,3992.50,54.06,1601.53,2116.73,0.00,3519176006392.145020,3519176006394.267090,75,0,0.000000,0.000674,66617684,32791699,0,0,94518,0,1,1 +1773702519.810242,0.70,4,3992.50,54.04,1602.37,2115.89,0.00,61824.496725,68648.576005,4233062,3505784,0.000000,0.000020,66617684,32791701,0,0,94520,0,1,1 +1773702524.810960,0.80,4,3992.50,54.04,1602.31,2115.95,0.00,0.000000,0.032027,4233062,3505815,0.000000,0.000030,66617684,32791704,0,0,94523,0,1,1 +1773702529.811746,0.70,4,3992.50,54.06,1601.53,2116.73,0.00,3517884468404.362305,3517884461580.323730,205,0,0.000000,0.000020,66617684,32791706,0,0,94525,0,1,1 +1773702534.812223,0.95,4,3992.50,54.15,1608.76,2120.14,0.00,3518101255543.443848,0.000000,11,0,0.000056,0.000086,66617688,32791713,0,0,94528,0,1,1 +1773702539.812995,0.70,4,3992.50,53.94,1616.89,2112.02,0.00,1.657459,10.673548,253,762,0.000124,0.000160,66617698,32791725,0,0,94530,0,1,1 +1773702544.813407,0.65,4,3992.50,53.80,1622.57,2106.34,0.00,0.000000,0.000000,253,762,0.000000,0.000030,66617698,32791728,0,0,94533,0,1,1 +1773702549.814183,0.65,4,3992.50,53.80,1622.57,2106.34,0.00,3517891060515.866699,3517891060506.850586,11,0,0.000000,0.000020,66617698,32791730,0,0,94535,0,1,1 +1773702554.813797,16.17,4,3992.50,59.20,1411.10,2317.79,0.00,61846.957969,68673.430564,4234565,3506652,33.993830,0.025436,66622520,32793538,0,0,94538,0,1,1 +1773702559.810750,1.00,4,3992.50,54.58,1592.15,2136.75,0.00,3520583022662.677734,3520583015832.515137,75,0,6.091358,0.003126,66623180,32793701,0,0,94540,0,1,1 +1773702564.809569,0.90,4,3992.50,54.28,1606.00,2125.10,0.00,3519267890541.347168,0.000000,11,0,0.000000,0.000030,66623180,32793704,0,0,94543,0,1,1 +1773702569.810971,0.75,4,3992.50,54.18,1607.92,2121.18,0.00,61824.857214,68649.029714,4234565,3506745,0.000000,0.000020,66623180,32793706,0,0,94545,0,1,1 +1773702574.809461,0.60,4,3992.50,54.13,1609.62,2119.47,0.00,3519499570633.560059,3519499563805.360352,75,0,0.000000,0.000030,66623180,32793709,0,0,94548,0,1,1 +1773702579.810682,0.60,4,3992.50,54.17,1608.40,2120.70,0.00,0.126727,0.000000,205,0,0.000000,0.000664,66623180,32793715,0,0,94550,0,1,1 +1773702584.812042,0.60,4,3992.50,54.17,1608.13,2120.97,0.00,61825.187524,68649.679391,4234565,3506834,0.000000,0.000030,66623180,32793718,0,0,94553,0,1,1 +1773702589.814113,0.70,4,3992.50,54.19,1607.39,2121.71,0.00,3516980198603.568359,3516980191780.227539,11,0,0.000000,0.000020,66623180,32793720,0,0,94555,0,1,1 +1773702594.813932,0.90,4,3992.50,54.46,1592.74,2132.31,0.00,0.000000,0.000000,11,0,0.000000,0.000030,66623180,32793723,0,0,94558,0,1,1 +1773702599.814161,0.70,4,3992.50,54.52,1589.90,2134.71,0.00,1.657639,10.674706,253,762,0.000031,0.000045,66623182,32793727,0,0,94560,0,1,1 +1773702604.814001,0.70,4,3992.50,54.52,1589.91,2134.69,0.00,61842.501907,68659.950514,4234565,3506884,0.000146,0.000201,66623194,32793742,0,0,94563,0,1,1 +1773702609.814373,0.85,4,3992.50,54.53,1589.67,2134.93,0.00,3518175367354.094727,3518175360526.179199,258,2,0.000000,0.000020,66623194,32793744,0,0,94565,0,1,1 +1773702614.813450,0.55,4,3992.50,54.53,1589.67,2134.93,0.00,3519086904817.023926,3519086904819.019531,205,0,0.000000,0.000030,66623194,32793747,0,0,94568,0,1,1 +1773702619.813823,14.01,4,3992.50,59.17,1407.88,2316.73,0.00,61827.670801,68652.717988,4233062,3506205,14.354012,0.022300,66626208,32795252,0,0,94570,0,1,1 +1773702624.812288,3.87,4,3992.50,54.09,1596.83,2117.76,0.00,3519517660793.617188,3519517653966.145996,11,0,25.732077,0.006386,66628636,32795656,0,0,94573,0,1,1 +1773702629.810217,0.90,4,3992.50,54.07,1597.56,2117.05,0.00,0.000000,0.000000,11,0,0.000000,0.000020,66628636,32795658,0,0,94575,0,1,1 +1773702634.814182,0.70,4,3992.50,54.07,1597.57,2117.04,0.00,61783.463220,68603.656583,4233062,3506418,0.000000,0.000030,66628636,32795661,0,0,94578,0,1,1 +1773702639.813699,0.75,4,3992.50,54.08,1597.32,2117.28,0.00,3518777269246.567871,3518777262420.306641,11,0,0.000000,0.000020,66628636,32795663,0,0,94580,0,1,1 +1773702644.814090,0.65,4,3992.50,54.11,1596.10,2118.51,0.00,0.000000,0.000000,11,0,0.000000,0.000674,66628636,32795670,0,0,94583,0,1,1 +1773702649.809572,0.70,4,3992.50,54.11,1596.10,2118.51,0.00,0.000000,0.000000,11,0,0.000000,0.000020,66628636,32795672,0,0,94585,0,1,1 +1773702654.811075,0.95,4,3992.50,54.11,1603.51,2118.50,0.00,1.657216,10.671985,253,762,0.000000,0.000030,66628636,32795675,0,0,94588,0,1,1 +1773702659.813937,0.60,4,3992.50,54.11,1603.52,2118.46,0.00,0.000000,0.000000,253,762,0.000000,0.000020,66628636,32795677,0,0,94590,0,1,1 +1773702664.813869,0.70,4,3992.50,54.11,1603.55,2118.46,0.00,61841.358696,68659.063703,4234565,3507228,0.000031,0.000055,66628638,32795682,0,0,94593,0,1,1 +1773702669.813563,0.60,4,3992.50,54.11,1603.55,2118.46,0.00,3518652963620.722168,3518652956793.492676,205,0,0.000144,0.000191,66628650,32795696,0,0,94595,0,1,1 +1773702674.811540,0.55,4,3992.50,54.11,1603.55,2118.46,0.00,1.995925,0.000195,258,2,0.000000,0.000030,66628650,32795699,0,0,94598,0,1,1 +1773702679.810610,0.70,4,3992.50,54.11,1603.55,2118.46,0.00,3519091473441.039062,3519091473443.214844,11,0,0.000000,0.000020,66628650,32795701,0,0,94600,0,1,1 +1773702684.809478,0.95,4,3992.50,54.50,1594.49,2133.95,0.00,0.000000,0.000000,11,0,0.000000,0.000030,66628650,32795704,0,0,94603,0,1,1 +1773702689.817538,5.81,4,3992.50,59.80,1387.02,2341.35,0.00,1.655047,10.658015,253,762,0.198372,0.004908,66629045,32795895,0,0,94605,0,1,1 +1773702694.810642,9.70,4,3992.50,55.20,1567.06,2161.31,0.00,0.000000,0.000000,253,762,39.937569,0.023868,66634290,32797626,0,0,94608,0,1,1 +1773702699.809588,0.70,4,3992.50,54.66,1588.46,2139.91,0.00,61843.838113,68662.100218,4233063,3506670,0.000000,0.000020,66634290,32797628,0,0,94610,0,1,1 +1773702704.813931,0.65,4,3992.50,54.44,1596.84,2131.54,0.00,3515384221466.680176,3515384214646.760254,11,0,0.000000,0.000030,66634290,32797631,0,0,94613,0,1,1 +1773702709.813487,0.70,4,3992.50,54.26,1603.96,2124.41,0.00,0.000000,0.000000,11,0,0.000000,0.000664,66634290,32797637,0,0,94615,0,1,1 +1773702714.814084,0.85,4,3992.50,54.71,1586.25,2142.12,0.00,0.000000,0.000000,11,0,0.000000,0.000030,66634290,32797640,0,0,94618,0,1,1 +1773702719.814060,0.70,4,3992.50,54.70,1586.45,2141.81,0.00,2.175401,0.000195,258,2,0.000000,0.000020,66634290,32797642,0,0,94620,0,1,1 +1773702724.814291,0.55,4,3992.50,54.71,1586.42,2141.84,0.00,0.000000,0.000000,258,2,0.000000,0.000030,66634290,32797645,0,0,94623,0,1,1 +1773702729.810895,0.75,4,3992.50,54.70,1586.70,2141.55,0.00,61882.053113,68715.793972,4234566,3507510,0.000000,0.000020,66634290,32797647,0,0,94625,0,1,1 +1773702734.809702,0.75,4,3992.50,54.70,1586.70,2141.55,0.00,3519276434643.027832,3519276427814.422852,75,0,0.000267,0.000615,66634301,32797665,0,0,94628,0,1,1 +1773702739.812591,0.60,4,3992.50,54.70,1586.70,2141.55,0.00,3516405721518.927734,0.000000,11,0,0.000172,0.000196,66634314,32797679,0,0,94630,0,1,1 +1773702744.813760,0.95,4,3992.50,54.70,1583.87,2141.79,0.00,61818.014120,68642.428941,4233063,3506767,0.000000,0.000030,66634314,32797682,0,0,94633,0,1,1 +1773702749.813815,0.75,4,3992.50,54.68,1584.69,2140.93,0.00,3518398432707.598145,3518398425879.488281,258,2,0.002167,0.002204,66634352,32797717,0,0,94635,0,1,1 +1773702754.810433,0.70,4,3992.50,54.68,1584.93,2140.69,0.00,61872.136629,68704.957372,4233063,3506785,0.001775,0.001417,66634380,32797740,0,0,94638,0,1,1 +1773702759.813597,10.77,4,3992.50,59.32,1403.11,2322.49,0.00,3516212092961.188477,3516212086139.301270,205,0,3.025957,0.018577,66636281,32799031,0,0,94640,0,1,1 +1773702764.812450,8.73,4,3992.50,54.53,1590.71,2134.89,0.00,61856.191156,68685.023307,4234566,3507699,37.068052,0.011366,66640543,32799821,0,0,94643,0,1,1 +1773702769.810596,0.65,4,3992.50,54.37,1596.93,2128.68,0.00,0.000000,0.005568,4234566,3507706,0.000000,0.000033,66640543,32799824,0,0,94645,0,1,1 +1773702774.809844,0.90,4,3992.50,54.81,1583.28,2146.03,0.00,3518966427642.113281,3518966427641.260742,4233063,3506998,0.000000,0.000674,66640543,32799831,0,0,94648,0,1,1 +1773702779.813776,0.80,4,3992.50,54.79,1584.41,2144.96,0.00,3515672869100.066406,3515672862279.189941,11,0,0.000031,0.000045,66640545,32799835,0,0,94650,0,1,1 +1773702784.810639,0.65,4,3992.50,54.78,1584.50,2144.86,0.00,2.176756,0.000195,258,2,0.000000,0.000030,66640545,32799838,0,0,94653,0,1,1 +1773702789.810624,0.65,4,3992.50,54.77,1585.16,2144.20,0.00,61830.471796,68658.945795,4233063,3507037,0.000000,0.000020,66640545,32799840,0,0,94655,0,1,1 +1773702794.814172,0.70,4,3992.50,54.76,1585.42,2143.95,0.00,3515941937203.590332,3515941930381.972656,205,0,0.000056,0.000086,66640549,32799847,0,0,94658,0,1,1 +1773702799.814404,0.65,4,3992.50,54.57,1592.81,2136.55,0.00,1.995025,0.000195,258,2,0.000035,0.000059,66640552,32799852,0,0,94660,0,1,1 +1773702804.813725,0.85,4,3992.50,54.58,1600.26,2136.77,0.00,3518914974783.940918,10.676450,253,762,0.000031,0.000055,66640554,32799857,0,0,94663,0,1,1 +1773702809.814657,0.75,4,3992.50,54.58,1600.28,2136.74,0.00,3517781143401.854004,3517781143392.838379,11,0,0.000145,0.000194,66640565,32799870,0,0,94665,0,1,1 +1773702814.813851,0.55,4,3992.50,54.58,1600.28,2136.73,0.00,61852.161849,68680.535028,4234566,3507833,0.000000,0.000030,66640565,32799873,0,0,94668,0,1,1 +1773702819.814354,0.65,4,3992.50,54.58,1600.29,2136.73,0.00,0.000000,0.004687,4234566,3507836,0.000000,0.000020,66640565,32799875,0,0,94670,0,1,1 +1773702824.813686,1.15,4,3992.50,54.52,1602.30,2134.68,0.00,3518907590400.242188,3518907590399.301758,4233063,3507103,0.003794,0.002666,66640626,32799921,0,0,94673,0,1,1 +1773702829.810705,15.96,4,3992.50,55.35,1570.03,2166.97,0.00,3520535753903.996582,3520535747073.588379,11,0,40.099185,0.026638,66646065,32801904,0,0,94675,0,1,1 +1773702834.813555,0.90,4,3992.50,55.01,1578.58,2153.93,0.00,0.000000,0.000000,11,0,0.000000,0.000030,66646065,32801907,0,0,94678,0,1,1 +1773702839.809446,0.60,4,3992.50,54.75,1588.95,2143.57,0.00,0.000000,0.000000,11,0,0.000000,0.000503,66646065,32801912,0,0,94680,0,1,1 +1773702844.813923,0.65,4,3992.50,54.76,1588.70,2143.82,0.00,0.000000,0.000000,11,0,0.000000,0.000191,66646065,32801916,0,0,94683,0,1,1 +1773702849.809568,0.65,4,3992.50,54.76,1588.71,2143.81,0.00,61886.364408,68718.888156,4233063,3507319,0.000000,0.000020,66646065,32801918,0,0,94685,0,1,1 +1773702854.809571,0.60,4,3992.50,54.76,1588.71,2143.81,0.00,3518435325910.270508,3518435319092.718750,253,762,0.000000,0.000030,66646065,32801921,0,0,94688,0,1,1 +1773702859.809454,0.65,4,3992.50,54.76,1588.47,2144.05,0.00,3518519373346.001953,3518519373336.931152,75,0,0.000000,0.000020,66646065,32801923,0,0,94690,0,1,1 +1773702864.812575,0.95,4,3992.50,54.77,1589.23,2144.29,0.00,0.126679,0.000000,205,0,0.000000,0.000030,66646065,32801926,0,0,94693,0,1,1 +1773702869.813466,0.65,4,3992.50,54.77,1589.12,2144.25,0.00,3517810324529.811523,0.000000,75,0,0.000031,0.000045,66646067,32801930,0,0,94695,0,1,1 +1773702874.813811,0.80,4,3992.50,54.57,1596.75,2136.62,0.00,0.000000,0.000000,75,0,0.000134,0.000193,66646078,32801944,0,0,94698,0,1,1 +1773702879.814285,0.60,4,3992.50,54.58,1596.52,2136.86,0.00,61836.279210,68663.273009,4234566,3508124,0.000008,0.000028,66646079,32801947,0,0,94700,0,1,1 +1773702884.813816,0.65,4,3992.50,54.58,1596.52,2136.86,0.00,3518766899034.325195,3518766899033.378418,4233063,3507363,0.000000,0.000030,66646079,32801950,0,0,94703,0,1,1 +1773702889.813557,1.15,4,3992.50,54.31,1607.10,2126.27,0.00,0.000000,0.008301,4233063,3507388,0.003766,0.002675,66646138,32801996,0,0,94705,0,1,1 +1773702894.810896,17.28,4,3992.50,55.71,1541.79,2181.35,0.00,3520310414055.794922,3520310407225.458496,75,0,40.083112,0.021649,66650485,32803583,0,0,94708,0,1,1 +1773702899.809585,0.70,4,3992.50,54.78,1578.22,2144.92,0.00,0.000000,0.000000,75,0,0.000000,0.000020,66650485,32803585,0,0,94710,0,1,1 +1773702904.810798,0.95,4,3992.50,54.50,1589.47,2133.66,0.00,1.603810,10.672606,253,762,0.000000,0.000513,66650485,32803591,0,0,94713,0,1,1 +1773702909.813758,0.70,4,3992.50,54.47,1590.32,2132.81,0.00,61803.947543,68618.766880,4234566,3508408,0.000000,0.000181,66650485,32803594,0,0,94715,0,1,1 +1773702914.809465,0.90,4,3992.50,54.30,1597.26,2125.88,0.00,0.000000,0.004692,4234566,3508412,0.000000,0.000030,66650485,32803597,0,0,94718,0,1,1 +1773702919.811053,0.75,4,3992.50,54.30,1597.26,2125.88,0.00,3517319939301.762695,3517319932476.055664,11,0,0.000000,0.000020,66650485,32803599,0,0,94720,0,1,1 +1773702924.812502,1.20,4,3992.50,54.30,1596.18,2126.09,0.00,0.180221,0.000000,205,0,0.000000,0.000030,66650485,32803602,0,0,94723,0,1,1 +1773702929.809574,1.00,4,3992.50,54.30,1596.12,2126.06,0.00,3520498339555.686523,0.000000,11,0,0.000000,0.000020,66650485,32803604,0,0,94725,0,1,1 +1773702934.809445,0.65,4,3992.50,54.26,1597.73,2124.45,0.00,61843.787580,68671.931682,4234566,3508480,0.000000,0.000030,66650485,32803607,0,0,94728,0,1,1 +1773702939.809506,0.70,4,3992.50,54.27,1597.51,2124.67,0.00,3518394546319.844727,3518394539491.959961,11,0,0.000157,0.000200,66650497,32803621,0,0,94730,0,1,1 +1773702944.809462,0.60,4,3992.50,54.27,1597.51,2124.67,0.00,1.657729,10.675288,253,762,0.000016,0.000046,66650499,32803626,0,0,94733,0,1,1 +1773702949.812375,0.65,4,3992.50,54.27,1597.52,2124.67,0.00,3516388548254.330566,3516388548245.318359,11,0,0.000000,0.000020,66650499,32803628,0,0,94735,0,1,1 +1773702954.814254,1.05,4,3992.50,54.12,1600.98,2118.75,0.00,0.180206,0.000000,205,0,0.002208,0.000724,66650521,32803646,0,0,94738,0,1,1 +1773702959.813927,15.54,4,3992.50,54.01,1605.02,2114.64,0.00,61846.060403,68674.820882,4234566,3508646,40.066024,0.024093,66654855,32805251,0,0,94740,0,1,1 +1773702964.813668,0.60,4,3992.50,54.02,1604.80,2114.88,0.00,3518619227749.849121,3518619227748.911621,4233063,3507891,0.000000,0.000030,66654855,32805254,0,0,94743,0,1,1 +1773702969.810835,0.65,4,3992.50,54.02,1604.80,2114.87,0.00,9.731686,10.683788,4234566,3508657,0.000000,0.000664,66654855,32805260,0,0,94745,0,1,1 +1773702974.809567,0.70,4,3992.50,54.02,1604.80,2114.88,0.00,3519329476551.295410,3519329469719.241699,258,2,0.000000,0.000030,66654855,32805263,0,0,94748,0,1,1 +1773702979.809461,0.50,4,3992.50,54.02,1604.80,2114.87,0.00,61841.326159,68671.798892,4234566,3508662,0.000000,0.000020,66654855,32805265,0,0,94750,0,1,1 +1773702984.809446,1.00,4,3992.50,54.02,1612.58,2114.84,0.00,3518447378687.646484,3518447371868.491699,253,762,0.000000,0.000030,66654855,32805268,0,0,94753,0,1,1 +1773702989.811135,1.45,4,3992.50,54.02,1610.29,2115.02,0.00,3517249291698.917480,3517249291689.850098,75,0,0.001229,0.001244,66654864,32805284,0,0,94755,0,1,1 +1773702994.813477,0.65,4,3992.50,54.03,1610.04,2115.27,0.00,2.120882,0.000195,258,2,0.000213,0.000570,66654872,32805299,0,0,94758,0,1,1 +1773702999.814268,0.55,4,3992.50,54.03,1610.05,2115.27,0.00,61830.231948,68659.600382,4234566,3508735,0.000000,0.000020,66654872,32805301,0,0,94760,0,1,1 +1773703004.814127,0.75,4,3992.50,54.03,1610.05,2115.27,0.00,3518536693482.800781,3518536686663.352051,253,762,0.000157,0.000210,66654884,32805316,0,0,94763,0,1,1 +1773703009.810914,0.65,4,3992.50,53.89,1615.42,2109.89,0.00,0.000000,0.000000,253,762,0.000000,0.000020,66654884,32805318,0,0,94765,0,1,1 +1773703014.809497,0.75,4,3992.50,53.89,1608.48,2109.89,0.00,61848.330622,68668.609256,4233063,3507997,0.000000,0.000030,66654884,32805321,0,0,94768,0,1,1 +1773703019.809534,6.71,4,3992.50,59.14,1402.86,2315.44,0.00,3518410884928.390625,3518410878100.897461,205,0,7.416625,0.010633,66655924,32805999,0,0,94770,0,1,1 +1773703024.809477,5.42,4,3992.50,54.16,1597.77,2120.52,0.00,3518477102080.098633,0.000000,11,0,32.647382,0.011880,66659217,32806841,0,0,94773,0,1,1 +1773703029.809447,0.55,4,3992.50,54.16,1597.78,2120.52,0.00,2.175404,0.000195,258,2,0.000000,0.000020,66659217,32806843,0,0,94775,0,1,1 +1773703034.809466,0.60,4,3992.50,54.16,1597.78,2120.52,0.00,61839.799203,68670.436824,4234567,3508973,0.000236,0.000909,66659226,32806861,0,0,94778,0,1,1 +1773703039.809471,0.65,4,3992.50,54.16,1597.78,2120.52,0.00,3518434006488.969238,3518433999658.311035,258,2,0.000031,0.000367,66659228,32806867,0,0,94780,0,1,1 +1773703044.809483,0.95,4,3992.50,54.23,1592.05,2123.16,0.00,3518428901870.440918,3518428901872.562988,75,0,0.000000,0.000030,66659228,32806870,0,0,94783,0,1,1 +1773703049.809471,0.70,4,3992.50,54.22,1592.49,2122.75,0.00,61832.579087,68660.298397,4233064,3508279,0.001417,0.001182,66659257,32806896,0,0,94785,0,1,1 +1773703054.814286,0.65,4,3992.50,54.23,1592.14,2123.09,0.00,0.000000,0.015610,4233064,3508287,0.001740,0.001360,66659283,32806915,0,0,94788,0,1,1 +1773703059.813896,0.55,4,3992.50,54.22,1592.50,2122.74,0.00,0.000000,0.005469,4233064,3508292,0.000000,0.000020,66659283,32806917,0,0,94790,0,1,1 +1773703064.813688,0.65,4,3992.50,54.22,1592.50,2122.74,0.00,3518582950794.799316,3518582943966.792480,75,0,0.000031,0.000055,66659285,32806922,0,0,94793,0,1,1 +1773703069.813475,0.65,4,3992.50,54.22,1592.28,2122.96,0.00,3518587244258.111328,0.000000,11,0,0.000076,0.000113,66659291,32806930,0,0,94795,0,1,1 +1773703074.813550,0.85,4,3992.50,54.46,1583.07,2132.28,0.00,2.175358,0.000195,258,2,0.000000,0.000030,66659291,32806933,0,0,94798,0,1,1 +1773703079.814386,0.75,4,3992.50,54.20,1593.04,2122.20,0.00,3517848557431.933105,3517848557434.108398,11,0,0.000031,0.000045,66659293,32806937,0,0,94800,0,1,1 +1773703084.816539,2.81,4,3992.50,59.19,1397.97,2317.25,0.00,0.053493,0.000000,75,0,0.606370,0.005024,66659526,32807099,0,0,94803,0,1,1 +1773703089.814042,15.86,4,3992.50,55.14,1556.46,2158.78,0.00,61863.343212,68694.623526,4233065,3508474,39.479234,0.019387,66663713,32808505,0,0,94805,0,1,1 +1773703094.812253,0.60,4,3992.50,54.62,1576.68,2138.56,0.00,3519696287424.199707,3519696280593.941406,11,0,0.000056,0.000086,66663717,32808512,0,0,94808,0,1,1 +1773703099.811769,0.60,4,3992.50,54.36,1586.75,2128.49,0.00,0.000000,0.000000,11,0,0.000025,0.000373,66663719,32808518,0,0,94810,0,1,1 +1773703104.813244,1.00,4,3992.50,54.40,1585.45,2129.93,0.00,2.174749,0.000195,258,2,0.000000,0.000352,66663719,32808523,0,0,94813,0,1,1 +1773703109.811298,0.65,4,3992.50,54.21,1592.61,2122.63,0.00,3519807553733.292969,3519807553735.289062,205,0,0.000000,0.000020,66663719,32808525,0,0,94815,0,1,1 +1773703114.809571,0.65,4,3992.50,54.21,1592.61,2122.63,0.00,61863.409026,68694.842401,4234568,3509322,0.000000,0.000030,66663719,32808528,0,0,94818,0,1,1 +1773703119.813805,0.75,4,3992.50,54.22,1592.39,2122.85,0.00,3515460529975.380371,3515460523150.090332,258,2,0.000000,0.000020,66663719,32808530,0,0,94820,0,1,1 +1773703124.809626,0.70,4,3992.50,54.22,1592.44,2122.81,0.00,3521379826693.751953,10.683928,253,762,0.000000,0.000030,66663719,32808533,0,0,94823,0,1,1 +1773703129.813692,0.65,4,3992.50,54.23,1592.20,2123.05,0.00,3515578674283.588867,3515578674274.579102,11,0,0.000031,0.000045,66663721,32808537,0,0,94825,0,1,1 +1773703134.813217,1.00,4,3992.50,54.24,1593.48,2123.78,0.00,0.000000,0.000000,11,0,0.000126,0.000185,66663731,32808550,0,0,94828,0,1,1 +1773703139.814164,0.65,4,3992.50,53.93,1604.05,2111.38,0.00,0.180239,0.000000,205,0,0.000016,0.000036,66663733,32808554,0,0,94830,0,1,1 +1773703144.813636,0.70,4,3992.50,53.93,1603.84,2111.59,0.00,61838.859294,68667.900302,4233065,3508631,0.000000,0.000030,66663733,32808557,0,0,94833,0,1,1 +1773703149.813552,0.95,4,3992.50,53.85,1607.04,2108.41,0.00,9.726334,10.690413,4234568,3509413,0.002209,0.000714,66663755,32808574,0,0,94835,0,1,1 +1773703154.809553,16.78,4,3992.50,54.53,1580.59,2134.85,0.00,3521253220711.123535,3521253213876.375000,205,0,40.095918,0.020077,66668192,32809909,0,0,94838,0,1,1 +1773703159.809553,0.65,4,3992.50,54.17,1594.54,2120.91,0.00,0.000000,0.000000,205,0,0.000000,0.000020,66668192,32809911,0,0,94840,0,1,1 +1773703164.813415,1.00,4,3992.50,54.41,1587.87,2130.46,0.00,3515722068059.453125,0.000000,75,0,0.000000,0.000191,66668192,32809915,0,0,94843,0,1,1 +1773703169.810827,0.65,4,3992.50,54.41,1587.56,2130.45,0.00,0.126823,0.000000,205,0,0.000000,0.000503,66668192,32809920,0,0,94845,0,1,1 +1773703174.813600,0.60,4,3992.50,54.41,1587.56,2130.45,0.00,61798.046477,68622.808799,4233065,3508853,0.000000,0.000030,66668192,32809923,0,0,94848,0,1,1 +1773703179.814219,0.55,4,3992.50,54.41,1587.56,2130.45,0.00,3518001678248.961914,3518001671421.439941,11,0,0.000000,0.000020,66668192,32809925,0,0,94850,0,1,1 +1773703184.814356,0.70,4,3992.50,54.23,1594.71,2123.29,0.00,61830.800181,68658.992813,4233065,3508858,0.000000,0.000030,66668192,32809928,0,0,94853,0,1,1 +1773703189.811569,0.60,4,3992.50,54.26,1593.74,2124.27,0.00,3520399657208.463379,3520399650385.296875,253,762,0.000000,0.000020,66668192,32809930,0,0,94855,0,1,1 +1773703194.809486,1.00,4,3992.50,54.46,1585.63,2132.38,0.00,61866.347357,68689.539298,4234568,3509642,0.000000,0.000030,66668192,32809933,0,0,94858,0,1,1 +1773703199.814356,0.70,4,3992.50,54.33,1591.03,2126.94,0.00,3515013321603.141113,3515013314778.247559,258,2,0.000157,0.000200,66668204,32809947,0,0,94860,0,1,1 +1773703204.813785,0.70,4,3992.50,54.28,1592.69,2125.28,0.00,3518839277087.020508,3518839277089.142578,75,0,0.000016,0.000046,66668206,32809952,0,0,94863,0,1,1 +1773703209.811758,0.65,4,3992.50,54.28,1592.69,2125.28,0.00,2.122735,0.000195,258,2,0.000000,0.000020,66668206,32809954,0,0,94865,0,1,1 +1773703214.809465,1.05,4,3992.50,54.14,1598.25,2119.72,0.00,61868.420208,68703.152360,4234568,3509707,0.002223,0.000735,66668229,32809973,0,0,94868,0,1,1 +1773703219.809628,14.87,4,3992.50,54.33,1590.67,2127.29,0.00,3518322353240.252441,3518322353239.317383,4233065,3508989,40.060588,0.022238,66672505,32811481,0,0,94870,0,1,1 +1773703224.809447,0.85,4,3992.50,54.48,1586.93,2133.06,0.00,3518564762579.787598,3518564755751.052246,11,0,0.000000,0.000030,66672505,32811484,0,0,94873,0,1,1 +1773703229.814101,1.00,4,3992.50,54.49,1586.66,2133.21,0.00,0.053466,0.000000,75,0,0.000000,0.000020,66672505,32811486,0,0,94875,0,1,1 +1773703234.814059,0.55,4,3992.50,54.49,1586.66,2133.21,0.00,61832.962118,68661.757226,4233065,3509154,0.000000,0.000674,66672505,32811493,0,0,94878,0,1,1 +1773703239.813867,0.75,4,3992.50,54.49,1586.66,2133.21,0.00,9.726545,10.676581,4234568,3509919,0.000000,0.000020,66672505,32811495,0,0,94880,0,1,1 +1773703244.813507,0.60,4,3992.50,54.49,1586.43,2133.44,0.00,3518690338626.719238,3518690331796.592773,11,0,0.000013,0.000030,66672506,32811498,0,0,94883,0,1,1 +1773703249.814285,0.70,4,3992.50,54.30,1594.05,2125.82,0.00,0.180245,0.000000,205,0,0.000000,0.000020,66672506,32811500,0,0,94885,0,1,1 +1773703254.814131,1.05,4,3992.50,54.50,1582.57,2133.64,0.00,1.477487,10.675522,253,762,0.000000,0.000030,66672506,32811503,0,0,94888,0,1,1 +1773703259.809476,0.55,4,3992.50,54.50,1582.59,2133.62,0.00,3521716518608.742188,3521716518599.716309,11,0,0.000000,0.000020,66672506,32811505,0,0,94890,0,1,1 +1773703264.814357,0.65,4,3992.50,54.50,1582.59,2133.62,0.00,2.173269,0.000195,258,2,0.000157,0.000210,66672518,32811520,0,0,94893,0,1,1 +1773703269.814198,0.65,4,3992.50,54.50,1582.59,2133.62,0.00,3518549205006.109863,3518549205008.105469,205,0,0.000016,0.000036,66672520,32811524,0,0,94895,0,1,1 +1773703274.809710,0.70,4,3992.50,54.50,1582.59,2133.61,0.00,1.996910,0.000195,258,2,0.000000,0.000030,66672520,32811527,0,0,94898,0,1,1 +1773703279.813593,0.70,4,3992.50,54.50,1582.59,2133.62,0.00,3515706765456.764160,3515706765458.884277,75,0,0.000000,0.000020,66672520,32811529,0,0,94900,0,1,1 +1773703284.813620,16.09,4,3992.50,55.77,1535.24,2183.53,0.00,61841.836654,68671.658899,4234568,3510042,40.066383,0.023197,66676945,32813023,0,0,94903,0,1,1 +1773703289.814367,0.75,4,3992.50,54.89,1569.72,2149.10,0.00,3517911839780.629395,3517911832951.790039,75,0,0.000308,0.000574,66676952,32813036,0,0,94905,0,1,1 +1773703294.809447,0.60,4,3992.50,54.45,1587.16,2131.66,0.00,61893.349624,68729.103435,4233065,3509404,0.001128,0.001233,66676961,32813053,0,0,94908,0,1,1 +1773703299.809576,0.70,4,3992.50,54.37,1590.16,2128.65,0.00,3518346463783.779785,3518346456952.806641,258,2,0.000000,0.000664,66676961,32813059,0,0,94910,0,1,1 +1773703304.809468,0.60,4,3992.50,54.32,1592.25,2126.57,0.00,3518513356547.267578,3518513356549.262695,205,0,0.000000,0.000030,66676961,32813062,0,0,94913,0,1,1 +1773703309.813871,0.60,4,3992.50,54.35,1591.02,2127.80,0.00,1.476141,10.665802,253,762,0.000000,0.000020,66676961,32813064,0,0,94915,0,1,1 +1773703314.812567,0.75,4,3992.50,54.31,1592.29,2126.54,0.00,3519355276345.562988,3519355276336.362793,205,0,0.000000,0.000030,66676961,32813067,0,0,94918,0,1,1 +1773703319.814174,1.00,4,3992.50,54.44,1588.66,2131.44,0.00,3517306766888.520508,0.000000,11,0,0.000000,0.000020,66676961,32813069,0,0,94920,0,1,1 +1773703324.813838,0.75,4,3992.50,54.45,1588.43,2131.68,0.00,2.175537,0.000195,258,2,0.000000,0.000030,66676961,32813072,0,0,94923,0,1,1 +1773703329.809567,0.70,4,3992.50,54.45,1588.43,2131.68,0.00,3521445412780.650391,3521445412782.827637,11,0,0.000157,0.000201,66676973,32813086,0,0,94925,0,1,1 +1773703334.809572,0.65,4,3992.50,54.24,1596.31,2123.80,0.00,1.657713,10.675184,253,762,0.000244,0.000595,66676983,32813103,0,0,94928,0,1,1 +1773703339.809570,0.55,4,3992.50,54.24,1596.31,2123.80,0.00,61840.591916,68661.614208,4234568,3510234,0.000031,0.000045,66676985,32813107,0,0,94930,0,1,1 +1773703344.810328,0.95,4,3992.50,54.17,1602.53,2120.82,0.00,0.000000,0.028121,4234568,3510249,0.000000,0.000030,66676985,32813110,0,0,94933,0,1,1 +1773703349.809466,16.96,4,3992.50,55.70,1542.67,2180.63,0.00,3519043400096.047363,3519043393264.805176,11,0,40.072775,0.022571,66681353,32814536,0,0,94935,0,1,1 +1773703354.809461,0.65,4,3992.50,55.00,1569.99,2153.32,0.00,0.053516,0.000000,75,0,0.001064,0.000431,66681375,32814552,0,0,94938,0,1,1 +1773703359.813812,0.85,4,3992.50,54.50,1589.56,2133.75,0.00,3515378275759.619141,0.000000,11,0,0.000000,0.000020,66681375,32814554,0,0,94940,0,1,1 +1773703364.813818,0.70,4,3992.50,54.30,1597.23,2126.08,0.00,2.175388,0.000195,258,2,0.000000,0.000674,66681375,32814561,0,0,94943,0,1,1 +1773703369.814039,0.55,4,3992.50,54.30,1597.23,2126.08,0.00,3518281432750.309570,10.674527,253,762,0.000000,0.000020,66681375,32814563,0,0,94945,0,1,1 +1773703374.814240,0.90,4,3992.50,54.22,1598.66,2122.95,0.00,0.517655,3518295527111.647949,258,2,0.000000,0.000030,66681375,32814566,0,0,94948,0,1,1 +1773703379.809460,0.65,4,3992.50,54.12,1602.55,2118.96,0.00,3521804396908.216797,3521804396910.394531,11,0,0.000031,0.000045,66681377,32814570,0,0,94950,0,1,1 +1773703384.809457,0.60,4,3992.50,54.13,1602.34,2119.18,0.00,1.657716,10.675202,253,762,0.000008,0.000038,66681378,32814574,0,0,94953,0,1,1 +1773703389.810619,0.65,4,3992.50,54.13,1602.34,2119.18,0.00,3517619187243.126465,3517619187234.057617,75,0,0.000000,0.000020,66681378,32814576,0,0,94955,0,1,1 +1773703394.813419,0.70,4,3992.50,54.13,1602.34,2119.17,0.00,3516467982593.132812,0.000000,11,0,0.000188,0.000235,66681392,32814593,0,0,94958,0,1,1 +1773703399.813225,0.70,4,3992.50,54.13,1602.34,2119.17,0.00,0.000000,0.000000,11,0,0.000050,0.000082,66681396,32814599,0,0,94960,0,1,1 +1773703404.813757,1.00,4,3992.50,54.15,1603.71,2120.25,0.00,0.180254,0.000000,205,0,0.000000,0.000030,66681396,32814602,0,0,94963,0,1,1 +1773703409.814131,0.75,4,3992.50,54.16,1603.62,2120.35,0.00,1.994968,0.000195,258,2,0.000000,0.000020,66681396,32814604,0,0,94965,0,1,1 +1773703414.813927,15.71,4,3992.50,59.42,1397.70,2326.27,0.00,61832.846446,68664.710021,4233065,3509766,11.591626,0.016565,66683012,32815664,0,0,94968,0,1,1 +1773703419.813575,3.96,4,3992.50,55.37,1556.11,2167.85,0.00,9.726857,10.762868,4234568,3510637,28.478533,0.011196,66685971,32816430,0,0,94970,0,1,1 +1773703424.810462,0.70,4,3992.50,54.32,1597.27,2126.69,0.00,3520629042097.958008,3520629035263.203613,75,0,0.000008,0.000038,66685972,32816434,0,0,94973,0,1,1 +1773703429.810561,0.65,4,3992.50,54.12,1604.93,2119.03,0.00,0.126755,0.000000,205,0,0.000000,0.000664,66685972,32816440,0,0,94975,0,1,1 +1773703434.814195,0.90,4,3992.50,54.36,1593.00,2128.49,0.00,1.476368,10.667442,253,762,0.000000,0.000030,66685972,32816443,0,0,94978,0,1,1 +1773703439.813241,0.65,4,3992.50,54.36,1593.34,2128.14,0.00,0.000000,0.000000,253,762,0.000000,0.000020,66685972,32816445,0,0,94980,0,1,1 +1773703444.813837,0.75,4,3992.50,54.36,1593.34,2128.14,0.00,0.517614,3518017904761.699219,258,2,0.000000,0.000030,66685972,32816448,0,0,94983,0,1,1 +1773703449.814247,0.65,4,3992.50,54.34,1594.02,2127.46,0.00,3518149094986.479492,3518149094988.474609,205,0,0.000000,0.000020,66685972,32816450,0,0,94985,0,1,1 +1773703454.813675,0.65,4,3992.50,54.34,1594.02,2127.46,0.00,0.000000,0.000000,205,0,0.000000,0.000030,66685972,32816453,0,0,94988,0,1,1 +1773703459.814390,0.75,4,3992.50,54.34,1593.78,2127.70,0.00,1.994832,0.000195,258,2,0.000031,0.000045,66685974,32816457,0,0,94990,0,1,1 +1773703464.813169,0.95,4,3992.50,54.25,1590.31,2124.09,0.00,3519296410610.570312,3519296410612.746582,11,0,0.000165,0.000218,66685987,32816473,0,0,94993,0,1,1 +1773703469.810102,0.65,4,3992.50,54.25,1590.21,2124.18,0.00,61880.194681,68715.056759,4234568,3510790,0.000000,0.000020,66685987,32816475,0,0,94995,0,1,1 +1773703474.811567,0.65,4,3992.50,54.23,1591.17,2123.22,0.00,3517405928040.615723,3517405921211.949219,11,0,0.000000,0.000030,66685987,32816478,0,0,94998,0,1,1 +1773703479.812232,0.65,4,3992.50,54.23,1591.17,2123.22,0.00,1.657495,10.673777,253,762,0.000000,0.000033,66685987,32816481,0,0,95000,0,1,1 +1773703484.810373,16.11,4,3992.50,53.67,1613.21,2101.15,0.00,3519745910951.043457,3519745910941.842773,205,0,40.079060,0.021795,66690444,32817986,0,0,95003,0,1,1 +1773703489.814341,0.90,4,3992.50,53.72,1611.04,2103.32,0.00,3515647453331.409668,0.000000,75,0,0.003082,0.001415,66690500,32818024,0,0,95005,0,1,1 +1773703494.809567,0.90,4,3992.50,53.81,1607.35,2106.95,0.00,3521799504679.539551,0.000000,11,0,0.000000,0.000674,66690500,32818031,0,0,95008,0,1,1 +1773703499.814347,0.70,4,3992.50,53.83,1606.63,2107.69,0.00,0.000000,0.000000,11,0,0.000000,0.000020,66690500,32818033,0,0,95010,0,1,1 +1773703504.810007,0.65,4,3992.50,53.66,1613.44,2100.88,0.00,2.177281,0.000195,258,2,0.000000,0.000030,66690500,32818036,0,0,95013,0,1,1 +1773703509.810717,0.65,4,3992.50,53.66,1613.44,2100.88,0.00,0.000000,0.000000,258,2,0.000000,0.000020,66690500,32818038,0,0,95015,0,1,1 +1773703514.814250,0.70,4,3992.50,53.68,1612.70,2101.61,0.00,3515952968010.522949,3515952968012.643555,75,0,0.000000,0.000030,66690500,32818041,0,0,95018,0,1,1 +1773703519.811645,0.65,4,3992.50,53.68,1612.71,2101.61,0.00,0.126824,0.000000,205,0,0.000000,0.000020,66690500,32818043,0,0,95020,0,1,1 +1773703524.814272,0.90,4,3992.50,53.95,1601.90,2112.42,0.00,3516589489377.569336,0.000000,11,0,0.000000,0.000030,66690500,32818046,0,0,95023,0,1,1 +1773703529.813922,0.95,4,3992.50,53.98,1600.90,2113.36,0.00,61846.584905,68678.056410,4234571,3511107,0.000056,0.000076,66690504,32818052,0,0,95025,0,1,1 +1773703534.814163,0.65,4,3992.50,53.98,1600.91,2113.36,0.00,3518267815625.647461,3518267808794.929199,75,0,0.000117,0.000170,66690514,32818065,0,0,95028,0,1,1 +1773703539.809951,0.65,4,3992.50,53.98,1600.66,2113.60,0.00,61884.599078,68720.458957,4233068,3510347,0.000000,0.000020,66690514,32818067,0,0,95030,0,1,1 +1773703544.809453,0.65,4,3992.50,53.82,1606.93,2107.33,0.00,3518787996958.415527,3518787990136.704102,253,762,0.000000,0.000030,66690514,32818070,0,0,95033,0,1,1 +1773703549.813834,16.95,4,3992.50,59.04,1402.71,2311.55,0.00,3515356529702.147949,3515356529693.084961,75,0,40.029120,0.021352,66694957,32819540,0,0,95035,0,1,1 +1773703554.813715,1.10,4,3992.50,54.92,1562.48,2150.33,0.00,3518521410619.023926,0.000000,11,0,0.003407,0.001844,66695028,32819603,0,0,95038,0,1,1 +1773703559.813636,0.70,4,3992.50,54.36,1584.64,2128.18,0.00,0.000000,0.000000,11,0,0.000000,0.000664,66695028,32819609,0,0,95040,0,1,1 +1773703564.813811,0.65,4,3992.50,54.14,1593.26,2119.55,0.00,61830.363554,68660.406955,4233068,3510584,0.000000,0.000030,66695028,32819612,0,0,95043,0,1,1 +1773703569.813463,0.70,4,3992.50,53.97,1599.92,2112.89,0.00,3518681449807.468262,3518681442976.710938,11,0,0.000000,0.000020,66695028,32819614,0,0,95045,0,1,1 +1773703574.814466,0.70,4,3992.50,54.00,1598.69,2114.12,0.00,1.657382,10.673054,253,762,0.000000,0.000030,66695028,32819617,0,0,95048,0,1,1 +1773703579.809607,0.65,4,3992.50,54.00,1598.69,2114.12,0.00,61891.029876,68718.950546,4233068,3510593,0.000000,0.000020,66695028,32819619,0,0,95050,0,1,1 +1773703584.814121,0.95,4,3992.50,54.11,1594.19,2118.62,0.00,0.000000,0.044491,4233068,3510617,0.000000,0.000030,66695028,32819622,0,0,95053,0,1,1 +1773703589.810656,0.65,4,3992.50,53.96,1600.29,2112.52,0.00,3520877738519.005371,3520877731683.740723,205,0,0.000308,0.000575,66695035,32819635,0,0,95055,0,1,1 +1773703594.809692,0.65,4,3992.50,53.96,1600.30,2112.51,0.00,3519115485313.182129,0.000000,75,0,0.000256,0.000626,66695046,32819654,0,0,95058,0,1,1 +1773703599.811122,0.60,4,3992.50,53.96,1600.30,2112.51,0.00,61814.797826,68643.261627,4233068,3510636,0.000113,0.000144,66695055,32819664,0,0,95060,0,1,1 +1773703604.809573,0.75,4,3992.50,53.96,1600.30,2112.51,0.00,9.729186,10.682606,4234571,3511404,0.000000,0.000030,66695055,32819667,0,0,95063,0,1,1 +1773703609.812542,0.60,4,3992.50,53.96,1600.09,2112.72,0.00,3516348869026.978027,3516348862199.663086,75,0,0.000000,0.000020,66695055,32819669,0,0,95065,0,1,1 +1773703614.813791,17.93,4,3992.50,59.86,1370.11,2343.58,0.00,61826.755541,68656.501117,4234571,3511467,26.239357,0.017738,66698137,32820831,0,0,95068,0,1,1 +1773703619.813761,1.05,4,3992.50,55.08,1556.34,2156.44,0.00,3518458447084.692383,3518458440253.252930,11,0,13.822548,0.005242,66699570,32821143,0,0,95070,0,1,1 +1773703624.809532,0.65,4,3992.50,54.52,1578.24,2134.55,0.00,2.177232,0.000195,258,2,0.000000,0.000674,66699570,32821150,0,0,95073,0,1,1 +1773703629.814228,0.60,4,3992.50,54.41,1582.71,2130.08,0.00,0.000000,0.000000,258,2,0.000000,0.000020,66699570,32821152,0,0,95075,0,1,1 +1773703634.814185,0.70,4,3992.50,54.41,1582.68,2130.11,0.00,0.000000,0.000000,258,2,0.000236,0.000587,66699579,32821168,0,0,95078,0,1,1 +1773703639.809562,0.60,4,3992.50,54.41,1582.46,2130.33,0.00,61887.569041,68726.636124,4233068,3510839,0.000031,0.000045,66699581,32821172,0,0,95080,0,1,1 +1773703644.809588,1.00,4,3992.50,54.64,1574.62,2139.18,0.00,3518418973712.988770,3518418966882.455078,11,0,0.000008,0.000038,66699582,32821176,0,0,95083,0,1,1 +1773703649.809470,1.00,4,3992.50,54.66,1573.78,2140.06,0.00,0.053517,0.000000,75,0,0.002087,0.002104,66699614,32821204,0,0,95085,0,1,1 +1773703654.809553,0.60,4,3992.50,54.66,1573.78,2140.06,0.00,3518379087371.650879,0.000000,11,0,0.001064,0.000431,66699636,32821220,0,0,95088,0,1,1 +1773703659.809455,0.60,4,3992.50,54.66,1573.78,2140.06,0.00,2.175433,0.000195,258,2,0.000031,0.000045,66699638,32821224,0,0,95090,0,1,1 +1773703664.814240,0.60,4,3992.50,54.47,1581.42,2132.42,0.00,61771.239041,68597.565471,4233068,3510908,0.000075,0.000123,66699644,32821233,0,0,95093,0,1,1 +1773703669.813838,0.70,4,3992.50,54.46,1581.42,2132.42,0.00,3518719646050.020508,3518719639218.734375,75,0,0.000008,0.000028,66699645,32821236,0,0,95095,0,1,1 +1773703674.810061,0.90,4,3992.50,54.60,1576.01,2137.83,0.00,3521097021629.826172,0.000000,11,0,0.000000,0.000030,66699645,32821239,0,0,95098,0,1,1 +1773703679.814260,15.64,4,3992.50,59.41,1387.84,2325.97,0.00,0.000000,0.000000,11,0,23.420852,0.016744,66702444,32822375,0,0,95100,0,1,1 +1773703684.809862,1.55,4,3992.50,54.91,1564.14,2149.70,0.00,0.000000,0.000000,11,0,16.641154,0.004572,66704175,32822634,0,0,95103,0,1,1 +1773703689.811379,0.65,4,3992.50,54.34,1586.43,2127.41,0.00,61813.778904,68642.572247,4233068,3511109,0.000000,0.000664,66704175,32822640,0,0,95105,0,1,1 +1773703694.809463,0.55,4,3992.50,54.13,1594.52,2119.32,0.00,3519786307188.635742,3519786300355.151367,11,0,0.000056,0.000086,66704179,32822647,0,0,95108,0,1,1 +1773703699.813492,0.70,4,3992.50,54.14,1594.15,2119.69,0.00,61782.733835,68608.102981,4233068,3511113,0.000033,0.000059,66704182,32822652,0,0,95110,0,1,1 +1773703704.809573,0.85,4,3992.50,54.40,1592.41,2129.82,0.00,0.000000,0.067240,4233068,3511140,0.000000,0.000030,66704182,32822655,0,0,95113,0,1,1 +1773703709.812137,0.65,4,3992.50,54.39,1589.66,2129.36,0.00,3516634091388.242188,3516634084558.631348,258,2,0.000000,0.000020,66704182,32822657,0,0,95115,0,1,1 +1773703714.814214,0.65,4,3992.50,54.36,1590.87,2128.14,0.00,0.000000,0.000000,258,2,0.000000,0.000030,66704182,32822660,0,0,95118,0,1,1 +1773703719.813403,0.75,4,3992.50,54.37,1590.13,2128.88,0.00,3519008127129.337402,3519008127131.333008,205,0,0.000000,0.000020,66704182,32822662,0,0,95120,0,1,1 +1773703724.814260,0.70,4,3992.50,54.37,1590.13,2128.88,0.00,61831.484737,68662.426185,4234571,3511944,0.000031,0.000055,66704184,32822667,0,0,95123,0,1,1 +1773703729.809457,0.65,4,3992.50,54.37,1590.14,2128.88,0.00,3521820021401.460449,3521820014562.907227,75,0,0.000142,0.000191,66704196,32822681,0,0,95125,0,1,1 +1773703734.809455,0.95,4,3992.50,54.44,1585.36,2131.34,0.00,61832.496262,68663.567588,4233068,3511197,0.000000,0.000030,66704196,32822684,0,0,95128,0,1,1 +1773703739.813993,0.65,4,3992.50,54.44,1585.04,2131.30,0.00,3515246275751.067871,3515246268935.256836,253,762,0.000000,0.000020,66704196,32822686,0,0,95130,0,1,1 +1773703744.813584,14.47,4,3992.50,59.37,1391.70,2324.63,0.00,3518725071557.175781,3518725071548.157715,11,0,11.627282,0.015354,66705848,32823639,0,0,95133,0,1,1 +1773703749.814441,3.61,4,3992.50,54.52,1581.62,2134.71,0.00,0.000000,0.000000,11,0,28.437042,0.009229,66708710,32824266,0,0,95135,0,1,1 +1773703754.813564,0.70,4,3992.50,54.32,1589.49,2126.83,0.00,2.175772,0.000195,258,2,0.000008,0.000682,66708711,32824274,0,0,95138,0,1,1 +1773703759.809869,0.65,4,3992.50,54.33,1589.25,2127.07,0.00,3521039650130.496094,3521039650132.673340,11,0,0.000000,0.000020,66708711,32824276,0,0,95140,0,1,1 +1773703764.810658,0.95,4,3992.50,54.62,1577.74,2138.59,0.00,0.000000,0.000000,11,0,0.000000,0.000030,66708711,32824279,0,0,95143,0,1,1 +1773703769.809564,0.65,4,3992.50,54.57,1579.74,2136.58,0.00,61846.072168,68678.780321,4233069,3511381,0.000000,0.000020,66708711,32824281,0,0,95145,0,1,1 +1773703774.809572,0.60,4,3992.50,54.57,1579.75,2136.58,0.00,3518431183309.815918,3518431176478.615234,11,0,0.000000,0.000030,66708711,32824284,0,0,95148,0,1,1 +1773703779.814342,0.75,4,3992.50,54.58,1579.51,2136.82,0.00,1.656135,10.665020,253,762,0.000000,0.000020,66708711,32824286,0,0,95150,0,1,1 +1773703784.813857,0.60,4,3992.50,54.19,1594.54,2121.78,0.00,0.517726,3518778734498.937988,258,2,0.000000,0.000030,66708711,32824289,0,0,95153,0,1,1 +1773703789.809489,0.65,4,3992.50,54.22,1593.56,2122.76,0.00,61884.412073,68723.826804,4233069,3511427,0.000031,0.000045,66708713,32824293,0,0,95155,0,1,1 +1773703794.811580,0.95,4,3992.50,54.38,1585.23,2128.93,0.00,0.000000,0.030456,4233069,3511443,0.000142,0.000201,66708725,32824308,0,0,95158,0,1,1 +1773703799.809580,0.70,4,3992.50,54.40,1584.25,2129.89,0.00,0.000000,0.009379,4233069,3511454,0.000000,0.000020,66708725,32824310,0,0,95160,0,1,1 +1773703804.809557,1.00,4,3992.50,54.40,1584.27,2129.87,0.00,3518453232013.124512,3518453225190.806152,253,762,0.000000,0.000030,66708725,32824313,0,0,95163,0,1,1 +1773703809.813703,17.65,4,3992.50,59.09,1400.58,2313.55,0.00,0.517247,3515522671129.965820,258,2,22.620540,0.016393,66711415,32825421,0,0,95165,0,1,1 +1773703814.813585,1.20,4,3992.50,55.30,1548.98,2165.16,0.00,3518519782208.635254,10.675251,253,762,17.427120,0.004534,66713187,32825678,0,0,95168,0,1,1 +1773703819.809505,0.85,4,3992.50,54.68,1573.34,2140.80,0.00,3521310610312.012695,3521310610302.988281,11,0,0.000000,0.000181,66713187,32825681,0,0,95170,0,1,1 +1773703824.813473,1.15,4,3992.50,54.68,1575.46,2140.67,0.00,0.000000,0.000000,11,0,0.000000,0.000512,66713187,32825687,0,0,95173,0,1,1 +1773703829.813372,1.05,4,3992.50,54.53,1579.01,2135.05,0.00,0.000000,0.000000,11,0,0.000000,0.000020,66713187,32825689,0,0,95175,0,1,1 +1773703834.809480,0.70,4,3992.50,54.53,1579.23,2134.83,0.00,0.000000,0.000000,11,0,0.000000,0.000030,66713187,32825692,0,0,95178,0,1,1 +1773703839.809464,0.70,4,3992.50,54.51,1580.00,2134.07,0.00,1.657720,10.675231,253,762,0.000000,0.000020,66713187,32825694,0,0,95180,0,1,1 +1773703844.814001,0.75,4,3992.50,54.32,1587.39,2126.67,0.00,61784.523656,68601.914519,4234572,3512546,0.000000,0.000030,66713187,32825697,0,0,95183,0,1,1 +1773703849.814180,0.65,4,3992.50,54.33,1586.91,2127.16,0.00,3518311166872.992188,3518311160040.641602,11,0,0.000000,0.000020,66713187,32825699,0,0,95185,0,1,1 +1773703854.813737,0.65,4,3992.50,54.33,1586.91,2127.16,0.00,2.175584,0.000195,258,2,0.000031,0.000055,66713189,32825704,0,0,95188,0,1,1 +1773703859.813604,1.00,4,3992.50,54.34,1586.87,2127.34,0.00,3518530386604.380371,10.675283,253,762,0.000142,0.000191,66713201,32825718,0,0,95190,0,1,1 +1773703864.814058,1.65,4,3992.50,54.34,1586.87,2127.34,0.00,0.517629,3518117813732.311035,258,2,0.000000,0.000030,66713201,32825721,0,0,95193,0,1,1 +1773703869.813896,0.65,4,3992.50,54.34,1586.87,2127.34,0.00,61842.084668,68677.138776,4234572,3512586,0.000000,0.000020,66713201,32825723,0,0,95195,0,1,1 +1773703874.814554,13.65,4,3992.50,59.41,1388.12,2326.07,0.00,3517974316009.234375,3517974309186.492188,253,762,19.233122,0.015245,66715602,32826738,0,0,95198,0,1,1 +1773703879.811224,2.26,4,3992.50,54.34,1586.81,2127.37,0.00,61881.803106,68710.088671,4234572,3512722,20.845182,0.005597,66717718,32827079,0,0,95200,0,1,1 +1773703884.813977,0.95,4,3992.50,54.20,1591.37,2122.13,0.00,3516501614620.110840,3516501607788.938965,258,2,0.000000,0.000352,66717718,32827084,0,0,95203,0,1,1 +1773703889.814155,0.70,4,3992.50,54.26,1588.92,2124.59,0.00,3518311723367.827637,3518311723369.949707,75,0,0.001229,0.001566,66717727,32827102,0,0,95205,0,1,1 +1773703894.809467,0.70,4,3992.50,54.07,1596.54,2116.98,0.00,0.126877,0.000000,205,0,0.000205,0.000562,66717734,32827116,0,0,95208,0,1,1 +1773703899.811466,0.60,4,3992.50,54.08,1596.35,2117.17,0.00,61807.642411,68637.016222,4233069,3512028,0.000000,0.000020,66717734,32827118,0,0,95210,0,1,1 +1773703904.813750,0.65,4,3992.50,54.08,1596.35,2117.17,0.00,3516830748795.668945,3516830741966.684570,205,0,0.000000,0.000030,66717734,32827121,0,0,95213,0,1,1 +1773703909.814318,0.70,4,3992.50,54.08,1596.35,2117.17,0.00,3518037061718.760254,0.000000,11,0,0.000000,0.000020,66717734,32827123,0,0,95215,0,1,1 +1773703914.811343,0.90,4,3992.50,54.26,1599.53,2124.54,0.00,0.000000,0.000000,11,0,0.000000,0.000030,66717734,32827126,0,0,95218,0,1,1 +1773703919.813561,0.70,4,3992.50,54.28,1598.70,2125.24,0.00,0.000000,0.000000,11,0,0.000031,0.000045,66717736,32827130,0,0,95220,0,1,1 +1773703924.810467,0.80,4,3992.50,54.29,1598.27,2125.68,0.00,1.658741,10.681803,253,762,0.000134,0.000193,66717747,32827144,0,0,95223,0,1,1 +1773703929.809454,0.60,4,3992.50,54.31,1597.53,2126.41,0.00,61843.408704,68667.782531,4233069,3512083,0.000000,0.000020,66717747,32827146,0,0,95225,0,1,1 +1773703934.809708,0.70,4,3992.50,54.31,1597.54,2126.41,0.00,9.725677,10.676410,4234572,3512849,0.001170,0.001282,66717759,32827167,0,0,95228,0,1,1 +1773703939.814567,11.89,4,3992.50,59.60,1390.43,2333.48,0.00,3515021493766.948730,3515021493766.029297,4233069,3512123,9.612673,0.012738,66719193,32828013,0,0,95230,0,1,1 +1773703944.814128,4.32,4,3992.50,54.77,1586.34,2144.39,0.00,9.727027,10.849684,4234572,3513027,30.448867,0.012528,66722280,32828871,0,0,95233,0,1,1 +1773703949.810566,0.85,4,3992.50,54.78,1585.64,2144.61,0.00,3520945186011.655762,3520945179173.623535,11,0,0.001418,0.001505,66722309,32828899,0,0,95235,0,1,1 +1773703954.809487,0.80,4,3992.50,54.75,1586.66,2143.60,0.00,61845.871756,68679.596175,4233069,3512305,0.001734,0.001675,66722334,32828919,0,0,95238,0,1,1 +1773703959.810122,0.70,4,3992.50,54.77,1585.82,2144.44,0.00,3517990880058.818848,3517990873236.451172,253,762,0.000000,0.000020,66722334,32828921,0,0,95240,0,1,1 +1773703964.809457,0.70,4,3992.50,54.59,1592.97,2137.28,0.00,0.517745,3518904670021.824219,258,2,0.000000,0.000030,66722334,32828924,0,0,95243,0,1,1 +1773703969.813704,0.70,4,3992.50,54.60,1592.74,2137.52,0.00,3515451519033.399902,10.665941,253,762,0.000000,0.000020,66722334,32828926,0,0,95245,0,1,1 +1773703974.814065,0.95,4,3992.50,54.64,1590.21,2139.19,0.00,0.517638,3518183472555.027344,258,2,0.000000,0.000030,66722334,32828929,0,0,95248,0,1,1 +1773703979.809552,0.65,4,3992.50,54.57,1592.64,2136.52,0.00,61886.209197,68726.892163,4233069,3512371,0.000031,0.000045,66722336,32828933,0,0,95250,0,1,1 +1773703984.814034,0.60,4,3992.50,54.57,1592.65,2136.52,0.00,0.000000,0.001561,4233069,3512373,0.000039,0.000063,66722339,32828939,0,0,95253,0,1,1 +1773703989.810296,0.70,4,3992.50,54.57,1592.65,2136.52,0.00,9.733448,10.688068,4234572,3513140,0.000076,0.000113,66722345,32828947,0,0,95255,0,1,1 +1773703994.812491,0.70,4,3992.50,54.58,1592.43,2136.73,0.00,3516892776028.518555,3516892769196.054688,258,2,0.000081,0.000117,66722351,32828956,0,0,95258,0,1,1 +1773703999.813935,0.70,4,3992.50,54.58,1592.19,2136.98,0.00,61812.503460,68645.050189,4233069,3512381,0.000050,0.000082,66722355,32828962,0,0,95260,0,1,1 +1773704004.813589,8.17,4,3992.50,59.74,1387.66,2338.76,0.00,3518680650309.372070,3518680643485.572754,253,762,4.815462,0.010125,66723318,32829600,0,0,95263,0,1,1 +1773704009.810559,7.69,4,3992.50,54.42,1595.70,2130.54,0.00,0.517990,3520570785314.347656,258,2,35.272213,0.010912,66726814,32830335,0,0,95265,0,1,1 +1773704014.813960,0.65,4,3992.50,54.42,1595.70,2130.54,0.00,61788.328912,68618.315792,4233069,3512484,0.000000,0.000030,66726814,32830338,0,0,95268,0,1,1 +1773704019.814319,0.50,4,3992.50,54.42,1595.70,2130.54,0.00,3518184145985.145020,3518184139153.125488,75,0,0.000000,0.000664,66726814,32830344,0,0,95270,0,1,1 +1773704024.813743,0.75,4,3992.50,54.23,1602.86,2123.38,0.00,3518842857568.923828,0.000000,11,0,0.000000,0.000030,66726814,32830347,0,0,95273,0,1,1 +1773704029.813478,0.60,4,3992.50,54.23,1602.86,2123.38,0.00,61835.812387,68668.637699,4233069,3512488,0.000000,0.000020,66726814,32830349,0,0,95275,0,1,1 +1773704034.813584,0.90,4,3992.50,54.45,1596.57,2131.74,0.00,3518362518359.801758,3518362511527.304199,205,0,0.000000,0.000030,66726814,32830352,0,0,95278,0,1,1 +1773704039.813491,0.70,4,3992.50,54.41,1598.02,2130.30,0.00,3518502209692.841309,0.000000,11,0,0.000000,0.000020,66726814,32830354,0,0,95280,0,1,1 +1773704044.813833,0.70,4,3992.50,54.40,1598.60,2129.72,0.00,61828.299985,68660.472513,4233069,3512632,0.000000,0.000030,66726814,32830357,0,0,95283,0,1,1 +1773704049.809508,0.70,4,3992.50,54.24,1604.89,2123.43,0.00,9.734593,10.685415,4234572,3513397,0.000031,0.000045,66726816,32830361,0,0,95285,0,1,1 +1773704054.813584,0.65,4,3992.50,54.28,1603.04,2125.28,0.00,3515571152190.887207,3515571145371.874023,253,762,0.000142,0.000201,66726828,32830376,0,0,95288,0,1,1 +1773704059.813564,0.70,4,3992.50,54.28,1603.04,2125.28,0.00,61831.125811,68654.782513,4233069,3512637,0.000000,0.000020,66726828,32830378,0,0,95290,0,1,1 +1773704064.814370,0.95,4,3992.50,54.31,1603.53,2126.21,0.00,3517869570457.961914,3517869563635.433594,253,762,0.000000,0.000030,66726828,32830381,0,0,95293,0,1,1 +1773704069.816538,3.76,4,3992.50,59.22,1410.64,2318.67,0.00,3516912729907.159668,3516912729897.965820,205,0,0.806339,0.005309,66727064,32830565,0,0,95295,0,1,1 +1773704074.813968,12.86,4,3992.50,54.29,1603.58,2125.73,0.00,3520246135939.422363,0.000000,75,0,39.279191,0.017268,66731167,32831802,0,0,95298,0,1,1 +1773704079.813484,0.65,4,3992.50,54.29,1603.58,2125.73,0.00,0.126770,0.000000,205,0,0.000000,0.000020,66731167,32831804,0,0,95300,0,1,1 +1773704084.813815,0.65,4,3992.50,54.29,1603.59,2125.73,0.00,61837.991975,68671.476040,4234572,3513570,0.000000,0.000674,66731167,32831811,0,0,95303,0,1,1 +1773704089.811659,0.80,4,3992.50,54.29,1603.59,2125.73,0.00,3519954686803.477539,3519954679964.598633,258,2,0.000000,0.000020,66731167,32831813,0,0,95305,0,1,1 +1773704094.811637,0.65,4,3992.50,54.30,1603.35,2125.96,0.00,61830.628228,68665.684073,4233069,3512816,0.000000,0.000030,66731167,32831816,0,0,95308,0,1,1 +1773704099.809448,0.95,4,3992.50,54.13,1610.68,2119.27,0.00,3519977849805.135254,3519977842978.314453,253,762,0.000000,0.000020,66731167,32831818,0,0,95310,0,1,1 +1773704104.809942,0.65,4,3992.50,54.13,1610.74,2119.20,0.00,3518089431669.044434,3518089431659.847656,205,0,0.000000,0.000030,66731167,32831821,0,0,95313,0,1,1 +1773704109.810586,0.60,4,3992.50,54.13,1610.74,2119.20,0.00,3517984149515.958984,0.000000,75,0,0.000000,0.000020,66731167,32831823,0,0,95315,0,1,1 +1773704114.809543,0.60,4,3992.50,54.13,1610.51,2119.44,0.00,61855.115564,68690.501397,4234573,3513682,0.000031,0.000055,66731169,32831828,0,0,95318,0,1,1 +1773704119.813504,0.75,4,3992.50,54.14,1610.29,2119.65,0.00,3515652586363.123047,3515652579534.625000,11,0,0.000126,0.000175,66731179,32831840,0,0,95320,0,1,1 +1773704124.811800,0.85,4,3992.50,54.33,1596.74,2127.28,0.00,0.053534,0.000000,75,0,0.000016,0.000046,66731181,32831845,0,0,95323,0,1,1 +1773704129.814223,0.90,4,3992.50,54.33,1596.82,2127.24,0.00,2.120847,0.000195,258,2,0.000000,0.000020,66731181,32831847,0,0,95325,0,1,1 +1773704134.813551,0.90,4,3992.50,54.33,1596.84,2127.21,0.00,3518909519731.890625,3518909519734.066406,11,0,0.002234,0.000735,66731205,32831866,0,0,95328,0,1,1 +1773704139.813620,15.85,4,3992.50,55.38,1555.71,2168.34,0.00,0.053515,0.000000,75,0,40.062295,0.022453,66735566,32833391,0,0,95330,0,1,1 +1773704144.813904,0.60,4,3992.50,54.67,1583.49,2140.57,0.00,61838.702783,68672.443346,4234573,3513860,0.000000,0.000030,66735566,32833394,0,0,95333,0,1,1 +1773704149.811720,0.75,4,3992.50,54.29,1598.35,2125.71,0.00,3519974426178.248535,3519974419339.011230,258,2,0.000000,0.000664,66735566,32833400,0,0,95335,0,1,1 +1773704154.813781,0.70,4,3992.50,54.30,1598.11,2125.95,0.00,61804.895967,68637.423494,4233070,3513104,0.000000,0.000030,66735566,32833403,0,0,95338,0,1,1 +1773704159.814261,0.95,4,3992.50,54.36,1590.96,2128.32,0.00,3518098781235.218750,3518098774402.708008,11,0,0.000000,0.000020,66735566,32833405,0,0,95340,0,1,1 +1773704164.813910,0.55,4,3992.50,54.37,1590.72,2128.57,0.00,61836.881016,68670.599733,4233070,3513165,0.000000,0.000030,66735566,32833408,0,0,95343,0,1,1 +1773704169.813258,0.70,4,3992.50,54.37,1590.72,2128.56,0.00,3518896414408.627441,3518896407574.496094,11,0,0.000000,0.000020,66735566,32833410,0,0,95345,0,1,1 +1773704174.810077,0.65,4,3992.50,54.37,1590.48,2128.80,0.00,0.000000,0.000000,11,0,0.000000,0.000030,66735566,32833413,0,0,95348,0,1,1 +1773704179.813540,0.60,4,3992.50,54.37,1590.48,2128.80,0.00,0.180149,0.000000,205,0,0.000000,0.000020,66735566,32833415,0,0,95350,0,1,1 +1773704184.813772,0.90,4,3992.50,54.39,1595.62,2129.55,0.00,3518274006003.048340,0.000000,11,0,0.000157,0.000210,66735578,32833430,0,0,95353,0,1,1 +1773704189.813479,0.70,4,3992.50,54.22,1602.53,2122.64,0.00,0.000000,0.000000,11,0,0.000324,0.000591,66735587,32833445,0,0,95355,0,1,1 +1773704194.814055,0.65,4,3992.50,54.05,1608.96,2116.21,0.00,61825.409322,68657.920429,4233070,3513206,0.001139,0.001231,66735597,32833462,0,0,95358,0,1,1 +1773704199.809466,1.00,4,3992.50,54.09,1607.27,2117.90,0.00,3521669822308.343262,3521669815468.765625,11,0,0.002236,0.000713,66735621,32833479,0,0,95360,0,1,1 +1773704204.811995,15.82,4,3992.50,55.77,1541.50,2183.66,0.00,61810.997329,68641.900530,4234573,3514111,40.041898,0.021447,66739924,32834925,0,0,95363,0,1,1 +1773704209.809574,0.75,4,3992.50,54.88,1576.58,2148.58,0.00,3520141908118.932617,3520141901290.284180,253,762,0.000000,0.000020,66739924,32834927,0,0,95365,0,1,1 +1773704214.809591,0.90,4,3992.50,54.47,1589.72,2132.66,0.00,61830.670768,68655.120877,4233070,3513384,0.000000,0.000674,66739924,32834934,0,0,95368,0,1,1 +1773704219.809480,0.55,4,3992.50,54.36,1593.98,2128.32,0.00,3518515140568.374023,3518515133734.731934,11,0,0.000000,0.000020,66739924,32834936,0,0,95370,0,1,1 +1773704224.810639,0.70,4,3992.50,54.36,1594.11,2128.20,0.00,0.000000,0.000000,11,0,0.000000,0.000030,66739924,32834939,0,0,95373,0,1,1 +1773704229.813817,0.60,4,3992.50,54.18,1601.07,2121.23,0.00,0.000000,0.000000,11,0,0.000000,0.000020,66739924,32834941,0,0,95375,0,1,1 +1773704234.814042,0.65,4,3992.50,54.22,1599.66,2122.64,0.00,0.053513,0.000000,75,0,0.000236,0.000587,66739933,32834957,0,0,95378,0,1,1 +1773704239.811672,0.75,4,3992.50,54.23,1599.20,2123.09,0.00,61871.539561,68709.339950,4234573,3514202,0.000039,0.000053,66739936,32834962,0,0,95380,0,1,1 +1773704244.809457,0.95,4,3992.50,54.35,1594.84,2128.11,0.00,0.000000,0.038298,4234573,3514227,0.000000,0.000030,66739936,32834965,0,0,95383,0,1,1 +1773704249.813487,0.80,4,3992.50,54.35,1594.82,2128.00,0.00,3515603005006.813965,3515602998177.774902,11,0,0.002469,0.001999,66739977,32835004,0,0,95385,0,1,1 +1773704254.814049,0.60,4,3992.50,54.35,1594.82,2128.00,0.00,0.053510,0.000000,75,0,0.001064,0.000439,66739999,32835021,0,0,95388,0,1,1 +1773704259.809677,0.60,4,3992.50,54.35,1594.83,2127.99,0.00,61896.343712,68736.938531,4234573,3514242,0.000000,0.000020,66739999,32835023,0,0,95390,0,1,1 +1773704264.816544,5.46,4,3992.50,59.42,1396.50,2326.32,0.00,3513611583811.508789,3513611576986.323242,11,0,2.006416,0.006291,66740462,32835357,0,0,95393,0,1,1 +1773704269.810727,11.62,4,3992.50,55.17,1562.66,2160.13,0.00,0.000000,0.000000,11,0,38.100265,0.013799,66744378,32836320,0,0,95395,0,1,1 +1773704274.814369,0.95,4,3992.50,54.68,1579.32,2140.99,0.00,61797.254615,68627.022971,4234573,3514407,0.000000,0.000030,66744378,32836323,0,0,95398,0,1,1 +1773704279.813908,0.65,4,3992.50,54.46,1588.00,2132.31,0.00,3518761916802.063965,3518761909966.689453,11,0,0.000031,0.000689,66744380,32836331,0,0,95400,0,1,1 +1773704284.812937,0.65,4,3992.50,54.47,1587.66,2132.66,0.00,0.000000,0.000000,11,0,0.000000,0.000030,66744380,32836334,0,0,95403,0,1,1 +1773704289.813940,0.60,4,3992.50,54.47,1587.66,2132.65,0.00,0.053505,0.000000,75,0,0.000000,0.000020,66744380,32836336,0,0,95405,0,1,1 +1773704294.813753,0.70,4,3992.50,54.44,1588.68,2131.64,0.00,61844.521763,68679.614875,4234573,3514448,0.000056,0.000086,66744384,32836343,0,0,95408,0,1,1 +1773704299.810890,0.60,4,3992.50,54.44,1588.68,2131.64,0.00,3520453009833.157715,3520453002994.276855,205,0,0.000025,0.000051,66744386,32836347,0,0,95410,0,1,1 +1773704304.809554,0.95,4,3992.50,54.65,1580.98,2139.48,0.00,3519377327478.804688,0.000000,75,0,0.000008,0.000038,66744387,32836351,0,0,95413,0,1,1 +1773704309.814203,0.60,4,3992.50,54.64,1580.74,2139.45,0.00,2.119904,0.000195,258,2,0.000031,0.000045,66744389,32836355,0,0,95415,0,1,1 +1773704314.812653,0.75,4,3992.50,54.64,1580.74,2139.45,0.00,61849.529669,68687.744905,4233070,3513759,0.000126,0.000185,66744399,32836368,0,0,95418,0,1,1 +1773704319.812420,0.70,4,3992.50,54.64,1580.75,2139.44,0.00,3518601510779.312012,3518601503945.071777,11,0,0.000000,0.000020,66744399,32836370,0,0,95420,0,1,1 +1773704324.814338,0.60,4,3992.50,54.65,1580.52,2139.67,0.00,0.000000,0.000000,11,0,0.000000,0.000030,66744399,32836373,0,0,95423,0,1,1 +1773704329.813368,1.25,4,3992.50,54.45,1588.40,2131.78,0.00,2.175813,0.000195,258,2,0.002321,0.001336,66744428,32836401,0,0,95425,0,1,1 +1773704334.813868,19.06,4,3992.50,55.47,1548.94,2171.96,0.00,3518085670503.133789,3518085670505.128906,205,0,40.058300,0.022959,66748738,32838004,0,0,95428,0,1,1 +1773704339.809463,0.65,4,3992.50,54.60,1583.09,2137.82,0.00,1.478744,10.684609,253,762,0.000008,0.000028,66748739,32838007,0,0,95430,0,1,1 +1773704344.811497,0.75,4,3992.50,54.21,1598.60,2122.32,0.00,61805.735330,68628.087949,4233070,3513966,0.000000,0.000673,66748739,32838014,0,0,95433,0,1,1 +1773704349.812330,0.70,4,3992.50,54.16,1600.46,2120.45,0.00,9.724551,10.679080,4234573,3514733,0.000000,0.000020,66748739,32838016,0,0,95435,0,1,1 +1773704354.811628,0.70,4,3992.50,54.17,1600.08,2120.84,0.00,3518931910275.090332,3518931903439.028809,11,0,0.000000,0.000030,66748739,32838019,0,0,95438,0,1,1 +1773704359.809451,0.70,4,3992.50,54.17,1600.08,2120.84,0.00,2.176338,0.000195,258,2,0.000000,0.000020,66748739,32838021,0,0,95440,0,1,1 +1773704364.813800,1.00,4,3992.50,54.37,1598.86,2128.71,0.00,3515379675769.660156,3515379675771.780273,75,0,0.000000,0.000030,66748739,32838024,0,0,95443,0,1,1 +1773704369.809548,0.60,4,3992.50,54.37,1598.60,2128.89,0.00,61894.843703,68735.869640,4234573,3514761,0.000000,0.000020,66748739,32838026,0,0,95445,0,1,1 +1773704374.809575,0.65,4,3992.50,54.37,1598.60,2128.89,0.00,3518418601458.660156,3518418594621.365723,258,2,0.000000,0.000030,66748739,32838029,0,0,95448,0,1,1 +1773704379.809558,0.75,4,3992.50,54.37,1598.61,2128.89,0.00,3518448705764.195801,3518448705766.190918,205,0,0.000157,0.000200,66748751,32838043,0,0,95450,0,1,1 +1773704384.814355,0.70,4,3992.50,54.37,1598.61,2128.89,0.00,3515064923787.397461,0.000000,11,0,0.000016,0.000046,66748753,32838048,0,0,95453,0,1,1 +1773704389.809477,0.60,4,3992.50,54.36,1599.24,2128.25,0.00,0.000000,0.000000,11,0,0.000000,0.000020,66748753,32838050,0,0,95455,0,1,1 +1773704394.811421,1.25,4,3992.50,54.42,1596.41,2130.54,0.00,61808.507115,68640.132641,4233070,3514066,0.002890,0.001656,66748779,32838071,0,0,95458,0,1,1 +1773704399.810648,18.73,4,3992.50,54.27,1601.68,2124.97,0.00,3518981361743.206543,3518981354905.691406,258,2,40.070510,0.023313,66753247,32839664,0,0,95460,0,1,1 +1773704404.813793,1.45,4,3992.50,54.31,1600.48,2126.16,0.00,3516225840385.103027,3516225840387.276855,11,0,0.000000,0.000030,66753247,32839667,0,0,95463,0,1,1 +1773704409.813971,0.60,4,3992.50,54.31,1600.48,2126.16,0.00,0.053514,0.000000,75,0,0.000000,0.000664,66753247,32839673,0,0,95465,0,1,1 +1773704414.811286,0.70,4,3992.50,54.31,1600.48,2126.16,0.00,3520328008739.592773,0.000000,11,0,0.000000,0.000030,66753247,32839676,0,0,95468,0,1,1 +1773704419.813793,0.50,4,3992.50,54.31,1600.48,2126.16,0.00,1.656884,10.669844,253,762,0.000000,0.000020,66753247,32839678,0,0,95470,0,1,1 +1773704424.813465,1.05,4,3992.50,54.06,1599.90,2116.59,0.00,3518667890637.251465,3518667890628.233887,11,0,0.000000,0.000030,66753247,32839681,0,0,95473,0,1,1 +1773704429.810677,0.90,4,3992.50,54.06,1599.91,2116.59,0.00,0.180374,0.000000,205,0,0.000000,0.000020,66753247,32839683,0,0,95475,0,1,1 +1773704434.812673,0.60,4,3992.50,54.06,1599.91,2116.59,0.00,0.000000,0.000000,205,0,0.000000,0.000030,66753247,32839686,0,0,95478,0,1,1 +1773704439.813886,0.70,4,3992.50,54.06,1599.91,2116.59,0.00,3517584130007.998535,0.000000,75,0,0.000000,0.000020,66753247,32839688,0,0,95480,0,1,1 +1773704444.814118,0.60,4,3992.50,54.07,1599.68,2116.82,0.00,61839.337800,68674.607943,4234573,3515117,0.000157,0.000210,66753259,32839703,0,0,95483,0,1,1 +1773704449.813773,0.75,4,3992.50,54.07,1599.68,2116.82,0.00,3518680264623.928711,3518680257787.921875,11,0,0.000016,0.000036,66753261,32839707,0,0,95485,0,1,1 +1773704454.814129,1.00,4,3992.50,54.15,1599.00,2120.23,0.00,0.000000,0.000000,11,0,0.000000,0.000030,66753261,32839710,0,0,95488,0,1,1 +1773704459.814105,0.85,4,3992.50,53.95,1606.93,2112.34,0.00,0.053516,0.000000,75,0,0.000971,0.000383,66753279,32839725,0,0,95490,0,1,1 +1773704464.809568,16.00,4,3992.50,55.63,1541.07,2178.20,0.00,2.123802,0.000195,258,2,40.099874,0.021332,66757577,32841135,0,0,95493,0,1,1 +1773704469.814424,0.75,4,3992.50,54.80,1573.66,2145.61,0.00,61770.383621,68600.664600,4233070,3514525,0.000000,0.000020,66757577,32841137,0,0,95495,0,1,1 +1773704474.809640,0.65,4,3992.50,54.39,1589.79,2129.48,0.00,3521806423333.616699,3521806416492.153320,205,0,0.000000,0.000674,66757577,32841144,0,0,95498,0,1,1 +1773704479.812486,0.65,4,3992.50,54.35,1591.54,2127.73,0.00,0.000000,0.000000,205,0,0.000000,0.000020,66757577,32841146,0,0,95500,0,1,1 +1773704484.809467,0.95,4,3992.50,54.39,1589.62,2129.56,0.00,3520562549258.294434,0.000000,11,0,0.000000,0.000030,66757577,32841149,0,0,95503,0,1,1 +1773704489.814073,0.70,4,3992.50,54.39,1589.66,2129.51,0.00,0.053466,0.000000,75,0,0.000307,0.000574,66757584,32841162,0,0,95505,0,1,1 +1773704494.810413,0.65,4,3992.50,54.39,1589.67,2129.50,0.00,1.605374,10.683016,253,762,0.000205,0.000562,66757591,32841176,0,0,95508,0,1,1 +1773704499.810637,0.70,4,3992.50,54.39,1589.67,2129.50,0.00,0.000000,0.000000,253,762,0.000008,0.000028,66757592,32841179,0,0,95510,0,1,1 +1773704504.809570,0.65,4,3992.50,54.39,1589.67,2129.50,0.00,61853.815068,68682.066368,4234573,3515374,0.000000,0.000030,66757592,32841182,0,0,95513,0,1,1 +1773704509.810374,0.65,4,3992.50,54.39,1589.67,2129.50,0.00,3517871126501.878418,3517871119666.987305,205,0,0.000157,0.000200,66757604,32841196,0,0,95515,0,1,1 +1773704514.813971,0.90,4,3992.50,54.59,1582.19,2137.13,0.00,0.000000,0.000000,205,0,0.000000,0.000030,66757604,32841199,0,0,95518,0,1,1 +1773704519.810637,0.75,4,3992.50,54.58,1582.09,2137.09,0.00,3520784747037.348633,0.000000,11,0,0.000000,0.000020,66757604,32841201,0,0,95520,0,1,1 +1773704524.809600,0.65,4,3992.50,54.59,1581.84,2137.34,0.00,0.053527,0.000000,75,0,0.000000,0.000030,66757604,32841204,0,0,95523,0,1,1 +1773704529.812658,15.77,4,3992.50,55.97,1527.95,2191.21,0.00,0.126680,0.000000,205,0,40.040756,0.023297,66762002,32842757,0,0,95525,0,1,1 +1773704534.809585,0.70,4,3992.50,55.05,1563.73,2155.45,0.00,3520600349528.058105,0.000000,11,0,0.000248,0.000587,66762012,32842773,0,0,95528,0,1,1 +1773704539.809559,0.60,4,3992.50,54.62,1580.77,2138.41,0.00,1.657724,10.675252,253,762,0.000031,0.000689,66762014,32842781,0,0,95530,0,1,1 +1773704544.811465,0.90,4,3992.50,55.04,1561.64,2154.89,0.00,61817.048341,68641.473854,4234573,3515583,0.000000,0.000030,66762014,32842784,0,0,95533,0,1,1 +1773704549.814285,0.80,4,3992.50,54.86,1567.66,2147.99,0.00,3516453763033.208984,3516453756210.030762,253,762,0.002085,0.002102,66762046,32842812,0,0,95535,0,1,1 +1773704554.813586,0.70,4,3992.50,54.65,1575.91,2139.75,0.00,61839.516819,68666.590302,4233070,3514863,0.001072,0.000439,66762069,32842829,0,0,95538,0,1,1 +1773704559.813671,0.65,4,3992.50,54.66,1575.72,2139.93,0.00,9.726007,10.687710,4234573,3515631,0.000000,0.000020,66762069,32842831,0,0,95540,0,1,1 +1773704564.809440,0.65,4,3992.50,54.46,1583.37,2132.28,0.00,3521417049734.619629,3521417042890.553223,258,2,0.000000,0.000030,66762069,32842834,0,0,95543,0,1,1 +1773704569.814135,0.75,4,3992.50,54.47,1583.12,2132.53,0.00,3515136348214.377930,3515136348216.498047,75,0,0.000000,0.000020,66762069,32842836,0,0,95545,0,1,1 +1773704574.809548,1.05,4,3992.50,54.56,1582.46,2136.20,0.00,1.605672,10.684999,253,762,0.000094,0.000148,66762076,32842847,0,0,95548,0,1,1 +1773704579.814305,0.55,4,3992.50,54.57,1582.10,2136.42,0.00,3515093238115.516602,3515093238106.454590,75,0,0.000044,0.000045,66762079,32842851,0,0,95550,0,1,1 +1773704584.809645,0.55,4,3992.50,54.57,1582.10,2136.42,0.00,3521719277276.636230,0.000000,11,0,0.000000,0.000030,66762079,32842854,0,0,95553,0,1,1 +1773704589.810566,0.70,4,3992.50,54.57,1582.10,2136.42,0.00,0.000000,0.000000,11,0,0.000000,0.000020,66762079,32842856,0,0,95555,0,1,1 +1773704594.813938,15.53,4,3992.50,54.38,1589.58,2128.93,0.00,0.000000,0.000000,11,0,40.038808,0.021912,66766478,32844261,0,0,95558,0,1,1 +1773704599.813900,0.65,4,3992.50,54.39,1589.12,2129.39,0.00,0.000000,0.000000,11,0,0.000644,0.000304,66766492,32844272,0,0,95560,0,1,1 +1773704604.813884,1.00,4,3992.50,54.78,1588.29,2144.58,0.00,1.657720,10.675229,253,762,0.000008,0.000682,66766493,32844280,0,0,95563,0,1,1 +1773704609.813508,0.65,4,3992.50,54.78,1587.99,2144.58,0.00,61835.534722,68662.502788,4233070,3515149,0.000000,0.000020,66766493,32844282,0,0,95565,0,1,1 +1773704614.814137,0.70,4,3992.50,54.78,1587.99,2144.58,0.00,3517995195386.243652,3517995188551.630371,11,0,0.000000,0.000030,66766493,32844285,0,0,95568,0,1,1 +1773704619.811090,0.60,4,3992.50,54.78,1587.99,2144.57,0.00,0.000000,0.000000,11,0,0.000000,0.000020,66766493,32844287,0,0,95570,0,1,1 +1773704624.809654,0.65,4,3992.50,54.72,1590.05,2142.52,0.00,0.180325,0.000000,205,0,0.000000,0.000030,66766493,32844290,0,0,95573,0,1,1 +1773704629.809459,0.60,4,3992.50,54.75,1588.82,2143.74,0.00,0.000000,0.000000,205,0,0.000000,0.000020,66766493,32844292,0,0,95575,0,1,1 +1773704634.813417,1.00,4,3992.50,54.59,1589.40,2137.23,0.00,1.993539,0.000195,258,2,0.000000,0.000030,66766493,32844295,0,0,95578,0,1,1 +1773704639.814102,0.80,4,3992.50,54.52,1591.76,2134.59,0.00,3517954893043.642578,3517954893045.817383,11,0,0.000132,0.000169,66766503,32844307,0,0,95580,0,1,1 +1773704644.813303,0.60,4,3992.50,54.53,1591.54,2134.82,0.00,2.175738,0.000195,258,2,0.000033,0.000069,66766506,32844313,0,0,95583,0,1,1 +1773704649.809440,0.70,4,3992.50,54.33,1599.17,2127.19,0.00,61887.923653,68731.920683,4234574,3516019,0.000000,0.000020,66766506,32844315,0,0,95585,0,1,1 +1773704654.809552,0.70,4,3992.50,54.33,1599.18,2127.18,0.00,3518358214785.386230,3518358207949.005859,11,0,0.000000,0.000030,66766506,32844318,0,0,95588,0,1,1 +1773704659.812867,15.91,4,3992.50,54.08,1608.87,2117.47,0.00,0.000000,0.000000,11,0,40.036973,0.022093,66770807,32845788,0,0,95590,0,1,1 +1773704664.809577,1.05,4,3992.50,54.08,1609.34,2117.40,0.00,2.176823,0.000195,258,2,0.000627,0.000291,66770820,32845799,0,0,95593,0,1,1 +1773704669.809439,0.65,4,3992.50,54.08,1609.08,2117.39,0.00,0.000000,0.000000,258,2,0.000000,0.000664,66770820,32845805,0,0,95595,0,1,1 +1773704674.809478,0.70,4,3992.50,54.08,1609.08,2117.39,0.00,3518410008053.252441,3518410008055.427734,11,0,0.000000,0.000030,66770820,32845808,0,0,95598,0,1,1 +1773704679.814183,0.65,4,3992.50,54.08,1609.08,2117.39,0.00,1.656156,10.665159,253,762,0.000000,0.000020,66770820,32845810,0,0,95600,0,1,1 +1773704684.813708,0.75,4,3992.50,54.08,1609.09,2117.38,0.00,3518771538625.549316,3518771538616.478027,75,0,0.000000,0.000030,66770820,32845813,0,0,95603,0,1,1 +1773704689.813498,0.75,4,3992.50,54.08,1609.09,2117.38,0.00,3518585254061.428223,0.000000,11,0,0.000000,0.000020,66770820,32845815,0,0,95605,0,1,1 +1773704694.813746,0.90,4,3992.50,54.22,1603.46,2122.72,0.00,0.000000,0.000000,11,0,0.000000,0.000030,66770820,32845818,0,0,95608,0,1,1 +1773704699.810410,0.85,4,3992.50,54.22,1603.41,2122.68,0.00,0.000000,0.000000,11,0,0.000000,0.000020,66770820,32845820,0,0,95610,0,1,1 +1773704704.809619,0.90,4,3992.50,54.21,1603.61,2122.49,0.00,61842.368519,68679.276433,4233073,3515497,0.000118,0.000030,66770827,32845823,0,0,95613,0,1,1 +1773704709.809570,0.85,4,3992.50,54.23,1602.87,2123.23,0.00,3518471587961.776367,3518471581125.702637,205,0,0.000043,0.000020,66770831,32845825,0,0,95615,0,1,1 +1773704714.811380,1.00,4,3992.50,54.23,1602.88,2123.23,0.00,61810.038007,68643.635831,4233073,3515568,0.000000,0.000030,66770831,32845828,0,0,95618,0,1,1 +1773704719.813999,0.90,4,3992.50,54.24,1602.63,2123.47,0.00,0.000000,0.003123,4233073,3515571,0.000089,0.000234,66770838,32845842,0,0,95620,0,1,1 +1773704724.814546,2.81,4,3992.50,59.72,1393.71,2338.29,0.00,3518052552842.103027,3518052546006.775879,205,0,0.012607,0.003763,66770912,32845901,0,0,95623,0,1,1 +1773704729.809559,15.55,4,3992.50,54.70,1590.26,2141.60,0.00,1.997109,0.000196,258,2,40.093456,0.021517,66775255,32847476,0,0,95625,0,1,1 +1773704734.813647,0.75,4,3992.50,54.70,1590.27,2141.60,0.00,3515562815116.899414,10.666279,253,762,0.000010,0.000531,66775256,32847483,0,0,95628,0,1,1 +1773704739.813868,0.70,4,3992.50,54.56,1595.71,2136.15,0.00,3518281149891.889160,3518281149882.872070,11,0,0.000000,0.000181,66775256,32847486,0,0,95630,0,1,1 +1773704744.814289,0.75,4,3992.50,54.58,1594.98,2136.89,0.00,0.000000,0.000000,11,0,0.000000,0.000030,66775256,32847489,0,0,95633,0,1,1 +1773704749.813488,0.70,4,3992.50,54.58,1594.98,2136.89,0.00,0.000000,0.000000,11,0,0.000000,0.000020,66775256,32847491,0,0,95635,0,1,1 +1773704754.810076,1.15,4,3992.50,54.45,1601.43,2131.84,0.00,0.180397,0.000000,205,0,0.000000,0.000030,66775256,32847494,0,0,95638,0,1,1 +1773704759.809457,0.55,4,3992.50,54.46,1599.16,2132.07,0.00,3518872841118.102539,0.000000,11,0,0.000000,0.000020,66775256,32847496,0,0,95640,0,1,1 +1773704764.813634,0.70,4,3992.50,54.12,1612.38,2118.84,0.00,2.173575,0.000195,258,2,0.000000,0.000030,66775256,32847499,0,0,95643,0,1,1 +1773704769.809598,0.60,4,3992.50,54.14,1611.64,2119.58,0.00,61880.372407,68724.311491,4233073,3515883,0.000044,0.000020,66775259,32847501,0,0,95645,0,1,1 +1773704774.813560,0.55,4,3992.50,54.16,1610.67,2120.55,0.00,3515651100429.313477,3515651093598.487793,11,0,0.000074,0.000030,66775263,32847504,0,0,95648,0,1,1 +1773704779.809561,0.70,4,3992.50,54.17,1610.45,2120.77,0.00,1.659042,10.683739,253,762,0.000106,0.000143,66775272,32847514,0,0,95650,0,1,1 +1773704784.813788,0.85,4,3992.50,54.08,1607.57,2117.31,0.00,3515465457264.480957,3515465457255.471191,11,0,0.000000,0.000030,66775272,32847517,0,0,95653,0,1,1 +1773704789.809464,10.34,4,3992.50,59.20,1406.57,2317.97,0.00,0.053562,0.000000,75,0,13.437991,0.015902,66776940,32848529,0,0,95655,0,1,1 +1773704794.813799,4.66,4,3992.50,55.27,1560.58,2163.96,0.00,1.602810,10.665948,253,762,26.617155,0.011465,66779667,32849278,0,0,95658,0,1,1 +1773704799.813853,0.75,4,3992.50,54.55,1588.85,2135.70,0.00,0.000000,0.000000,253,762,0.000000,0.000503,66779667,32849283,0,0,95660,0,1,1 +1773704804.813408,0.65,4,3992.50,54.19,1602.91,2121.65,0.00,61836.433159,68664.425338,4233073,3516062,0.000000,0.000191,66779667,32849287,0,0,95663,0,1,1 +1773704809.809606,0.60,4,3992.50,54.17,1603.53,2121.03,0.00,3521114497585.416016,3521114490743.757812,75,0,0.000000,0.000020,66779667,32849289,0,0,95665,0,1,1 +1773704814.809466,0.80,4,3992.50,54.22,1601.88,2122.67,0.00,0.126761,0.000000,205,0,0.000000,0.000030,66779667,32849292,0,0,95668,0,1,1 +1773704819.812551,1.10,4,3992.50,54.41,1587.92,2130.24,0.00,3516268206575.583496,0.000000,11,0,0.000000,0.000020,66779667,32849294,0,0,95670,0,1,1 +1773704824.813876,0.60,4,3992.50,54.24,1594.68,2123.51,0.00,2.174814,0.000195,258,2,0.000000,0.000030,66779667,32849297,0,0,95673,0,1,1 +1773704829.809752,0.65,4,3992.50,54.27,1593.20,2124.98,0.00,3521341409856.803711,10.683811,253,762,0.000000,0.000020,66779667,32849299,0,0,95675,0,1,1 +1773704834.813684,0.65,4,3992.50,54.27,1593.20,2124.98,0.00,61782.342465,68604.484499,4233073,3516136,0.000198,0.000030,66779679,32849302,0,0,95678,0,1,1 +1773704839.813880,0.65,4,3992.50,54.28,1592.99,2125.20,0.00,3518299143877.670898,3518299137041.414062,11,0,0.000399,0.000737,66779700,32849328,0,0,95680,0,1,1 +1773704844.813765,0.90,4,3992.50,54.25,1595.78,2124.14,0.00,1.657753,10.675441,253,762,0.000000,0.000030,66779700,32849331,0,0,95683,0,1,1 +1773704849.813869,0.70,4,3992.50,54.26,1595.70,2124.22,0.00,0.517665,3518364278106.750000,258,2,0.001417,0.001190,66779729,32849358,0,0,95685,0,1,1 +1773704854.813480,8.93,4,3992.50,59.12,1405.41,2314.50,0.00,3518711027935.796387,3518711027937.971680,11,0,5.416342,0.010739,66780608,32849955,0,0,95688,0,1,1 +1773704859.813410,7.67,4,3992.50,54.84,1572.96,2146.95,0.00,0.180276,0.000000,205,0,34.650493,0.013862,66784072,32850923,0,0,95690,0,1,1 +1773704864.809445,0.60,4,3992.50,54.38,1590.86,2129.06,0.00,1.478614,10.683666,253,762,0.000000,0.000674,66784072,32850930,0,0,95693,0,1,1 +1773704869.814282,0.65,4,3992.50,54.05,1603.67,2116.25,0.00,61771.183370,68592.253291,4233073,3516312,0.000000,0.000020,66784072,32850932,0,0,95695,0,1,1 +1773704874.814153,0.85,4,3992.50,54.08,1602.07,2117.18,0.00,3518527768846.588379,3518527762007.551758,258,2,0.000000,0.000030,66784072,32850935,0,0,95698,0,1,1 +1773704879.813480,0.75,4,3992.50,54.08,1602.07,2117.18,0.00,3518910809234.069336,3518910809236.064941,205,0,0.000000,0.000020,66784072,32850937,0,0,95700,0,1,1 +1773704884.811158,0.60,4,3992.50,54.08,1602.07,2117.18,0.00,1.996044,0.000195,258,2,0.000118,0.000030,66784079,32850940,0,0,95703,0,1,1 +1773704889.814393,0.70,4,3992.50,54.09,1601.63,2117.63,0.00,61790.440930,68624.982989,4233073,3516374,0.000018,0.000020,66784080,32850942,0,0,95705,0,1,1 +1773704894.812063,0.65,4,3992.50,54.09,1601.63,2117.62,0.00,3520077806739.257324,3520077799899.281250,11,0,0.000118,0.000030,66784087,32850945,0,0,95708,0,1,1 +1773704899.813077,0.70,4,3992.50,54.09,1601.64,2117.62,0.00,0.180237,0.000000,205,0,0.000058,0.000068,66784091,32850951,0,0,95710,0,1,1 +1773704904.810258,0.90,4,3992.50,54.09,1601.41,2117.58,0.00,0.000000,0.000000,205,0,0.000126,0.000185,66784101,32850964,0,0,95713,0,1,1 +1773704909.812663,0.80,4,3992.50,54.12,1599.57,2119.02,0.00,1.476731,10.670064,253,762,0.000018,0.000035,66784102,32850967,0,0,95715,0,1,1 +1773704914.814271,0.65,4,3992.50,54.13,1599.34,2119.25,0.00,3517305408940.131348,3517305408931.116699,11,0,0.000000,0.000030,66784102,32850970,0,0,95718,0,1,1 +1773704919.813737,4.96,4,3992.50,58.92,1411.79,2306.78,0.00,1.657892,10.676336,253,762,0.807555,0.005183,66784379,32851165,0,0,95720,0,1,1 +1773704924.813706,10.68,4,3992.50,54.79,1573.28,2145.30,0.00,3518459256250.933594,3518459256241.916504,11,0,39.259000,0.017853,66788510,32852451,0,0,95723,0,1,1 +1773704929.814396,0.70,4,3992.50,54.28,1593.56,2125.02,0.00,1.657486,10.673721,253,762,0.000000,0.000342,66788510,32852455,0,0,95725,0,1,1 +1773704934.809582,1.05,4,3992.50,54.15,1594.76,2120.18,0.00,61890.520853,68725.294488,4233073,3516658,0.000000,0.000352,66788510,32852460,0,0,95728,0,1,1 +1773704939.809827,0.60,4,3992.50,54.15,1594.78,2120.16,0.00,0.000000,0.037498,4233073,3516695,0.000000,0.000020,66788510,32852462,0,0,95730,0,1,1 +1773704944.809624,0.75,4,3992.50,54.15,1594.78,2120.16,0.00,3518579782534.171875,3518579775696.593262,75,0,0.000000,0.000030,66788510,32852465,0,0,95733,0,1,1 +1773704949.809571,0.65,4,3992.50,54.15,1594.78,2120.16,0.00,61842.922103,68681.248153,4234576,3517462,0.000000,0.000020,66788510,32852467,0,0,95735,0,1,1 +1773704954.813654,0.70,4,3992.50,54.16,1594.54,2120.41,0.00,3515565729982.248535,3515565723149.629883,11,0,0.000000,0.000030,66788510,32852470,0,0,95738,0,1,1 +1773704959.814135,0.75,4,3992.50,53.99,1601.00,2113.95,0.00,1.657556,10.674170,253,762,0.000000,0.000020,66788510,32852472,0,0,95740,0,1,1 +1773704964.813632,0.95,4,3992.50,54.11,1602.11,2118.62,0.00,0.000000,0.000000,253,762,0.000031,0.000055,66788512,32852477,0,0,95743,0,1,1 +1773704969.813689,0.65,4,3992.50,54.07,1603.57,2117.03,0.00,3518397712756.178223,3518397712747.161133,11,0,0.000126,0.000175,66788522,32852489,0,0,95745,0,1,1 +1773704974.809469,0.75,4,3992.50,54.07,1603.57,2117.03,0.00,0.000000,0.000000,11,0,0.000016,0.000046,66788524,32852494,0,0,95748,0,1,1 +1773704979.811399,0.70,4,3992.50,54.03,1605.12,2115.48,0.00,0.000000,0.000000,11,0,0.000000,0.000020,66788524,32852496,0,0,95750,0,1,1 +1773704984.809505,0.95,4,3992.50,53.87,1611.29,2109.30,0.00,0.000000,0.000000,11,0,0.002210,0.000724,66788546,32852514,0,0,95753,0,1,1 +1773704989.814012,14.29,4,3992.50,59.63,1385.93,2334.67,0.00,0.053467,0.000000,75,0,3.731694,0.006813,66789256,32852929,0,0,95755,0,1,1 +1773704994.814060,1.00,4,3992.50,59.82,1379.18,2342.04,0.00,61841.663401,68680.075463,4234576,3517638,0.000447,0.000191,66789267,32852933,0,0,95758,0,1,1 +1773704999.809579,0.70,4,3992.50,59.83,1378.75,2342.46,0.00,3521593427976.267090,3521593421140.733398,253,762,0.000447,0.000503,66789278,32852938,0,0,95760,0,1,1 +1773705004.809576,0.80,4,3992.50,59.85,1377.79,2343.43,0.00,0.000000,0.000000,253,762,0.000000,0.000030,66789278,32852941,0,0,95763,0,1,1 +1773705009.813457,0.65,4,3992.50,59.84,1378.34,2342.87,0.00,3515707872748.381836,3515707872739.371582,11,0,0.000000,0.000020,66789278,32852943,0,0,95765,0,1,1 +1773705014.809837,0.70,4,3992.50,59.84,1378.34,2342.87,0.00,2.176967,0.000195,258,2,0.000447,0.000030,66789289,32852946,0,0,95768,0,1,1 +1773705019.809484,1.05,4,3992.50,59.88,1376.89,2344.32,0.00,3518685616121.991699,3518685616124.167480,11,0,0.000716,0.001892,66789312,32852982,0,0,95770,0,1,1 +1773705024.809579,1.25,4,3992.50,59.92,1376.62,2346.03,0.00,1.657683,10.674993,253,762,0.000734,0.001945,66789336,32853022,0,0,95773,0,1,1 +1773705029.809457,0.90,4,3992.50,59.94,1375.80,2346.73,0.00,0.517688,3518522528117.899902,258,2,0.000040,0.000095,66789339,32853029,0,0,95775,0,1,1 +1773705034.809458,0.95,4,3992.50,59.94,1375.80,2346.73,0.00,61830.410458,68670.233833,4233073,3517058,0.004768,0.003954,66789408,32853084,0,0,95778,0,1,1 +1773705039.813562,1.15,4,3992.50,59.31,1400.24,2322.29,0.00,3515551273197.111328,3515551266365.017578,75,0,35.701617,0.013292,66792857,32853989,0,0,95780,0,1,1 +1773705044.809469,0.80,4,3992.50,54.21,1600.09,2122.44,0.00,2.123614,0.000195,258,2,0.602463,0.002165,66793039,32854086,0,0,95783,0,1,1 +1773705049.809463,0.75,4,3992.50,54.10,1604.53,2118.00,0.00,3518441623821.574707,3518441623823.750000,11,0,0.000000,0.000020,66793039,32854088,0,0,95785,0,1,1 +1773705054.812342,1.10,4,3992.50,54.30,1598.66,2126.05,0.00,61806.721351,68641.497478,4234576,3517920,0.000000,0.000030,66793039,32854091,0,0,95788,0,1,1 +1773705059.813839,0.65,4,3992.50,54.33,1595.31,2127.09,0.00,3517383776424.189453,3517383769587.344238,205,0,0.000000,0.000181,66793039,32854094,0,0,95790,0,1,1 +1773705064.813719,0.65,4,3992.50,54.33,1595.31,2127.09,0.00,61833.895623,68672.037688,4233073,3517191,0.000198,0.000513,66793051,32854100,0,0,95793,0,1,1 +1773705069.811739,0.75,4,3992.50,54.33,1595.31,2127.09,0.00,9.730026,10.680402,4234576,3517956,0.000372,0.000020,66793073,32854102,0,0,95795,0,1,1 +1773705074.813639,0.55,4,3992.50,54.34,1595.07,2127.34,0.00,0.000000,0.011714,4234576,3517962,0.000111,0.000030,66793079,32854105,0,0,95798,0,1,1 +1773705079.809501,0.65,4,3992.50,54.33,1595.37,2127.04,0.00,0.000000,0.000782,4234576,3517963,0.000045,0.000102,66793082,32854113,0,0,95800,0,1,1 +1773705084.813542,0.80,4,3992.50,54.45,1591.57,2131.70,0.00,3515595672421.708496,3515595672420.794434,4233073,3517216,0.000025,0.000061,66793084,32854118,0,0,95803,0,1,1 +1773705089.813087,0.65,4,3992.50,54.46,1591.07,2132.15,0.00,0.000000,0.007813,4233073,3517225,0.000101,0.000144,66793092,32854128,0,0,95805,0,1,1 +1773705094.809572,0.65,4,3992.50,54.46,1591.07,2132.15,0.00,0.000000,0.001564,4233073,3517227,0.000000,0.000030,66793092,32854131,0,0,95808,0,1,1 +1773705099.814212,0.70,4,3992.50,54.46,1591.07,2132.15,0.00,3515174846149.507812,3515174839317.993164,11,0,0.000000,0.000020,66793092,32854133,0,0,95810,0,1,1 +1773705104.815537,3.81,4,3992.50,59.08,1410.13,2313.10,0.00,61816.208819,68652.263690,4233073,3517257,1.006436,0.004614,66793365,32854333,0,0,95813,0,1,1 +1773705109.813726,12.80,4,3992.50,59.75,1383.73,2339.49,0.00,3519712061379.312988,3519712054536.792480,258,2,4.524750,0.004818,66794020,32854716,0,0,95815,0,1,1 +1773705114.813484,1.00,4,3992.50,59.82,1376.02,2342.24,0.00,3518607136495.731934,10.675516,253,762,0.000447,0.000030,66794031,32854719,0,0,95818,0,1,1 +1773705119.814268,0.80,4,3992.50,59.82,1376.20,2342.20,0.00,3517885678282.787109,3517885678273.770996,11,0,0.000447,0.000020,66794042,32854721,0,0,95820,0,1,1 +1773705124.813473,0.70,4,3992.50,59.65,1382.88,2335.52,0.00,0.000000,0.000000,11,0,0.000000,0.000352,66794042,32854726,0,0,95823,0,1,1 +1773705129.809486,0.60,4,3992.50,59.67,1382.16,2336.24,0.00,61891.669707,68736.137479,4234576,3518172,0.000000,0.000342,66794042,32854730,0,0,95825,0,1,1 +1773705134.809614,0.80,4,3992.50,59.71,1380.69,2337.71,0.00,3518346898629.914062,3518346891800.097168,253,762,0.000447,0.000030,66794053,32854733,0,0,95828,0,1,1 +1773705139.809583,0.80,4,3992.50,59.71,1380.47,2337.92,0.00,3518459338583.451172,3518459338574.380859,75,0,0.001128,0.003025,66794088,32854789,0,0,95830,0,1,1 +1773705144.813571,1.00,4,3992.50,59.95,1376.04,2347.27,0.00,61792.971605,68626.628251,4234576,3518209,0.000000,0.000030,66794088,32854792,0,0,95833,0,1,1 +1773705149.810563,1.00,4,3992.50,59.97,1375.27,2347.96,0.00,3520554974908.213867,3520554968064.862793,205,0,0.001699,0.002866,66794136,32854853,0,0,95835,0,1,1 +1773705154.809486,1.00,4,3992.50,59.87,1379.08,2344.15,0.00,3519195275218.058594,0.000000,11,0,0.004229,0.003034,66794211,32854906,0,0,95838,0,1,1 +1773705159.814193,1.10,4,3992.50,54.07,1606.09,2117.15,0.00,61784.149167,68616.824133,4234576,3518293,34.503527,0.012696,66797576,32855766,0,0,95840,0,1,1 +1773705164.809465,0.90,4,3992.50,54.10,1604.91,2118.32,0.00,3521767507893.430176,3521767501047.848633,11,0,0.003635,0.001628,66797644,32855811,0,0,95843,0,1,1 +1773705169.809508,0.75,4,3992.50,54.11,1604.67,2118.57,0.00,0.053515,0.000000,75,0,0.000000,0.000020,66797644,32855813,0,0,95845,0,1,1 +1773705174.809632,1.05,4,3992.50,54.31,1595.59,2126.20,0.00,0.000000,0.000000,75,0,0.000000,0.000030,66797644,32855816,0,0,95848,0,1,1 +1773705179.813705,0.70,4,3992.50,54.30,1595.48,2126.13,0.00,0.126655,0.000000,205,0,0.000000,0.000020,66797644,32855818,0,0,95850,0,1,1 +1773705184.814292,0.70,4,3992.50,54.30,1595.49,2126.12,0.00,3518024030329.202637,0.000000,75,0,0.000099,0.000030,66797650,32855821,0,0,95853,0,1,1 +1773705189.813559,0.80,4,3992.50,54.28,1596.34,2125.27,0.00,3518953485809.700684,0.000000,11,0,0.000037,0.000020,66797652,32855823,0,0,95855,0,1,1 +1773705194.809573,0.70,4,3992.50,53.94,1609.60,2112.01,0.00,0.000000,0.000000,11,0,0.000453,0.000674,66797679,32855830,0,0,95858,0,1,1 +1773705199.813103,0.75,4,3992.50,53.94,1609.61,2112.01,0.00,2.173856,0.000195,258,2,0.000045,0.000102,66797682,32855838,0,0,95860,0,1,1 +1773705204.813843,0.95,4,3992.50,54.18,1596.02,2121.11,0.00,3517917056701.034668,3517917056703.029785,205,0,0.000000,0.000030,66797682,32855841,0,0,95863,0,1,1 +1773705209.810652,0.65,4,3992.50,54.18,1595.83,2121.29,0.00,61881.621327,68725.491981,4234576,3518481,0.000126,0.000175,66797692,32855853,0,0,95865,0,1,1 +1773705214.813437,0.65,4,3992.50,54.18,1595.83,2121.29,0.00,3516478871298.229492,3516478864462.532715,205,0,0.000000,0.000089,66797692,32855859,0,0,95868,0,1,1 +1773705219.809582,0.65,4,3992.50,54.01,1602.50,2114.62,0.00,3521151997354.528809,0.000000,11,0,0.000000,0.000020,66797692,32855861,0,0,95870,0,1,1 +1773705224.809563,0.95,4,3992.50,53.96,1604.41,2112.71,0.00,61832.821258,68671.262856,4233073,3517748,0.002234,0.000735,66797716,32855880,0,0,95873,0,1,1 +1773705229.813777,0.65,4,3992.50,53.96,1604.39,2112.75,0.00,3515474551884.774902,3515474545051.937012,205,0,0.000000,0.000020,66797716,32855882,0,0,95875,0,1,1 +1773705234.814282,1.15,4,3992.50,54.16,1596.52,2120.61,0.00,61835.885357,68674.856171,4234576,3518607,0.000000,0.000030,66797716,32855885,0,0,95878,0,1,1 +1773705239.814091,0.65,4,3992.50,54.16,1596.56,2120.57,0.00,3518571754225.627930,3518571747385.884277,11,0,0.000000,0.000020,66797716,32855887,0,0,95880,0,1,1 +1773705244.813428,0.60,4,3992.50,53.99,1603.48,2113.65,0.00,0.053523,0.000000,75,0,0.000000,0.000030,66797716,32855890,0,0,95883,0,1,1 +1773705249.812238,0.75,4,3992.50,53.99,1603.23,2113.89,0.00,3519275066629.329590,0.000000,11,0,0.000000,0.000020,66797716,32855892,0,0,95885,0,1,1 +1773705254.813880,0.70,4,3992.50,53.99,1603.24,2113.89,0.00,0.000000,0.000000,11,0,0.000000,0.000030,66797716,32855895,0,0,95888,0,1,1 +1773705259.814029,11.30,4,3992.50,59.05,1405.12,2311.98,0.00,61840.468234,68679.785057,4234576,3518671,7.416052,0.013591,66798773,32856636,0,0,95890,0,1,1 +1773705264.814359,5.66,4,3992.50,55.05,1550.26,2155.18,0.00,3518205184035.224121,3518205177193.979004,258,2,32.645486,0.011205,66802061,32857394,0,0,95893,0,1,1 +1773705269.813788,0.70,4,3992.50,54.63,1566.57,2138.74,0.00,3518838939943.674316,3518838939945.850098,11,0,0.000000,0.000020,66802061,32857396,0,0,95895,0,1,1 +1773705274.813808,0.65,4,3992.50,54.27,1580.39,2124.93,0.00,0.053515,0.000000,75,0,0.000000,0.000030,66802061,32857399,0,0,95898,0,1,1 +1773705279.813918,0.75,4,3992.50,54.27,1580.38,2124.93,0.00,61831.185588,68669.843116,4233073,3518072,0.000000,0.000020,66802061,32857401,0,0,95900,0,1,1 +1773705284.814126,0.55,4,3992.50,54.27,1580.39,2124.93,0.00,3518290860738.750000,3518290853900.100586,205,0,0.000000,0.000030,66802061,32857404,0,0,95903,0,1,1 +1773705289.812635,0.65,4,3992.50,54.28,1580.14,2125.18,0.00,3519486349462.519043,0.000000,75,0,0.000000,0.000020,66802061,32857406,0,0,95905,0,1,1 +1773705294.813938,1.10,4,3992.50,54.33,1585.25,2127.14,0.00,2.121322,0.000195,258,2,0.000000,0.000030,66802061,32857409,0,0,95908,0,1,1 +1773705299.812473,0.70,4,3992.50,54.33,1583.27,2127.10,0.00,61858.263635,68702.209071,4234576,3518876,0.000000,0.000020,66802061,32857411,0,0,95910,0,1,1 +1773705304.814039,0.70,4,3992.50,54.33,1583.07,2127.28,0.00,3517335614532.358398,3517335614531.428223,4233073,3518117,0.000124,0.000130,66802069,32857422,0,0,95913,0,1,1 +1773705309.813439,1.05,4,3992.50,54.33,1583.07,2127.28,0.00,3518859483380.946777,3518859476541.237305,75,0,0.000134,0.000183,66802080,32857435,0,0,95915,0,1,1 +1773705314.809487,0.70,4,3992.50,54.33,1583.07,2127.28,0.00,0.000000,0.000000,75,0,0.000000,0.000030,66802080,32857438,0,0,95918,0,1,1 +1773705319.812588,0.65,4,3992.50,54.33,1583.07,2127.28,0.00,61803.925462,68639.570352,4234576,3518931,0.000000,0.000020,66802080,32857440,0,0,95920,0,1,1 +1773705324.810778,1.15,4,3992.50,54.33,1587.17,2127.09,0.00,3519711985903.894531,3519711985902.984375,4233073,3518185,0.002222,0.001063,66802103,32857462,0,0,95923,0,1,1 +1773705329.813955,14.40,4,3992.50,55.42,1544.11,2169.97,0.00,3516203091551.301270,3516203084716.541992,205,0,40.038603,0.024302,66806547,32859137,0,0,95925,0,1,1 +1773705334.809498,0.65,4,3992.50,54.57,1577.60,2136.48,0.00,3521575885935.876953,0.000000,75,0,0.000000,0.000030,66806547,32859140,0,0,95928,0,1,1 +1773705339.810628,0.65,4,3992.50,54.14,1594.21,2119.87,0.00,3517642205563.535156,0.000000,11,0,0.000000,0.000020,66806547,32859142,0,0,95930,0,1,1 +1773705344.813968,0.70,4,3992.50,54.10,1596.12,2117.95,0.00,2.173939,0.000195,258,2,0.000000,0.000066,66806547,32859146,0,0,95933,0,1,1 +1773705349.811268,0.60,4,3992.50,54.07,1597.18,2116.89,0.00,3520337716706.521973,3520337716708.698730,11,0,0.000000,0.000020,66806547,32859148,0,0,95935,0,1,1 +1773705354.812020,1.00,4,3992.50,53.92,1586.59,2111.16,0.00,0.053508,0.000000,75,0,0.000000,0.000030,66806547,32859151,0,0,95938,0,1,1 +1773705359.812686,0.60,4,3992.50,53.92,1586.64,2111.04,0.00,3517968960882.108887,0.000000,11,0,0.000000,0.000020,66806547,32859153,0,0,95940,0,1,1 +1773705364.809583,0.80,4,3992.50,53.79,1591.57,2106.11,0.00,0.000000,0.000000,11,0,0.000000,0.000030,66806547,32859156,0,0,95943,0,1,1 +1773705369.811928,0.70,4,3992.50,53.83,1590.24,2107.44,0.00,0.000000,0.000000,11,0,0.000000,0.000020,66806547,32859158,0,0,95945,0,1,1 +1773705374.813702,0.55,4,3992.50,53.83,1590.00,2107.68,0.00,0.053497,0.000000,75,0,0.000157,0.000210,66806559,32859173,0,0,95948,0,1,1 +1773705379.813290,0.65,4,3992.50,53.83,1590.00,2107.68,0.00,1.604331,10.676074,253,762,0.000008,0.000028,66806560,32859176,0,0,95950,0,1,1 +1773705384.813675,0.90,4,3992.50,54.05,1581.40,2116.29,0.00,3518166163027.643555,3518166163018.626953,11,0,0.000000,0.000030,66806560,32859179,0,0,95953,0,1,1 +1773705389.813991,0.65,4,3992.50,54.06,1581.17,2116.47,0.00,0.053512,0.000000,75,0,0.000000,0.000664,66806560,32859185,0,0,95955,0,1,1 +1773705394.814280,16.68,4,3992.50,55.21,1536.14,2161.47,0.00,61828.966594,68667.852889,4233073,3518492,40.063342,0.026075,66810944,32860886,0,0,95958,0,1,1 +1773705399.813686,0.70,4,3992.50,54.42,1567.16,2130.46,0.00,3518855105399.692871,3518855098559.652832,11,0,0.000008,0.000028,66810945,32860889,0,0,95960,0,1,1 +1773705404.813984,0.65,4,3992.50,54.04,1581.72,2115.91,0.00,2.175261,0.000195,258,2,0.000000,0.000030,66810945,32860892,0,0,95963,0,1,1 +1773705409.814305,0.70,4,3992.50,54.03,1582.35,2115.28,0.00,3518212065123.429199,10.674317,253,762,0.000000,0.000020,66810945,32860894,0,0,95965,0,1,1 +1773705414.811066,0.95,4,3992.50,54.04,1581.86,2115.77,0.00,3520717226061.282715,3520717226052.259766,11,0,0.000000,0.000030,66810945,32860897,0,0,95968,0,1,1 +1773705419.813659,0.65,4,3992.50,54.07,1580.70,2116.93,0.00,0.180180,0.000000,205,0,0.000000,0.000020,66810945,32860899,0,0,95970,0,1,1 +1773705424.813068,0.65,4,3992.50,54.07,1580.70,2116.93,0.00,3518853033153.488770,0.000000,11,0,0.000000,0.000030,66810945,32860902,0,0,95973,0,1,1 +1773705429.812021,0.60,4,3992.50,53.87,1588.58,2109.05,0.00,61855.275350,68697.099008,4234576,3519425,0.000000,0.000020,66810945,32860904,0,0,95975,0,1,1 +1773705434.813458,0.65,4,3992.50,53.91,1586.89,2110.74,0.00,3517425983448.167969,3517425976609.690430,75,0,0.000000,0.000030,66810945,32860907,0,0,95978,0,1,1 +1773705439.813708,0.65,4,3992.50,53.91,1586.89,2110.74,0.00,0.126751,0.000000,205,0,0.000157,0.000200,66810957,32860921,0,0,95980,0,1,1 +1773705444.814589,1.00,4,3992.50,54.10,1579.65,2118.12,0.00,3517817375793.476074,0.000000,11,0,0.000008,0.000038,66810958,32860925,0,0,95983,0,1,1 +1773705449.809568,0.65,4,3992.50,54.10,1579.55,2118.08,0.00,0.180455,0.000000,205,0,0.000205,0.000553,66810965,32860938,0,0,95985,0,1,1 +1773705454.809582,0.60,4,3992.50,54.10,1579.55,2118.07,0.00,3518426918187.969238,0.000000,11,0,0.000000,0.000674,66810965,32860945,0,0,95988,0,1,1 +1773705459.809504,16.27,4,3992.50,54.11,1579.14,2118.48,0.00,1.657741,10.675364,253,762,40.065995,0.023047,66815352,32862438,0,0,95990,0,1,1 +1773705464.814128,0.70,4,3992.50,54.00,1583.55,2114.07,0.00,61783.522790,68608.749259,4234577,3519613,0.000711,0.000290,66815371,32862449,0,0,95993,0,1,1 +1773705469.809483,0.65,4,3992.50,54.00,1583.32,2114.31,0.00,3521708882209.443359,3521708875362.345703,205,0,0.000057,0.000020,66815375,32862451,0,0,95995,0,1,1 +1773705474.814244,0.95,4,3992.50,54.03,1583.29,2115.48,0.00,1.993219,0.000195,258,2,0.000546,0.000226,66815387,32862460,0,0,95998,0,1,1 +1773705479.809573,0.75,4,3992.50,54.05,1582.47,2116.21,0.00,3521727434153.656738,3521727434155.780762,75,0,0.000000,0.000020,66815387,32862462,0,0,96000,0,1,1 +1773705484.809583,0.70,4,3992.50,54.05,1582.47,2116.21,0.00,0.126758,0.000000,205,0,0.000000,0.000030,66815387,32862465,0,0,96003,0,1,1 +1773705489.813994,0.70,4,3992.50,54.05,1582.47,2116.21,0.00,1.993359,0.000195,258,2,0.000000,0.000020,66815387,32862467,0,0,96005,0,1,1 +1773705494.814079,0.65,4,3992.50,54.05,1582.47,2116.20,0.00,3518377076298.413574,3518377076300.588867,11,0,0.000031,0.000055,66815389,32862472,0,0,96008,0,1,1 +1773705499.813705,0.60,4,3992.50,54.05,1582.47,2116.20,0.00,61846.954373,68688.193469,4234577,3519748,0.000008,0.000028,66815390,32862475,0,0,96010,0,1,1 +1773705504.814089,1.00,4,3992.50,54.40,1569.29,2129.82,0.00,3518166796327.949707,3518166789487.748535,11,0,0.000138,0.000173,66815400,32862488,0,0,96013,0,1,1 +1773705509.813409,0.75,4,3992.50,54.12,1579.78,2118.98,0.00,0.053523,0.000000,75,0,0.000025,0.000051,66815402,32862492,0,0,96015,0,1,1 +1773705514.813677,0.55,4,3992.50,54.12,1579.78,2118.98,0.00,61838.948350,68679.412847,4234577,3519781,0.000000,0.000030,66815402,32862495,0,0,96018,0,1,1 +1773705519.814444,0.70,4,3992.50,54.12,1579.78,2118.98,0.00,3517897448803.952148,3517897441964.043457,205,0,0.000025,0.000695,66815404,32862503,0,0,96020,0,1,1 +1773705524.810782,17.31,4,3992.50,53.83,1591.06,2107.70,0.00,3521016031305.085449,0.000000,11,0,40.092668,0.022785,66819689,32864026,0,0,96023,0,1,1 +1773705529.810566,0.60,4,3992.50,53.88,1589.37,2109.39,0.00,61835.278873,68675.537227,4233075,3519177,0.000619,0.000273,66819701,32864035,0,0,96025,0,1,1 +1773705534.813677,0.80,4,3992.50,53.91,1587.90,2110.86,0.00,3516249579886.457520,3516249573050.747559,11,0,0.000000,0.000030,66819701,32864038,0,0,96028,0,1,1 +1773705539.814028,0.95,4,3992.50,54.13,1584.96,2119.16,0.00,61828.262212,68667.830310,4233075,3519236,0.000000,0.000020,66819701,32864040,0,0,96030,0,1,1 +1773705544.814049,0.60,4,3992.50,54.13,1584.75,2119.35,0.00,0.009375,0.017969,4233076,3519244,0.000000,0.000030,66819701,32864043,0,0,96033,0,1,1 +1773705549.813646,0.70,4,3992.50,54.13,1584.80,2119.35,0.00,0.000000,0.034378,4233076,3519280,0.000000,0.000020,66819701,32864045,0,0,96035,0,1,1 +1773705554.814416,0.65,4,3992.50,54.13,1584.81,2119.34,0.00,9.724674,10.704211,4234579,3520069,0.000000,0.000063,66819701,32864049,0,0,96038,0,1,1 +1773705559.812569,0.65,4,3992.50,54.13,1584.81,2119.34,0.00,3519736987319.826172,3519736980485.248535,253,762,0.000000,0.000020,66819701,32864051,0,0,96040,0,1,1 +1773705564.809927,0.90,4,3992.50,54.17,1591.43,2121.03,0.00,61873.375204,68709.086020,4234579,3520087,0.000000,0.000030,66819701,32864054,0,0,96043,0,1,1 +1773705569.813976,0.65,4,3992.50,54.19,1590.70,2121.77,0.00,0.000000,0.019515,4234579,3520108,0.000132,0.000169,66819711,32864066,0,0,96045,0,1,1 +1773705574.809478,0.60,4,3992.50,54.19,1590.71,2121.76,0.00,3521604953954.769531,3521604947116.499512,253,762,0.000033,0.000069,66819714,32864072,0,0,96048,0,1,1 +1773705579.813764,0.70,4,3992.50,54.20,1590.49,2121.98,0.00,61787.721036,68613.995402,4234579,3520116,0.000000,0.000020,66819714,32864074,0,0,96050,0,1,1 +1773705584.812098,0.70,4,3992.50,54.20,1590.49,2121.98,0.00,3519610165532.513184,3519610158689.089355,11,0,0.000000,0.000674,66819714,32864081,0,0,96053,0,1,1 +1773705589.812372,16.46,4,3992.50,54.44,1581.00,2131.46,0.00,2.175271,0.000195,258,2,40.061708,0.023220,66824081,32865632,0,0,96055,0,1,1 +1773705594.813676,1.10,4,3992.50,54.54,1575.48,2135.28,0.00,3517519829157.020996,3517519829159.195801,11,0,0.002899,0.001173,66824135,32865670,0,0,96058,0,1,1 +1773705599.814047,0.70,4,3992.50,54.54,1574.19,2135.27,0.00,61828.020607,68667.935425,4233076,3519584,0.000000,0.000020,66824135,32865672,0,0,96060,0,1,1 +1773705604.811594,2.76,4,3992.50,54.72,1567.16,2142.24,0.00,3520164200154.056152,3520164193310.221680,75,0,0.000000,0.000030,66824135,32865675,0,0,96063,0,1,1 +1773705609.814020,0.80,4,3992.50,54.56,1573.10,2136.30,0.00,1.603421,10.670019,253,762,0.000000,0.000020,66824135,32865677,0,0,96065,0,1,1 +1773705614.814151,0.80,4,3992.50,54.38,1580.46,2128.93,0.00,3518345182341.283691,3518345182332.266602,11,0,0.000000,0.000030,66824135,32865680,0,0,96068,0,1,1 +1773705619.812796,0.90,4,3992.50,54.38,1580.50,2128.90,0.00,0.000000,0.000000,11,0,0.000000,0.000020,66824135,32865682,0,0,96070,0,1,1 +1773705624.809474,1.10,4,3992.50,54.48,1576.17,2133.08,0.00,61881.922642,68719.109740,4233562,3519769,0.000000,0.000030,66824135,32865685,0,0,96073,0,1,1 +1773705629.812631,0.95,4,3992.50,54.45,1577.27,2131.95,0.00,3516216424301.826172,3516216417482.506836,253,762,0.000000,0.000020,66824135,32865687,0,0,96075,0,1,1 +1773705634.813548,0.85,4,3992.50,54.45,1577.27,2131.95,0.00,3517792152038.361816,3517792152029.165527,205,0,0.000056,0.000086,66824139,32865694,0,0,96078,0,1,1 +1773705639.810040,0.60,4,3992.50,54.45,1577.28,2131.95,0.00,61884.039958,68721.697288,4233562,3519808,0.000109,0.000152,66824148,32865705,0,0,96080,0,1,1 +1773705644.809589,0.75,4,3992.50,54.45,1577.28,2131.95,0.00,3518754826563.558105,3518754819739.279297,253,762,0.000000,0.000030,66824148,32865708,0,0,96083,0,1,1 +1773705649.810587,0.70,4,3992.50,54.45,1577.29,2131.94,0.00,0.517572,3517734584305.671875,258,2,0.000000,0.000664,66824148,32865714,0,0,96085,0,1,1 +1773705654.813550,10.83,4,3992.50,59.49,1380.02,2329.17,0.00,3516353495862.424316,3516353495864.598145,11,0,9.813793,0.012370,66825406,32866531,0,0,96088,0,1,1 +1773705659.814345,4.81,4,3992.50,54.94,1558.32,2150.86,0.00,61830.975071,68662.761085,4233562,3520012,30.240595,0.008742,66828531,32867094,0,0,96090,0,1,1 +1773705664.809596,0.70,4,3992.50,54.69,1567.96,2141.23,0.00,3521781891070.875000,3521781884231.507812,11,0,0.000000,0.000030,66828531,32867097,0,0,96093,0,1,1 +1773705669.809587,0.70,4,3992.50,54.55,1573.61,2135.56,0.00,1.657718,10.675215,253,762,0.000000,0.000020,66828531,32867099,0,0,96095,0,1,1 +1773705674.814049,1.45,4,3992.50,54.49,1575.62,2133.56,0.00,3515299962556.519043,3515299962547.509766,11,0,0.000000,0.000030,66828531,32867102,0,0,96098,0,1,1 +1773705679.813549,0.70,4,3992.50,54.49,1575.62,2133.56,0.00,1.657881,10.676263,253,762,0.000000,0.000020,66828531,32867104,0,0,96100,0,1,1 +1773705684.809556,1.00,4,3992.50,54.90,1559.63,2149.55,0.00,0.000000,0.000000,253,762,0.000000,0.000030,66828531,32867107,0,0,96103,0,1,1 +1773705689.809503,0.70,4,3992.50,54.56,1573.23,2135.96,0.00,3518474392118.918457,3518474392109.900879,11,0,0.000000,0.000020,66828531,32867109,0,0,96105,0,1,1 +1773705694.810167,0.60,4,3992.50,54.56,1573.02,2136.18,0.00,1.657495,10.673778,253,762,0.000000,0.000030,66828531,32867112,0,0,96108,0,1,1 +1773705699.809693,0.65,4,3992.50,54.59,1571.79,2137.41,0.00,61854.725915,68680.324818,4235065,3520884,0.000031,0.000045,66828533,32867116,0,0,96110,0,1,1 +1773705704.809478,0.60,4,3992.50,54.60,1571.56,2137.64,0.00,3518588797506.181641,3518588790671.863281,75,0,0.000134,0.000193,66828544,32867130,0,0,96113,0,1,1 +1773705709.813575,0.65,4,3992.50,54.60,1571.32,2137.88,0.00,0.000000,0.000000,75,0,0.000000,0.000020,66828544,32867132,0,0,96115,0,1,1 +1773705714.812456,1.00,4,3992.50,54.60,1572.37,2137.87,0.00,0.126786,0.000000,205,0,0.000000,0.000674,66828544,32867139,0,0,96118,0,1,1 +1773705719.814205,0.75,4,3992.50,54.40,1579.70,2129.69,0.00,3517206965154.837402,0.000000,11,0,0.000000,0.000020,66828544,32867141,0,0,96120,0,1,1 +1773705724.814060,16.32,4,3992.50,55.40,1540.21,2169.16,0.00,0.000000,0.000000,11,0,40.066207,0.022953,66832989,32868667,0,0,96123,0,1,1 +1773705729.813754,0.70,4,3992.50,54.79,1564.33,2145.04,0.00,61854.311409,68688.854168,4235065,3521059,0.003085,0.001429,66833045,32868706,0,0,96125,0,1,1 +1773705734.813940,0.60,4,3992.50,54.38,1580.19,2129.17,0.00,3518306468686.490234,3518306461852.619629,11,0,0.000000,0.000030,66833045,32868709,0,0,96128,0,1,1 +1773705739.809575,0.70,4,3992.50,54.31,1583.06,2126.31,0.00,61894.829978,68733.982417,4233562,3520299,0.000000,0.000020,66833045,32868711,0,0,96130,0,1,1 +1773705744.809601,1.00,4,3992.50,54.49,1578.79,2133.33,0.00,3518418889263.152344,3518418882429.952148,75,0,0.000000,0.000030,66833045,32868714,0,0,96133,0,1,1 +1773705749.813822,0.70,4,3992.50,54.49,1578.17,2133.52,0.00,61788.587292,68616.159597,4233562,3520358,0.000000,0.000020,66833045,32868716,0,0,96135,0,1,1 +1773705754.810881,0.60,4,3992.50,54.49,1578.17,2133.52,0.00,3520508030971.746582,3520508024134.388672,75,0,0.000205,0.000562,66833052,32868730,0,0,96138,0,1,1 +1773705759.813593,0.55,4,3992.50,54.51,1577.69,2134.00,0.00,61816.942270,68647.541846,4235065,3521132,0.000008,0.000028,66833053,32868733,0,0,96140,0,1,1 +1773705764.813501,0.75,4,3992.50,54.51,1577.70,2133.99,0.00,3518502110544.541016,3518502103710.163574,11,0,0.000000,0.000030,66833053,32868736,0,0,96143,0,1,1 +1773705769.813459,0.70,4,3992.50,54.53,1576.71,2134.98,0.00,0.053516,0.000000,75,0,0.000936,0.000899,66833076,32868757,0,0,96145,0,1,1 +1773705774.810300,0.95,4,3992.50,54.72,1565.77,2142.60,0.00,2.123216,0.000195,258,2,0.000186,0.000154,66833090,32868768,0,0,96148,0,1,1 +1773705779.809571,0.75,4,3992.50,54.72,1565.67,2142.57,0.00,3518950832129.501465,3518950832131.497070,205,0,0.000056,0.000664,66833094,32868774,0,0,96150,0,1,1 +1773705784.809459,0.70,4,3992.50,54.72,1565.68,2142.55,0.00,1.995162,0.000195,258,2,0.001713,0.001367,66833118,32868793,0,0,96153,0,1,1 +1773705789.809663,15.38,4,3992.50,54.67,1567.91,2140.32,0.00,3518293462668.679199,3518293462670.854492,11,0,40.060028,0.021464,66837411,32870282,0,0,96155,0,1,1 +1773705794.813641,0.85,4,3992.50,54.68,1567.23,2140.99,0.00,61801.364955,68630.368323,4235065,3521340,0.003083,0.001540,66837467,32870321,0,0,96158,0,1,1 +1773705799.809477,0.70,4,3992.50,54.68,1567.24,2140.99,0.00,3521369184800.675293,3521369177960.490723,75,0,0.000031,0.000045,66837469,32870325,0,0,96160,0,1,1 +1773705804.809563,0.85,4,3992.50,54.68,1573.89,2140.99,0.00,3518377209292.920898,0.000000,11,0,0.000000,0.000030,66837469,32870328,0,0,96163,0,1,1 +1773705809.809552,0.75,4,3992.50,54.68,1573.83,2140.93,0.00,0.000000,0.000000,11,0,0.000000,0.000020,66837469,32870330,0,0,96165,0,1,1 +1773705814.813642,0.70,4,3992.50,54.68,1573.83,2140.93,0.00,1.656360,10.666470,253,762,0.000031,0.000055,66837471,32870335,0,0,96168,0,1,1 +1773705819.813291,0.60,4,3992.50,54.68,1573.83,2140.93,0.00,3518684436576.267578,3518684436567.196289,75,0,0.000008,0.000028,66837472,32870338,0,0,96170,0,1,1 +1773705824.814045,0.70,4,3992.50,54.69,1573.60,2141.16,0.00,0.126739,0.000000,205,0,0.000000,0.000030,66837472,32870341,0,0,96173,0,1,1 +1773705829.811583,0.70,4,3992.50,54.69,1573.61,2141.15,0.00,61871.096575,68708.277270,4233562,3520660,0.000000,0.000020,66837472,32870343,0,0,96175,0,1,1 +1773705834.814178,0.95,4,3992.50,54.66,1576.42,2139.93,0.00,3516611400472.227051,3516611393641.960449,205,0,0.000031,0.000055,66837474,32870348,0,0,96178,0,1,1 +1773705839.813572,0.70,4,3992.50,54.66,1576.35,2139.87,0.00,61857.847091,68693.477088,4235065,3521454,0.000126,0.000175,66837484,32870360,0,0,96180,0,1,1 +1773705844.813638,0.75,4,3992.50,54.66,1576.35,2139.87,0.00,0.000000,0.007812,4235065,3521461,0.000000,0.000674,66837484,32870367,0,0,96183,0,1,1 +1773705849.813435,0.65,4,3992.50,54.66,1576.35,2139.87,0.00,3518579746539.006348,3518579746538.058594,4233562,3520699,0.000000,0.000020,66837484,32870369,0,0,96185,0,1,1 +1773705854.809458,16.25,4,3992.50,59.48,1387.48,2328.71,0.00,3521238387252.895508,3521238380413.773438,11,0,35.084271,0.020281,66841389,32871782,0,0,96188,0,1,1 +1773705859.813546,1.05,4,3992.50,55.36,1548.85,2167.35,0.00,0.180126,0.000000,205,0,5.007878,0.004331,66842016,32872021,0,0,96190,0,1,1 +1773705864.813587,1.10,4,3992.50,54.97,1559.46,2152.25,0.00,61840.845923,68674.145322,4233604,3520903,0.000000,0.000030,66842016,32872024,0,0,96193,0,1,1 +1773705869.809466,0.60,4,3992.50,54.72,1568.88,2142.59,0.00,3521339518881.194824,3521339512042.203613,205,0,0.000000,0.000020,66842016,32872026,0,0,96195,0,1,1 +1773705874.812071,0.55,4,3992.50,54.71,1569.31,2142.17,0.00,3516604383514.487305,0.000000,11,0,0.000000,0.000030,66842016,32872029,0,0,96198,0,1,1 +1773705879.810175,0.70,4,3992.50,54.72,1569.07,2142.41,0.00,61874.725295,68711.492499,4235107,3521719,0.000000,0.000020,66842016,32872031,0,0,96200,0,1,1 +1773705884.809464,0.65,4,3992.50,54.72,1569.07,2142.40,0.00,3518937526576.263184,3518937519741.117188,11,0,0.000000,0.000030,66842016,32872034,0,0,96203,0,1,1 +1773705889.812174,0.60,4,3992.50,54.72,1569.07,2142.40,0.00,1.656817,10.669412,253,762,0.000000,0.000020,66842016,32872036,0,0,96205,0,1,1 +1773705894.809550,1.05,4,3992.50,54.72,1571.47,2142.39,0.00,3520284950831.912109,3520284950822.709961,205,0,0.000000,0.000030,66842016,32872039,0,0,96208,0,1,1 +1773705899.814114,0.65,4,3992.50,54.58,1574.48,2136.96,0.00,61784.942076,68612.188308,4233604,3521000,0.000031,0.000045,66842018,32872043,0,0,96210,0,1,1 +1773705904.811157,0.75,4,3992.50,54.59,1574.23,2137.21,0.00,3520519217313.642090,3520519210485.322266,253,762,0.000142,0.000201,66842030,32872058,0,0,96213,0,1,1 +1773705909.813923,0.65,4,3992.50,54.59,1574.23,2137.20,0.00,3516492062000.745117,3516492061991.732910,11,0,0.000000,0.000663,66842030,32872064,0,0,96215,0,1,1 +1773705914.813455,0.70,4,3992.50,54.39,1581.86,2129.59,0.00,1.657870,10.676194,253,762,0.000000,0.000030,66842030,32872067,0,0,96218,0,1,1 +1773705919.811566,17.46,4,3992.50,59.05,1399.54,2311.90,0.00,3519767197266.148926,3519767197257.074707,75,0,26.454480,0.017968,66845025,32873249,0,0,96220,0,1,1 +1773705924.809688,1.30,4,3992.50,55.39,1536.62,2168.49,0.00,2.122672,0.000195,258,2,13.627932,0.005925,66846507,32873616,0,0,96223,0,1,1 +1773705929.809578,0.90,4,3992.50,54.61,1567.05,2137.95,0.00,61840.728572,68676.603832,4233605,3521250,0.000000,0.000020,66846507,32873618,0,0,96225,0,1,1 +1773705934.809570,0.60,4,3992.50,54.27,1580.34,2124.65,0.00,3518443206504.726074,3518443199670.983887,205,0,0.000000,0.000030,66846507,32873621,0,0,96228,0,1,1 +1773705939.810571,0.60,4,3992.50,54.15,1584.91,2120.09,0.00,3517732725213.978516,0.000000,11,0,0.000000,0.000020,66846507,32873623,0,0,96230,0,1,1 +1773705944.809596,0.75,4,3992.50,54.13,1585.55,2119.45,0.00,0.180309,0.000000,205,0,0.000000,0.000030,66846507,32873626,0,0,96233,0,1,1 +1773705949.810612,0.65,4,3992.50,54.13,1585.86,2119.14,0.00,61828.809645,68661.178151,4233605,3521264,0.000000,0.000020,66846507,32873628,0,0,96235,0,1,1 +1773705954.813916,0.85,4,3992.50,54.15,1578.62,2120.00,0.00,0.000000,0.034352,4233605,3521279,0.000000,0.000030,66846507,32873631,0,0,96238,0,1,1 +1773705959.810137,0.75,4,3992.50,54.09,1579.45,2117.93,0.00,0.000000,0.022673,4233605,3521299,0.000000,0.000020,66846507,32873633,0,0,96240,0,1,1 +1773705964.812864,0.60,4,3992.50,54.09,1579.45,2117.93,0.00,3516519456760.805664,3516519449930.843750,75,0,0.000031,0.000055,66846509,32873638,0,0,96243,0,1,1 +1773705969.813780,0.65,4,3992.50,54.09,1579.45,2117.93,0.00,0.000000,0.000000,75,0,0.000142,0.000191,66846521,32873652,0,0,96245,0,1,1 +1773705974.809459,0.55,4,3992.50,54.09,1579.45,2117.93,0.00,1.605587,10.684428,253,762,0.000000,0.000674,66846521,32873659,0,0,96248,0,1,1 +1773705979.813702,0.65,4,3992.50,54.09,1579.46,2117.93,0.00,3515453712219.055176,3515453712209.865234,205,0,0.000000,0.000020,66846521,32873661,0,0,96250,0,1,1 +1773705984.814341,17.38,4,3992.50,59.27,1377.93,2320.37,0.00,3517988010362.331055,0.000000,11,0,12.026776,0.012791,66848062,32874483,0,0,96253,0,1,1 +1773705989.814237,3.21,4,3992.50,54.30,1571.48,2125.80,0.00,2.175436,0.000195,258,2,28.038336,0.009486,66850988,32875133,0,0,96255,0,1,1 +1773705994.811774,0.65,4,3992.50,54.30,1571.49,2125.80,0.00,3520171052236.036133,3520171052238.158691,75,0,0.000000,0.000030,66850988,32875136,0,0,96258,0,1,1 +1773705999.813550,0.65,4,3992.50,54.22,1574.66,2122.64,0.00,3517188538015.255371,0.000000,11,0,0.000000,0.000020,66850988,32875138,0,0,96260,0,1,1 +1773706004.811656,0.75,4,3992.50,53.99,1583.56,2113.74,0.00,61874.703432,68712.062737,4235108,3522258,0.000000,0.000030,66850988,32875141,0,0,96263,0,1,1 +1773706009.809557,0.65,4,3992.50,53.85,1589.10,2108.20,0.00,3519914538233.789062,3519914531395.969238,205,0,0.000000,0.000020,66850988,32875143,0,0,96265,0,1,1 +1773706014.813222,0.70,4,3992.50,53.85,1588.86,2108.45,0.00,3515860197974.946777,0.000000,11,0,0.000000,0.000030,66850988,32875146,0,0,96268,0,1,1 +1773706019.813575,1.10,4,3992.50,53.86,1591.01,2108.65,0.00,0.180261,0.000000,205,0,0.000000,0.000020,66850988,32875148,0,0,96270,0,1,1 +1773706024.813635,0.95,4,3992.50,53.85,1591.42,2108.23,0.00,3518394830520.964844,0.000000,11,0,0.000000,0.000030,66850988,32875151,0,0,96273,0,1,1 +1773706029.813573,0.65,4,3992.50,53.85,1591.19,2108.47,0.00,0.180276,0.000000,205,0,0.000031,0.000045,66850990,32875155,0,0,96275,0,1,1 +1773706034.810781,0.65,4,3992.50,53.87,1590.45,2109.21,0.00,3520402771556.315430,0.000000,11,0,0.000142,0.000201,66851002,32875170,0,0,96278,0,1,1 +1773706039.814219,0.60,4,3992.50,53.87,1590.45,2109.20,0.00,0.000000,0.000000,11,0,0.000000,0.000663,66851002,32875176,0,0,96280,0,1,1 +1773706044.811146,0.95,4,3992.50,53.89,1589.86,2109.94,0.00,1.658734,10.681760,253,762,0.000000,0.000030,66851002,32875179,0,0,96283,0,1,1 +1773706049.812647,12.24,4,3992.50,58.83,1396.31,2303.32,0.00,0.000000,0.000000,253,762,12.620760,0.014133,66852572,32876064,0,0,96285,0,1,1 +1773706054.810044,3.97,4,3992.50,53.93,1588.05,2111.57,0.00,3520270262891.213379,3520270262882.191406,11,0,27.455429,0.020219,66855375,32877538,0,0,96288,0,1,1 +1773706059.809571,0.75,4,3992.50,53.95,1587.30,2112.33,0.00,1.657872,10.676204,253,762,0.000205,0.000552,66855382,32877551,0,0,96290,0,1,1 +1773706064.813652,0.60,4,3992.50,53.96,1587.06,2112.57,0.00,3515568215534.897949,3515568215525.834473,75,0,0.000000,0.000030,66855382,32877554,0,0,96293,0,1,1 +1773706069.810575,0.65,4,3992.50,53.96,1587.06,2112.57,0.00,61879.647912,68718.069650,4233657,3521801,0.000000,0.000020,66855382,32877556,0,0,96295,0,1,1 +1773706074.813937,1.00,4,3992.50,54.15,1580.98,2120.13,0.00,3516073402001.322754,3516073395171.753418,11,0,0.000000,0.000030,66855382,32877559,0,0,96298,0,1,1 +1773706079.814402,0.75,4,3992.50,54.12,1582.35,2118.72,0.00,2.175188,0.000195,258,2,0.000905,0.000874,66855403,32877578,0,0,96300,0,1,1 +1773706084.809561,0.65,4,3992.50,54.11,1582.37,2118.71,0.00,3521847080243.749023,10.685346,253,762,0.000165,0.000038,66855415,32877582,0,0,96303,0,1,1 +1773706089.814177,0.65,4,3992.50,54.11,1582.37,2118.70,0.00,3515192446517.461914,3515192446508.272949,205,0,0.000042,0.000020,66855418,32877584,0,0,96305,0,1,1 +1773706094.813233,0.70,4,3992.50,54.11,1582.38,2118.70,0.00,61853.118851,68688.897209,4233658,3521901,0.000563,0.000252,66855431,32877595,0,0,96308,0,1,1 +1773706099.809462,0.60,4,3992.50,54.11,1582.38,2118.70,0.00,3521093371149.263672,3521093364309.741699,75,0,0.000076,0.000113,66855437,32877603,0,0,96310,0,1,1 +1773706104.809571,1.00,4,3992.50,54.25,1578.93,2124.12,0.00,0.000000,0.000000,75,0,0.000031,0.000216,66855439,32877609,0,0,96313,0,1,1 +1773706109.813505,0.65,4,3992.50,54.26,1576.57,2124.33,0.00,3515670625713.324219,0.000000,11,0,0.000000,0.000502,66855439,32877614,0,0,96315,0,1,1 +1773706114.813556,10.13,4,3992.50,59.11,1386.59,2314.31,0.00,2.175369,0.000195,258,2,7.216496,0.010353,66856468,32878270,0,0,96318,0,1,1 +1773706119.811952,8.13,4,3992.50,55.05,1545.43,2155.45,0.00,3519566413898.821289,3519566413900.997070,11,0,32.858910,0.024256,66859813,32880064,0,0,96320,0,1,1 +1773706124.810053,0.60,4,3992.50,54.43,1569.81,2131.06,0.00,0.053536,0.000000,75,0,0.000031,0.000055,66859815,32880069,0,0,96323,0,1,1 +1773706129.809567,0.65,4,3992.50,54.28,1575.72,2125.16,0.00,61857.312145,68693.467454,4235161,3522857,0.000008,0.000028,66859816,32880072,0,0,96325,0,1,1 +1773706134.809459,1.00,4,3992.50,54.52,1577.64,2134.51,0.00,3518513430514.123535,3518513423678.537598,11,0,0.000000,0.000030,66859816,32880075,0,0,96328,0,1,1 +1773706139.812848,0.70,4,3992.50,54.50,1578.39,2133.73,0.00,0.053479,0.000000,75,0,0.000000,0.000020,66859816,32880077,0,0,96330,0,1,1 +1773706144.810561,0.65,4,3992.50,54.50,1578.29,2133.83,0.00,61879.606958,68718.340291,4235161,3522924,0.000000,0.000030,66859816,32880080,0,0,96333,0,1,1 +1773706149.813442,0.70,4,3992.50,54.31,1585.68,2126.44,0.00,3516411461245.900879,3516411454412.110352,258,2,0.000000,0.000020,66859816,32880082,0,0,96335,0,1,1 +1773706154.809456,0.75,4,3992.50,54.32,1585.44,2126.68,0.00,0.000000,0.000000,258,2,0.000000,0.000030,66859816,32880085,0,0,96338,0,1,1 +1773706159.814067,0.65,4,3992.50,54.32,1585.44,2126.68,0.00,3515195552490.343750,10.665165,253,762,0.000031,0.000045,66859818,32880089,0,0,96340,0,1,1 +1773706164.813682,0.90,4,3992.50,54.61,1574.12,2138.00,0.00,61844.736756,68670.923440,4233658,3522205,0.000134,0.000193,66859829,32880103,0,0,96343,0,1,1 +1773706169.813545,0.60,4,3992.50,54.52,1577.60,2134.48,0.00,9.726438,10.685058,4235161,3522980,0.000000,0.000181,66859829,32880106,0,0,96345,0,1,1 +1773706174.813785,0.75,4,3992.50,54.32,1585.44,2126.67,0.00,3518268493202.443848,3518268486367.081055,75,0,0.000000,0.000513,66859829,32880112,0,0,96348,0,1,1 +1773706179.813909,14.83,4,3992.50,59.29,1390.66,2321.43,0.00,2.121822,0.000195,258,2,23.187722,0.018058,66862497,32881351,0,0,96350,0,1,1 +1773706184.813539,1.80,4,3992.50,54.97,1560.05,2152.04,0.00,0.000000,0.000000,258,2,16.881902,0.012616,66864324,32882242,0,0,96353,0,1,1 +1773706189.809504,0.60,4,3992.50,54.41,1581.87,2130.22,0.00,0.000000,0.000000,258,2,0.000000,0.000020,66864324,32882244,0,0,96355,0,1,1 +1773706194.809459,0.65,4,3992.50,54.21,1589.73,2122.37,0.00,3518469157990.024414,10.675097,253,762,0.000000,0.000030,66864324,32882247,0,0,96358,0,1,1 +1773706199.811980,0.95,4,3992.50,54.41,1581.99,2130.11,0.00,61818.523576,68641.917482,4235161,3523189,0.000000,0.000020,66864324,32882249,0,0,96360,0,1,1 +1773706204.813569,0.80,4,3992.50,54.42,1581.51,2130.59,0.00,3517319776140.780762,3517319769307.099121,11,0,0.000000,0.000030,66864324,32882252,0,0,96363,0,1,1 +1773706209.814260,0.55,4,3992.50,54.41,1581.82,2130.27,0.00,61833.084336,68667.132079,4233658,3522508,0.000000,0.000020,66864324,32882254,0,0,96365,0,1,1 +1773706214.813562,0.70,4,3992.50,54.40,1582.06,2130.03,0.00,3518928618911.094238,3518928612074.966797,205,0,0.000000,0.000030,66864324,32882257,0,0,96368,0,1,1 +1773706219.813991,0.65,4,3992.50,54.40,1582.06,2130.04,0.00,1.477315,10.674279,253,762,0.000000,0.000020,66864324,32882259,0,0,96370,0,1,1 +1773706224.814380,0.95,4,3992.50,54.40,1582.06,2130.04,0.00,3518163706835.153320,3518163706825.956055,205,0,0.000031,0.000055,66864326,32882264,0,0,96373,0,1,1 +1773706229.813463,0.95,4,3992.50,54.38,1582.79,2128.95,0.00,1.477712,10.677153,253,762,0.000142,0.000191,66864338,32882278,0,0,96375,0,1,1 +1773706234.813043,0.60,4,3992.50,54.38,1582.80,2128.95,0.00,61854.900752,68682.470061,4235161,3523317,0.000000,0.000352,66864338,32882283,0,0,96378,0,1,1 +1773706239.812316,0.60,4,3992.50,54.38,1582.55,2129.19,0.00,3518948795150.416992,3518948788322.428711,253,762,0.000000,0.000342,66864338,32882287,0,0,96380,0,1,1 +1773706244.810849,15.01,4,3992.50,59.47,1383.27,2328.47,0.00,3519469837521.612793,3519469837512.412598,205,0,12.028406,0.014239,66865876,32883182,0,0,96383,0,1,1 +1773706249.809486,3.61,4,3992.50,54.67,1571.16,2140.57,0.00,1.995661,0.000195,258,2,28.048534,0.009071,66868710,32883790,0,0,96385,0,1,1 +1773706254.809614,0.95,4,3992.50,54.67,1562.84,2140.50,0.00,3518346998463.984375,3518346998466.159668,11,0,0.000000,0.000030,66868710,32883793,0,0,96388,0,1,1 +1773706259.814194,0.85,4,3992.50,54.63,1563.79,2138.73,0.00,0.000000,0.000000,11,0,0.000000,0.000020,66868710,32883795,0,0,96390,0,1,1 +1773706264.814026,0.60,4,3992.50,54.44,1571.13,2131.39,0.00,1.657771,10.675554,253,762,0.000000,0.000030,66868710,32883798,0,0,96393,0,1,1 +1773706269.810206,0.75,4,3992.50,54.26,1578.24,2124.28,0.00,0.000000,0.000000,253,762,0.000000,0.000020,66868710,32883800,0,0,96395,0,1,1 +1773706274.809457,0.70,4,3992.50,54.28,1577.28,2125.24,0.00,3518964030171.508301,3518964030162.309082,205,0,0.000000,0.000030,66868710,32883803,0,0,96398,0,1,1 +1773706279.809715,0.65,4,3992.50,54.27,1577.84,2124.68,0.00,61847.989417,68684.064714,4235161,3523535,0.000000,0.000020,66868710,32883805,0,0,96400,0,1,1 +1773706284.814343,1.05,4,3992.50,54.27,1583.23,2124.93,0.00,3515183758694.861328,3515183751862.761719,258,2,0.000000,0.000030,66868710,32883808,0,0,96403,0,1,1 +1773706289.813854,0.65,4,3992.50,54.03,1592.68,2115.45,0.00,3518780895952.630859,3518780895954.625977,205,0,0.000031,0.000045,66868712,32883812,0,0,96405,0,1,1 +1773706294.813404,0.70,4,3992.50,54.03,1592.68,2115.45,0.00,61856.752818,68693.851428,4235161,3523572,0.000142,0.000201,66868724,32883827,0,0,96408,0,1,1 +1773706299.813727,0.70,4,3992.50,54.04,1592.46,2115.66,0.00,3518210012097.102539,3518210005261.241699,11,0,0.000000,0.000181,66868724,32883830,0,0,96410,0,1,1 +1773706304.809573,0.60,4,3992.50,54.04,1592.46,2115.66,0.00,61893.045741,68734.087670,4233658,3522814,0.000000,0.000513,66868724,32883836,0,0,96413,0,1,1 +1773706309.814590,10.89,4,3992.50,58.58,1414.71,2293.42,0.00,0.000000,0.008195,4233658,3522843,7.209486,0.010685,66869755,32884519,0,0,96415,0,1,1 +1773706314.812417,5.47,4,3992.50,54.07,1591.20,2116.79,0.00,3519966751409.546387,3519966744571.027344,205,0,32.862384,0.009689,66873079,32885157,0,0,96418,0,1,1 +1773706319.810186,0.65,4,3992.50,53.89,1598.08,2109.90,0.00,61878.778896,68718.522714,4235161,3523777,0.000000,0.000020,66873079,32885159,0,0,96420,0,1,1 +1773706324.813906,0.70,4,3992.50,53.89,1598.08,2109.90,0.00,3515821307774.099609,3515821300940.496094,258,2,0.000000,0.000030,66873079,32885162,0,0,96423,0,1,1 +1773706329.809971,0.65,4,3992.50,53.89,1598.08,2109.90,0.00,3521208919326.729492,3521208919328.906738,11,0,0.000000,0.000020,66873079,32885164,0,0,96425,0,1,1 +1773706334.813491,0.70,4,3992.50,53.89,1598.09,2109.90,0.00,0.180147,0.000000,205,0,0.000000,0.000030,66873079,32885167,0,0,96428,0,1,1 +1773706339.813949,0.65,4,3992.50,53.83,1600.37,2107.62,0.00,3518114686422.764648,0.000000,11,0,0.000000,0.000020,66873079,32885169,0,0,96430,0,1,1 +1773706344.810660,1.05,4,3992.50,53.84,1598.62,2107.90,0.00,0.053551,0.000000,75,0,0.000000,0.000030,66873079,32885172,0,0,96433,0,1,1 +1773706349.810640,0.75,4,3992.50,53.84,1598.14,2107.85,0.00,2.121883,0.000195,258,2,0.000000,0.000020,66873079,32885174,0,0,96435,0,1,1 +1773706354.811970,0.65,4,3992.50,53.87,1596.68,2109.31,0.00,3517501835496.429688,3517501835498.604492,11,0,0.000031,0.000055,66873081,32885179,0,0,96438,0,1,1 +1773706359.810652,0.80,4,3992.50,53.84,1598.00,2107.98,0.00,2.175964,0.000195,258,2,0.000142,0.000191,66873093,32885193,0,0,96440,0,1,1 +1773706364.814102,0.75,4,3992.50,53.84,1597.99,2108.01,0.00,3516011402914.598145,3516011402916.771973,11,0,0.000205,0.000562,66873100,32885207,0,0,96443,0,1,1 +1773706369.810043,0.65,4,3992.50,53.85,1597.50,2108.50,0.00,0.000000,0.000000,11,0,0.000000,0.000664,66873100,32885213,0,0,96445,0,1,1 +1773706374.814263,7.81,4,3992.50,59.63,1371.20,2334.50,0.00,0.000000,0.000000,11,0,2.408668,0.007993,66873645,32885611,0,0,96448,0,1,1 +1773706379.809589,9.50,4,3992.50,54.77,1561.36,2144.19,0.00,0.180442,0.000000,205,0,37.690206,0.016034,66877486,32886752,0,0,96450,0,1,1 +1773706384.809773,0.65,4,3992.50,54.66,1565.35,2140.20,0.00,3518308079236.233398,0.000000,11,0,0.000000,0.000030,66877486,32886755,0,0,96453,0,1,1 +1773706389.813974,0.80,4,3992.50,54.48,1572.71,2132.84,0.00,61789.723712,68619.828857,4233659,3523257,0.000904,0.000873,66877507,32886774,0,0,96455,0,1,1 +1773706394.812794,0.75,4,3992.50,54.47,1573.04,2132.52,0.00,3519267651976.221191,3519267645138.764160,11,0,0.000113,0.000030,66877515,32886777,0,0,96458,0,1,1 +1773706399.810986,0.60,4,3992.50,54.44,1574.21,2131.34,0.00,0.180339,0.000000,205,0,0.000042,0.000020,66877518,32886779,0,0,96460,0,1,1 +1773706404.814371,1.05,4,3992.50,54.67,1565.32,2140.61,0.00,3516056886892.178223,0.000000,11,0,0.000532,0.000226,66877529,32886788,0,0,96463,0,1,1 +1773706409.814310,0.75,4,3992.50,54.47,1572.98,2132.57,0.00,0.180276,0.000000,205,0,0.000039,0.000053,66877532,32886793,0,0,96465,0,1,1 +1773706414.809472,0.70,4,3992.50,54.47,1572.98,2132.57,0.00,1.478872,10.685534,253,762,0.000000,0.000030,66877532,32886796,0,0,96468,0,1,1 +1773706419.809841,0.70,4,3992.50,54.47,1572.75,2132.80,0.00,0.517638,3518177194468.790527,258,2,0.000031,0.000045,66877534,32886800,0,0,96470,0,1,1 +1773706424.811702,0.65,4,3992.50,54.47,1572.75,2132.81,0.00,61826.173080,68662.735187,4235162,3524120,0.000076,0.000123,66877540,32886809,0,0,96473,0,1,1 +1773706429.813944,0.70,4,3992.50,54.28,1580.40,2125.15,0.00,3516860211532.667969,3516860204707.814941,253,762,0.000021,0.000048,66877542,32886813,0,0,96475,0,1,1 +1773706434.810561,0.90,4,3992.50,54.38,1576.79,2129.05,0.00,3520819916718.722656,3520819916709.518555,205,0,0.000056,0.000730,66877546,32886824,0,0,96478,0,1,1 +1773706439.820552,2.30,4,3992.50,59.30,1383.68,2321.84,0.00,3511420491816.777344,0.000000,75,0,0.003772,0.002708,66877606,32886873,0,0,96480,0,1,1 +1773706444.813458,15.91,4,3992.50,54.25,1581.44,2124.06,0.00,61929.446504,68775.350874,4233659,3523527,40.118224,0.027465,66881935,32888920,0,0,96483,0,1,1 +1773706449.809648,0.60,4,3992.50,54.25,1581.46,2124.06,0.00,3521120149046.015137,3521120142204.664551,11,0,0.000000,0.000020,66881935,32888922,0,0,96485,0,1,1 +1773706454.809585,0.65,4,3992.50,54.25,1581.46,2124.06,0.00,0.000000,0.000000,11,0,0.000000,0.000030,66881935,32888925,0,0,96488,0,1,1 +1773706459.809466,0.80,4,3992.50,54.25,1581.46,2124.07,0.00,0.053517,0.000000,75,0,0.000000,0.000020,66881935,32888927,0,0,96490,0,1,1 +1773706464.810303,1.00,4,3992.50,54.43,1574.44,2131.23,0.00,3517848076976.404297,0.000000,11,0,0.000000,0.000030,66881935,32888930,0,0,96493,0,1,1 +1773706469.809346,0.65,4,3992.50,54.46,1573.41,2132.11,0.00,1.658032,10.677238,253,762,0.000000,0.000020,66881935,32888932,0,0,96495,0,1,1 +1773706474.809663,0.75,4,3992.50,54.46,1573.18,2132.34,0.00,3518214647326.595703,3518214647317.579102,11,0,0.000000,0.000030,66881935,32888935,0,0,96498,0,1,1 +1773706479.811290,0.65,4,3992.50,54.46,1573.19,2132.34,0.00,1.657176,10.671722,253,762,0.000000,0.000020,66881935,32888937,0,0,96500,0,1,1 +1773706484.814157,0.65,4,3992.50,54.46,1573.19,2132.34,0.00,3516420485470.396973,3516420485461.384766,11,0,0.000031,0.000042,66881937,32888941,0,0,96503,0,1,1 +1773706489.810127,0.70,4,3992.50,54.46,1573.19,2132.33,0.00,1.659052,10.683808,253,762,0.000126,0.000188,66881947,32888954,0,0,96505,0,1,1 +1773706494.809460,1.00,4,3992.50,54.48,1572.60,2133.04,0.00,0.000000,0.000000,253,762,0.000016,0.000046,66881949,32888959,0,0,96508,0,1,1 +1773706499.813741,0.70,4,3992.50,54.22,1582.76,2122.83,0.00,61787.073723,68608.560590,4233659,3523656,0.000000,0.000663,66881949,32888965,0,0,96510,0,1,1 +1773706504.814039,1.25,4,3992.50,53.99,1591.72,2113.86,0.00,3518227432542.425293,3518227425715.504883,253,762,0.002221,0.000734,66881972,32888984,0,0,96513,0,1,1 +1773706509.813636,15.21,4,3992.50,55.49,1533.09,2172.50,0.00,3518721009213.487793,3518721009204.289551,205,0,40.065932,0.024994,66886325,32890710,0,0,96515,0,1,1 +1773706514.809574,0.85,4,3992.50,54.50,1571.87,2133.74,0.00,61901.459508,68744.697667,4235162,3524650,0.000000,0.000030,66886325,32890713,0,0,96518,0,1,1 +1773706519.813491,0.80,4,3992.50,54.15,1585.47,2120.13,0.00,3515683379707.242676,3515683379706.299316,4233659,3523889,0.000000,0.000020,66886325,32890715,0,0,96520,0,1,1 +1773706524.813668,1.15,4,3992.50,54.25,1581.78,2123.82,0.00,3518312011942.080566,3518312005105.587402,205,0,0.000000,0.000030,66886325,32890718,0,0,96523,0,1,1 +1773706529.813460,1.15,4,3992.50,54.21,1583.19,2122.37,0.00,1.477503,10.675642,253,762,0.000000,0.000020,66886325,32890720,0,0,96525,0,1,1 +1773706534.814188,0.90,4,3992.50,54.25,1581.61,2123.94,0.00,61830.968651,68657.619383,4233659,3523955,0.000000,0.000030,66886325,32890723,0,0,96528,0,1,1 +1773706539.813751,0.75,4,3992.50,54.07,1588.78,2116.78,0.00,3518744206032.212891,3518744199194.953613,11,0,0.000000,0.000020,66886325,32890725,0,0,96530,0,1,1 +1773706544.809465,0.70,4,3992.50,54.10,1587.41,2118.14,0.00,0.180428,0.000000,205,0,0.000000,0.000030,66886325,32890728,0,0,96533,0,1,1 +1773706549.810631,0.75,4,3992.50,54.10,1587.41,2118.14,0.00,1.994652,0.000195,258,2,0.000000,0.000020,66886325,32890730,0,0,96535,0,1,1 +1773706554.813597,0.90,4,3992.50,54.24,1595.96,2123.54,0.00,3516350861567.023438,3516350861569.017578,205,0,0.000157,0.000210,66886337,32890745,0,0,96538,0,1,1 +1773706559.814466,0.70,4,3992.50,54.24,1595.99,2123.51,0.00,61840.437448,68677.142831,4235162,3524792,0.000016,0.000036,66886339,32890749,0,0,96540,0,1,1 +1773706564.809545,0.60,4,3992.50,54.07,1602.65,2116.85,0.00,3521903704580.211914,3521903704579.266602,4233659,3524031,0.000000,0.000674,66886339,32890756,0,0,96543,0,1,1 +1773706569.814406,0.90,4,3992.50,54.02,1604.35,2115.15,0.00,9.716724,10.670094,4235162,3524802,0.002232,0.000711,66886363,32890773,0,0,96545,0,1,1 +1773706574.814436,16.78,4,3992.50,55.19,1558.64,2160.85,0.00,3518415879615.213867,3518415872777.532715,11,0,40.064847,0.019732,66890831,32892031,0,0,96548,0,1,1 +1773706579.813535,0.70,4,3992.50,54.64,1580.05,2139.46,0.00,61862.504530,68701.567461,4235162,3524941,0.000000,0.000020,66890831,32892033,0,0,96550,0,1,1 +1773706584.809600,0.85,4,3992.50,54.71,1577.43,2142.08,0.00,3521208735499.023438,3521208728655.806152,11,0,0.000000,0.000030,66890831,32892036,0,0,96553,0,1,1 +1773706589.809583,0.75,4,3992.50,54.46,1587.24,2132.26,0.00,0.000000,0.000000,11,0,0.001209,0.001200,66890838,32892049,0,0,96555,0,1,1 +1773706594.811849,0.65,4,3992.50,54.48,1586.44,2133.06,0.00,61823.345171,68658.183572,4235162,3525006,0.000205,0.000562,66890845,32892063,0,0,96558,0,1,1 +1773706599.813508,0.60,4,3992.50,54.50,1585.89,2133.61,0.00,3517270079538.562012,3517270072700.719727,258,2,0.000000,0.000020,66890845,32892065,0,0,96560,0,1,1 +1773706604.809465,0.80,4,3992.50,54.50,1585.89,2133.61,0.00,3521284709141.954590,3521284709144.131348,11,0,0.000000,0.000030,66890845,32892068,0,0,96563,0,1,1 +1773706609.814324,0.60,4,3992.50,54.30,1593.54,2125.96,0.00,0.000000,0.000000,11,0,0.000000,0.000020,66890845,32892070,0,0,96565,0,1,1 +1773706614.813943,0.95,4,3992.50,54.70,1578.32,2141.45,0.00,2.175556,0.000195,258,2,0.000000,0.000030,66890845,32892073,0,0,96568,0,1,1 +1773706619.809578,0.85,4,3992.50,54.65,1579.92,2139.77,0.00,3521511678033.456055,3521511678035.453125,205,0,0.000157,0.000201,66890857,32892087,0,0,96570,0,1,1 +1773706624.814143,0.65,4,3992.50,54.64,1580.34,2139.34,0.00,3515227811515.470703,0.000000,11,0,0.000016,0.000046,66890859,32892092,0,0,96573,0,1,1 +1773706629.809550,0.65,4,3992.50,54.65,1579.86,2139.83,0.00,0.180439,0.000000,205,0,0.000000,0.000664,66890859,32892098,0,0,96575,0,1,1 +1773706634.809609,0.95,4,3992.50,54.59,1582.23,2137.45,0.00,3518395096508.430176,0.000000,11,0,0.002265,0.000747,66890885,32892118,0,0,96578,0,1,1 +1773706639.812216,15.67,4,3992.50,55.34,1553.16,2166.50,0.00,0.000000,0.000000,11,0,40.043754,0.022366,66895374,32893636,0,0,96580,0,1,1 +1773706644.814369,0.95,4,3992.50,54.84,1572.38,2147.09,0.00,0.180196,0.000000,205,0,0.000013,0.000030,66895375,32893639,0,0,96583,0,1,1 +1773706649.814126,0.70,4,3992.50,54.59,1582.09,2137.24,0.00,61844.502699,68682.242326,4233662,3524503,0.000000,0.000020,66895375,32893641,0,0,96585,0,1,1 +1773706654.814373,0.60,4,3992.50,54.60,1581.50,2137.83,0.00,3518263471485.173828,3518263464657.301270,253,762,0.000000,0.000030,66895375,32893644,0,0,96588,0,1,1 +1773706659.813563,0.60,4,3992.50,54.61,1581.37,2137.96,0.00,3519007483750.726074,3519007483741.707520,11,0,0.000000,0.000020,66895375,32893646,0,0,96590,0,1,1 +1773706664.814316,0.60,4,3992.50,54.61,1581.37,2137.96,0.00,1.657465,10.673588,253,762,0.000000,0.000030,66895375,32893649,0,0,96593,0,1,1 +1773706669.813600,0.80,4,3992.50,54.57,1582.82,2136.50,0.00,3518941078312.929199,3518941078303.856934,75,0,0.000205,0.000552,66895382,32893662,0,0,96595,0,1,1 +1773706674.814386,1.00,4,3992.50,54.61,1581.35,2137.97,0.00,0.126738,0.000000,205,0,0.000016,0.000046,66895384,32893667,0,0,96598,0,1,1 +1773706679.814039,0.65,4,3992.50,54.61,1581.44,2137.93,0.00,1.477544,10.675936,253,762,0.000000,0.000020,66895384,32893669,0,0,96600,0,1,1 +1773706684.810199,0.70,4,3992.50,54.61,1581.22,2138.15,0.00,0.518074,3521142038918.733887,258,2,0.000157,0.000211,66895396,32893684,0,0,96603,0,1,1 +1773706689.814003,0.60,4,3992.50,54.56,1583.07,2136.30,0.00,3515761617959.547363,10.666882,253,762,0.000000,0.000020,66895396,32893686,0,0,96605,0,1,1 +1773706694.814017,0.60,4,3992.50,54.57,1582.96,2136.41,0.00,3518427777384.042480,3518427777375.025391,11,0,0.000000,0.000674,66895396,32893693,0,0,96608,0,1,1 +1773706699.809928,1.25,4,3992.50,54.40,1589.64,2129.71,0.00,0.180421,0.000000,205,0,0.005038,0.004342,66895457,32893749,0,0,96610,0,1,1 +1773706704.809457,16.88,4,3992.50,55.85,1519.86,2186.57,0.00,0.000000,0.000000,205,0,40.067923,0.021357,66899865,32895205,0,0,96613,0,1,1 +1773706709.813546,0.70,4,3992.50,55.08,1549.64,2156.45,0.00,1.993487,0.000195,258,2,0.000000,0.000020,66899865,32895207,0,0,96615,0,1,1 +1773706714.810601,0.65,4,3992.50,54.72,1563.84,2142.25,0.00,3520510401547.470215,3520510401549.466309,205,0,0.000031,0.000055,66899867,32895212,0,0,96618,0,1,1 +1773706719.809460,0.70,4,3992.50,54.65,1566.32,2139.76,0.00,3519240576194.816406,0.000000,11,0,0.000008,0.000028,66899868,32895215,0,0,96620,0,1,1 +1773706724.809463,0.60,4,3992.50,54.65,1566.32,2139.76,0.00,61841.647918,68679.185572,4233662,3524789,0.000000,0.000030,66899868,32895218,0,0,96623,0,1,1 +1773706729.811487,0.70,4,3992.50,54.60,1568.34,2137.74,0.00,0.000000,0.000781,4233662,3524790,0.000000,0.000020,66899868,32895220,0,0,96625,0,1,1 +1773706734.809472,0.95,4,3992.50,54.64,1574.21,2139.28,0.00,3519855909442.418457,3519855902602.065918,75,0,0.000000,0.000030,66899868,32895223,0,0,96628,0,1,1 +1773706739.809827,0.75,4,3992.50,54.64,1572.21,2139.27,0.00,2.121724,0.000195,258,2,0.000000,0.000020,66899868,32895225,0,0,96630,0,1,1 +1773706744.813396,0.65,4,3992.50,54.65,1571.98,2139.50,0.00,61805.116156,68640.984566,4235165,3525603,0.000056,0.000086,66899872,32895232,0,0,96633,0,1,1 +1773706749.813282,0.75,4,3992.50,54.64,1572.06,2139.41,0.00,3518517697162.798828,3518517690333.087891,253,762,0.000182,0.000232,66899886,32895248,0,0,96635,0,1,1 +1773706754.813490,0.70,4,3992.50,54.64,1572.06,2139.43,0.00,3518290641819.191406,3518290641809.994141,205,0,0.000000,0.000030,66899886,32895251,0,0,96638,0,1,1 +1773706759.812987,0.65,4,3992.50,54.64,1572.21,2139.27,0.00,61857.439456,68696.887794,4235165,3525610,0.000000,0.000664,66899886,32895257,0,0,96640,0,1,1 +1773706764.812277,1.20,4,3992.50,54.25,1583.10,2124.20,0.00,0.000000,0.031547,4235165,3525627,0.000000,0.000030,66899886,32895260,0,0,96643,0,1,1 +1773706769.810563,21.70,4,3992.50,55.95,1516.68,2190.74,0.00,3519644310413.862793,3519644303572.850098,75,0,40.077436,0.023946,66904340,32896937,0,0,96645,0,1,1 +1773706774.813553,0.80,4,3992.50,55.01,1553.59,2153.83,0.00,0.126682,0.000000,205,0,0.003217,0.001685,66904407,32896997,0,0,96648,0,1,1 +1773706779.810310,0.60,4,3992.50,54.50,1573.61,2133.81,0.00,1.478400,10.682123,253,762,0.000000,0.000020,66904407,32896999,0,0,96650,0,1,1 +1773706784.813272,0.70,4,3992.50,54.28,1582.18,2125.23,0.00,3516354175523.141113,3516354175514.075684,75,0,0.000000,0.000030,66904407,32897002,0,0,96653,0,1,1 +1773706789.814061,0.55,4,3992.50,54.28,1582.38,2125.04,0.00,3517882000563.560547,0.000000,11,0,0.000000,0.000020,66904407,32897004,0,0,96655,0,1,1 +1773706794.813928,1.00,4,3992.50,54.47,1575.87,2132.59,0.00,61843.324960,68681.384276,4233662,3525075,0.000000,0.000030,66904407,32897007,0,0,96658,0,1,1 +1773706799.809810,0.70,4,3992.50,54.33,1580.24,2127.24,0.00,3521337158343.805176,3521337151500.111816,205,0,0.000000,0.000020,66904407,32897009,0,0,96660,0,1,1 +1773706804.813265,0.70,4,3992.50,54.29,1581.79,2125.68,0.00,1.476421,10.667825,253,762,0.000000,0.000030,66904407,32897012,0,0,96663,0,1,1 +1773706809.814056,0.55,4,3992.50,54.29,1581.86,2125.61,0.00,0.000000,0.000000,253,762,0.000000,0.000020,66904407,32897014,0,0,96665,0,1,1 +1773706814.813246,0.65,4,3992.50,54.29,1581.87,2125.61,0.00,61850.039854,68680.116197,4233662,3525179,0.000056,0.000086,66904411,32897021,0,0,96668,0,1,1 +1773706819.813535,0.70,4,3992.50,54.30,1581.66,2125.81,0.00,9.725609,10.675554,4235165,3525944,0.000117,0.000160,66904421,32897033,0,0,96670,0,1,1 +1773706824.809442,0.90,4,3992.50,54.49,1579.97,2133.40,0.00,3521319621100.387207,3521319614255.793457,75,0,0.000000,0.000674,66904421,32897040,0,0,96673,0,1,1 +1773706829.814208,0.95,4,3992.50,54.29,1585.54,2125.75,0.00,2.119855,0.000195,258,2,0.000000,0.000020,66904421,32897042,0,0,96675,0,1,1 +1773706834.813882,15.86,4,3992.50,59.42,1384.96,2326.34,0.00,3518666781480.249023,3518666781482.424316,11,0,9.307315,0.012909,66905741,32897873,0,0,96678,0,1,1 +1773706839.813930,3.96,4,3992.50,55.65,1532.32,2178.99,0.00,61850.808027,68689.854281,4235165,3526128,30.759001,0.010090,66908870,32898571,0,0,96680,0,1,1 +1773706844.813812,0.55,4,3992.50,55.01,1557.48,2153.84,0.00,3518519896286.601562,3518519889447.148438,205,0,0.000000,0.000030,66908870,32898574,0,0,96683,0,1,1 +1773706849.810717,0.75,4,3992.50,54.55,1575.49,2135.82,0.00,1.996353,0.000195,258,2,0.000000,0.000020,66908870,32898576,0,0,96685,0,1,1 +1773706854.814389,0.90,4,3992.50,54.57,1575.07,2136.55,0.00,3515855739620.026855,3515855739622.020996,205,0,0.000000,0.000030,66908870,32898579,0,0,96688,0,1,1 +1773706859.809455,0.65,4,3992.50,54.27,1586.58,2124.68,0.00,61902.575461,68747.812556,4233662,3525465,0.000000,0.000020,66908870,32898581,0,0,96690,0,1,1 +1773706864.809727,0.90,4,3992.50,54.27,1586.37,2124.89,0.00,3518245441365.848145,3518245434527.737793,205,0,0.000000,0.000030,66908870,32898584,0,0,96693,0,1,1 +1773706869.812109,0.60,4,3992.50,54.24,1587.56,2123.70,0.00,3516762167325.898926,0.000000,75,0,0.000000,0.000020,66908870,32898586,0,0,96695,0,1,1 +1773706874.811586,0.60,4,3992.50,54.28,1586.12,2125.14,0.00,61848.091739,68687.299924,4233662,3525505,0.000000,0.000030,66908870,32898589,0,0,96698,0,1,1 +1773706879.810493,0.70,4,3992.50,54.28,1586.12,2125.14,0.00,3519206420228.873535,3519206413386.763184,258,2,0.000031,0.000045,66908872,32898593,0,0,96700,0,1,1 +1773706884.813535,1.00,4,3992.50,54.47,1584.99,2132.77,0.00,61811.628568,68649.073881,4235165,3526285,0.000142,0.000214,66908884,32898609,0,0,96703,0,1,1 +1773706889.814191,0.65,4,3992.50,54.29,1585.77,2125.56,0.00,3517975232662.177246,3517975225823.645996,11,0,0.000308,0.001218,66908891,32898626,0,0,96705,0,1,1 +1773706894.812358,0.75,4,3992.50,54.30,1585.52,2125.81,0.00,61864.363017,68705.377467,4233662,3525546,0.001127,0.001232,66908900,32898643,0,0,96708,0,1,1 +1773706899.810980,15.73,4,3992.50,59.20,1393.66,2317.66,0.00,3519406899201.695312,3519406892370.324219,253,762,29.255253,0.019035,66912093,32899909,0,0,96710,0,1,1 +1773706904.813879,0.95,4,3992.50,55.07,1555.23,2156.09,0.00,0.000000,0.000000,253,762,10.812180,0.004656,66913235,32900175,0,0,96713,0,1,1 +1773706909.810578,0.60,4,3992.50,54.58,1574.40,2136.93,0.00,61880.867238,68714.979113,4233662,3525694,0.000000,0.000020,66913235,32900177,0,0,96715,0,1,1 +1773706914.809443,1.10,4,3992.50,54.31,1581.94,2126.34,0.00,0.000000,0.067984,4233662,3525721,0.000000,0.000030,66913235,32900180,0,0,96718,0,1,1 +1773706919.814279,0.55,4,3992.50,54.27,1583.39,2124.86,0.00,9.716775,10.704882,4235165,3526523,0.000000,0.000020,66913235,32900182,0,0,96720,0,1,1 +1773706924.810776,0.70,4,3992.50,54.26,1583.82,2124.43,0.00,3520903451172.629395,3520903444328.105957,75,0,0.000000,0.000030,66913235,32900185,0,0,96723,0,1,1 +1773706929.814182,0.65,4,3992.50,54.27,1583.59,2124.66,0.00,0.126672,0.000000,205,0,0.000000,0.000020,66913235,32900187,0,0,96725,0,1,1 +1773706934.813354,0.70,4,3992.50,54.27,1583.59,2124.66,0.00,3519020318995.579590,0.000000,75,0,0.000031,0.000055,66913237,32900192,0,0,96728,0,1,1 +1773706939.809479,0.65,4,3992.50,54.27,1583.58,2124.66,0.00,3521165954045.063477,0.000000,11,0,0.000047,0.000061,66913241,32900198,0,0,96730,0,1,1 +1773706944.812098,1.05,4,3992.50,54.28,1583.30,2125.09,0.00,0.053488,0.000000,75,0,0.000031,0.000055,66913243,32900203,0,0,96733,0,1,1 +1773706949.812943,0.60,4,3992.50,54.00,1594.08,2114.20,0.00,1.603928,10.673391,253,762,0.000126,0.000175,66913253,32900215,0,0,96735,0,1,1 +1773706954.813487,0.60,4,3992.50,54.00,1594.08,2114.20,0.00,3518054657728.893066,3518054657719.876953,11,0,0.000000,0.000513,66913253,32900221,0,0,96738,0,1,1 +1773706959.814214,0.65,4,3992.50,54.01,1593.87,2114.42,0.00,61842.410267,68681.161259,4235165,3526571,0.000000,0.000181,66913253,32900224,0,0,96740,0,1,1 +1773706964.814534,15.05,4,3992.50,58.93,1401.09,2307.19,0.00,3518211978650.646973,3518211971811.285645,75,0,20.033017,0.016353,66915562,32901328,0,0,96743,0,1,1 +1773706969.813314,2.11,4,3992.50,54.14,1588.47,2119.82,0.00,0.000000,0.000000,75,0,20.036307,0.008610,66917683,32901877,0,0,96745,0,1,1 +1773706974.810367,1.10,4,3992.50,54.15,1588.22,2120.01,0.00,1.605145,10.681491,253,762,0.000000,0.000030,66917683,32901880,0,0,96748,0,1,1 +1773706979.809655,0.60,4,3992.50,54.12,1589.13,2118.93,0.00,0.000000,0.000000,253,762,0.000000,0.000020,66917683,32901882,0,0,96750,0,1,1 +1773706984.811076,0.75,4,3992.50,54.12,1589.30,2118.76,0.00,0.517529,3517437536944.312988,258,2,0.000000,0.000030,66917683,32901885,0,0,96753,0,1,1 +1773706989.813465,0.70,4,3992.50,53.91,1597.18,2110.89,0.00,3516757211057.044922,3516757211059.039062,205,0,0.000000,0.000020,66917683,32901887,0,0,96755,0,1,1 +1773706994.813444,0.70,4,3992.50,53.91,1597.18,2110.88,0.00,3518452101787.075684,0.000000,11,0,0.000000,0.000030,66917683,32901890,0,0,96758,0,1,1 +1773706999.811007,0.80,4,3992.50,53.93,1596.71,2111.35,0.00,0.000000,0.000000,11,0,0.001405,0.001182,66917711,32901916,0,0,96760,0,1,1 +1773707004.814024,1.00,4,3992.50,54.29,1582.44,2125.71,0.00,61814.094011,68649.980230,4235165,3526806,0.002398,0.002294,66917739,32901938,0,0,96763,0,1,1 +1773707009.813811,0.75,4,3992.50,54.23,1584.85,2123.16,0.00,0.000000,0.014063,4235165,3526822,0.000031,0.000045,66917741,32901942,0,0,96765,0,1,1 +1773707014.811696,0.60,4,3992.50,54.09,1590.37,2117.64,0.00,3519926339163.752930,3519926332320.831543,11,0,0.000107,0.000148,66917749,32901953,0,0,96768,0,1,1 +1773707019.813873,0.65,4,3992.50,54.07,1591.12,2116.89,0.00,0.180195,0.000000,205,0,0.000000,0.000503,66917749,32901958,0,0,96770,0,1,1 +1773707024.812250,0.70,4,3992.50,54.07,1591.13,2116.88,0.00,1.995765,0.000195,258,2,0.000000,0.000191,66917749,32901962,0,0,96773,0,1,1 +1773707029.812174,11.70,4,3992.50,58.93,1400.58,2307.41,0.00,61840.440665,68681.815402,4233662,3526091,16.228710,0.015729,66919666,32903045,0,0,96775,0,1,1 +1773707034.814319,3.90,4,3992.50,54.92,1559.01,2150.34,0.00,3516928104233.997070,3516928097397.781250,75,0,23.825113,0.007835,66922090,32903564,0,0,96778,0,1,1 +1773707039.813005,0.70,4,3992.50,54.40,1579.41,2129.98,0.00,3519362278889.131836,0.000000,11,0,0.000000,0.000020,66922090,32903566,0,0,96780,0,1,1 +1773707044.813910,0.60,4,3992.50,54.24,1585.65,2123.74,0.00,0.000000,0.000000,11,0,0.000056,0.000086,66922094,32903573,0,0,96783,0,1,1 +1773707049.810077,0.55,4,3992.50,54.25,1585.40,2123.98,0.00,0.053557,0.000000,75,0,0.000033,0.000059,66922097,32903578,0,0,96785,0,1,1 +1773707054.809587,0.70,4,3992.50,54.25,1585.41,2123.98,0.00,2.122083,0.000195,258,2,0.000000,0.000030,66922097,32903581,0,0,96788,0,1,1 +1773707059.813567,15.82,4,3992.50,54.43,1558.92,2130.97,0.00,3515638482913.238770,3515638482915.358887,75,0,0.000000,0.000020,66922097,32903583,0,0,96790,0,1,1 +1773707064.809501,5.72,4,3992.50,54.90,1539.92,2149.43,0.00,0.000000,0.000000,75,0,0.000000,0.000030,66922097,32903586,0,0,96793,0,1,1 +1773707069.809448,4.97,4,3992.50,54.81,1543.87,2146.02,0.00,61842.370814,69808.692259,4233733,3531897,0.000000,0.000020,66922097,32903588,0,0,96795,0,1,1 +1773707074.809456,7.18,4,3992.50,54.76,1542.41,2144.11,0.00,3518431905985.316895,3518431898019.091797,75,0,0.000031,0.000055,66922099,32903593,0,0,96798,0,1,1 +1773707079.809609,2.75,4,3992.50,55.12,1528.43,2158.11,0.00,3518328968899.750000,0.000000,11,0,0.000134,0.000183,66922110,32903606,0,0,96800,0,1,1 +1773707084.814020,5.22,4,3992.50,54.89,1541.68,2149.15,0.00,2.173473,0.000195,258,2,0.000000,0.000673,66922110,32903613,0,0,96803,0,1,1 +1773707089.809605,5.82,4,3992.50,54.67,1553.52,2140.63,0.00,0.000000,0.000000,258,2,0.000000,0.000020,66922110,32903615,0,0,96805,0,1,1 +1773707094.809726,1.25,4,3992.50,54.19,1575.52,2121.73,0.00,61838.153022,70676.078498,4233802,3536151,0.002221,0.000418,66922133,32903633,0,0,96808,0,1,1 +1773707099.809558,16.18,4,3992.50,54.34,1586.02,2127.48,0.00,3518554960224.531738,3518554951388.271973,11,0,40.061377,0.023602,66926440,32905262,0,0,96810,0,1,1 +1773707104.809936,1.10,4,3992.50,54.34,1585.93,2127.56,0.00,0.000000,0.000000,11,0,0.003085,0.002082,66926496,32905306,0,0,96813,0,1,1 +1773707109.813943,0.60,4,3992.50,54.34,1585.94,2127.56,0.00,0.000000,0.000000,11,0,0.000000,0.000020,66926496,32905308,0,0,96815,0,1,1 +1773707114.809399,0.65,4,3992.50,54.35,1585.71,2127.79,0.00,0.180437,0.000000,205,0,0.000000,0.000030,66926496,32905311,0,0,96818,0,1,1 +1773707119.813816,0.70,4,3992.50,54.35,1585.71,2127.79,0.00,3515331693152.522461,0.000000,11,0,0.000000,0.000020,66926496,32905313,0,0,96820,0,1,1 +1773707124.814291,0.95,4,3992.50,54.37,1584.97,2128.54,0.00,0.053511,0.000000,75,0,0.000000,0.000030,66926496,32905316,0,0,96823,0,1,1 +1773707129.814418,0.95,4,3992.50,54.11,1594.95,2118.52,0.00,0.000000,0.000000,75,0,0.000000,0.000020,66926496,32905318,0,0,96825,0,1,1 +1773707134.809582,0.60,4,3992.50,54.14,1593.96,2119.50,0.00,0.126881,0.000000,205,0,0.000000,0.000030,66926496,32905321,0,0,96828,0,1,1 +1773707139.809601,0.70,4,3992.50,54.14,1593.71,2119.75,0.00,3518424059828.623535,0.000000,11,0,0.000000,0.000020,66926496,32905323,0,0,96830,0,1,1 +1773707144.814296,0.65,4,3992.50,54.14,1593.71,2119.75,0.00,0.000000,0.000000,11,0,0.000087,0.000111,66926502,32905332,0,0,96833,0,1,1 +1773707149.813402,0.65,4,3992.50,54.14,1593.72,2119.75,0.00,0.000000,0.000000,11,0,0.000109,0.000152,66926511,32905343,0,0,96835,0,1,1 +1773707154.809467,7.23,4,3992.50,54.27,1573.34,2124.73,0.00,0.053558,0.000000,75,0,0.000000,0.000674,66926511,32905350,0,0,96838,0,1,1 +1773707159.809560,6.48,4,3992.50,55.20,1535.86,2161.29,0.00,0.126755,0.000000,205,0,0.000000,0.000020,66926511,32905352,0,0,96840,0,1,1 +1773707164.813816,3.01,4,3992.50,54.88,1549.04,2148.86,0.00,3515444844654.079590,0.000000,75,0,0.000000,0.000030,66926511,32905355,0,0,96843,0,1,1 +1773707169.812388,4.12,4,3992.50,54.81,1550.64,2145.75,0.00,2.122481,0.000195,258,2,0.002210,0.000408,66926533,32905372,0,0,96845,0,1,1 +1773707174.813203,6.08,4,3992.50,54.78,1552.12,2144.92,0.00,61829.652502,71678.107228,4233867,3541696,0.000125,0.000967,66926541,32905387,0,0,96848,0,1,1 +1773707179.809459,5.94,4,3992.50,55.01,1543.31,2153.73,0.00,3521073199196.274902,3521073189340.833008,205,0,0.000000,0.000020,66926541,32905389,0,0,96850,0,1,1 +1773707184.809467,4.16,4,3992.50,54.77,1550.12,2144.30,0.00,61841.638514,72025.694693,4233894,3543422,0.000000,0.000030,66926541,32905392,0,0,96853,0,1,1 +1773707189.812581,12.93,4,3992.50,60.59,1341.71,2372.05,0.00,3516247775757.995605,3516247765580.386719,75,0,4.208847,0.007598,66927258,32905855,0,0,96855,0,1,1 +1773707194.814107,8.01,4,3992.50,56.18,1514.06,2199.39,0.00,61832.719981,72099.704601,4235401,3544859,35.840147,0.015039,66930846,32906907,0,0,96858,0,1,1 +1773707199.814091,0.65,4,3992.50,55.42,1543.52,2169.94,0.00,3518448025369.156738,3518448015099.060059,11,0,0.000000,0.000020,66930846,32906909,0,0,96860,0,1,1 +1773707204.813915,0.70,4,3992.50,54.87,1565.36,2148.10,0.00,0.000000,0.000000,11,0,0.000000,0.000030,66930846,32906912,0,0,96863,0,1,1 +1773707209.813587,0.65,4,3992.50,54.64,1574.21,2139.25,0.00,0.053519,0.000000,75,0,0.000000,0.000020,66930846,32906914,0,0,96865,0,1,1 +1773707214.813060,0.95,4,3992.50,54.64,1584.77,2139.24,0.00,0.126771,0.000000,205,0,0.000000,0.000030,66930846,32906917,0,0,96868,0,1,1 +1773707219.813538,0.70,4,3992.50,54.60,1586.18,2137.71,0.00,61835.825928,72104.282715,4233898,3544164,0.000000,0.000664,66930846,32906923,0,0,96870,0,1,1 +1773707224.814182,0.80,4,3992.50,54.60,1586.19,2137.70,0.00,3517984335318.507812,3517984325048.395996,258,2,0.000000,0.000030,66930846,32906926,0,0,96873,0,1,1 +1773707229.810374,0.65,4,3992.50,54.60,1586.19,2137.70,0.00,61886.873944,72166.150623,4233898,3544177,0.000000,0.000020,66930846,32906928,0,0,96875,0,1,1 +1773707234.813678,0.75,4,3992.50,54.61,1585.95,2137.94,0.00,3516114340024.645508,3516114329762.151367,11,0,0.000062,0.000080,66930850,32906935,0,0,96878,0,1,1 +1773707239.811922,0.70,4,3992.50,54.61,1585.96,2137.93,0.00,61873.377023,72147.217345,4235401,3544993,0.000165,0.000209,66930863,32906950,0,0,96880,0,1,1 +1773707244.809476,0.85,4,3992.50,54.70,1580.97,2141.62,0.00,3520158607381.368652,3520158597103.934570,258,2,0.000000,0.000030,66930863,32906953,0,0,96883,0,1,1 +1773707249.814225,9.28,4,3992.50,54.70,1561.45,2141.80,0.00,0.000000,0.000000,258,2,0.000000,0.000020,66930863,32906955,0,0,96885,0,1,1 +1773707254.814125,6.88,4,3992.50,55.07,1544.07,2155.94,0.00,3518507436882.061523,3518507436884.237305,11,0,0.000000,0.000030,66930863,32906958,0,0,96888,0,1,1 +1773707259.809579,0.90,4,3992.50,55.09,1542.93,2157.07,0.00,0.053564,0.000000,75,0,0.000000,0.000020,66930863,32906960,0,0,96890,0,1,1 +1773707264.809459,7.20,4,3992.50,55.26,1538.31,2163.55,0.00,2.121926,0.000195,258,2,0.002209,0.000724,66930885,32906978,0,0,96893,0,1,1 +1773707269.812889,3.97,4,3992.50,54.81,1559.79,2146.06,0.00,3516025074335.822754,3516025074337.996582,11,0,0.001238,0.001841,66930901,32907005,0,0,96895,0,1,1 +1773707274.813459,6.07,4,3992.50,55.13,1543.97,2158.44,0.00,61844.609714,73264.553276,4235416,3550882,0.000000,0.000030,66930901,32907008,0,0,96898,0,1,1 +1773707279.814204,21.12,4,3992.50,54.85,1558.71,2147.35,0.00,3517913487315.983398,3517913475896.257324,205,0,40.055661,0.021364,66935343,32908568,0,0,96900,0,1,1 +1773707284.813829,1.00,4,3992.50,54.99,1569.70,2152.92,0.00,61856.113590,73766.899841,4235416,3553369,0.001550,0.001418,66935370,32908594,0,0,96903,0,1,1 +1773707289.811336,0.80,4,3992.50,54.69,1581.20,2141.42,0.00,0.000000,0.010064,4235416,3553385,0.002222,0.000928,66935412,32908623,0,0,96905,0,1,1 +1773707294.813996,0.60,4,3992.50,54.70,1580.96,2141.66,0.00,3516565955560.685059,3516565943657.295410,11,0,0.000000,0.000673,66935412,32908630,0,0,96908,0,1,1 +1773707299.814057,0.80,4,3992.50,54.51,1588.31,2134.31,0.00,1.657695,10.675065,253,828,0.001404,0.001182,66935440,32908656,0,0,96910,0,1,1 +1773707304.813874,1.10,4,3992.50,54.23,1584.64,2123.34,0.00,3518565953209.770020,3518565953200.752930,11,0,0.001064,0.000444,66935462,32908673,0,0,96913,0,1,1 +1773707309.810599,0.60,4,3992.50,54.22,1584.96,2123.02,0.00,61892.202895,73809.831811,4235416,3553461,0.000000,0.000020,66935462,32908675,0,0,96915,0,1,1 +1773707314.809551,0.65,4,3992.50,54.23,1584.71,2123.27,0.00,3519174677360.713379,3519174665448.394531,11,0,0.000031,0.000055,66935464,32908680,0,0,96918,0,1,1 +1773707319.809600,0.65,4,3992.50,54.23,1584.71,2123.27,0.00,1.657699,10.675090,253,828,0.000000,0.000020,66935464,32908682,0,0,96920,0,1,1 +1773707324.809570,0.75,4,3992.50,54.23,1584.71,2123.26,0.00,61840.656420,73740.624941,4233913,3552670,0.000031,0.000055,66935466,32908687,0,0,96923,0,1,1 +1773707329.814094,0.65,4,3992.50,54.20,1585.86,2122.12,0.00,3515256113045.010254,3515256101144.691406,258,2,0.000000,0.000020,66935466,32908689,0,0,96925,0,1,1 +1773707334.814123,0.95,4,3992.50,54.25,1587.80,2124.08,0.00,61839.400102,73750.458159,4233913,3552691,0.000076,0.000123,66935472,32908698,0,0,96928,0,1,1 +1773707339.809456,0.65,4,3992.50,54.26,1587.52,2124.29,0.00,3521724321705.947266,3521724309785.688965,205,0,0.000000,0.000020,66935472,32908700,0,0,96930,0,1,1 +1773707344.811577,7.85,4,3992.50,54.51,1554.88,2134.36,0.00,3516945120297.117188,0.000000,11,0,0.000081,0.000117,66935478,32908709,0,0,96933,0,1,1 +1773707349.813931,7.61,4,3992.50,54.31,1567.24,2126.18,0.00,61822.559972,74310.815341,4235416,3556536,0.002948,0.002372,66935509,32908739,0,0,96935,0,1,1 +1773707354.811274,0.80,4,3992.50,53.97,1581.76,2113.06,0.00,3520308196472.116211,3520308183980.360352,253,837,0.000000,0.000352,66935509,32908744,0,0,96938,0,1,1 +1773707359.813235,5.31,4,3992.50,55.47,1522.26,2171.92,0.00,3517057636692.845703,3517057636683.832031,11,0,0.000000,0.000342,66935509,32908748,0,0,96940,0,1,1 +1773707364.810715,8.92,4,3992.50,55.01,1538.61,2153.62,0.00,0.053543,0.000000,75,0,0.000000,0.000030,66935509,32908751,0,0,96943,0,1,1 +1773707369.813913,6.27,4,3992.50,55.25,1526.64,2163.23,0.00,61812.071569,75086.269038,4235416,3560341,0.000099,0.000640,66935515,32908764,0,0,96945,0,1,1 +1773707374.809625,0.90,4,3992.50,55.24,1526.51,2162.78,0.00,3521457342530.305664,3521457329245.295410,253,837,0.000000,0.000030,66935515,32908767,0,0,96948,0,1,1 +1773707379.809478,2.86,4,3992.50,55.11,1537.97,2157.54,0.00,0.517691,3518540157135.274902,258,2,0.000000,0.000020,66935515,32908769,0,0,96950,0,1,1 +1773707384.809903,15.58,4,3992.50,56.73,1488.07,2221.21,0.00,61844.231127,75241.785555,4235416,3561048,40.058995,0.019869,66939890,32910150,0,0,96953,0,1,1 +1773707389.813993,0.70,4,3992.50,55.60,1532.43,2176.86,0.00,3515561514039.441406,3515561500653.873047,11,0,0.000771,0.000463,66939907,32910164,0,0,96955,0,1,1 +1773707394.809578,1.05,4,3992.50,55.19,1552.94,2160.80,0.00,0.053563,0.000000,75,0,0.000000,0.000030,66939907,32910167,0,0,96958,0,1,1 +1773707399.809465,0.70,4,3992.50,54.95,1562.42,2151.35,0.00,3518516470503.677246,0.000000,11,0,0.000000,0.000020,66939907,32910169,0,0,96960,0,1,1 +1773707404.812191,1.00,4,3992.50,54.98,1561.38,2152.39,0.00,0.000000,0.000000,11,0,0.000000,0.000030,66939907,32910172,0,0,96963,0,1,1 +1773707409.812056,0.85,4,3992.50,54.98,1561.38,2152.39,0.00,0.053517,0.000000,75,0,0.000000,0.000020,66939907,32910174,0,0,96965,0,1,1 +1773707414.813401,1.00,4,3992.50,54.97,1561.63,2152.14,0.00,3517491344204.717773,0.000000,11,0,0.000000,0.000030,66939907,32910177,0,0,96968,0,1,1 +1773707419.814058,0.80,4,3992.50,54.98,1561.17,2152.61,0.00,0.000000,0.000000,11,0,0.000000,0.000664,66939907,32910183,0,0,96970,0,1,1 +1773707424.813155,1.25,4,3992.50,55.06,1559.34,2155.59,0.00,61862.866587,75262.063260,4235418,3561271,0.000000,0.000030,66939907,32910186,0,0,96973,0,1,1 +1773707429.809459,1.90,4,3992.50,54.86,1565.82,2147.91,0.00,3521039564981.361816,3521039551572.500000,258,2,0.000119,0.000169,66939916,32910198,0,0,96975,0,1,1 +1773707434.813754,1.00,4,3992.50,54.68,1573.07,2140.66,0.00,3515417671809.157715,10.665839,253,840,0.000054,0.000077,66939921,32910205,0,0,96978,0,1,1 +1773707439.809651,7.89,4,3992.50,54.57,1554.66,2136.55,0.00,3521326935828.768066,3521326935819.562988,205,0,0.000000,0.000020,66939921,32910207,0,0,96980,0,1,1 +1773707444.809533,5.41,4,3992.50,54.92,1540.97,2150.23,0.00,61852.972682,75703.809564,4235418,3563557,0.000000,0.000030,66939921,32910210,0,0,96983,0,1,1 +1773707449.813542,4.56,4,3992.50,54.22,1566.35,2122.83,0.00,3515617939258.262695,3515617925416.857910,258,2,0.002232,0.000724,66939945,32910228,0,0,96985,0,1,1 +1773707454.809986,6.33,4,3992.50,54.95,1542.32,2151.49,0.00,3520941212839.689453,3520941212841.866211,11,0,0.000112,0.000651,66939952,32910242,0,0,96988,0,1,1 +1773707459.813458,5.39,4,3992.50,54.43,1556.68,2130.87,0.00,1.656565,10.667788,253,849,0.000000,0.000020,66939952,32910244,0,0,96990,0,1,1 +1773707464.810247,2.56,4,3992.50,54.69,1554.83,2141.38,0.00,61889.784734,76399.577578,4235418,3567015,0.000000,0.000030,66939952,32910247,0,0,96993,0,1,1 +1773707469.810611,20.93,4,3992.50,60.07,1351.26,2351.73,0.00,3518180578085.939941,3518180563575.332520,258,2,33.046488,0.015814,66943548,32911397,0,0,96995,0,1,1 +1773707474.814129,1.10,4,3992.50,55.17,1542.74,2159.88,0.00,3515963715046.827148,3515963715049.000977,11,0,7.004834,0.001215,66944271,32911494,0,0,96998,0,1,1 +1773707479.813903,1.50,4,3992.50,55.23,1560.11,2162.30,0.00,61844.756474,76645.830306,4233915,3567774,0.004006,0.002314,66944348,32911555,0,0,97000,0,1,1 +1773707484.809608,1.00,4,3992.50,55.14,1563.58,2158.84,0.00,3521462238048.058594,3521462223234.928223,11,0,0.000000,0.000030,66944348,32911558,0,0,97003,0,1,1 +1773707489.813843,0.65,4,3992.50,54.95,1571.10,2151.38,0.00,2.173549,0.000195,258,2,0.001228,0.001874,66944357,32911577,0,0,97005,0,1,1 +1773707494.809463,0.75,4,3992.50,54.95,1571.11,2151.37,0.00,61903.748009,76720.357839,4235418,3568708,0.000205,0.000562,66944364,32911591,0,0,97008,0,1,1 +1773707499.809625,0.60,4,3992.50,54.95,1571.11,2151.37,0.00,3518322765656.392090,3518322750864.437012,253,854,0.000000,0.000020,66944364,32911593,0,0,97010,0,1,1 +1773707504.813549,0.65,4,3992.50,54.95,1571.11,2151.37,0.00,3515678580354.739746,3515678580345.549316,205,0,0.000000,0.000030,66944364,32911596,0,0,97013,0,1,1 +1773707509.814170,0.65,4,3992.50,54.95,1571.11,2151.37,0.00,3518000347117.915039,0.000000,11,0,0.000000,0.000020,66944364,32911598,0,0,97015,0,1,1 +1773707514.811586,0.95,4,3992.50,54.95,1568.91,2151.34,0.00,61873.936575,76682.180005,4233915,3567914,0.000000,0.000030,66944364,32911601,0,0,97018,0,1,1 +1773707519.809824,0.65,4,3992.50,54.97,1568.16,2152.07,0.00,0.000000,0.022664,4233915,3567937,0.000031,0.000045,66944366,32911605,0,0,97020,0,1,1 +1773707524.812888,0.65,4,3992.50,54.97,1568.17,2152.07,0.00,3516282601137.910645,3516282586346.359863,11,0,0.000165,0.000218,66944379,32911621,0,0,97023,0,1,1 +1773707529.814306,0.60,4,3992.50,54.97,1568.17,2152.07,0.00,0.000000,0.000000,11,0,0.000000,0.000020,66944379,32911623,0,0,97025,0,1,1 +1773707534.809575,9.87,4,3992.50,54.94,1547.44,2151.00,0.00,0.000000,0.000000,11,0,0.000031,0.000055,66944381,32911628,0,0,97028,0,1,1 +1773707539.809478,3.36,4,3992.50,55.02,1548.43,2154.12,0.00,0.180277,0.000000,205,0,0.000031,0.000045,66944383,32911632,0,0,97030,0,1,1 +1773707544.809569,5.67,4,3992.50,55.20,1536.55,2161.21,0.00,61840.652695,77299.887981,4233915,3571326,0.000000,0.000030,66944383,32911635,0,0,97033,0,1,1 +1773707549.809608,7.07,4,3992.50,54.66,1560.08,2140.04,0.00,3518409414234.551758,3518409398775.335938,11,0,0.002234,0.000725,66944407,32911653,0,0,97035,0,1,1 +1773707554.809473,1.75,4,3992.50,54.87,1549.32,2148.43,0.00,1.657760,10.675485,253,863,0.000112,0.000812,66944414,32911668,0,0,97038,0,1,1 +1773707559.809554,7.93,4,3992.50,54.91,1547.77,2149.98,0.00,3518379868437.474121,3518379868428.457031,11,0,0.000000,0.000503,66944414,32911673,0,0,97040,0,1,1 +1773707564.814245,7.97,4,3992.50,56.51,1487.57,2212.65,0.00,61784.000435,78074.136128,4233915,3575629,0.000000,0.000030,66944414,32911676,0,0,97043,0,1,1 +1773707569.814353,0.65,4,3992.50,55.99,1505.85,2192.28,0.00,3518361085000.284668,3518361068695.218750,11,0,0.001126,0.001866,66944423,32911696,0,0,97045,0,1,1 +1773707574.809470,16.62,4,3992.50,55.21,1555.14,2161.62,0.00,0.180450,0.000000,205,0,40.102672,0.027432,66948835,32913718,0,0,97048,0,1,1 +1773707579.809589,0.85,4,3992.50,54.95,1565.00,2151.40,0.00,61850.039114,78188.459347,4235418,3576878,0.002466,0.001176,66948879,32913750,0,0,97050,0,1,1 +1773707584.813848,0.65,4,3992.50,54.96,1564.75,2151.64,0.00,3515442372612.350586,3515442356285.455566,258,2,0.000000,0.000030,66948879,32913753,0,0,97053,0,1,1 +1773707589.809485,0.70,4,3992.50,54.96,1564.75,2151.64,0.00,3521510266085.214844,10.684324,253,868,0.000000,0.000020,66948879,32913755,0,0,97055,0,1,1 +1773707594.813483,0.65,4,3992.50,54.76,1572.39,2144.00,0.00,3515625776307.787109,3515625776298.597168,205,0,0.000000,0.000030,66948879,32913758,0,0,97058,0,1,1 +1773707599.813429,0.90,4,3992.50,54.78,1571.71,2144.69,0.00,3518475734081.222168,0.000000,11,0,0.002074,0.002104,66948910,32913786,0,0,97060,0,1,1 +1773707604.814014,1.10,4,3992.50,55.39,1548.08,2168.48,0.00,0.053509,0.000000,75,0,0.001064,0.000431,66948932,32913802,0,0,97063,0,1,1 +1773707609.813697,0.65,4,3992.50,54.97,1564.20,2152.25,0.00,0.000000,0.000000,75,0,0.000000,0.000020,66948932,32913804,0,0,97065,0,1,1 +1773707614.813860,0.60,4,3992.50,54.98,1563.96,2152.48,0.00,1.604147,10.674848,253,868,0.000031,0.000055,66948934,32913809,0,0,97068,0,1,1 +1773707619.813657,0.65,4,3992.50,54.98,1563.72,2152.72,0.00,3518580338396.263672,3518580338387.246094,11,0,0.000031,0.000045,66948936,32913813,0,0,97070,0,1,1 +1773707624.813723,0.70,4,3992.50,54.98,1563.72,2152.72,0.00,0.000000,0.000000,11,0,0.000084,0.000775,66948943,32913827,0,0,97073,0,1,1 +1773707629.814391,8.38,4,3992.50,54.86,1541.82,2148.07,0.00,2.175100,0.000195,258,2,0.000000,0.000020,66948943,32913829,0,0,97075,0,1,1 +1773707634.810827,5.22,4,3992.50,56.18,1498.76,2199.74,0.00,3520947064590.190918,3520947064592.367676,11,0,0.000000,0.000030,66948943,32913832,0,0,97078,0,1,1 +1773707639.811057,5.61,4,3992.50,55.16,1534.46,2159.50,0.00,0.000000,0.000000,11,0,0.002593,0.001996,66948982,32913874,0,0,97080,0,1,1 +1773707644.813768,7.75,4,3992.50,55.07,1536.04,2155.96,0.00,0.053487,0.000000,75,0,0.000449,0.000774,66948997,32913896,0,0,97083,0,1,1 +1773707649.814361,2.01,4,3992.50,55.01,1535.62,2153.68,0.00,1.604009,10.673930,253,877,0.000162,0.000694,66949008,32913913,0,0,97085,0,1,1 +1773707654.809672,5.24,4,3992.50,54.78,1546.48,2144.91,0.00,3521740026278.218750,3521740026269.193359,11,0,0.000235,0.000664,66949016,32913928,0,0,97088,0,1,1 +1773707659.809449,12.81,4,3992.50,55.96,1520.96,2190.79,0.00,0.053518,0.000000,75,0,17.830241,0.015110,66951058,32914940,0,0,97090,0,1,1 +1773707664.814175,1.15,4,3992.50,55.23,1551.62,2162.52,0.00,61793.257063,79313.000852,4235422,3583639,0.003289,0.003017,66951100,32914979,0,0,97093,0,1,1 +1773707669.810576,0.75,4,3992.50,54.69,1572.83,2141.32,0.00,3520971495132.657227,3520971477583.774414,11,0,0.000000,0.000020,66951100,32914981,0,0,97095,0,1,1 +1773707674.814021,0.65,4,3992.50,54.51,1579.95,2134.20,0.00,61799.422715,79322.763160,4233919,3582857,0.000000,0.000030,66951100,32914984,0,0,97098,0,1,1 +1773707679.811745,0.65,4,3992.50,54.51,1579.95,2134.20,0.00,3520039106278.354980,3520039088734.958496,11,0,0.000000,0.000020,66951100,32914986,0,0,97100,0,1,1 +1773707684.813618,0.65,4,3992.50,54.52,1579.74,2134.41,0.00,0.180206,0.000000,205,0,0.000071,0.000130,66951105,32914996,0,0,97103,0,1,1 +1773707689.813488,0.70,4,3992.50,54.51,1579.79,2134.35,0.00,1.995169,0.000195,258,2,0.000550,0.001522,66951126,32915028,0,0,97105,0,1,1 +1773707694.813543,3.61,4,3992.50,57.38,1467.69,2246.46,0.00,0.000000,0.000000,258,2,1.005824,0.007518,66951418,32915224,0,0,97108,0,1,1 +1773707699.810752,9.38,4,3992.50,55.11,1556.42,2157.71,0.00,3520402372119.329590,10.680962,253,886,21.245003,0.014501,66953678,32916272,0,0,97110,0,1,1 +1773707704.809578,0.85,4,3992.50,54.63,1575.43,2138.71,0.00,61864.819639,79396.233904,4235433,3583937,0.000031,0.000055,66953680,32916277,0,0,97113,0,1,1 +1773707709.810563,0.60,4,3992.50,54.33,1586.83,2127.30,0.00,3517743862261.770996,3517743862260.828125,4233930,3583056,0.000000,0.000020,66953680,32916279,0,0,97115,0,1,1 +1773707714.809578,0.65,4,3992.50,54.35,1586.09,2128.04,0.00,3519130733221.064453,3519130715682.181641,75,0,0.000000,0.000030,66953680,32916282,0,0,97118,0,1,1 +1773707719.809577,0.75,4,3992.50,54.38,1584.86,2129.27,0.00,61851.916918,79388.308360,4235433,3583955,0.000000,0.000020,66953680,32916284,0,0,97120,0,1,1 +1773707724.809575,1.00,4,3992.50,54.51,1580.06,2134.07,0.00,0.000000,0.064844,4235433,3583984,0.000000,0.000030,66953680,32916287,0,0,97123,0,1,1 +1773707729.809572,0.80,4,3992.50,54.48,1581.29,2132.84,0.00,0.000000,0.038281,4235433,3584018,0.000000,0.000020,66953680,32916289,0,0,97125,0,1,1 +1773707734.810068,0.65,4,3992.50,54.48,1581.04,2133.09,0.00,3518088144167.809082,3518088144166.865723,4233930,3583136,0.000062,0.000080,66953684,32916296,0,0,97128,0,1,1 +1773707739.813836,0.70,4,3992.50,54.52,1579.60,2134.54,0.00,3515787975489.944824,3515787957965.481934,258,2,0.000078,0.000086,66953690,32916304,0,0,97130,0,1,1 +1773707744.812561,0.65,4,3992.50,54.52,1579.60,2134.54,0.00,3519334671600.341797,3519334671602.337402,205,0,0.000126,0.000185,66953700,32916317,0,0,97133,0,1,1 +1773707749.813874,0.50,4,3992.50,54.52,1579.60,2134.53,0.00,61825.805438,79356.888428,4233930,3583154,0.000000,0.000020,66953700,32916319,0,0,97135,0,1,1 +1773707754.814195,1.05,4,3992.50,54.66,1574.05,2139.94,0.00,3518211733807.958008,3518211716273.520020,75,0,0.000000,0.000191,66953700,32916323,0,0,97138,0,1,1 +1773707759.814315,12.23,4,3992.50,59.60,1380.50,2333.38,0.00,3518352902814.559570,0.000000,11,0,12.622931,0.013492,66955229,32917193,0,0,97140,0,1,1 +1773707764.813705,4.41,4,3992.50,55.11,1556.04,2157.82,0.00,1.657917,10.676498,253,886,27.447615,0.012155,66958194,32918023,0,0,97143,0,1,1 +1773707769.814276,0.65,4,3992.50,54.48,1581.00,2132.88,0.00,61843.221599,79368.863167,4235433,3584262,0.000000,0.000020,66958194,32918025,0,0,97145,0,1,1 +1773707774.813612,0.65,4,3992.50,54.37,1585.12,2128.75,0.00,3518904293540.490234,3518904276001.498047,11,0,0.000000,0.000030,66958194,32918028,0,0,97148,0,1,1 +1773707779.809476,0.75,4,3992.50,54.35,1585.78,2128.09,0.00,61903.170920,79454.366367,4235433,3584273,0.000000,0.000020,66958194,32918030,0,0,97150,0,1,1 +1773707784.813768,0.95,4,3992.50,54.58,1577.22,2136.94,0.00,0.000000,0.072594,4235433,3584304,0.000000,0.000030,66958194,32918033,0,0,97153,0,1,1 +1773707789.814259,0.80,4,3992.50,54.58,1577.10,2136.89,0.00,3518091529719.368652,3518091512184.344727,11,0,0.000308,0.000574,66958201,32918046,0,0,97155,0,1,1 +1773707794.809429,0.65,4,3992.50,54.58,1577.14,2136.88,0.00,2.177494,0.000196,258,2,0.001156,0.001249,66958213,32918065,0,0,97158,0,1,1 +1773707799.813088,0.75,4,3992.50,54.58,1577.14,2136.88,0.00,61804.553329,79330.703690,4235433,3584356,0.000000,0.000020,66958213,32918067,0,0,97160,0,1,1 +1773707804.809459,0.60,4,3992.50,54.58,1577.14,2136.88,0.00,3520992163445.033203,3520992145895.499023,11,0,0.000031,0.000055,66958215,32918072,0,0,97163,0,1,1 +1773707809.814327,0.75,4,3992.50,54.58,1577.14,2136.88,0.00,0.053464,0.000000,75,0,0.000126,0.000175,66958225,32918084,0,0,97165,0,1,1 +1773707814.814123,0.90,4,3992.50,54.60,1578.57,2137.59,0.00,2.121961,0.000195,258,2,0.000000,0.000030,66958225,32918087,0,0,97168,0,1,1 +1773707819.813497,0.85,4,3992.50,54.54,1580.65,2135.44,0.00,3518877963829.237305,3518877963831.232910,205,0,0.000000,0.000020,66958225,32918089,0,0,97170,0,1,1 +1773707824.814665,9.91,4,3992.50,59.43,1389.41,2326.69,0.00,61827.599760,79359.607166,4233930,3583540,5.613092,0.010413,66959095,32918703,0,0,97173,0,1,1 +1773707829.811667,6.52,4,3992.50,54.61,1577.93,2138.15,0.00,3520547819667.080078,3520547802120.637207,11,0,34.472851,0.014167,66962730,32919696,0,0,97175,0,1,1 +1773707834.813334,0.80,4,3992.50,54.61,1577.94,2138.15,0.00,61831.345011,79362.476974,4235433,3584551,0.000031,0.000055,66962732,32919701,0,0,97178,0,1,1 +1773707839.809475,0.60,4,3992.50,54.62,1577.73,2138.37,0.00,3521154783449.773926,3521154765908.278320,253,886,0.000031,0.000045,66962734,32919705,0,0,97180,0,1,1 +1773707844.814174,0.80,4,3992.50,54.62,1577.73,2138.37,0.00,3515133151742.449219,3515133151733.260254,205,0,0.000008,0.000038,66962735,32919709,0,0,97183,0,1,1 +1773707849.810592,1.05,4,3992.50,54.57,1572.57,2136.34,0.00,1.478501,10.682849,253,886,0.000000,0.000020,66962735,32919711,0,0,97185,0,1,1 +1773707854.813542,0.60,4,3992.50,54.57,1572.34,2136.58,0.00,3516362552162.676270,3516362552153.664551,11,0,0.000000,0.000030,66962735,32919714,0,0,97188,0,1,1 +1773707859.814105,0.70,4,3992.50,54.58,1572.09,2136.82,0.00,1.657528,10.673994,253,886,0.000000,0.000020,66962735,32919716,0,0,97190,0,1,1 +1773707864.810144,0.70,4,3992.50,54.58,1572.09,2136.82,0.00,3521226860719.961426,3521226860710.937012,11,0,0.000000,0.000030,66962735,32919719,0,0,97193,0,1,1 +1773707869.809661,0.65,4,3992.50,54.58,1572.10,2136.82,0.00,0.000000,0.000000,11,0,0.000236,0.000577,66962744,32919734,0,0,97195,0,1,1 +1773707874.809730,1.05,4,3992.50,54.58,1572.10,2136.82,0.00,0.180271,0.000000,205,0,0.000126,0.000185,66962754,32919747,0,0,97198,0,1,1 +1773707879.813056,0.65,4,3992.50,54.55,1572.89,2135.94,0.00,61800.937068,79325.689681,4233930,3583800,0.000000,0.000020,66962754,32919749,0,0,97200,0,1,1 +1773707884.813608,0.75,4,3992.50,54.55,1572.89,2135.94,0.00,9.725097,10.678117,4235433,3584693,0.000000,0.000030,66962754,32919752,0,0,97203,0,1,1 +1773707889.814574,13.30,4,3992.50,59.14,1393.41,2315.43,0.00,3517757623901.693848,3517757606367.898438,11,0,22.835313,0.017109,66965386,32920819,0,0,97205,0,1,1 +1773707894.813895,1.96,4,3992.50,55.58,1532.89,2175.94,0.00,0.000000,0.000000,11,0,17.229976,0.005703,66967233,32921169,0,0,97208,0,1,1 +1773707899.813765,0.85,4,3992.50,54.90,1559.25,2149.59,0.00,61843.843850,79380.651382,4233930,3583954,0.001417,0.001182,66967262,32921195,0,0,97210,0,1,1 +1773707904.809454,0.80,4,3992.50,54.42,1578.21,2130.62,0.00,3521473137919.271484,3521473120367.610352,205,0,0.001735,0.001367,66967287,32921214,0,0,97213,0,1,1 +1773707909.813540,0.95,4,3992.50,54.44,1575.68,2131.42,0.00,61791.552095,79313.839951,4233930,3583992,0.000000,0.000020,66967287,32921216,0,0,97215,0,1,1 +1773707914.809607,0.70,4,3992.50,54.47,1574.36,2132.78,0.00,0.000000,0.036748,4233930,3584028,0.000031,0.000055,66967289,32921221,0,0,97218,0,1,1 +1773707919.809806,0.65,4,3992.50,54.47,1574.36,2132.78,0.00,0.000000,0.017187,4233930,3584037,0.000000,0.000020,66967289,32921223,0,0,97220,0,1,1 +1773707924.809542,0.70,4,3992.50,54.47,1574.36,2132.77,0.00,3518623444077.844238,3518623426540.435547,11,0,0.000000,0.000030,66967289,32921226,0,0,97223,0,1,1 +1773707929.812583,0.75,4,3992.50,54.47,1574.37,2132.77,0.00,0.000000,0.000000,11,0,0.000000,0.000020,66967289,32921228,0,0,97225,0,1,1 +1773707934.814427,1.10,4,3992.50,54.54,1579.31,2135.49,0.00,0.180207,0.000000,205,0,0.000031,0.000055,66967291,32921233,0,0,97228,0,1,1 +1773707939.811923,0.65,4,3992.50,54.55,1578.96,2135.80,0.00,3520200199066.970215,0.000000,75,0,0.000092,0.000129,66967299,32921243,0,0,97230,0,1,1 +1773707944.813799,0.70,4,3992.50,54.56,1578.71,2136.05,0.00,61828.701754,79359.697065,4235433,3584985,0.000081,0.000117,66967305,32921252,0,0,97233,0,1,1 +1773707949.809590,0.70,4,3992.50,54.56,1578.71,2136.05,0.00,3521401072282.836914,3521401054730.363770,205,0,0.000050,0.000082,66967309,32921258,0,0,97235,0,1,1 +1773707954.814026,12.39,4,3992.50,59.02,1403.85,2310.91,0.00,3515318844061.212402,0.000000,11,0,15.213331,0.015299,66969102,32922261,0,0,97238,0,1,1 +1773707959.814240,3.76,4,3992.50,55.08,1558.13,2156.62,0.00,0.000000,0.000000,11,0,24.838327,0.009189,66971761,32922858,0,0,97240,0,1,1 +1773707964.812352,0.75,4,3992.50,54.47,1582.08,2132.67,0.00,1.658341,10.679228,253,886,0.000000,0.000030,66971761,32922861,0,0,97243,0,1,1 +1773707969.813221,0.90,4,3992.50,54.53,1586.38,2134.86,0.00,0.517586,3517825655989.185059,258,2,0.000000,0.000020,66971761,32922863,0,0,97245,0,1,1 +1773707974.813390,0.70,4,3992.50,54.53,1586.41,2134.85,0.00,3518318021636.113281,3518318021638.235352,75,0,0.000000,0.000030,66971761,32922866,0,0,97248,0,1,1 +1773707979.810193,0.75,4,3992.50,54.53,1586.18,2135.09,0.00,0.126839,0.000000,205,0,0.000000,0.000020,66971761,32922868,0,0,97250,0,1,1 +1773707984.814000,0.55,4,3992.50,54.53,1586.18,2135.09,0.00,0.000000,0.000000,205,0,0.000000,0.000030,66971761,32922871,0,0,97253,0,1,1 +1773707989.812191,0.75,4,3992.50,54.53,1586.18,2135.08,0.00,61874.159519,79418.456445,4235433,3585225,0.000000,0.000020,66971761,32922873,0,0,97255,0,1,1 +1773707994.812620,0.95,4,3992.50,54.56,1586.87,2136.27,0.00,0.000000,0.037497,4235433,3585243,0.000000,0.000030,66971761,32922876,0,0,97258,0,1,1 +1773707999.813480,0.65,4,3992.50,54.56,1586.96,2136.23,0.00,0.000000,0.017966,4235433,3585261,0.000031,0.000045,66971763,32922880,0,0,97260,0,1,1 +1773708004.810395,0.85,4,3992.50,54.54,1587.70,2135.49,0.00,0.000000,0.016416,4235433,3585269,0.000134,0.000193,66971774,32922894,0,0,97263,0,1,1 +1773708009.814289,0.70,4,3992.50,54.54,1587.70,2135.49,0.00,3515699107909.670898,3515699090385.298340,205,0,0.000000,0.000020,66971774,32922896,0,0,97265,0,1,1 +1773708014.811686,0.75,4,3992.50,54.54,1587.70,2135.49,0.00,3520269972671.377441,0.000000,75,0,0.000000,0.000030,66971774,32922899,0,0,97268,0,1,1 +1773708019.813689,10.45,4,3992.50,59.44,1395.98,2327.21,0.00,3517028413913.555176,0.000000,11,0,7.415075,0.013075,66972859,32923653,0,0,97270,0,1,1 +1773708024.811743,5.73,4,3992.50,55.89,1534.91,2188.23,0.00,2.176238,0.000195,258,2,32.661938,0.011836,66976263,32924461,0,0,97273,0,1,1 +1773708029.809449,0.95,4,3992.50,55.12,1565.09,2158.09,0.00,61868.428930,79415.805572,4233930,3584644,0.000000,0.000020,66976263,32924463,0,0,97275,0,1,1 +1773708034.813850,0.55,4,3992.50,54.52,1588.48,2134.70,0.00,3515343256180.229492,3515343238667.507324,253,886,0.000000,0.000030,66976263,32924466,0,0,97278,0,1,1 +1773708039.813413,0.60,4,3992.50,54.52,1588.57,2134.61,0.00,0.517721,3518744491680.247559,258,2,0.000000,0.000020,66976263,32924468,0,0,97280,0,1,1 +1773708044.810561,0.65,4,3992.50,54.52,1588.67,2134.52,0.00,61885.073765,79435.376526,4235433,3585550,0.000000,0.000030,66976263,32924471,0,0,97283,0,1,1 +1773708049.809597,0.65,4,3992.50,54.50,1589.48,2133.70,0.00,3519115621261.857422,3519115603720.357910,11,0,0.000000,0.000020,66976263,32924473,0,0,97285,0,1,1 +1773708054.809699,1.05,4,3992.50,54.38,1598.43,2129.14,0.00,61850.690210,79388.499895,4235433,3585576,0.000000,0.000030,66976263,32924476,0,0,97288,0,1,1 +1773708059.814328,0.75,4,3992.50,54.42,1594.25,2130.57,0.00,3515182710031.273926,3515182692507.155273,258,2,0.000000,0.000020,66976263,32924478,0,0,97290,0,1,1 +1773708064.811380,0.70,4,3992.50,54.40,1594.99,2129.83,0.00,61886.269273,79437.003316,4235433,3585616,0.000031,0.000055,66976265,32924483,0,0,97293,0,1,1 +1773708069.813545,0.75,4,3992.50,54.41,1594.40,2130.42,0.00,3516914288678.490234,3516914271147.871094,11,0,0.000134,0.000183,66976276,32924496,0,0,97295,0,1,1 +1773708074.814454,0.65,4,3992.50,54.41,1594.40,2130.42,0.00,0.053506,0.000000,75,0,0.000000,0.000030,66976276,32924499,0,0,97298,0,1,1 +1773708079.809469,0.70,4,3992.50,54.41,1594.40,2130.42,0.00,1.605800,10.685850,253,886,0.000000,0.000020,66976276,32924501,0,0,97300,0,1,1 +1773708084.813221,7.36,4,3992.50,59.34,1401.20,2323.33,0.00,3515798859194.247070,3515798859185.183105,75,0,2.408386,0.007359,66976831,32924908,0,0,97303,0,1,1 +1773708089.814271,19.39,4,3992.50,55.74,1541.54,2182.38,0.00,3517698374733.326660,0.000000,11,0,37.650020,0.021305,66980855,32926399,0,0,97305,0,1,1 +1773708094.813931,0.65,4,3992.50,54.84,1576.91,2147.02,0.00,0.180286,0.000000,205,0,0.000205,0.000562,66980862,32926413,0,0,97308,0,1,1 +1773708099.814359,0.65,4,3992.50,54.39,1594.50,2129.42,0.00,3518135978340.655273,0.000000,11,0,0.000000,0.000020,66980862,32926415,0,0,97310,0,1,1 +1773708104.814220,0.75,4,3992.50,54.37,1595.34,2128.58,0.00,1.657761,10.675492,253,886,0.000000,0.000030,66980862,32926418,0,0,97313,0,1,1 +1773708109.814412,0.60,4,3992.50,54.40,1594.23,2129.69,0.00,3518301995610.408691,3518301995601.211426,205,0,0.000000,0.000020,66980862,32926420,0,0,97315,0,1,1 +1773708114.812400,1.05,4,3992.50,54.36,1596.18,2128.32,0.00,1.478036,10.679494,253,886,0.000000,0.000030,66980862,32926423,0,0,97318,0,1,1 +1773708119.809456,0.65,4,3992.50,54.36,1596.22,2128.15,0.00,3520509845684.191895,3520509845674.988770,205,0,0.000000,0.000020,66980862,32926425,0,0,97320,0,1,1 +1773708124.810953,0.75,4,3992.50,54.36,1596.22,2128.15,0.00,3517383757372.078125,0.000000,75,0,0.000000,0.000030,66980862,32926428,0,0,97323,0,1,1 +1773708129.809459,0.70,4,3992.50,54.36,1596.22,2128.15,0.00,0.000000,0.000000,75,0,0.000031,0.000045,66980864,32926432,0,0,97325,0,1,1 +1773708134.809542,0.60,4,3992.50,54.36,1596.23,2128.15,0.00,3518378992376.986816,0.000000,11,0,0.000165,0.000218,66980877,32926448,0,0,97328,0,1,1 +1773708139.809594,0.65,4,3992.50,54.36,1596.23,2128.14,0.00,2.175368,0.000195,258,2,0.000031,0.000045,66980879,32926452,0,0,97330,0,1,1 +1773708144.814160,0.95,4,3992.50,54.45,1586.47,2131.84,0.00,3515227112623.025391,10.665261,253,886,0.000000,0.000030,66980879,32926455,0,0,97333,0,1,1 +1773708149.814625,1.50,4,3992.50,55.85,1531.53,2186.64,0.00,0.517628,3518110501651.655273,258,2,0.003779,0.002687,66980939,32926502,0,0,97335,0,1,1 +1773708154.809451,16.27,4,3992.50,54.22,1595.29,2122.88,0.00,61913.840558,79472.923177,4235433,3586124,40.104959,0.022288,66985436,32928092,0,0,97338,0,1,1 +1773708159.814119,0.65,4,3992.50,54.22,1595.29,2122.88,0.00,3515155225871.425781,3515155208358.055664,253,886,0.000000,0.000020,66985436,32928094,0,0,97340,0,1,1 +1773708164.813575,0.65,4,3992.50,54.22,1595.29,2122.88,0.00,61857.030554,79388.674219,4235433,3586137,0.000000,0.000030,66985436,32928097,0,0,97343,0,1,1 +1773708169.813487,0.70,4,3992.50,54.22,1595.29,2122.88,0.00,3518499052209.447754,3518499034668.211914,258,2,0.000205,0.000552,66985443,32928110,0,0,97345,0,1,1 +1773708174.814206,1.00,4,3992.50,54.47,1585.58,2132.67,0.00,3517931518889.917480,3517931518891.912598,205,0,0.000000,0.000030,66985443,32928113,0,0,97348,0,1,1 +1773708179.814007,0.75,4,3992.50,54.46,1586.18,2132.04,0.00,61854.233749,79393.973481,4235433,3586206,0.000000,0.000020,66985443,32928115,0,0,97350,0,1,1 +1773708184.811407,0.65,4,3992.50,54.50,1584.52,2133.70,0.00,3520267036050.356934,3520267018511.395996,253,886,0.000000,0.000030,66985443,32928118,0,0,97353,0,1,1 +1773708189.813642,0.80,4,3992.50,54.50,1584.30,2133.91,0.00,61822.671385,79344.704193,4235433,3586212,0.000000,0.000020,66985443,32928120,0,0,97355,0,1,1 +1773708194.811003,0.55,4,3992.50,54.50,1584.30,2133.91,0.00,3520294854502.032227,3520294836953.839355,75,0,0.000031,0.000042,66985445,32928124,0,0,97358,0,1,1 +1773708199.814090,0.95,4,3992.50,54.52,1583.61,2134.61,0.00,1.603209,10.668608,253,886,0.002451,0.002014,66985485,32928164,0,0,97360,0,1,1 +1773708204.813590,1.05,4,3992.50,54.61,1591.79,2138.27,0.00,3518789609327.094727,3518789609318.076660,11,0,0.001072,0.000447,66985508,32928182,0,0,97363,0,1,1 +1773708209.813574,0.70,4,3992.50,54.61,1591.80,2138.27,0.00,0.000000,0.000000,11,0,0.000000,0.000020,66985508,32928184,0,0,97365,0,1,1 +1773708214.809463,1.00,4,3992.50,54.42,1599.21,2130.83,0.00,61893.118127,79445.677460,4233930,3585410,0.002267,0.000760,66985534,32928205,0,0,97368,0,1,1 +1773708219.813427,15.85,4,3992.50,54.73,1587.44,2142.62,0.00,3515649908154.597656,3515649890639.374512,253,886,40.032202,0.022989,66989969,32929726,0,0,97370,0,1,1 +1773708224.813790,0.60,4,3992.50,54.73,1587.20,2142.86,0.00,61836.082068,79364.018846,4233930,3585546,0.000000,0.000030,66989969,32929729,0,0,97373,0,1,1 +1773708229.813854,0.60,4,3992.50,54.73,1587.20,2142.86,0.00,3518392243913.976074,3518392226373.798828,258,2,0.000000,0.000020,66989969,32929731,0,0,97375,0,1,1 +1773708234.813908,0.65,4,3992.50,54.73,1587.20,2142.85,0.00,0.000000,0.000000,258,2,0.000000,0.000030,66989969,32929734,0,0,97378,0,1,1 +1773708239.813862,1.05,4,3992.50,55.02,1575.95,2154.11,0.00,3518469651282.291016,3518469651284.466309,11,0,0.000000,0.000020,66989969,32929736,0,0,97380,0,1,1 +1773708244.813792,0.55,4,3992.50,55.02,1575.96,2154.11,0.00,0.000000,0.000000,11,0,0.000056,0.000086,66989973,32929743,0,0,97383,0,1,1 +1773708249.813707,0.70,4,3992.50,54.82,1583.83,2146.23,0.00,0.053517,0.000000,75,0,0.000033,0.000059,66989976,32929748,0,0,97385,0,1,1 +1773708254.814111,0.60,4,3992.50,54.82,1583.83,2146.23,0.00,3518153012482.797852,0.000000,11,0,0.000000,0.000030,66989976,32929751,0,0,97388,0,1,1 +1773708259.814036,0.60,4,3992.50,54.82,1583.83,2146.23,0.00,0.053516,0.000000,75,0,0.000000,0.000020,66989976,32929753,0,0,97390,0,1,1 +1773708264.809457,0.95,4,3992.50,54.76,1582.01,2143.89,0.00,3521662229529.431152,0.000000,11,0,0.000157,0.000211,66989988,32929768,0,0,97393,0,1,1 +1773708269.815203,9.51,4,3992.50,94.44,33.41,3697.49,0.00,0.053454,0.000000,75,0,0.000000,0.000020,66989988,32929770,0,0,97395,0,1,1 +1773708274.813982,29.01,4,3992.50,73.83,845.52,2890.57,0.00,3519296665471.992676,0.000000,11,0,0.000000,0.000030,66989988,32929773,0,0,97398,0,1,1 +1773708279.810433,29.32,4,3992.50,63.95,1230.54,2503.61,0.00,0.053554,0.000000,75,0,0.002210,0.000715,66990010,32929790,0,0,97400,0,1,1 +1773708284.812917,43.66,4,3992.50,62.44,1287.43,2444.57,0.00,62409.894186,79361.733788,4271626,3597192,40.044445,0.023046,66994493,32931315,0,0,97403,0,1,1 +1773708289.814447,28.96,4,3992.50,90.37,214.28,3538.21,0.00,133.126039,3517360342978.179688,4279498,3599696,0.000000,0.000020,66994493,32931317,0,0,97405,0,1,1 +1773708294.815612,28.73,4,3992.50,92.14,113.03,3607.64,0.00,3517617743286.334473,3517617726470.581543,205,0,0.000000,0.000030,66994493,32931320,0,0,97408,0,1,1 +1773708299.815258,23.10,4,3992.50,53.86,1633.56,2108.56,0.00,3518686685176.527344,0.000000,75,0,0.000000,0.000020,66994493,32931322,0,0,97410,0,1,1 +1773708304.809465,0.90,4,3992.50,53.77,1627.39,2105.36,0.00,62927.282154,79491.705087,4298299,3606160,0.000000,0.000030,66994493,32931325,0,0,97413,0,1,1 +1773708309.809446,0.80,4,3992.50,53.75,1627.20,2104.55,0.00,3518451036875.631348,3518451020328.210449,258,2,0.000000,0.000020,66994493,32931327,0,0,97415,0,1,1 +1773708314.813719,1.65,4,3992.50,53.93,1618.00,2111.50,0.00,3515432775197.168945,10.665884,253,886,0.000000,0.000030,66994493,32931330,0,0,97418,0,1,1 +1773708319.814036,0.85,4,3992.50,53.97,1616.59,2112.92,0.00,0.000000,0.000000,253,886,0.000000,0.000020,66994493,32931332,0,0,97420,0,1,1 +1773708324.812676,1.25,4,3992.50,54.14,1598.85,2119.84,0.00,3519394124401.480469,3519394124392.280273,205,0,0.000000,0.000030,66994493,32931335,0,0,97423,0,1,1 +1773708329.810619,1.05,4,3992.50,54.11,1591.14,2118.69,0.00,1.995939,0.000195,258,2,0.000157,0.000201,66994505,32931349,0,0,97425,0,1,1 +1773708334.809468,0.95,4,3992.50,54.01,1595.32,2114.50,0.00,3519247126303.303711,3519247126305.299805,205,0,0.000016,0.000046,66994507,32931354,0,0,97428,0,1,1 +1773708339.813802,0.75,4,3992.50,53.92,1598.67,2111.15,0.00,62809.091468,79331.030535,4298800,3606335,0.000000,0.000020,66994507,32931356,0,0,97430,0,1,1 +1773708344.814328,1.10,4,3992.50,53.83,1598.93,2107.52,0.00,3518067131199.771484,3518067114674.444824,253,886,0.002878,0.001658,66994532,32931377,0,0,97433,0,1,1 +1773708349.810200,15.39,4,3992.50,54.15,1558.46,2120.23,0.00,0.000000,0.000000,253,886,40.096505,0.020891,66998927,32932728,0,0,97435,0,1,1 +1773708354.813687,1.00,4,3992.50,54.28,1554.03,2124.99,0.00,62871.220469,79344.650661,4301003,3607392,0.000000,0.000030,66998927,32932731,0,0,97438,0,1,1 +1773708359.813192,8.53,4,3992.50,77.90,685.42,3049.91,0.00,3518785391711.665527,3518785375216.043945,75,0,0.000000,0.000020,66998927,32932733,0,0,97440,0,1,1 +1773708364.814610,28.82,4,3992.50,66.41,1128.59,2600.27,0.00,63080.210239,79391.637595,4312921,3611197,0.000000,0.000030,66998927,32932736,0,0,97443,0,1,1 +1773708369.813998,29.05,4,3992.50,61.45,1337.28,2406.04,0.00,3518867917150.354492,3518867900832.174805,205,0,0.000000,0.000020,66998927,32932738,0,0,97445,0,1,1 +1773708374.810448,28.43,4,3992.50,89.43,227.24,3501.34,0.00,1.478491,10.682780,253,886,0.000000,0.000030,66998927,32932741,0,0,97448,0,1,1 +1773708379.810664,28.66,4,3992.50,75.45,782.64,2954.01,0.00,63511.156494,79398.431488,4339512,3620206,0.000000,0.000020,66998927,32932743,0,0,97450,0,1,1 +1773708384.815023,29.42,4,3992.50,62.44,1284.46,2444.82,0.00,3515372506893.023926,3515372491009.712891,205,0,0.000000,0.000030,66998927,32932746,0,0,97453,0,1,1 +1773708389.813996,22.00,4,3992.50,54.62,1595.54,2138.37,0.00,63823.852071,79445.481887,4360200,3627573,0.001230,0.001244,66998936,32932762,0,0,97455,0,1,1 +1773708394.809691,0.65,4,3992.50,54.45,1598.53,2131.79,0.00,3521468502631.703613,3521468486999.952637,75,0,0.000370,0.000751,66998956,32932789,0,0,97458,0,1,1 +1773708399.813462,0.60,4,3992.50,54.41,1599.53,2130.38,0.00,63764.344445,79369.323728,4360296,3627580,0.000000,0.000020,66998956,32932791,0,0,97460,0,1,1 +1773708404.813809,0.65,4,3992.50,54.35,1602.03,2127.84,0.00,0.020311,0.000781,4360297,3627581,0.000000,0.000030,66998956,32932794,0,0,97463,0,1,1 +1773708409.813028,1.61,4,3992.50,54.34,1582.49,2127.72,0.00,3518986974821.138672,3518986959201.844238,205,0,0.002184,0.000398,66998976,32932810,0,0,97465,0,1,1 +1773708414.814051,17.24,4,3992.50,58.33,1392.09,2283.82,0.00,3517717130779.262207,0.000000,11,0,40.054275,0.027165,67003311,32934638,0,0,97468,0,1,1 +1773708419.810895,0.65,4,3992.50,57.63,1419.71,2256.19,0.00,0.180387,0.000000,205,0,0.000000,0.000020,67003311,32934640,0,0,97470,0,1,1 +1773708424.813133,0.65,4,3992.50,54.50,1542.20,2133.72,0.00,63838.877093,79397.286199,4362024,3628128,0.000000,0.000030,67003311,32934643,0,0,97473,0,1,1 +1773708429.812696,0.75,4,3992.50,54.37,1546.98,2128.80,0.00,3518744965345.988770,3518744965344.685059,4360544,3627242,0.000000,0.000020,67003311,32934645,0,0,97475,0,1,1 +1773708434.813766,0.70,4,3992.50,54.37,1547.11,2128.80,0.00,3517684746027.712402,3517684730466.970703,205,0,0.000031,0.000055,67003313,32934650,0,0,97478,0,1,1 +1773708439.813167,0.70,4,3992.50,54.41,1545.62,2130.31,0.00,1.995356,0.000195,258,2,0.000039,0.000053,67003316,32934655,0,0,97480,0,1,1 +1773708444.813416,0.90,4,3992.50,54.64,1548.36,2139.17,0.00,3518261708841.165039,10.674468,253,886,0.000000,0.000030,67003316,32934658,0,0,97483,0,1,1 +1773708449.815718,8.07,4,3992.50,95.20,31.19,3727.12,0.00,63854.785909,79386.055870,4363343,3628597,0.000000,0.000020,67003316,32934660,0,0,97485,0,1,1 +1773708454.813213,28.54,4,3992.50,62.36,1301.67,2441.66,0.00,3520201383335.384766,3520201367789.171875,253,886,0.000000,0.000030,67003316,32934663,0,0,97488,0,1,1 +1773708459.812060,28.39,4,3992.50,81.63,537.09,3195.89,0.00,3519248435765.418457,3519248435756.398926,11,0,0.000157,0.000201,67003328,32934677,0,0,97490,0,1,1 +1773708464.810998,28.59,4,3992.50,54.02,1620.22,2114.88,0.00,64293.537239,79458.578729,4390363,3637800,0.000000,0.000030,67003328,32934680,0,0,97493,0,1,1 +1773708469.815084,28.57,4,3992.50,72.51,901.02,2839.04,0.00,125.467001,2.761025,4398805,3640839,0.000204,0.000552,67003335,32934693,0,0,97495,0,1,1 +1773708474.811071,28.54,4,3992.50,95.89,5.61,3754.41,0.00,134.717488,3.151748,4407732,3644313,0.000000,0.000030,67003335,32934696,0,0,97498,0,1,1 +1773708479.814883,35.51,4,3992.50,54.18,1614.49,2121.36,0.00,204.036246,3515756911122.993164,4418456,3646389,40.037620,0.027429,67007908,32936555,0,0,97500,0,1,1 +1773708484.813106,0.70,4,3992.50,53.88,1619.43,2109.61,0.00,2.527461,0.007913,4418605,3646393,0.000008,0.000038,67007909,32936559,0,0,97503,0,1,1 +1773708489.812183,0.65,4,3992.50,53.66,1626.52,2100.81,0.00,10.396842,10.678144,4420141,3647282,0.000000,0.000020,67007909,32936561,0,0,97505,0,1,1 +1773708494.813941,0.65,4,3992.50,53.63,1627.55,2099.73,0.00,3517200608943.996094,3517200594265.042969,253,886,0.000000,0.000030,67007909,32936564,0,0,97508,0,1,1 +1773708499.814054,0.80,4,3992.50,53.65,1624.29,2100.64,0.00,3518357620817.473145,3518357620808.456055,11,0,0.002087,0.002104,67007941,32936592,0,0,97510,0,1,1 +1773708504.812258,1.20,4,3992.50,54.11,1599.34,2118.36,0.00,0.180338,0.000000,205,0,0.001065,0.000431,67007963,32936608,0,0,97513,0,1,1 +1773708509.813712,0.50,4,3992.50,54.05,1601.39,2116.14,0.00,3517414526237.379395,0.000000,11,0,0.000000,0.000020,67007963,32936610,0,0,97515,0,1,1 +1773708514.814368,0.70,4,3992.50,54.03,1601.92,2115.39,0.00,0.000000,0.000000,11,0,0.000031,0.000055,67007965,32936615,0,0,97518,0,1,1 +1773708519.813402,0.65,4,3992.50,53.97,1604.39,2112.93,0.00,0.000000,0.000000,11,0,0.000000,0.000020,67007965,32936617,0,0,97520,0,1,1 +1773708524.813834,0.60,4,3992.50,53.88,1606.12,2109.36,0.00,2.175203,0.000195,258,2,0.000107,0.000148,67007973,32936628,0,0,97523,0,1,1 +1773708529.809544,0.70,4,3992.50,53.89,1605.57,2109.89,0.00,3521458412432.845215,3521458412435.022461,11,0,0.000008,0.000028,67007974,32936631,0,0,97525,0,1,1 +1773708534.814378,0.95,4,3992.50,54.20,1601.70,2121.95,0.00,2.173290,0.000195,258,2,0.000000,0.000030,67007974,32936634,0,0,97528,0,1,1 +1773708539.814461,7.62,4,3992.50,73.63,858.59,2882.84,0.00,3518378727093.678711,3518378727095.673828,205,0,0.000000,0.000020,67007974,32936636,0,0,97530,0,1,1 +1773708544.811492,41.76,4,3992.50,66.16,1144.34,2590.25,0.00,65070.911186,79491.001954,4434564,3650901,40.090195,0.025517,67012395,32938263,0,0,97533,0,1,1 +1773708549.814119,29.07,4,3992.50,95.26,21.97,3729.47,0.00,145.842132,2.859630,4444025,3654034,0.000025,0.000051,67012397,32938267,0,0,97535,0,1,1 +1773708554.814830,28.73,4,3992.50,74.30,833.68,2908.83,0.00,3517936425259.608398,3517936410993.347656,11,0,0.000000,0.000030,67012397,32938270,0,0,97538,0,1,1 +1773708559.810876,28.89,4,3992.50,56.63,1518.77,2217.28,0.00,0.053558,0.000000,75,0,0.000000,0.000020,67012397,32938272,0,0,97540,0,1,1 +1773708564.813627,28.61,4,3992.50,93.37,72.41,3655.77,0.00,0.000000,0.000000,75,0,0.000000,0.000030,67012397,32938275,0,0,97543,0,1,1 +1773708569.815311,23.10,4,3992.50,53.47,1639.05,2093.37,0.00,0.000000,0.000000,75,0,0.000000,0.000020,67012397,32938277,0,0,97545,0,1,1 +1773708574.813622,0.70,4,3992.50,53.46,1635.80,2093.17,0.00,2.122592,0.000195,258,2,0.000000,0.000030,67012397,32938280,0,0,97548,0,1,1 +1773708579.813492,0.75,4,3992.50,53.43,1636.80,2091.86,0.00,65753.301445,79461.307652,4481695,3667745,0.000000,0.000020,67012397,32938282,0,0,97550,0,1,1 +1773708584.813727,0.65,4,3992.50,53.32,1640.84,2087.75,0.00,3518271762543.315430,3518271748838.486328,11,0,0.000000,0.000030,67012397,32938285,0,0,97553,0,1,1 +1773708589.810721,0.60,4,3992.50,53.25,1642.79,2084.69,0.00,0.053548,0.000000,75,0,0.000157,0.000201,67012409,32938299,0,0,97555,0,1,1 +1773708594.813741,1.05,4,3992.50,53.58,1620.62,2097.87,0.00,0.000000,0.000000,75,0,0.000016,0.000046,67012411,32938304,0,0,97558,0,1,1 +1773708599.814117,0.75,4,3992.50,53.58,1620.48,2097.61,0.00,0.000000,0.000000,75,0,0.000000,0.000020,67012411,32938306,0,0,97560,0,1,1 +1773708604.813791,0.75,4,3992.50,53.51,1620.39,2095.09,0.00,65773.667007,79475.461867,4483572,3669004,0.000000,0.000030,67012411,32938309,0,0,97563,0,1,1 +1773708609.813366,14.95,4,3992.50,55.57,1521.77,2175.88,0.00,3518735598044.721680,3518735584342.713867,11,0,40.068761,0.025111,67016863,32939986,0,0,97565,0,1,1 +1773708614.809462,0.90,4,3992.50,54.66,1557.72,2139.93,0.00,2.177091,0.000195,258,2,0.000000,0.000030,67016863,32939989,0,0,97568,0,1,1 +1773708619.812303,0.65,4,3992.50,54.30,1571.65,2126.00,0.00,65766.188927,79414.507499,4482897,3668173,0.000000,0.000020,67016863,32939991,0,0,97570,0,1,1 +1773708624.809601,0.90,4,3992.50,54.25,1573.98,2123.82,0.00,3520339434531.909180,3520339420879.651367,253,886,0.000000,0.000030,67016863,32939994,0,0,97573,0,1,1 +1773708629.814595,7.61,4,3992.50,66.19,1135.69,2591.33,0.00,0.000000,0.000000,253,886,0.000000,0.000020,67016863,32939996,0,0,97575,0,1,1 +1773708634.814434,29.18,4,3992.50,58.31,1454.51,2282.86,0.00,3518551091009.863770,3518551091000.846191,11,0,0.000000,0.000030,67016863,32939999,0,0,97578,0,1,1 +1773708639.813325,28.89,4,3992.50,94.95,42.05,3717.41,0.00,0.000000,0.000000,11,0,0.000000,0.000020,67016863,32940001,0,0,97580,0,1,1 +1773708644.815153,28.64,4,3992.50,88.76,250.78,3475.08,0.00,0.180208,0.000000,205,0,0.000000,0.000030,67016863,32940004,0,0,97583,0,1,1 +1773708649.814063,28.93,4,3992.50,79.46,623.32,3111.05,0.00,66467.364688,79500.706927,4524988,3683382,0.000000,0.000020,67016863,32940006,0,0,97585,0,1,1 +1773708654.814142,29.32,4,3992.50,66.33,1129.94,2597.03,0.00,3518381941128.572754,3518381928098.403320,75,0,0.000157,0.000210,67016875,32940021,0,0,97588,0,1,1 +1773708659.815099,25.75,4,3992.50,54.05,1625.53,2116.09,0.00,3517763680963.523438,0.000000,11,0,0.000016,0.000036,67016877,32940025,0,0,97590,0,1,1 +1773708664.812185,0.80,4,3992.50,54.04,1620.71,2115.82,0.00,2.176659,0.000195,258,2,0.000000,0.000030,67016877,32940028,0,0,97593,0,1,1 +1773708669.813947,0.70,4,3992.50,54.07,1617.23,2116.91,0.00,66734.436147,79451.169747,4543540,3689550,0.000000,0.000020,67016877,32940030,0,0,97595,0,1,1 +1773708674.809578,14.78,4,3992.50,54.06,1563.48,2116.73,0.00,3521513891627.446289,3521513878897.229492,75,0,40.101759,0.023701,67021326,32941494,0,0,97598,0,1,1 +1773708679.809705,0.90,4,3992.50,54.00,1565.96,2114.27,0.00,0.126755,0.000000,205,0,0.000000,0.000020,67021326,32941496,0,0,97600,0,1,1 +1773708684.813865,0.80,4,3992.50,54.07,1563.07,2117.15,0.00,66752.833056,79413.321315,4544483,3689757,0.000000,0.000030,67021326,32941499,0,0,97603,0,1,1 +1773708689.813417,1.00,4,3992.50,54.21,1559.93,2122.36,0.00,3518752252672.684570,3518752240000.654785,75,0,0.000308,0.000575,67021333,32941512,0,0,97605,0,1,1 +1773708694.814065,0.80,4,3992.50,54.20,1560.43,2121.91,0.00,66801.728136,79469.189227,4544599,3689831,0.001126,0.001231,67021342,32941529,0,0,97608,0,1,1 +1773708699.814218,0.65,4,3992.50,54.19,1560.62,2121.73,0.00,3518329560704.632812,3518329548033.796387,258,2,0.000000,0.000020,67021342,32941531,0,0,97610,0,1,1 +1773708704.813922,0.75,4,3992.50,54.19,1560.68,2121.62,0.00,3518645320566.147949,3518645320568.143066,205,0,0.000000,0.000030,67021342,32941534,0,0,97613,0,1,1 +1773708709.813890,0.70,4,3992.50,54.17,1561.62,2120.69,0.00,66820.421947,79490.669700,4546103,3690728,0.000000,0.000020,67021342,32941536,0,0,97615,0,1,1 +1773708714.813762,1.05,4,3992.50,54.36,1552.97,2128.36,0.00,3518527670219.875977,3518527670218.952148,4544601,3689854,0.000000,0.000030,67021342,32941539,0,0,97618,0,1,1 +1773708719.811320,8.02,4,3992.50,82.45,485.16,3228.13,0.00,3520156681587.338867,3520156668909.907715,258,2,0.000233,0.000127,67021360,32941549,0,0,97620,0,1,0 +1773708724.809532,25.50,4,3992.50,89.04,222.61,3486.10,0.00,0.000000,0.000000,258,2,0.000008,0.000038,67021361,32941553,0,0,97623,0,1,0 +1773708729.813445,25.41,4,3992.50,88.91,224.32,3480.84,0.00,3515685730570.436523,3515685730572.430664,205,0,0.000000,0.000020,67021361,32941555,0,0,97625,0,1,0 +1773708734.809542,25.41,4,3992.50,88.79,227.34,3476.44,0.00,3521185806381.962891,0.000000,11,0,0.000031,0.000055,67021363,32941560,0,0,97628,0,1,0 +1773708739.814931,25.63,4,3992.50,95.32,26.55,3731.84,0.00,1.655930,10.663702,253,886,0.000031,0.000688,67021365,32941568,0,0,97630,0,1,0 +1773708744.813914,49.29,4,3992.50,95.70,13.73,3746.87,0.00,3519152750468.159180,3519152750459.140137,11,0,0.000000,0.000030,67021365,32941571,0,0,97633,0,1,0 +1773708749.809537,76.19,4,3992.50,40.83,2098.04,1598.54,0.00,0.180431,0.000000,205,0,0.000000,0.000020,67021365,32941573,0,0,97635,0,1,1 +1773708754.814254,67.08,4,3992.50,45.31,1921.93,1773.93,0.00,71337.086815,79416.565054,4922585,3692081,0.000000,0.000030,67021365,32941576,0,0,97638,0,1,1 +1773708759.813604,65.60,4,3992.50,49.85,1744.03,1951.78,0.00,3518894605037.744629,3518894596949.771973,11,0,0.000399,0.000806,67021377,32941586,0,0,97640,0,1,1 +1773708764.814010,17.05,4,3992.50,49.99,1738.74,1957.02,0.00,0.000000,0.000000,11,0,0.005656,0.004590,67021436,32941633,0,0,97643,0,1,1 +1773708769.810649,20.52,4,3992.50,52.55,1638.23,2057.48,0.00,0.180395,0.000000,205,0,40.090745,0.025344,67025868,32943330,0,0,97645,0,1,1 +1773708774.809484,1.96,4,3992.50,51.62,1675.02,2021.09,0.00,1.995582,0.000195,258,2,0.000008,0.000038,67025869,32943334,0,0,97648,0,1,1 +1773708779.812217,1.45,4,3992.50,51.12,1694.54,2001.61,0.00,0.000000,0.000000,258,2,0.000000,0.000020,67025869,32943336,0,0,97650,0,1,1 +1773708784.814381,1.60,4,3992.50,51.00,1699.29,1996.84,0.00,3516915382620.989258,3516915382623.109863,75,0,0.000000,0.000030,67025869,32943339,0,0,97653,0,1,1 +1773708789.811673,1.35,4,3992.50,50.99,1699.87,1996.25,0.00,71484.590192,79524.398795,4923599,3691620,0.000000,0.000020,67025869,32943341,0,0,97655,0,1,1 +1773708794.812251,1.75,4,3992.50,50.83,1706.01,1990.10,0.00,3518030097836.929199,3518030089802.458496,11,0,0.000000,0.000030,67025869,32943344,0,0,97658,0,1,1 +1773708799.813330,1.55,4,3992.50,50.83,1706.02,1990.08,0.00,71430.727836,79464.178880,4923611,3691628,0.000308,0.000574,67025876,32943357,0,0,97660,0,1,1 +1773708804.809578,2.66,4,3992.50,51.51,1679.02,2016.92,0.00,3521079260949.725586,3521079252908.326172,205,0,0.000008,0.000682,67025877,32943365,0,0,97663,0,1,1 +1773708809.814229,6.65,4,3992.50,57.92,1464.12,2267.82,0.00,3515168079369.097168,0.000000,11,0,0.000000,0.000020,67025877,32943367,0,0,97665,0,1,1 +1773708814.812324,29.77,4,3992.50,51.28,1738.36,2007.79,0.00,0.000000,0.000000,11,0,0.000188,0.000295,67025891,32943387,0,0,97668,0,1,1 +1773708819.810976,28.97,4,3992.50,89.82,237.44,3516.78,0.00,0.000000,0.000000,11,0,0.000008,0.000028,67025892,32943390,0,0,97670,0,1,1 +1773708824.814542,29.17,4,3992.50,76.91,732.55,3011.32,0.00,0.000000,0.000000,11,0,0.000000,0.000030,67025892,32943393,0,0,97673,0,1,1 +1773708829.816351,29.54,4,3992.50,94.14,74.71,3685.95,0.00,0.000000,0.000000,11,0,0.000000,0.000020,67025892,32943395,0,0,97675,0,1,1 +1773708834.814132,43.67,4,3992.50,50.69,1760.29,1984.68,0.00,72301.435081,79531.245189,4974938,3707671,40.083055,0.022257,67030329,32944892,0,0,97678,0,1,1 +1773708839.811355,26.03,4,3992.50,51.59,1712.21,2019.95,0.00,3520392036362.612305,3520392029131.943359,75,0,0.000000,0.000020,67030329,32944894,0,0,97680,0,1,1 +1773708844.809546,1.10,4,3992.50,51.72,1700.49,2024.81,0.00,72438.468323,79537.913734,4985316,3711363,0.000031,0.000055,67030331,32944899,0,0,97683,0,1,1 +1773708849.813633,1.80,4,3992.50,51.66,1701.11,2022.78,0.00,3515563477619.311035,3515563470528.284668,11,0,0.000000,0.000020,67030331,32944901,0,0,97685,0,1,1 +1773708854.814034,0.90,4,3992.50,51.43,1710.18,2013.55,0.00,2.175216,0.000195,258,2,0.000000,0.000030,67030331,32944904,0,0,97688,0,1,1 +1773708859.814193,1.20,4,3992.50,51.32,1714.25,2009.21,0.00,3518325196665.403320,3518325196667.578613,11,0,0.000000,0.000020,67030331,32944906,0,0,97690,0,1,1 +1773708864.813694,1.60,4,3992.50,51.31,1704.04,2008.98,0.00,72414.708747,79506.437945,4984092,3710496,0.000000,0.000030,67030331,32944909,0,0,97693,0,1,1 +1773708869.811364,1.40,4,3992.50,51.20,1706.75,2004.71,0.00,3520077748266.223145,3520077741169.718262,258,2,0.000000,0.000664,67030331,32944915,0,0,97695,0,1,1 +1773708874.809487,1.81,4,3992.50,51.31,1684.87,2008.83,0.00,3519758007224.786621,3519758007226.782715,205,0,0.000000,0.000030,67030331,32944918,0,0,97698,0,1,1 +1773708879.813538,2.11,4,3992.50,50.62,1701.86,1981.93,0.00,3515589031226.537598,0.000000,75,0,0.000157,0.000200,67030343,32944932,0,0,97700,0,1,1 +1773708884.814338,1.60,4,3992.50,50.62,1701.86,1981.93,0.00,3517874662028.066406,0.000000,11,0,0.000016,0.000046,67030345,32944937,0,0,97703,0,1,1 +1773708889.811949,1.45,4,3992.50,50.63,1701.62,1982.17,0.00,1.658507,10.680298,253,887,0.000000,0.000020,67030345,32944939,0,0,97705,0,1,1 +1773708894.813676,1.40,4,3992.50,50.80,1694.94,1988.99,0.00,3517222245656.627441,3517222245647.433105,205,0,0.000000,0.000030,67030345,32944942,0,0,97708,0,1,1 +1773708899.812682,18.20,4,3992.50,54.27,1558.92,2124.82,0.00,3519136554221.548340,0.000000,11,0,40.074224,0.024376,67034756,32946528,0,0,97710,0,1,1 +1773708904.814090,1.15,4,3992.50,52.64,1622.75,2060.98,0.00,0.180223,0.000000,205,0,0.000000,0.000030,67034756,32946531,0,0,97713,0,1,1 +1773708909.814275,1.05,4,3992.50,51.57,1664.58,2019.15,0.00,1.477387,10.674800,253,887,0.000000,0.000020,67034756,32946533,0,0,97715,0,1,1 +1773708914.809473,1.35,4,3992.50,51.31,1674.76,2008.96,0.00,72531.461784,79564.889305,4995460,3711164,0.000000,0.000030,67034756,32946536,0,0,97718,0,1,1 +1773708919.812559,0.85,4,3992.50,51.32,1674.48,2009.25,0.00,3516267022998.932617,3516267015967.401367,205,0,0.000000,0.000020,67034756,32946538,0,0,97720,0,1,1 +1773708924.813773,1.40,4,3992.50,51.49,1668.01,2015.82,0.00,1.477083,10.672603,253,887,0.000000,0.000030,67034756,32946541,0,0,97723,0,1,1 +1773708929.813880,0.95,4,3992.50,51.51,1667.27,2016.55,0.00,3518361832201.375000,3518361832192.304688,75,0,0.000000,0.000020,67034756,32946543,0,0,97725,0,1,1 +1773708934.810877,1.10,4,3992.50,51.19,1679.46,2004.34,0.00,0.000000,0.000000,75,0,0.000000,0.000674,67034756,32946550,0,0,97728,0,1,1 +1773708939.813745,1.10,4,3992.50,51.20,1679.14,2004.68,0.00,72434.157598,79464.429864,4997083,3712165,0.000000,0.000020,67034756,32946552,0,0,97730,0,1,1 +1773708944.812648,0.95,4,3992.50,51.21,1678.70,2005.13,0.00,3519208940454.941895,3519208933418.968750,205,0,0.000157,0.000247,67034768,32946568,0,0,97733,0,1,1 +1773708949.809623,1.15,4,3992.50,51.19,1679.59,2004.23,0.00,3520567211191.319336,0.000000,11,0,0.000016,0.000036,67034770,32946572,0,0,97735,0,1,1 +1773708954.811475,1.45,4,3992.50,51.35,1681.82,2010.53,0.00,1.657101,10.671243,253,887,0.000000,0.000030,67034770,32946575,0,0,97738,0,1,1 +1773708959.813750,1.30,4,3992.50,51.35,1681.87,2010.47,0.00,0.000000,0.000000,253,887,0.000000,0.000020,67034770,32946577,0,0,97740,0,1,1 +1773708964.812897,17.78,4,3992.50,52.85,1623.24,2069.08,0.00,0.517764,3519037872743.215820,258,2,40.071388,0.023107,67039103,32948113,0,0,97743,0,1,1 +1773708969.814234,1.40,4,3992.50,52.33,1643.32,2049.00,0.00,72444.797061,79478.238608,4995603,3711447,0.000000,0.000020,67039103,32948115,0,0,97745,0,1,1 +1773708974.813829,1.00,4,3992.50,51.95,1658.35,2033.97,0.00,9.726960,10.680943,4997106,3712338,0.000000,0.000030,67039103,32948118,0,0,97748,0,1,1 +1773708979.814008,0.85,4,3992.50,51.56,1673.70,2018.62,0.00,3518311417290.572754,3518311410265.740234,253,887,0.000000,0.000020,67039103,32948120,0,0,97750,0,1,1 +1773708984.809507,1.06,4,3992.50,51.69,1668.52,2023.81,0.00,3521607251968.582520,3521607251959.557129,11,0,0.000000,0.000030,67039103,32948123,0,0,97753,0,1,1 +1773708989.814225,1.05,4,3992.50,51.69,1668.38,2023.93,0.00,0.053465,0.000000,75,0,0.000307,0.000574,67039110,32948136,0,0,97755,0,1,1 +1773708994.809667,1.30,4,3992.50,51.41,1679.63,2012.68,0.00,2.123811,0.000195,258,2,0.000221,0.000578,67039119,32948152,0,0,97758,0,1,1 +1773708999.810811,0.80,4,3992.50,51.44,1678.26,2014.05,0.00,72447.594153,79481.441604,4995603,3711524,0.000000,0.000342,67039119,32948156,0,0,97760,0,1,1 +1773709004.811316,0.85,4,3992.50,51.47,1677.31,2015.01,0.00,3518082287861.533691,3518082280828.780762,205,0,0.000000,0.000352,67039119,32948161,0,0,97763,0,1,1 +1773709009.813498,1.05,4,3992.50,51.40,1679.91,2012.41,0.00,0.000000,0.000000,205,0,0.000157,0.000200,67039131,32948175,0,0,97765,0,1,1 +1773709014.809450,1.30,4,3992.50,51.37,1680.55,2011.20,0.00,72524.885791,79564.086870,4995603,3711541,0.000000,0.000030,67039131,32948178,0,0,97768,0,1,1 +1773709019.810559,0.90,4,3992.50,51.40,1676.78,2012.59,0.00,3517657396298.823242,3517657389276.075195,253,887,0.000000,0.000020,67039131,32948180,0,0,97770,0,1,1 +1773709024.814313,0.95,4,3992.50,51.42,1676.06,2013.31,0.00,3515797254382.481934,3515797254373.291016,205,0,0.000000,0.000030,67039131,32948183,0,0,97773,0,1,1 +1773709029.814173,17.80,4,3992.50,52.38,1638.68,2050.69,0.00,0.000000,0.000000,205,0,40.065979,0.024774,67043538,32949920,0,0,97775,0,1,1 +1773709034.810641,3.31,4,3992.50,51.99,1653.94,2035.40,0.00,1.478486,10.682743,253,887,0.002945,0.001460,67043595,32949962,0,0,97778,0,1,1 +1773709039.809450,0.95,4,3992.50,51.78,1661.97,2027.38,0.00,3519275486225.439453,3519275486216.239258,205,0,0.000031,0.000045,67043597,32949966,0,0,97780,0,1,1 +1773709044.809579,2.11,4,3992.50,51.85,1659.36,2029.98,0.00,0.000000,0.000000,205,0,0.000000,0.000030,67043597,32949969,0,0,97783,0,1,1 +1773709049.814083,1.40,4,3992.50,51.76,1663.00,2026.34,0.00,1.476112,10.665588,253,887,0.000000,0.000020,67043597,32949971,0,0,97785,0,1,1 +1773709054.814304,0.75,4,3992.50,51.71,1664.79,2024.55,0.00,0.517653,3518281756407.743164,258,2,0.000000,0.000030,67043597,32949974,0,0,97788,0,1,1 +1773709059.811536,1.00,4,3992.50,51.74,1663.75,2025.60,0.00,3520386070672.781738,10.680913,253,887,0.001021,0.000401,67043616,32949987,0,0,97790,0,1,1 +1773709064.810971,2.25,4,3992.50,51.74,1663.43,2025.88,0.00,72482.900037,79508.985126,4997134,3712720,0.002405,0.002460,67043641,32950005,0,0,97793,0,1,1 +1773709069.810576,1.20,4,3992.50,51.75,1663.24,2026.11,0.00,3518714844644.435547,3518714837607.396484,258,2,0.000213,0.001204,67043649,32950023,0,0,97795,0,1,1 +1773709074.813734,1.30,4,3992.50,51.75,1663.20,2026.12,0.00,72418.719861,79449.850505,4995631,3711848,0.000031,0.000055,67043651,32950028,0,0,97798,0,1,1 +1773709079.813378,1.05,4,3992.50,51.75,1663.23,2026.12,0.00,3518688405957.804199,3518688398921.729492,258,2,0.000076,0.000113,67043657,32950036,0,0,97800,0,1,1 +1773709084.813668,0.95,4,3992.50,51.74,1663.70,2025.64,0.00,3518232527963.778809,3518232527965.773926,205,0,0.000000,0.000030,67043657,32950039,0,0,97803,0,1,1 +1773709089.813686,0.95,4,3992.50,51.73,1663.91,2025.41,0.00,3518424973208.333008,0.000000,11,0,0.000000,0.000020,67043657,32950041,0,0,97805,0,1,1 +1773709094.813193,16.46,4,3992.50,51.37,1678.23,2011.11,0.00,0.180291,0.000000,205,0,40.067736,0.028171,67048112,32952053,0,0,97808,0,1,1 +1773709099.813722,2.20,4,3992.50,51.46,1674.48,2014.87,0.00,3518064889964.875977,0.000000,11,0,0.003400,0.001983,67048176,32952103,0,0,97810,0,1,1 +1773709104.813701,1.30,4,3992.50,51.56,1674.79,2018.74,0.00,72467.102217,79500.514361,4995641,3711952,0.000025,0.000061,67048178,32952108,0,0,97813,0,1,1 +1773709109.810685,0.75,4,3992.50,51.52,1675.91,2016.96,0.00,3520560456839.192871,3520560449801.512695,75,0,0.000025,0.000051,67048180,32952112,0,0,97815,0,1,1 +1773709114.813641,0.85,4,3992.50,51.47,1677.61,2015.26,0.00,0.000000,0.000000,75,0,0.000031,0.000055,67048182,32952117,0,0,97818,0,1,1 +1773709119.813697,0.75,4,3992.50,51.51,1676.14,2016.73,0.00,3518397644501.634277,0.000000,11,0,0.000008,0.000028,67048183,32952120,0,0,97820,0,1,1 +1773709124.809570,0.85,4,3992.50,51.51,1676.14,2016.73,0.00,72526.657027,79565.977591,4995641,3712083,0.000000,0.000030,67048183,32952123,0,0,97823,0,1,1 +1773709129.813719,0.80,4,3992.50,51.52,1675.91,2016.96,0.00,3515520172926.803223,3515520165899.070801,75,0,0.000000,0.000020,67048183,32952125,0,0,97825,0,1,1 +1773709134.811244,1.20,4,3992.50,51.65,1673.47,2022.07,0.00,3520179684450.266602,0.000000,11,0,0.000000,0.000674,67048183,32952132,0,0,97828,0,1,1 +1773709139.814201,0.85,4,3992.50,51.55,1676.65,2018.18,0.00,0.180167,0.000000,205,0,0.000056,0.000076,67048187,32952138,0,0,97830,0,1,1 +1773709144.813597,0.95,4,3992.50,51.56,1676.17,2018.65,0.00,1.477620,10.676484,253,887,0.000148,0.000195,67048199,32952153,0,0,97833,0,1,1 +1773709149.813499,1.10,4,3992.50,51.53,1677.27,2017.55,0.00,3518506728241.180176,3518506728232.162598,11,0,0.000000,0.000020,67048199,32952155,0,0,97835,0,1,1 +1773709154.813990,1.05,4,3992.50,51.36,1684.16,2010.67,0.00,0.180256,0.000000,205,0,0.000000,0.000063,67048199,32952159,0,0,97838,0,1,1 +1773709159.810093,16.78,4,3992.50,51.42,1681.80,2013.04,0.00,1.996673,0.000195,258,2,40.099339,0.029513,67052759,32954265,0,0,97840,0,1,1 +1773709164.813560,2.45,4,3992.50,51.52,1678.05,2017.21,0.00,3515999799682.291504,3515999799684.465332,11,0,0.003083,0.001437,67052815,32954305,0,0,97843,0,1,1 +1773709169.813728,0.85,4,3992.50,51.49,1679.29,2016.01,0.00,72474.077933,79508.559063,4997147,3713182,0.000000,0.000020,67052815,32954307,0,0,97845,0,1,1 +1773709174.811653,0.95,4,3992.50,51.51,1678.55,2016.75,0.00,3519897736275.996094,3519897729238.177246,205,0,0.000000,0.000030,67052815,32954310,0,0,97848,0,1,1 +1773709179.813757,0.90,4,3992.50,51.52,1678.30,2016.99,0.00,3516957152329.993164,0.000000,11,0,0.000000,0.000020,67052815,32954312,0,0,97850,0,1,1 +1773709184.809567,1.10,4,3992.50,51.52,1678.30,2016.99,0.00,1.659105,10.684148,253,887,0.000000,0.000030,67052815,32954315,0,0,97853,0,1,1 +1773709189.810612,0.85,4,3992.50,51.44,1681.32,2013.98,0.00,3517702608452.953613,3517702608443.884766,75,0,0.000000,0.000020,67052815,32954317,0,0,97855,0,1,1 +1773709194.814074,1.15,4,3992.50,51.46,1680.33,2014.96,0.00,0.126670,0.000000,205,0,0.000000,0.000030,67052815,32954320,0,0,97858,0,1,1 +1773709199.813951,0.95,4,3992.50,51.48,1679.65,2015.66,0.00,1.995166,0.000195,258,2,0.000000,0.000664,67052815,32954326,0,0,97860,0,1,1 +1773709204.812865,2.31,4,3992.50,51.49,1678.99,2015.84,0.00,72493.429651,79528.625767,5001249,3713259,0.000056,0.000086,67052819,32954333,0,0,97863,0,1,1 +1773709209.813871,1.50,4,3992.50,51.34,1684.72,2010.12,0.00,3517729889070.322266,3517729882040.062988,205,0,0.000117,0.000160,67052829,32954345,0,0,97865,0,1,1 +1773709214.814101,1.30,4,3992.50,51.35,1684.23,2010.60,0.00,3518274602674.797363,0.000000,75,0,0.000000,0.000030,67052829,32954348,0,0,97868,0,1,1 +1773709219.813900,1.55,4,3992.50,51.38,1683.26,2011.57,0.00,1.604264,10.675626,253,887,0.000000,0.000020,67052829,32954350,0,0,97870,0,1,1 +1773709224.812566,17.20,4,3992.50,53.91,1584.00,2110.80,0.00,0.517814,3519376385431.489746,258,2,40.075148,0.024006,67057194,32955960,0,0,97873,0,1,1 +1773709229.810735,2.41,4,3992.50,53.52,1599.23,2095.56,0.00,72494.567849,79530.071430,4999752,3712636,0.000855,0.000464,67057212,32955974,0,0,97875,0,1,1 +1773709234.811560,1.50,4,3992.50,51.98,1659.79,2035.01,0.00,3517856785729.056641,3517856778699.463867,11,0,0.000000,0.000030,67057212,32955977,0,0,97878,0,1,1 +1773709239.810220,1.25,4,3992.50,52.06,1656.66,2038.14,0.00,0.180322,0.000000,205,0,0.000000,0.000020,67057212,32955979,0,0,97880,0,1,1 +1773709244.809579,1.95,4,3992.50,52.06,1656.66,2038.11,0.00,0.000000,0.000000,205,0,0.000000,0.000030,67057212,32955982,0,0,97883,0,1,1 +1773709249.809636,0.85,4,3992.50,52.06,1656.69,2038.11,0.00,0.000000,0.000000,205,0,0.000000,0.000020,67057212,32955984,0,0,97885,0,1,1 +1773709254.813201,1.35,4,3992.50,52.07,1662.24,2038.77,0.00,72428.107106,79455.086206,5001257,3713591,0.000000,0.000030,67057212,32955987,0,0,97888,0,1,1 +1773709259.813483,1.10,4,3992.50,52.12,1660.20,2040.66,0.00,3518239070801.943848,3518239063770.529785,11,0,0.000000,0.000020,67057212,32955989,0,0,97890,0,1,1 +1773709264.814023,1.95,4,3992.50,52.12,1660.20,2040.66,0.00,0.053510,0.000000,75,0,0.000000,0.000674,67057212,32955996,0,0,97893,0,1,1 +1773709269.813890,1.05,4,3992.50,52.12,1660.20,2040.66,0.00,3518531228963.528320,0.000000,11,0,0.000119,0.000169,67057221,32956008,0,0,97895,0,1,1 +1773709274.814067,1.25,4,3992.50,52.13,1659.99,2040.88,0.00,0.180267,0.000000,205,0,0.000054,0.000077,67057226,32956015,0,0,97898,0,1,1 +1773709279.810663,0.90,4,3992.50,52.15,1659.25,2041.62,0.00,72529.140596,79565.982167,5001257,3713637,0.000000,0.000020,67057226,32956017,0,0,97900,0,1,1 +1773709284.813488,2.70,4,3992.50,52.79,1636.79,2066.68,0.00,3516450202115.686523,3516450202114.763672,4999754,3712761,0.000000,0.000030,67057226,32956020,0,0,97903,0,1,1 +1773709289.813750,18.81,4,3992.50,56.97,1472.78,2230.59,0.00,9.745973,10.692115,5001258,3713689,32.449853,0.018990,67060742,32957250,0,0,97905,0,1,1 +1773709294.810906,3.06,4,3992.50,53.03,1627.27,2076.09,0.00,3520439418710.679199,3520439411674.784668,11,0,7.618871,0.003887,67061597,32957424,0,0,97908,0,1,1 +1773709299.811648,2.10,4,3992.50,52.67,1641.16,2062.20,0.00,1.657469,10.673612,253,887,0.000000,0.000020,67061597,32957426,0,0,97910,0,1,1 +1773709304.814065,1.55,4,3992.50,52.39,1652.36,2051.00,0.00,0.517426,3516737765744.308105,258,2,0.000000,0.000030,67061597,32957429,0,0,97913,0,1,1 +1773709309.813897,0.80,4,3992.50,52.36,1653.29,2050.07,0.00,72480.198130,79514.647195,5001258,3713837,0.000000,0.000020,67061597,32957431,0,0,97915,0,1,1 +1773709314.809560,1.25,4,3992.50,52.37,1651.04,2050.59,0.00,3521491815037.543945,3521491807999.346191,75,0,0.000000,0.000030,67061597,32957434,0,0,97918,0,1,1 +1773709319.814167,2.15,4,3992.50,52.35,1649.47,2049.68,0.00,0.126641,0.000000,205,0,0.000000,0.000020,67061597,32957436,0,0,97920,0,1,1 +1773709324.814105,0.75,4,3992.50,52.38,1648.50,2050.65,0.00,3518480685341.455566,0.000000,11,0,0.000000,0.000030,67061597,32957439,0,0,97923,0,1,1 +1773709329.809459,0.90,4,3992.50,52.40,1647.76,2051.38,0.00,0.180441,0.000000,205,0,0.000000,0.000664,67061597,32957445,0,0,97925,0,1,1 +1773709334.809556,0.70,4,3992.50,52.41,1647.28,2051.87,0.00,3518368835014.101074,0.000000,11,0,0.000062,0.000080,67061601,32957452,0,0,97928,0,1,1 +1773709339.812487,1.20,4,3992.50,52.41,1647.28,2051.87,0.00,72427.768196,79454.884581,4999755,3713034,0.000165,0.000208,67061614,32957467,0,0,97930,0,1,1 +1773709344.813573,1.10,4,3992.50,52.29,1652.53,2047.35,0.00,3517673501557.350586,3517673494527.640625,11,0,0.000000,0.000030,67061614,32957470,0,0,97933,0,1,1 +1773709349.810561,0.75,4,3992.50,52.29,1652.45,2047.24,0.00,1.658714,10.681629,253,887,0.000000,0.000020,67061614,32957472,0,0,97935,0,1,1 +1773709354.810674,20.30,4,3992.50,57.25,1458.39,2241.29,0.00,72466.978830,79489.064289,4999757,3713094,25.240540,0.016637,67064416,32958599,0,0,97938,0,1,1 +1773709359.809662,1.80,4,3992.50,53.54,1603.29,2096.39,0.00,0.017972,0.107737,4999759,3713212,14.828206,0.007098,67066022,32959040,0,0,97940,0,1,1 +1773709364.811406,1.10,4,3992.50,52.88,1629.43,2070.25,0.00,3517209911530.582520,3517209904501.684570,11,0,0.001065,0.000616,67066041,32959054,0,0,97943,0,1,1 +1773709369.814005,0.90,4,3992.50,52.54,1642.71,2056.97,0.00,72442.365576,79471.031690,5001262,3714111,0.000205,0.000552,67066048,32959067,0,0,97945,0,1,1 +1773709374.809467,1.10,4,3992.50,52.48,1647.12,2054.67,0.00,3521633381349.639160,3521633381348.762695,4999759,3713250,0.000000,0.000030,67066048,32959070,0,0,97948,0,1,1 +1773709379.811241,1.35,4,3992.50,52.50,1646.39,2055.41,0.00,9.722722,10.675509,5001262,3714141,0.000000,0.000020,67066048,32959072,0,0,97950,0,1,1 +1773709384.809456,1.00,4,3992.50,52.52,1645.68,2056.14,0.00,3519693550146.944824,3519693543111.857422,205,0,0.000000,0.000030,67066048,32959075,0,0,97953,0,1,1 +1773709389.812190,0.90,4,3992.50,52.52,1645.68,2056.14,0.00,3516514316963.851562,0.000000,11,0,0.000000,0.000020,67066048,32959077,0,0,97955,0,1,1 +1773709394.809546,1.25,4,3992.50,52.53,1644.97,2056.85,0.00,72518.367463,79554.557151,5001264,3714214,0.000000,0.000674,67066048,32959084,0,0,97958,0,1,1 +1773709399.809493,1.05,4,3992.50,52.50,1646.18,2055.64,0.00,3518474661628.856934,3518474661627.911621,4999761,3713327,0.000339,0.000600,67066057,32959099,0,0,97960,0,1,1 +1773709404.809871,1.00,4,3992.50,52.54,1644.73,2057.09,0.00,3518170739822.512695,3518170732800.538086,253,887,0.000134,0.000193,67066068,32959113,0,0,97963,0,1,1 +1773709409.813609,2.05,4,3992.50,52.58,1641.44,2058.77,0.00,3515808867520.032715,3515808867510.968750,75,0,0.000050,0.000082,67066072,32959119,0,0,97965,0,1,1 +1773709414.810649,0.90,4,3992.50,52.39,1648.84,2051.37,0.00,72522.906786,79559.648808,5001264,3714243,0.000031,0.000055,67066074,32959124,0,0,97968,0,1,1 +1773709419.813272,19.11,4,3992.50,57.09,1465.01,2235.18,0.00,3516591604515.166992,3516591597484.159668,258,2,39.641235,0.021636,67070358,32960548,0,0,97970,0,1,1 +1773709424.814461,1.45,4,3992.50,52.14,1658.73,2041.45,0.00,3517601501337.458496,3517601501339.633301,11,0,0.403802,0.001742,67070475,32960612,0,0,97973,0,1,1 +1773709429.813917,1.90,4,3992.50,52.17,1657.48,2042.71,0.00,0.053521,0.000000,75,0,0.000000,0.000020,67070475,32960614,0,0,97975,0,1,1 +1773709434.809458,2.11,4,3992.50,52.23,1660.77,2044.72,0.00,0.000000,0.000000,75,0,0.000000,0.000030,67070475,32960617,0,0,97978,0,1,1 +1773709439.809502,0.75,4,3992.50,52.24,1656.00,2045.45,0.00,3518405726188.708496,0.000000,11,0,0.000000,0.000020,67070475,32960619,0,0,97980,0,1,1 +1773709444.810819,0.70,4,3992.50,52.25,1655.78,2045.67,0.00,0.000000,0.000000,11,0,0.000031,0.000055,67070477,32960624,0,0,97983,0,1,1 +1773709449.811023,1.75,4,3992.50,52.25,1655.78,2045.67,0.00,2.175302,0.000195,258,2,0.000000,0.000020,67070477,32960626,0,0,97985,0,1,1 +1773709454.809463,0.95,4,3992.50,52.08,1662.28,2039.18,0.00,3519535055339.168945,3519535055341.291504,75,0,0.000000,0.000030,67070477,32960629,0,0,97988,0,1,1 +1773709459.814106,1.20,4,3992.50,52.09,1662.12,2039.33,0.00,1.602711,10.665291,253,887,0.000000,0.000663,67070477,32960635,0,0,97990,0,1,1 +1773709464.814206,1.05,4,3992.50,52.18,1657.86,2043.02,0.00,72467.216324,79489.908317,4999762,3713599,0.000056,0.000086,67070481,32960642,0,0,97993,0,1,1 +1773709469.813680,1.10,4,3992.50,52.23,1655.92,2044.95,0.00,3518806907421.709961,3518806900389.122070,11,0,0.000109,0.000152,67070490,32960653,0,0,97995,0,1,1 +1773709474.813892,0.85,4,3992.50,52.21,1656.60,2044.26,0.00,1.657645,10.674744,253,887,0.000000,0.000030,67070490,32960656,0,0,97998,0,1,1 +1773709479.810766,1.65,4,3992.50,52.25,1655.14,2045.72,0.00,3520637932192.160156,3520637932182.956543,205,0,0.000000,0.000020,67070490,32960658,0,0,98000,0,1,1 diff --git a/evaluation/data/pipeline_batch-out_run3/pipeline.duckdb b/evaluation/data/pipeline_batch-out_run3/pipeline.duckdb new file mode 100644 index 0000000..72eb806 Binary files /dev/null and b/evaluation/data/pipeline_batch-out_run3/pipeline.duckdb differ diff --git a/evaluation/data/pipeline_full_cycle_run1/anomalies.jsonl b/evaluation/data/pipeline_full_cycle_run1/anomalies.jsonl new file mode 100644 index 0000000..976a310 --- /dev/null +++ b/evaluation/data/pipeline_full_cycle_run1/anomalies.jsonl @@ -0,0 +1,778 @@ +{"timestamp":"2026-03-21T11:19:19.324235823Z","score":0.5,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=0.50 RRCF-fast:w=0.20,s=0.50 RRCF-mid:w=0.20,s=0.50 RRCF-slow:w=0.20,s=0.50 COPOD:w=0.20,s=0.50"} +{"timestamp":"2026-03-21T11:19:49.299339669Z","score":1,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=1.00 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-21T11:20:19.322920065Z","score":0.8999999999999999,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=0.50 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-21T11:20:49.310096013Z","score":0.8655967993134869,"is_anomaly":false,"confidence":0.9617742214594299,"method":"SEAD","details":"MAD!:w=0.20,s=0.33 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-21T11:21:19.289787595Z","score":0.6469351383571175,"is_anomaly":false,"confidence":0.7188168203967973,"method":"SEAD","details":"MAD!:w=0.20,s=0.00 RRCF-fast:w=0.20,s=0.75 RRCF-mid:w=0.20,s=0.75 RRCF-slow:w=0.20,s=0.75 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-21T11:21:50.017261064Z","score":0.8761254120395848,"is_anomaly":false,"confidence":0.9734726800439832,"method":"SEAD","details":"MAD!:w=0.21,s=0.40 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-21T11:22:19.28541014Z","score":0.6962374732767487,"is_anomaly":false,"confidence":0.7735971925297208,"method":"SEAD","details":"MAD!:w=0.21,s=0.33 RRCF-fast:w=0.20,s=0.83 RRCF-mid:w=0.20,s=0.83 RRCF-slow:w=0.20,s=0.83 COPOD!:w=0.20,s=0.67"} +{"timestamp":"2026-03-21T11:22:49.261958997Z","score":0.7071142040958375,"is_anomaly":false,"confidence":0.8070924486138393,"method":"SEAD","details":"MAD!:w=0.21,s=0.14 RRCF-fast:w=0.20,s=0.86 RRCF-mid:w=0.20,s=0.86 RRCF-slow:w=0.20,s=0.86 COPOD!:w=0.20,s=0.86"} +{"timestamp":"2026-03-21T11:23:19.599324876Z","score":0.9754214179357128,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.21,s=1.00 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=0.88"} +{"timestamp":"2026-03-21T11:23:49.307216453Z","score":0.8013246078035566,"is_anomaly":false,"confidence":0.8903606753372852,"method":"SEAD","details":"MAD!:w=0.21,s=0.89 RRCF-fast:w=0.20,s=0.89 RRCF-mid:w=0.20,s=0.89 RRCF-slow:w=0.20,s=0.89 COPOD!:w=0.20,s=0.44"} +{"timestamp":"2026-03-21T11:24:19.583917422Z","score":0.777441035348118,"is_anomaly":false,"confidence":0.8638233726090201,"method":"SEAD","details":"MAD!:w=0.21,s=0.60 RRCF-fast:w=0.20,s=0.80 RRCF-mid:w=0.20,s=0.80 RRCF-slow:w=0.20,s=0.80 COPOD!:w=0.20,s=0.90"} +{"timestamp":"2026-03-21T11:24:49.308705071Z","score":0.6155324283267232,"is_anomaly":false,"confidence":0.6839249203630258,"method":"SEAD","details":"MAD!:w=0.21,s=0.45 RRCF-fast:w=0.20,s=0.73 RRCF-mid:w=0.20,s=0.64 RRCF-slow:w=0.20,s=0.64 COPOD!:w=0.20,s=0.64"} +{"timestamp":"2026-03-21T11:25:19.262805302Z","score":0.5408177440168984,"is_anomaly":false,"confidence":0.6009086044632205,"method":"SEAD","details":"MAD!:w=0.21,s=0.00 RRCF-fast:w=0.20,s=0.67 RRCF-mid:w=0.20,s=0.67 RRCF-slow:w=0.20,s=0.67 COPOD!:w=0.20,s=0.75"} +{"timestamp":"2026-03-21T11:25:49.307159783Z","score":0.5786592471867952,"is_anomaly":false,"confidence":0.6429547190964392,"method":"SEAD","details":"MAD!:w=0.22,s=0.31 RRCF-fast:w=0.20,s=0.77 RRCF-mid:w=0.20,s=0.77 RRCF-slow:w=0.20,s=0.77 COPOD!:w=0.20,s=0.31"} +{"timestamp":"2026-03-21T11:26:19.264987583Z","score":0.49044072587330145,"is_anomaly":false,"confidence":0.5597837012073136,"method":"SEAD","details":"MAD!:w=0.22,s=0.00 RRCF-fast:w=0.19,s=0.43 RRCF-mid:w=0.20,s=0.43 RRCF-slow:w=0.20,s=0.64 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-21T11:26:49.263388995Z","score":0.6164967350682253,"is_anomaly":false,"confidence":0.7036626567343203,"method":"SEAD","details":"MAD!:w=0.22,s=0.20 RRCF-fast:w=0.19,s=0.73 RRCF-mid:w=0.20,s=0.60 RRCF-slow:w=0.19,s=0.67 COPOD!:w=0.20,s=0.93"} +{"timestamp":"2026-03-21T11:27:19.403087102Z","score":0.8942881628845681,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.22,s=0.69 RRCF-fast:w=0.19,s=0.94 RRCF-mid:w=0.20,s=0.94 RRCF-slow:w=0.19,s=1.00 COPOD!:w=0.19,s=0.94"} +{"timestamp":"2026-03-21T11:27:51.661836929Z","score":0.7924663827629439,"is_anomaly":false,"confidence":0.8861420911653428,"method":"SEAD","details":"MAD!:w=0.22,s=0.53 RRCF-fast:w=0.19,s=0.88 RRCF-mid:w=0.20,s=0.88 RRCF-slow:w=0.19,s=0.82 COPOD!:w=0.19,s=0.88"} +{"timestamp":"2026-03-21T11:28:19.309432666Z","score":0.5199235753709232,"is_anomaly":false,"confidence":0.5813825978573679,"method":"SEAD","details":"MAD!:w=0.22,s=0.44 RRCF-fast:w=0.19,s=0.44 RRCF-mid:w=0.19,s=0.56 RRCF-slow:w=0.19,s=0.61 COPOD!:w=0.19,s=0.56"} +{"timestamp":"2026-03-21T11:28:49.366236292Z","score":0.5812491421570731,"is_anomaly":false,"confidence":0.6499573250329368,"method":"SEAD","details":"MAD!:w=0.22,s=0.32 RRCF-fast:w=0.19,s=0.74 RRCF-mid:w=0.19,s=0.79 RRCF-slow:w=0.19,s=0.79 COPOD!:w=0.19,s=0.32"} +{"timestamp":"2026-03-21T11:29:19.308808927Z","score":0.7100694099647374,"is_anomaly":false,"confidence":0.7940051534109268,"method":"SEAD","details":"MAD!:w=0.23,s=0.40 RRCF-fast:w=0.19,s=0.80 RRCF-mid:w=0.19,s=0.75 RRCF-slow:w=0.19,s=0.75 COPOD!:w=0.19,s=0.90"} +{"timestamp":"2026-03-21T11:29:49.318740881Z","score":0.6661991831881244,"is_anomaly":false,"confidence":0.7603924895149878,"method":"SEAD","details":"MAD!:w=0.23,s=0.38 RRCF-fast:w=0.19,s=0.81 RRCF-mid:w=0.19,s=0.76 RRCF-slow:w=0.19,s=0.76 COPOD!:w=0.19,s=0.67"} +{"timestamp":"2026-03-21T11:30:19.261782915Z","score":0.5448405593435577,"is_anomaly":false,"confidence":0.6218750784493178,"method":"SEAD","details":"MAD!:w=0.23,s=0.27 RRCF-fast:w=0.19,s=0.55 RRCF-mid:w=0.19,s=0.59 RRCF-slow:w=0.19,s=0.59 COPOD!:w=0.19,s=0.77"} +{"timestamp":"2026-03-21T11:30:50.661818931Z","score":0.8897525592865825,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.23,s=0.74 RRCF-fast!:w=0.19,s=0.91 RRCF-mid!:w=0.19,s=1.00 RRCF-slow!:w=0.19,s=1.00 COPOD!:w=0.19,s=0.83"} +{"timestamp":"2026-03-21T11:31:21.03200608Z","score":0.8203943922569517,"is_anomaly":false,"confidence":0.922047802722542,"method":"SEAD","details":"MAD!:w=0.23,s=0.71 RRCF-fast!:w=0.19,s=0.96 RRCF-mid!:w=0.19,s=0.88 RRCF-slow!:w=0.19,s=0.88 COPOD!:w=0.19,s=0.71"} +{"timestamp":"2026-03-21T11:31:49.313426653Z","score":0.6517730567798613,"is_anomaly":false,"confidence":0.7325329384862497,"method":"SEAD","details":"MAD!:w=0.23,s=0.56 RRCF-fast:w=0.19,s=0.76 RRCF-mid:w=0.19,s=0.76 RRCF-slow:w=0.19,s=0.76 COPOD!:w=0.19,s=0.44"} +{"timestamp":"2026-03-21T11:32:19.264981785Z","score":0.4908221830409314,"is_anomaly":false,"confidence":0.5516389673939014,"method":"SEAD","details":"MAD!:w=0.23,s=0.46 RRCF-fast:w=0.19,s=0.54 RRCF-mid:w=0.19,s=0.50 RRCF-slow:w=0.19,s=0.54 COPOD!:w=0.19,s=0.42"} +{"timestamp":"2026-03-21T11:32:49.264013546Z","score":0.3864518894028379,"is_anomaly":false,"confidence":0.4410919762082844,"method":"SEAD","details":"MAD!:w=0.23,s=0.07 RRCF-fast:w=0.19,s=0.44 RRCF-mid:w=0.19,s=0.59 RRCF-slow:w=0.19,s=0.59 COPOD!:w=0.19,s=0.30"} +{"timestamp":"2026-03-21T11:33:19.306124284Z","score":0.7743324640963498,"is_anomaly":false,"confidence":0.8838146382419554,"method":"SEAD","details":"MAD!:w=0.23,s=0.50 RRCF-fast:w=0.19,s=0.75 RRCF-mid:w=0.19,s=0.86 RRCF-slow:w=0.19,s=0.86 COPOD!:w=0.20,s=0.96"} +{"timestamp":"2026-03-21T11:33:49.26828206Z","score":0.5751630213654645,"is_anomaly":false,"confidence":0.656484806240819,"method":"SEAD","details":"MAD!:w=0.23,s=0.45 RRCF-fast:w=0.19,s=0.41 RRCF-mid:w=0.19,s=0.52 RRCF-slow:w=0.19,s=0.52 COPOD!:w=0.19,s=1.00"} +{"timestamp":"2026-03-21T11:34:19.268979849Z","score":0.5423101871999465,"is_anomaly":false,"confidence":0.6189869392527608,"method":"SEAD","details":"MAD!:w=0.24,s=0.00 RRCF-fast:w=0.19,s=0.60 RRCF-mid:w=0.19,s=0.60 RRCF-slow:w=0.19,s=0.63 COPOD!:w=0.19,s=1.00"} +{"timestamp":"2026-03-21T11:34:49.345318346Z","score":0.8629275140223179,"is_anomaly":false,"confidence":0.9849360629929194,"method":"SEAD","details":"MAD!:w=0.24,s=0.97 RRCF-fast!:w=0.19,s=1.00 RRCF-mid!:w=0.19,s=1.00 RRCF-slow!:w=0.19,s=1.00 COPOD!:w=0.19,s=0.32"} +{"timestamp":"2026-03-21T11:35:19.310416321Z","score":0.8096162288331935,"is_anomaly":false,"confidence":0.9240871428993703,"method":"SEAD","details":"MAD!:w=0.24,s=0.62 RRCF-fast!:w=0.19,s=0.97 RRCF-mid:w=0.19,s=0.84 RRCF-slow:w=0.19,s=0.84 COPOD!:w=0.19,s=0.81"} +{"timestamp":"2026-03-21T11:35:49.309030055Z","score":0.479001190102057,"is_anomaly":false,"confidence":0.5467267397106557,"method":"SEAD","details":"MAD!:w=0.24,s=0.48 RRCF-fast:w=0.19,s=0.48 RRCF-mid:w=0.19,s=0.48 RRCF-slow:w=0.19,s=0.48 COPOD!:w=0.19,s=0.45"} +{"timestamp":"2026-03-21T11:36:19.263509405Z","score":0.5550672477278369,"is_anomaly":false,"confidence":0.6412538125927292,"method":"SEAD","details":"MAD!:w=0.24,s=0.15 RRCF-fast:w=0.19,s=0.79 RRCF-mid:w=0.19,s=0.71 RRCF-slow:w=0.19,s=0.76 COPOD!:w=0.19,s=0.47"} +{"timestamp":"2026-03-21T11:36:49.264580674Z","score":0.44559690443464256,"is_anomaly":false,"confidence":0.5147857579742089,"method":"SEAD","details":"MAD!:w=0.24,s=0.14 RRCF-fast:w=0.19,s=0.54 RRCF-mid:w=0.19,s=0.63 RRCF-slow:w=0.19,s=0.66 COPOD!:w=0.19,s=0.34"} +{"timestamp":"2026-03-21T11:37:19.308536633Z","score":0.9574067675418634,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.24,s=0.89 RRCF-fast!:w=0.19,s=0.97 RRCF-mid!:w=0.19,s=0.97 RRCF-slow!:w=0.19,s=0.97 COPOD!:w=0.19,s=1.00"} +{"timestamp":"2026-03-21T11:37:49.276676609Z","score":0.7349226935271763,"is_anomaly":false,"confidence":0.8388327554799555,"method":"SEAD","details":"MAD!:w=0.24,s=0.81 RRCF-fast:w=0.19,s=0.68 RRCF-mid:w=0.19,s=0.65 RRCF-slow:w=0.19,s=0.65 COPOD!:w=0.19,s=0.86"} +{"timestamp":"2026-03-21T11:38:19.264956145Z","score":0.5069735036824425,"is_anomaly":false,"confidence":0.5786540336756453,"method":"SEAD","details":"MAD!:w=0.24,s=0.18 RRCF-fast:w=0.19,s=0.82 RRCF-mid:w=0.19,s=0.66 RRCF-slow:w=0.19,s=0.66 COPOD!:w=0.19,s=0.32"} +{"timestamp":"2026-03-21T11:38:51.300975987Z","score":0.9604402303731023,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.24,s=1.00 RRCF-fast!:w=0.19,s=0.97 RRCF-mid!:w=0.19,s=1.00 RRCF-slow!:w=0.19,s=1.00 COPOD!:w=0.19,s=0.82"} +{"timestamp":"2026-03-21T11:39:19.878829758Z","score":0.7324599092871136,"is_anomaly":false,"confidence":0.8232175357544477,"method":"SEAD","details":"MAD!:w=0.24,s=0.55 RRCF-fast:w=0.19,s=0.80 RRCF-mid!:w=0.19,s=0.93 RRCF-slow!:w=0.19,s=0.93 COPOD!:w=0.19,s=0.53"} +{"timestamp":"2026-03-21T11:39:51.502133126Z","score":0.8140672990626863,"is_anomaly":false,"confidence":0.9291675459653319,"method":"SEAD","details":"MAD!:w=0.24,s=0.39 RRCF-fast!:w=0.19,s=0.93 RRCF-mid!:w=0.19,s=0.95 RRCF-slow!:w=0.19,s=0.95 COPOD!:w=0.19,s=0.98"} +{"timestamp":"2026-03-21T11:40:19.304143602Z","score":0.5142903902759612,"is_anomaly":false,"confidence":0.5870054483167129,"method":"SEAD","details":"MAD!:w=0.25,s=0.36 RRCF-fast:w=0.19,s=0.71 RRCF-mid:w=0.19,s=0.76 RRCF-slow:w=0.18,s=0.76 COPOD!:w=0.19,s=0.05"} +{"timestamp":"2026-03-21T11:40:49.263800076Z","score":0.4638051445478684,"is_anomaly":false,"confidence":0.5293821388745575,"method":"SEAD","details":"MAD!:w=0.25,s=0.02 RRCF-fast:w=0.19,s=0.51 RRCF-mid:w=0.19,s=0.67 RRCF-slow:w=0.18,s=0.72 COPOD!:w=0.20,s=0.53"} +{"timestamp":"2026-03-21T11:41:19.306239866Z","score":0.499801740082184,"is_anomaly":false,"confidence":0.5704682608379839,"method":"SEAD","details":"MAD!:w=0.25,s=0.25 RRCF-fast:w=0.19,s=0.77 RRCF-mid:w=0.18,s=0.73 RRCF-slow:w=0.18,s=0.80 COPOD!:w=0.20,s=0.07"} +{"timestamp":"2026-03-21T11:41:49.260895815Z","score":0.5345311527171983,"is_anomaly":false,"confidence":0.6101080340459835,"method":"SEAD","details":"MAD!:w=0.25,s=0.18 RRCF-fast:w=0.18,s=0.71 RRCF-mid:w=0.18,s=0.69 RRCF-slow:w=0.18,s=0.62 COPOD!:w=0.20,s=0.60"} +{"timestamp":"2026-03-21T11:42:26.268052198Z","score":0.9075272329262516,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.85 RRCF-fast!:w=0.18,s=0.96 RRCF-mid!:w=0.18,s=0.96 RRCF-slow!:w=0.18,s=0.96 COPOD!:w=0.20,s=0.85"} +{"timestamp":"2026-03-21T11:42:49.532867556Z","score":0.7893050388952263,"is_anomaly":false,"confidence":0.9009041719926326,"method":"SEAD","details":"MAD!:w=0.25,s=0.70 RRCF-fast!:w=0.18,s=0.96 RRCF-mid!:w=0.18,s=0.89 RRCF-slow!:w=0.18,s=0.91 COPOD!:w=0.20,s=0.53"} +{"timestamp":"2026-03-21T11:43:20.443577258Z","score":0.730542859158438,"is_anomaly":false,"confidence":0.8338336602493511,"method":"SEAD","details":"MAD!:w=0.25,s=0.48 RRCF-fast:w=0.18,s=0.75 RRCF-mid:w=0.18,s=0.88 RRCF-slow:w=0.18,s=0.88 COPOD!:w=0.20,s=0.77"} +{"timestamp":"2026-03-21T11:43:49.306033143Z","score":0.5954288785254387,"is_anomaly":false,"confidence":0.6796160348086516,"method":"SEAD","details":"MAD!:w=0.26,s=0.47 RRCF-fast:w=0.18,s=0.71 RRCF-mid:w=0.18,s=0.82 RRCF-slow:w=0.18,s=0.84 COPOD!:w=0.20,s=0.22"} +{"timestamp":"2026-03-21T11:44:19.264286393Z","score":0.4423636099764233,"is_anomaly":false,"confidence":0.5049090049181642,"method":"SEAD","details":"MAD!:w=0.26,s=0.42 RRCF-fast:w=0.18,s=0.42 RRCF-mid:w=0.18,s=0.58 RRCF-slow:w=0.18,s=0.56 COPOD!:w=0.20,s=0.26"} +{"timestamp":"2026-03-21T11:44:49.321387567Z","score":0.5485471835800977,"is_anomaly":false,"confidence":0.6261057789695905,"method":"SEAD","details":"MAD!:w=0.26,s=0.31 RRCF-fast:w=0.18,s=0.67 RRCF-mid:w=0.18,s=0.76 RRCF-slow:w=0.18,s=0.76 COPOD!:w=0.20,s=0.35"} +{"timestamp":"2026-03-21T11:45:19.271819829Z","score":0.480797927979718,"is_anomaly":false,"confidence":0.5487775167489317,"method":"SEAD","details":"MAD!:w=0.26,s=0.25 RRCF-fast:w=0.18,s=0.38 RRCF-mid:w=0.18,s=0.58 RRCF-slow:w=0.18,s=0.56 COPOD!:w=0.20,s=0.71"} +{"timestamp":"2026-03-21T11:45:49.265777Z","score":0.5797251975999462,"is_anomaly":false,"confidence":0.6616920244903857,"method":"SEAD","details":"MAD!:w=0.26,s=0.19 RRCF-fast:w=0.18,s=0.43 RRCF-mid:w=0.18,s=0.74 RRCF-slow:w=0.18,s=0.74 COPOD!:w=0.20,s=0.94"} +{"timestamp":"2026-03-21T11:46:21.072234682Z","score":0.8508974168885763,"is_anomaly":false,"confidence":0.9830182107459631,"method":"SEAD","details":"MAD!:w=0.26,s=0.80 RRCF-fast!:w=0.18,s=0.93 RRCF-mid!:w=0.18,s=0.94 RRCF-slow!:w=0.18,s=0.94 COPOD!:w=0.20,s=0.69"} +{"timestamp":"2026-03-21T11:46:49.316919963Z","score":0.7705936848723701,"is_anomaly":false,"confidence":0.8902455340448756,"method":"SEAD","details":"MAD!:w=0.26,s=0.69 RRCF-fast:w=0.18,s=0.73 RRCF-mid:w=0.18,s=0.84 RRCF-slow:w=0.18,s=0.85 COPOD!:w=0.20,s=0.78"} +{"timestamp":"2026-03-21T11:47:20.047435274Z","score":0.7927457422258297,"is_anomaly":false,"confidence":0.9158371921598647,"method":"SEAD","details":"MAD!:w=0.26,s=0.45 RRCF-fast!:w=0.18,s=0.95 RRCF-mid!:w=0.18,s=0.96 RRCF-slow!:w=0.18,s=0.96 COPOD!:w=0.20,s=0.80"} +{"timestamp":"2026-03-21T11:47:49.306950078Z","score":0.4599199854336127,"is_anomaly":false,"confidence":0.5313328166166738,"method":"SEAD","details":"MAD!:w=0.27,s=0.37 RRCF-fast:w=0.18,s=0.46 RRCF-mid:w=0.18,s=0.67 RRCF-slow:w=0.18,s=0.61 COPOD!:w=0.20,s=0.26"} +{"timestamp":"2026-03-21T11:48:19.269181528Z","score":0.33817000487685994,"is_anomaly":false,"confidence":0.39067843728750595,"method":"SEAD","details":"MAD!:w=0.27,s=0.12 RRCF-fast:w=0.18,s=0.52 RRCF-mid:w=0.18,s=0.53 RRCF-slow:w=0.18,s=0.57 COPOD!:w=0.20,s=0.09"} +{"timestamp":"2026-03-21T11:48:49.308282039Z","score":0.5694276437694092,"is_anomaly":false,"confidence":0.6578439802700609,"method":"SEAD","details":"MAD!:w=0.27,s=0.32 RRCF-fast:w=0.18,s=0.81 RRCF-mid:w=0.18,s=0.75 RRCF-slow:w=0.17,s=0.78 COPOD!:w=0.20,s=0.34"} +{"timestamp":"2026-03-21T11:49:19.265160806Z","score":0.4587802026023977,"is_anomaly":false,"confidence":0.5300160570906232,"method":"SEAD","details":"MAD!:w=0.27,s=0.00 RRCF-fast:w=0.18,s=0.40 RRCF-mid:w=0.18,s=0.60 RRCF-slow:w=0.17,s=0.62 COPOD!:w=0.20,s=0.87"} +{"timestamp":"2026-03-21T11:49:49.351300784Z","score":0.942246304239584,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.27,s=0.95 RRCF-fast!:w=0.18,s=1.00 RRCF-mid!:w=0.18,s=0.98 RRCF-slow!:w=0.17,s=0.97 COPOD!:w=0.20,s=0.82"} +{"timestamp":"2026-03-21T11:50:21.381277719Z","score":0.8794673195765647,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.27,s=0.82 RRCF-fast!:w=0.18,s=0.94 RRCF-mid!:w=0.18,s=0.92 RRCF-slow!:w=0.17,s=0.94 COPOD!:w=0.20,s=0.82"} +{"timestamp":"2026-03-21T11:50:49.31074033Z","score":0.6835952669017079,"is_anomaly":false,"confidence":0.7802481899370155,"method":"SEAD","details":"MAD!:w=0.27,s=0.71 RRCF-fast:w=0.18,s=0.68 RRCF-mid:w=0.18,s=0.83 RRCF-slow:w=0.17,s=0.84 COPOD!:w=0.20,s=0.38"} +{"timestamp":"2026-03-21T11:51:19.267132279Z","score":0.5361466747190583,"is_anomaly":false,"confidence":0.6119519732579498,"method":"SEAD","details":"MAD!:w=0.27,s=0.66 RRCF-fast:w=0.18,s=0.48 RRCF-mid:w=0.17,s=0.50 RRCF-slow:w=0.17,s=0.52 COPOD!:w=0.20,s=0.47"} +{"timestamp":"2026-03-21T11:51:49.263642272Z","score":0.35832362728112715,"is_anomaly":false,"confidence":0.4089866842772704,"method":"SEAD","details":"MAD!:w=0.27,s=0.03 RRCF-fast:w=0.18,s=0.55 RRCF-mid:w=0.17,s=0.48 RRCF-slow:w=0.17,s=0.55 COPOD!:w=0.20,s=0.35"} +{"timestamp":"2026-03-21T11:52:21.039337436Z","score":0.7406948729751677,"is_anomaly":false,"confidence":0.8454210582145537,"method":"SEAD","details":"MAD!:w=0.27,s=0.44 RRCF-fast:w=0.18,s=0.86 RRCF-mid!:w=0.17,s=0.88 RRCF-slow!:w=0.17,s=0.88 COPOD!:w=0.20,s=0.80"} +{"timestamp":"2026-03-21T11:52:49.308897815Z","score":0.5470842707547482,"is_anomaly":false,"confidence":0.6320313004722822,"method":"SEAD","details":"MAD!:w=0.28,s=0.39 RRCF-fast:w=0.18,s=0.66 RRCF-mid:w=0.17,s=0.78 RRCF-slow:w=0.17,s=0.75 COPOD!:w=0.20,s=0.30"} +{"timestamp":"2026-03-21T11:53:19.262731493Z","score":0.5317169713096719,"is_anomaly":false,"confidence":0.6142778851901737,"method":"SEAD","details":"MAD!:w=0.28,s=0.15 RRCF-fast:w=0.18,s=0.53 RRCF-mid:w=0.17,s=0.59 RRCF-slow:w=0.17,s=0.62 COPOD!:w=0.20,s=0.94"} +{"timestamp":"2026-03-21T11:53:50.750138898Z","score":0.9105304646610023,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=0.91 RRCF-fast!:w=0.18,s=0.96 RRCF-mid!:w=0.17,s=0.94 RRCF-slow!:w=0.17,s=0.94 COPOD!:w=0.20,s=0.81"} +{"timestamp":"2026-03-21T11:54:20.282906125Z","score":0.9745292333351077,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=0.99 RRCF-fast!:w=0.18,s=0.96 RRCF-mid!:w=0.17,s=1.00 RRCF-slow!:w=0.17,s=0.99 COPOD!:w=0.20,s=0.94"} +{"timestamp":"2026-03-21T11:54:49.310925321Z","score":0.7039027048358925,"is_anomaly":false,"confidence":0.8003739185838071,"method":"SEAD","details":"MAD!:w=0.28,s=0.49 RRCF-fast:w=0.18,s=0.86 RRCF-mid:w=0.17,s=0.82 RRCF-slow:w=0.17,s=0.79 COPOD!:w=0.20,s=0.69"} +{"timestamp":"2026-03-21T11:55:19.262445457Z","score":0.46411614293376624,"is_anomaly":false,"confidence":0.5277241491556768,"method":"SEAD","details":"MAD!:w=0.28,s=0.44 RRCF-fast:w=0.18,s=0.64 RRCF-mid:w=0.17,s=0.40 RRCF-slow:w=0.17,s=0.61 COPOD!:w=0.20,s=0.26"} +{"timestamp":"2026-03-21T11:55:51.440868161Z","score":0.6709662034608472,"is_anomaly":false,"confidence":0.7629234066183335,"method":"SEAD","details":"MAD!:w=0.28,s=0.41 RRCF-fast:w=0.18,s=0.77 RRCF-mid:w=0.17,s=0.85 RRCF-slow:w=0.17,s=0.84 COPOD!:w=0.20,s=0.66"} +{"timestamp":"2026-03-21T11:56:19.30924647Z","score":0.517264995663185,"is_anomaly":false,"confidence":0.5904006304976508,"method":"SEAD","details":"MAD!:w=0.28,s=0.39 RRCF-fast:w=0.18,s=0.49 RRCF-mid:w=0.17,s=0.65 RRCF-slow:w=0.17,s=0.66 COPOD!:w=0.20,s=0.49"} +{"timestamp":"2026-03-21T11:56:49.27366175Z","score":0.34448584417506983,"is_anomaly":false,"confidence":0.3931923894013308,"method":"SEAD","details":"MAD!:w=0.28,s=0.01 RRCF-fast:w=0.18,s=0.41 RRCF-mid:w=0.17,s=0.37 RRCF-slow:w=0.17,s=0.48 COPOD!:w=0.20,s=0.61"} +{"timestamp":"2026-03-21T11:57:19.265428516Z","score":0.46374619385287497,"is_anomaly":false,"confidence":0.5293148531935541,"method":"SEAD","details":"MAD!:w=0.29,s=0.03 RRCF-fast:w=0.18,s=0.41 RRCF-mid:w=0.17,s=0.54 RRCF-slow:w=0.17,s=0.63 COPOD!:w=0.20,s=0.93"} +{"timestamp":"2026-03-21T11:57:52.403622248Z","score":0.759982307486971,"is_anomaly":false,"confidence":0.8674355258315847,"method":"SEAD","details":"MAD!:w=0.29,s=0.81 RRCF-fast:w=0.18,s=0.88 RRCF-mid:w=0.17,s=0.87 RRCF-slow!:w=0.17,s=0.92 COPOD!:w=0.20,s=0.35"} +{"timestamp":"2026-03-21T11:58:19.303828674Z","score":0.7047613233827289,"is_anomaly":false,"confidence":0.804406896202306,"method":"SEAD","details":"MAD!:w=0.29,s=0.69 RRCF-fast:w=0.18,s=0.77 RRCF-mid:w=0.17,s=0.71 RRCF-slow:w=0.17,s=0.79 COPOD!:w=0.20,s=0.59"} +{"timestamp":"2026-03-21T11:58:49.309068212Z","score":0.7160130620754465,"is_anomaly":false,"confidence":0.8172495081595644,"method":"SEAD","details":"MAD!:w=0.29,s=0.48 RRCF-fast:w=0.18,s=0.82 RRCF-mid:w=0.17,s=0.70 RRCF-slow:w=0.17,s=0.72 COPOD!:w=0.20,s=0.97"} +{"timestamp":"2026-03-21T11:59:19.265814901Z","score":0.3752438540805875,"is_anomaly":false,"confidence":0.42829924680193315,"method":"SEAD","details":"MAD!:w=0.29,s=0.41 RRCF-fast:w=0.18,s=0.26 RRCF-mid:w=0.17,s=0.41 RRCF-slow:w=0.17,s=0.53 COPOD!:w=0.20,s=0.26"} +{"timestamp":"2026-03-21T11:59:49.266630221Z","score":0.3431842282833492,"is_anomaly":false,"confidence":0.39647123066482215,"method":"SEAD","details":"MAD!:w=0.29,s=0.04 RRCF-fast:w=0.18,s=0.36 RRCF-mid:w=0.17,s=0.38 RRCF-slow:w=0.17,s=0.57 COPOD!:w=0.20,s=0.56"} +{"timestamp":"2026-03-21T12:00:19.30573029Z","score":0.487944503033254,"is_anomaly":false,"confidence":0.5637087653515441,"method":"SEAD","details":"MAD!:w=0.29,s=0.40 RRCF-fast:w=0.18,s=0.57 RRCF-mid:w=0.17,s=0.70 RRCF-slow:w=0.17,s=0.74 COPOD!:w=0.20,s=0.15"} +{"timestamp":"2026-03-21T12:00:49.271243327Z","score":0.36032223186278245,"is_anomaly":false,"confidence":0.4162702913741796,"method":"SEAD","details":"MAD!:w=0.29,s=0.27 RRCF-fast:w=0.18,s=0.24 RRCF-mid:w=0.17,s=0.47 RRCF-slow:w=0.16,s=0.40 COPOD!:w=0.20,s=0.48"} +{"timestamp":"2026-03-21T12:01:24.026023107Z","score":0.9765793472740046,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=0.96 RRCF-fast!:w=0.18,s=0.96 RRCF-mid!:w=0.17,s=1.00 RRCF-slow!:w=0.16,s=0.99 COPOD!:w=0.20,s=0.98"} +{"timestamp":"2026-03-21T12:01:49.318828425Z","score":0.8788581110497949,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=0.91 RRCF-fast!:w=0.18,s=0.94 RRCF-mid!:w=0.17,s=0.96 RRCF-slow!:w=0.16,s=0.94 COPOD!:w=0.20,s=0.66"} +{"timestamp":"2026-03-21T12:02:21.618372471Z","score":0.7001574174688237,"is_anomaly":false,"confidence":0.7966671851415088,"method":"SEAD","details":"MAD!:w=0.29,s=0.50 RRCF-fast:w=0.18,s=0.88 RRCF-mid:w=0.17,s=0.80 RRCF-slow:w=0.16,s=0.80 COPOD!:w=0.20,s=0.66"} +{"timestamp":"2026-03-21T12:02:49.307121868Z","score":0.47531356083999543,"is_anomaly":false,"confidence":0.5425177198473042,"method":"SEAD","details":"MAD!:w=0.29,s=0.36 RRCF-fast:w=0.17,s=0.66 RRCF-mid:w=0.17,s=0.75 RRCF-slow:w=0.16,s=0.71 COPOD!:w=0.20,s=0.07"} +{"timestamp":"2026-03-21T12:03:19.264055572Z","score":0.4588975792025676,"is_anomaly":false,"confidence":0.5237806972568829,"method":"SEAD","details":"MAD!:w=0.30,s=0.08 RRCF-fast:w=0.17,s=0.67 RRCF-mid:w=0.17,s=0.70 RRCF-slow:w=0.16,s=0.59 COPOD!:w=0.20,s=0.52"} +{"timestamp":"2026-03-21T12:03:49.308019204Z","score":0.5072833788874024,"is_anomaly":false,"confidence":0.579007721858526,"method":"SEAD","details":"MAD!:w=0.30,s=0.33 RRCF-fast:w=0.17,s=0.67 RRCF-mid:w=0.17,s=0.85 RRCF-slow:w=0.16,s=0.75 COPOD!:w=0.20,s=0.15"} +{"timestamp":"2026-03-21T12:04:19.274951766Z","score":0.5356752308470032,"is_anomaly":false,"confidence":0.6114138723587217,"method":"SEAD","details":"MAD!:w=0.30,s=0.21 RRCF-fast:w=0.17,s=0.70 RRCF-mid:w=0.17,s=0.64 RRCF-slow:w=0.16,s=0.58 COPOD!:w=0.20,s=0.76"} +{"timestamp":"2026-03-21T12:04:49.302076439Z","score":0.795912265836446,"is_anomaly":false,"confidence":0.9084455888382397,"method":"SEAD","details":"MAD!:w=0.30,s=0.93 RRCF-fast!:w=0.17,s=0.92 RRCF-mid!:w=0.16,s=0.93 RRCF-slow!:w=0.16,s=0.93 COPOD!:w=0.20,s=0.25"} +{"timestamp":"2026-03-21T12:05:20.834999859Z","score":0.8051554451426857,"is_anomaly":false,"confidence":0.9189956529948333,"method":"SEAD","details":"MAD!:w=0.30,s=0.78 RRCF-fast:w=0.17,s=0.83 RRCF-mid:w=0.16,s=0.87 RRCF-slow:w=0.16,s=0.87 COPOD!:w=0.20,s=0.72"} +{"timestamp":"2026-03-21T12:05:49.611589948Z","score":0.7329261181257547,"is_anomaly":false,"confidence":0.8365538860692696,"method":"SEAD","details":"MAD!:w=0.30,s=0.58 RRCF-fast:w=0.17,s=0.69 RRCF-mid:w=0.16,s=0.77 RRCF-slow:w=0.16,s=0.80 COPOD!:w=0.20,s=0.91"} +{"timestamp":"2026-03-21T12:06:19.307262674Z","score":0.5000888250154454,"is_anomaly":false,"confidence":0.577738764066677,"method":"SEAD","details":"MAD!:w=0.30,s=0.50 RRCF-fast:w=0.17,s=0.31 RRCF-mid:w=0.16,s=0.44 RRCF-slow:w=0.16,s=0.49 COPOD!:w=0.20,s=0.72"} +{"timestamp":"2026-03-21T12:06:49.287584917Z","score":0.40367369050843893,"is_anomaly":false,"confidence":0.466353030450894,"method":"SEAD","details":"MAD!:w=0.30,s=0.23 RRCF-fast:w=0.17,s=0.57 RRCF-mid:w=0.16,s=0.48 RRCF-slow:w=0.16,s=0.58 COPOD!:w=0.20,s=0.32"} +{"timestamp":"2026-03-21T12:07:19.357134377Z","score":0.6800636770815726,"is_anomaly":false,"confidence":0.7856587242708587,"method":"SEAD","details":"MAD!:w=0.30,s=0.45 RRCF-fast:w=0.17,s=0.72 RRCF-mid:w=0.16,s=0.75 RRCF-slow:w=0.16,s=0.80 COPOD!:w=0.20,s=0.84"} +{"timestamp":"2026-03-21T12:07:49.307601729Z","score":0.41575550667742794,"is_anomaly":false,"confidence":0.48031081793182184,"method":"SEAD","details":"MAD!:w=0.31,s=0.39 RRCF-fast:w=0.17,s=0.46 RRCF-mid:w=0.16,s=0.59 RRCF-slow:w=0.16,s=0.64 COPOD!:w=0.20,s=0.09"} +{"timestamp":"2026-03-21T12:08:19.272482397Z","score":0.3930825411828935,"is_anomaly":false,"confidence":0.4541173690737431,"method":"SEAD","details":"MAD!:w=0.31,s=0.13 RRCF-fast:w=0.17,s=0.40 RRCF-mid:w=0.16,s=0.53 RRCF-slow:w=0.16,s=0.42 COPOD!:w=0.20,s=0.65"} +{"timestamp":"2026-03-21T12:08:49.985834159Z","score":0.9567639804183221,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=1.00 RRCF-fast!:w=0.17,s=0.90 RRCF-mid!:w=0.16,s=0.91 RRCF-slow!:w=0.16,s=0.93 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-21T12:09:19.38910117Z","score":0.945344712050042,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=0.99 RRCF-fast:w=0.17,s=0.86 RRCF-mid!:w=0.16,s=0.94 RRCF-slow!:w=0.16,s=0.90 COPOD!:w=0.20,s=0.99"} +{"timestamp":"2026-03-21T12:09:49.366984422Z","score":0.9593900433859864,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=0.98 RRCF-fast!:w=0.17,s=0.97 RRCF-mid!:w=0.16,s=0.92 RRCF-slow!:w=0.16,s=0.92 COPOD!:w=0.20,s=0.98"} +{"timestamp":"2026-03-21T12:10:19.310325577Z","score":0.3483826707800484,"is_anomaly":false,"confidence":0.3964037725770156,"method":"SEAD","details":"MAD!:w=0.31,s=0.00 RRCF-fast:w=0.17,s=0.51 RRCF-mid:w=0.16,s=0.75 RRCF-slow:w=0.16,s=0.71 COPOD!:w=0.20,s=0.14"} +{"timestamp":"2026-03-21T12:10:49.264690051Z","score":0.5222822387925795,"is_anomaly":false,"confidence":0.5942736742438595,"method":"SEAD","details":"MAD!:w=0.31,s=0.60 RRCF-fast:w=0.17,s=0.59 RRCF-mid:w=0.16,s=0.71 RRCF-slow:w=0.16,s=0.74 COPOD!:w=0.20,s=0.02"} +{"timestamp":"2026-03-21T12:11:19.311075703Z","score":0.6223212812139485,"is_anomaly":false,"confidence":0.7081021081669104,"method":"SEAD","details":"MAD!:w=0.31,s=0.90 RRCF-fast:w=0.17,s=0.55 RRCF-mid:w=0.16,s=0.74 RRCF-slow:w=0.16,s=0.73 COPOD!:w=0.20,s=0.08"} +{"timestamp":"2026-03-21T12:11:49.268031893Z","score":0.3968234010032997,"is_anomaly":false,"confidence":0.45152157784525043,"method":"SEAD","details":"MAD!:w=0.31,s=0.00 RRCF-fast:w=0.17,s=0.49 RRCF-mid:w=0.16,s=0.65 RRCF-slow:w=0.16,s=0.55 COPOD!:w=0.20,s=0.60"} +{"timestamp":"2026-03-21T12:12:19.575057359Z","score":0.8570016349020018,"is_anomaly":false,"confidence":0.9751308250182892,"method":"SEAD","details":"MAD!:w=0.31,s=0.99 RRCF-fast:w=0.17,s=0.89 RRCF-mid:w=0.16,s=0.89 RRCF-slow:w=0.16,s=0.90 COPOD!:w=0.20,s=0.58"} +{"timestamp":"2026-03-21T12:12:50.445441981Z","score":0.9075508915318109,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=0.97 RRCF-fast:w=0.17,s=0.83 RRCF-mid:w=0.16,s=0.86 RRCF-slow!:w=0.16,s=0.93 COPOD!:w=0.20,s=0.90"} +{"timestamp":"2026-03-21T12:13:21.438668015Z","score":0.8177591472363397,"is_anomaly":false,"confidence":0.9304791489715301,"method":"SEAD","details":"MAD!:w=0.31,s=0.85 RRCF-fast:w=0.17,s=0.72 RRCF-mid:w=0.16,s=0.69 RRCF-slow:w=0.16,s=0.81 COPOD!:w=0.20,s=0.94"} +{"timestamp":"2026-03-21T12:13:49.311233547Z","score":0.28431190569172027,"is_anomaly":false,"confidence":0.3235014868920195,"method":"SEAD","details":"MAD!:w=0.31,s=0.01 RRCF-fast:w=0.17,s=0.51 RRCF-mid:w=0.16,s=0.50 RRCF-slow:w=0.16,s=0.51 COPOD!:w=0.20,s=0.17"} +{"timestamp":"2026-03-21T12:14:19.264197869Z","score":0.4307871811737517,"is_anomaly":false,"confidence":0.49016692883357127,"method":"SEAD","details":"MAD!:w=0.31,s=0.60 RRCF-fast:w=0.17,s=0.45 RRCF-mid:w=0.16,s=0.42 RRCF-slow:w=0.16,s=0.56 COPOD!:w=0.20,s=0.06"} +{"timestamp":"2026-03-21T12:14:49.313684421Z","score":0.727179301444967,"is_anomaly":false,"confidence":0.8274137682775121,"method":"SEAD","details":"MAD!:w=0.31,s=0.88 RRCF-fast:w=0.17,s=0.79 RRCF-mid:w=0.16,s=0.79 RRCF-slow:w=0.16,s=0.84 COPOD!:w=0.21,s=0.31"} +{"timestamp":"2026-03-21T12:15:19.272620497Z","score":0.32506106422476466,"is_anomaly":false,"confidence":0.36986751346753755,"method":"SEAD","details":"MAD!:w=0.31,s=0.01 RRCF-fast:w=0.17,s=0.31 RRCF-mid:w=0.16,s=0.41 RRCF-slow:w=0.16,s=0.58 COPOD!:w=0.21,s=0.54"} +{"timestamp":"2026-03-21T12:15:49.374433149Z","score":0.8750905658218688,"is_anomaly":false,"confidence":0.995713135965229,"method":"SEAD","details":"MAD!:w=0.31,s=0.98 RRCF-fast:w=0.17,s=0.76 RRCF-mid:w=0.16,s=0.83 RRCF-slow:w=0.15,s=0.88 COPOD!:w=0.21,s=0.84"} +{"timestamp":"2026-03-21T12:16:20.548579061Z","score":0.8355895143831293,"is_anomaly":false,"confidence":0.9537327680496226,"method":"SEAD","details":"MAD!:w=0.31,s=0.96 RRCF-fast:w=0.17,s=0.68 RRCF-mid:w=0.16,s=0.79 RRCF-slow:w=0.15,s=0.78 COPOD!:w=0.21,s=0.85"} +{"timestamp":"2026-03-21T12:16:49.312845698Z","score":0.6786557903009897,"is_anomaly":false,"confidence":0.7746103251600774,"method":"SEAD","details":"MAD!:w=0.31,s=0.82 RRCF-fast:w=0.17,s=0.68 RRCF-mid:w=0.16,s=0.68 RRCF-slow:w=0.16,s=0.70 COPOD!:w=0.21,s=0.46"} +{"timestamp":"2026-03-21T12:17:19.359584995Z","score":0.669951654878446,"is_anomaly":false,"confidence":0.7646755198195032,"method":"SEAD","details":"MAD!:w=0.31,s=0.91 RRCF-fast:w=0.17,s=0.67 RRCF-mid:w=0.16,s=0.53 RRCF-slow:w=0.16,s=0.68 COPOD!:w=0.21,s=0.41"} +{"timestamp":"2026-03-21T12:17:49.263637054Z","score":0.2504154853332048,"is_anomaly":false,"confidence":0.28582150670672546,"method":"SEAD","details":"MAD!:w=0.30,s=0.02 RRCF-fast:w=0.17,s=0.28 RRCF-mid:w=0.16,s=0.50 RRCF-slow:w=0.16,s=0.54 COPOD!:w=0.21,s=0.16"} +{"timestamp":"2026-03-21T12:18:19.306051035Z","score":0.55274236755722,"is_anomaly":false,"confidence":0.6308941162549524,"method":"SEAD","details":"MAD!:w=0.31,s=0.86 RRCF-fast:w=0.17,s=0.49 RRCF-mid:w=0.16,s=0.52 RRCF-slow:w=0.15,s=0.67 COPOD!:w=0.21,s=0.10"} +{"timestamp":"2026-03-21T12:18:49.274908965Z","score":0.29061955753422947,"is_anomaly":false,"confidence":0.3317099966974805,"method":"SEAD","details":"MAD!:w=0.30,s=0.01 RRCF-fast:w=0.17,s=0.13 RRCF-mid:w=0.16,s=0.29 RRCF-slow:w=0.15,s=0.49 COPOD!:w=0.21,s=0.68"} +{"timestamp":"2026-03-21T12:19:19.263147439Z","score":0.32346551655205924,"is_anomaly":false,"confidence":0.36920001646687145,"method":"SEAD","details":"MAD!:w=0.31,s=0.00 RRCF-fast:w=0.17,s=0.16 RRCF-mid:w=0.16,s=0.28 RRCF-slow:w=0.15,s=0.46 COPOD!:w=0.21,s=0.87"} +{"timestamp":"2026-03-21T12:19:50.95519789Z","score":0.9324417409778818,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=0.98 RRCF-fast:w=0.17,s=0.82 RRCF-mid!:w=0.16,s=0.94 RRCF-slow!:w=0.15,s=0.92 COPOD!:w=0.21,s=0.97"} +{"timestamp":"2026-03-21T12:20:19.328753771Z","score":0.8193166233176937,"is_anomaly":false,"confidence":0.9351590674791153,"method":"SEAD","details":"MAD!:w=0.31,s=0.96 RRCF-fast:w=0.17,s=0.51 RRCF-mid:w=0.16,s=0.84 RRCF-slow:w=0.15,s=0.84 COPOD!:w=0.21,s=0.84"} +{"timestamp":"2026-03-21T12:20:49.310919115Z","score":0.3213854734418326,"is_anomaly":false,"confidence":0.3668258779227281,"method":"SEAD","details":"MAD!:w=0.31,s=0.04 RRCF-fast:w=0.17,s=0.26 RRCF-mid:w=0.16,s=0.67 RRCF-slow:w=0.15,s=0.63 COPOD!:w=0.21,s=0.28"} +{"timestamp":"2026-03-21T12:21:19.262812532Z","score":0.45809521003267606,"is_anomaly":false,"confidence":0.5228648818281035,"method":"SEAD","details":"MAD!:w=0.31,s=0.57 RRCF-fast:w=0.17,s=0.25 RRCF-mid:w=0.16,s=0.56 RRCF-slow:w=0.15,s=0.65 COPOD!:w=0.21,s=0.24"} +{"timestamp":"2026-03-21T12:21:49.264794637Z","score":0.26344069358694283,"is_anomaly":false,"confidence":0.30068833749915264,"method":"SEAD","details":"MAD!:w=0.31,s=0.00 RRCF-fast:w=0.17,s=0.24 RRCF-mid:w=0.16,s=0.56 RRCF-slow:w=0.15,s=0.62 COPOD!:w=0.21,s=0.18"} +{"timestamp":"2026-03-21T12:22:19.287814236Z","score":0.8131598283655593,"is_anomaly":false,"confidence":0.9281317687984371,"method":"SEAD","details":"MAD!:w=0.31,s=0.90 RRCF-fast:w=0.17,s=0.63 RRCF-mid:w=0.16,s=0.74 RRCF-slow:w=0.15,s=0.73 COPOD!:w=0.21,s=0.96"} +{"timestamp":"2026-03-21T12:22:49.308168775Z","score":0.3583321232337944,"is_anomaly":false,"confidence":0.40948004381381425,"method":"SEAD","details":"MAD!:w=0.31,s=0.07 RRCF-fast:w=0.17,s=0.14 RRCF-mid:w=0.16,s=0.24 RRCF-slow:w=0.15,s=0.44 COPOD!:w=0.21,s=1.00"} +{"timestamp":"2026-03-21T12:23:19.265278092Z","score":0.3637487226364232,"is_anomaly":false,"confidence":0.4156698024675848,"method":"SEAD","details":"MAD!:w=0.31,s=0.01 RRCF-fast:w=0.17,s=0.18 RRCF-mid:w=0.16,s=0.38 RRCF-slow:w=0.15,s=0.50 COPOD!:w=0.20,s=0.95"} +{"timestamp":"2026-03-21T12:23:56.694147152Z","score":0.8932870409271532,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=0.93 RRCF-fast!:w=0.17,s=0.93 RRCF-mid!:w=0.16,s=0.91 RRCF-slow!:w=0.15,s=0.91 COPOD!:w=0.20,s=0.78"} +{"timestamp":"2026-03-21T12:24:19.341887291Z","score":0.7470426702184217,"is_anomaly":false,"confidence":0.8526663648293643,"method":"SEAD","details":"MAD!:w=0.31,s=0.93 RRCF-fast:w=0.17,s=0.38 RRCF-mid:w=0.16,s=0.72 RRCF-slow:w=0.15,s=0.83 COPOD!:w=0.20,s=0.73"} +{"timestamp":"2026-03-21T12:24:49.31581322Z","score":0.37819935657571313,"is_anomaly":false,"confidence":0.43167262514995447,"method":"SEAD","details":"MAD!:w=0.31,s=0.05 RRCF-fast:w=0.18,s=0.23 RRCF-mid:w=0.16,s=0.64 RRCF-slow:w=0.15,s=0.57 COPOD!:w=0.20,s=0.67"} +{"timestamp":"2026-03-21T12:25:19.2661396Z","score":0.3797162004222565,"is_anomaly":false,"confidence":0.43340393419053147,"method":"SEAD","details":"MAD!:w=0.32,s=0.58 RRCF-fast:w=0.18,s=0.24 RRCF-mid:w=0.16,s=0.42 RRCF-slow:w=0.15,s=0.52 COPOD!:w=0.20,s=0.05"} +{"timestamp":"2026-03-21T12:25:49.30601107Z","score":0.631270291172046,"is_anomaly":false,"confidence":0.7205250327147504,"method":"SEAD","details":"MAD!:w=0.31,s=0.96 RRCF-fast:w=0.18,s=0.64 RRCF-mid:w=0.16,s=0.70 RRCF-slow:w=0.15,s=0.69 COPOD!:w=0.20,s=0.02"} +{"timestamp":"2026-03-21T12:26:19.311158884Z","score":0.7447810479673129,"is_anomaly":false,"confidence":0.8510902494621553,"method":"SEAD","details":"MAD!:w=0.31,s=0.86 RRCF-fast:w=0.18,s=0.75 RRCF-mid:w=0.16,s=0.69 RRCF-slow:w=0.15,s=0.76 COPOD!:w=0.21,s=0.60"} +{"timestamp":"2026-03-21T12:26:49.274488987Z","score":0.30827350299871503,"is_anomaly":false,"confidence":0.35227611294059635,"method":"SEAD","details":"MAD!:w=0.31,s=0.04 RRCF-fast:w=0.18,s=0.27 RRCF-mid:w=0.16,s=0.44 RRCF-slow:w=0.15,s=0.37 COPOD!:w=0.21,s=0.59"} +{"timestamp":"2026-03-21T12:27:19.323409657Z","score":0.7819641889837498,"is_anomaly":false,"confidence":0.8935808698261345,"method":"SEAD","details":"MAD!:w=0.31,s=0.98 RRCF-fast!:w=0.18,s=0.93 RRCF-mid!:w=0.16,s=0.93 RRCF-slow!:w=0.15,s=0.99 COPOD!:w=0.20,s=0.09"} +{"timestamp":"2026-03-21T12:27:51.233061603Z","score":0.846421363157734,"is_anomaly":false,"confidence":0.9672385878858044,"method":"SEAD","details":"MAD!:w=0.31,s=0.85 RRCF-fast!:w=0.18,s=0.93 RRCF-mid:w=0.16,s=0.84 RRCF-slow!:w=0.15,s=0.91 COPOD!:w=0.21,s=0.73"} +{"timestamp":"2026-03-21T12:28:19.332357695Z","score":0.7076577052253783,"is_anomaly":false,"confidence":0.8086679629105124,"method":"SEAD","details":"MAD!:w=0.31,s=0.77 RRCF-fast:w=0.18,s=0.65 RRCF-mid:w=0.16,s=0.67 RRCF-slow:w=0.15,s=0.77 COPOD!:w=0.21,s=0.65"} +{"timestamp":"2026-03-21T12:28:49.309287207Z","score":0.2287200807720549,"is_anomaly":false,"confidence":0.2613673255147543,"method":"SEAD","details":"MAD!:w=0.31,s=0.01 RRCF-fast:w=0.18,s=0.15 RRCF-mid:w=0.16,s=0.47 RRCF-slow:w=0.15,s=0.46 COPOD!:w=0.21,s=0.27"} +{"timestamp":"2026-03-21T12:29:19.310924924Z","score":0.7826114130297765,"is_anomaly":false,"confidence":0.8943204778979218,"method":"SEAD","details":"MAD!:w=0.31,s=0.88 RRCF-fast:w=0.18,s=0.65 RRCF-mid:w=0.16,s=0.59 RRCF-slow:w=0.15,s=0.69 COPOD!:w=0.21,s=0.96"} +{"timestamp":"2026-03-21T12:29:49.265477653Z","score":0.28271242339706654,"is_anomaly":false,"confidence":0.32660982991305937,"method":"SEAD","details":"MAD!:w=0.31,s=0.06 RRCF-fast:w=0.18,s=0.26 RRCF-mid:w=0.16,s=0.40 RRCF-slow:w=0.15,s=0.39 COPOD!:w=0.21,s=0.48"} +{"timestamp":"2026-03-21T12:30:19.315699742Z","score":0.29530859413962357,"is_anomaly":false,"confidence":0.3411618369821095,"method":"SEAD","details":"MAD!:w=0.31,s=0.07 RRCF-fast:w=0.18,s=0.59 RRCF-mid:w=0.16,s=0.51 RRCF-slow:w=0.15,s=0.51 COPOD!:w=0.21,s=0.07"} +{"timestamp":"2026-03-21T12:30:49.27629572Z","score":0.2908932479838728,"is_anomaly":false,"confidence":0.33606090990006315,"method":"SEAD","details":"MAD!:w=0.31,s=0.06 RRCF-fast:w=0.18,s=0.25 RRCF-mid:w=0.16,s=0.45 RRCF-slow:w=0.15,s=0.43 COPOD!:w=0.21,s=0.46"} +{"timestamp":"2026-03-21T12:31:19.348871747Z","score":0.8296078044618532,"is_anomaly":false,"confidence":0.9584229113599116,"method":"SEAD","details":"MAD!:w=0.32,s=0.97 RRCF-fast!:w=0.18,s=0.90 RRCF-mid:w=0.15,s=0.69 RRCF-slow!:w=0.15,s=0.91 COPOD!:w=0.21,s=0.60"} +{"timestamp":"2026-03-21T12:31:52.16119579Z","score":0.757165243205772,"is_anomaly":false,"confidence":0.8747320274362002,"method":"SEAD","details":"MAD!:w=0.31,s=0.92 RRCF-fast:w=0.18,s=0.68 RRCF-mid:w=0.16,s=0.75 RRCF-slow:w=0.15,s=0.86 COPOD!:w=0.21,s=0.50"} +{"timestamp":"2026-03-21T12:32:19.314291755Z","score":0.569046319721378,"is_anomaly":false,"confidence":0.657403447162344,"method":"SEAD","details":"MAD!:w=0.31,s=0.76 RRCF-fast:w=0.18,s=0.49 RRCF-mid:w=0.16,s=0.45 RRCF-slow:w=0.15,s=0.66 COPOD!:w=0.21,s=0.38"} +{"timestamp":"2026-03-21T12:32:49.265222497Z","score":0.2869020982614974,"is_anomaly":false,"confidence":0.33247531640772,"method":"SEAD","details":"MAD!:w=0.31,s=0.00 RRCF-fast:w=0.18,s=0.50 RRCF-mid:w=0.16,s=0.32 RRCF-slow:w=0.15,s=0.39 COPOD!:w=0.21,s=0.44"} +{"timestamp":"2026-03-21T12:33:19.279475686Z","score":0.2636915624115767,"is_anomaly":false,"confidence":0.3055778824138372,"method":"SEAD","details":"MAD!:w=0.31,s=0.01 RRCF-fast:w=0.18,s=0.35 RRCF-mid:w=0.16,s=0.41 RRCF-slow:w=0.15,s=0.40 COPOD!:w=0.21,s=0.37"} +{"timestamp":"2026-03-21T12:33:49.305301656Z","score":0.8203790429452553,"is_anomaly":false,"confidence":0.9506928793141226,"method":"SEAD","details":"MAD!:w=0.32,s=0.86 RRCF-fast:w=0.18,s=0.81 RRCF-mid:w=0.15,s=0.65 RRCF-slow:w=0.15,s=0.74 COPOD!:w=0.21,s=0.95"} +{"timestamp":"2026-03-21T12:34:19.31175576Z","score":0.38247918158754274,"is_anomaly":false,"confidence":0.4432344262668286,"method":"SEAD","details":"MAD!:w=0.32,s=0.13 RRCF-fast:w=0.18,s=0.31 RRCF-mid:w=0.16,s=0.17 RRCF-slow:w=0.15,s=0.38 COPOD!:w=0.21,s=0.99"} +{"timestamp":"2026-03-21T12:34:49.263770031Z","score":0.31304548974770874,"is_anomaly":false,"confidence":0.3627714780915103,"method":"SEAD","details":"MAD!:w=0.32,s=0.03 RRCF-fast:w=0.18,s=0.23 RRCF-mid:w=0.16,s=0.23 RRCF-slow:w=0.15,s=0.43 COPOD!:w=0.20,s=0.80"} +{"timestamp":"2026-03-21T12:35:19.369048447Z","score":0.6767698605275234,"is_anomaly":false,"confidence":0.7842719690011183,"method":"SEAD","details":"MAD!:w=0.32,s=0.64 RRCF-fast!:w=0.18,s=0.88 RRCF-mid:w=0.16,s=0.78 RRCF-slow:w=0.15,s=0.78 COPOD!:w=0.20,s=0.41"} +{"timestamp":"2026-03-21T12:35:49.319968876Z","score":0.7724095715346624,"is_anomaly":false,"confidence":0.8951036546908453,"method":"SEAD","details":"MAD!:w=0.32,s=0.77 RRCF-fast:w=0.17,s=0.75 RRCF-mid:w=0.16,s=0.66 RRCF-slow:w=0.15,s=0.78 COPOD!:w=0.20,s=0.87"} +{"timestamp":"2026-03-21T12:36:19.312536926Z","score":0.748957034222692,"is_anomaly":false,"confidence":0.8739271942093031,"method":"SEAD","details":"MAD!:w=0.32,s=0.88 RRCF-fast:w=0.17,s=0.82 RRCF-mid:w=0.16,s=0.54 RRCF-slow:w=0.15,s=0.65 COPOD!:w=0.20,s=0.71"} +{"timestamp":"2026-03-21T12:36:49.265510718Z","score":0.26740357001216614,"is_anomaly":false,"confidence":0.3120222402408179,"method":"SEAD","details":"MAD!:w=0.32,s=0.07 RRCF-fast:w=0.17,s=0.55 RRCF-mid:w=0.16,s=0.35 RRCF-slow:w=0.15,s=0.52 COPOD!:w=0.20,s=0.09"} +{"timestamp":"2026-03-21T12:37:19.266745925Z","score":0.2175242206644632,"is_anomaly":false,"confidence":0.2538200766552063,"method":"SEAD","details":"MAD!:w=0.32,s=0.00 RRCF-fast:w=0.17,s=0.35 RRCF-mid:w=0.16,s=0.38 RRCF-slow:w=0.14,s=0.46 COPOD!:w=0.20,s=0.15"} +{"timestamp":"2026-03-21T12:37:49.307460954Z","score":0.3232574479394861,"is_anomaly":false,"confidence":0.3771958357774319,"method":"SEAD","details":"MAD!:w=0.32,s=0.04 RRCF-fast:w=0.17,s=0.25 RRCF-mid:w=0.16,s=0.41 RRCF-slow:w=0.14,s=0.43 COPOD!:w=0.20,s=0.68"} +{"timestamp":"2026-03-21T12:38:19.267531245Z","score":0.37154900643550826,"is_anomaly":false,"confidence":0.43354527144863025,"method":"SEAD","details":"MAD!:w=0.33,s=0.05 RRCF-fast:w=0.17,s=0.33 RRCF-mid:w=0.16,s=0.44 RRCF-slow:w=0.14,s=0.37 COPOD!:w=0.20,s=0.87"} +{"timestamp":"2026-03-21T12:38:49.30695214Z","score":0.9175602638955266,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.33,s=0.92 RRCF-fast!:w=0.17,s=0.98 RRCF-mid!:w=0.15,s=0.91 RRCF-slow!:w=0.14,s=0.92 COPOD!:w=0.20,s=0.86"} +{"timestamp":"2026-03-21T12:39:19.35995606Z","score":0.7071605589107476,"is_anomaly":false,"confidence":0.8194901048113507,"method":"SEAD","details":"MAD!:w=0.33,s=0.65 RRCF-fast!:w=0.17,s=0.92 RRCF-mid!:w=0.15,s=0.91 RRCF-slow:w=0.14,s=0.76 COPOD!:w=0.20,s=0.42"} +{"timestamp":"2026-03-21T12:39:49.339177901Z","score":0.8852948768940423,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.33,s=0.89 RRCF-fast!:w=0.17,s=0.94 RRCF-mid!:w=0.15,s=0.89 RRCF-slow:w=0.14,s=0.65 COPOD!:w=0.20,s=0.99"} +{"timestamp":"2026-03-21T12:40:19.309654615Z","score":0.3196254645960823,"is_anomaly":false,"confidence":0.37039665487803164,"method":"SEAD","details":"MAD!:w=0.33,s=0.14 RRCF-fast:w=0.17,s=0.47 RRCF-mid:w=0.15,s=0.51 RRCF-slow:w=0.14,s=0.49 COPOD!:w=0.20,s=0.21"} +{"timestamp":"2026-03-21T12:40:49.265044919Z","score":0.4146881763116604,"is_anomaly":false,"confidence":0.4805596873122014,"method":"SEAD","details":"MAD!:w=0.33,s=0.54 RRCF-fast:w=0.17,s=0.36 RRCF-mid:w=0.15,s=0.46 RRCF-slow:w=0.14,s=0.39 COPOD!:w=0.20,s=0.24"} +{"timestamp":"2026-03-21T12:41:19.307032869Z","score":0.6348906691358409,"is_anomaly":false,"confidence":0.7357404403255831,"method":"SEAD","details":"MAD!:w=0.33,s=0.79 RRCF-fast:w=0.17,s=0.80 RRCF-mid:w=0.15,s=0.67 RRCF-slow:w=0.14,s=0.64 COPOD!:w=0.20,s=0.21"} +{"timestamp":"2026-03-21T12:41:49.27410178Z","score":0.3403023689680592,"is_anomaly":false,"confidence":0.39435800045571145,"method":"SEAD","details":"MAD!:w=0.33,s=0.08 RRCF-fast:w=0.17,s=0.39 RRCF-mid:w=0.15,s=0.51 RRCF-slow:w=0.14,s=0.41 COPOD!:w=0.20,s=0.53"} +{"timestamp":"2026-03-21T12:42:19.897812848Z","score":0.9045552521529528,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.33,s=0.97 RRCF-fast!:w=0.17,s=1.00 RRCF-mid!:w=0.15,s=1.00 RRCF-slow!:w=0.14,s=1.00 COPOD!:w=0.20,s=0.58"} +{"timestamp":"2026-03-21T12:42:51.737889991Z","score":0.8480480449840837,"is_anomaly":false,"confidence":0.9827569885112628,"method":"SEAD","details":"MAD!:w=0.33,s=0.63 RRCF-fast!:w=0.17,s=0.99 RRCF-mid!:w=0.15,s=0.99 RRCF-slow!:w=0.14,s=0.99 COPOD!:w=0.20,s=0.87"} +{"timestamp":"2026-03-21T12:43:19.310821229Z","score":0.8422503081798612,"is_anomaly":false,"confidence":0.9760383050644947,"method":"SEAD","details":"MAD!:w=0.33,s=0.73 RRCF-fast!:w=0.17,s=0.95 RRCF-mid!:w=0.15,s=0.98 RRCF-slow!:w=0.14,s=0.99 COPOD!:w=0.20,s=0.73"} +{"timestamp":"2026-03-21T12:43:49.252588344Z","score":0.49228957025999476,"is_anomaly":false,"confidence":0.5704877434783736,"method":"SEAD","details":"MAD!:w=0.33,s=0.01 RRCF-fast!:w=0.17,s=0.92 RRCF-mid!:w=0.15,s=0.95 RRCF-slow!:w=0.14,s=0.98 COPOD!:w=0.20,s=0.24"} +{"timestamp":"2026-03-21T12:44:19.26127077Z","score":0.637908136001162,"is_anomaly":false,"confidence":0.7392372193902068,"method":"SEAD","details":"MAD!:w=0.34,s=0.56 RRCF-fast:w=0.17,s=0.83 RRCF-mid!:w=0.15,s=0.92 RRCF-slow!:w=0.14,s=0.95 COPOD!:w=0.20,s=0.19"} +{"timestamp":"2026-03-21T12:44:49.385581085Z","score":0.9225794646538344,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.34,s=0.88 RRCF-fast!:w=0.17,s=0.94 RRCF-mid!:w=0.15,s=0.95 RRCF-slow!:w=0.14,s=0.96 COPOD!:w=0.21,s=0.93"} +{"timestamp":"2026-03-21T12:45:19.311712049Z","score":0.5451201200488975,"is_anomaly":false,"confidence":0.6297621715806222,"method":"SEAD","details":"MAD!:w=0.34,s=0.15 RRCF-fast:w=0.17,s=0.84 RRCF-mid:w=0.15,s=0.85 RRCF-slow!:w=0.14,s=0.94 COPOD!:w=0.21,s=0.48"} +{"timestamp":"2026-03-21T12:45:51.337640107Z","score":0.49047596063190424,"is_anomaly":false,"confidence":0.5666332881786363,"method":"SEAD","details":"MAD!:w=0.34,s=0.09 RRCF-fast:w=0.17,s=0.58 RRCF-mid:w=0.15,s=0.86 RRCF-slow!:w=0.14,s=0.90 COPOD!:w=0.21,s=0.54"} +{"timestamp":"2026-03-21T12:46:20.560839984Z","score":0.9400570720427066,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.34,s=0.97 RRCF-fast!:w=0.17,s=0.94 RRCF-mid!:w=0.15,s=0.96 RRCF-slow!:w=0.14,s=0.98 COPOD!:w=0.21,s=0.86"} +{"timestamp":"2026-03-21T12:46:49.336145991Z","score":0.7001395661684005,"is_anomaly":false,"confidence":0.8088518427097788,"method":"SEAD","details":"MAD!:w=0.34,s=0.64 RRCF-fast:w=0.17,s=0.86 RRCF-mid!:w=0.15,s=0.91 RRCF-slow!:w=0.14,s=0.97 COPOD!:w=0.21,s=0.34"} +{"timestamp":"2026-03-21T12:47:19.313198962Z","score":0.3400471634656313,"is_anomaly":false,"confidence":0.39284706659651003,"method":"SEAD","details":"MAD!:w=0.34,s=0.07 RRCF-fast:w=0.16,s=0.51 RRCF-mid:w=0.15,s=0.72 RRCF-slow:w=0.14,s=0.84 COPOD!:w=0.21,s=0.06"} +{"timestamp":"2026-03-21T12:47:49.265193103Z","score":0.5454746454515627,"is_anomaly":false,"confidence":0.6301717449558314,"method":"SEAD","details":"MAD!:w=0.35,s=0.54 RRCF-fast:w=0.16,s=0.63 RRCF-mid:w=0.15,s=0.73 RRCF-slow:w=0.14,s=0.87 COPOD!:w=0.21,s=0.14"} +{"timestamp":"2026-03-21T12:48:25.76678535Z","score":0.7929216541178533,"is_anomaly":false,"confidence":0.9160404182949002,"method":"SEAD","details":"MAD!:w=0.35,s=0.94 RRCF-fast:w=0.16,s=0.81 RRCF-mid:w=0.15,s=0.85 RRCF-slow:w=0.14,s=0.90 COPOD!:w=0.21,s=0.42"} +{"timestamp":"2026-03-21T12:48:49.314217469Z","score":0.6785595405500445,"is_anomaly":false,"confidence":0.7839210370096292,"method":"SEAD","details":"MAD!:w=0.35,s=0.78 RRCF-fast:w=0.16,s=0.63 RRCF-mid:w=0.15,s=0.75 RRCF-slow:w=0.14,s=0.86 COPOD!:w=0.21,s=0.39"} +{"timestamp":"2026-03-21T12:49:19.270380338Z","score":0.3881572600444274,"is_anomaly":false,"confidence":0.4484273282344374,"method":"SEAD","details":"MAD!:w=0.34,s=0.08 RRCF-fast:w=0.16,s=0.25 RRCF-mid:w=0.14,s=0.61 RRCF-slow:w=0.13,s=0.78 COPOD!:w=0.21,s=0.59"} +{"timestamp":"2026-03-21T12:49:51.60174529Z","score":0.8680187573517533,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.35,s=0.96 RRCF-fast:w=0.16,s=0.88 RRCF-mid:w=0.14,s=0.87 RRCF-slow:w=0.13,s=0.92 COPOD!:w=0.21,s=0.67"} +{"timestamp":"2026-03-21T12:50:22.321887181Z","score":0.6938905685115908,"is_anomaly":false,"confidence":0.8016325488517542,"method":"SEAD","details":"MAD!:w=0.35,s=0.70 RRCF-fast:w=0.16,s=0.75 RRCF-mid:w=0.14,s=0.80 RRCF-slow:w=0.13,s=0.90 COPOD!:w=0.21,s=0.43"} +{"timestamp":"2026-03-21T12:50:49.321744199Z","score":0.757425247978158,"is_anomaly":false,"confidence":0.8750324037460389,"method":"SEAD","details":"MAD!:w=0.35,s=0.75 RRCF-fast:w=0.16,s=0.70 RRCF-mid:w=0.14,s=0.75 RRCF-slow:w=0.13,s=0.87 COPOD!:w=0.21,s=0.75"} +{"timestamp":"2026-03-21T12:51:19.265945844Z","score":0.25585988186076764,"is_anomaly":false,"confidence":0.29558783265336996,"method":"SEAD","details":"MAD!:w=0.35,s=0.02 RRCF-fast:w=0.16,s=0.17 RRCF-mid:w=0.14,s=0.48 RRCF-slow:w=0.13,s=0.73 COPOD!:w=0.21,s=0.25"} +{"timestamp":"2026-03-21T12:51:49.26468922Z","score":0.40406586344911605,"is_anomaly":false,"confidence":0.46680609698370484,"method":"SEAD","details":"MAD!:w=0.35,s=0.50 RRCF-fast:w=0.16,s=0.36 RRCF-mid:w=0.14,s=0.47 RRCF-slow:w=0.13,s=0.74 COPOD!:w=0.21,s=0.04"} +{"timestamp":"2026-03-21T12:52:19.265096911Z","score":0.2245603449954101,"is_anomaly":false,"confidence":0.2594283448985845,"method":"SEAD","details":"MAD!:w=0.35,s=0.01 RRCF-fast:w=0.16,s=0.13 RRCF-mid:w=0.14,s=0.52 RRCF-slow:w=0.13,s=0.72 COPOD!:w=0.21,s=0.15"} +{"timestamp":"2026-03-21T12:52:49.307474508Z","score":0.7588769567099439,"is_anomaly":false,"confidence":0.8794214396671991,"method":"SEAD","details":"MAD!:w=0.35,s=0.83 RRCF-fast:w=0.16,s=0.62 RRCF-mid:w=0.14,s=0.58 RRCF-slow:w=0.13,s=0.74 COPOD!:w=0.21,s=0.87"} +{"timestamp":"2026-03-21T12:53:19.29340988Z","score":0.3752558329590933,"is_anomaly":false,"confidence":0.43486367842176377,"method":"SEAD","details":"MAD!:w=0.35,s=0.11 RRCF-fast:w=0.16,s=0.12 RRCF-mid:w=0.14,s=0.43 RRCF-slow:w=0.13,s=0.66 COPOD!:w=0.21,s=0.80"} +{"timestamp":"2026-03-21T12:53:49.264956173Z","score":0.35424134698087517,"is_anomaly":false,"confidence":0.41051112778832244,"method":"SEAD","details":"MAD!:w=0.35,s=0.05 RRCF-fast:w=0.16,s=0.10 RRCF-mid:w=0.14,s=0.40 RRCF-slow:w=0.13,s=0.68 COPOD!:w=0.21,s=0.82"} +{"timestamp":"2026-03-21T12:54:19.361694423Z","score":0.9102219792235274,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.35,s=0.89 RRCF-fast!:w=0.17,s=0.98 RRCF-mid!:w=0.14,s=0.99 RRCF-slow!:w=0.13,s=0.99 COPOD!:w=0.21,s=0.78"} +{"timestamp":"2026-03-21T12:54:49.335109407Z","score":0.8871256097982416,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.35,s=0.93 RRCF-fast:w=0.16,s=0.87 RRCF-mid:w=0.14,s=0.72 RRCF-slow:w=0.13,s=0.84 COPOD!:w=0.21,s=0.96"} +{"timestamp":"2026-03-21T12:55:20.432963031Z","score":0.8628385203133708,"is_anomaly":false,"confidence":0.994032113943958,"method":"SEAD","details":"MAD!:w=0.35,s=0.90 RRCF-fast:w=0.17,s=0.79 RRCF-mid:w=0.14,s=0.85 RRCF-slow:w=0.13,s=0.85 COPOD!:w=0.21,s=0.87"} +{"timestamp":"2026-03-21T12:55:49.307253387Z","score":0.34996466074850724,"is_anomaly":false,"confidence":0.4031763804462219,"method":"SEAD","details":"MAD!:w=0.35,s=0.17 RRCF-fast:w=0.17,s=0.36 RRCF-mid:w=0.14,s=0.66 RRCF-slow:w=0.13,s=0.75 COPOD!:w=0.21,s=0.19"} +{"timestamp":"2026-03-21T12:56:19.265007669Z","score":0.43620389636075846,"is_anomaly":false,"confidence":0.5039342759893705,"method":"SEAD","details":"MAD!:w=0.35,s=0.54 RRCF-fast:w=0.17,s=0.38 RRCF-mid:w=0.14,s=0.56 RRCF-slow:w=0.13,s=0.66 COPOD!:w=0.21,s=0.08"} +{"timestamp":"2026-03-21T12:56:49.322909424Z","score":0.610399028834435,"is_anomaly":false,"confidence":0.7051770862814515,"method":"SEAD","details":"MAD!:w=0.35,s=0.77 RRCF-fast:w=0.17,s=0.49 RRCF-mid:w=0.14,s=0.61 RRCF-slow:w=0.13,s=0.75 COPOD!:w=0.21,s=0.35"} +{"timestamp":"2026-03-21T12:57:19.279201303Z","score":0.30010678265714436,"is_anomaly":false,"confidence":0.34670505123766854,"method":"SEAD","details":"MAD!:w=0.35,s=0.08 RRCF-fast:w=0.17,s=0.30 RRCF-mid:w=0.14,s=0.51 RRCF-slow:w=0.13,s=0.64 COPOD!:w=0.21,s=0.32"} +{"timestamp":"2026-03-21T12:57:51.978856998Z","score":0.8779550478730471,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.35,s=0.96 RRCF-fast!:w=0.17,s=0.92 RRCF-mid!:w=0.14,s=0.92 RRCF-slow:w=0.13,s=0.90 COPOD!:w=0.21,s=0.66"} +{"timestamp":"2026-03-21T12:58:20.794841856Z","score":0.6931528381685849,"is_anomaly":false,"confidence":0.7985459211542058,"method":"SEAD","details":"MAD!:w=0.35,s=0.61 RRCF-fast:w=0.17,s=0.72 RRCF-mid:w=0.14,s=0.89 RRCF-slow:w=0.13,s=0.87 COPOD!:w=0.21,s=0.58"} +{"timestamp":"2026-03-21T12:58:49.313185801Z","score":0.5928671075895224,"is_anomaly":false,"confidence":0.6830118618614952,"method":"SEAD","details":"MAD!:w=0.35,s=0.71 RRCF-fast:w=0.17,s=0.43 RRCF-mid:w=0.14,s=0.59 RRCF-slow:w=0.13,s=0.69 COPOD!:w=0.21,s=0.47"} +{"timestamp":"2026-03-21T12:59:19.309383299Z","score":0.7856524226957021,"is_anomaly":false,"confidence":0.9051099599421752,"method":"SEAD","details":"MAD!:w=0.35,s=0.83 RRCF-fast:w=0.17,s=0.74 RRCF-mid:w=0.14,s=0.72 RRCF-slow:w=0.13,s=0.79 COPOD!:w=0.21,s=0.78"} +{"timestamp":"2026-03-21T12:59:49.266268607Z","score":0.2800227753567277,"is_anomaly":false,"confidence":0.32350255405151274,"method":"SEAD","details":"MAD!:w=0.35,s=0.13 RRCF-fast:w=0.17,s=0.24 RRCF-mid:w=0.14,s=0.40 RRCF-slow:w=0.13,s=0.53 COPOD!:w=0.21,s=0.33"} +{"timestamp":"2026-03-21T13:00:19.299784054Z","score":0.5192852913404666,"is_anomaly":false,"confidence":0.5999159097541913,"method":"SEAD","details":"MAD!:w=0.35,s=0.76 RRCF-fast:w=0.17,s=0.25 RRCF-mid:w=0.14,s=0.52 RRCF-slow:w=0.13,s=0.63 COPOD!:w=0.21,s=0.26"} +{"timestamp":"2026-03-21T13:00:49.318135377Z","score":0.28243359990649175,"is_anomaly":false,"confidence":0.32628771285948904,"method":"SEAD","details":"MAD!:w=0.35,s=0.13 RRCF-fast:w=0.17,s=0.14 RRCF-mid:w=0.14,s=0.33 RRCF-slow:w=0.13,s=0.54 COPOD!:w=0.22,s=0.47"} +{"timestamp":"2026-03-21T13:01:19.268277689Z","score":0.30019012776435616,"is_anomaly":false,"confidence":0.34680133753086867,"method":"SEAD","details":"MAD!:w=0.35,s=0.08 RRCF-fast:w=0.17,s=0.08 RRCF-mid:w=0.14,s=0.36 RRCF-slow:w=0.13,s=0.50 COPOD!:w=0.21,s=0.67"} +{"timestamp":"2026-03-21T13:01:52.005073209Z","score":0.6939046507073677,"is_anomaly":false,"confidence":0.8016488176223736,"method":"SEAD","details":"MAD!:w=0.35,s=0.61 RRCF-fast:w=0.17,s=0.67 RRCF-mid:w=0.14,s=0.80 RRCF-slow:w=0.13,s=0.83 COPOD!:w=0.21,s=0.70"} +{"timestamp":"2026-03-21T13:02:19.338204788Z","score":0.6977596357853272,"is_anomaly":false,"confidence":0.8061023750766257,"method":"SEAD","details":"MAD!:w=0.36,s=0.70 RRCF-fast:w=0.17,s=0.56 RRCF-mid:w=0.14,s=0.60 RRCF-slow:w=0.13,s=0.72 COPOD!:w=0.21,s=0.84"} +{"timestamp":"2026-03-21T13:02:49.314265418Z","score":0.1643447638151019,"is_anomaly":false,"confidence":0.19045025352019482,"method":"SEAD","details":"MAD!:w=0.36,s=0.03 RRCF-fast:w=0.17,s=0.09 RRCF-mid:w=0.14,s=0.18 RRCF-slow:w=0.13,s=0.49 COPOD!:w=0.21,s=0.24"} +{"timestamp":"2026-03-21T13:03:19.270316758Z","score":0.3487799823714823,"is_anomaly":false,"confidence":0.40418224787587637,"method":"SEAD","details":"MAD!:w=0.36,s=0.54 RRCF-fast:w=0.17,s=0.08 RRCF-mid:w=0.14,s=0.32 RRCF-slow:w=0.12,s=0.60 COPOD!:w=0.21,s=0.12"} +{"timestamp":"2026-03-21T13:03:49.30776061Z","score":0.5894563122743333,"is_anomaly":false,"confidence":0.6830890227694004,"method":"SEAD","details":"MAD!:w=0.35,s=0.94 RRCF-fast:w=0.17,s=0.51 RRCF-mid:w=0.14,s=0.62 RRCF-slow:w=0.12,s=0.63 COPOD!:w=0.21,s=0.03"} +{"timestamp":"2026-03-21T13:04:19.299712875Z","score":0.7324051807406288,"is_anomaly":false,"confidence":0.848744730975963,"method":"SEAD","details":"MAD!:w=0.35,s=0.90 RRCF-fast:w=0.17,s=0.62 RRCF-mid:w=0.14,s=0.65 RRCF-slow:w=0.12,s=0.70 COPOD!:w=0.22,s=0.62"} +{"timestamp":"2026-03-21T13:04:49.311022868Z","score":0.346904801796433,"is_anomaly":false,"confidence":0.4020092025799759,"method":"SEAD","details":"MAD!:w=0.35,s=0.04 RRCF-fast:w=0.17,s=0.23 RRCF-mid:w=0.14,s=0.23 RRCF-slow:w=0.12,s=0.56 COPOD!:w=0.22,s=0.89"} +{"timestamp":"2026-03-21T13:05:19.268248697Z","score":0.23207396568903493,"is_anomaly":false,"confidence":0.26893796050989377,"method":"SEAD","details":"MAD!:w=0.35,s=0.08 RRCF-fast:w=0.17,s=0.10 RRCF-mid:w=0.14,s=0.20 RRCF-slow:w=0.12,s=0.50 COPOD!:w=0.21,s=0.46"} +{"timestamp":"2026-03-21T13:05:49.355224143Z","score":0.865516934463847,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.35,s=0.93 RRCF-fast:w=0.17,s=0.71 RRCF-mid:w=0.14,s=0.85 RRCF-slow:w=0.12,s=0.83 COPOD!:w=0.21,s=0.91"} +{"timestamp":"2026-03-21T13:06:21.489154319Z","score":0.7588619260635576,"is_anomaly":false,"confidence":0.8794040214644624,"method":"SEAD","details":"MAD!:w=0.35,s=0.89 RRCF-fast:w=0.17,s=0.57 RRCF-mid:w=0.14,s=0.63 RRCF-slow:w=0.12,s=0.72 COPOD!:w=0.21,s=0.79"} +{"timestamp":"2026-03-21T13:06:49.312310526Z","score":0.27431608190966744,"is_anomaly":false,"confidence":0.31789006313057805,"method":"SEAD","details":"MAD!:w=0.35,s=0.16 RRCF-fast:w=0.17,s=0.33 RRCF-mid:w=0.14,s=0.48 RRCF-slow:w=0.12,s=0.45 COPOD!:w=0.21,s=0.19"} +{"timestamp":"2026-03-21T13:07:24.237049213Z","score":0.7096756740188027,"is_anomaly":false,"confidence":0.8224047356084747,"method":"SEAD","details":"MAD!:w=0.35,s=0.94 RRCF-fast:w=0.17,s=0.62 RRCF-mid:w=0.14,s=0.59 RRCF-slow:w=0.12,s=0.62 COPOD!:w=0.21,s=0.55"} +{"timestamp":"2026-03-21T13:07:49.3094137Z","score":0.49142097909210763,"is_anomaly":false,"confidence":0.5694811801763896,"method":"SEAD","details":"MAD!:w=0.35,s=0.75 RRCF-fast:w=0.17,s=0.48 RRCF-mid:w=0.14,s=0.44 RRCF-slow:w=0.12,s=0.49 COPOD!:w=0.21,s=0.11"} +{"timestamp":"2026-03-21T13:08:19.309997783Z","score":0.504589742481584,"is_anomaly":false,"confidence":0.5847417474609967,"method":"SEAD","details":"MAD!:w=0.35,s=0.75 RRCF-fast:w=0.17,s=0.52 RRCF-mid:w=0.14,s=0.37 RRCF-slow:w=0.12,s=0.50 COPOD!:w=0.22,s=0.20"} +{"timestamp":"2026-03-21T13:08:49.266919095Z","score":0.29124176278187563,"is_anomaly":false,"confidence":0.33750431878608894,"method":"SEAD","details":"MAD!:w=0.34,s=0.09 RRCF-fast:w=0.17,s=0.30 RRCF-mid:w=0.14,s=0.24 RRCF-slow:w=0.12,s=0.35 COPOD!:w=0.22,s=0.61"} +{"timestamp":"2026-03-21T13:09:19.564420953Z","score":0.8747927821583644,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.35,s=0.96 RRCF-fast!:w=0.17,s=0.92 RRCF-mid:w=0.14,s=0.89 RRCF-slow:w=0.12,s=0.80 COPOD!:w=0.22,s=0.74"} +{"timestamp":"2026-03-21T13:09:49.346678126Z","score":0.6145140254201891,"is_anomaly":false,"confidence":0.7121270505743729,"method":"SEAD","details":"MAD!:w=0.35,s=0.58 RRCF-fast:w=0.17,s=0.74 RRCF-mid:w=0.14,s=0.67 RRCF-slow:w=0.12,s=0.78 COPOD!:w=0.22,s=0.44"} +{"timestamp":"2026-03-21T13:10:19.324082059Z","score":0.595470556603217,"is_anomaly":false,"confidence":0.6900586050705255,"method":"SEAD","details":"MAD!:w=0.35,s=0.72 RRCF-fast:w=0.17,s=0.71 RRCF-mid:w=0.14,s=0.42 RRCF-slow:w=0.12,s=0.55 COPOD!:w=0.22,s=0.45"} +{"timestamp":"2026-03-21T13:10:49.388029673Z","score":0.6325072491976085,"is_anomaly":false,"confidence":0.7329784239342841,"method":"SEAD","details":"MAD!:w=0.34,s=0.83 RRCF-fast:w=0.17,s=0.42 RRCF-mid:w=0.14,s=0.32 RRCF-slow:w=0.12,s=0.50 COPOD!:w=0.22,s=0.77"} +{"timestamp":"2026-03-21T13:11:19.270556861Z","score":0.22638139376297037,"is_anomaly":false,"confidence":0.2623411469495866,"method":"SEAD","details":"MAD!:w=0.34,s=0.17 RRCF-fast:w=0.17,s=0.29 RRCF-mid:w=0.14,s=0.17 RRCF-slow:w=0.12,s=0.57 COPOD!:w=0.22,s=0.11"} +{"timestamp":"2026-03-21T13:11:49.942006112Z","score":0.4950333579481729,"is_anomaly":false,"confidence":0.5736673705543358,"method":"SEAD","details":"MAD!:w=0.34,s=0.74 RRCF-fast:w=0.17,s=0.59 RRCF-mid:w=0.14,s=0.28 RRCF-slow:w=0.12,s=0.44 COPOD!:w=0.22,s=0.20"} +{"timestamp":"2026-03-21T13:12:19.286525456Z","score":0.2669920851674291,"is_anomaly":false,"confidence":0.30940267963286183,"method":"SEAD","details":"MAD!:w=0.34,s=0.09 RRCF-fast:w=0.17,s=0.29 RRCF-mid:w=0.14,s=0.12 RRCF-slow:w=0.12,s=0.40 COPOD!:w=0.22,s=0.54"} +{"timestamp":"2026-03-21T13:12:49.267685232Z","score":0.317802012374092,"is_anomaly":false,"confidence":0.3683215397693079,"method":"SEAD","details":"MAD!:w=0.34,s=0.06 RRCF-fast:w=0.17,s=0.28 RRCF-mid:w=0.14,s=0.13 RRCF-slow:w=0.12,s=0.24 COPOD!:w=0.22,s=0.93"} +{"timestamp":"2026-03-21T13:13:21.640497671Z","score":0.7825169161896004,"is_anomaly":false,"confidence":0.9069100390944544,"method":"SEAD","details":"MAD!:w=0.35,s=0.79 RRCF-fast!:w=0.17,s=0.99 RRCF-mid!:w=0.14,s=0.96 RRCF-slow!:w=0.12,s=0.99 COPOD!:w=0.22,s=0.37"} +{"timestamp":"2026-03-21T13:13:50.53849826Z","score":0.673477539344404,"is_anomaly":false,"confidence":0.7805371729345213,"method":"SEAD","details":"MAD!:w=0.35,s=0.69 RRCF-fast:w=0.17,s=0.86 RRCF-mid:w=0.14,s=0.53 RRCF-slow:w=0.12,s=0.70 COPOD!:w=0.22,s=0.59"} +{"timestamp":"2026-03-21T13:14:19.312120625Z","score":0.19957098271922266,"is_anomaly":false,"confidence":0.23129586593646895,"method":"SEAD","details":"MAD!:w=0.34,s=0.03 RRCF-fast:w=0.17,s=0.17 RRCF-mid:w=0.14,s=0.10 RRCF-slow:w=0.12,s=0.52 COPOD!:w=0.22,s=0.37"} +{"timestamp":"2026-03-21T13:14:49.268045051Z","score":0.4089982127138276,"is_anomaly":false,"confidence":0.4740147815436951,"method":"SEAD","details":"MAD!:w=0.35,s=0.52 RRCF-fast:w=0.17,s=0.51 RRCF-mid:w=0.14,s=0.26 RRCF-slow:w=0.12,s=0.48 COPOD!:w=0.22,s=0.22"} +{"timestamp":"2026-03-21T13:15:19.299749932Z","score":0.5911178457228607,"is_anomaly":false,"confidence":0.6850851367972944,"method":"SEAD","details":"MAD!:w=0.35,s=0.93 RRCF-fast:w=0.17,s=0.76 RRCF-mid:w=0.14,s=0.45 RRCF-slow:w=0.12,s=0.52 COPOD!:w=0.22,s=0.05"} +{"timestamp":"2026-03-21T13:15:49.311957665Z","score":0.746172140855797,"is_anomaly":false,"confidence":0.8647877016255576,"method":"SEAD","details":"MAD!:w=0.34,s=0.79 RRCF-fast:w=0.17,s=0.85 RRCF-mid:w=0.14,s=0.58 RRCF-slow:w=0.12,s=0.58 COPOD!:w=0.22,s=0.80"} +{"timestamp":"2026-03-21T13:16:19.281905509Z","score":0.3582926551516568,"is_anomaly":false,"confidence":0.41807697973951663,"method":"SEAD","details":"MAD!:w=0.34,s=0.14 RRCF-fast:w=0.17,s=0.41 RRCF-mid:w=0.15,s=0.20 RRCF-slow:w=0.12,s=0.49 COPOD!:w=0.22,s=0.69"} +{"timestamp":"2026-03-21T13:16:49.266290499Z","score":0.25354392491642286,"is_anomaly":false,"confidence":0.295849989767424,"method":"SEAD","details":"MAD!:w=0.34,s=0.09 RRCF-fast:w=0.17,s=0.54 RRCF-mid:w=0.15,s=0.28 RRCF-slow:w=0.12,s=0.37 COPOD!:w=0.22,s=0.20"} +{"timestamp":"2026-03-21T13:17:20.714662167Z","score":0.8032859816070012,"is_anomaly":false,"confidence":0.9373214109432323,"method":"SEAD","details":"MAD!:w=0.35,s=0.85 RRCF-fast!:w=0.17,s=0.93 RRCF-mid:w=0.15,s=0.75 RRCF-slow:w=0.12,s=0.77 COPOD!:w=0.22,s=0.69"} +{"timestamp":"2026-03-21T13:17:49.944845058Z","score":0.7638179403112035,"is_anomaly":false,"confidence":0.8912677750008565,"method":"SEAD","details":"MAD!:w=0.34,s=0.83 RRCF-fast!:w=0.17,s=0.91 RRCF-mid:w=0.15,s=0.63 RRCF-slow:w=0.12,s=0.67 COPOD!:w=0.22,s=0.68"} +{"timestamp":"2026-03-21T13:18:19.282730153Z","score":0.7974994334266202,"is_anomaly":false,"confidence":0.9305693255973945,"method":"SEAD","details":"MAD!:w=0.34,s=0.85 RRCF-fast:w=0.17,s=0.84 RRCF-mid:w=0.15,s=0.56 RRCF-slow:w=0.12,s=0.54 COPOD!:w=0.22,s=0.98"} +{"timestamp":"2026-03-21T13:18:49.306564302Z","score":0.2412870832914422,"is_anomaly":false,"confidence":0.2815479848168941,"method":"SEAD","details":"MAD!:w=0.34,s=0.21 RRCF-fast:w=0.17,s=0.25 RRCF-mid:w=0.15,s=0.16 RRCF-slow:w=0.12,s=0.34 COPOD!:w=0.22,s=0.28"} +{"timestamp":"2026-03-21T13:19:19.267126122Z","score":0.8034497407073599,"is_anomaly":false,"confidence":0.9375124947098081,"method":"SEAD","details":"MAD!:w=0.34,s=0.95 RRCF-fast!:w=0.17,s=0.95 RRCF-mid!:w=0.15,s=0.94 RRCF-slow!:w=0.12,s=0.96 COPOD!:w=0.22,s=0.28"} +{"timestamp":"2026-03-21T13:19:49.319425829Z","score":0.757260049847707,"is_anomaly":false,"confidence":0.8899545759778338,"method":"SEAD","details":"MAD!:w=0.34,s=0.96 RRCF-fast:w=0.17,s=0.84 RRCF-mid:w=0.15,s=0.79 RRCF-slow:w=0.12,s=0.81 COPOD!:w=0.22,s=0.33"} +{"timestamp":"2026-03-21T13:20:19.265505783Z","score":0.9243300159419046,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.34,s=0.95 RRCF-fast!:w=0.17,s=1.00 RRCF-mid!:w=0.15,s=0.99 RRCF-slow!:w=0.12,s=0.98 COPOD!:w=0.22,s=0.76"} +{"timestamp":"2026-03-21T13:20:49.307472671Z","score":0.910580752551087,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.34,s=0.91 RRCF-fast!:w=0.17,s=0.95 RRCF-mid!:w=0.15,s=0.97 RRCF-slow!:w=0.12,s=0.96 COPOD!:w=0.22,s=0.82"} +{"timestamp":"2026-03-21T13:21:19.306977131Z","score":0.6376470773793533,"is_anomaly":false,"confidence":0.7390109068702321,"method":"SEAD","details":"MAD!:w=0.34,s=0.72 RRCF-fast!:w=0.17,s=0.91 RRCF-mid:w=0.15,s=0.85 RRCF-slow:w=0.12,s=0.82 COPOD!:w=0.22,s=0.08"} +{"timestamp":"2026-03-21T13:21:49.263978824Z","score":0.601273367306734,"is_anomaly":false,"confidence":0.696855035039882,"method":"SEAD","details":"MAD!:w=0.34,s=0.70 RRCF-fast:w=0.17,s=0.82 RRCF-mid:w=0.15,s=0.77 RRCF-slow!:w=0.12,s=0.87 COPOD!:w=0.23,s=0.04"} +{"timestamp":"2026-03-21T13:22:19.266717096Z","score":0.6263279576814729,"is_anomaly":false,"confidence":0.725892438661639,"method":"SEAD","details":"MAD!:w=0.34,s=0.77 RRCF-fast:w=0.17,s=0.80 RRCF-mid:w=0.15,s=0.78 RRCF-slow:w=0.12,s=0.84 COPOD!:w=0.23,s=0.08"} +{"timestamp":"2026-03-21T13:22:49.261806652Z","score":0.6091709302816339,"is_anomaly":false,"confidence":0.7108165322826866,"method":"SEAD","details":"MAD!:w=0.34,s=0.71 RRCF-fast:w=0.16,s=0.78 RRCF-mid:w=0.14,s=0.79 RRCF-slow:w=0.12,s=0.81 COPOD!:w=0.23,s=0.12"} +{"timestamp":"2026-03-21T13:23:19.266877685Z","score":0.559637606676223,"is_anomaly":false,"confidence":0.6530181319201539,"method":"SEAD","details":"MAD!:w=0.33,s=0.64 RRCF-fast:w=0.16,s=0.59 RRCF-mid:w=0.14,s=0.77 RRCF-slow:w=0.12,s=0.77 COPOD!:w=0.24,s=0.19"} +{"timestamp":"2026-03-21T13:23:49.261120312Z","score":0.5868313693461147,"is_anomaly":false,"confidence":0.6847494163919756,"method":"SEAD","details":"MAD!:w=0.33,s=0.77 RRCF-fast:w=0.16,s=0.65 RRCF-mid:w=0.14,s=0.72 RRCF-slow:w=0.12,s=0.74 COPOD!:w=0.24,s=0.13"} +{"timestamp":"2026-03-21T13:24:19.264012459Z","score":0.5298695538083784,"is_anomaly":false,"confidence":0.6182830139746105,"method":"SEAD","details":"MAD!:w=0.33,s=0.66 RRCF-fast:w=0.16,s=0.71 RRCF-mid:w=0.14,s=0.70 RRCF-slow:w=0.12,s=0.67 COPOD!:w=0.24,s=0.04"} +{"timestamp":"2026-03-21T13:24:49.301837926Z","score":0.7495511380004412,"is_anomaly":false,"confidence":0.874620429500292,"method":"SEAD","details":"MAD!:w=0.33,s=0.77 RRCF-fast:w=0.16,s=0.65 RRCF-mid:w=0.14,s=0.67 RRCF-slow:w=0.12,s=0.71 COPOD!:w=0.24,s=0.85"} +{"timestamp":"2026-03-21T13:25:19.297388198Z","score":0.7544232787783123,"is_anomaly":false,"confidence":0.8803055304142806,"method":"SEAD","details":"MAD!:w=0.33,s=0.71 RRCF-fast:w=0.16,s=0.70 RRCF-mid!:w=0.14,s=0.94 RRCF-slow!:w=0.12,s=0.91 COPOD!:w=0.24,s=0.67"} +{"timestamp":"2026-03-21T13:25:49.306446487Z","score":0.7291402828785545,"is_anomaly":false,"confidence":0.8508038411874579,"method":"SEAD","details":"MAD!:w=0.33,s=0.62 RRCF-fast:w=0.16,s=0.74 RRCF-mid!:w=0.14,s=0.86 RRCF-slow:w=0.12,s=0.82 COPOD!:w=0.24,s=0.75"} +{"timestamp":"2026-03-21T13:26:19.308849016Z","score":0.6952802086664296,"is_anomaly":false,"confidence":0.8171140197003036,"method":"SEAD","details":"MAD!:w=0.33,s=0.78 RRCF-fast:w=0.16,s=0.55 RRCF-mid:w=0.14,s=0.75 RRCF-slow:w=0.12,s=0.79 COPOD!:w=0.24,s=0.61"} +{"timestamp":"2026-03-21T13:26:51.157628581Z","score":0.6895865283218637,"is_anomaly":false,"confidence":0.8104226368948585,"method":"SEAD","details":"MAD!:w=0.33,s=0.92 RRCF-fast:w=0.16,s=0.49 RRCF-mid:w=0.14,s=0.77 RRCF-slow!:w=0.12,s=0.84 COPOD!:w=0.24,s=0.38"} +{"timestamp":"2026-03-21T13:27:19.257469649Z","score":0.8191375085910134,"is_anomaly":false,"confidence":0.9626748093633926,"method":"SEAD","details":"MAD!:w=0.33,s=0.94 RRCF-fast:w=0.17,s=0.77 RRCF-mid!:w=0.14,s=0.95 RRCF-slow!:w=0.12,s=0.94 COPOD!:w=0.24,s=0.55"} +{"timestamp":"2026-03-21T13:27:49.264188171Z","score":0.7702356115792178,"is_anomaly":false,"confidence":0.9052038427801209,"method":"SEAD","details":"MAD!:w=0.33,s=0.91 RRCF-fast:w=0.17,s=0.74 RRCF-mid!:w=0.14,s=0.92 RRCF-slow!:w=0.12,s=0.94 COPOD!:w=0.25,s=0.43"} +{"timestamp":"2026-03-21T13:28:19.266309311Z","score":0.7778859400622185,"is_anomaly":false,"confidence":0.9141947367835075,"method":"SEAD","details":"MAD!:w=0.32,s=0.95 RRCF-fast:w=0.17,s=0.75 RRCF-mid!:w=0.14,s=0.93 RRCF-slow!:w=0.12,s=0.93 COPOD!:w=0.25,s=0.41"} +{"timestamp":"2026-03-21T13:28:49.262559657Z","score":0.6257840876278251,"is_anomaly":false,"confidence":0.7354401073587588,"method":"SEAD","details":"MAD!:w=0.32,s=0.90 RRCF-fast:w=0.17,s=0.54 RRCF-mid:w=0.14,s=0.84 RRCF-slow!:w=0.12,s=0.92 COPOD!:w=0.25,s=0.06"} +{"timestamp":"2026-03-21T13:29:19.268747765Z","score":0.6934220128451449,"is_anomaly":false,"confidence":0.814930212599232,"method":"SEAD","details":"MAD!:w=0.32,s=0.93 RRCF-fast:w=0.17,s=0.53 RRCF-mid:w=0.14,s=0.87 RRCF-slow!:w=0.12,s=0.90 COPOD!:w=0.25,s=0.30"} +{"timestamp":"2026-03-21T13:29:49.266212605Z","score":0.8176261312065234,"is_anomaly":false,"confidence":0.964127134119941,"method":"SEAD","details":"MAD!:w=0.32,s=0.96 RRCF-fast!:w=0.17,s=0.85 RRCF-mid!:w=0.14,s=0.92 RRCF-slow!:w=0.12,s=0.97 COPOD!:w=0.26,s=0.49"} +{"timestamp":"2026-03-21T13:30:19.250175386Z","score":0.6836775816291776,"is_anomaly":false,"confidence":0.8061778877657916,"method":"SEAD","details":"MAD!:w=0.32,s=0.85 RRCF-fast:w=0.17,s=0.79 RRCF-mid:w=0.14,s=0.91 RRCF-slow!:w=0.12,s=0.97 COPOD!:w=0.26,s=0.16"} +{"timestamp":"2026-03-21T13:30:49.249338227Z","score":0.6855423363943316,"is_anomaly":false,"confidence":0.808376766445111,"method":"SEAD","details":"MAD!:w=0.31,s=0.88 RRCF-fast:w=0.17,s=0.44 RRCF-mid:w=0.14,s=0.87 RRCF-slow:w=0.12,s=0.90 COPOD!:w=0.26,s=0.41"} +{"timestamp":"2026-03-21T13:31:19.26785724Z","score":0.6028656289121244,"is_anomaly":false,"confidence":0.7108861726382956,"method":"SEAD","details":"MAD!:w=0.31,s=0.87 RRCF-fast:w=0.17,s=0.41 RRCF-mid:w=0.14,s=0.79 RRCF-slow:w=0.12,s=0.86 COPOD!:w=0.26,s=0.19"} +{"timestamp":"2026-03-21T13:31:49.297116947Z","score":0.7791332819913824,"is_anomaly":false,"confidence":0.9187371949026842,"method":"SEAD","details":"MAD!:w=0.31,s=0.94 RRCF-fast:w=0.17,s=0.46 RRCF-mid:w=0.14,s=0.71 RRCF-slow:w=0.12,s=0.86 COPOD!:w=0.27,s=0.80"} +{"timestamp":"2026-03-21T13:32:19.296952196Z","score":0.6308397879284802,"is_anomaly":false,"confidence":0.74387269879305,"method":"SEAD","details":"MAD!:w=0.31,s=0.87 RRCF-fast:w=0.17,s=0.61 RRCF-mid:w=0.14,s=0.74 RRCF-slow:w=0.12,s=0.82 COPOD!:w=0.27,s=0.23"} +{"timestamp":"2026-03-21T13:32:49.298838818Z","score":0.550842405981315,"is_anomaly":false,"confidence":0.650789819300276,"method":"SEAD","details":"MAD!:w=0.31,s=0.87 RRCF-fast:w=0.17,s=0.26 RRCF-mid:w=0.14,s=0.65 RRCF-slow:w=0.12,s=0.73 COPOD!:w=0.27,s=0.24"} +{"timestamp":"2026-03-21T13:33:19.30714583Z","score":0.5091630646424371,"is_anomaly":false,"confidence":0.6015479840240664,"method":"SEAD","details":"MAD!:w=0.30,s=0.68 RRCF-fast:w=0.17,s=0.38 RRCF-mid:w=0.14,s=0.61 RRCF-slow:w=0.12,s=0.77 COPOD!:w=0.27,s=0.23"} +{"timestamp":"2026-03-21T13:33:49.260634208Z","score":0.5094051443839289,"is_anomaly":false,"confidence":0.6018339878420569,"method":"SEAD","details":"MAD!:w=0.30,s=0.86 RRCF-fast:w=0.17,s=0.46 RRCF-mid:w=0.14,s=0.57 RRCF-slow:w=0.12,s=0.77 COPOD!:w=0.27,s=0.02"} +{"timestamp":"2026-03-21T13:34:19.692394604Z","score":0.905278289516905,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=0.96 RRCF-fast:w=0.17,s=0.77 RRCF-mid:w=0.14,s=0.80 RRCF-slow:w=0.12,s=0.90 COPOD!:w=0.28,s=0.99"} +{"timestamp":"2026-03-21T13:34:49.320470364Z","score":0.637821451912634,"is_anomaly":false,"confidence":0.7521053266794627,"method":"SEAD","details":"MAD!:w=0.30,s=0.30 RRCF-fast!:w=0.17,s=0.97 RRCF-mid!:w=0.14,s=0.98 RRCF-slow!:w=0.12,s=0.97 COPOD!:w=0.28,s=0.48"} +{"timestamp":"2026-03-21T13:35:19.628118314Z","score":0.8371888352458441,"is_anomaly":false,"confidence":0.9871950536264211,"method":"SEAD","details":"MAD!:w=0.30,s=0.96 RRCF-fast:w=0.17,s=0.87 RRCF-mid:w=0.14,s=0.83 RRCF-slow:w=0.12,s=0.89 COPOD!:w=0.28,s=0.67"} +{"timestamp":"2026-03-21T13:35:51.511328968Z","score":0.7553779965833456,"is_anomaly":false,"confidence":0.8907254736935601,"method":"SEAD","details":"MAD!:w=0.30,s=0.63 RRCF-fast!:w=0.17,s=0.98 RRCF-mid!:w=0.14,s=0.96 RRCF-slow!:w=0.12,s=0.97 COPOD!:w=0.28,s=0.57"} +{"timestamp":"2026-03-21T13:36:19.284372688Z","score":0.7790891224229617,"is_anomaly":false,"confidence":0.9204506837072535,"method":"SEAD","details":"MAD!:w=0.30,s=0.64 RRCF-fast:w=0.17,s=0.85 RRCF-mid:w=0.14,s=0.72 RRCF-slow:w=0.12,s=0.83 COPOD!:w=0.28,s=0.90"} +{"timestamp":"2026-03-21T13:36:49.27383175Z","score":0.5408238846264506,"is_anomaly":false,"confidence":0.6389534907398904,"method":"SEAD","details":"MAD!:w=0.30,s=0.00 RRCF-fast:w=0.17,s=0.73 RRCF-mid:w=0.14,s=0.71 RRCF-slow:w=0.12,s=0.71 COPOD!:w=0.28,s=0.86"} +{"timestamp":"2026-03-21T13:37:19.2655368Z","score":0.5149637695912428,"is_anomaly":false,"confidence":0.6084011959127232,"method":"SEAD","details":"MAD!:w=0.31,s=0.42 RRCF-fast:w=0.17,s=0.69 RRCF-mid:w=0.14,s=0.51 RRCF-slow:w=0.11,s=0.64 COPOD!:w=0.28,s=0.46"} +{"timestamp":"2026-03-21T13:37:49.310847134Z","score":0.8356871637907732,"is_anomaly":false,"confidence":0.9873181374736162,"method":"SEAD","details":"MAD!:w=0.31,s=0.81 RRCF-fast:w=0.17,s=0.82 RRCF-mid:w=0.14,s=0.58 RRCF-slow:w=0.11,s=0.83 COPOD!:w=0.28,s=1.00"} +{"timestamp":"2026-03-21T13:38:19.312305279Z","score":0.5221424709841435,"is_anomaly":false,"confidence":0.6168824343423858,"method":"SEAD","details":"MAD!:w=0.31,s=0.16 RRCF-fast:w=0.17,s=0.51 RRCF-mid:w=0.14,s=0.37 RRCF-slow:w=0.11,s=0.56 COPOD!:w=0.28,s=1.00"} +{"timestamp":"2026-03-21T13:38:49.261528776Z","score":0.43394946753561864,"is_anomaly":false,"confidence":0.5126872813284019,"method":"SEAD","details":"MAD!:w=0.31,s=0.03 RRCF-fast:w=0.17,s=0.45 RRCF-mid:w=0.14,s=0.33 RRCF-slow:w=0.11,s=0.32 COPOD!:w=0.27,s=0.98"} +{"timestamp":"2026-03-21T13:39:20.79084965Z","score":0.7723446337300162,"is_anomaly":false,"confidence":0.9124824435534559,"method":"SEAD","details":"MAD!:w=0.31,s=0.60 RRCF-fast!:w=0.17,s=0.95 RRCF-mid:w=0.14,s=0.70 RRCF-slow:w=0.11,s=0.84 COPOD!:w=0.27,s=0.87"} +{"timestamp":"2026-03-21T13:39:52.097919255Z","score":0.6583170820073442,"is_anomaly":false,"confidence":0.781616908434258,"method":"SEAD","details":"MAD!:w=0.31,s=0.73 RRCF-fast:w=0.17,s=0.44 RRCF-mid:w=0.14,s=0.58 RRCF-slow:w=0.11,s=0.69 COPOD!:w=0.27,s=0.73"} +{"timestamp":"2026-03-21T13:40:19.322048754Z","score":0.25702073952874444,"is_anomaly":false,"confidence":0.3051595672124801,"method":"SEAD","details":"MAD!:w=0.31,s=0.15 RRCF-fast:w=0.17,s=0.23 RRCF-mid:w=0.14,s=0.28 RRCF-slow:w=0.11,s=0.52 COPOD!:w=0.27,s=0.27"} +{"timestamp":"2026-03-21T13:40:49.268047258Z","score":0.42536744563339723,"is_anomaly":false,"confidence":0.5050368536553396,"method":"SEAD","details":"MAD!:w=0.31,s=0.47 RRCF-fast:w=0.17,s=0.09 RRCF-mid:w=0.14,s=0.30 RRCF-slow:w=0.11,s=0.52 COPOD!:w=0.27,s=0.61"} +{"timestamp":"2026-03-21T13:41:19.26847839Z","score":0.27373841152776324,"is_anomaly":false,"confidence":0.3250083839319971,"method":"SEAD","details":"MAD!:w=0.31,s=0.01 RRCF-fast:w=0.17,s=0.12 RRCF-mid:w=0.14,s=0.23 RRCF-slow:w=0.11,s=0.53 COPOD!:w=0.26,s=0.59"} +{"timestamp":"2026-03-21T13:41:49.310893055Z","score":0.7533452295602121,"is_anomaly":false,"confidence":0.8944434003096101,"method":"SEAD","details":"MAD!:w=0.32,s=0.76 RRCF-fast:w=0.17,s=0.69 RRCF-mid:w=0.14,s=0.48 RRCF-slow:w=0.11,s=0.61 COPOD!:w=0.26,s=0.99"} +{"timestamp":"2026-03-21T13:42:19.333640637Z","score":0.44544285115415805,"is_anomaly":false,"confidence":0.5288722922723281,"method":"SEAD","details":"MAD!:w=0.32,s=0.18 RRCF-fast:w=0.17,s=0.28 RRCF-mid:w=0.14,s=0.17 RRCF-slow:w=0.11,s=0.50 COPOD!:w=0.26,s=1.00"} +{"timestamp":"2026-03-21T13:42:49.269928384Z","score":0.3547545427468604,"is_anomaly":false,"confidence":0.423744951929137,"method":"SEAD","details":"MAD!:w=0.32,s=0.04 RRCF-fast:w=0.17,s=0.08 RRCF-mid:w=0.14,s=0.24 RRCF-slow:w=0.11,s=0.48 COPOD!:w=0.26,s=0.93"} +{"timestamp":"2026-03-21T13:43:21.171853153Z","score":0.8199611372675801,"is_anomaly":false,"confidence":0.9794219687924948,"method":"SEAD","details":"MAD!:w=0.32,s=0.85 RRCF-fast:w=0.17,s=0.83 RRCF-mid:w=0.14,s=0.69 RRCF-slow:w=0.11,s=0.77 COPOD!:w=0.25,s=0.87"} +{"timestamp":"2026-03-21T13:43:51.632052077Z","score":0.7262989736185556,"is_anomaly":false,"confidence":0.8675449827341221,"method":"SEAD","details":"MAD!:w=0.32,s=0.89 RRCF-fast:w=0.17,s=0.43 RRCF-mid:w=0.14,s=0.47 RRCF-slow:w=0.11,s=0.61 COPOD!:w=0.25,s=0.91"} +{"timestamp":"2026-03-21T13:44:19.309561073Z","score":0.30433971813891314,"is_anomaly":false,"confidence":0.363525772592921,"method":"SEAD","details":"MAD!:w=0.32,s=0.17 RRCF-fast:w=0.17,s=0.14 RRCF-mid:w=0.14,s=0.31 RRCF-slow:w=0.11,s=0.41 COPOD!:w=0.25,s=0.53"} +{"timestamp":"2026-03-21T13:44:49.275771721Z","score":0.28769049323729495,"is_anomaly":false,"confidence":0.3436387122300949,"method":"SEAD","details":"MAD!:w=0.32,s=0.47 RRCF-fast:w=0.17,s=0.30 RRCF-mid:w=0.14,s=0.15 RRCF-slow:w=0.11,s=0.28 COPOD!:w=0.25,s=0.12"} +{"timestamp":"2026-03-21T13:45:19.271837419Z","score":0.19578597971588407,"is_anomaly":false,"confidence":0.23386119292714969,"method":"SEAD","details":"MAD!:w=0.32,s=0.13 RRCF-fast:w=0.17,s=0.10 RRCF-mid:w=0.14,s=0.15 RRCF-slow:w=0.11,s=0.28 COPOD!:w=0.25,s=0.34"} +{"timestamp":"2026-03-21T13:45:49.346027062Z","score":0.7302951211656143,"is_anomaly":false,"confidence":0.872318275662575,"method":"SEAD","details":"MAD!:w=0.32,s=0.80 RRCF-fast:w=0.17,s=0.53 RRCF-mid:w=0.14,s=0.44 RRCF-slow:w=0.11,s=0.67 COPOD!:w=0.25,s=0.97"} +{"timestamp":"2026-03-21T13:46:19.311824776Z","score":0.3637226607204893,"is_anomaly":false,"confidence":0.43523782161568864,"method":"SEAD","details":"MAD!:w=0.32,s=0.19 RRCF-fast:w=0.17,s=0.11 RRCF-mid:w=0.14,s=0.09 RRCF-slow:w=0.11,s=0.33 COPOD!:w=0.25,s=0.94"} +{"timestamp":"2026-03-21T13:46:49.264294052Z","score":0.26064083538041577,"is_anomaly":false,"confidence":0.3118880445621767,"method":"SEAD","details":"MAD!:w=0.32,s=0.13 RRCF-fast:w=0.17,s=0.13 RRCF-mid:w=0.14,s=0.14 RRCF-slow:w=0.11,s=0.23 COPOD!:w=0.25,s=0.61"} +{"timestamp":"2026-03-21T13:47:20.414008693Z","score":0.9768105731754296,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.32,s=0.96 RRCF-fast!:w=0.17,s=0.98 RRCF-mid!:w=0.14,s=0.99 RRCF-slow!:w=0.11,s=1.00 COPOD!:w=0.24,s=0.98"} +{"timestamp":"2026-03-21T13:47:49.312857376Z","score":0.9235491114131784,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.32,s=0.88 RRCF-fast!:w=0.17,s=0.93 RRCF-mid!:w=0.14,s=0.98 RRCF-slow!:w=0.11,s=0.99 COPOD!:w=0.24,s=0.92"} +{"timestamp":"2026-03-21T13:48:19.316145929Z","score":0.45939993273779156,"is_anomaly":false,"confidence":0.5454434724168571,"method":"SEAD","details":"MAD!:w=0.33,s=0.17 RRCF-fast:w=0.17,s=0.67 RRCF-mid:w=0.14,s=0.88 RRCF-slow:w=0.11,s=0.94 COPOD!:w=0.24,s=0.21"} +{"timestamp":"2026-03-21T13:48:49.285043681Z","score":0.7748516951121448,"is_anomaly":false,"confidence":0.9199779300605212,"method":"SEAD","details":"MAD!:w=0.33,s=0.82 RRCF-fast:w=0.17,s=0.62 RRCF-mid:w=0.14,s=0.71 RRCF-slow:w=0.11,s=0.92 COPOD!:w=0.25,s=0.79"} +{"timestamp":"2026-03-21T13:49:19.268836549Z","score":0.887235226791536,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.33,s=0.95 RRCF-fast!:w=0.17,s=0.90 RRCF-mid:w=0.14,s=0.83 RRCF-slow!:w=0.11,s=0.96 COPOD!:w=0.25,s=0.79"} +{"timestamp":"2026-03-21T13:49:49.271794329Z","score":0.8652399026332017,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.33,s=0.94 RRCF-fast:w=0.17,s=0.78 RRCF-mid:w=0.14,s=0.77 RRCF-slow:w=0.11,s=0.91 COPOD!:w=0.25,s=0.87"} +{"timestamp":"2026-03-21T13:50:19.295400928Z","score":0.5383650168335357,"is_anomaly":false,"confidence":0.6360484745151798,"method":"SEAD","details":"MAD!:w=0.33,s=0.66 RRCF-fast:w=0.17,s=0.69 RRCF-mid:w=0.14,s=0.60 RRCF-slow:w=0.11,s=0.82 COPOD!:w=0.25,s=0.10"} +{"timestamp":"2026-03-21T13:50:49.417522857Z","score":0.572720443979161,"is_anomaly":false,"confidence":0.676637510474121,"method":"SEAD","details":"MAD!:w=0.32,s=0.66 RRCF-fast:w=0.17,s=0.69 RRCF-mid:w=0.14,s=0.53 RRCF-slow:w=0.11,s=0.84 COPOD!:w=0.25,s=0.28"} +{"timestamp":"2026-03-21T13:51:19.307075509Z","score":0.5255918004924338,"is_anomaly":false,"confidence":0.6209576262721144,"method":"SEAD","details":"MAD!:w=0.32,s=0.17 RRCF-fast:w=0.17,s=0.55 RRCF-mid:w=0.14,s=0.39 RRCF-slow:w=0.11,s=0.74 COPOD!:w=0.25,s=0.95"} +{"timestamp":"2026-03-21T13:51:49.266959927Z","score":0.5232144689366292,"is_anomaly":false,"confidence":0.6181489405993715,"method":"SEAD","details":"MAD!:w=0.33,s=0.16 RRCF-fast:w=0.17,s=0.49 RRCF-mid:w=0.14,s=0.54 RRCF-slow:w=0.11,s=0.67 COPOD!:w=0.25,s=0.94"} +{"timestamp":"2026-03-21T13:52:19.296036315Z","score":0.9174242309418938,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.33,s=0.96 RRCF-fast!:w=0.17,s=0.97 RRCF-mid!:w=0.14,s=0.92 RRCF-slow!:w=0.11,s=0.95 COPOD!:w=0.24,s=0.81"} +{"timestamp":"2026-03-21T13:52:49.256897166Z","score":0.6327997064652765,"is_anomaly":false,"confidence":0.7476178343425764,"method":"SEAD","details":"MAD!:w=0.33,s=0.88 RRCF-fast!:w=0.17,s=0.92 RRCF-mid:w=0.14,s=0.62 RRCF-slow:w=0.11,s=0.81 COPOD!:w=0.25,s=0.03"} +{"timestamp":"2026-03-21T13:53:19.257691713Z","score":0.7688031470994273,"is_anomaly":false,"confidence":0.9082983730836645,"method":"SEAD","details":"MAD!:w=0.33,s=0.95 RRCF-fast!:w=0.17,s=0.93 RRCF-mid:w=0.14,s=0.84 RRCF-slow!:w=0.11,s=0.96 COPOD!:w=0.25,s=0.28"} +{"timestamp":"2026-03-21T13:53:49.259395703Z","score":0.6405925295055159,"is_anomaly":false,"confidence":0.7568246235133588,"method":"SEAD","details":"MAD!:w=0.32,s=0.92 RRCF-fast!:w=0.17,s=0.91 RRCF-mid:w=0.14,s=0.51 RRCF-slow:w=0.11,s=0.81 COPOD!:w=0.25,s=0.10"} +{"timestamp":"2026-03-21T13:54:19.25823032Z","score":0.5508508180319877,"is_anomaly":false,"confidence":0.6507997576726268,"method":"SEAD","details":"MAD!:w=0.32,s=0.91 RRCF-fast:w=0.17,s=0.50 RRCF-mid:w=0.14,s=0.49 RRCF-slow:w=0.11,s=0.82 COPOD!:w=0.26,s=0.05"} +{"timestamp":"2026-03-21T13:54:49.258283128Z","score":0.5812749085325002,"is_anomaly":false,"confidence":0.6867441369437379,"method":"SEAD","details":"MAD!:w=0.32,s=0.90 RRCF-fast:w=0.17,s=0.73 RRCF-mid:w=0.14,s=0.45 RRCF-slow:w=0.11,s=0.74 COPOD!:w=0.26,s=0.09"} +{"timestamp":"2026-03-21T13:55:19.258372473Z","score":0.5587444442296968,"is_anomaly":false,"confidence":0.660125640195559,"method":"SEAD","details":"MAD!:w=0.31,s=0.94 RRCF-fast:w=0.17,s=0.67 RRCF-mid:w=0.14,s=0.48 RRCF-slow:w=0.11,s=0.74 COPOD!:w=0.26,s=0.00"} +{"timestamp":"2026-03-21T13:55:49.72737171Z","score":0.6514420719775621,"is_anomaly":false,"confidence":0.7696427575353664,"method":"SEAD","details":"MAD!:w=0.31,s=0.95 RRCF-fast:w=0.17,s=0.79 RRCF-mid:w=0.14,s=0.55 RRCF-slow:w=0.11,s=0.75 COPOD!:w=0.27,s=0.23"} +{"timestamp":"2026-03-21T13:56:20.781516383Z","score":0.5177842241456405,"is_anomaly":false,"confidence":0.6147628788223233,"method":"SEAD","details":"MAD!:w=0.31,s=0.93 RRCF-fast:w=0.17,s=0.57 RRCF-mid:w=0.14,s=0.38 RRCF-slow:w=0.11,s=0.72 COPOD!:w=0.27,s=0.00"} +{"timestamp":"2026-03-21T13:56:49.258530362Z","score":0.4859949060185106,"is_anomaly":false,"confidence":0.5770195644911859,"method":"SEAD","details":"MAD!:w=0.30,s=0.93 RRCF-fast:w=0.17,s=0.44 RRCF-mid:w=0.14,s=0.37 RRCF-slow:w=0.11,s=0.65 COPOD!:w=0.27,s=0.01"} +{"timestamp":"2026-03-21T13:57:19.30001541Z","score":0.6020525848674158,"is_anomaly":false,"confidence":0.7148143242220677,"method":"SEAD","details":"MAD!:w=0.30,s=0.89 RRCF-fast:w=0.17,s=0.47 RRCF-mid:w=0.14,s=0.27 RRCF-slow:w=0.11,s=0.65 COPOD!:w=0.28,s=0.52"} +{"timestamp":"2026-03-21T13:57:49.299881917Z","score":0.8532626046638996,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=0.95 RRCF-fast:w=0.17,s=0.75 RRCF-mid:w=0.15,s=0.66 RRCF-slow:w=0.11,s=0.88 COPOD!:w=0.28,s=0.90"} +{"timestamp":"2026-03-21T13:58:19.302185502Z","score":0.7545684085169269,"is_anomaly":false,"confidence":0.8914808171923586,"method":"SEAD","details":"MAD!:w=0.30,s=0.92 RRCF-fast:w=0.17,s=0.73 RRCF-mid:w=0.15,s=0.65 RRCF-slow:w=0.11,s=0.82 COPOD!:w=0.28,s=0.63"} +{"timestamp":"2026-03-21T13:58:49.30742514Z","score":0.7162116577808146,"is_anomaly":false,"confidence":0.8461644388426733,"method":"SEAD","details":"MAD!:w=0.30,s=0.93 RRCF-fast:w=0.17,s=0.43 RRCF-mid:w=0.15,s=0.45 RRCF-slow:w=0.11,s=0.71 COPOD!:w=0.28,s=0.80"} +{"timestamp":"2026-03-21T13:59:19.298841058Z","score":0.6183152540216912,"is_anomaly":false,"confidence":0.7305052553434497,"method":"SEAD","details":"MAD!:w=0.29,s=0.94 RRCF-fast:w=0.17,s=0.23 RRCF-mid:w=0.15,s=0.39 RRCF-slow:w=0.11,s=0.76 COPOD!:w=0.28,s=0.58"} +{"timestamp":"2026-03-21T13:59:49.304016266Z","score":0.48705303633908087,"is_anomaly":false,"confidence":0.5782758778582381,"method":"SEAD","details":"MAD!:w=0.29,s=0.85 RRCF-fast:w=0.17,s=0.31 RRCF-mid:w=0.15,s=0.27 RRCF-slow:w=0.11,s=0.60 COPOD!:w=0.28,s=0.28"} +{"timestamp":"2026-03-21T14:00:19.299288718Z","score":0.5465147522009908,"is_anomaly":false,"confidence":0.6488745054686087,"method":"SEAD","details":"MAD!:w=0.29,s=0.84 RRCF-fast:w=0.17,s=0.49 RRCF-mid:w=0.15,s=0.36 RRCF-slow:w=0.11,s=0.68 COPOD!:w=0.28,s=0.32"} +{"timestamp":"2026-03-21T14:00:49.256985144Z","score":0.4965096945211353,"is_anomaly":false,"confidence":0.5895037255541217,"method":"SEAD","details":"MAD!:w=0.29,s=0.79 RRCF-fast:w=0.17,s=0.37 RRCF-mid:w=0.15,s=0.45 RRCF-slow:w=0.11,s=0.66 COPOD!:w=0.28,s=0.24"} +{"timestamp":"2026-03-21T14:01:19.259302614Z","score":0.4077200791507545,"is_anomaly":false,"confidence":0.48408421485989706,"method":"SEAD","details":"MAD!:w=0.28,s=0.83 RRCF-fast:w=0.17,s=0.22 RRCF-mid:w=0.15,s=0.19 RRCF-slow:w=0.11,s=0.65 COPOD!:w=0.28,s=0.12"} +{"timestamp":"2026-03-21T14:01:49.382824591Z","score":0.36390639763140287,"is_anomaly":false,"confidence":0.43206442799388234,"method":"SEAD","details":"MAD!:w=0.28,s=0.73 RRCF-fast:w=0.17,s=0.33 RRCF-mid:w=0.15,s=0.22 RRCF-slow:w=0.11,s=0.53 COPOD!:w=0.29,s=0.03"} +{"timestamp":"2026-03-21T14:02:19.257163017Z","score":0.43793348282038314,"is_anomaly":false,"confidence":0.5199564530487095,"method":"SEAD","details":"MAD!:w=0.28,s=0.88 RRCF-fast:w=0.17,s=0.25 RRCF-mid:w=0.15,s=0.29 RRCF-slow:w=0.11,s=0.59 COPOD!:w=0.29,s=0.14"} +{"timestamp":"2026-03-21T14:02:49.256222186Z","score":0.37867167783269684,"is_anomaly":false,"confidence":0.4523133394648034,"method":"SEAD","details":"MAD!:w=0.27,s=0.79 RRCF-fast:w=0.17,s=0.12 RRCF-mid:w=0.15,s=0.35 RRCF-slow:w=0.11,s=0.55 COPOD!:w=0.29,s=0.10"} +{"timestamp":"2026-03-21T14:03:19.258891817Z","score":0.33984470939290173,"is_anomaly":false,"confidence":0.405935548929179,"method":"SEAD","details":"MAD!:w=0.27,s=0.81 RRCF-fast:w=0.18,s=0.11 RRCF-mid:w=0.15,s=0.26 RRCF-slow:w=0.11,s=0.47 COPOD!:w=0.29,s=0.03"} +{"timestamp":"2026-03-21T14:03:49.300938748Z","score":0.395587176735206,"is_anomaly":false,"confidence":0.47251845710417306,"method":"SEAD","details":"MAD!:w=0.27,s=0.73 RRCF-fast:w=0.18,s=0.09 RRCF-mid:w=0.15,s=0.29 RRCF-slow:w=0.11,s=0.29 COPOD!:w=0.30,s=0.37"} +{"timestamp":"2026-03-21T14:04:19.398791632Z","score":0.9121159628435338,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.27,s=0.96 RRCF-fast:w=0.18,s=0.72 RRCF-mid!:w=0.15,s=0.92 RRCF-slow!:w=0.11,s=0.94 COPOD!:w=0.30,s=0.98"} +{"timestamp":"2026-03-21T14:04:49.356119495Z","score":0.7668408969524909,"is_anomaly":false,"confidence":0.9104667454615324,"method":"SEAD","details":"MAD!:w=0.27,s=0.33 RRCF-fast!:w=0.18,s=0.97 RRCF-mid!:w=0.15,s=0.92 RRCF-slow!:w=0.11,s=0.97 COPOD!:w=0.30,s=0.88"} +{"timestamp":"2026-03-21T14:05:19.26732105Z","score":0.4658177280644974,"is_anomaly":false,"confidence":0.5530632919222663,"method":"SEAD","details":"MAD!:w=0.27,s=0.04 RRCF-fast:w=0.18,s=0.69 RRCF-mid:w=0.15,s=0.69 RRCF-slow:w=0.11,s=0.71 COPOD!:w=0.30,s=0.52"} +{"timestamp":"2026-03-21T14:05:49.981430787Z","score":0.7941340201161315,"is_anomaly":false,"confidence":0.9428717477495365,"method":"SEAD","details":"MAD!:w=0.27,s=0.56 RRCF-fast!:w=0.18,s=0.99 RRCF-mid!:w=0.15,s=0.86 RRCF-slow!:w=0.11,s=0.93 COPOD!:w=0.29,s=0.81"} +{"timestamp":"2026-03-21T14:06:19.340962684Z","score":0.7551254469478768,"is_anomaly":false,"confidence":0.9019774454184293,"method":"SEAD","details":"MAD!:w=0.27,s=0.55 RRCF-fast:w=0.18,s=0.88 RRCF-mid:w=0.15,s=0.74 RRCF-slow:w=0.11,s=0.65 COPOD!:w=0.29,s=0.92"} +{"timestamp":"2026-03-21T14:06:49.31491429Z","score":0.7583320056664846,"is_anomaly":false,"confidence":0.905807595300524,"method":"SEAD","details":"MAD!:w=0.27,s=0.66 RRCF-fast:w=0.17,s=0.90 RRCF-mid:w=0.15,s=0.52 RRCF-slow:w=0.11,s=0.61 COPOD!:w=0.29,s=0.95"} +{"timestamp":"2026-03-21T14:07:19.276459488Z","score":0.38414951440972395,"is_anomaly":false,"confidence":0.45885647089036585,"method":"SEAD","details":"MAD!:w=0.28,s=0.19 RRCF-fast:w=0.17,s=0.49 RRCF-mid:w=0.15,s=0.21 RRCF-slow:w=0.11,s=0.48 COPOD!:w=0.29,s=0.55"} +{"timestamp":"2026-03-21T14:07:49.267178519Z","score":0.33268291281558376,"is_anomaly":false,"confidence":0.39738097166320907,"method":"SEAD","details":"MAD!:w=0.28,s=0.39 RRCF-fast:w=0.17,s=0.41 RRCF-mid:w=0.15,s=0.24 RRCF-slow:w=0.11,s=0.44 COPOD!:w=0.29,s=0.24"} +{"timestamp":"2026-03-21T14:08:19.311564832Z","score":0.5736272327083133,"is_anomaly":false,"confidence":0.6851826118056927,"method":"SEAD","details":"MAD!:w=0.28,s=0.58 RRCF-fast:w=0.17,s=0.79 RRCF-mid:w=0.15,s=0.72 RRCF-slow:w=0.11,s=0.55 COPOD!:w=0.29,s=0.38"} +{"timestamp":"2026-03-21T14:08:49.268190988Z","score":0.37587361052966156,"is_anomaly":false,"confidence":0.44897112181301924,"method":"SEAD","details":"MAD!:w=0.28,s=0.11 RRCF-fast:w=0.17,s=0.43 RRCF-mid:w=0.15,s=0.21 RRCF-slow:w=0.11,s=0.37 COPOD!:w=0.29,s=0.68"} +{"timestamp":"2026-03-21T14:09:22.232124823Z","score":0.9038439051896141,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=0.96 RRCF-fast!:w=0.17,s=0.96 RRCF-mid!:w=0.15,s=0.83 RRCF-slow:w=0.11,s=0.78 COPOD!:w=0.29,s=0.91"} +{"timestamp":"2026-03-21T14:09:50.955933845Z","score":0.6074904503891717,"is_anomaly":false,"confidence":0.7256313328769841,"method":"SEAD","details":"MAD!:w=0.28,s=0.46 RRCF-fast:w=0.17,s=0.81 RRCF-mid:w=0.15,s=0.37 RRCF-slow:w=0.11,s=0.39 COPOD!:w=0.29,s=0.83"} +{"timestamp":"2026-03-21T14:10:19.310672709Z","score":0.7031554091334716,"is_anomaly":false,"confidence":0.8399006048939808,"method":"SEAD","details":"MAD!:w=0.28,s=0.75 RRCF-fast:w=0.17,s=0.62 RRCF-mid:w=0.15,s=0.37 RRCF-slow:w=0.11,s=0.45 COPOD!:w=0.29,s=0.98"} +{"timestamp":"2026-03-21T14:10:49.312865396Z","score":0.2623798638972919,"is_anomaly":false,"confidence":0.3134058325326841,"method":"SEAD","details":"MAD!:w=0.28,s=0.22 RRCF-fast:w=0.17,s=0.37 RRCF-mid:w=0.15,s=0.02 RRCF-slow:w=0.11,s=0.21 COPOD!:w=0.29,s=0.39"} +{"timestamp":"2026-03-21T14:11:20.162255314Z","score":0.3050695548924852,"is_anomaly":false,"confidence":0.3643975433605732,"method":"SEAD","details":"MAD!:w=0.28,s=0.39 RRCF-fast:w=0.17,s=0.27 RRCF-mid:w=0.15,s=0.09 RRCF-slow:w=0.11,s=0.22 COPOD!:w=0.28,s=0.39"} +{"timestamp":"2026-03-21T14:11:49.31078796Z","score":0.4829684333460903,"is_anomaly":false,"confidence":0.5768930652357118,"method":"SEAD","details":"MAD!:w=0.28,s=0.57 RRCF-fast:w=0.17,s=0.58 RRCF-mid:w=0.15,s=0.25 RRCF-slow:w=0.11,s=0.40 COPOD!:w=0.28,s=0.49"} +{"timestamp":"2026-03-21T14:12:19.271267927Z","score":0.3067878165590889,"is_anomaly":false,"confidence":0.36644996163738774,"method":"SEAD","details":"MAD!:w=0.28,s=0.12 RRCF-fast:w=0.17,s=0.18 RRCF-mid:w=0.15,s=0.03 RRCF-slow:w=0.11,s=0.10 COPOD!:w=0.28,s=0.80"} +{"timestamp":"2026-03-21T14:12:49.310006203Z","score":0.7770130397735835,"is_anomaly":false,"confidence":0.9297893678885324,"method":"SEAD","details":"MAD!:w=0.28,s=0.95 RRCF-fast:w=0.17,s=0.86 RRCF-mid:w=0.15,s=0.78 RRCF-slow:w=0.11,s=0.61 COPOD!:w=0.28,s=0.62"} +{"timestamp":"2026-03-21T14:13:20.822169953Z","score":0.7870351096607568,"is_anomaly":false,"confidence":0.9417819774695054,"method":"SEAD","details":"MAD!:w=0.28,s=0.78 RRCF-fast:w=0.17,s=0.83 RRCF-mid:w=0.15,s=0.58 RRCF-slow:w=0.11,s=0.71 COPOD!:w=0.28,s=0.91"} +{"timestamp":"2026-03-21T14:13:49.308700844Z","score":0.5825703569391165,"is_anomaly":false,"confidence":0.6971153586905778,"method":"SEAD","details":"MAD!:w=0.28,s=0.51 RRCF-fast:w=0.17,s=0.58 RRCF-mid:w=0.16,s=0.36 RRCF-slow:w=0.11,s=0.45 COPOD!:w=0.28,s=0.83"} +{"timestamp":"2026-03-21T14:14:19.314440584Z","score":0.605219588311465,"is_anomaly":false,"confidence":0.7242178826417762,"method":"SEAD","details":"MAD!:w=0.28,s=0.75 RRCF-fast:w=0.17,s=0.16 RRCF-mid:w=0.16,s=0.41 RRCF-slow:w=0.11,s=0.45 COPOD!:w=0.28,s=0.91"} +{"timestamp":"2026-03-21T14:14:49.268337448Z","score":0.1718376339316818,"is_anomaly":false,"confidence":0.2056243548748631,"method":"SEAD","details":"MAD!:w=0.28,s=0.06 RRCF-fast:w=0.18,s=0.14 RRCF-mid:w=0.16,s=0.02 RRCF-slow:w=0.11,s=0.09 COPOD!:w=0.28,s=0.42"} +{"timestamp":"2026-03-21T14:15:19.261114277Z","score":0.16329074990611667,"is_anomaly":false,"confidence":0.1953969822456181,"method":"SEAD","details":"MAD!:w=0.28,s=0.06 RRCF-fast:w=0.18,s=0.17 RRCF-mid:w=0.16,s=0.04 RRCF-slow:w=0.11,s=0.11 COPOD!:w=0.28,s=0.35"} +{"timestamp":"2026-03-21T14:15:49.312267959Z","score":0.28543436593571647,"is_anomaly":false,"confidence":0.3415564798685591,"method":"SEAD","details":"MAD!:w=0.28,s=0.10 RRCF-fast:w=0.18,s=0.08 RRCF-mid:w=0.16,s=0.38 RRCF-slow:w=0.11,s=0.40 COPOD!:w=0.27,s=0.50"} +{"timestamp":"2026-03-21T14:16:19.257994802Z","score":0.2578385465060905,"is_anomaly":false,"confidence":0.30857082582760603,"method":"SEAD","details":"MAD!:w=0.28,s=0.16 RRCF-fast:w=0.18,s=0.21 RRCF-mid:w=0.16,s=0.01 RRCF-slow:w=0.11,s=0.16 COPOD!:w=0.27,s=0.58"} +{"timestamp":"2026-03-21T14:16:52.717159729Z","score":0.944538124621721,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=0.95 RRCF-fast!:w=0.18,s=0.97 RRCF-mid!:w=0.16,s=0.95 RRCF-slow!:w=0.11,s=0.94 COPOD!:w=0.27,s=0.92"} +{"timestamp":"2026-03-21T14:17:19.287836797Z","score":0.857371621812672,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=0.90 RRCF-fast!:w=0.18,s=0.98 RRCF-mid!:w=0.16,s=0.87 RRCF-slow:w=0.11,s=0.88 COPOD!:w=0.27,s=0.71"} +{"timestamp":"2026-03-21T14:17:49.313813774Z","score":0.34843279635445185,"is_anomaly":false,"confidence":0.4161937924699307,"method":"SEAD","details":"MAD!:w=0.28,s=0.25 RRCF-fast:w=0.18,s=0.87 RRCF-mid:w=0.16,s=0.21 RRCF-slow:w=0.11,s=0.35 COPOD!:w=0.27,s=0.19"} +{"timestamp":"2026-03-21T14:18:19.260699698Z","score":0.25375351433170845,"is_anomaly":false,"confidence":0.3031018853198068,"method":"SEAD","details":"MAD!:w=0.28,s=0.04 RRCF-fast:w=0.17,s=0.63 RRCF-mid:w=0.16,s=0.11 RRCF-slow:w=0.11,s=0.28 COPOD!:w=0.27,s=0.31"} +{"timestamp":"2026-03-21T14:18:49.270434007Z","score":0.21801667423671894,"is_anomaly":false,"confidence":0.2604151716532357,"method":"SEAD","details":"MAD!:w=0.29,s=0.00 RRCF-fast:w=0.17,s=0.61 RRCF-mid:w=0.16,s=0.00 RRCF-slow:w=0.11,s=0.17 COPOD!:w=0.27,s=0.34"} +{"timestamp":"2026-03-21T14:19:19.388407078Z","score":0.8140319713444282,"is_anomaly":false,"confidence":0.9723397363575498,"method":"SEAD","details":"MAD!:w=0.29,s=0.73 RRCF-fast:w=0.17,s=0.81 RRCF-mid:w=0.16,s=0.62 RRCF-slow!:w=0.11,s=0.93 COPOD!:w=0.27,s=0.97"} +{"timestamp":"2026-03-21T14:19:49.3248879Z","score":0.286552834459468,"is_anomaly":false,"confidence":0.3428948617083351,"method":"SEAD","details":"MAD!:w=0.29,s=0.24 RRCF-fast:w=0.17,s=0.41 RRCF-mid:w=0.16,s=0.12 RRCF-slow:w=0.11,s=0.21 COPOD!:w=0.27,s=0.39"} +{"timestamp":"2026-03-21T14:20:19.268474033Z","score":0.3421219296667839,"is_anomaly":false,"confidence":0.4093899541484871,"method":"SEAD","details":"MAD!:w=0.29,s=0.08 RRCF-fast:w=0.17,s=0.48 RRCF-mid:w=0.16,s=0.08 RRCF-slow:w=0.11,s=0.18 COPOD!:w=0.27,s=0.76"} +{"timestamp":"2026-03-21T14:20:49.356426336Z","score":0.8467456717048616,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=0.95 RRCF-fast!:w=0.17,s=0.95 RRCF-mid:w=0.16,s=0.67 RRCF-slow:w=0.11,s=0.67 COPOD!:w=0.27,s=0.86"} +{"timestamp":"2026-03-21T14:21:19.309744579Z","score":0.7165628667765838,"is_anomaly":false,"confidence":0.8559154597017076,"method":"SEAD","details":"MAD!:w=0.29,s=0.90 RRCF-fast:w=0.17,s=0.89 RRCF-mid:w=0.16,s=0.30 RRCF-slow:w=0.11,s=0.42 COPOD!:w=0.27,s=0.78"} +{"timestamp":"2026-03-21T14:21:49.314944845Z","score":0.37469235532535705,"is_anomaly":false,"confidence":0.4475601436028791,"method":"SEAD","details":"MAD!:w=0.29,s=0.45 RRCF-fast:w=0.17,s=0.63 RRCF-mid:w=0.16,s=0.17 RRCF-slow:w=0.11,s=0.21 COPOD!:w=0.27,s=0.32"} +{"timestamp":"2026-03-21T14:22:19.268192425Z","score":0.3107636867458668,"is_anomaly":false,"confidence":0.3711990337933851,"method":"SEAD","details":"MAD!:w=0.29,s=0.48 RRCF-fast:w=0.17,s=0.59 RRCF-mid:w=0.16,s=0.01 RRCF-slow:w=0.11,s=0.04 COPOD!:w=0.27,s=0.25"} +{"timestamp":"2026-03-21T14:22:49.269549336Z","score":0.1863425699873152,"is_anomaly":false,"confidence":0.22298125191015716,"method":"SEAD","details":"MAD!:w=0.29,s=0.02 RRCF-fast:w=0.17,s=0.49 RRCF-mid:w=0.16,s=0.05 RRCF-slow:w=0.11,s=0.22 COPOD!:w=0.27,s=0.24"} +{"timestamp":"2026-03-21T14:23:20.917400919Z","score":0.6326628522394422,"is_anomaly":false,"confidence":0.7570570419792145,"method":"SEAD","details":"MAD!:w=0.29,s=0.66 RRCF-fast:w=0.17,s=0.47 RRCF-mid:w=0.16,s=0.38 RRCF-slow:w=0.11,s=0.37 COPOD!:w=0.27,s=0.96"} +{"timestamp":"2026-03-21T14:23:51.394294746Z","score":0.4174070133443143,"is_anomaly":false,"confidence":0.4994775933267995,"method":"SEAD","details":"MAD!:w=0.29,s=0.41 RRCF-fast:w=0.17,s=0.35 RRCF-mid:w=0.17,s=0.03 RRCF-slow:w=0.11,s=0.01 COPOD!:w=0.26,s=0.89"} +{"timestamp":"2026-03-21T14:24:19.273816219Z","score":0.17981817225100966,"is_anomaly":false,"confidence":0.21517402688744638,"method":"SEAD","details":"MAD!:w=0.29,s=0.17 RRCF-fast:w=0.17,s=0.27 RRCF-mid:w=0.17,s=0.02 RRCF-slow:w=0.11,s=0.03 COPOD!:w=0.26,s=0.30"} +{"timestamp":"2026-03-21T14:24:54.517239643Z","score":0.7110041041905186,"is_anomaly":false,"confidence":0.850801753332338,"method":"SEAD","details":"MAD!:w=0.29,s=0.88 RRCF-fast:w=0.17,s=0.66 RRCF-mid:w=0.17,s=0.40 RRCF-slow:w=0.11,s=0.55 COPOD!:w=0.26,s=0.82"} +{"timestamp":"2026-03-21T14:25:19.353893662Z","score":0.6890038761820682,"is_anomaly":false,"confidence":0.8244758398066894,"method":"SEAD","details":"MAD!:w=0.29,s=0.85 RRCF-fast:w=0.17,s=0.46 RRCF-mid:w=0.17,s=0.44 RRCF-slow:w=0.12,s=0.41 COPOD!:w=0.26,s=0.95"} +{"timestamp":"2026-03-21T14:25:49.311880747Z","score":0.262607745185718,"is_anomaly":false,"confidence":0.31424168823474447,"method":"SEAD","details":"MAD!:w=0.29,s=0.24 RRCF-fast:w=0.17,s=0.36 RRCF-mid:w=0.17,s=0.05 RRCF-slow:w=0.12,s=0.23 COPOD!:w=0.26,s=0.37"} +{"timestamp":"2026-03-21T14:26:19.270090862Z","score":0.23292728317259298,"is_anomaly":false,"confidence":0.27875802551753015,"method":"SEAD","details":"MAD!:w=0.29,s=0.36 RRCF-fast:w=0.17,s=0.24 RRCF-mid:w=0.17,s=0.03 RRCF-slow:w=0.12,s=0.02 COPOD!:w=0.26,s=0.31"} +{"timestamp":"2026-03-21T14:26:49.268634994Z","score":0.14910098632811292,"is_anomaly":false,"confidence":0.17843807726355462,"method":"SEAD","details":"MAD!:w=0.29,s=0.02 RRCF-fast:w=0.17,s=0.41 RRCF-mid:w=0.17,s=0.04 RRCF-slow:w=0.12,s=0.06 COPOD!:w=0.26,s=0.23"} +{"timestamp":"2026-03-21T14:27:19.321539046Z","score":0.5780907053853347,"is_anomaly":false,"confidence":0.6918357583892228,"method":"SEAD","details":"MAD!:w=0.29,s=0.67 RRCF-fast:w=0.17,s=0.42 RRCF-mid:w=0.17,s=0.33 RRCF-slow:w=0.12,s=0.26 COPOD!:w=0.26,s=0.89"} +{"timestamp":"2026-03-21T14:27:49.315022192Z","score":0.13907563881886048,"is_anomaly":false,"confidence":0.16644014366495793,"method":"SEAD","details":"MAD!:w=0.29,s=0.26 RRCF-fast:w=0.17,s=0.11 RRCF-mid:w=0.17,s=0.03 RRCF-slow:w=0.12,s=0.06 COPOD!:w=0.26,s=0.14"} +{"timestamp":"2026-03-21T14:28:19.264203837Z","score":0.19680849961608574,"is_anomaly":false,"confidence":0.23553251474365236,"method":"SEAD","details":"MAD!:w=0.29,s=0.04 RRCF-fast:w=0.17,s=0.09 RRCF-mid:w=0.17,s=0.01 RRCF-slow:w=0.12,s=0.02 COPOD!:w=0.26,s=0.65"} +{"timestamp":"2026-03-21T14:28:49.307698809Z","score":0.802736388728048,"is_anomaly":false,"confidence":0.9606826975571432,"method":"SEAD","details":"MAD!:w=0.29,s=0.94 RRCF-fast:w=0.17,s=0.61 RRCF-mid:w=0.17,s=0.66 RRCF-slow:w=0.12,s=0.61 COPOD!:w=0.25,s=0.96"} +{"timestamp":"2026-03-21T14:29:19.313118953Z","score":0.7315005806158474,"is_anomaly":false,"confidence":0.8754305409826437,"method":"SEAD","details":"MAD!:w=0.29,s=0.91 RRCF-fast!:w=0.17,s=0.90 RRCF-mid:w=0.17,s=0.50 RRCF-slow:w=0.12,s=0.26 COPOD!:w=0.25,s=0.80"} +{"timestamp":"2026-03-21T14:29:52.28461554Z","score":0.6602242266598818,"is_anomaly":false,"confidence":0.795826923407686,"method":"SEAD","details":"MAD!:w=0.28,s=0.81 RRCF-fast:w=0.17,s=0.61 RRCF-mid:w=0.17,s=0.56 RRCF-slow:w=0.12,s=0.64 COPOD!:w=0.25,s=0.61"} +{"timestamp":"2026-03-21T14:30:19.303568559Z","score":0.15078733390127708,"is_anomaly":false,"confidence":0.18175737148361232,"method":"SEAD","details":"MAD!:w=0.28,s=0.26 RRCF-fast:w=0.17,s=0.22 RRCF-mid:w=0.17,s=0.06 RRCF-slow:w=0.12,s=0.03 COPOD!:w=0.25,s=0.10"} +{"timestamp":"2026-03-21T14:30:49.270872922Z","score":0.18748403485218595,"is_anomaly":false,"confidence":0.22599116575789974,"method":"SEAD","details":"MAD!:w=0.28,s=0.36 RRCF-fast:w=0.17,s=0.18 RRCF-mid:w=0.17,s=0.04 RRCF-slow:w=0.12,s=0.05 COPOD!:w=0.25,s=0.17"} +{"timestamp":"2026-03-21T14:31:19.313159648Z","score":0.3273885733547532,"is_anomaly":false,"confidence":0.3946305369765926,"method":"SEAD","details":"MAD!:w=0.28,s=0.53 RRCF-fast:w=0.17,s=0.15 RRCF-mid:w=0.18,s=0.21 RRCF-slow:w=0.12,s=0.22 COPOD!:w=0.25,s=0.36"} +{"timestamp":"2026-03-21T14:31:49.276540691Z","score":0.21212225514262978,"is_anomaly":false,"confidence":0.25568980185791335,"method":"SEAD","details":"MAD!:w=0.28,s=0.17 RRCF-fast:w=0.17,s=0.06 RRCF-mid:w=0.18,s=0.03 RRCF-slow:w=0.12,s=0.00 COPOD!:w=0.25,s=0.59"} +{"timestamp":"2026-03-21T14:32:20.35066094Z","score":0.6251532215362943,"is_anomaly":false,"confidence":0.7535527247622944,"method":"SEAD","details":"MAD!:w=0.28,s=0.94 RRCF-fast:w=0.17,s=0.39 RRCF-mid:w=0.18,s=0.69 RRCF-slow:w=0.12,s=0.59 COPOD!:w=0.25,s=0.40"} +{"timestamp":"2026-03-21T14:32:49.289952486Z","score":0.82322876950791,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=0.90 RRCF-fast!:w=0.17,s=0.91 RRCF-mid:w=0.18,s=0.67 RRCF-slow:w=0.12,s=0.57 COPOD!:w=0.25,s=0.92"} +{"timestamp":"2026-03-21T14:33:19.31588798Z","score":0.5254099722796376,"is_anomaly":false,"confidence":0.6382308195979407,"method":"SEAD","details":"MAD!:w=0.28,s=0.47 RRCF-fast:w=0.17,s=0.53 RRCF-mid:w=0.18,s=0.47 RRCF-slow:w=0.12,s=0.31 COPOD!:w=0.25,s=0.73"} +{"timestamp":"2026-03-21T14:33:49.27096251Z","score":0.11283626520867523,"is_anomaly":false,"confidence":0.13706550279592852,"method":"SEAD","details":"MAD!:w=0.28,s=0.12 RRCF-fast:w=0.17,s=0.06 RRCF-mid:w=0.18,s=0.11 RRCF-slow:w=0.12,s=0.02 COPOD!:w=0.25,s=0.18"} +{"timestamp":"2026-03-21T14:34:20.388666233Z","score":0.4536613572142252,"is_anomaly":false,"confidence":0.5510756839625564,"method":"SEAD","details":"MAD!:w=0.28,s=0.70 RRCF-fast:w=0.17,s=0.32 RRCF-mid:w=0.18,s=0.29 RRCF-slow:w=0.12,s=0.25 COPOD!:w=0.25,s=0.49"} +{"timestamp":"2026-03-21T14:34:49.309344858Z","score":0.15079091733898792,"is_anomaly":false,"confidence":0.18317012588022658,"method":"SEAD","details":"MAD!:w=0.28,s=0.26 RRCF-fast:w=0.17,s=0.10 RRCF-mid:w=0.18,s=0.05 RRCF-slow:w=0.12,s=0.03 COPOD!:w=0.25,s=0.19"} +{"timestamp":"2026-03-21T14:35:19.309455646Z","score":0.21992794899615126,"is_anomaly":false,"confidence":0.26715289496941963,"method":"SEAD","details":"MAD!:w=0.28,s=0.11 RRCF-fast:w=0.17,s=0.04 RRCF-mid:w=0.18,s=0.09 RRCF-slow:w=0.12,s=0.00 COPOD!:w=0.25,s=0.66"} +{"timestamp":"2026-03-21T14:35:49.262797016Z","score":0.2782682344288486,"is_anomaly":false,"confidence":0.33802054147741356,"method":"SEAD","details":"MAD!:w=0.28,s=0.11 RRCF-fast:w=0.17,s=0.08 RRCF-mid:w=0.18,s=0.12 RRCF-slow:w=0.12,s=0.02 COPOD!:w=0.25,s=0.85"} +{"timestamp":"2026-03-21T14:36:22.816264781Z","score":0.8343250187628134,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=0.94 RRCF-fast!:w=0.18,s=0.94 RRCF-mid!:w=0.18,s=0.80 RRCF-slow!:w=0.12,s=0.68 COPOD!:w=0.24,s=0.75"} +{"timestamp":"2026-03-21T14:36:49.311886134Z","score":0.5112776416070197,"is_anomaly":false,"confidence":0.6210638652881859,"method":"SEAD","details":"MAD!:w=0.28,s=0.42 RRCF-fast!:w=0.18,s=0.91 RRCF-mid:w=0.18,s=0.65 RRCF-slow:w=0.12,s=0.35 COPOD!:w=0.24,s=0.31"} +{"timestamp":"2026-03-21T14:37:19.714399496Z","score":0.5081356285863433,"is_anomaly":false,"confidence":0.6172471704190859,"method":"SEAD","details":"MAD!:w=0.28,s=0.80 RRCF-fast:w=0.17,s=0.40 RRCF-mid:w=0.18,s=0.49 RRCF-slow:w=0.12,s=0.30 COPOD!:w=0.25,s=0.37"} +{"timestamp":"2026-03-21T14:37:49.305893939Z","score":0.167901960752366,"is_anomaly":false,"confidence":0.20395540944557902,"method":"SEAD","details":"MAD!:w=0.28,s=0.26 RRCF-fast:w=0.17,s=0.39 RRCF-mid:w=0.18,s=0.12 RRCF-slow:w=0.12,s=0.01 COPOD!:w=0.25,s=0.01"} +{"timestamp":"2026-03-21T14:38:19.256648958Z","score":0.12704822785364184,"is_anomaly":false,"confidence":0.1543291883853691,"method":"SEAD","details":"MAD!:w=0.28,s=0.00 RRCF-fast:w=0.17,s=0.20 RRCF-mid:w=0.18,s=0.14 RRCF-slow:w=0.12,s=0.02 COPOD!:w=0.25,s=0.25"} +{"timestamp":"2026-03-21T14:38:49.310963043Z","score":0.4717927025648965,"is_anomaly":false,"confidence":0.5731003580534648,"method":"SEAD","details":"MAD!:w=0.28,s=0.51 RRCF-fast:w=0.17,s=0.55 RRCF-mid:w=0.18,s=0.43 RRCF-slow:w=0.12,s=0.17 COPOD!:w=0.25,s=0.55"} +{"timestamp":"2026-03-21T14:39:19.272296893Z","score":0.2666479545639384,"is_anomaly":false,"confidence":0.32390504856059493,"method":"SEAD","details":"MAD!:w=0.28,s=0.16 RRCF-fast:w=0.17,s=0.20 RRCF-mid:w=0.18,s=0.15 RRCF-slow:w=0.12,s=0.02 COPOD!:w=0.25,s=0.64"} +{"timestamp":"2026-03-21T14:39:51.300386628Z","score":0.6901373749717804,"is_anomaly":false,"confidence":0.8412263436774272,"method":"SEAD","details":"MAD!:w=0.28,s=0.94 RRCF-fast:w=0.17,s=0.68 RRCF-mid!:w=0.18,s=0.70 RRCF-slow!:w=0.12,s=0.76 COPOD!:w=0.24,s=0.38"} +{"timestamp":"2026-03-21T14:40:21.836149267Z","score":0.4923076811337389,"is_anomaly":false,"confidence":0.6000865995431447,"method":"SEAD","details":"MAD!:w=0.28,s=0.59 RRCF-fast:w=0.17,s=0.63 RRCF-mid:w=0.18,s=0.58 RRCF-slow:w=0.12,s=0.25 COPOD!:w=0.25,s=0.34"} +{"timestamp":"2026-03-21T14:40:49.31707576Z","score":0.4785844580850977,"is_anomaly":false,"confidence":0.5833590070849761,"method":"SEAD","details":"MAD!:w=0.27,s=0.49 RRCF-fast:w=0.17,s=0.43 RRCF-mid:w=0.18,s=0.42 RRCF-slow:w=0.13,s=0.34 COPOD!:w=0.25,s=0.61"} +{"timestamp":"2026-03-21T14:41:19.274325233Z","score":0.17413521920670028,"is_anomaly":false,"confidence":0.2122579345376123,"method":"SEAD","details":"MAD!:w=0.27,s=0.03 RRCF-fast:w=0.17,s=0.12 RRCF-mid:w=0.18,s=0.17 RRCF-slow:w=0.13,s=0.05 COPOD!:w=0.25,s=0.43"} +{"timestamp":"2026-03-21T14:41:49.268117258Z","score":0.22334013317325505,"is_anomaly":false,"confidence":0.2722350802018937,"method":"SEAD","details":"MAD!:w=0.28,s=0.35 RRCF-fast:w=0.17,s=0.12 RRCF-mid:w=0.18,s=0.13 RRCF-slow:w=0.13,s=0.04 COPOD!:w=0.24,s=0.32"} +{"timestamp":"2026-03-21T14:42:19.263386558Z","score":0.08697654122272888,"is_anomaly":false,"confidence":0.10601796165799167,"method":"SEAD","details":"MAD!:w=0.27,s=0.04 RRCF-fast:w=0.17,s=0.00 RRCF-mid:w=0.18,s=0.08 RRCF-slow:w=0.13,s=0.00 COPOD!:w=0.24,s=0.26"} +{"timestamp":"2026-03-21T14:42:49.620194666Z","score":0.5259008251832344,"is_anomaly":false,"confidence":0.6410461477601742,"method":"SEAD","details":"MAD!:w=0.28,s=0.61 RRCF-fast:w=0.17,s=0.38 RRCF-mid:w=0.18,s=0.33 RRCF-slow:w=0.13,s=0.21 COPOD!:w=0.24,s=0.84"} +{"timestamp":"2026-03-21T14:43:19.320960489Z","score":0.18341597525688524,"is_anomaly":false,"confidence":0.22357467177416032,"method":"SEAD","details":"MAD!:w=0.27,s=0.21 RRCF-fast:w=0.18,s=0.08 RRCF-mid:w=0.18,s=0.02 RRCF-slow:w=0.13,s=0.01 COPOD!:w=0.24,s=0.44"} +{"timestamp":"2026-03-21T14:43:49.253487012Z","score":0.2464188285675282,"is_anomaly":false,"confidence":0.30037192037823907,"method":"SEAD","details":"MAD!:w=0.27,s=0.12 RRCF-fast:w=0.18,s=0.07 RRCF-mid:w=0.18,s=0.04 RRCF-slow:w=0.13,s=0.02 COPOD!:w=0.24,s=0.80"} +{"timestamp":"2026-03-21T14:44:20.753802652Z","score":0.8023660789062648,"is_anomaly":false,"confidence":0.9780431201968276,"method":"SEAD","details":"MAD!:w=0.28,s=0.75 RRCF-fast!:w=0.18,s=0.99 RRCF-mid!:w=0.18,s=0.99 RRCF-slow!:w=0.13,s=0.98 COPOD!:w=0.24,s=0.48"} +{"timestamp":"2026-03-21T14:44:49.336584048Z","score":0.6489841994526973,"is_anomaly":false,"confidence":0.7910784716327823,"method":"SEAD","details":"MAD!:w=0.28,s=0.49 RRCF-fast:w=0.18,s=0.81 RRCF-mid!:w=0.18,s=0.71 RRCF-slow:w=0.13,s=0.50 COPOD!:w=0.24,s=0.74"} +{"timestamp":"2026-03-21T14:45:19.313191294Z","score":0.21566902380817332,"is_anomaly":false,"confidence":0.26288948463858447,"method":"SEAD","details":"MAD!:w=0.28,s=0.13 RRCF-fast:w=0.17,s=0.43 RRCF-mid:w=0.18,s=0.27 RRCF-slow:w=0.13,s=0.02 COPOD!:w=0.24,s=0.22"} +{"timestamp":"2026-03-21T14:45:49.269883209Z","score":0.2660391683165471,"is_anomaly":false,"confidence":0.32428810877644537,"method":"SEAD","details":"MAD!:w=0.28,s=0.34 RRCF-fast:w=0.17,s=0.35 RRCF-mid:w=0.18,s=0.37 RRCF-slow:w=0.13,s=0.26 COPOD!:w=0.24,s=0.04"} +{"timestamp":"2026-03-21T14:46:19.310615261Z","score":0.6126933447309992,"is_anomaly":false,"confidence":0.7472224193121209,"method":"SEAD","details":"MAD!:w=0.28,s=0.70 RRCF-fast:w=0.17,s=0.68 RRCF-mid:w=0.18,s=0.57 RRCF-slow:w=0.13,s=0.61 COPOD!:w=0.24,s=0.49"} +{"timestamp":"2026-03-21T14:46:49.309040326Z","score":0.434202610681929,"is_anomaly":false,"confidence":0.5295404756972457,"method":"SEAD","details":"MAD!:w=0.28,s=0.52 RRCF-fast:w=0.17,s=0.68 RRCF-mid:w=0.18,s=0.51 RRCF-slow:w=0.13,s=0.37 COPOD!:w=0.24,s=0.13"} +{"timestamp":"2026-03-21T14:47:19.273985547Z","score":0.21556151841862609,"is_anomaly":false,"confidence":0.2628923599195913,"method":"SEAD","details":"MAD!:w=0.28,s=0.20 RRCF-fast:w=0.17,s=0.09 RRCF-mid:w=0.18,s=0.34 RRCF-slow:w=0.13,s=0.02 COPOD!:w=0.24,s=0.33"} +{"timestamp":"2026-03-21T14:47:49.595652788Z","score":0.8189386141275832,"is_anomaly":false,"confidence":0.9987529614593633,"method":"SEAD","details":"MAD!:w=0.28,s=0.94 RRCF-fast!:w=0.17,s=0.92 RRCF-mid!:w=0.18,s=0.83 RRCF-slow!:w=0.13,s=0.82 COPOD!:w=0.24,s=0.60"} +{"timestamp":"2026-03-21T14:48:21.812077434Z","score":0.7162568381912782,"is_anomaly":false,"confidence":0.8735253485038524,"method":"SEAD","details":"MAD!:w=0.27,s=0.60 RRCF-fast:w=0.17,s=0.77 RRCF-mid!:w=0.18,s=0.82 RRCF-slow!:w=0.13,s=0.67 COPOD!:w=0.24,s=0.76"} +{"timestamp":"2026-03-21T14:48:49.317636726Z","score":0.5343695910817238,"is_anomaly":false,"confidence":0.6517011194731068,"method":"SEAD","details":"MAD!:w=0.28,s=0.51 RRCF-fast:w=0.17,s=0.47 RRCF-mid:w=0.18,s=0.64 RRCF-slow:w=0.13,s=0.34 COPOD!:w=0.24,s=0.64"} +{"timestamp":"2026-03-21T14:49:19.314730439Z","score":0.4840655492267558,"is_anomaly":false,"confidence":0.5903518194043255,"method":"SEAD","details":"MAD!:w=0.28,s=0.43 RRCF-fast:w=0.17,s=0.51 RRCF-mid:w=0.18,s=0.56 RRCF-slow:w=0.13,s=0.26 COPOD!:w=0.24,s=0.59"} +{"timestamp":"2026-03-21T14:49:49.275391994Z","score":0.2249924803682726,"is_anomaly":false,"confidence":0.27460992974510995,"method":"SEAD","details":"MAD!:w=0.28,s=0.26 RRCF-fast:w=0.17,s=0.23 RRCF-mid:w=0.18,s=0.19 RRCF-slow:w=0.13,s=0.01 COPOD!:w=0.24,s=0.32"} +{"timestamp":"2026-03-21T14:50:19.268906392Z","score":0.21627406293356705,"is_anomaly":false,"confidence":0.2639688452283554,"method":"SEAD","details":"MAD!:w=0.28,s=0.11 RRCF-fast:w=0.17,s=0.34 RRCF-mid:w=0.18,s=0.24 RRCF-slow:w=0.13,s=0.08 COPOD!:w=0.24,s=0.30"} +{"timestamp":"2026-03-21T14:50:49.3037081Z","score":0.35343453129645314,"is_anomaly":false,"confidence":0.43137722491858593,"method":"SEAD","details":"MAD!:w=0.28,s=0.21 RRCF-fast:w=0.17,s=0.63 RRCF-mid!:w=0.18,s=0.73 RRCF-slow:w=0.13,s=0.41 COPOD!:w=0.24,s=0.00"} +{"timestamp":"2026-03-21T14:51:19.314476446Z","score":0.33582336981814126,"is_anomaly":false,"confidence":0.4098822851393853,"method":"SEAD","details":"MAD!:w=0.28,s=0.52 RRCF-fast:w=0.17,s=0.34 RRCF-mid:w=0.18,s=0.53 RRCF-slow:w=0.13,s=0.20 COPOD!:w=0.24,s=0.05"} +{"timestamp":"2026-03-21T14:51:51.363714256Z","score":0.2591229802722536,"is_anomaly":false,"confidence":0.3162672072037009,"method":"SEAD","details":"MAD!:w=0.28,s=0.20 RRCF-fast:w=0.17,s=0.07 RRCF-mid:w=0.18,s=0.16 RRCF-slow:w=0.13,s=0.00 COPOD!:w=0.24,s=0.67"} +{"timestamp":"2026-03-21T14:52:19.310144171Z","score":0.874421099055559,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=0.94 RRCF-fast!:w=0.17,s=0.83 RRCF-mid!:w=0.18,s=0.85 RRCF-slow!:w=0.13,s=0.92 COPOD!:w=0.24,s=0.83"} +{"timestamp":"2026-03-21T14:52:49.270575082Z","score":0.47783419487021167,"is_anomaly":false,"confidence":0.5832106676113775,"method":"SEAD","details":"MAD!:w=0.28,s=0.45 RRCF-fast!:w=0.17,s=0.84 RRCF-mid!:w=0.18,s=0.85 RRCF-slow:w=0.13,s=0.39 COPOD!:w=0.24,s=0.03"} +{"timestamp":"2026-03-21T14:53:19.260207457Z","score":0.4509175016488113,"is_anomaly":false,"confidence":0.5503580530599902,"method":"SEAD","details":"MAD!:w=0.28,s=0.60 RRCF-fast:w=0.17,s=0.74 RRCF-mid:w=0.18,s=0.65 RRCF-slow:w=0.13,s=0.26 COPOD!:w=0.24,s=0.04"} +{"timestamp":"2026-03-21T14:53:49.257860639Z","score":0.4093577119448038,"is_anomaly":false,"confidence":0.4996331092211631,"method":"SEAD","details":"MAD!:w=0.28,s=0.58 RRCF-fast:w=0.17,s=0.55 RRCF-mid:w=0.18,s=0.60 RRCF-slow:w=0.13,s=0.30 COPOD!:w=0.25,s=0.04"} +{"timestamp":"2026-03-21T14:54:19.261727329Z","score":0.4230353372539781,"is_anomaly":false,"confidence":0.5163270525880008,"method":"SEAD","details":"MAD!:w=0.27,s=0.57 RRCF-fast:w=0.17,s=0.56 RRCF-mid:w=0.18,s=0.68 RRCF-slow:w=0.13,s=0.31 COPOD!:w=0.25,s=0.04"} +{"timestamp":"2026-03-21T14:54:49.26043476Z","score":0.369431388152725,"is_anomaly":false,"confidence":0.450901858498575,"method":"SEAD","details":"MAD!:w=0.27,s=0.58 RRCF-fast:w=0.17,s=0.36 RRCF-mid:w=0.18,s=0.49 RRCF-slow:w=0.13,s=0.24 COPOD!:w=0.25,s=0.14"} +{"timestamp":"2026-03-21T14:55:19.259574572Z","score":0.43914692165125224,"is_anomaly":false,"confidence":0.5359917145010386,"method":"SEAD","details":"MAD!:w=0.27,s=0.60 RRCF-fast:w=0.17,s=0.40 RRCF-mid:w=0.18,s=0.60 RRCF-slow:w=0.13,s=0.26 COPOD!:w=0.25,s=0.28"} +{"timestamp":"2026-03-21T14:55:49.262303198Z","score":0.3445377431756385,"is_anomaly":false,"confidence":0.4205184337411429,"method":"SEAD","details":"MAD!:w=0.27,s=0.57 RRCF-fast:w=0.17,s=0.31 RRCF-mid:w=0.17,s=0.48 RRCF-slow:w=0.13,s=0.21 COPOD!:w=0.25,s=0.11"} +{"timestamp":"2026-03-21T14:56:19.265693047Z","score":0.34713769947769324,"is_anomaly":false,"confidence":0.42378440229748454,"method":"SEAD","details":"MAD!:w=0.27,s=0.59 RRCF-fast:w=0.17,s=0.24 RRCF-mid:w=0.17,s=0.49 RRCF-slow:w=0.13,s=0.24 COPOD!:w=0.26,s=0.12"} +{"timestamp":"2026-03-21T14:56:49.275964488Z","score":0.3096629775196173,"is_anomaly":false,"confidence":0.3780354022028171,"method":"SEAD","details":"MAD!:w=0.27,s=0.57 RRCF-fast:w=0.17,s=0.24 RRCF-mid:w=0.17,s=0.34 RRCF-slow:w=0.13,s=0.24 COPOD!:w=0.26,s=0.10"} +{"timestamp":"2026-03-21T14:57:19.324695217Z","score":0.5665289459504053,"is_anomaly":false,"confidence":0.6916164136164189,"method":"SEAD","details":"MAD!:w=0.27,s=0.50 RRCF-fast:w=0.17,s=0.71 RRCF-mid:w=0.17,s=0.61 RRCF-slow:w=0.13,s=0.20 COPOD!:w=0.26,s=0.70"} +{"timestamp":"2026-03-21T14:57:49.302076379Z","score":0.7314183082489949,"is_anomaly":false,"confidence":0.8929127290326345,"method":"SEAD","details":"MAD!:w=0.27,s=0.58 RRCF-fast!:w=0.17,s=0.90 RRCF-mid!:w=0.17,s=0.96 RRCF-slow:w=0.13,s=0.45 COPOD!:w=0.26,s=0.78"} +{"timestamp":"2026-03-21T14:58:19.262318198Z","score":0.6796142966758383,"is_anomaly":false,"confidence":0.8296705858883608,"method":"SEAD","details":"MAD!:w=0.27,s=0.67 RRCF-fast!:w=0.17,s=0.84 RRCF-mid!:w=0.17,s=0.96 RRCF-slow!:w=0.13,s=0.65 COPOD!:w=0.26,s=0.42"} +{"timestamp":"2026-03-21T14:58:49.306031833Z","score":0.6475923127271628,"is_anomaly":false,"confidence":0.7905782679163074,"method":"SEAD","details":"MAD!:w=0.27,s=0.69 RRCF-fast:w=0.17,s=0.69 RRCF-mid!:w=0.17,s=0.88 RRCF-slow!:w=0.13,s=0.62 COPOD!:w=0.26,s=0.43"} +{"timestamp":"2026-03-21T14:59:19.256803104Z","score":0.7013358956030857,"is_anomaly":false,"confidence":0.8561882324366313,"method":"SEAD","details":"MAD!:w=0.27,s=0.70 RRCF-fast!:w=0.17,s=0.92 RRCF-mid!:w=0.17,s=0.85 RRCF-slow!:w=0.13,s=0.68 COPOD!:w=0.26,s=0.47"} +{"timestamp":"2026-03-21T14:59:49.25832721Z","score":0.5300180393991202,"is_anomaly":false,"confidence":0.6472011824277567,"method":"SEAD","details":"MAD!:w=0.27,s=0.62 RRCF-fast:w=0.17,s=0.77 RRCF-mid:w=0.17,s=0.80 RRCF-slow:w=0.13,s=0.58 COPOD!:w=0.26,s=0.08"} +{"timestamp":"2026-03-21T15:00:19.27379545Z","score":0.5971300853222059,"is_anomaly":false,"confidence":0.7291512147810122,"method":"SEAD","details":"MAD!:w=0.27,s=0.73 RRCF-fast:w=0.17,s=0.45 RRCF-mid:w=0.17,s=0.79 RRCF-slow:w=0.13,s=0.47 COPOD!:w=0.26,s=0.50"} +{"timestamp":"2026-03-21T15:00:49.25925794Z","score":0.5004344018144968,"is_anomaly":false,"confidence":0.6110768172137182,"method":"SEAD","details":"MAD!:w=0.26,s=0.61 RRCF-fast:w=0.17,s=0.55 RRCF-mid:w=0.17,s=0.69 RRCF-slow:w=0.13,s=0.34 COPOD!:w=0.26,s=0.31"} +{"timestamp":"2026-03-21T15:01:19.259321379Z","score":0.5856897241418693,"is_anomaly":false,"confidence":0.7151814727478758,"method":"SEAD","details":"MAD!:w=0.26,s=0.63 RRCF-fast:w=0.17,s=0.46 RRCF-mid:w=0.17,s=0.78 RRCF-slow:w=0.13,s=0.58 COPOD!:w=0.27,s=0.50"} +{"timestamp":"2026-03-21T15:01:49.330392195Z","score":0.5777152636047634,"is_anomaly":false,"confidence":0.7054439168437607,"method":"SEAD","details":"MAD!:w=0.26,s=0.64 RRCF-fast:w=0.17,s=0.51 RRCF-mid:w=0.17,s=0.62 RRCF-slow:w=0.13,s=0.38 COPOD!:w=0.27,s=0.64"} +{"timestamp":"2026-03-21T15:02:19.296688718Z","score":0.4527985902795611,"is_anomaly":false,"confidence":0.5529090733643428,"method":"SEAD","details":"MAD!:w=0.26,s=0.65 RRCF-fast:w=0.17,s=0.33 RRCF-mid:w=0.17,s=0.55 RRCF-slow:w=0.13,s=0.27 COPOD!:w=0.27,s=0.37"} +{"timestamp":"2026-03-21T15:02:49.259481861Z","score":0.4885974743046791,"is_anomaly":false,"confidence":0.5974833494139687,"method":"SEAD","details":"MAD!:w=0.26,s=0.70 RRCF-fast:w=0.17,s=0.31 RRCF-mid:w=0.17,s=0.60 RRCF-slow:w=0.13,s=0.39 COPOD!:w=0.27,s=0.37"} +{"timestamp":"2026-03-21T15:03:19.307674931Z","score":0.323240167248655,"is_anomaly":false,"confidence":0.3952755139958535,"method":"SEAD","details":"MAD!:w=0.26,s=0.60 RRCF-fast:w=0.17,s=0.27 RRCF-mid:w=0.17,s=0.43 RRCF-slow:w=0.13,s=0.17 COPOD!:w=0.27,s=0.11"} +{"timestamp":"2026-03-21T15:03:49.265769795Z","score":0.29428782525430774,"is_anomaly":false,"confidence":0.35987102834479934,"method":"SEAD","details":"MAD!:w=0.26,s=0.56 RRCF-fast:w=0.17,s=0.11 RRCF-mid:w=0.17,s=0.32 RRCF-slow:w=0.13,s=0.20 COPOD!:w=0.27,s=0.19"} +{"timestamp":"2026-03-21T15:04:22.86492895Z","score":0.8880239295824098,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.26,s=0.94 RRCF-fast!:w=0.17,s=0.88 RRCF-mid!:w=0.17,s=0.88 RRCF-slow:w=0.14,s=0.59 COPOD!:w=0.27,s=1.00"} +{"timestamp":"2026-03-21T15:04:49.324434643Z","score":0.5783444189167294,"is_anomaly":false,"confidence":0.7062121738304412,"method":"SEAD","details":"MAD!:w=0.26,s=0.34 RRCF-fast:w=0.17,s=0.79 RRCF-mid:w=0.17,s=0.62 RRCF-slow:w=0.14,s=0.38 COPOD!:w=0.27,s=0.74"} +{"timestamp":"2026-03-21T15:05:19.310768995Z","score":0.4223130149424008,"is_anomaly":false,"confidence":0.515683358504583,"method":"SEAD","details":"MAD!:w=0.26,s=0.31 RRCF-fast:w=0.17,s=0.62 RRCF-mid:w=0.17,s=0.48 RRCF-slow:w=0.14,s=0.26 COPOD!:w=0.27,s=0.45"} +{"timestamp":"2026-03-21T15:05:51.994246469Z","score":0.786441917937102,"is_anomaly":false,"confidence":0.960318520057697,"method":"SEAD","details":"MAD!:w=0.26,s=0.81 RRCF-fast!:w=0.17,s=0.92 RRCF-mid:w=0.17,s=0.65 RRCF-slow:w=0.14,s=0.45 COPOD!:w=0.27,s=0.94"} +{"timestamp":"2026-03-21T15:06:19.310197529Z","score":0.280443648944316,"is_anomaly":false,"confidence":0.3429416227162853,"method":"SEAD","details":"MAD!:w=0.26,s=0.48 RRCF-fast:w=0.17,s=0.55 RRCF-mid:w=0.17,s=0.11 RRCF-slow:w=0.14,s=0.05 COPOD!:w=0.27,s=0.15"} +{"timestamp":"2026-03-21T15:06:49.269896598Z","score":0.2640429774962735,"is_anomaly":false,"confidence":0.32288599692051223,"method":"SEAD","details":"MAD!:w=0.26,s=0.02 RRCF-fast:w=0.17,s=0.24 RRCF-mid:w=0.17,s=0.13 RRCF-slow:w=0.14,s=0.00 COPOD!:w=0.27,s=0.74"} +{"timestamp":"2026-03-21T15:07:19.311969947Z","score":0.34701353909916216,"is_anomaly":false,"confidence":0.42434687557077505,"method":"SEAD","details":"MAD!:w=0.26,s=0.47 RRCF-fast:w=0.17,s=0.49 RRCF-mid:w=0.17,s=0.25 RRCF-slow:w=0.14,s=0.17 COPOD!:w=0.27,s=0.29"} +{"timestamp":"2026-03-21T15:07:49.285020144Z","score":0.31988389971605313,"is_anomaly":false,"confidence":0.3911712890000897,"method":"SEAD","details":"MAD!:w=0.26,s=0.15 RRCF-fast:w=0.17,s=0.23 RRCF-mid:w=0.17,s=0.01 RRCF-slow:w=0.14,s=0.01 COPOD!:w=0.27,s=0.90"} +{"timestamp":"2026-03-21T15:08:19.307884444Z","score":0.5991941797858974,"is_anomaly":false,"confidence":0.7327269671160583,"method":"SEAD","details":"MAD!:w=0.26,s=0.94 RRCF-fast:w=0.17,s=0.80 RRCF-mid:w=0.17,s=0.68 RRCF-slow:w=0.14,s=0.49 COPOD!:w=0.26,s=0.14"} +{"timestamp":"2026-03-21T15:08:52.008056513Z","score":0.6983044987443248,"is_anomaly":false,"confidence":0.853924411734533,"method":"SEAD","details":"MAD!:w=0.26,s=0.35 RRCF-fast!:w=0.17,s=0.94 RRCF-mid!:w=0.17,s=0.91 RRCF-slow!:w=0.14,s=0.65 COPOD!:w=0.26,s=0.77"} +{"timestamp":"2026-03-21T15:09:20.091424881Z","score":0.5319871576389275,"is_anomaly":false,"confidence":0.650542594890936,"method":"SEAD","details":"MAD!:w=0.26,s=0.42 RRCF-fast:w=0.17,s=0.69 RRCF-mid:w=0.17,s=0.39 RRCF-slow:w=0.14,s=0.30 COPOD!:w=0.26,s=0.76"} +{"timestamp":"2026-03-21T15:09:49.31766035Z","score":0.5572601171528058,"is_anomaly":false,"confidence":0.6815585949173241,"method":"SEAD","details":"MAD!:w=0.26,s=0.64 RRCF-fast:w=0.17,s=0.55 RRCF-mid:w=0.17,s=0.35 RRCF-slow:w=0.14,s=0.11 COPOD!:w=0.26,s=0.86"} +{"timestamp":"2026-03-21T15:10:19.268866071Z","score":0.2042468997611205,"is_anomaly":false,"confidence":0.24980476034899377,"method":"SEAD","details":"MAD!:w=0.26,s=0.22 RRCF-fast:w=0.17,s=0.09 RRCF-mid:w=0.17,s=0.00 RRCF-slow:w=0.14,s=0.03 COPOD!:w=0.26,s=0.48"} +{"timestamp":"2026-03-21T15:10:49.267158855Z","score":0.3207339565009317,"is_anomaly":false,"confidence":0.39227459135588444,"method":"SEAD","details":"MAD!:w=0.26,s=0.31 RRCF-fast:w=0.17,s=0.22 RRCF-mid:w=0.17,s=0.01 RRCF-slow:w=0.14,s=0.01 COPOD!:w=0.26,s=0.77"} +{"timestamp":"2026-03-21T15:11:19.312671986Z","score":0.3273251624418485,"is_anomaly":false,"confidence":0.4003359848086481,"method":"SEAD","details":"MAD!:w=0.26,s=0.10 RRCF-fast:w=0.17,s=0.23 RRCF-mid:w=0.17,s=0.05 RRCF-slow:w=0.14,s=0.06 COPOD!:w=0.26,s=0.96"} +{"timestamp":"2026-03-21T15:11:49.276252205Z","score":0.2478079129023309,"is_anomaly":false,"confidence":0.30308218321820896,"method":"SEAD","details":"MAD!:w=0.26,s=0.08 RRCF-fast:w=0.17,s=0.17 RRCF-mid:w=0.17,s=0.02 RRCF-slow:w=0.14,s=0.02 COPOD!:w=0.25,s=0.76"} +{"timestamp":"2026-03-21T15:12:20.976475656Z","score":0.7241395101079985,"is_anomaly":false,"confidence":0.8856609181991626,"method":"SEAD","details":"MAD!:w=0.26,s=0.68 RRCF-fast!:w=0.17,s=0.84 RRCF-mid:w=0.17,s=0.70 RRCF-slow:w=0.14,s=0.47 COPOD!:w=0.25,s=0.85"} +{"timestamp":"2026-03-21T15:12:49.323224133Z","score":0.5345209674115509,"is_anomaly":false,"confidence":0.6566053789741906,"method":"SEAD","details":"MAD!:w=0.26,s=0.63 RRCF-fast:w=0.17,s=0.41 RRCF-mid:w=0.17,s=0.35 RRCF-slow:w=0.14,s=0.18 COPOD!:w=0.25,s=0.85"} +{"timestamp":"2026-03-21T15:13:19.315368132Z","score":0.37902530980351,"is_anomaly":false,"confidence":0.4655945647735982,"method":"SEAD","details":"MAD!:w=0.26,s=0.18 RRCF-fast:w=0.17,s=0.71 RRCF-mid:w=0.18,s=0.34 RRCF-slow:w=0.15,s=0.10 COPOD!:w=0.25,s=0.55"} +{"timestamp":"2026-03-21T15:13:49.268261556Z","score":0.28677897162643756,"is_anomaly":false,"confidence":0.352279193571138,"method":"SEAD","details":"MAD!:w=0.27,s=0.32 RRCF-fast:w=0.17,s=0.19 RRCF-mid:w=0.18,s=0.06 RRCF-slow:w=0.15,s=0.04 COPOD!:w=0.25,s=0.63"} +{"timestamp":"2026-03-21T15:14:19.312281996Z","score":0.4758853749666023,"is_anomaly":false,"confidence":0.5845774366745045,"method":"SEAD","details":"MAD!:w=0.26,s=0.80 RRCF-fast:w=0.17,s=0.30 RRCF-mid:w=0.18,s=0.47 RRCF-slow:w=0.15,s=0.25 COPOD!:w=0.24,s=0.38"} +{"timestamp":"2026-03-21T15:14:49.325336847Z","score":0.5996802964241544,"is_anomaly":false,"confidence":0.736647077108519,"method":"SEAD","details":"MAD!:w=0.26,s=0.59 RRCF-fast:w=0.17,s=0.56 RRCF-mid:w=0.18,s=0.52 RRCF-slow:w=0.15,s=0.30 COPOD!:w=0.24,s=0.88"} +{"timestamp":"2026-03-21T15:15:19.267891476Z","score":0.2236950874970454,"is_anomaly":false,"confidence":0.2747869712425582,"method":"SEAD","details":"MAD!:w=0.26,s=0.19 RRCF-fast:w=0.17,s=0.06 RRCF-mid:w=0.18,s=0.01 RRCF-slow:w=0.15,s=0.00 COPOD!:w=0.24,s=0.67"} +{"timestamp":"2026-03-21T15:15:50.715785712Z","score":0.6868323941988758,"is_anomaly":false,"confidence":0.8437046850913822,"method":"SEAD","details":"MAD!:w=0.26,s=0.94 RRCF-fast!:w=0.17,s=0.85 RRCF-mid:w=0.18,s=0.81 RRCF-slow:w=0.15,s=0.47 COPOD!:w=0.24,s=0.33"} +{"timestamp":"2026-03-21T15:16:19.283534163Z","score":0.6262677026548339,"is_anomaly":false,"confidence":0.7693404248244832,"method":"SEAD","details":"MAD!:w=0.26,s=0.63 RRCF-fast:w=0.17,s=0.81 RRCF-mid:w=0.18,s=0.52 RRCF-slow:w=0.15,s=0.23 COPOD!:w=0.24,s=0.82"} +{"timestamp":"2026-03-21T15:16:49.328773503Z","score":0.5170940010931753,"is_anomaly":false,"confidence":0.6352256659393365,"method":"SEAD","details":"MAD!:w=0.26,s=0.42 RRCF-fast:w=0.17,s=0.70 RRCF-mid:w=0.18,s=0.39 RRCF-slow:w=0.15,s=0.22 COPOD!:w=0.24,s=0.77"} +{"timestamp":"2026-03-21T15:17:19.268284634Z","score":0.20201314310341278,"is_anomaly":false,"confidence":0.2481636473930804,"method":"SEAD","details":"MAD!:w=0.26,s=0.16 RRCF-fast:w=0.17,s=0.10 RRCF-mid:w=0.18,s=0.00 RRCF-slow:w=0.15,s=0.04 COPOD!:w=0.24,s=0.57"} +{"timestamp":"2026-03-21T15:17:49.269979572Z","score":0.24403438844006814,"is_anomaly":false,"confidence":0.2997847713978961,"method":"SEAD","details":"MAD!:w=0.26,s=0.29 RRCF-fast:w=0.17,s=0.31 RRCF-mid:w=0.18,s=0.10 RRCF-slow:w=0.15,s=0.03 COPOD!:w=0.24,s=0.38"} +{"timestamp":"2026-03-21T15:18:19.361240861Z","score":0.6711384676130073,"is_anomaly":false,"confidence":0.8244620496963742,"method":"SEAD","details":"MAD!:w=0.26,s=0.71 RRCF-fast:w=0.17,s=0.67 RRCF-mid:w=0.18,s=0.57 RRCF-slow:w=0.15,s=0.44 COPOD!:w=0.24,s=0.86"} +{"timestamp":"2026-03-21T15:18:49.315615189Z","score":0.24421588411592005,"is_anomaly":false,"confidence":0.3000077303015276,"method":"SEAD","details":"MAD!:w=0.26,s=0.27 RRCF-fast:w=0.17,s=0.29 RRCF-mid:w=0.18,s=0.07 RRCF-slow:w=0.15,s=0.00 COPOD!:w=0.24,s=0.47"} +{"timestamp":"2026-03-21T15:19:19.272476096Z","score":0.34036426569869177,"is_anomaly":false,"confidence":0.41812149605937154,"method":"SEAD","details":"MAD!:w=0.26,s=0.15 RRCF-fast:w=0.17,s=0.33 RRCF-mid:w=0.18,s=0.18 RRCF-slow:w=0.15,s=0.08 COPOD!:w=0.24,s=0.85"} +{"timestamp":"2026-03-21T15:19:53.105431646Z","score":0.940787186529936,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.26,s=0.94 RRCF-fast!:w=0.17,s=0.96 RRCF-mid!:w=0.18,s=0.99 RRCF-slow!:w=0.15,s=0.89 COPOD!:w=0.23,s=0.93"} +{"timestamp":"2026-03-21T15:20:19.313934789Z","score":0.8008509137977071,"is_anomaly":false,"confidence":0.9838076905935873,"method":"SEAD","details":"MAD!:w=0.26,s=0.89 RRCF-fast:w=0.17,s=0.76 RRCF-mid!:w=0.18,s=0.96 RRCF-slow:w=0.15,s=0.43 COPOD!:w=0.23,s=0.85"} +{"timestamp":"2026-03-21T15:20:49.313117161Z","score":0.5005321221545024,"is_anomaly":false,"confidence":0.6148801764233414,"method":"SEAD","details":"MAD!:w=0.26,s=0.29 RRCF-fast!:w=0.17,s=0.88 RRCF-mid!:w=0.18,s=0.90 RRCF-slow:w=0.15,s=0.30 COPOD!:w=0.23,s=0.29"} +{"timestamp":"2026-03-21T15:21:19.287460984Z","score":0.43697241399779096,"is_anomaly":false,"confidence":0.5368000636094205,"method":"SEAD","details":"MAD!:w=0.26,s=0.07 RRCF-fast:w=0.17,s=0.82 RRCF-mid:w=0.18,s=0.78 RRCF-slow:w=0.15,s=0.08 COPOD!:w=0.23,s=0.55"} +{"timestamp":"2026-03-21T15:21:49.944038994Z","score":0.6938309058808467,"is_anomaly":false,"confidence":0.852338643081719,"method":"SEAD","details":"MAD!:w=0.27,s=0.80 RRCF-fast:w=0.17,s=0.85 RRCF-mid:w=0.18,s=0.84 RRCF-slow:w=0.16,s=0.48 COPOD!:w=0.23,s=0.49"} +{"timestamp":"2026-03-21T15:22:19.340079697Z","score":0.39842598755055475,"is_anomaly":false,"confidence":0.48944759121994635,"method":"SEAD","details":"MAD!:w=0.27,s=0.46 RRCF-fast:w=0.17,s=0.71 RRCF-mid:w=0.18,s=0.68 RRCF-slow:w=0.16,s=0.13 COPOD!:w=0.23,s=0.07"} +{"timestamp":"2026-03-21T15:22:49.279574265Z","score":0.3540676503551976,"is_anomaly":false,"confidence":0.435421965035913,"method":"SEAD","details":"MAD!:w=0.27,s=0.12 RRCF-fast:w=0.17,s=0.48 RRCF-mid:w=0.18,s=0.51 RRCF-slow:w=0.16,s=0.00 COPOD!:w=0.24,s=0.64"} +{"timestamp":"2026-03-21T15:23:19.313392788Z","score":0.6876291953636497,"is_anomaly":false,"confidence":0.8456261258574166,"method":"SEAD","details":"MAD!:w=0.27,s=0.94 RRCF-fast!:w=0.17,s=0.91 RRCF-mid:w=0.18,s=0.84 RRCF-slow:w=0.16,s=0.46 COPOD!:w=0.23,s=0.29"} +{"timestamp":"2026-03-21T15:23:49.276427541Z","score":0.5772448001055348,"is_anomaly":false,"confidence":0.7098786486609765,"method":"SEAD","details":"MAD!:w=0.27,s=0.34 RRCF-fast:w=0.16,s=0.84 RRCF-mid:w=0.18,s=0.87 RRCF-slow!:w=0.16,s=0.82 COPOD!:w=0.24,s=0.28"} +{"timestamp":"2026-03-21T15:24:19.318612754Z","score":0.5300616529631514,"is_anomaly":false,"confidence":0.6518542043924729,"method":"SEAD","details":"MAD!:w=0.27,s=0.28 RRCF-fast:w=0.16,s=0.76 RRCF-mid:w=0.17,s=0.73 RRCF-slow:w=0.16,s=0.30 COPOD!:w=0.24,s=0.66"} +{"timestamp":"2026-03-21T15:24:49.313485972Z","score":0.5235046483188458,"is_anomaly":false,"confidence":0.6437905932602246,"method":"SEAD","details":"MAD!:w=0.27,s=0.55 RRCF-fast:w=0.16,s=0.58 RRCF-mid:w=0.17,s=0.59 RRCF-slow:w=0.16,s=0.19 COPOD!:w=0.24,s=0.64"} +{"timestamp":"2026-03-21T15:25:19.272832438Z","score":0.2722950521158284,"is_anomaly":false,"confidence":0.3348604328661167,"method":"SEAD","details":"MAD!:w=0.27,s=0.22 RRCF-fast:w=0.16,s=0.24 RRCF-mid:w=0.17,s=0.22 RRCF-slow:w=0.16,s=0.02 COPOD!:w=0.24,s=0.56"} +{"timestamp":"2026-03-21T15:25:49.270215726Z","score":0.32626822534309335,"is_anomaly":false,"confidence":0.4012350511693233,"method":"SEAD","details":"MAD!:w=0.27,s=0.34 RRCF-fast:w=0.16,s=0.34 RRCF-mid:w=0.17,s=0.32 RRCF-slow:w=0.16,s=0.17 COPOD!:w=0.23,s=0.41"} +{"timestamp":"2026-03-21T15:26:19.313743856Z","score":0.34206733864443717,"is_anomaly":false,"confidence":0.4225055359097969,"method":"SEAD","details":"MAD!:w=0.27,s=0.10 RRCF-fast:w=0.16,s=0.32 RRCF-mid:w=0.17,s=0.26 RRCF-slow:w=0.16,s=0.02 COPOD!:w=0.23,s=0.91"} +{"timestamp":"2026-03-21T15:26:49.268995532Z","score":0.3317942879960471,"is_anomaly":false,"confidence":0.40981674548967967,"method":"SEAD","details":"MAD!:w=0.27,s=0.09 RRCF-fast:w=0.16,s=0.24 RRCF-mid:w=0.17,s=0.28 RRCF-slow:w=0.16,s=0.03 COPOD!:w=0.23,s=0.93"} +{"timestamp":"2026-03-21T15:27:25.027585083Z","score":0.6450720972365033,"is_anomaly":false,"confidence":0.796762804725606,"method":"SEAD","details":"MAD!:w=0.27,s=0.37 RRCF-fast!:w=0.16,s=0.93 RRCF-mid!:w=0.17,s=0.94 RRCF-slow:w=0.16,s=0.63 COPOD!:w=0.23,s=0.55"} +{"timestamp":"2026-03-21T15:27:49.751605085Z","score":0.7670473878326609,"is_anomaly":false,"confidence":0.9474209638041938,"method":"SEAD","details":"MAD!:w=0.27,s=0.37 RRCF-fast!:w=0.16,s=0.96 RRCF-mid!:w=0.17,s=0.97 RRCF-slow!:w=0.16,s=0.93 COPOD!:w=0.23,s=0.84"} +{"timestamp":"2026-03-21T15:28:19.387933474Z","score":0.5936016327921865,"is_anomaly":false,"confidence":0.7331889006815934,"method":"SEAD","details":"MAD!:w=0.28,s=0.29 RRCF-fast:w=0.16,s=0.53 RRCF-mid:w=0.17,s=0.80 RRCF-slow:w=0.16,s=0.52 COPOD!:w=0.23,s=0.90"} +{"timestamp":"2026-03-21T15:28:49.312070158Z","score":0.38130114663872705,"is_anomaly":false,"confidence":0.4709652957281407,"method":"SEAD","details":"MAD!:w=0.28,s=0.27 RRCF-fast:w=0.16,s=0.51 RRCF-mid:w=0.17,s=0.69 RRCF-slow:w=0.16,s=0.16 COPOD!:w=0.23,s=0.35"} +{"timestamp":"2026-03-21T15:29:19.272162231Z","score":0.3772298912490839,"is_anomaly":false,"confidence":0.4659366719868521,"method":"SEAD","details":"MAD!:w=0.28,s=0.34 RRCF-fast:w=0.16,s=0.37 RRCF-mid:w=0.17,s=0.61 RRCF-slow:w=0.16,s=0.18 COPOD!:w=0.23,s=0.39"} +{"timestamp":"2026-03-21T15:29:49.315272868Z","score":0.4571343699954679,"is_anomaly":false,"confidence":0.5677591485634886,"method":"SEAD","details":"MAD!:w=0.28,s=0.47 RRCF-fast:w=0.16,s=0.54 RRCF-mid:w=0.17,s=0.76 RRCF-slow:w=0.16,s=0.40 COPOD!:w=0.23,s=0.20"} +{"timestamp":"2026-03-21T15:30:19.285603362Z","score":0.32952567441983904,"is_anomaly":false,"confidence":0.4092696340908955,"method":"SEAD","details":"MAD!:w=0.28,s=0.17 RRCF-fast:w=0.16,s=0.38 RRCF-mid:w=0.17,s=0.57 RRCF-slow:w=0.16,s=0.06 COPOD!:w=0.23,s=0.49"} +{"timestamp":"2026-03-21T15:30:54.882713435Z","score":0.7551508484537443,"is_anomaly":false,"confidence":0.9378944811332924,"method":"SEAD","details":"MAD!:w=0.28,s=0.94 RRCF-fast:w=0.16,s=0.73 RRCF-mid:w=0.17,s=0.80 RRCF-slow!:w=0.16,s=0.64 COPOD!:w=0.23,s=0.60"} +{"timestamp":"2026-03-21T15:31:22.797867513Z","score":0.9087776250287201,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=0.91 RRCF-fast!:w=0.16,s=0.93 RRCF-mid!:w=0.17,s=0.95 RRCF-slow!:w=0.16,s=0.93 COPOD!:w=0.23,s=0.86"} +{"timestamp":"2026-03-21T15:31:49.314150182Z","score":0.5501637676898639,"is_anomaly":false,"confidence":0.6795364866669625,"method":"SEAD","details":"MAD!:w=0.28,s=0.28 RRCF-fast:w=0.16,s=0.74 RRCF-mid:w=0.17,s=0.85 RRCF-slow!:w=0.16,s=0.66 COPOD!:w=0.23,s=0.44"} +{"timestamp":"2026-03-21T15:32:19.360587278Z","score":0.721210928065062,"is_anomaly":false,"confidence":0.8908059181378567,"method":"SEAD","details":"MAD!:w=0.28,s=0.55 RRCF-fast:w=0.16,s=0.81 RRCF-mid:w=0.17,s=0.80 RRCF-slow:w=0.16,s=0.54 COPOD!:w=0.23,s=0.95"} +{"timestamp":"2026-03-21T15:32:49.269388608Z","score":0.3414234611106599,"is_anomaly":false,"confidence":0.42404663990088837,"method":"SEAD","details":"MAD!:w=0.28,s=0.18 RRCF-fast:w=0.16,s=0.40 RRCF-mid:w=0.17,s=0.65 RRCF-slow:w=0.16,s=0.31 COPOD!:w=0.23,s=0.30"} +{"timestamp":"2026-03-21T15:33:19.266856897Z","score":0.20873805286942454,"is_anomaly":false,"confidence":0.2592518676097794,"method":"SEAD","details":"MAD!:w=0.28,s=0.09 RRCF-fast:w=0.16,s=0.25 RRCF-mid:w=0.17,s=0.57 RRCF-slow:w=0.16,s=0.16 COPOD!:w=0.23,s=0.10"} +{"timestamp":"2026-03-21T15:33:49.314229093Z","score":0.36356262098031616,"is_anomaly":false,"confidence":0.45154339224010015,"method":"SEAD","details":"MAD!:w=0.28,s=0.17 RRCF-fast:w=0.16,s=0.25 RRCF-mid:w=0.16,s=0.42 RRCF-slow:w=0.16,s=0.10 COPOD!:w=0.23,s=0.83"} +{"timestamp":"2026-03-21T15:34:19.278133274Z","score":0.2863069892371849,"is_anomaly":false,"confidence":0.35559219150091814,"method":"SEAD","details":"MAD!:w=0.29,s=0.17 RRCF-fast:w=0.16,s=0.06 RRCF-mid:w=0.16,s=0.39 RRCF-slow:w=0.16,s=0.11 COPOD!:w=0.22,s=0.65"} +{"timestamp":"2026-03-21T15:34:50.273040604Z","score":0.8280399439071497,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=0.88 RRCF-fast:w=0.16,s=0.82 RRCF-mid!:w=0.16,s=0.90 RRCF-slow!:w=0.16,s=0.76 COPOD!:w=0.22,s=0.77"} +{"timestamp":"2026-03-21T15:35:19.335369507Z","score":0.7765790331486383,"is_anomaly":false,"confidence":0.9591940051249122,"method":"SEAD","details":"MAD!:w=0.29,s=0.85 RRCF-fast:w=0.16,s=0.69 RRCF-mid:w=0.16,s=0.80 RRCF-slow:w=0.16,s=0.58 COPOD!:w=0.22,s=0.87"} +{"timestamp":"2026-03-21T15:35:49.313714549Z","score":0.35165259828494627,"is_anomaly":false,"confidence":0.43434479913000584,"method":"SEAD","details":"MAD!:w=0.29,s=0.24 RRCF-fast:w=0.16,s=0.02 RRCF-mid:w=0.16,s=0.73 RRCF-slow:w=0.17,s=0.46 COPOD!:w=0.22,s=0.36"} +{"timestamp":"2026-03-21T15:36:19.263219259Z","score":0.3318597522329617,"is_anomaly":false,"confidence":0.4121685498557998,"method":"SEAD","details":"MAD!:w=0.29,s=0.34 RRCF-fast:w=0.16,s=0.23 RRCF-mid:w=0.16,s=0.56 RRCF-slow:w=0.17,s=0.19 COPOD!:w=0.22,s=0.34"} +{"timestamp":"2026-03-21T15:36:49.262290451Z","score":0.2302980443241308,"is_anomaly":false,"confidence":0.2860292949808202,"method":"SEAD","details":"MAD!:w=0.29,s=0.00 RRCF-fast:w=0.16,s=0.26 RRCF-mid:w=0.16,s=0.49 RRCF-slow:w=0.17,s=0.13 COPOD!:w=0.22,s=0.39"} +{"timestamp":"2026-03-21T15:37:19.312939539Z","score":0.718423430352857,"is_anomaly":false,"confidence":0.892279167565639,"method":"SEAD","details":"MAD!:w=0.29,s=0.68 RRCF-fast:w=0.16,s=0.71 RRCF-mid:w=0.16,s=0.78 RRCF-slow:w=0.17,s=0.47 COPOD!:w=0.22,s=0.91"} +{"timestamp":"2026-03-21T15:37:49.304856002Z","score":0.32570714455932936,"is_anomaly":false,"confidence":0.4045270345300952,"method":"SEAD","details":"MAD!:w=0.29,s=0.26 RRCF-fast:w=0.16,s=0.08 RRCF-mid:w=0.16,s=0.47 RRCF-slow:w=0.17,s=0.11 COPOD!:w=0.22,s=0.65"} +{"timestamp":"2026-03-21T15:38:19.269129166Z","score":0.2841863962997138,"is_anomaly":false,"confidence":0.35295842313946185,"method":"SEAD","details":"MAD!:w=0.29,s=0.10 RRCF-fast:w=0.16,s=0.11 RRCF-mid:w=0.16,s=0.48 RRCF-slow:w=0.17,s=0.18 COPOD!:w=0.22,s=0.59"} +{"timestamp":"2026-03-21T15:38:54.010751559Z","score":0.7687039676457023,"is_anomaly":false,"confidence":0.9547274036126978,"method":"SEAD","details":"MAD!:w=0.29,s=0.65 RRCF-fast!:w=0.16,s=0.89 RRCF-mid!:w=0.16,s=0.98 RRCF-slow!:w=0.17,s=0.60 COPOD!:w=0.22,s=0.81"} +{"timestamp":"2026-03-21T15:39:19.302232474Z","score":0.8499333537994854,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=0.84 RRCF-fast!:w=0.16,s=0.89 RRCF-mid!:w=0.16,s=0.96 RRCF-slow!:w=0.17,s=0.91 COPOD!:w=0.22,s=0.71"} +{"timestamp":"2026-03-21T15:39:49.307629435Z","score":0.4182656003004236,"is_anomaly":false,"confidence":0.5194842844617422,"method":"SEAD","details":"MAD!:w=0.29,s=0.24 RRCF-fast:w=0.16,s=0.58 RRCF-mid:w=0.16,s=0.74 RRCF-slow!:w=0.17,s=0.67 COPOD!:w=0.22,s=0.10"} +{"timestamp":"2026-03-21T15:40:19.262170667Z","score":0.3328857538675406,"is_anomaly":false,"confidence":0.4134428399829653,"method":"SEAD","details":"MAD!:w=0.29,s=0.33 RRCF-fast:w=0.16,s=0.28 RRCF-mid:w=0.16,s=0.58 RRCF-slow:w=0.17,s=0.39 COPOD!:w=0.22,s=0.15"} +{"timestamp":"2026-03-21T15:40:49.315235277Z","score":0.6534044828999601,"is_anomaly":false,"confidence":0.8115258821657314,"method":"SEAD","details":"MAD!:w=0.29,s=0.66 RRCF-fast:w=0.16,s=0.71 RRCF-mid:w=0.16,s=0.81 RRCF-slow:w=0.17,s=0.54 COPOD!:w=0.22,s=0.58"} +{"timestamp":"2026-03-21T15:41:19.318872425Z","score":0.4739180273829975,"is_anomaly":false,"confidence":0.5886043871926024,"method":"SEAD","details":"MAD!:w=0.29,s=0.47 RRCF-fast:w=0.16,s=0.68 RRCF-mid:w=0.16,s=0.78 RRCF-slow:w=0.17,s=0.47 COPOD!:w=0.22,s=0.10"} +{"timestamp":"2026-03-21T15:41:49.282653863Z","score":0.3415123477446248,"is_anomaly":false,"confidence":0.42415703676214184,"method":"SEAD","details":"MAD!:w=0.29,s=0.13 RRCF-fast:w=0.16,s=0.30 RRCF-mid:w=0.16,s=0.51 RRCF-slow:w=0.17,s=0.23 COPOD!:w=0.22,s=0.61"} +{"timestamp":"2026-03-21T15:42:20.404138727Z","score":0.7731680859973231,"is_anomaly":false,"confidence":0.9602718216235948,"method":"SEAD","details":"MAD!:w=0.29,s=0.94 RRCF-fast:w=0.16,s=0.61 RRCF-mid!:w=0.16,s=0.90 RRCF-slow!:w=0.17,s=0.67 COPOD!:w=0.22,s=0.67"} +{"timestamp":"2026-03-21T15:42:50.409341898Z","score":0.7226870698312609,"is_anomaly":false,"confidence":0.8994801208038287,"method":"SEAD","details":"MAD!:w=0.29,s=0.81 RRCF-fast:w=0.16,s=0.70 RRCF-mid:w=0.16,s=0.82 RRCF-slow!:w=0.17,s=0.66 COPOD!:w=0.22,s=0.61"} +{"timestamp":"2026-03-21T15:43:19.318709366Z","score":0.3724377196207108,"is_anomaly":false,"confidence":0.46354824794991584,"method":"SEAD","details":"MAD!:w=0.29,s=0.40 RRCF-fast:w=0.16,s=0.35 RRCF-mid:w=0.16,s=0.60 RRCF-slow:w=0.17,s=0.41 COPOD!:w=0.22,s=0.16"} +{"timestamp":"2026-03-21T15:43:49.269957292Z","score":0.20456060417874322,"is_anomaly":false,"confidence":0.25460286289799205,"method":"SEAD","details":"MAD!:w=0.29,s=0.02 RRCF-fast:w=0.16,s=0.21 RRCF-mid:w=0.16,s=0.48 RRCF-slow:w=0.17,s=0.15 COPOD!:w=0.22,s=0.28"} +{"timestamp":"2026-03-21T15:44:19.305172078Z","score":0.7672647634963718,"is_anomaly":false,"confidence":0.9549629860118809,"method":"SEAD","details":"MAD!:w=0.29,s=0.69 RRCF-fast!:w=0.16,s=0.85 RRCF-mid:w=0.15,s=0.77 RRCF-slow:w=0.17,s=0.56 COPOD!:w=0.22,s=0.97"} +{"timestamp":"2026-03-21T15:44:49.31320517Z","score":0.3534870175965435,"is_anomaly":false,"confidence":0.43996158027922483,"method":"SEAD","details":"MAD!:w=0.29,s=0.47 RRCF-fast:w=0.16,s=0.24 RRCF-mid:w=0.15,s=0.60 RRCF-slow:w=0.17,s=0.29 COPOD!:w=0.22,s=0.16"} +{"timestamp":"2026-03-21T15:45:19.276288524Z","score":0.24712905976337565,"is_anomaly":false,"confidence":0.3075849642390853,"method":"SEAD","details":"MAD!:w=0.29,s=0.16 RRCF-fast:w=0.16,s=0.12 RRCF-mid:w=0.15,s=0.39 RRCF-slow:w=0.17,s=0.14 COPOD!:w=0.22,s=0.42"} +{"timestamp":"2026-03-21T15:45:49.328639927Z","score":0.6908193380176774,"is_anomaly":false,"confidence":0.8598164925779648,"method":"SEAD","details":"MAD!:w=0.29,s=0.93 RRCF-fast:w=0.16,s=0.78 RRCF-mid:w=0.15,s=0.83 RRCF-slow:w=0.17,s=0.66 COPOD!:w=0.22,s=0.23"} +{"timestamp":"2026-03-21T15:46:20.714774814Z","score":0.6790455422428453,"is_anomaly":false,"confidence":0.8453347348156025,"method":"SEAD","details":"MAD!:w=0.29,s=0.83 RRCF-fast:w=0.16,s=0.57 RRCF-mid:w=0.15,s=0.77 RRCF-slow!:w=0.17,s=0.67 COPOD!:w=0.22,s=0.52"} +{"timestamp":"2026-03-21T15:46:49.315809796Z","score":0.4870524243364149,"is_anomaly":false,"confidence":0.606325064159653,"method":"SEAD","details":"MAD!:w=0.29,s=0.45 RRCF-fast:w=0.16,s=0.49 RRCF-mid:w=0.15,s=0.48 RRCF-slow:w=0.17,s=0.43 COPOD!:w=0.22,s=0.57"} +{"timestamp":"2026-03-21T15:47:19.273705815Z","score":0.24295321104830409,"is_anomaly":false,"confidence":0.3024492106313966,"method":"SEAD","details":"MAD!:w=0.29,s=0.10 RRCF-fast:w=0.16,s=0.27 RRCF-mid:w=0.15,s=0.48 RRCF-slow:w=0.17,s=0.51 COPOD!:w=0.22,s=0.04"} +{"timestamp":"2026-03-21T15:47:49.269058432Z","score":0.24207694212538153,"is_anomaly":false,"confidence":0.3013583551415877,"method":"SEAD","details":"MAD!:w=0.29,s=0.34 RRCF-fast:w=0.16,s=0.36 RRCF-mid:w=0.15,s=0.37 RRCF-slow:w=0.17,s=0.14 COPOD!:w=0.23,s=0.01"} +{"timestamp":"2026-03-21T15:48:19.311320621Z","score":0.45679423165223587,"is_anomaly":false,"confidence":0.5686570438318908,"method":"SEAD","details":"MAD!:w=0.29,s=0.64 RRCF-fast:w=0.16,s=0.27 RRCF-mid:w=0.15,s=0.44 RRCF-slow:w=0.17,s=0.19 COPOD!:w=0.23,s=0.57"} +{"timestamp":"2026-03-21T15:48:49.316523144Z","score":0.17843982389327798,"is_anomaly":false,"confidence":0.22213735578492605,"method":"SEAD","details":"MAD!:w=0.29,s=0.17 RRCF-fast:w=0.16,s=0.11 RRCF-mid:w=0.15,s=0.28 RRCF-slow:w=0.17,s=0.15 COPOD!:w=0.23,s=0.19"} +{"timestamp":"2026-03-21T15:49:19.270243593Z","score":0.27491894199383204,"is_anomaly":false,"confidence":0.3422429225564814,"method":"SEAD","details":"MAD!:w=0.29,s=0.13 RRCF-fast:w=0.16,s=0.18 RRCF-mid:w=0.15,s=0.22 RRCF-slow:w=0.17,s=0.11 COPOD!:w=0.23,s=0.69"} +{"timestamp":"2026-03-21T15:49:49.357741201Z","score":0.7763622449950291,"is_anomaly":false,"confidence":0.9671447014195915,"method":"SEAD","details":"MAD!:w=0.29,s=0.93 RRCF-fast:w=0.16,s=0.84 RRCF-mid:w=0.15,s=0.78 RRCF-slow:w=0.17,s=0.59 COPOD!:w=0.22,s=0.68"} +{"timestamp":"2026-03-21T15:50:19.292767317Z","score":0.8058617831828228,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=0.90 RRCF-fast!:w=0.16,s=0.91 RRCF-mid!:w=0.15,s=0.98 RRCF-slow!:w=0.17,s=0.98 COPOD!:w=0.22,s=0.35"} +{"timestamp":"2026-03-21T15:50:49.31131453Z","score":0.8984623481498621,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=0.89 RRCF-fast!:w=0.16,s=0.95 RRCF-mid!:w=0.15,s=0.91 RRCF-slow!:w=0.17,s=0.84 COPOD!:w=0.23,s=0.92"} +{"timestamp":"2026-03-21T15:51:19.271408223Z","score":0.8496427651486981,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=0.92 RRCF-fast!:w=0.16,s=0.92 RRCF-mid!:w=0.15,s=0.91 RRCF-slow!:w=0.17,s=0.98 COPOD!:w=0.23,s=0.57"} +{"timestamp":"2026-03-21T15:51:50.926662876Z","score":0.8690280737973264,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=0.93 RRCF-fast!:w=0.16,s=0.96 RRCF-mid!:w=0.15,s=0.99 RRCF-slow!:w=0.17,s=1.00 COPOD!:w=0.23,s=0.56"} +{"timestamp":"2026-03-21T15:52:19.269449569Z","score":0.8269342422891479,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=0.90 RRCF-fast!:w=0.16,s=0.95 RRCF-mid!:w=0.15,s=0.98 RRCF-slow!:w=0.17,s=0.99 COPOD!:w=0.23,s=0.43"} +{"timestamp":"2026-03-21T15:52:50.468815152Z","score":0.9293624154285232,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=1.00 RRCF-fast!:w=0.16,s=0.98 RRCF-mid!:w=0.15,s=1.00 RRCF-slow!:w=0.17,s=1.00 COPOD!:w=0.23,s=0.71"} +{"timestamp":"2026-03-21T15:53:21.440463714Z","score":0.7315711064909891,"is_anomaly":false,"confidence":0.9036023247030487,"method":"SEAD","details":"MAD!:w=0.29,s=0.44 RRCF-fast!:w=0.16,s=0.97 RRCF-mid!:w=0.15,s=1.00 RRCF-slow!:w=0.17,s=0.99 COPOD!:w=0.23,s=0.56"} +{"timestamp":"2026-03-21T15:53:50.936579097Z","score":0.7649408237837779,"is_anomaly":false,"confidence":0.9448190346754769,"method":"SEAD","details":"MAD!:w=0.29,s=0.37 RRCF-fast!:w=0.16,s=0.93 RRCF-mid!:w=0.15,s=0.97 RRCF-slow!:w=0.17,s=0.98 COPOD!:w=0.23,s=0.85"} +{"timestamp":"2026-03-21T15:54:19.390861641Z","score":0.6633151717929037,"is_anomaly":false,"confidence":0.8192957949334382,"method":"SEAD","details":"MAD!:w=0.29,s=0.71 RRCF-fast:w=0.16,s=0.56 RRCF-mid!:w=0.15,s=0.96 RRCF-slow!:w=0.17,s=0.97 COPOD!:w=0.23,s=0.27"} +{"timestamp":"2026-03-21T15:54:49.320083741Z","score":0.8491481317365847,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=0.87 RRCF-fast:w=0.16,s=0.76 RRCF-mid:w=0.15,s=0.92 RRCF-slow!:w=0.17,s=0.96 COPOD!:w=0.23,s=0.76"} +{"timestamp":"2026-03-21T15:55:19.273321585Z","score":0.8068070855961115,"is_anomaly":false,"confidence":0.9921875841035867,"method":"SEAD","details":"MAD!:w=0.29,s=0.92 RRCF-fast:w=0.16,s=0.76 RRCF-mid:w=0.15,s=0.94 RRCF-slow!:w=0.17,s=0.98 COPOD!:w=0.24,s=0.50"} +{"timestamp":"2026-03-21T15:55:49.277847675Z","score":0.7383987357435331,"is_anomaly":false,"confidence":0.9080610108688042,"method":"SEAD","details":"MAD!:w=0.29,s=0.87 RRCF-fast:w=0.16,s=0.31 RRCF-mid:w=0.15,s=0.85 RRCF-slow:w=0.16,s=0.91 COPOD!:w=0.24,s=0.68"} +{"timestamp":"2026-03-21T15:56:19.312781079Z","score":0.5671149886745137,"is_anomaly":false,"confidence":0.7004738399226892,"method":"SEAD","details":"MAD!:w=0.29,s=0.46 RRCF-fast:w=0.16,s=0.46 RRCF-mid:w=0.15,s=0.83 RRCF-slow:w=0.16,s=0.87 COPOD!:w=0.24,s=0.39"} +{"timestamp":"2026-03-21T15:56:49.324750378Z","score":0.5435901827786488,"is_anomaly":false,"confidence":0.6714171028439766,"method":"SEAD","details":"MAD!:w=0.29,s=0.46 RRCF-fast:w=0.16,s=0.16 RRCF-mid:w=0.15,s=0.70 RRCF-slow:w=0.16,s=0.87 COPOD!:w=0.24,s=0.59"} +{"timestamp":"2026-03-21T15:57:19.268761344Z","score":0.8589215175615428,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=1.00 RRCF-fast:w=0.16,s=0.77 RRCF-mid!:w=0.15,s=0.97 RRCF-slow!:w=0.16,s=0.98 COPOD!:w=0.24,s=0.60"} +{"timestamp":"2026-03-21T15:57:50.862332108Z","score":0.7629811352347726,"is_anomaly":false,"confidence":0.9382917215282939,"method":"SEAD","details":"MAD!:w=0.29,s=0.71 RRCF-fast:w=0.16,s=0.70 RRCF-mid:w=0.15,s=0.93 RRCF-slow:w=0.16,s=0.92 COPOD!:w=0.24,s=0.67"} +{"timestamp":"2026-03-21T15:58:19.270084231Z","score":0.63858895963049,"is_anomaly":false,"confidence":0.7853178887526275,"method":"SEAD","details":"MAD!:w=0.29,s=0.88 RRCF-fast:w=0.16,s=0.53 RRCF-mid:w=0.15,s=0.86 RRCF-slow:w=0.16,s=0.88 COPOD!:w=0.24,s=0.12"} +{"timestamp":"2026-03-21T15:58:49.268828987Z","score":0.780844476522785,"is_anomaly":false,"confidence":0.9602595323631177,"method":"SEAD","details":"MAD!:w=0.29,s=0.92 RRCF-fast:w=0.16,s=0.73 RRCF-mid:w=0.15,s=0.92 RRCF-slow!:w=0.16,s=0.96 COPOD!:w=0.24,s=0.44"} +{"timestamp":"2026-03-21T15:59:19.287837855Z","score":0.451424768705209,"is_anomaly":false,"confidence":0.5551488808941373,"method":"SEAD","details":"MAD!:w=0.29,s=0.29 RRCF-fast:w=0.16,s=0.51 RRCF-mid:w=0.15,s=0.81 RRCF-slow:w=0.16,s=0.93 COPOD!:w=0.24,s=0.07"} +{"timestamp":"2026-03-21T15:59:49.362762703Z","score":0.607365592544648,"is_anomaly":false,"confidence":0.7501894983256128,"method":"SEAD","details":"MAD!:w=0.29,s=0.40 RRCF-fast:w=0.16,s=0.54 RRCF-mid:w=0.14,s=0.76 RRCF-slow:w=0.16,s=0.85 COPOD!:w=0.25,s=0.64"} +{"timestamp":"2026-03-21T16:00:20.238519835Z","score":0.5147055268871136,"is_anomaly":false,"confidence":0.6357401303935066,"method":"SEAD","details":"MAD!:w=0.29,s=0.71 RRCF-fast:w=0.16,s=0.26 RRCF-mid:w=0.14,s=0.64 RRCF-slow:w=0.16,s=0.85 COPOD!:w=0.25,s=0.17"} +{"timestamp":"2026-03-21T16:00:49.31566206Z","score":0.5904846136483516,"is_anomaly":false,"confidence":0.7293389048035128,"method":"SEAD","details":"MAD!:w=0.29,s=0.85 RRCF-fast:w=0.16,s=0.15 RRCF-mid:w=0.14,s=0.67 RRCF-slow:w=0.16,s=0.85 COPOD!:w=0.25,s=0.37"} +{"timestamp":"2026-03-21T16:01:19.271561797Z","score":0.5299714312445918,"is_anomaly":false,"confidence":0.654595859581988,"method":"SEAD","details":"MAD!:w=0.28,s=0.76 RRCF-fast:w=0.17,s=0.13 RRCF-mid:w=0.14,s=0.55 RRCF-slow:w=0.16,s=0.75 COPOD!:w=0.25,s=0.38"} +{"timestamp":"2026-03-21T16:01:49.272765657Z","score":0.6316658655182277,"is_anomaly":false,"confidence":0.780204055974242,"method":"SEAD","details":"MAD!:w=0.28,s=0.91 RRCF-fast:w=0.17,s=0.42 RRCF-mid:w=0.14,s=0.86 RRCF-slow:w=0.16,s=0.90 COPOD!:w=0.25,s=0.15"} +{"timestamp":"2026-03-21T16:02:19.363424039Z","score":0.8370488478397355,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=0.92 RRCF-fast!:w=0.17,s=0.91 RRCF-mid:w=0.14,s=0.90 RRCF-slow:w=0.16,s=0.89 COPOD!:w=0.25,s=0.63"} +{"timestamp":"2026-03-21T16:02:49.260749142Z","score":0.5370311841535302,"is_anomaly":false,"confidence":0.663315735317573,"method":"SEAD","details":"MAD!:w=0.28,s=0.29 RRCF-fast:w=0.17,s=0.63 RRCF-mid:w=0.14,s=0.71 RRCF-slow:w=0.16,s=0.85 COPOD!:w=0.25,s=0.45"} +{"timestamp":"2026-03-21T16:03:19.270184608Z","score":0.6731697251786353,"is_anomaly":false,"confidence":0.8314676771595811,"method":"SEAD","details":"MAD!:w=0.28,s=0.91 RRCF-fast:w=0.17,s=0.49 RRCF-mid:w=0.14,s=0.69 RRCF-slow:w=0.15,s=0.84 COPOD!:w=0.25,s=0.42"} +{"timestamp":"2026-03-21T16:03:49.272510706Z","score":0.8433128023814258,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=1.00 RRCF-fast!:w=0.17,s=0.95 RRCF-mid!:w=0.14,s=0.96 RRCF-slow!:w=0.15,s=0.98 COPOD!:w=0.26,s=0.45"} +{"timestamp":"2026-03-21T16:04:19.262993519Z","score":0.6614119613670048,"is_anomaly":false,"confidence":0.8133849438878875,"method":"SEAD","details":"MAD!:w=0.28,s=0.81 RRCF-fast:w=0.17,s=0.77 RRCF-mid!:w=0.14,s=0.96 RRCF-slow!:w=0.15,s=0.97 COPOD!:w=0.26,s=0.08"} +{"timestamp":"2026-03-21T16:04:49.306651995Z","score":0.8954982034180616,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=0.99 RRCF-fast:w=0.17,s=0.53 RRCF-mid:w=0.14,s=0.91 RRCF-slow:w=0.15,s=0.95 COPOD!:w=0.26,s=0.98"} +{"timestamp":"2026-03-21T16:05:19.283851779Z","score":0.7675423339598034,"is_anomaly":false,"confidence":0.9428896664736104,"method":"SEAD","details":"MAD!:w=0.28,s=0.61 RRCF-fast:w=0.17,s=0.65 RRCF-mid:w=0.14,s=0.89 RRCF-slow:w=0.15,s=0.95 COPOD!:w=0.26,s=0.84"} +{"timestamp":"2026-03-21T16:05:49.26819665Z","score":0.45461924132378695,"is_anomaly":false,"confidence":0.5584783612036183,"method":"SEAD","details":"MAD!:w=0.28,s=0.24 RRCF-fast:w=0.17,s=0.13 RRCF-mid:w=0.14,s=0.78 RRCF-slow:w=0.15,s=0.89 COPOD!:w=0.26,s=0.46"} +{"timestamp":"2026-03-21T16:06:19.270589947Z","score":0.3647592820602957,"is_anomaly":false,"confidence":0.448570218715129,"method":"SEAD","details":"MAD!:w=0.28,s=0.34 RRCF-fast:w=0.17,s=0.11 RRCF-mid:w=0.14,s=0.60 RRCF-slow:w=0.15,s=0.84 COPOD!:w=0.26,s=0.15"} +{"timestamp":"2026-03-21T16:06:49.313933217Z","score":0.49364337579561984,"is_anomaly":false,"confidence":0.6070680800696175,"method":"SEAD","details":"MAD!:w=0.28,s=0.47 RRCF-fast:w=0.17,s=0.30 RRCF-mid:w=0.14,s=0.67 RRCF-slow:w=0.15,s=0.83 COPOD!:w=0.26,s=0.36"} +{"timestamp":"2026-03-21T16:07:19.271678979Z","score":0.35823784747521525,"is_anomaly":false,"confidence":0.44055035059376785,"method":"SEAD","details":"MAD!:w=0.28,s=0.11 RRCF-fast:w=0.17,s=0.04 RRCF-mid:w=0.14,s=0.43 RRCF-slow:w=0.15,s=0.75 COPOD!:w=0.26,s=0.57"} +{"timestamp":"2026-03-21T16:07:50.430445766Z","score":0.7783974486115863,"is_anomaly":false,"confidence":0.9572502495310855,"method":"SEAD","details":"MAD!:w=0.28,s=0.91 RRCF-fast:w=0.17,s=0.75 RRCF-mid:w=0.14,s=0.75 RRCF-slow:w=0.15,s=0.83 COPOD!:w=0.26,s=0.64"} +{"timestamp":"2026-03-21T16:08:21.876771193Z","score":0.5145918245383734,"is_anomaly":false,"confidence":0.6328298651603292,"method":"SEAD","details":"MAD!:w=0.28,s=0.38 RRCF-fast:w=0.17,s=0.61 RRCF-mid:w=0.14,s=0.64 RRCF-slow:w=0.15,s=0.84 COPOD!:w=0.26,s=0.34"} +{"timestamp":"2026-03-21T16:08:49.32108155Z","score":0.48334927982289666,"is_anomaly":false,"confidence":0.5944087041220696,"method":"SEAD","details":"MAD!:w=0.28,s=0.44 RRCF-fast:w=0.17,s=0.21 RRCF-mid:w=0.14,s=0.56 RRCF-slow:w=0.15,s=0.79 COPOD!:w=0.26,s=0.49"} +{"timestamp":"2026-03-21T16:09:19.312641598Z","score":0.5747366774295706,"is_anomaly":false,"confidence":0.7067942332871803,"method":"SEAD","details":"MAD!:w=0.28,s=0.62 RRCF-fast:w=0.17,s=0.11 RRCF-mid:w=0.14,s=0.29 RRCF-slow:w=0.15,s=0.77 COPOD!:w=0.26,s=0.87"} +{"timestamp":"2026-03-21T16:09:49.27346301Z","score":0.2658229918433964,"is_anomaly":false,"confidence":0.32833209411636477,"method":"SEAD","details":"MAD!:w=0.28,s=0.21 RRCF-fast:w=0.17,s=0.08 RRCF-mid:w=0.14,s=0.31 RRCF-slow:w=0.15,s=0.72 COPOD!:w=0.26,s=0.17"} +{"timestamp":"2026-03-21T16:10:19.35767508Z","score":0.37596759054251605,"is_anomaly":false,"confidence":0.46437753734797876,"method":"SEAD","details":"MAD!:w=0.28,s=0.46 RRCF-fast:w=0.17,s=0.18 RRCF-mid:w=0.14,s=0.34 RRCF-slow:w=0.15,s=0.64 COPOD!:w=0.26,s=0.28"} +{"timestamp":"2026-03-21T16:10:49.314399262Z","score":0.3716072853811231,"is_anomaly":false,"confidence":0.45899189288322173,"method":"SEAD","details":"MAD!:w=0.28,s=0.08 RRCF-fast:w=0.17,s=0.03 RRCF-mid:w=0.14,s=0.19 RRCF-slow:w=0.15,s=0.64 COPOD!:w=0.26,s=0.85"} +{"timestamp":"2026-03-21T16:11:19.269539488Z","score":0.35748204393999944,"is_anomaly":false,"confidence":0.4415450570391815,"method":"SEAD","details":"MAD!:w=0.28,s=0.08 RRCF-fast:w=0.17,s=0.05 RRCF-mid:w=0.14,s=0.22 RRCF-slow:w=0.14,s=0.68 COPOD!:w=0.26,s=0.76"} +{"timestamp":"2026-03-21T16:11:51.320099915Z","score":0.7473149908843713,"is_anomaly":false,"confidence":0.9230484324176532,"method":"SEAD","details":"MAD!:w=0.28,s=0.39 RRCF-fast!:w=0.18,s=0.95 RRCF-mid!:w=0.14,s=0.97 RRCF-slow:w=0.14,s=0.90 COPOD!:w=0.26,s=0.80"} +{"timestamp":"2026-03-21T16:12:19.304063706Z","score":0.6294550856702369,"is_anomaly":false,"confidence":0.7774734043775258,"method":"SEAD","details":"MAD!:w=0.29,s=0.65 RRCF-fast:w=0.17,s=0.20 RRCF-mid:w=0.14,s=0.66 RRCF-slow:w=0.14,s=0.69 COPOD!:w=0.26,s=0.86"} +{"timestamp":"2026-03-21T16:12:49.30443211Z","score":0.674781517654248,"is_anomaly":false,"confidence":0.836360425808214,"method":"SEAD","details":"MAD!:w=0.29,s=0.63 RRCF-fast:w=0.18,s=0.30 RRCF-mid:w=0.14,s=0.48 RRCF-slow:w=0.14,s=0.84 COPOD!:w=0.25,s=1.00"} +{"timestamp":"2026-03-21T16:13:19.272809197Z","score":0.3011741863410101,"is_anomaly":false,"confidence":0.3732914493660982,"method":"SEAD","details":"MAD!:w=0.29,s=0.24 RRCF-fast:w=0.18,s=0.14 RRCF-mid:w=0.14,s=0.24 RRCF-slow:w=0.14,s=0.58 COPOD!:w=0.25,s=0.36"} +{"timestamp":"2026-03-21T16:13:49.273130154Z","score":0.24232751622990728,"is_anomaly":false,"confidence":0.3003537283647713,"method":"SEAD","details":"MAD!:w=0.29,s=0.35 RRCF-fast:w=0.18,s=0.07 RRCF-mid:w=0.14,s=0.18 RRCF-slow:w=0.14,s=0.69 COPOD!:w=0.25,s=0.02"} +{"timestamp":"2026-03-21T16:14:19.321322835Z","score":0.3848138197891141,"is_anomaly":false,"confidence":0.4769588996665708,"method":"SEAD","details":"MAD!:w=0.29,s=0.46 RRCF-fast:w=0.18,s=0.30 RRCF-mid:w=0.14,s=0.19 RRCF-slow:w=0.14,s=0.71 COPOD!:w=0.25,s=0.28"} +{"timestamp":"2026-03-21T16:14:49.26916348Z","score":0.247481483476146,"is_anomaly":false,"confidence":0.3067418319625858,"method":"SEAD","details":"MAD!:w=0.29,s=0.11 RRCF-fast:w=0.18,s=0.00 RRCF-mid:w=0.14,s=0.16 RRCF-slow:w=0.14,s=0.60 COPOD!:w=0.25,s=0.43"} +{"timestamp":"2026-03-21T16:15:24.988088399Z","score":0.8208688060706844,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=0.91 RRCF-fast:w=0.18,s=0.84 RRCF-mid:w=0.14,s=0.81 RRCF-slow:w=0.14,s=0.81 COPOD!:w=0.25,s=0.72"} +{"timestamp":"2026-03-21T16:15:49.263174166Z","score":0.6360355902505277,"is_anomaly":false,"confidence":0.7856013350512655,"method":"SEAD","details":"MAD!:w=0.29,s=0.71 RRCF-fast:w=0.18,s=0.55 RRCF-mid:w=0.14,s=0.68 RRCF-slow:w=0.14,s=0.76 COPOD!:w=0.25,s=0.52"} +{"timestamp":"2026-03-21T16:16:19.321368707Z","score":0.4349145809048184,"is_anomaly":false,"confidence":0.5390564717010147,"method":"SEAD","details":"MAD!:w=0.28,s=0.43 RRCF-fast:w=0.18,s=0.17 RRCF-mid:w=0.14,s=0.29 RRCF-slow:w=0.14,s=0.62 COPOD!:w=0.25,s=0.61"} +{"timestamp":"2026-03-21T16:16:49.309638431Z","score":0.6000851549779833,"is_anomaly":false,"confidence":0.743777745251963,"method":"SEAD","details":"MAD!:w=0.29,s=0.57 RRCF-fast:w=0.18,s=0.23 RRCF-mid:w=0.14,s=0.40 RRCF-slow:w=0.14,s=0.63 COPOD!:w=0.25,s=0.99"} +{"timestamp":"2026-03-21T16:17:19.274235431Z","score":0.27277864864921825,"is_anomaly":false,"confidence":0.3380964960758557,"method":"SEAD","details":"MAD!:w=0.29,s=0.24 RRCF-fast:w=0.18,s=0.16 RRCF-mid:w=0.14,s=0.07 RRCF-slow:w=0.14,s=0.45 COPOD!:w=0.25,s=0.40"} +{"timestamp":"2026-03-21T16:17:49.301853985Z","score":0.27490989566961654,"is_anomaly":false,"confidence":0.3407380780084482,"method":"SEAD","details":"MAD!:w=0.29,s=0.46 RRCF-fast:w=0.18,s=0.01 RRCF-mid:w=0.14,s=0.16 RRCF-slow:w=0.14,s=0.65 COPOD!:w=0.25,s=0.11"} +{"timestamp":"2026-03-21T16:18:19.315303965Z","score":0.2642394904527278,"is_anomaly":false,"confidence":0.3275126051446286,"method":"SEAD","details":"MAD!:w=0.28,s=0.09 RRCF-fast:w=0.18,s=0.01 RRCF-mid:w=0.14,s=0.17 RRCF-slow:w=0.14,s=0.46 COPOD!:w=0.25,s=0.59"} +{"timestamp":"2026-03-21T16:18:49.272540641Z","score":0.2922255051924437,"is_anomaly":false,"confidence":0.36219997371060786,"method":"SEAD","details":"MAD!:w=0.29,s=0.16 RRCF-fast:w=0.18,s=0.11 RRCF-mid:w=0.14,s=0.05 RRCF-slow:w=0.14,s=0.48 COPOD!:w=0.25,s=0.61"} +{"timestamp":"2026-03-21T16:19:21.476471601Z","score":0.6589037229575114,"is_anomaly":false,"confidence":0.8166806349632871,"method":"SEAD","details":"MAD!:w=0.29,s=0.64 RRCF-fast:w=0.18,s=0.57 RRCF-mid:w=0.14,s=0.68 RRCF-slow:w=0.14,s=0.71 COPOD!:w=0.25,s=0.72"} +{"timestamp":"2026-03-21T16:19:49.757235761Z","score":0.5857838974870506,"is_anomaly":false,"confidence":0.7269036821344785,"method":"SEAD","details":"MAD!:w=0.29,s=0.74 RRCF-fast:w=0.18,s=0.36 RRCF-mid:w=0.14,s=0.37 RRCF-slow:w=0.14,s=0.59 COPOD!:w=0.25,s=0.70"} +{"timestamp":"2026-03-21T16:20:19.317695299Z","score":0.5563506701652876,"is_anomaly":false,"confidence":0.6903797670711361,"method":"SEAD","details":"MAD!:w=0.29,s=0.75 RRCF-fast:w=0.19,s=0.58 RRCF-mid:w=0.14,s=0.54 RRCF-slow:w=0.14,s=0.58 COPOD!:w=0.25,s=0.31"} +{"timestamp":"2026-03-21T16:20:49.308429864Z","score":0.5039879875028548,"is_anomaly":false,"confidence":0.6254025169332506,"method":"SEAD","details":"MAD!:w=0.28,s=0.72 RRCF-fast:w=0.19,s=0.32 RRCF-mid:w=0.14,s=0.38 RRCF-slow:w=0.14,s=0.60 COPOD!:w=0.25,s=0.41"} +{"timestamp":"2026-03-21T16:21:19.266500049Z","score":0.14386353295485277,"is_anomaly":false,"confidence":0.1785213493890366,"method":"SEAD","details":"MAD!:w=0.28,s=0.03 RRCF-fast:w=0.19,s=0.03 RRCF-mid:w=0.14,s=0.04 RRCF-slow:w=0.14,s=0.42 COPOD!:w=0.25,s=0.27"} +{"timestamp":"2026-03-21T16:21:49.314649271Z","score":0.38718663459486147,"is_anomaly":false,"confidence":0.48046283205741985,"method":"SEAD","details":"MAD!:w=0.28,s=0.46 RRCF-fast:w=0.19,s=0.41 RRCF-mid:w=0.14,s=0.21 RRCF-slow:w=0.14,s=0.41 COPOD!:w=0.25,s=0.38"} +{"timestamp":"2026-03-21T16:22:19.280586328Z","score":0.2687064566359101,"is_anomaly":false,"confidence":0.3334398804403282,"method":"SEAD","details":"MAD!:w=0.28,s=0.14 RRCF-fast:w=0.19,s=0.01 RRCF-mid:w=0.14,s=0.09 RRCF-slow:w=0.14,s=0.31 COPOD!:w=0.25,s=0.69"} +{"timestamp":"2026-03-21T16:22:49.306988879Z","score":0.6599509216099643,"is_anomaly":false,"confidence":0.8196565341404491,"method":"SEAD","details":"MAD!:w=0.28,s=0.91 RRCF-fast:w=0.19,s=0.68 RRCF-mid:w=0.15,s=0.80 RRCF-slow:w=0.14,s=0.82 COPOD!:w=0.25,s=0.18"} +{"timestamp":"2026-03-21T16:23:22.600998483Z","score":0.4534830495672124,"is_anomaly":false,"confidence":0.5632242224814717,"method":"SEAD","details":"MAD!:w=0.28,s=0.37 RRCF-fast:w=0.19,s=0.52 RRCF-mid:w=0.15,s=0.44 RRCF-slow:w=0.14,s=0.49 COPOD!:w=0.25,s=0.49"} +{"timestamp":"2026-03-21T16:23:49.318305943Z","score":0.4243393688911897,"is_anomaly":false,"confidence":0.5270278819464363,"method":"SEAD","details":"MAD!:w=0.28,s=0.43 RRCF-fast:w=0.19,s=0.36 RRCF-mid:w=0.15,s=0.27 RRCF-slow:w=0.14,s=0.42 COPOD!:w=0.25,s=0.56"} +{"timestamp":"2026-03-21T16:24:19.282332385Z","score":0.5460719759102226,"is_anomaly":false,"confidence":0.6782193167847861,"method":"SEAD","details":"MAD!:w=0.28,s=0.64 RRCF-fast:w=0.19,s=0.25 RRCF-mid:w=0.15,s=0.28 RRCF-slow:w=0.14,s=0.54 COPOD!:w=0.25,s=0.83"} +{"timestamp":"2026-03-21T16:24:49.271674612Z","score":0.23218464180587528,"is_anomaly":false,"confidence":0.288372441876399,"method":"SEAD","details":"MAD!:w=0.28,s=0.21 RRCF-fast:w=0.19,s=0.01 RRCF-mid:w=0.15,s=0.06 RRCF-slow:w=0.14,s=0.24 COPOD!:w=0.25,s=0.52"} +{"timestamp":"2026-03-21T16:25:19.277208573Z","score":0.18737943638525834,"is_anomaly":false,"confidence":0.23272454718610502,"method":"SEAD","details":"MAD!:w=0.28,s=0.35 RRCF-fast:w=0.19,s=0.07 RRCF-mid:w=0.15,s=0.12 RRCF-slow:w=0.14,s=0.27 COPOD!:w=0.24,s=0.08"} +{"timestamp":"2026-03-21T16:25:49.315099323Z","score":0.24144020449077103,"is_anomaly":false,"confidence":0.29986781552223646,"method":"SEAD","details":"MAD!:w=0.28,s=0.07 RRCF-fast:w=0.19,s=0.12 RRCF-mid:w=0.15,s=0.14 RRCF-slow:w=0.14,s=0.30 COPOD!:w=0.24,s=0.56"} +{"timestamp":"2026-03-21T16:26:19.279336364Z","score":0.25058995018829755,"is_anomaly":false,"confidence":0.3118925024080253,"method":"SEAD","details":"MAD!:w=0.28,s=0.07 RRCF-fast:w=0.19,s=0.11 RRCF-mid:w=0.15,s=0.02 RRCF-slow:w=0.14,s=0.28 COPOD!:w=0.24,s=0.70"} +{"timestamp":"2026-03-21T16:26:52.013207896Z","score":0.8654351353602554,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=0.91 RRCF-fast!:w=0.19,s=0.94 RRCF-mid:w=0.15,s=0.81 RRCF-slow:w=0.14,s=0.80 COPOD!:w=0.24,s=0.83"} +{"timestamp":"2026-03-21T16:27:19.313430354Z","score":0.5935926129197457,"is_anomaly":false,"confidence":0.7372397671788112,"method":"SEAD","details":"MAD!:w=0.28,s=0.46 RRCF-fast!:w=0.19,s=0.87 RRCF-mid:w=0.15,s=0.76 RRCF-slow:w=0.14,s=0.61 COPOD!:w=0.24,s=0.42"} +{"timestamp":"2026-03-21T16:27:49.936816188Z","score":0.6476676460485233,"is_anomaly":false,"confidence":0.8044007526195726,"method":"SEAD","details":"MAD!:w=0.28,s=0.70 RRCF-fast:w=0.19,s=0.57 RRCF-mid:w=0.15,s=0.40 RRCF-slow:w=0.14,s=0.47 COPOD!:w=0.24,s=0.90"} +{"timestamp":"2026-03-21T16:28:19.325560244Z","score":0.2176456870286356,"is_anomaly":false,"confidence":0.2703151153502607,"method":"SEAD","details":"MAD!:w=0.28,s=0.26 RRCF-fast:w=0.19,s=0.21 RRCF-mid:w=0.15,s=0.22 RRCF-slow:w=0.14,s=0.35 COPOD!:w=0.24,s=0.09"} +{"timestamp":"2026-03-21T16:28:49.268521341Z","score":0.29186766051093344,"is_anomaly":false,"confidence":0.36249852406973426,"method":"SEAD","details":"MAD!:w=0.28,s=0.36 RRCF-fast:w=0.19,s=0.30 RRCF-mid:w=0.15,s=0.13 RRCF-slow:w=0.14,s=0.33 COPOD!:w=0.24,s=0.28"} +{"timestamp":"2026-03-21T16:29:19.314574155Z","score":0.2800772027632498,"is_anomaly":false,"confidence":0.3478548203988311,"method":"SEAD","details":"MAD!:w=0.28,s=0.49 RRCF-fast:w=0.19,s=0.16 RRCF-mid:w=0.15,s=0.27 RRCF-slow:w=0.14,s=0.31 COPOD!:w=0.24,s=0.11"} +{"timestamp":"2026-03-21T16:29:49.269319871Z","score":0.3433687464088684,"is_anomaly":false,"confidence":0.4273680468258853,"method":"SEAD","details":"MAD!:w=0.28,s=0.13 RRCF-fast:w=0.19,s=0.30 RRCF-mid:w=0.15,s=0.05 RRCF-slow:w=0.14,s=0.34 COPOD!:w=0.24,s=0.80"} +{"timestamp":"2026-03-21T16:30:20.173039391Z","score":0.6188536336064723,"is_anomaly":false,"confidence":0.7702456074746274,"method":"SEAD","details":"MAD!:w=0.28,s=0.91 RRCF-fast!:w=0.19,s=0.69 RRCF-mid:w=0.15,s=0.59 RRCF-slow:w=0.14,s=0.66 COPOD!:w=0.24,s=0.21"} +{"timestamp":"2026-03-21T16:30:51.128152502Z","score":0.6792900990430077,"is_anomaly":false,"confidence":0.8454668221623401,"method":"SEAD","details":"MAD!:w=0.28,s=0.77 RRCF-fast:w=0.19,s=0.58 RRCF-mid:w=0.15,s=0.59 RRCF-slow:w=0.14,s=0.57 COPOD!:w=0.24,s=0.77"} +{"timestamp":"2026-03-21T16:31:19.322939069Z","score":0.5005902862617316,"is_anomaly":false,"confidence":0.6230511516762831,"method":"SEAD","details":"MAD!:w=0.28,s=0.46 RRCF-fast:w=0.19,s=0.42 RRCF-mid:w=0.15,s=0.37 RRCF-slow:w=0.14,s=0.46 COPOD!:w=0.24,s=0.72"} +{"timestamp":"2026-03-21T16:31:49.315468675Z","score":0.4706737685522015,"is_anomaly":false,"confidence":0.5858160687659426,"method":"SEAD","details":"MAD!:w=0.28,s=0.64 RRCF-fast:w=0.19,s=0.58 RRCF-mid:w=0.15,s=0.22 RRCF-slow:w=0.14,s=0.31 COPOD!:w=0.24,s=0.44"} +{"timestamp":"2026-03-21T16:32:19.281185666Z","score":0.18047300469012958,"is_anomaly":false,"confidence":0.224622643516246,"method":"SEAD","details":"MAD!:w=0.28,s=0.22 RRCF-fast:w=0.19,s=0.15 RRCF-mid:w=0.15,s=0.14 RRCF-slow:w=0.14,s=0.16 COPOD!:w=0.24,s=0.19"} +{"timestamp":"2026-03-21T16:32:49.272481921Z","score":0.262917556829035,"is_anomaly":false,"confidence":0.327302558303158,"method":"SEAD","details":"MAD!:w=0.28,s=0.30 RRCF-fast:w=0.19,s=0.31 RRCF-mid:w=0.15,s=0.26 RRCF-slow:w=0.14,s=0.27 COPOD!:w=0.24,s=0.17"} +{"timestamp":"2026-03-21T16:33:19.318895361Z","score":0.22566100243203005,"is_anomaly":false,"confidence":0.28092237086048416,"method":"SEAD","details":"MAD!:w=0.28,s=0.05 RRCF-fast:w=0.19,s=0.25 RRCF-mid:w=0.15,s=0.10 RRCF-slow:w=0.14,s=0.23 COPOD!:w=0.24,s=0.48"} +{"timestamp":"2026-03-21T16:33:49.264462796Z","score":0.1831471709335155,"is_anomaly":false,"confidence":0.22799746930367604,"method":"SEAD","details":"MAD!:w=0.28,s=0.07 RRCF-fast:w=0.19,s=0.04 RRCF-mid:w=0.15,s=0.11 RRCF-slow:w=0.14,s=0.22 COPOD!:w=0.24,s=0.46"} +{"timestamp":"2026-03-21T16:34:25.302700108Z","score":0.563316440481081,"is_anomaly":false,"confidence":0.7012651202429141,"method":"SEAD","details":"MAD!:w=0.28,s=0.40 RRCF-fast!:w=0.19,s=0.70 RRCF-mid:w=0.15,s=0.63 RRCF-slow:w=0.14,s=0.72 COPOD!:w=0.24,s=0.51"} +{"timestamp":"2026-03-21T16:34:49.315182425Z","score":0.4973394673706987,"is_anomaly":false,"confidence":0.6191312667697175,"method":"SEAD","details":"MAD!:w=0.28,s=0.50 RRCF-fast:w=0.19,s=0.43 RRCF-mid:w=0.15,s=0.43 RRCF-slow:w=0.14,s=0.42 COPOD!:w=0.24,s=0.63"} +{"timestamp":"2026-03-21T16:35:20.283700474Z","score":0.5530067549960359,"is_anomaly":false,"confidence":0.6884307303480224,"method":"SEAD","details":"MAD!:w=0.28,s=0.79 RRCF-fast:w=0.19,s=0.54 RRCF-mid!:w=0.15,s=0.73 RRCF-slow:w=0.14,s=0.64 COPOD!:w=0.24,s=0.12"} +{"timestamp":"2026-03-21T16:35:49.316286867Z","score":0.41030537209433054,"is_anomaly":false,"confidence":0.5107836828840217,"method":"SEAD","details":"MAD!:w=0.28,s=0.73 RRCF-fast:w=0.19,s=0.38 RRCF-mid:w=0.15,s=0.28 RRCF-slow:w=0.14,s=0.29 COPOD!:w=0.24,s=0.21"} +{"timestamp":"2026-03-21T16:36:19.271492924Z","score":0.10420934833844948,"is_anomaly":false,"confidence":0.129817645994062,"method":"SEAD","details":"MAD!:w=0.28,s=0.00 RRCF-fast:w=0.19,s=0.02 RRCF-mid:w=0.15,s=0.23 RRCF-slow:w=0.14,s=0.12 COPOD!:w=0.24,s=0.21"} +{"timestamp":"2026-03-21T16:36:49.312432365Z","score":0.32872357068516533,"is_anomaly":false,"confidence":0.4095037615100948,"method":"SEAD","details":"MAD!:w=0.28,s=0.51 RRCF-fast:w=0.19,s=0.47 RRCF-mid:w=0.15,s=0.29 RRCF-slow:w=0.14,s=0.29 COPOD!:w=0.24,s=0.04"} +{"timestamp":"2026-03-21T16:37:19.278042436Z","score":0.25202853901157374,"is_anomaly":false,"confidence":0.31396177194722424,"method":"SEAD","details":"MAD!:w=0.28,s=0.13 RRCF-fast:w=0.19,s=0.02 RRCF-mid:w=0.15,s=0.17 RRCF-slow:w=0.14,s=0.21 COPOD!:w=0.24,s=0.65"} +{"timestamp":"2026-03-21T16:37:54.543737137Z","score":0.7179834900545327,"is_anomaly":false,"confidence":0.8944200115210823,"method":"SEAD","details":"MAD!:w=0.28,s=0.90 RRCF-fast:w=0.19,s=0.54 RRCF-mid:w=0.15,s=0.62 RRCF-slow:w=0.14,s=0.75 COPOD!:w=0.24,s=0.70"} +{"timestamp":"2026-03-21T16:38:19.398752872Z","score":0.8000138788393002,"is_anomaly":false,"confidence":0.996608463342416,"method":"SEAD","details":"MAD!:w=0.28,s=0.81 RRCF-fast!:w=0.19,s=0.83 RRCF-mid:w=0.15,s=0.67 RRCF-slow:w=0.14,s=0.63 COPOD!:w=0.24,s=0.95"} +{"timestamp":"2026-03-21T16:38:49.312740685Z","score":0.5117601078524099,"is_anomaly":false,"confidence":0.6375195083199158,"method":"SEAD","details":"MAD!:w=0.28,s=0.24 RRCF-fast!:w=0.19,s=0.94 RRCF-mid!:w=0.15,s=0.92 RRCF-slow:w=0.14,s=0.43 COPOD!:w=0.24,s=0.26"} +{"timestamp":"2026-03-21T16:39:19.269972704Z","score":0.18900017870625052,"is_anomaly":false,"confidence":0.2354448874626515,"method":"SEAD","details":"MAD!:w=0.28,s=0.00 RRCF-fast:w=0.19,s=0.54 RRCF-mid:w=0.15,s=0.24 RRCF-slow:w=0.14,s=0.28 COPOD!:w=0.24,s=0.05"} +{"timestamp":"2026-03-21T16:39:49.271878762Z","score":0.2200408211694043,"is_anomaly":false,"confidence":0.27423993480550696,"method":"SEAD","details":"MAD!:w=0.28,s=0.01 RRCF-fast:w=0.19,s=0.53 RRCF-mid:w=0.15,s=0.33 RRCF-slow:w=0.14,s=0.25 COPOD!:w=0.24,s=0.14"} +{"timestamp":"2026-03-21T16:40:20.013879695Z","score":0.7393028830215689,"is_anomaly":false,"confidence":0.9214034621569999,"method":"SEAD","details":"MAD!:w=0.28,s=0.70 RRCF-fast!:w=0.19,s=0.78 RRCF-mid:w=0.15,s=0.61 RRCF-slow:w=0.14,s=0.53 COPOD!:w=0.24,s=0.95"} +{"timestamp":"2026-03-21T16:40:49.311695531Z","score":0.3564537882183122,"is_anomaly":false,"confidence":0.4442533122838489,"method":"SEAD","details":"MAD!:w=0.28,s=0.30 RRCF-fast:w=0.19,s=0.36 RRCF-mid:w=0.15,s=0.29 RRCF-slow:w=0.14,s=0.24 COPOD!:w=0.24,s=0.53"} +{"timestamp":"2026-03-21T16:41:19.273913453Z","score":0.22307875545630218,"is_anomaly":false,"confidence":0.2780261545458018,"method":"SEAD","details":"MAD!:w=0.28,s=0.03 RRCF-fast:w=0.19,s=0.29 RRCF-mid:w=0.15,s=0.24 RRCF-slow:w=0.14,s=0.11 COPOD!:w=0.24,s=0.45"} +{"timestamp":"2026-03-21T16:41:49.359299797Z","score":0.8350947430999541,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=0.84 RRCF-fast!:w=0.19,s=0.84 RRCF-mid!:w=0.15,s=0.90 RRCF-slow:w=0.14,s=0.51 COPOD!:w=0.24,s=0.98"} +{"timestamp":"2026-03-21T16:42:21.330436392Z","score":0.7552528292222707,"is_anomaly":false,"confidence":0.9408478796121152,"method":"SEAD","details":"MAD!:w=0.28,s=0.82 RRCF-fast!:w=0.19,s=0.72 RRCF-mid!:w=0.15,s=0.77 RRCF-slow:w=0.14,s=0.46 COPOD!:w=0.24,s=0.87"} +{"timestamp":"2026-03-21T16:42:49.320593019Z","score":0.37387093400690513,"is_anomaly":false,"confidence":0.4659605432429828,"method":"SEAD","details":"MAD!:w=0.28,s=0.27 RRCF-fast:w=0.19,s=0.55 RRCF-mid!:w=0.15,s=0.88 RRCF-slow:w=0.14,s=0.25 COPOD!:w=0.24,s=0.11"} +{"timestamp":"2026-03-21T16:43:19.272421443Z","score":0.27545808950159095,"is_anomaly":false,"confidence":0.3433072468331141,"method":"SEAD","details":"MAD!:w=0.28,s=0.32 RRCF-fast:w=0.19,s=0.32 RRCF-mid:w=0.15,s=0.38 RRCF-slow:w=0.14,s=0.24 COPOD!:w=0.24,s=0.14"} +{"timestamp":"2026-03-21T16:43:49.26450004Z","score":0.1291353397741445,"is_anomaly":false,"confidence":0.160943169419841,"method":"SEAD","details":"MAD!:w=0.28,s=0.00 RRCF-fast:w=0.19,s=0.20 RRCF-mid:w=0.15,s=0.33 RRCF-slow:w=0.14,s=0.16 COPOD!:w=0.24,s=0.08"} +{"timestamp":"2026-03-21T16:44:19.366416998Z","score":0.8101150582103565,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=0.73 RRCF-fast!:w=0.19,s=0.89 RRCF-mid!:w=0.15,s=0.89 RRCF-slow:w=0.14,s=0.57 COPOD!:w=0.24,s=0.94"} +{"timestamp":"2026-03-21T16:44:49.312529054Z","score":0.3948139868474931,"is_anomaly":false,"confidence":0.49183516829613744,"method":"SEAD","details":"MAD!:w=0.29,s=0.51 RRCF-fast:w=0.19,s=0.50 RRCF-mid:w=0.15,s=0.58 RRCF-slow:w=0.14,s=0.26 COPOD!:w=0.24,s=0.13"} +{"timestamp":"2026-03-21T16:45:19.272852485Z","score":0.20602387932024363,"is_anomaly":false,"confidence":0.25665197468709827,"method":"SEAD","details":"MAD!:w=0.28,s=0.16 RRCF-fast:w=0.19,s=0.24 RRCF-mid:w=0.15,s=0.42 RRCF-slow:w=0.14,s=0.14 COPOD!:w=0.24,s=0.14"} +{"timestamp":"2026-03-21T16:45:50.68013404Z","score":0.9175124583717186,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=0.91 RRCF-fast!:w=0.19,s=1.00 RRCF-mid!:w=0.15,s=1.00 RRCF-slow!:w=0.14,s=1.00 COPOD!:w=0.24,s=0.77"} +{"timestamp":"2026-03-21T16:46:20.057110279Z","score":0.7285365574137626,"is_anomaly":false,"confidence":0.9075663787562234,"method":"SEAD","details":"MAD!:w=0.28,s=0.43 RRCF-fast!:w=0.19,s=0.99 RRCF-mid!:w=0.15,s=0.99 RRCF-slow!:w=0.14,s=0.99 COPOD!:w=0.24,s=0.57"} +{"timestamp":"2026-03-21T16:46:49.312253319Z","score":0.6887088623121586,"is_anomaly":false,"confidence":0.8579514669858578,"method":"SEAD","details":"MAD!:w=0.29,s=0.46 RRCF-fast!:w=0.18,s=0.86 RRCF-mid!:w=0.15,s=0.95 RRCF-slow!:w=0.14,s=0.93 COPOD!:w=0.24,s=0.53"} +{"timestamp":"2026-03-21T16:47:19.270136487Z","score":0.45914261946282575,"is_anomaly":false,"confidence":0.5719718526655388,"method":"SEAD","details":"MAD!:w=0.29,s=0.03 RRCF-fast:w=0.18,s=0.78 RRCF-mid!:w=0.15,s=0.89 RRCF-slow!:w=0.14,s=0.88 COPOD!:w=0.24,s=0.22"} +{"timestamp":"2026-03-21T16:47:49.270307854Z","score":0.4019530020462736,"is_anomaly":false,"confidence":0.5007285177182216,"method":"SEAD","details":"MAD!:w=0.29,s=0.02 RRCF-fast:w=0.18,s=0.75 RRCF-mid!:w=0.14,s=0.81 RRCF-slow!:w=0.14,s=0.81 COPOD!:w=0.24,s=0.12"} +{"timestamp":"2026-03-21T16:48:19.318225866Z","score":0.8162634965860345,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=0.67 RRCF-fast:w=0.18,s=0.77 RRCF-mid!:w=0.14,s=0.88 RRCF-slow!:w=0.14,s=0.84 COPOD!:w=0.24,s=0.98"} +{"timestamp":"2026-03-21T16:48:49.32503343Z","score":0.5610907786648895,"is_anomaly":false,"confidence":0.698494423545657,"method":"SEAD","details":"MAD!:w=0.29,s=0.30 RRCF-fast:w=0.18,s=0.43 RRCF-mid:w=0.14,s=0.80 RRCF-slow!:w=0.14,s=0.78 COPOD!:w=0.24,s=0.71"} +{"timestamp":"2026-03-21T16:49:49.516092429Z","score":0.6690188577758714,"is_anomaly":false,"confidence":0.8328526491119344,"method":"SEAD","details":"MAD!:w=0.30,s=0.33 RRCF-fast!:w=0.18,s=0.99 RRCF-mid!:w=0.14,s=0.96 RRCF-slow!:w=0.14,s=0.96 COPOD!:w=0.24,s=0.51"} +{"timestamp":"2026-03-21T16:50:21.423136495Z","score":0.9145338851449627,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=0.86 RRCF-fast!:w=0.18,s=0.94 RRCF-mid!:w=0.14,s=0.93 RRCF-slow!:w=0.14,s=0.89 COPOD!:w=0.24,s=0.97"} +{"timestamp":"2026-03-21T16:51:33.862790077Z","score":0.8322588992351,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=0.75 RRCF-fast:w=0.18,s=0.83 RRCF-mid:w=0.14,s=0.76 RRCF-slow!:w=0.14,s=0.82 COPOD!:w=0.24,s=0.99"} +{"timestamp":"2026-03-21T16:51:49.316416272Z","score":0.6946029963823562,"is_anomaly":false,"confidence":0.8645257583515124,"method":"SEAD","details":"MAD!:w=0.30,s=0.44 RRCF-fast:w=0.18,s=0.64 RRCF-mid:w=0.14,s=0.78 RRCF-slow!:w=0.14,s=0.84 COPOD!:w=0.24,s=0.92"} +{"timestamp":"2026-03-21T16:52:19.30554089Z","score":0.66257400308777,"is_anomaly":false,"confidence":0.8246614187770323,"method":"SEAD","details":"MAD!:w=0.30,s=0.73 RRCF-fast:w=0.18,s=0.63 RRCF-mid:w=0.14,s=0.81 RRCF-slow:w=0.14,s=0.82 COPOD!:w=0.24,s=0.42"} +{"timestamp":"2026-03-21T16:53:01.205863578Z","score":0.8170723064831195,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=0.76 RRCF-fast!:w=0.18,s=1.00 RRCF-mid!:w=0.14,s=1.00 RRCF-slow!:w=0.14,s=1.00 COPOD!:w=0.24,s=0.55"} +{"timestamp":"2026-03-21T16:53:19.319670335Z","score":0.7523812687026407,"is_anomaly":false,"confidence":0.9344546736180954,"method":"SEAD","details":"MAD!:w=0.30,s=0.78 RRCF-fast:w=0.18,s=0.67 RRCF-mid:w=0.14,s=0.85 RRCF-slow!:w=0.14,s=0.86 COPOD!:w=0.24,s=0.66"} +{"timestamp":"2026-03-21T16:53:49.322894517Z","score":0.40136386548408254,"is_anomaly":false,"confidence":0.4995506814536034,"method":"SEAD","details":"MAD!:w=0.30,s=0.05 RRCF-fast:w=0.18,s=0.18 RRCF-mid:w=0.14,s=0.61 RRCF-slow:w=0.14,s=0.80 COPOD!:w=0.24,s=0.65"} +{"timestamp":"2026-03-21T16:54:22.269976709Z","score":0.7696592099645886,"is_anomaly":false,"confidence":0.9579431929207893,"method":"SEAD","details":"MAD!:w=0.30,s=0.70 RRCF-fast!:w=0.18,s=0.94 RRCF-mid!:w=0.14,s=0.97 RRCF-slow!:w=0.13,s=0.98 COPOD!:w=0.24,s=0.49"} +{"timestamp":"2026-03-21T16:54:49.365630385Z","score":0.8903683325366437,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=0.91 RRCF-fast:w=0.18,s=0.79 RRCF-mid!:w=0.14,s=0.89 RRCF-slow!:w=0.13,s=0.88 COPOD!:w=0.24,s=0.95"} +{"timestamp":"2026-03-21T16:55:19.380329698Z","score":0.5510485249182427,"is_anomaly":false,"confidence":0.6844001717216092,"method":"SEAD","details":"MAD!:w=0.30,s=0.41 RRCF-fast:w=0.18,s=0.70 RRCF-mid:w=0.14,s=0.81 RRCF-slow:w=0.13,s=0.84 COPOD!:w=0.24,s=0.30"} +{"timestamp":"2026-03-21T16:56:12.411091169Z","score":0.6784556239478451,"is_anomaly":false,"confidence":0.8426393040509247,"method":"SEAD","details":"MAD!:w=0.31,s=0.49 RRCF-fast:w=0.18,s=0.51 RRCF-mid:w=0.14,s=0.79 RRCF-slow:w=0.13,s=0.87 COPOD!:w=0.24,s=0.87"} +{"timestamp":"2026-03-21T16:56:19.366035597Z","score":0.7450643100056129,"is_anomaly":false,"confidence":0.9253670387506059,"method":"SEAD","details":"MAD!:w=0.31,s=0.44 RRCF-fast:w=0.18,s=0.78 RRCF-mid:w=0.14,s=0.83 RRCF-slow!:w=0.13,s=0.89 COPOD!:w=0.24,s=0.97"} +{"timestamp":"2026-03-21T16:56:51.129275843Z","score":0.6247663755496402,"is_anomaly":false,"confidence":0.7759574617779827,"method":"SEAD","details":"MAD!:w=0.31,s=0.73 RRCF-fast:w=0.18,s=0.40 RRCF-mid:w=0.14,s=0.78 RRCF-slow:w=0.13,s=0.80 COPOD!:w=0.24,s=0.48"} +{"timestamp":"2026-03-21T16:57:45.678869876Z","score":0.5659402055326626,"is_anomaly":false,"confidence":0.7043878127764494,"method":"SEAD","details":"MAD!:w=0.31,s=0.42 RRCF-fast:w=0.18,s=0.74 RRCF-mid!:w=0.14,s=0.90 RRCF-slow!:w=0.13,s=0.93 COPOD!:w=0.24,s=0.22"} +{"timestamp":"2026-03-21T16:57:49.283917209Z","score":0.7183820652959846,"is_anomaly":false,"confidence":0.8941219704215955,"method":"SEAD","details":"MAD!:w=0.31,s=0.60 RRCF-fast:w=0.18,s=0.65 RRCF-mid!:w=0.14,s=0.93 RRCF-slow!:w=0.13,s=0.93 COPOD!:w=0.24,s=0.69"} +{"timestamp":"2026-03-21T16:58:19.314743778Z","score":0.4410374165555035,"is_anomaly":false,"confidence":0.5489296893259468,"method":"SEAD","details":"MAD!:w=0.31,s=0.50 RRCF-fast:w=0.18,s=0.21 RRCF-mid:w=0.14,s=0.53 RRCF-slow:w=0.13,s=0.62 COPOD!:w=0.24,s=0.39"} +{"timestamp":"2026-03-21T16:58:51.400549547Z","score":0.468438060668946,"is_anomaly":false,"confidence":0.5830334331261736,"method":"SEAD","details":"MAD!:w=0.31,s=0.36 RRCF-fast:w=0.18,s=0.44 RRCF-mid:w=0.14,s=0.81 RRCF-slow:w=0.13,s=0.86 COPOD!:w=0.24,s=0.22"} +{"timestamp":"2026-03-21T16:59:23.397076284Z","score":0.6691252339666525,"is_anomaly":false,"confidence":0.8328152964210958,"method":"SEAD","details":"MAD!:w=0.31,s=0.70 RRCF-fast:w=0.18,s=0.72 RRCF-mid!:w=0.14,s=0.90 RRCF-slow!:w=0.13,s=0.93 COPOD!:w=0.24,s=0.33"} +{"timestamp":"2026-03-21T16:59:49.513934224Z","score":0.5605028791327906,"is_anomaly":false,"confidence":0.697620337321065,"method":"SEAD","details":"MAD!:w=0.31,s=0.39 RRCF-fast:w=0.18,s=0.64 RRCF-mid:w=0.14,s=0.80 RRCF-slow:w=0.13,s=0.81 COPOD!:w=0.25,s=0.46"} +{"timestamp":"2026-03-21T17:00:53.87293531Z","score":0.4688765257580122,"is_anomaly":false,"confidence":0.5835791612120153,"method":"SEAD","details":"MAD!:w=0.31,s=0.42 RRCF-fast:w=0.18,s=0.42 RRCF-mid:w=0.13,s=0.43 RRCF-slow:w=0.13,s=0.79 COPOD!:w=0.25,s=0.42"} +{"timestamp":"2026-03-21T17:01:19.308999921Z","score":0.43947456753096414,"is_anomaly":false,"confidence":0.5470960250691543,"method":"SEAD","details":"MAD!:w=0.31,s=0.41 RRCF-fast:w=0.18,s=0.42 RRCF-mid:w=0.13,s=0.53 RRCF-slow:w=0.13,s=0.71 COPOD!:w=0.25,s=0.29"} +{"timestamp":"2026-03-21T17:01:49.314904621Z","score":0.4847352645859144,"is_anomaly":false,"confidence":0.603440462904861,"method":"SEAD","details":"MAD!:w=0.31,s=0.79 RRCF-fast:w=0.18,s=0.19 RRCF-mid:w=0.13,s=0.65 RRCF-slow:w=0.13,s=0.64 COPOD!:w=0.25,s=0.14"} +{"timestamp":"2026-03-21T17:02:27.753980578Z","score":0.7426405738315247,"is_anomaly":false,"confidence":0.924503341071441,"method":"SEAD","details":"MAD!:w=0.31,s=0.83 RRCF-fast!:w=0.18,s=0.99 RRCF-mid!:w=0.13,s=1.00 RRCF-slow!:w=0.13,s=1.00 COPOD!:w=0.25,s=0.19"} +{"timestamp":"2026-03-21T17:02:49.272220015Z","score":0.2014127250600455,"is_anomaly":false,"confidence":0.2507360139126447,"method":"SEAD","details":"MAD!:w=0.31,s=0.03 RRCF-fast:w=0.18,s=0.13 RRCF-mid:w=0.13,s=0.31 RRCF-slow:w=0.13,s=0.61 COPOD!:w=0.25,s=0.19"} +{"timestamp":"2026-03-21T17:03:19.272555262Z","score":0.29248989998371033,"is_anomaly":false,"confidence":0.3641167737031515,"method":"SEAD","details":"MAD!:w=0.31,s=0.06 RRCF-fast:w=0.18,s=0.20 RRCF-mid:w=0.13,s=0.49 RRCF-slow:w=0.13,s=0.82 COPOD!:w=0.25,s=0.27"} +{"timestamp":"2026-03-21T17:03:54.422975896Z","score":0.7020042885487585,"is_anomaly":false,"confidence":0.8739157717459165,"method":"SEAD","details":"MAD!:w=0.31,s=0.76 RRCF-fast!:w=0.18,s=0.90 RRCF-mid!:w=0.13,s=0.94 RRCF-slow!:w=0.13,s=0.96 COPOD!:w=0.25,s=0.24"} +{"timestamp":"2026-03-21T17:04:19.322934228Z","score":0.523771282892592,"is_anomaly":false,"confidence":0.6524822971119052,"method":"SEAD","details":"MAD!:w=0.31,s=0.51 RRCF-fast:w=0.18,s=0.28 RRCF-mid:w=0.13,s=0.65 RRCF-slow:w=0.12,s=0.79 COPOD!:w=0.26,s=0.52"} +{"timestamp":"2026-03-21T17:04:49.279839531Z","score":0.3179110177107677,"is_anomaly":false,"confidence":0.39603414293265576,"method":"SEAD","details":"MAD!:w=0.31,s=0.14 RRCF-fast:w=0.18,s=0.02 RRCF-mid:w=0.13,s=0.24 RRCF-slow:w=0.12,s=0.73 COPOD!:w=0.26,s=0.58"} +{"timestamp":"2026-03-21T17:05:19.312664113Z","score":0.8219630194104841,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=0.91 RRCF-fast!:w=0.18,s=0.97 RRCF-mid!:w=0.13,s=0.94 RRCF-slow:w=0.12,s=0.91 COPOD!:w=0.25,s=0.50"} +{"timestamp":"2026-03-21T17:05:50.55685564Z","score":0.7359976028576927,"is_anomaly":false,"confidence":0.9162335951454104,"method":"SEAD","details":"MAD!:w=0.31,s=0.80 RRCF-fast!:w=0.18,s=0.96 RRCF-mid:w=0.13,s=0.89 RRCF-slow:w=0.12,s=0.90 COPOD!:w=0.26,s=0.35"} +{"timestamp":"2026-03-21T17:06:19.352648473Z","score":0.5876748729995573,"is_anomaly":false,"confidence":0.7315886078627858,"method":"SEAD","details":"MAD!:w=0.31,s=0.43 RRCF-fast:w=0.18,s=0.83 RRCF-mid:w=0.13,s=0.75 RRCF-slow:w=0.12,s=0.78 COPOD!:w=0.26,s=0.43"} +{"timestamp":"2026-03-21T17:06:49.270778749Z","score":0.2622054699746409,"is_anomaly":false,"confidence":0.3264160908797261,"method":"SEAD","details":"MAD!:w=0.31,s=0.02 RRCF-fast:w=0.18,s=0.08 RRCF-mid:w=0.13,s=0.21 RRCF-slow:w=0.12,s=0.71 COPOD!:w=0.26,s=0.49"} +{"timestamp":"2026-03-21T17:07:19.273418056Z","score":0.3415287864409541,"is_anomaly":false,"confidence":0.42516462911218,"method":"SEAD","details":"MAD!:w=0.31,s=0.28 RRCF-fast:w=0.18,s=0.15 RRCF-mid:w=0.13,s=0.48 RRCF-slow:w=0.12,s=0.55 COPOD!:w=0.26,s=0.38"} +{"timestamp":"2026-03-21T17:07:49.363819961Z","score":0.7776788355505001,"is_anomaly":false,"confidence":0.9687848295786714,"method":"SEAD","details":"MAD!:w=0.31,s=0.70 RRCF-fast:w=0.18,s=0.86 RRCF-mid:w=0.13,s=0.64 RRCF-slow:w=0.12,s=0.82 COPOD!:w=0.26,s=0.87"} +{"timestamp":"2026-03-21T17:08:19.319785595Z","score":0.44018428121740527,"is_anomaly":false,"confidence":0.5483547119557968,"method":"SEAD","details":"MAD!:w=0.31,s=0.26 RRCF-fast:w=0.18,s=0.02 RRCF-mid:w=0.13,s=0.22 RRCF-slow:w=0.12,s=0.68 COPOD!:w=0.26,s=0.96"} +{"timestamp":"2026-03-21T17:08:49.29165009Z","score":0.3618768326674132,"is_anomaly":false,"confidence":0.45080407185827764,"method":"SEAD","details":"MAD!:w=0.31,s=0.02 RRCF-fast:w=0.18,s=0.09 RRCF-mid:w=0.13,s=0.28 RRCF-slow:w=0.12,s=0.66 COPOD!:w=0.25,s=0.88"} +{"timestamp":"2026-03-21T17:09:19.340704162Z","score":0.5812400594034026,"is_anomaly":false,"confidence":0.7240733914210482,"method":"SEAD","details":"MAD!:w=0.32,s=0.37 RRCF-fast!:w=0.18,s=0.96 RRCF-mid:w=0.13,s=0.84 RRCF-slow:w=0.12,s=0.84 COPOD!:w=0.25,s=0.31"} +{"timestamp":"2026-03-21T17:09:49.459682472Z","score":0.44964552566508537,"is_anomaly":false,"confidence":0.5601409528445045,"method":"SEAD","details":"MAD!:w=0.32,s=0.49 RRCF-fast:w=0.18,s=0.57 RRCF-mid:w=0.13,s=0.37 RRCF-slow:w=0.12,s=0.72 COPOD!:w=0.25,s=0.22"} +{"timestamp":"2026-03-21T17:10:19.310518337Z","score":0.6586286680434813,"is_anomaly":false,"confidence":0.8204793968379729,"method":"SEAD","details":"MAD!:w=0.32,s=0.70 RRCF-fast:w=0.18,s=0.59 RRCF-mid:w=0.13,s=0.55 RRCF-slow:w=0.12,s=0.75 COPOD!:w=0.25,s=0.68"} +{"timestamp":"2026-03-21T17:10:49.319497062Z","score":0.26381166331704875,"is_anomaly":false,"confidence":0.32864046905244154,"method":"SEAD","details":"MAD!:w=0.32,s=0.26 RRCF-fast:w=0.18,s=0.01 RRCF-mid:w=0.13,s=0.10 RRCF-slow:w=0.12,s=0.51 COPOD!:w=0.25,s=0.41"} +{"timestamp":"2026-03-21T17:11:19.266080595Z","score":0.23596049700834157,"is_anomaly":false,"confidence":0.29408084814600854,"method":"SEAD","details":"MAD!:w=0.32,s=0.29 RRCF-fast:w=0.18,s=0.31 RRCF-mid:w=0.13,s=0.17 RRCF-slow:w=0.12,s=0.52 COPOD!:w=0.25,s=0.01"} +{"timestamp":"2026-03-21T17:11:49.330415465Z","score":0.36688249846668536,"is_anomaly":false,"confidence":0.4572507588640794,"method":"SEAD","details":"MAD!:w=0.32,s=0.51 RRCF-fast:w=0.18,s=0.43 RRCF-mid:w=0.13,s=0.44 RRCF-slow:w=0.12,s=0.50 COPOD!:w=0.25,s=0.04"} +{"timestamp":"2026-03-21T17:12:19.275394202Z","score":0.36175218833717865,"is_anomaly":false,"confidence":0.45085678201937024,"method":"SEAD","details":"MAD!:w=0.32,s=0.13 RRCF-fast:w=0.18,s=0.26 RRCF-mid:w=0.13,s=0.30 RRCF-slow:w=0.12,s=0.36 COPOD!:w=0.25,s=0.76"} +{"timestamp":"2026-03-21T17:12:53.171640089Z","score":0.7615797698990365,"is_anomaly":false,"confidence":0.9491674560035918,"method":"SEAD","details":"MAD!:w=0.32,s=0.92 RRCF-fast:w=0.18,s=0.89 RRCF-mid:w=0.13,s=0.75 RRCF-slow:w=0.12,s=0.78 COPOD!:w=0.25,s=0.47"} +{"timestamp":"2026-03-21T17:13:20.964818708Z","score":0.762501621952303,"is_anomaly":false,"confidence":0.9503163730347343,"method":"SEAD","details":"MAD!:w=0.32,s=0.84 RRCF-fast!:w=0.18,s=0.96 RRCF-mid:w=0.13,s=0.67 RRCF-slow:w=0.12,s=0.80 COPOD!:w=0.25,s=0.55"} +{"timestamp":"2026-03-21T17:13:49.361331083Z","score":0.5925030607891889,"is_anomaly":false,"confidence":0.738444802647754,"method":"SEAD","details":"MAD!:w=0.32,s=0.42 RRCF-fast:w=0.18,s=0.83 RRCF-mid:w=0.13,s=0.72 RRCF-slow:w=0.12,s=0.72 COPOD!:w=0.25,s=0.51"} +{"timestamp":"2026-03-21T17:14:19.312229368Z","score":0.4901414330534133,"is_anomaly":false,"confidence":0.6116640226448289,"method":"SEAD","details":"MAD!:w=0.32,s=0.73 RRCF-fast:w=0.18,s=0.54 RRCF-mid:w=0.13,s=0.44 RRCF-slow:w=0.12,s=0.55 COPOD!:w=0.25,s=0.15"} +{"timestamp":"2026-03-21T17:14:49.272628212Z","score":0.22960446577361363,"is_anomaly":false,"confidence":0.28653115546140917,"method":"SEAD","details":"MAD!:w=0.32,s=0.16 RRCF-fast:w=0.18,s=0.15 RRCF-mid:w=0.13,s=0.12 RRCF-slow:w=0.12,s=0.23 COPOD!:w=0.26,s=0.43"} +{"timestamp":"2026-03-21T17:15:19.314780177Z","score":0.35684744483175423,"is_anomaly":false,"confidence":0.4453219598607844,"method":"SEAD","details":"MAD!:w=0.32,s=0.50 RRCF-fast:w=0.18,s=0.46 RRCF-mid:w=0.13,s=0.29 RRCF-slow:w=0.12,s=0.46 COPOD!:w=0.26,s=0.10"} +{"timestamp":"2026-03-21T17:15:51.34453781Z","score":0.27964982680365036,"is_anomaly":false,"confidence":0.3489844490988177,"method":"SEAD","details":"MAD!:w=0.31,s=0.13 RRCF-fast:w=0.18,s=0.18 RRCF-mid:w=0.13,s=0.19 RRCF-slow:w=0.12,s=0.29 COPOD!:w=0.26,s=0.57"} +{"timestamp":"2026-03-21T17:16:19.280175779Z","score":0.31262204141850103,"is_anomaly":false,"confidence":0.39013158759145433,"method":"SEAD","details":"MAD!:w=0.32,s=0.09 RRCF-fast:w=0.18,s=0.39 RRCF-mid:w=0.13,s=0.15 RRCF-slow:w=0.12,s=0.38 COPOD!:w=0.26,s=0.59"} +{"timestamp":"2026-03-21T17:16:55.617855355Z","score":0.7995624868883909,"is_anomaly":false,"confidence":0.9978009898884851,"method":"SEAD","details":"MAD!:w=0.32,s=0.86 RRCF-fast:w=0.18,s=0.88 RRCF-mid:w=0.13,s=0.68 RRCF-slow:w=0.12,s=0.83 COPOD!:w=0.25,s=0.72"} +{"timestamp":"2026-03-21T17:17:22.011414501Z","score":0.697230355598633,"is_anomaly":false,"confidence":0.870097272452112,"method":"SEAD","details":"MAD!:w=0.32,s=0.80 RRCF-fast:w=0.18,s=0.78 RRCF-mid:w=0.13,s=0.70 RRCF-slow:w=0.12,s=0.70 COPOD!:w=0.25,s=0.51"} +{"timestamp":"2026-03-21T17:17:49.314829705Z","score":0.46948916133735497,"is_anomaly":false,"confidence":0.586237904269841,"method":"SEAD","details":"MAD!:w=0.32,s=0.21 RRCF-fast:w=0.18,s=0.92 RRCF-mid:w=0.13,s=0.55 RRCF-slow:w=0.12,s=0.55 COPOD!:w=0.26,s=0.39"} +{"timestamp":"2026-03-21T17:18:19.322008374Z","score":0.5002585798221446,"is_anomaly":false,"confidence":0.6246588112759632,"method":"SEAD","details":"MAD!:w=0.32,s=0.80 RRCF-fast:w=0.18,s=0.75 RRCF-mid:w=0.13,s=0.32 RRCF-slow:w=0.12,s=0.44 COPOD!:w=0.26,s=0.07"} +{"timestamp":"2026-03-21T17:18:49.322087751Z","score":0.584545437101564,"is_anomaly":false,"confidence":0.7299054381165615,"method":"SEAD","details":"MAD!:w=0.32,s=0.73 RRCF-fast:w=0.17,s=0.81 RRCF-mid:w=0.13,s=0.41 RRCF-slow:w=0.12,s=0.65 COPOD!:w=0.26,s=0.32"} +{"timestamp":"2026-03-21T17:19:19.318728325Z","score":0.38053096277785053,"is_anomaly":false,"confidence":0.47515830502501205,"method":"SEAD","details":"MAD!:w=0.31,s=0.49 RRCF-fast:w=0.17,s=0.59 RRCF-mid:w=0.13,s=0.36 RRCF-slow:w=0.12,s=0.53 COPOD!:w=0.26,s=0.04"} +{"timestamp":"2026-03-21T17:19:50.560192213Z","score":0.480328187000517,"is_anomaly":false,"confidence":0.5997722906036999,"method":"SEAD","details":"MAD!:w=0.31,s=0.40 RRCF-fast:w=0.17,s=0.88 RRCF-mid:w=0.13,s=0.55 RRCF-slow:w=0.12,s=0.69 COPOD!:w=0.26,s=0.18"} +{"timestamp":"2026-03-21T17:20:23.013809582Z","score":0.6632353136222204,"is_anomaly":false,"confidence":0.8281632725835311,"method":"SEAD","details":"MAD!:w=0.31,s=0.92 RRCF-fast:w=0.17,s=0.87 RRCF-mid:w=0.13,s=0.72 RRCF-slow:w=0.12,s=0.72 COPOD!:w=0.26,s=0.18"} +{"timestamp":"2026-03-21T17:20:49.820083992Z","score":0.4394896956739108,"is_anomaly":false,"confidence":0.5487784156851505,"method":"SEAD","details":"MAD!:w=0.31,s=0.39 RRCF-fast:w=0.17,s=0.71 RRCF-mid:w=0.13,s=0.61 RRCF-slow:w=0.12,s=0.58 COPOD!:w=0.27,s=0.18"} +{"timestamp":"2026-03-21T17:21:20.286700219Z","score":0.7570852190242319,"is_anomaly":false,"confidence":0.9463401061524691,"method":"SEAD","details":"MAD!:w=0.31,s=0.49 RRCF-fast!:w=0.17,s=0.94 RRCF-mid!:w=0.13,s=0.93 RRCF-slow:w=0.12,s=0.89 COPOD!:w=0.27,s=0.81"} +{"timestamp":"2026-03-21T17:21:49.340106041Z","score":0.7152212486709382,"is_anomaly":false,"confidence":0.8940110510440351,"method":"SEAD","details":"MAD!:w=0.31,s=0.63 RRCF-fast:w=0.17,s=0.79 RRCF-mid:w=0.13,s=0.65 RRCF-slow:w=0.12,s=0.74 COPOD!:w=0.27,s=0.79"} +{"timestamp":"2026-03-21T17:22:19.271239901Z","score":0.5180030325751024,"is_anomaly":false,"confidence":0.6474925576624332,"method":"SEAD","details":"MAD!:w=0.31,s=0.20 RRCF-fast!:w=0.17,s=0.97 RRCF-mid!:w=0.13,s=0.93 RRCF-slow:w=0.12,s=0.85 COPOD!:w=0.27,s=0.26"} +{"timestamp":"2026-03-21T17:22:49.377160166Z","score":0.6032430639757265,"is_anomaly":false,"confidence":0.754040748456691,"method":"SEAD","details":"MAD!:w=0.32,s=0.49 RRCF-fast:w=0.17,s=0.74 RRCF-mid:w=0.13,s=0.77 RRCF-slow:w=0.12,s=0.69 COPOD!:w=0.27,s=0.53"} +{"timestamp":"2026-03-21T17:23:19.338507661Z","score":0.4773269289238774,"is_anomaly":false,"confidence":0.5966483101723272,"method":"SEAD","details":"MAD!:w=0.32,s=0.04 RRCF-fast:w=0.17,s=0.62 RRCF-mid:w=0.13,s=0.50 RRCF-slow:w=0.12,s=0.62 COPOD!:w=0.27,s=0.84"} +{"timestamp":"2026-03-21T17:23:49.271381447Z","score":0.3953179136304735,"is_anomaly":false,"confidence":0.49413881944650806,"method":"SEAD","details":"MAD!:w=0.32,s=0.02 RRCF-fast:w=0.17,s=0.45 RRCF-mid:w=0.13,s=0.38 RRCF-slow:w=0.12,s=0.43 COPOD!:w=0.27,s=0.80"} +{"timestamp":"2026-03-21T17:24:19.835190053Z","score":0.7645205617767402,"is_anomaly":false,"confidence":0.9561736253435035,"method":"SEAD","details":"MAD!:w=0.32,s=0.59 RRCF-fast!:w=0.17,s=1.00 RRCF-mid!:w=0.13,s=0.98 RRCF-slow!:w=0.12,s=0.95 COPOD!:w=0.26,s=0.65"} +{"timestamp":"2026-03-21T17:24:49.454319612Z","score":0.5959987256462105,"is_anomaly":false,"confidence":0.7454060632154251,"method":"SEAD","details":"MAD!:w=0.33,s=0.41 RRCF-fast!:w=0.17,s=0.98 RRCF-mid!:w=0.13,s=0.96 RRCF-slow!:w=0.11,s=0.92 COPOD!:w=0.26,s=0.26"} +{"timestamp":"2026-03-21T17:25:19.814934758Z","score":0.7693561276172529,"is_anomaly":false,"confidence":0.9622213901146235,"method":"SEAD","details":"MAD!:w=0.33,s=0.66 RRCF-fast:w=0.16,s=0.83 RRCF-mid:w=0.13,s=0.84 RRCF-slow:w=0.11,s=0.62 COPOD!:w=0.27,s=0.90"} +{"timestamp":"2026-03-21T17:25:49.583566776Z","score":0.5286714338079412,"is_anomaly":false,"confidence":0.6612008973374176,"method":"SEAD","details":"MAD!:w=0.33,s=0.61 RRCF-fast:w=0.16,s=0.83 RRCF-mid:w=0.13,s=0.75 RRCF-slow:w=0.11,s=0.64 COPOD!:w=0.26,s=0.08"} +{"timestamp":"2026-03-21T17:26:19.287809068Z","score":0.3767450325543722,"is_anomaly":false,"confidence":0.47118897988889913,"method":"SEAD","details":"MAD!:w=0.33,s=0.29 RRCF-fast:w=0.16,s=0.49 RRCF-mid:w=0.13,s=0.58 RRCF-slow:w=0.11,s=0.58 COPOD!:w=0.27,s=0.23"} +{"timestamp":"2026-03-21T17:26:51.50153529Z","score":0.4699875754973378,"is_anomaly":false,"confidence":0.5878059353764332,"method":"SEAD","details":"MAD!:w=0.33,s=0.50 RRCF-fast:w=0.16,s=0.66 RRCF-mid:w=0.13,s=0.68 RRCF-slow:w=0.11,s=0.60 COPOD!:w=0.27,s=0.17"} +{"timestamp":"2026-03-21T17:27:19.285515281Z","score":0.48382770968382127,"is_anomaly":false,"confidence":0.6051155695994498,"method":"SEAD","details":"MAD!:w=0.33,s=0.40 RRCF-fast:w=0.16,s=0.78 RRCF-mid:w=0.13,s=0.76 RRCF-slow:w=0.11,s=0.69 COPOD!:w=0.27,s=0.18"} +{"timestamp":"2026-03-21T17:27:50.402243239Z","score":0.6670996731276151,"is_anomaly":false,"confidence":0.8364892126145899,"method":"SEAD","details":"MAD!:w=0.33,s=0.92 RRCF-fast:w=0.16,s=0.49 RRCF-mid:w=0.13,s=0.83 RRCF-slow:w=0.11,s=0.68 COPOD!:w=0.27,s=0.38"} +{"timestamp":"2026-03-21T17:28:19.292431933Z","score":0.4445181555757695,"is_anomaly":false,"confidence":0.5573899327624672,"method":"SEAD","details":"MAD!:w=0.33,s=0.38 RRCF-fast:w=0.16,s=0.49 RRCF-mid:w=0.13,s=0.69 RRCF-slow:w=0.11,s=0.66 COPOD!:w=0.27,s=0.29"} +{"timestamp":"2026-03-21T17:28:50.58237209Z","score":0.8421957998470382,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.33,s=0.58 RRCF-fast!:w=0.16,s=0.95 RRCF-mid!:w=0.13,s=0.97 RRCF-slow!:w=0.11,s=0.97 COPOD!:w=0.27,s=0.98"} +{"timestamp":"2026-03-21T17:29:19.339683153Z","score":0.5029722438476572,"is_anomaly":false,"confidence":0.6290593319417022,"method":"SEAD","details":"MAD!:w=0.33,s=0.27 RRCF-fast!:w=0.16,s=0.98 RRCF-mid!:w=0.13,s=0.97 RRCF-slow!:w=0.11,s=0.98 COPOD!:w=0.27,s=0.08"} +{"timestamp":"2026-03-21T17:29:49.273533456Z","score":0.49233391970581947,"is_anomaly":false,"confidence":0.6157541502751157,"method":"SEAD","details":"MAD!:w=0.33,s=0.29 RRCF-fast:w=0.16,s=0.65 RRCF-mid:w=0.12,s=0.81 RRCF-slow!:w=0.11,s=0.89 COPOD!:w=0.28,s=0.33"} +{"timestamp":"2026-03-21T17:30:20.289392914Z","score":0.668859059396069,"is_anomaly":false,"confidence":0.8365313160188736,"method":"SEAD","details":"MAD!:w=0.33,s=0.51 RRCF-fast:w=0.16,s=0.71 RRCF-mid:w=0.12,s=0.78 RRCF-slow:w=0.11,s=0.86 COPOD!:w=0.28,s=0.71"} +{"timestamp":"2026-03-21T17:30:49.327056196Z","score":0.5189412834904009,"is_anomaly":false,"confidence":0.6490315541314768,"method":"SEAD","details":"MAD!:w=0.33,s=0.07 RRCF-fast:w=0.16,s=0.50 RRCF-mid:w=0.12,s=0.77 RRCF-slow:w=0.11,s=0.83 COPOD!:w=0.28,s=0.83"} +{"timestamp":"2026-03-21T17:31:19.269032166Z","score":0.47119396111407663,"is_anomaly":false,"confidence":0.5908392424675399,"method":"SEAD","details":"MAD!:w=0.34,s=0.10 RRCF-fast:w=0.16,s=0.57 RRCF-mid:w=0.12,s=0.59 RRCF-slow:w=0.11,s=0.76 COPOD!:w=0.27,s=0.70"} +{"timestamp":"2026-03-21T17:31:49.562527169Z","score":0.799074779985274,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.34,s=0.61 RRCF-fast:w=0.16,s=0.80 RRCF-mid!:w=0.12,s=0.93 RRCF-slow!:w=0.11,s=0.90 COPOD!:w=0.27,s=0.93"} +{"timestamp":"2026-03-21T17:32:19.377292183Z","score":0.5466991241560264,"is_anomaly":false,"confidence":0.6841651593185076,"method":"SEAD","details":"MAD!:w=0.34,s=0.45 RRCF-fast:w=0.16,s=0.60 RRCF-mid:w=0.12,s=0.74 RRCF-slow:w=0.11,s=0.82 COPOD!:w=0.27,s=0.44"} +{"timestamp":"2026-03-21T17:32:49.96363216Z","score":0.6810634145700052,"is_anomaly":false,"confidence":0.8523149918241149,"method":"SEAD","details":"MAD!:w=0.34,s=0.73 RRCF-fast:w=0.16,s=0.65 RRCF-mid:w=0.12,s=0.81 RRCF-slow:w=0.11,s=0.73 COPOD!:w=0.27,s=0.56"} +{"timestamp":"2026-03-21T17:33:19.343693645Z","score":0.5134091505196889,"is_anomaly":false,"confidence":0.6425045106906646,"method":"SEAD","details":"MAD!:w=0.34,s=0.71 RRCF-fast:w=0.16,s=0.42 RRCF-mid:w=0.12,s=0.65 RRCF-slow:w=0.11,s=0.78 COPOD!:w=0.27,s=0.15"} +{"timestamp":"2026-03-21T17:33:49.304426412Z","score":0.3205411111012327,"is_anomaly":false,"confidence":0.4011403176898411,"method":"SEAD","details":"MAD!:w=0.34,s=0.28 RRCF-fast:w=0.16,s=0.17 RRCF-mid:w=0.12,s=0.46 RRCF-slow:w=0.11,s=0.70 COPOD!:w=0.27,s=0.24"} +{"timestamp":"2026-03-21T17:34:19.305132409Z","score":0.2567740910441463,"is_anomaly":false,"confidence":0.3219740106157363,"method":"SEAD","details":"MAD!:w=0.34,s=0.28 RRCF-fast:w=0.16,s=0.14 RRCF-mid:w=0.12,s=0.44 RRCF-slow:w=0.11,s=0.68 COPOD!:w=0.27,s=0.05"} +{"timestamp":"2026-03-21T17:34:49.315996429Z","score":0.317691219474843,"is_anomaly":false,"confidence":0.39835917890225625,"method":"SEAD","details":"MAD!:w=0.34,s=0.07 RRCF-fast:w=0.16,s=0.14 RRCF-mid:w=0.12,s=0.48 RRCF-slow:w=0.11,s=0.58 COPOD!:w=0.27,s=0.54"} +{"timestamp":"2026-03-21T17:35:19.587096538Z","score":0.7754776585968232,"is_anomaly":false,"confidence":0.9723864696239646,"method":"SEAD","details":"MAD!:w=0.34,s=0.91 RRCF-fast:w=0.16,s=0.66 RRCF-mid:w=0.12,s=0.77 RRCF-slow:w=0.11,s=0.71 COPOD!:w=0.27,s=0.70"} +{"timestamp":"2026-03-21T17:35:51.491345541Z","score":0.4626482408372322,"is_anomaly":false,"confidence":0.5801235981439749,"method":"SEAD","details":"MAD!:w=0.34,s=0.51 RRCF-fast:w=0.16,s=0.27 RRCF-mid:w=0.12,s=0.57 RRCF-slow:w=0.11,s=0.57 COPOD!:w=0.27,s=0.43"} +{"timestamp":"2026-03-21T17:36:22.361902013Z","score":0.6194946820567754,"is_anomaly":false,"confidence":0.7767963914343978,"method":"SEAD","details":"MAD!:w=0.34,s=0.75 RRCF-fast:w=0.16,s=0.16 RRCF-mid:w=0.12,s=0.45 RRCF-slow:w=0.11,s=0.49 COPOD!:w=0.27,s=0.85"} +{"timestamp":"2026-03-21T17:36:49.317322755Z","score":0.37763425927880634,"is_anomaly":false,"confidence":0.4735229185759081,"method":"SEAD","details":"MAD!:w=0.34,s=0.72 RRCF-fast:w=0.16,s=0.06 RRCF-mid:w=0.12,s=0.40 RRCF-slow:w=0.11,s=0.63 COPOD!:w=0.27,s=0.03"} +{"timestamp":"2026-03-21T17:37:19.27705686Z","score":0.17070963954998486,"is_anomaly":false,"confidence":0.2140561264307058,"method":"SEAD","details":"MAD!:w=0.33,s=0.05 RRCF-fast:w=0.16,s=0.08 RRCF-mid:w=0.12,s=0.32 RRCF-slow:w=0.11,s=0.48 COPOD!:w=0.28,s=0.18"} +{"timestamp":"2026-03-21T17:37:49.312658786Z","score":0.3440798325276826,"is_anomaly":false,"confidence":0.43230874469069736,"method":"SEAD","details":"MAD!:w=0.34,s=0.53 RRCF-fast:w=0.16,s=0.26 RRCF-mid:w=0.12,s=0.40 RRCF-slow:w=0.11,s=0.55 COPOD!:w=0.28,s=0.07"} +{"timestamp":"2026-03-21T17:38:19.291721313Z","score":0.3408238604374205,"is_anomaly":false,"confidence":0.4282178766013103,"method":"SEAD","details":"MAD!:w=0.33,s=0.15 RRCF-fast:w=0.16,s=0.10 RRCF-mid:w=0.12,s=0.42 RRCF-slow:w=0.11,s=0.46 COPOD!:w=0.28,s=0.63"} +{"timestamp":"2026-03-21T17:38:49.271870001Z","score":0.3876268408688593,"is_anomaly":false,"confidence":0.48702207203892206,"method":"SEAD","details":"MAD!:w=0.34,s=0.03 RRCF-fast:w=0.16,s=0.10 RRCF-mid:w=0.12,s=0.40 RRCF-slow:w=0.11,s=0.41 COPOD!:w=0.27,s=0.98"} +{"timestamp":"2026-03-21T17:39:24.860016333Z","score":0.88875945986553,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.34,s=0.85 RRCF-fast!:w=0.16,s=0.98 RRCF-mid!:w=0.12,s=0.98 RRCF-slow!:w=0.11,s=0.98 COPOD!:w=0.27,s=0.81"} +{"timestamp":"2026-03-21T17:39:49.318746411Z","score":0.6840701481910489,"is_anomaly":false,"confidence":0.857768820288437,"method":"SEAD","details":"MAD!:w=0.34,s=0.49 RRCF-fast:w=0.16,s=0.85 RRCF-mid:w=0.12,s=0.76 RRCF-slow:w=0.11,s=0.71 COPOD!:w=0.27,s=0.78"} +{"timestamp":"2026-03-21T17:40:19.316408771Z","score":0.29159543447500236,"is_anomaly":false,"confidence":0.36563716819471914,"method":"SEAD","details":"MAD!:w=0.34,s=0.02 RRCF-fast:w=0.16,s=0.43 RRCF-mid:w=0.12,s=0.28 RRCF-slow:w=0.11,s=0.55 COPOD!:w=0.27,s=0.46"} +{"timestamp":"2026-03-21T17:40:49.27146808Z","score":0.36111371077482185,"is_anomaly":false,"confidence":0.45280748253728853,"method":"SEAD","details":"MAD!:w=0.34,s=0.32 RRCF-fast:w=0.16,s=0.27 RRCF-mid:w=0.12,s=0.41 RRCF-slow:w=0.11,s=0.57 COPOD!:w=0.27,s=0.36"} +{"timestamp":"2026-03-21T17:41:19.322008926Z","score":0.537521529325427,"is_anomaly":false,"confidence":0.6753527397401407,"method":"SEAD","details":"MAD!:w=0.34,s=0.80 RRCF-fast:w=0.16,s=0.42 RRCF-mid:w=0.12,s=0.43 RRCF-slow:w=0.11,s=0.57 COPOD!:w=0.27,s=0.30"} +{"timestamp":"2026-03-21T17:41:49.318965629Z","score":0.5663607087768957,"is_anomaly":false,"confidence":0.7115868583601883,"method":"SEAD","details":"MAD!:w=0.34,s=0.62 RRCF-fast:w=0.16,s=0.34 RRCF-mid:w=0.12,s=0.52 RRCF-slow:w=0.11,s=0.52 COPOD!:w=0.27,s=0.67"} +{"timestamp":"2026-03-21T17:42:19.293685069Z","score":0.423381159514099,"is_anomaly":false,"confidence":0.5319445090711803,"method":"SEAD","details":"MAD!:w=0.34,s=0.16 RRCF-fast:w=0.16,s=0.32 RRCF-mid:w=0.12,s=0.40 RRCF-slow:w=0.11,s=0.54 COPOD!:w=0.27,s=0.78"} +{"timestamp":"2026-03-21T17:42:50.690875596Z","score":0.6615047895036145,"is_anomaly":false,"confidence":0.831127773622663,"method":"SEAD","details":"MAD!:w=0.34,s=0.92 RRCF-fast:w=0.16,s=0.68 RRCF-mid:w=0.12,s=0.69 RRCF-slow:w=0.11,s=0.77 COPOD!:w=0.27,s=0.27"} +{"timestamp":"2026-03-21T17:43:20.144288428Z","score":0.5509822678751117,"is_anomaly":false,"confidence":0.6922650793628232,"method":"SEAD","details":"MAD!:w=0.34,s=0.41 RRCF-fast:w=0.16,s=0.81 RRCF-mid!:w=0.12,s=0.85 RRCF-slow!:w=0.11,s=0.88 COPOD!:w=0.27,s=0.31"} +{"timestamp":"2026-03-21T17:43:49.315937884Z","score":0.5229413520880126,"is_anomaly":false,"confidence":0.6570339150866574,"method":"SEAD","details":"MAD!:w=0.34,s=0.51 RRCF-fast:w=0.16,s=0.41 RRCF-mid:w=0.12,s=0.37 RRCF-slow:w=0.10,s=0.61 COPOD!:w=0.27,s=0.65"} +{"timestamp":"2026-03-21T17:44:19.272739368Z","score":0.3172619491446472,"is_anomaly":false,"confidence":0.39950681006998273,"method":"SEAD","details":"MAD!:w=0.34,s=0.00 RRCF-fast:w=0.16,s=0.24 RRCF-mid:w=0.12,s=0.25 RRCF-slow:w=0.10,s=0.37 COPOD!:w=0.27,s=0.77"} +{"timestamp":"2026-03-21T17:44:49.27368829Z","score":0.21101290341202378,"is_anomaly":false,"confidence":0.26571447396393616,"method":"SEAD","details":"MAD!:w=0.35,s=0.32 RRCF-fast:w=0.16,s=0.05 RRCF-mid:w=0.12,s=0.28 RRCF-slow:w=0.10,s=0.31 COPOD!:w=0.27,s=0.09"} +{"timestamp":"2026-03-21T17:45:19.297019126Z","score":0.6538427413265031,"is_anomaly":false,"confidence":0.8233405505419442,"method":"SEAD","details":"MAD!:w=0.34,s=0.68 RRCF-fast:w=0.16,s=0.54 RRCF-mid:w=0.12,s=0.55 RRCF-slow:w=0.10,s=0.66 COPOD!:w=0.27,s=0.74"} +{"timestamp":"2026-03-21T17:45:49.306811156Z","score":0.2639614359195465,"is_anomaly":false,"confidence":0.3323890290973124,"method":"SEAD","details":"MAD!:w=0.34,s=0.27 RRCF-fast:w=0.16,s=0.38 RRCF-mid:w=0.12,s=0.18 RRCF-slow:w=0.10,s=0.38 COPOD!:w=0.27,s=0.18"} +{"timestamp":"2026-03-21T17:46:19.274232016Z","score":0.38352652999169246,"is_anomaly":false,"confidence":0.48294937665006066,"method":"SEAD","details":"MAD!:w=0.34,s=0.18 RRCF-fast:w=0.16,s=0.03 RRCF-mid:w=0.12,s=0.23 RRCF-slow:w=0.10,s=0.47 COPOD!:w=0.27,s=0.89"} +{"timestamp":"2026-03-21T17:46:51.577342794Z","score":0.7211607612300895,"is_anomaly":false,"confidence":0.9081096426578342,"method":"SEAD","details":"MAD!:w=0.35,s=0.91 RRCF-fast:w=0.16,s=0.78 RRCF-mid:w=0.12,s=0.58 RRCF-slow:w=0.10,s=0.75 COPOD!:w=0.26,s=0.48"} +{"timestamp":"2026-03-21T17:47:19.350660622Z","score":0.4831856895443452,"is_anomaly":false,"confidence":0.6084435086582561,"method":"SEAD","details":"MAD!:w=0.34,s=0.42 RRCF-fast:w=0.16,s=0.57 RRCF-mid:w=0.12,s=0.47 RRCF-slow:w=0.10,s=0.48 COPOD!:w=0.27,s=0.51"} +{"timestamp":"2026-03-21T17:47:49.319669225Z","score":0.3650660909994332,"is_anomaly":false,"confidence":0.46040625716746136,"method":"SEAD","details":"MAD!:w=0.35,s=0.44 RRCF-fast:w=0.16,s=0.16 RRCF-mid:w=0.12,s=0.31 RRCF-slow:w=0.10,s=0.34 COPOD!:w=0.27,s=0.43"} +{"timestamp":"2026-03-21T17:48:19.666751883Z","score":0.10212392132658796,"is_anomaly":false,"confidence":0.12879446638420233,"method":"SEAD","details":"MAD!:w=0.34,s=0.10 RRCF-fast:w=0.16,s=0.06 RRCF-mid:w=0.12,s=0.13 RRCF-slow:w=0.10,s=0.27 COPOD!:w=0.27,s=0.06"} +{"timestamp":"2026-03-21T17:48:49.316322794Z","score":0.46890234575961554,"is_anomaly":false,"confidence":0.5913602476669426,"method":"SEAD","details":"MAD!:w=0.34,s=0.76 RRCF-fast:w=0.16,s=0.31 RRCF-mid:w=0.12,s=0.19 RRCF-slow:w=0.10,s=0.39 COPOD!:w=0.27,s=0.35"} +{"timestamp":"2026-03-21T17:49:19.316567586Z","score":0.2780308737216586,"is_anomaly":false,"confidence":0.3506410403572285,"method":"SEAD","details":"MAD!:w=0.34,s=0.53 RRCF-fast:w=0.17,s=0.22 RRCF-mid:w=0.12,s=0.15 RRCF-slow:w=0.10,s=0.21 COPOD!:w=0.27,s=0.07"} diff --git a/evaluation/data/pipeline_full_cycle_run1/baseline_metrics.csv b/evaluation/data/pipeline_full_cycle_run1/baseline_metrics.csv new file mode 100644 index 0000000..6a01e3d --- /dev/null +++ b/evaluation/data/pipeline_full_cycle_run1/baseline_metrics.csv @@ -0,0 +1,4688 @@ +timestamp,cpu_percent,cpu_count,cpu_freq_current,memory_percent,memory_available_mb,memory_used_mb,swap_percent,disk_io_read_mb_s,disk_io_write_mb_s,disk_io_read_count,disk_io_write_count,network_sent_mb_s,network_recv_mb_s,network_packets_sent,network_packets_recv,network_errin,network_errout,network_dropin,network_dropout,tixstream_active,transfer_job_manager_active +1774091944.493162,0.75,4,3992.50,46.97,1825.06,1838.93,0.00,1.360492,0.028260,237,247,0.000000,0.000030,36065530,23738136,0,0,36430,0,1,1 +1774091949.496469,0.45,4,3992.50,46.99,1824.32,1839.68,0.00,3516112388421.893555,3516112388423.402832,21,0,0.000000,0.000020,36065530,23738138,0,0,36432,0,1,1 +1774091954.496238,0.45,4,3992.50,47.01,1823.59,1840.40,0.00,0.000000,0.000000,21,0,0.000000,0.000094,36065530,23738144,0,0,36434,0,1,1 +1774091959.495954,0.65,4,3992.50,47.37,1809.64,1854.49,0.00,0.000000,0.000000,21,0,0.000000,0.000067,36065530,23738149,0,0,36437,0,1,1 +1774091964.492628,0.50,4,3992.50,47.39,1808.96,1855.34,0.00,70096.335626,74694.223968,6047862,1315110,0.000000,0.000057,36065530,23738153,0,0,36439,0,1,1 +1774091969.493176,0.45,4,3992.50,47.41,1808.24,1856.06,0.00,3518051097459.224609,3518051092863.388672,237,247,0.000093,0.000130,36065536,23738163,0,0,36442,0,1,1 +1774091974.495595,40.26,4,3992.50,54.03,1558.95,2115.32,0.00,0.468231,3516735911221.275879,238,2,93.891258,0.029593,36075398,23740233,0,0,36444,0,1,1 +1774091979.492626,30.48,4,3992.50,54.13,1559.61,2119.31,0.00,70089.315439,74689.002938,6047862,1315233,119.845699,0.040139,36087837,23743282,0,0,36447,0,1,1 +1774091984.494841,29.40,4,3992.50,54.24,1555.44,2123.49,0.00,3516879712275.697266,0.160183,6047088,1315055,118.725611,0.053181,36100224,23747337,0,0,36450,0,1,1 +1774091989.495830,30.08,4,3992.50,54.77,1536.49,2144.54,0.00,3517741595492.814941,3517741590892.995117,237,247,119.572973,0.105758,36113077,23755488,0,0,36452,0,1,1 +1774091994.495626,29.13,4,3992.50,54.38,1549.88,2129.12,0.00,0.468476,3518580353176.532227,238,2,119.201574,0.104019,36125877,23763536,0,0,36455,0,1,1 +1774091999.492054,30.14,4,3992.50,54.21,1556.57,2122.38,0.00,70093.723476,74698.288921,6047093,1315143,119.276905,0.089994,36138626,23770471,0,0,36457,0,1,1 +1774092004.496526,28.94,4,3992.50,54.27,1554.32,2124.80,0.00,3515292991184.971191,3515292986588.303711,237,247,119.693326,0.112223,36151575,23779202,0,0,36459,0,1,1 +1774092009.491900,28.30,4,3992.50,54.29,1553.37,2125.63,0.00,3521695001442.136719,3521695001443.647949,21,0,118.703522,0.094926,36164268,23786571,0,0,36462,0,1,1 +1774092014.496662,12.32,4,3992.50,47.79,1807.97,1871.07,0.00,69983.192600,74574.073392,6047888,1315484,96.660007,0.062353,36174466,23791371,0,0,36464,0,1,1 +1774092019.495422,22.08,4,3992.50,49.22,1751.79,1927.22,0.00,3519310293794.488281,3519310289198.095215,21,0,22.351867,0.107102,36181964,23796945,0,0,36467,0,1,1 +1774092024.496188,14.75,4,3992.50,48.80,1768.30,1910.65,0.00,1.538143,0.028316,237,247,17.907789,0.076523,36187640,23801124,0,0,36470,0,1,1 +1774092029.493344,1.56,4,3992.50,48.57,1777.35,1901.58,0.00,0.468724,3520439780776.684570,238,2,0.007735,0.006242,36187793,23801262,0,0,36472,0,1,1 +1774092034.496489,2.20,4,3992.50,48.48,1780.89,1898.03,0.00,3516225576131.298340,3516225576133.304199,21,0,0.004365,0.007857,36187903,23801413,0,0,36475,0,1,1 +1774092039.493306,0.65,4,3992.50,48.48,1780.88,1898.04,0.00,70094.484526,74693.828313,6047892,1316670,0.003889,0.007135,36188004,23801554,0,0,36477,0,1,1 +1774092044.493032,0.70,4,3992.50,47.95,1801.62,1877.32,0.00,0.000000,0.011817,6047892,1316681,0.003420,0.005855,36188090,23801670,0,0,36479,0,1,1 +1774092049.495935,1.00,4,3992.50,48.29,1794.89,1890.59,0.00,3516394896851.230957,3516394892257.296875,199,0,0.003876,0.007128,36188190,23801811,0,0,36482,0,1,1 +1774092054.494098,0.95,4,3992.50,48.29,1794.58,1890.79,0.00,1.832509,0.000195,238,2,0.003879,0.007608,36188290,23801954,0,0,36484,0,1,1 +1774092059.496295,1.30,4,3992.50,48.42,1789.57,1895.80,0.00,3516891845808.199219,3516891845810.205566,21,0,0.003964,0.007414,36188397,23802104,0,0,36487,0,1,1 +1774092064.496185,0.70,4,3992.50,48.43,1789.33,1896.04,0.00,0.048048,0.000000,70,0,0.003458,0.005896,36188486,23802223,0,0,36490,0,1,1 +1774092069.496509,0.65,4,3992.50,48.43,1789.35,1896.01,0.00,3518208865165.892578,0.000000,21,0,0.003865,0.007122,36188585,23802363,0,0,36492,0,1,1 +1774092074.493182,0.50,4,3992.50,48.43,1789.36,1896.00,0.00,1.539403,0.028339,237,247,0.003889,0.007135,36188686,23802504,0,0,36494,0,1,1 +1774092079.496812,0.90,4,3992.50,48.34,1791.11,1892.51,0.00,3515884821355.986816,3515884821357.321289,199,0,0.003950,0.007167,36188791,23802648,0,0,36497,0,1,1 +1774092084.494080,0.60,4,3992.50,48.34,1791.15,1892.47,0.00,1.364124,0.028336,237,247,0.003410,0.005858,36188876,23802764,0,0,36499,0,1,1 +1774092089.491923,0.90,4,3992.50,48.19,1796.79,1886.85,0.00,0.468659,3519955608614.104004,238,2,0.003704,0.006989,36188973,23802903,0,0,36502,0,1,1 +1774092094.491890,1.20,4,3992.50,48.19,1796.80,1886.83,0.00,3518460280834.177246,0.028125,237,247,0.003259,0.006885,36189061,23803036,0,0,36504,0,1,1 +1774092099.496641,24.96,4,3992.50,48.71,1769.77,1907.25,0.00,3515097527375.301270,3515097527376.762207,70,0,0.047401,100.856204,36192415,23813860,0,0,36507,0,1,1 +1774092104.493522,26.05,4,3992.50,48.55,1768.80,1900.94,0.00,1.491262,0.028338,237,247,0.040313,104.215581,36195356,23824721,0,0,36510,0,1,1 +1774092109.491915,13.74,4,3992.50,49.61,1731.66,1942.20,0.00,0.000000,0.000000,237,247,40.080795,0.031778,36199802,23826478,0,0,36512,0,1,1 +1774092114.491927,2.76,4,3992.50,49.22,1751.02,1927.03,0.00,0.000000,0.000000,237,247,0.007069,0.010638,36199963,23826673,0,0,36515,0,1,1 +1774092119.495974,1.25,4,3992.50,49.08,1756.24,1921.77,0.00,3515591317319.861328,3515591317321.370605,21,0,0.002342,0.004347,36200023,23826758,0,0,36517,0,1,1 +1774092124.496497,11.35,4,3992.50,49.01,1757.27,1918.84,0.00,70061.027387,74874.950496,6048636,1319310,0.028654,40.063708,36201917,23831248,0,0,36519,0,1,1 +1774092129.496881,1.00,4,3992.50,48.84,1763.82,1912.30,0.00,3518166643166.764160,3518166638351.198242,237,247,0.003886,0.009982,36202029,23831438,0,0,36522,0,1,1 +1774092134.496109,0.65,4,3992.50,48.85,1763.35,1912.77,0.00,70073.523585,74900.446511,6047862,1319223,0.002486,0.006889,36202105,23831571,0,0,36524,0,1,1 +1774092139.496871,0.90,4,3992.50,49.06,1755.38,1920.89,0.00,4.108650,0.121954,6048636,1319536,0.002303,0.006378,36202176,23831695,0,0,36527,0,1,1 +1774092144.496420,0.65,4,3992.50,48.96,1759.13,1917.04,0.00,3518754986545.333496,3518754981724.169922,70,0,0.001864,0.005138,36202235,23831797,0,0,36530,0,1,1 +1774092149.492744,0.55,4,3992.50,48.92,1760.79,1915.38,0.00,0.000000,0.000000,70,0,0.001832,0.005093,36202291,23831895,0,0,36532,0,1,1 +1774092154.493379,0.60,4,3992.50,48.94,1759.89,1916.28,0.00,3517990916555.478027,0.000000,21,0,0.002276,0.006365,36202360,23832018,0,0,36535,0,1,1 +1774092159.496409,1.00,4,3992.50,48.98,1758.18,1917.55,0.00,70024.262656,74847.687863,6048072,1319351,0.002300,0.006383,36202431,23832142,0,0,36537,0,1,1 +1774092164.496393,0.65,4,3992.50,48.97,1758.74,1917.41,0.00,0.000000,0.046875,6048072,1319398,0.002339,0.006418,36202505,23832268,0,0,36539,0,1,1 +1774092169.496411,0.75,4,3992.50,49.03,1765.59,1919.59,0.00,3518424540745.628418,3518424535919.201660,70,0,0.002135,0.005813,36202574,23832384,0,0,36542,0,1,1 +1774092174.495806,1.96,4,3992.50,49.05,1764.66,1920.52,0.00,3518863068729.456055,0.000000,21,0,0.005706,0.008726,36202696,23832537,0,0,36544,0,1,1 +1774092179.491915,0.75,4,3992.50,49.05,1764.67,1920.50,0.00,0.000000,0.000000,21,0,0.002322,0.006396,36202768,23832662,0,0,36547,0,1,1 +1774092184.492048,0.65,4,3992.50,49.05,1764.68,1920.49,0.00,2.006783,0.000195,238,2,0.002289,0.006366,36202838,23832785,0,0,36550,0,1,1 +1774092189.497375,24.32,4,3992.50,55.44,1520.11,2170.63,0.00,3514692503653.084473,3514692503655.089355,21,0,22.213533,0.025242,36205320,23834167,0,0,36552,0,1,1 +1774092194.496371,33.11,4,3992.50,55.07,1541.23,2156.27,0.00,0.000000,0.000000,21,0,118.189314,0.054892,36217463,23838182,0,0,36555,0,1,1 +1774092199.496129,28.68,4,3992.50,55.38,1527.19,2168.16,0.00,2.006933,0.000195,238,2,118.168194,0.050734,36229480,23841925,0,0,36557,0,1,1 +1774092204.496423,29.22,4,3992.50,55.22,1538.74,2161.92,0.00,3518230349602.266113,3518230349604.272949,21,0,119.158132,0.055002,36241593,23845950,0,0,36559,0,1,1 +1774092209.491909,28.49,4,3992.50,55.39,1531.84,2168.78,0.00,0.000000,0.000000,21,0,119.268625,0.047574,36253547,23849527,0,0,36562,0,1,1 +1774092214.495522,28.70,4,3992.50,55.24,1537.71,2162.90,0.00,0.048012,0.000000,70,0,119.476003,0.054540,36265619,23853681,0,0,36564,0,1,1 +1774092219.492947,28.62,4,3992.50,55.21,1538.95,2161.70,0.00,70106.867061,74932.023308,6048846,1319959,118.824203,0.051864,36277633,23857500,0,0,36567,0,1,1 +1774092224.492656,28.74,4,3992.50,55.35,1533.71,2166.90,0.00,3518642625432.059570,3518642620607.643555,237,247,120.083369,0.049439,36289766,23861197,0,0,36570,0,1,1 +1774092229.493529,29.36,4,3992.50,55.54,1518.54,2174.62,0.00,3517822888656.357422,3517822888657.867188,21,0,118.228351,0.052282,36301653,23865055,0,0,36572,0,1,1 +1774092234.494672,1.96,4,3992.50,50.32,1722.89,1970.29,0.00,1.538027,0.028314,237,247,51.862602,0.029559,36306942,23867070,0,0,36574,0,1,1 +1774092239.496454,4.46,4,3992.50,49.53,1754.07,1939.11,0.00,3517183449752.315918,3517183449753.825684,21,0,0.019790,0.014213,36307286,23867378,0,0,36577,0,1,1 +1774092244.491871,29.66,4,3992.50,49.65,1749.18,1943.99,0.00,70135.259069,74963.285522,6048860,1321124,40.265301,0.168963,36319861,23876789,0,0,36579,0,1,1 +1774092249.492016,2.31,4,3992.50,49.61,1750.85,1942.32,0.00,0.003906,0.028808,6048861,1321208,0.013259,0.011587,36320136,23877055,0,0,36582,0,1,1 +1774092254.496667,9.28,4,3992.50,49.62,1748.28,1942.89,0.00,3515167566865.828613,3515167562044.680176,238,2,0.025627,36.829396,36321782,23881221,0,0,36584,0,1,1 +1774092259.491903,29.33,4,3992.50,49.88,1726.93,1952.75,0.00,0.000000,0.000000,238,2,0.021238,119.487327,36323196,23893788,0,0,36587,0,1,1 +1774092264.495591,13.36,4,3992.50,49.54,1732.46,1939.63,0.00,3515843897811.435059,3515843897813.265625,199,0,0.026134,48.846489,36324990,23899123,0,0,36590,0,1,1 +1774092269.496466,15.49,4,3992.50,50.24,1705.83,1966.97,0.00,0.000000,0.000000,199,0,40.057707,0.032837,36329375,23901242,0,0,36592,0,1,1 +1774092274.492409,3.06,4,3992.50,50.35,1701.48,1971.31,0.00,0.000000,0.000000,199,0,0.007063,0.010621,36329535,23901435,0,0,36595,0,1,1 +1774092279.493484,1.30,4,3992.50,49.93,1718.06,1954.74,0.00,3517680303280.391602,0.000000,70,0,0.003516,0.006011,36329629,23901562,0,0,36597,0,1,1 +1774092284.495958,0.80,4,3992.50,49.66,1728.34,1944.46,0.00,3516697741865.734863,0.000000,21,0,0.003864,0.007119,36329728,23901702,0,0,36599,0,1,1 +1774092289.491995,0.90,4,3992.50,49.47,1740.45,1936.99,0.00,1.539599,0.028343,237,247,0.003881,0.007138,36329828,23901843,0,0,36602,0,1,1 +1774092294.496173,0.70,4,3992.50,49.43,1741.83,1935.25,0.00,70024.444658,75037.998764,6048195,1323016,0.003875,0.007116,36329928,23901983,0,0,36604,0,1,1 +1774092299.496296,1.50,4,3992.50,49.59,1735.49,1941.55,0.00,3518350729512.298828,3518350724496.013184,199,0,0.003420,0.005883,36330014,23902101,0,0,36607,0,1,1 +1774092304.496033,0.70,4,3992.50,49.58,1735.95,1941.13,0.00,0.000000,0.000000,199,0,0.003866,0.007133,36330113,23902242,0,0,36610,0,1,1 +1774092309.496706,0.75,4,3992.50,49.58,1736.07,1941.02,0.00,3517964099702.633301,0.000000,21,0,0.003958,0.007197,36330218,23902388,0,0,36612,0,1,1 +1774092314.495938,0.65,4,3992.50,49.58,1736.07,1941.02,0.00,2.007144,0.000195,238,2,0.003887,0.007132,36330319,23902529,0,0,36614,0,1,1 +1774092319.495499,1.15,4,3992.50,49.57,1736.68,1940.95,0.00,70088.682025,75107.585966,6048197,1323249,0.003483,0.006550,36330409,23902653,0,0,36617,0,1,1 +1774092324.496643,0.70,4,3992.50,49.57,1736.15,1940.93,0.00,4.108338,0.090604,6048971,1323565,0.003877,0.007121,36330509,23902793,0,0,36619,0,1,1 +1774092329.492007,0.90,4,3992.50,49.60,1734.96,1942.11,0.00,3521702463786.826172,3521702463790.920898,6048197,1323328,0.003882,0.007139,36330609,23902934,0,0,36622,0,1,1 +1774092334.496740,0.65,4,3992.50,49.60,1734.99,1942.09,0.00,3515109700806.786133,3515109695792.996582,238,2,0.003874,0.007103,36330709,23903073,0,0,36624,0,1,1 +1774092339.496563,0.80,4,3992.50,49.60,1735.00,1942.08,0.00,3518561579477.342773,3518561579479.350098,21,0,0.003420,0.005890,36330795,23903192,0,0,36627,0,1,1 +1774092344.496450,0.60,4,3992.50,49.60,1735.02,1942.06,0.00,0.000000,0.000000,21,0,0.003083,0.006749,36330880,23903324,0,0,36630,0,1,1 +1774092349.492026,11.76,4,3992.50,49.63,1732.20,1943.12,0.00,0.175155,0.000000,199,0,0.033031,40.105588,36333094,23907869,0,0,36632,0,1,1 +1774092354.495383,1.00,4,3992.50,49.36,1742.53,1932.75,0.00,70037.340658,75088.946423,6048199,1323781,0.002287,0.006362,36333164,23907992,0,0,36635,0,1,1 +1774092359.491978,0.60,4,3992.50,49.31,1744.79,1930.49,0.00,3520834786448.083496,3520834781388.305176,237,247,0.001832,0.005092,36333220,23908090,0,0,36637,0,1,1 +1774092364.496660,0.60,4,3992.50,49.31,1744.79,1930.48,0.00,3515146035999.754883,3515146036001.088379,199,0,0.002274,0.006350,36333289,23908212,0,0,36639,0,1,1 +1774092369.491928,0.65,4,3992.50,49.31,1744.80,1930.48,0.00,0.000000,0.000000,199,0,0.002291,0.006372,36333359,23908335,0,0,36642,0,1,1 +1774092374.496080,0.65,4,3992.50,49.31,1744.66,1930.61,0.00,1.830316,0.000195,238,2,0.002274,0.006351,36333428,23908457,0,0,36644,0,1,1 +1774092379.496511,0.75,4,3992.50,49.34,1741.82,1931.87,0.00,3518134396017.507324,3518134396019.465820,70,0,0.001856,0.005129,36333486,23908558,0,0,36647,0,1,1 +1774092384.495509,0.70,4,3992.50,49.30,1743.33,1930.34,0.00,1.959181,0.000195,238,2,0.002322,0.007081,36333559,23908690,0,0,36650,0,1,1 +1774092389.491992,0.70,4,3992.50,49.33,1742.10,1931.57,0.00,70135.976704,75194.462178,6048973,1324173,0.002328,0.006392,36333632,23908814,0,0,36652,0,1,1 +1774092394.492006,1.45,4,3992.50,49.14,1749.73,1923.97,0.00,3518427042316.308105,3518427037263.401855,21,0,0.002495,0.006544,36333716,23908950,0,0,36654,0,1,1 +1774092399.496614,0.65,4,3992.50,49.15,1749.49,1924.20,0.00,1.536963,0.028294,237,247,0.001856,0.005139,36333774,23909052,0,0,36657,0,1,1 +1774092404.495070,0.90,4,3992.50,49.15,1749.54,1924.16,0.00,3519523648525.185547,3519523648526.520996,199,0,0.002563,0.006868,36333848,23909182,0,0,36659,0,1,1 +1774092409.495764,0.90,4,3992.50,49.28,1750.63,1929.24,0.00,3517949110330.122559,0.000000,21,0,0.003518,0.007589,36333927,23909319,0,0,36662,0,1,1 +1774092414.491872,23.79,4,3992.50,55.93,1496.18,2189.93,0.00,70143.247869,75200.177815,6048973,1324245,34.280858,0.028241,36337614,23910933,0,0,36664,0,1,1 +1774092419.496751,31.71,4,3992.50,55.73,1511.09,2181.76,0.00,0.000000,0.081756,6048973,1324343,118.050806,0.034575,36349739,23913521,0,0,36667,0,1,1 +1774092424.495464,27.76,4,3992.50,55.49,1520.57,2172.57,0.00,3519343202148.540039,3519343197093.988770,199,0,119.627606,0.110363,36362505,23921942,0,0,36670,0,1,1 +1774092429.495652,28.18,4,3992.50,55.57,1517.34,2175.77,0.00,3518304952281.563477,0.000000,21,0,118.793017,0.115198,36375260,23930650,0,0,36672,0,1,1 +1774092434.491912,28.38,4,3992.50,55.68,1513.10,2180.00,0.00,70141.123254,75198.163798,6048973,1324439,119.891425,0.117101,36388175,23939463,0,0,36675,0,1,1 +1774092439.491896,28.49,4,3992.50,55.99,1501.04,2192.09,0.00,3518448185316.478516,3518448180261.198242,238,2,118.598342,0.111420,36401010,23948000,0,0,36677,0,1,1 +1774092444.495837,28.43,4,3992.50,55.54,1518.54,2174.57,0.00,3515666428496.034180,3515666428498.040039,21,0,120.107549,0.117553,36413901,23956931,0,0,36679,0,1,1 +1774092449.497370,28.38,4,3992.50,55.75,1510.53,2182.60,0.00,2.006221,0.000195,238,2,118.786747,0.113183,36426710,23965468,0,0,36682,0,1,1 +1774092454.496633,26.12,4,3992.50,55.57,1517.44,2175.71,0.00,3518955924802.210449,3518955924804.042969,199,0,119.592360,0.114712,36439569,23974045,0,0,36684,0,1,1 +1774092459.496086,1.45,4,3992.50,49.70,1747.30,1945.86,0.00,3518822069490.409180,0.000000,21,0,37.871101,0.041141,36443713,23976949,0,0,36687,0,1,1 +1774092464.493700,12.11,4,3992.50,49.84,1741.83,1951.33,0.00,0.048070,0.000000,70,0,14.100053,0.069822,36448430,23980472,0,0,36690,0,1,1 +1774092469.491930,16.21,4,3992.50,49.45,1757.14,1936.09,0.00,1.490860,0.028330,237,247,22.144205,0.101035,36455700,23985957,0,0,36692,0,1,1 +1774092474.495317,6.03,4,3992.50,49.44,1752.88,1935.77,0.00,3516055851761.536133,3516055851763.045410,21,0,4.032400,0.026289,36457116,23987004,0,0,36694,0,1,1 +1774092479.496197,1.30,4,3992.50,49.46,1752.14,1936.51,0.00,0.048038,0.000000,70,0,0.004637,0.008553,36457236,23987171,0,0,36697,0,1,1 +1774092484.493230,0.65,4,3992.50,49.46,1752.14,1936.50,0.00,3520526365271.673828,0.000000,21,0,0.003410,0.005859,36457321,23987287,0,0,36699,0,1,1 +1774092489.496538,1.00,4,3992.50,49.41,1754.08,1934.56,0.00,1.537362,0.028302,237,247,0.003863,0.007128,36457420,23987428,0,0,36702,0,1,1 +1774092494.492472,1.00,4,3992.50,49.42,1753.88,1934.77,0.00,3521301150011.688477,3521301150013.199707,21,0,0.003262,0.006891,36457508,23987561,0,0,36704,0,1,1 +1774092499.496084,1.25,4,3992.50,49.41,1750.29,1934.67,0.00,2.005387,0.000195,238,2,0.003418,0.005861,36457594,23987678,0,0,36707,0,1,1 +1774092504.493415,0.65,4,3992.50,49.22,1757.71,1927.26,0.00,3520316473505.558594,3520316473507.518555,70,0,0.003506,0.005970,36457687,23987802,0,0,36710,0,1,1 +1774092509.496739,1.35,4,3992.50,49.23,1757.48,1927.49,0.00,3516099194897.561035,0.000000,21,0,0.003875,0.007118,36457787,23987942,0,0,36712,0,1,1 +1774092514.496261,0.65,4,3992.50,49.23,1757.49,1927.48,0.00,1.538526,0.028323,237,247,0.003841,0.007133,36457884,23988083,0,0,36715,0,1,1 +1774092519.491898,1.70,4,3992.50,49.23,1757.51,1927.46,0.00,3521509617560.486816,3521509617561.998535,21,0,0.003919,0.007835,36457987,23988231,0,0,36717,0,1,1 +1774092524.496024,0.70,4,3992.50,49.32,1753.88,1931.09,0.00,0.000000,0.000000,21,0,0.003492,0.005890,36458078,23988350,0,0,36719,0,1,1 +1774092529.496404,11.20,4,3992.50,50.45,1707.34,1975.23,0.00,0.048043,0.000000,70,0,0.028635,44.071745,36459911,23993358,0,0,36722,0,1,1 +1774092534.495651,29.60,4,3992.50,49.80,1724.37,1949.96,0.00,70099.333066,75280.485681,6048989,1327248,0.045941,118.187862,36463289,24005637,0,0,36724,0,1,1 +1774092539.491986,11.64,4,3992.50,49.63,1728.01,1943.21,0.00,3521018141568.043457,3521018136383.918945,21,0,0.016828,42.901325,36464335,24010335,0,0,36727,0,1,1 +1774092544.495911,11.28,4,3992.50,54.23,1548.83,2123.23,0.00,0.000000,0.000000,21,0,12.616893,0.016193,36465956,24011240,0,0,36730,0,1,1 +1774092549.493827,5.37,4,3992.50,49.94,1716.97,1955.13,0.00,2.007673,0.000195,238,2,27.456079,0.016437,36468885,24012026,0,0,36732,0,1,1 +1774092554.496815,2.56,4,3992.50,49.44,1736.27,1935.80,0.00,70058.447820,75304.478890,6048335,1327739,0.004576,0.009361,36469000,24012191,0,0,36735,0,1,1 +1774092559.492930,0.90,4,3992.50,49.62,1729.26,1942.70,0.00,3521172928172.117188,3521172922920.877930,21,0,0.003423,0.005860,36469086,24012307,0,0,36737,0,1,1 +1774092564.493240,1.45,4,3992.50,49.62,1728.99,1942.91,0.00,0.174989,0.000000,199,0,0.003865,0.007135,36469185,24012448,0,0,36739,0,1,1 +1774092569.491905,0.60,4,3992.50,49.62,1729.00,1942.91,0.00,70124.974759,75369.809839,6049109,1328109,0.003248,0.006897,36469272,24012582,0,0,36742,0,1,1 +1774092574.496939,11.23,4,3992.50,49.20,1743.45,1926.20,0.00,3514898252553.960938,32.054933,6048340,1328146,0.031139,40.026539,36471397,24017058,0,0,36744,0,1,1 +1774092579.495908,0.75,4,3992.50,49.03,1749.84,1919.82,0.00,3519163258295.458984,3519163253012.910156,238,2,0.002542,0.006986,36471474,24017193,0,0,36747,0,1,1 +1774092584.493376,0.70,4,3992.50,49.07,1748.45,1921.21,0.00,70135.823166,75424.042858,6048340,1328249,0.002277,0.007013,36471543,24017320,0,0,36750,0,1,1 +1774092589.496119,0.80,4,3992.50,49.28,1740.23,1929.28,0.00,3516508487900.343750,3516508482617.698730,238,2,0.001830,0.005086,36471599,24017418,0,0,36752,0,1,1 +1774092594.492184,0.75,4,3992.50,49.28,1740.05,1929.44,0.00,3521208004502.737305,0.028147,237,247,0.002286,0.006369,36471669,24017541,0,0,36754,0,1,1 +1774092599.496655,0.65,4,3992.50,49.31,1739.07,1930.42,0.00,3515293819087.506348,3515293819088.966797,70,0,0.002262,0.006360,36471737,24017664,0,0,36757,0,1,1 +1774092604.495900,1.10,4,3992.50,49.33,1737.94,1931.55,0.00,70116.990139,75401.413455,6049123,1328573,0.002277,0.006357,36471806,24017786,0,0,36759,0,1,1 +1774092609.494785,0.75,4,3992.50,49.29,1739.59,1929.89,0.00,3519221842615.766113,0.044150,6048349,1328400,0.002340,0.006417,36471880,24017912,0,0,36762,0,1,1 +1774092614.494973,0.95,4,3992.50,49.20,1743.14,1926.35,0.00,3518305001800.087402,3518304996512.380859,199,0,0.001881,0.005163,36471940,24018015,0,0,36764,0,1,1 +1774092619.492325,0.80,4,3992.50,49.29,1740.19,1929.73,0.00,3520301828274.218262,0.000000,21,0,0.002465,0.006532,36472022,24018150,0,0,36767,0,1,1 +1774092624.494903,0.70,4,3992.50,49.35,1737.75,1932.18,0.00,2.005802,0.000195,238,2,0.002281,0.006388,36472091,24018275,0,0,36770,0,1,1 +1774092629.496175,0.70,4,3992.50,49.32,1739.05,1930.88,0.00,3517542007806.865723,3517542007808.872070,21,0,0.002288,0.006354,36472161,24018397,0,0,36772,0,1,1 +1774092634.496064,0.70,4,3992.50,49.34,1738.32,1931.61,0.00,0.175004,0.000000,199,0,0.001819,0.005099,36472216,24018496,0,0,36775,0,1,1 +1774092639.496565,24.52,4,3992.50,55.77,1494.94,2183.69,0.00,0.000000,0.000000,199,0,47.474268,0.040166,36477477,24021074,0,0,36777,0,1,1 +1774092644.493800,32.80,4,3992.50,55.92,1494.00,2189.45,0.00,3520384084781.249023,0.000000,70,0,122.659574,0.061996,36490250,24025609,0,0,36779,0,1,1 +1774092649.496391,28.15,4,3992.50,55.70,1502.79,2180.68,0.00,1.957774,0.000195,238,2,121.900163,0.022366,36502206,24027021,0,0,36782,0,1,1 +1774092654.491965,30.01,4,3992.50,55.85,1498.23,2186.54,0.00,3521554416308.026367,0.028150,237,247,120.580794,0.026016,36514046,24028796,0,0,36784,0,1,1 +1774092659.492802,28.62,4,3992.50,55.83,1498.43,2185.97,0.00,3517848370314.522949,3517848370315.857910,199,0,120.077439,0.035998,36525949,24031445,0,0,36787,0,1,1 +1774092664.496768,28.60,4,3992.50,56.52,1471.83,2212.90,0.00,1.830384,0.000195,238,2,118.892859,0.034893,36537302,24033818,0,0,36790,0,1,1 +1774092669.496430,28.43,4,3992.50,56.20,1484.54,2200.27,0.00,3518674803174.916016,3518674803176.874512,70,0,118.942419,0.032992,36548781,24036276,0,0,36792,0,1,1 +1774092674.491910,28.48,4,3992.50,56.27,1481.50,2203.23,0.00,1.491680,0.028346,237,247,120.025810,0.029531,36559758,24038390,0,0,36794,0,1,1 +1774092679.492723,20.54,4,3992.50,56.08,1489.01,2195.82,0.00,70089.401870,75378.314307,6048351,1328780,118.887299,0.029052,36570488,24040463,0,0,36797,0,1,1 +1774092684.492587,1.35,4,3992.50,50.69,1699.97,1984.74,0.00,3518533191923.713379,3518533186633.796875,237,247,16.068929,0.010429,36572056,24040901,0,0,36799,0,1,1 +1774092689.495389,13.03,4,3992.50,50.87,1693.12,1991.58,0.00,0.000000,0.000000,237,247,14.086330,0.072224,36576690,24044424,0,0,36802,0,1,1 +1774092694.495833,17.03,4,3992.50,50.83,1694.55,1990.14,0.00,3518124930262.150391,3518124930263.612305,70,0,22.124486,0.093743,36583560,24049640,0,0,36804,0,1,1 +1774092699.492599,5.82,4,3992.50,50.11,1722.86,1961.84,0.00,1.960057,0.000195,238,2,4.038196,0.025784,36585000,24050698,0,0,36807,0,1,1 +1774092704.496632,2.91,4,3992.50,50.08,1724.02,1960.64,0.00,70048.091320,75330.980312,6049138,1330314,0.004865,0.009064,36585121,24050873,0,0,36810,0,1,1 +1774092709.491991,1.81,4,3992.50,50.35,1713.27,1971.42,0.00,3521706561922.588379,0.407214,6048364,1330273,0.004654,0.007099,36585216,24051004,0,0,36812,0,1,1 +1774092714.492034,0.75,4,3992.50,50.36,1713.14,1971.54,0.00,3518406736931.951172,3518406731642.162109,199,0,0.003878,0.007776,36585316,24051149,0,0,36815,0,1,1 +1774092719.496000,0.65,4,3992.50,50.36,1713.16,1971.53,0.00,3515649006016.127441,0.000000,21,0,0.003888,0.007104,36585417,24051288,0,0,36817,0,1,1 +1774092724.496450,0.70,4,3992.50,50.35,1713.18,1971.51,0.00,0.174984,0.000000,199,0,0.003878,0.007122,36585517,24051428,0,0,36819,0,1,1 +1774092729.493739,0.65,4,3992.50,50.35,1713.19,1971.49,0.00,1.364119,0.028336,237,247,0.003524,0.005930,36585613,24051555,0,0,36822,0,1,1 +1774092734.492072,0.55,4,3992.50,50.36,1712.96,1971.72,0.00,3519610635100.775879,3519610635102.238770,70,0,0.004765,0.007693,36585714,24051697,0,0,36824,0,1,1 +1774092739.491992,0.95,4,3992.50,50.57,1705.63,1979.91,0.00,3518492964330.062012,0.000000,21,0,0.003865,0.007132,36585813,24051838,0,0,36827,0,1,1 +1774092744.491935,0.75,4,3992.50,50.57,1705.80,1979.87,0.00,0.000000,0.000000,21,0,0.003878,0.007120,36585913,24051978,0,0,36830,0,1,1 +1774092749.496601,0.60,4,3992.50,50.57,1705.82,1979.85,0.00,2.004965,0.000195,238,2,0.003492,0.005890,36586004,24052097,0,0,36832,0,1,1 +1774092754.496011,0.70,4,3992.50,50.57,1705.84,1979.83,0.00,70112.864025,75401.557100,6049138,1331013,0.003910,0.007158,36586106,24052240,0,0,36835,0,1,1 +1774092759.496167,0.65,4,3992.50,50.57,1705.90,1979.77,0.00,3518327650970.705078,0.074119,6048365,1330854,0.003878,0.007135,36586206,24052381,0,0,36837,0,1,1 +1774092764.492085,1.56,4,3992.50,50.57,1705.92,1979.75,0.00,3521311875821.036133,3521311870526.471680,21,0,0.003894,0.007128,36586307,24052521,0,0,36839,0,1,1 +1774092769.496007,0.95,4,3992.50,50.46,1709.75,1975.78,0.00,0.000000,0.000000,21,0,0.003418,0.005861,36586393,24052638,0,0,36842,0,1,1 +1774092774.495921,14.60,4,3992.50,50.47,1705.75,1976.14,0.00,70103.691242,75418.197164,6048368,1331146,0.033226,59.898010,36588549,24059279,0,0,36844,0,1,1 +1774092779.496772,28.98,4,3992.50,50.47,1697.51,1976.14,0.00,3517838731196.328125,3517838725881.307129,237,247,0.046183,119.754092,36591877,24071729,0,0,36847,0,1,1 +1774092784.494819,7.33,4,3992.50,50.13,1708.92,1962.75,0.00,3519812170709.141602,3519812170710.477051,199,0,0.013902,25.454030,36592711,24074538,0,0,36850,0,1,1 +1774092789.496488,15.38,4,3992.50,54.67,1533.50,2140.54,0.00,70096.420961,75572.839334,6048524,1332368,29.640525,0.027301,36596057,24076238,0,0,36852,0,1,1 +1774092794.496382,4.87,4,3992.50,51.00,1677.32,1996.59,0.00,0.027344,0.076466,6048528,1332481,10.434616,12.548636,36598154,24078316,0,0,36855,0,1,1 +1774092799.491982,8.14,4,3992.50,50.63,1686.02,1982.46,0.00,3521535966457.594727,3521535960972.640625,238,2,0.011159,27.560316,36598817,24081345,0,0,36857,0,1,1 +1774092804.491995,0.80,4,3992.50,50.27,1700.25,1968.06,0.00,3518427554315.983887,3518427554317.990723,21,0,0.001831,0.005089,36598873,24081443,0,0,36859,0,1,1 +1774092809.496233,0.60,4,3992.50,50.30,1699.02,1969.28,0.00,0.000000,0.000000,21,0,0.002287,0.006361,36598943,24081566,0,0,36862,0,1,1 +1774092814.492697,0.60,4,3992.50,50.30,1699.03,1969.28,0.00,0.048081,0.000000,70,0,0.002290,0.006361,36599013,24081688,0,0,36864,0,1,1 +1774092819.495161,0.70,4,3992.50,50.30,1699.03,1969.27,0.00,70089.544725,75597.237548,6049302,1333133,0.002359,0.006464,36599089,24081818,0,0,36867,0,1,1 +1774092824.493907,0.55,4,3992.50,50.30,1698.79,1969.52,0.00,0.000000,0.004689,6049302,1333136,0.001832,0.005100,36599145,24081917,0,0,36870,0,1,1 +1774092829.492428,1.00,4,3992.50,50.95,1677.54,1994.99,0.00,3519478893954.773926,3519478888441.267578,237,247,0.002289,0.006358,36599215,24082039,0,0,36872,0,1,1 +1774092834.496307,0.70,4,3992.50,50.64,1689.84,1982.71,0.00,3515709116344.267090,3515709116345.601562,199,0,0.002287,0.006361,36599285,24082162,0,0,36875,0,1,1 +1774092839.496476,0.65,4,3992.50,50.67,1688.86,1983.70,0.00,3518318155329.668945,0.000000,70,0,0.002440,0.006542,36599367,24082296,0,0,36877,0,1,1 +1774092844.496523,0.55,4,3992.50,50.68,1688.40,1984.16,0.00,70119.331948,75637.923755,6048528,1333007,0.001986,0.005859,36599433,24082408,0,0,36879,0,1,1 +1774092849.495340,0.70,4,3992.50,50.68,1688.40,1984.16,0.00,4.110249,0.033992,6049302,1333260,0.002277,0.006367,36599502,24082531,0,0,36882,0,1,1 +1774092854.496549,0.60,4,3992.50,50.68,1688.41,1984.15,0.00,3517586373208.285645,3517586367695.099121,21,0,0.002288,0.006355,36599572,24082653,0,0,36884,0,1,1 +1774092859.494397,0.95,4,3992.50,50.87,1683.42,1991.77,0.00,0.175075,0.000000,199,0,0.002290,0.006369,36599642,24082776,0,0,36887,0,1,1 +1774092864.495871,22.11,4,3992.50,56.70,1462.36,2220.06,0.00,1.831296,0.000195,238,2,21.630713,0.025350,36602069,24084141,0,0,36890,0,1,1 +1774092869.496406,32.45,4,3992.50,56.73,1466.83,2221.08,0.00,3518060789745.320801,3518060789747.327637,21,0,120.154513,0.060048,36614331,24088500,0,0,36892,0,1,1 +1774092874.497387,28.02,4,3992.50,56.39,1480.46,2207.97,0.00,0.000000,0.000000,21,0,120.142296,0.052173,36626592,24092332,0,0,36895,0,1,1 +1774092879.499371,28.16,4,3992.50,56.69,1469.12,2219.38,0.00,1.537769,0.028309,237,247,118.917447,0.031198,36638834,24094704,0,0,36897,0,1,1 +1774092884.494755,28.30,4,3992.50,56.62,1471.52,2216.99,0.00,70187.391574,75708.685082,6049303,1333453,119.476180,0.025367,36651133,24096498,0,0,36899,0,1,1 +1774092889.492852,28.41,4,3992.50,56.63,1471.43,2217.15,0.00,3519776589038.070312,3519776583519.276855,238,2,120.213703,0.023343,36663518,24098036,0,0,36902,0,1,1 +1774092894.495817,28.42,4,3992.50,56.45,1478.34,2210.00,0.00,70076.476314,75594.092214,6048529,1333293,119.495464,0.043364,36675776,24101167,0,0,36904,0,1,1 +1774092899.495800,28.54,4,3992.50,56.40,1480.09,2208.34,0.00,3518448481538.922363,3518448476018.514160,237,247,118.763790,0.044633,36687850,24104408,0,0,36907,0,1,1 +1774092904.495448,28.02,4,3992.50,56.46,1478.00,2210.49,0.00,0.468490,3518684976382.046875,238,2,120.178267,0.021551,36700340,24105802,0,0,36910,0,1,1 +1774092909.496208,1.51,4,3992.50,50.29,1719.60,1968.88,0.00,3517902505993.375000,3517902505995.381836,21,0,46.462137,0.013570,36705244,24106538,0,0,36912,0,1,1 +1774092914.493389,6.48,4,3992.50,50.53,1710.13,1978.35,0.00,70163.842586,75682.191862,6049315,1333845,2.026397,0.019372,36706091,24107214,0,0,36914,0,1,1 +1774092919.496521,22.45,4,3992.50,50.99,1693.99,1996.36,0.00,3516234575749.941895,3516234570238.108398,70,0,34.178791,0.149472,36717006,24115439,0,0,36917,0,1,1 +1774092924.496573,6.52,4,3992.50,51.06,1691.02,1999.29,0.00,70123.499528,75639.653636,6049315,1334992,4.038536,0.029907,36718579,24116731,0,0,36919,0,1,1 +1774092929.495990,1.71,4,3992.50,51.21,1683.73,2005.14,0.00,0.000000,0.059382,6049315,1335003,0.003878,0.007133,36718679,24116872,0,0,36922,0,1,1 +1774092934.496774,0.70,4,3992.50,50.90,1697.37,1992.94,0.00,3517884894152.515625,3517884888637.110352,70,0,0.003877,0.007096,36718779,24117010,0,0,36924,0,1,1 +1774092939.491989,1.15,4,3992.50,50.91,1697.14,1993.17,0.00,0.127075,0.000000,199,0,0.003424,0.005896,36718865,24117129,0,0,36927,0,1,1 +1774092944.491990,0.60,4,3992.50,50.91,1697.15,1993.16,0.00,0.000000,0.000000,199,0,0.003878,0.007132,36718965,24117270,0,0,36930,0,1,1 +1774092949.496842,1.00,4,3992.50,50.96,1695.38,1995.08,0.00,3515026051148.682617,0.000000,21,0,0.003874,0.007116,36719065,24117410,0,0,36932,0,1,1 +1774092954.495501,1.00,4,3992.50,50.59,1709.75,1980.56,0.00,2.007375,0.000195,238,2,0.004000,0.007298,36719175,24117562,0,0,36935,0,1,1 +1774092959.492599,0.65,4,3992.50,50.59,1709.77,1980.54,0.00,3520480365429.052734,0.028141,237,247,0.003422,0.005859,36719261,24117678,0,0,36937,0,1,1 +1774092964.495341,0.70,4,3992.50,50.74,1703.85,1986.43,0.00,0.000000,0.000000,237,247,0.003888,0.007119,36719362,24117818,0,0,36939,0,1,1 +1774092969.491917,0.60,4,3992.50,50.74,1703.89,1986.42,0.00,3520847983492.000000,3520847983493.511230,21,0,0.003955,0.007177,36719467,24117962,0,0,36942,0,1,1 +1774092974.496078,0.75,4,3992.50,50.10,1728.73,1961.59,0.00,1.537100,0.028297,237,247,0.003875,0.007760,36719567,24118106,0,0,36944,0,1,1 +1774092979.496444,1.15,4,3992.50,50.41,1716.57,1973.60,0.00,3518180371160.025879,3518180371161.536133,21,0,0.003433,0.005865,36719654,24118223,0,0,36947,0,1,1 +1774092984.496181,0.60,4,3992.50,50.41,1716.59,1973.57,0.00,1.538460,0.028322,237,247,0.003878,0.007133,36719754,24118364,0,0,36950,0,1,1 +1774092989.496673,0.75,4,3992.50,50.41,1716.35,1973.81,0.00,3518091487438.427734,3518091487439.937988,21,0,0.003878,0.007122,36719854,24118504,0,0,36952,0,1,1 +1774092994.496425,0.65,4,3992.50,50.22,1723.79,1966.37,0.00,0.048049,0.000000,70,0,0.003878,0.007133,36719954,24118645,0,0,36955,0,1,1 +1774092999.492002,0.65,4,3992.50,50.19,1724.98,1965.18,0.00,1.491652,0.028345,237,247,0.003444,0.005868,36720042,24118762,0,0,36957,0,1,1 +1774093004.495095,0.70,4,3992.50,50.22,1723.77,1966.39,0.00,3516262241750.085938,3516262241751.595215,21,0,0.004175,0.007672,36720148,24118913,0,0,36959,0,1,1 +1774093009.496733,0.95,4,3992.50,50.34,1724.48,1971.03,0.00,0.174943,0.000000,199,0,0.005106,0.008354,36720257,24119068,0,0,36962,0,1,1 +1774093014.493117,1.15,4,3992.50,50.61,1713.83,1981.55,0.00,70170.743300,75696.392915,6048542,1335608,0.008653,1.814655,36720657,24119627,0,0,36964,0,1,1 +1774093019.496385,27.11,4,3992.50,50.79,1699.72,1988.73,0.00,4.115963,77.709574,6049327,1336325,0.045994,111.294934,36724114,24131423,0,0,36967,0,1,1 +1774093024.496106,22.94,4,3992.50,49.84,1730.46,1951.27,0.00,3518633169555.318359,3518633163958.376465,237,247,0.045917,91.949084,36727596,24141244,0,0,36970,0,1,1 +1774093029.496126,13.37,4,3992.50,55.64,1505.95,2178.61,0.00,0.000000,0.000000,237,247,17.033223,0.021797,36729730,24142367,0,0,36972,0,1,1 +1774093034.492153,3.01,4,3992.50,50.57,1704.52,1980.03,0.00,0.000000,0.000000,237,247,23.058755,0.016679,36732245,24143025,0,0,36975,0,1,1 +1774093039.495887,11.34,4,3992.50,50.78,1694.67,1988.28,0.00,3515811820703.827637,3515811820705.289062,70,0,0.030805,40.040221,36734447,24147614,0,0,36977,0,1,1 +1774093044.496228,0.85,4,3992.50,50.42,1708.27,1974.18,0.00,1.490230,0.028318,237,247,0.002309,0.006364,36734519,24147737,0,0,36979,0,1,1 +1774093049.493401,0.55,4,3992.50,50.45,1707.08,1975.37,0.00,0.000000,0.000000,237,247,0.001832,0.005076,36734575,24147834,0,0,36982,0,1,1 +1774093054.496600,0.70,4,3992.50,50.46,1706.67,1975.78,0.00,3516187626581.353027,3516187626582.862305,21,0,0.001830,0.005111,36734631,24147934,0,0,36984,0,1,1 +1774093059.491983,0.65,4,3992.50,50.49,1705.71,1976.74,0.00,0.048091,0.000000,70,0,0.002316,0.006403,36734703,24148059,0,0,36987,0,1,1 +1774093064.492092,0.60,4,3992.50,50.49,1705.71,1976.70,0.00,3518360534659.364746,0.000000,21,0,0.002276,0.006366,36734772,24148182,0,0,36990,0,1,1 +1774093069.496429,0.85,4,3992.50,50.54,1707.29,1978.63,0.00,70080.548450,75821.221503,6049440,1337643,0.002287,0.006351,36734842,24148304,0,0,36992,0,1,1 +1774093074.493713,0.70,4,3992.50,50.51,1705.36,1977.48,0.00,3520349634865.122070,3520349629114.836426,237,247,0.004007,0.006111,36734942,24148429,0,0,36995,0,1,1 +1774093079.495178,0.65,4,3992.50,50.30,1713.66,1969.17,0.00,0.000000,0.000000,237,247,0.002364,0.006447,36735018,24148557,0,0,36997,0,1,1 +1774093084.496206,0.60,4,3992.50,50.30,1713.66,1969.16,0.00,0.000000,0.000000,237,247,0.002469,0.006512,36735100,24148691,0,0,36999,0,1,1 +1774093089.496539,0.70,4,3992.50,50.29,1713.66,1969.16,0.00,0.468426,3518203223741.370605,238,2,0.002289,0.006366,36735170,24148814,0,0,37002,0,1,1 +1774093094.495196,0.70,4,3992.50,50.33,1712.47,1970.36,0.00,3519382754407.054199,3519382754409.061523,21,0,0.001827,0.005098,36735226,24148913,0,0,37004,0,1,1 +1774093099.496799,1.30,4,3992.50,50.48,1700.70,1976.41,0.00,70118.839211,75862.848508,6049440,1337782,0.003758,0.007690,36735324,24149063,0,0,37007,0,1,1 +1774093104.495866,42.72,4,3992.50,56.72,1466.87,2220.89,0.00,3519093969644.638672,0.054502,6048666,1337645,100.561854,0.039780,36745692,24151675,0,0,37010,0,1,1 +1774093109.493524,28.20,4,3992.50,56.62,1472.96,2216.89,0.00,3520086324533.693848,3520086318780.935059,70,0,118.422277,0.022017,36757972,24153106,0,0,37012,0,1,1 +1774093114.496378,28.04,4,3992.50,56.73,1468.62,2221.25,0.00,3516429921674.532715,0.000000,21,0,119.899892,0.028363,36770276,24154981,0,0,37015,0,1,1 +1774093119.496379,27.76,4,3992.50,56.64,1472.44,2217.49,0.00,0.000000,0.000000,21,0,118.764341,0.031683,36782255,24157361,0,0,37017,0,1,1 +1774093124.491897,28.46,4,3992.50,56.57,1474.96,2214.93,0.00,70200.155483,75955.404096,6048666,1337712,119.683728,0.051447,36794529,24161114,0,0,37019,0,1,1 +1774093129.495896,28.18,4,3992.50,56.82,1465.23,2224.73,0.00,3515624907415.328613,3515624901668.327148,237,247,119.082557,0.061401,36806894,24165651,0,0,37022,0,1,1 +1774093134.492615,28.61,4,3992.50,56.76,1467.52,2222.29,0.00,0.468765,3520748161786.502930,238,2,119.249320,0.037297,36819274,24168310,0,0,37024,0,1,1 +1774093139.496168,28.59,4,3992.50,56.66,1471.68,2218.20,0.00,3515938484843.818359,0.028105,237,247,119.283792,0.030866,36831602,24170443,0,0,37027,0,1,1 +1774093144.494435,10.66,4,3992.50,52.00,1654.11,2035.85,0.00,0.000000,0.000000,237,247,90.557777,0.023513,36840908,24172014,0,0,37030,0,1,1 +1774093149.496428,3.96,4,3992.50,51.06,1690.82,1999.13,0.00,70107.864578,75857.330628,6048680,1337846,0.012554,0.010668,36841142,24172232,0,0,37032,0,1,1 +1774093154.491924,25.60,4,3992.50,51.49,1673.96,2015.97,0.00,3521609721728.229492,3521609715972.621094,199,0,32.228223,0.141829,36851572,24179759,0,0,37035,0,1,1 +1774093159.495386,5.53,4,3992.50,51.01,1692.96,1996.96,0.00,3516003112275.625000,0.000000,21,0,8.051192,0.041887,36854404,24181836,0,0,37037,0,1,1 +1774093164.496048,1.15,4,3992.50,51.22,1692.79,2005.49,0.00,70128.080909,75878.203264,6048681,1338887,0.004124,0.007264,36854506,24181977,0,0,37039,0,1,1 +1774093169.492018,0.80,4,3992.50,51.21,1693.19,2005.09,0.00,3521275894889.321777,3521275889133.797363,21,0,0.003869,0.007138,36854605,24182118,0,0,37042,0,1,1 +1774093174.495182,1.10,4,3992.50,51.20,1693.84,2004.44,0.00,0.000000,0.000000,21,0,0.003876,0.007774,36854705,24182263,0,0,37044,0,1,1 +1774093179.496269,3.11,4,3992.50,51.27,1690.76,2007.41,0.00,70126.250273,75872.669465,6049455,1339726,0.017880,9.825364,36855712,24183751,0,0,37047,0,1,1 +1774093184.493469,29.50,4,3992.50,51.15,1687.48,2002.54,0.00,3520408645736.445312,3520408639985.508789,70,0,0.053834,120.238473,36859779,24196231,0,0,37050,0,1,1 +1774093189.492005,19.23,4,3992.50,51.58,1665.30,2019.36,0.00,1.959362,0.000195,238,2,0.039153,75.126274,36862781,24203947,0,0,37052,0,1,1 +1774093194.494338,1.20,4,3992.50,51.23,1679.03,2005.64,0.00,3516796723088.437500,0.028112,237,247,0.004906,0.009071,36862910,24204128,0,0,37055,0,1,1 +1774093199.491949,15.90,4,3992.50,52.82,1619.84,2068.06,0.00,70190.102020,76130.725289,6049568,1341059,40.084586,0.024273,36867327,24205565,0,0,37057,0,1,1 +1774093204.492006,1.56,4,3992.50,52.28,1640.93,2046.98,0.00,3518397316800.624023,3518397310864.367676,70,0,0.005280,0.006889,36867446,24205704,0,0,37059,0,1,1 +1774093209.496302,1.15,4,3992.50,51.41,1675.20,2012.72,0.00,0.126844,0.000000,199,0,0.004575,0.009358,36867561,24205869,0,0,37062,0,1,1 +1774093214.496164,0.65,4,3992.50,51.27,1680.63,2007.29,0.00,0.000000,0.000000,199,0,0.003878,0.007123,36867661,24206009,0,0,37064,0,1,1 +1774093219.495292,0.90,4,3992.50,51.22,1682.23,2005.37,0.00,1.832155,0.000195,238,2,0.003879,0.007134,36867761,24206150,0,0,37067,0,1,1 +1774093224.492051,0.70,4,3992.50,51.22,1682.36,2005.25,0.00,3520719272219.779785,3520719272221.788086,21,0,0.003448,0.005900,36867849,24206269,0,0,37070,0,1,1 +1774093229.494344,0.60,4,3992.50,51.18,1683.82,2003.79,0.00,1.537674,0.028307,237,247,0.003876,0.007119,36867949,24206409,0,0,37072,0,1,1 +1774093234.495712,0.60,4,3992.50,51.18,1683.84,2003.78,0.00,3517475559203.627930,3517475559205.089355,70,0,0.003877,0.007130,36868049,24206550,0,0,37075,0,1,1 +1774093239.496504,0.90,4,3992.50,51.53,1670.27,2017.35,0.00,0.126933,0.000000,199,0,0.003979,0.007849,36868156,24206701,0,0,37077,0,1,1 +1774093244.496905,0.60,4,3992.50,51.53,1670.29,2017.33,0.00,1.831689,0.000195,238,2,0.003407,0.005855,36868241,24206817,0,0,37079,0,1,1 +1774093249.495912,0.90,4,3992.50,51.29,1676.07,2007.93,0.00,0.000000,0.000000,238,2,0.003866,0.007134,36868340,24206958,0,0,37082,0,1,1 +1774093254.491924,0.90,4,3992.50,51.26,1677.19,2006.79,0.00,3521245787621.109863,3521245787623.118652,21,0,0.003943,0.007168,36868444,24207101,0,0,37084,0,1,1 +1774093259.492012,11.09,4,3992.50,51.21,1676.81,2005.14,0.00,70152.797202,76129.745524,6048805,1341609,0.024759,40.065677,36870061,24211595,0,0,37087,0,1,1 +1774093264.495155,0.70,4,3992.50,51.21,1677.00,2004.93,0.00,4.106696,0.074758,6049579,1341927,0.003390,0.008191,36870158,24211751,0,0,37090,0,1,1 +1774093269.496156,0.75,4,3992.50,51.01,1684.65,1997.28,0.00,3517732927790.897461,0.039445,6048805,1341749,0.002288,0.006355,36870228,24211873,0,0,37092,0,1,1 +1774093274.491989,0.60,4,3992.50,51.01,1684.66,1997.28,0.00,3521371627999.539062,3521371622015.378418,238,2,0.002303,0.006371,36870299,24211996,0,0,37095,0,1,1 +1774093279.491983,1.00,4,3992.50,51.31,1679.30,2008.84,0.00,0.000000,0.000000,238,2,0.002289,0.006356,36870369,24212118,0,0,37097,0,1,1 +1774093284.492581,0.60,4,3992.50,51.31,1679.29,2008.76,0.00,3518016390093.040039,3518016390095.046387,21,0,0.001818,0.005088,36870424,24212216,0,0,37099,0,1,1 +1774093289.491949,0.75,4,3992.50,51.31,1679.29,2008.75,0.00,0.000000,0.000000,21,0,0.002297,0.006375,36870495,24212340,0,0,37102,0,1,1 +1774093294.496240,0.60,4,3992.50,51.31,1679.29,2008.75,0.00,0.048006,0.000000,70,0,0.002312,0.006382,36870567,24212464,0,0,37104,0,1,1 +1774093299.496235,0.55,4,3992.50,51.31,1679.30,2008.74,0.00,70154.049438,76135.397414,6048805,1341827,0.002339,0.006428,36870641,24212591,0,0,37107,0,1,1 +1774093304.492060,0.75,4,3992.50,51.31,1679.30,2008.73,0.00,3521377607351.603516,3521377601363.302246,238,2,0.002208,0.006396,36870709,24212711,0,0,37110,0,1,1 +1774093309.492253,0.90,4,3992.50,51.31,1681.48,2008.73,0.00,3518301300420.307617,3518301300422.266113,70,0,0.003635,0.007681,36870795,24212855,0,0,37112,0,1,1 +1774093314.496163,0.65,4,3992.50,51.31,1681.21,2008.93,0.00,0.126854,0.000000,199,0,0.002287,0.006361,36870865,24212978,0,0,37115,0,1,1 +1774093319.492023,0.70,4,3992.50,51.12,1688.63,2001.50,0.00,70216.106426,76198.565778,6049579,1342159,0.002266,0.006349,36870933,24213099,0,0,37117,0,1,1 +1774093324.496134,0.65,4,3992.50,51.12,1688.62,2001.54,0.00,3515546111803.827148,3515546105829.898926,237,247,0.001830,0.005085,36870989,24213197,0,0,37119,0,1,1 +1774093329.492855,32.38,4,3992.50,57.21,1458.70,2239.97,0.00,70202.640798,76185.424194,6049579,1342203,64.339023,0.034087,36877818,24215245,0,0,37122,0,1,1 +1774093334.491920,29.71,4,3992.50,57.06,1468.17,2233.93,0.00,3519095333426.106445,3519095327446.127930,237,247,118.201793,0.063469,36890239,24219952,0,0,37124,0,1,1 +1774093339.496142,28.30,4,3992.50,57.12,1465.78,2236.53,0.00,0.468062,3515469056875.916504,238,2,120.075036,0.046581,36902744,24223314,0,0,37127,0,1,1 +1774093344.495376,27.94,4,3992.50,57.18,1463.50,2238.82,0.00,3518975895822.886230,3518975895824.718262,199,0,118.788431,0.035555,36915010,24226060,0,0,37130,0,1,1 +1774093349.496486,28.07,4,3992.50,57.27,1459.68,2242.41,0.00,1.363076,0.028314,237,247,119.551013,0.057995,36927351,24230314,0,0,37132,0,1,1 +1774093354.491905,27.79,4,3992.50,57.23,1461.19,2240.78,0.00,3521664311329.331543,3521664311330.843262,21,0,119.485154,0.054699,36939644,24234221,0,0,37135,0,1,1 +1774093359.492565,27.85,4,3992.50,57.02,1469.74,2232.27,0.00,0.000000,0.000000,21,0,118.961575,0.052709,36951990,24238106,0,0,37137,0,1,1 +1774093364.492027,28.23,4,3992.50,57.04,1468.66,2233.23,0.00,0.048052,0.000000,70,0,120.198120,0.076658,36964512,24243784,0,0,37139,0,1,1 +1774093369.495430,19.25,4,3992.50,57.09,1466.77,2235.26,0.00,1.957457,0.000195,238,2,118.292712,0.054550,36976670,24247689,0,0,37142,0,1,1 +1774093374.493962,1.45,4,3992.50,52.15,1660.36,2041.74,0.00,70172.776033,76158.415659,6048822,1342272,7.620183,0.010313,36977611,24248100,0,0,37144,0,1,1 +1774093379.495779,17.70,4,3992.50,52.35,1652.54,2049.54,0.00,4.226491,0.352118,6049609,1343053,20.124590,0.097711,36984170,24253060,0,0,37147,0,1,1 +1774093384.496436,13.32,4,3992.50,51.51,1685.49,2016.56,0.00,3517974933108.188477,3517974927128.967773,238,2,20.114006,0.085460,36990577,24257808,0,0,37150,0,1,1 +1774093389.496460,1.51,4,3992.50,51.46,1687.16,2014.88,0.00,70156.059098,76136.558943,6049609,1343791,0.011200,0.010087,36990815,24258036,0,0,37152,0,1,1 +1774093394.494759,1.25,4,3992.50,50.69,1717.41,1984.66,0.00,3519634616028.613770,3519634616032.712891,6048835,1343577,0.004899,0.008965,36990922,24258197,0,0,37155,0,1,1 +1774093399.495886,21.35,4,3992.50,51.12,1695.10,2001.61,0.00,3517644423487.666504,3517644417506.219727,199,0,0.041881,89.314064,36993863,24267728,0,0,37157,0,1,1 +1774093404.493061,29.05,4,3992.50,51.39,1676.45,2012.09,0.00,0.000000,0.000000,199,0,0.031676,115.831784,36996128,24279802,0,0,37159,0,1,1 +1774093409.491985,0.85,4,3992.50,51.07,1689.20,1999.36,0.00,70173.346641,76337.111173,6049612,1345248,0.003641,0.006941,36996227,24279942,0,0,37162,0,1,1 +1774093414.493410,15.20,4,3992.50,51.31,1682.46,2008.71,0.00,3517434273191.883789,3517434267029.868164,237,247,40.053610,0.028885,37000626,24281700,0,0,37164,0,1,1 +1774093419.493814,1.00,4,3992.50,51.08,1691.28,1999.90,0.00,3518153334718.303711,3518153334719.639160,199,0,0.005987,0.007149,37000764,24281855,0,0,37167,0,1,1 +1774093424.494737,0.90,4,3992.50,50.96,1695.88,1995.29,0.00,1.363127,0.028315,237,247,0.004591,0.009364,37000880,24282020,0,0,37170,0,1,1 +1774093429.491988,0.95,4,3992.50,51.36,1680.18,2010.99,0.00,3520372540726.846680,3520372540728.182617,199,0,0.003880,0.007126,37000980,24282160,0,0,37172,0,1,1 +1774093434.496313,0.60,4,3992.50,51.38,1679.51,2011.63,0.00,3515396163404.009277,0.000000,21,0,0.003862,0.007126,37001079,24282301,0,0,37175,0,1,1 +1774093439.491989,0.65,4,3992.50,51.31,1682.34,2008.80,0.00,0.175151,0.000000,199,0,0.003881,0.007760,37001179,24282444,0,0,37177,0,1,1 +1774093444.495893,0.60,4,3992.50,51.34,1681.10,2010.07,0.00,70120.099589,76283.631455,6049731,1345813,0.003438,0.005902,37001267,24282564,0,0,37179,0,1,1 +1774093449.492010,0.70,4,3992.50,51.10,1690.50,2000.68,0.00,3521172116895.429688,3521172110722.289551,199,0,0.003881,0.007138,37001367,24282705,0,0,37182,0,1,1 +1774093454.494714,1.25,4,3992.50,51.12,1689.77,2001.40,0.00,1.362642,0.028305,237,247,0.004638,0.008115,37001476,24282853,0,0,37184,0,1,1 +1774093459.496626,1.05,4,3992.50,51.23,1685.06,2005.81,0.00,0.000000,0.000000,237,247,0.003889,0.007130,37001577,24282994,0,0,37187,0,1,1 +1774093464.494260,0.60,4,3992.50,51.23,1685.05,2005.76,0.00,70206.713807,76379.491784,6049732,1345967,0.003422,0.005880,37001663,24283112,0,0,37190,0,1,1 +1774093469.494025,1.05,4,3992.50,51.23,1685.07,2005.75,0.00,3518602623515.767090,3518602617346.954590,199,0,0.003961,0.007171,37001769,24283256,0,0,37192,0,1,1 +1774093474.495553,0.65,4,3992.50,51.23,1684.85,2005.96,0.00,1.362962,0.028312,237,247,0.003877,0.007130,37001869,24283397,0,0,37195,0,1,1 +1774093479.491984,0.60,4,3992.50,51.27,1683.50,2007.31,0.00,70219.504215,76397.949135,6048958,1345826,0.003881,0.007128,37001969,24283537,0,0,37197,0,1,1 +1774093484.496439,10.16,4,3992.50,51.53,1671.73,2017.65,0.00,3515304956999.684082,3515304950832.653809,21,0,0.022410,36.428965,37003371,24287643,0,0,37199,0,1,1 +1774093489.496804,2.56,4,3992.50,51.38,1680.23,2011.61,0.00,2.006690,0.000195,238,2,0.004893,3.614067,37003567,24288209,0,0,37202,0,1,1 +1774093494.493820,0.60,4,3992.50,51.09,1689.07,2000.41,0.00,3520538027987.925781,3520538027989.933594,21,0,0.002278,0.006360,37003636,24288331,0,0,37204,0,1,1 +1774093499.496646,0.65,4,3992.50,51.09,1689.07,2000.40,0.00,0.048020,0.000000,70,0,0.002270,0.006370,37003705,24288455,0,0,37207,0,1,1 +1774093504.491923,0.90,4,3992.50,51.09,1689.23,2000.25,0.00,0.000000,0.000000,70,0,0.001833,0.005748,37003761,24288558,0,0,37210,0,1,1 +1774093509.491925,0.75,4,3992.50,50.90,1696.64,1992.83,0.00,70170.882502,76379.755864,6048961,1346275,0.002238,0.006356,37003827,24288680,0,0,37212,0,1,1 +1774093514.494064,0.90,4,3992.50,50.93,1695.45,1994.03,0.00,3516932232860.545898,3516932226652.864746,237,247,0.002288,0.006363,37003897,24288803,0,0,37215,0,1,1 +1774093519.491994,0.95,4,3992.50,50.97,1704.86,1995.75,0.00,3519894877604.080566,3519894877605.591309,21,0,0.002315,0.006390,37003969,24288927,0,0,37217,0,1,1 +1774093524.495847,0.90,4,3992.50,50.98,1704.55,1995.95,0.00,0.048010,0.000000,70,0,0.002350,0.006388,37004044,24289051,0,0,37219,0,1,1 +1774093529.496307,0.75,4,3992.50,50.96,1705.48,1995.02,0.00,0.000000,0.000000,70,0,0.001914,0.005225,37004107,24289159,0,0,37222,0,1,1 +1774093534.491923,0.75,4,3992.50,50.99,1704.26,1996.23,0.00,1.491640,0.028345,237,247,0.002446,0.006488,37004187,24289291,0,0,37224,0,1,1 +1774093539.491907,0.65,4,3992.50,50.99,1704.26,1996.23,0.00,0.000000,0.000000,237,247,0.002289,0.006366,37004257,24289414,0,0,37227,0,1,1 +1774093544.492039,0.65,4,3992.50,50.99,1704.27,1996.23,0.00,3518344119125.795410,3518344119127.130371,199,0,0.002276,0.006366,37004326,24289537,0,0,37230,0,1,1 +1774093549.495986,0.75,4,3992.50,51.03,1696.92,1997.93,0.00,3515661992416.082520,0.000000,21,0,0.001830,0.005085,37004382,24289635,0,0,37232,0,1,1 +1774093554.492762,34.28,4,3992.50,57.14,1466.71,2237.01,0.00,0.048078,0.000000,70,0,61.732484,0.035011,37010907,24291779,0,0,37234,0,1,1 +1774093559.492511,29.21,4,3992.50,57.40,1459.06,2247.46,0.00,70178.540987,76387.912560,6049735,1346807,118.168829,0.041817,37022902,24294794,0,0,37237,0,1,1 +1774093564.496450,28.10,4,3992.50,57.15,1469.45,2237.41,0.00,3515667085405.950684,0.032299,6048961,1346584,120.072058,0.040918,37035138,24297730,0,0,37239,0,1,1 +1774093569.494728,28.86,4,3992.50,57.25,1465.45,2241.38,0.00,4.110693,0.061252,6049735,1346851,118.204994,0.042572,37047179,24300669,0,0,37242,0,1,1 +1774093574.496780,27.71,4,3992.50,57.35,1461.39,2245.45,0.00,3516993955011.610352,3516993948803.542480,237,247,120.115823,0.017320,37059533,24301960,0,0,37244,0,1,1 +1774093579.495090,28.01,4,3992.50,57.19,1467.62,2239.26,0.00,0.468615,3519626746285.643555,238,2,118.205885,0.034326,37071717,24304515,0,0,37247,0,1,1 +1774093584.492019,28.18,4,3992.50,56.89,1463.86,2227.41,0.00,3520599739383.469238,3520599739385.477051,21,0,120.241835,0.023991,37084130,24306161,0,0,37250,0,1,1 +1774093589.495421,27.86,4,3992.50,57.22,1451.07,2240.10,0.00,0.000000,0.000000,21,0,118.883253,0.032457,37096288,24308454,0,0,37252,0,1,1 +1774093594.492371,19.70,4,3992.50,57.04,1458.10,2233.20,0.00,0.000000,0.000000,21,0,119.437126,0.019061,37108458,24309804,0,0,37254,0,1,1 +1774093599.492773,1.75,4,3992.50,51.80,1663.06,2028.24,0.00,0.174986,0.000000,199,0,10.418415,0.008843,37109633,24310078,0,0,37257,0,1,1 +1774093604.496801,10.74,4,3992.50,51.43,1677.88,2013.43,0.00,3515605429490.641602,0.000000,70,0,8.062061,0.046762,37112530,24312167,0,0,37259,0,1,1 +1774093609.491935,21.49,4,3992.50,51.60,1672.06,2020.20,0.00,70243.458198,76459.759275,6049745,1348135,32.219912,0.137909,37122724,24319651,0,0,37262,0,1,1 +1774093614.496783,1.20,4,3992.50,51.17,1688.75,2003.27,0.00,3515028992608.034668,3515028986403.846680,21,0,0.004453,0.008486,37122839,24319813,0,0,37264,0,1,1 +1774093619.496286,1.50,4,3992.50,50.63,1709.57,1982.45,0.00,70182.121164,76393.087247,6049745,1348175,0.003546,0.005891,37122926,24319932,0,0,37267,0,1,1 +1774093624.495932,16.06,4,3992.50,51.34,1678.64,2009.94,0.00,3518686700156.324707,3518686693944.025391,237,247,0.030585,63.102702,37125052,24326876,0,0,37270,0,1,1 +1774093629.496057,29.10,4,3992.50,51.38,1668.79,2011.52,0.00,0.468445,3518348742818.712891,238,2,0.025655,119.572486,37126780,24339506,0,0,37272,0,1,1 +1774093634.494617,6.78,4,3992.50,51.26,1672.53,2007.09,0.00,3519450798745.098633,3519450798747.106445,21,0,0.008213,22.447503,37127155,24342018,0,0,37275,0,1,1 +1774093639.496615,1.25,4,3992.50,50.99,1684.51,1996.28,0.00,2.006035,0.000195,238,2,0.005660,0.006562,37127266,24342150,0,0,37277,0,1,1 +1774093644.494107,14.47,4,3992.50,51.15,1681.33,2002.81,0.00,3520202729950.339355,3520202729952.298828,70,0,40.084943,0.026670,37131694,24343698,0,0,37279,0,1,1 +1774093649.496115,0.85,4,3992.50,51.20,1679.41,2004.73,0.00,70163.554108,76560.586601,6049876,1350151,0.004095,0.008083,37131793,24343838,0,0,37282,0,1,1 +1774093654.492204,0.60,4,3992.50,51.20,1679.43,2004.71,0.00,3521191462541.625488,3521191456137.062988,21,0,0.003894,0.007128,37131894,24343978,0,0,37284,0,1,1 +1774093659.493219,0.90,4,3992.50,51.57,1665.18,2018.96,0.00,1.538066,0.028315,237,247,0.003865,0.007131,37131993,24344119,0,0,37287,0,1,1 +1774093664.496274,0.80,4,3992.50,51.56,1665.22,2018.88,0.00,0.468171,3516289395324.041016,238,2,0.003863,0.007128,37132092,24344260,0,0,37290,0,1,1 +1774093669.495908,0.85,4,3992.50,51.58,1664.83,2019.60,0.00,70190.793690,76597.235523,6049102,1350096,0.003446,0.005887,37132180,24344378,0,0,37292,0,1,1 +1774093674.495624,0.75,4,3992.50,51.52,1666.99,2017.27,0.00,3518637090878.039551,3518637084473.708984,21,0,0.006039,0.008141,37132323,24344545,0,0,37295,0,1,1 +1774093679.496414,0.65,4,3992.50,51.46,1669.52,2014.74,0.00,0.174972,0.000000,199,0,0.003979,0.007217,37132430,24344693,0,0,37297,0,1,1 +1774093684.496143,2.01,4,3992.50,51.30,1675.72,2008.54,0.00,3518627694719.357422,0.000000,21,0,0.003878,0.007123,37132530,24344833,0,0,37299,0,1,1 +1774093689.492085,0.95,4,3992.50,51.28,1676.72,2007.54,0.00,0.000000,0.000000,21,0,0.003640,0.006491,37132622,24344961,0,0,37302,0,1,1 +1774093694.491963,0.55,4,3992.50,51.27,1676.88,2007.38,0.00,0.048048,0.000000,70,0,0.003749,0.006542,37132722,24345093,0,0,37304,0,1,1 +1774093699.491974,0.85,4,3992.50,51.36,1673.06,2011.05,0.00,70187.463372,76591.804298,6049102,1350408,0.003865,0.007776,37132821,24345238,0,0,37307,0,1,1 +1774093704.496035,0.70,4,3992.50,51.37,1672.80,2011.20,0.00,3515581816894.973145,3515581810494.354492,237,247,0.003862,0.007139,37132920,24345380,0,0,37310,0,1,1 +1774093709.497375,3.26,4,3992.50,51.33,1673.87,2009.78,0.00,3517494130012.970215,3517494130014.479980,21,0,0.015203,10.222373,37133804,24346809,0,0,37312,0,1,1 +1774093714.496147,8.58,4,3992.50,51.06,1682.50,1999.00,0.00,0.175043,0.000000,199,0,0.019201,29.857097,37135058,24350003,0,0,37315,0,1,1 +1774093719.496021,0.65,4,3992.50,50.97,1685.88,1995.61,0.00,1.363413,0.028321,237,247,0.002347,0.006426,37135133,24350130,0,0,37317,0,1,1 +1774093724.491921,0.60,4,3992.50,50.80,1692.54,1988.96,0.00,70243.738532,76691.107499,6049104,1350845,0.002291,0.006361,37135203,24350252,0,0,37319,0,1,1 +1774093729.496574,0.90,4,3992.50,50.93,1687.66,1993.97,0.00,3515165521417.437012,3515165514982.679688,199,0,0.002287,0.006335,37135273,24350373,0,0,37322,0,1,1 +1774093734.492429,0.65,4,3992.50,50.98,1685.52,1995.87,0.00,3521356846835.943848,0.000000,21,0,0.001820,0.005118,37135328,24350473,0,0,37324,0,1,1 +1774093739.496080,0.65,4,3992.50,50.79,1692.88,1988.51,0.00,0.000000,0.000000,21,0,0.002287,0.006361,37135398,24350596,0,0,37327,0,1,1 +1774093744.495046,0.60,4,3992.50,50.79,1692.70,1988.69,0.00,0.000000,0.000000,21,0,0.002314,0.006398,37135470,24350721,0,0,37330,0,1,1 +1774093749.496455,0.70,4,3992.50,50.79,1692.70,1988.69,0.00,0.174951,0.000000,199,0,0.002326,0.006416,37135543,24350847,0,0,37332,0,1,1 +1774093754.491928,0.60,4,3992.50,50.79,1692.71,1988.68,0.00,1.833496,0.000195,238,2,0.001883,0.005197,37135603,24350952,0,0,37335,0,1,1 +1774093759.496536,1.00,4,3992.50,51.18,1677.50,2003.93,0.00,70121.040703,76561.844736,6049104,1350976,0.002450,0.006484,37135684,24351085,0,0,37337,0,1,1 +1774093764.494391,0.50,4,3992.50,50.96,1686.36,1995.02,0.00,3519947459449.240234,3519947453000.230469,237,247,0.002290,0.007003,37135754,24351211,0,0,37339,0,1,1 +1774093769.495014,0.75,4,3992.50,50.96,1686.11,1995.26,0.00,3517998674164.181152,3517998674165.643066,70,0,0.002276,0.006365,37135823,24351334,0,0,37342,0,1,1 +1774093774.492290,0.70,4,3992.50,50.96,1686.12,1995.26,0.00,1.959857,0.000195,238,2,0.001819,0.005092,37135878,24351432,0,0,37344,0,1,1 +1774093779.493532,20.96,4,3992.50,57.10,1451.98,2235.54,0.00,3517564176187.689941,0.028118,237,247,19.829465,0.022688,37138151,24352657,0,0,37347,0,1,1 +1774093784.496403,32.12,4,3992.50,56.95,1463.52,2229.60,0.00,0.000000,0.000000,237,247,119.697141,0.058584,37150361,24356981,0,0,37350,0,1,1 +1774093789.496713,28.12,4,3992.50,57.08,1464.91,2234.87,0.00,70181.775840,76627.868769,6049104,1351178,118.557424,0.050949,37162466,24360668,0,0,37352,0,1,1 +1774093794.492665,28.02,4,3992.50,56.89,1472.20,2227.55,0.00,3521288119340.281250,3521288112888.067383,238,2,119.060356,0.055487,37174606,24364812,0,0,37355,0,1,1 +1774093799.492252,28.36,4,3992.50,56.90,1472.18,2227.59,0.00,3518727461672.099609,3518727461674.058594,70,0,119.373424,0.044134,37186778,24368157,0,0,37357,0,1,1 +1774093804.496264,28.26,4,3992.50,56.90,1472.13,2227.73,0.00,0.000000,0.000000,70,0,119.869235,0.054548,37198995,24372281,0,0,37359,0,1,1 +1774093809.496819,27.98,4,3992.50,57.07,1465.50,2234.24,0.00,1.490167,0.028317,237,247,118.348145,0.050622,37211014,24376198,0,0,37362,0,1,1 +1774093814.495979,28.19,4,3992.50,56.89,1472.23,2227.47,0.00,0.000000,0.000000,237,247,120.188184,0.039641,37223414,24379057,0,0,37364,0,1,1 +1774093819.496611,28.08,4,3992.50,57.01,1467.62,2232.03,0.00,70181.381418,76623.236393,6049888,1351577,118.146667,0.056626,37235460,24383451,0,0,37367,0,1,1 +1774093824.496716,2.01,4,3992.50,50.87,1706.46,1991.66,0.00,3518363606823.529785,0.090037,6049124,1351354,52.272085,0.027555,37240813,24385467,0,0,37370,0,1,1 +1774093829.493439,8.70,4,3992.50,51.07,1698.63,1999.49,0.00,3520744160528.091309,3520744154076.574219,238,2,6.054849,0.038999,37242911,24387064,0,0,37372,0,1,1 +1774093834.496759,23.01,4,3992.50,51.57,1678.84,2019.27,0.00,70143.372916,76582.672928,6049906,1352571,32.239109,0.147245,37253531,24395040,0,0,37375,0,1,1 +1774093839.491947,1.66,4,3992.50,51.14,1695.91,2002.19,0.00,3521826270295.878418,3521826263847.930664,199,0,1.959068,0.014715,37254238,24395619,0,0,37377,0,1,1 +1774093844.491978,0.90,4,3992.50,50.98,1702.05,1996.06,0.00,0.000000,0.000000,199,0,0.003878,0.007122,37254338,24395759,0,0,37379,0,1,1 +1774093849.494823,1.05,4,3992.50,51.41,1685.62,2012.77,0.00,70151.863149,76590.690070,6049906,1353047,0.003876,0.007128,37254438,24395900,0,0,37382,0,1,1 +1774093854.496406,0.95,4,3992.50,51.19,1693.98,2004.11,0.00,3517323282602.673828,3517323276162.350098,70,0,0.003864,0.007120,37254537,24396040,0,0,37384,0,1,1 +1774093859.492006,0.65,4,3992.50,51.15,1695.29,2002.81,0.00,0.127065,0.000000,199,0,0.002965,0.004602,37254609,24396133,0,0,37387,0,1,1 +1774093864.492038,0.60,4,3992.50,51.03,1700.24,1997.87,0.00,1.831824,0.000195,238,2,0.003878,0.007132,37254709,24396274,0,0,37390,0,1,1 +1774093869.496001,0.75,4,3992.50,51.05,1699.45,1998.66,0.00,70134.351443,76573.839822,6049907,1353201,0.003900,0.007160,37254811,24396417,0,0,37392,0,1,1 +1774093874.496483,0.60,4,3992.50,51.07,1698.48,1999.63,0.00,3518098079878.108398,3518098073435.967285,199,0,0.003978,0.007246,37254919,24396565,0,0,37394,0,1,1 +1774093879.496299,0.85,4,3992.50,51.36,1691.86,2010.73,0.00,1.363429,0.028321,237,247,0.003420,0.005865,37255005,24396682,0,0,37397,0,1,1 +1774093884.496250,0.70,4,3992.50,51.17,1694.71,2003.42,0.00,3518471699756.215332,3518471699757.550293,199,0,0.003948,0.007171,37255110,24396826,0,0,37399,0,1,1 +1774093889.495962,0.55,4,3992.50,51.13,1696.41,2001.72,0.00,0.000000,0.000000,199,0,0.003272,0.006895,37255199,24396960,0,0,37402,0,1,1 +1774093894.492054,0.65,4,3992.50,51.13,1696.46,2001.67,0.00,0.000000,0.000000,199,0,0.003868,0.007128,37255298,24397100,0,0,37404,0,1,1 +1774093899.496023,0.65,4,3992.50,50.96,1702.88,1995.26,0.00,1.362298,0.028298,237,247,0.003418,0.006343,37255384,24397220,0,0,37407,0,1,1 +1774093904.496181,0.80,4,3992.50,50.96,1702.89,1995.24,0.00,0.468442,3518326078331.996094,238,2,0.004178,0.007860,37255490,24397374,0,0,37410,0,1,1 +1774093909.496411,0.85,4,3992.50,51.26,1692.39,2007.02,0.00,3518274984739.921387,3518274984741.928711,21,0,0.004185,0.007677,37255597,24397525,0,0,37412,0,1,1 +1774093914.496185,1.05,4,3992.50,51.17,1696.11,2003.34,0.00,70191.023772,76638.472146,6049133,1353439,0.004787,0.007792,37255698,24397668,0,0,37414,0,1,1 +1774093919.495962,0.60,4,3992.50,51.19,1695.26,2004.18,0.00,3518593968060.263672,3518593961610.812500,238,2,0.003878,0.007120,37255798,24397808,0,0,37417,0,1,1 +1774093924.496460,11.81,4,3992.50,51.53,1679.52,2017.57,0.00,70178.861607,76649.854226,6049135,1353633,0.027804,47.672399,37257638,24403115,0,0,37419,0,1,1 +1774093929.494392,28.93,4,3992.50,51.03,1690.73,1998.07,0.00,3519893148129.905762,3519893141655.590820,238,2,0.039162,119.423103,37260447,24415584,0,0,37422,0,1,1 +1774093934.496703,10.21,4,3992.50,50.74,1699.51,1986.52,0.00,3516811357449.477051,3516811357451.434570,70,0,0.023711,38.043776,37262100,24419679,0,0,37424,0,1,1 +1774093939.495891,1.20,4,3992.50,50.73,1701.15,1986.14,0.00,3519009090088.400391,0.000000,21,0,0.003608,0.004534,37262166,24419769,0,0,37427,0,1,1 +1774093944.496340,14.82,4,3992.50,53.38,1598.89,2090.10,0.00,1.538241,0.028318,237,247,40.061476,0.024782,37266655,24421184,0,0,37430,0,1,1 +1774093949.492137,0.80,4,3992.50,51.96,1654.54,2034.45,0.00,3521397724010.476074,3521397724011.939453,70,0,0.002837,0.007569,37266737,24421312,0,0,37432,0,1,1 +1774093954.496254,11.33,4,3992.50,51.53,1670.14,2017.56,0.00,3515542341869.715332,0.000000,21,0,0.021804,40.032158,37268171,24425715,0,0,37435,0,1,1 +1774093959.496486,0.80,4,3992.50,51.26,1680.95,2006.75,0.00,2.006743,0.000195,238,2,0.003689,0.009441,37268277,24425893,0,0,37437,0,1,1 +1774093964.495934,0.55,4,3992.50,51.06,1688.60,1999.11,0.00,3518825410626.849121,3518825410628.856445,21,0,0.001827,0.005729,37268333,24425995,0,0,37439,0,1,1 +1774093969.495963,0.80,4,3992.50,51.26,1680.81,2006.96,0.00,0.048047,0.000000,70,0,0.002314,0.006397,37268405,24426120,0,0,37442,0,1,1 +1774093974.495998,0.80,4,3992.50,51.17,1684.03,2003.30,0.00,1.958775,0.000195,238,2,0.004462,0.007365,37268519,24426268,0,0,37444,0,1,1 +1774093979.496224,0.80,4,3992.50,51.17,1684.04,2003.30,0.00,70199.308633,76872.671053,6049265,1355487,0.002301,0.006366,37268590,24426391,0,0,37447,0,1,1 +1774093984.496667,0.60,4,3992.50,51.19,1683.30,2004.03,0.00,3518125307531.214355,3518125300860.149414,21,0,0.001831,0.005098,37268646,24426490,0,0,37450,0,1,1 +1774093989.496816,0.65,4,3992.50,51.19,1683.31,2004.02,0.00,0.000000,0.000000,21,0,0.002339,0.006418,37268720,24426616,0,0,37452,0,1,1 +1774093994.496420,0.65,4,3992.50,51.19,1683.32,2004.02,0.00,1.538501,0.028323,237,247,0.002314,0.006398,37268792,24426741,0,0,37455,0,1,1 +1774093999.493960,0.85,4,3992.50,51.25,1680.81,2006.43,0.00,70241.594998,76918.624756,6050039,1355795,0.002346,0.006415,37268866,24426867,0,0,37457,0,1,1 +1774094004.495684,0.55,4,3992.50,51.27,1680.09,2007.16,0.00,3517224463695.023438,3517224457023.081543,238,2,0.001942,0.005198,37268929,24426974,0,0,37460,0,1,1 +1774094009.496840,0.65,4,3992.50,51.27,1679.86,2007.39,0.00,70190.356422,76863.139321,6050039,1355870,0.002296,0.006363,37269000,24427097,0,0,37462,0,1,1 +1774094014.495715,0.70,4,3992.50,51.27,1679.87,2007.38,0.00,3519229346762.271484,3519229340088.275391,199,0,0.002289,0.006357,37269070,24427219,0,0,37464,0,1,1 +1774094019.492037,27.52,4,3992.50,57.66,1439.45,2257.66,0.00,1.833184,0.000195,238,2,57.729388,0.031944,37275163,24429173,0,0,37467,0,1,1 +1774094024.494609,30.15,4,3992.50,57.63,1443.47,2256.17,0.00,3516628774798.708008,0.028111,237,247,118.105574,0.027829,37287347,24431066,0,0,37470,0,1,1 +1774094029.491933,27.70,4,3992.50,57.79,1437.07,2262.77,0.00,3520320710713.808105,3520320710715.270996,70,0,119.635339,0.034762,37299744,24433496,0,0,37472,0,1,1 +1774094034.493430,28.27,4,3992.50,57.59,1445.14,2254.78,0.00,0.126915,0.000000,199,0,118.742618,0.062124,37312077,24437952,0,0,37475,0,1,1 +1774094039.497076,27.87,4,3992.50,57.66,1442.52,2257.46,0.00,3515873437488.281738,0.000000,21,0,120.092293,0.063747,37324580,24442867,0,0,37477,0,1,1 +1774094044.492643,28.27,4,3992.50,57.49,1448.94,2251.01,0.00,0.000000,0.000000,21,0,118.279337,0.054770,37336772,24446967,0,0,37479,0,1,1 +1774094049.492783,28.31,4,3992.50,57.75,1438.98,2260.91,0.00,0.000000,0.000000,21,0,120.176412,0.056366,37349255,24451092,0,0,37482,0,1,1 +1774094054.496386,28.33,4,3992.50,57.70,1440.76,2259.10,0.00,0.048012,0.000000,70,0,119.296507,0.078441,37361616,24456915,0,0,37484,0,1,1 +1774094059.491928,20.28,4,3992.50,57.48,1449.46,2250.54,0.00,0.127066,0.000000,199,0,119.083005,0.050822,37374026,24460669,0,0,37487,0,1,1 +1774094064.496826,1.10,4,3992.50,51.58,1682.76,2019.64,0.00,70135.698336,76806.229824,6049277,1355969,14.409224,0.006189,37375583,24460975,0,0,37490,0,1,1 +1774094069.491930,13.39,4,3992.50,51.81,1673.93,2028.47,0.00,3521885878510.860352,3521885871825.913086,237,247,14.113022,0.073059,37380426,24464673,0,0,37492,0,1,1 +1774094074.496555,14.82,4,3992.50,53.23,1618.32,2084.04,0.00,70142.273910,76811.035193,6050052,1357149,20.106287,0.090423,37387011,24469587,0,0,37495,0,1,1 +1774094079.496017,4.97,4,3992.50,52.99,1627.71,2074.66,0.00,3518815538726.039551,3518815532051.901855,21,0,6.044412,0.035365,37389099,24471239,0,0,37497,0,1,1 +1774094084.491974,0.90,4,3992.50,52.36,1652.51,2049.87,0.00,1.539624,0.028343,237,247,0.004140,0.007283,37389202,24471381,0,0,37499,0,1,1 +1774094089.496504,0.95,4,3992.50,51.57,1680.98,2018.94,0.00,0.468033,3515252286962.766602,238,2,0.003862,0.007126,37389301,24471522,0,0,37502,0,1,1 +1774094094.495997,0.75,4,3992.50,51.59,1679.86,2019.96,0.00,3518793881570.375488,3518793881572.382812,21,0,0.003878,0.007606,37389401,24471665,0,0,37504,0,1,1 +1774094099.491971,0.65,4,3992.50,51.59,1679.88,2019.94,0.00,0.000000,0.000000,21,0,0.003869,0.007299,37389500,24471807,0,0,37507,0,1,1 +1774094104.492510,0.65,4,3992.50,51.40,1687.49,2012.33,0.00,0.174981,0.000000,199,0,0.003428,0.005872,37389587,24471925,0,0,37510,0,1,1 +1774094109.492979,0.75,4,3992.50,51.55,1681.30,2018.46,0.00,3518107417272.000977,0.000000,21,0,0.003146,0.006832,37389677,24472062,0,0,37512,0,1,1 +1774094114.496234,0.55,4,3992.50,51.58,1680.16,2019.66,0.00,70163.058384,76833.167060,6050055,1357990,0.003951,0.007180,37389783,24472206,0,0,37514,0,1,1 +1774094119.496744,0.90,4,3992.50,51.92,1667.71,2032.69,0.00,3518077845123.966309,3518077838450.148926,70,0,0.003878,0.007132,37389883,24472347,0,0,37517,0,1,1 +1774094124.496413,0.65,4,3992.50,51.92,1667.38,2032.64,0.00,3518670520665.631348,0.000000,21,0,0.003408,0.005856,37389968,24472463,0,0,37519,0,1,1 +1774094129.492012,0.80,4,3992.50,51.72,1675.03,2024.98,0.00,0.000000,0.000000,21,0,0.004614,0.008101,37390075,24472609,0,0,37522,0,1,1 +1774094134.492070,0.55,4,3992.50,51.17,1696.47,2003.54,0.00,0.174998,0.000000,199,0,0.003420,0.005855,37390161,24472725,0,0,37524,0,1,1 +1774094139.491921,0.70,4,3992.50,51.18,1696.02,2004.00,0.00,3518541784167.148438,0.000000,70,0,0.003878,0.007133,37390261,24472866,0,0,37527,0,1,1 +1774094144.495881,17.48,4,3992.50,51.74,1670.26,2025.76,0.00,3515653120286.229004,0.000000,21,0,0.043598,71.656011,37393294,24480656,0,0,37530,0,1,1 +1774094149.495438,28.92,4,3992.50,52.29,1640.99,2047.11,0.00,70210.846657,77050.385764,6049281,1359007,0.041973,120.182870,37396388,24493174,0,0,37532,0,1,1 +1774094154.492012,5.07,4,3992.50,52.11,1647.49,2040.35,0.00,3520849703058.024414,3520849696214.354492,70,0,0.006872,13.236675,37396664,24494748,0,0,37535,0,1,1 +1774094159.495918,14.96,4,3992.50,56.54,1476.12,2213.71,0.00,0.126854,0.000000,199,0,36.029428,0.028755,37400577,24496641,0,0,37537,0,1,1 +1774094164.496239,1.00,4,3992.50,51.79,1662.05,2027.78,0.00,3518211570494.878418,0.000000,21,0,4.012653,0.011242,37401163,24496969,0,0,37539,0,1,1 +1774094169.496269,0.75,4,3992.50,51.68,1666.40,2023.42,0.00,0.000000,0.000000,21,0,0.004579,0.009366,37401278,24497134,0,0,37542,0,1,1 +1774094174.494316,5.97,4,3992.50,51.91,1657.16,2032.32,0.00,2.007620,0.000195,238,2,0.020060,20.446109,37402540,24499557,0,0,37544,0,1,1 +1774094179.492366,6.82,4,3992.50,52.08,1654.30,2039.22,0.00,3519810106589.670898,3519810106591.503418,199,0,0.010996,19.643127,37403219,24501705,0,0,37547,0,1,1 +1774094184.496564,1.10,4,3992.50,51.79,1665.71,2027.84,0.00,3515485669690.397461,0.000000,21,0,0.002287,0.006361,37403289,24501828,0,0,37550,0,1,1 +1774094189.492136,0.60,4,3992.50,51.70,1669.24,2024.30,0.00,70283.498127,77191.435542,6049386,1359973,0.001858,0.005124,37403347,24501928,0,0,37552,0,1,1 +1774094194.491919,0.65,4,3992.50,51.72,1668.75,2024.79,0.00,3518589733565.233398,3518589726663.114746,21,0,0.002289,0.006366,37403417,24502051,0,0,37555,0,1,1 +1774094199.491917,0.65,4,3992.50,51.72,1668.45,2025.10,0.00,0.000000,0.000000,21,0,0.002297,0.006364,37403488,24502174,0,0,37557,0,1,1 +1774094204.496582,0.65,4,3992.50,51.73,1668.23,2025.31,0.00,70159.903049,77051.230187,6050160,1360235,0.002599,0.006904,37403565,24502307,0,0,37559,0,1,1 +1774094209.492428,0.90,4,3992.50,51.88,1661.49,2031.34,0.00,3521362415407.703613,3521362408504.164062,70,0,0.002170,0.005689,37403630,24502419,0,0,37562,0,1,1 +1774094214.492254,0.65,4,3992.50,51.81,1664.01,2028.38,0.00,3518559832804.460938,0.000000,21,0,0.003261,0.007088,37403706,24502548,0,0,37564,0,1,1 +1774094219.496702,0.60,4,3992.50,51.81,1664.01,2028.38,0.00,70158.828989,77060.665416,6049386,1360113,0.002362,0.006453,37403782,24502677,0,0,37567,0,1,1 +1774094224.496031,0.65,4,3992.50,51.81,1664.02,2028.37,0.00,3518909412903.826172,3518909405992.915039,238,2,0.002414,0.006468,37403860,24502808,0,0,37570,0,1,1 +1774094229.496333,0.60,4,3992.50,51.79,1664.60,2027.78,0.00,3518224663782.044434,3518224663783.876465,199,0,0.002348,0.007506,37403934,24502943,0,0,37572,0,1,1 +1774094234.496200,0.60,4,3992.50,51.80,1664.33,2028.05,0.00,3518531237408.106934,0.000000,21,0,0.002161,0.005646,37403998,24503054,0,0,37574,0,1,1 +1774094239.496019,1.00,4,3992.50,51.81,1664.25,2028.29,0.00,1.538434,0.028321,237,247,0.002289,0.006366,37404068,24503177,0,0,37577,0,1,1 +1774094244.492502,33.25,4,3992.50,57.87,1436.41,2265.91,0.00,0.468787,3520913513833.509277,238,2,57.527490,0.040519,37410187,24505768,0,0,37579,0,1,1 +1774094249.496576,29.08,4,3992.50,58.09,1430.39,2274.46,0.00,3515573162127.795410,3515573162129.800781,21,0,120.071137,0.033949,37422573,24508203,0,0,37582,0,1,1 +1774094254.495992,27.65,4,3992.50,58.05,1432.31,2272.69,0.00,0.048052,0.000000,70,0,118.779151,0.023211,37434772,24509769,0,0,37584,0,1,1 +1774094259.495434,29.52,4,3992.50,57.85,1439.95,2265.03,0.00,70229.044150,77138.055603,6049386,1360308,119.580989,0.027782,37447125,24511669,0,0,37587,0,1,1 +1774094264.496640,28.16,4,3992.50,57.78,1442.87,2262.12,0.00,3517588390312.016602,3517588383405.491211,21,0,119.539034,0.034145,37459485,24513981,0,0,37590,0,1,1 +1774094269.491899,27.98,4,3992.50,57.91,1437.82,2267.14,0.00,0.048092,0.000000,70,0,118.874957,0.035651,37471542,24516611,0,0,37592,0,1,1 +1774094274.496001,28.56,4,3992.50,57.70,1448.29,2259.28,0.00,3515552919192.788086,0.000000,21,0,120.067527,0.040089,37483757,24519637,0,0,37595,0,1,1 +1774094279.496283,28.19,4,3992.50,57.78,1445.32,2262.20,0.00,70221.399451,77125.379575,6050160,1360681,118.556905,0.039768,37495881,24522577,0,0,37597,0,1,1 +1774094284.496208,21.14,4,3992.50,57.80,1444.66,2262.96,0.00,3518490419861.966309,3518490412957.492676,21,0,119.768777,0.049314,37508175,24526140,0,0,37599,0,1,1 +1774094289.496304,1.25,4,3992.50,52.61,1647.84,2059.78,0.00,1.538349,0.028320,237,247,12.622848,0.010768,37509610,24526624,0,0,37602,0,1,1 +1774094294.496174,17.32,4,3992.50,51.61,1686.72,2020.76,0.00,70221.704853,77132.098461,6049402,1361050,22.144247,0.106926,37516972,24532079,0,0,37604,0,1,1 +1774094299.496001,14.54,4,3992.50,52.37,1657.36,2050.21,0.00,3518558768201.448730,3518558761292.330078,199,0,18.121244,0.085206,37523104,24536679,0,0,37607,0,1,1 +1774094304.496375,1.96,4,3992.50,51.77,1680.59,2026.88,0.00,1.363277,0.028318,237,247,0.010047,3.214087,37523583,24537362,0,0,37610,0,1,1 +1774094309.496523,27.99,4,3992.50,52.45,1646.79,2053.37,0.00,3518332939566.664551,3518332939568.174805,21,0,0.035450,116.964435,37526146,24549438,0,0,37612,0,1,1 +1774094314.491909,21.13,4,3992.50,52.07,1655.49,2038.66,0.00,70290.397064,77385.693652,6050177,1363360,0.018094,85.002965,37527367,24558358,0,0,37615,0,1,1 +1774094319.491920,14.21,4,3992.50,57.18,1457.74,2238.79,0.00,3518429273561.041016,3518429266472.132324,199,0,28.449783,0.025292,37530661,24559784,0,0,37617,0,1,1 +1774094324.493291,0.90,4,3992.50,53.27,1610.79,2085.77,0.00,3517472897205.776855,0.000000,70,0,11.617511,0.007045,37531941,24560086,0,0,37619,0,1,1 +1774094329.496666,1.30,4,3992.50,52.59,1628.27,2059.07,0.00,70194.728792,77284.443340,6050286,1363713,0.005472,0.010029,37532056,24560254,0,0,37622,0,1,1 +1774094334.496817,0.85,4,3992.50,51.72,1662.47,2024.83,0.00,3518331018740.853516,3518331011646.615234,21,0,0.003979,0.007247,37532164,24560402,0,0,37624,0,1,1 +1774094339.493673,0.70,4,3992.50,51.72,1662.48,2024.81,0.00,70286.356942,77385.367554,6050286,1363824,0.003880,0.007137,37532264,24560543,0,0,37627,0,1,1 +1774094344.496543,0.55,4,3992.50,51.72,1662.26,2025.05,0.00,3516418312253.559082,3516418305161.078125,238,2,0.003418,0.005862,37532350,24560660,0,0,37630,0,1,1 +1774094349.496125,1.00,4,3992.50,51.55,1668.93,2018.37,0.00,3518731810479.546875,3518731810481.554199,21,0,0.003891,0.007154,37532451,24560802,0,0,37632,0,1,1 +1774094354.493964,0.70,4,3992.50,51.59,1667.34,2019.96,0.00,70272.529449,77370.330559,6050286,1363978,0.003880,0.007135,37532551,24560943,0,0,37635,0,1,1 +1774094359.495473,1.15,4,3992.50,51.54,1668.68,2017.95,0.00,0.000000,0.083861,6050286,1364037,0.003934,0.007822,37532655,24561092,0,0,37637,0,1,1 +1774094364.496260,0.60,4,3992.50,51.57,1667.71,2018.92,0.00,3517883835901.628906,0.008592,6049512,1363832,0.003438,0.005867,37532742,24561209,0,0,37639,0,1,1 +1774094369.491909,0.70,4,3992.50,51.52,1669.43,2017.20,0.00,3521501736097.032227,3521501728990.402344,237,247,0.003881,0.007139,37532842,24561350,0,0,37642,0,1,1 +1774094374.496541,0.60,4,3992.50,51.56,1667.96,2018.66,0.00,0.468023,3515180209520.571777,238,2,0.003949,0.007143,37532947,24561492,0,0,37644,0,1,1 +1774094379.495976,0.60,4,3992.50,51.56,1667.98,2018.64,0.00,70243.980664,77345.833958,6049512,1363952,0.003878,0.007133,37533047,24561633,0,0,37647,0,1,1 +1774094384.492410,0.70,4,3992.50,51.56,1668.00,2018.64,0.00,4.112211,0.036647,6050286,1364209,0.003423,0.005869,37533133,24561750,0,0,37650,0,1,1 +1774094389.496408,0.90,4,3992.50,51.42,1667.12,2013.16,0.00,3515625537510.051758,3515625530418.745117,238,2,0.003875,0.007117,37533233,24561890,0,0,37652,0,1,1 +1774094394.492329,0.70,4,3992.50,51.22,1673.70,2005.57,0.00,3521310260007.574219,3521310260009.583008,21,0,0.003864,0.007136,37533332,24562031,0,0,37654,0,1,1 +1774094399.492564,5.07,4,3992.50,51.35,1668.77,2010.43,0.00,2.006741,0.000195,238,2,0.015999,15.230918,37534279,24563948,0,0,37657,0,1,1 +1774094404.492043,7.82,4,3992.50,51.55,1659.39,2018.17,0.00,3518803741554.176758,3518803741556.135742,70,0,0.011706,24.846981,37534995,24566697,0,0,37659,0,1,1 +1774094409.491914,0.75,4,3992.50,51.36,1666.82,2010.73,0.00,1.958840,0.000195,238,2,0.001373,0.003844,37535037,24566773,0,0,37662,0,1,1 +1774094414.496561,0.95,4,3992.50,51.27,1670.32,2007.23,0.00,3515170111354.936523,3515170111356.941406,21,0,0.002287,0.006350,37535107,24566895,0,0,37664,0,1,1 +1774094419.494201,1.00,4,3992.50,51.46,1669.78,2014.86,0.00,0.048070,0.000000,70,0,0.002290,0.006369,37535177,24567018,0,0,37667,0,1,1 +1774094424.496041,2.15,4,3992.50,51.47,1669.38,2014.99,0.00,0.126906,0.000000,199,0,0.002288,0.007007,37535247,24567145,0,0,37670,0,1,1 +1774094429.496139,0.85,4,3992.50,51.47,1669.38,2014.99,0.00,1.363352,0.028320,237,247,0.001826,0.005097,37535303,24567244,0,0,37672,0,1,1 +1774094434.492759,0.95,4,3992.50,51.47,1669.38,2014.99,0.00,70288.145691,77429.880994,6050295,1364766,0.002316,0.006401,37535375,24567369,0,0,37675,0,1,1 +1774094439.491925,0.75,4,3992.50,51.47,1669.39,2014.97,0.00,0.000000,0.046101,6050295,1364814,0.002340,0.006419,37535449,24567495,0,0,37677,0,1,1 +1774094444.492023,1.40,4,3992.50,51.28,1676.80,2007.56,0.00,0.000000,0.005469,6050295,1364818,0.002364,0.006449,37535525,24567623,0,0,37679,0,1,1 +1774094449.496111,1.05,4,3992.50,51.20,1679.51,2004.45,0.00,3515562665545.994629,3515562658416.200195,199,0,0.001972,0.005220,37535590,24567732,0,0,37682,0,1,1 +1774094454.496139,1.00,4,3992.50,51.05,1685.09,1998.86,0.00,70241.613562,77377.238724,6050295,1364837,0.002289,0.006356,37535660,24567854,0,0,37684,0,1,1 +1774094459.496784,0.65,4,3992.50,51.06,1684.88,1999.07,0.00,3517983415876.896484,3517983408742.152832,199,0,0.002263,0.006353,37535728,24567976,0,0,37687,0,1,1 +1774094464.492469,21.39,4,3992.50,57.86,1423.39,2265.42,0.00,1.833418,0.000195,238,2,16.043607,0.023554,37537607,24569197,0,0,37690,0,1,1 +1774094469.496390,32.36,4,3992.50,57.86,1429.98,2265.19,0.00,70181.023645,77317.139260,6049521,1364759,120.674196,0.058101,37550003,24573481,0,0,37692,0,1,1 +1774094474.496417,28.41,4,3992.50,57.66,1437.52,2257.55,0.00,3518417962563.557617,3518417955423.891602,21,0,120.973222,0.039908,37562597,24576247,0,0,37694,0,1,1 +1774094479.496380,28.02,4,3992.50,57.70,1436.32,2258.91,0.00,70238.575799,77378.376832,6049521,1364785,119.565266,0.019167,37574839,24577600,0,0,37697,0,1,1 +1774094484.491951,34.14,4,3992.50,58.07,1421.62,2273.51,0.00,0.000000,0.054247,6049521,1364826,119.473307,0.027517,37587141,24579585,0,0,37699,0,1,1 +1774094489.492498,29.95,4,3992.50,57.59,1440.24,2254.83,0.00,3518052490265.457031,3518052483126.259277,199,0,120.151641,0.029116,37599350,24581632,0,0,37702,0,1,1 +1774094494.492220,28.27,4,3992.50,57.71,1435.48,2259.61,0.00,3518632253002.347168,0.000000,21,0,119.572359,0.022100,37611553,24582995,0,0,37704,0,1,1 +1774094499.495581,27.81,4,3992.50,57.61,1439.63,2255.48,0.00,0.174882,0.000000,199,0,119.090856,0.039207,37623820,24585788,0,0,37707,0,1,1 +1774094504.494092,28.41,4,3992.50,57.66,1437.72,2257.41,0.00,3519485980510.356934,0.000000,21,0,119.809030,0.050413,37636186,24589464,0,0,37710,0,1,1 +1774094509.492004,1.81,4,3992.50,52.58,1637.76,2058.52,0.00,0.175073,0.000000,199,0,50.095244,0.023954,37641437,24590982,0,0,37712,0,1,1 +1774094514.492094,8.07,4,3992.50,51.83,1666.15,2029.45,0.00,0.000000,0.000000,199,0,8.056816,0.043674,37644140,24593005,0,0,37715,0,1,1 +1774094519.491912,21.03,4,3992.50,54.85,1548.21,2147.35,0.00,3518564745595.645996,0.000000,21,0,30.185841,0.137775,37654006,24600561,0,0,37717,0,1,1 +1774094524.496454,3.91,4,3992.50,53.39,1605.32,2090.23,0.00,0.174841,0.000000,199,0,2.024923,0.017862,37654893,24601252,0,0,37719,0,1,1 +1774094529.496572,1.15,4,3992.50,52.38,1644.56,2050.98,0.00,0.000000,0.000000,199,0,0.004562,0.008415,37655009,24601415,0,0,37722,0,1,1 +1774094534.496577,10.84,4,3992.50,52.10,1653.65,2039.88,0.00,1.831834,0.000195,238,2,0.027266,43.272397,37656785,24606273,0,0,37724,0,1,1 +1774094539.496748,29.70,4,3992.50,51.76,1658.67,2026.54,0.00,3518317018949.893555,3518317018951.852051,70,0,0.043729,119.767952,37659987,24618697,0,0,37727,0,1,1 +1774094544.495963,11.25,4,3992.50,51.95,1643.51,2034.03,0.00,3518989531181.220215,0.000000,21,0,0.014023,42.074077,37660811,24623209,0,0,37730,0,1,1 +1774094549.496170,15.41,4,3992.50,56.44,1471.09,2209.61,0.00,0.174993,0.000000,199,0,36.257304,0.027416,37664782,24624841,0,0,37732,0,1,1 +1774094554.496883,1.00,4,3992.50,52.57,1622.43,2058.22,0.00,3517935180535.960449,0.000000,70,0,3.811336,0.008139,37665332,24625087,0,0,37735,0,1,1 +1774094559.491898,0.95,4,3992.50,51.64,1659.03,2021.67,0.00,3521948341321.117188,0.000000,21,0,0.004138,0.008289,37665434,24625230,0,0,37737,0,1,1 +1774094564.494147,0.65,4,3992.50,51.44,1666.84,2013.86,0.00,0.048025,0.000000,70,0,0.003876,0.007119,37665534,24625370,0,0,37739,0,1,1 +1774094569.492002,0.95,4,3992.50,51.81,1652.31,2028.66,0.00,1.490972,0.028332,237,247,0.003880,0.007135,37665634,24625511,0,0,37742,0,1,1 +1774094574.492046,0.90,4,3992.50,51.64,1659.05,2021.64,0.00,0.468453,3518405600230.940918,238,2,0.006060,0.008139,37665779,24625678,0,0,37744,0,1,1 +1774094579.491894,0.60,4,3992.50,51.64,1658.80,2021.89,0.00,3518544233850.110352,0.028126,237,247,0.003903,0.007151,37665881,24625820,0,0,37747,0,1,1 +1774094584.491911,0.65,4,3992.50,51.46,1665.69,2014.96,0.00,70257.164455,77585.016415,6050421,1368384,0.003408,0.005868,37665966,24625937,0,0,37749,0,1,1 +1774094589.492044,0.70,4,3992.50,51.27,1673.39,2007.31,0.00,3518343853958.980469,3518343846632.808105,21,0,0.003959,0.007220,37666071,24626085,0,0,37752,0,1,1 +1774094594.491896,0.65,4,3992.50,51.31,1671.96,2008.74,0.00,2.006896,0.000195,238,2,0.003891,0.007133,37666172,24626226,0,0,37755,0,1,1 +1774094599.495878,0.85,4,3992.50,51.64,1659.07,2021.77,0.00,0.000000,0.000000,238,2,0.003875,0.007117,37666272,24626366,0,0,37757,0,1,1 +1774094604.491996,1.60,4,3992.50,51.64,1658.98,2021.71,0.00,70311.529425,77645.745115,6050421,1368530,0.003485,0.005900,37666362,24626485,0,0,37759,0,1,1 +1774094609.492517,0.65,4,3992.50,51.64,1659.00,2021.70,0.00,3518070296769.357910,3518070289443.607422,21,0,0.003886,0.007140,37666463,24626627,0,0,37762,0,1,1 +1774094614.491993,0.55,4,3992.50,51.66,1658.26,2022.44,0.00,70262.205480,77593.642410,6049647,1368351,0.003866,0.007123,37666562,24626767,0,0,37764,0,1,1 +1774094619.495805,0.75,4,3992.50,51.75,1654.39,2026.31,0.00,3515756768560.294922,3515756761235.163574,70,0,0.005686,0.009085,37666690,24626948,0,0,37767,0,1,1 +1774094624.496513,11.35,4,3992.50,51.82,1650.35,2028.77,0.00,1.490121,0.028316,237,247,0.026743,40.060999,37668593,24631383,0,0,37770,0,1,1 +1774094629.494017,1.05,4,3992.50,51.52,1678.47,2017.28,0.00,3520194687904.805176,3520194687906.315918,21,0,0.002277,0.006359,37668662,24631505,0,0,37772,0,1,1 +1774094634.496459,0.70,4,3992.50,51.58,1676.32,2019.42,0.00,2.005856,0.000195,238,2,0.002275,0.006363,37668731,24631628,0,0,37775,0,1,1 +1774094639.491907,0.65,4,3992.50,51.58,1676.11,2019.64,0.00,0.000000,0.000000,238,2,0.001841,0.005101,37668788,24631727,0,0,37777,0,1,1 +1774094644.492029,0.65,4,3992.50,51.58,1676.11,2019.63,0.00,3518351038834.938965,3518351038836.897461,70,0,0.002289,0.006356,37668858,24631849,0,0,37779,0,1,1 +1774094649.496177,0.65,4,3992.50,51.58,1676.11,2019.62,0.00,3515520868469.774902,0.000000,21,0,0.002287,0.006361,37668928,24631972,0,0,37782,0,1,1 +1774094654.496014,0.75,4,3992.50,51.58,1676.12,2019.62,0.00,70257.129642,77628.366284,6049647,1368813,0.002314,0.006387,37669000,24632096,0,0,37784,0,1,1 +1774094659.495427,1.30,4,3992.50,51.59,1677.91,2019.86,0.00,3518850441689.681641,3518850434316.309570,237,247,0.002339,0.006404,37669074,24632221,0,0,37787,0,1,1 +1774094664.496379,0.60,4,3992.50,51.59,1677.98,2019.82,0.00,0.000000,0.000000,237,247,0.001856,0.005154,37669132,24632324,0,0,37790,0,1,1 +1774094669.496686,1.25,4,3992.50,51.55,1679.59,2018.21,0.00,3518221060638.178223,3518221060639.513184,199,0,0.002502,0.006552,37669217,24632461,0,0,37792,0,1,1 +1774094674.492033,0.70,4,3992.50,51.56,1679.10,2018.70,0.00,3521714760341.708008,0.000000,70,0,0.002291,0.006372,37669287,24632584,0,0,37795,0,1,1 +1774094679.496713,0.65,4,3992.50,51.58,1678.37,2019.43,0.00,70189.089715,77553.350055,6049647,1368882,0.002287,0.006350,37669357,24632706,0,0,37797,0,1,1 +1774094684.493729,0.65,4,3992.50,51.59,1678.13,2019.67,0.00,3520538328276.928711,3520538320899.413574,238,2,0.001832,0.005575,37669413,24632807,0,0,37799,0,1,1 +1774094689.492145,22.43,4,3992.50,58.12,1417.02,2275.43,0.00,0.000000,0.000000,238,2,26.653048,0.026334,37672385,24634258,0,0,37802,0,1,1 +1774094694.496480,31.92,4,3992.50,57.97,1427.66,2269.61,0.00,0.000000,0.000000,238,2,118.063033,0.040591,37684513,24637112,0,0,37804,0,1,1 +1774094699.496139,28.07,4,3992.50,57.94,1428.92,2268.32,0.00,3518676995458.666992,3518676995460.674316,21,0,119.777219,0.032070,37696874,24639421,0,0,37807,0,1,1 +1774094704.496701,28.15,4,3992.50,57.73,1436.79,2260.42,0.00,0.174980,0.000000,199,0,118.550948,0.051711,37709049,24643319,0,0,37810,0,1,1 +1774094709.496158,28.20,4,3992.50,58.09,1422.90,2274.38,0.00,1.832035,0.000195,238,2,120.180591,0.036447,37721402,24645907,0,0,37812,0,1,1 +1774094714.495568,27.81,4,3992.50,57.84,1432.74,2264.44,0.00,0.000000,0.000000,238,2,118.179437,0.033700,37733589,24648334,0,0,37815,0,1,1 +1774094719.492237,28.34,4,3992.50,57.74,1436.56,2260.70,0.00,70303.815968,77678.094863,6050424,1369449,120.244510,0.054942,37745768,24652494,0,0,37817,0,1,1 +1774094724.495908,27.92,4,3992.50,57.81,1426.68,2263.49,0.00,3515856119754.436035,0.003318,6049650,1369222,119.276544,0.029219,37757971,24654609,0,0,37819,0,1,1 +1774094729.495962,27.54,4,3992.50,57.60,1434.89,2255.36,0.00,3518399009034.759277,3518399001663.192383,199,0,118.965307,0.055166,37770191,24658588,0,0,37822,0,1,1 +1774094734.496693,1.25,4,3992.50,51.39,1678.07,2012.21,0.00,1.831568,0.000195,238,2,45.459990,0.024250,37774934,24660194,0,0,37824,0,1,1 +1774094739.493415,6.84,4,3992.50,51.60,1670.17,2020.10,0.00,70299.106954,77677.711525,6049667,1369482,6.047243,0.035656,37776984,24661808,0,0,37827,0,1,1 +1774094744.495593,20.43,4,3992.50,52.91,1618.56,2071.68,0.00,3516905036931.411133,3516905029562.860840,21,0,32.188490,0.142754,37787591,24669378,0,0,37830,0,1,1 +1774094749.495402,3.76,4,3992.50,52.78,1623.61,2066.62,0.00,0.000000,0.000000,21,0,2.014914,0.011300,37788248,24669882,0,0,37832,0,1,1 +1774094754.495843,1.76,4,3992.50,52.56,1638.32,2057.82,0.00,0.174985,0.000000,199,0,0.005428,0.008369,37788379,24670049,0,0,37835,0,1,1 +1774094759.495446,0.65,4,3992.50,52.33,1647.12,2049.02,0.00,3518716350762.360840,0.000000,21,0,0.003878,0.007110,37788479,24670188,0,0,37837,0,1,1 +1774094764.496496,0.70,4,3992.50,52.31,1647.96,2048.18,0.00,1.538056,0.028314,237,247,0.003865,0.007121,37788578,24670328,0,0,37839,0,1,1 +1774094769.495979,0.60,4,3992.50,52.31,1647.97,2048.17,0.00,3518800920589.936035,3518800920591.446289,21,0,0.003866,0.007146,37788677,24670470,0,0,37842,0,1,1 +1774094774.491982,0.60,4,3992.50,52.31,1647.98,2048.16,0.00,0.000000,0.000000,21,0,0.003436,0.005860,37788764,24670586,0,0,37844,0,1,1 +1774094779.492296,0.90,4,3992.50,52.09,1650.75,2039.32,0.00,0.000000,0.000000,21,0,0.003978,0.007256,37788872,24670735,0,0,37847,0,1,1 +1774094784.491915,0.65,4,3992.50,52.10,1650.03,2039.96,0.00,70264.502652,77634.282999,6050445,1371364,0.003899,0.007172,37788974,24670879,0,0,37850,0,1,1 +1774094789.495855,0.60,4,3992.50,51.93,1656.66,2033.32,0.00,3515667092489.996094,3515667085126.578125,21,0,0.003875,0.007104,37789074,24671018,0,0,37852,0,1,1 +1774094794.496607,0.60,4,3992.50,51.98,1654.99,2035.00,0.00,0.174974,0.000000,199,0,0.003432,0.005864,37789161,24671135,0,0,37855,0,1,1 +1774094799.492846,0.60,4,3992.50,51.98,1655.00,2034.98,0.00,3521085312922.797363,0.000000,70,0,0.003956,0.007168,37789266,24671278,0,0,37857,0,1,1 +1774094804.496179,0.65,4,3992.50,51.97,1655.15,2034.85,0.00,70208.201303,77576.742747,6049671,1371225,0.004175,0.007659,37789372,24671428,0,0,37859,0,1,1 +1774094809.496593,0.90,4,3992.50,51.97,1655.96,2034.79,0.00,3518146159797.104980,3518146152422.800293,237,247,0.004185,0.007686,37789479,24671580,0,0,37862,0,1,1 +1774094814.491916,0.65,4,3992.50,51.97,1655.71,2034.77,0.00,70323.391821,77701.247509,6050445,1371578,0.004354,0.006539,37789568,24671700,0,0,37864,0,1,1 +1774094819.491921,1.00,4,3992.50,51.91,1657.90,2032.58,0.00,3518433528007.555664,3518433520638.118164,21,0,0.004573,0.008698,37789673,24671847,0,0,37867,0,1,1 +1774094824.495533,0.60,4,3992.50,51.96,1656.21,2034.27,0.00,0.174874,0.000000,199,0,0.003875,0.007127,37789773,24671988,0,0,37870,0,1,1 +1774094829.491913,5.68,4,3992.50,52.13,1649.09,2041.03,0.00,1.364367,0.028341,237,247,0.021329,23.065245,37791043,24674720,0,0,37872,0,1,1 +1774094834.496426,29.05,4,3992.50,52.13,1640.61,2041.16,0.00,3515264032065.871582,3515264032067.332520,70,0,0.042640,120.869956,37794135,24687597,0,0,37875,0,1,1 +1774094839.496079,16.27,4,3992.50,51.57,1658.16,2018.89,0.00,70263.986186,77808.833561,6050445,1372846,0.047401,61.110142,37797567,24694241,0,0,37877,0,1,1 +1774094844.492763,14.00,4,3992.50,53.37,1590.52,2089.65,0.00,3520772057616.145996,3520772050066.864258,21,0,40.091493,0.024629,37802036,24695634,0,0,37879,0,1,1 +1774094849.496246,9.00,4,3992.50,51.90,1647.07,2031.96,0.00,0.000000,0.000000,21,0,0.024656,35.635372,37803543,24699601,0,0,37882,0,1,1 +1774094854.496183,2.71,4,3992.50,51.60,1658.74,2020.09,0.00,2.006861,0.000195,238,2,0.005130,4.416673,37803734,24700267,0,0,37884,0,1,1 +1774094859.491997,0.60,4,3992.50,51.60,1658.75,2020.09,0.00,3521385047636.457031,0.028149,237,247,0.002278,0.006371,37803803,24700390,0,0,37887,0,1,1 +1774094864.495974,0.70,4,3992.50,51.60,1658.75,2020.08,0.00,0.468085,3515640846357.006348,238,2,0.002287,0.006361,37803873,24700513,0,0,37890,0,1,1 +1774094869.494813,0.95,4,3992.50,51.80,1657.25,2027.95,0.00,3519254166433.374512,0.028132,237,247,0.001839,0.005098,37803930,24700612,0,0,37892,0,1,1 +1774094874.496472,0.80,4,3992.50,51.82,1656.39,2028.81,0.00,70246.843427,77842.403930,6049777,1373327,0.004029,0.006126,37804032,24700738,0,0,37894,0,1,1 +1774094879.492056,0.65,4,3992.50,51.82,1656.39,2028.80,0.00,3521547329068.450684,3521547321463.654297,237,247,0.002278,0.006359,37804101,24700860,0,0,37897,0,1,1 +1774094884.491896,0.80,4,3992.50,51.82,1656.39,2028.80,0.00,3518549818661.188477,3518549818662.698242,21,0,0.002276,0.007000,37804170,24700986,0,0,37899,0,1,1 +1774094889.491985,0.60,4,3992.50,51.82,1656.40,2028.79,0.00,0.000000,0.000000,21,0,0.002276,0.006366,37804239,24701109,0,0,37902,0,1,1 +1774094894.496308,0.65,4,3992.50,51.82,1656.40,2028.79,0.00,0.000000,0.000000,21,0,0.002159,0.005829,37804310,24701226,0,0,37904,0,1,1 +1774094899.496246,0.90,4,3992.50,52.35,1635.54,2049.62,0.00,2.006861,0.000195,238,2,0.002203,0.005871,37804382,24701348,0,0,37907,0,1,1 +1774094904.494130,0.65,4,3992.50,52.00,1649.27,2035.93,0.00,3519926927843.321777,3519926927845.281250,70,0,0.002290,0.006369,37804452,24701471,0,0,37910,0,1,1 +1774094909.496478,0.70,4,3992.50,52.00,1649.27,2035.92,0.00,0.000000,0.000000,70,0,0.002288,0.006353,37804522,24701593,0,0,37912,0,1,1 +1774094914.496765,23.59,4,3992.50,57.90,1425.79,2267.07,0.00,3518235075019.739746,0.000000,21,0,38.056639,0.027228,37808621,24703179,0,0,37915,0,1,1 +1774094919.497419,32.39,4,3992.50,58.11,1421.35,2275.12,0.00,2.006574,0.000195,238,2,119.363509,0.057247,37821038,24707372,0,0,37917,0,1,1 +1774094924.496228,28.54,4,3992.50,57.94,1427.77,2268.62,0.00,3519275686871.416992,3519275686873.424805,21,0,119.027779,0.110817,37833898,24715849,0,0,37919,0,1,1 +1774094929.496701,28.33,4,3992.50,57.90,1429.54,2266.89,0.00,0.174983,0.000000,199,0,119.637871,0.107045,37846799,24724119,0,0,37922,0,1,1 +1774094934.492634,28.59,4,3992.50,57.89,1436.98,2266.34,0.00,70332.818292,77938.134781,6050551,1373962,118.845386,0.109643,37859604,24732547,0,0,37924,0,1,1 +1774094939.495010,28.35,4,3992.50,58.07,1429.93,2273.46,0.00,3516766309572.026855,3516766301974.673828,238,2,119.944570,0.111918,37872637,24741042,0,0,37927,0,1,1 +1774094944.491928,28.44,4,3992.50,57.91,1435.87,2267.48,0.00,3520607389435.063477,0.028142,237,247,118.471592,0.107168,37885428,24749287,0,0,37930,0,1,1 +1774094949.496373,28.63,4,3992.50,57.93,1435.23,2268.09,0.00,70207.726083,77805.538499,6049777,1373751,120.086936,0.096861,37898180,24756709,0,0,37932,0,1,1 +1774094954.493445,24.99,4,3992.50,58.11,1428.59,2274.95,0.00,3520498376330.405273,3520498368721.383301,237,247,118.862459,0.095226,37910828,24763886,0,0,37935,0,1,1 +1774094959.491937,8.39,4,3992.50,52.94,1624.39,2072.55,0.00,3519499255088.625000,3519499255090.087402,70,0,41.525785,0.072630,37917156,24768294,0,0,37937,0,1,1 +1774094964.491950,17.74,4,3992.50,52.69,1633.91,2062.95,0.00,3518427882234.521973,0.000000,21,0,26.165335,0.124666,37925821,24774991,0,0,37939,0,1,1 +1774094969.493755,6.77,4,3992.50,52.07,1658.34,2038.52,0.00,0.048030,0.000000,70,0,6.039341,0.029478,37927762,24776450,0,0,37942,0,1,1 +1774094974.491912,2.31,4,3992.50,51.90,1664.72,2032.12,0.00,3519734725300.180176,0.000000,21,0,0.004126,0.007255,37927864,24776590,0,0,37944,0,1,1 +1774094979.496260,11.59,4,3992.50,52.21,1650.54,2044.18,0.00,70214.801536,77821.155261,6050563,1375599,0.030467,45.036081,37929895,24781675,0,0,37947,0,1,1 +1774094984.496228,28.74,4,3992.50,52.78,1620.15,2066.49,0.00,3518459961352.276855,117.513260,6049789,1376080,0.026252,119.570773,37931829,24794163,0,0,37950,0,1,1 +1774094989.491992,11.32,4,3992.50,52.31,1633.46,2048.22,0.00,3521420136426.193848,3521420128684.997559,70,0,0.016924,40.501639,37932875,24798543,0,0,37952,0,1,1 +1774094994.496391,14.39,4,3992.50,56.49,1473.18,2211.61,0.00,3515345087439.893066,0.000000,21,0,25.822025,0.026095,37935792,24800072,0,0,37955,0,1,1 +1774094999.491908,1.51,4,3992.50,52.90,1613.70,2071.07,0.00,2.008637,0.000195,238,2,14.238846,0.013609,37937407,24800788,0,0,37957,0,1,1 +1774095004.496909,1.10,4,3992.50,52.36,1634.71,2050.10,0.00,0.000000,0.000000,238,2,0.004226,0.008213,37937517,24800937,0,0,37959,0,1,1 +1774095009.496652,0.75,4,3992.50,52.16,1642.57,2042.23,0.00,3518618100334.007324,3518618100336.014648,21,0,0.003878,0.007133,37937617,24801078,0,0,37962,0,1,1 +1774095014.491975,0.65,4,3992.50,52.16,1642.59,2042.21,0.00,1.539819,0.028347,237,247,0.003882,0.007774,37937717,24801222,0,0,37964,0,1,1 +1774095019.491909,0.85,4,3992.50,52.26,1643.75,2046.05,0.00,3518483767570.012207,3518483767571.474609,70,0,0.003878,0.007132,37937817,24801363,0,0,37967,0,1,1 +1774095024.495124,0.65,4,3992.50,52.23,1642.81,2044.97,0.00,70247.253800,78031.855487,6050680,1377297,0.003443,0.005892,37937905,24801482,0,0,37970,0,1,1 +1774095029.496021,0.80,4,3992.50,52.39,1636.77,2051.02,0.00,3517806250292.875000,3517806242504.713379,21,0,0.003865,0.007121,37938004,24801622,0,0,37972,0,1,1 +1774095034.491910,0.65,4,3992.50,52.18,1644.91,2042.88,0.00,2.008487,0.000195,238,2,0.003975,0.007201,37938110,24801768,0,0,37975,0,1,1 +1774095039.495594,0.60,4,3992.50,52.21,1643.73,2044.07,0.00,3515847271943.734863,0.028104,237,247,0.003888,0.007117,37938211,24801908,0,0,37977,0,1,1 +1774095044.491803,0.65,4,3992.50,52.21,1643.75,2044.05,0.00,70344.262593,78141.390395,6050680,1377455,0.003423,0.005860,37938297,24802024,0,0,37979,0,1,1 +1774095049.493789,1.35,4,3992.50,52.21,1643.70,2044.24,0.00,3517040087969.051758,3517040080182.438477,21,0,0.005196,0.007683,37938427,24802183,0,0,37982,0,1,1 +1774095054.492710,0.80,4,3992.50,52.19,1644.60,2043.19,0.00,0.175038,0.000000,199,0,0.003879,0.007124,37938527,24802323,0,0,37984,0,1,1 +1774095059.496374,5.07,4,3992.50,52.15,1645.84,2041.95,0.00,3515860781883.027832,0.000000,21,0,0.016579,15.220742,37939521,24804255,0,0,37987,0,1,1 +1774095064.491926,7.13,4,3992.50,52.08,1647.25,2039.22,0.00,0.000000,0.000000,21,0,0.016330,24.866054,37940595,24806996,0,0,37990,0,1,1 +1774095069.491924,0.75,4,3992.50,52.07,1647.72,2038.76,0.00,2.006837,0.000195,238,2,0.002289,0.006343,37940665,24807117,0,0,37992,0,1,1 +1774095074.491998,0.55,4,3992.50,52.07,1647.72,2038.77,0.00,3518384438744.026855,3518384438746.033691,21,0,0.001818,0.005111,37940720,24807217,0,0,37995,0,1,1 +1774095079.491987,0.95,4,3992.50,52.47,1631.86,2054.49,0.00,0.048047,0.000000,70,0,0.002276,0.007000,37940789,24807343,0,0,37997,0,1,1 +1774095084.496565,0.60,4,3992.50,52.03,1649.16,2037.05,0.00,70228.125311,78045.032356,6050680,1377871,0.002274,0.006350,37940858,24807465,0,0,37999,0,1,1 +1774095089.496482,0.65,4,3992.50,52.03,1649.16,2037.05,0.00,3518495480173.225098,3518495472347.569336,237,247,0.002289,0.006366,37940928,24807588,0,0,38002,0,1,1 +1774095094.491896,0.70,4,3992.50,52.03,1649.16,2037.04,0.00,0.000000,0.000000,237,247,0.001866,0.005133,37940987,24807689,0,0,38004,0,1,1 +1774095099.496737,0.60,4,3992.50,52.03,1648.92,2037.28,0.00,3515033648901.056641,3515033648902.390625,199,0,0.002312,0.006422,37941059,24807816,0,0,38007,0,1,1 +1774095104.492082,0.80,4,3992.50,52.03,1648.93,2037.28,0.00,3521716148485.382324,0.000000,21,0,0.002666,0.007020,37941141,24807956,0,0,38010,0,1,1 +1774095109.496396,1.00,4,3992.50,52.18,1643.07,2043.13,0.00,0.000000,0.000000,21,0,0.002710,0.007005,37941225,24808097,0,0,38012,0,1,1 +1774095114.496654,0.55,4,3992.50,51.77,1659.23,2026.97,0.00,0.000000,0.000000,21,0,0.001831,0.005098,37941281,24808196,0,0,38015,0,1,1 +1774095119.496215,0.55,4,3992.50,51.78,1658.75,2027.46,0.00,0.000000,0.000000,21,0,0.003198,0.007026,37941352,24808321,0,0,38017,0,1,1 +1774095124.496549,0.65,4,3992.50,51.78,1658.75,2027.46,0.00,70287.763168,78117.418605,6050680,1378052,0.002276,0.006356,37941421,24808443,0,0,38019,0,1,1 +1774095129.495217,22.37,4,3992.50,59.38,1368.64,2324.68,0.00,3519374592894.158203,3519374592898.250977,6049906,1377834,18.037087,0.025336,37943478,24809775,0,0,38022,0,1,1 +1774095134.497191,32.02,4,3992.50,58.50,1406.55,2290.23,0.00,3517049123200.450195,3517049115369.221680,70,0,119.806913,0.037754,37955774,24812429,0,0,38024,0,1,1 +1774095139.496636,28.36,4,3992.50,58.44,1409.03,2288.17,0.00,0.126967,0.000000,199,0,119.493775,0.020800,37968157,24813766,0,0,38027,0,1,1 +1774095144.494580,28.41,4,3992.50,58.36,1415.39,2285.01,0.00,1.832590,0.000195,238,2,119.216378,0.026175,37980384,24815580,0,0,38030,0,1,1 +1774095149.496504,28.33,4,3992.50,58.37,1415.02,2285.27,0.00,3517083607905.270020,3517083607907.276367,21,0,120.120519,0.028159,37992715,24817513,0,0,38032,0,1,1 +1774095154.493022,27.86,4,3992.50,58.69,1402.77,2297.73,0.00,1.539451,0.028340,237,247,120.248197,0.017419,38004996,24818791,0,0,38035,0,1,1 +1774095159.494274,27.95,4,3992.50,58.38,1414.87,2285.52,0.00,3517556689869.985352,3517556689871.495117,21,0,118.756000,0.078837,38017452,24824886,0,0,38037,0,1,1 +1774095164.491906,28.41,4,3992.50,58.58,1406.78,2293.55,0.00,2.007787,0.000195,238,2,119.639423,0.071602,38029958,24830372,0,0,38039,0,1,1 +1774095169.491963,28.10,4,3992.50,58.59,1406.43,2293.93,0.00,0.000000,0.000000,238,2,119.363760,0.028712,38042169,24832441,0,0,38042,0,1,1 +1774095174.496573,3.51,4,3992.50,52.64,1638.93,2061.04,0.00,3515195921245.904297,0.028099,237,247,50.829882,0.013656,38047513,24833103,0,0,38044,0,1,1 +1774095179.495988,7.47,4,3992.50,51.87,1669.08,2030.89,0.00,0.468512,3518848869863.450195,238,2,4.043137,0.031455,38049121,24834301,0,0,38047,0,1,1 +1774095184.495955,20.69,4,3992.50,52.98,1625.74,2074.23,0.00,3518460878976.448730,0.028125,237,247,32.183284,0.133024,38059375,24841767,0,0,38050,0,1,1 +1774095189.496389,4.92,4,3992.50,52.58,1641.16,2058.80,0.00,3518131669700.591309,3518131669702.053223,70,0,4.038522,0.026343,38060898,24842874,0,0,38052,0,1,1 +1774095194.496428,14.16,4,3992.50,52.74,1630.41,2065.05,0.00,0.126952,0.000000,199,0,0.034392,56.292357,38063234,24849165,0,0,38055,0,1,1 +1774095199.491943,29.03,4,3992.50,52.61,1629.52,2059.66,0.00,3521596550770.045410,0.000000,21,0,0.039152,118.884129,38066063,24861650,0,0,38057,0,1,1 +1774095204.491985,8.69,4,3992.50,51.94,1651.24,2033.73,0.00,0.174999,0.000000,199,0,0.026537,30.056349,38067872,24865001,0,0,38059,0,1,1 +1774095209.491894,14.92,4,3992.50,56.92,1459.85,2228.54,0.00,70310.309456,78331.205736,6050803,1381099,36.460055,0.023225,38071889,24866253,0,0,38062,0,1,1 +1774095214.492672,1.15,4,3992.50,53.72,1585.21,2103.18,0.00,3517890050384.961426,3517890042365.584473,70,0,3.612172,0.010499,38072445,24866493,0,0,38064,0,1,1 +1774095219.494398,0.70,4,3992.50,52.90,1617.13,2071.26,0.00,0.126909,0.000000,199,0,0.003927,0.007192,38072549,24866638,0,0,38067,0,1,1 +1774095224.496456,0.55,4,3992.50,52.42,1635.88,2052.51,0.00,0.000000,0.000000,199,0,0.003927,0.007192,38072653,24866783,0,0,38070,0,1,1 +1774095229.496472,0.95,4,3992.50,52.59,1629.58,2058.85,0.00,0.000000,0.000000,199,0,0.003420,0.005855,38072739,24866899,0,0,38072,0,1,1 +1774095234.496577,0.70,4,3992.50,52.40,1636.82,2051.59,0.00,1.831797,0.000195,238,2,0.003886,0.007140,38072840,24867041,0,0,38075,0,1,1 +1774095239.495057,0.70,4,3992.50,52.38,1637.77,2050.64,0.00,3519507346061.427246,3519507346063.435059,21,0,0.003904,0.007156,38072942,24867183,0,0,38077,0,1,1 +1774095244.496796,0.60,4,3992.50,52.32,1639.82,2048.58,0.00,70284.766881,78303.152733,6050803,1381680,0.003877,0.007133,38073042,24867324,0,0,38079,0,1,1 +1774095249.493546,0.65,4,3992.50,52.33,1639.68,2048.72,0.00,3520725733526.356934,3520725725499.790039,199,0,0.003516,0.005944,38073134,24867447,0,0,38082,0,1,1 +1774095254.492030,0.70,4,3992.50,52.33,1639.70,2048.71,0.00,3519503703677.228516,0.000000,21,0,0.003879,0.007125,38073234,24867587,0,0,38084,0,1,1 +1774095259.495634,1.00,4,3992.50,52.53,1631.66,2056.74,0.00,0.048012,0.000000,70,0,0.003937,0.007167,38073338,24867731,0,0,38087,0,1,1 +1774095264.496628,0.75,4,3992.50,52.25,1642.50,2045.88,0.00,1.958400,0.000195,238,2,0.005114,0.007636,38073462,24867886,0,0,38090,0,1,1 +1774095269.491914,0.65,4,3992.50,52.28,1641.55,2046.85,0.00,0.000000,0.000000,238,2,0.003882,0.007117,38073562,24868025,0,0,38092,0,1,1 +1774095274.497967,3.96,4,3992.50,52.26,1641.96,2046.26,0.00,3514182416035.160645,3514182416037.165527,21,0,0.015838,12.812271,38074520,24869680,0,0,38095,0,1,1 +1774095279.491905,7.79,4,3992.50,52.23,1641.77,2045.05,0.00,0.175212,0.000000,199,0,0.013260,27.280913,38075329,24872634,0,0,38097,0,1,1 +1774095284.496163,0.75,4,3992.50,52.23,1641.79,2045.05,0.00,1.830277,0.000195,238,2,0.002270,0.006359,38075398,24872757,0,0,38099,0,1,1 +1774095289.495875,0.90,4,3992.50,52.14,1648.82,2041.34,0.00,3518639734747.045410,3518639734749.052734,21,0,0.002264,0.006366,38075466,24872880,0,0,38102,0,1,1 +1774095294.496424,0.55,4,3992.50,52.08,1650.96,2039.02,0.00,70297.390966,78358.253888,6050029,1382024,0.001831,0.005088,38075522,24872978,0,0,38104,0,1,1 +1774095299.496422,0.65,4,3992.50,52.09,1650.50,2039.47,0.00,3518438176519.367676,3518438168455.611328,238,2,0.001818,0.005099,38075577,24873077,0,0,38107,0,1,1 +1774095304.496371,0.85,4,3992.50,51.93,1656.90,2033.07,0.00,3518473266195.225098,3518473266197.232422,21,0,0.002289,0.006366,38075647,24873200,0,0,38110,0,1,1 +1774095309.496495,0.70,4,3992.50,51.93,1656.91,2033.07,0.00,0.048046,0.000000,70,0,0.002314,0.006387,38075719,24873324,0,0,38112,0,1,1 +1774095314.492606,0.85,4,3992.50,51.89,1658.30,2031.67,0.00,1.960314,0.000195,238,2,0.001883,0.005165,38075779,24873427,0,0,38115,0,1,1 +1774095319.496396,1.05,4,3992.50,52.18,1647.95,2043.11,0.00,70253.952576,78311.703041,6050803,1382437,0.002363,0.006444,38075855,24873555,0,0,38117,0,1,1 +1774095324.496739,0.80,4,3992.50,52.05,1653.16,2037.93,0.00,3518195828338.218750,3518195820275.410156,237,247,0.002444,0.006481,38075935,24873687,0,0,38119,0,1,1 +1774095329.495930,0.85,4,3992.50,52.05,1653.16,2037.92,0.00,0.468533,3519006648908.687500,238,2,0.002289,0.006367,38076005,24873810,0,0,38122,0,1,1 +1774095334.491990,1.71,4,3992.50,52.02,1654.25,2036.84,0.00,3521211987309.057129,3521211987311.017090,70,0,0.001832,0.005093,38076061,24873908,0,0,38124,0,1,1 +1774095339.497642,23.80,4,3992.50,58.39,1411.93,2286.12,0.00,3514464539000.949707,0.000000,21,0,24.356648,0.027379,38078814,24875411,0,0,38127,0,1,1 +1774095344.492338,31.85,4,3992.50,58.64,1405.70,2296.07,0.00,0.175186,0.000000,199,0,120.367814,0.060161,38091431,24879736,0,0,38130,0,1,1 +1774095349.492204,28.51,4,3992.50,58.75,1399.07,2300.16,0.00,3518531040365.103027,0.000000,21,0,121.389174,0.078249,38104022,24885700,0,0,38132,0,1,1 +1774095354.496505,29.22,4,3992.50,58.43,1411.44,2287.79,0.00,2.005111,0.000195,238,2,120.897246,0.108673,38117103,24894038,0,0,38135,0,1,1 +1774095359.497297,28.61,4,3992.50,58.52,1407.98,2291.32,0.00,3517880285513.856934,3517880285515.863281,21,0,119.381181,0.113655,38129965,24902761,0,0,38137,0,1,1 +1774095364.495372,28.30,4,3992.50,58.22,1419.64,2279.60,0.00,1.538971,0.028331,237,247,119.444254,0.105715,38142826,24910941,0,0,38139,0,1,1 +1774095369.496369,28.56,4,3992.50,58.99,1389.68,2309.73,0.00,3517735498040.031738,3517735498041.493164,70,0,119.741304,0.026394,38154784,24912915,0,0,38142,0,1,1 +1774095374.495483,28.40,4,3992.50,58.58,1405.63,2293.60,0.00,3519060751257.666992,0.000000,21,0,119.180457,0.018848,38166479,24914197,0,0,38144,0,1,1 +1774095379.495399,26.71,4,3992.50,58.45,1410.94,2288.39,0.00,0.048048,0.000000,70,0,119.162213,0.020328,38178154,24915517,0,0,38147,0,1,1 +1774095384.491898,2.41,4,3992.50,53.27,1612.84,2085.82,0.00,70354.441186,78426.518133,6050040,1382566,41.690117,0.012911,38182316,24916118,0,0,38150,0,1,1 +1774095389.494482,6.87,4,3992.50,52.67,1636.62,2062.04,0.00,3516620195873.039551,3516620187809.317871,237,247,8.051157,0.043527,38185042,24918266,0,0,38152,0,1,1 +1774095394.495386,21.21,4,3992.50,53.43,1606.57,2092.06,0.00,3517801274134.968262,3517801274136.478027,21,0,32.192698,0.145368,38195550,24926158,0,0,38155,0,1,1 +1774095399.495970,1.51,4,3992.50,52.70,1635.22,2063.41,0.00,0.000000,0.000000,21,0,0.011438,0.010247,38195782,24926378,0,0,38157,0,1,1 +1774095404.496038,0.60,4,3992.50,52.56,1640.66,2057.98,0.00,1.538358,0.028320,237,247,0.004178,0.008321,38195888,24926533,0,0,38159,0,1,1 +1774095409.496388,1.30,4,3992.50,52.69,1636.28,2063.04,0.00,0.000000,0.000000,237,247,0.004185,0.007661,38195995,24926683,0,0,38162,0,1,1 +1774095414.491885,14.80,4,3992.50,52.90,1624.91,2071.26,0.00,0.000000,0.000000,237,247,0.032984,61.952167,38198281,24933433,0,0,38164,0,1,1 +1774095419.496859,29.35,4,3992.50,52.66,1626.04,2061.74,0.00,3514940419614.374512,3514940419615.883301,21,0,0.049488,118.054021,38201853,24945722,0,0,38167,0,1,1 +1774095424.496446,16.80,4,3992.50,57.12,1452.11,2236.34,0.00,0.175014,0.000000,199,0,12.037483,25.057738,38204162,24949308,0,0,38170,0,1,1 +1774095429.496097,4.36,4,3992.50,52.42,1636.11,2052.34,0.00,3518683088827.427734,0.000000,70,0,28.047733,0.018221,38207185,24950128,0,0,38172,0,1,1 +1774095434.492171,0.65,4,3992.50,52.41,1636.64,2051.81,0.00,0.000000,0.000000,70,0,0.004078,0.007661,38207291,24950279,0,0,38174,0,1,1 +1774095439.496263,1.71,4,3992.50,52.63,1627.98,2060.76,0.00,3515560092784.130371,0.000000,21,0,0.003870,0.007122,38207391,24950420,0,0,38177,0,1,1 +1774095444.495405,1.00,4,3992.50,52.63,1627.87,2060.62,0.00,70333.910194,78572.499590,6050147,1385820,0.003650,0.006477,38207484,24950547,0,0,38179,0,1,1 +1774095449.495972,0.60,4,3992.50,52.69,1625.67,2062.82,0.00,3518038508916.310059,3518038500678.060547,238,2,0.003649,0.006511,38207577,24950677,0,0,38182,0,1,1 +1774095454.496378,0.70,4,3992.50,52.33,1639.77,2048.72,0.00,3518151697503.502441,0.028123,237,247,0.003407,0.005842,38207662,24950792,0,0,38184,0,1,1 +1774095459.494225,0.55,4,3992.50,52.35,1639.05,2049.44,0.00,0.468659,3519952698469.848145,238,2,0.003447,0.005899,38207750,24950911,0,0,38187,0,1,1 +1774095464.493332,0.65,4,3992.50,52.35,1638.84,2049.66,0.00,0.000000,0.000000,238,2,0.003879,0.007134,38207850,24951052,0,0,38190,0,1,1 +1774095469.496005,1.00,4,3992.50,52.55,1631.17,2057.48,0.00,70286.377533,78536.874225,6050921,1386363,0.003938,0.007813,38207954,24951200,0,0,38192,0,1,1 +1774095474.491986,0.85,4,3992.50,52.33,1639.73,2048.77,0.00,3521267539743.975098,3521267531484.436035,21,0,0.007484,0.010045,38208110,24951375,0,0,38195,0,1,1 +1774095479.496055,0.75,4,3992.50,52.33,1639.53,2048.97,0.00,0.000000,0.000000,21,0,0.003449,0.005876,38208198,24951493,0,0,38197,0,1,1 +1774095484.496519,0.55,4,3992.50,52.33,1639.54,2048.95,0.00,0.048042,0.000000,70,0,0.003865,0.007122,38208297,24951633,0,0,38199,0,1,1 +1774095489.496188,0.65,4,3992.50,52.33,1639.56,2048.93,0.00,70326.451582,78584.206785,6050147,1386309,0.003886,0.007141,38208398,24951775,0,0,38202,0,1,1 +1774095494.496427,1.00,4,3992.50,52.22,1644.05,2044.44,0.00,0.000000,0.040037,6050147,1386363,0.006458,0.409832,38208587,24952051,0,0,38204,0,1,1 +1774095499.492465,10.82,4,3992.50,52.74,1623.23,2064.85,0.00,3521227543781.378906,3521227535515.621582,238,2,0.018232,39.695936,38209835,24956405,0,0,38207,0,1,1 +1774095504.491904,0.85,4,3992.50,52.44,1636.02,2053.06,0.00,3518832021130.197266,3518832021132.204590,21,0,0.002289,0.006367,38209905,24956528,0,0,38210,0,1,1 +1774095509.496529,0.60,4,3992.50,52.43,1636.17,2052.91,0.00,0.048002,0.000000,70,0,0.002287,0.006350,38209975,24956650,0,0,38212,0,1,1 +1774095514.492001,0.65,4,3992.50,52.45,1635.43,2053.64,0.00,70385.537973,78684.519007,6050147,1386710,0.002291,0.006372,38210045,24956773,0,0,38215,0,1,1 +1774095519.491995,0.65,4,3992.50,52.29,1641.85,2047.23,0.00,3518441407838.208496,3518441399546.733398,70,0,0.001881,0.005151,38210105,24956875,0,0,38217,0,1,1 +1774095524.493574,0.60,4,3992.50,52.30,1641.40,2047.68,0.00,70299.590243,78588.444425,6050147,1386718,0.002288,0.006354,38210175,24956997,0,0,38219,0,1,1 +1774095529.495914,1.00,4,3992.50,52.60,1638.22,2059.24,0.00,3516791099565.704102,3516791091276.152344,238,2,0.002313,0.006394,38210247,24957122,0,0,38222,0,1,1 +1774095534.496898,0.70,4,3992.50,52.54,1640.56,2056.91,0.00,3517745261352.842773,3517745261354.800781,70,0,0.002339,0.007061,38210321,24957252,0,0,38224,0,1,1 +1774095539.491992,0.60,4,3992.50,52.56,1639.82,2057.65,0.00,70390.865967,78696.639072,6050147,1386832,0.001904,0.005205,38210383,24957358,0,0,38227,0,1,1 +1774095544.495857,0.75,4,3992.50,52.55,1639.82,2057.64,0.00,3515719559062.927734,3515719550771.713867,70,0,0.002430,0.006487,38210462,24957491,0,0,38230,0,1,1 +1774095549.496428,0.65,4,3992.50,52.55,1639.83,2057.64,0.00,0.000000,0.000000,70,0,0.002289,0.006355,38210532,24957613,0,0,38232,0,1,1 +1774095554.492771,0.70,4,3992.50,52.56,1639.59,2057.88,0.00,70377.384955,78677.006989,6050921,1387091,0.002290,0.006371,38210602,24957736,0,0,38235,0,1,1 +1774095559.496394,0.90,4,3992.50,52.65,1634.60,2061.56,0.00,3515888886985.854004,3515888878696.848633,237,247,0.002287,0.006326,38210672,24957856,0,0,38237,0,1,1 +1774095564.496338,1.25,4,3992.50,52.36,1646.17,2050.09,0.00,3518476833264.062500,3518476833265.572266,21,0,0.004177,0.007426,38210765,24957988,0,0,38239,0,1,1 +1774095569.491932,43.00,4,3992.50,58.79,1406.32,2301.61,0.00,2.008606,0.000195,238,2,103.847469,0.051608,38221855,24961641,0,0,38242,0,1,1 +1774095574.496200,30.31,4,3992.50,58.85,1404.47,2304.22,0.00,3515436778670.524902,0.028101,237,247,118.290318,0.099044,38234403,24969139,0,0,38244,0,1,1 +1774095579.496436,32.60,4,3992.50,58.76,1408.48,2300.44,0.00,3518271197144.261719,3518271197145.771484,21,0,119.985208,0.087615,38247120,24975905,0,0,38247,0,1,1 +1774095584.496442,29.36,4,3992.50,58.44,1420.87,2288.03,0.00,70339.424029,78619.726821,6051666,1387375,118.792028,0.100754,38259790,24983735,0,0,38250,0,1,1 +1774095589.492596,30.54,4,3992.50,58.70,1410.57,2298.38,0.00,3521145610789.846680,3521145602503.111328,70,0,119.891777,0.111039,38272719,24992152,0,0,38252,0,1,1 +1774095594.493653,30.35,4,3992.50,58.60,1422.02,2294.31,0.00,0.000000,0.000000,70,0,118.771513,0.109525,38285565,25000551,0,0,38255,0,1,1 +1774095599.496095,29.57,4,3992.50,58.67,1419.32,2297.09,0.00,0.126891,0.000000,199,0,119.537453,0.109870,38298401,25009101,0,0,38257,0,1,1 +1774095604.496806,30.00,4,3992.50,58.49,1426.51,2289.92,0.00,0.000000,0.000000,199,0,119.579961,0.109531,38311250,25017603,0,0,38259,0,1,1 +1774095609.496471,10.42,4,3992.50,52.12,1676.00,2040.45,0.00,1.363470,0.028322,237,247,86.950586,0.080652,38320680,25023761,0,0,38262,0,1,1 +1774095614.494658,2.70,4,3992.50,52.14,1674.92,2041.53,0.00,3519713374589.995117,3519713374591.505859,21,0,0.010281,0.008117,38320881,25023941,0,0,38264,0,1,1 +1774095619.495808,18.13,4,3992.50,53.37,1627.81,2089.64,0.00,2.006374,0.000195,238,2,22.128131,0.101443,38327941,25029361,0,0,38267,0,1,1 +1774095624.495504,11.01,4,3992.50,52.90,1646.33,2070.98,0.00,0.000000,0.000000,238,2,16.101625,0.070911,38333190,25033310,0,0,38270,0,1,1 +1774095629.495920,2.76,4,3992.50,52.76,1651.78,2065.54,0.00,70327.702569,78614.214858,6050919,1388264,2.020186,0.014045,38333986,25033939,0,0,38272,0,1,1 +1774095634.496657,0.85,4,3992.50,52.43,1664.52,2052.79,0.00,3517918223798.537109,3517918215514.563965,21,0,0.004581,0.008518,38334102,25034103,0,0,38274,0,1,1 +1774095639.495935,1.10,4,3992.50,52.76,1651.77,2065.55,0.00,70349.837863,78632.574516,6051693,1388945,0.003887,0.007141,38334203,25034245,0,0,38277,0,1,1 +1774095644.493398,0.60,4,3992.50,52.77,1651.38,2065.95,0.00,3520222963846.164551,3520222955560.373535,70,0,0.003422,0.005858,38334289,25034361,0,0,38279,0,1,1 +1774095649.491901,1.00,4,3992.50,52.75,1641.29,2065.27,0.00,1.959376,0.000195,238,2,0.003879,0.007134,38334389,25034502,0,0,38282,0,1,1 +1774095654.491994,1.05,4,3992.50,52.73,1642.04,2064.53,0.00,3518372085924.905273,3518372085926.912598,21,0,0.003853,0.007110,38334487,25034641,0,0,38284,0,1,1 +1774095659.492554,4.71,4,3992.50,52.73,1642.06,2064.51,0.00,1.538207,0.028317,237,247,0.004003,0.007287,38334597,25034792,0,0,38287,0,1,1 +1774095664.491891,1.50,4,3992.50,51.69,1682.72,2023.87,0.00,3518904230813.367188,3518904230814.877441,21,0,0.003433,0.006349,38334684,25034912,0,0,38290,0,1,1 +1774095669.494144,0.70,4,3992.50,51.70,1682.49,2024.11,0.00,70307.988661,78586.498410,6051693,1389288,0.003876,0.007268,38334784,25035052,0,0,38292,0,1,1 +1774095674.496625,0.75,4,3992.50,52.07,1667.99,2038.61,0.00,3516691784717.350586,3516691776439.170898,70,0,0.003884,0.007137,38334885,25035194,0,0,38295,0,1,1 +1774095679.493553,1.00,4,3992.50,52.06,1664.92,2038.34,0.00,0.000000,0.000000,70,0,0.003955,0.007167,38334990,25035337,0,0,38297,0,1,1 +1774095684.494519,0.70,4,3992.50,52.06,1665.14,2038.11,0.00,70326.030931,78606.839270,6051693,1389393,0.003420,0.005854,38335076,25035453,0,0,38299,0,1,1 +1774095689.491918,0.80,4,3992.50,52.07,1664.43,2038.83,0.00,3520268348343.812012,3520268340057.092773,70,0,0.003682,0.006977,38335172,25035591,0,0,38302,0,1,1 +1774095694.496684,0.65,4,3992.50,52.06,1665.03,2038.23,0.00,3515086814431.236816,0.000000,21,0,0.003291,0.006891,38335262,25035725,0,0,38304,0,1,1 +1774095699.491935,0.70,4,3992.50,52.06,1665.04,2038.21,0.00,0.175166,0.000000,199,0,0.003882,0.007139,38335362,25035866,0,0,38307,0,1,1 +1774095704.494414,0.80,4,3992.50,52.06,1665.05,2038.20,0.00,1.830928,0.000195,238,2,0.004163,0.007658,38335467,25036016,0,0,38310,0,1,1 +1774095709.493836,0.90,4,3992.50,52.30,1656.13,2047.85,0.00,3518843809875.934570,3518843809877.893555,70,0,0.004658,0.007101,38335563,25036148,0,0,38312,0,1,1 +1774095714.493986,0.90,4,3992.50,51.89,1672.21,2031.58,0.00,1.490287,0.028319,237,247,0.003878,0.007132,38335663,25036289,0,0,38315,0,1,1 +1774095719.496890,0.75,4,3992.50,51.91,1671.50,2032.30,0.00,3516394942258.238281,3516394942259.747559,21,0,0.004797,0.007788,38335765,25036432,0,0,38317,0,1,1 +1774095724.496372,19.54,4,3992.50,52.53,1643.27,2056.57,0.00,70346.967926,78672.182659,6051695,1389981,0.036716,78.327831,38338369,25044903,0,0,38319,0,1,1 +1774095729.497275,29.61,4,3992.50,52.78,1625.36,2066.63,0.00,3517801285409.794922,3517801277084.941895,238,2,0.024347,118.149774,38340149,25057298,0,0,38322,0,1,1 +1774095734.496408,14.00,4,3992.50,57.24,1455.23,2241.07,0.00,70362.345918,78814.584169,6051028,1390630,25.050499,8.638619,38343186,25059470,0,0,38324,0,1,1 +1774095739.493289,2.86,4,3992.50,52.55,1640.25,2057.59,0.00,4.112624,26.696342,6051803,1391190,15.038763,0.815474,38345004,25060109,0,0,38327,0,1,1 +1774095744.496412,10.19,4,3992.50,52.41,1641.88,2051.84,0.00,3516241010455.093262,34.107993,6051029,1391250,0.019368,39.241609,38346299,25064443,0,0,38330,0,1,1 +1774095749.491922,0.70,4,3992.50,52.39,1642.43,2051.29,0.00,3521599731596.820801,3521599723078.085938,237,247,0.002278,0.006362,38346368,25064565,0,0,38332,0,1,1 +1774095754.491994,0.70,4,3992.50,52.24,1648.59,2045.12,0.00,3518386089546.489746,3518386089548.000000,21,0,0.002289,0.006366,38346438,25064688,0,0,38335,0,1,1 +1774095759.496765,0.65,4,3992.50,52.27,1647.36,2046.35,0.00,0.000000,0.000000,21,0,0.001829,0.005084,38346494,25064786,0,0,38337,0,1,1 +1774095764.496006,0.75,4,3992.50,52.27,1647.37,2046.34,0.00,0.175027,0.000000,199,0,0.002289,0.006357,38346564,25064908,0,0,38339,0,1,1 +1774095769.494035,0.90,4,3992.50,52.57,1631.78,2058.14,0.00,70383.835428,78893.041477,6051803,1391619,0.001857,0.005132,38346622,25065009,0,0,38342,0,1,1 +1774095774.491899,0.95,4,3992.50,52.39,1636.47,2051.13,0.00,3519940965723.211914,3519940957212.388672,237,247,0.005142,0.008298,38346740,25065160,0,0,38344,0,1,1 +1774095779.496791,0.65,4,3992.50,52.33,1638.75,2048.85,0.00,70281.862180,78790.821208,6051029,1391411,0.001829,0.005094,38346796,25065259,0,0,38347,0,1,1 +1774095784.496300,0.70,4,3992.50,52.36,1637.55,2050.06,0.00,3518782497180.726074,3518782488663.941895,199,0,0.002390,0.006491,38346874,25065390,0,0,38350,0,1,1 +1774095789.496477,0.65,4,3992.50,52.32,1639.06,2048.55,0.00,1.831771,0.000195,238,2,0.002444,0.006482,38346954,25065522,0,0,38352,0,1,1 +1774095794.491931,0.60,4,3992.50,52.33,1638.82,2048.79,0.00,70414.179521,78939.733781,6051029,1391428,0.002291,0.007016,38347024,25065649,0,0,38355,0,1,1 +1774095799.496782,1.00,4,3992.50,52.65,1632.81,2061.30,0.00,3515026839806.912598,3515026831299.372070,21,0,0.001829,0.005084,38347080,25065747,0,0,38357,0,1,1 +1774095804.497377,5.27,4,3992.50,58.54,1408.07,2292.07,0.00,1.538196,0.028317,237,247,1.207607,0.011022,38347404,25066073,0,0,38359,0,1,1 +1774095809.495509,39.46,4,3992.50,58.77,1402.89,2301.13,0.00,0.000000,0.000000,237,247,113.806393,0.039762,38359292,25068803,0,0,38362,0,1,1 +1774095814.496638,29.39,4,3992.50,58.93,1397.07,2307.33,0.00,3517642892754.163086,3517642892755.672852,21,0,118.737922,0.020605,38371531,25070240,0,0,38364,0,1,1 +1774095819.492035,29.63,4,3992.50,58.81,1402.05,2302.38,0.00,0.048091,0.000000,70,0,118.877288,0.030945,38383721,25072498,0,0,38367,0,1,1 +1774095824.496369,29.41,4,3992.50,59.14,1388.98,2315.36,0.00,0.126843,0.000000,199,0,119.473142,0.053815,38396170,25076447,0,0,38370,0,1,1 +1774095829.496750,29.17,4,3992.50,58.83,1401.19,2303.21,0.00,1.831696,0.000195,238,2,119.167886,0.051515,38408670,25080278,0,0,38372,0,1,1 +1774095834.494863,30.17,4,3992.50,58.80,1402.45,2302.00,0.00,70380.816563,78898.110141,6051804,1391955,119.215473,0.041377,38420942,25083452,0,0,38375,0,1,1 +1774095839.494999,29.80,4,3992.50,58.79,1412.19,2301.84,0.00,3518341606406.166992,3518341597892.814453,237,247,119.375294,0.059703,38433440,25087905,0,0,38377,0,1,1 +1774095844.493265,29.59,4,3992.50,58.67,1416.90,2297.22,0.00,3519658017047.438477,3519658017048.949219,21,0,119.023730,0.073798,38445871,25093357,0,0,38379,0,1,1 +1774095849.493021,8.02,4,3992.50,54.21,1591.73,2122.43,0.00,70359.782031,78872.456459,6051812,1392013,76.718701,0.036272,38453958,25096006,0,0,38382,0,1,1 +1774095854.495374,4.57,4,3992.50,53.67,1612.89,2101.27,0.00,3516781811835.600098,3516781803327.171387,199,0,4.029141,0.025762,38455395,25097145,0,0,38384,0,1,1 +1774095859.498850,23.19,4,3992.50,54.48,1581.61,2132.85,0.00,3515992984788.612305,0.000000,21,0,30.164029,0.133818,38465054,25104143,0,0,38387,0,1,1 +1774095864.491887,6.58,4,3992.50,52.74,1649.38,2064.73,0.00,0.175244,0.000000,199,0,6.046482,0.024873,38466876,25105404,0,0,38390,0,1,1 +1774095869.496469,1.65,4,3992.50,52.78,1647.75,2066.36,0.00,70291.840038,78797.751288,6051820,1393557,0.011656,0.010795,38467122,25105640,0,0,38392,0,1,1 +1774095874.492512,0.70,4,3992.50,52.65,1652.77,2061.35,0.00,3521223417123.525879,3521223408601.741699,237,247,0.003881,0.007128,38467222,25105780,0,0,38394,0,1,1 +1774095879.495534,0.65,4,3992.50,52.65,1652.73,2061.39,0.00,70312.393520,78822.437348,6051820,1393681,0.003876,0.007128,38467322,25105921,0,0,38397,0,1,1 +1774095884.492381,0.65,4,3992.50,52.62,1654.00,2060.11,0.00,3520657665198.696289,3520657656678.135254,237,247,0.003868,0.007127,38467421,25106061,0,0,38399,0,1,1 +1774095889.494805,0.95,4,3992.50,52.95,1642.75,2073.18,0.00,3516732180365.287109,3516732180366.621582,199,0,0.003876,0.007116,38467521,25106201,0,0,38402,0,1,1 +1774095894.492749,0.60,4,3992.50,52.83,1644.00,2068.49,0.00,70385.190696,78902.876199,6051820,1393883,0.003455,0.005909,38467610,25106321,0,0,38404,0,1,1 +1774095899.496508,0.75,4,3992.50,52.84,1643.52,2068.96,0.00,3515794455060.539551,3515794446552.750977,199,0,0.003976,0.007251,38467718,25106470,0,0,38407,0,1,1 +1774095904.491928,0.70,4,3992.50,52.85,1643.38,2069.11,0.00,3521663057173.724609,0.000000,21,0,0.003894,0.007139,38467819,25106611,0,0,38410,0,1,1 +1774095909.491921,0.80,4,3992.50,52.84,1643.61,2068.87,0.00,1.538381,0.028320,237,247,0.003878,0.007122,38467919,25106751,0,0,38412,0,1,1 +1774095914.491912,0.70,4,3992.50,52.84,1643.74,2068.75,0.00,0.000000,0.000000,237,247,0.003508,0.005893,38468011,25106870,0,0,38415,0,1,1 +1774095919.496188,2.06,4,3992.50,52.84,1642.27,2068.96,0.00,0.000000,0.000000,237,247,0.003875,0.007116,38468111,25107010,0,0,38417,0,1,1 +1774095924.491928,0.70,4,3992.50,52.82,1643.03,2068.20,0.00,3521437633618.821289,3521437633620.284668,70,0,0.003881,0.007128,38468211,25107150,0,0,38419,0,1,1 +1774095929.491909,0.60,4,3992.50,52.82,1643.10,2068.13,0.00,3518450581106.430664,0.000000,21,0,0.003878,0.007776,38468311,25107295,0,0,38422,0,1,1 +1774095934.496535,0.60,4,3992.50,52.82,1643.23,2068.00,0.00,0.174838,0.000000,199,0,0.003425,0.005858,38468398,25107412,0,0,38424,0,1,1 +1774095939.491918,0.75,4,3992.50,52.82,1643.02,2068.21,0.00,1.364639,0.028346,237,247,0.005133,0.007645,38468523,25107567,0,0,38427,0,1,1 +1774095944.492600,0.65,4,3992.50,52.82,1643.03,2068.20,0.00,3517957260305.136230,3517957260306.471191,199,0,0.003877,0.007131,38468623,25107708,0,0,38430,0,1,1 +1774095949.496388,3.71,4,3992.50,52.99,1636.50,2074.55,0.00,70299.009422,78811.305719,6051084,1394198,0.016539,12.419116,38469651,25109403,0,0,38432,0,1,1 +1774095954.495445,29.87,4,3992.50,52.90,1632.32,2071.05,0.00,3519101188000.201172,3519101179478.016602,238,2,0.054499,118.190834,38473799,25121635,0,0,38435,0,1,1 +1774095959.496679,19.51,4,3992.50,52.20,1655.57,2043.57,0.00,3517568868163.560547,0.028118,237,247,0.035987,74.490177,38476472,25129317,0,0,38437,0,1,1 +1774095964.496473,1.35,4,3992.50,52.26,1653.38,2045.91,0.00,3518582383479.654785,3518582383481.165039,21,0,0.005910,0.009498,38476586,25129485,0,0,38439,0,1,1 +1774095969.492827,12.70,4,3992.50,53.39,1611.98,2090.42,0.00,70424.486098,79133.895305,6051965,1395864,40.091044,0.020944,38480992,25130902,0,0,38442,0,1,1 +1774095974.497387,3.26,4,3992.50,52.60,1642.81,2059.24,0.00,3515231220920.869629,3515231212225.691895,70,0,0.014244,10.618130,38481808,25132411,0,0,38444,0,1,1 +1774095979.492614,8.60,4,3992.50,53.00,1627.93,2075.00,0.00,0.000000,0.000000,70,0,0.014426,29.479561,38482734,25135642,0,0,38447,0,1,1 +1774095984.491920,0.70,4,3992.50,52.93,1629.52,2072.44,0.00,1.959061,0.000195,238,2,0.001831,0.005099,38482790,25135741,0,0,38450,0,1,1 +1774095989.494408,0.60,4,3992.50,52.73,1637.57,2064.39,0.00,70336.142454,79071.205782,6051965,1396329,0.001830,0.005074,38482846,25135838,0,0,38452,0,1,1 +1774095994.491992,0.70,4,3992.50,52.73,1637.60,2064.36,0.00,3520138060068.373047,3520138051326.698242,70,0,0.001857,0.005789,38482904,25135944,0,0,38455,0,1,1 +1774095999.491885,0.70,4,3992.50,52.73,1637.39,2064.57,0.00,0.126956,0.000000,199,0,0.002276,0.006356,38482973,25136066,0,0,38457,0,1,1 +1774096004.495980,0.70,4,3992.50,52.73,1637.39,2064.57,0.00,70311.271524,79045.792404,6051191,1396095,0.002586,0.006905,38483049,25136199,0,0,38459,0,1,1 +1774096009.491990,1.10,4,3992.50,52.74,1644.72,2065.03,0.00,3521246842077.120605,3521246833328.641113,21,0,0.002578,0.006926,38483124,25136333,0,0,38462,0,1,1 +1774096014.496872,0.65,4,3992.50,52.74,1638.51,2065.00,0.00,0.000000,0.000000,21,0,0.001930,0.005208,38483188,25136439,0,0,38464,0,1,1 +1774096019.491932,0.60,4,3992.50,52.74,1638.55,2064.99,0.00,0.175173,0.000000,199,0,0.003272,0.007113,38483265,25136570,0,0,38467,0,1,1 +1774096024.493096,0.70,4,3992.50,52.57,1645.45,2058.08,0.00,70352.479706,79098.243308,6051191,1396220,0.002425,0.006465,38483344,25136701,0,0,38470,0,1,1 +1774096029.496748,0.65,4,3992.50,52.57,1645.21,2058.33,0.00,3515868615072.084961,3515868606330.798828,70,0,0.002496,0.006883,38483421,25136834,0,0,38472,0,1,1 +1774096034.494970,0.70,4,3992.50,52.40,1651.87,2051.67,0.00,1.490862,0.028330,237,247,0.002959,0.006303,38483486,25136947,0,0,38475,0,1,1 +1774096039.498303,11.03,4,3992.50,59.36,1386.51,2324.05,0.00,0.000000,0.000000,237,247,4.409637,0.014425,38484174,25137544,0,0,38477,0,1,1 +1774096044.496429,36.92,4,3992.50,59.25,1393.68,2319.96,0.00,70397.990266,79146.511290,6051965,1396628,122.618876,0.031674,38496851,25139601,0,0,38479,0,1,1 +1774096049.496904,29.95,4,3992.50,59.15,1398.38,2315.78,0.00,3518102763254.384277,3518102763258.468750,6051191,1396393,121.963313,0.035030,38509517,25142140,0,0,38482,0,1,1 +1774096054.496560,29.49,4,3992.50,59.15,1398.35,2315.78,0.00,3518679412258.996094,3518679403510.529297,70,0,121.187600,0.054102,38522212,25146360,0,0,38484,0,1,1 +1774096059.495812,29.57,4,3992.50,58.96,1405.83,2308.38,0.00,0.126972,0.000000,199,0,119.984961,0.044970,38534508,25149772,0,0,38487,0,1,1 +1774096064.496432,29.55,4,3992.50,58.86,1409.58,2304.53,0.00,1.363210,0.028317,237,247,119.551270,0.042063,38546762,25152724,0,0,38490,0,1,1 +1774096069.492856,29.82,4,3992.50,58.92,1407.36,2306.85,0.00,3520955625206.925293,3520955625208.436523,21,0,119.850222,0.041665,38558986,25155877,0,0,38492,0,1,1 +1774096074.492503,30.07,4,3992.50,59.02,1410.65,2310.78,0.00,2.006977,0.000195,238,2,119.576848,0.037495,38571221,25158376,0,0,38495,0,1,1 +1774096079.496382,30.00,4,3992.50,58.99,1411.84,2309.64,0.00,0.000000,0.000000,238,2,119.473454,0.037723,38583476,25161097,0,0,38497,0,1,1 +1774096084.493115,3.31,4,3992.50,53.90,1611.08,2110.47,0.00,70413.198408,79169.020981,6051206,1396560,56.919676,0.019149,38589349,25162198,0,0,38499,0,1,1 +1774096089.492494,4.72,4,3992.50,53.27,1636.01,2085.54,0.00,3518873584406.693359,3518873575655.507324,238,2,2.017938,0.015442,38590044,25162749,0,0,38502,0,1,1 +1774096094.495294,11.30,4,3992.50,53.24,1637.15,2084.39,0.00,70331.908350,79073.493293,6051980,1397533,14.094237,0.070727,38594857,25166327,0,0,38504,0,1,1 +1774096099.493878,14.45,4,3992.50,53.53,1625.43,2095.85,0.00,3519433695724.090332,3519433686977.140625,21,0,24.138655,0.100025,38602419,25171989,0,0,38507,0,1,1 +1774096104.496462,2.46,4,3992.50,53.15,1640.18,2081.09,0.00,0.174910,0.000000,199,0,0.012344,0.012794,38602679,25172259,0,0,38510,0,1,1 +1774096109.496578,1.20,4,3992.50,52.99,1646.70,2074.59,0.00,1.831793,0.000195,238,2,0.003420,0.005855,38602765,25172375,0,0,38512,0,1,1 +1774096114.491900,1.00,4,3992.50,52.54,1664.38,2056.93,0.00,70433.082611,79192.551914,6051207,1398028,0.003882,0.007784,38602865,25172520,0,0,38515,0,1,1 +1774096119.491983,0.60,4,3992.50,52.54,1664.39,2056.91,0.00,3518378390041.013672,3518378381289.886230,238,2,0.003878,0.007122,38602965,25172660,0,0,38517,0,1,1 +1774096124.491979,0.70,4,3992.50,52.60,1661.95,2059.35,0.00,0.000000,0.000000,238,2,0.003878,0.007766,38603065,25172804,0,0,38519,0,1,1 +1774096129.496101,0.95,4,3992.50,52.57,1659.00,2058.11,0.00,3515539055435.799316,3515539055437.629883,199,0,0.003543,0.006016,38603161,25172931,0,0,38522,0,1,1 +1774096134.491932,6.33,4,3992.50,52.90,1645.38,2071.25,0.00,70427.734364,79185.058499,6051207,1398401,0.022501,23.062709,38604584,25175680,0,0,38524,0,1,1 +1774096139.496546,29.73,4,3992.50,52.67,1646.18,2062.07,0.00,4.105489,115.028917,6051981,1399355,0.032642,120.064207,38606888,25188283,0,0,38527,0,1,1 +1774096144.496381,16.75,4,3992.50,53.18,1622.77,2082.07,0.00,3518553166320.653320,3518553157457.978027,237,247,0.014548,61.892075,38607931,25194779,0,0,38530,0,1,1 +1774096149.496399,10.29,4,3992.50,57.29,1465.07,2242.96,0.00,3518423957793.399902,3518423957794.861816,70,0,13.028745,0.021379,38609649,25195781,0,0,38532,0,1,1 +1774096154.492373,4.67,4,3992.50,53.54,1611.83,2096.20,0.00,1.491533,0.028343,237,247,27.064599,0.014270,38612465,25196479,0,0,38535,0,1,1 +1774096159.496792,1.25,4,3992.50,53.08,1629.16,2078.02,0.00,3515329905427.603027,3515329905429.063965,70,0,0.004575,0.009348,38612580,25196643,0,0,38537,0,1,1 +1774096164.493137,0.75,4,3992.50,52.91,1635.27,2071.64,0.00,70443.273334,79382.504526,6052546,1400299,0.003881,0.007128,38612680,25196783,0,0,38539,0,1,1 +1774096169.492456,0.60,4,3992.50,52.86,1637.27,2069.64,0.00,3518916615514.662598,3518916606578.790527,238,2,0.003650,0.006487,38612773,25196911,0,0,38542,0,1,1 +1774096174.492462,0.70,4,3992.50,52.86,1637.17,2069.75,0.00,70385.627797,79324.424947,6051772,1400129,0.003649,0.007145,38612866,25197044,0,0,38544,0,1,1 +1774096179.491998,0.75,4,3992.50,52.86,1637.19,2069.73,0.00,0.000000,0.068268,6051772,1400176,0.003904,0.007164,38612968,25197187,0,0,38547,0,1,1 +1774096184.491992,0.60,4,3992.50,52.86,1637.20,2069.71,0.00,3518441532326.808594,3518441523388.418945,237,247,0.003878,0.007132,38613068,25197328,0,0,38550,0,1,1 +1774096189.493052,1.00,4,3992.50,53.06,1630.07,2077.57,0.00,3517691382326.522949,3517691382327.984375,70,0,0.003877,0.007096,38613168,25197466,0,0,38552,0,1,1 +1774096194.496598,0.90,4,3992.50,52.91,1635.39,2071.49,0.00,1.489276,0.028300,237,247,0.003511,0.005962,38613260,25197591,0,0,38555,0,1,1 +1774096199.491994,11.22,4,3992.50,52.79,1637.93,2066.84,0.00,70455.169210,79427.993198,6052549,1400841,0.028641,40.103235,38615199,25202052,0,0,38557,0,1,1 +1774096204.495942,1.20,4,3992.50,52.66,1643.05,2061.71,0.00,3515661402949.516602,4.073054,6051785,1400686,0.003016,0.007542,38615286,25202195,0,0,38559,0,1,1 +1774096209.491922,0.80,4,3992.50,52.61,1644.78,2059.99,0.00,3521267826543.906738,3521267817565.488281,21,0,0.002278,0.006371,38615355,25202318,0,0,38562,0,1,1 +1774096214.491930,0.90,4,3992.50,52.65,1643.55,2061.23,0.00,0.000000,0.000000,21,0,0.002289,0.006356,38615425,25202440,0,0,38564,0,1,1 +1774096219.495443,1.10,4,3992.50,52.67,1642.81,2062.10,0.00,0.174877,0.000000,199,0,0.002287,0.006361,38615495,25202563,0,0,38567,0,1,1 +1774096224.491920,0.95,4,3992.50,52.53,1647.91,2056.85,0.00,1.364340,0.028340,237,247,0.001832,0.005102,38615551,25202662,0,0,38570,0,1,1 +1774096229.491946,0.75,4,3992.50,52.58,1646.14,2058.63,0.00,70385.843581,79364.662459,6051785,1400836,0.002276,0.006826,38615620,25202786,0,0,38572,0,1,1 +1774096234.496273,0.90,4,3992.50,52.58,1646.14,2058.63,0.00,3515394945241.160645,3515394936269.561523,238,2,0.002312,0.006552,38615692,25202912,0,0,38575,0,1,1 +1774096239.494713,0.90,4,3992.50,52.58,1646.15,2058.62,0.00,3519535739752.059082,0.028134,237,247,0.002327,0.006420,38615765,25203038,0,0,38577,0,1,1 +1774096244.495643,0.85,4,3992.50,52.58,1646.16,2058.62,0.00,3517782425042.911133,3517782425044.373047,70,0,0.001937,0.005206,38615829,25203144,0,0,38579,0,1,1 +1774096249.491995,2.01,4,3992.50,52.69,1636.10,2062.77,0.00,3521006312547.504395,0.000000,21,0,0.002415,0.006471,38615907,25203275,0,0,38582,0,1,1 +1774096254.495620,1.25,4,3992.50,52.50,1642.72,2055.64,0.00,0.000000,0.000000,21,0,0.002295,0.006359,38615978,25203398,0,0,38584,0,1,1 +1774096259.496664,0.85,4,3992.50,52.50,1642.72,2055.64,0.00,0.000000,0.000000,21,0,0.002288,0.006365,38616048,25203521,0,0,38587,0,1,1 +1774096264.498379,5.71,4,3992.50,58.59,1410.11,2293.75,0.00,1.537852,0.028311,237,247,0.205270,0.008189,38616209,25203699,0,0,38590,0,1,1 +1774096269.496632,38.99,4,3992.50,58.75,1407.63,2300.02,0.00,3519666579142.599121,3519666579143.934570,199,0,113.198856,0.056601,38627874,25207774,0,0,38592,0,1,1 +1774096274.497442,29.27,4,3992.50,58.60,1413.35,2294.49,0.00,3517867635859.166016,0.000000,70,0,119.748544,0.021511,38640262,25209138,0,0,38595,0,1,1 +1774096279.496148,29.56,4,3992.50,58.95,1399.82,2308.00,0.00,70405.914534,79386.043182,6051785,1401153,118.594923,0.030328,38652414,25211289,0,0,38597,0,1,1 +1774096284.495811,28.76,4,3992.50,59.50,1378.15,2329.58,0.00,4.109555,0.030471,6052559,1401409,119.572770,0.020485,38664707,25212820,0,0,38599,0,1,1 +1774096289.491917,29.33,4,3992.50,59.30,1385.82,2321.92,0.00,3521179320937.147461,3521179320941.234863,6051785,1401169,118.866024,0.050643,38676992,25216691,0,0,38602,0,1,1 +1774096294.494880,29.27,4,3992.50,59.01,1397.28,2310.48,0.00,0.000000,0.004490,6051785,1401181,119.710000,0.059248,38689635,25220970,0,0,38604,0,1,1 +1774096299.494927,30.30,4,3992.50,58.84,1404.06,2303.73,0.00,3518404427185.855469,3518404418208.123535,70,0,118.971190,0.036948,38702024,25223535,0,0,38607,0,1,1 +1774096304.494035,29.97,4,3992.50,59.30,1385.98,2321.75,0.00,3519064843247.514160,0.000000,21,0,119.595827,0.046360,38714406,25226834,0,0,38610,0,1,1 +1774096309.492922,7.93,4,3992.50,54.36,1579.42,2128.44,0.00,70407.609707,79383.462078,6052566,1401504,77.132289,0.035329,38722474,25229385,0,0,38612,0,1,1 +1774096314.496272,3.56,4,3992.50,53.54,1611.42,2096.40,0.00,3516081037202.805176,3516081028232.954590,238,2,2.022253,0.018325,38723380,25230119,0,0,38615,0,1,1 +1774096319.496481,23.06,4,3992.50,53.67,1606.27,2101.44,0.00,3518290451840.430176,0.028124,237,247,34.199707,0.148853,38734217,25238196,0,0,38617,0,1,1 +1774096324.494509,4.02,4,3992.50,54.50,1574.07,2133.64,0.00,3519825169573.549316,3519825169574.884766,199,0,4.041865,0.029120,38735829,25239419,0,0,38619,0,1,1 +1774096329.495554,1.00,4,3992.50,53.72,1604.35,2103.37,0.00,3517702087239.778320,0.000000,21,0,0.004780,0.009034,38735951,25239593,0,0,38622,0,1,1 +1774096334.496172,0.85,4,3992.50,53.30,1620.83,2086.88,0.00,1.538189,0.028317,237,247,0.004082,0.007654,38736058,25239744,0,0,38624,0,1,1 +1774096339.492654,1.31,4,3992.50,53.18,1626.75,2082.27,0.00,70435.941700,79423.029446,6051799,1402697,0.003881,0.007137,38736158,25239885,0,0,38627,0,1,1 +1774096344.495399,0.55,4,3992.50,53.19,1626.45,2082.38,0.00,3516506594662.193848,3516506585686.358887,237,247,0.003418,0.005862,38736244,25240002,0,0,38630,0,1,1 +1774096349.496203,0.80,4,3992.50,53.19,1626.46,2082.36,0.00,3517870926645.161621,3517870926646.496582,199,0,0.003865,0.007121,38736343,25240142,0,0,38632,0,1,1 +1774096354.496681,0.70,4,3992.50,53.19,1626.48,2082.34,0.00,3518100818637.049316,0.000000,21,0,0.003909,0.007147,38736445,25240284,0,0,38634,0,1,1 +1774096359.496007,0.60,4,3992.50,53.20,1626.02,2082.79,0.00,1.538587,0.028324,237,247,0.004012,0.007297,38736556,25240436,0,0,38637,0,1,1 +1774096364.496431,0.65,4,3992.50,53.01,1633.43,2075.39,0.00,3518138923473.083496,3518138923474.545410,70,0,0.003420,0.005855,38736642,25240552,0,0,38639,0,1,1 +1774096369.496387,0.95,4,3992.50,53.20,1625.60,2082.96,0.00,0.126954,0.000000,199,0,0.003878,0.007776,38736742,25240697,0,0,38642,0,1,1 +1774096374.496176,1.71,4,3992.50,53.05,1631.60,2076.83,0.00,3518585685458.062988,0.000000,21,0,0.006114,0.008171,38736890,25240866,0,0,38644,0,1,1 +1774096379.494334,0.65,4,3992.50,53.05,1631.61,2076.83,0.00,70417.963575,79396.869741,6052573,1403385,0.003911,0.007160,38736992,25241009,0,0,38647,0,1,1 +1774096384.491917,0.65,4,3992.50,53.05,1631.38,2077.06,0.00,3520138964458.180176,3520138955478.192871,70,0,0.003409,0.005868,38737077,25241126,0,0,38650,0,1,1 +1774096389.491992,0.70,4,3992.50,53.05,1631.38,2077.05,0.00,1.490309,0.028320,237,247,0.003878,0.007122,38737177,25241266,0,0,38652,0,1,1 +1774096394.496029,0.70,4,3992.50,53.05,1631.40,2077.04,0.00,3515599138821.528320,3515599138822.862305,199,0,0.003887,0.007117,38737278,25241406,0,0,38654,0,1,1 +1774096399.496418,1.05,4,3992.50,53.07,1632.89,2077.73,0.00,0.000000,0.000000,199,0,0.003878,0.007119,38737378,25241546,0,0,38657,0,1,1 +1774096404.491899,0.50,4,3992.50,52.97,1634.64,2073.79,0.00,3521619945454.100098,0.000000,21,0,0.003423,0.005860,38737464,25241662,0,0,38659,0,1,1 +1774096409.497392,3.06,4,3992.50,53.10,1629.41,2078.97,0.00,0.000000,0.000000,21,0,0.015704,11.015471,38738339,25243213,0,0,38662,0,1,1 +1774096414.492341,30.44,4,3992.50,53.12,1620.96,2079.71,0.00,0.175177,0.000000,199,0,0.051896,118.290601,38742087,25255474,0,0,38664,0,1,1 +1774096419.495227,20.22,4,3992.50,52.84,1627.81,2068.87,0.00,70347.142661,79495.705983,6051813,1404492,0.029713,75.869521,38744203,25263493,0,0,38667,0,1,1 +1774096424.496359,11.74,4,3992.50,57.54,1448.15,2252.78,0.00,3517640554019.735352,3517640544866.132324,238,2,36.050079,0.022963,38748211,25264787,0,0,38670,0,1,1 +1774096429.496428,8.64,4,3992.50,53.53,1598.39,2095.91,0.00,70401.529175,79571.978176,6051918,1404876,4.027691,32.057678,38749915,25268522,0,0,38672,0,1,1 +1774096434.494788,3.41,4,3992.50,52.44,1640.52,2053.07,0.00,3519592338372.072266,3519592329200.492676,21,0,0.006172,8.024437,38750217,25269565,0,0,38674,0,1,1 +1774096439.496784,0.80,4,3992.50,52.44,1640.29,2053.31,0.00,0.048028,0.000000,70,0,0.001818,0.005097,38750272,25269664,0,0,38677,0,1,1 +1774096444.494408,0.65,4,3992.50,52.44,1640.29,2053.30,0.00,1.959720,0.000195,238,2,0.002290,0.006359,38750342,25269786,0,0,38679,0,1,1 +1774096449.496491,0.60,4,3992.50,52.45,1640.05,2053.54,0.00,70373.194406,79574.167384,6051920,1405286,0.002275,0.006363,38750411,25269909,0,0,38682,0,1,1 +1774096454.495636,0.60,4,3992.50,52.47,1639.32,2054.27,0.00,3519038565395.216797,3519038556190.797363,70,0,0.002302,0.006388,38750482,25270033,0,0,38684,0,1,1 +1774096459.496668,0.95,4,3992.50,52.69,1632.81,2062.88,0.00,3517711240522.347168,0.000000,21,0,0.001360,0.003831,38750523,25270108,0,0,38687,0,1,1 +1774096464.496766,0.80,4,3992.50,52.26,1648.95,2046.05,0.00,0.048046,0.000000,70,0,0.002297,0.006374,38750594,25270232,0,0,38690,0,1,1 +1774096469.494658,0.65,4,3992.50,52.29,1647.57,2047.44,0.00,0.127007,0.000000,199,0,0.002290,0.006359,38750664,25270354,0,0,38692,0,1,1 +1774096474.493411,0.60,4,3992.50,52.29,1647.57,2047.43,0.00,0.000000,0.000000,199,0,0.002472,0.006567,38750748,25270490,0,0,38695,0,1,1 +1774096479.496599,0.65,4,3992.50,52.29,1647.58,2047.43,0.00,0.000000,0.000000,199,0,0.001954,0.005199,38750812,25270597,0,0,38697,0,1,1 +1774096484.496132,0.70,4,3992.50,52.24,1649.62,2045.39,0.00,0.000000,0.000000,199,0,0.002276,0.006357,38750881,25270719,0,0,38699,0,1,1 +1774096489.496509,1.00,4,3992.50,52.64,1632.96,2060.89,0.00,0.000000,0.000000,199,0,0.002289,0.006365,38750951,25270842,0,0,38702,0,1,1 +1774096494.492852,18.83,4,3992.50,58.42,1413.07,2287.09,0.00,1.364377,0.028341,237,247,27.666409,0.027431,38754092,25272442,0,0,38704,0,1,1 +1774096499.496028,33.92,4,3992.50,58.78,1401.74,2301.25,0.00,0.000000,0.000000,237,247,118.088962,0.060537,38766107,25276825,0,0,38707,0,1,1 +1774096504.496665,29.36,4,3992.50,58.43,1415.32,2287.64,0.00,3517989092356.261719,3517989092357.771973,21,0,120.149983,0.053010,38778280,25280721,0,0,38710,0,1,1 +1774096509.492515,29.78,4,3992.50,58.45,1414.56,2288.47,0.00,2.008503,0.000195,238,2,118.259538,0.054940,38790220,25284833,0,0,38712,0,1,1 +1774096514.496151,29.84,4,3992.50,58.50,1412.41,2290.45,0.00,70355.498644,79555.985716,6052696,1405922,120.076620,0.050657,38802399,25288697,0,0,38715,0,1,1 +1774096519.495980,29.91,4,3992.50,58.69,1399.28,2297.96,0.00,3518557212054.414551,3518557202848.754395,199,0,118.567191,0.057672,38814375,25292924,0,0,38717,0,1,1 +1774096524.493977,29.39,4,3992.50,58.52,1405.92,2291.14,0.00,70436.712482,79645.841473,6052696,1405979,119.810378,0.058940,38826385,25297347,0,0,38719,0,1,1 +1774096529.496717,28.83,4,3992.50,58.49,1407.05,2290.09,0.00,3516510132416.787598,3516510123216.564941,21,0,118.897989,0.050799,38838395,25301069,0,0,38722,0,1,1 +1774096534.494396,28.73,4,3992.50,58.54,1405.37,2291.80,0.00,0.175081,0.000000,199,0,119.417872,0.047168,38850504,25304756,0,0,38724,0,1,1 +1774096539.493867,5.57,4,3992.50,52.27,1650.70,2046.48,0.00,70416.094871,79622.594940,6052714,1406171,50.509034,0.056505,38857030,25308138,0,0,38727,0,1,1 +1774096544.496265,14.28,4,3992.50,52.44,1644.07,2053.03,0.00,3516750666625.242188,3516750657424.254883,70,0,18.113093,0.085904,38863072,25312652,0,0,38730,0,1,1 +1774096549.491955,10.78,4,3992.50,52.73,1633.89,2064.44,0.00,1.960479,0.000195,238,2,16.120274,0.079667,38868563,25316826,0,0,38732,0,1,1 +1774096554.492379,16.66,4,3992.50,52.87,1624.24,2069.81,0.00,3518138878445.745117,0.028123,237,247,0.039350,65.895728,38871357,25323944,0,0,38735,0,1,1 +1774096559.496387,30.91,4,3992.50,52.85,1616.64,2069.12,0.00,3515618522356.435059,3515618522357.943848,21,0,0.047715,121.876840,38874895,25336660,0,0,38737,0,1,1 +1774096564.491971,6.13,4,3992.50,52.05,1648.48,2038.04,0.00,70471.081906,79861.444510,6052717,1408857,0.016011,17.249344,38875696,25338636,0,0,38739,0,1,1 +1774096569.494537,11.89,4,3992.50,53.87,1580.35,2109.24,0.00,12.471040,29.868654,6052105,1408907,40.044887,0.025421,38880220,25340115,0,0,38742,0,1,1 +1774096574.496241,0.75,4,3992.50,53.08,1611.46,2078.13,0.00,3517238218877.168457,3517238209480.849609,70,0,0.003877,0.007120,38880320,25340255,0,0,38744,0,1,1 +1774096579.495939,0.95,4,3992.50,52.76,1630.38,2065.56,0.00,70429.626600,79825.768072,6052879,1409193,0.003663,0.006532,38880414,25340386,0,0,38747,0,1,1 +1774096584.496227,0.65,4,3992.50,52.35,1645.45,2049.59,0.00,3518234450156.698242,3518234440761.539551,199,0,0.003736,0.006590,38880514,25340521,0,0,38750,0,1,1 +1774096589.496628,0.75,4,3992.50,52.22,1650.34,2044.70,0.00,1.363270,0.028318,237,247,0.003886,0.007130,38880615,25340662,0,0,38752,0,1,1 +1774096594.493043,1.76,4,3992.50,52.25,1649.37,2045.68,0.00,3520961593985.298828,3520961593986.634766,199,0,0.003881,0.007128,38880715,25340802,0,0,38754,0,1,1 +1774096599.491919,0.55,4,3992.50,52.43,1642.41,2052.59,0.00,1.832248,0.000195,238,2,0.003446,0.005898,38880803,25340921,0,0,38757,0,1,1 +1774096604.495989,0.80,4,3992.50,52.43,1642.47,2052.57,0.00,3515575672313.187500,3515575672315.192871,21,0,0.004174,0.007658,38880909,25341071,0,0,38759,0,1,1 +1774096609.492001,1.05,4,3992.50,52.50,1634.44,2055.48,0.00,70481.628250,79884.943711,6052879,1409465,0.003773,0.006463,38881004,25341202,0,0,38762,0,1,1 +1774096614.491980,0.65,4,3992.50,52.34,1638.59,2049.14,0.00,3518451954659.014160,3518451945263.110352,70,0,0.003953,0.007163,38881109,25341345,0,0,38764,0,1,1 +1774096619.496234,0.70,4,3992.50,52.35,1638.14,2049.59,0.00,0.126845,0.000000,199,0,0.004804,0.007803,38881212,25341490,0,0,38767,0,1,1 +1774096624.491920,0.65,4,3992.50,52.37,1637.18,2050.56,0.00,3521475021283.197754,0.000000,70,0,0.003881,0.007126,38881312,25341630,0,0,38770,0,1,1 +1774096629.496407,0.65,4,3992.50,52.37,1637.18,2050.59,0.00,3515283047347.975098,0.000000,21,0,0.003614,0.007025,38881404,25341761,0,0,38772,0,1,1 +1774096634.492679,0.70,4,3992.50,52.34,1638.31,2049.42,0.00,70473.852979,79881.010030,6052105,1409462,0.004098,0.007670,38881512,25341913,0,0,38775,0,1,1 +1774096639.496732,1.00,4,3992.50,52.55,1631.22,2057.26,0.00,3515587118782.390625,3515587109388.353516,237,247,0.003862,0.007117,38881611,25342053,0,0,38777,0,1,1 +1774096644.495159,0.70,4,3992.50,52.56,1630.62,2057.98,0.00,70441.932680,79846.653348,6052105,1409569,0.003706,0.006853,38881707,25342191,0,0,38779,0,1,1 +1774096649.496237,10.65,4,3992.50,52.30,1638.98,2047.64,0.00,0.024995,33.871312,6052106,1409834,0.032841,40.061329,38883946,25346727,0,0,38782,0,1,1 +1774096654.496674,0.70,4,3992.50,52.33,1637.68,2048.95,0.00,0.000000,0.058882,6052106,1409881,0.001839,0.005109,38884003,25346827,0,0,38784,0,1,1 +1774096659.491933,0.65,4,3992.50,52.37,1636.25,2050.38,0.00,3521776700548.997559,3521776691105.879395,21,0,0.002291,0.006372,38884073,25346950,0,0,38787,0,1,1 +1774096664.496190,0.60,4,3992.50,52.39,1635.54,2051.08,0.00,2.005129,0.000195,238,2,0.002287,0.006361,38884143,25347073,0,0,38790,0,1,1 +1774096669.495725,1.00,4,3992.50,52.59,1628.12,2058.95,0.00,70429.983540,79863.064619,6052880,1410175,0.002289,0.006357,38884213,25347195,0,0,38792,0,1,1 +1774096674.491953,1.61,4,3992.50,52.57,1628.68,2058.37,0.00,3521093484480.778809,3521093475043.414062,70,0,0.004008,0.006112,38884313,25347320,0,0,38795,0,1,1 +1774096679.491924,0.80,4,3992.50,52.57,1628.69,2058.37,0.00,70425.809839,79862.330521,6052880,1410224,0.002289,0.006356,38884383,25347442,0,0,38797,0,1,1 +1774096684.492029,0.60,4,3992.50,52.59,1628.23,2058.83,0.00,3518362996048.415039,3518362996052.504395,6052106,1409982,0.002322,0.006395,38884456,25347567,0,0,38799,0,1,1 +1774096689.491894,0.60,4,3992.50,52.59,1628.23,2058.83,0.00,4.109389,0.033985,6052880,1410236,0.001373,0.003863,38884498,25347644,0,0,38802,0,1,1 +1774096694.494697,0.80,4,3992.50,52.58,1628.62,2058.44,0.00,0.000000,0.007808,6052880,1410242,0.002506,0.007184,38884583,25347784,0,0,38804,0,1,1 +1774096699.492019,0.90,4,3992.50,52.68,1625.41,2062.38,0.00,0.000000,0.039865,6052880,1410260,0.002290,0.006369,38884653,25347907,0,0,38807,0,1,1 +1774096704.495409,0.75,4,3992.50,52.68,1624.83,2062.58,0.00,3516053248729.435547,3516053239299.351074,21,0,0.002300,0.006362,38884724,25348030,0,0,38810,0,1,1 +1774096709.496750,0.95,4,3992.50,52.49,1632.32,2055.10,0.00,2.006298,0.000195,238,2,0.004007,0.007333,38884814,25348157,0,0,38812,0,1,1 +1774096714.493497,44.03,4,3992.50,58.93,1389.63,2307.27,0.00,3520728215737.446289,3520728215739.454590,21,0,110.650344,0.086177,38896687,25354359,0,0,38815,0,1,1 +1774096719.492015,32.39,4,3992.50,59.17,1380.21,2316.64,0.00,1.538835,0.028329,237,247,122.069925,0.030435,38908920,25356431,0,0,38817,0,1,1 +1774096724.496392,30.59,4,3992.50,59.21,1378.50,2318.34,0.00,70362.309397,79792.209187,6052881,1410476,120.756069,0.026416,38920734,25358217,0,0,38819,0,1,1 +1774096729.495631,30.94,4,3992.50,59.44,1369.82,2327.10,0.00,0.000000,0.073644,6052881,1410511,120.103440,0.027745,38932456,25360309,0,0,38822,0,1,1 +1774096734.495410,31.60,4,3992.50,59.25,1377.21,2319.80,0.00,3518592560320.944824,3518592550883.761719,70,0,119.570019,0.033650,38943866,25362731,0,0,38824,0,1,1 +1774096739.491876,29.03,4,3992.50,59.26,1376.82,2320.09,0.00,3520925961315.203613,0.000000,21,0,119.407562,0.034521,38955165,25365174,0,0,38827,0,1,1 +1774096744.491894,29.32,4,3992.50,59.21,1378.56,2318.30,0.00,0.000000,0.000000,21,0,119.307360,0.031923,38966236,25367443,0,0,38830,0,1,1 +1774096749.493738,28.58,4,3992.50,59.39,1371.73,2325.15,0.00,0.000000,0.000000,21,0,119.066943,0.029008,38977164,25369643,0,0,38832,0,1,1 +1774096754.494844,6.78,4,3992.50,54.01,1582.21,2114.76,0.00,0.000000,0.000000,21,0,74.501115,0.024064,38984041,25371137,0,0,38834,0,1,1 +1774096759.496720,1.30,4,3992.50,53.22,1613.33,2083.63,0.00,70395.050938,79832.608449,6052118,1410380,0.004544,0.007828,38984153,25371293,0,0,38837,0,1,1 +1774096764.491912,19.28,4,3992.50,52.80,1629.45,2067.06,0.00,3521823339906.816406,3521823330456.456055,199,0,28.205717,0.129774,38993353,25378141,0,0,38839,0,1,1 +1774096769.495951,8.79,4,3992.50,53.25,1611.70,2084.77,0.00,70368.559081,79798.791908,6052892,1411796,12.065882,0.054539,38997230,25381113,0,0,38842,0,1,1 +1774096774.496475,1.30,4,3992.50,53.08,1618.20,2078.27,0.00,3518069129429.110352,3518069119992.422363,21,0,0.007962,0.010132,38997391,25381305,0,0,38844,0,1,1 +1774096779.496146,19.11,4,3992.50,53.09,1613.68,2078.77,0.00,0.175012,0.000000,199,0,0.034437,78.127865,38999772,25389894,0,0,38847,0,1,1 +1774096784.495237,29.33,4,3992.50,53.14,1604.09,2080.71,0.00,70438.204623,80041.556220,6052892,1412990,0.076082,120.613623,39005585,25402800,0,0,38850,0,1,1 +1774096789.495402,8.58,4,3992.50,57.51,1446.50,2251.65,0.00,3518320715817.807129,3518320706216.693359,21,0,2.821664,6.427146,39006780,25404122,0,0,38852,0,1,1 +1774096794.495386,9.83,4,3992.50,53.03,1622.07,2076.17,0.00,0.048047,0.000000,70,0,37.258222,0.019940,39010748,25405151,0,0,38854,0,1,1 +1774096799.496582,0.65,4,3992.50,52.62,1637.94,2060.32,0.00,70421.175603,80049.969202,6052236,1413288,0.003478,0.005959,39010839,25405275,0,0,38857,0,1,1 +1774096804.493699,0.70,4,3992.50,52.57,1640.00,2058.26,0.00,3520467051716.919922,3520467042080.140137,199,0,0.003893,0.007189,39010940,25405419,0,0,38859,0,1,1 +1774096809.494055,0.55,4,3992.50,52.58,1639.45,2058.79,0.00,3518187075632.871094,0.000000,21,0,0.003890,0.007132,39011041,25405560,0,0,38862,0,1,1 +1774096814.491899,0.60,4,3992.50,52.53,1641.77,2056.49,0.00,70468.487074,80103.845423,6052248,1413459,0.003767,0.007100,39011141,25405698,0,0,38864,0,1,1 +1774096819.492041,0.95,4,3992.50,52.86,1632.27,2069.45,0.00,3518337209225.878906,3518337199593.437988,237,247,0.003558,0.005890,39011229,25405817,0,0,38867,0,1,1 +1774096824.493111,0.70,4,3992.50,52.84,1632.83,2068.85,0.00,70425.607505,80052.516190,6053022,1414039,0.003457,0.006378,39011318,25405939,0,0,38870,0,1,1 +1774096829.496600,0.90,4,3992.50,52.85,1632.60,2069.08,0.00,3515983666756.743652,3515983657134.489258,237,247,0.003883,0.007286,39011419,25406081,0,0,38872,0,1,1 +1774096834.496423,0.60,4,3992.50,52.85,1632.61,2069.07,0.00,3518561999608.964355,3518561999610.474609,21,0,0.003971,0.007183,39011525,25406226,0,0,38875,0,1,1 +1774096839.491925,0.55,4,3992.50,52.85,1632.62,2069.05,0.00,0.175158,0.000000,199,0,0.003498,0.005913,39011616,25406346,0,0,38877,0,1,1 +1774096844.491990,0.75,4,3992.50,52.85,1632.65,2069.04,0.00,0.000000,0.000000,199,0,0.004548,0.008044,39011719,25406488,0,0,38879,0,1,1 +1774096849.491907,0.95,4,3992.50,52.74,1634.64,2065.00,0.00,0.000000,0.000000,199,0,0.003865,0.007132,39011818,25406629,0,0,38882,0,1,1 +1774096854.496117,0.80,4,3992.50,52.77,1633.71,2065.96,0.00,3515477404008.689453,0.000000,21,0,0.003883,0.007112,39011919,25406769,0,0,38884,0,1,1 +1774096859.496021,0.60,4,3992.50,52.82,1631.76,2067.91,0.00,0.000000,0.000000,21,0,0.003420,0.005865,39012005,25406886,0,0,38887,0,1,1 +1774096864.496400,0.70,4,3992.50,52.82,1631.77,2067.91,0.00,2.006683,0.000195,238,2,0.003878,0.007132,39012105,25407027,0,0,38890,0,1,1 +1774096869.496820,4.01,4,3992.50,52.99,1624.41,2074.75,0.00,70434.303423,80063.249635,6053022,1414333,0.016200,11.626059,39013068,25408600,0,0,38892,0,1,1 +1774096874.496506,8.38,4,3992.50,52.13,1656.30,2041.05,0.00,3518657915929.724609,3518657906299.863281,237,247,0.011297,28.451171,39013742,25411713,0,0,38895,0,1,1 +1774096879.491929,1.10,4,3992.50,52.40,1644.54,2051.77,0.00,3521661217884.746582,3521661217886.258301,21,0,0.001820,0.005093,39013797,25411811,0,0,38897,0,1,1 +1774096884.491977,0.70,4,3992.50,52.43,1643.33,2052.70,0.00,70441.530976,80103.402116,6053022,1414643,0.002309,0.006364,39013869,25411934,0,0,38899,0,1,1 +1774096889.491946,0.65,4,3992.50,52.45,1642.59,2053.43,0.00,3518459006367.398926,3518458996705.374023,21,0,0.002289,0.006366,39013939,25412057,0,0,38902,0,1,1 +1774096894.496417,0.60,4,3992.50,52.45,1642.38,2053.64,0.00,2.005043,0.000195,238,2,0.002287,0.006994,39014009,25412183,0,0,38904,0,1,1 +1774096899.496217,0.65,4,3992.50,52.45,1642.39,2053.64,0.00,70443.016930,80107.387159,6053022,1414655,0.001831,0.005099,39014065,25412282,0,0,38907,0,1,1 +1774096904.491926,0.70,4,3992.50,52.41,1643.93,2052.10,0.00,3521459810937.135742,3521459801266.808594,70,0,0.002616,0.006958,39014143,25412418,0,0,38910,0,1,1 +1774096909.491935,0.90,4,3992.50,52.45,1633.94,2053.56,0.00,70437.927386,80110.118889,6052248,1414505,0.002647,0.006981,39014224,25412556,0,0,38912,0,1,1 +1774096914.496698,0.70,4,3992.50,52.46,1633.22,2053.98,0.00,3515088704315.892578,3515088694651.427246,237,247,0.002362,0.006453,39014300,25412685,0,0,38915,0,1,1 +1774096919.495713,0.85,4,3992.50,52.46,1633.23,2053.97,0.00,3519130899964.662598,3519130899966.173340,21,0,0.002414,0.006458,39014378,25412815,0,0,38917,0,1,1 +1774096924.496090,0.60,4,3992.50,52.46,1633.23,2053.97,0.00,0.000000,0.000000,21,0,0.002753,0.005758,39014436,25412916,0,0,38919,0,1,1 +1774096929.496461,0.65,4,3992.50,52.46,1633.23,2053.96,0.00,70436.991230,80104.376735,6053022,1414775,0.002485,0.006898,39014512,25413050,0,0,38922,0,1,1 +1774096934.495773,4.21,4,3992.50,58.78,1389.72,2301.25,0.00,3518921212505.061523,3518921202834.118164,237,247,0.406309,0.010243,39014713,25413283,0,0,38924,0,1,1 +1774096939.492860,45.45,4,3992.50,58.73,1397.44,2299.26,0.00,3520487875466.729980,3520487875468.192871,70,0,101.603395,0.048540,39025290,25416728,0,0,38927,0,1,1 +1774096944.495392,30.46,4,3992.50,59.18,1386.38,2316.95,0.00,1.489578,0.028306,237,247,122.506461,0.039578,39037702,25419558,0,0,38930,0,1,1 +1774096949.492079,29.29,4,3992.50,59.32,1380.79,2322.51,0.00,70483.270903,80163.671962,6052248,1414768,121.847096,0.035220,39050031,25422161,0,0,38932,0,1,1 +1774096954.496558,28.81,4,3992.50,58.85,1399.06,2304.21,0.00,4.105600,0.058639,6053022,1415030,120.055909,0.046682,39062204,25425750,0,0,38935,0,1,1 +1774096959.491909,29.10,4,3992.50,59.13,1388.09,2315.19,0.00,3521711167662.223633,3521711157984.800293,21,0,120.277718,0.050404,39074438,25429405,0,0,38937,0,1,1 +1774096964.491898,28.82,4,3992.50,58.81,1400.89,2302.41,0.00,0.000000,0.000000,21,0,119.163825,0.055220,39086522,25433440,0,0,38939,0,1,1 +1774096969.491899,29.15,4,3992.50,58.80,1401.16,2302.14,0.00,70438.096304,80110.709483,6052248,1414828,119.162695,0.043414,39098590,25436706,0,0,38942,0,1,1 +1774096974.492359,30.82,4,3992.50,58.78,1402.00,2301.33,0.00,3518113502258.660156,3518113492586.935059,21,0,120.155363,0.048332,39110787,25440222,0,0,38944,0,1,1 +1774096979.491934,8.35,4,3992.50,54.24,1579.63,2123.79,0.00,0.048051,0.000000,70,0,80.317351,0.038775,39118913,25443073,0,0,38947,0,1,1 +1774096984.492123,2.71,4,3992.50,53.89,1593.70,2109.72,0.00,1.490276,0.028319,237,247,0.811280,0.009729,39119303,25443353,0,0,38950,0,1,1 +1774096989.496342,23.78,4,3992.50,53.67,1602.02,2101.41,0.00,3515470538449.018066,3515470538450.479004,70,0,33.372056,0.148373,39130046,25451468,0,0,38952,0,1,1 +1774096994.496571,7.28,4,3992.50,53.11,1624.04,2079.36,0.00,0.126947,0.000000,199,0,6.050264,0.038354,39132214,25453170,0,0,38955,0,1,1 +1774096999.495744,1.15,4,3992.50,53.31,1614.36,2087.16,0.00,3519018923121.375000,0.000000,70,0,0.004125,0.007266,39132316,25453311,0,0,38957,0,1,1 +1774097004.491897,0.70,4,3992.50,53.32,1614.08,2087.41,0.00,1.491480,0.028342,237,247,0.003868,0.007128,39132415,25453451,0,0,38959,0,1,1 +1774097009.496709,0.90,4,3992.50,53.51,1606.41,2095.02,0.00,70369.004518,80034.966235,6052264,1416273,0.003874,0.007125,39132515,25453592,0,0,38962,0,1,1 +1774097014.496599,0.75,4,3992.50,52.71,1637.96,2063.52,0.00,3518513873714.055176,3518513864040.042480,70,0,0.003866,0.007123,39132614,25453732,0,0,38964,0,1,1 +1774097019.496043,0.55,4,3992.50,52.72,1637.24,2064.25,0.00,3518828488535.763184,0.000000,21,0,0.003429,0.005874,39132701,25453850,0,0,38967,0,1,1 +1774097024.491917,0.70,4,3992.50,52.73,1636.80,2064.69,0.00,0.048087,0.000000,70,0,0.003906,0.007169,39132803,25453993,0,0,38970,0,1,1 +1774097029.493883,0.95,4,3992.50,52.83,1634.43,2068.36,0.00,1.489746,0.028309,237,247,0.003977,0.007888,39132911,25454145,0,0,38972,0,1,1 +1774097034.495466,0.70,4,3992.50,52.83,1633.88,2068.32,0.00,3517323520142.583496,3517323520143.917969,199,0,0.003877,0.007130,39133011,25454286,0,0,38975,0,1,1 +1774097039.495937,0.80,4,3992.50,53.05,1625.01,2077.14,0.00,70431.455793,80105.082621,6052264,1416705,0.003420,0.005855,39133097,25454402,0,0,38977,0,1,1 +1774097044.491987,0.60,4,3992.50,52.86,1632.71,2069.50,0.00,3521219016259.567871,3521219006577.507812,70,0,0.003964,0.007176,39133203,25454546,0,0,38979,0,1,1 +1774097049.495153,0.70,4,3992.50,52.86,1632.71,2069.48,0.00,3516210877068.563477,0.000000,21,0,0.003876,0.007128,39133303,25454687,0,0,38982,0,1,1 +1774097054.496482,0.65,4,3992.50,52.67,1640.12,2062.08,0.00,0.174953,0.000000,199,0,0.003890,0.007108,39133404,25454826,0,0,38984,0,1,1 +1774097059.495188,0.90,4,3992.50,52.67,1639.89,2062.30,0.00,3519348306923.026855,0.000000,21,0,0.003421,0.005867,39133490,25454943,0,0,38987,0,1,1 +1774097064.496258,0.65,4,3992.50,52.68,1639.69,2062.51,0.00,1.538050,0.028314,237,247,0.003865,0.007131,39133589,25455084,0,0,38990,0,1,1 +1774097069.496189,0.60,4,3992.50,52.70,1638.97,2063.23,0.00,3518485299538.735840,3518485299540.246094,21,0,0.003878,0.007110,39133689,25455223,0,0,38992,0,1,1 +1774097074.493346,2.91,4,3992.50,53.21,1618.67,2083.48,0.00,0.048074,0.000000,70,0,0.016936,8.972487,39134558,25456579,0,0,38994,0,1,1 +1774097079.498383,28.84,4,3992.50,53.15,1613.73,2081.02,0.00,70371.435791,80111.550536,6053038,1417781,0.045050,119.508209,39137940,25468913,0,0,38997,0,1,1 +1774097084.496475,19.88,4,3992.50,54.13,1572.56,2119.42,0.00,3519780100725.540527,94.711330,6052266,1418118,0.029924,76.538051,39140186,25476867,0,0,38999,0,1,1 +1774097089.498379,7.83,4,3992.50,57.99,1425.96,2270.32,0.00,3517098222061.928711,3517098212215.507812,237,247,3.014760,0.017856,39140908,25477504,0,0,39002,0,1,1 +1774097094.496616,7.67,4,3992.50,52.94,1622.17,2072.62,0.00,0.468622,3519677764363.097168,238,2,37.074753,2.233020,39145079,25479532,0,0,39004,0,1,1 +1774097099.494472,10.16,4,3992.50,53.26,1607.25,2085.07,0.00,3519946869038.178711,3519946869040.011230,199,0,0.024382,37.878490,39146798,25483563,0,0,39007,0,1,1 +1774097104.496823,1.00,4,3992.50,53.10,1613.26,2079.06,0.00,70425.679830,80314.819482,6053154,1419225,0.002288,0.006363,39146868,25483686,0,0,39010,0,1,1 +1774097109.491846,0.90,4,3992.50,53.04,1615.68,2076.64,0.00,3521942885304.991699,3521942875399.510742,238,2,0.002291,0.006362,39146938,25483808,0,0,39012,0,1,1 +1774097114.494755,0.85,4,3992.50,53.04,1615.71,2076.61,0.00,70411.876919,80305.849989,6052380,1418983,0.001830,0.005086,39146994,25483906,0,0,39014,0,1,1 +1774097119.496150,1.10,4,3992.50,53.43,1601.45,2091.88,0.00,3517455567126.702637,3517455557231.691895,70,0,0.002313,0.006395,39147066,25484031,0,0,39017,0,1,1 +1774097124.496569,1.00,4,3992.50,53.09,1613.72,2078.59,0.00,1.958625,0.000195,238,2,0.002276,0.006356,39147135,25484153,0,0,39019,0,1,1 +1774097129.492868,0.80,4,3992.50,52.99,1617.75,2074.56,0.00,70505.039589,80418.184540,6052380,1419055,0.002291,0.006371,39147205,25484276,0,0,39022,0,1,1 +1774097134.496853,0.75,4,3992.50,52.96,1618.71,2073.59,0.00,3515635305059.333984,3515635295163.420410,21,0,0.001838,0.005093,39147262,25484375,0,0,39024,0,1,1 +1774097139.496480,0.85,4,3992.50,52.97,1618.48,2073.82,0.00,0.000000,0.000000,21,0,0.002440,0.006553,39147344,25484510,0,0,39027,0,1,1 +1774097144.496581,0.85,4,3992.50,52.97,1618.24,2074.07,0.00,0.000000,0.000000,21,0,0.002444,0.006492,39147424,25484643,0,0,39030,0,1,1 +1774097149.496216,0.85,4,3992.50,52.81,1624.68,2067.62,0.00,2.006982,0.000195,238,2,0.001831,0.005089,39147480,25484741,0,0,39032,0,1,1 +1774097154.495008,1.71,4,3992.50,52.95,1613.36,2073.20,0.00,3519287445502.268066,0.028132,237,247,0.001831,0.005100,39147536,25484840,0,0,39035,0,1,1 +1774097159.493743,1.61,4,3992.50,52.70,1623.13,2063.43,0.00,0.468576,3519327679026.636719,238,2,0.003673,0.007073,39147629,25484979,0,0,39037,0,1,1 +1774097164.492044,43.32,4,3992.50,59.27,1374.62,2320.50,0.00,70480.912410,80386.203321,6053154,1419516,89.760475,0.040038,39157012,25487564,0,0,39039,0,1,1 +1774097169.496248,29.19,4,3992.50,58.68,1398.11,2297.40,0.00,3515481030190.660645,3515481020297.551270,237,247,118.467315,0.048510,39169199,25491109,0,0,39042,0,1,1 +1774097174.496800,28.74,4,3992.50,58.72,1396.50,2298.99,0.00,0.000000,0.000000,237,247,119.752394,0.023403,39181531,25492787,0,0,39044,0,1,1 +1774097179.495875,29.18,4,3992.50,58.90,1389.78,2305.88,0.00,0.468544,3519088487293.333008,238,2,118.785727,0.027920,39193725,25494861,0,0,39047,0,1,1 +1774097184.496843,29.57,4,3992.50,58.80,1393.42,2302.25,0.00,3517755920870.690918,3517755920872.697754,21,0,119.543830,0.028091,39206029,25496916,0,0,39050,0,1,1 +1774097189.496222,29.22,4,3992.50,58.84,1392.03,2303.65,0.00,0.175022,0.000000,199,0,119.985692,0.029755,39218470,25499012,0,0,39052,0,1,1 +1774097194.496163,28.88,4,3992.50,58.81,1393.12,2302.57,0.00,3518478452487.444824,0.000000,21,0,118.364104,0.043753,39230529,25502315,0,0,39054,0,1,1 +1774097199.496202,29.10,4,3992.50,58.80,1393.58,2302.04,0.00,2.006820,0.000195,238,2,120.164434,0.031897,39242774,25504621,0,0,39057,0,1,1 +1774097204.491935,13.68,4,3992.50,54.23,1572.54,2123.21,0.00,3521443085936.380859,3521443085938.389648,21,0,100.626176,0.023947,39253127,25506219,0,0,39059,0,1,1 +1774097209.493681,1.80,4,3992.50,53.96,1585.69,2112.65,0.00,0.000000,0.000000,21,0,0.009159,0.010669,39253312,25506425,0,0,39062,0,1,1 +1774097214.495705,11.19,4,3992.50,53.63,1596.20,2099.59,0.00,0.174929,0.000000,199,0,12.090277,0.062991,39257633,25509487,0,0,39064,0,1,1 +1774097219.495946,17.56,4,3992.50,53.45,1603.13,2092.64,0.00,70455.543181,80356.048950,6053172,1420891,28.162800,0.121265,39266608,25516100,0,0,39067,0,1,1 +1774097224.491917,1.30,4,3992.50,53.40,1605.06,2090.68,0.00,3521274785175.652344,3521274775266.857422,21,0,0.005541,0.009214,39266729,25516269,0,0,39070,0,1,1 +1774097229.492574,0.60,4,3992.50,52.91,1624.20,2071.58,0.00,0.000000,0.000000,21,0,0.003604,0.007018,39266820,25516399,0,0,39072,0,1,1 +1774097234.491951,0.95,4,3992.50,52.77,1629.82,2065.96,0.00,1.538571,0.028324,237,247,0.004083,0.007665,39266927,25516551,0,0,39075,0,1,1 +1774097239.491924,0.90,4,3992.50,52.90,1625.23,2071.32,0.00,70457.979706,80360.898703,6053173,1421225,0.003878,0.007122,39267027,25516691,0,0,39077,0,1,1 +1774097244.492002,0.65,4,3992.50,52.75,1631.20,2065.21,0.00,0.000000,0.275289,6053173,1421281,0.003878,0.007122,39267127,25516831,0,0,39079,0,1,1 +1774097249.492884,0.55,4,3992.50,52.81,1628.76,2067.64,0.00,3517816283249.783203,3517816273349.724609,199,0,0.003432,0.005895,39267214,25516950,0,0,39082,0,1,1 +1774097254.496249,0.70,4,3992.50,52.62,1636.41,2060.00,0.00,3516070843277.293457,0.000000,21,0,0.003969,0.007254,39267321,25517099,0,0,39084,0,1,1 +1774097259.496044,0.60,4,3992.50,52.62,1636.18,2060.22,0.00,2.006918,0.000195,238,2,0.003878,0.007133,39267421,25517240,0,0,39087,0,1,1 +1774097264.496456,0.65,4,3992.50,52.75,1631.04,2065.36,0.00,3518147533056.875488,3518147533058.882324,21,0,0.003873,0.007140,39267521,25517382,0,0,39090,0,1,1 +1774097269.496092,0.90,4,3992.50,52.99,1624.99,2074.69,0.00,0.048050,0.000000,70,0,0.003483,0.005896,39267611,25517501,0,0,39092,0,1,1 +1774097274.496085,2.01,4,3992.50,52.55,1641.96,2057.45,0.00,0.126953,0.000000,199,0,0.006039,0.008118,39267754,25517666,0,0,39094,0,1,1 +1774097279.492064,0.65,4,3992.50,52.60,1639.91,2059.50,0.00,70515.673104,80425.915726,6053173,1421753,0.003912,0.007163,39267856,25517809,0,0,39097,0,1,1 +1774097284.496615,0.70,4,3992.50,52.60,1639.92,2059.49,0.00,3515237810817.063477,3515237800923.921387,70,0,0.003405,0.005837,39267941,25517924,0,0,39099,0,1,1 +1774097289.496212,0.60,4,3992.50,52.60,1639.93,2059.48,0.00,1.958947,0.000195,238,2,0.003866,0.007120,39268040,25518064,0,0,39102,0,1,1 +1774097294.491936,0.80,4,3992.50,52.62,1639.20,2060.21,0.00,3521448487519.082520,3521448487521.091309,21,0,0.005312,0.028225,39268160,25518229,0,0,39104,0,1,1 +1774097299.496246,28.59,4,3992.50,52.74,1627.64,2065.07,0.00,1.537054,0.028296,237,247,0.037418,115.852500,39270851,25530603,0,0,39107,0,1,1 +1774097304.496524,22.73,4,3992.50,52.95,1614.82,2073.24,0.00,70453.683451,80508.984811,6053174,1422860,0.029818,89.125550,39273123,25539890,0,0,39110,0,1,1 +1774097309.496364,13.33,4,3992.50,57.51,1443.94,2251.84,0.00,3518549922023.259277,3518549911968.586426,21,0,15.233161,0.021803,39275073,25540934,0,0,39112,0,1,1 +1774097314.496565,3.56,4,3992.50,53.62,1596.39,2099.39,0.00,2.006755,0.000195,238,2,24.840771,0.015887,39277785,25541517,0,0,39115,0,1,1 +1774097319.498373,8.33,4,3992.50,53.97,1581.11,2112.89,0.00,0.000000,0.000000,238,2,0.019378,30.840831,39278994,25544977,0,0,39117,0,1,1 +1774097324.493554,3.67,4,3992.50,53.09,1615.22,2078.47,0.00,3521831244139.342285,3521831244141.351562,21,0,0.005420,9.231084,39279230,25546133,0,0,39119,0,1,1 +1774097329.496288,0.90,4,3992.50,53.00,1609.45,2075.16,0.00,0.000000,0.000000,21,0,0.001830,0.005109,39279286,25546233,0,0,39122,0,1,1 +1774097334.496891,0.85,4,3992.50,52.79,1617.82,2066.79,0.00,0.000000,0.000000,21,0,0.002289,0.006355,39279356,25546355,0,0,39124,0,1,1 +1774097339.496024,0.60,4,3992.50,52.79,1617.90,2066.71,0.00,70483.863239,80614.957377,6052519,1423592,0.002314,0.006398,39279428,25546480,0,0,39127,0,1,1 +1774097344.496481,0.70,4,3992.50,52.79,1617.91,2066.71,0.00,3518115346251.559570,3518115336123.148926,21,0,0.002289,0.006365,39279498,25546603,0,0,39130,0,1,1 +1774097349.496073,0.55,4,3992.50,52.75,1619.32,2065.30,0.00,70477.402033,80607.577618,6052519,1423603,0.001831,0.005089,39279554,25546701,0,0,39132,0,1,1 +1774097354.492249,0.70,4,3992.50,52.75,1619.32,2065.29,0.00,0.000000,6.014756,6052519,1423641,0.002291,0.006371,39279624,25546824,0,0,39135,0,1,1 +1774097359.494388,0.90,4,3992.50,52.81,1620.93,2067.73,0.00,3516932428720.879883,3516932418588.347168,237,247,0.002371,0.007098,39279701,25546957,0,0,39137,0,1,1 +1774097364.492052,0.65,4,3992.50,52.81,1620.89,2067.72,0.00,70503.044321,80644.777997,6052519,1423731,0.002378,0.006452,39279778,25547085,0,0,39139,0,1,1 +1774097369.493424,0.60,4,3992.50,52.81,1620.89,2067.72,0.00,3517472302090.593750,3517472291957.839844,70,0,0.001986,0.005223,39279844,25547194,0,0,39142,0,1,1 +1774097374.493455,0.65,4,3992.50,52.75,1623.30,2065.32,0.00,0.126952,0.000000,199,0,0.002289,0.006356,39279914,25547316,0,0,39144,0,1,1 +1774097379.492132,0.60,4,3992.50,52.76,1623.08,2065.54,0.00,1.363740,0.028328,237,247,0.002289,0.006368,39279984,25547439,0,0,39147,0,1,1 +1774097384.492459,13.80,4,3992.50,58.54,1402.02,2292.00,0.00,70465.492105,80601.851989,6052519,1423772,8.619061,0.018741,39281085,25548257,0,0,39150,0,1,1 +1774097389.496794,37.77,4,3992.50,58.84,1393.80,2303.62,0.00,4.105718,0.137674,6053293,1424124,124.083390,0.067438,39294056,25553231,0,0,39152,0,1,1 +1774097394.495867,31.03,4,3992.50,58.81,1394.94,2302.47,0.00,3519089452312.323730,3519089442178.903809,21,0,121.787090,0.024275,39306098,25554807,0,0,39155,0,1,1 +1774097399.495630,30.34,4,3992.50,59.64,1362.30,2334.98,0.00,1.538452,0.028322,237,247,121.368115,0.027116,39317832,25556758,0,0,39157,0,1,1 +1774097404.492824,30.80,4,3992.50,59.04,1385.65,2311.62,0.00,0.468720,3520413194278.476074,238,2,119.107273,0.032352,39329390,25559161,0,0,39159,0,1,1 +1774097409.496382,30.29,4,3992.50,59.15,1381.26,2316.03,0.00,3515935431665.774902,0.028105,237,247,119.809457,0.035031,39340721,25561588,0,0,39162,0,1,1 +1774097414.493024,30.74,4,3992.50,59.09,1384.03,2313.38,0.00,70521.585548,80661.689642,6053303,1424260,119.736703,0.032973,39351768,25563885,0,0,39164,0,1,1 +1774097419.492052,29.99,4,3992.50,59.04,1385.54,2311.69,0.00,3519120940908.984375,3519120930775.182617,70,0,118.964146,0.029736,39362676,25566112,0,0,39167,0,1,1 +1774097424.495024,30.64,4,3992.50,59.19,1382.26,2317.52,0.00,0.126878,0.000000,199,0,118.731408,0.028377,39373348,25568212,0,0,39170,0,1,1 +1774097429.496665,1.46,4,3992.50,53.54,1603.62,2096.20,0.00,3517282832436.728027,0.000000,70,0,53.109391,0.019818,39378219,25569305,0,0,39172,0,1,1 +1774097434.496608,5.07,4,3992.50,53.26,1614.56,2085.26,0.00,0.000000,0.000000,70,0,6.039311,0.032796,39380225,25570851,0,0,39175,0,1,1 +1774097439.496408,21.17,4,3992.50,54.75,1556.03,2143.74,0.00,3518578145530.771484,0.000000,21,0,30.182963,0.131279,39389904,25577915,0,0,39177,0,1,1 +1774097444.496783,5.96,4,3992.50,52.89,1629.14,2070.63,0.00,70470.641737,80602.302945,6053318,1425324,4.039691,0.026095,39391459,25579011,0,0,39179,0,1,1 +1774097449.494172,2.46,4,3992.50,52.27,1644.67,2046.64,0.00,3520274888057.825684,3520274877918.105469,238,2,0.004597,0.008521,39391576,25579175,0,0,39182,0,1,1 +1774097454.496505,1.30,4,3992.50,52.28,1644.52,2046.79,0.00,3516796969850.987305,3516796969852.944824,70,0,0.003876,0.007119,39391676,25579315,0,0,39184,0,1,1 +1774097459.496619,0.55,4,3992.50,52.28,1644.52,2046.77,0.00,70470.141809,80607.241804,6052544,1425697,0.003420,0.005865,39391762,25579432,0,0,39187,0,1,1 +1774097464.496576,0.75,4,3992.50,52.28,1644.55,2046.76,0.00,0.000000,0.306643,6052544,1425764,0.003891,0.007132,39391863,25579573,0,0,39190,0,1,1 +1774097469.495605,0.75,4,3992.50,52.55,1633.84,2057.42,0.00,3519120907124.300781,3519120896983.228516,237,247,0.003874,0.007132,39391963,25579714,0,0,39192,0,1,1 +1774097474.492051,0.70,4,3992.50,52.60,1631.93,2059.38,0.00,3520939971178.041992,3520939971179.553223,21,0,0.003994,0.007262,39392072,25579863,0,0,39195,0,1,1 +1774097479.496548,0.85,4,3992.50,52.60,1631.85,2059.33,0.00,0.000000,0.000000,21,0,0.003442,0.005881,39392160,25579981,0,0,39197,0,1,1 +1774097484.496001,0.65,4,3992.50,52.60,1631.61,2059.56,0.00,0.048052,0.000000,70,0,0.003891,0.007098,39392261,25580119,0,0,39199,0,1,1 +1774097489.493309,0.70,4,3992.50,52.60,1631.64,2059.55,0.00,70513.841162,80653.163086,6053318,1426232,0.003397,0.006513,39392345,25580240,0,0,39202,0,1,1 +1774097494.496302,0.70,4,3992.50,52.55,1633.60,2057.59,0.00,3516332430598.453613,3516332420470.526855,199,0,0.003938,0.007158,39392449,25580383,0,0,39204,0,1,1 +1774097499.496410,0.60,4,3992.50,52.59,1632.14,2059.05,0.00,1.363349,0.028320,237,247,0.003420,0.005865,39392535,25580500,0,0,39207,0,1,1 +1774097504.491928,0.70,4,3992.50,52.60,1631.95,2059.25,0.00,3521594304088.900391,3521594304090.411621,21,0,0.004189,0.007702,39392642,25580653,0,0,39210,0,1,1 +1774097509.493488,0.90,4,3992.50,52.76,1624.92,2065.68,0.00,70453.932134,80584.767147,6053318,1426408,0.004184,0.007675,39392749,25580804,0,0,39212,0,1,1 +1774097514.491993,0.70,4,3992.50,52.57,1632.48,2058.18,0.00,3519489418584.283691,3519489408445.248535,238,2,0.004549,0.008057,39392852,25580947,0,0,39215,0,1,1 +1774097519.491927,0.65,4,3992.50,52.57,1632.50,2058.16,0.00,3518484091978.021973,3518484091980.029297,21,0,0.003420,0.005855,39392938,25581063,0,0,39217,0,1,1 +1774097524.491915,0.75,4,3992.50,52.57,1632.50,2058.15,0.00,0.175000,0.000000,199,0,0.004812,0.007792,39393041,25581206,0,0,39219,0,1,1 +1774097529.491908,0.60,4,3992.50,52.57,1632.52,2058.13,0.00,70471.731087,80610.129917,6052544,1426305,0.004075,0.007664,39393147,25581358,0,0,39222,0,1,1 +1774097534.496143,0.60,4,3992.50,52.58,1632.09,2058.56,0.00,3515459738066.622559,3515459727936.991699,21,0,0.004087,0.007656,39393255,25581510,0,0,39224,0,1,1 +1774097539.491938,1.20,4,3992.50,52.62,1630.40,2060.20,0.00,70535.242595,80677.983493,6053318,1426625,0.006499,0.811366,39393484,25581864,0,0,39227,0,1,1 +1774097544.496346,28.10,4,3992.50,52.93,1612.26,2072.36,0.00,3515338359371.725586,76.936476,6052544,1426876,0.050406,109.462163,39397300,25593320,0,0,39230,0,1,1 +1774097549.496667,25.65,4,3992.50,52.46,1625.96,2053.87,0.00,3518211223514.092285,3518211213299.423828,21,0,0.033387,94.727480,39399889,25603173,0,0,39232,0,1,1 +1774097554.496476,11.58,4,3992.50,57.40,1436.81,2247.23,0.00,0.000000,0.000000,21,0,11.027145,0.024032,39401540,25604372,0,0,39235,0,1,1 +1774097559.496452,4.81,4,3992.50,52.61,1624.12,2059.95,0.00,70492.841554,80815.697565,6053427,1428029,29.048420,0.018946,39404796,25605454,0,0,39237,0,1,1 +1774097564.496518,5.42,4,3992.50,53.35,1594.31,2088.75,0.00,3518390962324.019043,3518390952001.346680,21,0,0.017329,17.436607,39405893,25607624,0,0,39239,0,1,1 +1774097569.496090,7.33,4,3992.50,52.84,1613.39,2069.00,0.00,0.048051,0.000000,70,0,0.009872,22.641839,39406477,25610128,0,0,39242,0,1,1 +1774097574.496091,1.00,4,3992.50,52.66,1620.64,2061.75,0.00,0.126953,0.000000,199,0,0.004462,0.007365,39406591,25610276,0,0,39244,0,1,1 +1774097579.496685,0.70,4,3992.50,52.62,1622.34,2060.06,0.00,3518019248495.443848,0.000000,70,0,0.002289,0.006365,39406661,25610399,0,0,39247,0,1,1 +1774097584.492610,0.60,4,3992.50,52.62,1622.34,2060.06,0.00,0.127057,0.000000,199,0,0.001870,0.005134,39406720,25610500,0,0,39250,0,1,1 +1774097589.495914,0.60,4,3992.50,52.63,1621.87,2060.54,0.00,1.830626,0.000195,238,2,0.002287,0.006352,39406790,25610622,0,0,39252,0,1,1 +1774097594.496131,0.70,4,3992.50,52.63,1621.87,2060.53,0.00,3518284586399.540527,3518284586401.499023,70,0,0.002301,0.006366,39406861,25610745,0,0,39255,0,1,1 +1774097599.492455,1.05,4,3992.50,53.02,1617.94,2076.03,0.00,1.960230,0.000195,238,2,0.002291,0.006361,39406931,25610867,0,0,39257,0,1,1 +1774097604.495004,0.60,4,3992.50,52.91,1622.12,2071.55,0.00,70454.586487,80814.585132,6053427,1428594,0.001914,0.005187,39406994,25610972,0,0,39259,0,1,1 +1774097609.491920,0.70,4,3992.50,52.58,1635.12,2058.57,0.00,3520609222611.791992,3520609212240.609375,237,247,0.002315,0.006401,39407066,25611097,0,0,39262,0,1,1 +1774097614.496400,0.70,4,3992.50,52.62,1633.68,2060.02,0.00,0.000000,0.000000,237,247,0.002442,0.006476,39407146,25611229,0,0,39264,0,1,1 +1774097619.492852,0.65,4,3992.50,52.62,1633.69,2060.01,0.00,0.468790,3520935425941.998535,238,2,0.002391,0.007139,39407224,25611364,0,0,39267,0,1,1 +1774097624.495615,0.70,4,3992.50,52.62,1633.69,2060.01,0.00,3516494557331.414551,3516494557333.245605,199,0,0.002275,0.006350,39407293,25611486,0,0,39270,0,1,1 +1774097629.496192,0.85,4,3992.50,52.82,1625.72,2068.12,0.00,0.000000,0.000000,199,0,0.001831,0.005101,39407349,25611585,0,0,39272,0,1,1 +1774097634.494480,18.32,4,3992.50,59.31,1377.88,2321.97,0.00,70516.499297,80883.541107,6053429,1428656,7.019962,0.017751,39408363,25612417,0,0,39274,0,1,1 +1774097639.495962,35.10,4,3992.50,59.36,1378.41,2324.22,0.00,3517394625537.416992,3517394615175.661133,237,247,118.128848,0.030945,39420435,25614561,0,0,39277,0,1,1 +1774097644.496624,30.28,4,3992.50,59.23,1383.91,2318.92,0.00,70477.550971,80845.179281,6052655,1428519,119.754340,0.027085,39432894,25616392,0,0,39279,0,1,1 +1774097649.492505,30.04,4,3992.50,59.04,1391.23,2311.69,0.00,4.112665,0.034306,6053429,1428776,118.665592,0.028765,39445163,25618445,0,0,39282,0,1,1 +1774097654.492204,29.95,4,3992.50,58.94,1395.45,2307.51,0.00,3518649068033.507324,3518649057667.460449,238,2,119.782234,0.045962,39457550,25621800,0,0,39284,0,1,1 +1774097659.496830,30.21,4,3992.50,59.44,1383.42,2327.06,0.00,0.000000,0.000000,238,2,118.868205,0.054656,39470045,25625815,0,0,39287,0,1,1 +1774097664.496227,30.06,4,3992.50,59.12,1395.70,2314.66,0.00,70499.013653,80865.794813,6053429,1428873,119.786689,0.039532,39482364,25628528,0,0,39290,0,1,1 +1774097669.496413,29.91,4,3992.50,59.12,1395.75,2314.83,0.00,3518306891373.215332,3518306881010.073242,21,0,118.766455,0.039899,39494628,25631390,0,0,39292,0,1,1 +1774097674.495373,29.97,4,3992.50,59.07,1397.66,2312.88,0.00,0.000000,0.000000,21,0,119.614170,0.087116,39507358,25638149,0,0,39295,0,1,1 +1774097679.493232,5.38,4,3992.50,53.03,1634.28,2076.29,0.00,0.048067,0.000000,70,0,65.140148,0.064093,39514495,25642816,0,0,39297,0,1,1 +1774097684.494663,5.47,4,3992.50,52.95,1637.43,2073.15,0.00,1.489906,0.028312,237,247,4.030047,0.026080,39515917,25643928,0,0,39299,0,1,1 +1774097689.496410,12.32,4,3992.50,53.43,1610.38,2091.94,0.00,3517208197855.501465,3517208197857.011230,21,0,16.110842,0.085084,39521577,25648246,0,0,39302,0,1,1 +1774097694.496399,14.93,4,3992.50,53.35,1613.56,2088.58,0.00,0.175000,0.000000,199,0,20.120635,0.090457,39528109,25653070,0,0,39304,0,1,1 +1774097699.496066,0.65,4,3992.50,52.83,1633.84,2068.31,0.00,3518670964047.445312,0.000000,21,0,0.003446,0.005865,39528197,25653187,0,0,39307,0,1,1 +1774097704.496492,1.05,4,3992.50,52.96,1628.84,2073.32,0.00,0.174985,0.000000,199,0,0.003878,0.007132,39528297,25653328,0,0,39310,0,1,1 +1774097709.496400,1.25,4,3992.50,53.15,1621.34,2080.80,0.00,1.831870,0.000195,238,2,0.011126,2.415726,39528807,25653986,0,0,39312,0,1,1 +1774097714.492790,27.38,4,3992.50,52.86,1626.09,2069.69,0.00,3520978766843.204102,3520978766845.212402,21,0,0.031185,110.240339,39531029,25665536,0,0,39314,0,1,1 +1774097719.496387,24.13,4,3992.50,52.63,1630.20,2060.67,0.00,70442.019439,80978.418424,6053443,1431789,0.033999,92.472038,39533555,25675370,0,0,39317,0,1,1 +1774097724.494364,14.52,4,3992.50,57.46,1445.47,2249.71,0.00,16.594994,26.536418,6053550,1432014,22.652539,0.026872,39536286,25676691,0,0,39319,0,1,1 +1774097729.491928,2.31,4,3992.50,52.66,1633.39,2061.79,0.00,3520152760255.014648,0.069077,6052776,1431897,17.437820,0.011226,39538175,25677171,0,0,39322,0,1,1 +1774097734.496116,0.90,4,3992.50,52.80,1627.84,2067.34,0.00,3515492249191.301758,3515492238642.045898,21,0,0.003875,0.007116,39538275,25677311,0,0,39324,0,1,1 +1774097739.495584,0.60,4,3992.50,52.80,1627.84,2067.36,0.00,0.048052,0.000000,70,0,0.003878,0.007133,39538375,25677452,0,0,39327,0,1,1 +1774097744.491926,0.70,4,3992.50,52.81,1627.64,2067.56,0.00,3521012922086.196777,0.000000,21,0,0.003881,0.007125,39538475,25677592,0,0,39330,0,1,1 +1774097749.491924,0.90,4,3992.50,52.81,1623.61,2067.73,0.00,1.538380,0.028320,237,247,0.003408,0.005843,39538560,25677707,0,0,39332,0,1,1 +1774097754.491991,0.90,4,3992.50,52.43,1638.59,2052.81,0.00,3518389623365.731934,3518389623367.193848,70,0,0.003911,0.007815,39538663,25677855,0,0,39335,0,1,1 +1774097759.491992,0.65,4,3992.50,52.44,1638.37,2053.03,0.00,70505.107525,81063.627323,6052776,1432172,0.003878,0.007122,39538763,25677995,0,0,39337,0,1,1 +1774097764.495949,0.65,4,3992.50,52.44,1638.39,2053.01,0.00,3515654521730.709961,3515654511180.412598,199,0,0.003862,0.007117,39538862,25678135,0,0,39339,0,1,1 +1774097769.491906,0.70,4,3992.50,52.47,1636.89,2054.46,0.00,3521284655577.112305,0.000000,21,0,0.003504,0.005945,39538953,25678258,0,0,39342,0,1,1 +1774097774.491995,0.70,4,3992.50,52.47,1636.95,2054.45,0.00,70503.907540,81062.294149,6052776,1432298,0.003940,0.007150,39539057,25678400,0,0,39344,0,1,1 +1774097779.496399,1.00,4,3992.50,52.67,1635.39,2062.08,0.00,3515340909067.421387,3515340898518.089844,70,0,0.003269,0.006889,39539146,25678534,0,0,39347,0,1,1 +1774097784.495916,0.70,4,3992.50,52.47,1643.02,2054.43,0.00,0.000000,0.000000,70,0,0.003878,0.007133,39539246,25678675,0,0,39350,0,1,1 +1774097789.491990,0.55,4,3992.50,52.47,1643.03,2054.43,0.00,0.127053,0.000000,199,0,0.003881,0.007115,39539346,25678814,0,0,39352,0,1,1 +1774097794.492873,11.09,4,3992.50,53.01,1619.71,2075.41,0.00,70492.534905,81083.615574,6052776,1432655,0.025444,40.059007,39540997,25683276,0,0,39355,0,1,1 +1774097799.492157,0.90,4,3992.50,52.89,1624.47,2070.66,0.00,3518941419574.377930,3518941408980.082520,21,0,0.004059,0.008566,39541108,25683440,0,0,39357,0,1,1 +1774097804.496377,0.65,4,3992.50,52.88,1624.59,2070.53,0.00,0.174852,0.000000,199,0,0.002586,0.006905,39541184,25683573,0,0,39359,0,1,1 +1774097809.496021,0.90,4,3992.50,53.10,1616.23,2078.88,0.00,3518687822497.067383,0.000000,70,0,0.002118,0.005654,39541245,25683683,0,0,39362,0,1,1 +1774097814.491975,0.75,4,3992.50,52.95,1621.95,2073.17,0.00,3521286221703.266602,0.000000,21,0,0.002291,0.006361,39541315,25683805,0,0,39364,0,1,1 +1774097819.494688,0.60,4,3992.50,52.96,1621.48,2073.64,0.00,0.048021,0.000000,70,0,0.002275,0.007006,39541384,25683932,0,0,39367,0,1,1 +1774097824.494842,0.60,4,3992.50,52.95,1621.91,2073.21,0.00,70502.942634,81095.626617,6052776,1432797,0.003198,0.007035,39541455,25684058,0,0,39370,0,1,1 +1774097829.494908,0.70,4,3992.50,52.95,1621.91,2073.21,0.00,3518391096713.680664,3518391086119.346680,237,247,0.002028,0.005621,39541517,25684167,0,0,39372,0,1,1 +1774097834.496339,0.65,4,3992.50,52.95,1621.91,2073.20,0.00,3517430054692.269531,3517430054693.779297,21,0,0.002548,0.006958,39541598,25684305,0,0,39375,0,1,1 +1774097839.496779,1.00,4,3992.50,53.05,1618.37,2076.89,0.00,1.538243,0.028318,237,247,0.002364,0.006449,39541674,25684433,0,0,39377,0,1,1 +1774097844.496685,0.65,4,3992.50,53.02,1619.14,2075.96,0.00,70504.962879,81105.754436,6052776,1432903,0.002403,0.006471,39541752,25684564,0,0,39379,0,1,1 +1774097849.495989,0.70,4,3992.50,53.02,1619.14,2075.96,0.00,4.109849,0.030082,6053550,1433154,0.002289,0.006354,39541822,25684686,0,0,39382,0,1,1 +1774097854.496000,0.55,4,3992.50,53.02,1619.15,2075.95,0.00,3518429879853.083008,3518429869258.103516,21,0,0.001850,0.005127,39541879,25684787,0,0,39384,0,1,1 +1774097859.499377,8.02,4,3992.50,58.92,1393.85,2306.86,0.00,0.174882,0.000000,199,0,1.807583,0.011982,39542283,25685190,0,0,39387,0,1,1 +1774097864.495368,39.44,4,3992.50,59.19,1386.63,2317.50,0.00,3521260291290.059570,0.000000,21,0,112.248473,0.053306,39553832,25688999,0,0,39390,0,1,1 +1774097869.493912,29.09,4,3992.50,59.55,1372.40,2331.70,0.00,0.048061,0.000000,70,0,118.800441,0.025311,39566083,25690702,0,0,39392,0,1,1 +1774097874.492877,36.04,4,3992.50,59.19,1384.73,2317.43,0.00,0.126979,0.000000,199,0,119.593495,0.037367,39578406,25693334,0,0,39394,0,1,1 +1774097879.496376,29.91,4,3992.50,59.12,1387.33,2314.80,0.00,70455.683174,81047.810179,6052776,1433126,118.742874,0.034507,39590604,25695897,0,0,39397,0,1,1 +1774097884.495391,29.81,4,3992.50,58.98,1392.87,2309.24,0.00,3519130745675.357910,3519130735073.855469,70,0,119.525798,0.031787,39602829,25698267,0,0,39399,0,1,1 +1774097889.492835,29.41,4,3992.50,58.91,1395.69,2306.49,0.00,3520236522866.125000,0.000000,21,0,119.024237,0.039145,39614944,25701165,0,0,39402,0,1,1 +1774097894.492728,29.24,4,3992.50,59.06,1389.79,2312.33,0.00,70506.682479,81106.363265,6052776,1433166,119.366186,0.043336,39627120,25704417,0,0,39404,0,1,1 +1774097899.494935,29.80,4,3992.50,58.98,1392.92,2309.08,0.00,3516884346018.697266,3516884335422.413086,237,247,119.111556,0.043904,39639285,25707696,0,0,39407,0,1,1 +1774097904.496505,8.44,4,3992.50,54.32,1568.22,2126.70,0.00,70485.686745,81079.357601,6053558,1433459,77.284964,0.032485,39647250,25709942,0,0,39410,0,1,1 +1774097909.496653,3.76,4,3992.50,53.59,1596.89,2098.07,0.00,3518332801511.125488,3518332790915.778809,199,0,0.035486,0.014425,39647568,25710241,0,0,39412,0,1,1 +1774097914.494400,22.13,4,3992.50,53.32,1607.40,2087.56,0.00,70541.044705,81141.821922,6053565,1434304,34.202551,0.150296,39658683,25718435,0,0,39415,0,1,1 +1774097919.496560,4.82,4,3992.50,52.56,1637.11,2057.86,0.00,3516917946582.520020,3516917935991.270020,21,0,6.040865,0.030083,39660784,25719968,0,0,39417,0,1,1 +1774097924.496417,0.95,4,3992.50,52.43,1642.17,2052.80,0.00,70511.441130,81108.027856,6053565,1434775,0.004584,0.008482,39660900,25720129,0,0,39419,0,1,1 +1774097929.494279,0.95,4,3992.50,53.07,1617.65,2077.63,0.00,3519942486833.701172,3519942476232.708008,199,0,0.003417,0.005850,39660986,25720245,0,0,39422,0,1,1 +1774097934.497318,7.72,4,3992.50,53.50,1599.71,2094.77,0.00,3516300022826.950684,0.000000,21,0,0.024549,30.235188,39662574,25723751,0,0,39424,0,1,1 +1774097939.491884,29.85,4,3992.50,53.01,1610.80,2075.36,0.00,0.000000,0.000000,21,0,0.051599,118.299426,39666391,25736120,0,0,39427,0,1,1 +1774097944.494968,14.56,4,3992.50,52.94,1611.44,2072.67,0.00,0.000000,0.000000,21,0,0.016510,56.650101,39667538,25742130,0,0,39430,0,1,1 +1774097949.493019,12.00,4,3992.50,57.70,1429.16,2259.20,0.00,2.007618,0.000195,238,2,3.217099,0.016043,39668298,25742746,0,0,39432,0,1,1 +1774097954.495959,5.91,4,3992.50,54.89,1539.36,2149.01,0.00,3516370219655.045410,3516370219657.051270,21,0,36.835074,0.020014,39672134,25743818,0,0,39435,0,1,1 +1774097959.491912,1.25,4,3992.50,53.85,1579.88,2108.46,0.00,2.008461,0.000195,238,2,0.004137,0.008096,39672236,25743958,0,0,39437,0,1,1 +1774097964.496479,0.65,4,3992.50,52.92,1616.25,2072.07,0.00,70459.654110,81237.515896,6053673,1436661,0.003874,0.007103,39672336,25744097,0,0,39439,0,1,1 +1774097969.491995,0.60,4,3992.50,52.87,1618.30,2070.02,0.00,3521595656094.025391,3521595645297.130859,237,247,0.003902,0.007147,39672438,25744239,0,0,39442,0,1,1 +1774097974.492587,0.65,4,3992.50,52.87,1618.20,2070.12,0.00,3518020705485.285156,3518020705486.620117,199,0,0.003878,0.007109,39672538,25744378,0,0,39444,0,1,1 +1774097979.493721,0.70,4,3992.50,52.82,1620.46,2067.86,0.00,1.363070,0.028314,237,247,0.003445,0.005895,39672626,25744497,0,0,39447,0,1,1 +1774097984.495588,0.70,4,3992.50,52.79,1621.50,2066.77,0.00,70494.052208,81281.525232,6052899,1436604,0.003877,0.007130,39672726,25744638,0,0,39450,0,1,1 +1774097989.491915,0.90,4,3992.50,53.01,1618.59,2075.37,0.00,3521024059385.057129,3521024048586.957520,199,0,0.003868,0.007128,39672825,25744778,0,0,39452,0,1,1 +1774097994.494903,0.85,4,3992.50,52.80,1626.84,2067.08,0.00,3516336108743.161621,0.000000,70,0,0.003969,0.007194,39672931,25744924,0,0,39454,0,1,1 +1774097999.494482,0.65,4,3992.50,52.80,1626.86,2067.07,0.00,3518732895045.788574,0.000000,21,0,0.003878,0.007120,39673031,25745064,0,0,39457,0,1,1 +1774098004.492766,1.15,4,3992.50,52.83,1625.25,2068.32,0.00,0.000000,0.000000,21,0,0.003496,0.005910,39673122,25745184,0,0,39459,0,1,1 +1774098009.494709,0.95,4,3992.50,52.83,1625.04,2068.52,0.00,0.000000,0.000000,21,0,0.003877,0.007117,39673222,25745324,0,0,39462,0,1,1 +1774098014.495840,0.80,4,3992.50,52.49,1638.38,2055.18,0.00,0.000000,0.000000,21,0,0.003898,0.007129,39673324,25745465,0,0,39464,0,1,1 +1774098019.494330,12.06,4,3992.50,52.72,1616.94,2064.25,0.00,2.007442,0.000195,238,2,0.031944,40.083909,39675333,25750004,0,0,39467,0,1,1 +1774098024.495310,0.85,4,3992.50,52.49,1626.13,2055.07,0.00,3517747598086.197266,0.028119,237,247,0.002083,0.005716,39675396,25750115,0,0,39470,0,1,1 +1774098029.495676,0.85,4,3992.50,52.49,1626.13,2055.06,0.00,70519.347585,81340.540581,6053683,1437527,0.002289,0.006356,39675466,25750237,0,0,39472,0,1,1 +1774098034.496719,0.85,4,3992.50,52.49,1626.13,2055.07,0.00,3517703180845.121582,3517703170026.904297,21,0,0.002276,0.006365,39675535,25750360,0,0,39475,0,1,1 +1774098039.491928,1.61,4,3992.50,52.49,1625.92,2055.28,0.00,1.539854,0.028347,237,247,0.001833,0.005094,39675591,25750458,0,0,39477,0,1,1 +1774098044.493013,0.95,4,3992.50,52.49,1625.92,2055.27,0.00,0.468355,3517674219716.636719,238,2,0.001381,0.003829,39675634,25750533,0,0,39479,0,1,1 +1774098049.491931,1.20,4,3992.50,52.63,1620.72,2060.62,0.00,3519198247469.020996,0.028131,237,247,0.002289,0.006367,39675704,25750656,0,0,39482,0,1,1 +1774098054.491924,0.95,4,3992.50,52.59,1622.12,2059.07,0.00,3518442668801.169922,3518442668802.505371,199,0,0.002314,0.006387,39675776,25750780,0,0,39484,0,1,1 +1774098059.496108,0.75,4,3992.50,52.63,1620.66,2060.54,0.00,3515495459859.691406,0.000000,21,0,0.002337,0.006423,39675850,25750907,0,0,39487,0,1,1 +1774098064.493136,0.65,4,3992.50,52.47,1627.05,2054.15,0.00,0.048075,0.000000,70,0,0.002032,0.005296,39675920,25751020,0,0,39490,0,1,1 +1774098069.496452,0.75,4,3992.50,52.42,1628.73,2052.47,0.00,0.000000,0.000000,70,0,0.002318,0.006377,39675992,25751144,0,0,39492,0,1,1 +1774098074.495890,0.75,4,3992.50,52.42,1628.73,2052.46,0.00,0.000000,0.000000,70,0,0.002310,0.006375,39676064,25751268,0,0,39495,0,1,1 +1774098079.495334,1.15,4,3992.50,52.47,1628.51,2054.42,0.00,70529.733267,81361.738473,6052909,1437435,0.002276,0.006357,39676133,25751390,0,0,39497,0,1,1 +1774098084.496085,11.24,4,3992.50,58.85,1384.52,2303.93,0.00,4.108660,0.042376,6053683,1437716,9.017880,0.018689,39677322,25752278,0,0,39499,0,1,1 +1774098089.491829,37.74,4,3992.50,58.81,1388.84,2302.68,0.00,0.000000,0.120415,6053683,1437826,122.276482,0.041073,39689968,25755118,0,0,39502,0,1,1 +1774098094.492603,31.37,4,3992.50,59.03,1380.65,2311.14,0.00,3517892541855.866699,3517892531030.562012,199,0,122.150317,0.026349,39702453,25756934,0,0,39504,0,1,1 +1774098099.496039,31.22,4,3992.50,58.94,1384.26,2307.55,0.00,70473.335651,81296.996111,6052909,1437608,120.089247,0.029151,39715024,25758994,0,0,39507,0,1,1 +1774098104.497227,30.75,4,3992.50,58.71,1393.22,2298.60,0.00,3517601033439.943848,3517601022611.595215,21,0,120.139287,0.028566,39727383,25761018,0,0,39510,0,1,1 +1774098109.496719,30.87,4,3992.50,58.79,1391.32,2301.95,0.00,0.000000,0.000000,21,0,120.183258,0.032773,39739900,25763237,0,0,39512,0,1,1 +1774098114.494473,30.54,4,3992.50,59.07,1380.10,2312.82,0.00,1.539070,0.028333,237,247,119.820286,0.028543,39752242,25765246,0,0,39515,0,1,1 +1774098119.495459,30.53,4,3992.50,58.94,1385.38,2307.67,0.00,0.468365,3517743343858.276855,238,2,119.341759,0.021459,39764547,25766790,0,0,39517,0,1,1 +1774098124.496080,31.10,4,3992.50,59.01,1382.45,2310.52,0.00,70515.279832,81343.026363,6053683,1437986,119.354585,0.031686,39776914,25769048,0,0,39519,0,1,1 +1774098129.496757,4.16,4,3992.50,52.97,1619.01,2074.02,0.00,3517960866964.694824,3517960856139.076172,21,0,53.072174,0.019962,39782494,25770210,0,0,39522,0,1,1 +1774098134.491924,3.61,4,3992.50,52.68,1630.61,2062.42,0.00,1.539868,0.028348,237,247,2.021905,0.017120,39783267,25770846,0,0,39524,0,1,1 +1774098139.491862,24.23,4,3992.50,54.04,1586.52,2115.73,0.00,3518480557265.823242,3518480557267.333496,21,0,34.208779,0.151740,39794220,25779000,0,0,39527,0,1,1 +1774098144.496696,5.12,4,3992.50,53.50,1607.71,2094.52,0.00,0.048000,0.000000,70,0,4.027489,0.025017,39795636,25780116,0,0,39530,0,1,1 +1774098149.496263,0.95,4,3992.50,53.31,1614.95,2087.28,0.00,3518742553398.211426,0.000000,21,0,0.004137,0.007897,39795739,25780260,0,0,39532,0,1,1 +1774098154.491918,0.65,4,3992.50,53.15,1621.23,2081.00,0.00,70583.413108,81425.146031,6052926,1439232,0.003921,0.007172,39795842,25780404,0,0,39535,0,1,1 +1774098159.493371,1.00,4,3992.50,52.96,1628.63,2073.61,0.00,4.108084,0.045983,6053700,1439491,0.003877,0.007120,39795942,25780544,0,0,39537,0,1,1 +1774098164.495994,0.60,4,3992.50,52.97,1628.40,2073.83,0.00,3516591953019.888184,3516591942197.318359,21,0,0.003876,0.007119,39796042,25780684,0,0,39539,0,1,1 +1774098169.493690,1.00,4,3992.50,53.02,1623.56,2075.79,0.00,0.000000,0.000000,21,0,0.003422,0.005855,39796128,25780800,0,0,39542,0,1,1 +1774098174.491953,0.75,4,3992.50,53.02,1623.34,2075.93,0.00,0.048064,0.000000,70,0,0.006812,0.009199,39796282,25780977,0,0,39544,0,1,1 +1774098179.492137,0.55,4,3992.50,53.02,1623.36,2075.91,0.00,70523.544953,81351.962173,6053700,1439765,0.003909,0.007157,39796384,25781120,0,0,39547,0,1,1 +1774098184.495890,0.65,4,3992.50,53.02,1623.37,2075.89,0.00,3515798080469.144531,3515798069648.499512,21,0,0.003883,0.007135,39796485,25781262,0,0,39550,0,1,1 +1774098189.496395,0.65,4,3992.50,53.02,1623.39,2075.88,0.00,0.174982,0.000000,199,0,0.003420,0.005855,39796571,25781378,0,0,39552,0,1,1 +1774098194.496803,0.70,4,3992.50,53.03,1623.01,2076.26,0.00,70516.148334,81348.381553,6052926,1439616,0.003952,0.007172,39796676,25781522,0,0,39555,0,1,1 +1774098199.496161,0.95,4,3992.50,53.24,1614.95,2084.61,0.00,0.000000,0.044146,6052926,1439636,0.003879,0.007111,39796776,25781661,0,0,39557,0,1,1 +1774098204.496544,0.60,4,3992.50,53.04,1622.72,2076.55,0.00,0.000000,0.105070,6052926,1439751,0.003878,0.007122,39796876,25781801,0,0,39559,0,1,1 +1774098209.496444,0.60,4,3992.50,53.04,1622.73,2076.54,0.00,3518507949741.011230,3518507938907.701660,21,0,0.003886,0.007128,39796977,25781942,0,0,39562,0,1,1 +1774098214.496462,0.70,4,3992.50,53.01,1623.75,2075.52,0.00,0.174999,0.000000,199,0,0.003433,0.006512,39797064,25782063,0,0,39564,0,1,1 +1774098219.496040,0.75,4,3992.50,53.04,1622.80,2076.48,0.00,70527.860109,81362.144292,6052926,1439873,0.003929,0.007195,39797168,25782208,0,0,39567,0,1,1 +1774098224.492710,0.65,4,3992.50,53.04,1622.45,2076.82,0.00,3520781688853.532715,3520781678013.071289,70,0,0.003881,0.007137,39797268,25782349,0,0,39570,0,1,1 +1774098229.496813,1.70,4,3992.50,53.36,1614.58,2089.15,0.00,70464.224222,81288.701064,6052926,1439954,0.008729,1.611287,39797638,25782839,0,0,39572,0,1,1 +1774098234.496710,29.22,4,3992.50,53.33,1608.81,2087.90,0.00,3518508965906.851074,3518508955073.320801,21,0,0.034763,116.170884,39800149,25795007,0,0,39575,0,1,1 +1774098239.496722,22.88,4,3992.50,52.92,1620.51,2072.11,0.00,2.006831,0.000195,238,2,0.015598,87.326737,39801190,25804229,0,0,39577,0,1,1 +1774098244.496364,1.00,4,3992.50,52.93,1620.20,2072.43,0.00,0.000000,0.000000,238,2,0.002937,0.007053,39801270,25804361,0,0,39579,0,1,1 +1774098249.495414,12.85,4,3992.50,57.60,1441.56,2255.01,0.00,70550.074777,81575.992823,6053096,1441333,19.639411,0.021772,39803590,25805549,0,0,39582,0,1,1 +1774098254.496153,3.26,4,3992.50,52.78,1629.94,2066.64,0.00,3517916969291.454102,3517916958271.092773,199,0,20.429392,0.009840,39805795,25806064,0,0,39584,0,1,1 +1774098259.495838,7.58,4,3992.50,53.06,1613.27,2077.27,0.00,3518658832313.310059,0.000000,21,0,0.019905,25.250123,39807068,25809083,0,0,39587,0,1,1 +1774098264.496559,5.16,4,3992.50,52.44,1636.53,2052.95,0.00,70528.505490,81583.215067,6053096,1441887,0.007294,14.829505,39807431,25810870,0,0,39590,0,1,1 +1774098269.491969,0.70,4,3992.50,52.43,1636.84,2052.64,0.00,3521669782575.090820,3521669771508.581543,70,0,0.002291,0.006349,39807501,25810991,0,0,39592,0,1,1 +1774098274.496585,0.60,4,3992.50,52.26,1643.24,2046.23,0.00,3515192360124.905762,0.000000,21,0,0.001855,0.005138,39807559,25811093,0,0,39595,0,1,1 +1774098279.493894,0.65,4,3992.50,52.27,1643.02,2046.45,0.00,0.000000,0.000000,21,0,0.002290,0.007004,39807629,25811219,0,0,39597,0,1,1 +1774098284.496814,0.80,4,3992.50,52.29,1642.05,2047.43,0.00,0.000000,0.000000,21,0,0.002287,0.006352,39807699,25811341,0,0,39599,0,1,1 +1774098289.496422,0.85,4,3992.50,52.63,1629.01,2060.46,0.00,1.538500,0.028323,237,247,0.002289,0.006366,39807769,25811464,0,0,39602,0,1,1 +1774098294.495398,0.70,4,3992.50,52.64,1628.34,2061.13,0.00,3519157262241.474609,3519157262242.937012,70,0,0.001407,0.003861,39807814,25811541,0,0,39604,0,1,1 +1774098299.494603,0.65,4,3992.50,52.65,1628.09,2061.37,0.00,3518997205911.113770,0.000000,21,0,0.002390,0.006491,39807892,25811672,0,0,39607,0,1,1 +1774098304.492958,0.60,4,3992.50,52.64,1628.33,2061.13,0.00,2.007496,0.000195,238,2,0.002315,0.006399,39807964,25811797,0,0,39610,0,1,1 +1774098309.496155,0.55,4,3992.50,52.65,1628.10,2061.36,0.00,3516189230345.133301,0.028107,237,247,0.002455,0.006478,39808045,25811929,0,0,39612,0,1,1 +1774098314.492311,0.65,4,3992.50,52.65,1628.11,2061.32,0.00,70591.441312,81663.942129,6053100,1442053,0.001832,0.005103,39808101,25812028,0,0,39615,0,1,1 +1774098319.492185,0.95,4,3992.50,52.84,1620.14,2068.93,0.00,4.109381,0.108987,6053874,1442359,0.002289,0.006356,39808171,25812150,0,0,39617,0,1,1 +1774098324.492080,15.30,4,3992.50,59.15,1380.25,2315.79,0.00,3518511094628.770996,3518511083570.058594,21,0,8.019038,0.018565,39809216,25812954,0,0,39619,0,1,1 +1774098329.496129,36.42,4,3992.50,59.07,1385.95,2312.73,0.00,0.174858,0.000000,199,0,120.073066,0.031121,39821646,25814988,0,0,39622,0,1,1 +1774098334.492495,30.33,4,3992.50,59.10,1385.13,2313.97,0.00,70593.964642,81660.856003,6053874,1442545,118.261384,0.048280,39834041,25818476,0,0,39624,0,1,1 +1774098339.492117,30.45,4,3992.50,59.37,1374.52,2324.62,0.00,3518702762398.948730,3518702751337.434082,238,2,119.782589,0.040776,39846461,25821511,0,0,39627,0,1,1 +1774098344.496416,30.47,4,3992.50,59.02,1388.38,2310.67,0.00,0.000000,0.000000,238,2,119.079364,0.067928,39858974,25826593,0,0,39630,0,1,1 +1774098349.496255,31.15,4,3992.50,59.38,1375.26,2324.87,0.00,70538.995485,81604.271149,6053100,1442359,119.592057,0.083317,39871662,25832784,0,0,39632,0,1,1 +1774098354.494982,30.26,4,3992.50,59.35,1375.19,2323.83,0.00,3519333055666.333984,3519333044598.598633,238,2,118.824819,0.103927,39884370,25840778,0,0,39635,0,1,1 +1774098359.496783,30.99,4,3992.50,59.16,1382.65,2316.24,0.00,3517170241155.159180,3517170241157.117188,70,0,119.552129,0.104834,39897191,25848895,0,0,39637,0,1,1 +1774098364.495656,30.48,4,3992.50,59.37,1374.65,2324.44,0.00,70558.687208,81620.081515,6053874,1442643,119.629689,0.092586,39909910,25855926,0,0,39639,0,1,1 +1774098369.496211,5.27,4,3992.50,53.49,1604.77,2094.40,0.00,3518046689337.779785,3518046678278.147949,238,2,62.672829,0.021116,39916423,25857256,0,0,39642,0,1,1 +1774098374.492499,4.67,4,3992.50,53.45,1606.37,2092.77,0.00,0.000000,0.000000,238,2,2.022729,0.017618,39917213,25857880,0,0,39644,0,1,1 +1774098379.496421,18.57,4,3992.50,54.11,1580.44,2118.62,0.00,3515679119939.305176,3515679119941.135742,199,0,28.147124,0.123124,39926080,25864484,0,0,39647,0,1,1 +1774098384.496418,9.20,4,3992.50,53.89,1598.73,2109.99,0.00,70538.674329,81602.944779,6053112,1443699,8.146926,0.035722,39928609,25866371,0,0,39650,0,1,1 +1774098389.492091,2.01,4,3992.50,53.02,1632.91,2075.78,0.00,3521484500736.413574,3521484489662.743652,21,0,1.925720,0.016813,39929427,25866982,0,0,39652,0,1,1 +1774098394.491973,0.95,4,3992.50,53.22,1625.04,2083.66,0.00,70540.454619,81605.037608,6053112,1444015,0.003886,0.007141,39929528,25867124,0,0,39655,0,1,1 +1774098399.496533,0.70,4,3992.50,53.22,1624.80,2083.88,0.00,3515231570555.368164,3515231559499.121094,238,2,0.003874,0.007116,39929628,25867264,0,0,39657,0,1,1 +1774098404.493514,0.60,4,3992.50,53.27,1623.10,2085.60,0.00,70583.510541,81652.637806,6053886,1444288,0.004168,0.007669,39929733,25867414,0,0,39659,0,1,1 +1774098409.496714,1.05,4,3992.50,53.17,1630.87,2081.59,0.00,3516186955904.337402,3516186944850.973145,21,0,0.003726,0.007072,39929826,25867547,0,0,39662,0,1,1 +1774098414.496680,0.80,4,3992.50,52.88,1641.89,2070.53,0.00,0.175001,0.000000,199,0,0.003991,0.007265,39929935,25867696,0,0,39664,0,1,1 +1774098419.496070,0.60,4,3992.50,52.91,1640.93,2071.50,0.00,70547.229922,81613.605627,6053112,1444274,0.003891,0.007121,39930036,25867836,0,0,39667,0,1,1 +1774098424.496377,0.65,4,3992.50,52.97,1638.46,2073.96,0.00,4.109025,0.065621,6053886,1444569,0.003886,0.007140,39930137,25867978,0,0,39670,0,1,1 +1774098429.496028,0.70,4,3992.50,52.96,1638.74,2073.68,0.00,3518682752250.719727,3518682741187.134277,238,2,0.004539,0.007057,39930231,25868108,0,0,39672,0,1,1 +1774098434.493925,1.56,4,3992.50,53.05,1635.49,2076.92,0.00,3519917242564.018066,3519917242565.850586,199,0,0.009423,2.415416,39930645,25868704,0,0,39674,0,1,1 +1774098439.496250,30.09,4,3992.50,53.61,1607.17,2098.98,0.00,70505.848671,81643.483498,6053112,1444884,0.055543,118.116522,39934817,25881091,0,0,39677,0,1,1 +1774098444.494259,23.42,4,3992.50,53.37,1614.86,2089.55,0.00,3519838557138.153809,3519838545991.079102,21,0,0.030678,84.552036,39937162,25889842,0,0,39679,0,1,1 +1774098449.495302,9.52,4,3992.50,57.71,1445.20,2259.58,0.00,70544.789279,81791.846913,6054040,1445960,6.619158,0.018711,39938252,25890623,0,0,39682,0,1,1 +1774098454.495876,5.61,4,3992.50,54.14,1584.91,2119.84,0.00,0.000000,0.109655,6054040,1446083,33.447414,0.014338,39941755,25891436,0,0,39684,0,1,1 +1774098459.492060,1.00,4,3992.50,53.65,1604.32,2100.45,0.00,3521124723388.486816,3521124712130.380371,21,0,0.004362,0.008760,39941864,25891591,0,0,39687,0,1,1 +1774098464.496592,0.80,4,3992.50,53.37,1615.33,2089.43,0.00,0.048003,0.000000,70,0,0.003875,0.007126,39941964,25891732,0,0,39690,0,1,1 +1774098469.496104,0.90,4,3992.50,53.52,1608.73,2095.56,0.00,1.958980,0.000195,238,2,0.003878,0.007123,39942064,25891872,0,0,39692,0,1,1 +1774098474.496655,0.85,4,3992.50,53.50,1609.59,2094.55,0.00,3518049730883.833496,3518049730885.840332,21,0,0.006051,0.008784,39942208,25892043,0,0,39695,0,1,1 +1774098479.496207,0.80,4,3992.50,53.49,1609.86,2094.28,0.00,0.175016,0.000000,199,0,0.004103,0.006809,39942298,25892163,0,0,39697,0,1,1 +1774098484.496675,6.17,4,3992.50,53.31,1615.57,2087.24,0.00,0.000000,0.000000,199,0,0.020346,21.638825,39943562,25894719,0,0,39699,0,1,1 +1774098489.496434,5.97,4,3992.50,52.57,1643.48,2058.10,0.00,1.831924,0.000195,238,2,0.009674,18.433945,39944159,25896760,0,0,39702,0,1,1 +1774098494.494662,0.80,4,3992.50,52.60,1642.25,2059.34,0.00,0.000000,0.000000,238,2,0.002290,0.006358,39944229,25896882,0,0,39704,0,1,1 +1774098499.492607,0.85,4,3992.50,52.83,1636.08,2068.31,0.00,70586.519224,81877.254550,6054040,1446747,0.001832,0.005101,39944285,25896981,0,0,39707,0,1,1 +1774098504.496596,0.60,4,3992.50,52.84,1633.18,2068.79,0.00,3515632097738.745605,3515632086463.606934,70,0,0.002287,0.006361,39944355,25897104,0,0,39710,0,1,1 +1774098509.495100,0.80,4,3992.50,52.85,1632.94,2069.04,0.00,1.959375,0.000195,238,2,0.002290,0.006358,39944425,25897226,0,0,39712,0,1,1 +1774098514.492232,0.50,4,3992.50,52.85,1632.94,2069.04,0.00,3520456957703.500000,0.028141,237,247,0.002290,0.006360,39944495,25897348,0,0,39714,0,1,1 +1774098519.495973,0.75,4,3992.50,52.85,1632.70,2069.28,0.00,3515806390025.552734,3515806390027.061523,21,0,0.001905,0.005188,39944557,25897453,0,0,39717,0,1,1 +1774098524.491922,0.60,4,3992.50,52.85,1632.71,2069.28,0.00,2.008463,0.000195,238,2,0.002349,0.006431,39944632,25897580,0,0,39719,0,1,1 +1774098529.494120,1.10,4,3992.50,53.03,1617.50,2076.14,0.00,70522.391793,81813.674743,6053266,1446569,0.002376,0.006456,39944709,25897709,0,0,39722,0,1,1 +1774098534.494465,0.70,4,3992.50,53.05,1616.80,2076.84,0.00,3518194671389.445801,3518194660093.977539,238,2,0.002444,0.006481,39944789,25897841,0,0,39724,0,1,1 +1774098539.492518,0.70,4,3992.50,52.86,1624.21,2069.42,0.00,0.000000,0.000000,238,2,0.002290,0.007000,39944859,25897967,0,0,39727,0,1,1 +1774098544.495994,0.75,4,3992.50,52.86,1624.22,2069.42,0.00,70504.378651,81792.841550,6053266,1446634,0.001830,0.005108,39944915,25898067,0,0,39730,0,1,1 +1774098549.492052,16.20,4,3992.50,58.87,1394.40,2305.09,0.00,3521213038035.604004,3521213026730.380859,238,2,14.238474,0.021518,39946655,25899197,0,0,39732,0,1,1 +1774098554.496163,33.67,4,3992.50,58.96,1394.60,2308.36,0.00,3515546953983.070801,3515546953985.076172,21,0,119.868987,0.031430,39958996,25901381,0,0,39735,0,1,1 +1774098559.496399,29.07,4,3992.50,59.20,1385.65,2317.66,0.00,70556.169492,81846.087496,6054040,1447041,118.357199,0.035660,39971088,25903968,0,0,39737,0,1,1 +1774098564.496150,28.66,4,3992.50,59.31,1391.32,2322.05,0.00,3518612384222.940430,3518612372929.918945,238,2,119.170741,0.029459,39983281,25906168,0,0,39739,0,1,1 +1774098569.492736,29.12,4,3992.50,59.34,1389.98,2323.41,0.00,3520841342863.010254,3520841342864.843750,199,0,119.244607,0.037991,39995391,25908975,0,0,39742,0,1,1 +1774098574.496248,28.79,4,3992.50,59.42,1387.08,2326.26,0.00,0.000000,0.000000,199,0,119.680376,0.027446,40007621,25911050,0,0,39744,0,1,1 +1774098579.495304,29.10,4,3992.50,58.96,1405.02,2308.41,0.00,3519101415345.330078,0.000000,70,0,118.585713,0.048527,40019665,25914653,0,0,39747,0,1,1 +1774098584.495760,28.69,4,3992.50,59.31,1391.03,2322.32,0.00,70553.032246,81842.682088,6054040,1447153,120.157690,0.023920,40032130,25916303,0,0,39750,0,1,1 +1774098589.492199,28.49,4,3992.50,59.41,1384.67,2326.17,0.00,3520944771386.219238,3520944760087.541992,21,0,118.248189,0.021166,40044271,25917790,0,0,39752,0,1,1 +1774098594.495956,3.97,4,3992.50,53.15,1630.01,2080.92,0.00,0.048011,0.000000,70,0,57.841538,0.015884,40050307,25918690,0,0,39755,0,1,1 +1774098599.496209,5.72,4,3992.50,53.54,1614.78,2096.15,0.00,3518258929555.718262,0.000000,21,0,6.042880,0.032734,40052392,25920201,0,0,39757,0,1,1 +1774098604.496746,20.24,4,3992.50,54.92,1560.44,2150.41,0.00,0.000000,0.000000,21,0,32.194678,0.142588,40062879,25927919,0,0,39759,0,1,1 +1774098609.496212,2.91,4,3992.50,53.25,1626.04,2084.77,0.00,0.048052,0.000000,70,0,2.021064,0.015331,40063688,25928554,0,0,39762,0,1,1 +1774098614.491907,0.95,4,3992.50,52.90,1639.77,2071.04,0.00,70620.428820,81921.895899,6054063,1448507,0.004586,0.008527,40063804,25928718,0,0,39764,0,1,1 +1774098619.491956,1.05,4,3992.50,53.01,1625.33,2075.65,0.00,3518402531503.740234,0.226072,6053289,1448447,0.003878,0.007132,40063904,25928859,0,0,39767,0,1,1 +1774098624.496380,8.58,4,3992.50,53.53,1604.09,2095.93,0.00,3515327077841.162109,3515327066555.123535,21,0,0.025551,33.630037,40065473,25932735,0,0,39770,0,1,1 +1774098629.491904,29.54,4,3992.50,53.13,1611.61,2080.31,0.00,70622.901178,82043.816230,6054063,1449702,0.026267,119.478819,40067309,25945229,0,0,39772,0,1,1 +1774098634.492004,13.83,4,3992.50,52.59,1630.87,2058.95,0.00,0.003906,64.280149,6054065,1450136,0.012690,52.079189,40068053,25950771,0,0,39775,0,1,1 +1774098639.491973,14.47,4,3992.50,57.58,1438.80,2254.32,0.00,16.589949,0.193458,6054177,1450291,25.646706,0.024830,40071047,25952065,0,0,39777,0,1,1 +1774098644.493912,2.25,4,3992.50,55.33,1526.67,2166.45,0.00,3517072667456.505371,3517072656002.203613,199,0,14.422070,0.013558,40072700,25952547,0,0,39779,0,1,1 +1774098649.496052,1.00,4,3992.50,54.67,1553.68,2140.44,0.00,70541.836058,81999.877865,6053405,1450163,0.003876,0.007129,40072800,25952688,0,0,39782,0,1,1 +1774098654.492655,0.70,4,3992.50,53.66,1593.33,2100.74,0.00,3520828823951.967285,3520828812481.406250,21,0,0.003423,0.005859,40072886,25952804,0,0,39784,0,1,1 +1774098659.495517,0.95,4,3992.50,53.25,1609.17,2084.89,0.00,0.174900,0.000000,199,0,0.003876,0.007128,40072986,25952945,0,0,39787,0,1,1 +1774098664.496094,0.70,4,3992.50,53.22,1610.29,2083.79,0.00,1.363222,0.028317,237,247,0.003015,0.005085,40073062,25953048,0,0,39790,0,1,1 +1774098669.492932,0.70,4,3992.50,53.22,1610.29,2083.77,0.00,70619.428741,82109.416829,6054179,1450648,0.003685,0.006532,40073158,25953179,0,0,39792,0,1,1 +1774098674.496879,0.70,4,3992.50,53.09,1615.40,2078.62,0.00,3515661605737.655762,3515661594263.496582,238,2,0.003875,0.007758,40073258,25953323,0,0,39795,0,1,1 +1774098679.496908,1.15,4,3992.50,53.01,1621.17,2075.36,0.00,0.000000,0.000000,238,2,0.003408,0.005868,40073343,25953440,0,0,39797,0,1,1 +1774098684.496476,0.75,4,3992.50,52.99,1617.71,2074.67,0.00,3518740969825.398438,3518740969827.405762,21,0,0.003972,0.007199,40073449,25953586,0,0,39799,0,1,1 +1774098689.496099,0.70,4,3992.50,52.99,1617.72,2074.65,0.00,70577.518345,82063.852212,6053405,1450547,0.003966,0.007173,40073555,25953730,0,0,39802,0,1,1 +1774098694.491984,0.60,4,3992.50,52.99,1617.74,2074.64,0.00,3521335399469.596680,3521335387974.493652,199,0,0.003869,0.007116,40073654,25953869,0,0,39804,0,1,1 +1774098699.492030,0.65,4,3992.50,52.99,1617.75,2074.62,0.00,3518404368800.327637,0.000000,21,0,0.003420,0.005865,40073740,25953986,0,0,39807,0,1,1 +1774098704.496288,0.75,4,3992.50,52.99,1617.77,2074.61,0.00,70512.153428,81987.902283,6053405,1450614,0.003543,0.007443,40073833,25954131,0,0,39810,0,1,1 +1774098709.496780,11.31,4,3992.50,52.83,1621.63,2068.46,0.00,0.000000,34.124769,6053405,1450873,0.025864,40.064547,40075489,25958655,0,0,39812,0,1,1 +1774098714.493037,1.26,4,3992.50,52.86,1624.65,2069.43,0.00,3521072855002.030273,3521072843473.704102,70,0,0.003318,0.008606,40075587,25958821,0,0,39815,0,1,1 +1774098719.496769,0.60,4,3992.50,52.66,1632.28,2061.80,0.00,70519.507729,82030.744303,6053405,1450998,0.001817,0.005085,40075642,25958919,0,0,39817,0,1,1 +1774098724.492409,0.75,4,3992.50,52.67,1632.07,2062.01,0.00,3521507634491.629395,3521507622959.787109,238,2,0.002278,0.006362,40075711,25959041,0,0,39819,0,1,1 +1774098729.496018,0.75,4,3992.50,52.67,1632.07,2062.00,0.00,3515899921730.956543,3515899921732.962402,21,0,0.003405,0.007562,40075789,25959178,0,0,39822,0,1,1 +1774098734.491926,0.75,4,3992.50,52.68,1631.62,2062.45,0.00,2.008480,0.000195,238,2,0.002488,0.006894,40075865,25959311,0,0,39824,0,1,1 +1774098739.495097,0.90,4,3992.50,52.68,1627.63,2062.38,0.00,3516207233067.122559,3516207233068.953613,199,0,0.001817,0.005739,40075920,25959414,0,0,39827,0,1,1 +1774098744.491989,0.65,4,3992.50,52.68,1627.59,2062.36,0.00,1.364227,0.028338,237,247,0.002341,0.006432,40075994,25959541,0,0,39830,0,1,1 +1774098749.492081,0.65,4,3992.50,52.68,1627.59,2062.36,0.00,0.468448,3518372506716.448242,238,2,0.002339,0.006418,40076068,25959667,0,0,39832,0,1,1 +1774098754.491901,0.65,4,3992.50,52.68,1627.60,2062.36,0.00,0.000000,0.000000,238,2,0.002347,0.006436,40076143,25959795,0,0,39835,0,1,1 +1774098759.494692,0.70,4,3992.50,52.69,1626.87,2063.09,0.00,3516474050738.645020,0.028109,237,247,0.001954,0.005187,40076207,25959901,0,0,39837,0,1,1 +1774098764.492027,0.70,4,3992.50,52.69,1626.87,2063.09,0.00,3520313249994.472656,3520313249995.983398,21,0,0.002290,0.006359,40076277,25960023,0,0,39839,0,1,1 +1774098769.496625,1.05,4,3992.50,52.79,1624.48,2066.77,0.00,1.536966,0.028294,237,247,0.002287,0.006360,40076347,25960146,0,0,39842,0,1,1 +1774098774.495718,17.36,4,3992.50,59.12,1381.45,2314.68,0.00,70583.460031,82113.053504,6053405,1451183,19.038493,0.022492,40078548,25961301,0,0,39844,0,1,1 +1774098779.496727,34.10,4,3992.50,58.87,1394.84,2304.82,0.00,3517726795298.693848,3517726783773.022949,238,2,118.341688,0.048779,40090730,25964805,0,0,39847,0,1,1 +1774098784.495384,29.10,4,3992.50,59.26,1379.39,2320.26,0.00,0.000000,0.000000,238,2,119.999307,0.040119,40103041,25967653,0,0,39850,0,1,1 +1774098789.496813,29.72,4,3992.50,59.22,1381.52,2318.52,0.00,70550.020135,82074.821481,6053405,1451305,118.129821,0.049288,40115108,25971292,0,0,39852,0,1,1 +1774098794.496194,29.14,4,3992.50,59.22,1381.32,2318.72,0.00,3518873218897.306152,3518873207369.788574,21,0,120.181573,0.033096,40127441,25973858,0,0,39855,0,1,1 +1774098799.496736,28.85,4,3992.50,59.10,1386.24,2313.81,0.00,0.000000,0.000000,21,0,118.751877,0.035360,40139675,25976458,0,0,39857,0,1,1 +1774098804.492862,30.26,4,3992.50,59.31,1377.41,2322.21,0.00,0.000000,0.000000,21,0,119.657033,0.043738,40151807,25979661,0,0,39859,0,1,1 +1774098809.493327,29.56,4,3992.50,58.98,1390.53,2309.09,0.00,1.538236,0.028318,237,247,119.154782,0.043393,40164001,25982800,0,0,39862,0,1,1 +1774098814.492531,29.77,4,3992.50,59.35,1376.00,2323.62,0.00,3518997309384.610352,3518997309386.120605,21,0,119.183595,0.043734,40176194,25986004,0,0,39864,0,1,1 +1774098819.492784,2.56,4,3992.50,53.19,1617.39,2082.34,0.00,2.006734,0.000195,238,2,53.075168,0.025241,40181691,25987646,0,0,39867,0,1,1 +1774098824.491867,6.53,4,3992.50,53.52,1604.16,2095.55,0.00,70587.381014,82113.925931,6054190,1451965,6.048570,0.038710,40183784,25989254,0,0,39870,0,1,1 +1774098829.492051,19.57,4,3992.50,54.97,1547.52,2152.11,0.00,3518307706099.203125,3518307694577.202637,21,0,30.175953,0.129311,40193455,25996423,0,0,39872,0,1,1 +1774098834.491995,5.27,4,3992.50,54.46,1571.40,2132.41,0.00,70573.118876,82100.725287,6053416,1452919,4.040445,0.030022,40195097,25997689,0,0,39874,0,1,1 +1774098839.492924,1.00,4,3992.50,54.01,1589.06,2114.73,0.00,3517783984322.929688,3517783972797.591309,21,0,0.004594,0.008515,40195214,25997853,0,0,39877,0,1,1 +1774098844.495970,0.60,4,3992.50,53.72,1600.34,2103.45,0.00,2.005614,0.000195,238,2,0.003418,0.005852,40195300,25997969,0,0,39879,0,1,1 +1774098849.491956,0.75,4,3992.50,53.71,1600.92,2102.88,0.00,3521263391076.857422,3521263391078.691406,199,0,0.003881,0.007138,40195400,25998110,0,0,39882,0,1,1 +1774098854.495901,0.80,4,3992.50,53.70,1601.30,2102.49,0.00,3515663473450.694336,0.000000,21,0,0.003875,0.007117,40195500,25998250,0,0,39884,0,1,1 +1774098859.492729,1.05,4,3992.50,53.71,1601.52,2102.70,0.00,2.008110,0.000195,238,2,0.003880,0.007137,40195600,25998391,0,0,39887,0,1,1 +1774098864.496817,0.70,4,3992.50,53.51,1609.00,2095.06,0.00,70516.782361,82033.340796,6054190,1453393,0.003543,0.006016,40195696,25998518,0,0,39890,0,1,1 +1774098869.491951,0.75,4,3992.50,53.52,1608.61,2095.45,0.00,3521864475940.163086,3521864464404.970215,21,0,0.003869,0.007761,40195795,25998661,0,0,39892,0,1,1 +1774098874.496125,0.70,4,3992.50,53.52,1608.62,2095.43,0.00,0.048007,0.000000,70,0,0.003883,0.007134,40195896,25998803,0,0,39895,0,1,1 +1774098879.496429,0.70,4,3992.50,53.52,1608.64,2095.42,0.00,0.000000,0.000000,70,0,0.003878,0.007122,40195996,25998943,0,0,39897,0,1,1 +1774098884.491899,0.60,4,3992.50,53.71,1601.16,2102.86,0.00,0.127068,0.000000,199,0,0.003511,0.005901,40196088,25999062,0,0,39899,0,1,1 +1774098889.496728,0.95,4,3992.50,53.71,1609.15,2103.06,0.00,70508.172884,82021.442448,6054190,1453635,0.003862,0.007125,40196187,25999203,0,0,39902,0,1,1 +1774098894.491988,0.70,4,3992.50,53.50,1617.38,2094.51,0.00,3521775694325.115234,3521775682789.791504,199,0,0.003882,0.007129,40196287,25999343,0,0,39904,0,1,1 +1774098899.492124,0.75,4,3992.50,53.50,1617.16,2094.73,0.00,70574.355660,82098.514132,6054190,1453731,0.003878,0.007132,40196387,25999484,0,0,39907,0,1,1 +1774098904.495019,0.95,4,3992.50,53.39,1621.50,2090.39,0.00,3516400648628.598633,3516400637110.924805,70,0,0.003647,0.006482,40196480,25999612,0,0,39910,0,1,1 +1774098909.492930,0.75,4,3992.50,53.20,1628.93,2082.96,0.00,0.127006,0.000000,199,0,0.003651,0.006492,40196573,25999740,0,0,39912,0,1,1 +1774098914.491921,0.90,4,3992.50,53.18,1629.71,2082.17,0.00,3519147361559.316406,0.000000,21,0,0.003879,0.007134,40196673,25999881,0,0,39915,0,1,1 +1774098919.496510,5.97,4,3992.50,54.25,1588.05,2124.00,0.00,0.000000,0.000000,21,0,0.019152,20.021380,40197833,26002342,0,0,39917,0,1,1 +1774098924.496231,29.66,4,3992.50,53.74,1599.49,2104.20,0.00,2.006948,0.000195,238,2,0.047932,118.976690,40201392,26014694,0,0,39919,0,1,1 +1774098929.495611,17.01,4,3992.50,53.56,1604.11,2097.02,0.00,3518873364085.775879,3518873364087.607910,199,0,0.030656,66.103971,40203587,26021556,0,0,39922,0,1,1 +1774098934.496488,1.75,4,3992.50,53.04,1625.58,2076.63,0.00,70563.898659,82291.759883,6054193,1455337,0.004851,0.008679,40203693,26021713,0,0,39924,0,1,1 +1774098939.491990,14.52,4,3992.50,54.39,1575.83,2129.62,0.00,16.601654,0.095692,6054301,1455467,40.099913,0.030193,40208103,26023610,0,0,39927,0,1,1 +1774098944.495221,9.82,4,3992.50,53.66,1602.75,2100.73,0.00,3516164591185.391602,3516164579479.656738,70,0,0.021799,36.040015,40209528,26027744,0,0,39930,0,1,1 +1774098949.491928,2.96,4,3992.50,53.52,1614.62,2095.56,0.00,0.127037,0.000000,199,0,0.004837,4.017664,40209718,26028359,0,0,39932,0,1,1 +1774098954.494529,0.95,4,3992.50,53.20,1622.54,2082.98,0.00,0.000000,0.000000,199,0,0.001830,0.005109,40209774,26028459,0,0,39935,0,1,1 +1774098959.495404,1.00,4,3992.50,53.20,1622.54,2082.98,0.00,1.363140,0.028315,237,247,0.002288,0.006355,40209844,26028581,0,0,39937,0,1,1 +1774098964.496492,1.00,4,3992.50,53.22,1621.83,2083.69,0.00,70572.039152,82322.624757,6053527,1455665,0.002313,0.006386,40209916,26028705,0,0,39939,0,1,1 +1774098969.496389,0.80,4,3992.50,53.14,1624.82,2080.70,0.00,4.109362,0.038673,6054301,1455918,0.002289,0.006366,40209986,26028828,0,0,39942,0,1,1 +1774098974.496590,0.90,4,3992.50,53.01,1629.87,2075.64,0.00,0.000000,0.003125,6054301,1455922,0.001818,0.005089,40210041,26028926,0,0,39944,0,1,1 +1774098979.496225,1.30,4,3992.50,53.23,1622.14,2084.25,0.00,3518693741144.459473,3518693729394.032227,238,2,0.002297,0.006374,40210112,26029050,0,0,39947,0,1,1 +1774098984.496814,0.80,4,3992.50,53.19,1624.05,2082.45,0.00,70578.601113,82336.992950,6053527,1455790,0.002414,0.006521,40210192,26029183,0,0,39950,0,1,1 +1774098989.495852,0.95,4,3992.50,53.19,1623.81,2082.69,0.00,3519114914900.169434,3519114903140.085449,70,0,0.002314,0.006388,40210264,26029307,0,0,39952,0,1,1 +1774098994.496091,0.90,4,3992.50,53.21,1623.09,2083.42,0.00,70585.502925,82342.769160,6053527,1455796,0.001986,0.005224,40210330,26029416,0,0,39955,0,1,1 +1774098999.496671,0.85,4,3992.50,53.21,1623.09,2083.41,0.00,3518028616368.071289,3518028604611.655762,21,0,0.002301,0.006999,40210401,26029542,0,0,39957,0,1,1 +1774099004.495962,0.80,4,3992.50,53.00,1631.58,2074.93,0.00,70598.939927,82358.399213,6053527,1455805,0.002584,0.006920,40210477,26029676,0,0,39959,0,1,1 +1774099009.496488,1.20,4,3992.50,53.33,1628.17,2088.03,0.00,3518066890602.359863,3518066878845.630859,199,0,0.002596,0.006920,40210554,26029810,0,0,39962,0,1,1 +1774099014.496861,19.60,4,3992.50,59.51,1391.84,2330.04,0.00,70587.602662,82340.651753,6054301,1456099,25.190535,0.024804,40213360,26031208,0,0,39964,0,1,1 +1774099019.491988,33.95,4,3992.50,59.57,1392.30,2332.39,0.00,3521869081376.702148,3521869069609.976074,237,247,118.932718,0.025164,40225659,26032795,0,0,39967,0,1,1 +1774099024.492838,29.35,4,3992.50,59.56,1392.72,2332.00,0.00,3517839791035.581055,3517839791037.090820,21,0,118.950285,0.033822,40238025,26035256,0,0,39970,0,1,1 +1774099029.495392,29.45,4,3992.50,59.59,1391.66,2332.99,0.00,0.000000,0.000000,21,0,119.707103,0.024599,40250369,26036831,0,0,39972,0,1,1 +1774099034.491970,29.12,4,3992.50,59.64,1389.70,2335.01,0.00,70641.386823,82403.440453,6054301,1456289,118.851872,0.036673,40262653,26039541,0,0,39975,0,1,1 +1774099039.493137,29.24,4,3992.50,59.64,1389.79,2334.95,0.00,3517615921307.367676,3517615909554.101562,238,2,119.746126,0.044043,40274999,26042868,0,0,39977,0,1,1 +1774099044.491924,29.39,4,3992.50,59.36,1391.45,2324.27,0.00,3519290912135.935059,3519290912137.942383,21,0,118.999513,0.041692,40287196,26045899,0,0,39979,0,1,1 +1774099049.495965,29.07,4,3992.50,59.57,1383.39,2332.34,0.00,70531.930999,82280.634727,6053527,1456097,119.478473,0.052479,40299487,26049771,0,0,39982,0,1,1 +1774099054.496487,28.27,4,3992.50,59.41,1389.92,2325.87,0.00,3518069405758.648926,3518069394000.170410,237,247,119.362909,0.051514,40311808,26053618,0,0,39984,0,1,1 +1774099059.491905,1.41,4,3992.50,54.16,1595.28,2120.52,0.00,70656.361046,82422.787605,6054315,1456416,46.314411,0.025705,40316699,26055306,0,0,39987,0,1,1 +1774099064.495384,8.38,4,3992.50,53.84,1607.91,2107.87,0.00,3515990955792.775391,3515990944046.812988,21,0,8.070768,0.044510,40319453,26057408,0,0,39990,0,1,1 +1774099069.495923,15.61,4,3992.50,54.93,1565.21,2150.51,0.00,0.000000,0.000000,21,0,24.136457,0.113829,40327580,26063424,0,0,39992,0,1,1 +1774099074.496274,7.18,4,3992.50,53.87,1610.09,2109.07,0.00,70584.088786,82342.162839,6053542,1457157,8.047976,0.034500,40330080,26065203,0,0,39994,0,1,1 +1774099079.494154,0.90,4,3992.50,53.59,1621.13,2098.01,0.00,3519929493361.241211,3519929481597.353516,21,0,0.004627,0.008558,40330199,26065370,0,0,39997,0,1,1 +1774099084.495584,4.36,4,3992.50,53.54,1622.86,2096.24,0.00,1.537939,0.028312,237,247,0.020114,16.630287,40331434,26067487,0,0,39999,0,1,1 +1774099089.496609,29.98,4,3992.50,53.91,1600.69,2110.64,0.00,0.000000,0.000000,237,247,0.053505,118.147940,40335394,26079864,0,0,40002,0,1,1 +1774099094.492474,18.33,4,3992.50,53.63,1609.20,2099.80,0.00,70650.039763,82598.615767,6054319,1459037,0.028209,70.359967,40337396,26087140,0,0,40004,0,1,1 +1774099099.494652,16.97,4,3992.50,58.22,1424.43,2279.35,0.00,16.583402,0.188004,6054461,1459114,40.047018,0.026563,40341754,26088606,0,0,40007,0,1,1 +1774099104.491921,1.10,4,3992.50,53.44,1611.68,2092.12,0.00,3520360262503.881836,3520360250576.582520,21,0,0.008154,0.011299,40341951,26088832,0,0,40010,0,1,1 +1774099109.496545,0.55,4,3992.50,53.42,1612.48,2091.34,0.00,0.048002,0.000000,70,0,0.003900,0.007147,40342053,26088974,0,0,40012,0,1,1 +1774099114.496471,0.65,4,3992.50,53.41,1612.50,2091.31,0.00,70610.744141,82531.874711,6054461,1459272,0.003878,0.007132,40342153,26089115,0,0,40015,0,1,1 +1774099119.491907,0.70,4,3992.50,53.41,1612.51,2091.30,0.00,3521651839418.429688,3521651827485.119141,237,247,0.003690,0.006544,40342249,26089246,0,0,40017,0,1,1 +1774099124.492327,1.00,4,3992.50,53.63,1604.14,2099.67,0.00,70602.282698,82547.138331,6054461,1459407,0.003411,0.004896,40342318,26089330,0,0,40019,0,1,1 +1774099129.496668,0.95,4,3992.50,53.53,1605.23,2095.68,0.00,3515384744464.445312,3515384732530.458496,21,0,0.003900,0.007615,40342420,26089474,0,0,40022,0,1,1 +1774099134.496630,0.55,4,3992.50,53.32,1613.17,2087.73,0.00,0.000000,0.000000,21,0,0.003433,0.006041,40342507,26089593,0,0,40024,0,1,1 +1774099139.496083,0.65,4,3992.50,53.15,1619.90,2081.00,0.00,0.175019,0.000000,199,0,0.003878,0.007133,40342607,26089734,0,0,40027,0,1,1 +1774099144.493483,0.80,4,3992.50,52.98,1626.56,2074.34,0.00,0.000000,0.000000,199,0,0.003973,0.007212,40342713,26089881,0,0,40030,0,1,1 +1774099149.495985,0.65,4,3992.50,52.93,1628.46,2072.44,0.00,70574.263128,82513.109371,6054461,1459651,0.003951,0.007146,40342818,26090023,0,0,40032,0,1,1 +1774099154.496411,0.55,4,3992.50,53.21,1617.54,2083.32,0.00,3518137432367.349121,3518137420423.721680,21,0,0.001919,0.002599,40342876,26090091,0,0,40035,0,1,1 +1774099159.496115,0.75,4,3992.50,53.24,1616.46,2084.46,0.00,0.000000,0.000000,21,0,0.001791,0.003042,40342923,26090152,0,0,40037,0,1,1 +1774099164.494980,0.95,4,3992.50,53.29,1614.48,2086.40,0.00,70625.785685,82573.273308,6054461,1459752,0.002325,0.002860,40342979,26090218,0,0,40039,0,1,1 +1774099169.496589,0.55,4,3992.50,53.29,1614.49,2086.40,0.00,0.000000,0.007224,6054461,1459760,0.001722,0.002972,40343023,26090280,0,0,40042,0,1,1 +1774099174.492856,0.45,4,3992.50,53.29,1614.50,2086.39,0.00,3521065646878.398438,3521065634923.181152,237,247,0.001685,0.002497,40343064,26090332,0,0,40044,0,1,1 +1774099179.495557,0.65,4,3992.50,53.31,1613.79,2087.10,0.00,3516537754530.089844,3516537754531.599121,21,0,0.004168,0.035021,40343184,26090473,0,0,40047,0,1,1 +1774099184.496125,2.12,4,3992.50,53.43,1609.01,2091.81,0.00,0.000000,0.000000,21,0,0.047517,3.470202,40346632,26094451,0,0,40050,0,1,1 +1774099189.496607,14.96,4,3992.50,60.16,1348.04,2355.23,0.00,2.006643,0.000195,238,2,0.125720,3.475827,40350666,26098915,0,0,40052,0,1,1 +1774099194.492313,7.83,4,3992.50,59.87,1358.95,2343.93,0.00,3521461303215.871094,3521461303217.704590,199,0,2.000360,3.499104,40358750,26108091,0,0,40055,0,1,1 +1774099199.495880,4.08,4,3992.50,60.15,1348.07,2354.84,0.00,70555.137406,82498.139260,6053687,1459821,3.858877,3.519714,40371580,26121864,0,0,40057,0,1,1 +1774099204.491906,3.22,4,3992.50,60.14,1348.65,2354.77,0.00,3521235693869.581055,3521235681907.217285,237,247,3.500118,3.533782,40384674,26136003,0,0,40059,0,1,1 +1774099209.491929,3.47,4,3992.50,60.25,1344.71,2358.80,0.00,3518421482945.176758,3518421482946.511719,199,0,3.601833,3.533056,40396997,26150274,0,0,40062,0,1,1 +1774099214.492518,3.32,4,3992.50,60.27,1343.92,2359.72,0.00,3518022302479.528809,0.000000,21,0,3.791228,3.519797,40409830,26163660,0,0,40064,0,1,1 +1774099219.492686,3.67,4,3992.50,60.60,1335.17,2372.59,0.00,2.006769,0.000195,238,2,3.462992,3.513412,40421952,26176200,0,0,40067,0,1,1 +1774099224.496811,3.48,4,3992.50,60.30,1347.04,2360.81,0.00,3515536799617.551758,3515536799619.557129,21,0,3.615339,3.520797,40434432,26189337,0,0,40070,0,1,1 +1774099229.491818,4.09,4,3992.50,60.19,1351.36,2356.55,0.00,70680.361699,82661.597501,6054472,1460391,3.523412,3.510936,40446048,26201513,0,0,40072,0,1,1 +1774099234.496567,3.42,4,3992.50,60.24,1349.73,2358.46,0.00,3515098545783.674316,3515098545787.761230,6053698,1460160,3.624672,3.512105,40457720,26214406,0,0,40075,0,1,1 +1774099239.492483,3.78,4,3992.50,60.57,1337.08,2371.55,0.00,3521313347724.218262,3521313335741.069336,21,0,3.736638,2.677548,40468077,26224204,0,0,40077,0,1,1 +1774099244.496128,1.98,4,3992.50,60.32,1347.14,2361.64,0.00,1.537258,0.028300,237,247,3.461310,0.512570,40475140,26230537,0,0,40079,0,1,1 +1774099249.496311,2.69,4,3992.50,60.46,1338.56,2366.99,0.00,3518308478900.050293,3518308478901.560547,21,0,3.530181,0.075616,40482138,26235989,0,0,40082,0,1,1 +1774099254.496481,2.03,4,3992.50,60.28,1345.44,2360.12,0.00,70603.268132,82584.404885,6053700,1460371,3.573847,0.075146,40488931,26241795,0,0,40084,0,1,1 +1774099259.494260,2.49,4,3992.50,59.82,1363.64,2341.96,0.00,3520000297193.510254,3520000285206.643555,21,0,3.453198,0.074830,40495836,26247192,0,0,40087,0,1,1 +1774099264.494202,1.93,4,3992.50,60.06,1354.13,2351.44,0.00,0.175002,0.000000,199,0,3.555358,0.075369,40502650,26252969,0,0,40090,0,1,1 +1774099269.491922,1.78,4,3992.50,60.01,1355.98,2349.62,0.00,3520042403131.562500,0.000000,70,0,3.493495,0.074118,40509557,26258404,0,0,40092,0,1,1 +1774099274.496099,2.18,4,3992.50,60.06,1353.99,2351.64,0.00,0.000000,0.000000,70,0,3.559927,0.075694,40516456,26264127,0,0,40095,0,1,1 +1774099279.496336,2.28,4,3992.50,60.31,1344.05,2361.45,0.00,3518270905143.044922,0.000000,21,0,3.539195,0.074264,40523395,26269672,0,0,40097,0,1,1 +1774099284.496111,3.21,4,3992.50,59.99,1356.59,2348.83,0.00,0.175008,0.000000,199,0,3.486785,0.073362,40530179,26275196,0,0,40099,0,1,1 +1774099289.491929,2.04,4,3992.50,59.93,1358.97,2346.50,0.00,1.364520,0.028344,237,247,3.505468,0.076173,40537096,26280832,0,0,40102,0,1,1 +1774099294.496003,1.78,4,3992.50,60.06,1353.93,2351.49,0.00,0.000000,0.000000,237,247,3.540941,0.074095,40544058,26286373,0,0,40104,0,1,1 +1774099299.491898,2.75,4,3992.50,60.09,1352.91,2352.54,0.00,70666.245011,82663.188318,6054474,1460788,3.553409,0.075370,40550849,26292167,0,0,40107,0,1,1 +1774099304.495785,1.98,4,3992.50,59.97,1357.40,2348.06,0.00,3515703982475.459961,3515703982479.545898,6053700,1460551,3.495848,0.075487,40557914,26297549,0,0,40110,0,1,1 +1774099309.492157,2.49,4,3992.50,60.45,1334.33,2366.73,0.00,3520992500699.048828,3520992488699.155762,237,247,3.544630,0.076268,40564647,26303401,0,0,40112,0,1,1 +1774099314.496289,1.92,4,3992.50,59.97,1353.13,2347.80,0.00,3515531982391.796387,3515531982393.305176,21,0,3.441482,0.074842,40571527,26308769,0,0,40115,0,1,1 +1774099319.492453,1.88,4,3992.50,59.99,1352.22,2348.75,0.00,0.000000,0.000000,21,0,3.562863,0.075222,40578313,26314552,0,0,40117,0,1,1 +1774099324.492845,1.88,4,3992.50,59.89,1356.24,2344.90,0.00,70604.245372,82588.989909,6054474,1460889,3.562110,0.076113,40585290,26320170,0,0,40119,0,1,1 +1774099329.495001,2.08,4,3992.50,59.93,1354.79,2346.44,0.00,3516920419918.983887,3516920407938.467773,21,0,3.494117,0.075864,40592139,26325791,0,0,40122,0,1,1 +1774099334.495118,2.18,4,3992.50,59.79,1360.21,2341.09,0.00,0.174996,0.000000,199,0,3.507106,0.076932,40599052,26331408,0,0,40124,0,1,1 +1774099339.491819,2.08,4,3992.50,60.38,1344.32,2364.11,0.00,1.833046,0.000195,238,2,3.531151,0.074204,40605981,26336961,0,0,40127,0,1,1 +1774099344.492266,1.93,4,3992.50,60.37,1342.50,2363.68,0.00,70601.459356,82588.145146,6054474,1460950,3.519575,0.074781,40612733,26342698,0,0,40130,0,1,1 +1774099349.492589,1.98,4,3992.50,60.08,1354.31,2352.09,0.00,3518209764118.437012,3518209752131.454590,238,2,3.500822,0.074968,40619745,26348158,0,0,40132,0,1,1 +1774099354.492827,1.98,4,3992.50,60.18,1350.17,2356.36,0.00,0.000000,0.000000,238,2,3.541868,0.076074,40626476,26354003,0,0,40135,0,1,1 +1774099359.495882,2.03,4,3992.50,60.00,1357.54,2349.11,0.00,3516289283573.860840,0.028108,237,247,3.547913,0.076182,40633445,26359589,0,0,40137,0,1,1 +1774099364.496403,1.83,4,3992.50,60.00,1357.72,2349.11,0.00,70596.777200,82586.890441,6053700,1460746,3.485454,0.073249,40640263,26365137,0,0,40139,0,1,1 +1774099369.496628,2.33,4,3992.50,60.18,1352.39,2356.32,0.00,4.109092,0.080465,6054474,1461038,3.540629,0.075856,40647207,26370777,0,0,40142,0,1,1 +1774099374.494234,1.93,4,3992.50,60.25,1350.08,2358.77,0.00,3520122438428.265625,3520122426436.702148,21,0,3.516059,0.075299,40654108,26376393,0,0,40144,0,1,1 +1774099379.496388,2.13,4,3992.50,60.47,1341.86,2367.36,0.00,1.537716,0.028308,237,247,3.468303,0.076277,40660947,26382044,0,0,40147,0,1,1 +1774099384.492465,2.03,4,3992.50,60.40,1344.37,2364.82,0.00,0.000000,0.000000,237,247,3.561059,0.072305,40667948,26387497,0,0,40150,0,1,1 +1774099389.496238,1.98,4,3992.50,60.29,1348.69,2360.50,0.00,3515784713151.331543,3515784713152.665527,199,0,3.556724,0.077334,40674736,26393388,0,0,40152,0,1,1 +1774099394.496011,1.98,4,3992.50,60.11,1355.88,2353.40,0.00,0.000000,0.000000,199,0,3.451444,0.074671,40681674,26398753,0,0,40155,0,1,1 +1774099399.495886,2.03,4,3992.50,60.40,1348.50,2364.62,0.00,0.000000,0.000000,199,0,3.551442,0.074777,40688470,26404538,0,0,40157,0,1,1 +1774099404.491963,2.13,4,3992.50,60.26,1354.06,2359.19,0.00,3521199857077.852051,0.000000,21,0,3.567736,0.075355,40695452,26410109,0,0,40159,0,1,1 +1774099409.492215,1.88,4,3992.50,60.11,1359.61,2353.63,0.00,2.006735,0.000195,238,2,3.486910,0.074665,40702273,26415715,0,0,40162,0,1,1 +1774099414.495911,1.93,4,3992.50,60.10,1360.00,2353.22,0.00,3515838265373.926270,3515838265375.883789,70,0,3.511792,0.075662,40709153,26421304,0,0,40164,0,1,1 +1774099419.492044,1.98,4,3992.50,59.97,1365.39,2347.94,0.00,0.000000,0.000000,70,0,3.516526,0.073759,40716079,26426829,0,0,40167,0,1,1 +1774099424.492471,2.13,4,3992.50,59.91,1367.53,2345.70,0.00,0.000000,0.000000,70,0,3.565445,0.075458,40722887,26432662,0,0,40170,0,1,1 +1774099429.492521,2.13,4,3992.50,60.22,1354.22,2357.79,0.00,3518401985457.195312,0.000000,21,0,3.467557,0.074537,40729868,26438025,0,0,40172,0,1,1 +1774099434.496315,1.98,4,3992.50,60.17,1355.96,2355.85,0.00,0.048010,0.000000,70,0,3.552027,0.075313,40736672,26443811,0,0,40175,0,1,1 +1774099439.496040,1.83,4,3992.50,60.03,1361.58,2350.42,0.00,1.490414,0.028322,237,247,3.493563,0.074982,40743564,26449340,0,0,40177,0,1,1 +1774099444.491960,1.98,4,3992.50,60.06,1360.29,2351.65,0.00,3521310627228.227051,3521310627229.738281,21,0,3.524599,0.075073,40750417,26454993,0,0,40179,0,1,1 +1774099449.492075,2.23,4,3992.50,60.08,1359.49,2352.32,0.00,0.000000,0.000000,21,0,3.547593,0.075499,40757380,26460592,0,0,40182,0,1,1 +1774099454.496382,1.78,4,3992.50,60.40,1347.17,2364.84,0.00,1.537055,0.028296,237,247,3.496068,0.074209,40764277,26466120,0,0,40184,0,1,1 +1774099459.496300,2.13,4,3992.50,60.73,1334.20,2377.71,0.00,70609.391153,82597.153338,6054474,1461283,3.561667,0.076496,40771096,26471963,0,0,40187,0,1,1 +1774099464.496438,1.83,4,3992.50,60.17,1356.09,2355.67,0.00,3518339949058.055176,3518339937072.281738,70,0,3.479145,0.074445,40778103,26477309,0,0,40190,0,1,1 +1774099469.492436,2.08,4,3992.50,60.34,1349.13,2362.61,0.00,3521255754388.180664,0.000000,21,0,3.542153,0.076516,40784845,26483192,0,0,40192,0,1,1 +1774099474.492603,1.78,4,3992.50,60.25,1352.86,2358.92,0.00,70603.300623,82593.061936,6053700,1461073,3.541524,0.075023,40791811,26488734,0,0,40194,0,1,1 +1774099479.491915,2.18,4,3992.50,60.35,1349.04,2362.72,0.00,3518921302436.877441,3518921290445.016113,70,0,3.490595,0.074503,40798652,26494340,0,0,40197,0,1,1 +1774099484.496794,5.93,4,3992.50,60.30,1351.05,2360.74,0.00,3515007460740.377930,0.000000,21,0,3.551457,0.082654,40805763,26500057,0,0,40199,0,1,1 +1774099489.492674,4.47,4,3992.50,60.67,1329.11,2375.37,0.00,0.000000,0.000000,21,0,3.533348,0.085645,40812941,26505884,0,0,40202,0,1,1 +1774099494.494123,4.18,4,3992.50,60.87,1321.04,2383.32,0.00,0.048033,0.000000,70,0,4.948880,0.110314,40822515,26513994,0,0,40204,0,1,1 +1774099499.494426,5.28,4,3992.50,60.48,1336.52,2367.92,0.00,70601.332812,82591.255256,6053701,1461586,6.834482,0.150552,40835859,26525374,0,0,40207,0,1,1 +1774099504.492591,4.12,4,3992.50,61.00,1316.11,2388.31,0.00,0.007034,0.069459,6053702,1461675,5.414358,0.120498,40846442,26534415,0,0,40210,0,1,1 +1774099509.496407,3.87,4,3992.50,60.74,1326.35,2378.02,0.00,4.106143,0.055426,6054476,1462000,6.783127,0.150301,40859791,26545547,0,0,40212,0,1,1 +1774099514.493647,3.41,4,3992.50,60.84,1322.32,2382.16,0.00,3520380940548.330078,3520380928555.097168,21,0,6.649449,0.152213,40872633,26557211,0,0,40215,0,1,1 +1774099519.496408,3.50,4,3992.50,60.79,1324.01,2380.04,0.00,0.048020,0.000000,70,0,6.751045,0.148404,40885776,26568435,0,0,40217,0,1,1 +1774099524.491900,3.91,4,3992.50,61.03,1314.63,2389.41,0.00,1.491677,0.028346,237,247,3.724125,0.086699,40893225,26574683,0,0,40219,0,1,1 +1774099529.493773,3.21,4,3992.50,61.16,1309.43,2394.59,0.00,3517119797801.878906,3517119797803.388672,21,0,6.527746,0.143698,40905900,26585395,0,0,40222,0,1,1 +1774099534.495582,4.33,4,3992.50,60.86,1321.25,2382.71,0.00,70584.240759,82567.081197,6054476,1462626,6.781363,0.148941,40919129,26596682,0,0,40224,0,1,1 +1774099539.496385,3.81,4,3992.50,60.24,1345.48,2358.53,0.00,3517872217247.075684,3517872205260.313477,237,247,6.151244,0.138321,40930889,26607308,0,0,40227,0,1,1 +1774099544.496557,2.59,4,3992.50,60.49,1335.77,2368.21,0.00,3518316316014.727051,3518316316016.237305,21,0,4.853682,0.113066,40940672,26615502,0,0,40230,0,1,1 +1774099549.493258,4.44,4,3992.50,61.07,1315.68,2391.08,0.00,70656.400022,82652.039095,6054476,1463126,5.279064,0.114667,40950829,26624132,0,0,40232,0,1,1 +1774099554.495792,3.36,4,3992.50,61.07,1315.68,2390.93,0.00,3516655186493.957031,3516655174512.303711,21,0,6.989635,0.155949,40964465,26635859,0,0,40235,0,1,1 +1774099559.492236,4.02,4,3992.50,61.07,1315.73,2390.95,0.00,0.175125,0.000000,199,0,6.694563,0.146535,40977377,26646929,0,0,40237,0,1,1 +1774099564.495395,2.03,4,3992.50,60.47,1339.23,2367.45,0.00,1.362518,0.028302,237,247,5.450530,0.126313,40987956,26656552,0,0,40239,0,1,1 +1774099569.492467,4.32,4,3992.50,61.04,1316.52,2390.04,0.00,70645.499803,82645.997929,6053702,1463175,3.542306,0.079603,40995081,26662211,0,0,40242,0,1,1 +1774099574.493343,3.11,4,3992.50,60.86,1323.81,2382.90,0.00,3517821292301.655273,3517821280310.282715,237,247,6.532958,0.139293,41007661,26672808,0,0,40244,0,1,1 +1774099579.496339,2.23,4,3992.50,60.94,1331.09,2385.84,0.00,3516329903314.308594,3516329903315.817871,21,0,4.585396,0.105207,41016754,26680693,0,0,40247,0,1,1 +1774099584.496638,2.03,4,3992.50,60.79,1336.82,2380.10,0.00,0.048044,0.000000,70,0,3.528096,0.075984,41023573,26686440,0,0,40250,0,1,1 +1774099589.493419,2.44,4,3992.50,60.40,1352.05,2364.86,0.00,1.491292,0.028339,237,247,3.490791,0.076687,41030588,26691877,0,0,40252,0,1,1 +1774099594.496433,2.08,4,3992.50,60.81,1336.36,2380.67,0.00,0.468175,3516317881899.936035,238,2,3.551024,0.077877,41037386,26697734,0,0,40255,0,1,1 +1774099599.494243,2.03,4,3992.50,61.07,1326.03,2390.85,0.00,3519978861768.773926,0.028137,237,247,3.460144,0.702215,41045418,26704293,0,0,40257,0,1,1 +1774099604.495901,2.70,4,3992.50,61.06,1326.12,2390.72,0.00,3517271103371.863281,3517271103373.373047,21,0,3.232736,2.563900,41055661,26714119,0,0,40259,0,1,1 +1774099609.495443,3.47,4,3992.50,60.74,1338.67,2378.19,0.00,70612.187254,82611.376157,6053723,1464237,3.795746,3.509020,41068401,26726779,0,0,40262,0,1,1 +1774099614.496459,3.88,4,3992.50,60.97,1324.84,2387.25,0.00,3517722359607.599121,3517722347611.770996,199,0,3.486906,3.465718,41080580,26738625,0,0,40264,0,1,1 +1774099619.492115,3.63,4,3992.50,60.54,1341.73,2370.34,0.00,70671.057142,82675.751611,6054497,1464546,3.591891,3.504671,41092782,26750959,0,0,40267,0,1,1 +1774099624.495432,3.72,4,3992.50,60.44,1345.73,2366.36,0.00,3516104979680.553711,3516104967692.408203,238,2,3.639484,3.506415,41105322,26762994,0,0,40270,0,1,1 +1774099629.492873,3.32,4,3992.50,60.78,1332.54,2379.50,0.00,3520238879109.872559,0.028139,237,247,3.710419,3.509696,41118075,26775317,0,0,40272,0,1,1 +1774099634.496083,3.82,4,3992.50,60.53,1342.18,2369.99,0.00,3516179200877.499023,3516179200878.960449,70,0,3.528831,3.508237,41130465,26787470,0,0,40275,0,1,1 +1774099639.491919,3.59,4,3992.50,60.88,1327.55,2383.73,0.00,1.491574,0.028344,237,247,3.592768,3.505343,41142666,26799799,0,0,40277,0,1,1 +1774099644.496384,3.21,4,3992.50,60.44,1344.88,2366.20,0.00,3515297819434.548340,3515297819436.057129,21,0,3.543805,3.505811,41155045,26811651,0,0,40279,0,1,1 +1774099649.491901,3.22,4,3992.50,60.48,1342.91,2367.96,0.00,70673.200924,82699.424582,6054497,1464825,3.622794,3.508995,41167451,26824018,0,0,40282,0,1,1 +1774099654.491893,3.68,4,3992.50,60.75,1332.02,2378.64,0.00,0.000000,0.011523,6054497,1464844,3.577946,3.505451,41179671,26836284,0,0,40284,0,1,1 +1774099659.492272,3.62,4,3992.50,60.41,1345.37,2365.05,0.00,3518170046543.453125,3518170034528.864746,70,0,3.705833,3.507179,41192399,26848452,0,0,40287,0,1,1 +1774099664.492450,3.23,4,3992.50,60.55,1339.68,2370.54,0.00,70603.175069,82622.361605,6053723,1464636,3.549157,3.509243,41204741,26860634,0,0,40290,0,1,1 +1774099669.496317,3.63,4,3992.50,61.18,1315.12,2395.29,0.00,3515717703915.578613,3515717691903.795410,237,247,3.532907,3.507552,41217008,26872793,0,0,40292,0,1,1 +1774099674.496403,3.83,4,3992.50,60.81,1328.28,2380.99,0.00,0.000000,0.000000,237,247,3.609386,3.507987,41229181,26885074,0,0,40294,0,1,1 +1774099679.492325,3.57,4,3992.50,60.89,1325.15,2384.09,0.00,3521309075177.224121,3521309075178.735352,21,0,3.560490,3.505070,41241538,26897244,0,0,40297,0,1,1 +1774099684.491920,3.48,4,3992.50,60.76,1329.95,2378.92,0.00,0.048051,0.000000,70,0,3.582019,3.507914,41253744,26909441,0,0,40299,0,1,1 +1774099689.495825,3.62,4,3992.50,60.86,1326.03,2382.73,0.00,70554.682231,82581.341954,6054497,1465119,3.442097,3.506423,41266014,26921243,0,0,40302,0,1,1 +1774099694.495577,3.73,4,3992.50,61.15,1314.46,2394.21,0.00,3518611645929.110840,3518611633892.509277,21,0,3.476695,3.506457,41277950,26933471,0,0,40304,0,1,1 +1774099699.493002,3.93,4,3992.50,60.71,1335.74,2377.00,0.00,0.175090,0.000000,199,0,3.899432,3.507839,41291098,26945760,0,0,40307,0,1,1 +1774099704.494161,3.77,4,3992.50,60.48,1344.65,2367.87,0.00,70593.304316,82647.373212,6054497,1465314,3.546978,3.507760,41303527,26957866,0,0,40310,0,1,1 +1774099709.491869,3.47,4,3992.50,60.68,1336.84,2375.64,0.00,3520050016040.122559,3520050003976.397949,237,247,3.581206,3.508447,41315868,26970142,0,0,40312,0,1,1 +1774099714.492020,3.22,4,3992.50,60.67,1337.23,2375.21,0.00,3518331049575.284668,3518331049576.746582,70,0,3.538459,3.508581,41328201,26982294,0,0,40315,0,1,1 +1774099719.495207,3.31,4,3992.50,60.71,1335.40,2377.01,0.00,3516196306034.788574,0.000000,21,0,3.525652,3.509367,41340292,26994615,0,0,40317,0,1,1 +1774099724.495155,3.52,4,3992.50,60.92,1327.49,2385.05,0.00,0.048047,0.000000,70,0,3.588578,3.505419,41352706,27006752,0,0,40319,0,1,1 +1774099729.495875,2.91,4,3992.50,60.87,1324.78,2383.26,0.00,0.126935,0.000000,199,0,3.556908,3.507441,41365035,27018755,0,0,40322,0,1,1 +1774099734.492471,3.01,4,3992.50,60.49,1337.50,2368.42,0.00,3520833584691.654785,0.000000,70,0,3.594266,3.508319,41377288,27031180,0,0,40324,0,1,1 +1774099739.495836,3.21,4,3992.50,60.35,1343.38,2362.64,0.00,1.957472,0.000195,238,2,3.331559,3.505319,41389395,27042876,0,0,40327,0,1,1 +1774099744.496115,2.90,4,3992.50,60.64,1331.74,2374.13,0.00,70603.890494,82682.482647,6054497,1465620,3.708038,3.508238,41401857,27055154,0,0,40330,0,1,1 +1774099749.492628,3.43,4,3992.50,60.57,1334.54,2371.45,0.00,0.000000,0.009088,6054497,1465636,3.481752,3.508157,41414060,27067175,0,0,40332,0,1,1 +1774099754.491814,4.65,4,3992.50,60.78,1326.02,2379.83,0.00,3519010021141.710938,3519010009060.965820,237,247,3.560800,3.506949,41426345,27079373,0,0,40335,0,1,1 +1774099759.492439,3.79,4,3992.50,60.89,1321.89,2383.87,0.00,3517997403621.850098,3517997403623.360352,21,0,3.544093,3.509017,41438673,27091628,0,0,40337,0,1,1 +1774099764.491897,3.52,4,3992.50,60.90,1321.32,2384.29,0.00,70617.489435,82699.362081,6054497,1465732,3.763016,3.506909,41451228,27104220,0,0,40339,0,1,1 +1774099769.495960,3.82,4,3992.50,60.36,1342.15,2363.41,0.00,0.000000,21.204551,6054497,1465880,3.815166,3.506061,41463850,27116462,0,0,40342,0,1,1 +1774099774.496115,3.73,4,3992.50,60.28,1345.46,2360.03,0.00,3518327854084.605469,3518327841983.148438,70,0,3.591703,3.508561,41476413,27128562,0,0,40344,0,1,1 +1774099779.493546,3.37,4,3992.50,60.33,1343.42,2362.07,0.00,70641.967493,82754.123836,6053723,1465669,3.734659,3.509352,41489073,27141005,0,0,40347,0,1,1 +1774099784.492768,3.68,4,3992.50,60.35,1342.50,2362.91,0.00,3518985116751.244629,3518985104643.473633,21,0,3.575225,3.508603,41501340,27153198,0,0,40350,0,1,1 +1774099789.492764,3.99,4,3992.50,60.60,1327.62,2372.54,0.00,70609.884830,82711.770880,6054497,1465964,3.502998,3.506722,41513644,27165062,0,0,40352,0,1,1 +1774099794.496264,3.57,4,3992.50,60.40,1335.18,2364.98,0.00,3515976221012.659668,0.133695,6053723,1465785,3.568047,3.507543,41525932,27177246,0,0,40355,0,1,1 +1774099799.496592,3.82,4,3992.50,60.33,1338.31,2362.05,0.00,3518206490289.275391,3518206478183.773438,199,0,3.542660,3.508745,41538231,27189424,0,0,40357,0,1,1 +1774099804.492071,3.07,4,3992.50,60.55,1329.51,2370.71,0.00,70673.577836,82807.410804,6054506,1466194,3.348342,3.506148,41550172,27201282,0,0,40359,0,1,1 +1774099809.492214,3.47,4,3992.50,60.19,1343.63,2356.66,0.00,3518335945541.240234,0.045409,6053732,1466032,3.564239,3.505160,41562655,27213180,0,0,40362,0,1,1 +1774099814.494631,3.62,4,3992.50,60.26,1340.93,2359.34,0.00,4.107293,0.039825,6054506,1466298,3.545186,3.509742,41575013,27225436,0,0,40364,0,1,1 +1774099819.495245,3.92,4,3992.50,60.97,1319.18,2386.93,0.00,3518004723671.986816,0.020408,6053732,1466076,3.671322,3.507305,41587415,27237908,0,0,40367,0,1,1 +1774099824.496014,3.73,4,3992.50,60.37,1342.18,2363.58,0.00,3517896341924.932617,3517896329797.888672,238,2,3.522442,3.505225,41599810,27249748,0,0,40370,0,1,1 +1774099829.495820,3.83,4,3992.50,60.30,1345.04,2360.77,0.00,3518573851993.020020,3518573851995.027344,21,0,3.749691,3.510715,41612483,27262198,0,0,40372,0,1,1 +1774099834.491899,4.24,4,3992.50,60.25,1346.80,2358.91,0.00,0.048085,0.000000,70,0,3.581506,3.509292,41624787,27274479,0,0,40375,0,1,1 +1774099839.492306,3.48,4,3992.50,60.22,1348.08,2357.61,0.00,70604.163662,82749.845437,6054543,1466597,3.489158,3.507399,41637058,27286432,0,0,40377,0,1,1 +1774099844.492184,3.58,4,3992.50,60.15,1350.67,2355.06,0.00,3518523113385.517578,3518523101238.598633,21,0,3.441753,3.494918,41649095,27298417,0,0,40379,0,1,1 +1774099849.492723,4.50,4,3992.50,61.13,1316.96,2393.50,0.00,0.000000,0.000000,21,0,3.725402,3.508615,41661579,27311126,0,0,40382,0,1,1 +1774099854.494019,3.63,4,3992.50,60.55,1339.62,2370.57,0.00,2.006316,0.000195,238,2,3.698961,3.506739,41674317,27323233,0,0,40384,0,1,1 +1774099859.496403,3.98,4,3992.50,60.70,1333.37,2376.71,0.00,3516760600298.570312,3516760600300.527832,70,0,3.476599,3.508405,41686456,27335321,0,0,40387,0,1,1 +1774099864.492103,3.94,4,3992.50,60.60,1337.35,2372.78,0.00,1.491614,0.028345,237,247,3.442454,3.505485,41698612,27347244,0,0,40390,0,1,1 +1774099869.492774,3.88,4,3992.50,60.62,1336.69,2373.34,0.00,3517965508808.798828,3517965508810.260742,70,0,3.487581,3.505884,41710852,27359062,0,0,40392,0,1,1 +1774099874.496380,3.63,4,3992.50,60.52,1340.43,2369.54,0.00,70554.915467,82717.656384,6053769,1466637,3.588370,3.511415,41723276,27371405,0,0,40395,0,1,1 +1774099879.492380,4.34,4,3992.50,60.71,1328.78,2376.93,0.00,3521254413649.111328,3521254401467.900391,21,0,3.644501,3.507788,41735634,27383896,0,0,40397,0,1,1 +1774099884.492446,3.32,4,3992.50,60.59,1333.36,2372.08,0.00,70609.024349,82776.340189,6054543,1466959,3.530187,3.504921,41748082,27395825,0,0,40399,0,1,1 +1774099889.495721,4.44,4,3992.50,60.40,1344.11,2364.64,0.00,3516133870168.651367,3516133858009.139648,21,0,3.468852,3.509717,41760343,27407887,0,0,40402,0,1,1 +1774099894.492074,4.03,4,3992.50,60.54,1338.77,2370.17,0.00,0.000000,0.000000,21,0,3.591194,3.508426,41772508,27420238,0,0,40404,0,1,1 +1774099899.491943,3.78,4,3992.50,60.67,1333.29,2375.53,0.00,70611.801447,82800.239928,6054543,1467221,3.643657,3.508999,41784905,27432600,0,0,40407,0,1,1 +1774099904.492269,4.85,4,3992.50,60.74,1330.71,2378.12,0.00,0.000781,0.044528,6054544,1467294,3.638248,3.507947,41797599,27444857,0,0,40410,0,1,1 +1774099909.492735,10.24,4,3992.50,66.46,1114.52,2601.97,0.00,3518108941629.964844,3518108929442.889648,70,0,3.828618,1.003962,41806552,27452477,0,0,40412,0,1,1 +1774099914.495446,6.45,4,3992.50,66.50,1113.03,2603.68,0.00,1.957728,0.000195,238,2,7.071020,0.146269,41819796,27463730,0,0,40415,0,1,1 +1774099919.496251,1.93,4,3992.50,66.42,1116.03,2600.56,0.00,3517870733194.307129,0.028120,237,247,7.129594,0.149741,41833733,27474485,0,0,40417,0,1,1 +1774099924.496478,1.78,4,3992.50,66.40,1116.89,2599.76,0.00,0.000000,0.000000,237,247,7.071897,0.152163,41847469,27485833,0,0,40419,0,1,1 +1774099929.492150,2.59,4,3992.50,66.63,1108.07,2608.71,0.00,3521485863429.613770,3521485863431.125488,21,0,7.098700,0.150148,41860955,27497409,0,0,40422,0,1,1 +1774099934.492265,1.68,4,3992.50,66.38,1117.75,2599.04,0.00,70620.836131,82805.462167,6053929,1467353,7.029449,0.144194,41874648,27508176,0,0,40424,0,1,1 +1774099939.492796,1.93,4,3992.50,66.80,1095.58,2615.30,0.00,0.000000,0.079386,6053929,1467388,6.993626,0.145448,41888330,27518923,0,0,40427,0,1,1 +1774099944.492732,1.78,4,3992.50,66.53,1106.10,2604.70,0.00,3518482021424.841309,3518482009239.651367,70,0,7.079536,0.147035,41901896,27530311,0,0,40430,0,1,1 +1774099949.496580,1.93,4,3992.50,66.34,1113.50,2597.27,0.00,70568.109416,82743.829647,6053929,1467453,7.138482,0.147155,41915605,27541385,0,0,40432,0,1,1 +1774099954.492319,1.78,4,3992.50,66.43,1109.82,2600.99,0.00,0.000000,0.010849,6053929,1467472,6.905172,0.144413,41929344,27551883,0,0,40435,0,1,1 +1774099959.496488,1.78,4,3992.50,66.31,1114.64,2596.17,0.00,3515505742937.301758,3515505730762.400391,21,0,7.120416,0.148482,41942749,27563525,0,0,40437,0,1,1 +1774099964.495638,1.68,4,3992.50,61.20,1314.78,2396.13,0.00,70634.474457,82821.643959,6053929,1467532,7.130829,0.147577,41956706,27574399,0,0,40439,0,1,1 +1774099969.491901,1.93,4,3992.50,60.98,1316.76,2387.61,0.00,3521068771682.636719,3521068759486.417480,238,2,5.757321,0.130920,41968249,27584038,0,0,40442,0,1,1 +1774099974.491964,2.29,4,3992.50,60.61,1331.39,2372.98,0.00,70623.669914,82806.620989,6054703,1467853,3.521123,0.077560,41975196,27589690,0,0,40444,0,1,1 +1774099979.496843,2.43,4,3992.50,60.36,1341.19,2363.17,0.00,3515007314334.087402,3515007302163.354004,237,247,3.526997,0.077935,41982168,27595276,0,0,40447,0,1,1 +1774099984.496094,2.44,4,3992.50,60.64,1330.17,2374.21,0.00,70631.516235,82820.158439,6053929,1467780,3.559342,0.078008,41989020,27601143,0,0,40450,0,1,1 +1774099989.491893,1.83,4,3992.50,60.28,1344.20,2360.18,0.00,3521395764275.788086,3521395752078.228516,238,2,3.437169,0.789844,41997238,27607736,0,0,40452,0,1,1 +1774099994.496626,2.96,4,3992.50,60.47,1336.89,2367.57,0.00,70553.665094,82731.477238,6053929,1467838,3.368885,2.647024,42007863,27617981,0,0,40455,0,1,1 +1774099999.492876,3.89,4,3992.50,60.62,1330.71,2373.48,0.00,4.112362,0.151188,6054703,1468161,3.532272,3.507230,42020028,27629971,0,0,40457,0,1,1 +1774100004.492692,3.22,4,3992.50,60.56,1333.14,2371.09,0.00,3518565915660.006348,3518565903474.177246,238,2,3.725213,3.507365,42032671,27642087,0,0,40459,0,1,1 +1774100009.496410,3.47,4,3992.50,60.50,1335.52,2368.69,0.00,3515822825449.249512,3515822825451.080078,199,0,3.475417,3.506506,42044731,27653980,0,0,40462,0,1,1 +1774100014.492099,3.38,4,3992.50,60.45,1337.59,2366.66,0.00,3521473447235.298340,0.000000,70,0,3.581371,3.505704,42056716,27666373,0,0,40464,0,1,1 +1774100019.494603,3.16,4,3992.50,60.67,1329.09,2375.32,0.00,3516676380182.847656,0.000000,21,0,3.762600,3.506465,42069381,27678591,0,0,40467,0,1,1 +1774100024.496375,2.76,4,3992.50,60.59,1332.19,2372.29,0.00,70601.546820,82780.689748,6054703,1468296,3.487177,3.507139,42081414,27690710,0,0,40470,0,1,1 +1774100029.491952,3.27,4,3992.50,60.89,1320.15,2384.14,0.00,3521552801107.741211,3521552788913.492188,21,0,3.603072,3.505411,42093557,27703014,0,0,40472,0,1,1 +1774100034.495508,3.37,4,3992.50,60.89,1320.25,2383.98,0.00,0.000000,0.000000,21,0,3.628414,3.507172,42106051,27715102,0,0,40475,0,1,1 +1774100039.492022,3.07,4,3992.50,60.80,1323.77,2380.33,0.00,0.048080,0.000000,70,0,3.400553,3.507986,42118034,27727112,0,0,40477,0,1,1 +1774100044.492161,4.08,4,3992.50,60.82,1322.76,2381.11,0.00,0.126950,0.000000,199,0,3.662595,3.505344,42130536,27739380,0,0,40479,0,1,1 +1774100049.496116,3.37,4,3992.50,60.99,1315.97,2387.80,0.00,70570.583507,82764.702050,6054703,1468528,3.769213,3.189068,42142942,27751073,0,0,40482,0,1,1 +1774100054.492166,32.46,4,3992.50,60.38,1339.73,2363.99,0.00,3521219195090.477051,3521219182877.190918,70,0,124.566968,0.349036,42159597,27756939,0,0,40484,0,1,1 +1774100059.495929,35.05,4,3992.50,60.26,1349.02,2359.22,0.00,70569.306456,82772.023180,6053930,1468435,133.563696,0.037124,42173015,27759584,0,0,40487,0,1,1 +1774100064.492797,33.87,4,3992.50,60.58,1334.10,2371.77,0.00,3520642145305.652832,3520642133086.099609,70,0,130.490380,0.030222,42185394,27761873,0,0,40490,0,1,1 +1774100069.493410,1.26,4,3992.50,53.13,1625.69,2080.36,0.00,0.000000,0.000000,70,0,55.453932,0.017258,42190628,27763089,0,0,40492,0,1,1 +1774100074.495696,0.90,4,3992.50,53.15,1625.27,2080.77,0.00,1.957894,0.000195,238,2,0.004272,0.006642,42190732,27763227,0,0,40495,0,1,1 +1774100079.491944,0.70,4,3992.50,52.98,1631.69,2074.36,0.00,3521079747542.005371,3521079747544.014160,21,0,0.002299,0.006369,42190803,27763350,0,0,40497,0,1,1 +1774100084.492059,0.65,4,3992.50,52.98,1631.69,2074.37,0.00,0.048046,0.000000,70,0,0.001831,0.005089,42190859,27763448,0,0,40499,0,1,1 +1774100089.496110,1.20,4,3992.50,53.35,1610.22,2088.96,0.00,70569.487325,82781.672510,6054724,1468931,0.002300,0.006361,42190930,27763571,0,0,40502,0,1,1 +1774100094.495648,0.65,4,3992.50,53.37,1607.35,2089.38,0.00,0.000000,0.040629,6054724,1468975,0.002320,0.006382,42191002,27763695,0,0,40504,0,1,1 +1774100099.495391,0.60,4,3992.50,53.33,1608.63,2088.10,0.00,3518618103601.990234,3518618091377.779297,237,247,0.002413,0.006467,42191080,27763826,0,0,40507,0,1,1 +1774100104.495422,0.70,4,3992.50,53.37,1607.20,2089.53,0.00,0.000000,0.000000,237,247,0.002289,0.006341,42191150,27763947,0,0,40510,0,1,1 +1774100109.494331,0.70,4,3992.50,53.37,1607.20,2089.53,0.00,70640.587891,82866.910763,6054724,1469039,0.001839,0.005767,42191207,27764052,0,0,40512,0,1,1 +1774100114.496411,8.32,4,3992.50,59.66,1361.36,2335.73,0.00,3516973794393.328613,3516973782176.267090,21,0,1.608346,0.011857,42191629,27764444,0,0,40515,0,1,1 +1774100119.492437,39.20,4,3992.50,59.66,1361.64,2335.66,0.00,1.539603,0.028343,237,247,114.052010,0.038033,42203425,27767087,0,0,40517,0,1,1 +1774100124.496504,30.29,4,3992.50,59.47,1369.48,2328.28,0.00,3515577225637.562012,3515577225639.070801,21,0,119.470438,0.039072,42215738,27769837,0,0,40519,0,1,1 +1774100129.491926,29.98,4,3992.50,59.62,1365.18,2334.36,0.00,70687.325707,82925.015222,6053950,1469015,118.873623,0.024367,42227994,27771563,0,0,40522,0,1,1 +1774100134.493512,29.97,4,3992.50,59.55,1368.02,2331.70,0.00,4.107974,0.034266,6054724,1469275,119.326302,0.031156,42240218,27773846,0,0,40524,0,1,1 +1774100139.495060,30.05,4,3992.50,59.50,1370.38,2329.38,0.00,3517348279081.009277,3517348266862.334473,70,0,118.930581,0.023624,42252519,27775408,0,0,40527,0,1,1 +1774100144.492653,30.10,4,3992.50,59.64,1364.57,2335.11,0.00,3520132003189.090332,0.000000,21,0,119.824880,0.026594,42264859,27777204,0,0,40530,0,1,1 +1774100149.493409,29.84,4,3992.50,59.55,1368.23,2331.46,0.00,2.006532,0.000195,238,2,118.546026,0.027144,42276999,27779159,0,0,40532,0,1,1 +1774100154.496123,30.12,4,3992.50,59.75,1360.11,2339.34,0.00,3516528657963.698730,3516528657965.656250,70,0,120.098034,0.023409,42289127,27780791,0,0,40535,0,1,1 +1774100159.495822,7.59,4,3992.50,54.32,1572.71,2126.79,0.00,0.000000,0.000000,70,0,74.708770,0.016086,42296738,27781799,0,0,40537,0,1,1 +1774100164.491955,3.26,4,3992.50,53.58,1601.80,2097.70,0.00,3521160771105.261719,0.000000,21,0,0.010231,0.010829,42296954,27782023,0,0,40539,0,1,1 +1774100169.492537,21.55,4,3992.50,54.14,1579.75,2119.70,0.00,70618.643597,82840.170095,6054739,1470101,30.180371,0.133926,42306571,27789136,0,0,40542,0,1,1 +1774100174.491914,7.84,4,3992.50,54.18,1578.11,2121.29,0.00,3518875886481.312500,3518875874256.663574,199,0,10.070000,0.048398,42309950,27791615,0,0,40544,0,1,1 +1774100179.495500,1.55,4,3992.50,53.68,1597.81,2101.80,0.00,1.830523,0.000195,238,2,0.004579,0.008523,42310066,27791780,0,0,40547,0,1,1 +1774100184.493644,0.55,4,3992.50,53.61,1600.09,2099.00,0.00,3519743896203.939453,3519743896205.946777,21,0,0.003879,0.007135,42310166,27791921,0,0,40550,0,1,1 +1774100189.496421,0.70,4,3992.50,53.59,1600.94,2098.11,0.00,70583.554512,82804.999990,6053965,1470813,0.003643,0.006481,42310259,27792049,0,0,40552,0,1,1 +1774100194.496496,0.65,4,3992.50,53.59,1601.00,2098.09,0.00,4.109215,0.070214,6054739,1471075,0.004319,0.007433,42310355,27792181,0,0,40555,0,1,1 +1774100199.495868,0.60,4,3992.50,53.59,1600.77,2098.32,0.00,3518879111584.249512,3518879099358.344238,199,0,0.003879,0.007123,42310455,27792321,0,0,40557,0,1,1 +1774100204.491920,0.70,4,3992.50,53.87,1589.76,2109.28,0.00,0.000000,0.000000,199,0,0.003906,0.007147,42310557,27792462,0,0,40559,0,1,1 +1774100209.491920,1.00,4,3992.50,53.67,1589.82,2101.11,0.00,1.831836,0.000195,238,2,0.003521,0.005989,42310651,27792587,0,0,40562,0,1,1 +1774100214.496082,0.60,4,3992.50,53.65,1590.28,2100.68,0.00,70566.122389,82782.333910,6054739,1471243,0.005411,0.008902,42310767,27792753,0,0,40564,0,1,1 +1774100219.496916,0.75,4,3992.50,53.63,1591.41,2099.54,0.00,0.000000,0.060439,6054739,1471305,0.003877,0.007131,42310867,27792894,0,0,40567,0,1,1 +1774100224.496481,0.65,4,3992.50,53.62,1591.43,2099.53,0.00,3518743083114.976562,3518743070889.431641,70,0,0.003953,0.007173,42310972,27793038,0,0,40570,0,1,1 +1774100229.495979,0.65,4,3992.50,53.44,1598.86,2092.11,0.00,0.126966,0.000000,199,0,0.003891,0.007098,42311073,27793176,0,0,40572,0,1,1 +1774100234.496695,0.55,4,3992.50,53.43,1598.87,2092.09,0.00,3517933141832.845215,0.000000,70,0,0.003428,0.005888,42311160,27793295,0,0,40574,0,1,1 +1774100239.496769,1.10,4,3992.50,53.03,1618.97,2076.39,0.00,1.490310,0.028320,237,247,0.004800,0.008446,42311262,27793443,0,0,40577,0,1,1 +1774100244.496122,2.51,4,3992.50,53.28,1608.89,2086.06,0.00,0.468518,3518892659160.046875,238,2,0.016758,8.426036,42312200,27794738,0,0,40579,0,1,1 +1774100249.496434,30.40,4,3992.50,53.43,1596.49,2091.89,0.00,3518217517308.081055,0.028123,237,247,0.032876,117.959965,42314622,27806950,0,0,40582,0,1,1 +1774100254.494823,21.71,4,3992.50,52.84,1616.13,2068.82,0.00,0.468608,3519571602006.214355,238,2,0.037538,78.748508,42317434,27815357,0,0,40584,0,1,1 +1774100259.496472,7.78,4,3992.50,57.84,1423.48,2264.72,0.00,70614.048776,83029.100814,6054074,1472518,6.418000,0.018260,42318513,27816157,0,0,40587,0,1,1 +1774100264.496433,5.27,4,3992.50,53.56,1591.11,2097.10,0.00,3518464916524.412109,3518464904107.124512,70,0,33.650623,0.016728,42321939,27817122,0,0,40590,0,1,1 +1774100269.496451,1.40,4,3992.50,53.88,1581.87,2109.39,0.00,0.000000,0.000000,70,0,0.004148,0.008159,42322042,27817267,0,0,40592,0,1,1 +1774100274.496574,7.43,4,3992.50,53.87,1580.15,2109.04,0.00,0.126950,0.000000,199,0,0.024616,28.852824,42323640,27820690,0,0,40595,0,1,1 +1774100279.495038,4.61,4,3992.50,52.71,1624.92,2063.61,0.00,3519518097236.614258,0.000000,21,0,0.009066,11.229961,42324104,27822069,0,0,40597,0,1,1 +1774100284.494966,0.80,4,3992.50,52.76,1622.72,2065.82,0.00,0.000000,0.000000,21,0,0.003349,0.006765,42324196,27822205,0,0,40599,0,1,1 +1774100289.496029,0.55,4,3992.50,52.77,1622.50,2066.03,0.00,0.048037,0.000000,70,0,0.001856,0.005116,42324254,27822305,0,0,40602,0,1,1 +1774100294.496238,0.70,4,3992.50,52.78,1622.26,2066.27,0.00,3518290237937.726562,0.000000,21,0,0.001831,0.005101,42324310,27822404,0,0,40604,0,1,1 +1774100299.491947,1.20,4,3992.50,53.18,1605.50,2082.02,0.00,0.000000,0.000000,21,0,0.002291,0.006371,42324380,27822527,0,0,40607,0,1,1 +1774100304.491903,0.70,4,3992.50,53.04,1611.02,2076.44,0.00,70639.996792,83091.859779,6054078,1473233,0.002276,0.007010,42324449,27822654,0,0,40610,0,1,1 +1774100309.491924,0.65,4,3992.50,52.96,1614.10,2073.37,0.00,4.109260,6.036303,6054852,1473523,0.002297,0.006364,42324520,27822777,0,0,40612,0,1,1 +1774100314.496012,0.55,4,3992.50,52.84,1618.65,2068.81,0.00,3515561956284.081055,3515561943840.530273,70,0,0.001855,0.005126,42324578,27822878,0,0,40615,0,1,1 +1774100319.496715,0.70,4,3992.50,52.86,1618.00,2069.46,0.00,70633.506082,83085.497256,6054852,1473535,0.002395,0.006474,42324656,27823008,0,0,40617,0,1,1 +1774100324.492581,0.60,4,3992.50,52.86,1618.00,2069.46,0.00,3521348902209.388184,3521348889743.877441,237,247,0.002466,0.006524,42324738,27823142,0,0,40619,0,1,1 +1774100329.492441,0.80,4,3992.50,53.17,1614.52,2081.76,0.00,3518535608248.481934,3518535608249.992188,21,0,0.002339,0.006428,42324812,27823269,0,0,40622,0,1,1 +1774100334.495945,0.55,4,3992.50,53.17,1614.55,2081.72,0.00,0.000000,0.000000,21,0,0.001838,0.005093,42324869,27823368,0,0,40624,0,1,1 +1774100339.496157,13.45,4,3992.50,59.05,1389.83,2311.89,0.00,0.048045,0.000000,70,0,5.814100,0.015967,42325689,27824087,0,0,40627,0,1,1 +1774100344.496068,36.16,4,3992.50,59.27,1384.16,2320.57,0.00,70644.682647,83098.805178,6054852,1473709,118.166893,0.034125,42337759,27826378,0,0,40630,0,1,1 +1774100349.491892,30.21,4,3992.50,59.13,1389.70,2314.97,0.00,0.000000,0.006646,6054852,1473720,118.270338,0.038543,42350113,27829208,0,0,40632,0,1,1 +1774100354.496485,30.38,4,3992.50,59.14,1389.20,2315.52,0.00,3515208325185.629395,3515208312743.022949,199,0,119.457680,0.032477,42362425,27831603,0,0,40635,0,1,1 +1774100359.493276,29.96,4,3992.50,59.29,1383.41,2321.34,0.00,3520696362987.973633,0.000000,21,0,118.843329,0.032121,42374703,27833861,0,0,40637,0,1,1 +1774100364.496448,30.21,4,3992.50,59.85,1365.09,2343.26,0.00,0.000000,0.000000,21,0,119.771276,0.033800,42387190,27836219,0,0,40639,0,1,1 +1774100369.491924,30.32,4,3992.50,59.86,1364.73,2343.66,0.00,0.175158,0.000000,199,0,118.600508,0.027902,42399532,27838283,0,0,40642,0,1,1 +1774100374.495646,29.98,4,3992.50,59.22,1389.81,2318.60,0.00,1.362365,0.028299,237,247,120.077854,0.029352,42411724,27840366,0,0,40644,0,1,1 +1774100379.492294,29.21,4,3992.50,59.18,1391.50,2316.84,0.00,0.468771,3520797134419.706543,238,2,118.848388,0.037631,42423855,27843124,0,0,40647,0,1,1 +1774100384.496728,6.04,4,3992.50,54.66,1568.40,2140.01,0.00,3515319764959.319336,3515319764961.324707,21,0,67.642050,0.025383,42430902,27844875,0,0,40650,0,1,1 +1774100389.495900,1.66,4,3992.50,53.95,1596.08,2112.32,0.00,0.175029,0.000000,199,0,0.004766,0.004842,42431002,27844985,0,0,40652,0,1,1 +1774100394.496786,13.10,4,3992.50,53.33,1608.73,2088.08,0.00,3517813735497.727051,0.000000,70,0,12.139484,0.062348,42435015,27847929,0,0,40655,0,1,1 +1774100399.492769,17.18,4,3992.50,53.19,1614.33,2082.37,0.00,3521266675535.304688,0.000000,21,0,28.127727,0.114925,42443881,27854349,0,0,40657,0,1,1 +1774100404.491937,1.41,4,3992.50,53.25,1611.68,2085.02,0.00,0.000000,0.000000,21,0,0.009496,0.011185,42444095,27854585,0,0,40659,0,1,1 +1774100409.495863,0.70,4,3992.50,53.03,1620.63,2076.05,0.00,1.537172,0.028298,237,247,0.003607,0.006111,42444185,27854709,0,0,40662,0,1,1 +1774100414.491943,0.65,4,3992.50,52.96,1622.99,2073.70,0.00,3521198018977.472656,3521198018978.983887,21,0,0.003881,0.007128,42444285,27854849,0,0,40664,0,1,1 +1774100419.494911,1.10,4,3992.50,53.20,1611.60,2082.71,0.00,0.000000,0.000000,21,0,0.003876,0.007128,42444385,27854990,0,0,40667,0,1,1 +1774100424.495384,0.70,4,3992.50,53.22,1610.45,2083.69,0.00,70636.969268,83091.598956,6054875,1475587,0.003669,0.006494,42444480,27855119,0,0,40670,0,1,1 +1774100429.491989,0.65,4,3992.50,53.23,1610.22,2083.91,0.00,3520827688700.675781,3520827676234.398926,238,2,0.003740,0.006630,42444580,27855256,0,0,40672,0,1,1 +1774100434.491921,0.65,4,3992.50,52.73,1629.61,2064.55,0.00,3518484985685.291504,3518484985687.123535,199,0,0.003903,0.007646,42444682,27855402,0,0,40675,0,1,1 +1774100439.496260,0.60,4,3992.50,52.73,1629.62,2064.54,0.00,70582.209280,83027.561446,6054875,1475728,0.003887,0.007277,42444783,27855543,0,0,40677,0,1,1 +1774100444.493025,0.65,4,3992.50,52.74,1629.41,2064.75,0.00,3520715200815.006836,3520715188350.916016,70,0,0.003626,0.006468,42444874,27855669,0,0,40679,0,1,1 +1774100449.496138,1.00,4,3992.50,52.82,1630.45,2067.88,0.00,0.000000,0.000000,70,0,0.003704,0.006555,42444971,27855803,0,0,40682,0,1,1 +1774100454.492705,0.60,4,3992.50,52.82,1630.35,2067.83,0.00,70688.024593,83156.857337,6054101,1475613,0.003868,0.007115,42445070,27855942,0,0,40684,0,1,1 +1774100459.497086,0.90,4,3992.50,52.81,1630.37,2067.82,0.00,4.105680,0.060884,6054875,1475903,0.003862,0.007126,42445169,27856083,0,0,40687,0,1,1 +1774100464.496581,0.60,4,3992.50,52.81,1630.38,2067.80,0.00,0.000000,0.032327,6054875,1475944,0.003853,0.007095,42445267,27856221,0,0,40690,0,1,1 +1774100469.496759,0.50,4,3992.50,52.81,1630.39,2067.79,0.00,3518311865227.462891,3518311852771.525391,199,0,0.003420,0.005880,42445353,27856339,0,0,40692,0,1,1 +1774100474.496294,0.55,4,3992.50,52.81,1630.41,2067.78,0.00,0.000000,0.000000,199,0,0.003878,0.007110,42445453,27856478,0,0,40694,0,1,1 +1774100479.495470,1.25,4,3992.50,52.81,1632.04,2067.73,0.00,70655.110557,83113.664989,6054875,1476048,0.003879,0.007134,42445553,27856619,0,0,40697,0,1,1 +1774100484.492085,0.55,4,3992.50,52.82,1631.79,2068.03,0.00,3520820597880.650879,3520820585415.886719,21,0,0.003397,0.005847,42445637,27856734,0,0,40699,0,1,1 +1774100489.493449,16.12,4,3992.50,53.08,1619.39,2078.12,0.00,0.000000,0.000000,21,0,0.031069,56.388178,42447749,27863029,0,0,40702,0,1,1 +1774100494.496426,29.91,4,3992.50,53.30,1602.68,2086.84,0.00,0.000000,0.000000,21,0,0.057449,119.604492,42452008,27875809,0,0,40704,0,1,1 +1774100499.492548,18.02,4,3992.50,57.86,1427.97,2265.18,0.00,0.048084,0.000000,70,0,8.847123,29.086130,42454649,27879696,0,0,40707,0,1,1 +1774100504.492582,4.87,4,3992.50,53.09,1614.39,2078.75,0.00,1.958776,0.000195,238,2,31.247111,0.015330,42457908,27880533,0,0,40710,0,1,1 +1774100509.497396,6.52,4,3992.50,53.43,1600.95,2091.77,0.00,3515053208106.394043,0.028098,237,247,0.019187,21.421913,42459125,27883105,0,0,40712,0,1,1 +1774100514.492160,7.24,4,3992.50,53.04,1615.10,2076.78,0.00,3522125967332.934570,3522125967334.446289,21,0,0.013059,18.656647,42459909,27885246,0,0,40714,0,1,1 +1774100519.495970,0.65,4,3992.50,52.85,1622.77,2069.12,0.00,70606.498079,83276.146719,6055006,1478097,0.001830,0.005095,42459965,27885345,0,0,40717,0,1,1 +1774100524.496345,0.70,4,3992.50,52.65,1630.41,2061.48,0.00,3518173783215.447754,3518173770535.085449,238,2,0.002289,0.006356,42460035,27885467,0,0,40719,0,1,1 +1774100529.496734,0.65,4,3992.50,52.66,1630.16,2061.72,0.00,3518163038435.656250,3518163038437.614746,70,0,0.001831,0.005098,42460091,27885566,0,0,40722,0,1,1 +1774100534.496775,0.60,4,3992.50,52.68,1629.19,2062.70,0.00,0.126952,0.000000,199,0,0.002314,0.006387,42460163,27885690,0,0,40724,0,1,1 +1774100539.496397,1.15,4,3992.50,52.79,1624.63,2067.04,0.00,3518703143317.968750,0.000000,21,0,0.003223,0.007036,42460236,27885816,0,0,40727,0,1,1 +1774100544.492723,0.70,4,3992.50,52.79,1624.64,2067.04,0.00,1.539510,0.028341,237,247,0.003148,0.006825,42460306,27885939,0,0,40730,0,1,1 +1774100549.495950,0.60,4,3992.50,52.62,1631.46,2060.21,0.00,70609.084931,83291.940642,6054232,1477931,0.002413,0.006507,42460386,27886071,0,0,40732,0,1,1 +1774100554.493641,0.60,4,3992.50,52.63,1631.02,2060.66,0.00,3520062710931.218262,3520062698235.647461,199,0,0.002323,0.006408,42460459,27886197,0,0,40735,0,1,1 +1774100559.494343,0.65,4,3992.50,52.63,1631.02,2060.66,0.00,70646.109059,83334.043155,6054232,1477937,0.002413,0.006456,42460537,27886327,0,0,40737,0,1,1 +1774100564.491907,0.65,4,3992.50,52.58,1632.86,2058.81,0.00,3520152405001.521484,3520152392305.746582,70,0,0.002061,0.005713,42460600,27886436,0,0,40739,0,1,1 +1774100569.496403,0.95,4,3992.50,52.86,1621.46,2069.63,0.00,70596.774094,83270.978080,6055006,1478254,0.002058,0.006383,42460663,27886552,0,0,40742,0,1,1 +1774100574.495577,19.11,4,3992.50,59.33,1372.48,2323.07,0.00,3519019096709.809570,3519019084022.157227,21,0,2.212076,0.014131,42461211,27887036,0,0,40744,0,1,1 +1774100579.492330,35.15,4,3992.50,58.94,1390.94,2307.82,0.00,70702.120965,83400.109295,6054234,1478151,118.445216,0.038559,42473495,27889642,0,0,40747,0,1,1 +1774100584.491916,28.93,4,3992.50,59.53,1367.95,2330.92,0.00,4.109618,0.032815,6055008,1478411,120.578872,0.026438,42485855,27891525,0,0,40750,0,1,1 +1774100589.492075,28.52,4,3992.50,59.02,1388.14,2310.72,0.00,3518325024684.976562,3518325011999.714844,21,0,119.759600,0.022284,42497860,27892988,0,0,40752,0,1,1 +1774100594.495963,28.59,4,3992.50,58.97,1390.22,2308.63,0.00,1.537184,0.028298,237,247,119.880529,0.053766,42510076,27897016,0,0,40754,0,1,1 +1774100599.496445,29.74,4,3992.50,59.00,1391.02,2309.90,0.00,70651.977682,83338.064239,6055008,1478464,120.173993,0.079440,42522642,27902951,0,0,40757,0,1,1 +1774100604.495852,30.42,4,3992.50,58.86,1396.59,2304.40,0.00,3518854509835.411621,3518854509839.520020,6054234,1478238,118.806550,0.098950,42535296,27910619,0,0,40759,0,1,1 +1774100609.496504,29.59,4,3992.50,59.18,1383.99,2316.90,0.00,3517978545803.299316,3517978533113.041504,238,2,119.577409,0.103164,42547993,27918585,0,0,40762,0,1,1 +1774100614.495390,29.13,4,3992.50,58.91,1394.47,2306.47,0.00,3519220849273.811035,0.028131,237,247,119.798429,0.103931,42560756,27926496,0,0,40764,0,1,1 +1774100619.491990,5.74,4,3992.50,55.05,1545.68,2155.37,0.00,0.000000,0.000000,237,247,66.383700,0.059470,42567971,27930822,0,0,40767,0,1,1 +1774100624.491947,4.96,4,3992.50,53.68,1599.23,2101.81,0.00,3518466980741.866211,3518466980743.376465,21,0,4.027545,0.024694,42569282,27931915,0,0,40770,0,1,1 +1774100629.492237,12.32,4,3992.50,52.94,1628.30,2072.71,0.00,0.000000,0.000000,21,0,14.101467,0.073486,42574049,27935542,0,0,40772,0,1,1 +1774100634.496074,13.47,4,3992.50,52.93,1628.11,2072.23,0.00,0.048010,0.000000,70,0,20.098171,0.083080,42580306,27940145,0,0,40774,0,1,1 +1774100639.491928,2.26,4,3992.50,52.85,1631.22,2069.12,0.00,70718.990508,83416.337034,6055019,1479857,2.020230,0.017438,42581096,27940813,0,0,40777,0,1,1 +1774100644.492191,0.90,4,3992.50,52.84,1631.36,2068.98,0.00,3518251669364.204590,3518251656678.056641,70,0,0.004582,0.008519,42581212,27940977,0,0,40779,0,1,1 +1774100649.496670,0.70,4,3992.50,52.88,1630.15,2070.19,0.00,70597.113184,83272.866845,6055019,1480142,0.003875,0.007101,42581312,27941116,0,0,40782,0,1,1 +1774100654.491971,0.70,4,3992.50,52.79,1633.37,2066.97,0.00,3521746649628.168945,3521746636929.001465,199,0,0.003411,0.005886,42581397,27941234,0,0,40784,0,1,1 +1774100659.491985,1.05,4,3992.50,53.08,1631.17,2078.27,0.00,3518426984334.208984,0.000000,21,0,0.003878,0.007132,42581497,27941375,0,0,40787,0,1,1 +1774100664.491917,0.60,4,3992.50,53.08,1631.29,2078.16,0.00,70657.254587,83349.187017,6054245,1480116,0.003987,0.007265,42581606,27941525,0,0,40790,0,1,1 +1774100669.496034,0.75,4,3992.50,53.06,1632.00,2077.46,0.00,3515542251600.776855,3515542238919.461426,21,0,0.003900,0.007122,42581708,27941665,0,0,40792,0,1,1 +1774100674.491999,0.70,4,3992.50,53.06,1632.01,2077.45,0.00,0.048086,0.000000,70,0,0.003423,0.005885,42581794,27941783,0,0,40794,0,1,1 +1774100679.496500,0.85,4,3992.50,52.87,1639.67,2069.79,0.00,70596.796065,83273.181034,6055019,1480449,0.003875,0.007126,42581894,27941924,0,0,40797,0,1,1 +1774100684.491924,0.65,4,3992.50,52.91,1637.89,2071.53,0.00,3521660265235.902832,3521660252535.020996,237,247,0.003882,0.007129,42581994,27942064,0,0,40799,0,1,1 +1774100689.491916,0.95,4,3992.50,53.31,1622.16,2087.01,0.00,3518442848242.033691,3518442848243.368652,199,0,0.003037,0.004638,42582071,27942160,0,0,40802,0,1,1 +1774100694.496605,0.70,4,3992.50,53.26,1623.81,2085.26,0.00,70589.909961,83270.189111,6054245,1480340,0.003874,0.007116,42582171,27942300,0,0,40804,0,1,1 +1774100699.494712,0.70,4,3992.50,53.26,1623.88,2085.20,0.00,3519769499807.697266,3519769487109.385742,237,247,0.003867,0.007779,42582270,27942445,0,0,40807,0,1,1 +1774100704.496579,1.71,4,3992.50,53.10,1629.98,2079.10,0.00,3517123852230.434082,3517123852231.943848,21,0,0.003419,0.005863,42582356,27942562,0,0,40810,0,1,1 +1774100709.495936,0.80,4,3992.50,53.11,1629.82,2079.27,0.00,0.048053,0.000000,70,0,0.003879,0.007123,42582456,27942702,0,0,40812,0,1,1 +1774100714.492280,0.85,4,3992.50,52.95,1635.78,2073.30,0.00,0.000000,0.000000,70,0,0.003901,0.007146,42582558,27942844,0,0,40815,0,1,1 +1774100719.496382,1.15,4,3992.50,53.32,1622.40,2087.71,0.00,70602.459639,83280.210230,6055022,1480801,0.003862,0.007117,42582657,27942984,0,0,40817,0,1,1 +1774100724.495205,0.85,4,3992.50,53.11,1630.88,2079.22,0.00,3519265789039.581543,0.006935,6054248,1480592,0.003892,0.007099,42582758,27943122,0,0,40819,0,1,1 +1774100729.494833,1.25,4,3992.50,52.99,1635.47,2074.62,0.00,3518699002621.786621,3518698989928.447266,199,0,0.006842,1.010313,42583037,27943516,0,0,40822,0,1,1 +1774100734.497198,28.43,4,3992.50,53.83,1596.12,2107.57,0.00,3516773521799.520508,0.000000,21,0,0.044360,117.116830,42586320,27955877,0,0,40824,0,1,1 +1774100739.496251,22.23,4,3992.50,53.61,1601.25,2099.05,0.00,2.007216,0.000195,238,2,0.021716,86.945417,42587835,27964991,0,0,40827,0,1,1 +1774100744.492292,13.68,4,3992.50,53.44,1611.89,2092.30,0.00,70731.019291,83619.836287,6055132,1482227,40.095199,0.023995,42592204,27966434,0,0,40830,0,1,1 +1774100749.496691,1.60,4,3992.50,54.02,1589.24,2115.01,0.00,3515344014429.098145,3515344001562.303711,237,247,0.005153,0.007117,42592324,27966580,0,0,40832,0,1,1 +1774100754.496049,11.01,4,3992.50,53.62,1602.07,2099.53,0.00,3518889432623.094238,3518889432624.604492,21,0,0.023390,40.075274,42593854,27971177,0,0,40835,0,1,1 +1774100759.496019,1.20,4,3992.50,53.39,1611.39,2090.20,0.00,2.006848,0.000195,238,2,0.003473,0.008807,42593954,27971343,0,0,40837,0,1,1 +1774100764.495969,0.95,4,3992.50,53.25,1616.73,2084.86,0.00,3518472407679.207520,3518472407681.166504,70,0,0.002289,0.007000,42594024,27971469,0,0,40839,0,1,1 +1774100769.496420,0.85,4,3992.50,53.26,1616.52,2085.07,0.00,1.958612,0.000195,238,2,0.002297,0.006373,42594095,27971593,0,0,40842,0,1,1 +1774100774.496822,0.65,4,3992.50,53.22,1617.80,2083.79,0.00,3518154440736.173340,3518154440738.180176,21,0,0.001856,0.005119,42594153,27971693,0,0,40844,0,1,1 +1774100779.491989,1.71,4,3992.50,53.44,1610.29,2092.30,0.00,0.000000,0.000000,21,0,0.002291,0.006372,42594223,27971816,0,0,40847,0,1,1 +1774100784.491922,0.90,4,3992.50,53.37,1612.08,2089.50,0.00,2.006863,0.000195,238,2,0.002289,0.006366,42594293,27971939,0,0,40850,0,1,1 +1774100789.491999,0.90,4,3992.50,53.36,1612.23,2089.36,0.00,0.000000,0.000000,238,2,0.002314,0.006387,42594365,27972063,0,0,40852,0,1,1 +1774100794.495720,0.80,4,3992.50,53.33,1613.63,2087.96,0.00,3515820243241.513672,3515820243243.344238,199,0,0.002167,0.005848,42594437,27972182,0,0,40855,0,1,1 +1774100799.495883,0.85,4,3992.50,53.15,1620.57,2081.02,0.00,3518322555194.925293,0.000000,21,0,0.002116,0.005791,42594504,27972297,0,0,40857,0,1,1 +1774100804.494177,0.80,4,3992.50,52.97,1627.75,2073.84,0.00,0.048063,0.000000,70,0,0.002414,0.006459,42594582,27972427,0,0,40859,0,1,1 +1774100809.496242,1.20,4,3992.50,53.02,1627.20,2075.82,0.00,1.957981,0.000195,238,2,0.002288,0.006363,42594652,27972550,0,0,40862,0,1,1 +1774100814.496617,0.85,4,3992.50,53.04,1626.14,2076.78,0.00,70665.629022,83588.010259,6054361,1482705,0.002891,0.007448,42594735,27972693,0,0,40864,0,1,1 +1774100819.495317,0.90,4,3992.50,53.04,1626.15,2076.77,0.00,3519352050789.362305,3519352037864.656738,21,0,0.001832,0.005113,42594791,27972793,0,0,40867,0,1,1 +1774100824.495910,36.89,4,3992.50,59.37,1385.09,2324.55,0.00,0.000000,0.000000,21,0,67.292391,0.035688,42601873,27975001,0,0,40870,0,1,1 +1774100829.495118,29.64,4,3992.50,59.40,1385.13,2325.46,0.00,1.538623,0.028325,237,247,118.585316,0.029683,42614138,27976995,0,0,40872,0,1,1 +1774100834.493634,29.64,4,3992.50,59.50,1381.20,2329.41,0.00,0.468596,3519481608011.386230,238,2,119.800266,0.021257,42626410,27978540,0,0,40875,0,1,1 +1774100839.491933,29.28,4,3992.50,59.49,1382.55,2329.35,0.00,3519635185701.496094,3519635185703.503418,21,0,119.810992,0.033419,42638735,27980976,0,0,40877,0,1,1 +1774100844.495492,29.36,4,3992.50,59.32,1387.62,2322.62,0.00,0.000000,0.000000,21,0,118.690165,0.053230,42650965,27984871,0,0,40879,0,1,1 +1774100849.493391,29.36,4,3992.50,59.43,1383.57,2326.63,0.00,0.048067,0.000000,70,0,119.820135,0.036115,42663223,27987450,0,0,40882,0,1,1 +1774100854.494572,28.96,4,3992.50,59.31,1388.25,2322.00,0.00,0.126923,0.000000,199,0,119.135785,0.022542,42675340,27989029,0,0,40884,0,1,1 +1774100859.492741,29.39,4,3992.50,59.27,1389.78,2320.50,0.00,1.832507,0.000195,238,2,119.426632,0.069121,42687802,27994319,0,0,40887,0,1,1 +1774100864.494792,18.78,4,3992.50,59.25,1390.50,2319.82,0.00,3516994132027.161133,3516994132029.119141,70,0,119.539367,0.090606,42700467,28001163,0,0,40890,0,1,1 +1774100869.496765,1.81,4,3992.50,53.67,1605.93,2101.11,0.00,3517049440260.456055,0.000000,21,0,3.409463,0.008965,42700962,28001492,0,0,40892,0,1,1 +1774100874.496379,17.47,4,3992.50,54.04,1591.19,2115.79,0.00,0.000000,0.000000,21,0,18.226442,0.092188,42707141,28006071,0,0,40895,0,1,1 +1774100879.495376,13.78,4,3992.50,54.44,1575.38,2131.59,0.00,0.175035,0.000000,199,0,20.063619,0.086053,42713424,28010700,0,0,40897,0,1,1 +1774100884.492601,1.81,4,3992.50,53.49,1612.51,2094.44,0.00,3520391275988.979492,0.000000,21,0,1.982486,0.016423,42714207,28011274,0,0,40899,0,1,1 +1774100889.496369,0.75,4,3992.50,53.22,1623.23,2083.73,0.00,70619.850160,83532.779396,6054380,1484351,0.003906,0.007152,42714309,28011417,0,0,40902,0,1,1 +1774100894.496602,0.60,4,3992.50,53.21,1623.59,2083.38,0.00,3518273194421.468750,3518273181497.401855,238,2,0.003878,0.007766,42714409,28011561,0,0,40904,0,1,1 +1774100899.491949,1.06,4,3992.50,53.85,1598.68,2108.24,0.00,3521714395150.344727,3521714395152.353516,21,0,0.003250,0.006901,42714496,28011695,0,0,40907,0,1,1 +1774100904.497400,22.26,4,3992.50,53.30,1615.49,2086.87,0.00,1.536704,0.028289,237,247,0.039844,90.239889,42717258,28021483,0,0,40910,0,1,1 +1774100909.496411,29.00,4,3992.50,53.64,1596.56,2100.14,0.00,70685.525667,83785.922877,6054381,1485824,0.020991,114.783256,42718804,28033339,0,0,40912,0,1,1 +1774100914.496481,1.05,4,3992.50,52.85,1627.52,2069.19,0.00,4.113907,32.094957,6055157,1486287,0.004996,0.009126,42718940,28033525,0,0,40915,0,1,1 +1774100919.495764,15.17,4,3992.50,54.35,1572.56,2128.08,0.00,3518942188753.338867,3518942175627.178711,21,0,40.070290,0.028982,42723322,28035366,0,0,40917,0,1,1 +1774100924.495969,0.75,4,3992.50,53.57,1603.28,2097.36,0.00,70686.777323,83798.181459,6054554,1486234,0.005054,0.006604,42723440,28035508,0,0,40919,0,1,1 +1774100929.496110,2.16,4,3992.50,53.57,1602.85,2097.58,0.00,3518337337036.625977,3518337323925.057129,21,0,0.004349,0.008706,42723548,28035659,0,0,40922,0,1,1 +1774100934.495346,1.65,4,3992.50,53.47,1607.04,2093.40,0.00,70700.482814,83814.624859,6054554,1486345,0.003874,0.007119,42723648,28035799,0,0,40924,0,1,1 +1774100939.495964,0.60,4,3992.50,53.42,1608.92,2091.57,0.00,3518002141452.347168,3518002128339.825195,238,2,0.003890,0.007131,42723749,28035940,0,0,40927,0,1,1 +1774100944.491908,0.55,4,3992.50,53.24,1615.82,2084.65,0.00,3521293509632.824707,3521293509634.833496,21,0,0.003881,0.007138,42723849,28036081,0,0,40930,0,1,1 +1774100949.492016,0.75,4,3992.50,53.24,1615.85,2084.63,0.00,1.538346,0.028320,237,247,0.003445,0.005886,42723937,28036199,0,0,40932,0,1,1 +1774100954.491895,0.60,4,3992.50,53.24,1615.86,2084.63,0.00,70693.945382,83804.024916,6055328,1486761,0.002245,0.003233,42724011,28036280,0,0,40935,0,1,1 +1774100959.496201,0.75,4,3992.50,53.33,1612.02,2088.16,0.00,3515410041101.650391,3515410028004.674316,21,0,0.001771,0.002830,42724078,28036357,0,0,40937,0,1,1 +1774100964.493597,0.50,4,3992.50,53.29,1613.55,2086.42,0.00,0.000000,0.000000,21,0,0.001945,0.001932,42724134,28036411,0,0,40939,0,1,1 +1774100969.491909,0.45,4,3992.50,53.29,1613.56,2086.41,0.00,0.000000,0.000000,21,0,0.000997,0.001806,42724167,28036456,0,0,40942,0,1,1 +1774100974.494785,0.60,4,3992.50,53.29,1613.56,2086.41,0.00,2.005683,0.000195,238,2,0.002019,0.001973,42724228,28036513,0,0,40944,0,1,1 +1774100979.495272,0.50,4,3992.50,53.09,1621.22,2078.75,0.00,0.000000,0.000000,238,2,0.001027,0.002106,42724262,28036558,0,0,40947,0,1,1 +1774100984.495324,0.55,4,3992.50,53.10,1620.97,2079.00,0.00,3518400485225.827148,0.028125,237,247,0.001450,0.001751,42724305,28036599,0,0,40950,0,1,1 +1774100989.496409,0.85,4,3992.50,53.39,1610.48,2090.41,0.00,70672.798840,83784.042986,6054555,1486732,0.001348,0.001768,42724341,28036641,0,0,40952,0,1,1 +1774100994.491920,0.60,4,3992.50,53.14,1619.44,2080.53,0.00,3521599337188.806641,3521599324064.394531,70,0,0.001818,0.001884,42724388,28036691,0,0,40955,0,1,1 +1774100999.496139,0.50,4,3992.50,53.12,1620.00,2079.96,0.00,3515470924826.202148,0.000000,21,0,0.001195,0.001909,42724428,28036733,0,0,40957,0,1,1 +1774101004.496493,0.60,4,3992.50,52.97,1626.16,2073.81,0.00,70688.793005,83796.427445,6055339,1487049,0.001441,0.001801,42724471,28036778,0,0,40959,0,1,1 +1774101009.496002,0.70,4,3992.50,53.09,1621.38,2078.59,0.00,3518781956300.963867,3518781943191.068848,70,0,0.002476,0.002750,42724518,28036828,0,0,40962,0,1,1 +1774101014.491905,0.70,4,3992.50,53.10,1621.17,2078.80,0.00,0.127057,0.000000,199,0,0.002946,0.027341,42724636,28036970,0,0,40964,0,1,1 +1774101019.492946,2.32,4,3992.50,53.54,1603.43,2096.31,0.00,0.000000,0.000000,199,0,0.142861,6.274062,42732879,28046691,0,0,40967,0,1,1 +1774101024.496300,3.18,4,3992.50,53.26,1613.65,2085.06,0.00,70646.308485,83752.422484,6055349,1487337,0.204455,10.722351,42744716,28061778,0,0,40970,0,1,1 +1774101029.496046,3.19,4,3992.50,53.51,1602.85,2095.23,0.00,3518616296279.004883,3518616283163.605957,21,0,0.202175,9.703440,42756361,28076531,0,0,40972,0,1,1 +1774101034.492442,3.64,4,3992.50,53.43,1605.51,2091.98,0.00,0.000000,0.000000,21,0,0.207983,9.533950,42768436,28091798,0,0,40975,0,1,1 +1774101039.495628,1.97,4,3992.50,53.32,1609.67,2087.53,0.00,70644.776659,83755.231651,6054578,1487129,0.106735,3.869768,42774759,28099121,0,0,40977,0,1,1 +1774101044.496397,1.05,4,3992.50,53.24,1612.76,2084.42,0.00,3517895917647.855469,3517895904529.058105,238,2,0.015088,0.483532,42775665,28100100,0,0,40979,0,1,1 +1774101049.492002,1.31,4,3992.50,53.35,1605.12,2088.74,0.00,70754.093450,83916.537610,6055352,1487616,0.011481,0.364317,42776329,28100854,0,0,40982,0,1,1 +1774101054.491928,0.80,4,3992.50,53.15,1612.61,2081.11,0.00,3518489135127.441895,3518489121976.374023,238,2,0.001844,0.003978,42776396,28100934,0,0,40984,0,1,1 +1774101059.491979,1.05,4,3992.50,53.17,1611.95,2081.77,0.00,3518401663876.592285,3518401663878.550781,70,0,0.000987,0.001838,42776430,28100979,0,0,40987,0,1,1 +1774101064.495957,0.55,4,3992.50,53.15,1612.86,2080.85,0.00,1.489147,0.028298,237,247,0.000607,0.001696,42776453,28101013,0,0,40990,0,1,1 +1774101069.492682,0.55,4,3992.50,53.15,1612.87,2080.84,0.00,0.000000,0.000000,237,247,0.000583,0.001313,42776476,28101041,0,0,40992,0,1,1 +1774101074.496743,0.55,4,3992.50,53.15,1612.87,2080.84,0.00,0.000000,0.000000,237,247,0.000755,0.001547,42776503,28101075,0,0,40995,0,1,1 +1774101079.495840,1.00,4,3992.50,53.44,1605.05,2092.14,0.00,3519072576731.624023,3519072576733.086426,70,0,0.000553,0.001338,42776524,28101105,0,0,40997,0,1,1 +1774101084.496767,0.55,4,3992.50,53.44,1604.62,2092.30,0.00,1.490056,0.028315,237,247,0.000597,0.001325,42776548,28101134,0,0,40999,0,1,1 +1774101089.496525,0.55,4,3992.50,53.45,1604.39,2092.54,0.00,70695.775544,83846.993667,6055352,1487814,0.000643,0.002024,42776575,28101171,0,0,41002,0,1,1 +1774101094.491908,0.60,4,3992.50,53.44,1604.73,2092.19,0.00,3521689428942.169434,3521689415780.767090,199,0,0.000636,0.001366,42776602,28101203,0,0,41004,0,1,1 +1774101099.496071,0.55,4,3992.50,53.44,1604.74,2092.19,0.00,3515510001199.874023,0.000000,21,0,0.000767,0.001729,42776636,28101240,0,0,41007,0,1,1 +1774101104.495287,0.45,4,3992.50,53.44,1604.74,2092.19,0.00,2.007151,0.000195,238,2,0.000601,0.001373,42776660,28101273,0,0,41010,0,1,1 +1774101109.496413,1.00,4,3992.50,53.51,1597.69,2095.19,0.00,70675.977199,83824.147471,6055352,1487841,0.000757,0.001512,42776687,28101304,0,0,41012,0,1,1 +1774101114.496789,0.50,4,3992.50,53.37,1603.20,2089.74,0.00,3518172430895.598145,3518172417747.462402,21,0,0.000676,0.001743,42776715,28101341,0,0,41015,0,1,1 +1774101119.496084,1.05,4,3992.50,52.95,1621.09,2073.15,0.00,0.048054,0.000000,70,0,0.002634,0.002889,42776780,28101412,0,0,41017,0,1,1 +1774101124.493953,1.10,4,3992.50,53.15,1613.27,2080.98,0.00,3519937349158.377930,0.000000,21,0,0.002271,0.003439,42776838,28101466,0,0,41019,0,1,1 +1774101129.495944,13.93,4,3992.50,59.92,1353.01,2345.96,0.00,2.006037,0.000195,238,2,0.180394,0.005221,42777273,28101705,0,0,41022,0,1,1 +1774101134.495364,4.31,4,3992.50,59.89,1354.48,2344.71,0.00,3518845122558.335938,0.028128,237,247,7.162771,0.166060,42790851,28111213,0,0,41024,0,1,1 +1774101139.496300,3.15,4,3992.50,60.15,1344.70,2354.95,0.00,70679.128661,83827.619306,6055352,1488109,9.122754,0.244097,42807868,28125233,0,0,41027,0,1,1 +1774101144.495964,2.74,4,3992.50,60.48,1331.86,2367.74,0.00,3518674275019.654297,3518674261869.325684,21,0,8.603529,0.235754,42823968,28138745,0,0,41030,0,1,1 +1774101149.492408,2.64,4,3992.50,60.22,1342.15,2357.66,0.00,2.008264,0.000195,238,2,7.753032,0.216715,42838666,28151146,0,0,41032,0,1,1 +1774101154.491913,2.54,4,3992.50,60.25,1341.38,2358.94,0.00,3518785657334.842285,3518785657336.674805,199,0,8.046711,0.213166,42853650,28163506,0,0,41035,0,1,1 +1774101159.494008,2.44,4,3992.50,60.45,1333.84,2366.90,0.00,1.831069,0.000195,238,2,8.454791,0.228624,42869620,28176590,0,0,41037,0,1,1 +1774101164.492832,2.59,4,3992.50,60.07,1348.87,2352.06,0.00,3519264797783.333984,3519264797785.341309,21,0,5.538239,0.159066,42880176,28185955,0,0,41039,0,1,1 +1774101169.491894,3.04,4,3992.50,60.70,1329.65,2376.43,0.00,70703.056902,83859.158557,6054578,1487966,6.807216,0.180642,42892930,28196631,0,0,41042,0,1,1 +1774101174.494865,2.79,4,3992.50,60.28,1345.91,2359.95,0.00,4.106837,0.056900,6055352,1488247,8.573650,0.221915,42908965,28209291,0,0,41044,0,1,1 +1774101179.496326,2.49,4,3992.50,60.52,1336.55,2369.33,0.00,3517409425021.080078,3517409411875.165039,199,0,8.908887,0.216489,42925306,28221799,0,0,41047,0,1,1 +1774101184.494208,2.54,4,3992.50,60.23,1347.86,2358.08,0.00,0.000000,0.000000,199,0,8.239354,0.201458,42940544,28233305,0,0,41050,0,1,1 +1774101189.492381,2.84,4,3992.50,60.43,1339.94,2365.91,0.00,70715.455145,83874.108863,6054578,1488023,9.189564,0.222910,42957349,28246141,0,0,41052,0,1,1 +1774101194.495384,2.38,4,3992.50,60.30,1344.94,2360.88,0.00,3516325587491.228027,3516325574345.403320,70,0,8.521284,0.217554,42973118,28258664,0,0,41055,0,1,1 +1774101199.496170,2.79,4,3992.50,60.57,1332.50,2371.45,0.00,0.126933,0.000000,199,0,9.000607,0.227614,42989676,28271636,0,0,41057,0,1,1 +1774101204.492151,3.10,4,3992.50,60.28,1343.74,2360.04,0.00,70746.474843,83910.955110,6054578,1488069,7.063493,0.170756,43002832,28281502,0,0,41059,0,1,1 +1774101209.494815,2.64,4,3992.50,60.24,1345.25,2358.64,0.00,0.000000,0.001171,6054578,1488075,8.067297,0.205991,43017880,28293501,0,0,41062,0,1,1 +1774101214.496248,2.84,4,3992.50,60.40,1339.38,2364.75,0.00,3517429628164.272949,3517429615012.307129,238,2,8.607008,0.222549,43033858,28306236,0,0,41064,0,1,1 +1774101219.491899,2.44,4,3992.50,60.18,1348.06,2356.07,0.00,3521499636670.866699,0.028149,237,247,8.896571,0.229905,43050295,28319380,0,0,41067,0,1,1 +1774101224.491967,2.64,4,3992.50,60.25,1345.14,2359.04,0.00,70691.396863,83842.384026,6055352,1488351,7.424443,0.189045,43064283,28330265,0,0,41070,0,1,1 +1774101229.492320,2.69,4,3992.50,60.48,1330.33,2367.87,0.00,0.000000,0.037009,6055352,1488371,8.560046,0.213227,43080168,28342671,0,0,41072,0,1,1 +1774101234.494254,2.64,4,3992.50,60.17,1342.39,2355.73,0.00,0.000000,0.024697,6055352,1488396,8.901304,0.215394,43096255,28355008,0,0,41075,0,1,1 +1774101239.495893,2.79,4,3992.50,60.05,1347.09,2351.08,0.00,0.000000,0.004295,6055352,1488405,8.527504,0.210153,43111860,28367139,0,0,41077,0,1,1 +1774101244.496831,2.48,4,3992.50,60.05,1347.19,2350.90,0.00,3517776620382.210938,3517776620386.292969,6054578,1488162,8.028370,0.210316,43126873,28379396,0,0,41079,0,1,1 +1774101249.496687,2.79,4,3992.50,60.02,1348.18,2350.00,0.00,4.109396,0.033692,6055352,1488420,9.229742,0.243227,43144104,28393229,0,0,41082,0,1,1 +1774101254.496154,2.48,4,3992.50,59.91,1352.43,2345.74,0.00,3518811746665.274414,3518811733514.144531,21,0,8.421291,0.215338,43159386,28405648,0,0,41084,0,1,1 +1774101259.496739,3.70,4,3992.50,60.20,1341.05,2357.02,0.00,70681.525362,83833.844523,6054578,1488205,11.081247,0.209955,43174512,28417913,0,0,41087,0,1,1 +1774101264.496490,3.05,4,3992.50,60.00,1349.08,2349.01,0.00,3518611999136.854980,3518611985980.833984,237,247,11.009632,0.230673,43191601,28431119,0,0,41090,0,1,1 +1774101269.492636,2.79,4,3992.50,60.03,1347.84,2350.22,0.00,3521151900799.340332,3521151900800.676758,199,0,8.785791,0.218226,43207623,28443550,0,0,41092,0,1,1 +1774101274.495924,2.44,4,3992.50,60.10,1345.21,2352.86,0.00,70643.164886,83788.574685,6054578,1488230,7.810529,0.203155,43222239,28455408,0,0,41094,0,1,1 +1774101279.496807,2.39,4,3992.50,60.20,1341.06,2357.03,0.00,3517815520491.169922,3517815507339.615234,21,0,8.790775,0.218883,43238597,28468155,0,0,41097,0,1,1 +1774101284.496220,2.69,4,3992.50,60.06,1346.53,2351.53,0.00,0.000000,0.000000,21,0,7.782079,0.209188,43253193,28479989,0,0,41099,0,1,1 +1774101289.496017,2.68,4,3992.50,60.66,1325.31,2374.98,0.00,2.006917,0.000195,238,2,6.195346,0.167495,43264848,28489827,0,0,41102,0,1,1 +1774101294.496175,2.03,4,3992.50,60.33,1338.24,2362.19,0.00,0.000000,0.000000,238,2,7.310942,0.192356,43278500,28501095,0,0,41104,0,1,1 +1774101299.492857,2.54,4,3992.50,59.93,1353.74,2346.54,0.00,70738.844284,83899.458059,6055352,1488557,8.573137,0.226570,43294524,28513954,0,0,41107,0,1,1 +1774101304.495729,2.48,4,3992.50,60.07,1348.49,2351.77,0.00,3516417097223.627441,3516417084081.304688,21,0,5.525802,0.161096,43305061,28523390,0,0,41110,0,1,1 +1774101309.496728,2.38,4,3992.50,60.37,1336.85,2363.46,0.00,1.538071,0.028315,237,247,6.075590,0.167854,43316485,28533362,0,0,41112,0,1,1 +1774101314.496411,2.13,4,3992.50,59.97,1352.44,2347.89,0.00,0.468487,3518660624128.304199,238,2,8.772006,0.228862,43333087,28546453,0,0,41115,0,1,1 +1774101319.496548,3.14,4,3992.50,60.31,1339.99,2361.46,0.00,70689.968483,83841.592060,6055353,1488659,6.940271,0.198973,43346244,28557891,0,0,41117,0,1,1 +1774101324.496763,2.08,4,3992.50,60.31,1339.78,2361.46,0.00,0.000000,0.025292,6055353,1488686,7.148408,0.196005,43359571,28569302,0,0,41119,0,1,1 +1774101329.491987,2.54,4,3992.50,60.07,1349.30,2351.95,0.00,3521801221884.223145,3521801208720.134277,237,247,8.918743,0.234695,43376269,28582727,0,0,41122,0,1,1 +1774101334.496244,2.48,4,3992.50,60.04,1350.48,2350.89,0.00,3515443997448.720703,3515443997450.229980,21,0,6.057761,0.178600,43388038,28592960,0,0,41124,0,1,1 +1774101339.491911,2.09,4,3992.50,60.09,1348.47,2352.79,0.00,0.000000,0.000000,21,0,4.688964,0.133558,43396960,28601023,0,0,41127,0,1,1 +1774101344.491897,2.28,4,3992.50,60.38,1337.26,2363.99,0.00,2.006842,0.000195,238,2,6.730910,0.176360,43409660,28611476,0,0,41130,0,1,1 +1774101349.496406,2.59,4,3992.50,60.00,1352.12,2349.14,0.00,3515266947105.557617,3515266947107.562500,21,0,7.973085,0.222689,43424889,28624068,0,0,41132,0,1,1 +1774101354.494656,2.23,4,3992.50,59.99,1352.62,2348.62,0.00,0.000000,0.000000,21,0,4.105603,0.121262,43432786,28631369,0,0,41135,0,1,1 +1774101359.495682,2.59,4,3992.50,60.37,1337.70,2363.52,0.00,2.006424,0.000195,238,2,4.704763,0.128638,43441720,28639254,0,0,41137,0,1,1 +1774101364.492199,2.34,4,3992.50,59.97,1353.11,2348.09,0.00,3520889725461.784180,3520889725463.792969,21,0,8.615196,0.218723,43457966,28651824,0,0,41139,0,1,1 +1774101369.492680,2.43,4,3992.50,59.90,1355.98,2345.23,0.00,70687.123504,83835.965142,6055353,1488806,5.367415,0.166348,43468428,28661394,0,0,41142,0,1,1 +1774101374.492820,2.18,4,3992.50,60.20,1344.19,2357.07,0.00,3518338481165.604980,3518338468013.861328,238,2,4.851291,0.137115,43477641,28669745,0,0,41144,0,1,1 +1774101379.496381,2.89,4,3992.50,60.44,1334.70,2366.55,0.00,70637.495312,83784.357333,6054579,1488582,7.133326,0.188364,43491096,28680855,0,0,41147,0,1,1 +1774101384.495753,2.54,4,3992.50,59.92,1354.40,2346.03,0.00,3518879181203.732422,3518879168047.813477,70,0,7.629147,0.218025,43505792,28693132,0,0,41150,0,1,1 +1774101389.492501,2.39,4,3992.50,60.11,1346.81,2353.57,0.00,0.000000,0.000000,70,0,4.922334,0.140144,43515130,28701586,0,0,41152,0,1,1 +1774101394.492032,2.44,4,3992.50,60.13,1346.16,2354.27,0.00,0.000000,0.000000,70,0,5.819305,0.160187,43526135,28711175,0,0,41155,0,1,1 +1774101399.496225,2.39,4,3992.50,60.06,1349.00,2351.41,0.00,0.126847,0.000000,199,0,8.919879,0.240611,43543159,28724842,0,0,41157,0,1,1 +1774101404.496070,2.29,4,3992.50,60.21,1343.02,2357.41,0.00,70695.932064,83846.708456,6055353,1488903,4.851863,0.147158,43552498,28733444,0,0,41159,0,1,1 +1774101409.494528,2.64,4,3992.50,60.51,1331.55,2369.25,0.00,3519522583890.168457,0.011527,6054579,1488674,4.736987,0.131779,43561473,28741425,0,0,41162,0,1,1 +1774101414.495881,2.13,4,3992.50,60.56,1329.56,2370.89,0.00,0.000000,0.016988,6054579,1488697,7.937460,0.200486,43576384,28753114,0,0,41164,0,1,1 +1774101419.491975,3.86,4,3992.50,60.16,1344.93,2355.52,0.00,3521187522273.812988,3521187509109.198242,21,0,6.850525,0.198749,43589584,28764270,0,0,41167,0,1,1 +1774101424.495289,4.00,4,3992.50,60.27,1340.83,2359.63,0.00,1.537360,0.028302,237,247,5.564311,0.151779,43600226,28773203,0,0,41170,0,1,1 +1774101429.496463,2.59,4,3992.50,60.37,1336.87,2363.58,0.00,0.468347,3517611091586.612793,238,2,6.763031,0.179357,43613070,28783685,0,0,41172,0,1,1 +1774101434.496189,3.66,4,3992.50,60.11,1346.90,2353.54,0.00,3518630003767.537109,3518630003769.544434,21,0,8.894118,0.240446,43629880,28797084,0,0,41175,0,1,1 +1774101439.492808,4.57,4,3992.50,61.17,1309.88,2394.95,0.00,0.048079,0.000000,70,0,8.377508,0.219176,43645541,28809660,0,0,41177,0,1,1 +1774101444.491887,4.58,4,3992.50,60.76,1323.77,2378.80,0.00,1.959150,0.000195,238,2,13.173981,0.273694,43665604,28825533,0,0,41179,0,1,1 +1774101449.492824,4.12,4,3992.50,60.69,1326.27,2376.30,0.00,3517778079284.699219,3517778079286.706055,21,0,12.793493,0.287050,43686432,28841948,0,0,41182,0,1,1 +1774101454.495565,3.76,4,3992.50,60.20,1345.76,2356.84,0.00,0.000000,0.000000,21,0,10.735651,0.244476,43703900,28856082,0,0,41184,0,1,1 +1774101459.496365,4.21,4,3992.50,60.40,1337.95,2364.64,0.00,70678.511494,83831.498868,6054580,1489535,9.733890,0.198950,43717830,28867816,0,0,41187,0,1,1 +1774101464.492561,5.14,4,3992.50,60.70,1326.16,2376.36,0.00,0.000000,0.038506,6054580,1489591,11.369343,0.222509,43735024,28880767,0,0,41190,0,1,1 +1774101469.493578,4.74,4,3992.50,61.03,1315.47,2389.46,0.00,3517721900907.616211,3517721887753.155762,238,2,9.842911,0.250666,43752963,28895022,0,0,41192,0,1,1 +1774101474.494432,3.72,4,3992.50,61.08,1313.61,2391.38,0.00,3517836176017.011719,3517836176019.018555,21,0,8.375976,0.223821,43768885,28908131,0,0,41195,0,1,1 +1774101479.495477,3.97,4,3992.50,60.96,1318.45,2386.53,0.00,0.000000,0.000000,21,0,9.160272,0.234539,43786218,28921875,0,0,41197,0,1,1 +1774101484.496566,4.13,4,3992.50,60.66,1329.79,2375.13,0.00,70674.418121,83827.040719,6054580,1489981,11.245728,0.291069,43807199,28938293,0,0,41199,0,1,1 +1774101489.494795,4.63,4,3992.50,60.99,1316.83,2388.02,0.00,4.110733,0.098668,6055354,1490332,9.921649,0.256343,43825947,28953107,0,0,41202,0,1,1 +1774101494.494834,4.49,4,3992.50,60.48,1336.91,2368.00,0.00,3518410131578.798340,3518410118425.416504,238,2,11.292548,0.286929,43847310,28969735,0,0,41204,0,1,1 +1774101499.494665,4.38,4,3992.50,61.01,1316.35,2388.55,0.00,3518555663170.265625,0.028126,237,247,10.416960,0.273523,43866884,28985586,0,0,41207,0,1,1 +1774101504.492538,3.66,4,3992.50,60.54,1334.48,2370.43,0.00,70718.356856,83881.346874,6054580,1490414,9.775916,0.258423,43885039,29000532,0,0,41210,0,1,1 +1774101509.491921,3.87,4,3992.50,60.83,1323.23,2381.69,0.00,3518871758268.905762,3518871745109.393555,238,2,7.949659,0.211879,43900146,29012787,0,0,41212,0,1,1 +1774101514.495384,4.02,4,3992.50,60.86,1322.29,2382.65,0.00,70638.879008,83787.747397,6054580,1490551,10.653442,0.262658,43919774,29027884,0,0,41215,0,1,1 +1774101519.495892,3.82,4,3992.50,60.92,1319.73,2385.22,0.00,3518079818789.204102,3518079805633.062012,237,247,10.422709,0.263162,43939203,29043211,0,0,41217,0,1,1 +1774101524.495792,3.81,4,3992.50,60.77,1325.55,2379.38,0.00,3518507362992.744629,3518507362994.079590,199,0,11.325831,0.279947,43959899,29059431,0,0,41219,0,1,1 +1774101529.496127,4.38,4,3992.50,61.14,1316.56,2393.68,0.00,70684.895004,83840.463441,6054580,1490845,8.026845,0.220360,43975307,29072039,0,0,41222,0,1,1 +1774101534.491875,3.87,4,3992.50,61.25,1309.80,2398.23,0.00,0.000000,0.075064,6054580,1490945,7.463402,0.212367,43989593,29084663,0,0,41224,0,1,1 +1774101539.493094,4.32,4,3992.50,61.52,1299.37,2408.70,0.00,3517579901157.461426,3517579888004.268066,70,0,9.452205,0.249497,44007537,29099314,0,0,41227,0,1,1 +1774101544.492342,3.92,4,3992.50,60.86,1325.38,2382.73,0.00,3518965777249.103027,0.000000,21,0,9.269405,0.257520,44025428,29113964,0,0,41230,0,1,1 +1774101549.492651,2.64,4,3992.50,61.01,1319.28,2388.79,0.00,0.174989,0.000000,199,0,7.665643,0.219893,44040075,29126905,0,0,41232,0,1,1 +1774101554.491898,2.99,4,3992.50,60.97,1321.05,2387.05,0.00,1.832112,0.000195,238,2,6.897897,0.191593,44053108,29138109,0,0,41235,0,1,1 +1774101559.492656,4.12,4,3992.50,61.23,1315.67,2397.44,0.00,3517903656173.049316,3517903656175.056152,21,0,8.975666,0.241787,44070140,29151714,0,0,41237,0,1,1 +1774101564.496707,3.76,4,3992.50,61.12,1317.28,2392.87,0.00,70632.586889,83778.818615,6054580,1491566,7.994290,0.222167,44085433,29164640,0,0,41239,0,1,1 +1774101569.495899,3.30,4,3992.50,61.39,1306.67,2403.45,0.00,3519005477988.315918,3519005464829.308594,21,0,8.159017,0.221926,44101010,29177922,0,0,41242,0,1,1 +1774101574.491891,2.59,4,3992.50,60.58,1338.43,2371.77,0.00,1.539613,0.028343,237,247,11.205880,0.292133,44122249,29194824,0,0,41244,0,1,1 +1774101579.492279,2.80,4,3992.50,60.45,1343.53,2366.67,0.00,70686.898598,83840.254179,6055354,1491913,7.291327,0.207504,44136171,29206716,0,0,41247,0,1,1 +1774101584.495404,2.64,4,3992.50,60.86,1327.23,2382.91,0.00,3516239647345.259766,3516239634199.099609,237,247,7.342808,0.202315,44149920,29218470,0,0,41250,0,1,1 +1774101589.491920,3.05,4,3992.50,60.74,1337.08,2378.03,0.00,0.468784,3520890881120.959961,238,2,9.161213,0.241423,44167169,29232218,0,0,41252,0,1,1 +1774101594.491913,2.74,4,3992.50,60.37,1351.34,2363.71,0.00,3518441599896.484863,3518441599898.316895,199,0,5.909868,0.179713,44178699,29242312,0,0,41255,0,1,1 +1774101599.495982,2.23,4,3992.50,60.75,1336.64,2378.43,0.00,3515576288445.641113,0.000000,70,0,3.876675,0.786527,44187400,29250477,0,0,41257,0,1,1 +1774101604.495560,3.41,4,3992.50,61.05,1324.91,2390.09,0.00,1.490458,0.028323,237,247,4.528169,5.030593,44204028,29267257,0,0,41259,0,1,1 +1774101609.492970,3.06,4,3992.50,60.71,1337.98,2377.04,0.00,3520260288320.345215,3520260288321.808105,70,0,5.989038,4.309139,44222170,29284608,0,0,41262,0,1,1 +1774101614.492850,3.45,4,3992.50,60.86,1332.07,2382.90,0.00,3518522232565.492676,0.000000,21,0,5.044452,4.980102,44239700,29302240,0,0,41264,0,1,1 +1774101619.494342,3.41,4,3992.50,61.22,1319.25,2396.81,0.00,0.000000,0.000000,21,0,5.188632,5.042353,44257658,29319987,0,0,41267,0,1,1 +1774101624.492162,3.66,4,3992.50,60.98,1328.65,2387.36,0.00,70724.771544,83896.092295,6055365,1492514,5.444557,4.763980,44275673,29337596,0,0,41270,0,1,1 +1774101629.496170,3.30,4,3992.50,60.99,1327.87,2387.95,0.00,3515619884243.911621,3515619871086.867676,238,2,4.137001,5.815654,44292692,29355395,0,0,41272,0,1,1 +1774101634.495948,2.90,4,3992.50,60.74,1337.64,2377.96,0.00,70695.069822,83863.255719,6055365,1492549,4.688097,4.676845,44309224,29371894,0,0,41275,0,1,1 +1774101639.491914,2.95,4,3992.50,60.95,1329.00,2386.21,0.00,3521278454254.717285,3521278441076.480957,238,2,5.438327,4.701399,44327056,29389305,0,0,41277,0,1,1 +1774101644.493708,3.30,4,3992.50,61.14,1321.20,2393.77,0.00,3517174768240.118652,0.028115,237,247,5.345211,5.474391,44345376,29407405,0,0,41279,0,1,1 +1774101649.496020,3.71,4,3992.50,61.21,1316.86,2396.34,0.00,3516811451657.066406,3516811451658.400879,199,0,5.150773,4.620572,44362573,29424270,0,0,41282,0,1,1 +1774101654.496343,3.16,4,3992.50,60.87,1329.89,2383.08,0.00,3518209733403.576172,0.000000,21,0,4.761767,4.464853,44378948,29440417,0,0,41284,0,1,1 +1774101659.492147,3.26,4,3992.50,61.09,1320.82,2391.98,0.00,0.000000,0.000000,21,0,4.797338,5.433374,44396468,29458406,0,0,41287,0,1,1 +1774101664.492459,3.46,4,3992.50,60.96,1326.04,2386.61,0.00,2.006711,0.000195,238,2,5.846791,4.276288,44414687,29475661,0,0,41290,0,1,1 +1774101669.491902,3.21,4,3992.50,61.05,1322.26,2390.38,0.00,3518828665902.491699,3518828665904.498535,21,0,4.396438,4.421132,44430433,29491258,0,0,41292,0,1,1 +1774101674.496788,4.31,4,3992.50,61.16,1318.11,2394.50,0.00,70624.941464,83808.012739,6055365,1492906,4.698942,5.310712,44447716,29508868,0,0,41295,0,1,1 +1774101679.496006,3.06,4,3992.50,61.26,1314.19,2398.33,0.00,3518987110831.813965,3518987097633.624023,199,0,6.261044,3.478352,44465487,29525100,0,0,41297,0,1,1 +1774101684.494939,3.57,4,3992.50,61.01,1323.84,2388.70,0.00,1.363670,0.028326,237,247,5.416471,4.360730,44482936,29541681,0,0,41299,0,1,1 +1774101689.493145,3.46,4,3992.50,61.10,1320.73,2392.14,0.00,0.000000,0.000000,237,247,3.811609,6.285250,44499918,29559815,0,0,41302,0,1,1 +1774101694.496556,3.10,4,3992.50,61.10,1320.53,2392.01,0.00,3516037963727.484863,3516037963728.993652,21,0,3.362532,5.754035,44515627,29576184,0,0,41304,0,1,1 +1774101699.491830,3.31,4,3992.50,60.94,1326.86,2385.81,0.00,70756.725286,83997.006508,6054591,1492941,5.208160,5.042572,44533523,29593739,0,0,41307,0,1,1 +1774101704.496243,3.10,4,3992.50,60.92,1327.15,2385.34,0.00,3515334175917.483398,3515334162701.383789,21,0,4.529148,4.538581,44549625,29609675,0,0,41310,0,1,1 +1774101709.494882,3.96,4,3992.50,61.32,1311.52,2400.72,0.00,0.048060,0.000000,70,0,4.913705,5.435964,44567569,29627722,0,0,41312,0,1,1 +1774101714.491842,3.15,4,3992.50,61.24,1314.53,2397.50,0.00,3520577916000.212402,0.000000,21,0,4.811809,5.347205,44585157,29645483,0,0,41315,0,1,1 +1774101719.495927,3.00,4,3992.50,61.00,1323.50,2388.45,0.00,0.048008,0.000000,70,0,5.589823,4.632668,44602824,29663154,0,0,41317,0,1,1 +1774101724.492000,3.66,4,3992.50,61.09,1320.06,2391.93,0.00,3521202817915.588379,0.000000,21,0,5.510467,4.888484,44621206,29681117,0,0,41319,0,1,1 +1774101729.494253,3.26,4,3992.50,61.09,1320.34,2391.64,0.00,0.048025,0.000000,70,0,5.333843,4.792793,44638691,29698479,0,0,41322,0,1,1 +1774101734.495863,2.79,4,3992.50,60.87,1328.69,2383.23,0.00,0.126912,0.000000,199,0,5.697120,3.948500,44655992,29714767,0,0,41324,0,1,1 +1774101739.492156,3.36,4,3992.50,61.43,1308.29,2404.97,0.00,3521048290833.559082,0.000000,21,0,4.840880,5.536769,44674086,29733129,0,0,41327,0,1,1 +1774101744.492364,3.05,4,3992.50,60.84,1331.09,2382.04,0.00,70686.898846,83974.319563,6054591,1493557,4.460397,4.230380,44689459,29748705,0,0,41330,0,1,1 +1774101749.492727,3.00,4,3992.50,60.81,1332.27,2380.89,0.00,3518181346709.176758,3518181333420.659668,237,247,5.818503,4.172796,44707418,29765476,0,0,41332,0,1,1 +1774101754.496381,3.20,4,3992.50,61.03,1323.71,2389.54,0.00,0.000000,0.000000,237,247,4.326540,5.750773,44724886,29783629,0,0,41335,0,1,1 +1774101759.492447,3.20,4,3992.50,60.77,1334.11,2379.11,0.00,0.468826,3521207440666.310547,238,2,4.542830,5.097845,44741663,29800693,0,0,41337,0,1,1 +1774101764.496557,2.95,4,3992.50,61.03,1323.88,2389.43,0.00,3515547702882.144531,3515547702884.149902,21,0,5.190990,4.487901,44758901,29817512,0,0,41339,0,1,1 +1774101769.495840,3.20,4,3992.50,61.24,1314.21,2397.59,0.00,0.000000,0.000000,21,0,4.832284,5.130770,44776142,29834992,0,0,41342,0,1,1 +1774101774.496793,3.46,4,3992.50,60.73,1333.90,2377.57,0.00,70676.364972,83990.932738,6054591,1493861,5.677214,4.660578,44794116,29852799,0,0,41344,0,1,1 +1774101779.491880,3.50,4,3992.50,60.76,1332.45,2378.92,0.00,3521897574428.838379,3521897561098.634277,21,0,5.539885,4.853987,44812370,29870653,0,0,41347,0,1,1 +1774101784.491915,3.25,4,3992.50,60.73,1333.71,2377.78,0.00,0.000000,0.000000,21,0,3.951638,5.410416,44828292,29887537,0,0,41350,0,1,1 +1774101789.495581,2.75,4,3992.50,60.77,1332.05,2379.21,0.00,1.537252,0.028300,237,247,4.622209,5.720389,44845553,29905612,0,0,41352,0,1,1 +1774101794.492694,3.25,4,3992.50,60.97,1324.02,2387.14,0.00,3520469697846.479980,3520469697847.991211,21,0,5.723729,4.178502,44863299,29922515,0,0,41355,0,1,1 +1774101799.492452,3.46,4,3992.50,61.39,1309.69,2403.71,0.00,1.538453,0.028322,237,247,5.452666,4.855733,44880982,29940253,0,0,41357,0,1,1 +1774101804.495712,3.00,4,3992.50,60.80,1332.93,2380.27,0.00,3516144759150.651367,3516144759152.160645,21,0,5.291467,4.200101,44897646,29956694,0,0,41359,0,1,1 +1774101809.491891,3.31,4,3992.50,61.10,1320.90,2392.28,0.00,70748.008907,84100.235618,6055365,1494456,5.157814,5.498061,44915671,29975090,0,0,41362,0,1,1 +1774101814.492477,2.70,4,3992.50,61.18,1317.68,2395.46,0.00,3518024988522.690430,3518024988526.779297,6054591,1494226,3.969515,5.893904,44932415,29992675,0,0,41364,0,1,1 +1774101819.495535,3.25,4,3992.50,60.99,1325.25,2387.75,0.00,3516286980042.901855,3516286966704.896484,70,0,5.845042,4.139471,44950058,30009318,0,0,41367,0,1,1 +1774101824.491914,2.59,4,3992.50,60.52,1343.74,2369.39,0.00,0.127045,0.000000,199,0,6.482237,1.169521,44963950,30021106,0,0,41370,0,1,1 +1774101829.495933,3.85,4,3992.50,60.49,1346.30,2368.38,0.00,70632.919402,83968.663750,6054608,1494319,9.810456,0.217241,44979852,30033708,0,0,41372,0,1,1 +1774101834.491976,2.70,4,3992.50,60.31,1353.53,2361.20,0.00,3521223700118.860840,3521223686762.002441,21,0,8.233002,0.189177,44993780,30044490,0,0,41375,0,1,1 +1774101839.496507,2.99,4,3992.50,60.29,1354.33,2360.47,0.00,0.048003,0.000000,70,0,5.650263,0.151465,45004222,30053448,0,0,41377,0,1,1 +1774101844.494829,2.85,4,3992.50,60.57,1343.41,2371.56,0.00,0.000000,0.000000,70,0,6.338063,0.169389,45016158,30063482,0,0,41379,0,1,1 +1774101849.492438,13.32,4,3992.50,66.33,1118.76,2597.13,0.00,70744.357077,84093.867067,6055509,1494921,9.261583,0.244523,45033814,30077399,0,0,41382,0,1,1 +1774101854.496570,6.90,4,3992.50,59.60,1382.40,2333.65,0.00,3515531177294.809570,3515531177298.896973,6054735,1494689,103.076851,0.121271,45050149,30086178,0,0,41384,0,1,1 +1774101859.496074,9.71,4,3992.50,53.99,1607.32,2113.98,0.00,0.194551,0.238207,6054768,1494792,14.790339,30.870163,45053458,30090523,0,0,41387,0,1,1 +1774101864.494432,3.66,4,3992.50,53.27,1635.05,2085.54,0.00,3519592903502.088379,3519592890150.445801,70,0,0.006205,9.224692,45053757,30091638,0,0,41390,0,1,1 +1774101869.491992,0.85,4,3992.50,52.95,1647.35,2073.23,0.00,70745.231577,84129.242980,6055542,1495477,0.002290,0.006359,45053827,30091760,0,0,41392,0,1,1 +1774101874.496763,0.70,4,3992.50,52.94,1647.89,2072.70,0.00,3515083705433.611328,3515083692068.754395,199,0,0.002261,0.007003,45053895,30091887,0,0,41395,0,1,1 +1774101879.492760,0.70,4,3992.50,52.99,1645.99,2074.60,0.00,1.364471,0.028343,237,247,0.001820,0.005093,45053950,30091985,0,0,41397,0,1,1 +1774101884.491994,0.80,4,3992.50,53.10,1641.45,2079.10,0.00,70720.060938,84101.066357,6055542,1495489,0.002289,0.006344,45054020,30092106,0,0,41399,0,1,1 +1774101889.496400,1.00,4,3992.50,53.43,1629.62,2091.84,0.00,3515339057206.105469,3515339043840.440918,21,0,0.001829,0.005107,45054076,30092206,0,0,41402,0,1,1 +1774101894.491934,0.70,4,3992.50,53.45,1628.55,2092.77,0.00,0.175156,0.000000,199,0,0.002299,0.006370,45054147,30092329,0,0,41404,0,1,1 +1774101899.492062,0.65,4,3992.50,53.46,1628.32,2093.00,0.00,3518347152565.638184,0.000000,21,0,0.002314,0.006397,45054219,30092454,0,0,41407,0,1,1 +1774101904.491967,0.60,4,3992.50,53.46,1628.39,2092.93,0.00,0.000000,0.000000,21,0,0.002515,0.006646,45054307,30092595,0,0,41410,0,1,1 +1774101909.491928,0.60,4,3992.50,53.46,1628.40,2092.92,0.00,70711.324384,84095.085785,6055543,1495674,0.001974,0.005215,45054372,30092703,0,0,41412,0,1,1 +1774101914.496035,0.60,4,3992.50,53.46,1628.16,2093.15,0.00,3515549027460.928711,3515549014088.083496,199,0,0.002287,0.006361,45054442,30092826,0,0,41415,0,1,1 +1774101919.496731,0.90,4,3992.50,53.66,1618.49,2100.77,0.00,3517947599229.491699,0.000000,21,0,0.002301,0.006355,45054513,30092948,0,0,41417,0,1,1 +1774101924.496134,20.92,4,3992.50,60.07,1367.65,2351.93,0.00,70715.100040,84104.501603,6054769,1495492,40.461956,0.031713,45059190,30094882,0,0,41419,0,1,1 +1774101929.496438,35.35,4,3992.50,60.42,1354.54,2365.66,0.00,4.109028,0.151260,6055543,1495849,122.202482,0.076282,45072155,30100523,0,0,41422,0,1,1 +1774101934.495608,29.58,4,3992.50,59.99,1371.33,2348.90,0.00,3519021445265.084961,3519021445269.179199,6054769,1495617,122.101569,0.021455,45084252,30101985,0,0,41424,0,1,1 +1774101939.492207,30.24,4,3992.50,59.71,1382.22,2337.96,0.00,3520831915801.877441,3520831902402.818359,238,2,120.169712,0.026218,45096023,30103808,0,0,41427,0,1,1 +1774101944.492753,29.80,4,3992.50,59.94,1373.41,2346.89,0.00,3518052912262.029297,0.028122,237,247,119.822103,0.026433,45107654,30105736,0,0,41430,0,1,1 +1774101949.492987,29.96,4,3992.50,59.85,1376.87,2343.45,0.00,3518272443257.562500,3518272443259.072266,21,0,119.768127,0.023813,45119154,30107522,0,0,41432,0,1,1 +1774101954.491884,29.73,4,3992.50,59.83,1383.82,2342.30,0.00,0.175039,0.000000,199,0,119.527415,0.028572,45130754,30109522,0,0,41435,0,1,1 +1774101959.495289,29.41,4,3992.50,59.89,1381.12,2345.02,0.00,0.000000,0.000000,199,0,119.003868,0.029317,45142298,30111535,0,0,41437,0,1,1 +1774101964.491905,23.11,4,3992.50,60.01,1376.78,2349.43,0.00,3520820164753.621582,0.000000,21,0,119.914451,0.030420,45153977,30113834,0,0,41439,0,1,1 +1774101969.492050,1.00,4,3992.50,53.23,1641.99,2084.22,0.00,2.006778,0.000195,238,2,22.564065,0.013673,45156379,30114519,0,0,41442,0,1,1 +1774101974.496109,5.70,4,3992.50,53.80,1619.93,2106.27,0.00,3515583195865.408691,3515583195867.414062,21,0,4.093963,0.030222,45157960,30115734,0,0,41444,0,1,1 +1774101979.496479,22.65,4,3992.50,55.22,1567.88,2162.18,0.00,0.174987,0.000000,199,0,36.154969,0.155082,45169564,30124295,0,0,41447,0,1,1 +1774101984.496416,1.40,4,3992.50,54.68,1584.89,2140.88,0.00,0.000000,0.000000,199,0,0.008206,0.009178,45169741,30124485,0,0,41450,0,1,1 +1774101989.495948,13.07,4,3992.50,54.12,1603.41,2118.77,0.00,1.832007,0.000195,238,2,0.028926,51.689056,45171683,30130227,0,0,41452,0,1,1 +1774101994.496161,30.38,4,3992.50,53.98,1602.97,2113.61,0.00,3518286890777.490723,3518286890779.449219,70,0,0.032507,118.165200,45173997,30142555,0,0,41455,0,1,1 +1774101999.496616,9.69,4,3992.50,54.05,1600.42,2116.31,0.00,0.000000,0.000000,70,0,0.011177,35.253014,45174680,30146408,0,0,41457,0,1,1 +1774102004.496644,12.19,4,3992.50,58.80,1418.07,2302.05,0.00,3518417015280.534180,0.000000,21,0,9.021743,0.016373,45175940,30147232,0,0,41459,0,1,1 +1774102009.496393,5.92,4,3992.50,53.96,1608.62,2112.63,0.00,0.175009,0.000000,199,0,31.056343,0.028270,45179375,30148767,0,0,41462,0,1,1 +1774102014.496735,0.65,4,3992.50,53.97,1608.40,2112.86,0.00,70718.404424,84296.025178,6054910,1498884,0.003978,0.007246,45179483,30148915,0,0,41464,0,1,1 +1774102019.496533,0.60,4,3992.50,53.96,1608.67,2112.59,0.00,3518579494961.676758,3518579481381.243164,237,247,0.003428,0.005861,45179570,30149032,0,0,41467,0,1,1 +1774102024.496802,0.65,4,3992.50,53.96,1608.68,2112.58,0.00,0.468432,3518247645700.021973,238,2,0.005411,0.008911,45179685,30149198,0,0,41470,0,1,1 +1774102029.496740,0.75,4,3992.50,53.97,1608.20,2113.05,0.00,0.000000,0.000000,238,2,0.003878,0.007123,45179785,30149338,0,0,41472,0,1,1 +1774102034.495389,0.65,4,3992.50,53.97,1608.23,2113.03,0.00,70744.623251,84324.781181,6055684,1499335,0.003917,0.007165,45179888,30149481,0,0,41475,0,1,1 +1774102039.496459,1.10,4,3992.50,54.03,1608.60,2115.22,0.00,3517684515484.854980,3517684501911.268555,238,2,0.002962,0.004600,45179960,30149574,0,0,41477,0,1,1 +1774102044.496465,0.65,4,3992.50,54.03,1608.39,2115.45,0.00,3518432767916.892090,0.028125,237,247,0.003897,0.007148,45180061,30149716,0,0,41479,0,1,1 +1774102049.492604,0.55,4,3992.50,54.03,1608.41,2115.43,0.00,3521156447300.591309,3521156447301.927246,199,0,0.004835,0.007833,45180165,30149862,0,0,41482,0,1,1 +1774102054.495810,0.75,4,3992.50,54.03,1608.43,2115.41,0.00,3516182767513.961426,0.000000,70,0,0.003697,0.006423,45180263,30149992,0,0,41484,0,1,1 +1774102059.494914,0.65,4,3992.50,54.03,1608.45,2115.39,0.00,1.490599,0.028325,237,247,0.004075,0.007666,45180369,30150144,0,0,41487,0,1,1 +1774102064.492044,0.75,4,3992.50,54.03,1608.46,2115.38,0.00,70766.598743,84350.630968,6055684,1499576,0.003888,0.007144,45180470,30150286,0,0,41490,0,1,1 +1774102069.496513,1.35,4,3992.50,53.94,1606.59,2112.05,0.00,3515295218612.588867,3515295205049.984375,21,0,0.003906,0.007772,45180572,30150431,0,0,41492,0,1,1 +1774102074.492008,0.60,4,3992.50,53.97,1605.79,2112.93,0.00,1.539766,0.028346,237,247,0.003423,0.005858,45180658,30150547,0,0,41495,0,1,1 +1774102079.493271,0.85,4,3992.50,53.97,1605.85,2112.91,0.00,3517548820972.495605,3517548820974.005371,21,0,0.003258,0.006883,45180746,30150680,0,0,41497,0,1,1 +1774102084.492244,11.30,4,3992.50,53.24,1631.41,2084.55,0.00,0.175036,0.000000,199,0,0.024881,40.077479,45182343,30155211,0,0,41499,0,1,1 +1774102089.491988,0.80,4,3992.50,53.27,1630.44,2085.52,0.00,3518616625255.964844,0.000000,70,0,0.004738,0.008817,45182441,30155351,0,0,41502,0,1,1 +1774102094.491927,0.60,4,3992.50,53.27,1630.44,2085.52,0.00,1.490350,0.028321,237,247,0.003124,0.006111,45182526,30155473,0,0,41504,0,1,1 +1774102099.491993,1.05,4,3992.50,53.33,1622.55,2087.91,0.00,0.468451,3518390870971.723145,238,2,0.002072,0.005732,45182590,30155584,0,0,41507,0,1,1 +1774102104.491972,0.70,4,3992.50,53.29,1624.09,2086.36,0.00,3518451798493.469238,3518451798495.427734,70,0,0.002272,0.006374,45182659,30155708,0,0,41510,0,1,1 +1774102109.496203,0.65,4,3992.50,53.31,1623.11,2087.34,0.00,0.000000,0.000000,70,0,0.001842,0.005085,45182716,30155806,0,0,41512,0,1,1 +1774102114.496713,0.85,4,3992.50,53.31,1623.12,2087.33,0.00,1.490180,0.028317,237,247,0.002289,0.006365,45182786,30155929,0,0,41515,0,1,1 +1774102119.495311,0.65,4,3992.50,53.31,1623.12,2087.33,0.00,3519423617447.871094,3519423617449.206543,199,0,0.002277,0.006358,45182855,30156051,0,0,41517,0,1,1 +1774102124.495894,0.60,4,3992.50,53.31,1623.13,2087.32,0.00,1.831623,0.000195,238,2,0.002339,0.006417,45182929,30156177,0,0,41519,0,1,1 +1774102129.492254,0.85,4,3992.50,53.41,1619.88,2091.01,0.00,3521000282305.694336,3521000282307.703125,21,0,0.002038,0.005291,45182999,30156290,0,0,41522,0,1,1 +1774102134.491998,0.85,4,3992.50,53.41,1619.76,2090.98,0.00,0.175009,0.000000,199,0,0.002352,0.007063,45183074,30156420,0,0,41524,0,1,1 +1774102139.496507,0.65,4,3992.50,53.41,1619.79,2090.97,0.00,1.362151,0.028295,237,247,0.002299,0.006422,45183145,30156547,0,0,41527,0,1,1 +1774102144.496392,6.68,4,3992.50,59.58,1382.32,2332.62,0.00,3518518098909.227051,3518518098910.562500,199,0,2.411596,0.013144,45183763,30157042,0,0,41530,0,1,1 +1774102149.495385,38.97,4,3992.50,60.00,1369.23,2349.12,0.00,0.000000,0.000000,199,0,119.793448,0.037584,45196182,30159607,0,0,41532,0,1,1 +1774102154.492531,30.51,4,3992.50,59.63,1383.93,2334.47,0.00,70763.630415,84391.015228,6054910,1500096,121.639516,0.025163,45208728,30161298,0,0,41535,0,1,1 +1774102159.495473,30.47,4,3992.50,59.58,1385.73,2332.67,0.00,4.106861,0.057193,6055684,1500357,120.902522,0.033997,45221297,30163699,0,0,41537,0,1,1 +1774102164.495589,33.00,4,3992.50,59.56,1383.03,2331.90,0.00,3518355768438.321289,3518355754823.081543,199,0,120.172649,0.042628,45233931,30166881,0,0,41539,0,1,1 +1774102169.495975,30.90,4,3992.50,59.87,1371.00,2343.95,0.00,3518165657859.457031,0.000000,21,0,119.761086,0.037562,45246403,30169646,0,0,41542,0,1,1 +1774102174.493991,30.52,4,3992.50,59.53,1384.18,2330.79,0.00,0.000000,0.000000,21,0,119.814310,0.030267,45258769,30171856,0,0,41544,0,1,1 +1774102179.496577,30.68,4,3992.50,59.57,1382.65,2332.28,0.00,0.000000,0.000000,21,0,119.706546,0.023761,45271236,30173440,0,0,41547,0,1,1 +1774102184.495333,30.44,4,3992.50,59.73,1376.41,2338.48,0.00,0.048059,0.000000,70,0,119.194001,0.021943,45283474,30175077,0,0,41550,0,1,1 +1774102189.496452,4.37,4,3992.50,54.51,1580.82,2134.20,0.00,3517650356931.291016,0.000000,21,0,62.075601,0.018024,45289925,30176293,0,0,41552,0,1,1 +1774102194.496579,3.86,4,3992.50,53.76,1614.29,2104.94,0.00,0.000000,0.000000,21,0,4.032032,0.025045,45291412,30177423,0,0,41554,0,1,1 +1774102199.495846,21.37,4,3992.50,54.38,1589.86,2129.28,0.00,70738.044296,84356.002762,6055696,1501374,34.242361,0.159113,45302825,30186028,0,0,41557,0,1,1 +1774102204.496389,3.21,4,3992.50,53.65,1618.57,2100.56,0.00,3518054501884.921387,3518054488268.435547,238,2,2.004485,0.019714,45303711,30186790,0,0,41559,0,1,1 +1774102209.496449,13.06,4,3992.50,53.86,1608.27,2108.91,0.00,3518395028250.557129,3518395028252.563965,21,0,0.032400,53.786272,45305893,30192772,0,0,41562,0,1,1 +1774102214.497305,30.75,4,3992.50,53.44,1616.49,2092.48,0.00,70711.468760,84468.256350,6054931,1502737,0.042872,123.053217,45309121,30205550,0,0,41564,0,1,1 +1774102219.491918,8.94,4,3992.50,53.86,1597.30,2108.75,0.00,3522232142525.970703,3522232128751.988770,21,0,0.017878,28.276068,45310161,30208575,0,0,41567,0,1,1 +1774102224.495978,12.63,4,3992.50,54.83,1562.54,2146.70,0.00,0.000000,0.000000,21,0,40.030810,0.027970,45314625,30210332,0,0,41570,0,1,1 +1774102229.495940,1.76,4,3992.50,53.92,1598.32,2110.91,0.00,0.000000,0.000000,21,0,0.007071,0.010504,45314786,30210525,0,0,41572,0,1,1 +1774102234.495715,0.75,4,3992.50,53.46,1616.25,2092.98,0.00,70743.350825,84553.801672,6055058,1503350,0.003878,0.007123,45314886,30210665,0,0,41574,0,1,1 +1774102239.496189,0.65,4,3992.50,53.28,1623.35,2085.89,0.00,3518103196973.271973,3518103183164.579102,199,0,0.003978,0.007243,45314994,30210813,0,0,41577,0,1,1 +1774102244.491939,0.65,4,3992.50,53.30,1622.59,2086.64,0.00,3521430964686.280273,0.000000,70,0,0.003423,0.005860,45315080,30210929,0,0,41579,0,1,1 +1774102249.494962,1.30,4,3992.50,53.39,1615.31,2090.28,0.00,3516310930826.390625,0.000000,21,0,0.003876,0.007128,45315180,30211070,0,0,41582,0,1,1 +1774102254.496166,0.60,4,3992.50,53.30,1618.74,2086.86,0.00,0.000000,0.000000,21,0,0.003915,0.007152,45315283,30211212,0,0,41584,0,1,1 +1774102259.494977,0.85,4,3992.50,53.14,1624.89,2080.70,0.00,70761.108938,84570.410015,6055832,1503810,0.003879,0.007134,45315383,30211353,0,0,41587,0,1,1 +1774102264.496823,0.60,4,3992.50,53.14,1624.91,2080.68,0.00,3517138193585.440430,3517138179784.347168,199,0,0.003970,0.007675,45315489,30211502,0,0,41590,0,1,1 +1774102269.496638,0.55,4,3992.50,53.15,1624.68,2080.92,0.00,1.363429,0.028321,237,247,0.003428,0.006037,45315576,30211621,0,0,41592,0,1,1 +1774102274.495512,0.55,4,3992.50,53.15,1624.70,2080.91,0.00,3519229446553.184082,3519229446554.646484,70,0,0.003941,0.007161,45315680,30211764,0,0,41595,0,1,1 +1774102279.491919,0.60,4,3992.50,53.16,1624.23,2081.38,0.00,0.127044,0.000000,199,0,0.002816,0.005622,45315755,30211873,0,0,41597,0,1,1 +1774102284.494328,0.80,4,3992.50,53.36,1614.06,2089.30,0.00,1.362722,0.028307,237,247,0.003700,0.006973,45315852,30212011,0,0,41599,0,1,1 +1774102289.491990,0.55,4,3992.50,53.36,1614.12,2089.29,0.00,70771.711446,84590.024258,6055058,1503797,0.003422,0.005868,45315938,30212128,0,0,41602,0,1,1 +1774102294.491892,0.60,4,3992.50,53.36,1614.14,2089.27,0.00,3518505946749.031738,3518505932938.418945,21,0,0.003878,0.007123,45316038,30212268,0,0,41604,0,1,1 +1774102299.491925,0.65,4,3992.50,53.36,1614.16,2089.25,0.00,0.000000,0.000000,21,0,0.003905,0.007151,45316140,30212410,0,0,41607,0,1,1 +1774102304.493661,10.49,4,3992.50,53.22,1617.23,2083.79,0.00,70719.728588,84555.286065,6055832,1504343,0.026675,40.056204,45317870,30217000,0,0,41610,0,1,1 +1774102309.496571,0.90,4,3992.50,53.48,1607.07,2093.82,0.00,3516390197472.412109,3516390183639.929688,199,0,0.001838,0.005094,45317927,30217099,0,0,41612,0,1,1 +1774102314.494446,0.75,4,3992.50,53.22,1617.03,2083.81,0.00,1.363959,0.028332,237,247,0.002277,0.006369,45317996,30217222,0,0,41615,0,1,1 +1774102319.495623,0.65,4,3992.50,53.22,1617.07,2083.81,0.00,3517609758724.028809,3517609758725.538574,21,0,0.002288,0.006355,45318066,30217344,0,0,41617,0,1,1 +1774102324.496083,0.80,4,3992.50,53.23,1616.86,2084.02,0.00,70737.767249,84577.025070,6055832,1504460,0.002888,0.007465,45318148,30217488,0,0,41619,0,1,1 +1774102329.491916,0.55,4,3992.50,53.14,1620.39,2080.49,0.00,3521371243259.211914,3521371229405.130859,238,2,0.001833,0.005747,45318204,30217591,0,0,41622,0,1,1 +1774102334.491902,0.65,4,3992.50,53.14,1620.18,2080.71,0.00,70742.462985,84591.048929,6055832,1504497,0.002289,0.006356,45318274,30217713,0,0,41624,0,1,1 +1774102339.496538,0.85,4,3992.50,53.30,1611.67,2086.62,0.00,3515178120187.995117,3515178106354.104980,199,0,0.002320,0.006399,45318347,30217839,0,0,41627,0,1,1 +1774102344.496105,0.60,4,3992.50,53.35,1609.43,2088.80,0.00,0.000000,0.000000,199,0,0.002352,0.006429,45318422,30217966,0,0,41630,0,1,1 +1774102349.493133,0.75,4,3992.50,53.38,1608.30,2089.87,0.00,0.000000,0.000000,199,0,0.003413,0.007224,45318508,30218105,0,0,41632,0,1,1 +1774102354.495045,0.60,4,3992.50,53.38,1608.31,2089.87,0.00,3517092087869.579590,0.000000,21,0,0.002728,0.005642,45318566,30218204,0,0,41634,0,1,1 +1774102359.496741,0.75,4,3992.50,53.34,1609.69,2088.53,0.00,70720.278813,84562.234184,6055832,1504574,0.001798,0.004996,45318621,30218302,0,0,41637,0,1,1 +1774102364.492422,0.85,4,3992.50,53.05,1621.09,2077.14,0.00,3521479192591.339844,3521479178731.204590,237,247,0.003700,0.007065,45318716,30218440,0,0,41639,0,1,1 +1774102369.491963,40.81,4,3992.50,59.67,1373.78,2336.28,0.00,3518760200806.806152,3518760200808.268555,70,0,93.147475,0.037660,45328793,30220894,0,0,41642,0,1,1 +1774102374.496375,30.55,4,3992.50,59.61,1376.34,2333.81,0.00,3515335701312.866211,0.000000,21,0,120.064304,0.030144,45341273,30222933,0,0,41644,0,1,1 +1774102379.493559,30.27,4,3992.50,59.69,1373.21,2336.94,0.00,0.048074,0.000000,70,0,118.233232,0.028923,45353415,30224962,0,0,41647,0,1,1 +1774102384.495405,30.75,4,3992.50,59.76,1370.43,2339.86,0.00,0.126906,0.000000,199,0,120.127447,0.032471,45365797,30227261,0,0,41650,0,1,1 +1774102389.494048,30.68,4,3992.50,59.52,1379.55,2330.49,0.00,70763.301138,84614.190685,6055832,1504803,118.812758,0.068539,45378235,30232491,0,0,41652,0,1,1 +1774102394.495425,30.74,4,3992.50,60.27,1350.23,2359.88,0.00,3517468342234.789551,3517468328391.598633,70,0,119.550910,0.070837,45390851,30237786,0,0,41655,0,1,1 +1774102399.494089,29.95,4,3992.50,59.62,1375.89,2334.30,0.00,0.000000,0.000000,70,0,119.398790,0.021687,45403274,30239253,0,0,41657,0,1,1 +1774102404.492089,30.32,4,3992.50,59.95,1356.94,2347.33,0.00,3519845237790.274902,0.000000,21,0,119.013971,0.025048,45415554,30241156,0,0,41659,0,1,1 +1774102409.491920,13.26,4,3992.50,53.32,1616.77,2087.60,0.00,0.000000,0.000000,21,0,97.149720,0.044636,45425832,30244377,0,0,41662,0,1,1 +1774102414.491946,1.00,4,3992.50,53.63,1604.60,2099.72,0.00,0.000000,0.000000,21,0,0.004318,0.006784,45425939,30244517,0,0,41664,0,1,1 +1774102419.493222,17.43,4,3992.50,53.94,1592.27,2112.04,0.00,2.006324,0.000195,238,2,24.148447,0.113002,45433942,30250570,0,0,41667,0,1,1 +1774102424.492101,11.58,4,3992.50,54.64,1565.15,2139.11,0.00,70754.154857,84610.681996,6055072,1505438,16.110272,0.079674,45439365,30254763,0,0,41670,0,1,1 +1774102429.496202,1.35,4,3992.50,54.18,1593.57,2121.24,0.00,3515553221556.218750,3515553207716.158203,21,0,0.004196,0.007884,45439476,30254916,0,0,41672,0,1,1 +1774102434.496395,22.93,4,3992.50,54.78,1565.31,2144.91,0.00,0.000000,0.000000,21,0,0.068892,94.555422,45444498,30265411,0,0,41675,0,1,1 +1774102439.496148,29.00,4,3992.50,53.94,1592.84,2111.99,0.00,70747.907480,84744.839240,6055847,1507340,0.031094,110.565205,45446815,30276605,0,0,41677,0,1,1 +1774102444.495048,1.25,4,3992.50,53.12,1626.05,2079.61,0.00,3519210883106.563965,3519210869105.736328,237,247,0.004384,0.007824,45446927,30276756,0,0,41679,0,1,1 +1774102449.495967,13.29,4,3992.50,55.21,1547.19,2161.72,0.00,3517790936512.643555,3517790936514.153809,21,0,40.060141,0.026835,45451413,30278280,0,0,41682,0,1,1 +1774102454.496237,0.90,4,3992.50,54.28,1583.80,2125.12,0.00,2.006727,0.000195,238,2,0.004600,0.009351,45451530,30278444,0,0,41684,0,1,1 +1774102459.496676,0.95,4,3992.50,53.72,1608.61,2103.21,0.00,3518128424158.194824,0.028123,237,247,0.003978,0.007243,45451638,30278592,0,0,41687,0,1,1 +1774102464.493695,0.70,4,3992.50,53.42,1620.23,2091.54,0.00,70797.579536,84848.866021,6055215,1507707,0.003880,0.007781,45451738,30278737,0,0,41690,0,1,1 +1774102469.496406,0.75,4,3992.50,53.44,1619.52,2092.26,0.00,3516529941081.232910,3516529927045.937988,237,247,0.003406,0.005852,45451823,30278853,0,0,41692,0,1,1 +1774102474.496417,1.00,4,3992.50,53.08,1633.38,2078.39,0.00,3518430044654.452637,3518430044655.914551,70,0,0.003878,0.007776,45451923,30278998,0,0,41695,0,1,1 +1774102479.495904,0.70,4,3992.50,53.08,1633.40,2078.38,0.00,1.490485,0.028323,237,247,0.003904,0.007154,45452025,30279140,0,0,41697,0,1,1 +1774102484.492503,0.60,4,3992.50,53.03,1635.35,2076.42,0.00,3520831953434.770508,3520831953436.281250,21,0,0.003901,0.007123,45452127,30279280,0,0,41699,0,1,1 +1774102489.496176,1.00,4,3992.50,53.32,1624.18,2087.73,0.00,70704.953623,84736.232082,6055215,1507825,0.003511,0.005949,45452219,30279404,0,0,41702,0,1,1 +1774102494.495986,0.65,4,3992.50,53.10,1632.60,2079.16,0.00,3518571407515.100586,3518571393472.802246,199,0,0.003878,0.007767,45452319,30279548,0,0,41704,0,1,1 +1774102499.496380,0.60,4,3992.50,53.10,1632.63,2079.12,0.00,70755.257095,84791.913976,6055989,1508174,0.003952,0.007172,45452424,30279692,0,0,41707,0,1,1 +1774102504.494142,0.95,4,3992.50,53.17,1629.92,2081.81,0.00,3520012619740.520996,3520012605694.639648,238,2,0.003880,0.007136,45452524,30279833,0,0,41710,0,1,1 +1774102509.494048,0.65,4,3992.50,53.18,1629.75,2082.01,0.00,3518503024591.417969,3518503024593.376953,70,0,0.003428,0.005863,45452611,30279950,0,0,41712,0,1,1 +1774102514.494380,0.70,4,3992.50,52.99,1636.93,2074.83,0.00,3518203944925.195801,0.000000,21,0,0.003878,0.007132,45452711,30280091,0,0,41715,0,1,1 +1774102519.496070,1.00,4,3992.50,53.39,1612.87,2090.30,0.00,70737.107931,84770.194412,6055990,1508400,0.003889,0.007120,45452812,30280231,0,0,41717,0,1,1 +1774102524.494736,1.35,4,3992.50,53.31,1615.86,2087.18,0.00,3519375832379.071777,3519375818337.497559,21,0,0.011398,3.217907,45453393,30281009,0,0,41719,0,1,1 +1774102529.492007,10.31,4,3992.50,53.19,1618.12,2082.52,0.00,70799.668599,84879.290915,6055991,1508709,0.020126,36.883000,45454770,30285030,0,0,41722,0,1,1 +1774102534.496039,0.95,4,3992.50,53.01,1625.29,2075.36,0.00,3515601880439.488281,3515601866378.892578,21,0,0.001830,0.005110,45454826,30285130,0,0,41724,0,1,1 +1774102539.495956,0.65,4,3992.50,53.25,1615.84,2084.76,0.00,0.000000,0.000000,21,0,0.002297,0.006374,45454897,30285254,0,0,41727,0,1,1 +1774102544.491839,0.75,4,3992.50,53.23,1616.44,2084.16,0.00,70815.217772,84902.902303,6055217,1508509,0.002291,0.006371,45454967,30285377,0,0,41730,0,1,1 +1774102549.496286,1.10,4,3992.50,53.36,1610.11,2088.97,0.00,4.105626,0.116693,6055991,1508785,0.001829,0.005084,45455023,30285475,0,0,41732,0,1,1 +1774102554.492620,1.05,4,3992.50,53.28,1612.89,2086.19,0.00,3521018644067.664551,3521018629983.239746,238,2,0.002061,0.005724,45455086,30285585,0,0,41735,0,1,1 +1774102559.495210,1.10,4,3992.50,53.28,1612.89,2086.19,0.00,3516615694789.945801,3516615694791.952148,21,0,0.002084,0.005763,45455151,30285698,0,0,41737,0,1,1 +1774102564.496640,1.00,4,3992.50,53.29,1612.66,2086.42,0.00,0.000000,0.000000,21,0,0.002339,0.006416,45455225,30285824,0,0,41739,0,1,1 +1774102569.495964,1.35,4,3992.50,53.23,1614.91,2084.16,0.00,0.175024,0.000000,199,0,0.002373,0.006468,45455302,30285954,0,0,41742,0,1,1 +1774102574.496081,0.85,4,3992.50,53.23,1614.92,2084.16,0.00,1.363347,0.028320,237,247,0.002444,0.006482,45455382,30286086,0,0,41744,0,1,1 +1774102579.496765,0.95,4,3992.50,53.28,1623.32,2085.87,0.00,3517955830802.736328,3517955830804.246094,21,0,0.001831,0.005742,45455438,30286189,0,0,41747,0,1,1 +1774102584.495515,0.80,4,3992.50,53.28,1622.98,2086.09,0.00,0.048059,0.000000,70,0,0.002289,0.006368,45455508,30286312,0,0,41750,0,1,1 +1774102589.496432,0.95,4,3992.50,53.09,1630.39,2078.68,0.00,70747.990340,84823.683469,6055991,1508909,0.002301,0.006355,45455579,30286434,0,0,41752,0,1,1 +1774102594.495439,37.96,4,3992.50,59.86,1372.57,2343.71,0.00,0.000000,0.008986,6055991,1508943,70.320093,0.038350,45463124,30288845,0,0,41755,0,1,1 +1774102599.496989,31.80,4,3992.50,60.07,1365.07,2351.84,0.00,3517346461041.341797,3517346446967.469727,21,0,118.735409,0.041255,45475470,30291890,0,0,41757,0,1,1 +1774102604.495819,31.05,4,3992.50,59.55,1385.30,2331.49,0.00,0.048058,0.000000,70,0,119.612622,0.075833,45488026,30297626,0,0,41759,0,1,1 +1774102609.492588,30.88,4,3992.50,59.70,1379.26,2337.36,0.00,0.127035,0.000000,199,0,118.866612,0.085139,45500688,30304067,0,0,41762,0,1,1 +1774102614.493753,31.27,4,3992.50,59.64,1386.04,2334.93,0.00,1.363061,0.028314,237,247,119.560874,0.087663,45513290,30310855,0,0,41764,0,1,1 +1774102619.492580,30.19,4,3992.50,59.68,1384.45,2336.42,0.00,3519262577310.851562,3519262577312.313965,70,0,119.218632,0.092565,45525913,30317883,0,0,41767,0,1,1 +1774102624.496191,30.77,4,3992.50,59.68,1384.32,2336.57,0.00,3515898284505.835938,0.000000,21,0,119.310421,0.108392,45538793,30326095,0,0,41770,0,1,1 +1774102629.496281,30.56,4,3992.50,59.69,1383.99,2336.84,0.00,1.538351,0.028320,237,247,119.797563,0.114393,45551757,30334837,0,0,41772,0,1,1 +1774102634.491915,19.41,4,3992.50,59.59,1387.75,2333.23,0.00,70821.310223,84913.695179,6055992,1509192,118.702169,0.114977,45564596,30343654,0,0,41775,0,1,1 +1774102639.492114,1.46,4,3992.50,54.20,1600.17,2121.95,0.00,0.090621,0.159759,6056002,1509238,1.607864,0.008529,45564908,30343940,0,0,41777,0,1,1 +1774102644.495378,16.15,4,3992.50,53.85,1613.75,2108.29,0.00,3516142126841.685059,3516142112770.222656,238,2,18.121129,0.095880,45571091,30348643,0,0,41779,0,1,1 +1774102649.491922,14.94,4,3992.50,53.48,1628.35,2093.69,0.00,3520870338720.773438,3520870338722.781738,21,0,22.138122,0.092854,45577972,30353828,0,0,41782,0,1,1 +1774102654.491980,1.00,4,3992.50,53.52,1626.70,2095.33,0.00,2.006813,0.000195,238,2,0.007064,0.008691,45578115,30353997,0,0,41784,0,1,1 +1774102659.496584,1.45,4,3992.50,53.78,1616.26,2105.72,0.00,3515200297150.545898,0.028099,237,247,0.005703,0.009730,45578240,30354177,0,0,41787,0,1,1 +1774102664.493342,0.80,4,3992.50,53.78,1616.32,2105.71,0.00,3520719745711.938965,3520719745713.401855,70,0,0.003652,0.006490,45578333,30354305,0,0,41790,0,1,1 +1774102669.496407,1.25,4,3992.50,53.79,1613.87,2105.85,0.00,3516281659306.875977,0.000000,21,0,0.003678,0.006523,45578428,30354436,0,0,41792,0,1,1 +1774102674.496617,0.70,4,3992.50,53.79,1613.88,2105.84,0.00,70754.033154,84837.766796,6055228,1510641,0.003878,0.007132,45578528,30354577,0,0,41795,0,1,1 +1774102679.496042,1.10,4,3992.50,53.79,1613.90,2105.82,0.00,3518841677537.096680,3518841663451.105469,70,0,0.003878,0.007123,45578628,30354717,0,0,41797,0,1,1 +1774102684.492668,0.65,4,3992.50,53.60,1621.32,2098.40,0.00,1.491338,0.028339,237,247,0.004007,0.007270,45578738,30354866,0,0,41799,0,1,1 +1774102689.496412,0.85,4,3992.50,53.60,1621.34,2098.38,0.00,0.468107,3515804964380.195312,238,2,0.004534,0.006488,45578847,30354998,0,0,41802,0,1,1 +1774102694.496553,0.70,4,3992.50,53.31,1632.48,2087.24,0.00,70752.986820,84839.056208,6055228,1510773,0.005612,0.008445,45578972,30355153,0,0,41804,0,1,1 +1774102699.496721,1.10,4,3992.50,53.54,1626.09,2096.08,0.00,3518319070376.375488,3518319056290.876465,237,247,0.003909,0.007157,45579074,30355296,0,0,41807,0,1,1 +1774102704.496501,0.50,4,3992.50,53.55,1625.31,2096.77,0.00,0.000000,0.000000,237,247,0.003953,0.007173,45579179,30355440,0,0,41810,0,1,1 +1774102709.495974,0.55,4,3992.50,53.55,1625.34,2096.75,0.00,0.000000,0.000000,237,247,0.003433,0.005856,45579266,30355556,0,0,41812,0,1,1 +1774102714.496810,0.65,4,3992.50,53.55,1625.36,2096.71,0.00,3517849515534.457031,3517849515535.966797,21,0,0.003877,0.007775,45579366,30355701,0,0,41815,0,1,1 +1774102719.496377,0.65,4,3992.50,53.48,1628.04,2094.03,0.00,0.000000,0.000000,21,0,0.003886,0.007131,45579467,30355842,0,0,41817,0,1,1 +1774102724.493208,0.50,4,3992.50,53.50,1627.52,2094.51,0.00,0.175111,0.000000,199,0,0.003880,0.007127,45579567,30355982,0,0,41819,0,1,1 +1774102729.496005,0.85,4,3992.50,53.59,1631.49,2098.18,0.00,1.830812,0.000195,238,2,0.003888,0.007116,45579668,30356122,0,0,41822,0,1,1 +1774102734.495875,0.55,4,3992.50,53.60,1631.29,2098.40,0.00,3518528493584.479004,3518528493586.437988,70,0,0.003446,0.005899,45579756,30356241,0,0,41824,0,1,1 +1774102739.496800,0.60,4,3992.50,53.60,1631.30,2098.38,0.00,1.490056,0.028315,237,247,0.003902,0.007162,45579858,30356384,0,0,41827,0,1,1 +1774102744.496461,0.65,4,3992.50,53.60,1631.30,2098.38,0.00,70764.374892,84847.662587,6056002,1511424,0.003247,0.006896,45579945,30356518,0,0,41830,0,1,1 +1774102749.491893,20.52,4,3992.50,54.15,1606.29,2120.12,0.00,3521654811438.021973,3521654797344.148438,199,0,0.036431,79.194396,45582494,30365113,0,0,41832,0,1,1 +1774102754.491917,32.11,4,3992.50,58.14,1445.96,2276.47,0.00,0.000000,0.000000,199,0,0.036715,118.363285,45585350,30377280,0,0,41835,0,1,1 +1774102759.494870,4.01,4,3992.50,53.69,1604.39,2101.96,0.00,3516360362763.448242,0.000000,70,0,0.006959,7.616362,45585696,30378265,0,0,41837,0,1,1 +1774102764.495164,13.95,4,3992.50,58.36,1423.12,2285.05,0.00,70773.512782,85042.131554,6056147,1512825,40.072668,0.020946,45590071,30379578,0,0,41839,0,1,1 +1774102769.496733,11.26,4,3992.50,53.57,1608.06,2097.58,0.00,0.002343,28.140877,6056150,1513143,0.028493,40.059110,45591801,30384222,0,0,41842,0,1,1 +1774102774.493711,0.80,4,3992.50,53.39,1615.20,2090.44,0.00,3520564785802.411621,3520564771494.698242,237,247,0.002748,0.007319,45591884,30384362,0,0,41844,0,1,1 +1774102779.494572,0.55,4,3992.50,53.42,1614.23,2091.41,0.00,70759.892046,85066.664780,6055376,1513019,0.001839,0.005750,45591941,30384466,0,0,41847,0,1,1 +1774102784.494705,0.70,4,3992.50,53.23,1621.64,2084.00,0.00,0.000000,0.007031,6055376,1513024,0.002264,0.006366,45592009,30384589,0,0,41850,0,1,1 +1774102789.491968,1.10,4,3992.50,53.36,1603.43,2089.05,0.00,4.111528,0.146565,6056150,1513303,0.002290,0.006360,45592079,30384711,0,0,41852,0,1,1 +1774102794.496151,0.65,4,3992.50,53.35,1603.34,2088.85,0.00,3515495765688.912109,3515495751395.591309,237,247,0.002299,0.006379,45592150,30384835,0,0,41855,0,1,1 +1774102799.496401,0.60,4,3992.50,53.35,1603.34,2088.84,0.00,70772.653489,85083.233824,6056150,1513345,0.001831,0.005089,45592206,30384933,0,0,41857,0,1,1 +1774102804.496406,0.75,4,3992.50,53.17,1610.52,2081.67,0.00,3518433401529.205078,3518433387219.436523,21,0,0.002276,0.006356,45592275,30385055,0,0,41859,0,1,1 +1774102809.496561,0.60,4,3992.50,53.16,1610.68,2081.51,0.00,0.048045,0.000000,70,0,0.002322,0.006405,45592348,30385181,0,0,41862,0,1,1 +1774102814.496288,0.55,4,3992.50,53.16,1610.68,2081.50,0.00,3518629978433.972656,0.000000,21,0,0.002477,0.006537,45592432,30385315,0,0,41864,0,1,1 +1774102819.496729,1.00,4,3992.50,53.15,1603.49,2080.82,0.00,0.000000,0.000000,21,0,0.002153,0.005807,45592501,30385432,0,0,41867,0,1,1 +1774102824.496666,0.65,4,3992.50,53.15,1602.90,2080.84,0.00,0.000000,0.000000,21,0,0.002073,0.005745,45592565,30385544,0,0,41870,0,1,1 +1774102829.496836,0.60,4,3992.50,53.15,1602.91,2080.84,0.00,70771.239120,85084.795561,6055386,1513251,0.002289,0.006356,45592635,30385666,0,0,41872,0,1,1 +1774102834.492004,22.41,4,3992.50,58.89,1383.98,2305.71,0.00,3521840842324.675781,3521840827994.777344,238,2,33.916549,0.029936,45596631,30387459,0,0,41874,0,1,1 +1774102839.494389,34.91,4,3992.50,59.17,1375.48,2316.82,0.00,3516759916263.203125,3516759916265.161133,70,0,119.430296,0.047596,45609482,30390999,0,0,41877,0,1,1 +1774102844.496114,30.24,4,3992.50,59.45,1364.86,2327.43,0.00,0.126909,0.000000,199,0,118.821534,0.049693,45622666,30394608,0,0,41879,0,1,1 +1774102849.492287,31.07,4,3992.50,59.53,1362.14,2330.77,0.00,0.000000,0.000000,199,0,119.436308,0.060328,45636047,30399086,0,0,41882,0,1,1 +1774102854.491904,30.81,4,3992.50,59.26,1372.52,2320.32,0.00,0.000000,0.000000,199,0,119.558167,0.067452,45649478,30404145,0,0,41884,0,1,1 +1774102859.495837,31.17,4,3992.50,59.24,1373.62,2319.24,0.00,3515671796916.526367,0.000000,21,0,119.365959,0.075053,45663716,30409928,0,0,41887,0,1,1 +1774102864.491869,30.99,4,3992.50,59.18,1375.69,2317.16,0.00,0.000000,0.000000,21,0,119.298723,0.088991,45678281,30416619,0,0,41890,0,1,1 +1774102869.491904,30.68,4,3992.50,59.24,1373.32,2319.51,0.00,0.000000,0.000000,21,0,119.281715,0.081829,45692315,30422785,0,0,41892,0,1,1 +1774102874.494931,27.79,4,3992.50,59.25,1373.16,2319.76,0.00,0.174894,0.000000,199,0,119.712592,0.070909,45705951,30428212,0,0,41895,0,1,1 +1774102879.495381,2.21,4,3992.50,54.30,1566.92,2125.93,0.00,70767.247517,85080.615975,6055401,1513583,37.534828,0.026215,45710264,30429971,0,0,41897,0,1,1 +1774102884.495610,10.00,4,3992.50,54.01,1578.11,2114.71,0.00,3518275694992.635254,3518275680678.761230,70,0,14.088432,0.066824,45714862,30433335,0,0,41899,0,1,1 +1774102889.495900,19.76,4,3992.50,54.22,1569.71,2123.03,0.00,1.958675,0.000195,238,2,26.175691,0.120324,45723349,30439678,0,0,41902,0,1,1 +1774102894.496494,1.00,4,3992.50,53.52,1597.41,2095.32,0.00,3518019615027.662109,3518019615029.668945,21,0,0.007110,0.010154,45723514,30439881,0,0,41904,0,1,1 +1774102899.495972,0.65,4,3992.50,53.18,1610.53,2082.20,0.00,0.175018,0.000000,199,0,0.003886,0.007141,45723615,30440023,0,0,41907,0,1,1 +1774102904.495999,0.90,4,3992.50,53.32,1605.27,2087.45,0.00,0.000000,0.000000,199,0,0.003558,0.005867,45723703,30440140,0,0,41910,0,1,1 +1774102909.496814,1.00,4,3992.50,53.53,1599.98,2095.72,0.00,0.000000,0.000000,199,0,0.003877,0.007765,45723803,30440284,0,0,41912,0,1,1 +1774102914.491989,0.65,4,3992.50,53.53,1599.66,2095.89,0.00,70841.993895,85172.056806,6055402,1515280,0.003882,0.007139,45723903,30440425,0,0,41915,0,1,1 +1774102919.496227,0.65,4,3992.50,53.44,1603.25,2092.30,0.00,3515457791148.400391,3515457776842.956543,237,247,0.002960,0.004613,45723975,30440519,0,0,41917,0,1,1 +1774102924.496101,0.85,4,3992.50,53.34,1607.04,2088.50,0.00,3518525602689.310547,3518525602690.772949,70,0,0.004624,0.008532,45724099,30440701,0,0,41919,0,1,1 +1774102929.494931,0.55,4,3992.50,53.36,1606.57,2088.98,0.00,3519260458220.510254,0.000000,21,0,0.003887,0.007142,45724200,30440843,0,0,41922,0,1,1 +1774102934.496216,0.70,4,3992.50,53.44,1603.18,2092.37,0.00,2.006320,0.000195,238,2,0.003877,0.007121,45724300,30440983,0,0,41924,0,1,1 +1774102939.496582,1.00,4,3992.50,53.47,1607.17,2093.59,0.00,3518179627470.675293,3518179627472.682129,21,0,0.003495,0.005905,45724391,30441103,0,0,41927,0,1,1 +1774102944.496832,0.60,4,3992.50,53.46,1607.73,2092.99,0.00,1.538302,0.028319,237,247,0.004003,0.007134,45724492,30441244,0,0,41930,0,1,1 +1774102949.495962,0.60,4,3992.50,53.45,1608.02,2092.70,0.00,0.468538,3519049064536.403320,238,2,0.003906,0.007124,45724594,30441384,0,0,41932,0,1,1 +1774102954.496283,0.85,4,3992.50,53.45,1608.03,2092.68,0.00,70771.356068,85084.723688,6056176,1515815,0.005012,0.008332,45724704,30441539,0,0,41934,0,1,1 +1774102959.491921,0.60,4,3992.50,53.45,1607.84,2092.88,0.00,3521509719427.018066,3521509705102.191406,70,0,0.003620,0.006403,45724796,30441667,0,0,41937,0,1,1 +1774102964.496182,0.65,4,3992.50,53.41,1609.63,2091.04,0.00,1.957121,0.000195,238,2,0.003875,0.007116,45724896,30441807,0,0,41939,0,1,1 +1774102969.492742,1.05,4,3992.50,53.59,1603.48,2098.11,0.00,70824.625614,85148.911819,6056176,1515951,0.003912,0.007162,45724998,30441950,0,0,41942,0,1,1 +1774102974.495916,0.65,4,3992.50,53.27,1615.15,2085.52,0.00,3516204996321.005371,3516204982017.485840,199,0,0.003896,0.007757,45725100,30442094,0,0,41944,0,1,1 +1774102979.492079,0.65,4,3992.50,53.27,1614.93,2085.74,0.00,1.833243,0.000195,238,2,0.003423,0.005870,45725186,30442211,0,0,41947,0,1,1 +1774102984.495860,16.71,4,3992.50,53.81,1591.69,2106.65,0.00,0.000000,0.000000,238,2,0.033929,64.454466,45727436,30449304,0,0,41950,0,1,1 +1774102989.496431,31.28,4,3992.50,54.02,1576.76,2114.92,0.00,0.000000,0.000000,238,2,0.038367,120.017715,45730200,30462207,0,0,41952,0,1,1 +1774102994.496011,6.68,4,3992.50,53.79,1585.75,2106.00,0.00,3518732177865.945801,3518732177867.952637,21,0,0.011465,20.584660,45730976,30464588,0,0,41955,0,1,1 +1774102999.495112,13.70,4,3992.50,54.51,1561.08,2134.11,0.00,0.000000,0.000000,21,0,40.072225,0.030285,45735388,30466383,0,0,41957,0,1,1 +1774103004.496233,11.81,4,3992.50,53.77,1591.71,2105.32,0.00,1.538034,0.028314,237,247,0.035653,40.060414,45737769,30470943,0,0,41959,0,1,1 +1774103009.496049,0.80,4,3992.50,53.44,1604.81,2092.22,0.00,3518567055265.590820,3518567055266.925781,199,0,0.003690,0.009451,45737875,30471122,0,0,41962,0,1,1 +1774103014.495801,0.65,4,3992.50,53.46,1604.09,2092.93,0.00,3518611660945.452148,0.000000,21,0,0.002314,0.006356,45737947,30471244,0,0,41964,0,1,1 +1774103019.496743,0.70,4,3992.50,53.46,1603.86,2093.17,0.00,70777.066574,85313.656177,6055573,1517686,0.001831,0.005098,45738003,30471343,0,0,41967,0,1,1 +1774103024.494118,0.70,4,3992.50,53.28,1611.03,2086.00,0.00,3520285392124.166016,3520285377577.153809,70,0,0.002410,0.006380,45738074,30471467,0,0,41970,0,1,1 +1774103029.496809,0.60,4,3992.50,53.28,1611.05,2085.98,0.00,3516544185630.378906,0.000000,21,0,0.002313,0.006384,45738146,30471591,0,0,41972,0,1,1 +1774103034.495533,1.15,4,3992.50,53.80,1591.62,2106.27,0.00,1.538771,0.028328,237,247,0.001732,0.005106,45738203,30471690,0,0,41975,0,1,1 +1774103039.491987,0.65,4,3992.50,53.80,1591.62,2106.26,0.00,3520934633872.383789,3520934633873.895020,21,0,0.001983,0.005793,45738262,30471796,0,0,41977,0,1,1 +1774103044.495772,0.65,4,3992.50,53.75,1593.60,2104.33,0.00,70736.850514,85271.459159,6055573,1517770,0.002320,0.006390,45738335,30471921,0,0,41979,0,1,1 +1774103049.495918,0.65,4,3992.50,53.77,1592.62,2105.31,0.00,3518334012909.758301,3518333998363.064453,237,247,0.002446,0.006546,45738417,30472056,0,0,41982,0,1,1 +1774103054.494744,0.70,4,3992.50,53.77,1592.63,2105.30,0.00,3519263548855.397949,3519263548856.908691,21,0,0.002414,0.006458,45738495,30472186,0,0,41984,0,1,1 +1774103059.496232,2.00,4,3992.50,53.62,1593.80,2099.36,0.00,0.000000,0.000000,21,0,0.001831,0.005097,45738551,30472285,0,0,41987,0,1,1 +1774103064.491902,0.65,4,3992.50,53.61,1594.04,2098.99,0.00,0.000000,0.000000,21,0,0.002303,0.006359,45738622,30472407,0,0,41990,0,1,1 +1774103069.496328,25.26,4,3992.50,59.39,1374.06,2325.20,0.00,0.174845,0.000000,199,0,41.870487,0.034527,45743224,30474467,0,0,41992,0,1,1 +1774103074.492363,34.91,4,3992.50,59.43,1374.69,2326.65,0.00,3521229882217.692383,0.000000,21,0,118.347319,0.065031,45755429,30479217,0,0,41995,0,1,1 +1774103079.491960,30.56,4,3992.50,59.46,1373.21,2328.12,0.00,2.006998,0.000195,238,2,118.259857,0.048917,45767541,30483011,0,0,41997,0,1,1 +1774103084.492685,31.05,4,3992.50,59.67,1365.25,2336.11,0.00,3517927350745.150879,3517927350747.157715,21,0,119.729052,0.053066,45780202,30486991,0,0,41999,0,1,1 +1774103089.491906,31.14,4,3992.50,59.40,1375.93,2325.47,0.00,0.000000,0.000000,21,0,118.818723,0.066376,45792942,30492073,0,0,42002,0,1,1 +1774103094.495533,29.70,4,3992.50,60.45,1334.58,2366.88,0.00,70743.179845,85274.650218,6056347,1518360,109.347886,0.055874,45805091,30496409,0,0,42004,0,1,1 +1774103099.496536,29.56,4,3992.50,60.54,1330.55,2370.13,0.00,3517732029106.307129,3517732014567.208984,21,0,117.301068,0.034891,45816876,30499065,0,0,42007,0,1,1 +1774103104.496541,31.46,4,3992.50,59.94,1353.81,2346.89,0.00,0.048047,0.000000,70,0,122.716339,0.047673,45830449,30502680,0,0,42010,0,1,1 +1774103109.492410,27.99,4,3992.50,59.85,1357.57,2343.20,0.00,3521346432622.699219,0.000000,21,0,121.693115,0.036556,45843381,30505454,0,0,42012,0,1,1 +1774103114.492639,0.85,4,3992.50,53.83,1593.28,2107.50,0.00,0.174992,0.000000,199,0,38.291613,0.013039,45847517,30506396,0,0,42015,0,1,1 +1774103119.495831,12.68,4,3992.50,54.13,1580.42,2119.25,0.00,70745.260703,85282.641983,6055593,1518546,16.097979,0.078201,45852852,30510349,0,0,42017,0,1,1 +1774103124.496327,14.62,4,3992.50,54.04,1583.85,2115.77,0.00,3518088805788.910156,3518088791242.352051,237,247,20.133742,0.099759,45859696,30515532,0,0,42019,0,1,1 +1774103129.496407,4.12,4,3992.50,54.04,1583.70,2115.87,0.00,3518380458108.723633,3518380458110.058594,199,0,4.023264,0.019664,45860937,30516490,0,0,42022,0,1,1 +1774103134.496590,1.05,4,3992.50,53.80,1593.30,2106.32,0.00,3518308390243.286133,0.000000,21,0,0.004406,0.008373,45861050,30516652,0,0,42024,0,1,1 +1774103139.493415,0.70,4,3992.50,53.35,1610.83,2088.81,0.00,0.000000,0.000000,21,0,0.003889,0.007145,45861151,30516794,0,0,42027,0,1,1 +1774103144.491934,0.60,4,3992.50,53.40,1608.77,2090.88,0.00,0.000000,0.000000,21,0,0.003421,0.005867,45861237,30516911,0,0,42030,0,1,1 +1774103149.491996,1.10,4,3992.50,53.60,1601.30,2098.49,0.00,0.000000,0.000000,21,0,0.003878,0.007110,45861337,30517050,0,0,42032,0,1,1 +1774103154.495389,0.60,4,3992.50,53.56,1602.45,2097.18,0.00,0.048014,0.000000,70,0,0.003875,0.007105,45861437,30517189,0,0,42034,0,1,1 +1774103159.495860,0.90,4,3992.50,53.51,1604.69,2094.96,0.00,0.000000,0.000000,70,0,0.003898,0.007140,45861539,30517331,0,0,42037,0,1,1 +1774103164.496693,0.60,4,3992.50,53.73,1596.18,2103.46,0.00,1.490084,0.028316,237,247,0.003546,0.005997,45861635,30517456,0,0,42039,0,1,1 +1774103169.496524,0.65,4,3992.50,53.72,1596.20,2103.45,0.00,0.000000,0.000000,237,247,0.003878,0.007133,45861735,30517597,0,0,42042,0,1,1 +1774103174.491929,0.60,4,3992.50,53.72,1596.21,2103.43,0.00,0.000000,0.000000,237,247,0.003869,0.007773,45861834,30517741,0,0,42044,0,1,1 +1774103179.492007,0.95,4,3992.50,53.58,1607.06,2097.90,0.00,3518382457924.928711,3518382457926.391113,70,0,0.003940,0.007172,45861938,30517885,0,0,42047,0,1,1 +1774103184.496489,0.65,4,3992.50,53.39,1614.80,2090.18,0.00,3515286491347.707031,0.000000,21,0,0.003425,0.005868,45862025,30518003,0,0,42050,0,1,1 +1774103189.496452,0.75,4,3992.50,53.19,1622.45,2082.54,0.00,1.538390,0.028321,237,247,0.003272,0.006885,45862114,30518136,0,0,42052,0,1,1 +1774103194.491916,0.65,4,3992.50,53.27,1619.13,2085.81,0.00,0.468882,3521631945343.188477,238,2,0.003882,0.007139,45862214,30518277,0,0,42055,0,1,1 +1774103199.496172,0.65,4,3992.50,53.27,1619.20,2085.79,0.00,70728.396949,85266.272779,6055593,1520310,0.003875,0.007116,45862314,30518417,0,0,42057,0,1,1 +1774103204.491919,0.60,4,3992.50,53.28,1618.98,2086.01,0.00,3521432565121.275879,3521432550559.135254,237,247,0.003431,0.005868,45862401,30518534,0,0,42059,0,1,1 +1774103209.496820,0.95,4,3992.50,53.37,1621.44,2089.44,0.00,70723.847711,85255.366036,6056367,1520625,0.003887,0.007125,45862502,30518675,0,0,42062,0,1,1 +1774103214.496199,0.70,4,3992.50,53.37,1621.20,2089.39,0.00,3518874242503.387207,0.041314,6055593,1520449,0.003879,0.007123,45862602,30518815,0,0,42064,0,1,1 +1774103219.495429,0.70,4,3992.50,53.37,1621.21,2089.38,0.00,3518979175604.357422,3518979161053.712402,21,0,0.003879,0.007133,45862702,30518956,0,0,42067,0,1,1 +1774103224.494088,13.07,4,3992.50,53.82,1601.80,2107.03,0.00,70809.601468,85378.820764,6055593,1520668,0.037605,52.303720,45865330,30525177,0,0,42070,0,1,1 +1774103229.493187,30.73,4,3992.50,53.94,1589.14,2111.91,0.00,3519071478175.339355,3519071463607.354492,70,0,0.044559,118.699776,45868682,30537721,0,0,42072,0,1,1 +1774103234.496678,10.02,4,3992.50,53.89,1591.09,2110.00,0.00,1.957422,0.000195,238,2,0.016315,34.125275,45869880,30541474,0,0,42075,0,1,1 +1774103239.492534,10.34,4,3992.50,58.60,1409.73,2294.27,0.00,70868.042332,85615.181139,6056493,1522106,7.625955,0.015576,45871020,30542269,0,0,42077,0,1,1 +1774103244.496771,6.37,4,3992.50,54.84,1553.68,2146.95,0.00,0.000000,0.118454,6056493,1522220,32.426959,0.022367,45874629,30543506,0,0,42079,0,1,1 +1774103249.494377,11.14,4,3992.50,53.20,1615.00,2083.09,0.00,3520121962782.593262,3520121948042.461914,70,0,0.026823,40.090366,45876441,30548135,0,0,42082,0,1,1 +1774103254.496397,0.80,4,3992.50,53.24,1613.52,2084.59,0.00,70782.675515,85543.595267,6056493,1522653,0.003523,0.007203,45876519,30548266,0,0,42084,0,1,1 +1774103259.496001,0.60,4,3992.50,53.25,1613.28,2084.83,0.00,3518715848516.817871,3518715833748.814453,21,0,0.002486,0.006899,45876595,30548400,0,0,42087,0,1,1 +1774103264.495400,0.75,4,3992.50,53.44,1605.66,2092.39,0.00,0.048053,0.000000,70,0,0.002289,0.006367,45876665,30548523,0,0,42090,0,1,1 +1774103269.496174,0.90,4,3992.50,53.85,1586.83,2108.39,0.00,0.126933,0.000000,199,0,0.002314,0.006386,45876737,30548647,0,0,42092,0,1,1 +1774103274.495968,0.65,4,3992.50,53.76,1590.33,2104.73,0.00,1.831911,0.000195,238,2,0.001831,0.005099,45876793,30548746,0,0,42095,0,1,1 +1774103279.496587,0.80,4,3992.50,53.76,1590.36,2104.73,0.00,3518002079165.403320,3518002079167.235352,199,0,0.002289,0.006355,45876863,30548868,0,0,42097,0,1,1 +1774103284.496389,0.55,4,3992.50,53.76,1590.37,2104.73,0.00,70809.826812,85588.044781,6055719,1522500,0.002289,0.006356,45876933,30548990,0,0,42099,0,1,1 +1774103289.492871,0.75,4,3992.50,53.76,1590.38,2104.71,0.00,3520914546503.061035,3520914531715.197266,21,0,0.003526,0.007129,45877035,30549136,0,0,42102,0,1,1 +1774103294.495977,0.70,4,3992.50,53.79,1588.93,2106.11,0.00,0.048017,0.000000,70,0,0.003407,0.006792,45877131,30549274,0,0,42104,0,1,1 +1774103299.493220,0.95,4,3992.50,53.80,1592.37,2106.34,0.00,70850.320041,85631.951492,6056493,1522775,0.001965,0.005236,45877196,30549384,0,0,42107,0,1,1 +1774103304.495493,0.60,4,3992.50,53.80,1592.26,2106.30,0.00,3516838895162.065918,3516838880395.166992,199,0,0.002288,0.006363,45877266,30549507,0,0,42110,0,1,1 +1774103309.495217,0.65,4,3992.50,53.80,1592.27,2106.30,0.00,70810.933701,85589.506126,6055719,1522592,0.002289,0.007000,45877336,30549633,0,0,42112,0,1,1 +1774103314.495708,26.12,4,3992.50,59.77,1364.01,2340.28,0.00,3518091787410.208496,3518091772634.028809,70,0,47.744942,0.031046,45882624,30551439,0,0,42115,0,1,1 +1774103319.495981,33.10,4,3992.50,59.42,1379.48,2326.48,0.00,3518244579363.240723,0.000000,21,0,118.651311,0.057804,45895309,30555765,0,0,42117,0,1,1 +1774103324.495527,29.92,4,3992.50,59.67,1369.73,2336.23,0.00,2.007018,0.000195,238,2,119.564001,0.060409,45908614,30560455,0,0,42119,0,1,1 +1774103329.493331,30.14,4,3992.50,60.23,1352.23,2357.99,0.00,70836.313562,85622.653584,6055719,1522779,118.942224,0.061953,45922127,30565011,0,0,42122,0,1,1 +1774103334.494118,30.85,4,3992.50,60.10,1355.12,2352.86,0.00,3517883255800.339844,3517883241024.780762,70,0,119.766728,0.055929,45935544,30569296,0,0,42124,0,1,1 +1774103339.496635,29.47,4,3992.50,59.78,1367.54,2340.46,0.00,3516666544771.193848,0.000000,21,0,119.284941,0.052262,45948793,30573310,0,0,42127,0,1,1 +1774103344.496245,29.21,4,3992.50,59.64,1372.77,2335.21,0.00,70812.726970,85591.811950,6055719,1522851,119.237932,0.059315,45962406,30577779,0,0,42130,0,1,1 +1774103349.495545,29.62,4,3992.50,60.00,1358.83,2349.11,0.00,3518929756571.597656,3518929741791.548828,70,0,119.858500,0.072255,45976986,30583221,0,0,42132,0,1,1 +1774103354.496480,23.32,4,3992.50,60.09,1355.53,2352.52,0.00,0.126929,0.000000,199,0,119.188442,0.070696,45991485,30588728,0,0,42135,0,1,1 +1774103359.496687,1.76,4,3992.50,53.65,1604.05,2100.69,0.00,3518291517838.587891,0.000000,21,0,24.340576,0.018741,45994542,30589906,0,0,42137,0,1,1 +1774103364.496516,14.64,4,3992.50,54.07,1587.85,2116.84,0.00,0.000000,0.000000,21,0,16.208599,0.081251,45999959,30593891,0,0,42139,0,1,1 +1774103369.492717,14.55,4,3992.50,54.17,1583.58,2121.06,0.00,70861.161397,85651.459568,6055734,1524158,24.072555,0.105551,46007688,30599591,0,0,42142,0,1,1 +1774103374.496254,1.35,4,3992.50,53.88,1594.98,2109.66,0.00,4.106373,0.039230,6056508,1524457,0.010620,0.011455,46007912,30599825,0,0,42144,0,1,1 +1774103379.491897,0.85,4,3992.50,53.64,1604.59,2100.02,0.00,0.000000,0.043886,6056508,1524483,0.003967,0.008274,46008016,30599981,0,0,42147,0,1,1 +1774103384.494616,26.57,4,3992.50,54.03,1584.10,2115.56,0.00,3516524775941.729492,3516524761174.678711,70,0,0.059313,100.298650,46012264,30610823,0,0,42150,0,1,1 +1774103389.496027,28.14,4,3992.50,54.13,1576.12,2119.20,0.00,0.000000,0.000000,70,0,0.061867,104.723675,46017011,30622095,0,0,42152,0,1,1 +1774103394.491987,1.41,4,3992.50,53.61,1597.41,2098.92,0.00,0.127056,0.000000,199,0,0.004718,0.008336,46017127,30622257,0,0,42155,0,1,1 +1774103399.492047,16.65,4,3992.50,54.83,1553.36,2146.59,0.00,1.363363,0.028320,237,247,40.068613,0.027474,46021660,30623876,0,0,42157,0,1,1 +1774103404.496070,1.25,4,3992.50,53.82,1592.75,2107.21,0.00,70769.562675,85723.213457,6056637,1526198,0.004651,0.009442,46021781,30624046,0,0,42159,0,1,1 +1774103409.496415,0.70,4,3992.50,53.50,1605.33,2094.62,0.00,3518194222224.172852,3518194207261.034668,21,0,0.003903,0.007163,46021883,30624189,0,0,42162,0,1,1 +1774103414.492443,0.90,4,3992.50,53.23,1615.73,2084.22,0.00,0.000000,0.000000,21,0,0.003410,0.005860,46021968,30624305,0,0,42164,0,1,1 +1774103419.496291,1.00,4,3992.50,53.47,1610.58,2093.57,0.00,0.000000,0.000000,21,0,0.003875,0.007127,46022068,30624446,0,0,42167,0,1,1 +1774103424.491960,1.01,4,3992.50,53.38,1614.22,2089.93,0.00,2.008576,0.000195,238,2,0.003881,0.007139,46022168,30624587,0,0,42170,0,1,1 +1774103429.496061,0.85,4,3992.50,53.02,1628.16,2075.98,0.00,3515553694086.397461,3515553694088.228027,199,0,0.003900,0.007148,46022270,30624729,0,0,42172,0,1,1 +1774103434.491914,0.70,4,3992.50,53.08,1625.82,2078.39,0.00,3521357634160.076172,0.000000,70,0,0.003431,0.005878,46022357,30624847,0,0,42175,0,1,1 +1774103439.492585,1.00,4,3992.50,53.08,1625.84,2078.37,0.00,3517965425797.387695,0.000000,21,0,0.003971,0.007841,46022463,30624997,0,0,42177,0,1,1 +1774103444.491943,0.85,4,3992.50,53.09,1625.62,2078.58,0.00,0.048053,0.000000,70,0,0.003879,0.007123,46022563,30625137,0,0,42179,0,1,1 +1774103449.496539,1.10,4,3992.50,53.47,1610.12,2093.31,0.00,3515205867840.839355,0.000000,21,0,0.003949,0.007166,46022668,30625281,0,0,42182,0,1,1 +1774103454.496068,0.90,4,3992.50,53.47,1609.81,2093.30,0.00,2.007025,0.000195,238,2,0.003421,0.005856,46022754,30625397,0,0,42184,0,1,1 +1774103459.496561,0.90,4,3992.50,53.33,1614.91,2088.16,0.00,3518090237231.594238,3518090237233.552734,70,0,0.003878,0.007132,46022854,30625538,0,0,42187,0,1,1 +1774103464.491915,0.75,4,3992.50,53.14,1622.56,2080.51,0.00,3521709572261.251953,0.000000,21,0,0.003882,0.007139,46022954,30625679,0,0,42190,0,1,1 +1774103469.492015,1.00,4,3992.50,53.26,1617.96,2085.14,0.00,0.048046,0.000000,70,0,0.005988,0.009261,46023087,30625857,0,0,42192,0,1,1 +1774103474.493385,11.08,4,3992.50,53.41,1609.61,2091.17,0.00,0.000000,0.000000,70,0,0.034475,40.065450,46025606,30630762,0,0,42195,0,1,1 +1774103479.496248,1.20,4,3992.50,53.29,1612.74,2086.26,0.00,70783.351811,85777.618894,6055864,1527024,0.002444,0.006360,46025678,30630885,0,0,42197,0,1,1 +1774103484.496005,0.70,4,3992.50,52.99,1621.72,2074.69,0.00,3518607955919.704590,3518607940916.170898,21,0,0.001831,0.005102,46025734,30630984,0,0,42199,0,1,1 +1774103489.493303,1.05,4,3992.50,53.38,1606.36,2090.05,0.00,0.048073,0.000000,70,0,0.002290,0.006369,46025804,30631107,0,0,42202,0,1,1 +1774103494.492838,0.80,4,3992.50,53.39,1606.06,2090.30,0.00,3518763761420.256348,0.000000,21,0,0.002276,0.006357,46025873,30631229,0,0,42204,0,1,1 +1774103499.496704,0.75,4,3992.50,53.39,1605.89,2090.52,0.00,2.005286,0.000195,238,2,0.002287,0.006361,46025943,30631352,0,0,42207,0,1,1 +1774103504.495266,0.95,4,3992.50,53.25,1611.48,2084.93,0.00,3519449224394.046387,3519449224396.005371,70,0,0.001844,0.005775,46026000,30631457,0,0,42210,0,1,1 +1774103509.491994,1.20,4,3992.50,53.52,1599.71,2095.25,0.00,3520741508146.747070,0.000000,21,0,0.002341,0.006422,46026074,30631583,0,0,42212,0,1,1 +1774103514.491952,0.70,4,3992.50,53.51,1599.66,2095.23,0.00,0.175001,0.000000,199,0,0.002364,0.006459,46026150,30631712,0,0,42215,0,1,1 +1774103519.492201,1.05,4,3992.50,53.51,1599.66,2095.22,0.00,70820.233542,85828.999728,6055864,1527157,0.002413,0.006456,46026228,30631842,0,0,42217,0,1,1 +1774103524.496410,0.70,4,3992.50,53.52,1599.53,2095.31,0.00,3515477701356.648438,3515477686359.935059,21,0,0.002475,0.006226,46026300,30631965,0,0,42219,0,1,1 +1774103529.491916,0.80,4,3992.50,53.52,1599.58,2095.30,0.00,2.008641,0.000195,238,2,0.002291,0.006372,46026370,30632088,0,0,42222,0,1,1 +1774103534.491915,0.70,4,3992.50,53.52,1599.34,2095.55,0.00,70821.933412,85833.296893,6055864,1527173,0.002289,0.006356,46026440,30632210,0,0,42224,0,1,1 +1774103539.495792,31.71,4,3992.50,59.86,1358.63,2343.59,0.00,3515711845426.395020,3515711830428.617676,70,0,76.362611,0.039490,46034762,30634789,0,0,42227,0,1,1 +1774103544.493389,34.56,4,3992.50,59.60,1369.76,2333.53,0.00,0.000000,0.000000,70,0,122.273768,0.054032,46048198,30638741,0,0,42230,0,1,1 +1774103549.496452,31.48,4,3992.50,59.59,1370.31,2332.98,0.00,0.126875,0.000000,199,0,121.201972,0.045376,46061868,30642151,0,0,42232,0,1,1 +1774103554.495627,31.58,4,3992.50,59.43,1376.32,2326.96,0.00,70839.541318,85847.745982,6056638,1527632,120.719798,0.058251,46076012,30646535,0,0,42235,0,1,1 +1774103559.496085,31.02,4,3992.50,59.44,1375.93,2327.36,0.00,0.000000,0.029685,6056638,1527650,119.816204,0.062717,46090007,30651113,0,0,42237,0,1,1 +1774103564.495406,31.01,4,3992.50,59.44,1376.28,2327.06,0.00,3518914954367.870117,3518914954371.979004,6055864,1527411,120.012913,0.053028,46103811,30655219,0,0,42239,0,1,1 +1774103569.493312,31.30,4,3992.50,59.66,1360.68,2335.93,0.00,3519911318456.397949,3519911303438.407715,238,2,119.614735,0.055129,46117525,30659379,0,0,42242,0,1,1 +1774103574.491931,31.72,4,3992.50,59.66,1360.97,2335.74,0.00,3519409238742.307617,3519409238744.140137,199,0,119.031573,0.065328,46131382,30664177,0,0,42244,0,1,1 +1774103579.491955,15.92,4,3992.50,54.09,1579.07,2117.75,0.00,3518420352131.118164,0.000000,21,0,107.631367,0.058034,46144004,30668453,0,0,42247,0,1,1 +1774103584.496075,1.00,4,3992.50,53.02,1620.86,2075.95,0.00,70765.777390,85763.271931,6055879,1527507,0.004663,0.005382,46144107,30668568,0,0,42250,0,1,1 +1774103589.496034,12.58,4,3992.50,53.73,1593.26,2103.50,0.00,3518466053517.005371,3518466038506.854492,199,0,14.116365,0.075773,46149072,30672213,0,0,42252,0,1,1 +1774103594.495852,11.75,4,3992.50,53.37,1607.00,2089.72,0.00,3518564778671.353027,0.000000,21,0,16.086567,0.065537,46154000,30675845,0,0,42255,0,1,1 +1774103599.496444,7.79,4,3992.50,53.79,1593.86,2105.84,0.00,0.000000,0.000000,21,0,10.068977,0.051482,46157435,30678429,0,0,42257,0,1,1 +1774103604.496603,0.85,4,3992.50,53.66,1598.97,2100.72,0.00,0.048045,0.000000,70,0,0.004353,0.007898,46157544,30678582,0,0,42259,0,1,1 +1774103609.494641,0.85,4,3992.50,53.67,1598.53,2101.16,0.00,70851.849763,85869.096035,6055879,1529181,0.003880,0.007135,46157644,30678723,0,0,42262,0,1,1 +1774103614.496404,1.75,4,3992.50,53.26,1614.32,2085.36,0.00,3517197122780.874023,3517197107773.350586,237,247,0.003872,0.007128,46157744,30678864,0,0,42264,0,1,1 +1774103619.495876,0.85,4,3992.50,53.27,1613.94,2085.76,0.00,70830.029788,85844.444083,6055879,1529199,0.003650,0.006487,46157837,30678992,0,0,42267,0,1,1 +1774103624.494973,0.55,4,3992.50,53.40,1608.91,2090.80,0.00,3519072546022.444336,3519072531006.904297,237,247,0.003650,0.006512,46157930,30679122,0,0,42270,0,1,1 +1774103629.495327,0.95,4,3992.50,53.68,1606.37,2101.60,0.00,3518188641817.915039,3518188641819.250000,199,0,0.003928,0.007184,46158034,30679266,0,0,42272,0,1,1 +1774103634.495686,0.75,4,3992.50,53.68,1603.91,2101.80,0.00,3518183842651.775879,0.000000,21,0,0.003928,0.007194,46158138,30679411,0,0,42275,0,1,1 +1774103639.496402,0.70,4,3992.50,53.68,1603.93,2101.79,0.00,70818.062992,85823.278347,6056653,1529498,0.003898,0.007804,46158240,30679558,0,0,42277,0,1,1 +1774103644.496625,0.60,4,3992.50,53.68,1603.95,2101.77,0.00,3518280447213.521484,3518280432206.651855,199,0,0.002789,0.005618,46158313,30679667,0,0,42279,0,1,1 +1774103649.495445,20.38,4,3992.50,53.76,1597.68,2104.93,0.00,1.832268,0.000195,238,2,0.048589,78.184823,46161750,30688629,0,0,42282,0,1,1 +1774103654.495410,30.19,4,3992.50,53.84,1588.87,2108.04,0.00,3518461488378.078613,0.028125,237,247,0.050916,120.189777,46165544,30701388,0,0,42284,0,1,1 +1774103659.495945,3.26,4,3992.50,53.81,1590.38,2106.77,0.00,70819.098348,86027.766847,6056662,1530934,0.007337,6.765396,46165857,30702301,0,0,42287,0,1,1 +1774103664.493252,15.23,4,3992.50,53.98,1581.93,2113.26,0.00,16.595657,0.191998,6056776,1531101,40.090525,0.030683,46170346,30704028,0,0,42290,0,1,1 +1774103669.491987,1.00,4,3992.50,53.54,1599.14,2096.05,0.00,3519327909244.851074,0.088108,6056002,1530944,0.004593,0.009359,46170462,30704192,0,0,42292,0,1,1 +1774103674.491896,0.70,4,3992.50,53.56,1598.32,2096.88,0.00,0.000000,0.001953,6056002,1530950,0.003891,0.007132,46170563,30704333,0,0,42295,0,1,1 +1774103679.496089,0.85,4,3992.50,53.55,1598.63,2096.56,0.00,3515489042605.040527,3515489027419.675293,237,247,0.003417,0.005850,46170649,30704449,0,0,42297,0,1,1 +1774103684.494381,0.80,4,3992.50,53.57,1597.67,2097.52,0.00,70863.350066,86066.691540,6056002,1531012,0.003900,0.007133,46170751,30704590,0,0,42299,0,1,1 +1774103689.492084,1.40,4,3992.50,53.46,1601.98,2093.24,0.00,3520054456632.606445,3520054441427.471191,237,247,0.003880,0.007123,46170851,30704730,0,0,42302,0,1,1 +1774103694.496847,9.83,4,3992.50,53.98,1579.46,2113.31,0.00,3515088880738.597656,3515088880740.058594,70,0,0.024391,39.429586,46172387,30709195,0,0,42304,0,1,1 +1774103699.496737,1.75,4,3992.50,53.71,1589.59,2102.99,0.00,3518514687280.268555,0.000000,21,0,0.003974,0.610174,46172508,30709448,0,0,42307,0,1,1 +1774103704.496005,0.85,4,3992.50,53.37,1603.02,2089.57,0.00,2.007130,0.000195,238,2,0.001831,0.005769,46172564,30709553,0,0,42310,0,1,1 +1774103709.491912,0.65,4,3992.50,53.38,1602.78,2089.80,0.00,3521319716832.764160,3521319716834.772461,21,0,0.002299,0.006369,46172635,30709676,0,0,42312,0,1,1 +1774103714.491990,0.80,4,3992.50,53.38,1602.78,2089.80,0.00,0.000000,0.000000,21,0,0.002289,0.006366,46172705,30709799,0,0,42315,0,1,1 +1774103719.494383,1.05,4,3992.50,53.58,1599.53,2097.89,0.00,0.000000,0.000000,21,0,0.002288,0.006340,46172775,30709920,0,0,42317,0,1,1 +1774103724.491920,0.60,4,3992.50,53.62,1598.07,2099.35,0.00,1.539137,0.028334,237,247,0.001832,0.005104,46172831,30710019,0,0,42319,0,1,1 +1774103729.491895,0.85,4,3992.50,53.62,1598.08,2099.34,0.00,0.000000,0.000000,237,247,0.002314,0.006397,46172903,30710144,0,0,42322,0,1,1 +1774103734.495960,0.75,4,3992.50,53.62,1598.08,2099.34,0.00,3515578810577.393555,3515578810578.854492,70,0,0.002345,0.006421,46172978,30710271,0,0,42324,0,1,1 +1774103739.496396,0.70,4,3992.50,53.46,1604.51,2092.91,0.00,70838.573242,86074.198345,6056776,1531900,0.002364,0.006459,46173054,30710400,0,0,42327,0,1,1 +1774103744.496406,0.75,4,3992.50,53.48,1603.53,2093.89,0.00,3518430310172.541504,3518430294935.666016,21,0,0.001974,0.005225,46173119,30710509,0,0,42330,0,1,1 +1774103749.496135,0.90,4,3992.50,53.57,1602.45,2097.57,0.00,0.048049,0.000000,70,0,0.002289,0.006356,46173189,30710631,0,0,42332,0,1,1 +1774103754.491924,0.65,4,3992.50,53.64,1599.86,2100.18,0.00,3521403576575.074707,0.000000,21,0,0.002299,0.006379,46173260,30710755,0,0,42335,0,1,1 +1774103759.492004,0.80,4,3992.50,53.45,1607.54,2092.56,0.00,2.006803,0.000195,238,2,0.002289,0.006356,46173330,30710877,0,0,42337,0,1,1 +1774103764.495492,26.19,4,3992.50,59.63,1371.40,2334.84,0.00,0.000000,0.000000,238,2,57.248772,0.037159,46179637,30713301,0,0,42339,0,1,1 +1774103769.493054,35.10,4,3992.50,59.80,1365.88,2341.44,0.00,70877.346281,86123.894382,6056776,1532071,123.831049,0.043971,46192355,30716611,0,0,42342,0,1,1 +1774103774.496758,30.40,4,3992.50,59.58,1374.51,2332.80,0.00,3515832550923.395996,3515832535696.058594,237,247,121.076133,0.053109,46204673,30720679,0,0,42344,0,1,1 +1774103779.496391,30.13,4,3992.50,59.57,1374.88,2332.27,0.00,70844.356158,86088.270016,6056002,1531851,120.774745,0.043047,46217010,30723965,0,0,42347,0,1,1 +1774103784.494408,30.43,4,3992.50,59.96,1360.61,2347.53,0.00,3519832615106.433594,3519832599857.594238,237,247,119.813107,0.038158,46229305,30726775,0,0,42350,0,1,1 +1774103789.491933,30.18,4,3992.50,59.84,1365.29,2342.86,0.00,0.000000,0.000000,237,247,119.425571,0.045007,46241583,30730071,0,0,42352,0,1,1 +1774103794.494247,30.22,4,3992.50,59.76,1368.57,2339.59,0.00,3516809495808.416016,3516809495809.750488,199,0,120.109844,0.050155,46253822,30733770,0,0,42354,0,1,1 +1774103799.495714,29.89,4,3992.50,59.95,1360.80,2347.37,0.00,0.000000,0.000000,199,0,119.929858,0.041465,46266054,30736855,0,0,42357,0,1,1 +1774103804.496457,19.01,4,3992.50,59.90,1362.97,2345.25,0.00,1.363176,0.028316,237,247,118.747029,0.057231,46278187,30741095,0,0,42359,0,1,1 +1774103809.496477,1.76,4,3992.50,54.71,1565.46,2142.05,0.00,70838.935877,86081.871699,6056013,1531981,4.410765,0.007963,46278759,30741414,0,0,42362,0,1,1 +1774103814.493654,14.65,4,3992.50,54.61,1569.34,2138.10,0.00,3520425305274.442871,3520425290024.342773,21,0,18.130079,0.087925,46284705,30745853,0,0,42364,0,1,1 +1774103819.496409,14.64,4,3992.50,54.44,1575.93,2131.44,0.00,2.005731,0.000195,238,2,20.116828,0.089539,46291213,30750647,0,0,42367,0,1,1 +1774103824.496793,2.21,4,3992.50,54.00,1593.20,2114.15,0.00,3518166928521.618164,3518166928523.449707,199,0,2.013131,0.013666,46291842,30751186,0,0,42370,0,1,1 +1774103829.496162,0.90,4,3992.50,53.69,1605.39,2101.97,0.00,70853.636791,86093.940504,6056787,1533550,0.003953,0.008258,46291945,30751341,0,0,42372,0,1,1 +1774103834.497369,23.33,4,3992.50,54.01,1588.39,2114.79,0.00,3517587784809.444824,3517587769574.869629,70,0,0.047624,93.719651,46295342,30761441,0,0,42375,0,1,1 +1774103839.496525,28.99,4,3992.50,54.15,1578.58,2120.14,0.00,3519031377624.687988,0.000000,21,0,0.049764,111.378408,46299082,30773021,0,0,42377,0,1,1 +1774103844.496431,1.20,4,3992.50,54.16,1578.78,2120.43,0.00,0.000000,0.000000,21,0,0.005278,0.010209,46299218,30773217,0,0,42379,0,1,1 +1774103849.496121,13.67,4,3992.50,54.38,1574.52,2129.05,0.00,0.048050,0.000000,70,0,40.069562,0.025494,46303743,30774750,0,0,42382,0,1,1 +1774103854.496284,0.90,4,3992.50,53.89,1593.57,2110.00,0.00,0.126949,0.000000,199,0,0.006196,0.007783,46303888,30774915,0,0,42384,0,1,1 +1774103859.492823,0.90,4,3992.50,53.80,1597.14,2106.44,0.00,1.833105,0.000195,238,2,0.005702,0.010575,46304011,30775094,0,0,42387,0,1,1 +1774103864.496529,0.60,4,3992.50,53.85,1595.19,2108.38,0.00,0.000000,0.000000,238,2,0.003875,0.007127,46304111,30775235,0,0,42390,0,1,1 +1774103869.495376,0.85,4,3992.50,53.83,1589.45,2107.76,0.00,0.000000,0.000000,238,2,0.003658,0.006486,46304205,30775363,0,0,42392,0,1,1 +1774103874.496225,0.85,4,3992.50,53.89,1587.22,2109.81,0.00,3517840419214.778809,3517840419216.737305,70,0,0.003649,0.006510,46304298,30775493,0,0,42395,0,1,1 +1774103879.496522,0.45,4,3992.50,53.70,1594.45,2102.62,0.00,70853.096355,86284.183357,6056145,1535289,0.003903,0.007153,46304400,30775635,0,0,42397,0,1,1 +1774103884.492094,0.65,4,3992.50,53.70,1594.46,2102.61,0.00,3521556283255.536133,3521556267809.723145,199,0,0.003881,0.007129,46304500,30775775,0,0,42399,0,1,1 +1774103889.495998,0.75,4,3992.50,53.70,1594.48,2102.60,0.00,70806.002627,86222.089798,6056919,1535625,0.005046,0.007784,46304626,30775933,0,0,42402,0,1,1 +1774103894.491989,0.65,4,3992.50,53.51,1602.12,2094.96,0.00,3521260799731.668945,3521260784291.336914,21,0,0.004488,0.006262,46304734,30776062,0,0,42404,0,1,1 +1774103899.492005,0.90,4,3992.50,53.75,1589.91,2104.48,0.00,0.000000,0.000000,21,0,0.003909,0.007801,46304836,30776209,0,0,42407,0,1,1 +1774103904.495680,0.70,4,3992.50,53.75,1589.93,2104.47,0.00,0.000000,0.000000,21,0,0.003962,0.007167,46304942,30776353,0,0,42410,0,1,1 +1774103909.491974,0.65,4,3992.50,53.59,1596.18,2098.21,0.00,0.048083,0.000000,70,0,0.003881,0.007115,46305042,30776492,0,0,42412,0,1,1 +1774103914.496446,0.60,4,3992.50,53.59,1596.20,2098.20,0.00,3515293083644.213379,0.000000,21,0,0.003405,0.005860,46305127,30776609,0,0,42415,0,1,1 +1774103919.496289,11.78,4,3992.50,53.48,1597.96,2093.83,0.00,70863.707035,86318.362439,6056921,1535968,0.023639,40.069352,46306632,30781162,0,0,42417,0,1,1 +1774103924.495431,0.80,4,3992.50,53.50,1597.00,2094.78,0.00,3519040952436.287109,8.021786,6056147,1535829,0.002464,0.005652,46306700,30781269,0,0,42419,0,1,1 +1774103929.496170,1.10,4,3992.50,53.64,1592.62,2100.19,0.00,3517917239108.737793,3517917223644.725586,21,0,0.002288,0.006365,46306770,30781392,0,0,42422,0,1,1 +1774103934.491928,0.65,4,3992.50,53.68,1591.28,2101.61,0.00,70917.535010,86397.099713,6056147,1535897,0.002316,0.006393,46306842,30781516,0,0,42424,0,1,1 +1774103939.494090,0.85,4,3992.50,53.69,1590.81,2102.03,0.00,3516915905900.111328,3516915890438.361816,238,2,0.002313,0.006394,46306914,30781641,0,0,42427,0,1,1 +1774103944.491935,0.55,4,3992.50,53.69,1590.86,2102.02,0.00,3519954570481.748047,3519954570483.707520,70,0,0.001832,0.005101,46306970,30781740,0,0,42430,0,1,1 +1774103949.492002,0.70,4,3992.50,53.69,1590.86,2102.02,0.00,3518389567777.370605,0.000000,21,0,0.002289,0.006356,46307040,30781862,0,0,42432,0,1,1 +1774103954.491907,0.65,4,3992.50,53.69,1590.67,2102.21,0.00,0.175003,0.000000,199,0,0.002314,0.006387,46307112,30781986,0,0,42434,0,1,1 +1774103959.492028,0.80,4,3992.50,53.88,1582.57,2109.59,0.00,1.831792,0.000195,238,2,0.002339,0.006428,46307186,30782113,0,0,42437,0,1,1 +1774103964.495126,0.65,4,3992.50,53.89,1581.96,2110.05,0.00,3516258731180.129883,0.028108,237,247,0.002122,0.006443,46307254,30782232,0,0,42439,0,1,1 +1774103969.492106,0.70,4,3992.50,53.89,1581.98,2110.03,0.00,3520563053001.559082,3520563053003.070312,21,0,0.002237,0.005882,46307329,30782355,0,0,42442,0,1,1 +1774103974.496299,0.65,4,3992.50,54.00,1577.83,2114.18,0.00,1.537090,0.028297,237,247,0.002299,0.006351,46307400,30782477,0,0,42444,0,1,1 +1774103979.496816,0.65,4,3992.50,54.00,1577.83,2114.18,0.00,3518073362698.520020,3518073362699.854980,199,0,0.002276,0.006365,46307469,30782600,0,0,42447,0,1,1 +1774103984.495278,0.60,4,3992.50,54.00,1577.83,2114.18,0.00,0.000000,0.000000,199,0,0.002302,0.006355,46307540,30782722,0,0,42450,0,1,1 +1774103989.491899,35.05,4,3992.50,59.74,1360.09,2338.97,0.00,3520816797982.396484,0.000000,21,0,74.965399,0.035813,46315654,30784954,0,0,42452,0,1,1 +1774103994.492049,33.16,4,3992.50,60.10,1349.48,2352.87,0.00,2.006776,0.000195,238,2,118.563489,0.030353,46327945,30787057,0,0,42455,0,1,1 +1774103999.495687,29.89,4,3992.50,59.83,1359.88,2342.50,0.00,3515878422179.971191,3515878422181.928223,70,0,119.681543,0.026153,46340310,30788748,0,0,42457,0,1,1 +1774104004.496814,30.36,4,3992.50,60.05,1351.32,2351.07,0.00,0.126925,0.000000,199,0,118.539284,0.027699,46352425,30790729,0,0,42459,0,1,1 +1774104009.496378,29.95,4,3992.50,60.22,1344.86,2357.59,0.00,3518744312922.926270,0.000000,21,0,119.779067,0.031556,46364754,30793033,0,0,42462,0,1,1 +1774104014.496408,30.01,4,3992.50,59.90,1357.33,2345.04,0.00,0.048047,0.000000,70,0,118.969494,0.038444,46376995,30795763,0,0,42464,0,1,1 +1774104019.493146,30.22,4,3992.50,60.01,1353.07,2349.36,0.00,3520734452201.722168,0.000000,21,0,119.446614,0.034559,46389153,30798096,0,0,42467,0,1,1 +1774104024.496584,30.30,4,3992.50,60.24,1348.02,2358.71,0.00,0.048014,0.000000,70,0,119.288127,0.035142,46401451,30800627,0,0,42470,0,1,1 +1774104029.491914,17.94,4,3992.50,60.45,1340.32,2366.57,0.00,70927.687179,86411.229497,6056932,1536650,116.272699,0.032921,46413293,30802911,0,0,42472,0,1,1 +1774104034.496456,1.15,4,3992.50,55.12,1548.79,2158.09,0.00,3515243963522.323242,3515243948067.330078,21,0,0.005082,0.007410,46413418,30803063,0,0,42475,0,1,1 +1774104039.495694,16.93,4,3992.50,54.83,1560.22,2146.59,0.00,1.538613,0.028325,237,247,22.149130,0.107785,46420860,30808659,0,0,42477,0,1,1 +1774104044.496447,12.39,4,3992.50,54.83,1560.14,2146.63,0.00,3517907559755.455078,3517907559756.790039,199,0,18.111726,0.082347,46426823,30813112,0,0,42479,0,1,1 +1774104049.495667,1.81,4,3992.50,54.83,1560.58,2146.79,0.00,70872.612743,86345.231084,6056979,1538022,0.006531,0.009531,46426977,30813304,0,0,42482,0,1,1 +1774104054.496817,0.65,4,3992.50,54.44,1575.98,2131.38,0.00,3517627560259.806152,3517627544793.162109,199,0,0.003735,0.005866,46427064,30813421,0,0,42484,0,1,1 +1774104059.495057,0.95,4,3992.50,54.42,1576.82,2130.54,0.00,3519675990524.974121,0.000000,21,0,0.003879,0.007135,46427164,30813562,0,0,42487,0,1,1 +1774104064.493690,0.65,4,3992.50,54.43,1576.36,2131.01,0.00,0.175048,0.000000,199,0,0.003900,0.007142,46427266,30813704,0,0,42490,0,1,1 +1774104069.496830,0.75,4,3992.50,54.42,1576.66,2130.71,0.00,3516228642465.583496,0.000000,21,0,0.003876,0.007118,46427366,30813844,0,0,42492,0,1,1 +1774104074.491903,0.65,4,3992.50,54.43,1576.40,2130.96,0.00,0.048094,0.000000,70,0,0.003424,0.005871,46427452,30813961,0,0,42495,0,1,1 +1774104079.496435,1.00,4,3992.50,54.43,1574.14,2130.95,0.00,1.488982,0.028295,237,247,0.003988,0.007271,46427561,30814111,0,0,42497,0,1,1 +1774104084.491922,0.55,4,3992.50,54.43,1573.65,2130.90,0.00,70924.211446,86410.473404,6056979,1538453,0.003099,0.006745,46427647,30814242,0,0,42499,0,1,1 +1774104089.491918,0.70,4,3992.50,54.44,1573.18,2131.37,0.00,0.000000,0.001953,6056979,1538458,0.003878,0.007120,46427747,30814382,0,0,42502,0,1,1 +1774104094.493283,0.60,4,3992.50,54.44,1573.25,2131.30,0.00,0.000000,0.037002,6056979,1538502,0.003450,0.006522,46427835,30814504,0,0,42504,0,1,1 +1774104099.496743,0.65,4,3992.50,54.44,1573.28,2131.27,0.00,3516004542463.114258,3516004527000.993164,238,2,0.003919,0.007142,46427938,30814646,0,0,42507,0,1,1 +1774104104.495979,0.60,4,3992.50,54.48,1571.60,2132.92,0.00,3518974742126.230469,3518974742128.189453,70,0,0.003879,0.007133,46428038,30814787,0,0,42510,0,1,1 +1774104109.495859,1.00,4,3992.50,54.48,1568.88,2132.86,0.00,1.490368,0.028321,237,247,0.003878,0.007123,46428138,30814927,0,0,42512,0,1,1 +1774104114.492552,0.70,4,3992.50,54.48,1568.69,2133.07,0.00,3520765544651.976074,3520765544653.487305,21,0,0.003431,0.005864,46428225,30815044,0,0,42515,0,1,1 +1774104119.496675,0.55,4,3992.50,54.48,1568.70,2133.07,0.00,1.537112,0.028297,237,247,0.003887,0.007117,46428326,30815184,0,0,42517,0,1,1 +1774104124.496889,0.70,4,3992.50,54.48,1568.72,2133.05,0.00,70857.161512,86329.064002,6056979,1538736,0.004485,0.008231,46428439,30815346,0,0,42519,0,1,1 +1774104129.491913,0.75,4,3992.50,54.48,1568.73,2133.04,0.00,0.000000,0.051907,6056979,1538782,0.003882,0.007139,46428539,30815487,0,0,42522,0,1,1 +1774104134.491937,0.65,4,3992.50,54.49,1568.53,2133.24,0.00,3518419960391.589844,3518419944920.511230,70,0,0.003420,0.005855,46428625,30815603,0,0,42524,0,1,1 +1774104139.491902,0.95,4,3992.50,54.48,1574.51,2133.19,0.00,1.490343,0.028321,237,247,0.003878,0.007132,46428725,30815744,0,0,42527,0,1,1 +1774104144.497305,20.40,4,3992.50,54.25,1580.45,2124.05,0.00,3514639180126.922363,3514639180128.382812,70,0,0.041563,77.234994,46431735,30824138,0,0,42530,0,1,1 +1774104149.491883,32.76,4,3992.50,54.12,1579.75,2118.92,0.00,0.000000,0.000000,70,0,0.039716,122.708461,46434754,30836975,0,0,42532,0,1,1 +1774104154.495973,2.71,4,3992.50,54.46,1566.62,2132.38,0.00,1.489114,0.028297,237,247,0.004537,5.210702,46434954,30837681,0,0,42534,0,1,1 +1774104159.495395,15.03,4,3992.50,55.71,1522.05,2181.20,0.00,3518843705706.544922,3518843705708.055176,21,0,40.070137,0.025426,46439400,30839155,0,0,42537,0,1,1 +1774104164.495888,0.90,4,3992.50,54.81,1557.46,2145.81,0.00,0.174983,0.000000,199,0,0.005153,0.007143,46439520,30839303,0,0,42539,0,1,1 +1774104169.495997,11.84,4,3992.50,54.13,1581.93,2119.34,0.00,70876.608979,86570.435522,6057105,1540670,0.028274,40.068730,46441409,30843837,0,0,42542,0,1,1 +1774104174.494422,1.20,4,3992.50,54.02,1586.85,2115.19,0.00,3519545174592.548828,3519545158892.103027,237,247,0.002962,0.007899,46441498,30843989,0,0,42544,0,1,1 +1774104179.492279,0.70,4,3992.50,54.04,1586.41,2115.63,0.00,70903.069936,86609.503952,6056331,1540528,0.002290,0.006369,46441568,30844112,0,0,42547,0,1,1 +1774104184.495385,0.60,4,3992.50,54.04,1586.17,2115.88,0.00,3516253386424.610840,3516253370736.162598,21,0,0.001830,0.005096,46441624,30844211,0,0,42550,0,1,1 +1774104189.496444,0.75,4,3992.50,54.04,1586.18,2115.87,0.00,2.006411,0.000195,238,2,0.003423,0.006993,46441718,30844348,0,0,42552,0,1,1 +1774104194.492880,0.90,4,3992.50,54.04,1586.18,2115.86,0.00,3520947607203.083984,3520947607205.092773,21,0,0.003356,0.006762,46441810,30844483,0,0,42554,0,1,1 +1774104199.491984,1.10,4,3992.50,54.20,1579.61,2122.12,0.00,0.048055,0.000000,70,0,0.002289,0.006367,46441880,30844606,0,0,42557,0,1,1 +1774104204.496074,0.70,4,3992.50,54.29,1575.96,2125.43,0.00,3515561351731.002930,0.000000,21,0,0.001825,0.005093,46441936,30844705,0,0,42559,0,1,1 +1774104209.496630,0.70,4,3992.50,54.29,1575.96,2125.42,0.00,0.000000,0.000000,21,0,0.002364,0.006459,46442012,30844834,0,0,42562,0,1,1 +1774104214.496395,0.75,4,3992.50,54.29,1575.97,2125.41,0.00,2.006931,0.000195,238,2,0.002407,0.006450,46442090,30844963,0,0,42564,0,1,1 +1774104219.491921,0.70,4,3992.50,54.10,1583.39,2118.00,0.00,3521588308491.864746,3521588308493.698242,199,0,0.002353,0.006435,46442164,30845091,0,0,42567,0,1,1 +1774104224.495112,0.70,4,3992.50,54.10,1583.39,2118.00,0.00,3516193241164.185547,0.000000,21,0,0.001830,0.005739,46442220,30845194,0,0,42570,0,1,1 +1774104229.496700,1.00,4,3992.50,54.19,1579.57,2121.68,0.00,70851.709726,86551.183727,6056331,1540725,0.002288,0.006354,46442290,30845316,0,0,42572,0,1,1 +1774104234.497186,35.98,4,3992.50,60.24,1348.91,2358.58,0.00,3518094934321.959473,3518094918619.025879,21,0,81.312323,0.035200,46450927,30847563,0,0,42575,0,1,1 +1774104239.496061,30.73,4,3992.50,60.13,1353.39,2354.16,0.00,70890.174525,86598.270391,6056331,1540858,119.796780,0.030328,46463268,30849646,0,0,42577,0,1,1 +1774104244.496369,29.49,4,3992.50,60.43,1341.65,2365.83,0.00,3518220576755.957031,3518220561052.363770,21,0,118.561027,0.031826,46475486,30851848,0,0,42579,0,1,1 +1774104249.492839,29.61,4,3992.50,60.18,1351.30,2356.16,0.00,70924.286303,86639.952211,6056331,1540884,119.860475,0.046063,46488005,30855266,0,0,42582,0,1,1 +1774104254.491917,29.63,4,3992.50,60.23,1349.15,2358.25,0.00,3519085720991.513672,3519085705283.872559,199,0,118.600058,0.059656,46500397,30859769,0,0,42584,0,1,1 +1774104259.492862,29.90,4,3992.50,60.40,1342.49,2364.98,0.00,70864.771106,86562.519066,6057105,1541159,119.758565,0.059192,46513077,30864082,0,0,42587,0,1,1 +1774104264.496945,29.83,4,3992.50,60.20,1348.49,2356.86,0.00,3515565560774.652344,3515565545086.929688,21,0,119.281811,0.057033,46525571,30868301,0,0,42590,0,1,1 +1774104269.496428,29.71,4,3992.50,60.23,1347.32,2358.00,0.00,0.175018,0.000000,199,0,119.186265,0.047870,46537882,30871593,0,0,42592,0,1,1 +1774104274.491985,15.25,4,3992.50,53.89,1595.42,2110.00,0.00,0.000000,0.000000,199,0,109.246152,0.019588,46548993,30873081,0,0,42595,0,1,1 +1774104279.493068,0.90,4,3992.50,53.92,1594.41,2111.01,0.00,70858.840524,86560.516806,6056344,1541035,0.004739,0.006010,46549102,30873207,0,0,42597,0,1,1 +1774104284.496386,15.36,4,3992.50,53.87,1596.42,2108.95,0.00,3516103638558.403809,3516103622863.916504,21,0,18.108302,0.087449,46554998,30877604,0,0,42599,0,1,1 +1774104289.491894,12.04,4,3992.50,55.72,1531.33,2181.45,0.00,0.048090,0.000000,70,0,16.313273,0.078083,46560463,30881725,0,0,42602,0,1,1 +1774104294.496458,3.66,4,3992.50,55.26,1548.93,2163.70,0.00,3515228162015.367676,0.000000,21,0,5.838575,0.030239,46562403,30883138,0,0,42604,0,1,1 +1774104299.496667,0.85,4,3992.50,54.40,1582.65,2129.94,0.00,70875.510002,86576.915468,6057118,1542721,0.003878,0.007119,46562503,30883278,0,0,42607,0,1,1 +1774104304.496380,1.05,4,3992.50,54.10,1594.33,2118.30,0.00,3518639478073.175781,3518639462368.699707,237,247,0.003878,0.007120,46562603,30883418,0,0,42610,0,1,1 +1774104309.496380,0.80,4,3992.50,54.10,1594.51,2118.13,0.00,0.468457,3518437403100.916504,238,2,0.003408,0.005868,46562688,30883535,0,0,42612,0,1,1 +1774104314.495970,0.80,4,3992.50,53.84,1604.73,2107.91,0.00,3518725395306.097656,3518725395308.056152,70,0,0.003886,0.007141,46562789,30883677,0,0,42615,0,1,1 +1774104319.493002,1.10,4,3992.50,53.97,1605.24,2113.04,0.00,3520527063454.454590,0.000000,21,0,0.003880,0.007114,46562889,30883816,0,0,42617,0,1,1 +1774104324.496634,0.95,4,3992.50,53.88,1608.50,2109.64,0.00,0.000000,0.000000,21,0,0.004001,0.007273,46562999,30883966,0,0,42619,0,1,1 +1774104329.496207,0.80,4,3992.50,53.93,1606.84,2111.30,0.00,2.007007,0.000195,238,2,0.003421,0.005866,46563085,30884083,0,0,42622,0,1,1 +1774104334.496419,0.90,4,3992.50,53.82,1610.77,2107.37,0.00,3518288127052.608887,0.028124,237,247,0.003878,0.007122,46563185,30884223,0,0,42624,0,1,1 +1774104339.492697,0.75,4,3992.50,53.86,1609.31,2108.82,0.00,0.000000,0.000000,237,247,0.004626,0.008100,46563293,30884369,0,0,42627,0,1,1 +1774104344.491936,0.90,4,3992.50,53.86,1609.32,2108.81,0.00,0.000000,0.000000,237,247,0.003879,0.007133,46563393,30884510,0,0,42630,0,1,1 +1774104349.495996,1.05,4,3992.50,54.03,1607.10,2115.38,0.00,70815.332980,86511.019388,6056344,1543159,0.003405,0.005850,46563478,30884626,0,0,42632,0,1,1 +1774104354.493656,0.90,4,3992.50,53.76,1617.44,2105.00,0.00,3520084114964.716797,3520084099250.269531,199,0,0.003659,0.006968,46563572,30884757,0,0,42635,0,1,1 +1774104359.496299,1.95,4,3992.50,53.80,1615.98,2106.46,0.00,3516578971892.903320,0.000000,70,0,0.003190,0.005380,46563651,30884862,0,0,42637,0,1,1 +1774104364.495119,0.85,4,3992.50,53.77,1617.17,2105.27,0.00,3519267385759.262207,0.000000,21,0,0.003879,0.007124,46563751,30885002,0,0,42639,0,1,1 +1774104369.496794,14.75,4,3992.50,54.45,1588.41,2131.96,0.00,70850.632470,86574.834687,6056344,1543441,0.029727,56.873361,46565708,30891284,0,0,42642,0,1,1 +1774104374.495996,30.44,4,3992.50,54.34,1585.61,2127.68,0.00,0.000000,134.542086,6056344,1544301,0.030867,118.442453,46567883,30903696,0,0,42644,0,1,1 +1774104379.496075,9.40,4,3992.50,54.22,1595.56,2122.89,0.00,3518381371664.091309,3518381355800.352051,21,0,0.016259,29.803236,46568717,30907044,0,0,42647,0,1,1 +1774104384.496522,14.47,4,3992.50,55.16,1561.81,2159.68,0.00,0.000000,0.000000,21,0,40.059268,0.023286,46573160,30908485,0,0,42650,0,1,1 +1774104389.496740,1.00,4,3992.50,54.34,1593.95,2127.54,0.00,2.006748,0.000195,238,2,0.005512,0.006607,46573284,30908626,0,0,42652,0,1,1 +1774104394.496017,11.20,4,3992.50,54.68,1578.50,2140.85,0.00,3518945853502.184082,3518945853504.016602,199,0,0.024362,40.074920,46574890,30913142,0,0,42655,0,1,1 +1774104399.496738,1.10,4,3992.50,54.58,1582.19,2137.12,0.00,3517930077451.241699,0.000000,70,0,0.002503,0.006629,46574965,30913270,0,0,42657,0,1,1 +1774104404.496114,0.95,4,3992.50,54.36,1590.88,2128.48,0.00,1.490518,0.028324,237,247,0.002277,0.006357,46575034,30913392,0,0,42659,0,1,1 +1774104409.496671,1.35,4,3992.50,54.24,1593.74,2123.45,0.00,3518045058027.915527,3518045058029.425781,21,0,0.002276,0.006365,46575103,30913515,0,0,42662,0,1,1 +1774104414.496613,0.90,4,3992.50,54.19,1595.79,2121.48,0.00,2.006859,0.000195,238,2,0.002314,0.006375,46575175,30913638,0,0,42664,0,1,1 +1774104419.496546,0.90,4,3992.50,54.17,1596.29,2120.98,0.00,0.000000,0.000000,238,2,0.001831,0.005594,46575231,30913741,0,0,42667,0,1,1 +1774104424.496549,1.05,4,3992.50,54.17,1596.29,2120.97,0.00,3518434855048.323730,3518434855050.282227,70,0,0.002888,0.007636,46575313,30913887,0,0,42670,0,1,1 +1774104429.496454,0.95,4,3992.50,54.30,1591.07,2126.15,0.00,70892.267427,86828.712709,6056470,1545312,0.002284,0.006364,46575383,30914010,0,0,42672,0,1,1 +1774104434.496568,0.80,4,3992.50,54.30,1591.11,2126.15,0.00,3518356735098.787109,3518356719161.050781,238,2,0.002402,0.006521,46575462,30914143,0,0,42675,0,1,1 +1774104439.493996,1.25,4,3992.50,54.35,1588.23,2127.86,0.00,0.000000,0.000000,238,2,0.001907,0.005173,46575523,30914247,0,0,42677,0,1,1 +1774104444.496598,0.75,4,3992.50,54.26,1591.68,2124.41,0.00,3516606756688.712891,3516606756690.670410,70,0,0.002350,0.006403,46575597,30914373,0,0,42679,0,1,1 +1774104449.491923,1.00,4,3992.50,54.09,1598.37,2117.72,0.00,1.491727,0.028347,237,247,0.002278,0.006372,46575666,30914496,0,0,42682,0,1,1 +1774104454.491908,0.90,4,3992.50,54.09,1598.38,2117.72,0.00,70893.743933,86827.449576,6057244,1545657,0.002493,0.006888,46575743,30914629,0,0,42684,0,1,1 +1774104459.496040,0.80,4,3992.50,54.09,1598.38,2117.72,0.00,3515532023260.410156,3515532007339.411133,238,2,0.002013,0.005626,46575804,30914739,0,0,42687,0,1,1 +1774104464.495425,38.08,4,3992.50,59.93,1376.72,2346.51,0.00,0.000000,0.000000,238,2,86.739667,0.036702,46585030,30917055,0,0,42690,0,1,1 +1774104469.495522,31.87,4,3992.50,60.07,1371.29,2351.86,0.00,3518368758314.864746,0.028124,237,247,119.163558,0.024255,46597231,30918627,0,0,42692,0,1,1 +1774104474.495937,30.92,4,3992.50,59.92,1369.70,2345.98,0.00,0.000000,0.000000,237,247,119.184816,0.038216,46609435,30921331,0,0,42695,0,1,1 +1774104479.496674,30.46,4,3992.50,59.97,1367.98,2347.96,0.00,3517918612798.604492,3517918612800.114746,21,0,119.329749,0.044801,46621661,30924567,0,0,42697,0,1,1 +1774104484.495766,30.56,4,3992.50,60.37,1352.04,2363.67,0.00,0.175032,0.000000,199,0,118.124937,0.054097,46633834,30928643,0,0,42699,0,1,1 +1774104489.495628,31.48,4,3992.50,60.33,1353.94,2361.88,0.00,70892.744872,86829.789511,6056470,1545603,119.954171,0.030369,46645239,30930827,0,0,42702,0,1,1 +1774104494.496043,31.00,4,3992.50,60.44,1349.50,2366.30,0.00,3518144852628.938965,3518144836693.657227,199,0,119.629939,0.032300,46657089,30933007,0,0,42704,0,1,1 +1774104499.495829,31.50,4,3992.50,59.99,1367.20,2348.61,0.00,1.831914,0.000195,238,2,119.365370,0.021300,46668889,30934533,0,0,42707,0,1,1 +1774104504.492497,16.20,4,3992.50,55.80,1534.75,2184.56,0.00,3520784034658.175781,3520784034660.008789,199,0,104.008645,0.019811,46679186,30935923,0,0,42710,0,1,1 +1774104509.496769,1.05,4,3992.50,54.82,1572.85,2146.47,0.00,3515432801189.499512,0.000000,21,0,0.004728,0.006011,46679294,30936049,0,0,42712,0,1,1 +1774104514.496376,12.56,4,3992.50,54.60,1581.43,2137.82,0.00,0.000000,0.000000,21,0,10.245750,0.064706,46683101,30938946,0,0,42715,0,1,1 +1774104519.496662,18.15,4,3992.50,54.18,1598.02,2121.16,0.00,70891.160642,86823.149314,6057255,1546811,30.006682,0.122993,46692382,30945940,0,0,42717,0,1,1 +1774104524.496761,1.86,4,3992.50,53.98,1605.65,2113.54,0.00,3518367375096.052246,3518367359163.421387,70,0,0.010758,0.011952,46692617,30946192,0,0,42719,0,1,1 +1774104529.496042,1.35,4,3992.50,54.00,1604.57,2114.15,0.00,3518943514476.015137,0.000000,21,0,0.003879,0.007133,46692717,30946333,0,0,42722,0,1,1 +1774104534.496766,0.95,4,3992.50,54.01,1604.31,2114.43,0.00,1.538156,0.028316,237,247,0.003877,0.007121,46692817,30946473,0,0,42724,0,1,1 +1774104539.496394,15.36,4,3992.50,54.43,1585.89,2130.95,0.00,0.468492,3518699436439.973145,238,2,0.030271,59.899892,46694867,30953083,0,0,42727,0,1,1 +1774104544.492609,30.24,4,3992.50,54.58,1573.74,2137.07,0.00,3521102513062.268066,3521102513064.228027,70,0,0.042402,120.023014,46697932,30965816,0,0,42730,0,1,1 +1774104549.494382,8.39,4,3992.50,53.99,1597.33,2113.85,0.00,70865.931128,86980.409035,6056486,1548424,0.018447,25.289296,46698947,30968693,0,0,42732,0,1,1 +1774104554.491905,13.16,4,3992.50,54.09,1596.62,2117.68,0.00,3520181287144.221680,3520181271014.575195,237,247,40.101785,0.029356,46704859,30970564,0,0,42734,0,1,1 +1774104559.496655,1.15,4,3992.50,53.86,1605.02,2108.73,0.00,0.468012,3515097426238.047852,238,2,0.005854,0.005960,46705006,30970691,0,0,42737,0,1,1 +1774104564.496629,2.01,4,3992.50,54.05,1597.59,2116.16,0.00,3518455936919.992676,0.028125,237,247,0.004367,0.007504,46705133,30970823,0,0,42739,0,1,1 +1774104569.496612,0.65,4,3992.50,54.06,1597.36,2116.38,0.00,70910.508207,87011.928679,6057378,1548993,0.003728,0.005744,46705249,30970939,0,0,42742,0,1,1 +1774104574.496226,0.55,4,3992.50,54.05,1597.37,2116.38,0.00,3518708682350.517578,3518708666249.244141,199,0,0.003394,0.004979,46705350,30971037,0,0,42744,0,1,1 +1774104579.496383,0.95,4,3992.50,53.68,1611.94,2101.82,0.00,70909.402602,87032.001620,6057378,1549194,0.003706,0.005298,46705457,30971144,0,0,42747,0,1,1 +1774104584.496173,0.65,4,3992.50,53.71,1610.73,2103.03,0.00,3518584969913.476074,3518584953787.860840,238,2,0.003155,0.005697,46705565,30971259,0,0,42750,0,1,1 +1774104589.496147,0.95,4,3992.50,53.86,1602.21,2108.66,0.00,3518455957327.145996,0.028125,237,247,0.003325,0.004788,46705662,30971354,0,0,42752,0,1,1 +1774104594.496745,0.75,4,3992.50,53.91,1600.16,2110.76,0.00,3518015951801.148438,3518015951802.658691,21,0,0.003391,0.005766,46705776,30971473,0,0,42754,0,1,1 +1774104599.496426,0.65,4,3992.50,53.91,1600.18,2110.74,0.00,0.000000,0.000000,21,0,0.003868,0.005910,46705894,30971593,0,0,42757,0,1,1 +1774104604.493575,0.70,4,3992.50,53.93,1599.29,2111.63,0.00,2.007981,0.000195,238,2,0.003257,0.004591,46705987,30971685,0,0,42759,0,1,1 +1774104609.495625,0.65,4,3992.50,53.74,1606.68,2104.24,0.00,3516995699260.735352,3516995699262.741699,21,0,0.003995,0.005966,46706113,30971809,0,0,42762,0,1,1 +1774104614.491904,0.60,4,3992.50,53.75,1606.46,2104.45,0.00,1.539525,0.028341,237,247,0.003344,0.004668,46706212,30971905,0,0,42764,0,1,1 +1774104619.496423,1.15,4,3992.50,53.89,1604.05,2109.82,0.00,3515260212316.847656,3515260212318.356445,21,0,0.003861,0.006478,46706329,30972024,0,0,42767,0,1,1 +1774104624.492577,0.70,4,3992.50,53.89,1603.94,2109.80,0.00,0.000000,0.000000,21,0,0.003521,0.004391,46706427,30972119,0,0,42770,0,1,1 +1774104629.496404,1.36,4,3992.50,53.89,1603.77,2109.89,0.00,2.005301,0.000195,238,2,0.088517,2.912782,46712024,30978062,0,0,42772,0,1,1 +1774104634.494587,2.18,4,3992.50,53.91,1602.64,2110.69,0.00,3519716455458.523926,3519716455460.483398,70,0,0.126288,4.674051,46720667,30987292,0,0,42775,0,1,1 +1774104639.495891,2.07,4,3992.50,54.00,1598.88,2114.18,0.00,70893.284620,87012.674210,6057387,1549806,0.124038,4.673565,46729162,30996405,0,0,42777,0,1,1 +1774104644.496191,1.82,4,3992.50,53.99,1599.11,2113.64,0.00,3518225822775.324707,3518225806651.237305,237,247,0.125418,4.674469,46737745,31005677,0,0,42779,0,1,1 +1774104649.496698,2.53,4,3992.50,54.35,1585.50,2128.01,0.00,3518080602159.679199,3518080602161.014648,199,0,0.123160,4.671814,46746268,31014712,0,0,42782,0,1,1 +1774104654.491937,1.98,4,3992.50,54.15,1593.10,2120.00,0.00,3521790813759.040039,0.000000,21,0,0.123864,4.674249,46754819,31023889,0,0,42784,0,1,1 +1774104659.496040,2.23,4,3992.50,54.27,1588.12,2124.73,0.00,0.174857,0.000000,199,0,0.123562,4.673698,46763344,31033085,0,0,42787,0,1,1 +1774104664.496391,2.03,4,3992.50,54.13,1593.09,2119.48,0.00,3518190543618.544922,0.000000,21,0,0.121905,4.672311,46771795,31042181,0,0,42790,0,1,1 +1774104669.491885,2.38,4,3992.50,54.12,1593.37,2118.87,0.00,1.539766,0.028346,237,247,0.123670,4.658896,46780340,31051334,0,0,42792,0,1,1 +1774104674.496797,1.56,4,3992.50,53.73,1608.64,2103.50,0.00,70836.575570,86966.003435,6056613,1549803,0.026423,0.826624,46781990,31053093,0,0,42795,0,1,1 +1774104679.491903,1.15,4,3992.50,54.03,1596.96,2115.48,0.00,4.113304,4.183587,6057387,1550170,0.002171,0.004927,46782078,31053190,0,0,42797,0,1,1 +1774104684.493551,0.70,4,3992.50,54.06,1595.74,2116.40,0.00,0.000000,4.047104,6057387,1550243,0.001878,0.004716,46782147,31053275,0,0,42799,0,1,1 +1774104689.496552,0.75,4,3992.50,54.07,1595.01,2117.13,0.00,0.000000,4.003066,6057387,1550266,0.002234,0.005117,46782231,31053375,0,0,42802,0,1,1 +1774104694.493371,0.70,4,3992.50,54.27,1587.49,2124.98,0.00,3520676572744.318359,3520676556580.140625,238,2,0.002045,0.004503,46782311,31053464,0,0,42804,0,1,1 +1774104699.496671,0.75,4,3992.50,54.32,1585.86,2126.67,0.00,3516116339330.333008,3516116339332.338867,21,0,0.001953,0.004431,46782384,31053549,0,0,42807,0,1,1 +1774104704.491933,0.60,4,3992.50,54.32,1585.86,2126.66,0.00,1.539838,0.028347,237,247,0.002311,0.005112,46782473,31053649,0,0,42810,0,1,1 +1774104709.496408,0.65,4,3992.50,54.32,1585.87,2126.66,0.00,3515291010771.973145,3515291010773.481934,21,0,0.001966,0.004439,46782547,31053734,0,0,42812,0,1,1 +1774104714.496682,1.10,4,3992.50,54.32,1583.28,2126.87,0.00,70907.936165,87071.014918,6057387,1550365,0.001581,0.003653,46782611,31053807,0,0,42815,0,1,1 +1774104719.496060,0.70,4,3992.50,54.24,1586.61,2123.57,0.00,3518874468618.301270,3518874452450.817383,237,247,0.002226,0.004760,46782695,31053905,0,0,42817,0,1,1 +1774104724.496165,0.75,4,3992.50,54.23,1586.78,2123.39,0.00,3518363792591.747070,3518363792593.257324,21,0,0.002965,0.006239,46782801,31054027,0,0,42819,0,1,1 +1774104729.495883,0.65,4,3992.50,53.98,1596.68,2113.44,0.00,0.175010,0.000000,199,0,0.001782,0.003924,46782872,31054109,0,0,42822,0,1,1 +1774104734.496319,0.70,4,3992.50,54.02,1595.32,2114.85,0.00,0.000000,0.000000,199,0,0.002282,0.005018,46782959,31054202,0,0,42824,0,1,1 +1774104739.495849,18.01,4,3992.50,61.63,1305.27,2412.84,0.00,3518767728143.284180,0.000000,70,0,1.118152,0.033360,46785338,31055791,0,0,42827,0,1,1 +1774104744.491912,6.75,4,3992.50,61.14,1324.07,2393.82,0.00,70967.650310,87144.613855,6057387,1550573,4.678364,0.133227,46794565,31064539,0,0,42830,0,1,1 +1774104749.496184,2.13,4,3992.50,61.38,1315.02,2403.30,0.00,3515433904195.206055,3515433888042.819824,238,2,4.691383,0.129366,46803915,31073250,0,0,42832,0,1,1 +1774104754.491998,2.13,4,3992.50,61.39,1314.90,2403.41,0.00,0.000000,0.000000,238,2,4.686776,0.128207,46813172,31081899,0,0,42835,0,1,1 +1774104759.495840,2.13,4,3992.50,61.37,1316.27,2402.60,0.00,70851.268778,87009.138643,6056613,1550370,4.667428,0.126154,46822397,31090525,0,0,42837,0,1,1 +1774104764.491987,2.18,4,3992.50,61.33,1317.81,2401.04,0.00,0.000000,0.008503,6056613,1550387,4.701673,0.127090,46831636,31099126,0,0,42839,0,1,1 +1774104769.496379,2.54,4,3992.50,61.80,1299.71,2419.70,0.00,0.000000,0.053859,6056613,1550418,4.669863,0.127841,46840862,31107821,0,0,42842,0,1,1 +1774104774.492677,2.19,4,3992.50,61.33,1318.21,2401.35,0.00,4.112322,0.052578,6057387,1550703,4.682172,0.127150,46850154,31116437,0,0,42844,0,1,1 +1774104779.495789,2.13,4,3992.50,61.27,1320.82,2398.86,0.00,3516248722518.198242,3516248706363.969238,21,0,4.699496,0.126057,46859403,31125022,0,0,42847,0,1,1 +1774104784.491899,1.93,4,3992.50,61.21,1323.43,2396.46,0.00,70967.030239,87143.911456,6057387,1550736,4.661896,0.128305,46868707,31133582,0,0,42849,0,1,1 +1774104789.494746,2.23,4,3992.50,61.15,1326.19,2394.07,0.00,3516434923529.713867,3516434907374.616211,21,0,4.691927,0.126941,46877945,31142109,0,0,42852,0,1,1 +1774104794.496583,2.28,4,3992.50,61.21,1323.76,2396.56,0.00,2.006099,0.000195,238,2,4.693155,0.128409,46887273,31150767,0,0,42855,0,1,1 +1774104799.492287,2.24,4,3992.50,61.44,1315.07,2405.54,0.00,70970.779410,87151.039814,6057387,1550795,4.704351,0.128447,46896573,31159412,0,0,42857,0,1,1 +1774104804.495962,2.23,4,3992.50,61.33,1319.40,2401.07,0.00,3515853569229.735840,3515853553077.202637,70,0,4.658285,0.127069,46905787,31167949,0,0,42859,0,1,1 +1774104809.495988,2.03,4,3992.50,61.06,1329.45,2390.78,0.00,70911.399489,87075.736841,6057387,1550831,4.700457,0.126377,46915029,31176499,0,0,42862,0,1,1 +1774104814.492722,2.08,4,3992.50,60.92,1335.07,2385.23,0.00,3520736935444.518066,3520736919269.578125,21,0,4.673824,0.128525,46924289,31185093,0,0,42864,0,1,1 +1774104819.496347,2.54,4,3992.50,61.34,1318.78,2401.55,0.00,0.000000,0.000000,21,0,4.718333,0.125966,46933607,31193667,0,0,42867,0,1,1 +1774104824.495968,1.83,4,3992.50,61.00,1331.89,2388.46,0.00,70917.193245,87082.811624,6057387,1550879,4.679871,0.126010,46942765,31202191,0,0,42870,0,1,1 +1774104829.495757,2.33,4,3992.50,61.04,1329.85,2389.79,0.00,3518585352749.675781,3518585336584.552734,70,0,4.664656,0.128054,46952005,31210745,0,0,42872,0,1,1 +1774104834.492741,1.93,4,3992.50,60.94,1333.81,2385.77,0.00,70950.471854,87128.817016,6056613,1550690,4.689060,0.128723,46961321,31219338,0,0,42875,0,1,1 +1774104839.496003,2.13,4,3992.50,60.95,1333.41,2386.16,0.00,3516142975640.739258,3516142959481.237305,237,247,4.682126,0.127380,46970563,31227970,0,0,42877,0,1,1 +1774104844.491914,2.03,4,3992.50,61.01,1330.88,2388.70,0.00,3521316805842.651367,3521316805844.163086,21,0,4.714825,0.126693,46979805,31236534,0,0,42879,0,1,1 +1774104849.494586,1.98,4,3992.50,61.15,1325.34,2394.22,0.00,1.537557,0.028305,237,247,4.686180,0.127729,46989102,31245096,0,0,42882,0,1,1 +1774104854.491884,1.93,4,3992.50,60.87,1336.58,2383.13,0.00,70948.618612,87123.352055,6057387,1551000,4.697071,0.127175,46998313,31253661,0,0,42884,0,1,1 +1774104859.491938,2.38,4,3992.50,60.93,1334.08,2385.63,0.00,3518398951381.738281,3518398935215.919922,237,247,4.656137,0.127497,47007471,31262219,0,0,42887,0,1,1 +1774104864.496553,1.67,4,3992.50,60.89,1335.29,2384.12,0.00,3515192482339.298340,3515192482340.807129,21,0,4.687511,0.127919,47016748,31270803,0,0,42890,0,1,1 +1774104869.495921,2.08,4,3992.50,60.80,1339.21,2380.34,0.00,0.048053,0.000000,70,0,4.719975,0.125061,47025971,31279355,0,0,42892,0,1,1 +1774104874.496159,1.98,4,3992.50,60.99,1329.53,2388.02,0.00,70904.291153,87072.200479,6056613,1550828,4.658962,0.126535,47035212,31287892,0,0,42895,0,1,1 +1774104879.496130,1.98,4,3992.50,61.36,1317.20,2402.39,0.00,3518457634398.640137,3518457618229.867676,70,0,4.675083,0.128320,47044478,31296491,0,0,42897,0,1,1 +1774104884.496311,2.08,4,3992.50,61.34,1317.96,2401.63,0.00,3518310081081.330078,0.000000,21,0,4.712128,0.126788,47053702,31305111,0,0,42899,0,1,1 +1774104889.496029,2.23,4,3992.50,61.46,1319.59,2406.34,0.00,0.000000,0.000000,21,0,4.693125,0.126976,47063014,31313733,0,0,42902,0,1,1 +1774104894.491920,2.99,4,3992.50,60.95,1339.22,2386.42,0.00,70970.141776,87148.071314,6057387,1551170,4.668799,0.126472,47072215,31322289,0,0,42904,0,1,1 +1774104899.492419,2.03,4,3992.50,61.20,1329.60,2396.02,0.00,3518086270784.186523,3518086254621.163574,21,0,4.683380,0.124938,47081386,31330854,0,0,42907,0,1,1 +1774104904.495310,2.23,4,3992.50,61.15,1331.40,2394.24,0.00,0.000000,0.000000,21,0,4.690674,0.127242,47090622,31339470,0,0,42910,0,1,1 +1774104909.492175,2.14,4,3992.50,61.11,1333.30,2392.45,0.00,1.539344,0.028338,237,247,4.681936,0.127194,47099890,31348095,0,0,42912,0,1,1 +1774104914.496576,1.88,4,3992.50,61.30,1325.69,2399.91,0.00,3515342910543.679688,3515342910545.188477,21,0,4.692852,0.127367,47109148,31356749,0,0,42915,0,1,1 +1774104919.495869,2.49,4,3992.50,61.47,1319.46,2406.75,0.00,0.048054,0.000000,70,0,4.695459,0.128130,47118428,31365297,0,0,42917,0,1,1 +1774104924.496049,2.13,4,3992.50,61.13,1332.76,2393.36,0.00,0.000000,0.000000,70,0,4.673221,0.126947,47127624,31373845,0,0,42919,0,1,1 +1774104929.491894,1.88,4,3992.50,61.17,1331.16,2394.96,0.00,3521363516898.965820,0.000000,21,0,4.696315,0.126242,47136761,31382448,0,0,42922,0,1,1 +1774104934.491953,1.88,4,3992.50,61.35,1324.39,2401.86,0.00,0.000000,0.000000,21,0,4.687997,0.128498,47146090,31391074,0,0,42924,0,1,1 +1774104939.494671,2.33,4,3992.50,61.38,1322.98,2403.17,0.00,0.174905,0.000000,199,0,4.694821,0.126572,47155323,31399644,0,0,42927,0,1,1 +1774104944.492289,1.88,4,3992.50,61.22,1329.39,2396.74,0.00,3520113984202.396484,0.000000,21,0,4.693054,0.126872,47164556,31408262,0,0,42930,0,1,1 +1774104949.491900,3.81,4,3992.50,61.62,1313.61,2412.71,0.00,0.000000,0.000000,21,0,4.684825,0.127028,47173783,31416803,0,0,42932,0,1,1 +1774104954.496465,2.18,4,3992.50,61.29,1326.71,2399.46,0.00,0.000000,0.000000,21,0,4.672197,0.126920,47183015,31425407,0,0,42935,0,1,1 +1774104959.495536,2.54,4,3992.50,61.43,1321.21,2404.95,0.00,0.000000,0.000000,21,0,4.686250,0.126769,47192260,31433975,0,0,42937,0,1,1 +1774104964.495682,2.13,4,3992.50,61.28,1326.85,2399.32,0.00,70909.757633,87074.162434,6057389,1551483,4.699530,0.125789,47201456,31442514,0,0,42939,0,1,1 +1774104969.494402,1.83,4,3992.50,60.85,1343.81,2382.37,0.00,3519337960385.504883,3519337944216.314453,199,0,4.679811,0.125812,47210699,31451073,0,0,42942,0,1,1 +1774104974.492125,2.08,4,3992.50,61.09,1334.64,2391.69,0.00,70939.847899,87116.361530,6056615,1551269,4.688864,0.127522,47219933,31459633,0,0,42944,0,1,1 +1774104979.496220,2.23,4,3992.50,61.56,1316.54,2410.18,0.00,3515557848988.685547,3515557832832.945312,21,0,4.654266,0.127244,47229160,31468103,0,0,42947,0,1,1 +1774104984.491943,2.24,4,3992.50,61.30,1326.61,2400.07,0.00,0.000000,0.000000,21,0,4.729177,0.124865,47238418,31476702,0,0,42950,0,1,1 +1774104989.491890,2.28,4,3992.50,61.15,1332.39,2394.29,0.00,0.000000,0.000000,21,0,4.676231,0.128198,47247700,31485298,0,0,42952,0,1,1 +1774104994.491907,2.33,4,3992.50,61.45,1320.84,2405.80,0.00,2.006829,0.000195,238,2,4.697544,0.126980,47256987,31493868,0,0,42955,0,1,1 +1774104999.496261,2.44,4,3992.50,61.31,1326.16,2400.45,0.00,0.000000,0.000000,238,2,4.680265,0.125522,47266149,31502413,0,0,42957,0,1,1 +1774105004.496192,2.34,4,3992.50,60.97,1339.61,2387.06,0.00,70910.793365,87077.991386,6057389,1551630,4.678780,0.127732,47275381,31510974,0,0,42959,0,1,1 +1774105009.495596,2.94,4,3992.50,61.83,1305.95,2420.81,0.00,3518856962944.829102,3518856946775.923828,238,2,4.654639,0.129113,47284666,31519577,0,0,42962,0,1,1 +1774105014.496175,2.23,4,3992.50,61.48,1319.74,2406.95,0.00,70901.605114,87066.761100,6057389,1551675,4.717146,0.125091,47293836,31528125,0,0,42964,0,1,1 +1774105019.492853,2.69,4,3992.50,61.06,1336.21,2390.58,0.00,3520776605304.033691,3520776589126.254883,238,2,4.695256,0.127830,47303096,31536672,0,0,42967,0,1,1 +1774105024.496605,2.13,4,3992.50,60.96,1339.85,2386.83,0.00,3515798873246.669434,3515798873248.500000,199,0,4.662855,0.125761,47312220,31545124,0,0,42970,0,1,1 +1774105029.491957,1.98,4,3992.50,61.24,1328.89,2397.80,0.00,3521711080955.342773,0.000000,21,0,4.678163,0.128068,47321464,31553708,0,0,42972,0,1,1 +1774105034.496093,2.38,4,3992.50,61.46,1320.26,2406.43,0.00,1.537107,0.028297,237,247,4.700226,0.124693,47330638,31562286,0,0,42975,0,1,1 +1774105039.496000,8.67,4,3992.50,61.98,1302.05,2426.79,0.00,3518502522140.279785,3518502522141.790039,21,0,8.756199,0.172864,47343762,31573360,0,0,42977,0,1,1 +1774105044.494270,9.45,4,3992.50,61.79,1307.65,2419.03,0.00,0.175061,0.000000,199,0,16.858838,0.239913,47363710,31589494,0,0,42979,0,1,1 +1774105049.496471,12.46,4,3992.50,61.62,1314.14,2412.46,0.00,70880.443122,87039.253917,6057390,1552836,22.869768,0.279755,47388888,31608476,0,0,42982,0,1,1 +1774105054.495654,7.87,4,3992.50,61.27,1325.61,2399.00,0.00,3519012363476.140137,3519012347305.739746,238,2,10.810893,0.183064,47403375,31620908,0,0,42984,0,1,1 +1774105059.495745,2.79,4,3992.50,61.68,1311.71,2414.90,0.00,3518373359554.026367,0.028124,237,247,4.667679,0.130337,47412679,31629583,0,0,42987,0,1,1 +1774105064.492646,2.50,4,3992.50,61.75,1308.78,2417.84,0.00,0.468748,3520619136533.248047,238,2,4.517187,3.644343,47427887,31644664,0,0,42990,0,1,1 +1774105069.496403,3.46,4,3992.50,61.70,1301.46,2415.61,0.00,0.000000,0.000000,238,2,4.767075,4.400133,47444838,31661587,0,0,42992,0,1,1 +1774105074.491896,2.80,4,3992.50,61.38,1314.04,2403.05,0.00,3521610920563.235840,3521610920565.244629,21,0,4.411359,4.624219,47461590,31678318,0,0,42995,0,1,1 +1774105079.495921,3.01,4,3992.50,61.31,1316.75,2400.32,0.00,2.005222,0.000195,238,2,4.725678,4.675680,47478830,31695483,0,0,42997,0,1,1 +1774105084.492567,3.11,4,3992.50,61.17,1322.06,2394.93,0.00,70953.302808,87136.875694,6056616,1553305,4.582865,4.606039,47495876,31712469,0,0,42999,0,1,1 +1774105089.491891,3.11,4,3992.50,61.30,1317.08,2399.92,0.00,3518912509273.924316,3518912493101.028320,21,0,4.481140,4.676309,47512784,31729354,0,0,43002,0,1,1 +1774105094.491910,3.21,4,3992.50,61.49,1309.43,2407.50,0.00,70911.569102,87079.785381,6057390,1553613,4.504739,4.675890,47529610,31746145,0,0,43004,0,1,1 +1774105099.492764,3.93,4,3992.50,61.67,1301.95,2414.48,0.00,3517836493422.158691,3517836477256.595215,70,0,4.663816,4.610320,47546797,31763170,0,0,43007,0,1,1 +1774105104.495423,3.16,4,3992.50,61.34,1314.63,2401.55,0.00,0.126886,0.000000,199,0,4.659506,4.329271,47563423,31779640,0,0,43010,0,1,1 +1774105109.496659,2.96,4,3992.50,61.44,1310.31,2405.60,0.00,3517568076906.365234,0.000000,21,0,4.633869,4.521829,47580355,31796492,0,0,43012,0,1,1 +1774105114.494479,2.91,4,3992.50,61.44,1310.30,2405.36,0.00,0.048068,0.000000,70,0,4.774640,4.674852,47597590,31813618,0,0,43015,0,1,1 +1774105119.496157,3.26,4,3992.50,61.39,1311.77,2403.61,0.00,70887.994324,87081.133091,6057390,1554073,4.693882,4.270486,47614218,31830190,0,0,43017,0,1,1 +1774105124.496680,2.80,4,3992.50,61.33,1314.25,2401.09,0.00,3518068931951.657227,3518068915754.828613,21,0,4.624574,4.312890,47630758,31846624,0,0,43019,0,1,1 +1774105129.496521,3.32,4,3992.50,61.83,1293.36,2420.75,0.00,70909.963889,87139.567711,6056616,1554041,4.090765,4.599358,47646776,31862478,0,0,43022,0,1,1 +1774105134.495395,2.60,4,3992.50,61.55,1304.12,2409.76,0.00,3519229885330.393555,3519229869097.472168,199,0,4.544766,4.571058,47663706,31879265,0,0,43024,0,1,1 +1774105139.492580,3.01,4,3992.50,61.44,1308.23,2405.65,0.00,3520419309158.492676,0.000000,21,0,4.558034,4.616704,47680624,31896106,0,0,43027,0,1,1 +1774105144.492112,3.11,4,3992.50,61.36,1311.50,2402.48,0.00,0.175016,0.000000,199,0,4.664852,4.471729,47697411,31912882,0,0,43030,0,1,1 +1774105149.496279,3.00,4,3992.50,61.24,1316.13,2397.68,0.00,3515507264898.158691,0.000000,70,0,4.648584,4.573298,47714424,31929864,0,0,43032,0,1,1 +1774105154.496376,2.96,4,3992.50,61.32,1313.45,2400.63,0.00,3518368832199.593262,0.000000,21,0,4.726885,4.304230,47731024,31946442,0,0,43035,0,1,1 +1774105159.493063,3.17,4,3992.50,61.46,1312.69,2406.30,0.00,1.539399,0.028339,237,247,4.469386,4.609720,47747846,31963215,0,0,43037,0,1,1 +1774105164.492000,3.06,4,3992.50,61.20,1322.98,2396.02,0.00,3519185388399.072754,3519185388400.583008,21,0,4.474757,4.655600,47764576,31979915,0,0,43039,0,1,1 +1774105169.495880,3.05,4,3992.50,61.18,1323.66,2395.19,0.00,0.174864,0.000000,199,0,4.556591,4.497897,47781285,31996649,0,0,43042,0,1,1 +1774105174.491891,2.86,4,3992.50,61.19,1323.16,2395.75,0.00,0.000000,0.000000,199,0,4.570282,4.579961,47798218,32013478,0,0,43044,0,1,1 +1774105179.496470,2.90,4,3992.50,61.25,1320.84,2397.98,0.00,1.830160,0.000195,238,2,4.696058,4.210072,47814641,32029859,0,0,43047,0,1,1 +1774105184.492581,3.02,4,3992.50,61.25,1320.85,2397.90,0.00,70965.024758,87231.303094,6057390,1554719,4.544652,4.654861,47831686,32046917,0,0,43050,0,1,1 +1774105189.492733,3.21,4,3992.50,61.68,1303.64,2415.09,0.00,3518330571256.698730,3518330555005.573242,21,0,4.520571,4.599512,47848553,32063743,0,0,43052,0,1,1 +1774105194.491879,3.01,4,3992.50,61.49,1311.26,2407.46,0.00,0.000000,0.000000,21,0,4.490694,4.674876,47865434,32080506,0,0,43055,0,1,1 +1774105199.492218,3.01,4,3992.50,61.56,1308.43,2410.27,0.00,1.538275,0.028318,237,247,4.654887,4.527623,47882453,32097429,0,0,43057,0,1,1 +1774105204.491954,3.57,4,3992.50,61.49,1311.26,2407.46,0.00,0.000000,0.000000,237,247,4.686708,4.555450,47899525,32114344,0,0,43059,0,1,1 +1774105209.491882,3.11,4,3992.50,61.50,1310.88,2407.89,0.00,70911.327061,87191.749908,6057399,1555111,4.570989,4.594298,47916619,32131349,0,0,43062,0,1,1 +1774105214.496146,2.96,4,3992.50,61.64,1305.31,2413.43,0.00,3515438610159.063477,3515438593892.750000,237,247,4.385317,4.674551,47933254,32147876,0,0,43064,0,1,1 +1774105219.491903,3.52,4,3992.50,61.77,1300.72,2418.42,0.00,70966.424576,87283.423915,6056625,1555014,4.599575,4.673868,47950503,32165062,0,0,43067,0,1,1 +1774105224.491897,3.78,4,3992.50,61.34,1317.05,2401.55,0.00,0.000000,0.007910,6056625,1555032,4.677173,4.673820,47967722,32182116,0,0,43070,0,1,1 +1774105229.492364,3.26,4,3992.50,61.36,1316.42,2402.27,0.00,0.000000,0.028318,6056625,1555076,4.562825,4.395293,47984228,32198694,0,0,43072,0,1,1 +1774105234.496435,3.01,4,3992.50,61.27,1319.81,2398.82,0.00,3515575213662.819824,3515575197372.894043,237,247,4.582249,4.488145,48001112,32215445,0,0,43075,0,1,1 +1774105239.492260,2.96,4,3992.50,61.23,1321.54,2397.14,0.00,3521377501344.741699,3521377501346.205078,70,0,4.624580,4.666595,48018348,32232438,0,0,43077,0,1,1 +1774105244.495330,3.46,4,3992.50,61.26,1320.32,2398.37,0.00,3516278126909.532227,0.000000,21,0,4.757077,4.583562,48035610,32249615,0,0,43079,0,1,1 +1774105249.496814,3.37,4,3992.50,61.45,1304.04,2406.04,0.00,1.537922,0.028312,237,247,4.582951,4.580320,48052424,32266435,0,0,43082,0,1,1 +1774105254.496285,3.11,4,3992.50,60.88,1322.34,2383.52,0.00,3518809598871.414551,3518809598872.924805,21,0,4.671261,4.513035,48069350,32283261,0,0,43084,0,1,1 +1774105259.495867,3.26,4,3992.50,61.17,1310.98,2394.80,0.00,0.175015,0.000000,199,0,4.566247,4.624518,48086356,32300209,0,0,43087,0,1,1 +1774105264.496269,3.01,4,3992.50,60.87,1322.52,2383.25,0.00,1.831689,0.000195,238,2,4.648634,4.601723,48103402,32317073,0,0,43090,0,1,1 +1774105269.492664,3.17,4,3992.50,60.92,1320.84,2385.03,0.00,0.000000,0.000000,238,2,4.613325,4.637763,48120449,32334182,0,0,43092,0,1,1 +1774105274.496588,3.16,4,3992.50,60.96,1319.17,2386.74,0.00,3515677657861.280273,3515677657863.110840,199,0,4.669652,4.553146,48137488,32351166,0,0,43095,0,1,1 +1774105279.492318,3.47,4,3992.50,61.21,1305.34,2396.57,0.00,1.364544,0.028345,237,247,4.542458,4.607045,48154329,32367899,0,0,43097,0,1,1 +1774105284.493507,2.91,4,3992.50,61.00,1313.46,2388.46,0.00,0.468346,3517600560253.277832,238,2,4.699628,4.624296,48171540,32385123,0,0,43099,0,1,1 +1774105289.496570,3.16,4,3992.50,61.03,1312.43,2389.36,0.00,70866.420869,87209.697479,6057399,1555924,4.323452,4.641822,48188075,32401618,0,0,43102,0,1,1 +1774105294.496064,2.91,4,3992.50,61.34,1300.23,2401.59,0.00,3518792809808.768555,3518792793454.323242,237,247,4.662295,4.488769,48205013,32418440,0,0,43104,0,1,1 +1774105299.492157,2.80,4,3992.50,61.53,1293.05,2408.89,0.00,3521189586159.005859,3521189586160.517090,21,0,4.737570,2.522908,48218613,32431653,0,0,43107,0,1,1 +1774105304.492666,2.34,4,3992.50,61.00,1313.61,2388.33,0.00,2.006632,0.000195,238,2,4.702368,0.284448,48228224,32440618,0,0,43110,0,1,1 +1774105309.495983,8.01,4,3992.50,66.69,1095.83,2610.93,0.00,3516104706592.517090,3516104706594.474121,70,0,4.972105,0.131087,48238097,32449308,0,0,43112,0,1,1 +1774105314.491916,8.88,4,3992.50,60.69,1328.82,2375.96,0.00,1.491545,0.028343,237,247,44.502202,0.164153,48252787,32460664,0,0,43115,0,1,1 +1774105319.494081,2.59,4,3992.50,61.02,1315.55,2389.20,0.00,0.000000,0.000000,237,247,4.684331,0.130145,48262131,32469270,0,0,43117,0,1,1 +1774105324.496586,2.24,4,3992.50,60.86,1321.82,2382.95,0.00,0.000000,0.000000,237,247,4.481751,1.665858,48273580,32480545,0,0,43119,0,1,1 +1774105329.491880,3.32,4,3992.50,61.04,1315.03,2389.66,0.00,3521751723124.638672,3521751723126.150391,21,0,4.635129,4.631489,48290965,32497742,0,0,43122,0,1,1 +1774105334.495945,3.92,4,3992.50,61.00,1316.41,2388.36,0.00,1.537129,0.028297,237,247,4.659330,4.578784,48308179,32514872,0,0,43124,0,1,1 +1774105339.496399,3.37,4,3992.50,61.27,1306.88,2398.74,0.00,0.000000,0.000000,237,247,4.735062,4.203770,48324682,32531278,0,0,43127,0,1,1 +1774105344.494997,3.06,4,3992.50,61.06,1315.12,2390.50,0.00,3519424058907.251465,3519424058908.713867,70,0,4.513505,4.421503,48341366,32547828,0,0,43130,0,1,1 +1774105349.496616,3.16,4,3992.50,60.94,1317.88,2385.89,0.00,0.126912,0.000000,199,0,4.600570,4.674943,48358372,32564690,0,0,43132,0,1,1 +1774105354.496482,3.16,4,3992.50,61.06,1315.33,2390.46,0.00,3518531721571.010742,0.000000,21,0,4.716275,4.481737,48375397,32581661,0,0,43135,0,1,1 +1774105359.492080,3.32,4,3992.50,61.08,1314.57,2391.25,0.00,1.539735,0.028345,237,247,4.664203,4.338809,48391971,32598211,0,0,43137,0,1,1 +1774105364.496379,3.52,4,3992.50,61.11,1313.01,2392.68,0.00,3515414662385.771973,3515414662387.280762,21,0,4.350448,4.614605,48408628,32614588,0,0,43139,0,1,1 +1774105369.496341,3.36,4,3992.50,61.42,1300.79,2404.83,0.00,0.000000,0.000000,21,0,4.521089,4.121198,48424581,32630437,0,0,43142,0,1,1 +1774105374.496539,2.48,4,3992.50,61.57,1294.95,2410.43,0.00,0.174993,0.000000,199,0,4.653429,0.690611,48434895,32640151,0,0,43144,0,1,1 +1774105379.495916,2.84,4,3992.50,61.22,1308.79,2396.71,0.00,3518875361648.680176,0.000000,21,0,4.733393,0.128821,48444260,32648834,0,0,43147,0,1,1 +1774105384.495654,2.69,4,3992.50,61.03,1315.95,2389.36,0.00,2.006941,0.000195,238,2,4.658972,0.126269,48453430,32657396,0,0,43150,0,1,1 +1774105389.492632,2.54,4,3992.50,61.17,1310.24,2395.12,0.00,70965.218005,87368.290649,6056774,1556915,4.718779,0.128986,48462794,32666004,0,0,43152,0,1,1 +1774105394.492638,2.38,4,3992.50,61.36,1303.07,2402.26,0.00,3518432824360.211426,3518432807969.076660,21,0,4.668376,0.128298,48472028,32674652,0,0,43155,0,1,1 +1774105399.496374,2.89,4,3992.50,61.14,1316.12,2393.84,0.00,70875.503278,87258.424618,6057548,1557253,4.665386,0.126922,48481269,32683171,0,0,43157,0,1,1 +1774105404.496454,2.54,4,3992.50,61.49,1298.52,2407.57,0.00,3518380878340.823730,3518380861945.924805,21,0,4.726519,0.127942,48490568,32691771,0,0,43159,0,1,1 +1774105409.494900,2.48,4,3992.50,61.36,1303.89,2402.23,0.00,0.000000,0.000000,21,0,4.688950,0.127777,48499751,32700329,0,0,43162,0,1,1 +1774105414.491895,2.69,4,3992.50,61.21,1309.53,2396.57,0.00,70971.112872,87378.193291,6057548,1557352,4.661785,0.125563,48508947,32708833,0,0,43164,0,1,1 +1774105419.492604,2.89,4,3992.50,61.24,1308.20,2397.86,0.00,3517938001655.206543,3517937985258.804199,237,247,4.702648,0.125671,48518110,32717383,0,0,43167,0,1,1 +1774105424.491967,2.34,4,3992.50,61.36,1303.61,2402.51,0.00,3518885505745.991699,3518885505747.501953,21,0,4.685020,0.127221,48527351,32725993,0,0,43170,0,1,1 +1774105429.493543,2.99,4,3992.50,61.57,1304.84,2410.43,0.00,2.006204,0.000195,238,2,4.672388,0.127497,48536633,32734608,0,0,43172,0,1,1 +1774105434.494605,2.64,4,3992.50,61.03,1325.58,2389.65,0.00,3517690484099.838379,0.028119,237,247,4.694603,0.125839,48545864,32743177,0,0,43175,0,1,1 +1774105439.496431,2.99,4,3992.50,61.24,1317.93,2397.50,0.00,0.468286,3517152173020.641113,238,2,4.672773,0.128737,48555185,32751787,0,0,43177,0,1,1 +1774105444.496402,12.30,4,3992.50,68.47,1034.96,2680.81,0.00,3518458016338.384766,3518458016340.216797,199,0,4.734373,0.131961,48564634,32760481,0,0,43179,0,1,1 +1774105449.491910,7.12,4,3992.50,68.83,1021.14,2694.71,0.00,0.000000,0.000000,199,0,4.703692,0.127462,48574327,32769313,0,0,43182,0,1,1 +1774105454.495661,30.07,4,3992.50,67.45,1074.88,2640.96,0.00,1.362357,0.028299,237,247,126.683997,0.149999,48597697,32780703,0,0,43184,0,1,1 +1774105459.495499,32.88,4,3992.50,67.34,1079.68,2636.61,0.00,3518550889742.358398,3518550889743.868652,21,0,130.582188,0.068755,48611799,32785954,0,0,43187,0,1,1 +1774105464.495400,33.72,4,3992.50,66.81,1085.92,2615.60,0.00,70929.860012,87327.723257,6057549,1557695,126.121316,0.061116,48624841,32790511,0,0,43190,0,1,1 +1774105469.496377,32.48,4,3992.50,67.01,1077.97,2623.56,0.00,3517749583948.861816,3517749567554.527832,21,0,121.796870,0.062215,48637044,32794958,0,0,43192,0,1,1 +1774105474.496376,31.63,4,3992.50,67.02,1077.70,2623.84,0.00,2.006837,0.000195,238,2,119.981828,0.059545,48649048,32799275,0,0,43195,0,1,1 +1774105479.492295,26.10,4,3992.50,67.01,1077.85,2623.68,0.00,3521311487129.622559,3521311487131.456055,199,0,120.035582,0.051406,48660819,32803174,0,0,43197,0,1,1 +1774105484.496424,16.94,4,3992.50,60.68,1325.70,2375.76,0.00,70869.926406,87254.194626,6057582,1557807,88.379633,0.040083,48669552,32805962,0,0,43199,0,1,1 +1774105489.492821,19.17,4,3992.50,60.76,1320.95,2379.00,0.00,3520973898949.085449,3520973882539.463867,199,0,71.932211,0.030787,48676758,32807946,0,0,43202,0,1,1 +1774105494.496208,21.93,4,3992.50,60.76,1321.05,2378.83,0.00,70880.449855,87267.301941,6057582,1557930,85.868020,0.031145,48685235,32810106,0,0,43204,0,1,1 +1774105499.492545,24.95,4,3992.50,60.83,1318.43,2381.45,0.00,3521016194996.204590,3521016178586.409668,21,0,96.878970,0.034849,48694835,32812528,0,0,43207,0,1,1 +1774105504.492464,26.86,4,3992.50,60.80,1319.50,2380.43,0.00,0.000000,0.000000,21,0,105.145245,0.035670,48705220,32815116,0,0,43210,0,1,1 +1774105509.495901,27.86,4,3992.50,60.89,1315.79,2384.09,0.00,70875.806563,87266.574017,6056808,1557785,110.214015,0.038627,48716150,32817857,0,0,43212,0,1,1 +1774105514.495844,15.87,4,3992.50,55.38,1531.80,2168.17,0.00,3518476971340.343750,3518476954937.950195,199,0,111.556150,0.040664,48727222,32820675,0,0,43215,0,1,1 +1774105519.496602,1.35,4,3992.50,54.51,1572.66,2134.31,0.00,3517904013539.776367,0.000000,70,0,0.005720,0.007497,48727356,32820831,0,0,43217,0,1,1 +1774105524.491889,11.41,4,3992.50,54.08,1589.34,2117.51,0.00,1.491738,0.028347,237,247,10.090919,0.055294,48730989,32823434,0,0,43219,0,1,1 +1774105529.491992,20.11,4,3992.50,53.72,1603.75,2103.09,0.00,0.000000,0.000000,237,247,30.177452,0.132966,48740559,32830722,0,0,43222,0,1,1 +1774105534.492032,0.95,4,3992.50,53.74,1602.80,2104.04,0.00,0.000000,0.000000,237,247,0.004582,0.008507,48740675,32830885,0,0,43224,0,1,1 +1774105539.495889,0.95,4,3992.50,54.18,1585.42,2121.43,0.00,70872.578374,87260.389967,6057600,1559464,0.003418,0.005861,48740761,32831002,0,0,43227,0,1,1 +1774105544.495993,18.81,4,3992.50,54.49,1570.64,2133.46,0.00,3518364058016.107910,3518364041615.996582,237,247,0.034378,73.916851,48743106,32839239,0,0,43230,0,1,1 +1774105549.496015,30.08,4,3992.50,54.77,1553.10,2144.32,0.00,70926.927194,87467.567990,6057600,1560420,0.058028,120.185846,48747495,32852050,0,0,43232,0,1,1 +1774105554.496503,5.22,4,3992.50,53.82,1590.04,2107.13,0.00,0.011718,37.370083,6057609,1560701,0.012586,11.024410,48748241,32853404,0,0,43235,0,1,1 +1774105559.494281,14.25,4,3992.50,58.31,1417.33,2282.91,0.00,3520001481524.818848,3520001464940.882324,21,0,28.261967,0.024781,48751492,32854749,0,0,43237,0,1,1 +1774105564.491931,2.41,4,3992.50,54.23,1577.16,2123.08,0.00,0.048069,0.000000,70,0,11.828535,0.009432,48752875,32855132,0,0,43239,0,1,1 +1774105569.496784,1.25,4,3992.50,54.29,1574.67,2125.53,0.00,1.956890,0.000195,238,2,0.004587,0.009357,48752991,32855297,0,0,43242,0,1,1 +1774105574.496406,0.60,4,3992.50,53.83,1592.66,2107.58,0.00,3518703306596.310059,3518703306598.317383,21,0,0.003649,0.006477,48753084,32855424,0,0,43244,0,1,1 +1774105579.496084,0.95,4,3992.50,54.22,1582.33,2122.77,0.00,70945.840078,87539.513048,6056950,1561131,0.003657,0.007164,48753178,32855559,0,0,43247,0,1,1 +1774105584.493386,0.60,4,3992.50,54.22,1582.35,2122.75,0.00,3520336672886.962891,3520336656285.352539,70,0,0.003880,0.007136,48753278,32855700,0,0,43250,0,1,1 +1774105589.493412,0.70,4,3992.50,54.22,1582.37,2122.73,0.00,70940.860229,87533.523047,6056950,1561248,0.003903,0.007153,48753380,32855842,0,0,43252,0,1,1 +1774105594.495867,0.70,4,3992.50,54.22,1582.39,2122.72,0.00,3516710211676.790527,3516710195090.726074,237,247,0.003647,0.006483,48753473,32855970,0,0,43255,0,1,1 +1774105599.496671,0.55,4,3992.50,53.96,1592.34,2112.77,0.00,70932.434243,87519.972717,6057724,1561582,0.003742,0.006576,48753572,32856105,0,0,43257,0,1,1 +1774105604.496756,0.65,4,3992.50,53.95,1592.98,2112.08,0.00,3518377453590.096191,3518377437001.632812,70,0,0.003878,0.007122,48753672,32856245,0,0,43259,0,1,1 +1774105609.494978,1.10,4,3992.50,54.20,1578.47,2122.16,0.00,70970.569815,87565.315056,6057724,1561645,0.003879,0.007135,48753772,32856386,0,0,43262,0,1,1 +1774105614.496681,0.65,4,3992.50,54.18,1579.27,2121.29,0.00,3517238877259.237793,3517238860676.042969,70,0,0.003951,0.007147,48753877,32856528,0,0,43264,0,1,1 +1774105619.496316,0.65,4,3992.50,54.18,1579.28,2121.28,0.00,0.126962,0.000000,199,0,0.003421,0.005878,48753963,32856646,0,0,43267,0,1,1 +1774105624.496454,0.75,4,3992.50,54.18,1579.30,2121.26,0.00,3518339767759.537109,0.000000,70,0,0.004481,0.008249,48754076,32856810,0,0,43270,0,1,1 +1774105629.495421,0.55,4,3992.50,54.18,1579.31,2121.25,0.00,70959.998267,87552.403471,6057724,1561796,0.002344,0.004352,48754136,32856895,0,0,43272,0,1,1 +1774105634.492390,11.50,4,3992.50,53.62,1598.71,2099.53,0.00,3520571514695.519043,3520571498096.527832,21,0,0.028383,40.095458,48755939,32861480,0,0,43274,0,1,1 +1774105639.496534,1.10,4,3992.50,53.89,1587.83,2109.99,0.00,0.000000,0.000000,21,0,0.002287,0.006361,48756009,32861603,0,0,43277,0,1,1 +1774105644.491836,0.80,4,3992.50,53.87,1588.65,2108.98,0.00,2.008723,0.000195,238,2,0.002304,0.006349,48756080,32861724,0,0,43279,0,1,1 +1774105649.495942,0.65,4,3992.50,53.89,1587.70,2109.93,0.00,70885.164879,87496.523301,6057724,1562203,0.001830,0.005107,48756136,32861824,0,0,43282,0,1,1 +1774105654.496056,0.65,4,3992.50,53.90,1587.49,2110.14,0.00,3518356866626.082520,3518356850003.294434,199,0,0.002289,0.006356,48756206,32861946,0,0,43284,0,1,1 +1774105659.496302,0.65,4,3992.50,53.90,1587.50,2110.14,0.00,3518264001931.646484,0.000000,70,0,0.002682,0.007430,48756288,32862091,0,0,43287,0,1,1 +1774105664.492860,0.75,4,3992.50,53.89,1587.57,2110.07,0.00,0.000000,0.000000,70,0,0.003213,0.007040,48756360,32862217,0,0,43290,0,1,1 +1774105669.492820,0.95,4,3992.50,53.95,1580.60,2112.20,0.00,0.000000,0.000000,70,0,0.001877,0.005159,48756420,32862320,0,0,43292,0,1,1 +1774105674.496112,0.80,4,3992.50,53.95,1580.42,2112.43,0.00,0.000000,0.000000,70,0,0.002325,0.006383,48756493,32862444,0,0,43294,0,1,1 +1774105679.496197,0.70,4,3992.50,53.95,1580.43,2112.43,0.00,3518377532274.475586,0.000000,21,0,0.002489,0.006560,48756577,32862581,0,0,43297,0,1,1 +1774105684.496083,0.65,4,3992.50,53.94,1580.89,2111.96,0.00,70942.877100,87576.621452,6056950,1562038,0.002276,0.006356,48756646,32862703,0,0,43299,0,1,1 +1774105689.496327,0.85,4,3992.50,53.94,1580.89,2111.96,0.00,3518265430406.442871,3518265413772.376953,237,247,0.003597,0.006636,48756726,32862818,0,0,43302,0,1,1 +1774105694.492060,0.80,4,3992.50,53.94,1580.89,2111.96,0.00,3521442627758.258301,3521442627759.721680,70,0,0.003356,0.006771,48756818,32862954,0,0,43304,0,1,1 +1774105699.492178,20.33,4,3992.50,60.21,1340.14,2357.53,0.00,3518354005440.289551,0.000000,21,0,30.850484,0.024322,48760361,32864273,0,0,43307,0,1,1 +1774105704.496584,35.06,4,3992.50,60.13,1345.42,2354.12,0.00,0.174846,0.000000,199,0,119.063622,0.039340,48772700,32867107,0,0,43310,0,1,1 +1774105709.492150,30.63,4,3992.50,60.25,1340.70,2358.84,0.00,71008.185088,87652.654136,6057724,1562489,119.273967,0.027581,48785048,32868864,0,0,43312,0,1,1 +1774105714.495430,29.83,4,3992.50,60.10,1346.34,2353.14,0.00,3516130271673.098633,3516130255054.421875,70,0,118.684521,0.026709,48797146,32870865,0,0,43315,0,1,1 +1774105719.491918,30.45,4,3992.50,60.08,1347.35,2352.18,0.00,0.127042,0.000000,199,0,119.650684,0.019138,48809542,32872277,0,0,43317,0,1,1 +1774105724.496779,30.22,4,3992.50,60.01,1349.96,2349.62,0.00,1.362055,0.028293,237,247,118.851574,0.030274,48821867,32874395,0,0,43319,0,1,1 +1774105729.491904,30.36,4,3992.50,60.14,1344.97,2354.59,0.00,0.468914,3521871450537.025391,238,2,119.481324,0.030438,48834137,32876641,0,0,43322,0,1,1 +1774105734.496958,30.46,4,3992.50,60.27,1339.97,2359.57,0.00,3514884037914.605469,3514884037916.435547,199,0,119.445144,0.020358,48846465,32878105,0,0,43324,0,1,1 +1774105739.495261,28.46,4,3992.50,60.32,1337.85,2361.79,0.00,0.000000,0.000000,199,0,118.810233,0.037422,48858822,32880685,0,0,43327,0,1,1 +1774105744.496772,1.55,4,3992.50,54.40,1569.68,2129.95,0.00,70919.835315,87548.763860,6056967,1562367,41.249964,0.015399,48863197,32881490,0,0,43330,0,1,1 +1774105749.496547,8.04,4,3992.50,54.19,1577.92,2121.72,0.00,3518595703457.318359,3518595686822.617188,199,0,8.135051,0.045642,48865982,32883623,0,0,43332,0,1,1 +1774105754.496222,15.93,4,3992.50,53.96,1587.08,2112.55,0.00,70949.975647,87581.670338,6057741,1563684,24.078867,0.108644,48873827,32889461,0,0,43335,0,1,1 +1774105759.495976,5.47,4,3992.50,54.61,1561.67,2137.97,0.00,3518610131110.014648,3518610114477.247559,237,247,8.047100,0.034565,48876369,32891351,0,0,43337,0,1,1 +1774105764.491919,2.56,4,3992.50,54.09,1589.43,2117.86,0.00,3521294019930.596680,3521294019932.107910,21,0,0.007809,0.011628,48876552,32891575,0,0,43339,0,1,1 +1774105769.491887,16.82,4,3992.50,54.60,1567.42,2137.69,0.00,0.000000,0.000000,21,0,0.047764,66.113843,48879991,32899029,0,0,43342,0,1,1 +1774105774.491912,30.56,4,3992.50,55.03,1544.97,2154.36,0.00,70941.072079,87725.443785,6056967,1564924,0.040122,123.271151,48882850,32911742,0,0,43344,0,1,1 +1774105779.491969,7.18,4,3992.50,54.23,1575.54,2123.20,0.00,3518396942369.745605,3518396925583.473633,238,2,0.008202,15.743037,48883212,32913505,0,0,43347,0,1,1 +1774105784.494136,13.78,4,3992.50,54.11,1583.33,2118.54,0.00,70929.390399,87722.280250,6057867,1565543,40.048132,0.029292,48887636,32915266,0,0,43350,0,1,1 +1774105789.496830,1.45,4,3992.50,53.81,1591.79,2106.68,0.00,3516542980177.305664,3516542963388.012207,199,0,0.005839,0.008980,48887776,32915434,0,0,43352,0,1,1 +1774105794.495247,0.65,4,3992.50,53.83,1591.07,2107.41,0.00,70980.320075,87788.194526,6057093,1565366,0.003854,0.007135,48887874,32915575,0,0,43355,0,1,1 +1774105799.492124,0.65,4,3992.50,53.83,1590.84,2107.63,0.00,0.000000,0.062148,6057093,1565441,0.003422,0.005859,48887960,32915691,0,0,43357,0,1,1 +1774105804.492092,0.90,4,3992.50,53.63,1598.68,2099.80,0.00,3518459992433.895508,3518459975631.344238,21,0,0.003886,0.007130,48888061,32915832,0,0,43359,0,1,1 +1774105809.496669,1.45,4,3992.50,54.13,1579.07,2119.40,0.00,70893.567813,87701.911719,6057206,1565658,0.003874,0.007126,48888161,32915973,0,0,43362,0,1,1 +1774105814.495640,0.60,4,3992.50,54.09,1580.62,2117.86,0.00,3519161817098.917480,3519161800271.719727,21,0,0.003904,0.007155,48888263,32916115,0,0,43364,0,1,1 +1774105819.495851,1.00,4,3992.50,54.00,1582.05,2114.20,0.00,0.000000,0.000000,21,0,0.003420,0.005865,48888349,32916232,0,0,43367,0,1,1 +1774105824.494375,0.75,4,3992.50,53.98,1582.65,2113.34,0.00,70979.418927,87808.412119,6057206,1565908,0.003744,0.006564,48888448,32916366,0,0,43370,0,1,1 +1774105829.496409,0.75,4,3992.50,53.98,1582.66,2113.33,0.00,4.107606,0.062377,6057980,1566200,0.003635,0.006969,48888540,32916497,0,0,43372,0,1,1 +1774105834.496847,0.65,4,3992.50,53.94,1583.95,2112.04,0.00,3518129570260.600586,0.007031,6057209,1565991,0.003952,0.007333,48888645,32916642,0,0,43375,0,1,1 +1774105839.495891,0.60,4,3992.50,53.94,1583.97,2112.02,0.00,3519109644000.775391,3519109627173.313965,199,0,0.003429,0.005852,48888732,32916758,0,0,43377,0,1,1 +1774105844.493941,0.65,4,3992.50,53.99,1582.25,2113.74,0.00,3519810158000.609375,0.000000,21,0,0.003880,0.007113,48888832,32916897,0,0,43379,0,1,1 +1774105849.491935,1.10,4,3992.50,54.18,1583.30,2121.33,0.00,0.000000,0.000000,21,0,0.003880,0.007135,48888932,32917038,0,0,43382,0,1,1 +1774105854.496271,5.06,4,3992.50,54.14,1583.22,2119.66,0.00,0.048005,0.000000,70,0,0.017395,18.421122,48889971,32919315,0,0,43384,0,1,1 +1774105859.496427,6.58,4,3992.50,54.64,1562.51,2139.46,0.00,0.000000,0.000000,70,0,0.012701,21.637715,48890807,32921724,0,0,43387,0,1,1 +1774105864.492919,0.90,4,3992.50,54.14,1582.18,2119.81,0.00,0.000000,0.000000,70,0,0.002290,0.006370,48890877,32921847,0,0,43390,0,1,1 +1774105869.491926,0.75,4,3992.50,53.95,1589.64,2112.34,0.00,0.126978,0.000000,199,0,0.002297,0.006365,48890948,32921970,0,0,43392,0,1,1 +1774105874.491936,0.60,4,3992.50,53.95,1589.52,2112.46,0.00,70958.188819,87797.744414,6057209,1566390,0.002289,0.006356,48891018,32922092,0,0,43394,0,1,1 +1774105879.495927,1.05,4,3992.50,54.04,1580.82,2115.96,0.00,0.000000,0.052302,6057209,1566417,0.001830,0.005095,48891074,32922191,0,0,43397,0,1,1 +1774105884.496241,0.70,4,3992.50,54.04,1581.09,2115.70,0.00,3518216376883.483398,3518216360045.074707,21,0,0.002289,0.006356,48891144,32922313,0,0,43399,0,1,1 +1774105889.495932,0.85,4,3992.50,53.96,1584.25,2112.54,0.00,70962.881846,87822.403778,6057209,1566516,0.002314,0.006397,48891216,32922438,0,0,43402,0,1,1 +1774105894.493599,0.75,4,3992.50,53.96,1584.25,2112.54,0.00,3520079707086.290527,3520079690219.938965,21,0,0.002328,0.006421,48891289,32922564,0,0,43404,0,1,1 +1774105899.491967,0.75,4,3992.50,53.96,1584.03,2112.77,0.00,70985.770062,87851.712157,6057983,1566840,0.001915,0.005846,48891352,32922674,0,0,43407,0,1,1 +1774105904.496071,0.65,4,3992.50,53.96,1584.04,2112.76,0.00,3515551964500.666016,3515551947654.003906,70,0,0.002442,0.006487,48891432,32922807,0,0,43410,0,1,1 +1774105909.496821,0.95,4,3992.50,53.96,1583.46,2112.72,0.00,0.126934,0.000000,199,0,0.002288,0.006355,48891502,32922929,0,0,43412,0,1,1 +1774105914.496521,0.65,4,3992.50,53.96,1583.49,2112.71,0.00,1.831946,0.000195,238,2,0.002289,0.006366,48891572,32923052,0,0,43415,0,1,1 +1774105919.492583,22.13,4,3992.50,59.93,1355.09,2346.20,0.00,3521210230953.789551,3521210230955.798340,21,0,41.498617,0.025785,48896192,32924595,0,0,43417,0,1,1 +1774105924.495880,36.19,4,3992.50,59.79,1362.03,2341.03,0.00,2.005514,0.000195,238,2,122.702125,0.052187,48909110,32928295,0,0,43419,0,1,1 +1774105929.491922,30.81,4,3992.50,60.30,1342.21,2360.84,0.00,3521224208545.166016,3521224208547.125977,70,0,121.668853,0.034997,48921665,32930895,0,0,43422,0,1,1 +1774105934.495414,30.46,4,3992.50,60.18,1346.94,2356.09,0.00,70913.031316,87762.010951,6057983,1567054,120.286702,0.034196,48934096,32933416,0,0,43424,0,1,1 +1774105939.496062,30.64,4,3992.50,60.07,1351.05,2351.98,0.00,3517981915177.610352,0.049408,6057209,1566821,120.354100,0.029940,48946480,32935527,0,0,43427,0,1,1 +1774105944.495870,30.81,4,3992.50,59.79,1364.25,2340.96,0.00,3518571875301.235352,3518571858435.730957,21,0,119.774964,0.033357,48958783,32937754,0,0,43430,0,1,1 +1774105949.496397,30.35,4,3992.50,60.03,1354.82,2350.33,0.00,70951.024758,87814.180538,6057209,1566871,119.350048,0.019725,48970933,32939180,0,0,43432,0,1,1 +1774105954.495665,30.27,4,3992.50,59.81,1363.53,2341.64,0.00,3518951977490.024414,3518951960622.576172,70,0,119.588306,0.036665,48983290,32941966,0,0,43435,0,1,1 +1774105959.493873,23.68,4,3992.50,60.00,1356.00,2349.28,0.00,3519698932958.144043,0.000000,21,0,119.621463,0.056709,48995806,32946009,0,0,43437,0,1,1 +1774105964.495835,1.15,4,3992.50,54.47,1572.78,2132.50,0.00,0.000000,0.000000,21,0,20.625280,0.010535,48998039,32946606,0,0,43439,0,1,1 +1774105969.496387,11.14,4,3992.50,54.54,1565.05,2135.23,0.00,70954.934579,87814.321540,6058000,1567572,8.061946,0.048099,49000653,32948610,0,0,43442,0,1,1 +1774105974.491920,17.82,4,3992.50,54.36,1571.79,2128.42,0.00,3521583375444.751953,3521583358568.425781,21,0,26.166177,0.106112,49008646,32954517,0,0,43444,0,1,1 +1774105979.496558,7.13,4,3992.50,54.77,1555.91,2144.31,0.00,0.174838,0.000000,199,0,6.043003,0.033274,49010793,32956074,0,0,43447,0,1,1 +1774105984.496273,0.95,4,3992.50,54.09,1582.39,2117.83,0.00,70963.896461,87831.960064,6057856,1568217,0.004582,0.008566,49010909,32956240,0,0,43450,0,1,1 +1774105989.493780,1.00,4,3992.50,54.35,1572.36,2127.86,0.00,3520192281857.603516,3520192264982.263184,21,0,0.004977,0.007726,49011030,32956392,0,0,43452,0,1,1 +1774105994.496075,0.60,4,3992.50,54.14,1580.36,2119.87,0.00,2.005915,0.000195,238,2,0.005012,0.008227,49011145,32956542,0,0,43455,0,1,1 +1774105999.496337,0.95,4,3992.50,54.25,1576.33,2123.89,0.00,70954.293277,87822.660281,6057856,1568274,0.003420,0.005855,49011231,32956658,0,0,43457,0,1,1 +1774106004.495222,0.75,4,3992.50,54.24,1576.40,2123.79,0.00,3519222022268.515137,3519222005397.506836,21,0,0.003897,0.007149,49011332,32956800,0,0,43459,0,1,1 +1774106009.496540,0.65,4,3992.50,54.24,1576.43,2123.77,0.00,0.174954,0.000000,199,0,0.003953,0.007224,49011438,32956947,0,0,43462,0,1,1 +1774106014.493467,0.65,4,3992.50,54.24,1576.44,2123.75,0.00,3520600832146.910156,0.000000,21,0,0.003880,0.007127,49011538,32957087,0,0,43464,0,1,1 +1774106019.496022,0.55,4,3992.50,54.26,1575.86,2124.35,0.00,0.048022,0.000000,70,0,0.003419,0.005862,49011624,32957204,0,0,43467,0,1,1 +1774106024.494274,0.75,4,3992.50,54.26,1575.97,2124.23,0.00,3519667198821.786621,0.000000,21,0,0.003879,0.007135,49011724,32957345,0,0,43470,0,1,1 +1774106029.496633,1.10,4,3992.50,54.06,1583.36,2116.68,0.00,0.174917,0.000000,199,0,0.003938,0.007642,49011828,32957491,0,0,43472,0,1,1 +1774106034.491982,0.60,4,3992.50,54.12,1581.22,2118.81,0.00,71030.026836,87909.493048,6058630,1568925,0.003915,0.007329,49011931,32957635,0,0,43474,0,1,1 +1774106039.496385,0.70,4,3992.50,53.73,1596.29,2103.75,0.00,3515341944672.259766,0.003805,6057856,1568705,0.003442,0.005891,49012019,32957754,0,0,43477,0,1,1 +1774106044.496335,0.80,4,3992.50,53.73,1596.30,2103.73,0.00,3518472192461.804688,3518472175593.758301,199,0,0.003878,0.007122,49012119,32957894,0,0,43479,0,1,1 +1774106049.496162,0.70,4,3992.50,53.74,1596.07,2103.96,0.00,1.831899,0.000195,238,2,0.003866,0.007133,49012218,32958035,0,0,43482,0,1,1 +1774106054.493763,0.55,4,3992.50,53.64,1599.80,2100.23,0.00,3520126187954.980957,3520126187956.989258,21,0,0.004550,0.008048,49012321,32958177,0,0,43484,0,1,1 +1774106059.491918,12.95,4,3992.50,54.39,1571.72,2129.34,0.00,0.175065,0.000000,199,0,0.028754,46.893247,49014235,32963383,0,0,43487,0,1,1 +1774106064.496031,30.50,4,3992.50,54.27,1568.96,2124.83,0.00,1.830330,0.000195,238,2,0.045177,119.073564,49017556,32975774,0,0,43490,0,1,1 +1774106069.491978,11.30,4,3992.50,53.66,1592.71,2100.87,0.00,3521290727669.380371,3521290727671.340820,70,0,0.015297,39.091473,49018538,32979881,0,0,43492,0,1,1 +1774106074.492075,16.16,4,3992.50,58.85,1393.08,2304.11,0.00,70979.315108,88031.344184,6058749,1570450,40.063457,0.024156,49022898,32981218,0,0,43495,0,1,1 +1774106079.495938,1.00,4,3992.50,53.91,1586.41,2110.79,0.00,3515720845569.716309,3515720828530.523438,70,0,0.005225,0.006882,49023034,32981375,0,0,43497,0,1,1 +1774106084.496536,11.70,4,3992.50,54.17,1573.91,2120.99,0.00,0.126938,0.000000,199,0,0.024157,40.066402,49024582,32985954,0,0,43499,0,1,1 +1774106089.496015,1.15,4,3992.50,54.04,1577.66,2115.64,0.00,70987.940716,88076.450985,6058749,1570823,0.002542,0.006985,49024659,32986089,0,0,43502,0,1,1 +1774106094.496263,0.75,4,3992.50,53.85,1584.28,2108.42,0.00,3518262983886.774902,3518262966799.056641,238,2,0.001831,0.005571,49024715,32986190,0,0,43504,0,1,1 +1774106099.496646,0.70,4,3992.50,53.95,1580.33,2112.37,0.00,70969.167319,88060.508979,6057975,1570582,0.002289,0.006526,49024785,32986314,0,0,43507,0,1,1 +1774106104.495986,1.00,4,3992.50,53.97,1579.81,2112.89,0.00,3518902377620.168945,3518902360527.262695,21,0,0.002314,0.006398,49024857,32986439,0,0,43510,0,1,1 +1774106109.493996,0.85,4,3992.50,53.95,1580.50,2112.19,0.00,0.000000,0.000000,21,0,0.002290,0.006359,49024927,32986561,0,0,43512,0,1,1 +1774106114.496621,0.80,4,3992.50,53.97,1579.79,2112.91,0.00,0.000000,0.000000,21,0,0.001830,0.005096,49024983,32986660,0,0,43515,0,1,1 +1774106119.491958,1.20,4,3992.50,53.97,1587.75,2112.89,0.00,0.048092,0.000000,70,0,0.002291,0.006362,49025053,32986782,0,0,43517,0,1,1 +1774106124.496800,1.00,4,3992.50,53.75,1596.39,2104.28,0.00,3515032754840.739258,0.000000,21,0,0.002433,0.006513,49025135,32986915,0,0,43519,0,1,1 +1774106129.495907,0.80,4,3992.50,53.76,1595.96,2104.71,0.00,70989.305578,88089.217968,6057975,1570777,0.002439,0.006499,49025215,32987048,0,0,43522,0,1,1 +1774106134.496655,0.90,4,3992.50,53.61,1601.73,2098.95,0.00,3517910875325.650879,3517910858231.303223,70,0,0.001849,0.005113,49025272,32987148,0,0,43524,0,1,1 +1774106139.496118,0.75,4,3992.50,53.63,1601.09,2099.59,0.00,0.126967,0.000000,199,0,0.002289,0.006367,49025342,32987271,0,0,43527,0,1,1 +1774106144.492547,1.05,4,3992.50,53.57,1603.44,2097.24,0.00,0.000000,0.000000,199,0,0.002290,0.006371,49025412,32987394,0,0,43530,0,1,1 +1774106149.492860,25.68,4,3992.50,60.01,1356.47,2349.60,0.00,3518216750385.012207,0.000000,21,0,47.271488,0.030225,49030671,32989274,0,0,43532,0,1,1 +1774106154.495518,36.26,4,3992.50,59.89,1354.60,2344.94,0.00,0.174907,0.000000,199,0,123.111268,0.036353,49043472,32991900,0,0,43535,0,1,1 +1774106159.491907,31.16,4,3992.50,60.02,1349.67,2349.89,0.00,3520979893667.785156,0.000000,21,0,121.657508,0.023634,49055984,32993570,0,0,43537,0,1,1 +1774106164.492331,30.98,4,3992.50,60.02,1349.55,2350.02,0.00,70970.606166,88066.165886,6057975,1570910,120.557066,0.022059,49068294,32994930,0,0,43539,0,1,1 +1774106169.495949,30.90,4,3992.50,59.76,1360.05,2339.55,0.00,3515893214777.384766,3515893197692.738281,21,0,120.281826,0.029098,49080610,32996901,0,0,43542,0,1,1 +1774106174.496550,30.35,4,3992.50,59.83,1356.95,2342.64,0.00,0.048041,0.000000,70,0,119.757377,0.038442,49093050,32999736,0,0,43544,0,1,1 +1774106179.496117,32.66,4,3992.50,60.05,1348.46,2351.09,0.00,70982.716645,88081.462291,6057975,1570971,119.382791,0.047867,49105318,33003240,0,0,43547,0,1,1 +1774106184.492644,28.64,4,3992.50,59.75,1360.20,2339.29,0.00,0.000000,0.006157,6057975,1570987,119.857505,0.048439,49117659,33006845,0,0,43550,0,1,1 +1774106189.495309,21.04,4,3992.50,59.95,1352.28,2347.37,0.00,4.107869,0.033869,6058750,1571250,119.509642,0.045359,49129996,33010034,0,0,43552,0,1,1 +1774106194.496804,1.10,4,3992.50,53.65,1598.96,2100.68,0.00,3517385889043.562500,3517385871955.521973,21,0,14.018779,0.006143,49131499,33010337,0,0,43555,0,1,1 +1774106199.491885,12.07,4,3992.50,54.03,1584.20,2115.39,0.00,0.000000,0.000000,21,0,14.107494,0.068388,49136220,33013777,0,0,43557,0,1,1 +1774106204.496829,13.52,4,3992.50,53.89,1589.64,2109.94,0.00,70906.647515,87987.260689,6057986,1571688,22.117114,0.100950,49143529,33019311,0,0,43559,0,1,1 +1774106209.496397,5.07,4,3992.50,53.59,1592.80,2098.02,0.00,3518740926295.079102,3518740909194.094238,238,2,4.035880,0.028359,49145038,33020465,0,0,43562,0,1,1 +1774106214.496803,1.30,4,3992.50,53.63,1590.95,2099.81,0.00,70973.088595,88067.388887,6058760,1572093,0.004132,0.007259,49145141,33020606,0,0,43564,0,1,1 +1774106219.496294,0.95,4,3992.50,53.63,1591.13,2099.69,0.00,3518795977678.546875,3518795960583.120605,21,0,0.003878,0.007133,49145241,33020747,0,0,43567,0,1,1 +1774106224.496560,0.90,4,3992.50,53.62,1591.41,2099.42,0.00,0.000000,0.000000,21,0,0.004485,0.008241,49145354,33020910,0,0,43570,0,1,1 +1774106229.494758,1.70,4,3992.50,53.43,1598.83,2092.00,0.00,0.048064,0.000000,70,0,0.003879,0.007769,49145454,33021054,0,0,43572,0,1,1 +1774106234.495486,0.75,4,3992.50,53.43,1598.83,2091.98,0.00,0.000000,0.000000,70,0,0.003420,0.005842,49145540,33021169,0,0,43574,0,1,1 +1774106239.496757,1.30,4,3992.50,53.63,1591.24,2099.59,0.00,0.126921,0.000000,199,0,0.003953,0.007224,49145646,33021316,0,0,43577,0,1,1 +1774106244.491902,0.85,4,3992.50,53.63,1591.04,2099.79,0.00,1.364704,0.028348,237,247,0.003932,0.007192,49145750,33021460,0,0,43579,0,1,1 +1774106249.492028,0.85,4,3992.50,53.58,1593.07,2097.75,0.00,0.468445,3518348820220.440918,238,2,0.003865,0.007132,49145849,33021601,0,0,43582,0,1,1 +1774106254.496112,0.80,4,3992.50,53.62,1591.61,2099.21,0.00,70920.931114,88003.565200,6058760,1572636,0.003646,0.006471,49145942,33021728,0,0,43584,0,1,1 +1774106259.492010,0.85,4,3992.50,53.42,1599.28,2091.54,0.00,3521326022503.128418,3521326005394.337402,199,0,0.004149,0.007630,49146055,33021884,0,0,43587,0,1,1 +1774106264.491932,0.75,4,3992.50,53.44,1598.60,2092.23,0.00,70981.794480,88076.874725,6058760,1572692,0.003878,0.007132,49146155,33022025,0,0,43590,0,1,1 +1774106269.496231,1.15,4,3992.50,53.81,1584.14,2106.83,0.00,0.000000,0.046347,6058760,1572713,0.004827,0.007811,49146259,33022170,0,0,43592,0,1,1 +1774106274.496120,0.85,4,3992.50,53.81,1583.89,2106.93,0.00,3518515499466.265137,3518515482369.688965,237,247,0.003420,0.005865,49146345,33022287,0,0,43595,0,1,1 +1774106279.494457,0.85,4,3992.50,53.41,1599.50,2091.28,0.00,3519607770592.876953,3519607770594.339355,70,0,0.003854,0.007125,49146443,33022427,0,0,43597,0,1,1 +1774106284.495459,0.80,4,3992.50,53.42,1599.35,2091.43,0.00,1.958397,0.000195,238,2,0.003877,0.007121,49146543,33022567,0,0,43599,0,1,1 +1774106289.496821,11.11,4,3992.50,54.10,1571.74,2117.95,0.00,3517479173480.091797,3517479173482.098145,21,0,0.033689,44.463048,49148691,33027562,0,0,43602,0,1,1 +1774106294.495258,30.07,4,3992.50,53.88,1572.55,2109.64,0.00,0.000000,0.000000,21,0,0.059916,120.208687,49153149,33039965,0,0,43604,0,1,1 +1774106299.491904,11.21,4,3992.50,53.86,1585.29,2108.66,0.00,71028.524262,88313.143871,6058765,1573891,0.025482,40.493635,49154919,33044390,0,0,43607,0,1,1 +1774106304.494326,13.68,4,3992.50,53.56,1599.32,2097.05,0.00,3516733641973.181152,3516733624708.344727,199,0,40.044052,0.021622,49159352,33045768,0,0,43610,0,1,1 +1774106309.496385,10.90,4,3992.50,53.50,1599.30,2094.80,0.00,3516989198310.683594,0.000000,21,0,0.027840,40.057069,49160944,33050342,0,0,43612,0,1,1 +1774106314.496206,1.10,4,3992.50,53.53,1598.11,2096.00,0.00,71000.003906,88318.055880,6058873,1574435,0.002858,0.007211,49161027,33050482,0,0,43614,0,1,1 +1774106319.496321,0.75,4,3992.50,53.53,1598.12,2095.99,0.00,3518356100999.011719,3518356083679.971680,238,2,0.002289,0.006366,49161097,33050605,0,0,43617,0,1,1 +1774106324.495950,0.80,4,3992.50,53.53,1598.12,2095.99,0.00,70996.619849,88321.431650,6058099,1574191,0.001831,0.005089,49161153,33050703,0,0,43619,0,1,1 +1774106329.491924,1.36,4,3992.50,53.84,1577.83,2107.84,0.00,4.112588,0.148166,6058873,1574469,0.002291,0.006371,49161223,33050826,0,0,43622,0,1,1 +1774106334.492009,0.85,4,3992.50,53.84,1577.88,2107.84,0.00,3518377608343.954590,3518377591026.690430,21,0,0.001869,0.005151,49161282,33050928,0,0,43624,0,1,1 +1774106339.496244,0.80,4,3992.50,53.84,1577.88,2107.84,0.00,0.000000,0.000000,21,0,0.000915,0.002593,49161310,33050981,0,0,43627,0,1,1 +1774106344.496120,0.90,4,3992.50,53.84,1577.88,2107.83,0.00,70999.218144,88323.231735,6058873,1574515,0.002276,0.006366,49161379,33051104,0,0,43630,0,1,1 +1774106349.496446,0.80,4,3992.50,53.84,1577.89,2107.82,0.00,3518207681788.061523,3518207664465.558105,70,0,0.002297,0.006364,49161450,33051227,0,0,43632,0,1,1 +1774106354.496482,0.85,4,3992.50,53.84,1577.89,2107.82,0.00,1.958775,0.000195,238,2,0.002150,0.005424,49161529,33051349,0,0,43635,0,1,1 +1774106359.493685,1.30,4,3992.50,53.87,1581.05,2109.25,0.00,3520406461592.748047,3520406461594.581055,199,0,0.002327,0.007054,49161601,33051479,0,0,43637,0,1,1 +1774106364.496042,0.90,4,3992.50,53.86,1581.67,2108.57,0.00,3516778977259.715820,0.000000,70,0,0.001792,0.005086,49161654,33051577,0,0,43639,0,1,1 +1774106369.495044,0.75,4,3992.50,53.66,1589.30,2100.93,0.00,0.126978,0.000000,199,0,0.002277,0.006367,49161723,33051700,0,0,43642,0,1,1 +1774106374.495569,27.67,4,3992.50,59.72,1358.18,2337.98,0.00,0.000000,0.000000,199,0,49.871305,0.030620,49167131,33053603,0,0,43644,0,1,1 +1774106379.492774,30.84,4,3992.50,59.88,1352.23,2344.41,0.00,0.000000,0.000000,199,0,119.249413,0.063821,49179710,33058206,0,0,43647,0,1,1 +1774106384.492629,28.21,4,3992.50,59.81,1354.76,2341.85,0.00,70999.456530,88323.768907,6058909,1574666,119.198129,0.106893,49192341,33066293,0,0,43650,0,1,1 +1774106389.496418,27.86,4,3992.50,59.81,1354.91,2341.66,0.00,3515773117060.553223,3515773099748.030273,238,2,119.906136,0.108110,49205173,33074586,0,0,43652,0,1,1 +1774106394.496412,28.84,4,3992.50,59.69,1365.05,2337.07,0.00,70991.937091,88321.538698,6058389,1574536,118.720724,0.110478,49217898,33083041,0,0,43655,0,1,1 +1774106399.495585,28.34,4,3992.50,60.02,1352.46,2349.77,0.00,3519018802137.753418,3519018784807.140137,199,0,119.895100,0.108683,49230798,33091435,0,0,43657,0,1,1 +1774106404.496591,28.02,4,3992.50,59.76,1362.54,2339.66,0.00,70983.528512,88303.862289,6059172,1574846,118.972626,0.108638,49243537,33099718,0,0,43659,0,1,1 +1774106409.496489,28.51,4,3992.50,59.92,1356.03,2346.19,0.00,3518508997803.893066,3518508980477.890137,238,2,119.402912,0.115857,49256445,33108508,0,0,43662,0,1,1 +1774106414.495445,21.75,4,3992.50,59.71,1364.45,2337.87,0.00,3519171857121.573242,3519171857123.405762,199,0,119.423570,0.111343,49269258,33117122,0,0,43664,0,1,1 +1774106419.496413,1.46,4,3992.50,54.97,1550.04,2152.27,0.00,1.831481,0.000195,238,2,21.036481,0.026162,49271637,33118849,0,0,43667,0,1,1 +1774106424.491941,8.00,4,3992.50,54.81,1556.32,2145.99,0.00,0.000000,0.000000,238,2,8.086168,0.059590,49275186,33121610,0,0,43670,0,1,1 +1774106429.492542,13.57,4,3992.50,54.62,1563.86,2138.37,0.00,3518014312602.340820,3518014312604.299316,70,0,22.136139,0.107455,49283582,33128149,0,0,43672,0,1,1 +1774106434.496210,7.33,4,3992.50,54.13,1583.06,2119.17,0.00,0.000000,0.000000,70,0,10.065745,0.058449,49287565,33131298,0,0,43674,0,1,1 +1774106439.492036,1.05,4,3992.50,53.76,1597.23,2105.00,0.00,3521377354734.468750,0.000000,21,0,0.004102,0.007243,49287665,33131437,0,0,43677,0,1,1 +1774106444.495898,0.70,4,3992.50,53.63,1602.61,2099.61,0.00,2.005287,0.000195,238,2,0.003845,0.007087,49287763,33131575,0,0,43679,0,1,1 +1774106449.494773,1.30,4,3992.50,53.77,1596.11,2105.26,0.00,3519229019223.603516,0.028131,237,247,0.002951,0.004599,49287834,33131668,0,0,43682,0,1,1 +1774106454.496255,0.60,4,3992.50,53.81,1594.78,2106.62,0.00,70975.555326,88297.060279,6059187,1576362,0.003421,0.005886,49287920,33131786,0,0,43684,0,1,1 +1774106459.492034,0.65,4,3992.50,53.83,1593.86,2107.54,0.00,3521409618201.193848,3521409600859.418457,238,2,0.003842,0.007081,49288017,33131923,0,0,43687,0,1,1 +1774106464.491927,0.90,4,3992.50,53.65,1601.04,2100.36,0.00,70993.543974,88325.225005,6058413,1576167,0.003521,0.006008,49288111,33132049,0,0,43690,0,1,1 +1774106469.492123,0.70,4,3992.50,53.65,1601.05,2100.34,0.00,3518299060131.753418,3518299042802.956055,199,0,0.003840,0.007097,49288208,33132187,0,0,43692,0,1,1 +1774106474.496635,0.60,4,3992.50,53.64,1601.07,2100.32,0.00,70933.961258,88243.802511,6059187,1576493,0.003392,0.005847,49288292,33132303,0,0,43695,0,1,1 +1774106479.493828,1.00,4,3992.50,53.86,1590.71,2108.72,0.00,3520413549331.369629,0.041430,6058413,1576269,0.003855,0.007114,49288390,33132442,0,0,43697,0,1,1 +1774106484.495538,0.65,4,3992.50,53.86,1590.89,2108.58,0.00,3517233658711.750977,3517233641386.734375,237,247,0.003481,0.005893,49288480,33132561,0,0,43699,0,1,1 +1774106489.496426,0.60,4,3992.50,53.86,1590.91,2108.56,0.00,3517812749276.412109,3517812749277.921875,21,0,0.003860,0.007783,49288579,33132707,0,0,43702,0,1,1 +1774106494.496297,0.60,4,3992.50,53.85,1590.93,2108.54,0.00,0.000000,0.000000,21,0,0.003420,0.005843,49288665,33132822,0,0,43704,0,1,1 +1774106499.496598,0.70,4,3992.50,53.86,1590.71,2108.76,0.00,1.538286,0.028319,237,247,0.003840,0.007132,49288762,33132963,0,0,43707,0,1,1 +1774106504.496165,5.23,4,3992.50,53.86,1590.75,2108.66,0.00,3518741839733.994629,3518741839735.456543,70,0,0.018048,19.639307,49289855,33135343,0,0,43710,0,1,1 +1774106509.496046,28.98,4,3992.50,53.90,1582.40,2110.15,0.00,0.000000,0.000000,70,0,0.035880,119.174050,49292437,33147705,0,0,43712,0,1,1 +1774106514.492101,17.11,4,3992.50,53.76,1587.27,2104.76,0.00,0.127053,0.000000,199,0,0.016040,66.350392,49293473,33154736,0,0,43714,0,1,1 +1774106519.493648,14.36,4,3992.50,55.11,1538.64,2157.65,0.00,1.831269,0.000195,238,2,40.060074,0.036558,49298206,33156880,0,0,43717,0,1,1 +1774106524.491910,1.51,4,3992.50,54.32,1569.61,2126.66,0.00,3519660016907.693848,3519660016909.526367,199,0,0.007563,0.011618,49298376,33157095,0,0,43719,0,1,1 +1774106529.496411,0.60,4,3992.50,53.91,1585.57,2110.73,0.00,3515272854468.744629,0.000000,21,0,0.002774,0.005610,49298448,33157204,0,0,43722,0,1,1 +1774106534.496493,13.00,4,3992.50,53.10,1615.13,2079.14,0.00,0.000000,0.000000,21,0,0.029373,40.073318,49300363,33161872,0,0,43724,0,1,1 +1774106539.496068,1.10,4,3992.50,53.52,1602.38,2095.54,0.00,0.175015,0.000000,199,0,0.001814,0.005107,49300418,33161972,0,0,43727,0,1,1 +1774106544.495892,0.70,4,3992.50,53.55,1601.42,2096.52,0.00,3518560982710.186523,0.000000,70,0,0.002276,0.006366,49300487,33162095,0,0,43730,0,1,1 +1774106549.496642,0.70,4,3992.50,53.56,1600.91,2097.04,0.00,3517909553407.745117,0.000000,21,0,0.001818,0.005119,49300542,33162195,0,0,43732,0,1,1 +1774106554.491907,0.60,4,3992.50,53.56,1600.91,2097.03,0.00,0.175166,0.000000,199,0,0.002253,0.006991,49300609,33162320,0,0,43735,0,1,1 +1774106559.492031,0.65,4,3992.50,53.30,1611.09,2086.86,0.00,71008.687964,88561.073733,6058539,1578436,0.002199,0.006166,49300675,33162441,0,0,43737,0,1,1 +1774106564.496387,0.80,4,3992.50,53.31,1610.85,2087.10,0.00,4.105701,6.034196,6059313,1578727,0.002085,0.005750,49300740,33162553,0,0,43739,0,1,1 +1774106569.493526,1.05,4,3992.50,53.43,1601.82,2092.08,0.00,3520451875578.687500,3520451858014.058594,21,0,0.003007,0.006448,49300807,33162670,0,0,43742,0,1,1 +1774106574.495396,0.75,4,3992.50,53.45,1601.16,2092.54,0.00,0.000000,0.000000,21,0,0.001895,0.005194,49300868,33162775,0,0,43744,0,1,1 +1774106579.492007,0.70,4,3992.50,53.45,1601.16,2092.54,0.00,0.048079,0.000000,70,0,0.001497,0.003939,49300918,33162858,0,0,43747,0,1,1 +1774106584.491984,0.55,4,3992.50,53.45,1601.17,2092.53,0.00,1.958798,0.000195,238,2,0.001826,0.005107,49300974,33162958,0,0,43750,0,1,1 +1774106589.492010,0.90,4,3992.50,53.45,1600.95,2092.74,0.00,3518418760404.439453,3518418760406.271484,199,0,0.003373,0.006971,49301064,33163094,0,0,43752,0,1,1 +1774106594.492501,0.75,4,3992.50,53.45,1600.96,2092.74,0.00,1.831656,0.000195,238,2,0.002857,0.005495,49301139,33163206,0,0,43755,0,1,1 +1774106599.495494,29.56,4,3992.50,60.53,1323.54,2370.00,0.00,3516331795373.159180,3516331795374.990234,199,0,53.253385,0.037504,49307062,33165527,0,0,43757,0,1,1 +1774106604.496149,32.41,4,3992.50,59.89,1348.73,2344.74,0.00,1.831596,0.000195,238,2,119.752701,0.047787,49319351,33168984,0,0,43759,0,1,1 +1774106609.496189,29.54,4,3992.50,60.11,1340.00,2353.50,0.00,3518409507739.631348,3518409507741.463379,199,0,118.364915,0.031931,49331571,33171136,0,0,43762,0,1,1 +1774106614.497553,29.32,4,3992.50,60.04,1342.95,2350.52,0.00,0.000000,0.000000,199,0,119.934107,0.037090,49343881,33173785,0,0,43764,0,1,1 +1774106619.496804,29.12,4,3992.50,59.74,1354.59,2338.89,0.00,0.000000,0.000000,199,0,118.380532,0.031436,49355966,33176110,0,0,43767,0,1,1 +1774106624.496458,29.36,4,3992.50,59.77,1353.22,2340.25,0.00,71019.476753,88575.891923,6059313,1579052,119.975230,0.023444,49368347,33177762,0,0,43770,0,1,1 +1774106629.496405,29.62,4,3992.50,60.36,1334.03,2363.29,0.00,3518474770004.650391,0.024414,6058539,1578829,118.966491,0.035263,49380508,33180264,0,0,43772,0,1,1 +1774106634.491912,29.80,4,3992.50,60.11,1340.09,2353.45,0.00,3521601572274.552246,3521601554699.553223,70,0,119.679045,0.037533,49392832,33182929,0,0,43774,0,1,1 +1774106639.492474,22.21,4,3992.50,59.91,1348.07,2345.48,0.00,0.000000,0.000000,70,0,119.151461,0.029738,49405025,33185117,0,0,43777,0,1,1 +1774106644.496388,1.10,4,3992.50,54.16,1573.21,2120.36,0.00,70959.294115,88500.701048,6059326,1579149,18.015605,0.009652,49406995,33185645,0,0,43779,0,1,1 +1774106649.492938,10.02,4,3992.50,54.24,1569.83,2123.70,0.00,3520866570307.851074,3520866552739.127441,237,247,10.097962,0.067002,49411299,33189028,0,0,43782,0,1,1 +1774106654.496729,14.22,4,3992.50,53.68,1591.77,2101.78,0.00,70955.448469,88503.385271,6058552,1579654,24.129343,0.116881,49420254,33196089,0,0,43784,0,1,1 +1774106659.496195,5.22,4,3992.50,53.53,1602.12,2096.01,0.00,0.000000,0.521931,6058552,1580041,6.051362,0.039198,49422789,33198067,0,0,43787,0,1,1 +1774106664.495656,0.90,4,3992.50,53.55,1601.84,2096.44,0.00,3518816417724.119629,3518816400160.464355,237,247,0.003025,0.005733,49422863,33198175,0,0,43790,0,1,1 +1774106669.496439,18.41,4,3992.50,54.28,1569.86,2125.29,0.00,3517885884398.879395,3517885884400.214355,199,0,0.032383,74.304981,49425083,33206338,0,0,43792,0,1,1 +1774106674.496500,29.57,4,3992.50,54.70,1549.12,2141.49,0.00,3518394749598.865723,0.000000,21,0,0.096471,119.399340,49432399,33219260,0,0,43795,0,1,1 +1774106679.491927,14.32,4,3992.50,58.78,1392.71,2301.47,0.00,71096.512953,88831.035976,6059440,1581687,13.254559,11.453208,49435115,33221631,0,0,43797,0,1,1 +1774106684.492428,4.06,4,3992.50,53.95,1582.09,2112.10,0.00,3518085074634.884766,3518085056918.353516,21,0,26.839448,0.013103,49437894,33222276,0,0,43799,0,1,1 +1774106689.495206,2.11,4,3992.50,54.33,1566.90,2127.25,0.00,0.174903,0.000000,199,0,0.004144,0.008206,49437997,33222424,0,0,43802,0,1,1 +1774106694.491999,0.85,4,3992.50,54.27,1569.26,2124.93,0.00,71076.895421,88833.640913,6059440,1582042,0.003830,0.007102,49438093,33222562,0,0,43804,0,1,1 +1774106699.492896,0.90,4,3992.50,54.38,1565.07,2129.06,0.00,0.000000,0.029292,6059440,1582080,0.003357,0.005851,49438174,33222678,0,0,43807,0,1,1 +1774106704.491923,0.65,4,3992.50,54.19,1572.56,2121.62,0.00,0.000000,0.026470,6059440,1582092,0.003866,0.007096,49438273,33222816,0,0,43810,0,1,1 +1774106709.492016,0.65,4,3992.50,54.19,1572.58,2121.61,0.00,0.000000,0.049608,6059440,1582150,0.003357,0.005842,49438354,33222931,0,0,43812,0,1,1 +1774106714.495705,0.60,4,3992.50,54.19,1572.59,2121.59,0.00,3515842693461.266113,3515842675727.056641,238,2,0.003438,0.005877,49438442,33223049,0,0,43814,0,1,1 +1774106719.491899,0.95,4,3992.50,54.25,1574.04,2124.03,0.00,71083.596293,88844.585772,6059440,1582260,0.003385,0.005844,49438525,33223164,0,0,43817,0,1,1 +1774106724.495910,0.70,4,3992.50,54.25,1574.08,2123.99,0.00,0.000000,0.025273,6059440,1582290,0.004192,0.006860,49438621,33223289,0,0,43819,0,1,1 +1774106729.491930,0.75,4,3992.50,54.25,1574.09,2123.98,0.00,3521239989249.565430,3521239971487.933105,238,2,0.003818,0.007125,49438716,33223429,0,0,43822,0,1,1 +1774106734.495967,0.60,4,3992.50,54.28,1572.91,2125.11,0.00,3515598788248.674316,0.028102,237,247,0.003454,0.005865,49438804,33223546,0,0,43824,0,1,1 +1774106739.496212,0.70,4,3992.50,54.28,1572.97,2125.11,0.00,3518265216375.774902,3518265216377.109863,199,0,0.003865,0.007119,49438903,33223686,0,0,43827,0,1,1 +1774106744.492726,0.60,4,3992.50,54.28,1572.98,2125.10,0.00,0.000000,0.000000,199,0,0.003410,0.005857,49438988,33223802,0,0,43830,0,1,1 +1774106749.496023,1.00,4,3992.50,54.30,1572.52,2125.78,0.00,3516118511562.812012,0.000000,21,0,0.003863,0.007749,49439087,33223945,0,0,43832,0,1,1 +1774106754.495417,0.75,4,3992.50,54.00,1583.73,2114.35,0.00,0.000000,0.000000,21,0,0.003978,0.006339,49439173,33224064,0,0,43834,0,1,1 +1774106759.493486,11.81,4,3992.50,53.72,1592.48,2103.15,0.00,2.007611,0.000195,238,2,0.021120,40.084175,49440565,33228609,0,0,43837,0,1,1 +1774106764.496244,0.90,4,3992.50,53.61,1596.87,2098.76,0.00,70990.337010,88762.382772,6059440,1582786,0.001805,0.005099,49440619,33228708,0,0,43839,0,1,1 +1774106769.491925,0.60,4,3992.50,53.60,1596.87,2098.75,0.00,3521478411269.554688,3521478393472.834961,237,247,0.002266,0.006359,49440687,33228830,0,0,43842,0,1,1 +1774106774.491940,0.70,4,3992.50,53.60,1596.88,2098.75,0.00,0.468456,3518426727489.951172,238,2,0.001806,0.005101,49440741,33228929,0,0,43844,0,1,1 +1774106779.491898,1.05,4,3992.50,54.09,1577.83,2117.94,0.00,0.000000,0.000000,238,2,0.002022,0.005720,49440801,33229039,0,0,43847,0,1,1 +1774106784.492030,0.60,4,3992.50,53.75,1591.22,2104.41,0.00,0.000000,0.000000,238,2,0.002060,0.005745,49440864,33229151,0,0,43850,0,1,1 +1774106789.492062,0.65,4,3992.50,53.75,1591.24,2104.40,0.00,0.000000,0.000000,238,2,0.001820,0.005503,49440919,33229256,0,0,43852,0,1,1 +1774106794.491925,0.65,4,3992.50,53.77,1590.50,2105.13,0.00,3518533133242.766602,3518533133244.598633,199,0,0.002262,0.006023,49440987,33229376,0,0,43854,0,1,1 +1774106799.491913,0.65,4,3992.50,53.92,1584.61,2110.99,0.00,1.831841,0.000195,238,2,0.001839,0.005138,49441044,33229478,0,0,43857,0,1,1 +1774106804.491932,0.65,4,3992.50,53.92,1584.65,2110.98,0.00,3518423416661.399902,3518423416663.406738,21,0,0.002024,0.005277,49441113,33229590,0,0,43859,0,1,1 +1774106809.495988,1.00,4,3992.50,53.92,1585.24,2110.98,0.00,0.000000,0.000000,21,0,0.001896,0.005477,49441172,33229694,0,0,43862,0,1,1 +1774106814.496508,0.80,4,3992.50,53.92,1583.37,2110.95,0.00,0.048042,0.000000,70,0,0.002197,0.006604,49441237,33229814,0,0,43864,0,1,1 +1774106819.496748,17.86,4,3992.50,59.84,1354.99,2343.00,0.00,3518267822582.487305,0.000000,21,0,10.823065,0.019487,49442729,33230861,0,0,43867,0,1,1 +1774106824.496980,33.75,4,3992.50,60.07,1348.64,2351.86,0.00,0.000000,0.000000,21,0,119.561871,0.041531,49454963,33233674,0,0,43870,0,1,1 +1774106829.492344,30.07,4,3992.50,59.81,1359.02,2341.50,0.00,0.000000,0.000000,21,0,118.875176,0.027468,49467118,33235547,0,0,43872,0,1,1 +1774106834.495923,30.26,4,3992.50,59.97,1352.63,2347.89,0.00,0.048013,0.000000,70,0,119.681116,0.025755,49479457,33237401,0,0,43875,0,1,1 +1774106839.495495,31.07,4,3992.50,59.90,1355.12,2345.37,0.00,3518738367143.780762,0.000000,21,0,118.985577,0.044126,49491873,33240641,0,0,43877,0,1,1 +1774106844.496504,29.93,4,3992.50,60.15,1345.31,2355.20,0.00,71013.050179,88799.859396,6058666,1582873,119.750566,0.048585,49504375,33244376,0,0,43879,0,1,1 +1774106849.491886,29.05,4,3992.50,60.10,1344.39,2352.99,0.00,3521689819877.113281,3521689802070.267578,21,0,118.876024,0.028161,49516643,33246416,0,0,43882,0,1,1 +1774106854.491837,29.05,4,3992.50,59.78,1357.08,2340.33,0.00,71032.194046,88818.716228,6059440,1583152,119.565985,0.024292,49528922,33248223,0,0,43884,0,1,1 +1774106859.492640,30.85,4,3992.50,59.80,1356.01,2341.38,0.00,3517871917149.508301,3517871899365.844727,199,0,119.147204,0.027782,49541196,33250273,0,0,43887,0,1,1 +1774106864.495154,4.71,4,3992.50,53.70,1594.86,2102.62,0.00,70995.699656,88773.308051,6059453,1583179,60.261088,0.021787,49547630,33251751,0,0,43890,0,1,1 +1774106869.496715,1.80,4,3992.50,53.72,1594.05,2103.41,0.00,3517339011949.857422,3517338994168.863281,199,0,0.008441,0.004721,49547784,33251879,0,0,43892,0,1,1 +1774106874.495967,5.74,4,3992.50,53.60,1601.91,2098.70,0.00,3518963706379.674805,0.000000,21,0,4.045517,0.033508,49549623,33253347,0,0,43895,0,1,1 +1774106879.495927,15.12,4,3992.50,54.47,1568.01,2132.58,0.00,0.000000,0.000000,21,0,24.155010,0.122527,49558795,33260681,0,0,43897,0,1,1 +1774106884.492019,7.84,4,3992.50,54.71,1558.48,2142.11,0.00,71087.124865,88888.144509,6059453,1584278,12.088947,0.062933,49563423,33264307,0,0,43899,0,1,1 +1774106889.491893,11.92,4,3992.50,54.21,1577.50,2122.48,0.00,3518525621687.207520,7.243444,6058679,1584135,0.029596,40.874879,49565151,33269148,0,0,43902,0,1,1 +1774106894.496576,32.70,4,3992.50,54.19,1570.89,2121.77,0.00,3515145408763.437012,3515145390980.120605,237,247,0.052228,122.063812,49568933,33282004,0,0,43904,0,1,1 +1774106899.496189,12.68,4,3992.50,54.21,1567.70,2122.58,0.00,3518709415538.480957,3518709415539.816406,199,0,0.025290,42.072192,49570572,33286582,0,0,43907,0,1,1 +1774106904.496736,12.55,4,3992.50,59.01,1383.89,2310.30,0.00,3518052249533.671875,0.000000,21,0,29.653918,0.033166,49574208,33288658,0,0,43910,0,1,1 +1774106909.493922,0.85,4,3992.50,54.78,1549.26,2144.93,0.00,71084.051183,89074.558504,6058803,1585638,10.427327,0.012198,49575430,33289362,0,0,43912,0,1,1 +1774106914.496407,0.85,4,3992.50,54.23,1570.79,2123.41,0.00,4.107236,0.039336,6059577,1585916,0.004401,0.009209,49575542,33289524,0,0,43915,0,1,1 +1774106919.496286,0.60,4,3992.50,53.97,1580.95,2113.24,0.00,3518522419781.495605,3518522401804.697266,70,0,0.003391,0.005851,49575626,33289640,0,0,43917,0,1,1 +1774106924.496168,0.65,4,3992.50,53.96,1581.42,2112.77,0.00,0.000000,0.000000,70,0,0.003866,0.007110,49575725,33289779,0,0,43919,0,1,1 +1774106929.492629,0.90,4,3992.50,54.06,1580.12,2116.38,0.00,3520929714462.432617,0.000000,21,0,0.003385,0.005844,49575808,33289894,0,0,43922,0,1,1 +1774106934.496233,1.10,4,3992.50,54.04,1577.72,2115.91,0.00,0.048012,0.000000,70,0,0.003875,0.007142,49575908,33290035,0,0,43924,0,1,1 +1774106939.496458,0.65,4,3992.50,54.05,1577.51,2116.12,0.00,3518278958806.552246,0.000000,21,0,0.003433,0.005883,49575995,33290153,0,0,43927,0,1,1 +1774106944.492529,0.55,4,3992.50,54.05,1577.51,2116.12,0.00,2.008414,0.000195,238,2,0.003937,0.007820,49576098,33290301,0,0,43930,0,1,1 +1774106949.494702,0.75,4,3992.50,54.05,1577.54,2116.10,0.00,3516909262330.475098,3516909262332.432617,70,0,0.003406,0.005853,49576183,33290417,0,0,43932,0,1,1 +1774106954.496387,0.55,4,3992.50,54.05,1577.55,2116.08,0.00,1.958129,0.000195,238,2,0.003637,0.006529,49576275,33290548,0,0,43935,0,1,1 +1774106959.496226,0.90,4,3992.50,54.26,1569.34,2124.43,0.00,3518550605433.863281,3518550605435.821777,70,0,0.002890,0.006088,49576355,33290666,0,0,43937,0,1,1 +1774106964.496571,0.70,4,3992.50,54.10,1575.59,2118.05,0.00,3518194123482.022949,0.000000,21,0,0.003482,0.006233,49576444,33290787,0,0,43939,0,1,1 +1774106969.496621,0.65,4,3992.50,54.10,1575.36,2118.28,0.00,0.048046,0.000000,70,0,0.003724,0.006699,49576534,33290919,0,0,43942,0,1,1 +1774106974.496790,0.65,4,3992.50,54.10,1575.36,2118.27,0.00,3518318225693.731934,0.000000,21,0,0.003370,0.005842,49576616,33291034,0,0,43944,0,1,1 +1774106979.494398,11.50,4,3992.50,54.32,1564.44,2126.87,0.00,71082.171541,89101.594974,6059577,1586717,0.024185,40.088202,49578151,33295574,0,0,43947,0,1,1 +1774106984.496150,1.05,4,3992.50,54.15,1571.08,2120.22,0.00,3517204614375.173340,3517204596369.170898,237,247,0.003458,0.008743,49578251,33295741,0,0,43950,0,1,1 +1774106989.491983,1.00,4,3992.50,54.20,1569.66,2121.89,0.00,3521371732041.895020,3521371732043.406250,21,0,0.001820,0.005093,49578306,33295839,0,0,43952,0,1,1 +1774106994.493254,0.80,4,3992.50,54.46,1559.02,2132.32,0.00,71030.117260,89036.504395,6059577,1586817,0.002263,0.006352,49578374,33295961,0,0,43955,0,1,1 +1774106999.496389,0.65,4,3992.50,54.46,1558.97,2132.32,0.00,3516232336388.742676,3516232318389.067383,21,0,0.001817,0.005098,49578429,33296060,0,0,43957,0,1,1 +1774107004.496658,1.00,4,3992.50,54.47,1558.88,2132.46,0.00,0.048044,0.000000,70,0,0.002061,0.005780,49578492,33296174,0,0,43959,0,1,1 +1774107009.495963,0.75,4,3992.50,54.33,1564.35,2126.98,0.00,0.126971,0.000000,199,0,0.002029,0.006327,49578553,33296286,0,0,43962,0,1,1 +1774107014.493251,1.00,4,3992.50,54.33,1564.31,2127.02,0.00,3520347148586.060547,0.000000,21,0,0.002099,0.005744,49578619,33296397,0,0,43964,0,1,1 +1774107019.496408,1.10,4,3992.50,54.40,1561.51,2129.96,0.00,71003.333786,89009.234024,6059586,1586923,0.002109,0.005803,49578686,33296513,0,0,43967,0,1,1 +1774107024.496539,0.90,4,3992.50,54.38,1562.07,2129.26,0.00,3518345321661.663086,0.033983,6058812,1586732,0.002004,0.005612,49578753,33296626,0,0,43970,0,1,1 +1774107029.493539,0.90,4,3992.50,54.37,1562.64,2128.70,0.00,3520549667606.917969,3520549649574.682129,21,0,0.002298,0.006065,49578824,33296750,0,0,43972,0,1,1 +1774107034.491912,0.95,4,3992.50,54.10,1573.03,2118.31,0.00,0.175057,0.000000,199,0,0.001806,0.005100,49578878,33296849,0,0,43975,0,1,1 +1774107039.491984,0.80,4,3992.50,54.15,1571.11,2120.23,0.00,3518386606743.217285,0.000000,70,0,0.002289,0.006356,49578948,33296971,0,0,43977,0,1,1 +1774107044.495966,18.31,4,3992.50,60.25,1336.20,2358.85,0.00,70991.579935,88994.654126,6059586,1587033,19.819210,0.020251,49581292,33298080,0,0,43979,0,1,1 +1774107049.493271,33.77,4,3992.50,60.38,1333.33,2363.93,0.00,0.000000,0.090674,6059586,1587103,120.042126,0.046714,49593869,33301393,0,0,43982,0,1,1 +1774107054.496382,31.10,4,3992.50,60.08,1344.95,2352.30,0.00,3516249359832.829590,3516249341826.575684,21,0,118.322147,0.106271,49606599,33309699,0,0,43984,0,1,1 +1774107059.496376,29.89,4,3992.50,60.18,1341.01,2356.20,0.00,0.048047,0.000000,70,0,119.999125,0.112129,49619505,33318301,0,0,43987,0,1,1 +1774107064.497374,30.27,4,3992.50,60.55,1326.59,2370.63,0.00,1.490034,0.028315,237,247,118.974208,0.112576,49632343,33326864,0,0,43990,0,1,1 +1774107069.496558,29.74,4,3992.50,60.18,1341.18,2356.04,0.00,0.468534,3519011749485.882324,238,2,119.619417,0.112187,49645267,33335393,0,0,43992,0,1,1 +1774107074.493690,29.87,4,3992.50,60.14,1342.73,2354.54,0.00,0.000000,0.000000,238,2,118.866114,0.112337,49658064,33344110,0,0,43995,0,1,1 +1774107079.492660,29.86,4,3992.50,60.26,1337.86,2359.32,0.00,0.000000,0.000000,238,2,119.623015,0.112989,49670944,33352768,0,0,43997,0,1,1 +1774107084.494498,30.77,4,3992.50,60.28,1337.21,2359.99,0.00,71015.958665,89033.225173,6058812,1587019,119.153616,0.110794,49683776,33361288,0,0,43999,0,1,1 +1774107089.496454,2.76,4,3992.50,53.91,1586.51,2110.79,0.00,3517060964639.583496,3517060946624.750488,21,0,51.269053,0.052201,49689375,33365085,0,0,44002,0,1,1 +1774107094.495413,6.62,4,3992.50,54.63,1558.29,2139.01,0.00,1.538699,0.028326,237,247,6.049237,0.040459,49691823,33367094,0,0,44004,0,1,1 +1774107099.494609,15.56,4,3992.50,55.26,1533.66,2163.57,0.00,0.000000,0.000000,237,247,22.165457,0.123050,49700572,33373937,0,0,44007,0,1,1 +1774107104.496524,7.59,4,3992.50,54.98,1544.75,2152.47,0.00,3517090244211.204590,3517090244212.714355,21,0,12.075860,0.063042,49705229,33377603,0,0,44010,0,1,1 +1774107109.491985,1.51,4,3992.50,54.49,1567.81,2133.54,0.00,71112.886761,89147.886222,6059601,1588402,0.003657,0.005990,49705316,33377719,0,0,44012,0,1,1 +1774107114.496374,11.40,4,3992.50,54.40,1568.41,2129.85,0.00,3515351422151.601074,12.395467,6058827,1588476,0.027045,45.433931,49707097,33382764,0,0,44015,0,1,1 +1774107119.491987,30.11,4,3992.50,54.66,1551.18,2140.09,0.00,3521526568167.266602,3521526550116.111816,199,0,0.042812,118.683434,49710222,33395349,0,0,44017,0,1,1 +1774107124.491923,11.90,4,3992.50,53.93,1581.15,2111.45,0.00,1.831860,0.000195,238,2,0.014933,41.063944,49711218,33399697,0,0,44019,0,1,1 +1774107129.496076,14.80,4,3992.50,53.98,1582.17,2113.59,0.00,3515517294745.144531,3515517294747.149902,21,0,40.035303,0.027806,49715793,33401303,0,0,44022,0,1,1 +1774107134.493973,1.20,4,3992.50,53.63,1595.92,2099.84,0.00,0.000000,0.000000,21,0,0.006792,0.009559,49715954,33401487,0,0,44024,0,1,1 +1774107139.494765,1.20,4,3992.50,53.77,1599.79,2105.41,0.00,0.000000,0.000000,21,0,0.003903,0.007150,49716056,33401629,0,0,44027,0,1,1 +1774107144.496514,0.75,4,3992.50,53.79,1598.87,2106.12,0.00,1.537841,0.028310,237,247,0.003414,0.006515,49716142,33401751,0,0,44030,0,1,1 +1774107149.496263,0.80,4,3992.50,53.79,1598.88,2106.10,0.00,3518613413300.625000,3518613413301.960449,199,0,0.003420,0.005843,49716228,33401866,0,0,44032,0,1,1 +1774107154.492103,1.41,4,3992.50,53.79,1598.85,2106.15,0.00,3521367294944.241211,0.000000,70,0,0.003856,0.007138,49716326,33402007,0,0,44035,0,1,1 +1774107159.495969,1.10,4,3992.50,53.66,1604.20,2100.80,0.00,0.126855,0.000000,199,0,0.003205,0.006708,49716413,33402140,0,0,44037,0,1,1 +1774107164.496510,0.85,4,3992.50,53.69,1602.75,2102.25,0.00,71057.065206,89263.355173,6059718,1590457,0.003878,0.007109,49716513,33402279,0,0,44039,0,1,1 +1774107169.491901,1.25,4,3992.50,53.76,1596.11,2104.82,0.00,3521683666705.571777,3521683648480.509766,199,0,0.003423,0.005858,49716599,33402395,0,0,44042,0,1,1 +1774107174.491940,0.85,4,3992.50,54.01,1586.31,2114.65,0.00,1.831821,0.000195,238,2,0.004875,0.007868,49716706,33402544,0,0,44044,0,1,1 +1774107179.496389,0.75,4,3992.50,53.98,1587.35,2113.61,0.00,70999.756929,89193.817806,6059718,1590601,0.003492,0.005900,49716797,33402664,0,0,44047,0,1,1 +1774107184.496608,0.80,4,3992.50,53.97,1587.71,2113.24,0.00,3518283454975.011230,3518283436767.564453,21,0,0.003828,0.007107,49716893,33402803,0,0,44050,0,1,1 +1774107189.496811,1.00,4,3992.50,53.92,1589.76,2111.20,0.00,0.000000,0.000000,21,0,0.004512,0.006445,49717000,33402931,0,0,44052,0,1,1 +1774107194.495963,0.90,4,3992.50,53.80,1594.70,2106.25,0.00,0.048055,0.000000,70,0,0.004905,0.007522,49717119,33403084,0,0,44055,0,1,1 +1774107199.496570,1.05,4,3992.50,53.99,1594.03,2113.85,0.00,3518010508684.951172,0.000000,21,0,0.003420,0.005842,49717205,33403199,0,0,44057,0,1,1 +1774107204.491899,10.65,4,3992.50,54.32,1578.42,2126.92,0.00,1.539817,0.028347,237,247,0.029769,38.901556,49719143,33407536,0,0,44059,0,1,1 +1774107209.492287,2.06,4,3992.50,54.01,1590.38,2114.81,0.00,3518164463885.279785,3518164463886.741699,70,0,0.003274,1.209336,49719262,33407811,0,0,44062,0,1,1 +1774107214.491905,0.80,4,3992.50,54.11,1586.71,2118.48,0.00,3518706040839.637207,0.000000,21,0,0.001819,0.005089,49719317,33407909,0,0,44064,0,1,1 +1774107219.495873,0.80,4,3992.50,54.11,1586.71,2118.48,0.00,71004.467024,89236.603370,6058944,1590815,0.002262,0.006361,49719385,33408032,0,0,44067,0,1,1 +1774107224.496814,0.95,4,3992.50,54.39,1575.61,2129.54,0.00,3517775368291.698730,3517775350048.475098,70,0,0.001806,0.005098,49719439,33408131,0,0,44070,0,1,1 +1774107229.496282,1.20,4,3992.50,54.10,1576.86,2118.08,0.00,3518812131981.952637,0.000000,21,0,0.002251,0.006357,49719506,33408253,0,0,44072,0,1,1 +1774107234.496729,0.80,4,3992.50,53.77,1589.17,2105.39,0.00,0.000000,0.000000,21,0,0.001851,0.005137,49719564,33408355,0,0,44075,0,1,1 +1774107239.496294,0.85,4,3992.50,53.81,1587.95,2106.61,0.00,0.175015,0.000000,199,0,0.002339,0.006419,49719638,33408481,0,0,44077,0,1,1 +1774107244.496652,0.85,4,3992.50,53.60,1596.09,2098.47,0.00,1.831705,0.000195,238,2,0.001831,0.005138,49719694,33408582,0,0,44079,0,1,1 +1774107249.495927,0.90,4,3992.50,53.45,1602.03,2092.53,0.00,3518947776534.576660,0.028129,237,247,0.002345,0.006473,49719768,33408712,0,0,44082,0,1,1 +1774107254.496525,0.90,4,3992.50,53.45,1602.04,2092.52,0.00,3518015960243.551270,3518015960244.886230,199,0,0.002184,0.005810,49719839,33408829,0,0,44084,0,1,1 +1774107259.496728,1.30,4,3992.50,53.70,1591.90,2102.62,0.00,3518294621549.579590,0.000000,21,0,0.002060,0.005745,49719902,33408941,0,0,44087,0,1,1 +1774107264.492169,0.85,4,3992.50,53.70,1591.95,2102.58,0.00,0.000000,0.000000,21,0,0.002291,0.006372,49719972,33409064,0,0,44090,0,1,1 +1774107269.496598,19.54,4,3992.50,60.01,1348.76,2349.53,0.00,0.000000,0.000000,21,0,27.622486,0.025773,49723174,33410535,0,0,44092,0,1,1 +1774107274.496449,34.24,4,3992.50,60.05,1349.11,2351.05,0.00,1.538425,0.028321,237,247,118.180252,0.053620,49735557,33414382,0,0,44095,0,1,1 +1774107279.496284,29.58,4,3992.50,60.47,1332.46,2367.62,0.00,3518553309177.783691,3518553309179.293945,21,0,119.599836,0.108868,49748375,33422858,0,0,44097,0,1,1 +1774107284.491825,30.04,4,3992.50,60.18,1344.05,2356.11,0.00,71128.363124,89393.541970,6059718,1591338,118.904587,0.110589,49761203,33431185,0,0,44099,0,1,1 +1774107289.497115,30.45,4,3992.50,60.31,1338.86,2361.29,0.00,3514718392836.037598,3514718374604.926270,237,247,120.072310,0.109971,49774143,33439730,0,0,44102,0,1,1 +1774107294.492736,30.35,4,3992.50,59.88,1353.47,2344.52,0.00,3521521476418.134766,3521521476419.645996,21,0,118.702505,0.108868,49787008,33447993,0,0,44104,0,1,1 +1774107299.495378,30.50,4,3992.50,60.01,1348.61,2349.38,0.00,0.048022,0.000000,70,0,119.737346,0.114851,49799948,33456815,0,0,44107,0,1,1 +1774107304.496866,30.53,4,3992.50,59.94,1351.08,2346.87,0.00,3517390704951.920410,0.000000,21,0,119.364479,0.112862,49812914,33465495,0,0,44110,0,1,1 +1774107309.495733,29.59,4,3992.50,59.81,1356.27,2341.80,0.00,2.007290,0.000195,238,2,119.027043,0.116862,49825805,33474362,0,0,44112,0,1,1 +1774107314.496632,2.01,4,3992.50,54.87,1549.66,2148.41,0.00,3517805069863.554199,3517805069865.560547,21,0,44.471232,0.047608,49830707,33477746,0,0,44115,0,1,1 +1774107319.496386,6.43,4,3992.50,54.56,1562.73,2136.32,0.00,0.000000,0.000000,21,0,6.053077,0.040560,49832980,33479489,0,0,44117,0,1,1 +1774107324.495848,19.90,4,3992.50,56.53,1485.89,2213.14,0.00,0.175019,0.000000,199,0,30.174628,0.125442,49842419,33486449,0,0,44119,0,1,1 +1774107329.493382,3.72,4,3992.50,54.54,1563.77,2135.24,0.00,0.000000,0.000000,199,0,4.040383,0.025658,49843983,33487682,0,0,44122,0,1,1 +1774107334.492007,1.05,4,3992.50,54.12,1579.97,2119.03,0.00,71084.385345,89339.364645,6059729,1592447,0.003985,0.008292,49844089,33487840,0,0,44124,0,1,1 +1774107339.495418,0.50,4,3992.50,54.00,1584.63,2114.40,0.00,3516038546251.227051,3516038528012.376953,237,247,0.003875,0.007115,49844189,33487980,0,0,44127,0,1,1 +1774107344.495917,0.55,4,3992.50,54.00,1584.67,2114.36,0.00,3518085914634.407227,3518085914635.869141,70,0,0.003420,0.006521,49844275,33488102,0,0,44130,0,1,1 +1774107349.496780,0.80,4,3992.50,54.14,1579.23,2119.51,0.00,71048.579905,89300.004186,6058955,1592513,0.003877,0.007121,49844375,33488242,0,0,44132,0,1,1 +1774107354.496736,0.65,4,3992.50,54.11,1579.82,2118.70,0.00,3518468417006.578125,3518468398751.840332,70,0,0.003878,0.007132,49844475,33488383,0,0,44135,0,1,1 +1774107359.491946,0.65,4,3992.50,54.04,1582.64,2115.84,0.00,3521810940351.981445,0.000000,21,0,0.004016,0.007293,49844586,33488534,0,0,44137,0,1,1 +1774107364.492444,0.75,4,3992.50,54.04,1582.71,2115.82,0.00,1.538226,0.028317,237,247,0.003420,0.005855,49844672,33488650,0,0,44139,0,1,1 +1774107369.496150,0.60,4,3992.50,53.86,1589.91,2108.62,0.00,3515831506613.838867,3515831506615.347656,21,0,0.003875,0.007127,49844772,33488791,0,0,44142,0,1,1 +1774107374.496173,0.65,4,3992.50,53.81,1591.80,2106.73,0.00,1.538372,0.028320,237,247,0.003878,0.007122,49844872,33488931,0,0,44144,0,1,1 +1774107379.495507,0.85,4,3992.50,53.84,1592.95,2108.03,0.00,0.000000,0.000000,237,247,0.003953,0.007173,49844977,33489075,0,0,44147,0,1,1 +1774107384.491932,0.65,4,3992.50,53.84,1592.75,2107.96,0.00,0.468792,3520954984640.645020,238,2,0.003431,0.005877,49845064,33489193,0,0,44150,0,1,1 +1774107389.492082,0.55,4,3992.50,53.85,1592.44,2108.27,0.00,3518331840471.901855,3518331840473.909180,21,0,0.003878,0.007122,49845164,33489333,0,0,44152,0,1,1 +1774107394.496296,0.55,4,3992.50,53.85,1592.45,2108.26,0.00,1.537083,0.028296,237,247,0.003875,0.007126,49845264,33489474,0,0,44155,0,1,1 +1774107399.492004,0.55,4,3992.50,53.85,1592.47,2108.24,0.00,71120.409766,89392.690808,6058955,1593037,0.004093,0.006783,49845353,33489592,0,0,44157,0,1,1 +1774107404.493678,0.55,4,3992.50,53.85,1592.48,2108.22,0.00,3517259442588.086426,3517259424338.936035,199,0,0.003877,0.007120,49845453,33489732,0,0,44159,0,1,1 +1774107409.491958,0.80,4,3992.50,53.85,1593.25,2108.44,0.00,1.363848,0.028330,237,247,0.003429,0.006519,49845540,33489854,0,0,44162,0,1,1 +1774107414.496687,0.60,4,3992.50,53.60,1602.22,2098.49,0.00,3515112921598.261230,3515112921599.770020,21,0,0.003874,0.007116,49845640,33489994,0,0,44164,0,1,1 +1774107419.496088,0.65,4,3992.50,53.63,1601.01,2099.70,0.00,0.175021,0.000000,199,0,0.003878,0.007133,49845740,33490135,0,0,44167,0,1,1 +1774107424.495384,8.46,4,3992.50,54.16,1580.04,2120.62,0.00,3518932902662.571777,0.000000,21,0,0.022445,32.039093,49847132,33493908,0,0,44170,0,1,1 +1774107429.494812,32.83,4,3992.50,54.38,1564.62,2128.93,0.00,2.007065,0.000195,238,2,0.036578,122.418109,49849836,33506824,0,0,44172,0,1,1 +1774107434.495909,14.06,4,3992.50,53.67,1592.10,2101.15,0.00,71047.424525,89471.149323,6059738,1594537,0.011361,50.667786,49850556,33512245,0,0,44175,0,1,1 +1774107439.496671,8.57,4,3992.50,59.29,1377.43,2321.44,0.00,3517901283355.318848,3517901264932.365234,21,0,11.822829,0.015260,49852130,33513060,0,0,44177,0,1,1 +1774107444.496095,11.61,4,3992.50,54.07,1578.92,2116.90,0.00,0.000000,0.000000,21,0,28.266009,29.268018,49856377,33517229,0,0,44179,0,1,1 +1774107449.496770,4.21,4,3992.50,53.91,1584.36,2110.62,0.00,2.006565,0.000195,238,2,0.007526,10.820834,49856832,33518505,0,0,44182,0,1,1 +1774107454.496228,0.60,4,3992.50,53.80,1588.76,2106.22,0.00,3518818484124.166504,3518818484126.173828,21,0,0.002289,0.006357,49856902,33518627,0,0,44184,0,1,1 +1774107459.496120,0.60,4,3992.50,53.80,1588.77,2106.21,0.00,71079.035412,89557.296361,6059121,1594987,0.002224,0.006163,49856970,33518748,0,0,44187,0,1,1 +1774107464.491970,0.65,4,3992.50,53.66,1594.19,2100.79,0.00,3521360066675.835449,3521360048181.113281,237,247,0.002299,0.006379,49857041,33518872,0,0,44190,0,1,1 +1774107469.496628,0.95,4,3992.50,54.04,1585.97,2115.79,0.00,0.000000,0.000000,237,247,0.002337,0.006412,49857115,33518998,0,0,44192,0,1,1 +1774107474.496290,0.65,4,3992.50,53.85,1593.39,2108.34,0.00,3518674332345.093750,3518674332346.428711,199,0,0.003211,0.007670,49857187,33519127,0,0,44194,0,1,1 +1774107479.491936,0.45,4,3992.50,53.85,1593.39,2108.33,0.00,1.364567,0.028345,237,247,0.001833,0.005103,49857243,33519226,0,0,44197,0,1,1 +1774107484.496767,0.60,4,3992.50,53.58,1603.96,2097.77,0.00,3515041427186.033691,3515041427187.541992,21,0,0.002287,0.006350,49857313,33519348,0,0,44199,0,1,1 +1774107489.496422,0.60,4,3992.50,53.78,1596.12,2105.60,0.00,2.006974,0.000195,238,2,0.003557,0.007176,49857418,33519498,0,0,44202,0,1,1 +1774107494.492081,1.46,4,3992.50,53.72,1598.48,2103.25,0.00,3521494411157.412598,3521494411159.421387,21,0,0.003480,0.006872,49857518,33519642,0,0,44204,0,1,1 +1774107499.492402,1.05,4,3992.50,54.07,1580.02,2117.09,0.00,71072.933711,89555.986130,6059121,1595098,0.002060,0.005719,49857581,33519752,0,0,44207,0,1,1 +1774107504.496856,0.65,4,3992.50,54.01,1582.06,2114.62,0.00,3515305670472.581055,3515305652002.789062,238,2,0.002102,0.005765,49857647,33519866,0,0,44210,0,1,1 +1774107509.492226,13.78,4,3992.50,60.26,1341.59,2359.47,0.00,3521698178839.877441,3521698178841.710938,199,0,5.421755,0.017286,49858588,33520638,0,0,44212,0,1,1 +1774107514.494670,34.98,4,3992.50,60.32,1341.78,2361.62,0.00,71042.599608,89518.134426,6059121,1595255,119.108833,0.029564,49870853,33522653,0,0,44215,0,1,1 +1774107519.492403,29.02,4,3992.50,60.28,1343.26,2360.15,0.00,3520033074337.220215,3520033055844.398926,70,0,118.815137,0.017283,49882864,33523882,0,0,44217,0,1,1 +1774107524.498390,29.59,4,3992.50,60.02,1353.56,2349.89,0.00,1.956446,0.000195,238,2,119.424104,0.033847,49894933,33526312,0,0,44219,0,1,1 +1774107529.495672,29.48,4,3992.50,59.97,1355.53,2347.86,0.00,3520350376384.532715,3520350376386.541016,21,0,119.044427,0.066884,49907257,33531388,0,0,44222,0,1,1 +1774107534.495709,30.49,4,3992.50,60.40,1338.68,2364.63,0.00,0.000000,0.000000,21,0,119.388027,0.087988,49919874,33538162,0,0,44224,0,1,1 +1774107539.496079,30.94,4,3992.50,60.09,1350.95,2352.57,0.00,71072.238542,89555.384179,6059121,1595325,119.183836,0.100697,49932672,33545887,0,0,44227,0,1,1 +1774107544.496399,30.33,4,3992.50,59.95,1356.14,2347.30,0.00,3518211877253.839844,3518211858770.510742,21,0,119.186344,0.104775,49945434,33553932,0,0,44230,0,1,1 +1774107549.496720,30.25,4,3992.50,60.01,1353.65,2349.71,0.00,71072.935531,89556.404118,6059121,1595354,119.188154,0.104549,49958279,33561845,0,0,44232,0,1,1 +1774107554.495967,5.82,4,3992.50,55.26,1539.78,2163.66,0.00,0.078137,0.093471,6059128,1595365,66.720718,0.059470,49965500,33566311,0,0,44235,0,1,1 +1774107559.496382,4.56,4,3992.50,54.46,1570.27,2132.08,0.00,3518145342832.430176,3518145324347.783691,237,247,4.035304,0.027484,49967014,33567511,0,0,44237,0,1,1 +1774107564.495954,21.90,4,3992.50,54.74,1559.15,2143.18,0.00,0.000000,0.000000,237,247,32.194125,0.138660,49977181,33575034,0,0,44239,0,1,1 +1774107569.496701,4.26,4,3992.50,54.31,1575.90,2126.43,0.00,71069.609582,89549.439851,6059909,1596595,4.038965,0.027255,49978788,33576274,0,0,44242,0,1,1 +1774107574.492396,0.70,4,3992.50,54.10,1584.29,2118.01,0.00,0.000000,0.297717,6059909,1596831,0.004586,0.008527,49978904,33576438,0,0,44244,0,1,1 +1774107579.496408,0.70,4,3992.50,54.04,1586.50,2115.80,0.00,0.000000,0.006050,6059909,1596840,0.003875,0.007127,49979004,33576579,0,0,44247,0,1,1 +1774107584.496170,0.60,4,3992.50,54.05,1586.19,2116.14,0.00,3518604998482.660645,3518604980000.395996,21,0,0.003878,0.007133,49979104,33576720,0,0,44250,0,1,1 +1774107589.496408,0.85,4,3992.50,54.27,1577.56,2124.77,0.00,0.048045,0.000000,70,0,0.003886,0.007130,49979205,33576861,0,0,44252,0,1,1 +1774107594.495860,0.60,4,3992.50,54.06,1585.90,2116.43,0.00,3518823106249.215820,0.000000,21,0,0.003421,0.005866,49979291,33576978,0,0,44255,0,1,1 +1774107599.491935,0.60,4,3992.50,54.08,1584.93,2117.39,0.00,0.000000,0.000000,21,0,0.003906,0.007159,49979393,33577120,0,0,44257,0,1,1 +1774107604.491979,0.60,4,3992.50,54.11,1583.98,2118.34,0.00,71081.147245,89563.091900,6059918,1597212,0.003966,0.007891,49979500,33577272,0,0,44259,0,1,1 +1774107609.491956,0.55,4,3992.50,54.10,1584.08,2118.25,0.00,3518453011658.947266,0.015625,6059144,1597012,0.003878,0.007132,49979600,33577413,0,0,44262,0,1,1 +1774107614.491915,0.55,4,3992.50,54.11,1583.86,2118.46,0.00,4.109311,0.065528,6059918,1597302,0.003420,0.005855,49979686,33577529,0,0,44264,0,1,1 +1774107619.496411,0.85,4,3992.50,54.14,1581.89,2119.77,0.00,3515276273090.306641,3515276254622.717285,238,2,0.003949,0.007166,49979791,33577673,0,0,44267,0,1,1 +1774107624.497706,9.10,4,3992.50,54.10,1583.41,2117.98,0.00,3517526526189.638672,0.028118,237,247,0.030198,37.054917,49981777,33581931,0,0,44270,0,1,1 +1774107629.496414,31.69,4,3992.50,54.11,1575.48,2118.55,0.00,0.468578,3519346088456.946289,238,2,0.038294,124.816558,49984554,33595209,0,0,44272,0,1,1 +1774107634.491967,12.14,4,3992.50,54.04,1578.34,2115.61,0.00,3521569623933.802734,0.028150,237,247,0.014888,43.309095,49985445,33599940,0,0,44275,0,1,1 +1774107639.495997,12.30,4,3992.50,58.82,1394.69,2302.75,0.00,3515603486222.709473,3515603486224.170410,70,0,33.629659,0.024810,49989234,33601290,0,0,44277,0,1,1 +1774107644.494250,0.95,4,3992.50,54.90,1547.97,2149.46,0.00,1.959474,0.000195,238,2,6.416777,0.006118,49990019,33601505,0,0,44279,0,1,1 +1774107649.491928,2.11,4,3992.50,54.43,1570.13,2130.89,0.00,71129.406969,89790.477532,6060037,1598796,0.004111,0.008103,49990119,33601646,0,0,44282,0,1,1 +1774107654.496063,0.85,4,3992.50,54.36,1572.65,2128.36,0.00,3515529572646.953613,3515529554011.795410,199,0,0.003850,0.007104,49990217,33601785,0,0,44284,0,1,1 +1774107659.496342,1.35,4,3992.50,54.08,1583.66,2117.38,0.00,0.000000,0.000000,199,0,0.010133,2.815238,49990698,33602487,0,0,44287,0,1,1 +1774107664.495948,10.51,4,3992.50,53.83,1591.27,2107.59,0.00,3518714765103.696777,0.000000,21,0,0.017163,37.266438,49991841,33606609,0,0,44290,0,1,1 +1774107669.496010,0.60,4,3992.50,53.85,1590.53,2108.32,0.00,0.048046,0.000000,70,0,0.001398,0.004497,49991885,33606689,0,0,44292,0,1,1 +1774107674.492011,0.65,4,3992.50,53.86,1590.25,2108.60,0.00,71151.136000,89875.443832,6059264,1599035,0.002278,0.006361,49991954,33606811,0,0,44294,0,1,1 +1774107679.496390,1.00,4,3992.50,54.06,1585.32,2116.71,0.00,3515358165640.077637,3515358146946.995117,199,0,0.001829,0.005094,49992010,33606910,0,0,44297,0,1,1 +1774107684.491982,0.75,4,3992.50,54.08,1584.54,2117.28,0.00,1.364582,0.028345,237,247,0.002291,0.006362,49992080,33607032,0,0,44299,0,1,1 +1774107689.491920,0.65,4,3992.50,54.08,1584.55,2117.27,0.00,3518481002007.349121,3518481002008.811035,70,0,0.002297,0.006374,49992151,33607156,0,0,44302,0,1,1 +1774107694.496415,0.75,4,3992.50,54.08,1584.55,2117.27,0.00,71034.462443,89729.043752,6060038,1599377,0.002312,0.006381,49992223,33607280,0,0,44304,0,1,1 +1774107699.496758,0.55,4,3992.50,54.08,1584.55,2117.27,0.00,3518195373733.033203,3518195355021.468262,237,247,0.002110,0.005782,49992290,33607394,0,0,44307,0,1,1 +1774107704.496046,0.75,4,3992.50,53.88,1592.44,2109.38,0.00,3518938951161.758301,3518938951163.220703,70,0,0.002136,0.005839,49992359,33607512,0,0,44310,0,1,1 +1774107709.496049,1.15,4,3992.50,53.91,1599.71,2110.56,0.00,0.000000,0.000000,70,0,0.002444,0.006482,49992439,33607644,0,0,44312,0,1,1 +1774107714.496073,0.65,4,3992.50,53.95,1598.18,2112.08,0.00,0.126952,0.000000,199,0,0.002289,0.006356,49992509,33607766,0,0,44314,0,1,1 +1774107719.494494,0.70,4,3992.50,53.94,1598.22,2112.04,0.00,3519548990062.668457,0.000000,21,0,0.002290,0.006343,49992579,33607887,0,0,44317,0,1,1 +1774107724.495841,17.81,4,3992.50,60.47,1346.64,2367.44,0.00,71079.222708,89785.730154,6060038,1599553,10.020162,0.018858,49993983,33608818,0,0,44319,0,1,1 +1774107729.492142,35.21,4,3992.50,60.39,1351.96,2364.46,0.00,3521042316150.629883,3521042297425.052246,199,0,120.257457,0.055167,50006375,33612788,0,0,44322,0,1,1 +1774107734.495691,30.61,4,3992.50,60.70,1339.78,2376.68,0.00,3515941949803.567871,0.000000,21,0,120.084122,0.028990,50018859,33614746,0,0,44324,0,1,1 +1774107739.492227,28.91,4,3992.50,60.60,1343.67,2372.75,0.00,0.048080,0.000000,70,0,120.251490,0.025181,50031222,33616537,0,0,44327,0,1,1 +1774107744.491898,29.30,4,3992.50,60.40,1351.12,2364.82,0.00,3518669004722.507324,0.000000,21,0,119.392155,0.081130,50043742,33622766,0,0,44330,0,1,1 +1774107749.491926,29.11,4,3992.50,60.60,1343.29,2372.62,0.00,1.538370,0.028320,237,247,118.971806,0.042668,50056098,33625792,0,0,44332,0,1,1 +1774107754.496163,28.81,4,3992.50,60.44,1349.63,2366.31,0.00,3515458399269.049805,3515458399270.383789,199,0,120.076827,0.056106,50068574,33630004,0,0,44335,0,1,1 +1774107759.494007,29.05,4,3992.50,60.73,1338.00,2377.80,0.00,0.000000,0.000000,199,0,120.240389,0.084393,50081261,33636328,0,0,44337,0,1,1 +1774107764.496457,29.22,4,3992.50,60.24,1357.23,2358.70,0.00,71059.268260,89766.148901,6059264,1599492,118.132112,0.087995,50093862,33642918,0,0,44339,0,1,1 +1774107769.492410,3.36,4,3992.50,55.24,1553.45,2162.60,0.00,4.146227,0.128620,6060043,1599758,58.135167,0.029358,50099988,33645002,0,0,44342,0,1,1 +1774107774.491912,7.49,4,3992.50,54.77,1575.36,2144.55,0.00,0.032816,0.282450,6060047,1599956,8.056986,0.044096,50102686,33647087,0,0,44344,0,1,1 +1774107779.496384,14.68,4,3992.50,55.13,1561.52,2158.42,0.00,3515293467785.811523,3515293449088.914062,237,247,18.196758,0.083977,50108633,33651444,0,0,44347,0,1,1 +1774107784.491938,9.11,4,3992.50,55.14,1560.92,2158.99,0.00,3521568847088.134766,3521568847089.471191,199,0,14.007942,0.067476,50113271,33654972,0,0,44350,0,1,1 +1774107789.496853,1.15,4,3992.50,54.81,1573.89,2146.05,0.00,0.000000,0.000000,199,0,0.005681,0.009118,50113409,33655149,0,0,44352,0,1,1 +1774107794.496476,0.75,4,3992.50,54.69,1578.62,2141.31,0.00,3518702372663.905273,0.000000,21,0,0.004930,0.007516,50113530,33655301,0,0,44354,0,1,1 +1774107799.495872,0.95,4,3992.50,54.70,1571.60,2141.56,0.00,71107.033870,89822.403173,6060048,1601015,0.003866,0.007752,50113629,33655444,0,0,44357,0,1,1 +1774107804.491991,0.75,4,3992.50,54.68,1571.88,2141.02,0.00,3521170341332.880859,3521170322603.725098,237,247,0.003454,0.005910,50113717,33655564,0,0,44359,0,1,1 +1774107809.491905,0.60,4,3992.50,54.68,1571.89,2141.00,0.00,71098.117472,89813.143157,6060048,1601079,0.003878,0.007132,50113817,33655705,0,0,44362,0,1,1 +1774107814.491921,0.70,4,3992.50,54.39,1583.47,2129.43,0.00,3518426172257.750488,3518426153544.612793,21,0,0.003878,0.007122,50113917,33655845,0,0,44364,0,1,1 +1774107819.491991,0.65,4,3992.50,54.40,1582.99,2129.90,0.00,0.048046,0.000000,70,0,0.003953,0.007213,50114023,33655991,0,0,44367,0,1,1 +1774107824.492614,0.60,4,3992.50,54.40,1583.01,2129.89,0.00,0.126937,0.000000,199,0,0.003420,0.005877,50114109,33656109,0,0,44370,0,1,1 +1774107829.496820,0.95,4,3992.50,54.40,1580.85,2129.87,0.00,3515479642187.916016,0.000000,21,0,0.003875,0.007104,50114209,33656248,0,0,44372,0,1,1 +1774107834.496854,1.50,4,3992.50,54.24,1586.89,2123.45,0.00,0.174999,0.000000,199,0,0.003978,0.007194,50114316,33656393,0,0,44374,0,1,1 +1774107839.496043,0.75,4,3992.50,54.24,1586.91,2123.44,0.00,71109.794744,89826.620578,6060048,1601494,0.003912,0.007173,50114419,33656537,0,0,44377,0,1,1 +1774107844.496140,0.70,4,3992.50,54.24,1586.69,2123.66,0.00,3518369146708.394531,3518369127995.091309,70,0,0.003420,0.005855,50114505,33656653,0,0,44379,0,1,1 +1774107849.495874,11.16,4,3992.50,54.94,1558.63,2151.07,0.00,3518624344103.994141,0.000000,21,0,0.035476,44.682521,50116853,33661946,0,0,44382,0,1,1 +1774107854.494321,31.44,4,3992.50,54.91,1553.27,2150.00,0.00,71116.419926,89984.299714,6059274,1602232,0.061106,122.232547,50121431,33674939,0,0,44384,0,1,1 +1774107859.495924,12.67,4,3992.50,54.53,1571.16,2134.93,0.00,3517310003136.046875,3517309984280.069824,21,0,0.009894,38.249455,50121990,33678922,0,0,44387,0,1,1 +1774107864.491889,12.11,4,3992.50,54.10,1591.27,2118.02,0.00,71168.359829,90089.983604,6059399,1602723,40.097904,0.025115,50126450,33680329,0,0,44390,0,1,1 +1774107869.496807,0.80,4,3992.50,53.91,1598.45,2110.84,0.00,3514979321153.868652,3514979302266.045898,70,0,0.005688,0.007367,50126577,33680475,0,0,44392,0,1,1 +1774107874.491893,0.85,4,3992.50,53.91,1598.65,2110.65,0.00,71180.850631,90105.941863,6059399,1602841,0.004138,0.008097,50126679,33680615,0,0,44394,0,1,1 +1774107879.496240,0.60,4,3992.50,53.90,1598.86,2110.44,0.00,3515380575529.465820,3515380556639.448730,21,0,0.003256,0.006876,50126767,33680748,0,0,44397,0,1,1 +1774107884.495906,11.46,4,3992.50,54.30,1580.89,2126.04,0.00,0.175012,0.000000,199,0,0.032739,40.071304,50128993,33685289,0,0,44399,0,1,1 +1774107889.491933,1.15,4,3992.50,54.47,1577.59,2132.68,0.00,0.000000,0.000000,199,0,0.002093,0.005730,50129057,33685401,0,0,44402,0,1,1 +1774107894.496311,0.65,4,3992.50,54.19,1587.98,2121.85,0.00,71052.647382,89972.878460,6060173,1603495,0.002312,0.006382,50129129,33685525,0,0,44404,0,1,1 +1774107899.496088,0.85,4,3992.50,54.16,1589.30,2120.53,0.00,3518594492128.720703,3518594473191.249512,21,0,0.002289,0.006366,50129199,33685648,0,0,44407,0,1,1 +1774107904.496296,1.00,4,3992.50,53.90,1599.33,2110.50,0.00,71112.072223,90047.943133,6060173,1603506,0.002276,0.006366,50129268,33685771,0,0,44410,0,1,1 +1774107909.495854,0.80,4,3992.50,53.90,1599.34,2110.49,0.00,3518748466780.001953,3518748447841.664551,21,0,0.001858,0.005160,50129326,33685874,0,0,44412,0,1,1 +1774107914.491990,0.85,4,3992.50,53.86,1600.91,2108.92,0.00,0.175135,0.000000,199,0,0.002264,0.006291,50129394,33685991,0,0,44414,0,1,1 +1774107919.491906,1.15,4,3992.50,53.96,1592.61,2112.56,0.00,71116.062964,90059.319024,6060173,1603603,0.002327,0.006428,50129467,33686118,0,0,44417,0,1,1 +1774107924.492800,0.95,4,3992.50,53.92,1594.06,2111.09,0.00,3517808209243.252441,3517808190302.365723,237,247,0.002339,0.006417,50129541,33686244,0,0,44419,0,1,1 +1774107929.493955,0.90,4,3992.50,53.91,1594.59,2110.57,0.00,0.000000,0.000000,237,247,0.002463,0.007146,50129623,33686381,0,0,44422,0,1,1 +1774107934.496588,0.90,4,3992.50,53.92,1593.98,2111.19,0.00,0.468210,3516584722690.079102,238,2,0.001869,0.005144,50129682,33686484,0,0,44424,0,1,1 +1774107939.496334,0.80,4,3992.50,53.95,1592.77,2112.39,0.00,3518616215666.447266,3518616215668.279297,199,0,0.002289,0.006366,50129752,33686607,0,0,44427,0,1,1 +1774107944.496118,0.80,4,3992.50,53.95,1592.78,2112.38,0.00,71113.835606,90061.773944,6059399,1603446,0.002289,0.006366,50129822,33686730,0,0,44430,0,1,1 +1774107949.495409,26.69,4,3992.50,60.43,1349.07,2365.94,0.00,3518935676652.178711,3518935657700.543457,238,2,42.474927,0.036733,50134596,33688970,0,0,44432,0,1,1 +1774107954.492085,34.26,4,3992.50,59.99,1366.88,2348.75,0.00,3520778398361.308594,0.028144,237,247,118.251733,0.043386,50147016,33692117,0,0,44435,0,1,1 +1774107959.492656,31.47,4,3992.50,60.08,1363.25,2352.33,0.00,3518034968021.130371,3518034968022.640137,21,0,119.172974,0.076341,50159763,33697999,0,0,44437,0,1,1 +1774107964.495827,31.12,4,3992.50,60.31,1354.31,2361.29,0.00,0.000000,0.000000,21,0,119.104536,0.060410,50172309,33702427,0,0,44439,0,1,1 +1774107969.494409,31.28,4,3992.50,60.37,1351.91,2363.64,0.00,0.000000,0.000000,21,0,119.811926,0.052047,50184786,33706221,0,0,44442,0,1,1 +1774107974.496630,31.47,4,3992.50,60.12,1361.71,2353.89,0.00,0.048026,0.000000,70,0,118.934336,0.082766,50197410,33712626,0,0,44444,0,1,1 +1774107979.495381,30.56,4,3992.50,60.53,1345.78,2369.81,0.00,3519316624871.598145,0.000000,21,0,119.822416,0.098102,50210095,33720050,0,0,44447,0,1,1 +1774107984.491941,31.54,4,3992.50,60.04,1361.25,2350.89,0.00,0.175120,0.000000,199,0,119.275488,0.101303,50222945,33727772,0,0,44450,0,1,1 +1774107989.496171,25.33,4,3992.50,59.99,1363.34,2348.88,0.00,71054.762379,89982.184622,6060174,1603957,119.086918,0.084067,50235552,33734242,0,0,44452,0,1,1 +1774107994.494014,1.05,4,3992.50,53.76,1607.37,2104.85,0.00,3519955588177.633301,3519955569226.200195,21,0,29.661019,0.024248,50238705,33736032,0,0,44455,0,1,1 +1774107999.496032,12.78,4,3992.50,54.05,1595.96,2116.25,0.00,0.174929,0.000000,199,0,14.084751,0.068239,50243250,33739477,0,0,44457,0,1,1 +1774108004.498089,14.44,4,3992.50,54.86,1564.29,2147.84,0.00,1.831083,0.000195,238,2,20.223790,0.100727,50250088,33744617,0,0,44459,0,1,1 +1774108009.492020,4.27,4,3992.50,54.25,1586.43,2124.11,0.00,3522713154198.538574,3522713154200.372559,199,0,5.954295,0.034238,50252199,33746270,0,0,44462,0,1,1 +1774108014.495880,0.90,4,3992.50,54.08,1593.02,2117.53,0.00,0.000000,0.000000,199,0,0.003862,0.007117,50252298,33746410,0,0,44464,0,1,1 +1774108019.495887,0.90,4,3992.50,53.89,1600.43,2110.11,0.00,1.831833,0.000195,238,2,0.003043,0.006249,50252380,33746531,0,0,44467,0,1,1 +1774108024.495932,1.05,4,3992.50,53.83,1602.84,2107.70,0.00,3518405308203.944336,3518405308205.951660,21,0,0.004081,0.007475,50252483,33746681,0,0,44470,0,1,1 +1774108029.491964,0.90,4,3992.50,53.84,1602.61,2107.92,0.00,1.539601,0.028343,237,247,0.003881,0.007128,50252583,33746821,0,0,44472,0,1,1 +1774108034.496123,0.75,4,3992.50,53.63,1610.98,2099.56,0.00,71050.440365,89985.036356,6059410,1605225,0.003883,0.007134,50252684,33746963,0,0,44475,0,1,1 +1774108039.492070,1.16,4,3992.50,53.79,1604.35,2105.90,0.00,3521290848921.008789,3521290829956.807129,21,0,0.003702,0.006544,50252781,33747094,0,0,44477,0,1,1 +1774108044.496878,0.85,4,3992.50,53.75,1605.70,2104.43,0.00,71046.861328,89973.492497,6060184,1605542,0.003709,0.006588,50252879,33747229,0,0,44479,0,1,1 +1774108049.496023,0.85,4,3992.50,53.77,1604.98,2105.15,0.00,3519039234823.982422,3519039215875.910156,21,0,0.003879,0.007134,50252979,33747370,0,0,44482,0,1,1 +1774108054.496802,0.80,4,3992.50,53.89,1600.12,2110.02,0.00,0.048039,0.000000,70,0,0.003952,0.007149,50253084,33747512,0,0,44484,0,1,1 +1774108059.491838,0.95,4,3992.50,53.89,1600.12,2110.01,0.00,1.491813,0.028348,237,247,0.003825,0.006936,50253183,33747651,0,0,44487,0,1,1 +1774108064.496390,0.80,4,3992.50,53.89,1600.15,2109.99,0.00,0.468031,3515236703273.746582,238,2,0.003874,0.007757,50253283,33747795,0,0,44490,0,1,1 +1774108069.495988,1.20,4,3992.50,54.03,1597.20,2115.38,0.00,3518720325822.401367,3518720325824.359863,70,0,0.003909,0.007136,50253385,33747936,0,0,44492,0,1,1 +1774108074.491913,16.73,4,3992.50,54.35,1581.72,2128.02,0.00,0.000000,0.000000,70,0,0.033761,68.162712,50255633,33755401,0,0,44495,0,1,1 +1774108079.495206,29.16,4,3992.50,54.33,1577.78,2127.02,0.00,1.489351,0.028302,237,247,0.031172,120.098951,50257801,33768048,0,0,44497,0,1,1 +1774108084.496407,16.90,4,3992.50,53.94,1596.67,2111.94,0.00,3517592572292.081543,3517592572293.416504,199,0,40.061639,16.848853,50262647,33771334,0,0,44499,0,1,1 +1774108089.496231,1.41,4,3992.50,53.83,1601.05,2107.56,0.00,3518561062232.463379,0.000000,70,0,0.005371,0.003681,50262754,33771420,0,0,44502,0,1,1 +1774108094.493953,1.10,4,3992.50,53.85,1600.32,2108.26,0.00,1.959682,0.000195,238,2,0.005646,0.009762,50262891,33771597,0,0,44504,0,1,1 +1774108099.495078,1.10,4,3992.50,53.91,1602.45,2110.64,0.00,3517645524062.076660,3517645524063.908203,199,0,0.003865,0.007131,50262990,33771738,0,0,44507,0,1,1 +1774108104.491832,0.90,4,3992.50,53.91,1602.46,2110.61,0.00,3520722962923.231445,0.000000,21,0,0.003261,0.006900,50263078,33771872,0,0,44510,0,1,1 +1774108109.494064,11.24,4,3992.50,54.37,1581.99,2128.73,0.00,71095.928373,90259.323497,6059551,1607299,0.023206,40.051059,50264578,33776455,0,0,44512,0,1,1 +1774108114.492692,1.05,4,3992.50,54.32,1584.15,2126.58,0.00,3519402692219.065918,3519402673041.854492,21,0,0.002733,0.007139,50264660,33776595,0,0,44515,0,1,1 +1774108119.492811,0.90,4,3992.50,54.32,1584.04,2126.68,0.00,0.174996,0.000000,199,0,0.002301,0.006387,50264731,33776719,0,0,44517,0,1,1 +1774108124.495968,0.80,4,3992.50,54.13,1591.44,2119.29,0.00,0.000000,0.000000,199,0,0.002287,0.006352,50264801,33776841,0,0,44519,0,1,1 +1774108129.491987,1.25,4,3992.50,54.24,1583.25,2123.43,0.00,1.833295,0.000195,238,2,0.001833,0.005747,50264857,33776944,0,0,44522,0,1,1 +1774108134.491988,0.95,4,3992.50,54.25,1582.34,2124.12,0.00,71125.656112,90299.788852,6059551,1607405,0.002314,0.006387,50264929,33777068,0,0,44524,0,1,1 +1774108139.496429,0.90,4,3992.50,54.25,1582.34,2124.12,0.00,3515314700954.660156,3515314681798.038574,237,247,0.002320,0.006399,50265002,33777194,0,0,44527,0,1,1 +1774108144.496275,0.95,4,3992.50,53.99,1592.79,2113.67,0.00,3518545772907.950684,3518545772909.285645,199,0,0.002314,0.006428,50265074,33777321,0,0,44530,0,1,1 +1774108149.492054,0.80,4,3992.50,53.99,1592.80,2113.67,0.00,71187.584017,90382.113225,6059551,1607454,0.001883,0.005155,50265134,33777423,0,0,44532,0,1,1 +1774108154.496665,0.85,4,3992.50,54.10,1588.51,2117.95,0.00,3515195321986.066895,3515195302825.411133,199,0,0.002449,0.006500,50265215,33777556,0,0,44534,0,1,1 +1774108159.496424,1.35,4,3992.50,54.09,1594.59,2117.94,0.00,3518606645274.912109,0.000000,70,0,0.002320,0.006404,50265287,33777682,0,0,44537,0,1,1 +1774108164.494967,0.80,4,3992.50,54.12,1593.74,2118.89,0.00,3519462890880.689453,0.000000,21,0,0.002289,0.006358,50265357,33777804,0,0,44539,0,1,1 +1774108169.496533,0.80,4,3992.50,54.12,1593.75,2118.89,0.00,0.048032,0.000000,70,0,0.001830,0.005097,50265413,33777903,0,0,44542,0,1,1 +1774108174.492341,18.31,4,3992.50,60.27,1357.07,2359.79,0.00,71187.312662,90381.729361,6059551,1607566,29.474149,0.028932,50268752,33779571,0,0,44544,0,1,1 +1774108179.495719,34.73,4,3992.50,60.27,1358.71,2359.57,0.00,3516061911356.181641,3516061892190.854980,21,0,123.689771,0.046581,50281542,33782959,0,0,44547,0,1,1 +1774108184.495799,5.67,4,3992.50,61.14,1324.46,2393.88,0.00,2.006804,0.000195,238,2,14.184740,0.003862,50283050,33783208,0,0,44550,0,1,1 +1774108189.495874,1.06,4,3992.50,61.39,1309.67,2403.47,0.00,3518384442966.024414,3518384442968.031738,21,0,0.000539,0.000020,50283060,33783210,0,0,44552,0,1,1 +1774108194.492176,0.86,4,3992.50,61.22,1316.39,2396.74,0.00,0.175130,0.000000,199,0,0.000540,0.000513,50283070,33783216,0,0,44555,0,1,1 +1774108199.491911,0.76,4,3992.50,61.25,1314.98,2398.16,0.00,3518623672714.762207,0.000000,21,0,0.000000,0.000181,50283070,33783219,0,0,44557,0,1,1 +1774108204.492207,0.86,4,3992.50,61.16,1318.57,2394.57,0.00,2.006717,0.000195,238,2,0.000000,0.000020,50283070,33783221,0,0,44559,0,1,1 +1774108209.496577,0.61,4,3992.50,61.18,1317.66,2395.48,0.00,3515364877705.396973,3515364877707.227539,199,0,0.000539,0.000030,50283080,33783224,0,0,44562,0,1,1 +1774108214.491887,0.81,4,3992.50,61.18,1317.67,2395.46,0.00,3521740232142.398438,0.000000,21,0,0.002326,0.006596,50283153,33783355,0,0,44564,0,1,1 +1774108219.496396,1.06,4,3992.50,61.39,1307.79,2403.74,0.00,0.000000,0.000000,21,0,0.002343,0.006404,50283227,33783481,0,0,44567,0,1,1 +1774108224.496063,21.46,4,3992.50,60.54,1341.23,2370.11,0.00,71132.414898,90312.285007,6059561,1607820,87.754425,0.080062,50292902,33789432,0,0,44570,0,1,1 +1774108229.492478,24.37,4,3992.50,60.25,1352.59,2358.78,0.00,4.202916,0.036941,6060362,1608082,99.838583,0.093843,50303712,33796400,0,0,44572,0,1,1 +1774108234.496555,31.64,4,3992.50,60.26,1352.18,2359.21,0.00,3515570292945.326172,0.007026,6059588,1607874,130.812367,0.048433,50317540,33800017,0,0,44575,0,1,1 +1774108239.493372,38.74,4,3992.50,60.41,1346.17,2365.12,0.00,0.000000,0.006449,6059588,1607882,157.188303,0.076970,50333524,33805969,0,0,44577,0,1,1 +1774108244.492185,5.76,4,3992.50,61.38,1308.16,2403.28,0.00,3519272772886.868652,3519272753703.584961,199,0,16.179775,0.005296,50335202,33806390,0,0,44579,0,1,1 +1774108249.496811,1.72,4,3992.50,61.73,1294.89,2416.69,0.00,71061.841663,90222.907269,6059588,1607917,0.000278,0.000030,50335212,33806393,0,0,44582,0,1,1 +1774108254.494602,0.71,4,3992.50,61.38,1308.30,2403.16,0.00,3519992097784.663086,3519992078597.518066,70,0,0.000279,0.000020,50335222,33806395,0,0,44584,0,1,1 +1774108259.494941,0.66,4,3992.50,61.39,1308.09,2403.38,0.00,1.958657,0.000195,238,2,0.000000,0.000674,50335222,33806402,0,0,44587,0,1,1 +1774108264.491915,0.91,4,3992.50,61.39,1308.09,2403.37,0.00,3520567251348.255371,3520567251350.263672,21,0,0.000000,0.000030,50335222,33806405,0,0,44590,0,1,1 +1774108269.495646,1.01,4,3992.50,61.39,1308.09,2403.37,0.00,0.048011,0.000000,70,0,0.000278,0.000020,50335232,33806407,0,0,44592,0,1,1 +1774108274.494667,0.76,4,3992.50,61.41,1307.13,2404.33,0.00,3519125903934.027344,0.000000,21,0,0.002194,0.005798,50335304,33806524,0,0,44595,0,1,1 +1774108279.492966,1.16,4,3992.50,61.80,1295.12,2419.79,0.00,0.000000,0.000000,21,0,0.002117,0.005763,50335371,33806637,0,0,44597,0,1,1 +1774108284.495832,1.31,4,3992.50,61.67,1300.46,2414.46,0.00,0.048019,0.000000,70,0,0.002109,0.005794,50335438,33806752,0,0,44599,0,1,1 +1774108289.496070,0.96,4,3992.50,61.70,1299.16,2415.75,0.00,0.126947,0.000000,199,0,0.005284,0.010029,50335549,33806918,0,0,44602,0,1,1 +1774108294.491970,14.16,4,3992.50,60.27,1355.07,2359.85,0.00,3521325213192.648926,0.000000,21,0,54.974384,0.033003,50341278,33808970,0,0,44604,0,1,1 +1774108299.492747,28.42,4,3992.50,60.26,1355.69,2359.20,0.00,2.006524,0.000195,238,2,118.147530,0.054665,50353431,33812892,0,0,44607,0,1,1 +1774108304.496002,5.40,4,3992.50,61.58,1304.02,2410.90,0.00,3516147580074.279297,3516147580076.284668,21,0,14.232633,0.004680,50354947,33813247,0,0,44610,0,1,1 +1774108309.492421,0.66,4,3992.50,61.60,1303.37,2411.59,0.00,0.048081,0.000000,70,0,0.000340,0.000020,50354961,33813249,0,0,44612,0,1,1 +1774108314.491922,1.31,4,3992.50,61.53,1300.05,2409.00,0.00,3518788249532.744141,0.000000,21,0,0.000981,0.000030,50354977,33813252,0,0,44615,0,1,1 +1774108319.496742,0.71,4,3992.50,61.54,1299.64,2409.44,0.00,0.000000,0.000000,21,0,0.000335,0.000020,50354979,33813254,0,0,44617,0,1,1 +1774108324.492612,0.66,4,3992.50,61.57,1298.66,2410.42,0.00,0.000000,0.000000,21,0,0.000000,0.000020,50354979,33813256,0,0,44619,0,1,1 +1774108329.494429,0.66,4,3992.50,61.56,1298.68,2410.40,0.00,71106.052053,90274.052417,6060365,1608442,0.000465,0.000673,50354991,33813263,0,0,44622,0,1,1 +1774108334.495222,0.76,4,3992.50,61.71,1293.10,2415.98,0.00,3517879236581.609375,3517879217407.677734,238,2,0.002500,0.006141,50355064,33813381,0,0,44624,0,1,1 +1774108339.492611,0.96,4,3992.50,61.91,1285.57,2423.79,0.00,71162.936211,90354.062540,6059591,1608229,0.002323,0.006432,50355137,33813508,0,0,44627,0,1,1 +1774108344.492584,1.11,4,3992.50,61.92,1284.55,2424.45,0.00,4.109299,0.042578,6060365,1608501,0.006255,0.007668,50355274,33813668,0,0,44630,0,1,1 +1774108349.495992,1.01,4,3992.50,61.92,1284.55,2424.45,0.00,3516040859566.169434,3516040840404.022461,199,0,0.005764,0.008294,50355404,33813830,0,0,44632,0,1,1 +1774108354.495449,15.38,4,3992.50,60.26,1349.78,2359.17,0.00,1.832035,0.000195,238,2,62.120896,0.067063,50363713,33818392,0,0,44635,0,1,1 +1774108359.492964,18.77,4,3992.50,53.77,1603.67,2105.33,0.00,0.000000,0.000000,238,2,122.228589,0.060549,50376058,33822821,0,0,44637,0,1,1 +1774108364.491964,0.50,4,3992.50,53.84,1600.97,2108.03,0.00,71140.080937,90325.103865,6059598,1608311,0.002559,0.001262,50376088,33822845,0,0,44639,0,1,1 +1774108369.496403,0.90,4,3992.50,53.87,1599.95,2109.05,0.00,3515316640390.103516,3515316621225.928711,238,2,0.000417,0.000030,50376091,33822848,0,0,44642,0,1,1 +1774108374.496057,0.95,4,3992.50,54.16,1592.11,2120.57,0.00,3518680560828.828125,3518680560830.787109,70,0,0.000418,0.000020,50376094,33822850,0,0,44644,0,1,1 +1774108379.494281,0.55,4,3992.50,54.16,1592.11,2120.56,0.00,0.126998,0.000000,199,0,0.000118,0.000030,50376101,33822853,0,0,44647,0,1,1 +1774108384.492411,0.60,4,3992.50,54.16,1592.11,2120.56,0.00,3519753844611.628418,0.000000,70,0,0.000019,0.000030,50376102,33822856,0,0,44650,0,1,1 +1774108389.492337,0.65,4,3992.50,54.10,1594.38,2118.30,0.00,1.958818,0.000195,238,2,0.000589,0.000020,50376116,33822858,0,0,44652,0,1,1 +1774108394.496454,9.02,4,3992.50,55.30,1547.71,2164.96,0.00,71071.534802,90233.047779,6060381,1608852,8.198407,0.052373,50379080,33825045,0,0,44655,0,1,1 +1774108399.496750,22.27,4,3992.50,55.19,1551.71,2160.93,0.00,3518228500468.255371,3518228481294.110352,21,0,32.058660,0.142849,50389625,33833048,0,0,44657,0,1,1 +1774108404.495859,1.55,4,3992.50,54.97,1560.61,2152.09,0.00,71140.633857,90324.167428,6059607,1609416,0.006786,0.007672,50389778,33833215,0,0,44659,0,1,1 +1774108409.495856,10.61,4,3992.50,54.88,1563.42,2148.66,0.00,4.109280,9.888482,6060381,1609969,0.028845,43.073936,50391649,33838157,0,0,44662,0,1,1 +1774108414.495794,28.95,4,3992.50,54.77,1561.45,2144.36,0.00,3518480814764.761719,3518480795578.457031,199,0,0.027787,119.171650,50393616,33850522,0,0,44664,0,1,1 +1774108419.492006,11.92,4,3992.50,54.86,1558.20,2147.98,0.00,3521104544870.912598,0.000000,21,0,0.018765,42.902503,50394863,33855184,0,0,44667,0,1,1 +1774108424.496154,0.80,4,3992.50,54.16,1586.14,2120.38,0.00,0.174855,0.000000,199,0,0.001112,0.001448,50394903,33855216,0,0,44670,0,1,1 +1774108429.496246,0.45,4,3992.50,54.16,1585.89,2120.63,0.00,1.831802,0.000195,238,2,0.000154,0.000020,50394913,33855218,0,0,44672,0,1,1 +1774108434.496585,1.00,4,3992.50,54.37,1574.06,2128.76,0.00,3518198284519.031738,0.028123,237,247,0.000117,0.000030,50394921,33855221,0,0,44675,0,1,1 +1774108439.496597,0.45,4,3992.50,54.38,1573.83,2129.00,0.00,71126.253892,90513.535483,6059620,1611229,0.000117,0.000020,50394929,33855223,0,0,44677,0,1,1 +1774108444.495196,2.01,4,3992.50,54.38,1573.66,2129.17,0.00,3519423119627.664551,3519423100236.415039,21,0,0.000028,0.000020,50394931,33855225,0,0,44679,0,1,1 +1774108449.496316,0.40,4,3992.50,54.39,1573.45,2129.39,0.00,0.000000,0.000000,21,0,0.000164,0.000030,50394942,33855228,0,0,44682,0,1,1 +1774108454.495912,14.40,4,3992.50,55.44,1535.31,2170.52,0.00,2.006998,0.000195,238,2,40.070730,0.031145,50399436,33857102,0,0,44684,0,1,1 +1774108459.491911,1.26,4,3992.50,55.01,1556.00,2153.64,0.00,71199.523865,90586.553133,6059726,1611480,0.004298,0.008957,50399544,33857253,0,0,44687,0,1,1 +1774108464.496549,0.90,4,3992.50,54.60,1568.12,2137.81,0.00,3515176434068.105957,3515176414714.543457,238,2,0.003999,0.007209,50399652,33857401,0,0,44690,0,1,1 +1774108469.496105,0.60,4,3992.50,54.46,1573.54,2132.40,0.00,0.000000,0.000000,238,2,0.003878,0.007123,50399752,33857541,0,0,44692,0,1,1 +1774108474.495945,0.65,4,3992.50,54.47,1573.31,2132.64,0.00,3518549736325.559082,0.028126,237,247,0.003884,0.007147,50399852,33857683,0,0,44695,0,1,1 +1774108479.496455,0.65,4,3992.50,54.48,1573.09,2132.86,0.00,3518078226290.473145,3518078226291.808105,199,0,0.003432,0.005855,50399939,33857799,0,0,44697,0,1,1 +1774108484.491959,0.45,4,3992.50,54.48,1573.09,2132.86,0.00,71212.523313,90595.749348,6060500,1611935,0.000632,0.001288,50399964,33857825,0,0,44699,0,1,1 +1774108489.494745,0.70,4,3992.50,54.36,1574.34,2128.16,0.00,3516477740864.824707,3516477721509.987793,21,0,0.000061,0.000030,50399968,33857828,0,0,44702,0,1,1 +1774108494.496681,0.50,4,3992.50,54.34,1575.14,2127.36,0.00,71117.017897,90479.275973,6059726,1611717,0.000075,0.000020,50399973,33857830,0,0,44704,0,1,1 +1774108499.496054,0.55,4,3992.50,54.19,1580.66,2121.83,0.00,0.000000,0.046881,6059726,1611768,0.000042,0.000030,50399976,33857833,0,0,44707,0,1,1 +1774108504.491901,0.45,4,3992.50,54.19,1580.68,2121.81,0.00,3521362515987.303223,3521362496601.348633,70,0,0.000250,0.000030,50399991,33857836,0,0,44710,0,1,1 +1774108509.493082,0.45,4,3992.50,54.19,1580.68,2121.81,0.00,1.489980,0.028314,237,247,0.000126,0.000020,50399999,33857838,0,0,44712,0,1,1 +1774108514.496483,0.65,4,3992.50,54.01,1587.86,2114.62,0.00,0.468139,3516045513855.600586,238,2,0.004103,0.007750,50400106,33857991,0,0,44715,0,1,1 +1774108519.496512,1.20,4,3992.50,54.10,1584.04,2118.30,0.00,3518416266563.939453,3518416266565.897949,70,0,0.003418,0.005869,50400192,33858108,0,0,44717,0,1,1 +1774108524.491929,0.55,4,3992.50,54.10,1584.07,2118.29,0.00,0.000000,0.000000,70,0,0.003894,0.007805,50400293,33858254,0,0,44719,0,1,1 +1774108529.491989,0.80,4,3992.50,54.33,1575.06,2127.29,0.00,1.490314,0.028320,237,247,0.003878,0.007132,50400393,33858395,0,0,44722,0,1,1 +1774108534.493114,0.60,4,3992.50,54.34,1574.84,2127.50,0.00,71127.010316,90494.233327,6059726,1612028,0.003916,0.007144,50400496,33858537,0,0,44724,0,1,1 +1774108539.496602,0.60,4,3992.50,54.34,1574.86,2127.49,0.00,3515984157947.894531,3515984138591.327637,21,0,0.003405,0.005861,50400581,33858654,0,0,44727,0,1,1 +1774108544.495164,0.40,4,3992.50,54.34,1574.86,2127.49,0.00,0.000000,0.000000,21,0,0.000632,0.001297,50400606,33858681,0,0,44730,0,1,1 +1774108549.496604,0.75,4,3992.50,54.43,1574.65,2131.18,0.00,0.000000,0.000000,21,0,0.000061,0.000020,50400610,33858683,0,0,44732,0,1,1 +1774108554.493662,0.45,4,3992.50,54.24,1581.50,2123.74,0.00,0.000000,0.000000,21,0,0.000075,0.000030,50400615,33858686,0,0,44735,0,1,1 +1774108559.491918,0.35,4,3992.50,54.24,1581.52,2123.74,0.00,1.538916,0.028330,237,247,0.000042,0.000020,50400618,33858688,0,0,44737,0,1,1 +1774108564.496789,0.70,4,3992.50,54.34,1577.57,2127.67,0.00,3515012680360.769531,3515012680362.230469,70,0,0.000014,0.000020,50400619,33858690,0,0,44739,0,1,1 +1774108569.492002,0.40,4,3992.50,54.34,1577.59,2127.67,0.00,3521808952147.124023,0.000000,21,0,0.000089,0.000030,50400625,33858693,0,0,44742,0,1,1 +1774108574.491879,4.37,4,3992.50,54.69,1563.25,2141.24,0.00,1.538417,0.028321,237,247,0.016860,14.432008,50401561,33860551,0,0,44744,0,1,1 +1774108579.492038,7.73,4,3992.50,54.74,1557.18,2143.16,0.00,71144.863140,90546.058911,6060500,1612725,0.008705,25.642857,50402062,33863349,0,0,44747,0,1,1 +1774108584.495962,0.80,4,3992.50,54.23,1577.50,2123.39,0.00,0.000000,0.049180,6060500,1612774,0.002121,0.005834,50402130,33863467,0,0,44750,0,1,1 +1774108589.492587,0.70,4,3992.50,54.25,1576.92,2123.97,0.00,3520813491812.563965,3520813491816.653809,6059726,1612531,0.002290,0.007005,50402200,33863593,0,0,44752,0,1,1 +1774108594.493959,0.75,4,3992.50,54.16,1580.47,2120.41,0.00,0.000000,0.013278,6059726,1612538,0.002307,0.006379,50402271,33863717,0,0,44755,0,1,1 +1774108599.495692,0.70,4,3992.50,54.17,1580.12,2120.77,0.00,4.107853,0.034754,6060500,1612793,0.002309,0.006349,50402343,33863839,0,0,44757,0,1,1 +1774108604.492620,0.45,4,3992.50,53.97,1588.00,2112.90,0.00,3520601039957.785156,3520601020545.427734,70,0,0.000000,0.000045,50402343,33863843,0,0,44759,0,1,1 +1774108609.496681,0.90,4,3992.50,54.37,1572.61,2128.86,0.00,1.489122,0.028297,237,247,0.000000,0.000030,50402343,33863846,0,0,44762,0,1,1 +1774108614.496550,0.55,4,3992.50,54.40,1571.61,2129.73,0.00,0.468469,3518529380278.817383,238,2,0.000000,0.000020,50402343,33863848,0,0,44764,0,1,1 +1774108619.493455,0.55,4,3992.50,54.41,1570.87,2130.47,0.00,71186.610944,90611.260435,6059726,1612664,0.000000,0.000030,50402343,33863851,0,0,44767,0,1,1 +1774108624.492794,0.60,4,3992.50,54.41,1570.87,2130.46,0.00,3518902096608.702148,3518902077193.510742,238,2,0.000514,0.000030,50402374,33863854,0,0,44770,0,1,1 +1774108629.496863,0.55,4,3992.50,54.48,1568.46,2132.87,0.00,71084.701200,90481.550445,6059726,1612673,0.000166,0.000020,50402383,33863856,0,0,44772,0,1,1 +1774108634.493551,0.70,4,3992.50,54.29,1575.63,2125.71,0.00,4.112001,0.033616,6060500,1612931,0.002746,0.006929,50402465,33863995,0,0,44775,0,1,1 +1774108639.495370,0.95,4,3992.50,54.34,1586.67,2127.38,0.00,3517157739952.209473,3517157720552.714844,21,0,0.002332,0.006385,50402538,33864119,0,0,44777,0,1,1 +1774108644.492778,32.04,4,3992.50,60.70,1342.31,2376.57,0.00,0.000000,0.000000,21,0,65.334715,0.034893,50409648,33866258,0,0,44779,0,1,1 +1774108649.495379,30.87,4,3992.50,61.05,1328.89,2390.14,0.00,71107.554699,90508.255518,6059726,1612824,119.709410,0.034800,50422067,33868703,0,0,44782,0,1,1 +1774108654.494596,28.33,4,3992.50,60.70,1342.50,2376.39,0.00,3518988599851.262207,3518988580435.914062,237,247,118.590140,0.051930,50434164,33872642,0,0,44784,0,1,1 +1774108659.495757,28.63,4,3992.50,60.54,1348.58,2370.24,0.00,0.000000,0.000000,237,247,119.754646,0.069804,50446689,33877882,0,0,44787,0,1,1 +1774108664.495475,4.95,4,3992.50,61.33,1317.77,2401.16,0.00,3518635396020.517090,3518635396021.852539,199,0,13.654769,0.009554,50448200,33878558,0,0,44790,0,1,1 +1774108669.494312,0.61,4,3992.50,61.34,1317.29,2401.64,0.00,71165.037686,90576.548462,6060500,1613117,0.000708,0.000020,50448211,33878560,0,0,44792,0,1,1 +1774108674.491987,0.91,4,3992.50,61.54,1301.98,2409.45,0.00,3520074025661.769531,3520074006245.744629,199,0,0.000540,0.000020,50448221,33878562,0,0,44794,0,1,1 +1774108679.492499,0.71,4,3992.50,61.39,1307.86,2403.57,0.00,3518076655982.523438,0.000000,70,0,0.000286,0.000030,50448229,33878565,0,0,44797,0,1,1 +1774108684.494395,0.76,4,3992.50,61.61,1299.21,2412.23,0.00,3517104161691.154785,0.000000,21,0,0.000018,0.000020,50448230,33878567,0,0,44799,0,1,1 +1774108689.496045,0.56,4,3992.50,61.62,1298.96,2412.48,0.00,0.048031,0.000000,70,0,0.000843,0.000030,50448249,33878570,0,0,44802,0,1,1 +1774108694.492007,1.31,4,3992.50,61.62,1298.98,2412.46,0.00,71201.993197,90628.831459,6059726,1612965,0.009169,0.010657,50448422,33878758,0,0,44804,0,1,1 +1774108699.492849,1.21,4,3992.50,61.53,1305.48,2408.99,0.00,3517844953569.175781,3517844934161.290039,70,0,0.006663,0.008794,50448569,33878931,0,0,44807,0,1,1 +1774108704.496024,11.11,4,3992.50,60.88,1330.32,2383.61,0.00,0.000000,0.000000,70,0,40.246981,0.035282,50453436,33881226,0,0,44810,0,1,1 +1774108709.494958,14.29,4,3992.50,61.10,1321.52,2392.38,0.00,0.000000,0.000000,70,0,48.345235,0.018566,50457893,33882174,0,0,44812,0,1,1 +1774108714.492386,18.66,4,3992.50,60.81,1332.98,2381.00,0.00,3520247871609.550781,0.000000,21,0,75.217369,0.043742,50466466,33885091,0,0,44815,0,1,1 +1774108719.495452,32.83,4,3992.50,61.36,1312.07,2402.30,0.00,71100.957730,90500.308187,6059726,1613102,125.871610,0.032109,50478062,33887270,0,0,44817,0,1,1 +1774108724.496214,4.75,4,3992.50,61.97,1287.77,2426.23,0.00,3517900942796.853027,3517900923386.559570,238,2,12.147436,0.003322,50479231,33887496,0,0,44819,0,1,1 +1774108729.492292,0.96,4,3992.50,61.94,1288.67,2425.20,0.00,3521199438430.604492,0.028147,237,247,0.001888,0.000030,50479242,33887499,0,0,44822,0,1,1 +1774108734.492297,0.66,4,3992.50,61.98,1287.28,2426.48,0.00,3518433259792.219238,3518433259793.681152,70,0,0.000301,0.000020,50479244,33887501,0,0,44824,0,1,1 +1774108739.495468,0.71,4,3992.50,61.98,1287.28,2426.48,0.00,3516207367302.895996,0.000000,21,0,0.001585,0.000030,50479253,33887504,0,0,44827,0,1,1 +1774108744.491924,0.76,4,3992.50,61.98,1287.28,2426.48,0.00,0.000000,0.000000,21,0,0.000000,0.000030,50479253,33887507,0,0,44830,0,1,1 +1774108749.492718,0.71,4,3992.50,61.99,1286.88,2426.88,0.00,71137.368250,90541.541942,6060500,1613411,0.000469,0.000020,50479256,33887509,0,0,44832,0,1,1 +1774108754.493254,26.57,4,3992.50,61.33,1312.50,2401.21,0.00,3518059385404.592285,3518059365999.246582,199,0,101.504270,0.026085,50488871,33889270,0,0,44834,0,1,1 +1774108759.492224,30.69,4,3992.50,61.30,1313.47,2399.95,0.00,1.832214,0.000195,238,2,118.205931,0.032162,50499475,33891430,0,0,44837,0,1,1 +1774108764.496806,4.82,4,3992.50,55.46,1542.13,2171.42,0.00,3515215248355.977051,3515215248357.807129,199,0,68.570991,0.021595,50505752,33892782,0,0,44839,0,1,1 +1774108769.496459,10.40,4,3992.50,54.95,1562.06,2151.46,0.00,3518681560909.077148,0.000000,21,0,10.083547,0.059274,50509386,33895506,0,0,44842,0,1,1 +1774108774.496771,13.25,4,3992.50,54.36,1585.11,2128.41,0.00,71144.385523,90550.893733,6060517,1614250,20.111479,0.082165,50515686,33900109,0,0,44844,0,1,1 +1774108779.496447,8.30,4,3992.50,54.64,1574.10,2139.40,0.00,3518665016335.101562,3518664996924.118652,238,2,10.066240,0.050788,50518991,33902576,0,0,44847,0,1,1 +1774108784.492759,0.55,4,3992.50,54.35,1585.50,2128.00,0.00,3521034356920.628906,3521034356922.588867,70,0,0.000786,0.000674,50518998,33902583,0,0,44850,0,1,1 +1774108789.496416,1.20,4,3992.50,54.77,1574.09,2144.42,0.00,3515866025119.361328,0.000000,21,0,0.000151,0.000020,50518999,33902585,0,0,44852,0,1,1 +1774108794.493125,0.50,4,3992.50,54.70,1576.83,2141.69,0.00,0.000000,0.000000,21,0,0.000083,0.000030,50519005,33902588,0,0,44855,0,1,1 +1774108799.495895,0.45,4,3992.50,54.70,1576.77,2141.75,0.00,0.174903,0.000000,199,0,0.000028,0.000020,50519007,33902590,0,0,44857,0,1,1 +1774108804.495960,1.15,4,3992.50,54.67,1577.10,2140.60,0.00,3518391597861.707031,0.000000,21,0,0.000028,0.000020,50519009,33902592,0,0,44859,0,1,1 +1774108809.496789,0.55,4,3992.50,54.48,1584.60,2133.11,0.00,0.048039,0.000000,70,0,0.000056,0.000030,50519013,33902595,0,0,44862,0,1,1 +1774108814.495472,1.60,4,3992.50,54.05,1602.20,2116.18,0.00,71163.419797,90581.413275,6059753,1614738,0.005585,0.006493,50519118,33902722,0,0,44864,0,1,1 +1774108819.496524,14.00,4,3992.50,56.67,1499.71,2218.64,0.00,3517697315339.751465,3517697295929.491699,237,247,40.056100,0.027228,50523521,33904318,0,0,44867,0,1,1 +1774108824.496558,1.30,4,3992.50,55.72,1532.06,2181.45,0.00,3518413307596.555664,3518413307597.890625,199,0,0.003459,0.005894,50523610,33904438,0,0,44870,0,1,1 +1774108829.494541,0.70,4,3992.50,54.87,1565.41,2148.10,0.00,3519856895291.687012,0.000000,21,0,0.003890,0.007139,50523711,33904579,0,0,44872,0,1,1 +1774108834.496494,0.75,4,3992.50,54.78,1568.94,2144.58,0.00,0.000000,0.000000,21,0,0.003864,0.007130,50523810,33904720,0,0,44875,0,1,1 +1774108839.491905,1.10,4,3992.50,54.57,1577.04,2136.47,0.00,2.008679,0.000195,238,2,0.003882,0.007129,50523910,33904860,0,0,44877,0,1,1 +1774108844.496673,0.75,4,3992.50,54.57,1576.84,2136.67,0.00,3515084901234.756348,3515084901236.586914,199,0,0.000174,0.000020,50523921,33904862,0,0,44879,0,1,1 +1774108849.491999,0.85,4,3992.50,54.77,1568.25,2144.30,0.00,3521729219227.059082,0.000000,70,0,0.000061,0.000674,50523925,33904869,0,0,44882,0,1,1 +1774108854.495933,0.80,4,3992.50,54.58,1575.29,2137.10,0.00,1.957249,0.000195,238,2,0.000075,0.000020,50523930,33904871,0,0,44884,0,1,1 +1774108859.496651,0.70,4,3992.50,54.41,1581.97,2130.42,0.00,3517931289555.291016,0.028121,237,247,0.000042,0.000030,50523933,33904874,0,0,44887,0,1,1 +1774108864.496613,0.90,4,3992.50,54.42,1581.75,2130.65,0.00,71160.337415,90558.731364,6059859,1615155,0.000014,0.000030,50523934,33904877,0,0,44890,0,1,1 +1774108869.494749,0.80,4,3992.50,54.42,1581.75,2130.66,0.00,3519748903085.274414,3519748883681.310547,21,0,0.000075,0.000020,50523939,33904879,0,0,44892,0,1,1 +1774108874.496046,0.70,4,3992.50,54.42,1581.75,2130.63,0.00,0.174955,0.000000,199,0,0.003381,0.005821,50524023,33904994,0,0,44895,0,1,1 +1774108879.493285,1.20,4,3992.50,54.24,1594.19,2123.71,0.00,0.000000,0.000000,199,0,0.003890,0.007140,50524124,33905135,0,0,44897,0,1,1 +1774108884.496816,0.85,4,3992.50,54.29,1592.02,2125.75,0.00,3515953974270.750000,0.000000,70,0,0.003906,0.007138,50524226,33905277,0,0,44899,0,1,1 +1774108889.496447,0.90,4,3992.50,54.30,1591.80,2125.98,0.00,3518696844374.686523,0.000000,21,0,0.003878,0.007108,50524326,33905416,0,0,44902,0,1,1 +1774108894.496444,0.70,4,3992.50,54.30,1591.81,2125.97,0.00,71165.475495,90558.355529,6060633,1615632,0.003414,0.005908,50524411,33905536,0,0,44904,0,1,1 +1774108899.496400,0.85,4,3992.50,54.30,1591.82,2125.96,0.00,3518468017200.477051,3518467997807.439941,21,0,0.003891,0.007145,50524512,33905678,0,0,44907,0,1,1 +1774108904.496801,0.75,4,3992.50,54.32,1590.89,2126.88,0.00,71159.721274,90551.097903,6060633,1615700,0.001183,0.000651,50524545,33905692,0,0,44910,0,1,1 +1774108909.496080,1.05,4,3992.50,54.25,1593.76,2124.02,0.00,3518944715230.193359,3518944695834.289062,199,0,0.000265,0.000053,50524555,33905695,0,0,44912,0,1,1 +1774108914.496324,0.55,4,3992.50,54.06,1601.05,2116.67,0.00,71161.782268,90553.998281,6060633,1615730,0.000256,0.000674,50524565,33905702,0,0,44915,0,1,1 +1774108919.491803,0.80,4,3992.50,54.13,1598.38,2119.33,0.00,3521621446290.430176,3521621426877.883301,238,2,0.000103,0.000020,50524572,33905704,0,0,44917,0,1,1 +1774108924.496046,1.70,4,3992.50,54.14,1598.20,2119.52,0.00,71098.973387,90481.658454,6059859,1615550,0.000042,0.000020,50524575,33905706,0,0,44919,0,1,1 +1774108929.496038,0.60,4,3992.50,54.14,1598.20,2119.52,0.00,3518442793266.874023,3518442773869.667480,70,0,0.000289,0.000030,50524587,33905709,0,0,44922,0,1,1 +1774108934.492584,32.69,4,3992.50,60.77,1338.04,2379.48,0.00,1.960143,0.000195,238,2,73.968863,0.045551,50532709,33908563,0,0,44924,0,1,1 +1774108939.492383,33.13,4,3992.50,61.27,1319.18,2398.74,0.00,3518577974519.073242,3518577974521.080078,21,0,118.174156,0.036174,50545024,33911006,0,0,44927,0,1,1 +1774108944.492852,31.27,4,3992.50,60.72,1340.30,2377.31,0.00,71158.762273,90550.270111,6060633,1616033,119.359208,0.026385,50557444,33912616,0,0,44930,0,1,1 +1774108949.491907,30.73,4,3992.50,60.83,1335.93,2381.68,0.00,3519102041080.510742,3519102021683.346191,199,0,118.989976,0.029187,50569746,33914605,0,0,44932,0,1,1 +1774108954.496374,30.96,4,3992.50,60.66,1342.60,2375.09,0.00,1.830201,0.000195,238,2,119.458335,0.019629,50582030,33916095,0,0,44935,0,1,1 +1774108959.491904,31.25,4,3992.50,60.70,1341.04,2376.60,0.00,0.000000,0.000000,238,2,118.871211,0.026644,50594285,33917939,0,0,44937,0,1,1 +1774108964.496382,5.44,4,3992.50,61.57,1307.19,2410.51,0.00,3515289553933.273438,3515289553935.278320,21,0,14.620399,0.001705,50595832,33918075,0,0,44939,0,1,1 +1774108969.494308,1.16,4,3992.50,61.76,1302.95,2418.08,0.00,0.000000,0.000000,21,0,0.000325,0.000030,50595845,33918078,0,0,44942,0,1,1 +1774108974.491954,0.86,4,3992.50,61.59,1309.59,2411.52,0.00,1.539104,0.028334,237,247,0.000982,0.000020,50595861,33918080,0,0,44944,0,1,1 +1774108979.491991,1.01,4,3992.50,61.57,1310.44,2410.67,0.00,0.000000,0.000000,237,247,0.000571,0.000674,50595877,33918087,0,0,44947,0,1,1 +1774108984.492124,0.81,4,3992.50,61.57,1310.48,2410.63,0.00,3518343342296.012207,3518343342297.474121,70,0,0.000037,0.000030,50595879,33918090,0,0,44950,0,1,1 +1774108989.492135,0.96,4,3992.50,61.53,1311.93,2409.18,0.00,0.126953,0.000000,199,0,0.000502,0.000020,50595893,33918092,0,0,44952,0,1,1 +1774108994.492849,0.91,4,3992.50,61.54,1311.56,2409.54,0.00,0.000000,0.000000,199,0,0.004901,0.006535,50596005,33918232,0,0,44955,0,1,1 +1774108999.492210,1.51,4,3992.50,62.01,1306.44,2427.82,0.00,71170.245827,90570.620731,6059859,1616011,0.001665,0.004503,50596058,33918322,0,0,44957,0,1,1 +1774109004.491900,1.16,4,3992.50,62.07,1303.70,2430.01,0.00,3518654988912.115234,3518654969513.020508,199,0,0.006701,0.008854,50596207,33918500,0,0,44959,0,1,1 +1774109009.492861,1.21,4,3992.50,62.04,1304.68,2429.03,0.00,3517761167652.530273,0.000000,70,0,0.005787,0.008311,50596338,33918663,0,0,44962,0,1,1 +1774109014.497292,10.05,4,3992.50,61.00,1345.36,2388.25,0.00,3515321912324.775879,0.000000,21,0,40.426827,0.057059,50602952,33922336,0,0,44964,0,1,1 +1774109019.492134,32.26,4,3992.50,61.14,1339.98,2393.68,0.00,0.000000,0.000000,21,0,122.527916,0.051218,50615514,33925987,0,0,44967,0,1,1 +1774109024.491897,5.26,4,3992.50,62.06,1303.91,2429.73,0.00,0.175008,0.000000,199,0,14.064645,0.004585,50616991,33926343,0,0,44970,0,1,1 +1774109029.491920,1.36,4,3992.50,62.04,1302.02,2429.08,0.00,71160.817293,90558.711320,6059859,1616118,0.000615,0.000020,50617003,33926345,0,0,44972,0,1,1 +1774109034.496597,0.86,4,3992.50,61.48,1324.27,2406.90,0.00,3515149622861.374023,3515149603481.642578,70,0,0.000278,0.000030,50617013,33926348,0,0,44975,0,1,1 +1774109039.491923,0.76,4,3992.50,61.49,1323.54,2407.63,0.00,0.127072,0.000000,199,0,0.000168,0.000020,50617014,33926350,0,0,44977,0,1,1 +1774109044.493801,0.61,4,3992.50,61.49,1323.54,2407.63,0.00,3517115932533.803223,0.000000,21,0,0.000000,0.000664,50617014,33926356,0,0,44979,0,1,1 +1774109049.495318,0.71,4,3992.50,61.49,1323.54,2407.62,0.00,71139.742437,90531.725216,6059859,1616147,0.000278,0.000030,50617024,33926359,0,0,44982,0,1,1 +1774109054.493880,1.01,4,3992.50,61.50,1323.32,2407.84,0.00,3519449541873.380859,3519449522469.759766,199,0,0.004850,0.005732,50617126,33926470,0,0,44984,0,1,1 +1774109059.495905,1.31,4,3992.50,61.72,1310.25,2416.41,0.00,1.362827,0.028309,237,247,0.006865,0.009417,50617278,33926655,0,0,44987,0,1,1 +1774109064.496137,1.06,4,3992.50,61.80,1307.37,2419.44,0.00,3518274361330.918457,3518274361332.428711,21,0,0.005793,0.008359,50617410,33926821,0,0,44990,0,1,1 +1774109069.491966,1.87,4,3992.50,61.81,1306.65,2420.16,0.00,0.175146,0.000000,199,0,0.006657,0.008793,50617556,33926993,0,0,44992,0,1,1 +1774109074.495722,17.14,4,3992.50,60.76,1347.88,2378.85,0.00,3515795703676.008301,0.000000,70,0,66.069400,0.059927,50626252,33931110,0,0,44995,0,1,1 +1774109079.496182,15.55,4,3992.50,55.33,1560.46,2166.35,0.00,3518113709180.497070,0.000000,21,0,103.736772,0.051733,50636862,33934782,0,0,44997,0,1,1 +1774109084.491969,6.58,4,3992.50,54.69,1585.43,2141.36,0.00,1.539676,0.028344,237,247,4.047634,0.030209,50638459,33935962,0,0,44999,0,1,1 +1774109089.493451,25.04,4,3992.50,54.79,1581.21,2145.12,0.00,71142.969975,90533.357024,6060650,1617524,36.199616,0.153478,50649957,33944507,0,0,45002,0,1,1 +1774109094.496230,1.35,4,3992.50,54.20,1604.43,2121.91,0.00,3516482228192.051270,3516482208808.205078,21,0,0.005892,0.007689,50650089,33944660,0,0,45004,0,1,1 +1774109099.496104,6.72,4,3992.50,54.99,1573.22,2152.97,0.00,1.538418,0.028321,237,247,0.021543,23.644793,50651437,33947462,0,0,45007,0,1,1 +1774109104.496375,31.56,4,3992.50,55.23,1557.46,2162.30,0.00,3518247108842.928711,3518247108844.438965,21,0,0.032947,119.163407,50653817,33959808,0,0,45010,0,1,1 +1774109109.495965,17.01,4,3992.50,54.74,1576.68,2143.35,0.00,0.000000,0.000000,21,0,0.015982,62.302759,50654768,33966494,0,0,45012,0,1,1 +1774109114.491923,1.36,4,3992.50,54.40,1590.44,2129.99,0.00,71219.074134,90839.494256,6059891,1619168,0.005457,0.005995,50654873,33966618,0,0,45015,0,1,1 +1774109119.492045,14.85,4,3992.50,56.50,1510.11,2212.20,0.00,3518351021858.601074,3518351002254.349121,199,0,40.065704,0.025819,50659405,33968112,0,0,45017,0,1,1 +1774109124.496240,0.95,4,3992.50,55.66,1543.02,2179.12,0.00,1.830300,0.000195,238,2,0.004676,0.009460,50659528,33968283,0,0,45019,0,1,1 +1774109129.491930,1.36,4,3992.50,55.13,1563.68,2158.49,0.00,3521473153290.655273,0.028149,237,247,0.003889,0.007147,50659629,33968425,0,0,45022,0,1,1 +1774109134.496229,0.90,4,3992.50,55.16,1562.45,2159.72,0.00,71119.500860,90688.263232,6060775,1619574,0.003887,0.007116,50659730,33968565,0,0,45024,0,1,1 +1774109139.494000,0.60,4,3992.50,55.16,1562.71,2159.45,0.00,3520005861401.248047,3520005841808.390137,70,0,0.003434,0.005868,50659817,33968682,0,0,45027,0,1,1 +1774109144.493071,0.65,4,3992.50,55.15,1562.76,2159.40,0.00,1.959153,0.000195,238,2,0.003904,0.007165,50659919,33968825,0,0,45030,0,1,1 +1774109149.494874,0.95,4,3992.50,55.14,1561.34,2158.95,0.00,3517169118175.818359,3517169118177.824707,21,0,0.003885,0.007128,50660020,33968966,0,0,45032,0,1,1 +1774109154.495962,0.60,4,3992.50,55.11,1562.43,2157.73,0.00,2.006399,0.000195,238,2,0.003970,0.007206,50660126,33969113,0,0,45035,0,1,1 +1774109159.492196,0.70,4,3992.50,55.11,1562.45,2157.72,0.00,3521088811993.830078,3521088811995.663574,199,0,0.003423,0.005860,50660212,33969229,0,0,45037,0,1,1 +1774109164.496691,0.85,4,3992.50,55.13,1561.67,2158.48,0.00,3515276986121.436523,0.000000,70,0,0.003875,0.007116,50660312,33969369,0,0,45039,0,1,1 +1774109169.491924,0.70,4,3992.50,55.13,1561.69,2158.46,0.00,3521795230069.637695,0.000000,21,0,0.003957,0.007179,50660417,33969513,0,0,45042,0,1,1 +1774109174.491937,0.80,4,3992.50,54.93,1569.37,2150.79,0.00,71177.889217,90766.222666,6060001,1619524,0.003886,0.007613,50660518,33969657,0,0,45044,0,1,1 +1774109179.496719,0.90,4,3992.50,55.03,1577.69,2154.45,0.00,3515075583048.209961,3515075563478.491211,70,0,0.003392,0.006020,50660602,33969775,0,0,45047,0,1,1 +1774109184.491930,0.60,4,3992.50,55.03,1575.62,2154.65,0.00,71250.389502,90853.638566,6060775,1619882,0.003882,0.007139,50660702,33969916,0,0,45050,0,1,1 +1774109189.492963,1.25,4,3992.50,55.04,1575.41,2154.86,0.00,3517710175455.113281,3517710155874.736328,21,0,0.003271,0.006884,50660791,33970049,0,0,45052,0,1,1 +1774109194.493519,10.90,4,3992.50,54.84,1580.74,2146.98,0.00,71170.160828,90790.512043,6060001,1619843,0.020914,40.060909,50662134,33974510,0,0,45055,0,1,1 +1774109199.494178,0.95,4,3992.50,54.73,1585.27,2142.62,0.00,3517973410411.317383,3517973390791.321289,70,0,0.002766,0.007346,50662220,33974649,0,0,45057,0,1,1 +1774109204.494825,0.70,4,3992.50,54.72,1585.41,2142.47,0.00,1.490139,0.028317,237,247,0.002289,0.006355,50662290,33974771,0,0,45059,0,1,1 +1774109209.491932,1.00,4,3992.50,55.03,1573.76,2154.41,0.00,3520473880471.988281,3520473880473.451172,70,0,0.002061,0.005723,50662353,33974881,0,0,45062,0,1,1 +1774109214.496332,1.10,4,3992.50,54.76,1583.72,2144.13,0.00,1.489022,0.028295,237,247,0.002058,0.005730,50662416,33974992,0,0,45064,0,1,1 +1774109219.496693,0.65,4,3992.50,54.58,1590.87,2136.98,0.00,0.468423,3518183514077.245117,238,2,0.002284,0.006361,50662486,33975115,0,0,45067,0,1,1 +1774109224.494025,0.65,4,3992.50,54.58,1590.87,2136.98,0.00,0.000000,0.000000,238,2,0.002290,0.006369,50662556,33975238,0,0,45070,0,1,1 +1774109229.495950,0.80,4,3992.50,54.78,1583.06,2144.78,0.00,3517082972964.625977,3517082972966.457520,199,0,0.002326,0.006403,50662629,33975363,0,0,45072,0,1,1 +1774109234.495990,0.80,4,3992.50,54.59,1590.48,2137.37,0.00,71181.450751,90806.143840,6060775,1620278,0.003415,0.006952,50662704,33975492,0,0,45075,0,1,1 +1774109239.496842,1.05,4,3992.50,54.86,1580.34,2147.92,0.00,3517837396378.219238,3517837376756.891602,21,0,0.002339,0.006900,50662778,33975621,0,0,45077,0,1,1 +1774109244.492771,0.60,4,3992.50,54.86,1579.70,2147.87,0.00,71236.089317,90880.942386,6060001,1620097,0.002423,0.006631,50662857,33975753,0,0,45079,0,1,1 +1774109249.495893,0.80,4,3992.50,54.86,1579.70,2147.87,0.00,4.106713,0.030840,6060775,1620349,0.002275,0.006362,50662926,33975876,0,0,45082,0,1,1 +1774109254.491923,0.55,4,3992.50,54.86,1579.70,2147.86,0.00,3521233150350.161621,3521233130707.780762,238,2,0.001833,0.005093,50662982,33975974,0,0,45084,0,1,1 +1774109259.496386,1.10,4,3992.50,54.79,1582.49,2145.07,0.00,71116.704356,90725.994375,6060775,1620361,0.004825,0.009657,50663096,33976147,0,0,45087,0,1,1 +1774109264.496750,42.27,4,3992.50,61.21,1336.05,2396.67,0.00,3518181484118.013184,3518181464494.653320,21,0,111.185443,0.079996,50675177,33981947,0,0,45090,0,1,1 +1774109269.495785,29.67,4,3992.50,61.00,1344.62,2388.27,0.00,0.048056,0.000000,70,0,121.783197,0.030114,50687355,33984016,0,0,45092,0,1,1 +1774109274.496045,30.17,4,3992.50,60.83,1349.86,2381.70,0.00,0.000000,0.000000,70,0,120.784325,0.025759,50699204,33985852,0,0,45095,0,1,1 +1774109279.494187,29.17,4,3992.50,60.86,1348.67,2382.89,0.00,3519744750413.095703,0.000000,21,0,119.669571,0.029094,50710711,33987855,0,0,45097,0,1,1 +1774109284.496306,30.09,4,3992.50,61.06,1341.12,2390.45,0.00,0.174926,0.000000,199,0,118.964803,0.036077,50722251,33990422,0,0,45099,0,1,1 +1774109289.493221,30.54,4,3992.50,61.22,1334.50,2397.08,0.00,3520609539036.407227,0.000000,70,0,119.870172,0.035879,50733612,33992955,0,0,45102,0,1,1 +1774109294.493299,30.98,4,3992.50,61.24,1333.91,2397.61,0.00,71181.022695,90805.855635,6060775,1620553,119.566883,0.035080,50744831,33995360,0,0,45104,0,1,1 +1774109299.494789,30.58,4,3992.50,60.96,1344.66,2386.86,0.00,3517389246243.520996,3517389226622.762695,237,247,118.873713,0.032530,50755895,33997703,0,0,45107,0,1,1 +1774109304.496739,7.74,4,3992.50,54.29,1606.14,2125.55,0.00,3517065511127.583496,3517065511129.044922,70,0,74.702327,0.024127,50762931,33999262,0,0,45110,0,1,1 +1774109309.495986,1.51,4,3992.50,54.31,1605.20,2126.48,0.00,71188.915398,90821.196514,6060014,1620460,0.008485,0.009811,50763108,33999461,0,0,45112,0,1,1 +1774109314.491921,22.92,4,3992.50,55.05,1576.20,2155.43,0.00,3521300486012.243164,3521300466366.943359,70,0,32.219934,0.143755,50773380,34007187,0,0,45115,0,1,1 +1774109319.491951,7.28,4,3992.50,54.53,1596.49,2135.13,0.00,3518415620588.587402,0.000000,21,0,8.059091,0.042907,50776164,34009373,0,0,45117,0,1,1 +1774109324.496391,1.00,4,3992.50,54.51,1597.46,2134.15,0.00,0.000000,0.000000,21,0,0.004567,0.008486,50776279,34009535,0,0,45119,0,1,1 +1774109329.492223,1.20,4,3992.50,54.62,1593.25,2138.33,0.00,71237.638397,90883.810131,6060014,1621280,0.003423,0.005857,50776365,34009651,0,0,45122,0,1,1 +1774109334.495913,1.35,4,3992.50,54.73,1586.56,2142.85,0.00,0.000000,0.005172,6060014,1621297,0.010403,3.013567,50776868,34010385,0,0,45124,0,1,1 +1774109339.491903,28.59,4,3992.50,54.93,1573.52,2150.47,0.00,3521261379481.419434,3521261359833.856934,238,2,0.045567,114.459421,50780242,34022476,0,0,45127,0,1,1 +1774109344.491968,21.94,4,3992.50,54.78,1578.30,2144.67,0.00,3518391297393.153320,3518391297395.160156,21,0,0.037331,87.730965,50782948,34031749,0,0,45130,0,1,1 +1774109349.492013,1.40,4,3992.50,54.53,1588.08,2134.88,0.00,1.538365,0.028320,237,247,0.006845,0.009510,50783096,34031940,0,0,45132,0,1,1 +1774109354.496690,14.14,4,3992.50,54.46,1593.75,2132.32,0.00,71126.769575,90928.772393,6060139,1623031,40.023873,0.020768,50787485,34033328,0,0,45135,0,1,1 +1774109359.496762,1.76,4,3992.50,54.76,1582.02,2144.00,0.00,3518386349079.264648,3518386329259.023438,237,247,0.007046,0.010517,50787644,34033522,0,0,45137,0,1,1 +1774109364.496561,0.65,4,3992.50,54.49,1592.85,2133.21,0.00,71200.285835,91017.671225,6060913,1623351,0.003874,0.007131,50787744,34033663,0,0,45139,0,1,1 +1774109369.496169,0.70,4,3992.50,54.48,1592.85,2133.20,0.00,3518713173695.292969,3518713153878.661621,21,0,0.003878,0.007133,50787844,34033804,0,0,45142,0,1,1 +1774109374.495948,0.55,4,3992.50,54.48,1592.87,2133.18,0.00,0.000000,0.000000,21,0,0.003420,0.006499,50787930,34033924,0,0,45144,0,1,1 +1774109379.495955,0.60,4,3992.50,54.48,1593.09,2132.98,0.00,71198.853313,91014.060537,6060913,1623484,0.003903,0.007163,50788032,34034067,0,0,45147,0,1,1 +1774109384.496812,0.75,4,3992.50,54.48,1593.09,2132.96,0.00,3517834259693.157227,3517834239879.806641,237,247,0.003885,0.007139,50788133,34034209,0,0,45150,0,1,1 +1774109389.496571,1.00,4,3992.50,54.39,1581.20,2129.62,0.00,71196.742272,91018.672496,6060139,1623339,0.004535,0.008045,50788235,34034351,0,0,45152,0,1,1 +1774109394.491991,0.85,4,3992.50,54.01,1595.98,2114.50,0.00,3521663519582.475586,3521663499744.837402,21,0,0.003059,0.004665,50788313,34034449,0,0,45155,0,1,1 +1774109399.496056,0.75,4,3992.50,54.02,1595.30,2115.20,0.00,71137.003145,90940.426927,6060139,1623399,0.003875,0.007117,50788413,34034589,0,0,45157,0,1,1 +1774109404.492208,0.65,4,3992.50,54.02,1595.37,2115.11,0.00,3521147127306.923828,3521147107472.131836,21,0,0.003956,0.007168,50788518,34034732,0,0,45159,0,1,1 +1774109409.493690,0.75,4,3992.50,54.00,1596.34,2114.15,0.00,1.537923,0.028312,237,247,0.003877,0.007118,50788618,34034872,0,0,45162,0,1,1 +1774109414.496539,0.65,4,3992.50,54.02,1595.37,2115.09,0.00,71152.794202,90962.639737,6060151,1623497,0.003418,0.005864,50788704,34034989,0,0,45164,0,1,1 +1774109419.496418,11.10,4,3992.50,54.82,1561.69,2146.30,0.00,3518521832027.351562,3518521812207.253906,21,0,0.028276,40.069050,50790557,34039499,0,0,45167,0,1,1 +1774109424.496718,0.80,4,3992.50,54.76,1564.03,2143.97,0.00,0.174989,0.000000,199,0,0.002985,0.007927,50790649,34039654,0,0,45170,0,1,1 +1774109429.491939,0.70,4,3992.50,54.27,1583.07,2124.93,0.00,0.000000,0.000000,199,0,0.002278,0.006362,50790718,34039776,0,0,45172,0,1,1 +1774109434.491911,0.60,4,3992.50,54.07,1591.19,2116.81,0.00,0.000000,0.000000,199,0,0.001831,0.005099,50790774,34039875,0,0,45175,0,1,1 +1774109439.491930,0.65,4,3992.50,54.05,1591.96,2116.04,0.00,3518423648878.282227,0.000000,21,0,0.002289,0.007000,50790844,34040001,0,0,45177,0,1,1 +1774109444.492024,0.55,4,3992.50,54.09,1590.35,2117.65,0.00,0.174997,0.000000,199,0,0.002289,0.006356,50790914,34040123,0,0,45179,0,1,1 +1774109449.496567,1.10,4,3992.50,54.27,1583.37,2124.77,0.00,3515242839519.043457,0.000000,21,0,0.002299,0.006360,50790985,34040246,0,0,45182,0,1,1 +1774109454.495907,0.60,4,3992.50,54.21,1585.67,2122.32,0.00,1.538582,0.028324,237,247,0.001856,0.005121,50791043,34040346,0,0,45184,0,1,1 +1774109459.496771,0.60,4,3992.50,54.10,1589.67,2118.32,0.00,3517829432083.723633,3517829432085.058594,199,0,0.002334,0.006435,50791117,34040474,0,0,45187,0,1,1 +1774109464.491936,0.95,4,3992.50,54.11,1589.45,2118.55,0.00,3521842868268.174805,0.000000,21,0,0.002460,0.006516,50791199,34040607,0,0,45190,0,1,1 +1774109469.496102,0.80,4,3992.50,54.11,1589.46,2118.54,0.00,0.000000,0.000000,21,0,0.002336,0.006426,50791272,34040735,0,0,45192,0,1,1 +1774109474.495144,0.55,4,3992.50,54.12,1589.21,2118.79,0.00,0.048056,0.000000,70,0,0.001819,0.005100,50791327,34040834,0,0,45195,0,1,1 +1774109479.496327,1.05,4,3992.50,54.13,1595.00,2119.51,0.00,1.489980,0.028314,237,247,0.002288,0.006355,50791397,34040956,0,0,45197,0,1,1 +1774109484.496053,1.00,4,3992.50,54.15,1594.27,2120.14,0.00,71197.227813,91059.919593,6060151,1624037,0.003214,0.005794,50791476,34041070,0,0,45199,0,1,1 +1774109489.496600,40.33,4,3992.50,60.84,1337.48,2382.21,0.00,4.108828,0.096767,6060925,1624377,96.332275,0.037078,50801810,34043392,0,0,45202,0,1,1 +1774109494.496775,28.45,4,3992.50,60.73,1341.98,2377.61,0.00,3518313826415.916504,3518313806558.524414,238,2,118.159406,0.034147,50813945,34045933,0,0,45204,0,1,1 +1774109499.492134,29.42,4,3992.50,60.67,1344.24,2375.30,0.00,3521706621849.510742,3521706621851.344727,199,0,120.280517,0.020655,50826426,34047295,0,0,45207,0,1,1 +1774109504.496376,28.50,4,3992.50,60.55,1349.10,2370.53,0.00,3515454170246.909668,0.000000,70,0,118.063653,0.019201,50838623,34048652,0,0,45210,0,1,1 +1774109509.495781,28.06,4,3992.50,60.57,1348.23,2371.39,0.00,3518856075212.293457,0.000000,21,0,120.185732,0.041389,50850941,34051809,0,0,45212,0,1,1 +1774109514.492248,30.09,4,3992.50,60.84,1337.09,2381.94,0.00,71249.326071,91119.557987,6060925,1624465,118.856720,0.050828,50863098,34055561,0,0,45215,0,1,1 +1774109519.496477,29.49,4,3992.50,60.86,1336.36,2382.62,0.00,3515463832199.864258,3515463812360.279297,199,0,119.471983,0.048783,50875330,34059227,0,0,45217,0,1,1 +1774109524.496401,29.09,4,3992.50,60.71,1342.19,2376.86,0.00,3518490544977.498047,0.000000,21,0,119.578247,0.058964,50887607,34063584,0,0,45219,0,1,1 +1774109529.491900,12.12,4,3992.50,54.20,1597.27,2121.87,0.00,71263.188831,91137.449961,6060931,1624509,94.624304,0.040399,50897413,34066556,0,0,45222,0,1,1 +1774109534.495402,1.35,4,3992.50,54.20,1596.87,2122.23,0.00,3515974620787.177246,3515974600943.193359,237,247,0.008291,0.009001,50897584,34066744,0,0,45224,0,1,1 +1774109539.496953,16.66,4,3992.50,54.85,1572.89,2147.66,0.00,0.000000,0.000000,237,247,20.134392,0.101419,50904416,34071814,0,0,45227,0,1,1 +1774109544.495889,13.12,4,3992.50,55.38,1552.08,2168.38,0.00,71208.615620,91075.504198,6060163,1625261,20.120349,0.084185,50910784,34076497,0,0,45230,0,1,1 +1774109549.496279,3.56,4,3992.50,55.55,1545.61,2174.75,0.00,3518163062936.744629,3518163043075.133789,238,2,0.018177,10.827460,50911808,34078107,0,0,45232,0,1,1 +1774109554.496400,30.33,4,3992.50,55.09,1556.36,2156.91,0.00,3518351708009.170898,3518351708011.002930,199,0,0.039297,124.180700,50914693,34091217,0,0,45234,0,1,1 +1774109559.496560,18.19,4,3992.50,54.11,1594.99,2118.64,0.00,3518324738596.106445,0.000000,21,0,0.020108,70.100539,50916154,34098566,0,0,45237,0,1,1 +1774109564.496419,9.57,4,3992.50,59.50,1385.98,2329.71,0.00,0.000000,0.000000,21,0,9.625343,0.020970,50917579,34099525,0,0,45239,0,1,1 +1774109569.496609,5.21,4,3992.50,54.72,1586.10,2142.54,0.00,71213.006890,91258.491788,6061054,1627224,30.449849,0.018840,50920932,34100464,0,0,45242,0,1,1 +1774109574.496298,0.65,4,3992.50,54.74,1583.39,2143.26,0.00,3518656057893.446777,3518656037843.945801,238,2,0.003878,0.007767,50921032,34100608,0,0,45244,0,1,1 +1774109579.496207,0.65,4,3992.50,54.74,1583.40,2143.25,0.00,71210.888978,91263.632465,6060280,1627024,0.003534,0.005990,50921127,34100733,0,0,45247,0,1,1 +1774109584.491936,0.70,4,3992.50,54.55,1590.82,2135.83,0.00,3521445226613.248047,3521445206545.558105,199,0,0.003881,0.007175,50921227,34100875,0,0,45250,0,1,1 +1774109589.494569,0.65,4,3992.50,54.55,1590.84,2135.80,0.00,0.000000,0.000000,199,0,0.003889,0.007119,50921328,34101015,0,0,45252,0,1,1 +1774109594.491912,1.10,4,3992.50,54.45,1594.78,2131.87,0.00,1.364104,0.028335,237,247,0.006737,0.009089,50921476,34101185,0,0,45254,0,1,1 +1774109599.491988,1.00,4,3992.50,54.94,1575.74,2151.03,0.00,71213.103945,91260.874747,6061054,1627525,0.004329,0.006522,50921563,34101304,0,0,45257,0,1,1 +1774109604.496316,0.70,4,3992.50,54.84,1579.68,2146.96,0.00,3515394300247.587402,3515394280216.853027,237,247,0.003883,0.007137,50921664,34101446,0,0,45259,0,1,1 +1774109609.492895,0.70,4,3992.50,54.84,1579.70,2146.95,0.00,71258.815336,91324.748182,6060280,1627336,0.003974,0.007213,50921770,34101593,0,0,45262,0,1,1 +1774109614.495880,0.60,4,3992.50,54.84,1579.46,2147.18,0.00,3516338009764.841309,3516337989725.933594,199,0,0.003950,0.007158,50921875,34101736,0,0,45264,0,1,1 +1774109619.491907,0.60,4,3992.50,54.65,1586.95,2139.70,0.00,71272.167869,91334.927009,6061054,1627617,0.003423,0.005870,50921961,34101853,0,0,45267,0,1,1 +1774109624.492062,0.65,4,3992.50,54.68,1585.91,2140.73,0.00,3518328234150.164062,3518328214103.966309,199,0,0.003878,0.007132,50922061,34101994,0,0,45270,0,1,1 +1774109629.495925,1.10,4,3992.50,54.76,1575.93,2144.16,0.00,3515721058420.901855,0.000000,21,0,0.003418,0.005851,50922147,34102110,0,0,45272,0,1,1 +1774109634.491918,0.60,4,3992.50,54.76,1575.82,2144.11,0.00,71272.822499,91335.625916,6061054,1627676,0.003881,0.007138,50922247,34102251,0,0,45275,0,1,1 +1774109639.491907,0.75,4,3992.50,54.76,1575.95,2143.98,0.00,3518444933837.770508,3518444913790.998535,21,0,0.003936,0.007837,50922352,34102400,0,0,45277,0,1,1 +1774109644.495399,0.60,4,3992.50,54.76,1575.97,2143.96,0.00,71161.915853,91198.795923,6060280,1627497,0.002624,0.005468,50922423,34102507,0,0,45279,0,1,1 +1774109649.492783,11.72,4,3992.50,54.70,1576.54,2141.71,0.00,3520278728541.206055,3520278708479.665527,199,0,0.031223,40.090897,50924494,34107038,0,0,45282,0,1,1 +1774109654.496764,0.70,4,3992.50,54.87,1570.16,2148.11,0.00,71154.767696,91223.736688,6060280,1627775,0.002287,0.006351,50924564,34107160,0,0,45284,0,1,1 +1774109659.491911,1.10,4,3992.50,55.20,1568.54,2161.02,0.00,0.000000,0.086021,6060280,1627806,0.002291,0.006372,50924634,34107283,0,0,45287,0,1,1 +1774109664.496515,0.65,4,3992.50,54.97,1572.47,2152.34,0.00,4.105497,0.034734,6061054,1628062,0.002097,0.006110,50924700,34107399,0,0,45290,0,1,1 +1774109669.491982,0.60,4,3992.50,54.97,1572.48,2152.33,0.00,3521629721098.289551,3521629700999.281738,21,0,0.002035,0.005344,50924761,34107504,0,0,45292,0,1,1 +1774109674.491915,0.75,4,3992.50,54.78,1580.12,2144.68,0.00,1.538400,0.028321,237,247,0.002297,0.006364,50924832,34107627,0,0,45294,0,1,1 +1774109679.496285,0.65,4,3992.50,54.79,1579.66,2145.14,0.00,3515364554574.734375,3515364554576.068359,199,0,0.002299,0.006379,50924903,34107751,0,0,45297,0,1,1 +1774109684.491915,0.70,4,3992.50,54.79,1579.67,2145.15,0.00,3521514814217.214844,0.000000,21,0,0.002329,0.006399,50924976,34107875,0,0,45299,0,1,1 +1774109689.492132,0.95,4,3992.50,54.92,1574.53,2150.28,0.00,1.538312,0.028319,237,247,0.001869,0.005155,50925035,34107978,0,0,45302,0,1,1 +1774109694.494284,0.75,4,3992.50,54.93,1574.23,2150.49,0.00,3516923826618.749512,3516923826620.258789,21,0,0.002494,0.006541,50925119,34108114,0,0,45304,0,1,1 +1774109699.491911,0.65,4,3992.50,54.93,1574.23,2150.48,0.00,0.175083,0.000000,199,0,0.002277,0.006369,50925188,34108237,0,0,45307,0,1,1 +1774109704.496987,1.00,4,3992.50,54.74,1581.67,2143.04,0.00,0.000000,0.000000,199,0,0.002286,0.006990,50925258,34108363,0,0,45310,0,1,1 +1774109709.492877,1.25,4,3992.50,54.65,1584.89,2139.82,0.00,3521331802783.334961,0.000000,70,0,0.003192,0.005799,50925335,34108477,0,0,45312,0,1,1 +1774109714.492638,43.44,4,3992.50,60.53,1360.02,2369.92,0.00,71214.968865,91307.353776,6060280,1628099,99.751363,0.040047,50935987,34111121,0,0,45315,0,1,1 +1774109719.496901,28.64,4,3992.50,60.54,1359.62,2370.32,0.00,3515439812518.789062,3515439792444.530273,21,0,119.470977,0.037153,50948449,34113845,0,0,45317,0,1,1 +1774109724.495370,28.61,4,3992.50,60.64,1355.79,2374.17,0.00,2.007451,0.000195,238,2,118.801511,0.025422,50960639,34115752,0,0,45319,0,1,1 +1774109729.492796,29.05,4,3992.50,60.33,1359.75,2362.12,0.00,71246.264117,91350.135621,6060280,1628166,119.028617,0.024738,50972919,34117414,0,0,45322,0,1,1 +1774109734.492650,29.81,4,3992.50,60.46,1354.62,2367.29,0.00,3518540192899.013672,3518540172806.906738,21,0,119.366331,0.020481,50984902,34118734,0,0,45324,0,1,1 +1774109739.491917,28.33,4,3992.50,60.54,1351.39,2370.44,0.00,71226.151062,91316.548642,6061054,1628442,119.178312,0.019964,50996830,34120174,0,0,45327,0,1,1 +1774109744.493692,29.41,4,3992.50,60.86,1339.12,2382.75,0.00,3517188722785.337402,3517188702705.011230,21,0,119.133740,0.057264,51009094,34124408,0,0,45330,0,1,1 +1774109749.496428,29.25,4,3992.50,61.45,1317.03,2405.96,0.00,71172.655696,91253.383606,6060280,1628240,119.925177,0.086824,51021876,34130926,0,0,45332,0,1,1 +1774109754.492016,11.07,4,3992.50,55.72,1540.44,2181.58,0.00,4.193446,0.174666,6061063,1628546,90.818775,0.045978,51031517,34134269,0,0,45335,0,1,1 +1774109759.492025,1.95,4,3992.50,54.73,1579.35,2142.63,0.00,3518431263296.575684,3518431243206.900391,238,2,0.011161,0.010287,51031728,34134477,0,0,45337,0,1,1 +1774109764.494483,18.23,4,3992.50,54.79,1576.55,2145.34,0.00,0.000000,0.000000,238,2,28.156916,0.126345,51040841,34141318,0,0,45339,0,1,1 +1774109769.496794,9.58,4,3992.50,54.12,1602.83,2119.09,0.00,3516811957140.306641,3516811957142.312500,21,0,12.077332,0.059245,51044838,34144311,0,0,45342,0,1,1 +1774109774.496206,1.20,4,3992.50,54.17,1601.17,2120.75,0.00,2.007072,0.000195,238,2,0.004582,0.008508,51044954,34144474,0,0,45344,0,1,1 +1774109779.496022,1.55,4,3992.50,54.61,1582.39,2138.23,0.00,3518567091859.443359,3518567091861.401855,70,0,0.003878,0.007095,51045054,34144612,0,0,45347,0,1,1 +1774109784.494823,0.75,4,3992.50,54.48,1587.61,2132.98,0.00,0.000000,0.000000,70,0,0.003421,0.005892,51045140,34144731,0,0,45350,0,1,1 +1774109789.496762,3.41,4,3992.50,54.71,1578.69,2141.88,0.00,71188.227152,91269.446735,6061073,1629842,0.015434,11.423562,51046023,34146329,0,0,45352,0,1,1 +1774109794.491916,29.74,4,3992.50,54.71,1572.29,2142.06,0.00,3521850314246.423828,3521850294137.979004,21,0,0.029273,118.686286,51048124,34158763,0,0,45355,0,1,1 +1774109799.492214,19.89,4,3992.50,54.30,1587.29,2125.85,0.00,71211.642171,91504.344558,6061080,1631070,0.022675,75.106067,51049821,34166636,0,0,45357,0,1,1 +1774109804.496566,1.35,4,3992.50,54.34,1585.74,2127.38,0.00,3515377136860.208984,3515377116583.898926,70,0,0.006691,0.008492,51049961,34166807,0,0,45359,0,1,1 +1774109809.495949,17.99,4,3992.50,55.28,1552.91,2164.28,0.00,0.126969,0.000000,199,0,40.071953,0.028539,51054507,34168478,0,0,45362,0,1,1 +1774109814.492032,1.00,4,3992.50,54.62,1578.62,2138.58,0.00,1.364448,0.028343,237,247,0.004570,0.009364,51054621,34168642,0,0,45364,0,1,1 +1774109819.491912,0.95,4,3992.50,54.32,1590.36,2126.85,0.00,3518521844813.525879,3518521844815.036133,21,0,0.003886,0.007128,51054722,34168783,0,0,45367,0,1,1 +1774109824.491918,0.80,4,3992.50,54.10,1599.22,2117.98,0.00,0.000000,0.000000,21,0,0.003865,0.007095,51054821,34168921,0,0,45370,0,1,1 +1774109829.496706,0.75,4,3992.50,53.74,1613.00,2104.20,0.00,71164.329383,91422.550184,6061191,1631328,0.003417,0.005875,51054907,34169039,0,0,45372,0,1,1 +1774109834.496390,1.05,4,3992.50,53.73,1613.70,2103.51,0.00,3518659459224.534668,3518659438943.625488,238,2,0.004490,0.008917,51055020,34169208,0,0,45375,0,1,1 +1774109839.493975,1.41,4,3992.50,54.18,1587.17,2121.22,0.00,71260.778384,91554.419393,6060417,1631179,0.003880,0.007126,51055120,34169348,0,0,45377,0,1,1 +1774109844.495574,0.80,4,3992.50,54.18,1586.95,2121.45,0.00,3517312566301.493652,3517312546026.142578,21,0,0.003860,0.007103,51055219,34169487,0,0,45379,0,1,1 +1774109849.496767,0.80,4,3992.50,54.19,1586.73,2121.66,0.00,71215.493541,91488.515617,6061191,1631519,0.003482,0.005927,51055309,34169609,0,0,45382,0,1,1 +1774109854.495955,0.85,4,3992.50,54.20,1586.53,2121.86,0.00,3519008348716.471680,3519008328435.146973,199,0,0.003879,0.007124,51055409,34169749,0,0,45384,0,1,1 +1774109859.492673,0.90,4,3992.50,54.19,1586.53,2121.85,0.00,3520748254090.546875,0.000000,21,0,0.005279,0.008912,51055529,34169918,0,0,45387,0,1,1 +1774109864.491907,0.75,4,3992.50,54.20,1586.32,2122.07,0.00,0.175027,0.000000,199,0,0.003879,0.007108,51055629,34170057,0,0,45390,0,1,1 +1774109869.494377,7.27,4,3992.50,54.94,1556.02,2150.91,0.00,3516699493019.168457,0.000000,70,0,0.021487,25.433242,51057006,34173057,0,0,45392,0,1,1 +1774109874.496559,5.21,4,3992.50,54.39,1580.54,2129.48,0.00,0.000000,0.000000,70,0,0.010042,14.622984,51057611,34174751,0,0,45394,0,1,1 +1774109879.492005,1.10,4,3992.50,54.23,1586.72,2123.31,0.00,1.960575,0.000195,238,2,0.002291,0.006372,51057681,34174874,0,0,45397,0,1,1 +1774109884.491905,0.80,4,3992.50,54.23,1586.71,2123.32,0.00,3518507634627.844727,0.028126,237,247,0.001831,0.005089,51057737,34174972,0,0,45399,0,1,1 +1774109889.492146,0.85,4,3992.50,54.21,1587.77,2122.27,0.00,3518268045628.452637,3518268045629.962891,21,0,0.002289,0.006366,51057807,34175095,0,0,45402,0,1,1 +1774109894.492518,1.05,4,3992.50,54.22,1587.31,2122.72,0.00,71227.170074,91537.630966,6061191,1631964,0.005119,0.008286,51057923,34175245,0,0,45404,0,1,1 +1774109899.495079,1.20,4,3992.50,54.47,1581.74,2132.51,0.00,0.000000,0.082770,6061191,1631996,0.003204,0.007684,51057995,34175376,0,0,45407,0,1,1 +1774109904.496702,1.00,4,3992.50,54.51,1580.21,2134.05,0.00,3517295219619.308105,3517295199313.842773,21,0,0.001830,0.005097,51058051,34175475,0,0,45410,0,1,1 +1774109909.496121,0.90,4,3992.50,54.51,1580.21,2134.05,0.00,2.007069,0.000195,238,2,0.002302,0.006388,51058122,34175599,0,0,45412,0,1,1 +1774109914.496089,0.95,4,3992.50,54.51,1579.97,2134.29,0.00,3518459678469.930176,0.028125,237,247,0.002364,0.006459,51058198,34175728,0,0,45415,0,1,1 +1774109919.496664,0.90,4,3992.50,54.51,1579.98,2134.28,0.00,3518032996037.351074,3518032996038.812988,70,0,0.002419,0.006481,51058276,34175860,0,0,45417,0,1,1 +1774109924.496100,0.80,4,3992.50,54.51,1579.98,2134.28,0.00,71240.464133,91561.093923,6061191,1632058,0.001839,0.005097,51058333,34175959,0,0,45419,0,1,1 +1774109929.493418,1.35,4,3992.50,54.86,1563.51,2147.88,0.00,3520325384567.867676,3520325364236.665039,238,2,0.002290,0.006369,51058403,34176082,0,0,45422,0,1,1 +1774109934.496670,0.90,4,3992.50,54.58,1574.38,2137.04,0.00,3516150654703.978516,3516150654705.984375,21,0,0.002275,0.006339,51058472,34176203,0,0,45424,0,1,1 +1774109939.496738,29.20,4,3992.50,60.71,1339.89,2376.77,0.00,0.048046,0.000000,70,0,59.691597,0.036017,51065059,34178456,0,0,45427,0,1,1 +1774109944.492197,31.74,4,3992.50,60.68,1340.95,2375.63,0.00,3521635279130.143555,0.000000,21,0,118.274791,0.023554,51077397,34180068,0,0,45430,0,1,1 +1774109949.494645,29.62,4,3992.50,60.35,1353.76,2362.80,0.00,0.000000,0.000000,21,0,120.110600,0.028422,51089810,34182124,0,0,45432,0,1,1 +1774109954.495278,28.61,4,3992.50,60.57,1345.23,2371.39,0.00,0.000000,0.000000,21,0,118.150545,0.023893,51101920,34183712,0,0,45434,0,1,1 +1774109959.495421,28.70,4,3992.50,60.61,1343.61,2373.00,0.00,1.538335,0.028320,237,247,120.180913,0.071723,51114474,34189032,0,0,45437,0,1,1 +1774109964.492137,29.70,4,3992.50,60.62,1348.96,2373.31,0.00,71279.067161,91611.233518,6061281,1632318,118.267044,0.088440,51127064,34195630,0,0,45439,0,1,1 +1774109969.492663,29.20,4,3992.50,60.62,1348.76,2373.44,0.00,3518067153784.840332,3518067133469.500977,199,0,120.164205,0.050833,51139599,34199529,0,0,45442,0,1,1 +1774109974.495484,28.94,4,3992.50,60.65,1347.49,2374.76,0.00,0.000000,0.000000,199,0,118.915301,0.077215,51151978,34205387,0,0,45444,0,1,1 +1774109979.496628,20.67,4,3992.50,60.33,1360.18,2362.16,0.00,71213.207895,91530.269874,6060508,1632112,119.367453,0.103875,51164719,34213240,0,0,45447,0,1,1 +1774109984.496048,1.30,4,3992.50,54.07,1605.43,2116.92,0.00,3518845438438.791016,3518845418114.849121,70,0,12.427496,0.017035,51166173,34214250,0,0,45450,0,1,1 +1774109989.494193,9.90,4,3992.50,54.26,1597.80,2124.51,0.00,3519743228614.742676,0.000000,21,0,10.071971,0.050599,51169547,34216819,0,0,45452,0,1,1 +1774109994.496307,18.98,4,3992.50,54.51,1588.13,2134.13,0.00,0.000000,0.000000,21,0,30.175218,0.139158,51179360,34224179,0,0,45455,0,1,1 +1774109999.494714,1.50,4,3992.50,54.47,1589.68,2132.58,0.00,0.000000,0.000000,21,0,0.008223,0.010722,51179547,34224396,0,0,45457,0,1,1 +1774110004.493189,0.85,4,3992.50,54.47,1589.79,2132.47,0.00,71251.627805,91580.327545,6060544,1633382,0.003887,0.007133,51179648,34224537,0,0,45459,0,1,1 +1774110009.492932,0.95,4,3992.50,54.63,1583.18,2139.07,0.00,0.000000,0.026857,6060544,1633397,0.003878,0.007108,51179748,34224676,0,0,45462,0,1,1 +1774110014.496418,0.80,4,3992.50,54.24,1598.47,2123.78,0.00,4.106414,0.356002,6061318,1633819,0.003418,0.005876,51179834,34224794,0,0,45464,0,1,1 +1774110019.495070,14.47,4,3992.50,54.81,1570.33,2145.88,0.00,3519385979028.860840,21.821703,6060544,1633855,0.029664,54.502928,51181798,34230850,0,0,45467,0,1,1 +1774110024.495017,32.46,4,3992.50,57.17,1474.31,2238.46,0.00,3518474709335.179688,3518474688988.754883,237,247,0.038743,122.972839,51184748,34243529,0,0,45470,0,1,1 +1774110029.495485,9.77,4,3992.50,54.17,1591.97,2120.84,0.00,71225.818369,91722.728346,6061335,1635084,0.012487,27.645460,51185490,34246596,0,0,45472,0,1,1 +1774110034.496445,13.24,4,3992.50,55.85,1529.17,2186.74,0.00,12.475045,26.730022,6060662,1635065,40.058467,0.023483,51190025,34247939,0,0,45475,0,1,1 +1774110039.495722,0.80,4,3992.50,54.62,1577.54,2138.37,0.00,4.109872,0.088782,6061436,1635387,0.005690,0.006900,51190152,34248083,0,0,45477,0,1,1 +1774110044.491922,0.90,4,3992.50,54.72,1573.50,2142.41,0.00,3521113471193.556152,3521113450670.401367,21,0,0.004125,0.008095,51190253,34248223,0,0,45479,0,1,1 +1774110049.491953,0.90,4,3992.50,55.12,1558.52,2158.23,0.00,0.000000,0.000000,21,0,0.003878,0.007132,51190353,34248364,0,0,45482,0,1,1 +1774110054.496486,0.60,4,3992.50,55.03,1561.34,2154.55,0.00,0.000000,0.000000,21,0,0.003875,0.007129,51190453,34248505,0,0,45484,0,1,1 +1774110059.494383,0.50,4,3992.50,55.04,1561.02,2154.88,0.00,0.000000,0.000000,21,0,0.004537,0.008058,51190555,34248648,0,0,45487,0,1,1 +1774110064.491911,0.90,4,3992.50,55.02,1561.89,2154.00,0.00,0.000000,0.000000,21,0,0.003880,0.007154,51190655,34248790,0,0,45490,0,1,1 +1774110069.495907,0.65,4,3992.50,55.02,1561.77,2154.12,0.00,71193.715731,91685.193255,6061436,1635595,0.003418,0.005863,51190741,34248907,0,0,45492,0,1,1 +1774110074.493334,0.75,4,3992.50,55.01,1562.23,2153.66,0.00,3520248559678.539062,3520248539160.079102,70,0,0.003956,0.007172,51190846,34249051,0,0,45494,0,1,1 +1774110079.495838,1.00,4,3992.50,54.82,1569.62,2146.23,0.00,1.489586,0.028306,237,247,0.003863,0.007129,51190945,34249192,0,0,45497,0,1,1 +1774110084.496300,0.65,4,3992.50,54.82,1569.64,2146.21,0.00,3518111951691.881348,3518111951693.391602,21,0,0.003272,0.006872,51191034,34249324,0,0,45499,0,1,1 +1774110089.492001,0.60,4,3992.50,54.80,1570.37,2145.49,0.00,1.539703,0.028345,237,247,0.003498,0.005923,51191125,34249445,0,0,45502,0,1,1 +1774110094.496675,0.70,4,3992.50,54.80,1570.50,2145.36,0.00,0.000000,0.000000,237,247,0.003874,0.007598,51191225,34249588,0,0,45504,0,1,1 +1774110099.496304,11.53,4,3992.50,54.78,1569.02,2144.64,0.00,3518698363859.269043,3518698363860.779297,21,0,0.022689,40.069379,51192676,34254072,0,0,45507,0,1,1 +1774110104.496619,0.80,4,3992.50,54.77,1569.18,2144.43,0.00,0.000000,0.000000,21,0,0.002874,0.007332,51192762,34254214,0,0,45510,0,1,1 +1774110109.492078,1.10,4,3992.50,54.96,1553.78,2151.70,0.00,0.048091,0.000000,70,0,0.002291,0.006362,51192832,34254336,0,0,45512,0,1,1 +1774110114.496221,0.75,4,3992.50,54.80,1560.00,2145.39,0.00,71191.571851,91716.228193,6061436,1636061,0.002287,0.006361,51192902,34254459,0,0,45515,0,1,1 +1774110119.492940,0.60,4,3992.50,54.77,1561.21,2144.18,0.00,3520746929993.531738,3520746909438.256836,199,0,0.001832,0.005092,51192958,34254557,0,0,45517,0,1,1 +1774110124.492044,0.75,4,3992.50,54.77,1560.97,2144.42,0.00,3519068060249.354492,0.000000,21,0,0.002277,0.006357,51193027,34254679,0,0,45519,0,1,1 +1774110129.496712,0.70,4,3992.50,54.77,1560.97,2144.42,0.00,71184.147060,91713.215897,6061436,1636112,0.002287,0.006360,51193097,34254802,0,0,45522,0,1,1 +1774110134.496210,0.65,4,3992.50,54.78,1560.75,2144.64,0.00,3518790555103.505859,3518790534553.031250,199,0,0.002914,0.007497,51193181,34254948,0,0,45524,0,1,1 +1774110139.496299,1.00,4,3992.50,54.79,1563.30,2145.27,0.00,71249.174506,91797.320759,6061436,1636186,0.002093,0.005790,51193247,34255063,0,0,45527,0,1,1 +1774110144.496159,0.60,4,3992.50,54.81,1562.57,2145.98,0.00,3518535304063.866211,3518535283514.958496,21,0,0.002136,0.005838,51193316,34255181,0,0,45530,0,1,1 +1774110149.495878,0.70,4,3992.50,54.81,1562.57,2145.98,0.00,71254.617349,91804.121890,6061436,1636198,0.002413,0.006457,51193394,34255311,0,0,45532,0,1,1 +1774110154.491915,0.70,4,3992.50,54.52,1574.08,2134.47,0.00,3521227642933.582520,3521227622367.425293,237,247,0.002278,0.006371,51193463,34255434,0,0,45535,0,1,1 +1774110159.496392,0.75,4,3992.50,54.52,1573.84,2134.71,0.00,3515289840524.773438,3515289840526.282715,21,0,0.002663,0.008032,51193544,34255580,0,0,45537,0,1,1 +1774110164.491913,0.65,4,3992.50,54.51,1574.32,2134.23,0.00,0.175157,0.000000,199,0,0.001820,0.005119,51193599,34255680,0,0,45539,0,1,1 +1774110169.491910,32.65,4,3992.50,60.89,1329.45,2384.01,0.00,3518438949806.617676,0.000000,21,0,66.703481,0.035544,51200895,34257828,0,0,45542,0,1,1 +1774110174.493202,30.93,4,3992.50,61.04,1323.67,2389.75,0.00,0.000000,0.000000,21,0,118.733211,0.045908,51213018,34261201,0,0,45544,0,1,1 +1774110179.496260,28.79,4,3992.50,60.87,1330.15,2383.14,0.00,1.537438,0.028303,237,247,119.493118,0.027357,51225333,34263127,0,0,45547,0,1,1 +1774110184.493508,28.51,4,3992.50,60.61,1340.47,2372.93,0.00,3520374821071.129395,3520374821072.465332,199,0,118.627145,0.045316,51237396,34266620,0,0,45550,0,1,1 +1774110189.492499,28.79,4,3992.50,60.85,1330.99,2382.40,0.00,1.363654,0.028326,237,247,119.789779,0.038257,51249664,34269389,0,0,45552,0,1,1 +1774110194.495183,28.79,4,3992.50,60.48,1345.40,2367.99,0.00,0.468206,3516549568679.919434,238,2,119.102666,0.032346,51261884,34271657,0,0,45554,0,1,1 +1774110199.496384,28.64,4,3992.50,60.55,1342.61,2370.79,0.00,3517592390123.894043,3517592390125.900391,21,0,119.136414,0.045347,51274051,34275025,0,0,45557,0,1,1 +1774110204.492844,36.97,4,3992.50,60.64,1341.54,2374.30,0.00,2.008258,0.000195,238,2,119.650754,0.038929,51286295,34277856,0,0,45559,0,1,1 +1774110209.496686,19.08,4,3992.50,60.48,1347.95,2368.09,0.00,3515735428081.655762,3515735428083.661133,21,0,118.674572,0.055110,51298404,34281934,0,0,45562,0,1,1 +1774110214.496664,1.05,4,3992.50,54.95,1564.62,2151.40,0.00,2.006845,0.000195,238,2,5.412802,0.008953,51299095,34282254,0,0,45564,0,1,1 +1774110219.495380,14.25,4,3992.50,55.49,1543.46,2172.54,0.00,71267.037176,91823.356730,6061449,1636904,18.126544,0.089446,51305105,34286763,0,0,45567,0,1,1 +1774110224.496963,14.29,4,3992.50,55.61,1538.65,2177.32,0.00,3517323214736.175781,3517323194193.647461,21,0,18.719101,0.089148,51311502,34291571,0,0,45570,0,1,1 +1774110229.496093,3.06,4,3992.50,54.61,1577.14,2138.16,0.00,0.175030,0.000000,199,0,3.420966,0.017317,51312511,34292384,0,0,45572,0,1,1 +1774110234.491908,0.80,4,3992.50,54.62,1576.70,2138.61,0.00,1.364521,0.028344,237,247,0.003966,0.008299,51312615,34292542,0,0,45575,0,1,1 +1774110239.496449,24.77,4,3992.50,54.71,1568.39,2142.08,0.00,0.468032,3515244528114.299805,238,2,0.050349,98.659928,51316212,34303181,0,0,45577,0,1,1 +1774110244.496799,26.70,4,3992.50,54.75,1564.50,2143.62,0.00,71243.750691,91947.210476,6061449,1638884,0.024954,106.344086,51318033,34314281,0,0,45579,0,1,1 +1774110249.496168,0.90,4,3992.50,54.45,1576.44,2131.72,0.00,3518881164837.134766,3518881144131.619629,21,0,0.004625,0.007811,51318153,34314440,0,0,45582,0,1,1 +1774110254.492043,14.26,4,3992.50,55.45,1539.88,2170.91,0.00,1.539649,0.028344,237,247,40.098460,0.026199,51322526,34316009,0,0,45584,0,1,1 +1774110259.496413,1.25,4,3992.50,54.64,1571.60,2139.41,0.00,71203.583575,91925.818384,6061568,1639417,0.005139,0.008636,51322653,34316170,0,0,45587,0,1,1 +1774110264.496807,0.65,4,3992.50,54.49,1577.46,2133.46,0.00,3518159131274.211426,3518159110536.841309,199,0,0.003878,0.007132,51322753,34316311,0,0,45590,0,1,1 +1774110269.492215,0.60,4,3992.50,54.49,1577.46,2133.47,0.00,71332.687757,92090.822568,6061568,1639496,0.003882,0.007129,51322853,34316451,0,0,45592,0,1,1 +1774110274.496737,0.90,4,3992.50,54.21,1588.40,2122.52,0.00,3515258076010.025879,3515258055289.870117,21,0,0.003883,0.007134,51322954,34316593,0,0,45595,0,1,1 +1774110279.496164,0.65,4,3992.50,54.03,1595.36,2115.58,0.00,0.000000,0.000000,21,0,0.003421,0.005856,51323040,34316709,0,0,45597,0,1,1 +1774110284.496709,0.65,4,3992.50,54.03,1595.36,2115.59,0.00,71259.576364,91996.308931,6061568,1639589,0.003903,0.007153,51323142,34316851,0,0,45599,0,1,1 +1774110289.496757,0.95,4,3992.50,54.23,1587.25,2123.20,0.00,0.000000,0.141796,6061568,1639693,0.003865,0.007145,51323241,34316993,0,0,45602,0,1,1 +1774110294.496819,0.60,4,3992.50,54.05,1594.03,2116.29,0.00,3518393638309.483887,3518393617569.094727,237,247,0.003971,0.007842,51323347,34317143,0,0,45604,0,1,1 +1774110299.496115,0.60,4,3992.50,54.06,1593.82,2116.49,0.00,71275.837980,92019.457924,6061568,1639759,0.003408,0.005853,51323432,34317259,0,0,45607,0,1,1 +1774110304.492115,0.80,4,3992.50,54.16,1589.79,2120.53,0.00,3521253742003.532227,3521253721247.739258,21,0,0.003956,0.007178,51323537,34317403,0,0,45610,0,1,1 +1774110309.492041,0.60,4,3992.50,54.16,1589.80,2120.52,0.00,0.048048,0.000000,70,0,0.003886,0.007131,51323638,34317544,0,0,45612,0,1,1 +1774110314.491927,0.65,4,3992.50,54.17,1589.57,2120.75,0.00,3518517610529.069824,0.000000,21,0,0.003866,0.007123,51323737,34317684,0,0,45614,0,1,1 +1774110319.496392,1.10,4,3992.50,54.26,1586.67,2124.41,0.00,71199.654217,91924.640394,6060794,1639715,0.003646,0.006480,51323830,34317812,0,0,45617,0,1,1 +1774110324.496606,0.85,4,3992.50,53.98,1597.52,2113.51,0.00,3518286328387.468262,3518286307644.863281,21,0,0.006682,0.609824,51324048,34318125,0,0,45619,0,1,1 +1774110329.492013,11.24,4,3992.50,54.62,1570.76,2138.39,0.00,0.175161,0.000000,199,0,0.019876,39.500316,51325417,34322405,0,0,45622,0,1,1 +1774110334.492092,0.60,4,3992.50,54.45,1577.28,2131.88,0.00,1.363357,0.028320,237,247,0.002084,0.005707,51325480,34322515,0,0,45624,0,1,1 +1774110339.492136,0.80,4,3992.50,54.11,1590.81,2118.35,0.00,3518406220870.711914,3518406220872.222168,21,0,0.002289,0.006366,51325550,34322638,0,0,45627,0,1,1 +1774110344.492013,0.70,4,3992.50,54.09,1591.35,2117.80,0.00,71264.988369,92043.206112,6060794,1640083,0.002289,0.006366,51325620,34322761,0,0,45630,0,1,1 +1774110349.496628,1.10,4,3992.50,54.32,1568.87,2126.77,0.00,3515193374824.383789,3515193354064.323730,237,247,0.002282,0.006358,51325690,34322884,0,0,45632,0,1,1 +1774110354.491901,0.80,4,3992.50,54.32,1568.79,2126.87,0.00,0.468900,3521766059641.598633,238,2,0.001820,0.005094,51325745,34322982,0,0,45634,0,1,1 +1774110359.492429,0.80,4,3992.50,54.33,1568.57,2127.09,0.00,3518065976226.862793,3518065976228.869629,21,0,0.002314,0.007040,51325817,34323111,0,0,45637,0,1,1 +1774110364.494030,0.85,4,3992.50,54.34,1568.10,2127.57,0.00,0.000000,0.000000,21,0,0.002338,0.006416,51325891,34323237,0,0,45639,0,1,1 +1774110369.494396,0.70,4,3992.50,54.37,1566.82,2128.84,0.00,0.000000,0.000000,21,0,0.002352,0.006459,51325966,34323366,0,0,45642,0,1,1 +1774110374.496618,0.65,4,3992.50,54.37,1566.77,2128.90,0.00,0.000000,0.000000,21,0,0.001955,0.005187,51326030,34323472,0,0,45644,0,1,1 +1774110379.495886,1.05,4,3992.50,54.77,1551.27,2144.38,0.00,0.048054,0.000000,70,0,0.002295,0.006392,51326100,34323597,0,0,45647,0,1,1 +1774110384.496346,0.75,4,3992.50,54.77,1551.29,2144.36,0.00,0.000000,0.000000,70,0,0.002263,0.006365,51326168,34323720,0,0,45650,0,1,1 +1774110389.492026,0.75,4,3992.50,54.78,1551.07,2144.59,0.00,3521479408605.583496,0.000000,21,0,0.002303,0.006362,51326239,34323842,0,0,45652,0,1,1 +1774110394.496546,32.81,4,3992.50,60.65,1326.00,2374.71,0.00,2.005024,0.000195,238,2,73.642746,0.035915,51334094,34326151,0,0,45655,0,1,1 +1774110399.496380,29.64,4,3992.50,60.63,1326.92,2373.79,0.00,71267.698063,92050.288876,6061568,1640596,118.370838,0.034962,51346363,34328649,0,0,45657,0,1,1 +1774110404.492011,28.18,4,3992.50,60.56,1329.71,2370.94,0.00,0.000000,0.010067,6061568,1640615,118.674117,0.033418,51358663,34330933,0,0,45659,0,1,1 +1774110409.492601,27.68,4,3992.50,60.41,1335.27,2365.34,0.00,3518021617949.318848,0.018455,6060794,1640378,119.752963,0.023947,51371052,34332745,0,0,45662,0,1,1 +1774110414.496430,28.23,4,3992.50,60.46,1333.61,2367.04,0.00,4.106134,0.072210,6061568,1640662,118.888501,0.057638,51383488,34336982,0,0,45664,0,1,1 +1774110419.494047,27.86,4,3992.50,60.53,1330.64,2370.03,0.00,0.000000,0.003615,6061568,1640673,119.429921,0.047306,51395837,34340503,0,0,45667,0,1,1 +1774110424.496493,28.31,4,3992.50,60.34,1338.21,2362.46,0.00,3516717149240.711426,3516717128468.863281,238,2,119.307272,0.035243,51408098,34343029,0,0,45670,0,1,1 +1774110429.491978,27.77,4,3992.50,60.32,1339.08,2361.57,0.00,71329.750637,92130.685159,6061568,1640695,119.071401,0.025021,51420168,34344834,0,0,45672,0,1,1 +1774110434.496455,17.00,4,3992.50,60.41,1335.71,2365.04,0.00,0.000781,0.006049,6061569,1640707,118.265241,0.044233,51432353,34348034,0,0,45675,0,1,1 +1774110439.496776,1.56,4,3992.50,54.05,1585.22,2116.20,0.00,0.149990,0.163661,6061583,1640756,0.005927,0.007003,51432502,34348198,0,0,45677,0,1,1 +1774110444.493422,16.10,4,3992.50,55.10,1543.62,2157.19,0.00,0.000000,0.226715,6061583,1641290,22.161416,0.106234,51439940,34353657,0,0,45679,0,1,1 +1774110449.492960,12.87,4,3992.50,54.49,1567.50,2133.27,0.00,3518761585731.515625,3518761564949.161133,70,0,18.112855,0.080847,51445872,34358063,0,0,45682,0,1,1 +1774110454.492456,1.45,4,3992.50,54.37,1572.12,2128.62,0.00,0.126966,0.000000,199,0,0.009195,0.010788,51446075,34358283,0,0,45684,0,1,1 +1774110459.491894,0.60,4,3992.50,54.37,1572.14,2128.59,0.00,1.363532,0.028323,237,247,0.003964,0.006651,51446171,34358419,0,0,45687,0,1,1 +1774110464.496377,27.17,4,3992.50,54.47,1563.21,2132.67,0.00,71198.026114,92040.428889,6060809,1642128,0.073399,107.663885,51451629,34369872,0,0,45690,0,1,1 +1774110469.495744,24.70,4,3992.50,54.42,1565.36,2130.52,0.00,3518881849685.316406,3518881828823.103516,21,0,0.045407,97.346825,51455154,34379857,0,0,45692,0,1,1 +1774110474.496390,1.35,4,3992.50,54.42,1565.38,2130.51,0.00,71258.315596,92241.979441,6061598,1643225,0.006199,0.010887,51455292,34380057,0,0,45695,0,1,1 +1774110479.496535,14.51,4,3992.50,54.44,1566.41,2131.35,0.00,16.586240,0.081443,6061706,1643329,40.065595,0.029261,51459748,34381860,0,0,45697,0,1,1 +1774110484.496761,0.90,4,3992.50,54.49,1564.48,2133.27,0.00,3518277446506.085449,3518277425535.163086,238,2,0.004382,0.008412,51459863,34382014,0,0,45699,0,1,1 +1774110489.496004,0.70,4,3992.50,54.43,1566.73,2131.03,0.00,0.000000,0.000000,238,2,0.003879,0.007133,51459963,34382155,0,0,45702,0,1,1 +1774110494.495180,0.70,4,3992.50,54.45,1566.11,2131.66,0.00,3519017184439.129883,0.028130,237,247,0.006053,0.008764,51460107,34382324,0,0,45704,0,1,1 +1774110499.496590,1.10,4,3992.50,54.63,1563.92,2139.00,0.00,3517445065663.638672,3517445065665.148438,21,0,0.003877,0.007143,51460207,34382466,0,0,45707,0,1,1 +1774110504.495973,0.85,4,3992.50,54.98,1550.38,2152.53,0.00,0.000000,0.000000,21,0,0.004343,0.006536,51460295,34382586,0,0,45710,0,1,1 +1774110509.496260,0.55,4,3992.50,54.97,1550.80,2152.12,0.00,0.000000,0.000000,21,0,0.003903,0.007141,51460397,34382727,0,0,45712,0,1,1 +1774110514.496249,0.75,4,3992.50,54.95,1551.39,2151.52,0.00,0.000000,0.000000,21,0,0.003878,0.007132,51460497,34382868,0,0,45715,0,1,1 +1774110519.494239,0.70,4,3992.50,54.92,1552.82,2150.10,0.00,71312.771794,92291.693773,6061706,1643905,0.003973,0.007201,51460603,34383014,0,0,45717,0,1,1 +1774110524.496024,0.65,4,3992.50,54.92,1552.59,2150.34,0.00,0.000000,0.033875,6061706,1643945,0.003419,0.005853,51460689,34383130,0,0,45719,0,1,1 +1774110529.493031,1.10,4,3992.50,54.82,1553.40,2146.51,0.00,3520544573604.746094,3520544552619.655273,238,2,0.003963,0.007185,51460795,34383275,0,0,45722,0,1,1 +1774110534.496437,0.70,4,3992.50,54.80,1554.07,2145.69,0.00,71233.559330,92191.893333,6061706,1644008,0.003875,0.007130,51460895,34383416,0,0,45724,0,1,1 +1774110539.492034,0.65,4,3992.50,54.58,1562.92,2136.85,0.00,3521538679263.470703,3521538658274.377441,21,0,0.003932,0.007188,51460999,34383560,0,0,45727,0,1,1 +1774110544.494062,0.65,4,3992.50,54.58,1562.92,2136.84,0.00,71255.193760,92217.376368,6061706,1644100,0.003406,0.005863,51461084,34383677,0,0,45730,0,1,1 +1774110549.494126,0.60,4,3992.50,54.58,1562.95,2136.82,0.00,0.000000,0.031640,6061706,1644138,0.003083,0.006739,51461169,34383808,0,0,45732,0,1,1 +1774110554.496379,11.34,4,3992.50,54.54,1562.43,2135.33,0.00,3516852843224.431152,3516852822261.149414,238,2,0.026089,40.051001,51462847,34388367,0,0,45735,0,1,1 +1774110559.495861,1.15,4,3992.50,54.43,1569.62,2130.89,0.00,3518801578673.432129,3518801578675.390625,70,0,0.002060,0.006380,51462910,34388482,0,0,45737,0,1,1 +1774110564.495545,0.70,4,3992.50,54.43,1569.74,2130.89,0.00,0.000000,0.000000,70,0,0.002289,0.006356,51462980,34388604,0,0,45739,0,1,1 +1774110569.491912,0.70,4,3992.50,54.62,1561.94,2138.68,0.00,3520995772149.946777,0.000000,21,0,0.002303,0.006371,51463051,34388727,0,0,45742,0,1,1 +1774110574.495051,0.65,4,3992.50,54.62,1561.95,2138.68,0.00,0.000000,0.000000,21,0,0.002067,0.005714,51463115,34388837,0,0,45744,0,1,1 +1774110579.492016,0.90,4,3992.50,54.46,1568.36,2132.27,0.00,71327.402704,92344.886346,6061706,1644457,0.002049,0.005748,51463177,34388949,0,0,45747,0,1,1 +1774110584.491883,0.70,4,3992.50,54.46,1568.36,2132.26,0.00,3518530506028.486816,3518530485023.030273,199,0,0.002301,0.006397,51463248,34389074,0,0,45750,0,1,1 +1774110589.496489,1.05,4,3992.50,54.65,1561.12,2139.85,0.00,1.362124,0.028294,237,247,0.002337,0.006412,51463322,34389200,0,0,45752,0,1,1 +1774110594.491898,0.70,4,3992.50,54.51,1566.63,2134.00,0.00,3521670622311.527832,3521670622313.039062,21,0,0.002316,0.006403,51463394,34389325,0,0,45755,0,1,1 +1774110599.491967,0.80,4,3992.50,54.55,1564.93,2135.69,0.00,1.538358,0.028320,237,247,0.002037,0.005277,51463464,34389437,0,0,45757,0,1,1 +1774110604.496418,0.95,4,3992.50,54.44,1569.16,2131.46,0.00,0.468040,3515307999113.647949,238,2,0.002287,0.006350,51463534,34389559,0,0,45759,0,1,1 +1774110609.493449,0.90,4,3992.50,54.44,1569.23,2131.38,0.00,3520527488984.867676,3520527488986.827148,70,0,0.002278,0.006370,51463603,34389682,0,0,45762,0,1,1 +1774110614.496550,0.85,4,3992.50,54.44,1569.00,2131.64,0.00,71239.886198,92238.039223,6061716,1644644,0.002262,0.006352,51463671,34389804,0,0,45764,0,1,1 +1774110619.491863,35.92,4,3992.50,60.63,1331.80,2373.74,0.00,3521738276443.827637,0.030595,6060942,1644441,78.992308,0.037216,51472217,34392249,0,0,45767,0,1,1 +1774110624.496118,32.81,4,3992.50,60.90,1319.40,2384.49,0.00,3515445625556.599609,3515445604559.200195,21,0,119.667082,0.022664,51484631,34393648,0,0,45770,0,1,1 +1774110629.496430,30.50,4,3992.50,60.76,1325.16,2378.77,0.00,0.048044,0.000000,70,0,118.762581,0.032734,51496988,34396129,0,0,45772,0,1,1 +1774110634.495553,31.30,4,3992.50,60.50,1335.21,2368.77,0.00,71292.459093,92311.677254,6060942,1644592,119.994759,0.044370,51509404,34399434,0,0,45775,0,1,1 +1774110639.496289,31.05,4,3992.50,60.87,1320.81,2383.13,0.00,3517919121901.741211,3517919100889.351074,21,0,119.160114,0.055296,51521841,34403476,0,0,45777,0,1,1 +1774110644.492769,31.11,4,3992.50,60.90,1319.77,2384.21,0.00,1.539463,0.028340,237,247,119.256617,0.044286,51534200,34406756,0,0,45779,0,1,1 +1774110649.492203,30.20,4,3992.50,60.75,1325.34,2378.60,0.00,71290.641217,92306.043083,6061716,1644887,119.388936,0.053019,51546555,34410684,0,0,45782,0,1,1 +1774110654.496408,31.07,4,3992.50,60.65,1332.57,2374.48,0.00,3515480382358.776855,3515480361363.410156,237,247,118.878799,0.062372,51558908,34415333,0,0,45784,0,1,1 +1774110659.496109,16.90,4,3992.50,54.42,1576.69,2130.48,0.00,3518648085683.862793,3518648085685.324707,70,0,111.371470,0.045287,51570532,34418549,0,0,45787,0,1,1 +1774110664.496740,1.30,4,3992.50,54.03,1591.83,2115.34,0.00,0.000000,0.000000,70,0,0.004281,0.004754,51570627,34418652,0,0,45790,0,1,1 +1774110669.496401,15.58,4,3992.50,55.30,1542.07,2165.05,0.00,3518675787768.795410,0.000000,21,0,18.123184,0.090368,51576632,34423147,0,0,45792,0,1,1 +1774110674.495856,14.80,4,3992.50,55.48,1534.77,2172.29,0.00,71292.053316,92306.401506,6061731,1645844,22.128723,0.094074,51583627,34428447,0,0,45795,0,1,1 +1774110679.496559,2.40,4,3992.50,55.72,1525.93,2181.68,0.00,3517942415691.296387,3517942394680.185547,238,2,0.013503,0.013335,51583912,34428728,0,0,45797,0,1,1 +1774110684.496562,1.05,4,3992.50,55.35,1540.37,2167.23,0.00,3518435467255.812012,3518435467257.644043,199,0,0.005980,0.008516,51584039,34428901,0,0,45799,0,1,1 +1774110689.495386,27.94,4,3992.50,54.99,1549.88,2153.00,0.00,3519264894939.724121,0.000000,21,0,0.047235,108.787637,51587548,34440523,0,0,45802,0,1,1 +1774110694.493770,25.88,4,3992.50,54.82,1551.51,2146.32,0.00,0.000000,0.000000,21,0,0.024684,96.376523,51589209,34450818,0,0,45804,0,1,1 +1774110699.496825,1.95,4,3992.50,54.21,1575.24,2122.60,0.00,0.000000,0.000000,21,0,0.005489,0.010795,51589351,34451028,0,0,45807,0,1,1 +1774110704.496014,15.54,4,3992.50,55.69,1524.52,2180.25,0.00,2.007161,0.000195,238,2,40.072731,0.029699,51593822,34452793,0,0,45810,0,1,1 +1774110709.496493,1.40,4,3992.50,54.94,1556.84,2150.88,0.00,3518100708881.018555,3518100708882.977051,70,0,0.006251,0.008133,51593971,34452968,0,0,45812,0,1,1 +1774110714.494769,1.10,4,3992.50,54.70,1563.13,2141.69,0.00,0.126997,0.000000,199,0,0.005039,0.010625,51594100,34453156,0,0,45815,0,1,1 +1774110719.496185,0.90,4,3992.50,54.65,1564.99,2139.83,0.00,3517441167329.301758,0.000000,21,0,0.005034,0.010288,51594236,34453356,0,0,45817,0,1,1 +1774110724.495976,0.80,4,3992.50,54.66,1564.89,2139.93,0.00,71303.870657,92506.436591,6061855,1648028,0.005010,0.010278,51594370,34453555,0,0,45819,0,1,1 +1774110729.492567,0.95,4,3992.50,54.64,1565.42,2139.41,0.00,3520838151506.383301,0.007818,6061081,1647821,0.004347,0.008444,51594485,34453723,0,0,45822,0,1,1 +1774110734.492594,1.25,4,3992.50,54.51,1570.59,2134.23,0.00,3518417960801.339355,3518417939595.483398,199,0,0.005659,0.011400,51594635,34453945,0,0,45824,0,1,1 +1774110739.496101,1.45,4,3992.50,54.52,1564.68,2134.65,0.00,3515971322478.077637,0.000000,21,0,0.005019,0.010293,51594770,34454146,0,0,45827,0,1,1 +1774110744.496050,0.95,4,3992.50,54.52,1564.67,2134.62,0.00,0.048047,0.000000,70,0,0.005068,0.009372,51594891,34454317,0,0,45830,0,1,1 +1774110749.496523,0.80,4,3992.50,54.52,1564.68,2134.61,0.00,1.958604,0.000195,238,2,0.004428,0.010052,51595016,34454510,0,0,45832,0,1,1 +1774110754.493491,0.90,4,3992.50,54.53,1564.46,2134.84,0.00,3520572190178.597656,3520572190180.605957,21,0,0.005025,0.010941,51595151,34454714,0,0,45834,0,1,1 +1774110759.493619,0.90,4,3992.50,54.37,1570.72,2128.57,0.00,71294.954630,92500.484468,6061081,1648055,0.004812,0.009504,51595283,34454904,0,0,45837,0,1,1 +1774110764.495987,0.80,4,3992.50,54.31,1572.97,2126.32,0.00,3516771631117.883789,3516771609920.339844,237,247,0.005028,0.010294,51595419,34455105,0,0,45839,0,1,1 +1774110769.491956,1.20,4,3992.50,54.64,1561.44,2139.16,0.00,71356.885248,92577.552695,6061855,1648335,0.005039,0.010309,51595555,34455306,0,0,45842,0,1,1 +1774110774.491988,11.87,4,3992.50,54.47,1565.06,2132.44,0.00,3518414042009.029297,3518414020806.945801,199,0,0.023694,40.071768,51596916,34459910,0,0,45844,0,1,1 +1774110779.495938,1.05,4,3992.50,54.35,1569.62,2127.88,0.00,71244.443645,92462.030594,6061855,1648635,0.003431,0.009527,51597021,34460093,0,0,45847,0,1,1 +1774110784.496297,0.90,4,3992.50,54.35,1569.63,2127.88,0.00,3518184470017.314941,3518184448784.669434,21,0,0.003446,0.009521,51597127,34460275,0,0,45850,0,1,1 +1774110789.492466,0.95,4,3992.50,54.15,1577.29,2120.21,0.00,0.175134,0.000000,199,0,0.002774,0.007642,51597213,34460422,0,0,45852,0,1,1 +1774110794.496316,1.05,4,3992.50,54.19,1575.85,2121.65,0.00,71245.857186,92463.881501,6061855,1648645,0.005611,0.010533,51597363,34460631,0,0,45854,0,1,1 +1774110799.496263,1.45,4,3992.50,54.62,1561.07,2138.59,0.00,0.000000,0.083595,6061855,1648672,0.003231,0.008958,51597463,34460806,0,0,45857,0,1,1 +1774110804.496201,1.00,4,3992.50,54.62,1560.92,2138.57,0.00,3518480836410.600586,3518480815176.066406,21,0,0.003871,0.008869,51597554,34460963,0,0,45859,0,1,1 +1774110809.496278,0.95,4,3992.50,54.62,1560.92,2138.56,0.00,71295.678890,92541.719617,6061081,1648472,0.002747,0.007633,51597638,34461110,0,0,45862,0,1,1 +1774110814.492341,0.85,4,3992.50,54.43,1568.34,2131.14,0.00,3521209517532.855957,3521209496269.696777,70,0,0.002774,0.007660,51597724,34461258,0,0,45864,0,1,1 +1774110819.492709,0.90,4,3992.50,54.43,1568.34,2131.14,0.00,3518178399014.678223,0.000000,21,0,0.003664,0.010396,51597845,34461461,0,0,45867,0,1,1 +1774110824.491906,1.45,4,3992.50,54.40,1569.51,2129.97,0.00,2.007158,0.000195,238,2,0.002747,0.007634,51597929,34461608,0,0,45870,0,1,1 +1774110829.493159,1.00,4,3992.50,54.82,1555.73,2146.21,0.00,71276.920571,92520.039409,6061081,1648499,0.003440,0.009530,51598035,34461791,0,0,45872,0,1,1 +1774110834.493446,0.80,4,3992.50,54.86,1553.86,2147.97,0.00,3518234756761.386230,3518234735515.999512,199,0,0.003420,0.009534,51598139,34461974,0,0,45875,0,1,1 +1774110839.497391,38.77,4,3992.50,60.53,1336.74,2370.07,0.00,71244.513722,92470.365429,6061855,1648839,83.459855,0.043354,51607135,34464707,0,0,45877,0,1,1 +1774110844.493640,30.87,4,3992.50,60.60,1334.33,2372.43,0.00,0.000000,0.058247,6061855,1648900,118.253924,0.033422,51619332,34467071,0,0,45879,0,1,1 +1774110849.495461,30.52,4,3992.50,60.74,1328.81,2377.95,0.00,3517156783481.261230,3517156762246.512207,21,0,119.322087,0.035707,51631594,34469660,0,0,45882,0,1,1 +1774110854.496757,30.85,4,3992.50,60.49,1338.36,2368.39,0.00,71278.303903,92519.439195,6061081,1648677,118.935471,0.038975,51643779,34472293,0,0,45884,0,1,1 +1774110859.497130,30.33,4,3992.50,60.68,1330.93,2375.91,0.00,3518174365848.674805,3518174344601.613281,238,2,119.757703,0.024453,51656154,34474073,0,0,45887,0,1,1 +1774110864.496074,30.63,4,3992.50,60.64,1332.70,2374.08,0.00,3519180418260.739258,0.028131,237,247,118.590602,0.025828,51668462,34475878,0,0,45890,0,1,1 +1774110869.496518,30.23,4,3992.50,60.78,1326.88,2379.85,0.00,3518124743818.087402,3518124743819.549805,70,0,119.756127,0.031344,51680767,34478070,0,0,45892,0,1,1 +1774110874.491886,30.11,4,3992.50,60.69,1330.47,2376.29,0.00,3521699963178.417969,0.000000,21,0,119.273295,0.021583,51692866,34479638,0,0,45895,0,1,1 +1774110879.496722,16.11,4,3992.50,54.15,1586.74,2120.12,0.00,0.000000,0.000000,21,0,108.046191,0.025539,51703955,34481380,0,0,45897,0,1,1 +1774110884.496312,1.10,4,3992.50,54.19,1585.14,2121.72,0.00,0.000000,0.000000,21,0,0.005852,0.009049,51704096,34481564,0,0,45899,0,1,1 +1774110889.496236,17.14,4,3992.50,54.42,1576.09,2130.70,0.00,0.000000,0.000000,21,0,22.142518,0.105741,51711377,34486964,0,0,45902,0,1,1 +1774110894.495963,11.86,4,3992.50,55.30,1539.54,2165.16,0.00,0.175010,0.000000,199,0,18.105323,0.076543,51717102,34491189,0,0,45904,0,1,1 +1774110899.496460,3.30,4,3992.50,55.30,1539.55,2165.13,0.00,3518087808585.128418,0.000000,70,0,0.017412,0.015652,51717462,34491533,0,0,45907,0,1,1 +1774110904.494434,0.90,4,3992.50,54.53,1569.57,2135.12,0.00,1.490936,0.028332,237,247,0.005024,0.010305,51717597,34491734,0,0,45910,0,1,1 +1774110909.491908,0.85,4,3992.50,54.56,1568.38,2136.31,0.00,0.000000,0.000000,237,247,0.005038,0.010321,51717733,34491936,0,0,45912,0,1,1 +1774110914.493440,0.85,4,3992.50,54.33,1577.41,2127.27,0.00,71273.564746,92516.566854,6061096,1649988,0.003553,0.008014,51717833,34492092,0,0,45915,0,1,1 +1774110919.491898,25.68,4,3992.50,55.14,1541.12,2158.77,0.00,3519522224589.792969,3519522203335.064941,199,0,0.043215,100.587920,51720799,34503063,0,0,45917,0,1,1 +1774110924.491929,27.78,4,3992.50,54.77,1555.22,2144.36,0.00,3518415785953.035645,0.000000,70,0,0.039543,104.562103,51723618,34514292,0,0,45919,0,1,1 +1774110929.496297,1.45,4,3992.50,54.49,1566.27,2133.30,0.00,71238.778259,92642.497572,6061879,1651670,0.008873,0.014237,51723822,34514575,0,0,45922,0,1,1 +1774110934.492180,14.01,4,3992.50,54.63,1562.88,2138.96,0.00,3521336602620.935547,3521336581179.399902,237,247,40.096766,0.027679,51728230,34516264,0,0,45924,0,1,1 +1774110939.495825,1.20,4,3992.50,54.33,1574.54,2127.29,0.00,71260.058677,92656.063325,6061216,1651558,0.004816,0.010150,51728359,34516444,0,0,45927,0,1,1 +1774110944.491917,0.85,4,3992.50,54.34,1574.50,2127.35,0.00,3521189065138.022949,3521189043709.177246,238,2,0.005343,0.010321,51728495,34516646,0,0,45930,0,1,1 +1774110949.495999,1.35,4,3992.50,54.70,1560.46,2141.82,0.00,71257.469007,92648.157324,6061990,1651935,0.004332,0.008383,51728609,34516810,0,0,45932,0,1,1 +1774110954.492126,1.20,4,3992.50,54.70,1560.50,2141.52,0.00,3521164777059.861816,27.027088,6061216,1651883,0.005026,0.010940,51728744,34517014,0,0,45935,0,1,1 +1774110959.491916,0.95,4,3992.50,54.69,1560.82,2141.19,0.00,3518585151780.086426,3518585130341.924316,21,0,0.003645,0.006497,51728837,34517143,0,0,45937,0,1,1 +1774110964.491923,0.90,4,3992.50,54.69,1560.62,2141.39,0.00,2.006833,0.000195,238,2,0.005048,0.010322,51728974,34517345,0,0,45939,0,1,1 +1774110969.494964,0.65,4,3992.50,54.67,1561.42,2140.59,0.00,71268.189884,92694.580699,6061216,1652020,0.005019,0.010282,51729109,34517545,0,0,45942,0,1,1 +1774110974.491988,0.60,4,3992.50,54.67,1561.43,2140.58,0.00,3520531849091.122559,3520531827640.944336,21,0,0.004444,0.008458,51729230,34517714,0,0,45944,0,1,1 +1774110979.491897,1.05,4,3992.50,54.68,1563.59,2140.73,0.00,71314.844727,92752.759554,6061216,1652107,0.005035,0.010301,51729366,34517915,0,0,45947,0,1,1 +1774110984.496318,0.80,4,3992.50,54.70,1562.46,2141.70,0.00,3515329256066.393066,3515329234647.757812,70,0,0.005082,0.010325,51729506,34518119,0,0,45950,0,1,1 +1774110989.496303,0.70,4,3992.50,54.67,1563.63,2140.52,0.00,71313.704262,92751.392456,6061216,1652157,0.004392,0.008405,51729624,34518284,0,0,45952,0,1,1 +1774110994.495393,11.39,4,3992.50,54.39,1573.47,2129.31,0.00,3519077380210.549316,3519077358767.561035,237,247,0.026604,40.079244,51731296,34522866,0,0,45955,0,1,1 +1774110999.493967,1.00,4,3992.50,54.28,1577.70,2125.09,0.00,0.000000,0.000000,237,247,0.004234,0.011080,51731422,34523079,0,0,45957,0,1,1 +1774111004.496624,0.70,4,3992.50,54.28,1577.70,2125.08,0.00,3516568190867.327148,3516568190868.661621,199,0,0.002745,0.007619,51731506,34523225,0,0,45959,0,1,1 +1774111009.495813,1.10,4,3992.50,54.29,1578.23,2125.57,0.00,3519007955375.704102,0.000000,21,0,0.003446,0.009536,51731612,34523408,0,0,45962,0,1,1 +1774111014.492445,0.75,4,3992.50,54.12,1584.77,2118.84,0.00,0.048079,0.000000,70,0,0.003444,0.009539,51731718,34523591,0,0,45964,0,1,1 +1774111019.492612,0.80,4,3992.50,54.26,1579.14,2124.46,0.00,1.958723,0.000195,238,2,0.002746,0.007633,51731802,34523738,0,0,45967,0,1,1 +1774111024.496316,0.65,4,3992.50,54.23,1580.45,2123.16,0.00,3515832542313.211426,3515832542315.217285,21,0,0.002516,0.007638,51731879,34523877,0,0,45970,0,1,1 +1774111029.495137,0.75,4,3992.50,54.26,1579.23,2124.38,0.00,1.538742,0.028327,237,247,0.003001,0.008290,51731972,34524037,0,0,45972,0,1,1 +1774111034.496716,0.80,4,3992.50,54.26,1579.23,2124.38,0.00,3517326740290.690918,3517326740292.152344,70,0,0.004082,0.010702,51732093,34524246,0,0,45975,0,1,1 +1774111039.496264,1.00,4,3992.50,54.74,1564.19,2143.32,0.00,71324.051186,92799.826632,6061990,1652821,0.002885,0.007730,51732187,34524399,0,0,45977,0,1,1 +1774111044.492398,0.75,4,3992.50,54.53,1568.66,2134.96,0.00,3521159284542.263184,3521159263049.855469,238,2,0.003506,0.009628,51732297,34524589,0,0,45979,0,1,1 +1774111049.496632,0.85,4,3992.50,54.53,1568.70,2134.91,0.00,71255.316374,92713.002787,6061990,1652875,0.003418,0.009513,51732401,34524771,0,0,45982,0,1,1 +1774111054.496335,0.65,4,3992.50,54.57,1567.09,2136.52,0.00,3518646152890.058594,3518646131412.929199,238,2,0.002722,0.007624,51732483,34524917,0,0,45984,0,1,1 +1774111059.496276,39.34,4,3992.50,60.73,1330.58,2377.79,0.00,3518478449670.845215,3518478449672.804199,70,0,99.350835,0.048815,51743176,34527885,0,0,45987,0,1,1 +1774111064.496248,31.57,4,3992.50,60.54,1338.41,2370.10,0.00,0.126954,0.000000,199,0,121.976513,0.039679,51755905,34530597,0,0,45990,0,1,1 +1774111069.492989,29.86,4,3992.50,60.46,1341.20,2367.34,0.00,71359.889313,92852.099730,6061216,1652740,121.244672,0.029357,51768291,34532825,0,0,45992,0,1,1 +1774111074.491890,30.49,4,3992.50,60.70,1331.91,2376.47,0.00,3519210562921.176270,3519210541438.431152,21,0,119.995872,0.023814,51780432,34534528,0,0,45995,0,1,1 +1774111079.495609,31.25,4,3992.50,60.88,1325.13,2383.41,0.00,0.048011,0.000000,70,0,119.878398,0.035367,51792483,34537173,0,0,45997,0,1,1 +1774111084.491991,30.57,4,3992.50,60.84,1326.39,2382.18,0.00,71369.253277,92858.945708,6061990,1653044,119.669361,0.075572,51804984,34542952,0,0,45999,0,1,1 +1774111089.492432,30.26,4,3992.50,60.56,1337.35,2371.06,0.00,0.000000,0.012597,6061990,1653053,119.777637,0.089112,51817697,34549799,0,0,46002,0,1,1 +1774111094.495382,31.37,4,3992.50,60.47,1341.20,2367.37,0.00,3516362189905.673340,3516362168444.184082,70,0,119.316570,0.076738,51830428,34555444,0,0,46004,0,1,1 +1774111099.496145,10.99,4,3992.50,56.03,1516.49,2193.55,0.00,1.958490,0.000195,238,2,84.314614,0.039395,51839337,34558048,0,0,46007,0,1,1 +1774111104.496012,15.19,4,3992.50,55.06,1554.26,2155.58,0.00,3518530620944.774902,0.028126,237,247,18.132129,0.092420,51845524,34562605,0,0,46010,0,1,1 +1774111109.495156,14.45,4,3992.50,54.75,1566.23,2143.56,0.00,71328.488997,92808.384952,6062003,1654134,22.134863,0.096851,51852553,34567858,0,0,46012,0,1,1 +1774111114.495937,0.95,4,3992.50,54.43,1578.86,2130.93,0.00,0.000000,0.010545,6062003,1654144,0.004335,0.008398,51852667,34568023,0,0,46015,0,1,1 +1774111119.496497,0.80,4,3992.50,54.43,1578.89,2130.89,0.00,0.000000,0.023044,6062003,1654172,0.005274,0.008542,51852778,34568177,0,0,46017,0,1,1 +1774111124.493786,0.65,4,3992.50,54.43,1578.92,2130.88,0.00,3520345775403.616211,3520345753917.226562,21,0,0.004346,0.008402,51852893,34568342,0,0,46019,0,1,1 +1774111129.495918,1.05,4,3992.50,54.82,1563.44,2146.36,0.00,0.048026,0.000000,70,0,0.005033,0.010283,51853029,34568542,0,0,46022,0,1,1 +1774111134.496424,0.65,4,3992.50,54.41,1579.34,2130.44,0.00,71310.537629,92783.881361,6062003,1654429,0.005022,0.010289,51853164,34568742,0,0,46024,0,1,1 +1774111139.496053,0.65,4,3992.50,54.41,1579.64,2130.14,0.00,0.000000,0.216715,6062003,1654670,0.004349,0.008400,51853279,34568907,0,0,46027,0,1,1 +1774111144.496408,0.80,4,3992.50,54.21,1587.32,2122.46,0.00,3518187534826.807617,3518187513351.133301,237,247,0.005123,0.010424,51853422,34569116,0,0,46030,0,1,1 +1774111149.495965,0.65,4,3992.50,54.25,1585.61,2124.18,0.00,3518749228339.485840,3518749228340.996094,21,0,0.005048,0.010323,51853559,34569318,0,0,46032,0,1,1 +1774111154.496153,0.65,4,3992.50,54.23,1586.73,2123.06,0.00,1.538321,0.028319,237,247,0.004369,0.009051,51853676,34569488,0,0,46035,0,1,1 +1774111159.492124,1.20,4,3992.50,54.29,1583.88,2125.75,0.00,3521274609706.867676,3521274609708.379395,21,0,0.005039,0.010299,51853812,34569688,0,0,46037,0,1,1 +1774111164.496101,0.70,4,3992.50,54.30,1583.61,2125.95,0.00,0.000000,0.000000,21,0,0.005106,0.010310,51853953,34569890,0,0,46039,0,1,1 +1774111169.496415,0.75,4,3992.50,54.21,1587.28,2122.29,0.00,0.000000,0.000000,21,0,0.004361,0.008412,51854069,34570056,0,0,46042,0,1,1 +1774111174.496759,0.75,4,3992.50,54.26,1585.32,2124.24,0.00,0.048044,0.000000,70,0,0.005022,0.010290,51854204,34570256,0,0,46044,0,1,1 +1774111179.495905,0.70,4,3992.50,54.26,1585.02,2124.54,0.00,71325.837244,92809.603316,6061229,1654695,0.004924,0.010264,51854340,34570454,0,0,46047,0,1,1 +1774111184.491920,0.60,4,3992.50,54.26,1585.02,2124.53,0.00,3521243902069.169434,3521243880571.938477,70,0,0.004497,0.008439,51854458,34570622,0,0,46050,0,1,1 +1774111189.496129,1.15,4,3992.50,54.57,1573.29,2136.55,0.00,1.957142,0.000195,238,2,0.005031,0.010282,51854594,34570822,0,0,46052,0,1,1 +1774111194.494231,0.75,4,3992.50,54.39,1579.95,2129.60,0.00,3519773057790.497070,3519773057792.504395,21,0,0.004350,0.008403,51854709,34570987,0,0,46055,0,1,1 +1774111199.495076,0.70,4,3992.50,54.38,1580.52,2129.03,0.00,0.000000,0.000000,21,0,0.005009,0.010289,51854843,34571187,0,0,46057,0,1,1 +1774111204.496241,0.70,4,3992.50,54.38,1580.54,2129.00,0.00,0.048036,0.000000,70,0,0.004239,0.009905,51854964,34571378,0,0,46059,0,1,1 +1774111209.495886,26.65,4,3992.50,54.73,1562.29,2142.79,0.00,3518687045515.707520,0.000000,21,0,0.052052,102.763881,51858703,34582420,0,0,46062,0,1,1 +1774111214.491946,27.06,4,3992.50,54.33,1576.23,2127.27,0.00,71374.064349,93040.906194,6062020,1656229,0.018745,102.430082,51860027,34593232,0,0,46064,0,1,1 +1774111219.495815,14.31,4,3992.50,56.22,1504.81,2201.17,0.00,3515717038544.947266,3515717016909.908203,238,2,40.037460,0.032934,51864604,34594975,0,0,46067,0,1,1 +1774111224.495188,3.31,4,3992.50,55.55,1527.89,2174.86,0.00,71341.358493,93010.934148,6062175,1656610,0.016084,9.628829,51865424,34596439,0,0,46070,0,1,1 +1774111229.491940,9.80,4,3992.50,55.17,1541.43,2160.21,0.00,3520724495219.120117,3520724473538.670898,237,247,0.012512,30.473423,51866141,34599800,0,0,46072,0,1,1 +1774111234.491921,0.70,4,3992.50,54.96,1549.72,2151.93,0.00,3518450738028.439453,3518450738029.949707,21,0,0.002734,0.007633,51866224,34599947,0,0,46075,0,1,1 +1774111239.495967,0.75,4,3992.50,54.50,1568.02,2133.61,0.00,71272.642600,92956.233675,6061401,1656731,0.003438,0.009524,51866330,34600130,0,0,46077,0,1,1 +1774111244.496541,0.80,4,3992.50,54.81,1555.82,2145.80,0.00,3518033446029.426758,3518033424330.730957,70,0,0.002405,0.006964,51866407,34600262,0,0,46079,0,1,1 +1774111249.496274,1.10,4,3992.50,54.85,1555.28,2147.66,0.00,3518624555936.458496,0.000000,21,0,0.003138,0.008292,51866502,34600423,0,0,46082,0,1,1 +1774111254.496382,0.75,4,3992.50,54.84,1555.70,2147.18,0.00,0.048046,0.000000,70,0,0.003446,0.009555,51866608,34600607,0,0,46084,0,1,1 +1774111259.496822,0.70,4,3992.50,54.65,1563.34,2139.54,0.00,0.000000,0.000000,70,0,0.002746,0.007633,51866692,34600754,0,0,46087,0,1,1 +1774111264.496407,1.05,4,3992.50,54.68,1562.11,2140.77,0.00,1.490456,0.028323,237,247,0.003434,0.009535,51866797,34600937,0,0,46090,0,1,1 +1774111269.494241,0.70,4,3992.50,54.68,1562.11,2140.76,0.00,0.468660,3519962618475.529297,238,2,0.003632,0.009723,51866918,34601132,0,0,46092,0,1,1 +1774111274.492322,0.80,4,3992.50,54.74,1559.68,2143.20,0.00,71355.685010,93075.300824,6061401,1656833,0.002928,0.007793,51867014,34601291,0,0,46095,0,1,1 +1774111279.491909,1.20,4,3992.50,54.64,1563.34,2139.25,0.00,3518727873148.686035,3518727851436.105957,237,247,0.003446,0.009525,51867120,34601473,0,0,46097,0,1,1 +1774111284.493243,0.70,4,3992.50,54.64,1563.12,2139.23,0.00,0.000000,0.000000,237,247,0.003432,0.010165,51867225,34601659,0,0,46099,0,1,1 +1774111289.496573,20.58,4,3992.50,60.94,1320.27,2386.01,0.00,0.468145,3516094989631.369629,238,2,27.228389,0.027187,51870395,34603165,0,0,46102,0,1,1 +1774111294.496482,35.28,4,3992.50,60.87,1323.37,2383.37,0.00,3518501420124.709961,3518501420126.716797,21,0,118.176834,0.048215,51882816,34606541,0,0,46104,0,1,1 +1774111299.496578,30.01,4,3992.50,60.87,1323.49,2383.29,0.00,71328.952956,93038.032353,6061401,1657025,120.187662,0.091030,51895503,34613554,0,0,46107,0,1,1 +1774111304.492042,31.20,4,3992.50,60.55,1336.09,2370.64,0.00,3521631797811.864746,3521631776082.610840,70,0,118.302567,0.109354,51908276,34621977,0,0,46110,0,1,1 +1774111309.496389,31.26,4,3992.50,60.78,1325.17,2379.87,0.00,71272.412349,92959.102474,6062175,1657323,120.096236,0.114413,51921305,34630540,0,0,46112,0,1,1 +1774111314.495584,30.61,4,3992.50,60.62,1330.42,2373.30,0.00,3519004018834.781250,3519003997123.780273,238,2,118.819250,0.114850,51934177,34639146,0,0,46115,0,1,1 +1774111319.492274,30.11,4,3992.50,60.88,1320.34,2383.39,0.00,3520767552113.962891,0.028144,237,247,119.678264,0.111763,51947079,34647779,0,0,46117,0,1,1 +1774111324.496386,30.82,4,3992.50,60.74,1325.71,2377.98,0.00,71274.270705,92963.593885,6062175,1657366,119.102106,0.115404,51959969,34656523,0,0,46119,0,1,1 +1774111329.494659,29.12,4,3992.50,60.84,1321.91,2381.89,0.00,0.000782,0.006154,6062176,1657380,119.239904,0.115110,51972852,34665298,0,0,46122,0,1,1 +1774111334.491892,1.40,4,3992.50,55.58,1527.75,2176.05,0.00,0.154773,0.095268,6062190,1657401,44.903221,0.047809,51977738,34668689,0,0,46124,0,1,1 +1774111339.496556,3.91,4,3992.50,54.84,1556.52,2147.27,0.00,3515157904388.379395,3515157882702.838379,199,0,2.021936,0.020043,51978597,34669351,0,0,46127,0,1,1 +1774111344.495928,16.76,4,3992.50,54.41,1581.67,2130.17,0.00,1.832066,0.000195,238,2,22.137649,0.101210,51985837,34674679,0,0,46130,0,1,1 +1774111349.496054,11.22,4,3992.50,54.72,1569.60,2142.23,0.00,3518348250964.190430,3518348250966.022461,199,0,16.104530,0.078328,51991126,34678763,0,0,46132,0,1,1 +1774111354.493938,1.25,4,3992.50,55.48,1539.71,2172.10,0.00,3519927087013.174316,0.000000,21,0,0.005390,0.011008,51991270,34678971,0,0,46134,0,1,1 +1774111359.495988,0.70,4,3992.50,54.91,1561.95,2149.89,0.00,2.006013,0.000195,238,2,0.005089,0.010119,51991405,34679172,0,0,46137,0,1,1 +1774111364.496405,0.70,4,3992.50,54.79,1566.78,2145.05,0.00,3518144267784.220215,3518144267786.227051,21,0,0.005022,0.010290,51991540,34679372,0,0,46139,0,1,1 +1774111369.496072,1.05,4,3992.50,54.82,1562.56,2146.14,0.00,0.048050,0.000000,70,0,0.004344,0.008408,51991655,34679538,0,0,46142,0,1,1 +1774111374.491902,0.70,4,3992.50,54.80,1562.82,2145.38,0.00,0.000000,0.000000,70,0,0.005039,0.010299,51991791,34679738,0,0,46144,0,1,1 +1774111379.492001,0.70,4,3992.50,54.81,1562.34,2145.84,0.00,0.000000,0.000000,70,0,0.005167,0.010450,51991937,34679949,0,0,46147,0,1,1 +1774111384.491903,0.65,4,3992.50,54.73,1565.25,2142.94,0.00,1.958828,0.000195,238,2,0.003891,0.007164,51992038,34680092,0,0,46150,0,1,1 +1774111389.496053,0.65,4,3992.50,54.74,1565.01,2143.16,0.00,3515518857150.280273,3515518857152.237305,70,0,0.004790,0.009649,51992166,34680280,0,0,46152,0,1,1 +1774111394.495573,0.90,4,3992.50,54.75,1564.55,2143.64,0.00,71341.396692,93050.812091,6062190,1659116,0.007892,0.012232,51992350,34680509,0,0,46155,0,1,1 +1774111399.496108,1.96,4,3992.50,54.51,1574.57,2134.06,0.00,3518060599522.700195,3518060577817.696289,70,0,0.004418,0.008437,51992470,34680677,0,0,46157,0,1,1 +1774111404.491968,0.70,4,3992.50,54.50,1574.17,2133.77,0.00,3521352195498.913086,0.000000,21,0,0.005993,0.010994,51992610,34680882,0,0,46159,0,1,1 +1774111409.492257,0.85,4,3992.50,54.48,1575.12,2132.82,0.00,1.538290,0.028319,237,247,0.005010,0.010300,51992744,34681083,0,0,46162,0,1,1 +1774111414.496576,0.65,4,3992.50,54.47,1575.14,2132.80,0.00,3515400723853.909180,3515400723855.370117,70,0,0.004332,0.009026,51992858,34681251,0,0,46164,0,1,1 +1774111419.491957,0.85,4,3992.50,54.42,1577.15,2130.79,0.00,1.960600,0.000195,238,2,0.005052,0.010310,51992995,34681452,0,0,46167,0,1,1 +1774111424.494633,0.70,4,3992.50,54.45,1575.95,2132.00,0.00,3516554903944.429199,3516554903946.386719,70,0,0.005032,0.010295,51993131,34681653,0,0,46170,0,1,1 +1774111429.492213,0.90,4,3992.50,54.48,1572.13,2132.93,0.00,3520140966967.559082,0.000000,21,0,0.004350,0.008394,51993246,34681817,0,0,46172,0,1,1 +1774111434.496216,0.80,4,3992.50,54.45,1572.97,2131.95,0.00,0.174860,0.000000,199,0,0.005026,0.010278,51993382,34682017,0,0,46174,0,1,1 +1774111439.491911,0.60,4,3992.50,54.42,1574.30,2130.62,0.00,3521468493892.623535,0.000000,21,0,0.005090,0.010384,51993522,34682223,0,0,46177,0,1,1 +1774111444.491896,0.70,4,3992.50,54.42,1574.32,2130.60,0.00,0.000000,0.000000,21,0,0.003730,0.008140,51993625,34682379,0,0,46179,0,1,1 +1774111449.495403,20.92,4,3992.50,54.56,1565.78,2136.03,0.00,71280.476336,93025.047461,6061416,1659575,0.036379,82.272197,51996066,34691327,0,0,46182,0,1,1 +1774111454.494646,29.42,4,3992.50,57.88,1434.48,2266.21,0.00,0.000000,62.469910,6061416,1660008,0.044317,119.594566,51999480,34703915,0,0,46184,0,1,1 +1774111459.491915,3.81,4,3992.50,54.97,1549.25,2152.16,0.00,3520359452361.990723,3520359430527.785156,21,0,0.004850,3.216303,51999678,34704461,0,0,46187,0,1,1 +1774111464.491939,14.00,4,3992.50,59.44,1375.53,2327.24,0.00,0.000000,0.000000,21,0,39.063047,0.026951,52004036,34705947,0,0,46190,0,1,1 +1774111469.496468,1.20,4,3992.50,55.35,1535.80,2166.95,0.00,0.174842,0.000000,199,0,1.005140,0.006550,52004259,34706086,0,0,46192,0,1,1 +1774111474.496848,11.14,4,3992.50,54.72,1558.61,2142.46,0.00,3518169898334.149414,0.000000,21,0,0.024564,40.069980,52005769,34710723,0,0,46195,0,1,1 +1774111479.496405,0.75,4,3992.50,54.54,1565.55,2135.51,0.00,1.538515,0.028323,237,247,0.003436,0.009538,52005874,34710906,0,0,46197,0,1,1 +1774111484.493690,0.80,4,3992.50,54.46,1568.95,2132.12,0.00,3520348780799.868164,3520348780801.379395,21,0,0.002761,0.008272,52005959,34711056,0,0,46199,0,1,1 +1774111489.496722,1.05,4,3992.50,54.91,1552.05,2149.83,0.00,2.005620,0.000195,238,2,0.003419,0.009528,52006063,34711239,0,0,46202,0,1,1 +1774111494.495188,0.75,4,3992.50,54.89,1552.60,2149.14,0.00,71371.076865,93308.162465,6062361,1661344,0.003472,0.009558,52006171,34711423,0,0,46204,0,1,1 +1774111499.495850,0.80,4,3992.50,54.89,1552.61,2149.12,0.00,3517971145668.874023,3517971123741.422852,238,2,0.002754,0.007640,52006256,34711571,0,0,46207,0,1,1 +1774111504.495931,1.05,4,3992.50,54.88,1553.24,2148.49,0.00,3518380473588.704102,3518380473590.710938,21,0,0.003433,0.009534,52006361,34711754,0,0,46210,0,1,1 +1774111509.492126,0.90,4,3992.50,54.87,1553.25,2148.48,0.00,71401.406907,93358.864792,6061587,1661212,0.003499,0.009563,52006471,34711938,0,0,46212,0,1,1 +1774111514.495119,0.95,4,3992.50,54.87,1553.27,2148.47,0.00,3516332857760.784180,3516332835833.155273,21,0,0.002858,0.007753,52006564,34712093,0,0,46215,0,1,1 +1774111519.496346,1.35,4,3992.50,55.00,1548.40,2153.34,0.00,0.048035,0.000000,70,0,0.003626,0.009679,52006682,34712287,0,0,46217,0,1,1 +1774111524.496731,1.05,4,3992.50,54.92,1551.42,2150.30,0.00,3518165772542.936035,0.000000,21,0,0.002060,0.005722,52006745,34712397,0,0,46219,0,1,1 +1774111529.492465,0.90,4,3992.50,54.92,1551.43,2150.30,0.00,2.008550,0.000195,238,2,0.002762,0.007640,52006830,34712544,0,0,46222,0,1,1 +1774111534.496808,1.05,4,3992.50,54.92,1551.44,2150.29,0.00,3515384280433.619141,3515384280435.624512,21,0,0.003438,0.009524,52006936,34712727,0,0,46224,0,1,1 +1774111539.491949,40.83,4,3992.50,60.96,1319.70,2386.78,0.00,1.539875,0.028348,237,247,68.572974,0.039273,52014416,34714946,0,0,46227,0,1,1 +1774111544.496598,30.35,4,3992.50,60.74,1328.35,2378.28,0.00,0.000000,0.000000,237,247,120.058174,0.025339,52026883,34716587,0,0,46230,0,1,1 +1774111549.496275,29.19,4,3992.50,60.92,1321.50,2385.00,0.00,3518665181087.545410,3518665181089.055664,21,0,120.178104,0.033994,52039249,34719043,0,0,46232,0,1,1 +1774111554.495897,30.56,4,3992.50,60.83,1324.52,2381.55,0.00,0.048051,0.000000,70,0,120.181865,0.039137,52051702,34721942,0,0,46235,0,1,1 +1774111559.497344,29.85,4,3992.50,60.75,1326.57,2378.53,0.00,1.958223,0.000195,238,2,119.930816,0.027466,52063956,34723960,0,0,46237,0,1,1 +1774111564.495954,30.08,4,3992.50,61.06,1315.37,2390.65,0.00,3519415607827.935547,3519415607829.942871,21,0,118.996942,0.030515,52076119,34726191,0,0,46239,0,1,1 +1774111569.493674,31.91,4,3992.50,60.86,1323.20,2382.88,0.00,0.000000,0.000000,21,0,119.622321,0.029940,52088464,34728176,0,0,46242,0,1,1 +1774111574.492337,30.56,4,3992.50,60.86,1323.15,2382.88,0.00,0.175047,0.000000,199,0,119.597191,0.030754,52100661,34730411,0,0,46244,0,1,1 +1774111579.492921,18.78,4,3992.50,60.84,1324.29,2381.85,0.00,71342.679626,93277.565003,6062362,1661823,118.346770,0.027966,52112622,34732528,0,0,46247,0,1,1 +1774111584.496266,1.35,4,3992.50,55.40,1532.16,2168.85,0.00,3516085072115.102539,3516085050190.489258,238,2,0.006851,0.011216,52112808,34732761,0,0,46250,0,1,1 +1774111589.495212,16.28,4,3992.50,55.27,1537.23,2163.79,0.00,71360.276727,93308.541641,6061603,1662162,20.188957,0.105705,52119744,34737982,0,0,46252,0,1,1 +1774111594.496337,13.74,4,3992.50,55.22,1539.07,2161.88,0.00,3517645879680.381348,3517645857742.175293,237,247,20.073044,0.084890,52126003,34742722,0,0,46255,0,1,1 +1774111599.493440,1.05,4,3992.50,54.57,1564.51,2136.48,0.00,0.468729,3520476577310.498047,238,2,0.004887,0.009654,52126132,34742909,0,0,46257,0,1,1 +1774111604.495971,0.80,4,3992.50,54.46,1568.58,2132.39,0.00,3516657051761.660645,3516657051763.666504,21,0,0.005032,0.010285,52126268,34743109,0,0,46259,0,1,1 +1774111609.493417,1.05,4,3992.50,54.51,1567.45,2134.03,0.00,0.000000,0.000000,21,0,0.005025,0.010306,52126403,34743310,0,0,46262,0,1,1 +1774111614.496648,0.70,4,3992.50,54.32,1574.44,2126.65,0.00,0.174887,0.000000,199,0,0.004333,0.009028,52126517,34743478,0,0,46264,0,1,1 +1774111619.493762,0.90,4,3992.50,54.32,1574.45,2126.63,0.00,3520469218787.500000,0.000000,70,0,0.005013,0.010306,52126651,34743679,0,0,46267,0,1,1 +1774111624.491897,0.90,4,3992.50,54.15,1581.12,2119.95,0.00,1.490888,0.028331,237,247,0.005024,0.010304,52126786,34743880,0,0,46270,0,1,1 +1774111629.492029,0.95,4,3992.50,54.11,1582.57,2118.52,0.00,0.000000,0.000000,237,247,0.004482,0.008553,52126912,34744055,0,0,46272,0,1,1 +1774111634.491916,1.00,4,3992.50,54.15,1581.14,2119.95,0.00,71351.429708,93292.247596,6062377,1663482,0.005642,0.011410,52127061,34744278,0,0,46275,0,1,1 +1774111639.495945,1.30,4,3992.50,54.44,1569.00,2131.36,0.00,3515604203899.077637,3515604181977.932129,21,0,0.005031,0.010257,52127197,34744476,0,0,46277,0,1,1 +1774111644.496378,0.85,4,3992.50,54.53,1563.48,2135.01,0.00,71341.069543,93282.135167,6061603,1663295,0.004423,0.008454,52127317,34744645,0,0,46279,0,1,1 +1774111649.491922,1.81,4,3992.50,54.50,1564.68,2133.82,0.00,0.000000,0.023067,6061603,1663306,0.005040,0.010310,52127453,34744846,0,0,46282,0,1,1 +1774111654.496191,0.85,4,3992.50,54.34,1570.91,2127.60,0.00,3515435537040.365723,3515435515116.099121,21,0,0.004332,0.008383,52127567,34745010,0,0,46284,0,1,1 +1774111659.491988,0.95,4,3992.50,54.19,1577.02,2121.49,0.00,0.048087,0.000000,70,0,0.005428,0.011374,52127715,34745233,0,0,46287,0,1,1 +1774111664.496240,0.90,4,3992.50,54.23,1575.36,2123.16,0.00,3515447879417.919922,0.000000,21,0,0.005051,0.010300,52127853,34745435,0,0,46290,0,1,1 +1774111669.496745,1.30,4,3992.50,54.43,1573.19,2131.10,0.00,71344.142437,93281.025581,6062377,1663744,0.005560,0.008894,52127990,34745613,0,0,46292,0,1,1 +1774111674.495925,0.90,4,3992.50,54.50,1570.53,2133.75,0.00,3519013841965.905762,3519013820023.210938,21,0,0.005023,0.010292,52128125,34745813,0,0,46294,0,1,1 +1774111679.496501,0.95,4,3992.50,54.16,1584.00,2120.30,0.00,0.048041,0.000000,70,0,0.003773,0.008830,52128231,34745977,0,0,46297,0,1,1 +1774111684.496378,22.64,4,3992.50,54.67,1560.18,2140.63,0.00,71348.956459,93345.288216,6061603,1663907,0.034256,87.138688,52130567,34755570,0,0,46299,0,1,1 +1774111689.496105,31.61,4,3992.50,55.15,1538.93,2159.29,0.00,4.109501,123.309348,6062377,1664909,0.027665,117.982153,52132569,34768134,0,0,46302,0,1,1 +1774111694.496380,2.76,4,3992.50,55.23,1535.64,2162.56,0.00,3518243923595.832031,0.010644,6061621,1664707,0.031647,0.016675,52132846,34768472,0,0,46304,0,1,1 +1774111699.496188,13.18,4,3992.50,55.12,1543.48,2158.02,0.00,3518572128257.958984,3518572106139.474121,21,0,40.047884,0.027936,52137444,34770017,0,0,46307,0,1,1 +1774111704.496552,11.17,4,3992.50,54.40,1569.68,2129.75,0.00,1.538267,0.028318,237,247,0.023909,40.066266,52138940,34774544,0,0,46310,0,1,1 +1774111709.491945,0.90,4,3992.50,54.41,1569.21,2130.21,0.00,71432.226809,93614.152865,6062495,1665640,0.003424,0.009533,52139044,34774726,0,0,46312,0,1,1 +1774111714.491946,0.70,4,3992.50,54.41,1568.96,2130.46,0.00,0.000000,0.003906,6062495,1665643,0.002747,0.007633,52139128,34774873,0,0,46315,0,1,1 +1774111719.496120,0.95,4,3992.50,54.41,1568.97,2130.45,0.00,3515502874174.962402,3515502874179.041992,6061721,1665397,0.003430,0.009516,52139233,34775055,0,0,46317,0,1,1 +1774111724.495879,1.15,4,3992.50,54.66,1559.32,2140.09,0.00,3518606865262.486328,3518606843097.303223,70,0,0.003446,0.009525,52139339,34775237,0,0,46319,0,1,1 +1774111729.491999,1.35,4,3992.50,55.01,1545.81,2153.63,0.00,0.127052,0.000000,199,0,0.002799,0.007701,52139427,34775388,0,0,46322,0,1,1 +1774111734.491992,1.05,4,3992.50,54.78,1554.71,2144.72,0.00,0.000000,0.000000,199,0,0.003466,0.009532,52139535,34775571,0,0,46324,0,1,1 +1774111739.496237,0.85,4,3992.50,54.79,1554.29,2145.15,0.00,71303.146160,93456.688061,6061721,1665480,0.003481,0.009576,52139644,34775757,0,0,46327,0,1,1 +1774111744.496808,1.00,4,3992.50,54.60,1561.70,2137.73,0.00,3518035232954.708984,3518035210783.064453,238,2,0.002872,0.008444,52139738,34775919,0,0,46330,0,1,1 +1774111749.496521,0.90,4,3992.50,54.60,1561.71,2137.72,0.00,0.000000,0.000000,238,2,0.003627,0.009682,52139856,34776113,0,0,46332,0,1,1 +1774111754.496292,6.27,4,3992.50,55.02,1530.78,2154.03,0.00,71369.299942,93714.681165,6062500,1666799,0.000458,0.001297,52139870,34776140,0,0,46335,0,1,1 +1774111759.492853,3.91,4,3992.50,54.84,1539.29,2147.05,0.00,3520858607318.171387,3520858584960.443359,21,0,0.000229,0.000654,52139877,34776154,0,0,46337,0,1,1 +1774111764.492987,4.62,4,3992.50,54.59,1544.89,2137.45,0.00,1.538338,0.028320,237,248,0.000000,0.000020,52139877,34776156,0,0,46339,0,1,1 +1774111769.495260,8.07,4,3992.50,54.60,1546.48,2137.77,0.00,3516838948363.291992,3516838948364.801270,21,0,0.001815,0.001685,52139912,34776198,0,0,46342,0,1,1 +1774111774.496278,1.05,4,3992.50,54.66,1544.28,2139.97,0.00,0.000000,0.000000,21,0,0.000008,0.000028,52139913,34776201,0,0,46344,0,1,1 +1774111779.496031,11.56,4,3992.50,56.54,1474.51,2213.54,0.00,1.538455,0.028322,237,250,0.001504,0.002902,52139937,34776243,0,0,46347,0,1,1 +1774111784.491940,0.75,4,3992.50,55.69,1507.67,2180.38,0.00,71425.840133,94735.527039,6062601,1672426,0.000000,0.000030,52139937,34776246,0,0,46350,0,1,1 +1774111789.491924,1.00,4,3992.50,55.39,1536.01,2168.64,0.00,3518448114370.699219,3518448091079.516113,238,2,0.000458,0.001287,52139951,34776272,0,0,46352,0,1,1 +1774111794.496467,43.19,4,3992.50,60.97,1312.99,2387.08,0.00,71302.287714,94577.154103,6062619,1672578,92.458056,0.048864,52150002,34779510,0,0,46355,0,1,1 +1774111799.495755,31.37,4,3992.50,61.11,1308.00,2392.59,0.00,3518937694436.766113,3518937671139.445801,21,0,120.214466,0.105271,52162907,34787497,0,0,46357,0,1,1 +1774111804.491894,29.97,4,3992.50,60.79,1320.83,2380.00,0.00,0.175135,0.000000,199,0,118.281454,0.094065,52175516,34794582,0,0,46359,0,1,1 +1774111809.495112,30.49,4,3992.50,60.69,1324.61,2376.25,0.00,3516174057206.422852,0.000000,70,0,120.115739,0.094874,52188416,34801733,0,0,46362,0,1,1 +1774111814.491886,30.31,4,3992.50,60.60,1328.23,2372.62,0.00,0.000000,0.000000,70,0,119.075343,0.113287,52201233,34810327,0,0,46364,0,1,1 +1774111819.491896,30.55,4,3992.50,60.67,1325.35,2375.47,0.00,3518430020730.619629,0.000000,21,0,119.398361,0.112377,52214152,34818967,0,0,46367,0,1,1 +1774111824.495378,31.54,4,3992.50,60.82,1319.51,2381.32,0.00,71315.373454,94597.506358,6061860,1672490,119.316685,0.115814,52227049,34827882,0,0,46370,0,1,1 +1774111829.496395,30.73,4,3992.50,60.64,1326.53,2374.32,0.00,3517721315706.100586,3517721292410.490723,238,2,118.978062,0.116792,52239960,34836634,0,0,46372,0,1,1 +1774111834.496445,13.52,4,3992.50,55.97,1509.73,2191.18,0.00,3518402183187.459473,3518402183189.466309,21,0,97.762346,0.093139,52250539,34843828,0,0,46375,0,1,1 +1774111839.496397,1.25,4,3992.50,54.80,1555.33,2145.56,0.00,0.175002,0.000000,199,0,0.006667,0.010227,52250695,34844026,0,0,46377,0,1,1 +1774111844.495403,15.93,4,3992.50,55.11,1543.05,2157.79,0.00,3519136979417.798828,0.000000,21,0,18.168184,0.092141,52256865,34848571,0,0,46379,0,1,1 +1774111849.496387,12.20,4,3992.50,55.10,1525.78,2157.35,0.00,0.000000,0.000000,21,0,10.008758,0.038596,52259783,34850843,0,0,46382,0,1,1 +1774111854.496416,3.48,4,3992.50,54.92,1531.55,2150.07,0.00,0.048047,0.000000,70,0,0.000360,0.000348,52259790,34850852,0,0,46384,0,1,1 +1774111859.496826,6.33,4,3992.50,54.82,1541.43,2146.41,0.00,3518148591230.803223,0.000000,21,0,0.005769,0.002143,52259893,34850929,0,0,46387,0,1,1 +1774111864.495686,7.75,4,3992.50,54.77,1544.01,2144.49,0.00,0.175040,0.000000,199,0,0.000672,0.000257,52259904,34850939,0,0,46390,0,1,1 +1774111869.496410,0.70,4,3992.50,54.62,1549.86,2138.68,0.00,3517927925493.107422,0.000000,21,0,0.000000,0.000020,52259904,34850941,0,0,46392,0,1,1 +1774111874.491928,5.87,4,3992.50,54.63,1549.45,2138.89,0.00,0.000000,0.000000,21,0,0.000795,0.000549,52259919,34850955,0,0,46395,0,1,1 +1774111879.491895,10.28,4,3992.50,55.12,1532.77,2158.15,0.00,0.175001,0.000000,199,0,0.003099,0.001883,52259978,34850997,0,0,46397,0,1,1 +1774111884.496764,3.96,4,3992.50,56.36,1484.22,2206.77,0.00,71297.062502,96260.495960,6062201,1683105,0.000920,0.000558,52260003,34851018,0,0,46399,0,1,1 +1774111889.496647,0.90,4,3992.50,55.86,1503.92,2187.06,0.00,3518519534910.702637,3518519509922.548828,21,0,0.000000,0.000674,52260003,34851025,0,0,46402,0,1,1 +1774111894.492038,5.18,4,3992.50,55.36,1533.40,2167.66,0.00,2.008688,0.000195,238,2,2.019892,0.009798,52260729,34851541,0,0,46404,0,1,1 +1774111899.496688,7.01,4,3992.50,54.83,1554.12,2146.80,0.00,71298.362023,96265.257629,6062201,1683614,10.047583,0.042144,52263902,34853774,0,0,46407,0,1,1 +1774111904.496505,1.00,4,3992.50,54.88,1552.42,2148.50,0.00,3518565142214.698242,3518565117223.676758,238,2,0.007310,0.010424,52264076,34853989,0,0,46410,0,1,1 +1774111909.496413,1.25,4,3992.50,54.92,1542.72,2150.40,0.00,3518502504548.510742,0.028126,237,263,0.005052,0.009787,52264207,34854177,0,0,46412,0,1,1 +1774111914.491953,0.65,4,3992.50,54.84,1546.06,2147.04,0.00,0.000000,0.000000,237,263,0.005040,0.010310,52264343,34854378,0,0,46415,0,1,1 +1774111919.491913,1.00,4,3992.50,54.66,1553.20,2139.91,0.00,0.000000,0.000000,237,263,0.005022,0.010278,52264478,34854577,0,0,46417,0,1,1 +1774111924.496668,0.65,4,3992.50,54.68,1552.25,2140.85,0.00,71297.346230,96263.509222,6062203,1683920,0.004332,0.008382,52264592,34854741,0,0,46419,0,1,1 +1774111929.492547,1.05,4,3992.50,54.22,1570.16,2122.90,0.00,0.001564,0.053951,6062205,1683975,0.008075,0.613900,52264853,34855108,0,0,46422,0,1,1 +1774111934.496382,29.36,4,3992.50,54.72,1547.32,2142.46,0.00,3515740810416.773926,3515740785447.474609,21,0,0.045899,113.084539,52268160,34867253,0,0,46424,0,1,1 +1774111939.491901,24.66,4,3992.50,54.88,1536.11,2148.67,0.00,0.175157,0.000000,199,0,0.019866,91.415853,52269498,34876915,0,0,46427,0,1,1 +1774111944.491907,5.12,4,3992.50,54.31,1544.54,2126.26,0.00,3518433265423.020996,0.000000,21,0,0.003514,0.005770,52269583,34877027,0,0,46430,0,1,1 +1774111949.492011,3.82,4,3992.50,55.24,1512.15,2162.84,0.00,71369.340887,96852.572352,6063017,1687181,0.001011,0.002723,52269608,34877072,0,0,46432,0,1,1 +1774111954.491912,6.33,4,3992.50,54.71,1532.16,2142.17,0.00,3518507269104.492676,3518507243618.709961,237,264,0.002840,0.000680,52269643,34877097,0,0,46435,0,1,1 +1774111959.495500,2.77,4,3992.50,54.89,1525.31,2149.02,0.00,0.468121,3515913961896.073242,238,2,0.000630,0.001725,52269663,34877134,0,0,46437,0,1,1 +1774111964.497446,3.57,4,3992.50,54.99,1518.81,2153.06,0.00,3517068176728.541992,3517068176730.548340,21,0,0.000000,0.000020,52269663,34877136,0,0,46439,0,1,1 +1774111969.496300,8.01,4,3992.50,54.87,1524.36,2148.11,0.00,71383.091220,97659.549936,6062245,1691127,0.001952,0.004542,52269714,34877213,0,0,46442,0,1,1 +1774111974.491987,2.86,4,3992.50,54.91,1521.90,2149.96,0.00,3521475245209.568848,3521475218916.274414,199,0,0.000820,0.000434,52269731,34877226,0,0,46444,0,1,1 +1774111979.496080,1.05,4,3992.50,54.61,1537.43,2138.03,0.00,1.830337,0.000195,238,2,0.002207,0.000415,52269753,34877243,0,0,46447,0,1,1 +1774111984.496485,25.70,4,3992.50,59.02,1387.20,2310.59,0.00,3518152553752.346680,0.028123,237,269,80.117399,0.045574,52278558,34880214,0,0,46450,0,1,1 +1774111989.492805,0.95,4,3992.50,54.21,1575.34,2122.42,0.00,71438.996254,97862.153179,6063279,1692445,0.008073,0.010377,52278760,34880444,0,0,46452,0,1,1 +1774111994.496437,0.95,4,3992.50,54.21,1575.39,2122.39,0.00,3515883738883.882324,3515883712500.842773,21,0,0.007255,0.011624,52278937,34880658,0,0,46454,0,1,1 +1774111999.496053,1.15,4,3992.50,54.20,1571.10,2122.03,0.00,0.175013,0.000000,199,0,0.005035,0.010301,52279073,34880859,0,0,46457,0,1,1 +1774112004.496203,10.85,4,3992.50,53.95,1580.77,2112.34,0.00,1.363338,0.028319,237,269,0.025892,40.069935,52280634,34885427,0,0,46459,0,1,1 +1774112009.493844,0.95,4,3992.50,53.96,1580.36,2112.76,0.00,71420.126834,97870.635965,6063280,1692946,0.004400,0.009396,52280737,34885595,0,0,46462,0,1,1 +1774112014.496606,0.90,4,3992.50,53.80,1586.78,2106.34,0.00,3516494122581.975586,3516494096158.053711,238,2,0.003439,0.009527,52280843,34885778,0,0,46464,0,1,1 +1774112019.493578,0.70,4,3992.50,53.79,1587.06,2106.06,0.00,3520569610854.887207,0.028142,237,269,0.002761,0.007638,52280928,34885925,0,0,46467,0,1,1 +1774112024.495620,0.85,4,3992.50,53.79,1587.07,2106.06,0.00,3517001081583.809570,3517001081585.318848,21,0,0.003432,0.009530,52281033,34886108,0,0,46470,0,1,1 +1774112029.496482,1.40,4,3992.50,54.18,1571.59,2121.24,0.00,0.048039,0.000000,70,0,0.003407,0.010166,52281136,34886294,0,0,46472,0,1,1 +1774112034.496328,0.65,4,3992.50,54.18,1571.29,2121.46,0.00,0.126957,0.000000,199,0,0.002747,0.007633,52281220,34886441,0,0,46475,0,1,1 +1774112039.495200,6.33,4,3992.50,54.77,1528.78,2144.38,0.00,71399.771471,98082.704036,6062506,1693998,0.001432,0.004376,52281267,34886523,0,0,46477,0,1,1 +1774112044.491902,2.42,4,3992.50,55.32,1507.73,2165.77,0.00,0.000000,95.265188,6062506,1694435,0.000050,0.000243,52281271,34886530,0,0,46479,0,1,1 +1774112049.491920,5.48,4,3992.50,54.87,1522.90,2148.27,0.00,4.109263,243.090945,6063280,1695926,0.000858,0.002093,52281305,34886580,0,0,46482,0,1,1 +1774112054.492055,6.68,4,3992.50,55.29,1509.73,2164.55,0.00,3518341949770.800293,276.587433,6062506,1697077,0.001040,0.002655,52281341,34886638,0,0,46484,0,1,1 +1774112059.491919,5.83,4,3992.50,57.60,1421.02,2255.12,0.00,3518532745182.222168,3518532717889.849609,21,0,0.001144,0.003842,52281376,34886705,0,0,46487,0,1,1 +1774112064.496416,6.96,4,3992.50,56.08,1479.15,2195.84,0.00,1.536996,0.028295,237,282,0.000701,0.002585,52281398,34886749,0,0,46490,0,1,1 +1774112069.496193,4.86,4,3992.50,54.98,1522.51,2152.60,0.00,3518594547762.897461,3518594547764.407715,21,0,0.000695,0.001929,52281420,34886788,0,0,46492,0,1,1 +1774112074.495897,5.37,4,3992.50,62.05,1264.61,2429.40,0.00,0.048050,0.000000,70,0,1.609340,0.009801,52281905,34887170,0,0,46494,0,1,1 +1774112079.492054,39.07,4,3992.50,61.42,1289.11,2404.84,0.00,3521143423097.779785,0.000000,21,0,119.261870,0.042244,52294324,34889995,0,0,46497,0,1,1 +1774112084.495988,29.21,4,3992.50,60.72,1316.37,2377.22,0.00,0.000000,0.000000,21,0,121.074911,0.032918,52306794,34892552,0,0,46499,0,1,1 +1774112089.496135,29.64,4,3992.50,60.84,1311.72,2381.95,0.00,71385.860821,99441.267491,6063288,1702057,120.163469,0.032490,52319149,34894846,0,0,46502,0,1,1 +1774112094.496055,29.11,4,3992.50,60.70,1317.21,2376.37,0.00,3518493377797.084473,3518493349740.402832,21,0,120.167661,0.040045,52331417,34897761,0,0,46504,0,1,1 +1774112099.497063,29.31,4,3992.50,60.41,1328.54,2365.05,0.00,0.000000,0.000000,21,0,120.140506,0.028745,52343688,34899834,0,0,46507,0,1,1 +1774112104.495807,29.25,4,3992.50,60.50,1324.98,2368.55,0.00,71405.905949,99469.288626,6063289,1702125,119.595903,0.032937,52355935,34902143,0,0,46510,0,1,1 +1774112109.496467,29.25,4,3992.50,60.50,1324.69,2368.87,0.00,0.000000,0.027926,6063289,1702158,118.746214,0.047639,52367917,34905643,0,0,46512,0,1,1 +1774112114.494605,29.75,4,3992.50,60.67,1318.00,2375.55,0.00,3519747585982.211914,3519747557915.354492,70,0,119.807862,0.043418,52380020,34908907,0,0,46515,0,1,1 +1774112119.491956,6.33,4,3992.50,55.82,1518.76,2185.66,0.00,0.127020,0.000000,199,0,64.927699,0.028895,52386741,34910795,0,0,46517,0,1,1 +1774112124.493235,2.01,4,3992.50,55.46,1532.32,2171.29,0.00,3517536937514.359863,0.000000,70,0,0.008904,0.010683,52386930,34911011,0,0,46519,0,1,1 +1774112129.496271,14.49,4,3992.50,54.84,1556.36,2147.23,0.00,0.000000,0.000000,70,0,20.114922,0.092664,52393455,34915740,0,0,46522,0,1,1 +1774112134.496334,8.78,4,3992.50,55.08,1527.98,2156.61,0.00,3518392681512.731934,0.000000,21,0,2.013361,0.008551,52394118,34916225,0,0,46524,0,1,1 +1774112139.493527,9.01,4,3992.50,54.93,1536.37,2150.66,0.00,2.007963,0.000195,238,2,0.000000,0.000030,52394118,34916228,0,0,46527,0,1,1 +1774112144.491939,4.42,4,3992.50,54.96,1532.25,2151.87,0.00,71408.715562,100271.063966,6063304,1707059,0.000091,0.000651,52394123,34916242,0,0,46530,0,1,1 +1774112149.493179,1.05,4,3992.50,55.01,1530.32,2153.80,0.00,3517564526820.836914,3517564497976.818848,21,0,0.000000,0.000020,52394123,34916244,0,0,46532,0,1,1 +1774112154.492604,1.36,4,3992.50,55.01,1530.32,2153.80,0.00,1.538556,0.028324,237,288,0.000000,0.000030,52394123,34916247,0,0,46535,0,1,1 +1774112159.496319,2.82,4,3992.50,55.11,1528.46,2157.68,0.00,3515825083040.161133,3515825083041.495117,199,0,0.003354,0.001152,52394183,34916283,0,0,46537,0,1,1 +1774112164.493455,7.61,4,3992.50,54.55,1550.98,2135.92,0.00,1.364160,0.028337,237,290,0.001080,0.000694,52394210,34916306,0,0,46539,0,1,1 +1774112169.492317,1.25,4,3992.50,54.91,1535.28,2149.75,0.00,3519238086820.012695,3519238086821.522949,21,0,0.000025,0.000705,52394212,34916315,0,0,46542,0,1,1 +1774112174.491911,7.42,4,3992.50,54.71,1557.16,2142.08,0.00,0.175014,0.000000,199,0,8.051926,0.036896,52396822,34918175,0,0,46544,0,1,1 +1774112179.491936,7.34,4,3992.50,54.56,1557.61,2135.97,0.00,71387.578925,100662.080789,6063309,1709999,10.063505,0.050005,52400160,34920679,0,0,46547,0,1,1 +1774112184.496209,0.75,4,3992.50,54.56,1557.34,2136.30,0.00,3515433335405.709961,3515433306156.229004,21,0,0.005018,0.010279,52400295,34920879,0,0,46550,0,1,1 +1774112189.495285,0.65,4,3992.50,54.55,1557.94,2135.69,0.00,71401.308523,100681.339324,6063309,1710168,0.003866,0.007124,52400394,34921019,0,0,46552,0,1,1 +1774112194.495389,3.01,4,3992.50,54.81,1547.81,2145.81,0.00,3518363981560.339355,3518363952286.154297,199,0,0.017905,9.827788,52401412,34922515,0,0,46555,0,1,1 +1774112199.496397,30.35,4,3992.50,54.84,1541.79,2147.05,0.00,1.363104,0.028315,237,293,0.043931,119.151776,52404537,34934985,0,0,46557,0,1,1 +1774112204.496649,20.31,4,3992.50,54.71,1542.54,2142.04,0.00,3518260217172.220215,3518260217173.730469,21,0,0.023426,76.111409,52406149,34943115,0,0,46559,0,1,1 +1774112209.491978,1.15,4,3992.50,54.40,1554.63,2129.95,0.00,71454.858984,100962.300676,6063312,1711516,0.006326,0.010113,52406289,34943311,0,0,46562,0,1,1 +1774112214.491911,15.90,4,3992.50,56.27,1482.29,2203.07,0.00,16.586942,0.124513,6063417,1711633,40.064285,0.025377,52410616,34944762,0,0,46564,0,1,1 +1774112219.492005,0.95,4,3992.50,55.02,1531.11,2154.30,0.00,3518371268972.116211,0.018457,6062643,1711404,0.005081,0.010799,52410748,34944954,0,0,46567,0,1,1 +1774112224.491930,0.70,4,3992.50,54.62,1546.82,2138.59,0.00,0.000000,0.041993,6062643,1711455,0.005023,0.010301,52410883,34945155,0,0,46570,0,1,1 +1774112229.495943,7.70,4,3992.50,54.46,1541.40,2132.19,0.00,3515615433520.229492,3515615404076.273438,21,0,0.002797,0.004438,52410953,34945245,0,0,46572,0,1,1 +1774112234.492242,4.73,4,3992.50,55.09,1516.47,2156.73,0.00,0.000000,0.000000,21,0,0.001571,0.001669,52410983,34945281,0,0,46575,0,1,1 +1774112239.491938,4.20,4,3992.50,57.36,1429.37,2245.70,0.00,1.538472,0.028322,237,296,0.000262,0.001337,52410993,34945302,0,0,46577,0,1,1 +1774112244.496422,0.45,4,3992.50,56.03,1481.46,2193.60,0.00,3515285063311.246094,3515285063312.754883,21,0,0.000000,0.000020,52410993,34945304,0,0,46579,0,1,1 +1774112249.491984,4.93,4,3992.50,56.20,1473.00,2200.27,0.00,0.000000,0.000000,21,0,0.001272,0.001707,52411023,34945342,0,0,46582,0,1,1 +1774112254.495455,4.47,4,3992.50,55.25,1509.79,2163.21,0.00,1.537312,0.028301,237,299,0.002816,0.005108,52411094,34945438,0,0,46584,0,1,1 +1774112259.494566,5.68,4,3992.50,55.74,1491.01,2182.37,0.00,3519063255161.491699,3519063255162.954102,70,0,0.002067,0.003533,52411147,34945511,0,0,46587,0,1,1 +1774112264.491938,2.71,4,3992.50,54.45,1543.16,2131.72,0.00,0.000000,0.000000,70,0,0.000075,0.000070,52411152,34945517,0,0,46590,0,1,1 +1774112269.491988,1.96,4,3992.50,55.72,1513.68,2181.75,0.00,3518401440110.431152,0.000000,21,0,0.004172,0.008244,52411264,34945679,0,0,46592,0,1,1 +1774112274.495942,0.75,4,3992.50,55.10,1538.28,2157.15,0.00,1.537163,0.028298,237,305,0.004413,0.010055,52411388,34945873,0,0,46595,0,1,1 +1774112279.491909,0.70,4,3992.50,55.10,1538.30,2157.13,0.00,3521277346536.159668,3521277346537.671387,21,0,0.004370,0.008422,52411504,34946039,0,0,46597,0,1,1 +1774112284.496607,0.65,4,3992.50,55.07,1539.36,2156.07,0.00,0.048002,0.000000,70,0,0.005026,0.010289,52411640,34946240,0,0,46599,0,1,1 +1774112289.491938,0.70,4,3992.50,55.07,1539.37,2156.05,0.00,1.960620,0.000195,238,2,0.004340,0.008407,52411754,34946405,0,0,46602,0,1,1 +1774112294.494730,11.59,4,3992.50,54.74,1552.05,2143.38,0.00,0.000000,0.000000,238,2,0.026199,40.047356,52413306,34950953,0,0,46604,0,1,1 +1774112299.491921,1.40,4,3992.50,55.23,1536.99,2162.46,0.00,71438.733514,102163.578916,6062647,1718840,0.004289,0.010737,52413429,34951157,0,0,46607,0,1,1 +1774112304.491987,0.70,4,3992.50,54.91,1545.42,2150.04,0.00,3518390617323.866699,3518390586616.691895,238,2,0.003441,0.009542,52413535,34951341,0,0,46610,0,1,1 +1774112309.494012,0.65,4,3992.50,54.67,1555.01,2140.44,0.00,3517012699159.650391,3517012699161.607910,70,0,0.003667,0.008772,52413621,34951493,0,0,46612,0,1,1 +1774112314.496454,0.80,4,3992.50,54.63,1556.44,2139.02,0.00,1.957833,0.000195,238,2,0.003432,0.009680,52413726,34951676,0,0,46614,0,1,1 +1774112319.496114,0.65,4,3992.50,54.64,1556.21,2139.25,0.00,3518676337421.396973,3518676337423.355957,70,0,0.003001,0.008255,52413819,34951834,0,0,46617,0,1,1 +1774112324.493877,7.99,4,3992.50,55.78,1491.88,2183.91,0.00,71436.627818,102395.270345,6063421,1720487,0.001160,0.003221,52413855,34951898,0,0,46619,0,1,1 +1774112329.492136,7.58,4,3992.50,54.94,1526.86,2151.08,0.00,3519663054422.644043,3519663023467.073242,70,0,0.000445,0.001297,52413868,34951925,0,0,46622,0,1,1 +1774112334.493345,8.09,4,3992.50,57.11,1441.71,2235.86,0.00,71387.386122,102907.149295,6063421,1723663,0.000249,0.000680,52413877,34951941,0,0,46624,0,1,1 +1774112339.492062,7.01,4,3992.50,56.11,1481.71,2197.01,0.00,0.000000,294.511542,6063421,1725281,0.001079,0.002783,52413918,34952006,0,0,46627,0,1,1 +1774112344.492447,9.44,4,3992.50,54.90,1527.08,2149.55,0.00,3518166204204.746582,3518166172383.412598,238,2,0.001300,0.003323,52413963,34952079,0,0,46630,0,1,1 +1774112349.496409,3.96,4,3992.50,54.86,1527.53,2147.89,0.00,71342.058088,103624.803303,6062647,1727671,0.000472,0.001299,52413978,34952106,0,0,46632,0,1,1 +1774112354.494430,7.77,4,3992.50,54.70,1533.70,2141.54,0.00,0.000000,315.714038,6062647,1729380,0.000916,0.002565,52414006,34952157,0,0,46635,0,1,1 +1774112359.496464,5.30,4,3992.50,55.91,1490.49,2189.13,0.00,0.000000,236.129728,6062647,1730594,0.000237,0.000661,52414014,34952172,0,0,46637,0,1,1 +1774112364.496233,1.25,4,3992.50,55.32,1529.37,2165.94,0.00,4.110248,0.233702,6063422,1731059,0.001828,0.001980,52414050,34952213,0,0,46639,0,1,1 +1774112369.494997,34.83,4,3992.50,61.22,1298.14,2397.09,0.00,3519307208761.098633,3519307175898.715820,21,0,78.135684,0.038786,52422439,34954631,0,0,46642,0,1,1 +1774112374.496380,32.34,4,3992.50,61.28,1296.03,2399.12,0.00,0.048034,0.000000,70,0,119.735272,0.046868,52434719,34957872,0,0,46644,0,1,1 +1774112379.497234,33.20,4,3992.50,64.55,1165.99,2527.12,0.00,71391.785702,104244.402644,6063182,1730878,118.746468,0.027871,52446994,34959872,0,0,46647,0,1,1 +1774112384.495888,30.38,4,3992.50,64.03,1187.97,2507.00,0.00,3519384634657.090332,3519384601790.015625,70,0,119.597689,0.031689,52459303,34962160,0,0,46650,0,1,1 +1774112389.496717,30.10,4,3992.50,64.34,1176.04,2518.95,0.00,3517853874835.772461,0.000000,21,0,119.147507,0.041482,52471609,34965025,0,0,46652,0,1,1 +1774112394.495922,30.07,4,3992.50,60.65,1320.54,2374.43,0.00,1.538624,0.028325,237,341,119.183668,0.040222,52483877,34968097,0,0,46655,0,1,1 +1774112399.496375,30.13,4,3992.50,60.62,1321.61,2373.22,0.00,3518118957729.874023,3518118957731.383789,21,0,119.154800,0.043219,52496135,34971223,0,0,46657,0,1,1 +1774112404.493497,30.65,4,3992.50,61.02,1305.79,2389.09,0.00,0.000000,0.000000,21,0,119.238817,0.033030,52508477,34973293,0,0,46659,0,1,1 +1774112409.496477,17.07,4,3992.50,54.40,1564.98,2129.94,0.00,0.174896,0.000000,199,0,112.497271,0.044348,52520224,34976492,0,0,46662,0,1,1 +1774112414.496018,1.40,4,3992.50,54.34,1567.51,2127.39,0.00,3518760693479.841797,0.000000,21,0,0.005671,0.008789,52520363,34976674,0,0,46664,0,1,1 +1774112419.492234,12.83,4,3992.50,54.49,1543.55,2133.39,0.00,2.008356,0.000195,238,2,0.022009,0.011887,52520723,34976945,0,0,46667,0,1,1 +1774112424.495297,1.05,4,3992.50,55.42,1506.88,2170.00,0.00,3516283097989.452148,3516283097991.283203,199,0,0.000008,0.000038,52520724,34976949,0,0,46670,0,1,1 +1774112429.496283,5.27,4,3992.50,54.42,1548.13,2130.53,0.00,3517743613967.561523,0.000000,21,0,0.000229,0.000653,52520731,34976963,0,0,46672,0,1,1 +1774112434.496398,1.10,4,3992.50,54.42,1547.60,2130.85,0.00,2.006790,0.000195,238,2,0.000000,0.000030,52520731,34976966,0,0,46675,0,1,1 +1774112439.496641,9.77,4,3992.50,55.96,1487.55,2191.08,0.00,71399.161197,105179.680665,6063597,1736317,0.007428,0.005468,52520862,34977083,0,0,46677,0,1,1 +1774112444.496392,0.90,4,3992.50,55.40,1509.49,2169.14,0.00,3518612707105.789551,3518612673322.438965,237,344,0.000000,0.000020,52520862,34977085,0,0,46679,0,1,1 +1774112449.494098,2.46,4,3992.50,55.33,1511.93,2166.15,0.00,71435.868171,105250.567449,6063597,1736521,0.001359,0.000755,52520883,34977105,0,0,46682,0,1,1 +1774112454.496394,7.53,4,3992.50,55.65,1515.94,2178.92,0.00,3516822079142.117188,3516822045358.443359,237,347,6.057211,0.031455,52522881,34978611,0,0,46684,0,1,1 +1774112459.495448,26.52,4,3992.50,55.12,1536.88,2157.95,0.00,3519103509605.784180,3519103509607.294922,21,0,40.206761,0.165695,52535216,34988025,0,0,46687,0,1,1 +1774112464.494056,11.01,4,3992.50,55.02,1540.67,2154.11,0.00,2.007395,0.000195,238,2,14.095870,0.066396,52539854,34991579,0,0,46690,0,1,1 +1774112469.495930,1.30,4,3992.50,54.61,1556.69,2138.07,0.00,3517118251551.983887,3517118251553.990234,21,0,0.004786,0.009112,52539975,34991752,0,0,46692,0,1,1 +1774112474.495882,0.80,4,3992.50,54.44,1563.46,2131.33,0.00,0.175002,0.000000,199,0,0.004348,0.008400,52540090,34991917,0,0,46695,0,1,1 +1774112479.497381,6.92,4,3992.50,55.21,1533.79,2161.57,0.00,3517382307941.192871,0.000000,70,0,0.024252,23.807957,52541527,34994801,0,0,46697,0,1,1 +1774112484.491989,30.37,4,3992.50,55.63,1511.75,2178.00,0.00,3522235472792.134766,0.000000,21,0,0.030010,120.336890,52543642,35007447,0,0,46699,0,1,1 +1774112489.496533,17.23,4,3992.50,54.58,1550.85,2136.75,0.00,0.000000,0.000000,21,0,0.011979,61.035749,52544420,35013970,0,0,46702,0,1,1 +1774112494.495917,12.61,4,3992.50,59.36,1364.98,2323.97,0.00,71425.142525,105507.476350,6063725,1740258,26.852759,0.030158,52547595,35015497,0,0,46704,0,1,1 +1774112499.496429,1.25,4,3992.50,56.41,1480.45,2208.54,0.00,3518076744983.024414,3518076710906.870605,237,347,13.221827,0.009500,52549040,35015870,0,0,46707,0,1,1 +1774112504.495604,1.00,4,3992.50,55.28,1524.71,2164.26,0.00,3519017777138.385254,3519017777139.847656,70,0,0.005720,0.012544,52549190,35016096,0,0,46710,0,1,1 +1774112509.496453,1.30,4,3992.50,54.95,1537.20,2151.50,0.00,3517840065382.005371,0.000000,21,0,0.005034,0.010953,52549326,35016300,0,0,46712,0,1,1 +1774112514.496271,5.03,4,3992.50,54.81,1527.71,2146.09,0.00,2.006909,0.000195,238,2,0.002344,0.004351,52549386,35016385,0,0,46714,0,1,1 +1774112519.496274,6.87,4,3992.50,54.61,1534.03,2138.07,0.00,3518435037304.626465,0.028125,237,354,0.001252,0.002324,52549415,35016425,0,0,46717,0,1,1 +1774112524.495874,10.54,4,3992.50,54.88,1526.66,2148.82,0.00,3518718859102.836426,3518718859104.298828,70,0,0.001049,0.001080,52549439,35016451,0,0,46719,0,1,1 +1774112529.496391,0.95,4,3992.50,54.78,1529.97,2144.95,0.00,71413.019640,106369.472766,6064503,1745884,0.000008,0.000038,52549440,35016455,0,0,46722,0,1,1 +1774112534.491981,0.65,4,3992.50,54.65,1535.39,2139.54,0.00,3521543596717.255859,3521543561724.857422,237,354,0.000600,0.001144,52549452,35016480,0,0,46724,0,1,1 +1774112539.491905,0.95,4,3992.50,54.65,1538.86,2139.61,0.00,3518490477420.093750,3518490477421.603516,21,0,0.000062,0.000724,52549456,35016491,0,0,46727,0,1,1 +1774112544.496647,8.14,4,3992.50,54.87,1529.45,2148.22,0.00,0.048001,0.000000,70,0,0.001495,0.002324,52549493,35016540,0,0,46730,0,1,1 +1774112549.491937,1.55,4,3992.50,55.39,1526.18,2168.65,0.00,71487.755832,106888.483901,6064503,1748339,0.003015,0.004632,52549568,35016635,0,0,46732,0,1,1 +1774112554.495802,0.75,4,3992.50,55.07,1538.82,2156.01,0.00,3515719394259.134766,3515719358919.125000,21,0,0.004328,0.008391,52549682,35016800,0,0,46734,0,1,1 +1774112559.496416,0.70,4,3992.50,54.87,1546.71,2148.12,0.00,71411.689521,106774.719035,6064503,1748391,0.004737,0.009463,52549809,35016987,0,0,46737,0,1,1 +1774112564.492028,0.80,4,3992.50,54.87,1546.73,2148.10,0.00,3521527071107.694336,3521527035707.752930,237,359,0.004352,0.009042,52549924,35017155,0,0,46739,0,1,1 +1774112569.493674,1.20,4,3992.50,54.86,1551.37,2148.09,0.00,3517279749496.256836,3517279749497.766602,21,0,0.005021,0.010297,52550059,35017356,0,0,46742,0,1,1 +1774112574.496391,0.90,4,3992.50,54.86,1551.32,2148.03,0.00,0.000000,0.000000,21,0,0.005020,0.010272,52550194,35017555,0,0,46744,0,1,1 +1774112579.491974,0.90,4,3992.50,54.86,1551.33,2148.02,0.00,2.008610,0.000195,238,2,0.004391,0.008428,52550312,35017722,0,0,46747,0,1,1 +1774112584.495895,1.00,4,3992.50,54.86,1551.35,2148.00,0.00,3515680215971.508789,3515680215973.514160,21,0,0.005044,0.010292,52550449,35017923,0,0,46750,0,1,1 +1774112589.496440,0.80,4,3992.50,54.86,1551.38,2147.98,0.00,71408.565523,106776.299550,6063729,1748162,0.005034,0.010277,52550585,35018122,0,0,46752,0,1,1 +1774112594.495008,1.90,4,3992.50,54.86,1551.39,2147.96,0.00,0.000000,0.004103,6063729,1748166,0.007206,0.010977,52550748,35018319,0,0,46755,0,1,1 +1774112599.496033,1.40,4,3992.50,54.87,1555.90,2148.39,0.00,4.108435,0.078109,6064503,1748549,0.005021,0.010288,52550883,35018519,0,0,46757,0,1,1 +1774112604.496175,0.85,4,3992.50,54.69,1563.12,2141.18,0.00,3518337930888.156738,3518337895521.545410,70,0,0.005061,0.010311,52551021,35018721,0,0,46759,0,1,1 +1774112609.495397,8.87,4,3992.50,55.88,1495.74,2187.75,0.00,0.126973,0.000000,199,0,0.003078,0.004885,52551079,35018808,0,0,46762,0,1,1 +1774112614.493393,4.37,4,3992.50,54.94,1530.64,2151.02,0.00,3519848150573.727051,0.000000,21,0,0.002101,0.002542,52551127,35018862,0,0,46764,0,1,1 +1774112619.491984,3.36,4,3992.50,55.01,1526.70,2153.77,0.00,71436.474661,107369.544935,6063731,1751466,0.002048,0.002064,52551171,35018907,0,0,46767,0,1,1 +1774112624.496378,7.26,4,3992.50,57.48,1430.44,2250.50,0.00,3515348215754.132324,3515348179862.724609,21,0,0.000633,0.001442,52551188,35018936,0,0,46770,0,1,1 +1774112629.495393,3.16,4,3992.50,55.56,1507.07,2175.45,0.00,1.538682,0.028326,237,366,0.000466,0.001295,52551203,35018963,0,0,46772,0,1,1 +1774112634.496819,8.78,4,3992.50,55.17,1518.06,2160.21,0.00,3517434033178.013672,3517434033179.475098,70,0,0.002099,0.002538,52551251,35019017,0,0,46775,0,1,1 +1774112639.496420,11.24,4,3992.50,56.05,1485.73,2194.42,0.00,1.490451,0.028323,237,374,0.003687,0.006552,52551347,35019149,0,0,46777,0,1,1 +1774112644.496232,1.30,4,3992.50,56.18,1499.97,2199.50,0.00,3518569575357.944824,3518569575359.455078,21,0,0.002613,0.004984,52551417,35019246,0,0,46779,0,1,1 +1774112649.497397,4.06,4,3992.50,54.90,1550.03,2149.34,0.00,71403.843213,108607.184310,6064518,1759270,0.017329,14.831773,52552425,35021253,0,0,46782,0,1,1 +1774112654.492013,9.06,4,3992.50,54.13,1580.19,2119.26,0.00,3522229515644.211426,3522229478390.085938,238,2,0.012484,25.276539,52553116,35024136,0,0,46784,0,1,1 +1774112659.494190,1.35,4,3992.50,54.33,1569.88,2127.07,0.00,3516906248947.624512,3516906248949.582520,70,0,0.002745,0.007630,52553200,35024283,0,0,46787,0,1,1 +1774112664.496523,1.05,4,3992.50,54.15,1576.75,2120.14,0.00,71387.444791,108616.113794,6064706,1759721,0.003444,0.009530,52553306,35024466,0,0,46790,0,1,1 +1774112669.496706,0.90,4,3992.50,54.15,1576.75,2120.13,0.00,3518307808689.373535,3518307771444.705566,70,0,0.003458,0.009524,52553413,35024648,0,0,46792,0,1,1 +1774112674.495414,1.05,4,3992.50,54.15,1576.77,2120.13,0.00,1.490717,0.028328,237,377,0.002735,0.007635,52553496,35024795,0,0,46795,0,1,1 +1774112679.491894,0.90,4,3992.50,54.15,1576.77,2120.12,0.00,3520915687765.933594,3520915687767.444824,21,0,0.003444,0.009539,52553602,35024978,0,0,46797,0,1,1 +1774112684.492026,1.00,4,3992.50,54.15,1576.77,2120.12,0.00,0.000000,0.000000,21,0,0.003458,0.009555,52553709,35025162,0,0,46799,0,1,1 +1774112689.492002,1.20,4,3992.50,54.34,1570.75,2127.71,0.00,0.000000,0.000000,21,0,0.002810,0.007695,52553798,35025313,0,0,46802,0,1,1 +1774112694.496658,1.15,4,3992.50,54.34,1570.58,2127.69,0.00,0.000000,0.000000,21,0,0.003505,0.009608,52553909,35025501,0,0,46804,0,1,1 +1774112699.496431,1.00,4,3992.50,54.34,1570.58,2127.69,0.00,1.538449,0.028322,237,377,0.003589,0.009660,52554024,35025694,0,0,46807,0,1,1 +1774112704.496516,1.00,4,3992.50,54.14,1578.41,2119.87,0.00,0.468449,3518376901792.049316,238,2,0.002755,0.007641,52554109,35025842,0,0,46810,0,1,1 +1774112709.496226,0.90,4,3992.50,54.17,1577.28,2120.99,0.00,71422.944879,108679.252371,6064708,1759853,0.003421,0.009525,52554213,35026024,0,0,46812,0,1,1 +1774112714.496533,14.07,4,3992.50,60.43,1332.09,2366.00,0.00,3518220899867.348145,3518220862615.993164,237,377,8.820753,0.021956,52555511,35026980,0,0,46815,0,1,1 +1774112719.495329,35.89,4,3992.50,60.98,1311.14,2387.37,0.00,71436.460615,108699.257979,6064709,1759979,118.797579,0.032392,52567783,35028949,0,0,46817,0,1,1 +1774112724.491913,29.44,4,3992.50,60.52,1327.77,2369.38,0.00,3520842423497.404785,3520842386219.623047,21,0,118.647675,0.026736,52579973,35030637,0,0,46819,0,1,1 +1774112729.496207,29.03,4,3992.50,60.64,1322.95,2374.24,0.00,0.000000,0.000000,21,0,119.667628,0.032892,52592303,35032698,0,0,46822,0,1,1 +1774112734.496407,30.36,4,3992.50,60.76,1318.24,2378.88,0.00,1.538317,0.028319,237,377,119.170599,0.052048,52604617,35036447,0,0,46824,0,1,1 +1774112739.496026,29.60,4,3992.50,60.20,1340.09,2357.00,0.00,3518705614338.441406,3518705614339.951660,21,0,119.188684,0.064420,52617054,35041143,0,0,46827,0,1,1 +1774112744.496336,29.18,4,3992.50,60.36,1333.90,2363.23,0.00,71412.270111,108666.519174,6063937,1759711,119.366226,0.043454,52629448,35044303,0,0,46830,0,1,1 +1774112749.491946,29.44,4,3992.50,60.87,1313.36,2383.10,0.00,3521528586697.215820,3521528549407.743652,199,0,119.279770,0.048092,52641818,35047785,0,0,46832,0,1,1 +1774112754.495372,29.43,4,3992.50,60.43,1336.32,2366.05,0.00,3516028307568.943359,0.000000,21,0,119.536115,0.031198,52654103,35049848,0,0,46835,0,1,1 +1774112759.492006,5.22,4,3992.50,54.14,1582.64,2119.71,0.00,0.175118,0.000000,199,0,63.084557,0.017036,52660633,35050723,0,0,46837,0,1,1 +1774112764.496373,6.17,4,3992.50,54.56,1566.19,2136.15,0.00,1.830237,0.000195,238,2,4.113947,0.034178,52662199,35051921,0,0,46839,0,1,1 +1774112769.496093,18.08,4,3992.50,55.58,1526.31,2175.96,0.00,71438.244106,108680.235127,6065508,1761142,30.107050,0.132407,52672060,35059243,0,0,46842,0,1,1 +1774112774.496009,5.39,4,3992.50,54.69,1560.84,2141.40,0.00,3518496539177.081543,0.170120,6064958,1760893,6.042027,0.032748,52674080,35060782,0,0,46844,0,1,1 +1774112779.493264,1.56,4,3992.50,54.93,1548.59,2150.78,0.00,4.137330,0.270950,6065735,1761519,0.005727,0.012318,52674231,35061009,0,0,46847,0,1,1 +1774112784.495809,0.85,4,3992.50,54.87,1550.95,2148.34,0.00,3516647466010.964844,0.095459,6064961,1761262,0.004334,0.008395,52674345,35061174,0,0,46850,0,1,1 +1774112789.494250,1.10,4,3992.50,54.48,1566.04,2133.21,0.00,3519534208641.632812,3519534171389.450684,21,0,0.004312,0.008392,52674457,35061338,0,0,46852,0,1,1 +1774112794.496771,0.90,4,3992.50,54.46,1567.05,2132.23,0.00,0.000000,0.000000,21,0,0.005007,0.010283,52674591,35061538,0,0,46855,0,1,1 +1774112799.491994,0.75,4,3992.50,54.47,1566.61,2132.68,0.00,71502.421648,108778.867895,6064961,1761364,0.005002,0.010300,52674724,35061738,0,0,46857,0,1,1 +1774112804.491984,0.85,4,3992.50,54.35,1571.27,2128.01,0.00,0.000000,0.058887,6064961,1761406,0.003818,0.008308,52674834,35061905,0,0,46859,0,1,1 +1774112809.492918,1.05,4,3992.50,54.28,1570.71,2125.11,0.00,3517780109697.592285,3517780072463.603516,70,0,0.005021,0.010299,52674969,35062106,0,0,46862,0,1,1 +1774112814.496236,1.50,4,3992.50,53.96,1582.81,2112.83,0.00,0.126869,0.000000,199,0,0.005027,0.010279,52675105,35062306,0,0,46864,0,1,1 +1774112819.492047,0.70,4,3992.50,53.96,1582.82,2112.80,0.00,0.000000,0.000000,199,0,0.004365,0.008432,52675221,35062473,0,0,46867,0,1,1 +1774112824.492091,0.75,4,3992.50,54.22,1572.92,2122.72,0.00,1.831820,0.000195,238,2,0.005085,0.010340,52675360,35062677,0,0,46870,0,1,1 +1774112829.495976,0.70,4,3992.50,54.22,1572.68,2122.95,0.00,0.000000,0.000000,238,2,0.004561,0.009004,52675481,35062852,0,0,46872,0,1,1 +1774112834.496630,0.80,4,3992.50,54.04,1579.95,2115.69,0.00,3517976973061.668945,3517976973063.675781,21,0,0.006322,0.011434,52675624,35063065,0,0,46874,0,1,1 +1774112839.496453,1.15,4,3992.50,54.31,1569.85,2126.23,0.00,0.000000,0.000000,21,0,0.005023,0.010301,52675759,35063266,0,0,46877,0,1,1 +1774112844.496108,0.70,4,3992.50,54.23,1572.28,2123.34,0.00,1.538485,0.028322,237,377,0.004578,0.009643,52675881,35063444,0,0,46879,0,1,1 +1774112849.494106,0.80,4,3992.50,54.06,1579.13,2116.49,0.00,3519846970246.569336,3519846970248.032227,70,0,0.004783,0.009683,52676008,35063634,0,0,46882,0,1,1 +1774112854.497385,12.13,4,3992.50,54.42,1564.71,2130.50,0.00,3516131318009.954590,0.000000,21,0,0.033856,47.850808,52678252,35069062,0,0,46884,0,1,1 +1774112859.494204,29.90,4,3992.50,54.85,1544.59,2147.34,0.00,1.539358,0.028338,237,377,0.038996,118.247988,52681045,35081413,0,0,46887,0,1,1 +1774112864.491914,10.75,4,3992.50,54.75,1547.35,2143.42,0.00,71477.452750,108902.915597,6075803,1763333,0.014848,39.084983,52681886,35085685,0,0,46890,0,1,1 +1774112869.491902,14.21,4,3992.50,59.94,1337.89,2346.91,0.00,3518444868867.705566,3518444831460.813965,21,0,34.413178,0.026326,52685804,35087098,0,0,46892,0,1,1 +1774112874.491876,10.12,4,3992.50,55.10,1526.36,2157.16,0.00,71464.316525,108913.388302,6075356,1763574,5.678571,39.269378,52687899,35091633,0,0,46894,0,1,1 +1774112879.496620,1.51,4,3992.50,54.30,1557.07,2125.96,0.00,9.003078,0.092100,6082405,1764019,0.004410,0.811360,52688040,35091942,0,0,46897,0,1,1 +1774112884.494299,0.85,4,3992.50,54.32,1556.21,2126.82,0.00,3520071112179.669434,3520071074722.328125,21,0,0.003435,0.009529,52688145,35092124,0,0,46899,0,1,1 +1774112889.491915,0.70,4,3992.50,54.32,1556.19,2126.84,0.00,0.048070,0.000000,70,0,0.003443,0.009547,52688251,35092308,0,0,46902,0,1,1 +1774112894.496430,0.85,4,3992.50,54.33,1555.73,2127.30,0.00,3515262839360.690918,0.000000,21,0,0.005115,0.008279,52688367,35092458,0,0,46904,0,1,1 +1774112899.491998,1.05,4,3992.50,54.64,1546.90,2139.42,0.00,0.048090,0.000000,70,0,0.002545,0.007037,52688446,35092595,0,0,46907,0,1,1 +1774112904.496040,0.85,4,3992.50,54.51,1552.27,2134.04,0.00,71415.165406,108825.065291,6082405,1764074,0.003443,0.009526,52688552,35092778,0,0,46910,0,1,1 +1774112909.496666,0.90,4,3992.50,54.48,1553.40,2132.92,0.00,3517997251959.108398,3517997214523.644531,70,0,0.004355,0.010836,52688659,35092967,0,0,46912,0,1,1 +1774112914.492019,0.70,4,3992.50,54.49,1552.75,2133.57,0.00,71539.382012,109022.421140,6082405,1764179,0.002737,0.007640,52688742,35093114,0,0,46915,0,1,1 +1774112919.492144,0.70,4,3992.50,54.32,1559.75,2126.57,0.00,3518349578357.309570,3518349540908.075684,238,2,0.003578,0.009673,52688858,35093306,0,0,46917,0,1,1 +1774112924.496284,0.90,4,3992.50,54.35,1558.24,2128.08,0.00,71407.699529,108830.963332,6081631,1763809,0.003555,0.009617,52688971,35093496,0,0,46919,0,1,1 +1774112929.496318,1.15,4,3992.50,54.57,1552.95,2136.55,0.00,3518413698445.982422,3518413660993.983398,21,0,0.002755,0.007641,52689056,35093644,0,0,46922,0,1,1 +1774112934.496715,0.80,4,3992.50,54.31,1563.06,2126.43,0.00,71463.165504,108912.497521,6081631,1763843,0.003420,0.009523,52689160,35093826,0,0,46924,0,1,1 +1774112939.495658,15.20,4,3992.50,60.67,1314.32,2375.31,0.00,3519181176775.477539,3519181139315.251465,21,0,14.432757,0.023688,52691038,35094936,0,0,46927,0,1,1 +1774112944.492134,34.32,4,3992.50,60.29,1333.57,2360.41,0.00,71523.352563,108998.064231,6082405,1764319,118.249681,0.058880,52703236,35099103,0,0,46930,0,1,1 +1774112949.496480,29.78,4,3992.50,60.60,1321.54,2372.56,0.00,3515382145880.950684,3515382108465.163086,21,0,119.460655,0.040580,52715503,35102262,0,0,46932,0,1,1 +1774112954.492726,29.39,4,3992.50,60.61,1320.92,2373.19,0.00,1.539535,0.028342,237,377,118.853503,0.044950,52727660,35105552,0,0,46935,0,1,1 +1774112959.492290,30.06,4,3992.50,60.81,1313.30,2380.95,0.00,3518743726647.737793,3518743726649.200195,70,0,119.377861,0.048528,52739977,35108967,0,0,46937,0,1,1 +1774112964.496733,29.06,4,3992.50,60.37,1330.57,2363.60,0.00,3515314103295.800293,0.000000,21,0,118.859198,0.056291,52752085,35113021,0,0,46939,0,1,1 +1774112969.496828,28.95,4,3992.50,60.40,1329.56,2364.73,0.00,0.000000,0.000000,21,0,119.760175,0.046153,52764157,35116543,0,0,46942,0,1,1 +1774112974.492173,29.07,4,3992.50,60.61,1321.25,2372.96,0.00,2.008706,0.000195,238,2,118.673752,0.043920,52776281,35119714,0,0,46944,0,1,1 +1774112979.492492,29.01,4,3992.50,60.28,1333.95,2360.18,0.00,71462.276837,108914.575554,6081631,1764085,119.959434,0.050511,52788598,35123364,0,0,46947,0,1,1 +1774112984.491931,3.61,4,3992.50,54.41,1563.77,2130.46,0.00,3518831901794.034668,3518831864336.977051,199,0,57.892887,0.036073,52794677,35125637,0,0,46950,0,1,1 +1774112989.491935,5.42,4,3992.50,54.70,1522.49,2141.75,0.00,1.363378,0.028320,237,377,4.037931,0.030554,52796258,35126928,0,0,46952,0,1,1 +1774112994.495574,14.82,4,3992.50,54.56,1527.87,2136.27,0.00,0.000000,0.000000,237,377,22.123230,0.103685,52803459,35132421,0,0,46955,0,1,1 +1774112999.496367,10.66,4,3992.50,55.28,1499.61,2164.52,0.00,0.000000,0.000000,237,377,14.073089,0.055884,52807830,35135685,0,0,46957,0,1,1 +1774113004.496394,13.34,4,3992.50,54.80,1546.39,2145.47,0.00,3518418255866.249023,3518418255867.710938,70,0,0.052583,48.087354,52810782,35141241,0,0,46959,0,1,1 +1774113009.496036,30.65,4,3992.50,54.76,1542.21,2143.89,0.00,71478.273837,109067.197897,6082465,1766488,0.064647,122.185780,52815612,35153938,0,0,46962,0,1,1 +1774113014.496559,10.32,4,3992.50,54.85,1537.25,2147.49,0.00,3518068580323.838867,3518068542741.591797,21,0,0.016119,34.853932,52816614,35157746,0,0,46964,0,1,1 +1774113019.497373,12.26,4,3992.50,59.91,1339.18,2345.55,0.00,0.048039,0.000000,70,0,20.637309,0.024520,52819161,35158880,0,0,46967,0,1,1 +1774113024.496517,2.61,4,3992.50,55.73,1502.84,2181.88,0.00,3519039990169.724121,0.000000,21,0,19.435783,0.010055,52821305,35159344,0,0,46970,0,1,1 +1774113029.492021,0.85,4,3992.50,55.04,1529.96,2154.75,0.00,0.048090,0.000000,70,0,0.005842,0.012660,52821464,35159576,0,0,46972,0,1,1 +1774113034.492415,0.70,4,3992.50,54.71,1542.73,2142.00,0.00,71483.140138,109101.015232,6081867,1766865,0.004781,0.009631,52821591,35159762,0,0,46974,0,1,1 +1774113039.493659,0.65,4,3992.50,54.70,1543.22,2141.50,0.00,4.108256,0.057017,6082641,1767282,0.004559,0.009064,52821712,35159942,0,0,46977,0,1,1 +1774113044.492269,1.05,4,3992.50,54.91,1534.86,2149.86,0.00,0.000000,18.849281,6082641,1767420,0.005011,0.010937,52821846,35160146,0,0,46979,0,1,1 +1774113049.496287,1.15,4,3992.50,55.34,1518.14,2166.57,0.00,0.000000,0.085381,6082641,1767456,0.004357,0.008424,52821962,35160313,0,0,46982,0,1,1 +1774113054.496830,0.80,4,3992.50,55.03,1530.01,2154.71,0.00,3518055673910.107422,3518055636278.342285,199,0,0.005034,0.010289,52822098,35160513,0,0,46984,0,1,1 +1774113059.496989,0.70,4,3992.50,55.03,1530.27,2154.45,0.00,71486.359508,109125.204844,6081867,1767190,0.004442,0.008475,52822219,35160684,0,0,46987,0,1,1 +1774113064.492023,0.75,4,3992.50,54.82,1538.31,2146.41,0.00,3521935256620.403320,3521935218943.104492,21,0,0.005023,0.009318,52822337,35160850,0,0,46990,0,1,1 +1774113069.496788,0.95,4,3992.50,54.82,1538.35,2146.37,0.00,2.004926,0.000195,238,2,0.004992,0.010281,52822470,35161050,0,0,46992,0,1,1 +1774113074.492066,0.75,4,3992.50,54.81,1538.82,2145.90,0.00,71558.502643,109231.999409,6082641,1767697,0.005110,0.010358,52822611,35161255,0,0,46995,0,1,1 +1774113079.494542,1.05,4,3992.50,54.96,1537.55,2152.00,0.00,3516695483403.562012,3516695445784.769043,237,377,0.004334,0.008386,52822725,35161419,0,0,46997,0,1,1 +1774113084.496918,0.70,4,3992.50,54.61,1546.80,2137.96,0.00,3516766089464.015625,3516766089465.477051,70,0,0.005007,0.010286,52822859,35161619,0,0,46999,0,1,1 +1774113089.496275,0.75,4,3992.50,54.61,1546.57,2138.20,0.00,71497.967505,109142.939848,6081867,1767398,0.005023,0.010302,52822994,35161820,0,0,47002,0,1,1 +1774113094.496853,0.70,4,3992.50,54.61,1546.59,2138.20,0.00,3518030666242.190918,3518030628606.279297,199,0,0.005150,0.008955,52823109,35161988,0,0,47004,0,1,1 +1774113099.496005,10.85,4,3992.50,54.19,1562.05,2121.54,0.00,1.363610,0.028325,237,377,0.026198,40.081491,52824864,35166728,0,0,47007,0,1,1 +1774113104.496121,0.60,4,3992.50,54.17,1562.55,2121.03,0.00,71489.740203,109158.532845,6082643,1768077,0.003433,0.009534,52824969,35166911,0,0,47010,0,1,1 +1774113109.494868,1.25,4,3992.50,54.67,1543.02,2140.51,0.00,3519319247721.115723,3519319210043.467773,70,0,0.002760,0.008269,52825054,35167061,0,0,47012,0,1,1 +1774113114.496262,0.80,4,3992.50,54.50,1549.68,2133.86,0.00,71468.851301,109130.730990,6081869,1767734,0.003440,0.009539,52825160,35167245,0,0,47015,0,1,1 +1774113119.496438,0.75,4,3992.50,54.54,1548.28,2135.26,0.00,3518313660770.661621,3518313623098.141113,237,377,0.003433,0.009524,52825265,35167427,0,0,47017,0,1,1 +1774113124.496129,0.65,4,3992.50,54.47,1550.75,2132.78,0.00,3518654509020.713867,3518654509022.224121,21,0,0.002772,0.007624,52825351,35167573,0,0,47019,0,1,1 +1774113129.495032,0.85,4,3992.50,54.52,1548.82,2134.71,0.00,71508.622017,109193.189653,6082643,1768189,0.003459,0.009567,52825458,35167758,0,0,47022,0,1,1 +1774113134.492080,0.75,4,3992.50,54.53,1548.60,2134.93,0.00,3520515525836.578613,3520515488136.013672,238,2,0.004085,0.010702,52825579,35167966,0,0,47024,0,1,1 +1774113139.492500,1.00,4,3992.50,54.70,1546.90,2141.54,0.00,71480.839317,109160.108229,6081870,1767830,0.002772,0.007664,52825665,35168115,0,0,47027,0,1,1 +1774113144.496311,0.75,4,3992.50,54.60,1549.88,2137.75,0.00,3515757348390.450684,3515757310738.727539,21,0,0.003626,0.009698,52825784,35168311,0,0,47030,0,1,1 +1774113149.491927,0.75,4,3992.50,54.61,1549.66,2137.96,0.00,0.000000,0.000000,21,0,0.003436,0.009533,52825889,35168493,0,0,47032,0,1,1 +1774113154.491925,0.75,4,3992.50,54.65,1547.96,2139.65,0.00,0.000000,0.000000,21,0,0.002759,0.007633,52825974,35168640,0,0,47035,0,1,1 +1774113159.492016,1.00,4,3992.50,54.50,1553.75,2133.86,0.00,0.048046,0.000000,70,0,0.005211,0.009416,52826088,35168814,0,0,47037,0,1,1 +1774113164.492532,39.39,4,3992.50,60.84,1311.57,2382.19,0.00,0.126940,0.000000,199,0,91.528479,0.042923,52835944,35171489,0,0,47039,0,1,1 +1774113169.491892,32.74,4,3992.50,60.97,1307.89,2387.13,0.00,71497.817972,109183.373724,6081870,1767964,119.385796,0.032347,52848402,35173854,0,0,47042,0,1,1 +1774113174.495713,31.03,4,3992.50,61.04,1306.23,2389.68,0.00,4.106139,0.073381,6082644,1768375,118.886521,0.059229,52860827,35178235,0,0,47044,0,1,1 +1774113179.493397,31.83,4,3992.50,60.65,1321.51,2374.41,0.00,3520068010948.225098,3520067973254.240234,21,0,119.835103,0.062576,52873331,35182874,0,0,47047,0,1,1 +1774113184.496443,31.35,4,3992.50,60.77,1316.63,2379.30,0.00,71445.317478,109103.012695,6081870,1768049,119.109519,0.067160,52885857,35187734,0,0,47050,0,1,1 +1774113189.496422,30.81,4,3992.50,60.66,1320.70,2375.15,0.00,3518452021150.098633,3518451983469.303223,21,0,119.582724,0.069488,52898390,35193057,0,0,47052,0,1,1 +1774113194.497375,30.72,4,3992.50,60.78,1316.22,2379.66,0.00,0.174967,0.000000,199,0,119.166736,0.089173,52911054,35199751,0,0,47055,0,1,1 +1774113199.492337,30.88,4,3992.50,60.68,1320.36,2375.60,0.00,1.364754,0.028349,237,377,119.309481,0.088986,52923702,35206244,0,0,47057,0,1,1 +1774113204.496672,14.26,4,3992.50,54.37,1571.40,2128.87,0.00,71425.515188,109075.180263,6081882,1768120,98.667366,0.060402,52934098,35210655,0,0,47059,0,1,1 +1774113209.496123,7.18,4,3992.50,54.83,1553.71,2146.55,0.00,3518823781530.287109,3518823743843.840332,237,377,8.053517,0.043641,52936784,35212734,0,0,47062,0,1,1 +1774113214.492249,20.77,4,3992.50,55.03,1539.55,2154.67,0.00,3521165295779.775391,3521165295781.286621,21,0,28.192553,0.126871,52945704,35219460,0,0,47064,0,1,1 +1774113219.496337,4.21,4,3992.50,54.93,1543.56,2150.65,0.00,0.048008,0.000000,70,0,4.030268,0.020219,52947136,35220407,0,0,47067,0,1,1 +1774113224.493733,1.30,4,3992.50,54.86,1546.46,2147.76,0.00,0.127019,0.000000,199,0,0.006676,0.012123,52947307,35220644,0,0,47070,0,1,1 +1774113229.497375,13.11,4,3992.50,55.24,1533.35,2162.70,0.00,3515875832163.054688,0.000000,21,0,0.028815,49.245570,52949212,35226173,0,0,47072,0,1,1 +1774113234.496400,30.63,4,3992.50,55.57,1513.99,2175.61,0.00,2.007227,0.000195,238,2,0.046043,118.204436,52952562,35238792,0,0,47075,0,1,1 +1774113239.491933,10.78,4,3992.50,55.12,1529.11,2158.20,0.00,3521583934292.015137,3521583934294.023926,21,0,0.031802,37.706788,52954731,35243090,0,0,47077,0,1,1 +1774113244.491995,8.02,4,3992.50,60.17,1332.13,2355.95,0.00,0.048046,0.000000,70,0,4.416186,0.014817,52955557,35243712,0,0,47079,0,1,1 +1774113249.496501,8.64,4,3992.50,56.00,1495.59,2192.39,0.00,3515269606471.300293,0.000000,21,0,35.624021,0.024904,52959267,35244915,0,0,47082,0,1,1 +1774113254.491982,0.80,4,3992.50,55.41,1518.69,2169.32,0.00,0.048090,0.000000,70,0,0.005052,0.010331,52959404,35245117,0,0,47084,0,1,1 +1774113259.492029,1.15,4,3992.50,55.30,1512.70,2164.97,0.00,71508.428975,109375.411913,6082052,1770999,0.005035,0.010300,52959540,35245318,0,0,47087,0,1,1 +1774113264.495952,0.85,4,3992.50,55.19,1516.93,2160.73,0.00,3515678776587.860840,3515678738750.208984,70,0,0.004332,0.008380,52959654,35245482,0,0,47090,0,1,1 +1774113269.496222,0.70,4,3992.50,55.11,1519.80,2157.87,0.00,71505.233322,109370.541104,6082052,1771018,0.005030,0.010298,52959790,35245683,0,0,47092,0,1,1 +1774113274.496635,0.70,4,3992.50,55.09,1520.71,2156.96,0.00,3518146461078.680664,3518146423212.991699,237,377,0.005060,0.010331,52959928,35245886,0,0,47095,0,1,1 +1774113279.496139,0.55,4,3992.50,54.68,1536.70,2140.97,0.00,0.468504,3518786442103.735352,238,2,0.003474,0.006344,52960018,35246012,0,0,47097,0,1,1 +1774113284.494462,0.80,4,3992.50,54.68,1536.70,2140.96,0.00,3519617563313.543457,3519617563315.550781,21,0,0.004443,0.008468,52960139,35246182,0,0,47099,0,1,1 +1774113289.496141,1.05,4,3992.50,54.86,1532.41,2148.02,0.00,2.006162,0.000195,238,2,0.004334,0.008397,52960253,35246347,0,0,47102,0,1,1 +1774113294.496667,0.75,4,3992.50,54.59,1541.28,2137.25,0.00,71499.625939,109365.216807,6082052,1771247,0.005097,0.010329,52960393,35246550,0,0,47104,0,1,1 +1774113299.495441,0.75,4,3992.50,54.67,1538.04,2140.49,0.00,0.000000,0.030769,6082052,1771286,0.004807,0.009644,52960522,35246737,0,0,47107,0,1,1 +1774113304.496549,1.91,4,3992.50,54.68,1537.84,2140.71,0.00,3517658208949.916016,3517658171090.528320,199,0,0.004572,0.009708,52960644,35246921,0,0,47110,0,1,1 +1774113309.496857,1.05,4,3992.50,54.68,1537.86,2140.69,0.00,3518220114296.344238,0.000000,70,0,0.005035,0.010290,52960780,35247121,0,0,47112,0,1,1 +1774113314.496162,0.75,4,3992.50,54.68,1537.87,2140.67,0.00,3518926551513.190918,0.000000,21,0,0.003705,0.008163,52960881,35247279,0,0,47115,0,1,1 +1774113319.496292,12.37,4,3992.50,54.49,1543.80,2133.34,0.00,1.538339,0.028320,237,377,0.030992,40.072113,52962880,35251875,0,0,47117,0,1,1 +1774113324.495960,1.00,4,3992.50,54.09,1559.26,2117.91,0.00,0.000000,0.000000,237,377,0.003421,0.009525,52962984,35252057,0,0,47119,0,1,1 +1774113329.495915,0.95,4,3992.50,54.63,1538.29,2138.88,0.00,3518468507066.467773,3518468507067.929688,70,0,0.002759,0.007633,52963069,35252204,0,0,47122,0,1,1 +1774113334.492876,1.05,4,3992.50,54.56,1541.11,2136.06,0.00,71552.596850,109475.570889,6082053,1771664,0.003443,0.009538,52963175,35252387,0,0,47124,0,1,1 +1774113339.496161,0.95,4,3992.50,54.57,1540.82,2136.35,0.00,3516127042610.327148,3516127004735.288574,70,0,0.003431,0.009528,52963280,35252570,0,0,47127,0,1,1 +1774113344.496385,1.00,4,3992.50,54.46,1544.98,2132.18,0.00,1.958701,0.000195,238,2,0.002746,0.007633,52963364,35252717,0,0,47130,0,1,1 +1774113349.496467,0.90,4,3992.50,54.41,1546.85,2130.31,0.00,3518379349836.635742,3518379349838.467773,199,0,0.003446,0.009524,52963470,35252899,0,0,47132,0,1,1 +1774113354.496823,1.30,4,3992.50,54.59,1543.67,2137.37,0.00,3518186988388.037109,0.000000,21,0,0.002110,0.005794,52963537,35253014,0,0,47135,0,1,1 +1774113359.491991,0.90,4,3992.50,54.57,1544.48,2136.59,0.00,0.175169,0.000000,199,0,0.003487,0.009596,52963646,35253200,0,0,47137,0,1,1 +1774113364.496408,0.90,4,3992.50,54.48,1548.16,2132.90,0.00,1.362175,0.028295,237,377,0.003636,0.009704,52963765,35253396,0,0,47139,0,1,1 +1774113369.496221,1.20,4,3992.50,54.49,1547.61,2133.45,0.00,3518569081332.309082,3518569081333.771484,70,0,0.002755,0.008285,52963850,35253548,0,0,47142,0,1,1 +1774113374.495910,0.80,4,3992.50,54.51,1546.88,2134.19,0.00,0.126961,0.000000,199,0,0.003433,0.009525,52963955,35253730,0,0,47144,0,1,1 +1774113379.496144,1.35,4,3992.50,54.52,1549.51,2134.70,0.00,71509.738185,109412.181745,6082827,1772241,0.003446,0.009534,52964061,35253913,0,0,47147,0,1,1 +1774113384.499397,11.08,4,3992.50,60.91,1302.52,2384.70,0.00,0.000000,0.089590,6082827,1772341,3.411117,0.015855,52964793,35254547,0,0,47150,0,1,1 +1774113389.496387,37.05,4,3992.50,60.81,1310.52,2381.03,0.00,3520556230578.255859,3520556192649.286621,238,2,117.237053,0.044040,52976987,35257470,0,0,47152,0,1,1 +1774113394.496282,30.35,4,3992.50,60.68,1316.05,2375.59,0.00,3518511424842.852051,3518511424844.684082,199,0,119.187998,0.071245,52989643,35262930,0,0,47155,0,1,1 +1774113399.497373,29.99,4,3992.50,60.37,1327.84,2363.72,0.00,3517669584433.377930,0.000000,21,0,118.774247,0.114252,53002538,35271512,0,0,47157,0,1,1 +1774113404.494000,30.19,4,3992.50,60.45,1324.69,2366.90,0.00,1.539417,0.028339,237,377,119.678095,0.105685,53015398,35279386,0,0,47159,0,1,1 +1774113409.493991,30.23,4,3992.50,60.39,1327.19,2364.39,0.00,3518443470303.709473,3518443470305.171387,70,0,119.397233,0.102038,53028242,35287093,0,0,47162,0,1,1 +1774113414.496471,30.75,4,3992.50,60.64,1317.59,2374.01,0.00,1.957818,0.000195,238,2,118.939527,0.111806,53041120,35295739,0,0,47164,0,1,1 +1774113419.492647,30.63,4,3992.50,60.14,1327.68,2354.57,0.00,0.000000,0.000000,238,2,119.490990,0.109110,53054069,35303994,0,0,47167,0,1,1 +1774113424.493750,31.19,4,3992.50,60.14,1327.67,2354.56,0.00,71495.488752,109393.528514,6082830,1772498,118.973005,0.115974,53066953,35312769,0,0,47170,0,1,1 +1774113429.496335,7.97,4,3992.50,55.50,1509.36,2172.92,0.00,3516619225281.541504,3516619187396.558105,199,0,70.687146,0.071550,53074771,35317850,0,0,47172,0,1,1 +1774113434.491906,2.51,4,3992.50,54.61,1544.02,2138.26,0.00,0.000000,0.000000,199,0,0.013770,0.016754,53075050,35318175,0,0,47175,0,1,1 +1774113439.495499,17.58,4,3992.50,54.77,1533.91,2144.33,0.00,3515910987460.379883,0.000000,70,0,24.131337,0.107451,53082794,35323883,0,0,47177,0,1,1 +1774113444.496323,11.75,4,3992.50,54.81,1532.13,2145.95,0.00,0.000000,0.000000,70,0,16.083373,0.063283,53087653,35327398,0,0,47179,0,1,1 +1774113449.496699,2.36,4,3992.50,54.10,1559.76,2118.32,0.00,0.000000,0.000000,70,0,0.017788,0.015919,53088036,35327763,0,0,47182,0,1,1 +1774113454.491929,0.95,4,3992.50,54.11,1559.52,2118.55,0.00,0.127074,0.000000,199,0,0.005040,0.010288,53088172,35327962,0,0,47184,0,1,1 +1774113459.492018,0.95,4,3992.50,54.06,1561.61,2116.47,0.00,1.363355,0.028320,237,377,0.004516,0.008838,53088293,35328138,0,0,47187,0,1,1 +1774113464.496699,1.10,4,3992.50,54.38,1548.97,2129.11,0.00,0.000000,0.000000,237,377,0.004573,0.009025,53088415,35328315,0,0,47190,0,1,1 +1774113469.496418,1.40,4,3992.50,54.67,1538.45,2140.34,0.00,3518635182075.272949,3518635182076.783203,21,0,0.005035,0.010291,53088551,35328515,0,0,47192,0,1,1 +1774113474.496779,0.80,4,3992.50,54.60,1541.06,2137.62,0.00,71508.231612,109411.519916,6082868,1774130,0.004424,0.008511,53088672,35328687,0,0,47195,0,1,1 +1774113479.496273,0.85,4,3992.50,54.54,1543.13,2135.55,0.00,3518793365232.706055,3518793327321.331543,237,377,0.005092,0.010360,53088812,35328892,0,0,47197,0,1,1 +1774113484.496119,0.90,4,3992.50,54.54,1543.37,2135.30,0.00,0.000000,0.000000,237,377,0.005023,0.010291,53088947,35329092,0,0,47199,0,1,1 +1774113489.491904,0.85,4,3992.50,54.49,1545.20,2133.47,0.00,3521405911119.614258,3521405911120.950684,199,0,0.004347,0.008415,53089062,35329258,0,0,47202,0,1,1 +1774113494.491984,1.05,4,3992.50,54.62,1540.32,2138.36,0.00,3518381094926.666504,0.000000,70,0,0.007283,0.011352,53089247,35329488,0,0,47204,0,1,1 +1774113499.496396,4.01,4,3992.50,54.73,1539.85,2142.66,0.00,0.000000,0.000000,70,0,0.016905,8.220185,53090161,35330818,0,0,47207,0,1,1 +1774113504.494869,29.18,4,3992.50,54.84,1534.83,2146.99,0.00,71535.180870,109546.822488,6082868,1774921,0.044513,118.206841,53093314,35343002,0,0,47210,0,1,1 +1774113509.494841,20.48,4,3992.50,54.06,1560.34,2116.54,0.00,0.002344,86.694148,6082871,1775497,0.025743,78.717138,53095110,35351213,0,0,47212,0,1,1 +1774113514.496345,14.77,4,3992.50,59.25,1359.22,2319.63,0.00,3517378902272.648926,3517378864195.414062,238,2,27.441226,0.027939,53098246,35352601,0,0,47215,0,1,1 +1774113519.496201,1.40,4,3992.50,55.20,1517.78,2161.04,0.00,71533.294762,109627.994189,6083004,1775800,12.624725,0.011060,53099687,35352962,0,0,47217,0,1,1 +1774113524.497179,0.85,4,3992.50,54.43,1547.68,2131.17,0.00,3517749150745.606445,3517749112661.461426,21,0,0.005047,0.010276,53099824,35353161,0,0,47219,0,1,1 +1774113529.495256,1.30,4,3992.50,54.59,1541.53,2137.17,0.00,71560.751025,109667.189614,6083004,1775887,0.005024,0.010304,53099959,35353362,0,0,47222,0,1,1 +1774113534.495829,0.90,4,3992.50,54.44,1547.06,2131.64,0.00,3518034023421.388672,3518033985333.965820,21,0,0.004348,0.008389,53100074,35353526,0,0,47224,0,1,1 +1774113539.493570,1.00,4,3992.50,54.61,1540.50,2138.20,0.00,1.539074,0.028333,237,377,0.005062,0.010355,53100212,35353730,0,0,47227,0,1,1 +1774113544.493551,11.54,4,3992.50,54.20,1556.91,2121.99,0.00,71527.867552,109657.590643,6082232,1775884,0.027709,40.073952,53101937,35358350,0,0,47230,0,1,1 +1774113549.495180,1.00,4,3992.50,54.22,1556.11,2122.79,0.00,3517290772802.449219,3517290734684.799805,238,2,0.002915,0.007805,53102024,35358500,0,0,47232,0,1,1 +1774113554.495682,0.90,4,3992.50,54.22,1556.12,2122.79,0.00,3518083773038.335449,3518083773040.342285,21,0,0.003420,0.009533,53102128,35358683,0,0,47235,0,1,1 +1774113559.491895,1.30,4,3992.50,54.61,1541.30,2138.04,0.00,0.048083,0.000000,70,0,0.003461,0.009531,53102235,35358865,0,0,47237,0,1,1 +1774113564.497472,10.63,4,3992.50,76.76,730.43,3005.35,0.00,3514517169150.439453,0.000000,21,0,0.002796,0.008110,53102323,35359015,0,0,47239,0,1,1 +1774113569.497499,29.27,4,3992.50,90.59,177.94,3546.92,0.00,0.000000,0.000000,21,0,0.003461,0.009708,53102430,35359200,0,0,47242,0,1,1 +1774113574.496991,28.93,4,3992.50,57.20,1506.76,2239.65,0.00,0.000000,0.000000,21,0,0.002791,0.007662,53102517,35359349,0,0,47244,0,1,1 +1774113579.493356,29.38,4,3992.50,70.10,987.74,2744.41,0.00,2.008296,0.000195,238,2,0.003476,0.009585,53102625,35359535,0,0,47247,0,1,1 +1774113584.492697,29.20,4,3992.50,85.56,384.59,3349.96,0.00,3518901788370.900879,3518901788372.908203,21,0,0.003291,0.008959,53102730,35359710,0,0,47250,0,1,1 +1774113589.493110,28.82,4,3992.50,57.47,1495.48,2249.98,0.00,0.174986,0.000000,199,0,0.002747,0.007233,53102823,35359862,0,0,47252,0,1,1 +1774113594.493067,23.78,4,3992.50,54.44,1604.86,2131.57,0.00,3518467013817.146973,0.000000,70,0,0.002593,0.007063,53102905,35360002,0,0,47255,0,1,1 +1774113599.494127,0.85,4,3992.50,54.61,1594.94,2138.01,0.00,0.000000,0.000000,70,0,0.003458,0.009522,53103012,35360184,0,0,47257,0,1,1 +1774113604.491900,1.00,4,3992.50,54.51,1596.29,2134.12,0.00,1.959662,0.000195,238,2,0.003422,0.009528,53103116,35360366,0,0,47259,0,1,1 +1774113609.492808,11.63,4,3992.50,60.96,1291.91,2386.67,0.00,3517798667917.003906,3517798667918.835449,199,0,11.622276,0.020368,53104676,35361358,0,0,47262,0,1,1 +1774113614.492424,35.29,4,3992.50,61.01,1289.92,2388.63,0.00,3518707571594.254395,0.000000,21,0,122.180428,0.059409,53117173,35365504,0,0,47264,0,1,1 +1774113619.491848,29.09,4,3992.50,60.33,1326.45,2362.05,0.00,72375.272158,109689.292079,6137493,1785752,122.183907,0.048302,53129695,35369025,0,0,47267,0,1,1 +1774113624.496461,29.35,4,3992.50,60.40,1327.50,2364.98,0.00,3515193943358.970703,3515193906083.639648,21,0,120.055348,0.046235,53141999,35372517,0,0,47270,0,1,1 +1774113629.496411,28.56,4,3992.50,60.21,1335.23,2357.29,0.00,0.000000,0.000000,21,0,120.166582,0.048979,53154211,35376044,0,0,47272,0,1,1 +1774113634.496633,28.92,4,3992.50,60.31,1331.10,2361.40,0.00,72365.630551,109672.129467,6137601,1786028,120.161736,0.051313,53166424,35379622,0,0,47275,0,1,1 +1774113639.496007,28.04,4,3992.50,60.10,1339.14,2353.23,0.00,3518877861187.185059,3518877823874.357910,21,0,120.066577,0.053280,53178570,35383558,0,0,47277,0,1,1 +1774113644.491898,28.43,4,3992.50,60.15,1336.98,2355.07,0.00,0.000000,0.000000,21,0,118.371862,0.055597,53190538,35387693,0,0,47279,0,1,1 +1774113649.495286,28.69,4,3992.50,60.30,1330.57,2360.80,0.00,2.005477,0.000195,238,2,120.084350,0.051099,53202733,35391401,0,0,47282,0,1,1 +1774113654.498105,10.99,4,3992.50,94.47,30.55,3698.86,0.00,3516454376610.610352,0.028109,237,377,50.444884,0.026637,53207918,35393099,0,0,47284,0,1,1 +1774113659.497193,30.16,4,3992.50,63.37,1256.10,2481.19,0.00,0.468542,3519078873502.071777,238,2,0.009108,0.008307,53208095,35393294,0,0,47287,0,1,1 +1774113664.492429,49.97,4,3992.50,93.14,69.48,3646.63,0.00,0.000000,0.000000,238,2,24.170351,0.108411,53215410,35398758,0,0,47290,0,1,1 +1774113669.493650,42.87,4,3992.50,93.54,68.26,3662.44,0.00,3517578517311.986328,3517578517313.992676,21,0,16.087739,0.071492,53220226,35402466,0,0,47292,0,1,1 +1774113674.493939,30.09,4,3992.50,56.07,1549.84,2195.34,0.00,73158.116022,109681.534378,6189036,1795798,0.005766,0.011742,53220380,35402695,0,0,47295,0,1,1 +1774113679.493886,29.76,4,3992.50,70.32,985.06,2753.04,0.00,3518474366105.512207,3518474329579.595703,21,0,0.004126,0.007806,53220488,35402851,0,0,47297,0,1,1 +1774113684.493138,23.69,4,3992.50,54.52,1592.65,2134.66,0.00,73438.061486,109708.298281,6205405,1798902,0.006355,0.010428,53220635,35403062,0,0,47299,0,1,1 +1774113689.495481,26.89,4,3992.50,55.25,1509.12,2163.22,0.00,3516789059787.612305,3516789023537.783203,238,2,0.076289,110.914924,53226391,35414935,0,0,47302,0,1,1 +1774113694.493117,23.73,4,3992.50,55.40,1506.97,2169.22,0.00,3520101090968.892578,3520101090970.900391,21,0,0.059643,94.177946,53230959,35424660,0,0,47304,0,1,1 +1774113699.495596,1.66,4,3992.50,55.66,1496.44,2179.13,0.00,1.537617,0.028306,237,377,0.008319,0.012926,53231150,35424915,0,0,47307,0,1,1 +1774113704.496705,15.28,4,3992.50,55.53,1501.58,2173.97,0.00,73466.154935,109872.804432,6217767,1800838,40.056368,0.026437,53235585,35426384,0,0,47310,0,1,1 +1774113709.496328,1.55,4,3992.50,54.81,1529.71,2145.84,0.00,0.296214,0.133213,6217243,1800516,0.005037,0.010624,53235714,35426572,0,0,47312,0,1,1 +1774113714.495956,0.75,4,3992.50,54.71,1533.54,2141.98,0.00,3518699190521.136230,3518699154105.376465,21,0,0.005035,0.010301,53235850,35426773,0,0,47315,0,1,1 +1774113719.496073,0.75,4,3992.50,54.69,1534.35,2141.16,0.00,2.006789,0.000195,238,2,0.005047,0.010290,53235987,35426973,0,0,47317,0,1,1 +1774113724.491915,0.65,4,3992.50,54.58,1538.62,2136.93,0.00,0.000000,0.000000,238,2,0.004352,0.008384,53236102,35427136,0,0,47319,0,1,1 +1774113729.496301,0.75,4,3992.50,54.58,1538.65,2136.90,0.00,3515353766244.693359,0.028100,237,377,0.005031,0.010322,53236238,35427339,0,0,47322,0,1,1 +1774113734.495933,0.80,4,3992.50,54.58,1538.73,2136.78,0.00,3518696441804.793945,3518696441806.128906,199,0,0.004981,0.009508,53236368,35427526,0,0,47324,0,1,1 +1774113739.495727,1.05,4,3992.50,54.71,1537.73,2142.14,0.00,73491.759917,109902.098316,6218057,1801098,0.005006,0.009322,53236485,35427693,0,0,47327,0,1,1 +1774113744.496084,9.52,4,3992.50,77.38,704.53,3029.52,0.00,3518185581608.561035,3518185545200.990723,237,377,0.005084,0.010325,53236624,35427896,0,0,47330,0,1,1 +1774113749.493169,28.89,4,3992.50,94.71,25.03,3708.08,0.00,3520489514857.438965,3520489514858.950195,21,0,0.004370,0.008470,53236740,35428066,0,0,47332,0,1,1 +1774113754.496356,29.27,4,3992.50,56.08,1550.15,2195.70,0.00,73741.245479,109832.289278,6236348,1804779,0.005099,0.010395,53236880,35428275,0,0,47335,0,1,1 +1774113759.493077,29.22,4,3992.50,60.18,1382.38,2356.09,0.00,3520746682250.756836,3520746646111.492676,237,377,0.004763,0.009506,53237009,35428465,0,0,47337,0,1,1 +1774113764.497106,29.49,4,3992.50,69.23,1027.06,2710.69,0.00,0.468080,3515604067236.762695,238,2,0.005076,0.010976,53237148,35428673,0,0,47339,0,1,1 +1774113769.493179,38.48,4,3992.50,82.00,488.93,3210.53,0.00,3521202555731.773926,0.028147,237,377,0.401844,32.919126,53268667,35462842,0,0,47342,0,1,1 +1774113774.494169,26.15,4,3992.50,54.18,1612.98,2121.32,0.00,3517740703961.307129,3517740703962.816895,21,0,0.107862,7.670320,53276994,35471878,0,0,47344,0,1,1 +1774113779.495939,0.80,4,3992.50,54.16,1609.02,2120.36,0.00,0.174938,0.000000,199,0,0.003432,0.009531,53277099,35472061,0,0,47347,0,1,1 +1774113784.494679,0.65,4,3992.50,54.19,1607.27,2121.74,0.00,1.832297,0.000195,238,2,0.002755,0.007643,53277184,35472209,0,0,47350,0,1,1 +1774113789.491987,1.00,4,3992.50,54.02,1610.07,2115.16,0.00,3520332401655.685547,3520332401657.693359,21,0,0.002735,0.007627,53277267,35472355,0,0,47352,0,1,1 +1774113794.496391,0.90,4,3992.50,53.96,1612.22,2112.47,0.00,2.005070,0.000195,238,2,0.004903,0.008634,53277394,35472528,0,0,47355,0,1,1 +1774113799.491914,1.15,4,3992.50,54.34,1586.80,2127.39,0.00,0.000000,0.000000,238,2,0.003462,0.009533,53277501,35472710,0,0,47357,0,1,1 +1774113804.492696,0.70,4,3992.50,54.05,1597.61,2116.37,0.00,3517887233648.372070,3517887233650.330566,70,0,0.003445,0.009523,53277607,35472892,0,0,47359,0,1,1 +1774113809.491997,0.75,4,3992.50,53.95,1601.55,2112.43,0.00,3518929193892.679199,0.000000,21,0,0.002772,0.007665,53277693,35473041,0,0,47362,0,1,1 +1774113814.491980,0.80,4,3992.50,53.95,1600.96,2112.27,0.00,74356.267587,109951.607243,6284620,1813117,0.004470,0.010320,53277809,35473235,0,0,47364,0,1,1 +1774113819.496404,0.70,4,3992.50,53.93,1601.55,2111.52,0.00,3515326596382.245117,3515326560818.495117,21,0,0.003567,0.009614,53277923,35473425,0,0,47367,0,1,1 +1774113824.496537,0.70,4,3992.50,53.92,1601.88,2111.13,0.00,1.538338,0.028320,237,377,0.002747,0.007646,53278007,35473573,0,0,47370,0,1,1 +1774113829.494755,1.10,4,3992.50,54.32,1588.64,2126.71,0.00,74377.056127,109990.469711,6283857,1812807,0.003447,0.010172,53278113,35473759,0,0,47372,0,1,1 +1774113834.499114,21.54,4,3992.50,65.85,1142.39,2578.36,0.00,3515372434951.550293,3515372399383.349609,21,0,8.814763,0.022117,53279391,35474714,0,0,47375,0,1,1 +1774113839.497475,66.25,4,3992.50,61.35,1331.77,2402.18,0.00,0.000000,0.000000,21,0,118.407164,0.059347,53291697,35478852,0,0,47377,0,1,1 +1774113844.496964,60.84,4,3992.50,94.19,38.97,3687.76,0.00,74882.066230,109968.816716,6320430,1818577,118.580065,0.028937,53304100,35480890,0,0,47379,0,1,1 +1774113849.493002,61.16,4,3992.50,79.02,631.60,3093.94,0.00,3521226889393.987793,3521226854283.003418,21,0,118.259722,0.031323,53316437,35483240,0,0,47382,0,1,1 +1774113854.494773,60.94,4,3992.50,61.71,1320.61,2415.90,0.00,0.000000,0.000000,21,0,119.925150,0.032917,53328915,35485627,0,0,47384,0,1,1 +1774113859.495959,61.98,4,3992.50,71.62,921.72,2803.95,0.00,0.000000,0.000000,21,0,118.137955,0.039885,53341144,35488451,0,0,47387,0,1,1 +1774113864.496110,54.44,4,3992.50,60.46,1322.33,2367.21,0.00,1.538332,0.028319,237,377,116.560482,0.047926,53353258,35491848,0,0,47390,0,1,1 +1774113869.496678,28.81,4,3992.50,60.33,1327.52,2362.00,0.00,0.000000,0.000000,237,377,122.153293,0.042120,53365710,35495051,0,0,47392,0,1,1 +1774113874.492317,28.31,4,3992.50,60.57,1317.75,2371.45,0.00,3521508726545.697754,3521508726547.209473,21,0,120.272194,0.033050,53378031,35497329,0,0,47395,0,1,1 +1774113879.492395,5.62,4,3992.50,54.30,1562.85,2126.16,0.00,75746.294846,109966.340457,6381709,1827151,64.494121,0.020929,53384791,35498554,0,0,47397,0,1,1 +1774113884.492544,2.40,4,3992.50,54.13,1569.71,2119.31,0.00,3518332387456.420898,3518332353235.350098,237,377,0.013784,0.014437,53385073,35498855,0,0,47399,0,1,1 +1774113889.496468,8.39,4,3992.50,54.51,1554.46,2134.21,0.00,3515678098381.878906,3515678098383.339844,70,0,6.043533,0.031384,53387118,35500275,0,0,47402,0,1,1 +1774113894.491935,22.10,4,3992.50,54.11,1568.91,2118.55,0.00,0.000000,0.000000,70,0,34.223062,0.141099,53397754,35508100,0,0,47404,0,1,1 +1774113899.496766,0.90,4,3992.50,54.13,1568.14,2119.35,0.00,1.956898,0.000195,238,2,0.007632,0.011787,53397938,35508336,0,0,47407,0,1,1 +1774113904.496017,17.36,4,3992.50,55.07,1531.61,2156.20,0.00,3518964824169.850586,0.028129,237,377,0.042856,68.322424,53400872,35515893,0,0,47410,0,1,1 +1774113909.499371,31.07,4,3992.50,54.69,1543.24,2141.07,0.00,0.468143,3516078554473.691406,238,2,0.037325,123.298378,53403571,35528881,0,0,47412,0,1,1 +1774113914.495895,5.29,4,3992.50,54.42,1552.58,2130.73,0.00,3520884472868.632324,3520884472870.465332,199,0,0.009019,13.438694,53403986,35530493,0,0,47415,0,1,1 +1774113919.496577,13.38,4,3992.50,54.50,1550.46,2133.84,0.00,1.831586,0.000195,238,2,40.059785,0.027751,53408338,35532111,0,0,47417,0,1,1 +1774113924.497138,10.13,4,3992.50,74.00,845.20,2897.09,0.00,3518042492253.255371,3518042492255.262207,21,0,0.006265,0.011794,53408498,35532331,0,0,47419,0,1,1 +1774113929.497096,28.47,4,3992.50,84.99,405.44,3327.52,0.00,0.048047,0.000000,70,0,0.005080,0.010382,53408637,35532538,0,0,47422,0,1,1 +1774113934.497379,29.11,4,3992.50,86.64,344.71,3392.02,0.00,76118.427881,110173.535133,6413044,1834378,0.004338,0.008427,53408751,35532705,0,0,47424,0,1,1 +1774113939.496711,29.02,4,3992.50,92.72,92.68,3630.27,0.00,3518907070837.446777,3518907036773.903320,238,2,0.005025,0.010340,53408886,35532909,0,0,47427,0,1,1 +1774113944.497344,28.83,4,3992.50,58.24,1459.28,2280.08,0.00,3517992120961.229980,3517992120963.236816,21,0,0.004371,0.008444,53409003,35533078,0,0,47430,0,1,1 +1774113949.496818,28.46,4,3992.50,73.46,850.82,2876.11,0.00,2.007047,0.000195,238,2,0.004364,0.008459,53409119,35533247,0,0,47432,0,1,1 +1774113954.497061,22.67,4,3992.50,53.86,1622.74,2108.57,0.00,3518266340056.006836,0.028124,237,377,0.004340,0.008437,53409233,35533415,0,0,47435,0,1,1 +1774113959.491910,0.85,4,3992.50,53.94,1615.14,2111.82,0.00,76734.105281,110302.500515,6447382,1842638,0.005134,0.011021,53409375,35533625,0,0,47437,0,1,1 +1774113964.496412,0.70,4,3992.50,54.14,1606.95,2119.57,0.00,3515272128844.768555,3515272095341.123047,237,377,0.005030,0.010281,53409511,35533825,0,0,47439,0,1,1 +1774113969.492016,0.90,4,3992.50,54.15,1598.10,2120.06,0.00,3521532983597.395996,3521532983598.907227,21,0,0.004397,0.008455,53409629,35533994,0,0,47442,0,1,1 +1774113974.496337,0.85,4,3992.50,54.23,1592.94,2123.29,0.00,0.174849,0.000000,199,0,0.005031,0.010282,53409765,35534194,0,0,47444,0,1,1 +1774113979.496724,1.00,4,3992.50,54.09,1587.73,2117.75,0.00,3518164584902.075195,0.000000,21,0,0.005009,0.010300,53409899,35534395,0,0,47447,0,1,1 +1774113984.496435,0.70,4,3992.50,53.86,1596.13,2108.88,0.00,0.048050,0.000000,70,0,0.004323,0.008400,53410012,35534560,0,0,47450,0,1,1 +1774113989.496394,0.70,4,3992.50,53.89,1594.95,2110.05,0.00,1.958805,0.000195,238,2,0.005022,0.010291,53410147,35534760,0,0,47452,0,1,1 +1774113994.492711,2.01,4,3992.50,54.51,1560.45,2134.09,0.00,3521030806512.664062,0.028146,237,377,0.013693,5.626724,53410854,35535824,0,0,47455,0,1,1 +1774113999.496377,10.24,4,3992.50,54.77,1539.71,2144.24,0.00,3515859942909.111328,3515859942910.620605,21,0,0.016048,34.433158,53411894,35539551,0,0,47457,0,1,1 +1774114004.492009,1.00,4,3992.50,54.86,1536.02,2147.85,0.00,1.539724,0.028345,237,377,0.003424,0.009532,53411998,35539733,0,0,47459,0,1,1 +1774114009.491915,0.65,4,3992.50,54.67,1543.49,2140.38,0.00,76676.681716,110225.542893,6459154,1843347,0.002747,0.007633,53412082,35539880,0,0,47462,0,1,1 +1774114014.497532,8.38,4,3992.50,72.88,882.35,2853.59,0.00,3514488970760.420898,3514488937251.345215,21,0,0.002058,0.005716,53412145,35539990,0,0,47464,0,1,1 +1774114019.493621,30.06,4,3992.50,83.33,473.17,3262.43,0.00,0.000000,0.000000,21,0,0.003438,0.009554,53412250,35540174,0,0,47467,0,1,1 +1774114024.494843,29.06,4,3992.50,54.97,1582.13,2152.29,0.00,2.006346,0.000195,238,2,0.003485,0.010196,53412359,35540363,0,0,47470,0,1,1 +1774114029.497485,28.83,4,3992.50,56.22,1545.71,2201.05,0.00,3516578893161.307617,3516578893163.265137,70,0,0.002815,0.007713,53412448,35540516,0,0,47472,0,1,1 +1774114034.497423,29.30,4,3992.50,62.60,1282.59,2450.79,0.00,1.958813,0.000195,238,2,0.004145,0.010769,53412573,35540730,0,0,47475,0,1,1 +1774114039.497028,29.37,4,3992.50,63.78,1231.16,2497.25,0.00,77381.859952,110250.549527,6504753,1853703,0.002840,0.007742,53412664,35540884,0,0,47477,0,1,1 +1774114044.497036,24.07,4,3992.50,54.55,1597.02,2135.64,0.00,3518431257836.474609,3518431224972.266602,199,0,0.003545,0.009625,53412776,35541074,0,0,47479,0,1,1 +1774114049.496261,0.65,4,3992.50,54.70,1587.61,2141.63,0.00,3518983379736.443848,0.000000,21,0,0.003446,0.009536,53412882,35541257,0,0,47482,0,1,1 +1774114054.496410,0.85,4,3992.50,54.60,1590.85,2137.69,0.00,0.000000,0.000000,21,0,0.002759,0.007623,53412967,35541403,0,0,47484,0,1,1 +1774114059.496274,0.65,4,3992.50,54.53,1592.20,2135.16,0.00,0.175005,0.000000,199,0,0.003868,0.010607,53413088,35541609,0,0,47487,0,1,1 +1774114064.491886,30.52,4,3992.50,60.91,1304.38,2384.82,0.00,3521527174310.782715,0.000000,70,0,62.351273,0.036254,53419842,35543798,0,0,47490,0,1,1 +1774114069.496370,30.84,4,3992.50,61.19,1293.65,2395.55,0.00,0.126839,0.000000,199,0,119.459255,0.042348,53432127,35546961,0,0,47492,0,1,1 +1774114074.491934,29.82,4,3992.50,60.99,1302.36,2387.89,0.00,3521561301420.773926,0.000000,70,0,118.269283,0.031503,53444304,35549204,0,0,47495,0,1,1 +1774114079.496493,29.67,4,3992.50,60.89,1306.21,2384.06,0.00,3515232340624.160156,0.000000,21,0,119.856298,0.032528,53456621,35551591,0,0,47497,0,1,1 +1774114084.496293,29.15,4,3992.50,60.94,1304.43,2385.85,0.00,2.006916,0.000195,238,2,118.569505,0.030494,53468835,35553782,0,0,47499,0,1,1 +1774114089.496480,29.70,4,3992.50,60.97,1303.09,2387.18,0.00,0.000000,0.000000,238,2,119.965276,0.024735,53481288,35555474,0,0,47502,0,1,1 +1774114094.495863,30.03,4,3992.50,61.17,1294.77,2394.87,0.00,3518871790251.238281,3518871790253.070312,199,0,118.783127,0.028539,53493600,35557293,0,0,47504,0,1,1 +1774114099.493746,29.17,4,3992.50,61.55,1279.38,2409.63,0.00,1.363956,0.028332,237,377,119.616528,0.023211,53505918,35558819,0,0,47507,0,1,1 +1774114104.495778,28.80,4,3992.50,94.60,20.95,3703.75,0.00,3517007540392.729492,3517007540394.190918,70,0,118.718266,0.024306,53518167,35560320,0,0,47510,0,1,1 +1774114109.496814,30.00,4,3992.50,94.63,49.32,3704.84,0.00,1.490023,0.028314,237,377,9.816310,0.009187,53519266,35560630,0,0,47512,0,1,1 +1774114114.496938,48.84,4,3992.50,79.29,612.96,3104.52,0.00,0.468445,3518349988283.292480,238,2,18.118738,0.087052,53524835,35564811,0,0,47515,0,1,1 +1774114119.496777,48.06,4,3992.50,70.65,965.56,2766.19,0.00,0.000000,0.000000,238,2,22.129533,0.095216,53531488,35569787,0,0,47517,0,1,1 +1774114124.496776,30.37,4,3992.50,60.05,1369.19,2351.13,0.00,3518437840088.989746,3518437840090.948242,70,0,0.006195,0.022248,53531627,35569984,0,0,47519,0,1,1 +1774114129.498029,61.85,4,3992.50,63.50,1229.49,2486.01,0.00,78580.847481,110328.606566,6586162,1869438,2.078743,109.569095,53696507,35744052,0,0,47522,0,1,1 +1774114134.497522,68.99,4,3992.50,54.22,1570.28,2122.72,0.00,3518793644602.239746,3518793612843.181641,199,0,1.843887,99.446013,53842649,35898864,0,0,47524,0,1,1 +1774114139.494182,11.60,4,3992.50,56.39,1452.14,2207.64,0.00,78867.914777,110536.903992,6609268,1872153,40.095108,0.033707,53847160,35900649,0,0,47527,0,1,1 +1774114144.496140,1.95,4,3992.50,54.87,1511.45,2148.28,0.00,3517060113109.010742,3517060081471.729980,238,2,0.007443,0.011777,53847334,35900867,0,0,47530,0,1,1 +1774114149.491946,0.70,4,3992.50,54.28,1534.46,2125.27,0.00,3521390668254.089355,3521390668255.922852,199,0,0.005060,0.010307,53847472,35901068,0,0,47532,0,1,1 +1774114154.493011,0.65,4,3992.50,53.71,1556.80,2102.92,0.00,78799.025537,110442.827173,6609316,1872239,0.004436,0.008522,53847594,35901241,0,0,47535,0,1,1 +1774114159.492330,1.15,4,3992.50,54.16,1539.70,2120.62,0.00,3518916398037.237793,3518916366380.553223,238,2,0.005036,0.010775,53847730,35901444,0,0,47537,0,1,1 +1774114164.496109,0.80,4,3992.50,54.15,1540.12,2120.02,0.00,78758.876756,110383.129858,6609589,1872377,0.005019,0.010444,53847865,35901645,0,0,47539,0,1,1 +1774114169.496327,0.65,4,3992.50,53.99,1546.52,2113.64,0.00,3518284301422.162109,3518284269777.211914,199,0,0.004373,0.008430,53847982,35901812,0,0,47542,0,1,1 +1774114174.491947,0.80,4,3992.50,54.06,1543.73,2116.43,0.00,3521521592731.629883,0.000000,70,0,0.005027,0.010300,53848117,35902012,0,0,47544,0,1,1 +1774114179.496564,0.80,4,3992.50,54.07,1543.14,2117.02,0.00,1.956982,0.000195,238,2,0.005051,0.010274,53848255,35902212,0,0,47547,0,1,1 +1774114184.491941,0.65,4,3992.50,54.07,1543.15,2117.01,0.00,3521693132511.263672,3521693132513.097168,199,0,0.004446,0.008508,53848376,35902385,0,0,47550,0,1,1 +1774114189.496049,1.10,4,3992.50,54.39,1533.31,2129.58,0.00,78751.794653,110376.094746,6608839,1872227,0.005106,0.010310,53848517,35902587,0,0,47552,0,1,1 +1774114194.497149,7.62,4,3992.50,69.28,1023.48,2712.54,0.00,3517663501590.683105,3517663469946.024902,237,377,0.004335,0.008410,53848631,35902753,0,0,47555,0,1,1 +1774114199.495579,29.25,4,3992.50,66.81,1119.87,2615.61,0.00,79003.147225,110504.525713,6619452,1874832,0.005041,0.010332,53848767,35902956,0,0,47557,0,1,1 +1774114204.493154,29.46,4,3992.50,61.05,1337.36,2390.10,0.00,3520144334432.840332,3520144302925.574707,238,2,0.005052,0.010321,53848904,35903158,0,0,47559,0,1,1 +1774114209.496313,29.26,4,3992.50,57.20,1503.18,2239.66,0.00,0.000000,0.000000,238,2,0.004335,0.008432,53849018,35903326,0,0,47562,0,1,1 +1774114214.496861,29.21,4,3992.50,59.26,1414.91,2320.25,0.00,3518051505193.590332,3518051505195.597168,21,0,0.005020,0.010335,53849153,35903530,0,0,47564,0,1,1 +1774114219.496016,40.40,4,3992.50,80.87,528.68,3166.36,0.00,0.000000,0.000000,21,0,0.350309,35.596145,53876593,35933702,0,0,47567,0,1,1 +1774114224.496158,28.74,4,3992.50,54.36,1602.58,2128.43,0.00,1.538335,0.028320,237,377,0.063648,4.877671,53881396,35938995,0,0,47570,0,1,1 +1774114229.491932,0.75,4,3992.50,54.30,1602.78,2125.80,0.00,3521414012976.198730,3521414012977.709961,21,0,0.002749,0.007655,53881480,35939143,0,0,47572,0,1,1 +1774114234.492105,1.00,4,3992.50,54.24,1603.36,2123.65,0.00,0.000000,0.000000,21,0,0.003433,0.009534,53881585,35939326,0,0,47575,0,1,1 +1774114239.491966,1.00,4,3992.50,54.07,1609.48,2116.93,0.00,79756.920009,110526.052419,6680805,1886251,0.002759,0.007624,53881670,35939472,0,0,47577,0,1,1 +1774114244.491954,0.90,4,3992.50,53.98,1612.77,2113.30,0.00,0.150782,0.002344,6680813,1886253,0.003441,0.009532,53881776,35939655,0,0,47579,0,1,1 +1774114249.496659,1.20,4,3992.50,54.48,1584.30,2133.08,0.00,3515129306681.592773,3515129275942.386230,21,0,0.003430,0.009525,53881881,35939838,0,0,47582,0,1,1 +1774114254.491928,0.95,4,3992.50,54.43,1584.94,2131.07,0.00,0.175166,0.000000,199,0,0.002774,0.007649,53881967,35939985,0,0,47584,0,1,1 +1774114259.496588,0.90,4,3992.50,54.20,1592.50,2122.20,0.00,3515161173578.601562,0.000000,21,0,0.002794,0.007701,53882055,35940137,0,0,47587,0,1,1 +1774114264.495997,0.90,4,3992.50,54.07,1596.91,2117.14,0.00,79773.437563,110536.454474,6681869,1886927,0.003509,0.009628,53882166,35940326,0,0,47590,0,1,1 +1774114269.492610,1.16,4,3992.50,54.09,1588.59,2117.60,0.00,3520822210134.084961,3520822179353.849121,21,0,0.003604,0.009631,53882282,35940516,0,0,47592,0,1,1 +1774114274.496811,0.90,4,3992.50,54.07,1589.30,2116.84,0.00,79696.121632,110430.640809,6681242,1886574,0.002740,0.007660,53882366,35940666,0,0,47595,0,1,1 +1774114279.496049,1.40,4,3992.50,54.67,1566.79,2140.54,0.00,3518973541036.674805,3518973510271.645996,21,0,0.003447,0.009526,53882472,35940848,0,0,47597,0,1,1 +1774114284.494348,21.66,4,3992.50,82.32,493.86,3222.86,0.00,0.000000,0.000000,21,0,25.653510,0.026974,53885502,35942297,0,0,47599,0,1,1 +1774114289.493084,68.47,4,3992.50,74.05,836.98,2899.30,0.00,0.175044,0.000000,199,0,120.201680,0.035273,53898154,35944792,0,0,47602,0,1,1 +1774114294.497813,65.76,4,3992.50,69.41,1028.71,2717.65,0.00,1.830105,0.000195,238,2,120.857035,0.034482,53910888,35947256,0,0,47604,0,1,1 +1774114299.498362,65.08,4,3992.50,94.78,28.18,3710.73,0.00,3518051122471.763184,3518051122473.595215,199,0,120.158719,0.032331,53923560,35949394,0,0,47607,0,1,1 +1774114304.498269,65.82,4,3992.50,74.54,810.86,2918.48,0.00,3518502870479.893555,0.000000,21,0,119.571877,0.027527,53936164,35951418,0,0,47610,0,1,1 +1774114309.497129,63.40,4,3992.50,89.21,216.47,3492.58,0.00,1.538730,0.028327,237,377,119.395405,0.031468,53948680,35953650,0,0,47612,0,1,1 +1774114314.497504,58.39,4,3992.50,61.02,1300.95,2389.11,0.00,81298.109987,110531.293485,6790150,1900458,119.561828,0.035489,53961305,35956067,0,0,47615,0,1,1 +1774114319.496392,28.96,4,3992.50,62.03,1260.78,2428.63,0.00,2.162981,0.027936,6790278,1900472,120.996992,0.025944,53973806,35957910,0,0,47617,0,1,1 +1774114324.496626,26.87,4,3992.50,61.73,1272.29,2416.96,0.00,3518272676475.381836,3518272647243.504883,237,377,120.564563,0.028363,53986247,35959914,0,0,47619,0,1,1 +1774114329.495127,1.60,4,3992.50,55.54,1514.71,2174.52,0.00,3519492409722.048828,3519492409723.384277,199,0,38.471133,0.015922,53990333,35960718,0,0,47622,0,1,1 +1774114334.496301,3.02,4,3992.50,55.16,1529.71,2159.46,0.00,3517611266019.019043,0.000000,21,0,0.017203,0.014201,53990662,35961037,0,0,47624,0,1,1 +1774114339.491994,21.17,4,3992.50,55.47,1519.86,2171.95,0.00,2.008566,0.000195,238,2,30.201437,0.130527,54000208,35968036,0,0,47627,0,1,1 +1774114344.496482,5.36,4,3992.50,55.34,1525.02,2166.82,0.00,0.000000,0.000000,238,2,6.060068,0.030921,54002363,35969658,0,0,47630,0,1,1 +1774114349.496451,3.51,4,3992.50,55.31,1526.41,2165.40,0.00,3518459452582.026855,3518459452583.858887,199,0,4.007402,0.025127,54003684,35970743,0,0,47632,0,1,1 +1774114354.496480,1.05,4,3992.50,55.29,1527.09,2164.71,0.00,1.363371,0.028320,237,377,0.005010,0.010300,54003818,35970944,0,0,47635,0,1,1 +1774114359.496642,1.61,4,3992.50,55.21,1530.05,2161.51,0.00,0.000000,0.000000,237,377,0.012528,3.819549,54004448,35971795,0,0,47637,0,1,1 +1774114364.493392,29.81,4,3992.50,55.53,1512.53,2174.02,0.00,0.000000,0.000000,237,377,0.048620,118.259543,54007945,35984489,0,0,47639,0,1,1 +1774114369.491922,21.92,4,3992.50,55.68,1504.41,2180.14,0.00,3519472027275.811523,3519472027277.146973,199,0,0.044707,83.156681,54011285,35993516,0,0,47642,0,1,1 +1774114374.494992,19.22,4,3992.50,82.81,487.20,3242.08,0.00,0.000000,0.000000,199,0,40.043618,0.030713,54015877,35995108,0,0,47644,0,1,1 +1774114379.497524,29.65,4,3992.50,73.93,838.70,2894.41,0.00,3516655823665.666504,0.000000,70,0,0.005265,0.007503,54015989,35995247,0,0,47647,0,1,1 +1774114384.492579,29.59,4,3992.50,94.70,45.56,3707.81,0.00,1.491808,0.028348,237,377,0.005030,0.010348,54016124,35995451,0,0,47650,0,1,1 +1774114389.496395,29.29,4,3992.50,75.88,753.77,2971.01,0.00,3515753849835.369141,3515753849836.877930,21,0,0.004574,0.009050,54016246,35995630,0,0,47652,0,1,1 +1774114394.496918,29.85,4,3992.50,90.19,217.48,3531.07,0.00,1.538218,0.028317,237,377,0.007638,0.011651,54016421,35995851,0,0,47655,0,1,1 +1774114399.497059,29.20,4,3992.50,87.70,295.54,3433.52,0.00,3518338187364.380859,3518338187365.891113,21,0,0.005037,0.010328,54016557,35996054,0,0,47657,0,1,1 +1774114404.492826,24.75,4,3992.50,54.74,1586.29,2143.14,0.00,2.008537,0.000195,238,2,0.004352,0.008453,54016672,35996222,0,0,47659,0,1,1 +1774114409.496781,0.90,4,3992.50,54.22,1600.86,2122.73,0.00,3515656052129.224609,3515656052131.055176,199,0,0.005039,0.010313,54016809,35996425,0,0,47662,0,1,1 +1774114414.493208,0.80,4,3992.50,54.27,1598.39,2124.71,0.00,82418.560757,110842.315270,6865056,1917705,0.005732,0.010321,54016940,35996615,0,0,47664,0,1,1 +1774114419.495999,1.00,4,3992.50,54.27,1596.24,2124.89,0.00,3516474005680.596680,3516473977291.669434,237,377,0.004655,0.009116,54017067,35996799,0,0,47667,0,1,1 +1774114424.491955,1.00,4,3992.50,54.29,1595.61,2125.41,0.00,0.468836,3521285366747.726562,238,2,0.005076,0.010981,54017205,35997006,0,0,47670,0,1,1 +1774114429.496467,1.50,4,3992.50,54.72,1567.97,2142.23,0.00,3515264747830.200684,3515264747832.205566,21,0,0.004332,0.008382,54017319,35997170,0,0,47672,0,1,1 +1774114434.494468,1.15,4,3992.50,54.58,1572.12,2136.95,0.00,0.000000,0.000000,21,0,0.005664,0.010565,54017468,35997379,0,0,47675,0,1,1 +1774114439.495646,9.24,4,3992.50,55.10,1517.32,2157.13,0.00,0.000000,0.000000,21,0,0.026115,36.255833,54019063,36001472,0,0,47677,0,1,1 +1774114444.493496,2.72,4,3992.50,54.74,1530.28,2143.25,0.00,0.000000,0.000000,21,0,0.005587,3.816066,54019332,36002060,0,0,47679,0,1,1 +1774114449.496501,1.10,4,3992.50,54.45,1541.48,2132.00,0.00,82331.088555,110729.093174,6877427,1918780,0.002758,0.007629,54019417,36002207,0,0,47682,0,1,1 +1774114454.492104,0.90,4,3992.50,54.38,1544.61,2128.92,0.00,3521534264475.841309,3521534236033.747559,238,2,0.003457,0.009541,54019524,36002390,0,0,47684,0,1,1 +1774114459.496442,1.35,4,3992.50,54.77,1534.47,2144.41,0.00,82307.180020,110699.700587,6877428,1918812,0.003443,0.009526,54019630,36002573,0,0,47687,0,1,1 +1774114464.496758,0.90,4,3992.50,54.60,1540.95,2137.57,0.00,3518214731756.016113,3518214731760.044434,6876657,1918440,0.002746,0.007633,54019714,36002720,0,0,47690,0,1,1 +1774114469.496504,2.81,4,3992.50,54.57,1537.79,2136.65,0.00,3518616282486.000977,3518616254063.868652,237,377,0.003459,0.009525,54019821,36002902,0,0,47692,0,1,1 +1774114474.496797,0.85,4,3992.50,54.50,1540.62,2133.82,0.00,82374.512381,110797.258633,6877180,1918573,0.003441,0.009542,54019927,36003086,0,0,47695,0,1,1 +1774114479.496821,0.95,4,3992.50,54.06,1557.86,2116.58,0.00,3518420377415.477539,3518420348991.194824,237,377,0.002822,0.007717,54020017,36003238,0,0,47697,0,1,1 +1774114484.496603,0.95,4,3992.50,54.07,1557.65,2116.79,0.00,3518591148651.899902,3518591148653.362305,70,0,0.003540,0.009643,54020130,36003428,0,0,47699,0,1,1 +1774114489.491911,1.40,4,3992.50,54.30,1548.51,2126.07,0.00,1.960629,0.000195,238,2,0.003561,0.010288,54020243,36003623,0,0,47702,0,1,1 +1774114494.496271,0.90,4,3992.50,54.26,1550.20,2124.28,0.00,3515371588309.297363,3515371588311.302734,21,0,0.002757,0.007617,54020328,36003769,0,0,47704,0,1,1 +1774114499.492004,1.86,4,3992.50,54.23,1551.04,2123.42,0.00,2.008550,0.000195,238,2,0.003432,0.009550,54020433,36003953,0,0,47707,0,1,1 +1774114504.491978,1.20,4,3992.50,54.13,1555.14,2119.34,0.00,3518455281778.593750,3518455281780.600586,21,0,0.004829,0.010237,54020562,36004152,0,0,47710,0,1,1 +1774114509.495410,39.46,4,3992.50,60.37,1310.62,2363.66,0.00,0.174880,0.000000,199,0,99.676048,0.043881,54031077,36007083,0,0,47712,0,1,1 +1774114514.497364,29.04,4,3992.50,60.19,1333.10,2356.61,0.00,82353.520554,110760.827299,6878019,1919208,118.719139,0.029405,54043299,36009131,0,0,47715,0,1,1 +1774114519.492647,29.52,4,3992.50,60.23,1335.79,2358.02,0.00,3521759925977.692871,0.055326,6877252,1918855,119.682593,0.036472,54055619,36011866,0,0,47717,0,1,1 +1774114524.496463,28.86,4,3992.50,60.06,1347.15,2351.51,0.00,0.000781,0.026445,6877253,1918882,119.080091,0.038015,54067867,36014495,0,0,47719,0,1,1 +1774114529.491966,28.45,4,3992.50,60.17,1342.70,2355.94,0.00,3521604717678.852051,3521604689230.909180,70,0,119.273512,0.024521,54080158,36016179,0,0,47722,0,1,1 +1774114534.495764,29.89,4,3992.50,59.99,1349.79,2348.76,0.00,0.000000,0.000000,70,0,119.278534,0.033145,54092489,36018533,0,0,47724,0,1,1 +1774114539.491900,28.69,4,3992.50,59.95,1350.70,2347.30,0.00,82446.203624,110889.952590,6877297,1918952,119.060706,0.036399,54104721,36021105,0,0,47727,0,1,1 +1774114544.496225,29.30,4,3992.50,60.27,1337.70,2359.51,0.00,3515396244770.724121,3515396216371.561035,238,2,119.461603,0.023732,54116899,36022720,0,0,47730,0,1,1 +1774114549.491943,11.63,4,3992.50,54.12,1578.10,2118.94,0.00,3521453345644.727539,3521453345646.687988,70,0,91.207146,0.018486,54126330,36023870,0,0,47732,0,1,1 +1774114554.494395,2.20,4,3992.50,54.02,1583.41,2114.82,0.00,0.126891,0.000000,199,0,0.009564,0.009901,54126528,36024079,0,0,47735,0,1,1 +1774114559.491900,22.77,4,3992.50,55.20,1536.73,2161.31,0.00,82444.474163,110860.377828,6877642,1919804,34.223821,0.153491,54137566,36032229,0,0,47737,0,1,1 +1774114564.491933,6.99,4,3992.50,54.18,1576.85,2121.16,0.00,3518413721287.935059,3518413692886.575195,21,0,6.052628,0.039697,54139836,36033978,0,0,47739,0,1,1 +1774114569.496108,1.20,4,3992.50,54.15,1577.82,2120.21,0.00,0.000000,0.000000,21,0,0.004332,0.008393,54139950,36034143,0,0,47742,0,1,1 +1774114574.496418,9.85,4,3992.50,54.57,1559.24,2136.43,0.00,0.000000,0.000000,21,0,0.028925,35.861596,54141829,36038238,0,0,47744,0,1,1 +1774114579.492556,31.69,4,3992.50,56.72,1469.24,2220.86,0.00,0.000000,0.000000,21,0,0.037349,122.868867,54144621,36050927,0,0,47747,0,1,1 +1774114584.491918,13.54,4,3992.50,54.86,1540.68,2147.78,0.00,1.538575,0.028324,237,377,0.026371,46.479630,54146425,36055862,0,0,47750,0,1,1 +1774114589.496507,1.30,4,3992.50,54.68,1547.66,2140.79,0.00,3515211183576.524414,3515211183578.033203,21,0,0.005865,0.007184,54146541,36056005,0,0,47752,0,1,1 +1774114594.493967,15.02,4,3992.50,56.21,1488.77,2200.55,0.00,0.000000,0.000000,21,0,40.088280,0.032543,54151076,36057685,0,0,47754,0,1,1 +1774114599.491913,0.85,4,3992.50,55.04,1534.20,2155.10,0.00,82471.615895,111056.930301,6888009,1921976,0.005441,0.010454,54151220,36057896,0,0,47757,0,1,1 +1774114604.491932,0.90,4,3992.50,54.71,1547.14,2142.18,0.00,3518423569959.448242,3518423541385.986816,21,0,0.004344,0.008398,54151335,36058061,0,0,47759,0,1,1 +1774114609.493040,1.25,4,3992.50,54.74,1548.53,2143.06,0.00,0.174961,0.000000,199,0,0.005021,0.010298,54151470,36058262,0,0,47762,0,1,1 +1774114614.496600,0.95,4,3992.50,54.56,1555.09,2136.27,0.00,1.830533,0.000195,238,2,0.004104,0.007751,54151577,36058414,0,0,47764,0,1,1 +1774114619.491918,0.75,4,3992.50,54.52,1556.79,2134.57,0.00,3521735110255.707031,3521735110257.667480,70,0,0.004607,0.009073,54151701,36058593,0,0,47767,0,1,1 +1774114624.492478,0.90,4,3992.50,54.44,1559.84,2131.52,0.00,0.126939,0.000000,199,0,0.004343,0.009050,54151816,36058763,0,0,47770,0,1,1 +1774114629.494200,0.90,4,3992.50,54.44,1559.89,2131.47,0.00,1.362910,0.028311,237,377,0.005152,0.010362,54151960,36058969,0,0,47772,0,1,1 +1774114634.496288,1.15,4,3992.50,54.26,1566.94,2124.42,0.00,3516968870861.107910,3516968870862.617676,21,0,0.005627,0.011395,54152108,36059191,0,0,47774,0,1,1 +1774114639.496558,1.10,4,3992.50,54.52,1562.53,2134.77,0.00,82433.359733,111005.835991,6888022,1922343,0.004379,0.008412,54152225,36059357,0,0,47777,0,1,1 +1774114644.491987,0.85,4,3992.50,54.40,1567.40,2129.92,0.00,3521656891412.771484,3521656862812.601074,21,0,0.005071,0.010327,54152363,36059559,0,0,47779,0,1,1 +1774114649.494210,0.75,4,3992.50,54.32,1570.73,2126.58,0.00,0.000000,0.000000,21,0,0.005041,0.010291,54152500,36059760,0,0,47782,0,1,1 +1774114654.496255,0.70,4,3992.50,54.31,1571.14,2126.17,0.00,1.537750,0.028309,237,377,0.004321,0.008399,54152613,36059925,0,0,47784,0,1,1 +1774114659.496621,0.75,4,3992.50,54.29,1571.56,2125.75,0.00,3518180192449.519043,3518180192451.028809,21,0,0.005423,0.011364,54152761,36060148,0,0,47787,0,1,1 +1774114664.495302,10.80,4,3992.50,55.02,1540.60,2154.26,0.00,0.000000,0.000000,21,0,0.025342,40.079711,54154404,36064677,0,0,47790,0,1,1 +1774114669.496654,1.35,4,3992.50,54.95,1537.33,2151.43,0.00,82416.979251,111014.112143,6889802,1922756,0.003575,0.009169,54154511,36064854,0,0,47792,0,1,1 +1774114674.492294,0.75,4,3992.50,54.76,1544.83,2143.80,0.00,0.024240,0.007037,6889808,1922762,0.002749,0.007630,54154595,36065000,0,0,47794,0,1,1 +1774114679.496162,0.85,4,3992.50,54.67,1548.31,2140.32,0.00,4.106101,0.104216,6890582,1923219,0.003443,0.009527,54154701,36065183,0,0,47797,0,1,1 +1774114684.495986,0.70,4,3992.50,54.68,1547.83,2140.80,0.00,3518561380214.680176,3518561351610.821289,238,2,0.003433,0.009524,54154806,36065365,0,0,47799,0,1,1 +1774114689.496677,0.65,4,3992.50,54.66,1548.52,2140.11,0.00,3517950751576.395996,3517950751578.402344,21,0,0.002746,0.008276,54154890,36065516,0,0,47802,0,1,1 +1774114694.496457,1.00,4,3992.50,54.59,1551.24,2137.39,0.00,82442.920755,111057.120757,6889809,1922892,0.005603,0.010541,54155039,36065725,0,0,47804,0,1,1 +1774114699.492591,1.10,4,3992.50,54.90,1538.97,2149.62,0.00,3521159825955.086914,3521159797319.958496,70,0,0.003411,0.009541,54155142,36065908,0,0,47807,0,1,1 +1774114704.495842,0.75,4,3992.50,54.80,1542.96,2145.66,0.00,0.000000,0.000000,70,0,0.002783,0.007659,54155229,36066057,0,0,47810,0,1,1 +1774114709.494696,0.80,4,3992.50,54.76,1544.84,2143.79,0.00,82462.255243,111077.818424,6890583,1923323,0.003572,0.009670,54155344,36066249,0,0,47812,0,1,1 +1774114714.495289,0.80,4,3992.50,54.76,1544.84,2143.79,0.00,3518019869699.968262,3518019869704.058594,6889809,1922948,0.003534,0.009616,54155456,36066439,0,0,47815,0,1,1 +1774114719.496408,0.70,4,3992.50,54.75,1544.86,2143.77,0.00,3517650141573.049805,3517650112966.404785,21,0,0.003668,0.008291,54155542,36066588,0,0,47817,0,1,1 +1774114724.496079,0.75,4,3992.50,54.75,1544.86,2143.77,0.00,82448.805843,111059.656702,6890583,1923336,0.003433,0.009525,54155647,36066770,0,0,47819,0,1,1 +1774114729.491922,1.10,4,3992.50,55.14,1530.44,2158.91,0.00,3521365123230.678711,3521365094595.889160,238,2,0.003411,0.009542,54155750,36066953,0,0,47822,0,1,1 +1774114734.496543,36.90,4,3992.50,61.36,1292.46,2402.39,0.00,3515188576351.596680,3515188576353.553223,70,0,80.247310,0.037072,54164400,36069186,0,0,47824,0,1,1 +1774114739.495910,30.56,4,3992.50,60.81,1318.35,2381.00,0.00,82453.810927,111066.545306,6890584,1923477,119.395879,0.066686,54176968,36074327,0,0,47827,0,1,1 +1774114744.492600,29.60,4,3992.50,60.73,1321.44,2377.80,0.00,3520767599266.467285,3520767570638.453613,21,0,119.068284,0.086966,54189695,36080838,0,0,47830,0,1,1 +1774114749.495507,29.63,4,3992.50,60.83,1317.69,2381.66,0.00,0.174898,0.000000,199,0,119.926602,0.102102,54202573,36088563,0,0,47832,0,1,1 +1774114754.496007,28.46,4,3992.50,60.60,1326.68,2372.71,0.00,0.000000,0.000000,199,0,118.380364,0.096457,54215244,36095802,0,0,47835,0,1,1 +1774114759.495447,28.72,4,3992.50,60.68,1323.59,2375.76,0.00,82452.481632,111064.978492,6890584,1923524,120.188203,0.044797,54227763,36099285,0,0,47837,0,1,1 +1774114764.493112,28.92,4,3992.50,60.63,1327.24,2373.66,0.00,3520081402223.815918,3520081373601.329102,21,0,118.830042,0.052421,54240047,36103280,0,0,47839,0,1,1 +1774114769.496368,29.18,4,3992.50,60.74,1324.60,2378.05,0.00,0.000000,0.000000,21,0,119.499042,0.053781,54252392,36107090,0,0,47842,0,1,1 +1774114774.496172,15.20,4,3992.50,56.39,1494.82,2207.92,0.00,0.000000,0.000000,21,0,109.958966,0.027890,54263678,36109029,0,0,47844,0,1,1 +1774114779.495857,1.15,4,3992.50,55.71,1521.48,2181.25,0.00,82444.645189,111059.956457,6889823,1923267,0.004491,0.005257,54263778,36109142,0,0,47847,0,1,1 +1774114784.496485,18.40,4,3992.50,56.00,1510.02,2192.69,0.00,0.285120,0.320175,6889852,1923911,24.153969,0.116262,54271724,36115058,0,0,47850,0,1,1 +1774114789.496129,11.31,4,3992.50,55.64,1524.14,2178.59,0.00,3518688165844.721680,3518688137227.627930,237,377,16.107586,0.077195,54277160,36119175,0,0,47852,0,1,1 +1774114794.491907,1.10,4,3992.50,54.95,1551.14,2151.58,0.00,3521410544976.571289,3521410544978.083008,21,0,0.005992,0.010487,54277294,36119368,0,0,47855,0,1,1 +1774114799.491863,0.60,4,3992.50,54.81,1556.58,2146.13,0.00,0.175002,0.000000,199,0,0.005022,0.010278,54277429,36119567,0,0,47857,0,1,1 +1774114804.496292,0.85,4,3992.50,54.81,1556.82,2145.89,0.00,1.362172,0.028295,237,377,0.005018,0.010281,54277564,36119767,0,0,47859,0,1,1 +1774114809.496751,0.70,4,3992.50,54.79,1557.52,2145.21,0.00,3518114685014.464844,3518114685015.799805,199,0,0.004343,0.008407,54277679,36119933,0,0,47862,0,1,1 +1774114814.496803,0.70,4,3992.50,54.79,1557.61,2145.11,0.00,3518400363490.738770,0.000000,21,0,0.005010,0.010290,54277813,36120133,0,0,47864,0,1,1 +1774114819.491929,1.10,4,3992.50,55.04,1547.11,2155.05,0.00,0.175171,0.000000,199,0,0.005090,0.010825,54277953,36120339,0,0,47867,0,1,1 +1774114824.496904,0.70,4,3992.50,54.89,1553.08,2148.91,0.00,82357.891439,110944.093118,6889909,1924833,0.004457,0.008676,54278077,36120513,0,0,47870,0,1,1 +1774114829.496506,0.60,4,3992.50,54.86,1553.94,2148.05,0.00,3518717535858.587891,3518717507241.835449,21,0,0.005018,0.010299,54278212,36120714,0,0,47872,0,1,1 +1774114834.493058,0.75,4,3992.50,54.77,1557.74,2144.24,0.00,2.008221,0.000195,238,2,0.005038,0.010295,54278348,36120914,0,0,47875,0,1,1 +1774114839.496297,0.70,4,3992.50,54.79,1557.02,2144.96,0.00,3516159555348.088867,3516159555350.045898,70,0,0.004408,0.008437,54278467,36121082,0,0,47877,0,1,1 +1774114844.496067,0.75,4,3992.50,54.78,1557.04,2144.95,0.00,82443.754296,111059.717212,6889909,1924977,0.005035,0.010291,54278603,36121282,0,0,47879,0,1,1 +1774114849.491913,1.05,4,3992.50,55.04,1553.70,2154.98,0.00,3521363237032.087402,3521363208391.680176,238,2,0.004568,0.009028,54278724,36121458,0,0,47882,0,1,1 +1774114854.495999,0.75,4,3992.50,54.92,1558.47,2150.21,0.00,82374.799696,110964.074748,6890683,1925459,0.004785,0.009657,54278852,36121647,0,0,47884,0,1,1 +1774114859.496173,0.70,4,3992.50,54.89,1559.69,2148.99,0.00,3518314764377.382324,3518314735767.569336,199,0,0.005022,0.010300,54278987,36121848,0,0,47887,0,1,1 +1774114864.491910,0.70,4,3992.50,54.88,1559.95,2148.73,0.00,1.833399,0.000195,238,2,0.004581,0.009028,54279109,36122024,0,0,47890,0,1,1 +1774114869.491939,1.00,4,3992.50,54.88,1560.12,2148.55,0.00,3518417270010.572266,3518417270012.531250,70,0,0.004806,0.009669,54279238,36122213,0,0,47892,0,1,1 +1774114874.492003,0.70,4,3992.50,54.88,1560.14,2148.54,0.00,82438.904753,111053.412921,6889909,1925214,0.003725,0.008160,54279341,36122371,0,0,47894,0,1,1 +1774114879.491915,21.03,4,3992.50,55.90,1517.24,2188.61,0.00,3518498895098.732422,3518498866483.352051,70,0,0.033574,83.534785,54281559,36131550,0,0,47897,0,1,1 +1774114884.492738,30.40,4,3992.50,55.97,1504.68,2191.26,0.00,0.000000,0.000000,70,0,0.049550,121.566709,54285184,36144435,0,0,47899,0,1,1 +1774114889.496140,2.46,4,3992.50,55.19,1535.21,2160.63,0.00,3516044597494.479004,0.000000,21,0,0.007424,0.012248,54285363,36144685,0,0,47902,0,1,1 +1774114894.496095,13.76,4,3992.50,56.97,1466.12,2230.69,0.00,0.000000,0.000000,21,0,40.063185,0.027537,54289792,36146343,0,0,47904,0,1,1 +1774114899.495397,1.46,4,3992.50,56.99,1465.48,2231.30,0.00,82472.780258,111275.866232,6890075,1926750,0.008633,0.013662,54289980,36146587,0,0,47907,0,1,1 +1774114904.493919,11.15,4,3992.50,55.37,1527.20,2167.84,0.00,3519477224153.986816,3519477195344.403320,238,2,0.026647,40.079118,54291888,36151125,0,0,47910,0,1,1 +1774114909.496816,1.20,4,3992.50,55.31,1528.51,2165.37,0.00,3516399919292.927246,3516399919294.757812,199,0,0.003061,0.007855,54291978,36151277,0,0,47912,0,1,1 +1774114914.493983,0.80,4,3992.50,55.27,1529.73,2164.09,0.00,3520431662972.032227,0.000000,70,0,0.002773,0.007638,54292064,36151424,0,0,47915,0,1,1 +1774114919.492894,0.90,4,3992.50,55.13,1535.34,2158.46,0.00,3519203483768.911133,0.000000,21,0,0.003447,0.009526,54292170,36151606,0,0,47917,0,1,1 +1774114924.491946,0.85,4,3992.50,55.16,1534.13,2159.68,0.00,1.538671,0.028326,237,377,0.003467,0.009565,54292278,36151791,0,0,47919,0,1,1 +1774114929.491981,0.60,4,3992.50,55.13,1535.38,2158.44,0.00,0.468454,3518412707360.760742,238,2,0.002759,0.007633,54292363,36151938,0,0,47922,0,1,1 +1774114934.496106,0.90,4,3992.50,55.11,1536.17,2157.64,0.00,3515536860737.515625,3515536860739.472656,70,0,0.004080,0.010625,54292484,36152142,0,0,47924,0,1,1 +1774114939.491911,1.15,4,3992.50,55.34,1526.95,2166.72,0.00,82534.605653,111394.190427,6890856,1927585,0.003487,0.009573,54292593,36152327,0,0,47927,0,1,1 +1774114944.496817,0.70,4,3992.50,55.20,1532.27,2161.39,0.00,3514989058532.940918,3514989029725.873535,21,0,0.002853,0.007758,54292686,36152483,0,0,47930,0,1,1 +1774114949.496382,0.75,4,3992.50,55.22,1531.70,2161.97,0.00,82472.584215,111310.438414,6890856,1927606,0.003565,0.010115,54292800,36152676,0,0,47932,0,1,1 +1774114954.496820,0.85,4,3992.50,55.22,1531.62,2162.05,0.00,3518128499435.896484,3518128499439.980957,6890082,1927230,0.003451,0.009709,54292906,36152861,0,0,47934,0,1,1 +1774114959.496124,0.80,4,3992.50,55.17,1533.49,2160.19,0.00,3518927562171.425293,3518927533327.925781,70,0,0.003136,0.008699,54293002,36153030,0,0,47937,0,1,1 +1774114964.495394,1.15,4,3992.50,55.07,1537.57,2156.10,0.00,3518950811014.662109,0.000000,21,0,0.004830,0.010229,54293131,36153228,0,0,47939,0,1,1 +1774114969.494183,38.83,4,3992.50,61.18,1307.50,2395.23,0.00,82485.393793,111327.787822,6890856,1927654,102.574014,0.046583,54303985,36156269,0,0,47942,0,1,1 +1774114974.492887,31.89,4,3992.50,61.01,1310.93,2388.62,0.00,3519349581146.529297,3519349552302.132812,237,377,121.399332,0.033477,54316333,36158561,0,0,47944,0,1,1 +1774114979.496782,30.57,4,3992.50,60.94,1313.68,2386.04,0.00,3515698372971.886230,3515698372973.395020,21,0,121.271596,0.035577,54328637,36161188,0,0,47947,0,1,1 +1774114984.495511,30.31,4,3992.50,60.94,1313.62,2386.12,0.00,82486.375981,111329.312914,6890856,1927814,119.994263,0.041292,54340756,36164210,0,0,47950,0,1,1 +1774114989.496425,30.25,4,3992.50,61.26,1301.46,2398.30,0.00,3517794333930.499023,3517794305099.984863,199,0,119.544347,0.041012,54352982,36167076,0,0,47952,0,1,1 +1774114994.495911,30.43,4,3992.50,61.14,1306.07,2393.64,0.00,3518798436062.796875,0.000000,21,0,119.179722,0.030332,54365241,36169152,0,0,47955,0,1,1 +1774114999.494559,30.11,4,3992.50,61.18,1304.46,2395.30,0.00,0.000000,0.000000,21,0,120.198838,0.024407,54377630,36170909,0,0,47957,0,1,1 +1774115004.495379,30.22,4,3992.50,60.92,1316.83,2385.02,0.00,0.048039,0.000000,70,0,119.348193,0.023380,54390038,36172394,0,0,47959,0,1,1 +1774115009.496767,9.24,4,3992.50,54.80,1556.32,2145.62,0.00,3517461113424.176758,0.000000,21,0,81.892526,0.019037,54398505,36173601,0,0,47962,0,1,1 +1774115014.495717,1.15,4,3992.50,54.41,1571.76,2130.10,0.00,82482.919544,111324.694033,6890874,1927929,0.007717,0.011058,54398686,36173832,0,0,47964,0,1,1 +1774115019.493002,17.87,4,3992.50,55.15,1540.39,2159.38,0.00,3520348742757.145508,0.149007,6890128,1928028,22.155296,0.108473,54405892,36179322,0,0,47967,0,1,1 +1774115024.491894,11.86,4,3992.50,55.04,1533.05,2154.84,0.00,4.139883,0.489757,6890922,1928934,18.111725,0.079112,54411721,36183674,0,0,47970,0,1,1 +1774115029.496394,2.15,4,3992.50,54.91,1538.95,2149.76,0.00,3515273112754.010254,3515273083941.879395,238,2,0.013114,0.015121,54412005,36183986,0,0,47972,0,1,1 +1774115034.493162,0.75,4,3992.50,54.50,1554.83,2133.89,0.00,82517.250467,111374.264240,6890927,1929038,0.004163,0.008259,54412116,36184149,0,0,47975,0,1,1 +1774115039.496124,0.90,4,3992.50,54.70,1546.98,2141.74,0.00,0.000000,0.128440,6890927,1929175,0.005019,0.010284,54412251,36184349,0,0,47977,0,1,1 +1774115044.496243,0.60,4,3992.50,54.70,1547.03,2141.68,0.00,0.000781,0.094920,6890928,1929185,0.005022,0.010278,54412386,36184548,0,0,47979,0,1,1 +1774115049.496650,0.70,4,3992.50,54.70,1547.05,2141.68,0.00,3518150909360.947754,3518150880526.719727,21,0,0.004335,0.008411,54412500,36184714,0,0,47982,0,1,1 +1774115054.495964,0.70,4,3992.50,54.70,1547.07,2141.65,0.00,0.000000,0.000000,21,0,0.005056,0.010318,54412638,36184916,0,0,47984,0,1,1 +1774115059.494956,1.10,4,3992.50,54.74,1545.24,2143.19,0.00,1.538689,0.028326,237,377,0.004463,0.008526,54412762,36185089,0,0,47987,0,1,1 +1774115064.492275,0.75,4,3992.50,54.72,1545.91,2142.27,0.00,82508.606867,111362.568745,6890928,1929548,0.005025,0.010306,54412897,36185290,0,0,47990,0,1,1 +1774115069.496782,0.75,4,3992.50,54.72,1545.72,2142.43,0.00,3515268740178.068848,3515268711367.053711,21,0,0.005018,0.010281,54413032,36185490,0,0,47992,0,1,1 +1774115074.492889,0.65,4,3992.50,54.89,1539.06,2149.11,0.00,0.175136,0.000000,199,0,0.004414,0.008446,54413151,36185658,0,0,47995,0,1,1 +1774115079.491965,0.65,4,3992.50,54.87,1539.89,2148.27,0.00,3519087308884.714844,0.000000,70,0,0.003675,0.006477,54413246,36185785,0,0,47997,0,1,1 +1774115084.496645,0.85,4,3992.50,54.67,1547.68,2140.50,0.00,1.488938,0.028294,237,377,0.005695,0.011853,54413385,36185992,0,0,47999,0,1,1 +1774115089.496587,1.10,4,3992.50,54.68,1562.18,2140.90,0.00,82461.246606,111304.342712,6890155,1929358,0.005022,0.010301,54413520,36186193,0,0,48002,0,1,1 +1774115094.496418,0.65,4,3992.50,54.58,1565.61,2137.08,0.00,0.000000,0.031544,6890155,1929396,0.004336,0.008390,54413634,36186357,0,0,48004,0,1,1 +1774115099.496840,0.80,4,3992.50,54.57,1566.09,2136.59,0.00,3518140469078.661621,3518140440238.305176,237,377,0.005022,0.010312,54413769,36186559,0,0,48007,0,1,1 +1774115104.496406,1.05,4,3992.50,54.46,1570.47,2132.19,0.00,82467.459889,111312.768373,6890159,1929419,0.004417,0.010064,54413893,36186753,0,0,48010,0,1,1 +1774115109.491909,22.77,4,3992.50,55.13,1552.38,2158.63,0.00,0.000782,56.914081,6890160,1929757,0.043183,89.220162,54416790,36196490,0,0,48012,0,1,1 +1774115114.495398,31.14,4,3992.50,55.60,1526.72,2176.71,0.00,3515983442528.656250,3515983413648.647461,238,2,0.023596,115.891505,54418416,36208858,0,0,48015,0,1,1 +1774115119.496295,7.62,4,3992.50,59.92,1350.93,2345.90,0.00,3517805833090.269531,3517805833092.276367,21,0,8.623104,0.022771,54419776,36209808,0,0,48017,0,1,1 +1774115124.494936,6.07,4,3992.50,54.68,1555.85,2140.95,0.00,0.048060,0.000000,70,0,31.459650,0.018528,54423187,36210654,0,0,48019,0,1,1 +1774115129.492315,11.25,4,3992.50,54.49,1561.14,2133.49,0.00,0.000000,0.000000,70,0,0.024964,40.092930,54424864,36215352,0,0,48022,0,1,1 +1774115134.491908,0.90,4,3992.50,54.45,1562.94,2131.69,0.00,3518723715331.714844,0.000000,21,0,0.003211,0.007873,54424955,36215505,0,0,48024,0,1,1 +1774115139.496600,0.75,4,3992.50,54.42,1563.98,2130.65,0.00,0.174836,0.000000,199,0,0.003438,0.009533,54425061,36215689,0,0,48027,0,1,1 +1774115144.495421,1.60,4,3992.50,54.41,1564.45,2130.18,0.00,1.832268,0.000195,238,2,0.002722,0.007622,54425143,36215835,0,0,48030,0,1,1 +1774115149.496539,1.50,4,3992.50,54.57,1553.25,2136.61,0.00,3517650476502.876953,3517650476504.708496,199,0,0.003432,0.010153,54425248,36216020,0,0,48032,0,1,1 +1774115154.495432,0.70,4,3992.50,54.57,1553.33,2136.61,0.00,82498.678021,111565.522399,6890386,1931333,0.003459,0.009532,54425355,36216202,0,0,48034,0,1,1 +1774115159.496206,0.80,4,3992.50,54.52,1555.47,2134.46,0.00,3517892602360.421387,3517892573304.638184,70,0,0.002746,0.007657,54425439,36216351,0,0,48037,0,1,1 +1774115164.492647,1.05,4,3992.50,54.50,1556.05,2133.88,0.00,0.000000,0.000000,70,0,0.003423,0.009518,54425543,36216532,0,0,48039,0,1,1 +1774115169.492302,1.10,4,3992.50,54.42,1559.15,2130.78,0.00,3518680130818.287109,0.000000,21,0,0.002906,0.007797,54425640,36216690,0,0,48042,0,1,1 +1774115174.494611,0.90,4,3992.50,54.45,1558.18,2131.76,0.00,0.000000,0.000000,21,0,0.002865,0.007772,54425732,36216847,0,0,48044,0,1,1 +1774115179.496242,2.56,4,3992.50,55.08,1533.52,2156.39,0.00,1.537877,0.028311,237,377,0.003493,0.009536,54425841,36217031,0,0,48047,0,1,1 +1774115184.496285,0.80,4,3992.50,54.95,1538.61,2151.33,0.00,3518407327751.908691,3518407327753.418945,21,0,0.003421,0.009534,54425945,36217214,0,0,48050,0,1,1 +1774115189.495957,0.95,4,3992.50,54.80,1544.21,2145.73,0.00,1.538480,0.028322,237,377,0.002734,0.007624,54426028,36217360,0,0,48052,0,1,1 +1774115194.492802,1.46,4,3992.50,54.54,1555.71,2135.33,0.00,3520658640272.352539,3520658640273.688477,199,0,0.005477,0.011158,54426158,36217560,0,0,48054,0,1,1 +1774115199.492046,41.25,4,3992.50,60.50,1332.08,2368.72,0.00,0.000000,0.000000,199,0,103.567742,0.050433,54437142,36220751,0,0,48057,0,1,1 +1774115204.492254,31.57,4,3992.50,60.69,1327.67,2376.06,0.00,3518290472949.633789,0.000000,70,0,122.163484,0.032326,54449632,36223091,0,0,48059,0,1,1 +1774115209.493380,29.75,4,3992.50,60.66,1328.61,2375.07,0.00,0.000000,0.000000,70,0,120.938029,0.033785,54461895,36225630,0,0,48062,0,1,1 +1774115214.491924,30.39,4,3992.50,60.99,1320.19,2387.92,0.00,3519462560658.864258,0.000000,21,0,120.199498,0.032337,54474058,36227855,0,0,48064,0,1,1 +1774115219.494470,30.10,4,3992.50,60.85,1325.62,2382.52,0.00,0.174911,0.000000,199,0,120.104238,0.036427,54486293,36230484,0,0,48067,0,1,1 +1774115224.492186,29.73,4,3992.50,60.96,1321.41,2386.63,0.00,82518.115459,111600.236636,6890388,1931648,119.419056,0.041191,54498479,36233608,0,0,48070,0,1,1 +1774115229.496663,29.99,4,3992.50,60.86,1325.38,2382.69,0.00,3515289431490.194336,3515289402447.362305,199,0,119.659437,0.057359,54510733,36237877,0,0,48072,0,1,1 +1774115234.496530,29.42,4,3992.50,60.82,1326.71,2381.32,0.00,3518531169850.551270,0.000000,70,0,119.369211,0.050975,54522943,36241571,0,0,48075,0,1,1 +1774115239.492290,9.66,4,3992.50,58.07,1431.89,2273.50,0.00,1.491597,0.028344,237,377,79.982179,0.038283,54531232,36244267,0,0,48077,0,1,1 +1774115244.496432,1.65,4,3992.50,56.07,1510.36,2195.09,0.00,3515524958552.619141,3515524958554.080078,70,0,0.006880,0.011657,54531401,36244499,0,0,48079,0,1,1 +1774115249.492627,21.86,4,3992.50,55.07,1549.39,2156.04,0.00,0.127050,0.000000,199,0,32.215566,0.139376,54541628,36251968,0,0,48082,0,1,1 +1774115254.494977,6.57,4,3992.50,54.79,1560.12,2145.30,0.00,82446.043894,111497.454842,6891219,1932827,6.039058,0.026864,54543564,36253304,0,0,48084,0,1,1 +1774115259.496574,3.91,4,3992.50,54.60,1567.89,2137.54,0.00,3517313666164.401367,3517313637108.740723,70,0,2.023418,0.023563,54544469,36254111,0,0,48087,0,1,1 +1774115264.496111,0.95,4,3992.50,54.60,1567.66,2137.77,0.00,3518763006927.447754,0.000000,21,0,0.005035,0.010301,54544605,36254312,0,0,48090,0,1,1 +1774115269.496532,1.30,4,3992.50,54.99,1552.25,2152.99,0.00,0.000000,0.000000,21,0,0.004160,0.008243,54544716,36254474,0,0,48092,0,1,1 +1774115274.496763,1.00,4,3992.50,54.68,1564.38,2140.89,0.00,0.048045,0.000000,70,0,0.005022,0.010300,54544851,36254675,0,0,48095,0,1,1 +1774115279.496474,0.95,4,3992.50,54.62,1566.78,2138.50,0.00,0.126960,0.000000,199,0,0.005054,0.010960,54544988,36254881,0,0,48097,0,1,1 +1774115284.491897,0.75,4,3992.50,54.69,1561.84,2141.43,0.00,3521660981718.666992,0.000000,70,0,0.004466,0.008540,54545112,36255054,0,0,48099,0,1,1 +1774115289.491939,1.05,4,3992.50,54.49,1569.71,2133.55,0.00,0.000000,0.000000,70,0,0.005022,0.010300,54545247,36255255,0,0,48102,0,1,1 +1774115294.491976,1.00,4,3992.50,54.47,1570.60,2132.68,0.00,1.490321,0.028320,237,377,0.007209,0.011299,54545427,36255481,0,0,48104,0,1,1 +1774115299.492002,0.80,4,3992.50,54.28,1577.92,2125.36,0.00,3518418861030.985352,3518418861032.495605,21,0,0.003038,0.006269,54545509,36255604,0,0,48107,0,1,1 +1774115304.496371,22.82,4,3992.50,54.66,1543.62,2140.08,0.00,0.174847,0.000000,199,0,0.054993,91.472762,54549367,36265796,0,0,48110,0,1,1 +1774115309.496466,29.15,4,3992.50,54.73,1533.10,2142.69,0.00,82479.138663,111727.989912,6890462,1934381,0.097598,113.592240,54556826,36278193,0,0,48112,0,1,1 +1774115314.497383,4.52,4,3992.50,59.29,1357.00,2321.15,0.00,3517791534264.416016,3517791505020.503418,70,0,1.012680,0.017222,54557292,36278638,0,0,48115,0,1,1 +1774115319.496050,10.85,4,3992.50,55.78,1494.11,2184.07,0.00,82525.358867,111786.109726,6891370,1935078,39.071580,0.024662,54561461,36280144,0,0,48117,0,1,1 +1774115324.495409,1.35,4,3992.50,55.02,1523.88,2154.28,0.00,3518887835388.653809,3518887806130.000977,238,2,0.005737,0.012526,54561612,36280368,0,0,48119,0,1,1 +1774115329.495894,1.25,4,3992.50,55.22,1517.08,2162.07,0.00,3518095957795.050781,3518095957797.008789,70,0,0.005022,0.010299,54561747,36280569,0,0,48122,0,1,1 +1774115334.496308,0.90,4,3992.50,54.76,1535.06,2143.90,0.00,82496.544123,111747.283282,6891373,1935251,0.004335,0.008389,54561861,36280733,0,0,48124,0,1,1 +1774115339.491919,0.95,4,3992.50,54.76,1535.14,2143.88,0.00,3521528380432.124023,0.040563,6890599,1934939,0.005077,0.010359,54562000,36280937,0,0,48127,0,1,1 +1774115344.495279,0.90,4,3992.50,54.65,1539.35,2139.66,0.00,3516074506449.753418,3516074477210.629395,237,377,0.004786,0.010287,54562128,36281129,0,0,48130,0,1,1 +1774115349.496023,0.95,4,3992.50,55.09,1521.82,2156.91,0.00,3517913898785.316406,3517913898786.826172,21,0,0.004602,0.009066,54562252,36281308,0,0,48132,0,1,1 +1774115354.496486,9.80,4,3992.50,55.14,1518.02,2158.95,0.00,2.006650,0.000195,238,2,0.025317,36.461109,54563854,36285460,0,0,48135,0,1,1 +1774115359.494343,2.91,4,3992.50,55.20,1515.50,2161.20,0.00,82536.792066,111836.783271,6891377,1935700,0.004967,3.616491,54564043,36286036,0,0,48137,0,1,1 +1774115364.496385,1.80,4,3992.50,54.83,1530.11,2146.63,0.00,3517001018804.772461,3517000989529.293945,238,2,0.003432,0.009495,54564148,36286216,0,0,48139,0,1,1 +1774115369.491932,0.85,4,3992.50,54.82,1530.41,2146.33,0.00,82570.834602,111888.563827,6890603,1935432,0.002736,0.007665,54564231,36286365,0,0,48142,0,1,1 +1774115374.491908,0.95,4,3992.50,54.77,1532.57,2144.18,0.00,0.000000,0.004688,6890603,1935436,0.003433,0.009524,54564336,36286547,0,0,48144,0,1,1 diff --git a/evaluation/data/pipeline_full_cycle_run1/pipeline.duckdb b/evaluation/data/pipeline_full_cycle_run1/pipeline.duckdb new file mode 100644 index 0000000..91452f2 Binary files /dev/null and b/evaluation/data/pipeline_full_cycle_run1/pipeline.duckdb differ diff --git a/evaluation/data/pipeline_full_cycle_run1/pipeline.log b/evaluation/data/pipeline_full_cycle_run1/pipeline.log new file mode 100644 index 0000000..cd7f8a6 --- /dev/null +++ b/evaluation/data/pipeline_full_cycle_run1/pipeline.log @@ -0,0 +1,33195 @@ +2026/03/21 11:18:49 detector: Ensemble method=sead contamination=0.15 +2026/03/21 11:18:49 detector: SEAD η=0.100 λ=0.010 quantile_window=300 +2026/03/21 11:18:49 detector: auto-scaling enabled +2026/03/21 11:18:49 pipeline started – waiting for SIGINT / SIGTERM +2026/03/21 11:18:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:18:54 ───────────────────────────────────────────────── +2026/03/21 11:18:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:18:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:18:54.068958032Z"} +2026/03/21 11:18:59 [metric_collector] {"stage_name":"metric_collector","events_processed":4,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0.8,"last_update":"2026-03-21T11:18:54.069110524Z"} +2026/03/21 11:18:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:18:54.079183117Z"} +2026/03/21 11:18:59 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:18:54.210432166Z"} +2026/03/21 11:18:59 [transform_engine] {"stage_name":"transform_engine","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:18:54.210452445Z"} +2026/03/21 11:18:59 ───────────────────────────────────────────────── +2026/03/21 11:19:04 ── Pipeline Health ────────────────────────────── +2026/03/21 11:19:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:18:59.068301657Z"} +2026/03/21 11:19:04 [metric_collector] {"stage_name":"metric_collector","events_processed":9,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1.8,"last_update":"2026-03-21T11:18:59.068618084Z"} +2026/03/21 11:19:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:18:59.076790327Z"} +2026/03/21 11:19:04 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:18:59.209959684Z"} +2026/03/21 11:19:04 [transform_engine] {"stage_name":"transform_engine","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:18:59.209969873Z"} +2026/03/21 11:19:04 ───────────────────────────────────────────────── +2026/03/21 11:19:09 ── Pipeline Health ────────────────────────────── +2026/03/21 11:19:09 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:19:04.20996234Z"} +2026/03/21 11:19:09 [transform_engine] {"stage_name":"transform_engine","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:19:04.209973441Z"} +2026/03/21 11:19:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:19:04.068851913Z"} +2026/03/21 11:19:09 [metric_collector] {"stage_name":"metric_collector","events_processed":14,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2.8,"last_update":"2026-03-21T11:19:04.069157919Z"} +2026/03/21 11:19:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:19:04.078678385Z"} +2026/03/21 11:19:09 ───────────────────────────────────────────────── +2026/03/21 11:19:14 ── Pipeline Health ────────────────────────────── +2026/03/21 11:19:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:19:09.068708718Z"} +2026/03/21 11:19:14 [metric_collector] {"stage_name":"metric_collector","events_processed":19,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3.8,"last_update":"2026-03-21T11:19:09.069071934Z"} +2026/03/21 11:19:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":10,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:19:09.078268429Z"} +2026/03/21 11:19:14 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:19:09.21066253Z"} +2026/03/21 11:19:14 [transform_engine] {"stage_name":"transform_engine","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:19:09.21067762Z"} +2026/03/21 11:19:14 ───────────────────────────────────────────────── +2026/03/21 11:19:19 ── Pipeline Health ────────────────────────────── +2026/03/21 11:19:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:19:14.068603605Z"} +2026/03/21 11:19:19 [metric_collector] {"stage_name":"metric_collector","events_processed":24,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4.8,"last_update":"2026-03-21T11:19:14.068769593Z"} +2026/03/21 11:19:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":12,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:19:14.078702258Z"} +2026/03/21 11:19:19 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:19:14.209961445Z"} +2026/03/21 11:19:19 [transform_engine] {"stage_name":"transform_engine","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:19:14.209971415Z"} +2026/03/21 11:19:19 ───────────────────────────────────────────────── +2026/03/21 11:19:24 ── Pipeline Health ────────────────────────────── +2026/03/21 11:19:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:19:19.068650457Z"} +2026/03/21 11:19:24 [metric_collector] {"stage_name":"metric_collector","events_processed":29,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5.8,"last_update":"2026-03-21T11:19:19.069208166Z"} +2026/03/21 11:19:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":14,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:19:19.080455679Z"} +2026/03/21 11:19:24 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:19:19.210960952Z"} +2026/03/21 11:19:24 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":126.959973,"throughput_eps":0,"last_update":"2026-03-21T11:19:19.336675059Z"} +2026/03/21 11:19:24 ───────────────────────────────────────────────── +2026/03/21 11:19:29 ── Pipeline Health ────────────────────────────── +2026/03/21 11:19:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:19:29.068163363Z"} +2026/03/21 11:19:29 [metric_collector] {"stage_name":"metric_collector","events_processed":34,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6.8,"last_update":"2026-03-21T11:19:24.069121571Z"} +2026/03/21 11:19:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":16,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:19:24.077810655Z"} +2026/03/21 11:19:29 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.592271,"throughput_eps":0,"last_update":"2026-03-21T11:19:24.210180549Z"} +2026/03/21 11:19:29 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":126.959973,"throughput_eps":0,"last_update":"2026-03-21T11:19:24.210148709Z"} +2026/03/21 11:19:29 ───────────────────────────────────────────────── +Saved state: 1 clusters, 1 messages, reason: cluster_created +Saved state: 2 clusters, 2 messages, reason: cluster_created +Saved state: 2 clusters, 3 messages, reason: cluster_template_changed +Saved state: 3 clusters, 4 messages, reason: cluster_created +Saved state: 4 clusters, 5 messages, reason: cluster_created +2026/03/21 11:19:34 ── Pipeline Health ────────────────────────────── +2026/03/21 11:19:34 [metric_collector] {"stage_name":"metric_collector","events_processed":39,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7.8,"last_update":"2026-03-21T11:19:29.068728596Z"} +2026/03/21 11:19:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":18,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:19:29.077643122Z"} +2026/03/21 11:19:34 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.592271,"throughput_eps":0,"last_update":"2026-03-21T11:19:29.210925775Z"} +2026/03/21 11:19:34 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":126.959973,"throughput_eps":0,"last_update":"2026-03-21T11:19:29.209744682Z"} +2026/03/21 11:19:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:19:29.068163363Z"} +2026/03/21 11:19:34 ───────────────────────────────────────────────── +2026/03/21 11:19:39 ── Pipeline Health ────────────────────────────── +2026/03/21 11:19:39 [log_collector] {"stage_name":"log_collector","events_processed":5,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1,"last_update":"2026-03-21T11:19:34.068721399Z"} +2026/03/21 11:19:39 [metric_collector] {"stage_name":"metric_collector","events_processed":44,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":8.8,"last_update":"2026-03-21T11:19:34.069097339Z"} +2026/03/21 11:19:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":20,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:19:34.080663002Z"} +2026/03/21 11:19:39 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.592271,"throughput_eps":0,"last_update":"2026-03-21T11:19:34.209925816Z"} +2026/03/21 11:19:39 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":126.959973,"throughput_eps":0,"last_update":"2026-03-21T11:19:34.209903182Z"} +2026/03/21 11:19:39 ───────────────────────────────────────────────── +2026/03/21 11:19:44 ── Pipeline Health ────────────────────────────── +2026/03/21 11:19:44 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.592271,"throughput_eps":0,"last_update":"2026-03-21T11:19:39.21085531Z"} +2026/03/21 11:19:44 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":126.959973,"throughput_eps":0,"last_update":"2026-03-21T11:19:39.209679047Z"} +2026/03/21 11:19:44 [log_collector] {"stage_name":"log_collector","events_processed":5,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1,"last_update":"2026-03-21T11:19:39.068957485Z"} +2026/03/21 11:19:44 [metric_collector] {"stage_name":"metric_collector","events_processed":49,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":9.8,"last_update":"2026-03-21T11:19:39.068950882Z"} +2026/03/21 11:19:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":22,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:19:39.078533587Z"} +2026/03/21 11:19:44 ───────────────────────────────────────────────── +2026/03/21 11:19:49 ── Pipeline Health ────────────────────────────── +2026/03/21 11:19:49 [log_collector] {"stage_name":"log_collector","events_processed":5,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1,"last_update":"2026-03-21T11:19:44.068623259Z"} +2026/03/21 11:19:49 [metric_collector] {"stage_name":"metric_collector","events_processed":54,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":10.8,"last_update":"2026-03-21T11:19:44.068915739Z"} +2026/03/21 11:19:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":24,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:19:44.0776613Z"} +2026/03/21 11:19:49 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.592271,"throughput_eps":0,"last_update":"2026-03-21T11:19:44.209886659Z"} +2026/03/21 11:19:49 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":126.959973,"throughput_eps":0,"last_update":"2026-03-21T11:19:44.20989821Z"} +2026/03/21 11:19:49 ───────────────────────────────────────────────── +2026/03/21 11:19:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:19:54 [metric_collector] {"stage_name":"metric_collector","events_processed":59,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":11.8,"last_update":"2026-03-21T11:19:49.068338482Z"} +2026/03/21 11:19:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":26,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:19:49.074982869Z"} +2026/03/21 11:19:54 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.592271,"throughput_eps":0,"last_update":"2026-03-21T11:19:49.210245365Z"} +2026/03/21 11:19:54 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":121.91029060000002,"throughput_eps":0,"last_update":"2026-03-21T11:19:49.311930185Z"} +2026/03/21 11:19:54 [log_collector] {"stage_name":"log_collector","events_processed":5,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1,"last_update":"2026-03-21T11:19:49.068112529Z"} +2026/03/21 11:19:54 ───────────────────────────────────────────────── +2026/03/21 11:19:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:19:59 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":121.91029060000002,"throughput_eps":0,"last_update":"2026-03-21T11:19:54.210513867Z"} +2026/03/21 11:19:59 [log_collector] {"stage_name":"log_collector","events_processed":5,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1,"last_update":"2026-03-21T11:19:54.068453611Z"} +2026/03/21 11:19:59 [metric_collector] {"stage_name":"metric_collector","events_processed":64,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":12.8,"last_update":"2026-03-21T11:19:54.068678512Z"} +2026/03/21 11:19:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":28,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:19:54.082258974Z"} +2026/03/21 11:19:59 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.798566800000001,"throughput_eps":0,"last_update":"2026-03-21T11:19:54.210440076Z"} +2026/03/21 11:19:59 ───────────────────────────────────────────────── +2026/03/21 11:20:04 ── Pipeline Health ────────────────────────────── +2026/03/21 11:20:04 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.798566800000001,"throughput_eps":0,"last_update":"2026-03-21T11:19:59.21003768Z"} +2026/03/21 11:20:04 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":121.91029060000002,"throughput_eps":0,"last_update":"2026-03-21T11:19:59.210080681Z"} +2026/03/21 11:20:04 [log_collector] {"stage_name":"log_collector","events_processed":5,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1,"last_update":"2026-03-21T11:19:59.068073888Z"} +2026/03/21 11:20:04 [metric_collector] {"stage_name":"metric_collector","events_processed":68,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":13.6,"last_update":"2026-03-21T11:19:59.067953017Z"} +2026/03/21 11:20:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":30,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:19:59.075727398Z"} +2026/03/21 11:20:04 ───────────────────────────────────────────────── +2026/03/21 11:20:09 ── Pipeline Health ────────────────────────────── +2026/03/21 11:20:09 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":121.91029060000002,"throughput_eps":0,"last_update":"2026-03-21T11:20:04.210436516Z"} +2026/03/21 11:20:09 [log_collector] {"stage_name":"log_collector","events_processed":5,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1,"last_update":"2026-03-21T11:20:04.068627773Z"} +2026/03/21 11:20:09 [metric_collector] {"stage_name":"metric_collector","events_processed":74,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":14.8,"last_update":"2026-03-21T11:20:04.068837805Z"} +2026/03/21 11:20:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":32,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:20:04.081421628Z"} +2026/03/21 11:20:09 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.798566800000001,"throughput_eps":0,"last_update":"2026-03-21T11:20:04.210383705Z"} +2026/03/21 11:20:09 ───────────────────────────────────────────────── +Saved state: 5 clusters, 6 messages, reason: cluster_created +Saved state: 6 clusters, 9 messages, reason: cluster_created +Saved state: 6 clusters, 10 messages, reason: cluster_template_changed +Saved state: 7 clusters, 11 messages, reason: cluster_created +Saved state: 7 clusters, 12 messages, reason: cluster_template_changed +Saved state: 7 clusters, 13 messages, reason: cluster_template_changed +Saved state: 7 clusters, 14 messages, reason: cluster_template_changed +2026/03/21 11:20:14 ── Pipeline Health ────────────────────────────── +2026/03/21 11:20:14 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.798566800000001,"throughput_eps":0,"last_update":"2026-03-21T11:20:09.210373696Z"} +2026/03/21 11:20:14 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":121.91029060000002,"throughput_eps":0,"last_update":"2026-03-21T11:20:09.210392833Z"} +2026/03/21 11:20:14 [log_collector] {"stage_name":"log_collector","events_processed":5,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1,"last_update":"2026-03-21T11:20:09.068217487Z"} +2026/03/21 11:20:14 [metric_collector] {"stage_name":"metric_collector","events_processed":79,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":15.8,"last_update":"2026-03-21T11:20:09.06828674Z"} +2026/03/21 11:20:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":34,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:20:09.07505292Z"} +2026/03/21 11:20:14 ───────────────────────────────────────────────── +Saved state: 8 clusters, 15 messages, reason: cluster_created +Saved state: 8 clusters, 16 messages, reason: cluster_template_changed +Saved state: 9 clusters, 49 messages, reason: cluster_created +2026/03/21 11:20:19 ── Pipeline Health ────────────────────────────── +2026/03/21 11:20:19 [log_collector] {"stage_name":"log_collector","events_processed":14,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2.8,"last_update":"2026-03-21T11:20:14.068833666Z"} +2026/03/21 11:20:19 [metric_collector] {"stage_name":"metric_collector","events_processed":84,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":16.8,"last_update":"2026-03-21T11:20:14.069045371Z"} +2026/03/21 11:20:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":36,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:20:14.075536725Z"} +2026/03/21 11:20:19 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.798566800000001,"throughput_eps":0,"last_update":"2026-03-21T11:20:14.210915974Z"} +2026/03/21 11:20:19 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":121.91029060000002,"throughput_eps":0,"last_update":"2026-03-21T11:20:14.209749138Z"} +2026/03/21 11:20:19 ───────────────────────────────────────────────── +2026/03/21 11:20:24 ── Pipeline Health ────────────────────────────── +2026/03/21 11:20:24 [metric_collector] {"stage_name":"metric_collector","events_processed":89,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":17.8,"last_update":"2026-03-21T11:20:19.068693133Z"} +2026/03/21 11:20:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":38,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:20:19.076867681Z"} +2026/03/21 11:20:24 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.798566800000001,"throughput_eps":0,"last_update":"2026-03-21T11:20:19.210459525Z"} +2026/03/21 11:20:24 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":122.56669988000003,"throughput_eps":0,"last_update":"2026-03-21T11:20:19.33502426Z"} +2026/03/21 11:20:24 [log_collector] {"stage_name":"log_collector","events_processed":352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":70.4,"last_update":"2026-03-21T11:20:24.068473396Z"} +2026/03/21 11:20:24 ───────────────────────────────────────────────── +2026/03/21 11:20:29 ── Pipeline Health ────────────────────────────── +2026/03/21 11:20:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":40,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:20:24.076055068Z"} +2026/03/21 11:20:29 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.392624040000001,"throughput_eps":0,"last_update":"2026-03-21T11:20:24.210568969Z"} +2026/03/21 11:20:29 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":122.56669988000003,"throughput_eps":0,"last_update":"2026-03-21T11:20:24.210530936Z"} +2026/03/21 11:20:29 [log_collector] {"stage_name":"log_collector","events_processed":352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":70.4,"last_update":"2026-03-21T11:20:24.068473396Z"} +2026/03/21 11:20:29 [metric_collector] {"stage_name":"metric_collector","events_processed":94,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":18.8,"last_update":"2026-03-21T11:20:24.06882481Z"} +2026/03/21 11:20:29 ───────────────────────────────────────────────── +2026/03/21 11:20:34 ── Pipeline Health ────────────────────────────── +2026/03/21 11:20:34 [log_collector] {"stage_name":"log_collector","events_processed":363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":72.6,"last_update":"2026-03-21T11:20:34.068285239Z"} +2026/03/21 11:20:34 [metric_collector] {"stage_name":"metric_collector","events_processed":99,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":19.8,"last_update":"2026-03-21T11:20:29.069292987Z"} +2026/03/21 11:20:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":42,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:20:29.076796279Z"} +2026/03/21 11:20:34 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.392624040000001,"throughput_eps":0,"last_update":"2026-03-21T11:20:29.210171089Z"} +2026/03/21 11:20:34 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":122.56669988000003,"throughput_eps":0,"last_update":"2026-03-21T11:20:29.210059696Z"} +2026/03/21 11:20:34 ───────────────────────────────────────────────── +2026/03/21 11:20:39 ── Pipeline Health ────────────────────────────── +2026/03/21 11:20:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":44,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:20:34.078614464Z"} +2026/03/21 11:20:39 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.392624040000001,"throughput_eps":0,"last_update":"2026-03-21T11:20:34.209866457Z"} +2026/03/21 11:20:39 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":122.56669988000003,"throughput_eps":0,"last_update":"2026-03-21T11:20:34.209814948Z"} +2026/03/21 11:20:39 [log_collector] {"stage_name":"log_collector","events_processed":363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":72.6,"last_update":"2026-03-21T11:20:34.068285239Z"} +2026/03/21 11:20:39 [metric_collector] {"stage_name":"metric_collector","events_processed":104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":20.8,"last_update":"2026-03-21T11:20:34.068823479Z"} +2026/03/21 11:20:39 ───────────────────────────────────────────────── +2026/03/21 11:20:44 ── Pipeline Health ────────────────────────────── +2026/03/21 11:20:44 [log_collector] {"stage_name":"log_collector","events_processed":363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":72.6,"last_update":"2026-03-21T11:20:39.068876317Z"} +2026/03/21 11:20:44 [metric_collector] {"stage_name":"metric_collector","events_processed":109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":21.8,"last_update":"2026-03-21T11:20:39.069089266Z"} +2026/03/21 11:20:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":46,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:20:39.077974504Z"} +2026/03/21 11:20:44 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.392624040000001,"throughput_eps":0,"last_update":"2026-03-21T11:20:39.210212345Z"} +2026/03/21 11:20:44 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":122.56669988000003,"throughput_eps":0,"last_update":"2026-03-21T11:20:39.210235139Z"} +2026/03/21 11:20:44 ───────────────────────────────────────────────── +2026/03/21 11:20:49 ── Pipeline Health ────────────────────────────── +2026/03/21 11:20:49 [log_collector] {"stage_name":"log_collector","events_processed":363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":72.6,"last_update":"2026-03-21T11:20:49.068113395Z"} +2026/03/21 11:20:49 [metric_collector] {"stage_name":"metric_collector","events_processed":114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":22.8,"last_update":"2026-03-21T11:20:44.069292309Z"} +2026/03/21 11:20:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":48,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:20:44.080629756Z"} +2026/03/21 11:20:49 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.392624040000001,"throughput_eps":0,"last_update":"2026-03-21T11:20:44.210965353Z"} +2026/03/21 11:20:49 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":122.56669988000003,"throughput_eps":0,"last_update":"2026-03-21T11:20:44.209766557Z"} +2026/03/21 11:20:49 ───────────────────────────────────────────────── +2026/03/21 11:20:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:20:54 [transform_engine] {"stage_name":"transform_engine","events_processed":4,"events_dropped":0,"avg_latency_ms":120.59491050400004,"throughput_eps":0,"last_update":"2026-03-21T11:20:49.322779086Z"} +2026/03/21 11:20:54 [log_collector] {"stage_name":"log_collector","events_processed":363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":72.6,"last_update":"2026-03-21T11:20:49.068113395Z"} +2026/03/21 11:20:54 [metric_collector] {"stage_name":"metric_collector","events_processed":119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":23.8,"last_update":"2026-03-21T11:20:49.068516948Z"} +2026/03/21 11:20:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":50,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:20:49.077663557Z"} +2026/03/21 11:20:54 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.392624040000001,"throughput_eps":0,"last_update":"2026-03-21T11:20:49.210167017Z"} +2026/03/21 11:20:54 ───────────────────────────────────────────────── +2026/03/21 11:20:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:20:59 [log_collector] {"stage_name":"log_collector","events_processed":363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":72.6,"last_update":"2026-03-21T11:20:54.068504126Z"} +2026/03/21 11:20:59 [metric_collector] {"stage_name":"metric_collector","events_processed":124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":24.8,"last_update":"2026-03-21T11:20:54.068869426Z"} +2026/03/21 11:20:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":52,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:20:54.077483004Z"} +2026/03/21 11:20:59 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.457744632000002,"throughput_eps":0,"last_update":"2026-03-21T11:20:54.210905053Z"} +2026/03/21 11:20:59 [transform_engine] {"stage_name":"transform_engine","events_processed":4,"events_dropped":0,"avg_latency_ms":120.59491050400004,"throughput_eps":0,"last_update":"2026-03-21T11:20:54.209727658Z"} +2026/03/21 11:20:59 ───────────────────────────────────────────────── +2026/03/21 11:21:04 ── Pipeline Health ────────────────────────────── +2026/03/21 11:21:04 [transform_engine] {"stage_name":"transform_engine","events_processed":4,"events_dropped":0,"avg_latency_ms":120.59491050400004,"throughput_eps":0,"last_update":"2026-03-21T11:20:59.209710696Z"} +2026/03/21 11:21:04 [log_collector] {"stage_name":"log_collector","events_processed":363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":72.6,"last_update":"2026-03-21T11:20:59.068621391Z"} +2026/03/21 11:21:04 [metric_collector] {"stage_name":"metric_collector","events_processed":129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":25.8,"last_update":"2026-03-21T11:20:59.068908781Z"} +2026/03/21 11:21:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":54,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:20:59.077436545Z"} +2026/03/21 11:21:04 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.457744632000002,"throughput_eps":0,"last_update":"2026-03-21T11:20:59.210917588Z"} +2026/03/21 11:21:04 ───────────────────────────────────────────────── +2026/03/21 11:21:09 ── Pipeline Health ────────────────────────────── +2026/03/21 11:21:09 [log_collector] {"stage_name":"log_collector","events_processed":363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":72.6,"last_update":"2026-03-21T11:21:04.068636398Z"} +2026/03/21 11:21:09 [metric_collector] {"stage_name":"metric_collector","events_processed":134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":26.8,"last_update":"2026-03-21T11:21:04.069297344Z"} +2026/03/21 11:21:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":56,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:21:04.078119041Z"} +2026/03/21 11:21:09 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.457744632000002,"throughput_eps":0,"last_update":"2026-03-21T11:21:04.21036637Z"} +2026/03/21 11:21:09 [transform_engine] {"stage_name":"transform_engine","events_processed":4,"events_dropped":0,"avg_latency_ms":120.59491050400004,"throughput_eps":0,"last_update":"2026-03-21T11:21:04.21037682Z"} +2026/03/21 11:21:09 ───────────────────────────────────────────────── +2026/03/21 11:21:14 ── Pipeline Health ────────────────────────────── +2026/03/21 11:21:14 [log_collector] {"stage_name":"log_collector","events_processed":363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":72.6,"last_update":"2026-03-21T11:21:09.06874969Z"} +2026/03/21 11:21:14 [metric_collector] {"stage_name":"metric_collector","events_processed":139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":27.8,"last_update":"2026-03-21T11:21:09.069158113Z"} +2026/03/21 11:21:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":58,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:21:09.078382131Z"} +2026/03/21 11:21:14 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.457744632000002,"throughput_eps":0,"last_update":"2026-03-21T11:21:09.210696979Z"} +2026/03/21 11:21:14 [transform_engine] {"stage_name":"transform_engine","events_processed":4,"events_dropped":0,"avg_latency_ms":120.59491050400004,"throughput_eps":0,"last_update":"2026-03-21T11:21:09.210705666Z"} +2026/03/21 11:21:14 ───────────────────────────────────────────────── +2026/03/21 11:21:19 ── Pipeline Health ────────────────────────────── +2026/03/21 11:21:19 [log_collector] {"stage_name":"log_collector","events_processed":363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":72.6,"last_update":"2026-03-21T11:21:14.068841899Z"} +2026/03/21 11:21:19 [metric_collector] {"stage_name":"metric_collector","events_processed":144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":28.8,"last_update":"2026-03-21T11:21:14.069062021Z"} +2026/03/21 11:21:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":60,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:21:14.079341321Z"} +2026/03/21 11:21:19 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.457744632000002,"throughput_eps":0,"last_update":"2026-03-21T11:21:14.210731307Z"} +2026/03/21 11:21:19 [transform_engine] {"stage_name":"transform_engine","events_processed":4,"events_dropped":0,"avg_latency_ms":120.59491050400004,"throughput_eps":0,"last_update":"2026-03-21T11:21:14.210741698Z"} +2026/03/21 11:21:19 ───────────────────────────────────────────────── +2026/03/21 11:21:24 ── Pipeline Health ────────────────────────────── +2026/03/21 11:21:24 [metric_collector] {"stage_name":"metric_collector","events_processed":149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":29.8,"last_update":"2026-03-21T11:21:19.069190931Z"} +2026/03/21 11:21:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":62,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:21:19.078532503Z"} +2026/03/21 11:21:24 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.457744632000002,"throughput_eps":0,"last_update":"2026-03-21T11:21:19.209892112Z"} +2026/03/21 11:21:24 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":114.85907380320005,"throughput_eps":0,"last_update":"2026-03-21T11:21:19.301694171Z"} +2026/03/21 11:21:24 [log_collector] {"stage_name":"log_collector","events_processed":363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":72.6,"last_update":"2026-03-21T11:21:19.068717404Z"} +2026/03/21 11:21:24 ───────────────────────────────────────────────── +2026/03/21 11:21:29 ── Pipeline Health ────────────────────────────── +2026/03/21 11:21:29 [log_collector] {"stage_name":"log_collector","events_processed":363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":72.6,"last_update":"2026-03-21T11:21:24.068181726Z"} +2026/03/21 11:21:29 [metric_collector] {"stage_name":"metric_collector","events_processed":154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":30.8,"last_update":"2026-03-21T11:21:24.068913337Z"} +2026/03/21 11:21:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":64,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:21:24.078323362Z"} +2026/03/21 11:21:29 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":4.771131705600002,"throughput_eps":0,"last_update":"2026-03-21T11:21:24.210731819Z"} +2026/03/21 11:21:29 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":114.85907380320005,"throughput_eps":0,"last_update":"2026-03-21T11:21:24.210740375Z"} +2026/03/21 11:21:29 ───────────────────────────────────────────────── +2026/03/21 11:21:34 ── Pipeline Health ────────────────────────────── +2026/03/21 11:21:34 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":4.771131705600002,"throughput_eps":0,"last_update":"2026-03-21T11:21:29.210574364Z"} +2026/03/21 11:21:34 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":114.85907380320005,"throughput_eps":0,"last_update":"2026-03-21T11:21:29.210589012Z"} +2026/03/21 11:21:34 [log_collector] {"stage_name":"log_collector","events_processed":363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":72.6,"last_update":"2026-03-21T11:21:29.068729463Z"} +2026/03/21 11:21:34 [metric_collector] {"stage_name":"metric_collector","events_processed":159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":31.8,"last_update":"2026-03-21T11:21:29.069099491Z"} +2026/03/21 11:21:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":66,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:21:29.077240424Z"} +2026/03/21 11:21:34 ───────────────────────────────────────────────── +Saved state: 9 clusters, 364 messages, reason: cluster_template_changed +Saved state: 10 clusters, 365 messages, reason: cluster_created +2026/03/21 11:21:39 ── Pipeline Health ────────────────────────────── +2026/03/21 11:21:39 [log_collector] {"stage_name":"log_collector","events_processed":363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":72.6,"last_update":"2026-03-21T11:21:34.068078229Z"} +2026/03/21 11:21:39 [metric_collector] {"stage_name":"metric_collector","events_processed":164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":32.8,"last_update":"2026-03-21T11:21:34.068557687Z"} +2026/03/21 11:21:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":68,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:21:34.077534091Z"} +2026/03/21 11:21:39 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":4.771131705600002,"throughput_eps":0,"last_update":"2026-03-21T11:21:34.210826952Z"} +2026/03/21 11:21:39 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":114.85907380320005,"throughput_eps":0,"last_update":"2026-03-21T11:21:34.209710675Z"} +2026/03/21 11:21:39 ───────────────────────────────────────────────── +Saved state: 10 clusters, 370 messages, reason: cluster_template_changed +Saved state: 11 clusters, 376 messages, reason: cluster_created +2026/03/21 11:21:44 ── Pipeline Health ────────────────────────────── +2026/03/21 11:21:44 [metric_collector] {"stage_name":"metric_collector","events_processed":169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":33.8,"last_update":"2026-03-21T11:21:39.069134486Z"} +2026/03/21 11:21:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":70,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:21:39.074861906Z"} +2026/03/21 11:21:44 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":4.771131705600002,"throughput_eps":0,"last_update":"2026-03-21T11:21:39.210496564Z"} +2026/03/21 11:21:44 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":114.85907380320005,"throughput_eps":0,"last_update":"2026-03-21T11:21:39.210506552Z"} +2026/03/21 11:21:44 [log_collector] {"stage_name":"log_collector","events_processed":366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":73.2,"last_update":"2026-03-21T11:21:39.068573922Z"} +2026/03/21 11:21:44 ───────────────────────────────────────────────── +2026/03/21 11:21:49 ── Pipeline Health ────────────────────────────── +2026/03/21 11:21:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":72,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:21:44.076179151Z"} +2026/03/21 11:21:49 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":4.771131705600002,"throughput_eps":0,"last_update":"2026-03-21T11:21:44.210445818Z"} +2026/03/21 11:21:49 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":114.85907380320005,"throughput_eps":0,"last_update":"2026-03-21T11:21:44.210456729Z"} +2026/03/21 11:21:49 [log_collector] {"stage_name":"log_collector","events_processed":376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":75.2,"last_update":"2026-03-21T11:21:44.068851726Z"} +2026/03/21 11:21:49 [metric_collector] {"stage_name":"metric_collector","events_processed":174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":34.8,"last_update":"2026-03-21T11:21:44.06919814Z"} +2026/03/21 11:21:49 ───────────────────────────────────────────────── +2026/03/21 11:21:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:21:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":74,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:21:49.075429665Z"} +2026/03/21 11:21:54 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":4.771131705600002,"throughput_eps":0,"last_update":"2026-03-21T11:21:49.210896671Z"} +2026/03/21 11:21:54 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":255.61538864256005,"throughput_eps":0,"last_update":"2026-03-21T11:21:50.028331379Z"} +2026/03/21 11:21:54 [log_collector] {"stage_name":"log_collector","events_processed":391,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":78.2,"last_update":"2026-03-21T11:21:49.068288356Z"} +2026/03/21 11:21:54 [metric_collector] {"stage_name":"metric_collector","events_processed":179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":35.8,"last_update":"2026-03-21T11:21:49.068862155Z"} +2026/03/21 11:21:54 ───────────────────────────────────────────────── +2026/03/21 11:21:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:21:59 [metric_collector] {"stage_name":"metric_collector","events_processed":184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":36.8,"last_update":"2026-03-21T11:21:54.069082265Z"} +2026/03/21 11:21:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":76,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:21:54.077861391Z"} +2026/03/21 11:21:59 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":4.6535439644800025,"throughput_eps":0,"last_update":"2026-03-21T11:21:54.210247615Z"} +2026/03/21 11:21:59 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":255.61538864256005,"throughput_eps":0,"last_update":"2026-03-21T11:21:54.210143025Z"} +2026/03/21 11:21:59 [log_collector] {"stage_name":"log_collector","events_processed":393,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":78.6,"last_update":"2026-03-21T11:21:54.068720332Z"} +2026/03/21 11:21:59 ───────────────────────────────────────────────── +2026/03/21 11:22:04 ── Pipeline Health ────────────────────────────── +2026/03/21 11:22:04 [log_collector] {"stage_name":"log_collector","events_processed":393,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":78.6,"last_update":"2026-03-21T11:21:59.068833566Z"} +2026/03/21 11:22:04 [metric_collector] {"stage_name":"metric_collector","events_processed":189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":37.8,"last_update":"2026-03-21T11:21:59.069039029Z"} +2026/03/21 11:22:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":78,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:21:59.078334224Z"} +2026/03/21 11:22:04 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":4.6535439644800025,"throughput_eps":0,"last_update":"2026-03-21T11:21:59.210760245Z"} +2026/03/21 11:22:04 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":255.61538864256005,"throughput_eps":0,"last_update":"2026-03-21T11:21:59.210773139Z"} +2026/03/21 11:22:04 ───────────────────────────────────────────────── +2026/03/21 11:22:09 ── Pipeline Health ────────────────────────────── +2026/03/21 11:22:09 [log_collector] {"stage_name":"log_collector","events_processed":406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":81.2,"last_update":"2026-03-21T11:22:04.068135445Z"} +2026/03/21 11:22:09 [metric_collector] {"stage_name":"metric_collector","events_processed":194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":38.8,"last_update":"2026-03-21T11:22:04.068520032Z"} +2026/03/21 11:22:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":80,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:22:04.075976784Z"} +2026/03/21 11:22:09 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":4.6535439644800025,"throughput_eps":0,"last_update":"2026-03-21T11:22:04.210248451Z"} +2026/03/21 11:22:09 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":255.61538864256005,"throughput_eps":0,"last_update":"2026-03-21T11:22:04.210226318Z"} +2026/03/21 11:22:09 ───────────────────────────────────────────────── +2026/03/21 11:22:14 ── Pipeline Health ────────────────────────────── +2026/03/21 11:22:14 [metric_collector] {"stage_name":"metric_collector","events_processed":198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":39.6,"last_update":"2026-03-21T11:22:09.068782066Z"} +2026/03/21 11:22:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":82,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:22:09.077438296Z"} +2026/03/21 11:22:14 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":4.6535439644800025,"throughput_eps":0,"last_update":"2026-03-21T11:22:09.211833097Z"} +2026/03/21 11:22:14 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":255.61538864256005,"throughput_eps":0,"last_update":"2026-03-21T11:22:09.209739889Z"} +2026/03/21 11:22:14 [log_collector] {"stage_name":"log_collector","events_processed":407,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":81.4,"last_update":"2026-03-21T11:22:09.068872188Z"} +2026/03/21 11:22:14 ───────────────────────────────────────────────── +2026/03/21 11:22:19 ── Pipeline Health ────────────────────────────── +2026/03/21 11:22:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":84,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:22:14.078645742Z"} +2026/03/21 11:22:19 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":4.6535439644800025,"throughput_eps":0,"last_update":"2026-03-21T11:22:14.209870642Z"} +2026/03/21 11:22:19 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":255.61538864256005,"throughput_eps":0,"last_update":"2026-03-21T11:22:14.209723149Z"} +2026/03/21 11:22:19 [log_collector] {"stage_name":"log_collector","events_processed":407,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":81.4,"last_update":"2026-03-21T11:22:14.068870649Z"} +2026/03/21 11:22:19 [metric_collector] {"stage_name":"metric_collector","events_processed":204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":40.8,"last_update":"2026-03-21T11:22:14.069109036Z"} +2026/03/21 11:22:19 ───────────────────────────────────────────────── +2026/03/21 11:22:24 ── Pipeline Health ────────────────────────────── +2026/03/21 11:22:24 [log_collector] {"stage_name":"log_collector","events_processed":407,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":81.4,"last_update":"2026-03-21T11:22:19.068102055Z"} +2026/03/21 11:22:24 [metric_collector] {"stage_name":"metric_collector","events_processed":209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":41.8,"last_update":"2026-03-21T11:22:19.068445132Z"} +2026/03/21 11:22:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":86,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:22:19.077117844Z"} +2026/03/21 11:22:24 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":4.6535439644800025,"throughput_eps":0,"last_update":"2026-03-21T11:22:19.210577415Z"} +2026/03/21 11:22:24 [transform_engine] {"stage_name":"transform_engine","events_processed":7,"events_dropped":0,"avg_latency_ms":221.47510391404805,"throughput_eps":0,"last_update":"2026-03-21T11:22:19.295388162Z"} +2026/03/21 11:22:24 ───────────────────────────────────────────────── +2026/03/21 11:22:29 ── Pipeline Health ────────────────────────────── +2026/03/21 11:22:29 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.138536971584002,"throughput_eps":0,"last_update":"2026-03-21T11:22:24.210111318Z"} +2026/03/21 11:22:29 [transform_engine] {"stage_name":"transform_engine","events_processed":7,"events_dropped":0,"avg_latency_ms":221.47510391404805,"throughput_eps":0,"last_update":"2026-03-21T11:22:24.210008712Z"} +2026/03/21 11:22:29 [log_collector] {"stage_name":"log_collector","events_processed":407,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":81.4,"last_update":"2026-03-21T11:22:24.06809599Z"} +2026/03/21 11:22:29 [metric_collector] {"stage_name":"metric_collector","events_processed":214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":42.8,"last_update":"2026-03-21T11:22:24.068401255Z"} +2026/03/21 11:22:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":88,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:22:24.076782458Z"} +2026/03/21 11:22:29 ───────────────────────────────────────────────── +2026/03/21 11:22:34 ── Pipeline Health ────────────────────────────── +2026/03/21 11:22:34 [metric_collector] {"stage_name":"metric_collector","events_processed":219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":43.8,"last_update":"2026-03-21T11:22:29.068998937Z"} +2026/03/21 11:22:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":90,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:22:29.078934688Z"} +2026/03/21 11:22:34 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.138536971584002,"throughput_eps":0,"last_update":"2026-03-21T11:22:29.210228881Z"} +2026/03/21 11:22:34 [transform_engine] {"stage_name":"transform_engine","events_processed":7,"events_dropped":0,"avg_latency_ms":221.47510391404805,"throughput_eps":0,"last_update":"2026-03-21T11:22:29.210215074Z"} +2026/03/21 11:22:34 [log_collector] {"stage_name":"log_collector","events_processed":407,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":81.4,"last_update":"2026-03-21T11:22:29.068588441Z"} +2026/03/21 11:22:34 ───────────────────────────────────────────────── +2026/03/21 11:22:39 ── Pipeline Health ────────────────────────────── +2026/03/21 11:22:39 [metric_collector] {"stage_name":"metric_collector","events_processed":224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":44.8,"last_update":"2026-03-21T11:22:34.069237069Z"} +2026/03/21 11:22:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":92,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:22:34.078082382Z"} +2026/03/21 11:22:39 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.138536971584002,"throughput_eps":0,"last_update":"2026-03-21T11:22:34.210587242Z"} +2026/03/21 11:22:39 [transform_engine] {"stage_name":"transform_engine","events_processed":7,"events_dropped":0,"avg_latency_ms":221.47510391404805,"throughput_eps":0,"last_update":"2026-03-21T11:22:34.210456633Z"} +2026/03/21 11:22:39 [log_collector] {"stage_name":"log_collector","events_processed":407,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":81.4,"last_update":"2026-03-21T11:22:34.068816122Z"} +2026/03/21 11:22:39 ───────────────────────────────────────────────── +2026/03/21 11:22:44 ── Pipeline Health ────────────────────────────── +2026/03/21 11:22:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":94,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:22:39.077756933Z"} +2026/03/21 11:22:44 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.138536971584002,"throughput_eps":0,"last_update":"2026-03-21T11:22:39.210251565Z"} +2026/03/21 11:22:44 [transform_engine] {"stage_name":"transform_engine","events_processed":7,"events_dropped":0,"avg_latency_ms":221.47510391404805,"throughput_eps":0,"last_update":"2026-03-21T11:22:39.21013451Z"} +2026/03/21 11:22:44 [log_collector] {"stage_name":"log_collector","events_processed":407,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":81.4,"last_update":"2026-03-21T11:22:39.068785669Z"} +2026/03/21 11:22:44 [metric_collector] {"stage_name":"metric_collector","events_processed":229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":45.8,"last_update":"2026-03-21T11:22:39.069486822Z"} +2026/03/21 11:22:44 ───────────────────────────────────────────────── +2026/03/21 11:22:49 ── Pipeline Health ────────────────────────────── +2026/03/21 11:22:49 [log_collector] {"stage_name":"log_collector","events_processed":407,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":81.4,"last_update":"2026-03-21T11:22:44.068689246Z"} +2026/03/21 11:22:49 [metric_collector] {"stage_name":"metric_collector","events_processed":234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":46.8,"last_update":"2026-03-21T11:22:44.069050037Z"} +2026/03/21 11:22:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":96,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:22:44.078054844Z"} +2026/03/21 11:22:49 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.138536971584002,"throughput_eps":0,"last_update":"2026-03-21T11:22:44.210440868Z"} +2026/03/21 11:22:49 [transform_engine] {"stage_name":"transform_engine","events_processed":7,"events_dropped":0,"avg_latency_ms":221.47510391404805,"throughput_eps":0,"last_update":"2026-03-21T11:22:44.21048333Z"} +2026/03/21 11:22:49 ───────────────────────────────────────────────── +2026/03/21 11:22:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:22:54 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":190.19126313123846,"throughput_eps":0,"last_update":"2026-03-21T11:22:49.274791145Z"} +2026/03/21 11:22:54 [log_collector] {"stage_name":"log_collector","events_processed":407,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":81.4,"last_update":"2026-03-21T11:22:49.068215708Z"} +2026/03/21 11:22:54 [metric_collector] {"stage_name":"metric_collector","events_processed":239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":47.8,"last_update":"2026-03-21T11:22:49.068596467Z"} +2026/03/21 11:22:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":98,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:22:49.07746848Z"} +2026/03/21 11:22:54 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.138536971584002,"throughput_eps":0,"last_update":"2026-03-21T11:22:49.210820124Z"} +2026/03/21 11:22:54 ───────────────────────────────────────────────── +2026/03/21 11:22:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:22:59 [log_collector] {"stage_name":"log_collector","events_processed":407,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":81.4,"last_update":"2026-03-21T11:22:54.068679718Z"} +2026/03/21 11:22:59 [metric_collector] {"stage_name":"metric_collector","events_processed":244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":48.8,"last_update":"2026-03-21T11:22:54.069523453Z"} +2026/03/21 11:22:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:22:54.078560162Z"} +2026/03/21 11:22:59 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":5.452108577267202,"throughput_eps":0,"last_update":"2026-03-21T11:22:54.210841014Z"} +2026/03/21 11:22:59 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":190.19126313123846,"throughput_eps":0,"last_update":"2026-03-21T11:22:54.209700459Z"} +2026/03/21 11:22:59 ───────────────────────────────────────────────── +2026/03/21 11:23:04 ── Pipeline Health ────────────────────────────── +2026/03/21 11:23:04 [log_collector] {"stage_name":"log_collector","events_processed":407,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":81.4,"last_update":"2026-03-21T11:22:59.068577788Z"} +2026/03/21 11:23:04 [metric_collector] {"stage_name":"metric_collector","events_processed":249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":49.8,"last_update":"2026-03-21T11:22:59.068880939Z"} +2026/03/21 11:23:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:22:59.078213023Z"} +2026/03/21 11:23:04 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":5.452108577267202,"throughput_eps":0,"last_update":"2026-03-21T11:22:59.210422959Z"} +2026/03/21 11:23:04 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":190.19126313123846,"throughput_eps":0,"last_update":"2026-03-21T11:22:59.210431145Z"} +2026/03/21 11:23:04 ───────────────────────────────────────────────── +Saved state: 11 clusters, 408 messages, reason: none +2026/03/21 11:23:09 ── Pipeline Health ────────────────────────────── +2026/03/21 11:23:09 [log_collector] {"stage_name":"log_collector","events_processed":407,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":81.4,"last_update":"2026-03-21T11:23:04.068082734Z"} +2026/03/21 11:23:09 [metric_collector] {"stage_name":"metric_collector","events_processed":254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":50.8,"last_update":"2026-03-21T11:23:04.068656113Z"} +2026/03/21 11:23:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:23:04.078862401Z"} +2026/03/21 11:23:09 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":5.452108577267202,"throughput_eps":0,"last_update":"2026-03-21T11:23:04.210119403Z"} +2026/03/21 11:23:09 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":190.19126313123846,"throughput_eps":0,"last_update":"2026-03-21T11:23:04.210130915Z"} +2026/03/21 11:23:09 ───────────────────────────────────────────────── +2026/03/21 11:23:14 ── Pipeline Health ────────────────────────────── +2026/03/21 11:23:14 [log_collector] {"stage_name":"log_collector","events_processed":412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":82.4,"last_update":"2026-03-21T11:23:09.068515997Z"} +2026/03/21 11:23:14 [metric_collector] {"stage_name":"metric_collector","events_processed":259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":51.8,"last_update":"2026-03-21T11:23:09.068844596Z"} +2026/03/21 11:23:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:23:09.075861036Z"} +2026/03/21 11:23:14 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":5.452108577267202,"throughput_eps":0,"last_update":"2026-03-21T11:23:09.210060252Z"} +2026/03/21 11:23:14 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":190.19126313123846,"throughput_eps":0,"last_update":"2026-03-21T11:23:09.210069029Z"} +2026/03/21 11:23:14 ───────────────────────────────────────────────── +2026/03/21 11:23:19 ── Pipeline Health ────────────────────────────── +2026/03/21 11:23:19 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":5.452108577267202,"throughput_eps":0,"last_update":"2026-03-21T11:23:14.210526488Z"} +2026/03/21 11:23:19 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":190.19126313123846,"throughput_eps":0,"last_update":"2026-03-21T11:23:14.210507973Z"} +2026/03/21 11:23:19 [log_collector] {"stage_name":"log_collector","events_processed":412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":82.4,"last_update":"2026-03-21T11:23:14.068567759Z"} +2026/03/21 11:23:19 [metric_collector] {"stage_name":"metric_collector","events_processed":264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":52.8,"last_update":"2026-03-21T11:23:14.068893362Z"} +2026/03/21 11:23:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:23:14.077287561Z"} +2026/03/21 11:23:19 ───────────────────────────────────────────────── +2026/03/21 11:23:24 ── Pipeline Health ────────────────────────────── +2026/03/21 11:23:24 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":5.452108577267202,"throughput_eps":0,"last_update":"2026-03-21T11:23:19.210586593Z"} +2026/03/21 11:23:24 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":190.19126313123846,"throughput_eps":0,"last_update":"2026-03-21T11:23:19.210549112Z"} +2026/03/21 11:23:24 [log_collector] {"stage_name":"log_collector","events_processed":412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":82.4,"last_update":"2026-03-21T11:23:19.068621683Z"} +2026/03/21 11:23:24 [metric_collector] {"stage_name":"metric_collector","events_processed":269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":53.8,"last_update":"2026-03-21T11:23:19.069125668Z"} +2026/03/21 11:23:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:23:19.076453714Z"} +2026/03/21 11:23:24 ───────────────────────────────────────────────── +2026/03/21 11:23:29 ── Pipeline Health ────────────────────────────── +2026/03/21 11:23:29 [log_collector] {"stage_name":"log_collector","events_processed":412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":82.4,"last_update":"2026-03-21T11:23:24.068767841Z"} +2026/03/21 11:23:29 [metric_collector] {"stage_name":"metric_collector","events_processed":274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":54.8,"last_update":"2026-03-21T11:23:24.068979327Z"} +2026/03/21 11:23:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:23:24.085444033Z"} +2026/03/21 11:23:29 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":5.119698661813762,"throughput_eps":0,"last_update":"2026-03-21T11:23:24.210618524Z"} +2026/03/21 11:23:29 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":232.35583770499076,"throughput_eps":0,"last_update":"2026-03-21T11:23:24.210661516Z"} +2026/03/21 11:23:29 ───────────────────────────────────────────────── +2026/03/21 11:23:34 ── Pipeline Health ────────────────────────────── +2026/03/21 11:23:34 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":232.35583770499076,"throughput_eps":0,"last_update":"2026-03-21T11:23:29.209853417Z"} +2026/03/21 11:23:34 [log_collector] {"stage_name":"log_collector","events_processed":412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":82.4,"last_update":"2026-03-21T11:23:29.068855027Z"} +2026/03/21 11:23:34 [metric_collector] {"stage_name":"metric_collector","events_processed":279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":55.8,"last_update":"2026-03-21T11:23:29.068848544Z"} +2026/03/21 11:23:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:23:29.075653639Z"} +2026/03/21 11:23:34 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":5.119698661813762,"throughput_eps":0,"last_update":"2026-03-21T11:23:29.209894274Z"} +2026/03/21 11:23:34 ───────────────────────────────────────────────── +2026/03/21 11:23:39 ── Pipeline Health ────────────────────────────── +2026/03/21 11:23:39 [log_collector] {"stage_name":"log_collector","events_processed":412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":82.4,"last_update":"2026-03-21T11:23:34.06982426Z"} +2026/03/21 11:23:39 [metric_collector] {"stage_name":"metric_collector","events_processed":284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":56.8,"last_update":"2026-03-21T11:23:34.069775006Z"} +2026/03/21 11:23:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:23:34.07842252Z"} +2026/03/21 11:23:39 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":5.119698661813762,"throughput_eps":0,"last_update":"2026-03-21T11:23:34.21064511Z"} +2026/03/21 11:23:39 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":232.35583770499076,"throughput_eps":0,"last_update":"2026-03-21T11:23:34.210669656Z"} +2026/03/21 11:23:39 ───────────────────────────────────────────────── +2026/03/21 11:23:44 ── Pipeline Health ────────────────────────────── +2026/03/21 11:23:44 [metric_collector] {"stage_name":"metric_collector","events_processed":289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":57.8,"last_update":"2026-03-21T11:23:39.069321462Z"} +2026/03/21 11:23:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:23:39.07557976Z"} +2026/03/21 11:23:44 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":5.119698661813762,"throughput_eps":0,"last_update":"2026-03-21T11:23:39.210143684Z"} +2026/03/21 11:23:44 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":232.35583770499076,"throughput_eps":0,"last_update":"2026-03-21T11:23:39.210118787Z"} +2026/03/21 11:23:44 [log_collector] {"stage_name":"log_collector","events_processed":412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":82.4,"last_update":"2026-03-21T11:23:39.068996479Z"} +2026/03/21 11:23:44 ───────────────────────────────────────────────── +2026/03/21 11:23:49 ── Pipeline Health ────────────────────────────── +2026/03/21 11:23:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:23:44.076083287Z"} +2026/03/21 11:23:49 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":5.119698661813762,"throughput_eps":0,"last_update":"2026-03-21T11:23:44.210470163Z"} +2026/03/21 11:23:49 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":232.35583770499076,"throughput_eps":0,"last_update":"2026-03-21T11:23:44.210501432Z"} +2026/03/21 11:23:49 [log_collector] {"stage_name":"log_collector","events_processed":412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":82.4,"last_update":"2026-03-21T11:23:44.068165892Z"} +2026/03/21 11:23:49 [metric_collector] {"stage_name":"metric_collector","events_processed":294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":58.8,"last_update":"2026-03-21T11:23:44.068998778Z"} +2026/03/21 11:23:49 ───────────────────────────────────────────────── +2026/03/21 11:23:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:23:54 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":5.119698661813762,"throughput_eps":0,"last_update":"2026-03-21T11:23:49.210490604Z"} +2026/03/21 11:23:54 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":232.35583770499076,"throughput_eps":0,"last_update":"2026-03-21T11:23:49.210476396Z"} +2026/03/21 11:23:54 [log_collector] {"stage_name":"log_collector","events_processed":412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":82.4,"last_update":"2026-03-21T11:23:49.06904147Z"} +2026/03/21 11:23:54 [metric_collector] {"stage_name":"metric_collector","events_processed":299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":59.8,"last_update":"2026-03-21T11:23:49.069411429Z"} +2026/03/21 11:23:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":122,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:23:49.075237849Z"} +2026/03/21 11:23:54 ───────────────────────────────────────────────── +2026/03/21 11:23:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:23:59 [log_collector] {"stage_name":"log_collector","events_processed":423,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":84.6,"last_update":"2026-03-21T11:23:54.068908816Z"} +2026/03/21 11:23:59 [metric_collector] {"stage_name":"metric_collector","events_processed":303,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":60.6,"last_update":"2026-03-21T11:23:54.06873315Z"} +2026/03/21 11:23:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:23:54.077254632Z"} +2026/03/21 11:23:59 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":4.89963472945101,"throughput_eps":0,"last_update":"2026-03-21T11:23:54.210639849Z"} +2026/03/21 11:23:59 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":208.4492023639926,"throughput_eps":0,"last_update":"2026-03-21T11:23:54.210650891Z"} +2026/03/21 11:23:59 ───────────────────────────────────────────────── +2026/03/21 11:24:04 ── Pipeline Health ────────────────────────────── +2026/03/21 11:24:04 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":208.4492023639926,"throughput_eps":0,"last_update":"2026-03-21T11:23:59.210455967Z"} +2026/03/21 11:24:04 [log_collector] {"stage_name":"log_collector","events_processed":423,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":84.6,"last_update":"2026-03-21T11:23:59.068076452Z"} +2026/03/21 11:24:04 [metric_collector] {"stage_name":"metric_collector","events_processed":309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":61.8,"last_update":"2026-03-21T11:23:59.068241258Z"} +2026/03/21 11:24:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":126,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:23:59.079043559Z"} +2026/03/21 11:24:04 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":4.89963472945101,"throughput_eps":0,"last_update":"2026-03-21T11:23:59.210441128Z"} +2026/03/21 11:24:04 ───────────────────────────────────────────────── +2026/03/21 11:24:09 ── Pipeline Health ────────────────────────────── +2026/03/21 11:24:09 [log_collector] {"stage_name":"log_collector","events_processed":731,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":146.2,"last_update":"2026-03-21T11:24:04.068992895Z"} +2026/03/21 11:24:09 [metric_collector] {"stage_name":"metric_collector","events_processed":314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":62.8,"last_update":"2026-03-21T11:24:04.069191495Z"} +2026/03/21 11:24:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":128,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:24:04.077346465Z"} +2026/03/21 11:24:09 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":4.89963472945101,"throughput_eps":0,"last_update":"2026-03-21T11:24:04.210074403Z"} +2026/03/21 11:24:09 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":208.4492023639926,"throughput_eps":0,"last_update":"2026-03-21T11:24:04.210084584Z"} +2026/03/21 11:24:09 ───────────────────────────────────────────────── +Saved state: 11 clusters, 774 messages, reason: none +2026/03/21 11:24:14 ── Pipeline Health ────────────────────────────── +2026/03/21 11:24:14 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":4.89963472945101,"throughput_eps":0,"last_update":"2026-03-21T11:24:09.210374236Z"} +2026/03/21 11:24:14 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":208.4492023639926,"throughput_eps":0,"last_update":"2026-03-21T11:24:09.21041831Z"} +2026/03/21 11:24:14 [log_collector] {"stage_name":"log_collector","events_processed":773,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":154.6,"last_update":"2026-03-21T11:24:09.068873153Z"} +2026/03/21 11:24:14 [metric_collector] {"stage_name":"metric_collector","events_processed":319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":63.8,"last_update":"2026-03-21T11:24:09.06961819Z"} +2026/03/21 11:24:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":130,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:24:09.078154019Z"} +2026/03/21 11:24:14 ───────────────────────────────────────────────── +2026/03/21 11:24:19 ── Pipeline Health ────────────────────────────── +2026/03/21 11:24:19 [log_collector] {"stage_name":"log_collector","events_processed":776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":155.2,"last_update":"2026-03-21T11:24:14.068078898Z"} +2026/03/21 11:24:19 [metric_collector] {"stage_name":"metric_collector","events_processed":324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":64.8,"last_update":"2026-03-21T11:24:14.068484615Z"} +2026/03/21 11:24:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:24:14.074942825Z"} +2026/03/21 11:24:19 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":4.89963472945101,"throughput_eps":0,"last_update":"2026-03-21T11:24:14.210416803Z"} +2026/03/21 11:24:19 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":208.4492023639926,"throughput_eps":0,"last_update":"2026-03-21T11:24:14.21037872Z"} +2026/03/21 11:24:19 ───────────────────────────────────────────────── +2026/03/21 11:24:24 ── Pipeline Health ────────────────────────────── +2026/03/21 11:24:24 [log_collector] {"stage_name":"log_collector","events_processed":776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":155.2,"last_update":"2026-03-21T11:24:19.069610345Z"} +2026/03/21 11:24:24 [metric_collector] {"stage_name":"metric_collector","events_processed":329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":65.8,"last_update":"2026-03-21T11:24:19.069605837Z"} +2026/03/21 11:24:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:24:19.077743593Z"} +2026/03/21 11:24:24 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":4.89963472945101,"throughput_eps":0,"last_update":"2026-03-21T11:24:19.210061916Z"} +2026/03/21 11:24:24 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":245.6770976911941,"throughput_eps":0,"last_update":"2026-03-21T11:24:19.604596792Z"} +2026/03/21 11:24:24 ───────────────────────────────────────────────── +2026/03/21 11:24:29 ── Pipeline Health ────────────────────────────── +2026/03/21 11:24:29 [log_collector] {"stage_name":"log_collector","events_processed":787,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":157.4,"last_update":"2026-03-21T11:24:24.068634107Z"} +2026/03/21 11:24:29 [metric_collector] {"stage_name":"metric_collector","events_processed":334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":66.8,"last_update":"2026-03-21T11:24:24.068897791Z"} +2026/03/21 11:24:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:24:24.07976648Z"} +2026/03/21 11:24:29 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":4.947682983560808,"throughput_eps":0,"last_update":"2026-03-21T11:24:24.210093779Z"} +2026/03/21 11:24:29 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":245.6770976911941,"throughput_eps":0,"last_update":"2026-03-21T11:24:24.209987425Z"} +2026/03/21 11:24:29 ───────────────────────────────────────────────── +2026/03/21 11:24:34 ── Pipeline Health ────────────────────────────── +2026/03/21 11:24:34 [log_collector] {"stage_name":"log_collector","events_processed":801,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":160.2,"last_update":"2026-03-21T11:24:29.068220926Z"} +2026/03/21 11:24:34 [metric_collector] {"stage_name":"metric_collector","events_processed":339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":67.8,"last_update":"2026-03-21T11:24:29.068656239Z"} +2026/03/21 11:24:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:24:29.075180736Z"} +2026/03/21 11:24:34 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":4.947682983560808,"throughput_eps":0,"last_update":"2026-03-21T11:24:29.21050607Z"} +2026/03/21 11:24:34 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":245.6770976911941,"throughput_eps":0,"last_update":"2026-03-21T11:24:29.210552428Z"} +2026/03/21 11:24:34 ───────────────────────────────────────────────── +2026/03/21 11:24:39 ── Pipeline Health ────────────────────────────── +2026/03/21 11:24:39 [metric_collector] {"stage_name":"metric_collector","events_processed":344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":68.8,"last_update":"2026-03-21T11:24:34.068935673Z"} +2026/03/21 11:24:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:24:34.077650476Z"} +2026/03/21 11:24:39 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":4.947682983560808,"throughput_eps":0,"last_update":"2026-03-21T11:24:34.210096524Z"} +2026/03/21 11:24:39 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":245.6770976911941,"throughput_eps":0,"last_update":"2026-03-21T11:24:34.209987966Z"} +2026/03/21 11:24:39 [log_collector] {"stage_name":"log_collector","events_processed":803,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":160.6,"last_update":"2026-03-21T11:24:34.068275239Z"} +2026/03/21 11:24:39 ───────────────────────────────────────────────── +2026/03/21 11:24:44 ── Pipeline Health ────────────────────────────── +2026/03/21 11:24:44 [log_collector] {"stage_name":"log_collector","events_processed":803,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":160.6,"last_update":"2026-03-21T11:24:39.06854255Z"} +2026/03/21 11:24:44 [metric_collector] {"stage_name":"metric_collector","events_processed":349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":69.8,"last_update":"2026-03-21T11:24:39.069204287Z"} +2026/03/21 11:24:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:24:39.07892715Z"} +2026/03/21 11:24:44 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":4.947682983560808,"throughput_eps":0,"last_update":"2026-03-21T11:24:39.210272439Z"} +2026/03/21 11:24:44 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":245.6770976911941,"throughput_eps":0,"last_update":"2026-03-21T11:24:39.210296826Z"} +2026/03/21 11:24:44 ───────────────────────────────────────────────── +2026/03/21 11:24:49 ── Pipeline Health ────────────────────────────── +2026/03/21 11:24:49 [log_collector] {"stage_name":"log_collector","events_processed":803,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":160.6,"last_update":"2026-03-21T11:24:44.068657205Z"} +2026/03/21 11:24:49 [metric_collector] {"stage_name":"metric_collector","events_processed":354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":70.8,"last_update":"2026-03-21T11:24:44.069064206Z"} +2026/03/21 11:24:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:24:44.079160313Z"} +2026/03/21 11:24:49 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":4.947682983560808,"throughput_eps":0,"last_update":"2026-03-21T11:24:44.21055583Z"} +2026/03/21 11:24:49 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":245.6770976911941,"throughput_eps":0,"last_update":"2026-03-21T11:24:44.210578714Z"} +2026/03/21 11:24:49 ───────────────────────────────────────────────── +2026/03/21 11:24:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:24:54 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":218.6769301529553,"throughput_eps":0,"last_update":"2026-03-21T11:24:49.321251012Z"} +2026/03/21 11:24:54 [log_collector] {"stage_name":"log_collector","events_processed":803,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":160.6,"last_update":"2026-03-21T11:24:49.068612897Z"} +2026/03/21 11:24:54 [metric_collector] {"stage_name":"metric_collector","events_processed":364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":72.8,"last_update":"2026-03-21T11:24:54.068397258Z"} +2026/03/21 11:24:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:24:49.079065228Z"} +2026/03/21 11:24:54 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":4.947682983560808,"throughput_eps":0,"last_update":"2026-03-21T11:24:49.210456575Z"} +2026/03/21 11:24:54 ───────────────────────────────────────────────── +2026/03/21 11:24:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:24:59 [log_collector] {"stage_name":"log_collector","events_processed":803,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":160.6,"last_update":"2026-03-21T11:24:54.068422766Z"} +2026/03/21 11:24:59 [metric_collector] {"stage_name":"metric_collector","events_processed":369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":73.8,"last_update":"2026-03-21T11:24:59.068409554Z"} +2026/03/21 11:24:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:24:54.077629952Z"} +2026/03/21 11:24:59 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":6.072724586848647,"throughput_eps":0,"last_update":"2026-03-21T11:24:54.209922125Z"} +2026/03/21 11:24:59 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":218.6769301529553,"throughput_eps":0,"last_update":"2026-03-21T11:24:54.209781686Z"} +2026/03/21 11:24:59 ───────────────────────────────────────────────── +2026/03/21 11:25:04 ── Pipeline Health ────────────────────────────── +2026/03/21 11:25:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:24:59.077457666Z"} +2026/03/21 11:25:04 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":6.072724586848647,"throughput_eps":0,"last_update":"2026-03-21T11:24:59.210907706Z"} +2026/03/21 11:25:04 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":218.6769301529553,"throughput_eps":0,"last_update":"2026-03-21T11:24:59.209653855Z"} +2026/03/21 11:25:04 [log_collector] {"stage_name":"log_collector","events_processed":803,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":160.6,"last_update":"2026-03-21T11:24:59.068499006Z"} +2026/03/21 11:25:04 [metric_collector] {"stage_name":"metric_collector","events_processed":369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":73.8,"last_update":"2026-03-21T11:24:59.068409554Z"} +2026/03/21 11:25:04 ───────────────────────────────────────────────── +2026/03/21 11:25:09 ── Pipeline Health ────────────────────────────── +2026/03/21 11:25:09 [log_collector] {"stage_name":"log_collector","events_processed":803,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":160.6,"last_update":"2026-03-21T11:25:04.068394939Z"} +2026/03/21 11:25:09 [metric_collector] {"stage_name":"metric_collector","events_processed":374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":74.8,"last_update":"2026-03-21T11:25:04.068801848Z"} +2026/03/21 11:25:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:25:04.077685744Z"} +2026/03/21 11:25:09 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":6.072724586848647,"throughput_eps":0,"last_update":"2026-03-21T11:25:04.209954834Z"} +2026/03/21 11:25:09 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":218.6769301529553,"throughput_eps":0,"last_update":"2026-03-21T11:25:04.209932631Z"} +2026/03/21 11:25:09 ───────────────────────────────────────────────── +2026/03/21 11:25:14 ── Pipeline Health ────────────────────────────── +2026/03/21 11:25:14 [metric_collector] {"stage_name":"metric_collector","events_processed":379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":75.8,"last_update":"2026-03-21T11:25:09.069226944Z"} +2026/03/21 11:25:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:25:09.078907095Z"} +2026/03/21 11:25:14 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":6.072724586848647,"throughput_eps":0,"last_update":"2026-03-21T11:25:09.210214261Z"} +2026/03/21 11:25:14 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":218.6769301529553,"throughput_eps":0,"last_update":"2026-03-21T11:25:09.2103232Z"} +2026/03/21 11:25:14 [log_collector] {"stage_name":"log_collector","events_processed":803,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":160.6,"last_update":"2026-03-21T11:25:09.068936698Z"} +2026/03/21 11:25:14 ───────────────────────────────────────────────── +2026/03/21 11:25:19 ── Pipeline Health ────────────────────────────── +2026/03/21 11:25:19 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":6.072724586848647,"throughput_eps":0,"last_update":"2026-03-21T11:25:14.210828308Z"} +2026/03/21 11:25:19 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":218.6769301529553,"throughput_eps":0,"last_update":"2026-03-21T11:25:14.209649299Z"} +2026/03/21 11:25:19 [log_collector] {"stage_name":"log_collector","events_processed":803,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":160.6,"last_update":"2026-03-21T11:25:14.068956405Z"} +2026/03/21 11:25:19 [metric_collector] {"stage_name":"metric_collector","events_processed":384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":76.8,"last_update":"2026-03-21T11:25:14.069573077Z"} +2026/03/21 11:25:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:25:14.079447972Z"} +2026/03/21 11:25:19 ───────────────────────────────────────────────── +2026/03/21 11:25:24 ── Pipeline Health ────────────────────────────── +2026/03/21 11:25:24 [log_collector] {"stage_name":"log_collector","events_processed":803,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":160.6,"last_update":"2026-03-21T11:25:19.069106001Z"} +2026/03/21 11:25:24 [metric_collector] {"stage_name":"metric_collector","events_processed":389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":77.8,"last_update":"2026-03-21T11:25:19.069686953Z"} +2026/03/21 11:25:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:25:19.078005196Z"} +2026/03/21 11:25:24 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":6.072724586848647,"throughput_eps":0,"last_update":"2026-03-21T11:25:19.210296988Z"} +2026/03/21 11:25:24 [transform_engine] {"stage_name":"transform_engine","events_processed":13,"events_dropped":0,"avg_latency_ms":188.17760652236424,"throughput_eps":0,"last_update":"2026-03-21T11:25:19.276493321Z"} +2026/03/21 11:25:24 ───────────────────────────────────────────────── +2026/03/21 11:25:29 ── Pipeline Health ────────────────────────────── +2026/03/21 11:25:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:25:24.078193662Z"} +2026/03/21 11:25:29 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":6.931310469478919,"throughput_eps":0,"last_update":"2026-03-21T11:25:24.210523267Z"} +2026/03/21 11:25:29 [transform_engine] {"stage_name":"transform_engine","events_processed":13,"events_dropped":0,"avg_latency_ms":188.17760652236424,"throughput_eps":0,"last_update":"2026-03-21T11:25:24.210443854Z"} +2026/03/21 11:25:29 [log_collector] {"stage_name":"log_collector","events_processed":803,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":160.6,"last_update":"2026-03-21T11:25:24.068487781Z"} +2026/03/21 11:25:29 [metric_collector] {"stage_name":"metric_collector","events_processed":394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":78.8,"last_update":"2026-03-21T11:25:24.068406436Z"} +2026/03/21 11:25:29 ───────────────────────────────────────────────── +2026/03/21 11:25:34 ── Pipeline Health ────────────────────────────── +2026/03/21 11:25:34 [log_collector] {"stage_name":"log_collector","events_processed":803,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":160.6,"last_update":"2026-03-21T11:25:29.068857596Z"} +2026/03/21 11:25:34 [metric_collector] {"stage_name":"metric_collector","events_processed":399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":79.8,"last_update":"2026-03-21T11:25:29.069214259Z"} +2026/03/21 11:25:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:25:29.078333306Z"} +2026/03/21 11:25:34 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":6.931310469478919,"throughput_eps":0,"last_update":"2026-03-21T11:25:29.210625638Z"} +2026/03/21 11:25:34 [transform_engine] {"stage_name":"transform_engine","events_processed":13,"events_dropped":0,"avg_latency_ms":188.17760652236424,"throughput_eps":0,"last_update":"2026-03-21T11:25:29.210586584Z"} +2026/03/21 11:25:34 ───────────────────────────────────────────────── +2026/03/21 11:25:39 ── Pipeline Health ────────────────────────────── +2026/03/21 11:25:39 [log_collector] {"stage_name":"log_collector","events_processed":803,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":160.6,"last_update":"2026-03-21T11:25:34.068661354Z"} +2026/03/21 11:25:39 [metric_collector] {"stage_name":"metric_collector","events_processed":404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":80.8,"last_update":"2026-03-21T11:25:34.069434245Z"} +2026/03/21 11:25:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:25:34.078107988Z"} +2026/03/21 11:25:39 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":6.931310469478919,"throughput_eps":0,"last_update":"2026-03-21T11:25:34.210484523Z"} +2026/03/21 11:25:39 [transform_engine] {"stage_name":"transform_engine","events_processed":13,"events_dropped":0,"avg_latency_ms":188.17760652236424,"throughput_eps":0,"last_update":"2026-03-21T11:25:34.21051983Z"} +2026/03/21 11:25:39 ───────────────────────────────────────────────── +2026/03/21 11:25:44 ── Pipeline Health ────────────────────────────── +2026/03/21 11:25:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:25:39.078622097Z"} +2026/03/21 11:25:44 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":6.931310469478919,"throughput_eps":0,"last_update":"2026-03-21T11:25:39.209930615Z"} +2026/03/21 11:25:44 [transform_engine] {"stage_name":"transform_engine","events_processed":13,"events_dropped":0,"avg_latency_ms":188.17760652236424,"throughput_eps":0,"last_update":"2026-03-21T11:25:39.209804694Z"} +2026/03/21 11:25:44 [log_collector] {"stage_name":"log_collector","events_processed":803,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":160.6,"last_update":"2026-03-21T11:25:39.068767862Z"} +2026/03/21 11:25:44 [metric_collector] {"stage_name":"metric_collector","events_processed":409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":81.8,"last_update":"2026-03-21T11:25:39.069275845Z"} +2026/03/21 11:25:44 ───────────────────────────────────────────────── +Saved state: 11 clusters, 804 messages, reason: none +2026/03/21 11:25:49 ── Pipeline Health ────────────────────────────── +2026/03/21 11:25:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:25:44.078073769Z"} +2026/03/21 11:25:49 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":6.931310469478919,"throughput_eps":0,"last_update":"2026-03-21T11:25:44.210454552Z"} +2026/03/21 11:25:49 [transform_engine] {"stage_name":"transform_engine","events_processed":13,"events_dropped":0,"avg_latency_ms":188.17760652236424,"throughput_eps":0,"last_update":"2026-03-21T11:25:44.210568971Z"} +2026/03/21 11:25:49 [log_collector] {"stage_name":"log_collector","events_processed":803,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":160.6,"last_update":"2026-03-21T11:25:44.068677402Z"} +2026/03/21 11:25:49 [metric_collector] {"stage_name":"metric_collector","events_processed":414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":82.8,"last_update":"2026-03-21T11:25:44.068970283Z"} +2026/03/21 11:25:49 ───────────────────────────────────────────────── +2026/03/21 11:25:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:25:54 [log_collector] {"stage_name":"log_collector","events_processed":817,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":163.4,"last_update":"2026-03-21T11:25:49.068301583Z"} +2026/03/21 11:25:54 [metric_collector] {"stage_name":"metric_collector","events_processed":419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":83.8,"last_update":"2026-03-21T11:25:49.068808474Z"} +2026/03/21 11:25:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":170,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:25:49.077338112Z"} +2026/03/21 11:25:54 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":6.931310469478919,"throughput_eps":0,"last_update":"2026-03-21T11:25:49.210595853Z"} +2026/03/21 11:25:54 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":172.38960421789142,"throughput_eps":0,"last_update":"2026-03-21T11:25:49.319788502Z"} +2026/03/21 11:25:54 ───────────────────────────────────────────────── +2026/03/21 11:25:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:25:59 [metric_collector] {"stage_name":"metric_collector","events_processed":424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":84.8,"last_update":"2026-03-21T11:25:54.069222647Z"} +2026/03/21 11:25:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:25:54.078750177Z"} +2026/03/21 11:25:59 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":7.585240175583136,"throughput_eps":0,"last_update":"2026-03-21T11:25:54.210272995Z"} +2026/03/21 11:25:59 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":172.38960421789142,"throughput_eps":0,"last_update":"2026-03-21T11:25:54.210165078Z"} +2026/03/21 11:25:59 [log_collector] {"stage_name":"log_collector","events_processed":817,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":163.4,"last_update":"2026-03-21T11:25:54.06887951Z"} +2026/03/21 11:25:59 ───────────────────────────────────────────────── +2026/03/21 11:26:04 ── Pipeline Health ────────────────────────────── +2026/03/21 11:26:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:25:59.078141271Z"} +2026/03/21 11:26:04 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":7.585240175583136,"throughput_eps":0,"last_update":"2026-03-21T11:25:59.210376113Z"} +2026/03/21 11:26:04 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":172.38960421789142,"throughput_eps":0,"last_update":"2026-03-21T11:25:59.210384839Z"} +2026/03/21 11:26:04 [log_collector] {"stage_name":"log_collector","events_processed":817,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":163.4,"last_update":"2026-03-21T11:25:59.068087674Z"} +2026/03/21 11:26:04 [metric_collector] {"stage_name":"metric_collector","events_processed":429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":85.8,"last_update":"2026-03-21T11:25:59.068721177Z"} +2026/03/21 11:26:04 ───────────────────────────────────────────────── +2026/03/21 11:26:09 ── Pipeline Health ────────────────────────────── +2026/03/21 11:26:09 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":7.585240175583136,"throughput_eps":0,"last_update":"2026-03-21T11:26:04.210652531Z"} +2026/03/21 11:26:09 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":172.38960421789142,"throughput_eps":0,"last_update":"2026-03-21T11:26:04.210658743Z"} +2026/03/21 11:26:09 [log_collector] {"stage_name":"log_collector","events_processed":817,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":163.4,"last_update":"2026-03-21T11:26:04.068085878Z"} +2026/03/21 11:26:09 [metric_collector] {"stage_name":"metric_collector","events_processed":434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":86.8,"last_update":"2026-03-21T11:26:04.068336228Z"} +2026/03/21 11:26:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:26:04.077300007Z"} +2026/03/21 11:26:09 ───────────────────────────────────────────────── +2026/03/21 11:26:14 ── Pipeline Health ────────────────────────────── +2026/03/21 11:26:14 [log_collector] {"stage_name":"log_collector","events_processed":817,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":163.4,"last_update":"2026-03-21T11:26:09.06843296Z"} +2026/03/21 11:26:14 [metric_collector] {"stage_name":"metric_collector","events_processed":439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":87.8,"last_update":"2026-03-21T11:26:09.068465112Z"} +2026/03/21 11:26:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:26:09.077217486Z"} +2026/03/21 11:26:14 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":7.585240175583136,"throughput_eps":0,"last_update":"2026-03-21T11:26:09.210441423Z"} +2026/03/21 11:26:14 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":172.38960421789142,"throughput_eps":0,"last_update":"2026-03-21T11:26:09.210452325Z"} +2026/03/21 11:26:14 ───────────────────────────────────────────────── +2026/03/21 11:26:19 ── Pipeline Health ────────────────────────────── +2026/03/21 11:26:19 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":172.38960421789142,"throughput_eps":0,"last_update":"2026-03-21T11:26:14.210717219Z"} +2026/03/21 11:26:19 [log_collector] {"stage_name":"log_collector","events_processed":817,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":163.4,"last_update":"2026-03-21T11:26:14.068775914Z"} +2026/03/21 11:26:19 [metric_collector] {"stage_name":"metric_collector","events_processed":444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":88.8,"last_update":"2026-03-21T11:26:14.069310038Z"} +2026/03/21 11:26:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:26:14.078313774Z"} +2026/03/21 11:26:19 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":7.585240175583136,"throughput_eps":0,"last_update":"2026-03-21T11:26:14.210701379Z"} +2026/03/21 11:26:19 ───────────────────────────────────────────────── +2026/03/21 11:26:24 ── Pipeline Health ────────────────────────────── +2026/03/21 11:26:24 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":7.585240175583136,"throughput_eps":0,"last_update":"2026-03-21T11:26:19.21063193Z"} +2026/03/21 11:26:24 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":151.31211257431312,"throughput_eps":0,"last_update":"2026-03-21T11:26:19.277645579Z"} +2026/03/21 11:26:24 [log_collector] {"stage_name":"log_collector","events_processed":817,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":163.4,"last_update":"2026-03-21T11:26:19.068877194Z"} +2026/03/21 11:26:24 [metric_collector] {"stage_name":"metric_collector","events_processed":449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":89.8,"last_update":"2026-03-21T11:26:19.068998746Z"} +2026/03/21 11:26:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:26:19.079388577Z"} +2026/03/21 11:26:24 ───────────────────────────────────────────────── +2026/03/21 11:26:29 ── Pipeline Health ────────────────────────────── +2026/03/21 11:26:29 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":8.044693940466509,"throughput_eps":0,"last_update":"2026-03-21T11:26:24.210609372Z"} +2026/03/21 11:26:29 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":151.31211257431312,"throughput_eps":0,"last_update":"2026-03-21T11:26:24.210622256Z"} +2026/03/21 11:26:29 [log_collector] {"stage_name":"log_collector","events_processed":817,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":163.4,"last_update":"2026-03-21T11:26:24.068791043Z"} +2026/03/21 11:26:29 [metric_collector] {"stage_name":"metric_collector","events_processed":454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":90.8,"last_update":"2026-03-21T11:26:24.069026564Z"} +2026/03/21 11:26:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:26:24.077328836Z"} +2026/03/21 11:26:29 ───────────────────────────────────────────────── +2026/03/21 11:26:34 ── Pipeline Health ────────────────────────────── +2026/03/21 11:26:34 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":151.31211257431312,"throughput_eps":0,"last_update":"2026-03-21T11:26:29.210121628Z"} +2026/03/21 11:26:34 [log_collector] {"stage_name":"log_collector","events_processed":817,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":163.4,"last_update":"2026-03-21T11:26:29.068127653Z"} +2026/03/21 11:26:34 [metric_collector] {"stage_name":"metric_collector","events_processed":459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":91.8,"last_update":"2026-03-21T11:26:29.068472784Z"} +2026/03/21 11:26:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:26:29.076779525Z"} +2026/03/21 11:26:34 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":8.044693940466509,"throughput_eps":0,"last_update":"2026-03-21T11:26:29.21013808Z"} +2026/03/21 11:26:34 ───────────────────────────────────────────────── +2026/03/21 11:26:39 ── Pipeline Health ────────────────────────────── +2026/03/21 11:26:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:26:34.078828521Z"} +2026/03/21 11:26:39 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":8.044693940466509,"throughput_eps":0,"last_update":"2026-03-21T11:26:34.210182507Z"} +2026/03/21 11:26:39 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":151.31211257431312,"throughput_eps":0,"last_update":"2026-03-21T11:26:34.210188939Z"} +2026/03/21 11:26:39 [log_collector] {"stage_name":"log_collector","events_processed":817,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":163.4,"last_update":"2026-03-21T11:26:34.06846414Z"} +2026/03/21 11:26:39 [metric_collector] {"stage_name":"metric_collector","events_processed":464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":92.8,"last_update":"2026-03-21T11:26:34.069227703Z"} +2026/03/21 11:26:39 ───────────────────────────────────────────────── +2026/03/21 11:26:44 ── Pipeline Health ────────────────────────────── +2026/03/21 11:26:44 [log_collector] {"stage_name":"log_collector","events_processed":817,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":163.4,"last_update":"2026-03-21T11:26:39.068836643Z"} +2026/03/21 11:26:44 [metric_collector] {"stage_name":"metric_collector","events_processed":469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":93.8,"last_update":"2026-03-21T11:26:39.069203326Z"} +2026/03/21 11:26:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:26:39.077285025Z"} +2026/03/21 11:26:44 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":8.044693940466509,"throughput_eps":0,"last_update":"2026-03-21T11:26:39.210616779Z"} +2026/03/21 11:26:44 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":151.31211257431312,"throughput_eps":0,"last_update":"2026-03-21T11:26:39.210623081Z"} +2026/03/21 11:26:44 ───────────────────────────────────────────────── +2026/03/21 11:26:49 ── Pipeline Health ────────────────────────────── +2026/03/21 11:26:49 [log_collector] {"stage_name":"log_collector","events_processed":817,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":163.4,"last_update":"2026-03-21T11:26:49.068096742Z"} +2026/03/21 11:26:49 [metric_collector] {"stage_name":"metric_collector","events_processed":474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":94.8,"last_update":"2026-03-21T11:26:44.069029963Z"} +2026/03/21 11:26:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:26:44.079155257Z"} +2026/03/21 11:26:49 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":8.044693940466509,"throughput_eps":0,"last_update":"2026-03-21T11:26:44.210389192Z"} +2026/03/21 11:26:49 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":151.31211257431312,"throughput_eps":0,"last_update":"2026-03-21T11:26:44.210399302Z"} +2026/03/21 11:26:49 ───────────────────────────────────────────────── +Saved state: 11 clusters, 818 messages, reason: none +2026/03/21 11:26:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:26:54 [metric_collector] {"stage_name":"metric_collector","events_processed":479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":95.8,"last_update":"2026-03-21T11:26:49.068802775Z"} +2026/03/21 11:26:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:26:49.077094347Z"} +2026/03/21 11:26:54 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":8.044693940466509,"throughput_eps":0,"last_update":"2026-03-21T11:26:49.210309156Z"} +2026/03/21 11:26:54 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":134.1419106594505,"throughput_eps":0,"last_update":"2026-03-21T11:26:49.275781923Z"} +2026/03/21 11:26:54 [log_collector] {"stage_name":"log_collector","events_processed":817,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":163.4,"last_update":"2026-03-21T11:26:49.068096742Z"} +2026/03/21 11:26:54 ───────────────────────────────────────────────── +2026/03/21 11:26:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:26:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:26:54.075334274Z"} +2026/03/21 11:26:59 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":8.582372752373209,"throughput_eps":0,"last_update":"2026-03-21T11:26:54.210571657Z"} +2026/03/21 11:26:59 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":134.1419106594505,"throughput_eps":0,"last_update":"2026-03-21T11:26:54.210580363Z"} +2026/03/21 11:26:59 [log_collector] {"stage_name":"log_collector","events_processed":822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":164.4,"last_update":"2026-03-21T11:26:54.068453454Z"} +2026/03/21 11:26:59 [metric_collector] {"stage_name":"metric_collector","events_processed":484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":96.8,"last_update":"2026-03-21T11:26:54.068592019Z"} +2026/03/21 11:26:59 ───────────────────────────────────────────────── +2026/03/21 11:27:04 ── Pipeline Health ────────────────────────────── +2026/03/21 11:27:04 [log_collector] {"stage_name":"log_collector","events_processed":822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":164.4,"last_update":"2026-03-21T11:26:59.068857624Z"} +2026/03/21 11:27:04 [metric_collector] {"stage_name":"metric_collector","events_processed":489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":97.8,"last_update":"2026-03-21T11:26:59.069139233Z"} +2026/03/21 11:27:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:26:59.076682211Z"} +2026/03/21 11:27:04 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":8.582372752373209,"throughput_eps":0,"last_update":"2026-03-21T11:26:59.209909043Z"} +2026/03/21 11:27:04 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":134.1419106594505,"throughput_eps":0,"last_update":"2026-03-21T11:26:59.209925435Z"} +2026/03/21 11:27:04 ───────────────────────────────────────────────── +2026/03/21 11:27:09 ── Pipeline Health ────────────────────────────── +2026/03/21 11:27:09 [log_collector] {"stage_name":"log_collector","events_processed":822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":164.4,"last_update":"2026-03-21T11:27:04.068877187Z"} +2026/03/21 11:27:09 [metric_collector] {"stage_name":"metric_collector","events_processed":494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":98.8,"last_update":"2026-03-21T11:27:04.06909323Z"} +2026/03/21 11:27:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:27:04.077267898Z"} +2026/03/21 11:27:09 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":8.582372752373209,"throughput_eps":0,"last_update":"2026-03-21T11:27:04.210503828Z"} +2026/03/21 11:27:09 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":134.1419106594505,"throughput_eps":0,"last_update":"2026-03-21T11:27:04.21051557Z"} +2026/03/21 11:27:09 ───────────────────────────────────────────────── +2026/03/21 11:27:14 ── Pipeline Health ────────────────────────────── +2026/03/21 11:27:14 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":134.1419106594505,"throughput_eps":0,"last_update":"2026-03-21T11:27:09.210170233Z"} +2026/03/21 11:27:14 [log_collector] {"stage_name":"log_collector","events_processed":822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":164.4,"last_update":"2026-03-21T11:27:09.06869944Z"} +2026/03/21 11:27:14 [metric_collector] {"stage_name":"metric_collector","events_processed":499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":99.8,"last_update":"2026-03-21T11:27:09.068852804Z"} +2026/03/21 11:27:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:27:09.075976198Z"} +2026/03/21 11:27:14 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":8.582372752373209,"throughput_eps":0,"last_update":"2026-03-21T11:27:09.210161086Z"} +2026/03/21 11:27:14 ───────────────────────────────────────────────── +2026/03/21 11:27:19 ── Pipeline Health ────────────────────────────── +2026/03/21 11:27:19 [log_collector] {"stage_name":"log_collector","events_processed":822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":164.4,"last_update":"2026-03-21T11:27:14.068481257Z"} +2026/03/21 11:27:19 [metric_collector] {"stage_name":"metric_collector","events_processed":504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":100.8,"last_update":"2026-03-21T11:27:14.068472569Z"} +2026/03/21 11:27:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:27:14.077731855Z"} +2026/03/21 11:27:19 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":8.582372752373209,"throughput_eps":0,"last_update":"2026-03-21T11:27:14.209909548Z"} +2026/03/21 11:27:19 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":134.1419106594505,"throughput_eps":0,"last_update":"2026-03-21T11:27:14.209918254Z"} +2026/03/21 11:27:19 ───────────────────────────────────────────────── +2026/03/21 11:27:24 ── Pipeline Health ────────────────────────────── +2026/03/21 11:27:24 [log_collector] {"stage_name":"log_collector","events_processed":822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":164.4,"last_update":"2026-03-21T11:27:19.068375015Z"} +2026/03/21 11:27:24 [metric_collector] {"stage_name":"metric_collector","events_processed":509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":101.8,"last_update":"2026-03-21T11:27:19.068890202Z"} +2026/03/21 11:27:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":206,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:27:19.075034811Z"} +2026/03/21 11:27:24 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":8.582372752373209,"throughput_eps":0,"last_update":"2026-03-21T11:27:19.210297613Z"} +2026/03/21 11:27:24 [transform_engine] {"stage_name":"transform_engine","events_processed":17,"events_dropped":0,"avg_latency_ms":148.1052029275604,"throughput_eps":0,"last_update":"2026-03-21T11:27:19.414271133Z"} +2026/03/21 11:27:24 ───────────────────────────────────────────────── +2026/03/21 11:27:29 ── Pipeline Health ────────────────────────────── +2026/03/21 11:27:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:27:24.076589771Z"} +2026/03/21 11:27:29 [detection_layer] {"stage_name":"detection_layer","events_processed":17,"events_dropped":0,"avg_latency_ms":7.867160001898567,"throughput_eps":0,"last_update":"2026-03-21T11:27:24.209986389Z"} +2026/03/21 11:27:29 [transform_engine] {"stage_name":"transform_engine","events_processed":17,"events_dropped":0,"avg_latency_ms":148.1052029275604,"throughput_eps":0,"last_update":"2026-03-21T11:27:24.209703657Z"} +2026/03/21 11:27:29 [log_collector] {"stage_name":"log_collector","events_processed":822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":164.4,"last_update":"2026-03-21T11:27:24.068824869Z"} +2026/03/21 11:27:29 [metric_collector] {"stage_name":"metric_collector","events_processed":514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":102.8,"last_update":"2026-03-21T11:27:24.069036594Z"} +2026/03/21 11:27:29 ───────────────────────────────────────────────── +2026/03/21 11:27:34 ── Pipeline Health ────────────────────────────── +2026/03/21 11:27:34 [log_collector] {"stage_name":"log_collector","events_processed":822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":164.4,"last_update":"2026-03-21T11:27:29.068483374Z"} +2026/03/21 11:27:34 [metric_collector] {"stage_name":"metric_collector","events_processed":519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":103.8,"last_update":"2026-03-21T11:27:29.068688166Z"} +2026/03/21 11:27:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":210,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:27:29.077533038Z"} +2026/03/21 11:27:34 [detection_layer] {"stage_name":"detection_layer","events_processed":17,"events_dropped":0,"avg_latency_ms":7.867160001898567,"throughput_eps":0,"last_update":"2026-03-21T11:27:29.210845515Z"} +2026/03/21 11:27:34 [transform_engine] {"stage_name":"transform_engine","events_processed":17,"events_dropped":0,"avg_latency_ms":148.1052029275604,"throughput_eps":0,"last_update":"2026-03-21T11:27:29.209731951Z"} +2026/03/21 11:27:34 ───────────────────────────────────────────────── +2026/03/21 11:27:39 ── Pipeline Health ────────────────────────────── +2026/03/21 11:27:39 [detection_layer] {"stage_name":"detection_layer","events_processed":17,"events_dropped":0,"avg_latency_ms":7.867160001898567,"throughput_eps":0,"last_update":"2026-03-21T11:27:34.210507016Z"} +2026/03/21 11:27:39 [transform_engine] {"stage_name":"transform_engine","events_processed":17,"events_dropped":0,"avg_latency_ms":148.1052029275604,"throughput_eps":0,"last_update":"2026-03-21T11:27:34.210521815Z"} +2026/03/21 11:27:39 [log_collector] {"stage_name":"log_collector","events_processed":825,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":165,"last_update":"2026-03-21T11:27:34.06859116Z"} +2026/03/21 11:27:39 [metric_collector] {"stage_name":"metric_collector","events_processed":524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":104.8,"last_update":"2026-03-21T11:27:34.068771727Z"} +2026/03/21 11:27:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:27:34.075275214Z"} +2026/03/21 11:27:39 ───────────────────────────────────────────────── +2026/03/21 11:27:44 ── Pipeline Health ────────────────────────────── +2026/03/21 11:27:44 [log_collector] {"stage_name":"log_collector","events_processed":833,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":166.6,"last_update":"2026-03-21T11:27:39.068833803Z"} +2026/03/21 11:27:44 [metric_collector] {"stage_name":"metric_collector","events_processed":529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":105.8,"last_update":"2026-03-21T11:27:39.069453721Z"} +2026/03/21 11:27:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:27:39.077687532Z"} +2026/03/21 11:27:44 [detection_layer] {"stage_name":"detection_layer","events_processed":17,"events_dropped":0,"avg_latency_ms":7.867160001898567,"throughput_eps":0,"last_update":"2026-03-21T11:27:39.210085035Z"} +2026/03/21 11:27:44 [transform_engine] {"stage_name":"transform_engine","events_processed":17,"events_dropped":0,"avg_latency_ms":148.1052029275604,"throughput_eps":0,"last_update":"2026-03-21T11:27:39.210097079Z"} +2026/03/21 11:27:44 ───────────────────────────────────────────────── +2026/03/21 11:27:49 ── Pipeline Health ────────────────────────────── +2026/03/21 11:27:49 [detection_layer] {"stage_name":"detection_layer","events_processed":17,"events_dropped":0,"avg_latency_ms":7.867160001898567,"throughput_eps":0,"last_update":"2026-03-21T11:27:44.210476423Z"} +2026/03/21 11:27:49 [transform_engine] {"stage_name":"transform_engine","events_processed":17,"events_dropped":0,"avg_latency_ms":148.1052029275604,"throughput_eps":0,"last_update":"2026-03-21T11:27:44.210485672Z"} +2026/03/21 11:27:49 [log_collector] {"stage_name":"log_collector","events_processed":918,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":183.6,"last_update":"2026-03-21T11:27:44.068720094Z"} +2026/03/21 11:27:49 [metric_collector] {"stage_name":"metric_collector","events_processed":534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":106.8,"last_update":"2026-03-21T11:27:44.068896822Z"} +2026/03/21 11:27:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:27:44.07782863Z"} +2026/03/21 11:27:49 ───────────────────────────────────────────────── +Saved state: 11 clusters, 1178 messages, reason: none +2026/03/21 11:27:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:27:54 [log_collector] {"stage_name":"log_collector","events_processed":1132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":226.4,"last_update":"2026-03-21T11:27:49.068737083Z"} +2026/03/21 11:27:54 [metric_collector] {"stage_name":"metric_collector","events_processed":539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":107.8,"last_update":"2026-03-21T11:27:49.068984406Z"} +2026/03/21 11:27:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:27:49.077092336Z"} +2026/03/21 11:27:54 [detection_layer] {"stage_name":"detection_layer","events_processed":17,"events_dropped":0,"avg_latency_ms":7.867160001898567,"throughput_eps":0,"last_update":"2026-03-21T11:27:49.210322485Z"} +2026/03/21 11:27:54 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":612.6762367420483,"throughput_eps":0,"last_update":"2026-03-21T11:27:51.681303586Z"} +2026/03/21 11:27:54 ───────────────────────────────────────────────── +2026/03/21 11:27:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:27:59 [metric_collector] {"stage_name":"metric_collector","events_processed":544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":108.8,"last_update":"2026-03-21T11:27:54.069872695Z"} +2026/03/21 11:27:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:27:54.078534366Z"} +2026/03/21 11:27:59 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":8.023737601518855,"throughput_eps":0,"last_update":"2026-03-21T11:27:54.210807741Z"} +2026/03/21 11:27:59 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":612.6762367420483,"throughput_eps":0,"last_update":"2026-03-21T11:27:54.209700531Z"} +2026/03/21 11:27:59 [log_collector] {"stage_name":"log_collector","events_processed":1181,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":236.2,"last_update":"2026-03-21T11:27:54.069258909Z"} +2026/03/21 11:27:59 ───────────────────────────────────────────────── +2026/03/21 11:28:04 ── Pipeline Health ────────────────────────────── +2026/03/21 11:28:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":222,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:27:59.077131033Z"} +2026/03/21 11:28:04 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":8.023737601518855,"throughput_eps":0,"last_update":"2026-03-21T11:27:59.210556134Z"} +2026/03/21 11:28:04 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":612.6762367420483,"throughput_eps":0,"last_update":"2026-03-21T11:27:59.210567527Z"} +2026/03/21 11:28:04 [log_collector] {"stage_name":"log_collector","events_processed":1181,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":236.2,"last_update":"2026-03-21T11:27:59.068790257Z"} +2026/03/21 11:28:04 [metric_collector] {"stage_name":"metric_collector","events_processed":549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":109.8,"last_update":"2026-03-21T11:27:59.069006291Z"} +2026/03/21 11:28:04 ───────────────────────────────────────────────── +2026/03/21 11:28:09 ── Pipeline Health ────────────────────────────── +2026/03/21 11:28:09 [log_collector] {"stage_name":"log_collector","events_processed":1181,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":236.2,"last_update":"2026-03-21T11:28:04.068827272Z"} +2026/03/21 11:28:09 [metric_collector] {"stage_name":"metric_collector","events_processed":554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":110.8,"last_update":"2026-03-21T11:28:04.069059858Z"} +2026/03/21 11:28:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:28:04.078434444Z"} +2026/03/21 11:28:09 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":8.023737601518855,"throughput_eps":0,"last_update":"2026-03-21T11:28:04.210867546Z"} +2026/03/21 11:28:09 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":612.6762367420483,"throughput_eps":0,"last_update":"2026-03-21T11:28:04.209671195Z"} +2026/03/21 11:28:09 ───────────────────────────────────────────────── +2026/03/21 11:28:14 ── Pipeline Health ────────────────────────────── +2026/03/21 11:28:14 [log_collector] {"stage_name":"log_collector","events_processed":1181,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":236.2,"last_update":"2026-03-21T11:28:09.068743466Z"} +2026/03/21 11:28:14 [metric_collector] {"stage_name":"metric_collector","events_processed":559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":111.8,"last_update":"2026-03-21T11:28:09.068961604Z"} +2026/03/21 11:28:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:28:09.077871169Z"} +2026/03/21 11:28:14 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":8.023737601518855,"throughput_eps":0,"last_update":"2026-03-21T11:28:09.210136109Z"} +2026/03/21 11:28:14 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":612.6762367420483,"throughput_eps":0,"last_update":"2026-03-21T11:28:09.210145638Z"} +2026/03/21 11:28:14 ───────────────────────────────────────────────── +2026/03/21 11:28:19 ── Pipeline Health ────────────────────────────── +2026/03/21 11:28:19 [metric_collector] {"stage_name":"metric_collector","events_processed":564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":112.8,"last_update":"2026-03-21T11:28:14.069135541Z"} +2026/03/21 11:28:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:28:14.078299914Z"} +2026/03/21 11:28:19 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":8.023737601518855,"throughput_eps":0,"last_update":"2026-03-21T11:28:14.210611864Z"} +2026/03/21 11:28:19 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":612.6762367420483,"throughput_eps":0,"last_update":"2026-03-21T11:28:14.210622313Z"} +2026/03/21 11:28:19 [log_collector] {"stage_name":"log_collector","events_processed":1181,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":236.2,"last_update":"2026-03-21T11:28:14.068840957Z"} +2026/03/21 11:28:19 ───────────────────────────────────────────────── +2026/03/21 11:28:24 ── Pipeline Health ────────────────────────────── +2026/03/21 11:28:24 [log_collector] {"stage_name":"log_collector","events_processed":1181,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":236.2,"last_update":"2026-03-21T11:28:19.069000242Z"} +2026/03/21 11:28:24 [metric_collector] {"stage_name":"metric_collector","events_processed":569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":113.8,"last_update":"2026-03-21T11:28:19.069600833Z"} +2026/03/21 11:28:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:28:19.077383129Z"} +2026/03/21 11:28:24 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":8.023737601518855,"throughput_eps":0,"last_update":"2026-03-21T11:28:19.210707257Z"} +2026/03/21 11:28:24 [transform_engine] {"stage_name":"transform_engine","events_processed":19,"events_dropped":0,"avg_latency_ms":511.3947787936387,"throughput_eps":0,"last_update":"2026-03-21T11:28:19.316984731Z"} +2026/03/21 11:28:24 ───────────────────────────────────────────────── +2026/03/21 11:28:29 ── Pipeline Health ────────────────────────────── +2026/03/21 11:28:29 [transform_engine] {"stage_name":"transform_engine","events_processed":19,"events_dropped":0,"avg_latency_ms":511.3947787936387,"throughput_eps":0,"last_update":"2026-03-21T11:28:24.210440589Z"} +2026/03/21 11:28:29 [log_collector] {"stage_name":"log_collector","events_processed":1181,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":236.2,"last_update":"2026-03-21T11:28:24.069122028Z"} +2026/03/21 11:28:29 [metric_collector] {"stage_name":"metric_collector","events_processed":574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":114.8,"last_update":"2026-03-21T11:28:24.069390623Z"} +2026/03/21 11:28:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:28:24.07901188Z"} +2026/03/21 11:28:29 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":8.467505881215084,"throughput_eps":0,"last_update":"2026-03-21T11:28:24.210466639Z"} +2026/03/21 11:28:29 ───────────────────────────────────────────────── +2026/03/21 11:28:34 ── Pipeline Health ────────────────────────────── +2026/03/21 11:28:34 [log_collector] {"stage_name":"log_collector","events_processed":1181,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":236.2,"last_update":"2026-03-21T11:28:29.068075553Z"} +2026/03/21 11:28:34 [metric_collector] {"stage_name":"metric_collector","events_processed":579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":115.8,"last_update":"2026-03-21T11:28:29.068595449Z"} +2026/03/21 11:28:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:28:29.078101086Z"} +2026/03/21 11:28:34 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":8.467505881215084,"throughput_eps":0,"last_update":"2026-03-21T11:28:29.210422594Z"} +2026/03/21 11:28:34 [transform_engine] {"stage_name":"transform_engine","events_processed":19,"events_dropped":0,"avg_latency_ms":511.3947787936387,"throughput_eps":0,"last_update":"2026-03-21T11:28:29.210428335Z"} +2026/03/21 11:28:34 ───────────────────────────────────────────────── +2026/03/21 11:28:39 ── Pipeline Health ────────────────────────────── +2026/03/21 11:28:39 [log_collector] {"stage_name":"log_collector","events_processed":1181,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":236.2,"last_update":"2026-03-21T11:28:34.068795801Z"} +2026/03/21 11:28:39 [metric_collector] {"stage_name":"metric_collector","events_processed":584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":116.8,"last_update":"2026-03-21T11:28:34.069023216Z"} +2026/03/21 11:28:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:28:34.07757694Z"} +2026/03/21 11:28:39 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":8.467505881215084,"throughput_eps":0,"last_update":"2026-03-21T11:28:34.210831486Z"} +2026/03/21 11:28:39 [transform_engine] {"stage_name":"transform_engine","events_processed":19,"events_dropped":0,"avg_latency_ms":511.3947787936387,"throughput_eps":0,"last_update":"2026-03-21T11:28:34.209736378Z"} +2026/03/21 11:28:39 ───────────────────────────────────────────────── +2026/03/21 11:28:44 ── Pipeline Health ────────────────────────────── +2026/03/21 11:28:44 [transform_engine] {"stage_name":"transform_engine","events_processed":19,"events_dropped":0,"avg_latency_ms":511.3947787936387,"throughput_eps":0,"last_update":"2026-03-21T11:28:39.210690535Z"} +2026/03/21 11:28:44 [log_collector] {"stage_name":"log_collector","events_processed":1181,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":236.2,"last_update":"2026-03-21T11:28:39.068962389Z"} +2026/03/21 11:28:44 [metric_collector] {"stage_name":"metric_collector","events_processed":589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":117.8,"last_update":"2026-03-21T11:28:39.069104291Z"} +2026/03/21 11:28:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:28:39.080429853Z"} +2026/03/21 11:28:44 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":8.467505881215084,"throughput_eps":0,"last_update":"2026-03-21T11:28:39.210682109Z"} +2026/03/21 11:28:44 ───────────────────────────────────────────────── +2026/03/21 11:28:49 ── Pipeline Health ────────────────────────────── +2026/03/21 11:28:49 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":8.467505881215084,"throughput_eps":0,"last_update":"2026-03-21T11:28:44.210762531Z"} +2026/03/21 11:28:49 [transform_engine] {"stage_name":"transform_engine","events_processed":19,"events_dropped":0,"avg_latency_ms":511.3947787936387,"throughput_eps":0,"last_update":"2026-03-21T11:28:44.209664879Z"} +2026/03/21 11:28:49 [log_collector] {"stage_name":"log_collector","events_processed":1181,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":236.2,"last_update":"2026-03-21T11:28:44.06809692Z"} +2026/03/21 11:28:49 [metric_collector] {"stage_name":"metric_collector","events_processed":594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":118.8,"last_update":"2026-03-21T11:28:44.068534758Z"} +2026/03/21 11:28:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:28:44.078495096Z"} +2026/03/21 11:28:49 ───────────────────────────────────────────────── +2026/03/21 11:28:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:28:54 [log_collector] {"stage_name":"log_collector","events_processed":1184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":236.8,"last_update":"2026-03-21T11:28:49.068490601Z"} +2026/03/21 11:28:54 [metric_collector] {"stage_name":"metric_collector","events_processed":599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":119.8,"last_update":"2026-03-21T11:28:49.068843086Z"} +2026/03/21 11:28:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:28:49.075708656Z"} +2026/03/21 11:28:54 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":8.467505881215084,"throughput_eps":0,"last_update":"2026-03-21T11:28:49.209937036Z"} +2026/03/21 11:28:54 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":442.847785034911,"throughput_eps":0,"last_update":"2026-03-21T11:28:49.378608228Z"} +2026/03/21 11:28:54 ───────────────────────────────────────────────── +Saved state: 11 clusters, 1185 messages, reason: none +2026/03/21 11:28:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:28:59 [metric_collector] {"stage_name":"metric_collector","events_processed":604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":120.8,"last_update":"2026-03-21T11:28:54.068964284Z"} +2026/03/21 11:28:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:28:54.075022678Z"} +2026/03/21 11:28:59 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":8.317328904972069,"throughput_eps":0,"last_update":"2026-03-21T11:28:54.21050987Z"} +2026/03/21 11:28:59 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":442.847785034911,"throughput_eps":0,"last_update":"2026-03-21T11:28:54.20978945Z"} +2026/03/21 11:28:59 [log_collector] {"stage_name":"log_collector","events_processed":1184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":236.8,"last_update":"2026-03-21T11:28:54.068598735Z"} +2026/03/21 11:28:59 ───────────────────────────────────────────────── +2026/03/21 11:29:04 ── Pipeline Health ────────────────────────────── +2026/03/21 11:29:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":246,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:28:59.07777839Z"} +2026/03/21 11:29:04 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":8.317328904972069,"throughput_eps":0,"last_update":"2026-03-21T11:28:59.210500496Z"} +2026/03/21 11:29:04 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":442.847785034911,"throughput_eps":0,"last_update":"2026-03-21T11:28:59.210513401Z"} +2026/03/21 11:29:04 [log_collector] {"stage_name":"log_collector","events_processed":1195,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":239,"last_update":"2026-03-21T11:28:59.068891368Z"} +2026/03/21 11:29:04 [metric_collector] {"stage_name":"metric_collector","events_processed":609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":121.8,"last_update":"2026-03-21T11:28:59.069630223Z"} +2026/03/21 11:29:04 ───────────────────────────────────────────────── +2026/03/21 11:29:09 ── Pipeline Health ────────────────────────────── +2026/03/21 11:29:09 [log_collector] {"stage_name":"log_collector","events_processed":1202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":240.4,"last_update":"2026-03-21T11:29:04.068851967Z"} +2026/03/21 11:29:09 [metric_collector] {"stage_name":"metric_collector","events_processed":614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":122.8,"last_update":"2026-03-21T11:29:04.069151922Z"} +2026/03/21 11:29:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:29:04.079773176Z"} +2026/03/21 11:29:09 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":8.317328904972069,"throughput_eps":0,"last_update":"2026-03-21T11:29:04.210016394Z"} +2026/03/21 11:29:09 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":442.847785034911,"throughput_eps":0,"last_update":"2026-03-21T11:29:04.210027935Z"} +2026/03/21 11:29:09 ───────────────────────────────────────────────── +2026/03/21 11:29:14 ── Pipeline Health ────────────────────────────── +2026/03/21 11:29:14 [log_collector] {"stage_name":"log_collector","events_processed":1211,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":242.2,"last_update":"2026-03-21T11:29:09.068618855Z"} +2026/03/21 11:29:14 [metric_collector] {"stage_name":"metric_collector","events_processed":619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":123.8,"last_update":"2026-03-21T11:29:09.068954387Z"} +2026/03/21 11:29:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:29:09.078012998Z"} +2026/03/21 11:29:14 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":8.317328904972069,"throughput_eps":0,"last_update":"2026-03-21T11:29:09.210280343Z"} +2026/03/21 11:29:14 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":442.847785034911,"throughput_eps":0,"last_update":"2026-03-21T11:29:09.210295232Z"} +2026/03/21 11:29:14 ───────────────────────────────────────────────── +2026/03/21 11:29:19 ── Pipeline Health ────────────────────────────── +2026/03/21 11:29:19 [metric_collector] {"stage_name":"metric_collector","events_processed":624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":124.8,"last_update":"2026-03-21T11:29:14.069171235Z"} +2026/03/21 11:29:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:29:14.078284771Z"} +2026/03/21 11:29:19 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":8.317328904972069,"throughput_eps":0,"last_update":"2026-03-21T11:29:14.210611889Z"} +2026/03/21 11:29:19 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":442.847785034911,"throughput_eps":0,"last_update":"2026-03-21T11:29:14.21062785Z"} +2026/03/21 11:29:19 [log_collector] {"stage_name":"log_collector","events_processed":1211,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":242.2,"last_update":"2026-03-21T11:29:14.068941004Z"} +2026/03/21 11:29:19 ───────────────────────────────────────────────── +2026/03/21 11:29:24 ── Pipeline Health ────────────────────────────── +2026/03/21 11:29:24 [log_collector] {"stage_name":"log_collector","events_processed":1211,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":242.2,"last_update":"2026-03-21T11:29:19.068846764Z"} +2026/03/21 11:29:24 [metric_collector] {"stage_name":"metric_collector","events_processed":629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":125.8,"last_update":"2026-03-21T11:29:19.069051346Z"} +2026/03/21 11:29:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:29:19.077210063Z"} +2026/03/21 11:29:24 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":8.317328904972069,"throughput_eps":0,"last_update":"2026-03-21T11:29:19.210586222Z"} +2026/03/21 11:29:24 [transform_engine] {"stage_name":"transform_engine","events_processed":21,"events_dropped":0,"avg_latency_ms":376.7539478279288,"throughput_eps":0,"last_update":"2026-03-21T11:29:19.322974239Z"} +2026/03/21 11:29:24 ───────────────────────────────────────────────── +2026/03/21 11:29:29 ── Pipeline Health ────────────────────────────── +2026/03/21 11:29:29 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":8.819990123977655,"throughput_eps":0,"last_update":"2026-03-21T11:29:24.21032843Z"} +2026/03/21 11:29:29 [transform_engine] {"stage_name":"transform_engine","events_processed":21,"events_dropped":0,"avg_latency_ms":376.7539478279288,"throughput_eps":0,"last_update":"2026-03-21T11:29:24.210338308Z"} +2026/03/21 11:29:29 [log_collector] {"stage_name":"log_collector","events_processed":1211,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":242.2,"last_update":"2026-03-21T11:29:24.0688962Z"} +2026/03/21 11:29:29 [metric_collector] {"stage_name":"metric_collector","events_processed":634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":126.8,"last_update":"2026-03-21T11:29:24.069112835Z"} +2026/03/21 11:29:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:29:24.078085761Z"} +2026/03/21 11:29:29 ───────────────────────────────────────────────── +2026/03/21 11:29:34 ── Pipeline Health ────────────────────────────── +2026/03/21 11:29:34 [log_collector] {"stage_name":"log_collector","events_processed":1211,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":242.2,"last_update":"2026-03-21T11:29:29.068685569Z"} +2026/03/21 11:29:34 [metric_collector] {"stage_name":"metric_collector","events_processed":639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":127.8,"last_update":"2026-03-21T11:29:29.069277001Z"} +2026/03/21 11:29:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:29:29.078339519Z"} +2026/03/21 11:29:34 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":8.819990123977655,"throughput_eps":0,"last_update":"2026-03-21T11:29:29.210556988Z"} +2026/03/21 11:29:34 [transform_engine] {"stage_name":"transform_engine","events_processed":21,"events_dropped":0,"avg_latency_ms":376.7539478279288,"throughput_eps":0,"last_update":"2026-03-21T11:29:29.210564162Z"} +2026/03/21 11:29:34 ───────────────────────────────────────────────── +2026/03/21 11:29:39 ── Pipeline Health ────────────────────────────── +2026/03/21 11:29:39 [log_collector] {"stage_name":"log_collector","events_processed":1224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":244.8,"last_update":"2026-03-21T11:29:34.068314217Z"} +2026/03/21 11:29:39 [metric_collector] {"stage_name":"metric_collector","events_processed":644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":128.8,"last_update":"2026-03-21T11:29:34.068956778Z"} +2026/03/21 11:29:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:29:34.078955279Z"} +2026/03/21 11:29:39 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":8.819990123977655,"throughput_eps":0,"last_update":"2026-03-21T11:29:34.210311297Z"} +2026/03/21 11:29:39 [transform_engine] {"stage_name":"transform_engine","events_processed":21,"events_dropped":0,"avg_latency_ms":376.7539478279288,"throughput_eps":0,"last_update":"2026-03-21T11:29:34.21032299Z"} +2026/03/21 11:29:39 ───────────────────────────────────────────────── +2026/03/21 11:29:44 ── Pipeline Health ────────────────────────────── +2026/03/21 11:29:44 [log_collector] {"stage_name":"log_collector","events_processed":1225,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":245,"last_update":"2026-03-21T11:29:39.068899149Z"} +2026/03/21 11:29:44 [metric_collector] {"stage_name":"metric_collector","events_processed":649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":129.8,"last_update":"2026-03-21T11:29:39.069274578Z"} +2026/03/21 11:29:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:29:39.078153835Z"} +2026/03/21 11:29:44 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":8.819990123977655,"throughput_eps":0,"last_update":"2026-03-21T11:29:39.210404337Z"} +2026/03/21 11:29:44 [transform_engine] {"stage_name":"transform_engine","events_processed":21,"events_dropped":0,"avg_latency_ms":376.7539478279288,"throughput_eps":0,"last_update":"2026-03-21T11:29:39.210411521Z"} +2026/03/21 11:29:44 ───────────────────────────────────────────────── +2026/03/21 11:29:49 ── Pipeline Health ────────────────────────────── +2026/03/21 11:29:49 [log_collector] {"stage_name":"log_collector","events_processed":1225,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":245,"last_update":"2026-03-21T11:29:44.068781922Z"} +2026/03/21 11:29:49 [metric_collector] {"stage_name":"metric_collector","events_processed":654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":130.8,"last_update":"2026-03-21T11:29:44.069039647Z"} +2026/03/21 11:29:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:29:44.078483004Z"} +2026/03/21 11:29:49 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":8.819990123977655,"throughput_eps":0,"last_update":"2026-03-21T11:29:44.210865178Z"} +2026/03/21 11:29:49 [transform_engine] {"stage_name":"transform_engine","events_processed":21,"events_dropped":0,"avg_latency_ms":376.7539478279288,"throughput_eps":0,"last_update":"2026-03-21T11:29:44.20973315Z"} +2026/03/21 11:29:49 ───────────────────────────────────────────────── +2026/03/21 11:29:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:29:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:29:49.079828219Z"} +2026/03/21 11:29:54 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":8.819990123977655,"throughput_eps":0,"last_update":"2026-03-21T11:29:49.210036168Z"} +2026/03/21 11:29:54 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":325.6405424623431,"throughput_eps":0,"last_update":"2026-03-21T11:29:49.331234961Z"} +2026/03/21 11:29:54 [log_collector] {"stage_name":"log_collector","events_processed":1225,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":245,"last_update":"2026-03-21T11:29:49.068780679Z"} +2026/03/21 11:29:54 [metric_collector] {"stage_name":"metric_collector","events_processed":659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":131.8,"last_update":"2026-03-21T11:29:49.069074912Z"} +2026/03/21 11:29:54 ───────────────────────────────────────────────── +2026/03/21 11:29:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:29:59 [log_collector] {"stage_name":"log_collector","events_processed":1225,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":245,"last_update":"2026-03-21T11:29:54.068597294Z"} +2026/03/21 11:29:59 [metric_collector] {"stage_name":"metric_collector","events_processed":663,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":132.6,"last_update":"2026-03-21T11:29:54.068606081Z"} +2026/03/21 11:29:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:29:54.078264Z"} +2026/03/21 11:29:59 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":9.342872499182125,"throughput_eps":0,"last_update":"2026-03-21T11:29:54.210526074Z"} +2026/03/21 11:29:59 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":325.6405424623431,"throughput_eps":0,"last_update":"2026-03-21T11:29:54.210537526Z"} +2026/03/21 11:29:59 ───────────────────────────────────────────────── +2026/03/21 11:30:04 ── Pipeline Health ────────────────────────────── +2026/03/21 11:30:04 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":9.342872499182125,"throughput_eps":0,"last_update":"2026-03-21T11:29:59.209967641Z"} +2026/03/21 11:30:04 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":325.6405424623431,"throughput_eps":0,"last_update":"2026-03-21T11:29:59.209976167Z"} +2026/03/21 11:30:04 [log_collector] {"stage_name":"log_collector","events_processed":1225,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":245,"last_update":"2026-03-21T11:29:59.068128043Z"} +2026/03/21 11:30:04 [metric_collector] {"stage_name":"metric_collector","events_processed":669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":133.8,"last_update":"2026-03-21T11:29:59.068492942Z"} +2026/03/21 11:30:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:29:59.077727851Z"} +2026/03/21 11:30:04 ───────────────────────────────────────────────── +2026/03/21 11:30:09 ── Pipeline Health ────────────────────────────── +2026/03/21 11:30:09 [metric_collector] {"stage_name":"metric_collector","events_processed":674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":134.8,"last_update":"2026-03-21T11:30:04.068978597Z"} +2026/03/21 11:30:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:30:04.087920518Z"} +2026/03/21 11:30:09 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":9.342872499182125,"throughput_eps":0,"last_update":"2026-03-21T11:30:04.210162219Z"} +2026/03/21 11:30:09 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":325.6405424623431,"throughput_eps":0,"last_update":"2026-03-21T11:30:04.210174973Z"} +2026/03/21 11:30:09 [log_collector] {"stage_name":"log_collector","events_processed":1225,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":245,"last_update":"2026-03-21T11:30:04.068394939Z"} +2026/03/21 11:30:09 ───────────────────────────────────────────────── +2026/03/21 11:30:14 ── Pipeline Health ────────────────────────────── +2026/03/21 11:30:14 [log_collector] {"stage_name":"log_collector","events_processed":1225,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":245,"last_update":"2026-03-21T11:30:09.068598964Z"} +2026/03/21 11:30:14 [metric_collector] {"stage_name":"metric_collector","events_processed":679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":135.8,"last_update":"2026-03-21T11:30:09.068954795Z"} +2026/03/21 11:30:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:30:09.078708788Z"} +2026/03/21 11:30:14 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":9.342872499182125,"throughput_eps":0,"last_update":"2026-03-21T11:30:09.20993624Z"} +2026/03/21 11:30:14 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":325.6405424623431,"throughput_eps":0,"last_update":"2026-03-21T11:30:09.209943845Z"} +2026/03/21 11:30:14 ───────────────────────────────────────────────── +2026/03/21 11:30:19 ── Pipeline Health ────────────────────────────── +2026/03/21 11:30:19 [metric_collector] {"stage_name":"metric_collector","events_processed":684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":136.8,"last_update":"2026-03-21T11:30:14.068835231Z"} +2026/03/21 11:30:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":276,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:30:14.078500714Z"} +2026/03/21 11:30:19 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":9.342872499182125,"throughput_eps":0,"last_update":"2026-03-21T11:30:14.20986014Z"} +2026/03/21 11:30:19 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":325.6405424623431,"throughput_eps":0,"last_update":"2026-03-21T11:30:14.209737064Z"} +2026/03/21 11:30:19 [log_collector] {"stage_name":"log_collector","events_processed":1225,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":245,"last_update":"2026-03-21T11:30:14.068561497Z"} +2026/03/21 11:30:19 ───────────────────────────────────────────────── +2026/03/21 11:30:24 ── Pipeline Health ────────────────────────────── +2026/03/21 11:30:24 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":9.342872499182125,"throughput_eps":0,"last_update":"2026-03-21T11:30:19.20996855Z"} +2026/03/21 11:30:24 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":273.2637857698745,"throughput_eps":0,"last_update":"2026-03-21T11:30:19.273628714Z"} +2026/03/21 11:30:24 [log_collector] {"stage_name":"log_collector","events_processed":1225,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":245,"last_update":"2026-03-21T11:30:19.068963369Z"} +2026/03/21 11:30:24 [metric_collector] {"stage_name":"metric_collector","events_processed":689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":137.8,"last_update":"2026-03-21T11:30:19.069195615Z"} +2026/03/21 11:30:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:30:19.078623933Z"} +2026/03/21 11:30:24 ───────────────────────────────────────────────── +2026/03/21 11:30:29 ── Pipeline Health ────────────────────────────── +2026/03/21 11:30:29 [metric_collector] {"stage_name":"metric_collector","events_processed":694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":138.8,"last_update":"2026-03-21T11:30:24.069025873Z"} +2026/03/21 11:30:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:30:24.078109101Z"} +2026/03/21 11:30:29 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":9.7112887993457,"throughput_eps":0,"last_update":"2026-03-21T11:30:24.210397856Z"} +2026/03/21 11:30:29 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":273.2637857698745,"throughput_eps":0,"last_update":"2026-03-21T11:30:24.210412444Z"} +2026/03/21 11:30:29 [log_collector] {"stage_name":"log_collector","events_processed":1225,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":245,"last_update":"2026-03-21T11:30:24.068768379Z"} +2026/03/21 11:30:29 ───────────────────────────────────────────────── +2026/03/21 11:30:34 ── Pipeline Health ────────────────────────────── +2026/03/21 11:30:34 [log_collector] {"stage_name":"log_collector","events_processed":1225,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":245,"last_update":"2026-03-21T11:30:29.068812838Z"} +2026/03/21 11:30:34 [metric_collector] {"stage_name":"metric_collector","events_processed":699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":139.8,"last_update":"2026-03-21T11:30:29.069264373Z"} +2026/03/21 11:30:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:30:29.078296743Z"} +2026/03/21 11:30:34 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":9.7112887993457,"throughput_eps":0,"last_update":"2026-03-21T11:30:29.210689578Z"} +2026/03/21 11:30:34 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":273.2637857698745,"throughput_eps":0,"last_update":"2026-03-21T11:30:29.210739564Z"} +2026/03/21 11:30:34 ───────────────────────────────────────────────── +Saved state: 11 clusters, 1226 messages, reason: none +2026/03/21 11:30:39 ── Pipeline Health ────────────────────────────── +2026/03/21 11:30:39 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":9.7112887993457,"throughput_eps":0,"last_update":"2026-03-21T11:30:34.210326452Z"} +2026/03/21 11:30:39 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":273.2637857698745,"throughput_eps":0,"last_update":"2026-03-21T11:30:34.21022653Z"} +2026/03/21 11:30:39 [log_collector] {"stage_name":"log_collector","events_processed":1225,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":245,"last_update":"2026-03-21T11:30:34.068142034Z"} +2026/03/21 11:30:39 [metric_collector] {"stage_name":"metric_collector","events_processed":704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":140.8,"last_update":"2026-03-21T11:30:34.068833858Z"} +2026/03/21 11:30:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:30:34.076975934Z"} +2026/03/21 11:30:39 ───────────────────────────────────────────────── +2026/03/21 11:30:44 ── Pipeline Health ────────────────────────────── +2026/03/21 11:30:44 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":273.2637857698745,"throughput_eps":0,"last_update":"2026-03-21T11:30:39.211173135Z"} +2026/03/21 11:30:44 [log_collector] {"stage_name":"log_collector","events_processed":1230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":246,"last_update":"2026-03-21T11:30:39.068521251Z"} +2026/03/21 11:30:44 [metric_collector] {"stage_name":"metric_collector","events_processed":709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":141.8,"last_update":"2026-03-21T11:30:39.068840342Z"} +2026/03/21 11:30:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":286,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:30:39.080296445Z"} +2026/03/21 11:30:44 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":9.7112887993457,"throughput_eps":0,"last_update":"2026-03-21T11:30:39.210445882Z"} +2026/03/21 11:30:44 ───────────────────────────────────────────────── +2026/03/21 11:30:49 ── Pipeline Health ────────────────────────────── +2026/03/21 11:30:49 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":273.2637857698745,"throughput_eps":0,"last_update":"2026-03-21T11:30:44.210080603Z"} +2026/03/21 11:30:49 [log_collector] {"stage_name":"log_collector","events_processed":1230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":246,"last_update":"2026-03-21T11:30:44.0688396Z"} +2026/03/21 11:30:49 [metric_collector] {"stage_name":"metric_collector","events_processed":714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":142.8,"last_update":"2026-03-21T11:30:44.069097494Z"} +2026/03/21 11:30:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:30:44.076831468Z"} +2026/03/21 11:30:49 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":9.7112887993457,"throughput_eps":0,"last_update":"2026-03-21T11:30:44.210050274Z"} +2026/03/21 11:30:49 ───────────────────────────────────────────────── +2026/03/21 11:30:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:30:54 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":512.9082550158996,"throughput_eps":0,"last_update":"2026-03-21T11:30:50.681904372Z"} +2026/03/21 11:30:54 [log_collector] {"stage_name":"log_collector","events_processed":1230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":246,"last_update":"2026-03-21T11:30:49.068904023Z"} +2026/03/21 11:30:54 [metric_collector] {"stage_name":"metric_collector","events_processed":718,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":143.6,"last_update":"2026-03-21T11:30:49.068956886Z"} +2026/03/21 11:30:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:30:49.075173062Z"} +2026/03/21 11:30:54 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":9.7112887993457,"throughput_eps":0,"last_update":"2026-03-21T11:30:49.210806573Z"} +2026/03/21 11:30:54 ───────────────────────────────────────────────── +2026/03/21 11:30:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:30:59 [log_collector] {"stage_name":"log_collector","events_processed":1230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":246,"last_update":"2026-03-21T11:30:54.068794644Z"} +2026/03/21 11:30:59 [metric_collector] {"stage_name":"metric_collector","events_processed":724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":144.8,"last_update":"2026-03-21T11:30:54.069043461Z"} +2026/03/21 11:30:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:30:54.075773632Z"} +2026/03/21 11:30:59 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":9.400990839476561,"throughput_eps":0,"last_update":"2026-03-21T11:30:54.209978426Z"} +2026/03/21 11:30:59 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":512.9082550158996,"throughput_eps":0,"last_update":"2026-03-21T11:30:54.209987313Z"} +2026/03/21 11:30:59 ───────────────────────────────────────────────── +2026/03/21 11:31:04 ── Pipeline Health ────────────────────────────── +2026/03/21 11:31:04 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":512.9082550158996,"throughput_eps":0,"last_update":"2026-03-21T11:30:59.209729557Z"} +2026/03/21 11:31:04 [log_collector] {"stage_name":"log_collector","events_processed":1230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":246,"last_update":"2026-03-21T11:30:59.069570699Z"} +2026/03/21 11:31:04 [metric_collector] {"stage_name":"metric_collector","events_processed":729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":145.8,"last_update":"2026-03-21T11:30:59.069640301Z"} +2026/03/21 11:31:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:30:59.075935549Z"} +2026/03/21 11:31:04 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":9.400990839476561,"throughput_eps":0,"last_update":"2026-03-21T11:30:59.210783436Z"} +2026/03/21 11:31:04 ───────────────────────────────────────────────── +2026/03/21 11:31:09 ── Pipeline Health ────────────────────────────── +2026/03/21 11:31:09 [log_collector] {"stage_name":"log_collector","events_processed":1230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":246,"last_update":"2026-03-21T11:31:04.068396087Z"} +2026/03/21 11:31:09 [metric_collector] {"stage_name":"metric_collector","events_processed":734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":146.8,"last_update":"2026-03-21T11:31:04.068697714Z"} +2026/03/21 11:31:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:31:04.074915273Z"} +2026/03/21 11:31:09 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":9.400990839476561,"throughput_eps":0,"last_update":"2026-03-21T11:31:04.21011285Z"} +2026/03/21 11:31:09 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":512.9082550158996,"throughput_eps":0,"last_update":"2026-03-21T11:31:04.210126345Z"} +2026/03/21 11:31:09 ───────────────────────────────────────────────── +2026/03/21 11:31:14 ── Pipeline Health ────────────────────────────── +2026/03/21 11:31:14 [log_collector] {"stage_name":"log_collector","events_processed":1230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":246,"last_update":"2026-03-21T11:31:09.068766935Z"} +2026/03/21 11:31:14 [metric_collector] {"stage_name":"metric_collector","events_processed":739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":147.8,"last_update":"2026-03-21T11:31:09.068960787Z"} +2026/03/21 11:31:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:31:09.075161413Z"} +2026/03/21 11:31:14 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":9.400990839476561,"throughput_eps":0,"last_update":"2026-03-21T11:31:09.210455484Z"} +2026/03/21 11:31:14 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":512.9082550158996,"throughput_eps":0,"last_update":"2026-03-21T11:31:09.210478539Z"} +2026/03/21 11:31:14 ───────────────────────────────────────────────── +2026/03/21 11:31:19 ── Pipeline Health ────────────────────────────── +2026/03/21 11:31:19 [log_collector] {"stage_name":"log_collector","events_processed":1230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":246,"last_update":"2026-03-21T11:31:14.068599752Z"} +2026/03/21 11:31:19 [metric_collector] {"stage_name":"metric_collector","events_processed":744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":148.8,"last_update":"2026-03-21T11:31:14.068852356Z"} +2026/03/21 11:31:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:31:14.076794378Z"} +2026/03/21 11:31:19 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":9.400990839476561,"throughput_eps":0,"last_update":"2026-03-21T11:31:14.210016871Z"} +2026/03/21 11:31:19 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":512.9082550158996,"throughput_eps":0,"last_update":"2026-03-21T11:31:14.209988977Z"} +2026/03/21 11:31:19 ───────────────────────────────────────────────── +2026/03/21 11:31:24 ── Pipeline Health ────────────────────────────── +2026/03/21 11:31:24 [log_collector] {"stage_name":"log_collector","events_processed":1233,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":246.6,"last_update":"2026-03-21T11:31:19.0686213Z"} +2026/03/21 11:31:24 [metric_collector] {"stage_name":"metric_collector","events_processed":749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":149.8,"last_update":"2026-03-21T11:31:19.068830702Z"} +2026/03/21 11:31:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:31:19.07536656Z"} +2026/03/21 11:31:24 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":9.400990839476561,"throughput_eps":0,"last_update":"2026-03-21T11:31:19.210584836Z"} +2026/03/21 11:31:24 [transform_engine] {"stage_name":"transform_engine","events_processed":25,"events_dropped":0,"avg_latency_ms":777.4946204127198,"throughput_eps":0,"last_update":"2026-03-21T11:31:21.046439246Z"} +2026/03/21 11:31:24 ───────────────────────────────────────────────── +2026/03/21 11:31:29 ── Pipeline Health ────────────────────────────── +2026/03/21 11:31:29 [transform_engine] {"stage_name":"transform_engine","events_processed":25,"events_dropped":0,"avg_latency_ms":777.4946204127198,"throughput_eps":0,"last_update":"2026-03-21T11:31:24.210321787Z"} +2026/03/21 11:31:29 [log_collector] {"stage_name":"log_collector","events_processed":1241,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":248.2,"last_update":"2026-03-21T11:31:24.068785089Z"} +2026/03/21 11:31:29 [metric_collector] {"stage_name":"metric_collector","events_processed":754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":150.8,"last_update":"2026-03-21T11:31:24.069023596Z"} +2026/03/21 11:31:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:31:24.077038958Z"} +2026/03/21 11:31:29 [detection_layer] {"stage_name":"detection_layer","events_processed":25,"events_dropped":0,"avg_latency_ms":8.85738107158125,"throughput_eps":0,"last_update":"2026-03-21T11:31:24.210310817Z"} +2026/03/21 11:31:29 ───────────────────────────────────────────────── +2026/03/21 11:31:34 ── Pipeline Health ────────────────────────────── +2026/03/21 11:31:34 [detection_layer] {"stage_name":"detection_layer","events_processed":25,"events_dropped":0,"avg_latency_ms":8.85738107158125,"throughput_eps":0,"last_update":"2026-03-21T11:31:29.210512578Z"} +2026/03/21 11:31:34 [transform_engine] {"stage_name":"transform_engine","events_processed":25,"events_dropped":0,"avg_latency_ms":777.4946204127198,"throughput_eps":0,"last_update":"2026-03-21T11:31:29.210521936Z"} +2026/03/21 11:31:34 [log_collector] {"stage_name":"log_collector","events_processed":1317,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":263.4,"last_update":"2026-03-21T11:31:29.068630117Z"} +2026/03/21 11:31:34 [metric_collector] {"stage_name":"metric_collector","events_processed":759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":151.8,"last_update":"2026-03-21T11:31:29.068830691Z"} +2026/03/21 11:31:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:31:29.07576834Z"} +2026/03/21 11:31:34 ───────────────────────────────────────────────── +2026/03/21 11:31:39 ── Pipeline Health ────────────────────────────── +2026/03/21 11:31:39 [metric_collector] {"stage_name":"metric_collector","events_processed":764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":152.8,"last_update":"2026-03-21T11:31:34.069586854Z"} +2026/03/21 11:31:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:31:34.076724105Z"} +2026/03/21 11:31:39 [detection_layer] {"stage_name":"detection_layer","events_processed":25,"events_dropped":0,"avg_latency_ms":8.85738107158125,"throughput_eps":0,"last_update":"2026-03-21T11:31:34.210023796Z"} +2026/03/21 11:31:39 [transform_engine] {"stage_name":"transform_engine","events_processed":25,"events_dropped":0,"avg_latency_ms":777.4946204127198,"throughput_eps":0,"last_update":"2026-03-21T11:31:34.20998393Z"} +2026/03/21 11:31:39 [log_collector] {"stage_name":"log_collector","events_processed":1541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":308.2,"last_update":"2026-03-21T11:31:34.068522817Z"} +2026/03/21 11:31:39 ───────────────────────────────────────────────── +2026/03/21 11:31:44 ── Pipeline Health ────────────────────────────── +2026/03/21 11:31:44 [transform_engine] {"stage_name":"transform_engine","events_processed":25,"events_dropped":0,"avg_latency_ms":777.4946204127198,"throughput_eps":0,"last_update":"2026-03-21T11:31:39.210583923Z"} +2026/03/21 11:31:44 [log_collector] {"stage_name":"log_collector","events_processed":1590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":318,"last_update":"2026-03-21T11:31:39.068864625Z"} +2026/03/21 11:31:44 [metric_collector] {"stage_name":"metric_collector","events_processed":769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":153.8,"last_update":"2026-03-21T11:31:39.069123911Z"} +2026/03/21 11:31:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:31:39.077068639Z"} +2026/03/21 11:31:44 [detection_layer] {"stage_name":"detection_layer","events_processed":25,"events_dropped":0,"avg_latency_ms":8.85738107158125,"throughput_eps":0,"last_update":"2026-03-21T11:31:39.210538666Z"} +2026/03/21 11:31:44 ───────────────────────────────────────────────── +2026/03/21 11:31:49 ── Pipeline Health ────────────────────────────── +2026/03/21 11:31:49 [log_collector] {"stage_name":"log_collector","events_processed":1590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":318,"last_update":"2026-03-21T11:31:44.069074329Z"} +2026/03/21 11:31:49 [metric_collector] {"stage_name":"metric_collector","events_processed":774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":154.8,"last_update":"2026-03-21T11:31:44.069406385Z"} +2026/03/21 11:31:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:31:44.078548907Z"} +2026/03/21 11:31:49 [detection_layer] {"stage_name":"detection_layer","events_processed":25,"events_dropped":0,"avg_latency_ms":8.85738107158125,"throughput_eps":0,"last_update":"2026-03-21T11:31:44.210957892Z"} +2026/03/21 11:31:49 [transform_engine] {"stage_name":"transform_engine","events_processed":25,"events_dropped":0,"avg_latency_ms":777.4946204127198,"throughput_eps":0,"last_update":"2026-03-21T11:31:44.209781429Z"} +2026/03/21 11:31:49 ───────────────────────────────────────────────── +2026/03/21 11:31:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:31:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:31:49.078128194Z"} +2026/03/21 11:31:54 [detection_layer] {"stage_name":"detection_layer","events_processed":25,"events_dropped":0,"avg_latency_ms":8.85738107158125,"throughput_eps":0,"last_update":"2026-03-21T11:31:49.210515117Z"} +2026/03/21 11:31:54 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":645.0539939301759,"throughput_eps":0,"last_update":"2026-03-21T11:31:49.325916565Z"} +2026/03/21 11:31:54 [log_collector] {"stage_name":"log_collector","events_processed":1590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":318,"last_update":"2026-03-21T11:31:49.068956105Z"} +2026/03/21 11:31:54 [metric_collector] {"stage_name":"metric_collector","events_processed":779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":155.8,"last_update":"2026-03-21T11:31:49.069244238Z"} +2026/03/21 11:31:54 ───────────────────────────────────────────────── +2026/03/21 11:31:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:31:59 [log_collector] {"stage_name":"log_collector","events_processed":1590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":318,"last_update":"2026-03-21T11:31:54.068866296Z"} +2026/03/21 11:31:59 [metric_collector] {"stage_name":"metric_collector","events_processed":784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":156.8,"last_update":"2026-03-21T11:31:54.069433762Z"} +2026/03/21 11:31:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:31:54.078277913Z"} +2026/03/21 11:31:59 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":9.214039057265,"throughput_eps":0,"last_update":"2026-03-21T11:31:54.210517764Z"} +2026/03/21 11:31:59 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":645.0539939301759,"throughput_eps":0,"last_update":"2026-03-21T11:31:54.21054749Z"} +2026/03/21 11:31:59 ───────────────────────────────────────────────── +2026/03/21 11:32:04 ── Pipeline Health ────────────────────────────── +2026/03/21 11:32:04 [log_collector] {"stage_name":"log_collector","events_processed":1590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":318,"last_update":"2026-03-21T11:31:59.068865395Z"} +2026/03/21 11:32:04 [metric_collector] {"stage_name":"metric_collector","events_processed":789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":157.8,"last_update":"2026-03-21T11:31:59.069112809Z"} +2026/03/21 11:32:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:31:59.077688625Z"} +2026/03/21 11:32:04 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":9.214039057265,"throughput_eps":0,"last_update":"2026-03-21T11:31:59.209921653Z"} +2026/03/21 11:32:04 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":645.0539939301759,"throughput_eps":0,"last_update":"2026-03-21T11:31:59.210024711Z"} +2026/03/21 11:32:04 ───────────────────────────────────────────────── +2026/03/21 11:32:09 ── Pipeline Health ────────────────────────────── +2026/03/21 11:32:09 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":645.0539939301759,"throughput_eps":0,"last_update":"2026-03-21T11:32:04.209698105Z"} +2026/03/21 11:32:09 [log_collector] {"stage_name":"log_collector","events_processed":1590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":318,"last_update":"2026-03-21T11:32:04.0686012Z"} +2026/03/21 11:32:09 [metric_collector] {"stage_name":"metric_collector","events_processed":794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":158.8,"last_update":"2026-03-21T11:32:04.068923928Z"} +2026/03/21 11:32:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":320,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:32:04.077412356Z"} +2026/03/21 11:32:09 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":9.214039057265,"throughput_eps":0,"last_update":"2026-03-21T11:32:04.210850863Z"} +2026/03/21 11:32:09 ───────────────────────────────────────────────── +2026/03/21 11:32:14 ── Pipeline Health ────────────────────────────── +2026/03/21 11:32:14 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":9.214039057265,"throughput_eps":0,"last_update":"2026-03-21T11:32:09.21088577Z"} +2026/03/21 11:32:14 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":645.0539939301759,"throughput_eps":0,"last_update":"2026-03-21T11:32:09.209759823Z"} +2026/03/21 11:32:14 [log_collector] {"stage_name":"log_collector","events_processed":1590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":318,"last_update":"2026-03-21T11:32:09.069057273Z"} +2026/03/21 11:32:14 [metric_collector] {"stage_name":"metric_collector","events_processed":799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":159.8,"last_update":"2026-03-21T11:32:09.06933758Z"} +2026/03/21 11:32:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:32:09.079691411Z"} +2026/03/21 11:32:14 ───────────────────────────────────────────────── +2026/03/21 11:32:19 ── Pipeline Health ────────────────────────────── +2026/03/21 11:32:19 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":645.0539939301759,"throughput_eps":0,"last_update":"2026-03-21T11:32:14.209962221Z"} +2026/03/21 11:32:19 [log_collector] {"stage_name":"log_collector","events_processed":1590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":318,"last_update":"2026-03-21T11:32:14.068279543Z"} +2026/03/21 11:32:19 [metric_collector] {"stage_name":"metric_collector","events_processed":804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":160.8,"last_update":"2026-03-21T11:32:14.068900201Z"} +2026/03/21 11:32:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:32:14.078612634Z"} +2026/03/21 11:32:19 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":9.214039057265,"throughput_eps":0,"last_update":"2026-03-21T11:32:14.209892256Z"} +2026/03/21 11:32:19 ───────────────────────────────────────────────── +2026/03/21 11:32:24 ── Pipeline Health ────────────────────────────── +2026/03/21 11:32:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:32:19.078388035Z"} +2026/03/21 11:32:24 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":9.214039057265,"throughput_eps":0,"last_update":"2026-03-21T11:32:19.211455241Z"} +2026/03/21 11:32:24 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":529.3767641441408,"throughput_eps":0,"last_update":"2026-03-21T11:32:19.277386605Z"} +2026/03/21 11:32:24 [log_collector] {"stage_name":"log_collector","events_processed":1590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":318,"last_update":"2026-03-21T11:32:24.068217964Z"} +2026/03/21 11:32:24 [metric_collector] {"stage_name":"metric_collector","events_processed":808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":161.6,"last_update":"2026-03-21T11:32:19.068014074Z"} +2026/03/21 11:32:24 ───────────────────────────────────────────────── +2026/03/21 11:32:29 ── Pipeline Health ────────────────────────────── +2026/03/21 11:32:29 [log_collector] {"stage_name":"log_collector","events_processed":1590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":318,"last_update":"2026-03-21T11:32:24.068217964Z"} +2026/03/21 11:32:29 [metric_collector] {"stage_name":"metric_collector","events_processed":814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":162.8,"last_update":"2026-03-21T11:32:24.069045108Z"} +2026/03/21 11:32:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:32:24.077894609Z"} +2026/03/21 11:32:29 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":9.954671445812,"throughput_eps":0,"last_update":"2026-03-21T11:32:24.210288084Z"} +2026/03/21 11:32:29 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":529.3767641441408,"throughput_eps":0,"last_update":"2026-03-21T11:32:24.210303413Z"} +2026/03/21 11:32:29 ───────────────────────────────────────────────── +2026/03/21 11:32:34 ── Pipeline Health ────────────────────────────── +2026/03/21 11:32:34 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":529.3767641441408,"throughput_eps":0,"last_update":"2026-03-21T11:32:29.2104852Z"} +2026/03/21 11:32:34 [log_collector] {"stage_name":"log_collector","events_processed":1590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":318,"last_update":"2026-03-21T11:32:29.068612218Z"} +2026/03/21 11:32:34 [metric_collector] {"stage_name":"metric_collector","events_processed":819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":163.8,"last_update":"2026-03-21T11:32:29.068922993Z"} +2026/03/21 11:32:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":330,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:32:29.07810489Z"} +2026/03/21 11:32:34 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":9.954671445812,"throughput_eps":0,"last_update":"2026-03-21T11:32:29.210469991Z"} +2026/03/21 11:32:34 ───────────────────────────────────────────────── +2026/03/21 11:32:39 ── Pipeline Health ────────────────────────────── +2026/03/21 11:32:39 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":9.954671445812,"throughput_eps":0,"last_update":"2026-03-21T11:32:34.21011066Z"} +2026/03/21 11:32:39 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":529.3767641441408,"throughput_eps":0,"last_update":"2026-03-21T11:32:34.210122854Z"} +2026/03/21 11:32:39 [log_collector] {"stage_name":"log_collector","events_processed":1590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":318,"last_update":"2026-03-21T11:32:34.068482066Z"} +2026/03/21 11:32:39 [metric_collector] {"stage_name":"metric_collector","events_processed":824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":164.8,"last_update":"2026-03-21T11:32:34.068765129Z"} +2026/03/21 11:32:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:32:34.077727826Z"} +2026/03/21 11:32:39 ───────────────────────────────────────────────── +2026/03/21 11:32:44 ── Pipeline Health ────────────────────────────── +2026/03/21 11:32:44 [log_collector] {"stage_name":"log_collector","events_processed":1590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":318,"last_update":"2026-03-21T11:32:39.068695893Z"} +2026/03/21 11:32:44 [metric_collector] {"stage_name":"metric_collector","events_processed":829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":165.8,"last_update":"2026-03-21T11:32:39.069478212Z"} +2026/03/21 11:32:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:32:39.079059203Z"} +2026/03/21 11:32:44 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":9.954671445812,"throughput_eps":0,"last_update":"2026-03-21T11:32:39.210460157Z"} +2026/03/21 11:32:44 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":529.3767641441408,"throughput_eps":0,"last_update":"2026-03-21T11:32:39.210472761Z"} +2026/03/21 11:32:44 ───────────────────────────────────────────────── +2026/03/21 11:32:49 ── Pipeline Health ────────────────────────────── +2026/03/21 11:32:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:32:44.078135811Z"} +2026/03/21 11:32:49 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":9.954671445812,"throughput_eps":0,"last_update":"2026-03-21T11:32:44.210379158Z"} +2026/03/21 11:32:49 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":529.3767641441408,"throughput_eps":0,"last_update":"2026-03-21T11:32:44.210385911Z"} +2026/03/21 11:32:49 [log_collector] {"stage_name":"log_collector","events_processed":1590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":318,"last_update":"2026-03-21T11:32:44.069017675Z"} +2026/03/21 11:32:49 [metric_collector] {"stage_name":"metric_collector","events_processed":834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":166.8,"last_update":"2026-03-21T11:32:44.069417321Z"} +2026/03/21 11:32:49 ───────────────────────────────────────────────── +Saved state: 11 clusters, 1591 messages, reason: none +2026/03/21 11:32:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:32:54 [log_collector] {"stage_name":"log_collector","events_processed":1590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":318,"last_update":"2026-03-21T11:32:49.068918784Z"} +2026/03/21 11:32:54 [metric_collector] {"stage_name":"metric_collector","events_processed":839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":167.8,"last_update":"2026-03-21T11:32:49.069327186Z"} +2026/03/21 11:32:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:32:49.078829467Z"} +2026/03/21 11:32:54 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":9.954671445812,"throughput_eps":0,"last_update":"2026-03-21T11:32:49.210215162Z"} +2026/03/21 11:32:54 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":436.9155347153127,"throughput_eps":0,"last_update":"2026-03-21T11:32:49.277299795Z"} +2026/03/21 11:32:54 ───────────────────────────────────────────────── +2026/03/21 11:32:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:32:59 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":436.9155347153127,"throughput_eps":0,"last_update":"2026-03-21T11:32:54.209691484Z"} +2026/03/21 11:32:59 [log_collector] {"stage_name":"log_collector","events_processed":1593,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":318.6,"last_update":"2026-03-21T11:32:54.068465391Z"} +2026/03/21 11:32:59 [metric_collector] {"stage_name":"metric_collector","events_processed":844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":168.8,"last_update":"2026-03-21T11:32:54.068718677Z"} +2026/03/21 11:32:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:32:54.075386708Z"} +2026/03/21 11:32:59 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":10.6398509566496,"throughput_eps":0,"last_update":"2026-03-21T11:32:54.210791822Z"} +2026/03/21 11:32:59 ───────────────────────────────────────────────── +2026/03/21 11:33:04 ── Pipeline Health ────────────────────────────── +2026/03/21 11:33:04 [log_collector] {"stage_name":"log_collector","events_processed":1593,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":318.6,"last_update":"2026-03-21T11:32:59.068467249Z"} +2026/03/21 11:33:04 [metric_collector] {"stage_name":"metric_collector","events_processed":849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":169.8,"last_update":"2026-03-21T11:32:59.068652544Z"} +2026/03/21 11:33:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":342,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:32:59.078437076Z"} +2026/03/21 11:33:04 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":10.6398509566496,"throughput_eps":0,"last_update":"2026-03-21T11:32:59.210778912Z"} +2026/03/21 11:33:04 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":436.9155347153127,"throughput_eps":0,"last_update":"2026-03-21T11:32:59.20965564Z"} +2026/03/21 11:33:04 ───────────────────────────────────────────────── +2026/03/21 11:33:09 ── Pipeline Health ────────────────────────────── +2026/03/21 11:33:09 [log_collector] {"stage_name":"log_collector","events_processed":1604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":320.8,"last_update":"2026-03-21T11:33:04.068440733Z"} +2026/03/21 11:33:09 [metric_collector] {"stage_name":"metric_collector","events_processed":854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":170.8,"last_update":"2026-03-21T11:33:04.068685432Z"} +2026/03/21 11:33:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:33:04.077893429Z"} +2026/03/21 11:33:09 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":10.6398509566496,"throughput_eps":0,"last_update":"2026-03-21T11:33:04.210118933Z"} +2026/03/21 11:33:09 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":436.9155347153127,"throughput_eps":0,"last_update":"2026-03-21T11:33:04.210125926Z"} +2026/03/21 11:33:09 ───────────────────────────────────────────────── +2026/03/21 11:33:14 ── Pipeline Health ────────────────────────────── +2026/03/21 11:33:14 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":10.6398509566496,"throughput_eps":0,"last_update":"2026-03-21T11:33:09.210146169Z"} +2026/03/21 11:33:14 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":436.9155347153127,"throughput_eps":0,"last_update":"2026-03-21T11:33:09.21013061Z"} +2026/03/21 11:33:14 [log_collector] {"stage_name":"log_collector","events_processed":1611,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":322.2,"last_update":"2026-03-21T11:33:09.0685669Z"} +2026/03/21 11:33:14 [metric_collector] {"stage_name":"metric_collector","events_processed":859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":171.8,"last_update":"2026-03-21T11:33:09.068754059Z"} +2026/03/21 11:33:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:33:09.074900662Z"} +2026/03/21 11:33:14 ───────────────────────────────────────────────── +2026/03/21 11:33:19 ── Pipeline Health ────────────────────────────── +2026/03/21 11:33:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:33:14.077093436Z"} +2026/03/21 11:33:19 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":10.6398509566496,"throughput_eps":0,"last_update":"2026-03-21T11:33:14.210522775Z"} +2026/03/21 11:33:19 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":436.9155347153127,"throughput_eps":0,"last_update":"2026-03-21T11:33:14.210570837Z"} +2026/03/21 11:33:19 [log_collector] {"stage_name":"log_collector","events_processed":1623,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":324.6,"last_update":"2026-03-21T11:33:14.068976549Z"} +2026/03/21 11:33:19 [metric_collector] {"stage_name":"metric_collector","events_processed":864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":172.8,"last_update":"2026-03-21T11:33:14.06896686Z"} +2026/03/21 11:33:19 ───────────────────────────────────────────────── +2026/03/21 11:33:24 ── Pipeline Health ────────────────────────────── +2026/03/21 11:33:24 [log_collector] {"stage_name":"log_collector","events_processed":1634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":326.8,"last_update":"2026-03-21T11:33:19.068449764Z"} +2026/03/21 11:33:24 [metric_collector] {"stage_name":"metric_collector","events_processed":868,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":173.6,"last_update":"2026-03-21T11:33:19.068299516Z"} +2026/03/21 11:33:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":350,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:33:19.077916777Z"} +2026/03/21 11:33:24 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":10.6398509566496,"throughput_eps":0,"last_update":"2026-03-21T11:33:19.210501328Z"} +2026/03/21 11:33:24 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":371.2666433722502,"throughput_eps":0,"last_update":"2026-03-21T11:33:19.319074478Z"} +2026/03/21 11:33:24 ───────────────────────────────────────────────── +2026/03/21 11:33:29 ── Pipeline Health ────────────────────────────── +2026/03/21 11:33:29 [log_collector] {"stage_name":"log_collector","events_processed":1634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":326.8,"last_update":"2026-03-21T11:33:29.068122332Z"} +2026/03/21 11:33:29 [metric_collector] {"stage_name":"metric_collector","events_processed":874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":174.8,"last_update":"2026-03-21T11:33:24.069635268Z"} +2026/03/21 11:33:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:33:24.078200584Z"} +2026/03/21 11:33:29 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":10.56110576531968,"throughput_eps":0,"last_update":"2026-03-21T11:33:24.210601644Z"} +2026/03/21 11:33:29 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":371.2666433722502,"throughput_eps":0,"last_update":"2026-03-21T11:33:24.210632433Z"} +2026/03/21 11:33:29 ───────────────────────────────────────────────── +2026/03/21 11:33:34 ── Pipeline Health ────────────────────────────── +2026/03/21 11:33:34 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":371.2666433722502,"throughput_eps":0,"last_update":"2026-03-21T11:33:29.210325436Z"} +2026/03/21 11:33:34 [log_collector] {"stage_name":"log_collector","events_processed":1634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":326.8,"last_update":"2026-03-21T11:33:29.068122332Z"} +2026/03/21 11:33:34 [metric_collector] {"stage_name":"metric_collector","events_processed":879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":175.8,"last_update":"2026-03-21T11:33:29.068870916Z"} +2026/03/21 11:33:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:33:29.077964293Z"} +2026/03/21 11:33:34 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":10.56110576531968,"throughput_eps":0,"last_update":"2026-03-21T11:33:29.210426249Z"} +2026/03/21 11:33:34 ───────────────────────────────────────────────── +2026/03/21 11:33:39 ── Pipeline Health ────────────────────────────── +2026/03/21 11:33:39 [metric_collector] {"stage_name":"metric_collector","events_processed":884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":176.8,"last_update":"2026-03-21T11:33:34.069224176Z"} +2026/03/21 11:33:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:33:34.078387327Z"} +2026/03/21 11:33:39 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":10.56110576531968,"throughput_eps":0,"last_update":"2026-03-21T11:33:34.210373722Z"} +2026/03/21 11:33:39 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":371.2666433722502,"throughput_eps":0,"last_update":"2026-03-21T11:33:34.209736021Z"} +2026/03/21 11:33:39 [log_collector] {"stage_name":"log_collector","events_processed":1634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":326.8,"last_update":"2026-03-21T11:33:34.068715832Z"} +2026/03/21 11:33:39 ───────────────────────────────────────────────── +2026/03/21 11:33:44 ── Pipeline Health ────────────────────────────── +2026/03/21 11:33:44 [log_collector] {"stage_name":"log_collector","events_processed":1634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":326.8,"last_update":"2026-03-21T11:33:39.06809356Z"} +2026/03/21 11:33:44 [metric_collector] {"stage_name":"metric_collector","events_processed":889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":177.8,"last_update":"2026-03-21T11:33:39.068891548Z"} +2026/03/21 11:33:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:33:39.078098463Z"} +2026/03/21 11:33:44 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":10.56110576531968,"throughput_eps":0,"last_update":"2026-03-21T11:33:39.210441351Z"} +2026/03/21 11:33:44 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":371.2666433722502,"throughput_eps":0,"last_update":"2026-03-21T11:33:39.210474454Z"} +2026/03/21 11:33:44 ───────────────────────────────────────────────── +2026/03/21 11:33:49 ── Pipeline Health ────────────────────────────── +2026/03/21 11:33:49 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":10.56110576531968,"throughput_eps":0,"last_update":"2026-03-21T11:33:44.210658207Z"} +2026/03/21 11:33:49 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":371.2666433722502,"throughput_eps":0,"last_update":"2026-03-21T11:33:44.210621788Z"} +2026/03/21 11:33:49 [log_collector] {"stage_name":"log_collector","events_processed":1634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":326.8,"last_update":"2026-03-21T11:33:44.068182011Z"} +2026/03/21 11:33:49 [metric_collector] {"stage_name":"metric_collector","events_processed":894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":178.8,"last_update":"2026-03-21T11:33:44.068496703Z"} +2026/03/21 11:33:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":360,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:33:44.077241263Z"} +2026/03/21 11:33:49 ───────────────────────────────────────────────── +2026/03/21 11:33:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:33:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:33:49.077547099Z"} +2026/03/21 11:33:54 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":10.56110576531968,"throughput_eps":0,"last_update":"2026-03-21T11:33:49.210466151Z"} +2026/03/21 11:33:54 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":311.3541008978002,"throughput_eps":0,"last_update":"2026-03-21T11:33:49.281523593Z"} +2026/03/21 11:33:54 [log_collector] {"stage_name":"log_collector","events_processed":1634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":326.8,"last_update":"2026-03-21T11:33:49.068651792Z"} +2026/03/21 11:33:54 [metric_collector] {"stage_name":"metric_collector","events_processed":899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":179.8,"last_update":"2026-03-21T11:33:49.068947728Z"} +2026/03/21 11:33:54 ───────────────────────────────────────────────── +2026/03/21 11:33:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:33:59 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":311.3541008978002,"throughput_eps":0,"last_update":"2026-03-21T11:33:54.210391096Z"} +2026/03/21 11:33:59 [log_collector] {"stage_name":"log_collector","events_processed":1634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":326.8,"last_update":"2026-03-21T11:33:59.068155706Z"} +2026/03/21 11:33:59 [metric_collector] {"stage_name":"metric_collector","events_processed":904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":180.8,"last_update":"2026-03-21T11:33:54.0688715Z"} +2026/03/21 11:33:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:33:54.077968049Z"} +2026/03/21 11:33:59 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":10.972700612255744,"throughput_eps":0,"last_update":"2026-03-21T11:33:54.210430131Z"} +2026/03/21 11:33:59 ───────────────────────────────────────────────── +2026/03/21 11:34:04 ── Pipeline Health ────────────────────────────── +2026/03/21 11:34:04 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":10.972700612255744,"throughput_eps":0,"last_update":"2026-03-21T11:33:59.210801849Z"} +2026/03/21 11:34:04 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":311.3541008978002,"throughput_eps":0,"last_update":"2026-03-21T11:33:59.209676594Z"} +2026/03/21 11:34:04 [log_collector] {"stage_name":"log_collector","events_processed":1634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":326.8,"last_update":"2026-03-21T11:33:59.068155706Z"} +2026/03/21 11:34:04 [metric_collector] {"stage_name":"metric_collector","events_processed":909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":181.8,"last_update":"2026-03-21T11:33:59.068521806Z"} +2026/03/21 11:34:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:33:59.077478718Z"} +2026/03/21 11:34:04 ───────────────────────────────────────────────── +2026/03/21 11:34:09 ── Pipeline Health ────────────────────────────── +2026/03/21 11:34:09 [metric_collector] {"stage_name":"metric_collector","events_processed":914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":182.8,"last_update":"2026-03-21T11:34:04.069312404Z"} +2026/03/21 11:34:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:34:04.078309092Z"} +2026/03/21 11:34:09 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":10.972700612255744,"throughput_eps":0,"last_update":"2026-03-21T11:34:04.210506178Z"} +2026/03/21 11:34:09 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":311.3541008978002,"throughput_eps":0,"last_update":"2026-03-21T11:34:04.21051281Z"} +2026/03/21 11:34:09 [log_collector] {"stage_name":"log_collector","events_processed":1634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":326.8,"last_update":"2026-03-21T11:34:04.068840301Z"} +2026/03/21 11:34:09 ───────────────────────────────────────────────── +2026/03/21 11:34:14 ── Pipeline Health ────────────────────────────── +2026/03/21 11:34:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:34:09.078513911Z"} +2026/03/21 11:34:14 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":10.972700612255744,"throughput_eps":0,"last_update":"2026-03-21T11:34:09.210812831Z"} +2026/03/21 11:34:14 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":311.3541008978002,"throughput_eps":0,"last_update":"2026-03-21T11:34:09.209692546Z"} +2026/03/21 11:34:14 [log_collector] {"stage_name":"log_collector","events_processed":1634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":326.8,"last_update":"2026-03-21T11:34:09.068661935Z"} +2026/03/21 11:34:14 [metric_collector] {"stage_name":"metric_collector","events_processed":919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":183.8,"last_update":"2026-03-21T11:34:09.06893622Z"} +2026/03/21 11:34:14 ───────────────────────────────────────────────── +2026/03/21 11:34:19 ── Pipeline Health ────────────────────────────── +2026/03/21 11:34:19 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":10.972700612255744,"throughput_eps":0,"last_update":"2026-03-21T11:34:14.210821884Z"} +2026/03/21 11:34:19 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":311.3541008978002,"throughput_eps":0,"last_update":"2026-03-21T11:34:14.209724563Z"} +2026/03/21 11:34:19 [log_collector] {"stage_name":"log_collector","events_processed":1634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":326.8,"last_update":"2026-03-21T11:34:14.068910707Z"} +2026/03/21 11:34:19 [metric_collector] {"stage_name":"metric_collector","events_processed":924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":184.8,"last_update":"2026-03-21T11:34:14.069332705Z"} +2026/03/21 11:34:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:34:14.077610046Z"} +2026/03/21 11:34:19 ───────────────────────────────────────────────── +Saved state: 11 clusters, 1635 messages, reason: none +2026/03/21 11:34:24 ── Pipeline Health ────────────────────────────── +2026/03/21 11:34:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:34:19.077978086Z"} +2026/03/21 11:34:24 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":10.972700612255744,"throughput_eps":0,"last_update":"2026-03-21T11:34:19.210415774Z"} +2026/03/21 11:34:24 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":263.3334987182402,"throughput_eps":0,"last_update":"2026-03-21T11:34:19.281684026Z"} +2026/03/21 11:34:24 [log_collector] {"stage_name":"log_collector","events_processed":1634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":326.8,"last_update":"2026-03-21T11:34:19.068301666Z"} +2026/03/21 11:34:24 [metric_collector] {"stage_name":"metric_collector","events_processed":929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":185.8,"last_update":"2026-03-21T11:34:19.068866287Z"} +2026/03/21 11:34:24 ───────────────────────────────────────────────── +2026/03/21 11:34:29 ── Pipeline Health ────────────────────────────── +2026/03/21 11:34:29 [log_collector] {"stage_name":"log_collector","events_processed":1639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":327.8,"last_update":"2026-03-21T11:34:24.068746295Z"} +2026/03/21 11:34:29 [metric_collector] {"stage_name":"metric_collector","events_processed":934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":186.8,"last_update":"2026-03-21T11:34:24.068737389Z"} +2026/03/21 11:34:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:34:24.07706738Z"} +2026/03/21 11:34:29 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":11.318769289804596,"throughput_eps":0,"last_update":"2026-03-21T11:34:24.210335267Z"} +2026/03/21 11:34:29 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":263.3334987182402,"throughput_eps":0,"last_update":"2026-03-21T11:34:24.210360626Z"} +2026/03/21 11:34:29 ───────────────────────────────────────────────── +2026/03/21 11:34:34 ── Pipeline Health ────────────────────────────── +2026/03/21 11:34:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:34:29.07491287Z"} +2026/03/21 11:34:34 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":11.318769289804596,"throughput_eps":0,"last_update":"2026-03-21T11:34:29.210392593Z"} +2026/03/21 11:34:34 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":263.3334987182402,"throughput_eps":0,"last_update":"2026-03-21T11:34:29.210402111Z"} +2026/03/21 11:34:34 [log_collector] {"stage_name":"log_collector","events_processed":1639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":327.8,"last_update":"2026-03-21T11:34:29.068666137Z"} +2026/03/21 11:34:34 [metric_collector] {"stage_name":"metric_collector","events_processed":939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":187.8,"last_update":"2026-03-21T11:34:29.069082013Z"} +2026/03/21 11:34:34 ───────────────────────────────────────────────── +2026/03/21 11:34:39 ── Pipeline Health ────────────────────────────── +2026/03/21 11:34:39 [log_collector] {"stage_name":"log_collector","events_processed":1639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":327.8,"last_update":"2026-03-21T11:34:34.06876971Z"} +2026/03/21 11:34:39 [metric_collector] {"stage_name":"metric_collector","events_processed":944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":188.8,"last_update":"2026-03-21T11:34:34.068763248Z"} +2026/03/21 11:34:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":380,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:34:34.075919701Z"} +2026/03/21 11:34:39 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":11.318769289804596,"throughput_eps":0,"last_update":"2026-03-21T11:34:34.210310821Z"} +2026/03/21 11:34:39 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":263.3334987182402,"throughput_eps":0,"last_update":"2026-03-21T11:34:34.210326101Z"} +2026/03/21 11:34:39 ───────────────────────────────────────────────── +2026/03/21 11:34:44 ── Pipeline Health ────────────────────────────── +2026/03/21 11:34:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:34:39.076954057Z"} +2026/03/21 11:34:44 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":11.318769289804596,"throughput_eps":0,"last_update":"2026-03-21T11:34:39.210188182Z"} +2026/03/21 11:34:44 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":263.3334987182402,"throughput_eps":0,"last_update":"2026-03-21T11:34:39.210199705Z"} +2026/03/21 11:34:44 [log_collector] {"stage_name":"log_collector","events_processed":1639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":327.8,"last_update":"2026-03-21T11:34:39.068784454Z"} +2026/03/21 11:34:44 [metric_collector] {"stage_name":"metric_collector","events_processed":949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":189.8,"last_update":"2026-03-21T11:34:39.068971562Z"} +2026/03/21 11:34:44 ───────────────────────────────────────────────── +2026/03/21 11:34:49 ── Pipeline Health ────────────────────────────── +2026/03/21 11:34:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:34:44.076009422Z"} +2026/03/21 11:34:49 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":11.318769289804596,"throughput_eps":0,"last_update":"2026-03-21T11:34:44.21021615Z"} +2026/03/21 11:34:49 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":263.3334987182402,"throughput_eps":0,"last_update":"2026-03-21T11:34:44.210228574Z"} +2026/03/21 11:34:49 [log_collector] {"stage_name":"log_collector","events_processed":1639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":327.8,"last_update":"2026-03-21T11:34:44.068682813Z"} +2026/03/21 11:34:49 [metric_collector] {"stage_name":"metric_collector","events_processed":954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":190.8,"last_update":"2026-03-21T11:34:44.069150588Z"} +2026/03/21 11:34:49 ───────────────────────────────────────────────── +2026/03/21 11:34:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:34:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:34:49.075668833Z"} +2026/03/21 11:34:54 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":11.318769289804596,"throughput_eps":0,"last_update":"2026-03-21T11:34:49.210704559Z"} +2026/03/21 11:34:54 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":241.41217877459218,"throughput_eps":0,"last_update":"2026-03-21T11:34:49.364444522Z"} +2026/03/21 11:34:54 [log_collector] {"stage_name":"log_collector","events_processed":1639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":327.8,"last_update":"2026-03-21T11:34:49.068846158Z"} +2026/03/21 11:34:54 [metric_collector] {"stage_name":"metric_collector","events_processed":959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":191.8,"last_update":"2026-03-21T11:34:49.069119452Z"} +2026/03/21 11:34:54 ───────────────────────────────────────────────── +2026/03/21 11:34:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:34:59 [metric_collector] {"stage_name":"metric_collector","events_processed":964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":192.8,"last_update":"2026-03-21T11:34:54.068901085Z"} +2026/03/21 11:34:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":388,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:34:54.076468717Z"} +2026/03/21 11:34:59 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":10.271500831843676,"throughput_eps":0,"last_update":"2026-03-21T11:34:54.210687468Z"} +2026/03/21 11:34:59 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":241.41217877459218,"throughput_eps":0,"last_update":"2026-03-21T11:34:54.210699021Z"} +2026/03/21 11:34:59 [log_collector] {"stage_name":"log_collector","events_processed":1639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":327.8,"last_update":"2026-03-21T11:34:54.068660103Z"} +2026/03/21 11:34:59 ───────────────────────────────────────────────── +2026/03/21 11:35:04 ── Pipeline Health ────────────────────────────── +2026/03/21 11:35:04 [log_collector] {"stage_name":"log_collector","events_processed":1639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":327.8,"last_update":"2026-03-21T11:34:59.06881453Z"} +2026/03/21 11:35:04 [metric_collector] {"stage_name":"metric_collector","events_processed":969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":193.8,"last_update":"2026-03-21T11:34:59.069029852Z"} +2026/03/21 11:35:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":390,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:34:59.076185795Z"} +2026/03/21 11:35:04 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":10.271500831843676,"throughput_eps":0,"last_update":"2026-03-21T11:34:59.210460354Z"} +2026/03/21 11:35:04 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":241.41217877459218,"throughput_eps":0,"last_update":"2026-03-21T11:34:59.210472859Z"} +2026/03/21 11:35:04 ───────────────────────────────────────────────── +2026/03/21 11:35:09 ── Pipeline Health ────────────────────────────── +2026/03/21 11:35:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:35:04.074782156Z"} +2026/03/21 11:35:09 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":10.271500831843676,"throughput_eps":0,"last_update":"2026-03-21T11:35:04.209984503Z"} +2026/03/21 11:35:09 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":241.41217877459218,"throughput_eps":0,"last_update":"2026-03-21T11:35:04.209992748Z"} +2026/03/21 11:35:09 [log_collector] {"stage_name":"log_collector","events_processed":1639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":327.8,"last_update":"2026-03-21T11:35:04.068469097Z"} +2026/03/21 11:35:09 [metric_collector] {"stage_name":"metric_collector","events_processed":974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":194.8,"last_update":"2026-03-21T11:35:04.068725248Z"} +2026/03/21 11:35:09 ───────────────────────────────────────────────── +2026/03/21 11:35:14 ── Pipeline Health ────────────────────────────── +2026/03/21 11:35:14 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":241.41217877459218,"throughput_eps":0,"last_update":"2026-03-21T11:35:09.210503473Z"} +2026/03/21 11:35:14 [log_collector] {"stage_name":"log_collector","events_processed":1650,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":330,"last_update":"2026-03-21T11:35:09.068671722Z"} +2026/03/21 11:35:14 [metric_collector] {"stage_name":"metric_collector","events_processed":979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":195.8,"last_update":"2026-03-21T11:35:09.06941765Z"} +2026/03/21 11:35:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:35:09.078251016Z"} +2026/03/21 11:35:14 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":10.271500831843676,"throughput_eps":0,"last_update":"2026-03-21T11:35:09.210494366Z"} +2026/03/21 11:35:14 ───────────────────────────────────────────────── +2026/03/21 11:35:19 ── Pipeline Health ────────────────────────────── +2026/03/21 11:35:19 [log_collector] {"stage_name":"log_collector","events_processed":1664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":332.8,"last_update":"2026-03-21T11:35:14.068846642Z"} +2026/03/21 11:35:19 [metric_collector] {"stage_name":"metric_collector","events_processed":984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":196.8,"last_update":"2026-03-21T11:35:14.069082605Z"} +2026/03/21 11:35:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:35:14.078679442Z"} +2026/03/21 11:35:19 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":10.271500831843676,"throughput_eps":0,"last_update":"2026-03-21T11:35:14.209909092Z"} +2026/03/21 11:35:19 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":241.41217877459218,"throughput_eps":0,"last_update":"2026-03-21T11:35:14.209917678Z"} +2026/03/21 11:35:19 ───────────────────────────────────────────────── +2026/03/21 11:35:24 ── Pipeline Health ────────────────────────────── +2026/03/21 11:35:24 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":215.72806181967377,"throughput_eps":0,"last_update":"2026-03-21T11:35:19.322695565Z"} +2026/03/21 11:35:24 [log_collector] {"stage_name":"log_collector","events_processed":1908,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":381.6,"last_update":"2026-03-21T11:35:19.068100455Z"} +2026/03/21 11:35:24 [metric_collector] {"stage_name":"metric_collector","events_processed":989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":197.8,"last_update":"2026-03-21T11:35:19.068507434Z"} +2026/03/21 11:35:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:35:19.07611383Z"} +2026/03/21 11:35:24 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":10.271500831843676,"throughput_eps":0,"last_update":"2026-03-21T11:35:19.209902692Z"} +2026/03/21 11:35:24 ───────────────────────────────────────────────── +2026/03/21 11:35:29 ── Pipeline Health ────────────────────────────── +2026/03/21 11:35:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":400,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:35:24.079822574Z"} +2026/03/21 11:35:29 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":9.823749265474941,"throughput_eps":0,"last_update":"2026-03-21T11:35:24.210215561Z"} +2026/03/21 11:35:29 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":215.72806181967377,"throughput_eps":0,"last_update":"2026-03-21T11:35:24.210229128Z"} +2026/03/21 11:35:29 [log_collector] {"stage_name":"log_collector","events_processed":1997,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":399.4,"last_update":"2026-03-21T11:35:24.068804043Z"} +2026/03/21 11:35:29 [metric_collector] {"stage_name":"metric_collector","events_processed":994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":198.8,"last_update":"2026-03-21T11:35:24.069000048Z"} +2026/03/21 11:35:29 ───────────────────────────────────────────────── +2026/03/21 11:35:34 ── Pipeline Health ────────────────────────────── +2026/03/21 11:35:34 [metric_collector] {"stage_name":"metric_collector","events_processed":999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":199.8,"last_update":"2026-03-21T11:35:29.069480346Z"} +2026/03/21 11:35:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":402,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:35:29.078180186Z"} +2026/03/21 11:35:34 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":9.823749265474941,"throughput_eps":0,"last_update":"2026-03-21T11:35:29.210454487Z"} +2026/03/21 11:35:34 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":215.72806181967377,"throughput_eps":0,"last_update":"2026-03-21T11:35:29.210463775Z"} +2026/03/21 11:35:34 [log_collector] {"stage_name":"log_collector","events_processed":1997,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":399.4,"last_update":"2026-03-21T11:35:29.068869226Z"} +2026/03/21 11:35:34 ───────────────────────────────────────────────── +2026/03/21 11:35:39 ── Pipeline Health ────────────────────────────── +2026/03/21 11:35:39 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":9.823749265474941,"throughput_eps":0,"last_update":"2026-03-21T11:35:34.209853692Z"} +2026/03/21 11:35:39 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":215.72806181967377,"throughput_eps":0,"last_update":"2026-03-21T11:35:34.209782787Z"} +2026/03/21 11:35:39 [log_collector] {"stage_name":"log_collector","events_processed":1997,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":399.4,"last_update":"2026-03-21T11:35:34.069083802Z"} +2026/03/21 11:35:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":200.8,"last_update":"2026-03-21T11:35:34.069737203Z"} +2026/03/21 11:35:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:35:34.079128228Z"} +2026/03/21 11:35:39 ───────────────────────────────────────────────── +2026/03/21 11:35:44 ── Pipeline Health ────────────────────────────── +2026/03/21 11:35:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:35:39.077799785Z"} +2026/03/21 11:35:44 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":9.823749265474941,"throughput_eps":0,"last_update":"2026-03-21T11:35:39.210189068Z"} +2026/03/21 11:35:44 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":215.72806181967377,"throughput_eps":0,"last_update":"2026-03-21T11:35:39.210205339Z"} +2026/03/21 11:35:44 [log_collector] {"stage_name":"log_collector","events_processed":1997,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":399.4,"last_update":"2026-03-21T11:35:39.068066988Z"} +2026/03/21 11:35:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":201.8,"last_update":"2026-03-21T11:35:39.068684921Z"} +2026/03/21 11:35:44 ───────────────────────────────────────────────── +2026/03/21 11:35:49 ── Pipeline Health ────────────────────────────── +2026/03/21 11:35:49 [log_collector] {"stage_name":"log_collector","events_processed":1997,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":399.4,"last_update":"2026-03-21T11:35:44.068674189Z"} +2026/03/21 11:35:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":202.8,"last_update":"2026-03-21T11:35:44.069062263Z"} +2026/03/21 11:35:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":408,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:35:44.078573156Z"} +2026/03/21 11:35:49 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":9.823749265474941,"throughput_eps":0,"last_update":"2026-03-21T11:35:44.209889665Z"} +2026/03/21 11:35:49 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":215.72806181967377,"throughput_eps":0,"last_update":"2026-03-21T11:35:44.209803911Z"} +2026/03/21 11:35:49 ───────────────────────────────────────────────── +2026/03/21 11:35:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:35:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":203.8,"last_update":"2026-03-21T11:35:49.06931283Z"} +2026/03/21 11:35:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:35:49.079312039Z"} +2026/03/21 11:35:54 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":9.823749265474941,"throughput_eps":0,"last_update":"2026-03-21T11:35:49.210462759Z"} +2026/03/21 11:35:54 [transform_engine] {"stage_name":"transform_engine","events_processed":34,"events_dropped":0,"avg_latency_ms":195.18825705573903,"throughput_eps":0,"last_update":"2026-03-21T11:35:49.323505065Z"} +2026/03/21 11:35:54 [log_collector] {"stage_name":"log_collector","events_processed":1997,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":399.4,"last_update":"2026-03-21T11:35:49.068794418Z"} +2026/03/21 11:35:54 ───────────────────────────────────────────────── +2026/03/21 11:35:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:35:59 [log_collector] {"stage_name":"log_collector","events_processed":1997,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":399.4,"last_update":"2026-03-21T11:35:54.068890946Z"} +2026/03/21 11:35:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":204.8,"last_update":"2026-03-21T11:35:54.069223413Z"} +2026/03/21 11:35:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:35:54.078077909Z"} +2026/03/21 11:35:59 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":10.522524012379954,"throughput_eps":0,"last_update":"2026-03-21T11:35:54.210505496Z"} +2026/03/21 11:35:59 [transform_engine] {"stage_name":"transform_engine","events_processed":34,"events_dropped":0,"avg_latency_ms":195.18825705573903,"throughput_eps":0,"last_update":"2026-03-21T11:35:54.21046543Z"} +2026/03/21 11:35:59 ───────────────────────────────────────────────── +2026/03/21 11:36:04 ── Pipeline Health ────────────────────────────── +2026/03/21 11:36:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:35:59.079326881Z"} +2026/03/21 11:36:04 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":10.522524012379954,"throughput_eps":0,"last_update":"2026-03-21T11:35:59.210557366Z"} +2026/03/21 11:36:04 [transform_engine] {"stage_name":"transform_engine","events_processed":34,"events_dropped":0,"avg_latency_ms":195.18825705573903,"throughput_eps":0,"last_update":"2026-03-21T11:35:59.210578817Z"} +2026/03/21 11:36:04 [log_collector] {"stage_name":"log_collector","events_processed":1997,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":399.4,"last_update":"2026-03-21T11:35:59.06879378Z"} +2026/03/21 11:36:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":205.8,"last_update":"2026-03-21T11:35:59.06897694Z"} +2026/03/21 11:36:04 ───────────────────────────────────────────────── +2026/03/21 11:36:09 ── Pipeline Health ────────────────────────────── +2026/03/21 11:36:09 [log_collector] {"stage_name":"log_collector","events_processed":1997,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":399.4,"last_update":"2026-03-21T11:36:04.068146847Z"} +2026/03/21 11:36:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":206.8,"last_update":"2026-03-21T11:36:04.068590356Z"} +2026/03/21 11:36:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:36:04.077321607Z"} +2026/03/21 11:36:09 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":10.522524012379954,"throughput_eps":0,"last_update":"2026-03-21T11:36:04.210610975Z"} +2026/03/21 11:36:09 [transform_engine] {"stage_name":"transform_engine","events_processed":34,"events_dropped":0,"avg_latency_ms":195.18825705573903,"throughput_eps":0,"last_update":"2026-03-21T11:36:04.210625664Z"} +2026/03/21 11:36:09 ───────────────────────────────────────────────── +2026/03/21 11:36:14 ── Pipeline Health ────────────────────────────── +2026/03/21 11:36:14 [transform_engine] {"stage_name":"transform_engine","events_processed":34,"events_dropped":0,"avg_latency_ms":195.18825705573903,"throughput_eps":0,"last_update":"2026-03-21T11:36:09.210638532Z"} +2026/03/21 11:36:14 [log_collector] {"stage_name":"log_collector","events_processed":1997,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":399.4,"last_update":"2026-03-21T11:36:09.068708306Z"} +2026/03/21 11:36:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":207.8,"last_update":"2026-03-21T11:36:09.069146886Z"} +2026/03/21 11:36:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:36:09.079228061Z"} +2026/03/21 11:36:14 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":10.522524012379954,"throughput_eps":0,"last_update":"2026-03-21T11:36:09.21060081Z"} +2026/03/21 11:36:14 ───────────────────────────────────────────────── +2026/03/21 11:36:19 ── Pipeline Health ────────────────────────────── +2026/03/21 11:36:19 [log_collector] {"stage_name":"log_collector","events_processed":1997,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":399.4,"last_update":"2026-03-21T11:36:14.068450181Z"} +2026/03/21 11:36:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":208.8,"last_update":"2026-03-21T11:36:14.068913447Z"} +2026/03/21 11:36:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":420,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:36:14.078522178Z"} +2026/03/21 11:36:19 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":10.522524012379954,"throughput_eps":0,"last_update":"2026-03-21T11:36:14.210906063Z"} +2026/03/21 11:36:19 [transform_engine] {"stage_name":"transform_engine","events_processed":34,"events_dropped":0,"avg_latency_ms":195.18825705573903,"throughput_eps":0,"last_update":"2026-03-21T11:36:14.209669164Z"} +2026/03/21 11:36:19 ───────────────────────────────────────────────── +2026/03/21 11:36:24 ── Pipeline Health ────────────────────────────── +2026/03/21 11:36:24 [log_collector] {"stage_name":"log_collector","events_processed":1997,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":399.4,"last_update":"2026-03-21T11:36:24.068269871Z"} +2026/03/21 11:36:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":209.8,"last_update":"2026-03-21T11:36:19.068671479Z"} +2026/03/21 11:36:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:36:19.077808727Z"} +2026/03/21 11:36:24 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":10.522524012379954,"throughput_eps":0,"last_update":"2026-03-21T11:36:19.21007058Z"} +2026/03/21 11:36:24 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":169.49367564459124,"throughput_eps":0,"last_update":"2026-03-21T11:36:19.276755752Z"} +2026/03/21 11:36:24 ───────────────────────────────────────────────── +2026/03/21 11:36:29 ── Pipeline Health ────────────────────────────── +2026/03/21 11:36:29 [log_collector] {"stage_name":"log_collector","events_processed":1997,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":399.4,"last_update":"2026-03-21T11:36:24.068269871Z"} +2026/03/21 11:36:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":210.8,"last_update":"2026-03-21T11:36:24.069056537Z"} +2026/03/21 11:36:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:36:24.077150947Z"} +2026/03/21 11:36:29 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":10.991615809903964,"throughput_eps":0,"last_update":"2026-03-21T11:36:24.210521363Z"} +2026/03/21 11:36:29 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":169.49367564459124,"throughput_eps":0,"last_update":"2026-03-21T11:36:24.210528788Z"} +2026/03/21 11:36:29 ───────────────────────────────────────────────── +2026/03/21 11:36:34 ── Pipeline Health ────────────────────────────── +2026/03/21 11:36:34 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":169.49367564459124,"throughput_eps":0,"last_update":"2026-03-21T11:36:29.210123999Z"} +2026/03/21 11:36:34 [log_collector] {"stage_name":"log_collector","events_processed":1997,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":399.4,"last_update":"2026-03-21T11:36:29.068889744Z"} +2026/03/21 11:36:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":211.8,"last_update":"2026-03-21T11:36:29.069183867Z"} +2026/03/21 11:36:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:36:29.07866301Z"} +2026/03/21 11:36:34 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":10.991615809903964,"throughput_eps":0,"last_update":"2026-03-21T11:36:29.210108349Z"} +2026/03/21 11:36:34 ───────────────────────────────────────────────── +2026/03/21 11:36:39 ── Pipeline Health ────────────────────────────── +2026/03/21 11:36:39 [log_collector] {"stage_name":"log_collector","events_processed":1997,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":399.4,"last_update":"2026-03-21T11:36:34.068522362Z"} +2026/03/21 11:36:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":212.8,"last_update":"2026-03-21T11:36:34.068873204Z"} +2026/03/21 11:36:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:36:34.078410218Z"} +2026/03/21 11:36:39 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":10.991615809903964,"throughput_eps":0,"last_update":"2026-03-21T11:36:34.21061885Z"} +2026/03/21 11:36:39 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":169.49367564459124,"throughput_eps":0,"last_update":"2026-03-21T11:36:34.210628628Z"} +2026/03/21 11:36:39 ───────────────────────────────────────────────── +2026/03/21 11:36:44 ── Pipeline Health ────────────────────────────── +2026/03/21 11:36:44 [log_collector] {"stage_name":"log_collector","events_processed":1997,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":399.4,"last_update":"2026-03-21T11:36:44.068398375Z"} +2026/03/21 11:36:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":213.8,"last_update":"2026-03-21T11:36:39.06881497Z"} +2026/03/21 11:36:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:36:39.077451009Z"} +2026/03/21 11:36:44 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":10.991615809903964,"throughput_eps":0,"last_update":"2026-03-21T11:36:39.210751441Z"} +2026/03/21 11:36:44 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":169.49367564459124,"throughput_eps":0,"last_update":"2026-03-21T11:36:39.210702737Z"} +2026/03/21 11:36:44 ───────────────────────────────────────────────── +2026/03/21 11:36:49 ── Pipeline Health ────────────────────────────── +2026/03/21 11:36:49 [log_collector] {"stage_name":"log_collector","events_processed":1997,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":399.4,"last_update":"2026-03-21T11:36:44.068398375Z"} +2026/03/21 11:36:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":214.8,"last_update":"2026-03-21T11:36:44.069113153Z"} +2026/03/21 11:36:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:36:44.078062741Z"} +2026/03/21 11:36:49 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":10.991615809903964,"throughput_eps":0,"last_update":"2026-03-21T11:36:44.210471878Z"} +2026/03/21 11:36:49 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":169.49367564459124,"throughput_eps":0,"last_update":"2026-03-21T11:36:44.210580876Z"} +2026/03/21 11:36:49 ───────────────────────────────────────────────── +2026/03/21 11:36:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:36:54 [log_collector] {"stage_name":"log_collector","events_processed":1997,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":399.4,"last_update":"2026-03-21T11:36:49.068697604Z"} +2026/03/21 11:36:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":215.8,"last_update":"2026-03-21T11:36:49.068828004Z"} +2026/03/21 11:36:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:36:49.078153713Z"} +2026/03/21 11:36:54 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":10.991615809903964,"throughput_eps":0,"last_update":"2026-03-21T11:36:49.212079163Z"} +2026/03/21 11:36:54 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":148.974454515673,"throughput_eps":0,"last_update":"2026-03-21T11:36:49.277328287Z"} +2026/03/21 11:36:54 ───────────────────────────────────────────────── +Saved state: 11 clusters, 1998 messages, reason: none +2026/03/21 11:36:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:36:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":216.8,"last_update":"2026-03-21T11:36:54.069014051Z"} +2026/03/21 11:36:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:36:54.077554386Z"} +2026/03/21 11:36:59 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":11.577019447923172,"throughput_eps":0,"last_update":"2026-03-21T11:36:54.210793071Z"} +2026/03/21 11:36:59 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":148.974454515673,"throughput_eps":0,"last_update":"2026-03-21T11:36:54.209712101Z"} +2026/03/21 11:36:59 [log_collector] {"stage_name":"log_collector","events_processed":1997,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":399.4,"last_update":"2026-03-21T11:36:54.06866923Z"} +2026/03/21 11:36:59 ───────────────────────────────────────────────── +2026/03/21 11:37:04 ── Pipeline Health ────────────────────────────── +2026/03/21 11:37:04 [log_collector] {"stage_name":"log_collector","events_processed":2010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":402,"last_update":"2026-03-21T11:37:04.068118785Z"} +2026/03/21 11:37:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":217.8,"last_update":"2026-03-21T11:36:59.068746536Z"} +2026/03/21 11:37:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:36:59.076535232Z"} +2026/03/21 11:37:04 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":11.577019447923172,"throughput_eps":0,"last_update":"2026-03-21T11:36:59.210888461Z"} +2026/03/21 11:37:04 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":148.974454515673,"throughput_eps":0,"last_update":"2026-03-21T11:36:59.209723831Z"} +2026/03/21 11:37:04 ───────────────────────────────────────────────── +2026/03/21 11:37:09 ── Pipeline Health ────────────────────────────── +2026/03/21 11:37:09 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":148.974454515673,"throughput_eps":0,"last_update":"2026-03-21T11:37:04.210480682Z"} +2026/03/21 11:37:09 [log_collector] {"stage_name":"log_collector","events_processed":2010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":402,"last_update":"2026-03-21T11:37:04.068118785Z"} +2026/03/21 11:37:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":218.8,"last_update":"2026-03-21T11:37:04.068533649Z"} +2026/03/21 11:37:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:37:04.075992262Z"} +2026/03/21 11:37:09 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":11.577019447923172,"throughput_eps":0,"last_update":"2026-03-21T11:37:04.210386392Z"} +2026/03/21 11:37:09 ───────────────────────────────────────────────── +2026/03/21 11:37:14 ── Pipeline Health ────────────────────────────── +2026/03/21 11:37:14 [log_collector] {"stage_name":"log_collector","events_processed":2018,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":403.6,"last_update":"2026-03-21T11:37:09.068179236Z"} +2026/03/21 11:37:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":219.8,"last_update":"2026-03-21T11:37:09.068450135Z"} +2026/03/21 11:37:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":442,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:37:09.074521301Z"} +2026/03/21 11:37:14 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":11.577019447923172,"throughput_eps":0,"last_update":"2026-03-21T11:37:09.210823134Z"} +2026/03/21 11:37:14 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":148.974454515673,"throughput_eps":0,"last_update":"2026-03-21T11:37:09.209716815Z"} +2026/03/21 11:37:14 ───────────────────────────────────────────────── +2026/03/21 11:37:19 ── Pipeline Health ────────────────────────────── +2026/03/21 11:37:19 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":148.974454515673,"throughput_eps":0,"last_update":"2026-03-21T11:37:14.209676417Z"} +2026/03/21 11:37:19 [log_collector] {"stage_name":"log_collector","events_processed":2027,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":405.4,"last_update":"2026-03-21T11:37:14.068812447Z"} +2026/03/21 11:37:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":220.8,"last_update":"2026-03-21T11:37:14.069308137Z"} +2026/03/21 11:37:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:37:14.077542947Z"} +2026/03/21 11:37:19 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":11.577019447923172,"throughput_eps":0,"last_update":"2026-03-21T11:37:14.210881916Z"} +2026/03/21 11:37:19 ───────────────────────────────────────────────── +2026/03/21 11:37:19 [ANOMALY] time=2026-03-21T11:37:19Z score=0.9574 method=SEAD details=MAD!:w=0.24,s=0.89 RRCF-fast!:w=0.19,s=0.97 RRCF-mid!:w=0.19,s=0.97 RRCF-slow!:w=0.19,s=0.97 COPOD!:w=0.19,s=1.00 +2026/03/21 11:37:24 ── Pipeline Health ────────────────────────────── +2026/03/21 11:37:24 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":11.577019447923172,"throughput_eps":0,"last_update":"2026-03-21T11:37:19.209901464Z"} +2026/03/21 11:37:24 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":141.3979124125384,"throughput_eps":0,"last_update":"2026-03-21T11:37:19.321181359Z"} +2026/03/21 11:37:24 [log_collector] {"stage_name":"log_collector","events_processed":2041,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":408.2,"last_update":"2026-03-21T11:37:19.068979423Z"} +2026/03/21 11:37:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":221.8,"last_update":"2026-03-21T11:37:19.069391271Z"} +2026/03/21 11:37:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":446,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:37:19.077626281Z"} +2026/03/21 11:37:24 ───────────────────────────────────────────────── +2026/03/21 11:37:29 ── Pipeline Health ────────────────────────────── +2026/03/21 11:37:29 [log_collector] {"stage_name":"log_collector","events_processed":2041,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":408.2,"last_update":"2026-03-21T11:37:24.068813243Z"} +2026/03/21 11:37:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":222.8,"last_update":"2026-03-21T11:37:24.069582165Z"} +2026/03/21 11:37:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:37:24.078919116Z"} +2026/03/21 11:37:29 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.164371558338539,"throughput_eps":0,"last_update":"2026-03-21T11:37:24.210285819Z"} +2026/03/21 11:37:29 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":141.3979124125384,"throughput_eps":0,"last_update":"2026-03-21T11:37:24.210301329Z"} +2026/03/21 11:37:29 ───────────────────────────────────────────────── +2026/03/21 11:37:34 ── Pipeline Health ────────────────────────────── +2026/03/21 11:37:34 [log_collector] {"stage_name":"log_collector","events_processed":2041,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":408.2,"last_update":"2026-03-21T11:37:29.068957191Z"} +2026/03/21 11:37:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":223.8,"last_update":"2026-03-21T11:37:29.069109642Z"} +2026/03/21 11:37:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:37:29.077292483Z"} +2026/03/21 11:37:34 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.164371558338539,"throughput_eps":0,"last_update":"2026-03-21T11:37:29.210511013Z"} +2026/03/21 11:37:34 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":141.3979124125384,"throughput_eps":0,"last_update":"2026-03-21T11:37:29.210518096Z"} +2026/03/21 11:37:34 ───────────────────────────────────────────────── +2026/03/21 11:37:39 ── Pipeline Health ────────────────────────────── +2026/03/21 11:37:39 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.164371558338539,"throughput_eps":0,"last_update":"2026-03-21T11:37:34.210253547Z"} +2026/03/21 11:37:39 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":141.3979124125384,"throughput_eps":0,"last_update":"2026-03-21T11:37:34.210261221Z"} +2026/03/21 11:37:39 [log_collector] {"stage_name":"log_collector","events_processed":2041,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":408.2,"last_update":"2026-03-21T11:37:34.068915948Z"} +2026/03/21 11:37:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":224.8,"last_update":"2026-03-21T11:37:34.069148303Z"} +2026/03/21 11:37:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":452,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:37:34.078017047Z"} +2026/03/21 11:37:39 ───────────────────────────────────────────────── +2026/03/21 11:37:44 ── Pipeline Health ────────────────────────────── +2026/03/21 11:37:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":225.8,"last_update":"2026-03-21T11:37:39.069469417Z"} +2026/03/21 11:37:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:37:39.078360944Z"} +2026/03/21 11:37:44 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.164371558338539,"throughput_eps":0,"last_update":"2026-03-21T11:37:39.210776426Z"} +2026/03/21 11:37:44 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":141.3979124125384,"throughput_eps":0,"last_update":"2026-03-21T11:37:39.21078852Z"} +2026/03/21 11:37:44 [log_collector] {"stage_name":"log_collector","events_processed":2041,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":408.2,"last_update":"2026-03-21T11:37:39.069108085Z"} +2026/03/21 11:37:44 ───────────────────────────────────────────────── +2026/03/21 11:37:49 ── Pipeline Health ────────────────────────────── +2026/03/21 11:37:49 [log_collector] {"stage_name":"log_collector","events_processed":2041,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":408.2,"last_update":"2026-03-21T11:37:44.068063628Z"} +2026/03/21 11:37:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":226.8,"last_update":"2026-03-21T11:37:44.068582722Z"} +2026/03/21 11:37:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:37:44.077061349Z"} +2026/03/21 11:37:49 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.164371558338539,"throughput_eps":0,"last_update":"2026-03-21T11:37:44.210462439Z"} +2026/03/21 11:37:49 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":141.3979124125384,"throughput_eps":0,"last_update":"2026-03-21T11:37:44.210477869Z"} +2026/03/21 11:37:49 ───────────────────────────────────────────────── +2026/03/21 11:37:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:37:54 [log_collector] {"stage_name":"log_collector","events_processed":2041,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":408.2,"last_update":"2026-03-21T11:37:49.068187631Z"} +2026/03/21 11:37:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":227.8,"last_update":"2026-03-21T11:37:49.069058138Z"} +2026/03/21 11:37:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:37:49.077248924Z"} +2026/03/21 11:37:54 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.164371558338539,"throughput_eps":0,"last_update":"2026-03-21T11:37:49.21063153Z"} +2026/03/21 11:37:54 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":128.67879713003072,"throughput_eps":0,"last_update":"2026-03-21T11:37:49.288447962Z"} +2026/03/21 11:37:54 ───────────────────────────────────────────────── +2026/03/21 11:37:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:37:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":228.8,"last_update":"2026-03-21T11:37:54.069224656Z"} +2026/03/21 11:37:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:37:54.079304439Z"} +2026/03/21 11:37:59 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":11.845812246670832,"throughput_eps":0,"last_update":"2026-03-21T11:37:54.210551705Z"} +2026/03/21 11:37:59 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":128.67879713003072,"throughput_eps":0,"last_update":"2026-03-21T11:37:54.210559079Z"} +2026/03/21 11:37:59 [log_collector] {"stage_name":"log_collector","events_processed":2041,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":408.2,"last_update":"2026-03-21T11:37:54.06893441Z"} +2026/03/21 11:37:59 ───────────────────────────────────────────────── +2026/03/21 11:38:04 ── Pipeline Health ────────────────────────────── +2026/03/21 11:38:04 [log_collector] {"stage_name":"log_collector","events_processed":2041,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":408.2,"last_update":"2026-03-21T11:37:59.068698179Z"} +2026/03/21 11:38:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":229.8,"last_update":"2026-03-21T11:37:59.069095319Z"} +2026/03/21 11:38:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:37:59.07845323Z"} +2026/03/21 11:38:04 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":11.845812246670832,"throughput_eps":0,"last_update":"2026-03-21T11:37:59.210897298Z"} +2026/03/21 11:38:04 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":128.67879713003072,"throughput_eps":0,"last_update":"2026-03-21T11:37:59.209694074Z"} +2026/03/21 11:38:04 ───────────────────────────────────────────────── +2026/03/21 11:38:09 ── Pipeline Health ────────────────────────────── +2026/03/21 11:38:09 [log_collector] {"stage_name":"log_collector","events_processed":2041,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":408.2,"last_update":"2026-03-21T11:38:04.068679939Z"} +2026/03/21 11:38:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":230.8,"last_update":"2026-03-21T11:38:04.068918627Z"} +2026/03/21 11:38:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:38:04.077457188Z"} +2026/03/21 11:38:09 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":11.845812246670832,"throughput_eps":0,"last_update":"2026-03-21T11:38:04.210865854Z"} +2026/03/21 11:38:09 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":128.67879713003072,"throughput_eps":0,"last_update":"2026-03-21T11:38:04.209707676Z"} +2026/03/21 11:38:09 ───────────────────────────────────────────────── +2026/03/21 11:38:14 ── Pipeline Health ────────────────────────────── +2026/03/21 11:38:14 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":11.845812246670832,"throughput_eps":0,"last_update":"2026-03-21T11:38:09.210264289Z"} +2026/03/21 11:38:14 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":128.67879713003072,"throughput_eps":0,"last_update":"2026-03-21T11:38:09.210271322Z"} +2026/03/21 11:38:14 [log_collector] {"stage_name":"log_collector","events_processed":2041,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":408.2,"last_update":"2026-03-21T11:38:09.068851655Z"} +2026/03/21 11:38:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":231.8,"last_update":"2026-03-21T11:38:09.069328379Z"} +2026/03/21 11:38:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:38:09.077041679Z"} +2026/03/21 11:38:14 ───────────────────────────────────────────────── +2026/03/21 11:38:19 ── Pipeline Health ────────────────────────────── +2026/03/21 11:38:19 [log_collector] {"stage_name":"log_collector","events_processed":2041,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":408.2,"last_update":"2026-03-21T11:38:14.068994169Z"} +2026/03/21 11:38:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":232.8,"last_update":"2026-03-21T11:38:14.069203539Z"} +2026/03/21 11:38:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:38:14.078419389Z"} +2026/03/21 11:38:19 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":11.845812246670832,"throughput_eps":0,"last_update":"2026-03-21T11:38:14.210658355Z"} +2026/03/21 11:38:19 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":128.67879713003072,"throughput_eps":0,"last_update":"2026-03-21T11:38:14.210667042Z"} +2026/03/21 11:38:19 ───────────────────────────────────────────────── +Saved state: 11 clusters, 2042 messages, reason: none +2026/03/21 11:38:24 ── Pipeline Health ────────────────────────────── +2026/03/21 11:38:24 [log_collector] {"stage_name":"log_collector","events_processed":2041,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":408.2,"last_update":"2026-03-21T11:38:19.068712064Z"} +2026/03/21 11:38:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":233.8,"last_update":"2026-03-21T11:38:19.06903385Z"} +2026/03/21 11:38:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":470,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:38:19.078923509Z"} +2026/03/21 11:38:24 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":11.845812246670832,"throughput_eps":0,"last_update":"2026-03-21T11:38:19.210170035Z"} +2026/03/21 11:38:24 [transform_engine] {"stage_name":"transform_engine","events_processed":39,"events_dropped":0,"avg_latency_ms":116.42407110402458,"throughput_eps":0,"last_update":"2026-03-21T11:38:19.277588908Z"} +2026/03/21 11:38:24 ───────────────────────────────────────────────── +2026/03/21 11:38:29 ── Pipeline Health ────────────────────────────── +2026/03/21 11:38:29 [log_collector] {"stage_name":"log_collector","events_processed":2046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":409.2,"last_update":"2026-03-21T11:38:24.068507578Z"} +2026/03/21 11:38:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":234.8,"last_update":"2026-03-21T11:38:24.068726438Z"} +2026/03/21 11:38:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:38:24.075002777Z"} +2026/03/21 11:38:29 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":12.270211797336666,"throughput_eps":0,"last_update":"2026-03-21T11:38:24.210233624Z"} +2026/03/21 11:38:29 [transform_engine] {"stage_name":"transform_engine","events_processed":39,"events_dropped":0,"avg_latency_ms":116.42407110402458,"throughput_eps":0,"last_update":"2026-03-21T11:38:24.210216171Z"} +2026/03/21 11:38:29 ───────────────────────────────────────────────── +2026/03/21 11:38:34 ── Pipeline Health ────────────────────────────── +2026/03/21 11:38:34 [log_collector] {"stage_name":"log_collector","events_processed":2046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":409.2,"last_update":"2026-03-21T11:38:29.068683905Z"} +2026/03/21 11:38:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":235.8,"last_update":"2026-03-21T11:38:29.068802672Z"} +2026/03/21 11:38:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:38:29.07698926Z"} +2026/03/21 11:38:34 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":12.270211797336666,"throughput_eps":0,"last_update":"2026-03-21T11:38:29.21065512Z"} +2026/03/21 11:38:34 [transform_engine] {"stage_name":"transform_engine","events_processed":39,"events_dropped":0,"avg_latency_ms":116.42407110402458,"throughput_eps":0,"last_update":"2026-03-21T11:38:29.210640763Z"} +2026/03/21 11:38:34 ───────────────────────────────────────────────── +2026/03/21 11:38:39 ── Pipeline Health ────────────────────────────── +2026/03/21 11:38:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":236.8,"last_update":"2026-03-21T11:38:34.069268552Z"} +2026/03/21 11:38:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":476,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:38:34.076113341Z"} +2026/03/21 11:38:39 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":12.270211797336666,"throughput_eps":0,"last_update":"2026-03-21T11:38:34.210338482Z"} +2026/03/21 11:38:39 [transform_engine] {"stage_name":"transform_engine","events_processed":39,"events_dropped":0,"avg_latency_ms":116.42407110402458,"throughput_eps":0,"last_update":"2026-03-21T11:38:34.210314115Z"} +2026/03/21 11:38:39 [log_collector] {"stage_name":"log_collector","events_processed":2046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":409.2,"last_update":"2026-03-21T11:38:34.069041567Z"} +2026/03/21 11:38:39 ───────────────────────────────────────────────── +2026/03/21 11:38:44 ── Pipeline Health ────────────────────────────── +2026/03/21 11:38:44 [log_collector] {"stage_name":"log_collector","events_processed":2046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":409.2,"last_update":"2026-03-21T11:38:39.068719205Z"} +2026/03/21 11:38:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":237.8,"last_update":"2026-03-21T11:38:39.069022856Z"} +2026/03/21 11:38:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:38:39.076390516Z"} +2026/03/21 11:38:44 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":12.270211797336666,"throughput_eps":0,"last_update":"2026-03-21T11:38:39.210430923Z"} +2026/03/21 11:38:44 [transform_engine] {"stage_name":"transform_engine","events_processed":39,"events_dropped":0,"avg_latency_ms":116.42407110402458,"throughput_eps":0,"last_update":"2026-03-21T11:38:39.210420344Z"} +2026/03/21 11:38:44 ───────────────────────────────────────────────── +2026/03/21 11:38:49 ── Pipeline Health ────────────────────────────── +2026/03/21 11:38:49 [log_collector] {"stage_name":"log_collector","events_processed":2046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":409.2,"last_update":"2026-03-21T11:38:44.069134564Z"} +2026/03/21 11:38:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":238.8,"last_update":"2026-03-21T11:38:44.069335519Z"} +2026/03/21 11:38:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":480,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:38:44.075747218Z"} +2026/03/21 11:38:49 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":12.270211797336666,"throughput_eps":0,"last_update":"2026-03-21T11:38:44.21001921Z"} +2026/03/21 11:38:49 [transform_engine] {"stage_name":"transform_engine","events_processed":39,"events_dropped":0,"avg_latency_ms":116.42407110402458,"throughput_eps":0,"last_update":"2026-03-21T11:38:44.210033046Z"} +2026/03/21 11:38:49 ───────────────────────────────────────────────── +2026/03/21 11:38:51 [ANOMALY] time=2026-03-21T11:38:51Z score=0.9604 method=SEAD details=MAD!:w=0.24,s=1.00 RRCF-fast!:w=0.19,s=0.97 RRCF-mid!:w=0.19,s=1.00 RRCF-slow!:w=0.19,s=1.00 COPOD!:w=0.19,s=0.82 +2026/03/21 11:38:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:38:54 [log_collector] {"stage_name":"log_collector","events_processed":2046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":409.2,"last_update":"2026-03-21T11:38:49.068953965Z"} +2026/03/21 11:38:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":239.8,"last_update":"2026-03-21T11:38:49.069285681Z"} +2026/03/21 11:38:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":482,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:38:49.079687831Z"} +2026/03/21 11:38:54 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":12.270211797336666,"throughput_eps":0,"last_update":"2026-03-21T11:38:49.210242565Z"} +2026/03/21 11:38:54 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":514.7882466832197,"throughput_eps":0,"last_update":"2026-03-21T11:38:51.318459259Z"} +2026/03/21 11:38:54 ───────────────────────────────────────────────── +2026/03/21 11:38:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:38:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":240.8,"last_update":"2026-03-21T11:38:54.068506677Z"} +2026/03/21 11:38:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:38:54.075051822Z"} +2026/03/21 11:38:59 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":10.844334437869334,"throughput_eps":0,"last_update":"2026-03-21T11:38:54.210346312Z"} +2026/03/21 11:38:59 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":514.7882466832197,"throughput_eps":0,"last_update":"2026-03-21T11:38:54.210321154Z"} +2026/03/21 11:38:59 [log_collector] {"stage_name":"log_collector","events_processed":2046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":409.2,"last_update":"2026-03-21T11:38:54.068392138Z"} +2026/03/21 11:38:59 ───────────────────────────────────────────────── +2026/03/21 11:39:04 ── Pipeline Health ────────────────────────────── +2026/03/21 11:39:04 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":10.844334437869334,"throughput_eps":0,"last_update":"2026-03-21T11:38:59.210020597Z"} +2026/03/21 11:39:04 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":514.7882466832197,"throughput_eps":0,"last_update":"2026-03-21T11:38:59.210105149Z"} +2026/03/21 11:39:04 [log_collector] {"stage_name":"log_collector","events_processed":2046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":409.2,"last_update":"2026-03-21T11:38:59.068770119Z"} +2026/03/21 11:39:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":241.8,"last_update":"2026-03-21T11:38:59.069019557Z"} +2026/03/21 11:39:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":486,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:38:59.081787258Z"} +2026/03/21 11:39:04 ───────────────────────────────────────────────── +2026/03/21 11:39:09 ── Pipeline Health ────────────────────────────── +2026/03/21 11:39:09 [log_collector] {"stage_name":"log_collector","events_processed":2055,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":411,"last_update":"2026-03-21T11:39:04.068478652Z"} +2026/03/21 11:39:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":242.8,"last_update":"2026-03-21T11:39:04.068703612Z"} +2026/03/21 11:39:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:39:04.075222417Z"} +2026/03/21 11:39:09 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":10.844334437869334,"throughput_eps":0,"last_update":"2026-03-21T11:39:04.210445771Z"} +2026/03/21 11:39:09 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":514.7882466832197,"throughput_eps":0,"last_update":"2026-03-21T11:39:04.210525525Z"} +2026/03/21 11:39:09 ───────────────────────────────────────────────── +2026/03/21 11:39:14 ── Pipeline Health ────────────────────────────── +2026/03/21 11:39:14 [log_collector] {"stage_name":"log_collector","events_processed":2057,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":411.4,"last_update":"2026-03-21T11:39:09.068613393Z"} +2026/03/21 11:39:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":243.8,"last_update":"2026-03-21T11:39:09.069027156Z"} +2026/03/21 11:39:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":490,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:39:09.077291593Z"} +2026/03/21 11:39:14 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":10.844334437869334,"throughput_eps":0,"last_update":"2026-03-21T11:39:09.210628516Z"} +2026/03/21 11:39:14 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":514.7882466832197,"throughput_eps":0,"last_update":"2026-03-21T11:39:09.210688941Z"} +2026/03/21 11:39:14 ───────────────────────────────────────────────── +2026/03/21 11:39:19 ── Pipeline Health ────────────────────────────── +2026/03/21 11:39:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:39:14.077958775Z"} +2026/03/21 11:39:19 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":10.844334437869334,"throughput_eps":0,"last_update":"2026-03-21T11:39:14.210504593Z"} +2026/03/21 11:39:19 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":514.7882466832197,"throughput_eps":0,"last_update":"2026-03-21T11:39:14.21048235Z"} +2026/03/21 11:39:19 [log_collector] {"stage_name":"log_collector","events_processed":2326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":465.2,"last_update":"2026-03-21T11:39:14.068132046Z"} +2026/03/21 11:39:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":244.6,"last_update":"2026-03-21T11:39:14.068152786Z"} +2026/03/21 11:39:19 ───────────────────────────────────────────────── +2026/03/21 11:39:24 ── Pipeline Health ────────────────────────────── +2026/03/21 11:39:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":245.8,"last_update":"2026-03-21T11:39:19.069087641Z"} +2026/03/21 11:39:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:39:19.078217626Z"} +2026/03/21 11:39:24 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":10.844334437869334,"throughput_eps":0,"last_update":"2026-03-21T11:39:19.21149743Z"} +2026/03/21 11:39:24 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":549.4488059465757,"throughput_eps":0,"last_update":"2026-03-21T11:39:19.898552769Z"} +2026/03/21 11:39:24 [log_collector] {"stage_name":"log_collector","events_processed":2410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":482,"last_update":"2026-03-21T11:39:19.068594116Z"} +2026/03/21 11:39:24 ───────────────────────────────────────────────── +2026/03/21 11:39:29 ── Pipeline Health ────────────────────────────── +2026/03/21 11:39:29 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":549.4488059465757,"throughput_eps":0,"last_update":"2026-03-21T11:39:24.21038695Z"} +2026/03/21 11:39:29 [log_collector] {"stage_name":"log_collector","events_processed":2410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":482,"last_update":"2026-03-21T11:39:24.069065836Z"} +2026/03/21 11:39:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":246.8,"last_update":"2026-03-21T11:39:24.069758612Z"} +2026/03/21 11:39:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":496,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:39:24.078131367Z"} +2026/03/21 11:39:29 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":11.110769750295468,"throughput_eps":0,"last_update":"2026-03-21T11:39:24.210379325Z"} +2026/03/21 11:39:29 ───────────────────────────────────────────────── +2026/03/21 11:39:34 ── Pipeline Health ────────────────────────────── +2026/03/21 11:39:34 [log_collector] {"stage_name":"log_collector","events_processed":2410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":482,"last_update":"2026-03-21T11:39:29.068785585Z"} +2026/03/21 11:39:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":247.8,"last_update":"2026-03-21T11:39:29.069303247Z"} +2026/03/21 11:39:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":498,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:39:29.079633099Z"} +2026/03/21 11:39:34 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":11.110769750295468,"throughput_eps":0,"last_update":"2026-03-21T11:39:29.209923168Z"} +2026/03/21 11:39:34 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":549.4488059465757,"throughput_eps":0,"last_update":"2026-03-21T11:39:29.209794882Z"} +2026/03/21 11:39:34 ───────────────────────────────────────────────── +Saved state: 11 clusters, 2411 messages, reason: none +2026/03/21 11:39:39 ── Pipeline Health ────────────────────────────── +2026/03/21 11:39:39 [log_collector] {"stage_name":"log_collector","events_processed":2410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":482,"last_update":"2026-03-21T11:39:34.068937645Z"} +2026/03/21 11:39:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":248.8,"last_update":"2026-03-21T11:39:34.069258719Z"} +2026/03/21 11:39:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:39:34.077131787Z"} +2026/03/21 11:39:39 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":11.110769750295468,"throughput_eps":0,"last_update":"2026-03-21T11:39:34.21039957Z"} +2026/03/21 11:39:39 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":549.4488059465757,"throughput_eps":0,"last_update":"2026-03-21T11:39:34.210379381Z"} +2026/03/21 11:39:39 ───────────────────────────────────────────────── +2026/03/21 11:39:44 ── Pipeline Health ────────────────────────────── +2026/03/21 11:39:44 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":11.110769750295468,"throughput_eps":0,"last_update":"2026-03-21T11:39:39.210773906Z"} +2026/03/21 11:39:44 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":549.4488059465757,"throughput_eps":0,"last_update":"2026-03-21T11:39:39.209724256Z"} +2026/03/21 11:39:44 [log_collector] {"stage_name":"log_collector","events_processed":2413,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":482.6,"last_update":"2026-03-21T11:39:39.068703546Z"} +2026/03/21 11:39:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":249.8,"last_update":"2026-03-21T11:39:39.069023249Z"} +2026/03/21 11:39:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:39:39.07498761Z"} +2026/03/21 11:39:44 ───────────────────────────────────────────────── +2026/03/21 11:39:49 ── Pipeline Health ────────────────────────────── +2026/03/21 11:39:49 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":549.4488059465757,"throughput_eps":0,"last_update":"2026-03-21T11:39:44.21045761Z"} +2026/03/21 11:39:49 [log_collector] {"stage_name":"log_collector","events_processed":2413,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":482.6,"last_update":"2026-03-21T11:39:44.068636277Z"} +2026/03/21 11:39:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":250.8,"last_update":"2026-03-21T11:39:44.06896174Z"} +2026/03/21 11:39:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:39:44.07507688Z"} +2026/03/21 11:39:49 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":11.110769750295468,"throughput_eps":0,"last_update":"2026-03-21T11:39:44.210474261Z"} +2026/03/21 11:39:49 ───────────────────────────────────────────────── +2026/03/21 11:39:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:39:54 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":11.110769750295468,"throughput_eps":0,"last_update":"2026-03-21T11:39:49.210288066Z"} +2026/03/21 11:39:54 [transform_engine] {"stage_name":"transform_engine","events_processed":42,"events_dropped":0,"avg_latency_ms":900.6896115572606,"throughput_eps":0,"last_update":"2026-03-21T11:39:51.515976126Z"} +2026/03/21 11:39:54 [log_collector] {"stage_name":"log_collector","events_processed":2423,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":484.6,"last_update":"2026-03-21T11:39:49.068604156Z"} +2026/03/21 11:39:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":251.6,"last_update":"2026-03-21T11:39:49.068610808Z"} +2026/03/21 11:39:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":506,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:39:49.074922936Z"} +2026/03/21 11:39:54 ───────────────────────────────────────────────── +2026/03/21 11:39:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:39:59 [log_collector] {"stage_name":"log_collector","events_processed":2424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":484.8,"last_update":"2026-03-21T11:39:54.06821534Z"} +2026/03/21 11:39:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1263,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":252.6,"last_update":"2026-03-21T11:39:54.068321264Z"} +2026/03/21 11:39:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:39:54.077360585Z"} +2026/03/21 11:39:59 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":11.269942400236374,"throughput_eps":0,"last_update":"2026-03-21T11:39:54.210617687Z"} +2026/03/21 11:39:59 [transform_engine] {"stage_name":"transform_engine","events_processed":42,"events_dropped":0,"avg_latency_ms":900.6896115572606,"throughput_eps":0,"last_update":"2026-03-21T11:39:54.210627035Z"} +2026/03/21 11:39:59 ───────────────────────────────────────────────── +2026/03/21 11:40:04 ── Pipeline Health ────────────────────────────── +2026/03/21 11:40:04 [log_collector] {"stage_name":"log_collector","events_processed":2438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":487.6,"last_update":"2026-03-21T11:39:59.068315785Z"} +2026/03/21 11:40:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":253.8,"last_update":"2026-03-21T11:39:59.068642571Z"} +2026/03/21 11:40:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:39:59.075356569Z"} +2026/03/21 11:40:04 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":11.269942400236374,"throughput_eps":0,"last_update":"2026-03-21T11:39:59.210741958Z"} +2026/03/21 11:40:04 [transform_engine] {"stage_name":"transform_engine","events_processed":42,"events_dropped":0,"avg_latency_ms":900.6896115572606,"throughput_eps":0,"last_update":"2026-03-21T11:39:59.210754211Z"} +2026/03/21 11:40:04 ───────────────────────────────────────────────── +2026/03/21 11:40:09 ── Pipeline Health ────────────────────────────── +2026/03/21 11:40:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":254.8,"last_update":"2026-03-21T11:40:04.069302336Z"} +2026/03/21 11:40:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":512,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:40:04.088778204Z"} +2026/03/21 11:40:09 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":11.269942400236374,"throughput_eps":0,"last_update":"2026-03-21T11:40:04.210044974Z"} +2026/03/21 11:40:09 [transform_engine] {"stage_name":"transform_engine","events_processed":42,"events_dropped":0,"avg_latency_ms":900.6896115572606,"throughput_eps":0,"last_update":"2026-03-21T11:40:04.210061575Z"} +2026/03/21 11:40:09 [log_collector] {"stage_name":"log_collector","events_processed":2440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":488,"last_update":"2026-03-21T11:40:04.069008242Z"} +2026/03/21 11:40:09 ───────────────────────────────────────────────── +2026/03/21 11:40:14 ── Pipeline Health ────────────────────────────── +2026/03/21 11:40:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:40:09.078129593Z"} +2026/03/21 11:40:14 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":11.269942400236374,"throughput_eps":0,"last_update":"2026-03-21T11:40:09.210421057Z"} +2026/03/21 11:40:14 [transform_engine] {"stage_name":"transform_engine","events_processed":42,"events_dropped":0,"avg_latency_ms":900.6896115572606,"throughput_eps":0,"last_update":"2026-03-21T11:40:09.21043303Z"} +2026/03/21 11:40:14 [log_collector] {"stage_name":"log_collector","events_processed":2440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":488,"last_update":"2026-03-21T11:40:09.068114994Z"} +2026/03/21 11:40:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":255.8,"last_update":"2026-03-21T11:40:09.068399078Z"} +2026/03/21 11:40:14 ───────────────────────────────────────────────── +2026/03/21 11:40:19 ── Pipeline Health ────────────────────────────── +2026/03/21 11:40:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":256.8,"last_update":"2026-03-21T11:40:14.069808539Z"} +2026/03/21 11:40:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:40:14.078672365Z"} +2026/03/21 11:40:19 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":11.269942400236374,"throughput_eps":0,"last_update":"2026-03-21T11:40:14.210100024Z"} +2026/03/21 11:40:19 [transform_engine] {"stage_name":"transform_engine","events_processed":42,"events_dropped":0,"avg_latency_ms":900.6896115572606,"throughput_eps":0,"last_update":"2026-03-21T11:40:14.210115194Z"} +2026/03/21 11:40:19 [log_collector] {"stage_name":"log_collector","events_processed":2440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":488,"last_update":"2026-03-21T11:40:14.068856617Z"} +2026/03/21 11:40:19 ───────────────────────────────────────────────── +2026/03/21 11:40:24 ── Pipeline Health ────────────────────────────── +2026/03/21 11:40:24 [transform_engine] {"stage_name":"transform_engine","events_processed":43,"events_dropped":0,"avg_latency_ms":741.9044944458086,"throughput_eps":0,"last_update":"2026-03-21T11:40:19.316804919Z"} +2026/03/21 11:40:24 [log_collector] {"stage_name":"log_collector","events_processed":2440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":488,"last_update":"2026-03-21T11:40:19.06866961Z"} +2026/03/21 11:40:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":257.8,"last_update":"2026-03-21T11:40:19.069312371Z"} +2026/03/21 11:40:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:40:19.077713851Z"} +2026/03/21 11:40:24 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":11.269942400236374,"throughput_eps":0,"last_update":"2026-03-21T11:40:19.210025062Z"} +2026/03/21 11:40:24 ───────────────────────────────────────────────── +2026/03/21 11:40:29 ── Pipeline Health ────────────────────────────── +2026/03/21 11:40:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":520,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:40:24.078677958Z"} +2026/03/21 11:40:29 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":12.089033320189099,"throughput_eps":0,"last_update":"2026-03-21T11:40:24.21013746Z"} +2026/03/21 11:40:29 [transform_engine] {"stage_name":"transform_engine","events_processed":43,"events_dropped":0,"avg_latency_ms":741.9044944458086,"throughput_eps":0,"last_update":"2026-03-21T11:40:24.210019824Z"} +2026/03/21 11:40:29 [log_collector] {"stage_name":"log_collector","events_processed":2440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":488,"last_update":"2026-03-21T11:40:24.068740998Z"} +2026/03/21 11:40:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":258.8,"last_update":"2026-03-21T11:40:24.069213031Z"} +2026/03/21 11:40:29 ───────────────────────────────────────────────── +2026/03/21 11:40:34 ── Pipeline Health ────────────────────────────── +2026/03/21 11:40:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":259.8,"last_update":"2026-03-21T11:40:29.069196993Z"} +2026/03/21 11:40:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":522,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:40:29.078237376Z"} +2026/03/21 11:40:34 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":12.089033320189099,"throughput_eps":0,"last_update":"2026-03-21T11:40:29.210512631Z"} +2026/03/21 11:40:34 [transform_engine] {"stage_name":"transform_engine","events_processed":43,"events_dropped":0,"avg_latency_ms":741.9044944458086,"throughput_eps":0,"last_update":"2026-03-21T11:40:29.210645314Z"} +2026/03/21 11:40:34 [log_collector] {"stage_name":"log_collector","events_processed":2440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":488,"last_update":"2026-03-21T11:40:29.068655275Z"} +2026/03/21 11:40:34 ───────────────────────────────────────────────── +2026/03/21 11:40:39 ── Pipeline Health ────────────────────────────── +2026/03/21 11:40:39 [log_collector] {"stage_name":"log_collector","events_processed":2440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":488,"last_update":"2026-03-21T11:40:34.068533283Z"} +2026/03/21 11:40:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":260.8,"last_update":"2026-03-21T11:40:34.068802067Z"} +2026/03/21 11:40:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:40:34.078454803Z"} +2026/03/21 11:40:39 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":12.089033320189099,"throughput_eps":0,"last_update":"2026-03-21T11:40:34.210644664Z"} +2026/03/21 11:40:39 [transform_engine] {"stage_name":"transform_engine","events_processed":43,"events_dropped":0,"avg_latency_ms":741.9044944458086,"throughput_eps":0,"last_update":"2026-03-21T11:40:34.210686354Z"} +2026/03/21 11:40:39 ───────────────────────────────────────────────── +2026/03/21 11:40:44 ── Pipeline Health ────────────────────────────── +2026/03/21 11:40:44 [log_collector] {"stage_name":"log_collector","events_processed":2440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":488,"last_update":"2026-03-21T11:40:39.068581635Z"} +2026/03/21 11:40:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":261.8,"last_update":"2026-03-21T11:40:39.068981822Z"} +2026/03/21 11:40:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":526,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:40:39.077561694Z"} +2026/03/21 11:40:44 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":12.089033320189099,"throughput_eps":0,"last_update":"2026-03-21T11:40:39.209899167Z"} +2026/03/21 11:40:44 [transform_engine] {"stage_name":"transform_engine","events_processed":43,"events_dropped":0,"avg_latency_ms":741.9044944458086,"throughput_eps":0,"last_update":"2026-03-21T11:40:39.209786512Z"} +2026/03/21 11:40:44 ───────────────────────────────────────────────── +2026/03/21 11:40:49 ── Pipeline Health ────────────────────────────── +2026/03/21 11:40:49 [log_collector] {"stage_name":"log_collector","events_processed":2440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":488,"last_update":"2026-03-21T11:40:44.068566297Z"} +2026/03/21 11:40:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":262.8,"last_update":"2026-03-21T11:40:44.068611544Z"} +2026/03/21 11:40:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:40:44.080035943Z"} +2026/03/21 11:40:49 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":12.089033320189099,"throughput_eps":0,"last_update":"2026-03-21T11:40:44.210519235Z"} +2026/03/21 11:40:49 [transform_engine] {"stage_name":"transform_engine","events_processed":43,"events_dropped":0,"avg_latency_ms":741.9044944458086,"throughput_eps":0,"last_update":"2026-03-21T11:40:44.21041185Z"} +2026/03/21 11:40:49 ───────────────────────────────────────────────── +2026/03/21 11:40:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:40:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:40:49.07726231Z"} +2026/03/21 11:40:54 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":12.089033320189099,"throughput_eps":0,"last_update":"2026-03-21T11:40:49.210598547Z"} +2026/03/21 11:40:54 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":606.6544727566469,"throughput_eps":0,"last_update":"2026-03-21T11:40:49.276154095Z"} +2026/03/21 11:40:54 [log_collector] {"stage_name":"log_collector","events_processed":2440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":488,"last_update":"2026-03-21T11:40:49.068100183Z"} +2026/03/21 11:40:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":263.8,"last_update":"2026-03-21T11:40:49.068638585Z"} +2026/03/21 11:40:54 ───────────────────────────────────────────────── +Saved state: 11 clusters, 2441 messages, reason: none +2026/03/21 11:40:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:40:59 [log_collector] {"stage_name":"log_collector","events_processed":2440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":488,"last_update":"2026-03-21T11:40:54.06864119Z"} +2026/03/21 11:40:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":264.8,"last_update":"2026-03-21T11:40:54.068944681Z"} +2026/03/21 11:40:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":532,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:40:54.078161353Z"} +2026/03/21 11:40:59 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":12.582644656151281,"throughput_eps":0,"last_update":"2026-03-21T11:40:54.210399677Z"} +2026/03/21 11:40:59 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":606.6544727566469,"throughput_eps":0,"last_update":"2026-03-21T11:40:54.210405357Z"} +2026/03/21 11:40:59 ───────────────────────────────────────────────── +2026/03/21 11:41:04 ── Pipeline Health ────────────────────────────── +2026/03/21 11:41:04 [log_collector] {"stage_name":"log_collector","events_processed":2443,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":488.6,"last_update":"2026-03-21T11:40:59.06872069Z"} +2026/03/21 11:41:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":265.8,"last_update":"2026-03-21T11:40:59.069303305Z"} +2026/03/21 11:41:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:40:59.076230532Z"} +2026/03/21 11:41:04 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":12.582644656151281,"throughput_eps":0,"last_update":"2026-03-21T11:40:59.210242244Z"} +2026/03/21 11:41:04 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":606.6544727566469,"throughput_eps":0,"last_update":"2026-03-21T11:40:59.210273343Z"} +2026/03/21 11:41:04 ───────────────────────────────────────────────── +2026/03/21 11:41:09 ── Pipeline Health ────────────────────────────── +2026/03/21 11:41:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":536,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:41:04.078485227Z"} +2026/03/21 11:41:09 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":12.582644656151281,"throughput_eps":0,"last_update":"2026-03-21T11:41:04.210814657Z"} +2026/03/21 11:41:09 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":606.6544727566469,"throughput_eps":0,"last_update":"2026-03-21T11:41:04.209722053Z"} +2026/03/21 11:41:09 [log_collector] {"stage_name":"log_collector","events_processed":2454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":490.8,"last_update":"2026-03-21T11:41:04.068796411Z"} +2026/03/21 11:41:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":266.8,"last_update":"2026-03-21T11:41:04.069009219Z"} +2026/03/21 11:41:09 ───────────────────────────────────────────────── +2026/03/21 11:41:14 ── Pipeline Health ────────────────────────────── +2026/03/21 11:41:14 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":606.6544727566469,"throughput_eps":0,"last_update":"2026-03-21T11:41:09.210210616Z"} +2026/03/21 11:41:14 [log_collector] {"stage_name":"log_collector","events_processed":2454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":490.8,"last_update":"2026-03-21T11:41:09.068705113Z"} +2026/03/21 11:41:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":267.8,"last_update":"2026-03-21T11:41:09.068989878Z"} +2026/03/21 11:41:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:41:09.077746038Z"} +2026/03/21 11:41:14 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":12.582644656151281,"throughput_eps":0,"last_update":"2026-03-21T11:41:09.210093222Z"} +2026/03/21 11:41:14 ───────────────────────────────────────────────── +2026/03/21 11:41:19 ── Pipeline Health ────────────────────────────── +2026/03/21 11:41:19 [log_collector] {"stage_name":"log_collector","events_processed":2454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":490.8,"last_update":"2026-03-21T11:41:14.068115879Z"} +2026/03/21 11:41:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":268.8,"last_update":"2026-03-21T11:41:14.068301465Z"} +2026/03/21 11:41:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":540,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:41:14.077067704Z"} +2026/03/21 11:41:19 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":12.582644656151281,"throughput_eps":0,"last_update":"2026-03-21T11:41:14.210468605Z"} +2026/03/21 11:41:19 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":606.6544727566469,"throughput_eps":0,"last_update":"2026-03-21T11:41:14.21049754Z"} +2026/03/21 11:41:19 ───────────────────────────────────────────────── +2026/03/21 11:41:24 ── Pipeline Health ────────────────────────────── +2026/03/21 11:41:24 [log_collector] {"stage_name":"log_collector","events_processed":2454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":490.8,"last_update":"2026-03-21T11:41:19.068760759Z"} +2026/03/21 11:41:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":269.8,"last_update":"2026-03-21T11:41:19.068942307Z"} +2026/03/21 11:41:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":542,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:41:19.079083669Z"} +2026/03/21 11:41:24 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":12.582644656151281,"throughput_eps":0,"last_update":"2026-03-21T11:41:19.210464613Z"} +2026/03/21 11:41:24 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":506.9890586053175,"throughput_eps":0,"last_update":"2026-03-21T11:41:19.318906364Z"} +2026/03/21 11:41:24 ───────────────────────────────────────────────── +2026/03/21 11:41:29 ── Pipeline Health ────────────────────────────── +2026/03/21 11:41:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:41:24.07737447Z"} +2026/03/21 11:41:29 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":12.901732324921026,"throughput_eps":0,"last_update":"2026-03-21T11:41:24.210592904Z"} +2026/03/21 11:41:29 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":506.9890586053175,"throughput_eps":0,"last_update":"2026-03-21T11:41:24.210568517Z"} +2026/03/21 11:41:29 [log_collector] {"stage_name":"log_collector","events_processed":2454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":490.8,"last_update":"2026-03-21T11:41:24.068077005Z"} +2026/03/21 11:41:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":270.8,"last_update":"2026-03-21T11:41:24.068703675Z"} +2026/03/21 11:41:29 ───────────────────────────────────────────────── +2026/03/21 11:41:34 ── Pipeline Health ────────────────────────────── +2026/03/21 11:41:34 [log_collector] {"stage_name":"log_collector","events_processed":2454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":490.8,"last_update":"2026-03-21T11:41:29.068783367Z"} +2026/03/21 11:41:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":271.8,"last_update":"2026-03-21T11:41:29.069411309Z"} +2026/03/21 11:41:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:41:29.078411146Z"} +2026/03/21 11:41:34 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":12.901732324921026,"throughput_eps":0,"last_update":"2026-03-21T11:41:29.210917776Z"} +2026/03/21 11:41:34 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":506.9890586053175,"throughput_eps":0,"last_update":"2026-03-21T11:41:29.209645409Z"} +2026/03/21 11:41:34 ───────────────────────────────────────────────── +2026/03/21 11:41:39 ── Pipeline Health ────────────────────────────── +2026/03/21 11:41:39 [log_collector] {"stage_name":"log_collector","events_processed":2454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":490.8,"last_update":"2026-03-21T11:41:34.068829928Z"} +2026/03/21 11:41:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":272.8,"last_update":"2026-03-21T11:41:34.069173546Z"} +2026/03/21 11:41:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:41:34.078716341Z"} +2026/03/21 11:41:39 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":12.901732324921026,"throughput_eps":0,"last_update":"2026-03-21T11:41:34.209920809Z"} +2026/03/21 11:41:39 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":506.9890586053175,"throughput_eps":0,"last_update":"2026-03-21T11:41:34.210030729Z"} +2026/03/21 11:41:39 ───────────────────────────────────────────────── +2026/03/21 11:41:44 ── Pipeline Health ────────────────────────────── +2026/03/21 11:41:44 [log_collector] {"stage_name":"log_collector","events_processed":2454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":490.8,"last_update":"2026-03-21T11:41:39.068878771Z"} +2026/03/21 11:41:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":273.8,"last_update":"2026-03-21T11:41:39.069317771Z"} +2026/03/21 11:41:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:41:39.078320533Z"} +2026/03/21 11:41:44 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":12.901732324921026,"throughput_eps":0,"last_update":"2026-03-21T11:41:39.21066375Z"} +2026/03/21 11:41:44 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":506.9890586053175,"throughput_eps":0,"last_update":"2026-03-21T11:41:39.210563378Z"} +2026/03/21 11:41:44 ───────────────────────────────────────────────── +2026/03/21 11:41:49 ── Pipeline Health ────────────────────────────── +2026/03/21 11:41:49 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":506.9890586053175,"throughput_eps":0,"last_update":"2026-03-21T11:41:44.209801586Z"} +2026/03/21 11:41:49 [log_collector] {"stage_name":"log_collector","events_processed":2454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":490.8,"last_update":"2026-03-21T11:41:44.068581127Z"} +2026/03/21 11:41:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":274.8,"last_update":"2026-03-21T11:41:44.068945676Z"} +2026/03/21 11:41:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:41:44.078510945Z"} +2026/03/21 11:41:49 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":12.901732324921026,"throughput_eps":0,"last_update":"2026-03-21T11:41:44.209879666Z"} +2026/03/21 11:41:49 ───────────────────────────────────────────────── +2026/03/21 11:41:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:41:54 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":418.267464084254,"throughput_eps":0,"last_update":"2026-03-21T11:41:49.273048199Z"} +2026/03/21 11:41:54 [log_collector] {"stage_name":"log_collector","events_processed":2454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":490.8,"last_update":"2026-03-21T11:41:49.068599127Z"} +2026/03/21 11:41:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":275.8,"last_update":"2026-03-21T11:41:49.06895036Z"} +2026/03/21 11:41:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:41:49.079401275Z"} +2026/03/21 11:41:54 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":12.901732324921026,"throughput_eps":0,"last_update":"2026-03-21T11:41:49.210801736Z"} +2026/03/21 11:41:54 ───────────────────────────────────────────────── +2026/03/21 11:41:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:41:59 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":13.308648859936822,"throughput_eps":0,"last_update":"2026-03-21T11:41:54.210690696Z"} +2026/03/21 11:41:59 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":418.267464084254,"throughput_eps":0,"last_update":"2026-03-21T11:41:54.21065092Z"} +2026/03/21 11:41:59 [log_collector] {"stage_name":"log_collector","events_processed":2454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":490.8,"last_update":"2026-03-21T11:41:54.068413583Z"} +2026/03/21 11:41:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":276.8,"last_update":"2026-03-21T11:41:54.068399816Z"} +2026/03/21 11:41:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:41:54.077437855Z"} +2026/03/21 11:41:59 ───────────────────────────────────────────────── +2026/03/21 11:42:04 ── Pipeline Health ────────────────────────────── +2026/03/21 11:42:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:41:59.078937049Z"} +2026/03/21 11:42:04 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":13.308648859936822,"throughput_eps":0,"last_update":"2026-03-21T11:41:59.210200178Z"} +2026/03/21 11:42:04 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":418.267464084254,"throughput_eps":0,"last_update":"2026-03-21T11:41:59.210179919Z"} +2026/03/21 11:42:04 [log_collector] {"stage_name":"log_collector","events_processed":2454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":490.8,"last_update":"2026-03-21T11:42:04.068298404Z"} +2026/03/21 11:42:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":277.8,"last_update":"2026-03-21T11:41:59.06915259Z"} +2026/03/21 11:42:04 ───────────────────────────────────────────────── +Saved state: 11 clusters, 2455 messages, reason: none +2026/03/21 11:42:09 ── Pipeline Health ────────────────────────────── +2026/03/21 11:42:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":560,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:42:04.078797993Z"} +2026/03/21 11:42:09 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":13.308648859936822,"throughput_eps":0,"last_update":"2026-03-21T11:42:04.210217833Z"} +2026/03/21 11:42:09 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":418.267464084254,"throughput_eps":0,"last_update":"2026-03-21T11:42:04.210191162Z"} +2026/03/21 11:42:09 [log_collector] {"stage_name":"log_collector","events_processed":2454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":490.8,"last_update":"2026-03-21T11:42:04.068298404Z"} +2026/03/21 11:42:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":278.8,"last_update":"2026-03-21T11:42:04.068987213Z"} +2026/03/21 11:42:09 ───────────────────────────────────────────────── +2026/03/21 11:42:14 ── Pipeline Health ────────────────────────────── +2026/03/21 11:42:14 [log_collector] {"stage_name":"log_collector","events_processed":2459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":491.8,"last_update":"2026-03-21T11:42:09.069416793Z"} +2026/03/21 11:42:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":279.8,"last_update":"2026-03-21T11:42:09.069328875Z"} +2026/03/21 11:42:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:42:09.076978816Z"} +2026/03/21 11:42:14 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":13.308648859936822,"throughput_eps":0,"last_update":"2026-03-21T11:42:09.210211197Z"} +2026/03/21 11:42:14 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":418.267464084254,"throughput_eps":0,"last_update":"2026-03-21T11:42:09.210250363Z"} +2026/03/21 11:42:14 ───────────────────────────────────────────────── +2026/03/21 11:42:19 ── Pipeline Health ────────────────────────────── +2026/03/21 11:42:19 [log_collector] {"stage_name":"log_collector","events_processed":2459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":491.8,"last_update":"2026-03-21T11:42:14.068563323Z"} +2026/03/21 11:42:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":280.8,"last_update":"2026-03-21T11:42:14.068958781Z"} +2026/03/21 11:42:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:42:14.076802093Z"} +2026/03/21 11:42:19 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":13.308648859936822,"throughput_eps":0,"last_update":"2026-03-21T11:42:14.210013033Z"} +2026/03/21 11:42:19 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":418.267464084254,"throughput_eps":0,"last_update":"2026-03-21T11:42:14.209989317Z"} +2026/03/21 11:42:19 ───────────────────────────────────────────────── +2026/03/21 11:42:24 ── Pipeline Health ────────────────────────────── +2026/03/21 11:42:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":281.8,"last_update":"2026-03-21T11:42:19.068729887Z"} +2026/03/21 11:42:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":566,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:42:19.075152547Z"} +2026/03/21 11:42:24 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":13.308648859936822,"throughput_eps":0,"last_update":"2026-03-21T11:42:19.21039559Z"} +2026/03/21 11:42:24 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":418.267464084254,"throughput_eps":0,"last_update":"2026-03-21T11:42:14.209989317Z"} +2026/03/21 11:42:24 [log_collector] {"stage_name":"log_collector","events_processed":2459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":491.8,"last_update":"2026-03-21T11:42:19.068509094Z"} +2026/03/21 11:42:24 ───────────────────────────────────────────────── +2026/03/21 11:42:26 [ANOMALY] time=2026-03-21T11:42:26Z score=0.9075 method=SEAD details=MAD!:w=0.25,s=0.85 RRCF-fast!:w=0.18,s=0.96 RRCF-mid!:w=0.18,s=0.96 RRCF-slow!:w=0.18,s=0.96 COPOD!:w=0.20,s=0.85 +2026/03/21 11:42:29 ── Pipeline Health ────────────────────────────── +2026/03/21 11:42:29 [log_collector] {"stage_name":"log_collector","events_processed":2459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":491.8,"last_update":"2026-03-21T11:42:24.068616651Z"} +2026/03/21 11:42:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":282.8,"last_update":"2026-03-21T11:42:24.068814761Z"} +2026/03/21 11:42:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:42:24.07643777Z"} +2026/03/21 11:42:29 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":13.308648859936822,"throughput_eps":0,"last_update":"2026-03-21T11:42:24.210637315Z"} +2026/03/21 11:42:29 [transform_engine] {"stage_name":"transform_engine","events_processed":47,"events_dropped":0,"avg_latency_ms":1749.8400148674034,"throughput_eps":0,"last_update":"2026-03-21T11:42:26.286545807Z"} +2026/03/21 11:42:29 ───────────────────────────────────────────────── +2026/03/21 11:42:34 ── Pipeline Health ────────────────────────────── +2026/03/21 11:42:34 [transform_engine] {"stage_name":"transform_engine","events_processed":47,"events_dropped":0,"avg_latency_ms":1749.8400148674034,"throughput_eps":0,"last_update":"2026-03-21T11:42:29.211403011Z"} +2026/03/21 11:42:34 [log_collector] {"stage_name":"log_collector","events_processed":2459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":491.8,"last_update":"2026-03-21T11:42:29.068431226Z"} +2026/03/21 11:42:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":283.8,"last_update":"2026-03-21T11:42:29.068790073Z"} +2026/03/21 11:42:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":570,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:42:29.074379227Z"} +2026/03/21 11:42:34 [detection_layer] {"stage_name":"detection_layer","events_processed":47,"events_dropped":0,"avg_latency_ms":12.247282087949458,"throughput_eps":0,"last_update":"2026-03-21T11:42:29.211445773Z"} +2026/03/21 11:42:34 ───────────────────────────────────────────────── +2026/03/21 11:42:39 ── Pipeline Health ────────────────────────────── +2026/03/21 11:42:39 [detection_layer] {"stage_name":"detection_layer","events_processed":47,"events_dropped":0,"avg_latency_ms":12.247282087949458,"throughput_eps":0,"last_update":"2026-03-21T11:42:34.210739046Z"} +2026/03/21 11:42:39 [transform_engine] {"stage_name":"transform_engine","events_processed":47,"events_dropped":0,"avg_latency_ms":1749.8400148674034,"throughput_eps":0,"last_update":"2026-03-21T11:42:34.209638038Z"} +2026/03/21 11:42:39 [log_collector] {"stage_name":"log_collector","events_processed":2459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":491.8,"last_update":"2026-03-21T11:42:34.068749712Z"} +2026/03/21 11:42:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":284.8,"last_update":"2026-03-21T11:42:34.068690118Z"} +2026/03/21 11:42:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":572,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:42:34.076496328Z"} +2026/03/21 11:42:39 ───────────────────────────────────────────────── +2026/03/21 11:42:44 ── Pipeline Health ────────────────────────────── +2026/03/21 11:42:44 [log_collector] {"stage_name":"log_collector","events_processed":2459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":491.8,"last_update":"2026-03-21T11:42:39.068560093Z"} +2026/03/21 11:42:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":285.8,"last_update":"2026-03-21T11:42:39.068893422Z"} +2026/03/21 11:42:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:42:39.075208506Z"} +2026/03/21 11:42:44 [detection_layer] {"stage_name":"detection_layer","events_processed":47,"events_dropped":0,"avg_latency_ms":12.247282087949458,"throughput_eps":0,"last_update":"2026-03-21T11:42:39.210444456Z"} +2026/03/21 11:42:44 [transform_engine] {"stage_name":"transform_engine","events_processed":47,"events_dropped":0,"avg_latency_ms":1749.8400148674034,"throughput_eps":0,"last_update":"2026-03-21T11:42:39.210421873Z"} +2026/03/21 11:42:44 ───────────────────────────────────────────────── +2026/03/21 11:42:49 ── Pipeline Health ────────────────────────────── +2026/03/21 11:42:49 [log_collector] {"stage_name":"log_collector","events_processed":2459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":491.8,"last_update":"2026-03-21T11:42:44.06821287Z"} +2026/03/21 11:42:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":286.8,"last_update":"2026-03-21T11:42:44.06818649Z"} +2026/03/21 11:42:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":576,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:42:44.076595905Z"} +2026/03/21 11:42:49 [detection_layer] {"stage_name":"detection_layer","events_processed":47,"events_dropped":0,"avg_latency_ms":12.247282087949458,"throughput_eps":0,"last_update":"2026-03-21T11:42:44.21086295Z"} +2026/03/21 11:42:49 [transform_engine] {"stage_name":"transform_engine","events_processed":47,"events_dropped":0,"avg_latency_ms":1749.8400148674034,"throughput_eps":0,"last_update":"2026-03-21T11:42:44.209743116Z"} +2026/03/21 11:42:49 ───────────────────────────────────────────────── +2026/03/21 11:42:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:42:54 [log_collector] {"stage_name":"log_collector","events_processed":2462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":492.4,"last_update":"2026-03-21T11:42:49.068411592Z"} +2026/03/21 11:42:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":287.8,"last_update":"2026-03-21T11:42:49.068688623Z"} +2026/03/21 11:42:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:42:49.075294032Z"} +2026/03/21 11:42:54 [detection_layer] {"stage_name":"detection_layer","events_processed":47,"events_dropped":0,"avg_latency_ms":12.247282087949458,"throughput_eps":0,"last_update":"2026-03-21T11:42:49.211449965Z"} +2026/03/21 11:42:54 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":1468.0695622939227,"throughput_eps":0,"last_update":"2026-03-21T11:42:49.551535188Z"} +2026/03/21 11:42:54 ───────────────────────────────────────────────── +2026/03/21 11:42:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:42:59 [log_collector] {"stage_name":"log_collector","events_processed":2470,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":494,"last_update":"2026-03-21T11:42:54.068280789Z"} +2026/03/21 11:42:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1443,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":288.6,"last_update":"2026-03-21T11:42:54.068249008Z"} +2026/03/21 11:42:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":580,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:42:54.07786269Z"} +2026/03/21 11:42:59 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":11.420870270359567,"throughput_eps":0,"last_update":"2026-03-21T11:42:54.21019038Z"} +2026/03/21 11:42:59 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":1468.0695622939227,"throughput_eps":0,"last_update":"2026-03-21T11:42:54.210235537Z"} +2026/03/21 11:42:59 ───────────────────────────────────────────────── +2026/03/21 11:43:04 ── Pipeline Health ────────────────────────────── +2026/03/21 11:43:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:42:59.082872409Z"} +2026/03/21 11:43:04 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":11.420870270359567,"throughput_eps":0,"last_update":"2026-03-21T11:42:59.210381621Z"} +2026/03/21 11:43:04 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":1468.0695622939227,"throughput_eps":0,"last_update":"2026-03-21T11:42:59.210393454Z"} +2026/03/21 11:43:04 [log_collector] {"stage_name":"log_collector","events_processed":2602,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":520.4,"last_update":"2026-03-21T11:42:59.068724653Z"} +2026/03/21 11:43:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":289.8,"last_update":"2026-03-21T11:42:59.068715957Z"} +2026/03/21 11:43:04 ───────────────────────────────────────────────── +2026/03/21 11:43:09 ── Pipeline Health ────────────────────────────── +2026/03/21 11:43:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:43:04.077503377Z"} +2026/03/21 11:43:09 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":11.420870270359567,"throughput_eps":0,"last_update":"2026-03-21T11:43:04.21012439Z"} +2026/03/21 11:43:09 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":1468.0695622939227,"throughput_eps":0,"last_update":"2026-03-21T11:43:04.210110753Z"} +2026/03/21 11:43:09 [log_collector] {"stage_name":"log_collector","events_processed":2783,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":556.6,"last_update":"2026-03-21T11:43:04.068909808Z"} +2026/03/21 11:43:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":290.8,"last_update":"2026-03-21T11:43:04.069256292Z"} +2026/03/21 11:43:09 ───────────────────────────────────────────────── +2026/03/21 11:43:14 ── Pipeline Health ────────────────────────────── +2026/03/21 11:43:14 [log_collector] {"stage_name":"log_collector","events_processed":2825,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":565,"last_update":"2026-03-21T11:43:09.068392647Z"} +2026/03/21 11:43:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":291.8,"last_update":"2026-03-21T11:43:09.068705396Z"} +2026/03/21 11:43:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":586,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:43:09.077884956Z"} +2026/03/21 11:43:14 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":11.420870270359567,"throughput_eps":0,"last_update":"2026-03-21T11:43:09.210230743Z"} +2026/03/21 11:43:14 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":1468.0695622939227,"throughput_eps":0,"last_update":"2026-03-21T11:43:09.210122575Z"} +2026/03/21 11:43:14 ───────────────────────────────────────────────── +Saved state: 11 clusters, 2826 messages, reason: none +2026/03/21 11:43:19 ── Pipeline Health ────────────────────────────── +2026/03/21 11:43:19 [log_collector] {"stage_name":"log_collector","events_processed":2825,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":565,"last_update":"2026-03-21T11:43:14.068141102Z"} +2026/03/21 11:43:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":292.8,"last_update":"2026-03-21T11:43:14.068711906Z"} +2026/03/21 11:43:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":588,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:43:14.077623042Z"} +2026/03/21 11:43:19 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":11.420870270359567,"throughput_eps":0,"last_update":"2026-03-21T11:43:14.209855401Z"} +2026/03/21 11:43:19 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":1468.0695622939227,"throughput_eps":0,"last_update":"2026-03-21T11:43:14.209790938Z"} +2026/03/21 11:43:19 ───────────────────────────────────────────────── +2026/03/21 11:43:24 ── Pipeline Health ────────────────────────────── +2026/03/21 11:43:24 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":1424.0680974351383,"throughput_eps":0,"last_update":"2026-03-21T11:43:20.458069363Z"} +2026/03/21 11:43:24 [log_collector] {"stage_name":"log_collector","events_processed":2828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":565.6,"last_update":"2026-03-21T11:43:19.068556722Z"} +2026/03/21 11:43:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":293.8,"last_update":"2026-03-21T11:43:19.068778998Z"} +2026/03/21 11:43:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:43:19.075768052Z"} +2026/03/21 11:43:24 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":11.420870270359567,"throughput_eps":0,"last_update":"2026-03-21T11:43:19.210031281Z"} +2026/03/21 11:43:24 ───────────────────────────────────────────────── +2026/03/21 11:43:29 ── Pipeline Health ────────────────────────────── +2026/03/21 11:43:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":592,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:43:24.076224656Z"} +2026/03/21 11:43:29 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":11.085190216287653,"throughput_eps":0,"last_update":"2026-03-21T11:43:24.210444532Z"} +2026/03/21 11:43:29 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":1424.0680974351383,"throughput_eps":0,"last_update":"2026-03-21T11:43:24.210453358Z"} +2026/03/21 11:43:29 [log_collector] {"stage_name":"log_collector","events_processed":2839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":567.8,"last_update":"2026-03-21T11:43:29.06836494Z"} +2026/03/21 11:43:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":294.8,"last_update":"2026-03-21T11:43:24.068764979Z"} +2026/03/21 11:43:29 ───────────────────────────────────────────────── +2026/03/21 11:43:34 ── Pipeline Health ────────────────────────────── +2026/03/21 11:43:34 [log_collector] {"stage_name":"log_collector","events_processed":2839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":567.8,"last_update":"2026-03-21T11:43:29.06836494Z"} +2026/03/21 11:43:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":295.8,"last_update":"2026-03-21T11:43:29.068843276Z"} +2026/03/21 11:43:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:43:29.077990784Z"} +2026/03/21 11:43:34 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":11.085190216287653,"throughput_eps":0,"last_update":"2026-03-21T11:43:29.210409851Z"} +2026/03/21 11:43:34 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":1424.0680974351383,"throughput_eps":0,"last_update":"2026-03-21T11:43:29.210421955Z"} +2026/03/21 11:43:34 ───────────────────────────────────────────────── +2026/03/21 11:43:39 ── Pipeline Health ────────────────────────────── +2026/03/21 11:43:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":296.8,"last_update":"2026-03-21T11:43:34.069273212Z"} +2026/03/21 11:43:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:43:34.078335277Z"} +2026/03/21 11:43:39 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":11.085190216287653,"throughput_eps":0,"last_update":"2026-03-21T11:43:34.21063669Z"} +2026/03/21 11:43:39 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":1424.0680974351383,"throughput_eps":0,"last_update":"2026-03-21T11:43:34.210645236Z"} +2026/03/21 11:43:39 [log_collector] {"stage_name":"log_collector","events_processed":2853,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":570.6,"last_update":"2026-03-21T11:43:34.06873452Z"} +2026/03/21 11:43:39 ───────────────────────────────────────────────── +2026/03/21 11:43:44 ── Pipeline Health ────────────────────────────── +2026/03/21 11:43:44 [log_collector] {"stage_name":"log_collector","events_processed":2855,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":571,"last_update":"2026-03-21T11:43:39.069068109Z"} +2026/03/21 11:43:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":297.8,"last_update":"2026-03-21T11:43:39.069671263Z"} +2026/03/21 11:43:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:43:39.080082653Z"} +2026/03/21 11:43:44 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":11.085190216287653,"throughput_eps":0,"last_update":"2026-03-21T11:43:39.210435284Z"} +2026/03/21 11:43:44 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":1424.0680974351383,"throughput_eps":0,"last_update":"2026-03-21T11:43:39.210366121Z"} +2026/03/21 11:43:44 ───────────────────────────────────────────────── +2026/03/21 11:43:49 ── Pipeline Health ────────────────────────────── +2026/03/21 11:43:49 [log_collector] {"stage_name":"log_collector","events_processed":2855,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":571,"last_update":"2026-03-21T11:43:44.068845471Z"} +2026/03/21 11:43:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":298.8,"last_update":"2026-03-21T11:43:44.069127901Z"} +2026/03/21 11:43:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:43:44.078430918Z"} +2026/03/21 11:43:49 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":11.085190216287653,"throughput_eps":0,"last_update":"2026-03-21T11:43:44.210761146Z"} +2026/03/21 11:43:49 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":1424.0680974351383,"throughput_eps":0,"last_update":"2026-03-21T11:43:44.209659886Z"} +2026/03/21 11:43:49 ───────────────────────────────────────────────── +2026/03/21 11:43:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:43:54 [log_collector] {"stage_name":"log_collector","events_processed":2855,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":571,"last_update":"2026-03-21T11:43:49.068731034Z"} +2026/03/21 11:43:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":299.8,"last_update":"2026-03-21T11:43:49.069461964Z"} +2026/03/21 11:43:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":602,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:43:49.077582467Z"} +2026/03/21 11:43:54 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":11.085190216287653,"throughput_eps":0,"last_update":"2026-03-21T11:43:49.2108344Z"} +2026/03/21 11:43:54 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":1161.1004211481106,"throughput_eps":0,"last_update":"2026-03-21T11:43:49.318949861Z"} +2026/03/21 11:43:54 ───────────────────────────────────────────────── +2026/03/21 11:43:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:43:59 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":11.421730773030124,"throughput_eps":0,"last_update":"2026-03-21T11:43:54.210121714Z"} +2026/03/21 11:43:59 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":1161.1004211481106,"throughput_eps":0,"last_update":"2026-03-21T11:43:54.210133196Z"} +2026/03/21 11:43:59 [log_collector] {"stage_name":"log_collector","events_processed":2855,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":571,"last_update":"2026-03-21T11:43:54.068782412Z"} +2026/03/21 11:43:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":300.8,"last_update":"2026-03-21T11:43:54.069148463Z"} +2026/03/21 11:43:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:43:54.078909678Z"} +2026/03/21 11:43:59 ───────────────────────────────────────────────── +2026/03/21 11:44:04 ── Pipeline Health ────────────────────────────── +2026/03/21 11:44:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":301.6,"last_update":"2026-03-21T11:43:59.068036639Z"} +2026/03/21 11:44:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:43:59.077717451Z"} +2026/03/21 11:44:04 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":11.421730773030124,"throughput_eps":0,"last_update":"2026-03-21T11:43:59.210107233Z"} +2026/03/21 11:44:04 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":1161.1004211481106,"throughput_eps":0,"last_update":"2026-03-21T11:43:59.210137811Z"} +2026/03/21 11:44:04 [log_collector] {"stage_name":"log_collector","events_processed":2855,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":571,"last_update":"2026-03-21T11:43:59.068068881Z"} +2026/03/21 11:44:04 ───────────────────────────────────────────────── +2026/03/21 11:44:09 ── Pipeline Health ────────────────────────────── +2026/03/21 11:44:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":302.8,"last_update":"2026-03-21T11:44:04.069114596Z"} +2026/03/21 11:44:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:44:04.079988962Z"} +2026/03/21 11:44:09 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":11.421730773030124,"throughput_eps":0,"last_update":"2026-03-21T11:44:04.210301897Z"} +2026/03/21 11:44:09 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":1161.1004211481106,"throughput_eps":0,"last_update":"2026-03-21T11:44:04.210407629Z"} +2026/03/21 11:44:09 [log_collector] {"stage_name":"log_collector","events_processed":2855,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":571,"last_update":"2026-03-21T11:44:04.068977854Z"} +2026/03/21 11:44:09 ───────────────────────────────────────────────── +2026/03/21 11:44:14 ── Pipeline Health ────────────────────────────── +2026/03/21 11:44:14 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":1161.1004211481106,"throughput_eps":0,"last_update":"2026-03-21T11:44:09.210441913Z"} +2026/03/21 11:44:14 [log_collector] {"stage_name":"log_collector","events_processed":2855,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":571,"last_update":"2026-03-21T11:44:09.068956761Z"} +2026/03/21 11:44:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":303.8,"last_update":"2026-03-21T11:44:09.069337771Z"} +2026/03/21 11:44:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:44:09.078207759Z"} +2026/03/21 11:44:14 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":11.421730773030124,"throughput_eps":0,"last_update":"2026-03-21T11:44:09.210546464Z"} +2026/03/21 11:44:14 ───────────────────────────────────────────────── +2026/03/21 11:44:19 ── Pipeline Health ────────────────────────────── +2026/03/21 11:44:19 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":1161.1004211481106,"throughput_eps":0,"last_update":"2026-03-21T11:44:14.209969984Z"} +2026/03/21 11:44:19 [log_collector] {"stage_name":"log_collector","events_processed":2855,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":571,"last_update":"2026-03-21T11:44:14.06832691Z"} +2026/03/21 11:44:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":304.8,"last_update":"2026-03-21T11:44:14.069191485Z"} +2026/03/21 11:44:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:44:14.077604759Z"} +2026/03/21 11:44:19 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":11.421730773030124,"throughput_eps":0,"last_update":"2026-03-21T11:44:14.210071699Z"} +2026/03/21 11:44:19 ───────────────────────────────────────────────── +2026/03/21 11:44:24 ── Pipeline Health ────────────────────────────── +2026/03/21 11:44:24 [log_collector] {"stage_name":"log_collector","events_processed":2855,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":571,"last_update":"2026-03-21T11:44:19.069075845Z"} +2026/03/21 11:44:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":305.8,"last_update":"2026-03-21T11:44:19.069233067Z"} +2026/03/21 11:44:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:44:19.078214017Z"} +2026/03/21 11:44:24 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":11.421730773030124,"throughput_eps":0,"last_update":"2026-03-21T11:44:19.210403657Z"} +2026/03/21 11:44:24 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":942.0482261184885,"throughput_eps":0,"last_update":"2026-03-21T11:44:19.276266066Z"} +2026/03/21 11:44:24 ───────────────────────────────────────────────── +2026/03/21 11:44:29 ── Pipeline Health ────────────────────────────── +2026/03/21 11:44:29 [log_collector] {"stage_name":"log_collector","events_processed":2855,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":571,"last_update":"2026-03-21T11:44:24.068536018Z"} +2026/03/21 11:44:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":306.8,"last_update":"2026-03-21T11:44:24.069000769Z"} +2026/03/21 11:44:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:44:24.077160958Z"} +2026/03/21 11:44:29 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":12.2058392184241,"throughput_eps":0,"last_update":"2026-03-21T11:44:24.210396821Z"} +2026/03/21 11:44:29 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":942.0482261184885,"throughput_eps":0,"last_update":"2026-03-21T11:44:24.210500089Z"} +2026/03/21 11:44:29 ───────────────────────────────────────────────── +2026/03/21 11:44:34 ── Pipeline Health ────────────────────────────── +2026/03/21 11:44:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":307.8,"last_update":"2026-03-21T11:44:29.069195093Z"} +2026/03/21 11:44:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:44:29.078884551Z"} +2026/03/21 11:44:34 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":12.2058392184241,"throughput_eps":0,"last_update":"2026-03-21T11:44:29.210323473Z"} +2026/03/21 11:44:34 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":942.0482261184885,"throughput_eps":0,"last_update":"2026-03-21T11:44:29.210377768Z"} +2026/03/21 11:44:34 [log_collector] {"stage_name":"log_collector","events_processed":2855,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":571,"last_update":"2026-03-21T11:44:29.068745122Z"} +2026/03/21 11:44:34 ───────────────────────────────────────────────── +2026/03/21 11:44:39 ── Pipeline Health ────────────────────────────── +2026/03/21 11:44:39 [log_collector] {"stage_name":"log_collector","events_processed":2855,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":571,"last_update":"2026-03-21T11:44:34.068497347Z"} +2026/03/21 11:44:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1543,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":308.6,"last_update":"2026-03-21T11:44:34.068505523Z"} +2026/03/21 11:44:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":620,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:44:34.078322885Z"} +2026/03/21 11:44:39 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":12.2058392184241,"throughput_eps":0,"last_update":"2026-03-21T11:44:34.210607447Z"} +2026/03/21 11:44:39 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":942.0482261184885,"throughput_eps":0,"last_update":"2026-03-21T11:44:34.210639909Z"} +2026/03/21 11:44:39 ───────────────────────────────────────────────── +Saved state: 11 clusters, 2856 messages, reason: none +2026/03/21 11:44:44 ── Pipeline Health ────────────────────────────── +2026/03/21 11:44:44 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":12.2058392184241,"throughput_eps":0,"last_update":"2026-03-21T11:44:39.210296015Z"} +2026/03/21 11:44:44 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":942.0482261184885,"throughput_eps":0,"last_update":"2026-03-21T11:44:39.210336613Z"} +2026/03/21 11:44:44 [log_collector] {"stage_name":"log_collector","events_processed":2855,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":571,"last_update":"2026-03-21T11:44:39.068773651Z"} +2026/03/21 11:44:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":309.8,"last_update":"2026-03-21T11:44:39.069512867Z"} +2026/03/21 11:44:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":622,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:44:39.077908527Z"} +2026/03/21 11:44:44 ───────────────────────────────────────────────── +2026/03/21 11:44:49 ── Pipeline Health ────────────────────────────── +2026/03/21 11:44:49 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":12.2058392184241,"throughput_eps":0,"last_update":"2026-03-21T11:44:44.210434902Z"} +2026/03/21 11:44:49 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":942.0482261184885,"throughput_eps":0,"last_update":"2026-03-21T11:44:44.210463688Z"} +2026/03/21 11:44:49 [log_collector] {"stage_name":"log_collector","events_processed":2858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":571.6,"last_update":"2026-03-21T11:44:44.068408754Z"} +2026/03/21 11:44:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":310.8,"last_update":"2026-03-21T11:44:44.068859798Z"} +2026/03/21 11:44:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:44:44.074214934Z"} +2026/03/21 11:44:49 ───────────────────────────────────────────────── +2026/03/21 11:44:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:44:54 [log_collector] {"stage_name":"log_collector","events_processed":2869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":573.8,"last_update":"2026-03-21T11:44:49.068751237Z"} +2026/03/21 11:44:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":311.8,"last_update":"2026-03-21T11:44:49.069257616Z"} +2026/03/21 11:44:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:44:49.077695597Z"} +2026/03/21 11:44:54 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":12.2058392184241,"throughput_eps":0,"last_update":"2026-03-21T11:44:49.210650132Z"} +2026/03/21 11:44:54 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":778.3274068947908,"throughput_eps":0,"last_update":"2026-03-21T11:44:49.334066019Z"} +2026/03/21 11:44:54 ───────────────────────────────────────────────── +2026/03/21 11:44:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:44:59 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":778.3274068947908,"throughput_eps":0,"last_update":"2026-03-21T11:44:54.210534052Z"} +2026/03/21 11:44:59 [log_collector] {"stage_name":"log_collector","events_processed":2869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":573.8,"last_update":"2026-03-21T11:44:54.068061869Z"} +2026/03/21 11:44:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":312.8,"last_update":"2026-03-21T11:44:54.068366914Z"} +2026/03/21 11:44:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:44:54.077250076Z"} +2026/03/21 11:44:59 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":12.40756097473928,"throughput_eps":0,"last_update":"2026-03-21T11:44:54.210503484Z"} +2026/03/21 11:44:59 ───────────────────────────────────────────────── +2026/03/21 11:45:04 ── Pipeline Health ────────────────────────────── +2026/03/21 11:45:04 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":778.3274068947908,"throughput_eps":0,"last_update":"2026-03-21T11:44:59.209665587Z"} +2026/03/21 11:45:04 [log_collector] {"stage_name":"log_collector","events_processed":2869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":573.8,"last_update":"2026-03-21T11:44:59.068775744Z"} +2026/03/21 11:45:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":313.8,"last_update":"2026-03-21T11:44:59.069468421Z"} +2026/03/21 11:45:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:44:59.079421974Z"} +2026/03/21 11:45:04 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":12.40756097473928,"throughput_eps":0,"last_update":"2026-03-21T11:44:59.209915837Z"} +2026/03/21 11:45:04 ───────────────────────────────────────────────── +2026/03/21 11:45:09 ── Pipeline Health ────────────────────────────── +2026/03/21 11:45:09 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":778.3274068947908,"throughput_eps":0,"last_update":"2026-03-21T11:45:04.210116486Z"} +2026/03/21 11:45:09 [log_collector] {"stage_name":"log_collector","events_processed":2869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":573.8,"last_update":"2026-03-21T11:45:04.068616103Z"} +2026/03/21 11:45:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":314.8,"last_update":"2026-03-21T11:45:04.068975151Z"} +2026/03/21 11:45:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":632,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:45:04.077826242Z"} +2026/03/21 11:45:09 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":12.40756097473928,"throughput_eps":0,"last_update":"2026-03-21T11:45:04.210075618Z"} +2026/03/21 11:45:09 ───────────────────────────────────────────────── +2026/03/21 11:45:14 ── Pipeline Health ────────────────────────────── +2026/03/21 11:45:14 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":12.40756097473928,"throughput_eps":0,"last_update":"2026-03-21T11:45:09.210386253Z"} +2026/03/21 11:45:14 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":778.3274068947908,"throughput_eps":0,"last_update":"2026-03-21T11:45:09.210404328Z"} +2026/03/21 11:45:14 [log_collector] {"stage_name":"log_collector","events_processed":2869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":573.8,"last_update":"2026-03-21T11:45:09.068675066Z"} +2026/03/21 11:45:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":315.8,"last_update":"2026-03-21T11:45:09.068978678Z"} +2026/03/21 11:45:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:45:09.077196286Z"} +2026/03/21 11:45:14 ───────────────────────────────────────────────── +2026/03/21 11:45:19 ── Pipeline Health ────────────────────────────── +2026/03/21 11:45:19 [log_collector] {"stage_name":"log_collector","events_processed":2869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":573.8,"last_update":"2026-03-21T11:45:14.068104449Z"} +2026/03/21 11:45:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":316.8,"last_update":"2026-03-21T11:45:14.068512951Z"} +2026/03/21 11:45:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:45:14.07782202Z"} +2026/03/21 11:45:19 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":12.40756097473928,"throughput_eps":0,"last_update":"2026-03-21T11:45:14.210050125Z"} +2026/03/21 11:45:19 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":778.3274068947908,"throughput_eps":0,"last_update":"2026-03-21T11:45:14.210092666Z"} +2026/03/21 11:45:19 ───────────────────────────────────────────────── +2026/03/21 11:45:24 ── Pipeline Health ────────────────────────────── +2026/03/21 11:45:24 [log_collector] {"stage_name":"log_collector","events_processed":2869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":573.8,"last_update":"2026-03-21T11:45:24.068433567Z"} +2026/03/21 11:45:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":317.8,"last_update":"2026-03-21T11:45:19.068397442Z"} +2026/03/21 11:45:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:45:19.077155024Z"} +2026/03/21 11:45:24 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":12.40756097473928,"throughput_eps":0,"last_update":"2026-03-21T11:45:19.210381341Z"} +2026/03/21 11:45:24 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":637.3251049158326,"throughput_eps":0,"last_update":"2026-03-21T11:45:19.283709841Z"} +2026/03/21 11:45:24 ───────────────────────────────────────────────── +2026/03/21 11:45:29 ── Pipeline Health ────────────────────────────── +2026/03/21 11:45:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":318.8,"last_update":"2026-03-21T11:45:24.069122406Z"} +2026/03/21 11:45:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":640,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:45:24.078030357Z"} +2026/03/21 11:45:29 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":13.075749179791424,"throughput_eps":0,"last_update":"2026-03-21T11:45:24.210279433Z"} +2026/03/21 11:45:29 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":637.3251049158326,"throughput_eps":0,"last_update":"2026-03-21T11:45:24.210255837Z"} +2026/03/21 11:45:29 [log_collector] {"stage_name":"log_collector","events_processed":2869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":573.8,"last_update":"2026-03-21T11:45:24.068433567Z"} +2026/03/21 11:45:29 ───────────────────────────────────────────────── +2026/03/21 11:45:34 ── Pipeline Health ────────────────────────────── +2026/03/21 11:45:34 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":637.3251049158326,"throughput_eps":0,"last_update":"2026-03-21T11:45:29.210688029Z"} +2026/03/21 11:45:34 [log_collector] {"stage_name":"log_collector","events_processed":2869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":573.8,"last_update":"2026-03-21T11:45:29.068656948Z"} +2026/03/21 11:45:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":319.8,"last_update":"2026-03-21T11:45:29.069117149Z"} +2026/03/21 11:45:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:45:29.078313272Z"} +2026/03/21 11:45:34 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":13.075749179791424,"throughput_eps":0,"last_update":"2026-03-21T11:45:29.210805875Z"} +2026/03/21 11:45:34 ───────────────────────────────────────────────── +2026/03/21 11:45:39 ── Pipeline Health ────────────────────────────── +2026/03/21 11:45:39 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":637.3251049158326,"throughput_eps":0,"last_update":"2026-03-21T11:45:34.210519664Z"} +2026/03/21 11:45:39 [log_collector] {"stage_name":"log_collector","events_processed":2869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":573.8,"last_update":"2026-03-21T11:45:34.068081274Z"} +2026/03/21 11:45:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":320.8,"last_update":"2026-03-21T11:45:34.068649272Z"} +2026/03/21 11:45:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:45:34.077188487Z"} +2026/03/21 11:45:39 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":13.075749179791424,"throughput_eps":0,"last_update":"2026-03-21T11:45:34.210589859Z"} +2026/03/21 11:45:39 ───────────────────────────────────────────────── +2026/03/21 11:45:44 ── Pipeline Health ────────────────────────────── +2026/03/21 11:45:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":646,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:45:39.07733532Z"} +2026/03/21 11:45:44 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":13.075749179791424,"throughput_eps":0,"last_update":"2026-03-21T11:45:39.210607875Z"} +2026/03/21 11:45:44 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":637.3251049158326,"throughput_eps":0,"last_update":"2026-03-21T11:45:39.20974345Z"} +2026/03/21 11:45:44 [log_collector] {"stage_name":"log_collector","events_processed":2869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":573.8,"last_update":"2026-03-21T11:45:39.068116514Z"} +2026/03/21 11:45:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":321.8,"last_update":"2026-03-21T11:45:39.068925823Z"} +2026/03/21 11:45:44 ───────────────────────────────────────────────── +2026/03/21 11:45:49 ── Pipeline Health ────────────────────────────── +2026/03/21 11:45:49 [log_collector] {"stage_name":"log_collector","events_processed":2869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":573.8,"last_update":"2026-03-21T11:45:44.068709679Z"} +2026/03/21 11:45:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":322.8,"last_update":"2026-03-21T11:45:44.06931087Z"} +2026/03/21 11:45:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:45:44.07802491Z"} +2026/03/21 11:45:49 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":13.075749179791424,"throughput_eps":0,"last_update":"2026-03-21T11:45:44.210272061Z"} +2026/03/21 11:45:49 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":637.3251049158326,"throughput_eps":0,"last_update":"2026-03-21T11:45:44.210284034Z"} +2026/03/21 11:45:49 ───────────────────────────────────────────────── +Saved state: 11 clusters, 2870 messages, reason: none +2026/03/21 11:45:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:45:54 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":13.075749179791424,"throughput_eps":0,"last_update":"2026-03-21T11:45:49.210308004Z"} +2026/03/21 11:45:54 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":523.5950135326661,"throughput_eps":0,"last_update":"2026-03-21T11:45:49.278912837Z"} +2026/03/21 11:45:54 [log_collector] {"stage_name":"log_collector","events_processed":2869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":573.8,"last_update":"2026-03-21T11:45:49.068103982Z"} +2026/03/21 11:45:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":323.8,"last_update":"2026-03-21T11:45:49.068620883Z"} +2026/03/21 11:45:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":650,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:45:49.077850028Z"} +2026/03/21 11:45:54 ───────────────────────────────────────────────── +2026/03/21 11:45:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:45:59 [log_collector] {"stage_name":"log_collector","events_processed":2874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":574.8,"last_update":"2026-03-21T11:45:54.068956324Z"} +2026/03/21 11:45:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":324.8,"last_update":"2026-03-21T11:45:54.068848408Z"} +2026/03/21 11:45:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:45:54.075112344Z"} +2026/03/21 11:45:59 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":13.69467114383314,"throughput_eps":0,"last_update":"2026-03-21T11:45:54.210364252Z"} +2026/03/21 11:45:59 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":523.5950135326661,"throughput_eps":0,"last_update":"2026-03-21T11:45:54.210267537Z"} +2026/03/21 11:45:59 ───────────────────────────────────────────────── +2026/03/21 11:46:04 ── Pipeline Health ────────────────────────────── +2026/03/21 11:46:04 [log_collector] {"stage_name":"log_collector","events_processed":2874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":574.8,"last_update":"2026-03-21T11:45:59.06893099Z"} +2026/03/21 11:46:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":325.8,"last_update":"2026-03-21T11:45:59.068925039Z"} +2026/03/21 11:46:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:45:59.075372638Z"} +2026/03/21 11:46:04 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":13.69467114383314,"throughput_eps":0,"last_update":"2026-03-21T11:45:59.210617792Z"} +2026/03/21 11:46:04 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":523.5950135326661,"throughput_eps":0,"last_update":"2026-03-21T11:45:59.210647459Z"} +2026/03/21 11:46:04 ───────────────────────────────────────────────── +2026/03/21 11:46:09 ── Pipeline Health ────────────────────────────── +2026/03/21 11:46:09 [log_collector] {"stage_name":"log_collector","events_processed":2874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":574.8,"last_update":"2026-03-21T11:46:04.068522697Z"} +2026/03/21 11:46:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":326.8,"last_update":"2026-03-21T11:46:04.06873837Z"} +2026/03/21 11:46:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:46:04.076029844Z"} +2026/03/21 11:46:09 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":13.69467114383314,"throughput_eps":0,"last_update":"2026-03-21T11:46:04.210314339Z"} +2026/03/21 11:46:09 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":523.5950135326661,"throughput_eps":0,"last_update":"2026-03-21T11:46:04.210371198Z"} +2026/03/21 11:46:09 ───────────────────────────────────────────────── +2026/03/21 11:46:14 ── Pipeline Health ────────────────────────────── +2026/03/21 11:46:14 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":523.5950135326661,"throughput_eps":0,"last_update":"2026-03-21T11:46:09.210494568Z"} +2026/03/21 11:46:14 [log_collector] {"stage_name":"log_collector","events_processed":2874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":574.8,"last_update":"2026-03-21T11:46:09.068660384Z"} +2026/03/21 11:46:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":327.8,"last_update":"2026-03-21T11:46:09.069119834Z"} +2026/03/21 11:46:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:46:09.077274332Z"} +2026/03/21 11:46:14 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":13.69467114383314,"throughput_eps":0,"last_update":"2026-03-21T11:46:09.210518915Z"} +2026/03/21 11:46:14 ───────────────────────────────────────────────── +2026/03/21 11:46:19 ── Pipeline Health ────────────────────────────── +2026/03/21 11:46:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":328.8,"last_update":"2026-03-21T11:46:14.06815811Z"} +2026/03/21 11:46:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":660,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:46:14.075716867Z"} +2026/03/21 11:46:19 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":13.69467114383314,"throughput_eps":0,"last_update":"2026-03-21T11:46:14.209997735Z"} +2026/03/21 11:46:19 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":523.5950135326661,"throughput_eps":0,"last_update":"2026-03-21T11:46:14.209979119Z"} +2026/03/21 11:46:19 [log_collector] {"stage_name":"log_collector","events_processed":2874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":574.8,"last_update":"2026-03-21T11:46:14.068074971Z"} +2026/03/21 11:46:19 ───────────────────────────────────────────────── +2026/03/21 11:46:24 ── Pipeline Health ────────────────────────────── +2026/03/21 11:46:24 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":13.69467114383314,"throughput_eps":0,"last_update":"2026-03-21T11:46:19.20993042Z"} +2026/03/21 11:46:24 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":794.7489804261329,"throughput_eps":0,"last_update":"2026-03-21T11:46:21.089336737Z"} +2026/03/21 11:46:24 [log_collector] {"stage_name":"log_collector","events_processed":2874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":574.8,"last_update":"2026-03-21T11:46:19.068927327Z"} +2026/03/21 11:46:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":329.8,"last_update":"2026-03-21T11:46:19.069327032Z"} +2026/03/21 11:46:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":662,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:46:19.074711034Z"} +2026/03/21 11:46:24 ───────────────────────────────────────────────── +2026/03/21 11:46:29 ── Pipeline Health ────────────────────────────── +2026/03/21 11:46:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":330.8,"last_update":"2026-03-21T11:46:24.069145414Z"} +2026/03/21 11:46:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:46:24.075663417Z"} +2026/03/21 11:46:29 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":12.710088915066514,"throughput_eps":0,"last_update":"2026-03-21T11:46:24.210036081Z"} +2026/03/21 11:46:29 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":794.7489804261329,"throughput_eps":0,"last_update":"2026-03-21T11:46:24.210024279Z"} +2026/03/21 11:46:29 [log_collector] {"stage_name":"log_collector","events_processed":2874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":574.8,"last_update":"2026-03-21T11:46:24.068911395Z"} +2026/03/21 11:46:29 ───────────────────────────────────────────────── +2026/03/21 11:46:34 ── Pipeline Health ────────────────────────────── +2026/03/21 11:46:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":331.8,"last_update":"2026-03-21T11:46:29.068720544Z"} +2026/03/21 11:46:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:46:29.080046275Z"} +2026/03/21 11:46:34 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":12.710088915066514,"throughput_eps":0,"last_update":"2026-03-21T11:46:29.210225958Z"} +2026/03/21 11:46:34 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":794.7489804261329,"throughput_eps":0,"last_update":"2026-03-21T11:46:29.21017949Z"} +2026/03/21 11:46:34 [log_collector] {"stage_name":"log_collector","events_processed":2874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":574.8,"last_update":"2026-03-21T11:46:29.068726887Z"} +2026/03/21 11:46:34 ───────────────────────────────────────────────── +2026/03/21 11:46:39 ── Pipeline Health ────────────────────────────── +2026/03/21 11:46:39 [log_collector] {"stage_name":"log_collector","events_processed":2877,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":575.4,"last_update":"2026-03-21T11:46:34.068713578Z"} +2026/03/21 11:46:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":332.8,"last_update":"2026-03-21T11:46:34.068875038Z"} +2026/03/21 11:46:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":668,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:46:34.074843809Z"} +2026/03/21 11:46:39 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":12.710088915066514,"throughput_eps":0,"last_update":"2026-03-21T11:46:34.21023299Z"} +2026/03/21 11:46:39 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":794.7489804261329,"throughput_eps":0,"last_update":"2026-03-21T11:46:34.210298446Z"} +2026/03/21 11:46:39 ───────────────────────────────────────────────── +2026/03/21 11:46:44 ── Pipeline Health ────────────────────────────── +2026/03/21 11:46:44 [log_collector] {"stage_name":"log_collector","events_processed":2885,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":577,"last_update":"2026-03-21T11:46:39.068324775Z"} +2026/03/21 11:46:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":333.8,"last_update":"2026-03-21T11:46:39.068666459Z"} +2026/03/21 11:46:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":670,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:46:39.077621581Z"} +2026/03/21 11:46:44 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":12.710088915066514,"throughput_eps":0,"last_update":"2026-03-21T11:46:39.210001219Z"} +2026/03/21 11:46:44 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":794.7489804261329,"throughput_eps":0,"last_update":"2026-03-21T11:46:39.209852284Z"} +2026/03/21 11:46:44 ───────────────────────────────────────────────── +2026/03/21 11:46:49 ── Pipeline Health ────────────────────────────── +2026/03/21 11:46:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:46:44.078534227Z"} +2026/03/21 11:46:49 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":12.710088915066514,"throughput_eps":0,"last_update":"2026-03-21T11:46:44.210582329Z"} +2026/03/21 11:46:49 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":794.7489804261329,"throughput_eps":0,"last_update":"2026-03-21T11:46:44.210602458Z"} +2026/03/21 11:46:49 [log_collector] {"stage_name":"log_collector","events_processed":2923,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":584.6,"last_update":"2026-03-21T11:46:44.068170578Z"} +2026/03/21 11:46:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":334.8,"last_update":"2026-03-21T11:46:44.068526639Z"} +2026/03/21 11:46:49 ───────────────────────────────────────────────── +2026/03/21 11:46:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:46:54 [log_collector] {"stage_name":"log_collector","events_processed":3235,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":647,"last_update":"2026-03-21T11:46:49.068182873Z"} +2026/03/21 11:46:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":335.8,"last_update":"2026-03-21T11:46:49.068564093Z"} +2026/03/21 11:46:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:46:49.076600585Z"} +2026/03/21 11:46:54 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":12.710088915066514,"throughput_eps":0,"last_update":"2026-03-21T11:46:49.209915143Z"} +2026/03/21 11:46:54 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":659.4684805409063,"throughput_eps":0,"last_update":"2026-03-21T11:46:49.328292715Z"} +2026/03/21 11:46:54 ───────────────────────────────────────────────── +2026/03/21 11:46:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:46:59 [log_collector] {"stage_name":"log_collector","events_processed":3239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":647.8,"last_update":"2026-03-21T11:46:54.068179354Z"} +2026/03/21 11:46:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":336.8,"last_update":"2026-03-21T11:46:54.068551777Z"} +2026/03/21 11:46:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":676,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:46:54.07936149Z"} +2026/03/21 11:46:59 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":12.016888132053213,"throughput_eps":0,"last_update":"2026-03-21T11:46:54.210772813Z"} +2026/03/21 11:46:59 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":659.4684805409063,"throughput_eps":0,"last_update":"2026-03-21T11:46:54.21067185Z"} +2026/03/21 11:46:59 ───────────────────────────────────────────────── +Saved state: 11 clusters, 3240 messages, reason: none +2026/03/21 11:47:04 ── Pipeline Health ────────────────────────────── +2026/03/21 11:47:04 [log_collector] {"stage_name":"log_collector","events_processed":3239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":647.8,"last_update":"2026-03-21T11:46:59.068237768Z"} +2026/03/21 11:47:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":337.8,"last_update":"2026-03-21T11:46:59.068731132Z"} +2026/03/21 11:47:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:46:59.078061813Z"} +2026/03/21 11:47:04 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":12.016888132053213,"throughput_eps":0,"last_update":"2026-03-21T11:46:59.210444657Z"} +2026/03/21 11:47:04 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":659.4684805409063,"throughput_eps":0,"last_update":"2026-03-21T11:46:59.21042023Z"} +2026/03/21 11:47:04 ───────────────────────────────────────────────── +2026/03/21 11:47:09 ── Pipeline Health ────────────────────────────── +2026/03/21 11:47:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":338.8,"last_update":"2026-03-21T11:47:04.068513162Z"} +2026/03/21 11:47:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:47:04.07558705Z"} +2026/03/21 11:47:09 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":12.016888132053213,"throughput_eps":0,"last_update":"2026-03-21T11:47:04.210410959Z"} +2026/03/21 11:47:09 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":659.4684805409063,"throughput_eps":0,"last_update":"2026-03-21T11:47:04.209694387Z"} +2026/03/21 11:47:09 [log_collector] {"stage_name":"log_collector","events_processed":3242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":648.4,"last_update":"2026-03-21T11:47:04.068208138Z"} +2026/03/21 11:47:09 ───────────────────────────────────────────────── +2026/03/21 11:47:14 ── Pipeline Health ────────────────────────────── +2026/03/21 11:47:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:47:09.075645512Z"} +2026/03/21 11:47:14 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":12.016888132053213,"throughput_eps":0,"last_update":"2026-03-21T11:47:09.209974785Z"} +2026/03/21 11:47:14 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":659.4684805409063,"throughput_eps":0,"last_update":"2026-03-21T11:47:09.209962872Z"} +2026/03/21 11:47:14 [log_collector] {"stage_name":"log_collector","events_processed":3242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":648.4,"last_update":"2026-03-21T11:47:09.06880455Z"} +2026/03/21 11:47:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":339.8,"last_update":"2026-03-21T11:47:09.068797366Z"} +2026/03/21 11:47:14 ───────────────────────────────────────────────── +2026/03/21 11:47:19 ── Pipeline Health ────────────────────────────── +2026/03/21 11:47:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":340.8,"last_update":"2026-03-21T11:47:14.069035347Z"} +2026/03/21 11:47:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:47:14.077687207Z"} +2026/03/21 11:47:19 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":12.016888132053213,"throughput_eps":0,"last_update":"2026-03-21T11:47:14.210106661Z"} +2026/03/21 11:47:19 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":659.4684805409063,"throughput_eps":0,"last_update":"2026-03-21T11:47:14.210219217Z"} +2026/03/21 11:47:19 [log_collector] {"stage_name":"log_collector","events_processed":3253,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":650.6,"last_update":"2026-03-21T11:47:14.068732086Z"} +2026/03/21 11:47:19 ───────────────────────────────────────────────── +2026/03/21 11:47:24 ── Pipeline Health ────────────────────────────── +2026/03/21 11:47:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":341.8,"last_update":"2026-03-21T11:47:19.068683342Z"} +2026/03/21 11:47:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:47:19.077226124Z"} +2026/03/21 11:47:24 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":12.016888132053213,"throughput_eps":0,"last_update":"2026-03-21T11:47:19.210558266Z"} +2026/03/21 11:47:24 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":697.3987514327251,"throughput_eps":0,"last_update":"2026-03-21T11:47:20.059567039Z"} +2026/03/21 11:47:24 [log_collector] {"stage_name":"log_collector","events_processed":3253,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":650.6,"last_update":"2026-03-21T11:47:19.068094445Z"} +2026/03/21 11:47:24 ───────────────────────────────────────────────── +2026/03/21 11:47:29 ── Pipeline Health ────────────────────────────── +2026/03/21 11:47:29 [log_collector] {"stage_name":"log_collector","events_processed":3269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":653.8,"last_update":"2026-03-21T11:47:24.06887826Z"} +2026/03/21 11:47:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":342.8,"last_update":"2026-03-21T11:47:24.069312161Z"} +2026/03/21 11:47:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":688,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:47:24.078789512Z"} +2026/03/21 11:47:29 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":12.346594905642572,"throughput_eps":0,"last_update":"2026-03-21T11:47:24.210045829Z"} +2026/03/21 11:47:29 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":697.3987514327251,"throughput_eps":0,"last_update":"2026-03-21T11:47:24.21016607Z"} +2026/03/21 11:47:29 ───────────────────────────────────────────────── +2026/03/21 11:47:34 ── Pipeline Health ────────────────────────────── +2026/03/21 11:47:34 [log_collector] {"stage_name":"log_collector","events_processed":3269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":653.8,"last_update":"2026-03-21T11:47:29.068928404Z"} +2026/03/21 11:47:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":343.8,"last_update":"2026-03-21T11:47:29.06942219Z"} +2026/03/21 11:47:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:47:29.07727019Z"} +2026/03/21 11:47:34 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":12.346594905642572,"throughput_eps":0,"last_update":"2026-03-21T11:47:29.210565693Z"} +2026/03/21 11:47:34 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":697.3987514327251,"throughput_eps":0,"last_update":"2026-03-21T11:47:29.210457476Z"} +2026/03/21 11:47:34 ───────────────────────────────────────────────── +2026/03/21 11:47:39 ── Pipeline Health ────────────────────────────── +2026/03/21 11:47:39 [log_collector] {"stage_name":"log_collector","events_processed":3269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":653.8,"last_update":"2026-03-21T11:47:34.068628242Z"} +2026/03/21 11:47:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":344.8,"last_update":"2026-03-21T11:47:34.069489261Z"} +2026/03/21 11:47:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:47:34.078668582Z"} +2026/03/21 11:47:39 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":12.346594905642572,"throughput_eps":0,"last_update":"2026-03-21T11:47:34.210088943Z"} +2026/03/21 11:47:39 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":697.3987514327251,"throughput_eps":0,"last_update":"2026-03-21T11:47:34.21004054Z"} +2026/03/21 11:47:39 ───────────────────────────────────────────────── +2026/03/21 11:47:44 ── Pipeline Health ────────────────────────────── +2026/03/21 11:47:44 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":697.3987514327251,"throughput_eps":0,"last_update":"2026-03-21T11:47:39.209834202Z"} +2026/03/21 11:47:44 [log_collector] {"stage_name":"log_collector","events_processed":3269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":653.8,"last_update":"2026-03-21T11:47:39.069042773Z"} +2026/03/21 11:47:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":345.8,"last_update":"2026-03-21T11:47:39.069547349Z"} +2026/03/21 11:47:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:47:39.078297598Z"} +2026/03/21 11:47:44 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":12.346594905642572,"throughput_eps":0,"last_update":"2026-03-21T11:47:39.209912022Z"} +2026/03/21 11:47:44 ───────────────────────────────────────────────── +2026/03/21 11:47:49 ── Pipeline Health ────────────────────────────── +2026/03/21 11:47:49 [log_collector] {"stage_name":"log_collector","events_processed":3269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":653.8,"last_update":"2026-03-21T11:47:44.068788998Z"} +2026/03/21 11:47:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1733,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":346.6,"last_update":"2026-03-21T11:47:44.068794298Z"} +2026/03/21 11:47:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:47:44.077690857Z"} +2026/03/21 11:47:49 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":12.346594905642572,"throughput_eps":0,"last_update":"2026-03-21T11:47:44.210153585Z"} +2026/03/21 11:47:49 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":697.3987514327251,"throughput_eps":0,"last_update":"2026-03-21T11:47:44.210032813Z"} +2026/03/21 11:47:49 ───────────────────────────────────────────────── +2026/03/21 11:47:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:47:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:47:49.078715063Z"} +2026/03/21 11:47:54 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":12.346594905642572,"throughput_eps":0,"last_update":"2026-03-21T11:47:49.210021256Z"} +2026/03/21 11:47:54 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":579.9027593461801,"throughput_eps":0,"last_update":"2026-03-21T11:47:49.319953803Z"} +2026/03/21 11:47:54 [log_collector] {"stage_name":"log_collector","events_processed":3269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":653.8,"last_update":"2026-03-21T11:47:49.068723527Z"} +2026/03/21 11:47:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":347.8,"last_update":"2026-03-21T11:47:49.06927845Z"} +2026/03/21 11:47:54 ───────────────────────────────────────────────── +2026/03/21 11:47:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:47:59 [log_collector] {"stage_name":"log_collector","events_processed":3269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":653.8,"last_update":"2026-03-21T11:47:54.068882811Z"} +2026/03/21 11:47:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":348.8,"last_update":"2026-03-21T11:47:54.069175612Z"} +2026/03/21 11:47:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":700,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:47:54.07762802Z"} +2026/03/21 11:47:59 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":13.14135552451406,"throughput_eps":0,"last_update":"2026-03-21T11:47:54.210907832Z"} +2026/03/21 11:47:59 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":579.9027593461801,"throughput_eps":0,"last_update":"2026-03-21T11:47:54.209711311Z"} +2026/03/21 11:47:59 ───────────────────────────────────────────────── +2026/03/21 11:48:04 ── Pipeline Health ────────────────────────────── +2026/03/21 11:48:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":702,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:47:59.077147292Z"} +2026/03/21 11:48:04 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":13.14135552451406,"throughput_eps":0,"last_update":"2026-03-21T11:47:59.210484636Z"} +2026/03/21 11:48:04 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":579.9027593461801,"throughput_eps":0,"last_update":"2026-03-21T11:47:59.210497901Z"} +2026/03/21 11:48:04 [log_collector] {"stage_name":"log_collector","events_processed":3269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":653.8,"last_update":"2026-03-21T11:47:59.068102769Z"} +2026/03/21 11:48:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":349.8,"last_update":"2026-03-21T11:47:59.068544516Z"} +2026/03/21 11:48:04 ───────────────────────────────────────────────── +2026/03/21 11:48:09 ── Pipeline Health ────────────────────────────── +2026/03/21 11:48:09 [log_collector] {"stage_name":"log_collector","events_processed":3269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":653.8,"last_update":"2026-03-21T11:48:04.068753523Z"} +2026/03/21 11:48:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":350.8,"last_update":"2026-03-21T11:48:04.069064448Z"} +2026/03/21 11:48:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:48:04.077547686Z"} +2026/03/21 11:48:09 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":13.14135552451406,"throughput_eps":0,"last_update":"2026-03-21T11:48:04.209874083Z"} +2026/03/21 11:48:09 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":579.9027593461801,"throughput_eps":0,"last_update":"2026-03-21T11:48:04.209849957Z"} +2026/03/21 11:48:09 ───────────────────────────────────────────────── +2026/03/21 11:48:14 ── Pipeline Health ────────────────────────────── +2026/03/21 11:48:14 [log_collector] {"stage_name":"log_collector","events_processed":3269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":653.8,"last_update":"2026-03-21T11:48:09.068325735Z"} +2026/03/21 11:48:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":351.8,"last_update":"2026-03-21T11:48:09.068670394Z"} +2026/03/21 11:48:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:48:09.078063264Z"} +2026/03/21 11:48:14 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":13.14135552451406,"throughput_eps":0,"last_update":"2026-03-21T11:48:09.21026849Z"} +2026/03/21 11:48:14 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":579.9027593461801,"throughput_eps":0,"last_update":"2026-03-21T11:48:09.210277677Z"} +2026/03/21 11:48:14 ───────────────────────────────────────────────── +2026/03/21 11:48:19 ── Pipeline Health ────────────────────────────── +2026/03/21 11:48:19 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":579.9027593461801,"throughput_eps":0,"last_update":"2026-03-21T11:48:14.210527953Z"} +2026/03/21 11:48:19 [log_collector] {"stage_name":"log_collector","events_processed":3269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":653.8,"last_update":"2026-03-21T11:48:14.068598202Z"} +2026/03/21 11:48:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":352.8,"last_update":"2026-03-21T11:48:14.068892105Z"} +2026/03/21 11:48:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:48:14.077319245Z"} +2026/03/21 11:48:19 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":13.14135552451406,"throughput_eps":0,"last_update":"2026-03-21T11:48:14.210520358Z"} +2026/03/21 11:48:19 ───────────────────────────────────────────────── +2026/03/21 11:48:24 ── Pipeline Health ────────────────────────────── +2026/03/21 11:48:24 [log_collector] {"stage_name":"log_collector","events_processed":3269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":653.8,"last_update":"2026-03-21T11:48:24.068263374Z"} +2026/03/21 11:48:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":353.8,"last_update":"2026-03-21T11:48:19.069202369Z"} +2026/03/21 11:48:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:48:19.078166588Z"} +2026/03/21 11:48:24 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":13.14135552451406,"throughput_eps":0,"last_update":"2026-03-21T11:48:19.210578609Z"} +2026/03/21 11:48:24 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":478.2842182769441,"throughput_eps":0,"last_update":"2026-03-21T11:48:19.282410324Z"} +2026/03/21 11:48:24 ───────────────────────────────────────────────── +Saved state: 11 clusters, 3270 messages, reason: none +2026/03/21 11:48:29 ── Pipeline Health ────────────────────────────── +2026/03/21 11:48:29 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.644061219611249,"throughput_eps":0,"last_update":"2026-03-21T11:48:24.210302333Z"} +2026/03/21 11:48:29 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":478.2842182769441,"throughput_eps":0,"last_update":"2026-03-21T11:48:24.210280441Z"} +2026/03/21 11:48:29 [log_collector] {"stage_name":"log_collector","events_processed":3269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":653.8,"last_update":"2026-03-21T11:48:24.068263374Z"} +2026/03/21 11:48:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":354.8,"last_update":"2026-03-21T11:48:24.068884604Z"} +2026/03/21 11:48:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":712,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:48:24.077060563Z"} +2026/03/21 11:48:29 ───────────────────────────────────────────────── +2026/03/21 11:48:34 ── Pipeline Health ────────────────────────────── +2026/03/21 11:48:34 [log_collector] {"stage_name":"log_collector","events_processed":3272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":654.4,"last_update":"2026-03-21T11:48:29.068056606Z"} +2026/03/21 11:48:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":355.8,"last_update":"2026-03-21T11:48:29.068402527Z"} +2026/03/21 11:48:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:48:29.076753522Z"} +2026/03/21 11:48:34 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.644061219611249,"throughput_eps":0,"last_update":"2026-03-21T11:48:29.210508025Z"} +2026/03/21 11:48:34 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":478.2842182769441,"throughput_eps":0,"last_update":"2026-03-21T11:48:29.210489379Z"} +2026/03/21 11:48:34 ───────────────────────────────────────────────── +2026/03/21 11:48:39 ── Pipeline Health ────────────────────────────── +2026/03/21 11:48:39 [log_collector] {"stage_name":"log_collector","events_processed":3283,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":656.6,"last_update":"2026-03-21T11:48:34.068840586Z"} +2026/03/21 11:48:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":356.8,"last_update":"2026-03-21T11:48:34.069112647Z"} +2026/03/21 11:48:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:48:34.07788612Z"} +2026/03/21 11:48:39 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.644061219611249,"throughput_eps":0,"last_update":"2026-03-21T11:48:34.210214813Z"} +2026/03/21 11:48:39 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":478.2842182769441,"throughput_eps":0,"last_update":"2026-03-21T11:48:34.210326237Z"} +2026/03/21 11:48:39 ───────────────────────────────────────────────── +2026/03/21 11:48:44 ── Pipeline Health ────────────────────────────── +2026/03/21 11:48:44 [log_collector] {"stage_name":"log_collector","events_processed":3283,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":656.6,"last_update":"2026-03-21T11:48:39.068968264Z"} +2026/03/21 11:48:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":357.8,"last_update":"2026-03-21T11:48:39.069643417Z"} +2026/03/21 11:48:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":718,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:48:39.078716534Z"} +2026/03/21 11:48:44 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.644061219611249,"throughput_eps":0,"last_update":"2026-03-21T11:48:39.209978674Z"} +2026/03/21 11:48:44 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":478.2842182769441,"throughput_eps":0,"last_update":"2026-03-21T11:48:39.210022859Z"} +2026/03/21 11:48:44 ───────────────────────────────────────────────── +2026/03/21 11:48:49 ── Pipeline Health ────────────────────────────── +2026/03/21 11:48:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:48:44.079116218Z"} +2026/03/21 11:48:49 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.644061219611249,"throughput_eps":0,"last_update":"2026-03-21T11:48:44.21041097Z"} +2026/03/21 11:48:49 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":478.2842182769441,"throughput_eps":0,"last_update":"2026-03-21T11:48:44.210378018Z"} +2026/03/21 11:48:49 [log_collector] {"stage_name":"log_collector","events_processed":3283,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":656.6,"last_update":"2026-03-21T11:48:44.068682726Z"} +2026/03/21 11:48:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":358.8,"last_update":"2026-03-21T11:48:44.068978402Z"} +2026/03/21 11:48:49 ───────────────────────────────────────────────── +2026/03/21 11:48:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:48:54 [log_collector] {"stage_name":"log_collector","events_processed":3283,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":656.6,"last_update":"2026-03-21T11:48:49.068159755Z"} +2026/03/21 11:48:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":359.8,"last_update":"2026-03-21T11:48:49.068326856Z"} +2026/03/21 11:48:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":722,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:48:49.077483473Z"} +2026/03/21 11:48:54 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.644061219611249,"throughput_eps":0,"last_update":"2026-03-21T11:48:49.210863448Z"} +2026/03/21 11:48:54 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":404.7387956215553,"throughput_eps":0,"last_update":"2026-03-21T11:48:49.320267394Z"} +2026/03/21 11:48:54 ───────────────────────────────────────────────── +2026/03/21 11:48:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:48:59 [log_collector] {"stage_name":"log_collector","events_processed":3283,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":656.6,"last_update":"2026-03-21T11:48:54.069043262Z"} +2026/03/21 11:48:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":360.8,"last_update":"2026-03-21T11:48:54.069169183Z"} +2026/03/21 11:48:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:48:54.079250792Z"} +2026/03/21 11:48:59 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":13.763700575689,"throughput_eps":0,"last_update":"2026-03-21T11:48:54.210612823Z"} +2026/03/21 11:48:59 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":404.7387956215553,"throughput_eps":0,"last_update":"2026-03-21T11:48:54.210633934Z"} +2026/03/21 11:48:59 ───────────────────────────────────────────────── +2026/03/21 11:49:04 ── Pipeline Health ────────────────────────────── +2026/03/21 11:49:04 [log_collector] {"stage_name":"log_collector","events_processed":3283,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":656.6,"last_update":"2026-03-21T11:48:59.068891721Z"} +2026/03/21 11:49:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":361.8,"last_update":"2026-03-21T11:48:59.069181767Z"} +2026/03/21 11:49:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:48:59.078171645Z"} +2026/03/21 11:49:04 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":13.763700575689,"throughput_eps":0,"last_update":"2026-03-21T11:48:59.210568267Z"} +2026/03/21 11:49:04 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":404.7387956215553,"throughput_eps":0,"last_update":"2026-03-21T11:48:59.210555744Z"} +2026/03/21 11:49:04 ───────────────────────────────────────────────── +2026/03/21 11:49:09 ── Pipeline Health ────────────────────────────── +2026/03/21 11:49:09 [log_collector] {"stage_name":"log_collector","events_processed":3283,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":656.6,"last_update":"2026-03-21T11:49:04.068767747Z"} +2026/03/21 11:49:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":362.8,"last_update":"2026-03-21T11:49:04.069060888Z"} +2026/03/21 11:49:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":728,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:49:04.078632069Z"} +2026/03/21 11:49:09 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":13.763700575689,"throughput_eps":0,"last_update":"2026-03-21T11:49:04.210041221Z"} +2026/03/21 11:49:09 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":404.7387956215553,"throughput_eps":0,"last_update":"2026-03-21T11:49:04.210151723Z"} +2026/03/21 11:49:09 ───────────────────────────────────────────────── +2026/03/21 11:49:14 ── Pipeline Health ────────────────────────────── +2026/03/21 11:49:14 [log_collector] {"stage_name":"log_collector","events_processed":3283,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":656.6,"last_update":"2026-03-21T11:49:09.068101958Z"} +2026/03/21 11:49:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":363.8,"last_update":"2026-03-21T11:49:09.068549445Z"} +2026/03/21 11:49:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":730,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:49:09.078171784Z"} +2026/03/21 11:49:14 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":13.763700575689,"throughput_eps":0,"last_update":"2026-03-21T11:49:09.210560863Z"} +2026/03/21 11:49:14 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":404.7387956215553,"throughput_eps":0,"last_update":"2026-03-21T11:49:09.21047017Z"} +2026/03/21 11:49:14 ───────────────────────────────────────────────── +2026/03/21 11:49:19 ── Pipeline Health ────────────────────────────── +2026/03/21 11:49:19 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":404.7387956215553,"throughput_eps":0,"last_update":"2026-03-21T11:49:14.210571001Z"} +2026/03/21 11:49:19 [log_collector] {"stage_name":"log_collector","events_processed":3283,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":656.6,"last_update":"2026-03-21T11:49:14.068882923Z"} +2026/03/21 11:49:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":364.8,"last_update":"2026-03-21T11:49:14.06925236Z"} +2026/03/21 11:49:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:49:14.078309967Z"} +2026/03/21 11:49:19 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":13.763700575689,"throughput_eps":0,"last_update":"2026-03-21T11:49:14.210555962Z"} +2026/03/21 11:49:19 ───────────────────────────────────────────────── +2026/03/21 11:49:24 ── Pipeline Health ────────────────────────────── +2026/03/21 11:49:24 [log_collector] {"stage_name":"log_collector","events_processed":3283,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":656.6,"last_update":"2026-03-21T11:49:19.068902662Z"} +2026/03/21 11:49:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":365.8,"last_update":"2026-03-21T11:49:19.069445421Z"} +2026/03/21 11:49:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:49:19.077951793Z"} +2026/03/21 11:49:24 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":13.763700575689,"throughput_eps":0,"last_update":"2026-03-21T11:49:19.210341232Z"} +2026/03/21 11:49:24 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":337.25385489724425,"throughput_eps":0,"last_update":"2026-03-21T11:49:19.277687448Z"} +2026/03/21 11:49:24 ───────────────────────────────────────────────── +2026/03/21 11:49:29 ── Pipeline Health ────────────────────────────── +2026/03/21 11:49:29 [log_collector] {"stage_name":"log_collector","events_processed":3283,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":656.6,"last_update":"2026-03-21T11:49:24.068814599Z"} +2026/03/21 11:49:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":366.8,"last_update":"2026-03-21T11:49:24.069125816Z"} +2026/03/21 11:49:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":736,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:49:24.078223209Z"} +2026/03/21 11:49:29 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.213241860551202,"throughput_eps":0,"last_update":"2026-03-21T11:49:24.210610815Z"} +2026/03/21 11:49:29 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":337.25385489724425,"throughput_eps":0,"last_update":"2026-03-21T11:49:24.210649208Z"} +2026/03/21 11:49:29 ───────────────────────────────────────────────── +2026/03/21 11:49:34 ── Pipeline Health ────────────────────────────── +2026/03/21 11:49:34 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.213241860551202,"throughput_eps":0,"last_update":"2026-03-21T11:49:29.210317472Z"} +2026/03/21 11:49:34 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":337.25385489724425,"throughput_eps":0,"last_update":"2026-03-21T11:49:29.210371175Z"} +2026/03/21 11:49:34 [log_collector] {"stage_name":"log_collector","events_processed":3283,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":656.6,"last_update":"2026-03-21T11:49:29.068621237Z"} +2026/03/21 11:49:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":367.8,"last_update":"2026-03-21T11:49:29.068609566Z"} +2026/03/21 11:49:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":738,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:49:29.077946007Z"} +2026/03/21 11:49:34 ───────────────────────────────────────────────── +Saved state: 11 clusters, 3284 messages, reason: none +2026/03/21 11:49:39 ── Pipeline Health ────────────────────────────── +2026/03/21 11:49:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":368.8,"last_update":"2026-03-21T11:49:34.069473473Z"} +2026/03/21 11:49:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":740,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:49:34.078148989Z"} +2026/03/21 11:49:39 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.213241860551202,"throughput_eps":0,"last_update":"2026-03-21T11:49:34.210611479Z"} +2026/03/21 11:49:39 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":337.25385489724425,"throughput_eps":0,"last_update":"2026-03-21T11:49:34.210504584Z"} +2026/03/21 11:49:39 [log_collector] {"stage_name":"log_collector","events_processed":3283,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":656.6,"last_update":"2026-03-21T11:49:34.068822416Z"} +2026/03/21 11:49:39 ───────────────────────────────────────────────── +2026/03/21 11:49:44 ── Pipeline Health ────────────────────────────── +2026/03/21 11:49:44 [log_collector] {"stage_name":"log_collector","events_processed":3288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":657.6,"last_update":"2026-03-21T11:49:39.068487451Z"} +2026/03/21 11:49:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":369.8,"last_update":"2026-03-21T11:49:39.068711971Z"} +2026/03/21 11:49:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:49:39.076110731Z"} +2026/03/21 11:49:44 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.213241860551202,"throughput_eps":0,"last_update":"2026-03-21T11:49:39.210082742Z"} +2026/03/21 11:49:44 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":337.25385489724425,"throughput_eps":0,"last_update":"2026-03-21T11:49:39.209728674Z"} +2026/03/21 11:49:44 ───────────────────────────────────────────────── +2026/03/21 11:49:49 ── Pipeline Health ────────────────────────────── +2026/03/21 11:49:49 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":337.25385489724425,"throughput_eps":0,"last_update":"2026-03-21T11:49:44.210653725Z"} +2026/03/21 11:49:49 [log_collector] {"stage_name":"log_collector","events_processed":3288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":657.6,"last_update":"2026-03-21T11:49:44.068462633Z"} +2026/03/21 11:49:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":370.8,"last_update":"2026-03-21T11:49:44.068767667Z"} +2026/03/21 11:49:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:49:44.0773844Z"} +2026/03/21 11:49:49 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.213241860551202,"throughput_eps":0,"last_update":"2026-03-21T11:49:44.21064061Z"} +2026/03/21 11:49:49 ───────────────────────────────────────────────── +2026/03/21 11:49:49 [ANOMALY] time=2026-03-21T11:49:49Z score=0.9422 method=SEAD details=MAD!:w=0.27,s=0.95 RRCF-fast!:w=0.18,s=1.00 RRCF-mid!:w=0.18,s=0.98 RRCF-slow!:w=0.17,s=0.97 COPOD!:w=0.20,s=0.82 +2026/03/21 11:49:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:49:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":371.8,"last_update":"2026-03-21T11:49:49.06913374Z"} +2026/03/21 11:49:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:49:49.075160413Z"} +2026/03/21 11:49:54 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.213241860551202,"throughput_eps":0,"last_update":"2026-03-21T11:49:49.210032599Z"} +2026/03/21 11:49:54 [transform_engine] {"stage_name":"transform_engine","events_processed":62,"events_dropped":0,"avg_latency_ms":302.0751433177954,"throughput_eps":0,"last_update":"2026-03-21T11:49:49.371051652Z"} +2026/03/21 11:49:54 [log_collector] {"stage_name":"log_collector","events_processed":3288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":657.6,"last_update":"2026-03-21T11:49:49.06882513Z"} +2026/03/21 11:49:54 ───────────────────────────────────────────────── +2026/03/21 11:49:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:49:59 [log_collector] {"stage_name":"log_collector","events_processed":3288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":657.6,"last_update":"2026-03-21T11:49:54.068952288Z"} +2026/03/21 11:49:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":372.8,"last_update":"2026-03-21T11:49:54.069153975Z"} +2026/03/21 11:49:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:49:54.077559644Z"} +2026/03/21 11:49:59 [detection_layer] {"stage_name":"detection_layer","events_processed":62,"events_dropped":0,"avg_latency_ms":12.799726688440963,"throughput_eps":0,"last_update":"2026-03-21T11:49:54.210845291Z"} +2026/03/21 11:49:59 [transform_engine] {"stage_name":"transform_engine","events_processed":62,"events_dropped":0,"avg_latency_ms":302.0751433177954,"throughput_eps":0,"last_update":"2026-03-21T11:49:54.209718693Z"} +2026/03/21 11:49:59 ───────────────────────────────────────────────── +2026/03/21 11:50:04 ── Pipeline Health ────────────────────────────── +2026/03/21 11:50:04 [transform_engine] {"stage_name":"transform_engine","events_processed":62,"events_dropped":0,"avg_latency_ms":302.0751433177954,"throughput_eps":0,"last_update":"2026-03-21T11:49:59.210522252Z"} +2026/03/21 11:50:04 [log_collector] {"stage_name":"log_collector","events_processed":3288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":657.6,"last_update":"2026-03-21T11:49:59.068570307Z"} +2026/03/21 11:50:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":373.8,"last_update":"2026-03-21T11:49:59.068813724Z"} +2026/03/21 11:50:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":750,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:49:59.074885823Z"} +2026/03/21 11:50:04 [detection_layer] {"stage_name":"detection_layer","events_processed":62,"events_dropped":0,"avg_latency_ms":12.799726688440963,"throughput_eps":0,"last_update":"2026-03-21T11:49:59.210538753Z"} +2026/03/21 11:50:04 ───────────────────────────────────────────────── +2026/03/21 11:50:09 ── Pipeline Health ────────────────────────────── +2026/03/21 11:50:09 [log_collector] {"stage_name":"log_collector","events_processed":3288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":657.6,"last_update":"2026-03-21T11:50:04.068625666Z"} +2026/03/21 11:50:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":374.8,"last_update":"2026-03-21T11:50:04.069085396Z"} +2026/03/21 11:50:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":752,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:50:04.08592061Z"} +2026/03/21 11:50:09 [detection_layer] {"stage_name":"detection_layer","events_processed":62,"events_dropped":0,"avg_latency_ms":12.799726688440963,"throughput_eps":0,"last_update":"2026-03-21T11:50:04.210178797Z"} +2026/03/21 11:50:09 [transform_engine] {"stage_name":"transform_engine","events_processed":62,"events_dropped":0,"avg_latency_ms":302.0751433177954,"throughput_eps":0,"last_update":"2026-03-21T11:50:04.210191661Z"} +2026/03/21 11:50:09 ───────────────────────────────────────────────── +2026/03/21 11:50:14 ── Pipeline Health ────────────────────────────── +2026/03/21 11:50:14 [log_collector] {"stage_name":"log_collector","events_processed":3288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":657.6,"last_update":"2026-03-21T11:50:09.068522714Z"} +2026/03/21 11:50:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":375.8,"last_update":"2026-03-21T11:50:09.068798352Z"} +2026/03/21 11:50:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:50:09.075974526Z"} +2026/03/21 11:50:14 [detection_layer] {"stage_name":"detection_layer","events_processed":62,"events_dropped":0,"avg_latency_ms":12.799726688440963,"throughput_eps":0,"last_update":"2026-03-21T11:50:09.210217757Z"} +2026/03/21 11:50:14 [transform_engine] {"stage_name":"transform_engine","events_processed":62,"events_dropped":0,"avg_latency_ms":302.0751433177954,"throughput_eps":0,"last_update":"2026-03-21T11:50:09.210258725Z"} +2026/03/21 11:50:14 ───────────────────────────────────────────────── +2026/03/21 11:50:19 ── Pipeline Health ────────────────────────────── +2026/03/21 11:50:19 [log_collector] {"stage_name":"log_collector","events_processed":3288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":657.6,"last_update":"2026-03-21T11:50:14.068859348Z"} +2026/03/21 11:50:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":376.8,"last_update":"2026-03-21T11:50:14.069161386Z"} +2026/03/21 11:50:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:50:14.075257812Z"} +2026/03/21 11:50:19 [detection_layer] {"stage_name":"detection_layer","events_processed":62,"events_dropped":0,"avg_latency_ms":12.799726688440963,"throughput_eps":0,"last_update":"2026-03-21T11:50:14.210622531Z"} +2026/03/21 11:50:19 [transform_engine] {"stage_name":"transform_engine","events_processed":62,"events_dropped":0,"avg_latency_ms":302.0751433177954,"throughput_eps":0,"last_update":"2026-03-21T11:50:14.210673929Z"} +2026/03/21 11:50:19 ───────────────────────────────────────────────── +2026/03/21 11:50:21 [ANOMALY] time=2026-03-21T11:50:21Z score=0.8795 method=SEAD details=MAD!:w=0.27,s=0.82 RRCF-fast!:w=0.18,s=0.94 RRCF-mid!:w=0.18,s=0.92 RRCF-slow!:w=0.17,s=0.94 COPOD!:w=0.20,s=0.82 +2026/03/21 11:50:24 ── Pipeline Health ────────────────────────────── +2026/03/21 11:50:24 [transform_engine] {"stage_name":"transform_engine","events_processed":62,"events_dropped":0,"avg_latency_ms":302.0751433177954,"throughput_eps":0,"last_update":"2026-03-21T11:50:19.21038065Z"} +2026/03/21 11:50:24 [log_collector] {"stage_name":"log_collector","events_processed":3288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":657.6,"last_update":"2026-03-21T11:50:19.068295519Z"} +2026/03/21 11:50:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":377.8,"last_update":"2026-03-21T11:50:19.068817069Z"} +2026/03/21 11:50:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":758,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:50:19.074840485Z"} +2026/03/21 11:50:24 [detection_layer] {"stage_name":"detection_layer","events_processed":62,"events_dropped":0,"avg_latency_ms":12.799726688440963,"throughput_eps":0,"last_update":"2026-03-21T11:50:19.210392072Z"} +2026/03/21 11:50:24 ───────────────────────────────────────────────── +2026/03/21 11:50:29 ── Pipeline Health ────────────────────────────── +2026/03/21 11:50:29 [log_collector] {"stage_name":"log_collector","events_processed":3297,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":659.4,"last_update":"2026-03-21T11:50:24.068972512Z"} +2026/03/21 11:50:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":378.8,"last_update":"2026-03-21T11:50:24.069251587Z"} +2026/03/21 11:50:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:50:24.078209783Z"} +2026/03/21 11:50:29 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":12.17928215075277,"throughput_eps":0,"last_update":"2026-03-21T11:50:24.210606097Z"} +2026/03/21 11:50:29 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":731.4088262542363,"throughput_eps":0,"last_update":"2026-03-21T11:50:24.21063345Z"} +2026/03/21 11:50:29 ───────────────────────────────────────────────── +2026/03/21 11:50:34 ── Pipeline Health ────────────────────────────── +2026/03/21 11:50:34 [log_collector] {"stage_name":"log_collector","events_processed":3315,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":663,"last_update":"2026-03-21T11:50:29.068984393Z"} +2026/03/21 11:50:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":379.8,"last_update":"2026-03-21T11:50:29.068966688Z"} +2026/03/21 11:50:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:50:29.075944052Z"} +2026/03/21 11:50:34 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":12.17928215075277,"throughput_eps":0,"last_update":"2026-03-21T11:50:29.21082763Z"} +2026/03/21 11:50:34 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":731.4088262542363,"throughput_eps":0,"last_update":"2026-03-21T11:50:29.209683839Z"} +2026/03/21 11:50:34 ───────────────────────────────────────────────── +2026/03/21 11:50:39 ── Pipeline Health ────────────────────────────── +2026/03/21 11:50:39 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":12.17928215075277,"throughput_eps":0,"last_update":"2026-03-21T11:50:34.210527426Z"} +2026/03/21 11:50:39 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":731.4088262542363,"throughput_eps":0,"last_update":"2026-03-21T11:50:34.210539849Z"} +2026/03/21 11:50:39 [log_collector] {"stage_name":"log_collector","events_processed":3612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":722.4,"last_update":"2026-03-21T11:50:34.068591451Z"} +2026/03/21 11:50:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":380.8,"last_update":"2026-03-21T11:50:34.068864524Z"} +2026/03/21 11:50:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:50:34.076012234Z"} +2026/03/21 11:50:39 ───────────────────────────────────────────────── +2026/03/21 11:50:44 ── Pipeline Health ────────────────────────────── +2026/03/21 11:50:44 [log_collector] {"stage_name":"log_collector","events_processed":3649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":729.8,"last_update":"2026-03-21T11:50:39.069099849Z"} +2026/03/21 11:50:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":381.8,"last_update":"2026-03-21T11:50:39.069377732Z"} +2026/03/21 11:50:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":766,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:50:39.078063317Z"} +2026/03/21 11:50:44 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":12.17928215075277,"throughput_eps":0,"last_update":"2026-03-21T11:50:39.210310575Z"} +2026/03/21 11:50:44 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":731.4088262542363,"throughput_eps":0,"last_update":"2026-03-21T11:50:39.210341754Z"} +2026/03/21 11:50:44 ───────────────────────────────────────────────── +2026/03/21 11:50:49 ── Pipeline Health ────────────────────────────── +2026/03/21 11:50:49 [log_collector] {"stage_name":"log_collector","events_processed":3649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":729.8,"last_update":"2026-03-21T11:50:44.068902337Z"} +2026/03/21 11:50:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":382.8,"last_update":"2026-03-21T11:50:44.069540028Z"} +2026/03/21 11:50:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":768,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:50:44.079475457Z"} +2026/03/21 11:50:49 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":12.17928215075277,"throughput_eps":0,"last_update":"2026-03-21T11:50:44.210766775Z"} +2026/03/21 11:50:49 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":731.4088262542363,"throughput_eps":0,"last_update":"2026-03-21T11:50:44.209632593Z"} +2026/03/21 11:50:49 ───────────────────────────────────────────────── +2026/03/21 11:50:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:50:54 [log_collector] {"stage_name":"log_collector","events_processed":3649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":729.8,"last_update":"2026-03-21T11:50:49.068926412Z"} +2026/03/21 11:50:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":383.8,"last_update":"2026-03-21T11:50:49.069243509Z"} +2026/03/21 11:50:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":770,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:50:49.078248296Z"} +2026/03/21 11:50:54 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":12.17928215075277,"throughput_eps":0,"last_update":"2026-03-21T11:50:49.210636704Z"} +2026/03/21 11:50:54 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":607.8425732033891,"throughput_eps":0,"last_update":"2026-03-21T11:50:49.324332363Z"} +2026/03/21 11:50:54 ───────────────────────────────────────────────── +2026/03/21 11:50:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:50:59 [log_collector] {"stage_name":"log_collector","events_processed":3649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":729.8,"last_update":"2026-03-21T11:50:54.068286399Z"} +2026/03/21 11:50:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":384.8,"last_update":"2026-03-21T11:50:54.068863745Z"} +2026/03/21 11:50:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:50:54.078758325Z"} +2026/03/21 11:50:59 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":12.593067520602219,"throughput_eps":0,"last_update":"2026-03-21T11:50:54.210066596Z"} +2026/03/21 11:50:59 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":607.8425732033891,"throughput_eps":0,"last_update":"2026-03-21T11:50:54.21017288Z"} +2026/03/21 11:50:59 ───────────────────────────────────────────────── +2026/03/21 11:51:04 ── Pipeline Health ────────────────────────────── +2026/03/21 11:51:04 [log_collector] {"stage_name":"log_collector","events_processed":3649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":729.8,"last_update":"2026-03-21T11:50:59.068247109Z"} +2026/03/21 11:51:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":385.8,"last_update":"2026-03-21T11:50:59.068574205Z"} +2026/03/21 11:51:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:50:59.078004627Z"} +2026/03/21 11:51:04 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":12.593067520602219,"throughput_eps":0,"last_update":"2026-03-21T11:50:59.210402454Z"} +2026/03/21 11:51:04 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":607.8425732033891,"throughput_eps":0,"last_update":"2026-03-21T11:50:59.210455015Z"} +2026/03/21 11:51:04 ───────────────────────────────────────────────── +2026/03/21 11:51:09 ── Pipeline Health ────────────────────────────── +2026/03/21 11:51:09 [log_collector] {"stage_name":"log_collector","events_processed":3649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":729.8,"last_update":"2026-03-21T11:51:09.068243351Z"} +2026/03/21 11:51:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":386.8,"last_update":"2026-03-21T11:51:04.068523465Z"} +2026/03/21 11:51:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:51:04.077252023Z"} +2026/03/21 11:51:09 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":12.593067520602219,"throughput_eps":0,"last_update":"2026-03-21T11:51:04.210650667Z"} +2026/03/21 11:51:09 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":607.8425732033891,"throughput_eps":0,"last_update":"2026-03-21T11:51:04.210632031Z"} +2026/03/21 11:51:09 ───────────────────────────────────────────────── +2026/03/21 11:51:14 ── Pipeline Health ────────────────────────────── +2026/03/21 11:51:14 [log_collector] {"stage_name":"log_collector","events_processed":3649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":729.8,"last_update":"2026-03-21T11:51:09.068243351Z"} +2026/03/21 11:51:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":387.8,"last_update":"2026-03-21T11:51:09.068657384Z"} +2026/03/21 11:51:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:51:09.07723417Z"} +2026/03/21 11:51:14 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":12.593067520602219,"throughput_eps":0,"last_update":"2026-03-21T11:51:09.210679314Z"} +2026/03/21 11:51:14 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":607.8425732033891,"throughput_eps":0,"last_update":"2026-03-21T11:51:09.210705385Z"} +2026/03/21 11:51:14 ───────────────────────────────────────────────── +2026/03/21 11:51:19 ── Pipeline Health ────────────────────────────── +2026/03/21 11:51:19 [log_collector] {"stage_name":"log_collector","events_processed":3649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":729.8,"last_update":"2026-03-21T11:51:14.068604358Z"} +2026/03/21 11:51:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":388.8,"last_update":"2026-03-21T11:51:14.068887149Z"} +2026/03/21 11:51:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":780,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:51:14.077757869Z"} +2026/03/21 11:51:19 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":12.593067520602219,"throughput_eps":0,"last_update":"2026-03-21T11:51:14.210118635Z"} +2026/03/21 11:51:19 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":607.8425732033891,"throughput_eps":0,"last_update":"2026-03-21T11:51:14.210150697Z"} +2026/03/21 11:51:19 ───────────────────────────────────────────────── +2026/03/21 11:51:24 ── Pipeline Health ────────────────────────────── +2026/03/21 11:51:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":782,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:51:19.078974015Z"} +2026/03/21 11:51:24 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":12.593067520602219,"throughput_eps":0,"last_update":"2026-03-21T11:51:19.210206742Z"} +2026/03/21 11:51:24 [transform_engine] {"stage_name":"transform_engine","events_processed":65,"events_dropped":0,"avg_latency_ms":500.24836716271125,"throughput_eps":0,"last_update":"2026-03-21T11:51:19.28009685Z"} +2026/03/21 11:51:24 [log_collector] {"stage_name":"log_collector","events_processed":3649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":729.8,"last_update":"2026-03-21T11:51:19.068608693Z"} +2026/03/21 11:51:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":389.8,"last_update":"2026-03-21T11:51:19.069067972Z"} +2026/03/21 11:51:24 ───────────────────────────────────────────────── +2026/03/21 11:51:29 ── Pipeline Health ────────────────────────────── +2026/03/21 11:51:29 [log_collector] {"stage_name":"log_collector","events_processed":3649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":729.8,"last_update":"2026-03-21T11:51:24.068871867Z"} +2026/03/21 11:51:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":390.8,"last_update":"2026-03-21T11:51:24.069175528Z"} +2026/03/21 11:51:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:51:24.078141069Z"} +2026/03/21 11:51:29 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":13.909224616481776,"throughput_eps":0,"last_update":"2026-03-21T11:51:24.210306934Z"} +2026/03/21 11:51:29 [transform_engine] {"stage_name":"transform_engine","events_processed":65,"events_dropped":0,"avg_latency_ms":500.24836716271125,"throughput_eps":0,"last_update":"2026-03-21T11:51:24.210408498Z"} +2026/03/21 11:51:29 ───────────────────────────────────────────────── +2026/03/21 11:51:34 ── Pipeline Health ────────────────────────────── +2026/03/21 11:51:34 [log_collector] {"stage_name":"log_collector","events_processed":3649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":729.8,"last_update":"2026-03-21T11:51:29.068716742Z"} +2026/03/21 11:51:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":391.8,"last_update":"2026-03-21T11:51:29.069005284Z"} +2026/03/21 11:51:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:51:29.077111319Z"} +2026/03/21 11:51:34 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":13.909224616481776,"throughput_eps":0,"last_update":"2026-03-21T11:51:29.210402548Z"} +2026/03/21 11:51:34 [transform_engine] {"stage_name":"transform_engine","events_processed":65,"events_dropped":0,"avg_latency_ms":500.24836716271125,"throughput_eps":0,"last_update":"2026-03-21T11:51:29.210510945Z"} +2026/03/21 11:51:34 ───────────────────────────────────────────────── +2026/03/21 11:51:39 ── Pipeline Health ────────────────────────────── +2026/03/21 11:51:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":392.8,"last_update":"2026-03-21T11:51:34.069162952Z"} +2026/03/21 11:51:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:51:34.07869053Z"} +2026/03/21 11:51:39 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":13.909224616481776,"throughput_eps":0,"last_update":"2026-03-21T11:51:34.210120194Z"} +2026/03/21 11:51:39 [transform_engine] {"stage_name":"transform_engine","events_processed":65,"events_dropped":0,"avg_latency_ms":500.24836716271125,"throughput_eps":0,"last_update":"2026-03-21T11:51:34.210041733Z"} +2026/03/21 11:51:39 [log_collector] {"stage_name":"log_collector","events_processed":3649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":729.8,"last_update":"2026-03-21T11:51:34.068927712Z"} +2026/03/21 11:51:39 ───────────────────────────────────────────────── +2026/03/21 11:51:44 ── Pipeline Health ────────────────────────────── +2026/03/21 11:51:44 [log_collector] {"stage_name":"log_collector","events_processed":3649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":729.8,"last_update":"2026-03-21T11:51:39.068733658Z"} +2026/03/21 11:51:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":393.8,"last_update":"2026-03-21T11:51:39.069169212Z"} +2026/03/21 11:51:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:51:39.079312979Z"} +2026/03/21 11:51:44 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":13.909224616481776,"throughput_eps":0,"last_update":"2026-03-21T11:51:39.210538532Z"} +2026/03/21 11:51:44 [transform_engine] {"stage_name":"transform_engine","events_processed":65,"events_dropped":0,"avg_latency_ms":500.24836716271125,"throughput_eps":0,"last_update":"2026-03-21T11:51:39.210645698Z"} +2026/03/21 11:51:44 ───────────────────────────────────────────────── +2026/03/21 11:51:49 ── Pipeline Health ────────────────────────────── +2026/03/21 11:51:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":394.8,"last_update":"2026-03-21T11:51:44.069164001Z"} +2026/03/21 11:51:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:51:44.078746083Z"} +2026/03/21 11:51:49 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":13.909224616481776,"throughput_eps":0,"last_update":"2026-03-21T11:51:44.210005981Z"} +2026/03/21 11:51:49 [transform_engine] {"stage_name":"transform_engine","events_processed":65,"events_dropped":0,"avg_latency_ms":500.24836716271125,"throughput_eps":0,"last_update":"2026-03-21T11:51:44.209975543Z"} +2026/03/21 11:51:49 [log_collector] {"stage_name":"log_collector","events_processed":3649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":729.8,"last_update":"2026-03-21T11:51:44.068771059Z"} +2026/03/21 11:51:49 ───────────────────────────────────────────────── +2026/03/21 11:51:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:51:54 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":413.42804533016897,"throughput_eps":0,"last_update":"2026-03-21T11:51:49.276583889Z"} +2026/03/21 11:51:54 [log_collector] {"stage_name":"log_collector","events_processed":3649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":729.8,"last_update":"2026-03-21T11:51:49.068771101Z"} +2026/03/21 11:51:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":395.8,"last_update":"2026-03-21T11:51:49.069070434Z"} +2026/03/21 11:51:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:51:49.078025446Z"} +2026/03/21 11:51:54 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":13.909224616481776,"throughput_eps":0,"last_update":"2026-03-21T11:51:49.210472898Z"} +2026/03/21 11:51:54 ───────────────────────────────────────────────── +2026/03/21 11:51:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:51:59 [log_collector] {"stage_name":"log_collector","events_processed":3649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":729.8,"last_update":"2026-03-21T11:51:54.068662117Z"} +2026/03/21 11:51:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":396.8,"last_update":"2026-03-21T11:51:54.068959966Z"} +2026/03/21 11:51:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":796,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:51:54.079083386Z"} +2026/03/21 11:51:59 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":14.836706093185422,"throughput_eps":0,"last_update":"2026-03-21T11:51:54.210392899Z"} +2026/03/21 11:51:59 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":413.42804533016897,"throughput_eps":0,"last_update":"2026-03-21T11:51:54.210403279Z"} +2026/03/21 11:51:59 ───────────────────────────────────────────────── +Saved state: 11 clusters, 3650 messages, reason: none +2026/03/21 11:52:04 ── Pipeline Health ────────────────────────────── +2026/03/21 11:52:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":397.8,"last_update":"2026-03-21T11:51:59.069397334Z"} +2026/03/21 11:52:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:51:59.07816206Z"} +2026/03/21 11:52:04 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":14.836706093185422,"throughput_eps":0,"last_update":"2026-03-21T11:51:59.210509762Z"} +2026/03/21 11:52:04 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":413.42804533016897,"throughput_eps":0,"last_update":"2026-03-21T11:51:59.210520793Z"} +2026/03/21 11:52:04 [log_collector] {"stage_name":"log_collector","events_processed":3649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":729.8,"last_update":"2026-03-21T11:51:59.069052984Z"} +2026/03/21 11:52:04 ───────────────────────────────────────────────── +2026/03/21 11:52:09 ── Pipeline Health ────────────────────────────── +2026/03/21 11:52:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":800,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:52:04.078898852Z"} +2026/03/21 11:52:09 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":14.836706093185422,"throughput_eps":0,"last_update":"2026-03-21T11:52:04.210100549Z"} +2026/03/21 11:52:09 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":413.42804533016897,"throughput_eps":0,"last_update":"2026-03-21T11:52:04.210112121Z"} +2026/03/21 11:52:09 [log_collector] {"stage_name":"log_collector","events_processed":3652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":730.4,"last_update":"2026-03-21T11:52:04.068933515Z"} +2026/03/21 11:52:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":398.8,"last_update":"2026-03-21T11:52:04.069216377Z"} +2026/03/21 11:52:09 ───────────────────────────────────────────────── +2026/03/21 11:52:14 ── Pipeline Health ────────────────────────────── +2026/03/21 11:52:14 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":413.42804533016897,"throughput_eps":0,"last_update":"2026-03-21T11:52:09.211148789Z"} +2026/03/21 11:52:14 [log_collector] {"stage_name":"log_collector","events_processed":3652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":730.4,"last_update":"2026-03-21T11:52:09.069410061Z"} +2026/03/21 11:52:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":399.6,"last_update":"2026-03-21T11:52:09.068518433Z"} +2026/03/21 11:52:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":802,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:52:09.076628146Z"} +2026/03/21 11:52:14 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":14.836706093185422,"throughput_eps":0,"last_update":"2026-03-21T11:52:09.211131867Z"} +2026/03/21 11:52:14 ───────────────────────────────────────────────── +2026/03/21 11:52:19 ── Pipeline Health ────────────────────────────── +2026/03/21 11:52:19 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":413.42804533016897,"throughput_eps":0,"last_update":"2026-03-21T11:52:14.210612457Z"} +2026/03/21 11:52:19 [log_collector] {"stage_name":"log_collector","events_processed":3663,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":732.6,"last_update":"2026-03-21T11:52:14.068625072Z"} +2026/03/21 11:52:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2003,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":400.6,"last_update":"2026-03-21T11:52:14.068440869Z"} +2026/03/21 11:52:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:52:14.077243929Z"} +2026/03/21 11:52:19 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":14.836706093185422,"throughput_eps":0,"last_update":"2026-03-21T11:52:14.210600163Z"} +2026/03/21 11:52:19 ───────────────────────────────────────────────── +2026/03/21 11:52:24 ── Pipeline Health ────────────────────────────── +2026/03/21 11:52:24 [log_collector] {"stage_name":"log_collector","events_processed":3663,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":732.6,"last_update":"2026-03-21T11:52:19.068703809Z"} +2026/03/21 11:52:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2008,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":401.6,"last_update":"2026-03-21T11:52:19.068579932Z"} +2026/03/21 11:52:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:52:19.077431224Z"} +2026/03/21 11:52:24 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":14.836706093185422,"throughput_eps":0,"last_update":"2026-03-21T11:52:19.210682267Z"} +2026/03/21 11:52:24 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":700.0769998641352,"throughput_eps":0,"last_update":"2026-03-21T11:52:21.057375434Z"} +2026/03/21 11:52:24 ───────────────────────────────────────────────── +2026/03/21 11:52:29 ── Pipeline Health ────────────────────────────── +2026/03/21 11:52:29 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":700.0769998641352,"throughput_eps":0,"last_update":"2026-03-21T11:52:24.210108176Z"} +2026/03/21 11:52:29 [log_collector] {"stage_name":"log_collector","events_processed":3677,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":735.4,"last_update":"2026-03-21T11:52:24.068672248Z"} +2026/03/21 11:52:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":402.8,"last_update":"2026-03-21T11:52:24.069073687Z"} +2026/03/21 11:52:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:52:24.075754252Z"} +2026/03/21 11:52:29 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.603519474548339,"throughput_eps":0,"last_update":"2026-03-21T11:52:24.210102706Z"} +2026/03/21 11:52:29 ───────────────────────────────────────────────── +2026/03/21 11:52:34 ── Pipeline Health ────────────────────────────── +2026/03/21 11:52:34 [log_collector] {"stage_name":"log_collector","events_processed":3679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":735.8,"last_update":"2026-03-21T11:52:29.068701686Z"} +2026/03/21 11:52:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":403.8,"last_update":"2026-03-21T11:52:29.069071144Z"} +2026/03/21 11:52:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:52:29.077198891Z"} +2026/03/21 11:52:34 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.603519474548339,"throughput_eps":0,"last_update":"2026-03-21T11:52:29.21062026Z"} +2026/03/21 11:52:34 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":700.0769998641352,"throughput_eps":0,"last_update":"2026-03-21T11:52:29.210583339Z"} +2026/03/21 11:52:34 ───────────────────────────────────────────────── +2026/03/21 11:52:39 ── Pipeline Health ────────────────────────────── +2026/03/21 11:52:39 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":700.0769998641352,"throughput_eps":0,"last_update":"2026-03-21T11:52:34.210283331Z"} +2026/03/21 11:52:39 [log_collector] {"stage_name":"log_collector","events_processed":3687,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":737.4,"last_update":"2026-03-21T11:52:34.068415605Z"} +2026/03/21 11:52:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":404.8,"last_update":"2026-03-21T11:52:34.068707243Z"} +2026/03/21 11:52:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":812,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:52:34.075512036Z"} +2026/03/21 11:52:39 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.603519474548339,"throughput_eps":0,"last_update":"2026-03-21T11:52:34.210303739Z"} +2026/03/21 11:52:39 ───────────────────────────────────────────────── +2026/03/21 11:52:44 ── Pipeline Health ────────────────────────────── +2026/03/21 11:52:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":405.8,"last_update":"2026-03-21T11:52:39.069224041Z"} +2026/03/21 11:52:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:52:39.077485113Z"} +2026/03/21 11:52:44 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.603519474548339,"throughput_eps":0,"last_update":"2026-03-21T11:52:39.210854203Z"} +2026/03/21 11:52:44 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":700.0769998641352,"throughput_eps":0,"last_update":"2026-03-21T11:52:39.209655727Z"} +2026/03/21 11:52:44 [log_collector] {"stage_name":"log_collector","events_processed":3693,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":738.6,"last_update":"2026-03-21T11:52:39.06907745Z"} +2026/03/21 11:52:44 ───────────────────────────────────────────────── +2026/03/21 11:52:49 ── Pipeline Health ────────────────────────────── +2026/03/21 11:52:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":406.8,"last_update":"2026-03-21T11:52:44.06907777Z"} +2026/03/21 11:52:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":816,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:52:44.0781728Z"} +2026/03/21 11:52:49 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.603519474548339,"throughput_eps":0,"last_update":"2026-03-21T11:52:44.210611015Z"} +2026/03/21 11:52:49 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":700.0769998641352,"throughput_eps":0,"last_update":"2026-03-21T11:52:44.210505023Z"} +2026/03/21 11:52:49 [log_collector] {"stage_name":"log_collector","events_processed":3693,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":738.6,"last_update":"2026-03-21T11:52:44.068911872Z"} +2026/03/21 11:52:49 ───────────────────────────────────────────────── +2026/03/21 11:52:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:52:54 [log_collector] {"stage_name":"log_collector","events_processed":3693,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":738.6,"last_update":"2026-03-21T11:52:49.068899521Z"} +2026/03/21 11:52:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":407.8,"last_update":"2026-03-21T11:52:49.069041332Z"} +2026/03/21 11:52:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":818,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:52:49.07715344Z"} +2026/03/21 11:52:54 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.603519474548339,"throughput_eps":0,"last_update":"2026-03-21T11:52:49.210443798Z"} +2026/03/21 11:52:54 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":700.0769998641352,"throughput_eps":0,"last_update":"2026-03-21T11:52:49.210412879Z"} +2026/03/21 11:52:54 ───────────────────────────────────────────────── +2026/03/21 11:52:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:52:59 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":14.81266617963867,"throughput_eps":0,"last_update":"2026-03-21T11:52:54.209897377Z"} +2026/03/21 11:52:59 [transform_engine] {"stage_name":"transform_engine","events_processed":68,"events_dropped":0,"avg_latency_ms":582.3273970913082,"throughput_eps":0,"last_update":"2026-03-21T11:52:54.209753421Z"} +2026/03/21 11:52:59 [log_collector] {"stage_name":"log_collector","events_processed":3693,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":738.6,"last_update":"2026-03-21T11:52:54.068806247Z"} +2026/03/21 11:52:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":408.8,"last_update":"2026-03-21T11:52:54.069450852Z"} +2026/03/21 11:52:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":820,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:52:54.078438035Z"} +2026/03/21 11:52:59 ───────────────────────────────────────────────── +2026/03/21 11:53:04 ── Pipeline Health ────────────────────────────── +2026/03/21 11:53:04 [log_collector] {"stage_name":"log_collector","events_processed":3693,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":738.6,"last_update":"2026-03-21T11:52:59.068826574Z"} +2026/03/21 11:53:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":409.8,"last_update":"2026-03-21T11:52:59.069322975Z"} +2026/03/21 11:53:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:52:59.077741449Z"} +2026/03/21 11:53:04 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":14.81266617963867,"throughput_eps":0,"last_update":"2026-03-21T11:52:59.210081798Z"} +2026/03/21 11:53:04 [transform_engine] {"stage_name":"transform_engine","events_processed":68,"events_dropped":0,"avg_latency_ms":582.3273970913082,"throughput_eps":0,"last_update":"2026-03-21T11:52:59.210109661Z"} +2026/03/21 11:53:04 ───────────────────────────────────────────────── +2026/03/21 11:53:09 ── Pipeline Health ────────────────────────────── +2026/03/21 11:53:09 [log_collector] {"stage_name":"log_collector","events_processed":3693,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":738.6,"last_update":"2026-03-21T11:53:04.068661408Z"} +2026/03/21 11:53:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":410.8,"last_update":"2026-03-21T11:53:04.069047236Z"} +2026/03/21 11:53:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:53:04.077283921Z"} +2026/03/21 11:53:09 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":14.81266617963867,"throughput_eps":0,"last_update":"2026-03-21T11:53:04.21057935Z"} +2026/03/21 11:53:09 [transform_engine] {"stage_name":"transform_engine","events_processed":68,"events_dropped":0,"avg_latency_ms":582.3273970913082,"throughput_eps":0,"last_update":"2026-03-21T11:53:04.210559091Z"} +2026/03/21 11:53:09 ───────────────────────────────────────────────── +2026/03/21 11:53:14 ── Pipeline Health ────────────────────────────── +2026/03/21 11:53:14 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":14.81266617963867,"throughput_eps":0,"last_update":"2026-03-21T11:53:09.210073741Z"} +2026/03/21 11:53:14 [transform_engine] {"stage_name":"transform_engine","events_processed":68,"events_dropped":0,"avg_latency_ms":582.3273970913082,"throughput_eps":0,"last_update":"2026-03-21T11:53:09.210178411Z"} +2026/03/21 11:53:14 [log_collector] {"stage_name":"log_collector","events_processed":3693,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":738.6,"last_update":"2026-03-21T11:53:09.068604368Z"} +2026/03/21 11:53:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":411.8,"last_update":"2026-03-21T11:53:09.068889203Z"} +2026/03/21 11:53:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":826,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:53:09.077838544Z"} +2026/03/21 11:53:14 ───────────────────────────────────────────────── +2026/03/21 11:53:19 ── Pipeline Health ────────────────────────────── +2026/03/21 11:53:19 [log_collector] {"stage_name":"log_collector","events_processed":3693,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":738.6,"last_update":"2026-03-21T11:53:14.068889527Z"} +2026/03/21 11:53:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":412.8,"last_update":"2026-03-21T11:53:14.069227905Z"} +2026/03/21 11:53:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:53:14.078757467Z"} +2026/03/21 11:53:19 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":14.81266617963867,"throughput_eps":0,"last_update":"2026-03-21T11:53:14.210094364Z"} +2026/03/21 11:53:19 [transform_engine] {"stage_name":"transform_engine","events_processed":68,"events_dropped":0,"avg_latency_ms":582.3273970913082,"throughput_eps":0,"last_update":"2026-03-21T11:53:14.210119112Z"} +2026/03/21 11:53:19 ───────────────────────────────────────────────── +2026/03/21 11:53:24 ── Pipeline Health ────────────────────────────── +2026/03/21 11:53:24 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":478.94397147304653,"throughput_eps":0,"last_update":"2026-03-21T11:53:19.275131673Z"} +2026/03/21 11:53:24 [log_collector] {"stage_name":"log_collector","events_processed":3693,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":738.6,"last_update":"2026-03-21T11:53:19.068661986Z"} +2026/03/21 11:53:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":413.8,"last_update":"2026-03-21T11:53:19.068933214Z"} +2026/03/21 11:53:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":830,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:53:19.077521304Z"} +2026/03/21 11:53:24 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":14.81266617963867,"throughput_eps":0,"last_update":"2026-03-21T11:53:19.210786604Z"} +2026/03/21 11:53:24 ───────────────────────────────────────────────── +2026/03/21 11:53:29 ── Pipeline Health ────────────────────────────── +2026/03/21 11:53:29 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":478.94397147304653,"throughput_eps":0,"last_update":"2026-03-21T11:53:24.209698458Z"} +2026/03/21 11:53:29 [log_collector] {"stage_name":"log_collector","events_processed":3693,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":738.6,"last_update":"2026-03-21T11:53:24.068257469Z"} +2026/03/21 11:53:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":414.8,"last_update":"2026-03-21T11:53:24.068881413Z"} +2026/03/21 11:53:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":832,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:53:24.078469688Z"} +2026/03/21 11:53:29 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":15.456405943710937,"throughput_eps":0,"last_update":"2026-03-21T11:53:24.210820167Z"} +2026/03/21 11:53:29 ───────────────────────────────────────────────── +2026/03/21 11:53:34 ── Pipeline Health ────────────────────────────── +2026/03/21 11:53:34 [log_collector] {"stage_name":"log_collector","events_processed":3693,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":738.6,"last_update":"2026-03-21T11:53:29.068727719Z"} +2026/03/21 11:53:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":415.8,"last_update":"2026-03-21T11:53:29.069155829Z"} +2026/03/21 11:53:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:53:29.077775076Z"} +2026/03/21 11:53:34 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":15.456405943710937,"throughput_eps":0,"last_update":"2026-03-21T11:53:29.210190219Z"} +2026/03/21 11:53:34 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":478.94397147304653,"throughput_eps":0,"last_update":"2026-03-21T11:53:29.21022214Z"} +2026/03/21 11:53:34 ───────────────────────────────────────────────── +Saved state: 11 clusters, 3694 messages, reason: none +2026/03/21 11:53:39 ── Pipeline Health ────────────────────────────── +2026/03/21 11:53:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":416.8,"last_update":"2026-03-21T11:53:34.0685759Z"} +2026/03/21 11:53:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:53:34.077813823Z"} +2026/03/21 11:53:39 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":15.456405943710937,"throughput_eps":0,"last_update":"2026-03-21T11:53:34.210067496Z"} +2026/03/21 11:53:39 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":478.94397147304653,"throughput_eps":0,"last_update":"2026-03-21T11:53:34.210082024Z"} +2026/03/21 11:53:39 [log_collector] {"stage_name":"log_collector","events_processed":3693,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":738.6,"last_update":"2026-03-21T11:53:34.068078688Z"} +2026/03/21 11:53:39 ───────────────────────────────────────────────── +2026/03/21 11:53:44 ── Pipeline Health ────────────────────────────── +2026/03/21 11:53:44 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":478.94397147304653,"throughput_eps":0,"last_update":"2026-03-21T11:53:39.209943062Z"} +2026/03/21 11:53:44 [log_collector] {"stage_name":"log_collector","events_processed":3698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":739.6,"last_update":"2026-03-21T11:53:39.06866256Z"} +2026/03/21 11:53:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":417.8,"last_update":"2026-03-21T11:53:39.068800805Z"} +2026/03/21 11:53:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:53:39.075717171Z"} +2026/03/21 11:53:44 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":15.456405943710937,"throughput_eps":0,"last_update":"2026-03-21T11:53:39.209964873Z"} +2026/03/21 11:53:44 ───────────────────────────────────────────────── +2026/03/21 11:53:49 ── Pipeline Health ────────────────────────────── +2026/03/21 11:53:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":418.8,"last_update":"2026-03-21T11:53:44.069042754Z"} +2026/03/21 11:53:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:53:44.074960107Z"} +2026/03/21 11:53:49 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":15.456405943710937,"throughput_eps":0,"last_update":"2026-03-21T11:53:44.210178479Z"} +2026/03/21 11:53:49 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":478.94397147304653,"throughput_eps":0,"last_update":"2026-03-21T11:53:44.21014285Z"} +2026/03/21 11:53:49 [log_collector] {"stage_name":"log_collector","events_processed":3698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":739.6,"last_update":"2026-03-21T11:53:49.068165352Z"} +2026/03/21 11:53:49 ───────────────────────────────────────────────── +2026/03/21 11:53:50 [ANOMALY] time=2026-03-21T11:53:50Z score=0.9105 method=SEAD details=MAD!:w=0.28,s=0.91 RRCF-fast!:w=0.18,s=0.96 RRCF-mid!:w=0.17,s=0.94 RRCF-slow!:w=0.17,s=0.94 COPOD!:w=0.20,s=0.81 +2026/03/21 11:53:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:53:54 [log_collector] {"stage_name":"log_collector","events_processed":3698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":739.6,"last_update":"2026-03-21T11:53:49.068165352Z"} +2026/03/21 11:53:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":419.8,"last_update":"2026-03-21T11:53:49.068565288Z"} +2026/03/21 11:53:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:53:49.076393902Z"} +2026/03/21 11:53:54 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":15.456405943710937,"throughput_eps":0,"last_update":"2026-03-21T11:53:49.210661141Z"} +2026/03/21 11:53:54 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":478.94397147304653,"throughput_eps":0,"last_update":"2026-03-21T11:53:49.21068659Z"} +2026/03/21 11:53:54 ───────────────────────────────────────────────── +2026/03/21 11:53:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:53:59 [log_collector] {"stage_name":"log_collector","events_processed":3698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":739.6,"last_update":"2026-03-21T11:53:59.068066835Z"} +2026/03/21 11:53:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":420.8,"last_update":"2026-03-21T11:53:54.068817401Z"} +2026/03/21 11:53:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:53:54.075132867Z"} +2026/03/21 11:53:59 [detection_layer] {"stage_name":"detection_layer","events_processed":70,"events_dropped":0,"avg_latency_ms":14.085351554968751,"throughput_eps":0,"last_update":"2026-03-21T11:53:54.210357771Z"} +2026/03/21 11:53:59 [transform_engine] {"stage_name":"transform_engine","events_processed":70,"events_dropped":0,"avg_latency_ms":694.9139017784373,"throughput_eps":0,"last_update":"2026-03-21T11:53:54.210363893Z"} +2026/03/21 11:53:59 ───────────────────────────────────────────────── +2026/03/21 11:54:04 ── Pipeline Health ────────────────────────────── +2026/03/21 11:54:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:53:59.075078455Z"} +2026/03/21 11:54:04 [detection_layer] {"stage_name":"detection_layer","events_processed":70,"events_dropped":0,"avg_latency_ms":14.085351554968751,"throughput_eps":0,"last_update":"2026-03-21T11:53:59.21067419Z"} +2026/03/21 11:54:04 [transform_engine] {"stage_name":"transform_engine","events_processed":70,"events_dropped":0,"avg_latency_ms":694.9139017784373,"throughput_eps":0,"last_update":"2026-03-21T11:53:59.209624218Z"} +2026/03/21 11:54:04 [log_collector] {"stage_name":"log_collector","events_processed":3698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":739.6,"last_update":"2026-03-21T11:53:59.068066835Z"} +2026/03/21 11:54:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":421.8,"last_update":"2026-03-21T11:53:59.068513451Z"} +2026/03/21 11:54:04 ───────────────────────────────────────────────── +2026/03/21 11:54:09 ── Pipeline Health ────────────────────────────── +2026/03/21 11:54:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":422.8,"last_update":"2026-03-21T11:54:04.069136979Z"} +2026/03/21 11:54:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":848,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:54:04.075183269Z"} +2026/03/21 11:54:09 [detection_layer] {"stage_name":"detection_layer","events_processed":70,"events_dropped":0,"avg_latency_ms":14.085351554968751,"throughput_eps":0,"last_update":"2026-03-21T11:54:04.210401802Z"} +2026/03/21 11:54:09 [transform_engine] {"stage_name":"transform_engine","events_processed":70,"events_dropped":0,"avg_latency_ms":694.9139017784373,"throughput_eps":0,"last_update":"2026-03-21T11:54:04.210412131Z"} +2026/03/21 11:54:09 [log_collector] {"stage_name":"log_collector","events_processed":3698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":739.6,"last_update":"2026-03-21T11:54:04.068936816Z"} +2026/03/21 11:54:09 ───────────────────────────────────────────────── +2026/03/21 11:54:14 ── Pipeline Health ────────────────────────────── +2026/03/21 11:54:14 [transform_engine] {"stage_name":"transform_engine","events_processed":70,"events_dropped":0,"avg_latency_ms":694.9139017784373,"throughput_eps":0,"last_update":"2026-03-21T11:54:09.210646725Z"} +2026/03/21 11:54:14 [log_collector] {"stage_name":"log_collector","events_processed":3698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":739.6,"last_update":"2026-03-21T11:54:09.068452602Z"} +2026/03/21 11:54:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":423.8,"last_update":"2026-03-21T11:54:09.068825136Z"} +2026/03/21 11:54:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:54:09.07438747Z"} +2026/03/21 11:54:14 [detection_layer] {"stage_name":"detection_layer","events_processed":70,"events_dropped":0,"avg_latency_ms":14.085351554968751,"throughput_eps":0,"last_update":"2026-03-21T11:54:09.210636826Z"} +2026/03/21 11:54:14 ───────────────────────────────────────────────── +2026/03/21 11:54:19 ── Pipeline Health ────────────────────────────── +2026/03/21 11:54:19 [log_collector] {"stage_name":"log_collector","events_processed":3698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":739.6,"last_update":"2026-03-21T11:54:14.069050386Z"} +2026/03/21 11:54:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":424.8,"last_update":"2026-03-21T11:54:14.069153062Z"} +2026/03/21 11:54:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:54:14.076527827Z"} +2026/03/21 11:54:19 [detection_layer] {"stage_name":"detection_layer","events_processed":70,"events_dropped":0,"avg_latency_ms":14.085351554968751,"throughput_eps":0,"last_update":"2026-03-21T11:54:14.210790909Z"} +2026/03/21 11:54:19 [transform_engine] {"stage_name":"transform_engine","events_processed":70,"events_dropped":0,"avg_latency_ms":694.9139017784373,"throughput_eps":0,"last_update":"2026-03-21T11:54:14.209682867Z"} +2026/03/21 11:54:19 ───────────────────────────────────────────────── +2026/03/21 11:54:23 [ANOMALY] time=2026-03-21T11:54:20Z score=0.9745 method=SEAD details=MAD!:w=0.28,s=0.99 RRCF-fast!:w=0.18,s=0.96 RRCF-mid!:w=0.17,s=1.00 RRCF-slow!:w=0.17,s=0.99 COPOD!:w=0.20,s=0.94 +2026/03/21 11:54:24 ── Pipeline Health ────────────────────────────── +2026/03/21 11:54:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":425.8,"last_update":"2026-03-21T11:54:19.06917317Z"} +2026/03/21 11:54:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:54:19.075321355Z"} +2026/03/21 11:54:24 [detection_layer] {"stage_name":"detection_layer","events_processed":70,"events_dropped":0,"avg_latency_ms":14.085351554968751,"throughput_eps":0,"last_update":"2026-03-21T11:54:19.210633206Z"} +2026/03/21 11:54:24 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":1338.07251002275,"throughput_eps":0,"last_update":"2026-03-21T11:54:23.12132541Z"} +2026/03/21 11:54:24 [log_collector] {"stage_name":"log_collector","events_processed":3701,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":740.2,"last_update":"2026-03-21T11:54:19.068829561Z"} +2026/03/21 11:54:24 ───────────────────────────────────────────────── +2026/03/21 11:54:29 ── Pipeline Health ────────────────────────────── +2026/03/21 11:54:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:54:24.077896709Z"} +2026/03/21 11:54:29 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.448510843975003,"throughput_eps":0,"last_update":"2026-03-21T11:54:24.210397907Z"} +2026/03/21 11:54:29 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":1338.07251002275,"throughput_eps":0,"last_update":"2026-03-21T11:54:24.21024803Z"} +2026/03/21 11:54:29 [log_collector] {"stage_name":"log_collector","events_processed":3707,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":741.4,"last_update":"2026-03-21T11:54:24.069024065Z"} +2026/03/21 11:54:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":426.8,"last_update":"2026-03-21T11:54:24.069501509Z"} +2026/03/21 11:54:29 ───────────────────────────────────────────────── +2026/03/21 11:54:34 ── Pipeline Health ────────────────────────────── +2026/03/21 11:54:34 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.448510843975003,"throughput_eps":0,"last_update":"2026-03-21T11:54:29.210045325Z"} +2026/03/21 11:54:34 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":1338.07251002275,"throughput_eps":0,"last_update":"2026-03-21T11:54:29.210076484Z"} +2026/03/21 11:54:34 [log_collector] {"stage_name":"log_collector","events_processed":3813,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":762.6,"last_update":"2026-03-21T11:54:29.068456171Z"} +2026/03/21 11:54:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":427.8,"last_update":"2026-03-21T11:54:29.068747819Z"} +2026/03/21 11:54:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:54:29.074129807Z"} +2026/03/21 11:54:34 ───────────────────────────────────────────────── +2026/03/21 11:54:39 ── Pipeline Health ────────────────────────────── +2026/03/21 11:54:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":428.8,"last_update":"2026-03-21T11:54:34.06923162Z"} +2026/03/21 11:54:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":860,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:54:34.076147876Z"} +2026/03/21 11:54:39 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.448510843975003,"throughput_eps":0,"last_update":"2026-03-21T11:54:34.210195376Z"} +2026/03/21 11:54:39 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":1338.07251002275,"throughput_eps":0,"last_update":"2026-03-21T11:54:34.210240413Z"} +2026/03/21 11:54:39 [log_collector] {"stage_name":"log_collector","events_processed":4058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":811.6,"last_update":"2026-03-21T11:54:39.068280727Z"} +2026/03/21 11:54:39 ───────────────────────────────────────────────── +2026/03/21 11:54:44 ── Pipeline Health ────────────────────────────── +2026/03/21 11:54:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":862,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:54:39.076591103Z"} +2026/03/21 11:54:44 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.448510843975003,"throughput_eps":0,"last_update":"2026-03-21T11:54:39.209860944Z"} +2026/03/21 11:54:44 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":1338.07251002275,"throughput_eps":0,"last_update":"2026-03-21T11:54:39.209839593Z"} +2026/03/21 11:54:44 [log_collector] {"stage_name":"log_collector","events_processed":4058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":811.6,"last_update":"2026-03-21T11:54:39.068280727Z"} +2026/03/21 11:54:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":429.8,"last_update":"2026-03-21T11:54:39.068852211Z"} +2026/03/21 11:54:44 ───────────────────────────────────────────────── +2026/03/21 11:54:49 ── Pipeline Health ────────────────────────────── +2026/03/21 11:54:49 [log_collector] {"stage_name":"log_collector","events_processed":4058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":811.6,"last_update":"2026-03-21T11:54:44.069052866Z"} +2026/03/21 11:54:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":430.8,"last_update":"2026-03-21T11:54:44.069720044Z"} +2026/03/21 11:54:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:54:44.078717296Z"} +2026/03/21 11:54:49 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.448510843975003,"throughput_eps":0,"last_update":"2026-03-21T11:54:44.210232996Z"} +2026/03/21 11:54:49 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":1338.07251002275,"throughput_eps":0,"last_update":"2026-03-21T11:54:44.210112295Z"} +2026/03/21 11:54:49 ───────────────────────────────────────────────── +2026/03/21 11:54:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:54:54 [log_collector] {"stage_name":"log_collector","events_processed":4058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":811.6,"last_update":"2026-03-21T11:54:49.068869274Z"} +2026/03/21 11:54:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":431.8,"last_update":"2026-03-21T11:54:49.069594874Z"} +2026/03/21 11:54:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:54:49.079172938Z"} +2026/03/21 11:54:54 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.448510843975003,"throughput_eps":0,"last_update":"2026-03-21T11:54:49.210679752Z"} +2026/03/21 11:54:54 [transform_engine] {"stage_name":"transform_engine","events_processed":72,"events_dropped":0,"avg_latency_ms":1092.9458688182,"throughput_eps":0,"last_update":"2026-03-21T11:54:49.323018403Z"} +2026/03/21 11:54:54 ───────────────────────────────────────────────── +2026/03/21 11:54:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:54:59 [transform_engine] {"stage_name":"transform_engine","events_processed":72,"events_dropped":0,"avg_latency_ms":1092.9458688182,"throughput_eps":0,"last_update":"2026-03-21T11:54:54.21056359Z"} +2026/03/21 11:54:59 [log_collector] {"stage_name":"log_collector","events_processed":4058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":811.6,"last_update":"2026-03-21T11:54:54.068741591Z"} +2026/03/21 11:54:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":432.8,"last_update":"2026-03-21T11:54:54.069494924Z"} +2026/03/21 11:54:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":868,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:54:54.07831698Z"} +2026/03/21 11:54:59 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":13.735109475180003,"throughput_eps":0,"last_update":"2026-03-21T11:54:54.210588959Z"} +2026/03/21 11:54:59 ───────────────────────────────────────────────── +2026/03/21 11:55:04 ── Pipeline Health ────────────────────────────── +2026/03/21 11:55:04 [log_collector] {"stage_name":"log_collector","events_processed":4058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":811.6,"last_update":"2026-03-21T11:54:59.068126147Z"} +2026/03/21 11:55:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":433.8,"last_update":"2026-03-21T11:54:59.068567173Z"} +2026/03/21 11:55:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:54:59.078585109Z"} +2026/03/21 11:55:04 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":13.735109475180003,"throughput_eps":0,"last_update":"2026-03-21T11:54:59.209898522Z"} +2026/03/21 11:55:04 [transform_engine] {"stage_name":"transform_engine","events_processed":72,"events_dropped":0,"avg_latency_ms":1092.9458688182,"throughput_eps":0,"last_update":"2026-03-21T11:54:59.209849778Z"} +2026/03/21 11:55:04 ───────────────────────────────────────────────── +2026/03/21 11:55:09 ── Pipeline Health ────────────────────────────── +2026/03/21 11:55:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:55:04.077835428Z"} +2026/03/21 11:55:09 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":13.735109475180003,"throughput_eps":0,"last_update":"2026-03-21T11:55:04.210286771Z"} +2026/03/21 11:55:09 [transform_engine] {"stage_name":"transform_engine","events_processed":72,"events_dropped":0,"avg_latency_ms":1092.9458688182,"throughput_eps":0,"last_update":"2026-03-21T11:55:04.210309895Z"} +2026/03/21 11:55:09 [log_collector] {"stage_name":"log_collector","events_processed":4058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":811.6,"last_update":"2026-03-21T11:55:04.068920344Z"} +2026/03/21 11:55:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":434.8,"last_update":"2026-03-21T11:55:04.069309088Z"} +2026/03/21 11:55:09 ───────────────────────────────────────────────── +2026/03/21 11:55:14 ── Pipeline Health ────────────────────────────── +2026/03/21 11:55:14 [log_collector] {"stage_name":"log_collector","events_processed":4058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":811.6,"last_update":"2026-03-21T11:55:09.068169505Z"} +2026/03/21 11:55:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":435.8,"last_update":"2026-03-21T11:55:09.06868424Z"} +2026/03/21 11:55:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:55:09.077900752Z"} +2026/03/21 11:55:14 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":13.735109475180003,"throughput_eps":0,"last_update":"2026-03-21T11:55:09.210292701Z"} +2026/03/21 11:55:14 [transform_engine] {"stage_name":"transform_engine","events_processed":72,"events_dropped":0,"avg_latency_ms":1092.9458688182,"throughput_eps":0,"last_update":"2026-03-21T11:55:09.210385158Z"} +2026/03/21 11:55:14 ───────────────────────────────────────────────── +2026/03/21 11:55:19 ── Pipeline Health ────────────────────────────── +2026/03/21 11:55:19 [log_collector] {"stage_name":"log_collector","events_processed":4058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":811.6,"last_update":"2026-03-21T11:55:14.068964975Z"} +2026/03/21 11:55:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":436.8,"last_update":"2026-03-21T11:55:14.069245262Z"} +2026/03/21 11:55:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":876,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:55:14.07798991Z"} +2026/03/21 11:55:19 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":13.735109475180003,"throughput_eps":0,"last_update":"2026-03-21T11:55:14.210253283Z"} +2026/03/21 11:55:19 [transform_engine] {"stage_name":"transform_engine","events_processed":72,"events_dropped":0,"avg_latency_ms":1092.9458688182,"throughput_eps":0,"last_update":"2026-03-21T11:55:14.210265136Z"} +2026/03/21 11:55:19 ───────────────────────────────────────────────── +2026/03/21 11:55:24 ── Pipeline Health ────────────────────────────── +2026/03/21 11:55:24 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":887.3830862545601,"throughput_eps":0,"last_update":"2026-03-21T11:55:19.275546399Z"} +2026/03/21 11:55:24 [log_collector] {"stage_name":"log_collector","events_processed":4058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":811.6,"last_update":"2026-03-21T11:55:19.068738321Z"} +2026/03/21 11:55:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":437.8,"last_update":"2026-03-21T11:55:19.069329073Z"} +2026/03/21 11:55:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:55:19.077038549Z"} +2026/03/21 11:55:24 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":13.735109475180003,"throughput_eps":0,"last_update":"2026-03-21T11:55:19.210398883Z"} +2026/03/21 11:55:24 ───────────────────────────────────────────────── +2026/03/21 11:55:29 ── Pipeline Health ────────────────────────────── +2026/03/21 11:55:29 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.460402180144005,"throughput_eps":0,"last_update":"2026-03-21T11:55:24.210638051Z"} +2026/03/21 11:55:29 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":887.3830862545601,"throughput_eps":0,"last_update":"2026-03-21T11:55:24.210652169Z"} +2026/03/21 11:55:29 [log_collector] {"stage_name":"log_collector","events_processed":4058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":811.6,"last_update":"2026-03-21T11:55:29.068082671Z"} +2026/03/21 11:55:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":438.8,"last_update":"2026-03-21T11:55:24.068916504Z"} +2026/03/21 11:55:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:55:24.077384863Z"} +2026/03/21 11:55:29 ───────────────────────────────────────────────── +2026/03/21 11:55:34 ── Pipeline Health ────────────────────────────── +2026/03/21 11:55:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:55:29.07725056Z"} +2026/03/21 11:55:34 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.460402180144005,"throughput_eps":0,"last_update":"2026-03-21T11:55:29.210476396Z"} +2026/03/21 11:55:34 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":887.3830862545601,"throughput_eps":0,"last_update":"2026-03-21T11:55:29.210498388Z"} +2026/03/21 11:55:34 [log_collector] {"stage_name":"log_collector","events_processed":4058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":811.6,"last_update":"2026-03-21T11:55:29.068082671Z"} +2026/03/21 11:55:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":439.8,"last_update":"2026-03-21T11:55:29.068579682Z"} +2026/03/21 11:55:34 ───────────────────────────────────────────────── +2026/03/21 11:55:39 ── Pipeline Health ────────────────────────────── +2026/03/21 11:55:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:55:34.078387142Z"} +2026/03/21 11:55:39 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.460402180144005,"throughput_eps":0,"last_update":"2026-03-21T11:55:34.210611691Z"} +2026/03/21 11:55:39 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":887.3830862545601,"throughput_eps":0,"last_update":"2026-03-21T11:55:34.210504516Z"} +2026/03/21 11:55:39 [log_collector] {"stage_name":"log_collector","events_processed":4058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":811.6,"last_update":"2026-03-21T11:55:34.068477242Z"} +2026/03/21 11:55:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":440.8,"last_update":"2026-03-21T11:55:34.069004893Z"} +2026/03/21 11:55:39 ───────────────────────────────────────────────── +Saved state: 11 clusters, 4059 messages, reason: none +2026/03/21 11:55:44 ── Pipeline Health ────────────────────────────── +2026/03/21 11:55:44 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":887.3830862545601,"throughput_eps":0,"last_update":"2026-03-21T11:55:39.210600288Z"} +2026/03/21 11:55:44 [log_collector] {"stage_name":"log_collector","events_processed":4058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":811.6,"last_update":"2026-03-21T11:55:39.068131168Z"} +2026/03/21 11:55:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":441.8,"last_update":"2026-03-21T11:55:39.068584977Z"} +2026/03/21 11:55:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":886,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:55:39.078231984Z"} +2026/03/21 11:55:44 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.460402180144005,"throughput_eps":0,"last_update":"2026-03-21T11:55:39.210563517Z"} +2026/03/21 11:55:44 ───────────────────────────────────────────────── +2026/03/21 11:55:49 ── Pipeline Health ────────────────────────────── +2026/03/21 11:55:49 [log_collector] {"stage_name":"log_collector","events_processed":4061,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":812.2,"last_update":"2026-03-21T11:55:44.068243391Z"} +2026/03/21 11:55:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2213,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":442.6,"last_update":"2026-03-21T11:55:44.068149511Z"} +2026/03/21 11:55:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:55:44.075089914Z"} +2026/03/21 11:55:49 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.460402180144005,"throughput_eps":0,"last_update":"2026-03-21T11:55:44.21036706Z"} +2026/03/21 11:55:49 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":887.3830862545601,"throughput_eps":0,"last_update":"2026-03-21T11:55:44.210369524Z"} +2026/03/21 11:55:49 ───────────────────────────────────────────────── +2026/03/21 11:55:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:55:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":443.8,"last_update":"2026-03-21T11:55:49.068986344Z"} +2026/03/21 11:55:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:55:49.077379029Z"} +2026/03/21 11:55:54 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.460402180144005,"throughput_eps":0,"last_update":"2026-03-21T11:55:49.211092509Z"} +2026/03/21 11:55:54 [transform_engine] {"stage_name":"transform_engine","events_processed":74,"events_dropped":0,"avg_latency_ms":1158.5768900036483,"throughput_eps":0,"last_update":"2026-03-21T11:55:51.453745915Z"} +2026/03/21 11:55:54 [log_collector] {"stage_name":"log_collector","events_processed":4061,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":812.2,"last_update":"2026-03-21T11:55:49.06872315Z"} +2026/03/21 11:55:54 ───────────────────────────────────────────────── +2026/03/21 11:55:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:55:59 [transform_engine] {"stage_name":"transform_engine","events_processed":74,"events_dropped":0,"avg_latency_ms":1158.5768900036483,"throughput_eps":0,"last_update":"2026-03-21T11:55:54.210131019Z"} +2026/03/21 11:55:59 [log_collector] {"stage_name":"log_collector","events_processed":4072,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":814.4,"last_update":"2026-03-21T11:55:54.069074884Z"} +2026/03/21 11:55:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":444.8,"last_update":"2026-03-21T11:55:54.069413373Z"} +2026/03/21 11:55:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":892,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:55:54.077839732Z"} +2026/03/21 11:55:59 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":13.773603544115204,"throughput_eps":0,"last_update":"2026-03-21T11:55:54.210088657Z"} +2026/03/21 11:55:59 ───────────────────────────────────────────────── +2026/03/21 11:56:04 ── Pipeline Health ────────────────────────────── +2026/03/21 11:56:04 [log_collector] {"stage_name":"log_collector","events_processed":4079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":815.8,"last_update":"2026-03-21T11:55:59.069414388Z"} +2026/03/21 11:56:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":445.8,"last_update":"2026-03-21T11:55:59.068700772Z"} +2026/03/21 11:56:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:55:59.076726072Z"} +2026/03/21 11:56:04 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":13.773603544115204,"throughput_eps":0,"last_update":"2026-03-21T11:55:59.210932607Z"} +2026/03/21 11:56:04 [transform_engine] {"stage_name":"transform_engine","events_processed":74,"events_dropped":0,"avg_latency_ms":1158.5768900036483,"throughput_eps":0,"last_update":"2026-03-21T11:55:59.209826829Z"} +2026/03/21 11:56:04 ───────────────────────────────────────────────── +2026/03/21 11:56:09 ── Pipeline Health ────────────────────────────── +2026/03/21 11:56:09 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":13.773603544115204,"throughput_eps":0,"last_update":"2026-03-21T11:56:04.210423759Z"} +2026/03/21 11:56:09 [transform_engine] {"stage_name":"transform_engine","events_processed":74,"events_dropped":0,"avg_latency_ms":1158.5768900036483,"throughput_eps":0,"last_update":"2026-03-21T11:56:04.210410084Z"} +2026/03/21 11:56:09 [log_collector] {"stage_name":"log_collector","events_processed":4088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":817.6,"last_update":"2026-03-21T11:56:04.068729333Z"} +2026/03/21 11:56:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":446.8,"last_update":"2026-03-21T11:56:04.069083872Z"} +2026/03/21 11:56:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":896,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:56:04.077965964Z"} +2026/03/21 11:56:09 ───────────────────────────────────────────────── +2026/03/21 11:56:14 ── Pipeline Health ────────────────────────────── +2026/03/21 11:56:14 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":13.773603544115204,"throughput_eps":0,"last_update":"2026-03-21T11:56:09.210534528Z"} +2026/03/21 11:56:14 [transform_engine] {"stage_name":"transform_engine","events_processed":74,"events_dropped":0,"avg_latency_ms":1158.5768900036483,"throughput_eps":0,"last_update":"2026-03-21T11:56:09.210658135Z"} +2026/03/21 11:56:14 [log_collector] {"stage_name":"log_collector","events_processed":4088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":817.6,"last_update":"2026-03-21T11:56:09.068101618Z"} +2026/03/21 11:56:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":447.8,"last_update":"2026-03-21T11:56:09.068647834Z"} +2026/03/21 11:56:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":898,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:56:09.07729211Z"} +2026/03/21 11:56:14 ───────────────────────────────────────────────── +2026/03/21 11:56:19 ── Pipeline Health ────────────────────────────── +2026/03/21 11:56:19 [transform_engine] {"stage_name":"transform_engine","events_processed":74,"events_dropped":0,"avg_latency_ms":1158.5768900036483,"throughput_eps":0,"last_update":"2026-03-21T11:56:14.210515962Z"} +2026/03/21 11:56:19 [log_collector] {"stage_name":"log_collector","events_processed":4091,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":818.2,"last_update":"2026-03-21T11:56:14.068313051Z"} +2026/03/21 11:56:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":448.8,"last_update":"2026-03-21T11:56:14.068544475Z"} +2026/03/21 11:56:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":900,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:56:14.074989149Z"} +2026/03/21 11:56:19 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":13.773603544115204,"throughput_eps":0,"last_update":"2026-03-21T11:56:14.210496865Z"} +2026/03/21 11:56:19 ───────────────────────────────────────────────── +2026/03/21 11:56:24 ── Pipeline Health ────────────────────────────── +2026/03/21 11:56:24 [log_collector] {"stage_name":"log_collector","events_processed":4102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":820.4,"last_update":"2026-03-21T11:56:24.068423576Z"} +2026/03/21 11:56:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":449.8,"last_update":"2026-03-21T11:56:19.068540558Z"} +2026/03/21 11:56:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:56:19.077175918Z"} +2026/03/21 11:56:24 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":13.773603544115204,"throughput_eps":0,"last_update":"2026-03-21T11:56:19.210590145Z"} +2026/03/21 11:56:24 [transform_engine] {"stage_name":"transform_engine","events_processed":74,"events_dropped":0,"avg_latency_ms":1158.5768900036483,"throughput_eps":0,"last_update":"2026-03-21T11:56:19.210504642Z"} +2026/03/21 11:56:24 ───────────────────────────────────────────────── +2026/03/21 11:56:29 ── Pipeline Health ────────────────────────────── +2026/03/21 11:56:29 [log_collector] {"stage_name":"log_collector","events_processed":4102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":820.4,"last_update":"2026-03-21T11:56:24.068423576Z"} +2026/03/21 11:56:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":450.8,"last_update":"2026-03-21T11:56:24.068795799Z"} +2026/03/21 11:56:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:56:24.077467938Z"} +2026/03/21 11:56:29 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":14.471253235292163,"throughput_eps":0,"last_update":"2026-03-21T11:56:24.210806991Z"} +2026/03/21 11:56:29 [transform_engine] {"stage_name":"transform_engine","events_processed":75,"events_dropped":0,"avg_latency_ms":949.8934930029186,"throughput_eps":0,"last_update":"2026-03-21T11:56:24.209687117Z"} +2026/03/21 11:56:29 ───────────────────────────────────────────────── +2026/03/21 11:56:34 ── Pipeline Health ────────────────────────────── +2026/03/21 11:56:34 [log_collector] {"stage_name":"log_collector","events_processed":4102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":820.4,"last_update":"2026-03-21T11:56:29.068778509Z"} +2026/03/21 11:56:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":451.8,"last_update":"2026-03-21T11:56:29.069155981Z"} +2026/03/21 11:56:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":906,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:56:29.079246619Z"} +2026/03/21 11:56:34 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":14.471253235292163,"throughput_eps":0,"last_update":"2026-03-21T11:56:29.210532479Z"} +2026/03/21 11:56:34 [transform_engine] {"stage_name":"transform_engine","events_processed":75,"events_dropped":0,"avg_latency_ms":949.8934930029186,"throughput_eps":0,"last_update":"2026-03-21T11:56:29.21064268Z"} +2026/03/21 11:56:34 ───────────────────────────────────────────────── +2026/03/21 11:56:39 ── Pipeline Health ────────────────────────────── +2026/03/21 11:56:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":452.8,"last_update":"2026-03-21T11:56:34.069217936Z"} +2026/03/21 11:56:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":908,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:56:34.079384508Z"} +2026/03/21 11:56:39 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":14.471253235292163,"throughput_eps":0,"last_update":"2026-03-21T11:56:34.210040523Z"} +2026/03/21 11:56:39 [transform_engine] {"stage_name":"transform_engine","events_processed":75,"events_dropped":0,"avg_latency_ms":949.8934930029186,"throughput_eps":0,"last_update":"2026-03-21T11:56:34.209645977Z"} +2026/03/21 11:56:39 [log_collector] {"stage_name":"log_collector","events_processed":4102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":820.4,"last_update":"2026-03-21T11:56:34.068884617Z"} +2026/03/21 11:56:39 ───────────────────────────────────────────────── +2026/03/21 11:56:44 ── Pipeline Health ────────────────────────────── +2026/03/21 11:56:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:56:39.078667039Z"} +2026/03/21 11:56:44 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":14.471253235292163,"throughput_eps":0,"last_update":"2026-03-21T11:56:39.209993118Z"} +2026/03/21 11:56:44 [transform_engine] {"stage_name":"transform_engine","events_processed":75,"events_dropped":0,"avg_latency_ms":949.8934930029186,"throughput_eps":0,"last_update":"2026-03-21T11:56:39.209962389Z"} +2026/03/21 11:56:44 [log_collector] {"stage_name":"log_collector","events_processed":4102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":820.4,"last_update":"2026-03-21T11:56:39.068637269Z"} +2026/03/21 11:56:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":453.8,"last_update":"2026-03-21T11:56:39.069021124Z"} +2026/03/21 11:56:44 ───────────────────────────────────────────────── +2026/03/21 11:56:49 ── Pipeline Health ────────────────────────────── +2026/03/21 11:56:49 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":14.471253235292163,"throughput_eps":0,"last_update":"2026-03-21T11:56:44.210096654Z"} +2026/03/21 11:56:49 [transform_engine] {"stage_name":"transform_engine","events_processed":75,"events_dropped":0,"avg_latency_ms":949.8934930029186,"throughput_eps":0,"last_update":"2026-03-21T11:56:44.210127082Z"} +2026/03/21 11:56:49 [log_collector] {"stage_name":"log_collector","events_processed":4102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":820.4,"last_update":"2026-03-21T11:56:44.068558406Z"} +2026/03/21 11:56:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":454.8,"last_update":"2026-03-21T11:56:44.068933395Z"} +2026/03/21 11:56:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":912,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:56:44.077680859Z"} +2026/03/21 11:56:49 ───────────────────────────────────────────────── +2026/03/21 11:56:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:56:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:56:49.078259266Z"} +2026/03/21 11:56:54 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":14.471253235292163,"throughput_eps":0,"last_update":"2026-03-21T11:56:49.210572776Z"} +2026/03/21 11:56:54 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":774.9962920023349,"throughput_eps":0,"last_update":"2026-03-21T11:56:49.285877186Z"} +2026/03/21 11:56:54 [log_collector] {"stage_name":"log_collector","events_processed":4102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":820.4,"last_update":"2026-03-21T11:56:49.068865245Z"} +2026/03/21 11:56:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":455.8,"last_update":"2026-03-21T11:56:49.069027505Z"} +2026/03/21 11:56:54 ───────────────────────────────────────────────── +2026/03/21 11:56:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:56:59 [log_collector] {"stage_name":"log_collector","events_processed":4102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":820.4,"last_update":"2026-03-21T11:56:54.068860867Z"} +2026/03/21 11:56:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":456.8,"last_update":"2026-03-21T11:56:54.069303034Z"} +2026/03/21 11:56:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:56:54.077416143Z"} +2026/03/21 11:56:59 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.098605388233732,"throughput_eps":0,"last_update":"2026-03-21T11:56:54.210812827Z"} +2026/03/21 11:56:59 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":774.9962920023349,"throughput_eps":0,"last_update":"2026-03-21T11:56:54.209637306Z"} +2026/03/21 11:56:59 ───────────────────────────────────────────────── +2026/03/21 11:57:04 ── Pipeline Health ────────────────────────────── +2026/03/21 11:57:04 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":774.9962920023349,"throughput_eps":0,"last_update":"2026-03-21T11:56:59.21068813Z"} +2026/03/21 11:57:04 [log_collector] {"stage_name":"log_collector","events_processed":4102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":820.4,"last_update":"2026-03-21T11:56:59.068967753Z"} +2026/03/21 11:57:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":457.6,"last_update":"2026-03-21T11:56:59.068984486Z"} +2026/03/21 11:57:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":918,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:56:59.079428158Z"} +2026/03/21 11:57:04 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.098605388233732,"throughput_eps":0,"last_update":"2026-03-21T11:56:59.210681057Z"} +2026/03/21 11:57:04 ───────────────────────────────────────────────── +2026/03/21 11:57:09 ── Pipeline Health ────────────────────────────── +2026/03/21 11:57:09 [log_collector] {"stage_name":"log_collector","events_processed":4102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":820.4,"last_update":"2026-03-21T11:57:04.06878647Z"} +2026/03/21 11:57:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2293,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":458.6,"last_update":"2026-03-21T11:57:04.06876559Z"} +2026/03/21 11:57:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":920,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:57:04.078014164Z"} +2026/03/21 11:57:09 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.098605388233732,"throughput_eps":0,"last_update":"2026-03-21T11:57:04.210344786Z"} +2026/03/21 11:57:09 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":774.9962920023349,"throughput_eps":0,"last_update":"2026-03-21T11:57:04.210321732Z"} +2026/03/21 11:57:09 ───────────────────────────────────────────────── +2026/03/21 11:57:14 ── Pipeline Health ────────────────────────────── +2026/03/21 11:57:14 [log_collector] {"stage_name":"log_collector","events_processed":4102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":820.4,"last_update":"2026-03-21T11:57:09.068675442Z"} +2026/03/21 11:57:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":459.8,"last_update":"2026-03-21T11:57:09.069120595Z"} +2026/03/21 11:57:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:57:09.079442314Z"} +2026/03/21 11:57:14 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.098605388233732,"throughput_eps":0,"last_update":"2026-03-21T11:57:09.210634035Z"} +2026/03/21 11:57:14 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":774.9962920023349,"throughput_eps":0,"last_update":"2026-03-21T11:57:09.210641009Z"} +2026/03/21 11:57:14 ───────────────────────────────────────────────── +2026/03/21 11:57:19 ── Pipeline Health ────────────────────────────── +2026/03/21 11:57:19 [log_collector] {"stage_name":"log_collector","events_processed":4102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":820.4,"last_update":"2026-03-21T11:57:19.068416189Z"} +2026/03/21 11:57:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":460.8,"last_update":"2026-03-21T11:57:14.068630002Z"} +2026/03/21 11:57:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:57:14.078506258Z"} +2026/03/21 11:57:19 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.098605388233732,"throughput_eps":0,"last_update":"2026-03-21T11:57:14.210850747Z"} +2026/03/21 11:57:19 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":774.9962920023349,"throughput_eps":0,"last_update":"2026-03-21T11:57:14.209657381Z"} +2026/03/21 11:57:19 ───────────────────────────────────────────────── +Saved state: 11 clusters, 4103 messages, reason: none +2026/03/21 11:57:24 ── Pipeline Health ────────────────────────────── +2026/03/21 11:57:24 [log_collector] {"stage_name":"log_collector","events_processed":4102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":820.4,"last_update":"2026-03-21T11:57:19.068416189Z"} +2026/03/21 11:57:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":461.8,"last_update":"2026-03-21T11:57:19.069005748Z"} +2026/03/21 11:57:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:57:19.078637816Z"} +2026/03/21 11:57:24 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.098605388233732,"throughput_eps":0,"last_update":"2026-03-21T11:57:19.210070389Z"} +2026/03/21 11:57:24 [transform_engine] {"stage_name":"transform_engine","events_processed":77,"events_dropped":0,"avg_latency_ms":633.655285201868,"throughput_eps":0,"last_update":"2026-03-21T11:57:19.27833157Z"} +2026/03/21 11:57:24 ───────────────────────────────────────────────── +2026/03/21 11:57:29 ── Pipeline Health ────────────────────────────── +2026/03/21 11:57:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:57:24.075276818Z"} +2026/03/21 11:57:29 [detection_layer] {"stage_name":"detection_layer","events_processed":77,"events_dropped":0,"avg_latency_ms":15.675446910586986,"throughput_eps":0,"last_update":"2026-03-21T11:57:24.210610782Z"} +2026/03/21 11:57:29 [transform_engine] {"stage_name":"transform_engine","events_processed":77,"events_dropped":0,"avg_latency_ms":633.655285201868,"throughput_eps":0,"last_update":"2026-03-21T11:57:24.210493368Z"} +2026/03/21 11:57:29 [log_collector] {"stage_name":"log_collector","events_processed":4107,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":821.4,"last_update":"2026-03-21T11:57:24.068515998Z"} +2026/03/21 11:57:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":462.8,"last_update":"2026-03-21T11:57:24.068765045Z"} +2026/03/21 11:57:29 ───────────────────────────────────────────────── +2026/03/21 11:57:34 ── Pipeline Health ────────────────────────────── +2026/03/21 11:57:34 [log_collector] {"stage_name":"log_collector","events_processed":4107,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":821.4,"last_update":"2026-03-21T11:57:29.068646458Z"} +2026/03/21 11:57:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":463.8,"last_update":"2026-03-21T11:57:29.068862983Z"} +2026/03/21 11:57:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":930,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:57:29.077866848Z"} +2026/03/21 11:57:34 [detection_layer] {"stage_name":"detection_layer","events_processed":77,"events_dropped":0,"avg_latency_ms":15.675446910586986,"throughput_eps":0,"last_update":"2026-03-21T11:57:29.210172322Z"} +2026/03/21 11:57:34 [transform_engine] {"stage_name":"transform_engine","events_processed":77,"events_dropped":0,"avg_latency_ms":633.655285201868,"throughput_eps":0,"last_update":"2026-03-21T11:57:29.210102289Z"} +2026/03/21 11:57:34 ───────────────────────────────────────────────── +2026/03/21 11:57:39 ── Pipeline Health ────────────────────────────── +2026/03/21 11:57:39 [transform_engine] {"stage_name":"transform_engine","events_processed":77,"events_dropped":0,"avg_latency_ms":633.655285201868,"throughput_eps":0,"last_update":"2026-03-21T11:57:34.209706262Z"} +2026/03/21 11:57:39 [log_collector] {"stage_name":"log_collector","events_processed":4107,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":821.4,"last_update":"2026-03-21T11:57:39.06808634Z"} +2026/03/21 11:57:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":464.8,"last_update":"2026-03-21T11:57:34.069230899Z"} +2026/03/21 11:57:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:57:34.075975557Z"} +2026/03/21 11:57:39 [detection_layer] {"stage_name":"detection_layer","events_processed":77,"events_dropped":0,"avg_latency_ms":15.675446910586986,"throughput_eps":0,"last_update":"2026-03-21T11:57:34.210824042Z"} +2026/03/21 11:57:39 ───────────────────────────────────────────────── +2026/03/21 11:57:44 ── Pipeline Health ────────────────────────────── +2026/03/21 11:57:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:57:39.075082079Z"} +2026/03/21 11:57:44 [detection_layer] {"stage_name":"detection_layer","events_processed":77,"events_dropped":0,"avg_latency_ms":15.675446910586986,"throughput_eps":0,"last_update":"2026-03-21T11:57:39.210424369Z"} +2026/03/21 11:57:44 [transform_engine] {"stage_name":"transform_engine","events_processed":77,"events_dropped":0,"avg_latency_ms":633.655285201868,"throughput_eps":0,"last_update":"2026-03-21T11:57:39.210510485Z"} +2026/03/21 11:57:44 [log_collector] {"stage_name":"log_collector","events_processed":4107,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":821.4,"last_update":"2026-03-21T11:57:39.06808634Z"} +2026/03/21 11:57:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":465.8,"last_update":"2026-03-21T11:57:39.06832127Z"} +2026/03/21 11:57:44 ───────────────────────────────────────────────── +2026/03/21 11:57:49 ── Pipeline Health ────────────────────────────── +2026/03/21 11:57:49 [log_collector] {"stage_name":"log_collector","events_processed":4107,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":821.4,"last_update":"2026-03-21T11:57:44.06851791Z"} +2026/03/21 11:57:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":466.8,"last_update":"2026-03-21T11:57:44.068917325Z"} +2026/03/21 11:57:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:57:44.079108965Z"} +2026/03/21 11:57:49 [detection_layer] {"stage_name":"detection_layer","events_processed":77,"events_dropped":0,"avg_latency_ms":15.675446910586986,"throughput_eps":0,"last_update":"2026-03-21T11:57:44.21028195Z"} +2026/03/21 11:57:49 [transform_engine] {"stage_name":"transform_engine","events_processed":77,"events_dropped":0,"avg_latency_ms":633.655285201868,"throughput_eps":0,"last_update":"2026-03-21T11:57:44.210266441Z"} +2026/03/21 11:57:49 ───────────────────────────────────────────────── +2026/03/21 11:57:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:57:54 [log_collector] {"stage_name":"log_collector","events_processed":4107,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":821.4,"last_update":"2026-03-21T11:57:49.068519418Z"} +2026/03/21 11:57:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":467.6,"last_update":"2026-03-21T11:57:49.068532001Z"} +2026/03/21 11:57:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:57:49.075054023Z"} +2026/03/21 11:57:54 [detection_layer] {"stage_name":"detection_layer","events_processed":77,"events_dropped":0,"avg_latency_ms":15.675446910586986,"throughput_eps":0,"last_update":"2026-03-21T11:57:49.210450738Z"} +2026/03/21 11:57:54 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":1149.0724041614944,"throughput_eps":0,"last_update":"2026-03-21T11:57:52.421159487Z"} +2026/03/21 11:57:54 ───────────────────────────────────────────────── +2026/03/21 11:57:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:57:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":468.8,"last_update":"2026-03-21T11:57:54.068969527Z"} +2026/03/21 11:57:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":940,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:57:54.077106763Z"} +2026/03/21 11:57:59 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":14.50472792846959,"throughput_eps":0,"last_update":"2026-03-21T11:57:54.210337369Z"} +2026/03/21 11:57:59 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":1149.0724041614944,"throughput_eps":0,"last_update":"2026-03-21T11:57:54.21036405Z"} +2026/03/21 11:57:59 [log_collector] {"stage_name":"log_collector","events_processed":4107,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":821.4,"last_update":"2026-03-21T11:57:54.06876778Z"} +2026/03/21 11:57:59 ───────────────────────────────────────────────── +2026/03/21 11:58:04 ── Pipeline Health ────────────────────────────── +2026/03/21 11:58:04 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":1149.0724041614944,"throughput_eps":0,"last_update":"2026-03-21T11:57:59.209637064Z"} +2026/03/21 11:58:04 [log_collector] {"stage_name":"log_collector","events_processed":4107,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":821.4,"last_update":"2026-03-21T11:57:59.068538608Z"} +2026/03/21 11:58:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":469.8,"last_update":"2026-03-21T11:57:59.068758278Z"} +2026/03/21 11:58:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:57:59.076518492Z"} +2026/03/21 11:58:04 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":14.50472792846959,"throughput_eps":0,"last_update":"2026-03-21T11:57:59.210205502Z"} +2026/03/21 11:58:04 ───────────────────────────────────────────────── +2026/03/21 11:58:09 ── Pipeline Health ────────────────────────────── +2026/03/21 11:58:09 [log_collector] {"stage_name":"log_collector","events_processed":4110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":822,"last_update":"2026-03-21T11:58:04.06866044Z"} +2026/03/21 11:58:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":470.8,"last_update":"2026-03-21T11:58:04.069002245Z"} +2026/03/21 11:58:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:58:04.074855405Z"} +2026/03/21 11:58:09 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":14.50472792846959,"throughput_eps":0,"last_update":"2026-03-21T11:58:04.210091513Z"} +2026/03/21 11:58:09 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":1149.0724041614944,"throughput_eps":0,"last_update":"2026-03-21T11:58:04.210109638Z"} +2026/03/21 11:58:09 ───────────────────────────────────────────────── +2026/03/21 11:58:14 ── Pipeline Health ────────────────────────────── +2026/03/21 11:58:14 [log_collector] {"stage_name":"log_collector","events_processed":4118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":823.6,"last_update":"2026-03-21T11:58:09.068640042Z"} +2026/03/21 11:58:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":471.8,"last_update":"2026-03-21T11:58:09.068997907Z"} +2026/03/21 11:58:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:58:09.077028448Z"} +2026/03/21 11:58:14 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":14.50472792846959,"throughput_eps":0,"last_update":"2026-03-21T11:58:09.210798778Z"} +2026/03/21 11:58:14 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":1149.0724041614944,"throughput_eps":0,"last_update":"2026-03-21T11:58:09.210687486Z"} +2026/03/21 11:58:14 ───────────────────────────────────────────────── +2026/03/21 11:58:19 ── Pipeline Health ────────────────────────────── +2026/03/21 11:58:19 [log_collector] {"stage_name":"log_collector","events_processed":4260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":852,"last_update":"2026-03-21T11:58:14.068062168Z"} +2026/03/21 11:58:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":472.8,"last_update":"2026-03-21T11:58:14.068369016Z"} +2026/03/21 11:58:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:58:14.077610215Z"} +2026/03/21 11:58:19 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":14.50472792846959,"throughput_eps":0,"last_update":"2026-03-21T11:58:14.210133187Z"} +2026/03/21 11:58:19 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":1149.0724041614944,"throughput_eps":0,"last_update":"2026-03-21T11:58:14.210150049Z"} +2026/03/21 11:58:19 ───────────────────────────────────────────────── +Saved state: 11 clusters, 4468 messages, reason: none +2026/03/21 11:58:24 ── Pipeline Health ────────────────────────────── +2026/03/21 11:58:24 [log_collector] {"stage_name":"log_collector","events_processed":4467,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":893.4,"last_update":"2026-03-21T11:58:19.068613146Z"} +2026/03/21 11:58:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":473.8,"last_update":"2026-03-21T11:58:19.068838268Z"} +2026/03/21 11:58:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:58:19.075438168Z"} +2026/03/21 11:58:24 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":14.50472792846959,"throughput_eps":0,"last_update":"2026-03-21T11:58:19.210721095Z"} +2026/03/21 11:58:24 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":1149.0724041614944,"throughput_eps":0,"last_update":"2026-03-21T11:58:19.210697129Z"} +2026/03/21 11:58:24 ───────────────────────────────────────────────── +2026/03/21 11:58:29 ── Pipeline Health ────────────────────────────── +2026/03/21 11:58:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":474.8,"last_update":"2026-03-21T11:58:24.068881645Z"} +2026/03/21 11:58:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:58:24.077595715Z"} +2026/03/21 11:58:29 [detection_layer] {"stage_name":"detection_layer","events_processed":79,"events_dropped":0,"avg_latency_ms":13.697462342775673,"throughput_eps":0,"last_update":"2026-03-21T11:58:24.20989071Z"} +2026/03/21 11:58:29 [transform_engine] {"stage_name":"transform_engine","events_processed":79,"events_dropped":0,"avg_latency_ms":940.3402101291956,"throughput_eps":0,"last_update":"2026-03-21T11:58:24.209745733Z"} +2026/03/21 11:58:29 [log_collector] {"stage_name":"log_collector","events_processed":4470,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":894,"last_update":"2026-03-21T11:58:24.068533218Z"} +2026/03/21 11:58:29 ───────────────────────────────────────────────── +2026/03/21 11:58:34 ── Pipeline Health ────────────────────────────── +2026/03/21 11:58:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":475.8,"last_update":"2026-03-21T11:58:29.068817498Z"} +2026/03/21 11:58:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:58:29.075298181Z"} +2026/03/21 11:58:34 [detection_layer] {"stage_name":"detection_layer","events_processed":79,"events_dropped":0,"avg_latency_ms":13.697462342775673,"throughput_eps":0,"last_update":"2026-03-21T11:58:29.210489273Z"} +2026/03/21 11:58:34 [transform_engine] {"stage_name":"transform_engine","events_processed":79,"events_dropped":0,"avg_latency_ms":940.3402101291956,"throughput_eps":0,"last_update":"2026-03-21T11:58:29.21047213Z"} +2026/03/21 11:58:34 [log_collector] {"stage_name":"log_collector","events_processed":4470,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":894,"last_update":"2026-03-21T11:58:29.068636502Z"} +2026/03/21 11:58:34 ───────────────────────────────────────────────── +2026/03/21 11:58:39 ── Pipeline Health ────────────────────────────── +2026/03/21 11:58:39 [detection_layer] {"stage_name":"detection_layer","events_processed":79,"events_dropped":0,"avg_latency_ms":13.697462342775673,"throughput_eps":0,"last_update":"2026-03-21T11:58:34.210299644Z"} +2026/03/21 11:58:39 [transform_engine] {"stage_name":"transform_engine","events_processed":79,"events_dropped":0,"avg_latency_ms":940.3402101291956,"throughput_eps":0,"last_update":"2026-03-21T11:58:34.210190725Z"} +2026/03/21 11:58:39 [log_collector] {"stage_name":"log_collector","events_processed":4480,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":896,"last_update":"2026-03-21T11:58:34.06806415Z"} +2026/03/21 11:58:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":476.8,"last_update":"2026-03-21T11:58:34.068610236Z"} +2026/03/21 11:58:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:58:34.074965178Z"} +2026/03/21 11:58:39 ───────────────────────────────────────────────── +2026/03/21 11:58:44 ── Pipeline Health ────────────────────────────── +2026/03/21 11:58:44 [transform_engine] {"stage_name":"transform_engine","events_processed":79,"events_dropped":0,"avg_latency_ms":940.3402101291956,"throughput_eps":0,"last_update":"2026-03-21T11:58:39.210384102Z"} +2026/03/21 11:58:44 [log_collector] {"stage_name":"log_collector","events_processed":4488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":897.6,"last_update":"2026-03-21T11:58:39.068987064Z"} +2026/03/21 11:58:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":477.8,"last_update":"2026-03-21T11:58:39.069101804Z"} +2026/03/21 11:58:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":958,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:58:39.076162377Z"} +2026/03/21 11:58:44 [detection_layer] {"stage_name":"detection_layer","events_processed":79,"events_dropped":0,"avg_latency_ms":13.697462342775673,"throughput_eps":0,"last_update":"2026-03-21T11:58:39.210364735Z"} +2026/03/21 11:58:44 ───────────────────────────────────────────────── +2026/03/21 11:58:49 ── Pipeline Health ────────────────────────────── +2026/03/21 11:58:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2393,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":478.6,"last_update":"2026-03-21T11:58:44.068401422Z"} +2026/03/21 11:58:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:58:44.076963972Z"} +2026/03/21 11:58:49 [detection_layer] {"stage_name":"detection_layer","events_processed":79,"events_dropped":0,"avg_latency_ms":13.697462342775673,"throughput_eps":0,"last_update":"2026-03-21T11:58:44.210307314Z"} +2026/03/21 11:58:49 [transform_engine] {"stage_name":"transform_engine","events_processed":79,"events_dropped":0,"avg_latency_ms":940.3402101291956,"throughput_eps":0,"last_update":"2026-03-21T11:58:44.210314789Z"} +2026/03/21 11:58:49 [log_collector] {"stage_name":"log_collector","events_processed":4497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":899.4,"last_update":"2026-03-21T11:58:44.068338221Z"} +2026/03/21 11:58:49 ───────────────────────────────────────────────── +2026/03/21 11:58:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:58:54 [log_collector] {"stage_name":"log_collector","events_processed":4497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":899.4,"last_update":"2026-03-21T11:58:49.068146084Z"} +2026/03/21 11:58:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":479.8,"last_update":"2026-03-21T11:58:49.068758487Z"} +2026/03/21 11:58:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":962,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:58:49.078411565Z"} +2026/03/21 11:58:54 [detection_layer] {"stage_name":"detection_layer","events_processed":79,"events_dropped":0,"avg_latency_ms":13.697462342775673,"throughput_eps":0,"last_update":"2026-03-21T11:58:49.210661333Z"} +2026/03/21 11:58:54 [transform_engine] {"stage_name":"transform_engine","events_processed":80,"events_dropped":0,"avg_latency_ms":774.3711983033566,"throughput_eps":0,"last_update":"2026-03-21T11:58:49.321168848Z"} +2026/03/21 11:58:54 ───────────────────────────────────────────────── +2026/03/21 11:58:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:58:59 [log_collector] {"stage_name":"log_collector","events_processed":4497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":899.4,"last_update":"2026-03-21T11:58:54.068783023Z"} +2026/03/21 11:58:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":480.8,"last_update":"2026-03-21T11:58:54.06913624Z"} +2026/03/21 11:58:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:58:54.079038907Z"} +2026/03/21 11:58:59 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":14.258635674220539,"throughput_eps":0,"last_update":"2026-03-21T11:58:54.210422906Z"} +2026/03/21 11:58:59 [transform_engine] {"stage_name":"transform_engine","events_processed":80,"events_dropped":0,"avg_latency_ms":774.3711983033566,"throughput_eps":0,"last_update":"2026-03-21T11:58:54.210438006Z"} +2026/03/21 11:58:59 ───────────────────────────────────────────────── +2026/03/21 11:59:04 ── Pipeline Health ────────────────────────────── +2026/03/21 11:59:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":481.8,"last_update":"2026-03-21T11:58:59.068568734Z"} +2026/03/21 11:59:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:58:59.078182928Z"} +2026/03/21 11:59:04 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":14.258635674220539,"throughput_eps":0,"last_update":"2026-03-21T11:58:59.210651997Z"} +2026/03/21 11:59:04 [transform_engine] {"stage_name":"transform_engine","events_processed":80,"events_dropped":0,"avg_latency_ms":774.3711983033566,"throughput_eps":0,"last_update":"2026-03-21T11:58:59.210663478Z"} +2026/03/21 11:59:04 [log_collector] {"stage_name":"log_collector","events_processed":4497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":899.4,"last_update":"2026-03-21T11:58:59.068156225Z"} +2026/03/21 11:59:04 ───────────────────────────────────────────────── +2026/03/21 11:59:09 ── Pipeline Health ────────────────────────────── +2026/03/21 11:59:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":482.8,"last_update":"2026-03-21T11:59:04.069026335Z"} +2026/03/21 11:59:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:59:04.077765954Z"} +2026/03/21 11:59:09 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":14.258635674220539,"throughput_eps":0,"last_update":"2026-03-21T11:59:04.210029459Z"} +2026/03/21 11:59:09 [transform_engine] {"stage_name":"transform_engine","events_processed":80,"events_dropped":0,"avg_latency_ms":774.3711983033566,"throughput_eps":0,"last_update":"2026-03-21T11:59:04.210041812Z"} +2026/03/21 11:59:09 [log_collector] {"stage_name":"log_collector","events_processed":4497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":899.4,"last_update":"2026-03-21T11:59:04.068719827Z"} +2026/03/21 11:59:09 ───────────────────────────────────────────────── +2026/03/21 11:59:14 ── Pipeline Health ────────────────────────────── +2026/03/21 11:59:14 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":14.258635674220539,"throughput_eps":0,"last_update":"2026-03-21T11:59:09.210711919Z"} +2026/03/21 11:59:14 [transform_engine] {"stage_name":"transform_engine","events_processed":80,"events_dropped":0,"avg_latency_ms":774.3711983033566,"throughput_eps":0,"last_update":"2026-03-21T11:59:09.210723561Z"} +2026/03/21 11:59:14 [log_collector] {"stage_name":"log_collector","events_processed":4497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":899.4,"last_update":"2026-03-21T11:59:14.068482202Z"} +2026/03/21 11:59:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":483.8,"last_update":"2026-03-21T11:59:09.069222413Z"} +2026/03/21 11:59:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":970,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:59:09.078338083Z"} +2026/03/21 11:59:14 ───────────────────────────────────────────────── +2026/03/21 11:59:19 ── Pipeline Health ────────────────────────────── +2026/03/21 11:59:19 [log_collector] {"stage_name":"log_collector","events_processed":4497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":899.4,"last_update":"2026-03-21T11:59:14.068482202Z"} +2026/03/21 11:59:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":484.8,"last_update":"2026-03-21T11:59:14.06925896Z"} +2026/03/21 11:59:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:59:14.077773307Z"} +2026/03/21 11:59:19 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":14.258635674220539,"throughput_eps":0,"last_update":"2026-03-21T11:59:14.210278244Z"} +2026/03/21 11:59:19 [transform_engine] {"stage_name":"transform_engine","events_processed":80,"events_dropped":0,"avg_latency_ms":774.3711983033566,"throughput_eps":0,"last_update":"2026-03-21T11:59:14.210298814Z"} +2026/03/21 11:59:19 ───────────────────────────────────────────────── +2026/03/21 11:59:24 ── Pipeline Health ────────────────────────────── +2026/03/21 11:59:24 [log_collector] {"stage_name":"log_collector","events_processed":4497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":899.4,"last_update":"2026-03-21T11:59:19.068804866Z"} +2026/03/21 11:59:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":485.8,"last_update":"2026-03-21T11:59:19.069146481Z"} +2026/03/21 11:59:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:59:19.078865676Z"} +2026/03/21 11:59:24 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":14.258635674220539,"throughput_eps":0,"last_update":"2026-03-21T11:59:19.21011107Z"} +2026/03/21 11:59:24 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":633.3983320426853,"throughput_eps":0,"last_update":"2026-03-21T11:59:19.27962921Z"} +2026/03/21 11:59:24 ───────────────────────────────────────────────── +2026/03/21 11:59:29 ── Pipeline Health ────────────────────────────── +2026/03/21 11:59:29 [log_collector] {"stage_name":"log_collector","events_processed":4497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":899.4,"last_update":"2026-03-21T11:59:29.068170547Z"} +2026/03/21 11:59:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":486.8,"last_update":"2026-03-21T11:59:24.069168771Z"} +2026/03/21 11:59:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:59:24.078269121Z"} +2026/03/21 11:59:29 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":15.202059539376432,"throughput_eps":0,"last_update":"2026-03-21T11:59:24.21061867Z"} +2026/03/21 11:59:29 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":633.3983320426853,"throughput_eps":0,"last_update":"2026-03-21T11:59:24.210630764Z"} +2026/03/21 11:59:29 ───────────────────────────────────────────────── +2026/03/21 11:59:34 ── Pipeline Health ────────────────────────────── +2026/03/21 11:59:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":487.8,"last_update":"2026-03-21T11:59:29.068511581Z"} +2026/03/21 11:59:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:59:29.078137037Z"} +2026/03/21 11:59:34 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":15.202059539376432,"throughput_eps":0,"last_update":"2026-03-21T11:59:29.210554997Z"} +2026/03/21 11:59:34 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":633.3983320426853,"throughput_eps":0,"last_update":"2026-03-21T11:59:29.21056685Z"} +2026/03/21 11:59:34 [log_collector] {"stage_name":"log_collector","events_processed":4497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":899.4,"last_update":"2026-03-21T11:59:29.068170547Z"} +2026/03/21 11:59:34 ───────────────────────────────────────────────── +2026/03/21 11:59:39 ── Pipeline Health ────────────────────────────── +2026/03/21 11:59:39 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":15.202059539376432,"throughput_eps":0,"last_update":"2026-03-21T11:59:34.210854631Z"} +2026/03/21 11:59:39 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":633.3983320426853,"throughput_eps":0,"last_update":"2026-03-21T11:59:34.209705981Z"} +2026/03/21 11:59:39 [log_collector] {"stage_name":"log_collector","events_processed":4497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":899.4,"last_update":"2026-03-21T11:59:39.068346676Z"} +2026/03/21 11:59:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":488.8,"last_update":"2026-03-21T11:59:34.069724755Z"} +2026/03/21 11:59:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:59:34.077597824Z"} +2026/03/21 11:59:39 ───────────────────────────────────────────────── +2026/03/21 11:59:44 ── Pipeline Health ────────────────────────────── +2026/03/21 11:59:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":489.8,"last_update":"2026-03-21T11:59:39.068827517Z"} +2026/03/21 11:59:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:59:39.078441421Z"} +2026/03/21 11:59:44 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":15.202059539376432,"throughput_eps":0,"last_update":"2026-03-21T11:59:39.210869872Z"} +2026/03/21 11:59:44 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":633.3983320426853,"throughput_eps":0,"last_update":"2026-03-21T11:59:39.209682377Z"} +2026/03/21 11:59:44 [log_collector] {"stage_name":"log_collector","events_processed":4497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":899.4,"last_update":"2026-03-21T11:59:39.068346676Z"} +2026/03/21 11:59:44 ───────────────────────────────────────────────── +2026/03/21 11:59:49 ── Pipeline Health ────────────────────────────── +2026/03/21 11:59:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:59:44.078297084Z"} +2026/03/21 11:59:49 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":15.202059539376432,"throughput_eps":0,"last_update":"2026-03-21T11:59:44.210535551Z"} +2026/03/21 11:59:49 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":633.3983320426853,"throughput_eps":0,"last_update":"2026-03-21T11:59:44.209795023Z"} +2026/03/21 11:59:49 [log_collector] {"stage_name":"log_collector","events_processed":4497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":899.4,"last_update":"2026-03-21T11:59:44.068077551Z"} +2026/03/21 11:59:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":490.8,"last_update":"2026-03-21T11:59:44.068779065Z"} +2026/03/21 11:59:49 ───────────────────────────────────────────────── +2026/03/21 11:59:54 ── Pipeline Health ────────────────────────────── +2026/03/21 11:59:54 [log_collector] {"stage_name":"log_collector","events_processed":4497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":899.4,"last_update":"2026-03-21T11:59:49.069135099Z"} +2026/03/21 11:59:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":491.8,"last_update":"2026-03-21T11:59:49.069712806Z"} +2026/03/21 11:59:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:59:49.078586351Z"} +2026/03/21 11:59:54 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":15.202059539376432,"throughput_eps":0,"last_update":"2026-03-21T11:59:49.209966845Z"} +2026/03/21 11:59:54 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":520.8077846341482,"throughput_eps":0,"last_update":"2026-03-21T11:59:49.280284304Z"} +2026/03/21 11:59:54 ───────────────────────────────────────────────── +Saved state: 11 clusters, 4498 messages, reason: none +2026/03/21 11:59:59 ── Pipeline Health ────────────────────────────── +2026/03/21 11:59:59 [log_collector] {"stage_name":"log_collector","events_processed":4497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":899.4,"last_update":"2026-03-21T11:59:54.06805366Z"} +2026/03/21 11:59:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":492.8,"last_update":"2026-03-21T11:59:54.06857042Z"} +2026/03/21 11:59:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:59:54.077250546Z"} +2026/03/21 11:59:59 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":15.753403031501147,"throughput_eps":0,"last_update":"2026-03-21T11:59:54.21052641Z"} +2026/03/21 11:59:59 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":520.8077846341482,"throughput_eps":0,"last_update":"2026-03-21T11:59:54.210533212Z"} +2026/03/21 11:59:59 ───────────────────────────────────────────────── +2026/03/21 12:00:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:00:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":493.6,"last_update":"2026-03-21T11:59:59.068384388Z"} +2026/03/21 12:00:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":990,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T11:59:59.078406423Z"} +2026/03/21 12:00:04 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":15.753403031501147,"throughput_eps":0,"last_update":"2026-03-21T11:59:59.210620543Z"} +2026/03/21 12:00:04 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":520.8077846341482,"throughput_eps":0,"last_update":"2026-03-21T11:59:59.210629711Z"} +2026/03/21 12:00:04 [log_collector] {"stage_name":"log_collector","events_processed":4500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":900,"last_update":"2026-03-21T11:59:59.068532542Z"} +2026/03/21 12:00:04 ───────────────────────────────────────────────── +2026/03/21 12:00:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:00:09 [log_collector] {"stage_name":"log_collector","events_processed":4511,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":902.2,"last_update":"2026-03-21T12:00:04.068962581Z"} +2026/03/21 12:00:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":494.8,"last_update":"2026-03-21T12:00:04.069051021Z"} +2026/03/21 12:00:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":992,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:00:04.078814701Z"} +2026/03/21 12:00:09 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":15.753403031501147,"throughput_eps":0,"last_update":"2026-03-21T12:00:04.210205676Z"} +2026/03/21 12:00:09 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":520.8077846341482,"throughput_eps":0,"last_update":"2026-03-21T12:00:04.210217117Z"} +2026/03/21 12:00:09 ───────────────────────────────────────────────── +2026/03/21 12:00:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:00:14 [log_collector] {"stage_name":"log_collector","events_processed":4511,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":902.2,"last_update":"2026-03-21T12:00:09.068947209Z"} +2026/03/21 12:00:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":495.8,"last_update":"2026-03-21T12:00:09.069190104Z"} +2026/03/21 12:00:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:00:09.078323998Z"} +2026/03/21 12:00:14 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":15.753403031501147,"throughput_eps":0,"last_update":"2026-03-21T12:00:09.210569599Z"} +2026/03/21 12:00:14 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":520.8077846341482,"throughput_eps":0,"last_update":"2026-03-21T12:00:09.210579267Z"} +2026/03/21 12:00:14 ───────────────────────────────────────────────── +2026/03/21 12:00:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:00:19 [log_collector] {"stage_name":"log_collector","events_processed":4511,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":902.2,"last_update":"2026-03-21T12:00:14.068763014Z"} +2026/03/21 12:00:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":496.8,"last_update":"2026-03-21T12:00:14.069305433Z"} +2026/03/21 12:00:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":996,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:00:14.077744177Z"} +2026/03/21 12:00:19 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":15.753403031501147,"throughput_eps":0,"last_update":"2026-03-21T12:00:14.210164562Z"} +2026/03/21 12:00:19 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":520.8077846341482,"throughput_eps":0,"last_update":"2026-03-21T12:00:14.210179832Z"} +2026/03/21 12:00:19 ───────────────────────────────────────────────── +2026/03/21 12:00:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:00:24 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":15.753403031501147,"throughput_eps":0,"last_update":"2026-03-21T12:00:19.209886941Z"} +2026/03/21 12:00:24 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":438.3603771073186,"throughput_eps":0,"last_update":"2026-03-21T12:00:19.318471453Z"} +2026/03/21 12:00:24 [log_collector] {"stage_name":"log_collector","events_processed":4511,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":902.2,"last_update":"2026-03-21T12:00:19.068095908Z"} +2026/03/21 12:00:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":497.8,"last_update":"2026-03-21T12:00:19.068697841Z"} +2026/03/21 12:00:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:00:19.077632673Z"} +2026/03/21 12:00:24 ───────────────────────────────────────────────── +2026/03/21 12:00:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:00:29 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":438.3603771073186,"throughput_eps":0,"last_update":"2026-03-21T12:00:24.209821767Z"} +2026/03/21 12:00:29 [log_collector] {"stage_name":"log_collector","events_processed":4511,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":902.2,"last_update":"2026-03-21T12:00:24.068171061Z"} +2026/03/21 12:00:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":498.8,"last_update":"2026-03-21T12:00:24.068564846Z"} +2026/03/21 12:00:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:00:24.07756826Z"} +2026/03/21 12:00:29 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":16.133605225200917,"throughput_eps":0,"last_update":"2026-03-21T12:00:24.209960061Z"} +2026/03/21 12:00:29 ───────────────────────────────────────────────── +2026/03/21 12:00:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:00:34 [log_collector] {"stage_name":"log_collector","events_processed":4511,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":902.2,"last_update":"2026-03-21T12:00:29.068993947Z"} +2026/03/21 12:00:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":499.8,"last_update":"2026-03-21T12:00:29.069522279Z"} +2026/03/21 12:00:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:00:29.078618532Z"} +2026/03/21 12:00:34 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":16.133605225200917,"throughput_eps":0,"last_update":"2026-03-21T12:00:29.209926056Z"} +2026/03/21 12:00:34 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":438.3603771073186,"throughput_eps":0,"last_update":"2026-03-21T12:00:29.209951455Z"} +2026/03/21 12:00:34 ───────────────────────────────────────────────── +2026/03/21 12:00:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:00:39 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":438.3603771073186,"throughput_eps":0,"last_update":"2026-03-21T12:00:34.21085212Z"} +2026/03/21 12:00:39 [log_collector] {"stage_name":"log_collector","events_processed":4511,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":902.2,"last_update":"2026-03-21T12:00:34.068521543Z"} +2026/03/21 12:00:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":500.8,"last_update":"2026-03-21T12:00:34.068750231Z"} +2026/03/21 12:00:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:00:34.077377857Z"} +2026/03/21 12:00:39 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":16.133605225200917,"throughput_eps":0,"last_update":"2026-03-21T12:00:34.210754574Z"} +2026/03/21 12:00:39 ───────────────────────────────────────────────── +2026/03/21 12:00:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:00:44 [log_collector] {"stage_name":"log_collector","events_processed":4511,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":902.2,"last_update":"2026-03-21T12:00:39.068668176Z"} +2026/03/21 12:00:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":501.8,"last_update":"2026-03-21T12:00:39.068839314Z"} +2026/03/21 12:00:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1006,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:00:39.077761413Z"} +2026/03/21 12:00:44 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":16.133605225200917,"throughput_eps":0,"last_update":"2026-03-21T12:00:39.21004137Z"} +2026/03/21 12:00:44 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":438.3603771073186,"throughput_eps":0,"last_update":"2026-03-21T12:00:39.210065686Z"} +2026/03/21 12:00:44 ───────────────────────────────────────────────── +2026/03/21 12:00:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:00:49 [log_collector] {"stage_name":"log_collector","events_processed":4511,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":902.2,"last_update":"2026-03-21T12:00:44.068974248Z"} +2026/03/21 12:00:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":502.8,"last_update":"2026-03-21T12:00:44.06942972Z"} +2026/03/21 12:00:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1008,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:00:44.078044881Z"} +2026/03/21 12:00:49 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":16.133605225200917,"throughput_eps":0,"last_update":"2026-03-21T12:00:44.210419539Z"} +2026/03/21 12:00:49 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":438.3603771073186,"throughput_eps":0,"last_update":"2026-03-21T12:00:44.210534449Z"} +2026/03/21 12:00:49 ───────────────────────────────────────────────── +2026/03/21 12:00:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:00:54 [log_collector] {"stage_name":"log_collector","events_processed":4511,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":902.2,"last_update":"2026-03-21T12:00:49.068716575Z"} +2026/03/21 12:00:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":503.8,"last_update":"2026-03-21T12:00:49.068910347Z"} +2026/03/21 12:00:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:00:49.078480897Z"} +2026/03/21 12:00:54 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":16.133605225200917,"throughput_eps":0,"last_update":"2026-03-21T12:00:49.210802674Z"} +2026/03/21 12:00:54 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":365.4409476858549,"throughput_eps":0,"last_update":"2026-03-21T12:00:49.283421401Z"} +2026/03/21 12:00:54 ───────────────────────────────────────────────── +2026/03/21 12:00:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:00:59 [log_collector] {"stage_name":"log_collector","events_processed":4511,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":902.2,"last_update":"2026-03-21T12:00:54.068983152Z"} +2026/03/21 12:00:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":504.8,"last_update":"2026-03-21T12:00:54.069103893Z"} +2026/03/21 12:00:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1012,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:00:54.079221231Z"} +2026/03/21 12:00:59 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":16.595174180160736,"throughput_eps":0,"last_update":"2026-03-21T12:00:54.210551629Z"} +2026/03/21 12:00:59 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":365.4409476858549,"throughput_eps":0,"last_update":"2026-03-21T12:00:54.210658183Z"} +2026/03/21 12:00:59 ───────────────────────────────────────────────── +Saved state: 11 clusters, 4512 messages, reason: none +2026/03/21 12:01:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:01:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":505.8,"last_update":"2026-03-21T12:00:59.068886052Z"} +2026/03/21 12:01:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:00:59.078253934Z"} +2026/03/21 12:01:04 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":16.595174180160736,"throughput_eps":0,"last_update":"2026-03-21T12:00:59.209878687Z"} +2026/03/21 12:01:04 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":365.4409476858549,"throughput_eps":0,"last_update":"2026-03-21T12:00:59.20970318Z"} +2026/03/21 12:01:04 [log_collector] {"stage_name":"log_collector","events_processed":4511,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":902.2,"last_update":"2026-03-21T12:00:59.068620413Z"} +2026/03/21 12:01:04 ───────────────────────────────────────────────── +2026/03/21 12:01:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:01:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:01:04.078403396Z"} +2026/03/21 12:01:09 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":16.595174180160736,"throughput_eps":0,"last_update":"2026-03-21T12:01:04.210606787Z"} +2026/03/21 12:01:09 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":365.4409476858549,"throughput_eps":0,"last_update":"2026-03-21T12:01:04.210590786Z"} +2026/03/21 12:01:09 [log_collector] {"stage_name":"log_collector","events_processed":4516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":903.2,"last_update":"2026-03-21T12:01:04.068618065Z"} +2026/03/21 12:01:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":506.8,"last_update":"2026-03-21T12:01:04.068676336Z"} +2026/03/21 12:01:09 ───────────────────────────────────────────────── +2026/03/21 12:01:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:01:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":507.8,"last_update":"2026-03-21T12:01:09.068620427Z"} +2026/03/21 12:01:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1018,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:01:09.07540427Z"} +2026/03/21 12:01:14 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":16.595174180160736,"throughput_eps":0,"last_update":"2026-03-21T12:01:09.21063594Z"} +2026/03/21 12:01:14 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":365.4409476858549,"throughput_eps":0,"last_update":"2026-03-21T12:01:09.211452745Z"} +2026/03/21 12:01:14 [log_collector] {"stage_name":"log_collector","events_processed":4516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":903.2,"last_update":"2026-03-21T12:01:09.068076165Z"} +2026/03/21 12:01:14 ───────────────────────────────────────────────── +2026/03/21 12:01:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:01:19 [log_collector] {"stage_name":"log_collector","events_processed":4516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":903.2,"last_update":"2026-03-21T12:01:14.068569878Z"} +2026/03/21 12:01:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":508.8,"last_update":"2026-03-21T12:01:14.068529661Z"} +2026/03/21 12:01:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1020,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:01:14.081157126Z"} +2026/03/21 12:01:19 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":16.595174180160736,"throughput_eps":0,"last_update":"2026-03-21T12:01:14.210397101Z"} +2026/03/21 12:01:19 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":365.4409476858549,"throughput_eps":0,"last_update":"2026-03-21T12:01:14.210362324Z"} +2026/03/21 12:01:19 ───────────────────────────────────────────────── +2026/03/21 12:01:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:01:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":509.8,"last_update":"2026-03-21T12:01:19.069113048Z"} +2026/03/21 12:01:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1022,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:01:19.080328619Z"} +2026/03/21 12:01:24 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":16.595174180160736,"throughput_eps":0,"last_update":"2026-03-21T12:01:19.210570563Z"} +2026/03/21 12:01:24 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":365.4409476858549,"throughput_eps":0,"last_update":"2026-03-21T12:01:14.210362324Z"} +2026/03/21 12:01:24 [log_collector] {"stage_name":"log_collector","events_processed":4516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":903.2,"last_update":"2026-03-21T12:01:19.068698084Z"} +2026/03/21 12:01:24 ───────────────────────────────────────────────── +2026/03/21 12:01:25 [ANOMALY] time=2026-03-21T12:01:24Z score=0.9766 method=SEAD details=MAD!:w=0.29,s=0.96 RRCF-fast!:w=0.18,s=0.96 RRCF-mid!:w=0.17,s=1.00 RRCF-slow!:w=0.16,s=0.99 COPOD!:w=0.20,s=0.98 +2026/03/21 12:01:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:01:29 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":16.595174180160736,"throughput_eps":0,"last_update":"2026-03-21T12:01:24.210383935Z"} +2026/03/21 12:01:29 [transform_engine] {"stage_name":"transform_engine","events_processed":85,"events_dropped":0,"avg_latency_ms":1610.3784653486841,"throughput_eps":0,"last_update":"2026-03-21T12:01:25.800716803Z"} +2026/03/21 12:01:29 [log_collector] {"stage_name":"log_collector","events_processed":4516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":903.2,"last_update":"2026-03-21T12:01:24.068370756Z"} +2026/03/21 12:01:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":510.8,"last_update":"2026-03-21T12:01:24.068526343Z"} +2026/03/21 12:01:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:01:24.07486809Z"} +2026/03/21 12:01:29 ───────────────────────────────────────────────── +2026/03/21 12:01:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:01:34 [log_collector] {"stage_name":"log_collector","events_processed":4516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":903.2,"last_update":"2026-03-21T12:01:29.068074921Z"} +2026/03/21 12:01:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":511.8,"last_update":"2026-03-21T12:01:29.068415482Z"} +2026/03/21 12:01:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:01:29.074466963Z"} +2026/03/21 12:01:34 [detection_layer] {"stage_name":"detection_layer","events_processed":85,"events_dropped":0,"avg_latency_ms":14.74624114412859,"throughput_eps":0,"last_update":"2026-03-21T12:01:29.210685874Z"} +2026/03/21 12:01:34 [transform_engine] {"stage_name":"transform_engine","events_processed":85,"events_dropped":0,"avg_latency_ms":1610.3784653486841,"throughput_eps":0,"last_update":"2026-03-21T12:01:29.210696625Z"} +2026/03/21 12:01:34 ───────────────────────────────────────────────── +2026/03/21 12:01:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:01:39 [transform_engine] {"stage_name":"transform_engine","events_processed":85,"events_dropped":0,"avg_latency_ms":1610.3784653486841,"throughput_eps":0,"last_update":"2026-03-21T12:01:34.209690029Z"} +2026/03/21 12:01:39 [log_collector] {"stage_name":"log_collector","events_processed":4516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":903.2,"last_update":"2026-03-21T12:01:34.068607512Z"} +2026/03/21 12:01:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":512.8,"last_update":"2026-03-21T12:01:34.068803568Z"} +2026/03/21 12:01:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:01:34.076522973Z"} +2026/03/21 12:01:39 [detection_layer] {"stage_name":"detection_layer","events_processed":85,"events_dropped":0,"avg_latency_ms":14.74624114412859,"throughput_eps":0,"last_update":"2026-03-21T12:01:34.210784174Z"} +2026/03/21 12:01:39 ───────────────────────────────────────────────── +2026/03/21 12:01:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:01:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:01:39.080475697Z"} +2026/03/21 12:01:44 [detection_layer] {"stage_name":"detection_layer","events_processed":85,"events_dropped":0,"avg_latency_ms":14.74624114412859,"throughput_eps":0,"last_update":"2026-03-21T12:01:39.20986608Z"} +2026/03/21 12:01:44 [transform_engine] {"stage_name":"transform_engine","events_processed":85,"events_dropped":0,"avg_latency_ms":1610.3784653486841,"throughput_eps":0,"last_update":"2026-03-21T12:01:39.209769635Z"} +2026/03/21 12:01:44 [log_collector] {"stage_name":"log_collector","events_processed":4516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":903.2,"last_update":"2026-03-21T12:01:39.068089223Z"} +2026/03/21 12:01:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":513.8,"last_update":"2026-03-21T12:01:39.068402643Z"} +2026/03/21 12:01:44 ───────────────────────────────────────────────── +2026/03/21 12:01:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:01:49 [detection_layer] {"stage_name":"detection_layer","events_processed":85,"events_dropped":0,"avg_latency_ms":14.74624114412859,"throughput_eps":0,"last_update":"2026-03-21T12:01:44.21014125Z"} +2026/03/21 12:01:49 [transform_engine] {"stage_name":"transform_engine","events_processed":85,"events_dropped":0,"avg_latency_ms":1610.3784653486841,"throughput_eps":0,"last_update":"2026-03-21T12:01:44.209725594Z"} +2026/03/21 12:01:49 [log_collector] {"stage_name":"log_collector","events_processed":4516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":903.2,"last_update":"2026-03-21T12:01:44.068509512Z"} +2026/03/21 12:01:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":514.8,"last_update":"2026-03-21T12:01:44.06874358Z"} +2026/03/21 12:01:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:01:44.076824698Z"} +2026/03/21 12:01:49 ───────────────────────────────────────────────── +2026/03/21 12:01:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:01:54 [detection_layer] {"stage_name":"detection_layer","events_processed":85,"events_dropped":0,"avg_latency_ms":14.74624114412859,"throughput_eps":0,"last_update":"2026-03-21T12:01:49.210304999Z"} +2026/03/21 12:01:54 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":1312.5399518789475,"throughput_eps":0,"last_update":"2026-03-21T12:01:49.33152902Z"} +2026/03/21 12:01:54 [log_collector] {"stage_name":"log_collector","events_processed":4525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":905,"last_update":"2026-03-21T12:01:49.068885827Z"} +2026/03/21 12:01:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":515.8,"last_update":"2026-03-21T12:01:49.069543577Z"} +2026/03/21 12:01:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:01:49.078081911Z"} +2026/03/21 12:01:54 ───────────────────────────────────────────────── +Saved state: 12 clusters, 4620 messages, reason: cluster_created +Saved state: 12 clusters, 4621 messages, reason: cluster_template_changed +2026/03/21 12:01:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:01:59 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":14.577773115302874,"throughput_eps":0,"last_update":"2026-03-21T12:01:54.210715128Z"} +2026/03/21 12:01:59 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":1312.5399518789475,"throughput_eps":0,"last_update":"2026-03-21T12:01:54.20963554Z"} +2026/03/21 12:01:59 [log_collector] {"stage_name":"log_collector","events_processed":4849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":969.8,"last_update":"2026-03-21T12:01:59.068118988Z"} +2026/03/21 12:01:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":516.8,"last_update":"2026-03-21T12:01:54.068870712Z"} +2026/03/21 12:01:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1036,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:01:54.076207665Z"} +2026/03/21 12:01:59 ───────────────────────────────────────────────── +2026/03/21 12:02:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:02:04 [log_collector] {"stage_name":"log_collector","events_processed":4849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":969.8,"last_update":"2026-03-21T12:01:59.068118988Z"} +2026/03/21 12:02:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":517.8,"last_update":"2026-03-21T12:01:59.068482334Z"} +2026/03/21 12:02:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:01:59.074830222Z"} +2026/03/21 12:02:04 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":14.577773115302874,"throughput_eps":0,"last_update":"2026-03-21T12:01:59.210205357Z"} +2026/03/21 12:02:04 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":1312.5399518789475,"throughput_eps":0,"last_update":"2026-03-21T12:01:59.210220536Z"} +2026/03/21 12:02:04 ───────────────────────────────────────────────── +2026/03/21 12:02:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:02:09 [log_collector] {"stage_name":"log_collector","events_processed":4877,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":975.4,"last_update":"2026-03-21T12:02:04.068704706Z"} +2026/03/21 12:02:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":518.8,"last_update":"2026-03-21T12:02:04.069018036Z"} +2026/03/21 12:02:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:02:04.078212826Z"} +2026/03/21 12:02:09 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":14.577773115302874,"throughput_eps":0,"last_update":"2026-03-21T12:02:04.210467555Z"} +2026/03/21 12:02:09 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":1312.5399518789475,"throughput_eps":0,"last_update":"2026-03-21T12:02:04.210478076Z"} +2026/03/21 12:02:09 ───────────────────────────────────────────────── +2026/03/21 12:02:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:02:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":519.8,"last_update":"2026-03-21T12:02:09.069142711Z"} +2026/03/21 12:02:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:02:09.07898891Z"} +2026/03/21 12:02:14 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":14.577773115302874,"throughput_eps":0,"last_update":"2026-03-21T12:02:09.210460759Z"} +2026/03/21 12:02:14 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":1312.5399518789475,"throughput_eps":0,"last_update":"2026-03-21T12:02:09.210481098Z"} +2026/03/21 12:02:14 [log_collector] {"stage_name":"log_collector","events_processed":4877,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":975.4,"last_update":"2026-03-21T12:02:09.068775137Z"} +2026/03/21 12:02:14 ───────────────────────────────────────────────── +2026/03/21 12:02:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:02:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":520.8,"last_update":"2026-03-21T12:02:14.068905844Z"} +2026/03/21 12:02:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:02:14.076554744Z"} +2026/03/21 12:02:19 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":14.577773115302874,"throughput_eps":0,"last_update":"2026-03-21T12:02:14.211395155Z"} +2026/03/21 12:02:19 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":1312.5399518789475,"throughput_eps":0,"last_update":"2026-03-21T12:02:14.20970562Z"} +2026/03/21 12:02:19 [log_collector] {"stage_name":"log_collector","events_processed":4880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":976,"last_update":"2026-03-21T12:02:14.068680974Z"} +2026/03/21 12:02:19 ───────────────────────────────────────────────── +2026/03/21 12:02:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:02:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:02:19.075111319Z"} +2026/03/21 12:02:24 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":14.577773115302874,"throughput_eps":0,"last_update":"2026-03-21T12:02:19.210265801Z"} +2026/03/21 12:02:24 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":1535.228960103158,"throughput_eps":0,"last_update":"2026-03-21T12:02:21.636270592Z"} +2026/03/21 12:02:24 [log_collector] {"stage_name":"log_collector","events_processed":4880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":976,"last_update":"2026-03-21T12:02:19.068765184Z"} +2026/03/21 12:02:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":521.8,"last_update":"2026-03-21T12:02:19.068958273Z"} +2026/03/21 12:02:24 ───────────────────────────────────────────────── +2026/03/21 12:02:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:02:29 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":14.052105892242299,"throughput_eps":0,"last_update":"2026-03-21T12:02:24.210275699Z"} +2026/03/21 12:02:29 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":1535.228960103158,"throughput_eps":0,"last_update":"2026-03-21T12:02:24.210285789Z"} +2026/03/21 12:02:29 [log_collector] {"stage_name":"log_collector","events_processed":4891,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":978.2,"last_update":"2026-03-21T12:02:24.068102825Z"} +2026/03/21 12:02:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":522.8,"last_update":"2026-03-21T12:02:24.068474386Z"} +2026/03/21 12:02:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1048,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:02:24.077950947Z"} +2026/03/21 12:02:29 ───────────────────────────────────────────────── +2026/03/21 12:02:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:02:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1050,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:02:29.075090577Z"} +2026/03/21 12:02:34 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":14.052105892242299,"throughput_eps":0,"last_update":"2026-03-21T12:02:29.210343128Z"} +2026/03/21 12:02:34 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":1535.228960103158,"throughput_eps":0,"last_update":"2026-03-21T12:02:29.21036021Z"} +2026/03/21 12:02:34 [log_collector] {"stage_name":"log_collector","events_processed":4898,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":979.6,"last_update":"2026-03-21T12:02:29.068517178Z"} +2026/03/21 12:02:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":523.8,"last_update":"2026-03-21T12:02:29.068781114Z"} +2026/03/21 12:02:34 ───────────────────────────────────────────────── +2026/03/21 12:02:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:02:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:02:34.078063392Z"} +2026/03/21 12:02:39 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":14.052105892242299,"throughput_eps":0,"last_update":"2026-03-21T12:02:34.210304775Z"} +2026/03/21 12:02:39 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":1535.228960103158,"throughput_eps":0,"last_update":"2026-03-21T12:02:34.210313623Z"} +2026/03/21 12:02:39 [log_collector] {"stage_name":"log_collector","events_processed":4907,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":981.4,"last_update":"2026-03-21T12:02:34.068716139Z"} +2026/03/21 12:02:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":524.8,"last_update":"2026-03-21T12:02:34.06898231Z"} +2026/03/21 12:02:39 ───────────────────────────────────────────────── +2026/03/21 12:02:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:02:44 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":14.052105892242299,"throughput_eps":0,"last_update":"2026-03-21T12:02:39.210557682Z"} +2026/03/21 12:02:44 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":1535.228960103158,"throughput_eps":0,"last_update":"2026-03-21T12:02:39.210570827Z"} +2026/03/21 12:02:44 [log_collector] {"stage_name":"log_collector","events_processed":4907,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":981.4,"last_update":"2026-03-21T12:02:39.068784611Z"} +2026/03/21 12:02:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":525.8,"last_update":"2026-03-21T12:02:39.068869715Z"} +2026/03/21 12:02:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:02:39.078168966Z"} +2026/03/21 12:02:44 ───────────────────────────────────────────────── +2026/03/21 12:02:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:02:49 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":14.052105892242299,"throughput_eps":0,"last_update":"2026-03-21T12:02:44.210769922Z"} +2026/03/21 12:02:49 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":1535.228960103158,"throughput_eps":0,"last_update":"2026-03-21T12:02:44.209677569Z"} +2026/03/21 12:02:49 [log_collector] {"stage_name":"log_collector","events_processed":4907,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":981.4,"last_update":"2026-03-21T12:02:44.068720383Z"} +2026/03/21 12:02:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":526.8,"last_update":"2026-03-21T12:02:44.06942363Z"} +2026/03/21 12:02:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1056,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:02:44.077508775Z"} +2026/03/21 12:02:49 ───────────────────────────────────────────────── +2026/03/21 12:02:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:02:54 [log_collector] {"stage_name":"log_collector","events_processed":4907,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":981.4,"last_update":"2026-03-21T12:02:49.06813344Z"} +2026/03/21 12:02:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":527.8,"last_update":"2026-03-21T12:02:49.068599352Z"} +2026/03/21 12:02:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:02:49.077877473Z"} +2026/03/21 12:02:54 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":14.052105892242299,"throughput_eps":0,"last_update":"2026-03-21T12:02:49.210081585Z"} +2026/03/21 12:02:54 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":1250.0942064825265,"throughput_eps":0,"last_update":"2026-03-21T12:02:49.319652727Z"} +2026/03/21 12:02:54 ───────────────────────────────────────────────── +2026/03/21 12:02:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:02:59 [log_collector] {"stage_name":"log_collector","events_processed":4907,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":981.4,"last_update":"2026-03-21T12:02:54.068184091Z"} +2026/03/21 12:02:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":528.8,"last_update":"2026-03-21T12:02:54.0685852Z"} +2026/03/21 12:02:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:02:54.077631647Z"} +2026/03/21 12:02:59 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":14.90234211379384,"throughput_eps":0,"last_update":"2026-03-21T12:02:54.210922449Z"} +2026/03/21 12:02:59 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":1250.0942064825265,"throughput_eps":0,"last_update":"2026-03-21T12:02:54.209807303Z"} +2026/03/21 12:02:59 ───────────────────────────────────────────────── +2026/03/21 12:03:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:03:04 [log_collector] {"stage_name":"log_collector","events_processed":4907,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":981.4,"last_update":"2026-03-21T12:02:59.068716025Z"} +2026/03/21 12:03:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":529.8,"last_update":"2026-03-21T12:02:59.069197677Z"} +2026/03/21 12:03:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1062,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:02:59.077549173Z"} +2026/03/21 12:03:04 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":14.90234211379384,"throughput_eps":0,"last_update":"2026-03-21T12:02:59.21092548Z"} +2026/03/21 12:03:04 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":1250.0942064825265,"throughput_eps":0,"last_update":"2026-03-21T12:02:59.209757593Z"} +2026/03/21 12:03:04 ───────────────────────────────────────────────── +2026/03/21 12:03:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:03:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2653,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":530.6,"last_update":"2026-03-21T12:03:04.069090344Z"} +2026/03/21 12:03:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:03:04.078714187Z"} +2026/03/21 12:03:09 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":14.90234211379384,"throughput_eps":0,"last_update":"2026-03-21T12:03:04.209955986Z"} +2026/03/21 12:03:09 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":1250.0942064825265,"throughput_eps":0,"last_update":"2026-03-21T12:03:04.209979221Z"} +2026/03/21 12:03:09 [log_collector] {"stage_name":"log_collector","events_processed":4907,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":981.4,"last_update":"2026-03-21T12:03:04.069193873Z"} +2026/03/21 12:03:09 ───────────────────────────────────────────────── +2026/03/21 12:03:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:03:14 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":14.90234211379384,"throughput_eps":0,"last_update":"2026-03-21T12:03:09.210682322Z"} +2026/03/21 12:03:14 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":1250.0942064825265,"throughput_eps":0,"last_update":"2026-03-21T12:03:09.210794518Z"} +2026/03/21 12:03:14 [log_collector] {"stage_name":"log_collector","events_processed":4907,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":981.4,"last_update":"2026-03-21T12:03:09.068185257Z"} +2026/03/21 12:03:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":531.6,"last_update":"2026-03-21T12:03:09.067961468Z"} +2026/03/21 12:03:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:03:09.077282961Z"} +2026/03/21 12:03:14 ───────────────────────────────────────────────── +2026/03/21 12:03:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:03:19 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":14.90234211379384,"throughput_eps":0,"last_update":"2026-03-21T12:03:14.210073732Z"} +2026/03/21 12:03:19 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":1250.0942064825265,"throughput_eps":0,"last_update":"2026-03-21T12:03:14.210105885Z"} +2026/03/21 12:03:19 [log_collector] {"stage_name":"log_collector","events_processed":4907,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":981.4,"last_update":"2026-03-21T12:03:14.068846098Z"} +2026/03/21 12:03:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":532.8,"last_update":"2026-03-21T12:03:14.068843132Z"} +2026/03/21 12:03:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:03:14.068571011Z"} +2026/03/21 12:03:19 ───────────────────────────────────────────────── +2026/03/21 12:03:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:03:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":533.8,"last_update":"2026-03-21T12:03:19.069445363Z"} +2026/03/21 12:03:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:03:19.078603494Z"} +2026/03/21 12:03:24 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":14.90234211379384,"throughput_eps":0,"last_update":"2026-03-21T12:03:19.21041788Z"} +2026/03/21 12:03:24 [transform_engine] {"stage_name":"transform_engine","events_processed":89,"events_dropped":0,"avg_latency_ms":1013.4716713860213,"throughput_eps":0,"last_update":"2026-03-21T12:03:19.276909492Z"} +2026/03/21 12:03:24 [log_collector] {"stage_name":"log_collector","events_processed":4907,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":981.4,"last_update":"2026-03-21T12:03:19.068819635Z"} +2026/03/21 12:03:24 ───────────────────────────────────────────────── +2026/03/21 12:03:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:03:29 [transform_engine] {"stage_name":"transform_engine","events_processed":89,"events_dropped":0,"avg_latency_ms":1013.4716713860213,"throughput_eps":0,"last_update":"2026-03-21T12:03:24.209930295Z"} +2026/03/21 12:03:29 [log_collector] {"stage_name":"log_collector","events_processed":4907,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":981.4,"last_update":"2026-03-21T12:03:24.0683372Z"} +2026/03/21 12:03:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":534.8,"last_update":"2026-03-21T12:03:24.068772002Z"} +2026/03/21 12:03:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1072,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:03:24.078668487Z"} +2026/03/21 12:03:29 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":15.776163891035072,"throughput_eps":0,"last_update":"2026-03-21T12:03:24.209888385Z"} +2026/03/21 12:03:29 ───────────────────────────────────────────────── +2026/03/21 12:03:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:03:34 [log_collector] {"stage_name":"log_collector","events_processed":4907,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":981.4,"last_update":"2026-03-21T12:03:29.068810446Z"} +2026/03/21 12:03:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":535.8,"last_update":"2026-03-21T12:03:29.069044375Z"} +2026/03/21 12:03:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:03:29.07862808Z"} +2026/03/21 12:03:34 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":15.776163891035072,"throughput_eps":0,"last_update":"2026-03-21T12:03:29.209864368Z"} +2026/03/21 12:03:34 [transform_engine] {"stage_name":"transform_engine","events_processed":89,"events_dropped":0,"avg_latency_ms":1013.4716713860213,"throughput_eps":0,"last_update":"2026-03-21T12:03:29.209794744Z"} +2026/03/21 12:03:34 ───────────────────────────────────────────────── +2026/03/21 12:03:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:03:39 [log_collector] {"stage_name":"log_collector","events_processed":4907,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":981.4,"last_update":"2026-03-21T12:03:34.068651952Z"} +2026/03/21 12:03:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":536.8,"last_update":"2026-03-21T12:03:34.068909806Z"} +2026/03/21 12:03:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1076,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:03:34.077392674Z"} +2026/03/21 12:03:39 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":15.776163891035072,"throughput_eps":0,"last_update":"2026-03-21T12:03:34.210790231Z"} +2026/03/21 12:03:39 [transform_engine] {"stage_name":"transform_engine","events_processed":89,"events_dropped":0,"avg_latency_ms":1013.4716713860213,"throughput_eps":0,"last_update":"2026-03-21T12:03:34.210748061Z"} +2026/03/21 12:03:39 ───────────────────────────────────────────────── +Saved state: 12 clusters, 4908 messages, reason: none +2026/03/21 12:03:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:03:44 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":15.776163891035072,"throughput_eps":0,"last_update":"2026-03-21T12:03:39.210533479Z"} +2026/03/21 12:03:44 [transform_engine] {"stage_name":"transform_engine","events_processed":89,"events_dropped":0,"avg_latency_ms":1013.4716713860213,"throughput_eps":0,"last_update":"2026-03-21T12:03:39.21055451Z"} +2026/03/21 12:03:44 [log_collector] {"stage_name":"log_collector","events_processed":4907,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":981.4,"last_update":"2026-03-21T12:03:39.068701396Z"} +2026/03/21 12:03:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":537.8,"last_update":"2026-03-21T12:03:39.06894382Z"} +2026/03/21 12:03:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:03:39.078214477Z"} +2026/03/21 12:03:44 ───────────────────────────────────────────────── +2026/03/21 12:03:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:03:49 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":15.776163891035072,"throughput_eps":0,"last_update":"2026-03-21T12:03:44.210148811Z"} +2026/03/21 12:03:49 [transform_engine] {"stage_name":"transform_engine","events_processed":89,"events_dropped":0,"avg_latency_ms":1013.4716713860213,"throughput_eps":0,"last_update":"2026-03-21T12:03:44.210039653Z"} +2026/03/21 12:03:49 [log_collector] {"stage_name":"log_collector","events_processed":4921,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":984.2,"last_update":"2026-03-21T12:03:44.068534175Z"} +2026/03/21 12:03:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":538.8,"last_update":"2026-03-21T12:03:44.068687389Z"} +2026/03/21 12:03:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:03:44.076691209Z"} +2026/03/21 12:03:49 ───────────────────────────────────────────────── +2026/03/21 12:03:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:03:54 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":15.776163891035072,"throughput_eps":0,"last_update":"2026-03-21T12:03:49.210635964Z"} +2026/03/21 12:03:54 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":832.689796308817,"throughput_eps":0,"last_update":"2026-03-21T12:03:49.320310375Z"} +2026/03/21 12:03:54 [log_collector] {"stage_name":"log_collector","events_processed":4921,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":984.2,"last_update":"2026-03-21T12:03:49.068564624Z"} +2026/03/21 12:03:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":539.8,"last_update":"2026-03-21T12:03:49.068900537Z"} +2026/03/21 12:03:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1082,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:03:49.078417785Z"} +2026/03/21 12:03:54 ───────────────────────────────────────────────── +2026/03/21 12:03:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:03:59 [log_collector] {"stage_name":"log_collector","events_processed":4921,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":984.2,"last_update":"2026-03-21T12:03:54.068104341Z"} +2026/03/21 12:03:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":540.8,"last_update":"2026-03-21T12:03:54.068413674Z"} +2026/03/21 12:03:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:03:54.077549211Z"} +2026/03/21 12:03:59 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":15.85588291282806,"throughput_eps":0,"last_update":"2026-03-21T12:03:54.210915689Z"} +2026/03/21 12:03:59 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":832.689796308817,"throughput_eps":0,"last_update":"2026-03-21T12:03:54.209790896Z"} +2026/03/21 12:03:59 ───────────────────────────────────────────────── +2026/03/21 12:04:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:04:04 [log_collector] {"stage_name":"log_collector","events_processed":4921,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":984.2,"last_update":"2026-03-21T12:03:59.068085317Z"} +2026/03/21 12:04:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":541.8,"last_update":"2026-03-21T12:03:59.06871852Z"} +2026/03/21 12:04:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:03:59.077080585Z"} +2026/03/21 12:04:04 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":15.85588291282806,"throughput_eps":0,"last_update":"2026-03-21T12:03:59.210489996Z"} +2026/03/21 12:04:04 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":832.689796308817,"throughput_eps":0,"last_update":"2026-03-21T12:03:59.210529692Z"} +2026/03/21 12:04:04 ───────────────────────────────────────────────── +2026/03/21 12:04:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:04:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":542.8,"last_update":"2026-03-21T12:04:04.069335094Z"} +2026/03/21 12:04:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:04:04.078895775Z"} +2026/03/21 12:04:09 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":15.85588291282806,"throughput_eps":0,"last_update":"2026-03-21T12:04:04.210249068Z"} +2026/03/21 12:04:09 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":832.689796308817,"throughput_eps":0,"last_update":"2026-03-21T12:04:04.210227276Z"} +2026/03/21 12:04:09 [log_collector] {"stage_name":"log_collector","events_processed":4921,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":984.2,"last_update":"2026-03-21T12:04:04.068841287Z"} +2026/03/21 12:04:09 ───────────────────────────────────────────────── +2026/03/21 12:04:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:04:14 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":15.85588291282806,"throughput_eps":0,"last_update":"2026-03-21T12:04:09.210665759Z"} +2026/03/21 12:04:14 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":832.689796308817,"throughput_eps":0,"last_update":"2026-03-21T12:04:09.210811919Z"} +2026/03/21 12:04:14 [log_collector] {"stage_name":"log_collector","events_processed":4921,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":984.2,"last_update":"2026-03-21T12:04:09.068404063Z"} +2026/03/21 12:04:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":543.8,"last_update":"2026-03-21T12:04:09.068922486Z"} +2026/03/21 12:04:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:04:09.07743428Z"} +2026/03/21 12:04:14 ───────────────────────────────────────────────── +2026/03/21 12:04:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:04:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":544.8,"last_update":"2026-03-21T12:04:14.069417458Z"} +2026/03/21 12:04:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:04:14.077920665Z"} +2026/03/21 12:04:19 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":15.85588291282806,"throughput_eps":0,"last_update":"2026-03-21T12:04:14.210145557Z"} +2026/03/21 12:04:19 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":832.689796308817,"throughput_eps":0,"last_update":"2026-03-21T12:04:14.210180915Z"} +2026/03/21 12:04:19 [log_collector] {"stage_name":"log_collector","events_processed":4921,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":984.2,"last_update":"2026-03-21T12:04:14.068812049Z"} +2026/03/21 12:04:19 ───────────────────────────────────────────────── +2026/03/21 12:04:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:04:24 [log_collector] {"stage_name":"log_collector","events_processed":4921,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":984.2,"last_update":"2026-03-21T12:04:19.06829831Z"} +2026/03/21 12:04:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":545.8,"last_update":"2026-03-21T12:04:19.068687776Z"} +2026/03/21 12:04:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:04:19.077820799Z"} +2026/03/21 12:04:24 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":15.85588291282806,"throughput_eps":0,"last_update":"2026-03-21T12:04:19.21030681Z"} +2026/03/21 12:04:24 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":681.5786462470536,"throughput_eps":0,"last_update":"2026-03-21T12:04:19.287332329Z"} +2026/03/21 12:04:24 ───────────────────────────────────────────────── +2026/03/21 12:04:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:04:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:04:24.077846653Z"} +2026/03/21 12:04:29 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":16.326184730262447,"throughput_eps":0,"last_update":"2026-03-21T12:04:24.210051608Z"} +2026/03/21 12:04:29 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":681.5786462470536,"throughput_eps":0,"last_update":"2026-03-21T12:04:24.210026309Z"} +2026/03/21 12:04:29 [log_collector] {"stage_name":"log_collector","events_processed":4921,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":984.2,"last_update":"2026-03-21T12:04:24.068931218Z"} +2026/03/21 12:04:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":546.8,"last_update":"2026-03-21T12:04:24.069223617Z"} +2026/03/21 12:04:29 ───────────────────────────────────────────────── +2026/03/21 12:04:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:04:34 [log_collector] {"stage_name":"log_collector","events_processed":4921,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":984.2,"last_update":"2026-03-21T12:04:29.068553269Z"} +2026/03/21 12:04:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":547.8,"last_update":"2026-03-21T12:04:29.068864394Z"} +2026/03/21 12:04:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:04:29.078699762Z"} +2026/03/21 12:04:34 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":16.326184730262447,"throughput_eps":0,"last_update":"2026-03-21T12:04:29.209940158Z"} +2026/03/21 12:04:34 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":681.5786462470536,"throughput_eps":0,"last_update":"2026-03-21T12:04:29.210043918Z"} +2026/03/21 12:04:34 ───────────────────────────────────────────────── +2026/03/21 12:04:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:04:39 [log_collector] {"stage_name":"log_collector","events_processed":4921,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":984.2,"last_update":"2026-03-21T12:04:34.068487569Z"} +2026/03/21 12:04:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":548.8,"last_update":"2026-03-21T12:04:34.069019728Z"} +2026/03/21 12:04:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:04:34.077686388Z"} +2026/03/21 12:04:39 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":16.326184730262447,"throughput_eps":0,"last_update":"2026-03-21T12:04:34.20998452Z"} +2026/03/21 12:04:39 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":681.5786462470536,"throughput_eps":0,"last_update":"2026-03-21T12:04:34.209934624Z"} +2026/03/21 12:04:39 ───────────────────────────────────────────────── +2026/03/21 12:04:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:04:44 [log_collector] {"stage_name":"log_collector","events_processed":4921,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":984.2,"last_update":"2026-03-21T12:04:39.068826476Z"} +2026/03/21 12:04:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":549.8,"last_update":"2026-03-21T12:04:39.069190162Z"} +2026/03/21 12:04:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:04:39.078511736Z"} +2026/03/21 12:04:44 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":16.326184730262447,"throughput_eps":0,"last_update":"2026-03-21T12:04:39.209867294Z"} +2026/03/21 12:04:44 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":681.5786462470536,"throughput_eps":0,"last_update":"2026-03-21T12:04:39.209718389Z"} +2026/03/21 12:04:44 ───────────────────────────────────────────────── +Saved state: 12 clusters, 4922 messages, reason: none +2026/03/21 12:04:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:04:49 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":16.326184730262447,"throughput_eps":0,"last_update":"2026-03-21T12:04:44.209880807Z"} +2026/03/21 12:04:49 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":681.5786462470536,"throughput_eps":0,"last_update":"2026-03-21T12:04:44.209774614Z"} +2026/03/21 12:04:49 [log_collector] {"stage_name":"log_collector","events_processed":4921,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":984.2,"last_update":"2026-03-21T12:04:44.068593467Z"} +2026/03/21 12:04:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":550.8,"last_update":"2026-03-21T12:04:44.068891548Z"} +2026/03/21 12:04:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:04:44.07860884Z"} +2026/03/21 12:04:49 ───────────────────────────────────────────────── +2026/03/21 12:04:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:04:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":551.8,"last_update":"2026-03-21T12:04:49.069987115Z"} +2026/03/21 12:04:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:04:49.074445876Z"} +2026/03/21 12:04:54 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":16.326184730262447,"throughput_eps":0,"last_update":"2026-03-21T12:04:49.211006792Z"} +2026/03/21 12:04:54 [transform_engine] {"stage_name":"transform_engine","events_processed":92,"events_dropped":0,"avg_latency_ms":566.138906997643,"throughput_eps":0,"last_update":"2026-03-21T12:04:49.314031236Z"} +2026/03/21 12:04:54 [log_collector] {"stage_name":"log_collector","events_processed":4926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":985.2,"last_update":"2026-03-21T12:04:49.069768687Z"} +2026/03/21 12:04:54 ───────────────────────────────────────────────── +2026/03/21 12:04:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:04:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":552.8,"last_update":"2026-03-21T12:04:54.068793867Z"} +2026/03/21 12:04:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:04:54.07588568Z"} +2026/03/21 12:04:59 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":15.634665184209958,"throughput_eps":0,"last_update":"2026-03-21T12:04:54.211181294Z"} +2026/03/21 12:04:59 [transform_engine] {"stage_name":"transform_engine","events_processed":92,"events_dropped":0,"avg_latency_ms":566.138906997643,"throughput_eps":0,"last_update":"2026-03-21T12:04:54.210342217Z"} +2026/03/21 12:04:59 [log_collector] {"stage_name":"log_collector","events_processed":4926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":985.2,"last_update":"2026-03-21T12:04:54.068802024Z"} +2026/03/21 12:04:59 ───────────────────────────────────────────────── +2026/03/21 12:05:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:05:04 [log_collector] {"stage_name":"log_collector","events_processed":4926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":985.2,"last_update":"2026-03-21T12:04:59.068229696Z"} +2026/03/21 12:05:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":553.8,"last_update":"2026-03-21T12:04:59.069485912Z"} +2026/03/21 12:05:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:04:59.078973274Z"} +2026/03/21 12:05:04 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":15.634665184209958,"throughput_eps":0,"last_update":"2026-03-21T12:04:59.210268084Z"} +2026/03/21 12:05:04 [transform_engine] {"stage_name":"transform_engine","events_processed":92,"events_dropped":0,"avg_latency_ms":566.138906997643,"throughput_eps":0,"last_update":"2026-03-21T12:04:59.210243337Z"} +2026/03/21 12:05:04 ───────────────────────────────────────────────── +2026/03/21 12:05:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:05:09 [log_collector] {"stage_name":"log_collector","events_processed":4926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":985.2,"last_update":"2026-03-21T12:05:04.068409169Z"} +2026/03/21 12:05:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":554.8,"last_update":"2026-03-21T12:05:04.068544409Z"} +2026/03/21 12:05:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:05:04.075129Z"} +2026/03/21 12:05:09 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":15.634665184209958,"throughput_eps":0,"last_update":"2026-03-21T12:05:04.210453388Z"} +2026/03/21 12:05:09 [transform_engine] {"stage_name":"transform_engine","events_processed":92,"events_dropped":0,"avg_latency_ms":566.138906997643,"throughput_eps":0,"last_update":"2026-03-21T12:05:04.210436427Z"} +2026/03/21 12:05:09 ───────────────────────────────────────────────── +2026/03/21 12:05:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:05:14 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":15.634665184209958,"throughput_eps":0,"last_update":"2026-03-21T12:05:09.210647512Z"} +2026/03/21 12:05:14 [transform_engine] {"stage_name":"transform_engine","events_processed":92,"events_dropped":0,"avg_latency_ms":566.138906997643,"throughput_eps":0,"last_update":"2026-03-21T12:05:09.210616522Z"} +2026/03/21 12:05:14 [log_collector] {"stage_name":"log_collector","events_processed":4926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":985.2,"last_update":"2026-03-21T12:05:09.068061655Z"} +2026/03/21 12:05:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":555.8,"last_update":"2026-03-21T12:05:09.068181014Z"} +2026/03/21 12:05:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:05:09.077332622Z"} +2026/03/21 12:05:14 ───────────────────────────────────────────────── +2026/03/21 12:05:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:05:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:05:14.07644922Z"} +2026/03/21 12:05:19 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":15.634665184209958,"throughput_eps":0,"last_update":"2026-03-21T12:05:14.210708169Z"} +2026/03/21 12:05:19 [transform_engine] {"stage_name":"transform_engine","events_processed":92,"events_dropped":0,"avg_latency_ms":566.138906997643,"throughput_eps":0,"last_update":"2026-03-21T12:05:14.210670877Z"} +2026/03/21 12:05:19 [log_collector] {"stage_name":"log_collector","events_processed":4926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":985.2,"last_update":"2026-03-21T12:05:14.068300212Z"} +2026/03/21 12:05:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":556.8,"last_update":"2026-03-21T12:05:14.0682885Z"} +2026/03/21 12:05:19 ───────────────────────────────────────────────── +2026/03/21 12:05:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:05:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:05:19.07642239Z"} +2026/03/21 12:05:24 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":15.634665184209958,"throughput_eps":0,"last_update":"2026-03-21T12:05:19.210968318Z"} +2026/03/21 12:05:24 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":783.7022705981144,"throughput_eps":0,"last_update":"2026-03-21T12:05:20.864901039Z"} +2026/03/21 12:05:24 [log_collector] {"stage_name":"log_collector","events_processed":4926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":985.2,"last_update":"2026-03-21T12:05:19.069232459Z"} +2026/03/21 12:05:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":557.8,"last_update":"2026-03-21T12:05:19.069224154Z"} +2026/03/21 12:05:24 ───────────────────────────────────────────────── +2026/03/21 12:05:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:05:29 [log_collector] {"stage_name":"log_collector","events_processed":4926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":985.2,"last_update":"2026-03-21T12:05:24.068896606Z"} +2026/03/21 12:05:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":558.8,"last_update":"2026-03-21T12:05:24.06914407Z"} +2026/03/21 12:05:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:05:24.076239019Z"} +2026/03/21 12:05:29 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":14.468058747367968,"throughput_eps":0,"last_update":"2026-03-21T12:05:24.210498539Z"} +2026/03/21 12:05:29 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":783.7022705981144,"throughput_eps":0,"last_update":"2026-03-21T12:05:24.210487327Z"} +2026/03/21 12:05:29 ───────────────────────────────────────────────── +2026/03/21 12:05:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:05:34 [log_collector] {"stage_name":"log_collector","events_processed":4926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":985.2,"last_update":"2026-03-21T12:05:29.068496523Z"} +2026/03/21 12:05:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":559.6,"last_update":"2026-03-21T12:05:29.06849992Z"} +2026/03/21 12:05:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1122,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:05:29.074782352Z"} +2026/03/21 12:05:34 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":14.468058747367968,"throughput_eps":0,"last_update":"2026-03-21T12:05:29.212150085Z"} +2026/03/21 12:05:34 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":783.7022705981144,"throughput_eps":0,"last_update":"2026-03-21T12:05:29.212129185Z"} +2026/03/21 12:05:34 ───────────────────────────────────────────────── +2026/03/21 12:05:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:05:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":560.8,"last_update":"2026-03-21T12:05:34.068958792Z"} +2026/03/21 12:05:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:05:34.077831726Z"} +2026/03/21 12:05:39 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":14.468058747367968,"throughput_eps":0,"last_update":"2026-03-21T12:05:34.210273424Z"} +2026/03/21 12:05:39 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":783.7022705981144,"throughput_eps":0,"last_update":"2026-03-21T12:05:34.210171899Z"} +2026/03/21 12:05:39 [log_collector] {"stage_name":"log_collector","events_processed":4935,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":987,"last_update":"2026-03-21T12:05:34.068781562Z"} +2026/03/21 12:05:39 ───────────────────────────────────────────────── +Saved state: 13 clusters, 5178 messages, reason: cluster_created +Saved state: 14 clusters, 5179 messages, reason: cluster_created +2026/03/21 12:05:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:05:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1126,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:05:39.075398001Z"} +2026/03/21 12:05:44 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":14.468058747367968,"throughput_eps":0,"last_update":"2026-03-21T12:05:39.209953346Z"} +2026/03/21 12:05:44 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":783.7022705981144,"throughput_eps":0,"last_update":"2026-03-21T12:05:39.209938779Z"} +2026/03/21 12:05:44 [log_collector] {"stage_name":"log_collector","events_processed":4947,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":989.4,"last_update":"2026-03-21T12:05:39.069152619Z"} +2026/03/21 12:05:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":561.8,"last_update":"2026-03-21T12:05:39.069223244Z"} +2026/03/21 12:05:44 ───────────────────────────────────────────────── +2026/03/21 12:05:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:05:49 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":783.7022705981144,"throughput_eps":0,"last_update":"2026-03-21T12:05:44.210372825Z"} +2026/03/21 12:05:49 [log_collector] {"stage_name":"log_collector","events_processed":5238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1047.6,"last_update":"2026-03-21T12:05:44.068940818Z"} +2026/03/21 12:05:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":562.8,"last_update":"2026-03-21T12:05:44.069234631Z"} +2026/03/21 12:05:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1128,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:05:44.076291697Z"} +2026/03/21 12:05:49 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":14.468058747367968,"throughput_eps":0,"last_update":"2026-03-21T12:05:44.210366242Z"} +2026/03/21 12:05:49 ───────────────────────────────────────────────── +2026/03/21 12:05:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:05:54 [log_collector] {"stage_name":"log_collector","events_processed":5282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1056.4,"last_update":"2026-03-21T12:05:49.068233679Z"} +2026/03/21 12:05:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":563.8,"last_update":"2026-03-21T12:05:49.068766269Z"} +2026/03/21 12:05:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1130,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:05:49.078145373Z"} +2026/03/21 12:05:54 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":14.468058747367968,"throughput_eps":0,"last_update":"2026-03-21T12:05:49.211097108Z"} +2026/03/21 12:05:54 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":709.5278484784915,"throughput_eps":0,"last_update":"2026-03-21T12:05:49.62330721Z"} +2026/03/21 12:05:54 ───────────────────────────────────────────────── +2026/03/21 12:05:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:05:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:05:54.077328835Z"} +2026/03/21 12:05:59 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":14.788587197894376,"throughput_eps":0,"last_update":"2026-03-21T12:05:54.210509597Z"} +2026/03/21 12:05:59 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":709.5278484784915,"throughput_eps":0,"last_update":"2026-03-21T12:05:54.21052185Z"} +2026/03/21 12:05:59 [log_collector] {"stage_name":"log_collector","events_processed":5288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1057.6,"last_update":"2026-03-21T12:05:54.068830617Z"} +2026/03/21 12:05:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":564.8,"last_update":"2026-03-21T12:05:54.069116415Z"} +2026/03/21 12:05:59 ───────────────────────────────────────────────── +2026/03/21 12:06:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:06:04 [log_collector] {"stage_name":"log_collector","events_processed":5288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1057.6,"last_update":"2026-03-21T12:05:59.06882342Z"} +2026/03/21 12:06:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":565.8,"last_update":"2026-03-21T12:05:59.069344048Z"} +2026/03/21 12:06:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:05:59.077886329Z"} +2026/03/21 12:06:04 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":14.788587197894376,"throughput_eps":0,"last_update":"2026-03-21T12:05:59.21006389Z"} +2026/03/21 12:06:04 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":709.5278484784915,"throughput_eps":0,"last_update":"2026-03-21T12:05:59.210071124Z"} +2026/03/21 12:06:04 ───────────────────────────────────────────────── +2026/03/21 12:06:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:06:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":566.8,"last_update":"2026-03-21T12:06:04.069598409Z"} +2026/03/21 12:06:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:06:04.07899111Z"} +2026/03/21 12:06:09 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":14.788587197894376,"throughput_eps":0,"last_update":"2026-03-21T12:06:04.210241836Z"} +2026/03/21 12:06:09 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":709.5278484784915,"throughput_eps":0,"last_update":"2026-03-21T12:06:04.210253088Z"} +2026/03/21 12:06:09 [log_collector] {"stage_name":"log_collector","events_processed":5288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1057.6,"last_update":"2026-03-21T12:06:04.068831321Z"} +2026/03/21 12:06:09 ───────────────────────────────────────────────── +2026/03/21 12:06:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:06:14 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":709.5278484784915,"throughput_eps":0,"last_update":"2026-03-21T12:06:09.210562948Z"} +2026/03/21 12:06:14 [log_collector] {"stage_name":"log_collector","events_processed":5288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1057.6,"last_update":"2026-03-21T12:06:09.068726116Z"} +2026/03/21 12:06:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":567.8,"last_update":"2026-03-21T12:06:09.069124519Z"} +2026/03/21 12:06:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:06:09.078326845Z"} +2026/03/21 12:06:14 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":14.788587197894376,"throughput_eps":0,"last_update":"2026-03-21T12:06:09.210618515Z"} +2026/03/21 12:06:14 ───────────────────────────────────────────────── +2026/03/21 12:06:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:06:19 [log_collector] {"stage_name":"log_collector","events_processed":5288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1057.6,"last_update":"2026-03-21T12:06:14.068099132Z"} +2026/03/21 12:06:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":568.8,"last_update":"2026-03-21T12:06:14.068613927Z"} +2026/03/21 12:06:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:06:14.078213524Z"} +2026/03/21 12:06:19 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":14.788587197894376,"throughput_eps":0,"last_update":"2026-03-21T12:06:14.210616968Z"} +2026/03/21 12:06:19 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":709.5278484784915,"throughput_eps":0,"last_update":"2026-03-21T12:06:14.210642137Z"} +2026/03/21 12:06:19 ───────────────────────────────────────────────── +2026/03/21 12:06:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:06:24 [log_collector] {"stage_name":"log_collector","events_processed":5288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1057.6,"last_update":"2026-03-21T12:06:19.069045944Z"} +2026/03/21 12:06:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":569.8,"last_update":"2026-03-21T12:06:19.069671352Z"} +2026/03/21 12:06:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:06:19.077602853Z"} +2026/03/21 12:06:24 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":14.788587197894376,"throughput_eps":0,"last_update":"2026-03-21T12:06:19.210872156Z"} +2026/03/21 12:06:24 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":709.5278484784915,"throughput_eps":0,"last_update":"2026-03-21T12:06:19.209723235Z"} +2026/03/21 12:06:24 ───────────────────────────────────────────────── +2026/03/21 12:06:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:06:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:06:24.079429059Z"} +2026/03/21 12:06:29 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":15.8025549583155,"throughput_eps":0,"last_update":"2026-03-21T12:06:24.210786169Z"} +2026/03/21 12:06:29 [transform_engine] {"stage_name":"transform_engine","events_processed":95,"events_dropped":0,"avg_latency_ms":589.6764633827931,"throughput_eps":0,"last_update":"2026-03-21T12:06:24.209650393Z"} +2026/03/21 12:06:29 [log_collector] {"stage_name":"log_collector","events_processed":5288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1057.6,"last_update":"2026-03-21T12:06:24.068782998Z"} +2026/03/21 12:06:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":570.8,"last_update":"2026-03-21T12:06:24.069310949Z"} +2026/03/21 12:06:29 ───────────────────────────────────────────────── +2026/03/21 12:06:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:06:34 [log_collector] {"stage_name":"log_collector","events_processed":5288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1057.6,"last_update":"2026-03-21T12:06:29.068789237Z"} +2026/03/21 12:06:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":571.8,"last_update":"2026-03-21T12:06:29.069078291Z"} +2026/03/21 12:06:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:06:29.07765052Z"} +2026/03/21 12:06:34 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":15.8025549583155,"throughput_eps":0,"last_update":"2026-03-21T12:06:29.209887345Z"} +2026/03/21 12:06:34 [transform_engine] {"stage_name":"transform_engine","events_processed":95,"events_dropped":0,"avg_latency_ms":589.6764633827931,"throughput_eps":0,"last_update":"2026-03-21T12:06:29.209927242Z"} +2026/03/21 12:06:34 ───────────────────────────────────────────────── +2026/03/21 12:06:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:06:39 [log_collector] {"stage_name":"log_collector","events_processed":5288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1057.6,"last_update":"2026-03-21T12:06:34.068107622Z"} +2026/03/21 12:06:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":572.8,"last_update":"2026-03-21T12:06:34.068792614Z"} +2026/03/21 12:06:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:06:34.078440192Z"} +2026/03/21 12:06:39 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":15.8025549583155,"throughput_eps":0,"last_update":"2026-03-21T12:06:34.210759064Z"} +2026/03/21 12:06:39 [transform_engine] {"stage_name":"transform_engine","events_processed":95,"events_dropped":0,"avg_latency_ms":589.6764633827931,"throughput_eps":0,"last_update":"2026-03-21T12:06:34.209646995Z"} +2026/03/21 12:06:39 ───────────────────────────────────────────────── +2026/03/21 12:06:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:06:44 [log_collector] {"stage_name":"log_collector","events_processed":5288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1057.6,"last_update":"2026-03-21T12:06:39.06876994Z"} +2026/03/21 12:06:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":573.8,"last_update":"2026-03-21T12:06:39.069011173Z"} +2026/03/21 12:06:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:06:39.078040647Z"} +2026/03/21 12:06:44 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":15.8025549583155,"throughput_eps":0,"last_update":"2026-03-21T12:06:39.210322438Z"} +2026/03/21 12:06:44 [transform_engine] {"stage_name":"transform_engine","events_processed":95,"events_dropped":0,"avg_latency_ms":589.6764633827931,"throughput_eps":0,"last_update":"2026-03-21T12:06:39.210282622Z"} +2026/03/21 12:06:44 ───────────────────────────────────────────────── +2026/03/21 12:06:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:06:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:06:44.078478403Z"} +2026/03/21 12:06:49 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":15.8025549583155,"throughput_eps":0,"last_update":"2026-03-21T12:06:44.210683057Z"} +2026/03/21 12:06:49 [transform_engine] {"stage_name":"transform_engine","events_processed":95,"events_dropped":0,"avg_latency_ms":589.6764633827931,"throughput_eps":0,"last_update":"2026-03-21T12:06:44.210707624Z"} +2026/03/21 12:06:49 [log_collector] {"stage_name":"log_collector","events_processed":5288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1057.6,"last_update":"2026-03-21T12:06:44.068664006Z"} +2026/03/21 12:06:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":574.8,"last_update":"2026-03-21T12:06:44.068918874Z"} +2026/03/21 12:06:49 ───────────────────────────────────────────────── +2026/03/21 12:06:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:06:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:06:49.077291038Z"} +2026/03/21 12:06:54 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":15.8025549583155,"throughput_eps":0,"last_update":"2026-03-21T12:06:49.210536285Z"} +2026/03/21 12:06:54 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":489.52136530623454,"throughput_eps":0,"last_update":"2026-03-21T12:06:49.299448229Z"} +2026/03/21 12:06:54 [log_collector] {"stage_name":"log_collector","events_processed":5288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1057.6,"last_update":"2026-03-21T12:06:49.068855461Z"} +2026/03/21 12:06:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":575.8,"last_update":"2026-03-21T12:06:49.069160065Z"} +2026/03/21 12:06:54 ───────────────────────────────────────────────── +2026/03/21 12:06:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:06:59 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":16.2428305666524,"throughput_eps":0,"last_update":"2026-03-21T12:06:54.210718964Z"} +2026/03/21 12:06:59 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":489.52136530623454,"throughput_eps":0,"last_update":"2026-03-21T12:06:54.210751135Z"} +2026/03/21 12:06:59 [log_collector] {"stage_name":"log_collector","events_processed":5288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1057.6,"last_update":"2026-03-21T12:06:54.068795045Z"} +2026/03/21 12:06:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":576.8,"last_update":"2026-03-21T12:06:54.069492561Z"} +2026/03/21 12:06:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:06:54.078426763Z"} +2026/03/21 12:06:59 ───────────────────────────────────────────────── +2026/03/21 12:07:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:07:04 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":16.2428305666524,"throughput_eps":0,"last_update":"2026-03-21T12:06:59.210902016Z"} +2026/03/21 12:07:04 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":489.52136530623454,"throughput_eps":0,"last_update":"2026-03-21T12:06:59.209726885Z"} +2026/03/21 12:07:04 [log_collector] {"stage_name":"log_collector","events_processed":5288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1057.6,"last_update":"2026-03-21T12:06:59.068735501Z"} +2026/03/21 12:07:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":577.8,"last_update":"2026-03-21T12:06:59.069063089Z"} +2026/03/21 12:07:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:06:59.077556978Z"} +2026/03/21 12:07:04 ───────────────────────────────────────────────── +Saved state: 14 clusters, 5289 messages, reason: none +2026/03/21 12:07:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:07:09 [log_collector] {"stage_name":"log_collector","events_processed":5288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1057.6,"last_update":"2026-03-21T12:07:04.068886494Z"} +2026/03/21 12:07:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":578.8,"last_update":"2026-03-21T12:07:04.068933083Z"} +2026/03/21 12:07:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:07:04.0781993Z"} +2026/03/21 12:07:09 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":16.2428305666524,"throughput_eps":0,"last_update":"2026-03-21T12:07:04.210671066Z"} +2026/03/21 12:07:09 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":489.52136530623454,"throughput_eps":0,"last_update":"2026-03-21T12:07:04.210625559Z"} +2026/03/21 12:07:09 ───────────────────────────────────────────────── +2026/03/21 12:07:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:07:14 [log_collector] {"stage_name":"log_collector","events_processed":5291,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1058.2,"last_update":"2026-03-21T12:07:09.068657977Z"} +2026/03/21 12:07:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":579.8,"last_update":"2026-03-21T12:07:09.069177733Z"} +2026/03/21 12:07:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:07:09.076716542Z"} +2026/03/21 12:07:14 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":16.2428305666524,"throughput_eps":0,"last_update":"2026-03-21T12:07:09.209883008Z"} +2026/03/21 12:07:14 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":489.52136530623454,"throughput_eps":0,"last_update":"2026-03-21T12:07:09.209872597Z"} +2026/03/21 12:07:14 ───────────────────────────────────────────────── +2026/03/21 12:07:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:07:19 [log_collector] {"stage_name":"log_collector","events_processed":5291,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1058.2,"last_update":"2026-03-21T12:07:14.068872932Z"} +2026/03/21 12:07:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":580.8,"last_update":"2026-03-21T12:07:14.069129192Z"} +2026/03/21 12:07:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:07:14.07654151Z"} +2026/03/21 12:07:19 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":16.2428305666524,"throughput_eps":0,"last_update":"2026-03-21T12:07:14.210177594Z"} +2026/03/21 12:07:19 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":489.52136530623454,"throughput_eps":0,"last_update":"2026-03-21T12:07:14.210188365Z"} +2026/03/21 12:07:19 ───────────────────────────────────────────────── +2026/03/21 12:07:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:07:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:07:19.077999615Z"} +2026/03/21 12:07:24 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":16.2428305666524,"throughput_eps":0,"last_update":"2026-03-21T12:07:19.210422607Z"} +2026/03/21 12:07:24 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":424.96137524498766,"throughput_eps":0,"last_update":"2026-03-21T12:07:19.376981861Z"} +2026/03/21 12:07:24 [log_collector] {"stage_name":"log_collector","events_processed":5302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1060.4,"last_update":"2026-03-21T12:07:19.068610853Z"} +2026/03/21 12:07:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":581.8,"last_update":"2026-03-21T12:07:19.068982033Z"} +2026/03/21 12:07:24 ───────────────────────────────────────────────── +2026/03/21 12:07:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:07:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":583.8,"last_update":"2026-03-21T12:07:29.068267752Z"} +2026/03/21 12:07:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:07:24.076951249Z"} +2026/03/21 12:07:29 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":15.936018853321922,"throughput_eps":0,"last_update":"2026-03-21T12:07:24.210172451Z"} +2026/03/21 12:07:29 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":424.96137524498766,"throughput_eps":0,"last_update":"2026-03-21T12:07:24.210205293Z"} +2026/03/21 12:07:29 [log_collector] {"stage_name":"log_collector","events_processed":5310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1062,"last_update":"2026-03-21T12:07:24.068626735Z"} +2026/03/21 12:07:29 ───────────────────────────────────────────────── +2026/03/21 12:07:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:07:34 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":15.936018853321922,"throughput_eps":0,"last_update":"2026-03-21T12:07:29.210380212Z"} +2026/03/21 12:07:34 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":424.96137524498766,"throughput_eps":0,"last_update":"2026-03-21T12:07:29.210344063Z"} +2026/03/21 12:07:34 [log_collector] {"stage_name":"log_collector","events_processed":5321,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1064.2,"last_update":"2026-03-21T12:07:29.068284795Z"} +2026/03/21 12:07:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":583.8,"last_update":"2026-03-21T12:07:29.068267752Z"} +2026/03/21 12:07:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1170,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:07:29.074174856Z"} +2026/03/21 12:07:34 ───────────────────────────────────────────────── +2026/03/21 12:07:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:07:39 [log_collector] {"stage_name":"log_collector","events_processed":5332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1066.4,"last_update":"2026-03-21T12:07:34.068795106Z"} +2026/03/21 12:07:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":584.8,"last_update":"2026-03-21T12:07:34.069071245Z"} +2026/03/21 12:07:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:07:34.078780982Z"} +2026/03/21 12:07:39 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":15.936018853321922,"throughput_eps":0,"last_update":"2026-03-21T12:07:34.210251841Z"} +2026/03/21 12:07:39 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":424.96137524498766,"throughput_eps":0,"last_update":"2026-03-21T12:07:34.210292548Z"} +2026/03/21 12:07:39 ───────────────────────────────────────────────── +2026/03/21 12:07:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:07:44 [log_collector] {"stage_name":"log_collector","events_processed":5332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1066.4,"last_update":"2026-03-21T12:07:39.068162267Z"} +2026/03/21 12:07:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":585.8,"last_update":"2026-03-21T12:07:39.068626626Z"} +2026/03/21 12:07:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:07:39.076959537Z"} +2026/03/21 12:07:44 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":15.936018853321922,"throughput_eps":0,"last_update":"2026-03-21T12:07:39.210533042Z"} +2026/03/21 12:07:44 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":424.96137524498766,"throughput_eps":0,"last_update":"2026-03-21T12:07:39.21042743Z"} +2026/03/21 12:07:44 ───────────────────────────────────────────────── +2026/03/21 12:07:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:07:49 [log_collector] {"stage_name":"log_collector","events_processed":5332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1066.4,"last_update":"2026-03-21T12:07:44.068116804Z"} +2026/03/21 12:07:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":586.8,"last_update":"2026-03-21T12:07:44.068398042Z"} +2026/03/21 12:07:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:07:44.077678246Z"} +2026/03/21 12:07:49 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":15.936018853321922,"throughput_eps":0,"last_update":"2026-03-21T12:07:44.20999731Z"} +2026/03/21 12:07:49 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":424.96137524498766,"throughput_eps":0,"last_update":"2026-03-21T12:07:44.210110346Z"} +2026/03/21 12:07:49 ───────────────────────────────────────────────── +2026/03/21 12:07:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:07:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:07:49.077795808Z"} +2026/03/21 12:07:54 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":15.936018853321922,"throughput_eps":0,"last_update":"2026-03-21T12:07:49.210521199Z"} +2026/03/21 12:07:54 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":361.8614951959902,"throughput_eps":0,"last_update":"2026-03-21T12:07:49.319659644Z"} +2026/03/21 12:07:54 [log_collector] {"stage_name":"log_collector","events_processed":5332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1066.4,"last_update":"2026-03-21T12:07:49.068075259Z"} +2026/03/21 12:07:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":587.8,"last_update":"2026-03-21T12:07:49.068751304Z"} +2026/03/21 12:07:54 ───────────────────────────────────────────────── +2026/03/21 12:07:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:07:59 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":361.8614951959902,"throughput_eps":0,"last_update":"2026-03-21T12:07:54.210609543Z"} +2026/03/21 12:07:59 [log_collector] {"stage_name":"log_collector","events_processed":5332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1066.4,"last_update":"2026-03-21T12:07:54.068700932Z"} +2026/03/21 12:07:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":588.8,"last_update":"2026-03-21T12:07:54.069087774Z"} +2026/03/21 12:07:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:07:54.077207305Z"} +2026/03/21 12:07:59 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":16.470675882657538,"throughput_eps":0,"last_update":"2026-03-21T12:07:54.210721768Z"} +2026/03/21 12:07:59 ───────────────────────────────────────────────── +2026/03/21 12:08:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:08:04 [log_collector] {"stage_name":"log_collector","events_processed":5332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1066.4,"last_update":"2026-03-21T12:07:59.068327121Z"} +2026/03/21 12:08:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":589.8,"last_update":"2026-03-21T12:07:59.069294161Z"} +2026/03/21 12:08:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:07:59.077532898Z"} +2026/03/21 12:08:04 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":16.470675882657538,"throughput_eps":0,"last_update":"2026-03-21T12:07:59.20991239Z"} +2026/03/21 12:08:04 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":361.8614951959902,"throughput_eps":0,"last_update":"2026-03-21T12:07:59.209788344Z"} +2026/03/21 12:08:04 ───────────────────────────────────────────────── +2026/03/21 12:08:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:08:09 [log_collector] {"stage_name":"log_collector","events_processed":5332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1066.4,"last_update":"2026-03-21T12:08:04.068078109Z"} +2026/03/21 12:08:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":590.8,"last_update":"2026-03-21T12:08:04.068721209Z"} +2026/03/21 12:08:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:08:04.077810653Z"} +2026/03/21 12:08:09 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":16.470675882657538,"throughput_eps":0,"last_update":"2026-03-21T12:08:04.210141396Z"} +2026/03/21 12:08:09 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":361.8614951959902,"throughput_eps":0,"last_update":"2026-03-21T12:08:04.210243431Z"} +2026/03/21 12:08:09 ───────────────────────────────────────────────── +2026/03/21 12:08:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:08:14 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":16.470675882657538,"throughput_eps":0,"last_update":"2026-03-21T12:08:09.210568732Z"} +2026/03/21 12:08:14 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":361.8614951959902,"throughput_eps":0,"last_update":"2026-03-21T12:08:09.210465554Z"} +2026/03/21 12:08:14 [log_collector] {"stage_name":"log_collector","events_processed":5332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1066.4,"last_update":"2026-03-21T12:08:09.068702357Z"} +2026/03/21 12:08:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":591.8,"last_update":"2026-03-21T12:08:09.069031167Z"} +2026/03/21 12:08:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:08:09.068722275Z"} +2026/03/21 12:08:14 ───────────────────────────────────────────────── +2026/03/21 12:08:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:08:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:08:14.078063195Z"} +2026/03/21 12:08:19 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":16.470675882657538,"throughput_eps":0,"last_update":"2026-03-21T12:08:14.210377152Z"} +2026/03/21 12:08:19 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":361.8614951959902,"throughput_eps":0,"last_update":"2026-03-21T12:08:14.210347465Z"} +2026/03/21 12:08:19 [log_collector] {"stage_name":"log_collector","events_processed":5332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1066.4,"last_update":"2026-03-21T12:08:19.068248975Z"} +2026/03/21 12:08:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":592.8,"last_update":"2026-03-21T12:08:14.069183821Z"} +2026/03/21 12:08:19 ───────────────────────────────────────────────── +2026/03/21 12:08:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:08:24 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":16.470675882657538,"throughput_eps":0,"last_update":"2026-03-21T12:08:19.21009705Z"} +2026/03/21 12:08:24 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":304.49224475679216,"throughput_eps":0,"last_update":"2026-03-21T12:08:19.285140208Z"} +2026/03/21 12:08:24 [log_collector] {"stage_name":"log_collector","events_processed":5332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1066.4,"last_update":"2026-03-21T12:08:19.068248975Z"} +2026/03/21 12:08:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":593.8,"last_update":"2026-03-21T12:08:19.068986306Z"} +2026/03/21 12:08:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:08:19.078747617Z"} +2026/03/21 12:08:24 ───────────────────────────────────────────────── +2026/03/21 12:08:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:08:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":594.8,"last_update":"2026-03-21T12:08:24.069200302Z"} +2026/03/21 12:08:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:08:24.079565157Z"} +2026/03/21 12:08:29 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":16.865630906126032,"throughput_eps":0,"last_update":"2026-03-21T12:08:24.210811117Z"} +2026/03/21 12:08:29 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":304.49224475679216,"throughput_eps":0,"last_update":"2026-03-21T12:08:24.209712365Z"} +2026/03/21 12:08:29 [log_collector] {"stage_name":"log_collector","events_processed":5332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1066.4,"last_update":"2026-03-21T12:08:24.068983046Z"} +2026/03/21 12:08:29 ───────────────────────────────────────────────── +Saved state: 14 clusters, 5333 messages, reason: none +2026/03/21 12:08:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:08:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:08:29.078230598Z"} +2026/03/21 12:08:34 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":16.865630906126032,"throughput_eps":0,"last_update":"2026-03-21T12:08:29.210484678Z"} +2026/03/21 12:08:34 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":304.49224475679216,"throughput_eps":0,"last_update":"2026-03-21T12:08:29.210453889Z"} +2026/03/21 12:08:34 [log_collector] {"stage_name":"log_collector","events_processed":5332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1066.4,"last_update":"2026-03-21T12:08:29.068093779Z"} +2026/03/21 12:08:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":595.8,"last_update":"2026-03-21T12:08:29.068765384Z"} +2026/03/21 12:08:34 ───────────────────────────────────────────────── +2026/03/21 12:08:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:08:39 [log_collector] {"stage_name":"log_collector","events_processed":5337,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1067.4,"last_update":"2026-03-21T12:08:34.068748489Z"} +2026/03/21 12:08:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":596.8,"last_update":"2026-03-21T12:08:34.068841878Z"} +2026/03/21 12:08:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:08:34.075640823Z"} +2026/03/21 12:08:39 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":16.865630906126032,"throughput_eps":0,"last_update":"2026-03-21T12:08:34.211231788Z"} +2026/03/21 12:08:39 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":304.49224475679216,"throughput_eps":0,"last_update":"2026-03-21T12:08:34.2097694Z"} +2026/03/21 12:08:39 ───────────────────────────────────────────────── +2026/03/21 12:08:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:08:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":597.8,"last_update":"2026-03-21T12:08:39.06849809Z"} +2026/03/21 12:08:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:08:39.075335379Z"} +2026/03/21 12:08:44 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":16.865630906126032,"throughput_eps":0,"last_update":"2026-03-21T12:08:39.210599953Z"} +2026/03/21 12:08:44 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":304.49224475679216,"throughput_eps":0,"last_update":"2026-03-21T12:08:39.210579935Z"} +2026/03/21 12:08:44 [log_collector] {"stage_name":"log_collector","events_processed":5337,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1067.4,"last_update":"2026-03-21T12:08:44.06809309Z"} +2026/03/21 12:08:44 ───────────────────────────────────────────────── +2026/03/21 12:08:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:08:49 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":304.49224475679216,"throughput_eps":0,"last_update":"2026-03-21T12:08:44.210649686Z"} +2026/03/21 12:08:49 [log_collector] {"stage_name":"log_collector","events_processed":5337,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1067.4,"last_update":"2026-03-21T12:08:44.06809309Z"} +2026/03/21 12:08:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":598.8,"last_update":"2026-03-21T12:08:44.068515789Z"} +2026/03/21 12:08:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:08:44.076383789Z"} +2026/03/21 12:08:49 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":16.865630906126032,"throughput_eps":0,"last_update":"2026-03-21T12:08:44.210632763Z"} +2026/03/21 12:08:49 ───────────────────────────────────────────────── +2026/03/21 12:08:50 mad: auto-calibrated on 100 vectors (51 features) +2026/03/21 12:08:50 [ANOMALY] time=2026-03-21T12:08:49Z score=0.9568 method=SEAD details=MAD!:w=0.31,s=1.00 RRCF-fast!:w=0.17,s=0.90 RRCF-mid!:w=0.16,s=0.91 RRCF-slow!:w=0.16,s=0.93 COPOD!:w=0.20,s=1.00 +2026/03/21 12:08:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:08:54 [log_collector] {"stage_name":"log_collector","events_processed":5337,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1067.4,"last_update":"2026-03-21T12:08:49.068602911Z"} +2026/03/21 12:08:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":599.8,"last_update":"2026-03-21T12:08:49.068836318Z"} +2026/03/21 12:08:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:08:49.076288022Z"} +2026/03/21 12:08:54 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":16.865630906126032,"throughput_eps":0,"last_update":"2026-03-21T12:08:49.210583347Z"} +2026/03/21 12:08:54 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":402.81875180543375,"throughput_eps":0,"last_update":"2026-03-21T12:08:50.006636771Z"} +2026/03/21 12:08:54 ───────────────────────────────────────────────── +2026/03/21 12:08:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:08:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:08:54.075524688Z"} +2026/03/21 12:08:59 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":15.363205124900826,"throughput_eps":0,"last_update":"2026-03-21T12:08:54.210858163Z"} +2026/03/21 12:08:59 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":402.81875180543375,"throughput_eps":0,"last_update":"2026-03-21T12:08:54.209739302Z"} +2026/03/21 12:08:59 [log_collector] {"stage_name":"log_collector","events_processed":5337,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1067.4,"last_update":"2026-03-21T12:08:54.068605773Z"} +2026/03/21 12:08:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":600.8,"last_update":"2026-03-21T12:08:54.06894445Z"} +2026/03/21 12:08:59 ───────────────────────────────────────────────── +2026/03/21 12:09:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:09:04 [log_collector] {"stage_name":"log_collector","events_processed":5337,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1067.4,"last_update":"2026-03-21T12:08:59.068746419Z"} +2026/03/21 12:09:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":601.8,"last_update":"2026-03-21T12:08:59.069709952Z"} +2026/03/21 12:09:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1206,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:08:59.07608698Z"} +2026/03/21 12:09:04 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":15.363205124900826,"throughput_eps":0,"last_update":"2026-03-21T12:08:59.210378755Z"} +2026/03/21 12:09:04 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":402.81875180543375,"throughput_eps":0,"last_update":"2026-03-21T12:08:59.210406699Z"} +2026/03/21 12:09:04 ───────────────────────────────────────────────── +2026/03/21 12:09:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:09:09 [log_collector] {"stage_name":"log_collector","events_processed":5337,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1067.4,"last_update":"2026-03-21T12:09:04.068908455Z"} +2026/03/21 12:09:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":602.8,"last_update":"2026-03-21T12:09:04.068897433Z"} +2026/03/21 12:09:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:09:04.075302095Z"} +2026/03/21 12:09:09 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":15.363205124900826,"throughput_eps":0,"last_update":"2026-03-21T12:09:04.210542617Z"} +2026/03/21 12:09:09 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":402.81875180543375,"throughput_eps":0,"last_update":"2026-03-21T12:09:04.210470328Z"} +2026/03/21 12:09:09 ───────────────────────────────────────────────── +2026/03/21 12:09:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:09:14 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":402.81875180543375,"throughput_eps":0,"last_update":"2026-03-21T12:09:09.210303495Z"} +2026/03/21 12:09:14 [log_collector] {"stage_name":"log_collector","events_processed":5337,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1067.4,"last_update":"2026-03-21T12:09:09.068627911Z"} +2026/03/21 12:09:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":603.8,"last_update":"2026-03-21T12:09:09.068829416Z"} +2026/03/21 12:09:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1210,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:09:09.076078884Z"} +2026/03/21 12:09:14 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":15.363205124900826,"throughput_eps":0,"last_update":"2026-03-21T12:09:09.210323924Z"} +2026/03/21 12:09:14 ───────────────────────────────────────────────── +2026/03/21 12:09:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:09:19 [log_collector] {"stage_name":"log_collector","events_processed":5340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1068,"last_update":"2026-03-21T12:09:14.068309283Z"} +2026/03/21 12:09:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":604.8,"last_update":"2026-03-21T12:09:14.068708857Z"} +2026/03/21 12:09:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:09:14.074704486Z"} +2026/03/21 12:09:19 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":15.363205124900826,"throughput_eps":0,"last_update":"2026-03-21T12:09:14.209978167Z"} +2026/03/21 12:09:19 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":402.81875180543375,"throughput_eps":0,"last_update":"2026-03-21T12:09:14.20993305Z"} +2026/03/21 12:09:19 ───────────────────────────────────────────────── +2026/03/21 12:09:19 [ANOMALY] time=2026-03-21T12:09:19Z score=0.9453 method=SEAD details=MAD!:w=0.31,s=0.99 RRCF-fast:w=0.17,s=0.86 RRCF-mid!:w=0.16,s=0.94 RRCF-slow!:w=0.16,s=0.90 COPOD!:w=0.20,s=0.99 +2026/03/21 12:09:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:09:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":605.8,"last_update":"2026-03-21T12:09:19.068638097Z"} +2026/03/21 12:09:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:09:19.077367917Z"} +2026/03/21 12:09:24 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":15.363205124900826,"throughput_eps":0,"last_update":"2026-03-21T12:09:19.210584905Z"} +2026/03/21 12:09:24 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":362.93166024434703,"throughput_eps":0,"last_update":"2026-03-21T12:09:19.413939835Z"} +2026/03/21 12:09:24 [log_collector] {"stage_name":"log_collector","events_processed":5402,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1080.4,"last_update":"2026-03-21T12:09:19.068381706Z"} +2026/03/21 12:09:24 ───────────────────────────────────────────────── +2026/03/21 12:09:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:09:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:09:24.076604448Z"} +2026/03/21 12:09:29 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":14.223439699920661,"throughput_eps":0,"last_update":"2026-03-21T12:09:24.210920341Z"} +2026/03/21 12:09:29 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":362.93166024434703,"throughput_eps":0,"last_update":"2026-03-21T12:09:24.209671502Z"} +2026/03/21 12:09:29 [log_collector] {"stage_name":"log_collector","events_processed":5601,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1120.2,"last_update":"2026-03-21T12:09:24.06848169Z"} +2026/03/21 12:09:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":606.8,"last_update":"2026-03-21T12:09:24.068684537Z"} +2026/03/21 12:09:29 ───────────────────────────────────────────────── +2026/03/21 12:09:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:09:34 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":362.93166024434703,"throughput_eps":0,"last_update":"2026-03-21T12:09:29.210097586Z"} +2026/03/21 12:09:34 [log_collector] {"stage_name":"log_collector","events_processed":5695,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1139,"last_update":"2026-03-21T12:09:34.068103158Z"} +2026/03/21 12:09:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":607.8,"last_update":"2026-03-21T12:09:29.068973135Z"} +2026/03/21 12:09:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:09:29.078706936Z"} +2026/03/21 12:09:34 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":14.223439699920661,"throughput_eps":0,"last_update":"2026-03-21T12:09:29.210048462Z"} +2026/03/21 12:09:34 ───────────────────────────────────────────────── +Saved state: 14 clusters, 5696 messages, reason: none +2026/03/21 12:09:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:09:39 [log_collector] {"stage_name":"log_collector","events_processed":5695,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1139,"last_update":"2026-03-21T12:09:34.068103158Z"} +2026/03/21 12:09:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":608.8,"last_update":"2026-03-21T12:09:34.068557447Z"} +2026/03/21 12:09:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:09:34.076853728Z"} +2026/03/21 12:09:39 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":14.223439699920661,"throughput_eps":0,"last_update":"2026-03-21T12:09:34.210409512Z"} +2026/03/21 12:09:39 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":362.93166024434703,"throughput_eps":0,"last_update":"2026-03-21T12:09:34.210264955Z"} +2026/03/21 12:09:39 ───────────────────────────────────────────────── +2026/03/21 12:09:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:09:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3048,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":609.6,"last_update":"2026-03-21T12:09:39.068508445Z"} +2026/03/21 12:09:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1222,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:09:39.075928249Z"} +2026/03/21 12:09:44 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":14.223439699920661,"throughput_eps":0,"last_update":"2026-03-21T12:09:39.210502223Z"} +2026/03/21 12:09:44 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":362.93166024434703,"throughput_eps":0,"last_update":"2026-03-21T12:09:39.210479039Z"} +2026/03/21 12:09:44 [log_collector] {"stage_name":"log_collector","events_processed":5698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1139.6,"last_update":"2026-03-21T12:09:39.068599549Z"} +2026/03/21 12:09:44 ───────────────────────────────────────────────── +2026/03/21 12:09:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:09:49 [log_collector] {"stage_name":"log_collector","events_processed":5698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1139.6,"last_update":"2026-03-21T12:09:44.069005487Z"} +2026/03/21 12:09:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":610.8,"last_update":"2026-03-21T12:09:44.069211971Z"} +2026/03/21 12:09:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:09:44.076653487Z"} +2026/03/21 12:09:49 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":14.223439699920661,"throughput_eps":0,"last_update":"2026-03-21T12:09:44.210178037Z"} +2026/03/21 12:09:49 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":362.93166024434703,"throughput_eps":0,"last_update":"2026-03-21T12:09:44.210214276Z"} +2026/03/21 12:09:49 ───────────────────────────────────────────────── +2026/03/21 12:09:49 [ANOMALY] time=2026-03-21T12:09:49Z score=0.9594 method=SEAD details=MAD!:w=0.31,s=0.98 RRCF-fast!:w=0.17,s=0.97 RRCF-mid!:w=0.16,s=0.92 RRCF-slow!:w=0.16,s=0.92 COPOD!:w=0.20,s=0.98 +2026/03/21 12:09:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:09:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":611.8,"last_update":"2026-03-21T12:09:49.068892193Z"} +2026/03/21 12:09:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:09:49.077773102Z"} +2026/03/21 12:09:54 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":14.223439699920661,"throughput_eps":0,"last_update":"2026-03-21T12:09:49.210005381Z"} +2026/03/21 12:09:54 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":325.4935069954776,"throughput_eps":0,"last_update":"2026-03-21T12:09:49.385810288Z"} +2026/03/21 12:09:54 [log_collector] {"stage_name":"log_collector","events_processed":5709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1141.8,"last_update":"2026-03-21T12:09:49.068595123Z"} +2026/03/21 12:09:54 ───────────────────────────────────────────────── +2026/03/21 12:09:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:09:59 [log_collector] {"stage_name":"log_collector","events_processed":5716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1143.2,"last_update":"2026-03-21T12:09:54.068893386Z"} +2026/03/21 12:09:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":612.8,"last_update":"2026-03-21T12:09:54.069159105Z"} +2026/03/21 12:09:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:09:54.074846084Z"} +2026/03/21 12:09:59 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":14.267121559936529,"throughput_eps":0,"last_update":"2026-03-21T12:09:54.210144732Z"} +2026/03/21 12:09:59 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":325.4935069954776,"throughput_eps":0,"last_update":"2026-03-21T12:09:54.210121808Z"} +2026/03/21 12:09:59 ───────────────────────────────────────────────── +2026/03/21 12:10:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:10:04 [log_collector] {"stage_name":"log_collector","events_processed":5725,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1145,"last_update":"2026-03-21T12:09:59.068756044Z"} +2026/03/21 12:10:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":613.8,"last_update":"2026-03-21T12:09:59.068966467Z"} +2026/03/21 12:10:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:09:59.077474383Z"} +2026/03/21 12:10:04 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":14.267121559936529,"throughput_eps":0,"last_update":"2026-03-21T12:09:59.210675651Z"} +2026/03/21 12:10:04 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":325.4935069954776,"throughput_eps":0,"last_update":"2026-03-21T12:09:59.210648288Z"} +2026/03/21 12:10:04 ───────────────────────────────────────────────── +2026/03/21 12:10:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:10:09 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":14.267121559936529,"throughput_eps":0,"last_update":"2026-03-21T12:10:04.210283742Z"} +2026/03/21 12:10:09 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":325.4935069954776,"throughput_eps":0,"last_update":"2026-03-21T12:10:04.210175816Z"} +2026/03/21 12:10:09 [log_collector] {"stage_name":"log_collector","events_processed":5725,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1145,"last_update":"2026-03-21T12:10:04.068111729Z"} +2026/03/21 12:10:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":614.8,"last_update":"2026-03-21T12:10:04.068454856Z"} +2026/03/21 12:10:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:10:04.084947287Z"} +2026/03/21 12:10:09 ───────────────────────────────────────────────── +2026/03/21 12:10:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:10:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:10:09.07819755Z"} +2026/03/21 12:10:14 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":14.267121559936529,"throughput_eps":0,"last_update":"2026-03-21T12:10:09.210534749Z"} +2026/03/21 12:10:14 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":325.4935069954776,"throughput_eps":0,"last_update":"2026-03-21T12:10:09.210579835Z"} +2026/03/21 12:10:14 [log_collector] {"stage_name":"log_collector","events_processed":5725,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1145,"last_update":"2026-03-21T12:10:09.068750006Z"} +2026/03/21 12:10:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":615.8,"last_update":"2026-03-21T12:10:09.069054217Z"} +2026/03/21 12:10:14 ───────────────────────────────────────────────── +2026/03/21 12:10:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:10:19 [log_collector] {"stage_name":"log_collector","events_processed":5725,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1145,"last_update":"2026-03-21T12:10:14.068594448Z"} +2026/03/21 12:10:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":616.8,"last_update":"2026-03-21T12:10:14.068913769Z"} +2026/03/21 12:10:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:10:14.078128799Z"} +2026/03/21 12:10:19 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":14.267121559936529,"throughput_eps":0,"last_update":"2026-03-21T12:10:14.210437105Z"} +2026/03/21 12:10:19 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":325.4935069954776,"throughput_eps":0,"last_update":"2026-03-21T12:10:14.210454538Z"} +2026/03/21 12:10:19 ───────────────────────────────────────────────── +2026/03/21 12:10:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:10:24 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":284.6677899963821,"throughput_eps":0,"last_update":"2026-03-21T12:10:19.331415647Z"} +2026/03/21 12:10:24 [log_collector] {"stage_name":"log_collector","events_processed":5725,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1145,"last_update":"2026-03-21T12:10:19.068791762Z"} +2026/03/21 12:10:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":617.8,"last_update":"2026-03-21T12:10:19.069084372Z"} +2026/03/21 12:10:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:10:19.077806379Z"} +2026/03/21 12:10:24 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":14.267121559936529,"throughput_eps":0,"last_update":"2026-03-21T12:10:19.210022792Z"} +2026/03/21 12:10:24 ───────────────────────────────────────────────── +2026/03/21 12:10:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:10:29 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":284.6677899963821,"throughput_eps":0,"last_update":"2026-03-21T12:10:24.210552989Z"} +2026/03/21 12:10:29 [log_collector] {"stage_name":"log_collector","events_processed":5725,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1145,"last_update":"2026-03-21T12:10:24.068626266Z"} +2026/03/21 12:10:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":618.8,"last_update":"2026-03-21T12:10:24.068738721Z"} +2026/03/21 12:10:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:10:24.07730452Z"} +2026/03/21 12:10:29 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":15.235426847949222,"throughput_eps":0,"last_update":"2026-03-21T12:10:24.210544713Z"} +2026/03/21 12:10:29 ───────────────────────────────────────────────── +2026/03/21 12:10:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:10:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":619.8,"last_update":"2026-03-21T12:10:29.068940222Z"} +2026/03/21 12:10:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:10:29.077979876Z"} +2026/03/21 12:10:34 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":15.235426847949222,"throughput_eps":0,"last_update":"2026-03-21T12:10:29.210396035Z"} +2026/03/21 12:10:34 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":284.6677899963821,"throughput_eps":0,"last_update":"2026-03-21T12:10:29.21040906Z"} +2026/03/21 12:10:34 [log_collector] {"stage_name":"log_collector","events_processed":5725,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1145,"last_update":"2026-03-21T12:10:29.068452919Z"} +2026/03/21 12:10:34 ───────────────────────────────────────────────── +2026/03/21 12:10:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:10:39 [log_collector] {"stage_name":"log_collector","events_processed":5725,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1145,"last_update":"2026-03-21T12:10:34.068103117Z"} +2026/03/21 12:10:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":620.8,"last_update":"2026-03-21T12:10:34.06829792Z"} +2026/03/21 12:10:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:10:34.076476939Z"} +2026/03/21 12:10:39 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":15.235426847949222,"throughput_eps":0,"last_update":"2026-03-21T12:10:34.209871341Z"} +2026/03/21 12:10:39 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":284.6677899963821,"throughput_eps":0,"last_update":"2026-03-21T12:10:34.209710894Z"} +2026/03/21 12:10:39 ───────────────────────────────────────────────── +2026/03/21 12:10:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:10:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1246,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:10:39.078459311Z"} +2026/03/21 12:10:44 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":15.235426847949222,"throughput_eps":0,"last_update":"2026-03-21T12:10:39.210875263Z"} +2026/03/21 12:10:44 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":284.6677899963821,"throughput_eps":0,"last_update":"2026-03-21T12:10:39.209694254Z"} +2026/03/21 12:10:44 [log_collector] {"stage_name":"log_collector","events_processed":5725,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1145,"last_update":"2026-03-21T12:10:39.068157049Z"} +2026/03/21 12:10:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":621.8,"last_update":"2026-03-21T12:10:39.068777357Z"} +2026/03/21 12:10:44 ───────────────────────────────────────────────── +2026/03/21 12:10:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:10:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":622.8,"last_update":"2026-03-21T12:10:44.069163185Z"} +2026/03/21 12:10:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:10:44.07776345Z"} +2026/03/21 12:10:49 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":15.235426847949222,"throughput_eps":0,"last_update":"2026-03-21T12:10:44.210053074Z"} +2026/03/21 12:10:49 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":284.6677899963821,"throughput_eps":0,"last_update":"2026-03-21T12:10:44.210086929Z"} +2026/03/21 12:10:49 [log_collector] {"stage_name":"log_collector","events_processed":5725,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1145,"last_update":"2026-03-21T12:10:44.068899461Z"} +2026/03/21 12:10:49 ───────────────────────────────────────────────── +2026/03/21 12:10:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:10:54 [log_collector] {"stage_name":"log_collector","events_processed":5725,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1145,"last_update":"2026-03-21T12:10:49.068769372Z"} +2026/03/21 12:10:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":623.8,"last_update":"2026-03-21T12:10:49.069094323Z"} +2026/03/21 12:10:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:10:49.078478447Z"} +2026/03/21 12:10:54 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":15.235426847949222,"throughput_eps":0,"last_update":"2026-03-21T12:10:49.210868746Z"} +2026/03/21 12:10:54 [transform_engine] {"stage_name":"transform_engine","events_processed":104,"events_dropped":0,"avg_latency_ms":241.1867463971057,"throughput_eps":0,"last_update":"2026-03-21T12:10:49.276980346Z"} +2026/03/21 12:10:54 ───────────────────────────────────────────────── +Saved state: 14 clusters, 5726 messages, reason: none +2026/03/21 12:10:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:10:59 [log_collector] {"stage_name":"log_collector","events_processed":5725,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1145,"last_update":"2026-03-21T12:10:54.068689069Z"} +2026/03/21 12:10:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":624.8,"last_update":"2026-03-21T12:10:54.068945479Z"} +2026/03/21 12:10:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:10:54.078903161Z"} +2026/03/21 12:10:59 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":15.573165678359379,"throughput_eps":0,"last_update":"2026-03-21T12:10:54.210157227Z"} +2026/03/21 12:10:59 [transform_engine] {"stage_name":"transform_engine","events_processed":104,"events_dropped":0,"avg_latency_ms":241.1867463971057,"throughput_eps":0,"last_update":"2026-03-21T12:10:54.210169181Z"} +2026/03/21 12:10:59 ───────────────────────────────────────────────── +2026/03/21 12:11:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:11:04 [log_collector] {"stage_name":"log_collector","events_processed":5728,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1145.6,"last_update":"2026-03-21T12:10:59.068582634Z"} +2026/03/21 12:11:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":625.8,"last_update":"2026-03-21T12:10:59.068526547Z"} +2026/03/21 12:11:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:10:59.079590666Z"} +2026/03/21 12:11:04 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":15.573165678359379,"throughput_eps":0,"last_update":"2026-03-21T12:10:59.210881836Z"} +2026/03/21 12:11:04 [transform_engine] {"stage_name":"transform_engine","events_processed":104,"events_dropped":0,"avg_latency_ms":241.1867463971057,"throughput_eps":0,"last_update":"2026-03-21T12:10:59.209777884Z"} +2026/03/21 12:11:04 ───────────────────────────────────────────────── +2026/03/21 12:11:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:11:09 [transform_engine] {"stage_name":"transform_engine","events_processed":104,"events_dropped":0,"avg_latency_ms":241.1867463971057,"throughput_eps":0,"last_update":"2026-03-21T12:11:04.210591199Z"} +2026/03/21 12:11:09 [log_collector] {"stage_name":"log_collector","events_processed":5739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1147.8,"last_update":"2026-03-21T12:11:09.068269297Z"} +2026/03/21 12:11:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":626.8,"last_update":"2026-03-21T12:11:04.068868318Z"} +2026/03/21 12:11:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:11:04.077323055Z"} +2026/03/21 12:11:09 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":15.573165678359379,"throughput_eps":0,"last_update":"2026-03-21T12:11:04.21058116Z"} +2026/03/21 12:11:09 ───────────────────────────────────────────────── +2026/03/21 12:11:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:11:14 [log_collector] {"stage_name":"log_collector","events_processed":5739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1147.8,"last_update":"2026-03-21T12:11:09.068269297Z"} +2026/03/21 12:11:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":627.8,"last_update":"2026-03-21T12:11:09.068947796Z"} +2026/03/21 12:11:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:11:09.077686025Z"} +2026/03/21 12:11:14 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":15.573165678359379,"throughput_eps":0,"last_update":"2026-03-21T12:11:09.210166615Z"} +2026/03/21 12:11:14 [transform_engine] {"stage_name":"transform_engine","events_processed":104,"events_dropped":0,"avg_latency_ms":241.1867463971057,"throughput_eps":0,"last_update":"2026-03-21T12:11:09.210182294Z"} +2026/03/21 12:11:14 ───────────────────────────────────────────────── +2026/03/21 12:11:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:11:19 [log_collector] {"stage_name":"log_collector","events_processed":5739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1147.8,"last_update":"2026-03-21T12:11:14.068251194Z"} +2026/03/21 12:11:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":628.8,"last_update":"2026-03-21T12:11:14.06888648Z"} +2026/03/21 12:11:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:11:14.077297433Z"} +2026/03/21 12:11:19 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":15.573165678359379,"throughput_eps":0,"last_update":"2026-03-21T12:11:14.210693707Z"} +2026/03/21 12:11:19 [transform_engine] {"stage_name":"transform_engine","events_processed":104,"events_dropped":0,"avg_latency_ms":241.1867463971057,"throughput_eps":0,"last_update":"2026-03-21T12:11:14.210709437Z"} +2026/03/21 12:11:19 ───────────────────────────────────────────────── +2026/03/21 12:11:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:11:24 [log_collector] {"stage_name":"log_collector","events_processed":5739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1147.8,"last_update":"2026-03-21T12:11:19.068711662Z"} +2026/03/21 12:11:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":629.8,"last_update":"2026-03-21T12:11:19.068878612Z"} +2026/03/21 12:11:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:11:19.077468488Z"} +2026/03/21 12:11:24 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":15.573165678359379,"throughput_eps":0,"last_update":"2026-03-21T12:11:19.210697443Z"} +2026/03/21 12:11:24 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":215.58946971768458,"throughput_eps":0,"last_update":"2026-03-21T12:11:19.323934126Z"} +2026/03/21 12:11:24 ───────────────────────────────────────────────── +2026/03/21 12:11:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:11:29 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":15.747631542687504,"throughput_eps":0,"last_update":"2026-03-21T12:11:24.210447718Z"} +2026/03/21 12:11:29 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":215.58946971768458,"throughput_eps":0,"last_update":"2026-03-21T12:11:24.210410337Z"} +2026/03/21 12:11:29 [log_collector] {"stage_name":"log_collector","events_processed":5739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1147.8,"last_update":"2026-03-21T12:11:24.068136522Z"} +2026/03/21 12:11:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":630.8,"last_update":"2026-03-21T12:11:24.068893732Z"} +2026/03/21 12:11:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:11:24.077163024Z"} +2026/03/21 12:11:29 ───────────────────────────────────────────────── +2026/03/21 12:11:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:11:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":631.8,"last_update":"2026-03-21T12:11:29.069499405Z"} +2026/03/21 12:11:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:11:29.07831306Z"} +2026/03/21 12:11:34 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":15.747631542687504,"throughput_eps":0,"last_update":"2026-03-21T12:11:29.210676863Z"} +2026/03/21 12:11:34 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":215.58946971768458,"throughput_eps":0,"last_update":"2026-03-21T12:11:29.210713142Z"} +2026/03/21 12:11:34 [log_collector] {"stage_name":"log_collector","events_processed":5739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1147.8,"last_update":"2026-03-21T12:11:29.069102997Z"} +2026/03/21 12:11:34 ───────────────────────────────────────────────── +2026/03/21 12:11:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:11:39 [log_collector] {"stage_name":"log_collector","events_processed":5739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1147.8,"last_update":"2026-03-21T12:11:34.068890932Z"} +2026/03/21 12:11:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":632.8,"last_update":"2026-03-21T12:11:34.069252984Z"} +2026/03/21 12:11:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:11:34.078564361Z"} +2026/03/21 12:11:39 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":15.747631542687504,"throughput_eps":0,"last_update":"2026-03-21T12:11:34.210900764Z"} +2026/03/21 12:11:39 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":215.58946971768458,"throughput_eps":0,"last_update":"2026-03-21T12:11:34.209803435Z"} +2026/03/21 12:11:39 ───────────────────────────────────────────────── +2026/03/21 12:11:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:11:44 [log_collector] {"stage_name":"log_collector","events_processed":5739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1147.8,"last_update":"2026-03-21T12:11:39.068780593Z"} +2026/03/21 12:11:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":633.8,"last_update":"2026-03-21T12:11:39.069251144Z"} +2026/03/21 12:11:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:11:39.078534818Z"} +2026/03/21 12:11:44 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":15.747631542687504,"throughput_eps":0,"last_update":"2026-03-21T12:11:39.210908795Z"} +2026/03/21 12:11:44 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":215.58946971768458,"throughput_eps":0,"last_update":"2026-03-21T12:11:39.209685524Z"} +2026/03/21 12:11:44 ───────────────────────────────────────────────── +2026/03/21 12:11:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:11:49 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":15.747631542687504,"throughput_eps":0,"last_update":"2026-03-21T12:11:44.210494249Z"} +2026/03/21 12:11:49 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":215.58946971768458,"throughput_eps":0,"last_update":"2026-03-21T12:11:44.210345935Z"} +2026/03/21 12:11:49 [log_collector] {"stage_name":"log_collector","events_processed":5739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1147.8,"last_update":"2026-03-21T12:11:44.068727417Z"} +2026/03/21 12:11:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":634.8,"last_update":"2026-03-21T12:11:44.068904436Z"} +2026/03/21 12:11:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:11:44.07793748Z"} +2026/03/21 12:11:49 ───────────────────────────────────────────────── +2026/03/21 12:11:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:11:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:11:49.077556017Z"} +2026/03/21 12:11:54 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":15.747631542687504,"throughput_eps":0,"last_update":"2026-03-21T12:11:49.2109812Z"} +2026/03/21 12:11:54 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":186.74676637414768,"throughput_eps":0,"last_update":"2026-03-21T12:11:49.281141549Z"} +2026/03/21 12:11:54 [log_collector] {"stage_name":"log_collector","events_processed":5739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1147.8,"last_update":"2026-03-21T12:11:49.068429453Z"} +2026/03/21 12:11:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":635.8,"last_update":"2026-03-21T12:11:49.068775886Z"} +2026/03/21 12:11:54 ───────────────────────────────────────────────── +2026/03/21 12:11:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:11:59 [log_collector] {"stage_name":"log_collector","events_processed":5739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1147.8,"last_update":"2026-03-21T12:11:54.068124949Z"} +2026/03/21 12:11:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":636.8,"last_update":"2026-03-21T12:11:54.068811984Z"} +2026/03/21 12:11:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1276,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:11:54.077029788Z"} +2026/03/21 12:11:59 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":16.456824834150005,"throughput_eps":0,"last_update":"2026-03-21T12:11:54.210320416Z"} +2026/03/21 12:11:59 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":186.74676637414768,"throughput_eps":0,"last_update":"2026-03-21T12:11:54.210423032Z"} +2026/03/21 12:11:59 ───────────────────────────────────────────────── +2026/03/21 12:12:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:12:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:11:59.077660914Z"} +2026/03/21 12:12:04 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":16.456824834150005,"throughput_eps":0,"last_update":"2026-03-21T12:11:59.210142906Z"} +2026/03/21 12:12:04 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":186.74676637414768,"throughput_eps":0,"last_update":"2026-03-21T12:11:59.210028407Z"} +2026/03/21 12:12:04 [log_collector] {"stage_name":"log_collector","events_processed":5739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1147.8,"last_update":"2026-03-21T12:11:59.068688336Z"} +2026/03/21 12:12:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":637.8,"last_update":"2026-03-21T12:11:59.069134259Z"} +2026/03/21 12:12:04 ───────────────────────────────────────────────── +Saved state: 14 clusters, 5740 messages, reason: none +2026/03/21 12:12:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:12:09 [log_collector] {"stage_name":"log_collector","events_processed":5739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1147.8,"last_update":"2026-03-21T12:12:04.068107052Z"} +2026/03/21 12:12:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":638.8,"last_update":"2026-03-21T12:12:04.068649078Z"} +2026/03/21 12:12:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:12:04.077945066Z"} +2026/03/21 12:12:09 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":16.456824834150005,"throughput_eps":0,"last_update":"2026-03-21T12:12:04.210394437Z"} +2026/03/21 12:12:09 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":186.74676637414768,"throughput_eps":0,"last_update":"2026-03-21T12:12:04.210321317Z"} +2026/03/21 12:12:09 ───────────────────────────────────────────────── +2026/03/21 12:12:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:12:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":639.8,"last_update":"2026-03-21T12:12:09.068156971Z"} +2026/03/21 12:12:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:12:09.076700911Z"} +2026/03/21 12:12:14 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":16.456824834150005,"throughput_eps":0,"last_update":"2026-03-21T12:12:09.209970262Z"} +2026/03/21 12:12:14 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":186.74676637414768,"throughput_eps":0,"last_update":"2026-03-21T12:12:09.209944212Z"} +2026/03/21 12:12:14 [log_collector] {"stage_name":"log_collector","events_processed":5744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1148.8,"last_update":"2026-03-21T12:12:09.068166871Z"} +2026/03/21 12:12:14 ───────────────────────────────────────────────── +2026/03/21 12:12:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:12:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":640.8,"last_update":"2026-03-21T12:12:14.069379676Z"} +2026/03/21 12:12:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:12:14.078194333Z"} +2026/03/21 12:12:19 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":16.456824834150005,"throughput_eps":0,"last_update":"2026-03-21T12:12:14.210388428Z"} +2026/03/21 12:12:19 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":186.74676637414768,"throughput_eps":0,"last_update":"2026-03-21T12:12:14.210400873Z"} +2026/03/21 12:12:19 [log_collector] {"stage_name":"log_collector","events_processed":5744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1148.8,"last_update":"2026-03-21T12:12:14.06900085Z"} +2026/03/21 12:12:19 ───────────────────────────────────────────────── +2026/03/21 12:12:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:12:24 [log_collector] {"stage_name":"log_collector","events_processed":5744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1148.8,"last_update":"2026-03-21T12:12:19.068546594Z"} +2026/03/21 12:12:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":641.8,"last_update":"2026-03-21T12:12:19.068811911Z"} +2026/03/21 12:12:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1286,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:12:19.077037591Z"} +2026/03/21 12:12:24 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":16.456824834150005,"throughput_eps":0,"last_update":"2026-03-21T12:12:19.210293902Z"} +2026/03/21 12:12:24 [transform_engine] {"stage_name":"transform_engine","events_processed":107,"events_dropped":0,"avg_latency_ms":226.05551509931814,"throughput_eps":0,"last_update":"2026-03-21T12:12:19.593547049Z"} +2026/03/21 12:12:24 ───────────────────────────────────────────────── +2026/03/21 12:12:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:12:29 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":15.412447467320005,"throughput_eps":0,"last_update":"2026-03-21T12:12:24.210887067Z"} +2026/03/21 12:12:29 [transform_engine] {"stage_name":"transform_engine","events_processed":107,"events_dropped":0,"avg_latency_ms":226.05551509931814,"throughput_eps":0,"last_update":"2026-03-21T12:12:24.20975453Z"} +2026/03/21 12:12:29 [log_collector] {"stage_name":"log_collector","events_processed":5744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1148.8,"last_update":"2026-03-21T12:12:24.068597159Z"} +2026/03/21 12:12:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":642.8,"last_update":"2026-03-21T12:12:24.068838532Z"} +2026/03/21 12:12:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:12:24.07523983Z"} +2026/03/21 12:12:29 ───────────────────────────────────────────────── +2026/03/21 12:12:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:12:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":643.8,"last_update":"2026-03-21T12:12:29.068705121Z"} +2026/03/21 12:12:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:12:29.076418751Z"} +2026/03/21 12:12:34 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":15.412447467320005,"throughput_eps":0,"last_update":"2026-03-21T12:12:29.210703683Z"} +2026/03/21 12:12:34 [transform_engine] {"stage_name":"transform_engine","events_processed":107,"events_dropped":0,"avg_latency_ms":226.05551509931814,"throughput_eps":0,"last_update":"2026-03-21T12:12:29.21068644Z"} +2026/03/21 12:12:34 [log_collector] {"stage_name":"log_collector","events_processed":5744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1148.8,"last_update":"2026-03-21T12:12:29.068478306Z"} +2026/03/21 12:12:34 ───────────────────────────────────────────────── +2026/03/21 12:12:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:12:39 [transform_engine] {"stage_name":"transform_engine","events_processed":107,"events_dropped":0,"avg_latency_ms":226.05551509931814,"throughput_eps":0,"last_update":"2026-03-21T12:12:34.210374065Z"} +2026/03/21 12:12:39 [log_collector] {"stage_name":"log_collector","events_processed":5744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1148.8,"last_update":"2026-03-21T12:12:34.068091556Z"} +2026/03/21 12:12:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":644.8,"last_update":"2026-03-21T12:12:34.06839104Z"} +2026/03/21 12:12:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:12:34.077080437Z"} +2026/03/21 12:12:39 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":15.412447467320005,"throughput_eps":0,"last_update":"2026-03-21T12:12:34.210322917Z"} +2026/03/21 12:12:39 ───────────────────────────────────────────────── +2026/03/21 12:12:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:12:44 [log_collector] {"stage_name":"log_collector","events_processed":5744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1148.8,"last_update":"2026-03-21T12:12:39.068846026Z"} +2026/03/21 12:12:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":645.8,"last_update":"2026-03-21T12:12:39.069068261Z"} +2026/03/21 12:12:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:12:39.076959531Z"} +2026/03/21 12:12:44 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":15.412447467320005,"throughput_eps":0,"last_update":"2026-03-21T12:12:39.210145325Z"} +2026/03/21 12:12:44 [transform_engine] {"stage_name":"transform_engine","events_processed":107,"events_dropped":0,"avg_latency_ms":226.05551509931814,"throughput_eps":0,"last_update":"2026-03-21T12:12:39.210166155Z"} +2026/03/21 12:12:44 ───────────────────────────────────────────────── +2026/03/21 12:12:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:12:49 [log_collector] {"stage_name":"log_collector","events_processed":5744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1148.8,"last_update":"2026-03-21T12:12:44.068688465Z"} +2026/03/21 12:12:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":646.8,"last_update":"2026-03-21T12:12:44.068949525Z"} +2026/03/21 12:12:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:12:44.075122747Z"} +2026/03/21 12:12:49 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":15.412447467320005,"throughput_eps":0,"last_update":"2026-03-21T12:12:44.210740856Z"} +2026/03/21 12:12:49 [transform_engine] {"stage_name":"transform_engine","events_processed":107,"events_dropped":0,"avg_latency_ms":226.05551509931814,"throughput_eps":0,"last_update":"2026-03-21T12:12:44.210713594Z"} +2026/03/21 12:12:49 ───────────────────────────────────────────────── +2026/03/21 12:12:50 [ANOMALY] time=2026-03-21T12:12:50Z score=0.9076 method=SEAD details=MAD!:w=0.31,s=0.97 RRCF-fast:w=0.17,s=0.83 RRCF-mid:w=0.16,s=0.86 RRCF-slow!:w=0.16,s=0.93 COPOD!:w=0.20,s=0.90 +2026/03/21 12:12:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:12:54 [log_collector] {"stage_name":"log_collector","events_processed":5744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1148.8,"last_update":"2026-03-21T12:12:49.069408256Z"} +2026/03/21 12:12:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":647.8,"last_update":"2026-03-21T12:12:49.069628938Z"} +2026/03/21 12:12:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:12:49.076519934Z"} +2026/03/21 12:12:54 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":15.412447467320005,"throughput_eps":0,"last_update":"2026-03-21T12:12:49.210759677Z"} +2026/03/21 12:12:54 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":430.7035938794545,"throughput_eps":0,"last_update":"2026-03-21T12:12:50.458951193Z"} +2026/03/21 12:12:54 ───────────────────────────────────────────────── +2026/03/21 12:12:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:12:59 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":430.7035938794545,"throughput_eps":0,"last_update":"2026-03-21T12:12:54.210562959Z"} +2026/03/21 12:12:59 [log_collector] {"stage_name":"log_collector","events_processed":5753,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1150.6,"last_update":"2026-03-21T12:12:54.069016672Z"} +2026/03/21 12:12:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":648.8,"last_update":"2026-03-21T12:12:54.069191828Z"} +2026/03/21 12:12:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:12:54.077241903Z"} +2026/03/21 12:12:59 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":14.251284373856004,"throughput_eps":0,"last_update":"2026-03-21T12:12:54.210581765Z"} +2026/03/21 12:12:59 ───────────────────────────────────────────────── +2026/03/21 12:13:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:13:04 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":430.7035938794545,"throughput_eps":0,"last_update":"2026-03-21T12:12:59.210690363Z"} +2026/03/21 12:13:04 [log_collector] {"stage_name":"log_collector","events_processed":5786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1157.2,"last_update":"2026-03-21T12:12:59.068554326Z"} +2026/03/21 12:13:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":649.6,"last_update":"2026-03-21T12:12:59.068550289Z"} +2026/03/21 12:13:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:12:59.075382563Z"} +2026/03/21 12:13:04 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":14.251284373856004,"throughput_eps":0,"last_update":"2026-03-21T12:12:59.210707325Z"} +2026/03/21 12:13:04 ───────────────────────────────────────────────── +2026/03/21 12:13:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:13:09 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":14.251284373856004,"throughput_eps":0,"last_update":"2026-03-21T12:13:04.210859048Z"} +2026/03/21 12:13:09 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":430.7035938794545,"throughput_eps":0,"last_update":"2026-03-21T12:13:04.209739516Z"} +2026/03/21 12:13:09 [log_collector] {"stage_name":"log_collector","events_processed":6056,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1211.2,"last_update":"2026-03-21T12:13:04.068742236Z"} +2026/03/21 12:13:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":650.8,"last_update":"2026-03-21T12:13:04.069247263Z"} +2026/03/21 12:13:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:13:04.0691831Z"} +2026/03/21 12:13:09 ───────────────────────────────────────────────── +Saved state: 14 clusters, 6106 messages, reason: none +2026/03/21 12:13:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:13:14 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":430.7035938794545,"throughput_eps":0,"last_update":"2026-03-21T12:13:09.210114827Z"} +2026/03/21 12:13:14 [log_collector] {"stage_name":"log_collector","events_processed":6105,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1221,"last_update":"2026-03-21T12:13:09.068773728Z"} +2026/03/21 12:13:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":651.8,"last_update":"2026-03-21T12:13:09.069049625Z"} +2026/03/21 12:13:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:13:09.068751134Z"} +2026/03/21 12:13:14 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":14.251284373856004,"throughput_eps":0,"last_update":"2026-03-21T12:13:09.210100228Z"} +2026/03/21 12:13:14 ───────────────────────────────────────────────── +2026/03/21 12:13:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:13:19 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":14.251284373856004,"throughput_eps":0,"last_update":"2026-03-21T12:13:14.210023433Z"} +2026/03/21 12:13:19 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":430.7035938794545,"throughput_eps":0,"last_update":"2026-03-21T12:13:14.210035677Z"} +2026/03/21 12:13:19 [log_collector] {"stage_name":"log_collector","events_processed":6108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1221.6,"last_update":"2026-03-21T12:13:14.068439329Z"} +2026/03/21 12:13:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":652.8,"last_update":"2026-03-21T12:13:14.068699186Z"} +2026/03/21 12:13:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:13:14.068433678Z"} +2026/03/21 12:13:19 ───────────────────────────────────────────────── +2026/03/21 12:13:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:13:24 [log_collector] {"stage_name":"log_collector","events_processed":6108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1221.6,"last_update":"2026-03-21T12:13:19.068115109Z"} +2026/03/21 12:13:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":653.8,"last_update":"2026-03-21T12:13:19.06845564Z"} +2026/03/21 12:13:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:13:19.07503981Z"} +2026/03/21 12:13:24 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":14.251284373856004,"throughput_eps":0,"last_update":"2026-03-21T12:13:19.210300898Z"} +2026/03/21 12:13:24 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":793.8287677035637,"throughput_eps":0,"last_update":"2026-03-21T12:13:21.456643364Z"} +2026/03/21 12:13:24 ───────────────────────────────────────────────── +2026/03/21 12:13:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:13:29 [log_collector] {"stage_name":"log_collector","events_processed":6119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1223.8,"last_update":"2026-03-21T12:13:24.068473566Z"} +2026/03/21 12:13:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":654.8,"last_update":"2026-03-21T12:13:24.069078974Z"} +2026/03/21 12:13:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:13:24.077166682Z"} +2026/03/21 12:13:29 [detection_layer] {"stage_name":"detection_layer","events_processed":109,"events_dropped":0,"avg_latency_ms":13.569505299084804,"throughput_eps":0,"last_update":"2026-03-21T12:13:24.210541803Z"} +2026/03/21 12:13:29 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":793.8287677035637,"throughput_eps":0,"last_update":"2026-03-21T12:13:24.210554997Z"} +2026/03/21 12:13:29 ───────────────────────────────────────────────── +2026/03/21 12:13:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:13:34 [log_collector] {"stage_name":"log_collector","events_processed":6126,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1225.2,"last_update":"2026-03-21T12:13:29.068304943Z"} +2026/03/21 12:13:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":655.8,"last_update":"2026-03-21T12:13:29.068615578Z"} +2026/03/21 12:13:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:13:29.075627256Z"} +2026/03/21 12:13:34 [detection_layer] {"stage_name":"detection_layer","events_processed":109,"events_dropped":0,"avg_latency_ms":13.569505299084804,"throughput_eps":0,"last_update":"2026-03-21T12:13:29.210140566Z"} +2026/03/21 12:13:34 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":793.8287677035637,"throughput_eps":0,"last_update":"2026-03-21T12:13:29.210016077Z"} +2026/03/21 12:13:34 ───────────────────────────────────────────────── +2026/03/21 12:13:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:13:39 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":793.8287677035637,"throughput_eps":0,"last_update":"2026-03-21T12:13:34.210510472Z"} +2026/03/21 12:13:39 [log_collector] {"stage_name":"log_collector","events_processed":6135,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1227,"last_update":"2026-03-21T12:13:34.068823302Z"} +2026/03/21 12:13:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":656.8,"last_update":"2026-03-21T12:13:34.068985082Z"} +2026/03/21 12:13:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:13:34.077274356Z"} +2026/03/21 12:13:39 [detection_layer] {"stage_name":"detection_layer","events_processed":109,"events_dropped":0,"avg_latency_ms":13.569505299084804,"throughput_eps":0,"last_update":"2026-03-21T12:13:34.210617617Z"} +2026/03/21 12:13:39 ───────────────────────────────────────────────── +2026/03/21 12:13:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:13:44 [detection_layer] {"stage_name":"detection_layer","events_processed":109,"events_dropped":0,"avg_latency_ms":13.569505299084804,"throughput_eps":0,"last_update":"2026-03-21T12:13:39.210676279Z"} +2026/03/21 12:13:44 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":793.8287677035637,"throughput_eps":0,"last_update":"2026-03-21T12:13:39.210710875Z"} +2026/03/21 12:13:44 [log_collector] {"stage_name":"log_collector","events_processed":6135,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1227,"last_update":"2026-03-21T12:13:39.068835563Z"} +2026/03/21 12:13:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":657.8,"last_update":"2026-03-21T12:13:39.069034404Z"} +2026/03/21 12:13:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:13:39.078280348Z"} +2026/03/21 12:13:44 ───────────────────────────────────────────────── +2026/03/21 12:13:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:13:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":658.8,"last_update":"2026-03-21T12:13:44.069390649Z"} +2026/03/21 12:13:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1320,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:13:44.077940392Z"} +2026/03/21 12:13:49 [detection_layer] {"stage_name":"detection_layer","events_processed":109,"events_dropped":0,"avg_latency_ms":13.569505299084804,"throughput_eps":0,"last_update":"2026-03-21T12:13:44.210457946Z"} +2026/03/21 12:13:49 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":793.8287677035637,"throughput_eps":0,"last_update":"2026-03-21T12:13:44.21039725Z"} +2026/03/21 12:13:49 [log_collector] {"stage_name":"log_collector","events_processed":6135,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1227,"last_update":"2026-03-21T12:13:44.068962671Z"} +2026/03/21 12:13:49 ───────────────────────────────────────────────── +2026/03/21 12:13:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:13:54 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":793.8287677035637,"throughput_eps":0,"last_update":"2026-03-21T12:13:49.209829625Z"} +2026/03/21 12:13:54 [log_collector] {"stage_name":"log_collector","events_processed":6135,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1227,"last_update":"2026-03-21T12:13:49.068806531Z"} +2026/03/21 12:13:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":659.8,"last_update":"2026-03-21T12:13:49.069016303Z"} +2026/03/21 12:13:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:13:49.077677448Z"} +2026/03/21 12:13:54 [detection_layer] {"stage_name":"detection_layer","events_processed":109,"events_dropped":0,"avg_latency_ms":13.569505299084804,"throughput_eps":0,"last_update":"2026-03-21T12:13:49.209934886Z"} +2026/03/21 12:13:54 ───────────────────────────────────────────────── +2026/03/21 12:13:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:13:59 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":14.676125639267845,"throughput_eps":0,"last_update":"2026-03-21T12:13:54.210232573Z"} +2026/03/21 12:13:59 [transform_engine] {"stage_name":"transform_engine","events_processed":110,"events_dropped":0,"avg_latency_ms":657.832104762851,"throughput_eps":0,"last_update":"2026-03-21T12:13:54.210245929Z"} +2026/03/21 12:13:59 [log_collector] {"stage_name":"log_collector","events_processed":6135,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1227,"last_update":"2026-03-21T12:13:54.068143308Z"} +2026/03/21 12:13:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":660.8,"last_update":"2026-03-21T12:13:54.068399487Z"} +2026/03/21 12:13:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:13:54.077892094Z"} +2026/03/21 12:13:59 ───────────────────────────────────────────────── +2026/03/21 12:14:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:14:04 [log_collector] {"stage_name":"log_collector","events_processed":6135,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1227,"last_update":"2026-03-21T12:13:59.068680807Z"} +2026/03/21 12:14:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":661.8,"last_update":"2026-03-21T12:13:59.069026338Z"} +2026/03/21 12:14:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:13:59.077365858Z"} +2026/03/21 12:14:04 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":14.676125639267845,"throughput_eps":0,"last_update":"2026-03-21T12:13:59.210629565Z"} +2026/03/21 12:14:04 [transform_engine] {"stage_name":"transform_engine","events_processed":110,"events_dropped":0,"avg_latency_ms":657.832104762851,"throughput_eps":0,"last_update":"2026-03-21T12:13:59.210640556Z"} +2026/03/21 12:14:04 ───────────────────────────────────────────────── +2026/03/21 12:14:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:14:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:14:04.078274261Z"} +2026/03/21 12:14:09 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":14.676125639267845,"throughput_eps":0,"last_update":"2026-03-21T12:14:04.210656161Z"} +2026/03/21 12:14:09 [transform_engine] {"stage_name":"transform_engine","events_processed":110,"events_dropped":0,"avg_latency_ms":657.832104762851,"throughput_eps":0,"last_update":"2026-03-21T12:14:04.210668836Z"} +2026/03/21 12:14:09 [log_collector] {"stage_name":"log_collector","events_processed":6135,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1227,"last_update":"2026-03-21T12:14:04.068927463Z"} +2026/03/21 12:14:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":662.8,"last_update":"2026-03-21T12:14:04.069303573Z"} +2026/03/21 12:14:09 ───────────────────────────────────────────────── +2026/03/21 12:14:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:14:14 [log_collector] {"stage_name":"log_collector","events_processed":6135,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1227,"last_update":"2026-03-21T12:14:14.068439685Z"} +2026/03/21 12:14:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":663.8,"last_update":"2026-03-21T12:14:09.069023677Z"} +2026/03/21 12:14:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1330,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:14:09.079303391Z"} +2026/03/21 12:14:14 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":14.676125639267845,"throughput_eps":0,"last_update":"2026-03-21T12:14:09.210542646Z"} +2026/03/21 12:14:14 [transform_engine] {"stage_name":"transform_engine","events_processed":110,"events_dropped":0,"avg_latency_ms":657.832104762851,"throughput_eps":0,"last_update":"2026-03-21T12:14:09.210550161Z"} +2026/03/21 12:14:14 ───────────────────────────────────────────────── +2026/03/21 12:14:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:14:19 [transform_engine] {"stage_name":"transform_engine","events_processed":110,"events_dropped":0,"avg_latency_ms":657.832104762851,"throughput_eps":0,"last_update":"2026-03-21T12:14:14.210021595Z"} +2026/03/21 12:14:19 [log_collector] {"stage_name":"log_collector","events_processed":6135,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1227,"last_update":"2026-03-21T12:14:14.068439685Z"} +2026/03/21 12:14:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":664.8,"last_update":"2026-03-21T12:14:14.068900016Z"} +2026/03/21 12:14:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:14:14.077771644Z"} +2026/03/21 12:14:19 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":14.676125639267845,"throughput_eps":0,"last_update":"2026-03-21T12:14:14.210012027Z"} +2026/03/21 12:14:19 ───────────────────────────────────────────────── +2026/03/21 12:14:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:14:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":665.8,"last_update":"2026-03-21T12:14:19.069311812Z"} +2026/03/21 12:14:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:14:19.077827089Z"} +2026/03/21 12:14:24 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":14.676125639267845,"throughput_eps":0,"last_update":"2026-03-21T12:14:19.210160982Z"} +2026/03/21 12:14:24 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":539.5746306102808,"throughput_eps":0,"last_update":"2026-03-21T12:14:19.276714142Z"} +2026/03/21 12:14:24 [log_collector] {"stage_name":"log_collector","events_processed":6135,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1227,"last_update":"2026-03-21T12:14:24.068224842Z"} +2026/03/21 12:14:24 ───────────────────────────────────────────────── +2026/03/21 12:14:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:14:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:14:24.078481481Z"} +2026/03/21 12:14:29 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":15.214133511414277,"throughput_eps":0,"last_update":"2026-03-21T12:14:24.210877855Z"} +2026/03/21 12:14:29 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":539.5746306102808,"throughput_eps":0,"last_update":"2026-03-21T12:14:24.209660606Z"} +2026/03/21 12:14:29 [log_collector] {"stage_name":"log_collector","events_processed":6135,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1227,"last_update":"2026-03-21T12:14:24.068224842Z"} +2026/03/21 12:14:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":666.8,"last_update":"2026-03-21T12:14:24.069068446Z"} +2026/03/21 12:14:29 ───────────────────────────────────────────────── +Saved state: 14 clusters, 6136 messages, reason: none +2026/03/21 12:14:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:14:34 [log_collector] {"stage_name":"log_collector","events_processed":6135,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1227,"last_update":"2026-03-21T12:14:29.068064538Z"} +2026/03/21 12:14:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":667.8,"last_update":"2026-03-21T12:14:29.068654678Z"} +2026/03/21 12:14:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:14:29.077717813Z"} +2026/03/21 12:14:34 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":15.214133511414277,"throughput_eps":0,"last_update":"2026-03-21T12:14:29.209917612Z"} +2026/03/21 12:14:34 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":539.5746306102808,"throughput_eps":0,"last_update":"2026-03-21T12:14:29.20980154Z"} +2026/03/21 12:14:34 ───────────────────────────────────────────────── +2026/03/21 12:14:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:14:39 [log_collector] {"stage_name":"log_collector","events_processed":6138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1227.6,"last_update":"2026-03-21T12:14:34.068891336Z"} +2026/03/21 12:14:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":668.8,"last_update":"2026-03-21T12:14:34.068882198Z"} +2026/03/21 12:14:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:14:34.078236371Z"} +2026/03/21 12:14:39 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":15.214133511414277,"throughput_eps":0,"last_update":"2026-03-21T12:14:34.210625643Z"} +2026/03/21 12:14:39 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":539.5746306102808,"throughput_eps":0,"last_update":"2026-03-21T12:14:34.210640813Z"} +2026/03/21 12:14:39 ───────────────────────────────────────────────── +2026/03/21 12:14:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:14:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":669.8,"last_update":"2026-03-21T12:14:39.068262317Z"} +2026/03/21 12:14:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1342,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:14:39.078033467Z"} +2026/03/21 12:14:44 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":15.214133511414277,"throughput_eps":0,"last_update":"2026-03-21T12:14:39.210489049Z"} +2026/03/21 12:14:44 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":539.5746306102808,"throughput_eps":0,"last_update":"2026-03-21T12:14:39.210465163Z"} +2026/03/21 12:14:44 [log_collector] {"stage_name":"log_collector","events_processed":6149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1229.8,"last_update":"2026-03-21T12:14:39.068056022Z"} +2026/03/21 12:14:44 ───────────────────────────────────────────────── +2026/03/21 12:14:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:14:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:14:44.077181655Z"} +2026/03/21 12:14:49 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":15.214133511414277,"throughput_eps":0,"last_update":"2026-03-21T12:14:44.210592104Z"} +2026/03/21 12:14:49 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":539.5746306102808,"throughput_eps":0,"last_update":"2026-03-21T12:14:44.210607775Z"} +2026/03/21 12:14:49 [log_collector] {"stage_name":"log_collector","events_processed":6149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1229.8,"last_update":"2026-03-21T12:14:44.068443871Z"} +2026/03/21 12:14:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":670.8,"last_update":"2026-03-21T12:14:44.068902599Z"} +2026/03/21 12:14:49 ───────────────────────────────────────────────── +2026/03/21 12:14:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:14:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:14:49.076929849Z"} +2026/03/21 12:14:54 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":15.214133511414277,"throughput_eps":0,"last_update":"2026-03-21T12:14:49.210163824Z"} +2026/03/21 12:14:54 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":455.01330848822465,"throughput_eps":0,"last_update":"2026-03-21T12:14:49.326942163Z"} +2026/03/21 12:14:54 [log_collector] {"stage_name":"log_collector","events_processed":6149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1229.8,"last_update":"2026-03-21T12:14:49.068070454Z"} +2026/03/21 12:14:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":671.8,"last_update":"2026-03-21T12:14:49.068614365Z"} +2026/03/21 12:14:54 ───────────────────────────────────────────────── +2026/03/21 12:14:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:14:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":672.8,"last_update":"2026-03-21T12:14:54.069106082Z"} +2026/03/21 12:14:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:14:54.077217045Z"} +2026/03/21 12:14:59 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":15.381588809131422,"throughput_eps":0,"last_update":"2026-03-21T12:14:54.210412326Z"} +2026/03/21 12:14:59 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":455.01330848822465,"throughput_eps":0,"last_update":"2026-03-21T12:14:54.210419099Z"} +2026/03/21 12:14:59 [log_collector] {"stage_name":"log_collector","events_processed":6149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1229.8,"last_update":"2026-03-21T12:14:54.068696377Z"} +2026/03/21 12:14:59 ───────────────────────────────────────────────── +2026/03/21 12:15:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:15:04 [log_collector] {"stage_name":"log_collector","events_processed":6149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1229.8,"last_update":"2026-03-21T12:14:59.06868478Z"} +2026/03/21 12:15:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":673.8,"last_update":"2026-03-21T12:14:59.069136874Z"} +2026/03/21 12:15:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1350,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:14:59.078940078Z"} +2026/03/21 12:15:04 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":15.381588809131422,"throughput_eps":0,"last_update":"2026-03-21T12:14:59.210213171Z"} +2026/03/21 12:15:04 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":455.01330848822465,"throughput_eps":0,"last_update":"2026-03-21T12:14:59.210224582Z"} +2026/03/21 12:15:04 ───────────────────────────────────────────────── +2026/03/21 12:15:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:15:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:15:04.078206978Z"} +2026/03/21 12:15:09 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":15.381588809131422,"throughput_eps":0,"last_update":"2026-03-21T12:15:04.210555351Z"} +2026/03/21 12:15:09 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":455.01330848822465,"throughput_eps":0,"last_update":"2026-03-21T12:15:04.210567705Z"} +2026/03/21 12:15:09 [log_collector] {"stage_name":"log_collector","events_processed":6149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1229.8,"last_update":"2026-03-21T12:15:04.068099373Z"} +2026/03/21 12:15:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":674.8,"last_update":"2026-03-21T12:15:04.068456326Z"} +2026/03/21 12:15:09 ───────────────────────────────────────────────── +2026/03/21 12:15:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:15:14 [log_collector] {"stage_name":"log_collector","events_processed":6149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1229.8,"last_update":"2026-03-21T12:15:09.068652425Z"} +2026/03/21 12:15:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":675.8,"last_update":"2026-03-21T12:15:09.068971124Z"} +2026/03/21 12:15:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:15:09.077342166Z"} +2026/03/21 12:15:14 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":15.381588809131422,"throughput_eps":0,"last_update":"2026-03-21T12:15:09.210758434Z"} +2026/03/21 12:15:14 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":455.01330848822465,"throughput_eps":0,"last_update":"2026-03-21T12:15:09.210770557Z"} +2026/03/21 12:15:14 ───────────────────────────────────────────────── +2026/03/21 12:15:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:15:19 [log_collector] {"stage_name":"log_collector","events_processed":6149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1229.8,"last_update":"2026-03-21T12:15:14.068971587Z"} +2026/03/21 12:15:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":676.8,"last_update":"2026-03-21T12:15:14.069475832Z"} +2026/03/21 12:15:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:15:14.078170703Z"} +2026/03/21 12:15:19 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":15.381588809131422,"throughput_eps":0,"last_update":"2026-03-21T12:15:14.210502327Z"} +2026/03/21 12:15:19 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":455.01330848822465,"throughput_eps":0,"last_update":"2026-03-21T12:15:14.210511665Z"} +2026/03/21 12:15:19 ───────────────────────────────────────────────── +2026/03/21 12:15:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:15:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:15:19.078031937Z"} +2026/03/21 12:15:24 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":15.381588809131422,"throughput_eps":0,"last_update":"2026-03-21T12:15:19.210421422Z"} +2026/03/21 12:15:24 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":378.96074239057975,"throughput_eps":0,"last_update":"2026-03-21T12:15:19.285188592Z"} +2026/03/21 12:15:24 [log_collector] {"stage_name":"log_collector","events_processed":6149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1229.8,"last_update":"2026-03-21T12:15:19.068724933Z"} +2026/03/21 12:15:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":677.8,"last_update":"2026-03-21T12:15:19.068999308Z"} +2026/03/21 12:15:24 ───────────────────────────────────────────────── +2026/03/21 12:15:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:15:29 [log_collector] {"stage_name":"log_collector","events_processed":6149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1229.8,"last_update":"2026-03-21T12:15:24.068385259Z"} +2026/03/21 12:15:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":678.8,"last_update":"2026-03-21T12:15:24.069188126Z"} +2026/03/21 12:15:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1360,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:15:24.078894904Z"} +2026/03/21 12:15:29 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.10267684730514,"throughput_eps":0,"last_update":"2026-03-21T12:15:24.210138407Z"} +2026/03/21 12:15:29 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":378.96074239057975,"throughput_eps":0,"last_update":"2026-03-21T12:15:24.210113439Z"} +2026/03/21 12:15:29 ───────────────────────────────────────────────── +2026/03/21 12:15:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:15:34 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.10267684730514,"throughput_eps":0,"last_update":"2026-03-21T12:15:29.21097421Z"} +2026/03/21 12:15:34 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":378.96074239057975,"throughput_eps":0,"last_update":"2026-03-21T12:15:29.21091117Z"} +2026/03/21 12:15:34 [log_collector] {"stage_name":"log_collector","events_processed":6149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1229.8,"last_update":"2026-03-21T12:15:29.068713059Z"} +2026/03/21 12:15:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":679.6,"last_update":"2026-03-21T12:15:29.068717327Z"} +2026/03/21 12:15:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:15:29.078106838Z"} +2026/03/21 12:15:34 ───────────────────────────────────────────────── +Saved state: 14 clusters, 6150 messages, reason: none +2026/03/21 12:15:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:15:39 [log_collector] {"stage_name":"log_collector","events_processed":6149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1229.8,"last_update":"2026-03-21T12:15:34.068861041Z"} +2026/03/21 12:15:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":680.8,"last_update":"2026-03-21T12:15:34.069013753Z"} +2026/03/21 12:15:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:15:34.078393575Z"} +2026/03/21 12:15:39 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.10267684730514,"throughput_eps":0,"last_update":"2026-03-21T12:15:34.21077565Z"} +2026/03/21 12:15:39 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":378.96074239057975,"throughput_eps":0,"last_update":"2026-03-21T12:15:34.210657023Z"} +2026/03/21 12:15:39 ───────────────────────────────────────────────── +2026/03/21 12:15:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:15:44 [log_collector] {"stage_name":"log_collector","events_processed":6154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1230.8,"last_update":"2026-03-21T12:15:39.06882266Z"} +2026/03/21 12:15:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":681.8,"last_update":"2026-03-21T12:15:39.070955722Z"} +2026/03/21 12:15:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:15:39.078156274Z"} +2026/03/21 12:15:44 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.10267684730514,"throughput_eps":0,"last_update":"2026-03-21T12:15:39.210411117Z"} +2026/03/21 12:15:44 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":378.96074239057975,"throughput_eps":0,"last_update":"2026-03-21T12:15:39.210379617Z"} +2026/03/21 12:15:44 ───────────────────────────────────────────────── +2026/03/21 12:15:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:15:49 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.10267684730514,"throughput_eps":0,"last_update":"2026-03-21T12:15:44.210212779Z"} +2026/03/21 12:15:49 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":378.96074239057975,"throughput_eps":0,"last_update":"2026-03-21T12:15:44.211764689Z"} +2026/03/21 12:15:49 [log_collector] {"stage_name":"log_collector","events_processed":6154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1230.8,"last_update":"2026-03-21T12:15:44.068789727Z"} +2026/03/21 12:15:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":682.8,"last_update":"2026-03-21T12:15:44.068864681Z"} +2026/03/21 12:15:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:15:44.075942518Z"} +2026/03/21 12:15:49 ───────────────────────────────────────────────── +2026/03/21 12:15:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:15:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:15:49.076224801Z"} +2026/03/21 12:15:54 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.10267684730514,"throughput_eps":0,"last_update":"2026-03-21T12:15:49.210472781Z"} +2026/03/21 12:15:54 [transform_engine] {"stage_name":"transform_engine","events_processed":114,"events_dropped":0,"avg_latency_ms":339.5108187124638,"throughput_eps":0,"last_update":"2026-03-21T12:15:49.392153547Z"} +2026/03/21 12:15:54 [log_collector] {"stage_name":"log_collector","events_processed":6154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1230.8,"last_update":"2026-03-21T12:15:49.068464187Z"} +2026/03/21 12:15:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":683.8,"last_update":"2026-03-21T12:15:49.068704748Z"} +2026/03/21 12:15:54 ───────────────────────────────────────────────── +2026/03/21 12:15:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:15:59 [log_collector] {"stage_name":"log_collector","events_processed":6154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1230.8,"last_update":"2026-03-21T12:15:54.068615894Z"} +2026/03/21 12:15:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":684.8,"last_update":"2026-03-21T12:15:54.06921444Z"} +2026/03/21 12:15:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:15:54.076175284Z"} +2026/03/21 12:15:59 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":15.268001877844114,"throughput_eps":0,"last_update":"2026-03-21T12:15:54.210628817Z"} +2026/03/21 12:15:59 [transform_engine] {"stage_name":"transform_engine","events_processed":114,"events_dropped":0,"avg_latency_ms":339.5108187124638,"throughput_eps":0,"last_update":"2026-03-21T12:15:54.210536772Z"} +2026/03/21 12:15:59 ───────────────────────────────────────────────── +2026/03/21 12:16:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:16:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":685.8,"last_update":"2026-03-21T12:15:59.069256653Z"} +2026/03/21 12:16:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:15:59.075539037Z"} +2026/03/21 12:16:04 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":15.268001877844114,"throughput_eps":0,"last_update":"2026-03-21T12:15:59.210788647Z"} +2026/03/21 12:16:04 [transform_engine] {"stage_name":"transform_engine","events_processed":114,"events_dropped":0,"avg_latency_ms":339.5108187124638,"throughput_eps":0,"last_update":"2026-03-21T12:15:59.209676989Z"} +2026/03/21 12:16:04 [log_collector] {"stage_name":"log_collector","events_processed":6154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1230.8,"last_update":"2026-03-21T12:15:59.06911373Z"} +2026/03/21 12:16:04 ───────────────────────────────────────────────── +2026/03/21 12:16:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:16:09 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":15.268001877844114,"throughput_eps":0,"last_update":"2026-03-21T12:16:04.209950389Z"} +2026/03/21 12:16:09 [transform_engine] {"stage_name":"transform_engine","events_processed":114,"events_dropped":0,"avg_latency_ms":339.5108187124638,"throughput_eps":0,"last_update":"2026-03-21T12:16:04.209928336Z"} +2026/03/21 12:16:09 [log_collector] {"stage_name":"log_collector","events_processed":6154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1230.8,"last_update":"2026-03-21T12:16:04.068653905Z"} +2026/03/21 12:16:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":686.8,"last_update":"2026-03-21T12:16:04.068937016Z"} +2026/03/21 12:16:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:16:04.074685509Z"} +2026/03/21 12:16:09 ───────────────────────────────────────────────── +2026/03/21 12:16:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:16:14 [log_collector] {"stage_name":"log_collector","events_processed":6154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1230.8,"last_update":"2026-03-21T12:16:09.068886528Z"} +2026/03/21 12:16:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":687.8,"last_update":"2026-03-21T12:16:09.069114152Z"} +2026/03/21 12:16:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:16:09.074779977Z"} +2026/03/21 12:16:14 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":15.268001877844114,"throughput_eps":0,"last_update":"2026-03-21T12:16:09.21004089Z"} +2026/03/21 12:16:14 [transform_engine] {"stage_name":"transform_engine","events_processed":114,"events_dropped":0,"avg_latency_ms":339.5108187124638,"throughput_eps":0,"last_update":"2026-03-21T12:16:09.210016485Z"} +2026/03/21 12:16:14 ───────────────────────────────────────────────── +2026/03/21 12:16:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:16:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":688.8,"last_update":"2026-03-21T12:16:14.068635457Z"} +2026/03/21 12:16:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1380,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:16:14.076129672Z"} +2026/03/21 12:16:19 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":15.268001877844114,"throughput_eps":0,"last_update":"2026-03-21T12:16:14.210458402Z"} +2026/03/21 12:16:19 [transform_engine] {"stage_name":"transform_engine","events_processed":114,"events_dropped":0,"avg_latency_ms":339.5108187124638,"throughput_eps":0,"last_update":"2026-03-21T12:16:14.210500623Z"} +2026/03/21 12:16:19 [log_collector] {"stage_name":"log_collector","events_processed":6154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1230.8,"last_update":"2026-03-21T12:16:14.068285278Z"} +2026/03/21 12:16:19 ───────────────────────────────────────────────── +2026/03/21 12:16:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:16:24 [log_collector] {"stage_name":"log_collector","events_processed":6154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1230.8,"last_update":"2026-03-21T12:16:19.068111998Z"} +2026/03/21 12:16:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":689.8,"last_update":"2026-03-21T12:16:19.068469813Z"} +2026/03/21 12:16:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:16:19.075935984Z"} +2026/03/21 12:16:24 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":15.268001877844114,"throughput_eps":0,"last_update":"2026-03-21T12:16:19.210529001Z"} +2026/03/21 12:16:24 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":554.1893195699711,"throughput_eps":0,"last_update":"2026-03-21T12:16:20.623411233Z"} +2026/03/21 12:16:24 ───────────────────────────────────────────────── +2026/03/21 12:16:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:16:29 [log_collector] {"stage_name":"log_collector","events_processed":6221,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1244.2,"last_update":"2026-03-21T12:16:29.068303888Z"} +2026/03/21 12:16:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":690.8,"last_update":"2026-03-21T12:16:24.069248029Z"} +2026/03/21 12:16:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:16:24.077429489Z"} +2026/03/21 12:16:29 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":14.332846302275293,"throughput_eps":0,"last_update":"2026-03-21T12:16:24.210971424Z"} +2026/03/21 12:16:29 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":554.1893195699711,"throughput_eps":0,"last_update":"2026-03-21T12:16:24.209659414Z"} +2026/03/21 12:16:29 ───────────────────────────────────────────────── +2026/03/21 12:16:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:16:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":691.8,"last_update":"2026-03-21T12:16:29.06891131Z"} +2026/03/21 12:16:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:16:29.074641428Z"} +2026/03/21 12:16:34 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":14.332846302275293,"throughput_eps":0,"last_update":"2026-03-21T12:16:29.210671899Z"} +2026/03/21 12:16:34 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":554.1893195699711,"throughput_eps":0,"last_update":"2026-03-21T12:16:29.20963247Z"} +2026/03/21 12:16:34 [log_collector] {"stage_name":"log_collector","events_processed":6221,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1244.2,"last_update":"2026-03-21T12:16:29.068303888Z"} +2026/03/21 12:16:34 ───────────────────────────────────────────────── +2026/03/21 12:16:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:16:39 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":14.332846302275293,"throughput_eps":0,"last_update":"2026-03-21T12:16:34.211183697Z"} +2026/03/21 12:16:39 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":554.1893195699711,"throughput_eps":0,"last_update":"2026-03-21T12:16:34.211235326Z"} +2026/03/21 12:16:39 [log_collector] {"stage_name":"log_collector","events_processed":6499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1299.8,"last_update":"2026-03-21T12:16:34.068066781Z"} +2026/03/21 12:16:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":692.8,"last_update":"2026-03-21T12:16:34.068283116Z"} +2026/03/21 12:16:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1388,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:16:34.076723772Z"} +2026/03/21 12:16:39 ───────────────────────────────────────────────── +2026/03/21 12:16:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:16:44 [log_collector] {"stage_name":"log_collector","events_processed":6520,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1304,"last_update":"2026-03-21T12:16:39.068167224Z"} +2026/03/21 12:16:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":693.8,"last_update":"2026-03-21T12:16:39.068690625Z"} +2026/03/21 12:16:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1390,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:16:39.077096264Z"} +2026/03/21 12:16:44 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":14.332846302275293,"throughput_eps":0,"last_update":"2026-03-21T12:16:39.21042721Z"} +2026/03/21 12:16:44 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":554.1893195699711,"throughput_eps":0,"last_update":"2026-03-21T12:16:39.210458981Z"} +2026/03/21 12:16:44 ───────────────────────────────────────────────── +2026/03/21 12:16:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:16:49 [log_collector] {"stage_name":"log_collector","events_processed":6520,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1304,"last_update":"2026-03-21T12:16:44.068809981Z"} +2026/03/21 12:16:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":694.8,"last_update":"2026-03-21T12:16:44.069096159Z"} +2026/03/21 12:16:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:16:44.078938519Z"} +2026/03/21 12:16:49 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":14.332846302275293,"throughput_eps":0,"last_update":"2026-03-21T12:16:44.210277584Z"} +2026/03/21 12:16:49 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":554.1893195699711,"throughput_eps":0,"last_update":"2026-03-21T12:16:44.210395719Z"} +2026/03/21 12:16:49 ───────────────────────────────────────────────── +Saved state: 14 clusters, 6521 messages, reason: none +2026/03/21 12:16:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:16:54 [log_collector] {"stage_name":"log_collector","events_processed":6520,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1304,"last_update":"2026-03-21T12:16:49.068891116Z"} +2026/03/21 12:16:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":695.8,"last_update":"2026-03-21T12:16:49.069079356Z"} +2026/03/21 12:16:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:16:49.078632171Z"} +2026/03/21 12:16:54 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":14.332846302275293,"throughput_eps":0,"last_update":"2026-03-21T12:16:49.209969403Z"} +2026/03/21 12:16:54 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":466.5403592559769,"throughput_eps":0,"last_update":"2026-03-21T12:16:49.32581386Z"} +2026/03/21 12:16:54 ───────────────────────────────────────────────── +2026/03/21 12:16:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:16:59 [log_collector] {"stage_name":"log_collector","events_processed":6523,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1304.6,"last_update":"2026-03-21T12:16:54.068562954Z"} +2026/03/21 12:16:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":696.8,"last_update":"2026-03-21T12:16:54.068770522Z"} +2026/03/21 12:16:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:16:54.078956519Z"} +2026/03/21 12:16:59 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":14.656669841820234,"throughput_eps":0,"last_update":"2026-03-21T12:16:54.210227014Z"} +2026/03/21 12:16:59 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":466.5403592559769,"throughput_eps":0,"last_update":"2026-03-21T12:16:54.210297919Z"} +2026/03/21 12:16:59 ───────────────────────────────────────────────── +2026/03/21 12:17:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:17:04 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":466.5403592559769,"throughput_eps":0,"last_update":"2026-03-21T12:16:59.209641441Z"} +2026/03/21 12:17:04 [log_collector] {"stage_name":"log_collector","events_processed":6523,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1304.6,"last_update":"2026-03-21T12:16:59.068527443Z"} +2026/03/21 12:17:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":697.8,"last_update":"2026-03-21T12:16:59.068789695Z"} +2026/03/21 12:17:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:16:59.078494802Z"} +2026/03/21 12:17:04 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":14.656669841820234,"throughput_eps":0,"last_update":"2026-03-21T12:16:59.210741898Z"} +2026/03/21 12:17:04 ───────────────────────────────────────────────── +2026/03/21 12:17:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:17:09 [log_collector] {"stage_name":"log_collector","events_processed":6541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1308.2,"last_update":"2026-03-21T12:17:04.068912966Z"} +2026/03/21 12:17:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":698.8,"last_update":"2026-03-21T12:17:04.069073282Z"} +2026/03/21 12:17:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1400,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:17:04.077439727Z"} +2026/03/21 12:17:09 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":14.656669841820234,"throughput_eps":0,"last_update":"2026-03-21T12:17:04.210836434Z"} +2026/03/21 12:17:09 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":466.5403592559769,"throughput_eps":0,"last_update":"2026-03-21T12:17:04.20974757Z"} +2026/03/21 12:17:09 ───────────────────────────────────────────────── +2026/03/21 12:17:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:17:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":699.8,"last_update":"2026-03-21T12:17:09.068930774Z"} +2026/03/21 12:17:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1402,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:17:09.079823725Z"} +2026/03/21 12:17:14 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":14.656669841820234,"throughput_eps":0,"last_update":"2026-03-21T12:17:09.210187187Z"} +2026/03/21 12:17:14 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":466.5403592559769,"throughput_eps":0,"last_update":"2026-03-21T12:17:09.210302477Z"} +2026/03/21 12:17:14 [log_collector] {"stage_name":"log_collector","events_processed":6550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1310,"last_update":"2026-03-21T12:17:09.068939691Z"} +2026/03/21 12:17:14 ───────────────────────────────────────────────── +2026/03/21 12:17:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:17:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:17:14.078630239Z"} +2026/03/21 12:17:19 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":14.656669841820234,"throughput_eps":0,"last_update":"2026-03-21T12:17:14.210152741Z"} +2026/03/21 12:17:19 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":466.5403592559769,"throughput_eps":0,"last_update":"2026-03-21T12:17:14.21011526Z"} +2026/03/21 12:17:19 [log_collector] {"stage_name":"log_collector","events_processed":6550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1310,"last_update":"2026-03-21T12:17:14.068833858Z"} +2026/03/21 12:17:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":700.8,"last_update":"2026-03-21T12:17:14.069554578Z"} +2026/03/21 12:17:19 ───────────────────────────────────────────────── +2026/03/21 12:17:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:17:24 [log_collector] {"stage_name":"log_collector","events_processed":6550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1310,"last_update":"2026-03-21T12:17:19.068807907Z"} +2026/03/21 12:17:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":701.8,"last_update":"2026-03-21T12:17:19.069104785Z"} +2026/03/21 12:17:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:17:19.078143236Z"} +2026/03/21 12:17:24 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":14.656669841820234,"throughput_eps":0,"last_update":"2026-03-21T12:17:19.210537808Z"} +2026/03/21 12:17:24 [transform_engine] {"stage_name":"transform_engine","events_processed":117,"events_dropped":0,"avg_latency_ms":406.9369910047816,"throughput_eps":0,"last_update":"2026-03-21T12:17:19.378930125Z"} +2026/03/21 12:17:24 ───────────────────────────────────────────────── +2026/03/21 12:17:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:17:29 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":15.124949273456188,"throughput_eps":0,"last_update":"2026-03-21T12:17:24.210917049Z"} +2026/03/21 12:17:29 [transform_engine] {"stage_name":"transform_engine","events_processed":117,"events_dropped":0,"avg_latency_ms":406.9369910047816,"throughput_eps":0,"last_update":"2026-03-21T12:17:24.209732812Z"} +2026/03/21 12:17:29 [log_collector] {"stage_name":"log_collector","events_processed":6550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1310,"last_update":"2026-03-21T12:17:24.068179369Z"} +2026/03/21 12:17:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":702.8,"last_update":"2026-03-21T12:17:24.068403649Z"} +2026/03/21 12:17:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1408,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:17:24.078499784Z"} +2026/03/21 12:17:29 ───────────────────────────────────────────────── +2026/03/21 12:17:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:17:34 [log_collector] {"stage_name":"log_collector","events_processed":6550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1310,"last_update":"2026-03-21T12:17:29.068084981Z"} +2026/03/21 12:17:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":703.8,"last_update":"2026-03-21T12:17:29.068381187Z"} +2026/03/21 12:17:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:17:29.077548275Z"} +2026/03/21 12:17:34 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":15.124949273456188,"throughput_eps":0,"last_update":"2026-03-21T12:17:29.210880995Z"} +2026/03/21 12:17:34 [transform_engine] {"stage_name":"transform_engine","events_processed":117,"events_dropped":0,"avg_latency_ms":406.9369910047816,"throughput_eps":0,"last_update":"2026-03-21T12:17:29.209704322Z"} +2026/03/21 12:17:34 ───────────────────────────────────────────────── +2026/03/21 12:17:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:17:39 [log_collector] {"stage_name":"log_collector","events_processed":6550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1310,"last_update":"2026-03-21T12:17:34.069011192Z"} +2026/03/21 12:17:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":704.8,"last_update":"2026-03-21T12:17:34.069284776Z"} +2026/03/21 12:17:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:17:34.077136115Z"} +2026/03/21 12:17:39 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":15.124949273456188,"throughput_eps":0,"last_update":"2026-03-21T12:17:34.210469186Z"} +2026/03/21 12:17:39 [transform_engine] {"stage_name":"transform_engine","events_processed":117,"events_dropped":0,"avg_latency_ms":406.9369910047816,"throughput_eps":0,"last_update":"2026-03-21T12:17:34.21051807Z"} +2026/03/21 12:17:39 ───────────────────────────────────────────────── +2026/03/21 12:17:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:17:44 [log_collector] {"stage_name":"log_collector","events_processed":6550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1310,"last_update":"2026-03-21T12:17:39.068657571Z"} +2026/03/21 12:17:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":705.8,"last_update":"2026-03-21T12:17:39.068957335Z"} +2026/03/21 12:17:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:17:39.077039525Z"} +2026/03/21 12:17:44 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":15.124949273456188,"throughput_eps":0,"last_update":"2026-03-21T12:17:39.210542804Z"} +2026/03/21 12:17:44 [transform_engine] {"stage_name":"transform_engine","events_processed":117,"events_dropped":0,"avg_latency_ms":406.9369910047816,"throughput_eps":0,"last_update":"2026-03-21T12:17:39.210647274Z"} +2026/03/21 12:17:44 ───────────────────────────────────────────────── +2026/03/21 12:17:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:17:49 [transform_engine] {"stage_name":"transform_engine","events_processed":117,"events_dropped":0,"avg_latency_ms":406.9369910047816,"throughput_eps":0,"last_update":"2026-03-21T12:17:44.210299289Z"} +2026/03/21 12:17:49 [log_collector] {"stage_name":"log_collector","events_processed":6550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1310,"last_update":"2026-03-21T12:17:49.068076676Z"} +2026/03/21 12:17:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":706.8,"last_update":"2026-03-21T12:17:44.069171797Z"} +2026/03/21 12:17:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:17:44.077776658Z"} +2026/03/21 12:17:49 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":15.124949273456188,"throughput_eps":0,"last_update":"2026-03-21T12:17:44.210184429Z"} +2026/03/21 12:17:49 ───────────────────────────────────────────────── +2026/03/21 12:17:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:17:54 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":15.124949273456188,"throughput_eps":0,"last_update":"2026-03-21T12:17:49.209938206Z"} +2026/03/21 12:17:54 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":339.0120002038253,"throughput_eps":0,"last_update":"2026-03-21T12:17:49.277281061Z"} +2026/03/21 12:17:54 [log_collector] {"stage_name":"log_collector","events_processed":6550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1310,"last_update":"2026-03-21T12:17:54.068272312Z"} +2026/03/21 12:17:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":707.8,"last_update":"2026-03-21T12:17:49.068868652Z"} +2026/03/21 12:17:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:17:49.077703744Z"} +2026/03/21 12:17:54 ───────────────────────────────────────────────── +2026/03/21 12:17:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:17:59 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":339.0120002038253,"throughput_eps":0,"last_update":"2026-03-21T12:17:54.209854989Z"} +2026/03/21 12:17:59 [log_collector] {"stage_name":"log_collector","events_processed":6550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1310,"last_update":"2026-03-21T12:17:54.068272312Z"} +2026/03/21 12:17:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":708.8,"last_update":"2026-03-21T12:17:54.068665876Z"} +2026/03/21 12:17:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1420,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:17:54.077616098Z"} +2026/03/21 12:17:59 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":15.977229018764952,"throughput_eps":0,"last_update":"2026-03-21T12:17:54.209867843Z"} +2026/03/21 12:17:59 ───────────────────────────────────────────────── +2026/03/21 12:18:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:18:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":709.8,"last_update":"2026-03-21T12:17:59.068651224Z"} +2026/03/21 12:18:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:17:59.07803213Z"} +2026/03/21 12:18:04 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":15.977229018764952,"throughput_eps":0,"last_update":"2026-03-21T12:17:59.210324884Z"} +2026/03/21 12:18:04 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":339.0120002038253,"throughput_eps":0,"last_update":"2026-03-21T12:17:59.210293014Z"} +2026/03/21 12:18:04 [log_collector] {"stage_name":"log_collector","events_processed":6550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1310,"last_update":"2026-03-21T12:18:04.068465089Z"} +2026/03/21 12:18:04 ───────────────────────────────────────────────── +2026/03/21 12:18:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:18:09 [log_collector] {"stage_name":"log_collector","events_processed":6550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1310,"last_update":"2026-03-21T12:18:04.068465089Z"} +2026/03/21 12:18:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":710.8,"last_update":"2026-03-21T12:18:04.069039458Z"} +2026/03/21 12:18:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:18:04.076981771Z"} +2026/03/21 12:18:09 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":15.977229018764952,"throughput_eps":0,"last_update":"2026-03-21T12:18:04.210888286Z"} +2026/03/21 12:18:09 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":339.0120002038253,"throughput_eps":0,"last_update":"2026-03-21T12:18:04.210760251Z"} +2026/03/21 12:18:09 ───────────────────────────────────────────────── +2026/03/21 12:18:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:18:14 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":15.977229018764952,"throughput_eps":0,"last_update":"2026-03-21T12:18:09.210148806Z"} +2026/03/21 12:18:14 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":339.0120002038253,"throughput_eps":0,"last_update":"2026-03-21T12:18:09.210096446Z"} +2026/03/21 12:18:14 [log_collector] {"stage_name":"log_collector","events_processed":6550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1310,"last_update":"2026-03-21T12:18:09.068842897Z"} +2026/03/21 12:18:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":711.8,"last_update":"2026-03-21T12:18:09.069070924Z"} +2026/03/21 12:18:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:18:09.077695784Z"} +2026/03/21 12:18:14 ───────────────────────────────────────────────── +Saved state: 14 clusters, 6551 messages, reason: none +2026/03/21 12:18:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:18:19 [log_collector] {"stage_name":"log_collector","events_processed":6550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1310,"last_update":"2026-03-21T12:18:14.068999725Z"} +2026/03/21 12:18:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":712.8,"last_update":"2026-03-21T12:18:14.069172296Z"} +2026/03/21 12:18:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:18:14.078021595Z"} +2026/03/21 12:18:19 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":15.977229018764952,"throughput_eps":0,"last_update":"2026-03-21T12:18:14.210297831Z"} +2026/03/21 12:18:19 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":339.0120002038253,"throughput_eps":0,"last_update":"2026-03-21T12:18:14.210274847Z"} +2026/03/21 12:18:19 ───────────────────────────────────────────────── +2026/03/21 12:18:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:18:24 [log_collector] {"stage_name":"log_collector","events_processed":6564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1312.8,"last_update":"2026-03-21T12:18:19.068990096Z"} +2026/03/21 12:18:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":713.8,"last_update":"2026-03-21T12:18:19.068941805Z"} +2026/03/21 12:18:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:18:19.077922906Z"} +2026/03/21 12:18:24 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":15.977229018764952,"throughput_eps":0,"last_update":"2026-03-21T12:18:19.210413893Z"} +2026/03/21 12:18:24 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":292.8758341630603,"throughput_eps":0,"last_update":"2026-03-21T12:18:19.318428047Z"} +2026/03/21 12:18:24 ───────────────────────────────────────────────── +2026/03/21 12:18:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:18:29 [log_collector] {"stage_name":"log_collector","events_processed":6564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1312.8,"last_update":"2026-03-21T12:18:24.068837797Z"} +2026/03/21 12:18:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":714.8,"last_update":"2026-03-21T12:18:24.069128173Z"} +2026/03/21 12:18:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:18:24.077957764Z"} +2026/03/21 12:18:29 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":16.318505215011964,"throughput_eps":0,"last_update":"2026-03-21T12:18:24.210334574Z"} +2026/03/21 12:18:29 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":292.8758341630603,"throughput_eps":0,"last_update":"2026-03-21T12:18:24.21037903Z"} +2026/03/21 12:18:29 ───────────────────────────────────────────────── +2026/03/21 12:18:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:18:34 [log_collector] {"stage_name":"log_collector","events_processed":6564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1312.8,"last_update":"2026-03-21T12:18:29.068103598Z"} +2026/03/21 12:18:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":715.8,"last_update":"2026-03-21T12:18:29.06839698Z"} +2026/03/21 12:18:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:18:29.078097129Z"} +2026/03/21 12:18:34 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":16.318505215011964,"throughput_eps":0,"last_update":"2026-03-21T12:18:29.21039108Z"} +2026/03/21 12:18:34 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":292.8758341630603,"throughput_eps":0,"last_update":"2026-03-21T12:18:29.210404096Z"} +2026/03/21 12:18:34 ───────────────────────────────────────────────── +2026/03/21 12:18:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:18:39 [log_collector] {"stage_name":"log_collector","events_processed":6564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1312.8,"last_update":"2026-03-21T12:18:34.068818735Z"} +2026/03/21 12:18:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":716.8,"last_update":"2026-03-21T12:18:34.06911866Z"} +2026/03/21 12:18:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:18:34.077162217Z"} +2026/03/21 12:18:39 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":16.318505215011964,"throughput_eps":0,"last_update":"2026-03-21T12:18:34.21051163Z"} +2026/03/21 12:18:39 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":292.8758341630603,"throughput_eps":0,"last_update":"2026-03-21T12:18:34.210524093Z"} +2026/03/21 12:18:39 ───────────────────────────────────────────────── +2026/03/21 12:18:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:18:44 [log_collector] {"stage_name":"log_collector","events_processed":6564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1312.8,"last_update":"2026-03-21T12:18:39.068587313Z"} +2026/03/21 12:18:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":717.8,"last_update":"2026-03-21T12:18:39.068958354Z"} +2026/03/21 12:18:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:18:39.077023853Z"} +2026/03/21 12:18:44 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":16.318505215011964,"throughput_eps":0,"last_update":"2026-03-21T12:18:39.210283346Z"} +2026/03/21 12:18:44 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":292.8758341630603,"throughput_eps":0,"last_update":"2026-03-21T12:18:39.210295358Z"} +2026/03/21 12:18:44 ───────────────────────────────────────────────── +2026/03/21 12:18:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:18:49 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":16.318505215011964,"throughput_eps":0,"last_update":"2026-03-21T12:18:44.21062858Z"} +2026/03/21 12:18:49 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":292.8758341630603,"throughput_eps":0,"last_update":"2026-03-21T12:18:44.210640483Z"} +2026/03/21 12:18:49 [log_collector] {"stage_name":"log_collector","events_processed":6564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1312.8,"last_update":"2026-03-21T12:18:44.068854828Z"} +2026/03/21 12:18:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":718.8,"last_update":"2026-03-21T12:18:44.069133582Z"} +2026/03/21 12:18:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:18:44.078392797Z"} +2026/03/21 12:18:49 ───────────────────────────────────────────────── +2026/03/21 12:18:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:18:54 [log_collector] {"stage_name":"log_collector","events_processed":6564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1312.8,"last_update":"2026-03-21T12:18:49.068706729Z"} +2026/03/21 12:18:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":719.8,"last_update":"2026-03-21T12:18:49.069018847Z"} +2026/03/21 12:18:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1442,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:18:49.077697059Z"} +2026/03/21 12:18:54 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":16.318505215011964,"throughput_eps":0,"last_update":"2026-03-21T12:18:49.209960846Z"} +2026/03/21 12:18:54 [transform_engine] {"stage_name":"transform_engine","events_processed":120,"events_dropped":0,"avg_latency_ms":249.80012353044825,"throughput_eps":0,"last_update":"2026-03-21T12:18:49.287473406Z"} +2026/03/21 12:18:54 ───────────────────────────────────────────────── +2026/03/21 12:18:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:18:59 [log_collector] {"stage_name":"log_collector","events_processed":6564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1312.8,"last_update":"2026-03-21T12:18:59.06838772Z"} +2026/03/21 12:18:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":720.8,"last_update":"2026-03-21T12:18:54.06934168Z"} +2026/03/21 12:18:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:18:54.077253466Z"} +2026/03/21 12:18:59 [detection_layer] {"stage_name":"detection_layer","events_processed":120,"events_dropped":0,"avg_latency_ms":16.927815972009572,"throughput_eps":0,"last_update":"2026-03-21T12:18:54.210604685Z"} +2026/03/21 12:18:59 [transform_engine] {"stage_name":"transform_engine","events_processed":120,"events_dropped":0,"avg_latency_ms":249.80012353044825,"throughput_eps":0,"last_update":"2026-03-21T12:18:54.210622489Z"} +2026/03/21 12:18:59 ───────────────────────────────────────────────── +2026/03/21 12:19:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:19:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1446,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:18:59.077945336Z"} +2026/03/21 12:19:04 [detection_layer] {"stage_name":"detection_layer","events_processed":120,"events_dropped":0,"avg_latency_ms":16.927815972009572,"throughput_eps":0,"last_update":"2026-03-21T12:18:59.210198946Z"} +2026/03/21 12:19:04 [transform_engine] {"stage_name":"transform_engine","events_processed":120,"events_dropped":0,"avg_latency_ms":249.80012353044825,"throughput_eps":0,"last_update":"2026-03-21T12:18:59.210221509Z"} +2026/03/21 12:19:04 [log_collector] {"stage_name":"log_collector","events_processed":6564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1312.8,"last_update":"2026-03-21T12:18:59.06838772Z"} +2026/03/21 12:19:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":721.8,"last_update":"2026-03-21T12:18:59.06895731Z"} +2026/03/21 12:19:04 ───────────────────────────────────────────────── +2026/03/21 12:19:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:19:09 [log_collector] {"stage_name":"log_collector","events_processed":6564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1312.8,"last_update":"2026-03-21T12:19:04.06876478Z"} +2026/03/21 12:19:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":722.8,"last_update":"2026-03-21T12:19:04.069205513Z"} +2026/03/21 12:19:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:19:04.078087085Z"} +2026/03/21 12:19:09 [detection_layer] {"stage_name":"detection_layer","events_processed":120,"events_dropped":0,"avg_latency_ms":16.927815972009572,"throughput_eps":0,"last_update":"2026-03-21T12:19:04.210273426Z"} +2026/03/21 12:19:09 [transform_engine] {"stage_name":"transform_engine","events_processed":120,"events_dropped":0,"avg_latency_ms":249.80012353044825,"throughput_eps":0,"last_update":"2026-03-21T12:19:04.210305087Z"} +2026/03/21 12:19:09 ───────────────────────────────────────────────── +2026/03/21 12:19:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:19:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:19:09.078231349Z"} +2026/03/21 12:19:14 [detection_layer] {"stage_name":"detection_layer","events_processed":120,"events_dropped":0,"avg_latency_ms":16.927815972009572,"throughput_eps":0,"last_update":"2026-03-21T12:19:09.210475562Z"} +2026/03/21 12:19:14 [transform_engine] {"stage_name":"transform_engine","events_processed":120,"events_dropped":0,"avg_latency_ms":249.80012353044825,"throughput_eps":0,"last_update":"2026-03-21T12:19:09.210559392Z"} +2026/03/21 12:19:14 [log_collector] {"stage_name":"log_collector","events_processed":6564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1312.8,"last_update":"2026-03-21T12:19:09.06813939Z"} +2026/03/21 12:19:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":723.8,"last_update":"2026-03-21T12:19:09.068638164Z"} +2026/03/21 12:19:14 ───────────────────────────────────────────────── +2026/03/21 12:19:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:19:19 [log_collector] {"stage_name":"log_collector","events_processed":6564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1312.8,"last_update":"2026-03-21T12:19:14.068138747Z"} +2026/03/21 12:19:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":724.8,"last_update":"2026-03-21T12:19:14.068729738Z"} +2026/03/21 12:19:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1452,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:19:14.078687741Z"} +2026/03/21 12:19:19 [detection_layer] {"stage_name":"detection_layer","events_processed":120,"events_dropped":0,"avg_latency_ms":16.927815972009572,"throughput_eps":0,"last_update":"2026-03-21T12:19:14.209975804Z"} +2026/03/21 12:19:19 [transform_engine] {"stage_name":"transform_engine","events_processed":120,"events_dropped":0,"avg_latency_ms":249.80012353044825,"throughput_eps":0,"last_update":"2026-03-21T12:19:14.209941629Z"} +2026/03/21 12:19:19 ───────────────────────────────────────────────── +2026/03/21 12:19:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:19:24 [detection_layer] {"stage_name":"detection_layer","events_processed":120,"events_dropped":0,"avg_latency_ms":16.927815972009572,"throughput_eps":0,"last_update":"2026-03-21T12:19:19.210603955Z"} +2026/03/21 12:19:24 [transform_engine] {"stage_name":"transform_engine","events_processed":121,"events_dropped":0,"avg_latency_ms":212.77929042435863,"throughput_eps":0,"last_update":"2026-03-21T12:19:19.275191184Z"} +2026/03/21 12:19:24 [log_collector] {"stage_name":"log_collector","events_processed":6564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1312.8,"last_update":"2026-03-21T12:19:19.068792606Z"} +2026/03/21 12:19:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":725.8,"last_update":"2026-03-21T12:19:19.069263287Z"} +2026/03/21 12:19:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:19:19.078245582Z"} +2026/03/21 12:19:24 ───────────────────────────────────────────────── +Saved state: 14 clusters, 6565 messages, reason: none +2026/03/21 12:19:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:19:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":726.8,"last_update":"2026-03-21T12:19:24.068480698Z"} +2026/03/21 12:19:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:19:24.077927311Z"} +2026/03/21 12:19:29 [detection_layer] {"stage_name":"detection_layer","events_processed":121,"events_dropped":0,"avg_latency_ms":17.42919357760766,"throughput_eps":0,"last_update":"2026-03-21T12:19:24.210125859Z"} +2026/03/21 12:19:29 [transform_engine] {"stage_name":"transform_engine","events_processed":121,"events_dropped":0,"avg_latency_ms":212.77929042435863,"throughput_eps":0,"last_update":"2026-03-21T12:19:24.210233345Z"} +2026/03/21 12:19:29 [log_collector] {"stage_name":"log_collector","events_processed":6564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1312.8,"last_update":"2026-03-21T12:19:24.068098175Z"} +2026/03/21 12:19:29 ───────────────────────────────────────────────── +2026/03/21 12:19:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:19:34 [log_collector] {"stage_name":"log_collector","events_processed":6569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1313.8,"last_update":"2026-03-21T12:19:29.069482891Z"} +2026/03/21 12:19:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":727.8,"last_update":"2026-03-21T12:19:29.069846898Z"} +2026/03/21 12:19:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:19:29.079512982Z"} +2026/03/21 12:19:34 [detection_layer] {"stage_name":"detection_layer","events_processed":121,"events_dropped":0,"avg_latency_ms":17.42919357760766,"throughput_eps":0,"last_update":"2026-03-21T12:19:29.210753387Z"} +2026/03/21 12:19:34 [transform_engine] {"stage_name":"transform_engine","events_processed":121,"events_dropped":0,"avg_latency_ms":212.77929042435863,"throughput_eps":0,"last_update":"2026-03-21T12:19:29.209662338Z"} +2026/03/21 12:19:34 ───────────────────────────────────────────────── +2026/03/21 12:19:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:19:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3643,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":728.6,"last_update":"2026-03-21T12:19:34.06859175Z"} +2026/03/21 12:19:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:19:34.087823686Z"} +2026/03/21 12:19:39 [detection_layer] {"stage_name":"detection_layer","events_processed":121,"events_dropped":0,"avg_latency_ms":17.42919357760766,"throughput_eps":0,"last_update":"2026-03-21T12:19:34.210058011Z"} +2026/03/21 12:19:39 [transform_engine] {"stage_name":"transform_engine","events_processed":121,"events_dropped":0,"avg_latency_ms":212.77929042435863,"throughput_eps":0,"last_update":"2026-03-21T12:19:34.210024838Z"} +2026/03/21 12:19:39 [log_collector] {"stage_name":"log_collector","events_processed":6569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1313.8,"last_update":"2026-03-21T12:19:34.068588614Z"} +2026/03/21 12:19:39 ───────────────────────────────────────────────── +2026/03/21 12:19:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:19:44 [log_collector] {"stage_name":"log_collector","events_processed":6569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1313.8,"last_update":"2026-03-21T12:19:39.068274576Z"} +2026/03/21 12:19:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":729.8,"last_update":"2026-03-21T12:19:39.068509556Z"} +2026/03/21 12:19:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:19:39.079435873Z"} +2026/03/21 12:19:44 [detection_layer] {"stage_name":"detection_layer","events_processed":121,"events_dropped":0,"avg_latency_ms":17.42919357760766,"throughput_eps":0,"last_update":"2026-03-21T12:19:39.210640371Z"} +2026/03/21 12:19:44 [transform_engine] {"stage_name":"transform_engine","events_processed":121,"events_dropped":0,"avg_latency_ms":212.77929042435863,"throughput_eps":0,"last_update":"2026-03-21T12:19:39.210658736Z"} +2026/03/21 12:19:44 ───────────────────────────────────────────────── +2026/03/21 12:19:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:19:49 [log_collector] {"stage_name":"log_collector","events_processed":6569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1313.8,"last_update":"2026-03-21T12:19:44.068229934Z"} +2026/03/21 12:19:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":730.8,"last_update":"2026-03-21T12:19:44.068658503Z"} +2026/03/21 12:19:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:19:44.078051135Z"} +2026/03/21 12:19:49 [detection_layer] {"stage_name":"detection_layer","events_processed":121,"events_dropped":0,"avg_latency_ms":17.42919357760766,"throughput_eps":0,"last_update":"2026-03-21T12:19:44.210264514Z"} +2026/03/21 12:19:49 [transform_engine] {"stage_name":"transform_engine","events_processed":121,"events_dropped":0,"avg_latency_ms":212.77929042435863,"throughput_eps":0,"last_update":"2026-03-21T12:19:44.210313027Z"} +2026/03/21 12:19:49 ───────────────────────────────────────────────── +2026/03/21 12:19:51 [ANOMALY] time=2026-03-21T12:19:50Z score=0.9324 method=SEAD details=MAD!:w=0.31,s=0.98 RRCF-fast:w=0.17,s=0.82 RRCF-mid!:w=0.16,s=0.94 RRCF-slow!:w=0.15,s=0.92 COPOD!:w=0.21,s=0.97 +2026/03/21 12:19:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:19:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:19:49.076136148Z"} +2026/03/21 12:19:54 [detection_layer] {"stage_name":"detection_layer","events_processed":121,"events_dropped":0,"avg_latency_ms":17.42919357760766,"throughput_eps":0,"last_update":"2026-03-21T12:19:49.210428829Z"} +2026/03/21 12:19:54 [transform_engine] {"stage_name":"transform_engine","events_processed":122,"events_dropped":0,"avg_latency_ms":699.0400861394869,"throughput_eps":0,"last_update":"2026-03-21T12:19:51.855098761Z"} +2026/03/21 12:19:54 [log_collector] {"stage_name":"log_collector","events_processed":6569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1313.8,"last_update":"2026-03-21T12:19:49.068564704Z"} +2026/03/21 12:19:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":731.8,"last_update":"2026-03-21T12:19:49.069855615Z"} +2026/03/21 12:19:54 ───────────────────────────────────────────────── +2026/03/21 12:19:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:19:59 [transform_engine] {"stage_name":"transform_engine","events_processed":122,"events_dropped":0,"avg_latency_ms":699.0400861394869,"throughput_eps":0,"last_update":"2026-03-21T12:19:54.210072114Z"} +2026/03/21 12:19:59 [log_collector] {"stage_name":"log_collector","events_processed":6569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1313.8,"last_update":"2026-03-21T12:19:54.068081506Z"} +2026/03/21 12:19:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":732.8,"last_update":"2026-03-21T12:19:54.068169745Z"} +2026/03/21 12:19:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:19:54.075834138Z"} +2026/03/21 12:19:59 [detection_layer] {"stage_name":"detection_layer","events_processed":122,"events_dropped":0,"avg_latency_ms":16.06050166208613,"throughput_eps":0,"last_update":"2026-03-21T12:19:54.210108022Z"} +2026/03/21 12:19:59 ───────────────────────────────────────────────── +2026/03/21 12:20:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:20:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1470,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:19:59.075158839Z"} +2026/03/21 12:20:04 [detection_layer] {"stage_name":"detection_layer","events_processed":122,"events_dropped":0,"avg_latency_ms":16.06050166208613,"throughput_eps":0,"last_update":"2026-03-21T12:19:59.210443159Z"} +2026/03/21 12:20:04 [transform_engine] {"stage_name":"transform_engine","events_processed":122,"events_dropped":0,"avg_latency_ms":699.0400861394869,"throughput_eps":0,"last_update":"2026-03-21T12:19:59.210456625Z"} +2026/03/21 12:20:04 [log_collector] {"stage_name":"log_collector","events_processed":6569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1313.8,"last_update":"2026-03-21T12:19:59.068714863Z"} +2026/03/21 12:20:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":733.8,"last_update":"2026-03-21T12:19:59.068702949Z"} +2026/03/21 12:20:04 ───────────────────────────────────────────────── +2026/03/21 12:20:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:20:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":734.8,"last_update":"2026-03-21T12:20:04.069327277Z"} +2026/03/21 12:20:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:20:04.082625174Z"} +2026/03/21 12:20:09 [detection_layer] {"stage_name":"detection_layer","events_processed":122,"events_dropped":0,"avg_latency_ms":16.06050166208613,"throughput_eps":0,"last_update":"2026-03-21T12:20:04.21087004Z"} +2026/03/21 12:20:09 [transform_engine] {"stage_name":"transform_engine","events_processed":122,"events_dropped":0,"avg_latency_ms":699.0400861394869,"throughput_eps":0,"last_update":"2026-03-21T12:20:04.209762109Z"} +2026/03/21 12:20:09 [log_collector] {"stage_name":"log_collector","events_processed":6569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1313.8,"last_update":"2026-03-21T12:20:04.068957039Z"} +2026/03/21 12:20:09 ───────────────────────────────────────────────── +2026/03/21 12:20:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:20:14 [log_collector] {"stage_name":"log_collector","events_processed":6578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1315.6,"last_update":"2026-03-21T12:20:09.068594914Z"} +2026/03/21 12:20:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":735.8,"last_update":"2026-03-21T12:20:09.068818162Z"} +2026/03/21 12:20:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:20:09.075151917Z"} +2026/03/21 12:20:14 [detection_layer] {"stage_name":"detection_layer","events_processed":122,"events_dropped":0,"avg_latency_ms":16.06050166208613,"throughput_eps":0,"last_update":"2026-03-21T12:20:09.210473129Z"} +2026/03/21 12:20:14 [transform_engine] {"stage_name":"transform_engine","events_processed":122,"events_dropped":0,"avg_latency_ms":699.0400861394869,"throughput_eps":0,"last_update":"2026-03-21T12:20:09.210490974Z"} +2026/03/21 12:20:14 ───────────────────────────────────────────────── +2026/03/21 12:20:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:20:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":736.8,"last_update":"2026-03-21T12:20:14.06930536Z"} +2026/03/21 12:20:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1476,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:20:14.078919024Z"} +2026/03/21 12:20:19 [detection_layer] {"stage_name":"detection_layer","events_processed":122,"events_dropped":0,"avg_latency_ms":16.06050166208613,"throughput_eps":0,"last_update":"2026-03-21T12:20:14.210155548Z"} +2026/03/21 12:20:19 [transform_engine] {"stage_name":"transform_engine","events_processed":122,"events_dropped":0,"avg_latency_ms":699.0400861394869,"throughput_eps":0,"last_update":"2026-03-21T12:20:14.210176317Z"} +2026/03/21 12:20:19 [log_collector] {"stage_name":"log_collector","events_processed":6580,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1316,"last_update":"2026-03-21T12:20:14.068715541Z"} +2026/03/21 12:20:19 ───────────────────────────────────────────────── +2026/03/21 12:20:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:20:24 [transform_engine] {"stage_name":"transform_engine","events_processed":123,"events_dropped":0,"avg_latency_ms":585.2509043115895,"throughput_eps":0,"last_update":"2026-03-21T12:20:19.340466363Z"} +2026/03/21 12:20:24 [log_collector] {"stage_name":"log_collector","events_processed":6715,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1343,"last_update":"2026-03-21T12:20:19.068832106Z"} +2026/03/21 12:20:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":737.8,"last_update":"2026-03-21T12:20:19.070059536Z"} +2026/03/21 12:20:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:20:19.077080477Z"} +2026/03/21 12:20:24 [detection_layer] {"stage_name":"detection_layer","events_processed":122,"events_dropped":0,"avg_latency_ms":16.06050166208613,"throughput_eps":0,"last_update":"2026-03-21T12:20:19.211207765Z"} +2026/03/21 12:20:24 ───────────────────────────────────────────────── +Saved state: 14 clusters, 6898 messages, reason: none +2026/03/21 12:20:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:20:29 [log_collector] {"stage_name":"log_collector","events_processed":6888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1377.6,"last_update":"2026-03-21T12:20:24.068815974Z"} +2026/03/21 12:20:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":738.8,"last_update":"2026-03-21T12:20:24.069042837Z"} +2026/03/21 12:20:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1480,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:20:24.075601073Z"} +2026/03/21 12:20:29 [detection_layer] {"stage_name":"detection_layer","events_processed":123,"events_dropped":0,"avg_latency_ms":15.424799529668903,"throughput_eps":0,"last_update":"2026-03-21T12:20:24.210123549Z"} +2026/03/21 12:20:29 [transform_engine] {"stage_name":"transform_engine","events_processed":123,"events_dropped":0,"avg_latency_ms":585.2509043115895,"throughput_eps":0,"last_update":"2026-03-21T12:20:24.210366824Z"} +2026/03/21 12:20:29 ───────────────────────────────────────────────── +2026/03/21 12:20:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:20:34 [detection_layer] {"stage_name":"detection_layer","events_processed":123,"events_dropped":0,"avg_latency_ms":15.424799529668903,"throughput_eps":0,"last_update":"2026-03-21T12:20:29.210704204Z"} +2026/03/21 12:20:34 [transform_engine] {"stage_name":"transform_engine","events_processed":123,"events_dropped":0,"avg_latency_ms":585.2509043115895,"throughput_eps":0,"last_update":"2026-03-21T12:20:29.210826829Z"} +2026/03/21 12:20:34 [log_collector] {"stage_name":"log_collector","events_processed":6932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1386.4,"last_update":"2026-03-21T12:20:29.068237109Z"} +2026/03/21 12:20:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":739.8,"last_update":"2026-03-21T12:20:29.068746103Z"} +2026/03/21 12:20:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1482,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:20:29.078315102Z"} +2026/03/21 12:20:34 ───────────────────────────────────────────────── +2026/03/21 12:20:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:20:39 [log_collector] {"stage_name":"log_collector","events_processed":6932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1386.4,"last_update":"2026-03-21T12:20:34.068112718Z"} +2026/03/21 12:20:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":740.8,"last_update":"2026-03-21T12:20:34.068673031Z"} +2026/03/21 12:20:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:20:34.077701495Z"} +2026/03/21 12:20:39 [detection_layer] {"stage_name":"detection_layer","events_processed":123,"events_dropped":0,"avg_latency_ms":15.424799529668903,"throughput_eps":0,"last_update":"2026-03-21T12:20:34.209876968Z"} +2026/03/21 12:20:39 [transform_engine] {"stage_name":"transform_engine","events_processed":123,"events_dropped":0,"avg_latency_ms":585.2509043115895,"throughput_eps":0,"last_update":"2026-03-21T12:20:34.209990927Z"} +2026/03/21 12:20:39 ───────────────────────────────────────────────── +2026/03/21 12:20:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:20:44 [detection_layer] {"stage_name":"detection_layer","events_processed":123,"events_dropped":0,"avg_latency_ms":15.424799529668903,"throughput_eps":0,"last_update":"2026-03-21T12:20:39.210865105Z"} +2026/03/21 12:20:44 [transform_engine] {"stage_name":"transform_engine","events_processed":123,"events_dropped":0,"avg_latency_ms":585.2509043115895,"throughput_eps":0,"last_update":"2026-03-21T12:20:39.209687411Z"} +2026/03/21 12:20:44 [log_collector] {"stage_name":"log_collector","events_processed":6932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1386.4,"last_update":"2026-03-21T12:20:39.068831979Z"} +2026/03/21 12:20:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":741.8,"last_update":"2026-03-21T12:20:39.069141271Z"} +2026/03/21 12:20:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1486,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:20:39.077577752Z"} +2026/03/21 12:20:44 ───────────────────────────────────────────────── +2026/03/21 12:20:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:20:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":742.8,"last_update":"2026-03-21T12:20:44.068525102Z"} +2026/03/21 12:20:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:20:44.077261426Z"} +2026/03/21 12:20:49 [detection_layer] {"stage_name":"detection_layer","events_processed":123,"events_dropped":0,"avg_latency_ms":15.424799529668903,"throughput_eps":0,"last_update":"2026-03-21T12:20:44.210512511Z"} +2026/03/21 12:20:49 [transform_engine] {"stage_name":"transform_engine","events_processed":123,"events_dropped":0,"avg_latency_ms":585.2509043115895,"throughput_eps":0,"last_update":"2026-03-21T12:20:44.210486541Z"} +2026/03/21 12:20:49 [log_collector] {"stage_name":"log_collector","events_processed":6932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1386.4,"last_update":"2026-03-21T12:20:44.068136308Z"} +2026/03/21 12:20:49 ───────────────────────────────────────────────── +2026/03/21 12:20:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:20:54 [detection_layer] {"stage_name":"detection_layer","events_processed":123,"events_dropped":0,"avg_latency_ms":15.424799529668903,"throughput_eps":0,"last_update":"2026-03-21T12:20:49.211007585Z"} +2026/03/21 12:20:54 [transform_engine] {"stage_name":"transform_engine","events_processed":124,"events_dropped":0,"avg_latency_ms":490.9729826492716,"throughput_eps":0,"last_update":"2026-03-21T12:20:49.32360467Z"} +2026/03/21 12:20:54 [log_collector] {"stage_name":"log_collector","events_processed":6932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1386.4,"last_update":"2026-03-21T12:20:49.068116414Z"} +2026/03/21 12:20:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":743.8,"last_update":"2026-03-21T12:20:49.068712616Z"} +2026/03/21 12:20:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1490,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:20:49.078611095Z"} +2026/03/21 12:20:54 ───────────────────────────────────────────────── +2026/03/21 12:20:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:20:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":744.8,"last_update":"2026-03-21T12:20:54.06917516Z"} +2026/03/21 12:20:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1490,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:20:54.0685951Z"} +2026/03/21 12:20:59 [detection_layer] {"stage_name":"detection_layer","events_processed":124,"events_dropped":0,"avg_latency_ms":16.098679623735123,"throughput_eps":0,"last_update":"2026-03-21T12:20:54.210902773Z"} +2026/03/21 12:20:59 [transform_engine] {"stage_name":"transform_engine","events_processed":124,"events_dropped":0,"avg_latency_ms":490.9729826492716,"throughput_eps":0,"last_update":"2026-03-21T12:20:54.209698548Z"} +2026/03/21 12:20:59 [log_collector] {"stage_name":"log_collector","events_processed":6932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1386.4,"last_update":"2026-03-21T12:20:54.068694981Z"} +2026/03/21 12:20:59 ───────────────────────────────────────────────── +2026/03/21 12:21:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:21:04 [log_collector] {"stage_name":"log_collector","events_processed":6932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1386.4,"last_update":"2026-03-21T12:21:04.06817646Z"} +2026/03/21 12:21:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":745.8,"last_update":"2026-03-21T12:20:59.068879988Z"} +2026/03/21 12:21:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:20:59.07594811Z"} +2026/03/21 12:21:04 [detection_layer] {"stage_name":"detection_layer","events_processed":124,"events_dropped":0,"avg_latency_ms":16.098679623735123,"throughput_eps":0,"last_update":"2026-03-21T12:20:59.210260288Z"} +2026/03/21 12:21:04 [transform_engine] {"stage_name":"transform_engine","events_processed":124,"events_dropped":0,"avg_latency_ms":490.9729826492716,"throughput_eps":0,"last_update":"2026-03-21T12:20:59.21027227Z"} +2026/03/21 12:21:04 ───────────────────────────────────────────────── +2026/03/21 12:21:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:21:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":746.8,"last_update":"2026-03-21T12:21:04.068712516Z"} +2026/03/21 12:21:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1496,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:21:04.079111654Z"} +2026/03/21 12:21:09 [detection_layer] {"stage_name":"detection_layer","events_processed":124,"events_dropped":0,"avg_latency_ms":16.098679623735123,"throughput_eps":0,"last_update":"2026-03-21T12:21:04.210327366Z"} +2026/03/21 12:21:09 [transform_engine] {"stage_name":"transform_engine","events_processed":124,"events_dropped":0,"avg_latency_ms":490.9729826492716,"throughput_eps":0,"last_update":"2026-03-21T12:21:04.21037659Z"} +2026/03/21 12:21:09 [log_collector] {"stage_name":"log_collector","events_processed":6932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1386.4,"last_update":"2026-03-21T12:21:04.06817646Z"} +2026/03/21 12:21:09 ───────────────────────────────────────────────── +2026/03/21 12:21:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:21:14 [log_collector] {"stage_name":"log_collector","events_processed":6932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1386.4,"last_update":"2026-03-21T12:21:09.068638696Z"} +2026/03/21 12:21:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":747.8,"last_update":"2026-03-21T12:21:09.069201774Z"} +2026/03/21 12:21:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1498,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:21:09.080240416Z"} +2026/03/21 12:21:14 [detection_layer] {"stage_name":"detection_layer","events_processed":124,"events_dropped":0,"avg_latency_ms":16.098679623735123,"throughput_eps":0,"last_update":"2026-03-21T12:21:09.210547559Z"} +2026/03/21 12:21:14 [transform_engine] {"stage_name":"transform_engine","events_processed":124,"events_dropped":0,"avg_latency_ms":490.9729826492716,"throughput_eps":0,"last_update":"2026-03-21T12:21:09.210475901Z"} +2026/03/21 12:21:14 ───────────────────────────────────────────────── +2026/03/21 12:21:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:21:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":748.8,"last_update":"2026-03-21T12:21:14.069674093Z"} +2026/03/21 12:21:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:21:14.079885172Z"} +2026/03/21 12:21:19 [detection_layer] {"stage_name":"detection_layer","events_processed":124,"events_dropped":0,"avg_latency_ms":16.098679623735123,"throughput_eps":0,"last_update":"2026-03-21T12:21:14.210211091Z"} +2026/03/21 12:21:19 [transform_engine] {"stage_name":"transform_engine","events_processed":124,"events_dropped":0,"avg_latency_ms":490.9729826492716,"throughput_eps":0,"last_update":"2026-03-21T12:21:14.210436321Z"} +2026/03/21 12:21:19 [log_collector] {"stage_name":"log_collector","events_processed":6932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1386.4,"last_update":"2026-03-21T12:21:19.068195412Z"} +2026/03/21 12:21:19 ───────────────────────────────────────────────── +2026/03/21 12:21:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:21:24 [log_collector] {"stage_name":"log_collector","events_processed":6932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1386.4,"last_update":"2026-03-21T12:21:19.068195412Z"} +2026/03/21 12:21:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":749.8,"last_update":"2026-03-21T12:21:19.068953534Z"} +2026/03/21 12:21:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:21:19.077414261Z"} +2026/03/21 12:21:24 [detection_layer] {"stage_name":"detection_layer","events_processed":124,"events_dropped":0,"avg_latency_ms":16.098679623735123,"throughput_eps":0,"last_update":"2026-03-21T12:21:19.210872827Z"} +2026/03/21 12:21:24 [transform_engine] {"stage_name":"transform_engine","events_processed":125,"events_dropped":0,"avg_latency_ms":405.94812251941727,"throughput_eps":0,"last_update":"2026-03-21T12:21:19.275524939Z"} +2026/03/21 12:21:24 ───────────────────────────────────────────────── +2026/03/21 12:21:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:21:29 [log_collector] {"stage_name":"log_collector","events_processed":6932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1386.4,"last_update":"2026-03-21T12:21:24.068122806Z"} +2026/03/21 12:21:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":750.8,"last_update":"2026-03-21T12:21:24.068742402Z"} +2026/03/21 12:21:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:21:24.077593107Z"} +2026/03/21 12:21:29 [detection_layer] {"stage_name":"detection_layer","events_processed":125,"events_dropped":0,"avg_latency_ms":16.8946894989881,"throughput_eps":0,"last_update":"2026-03-21T12:21:24.209877727Z"} +2026/03/21 12:21:29 [transform_engine] {"stage_name":"transform_engine","events_processed":125,"events_dropped":0,"avg_latency_ms":405.94812251941727,"throughput_eps":0,"last_update":"2026-03-21T12:21:24.209793214Z"} +2026/03/21 12:21:29 ───────────────────────────────────────────────── +2026/03/21 12:21:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:21:34 [log_collector] {"stage_name":"log_collector","events_processed":6932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1386.4,"last_update":"2026-03-21T12:21:29.068070831Z"} +2026/03/21 12:21:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":751.8,"last_update":"2026-03-21T12:21:29.068287817Z"} +2026/03/21 12:21:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1506,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:21:29.077068467Z"} +2026/03/21 12:21:34 [detection_layer] {"stage_name":"detection_layer","events_processed":125,"events_dropped":0,"avg_latency_ms":16.8946894989881,"throughput_eps":0,"last_update":"2026-03-21T12:21:29.210452032Z"} +2026/03/21 12:21:34 [transform_engine] {"stage_name":"transform_engine","events_processed":125,"events_dropped":0,"avg_latency_ms":405.94812251941727,"throughput_eps":0,"last_update":"2026-03-21T12:21:29.21046736Z"} +2026/03/21 12:21:34 ───────────────────────────────────────────────── +2026/03/21 12:21:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:21:39 [detection_layer] {"stage_name":"detection_layer","events_processed":125,"events_dropped":0,"avg_latency_ms":16.8946894989881,"throughput_eps":0,"last_update":"2026-03-21T12:21:34.210223513Z"} +2026/03/21 12:21:39 [transform_engine] {"stage_name":"transform_engine","events_processed":125,"events_dropped":0,"avg_latency_ms":405.94812251941727,"throughput_eps":0,"last_update":"2026-03-21T12:21:34.210235256Z"} +2026/03/21 12:21:39 [log_collector] {"stage_name":"log_collector","events_processed":6932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1386.4,"last_update":"2026-03-21T12:21:34.068108814Z"} +2026/03/21 12:21:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":752.8,"last_update":"2026-03-21T12:21:34.068775511Z"} +2026/03/21 12:21:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:21:34.077986875Z"} +2026/03/21 12:21:39 ───────────────────────────────────────────────── +2026/03/21 12:21:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:21:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:21:39.077692652Z"} +2026/03/21 12:21:44 [detection_layer] {"stage_name":"detection_layer","events_processed":125,"events_dropped":0,"avg_latency_ms":16.8946894989881,"throughput_eps":0,"last_update":"2026-03-21T12:21:39.210006409Z"} +2026/03/21 12:21:44 [transform_engine] {"stage_name":"transform_engine","events_processed":125,"events_dropped":0,"avg_latency_ms":405.94812251941727,"throughput_eps":0,"last_update":"2026-03-21T12:21:39.210018562Z"} +2026/03/21 12:21:44 [log_collector] {"stage_name":"log_collector","events_processed":6932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1386.4,"last_update":"2026-03-21T12:21:39.068602669Z"} +2026/03/21 12:21:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":753.8,"last_update":"2026-03-21T12:21:39.068976055Z"} +2026/03/21 12:21:44 ───────────────────────────────────────────────── +2026/03/21 12:21:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:21:49 [transform_engine] {"stage_name":"transform_engine","events_processed":125,"events_dropped":0,"avg_latency_ms":405.94812251941727,"throughput_eps":0,"last_update":"2026-03-21T12:21:44.209643226Z"} +2026/03/21 12:21:49 [log_collector] {"stage_name":"log_collector","events_processed":6932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1386.4,"last_update":"2026-03-21T12:21:44.068864874Z"} +2026/03/21 12:21:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":754.8,"last_update":"2026-03-21T12:21:44.069063915Z"} +2026/03/21 12:21:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1512,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:21:44.077480257Z"} +2026/03/21 12:21:49 [detection_layer] {"stage_name":"detection_layer","events_processed":125,"events_dropped":0,"avg_latency_ms":16.8946894989881,"throughput_eps":0,"last_update":"2026-03-21T12:21:44.210771196Z"} +2026/03/21 12:21:49 ───────────────────────────────────────────────── +2026/03/21 12:21:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:21:54 [detection_layer] {"stage_name":"detection_layer","events_processed":125,"events_dropped":0,"avg_latency_ms":16.8946894989881,"throughput_eps":0,"last_update":"2026-03-21T12:21:49.210327162Z"} +2026/03/21 12:21:54 [transform_engine] {"stage_name":"transform_engine","events_processed":126,"events_dropped":0,"avg_latency_ms":338.0691966155339,"throughput_eps":0,"last_update":"2026-03-21T12:21:49.276894541Z"} +2026/03/21 12:21:54 [log_collector] {"stage_name":"log_collector","events_processed":6932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1386.4,"last_update":"2026-03-21T12:21:49.068103752Z"} +2026/03/21 12:21:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":755.8,"last_update":"2026-03-21T12:21:49.06905345Z"} +2026/03/21 12:21:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:21:49.078038211Z"} +2026/03/21 12:21:54 ───────────────────────────────────────────────── +2026/03/21 12:21:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:21:59 [transform_engine] {"stage_name":"transform_engine","events_processed":126,"events_dropped":0,"avg_latency_ms":338.0691966155339,"throughput_eps":0,"last_update":"2026-03-21T12:21:54.210576336Z"} +2026/03/21 12:21:59 [log_collector] {"stage_name":"log_collector","events_processed":6932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1386.4,"last_update":"2026-03-21T12:21:54.069024963Z"} +2026/03/21 12:21:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":756.8,"last_update":"2026-03-21T12:21:54.06909165Z"} +2026/03/21 12:21:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:21:54.078171604Z"} +2026/03/21 12:21:59 [detection_layer] {"stage_name":"detection_layer","events_processed":126,"events_dropped":0,"avg_latency_ms":17.160030399190482,"throughput_eps":0,"last_update":"2026-03-21T12:21:54.21055227Z"} +2026/03/21 12:21:59 ───────────────────────────────────────────────── +Saved state: 14 clusters, 6933 messages, reason: none +2026/03/21 12:22:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:22:04 [detection_layer] {"stage_name":"detection_layer","events_processed":126,"events_dropped":0,"avg_latency_ms":17.160030399190482,"throughput_eps":0,"last_update":"2026-03-21T12:21:59.210556888Z"} +2026/03/21 12:22:04 [transform_engine] {"stage_name":"transform_engine","events_processed":126,"events_dropped":0,"avg_latency_ms":338.0691966155339,"throughput_eps":0,"last_update":"2026-03-21T12:21:59.210572308Z"} +2026/03/21 12:22:04 [log_collector] {"stage_name":"log_collector","events_processed":6932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1386.4,"last_update":"2026-03-21T12:21:59.06810485Z"} +2026/03/21 12:22:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":757.8,"last_update":"2026-03-21T12:21:59.068754603Z"} +2026/03/21 12:22:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:21:59.077136911Z"} +2026/03/21 12:22:04 ───────────────────────────────────────────────── +2026/03/21 12:22:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:22:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":758.8,"last_update":"2026-03-21T12:22:04.068772908Z"} +2026/03/21 12:22:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1520,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:22:04.079886175Z"} +2026/03/21 12:22:09 [detection_layer] {"stage_name":"detection_layer","events_processed":126,"events_dropped":0,"avg_latency_ms":17.160030399190482,"throughput_eps":0,"last_update":"2026-03-21T12:22:04.21011865Z"} +2026/03/21 12:22:09 [transform_engine] {"stage_name":"transform_engine","events_processed":126,"events_dropped":0,"avg_latency_ms":338.0691966155339,"throughput_eps":0,"last_update":"2026-03-21T12:22:04.210129441Z"} +2026/03/21 12:22:09 [log_collector] {"stage_name":"log_collector","events_processed":6935,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1387,"last_update":"2026-03-21T12:22:04.068575221Z"} +2026/03/21 12:22:09 ───────────────────────────────────────────────── +2026/03/21 12:22:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:22:14 [log_collector] {"stage_name":"log_collector","events_processed":6935,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1387,"last_update":"2026-03-21T12:22:09.068706113Z"} +2026/03/21 12:22:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":759.8,"last_update":"2026-03-21T12:22:09.069056774Z"} +2026/03/21 12:22:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1522,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:22:09.075096798Z"} +2026/03/21 12:22:14 [detection_layer] {"stage_name":"detection_layer","events_processed":126,"events_dropped":0,"avg_latency_ms":17.160030399190482,"throughput_eps":0,"last_update":"2026-03-21T12:22:09.210369042Z"} +2026/03/21 12:22:14 [transform_engine] {"stage_name":"transform_engine","events_processed":126,"events_dropped":0,"avg_latency_ms":338.0691966155339,"throughput_eps":0,"last_update":"2026-03-21T12:22:09.210377839Z"} +2026/03/21 12:22:14 ───────────────────────────────────────────────── +2026/03/21 12:22:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:22:19 [log_collector] {"stage_name":"log_collector","events_processed":6953,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1390.6,"last_update":"2026-03-21T12:22:14.068916449Z"} +2026/03/21 12:22:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":760.8,"last_update":"2026-03-21T12:22:14.068909715Z"} +2026/03/21 12:22:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:22:14.076534713Z"} +2026/03/21 12:22:19 [detection_layer] {"stage_name":"detection_layer","events_processed":126,"events_dropped":0,"avg_latency_ms":17.160030399190482,"throughput_eps":0,"last_update":"2026-03-21T12:22:14.21080467Z"} +2026/03/21 12:22:19 [transform_engine] {"stage_name":"transform_engine","events_processed":126,"events_dropped":0,"avg_latency_ms":338.0691966155339,"throughput_eps":0,"last_update":"2026-03-21T12:22:14.209703732Z"} +2026/03/21 12:22:19 ───────────────────────────────────────────────── +2026/03/21 12:22:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:22:24 [log_collector] {"stage_name":"log_collector","events_processed":6962,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1392.4,"last_update":"2026-03-21T12:22:19.068559999Z"} +2026/03/21 12:22:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":761.8,"last_update":"2026-03-21T12:22:19.068869571Z"} +2026/03/21 12:22:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1526,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:22:19.077959544Z"} +2026/03/21 12:22:24 [detection_layer] {"stage_name":"detection_layer","events_processed":126,"events_dropped":0,"avg_latency_ms":17.160030399190482,"throughput_eps":0,"last_update":"2026-03-21T12:22:19.210233689Z"} +2026/03/21 12:22:24 [transform_engine] {"stage_name":"transform_engine","events_processed":127,"events_dropped":0,"avg_latency_ms":287.8125130924271,"throughput_eps":0,"last_update":"2026-03-21T12:22:19.297033446Z"} +2026/03/21 12:22:24 ───────────────────────────────────────────────── +2026/03/21 12:22:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:22:29 [log_collector] {"stage_name":"log_collector","events_processed":6976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1395.2,"last_update":"2026-03-21T12:22:24.068705611Z"} +2026/03/21 12:22:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":762.8,"last_update":"2026-03-21T12:22:24.069003141Z"} +2026/03/21 12:22:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:22:24.077420205Z"} +2026/03/21 12:22:29 [detection_layer] {"stage_name":"detection_layer","events_processed":127,"events_dropped":0,"avg_latency_ms":17.264797519352385,"throughput_eps":0,"last_update":"2026-03-21T12:22:24.210830978Z"} +2026/03/21 12:22:29 [transform_engine] {"stage_name":"transform_engine","events_processed":127,"events_dropped":0,"avg_latency_ms":287.8125130924271,"throughput_eps":0,"last_update":"2026-03-21T12:22:24.209648525Z"} +2026/03/21 12:22:29 ───────────────────────────────────────────────── +2026/03/21 12:22:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:22:34 [transform_engine] {"stage_name":"transform_engine","events_processed":127,"events_dropped":0,"avg_latency_ms":287.8125130924271,"throughput_eps":0,"last_update":"2026-03-21T12:22:29.210740711Z"} +2026/03/21 12:22:34 [log_collector] {"stage_name":"log_collector","events_processed":6976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1395.2,"last_update":"2026-03-21T12:22:29.068135655Z"} +2026/03/21 12:22:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":763.8,"last_update":"2026-03-21T12:22:29.068615033Z"} +2026/03/21 12:22:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:22:29.078431116Z"} +2026/03/21 12:22:34 [detection_layer] {"stage_name":"detection_layer","events_processed":127,"events_dropped":0,"avg_latency_ms":17.264797519352385,"throughput_eps":0,"last_update":"2026-03-21T12:22:29.210634178Z"} +2026/03/21 12:22:34 ───────────────────────────────────────────────── +2026/03/21 12:22:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:22:39 [log_collector] {"stage_name":"log_collector","events_processed":6976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1395.2,"last_update":"2026-03-21T12:22:34.068723597Z"} +2026/03/21 12:22:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":764.8,"last_update":"2026-03-21T12:22:34.069094407Z"} +2026/03/21 12:22:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1532,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:22:34.078415942Z"} +2026/03/21 12:22:39 [detection_layer] {"stage_name":"detection_layer","events_processed":127,"events_dropped":0,"avg_latency_ms":17.264797519352385,"throughput_eps":0,"last_update":"2026-03-21T12:22:34.210755355Z"} +2026/03/21 12:22:39 [transform_engine] {"stage_name":"transform_engine","events_processed":127,"events_dropped":0,"avg_latency_ms":287.8125130924271,"throughput_eps":0,"last_update":"2026-03-21T12:22:34.210652649Z"} +2026/03/21 12:22:39 ───────────────────────────────────────────────── +2026/03/21 12:22:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:22:44 [log_collector] {"stage_name":"log_collector","events_processed":6976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1395.2,"last_update":"2026-03-21T12:22:39.069066818Z"} +2026/03/21 12:22:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":765.8,"last_update":"2026-03-21T12:22:39.069427589Z"} +2026/03/21 12:22:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:22:39.078038213Z"} +2026/03/21 12:22:44 [detection_layer] {"stage_name":"detection_layer","events_processed":127,"events_dropped":0,"avg_latency_ms":17.264797519352385,"throughput_eps":0,"last_update":"2026-03-21T12:22:39.210396974Z"} +2026/03/21 12:22:44 [transform_engine] {"stage_name":"transform_engine","events_processed":127,"events_dropped":0,"avg_latency_ms":287.8125130924271,"throughput_eps":0,"last_update":"2026-03-21T12:22:39.210272605Z"} +2026/03/21 12:22:44 ───────────────────────────────────────────────── +2026/03/21 12:22:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:22:49 [log_collector] {"stage_name":"log_collector","events_processed":6976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1395.2,"last_update":"2026-03-21T12:22:44.068103186Z"} +2026/03/21 12:22:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":766.8,"last_update":"2026-03-21T12:22:44.068433609Z"} +2026/03/21 12:22:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1536,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:22:44.079339729Z"} +2026/03/21 12:22:49 [detection_layer] {"stage_name":"detection_layer","events_processed":127,"events_dropped":0,"avg_latency_ms":17.264797519352385,"throughput_eps":0,"last_update":"2026-03-21T12:22:44.210677895Z"} +2026/03/21 12:22:49 [transform_engine] {"stage_name":"transform_engine","events_processed":127,"events_dropped":0,"avg_latency_ms":287.8125130924271,"throughput_eps":0,"last_update":"2026-03-21T12:22:44.210719585Z"} +2026/03/21 12:22:49 ───────────────────────────────────────────────── +2026/03/21 12:22:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:22:54 [detection_layer] {"stage_name":"detection_layer","events_processed":127,"events_dropped":0,"avg_latency_ms":17.264797519352385,"throughput_eps":0,"last_update":"2026-03-21T12:22:49.210697145Z"} +2026/03/21 12:22:54 [transform_engine] {"stage_name":"transform_engine","events_processed":128,"events_dropped":0,"avg_latency_ms":252.32110767394167,"throughput_eps":0,"last_update":"2026-03-21T12:22:49.321066448Z"} +2026/03/21 12:22:54 [log_collector] {"stage_name":"log_collector","events_processed":6976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1395.2,"last_update":"2026-03-21T12:22:49.068097768Z"} +2026/03/21 12:22:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":767.8,"last_update":"2026-03-21T12:22:49.068322489Z"} +2026/03/21 12:22:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:22:49.077400249Z"} +2026/03/21 12:22:54 ───────────────────────────────────────────────── +2026/03/21 12:22:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:22:59 [detection_layer] {"stage_name":"detection_layer","events_processed":128,"events_dropped":0,"avg_latency_ms":17.78920081548191,"throughput_eps":0,"last_update":"2026-03-21T12:22:54.210230628Z"} +2026/03/21 12:22:59 [transform_engine] {"stage_name":"transform_engine","events_processed":128,"events_dropped":0,"avg_latency_ms":252.32110767394167,"throughput_eps":0,"last_update":"2026-03-21T12:22:54.210281755Z"} +2026/03/21 12:22:59 [log_collector] {"stage_name":"log_collector","events_processed":6976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1395.2,"last_update":"2026-03-21T12:22:54.068759932Z"} +2026/03/21 12:22:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":768.8,"last_update":"2026-03-21T12:22:54.069045899Z"} +2026/03/21 12:22:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1540,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:22:54.077987698Z"} +2026/03/21 12:22:59 ───────────────────────────────────────────────── +2026/03/21 12:23:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:23:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1542,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:22:59.078344623Z"} +2026/03/21 12:23:04 [detection_layer] {"stage_name":"detection_layer","events_processed":128,"events_dropped":0,"avg_latency_ms":17.78920081548191,"throughput_eps":0,"last_update":"2026-03-21T12:22:59.210597512Z"} +2026/03/21 12:23:04 [transform_engine] {"stage_name":"transform_engine","events_processed":128,"events_dropped":0,"avg_latency_ms":252.32110767394167,"throughput_eps":0,"last_update":"2026-03-21T12:22:59.2104918Z"} +2026/03/21 12:23:04 [log_collector] {"stage_name":"log_collector","events_processed":6976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1395.2,"last_update":"2026-03-21T12:22:59.068090501Z"} +2026/03/21 12:23:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":769.8,"last_update":"2026-03-21T12:22:59.06869059Z"} +2026/03/21 12:23:04 ───────────────────────────────────────────────── +2026/03/21 12:23:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:23:09 [log_collector] {"stage_name":"log_collector","events_processed":6976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1395.2,"last_update":"2026-03-21T12:23:04.068678128Z"} +2026/03/21 12:23:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":770.8,"last_update":"2026-03-21T12:23:04.06894089Z"} +2026/03/21 12:23:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:23:04.077674211Z"} +2026/03/21 12:23:09 [detection_layer] {"stage_name":"detection_layer","events_processed":128,"events_dropped":0,"avg_latency_ms":17.78920081548191,"throughput_eps":0,"last_update":"2026-03-21T12:23:04.209997115Z"} +2026/03/21 12:23:09 [transform_engine] {"stage_name":"transform_engine","events_processed":128,"events_dropped":0,"avg_latency_ms":252.32110767394167,"throughput_eps":0,"last_update":"2026-03-21T12:23:04.210099371Z"} +2026/03/21 12:23:09 ───────────────────────────────────────────────── +2026/03/21 12:23:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:23:14 [log_collector] {"stage_name":"log_collector","events_processed":6976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1395.2,"last_update":"2026-03-21T12:23:09.068659955Z"} +2026/03/21 12:23:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":771.8,"last_update":"2026-03-21T12:23:09.06903366Z"} +2026/03/21 12:23:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:23:09.07914586Z"} +2026/03/21 12:23:14 [detection_layer] {"stage_name":"detection_layer","events_processed":128,"events_dropped":0,"avg_latency_ms":17.78920081548191,"throughput_eps":0,"last_update":"2026-03-21T12:23:09.210558402Z"} +2026/03/21 12:23:14 [transform_engine] {"stage_name":"transform_engine","events_processed":128,"events_dropped":0,"avg_latency_ms":252.32110767394167,"throughput_eps":0,"last_update":"2026-03-21T12:23:09.21058903Z"} +2026/03/21 12:23:14 ───────────────────────────────────────────────── +2026/03/21 12:23:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:23:19 [log_collector] {"stage_name":"log_collector","events_processed":6976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1395.2,"last_update":"2026-03-21T12:23:14.068891207Z"} +2026/03/21 12:23:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":772.8,"last_update":"2026-03-21T12:23:14.069052235Z"} +2026/03/21 12:23:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:23:14.078544858Z"} +2026/03/21 12:23:19 [detection_layer] {"stage_name":"detection_layer","events_processed":128,"events_dropped":0,"avg_latency_ms":17.78920081548191,"throughput_eps":0,"last_update":"2026-03-21T12:23:14.20991522Z"} +2026/03/21 12:23:19 [transform_engine] {"stage_name":"transform_engine","events_processed":128,"events_dropped":0,"avg_latency_ms":252.32110767394167,"throughput_eps":0,"last_update":"2026-03-21T12:23:14.209792364Z"} +2026/03/21 12:23:19 ───────────────────────────────────────────────── +2026/03/21 12:23:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:23:24 [log_collector] {"stage_name":"log_collector","events_processed":6976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1395.2,"last_update":"2026-03-21T12:23:19.068766496Z"} +2026/03/21 12:23:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":773.8,"last_update":"2026-03-21T12:23:19.069070478Z"} +2026/03/21 12:23:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:23:19.077818797Z"} +2026/03/21 12:23:24 [detection_layer] {"stage_name":"detection_layer","events_processed":128,"events_dropped":0,"avg_latency_ms":17.78920081548191,"throughput_eps":0,"last_update":"2026-03-21T12:23:19.210390518Z"} +2026/03/21 12:23:24 [transform_engine] {"stage_name":"transform_engine","events_processed":128,"events_dropped":0,"avg_latency_ms":252.32110767394167,"throughput_eps":0,"last_update":"2026-03-21T12:23:19.210217899Z"} +2026/03/21 12:23:24 ───────────────────────────────────────────────── +Saved state: 14 clusters, 6977 messages, reason: none +2026/03/21 12:23:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:23:29 [transform_engine] {"stage_name":"transform_engine","events_processed":129,"events_dropped":0,"avg_latency_ms":215.40780373915334,"throughput_eps":0,"last_update":"2026-03-21T12:23:24.210698436Z"} +2026/03/21 12:23:29 [log_collector] {"stage_name":"log_collector","events_processed":6976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1395.2,"last_update":"2026-03-21T12:23:24.068857718Z"} +2026/03/21 12:23:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":774.8,"last_update":"2026-03-21T12:23:24.069130971Z"} +2026/03/21 12:23:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:23:24.078795414Z"} +2026/03/21 12:23:29 [detection_layer] {"stage_name":"detection_layer","events_processed":129,"events_dropped":0,"avg_latency_ms":18.39756305238553,"throughput_eps":0,"last_update":"2026-03-21T12:23:24.210678097Z"} +2026/03/21 12:23:29 ───────────────────────────────────────────────── +2026/03/21 12:23:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:23:34 [log_collector] {"stage_name":"log_collector","events_processed":6981,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1396.2,"last_update":"2026-03-21T12:23:29.068660746Z"} +2026/03/21 12:23:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":775.8,"last_update":"2026-03-21T12:23:29.068904593Z"} +2026/03/21 12:23:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:23:29.075216487Z"} +2026/03/21 12:23:34 [detection_layer] {"stage_name":"detection_layer","events_processed":129,"events_dropped":0,"avg_latency_ms":18.39756305238553,"throughput_eps":0,"last_update":"2026-03-21T12:23:29.21044173Z"} +2026/03/21 12:23:34 [transform_engine] {"stage_name":"transform_engine","events_processed":129,"events_dropped":0,"avg_latency_ms":215.40780373915334,"throughput_eps":0,"last_update":"2026-03-21T12:23:29.210472519Z"} +2026/03/21 12:23:34 ───────────────────────────────────────────────── +2026/03/21 12:23:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:23:39 [transform_engine] {"stage_name":"transform_engine","events_processed":129,"events_dropped":0,"avg_latency_ms":215.40780373915334,"throughput_eps":0,"last_update":"2026-03-21T12:23:34.209680265Z"} +2026/03/21 12:23:39 [log_collector] {"stage_name":"log_collector","events_processed":6981,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1396.2,"last_update":"2026-03-21T12:23:34.06851479Z"} +2026/03/21 12:23:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":776.8,"last_update":"2026-03-21T12:23:34.068773645Z"} +2026/03/21 12:23:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:23:34.075498771Z"} +2026/03/21 12:23:39 [detection_layer] {"stage_name":"detection_layer","events_processed":129,"events_dropped":0,"avg_latency_ms":18.39756305238553,"throughput_eps":0,"last_update":"2026-03-21T12:23:34.210772417Z"} +2026/03/21 12:23:39 ───────────────────────────────────────────────── +2026/03/21 12:23:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:23:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":777.8,"last_update":"2026-03-21T12:23:39.069643662Z"} +2026/03/21 12:23:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:23:39.080384456Z"} +2026/03/21 12:23:44 [detection_layer] {"stage_name":"detection_layer","events_processed":129,"events_dropped":0,"avg_latency_ms":18.39756305238553,"throughput_eps":0,"last_update":"2026-03-21T12:23:39.210581763Z"} +2026/03/21 12:23:44 [transform_engine] {"stage_name":"transform_engine","events_processed":129,"events_dropped":0,"avg_latency_ms":215.40780373915334,"throughput_eps":0,"last_update":"2026-03-21T12:23:39.210602954Z"} +2026/03/21 12:23:44 [log_collector] {"stage_name":"log_collector","events_processed":6981,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1396.2,"last_update":"2026-03-21T12:23:39.069359418Z"} +2026/03/21 12:23:44 ───────────────────────────────────────────────── +2026/03/21 12:23:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:23:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1560,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:23:44.075837108Z"} +2026/03/21 12:23:49 [detection_layer] {"stage_name":"detection_layer","events_processed":129,"events_dropped":0,"avg_latency_ms":18.39756305238553,"throughput_eps":0,"last_update":"2026-03-21T12:23:44.21006902Z"} +2026/03/21 12:23:49 [transform_engine] {"stage_name":"transform_engine","events_processed":129,"events_dropped":0,"avg_latency_ms":215.40780373915334,"throughput_eps":0,"last_update":"2026-03-21T12:23:44.210049783Z"} +2026/03/21 12:23:49 [log_collector] {"stage_name":"log_collector","events_processed":6981,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1396.2,"last_update":"2026-03-21T12:23:44.068528906Z"} +2026/03/21 12:23:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":779.8,"last_update":"2026-03-21T12:23:49.068547328Z"} +2026/03/21 12:23:49 ───────────────────────────────────────────────── +2026/03/21 12:23:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:23:54 [transform_engine] {"stage_name":"transform_engine","events_processed":129,"events_dropped":0,"avg_latency_ms":215.40780373915334,"throughput_eps":0,"last_update":"2026-03-21T12:23:44.210049783Z"} +2026/03/21 12:23:54 [log_collector] {"stage_name":"log_collector","events_processed":6981,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1396.2,"last_update":"2026-03-21T12:23:49.068572125Z"} +2026/03/21 12:23:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":779.8,"last_update":"2026-03-21T12:23:49.068547328Z"} +2026/03/21 12:23:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:23:49.077585782Z"} +2026/03/21 12:23:54 [detection_layer] {"stage_name":"detection_layer","events_processed":129,"events_dropped":0,"avg_latency_ms":18.39756305238553,"throughput_eps":0,"last_update":"2026-03-21T12:23:49.210890059Z"} +2026/03/21 12:23:54 ───────────────────────────────────────────────── +2026/03/21 12:23:56 [ANOMALY] time=2026-03-21T12:23:56Z score=0.8933 method=SEAD details=MAD!:w=0.31,s=0.93 RRCF-fast!:w=0.17,s=0.93 RRCF-mid!:w=0.16,s=0.91 RRCF-slow!:w=0.15,s=0.91 COPOD!:w=0.20,s=0.78 +2026/03/21 12:23:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:23:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":780.8,"last_update":"2026-03-21T12:23:54.070584822Z"} +2026/03/21 12:23:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:23:54.078456943Z"} +2026/03/21 12:23:59 [detection_layer] {"stage_name":"detection_layer","events_processed":129,"events_dropped":0,"avg_latency_ms":18.39756305238553,"throughput_eps":0,"last_update":"2026-03-21T12:23:54.210657358Z"} +2026/03/21 12:23:59 [transform_engine] {"stage_name":"transform_engine","events_processed":130,"events_dropped":0,"avg_latency_ms":1684.9339747913227,"throughput_eps":0,"last_update":"2026-03-21T12:23:56.772763858Z"} +2026/03/21 12:23:59 [log_collector] {"stage_name":"log_collector","events_processed":6981,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1396.2,"last_update":"2026-03-21T12:23:54.069022942Z"} +2026/03/21 12:23:59 ───────────────────────────────────────────────── +2026/03/21 12:24:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:24:04 [log_collector] {"stage_name":"log_collector","events_processed":6981,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1396.2,"last_update":"2026-03-21T12:23:59.068477829Z"} +2026/03/21 12:24:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":781.8,"last_update":"2026-03-21T12:23:59.06869288Z"} +2026/03/21 12:24:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1566,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:23:59.078472585Z"} +2026/03/21 12:24:04 [detection_layer] {"stage_name":"detection_layer","events_processed":130,"events_dropped":0,"avg_latency_ms":17.079000641908426,"throughput_eps":0,"last_update":"2026-03-21T12:23:59.210671967Z"} +2026/03/21 12:24:04 [transform_engine] {"stage_name":"transform_engine","events_processed":130,"events_dropped":0,"avg_latency_ms":1684.9339747913227,"throughput_eps":0,"last_update":"2026-03-21T12:23:59.210682097Z"} +2026/03/21 12:24:04 ───────────────────────────────────────────────── +2026/03/21 12:24:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:24:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:24:04.07496645Z"} +2026/03/21 12:24:09 [detection_layer] {"stage_name":"detection_layer","events_processed":130,"events_dropped":0,"avg_latency_ms":17.079000641908426,"throughput_eps":0,"last_update":"2026-03-21T12:24:04.210223016Z"} +2026/03/21 12:24:09 [transform_engine] {"stage_name":"transform_engine","events_processed":130,"events_dropped":0,"avg_latency_ms":1684.9339747913227,"throughput_eps":0,"last_update":"2026-03-21T12:24:04.210234739Z"} +2026/03/21 12:24:09 [log_collector] {"stage_name":"log_collector","events_processed":6981,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1396.2,"last_update":"2026-03-21T12:24:04.068146923Z"} +2026/03/21 12:24:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":782.8,"last_update":"2026-03-21T12:24:04.068455734Z"} +2026/03/21 12:24:09 ───────────────────────────────────────────────── +2026/03/21 12:24:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:24:14 [log_collector] {"stage_name":"log_collector","events_processed":6990,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1398,"last_update":"2026-03-21T12:24:09.068130617Z"} +2026/03/21 12:24:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":783.8,"last_update":"2026-03-21T12:24:09.068421844Z"} +2026/03/21 12:24:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1570,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:24:09.07469802Z"} +2026/03/21 12:24:14 [detection_layer] {"stage_name":"detection_layer","events_processed":130,"events_dropped":0,"avg_latency_ms":17.079000641908426,"throughput_eps":0,"last_update":"2026-03-21T12:24:09.210110305Z"} +2026/03/21 12:24:14 [transform_engine] {"stage_name":"transform_engine","events_processed":130,"events_dropped":0,"avg_latency_ms":1684.9339747913227,"throughput_eps":0,"last_update":"2026-03-21T12:24:09.210126385Z"} +2026/03/21 12:24:14 ───────────────────────────────────────────────── +2026/03/21 12:24:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:24:19 [log_collector] {"stage_name":"log_collector","events_processed":6992,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1398.4,"last_update":"2026-03-21T12:24:14.068683686Z"} +2026/03/21 12:24:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":784.8,"last_update":"2026-03-21T12:24:14.068960696Z"} +2026/03/21 12:24:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1572,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:24:14.07855813Z"} +2026/03/21 12:24:19 [detection_layer] {"stage_name":"detection_layer","events_processed":130,"events_dropped":0,"avg_latency_ms":17.079000641908426,"throughput_eps":0,"last_update":"2026-03-21T12:24:14.210622617Z"} +2026/03/21 12:24:19 [transform_engine] {"stage_name":"transform_engine","events_processed":130,"events_dropped":0,"avg_latency_ms":1684.9339747913227,"throughput_eps":0,"last_update":"2026-03-21T12:24:14.210606656Z"} +2026/03/21 12:24:19 ───────────────────────────────────────────────── +2026/03/21 12:24:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:24:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":785.8,"last_update":"2026-03-21T12:24:19.068947271Z"} +2026/03/21 12:24:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:24:19.077039533Z"} +2026/03/21 12:24:24 [detection_layer] {"stage_name":"detection_layer","events_processed":130,"events_dropped":0,"avg_latency_ms":17.079000641908426,"throughput_eps":0,"last_update":"2026-03-21T12:24:19.210652725Z"} +2026/03/21 12:24:24 [transform_engine] {"stage_name":"transform_engine","events_processed":131,"events_dropped":0,"avg_latency_ms":1378.8901060330584,"throughput_eps":0,"last_update":"2026-03-21T12:24:19.365387935Z"} +2026/03/21 12:24:24 [log_collector] {"stage_name":"log_collector","events_processed":7242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1448.4,"last_update":"2026-03-21T12:24:19.069381872Z"} +2026/03/21 12:24:24 ───────────────────────────────────────────────── +Saved state: 14 clusters, 7311 messages, reason: none +2026/03/21 12:24:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:24:29 [transform_engine] {"stage_name":"transform_engine","events_processed":131,"events_dropped":0,"avg_latency_ms":1378.8901060330584,"throughput_eps":0,"last_update":"2026-03-21T12:24:24.210447486Z"} +2026/03/21 12:24:29 [log_collector] {"stage_name":"log_collector","events_processed":7298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1459.6,"last_update":"2026-03-21T12:24:24.068660515Z"} +2026/03/21 12:24:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":786.8,"last_update":"2026-03-21T12:24:24.068926695Z"} +2026/03/21 12:24:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1576,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:24:24.080167195Z"} +2026/03/21 12:24:29 [detection_layer] {"stage_name":"detection_layer","events_processed":131,"events_dropped":0,"avg_latency_ms":16.45822971352674,"throughput_eps":0,"last_update":"2026-03-21T12:24:24.210556445Z"} +2026/03/21 12:24:29 ───────────────────────────────────────────────── +2026/03/21 12:24:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:24:34 [log_collector] {"stage_name":"log_collector","events_processed":7337,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1467.4,"last_update":"2026-03-21T12:24:29.068076557Z"} +2026/03/21 12:24:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":787.8,"last_update":"2026-03-21T12:24:29.068413442Z"} +2026/03/21 12:24:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:24:29.077273385Z"} +2026/03/21 12:24:34 [detection_layer] {"stage_name":"detection_layer","events_processed":131,"events_dropped":0,"avg_latency_ms":16.45822971352674,"throughput_eps":0,"last_update":"2026-03-21T12:24:29.210625627Z"} +2026/03/21 12:24:34 [transform_engine] {"stage_name":"transform_engine","events_processed":131,"events_dropped":0,"avg_latency_ms":1378.8901060330584,"throughput_eps":0,"last_update":"2026-03-21T12:24:29.210678408Z"} +2026/03/21 12:24:34 ───────────────────────────────────────────────── +2026/03/21 12:24:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:24:39 [log_collector] {"stage_name":"log_collector","events_processed":7337,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1467.4,"last_update":"2026-03-21T12:24:34.068538257Z"} +2026/03/21 12:24:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":788.8,"last_update":"2026-03-21T12:24:34.069070366Z"} +2026/03/21 12:24:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1580,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:24:34.079740314Z"} +2026/03/21 12:24:39 [detection_layer] {"stage_name":"detection_layer","events_processed":131,"events_dropped":0,"avg_latency_ms":16.45822971352674,"throughput_eps":0,"last_update":"2026-03-21T12:24:34.21000721Z"} +2026/03/21 12:24:39 [transform_engine] {"stage_name":"transform_engine","events_processed":131,"events_dropped":0,"avg_latency_ms":1378.8901060330584,"throughput_eps":0,"last_update":"2026-03-21T12:24:34.209980699Z"} +2026/03/21 12:24:39 ───────────────────────────────────────────────── +2026/03/21 12:24:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:24:44 [log_collector] {"stage_name":"log_collector","events_processed":7337,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1467.4,"last_update":"2026-03-21T12:24:39.068654051Z"} +2026/03/21 12:24:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":789.8,"last_update":"2026-03-21T12:24:39.069018779Z"} +2026/03/21 12:24:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:24:39.078104775Z"} +2026/03/21 12:24:44 [detection_layer] {"stage_name":"detection_layer","events_processed":131,"events_dropped":0,"avg_latency_ms":16.45822971352674,"throughput_eps":0,"last_update":"2026-03-21T12:24:39.210629153Z"} +2026/03/21 12:24:44 [transform_engine] {"stage_name":"transform_engine","events_processed":131,"events_dropped":0,"avg_latency_ms":1378.8901060330584,"throughput_eps":0,"last_update":"2026-03-21T12:24:39.210581603Z"} +2026/03/21 12:24:44 ───────────────────────────────────────────────── +2026/03/21 12:24:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:24:49 [log_collector] {"stage_name":"log_collector","events_processed":7337,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1467.4,"last_update":"2026-03-21T12:24:44.068789779Z"} +2026/03/21 12:24:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":790.8,"last_update":"2026-03-21T12:24:44.069532301Z"} +2026/03/21 12:24:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:24:44.078619329Z"} +2026/03/21 12:24:49 [detection_layer] {"stage_name":"detection_layer","events_processed":131,"events_dropped":0,"avg_latency_ms":16.45822971352674,"throughput_eps":0,"last_update":"2026-03-21T12:24:44.210939857Z"} +2026/03/21 12:24:49 [transform_engine] {"stage_name":"transform_engine","events_processed":131,"events_dropped":0,"avg_latency_ms":1378.8901060330584,"throughput_eps":0,"last_update":"2026-03-21T12:24:44.209779134Z"} +2026/03/21 12:24:49 ───────────────────────────────────────────────── +2026/03/21 12:24:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:24:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":791.8,"last_update":"2026-03-21T12:24:49.068626711Z"} +2026/03/21 12:24:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1586,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:24:49.077744056Z"} +2026/03/21 12:24:54 [detection_layer] {"stage_name":"detection_layer","events_processed":131,"events_dropped":0,"avg_latency_ms":16.45822971352674,"throughput_eps":0,"last_update":"2026-03-21T12:24:49.210131954Z"} +2026/03/21 12:24:54 [transform_engine] {"stage_name":"transform_engine","events_processed":132,"events_dropped":0,"avg_latency_ms":1126.9029324264468,"throughput_eps":0,"last_update":"2026-03-21T12:24:49.329205731Z"} +2026/03/21 12:24:54 [log_collector] {"stage_name":"log_collector","events_processed":7337,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1467.4,"last_update":"2026-03-21T12:24:49.068144878Z"} +2026/03/21 12:24:54 ───────────────────────────────────────────────── +2026/03/21 12:24:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:24:59 [log_collector] {"stage_name":"log_collector","events_processed":7337,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1467.4,"last_update":"2026-03-21T12:24:54.068330422Z"} +2026/03/21 12:24:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":792.8,"last_update":"2026-03-21T12:24:54.068656876Z"} +2026/03/21 12:24:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1588,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:24:54.077916745Z"} +2026/03/21 12:24:59 [detection_layer] {"stage_name":"detection_layer","events_processed":132,"events_dropped":0,"avg_latency_ms":17.530526770821393,"throughput_eps":0,"last_update":"2026-03-21T12:24:54.210189333Z"} +2026/03/21 12:24:59 [transform_engine] {"stage_name":"transform_engine","events_processed":132,"events_dropped":0,"avg_latency_ms":1126.9029324264468,"throughput_eps":0,"last_update":"2026-03-21T12:24:54.210226283Z"} +2026/03/21 12:24:59 ───────────────────────────────────────────────── +2026/03/21 12:25:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:25:04 [detection_layer] {"stage_name":"detection_layer","events_processed":132,"events_dropped":0,"avg_latency_ms":17.530526770821393,"throughput_eps":0,"last_update":"2026-03-21T12:24:59.210071112Z"} +2026/03/21 12:25:04 [transform_engine] {"stage_name":"transform_engine","events_processed":132,"events_dropped":0,"avg_latency_ms":1126.9029324264468,"throughput_eps":0,"last_update":"2026-03-21T12:24:59.210103113Z"} +2026/03/21 12:25:04 [log_collector] {"stage_name":"log_collector","events_processed":7337,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1467.4,"last_update":"2026-03-21T12:25:04.068108171Z"} +2026/03/21 12:25:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":793.8,"last_update":"2026-03-21T12:24:59.069067196Z"} +2026/03/21 12:25:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:24:59.077820445Z"} +2026/03/21 12:25:04 ───────────────────────────────────────────────── +2026/03/21 12:25:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:25:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1592,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:25:04.078642791Z"} +2026/03/21 12:25:09 [detection_layer] {"stage_name":"detection_layer","events_processed":132,"events_dropped":0,"avg_latency_ms":17.530526770821393,"throughput_eps":0,"last_update":"2026-03-21T12:25:04.210117231Z"} +2026/03/21 12:25:09 [transform_engine] {"stage_name":"transform_engine","events_processed":132,"events_dropped":0,"avg_latency_ms":1126.9029324264468,"throughput_eps":0,"last_update":"2026-03-21T12:25:04.210091561Z"} +2026/03/21 12:25:09 [log_collector] {"stage_name":"log_collector","events_processed":7337,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1467.4,"last_update":"2026-03-21T12:25:04.068108171Z"} +2026/03/21 12:25:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":794.8,"last_update":"2026-03-21T12:25:04.068911959Z"} +2026/03/21 12:25:09 ───────────────────────────────────────────────── +2026/03/21 12:25:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:25:14 [log_collector] {"stage_name":"log_collector","events_processed":7337,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1467.4,"last_update":"2026-03-21T12:25:09.068633591Z"} +2026/03/21 12:25:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":795.8,"last_update":"2026-03-21T12:25:09.068923495Z"} +2026/03/21 12:25:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:25:09.087221449Z"} +2026/03/21 12:25:14 [detection_layer] {"stage_name":"detection_layer","events_processed":132,"events_dropped":0,"avg_latency_ms":17.530526770821393,"throughput_eps":0,"last_update":"2026-03-21T12:25:09.210503274Z"} +2026/03/21 12:25:14 [transform_engine] {"stage_name":"transform_engine","events_processed":132,"events_dropped":0,"avg_latency_ms":1126.9029324264468,"throughput_eps":0,"last_update":"2026-03-21T12:25:09.210624777Z"} +2026/03/21 12:25:14 ───────────────────────────────────────────────── +2026/03/21 12:25:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:25:19 [log_collector] {"stage_name":"log_collector","events_processed":7337,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1467.4,"last_update":"2026-03-21T12:25:14.068980474Z"} +2026/03/21 12:25:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":796.8,"last_update":"2026-03-21T12:25:14.069268857Z"} +2026/03/21 12:25:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:25:14.079374194Z"} +2026/03/21 12:25:19 [detection_layer] {"stage_name":"detection_layer","events_processed":132,"events_dropped":0,"avg_latency_ms":17.530526770821393,"throughput_eps":0,"last_update":"2026-03-21T12:25:14.210720981Z"} +2026/03/21 12:25:19 [transform_engine] {"stage_name":"transform_engine","events_processed":132,"events_dropped":0,"avg_latency_ms":1126.9029324264468,"throughput_eps":0,"last_update":"2026-03-21T12:25:14.210613094Z"} +2026/03/21 12:25:19 ───────────────────────────────────────────────── +2026/03/21 12:25:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:25:24 [detection_layer] {"stage_name":"detection_layer","events_processed":132,"events_dropped":0,"avg_latency_ms":17.530526770821393,"throughput_eps":0,"last_update":"2026-03-21T12:25:19.210983618Z"} +2026/03/21 12:25:24 [transform_engine] {"stage_name":"transform_engine","events_processed":133,"events_dropped":0,"avg_latency_ms":915.1061517411575,"throughput_eps":0,"last_update":"2026-03-21T12:25:19.278860936Z"} +2026/03/21 12:25:24 [log_collector] {"stage_name":"log_collector","events_processed":7337,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1467.4,"last_update":"2026-03-21T12:25:19.068273043Z"} +2026/03/21 12:25:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":797.8,"last_update":"2026-03-21T12:25:19.069093765Z"} +2026/03/21 12:25:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:25:19.077154949Z"} +2026/03/21 12:25:24 ───────────────────────────────────────────────── +2026/03/21 12:25:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:25:29 [log_collector] {"stage_name":"log_collector","events_processed":7337,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1467.4,"last_update":"2026-03-21T12:25:24.069083673Z"} +2026/03/21 12:25:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":798.8,"last_update":"2026-03-21T12:25:24.069334433Z"} +2026/03/21 12:25:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:25:24.078268939Z"} +2026/03/21 12:25:29 [detection_layer] {"stage_name":"detection_layer","events_processed":133,"events_dropped":0,"avg_latency_ms":18.202372616657115,"throughput_eps":0,"last_update":"2026-03-21T12:25:24.210605501Z"} +2026/03/21 12:25:29 [transform_engine] {"stage_name":"transform_engine","events_processed":133,"events_dropped":0,"avg_latency_ms":915.1061517411575,"throughput_eps":0,"last_update":"2026-03-21T12:25:24.210718277Z"} +2026/03/21 12:25:29 ───────────────────────────────────────────────── +2026/03/21 12:25:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:25:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1602,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:25:29.0789935Z"} +2026/03/21 12:25:34 [detection_layer] {"stage_name":"detection_layer","events_processed":133,"events_dropped":0,"avg_latency_ms":18.202372616657115,"throughput_eps":0,"last_update":"2026-03-21T12:25:29.210666452Z"} +2026/03/21 12:25:34 [transform_engine] {"stage_name":"transform_engine","events_processed":133,"events_dropped":0,"avg_latency_ms":915.1061517411575,"throughput_eps":0,"last_update":"2026-03-21T12:25:29.210622408Z"} +2026/03/21 12:25:34 [log_collector] {"stage_name":"log_collector","events_processed":7337,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1467.4,"last_update":"2026-03-21T12:25:29.068712546Z"} +2026/03/21 12:25:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":799.8,"last_update":"2026-03-21T12:25:29.068766309Z"} +2026/03/21 12:25:34 ───────────────────────────────────────────────── +2026/03/21 12:25:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:25:39 [metric_collector] {"stage_name":"metric_collector","events_processed":4004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":800.8,"last_update":"2026-03-21T12:25:34.069046211Z"} +2026/03/21 12:25:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:25:34.077662779Z"} +2026/03/21 12:25:39 [detection_layer] {"stage_name":"detection_layer","events_processed":133,"events_dropped":0,"avg_latency_ms":18.202372616657115,"throughput_eps":0,"last_update":"2026-03-21T12:25:34.209898659Z"} +2026/03/21 12:25:39 [transform_engine] {"stage_name":"transform_engine","events_processed":133,"events_dropped":0,"avg_latency_ms":915.1061517411575,"throughput_eps":0,"last_update":"2026-03-21T12:25:34.210001135Z"} +2026/03/21 12:25:39 [log_collector] {"stage_name":"log_collector","events_processed":7337,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1467.4,"last_update":"2026-03-21T12:25:34.068791323Z"} +2026/03/21 12:25:39 ───────────────────────────────────────────────── +2026/03/21 12:25:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:25:44 [metric_collector] {"stage_name":"metric_collector","events_processed":4009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":801.8,"last_update":"2026-03-21T12:25:39.069064465Z"} +2026/03/21 12:25:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:25:39.078973296Z"} +2026/03/21 12:25:44 [detection_layer] {"stage_name":"detection_layer","events_processed":133,"events_dropped":0,"avg_latency_ms":18.202372616657115,"throughput_eps":0,"last_update":"2026-03-21T12:25:39.210322329Z"} +2026/03/21 12:25:44 [transform_engine] {"stage_name":"transform_engine","events_processed":133,"events_dropped":0,"avg_latency_ms":915.1061517411575,"throughput_eps":0,"last_update":"2026-03-21T12:25:39.210343199Z"} +2026/03/21 12:25:44 [log_collector] {"stage_name":"log_collector","events_processed":7337,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1467.4,"last_update":"2026-03-21T12:25:39.068658628Z"} +2026/03/21 12:25:44 ───────────────────────────────────────────────── +Saved state: 14 clusters, 7338 messages, reason: none +2026/03/21 12:25:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:25:49 [log_collector] {"stage_name":"log_collector","events_processed":7337,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1467.4,"last_update":"2026-03-21T12:25:44.068640117Z"} +2026/03/21 12:25:49 [metric_collector] {"stage_name":"metric_collector","events_processed":4014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":802.8,"last_update":"2026-03-21T12:25:44.06899697Z"} +2026/03/21 12:25:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:25:44.077934833Z"} +2026/03/21 12:25:49 [detection_layer] {"stage_name":"detection_layer","events_processed":133,"events_dropped":0,"avg_latency_ms":18.202372616657115,"throughput_eps":0,"last_update":"2026-03-21T12:25:44.210615516Z"} +2026/03/21 12:25:49 [transform_engine] {"stage_name":"transform_engine","events_processed":133,"events_dropped":0,"avg_latency_ms":915.1061517411575,"throughput_eps":0,"last_update":"2026-03-21T12:25:44.210297586Z"} +2026/03/21 12:25:49 ───────────────────────────────────────────────── +2026/03/21 12:25:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:25:54 [metric_collector] {"stage_name":"metric_collector","events_processed":4019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":803.8,"last_update":"2026-03-21T12:25:49.068781325Z"} +2026/03/21 12:25:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:25:49.075604419Z"} +2026/03/21 12:25:54 [detection_layer] {"stage_name":"detection_layer","events_processed":133,"events_dropped":0,"avg_latency_ms":18.202372616657115,"throughput_eps":0,"last_update":"2026-03-21T12:25:49.210692301Z"} +2026/03/21 12:25:54 [transform_engine] {"stage_name":"transform_engine","events_processed":134,"events_dropped":0,"avg_latency_ms":753.7456875929261,"throughput_eps":0,"last_update":"2026-03-21T12:25:49.318031004Z"} +2026/03/21 12:25:54 [log_collector] {"stage_name":"log_collector","events_processed":7340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1468,"last_update":"2026-03-21T12:25:49.068646437Z"} +2026/03/21 12:25:54 ───────────────────────────────────────────────── +2026/03/21 12:25:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:25:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:25:54.076023353Z"} +2026/03/21 12:25:59 [detection_layer] {"stage_name":"detection_layer","events_processed":134,"events_dropped":0,"avg_latency_ms":17.841883893325694,"throughput_eps":0,"last_update":"2026-03-21T12:25:54.210235379Z"} +2026/03/21 12:25:59 [transform_engine] {"stage_name":"transform_engine","events_processed":134,"events_dropped":0,"avg_latency_ms":753.7456875929261,"throughput_eps":0,"last_update":"2026-03-21T12:25:54.210246049Z"} +2026/03/21 12:25:59 [log_collector] {"stage_name":"log_collector","events_processed":7351,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1470.2,"last_update":"2026-03-21T12:25:59.068139284Z"} +2026/03/21 12:25:59 [metric_collector] {"stage_name":"metric_collector","events_processed":4024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":804.8,"last_update":"2026-03-21T12:25:54.069220077Z"} +2026/03/21 12:25:59 ───────────────────────────────────────────────── +2026/03/21 12:26:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:26:04 [log_collector] {"stage_name":"log_collector","events_processed":7351,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1470.2,"last_update":"2026-03-21T12:25:59.068139284Z"} +2026/03/21 12:26:04 [metric_collector] {"stage_name":"metric_collector","events_processed":4029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":805.8,"last_update":"2026-03-21T12:25:59.068689348Z"} +2026/03/21 12:26:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:25:59.074885622Z"} +2026/03/21 12:26:04 [detection_layer] {"stage_name":"detection_layer","events_processed":134,"events_dropped":0,"avg_latency_ms":17.841883893325694,"throughput_eps":0,"last_update":"2026-03-21T12:25:59.210302264Z"} +2026/03/21 12:26:04 [transform_engine] {"stage_name":"transform_engine","events_processed":134,"events_dropped":0,"avg_latency_ms":753.7456875929261,"throughput_eps":0,"last_update":"2026-03-21T12:25:59.210318615Z"} +2026/03/21 12:26:04 ───────────────────────────────────────────────── +2026/03/21 12:26:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:26:09 [log_collector] {"stage_name":"log_collector","events_processed":7367,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1473.4,"last_update":"2026-03-21T12:26:09.068064141Z"} +2026/03/21 12:26:09 [metric_collector] {"stage_name":"metric_collector","events_processed":4034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":806.8,"last_update":"2026-03-21T12:26:04.068667975Z"} +2026/03/21 12:26:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:26:04.077766315Z"} +2026/03/21 12:26:09 [detection_layer] {"stage_name":"detection_layer","events_processed":134,"events_dropped":0,"avg_latency_ms":17.841883893325694,"throughput_eps":0,"last_update":"2026-03-21T12:26:04.209957151Z"} +2026/03/21 12:26:09 [transform_engine] {"stage_name":"transform_engine","events_processed":134,"events_dropped":0,"avg_latency_ms":753.7456875929261,"throughput_eps":0,"last_update":"2026-03-21T12:26:04.209969735Z"} +2026/03/21 12:26:09 ───────────────────────────────────────────────── +2026/03/21 12:26:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:26:14 [log_collector] {"stage_name":"log_collector","events_processed":7367,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1473.4,"last_update":"2026-03-21T12:26:09.068064141Z"} +2026/03/21 12:26:14 [metric_collector] {"stage_name":"metric_collector","events_processed":4039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":807.8,"last_update":"2026-03-21T12:26:09.068378572Z"} +2026/03/21 12:26:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:26:09.077555904Z"} +2026/03/21 12:26:14 [detection_layer] {"stage_name":"detection_layer","events_processed":134,"events_dropped":0,"avg_latency_ms":17.841883893325694,"throughput_eps":0,"last_update":"2026-03-21T12:26:09.209858495Z"} +2026/03/21 12:26:14 [transform_engine] {"stage_name":"transform_engine","events_processed":134,"events_dropped":0,"avg_latency_ms":753.7456875929261,"throughput_eps":0,"last_update":"2026-03-21T12:26:09.209743414Z"} +2026/03/21 12:26:14 ───────────────────────────────────────────────── +2026/03/21 12:26:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:26:19 [log_collector] {"stage_name":"log_collector","events_processed":7370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1474,"last_update":"2026-03-21T12:26:14.068423254Z"} +2026/03/21 12:26:19 [metric_collector] {"stage_name":"metric_collector","events_processed":4043,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":808.6,"last_update":"2026-03-21T12:26:14.068448553Z"} +2026/03/21 12:26:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1620,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:26:14.076671847Z"} +2026/03/21 12:26:19 [detection_layer] {"stage_name":"detection_layer","events_processed":134,"events_dropped":0,"avg_latency_ms":17.841883893325694,"throughput_eps":0,"last_update":"2026-03-21T12:26:14.209981747Z"} +2026/03/21 12:26:19 [transform_engine] {"stage_name":"transform_engine","events_processed":134,"events_dropped":0,"avg_latency_ms":753.7456875929261,"throughput_eps":0,"last_update":"2026-03-21T12:26:14.209885552Z"} +2026/03/21 12:26:19 ───────────────────────────────────────────────── +2026/03/21 12:26:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:26:24 [log_collector] {"stage_name":"log_collector","events_processed":7381,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1476.2,"last_update":"2026-03-21T12:26:19.06825457Z"} +2026/03/21 12:26:24 [metric_collector] {"stage_name":"metric_collector","events_processed":4048,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":809.6,"last_update":"2026-03-21T12:26:19.068426058Z"} +2026/03/21 12:26:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1622,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:26:19.077787803Z"} +2026/03/21 12:26:24 [detection_layer] {"stage_name":"detection_layer","events_processed":134,"events_dropped":0,"avg_latency_ms":17.841883893325694,"throughput_eps":0,"last_update":"2026-03-21T12:26:19.210487084Z"} +2026/03/21 12:26:24 [transform_engine] {"stage_name":"transform_engine","events_processed":135,"events_dropped":0,"avg_latency_ms":625.9029754743409,"throughput_eps":0,"last_update":"2026-03-21T12:26:19.324562958Z"} +2026/03/21 12:26:24 ───────────────────────────────────────────────── +2026/03/21 12:26:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:26:29 [log_collector] {"stage_name":"log_collector","events_processed":7381,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1476.2,"last_update":"2026-03-21T12:26:24.068076481Z"} +2026/03/21 12:26:29 [metric_collector] {"stage_name":"metric_collector","events_processed":4054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":810.8,"last_update":"2026-03-21T12:26:24.068595464Z"} +2026/03/21 12:26:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:26:24.078880697Z"} +2026/03/21 12:26:29 [detection_layer] {"stage_name":"detection_layer","events_processed":135,"events_dropped":0,"avg_latency_ms":17.860875714660555,"throughput_eps":0,"last_update":"2026-03-21T12:26:24.210216788Z"} +2026/03/21 12:26:29 [transform_engine] {"stage_name":"transform_engine","events_processed":135,"events_dropped":0,"avg_latency_ms":625.9029754743409,"throughput_eps":0,"last_update":"2026-03-21T12:26:24.210112879Z"} +2026/03/21 12:26:29 ───────────────────────────────────────────────── +2026/03/21 12:26:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:26:34 [metric_collector] {"stage_name":"metric_collector","events_processed":4059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":811.8,"last_update":"2026-03-21T12:26:29.069209284Z"} +2026/03/21 12:26:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:26:29.068868221Z"} +2026/03/21 12:26:34 [detection_layer] {"stage_name":"detection_layer","events_processed":135,"events_dropped":0,"avg_latency_ms":17.860875714660555,"throughput_eps":0,"last_update":"2026-03-21T12:26:29.209852956Z"} +2026/03/21 12:26:34 [transform_engine] {"stage_name":"transform_engine","events_processed":135,"events_dropped":0,"avg_latency_ms":625.9029754743409,"throughput_eps":0,"last_update":"2026-03-21T12:26:29.209825524Z"} +2026/03/21 12:26:34 [log_collector] {"stage_name":"log_collector","events_processed":7381,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1476.2,"last_update":"2026-03-21T12:26:29.069134722Z"} +2026/03/21 12:26:34 ───────────────────────────────────────────────── +2026/03/21 12:26:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:26:39 [log_collector] {"stage_name":"log_collector","events_processed":7381,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1476.2,"last_update":"2026-03-21T12:26:34.068668777Z"} +2026/03/21 12:26:39 [metric_collector] {"stage_name":"metric_collector","events_processed":4064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":812.8,"last_update":"2026-03-21T12:26:34.069273826Z"} +2026/03/21 12:26:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:26:34.078747053Z"} +2026/03/21 12:26:39 [detection_layer] {"stage_name":"detection_layer","events_processed":135,"events_dropped":0,"avg_latency_ms":17.860875714660555,"throughput_eps":0,"last_update":"2026-03-21T12:26:34.210157326Z"} +2026/03/21 12:26:39 [transform_engine] {"stage_name":"transform_engine","events_processed":135,"events_dropped":0,"avg_latency_ms":625.9029754743409,"throughput_eps":0,"last_update":"2026-03-21T12:26:34.210058637Z"} +2026/03/21 12:26:39 ───────────────────────────────────────────────── +2026/03/21 12:26:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:26:44 [log_collector] {"stage_name":"log_collector","events_processed":7381,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1476.2,"last_update":"2026-03-21T12:26:39.068099117Z"} +2026/03/21 12:26:44 [metric_collector] {"stage_name":"metric_collector","events_processed":4069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":813.8,"last_update":"2026-03-21T12:26:39.068678306Z"} +2026/03/21 12:26:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:26:39.078906679Z"} +2026/03/21 12:26:44 [detection_layer] {"stage_name":"detection_layer","events_processed":135,"events_dropped":0,"avg_latency_ms":17.860875714660555,"throughput_eps":0,"last_update":"2026-03-21T12:26:39.210176384Z"} +2026/03/21 12:26:44 [transform_engine] {"stage_name":"transform_engine","events_processed":135,"events_dropped":0,"avg_latency_ms":625.9029754743409,"throughput_eps":0,"last_update":"2026-03-21T12:26:39.210297676Z"} +2026/03/21 12:26:44 ───────────────────────────────────────────────── +2026/03/21 12:26:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:26:49 [log_collector] {"stage_name":"log_collector","events_processed":7381,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1476.2,"last_update":"2026-03-21T12:26:44.068221503Z"} +2026/03/21 12:26:49 [metric_collector] {"stage_name":"metric_collector","events_processed":4074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":814.8,"last_update":"2026-03-21T12:26:44.068643331Z"} +2026/03/21 12:26:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1632,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:26:44.079116544Z"} +2026/03/21 12:26:49 [detection_layer] {"stage_name":"detection_layer","events_processed":135,"events_dropped":0,"avg_latency_ms":17.860875714660555,"throughput_eps":0,"last_update":"2026-03-21T12:26:44.210426666Z"} +2026/03/21 12:26:49 [transform_engine] {"stage_name":"transform_engine","events_processed":135,"events_dropped":0,"avg_latency_ms":625.9029754743409,"throughput_eps":0,"last_update":"2026-03-21T12:26:44.210458347Z"} +2026/03/21 12:26:49 ───────────────────────────────────────────────── +2026/03/21 12:26:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:26:54 [log_collector] {"stage_name":"log_collector","events_processed":7381,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1476.2,"last_update":"2026-03-21T12:26:49.068168075Z"} +2026/03/21 12:26:54 [metric_collector] {"stage_name":"metric_collector","events_processed":4079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":815.8,"last_update":"2026-03-21T12:26:49.068674665Z"} +2026/03/21 12:26:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:26:49.077980412Z"} +2026/03/21 12:26:54 [detection_layer] {"stage_name":"detection_layer","events_processed":135,"events_dropped":0,"avg_latency_ms":17.860875714660555,"throughput_eps":0,"last_update":"2026-03-21T12:26:49.210282104Z"} +2026/03/21 12:26:54 [transform_engine] {"stage_name":"transform_engine","events_processed":136,"events_dropped":0,"avg_latency_ms":515.9450503794727,"throughput_eps":0,"last_update":"2026-03-21T12:26:49.286548207Z"} +2026/03/21 12:26:54 ───────────────────────────────────────────────── +2026/03/21 12:26:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:26:59 [log_collector] {"stage_name":"log_collector","events_processed":7381,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1476.2,"last_update":"2026-03-21T12:26:54.068944449Z"} +2026/03/21 12:26:59 [metric_collector] {"stage_name":"metric_collector","events_processed":4084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":816.8,"last_update":"2026-03-21T12:26:54.06951461Z"} +2026/03/21 12:26:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:26:54.07851392Z"} +2026/03/21 12:26:59 [detection_layer] {"stage_name":"detection_layer","events_processed":136,"events_dropped":0,"avg_latency_ms":18.877304171728444,"throughput_eps":0,"last_update":"2026-03-21T12:26:54.210841262Z"} +2026/03/21 12:26:59 [transform_engine] {"stage_name":"transform_engine","events_processed":136,"events_dropped":0,"avg_latency_ms":515.9450503794727,"throughput_eps":0,"last_update":"2026-03-21T12:26:54.20972298Z"} +2026/03/21 12:26:59 ───────────────────────────────────────────────── +2026/03/21 12:27:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:27:04 [detection_layer] {"stage_name":"detection_layer","events_processed":136,"events_dropped":0,"avg_latency_ms":18.877304171728444,"throughput_eps":0,"last_update":"2026-03-21T12:26:59.210466665Z"} +2026/03/21 12:27:04 [transform_engine] {"stage_name":"transform_engine","events_processed":136,"events_dropped":0,"avg_latency_ms":515.9450503794727,"throughput_eps":0,"last_update":"2026-03-21T12:26:59.210511129Z"} +2026/03/21 12:27:04 [log_collector] {"stage_name":"log_collector","events_processed":7381,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1476.2,"last_update":"2026-03-21T12:26:59.06867897Z"} +2026/03/21 12:27:04 [metric_collector] {"stage_name":"metric_collector","events_processed":4089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":817.8,"last_update":"2026-03-21T12:26:59.068997409Z"} +2026/03/21 12:27:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:26:59.078077824Z"} +2026/03/21 12:27:04 ───────────────────────────────────────────────── +2026/03/21 12:27:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:27:09 [log_collector] {"stage_name":"log_collector","events_processed":7381,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1476.2,"last_update":"2026-03-21T12:27:04.068910252Z"} +2026/03/21 12:27:09 [metric_collector] {"stage_name":"metric_collector","events_processed":4094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":818.8,"last_update":"2026-03-21T12:27:04.069511153Z"} +2026/03/21 12:27:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1640,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:27:04.078612679Z"} +2026/03/21 12:27:09 [detection_layer] {"stage_name":"detection_layer","events_processed":136,"events_dropped":0,"avg_latency_ms":18.877304171728444,"throughput_eps":0,"last_update":"2026-03-21T12:27:04.20986355Z"} +2026/03/21 12:27:09 [transform_engine] {"stage_name":"transform_engine","events_processed":136,"events_dropped":0,"avg_latency_ms":515.9450503794727,"throughput_eps":0,"last_update":"2026-03-21T12:27:04.209825487Z"} +2026/03/21 12:27:09 ───────────────────────────────────────────────── +2026/03/21 12:27:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:27:14 [log_collector] {"stage_name":"log_collector","events_processed":7381,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1476.2,"last_update":"2026-03-21T12:27:09.06809226Z"} +2026/03/21 12:27:14 [metric_collector] {"stage_name":"metric_collector","events_processed":4099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":819.8,"last_update":"2026-03-21T12:27:09.068384188Z"} +2026/03/21 12:27:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:27:09.07876216Z"} +2026/03/21 12:27:14 [detection_layer] {"stage_name":"detection_layer","events_processed":136,"events_dropped":0,"avg_latency_ms":18.877304171728444,"throughput_eps":0,"last_update":"2026-03-21T12:27:09.210137388Z"} +2026/03/21 12:27:14 [transform_engine] {"stage_name":"transform_engine","events_processed":136,"events_dropped":0,"avg_latency_ms":515.9450503794727,"throughput_eps":0,"last_update":"2026-03-21T12:27:09.210029442Z"} +2026/03/21 12:27:14 ───────────────────────────────────────────────── +Saved state: 14 clusters, 7382 messages, reason: none +2026/03/21 12:27:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:27:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:27:14.079032801Z"} +2026/03/21 12:27:19 [detection_layer] {"stage_name":"detection_layer","events_processed":136,"events_dropped":0,"avg_latency_ms":18.877304171728444,"throughput_eps":0,"last_update":"2026-03-21T12:27:14.210457646Z"} +2026/03/21 12:27:19 [transform_engine] {"stage_name":"transform_engine","events_processed":136,"events_dropped":0,"avg_latency_ms":515.9450503794727,"throughput_eps":0,"last_update":"2026-03-21T12:27:14.210517249Z"} +2026/03/21 12:27:19 [log_collector] {"stage_name":"log_collector","events_processed":7381,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1476.2,"last_update":"2026-03-21T12:27:14.068752748Z"} +2026/03/21 12:27:19 [metric_collector] {"stage_name":"metric_collector","events_processed":4103,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":820.6,"last_update":"2026-03-21T12:27:14.068595638Z"} +2026/03/21 12:27:19 ───────────────────────────────────────────────── +2026/03/21 12:27:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:27:24 [log_collector] {"stage_name":"log_collector","events_processed":7386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1477.2,"last_update":"2026-03-21T12:27:19.068517694Z"} +2026/03/21 12:27:24 [metric_collector] {"stage_name":"metric_collector","events_processed":4109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":821.8,"last_update":"2026-03-21T12:27:19.068687169Z"} +2026/03/21 12:27:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1646,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:27:19.086668727Z"} +2026/03/21 12:27:24 [detection_layer] {"stage_name":"detection_layer","events_processed":136,"events_dropped":0,"avg_latency_ms":18.877304171728444,"throughput_eps":0,"last_update":"2026-03-21T12:27:19.210579765Z"} +2026/03/21 12:27:24 [transform_engine] {"stage_name":"transform_engine","events_processed":137,"events_dropped":0,"avg_latency_ms":438.7537793035782,"throughput_eps":0,"last_update":"2026-03-21T12:27:19.34055283Z"} +2026/03/21 12:27:24 ───────────────────────────────────────────────── +2026/03/21 12:27:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:27:29 [detection_layer] {"stage_name":"detection_layer","events_processed":137,"events_dropped":0,"avg_latency_ms":19.166477737382756,"throughput_eps":0,"last_update":"2026-03-21T12:27:24.210444003Z"} +2026/03/21 12:27:29 [transform_engine] {"stage_name":"transform_engine","events_processed":137,"events_dropped":0,"avg_latency_ms":438.7537793035782,"throughput_eps":0,"last_update":"2026-03-21T12:27:24.210390722Z"} +2026/03/21 12:27:29 [log_collector] {"stage_name":"log_collector","events_processed":7386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1477.2,"last_update":"2026-03-21T12:27:24.068615329Z"} +2026/03/21 12:27:29 [metric_collector] {"stage_name":"metric_collector","events_processed":4114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":822.8,"last_update":"2026-03-21T12:27:24.068714358Z"} +2026/03/21 12:27:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:27:24.075258919Z"} +2026/03/21 12:27:29 ───────────────────────────────────────────────── +2026/03/21 12:27:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:27:34 [transform_engine] {"stage_name":"transform_engine","events_processed":137,"events_dropped":0,"avg_latency_ms":438.7537793035782,"throughput_eps":0,"last_update":"2026-03-21T12:27:29.210694221Z"} +2026/03/21 12:27:34 [log_collector] {"stage_name":"log_collector","events_processed":7386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1477.2,"last_update":"2026-03-21T12:27:29.068565132Z"} +2026/03/21 12:27:34 [metric_collector] {"stage_name":"metric_collector","events_processed":4119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":823.8,"last_update":"2026-03-21T12:27:29.068779782Z"} +2026/03/21 12:27:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1650,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:27:29.075473309Z"} +2026/03/21 12:27:34 [detection_layer] {"stage_name":"detection_layer","events_processed":137,"events_dropped":0,"avg_latency_ms":19.166477737382756,"throughput_eps":0,"last_update":"2026-03-21T12:27:29.210680846Z"} +2026/03/21 12:27:34 ───────────────────────────────────────────────── +2026/03/21 12:27:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:27:39 [transform_engine] {"stage_name":"transform_engine","events_processed":137,"events_dropped":0,"avg_latency_ms":438.7537793035782,"throughput_eps":0,"last_update":"2026-03-21T12:27:34.210657912Z"} +2026/03/21 12:27:39 [log_collector] {"stage_name":"log_collector","events_processed":7386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1477.2,"last_update":"2026-03-21T12:27:34.068972031Z"} +2026/03/21 12:27:39 [metric_collector] {"stage_name":"metric_collector","events_processed":4124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":824.8,"last_update":"2026-03-21T12:27:34.069211318Z"} +2026/03/21 12:27:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:27:34.076422475Z"} +2026/03/21 12:27:39 [detection_layer] {"stage_name":"detection_layer","events_processed":137,"events_dropped":0,"avg_latency_ms":19.166477737382756,"throughput_eps":0,"last_update":"2026-03-21T12:27:34.210642814Z"} +2026/03/21 12:27:39 ───────────────────────────────────────────────── +2026/03/21 12:27:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:27:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:27:39.081666699Z"} +2026/03/21 12:27:44 [detection_layer] {"stage_name":"detection_layer","events_processed":137,"events_dropped":0,"avg_latency_ms":19.166477737382756,"throughput_eps":0,"last_update":"2026-03-21T12:27:39.209889885Z"} +2026/03/21 12:27:44 [transform_engine] {"stage_name":"transform_engine","events_processed":137,"events_dropped":0,"avg_latency_ms":438.7537793035782,"throughput_eps":0,"last_update":"2026-03-21T12:27:39.209864998Z"} +2026/03/21 12:27:44 [log_collector] {"stage_name":"log_collector","events_processed":7386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1477.2,"last_update":"2026-03-21T12:27:39.068525237Z"} +2026/03/21 12:27:44 [metric_collector] {"stage_name":"metric_collector","events_processed":4129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":825.8,"last_update":"2026-03-21T12:27:39.068731734Z"} +2026/03/21 12:27:44 ───────────────────────────────────────────────── +2026/03/21 12:27:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:27:49 [log_collector] {"stage_name":"log_collector","events_processed":7386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1477.2,"last_update":"2026-03-21T12:27:44.068717529Z"} +2026/03/21 12:27:49 [metric_collector] {"stage_name":"metric_collector","events_processed":4134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":826.8,"last_update":"2026-03-21T12:27:44.068655479Z"} +2026/03/21 12:27:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:27:44.07489686Z"} +2026/03/21 12:27:49 [detection_layer] {"stage_name":"detection_layer","events_processed":137,"events_dropped":0,"avg_latency_ms":19.166477737382756,"throughput_eps":0,"last_update":"2026-03-21T12:27:44.210526146Z"} +2026/03/21 12:27:49 [transform_engine] {"stage_name":"transform_engine","events_processed":137,"events_dropped":0,"avg_latency_ms":438.7537793035782,"throughput_eps":0,"last_update":"2026-03-21T12:27:44.210404623Z"} +2026/03/21 12:27:49 ───────────────────────────────────────────────── +2026/03/21 12:27:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:27:54 [metric_collector] {"stage_name":"metric_collector","events_processed":4139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":827.8,"last_update":"2026-03-21T12:27:49.068783927Z"} +2026/03/21 12:27:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:27:49.075058171Z"} +2026/03/21 12:27:54 [detection_layer] {"stage_name":"detection_layer","events_processed":137,"events_dropped":0,"avg_latency_ms":19.166477737382756,"throughput_eps":0,"last_update":"2026-03-21T12:27:49.210338619Z"} +2026/03/21 12:27:54 [transform_engine] {"stage_name":"transform_engine","events_processed":138,"events_dropped":0,"avg_latency_ms":792.0339334428627,"throughput_eps":0,"last_update":"2026-03-21T12:27:51.415518289Z"} +2026/03/21 12:27:54 [log_collector] {"stage_name":"log_collector","events_processed":7386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1477.2,"last_update":"2026-03-21T12:27:49.068537075Z"} +2026/03/21 12:27:54 ───────────────────────────────────────────────── +2026/03/21 12:27:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:27:59 [log_collector] {"stage_name":"log_collector","events_processed":7386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1477.2,"last_update":"2026-03-21T12:27:54.068772229Z"} +2026/03/21 12:27:59 [metric_collector] {"stage_name":"metric_collector","events_processed":4144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":828.8,"last_update":"2026-03-21T12:27:54.069189749Z"} +2026/03/21 12:27:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1660,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:27:54.07537924Z"} +2026/03/21 12:27:59 [detection_layer] {"stage_name":"detection_layer","events_processed":138,"events_dropped":0,"avg_latency_ms":17.537394589906206,"throughput_eps":0,"last_update":"2026-03-21T12:27:54.210580827Z"} +2026/03/21 12:27:59 [transform_engine] {"stage_name":"transform_engine","events_processed":138,"events_dropped":0,"avg_latency_ms":792.0339334428627,"throughput_eps":0,"last_update":"2026-03-21T12:27:54.210509841Z"} +2026/03/21 12:27:59 ───────────────────────────────────────────────── +2026/03/21 12:28:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:28:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1662,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:27:59.076294186Z"} +2026/03/21 12:28:04 [detection_layer] {"stage_name":"detection_layer","events_processed":138,"events_dropped":0,"avg_latency_ms":17.537394589906206,"throughput_eps":0,"last_update":"2026-03-21T12:27:59.210535224Z"} +2026/03/21 12:28:04 [transform_engine] {"stage_name":"transform_engine","events_processed":138,"events_dropped":0,"avg_latency_ms":792.0339334428627,"throughput_eps":0,"last_update":"2026-03-21T12:27:59.210561104Z"} +2026/03/21 12:28:04 [log_collector] {"stage_name":"log_collector","events_processed":7386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1477.2,"last_update":"2026-03-21T12:27:59.068611145Z"} +2026/03/21 12:28:04 [metric_collector] {"stage_name":"metric_collector","events_processed":4149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":829.8,"last_update":"2026-03-21T12:27:59.068785559Z"} +2026/03/21 12:28:04 ───────────────────────────────────────────────── +2026/03/21 12:28:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:28:09 [log_collector] {"stage_name":"log_collector","events_processed":7397,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1479.4,"last_update":"2026-03-21T12:28:04.068833195Z"} +2026/03/21 12:28:09 [metric_collector] {"stage_name":"metric_collector","events_processed":4154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":830.8,"last_update":"2026-03-21T12:28:04.068819058Z"} +2026/03/21 12:28:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:28:04.075951033Z"} +2026/03/21 12:28:09 [detection_layer] {"stage_name":"detection_layer","events_processed":138,"events_dropped":0,"avg_latency_ms":17.537394589906206,"throughput_eps":0,"last_update":"2026-03-21T12:28:04.210461058Z"} +2026/03/21 12:28:09 [transform_engine] {"stage_name":"transform_engine","events_processed":138,"events_dropped":0,"avg_latency_ms":792.0339334428627,"throughput_eps":0,"last_update":"2026-03-21T12:28:04.210423777Z"} +2026/03/21 12:28:09 ───────────────────────────────────────────────── +2026/03/21 12:28:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:28:14 [log_collector] {"stage_name":"log_collector","events_processed":7405,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1481,"last_update":"2026-03-21T12:28:09.068889269Z"} +2026/03/21 12:28:14 [metric_collector] {"stage_name":"metric_collector","events_processed":4159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":831.8,"last_update":"2026-03-21T12:28:09.06911412Z"} +2026/03/21 12:28:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:28:09.077062648Z"} +2026/03/21 12:28:14 [detection_layer] {"stage_name":"detection_layer","events_processed":138,"events_dropped":0,"avg_latency_ms":17.537394589906206,"throughput_eps":0,"last_update":"2026-03-21T12:28:09.210438651Z"} +2026/03/21 12:28:14 [transform_engine] {"stage_name":"transform_engine","events_processed":138,"events_dropped":0,"avg_latency_ms":792.0339334428627,"throughput_eps":0,"last_update":"2026-03-21T12:28:09.210422861Z"} +2026/03/21 12:28:14 ───────────────────────────────────────────────── +Saved state: 14 clusters, 7701 messages, reason: none +2026/03/21 12:28:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:28:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:28:14.068727918Z"} +2026/03/21 12:28:19 [detection_layer] {"stage_name":"detection_layer","events_processed":138,"events_dropped":0,"avg_latency_ms":17.537394589906206,"throughput_eps":0,"last_update":"2026-03-21T12:28:14.210761979Z"} +2026/03/21 12:28:19 [transform_engine] {"stage_name":"transform_engine","events_processed":138,"events_dropped":0,"avg_latency_ms":792.0339334428627,"throughput_eps":0,"last_update":"2026-03-21T12:28:14.209683144Z"} +2026/03/21 12:28:19 [log_collector] {"stage_name":"log_collector","events_processed":7530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1506,"last_update":"2026-03-21T12:28:14.068621494Z"} +2026/03/21 12:28:19 [metric_collector] {"stage_name":"metric_collector","events_processed":4164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":832.8,"last_update":"2026-03-21T12:28:14.069283933Z"} +2026/03/21 12:28:19 ───────────────────────────────────────────────── +2026/03/21 12:28:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:28:24 [log_collector] {"stage_name":"log_collector","events_processed":7726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1545.2,"last_update":"2026-03-21T12:28:19.069351789Z"} +2026/03/21 12:28:24 [metric_collector] {"stage_name":"metric_collector","events_processed":4169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":833.8,"last_update":"2026-03-21T12:28:19.069225057Z"} +2026/03/21 12:28:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1670,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:28:19.076435493Z"} +2026/03/21 12:28:24 [detection_layer] {"stage_name":"detection_layer","events_processed":138,"events_dropped":0,"avg_latency_ms":17.537394589906206,"throughput_eps":0,"last_update":"2026-03-21T12:28:19.209914594Z"} +2026/03/21 12:28:24 [transform_engine] {"stage_name":"transform_engine","events_processed":139,"events_dropped":0,"avg_latency_ms":660.4117871542901,"throughput_eps":0,"last_update":"2026-03-21T12:28:19.34377732Z"} +2026/03/21 12:28:24 ───────────────────────────────────────────────── +2026/03/21 12:28:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:28:29 [transform_engine] {"stage_name":"transform_engine","events_processed":139,"events_dropped":0,"avg_latency_ms":660.4117871542901,"throughput_eps":0,"last_update":"2026-03-21T12:28:24.210755962Z"} +2026/03/21 12:28:29 [log_collector] {"stage_name":"log_collector","events_processed":7746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1549.2,"last_update":"2026-03-21T12:28:24.068694647Z"} +2026/03/21 12:28:29 [metric_collector] {"stage_name":"metric_collector","events_processed":4174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":834.8,"last_update":"2026-03-21T12:28:24.06932236Z"} +2026/03/21 12:28:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:28:24.07730798Z"} +2026/03/21 12:28:29 [detection_layer] {"stage_name":"detection_layer","events_processed":139,"events_dropped":0,"avg_latency_ms":16.851430071924966,"throughput_eps":0,"last_update":"2026-03-21T12:28:24.210644388Z"} +2026/03/21 12:28:29 ───────────────────────────────────────────────── +2026/03/21 12:28:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:28:34 [log_collector] {"stage_name":"log_collector","events_processed":7746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1549.2,"last_update":"2026-03-21T12:28:29.068721478Z"} +2026/03/21 12:28:34 [metric_collector] {"stage_name":"metric_collector","events_processed":4179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":835.8,"last_update":"2026-03-21T12:28:29.068993469Z"} +2026/03/21 12:28:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:28:29.078079836Z"} +2026/03/21 12:28:34 [detection_layer] {"stage_name":"detection_layer","events_processed":139,"events_dropped":0,"avg_latency_ms":16.851430071924966,"throughput_eps":0,"last_update":"2026-03-21T12:28:29.210467388Z"} +2026/03/21 12:28:34 [transform_engine] {"stage_name":"transform_engine","events_processed":139,"events_dropped":0,"avg_latency_ms":660.4117871542901,"throughput_eps":0,"last_update":"2026-03-21T12:28:29.210482737Z"} +2026/03/21 12:28:34 ───────────────────────────────────────────────── +2026/03/21 12:28:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:28:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1676,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:28:34.07817723Z"} +2026/03/21 12:28:39 [detection_layer] {"stage_name":"detection_layer","events_processed":139,"events_dropped":0,"avg_latency_ms":16.851430071924966,"throughput_eps":0,"last_update":"2026-03-21T12:28:34.210454341Z"} +2026/03/21 12:28:39 [transform_engine] {"stage_name":"transform_engine","events_processed":139,"events_dropped":0,"avg_latency_ms":660.4117871542901,"throughput_eps":0,"last_update":"2026-03-21T12:28:34.210470321Z"} +2026/03/21 12:28:39 [log_collector] {"stage_name":"log_collector","events_processed":7746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1549.2,"last_update":"2026-03-21T12:28:34.068585074Z"} +2026/03/21 12:28:39 [metric_collector] {"stage_name":"metric_collector","events_processed":4184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":836.8,"last_update":"2026-03-21T12:28:34.068919664Z"} +2026/03/21 12:28:39 ───────────────────────────────────────────────── +2026/03/21 12:28:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:28:44 [transform_engine] {"stage_name":"transform_engine","events_processed":139,"events_dropped":0,"avg_latency_ms":660.4117871542901,"throughput_eps":0,"last_update":"2026-03-21T12:28:39.209933641Z"} +2026/03/21 12:28:44 [log_collector] {"stage_name":"log_collector","events_processed":7746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1549.2,"last_update":"2026-03-21T12:28:39.068775826Z"} +2026/03/21 12:28:44 [metric_collector] {"stage_name":"metric_collector","events_processed":4189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":837.8,"last_update":"2026-03-21T12:28:39.069174911Z"} +2026/03/21 12:28:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:28:39.077685686Z"} +2026/03/21 12:28:44 [detection_layer] {"stage_name":"detection_layer","events_processed":139,"events_dropped":0,"avg_latency_ms":16.851430071924966,"throughput_eps":0,"last_update":"2026-03-21T12:28:39.209921277Z"} +2026/03/21 12:28:44 ───────────────────────────────────────────────── +2026/03/21 12:28:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:28:49 [metric_collector] {"stage_name":"metric_collector","events_processed":4199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":839.8,"last_update":"2026-03-21T12:28:49.068656391Z"} +2026/03/21 12:28:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:28:44.078228441Z"} +2026/03/21 12:28:49 [detection_layer] {"stage_name":"detection_layer","events_processed":139,"events_dropped":0,"avg_latency_ms":16.851430071924966,"throughput_eps":0,"last_update":"2026-03-21T12:28:44.210404178Z"} +2026/03/21 12:28:49 [transform_engine] {"stage_name":"transform_engine","events_processed":139,"events_dropped":0,"avg_latency_ms":660.4117871542901,"throughput_eps":0,"last_update":"2026-03-21T12:28:44.210418195Z"} +2026/03/21 12:28:49 [log_collector] {"stage_name":"log_collector","events_processed":7746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1549.2,"last_update":"2026-03-21T12:28:44.068766335Z"} +2026/03/21 12:28:49 ───────────────────────────────────────────────── +2026/03/21 12:28:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:28:54 [log_collector] {"stage_name":"log_collector","events_processed":7746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1549.2,"last_update":"2026-03-21T12:28:49.068672021Z"} +2026/03/21 12:28:54 [metric_collector] {"stage_name":"metric_collector","events_processed":4199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":839.8,"last_update":"2026-03-21T12:28:49.068656391Z"} +2026/03/21 12:28:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:28:49.078737123Z"} +2026/03/21 12:28:54 [detection_layer] {"stage_name":"detection_layer","events_processed":139,"events_dropped":0,"avg_latency_ms":16.851430071924966,"throughput_eps":0,"last_update":"2026-03-21T12:28:49.210084083Z"} +2026/03/21 12:28:54 [transform_engine] {"stage_name":"transform_engine","events_processed":140,"events_dropped":0,"avg_latency_ms":550.6927305234321,"throughput_eps":0,"last_update":"2026-03-21T12:28:49.321914315Z"} +2026/03/21 12:28:54 ───────────────────────────────────────────────── +2026/03/21 12:28:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:28:59 [log_collector] {"stage_name":"log_collector","events_processed":7749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1549.8,"last_update":"2026-03-21T12:28:54.068500497Z"} +2026/03/21 12:28:59 [metric_collector] {"stage_name":"metric_collector","events_processed":4204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":840.8,"last_update":"2026-03-21T12:28:54.068857771Z"} +2026/03/21 12:28:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:28:54.078136728Z"} +2026/03/21 12:28:59 [detection_layer] {"stage_name":"detection_layer","events_processed":140,"events_dropped":0,"avg_latency_ms":17.792965857539972,"throughput_eps":0,"last_update":"2026-03-21T12:28:54.210376578Z"} +2026/03/21 12:28:59 [transform_engine] {"stage_name":"transform_engine","events_processed":140,"events_dropped":0,"avg_latency_ms":550.6927305234321,"throughput_eps":0,"last_update":"2026-03-21T12:28:54.210389983Z"} +2026/03/21 12:28:59 ───────────────────────────────────────────────── +2026/03/21 12:29:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:29:04 [detection_layer] {"stage_name":"detection_layer","events_processed":140,"events_dropped":0,"avg_latency_ms":17.792965857539972,"throughput_eps":0,"last_update":"2026-03-21T12:28:59.210403385Z"} +2026/03/21 12:29:04 [transform_engine] {"stage_name":"transform_engine","events_processed":140,"events_dropped":0,"avg_latency_ms":550.6927305234321,"throughput_eps":0,"last_update":"2026-03-21T12:28:59.21041694Z"} +2026/03/21 12:29:04 [log_collector] {"stage_name":"log_collector","events_processed":7749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1549.8,"last_update":"2026-03-21T12:28:59.068487197Z"} +2026/03/21 12:29:04 [metric_collector] {"stage_name":"metric_collector","events_processed":4209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":841.8,"last_update":"2026-03-21T12:28:59.068725584Z"} +2026/03/21 12:29:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:28:59.075776755Z"} +2026/03/21 12:29:04 ───────────────────────────────────────────────── +2026/03/21 12:29:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:29:09 [log_collector] {"stage_name":"log_collector","events_processed":7757,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1551.4,"last_update":"2026-03-21T12:29:04.068856829Z"} +2026/03/21 12:29:09 [metric_collector] {"stage_name":"metric_collector","events_processed":4219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":843.8,"last_update":"2026-03-21T12:29:09.068706836Z"} +2026/03/21 12:29:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1688,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:29:04.089417377Z"} +2026/03/21 12:29:09 [detection_layer] {"stage_name":"detection_layer","events_processed":140,"events_dropped":0,"avg_latency_ms":17.792965857539972,"throughput_eps":0,"last_update":"2026-03-21T12:29:04.21026788Z"} +2026/03/21 12:29:09 [transform_engine] {"stage_name":"transform_engine","events_processed":140,"events_dropped":0,"avg_latency_ms":550.6927305234321,"throughput_eps":0,"last_update":"2026-03-21T12:29:04.210283821Z"} +2026/03/21 12:29:09 ───────────────────────────────────────────────── +2026/03/21 12:29:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:29:14 [detection_layer] {"stage_name":"detection_layer","events_processed":140,"events_dropped":0,"avg_latency_ms":17.792965857539972,"throughput_eps":0,"last_update":"2026-03-21T12:29:09.210242686Z"} +2026/03/21 12:29:14 [transform_engine] {"stage_name":"transform_engine","events_processed":140,"events_dropped":0,"avg_latency_ms":550.6927305234321,"throughput_eps":0,"last_update":"2026-03-21T12:29:09.210255371Z"} +2026/03/21 12:29:14 [log_collector] {"stage_name":"log_collector","events_processed":7767,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1553.4,"last_update":"2026-03-21T12:29:09.068720121Z"} +2026/03/21 12:29:14 [metric_collector] {"stage_name":"metric_collector","events_processed":4219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":843.8,"last_update":"2026-03-21T12:29:09.068706836Z"} +2026/03/21 12:29:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:29:09.074978835Z"} +2026/03/21 12:29:14 ───────────────────────────────────────────────── +2026/03/21 12:29:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:29:19 [log_collector] {"stage_name":"log_collector","events_processed":7776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1555.2,"last_update":"2026-03-21T12:29:14.068649761Z"} +2026/03/21 12:29:19 [metric_collector] {"stage_name":"metric_collector","events_processed":4224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":844.8,"last_update":"2026-03-21T12:29:14.06894114Z"} +2026/03/21 12:29:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:29:14.077973213Z"} +2026/03/21 12:29:19 [detection_layer] {"stage_name":"detection_layer","events_processed":140,"events_dropped":0,"avg_latency_ms":17.792965857539972,"throughput_eps":0,"last_update":"2026-03-21T12:29:14.210171896Z"} +2026/03/21 12:29:19 [transform_engine] {"stage_name":"transform_engine","events_processed":140,"events_dropped":0,"avg_latency_ms":550.6927305234321,"throughput_eps":0,"last_update":"2026-03-21T12:29:14.210183739Z"} +2026/03/21 12:29:19 ───────────────────────────────────────────────── +2026/03/21 12:29:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:29:24 [log_collector] {"stage_name":"log_collector","events_processed":7776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1555.2,"last_update":"2026-03-21T12:29:19.068789113Z"} +2026/03/21 12:29:24 [metric_collector] {"stage_name":"metric_collector","events_processed":4229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":845.8,"last_update":"2026-03-21T12:29:19.069112882Z"} +2026/03/21 12:29:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:29:19.078187137Z"} +2026/03/21 12:29:24 [detection_layer] {"stage_name":"detection_layer","events_processed":140,"events_dropped":0,"avg_latency_ms":17.792965857539972,"throughput_eps":0,"last_update":"2026-03-21T12:29:19.21044323Z"} +2026/03/21 12:29:24 [transform_engine] {"stage_name":"transform_engine","events_processed":141,"events_dropped":0,"avg_latency_ms":463.04693141874577,"throughput_eps":0,"last_update":"2026-03-21T12:29:19.322924459Z"} +2026/03/21 12:29:24 ───────────────────────────────────────────────── +2026/03/21 12:29:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:29:29 [log_collector] {"stage_name":"log_collector","events_processed":7776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1555.2,"last_update":"2026-03-21T12:29:24.06885935Z"} +2026/03/21 12:29:29 [metric_collector] {"stage_name":"metric_collector","events_processed":4234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":846.8,"last_update":"2026-03-21T12:29:24.06903162Z"} +2026/03/21 12:29:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:29:24.077782515Z"} +2026/03/21 12:29:29 [detection_layer] {"stage_name":"detection_layer","events_processed":141,"events_dropped":0,"avg_latency_ms":17.91423228603198,"throughput_eps":0,"last_update":"2026-03-21T12:29:24.210458091Z"} +2026/03/21 12:29:29 [transform_engine] {"stage_name":"transform_engine","events_processed":141,"events_dropped":0,"avg_latency_ms":463.04693141874577,"throughput_eps":0,"last_update":"2026-03-21T12:29:24.210468021Z"} +2026/03/21 12:29:29 ───────────────────────────────────────────────── +2026/03/21 12:29:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:29:34 [log_collector] {"stage_name":"log_collector","events_processed":7776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1555.2,"last_update":"2026-03-21T12:29:29.068991292Z"} +2026/03/21 12:29:34 [metric_collector] {"stage_name":"metric_collector","events_processed":4239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":847.8,"last_update":"2026-03-21T12:29:29.069187527Z"} +2026/03/21 12:29:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:29:29.078076658Z"} +2026/03/21 12:29:34 [detection_layer] {"stage_name":"detection_layer","events_processed":141,"events_dropped":0,"avg_latency_ms":17.91423228603198,"throughput_eps":0,"last_update":"2026-03-21T12:29:29.210398175Z"} +2026/03/21 12:29:34 [transform_engine] {"stage_name":"transform_engine","events_processed":141,"events_dropped":0,"avg_latency_ms":463.04693141874577,"throughput_eps":0,"last_update":"2026-03-21T12:29:29.210411621Z"} +2026/03/21 12:29:34 ───────────────────────────────────────────────── +2026/03/21 12:29:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:29:39 [log_collector] {"stage_name":"log_collector","events_processed":7776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1555.2,"last_update":"2026-03-21T12:29:34.068863486Z"} +2026/03/21 12:29:39 [metric_collector] {"stage_name":"metric_collector","events_processed":4244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":848.8,"last_update":"2026-03-21T12:29:34.06903211Z"} +2026/03/21 12:29:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1700,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:29:34.07973399Z"} +2026/03/21 12:29:39 [detection_layer] {"stage_name":"detection_layer","events_processed":141,"events_dropped":0,"avg_latency_ms":17.91423228603198,"throughput_eps":0,"last_update":"2026-03-21T12:29:34.210140011Z"} +2026/03/21 12:29:39 [transform_engine] {"stage_name":"transform_engine","events_processed":141,"events_dropped":0,"avg_latency_ms":463.04693141874577,"throughput_eps":0,"last_update":"2026-03-21T12:29:34.210156523Z"} +2026/03/21 12:29:39 ───────────────────────────────────────────────── +2026/03/21 12:29:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:29:44 [log_collector] {"stage_name":"log_collector","events_processed":7776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1555.2,"last_update":"2026-03-21T12:29:39.068486815Z"} +2026/03/21 12:29:44 [metric_collector] {"stage_name":"metric_collector","events_processed":4249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":849.8,"last_update":"2026-03-21T12:29:39.068855331Z"} +2026/03/21 12:29:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1702,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:29:39.077656964Z"} +2026/03/21 12:29:44 [detection_layer] {"stage_name":"detection_layer","events_processed":141,"events_dropped":0,"avg_latency_ms":17.91423228603198,"throughput_eps":0,"last_update":"2026-03-21T12:29:39.210897572Z"} +2026/03/21 12:29:44 [transform_engine] {"stage_name":"transform_engine","events_processed":141,"events_dropped":0,"avg_latency_ms":463.04693141874577,"throughput_eps":0,"last_update":"2026-03-21T12:29:39.209770514Z"} +2026/03/21 12:29:44 ───────────────────────────────────────────────── +2026/03/21 12:29:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:29:49 [log_collector] {"stage_name":"log_collector","events_processed":7776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1555.2,"last_update":"2026-03-21T12:29:44.068178573Z"} +2026/03/21 12:29:49 [metric_collector] {"stage_name":"metric_collector","events_processed":4254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":850.8,"last_update":"2026-03-21T12:29:44.068638544Z"} +2026/03/21 12:29:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:29:44.078339609Z"} +2026/03/21 12:29:49 [detection_layer] {"stage_name":"detection_layer","events_processed":141,"events_dropped":0,"avg_latency_ms":17.91423228603198,"throughput_eps":0,"last_update":"2026-03-21T12:29:44.210510429Z"} +2026/03/21 12:29:49 [transform_engine] {"stage_name":"transform_engine","events_processed":141,"events_dropped":0,"avg_latency_ms":463.04693141874577,"throughput_eps":0,"last_update":"2026-03-21T12:29:44.21052078Z"} +2026/03/21 12:29:49 ───────────────────────────────────────────────── +2026/03/21 12:29:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:29:54 [log_collector] {"stage_name":"log_collector","events_processed":7776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1555.2,"last_update":"2026-03-21T12:29:49.06811563Z"} +2026/03/21 12:29:54 [metric_collector] {"stage_name":"metric_collector","events_processed":4259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":851.8,"last_update":"2026-03-21T12:29:49.068550252Z"} +2026/03/21 12:29:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:29:49.077429172Z"} +2026/03/21 12:29:54 [detection_layer] {"stage_name":"detection_layer","events_processed":141,"events_dropped":0,"avg_latency_ms":17.91423228603198,"throughput_eps":0,"last_update":"2026-03-21T12:29:49.21078929Z"} +2026/03/21 12:29:54 [transform_engine] {"stage_name":"transform_engine","events_processed":142,"events_dropped":0,"avg_latency_ms":384.18901933499666,"throughput_eps":0,"last_update":"2026-03-21T12:29:49.278430064Z"} +2026/03/21 12:29:54 ───────────────────────────────────────────────── +Saved state: 14 clusters, 7777 messages, reason: none +2026/03/21 12:29:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:29:59 [transform_engine] {"stage_name":"transform_engine","events_processed":142,"events_dropped":0,"avg_latency_ms":384.18901933499666,"throughput_eps":0,"last_update":"2026-03-21T12:29:54.209910924Z"} +2026/03/21 12:29:59 [log_collector] {"stage_name":"log_collector","events_processed":7776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1555.2,"last_update":"2026-03-21T12:29:54.068067302Z"} +2026/03/21 12:29:59 [metric_collector] {"stage_name":"metric_collector","events_processed":4264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":852.8,"last_update":"2026-03-21T12:29:54.068746493Z"} +2026/03/21 12:29:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:29:54.079789117Z"} +2026/03/21 12:29:59 [detection_layer] {"stage_name":"detection_layer","events_processed":142,"events_dropped":0,"avg_latency_ms":18.951997028825584,"throughput_eps":0,"last_update":"2026-03-21T12:29:54.209900615Z"} +2026/03/21 12:29:59 ───────────────────────────────────────────────── +2026/03/21 12:30:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:30:04 [log_collector] {"stage_name":"log_collector","events_processed":7789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1557.8,"last_update":"2026-03-21T12:29:59.068408259Z"} +2026/03/21 12:30:04 [metric_collector] {"stage_name":"metric_collector","events_processed":4269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":853.8,"last_update":"2026-03-21T12:29:59.068888719Z"} +2026/03/21 12:30:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:29:59.075904302Z"} +2026/03/21 12:30:04 [detection_layer] {"stage_name":"detection_layer","events_processed":142,"events_dropped":0,"avg_latency_ms":18.951997028825584,"throughput_eps":0,"last_update":"2026-03-21T12:29:59.210150607Z"} +2026/03/21 12:30:04 [transform_engine] {"stage_name":"transform_engine","events_processed":142,"events_dropped":0,"avg_latency_ms":384.18901933499666,"throughput_eps":0,"last_update":"2026-03-21T12:29:59.210162269Z"} +2026/03/21 12:30:04 ───────────────────────────────────────────────── +2026/03/21 12:30:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:30:09 [transform_engine] {"stage_name":"transform_engine","events_processed":142,"events_dropped":0,"avg_latency_ms":384.18901933499666,"throughput_eps":0,"last_update":"2026-03-21T12:30:04.210374848Z"} +2026/03/21 12:30:09 [log_collector] {"stage_name":"log_collector","events_processed":7790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1558,"last_update":"2026-03-21T12:30:04.068817183Z"} +2026/03/21 12:30:09 [metric_collector] {"stage_name":"metric_collector","events_processed":4274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":854.8,"last_update":"2026-03-21T12:30:04.069308254Z"} +2026/03/21 12:30:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1712,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:30:04.078085911Z"} +2026/03/21 12:30:09 [detection_layer] {"stage_name":"detection_layer","events_processed":142,"events_dropped":0,"avg_latency_ms":18.951997028825584,"throughput_eps":0,"last_update":"2026-03-21T12:30:04.210343548Z"} +2026/03/21 12:30:09 ───────────────────────────────────────────────── +2026/03/21 12:30:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:30:14 [log_collector] {"stage_name":"log_collector","events_processed":7790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1558,"last_update":"2026-03-21T12:30:09.068647748Z"} +2026/03/21 12:30:14 [metric_collector] {"stage_name":"metric_collector","events_processed":4279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":855.8,"last_update":"2026-03-21T12:30:09.069072251Z"} +2026/03/21 12:30:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:30:09.077399736Z"} +2026/03/21 12:30:14 [detection_layer] {"stage_name":"detection_layer","events_processed":142,"events_dropped":0,"avg_latency_ms":18.951997028825584,"throughput_eps":0,"last_update":"2026-03-21T12:30:09.210662989Z"} +2026/03/21 12:30:14 [transform_engine] {"stage_name":"transform_engine","events_processed":142,"events_dropped":0,"avg_latency_ms":384.18901933499666,"throughput_eps":0,"last_update":"2026-03-21T12:30:09.21067426Z"} +2026/03/21 12:30:14 ───────────────────────────────────────────────── +2026/03/21 12:30:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:30:19 [log_collector] {"stage_name":"log_collector","events_processed":7790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1558,"last_update":"2026-03-21T12:30:14.068605235Z"} +2026/03/21 12:30:19 [metric_collector] {"stage_name":"metric_collector","events_processed":4284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":856.8,"last_update":"2026-03-21T12:30:14.069280908Z"} +2026/03/21 12:30:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:30:14.077766546Z"} +2026/03/21 12:30:19 [detection_layer] {"stage_name":"detection_layer","events_processed":142,"events_dropped":0,"avg_latency_ms":18.951997028825584,"throughput_eps":0,"last_update":"2026-03-21T12:30:14.209926727Z"} +2026/03/21 12:30:19 [transform_engine] {"stage_name":"transform_engine","events_processed":142,"events_dropped":0,"avg_latency_ms":384.18901933499666,"throughput_eps":0,"last_update":"2026-03-21T12:30:14.20993842Z"} +2026/03/21 12:30:19 ───────────────────────────────────────────────── +2026/03/21 12:30:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:30:24 [log_collector] {"stage_name":"log_collector","events_processed":7790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1558,"last_update":"2026-03-21T12:30:19.068990308Z"} +2026/03/21 12:30:24 [metric_collector] {"stage_name":"metric_collector","events_processed":4289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":857.8,"last_update":"2026-03-21T12:30:19.069058749Z"} +2026/03/21 12:30:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1718,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:30:19.078641748Z"} +2026/03/21 12:30:24 [detection_layer] {"stage_name":"detection_layer","events_processed":142,"events_dropped":0,"avg_latency_ms":18.951997028825584,"throughput_eps":0,"last_update":"2026-03-21T12:30:19.209985206Z"} +2026/03/21 12:30:24 [transform_engine] {"stage_name":"transform_engine","events_processed":143,"events_dropped":0,"avg_latency_ms":331.23296266799736,"throughput_eps":0,"last_update":"2026-03-21T12:30:19.329406197Z"} +2026/03/21 12:30:24 ───────────────────────────────────────────────── +2026/03/21 12:30:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:30:29 [log_collector] {"stage_name":"log_collector","events_processed":7790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1558,"last_update":"2026-03-21T12:30:24.068307885Z"} +2026/03/21 12:30:29 [metric_collector] {"stage_name":"metric_collector","events_processed":4294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":858.8,"last_update":"2026-03-21T12:30:24.068800309Z"} +2026/03/21 12:30:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:30:24.077250809Z"} +2026/03/21 12:30:29 [detection_layer] {"stage_name":"detection_layer","events_processed":143,"events_dropped":0,"avg_latency_ms":19.145624023060467,"throughput_eps":0,"last_update":"2026-03-21T12:30:24.210634905Z"} +2026/03/21 12:30:29 [transform_engine] {"stage_name":"transform_engine","events_processed":143,"events_dropped":0,"avg_latency_ms":331.23296266799736,"throughput_eps":0,"last_update":"2026-03-21T12:30:24.210650144Z"} +2026/03/21 12:30:29 ───────────────────────────────────────────────── +2026/03/21 12:30:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:30:34 [detection_layer] {"stage_name":"detection_layer","events_processed":143,"events_dropped":0,"avg_latency_ms":19.145624023060467,"throughput_eps":0,"last_update":"2026-03-21T12:30:29.210123138Z"} +2026/03/21 12:30:34 [transform_engine] {"stage_name":"transform_engine","events_processed":143,"events_dropped":0,"avg_latency_ms":331.23296266799736,"throughput_eps":0,"last_update":"2026-03-21T12:30:29.210137135Z"} +2026/03/21 12:30:34 [log_collector] {"stage_name":"log_collector","events_processed":7790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1558,"last_update":"2026-03-21T12:30:29.068551114Z"} +2026/03/21 12:30:34 [metric_collector] {"stage_name":"metric_collector","events_processed":4299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":859.8,"last_update":"2026-03-21T12:30:29.069060981Z"} +2026/03/21 12:30:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1722,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:30:29.077862153Z"} +2026/03/21 12:30:34 ───────────────────────────────────────────────── +2026/03/21 12:30:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:30:39 [log_collector] {"stage_name":"log_collector","events_processed":7790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1558,"last_update":"2026-03-21T12:30:34.068939709Z"} +2026/03/21 12:30:39 [metric_collector] {"stage_name":"metric_collector","events_processed":4304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":860.8,"last_update":"2026-03-21T12:30:34.069262608Z"} +2026/03/21 12:30:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:30:34.077978096Z"} +2026/03/21 12:30:39 [detection_layer] {"stage_name":"detection_layer","events_processed":143,"events_dropped":0,"avg_latency_ms":19.145624023060467,"throughput_eps":0,"last_update":"2026-03-21T12:30:34.210402204Z"} +2026/03/21 12:30:39 [transform_engine] {"stage_name":"transform_engine","events_processed":143,"events_dropped":0,"avg_latency_ms":331.23296266799736,"throughput_eps":0,"last_update":"2026-03-21T12:30:34.210418054Z"} +2026/03/21 12:30:39 ───────────────────────────────────────────────── +2026/03/21 12:30:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:30:44 [log_collector] {"stage_name":"log_collector","events_processed":7790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1558,"last_update":"2026-03-21T12:30:39.068116173Z"} +2026/03/21 12:30:44 [metric_collector] {"stage_name":"metric_collector","events_processed":4309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":861.8,"last_update":"2026-03-21T12:30:39.068394235Z"} +2026/03/21 12:30:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:30:39.077416911Z"} +2026/03/21 12:30:44 [detection_layer] {"stage_name":"detection_layer","events_processed":143,"events_dropped":0,"avg_latency_ms":19.145624023060467,"throughput_eps":0,"last_update":"2026-03-21T12:30:39.210855541Z"} +2026/03/21 12:30:44 [transform_engine] {"stage_name":"transform_engine","events_processed":143,"events_dropped":0,"avg_latency_ms":331.23296266799736,"throughput_eps":0,"last_update":"2026-03-21T12:30:39.209701742Z"} +2026/03/21 12:30:44 ───────────────────────────────────────────────── +2026/03/21 12:30:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:30:49 [log_collector] {"stage_name":"log_collector","events_processed":7790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1558,"last_update":"2026-03-21T12:30:44.068445128Z"} +2026/03/21 12:30:49 [metric_collector] {"stage_name":"metric_collector","events_processed":4314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":862.8,"last_update":"2026-03-21T12:30:44.068837009Z"} +2026/03/21 12:30:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1728,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:30:44.077517219Z"} +2026/03/21 12:30:49 [detection_layer] {"stage_name":"detection_layer","events_processed":143,"events_dropped":0,"avg_latency_ms":19.145624023060467,"throughput_eps":0,"last_update":"2026-03-21T12:30:44.210879844Z"} +2026/03/21 12:30:49 [transform_engine] {"stage_name":"transform_engine","events_processed":143,"events_dropped":0,"avg_latency_ms":331.23296266799736,"throughput_eps":0,"last_update":"2026-03-21T12:30:44.209760069Z"} +2026/03/21 12:30:49 ───────────────────────────────────────────────── +2026/03/21 12:30:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:30:54 [log_collector] {"stage_name":"log_collector","events_processed":7790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1558,"last_update":"2026-03-21T12:30:49.068745736Z"} +2026/03/21 12:30:54 [metric_collector] {"stage_name":"metric_collector","events_processed":4319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":863.8,"last_update":"2026-03-21T12:30:49.069153496Z"} +2026/03/21 12:30:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1728,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:30:49.068643109Z"} +2026/03/21 12:30:54 [detection_layer] {"stage_name":"detection_layer","events_processed":143,"events_dropped":0,"avg_latency_ms":19.145624023060467,"throughput_eps":0,"last_update":"2026-03-21T12:30:49.210529955Z"} +2026/03/21 12:30:54 [transform_engine] {"stage_name":"transform_engine","events_processed":144,"events_dropped":0,"avg_latency_ms":280.87409893439786,"throughput_eps":0,"last_update":"2026-03-21T12:30:49.28964979Z"} +2026/03/21 12:30:54 ───────────────────────────────────────────────── +2026/03/21 12:30:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:30:59 [detection_layer] {"stage_name":"detection_layer","events_processed":144,"events_dropped":0,"avg_latency_ms":19.597209418448376,"throughput_eps":0,"last_update":"2026-03-21T12:30:54.210253127Z"} +2026/03/21 12:30:59 [transform_engine] {"stage_name":"transform_engine","events_processed":144,"events_dropped":0,"avg_latency_ms":280.87409893439786,"throughput_eps":0,"last_update":"2026-03-21T12:30:54.21021776Z"} +2026/03/21 12:30:59 [log_collector] {"stage_name":"log_collector","events_processed":7790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1558,"last_update":"2026-03-21T12:30:54.068127754Z"} +2026/03/21 12:30:59 [metric_collector] {"stage_name":"metric_collector","events_processed":4324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":864.8,"last_update":"2026-03-21T12:30:54.068567876Z"} +2026/03/21 12:30:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:30:54.077959619Z"} +2026/03/21 12:30:59 ───────────────────────────────────────────────── +2026/03/21 12:31:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:31:04 [log_collector] {"stage_name":"log_collector","events_processed":7790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1558,"last_update":"2026-03-21T12:30:59.069216597Z"} +2026/03/21 12:31:04 [metric_collector] {"stage_name":"metric_collector","events_processed":4329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":865.8,"last_update":"2026-03-21T12:30:59.069187732Z"} +2026/03/21 12:31:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:30:59.078189939Z"} +2026/03/21 12:31:04 [detection_layer] {"stage_name":"detection_layer","events_processed":144,"events_dropped":0,"avg_latency_ms":19.597209418448376,"throughput_eps":0,"last_update":"2026-03-21T12:30:59.210585653Z"} +2026/03/21 12:31:04 [transform_engine] {"stage_name":"transform_engine","events_processed":144,"events_dropped":0,"avg_latency_ms":280.87409893439786,"throughput_eps":0,"last_update":"2026-03-21T12:30:59.210525257Z"} +2026/03/21 12:31:04 ───────────────────────────────────────────────── +Saved state: 14 clusters, 7791 messages, reason: none +2026/03/21 12:31:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:31:09 [log_collector] {"stage_name":"log_collector","events_processed":7790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1558,"last_update":"2026-03-21T12:31:04.068170621Z"} +2026/03/21 12:31:09 [metric_collector] {"stage_name":"metric_collector","events_processed":4334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":866.8,"last_update":"2026-03-21T12:31:04.068511874Z"} +2026/03/21 12:31:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1736,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:31:04.079667024Z"} +2026/03/21 12:31:09 [detection_layer] {"stage_name":"detection_layer","events_processed":144,"events_dropped":0,"avg_latency_ms":19.597209418448376,"throughput_eps":0,"last_update":"2026-03-21T12:31:04.20994862Z"} +2026/03/21 12:31:09 [transform_engine] {"stage_name":"transform_engine","events_processed":144,"events_dropped":0,"avg_latency_ms":280.87409893439786,"throughput_eps":0,"last_update":"2026-03-21T12:31:04.209992765Z"} +2026/03/21 12:31:09 ───────────────────────────────────────────────── +2026/03/21 12:31:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:31:14 [log_collector] {"stage_name":"log_collector","events_processed":7795,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1559,"last_update":"2026-03-21T12:31:09.068649703Z"} +2026/03/21 12:31:14 [metric_collector] {"stage_name":"metric_collector","events_processed":4339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":867.8,"last_update":"2026-03-21T12:31:09.068894521Z"} +2026/03/21 12:31:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1738,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:31:09.075086086Z"} +2026/03/21 12:31:14 [detection_layer] {"stage_name":"detection_layer","events_processed":144,"events_dropped":0,"avg_latency_ms":19.597209418448376,"throughput_eps":0,"last_update":"2026-03-21T12:31:09.210381182Z"} +2026/03/21 12:31:14 [transform_engine] {"stage_name":"transform_engine","events_processed":144,"events_dropped":0,"avg_latency_ms":280.87409893439786,"throughput_eps":0,"last_update":"2026-03-21T12:31:09.210413644Z"} +2026/03/21 12:31:14 ───────────────────────────────────────────────── +2026/03/21 12:31:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:31:19 [log_collector] {"stage_name":"log_collector","events_processed":7795,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1559,"last_update":"2026-03-21T12:31:14.068376822Z"} +2026/03/21 12:31:19 [metric_collector] {"stage_name":"metric_collector","events_processed":4344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":868.8,"last_update":"2026-03-21T12:31:14.068594247Z"} +2026/03/21 12:31:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1740,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:31:14.077681257Z"} +2026/03/21 12:31:19 [detection_layer] {"stage_name":"detection_layer","events_processed":144,"events_dropped":0,"avg_latency_ms":19.597209418448376,"throughput_eps":0,"last_update":"2026-03-21T12:31:14.210817119Z"} +2026/03/21 12:31:19 [transform_engine] {"stage_name":"transform_engine","events_processed":144,"events_dropped":0,"avg_latency_ms":280.87409893439786,"throughput_eps":0,"last_update":"2026-03-21T12:31:14.209699519Z"} +2026/03/21 12:31:19 ───────────────────────────────────────────────── +2026/03/21 12:31:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:31:24 [log_collector] {"stage_name":"log_collector","events_processed":7795,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1559,"last_update":"2026-03-21T12:31:19.068638921Z"} +2026/03/21 12:31:24 [metric_collector] {"stage_name":"metric_collector","events_processed":4349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":869.8,"last_update":"2026-03-21T12:31:19.068909288Z"} +2026/03/21 12:31:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:31:19.075330985Z"} +2026/03/21 12:31:24 [detection_layer] {"stage_name":"detection_layer","events_processed":144,"events_dropped":0,"avg_latency_ms":19.597209418448376,"throughput_eps":0,"last_update":"2026-03-21T12:31:19.210537291Z"} +2026/03/21 12:31:24 [transform_engine] {"stage_name":"transform_engine","events_processed":145,"events_dropped":0,"avg_latency_ms":256.2349359475183,"throughput_eps":0,"last_update":"2026-03-21T12:31:19.368283266Z"} +2026/03/21 12:31:24 ───────────────────────────────────────────────── +2026/03/21 12:31:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:31:29 [detection_layer] {"stage_name":"detection_layer","events_processed":145,"events_dropped":0,"avg_latency_ms":18.378106134758703,"throughput_eps":0,"last_update":"2026-03-21T12:31:24.210811062Z"} +2026/03/21 12:31:29 [transform_engine] {"stage_name":"transform_engine","events_processed":145,"events_dropped":0,"avg_latency_ms":256.2349359475183,"throughput_eps":0,"last_update":"2026-03-21T12:31:24.209695927Z"} +2026/03/21 12:31:29 [log_collector] {"stage_name":"log_collector","events_processed":7795,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1559,"last_update":"2026-03-21T12:31:24.068135965Z"} +2026/03/21 12:31:29 [metric_collector] {"stage_name":"metric_collector","events_processed":4353,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":870.6,"last_update":"2026-03-21T12:31:24.068153618Z"} +2026/03/21 12:31:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:31:24.079565199Z"} +2026/03/21 12:31:29 ───────────────────────────────────────────────── +2026/03/21 12:31:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:31:34 [transform_engine] {"stage_name":"transform_engine","events_processed":145,"events_dropped":0,"avg_latency_ms":256.2349359475183,"throughput_eps":0,"last_update":"2026-03-21T12:31:29.210429765Z"} +2026/03/21 12:31:34 [log_collector] {"stage_name":"log_collector","events_processed":7795,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1559,"last_update":"2026-03-21T12:31:29.068602881Z"} +2026/03/21 12:31:34 [metric_collector] {"stage_name":"metric_collector","events_processed":4359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":871.8,"last_update":"2026-03-21T12:31:29.068820248Z"} +2026/03/21 12:31:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:31:29.075155599Z"} +2026/03/21 12:31:34 [detection_layer] {"stage_name":"detection_layer","events_processed":145,"events_dropped":0,"avg_latency_ms":18.378106134758703,"throughput_eps":0,"last_update":"2026-03-21T12:31:29.210458511Z"} +2026/03/21 12:31:34 ───────────────────────────────────────────────── +2026/03/21 12:31:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:31:39 [log_collector] {"stage_name":"log_collector","events_processed":7795,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1559,"last_update":"2026-03-21T12:31:34.068534982Z"} +2026/03/21 12:31:39 [metric_collector] {"stage_name":"metric_collector","events_processed":4364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":872.8,"last_update":"2026-03-21T12:31:34.068772236Z"} +2026/03/21 12:31:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:31:34.075444192Z"} +2026/03/21 12:31:39 [detection_layer] {"stage_name":"detection_layer","events_processed":145,"events_dropped":0,"avg_latency_ms":18.378106134758703,"throughput_eps":0,"last_update":"2026-03-21T12:31:34.210676338Z"} +2026/03/21 12:31:39 [transform_engine] {"stage_name":"transform_engine","events_processed":145,"events_dropped":0,"avg_latency_ms":256.2349359475183,"throughput_eps":0,"last_update":"2026-03-21T12:31:34.210696837Z"} +2026/03/21 12:31:39 ───────────────────────────────────────────────── +2026/03/21 12:31:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:31:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1750,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:31:39.075804087Z"} +2026/03/21 12:31:44 [detection_layer] {"stage_name":"detection_layer","events_processed":145,"events_dropped":0,"avg_latency_ms":18.378106134758703,"throughput_eps":0,"last_update":"2026-03-21T12:31:39.210477353Z"} +2026/03/21 12:31:44 [transform_engine] {"stage_name":"transform_engine","events_processed":145,"events_dropped":0,"avg_latency_ms":256.2349359475183,"throughput_eps":0,"last_update":"2026-03-21T12:31:39.210520396Z"} +2026/03/21 12:31:44 [log_collector] {"stage_name":"log_collector","events_processed":7795,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1559,"last_update":"2026-03-21T12:31:39.068271935Z"} +2026/03/21 12:31:44 [metric_collector] {"stage_name":"metric_collector","events_processed":4369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":873.8,"last_update":"2026-03-21T12:31:39.068553965Z"} +2026/03/21 12:31:44 ───────────────────────────────────────────────── +2026/03/21 12:31:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:31:49 [log_collector] {"stage_name":"log_collector","events_processed":7795,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1559,"last_update":"2026-03-21T12:31:44.068921713Z"} +2026/03/21 12:31:49 [metric_collector] {"stage_name":"metric_collector","events_processed":4374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":874.8,"last_update":"2026-03-21T12:31:44.069147324Z"} +2026/03/21 12:31:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1752,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:31:44.077448009Z"} +2026/03/21 12:31:49 [detection_layer] {"stage_name":"detection_layer","events_processed":145,"events_dropped":0,"avg_latency_ms":18.378106134758703,"throughput_eps":0,"last_update":"2026-03-21T12:31:44.210651741Z"} +2026/03/21 12:31:49 [transform_engine] {"stage_name":"transform_engine","events_processed":145,"events_dropped":0,"avg_latency_ms":256.2349359475183,"throughput_eps":0,"last_update":"2026-03-21T12:31:44.211372893Z"} +2026/03/21 12:31:49 ───────────────────────────────────────────────── +2026/03/21 12:31:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:31:54 [detection_layer] {"stage_name":"detection_layer","events_processed":145,"events_dropped":0,"avg_latency_ms":18.378106134758703,"throughput_eps":0,"last_update":"2026-03-21T12:31:49.210112309Z"} +2026/03/21 12:31:54 [transform_engine] {"stage_name":"transform_engine","events_processed":146,"events_dropped":0,"avg_latency_ms":797.6569303580147,"throughput_eps":0,"last_update":"2026-03-21T12:31:52.173502054Z"} +2026/03/21 12:31:54 [log_collector] {"stage_name":"log_collector","events_processed":7804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1560.8,"last_update":"2026-03-21T12:31:49.068949617Z"} +2026/03/21 12:31:54 [metric_collector] {"stage_name":"metric_collector","events_processed":4379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":875.8,"last_update":"2026-03-21T12:31:49.069250973Z"} +2026/03/21 12:31:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:31:49.0757667Z"} +2026/03/21 12:31:54 ───────────────────────────────────────────────── +2026/03/21 12:31:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:31:59 [detection_layer] {"stage_name":"detection_layer","events_processed":146,"events_dropped":0,"avg_latency_ms":17.900798907806962,"throughput_eps":0,"last_update":"2026-03-21T12:31:54.209848543Z"} +2026/03/21 12:31:59 [transform_engine] {"stage_name":"transform_engine","events_processed":146,"events_dropped":0,"avg_latency_ms":797.6569303580147,"throughput_eps":0,"last_update":"2026-03-21T12:31:54.209781243Z"} +2026/03/21 12:31:59 [log_collector] {"stage_name":"log_collector","events_processed":7820,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1564,"last_update":"2026-03-21T12:31:54.068215068Z"} +2026/03/21 12:31:59 [metric_collector] {"stage_name":"metric_collector","events_processed":4383,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":876.6,"last_update":"2026-03-21T12:31:54.068270884Z"} +2026/03/21 12:31:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:31:54.075316966Z"} +2026/03/21 12:31:59 ───────────────────────────────────────────────── +2026/03/21 12:32:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:32:04 [log_collector] {"stage_name":"log_collector","events_processed":8109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1621.8,"last_update":"2026-03-21T12:31:59.068148845Z"} +2026/03/21 12:32:04 [metric_collector] {"stage_name":"metric_collector","events_processed":4389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":877.8,"last_update":"2026-03-21T12:31:59.068528242Z"} +2026/03/21 12:32:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1758,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:31:59.07451806Z"} +2026/03/21 12:32:04 [detection_layer] {"stage_name":"detection_layer","events_processed":146,"events_dropped":0,"avg_latency_ms":17.900798907806962,"throughput_eps":0,"last_update":"2026-03-21T12:31:59.210800128Z"} +2026/03/21 12:32:04 [transform_engine] {"stage_name":"transform_engine","events_processed":146,"events_dropped":0,"avg_latency_ms":797.6569303580147,"throughput_eps":0,"last_update":"2026-03-21T12:31:59.209687669Z"} +2026/03/21 12:32:04 ───────────────────────────────────────────────── +2026/03/21 12:32:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:32:09 [transform_engine] {"stage_name":"transform_engine","events_processed":146,"events_dropped":0,"avg_latency_ms":797.6569303580147,"throughput_eps":0,"last_update":"2026-03-21T12:32:04.210173319Z"} +2026/03/21 12:32:09 [log_collector] {"stage_name":"log_collector","events_processed":8158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1631.6,"last_update":"2026-03-21T12:32:04.068418603Z"} +2026/03/21 12:32:09 [metric_collector] {"stage_name":"metric_collector","events_processed":4394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":878.8,"last_update":"2026-03-21T12:32:04.068763032Z"} +2026/03/21 12:32:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:32:04.077774357Z"} +2026/03/21 12:32:09 [detection_layer] {"stage_name":"detection_layer","events_processed":146,"events_dropped":0,"avg_latency_ms":17.900798907806962,"throughput_eps":0,"last_update":"2026-03-21T12:32:04.210224598Z"} +2026/03/21 12:32:09 ───────────────────────────────────────────────── +2026/03/21 12:32:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:32:14 [detection_layer] {"stage_name":"detection_layer","events_processed":146,"events_dropped":0,"avg_latency_ms":17.900798907806962,"throughput_eps":0,"last_update":"2026-03-21T12:32:09.210113944Z"} +2026/03/21 12:32:14 [transform_engine] {"stage_name":"transform_engine","events_processed":146,"events_dropped":0,"avg_latency_ms":797.6569303580147,"throughput_eps":0,"last_update":"2026-03-21T12:32:09.210086391Z"} +2026/03/21 12:32:14 [log_collector] {"stage_name":"log_collector","events_processed":8158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1631.6,"last_update":"2026-03-21T12:32:09.068445091Z"} +2026/03/21 12:32:14 [metric_collector] {"stage_name":"metric_collector","events_processed":4399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":879.8,"last_update":"2026-03-21T12:32:09.068754133Z"} +2026/03/21 12:32:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:32:09.077744408Z"} +2026/03/21 12:32:14 ───────────────────────────────────────────────── +2026/03/21 12:32:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:32:19 [log_collector] {"stage_name":"log_collector","events_processed":8158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1631.6,"last_update":"2026-03-21T12:32:14.068104282Z"} +2026/03/21 12:32:19 [metric_collector] {"stage_name":"metric_collector","events_processed":4404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":880.8,"last_update":"2026-03-21T12:32:14.068531601Z"} +2026/03/21 12:32:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:32:14.078124919Z"} +2026/03/21 12:32:19 [detection_layer] {"stage_name":"detection_layer","events_processed":146,"events_dropped":0,"avg_latency_ms":17.900798907806962,"throughput_eps":0,"last_update":"2026-03-21T12:32:14.210387572Z"} +2026/03/21 12:32:19 [transform_engine] {"stage_name":"transform_engine","events_processed":146,"events_dropped":0,"avg_latency_ms":797.6569303580147,"throughput_eps":0,"last_update":"2026-03-21T12:32:14.210456394Z"} +2026/03/21 12:32:19 ───────────────────────────────────────────────── +2026/03/21 12:32:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:32:24 [log_collector] {"stage_name":"log_collector","events_processed":8158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1631.6,"last_update":"2026-03-21T12:32:19.068655008Z"} +2026/03/21 12:32:24 [metric_collector] {"stage_name":"metric_collector","events_processed":4409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":881.8,"last_update":"2026-03-21T12:32:19.068910447Z"} +2026/03/21 12:32:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1766,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:32:19.079026256Z"} +2026/03/21 12:32:24 [detection_layer] {"stage_name":"detection_layer","events_processed":146,"events_dropped":0,"avg_latency_ms":17.900798907806962,"throughput_eps":0,"last_update":"2026-03-21T12:32:19.210494478Z"} +2026/03/21 12:32:24 [transform_engine] {"stage_name":"transform_engine","events_processed":147,"events_dropped":0,"avg_latency_ms":661.5444158864118,"throughput_eps":0,"last_update":"2026-03-21T12:32:19.327494565Z"} +2026/03/21 12:32:24 ───────────────────────────────────────────────── +2026/03/21 12:32:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:32:29 [log_collector] {"stage_name":"log_collector","events_processed":8158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1631.6,"last_update":"2026-03-21T12:32:24.068663191Z"} +2026/03/21 12:32:29 [metric_collector] {"stage_name":"metric_collector","events_processed":4414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":882.8,"last_update":"2026-03-21T12:32:24.069439276Z"} +2026/03/21 12:32:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1768,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:32:24.079754909Z"} +2026/03/21 12:32:29 [detection_layer] {"stage_name":"detection_layer","events_processed":147,"events_dropped":0,"avg_latency_ms":19.02497472624557,"throughput_eps":0,"last_update":"2026-03-21T12:32:24.210255146Z"} +2026/03/21 12:32:29 [transform_engine] {"stage_name":"transform_engine","events_processed":147,"events_dropped":0,"avg_latency_ms":661.5444158864118,"throughput_eps":0,"last_update":"2026-03-21T12:32:24.210195923Z"} +2026/03/21 12:32:29 ───────────────────────────────────────────────── +2026/03/21 12:32:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:32:34 [log_collector] {"stage_name":"log_collector","events_processed":8158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1631.6,"last_update":"2026-03-21T12:32:29.068629219Z"} +2026/03/21 12:32:34 [metric_collector] {"stage_name":"metric_collector","events_processed":4419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":883.8,"last_update":"2026-03-21T12:32:29.069171427Z"} +2026/03/21 12:32:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1770,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:32:29.077952681Z"} +2026/03/21 12:32:34 [detection_layer] {"stage_name":"detection_layer","events_processed":147,"events_dropped":0,"avg_latency_ms":19.02497472624557,"throughput_eps":0,"last_update":"2026-03-21T12:32:29.210344922Z"} +2026/03/21 12:32:34 [transform_engine] {"stage_name":"transform_engine","events_processed":147,"events_dropped":0,"avg_latency_ms":661.5444158864118,"throughput_eps":0,"last_update":"2026-03-21T12:32:29.210237717Z"} +2026/03/21 12:32:34 ───────────────────────────────────────────────── +2026/03/21 12:32:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:32:39 [log_collector] {"stage_name":"log_collector","events_processed":8158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1631.6,"last_update":"2026-03-21T12:32:34.068095245Z"} +2026/03/21 12:32:39 [metric_collector] {"stage_name":"metric_collector","events_processed":4424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":884.8,"last_update":"2026-03-21T12:32:34.068703861Z"} +2026/03/21 12:32:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:32:34.077500785Z"} +2026/03/21 12:32:39 [detection_layer] {"stage_name":"detection_layer","events_processed":147,"events_dropped":0,"avg_latency_ms":19.02497472624557,"throughput_eps":0,"last_update":"2026-03-21T12:32:34.210906586Z"} +2026/03/21 12:32:39 [transform_engine] {"stage_name":"transform_engine","events_processed":147,"events_dropped":0,"avg_latency_ms":661.5444158864118,"throughput_eps":0,"last_update":"2026-03-21T12:32:34.209703152Z"} +2026/03/21 12:32:39 ───────────────────────────────────────────────── +2026/03/21 12:32:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:32:44 [log_collector] {"stage_name":"log_collector","events_processed":8158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1631.6,"last_update":"2026-03-21T12:32:39.068294333Z"} +2026/03/21 12:32:44 [metric_collector] {"stage_name":"metric_collector","events_processed":4429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":885.8,"last_update":"2026-03-21T12:32:39.06886125Z"} +2026/03/21 12:32:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:32:39.077731083Z"} +2026/03/21 12:32:44 [detection_layer] {"stage_name":"detection_layer","events_processed":147,"events_dropped":0,"avg_latency_ms":19.02497472624557,"throughput_eps":0,"last_update":"2026-03-21T12:32:39.210638651Z"} +2026/03/21 12:32:44 [transform_engine] {"stage_name":"transform_engine","events_processed":147,"events_dropped":0,"avg_latency_ms":661.5444158864118,"throughput_eps":0,"last_update":"2026-03-21T12:32:39.210677645Z"} +2026/03/21 12:32:44 ───────────────────────────────────────────────── +2026/03/21 12:32:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:32:49 [transform_engine] {"stage_name":"transform_engine","events_processed":147,"events_dropped":0,"avg_latency_ms":661.5444158864118,"throughput_eps":0,"last_update":"2026-03-21T12:32:44.210249296Z"} +2026/03/21 12:32:49 [log_collector] {"stage_name":"log_collector","events_processed":8158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1631.6,"last_update":"2026-03-21T12:32:44.068091005Z"} +2026/03/21 12:32:49 [metric_collector] {"stage_name":"metric_collector","events_processed":4434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":886.8,"last_update":"2026-03-21T12:32:44.068421838Z"} +2026/03/21 12:32:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:32:44.079056462Z"} +2026/03/21 12:32:49 [detection_layer] {"stage_name":"detection_layer","events_processed":147,"events_dropped":0,"avg_latency_ms":19.02497472624557,"throughput_eps":0,"last_update":"2026-03-21T12:32:44.210272541Z"} +2026/03/21 12:32:49 ───────────────────────────────────────────────── +2026/03/21 12:32:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:32:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:32:49.078957662Z"} +2026/03/21 12:32:54 [detection_layer] {"stage_name":"detection_layer","events_processed":147,"events_dropped":0,"avg_latency_ms":19.02497472624557,"throughput_eps":0,"last_update":"2026-03-21T12:32:49.210247643Z"} +2026/03/21 12:32:54 [transform_engine] {"stage_name":"transform_engine","events_processed":148,"events_dropped":0,"avg_latency_ms":542.7058633091294,"throughput_eps":0,"last_update":"2026-03-21T12:32:49.277555202Z"} +2026/03/21 12:32:54 [log_collector] {"stage_name":"log_collector","events_processed":8158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1631.6,"last_update":"2026-03-21T12:32:49.068897629Z"} +2026/03/21 12:32:54 [metric_collector] {"stage_name":"metric_collector","events_processed":4439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":887.8,"last_update":"2026-03-21T12:32:49.06914324Z"} +2026/03/21 12:32:54 ───────────────────────────────────────────────── +2026/03/21 12:32:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:32:59 [transform_engine] {"stage_name":"transform_engine","events_processed":148,"events_dropped":0,"avg_latency_ms":542.7058633091294,"throughput_eps":0,"last_update":"2026-03-21T12:32:54.210313954Z"} +2026/03/21 12:32:59 [log_collector] {"stage_name":"log_collector","events_processed":8158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1631.6,"last_update":"2026-03-21T12:32:54.068669486Z"} +2026/03/21 12:32:59 [metric_collector] {"stage_name":"metric_collector","events_processed":4444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":888.8,"last_update":"2026-03-21T12:32:54.068960123Z"} +2026/03/21 12:32:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1780,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:32:54.077976797Z"} +2026/03/21 12:32:59 [detection_layer] {"stage_name":"detection_layer","events_processed":148,"events_dropped":0,"avg_latency_ms":19.404331780996458,"throughput_eps":0,"last_update":"2026-03-21T12:32:54.210295769Z"} +2026/03/21 12:32:59 ───────────────────────────────────────────────── +2026/03/21 12:33:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:33:04 [transform_engine] {"stage_name":"transform_engine","events_processed":148,"events_dropped":0,"avg_latency_ms":542.7058633091294,"throughput_eps":0,"last_update":"2026-03-21T12:32:59.21039009Z"} +2026/03/21 12:33:04 [log_collector] {"stage_name":"log_collector","events_processed":8158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1631.6,"last_update":"2026-03-21T12:32:59.068870521Z"} +2026/03/21 12:33:04 [metric_collector] {"stage_name":"metric_collector","events_processed":4449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":889.8,"last_update":"2026-03-21T12:32:59.069481781Z"} +2026/03/21 12:33:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1782,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:32:59.078135672Z"} +2026/03/21 12:33:04 [detection_layer] {"stage_name":"detection_layer","events_processed":148,"events_dropped":0,"avg_latency_ms":19.404331780996458,"throughput_eps":0,"last_update":"2026-03-21T12:32:59.210377988Z"} +2026/03/21 12:33:04 ───────────────────────────────────────────────── +2026/03/21 12:33:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:33:09 [log_collector] {"stage_name":"log_collector","events_processed":8158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1631.6,"last_update":"2026-03-21T12:33:04.06851071Z"} +2026/03/21 12:33:09 [metric_collector] {"stage_name":"metric_collector","events_processed":4454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":890.8,"last_update":"2026-03-21T12:33:04.068781638Z"} +2026/03/21 12:33:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:33:04.079711998Z"} +2026/03/21 12:33:09 [detection_layer] {"stage_name":"detection_layer","events_processed":148,"events_dropped":0,"avg_latency_ms":19.404331780996458,"throughput_eps":0,"last_update":"2026-03-21T12:33:04.209976736Z"} +2026/03/21 12:33:09 [transform_engine] {"stage_name":"transform_engine","events_processed":148,"events_dropped":0,"avg_latency_ms":542.7058633091294,"throughput_eps":0,"last_update":"2026-03-21T12:33:04.209993007Z"} +2026/03/21 12:33:09 ───────────────────────────────────────────────── +2026/03/21 12:33:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:33:14 [log_collector] {"stage_name":"log_collector","events_processed":8158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1631.6,"last_update":"2026-03-21T12:33:09.068546762Z"} +2026/03/21 12:33:14 [metric_collector] {"stage_name":"metric_collector","events_processed":4459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":891.8,"last_update":"2026-03-21T12:33:09.068860083Z"} +2026/03/21 12:33:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:33:09.077955238Z"} +2026/03/21 12:33:14 [detection_layer] {"stage_name":"detection_layer","events_processed":148,"events_dropped":0,"avg_latency_ms":19.404331780996458,"throughput_eps":0,"last_update":"2026-03-21T12:33:09.210409678Z"} +2026/03/21 12:33:14 [transform_engine] {"stage_name":"transform_engine","events_processed":148,"events_dropped":0,"avg_latency_ms":542.7058633091294,"throughput_eps":0,"last_update":"2026-03-21T12:33:09.210425239Z"} +2026/03/21 12:33:14 ───────────────────────────────────────────────── +2026/03/21 12:33:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:33:19 [log_collector] {"stage_name":"log_collector","events_processed":8158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1631.6,"last_update":"2026-03-21T12:33:14.068556758Z"} +2026/03/21 12:33:19 [metric_collector] {"stage_name":"metric_collector","events_processed":4464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":892.8,"last_update":"2026-03-21T12:33:14.06888651Z"} +2026/03/21 12:33:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:33:14.07912266Z"} +2026/03/21 12:33:19 [detection_layer] {"stage_name":"detection_layer","events_processed":148,"events_dropped":0,"avg_latency_ms":19.404331780996458,"throughput_eps":0,"last_update":"2026-03-21T12:33:14.210454542Z"} +2026/03/21 12:33:19 [transform_engine] {"stage_name":"transform_engine","events_processed":148,"events_dropped":0,"avg_latency_ms":542.7058633091294,"throughput_eps":0,"last_update":"2026-03-21T12:33:14.210464833Z"} +2026/03/21 12:33:19 ───────────────────────────────────────────────── +2026/03/21 12:33:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:33:24 [log_collector] {"stage_name":"log_collector","events_processed":8158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1631.6,"last_update":"2026-03-21T12:33:19.068798065Z"} +2026/03/21 12:33:24 [metric_collector] {"stage_name":"metric_collector","events_processed":4469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":893.8,"last_update":"2026-03-21T12:33:19.06888972Z"} +2026/03/21 12:33:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:33:19.077793379Z"} +2026/03/21 12:33:24 [detection_layer] {"stage_name":"detection_layer","events_processed":148,"events_dropped":0,"avg_latency_ms":19.404331780996458,"throughput_eps":0,"last_update":"2026-03-21T12:33:19.210051384Z"} +2026/03/21 12:33:24 [transform_engine] {"stage_name":"transform_engine","events_processed":149,"events_dropped":0,"avg_latency_ms":450.4030534473036,"throughput_eps":0,"last_update":"2026-03-21T12:33:19.291258207Z"} +2026/03/21 12:33:24 ───────────────────────────────────────────────── +Saved state: 14 clusters, 8159 messages, reason: none +2026/03/21 12:33:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:33:29 [log_collector] {"stage_name":"log_collector","events_processed":8161,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1632.2,"last_update":"2026-03-21T12:33:29.068301618Z"} +2026/03/21 12:33:29 [metric_collector] {"stage_name":"metric_collector","events_processed":4474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":894.8,"last_update":"2026-03-21T12:33:24.069092838Z"} +2026/03/21 12:33:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:33:24.078420448Z"} +2026/03/21 12:33:29 [detection_layer] {"stage_name":"detection_layer","events_processed":149,"events_dropped":0,"avg_latency_ms":19.648576024797165,"throughput_eps":0,"last_update":"2026-03-21T12:33:24.210890059Z"} +2026/03/21 12:33:29 [transform_engine] {"stage_name":"transform_engine","events_processed":149,"events_dropped":0,"avg_latency_ms":450.4030534473036,"throughput_eps":0,"last_update":"2026-03-21T12:33:24.209662689Z"} +2026/03/21 12:33:29 ───────────────────────────────────────────────── +2026/03/21 12:33:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:33:34 [log_collector] {"stage_name":"log_collector","events_processed":8161,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1632.2,"last_update":"2026-03-21T12:33:29.068301618Z"} +2026/03/21 12:33:34 [metric_collector] {"stage_name":"metric_collector","events_processed":4479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":895.8,"last_update":"2026-03-21T12:33:29.068615199Z"} +2026/03/21 12:33:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:33:29.076121542Z"} +2026/03/21 12:33:34 [detection_layer] {"stage_name":"detection_layer","events_processed":149,"events_dropped":0,"avg_latency_ms":19.648576024797165,"throughput_eps":0,"last_update":"2026-03-21T12:33:29.21043291Z"} +2026/03/21 12:33:34 [transform_engine] {"stage_name":"transform_engine","events_processed":149,"events_dropped":0,"avg_latency_ms":450.4030534473036,"throughput_eps":0,"last_update":"2026-03-21T12:33:29.210444922Z"} +2026/03/21 12:33:34 ───────────────────────────────────────────────── +2026/03/21 12:33:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:33:39 [log_collector] {"stage_name":"log_collector","events_processed":8161,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1632.2,"last_update":"2026-03-21T12:33:34.068569791Z"} +2026/03/21 12:33:39 [metric_collector] {"stage_name":"metric_collector","events_processed":4484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":896.8,"last_update":"2026-03-21T12:33:34.06876216Z"} +2026/03/21 12:33:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1796,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:33:34.077756242Z"} +2026/03/21 12:33:39 [detection_layer] {"stage_name":"detection_layer","events_processed":149,"events_dropped":0,"avg_latency_ms":19.648576024797165,"throughput_eps":0,"last_update":"2026-03-21T12:33:34.209927992Z"} +2026/03/21 12:33:39 [transform_engine] {"stage_name":"transform_engine","events_processed":149,"events_dropped":0,"avg_latency_ms":450.4030534473036,"throughput_eps":0,"last_update":"2026-03-21T12:33:34.209938051Z"} +2026/03/21 12:33:39 ───────────────────────────────────────────────── +2026/03/21 12:33:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:33:44 [log_collector] {"stage_name":"log_collector","events_processed":8171,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1634.2,"last_update":"2026-03-21T12:33:39.068541162Z"} +2026/03/21 12:33:44 [metric_collector] {"stage_name":"metric_collector","events_processed":4489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":897.8,"last_update":"2026-03-21T12:33:39.069094743Z"} +2026/03/21 12:33:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:33:39.074866775Z"} +2026/03/21 12:33:44 [detection_layer] {"stage_name":"detection_layer","events_processed":149,"events_dropped":0,"avg_latency_ms":19.648576024797165,"throughput_eps":0,"last_update":"2026-03-21T12:33:39.210082314Z"} +2026/03/21 12:33:44 [transform_engine] {"stage_name":"transform_engine","events_processed":149,"events_dropped":0,"avg_latency_ms":450.4030534473036,"throughput_eps":0,"last_update":"2026-03-21T12:33:39.210091682Z"} +2026/03/21 12:33:44 ───────────────────────────────────────────────── +2026/03/21 12:33:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:33:49 [log_collector] {"stage_name":"log_collector","events_processed":8179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1635.8,"last_update":"2026-03-21T12:33:44.068273773Z"} +2026/03/21 12:33:49 [metric_collector] {"stage_name":"metric_collector","events_processed":4494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":898.8,"last_update":"2026-03-21T12:33:44.068527118Z"} +2026/03/21 12:33:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1800,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:33:44.07702568Z"} +2026/03/21 12:33:49 [detection_layer] {"stage_name":"detection_layer","events_processed":149,"events_dropped":0,"avg_latency_ms":19.648576024797165,"throughput_eps":0,"last_update":"2026-03-21T12:33:44.210637679Z"} +2026/03/21 12:33:49 [transform_engine] {"stage_name":"transform_engine","events_processed":149,"events_dropped":0,"avg_latency_ms":450.4030534473036,"throughput_eps":0,"last_update":"2026-03-21T12:33:44.210649582Z"} +2026/03/21 12:33:49 ───────────────────────────────────────────────── +2026/03/21 12:33:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:33:54 [log_collector] {"stage_name":"log_collector","events_processed":8191,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1638.2,"last_update":"2026-03-21T12:33:49.068537433Z"} +2026/03/21 12:33:54 [metric_collector] {"stage_name":"metric_collector","events_processed":4499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":899.8,"last_update":"2026-03-21T12:33:49.068792631Z"} +2026/03/21 12:33:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1802,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:33:49.074471566Z"} +2026/03/21 12:33:54 [detection_layer] {"stage_name":"detection_layer","events_processed":149,"events_dropped":0,"avg_latency_ms":19.648576024797165,"throughput_eps":0,"last_update":"2026-03-21T12:33:49.211395937Z"} +2026/03/21 12:33:54 [transform_engine] {"stage_name":"transform_engine","events_processed":150,"events_dropped":0,"avg_latency_ms":381.4190003578429,"throughput_eps":0,"last_update":"2026-03-21T12:33:49.316872032Z"} +2026/03/21 12:33:54 ───────────────────────────────────────────────── +2026/03/21 12:33:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:33:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:33:54.077819629Z"} +2026/03/21 12:33:59 [detection_layer] {"stage_name":"detection_layer","events_processed":150,"events_dropped":0,"avg_latency_ms":18.325802619837734,"throughput_eps":0,"last_update":"2026-03-21T12:33:54.210238263Z"} +2026/03/21 12:33:59 [transform_engine] {"stage_name":"transform_engine","events_processed":150,"events_dropped":0,"avg_latency_ms":381.4190003578429,"throughput_eps":0,"last_update":"2026-03-21T12:33:54.210273791Z"} +2026/03/21 12:33:59 [log_collector] {"stage_name":"log_collector","events_processed":8202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1640.4,"last_update":"2026-03-21T12:33:54.06890545Z"} +2026/03/21 12:33:59 [metric_collector] {"stage_name":"metric_collector","events_processed":4504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":900.8,"last_update":"2026-03-21T12:33:54.069068512Z"} +2026/03/21 12:33:59 ───────────────────────────────────────────────── +2026/03/21 12:34:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:34:04 [log_collector] {"stage_name":"log_collector","events_processed":8202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1640.4,"last_update":"2026-03-21T12:34:04.068107042Z"} +2026/03/21 12:34:04 [metric_collector] {"stage_name":"metric_collector","events_processed":4509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":901.8,"last_update":"2026-03-21T12:33:59.068936518Z"} +2026/03/21 12:34:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:33:59.07870938Z"} +2026/03/21 12:34:04 [detection_layer] {"stage_name":"detection_layer","events_processed":150,"events_dropped":0,"avg_latency_ms":18.325802619837734,"throughput_eps":0,"last_update":"2026-03-21T12:33:59.21003399Z"} +2026/03/21 12:34:04 [transform_engine] {"stage_name":"transform_engine","events_processed":150,"events_dropped":0,"avg_latency_ms":381.4190003578429,"throughput_eps":0,"last_update":"2026-03-21T12:33:59.210009633Z"} +2026/03/21 12:34:04 ───────────────────────────────────────────────── +2026/03/21 12:34:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:34:09 [transform_engine] {"stage_name":"transform_engine","events_processed":150,"events_dropped":0,"avg_latency_ms":381.4190003578429,"throughput_eps":0,"last_update":"2026-03-21T12:34:04.209760018Z"} +2026/03/21 12:34:09 [log_collector] {"stage_name":"log_collector","events_processed":8202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1640.4,"last_update":"2026-03-21T12:34:04.068107042Z"} +2026/03/21 12:34:09 [metric_collector] {"stage_name":"metric_collector","events_processed":4514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":902.8,"last_update":"2026-03-21T12:34:04.068758841Z"} +2026/03/21 12:34:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:34:04.077571945Z"} +2026/03/21 12:34:09 [detection_layer] {"stage_name":"detection_layer","events_processed":150,"events_dropped":0,"avg_latency_ms":18.325802619837734,"throughput_eps":0,"last_update":"2026-03-21T12:34:04.210915872Z"} +2026/03/21 12:34:09 ───────────────────────────────────────────────── +2026/03/21 12:34:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:34:14 [transform_engine] {"stage_name":"transform_engine","events_processed":150,"events_dropped":0,"avg_latency_ms":381.4190003578429,"throughput_eps":0,"last_update":"2026-03-21T12:34:09.209840711Z"} +2026/03/21 12:34:14 [log_collector] {"stage_name":"log_collector","events_processed":8202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1640.4,"last_update":"2026-03-21T12:34:09.068713631Z"} +2026/03/21 12:34:14 [metric_collector] {"stage_name":"metric_collector","events_processed":4519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":903.8,"last_update":"2026-03-21T12:34:09.069005962Z"} +2026/03/21 12:34:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:34:09.07854648Z"} +2026/03/21 12:34:14 [detection_layer] {"stage_name":"detection_layer","events_processed":150,"events_dropped":0,"avg_latency_ms":18.325802619837734,"throughput_eps":0,"last_update":"2026-03-21T12:34:09.209999135Z"} +2026/03/21 12:34:14 ───────────────────────────────────────────────── +2026/03/21 12:34:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:34:19 [metric_collector] {"stage_name":"metric_collector","events_processed":4524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":904.8,"last_update":"2026-03-21T12:34:14.068530825Z"} +2026/03/21 12:34:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1812,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:34:14.077193853Z"} +2026/03/21 12:34:19 [detection_layer] {"stage_name":"detection_layer","events_processed":150,"events_dropped":0,"avg_latency_ms":18.325802619837734,"throughput_eps":0,"last_update":"2026-03-21T12:34:14.210407499Z"} +2026/03/21 12:34:19 [transform_engine] {"stage_name":"transform_engine","events_processed":150,"events_dropped":0,"avg_latency_ms":381.4190003578429,"throughput_eps":0,"last_update":"2026-03-21T12:34:14.210440071Z"} +2026/03/21 12:34:19 [log_collector] {"stage_name":"log_collector","events_processed":8202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1640.4,"last_update":"2026-03-21T12:34:14.068131991Z"} +2026/03/21 12:34:19 ───────────────────────────────────────────────── +2026/03/21 12:34:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:34:24 [log_collector] {"stage_name":"log_collector","events_processed":8202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1640.4,"last_update":"2026-03-21T12:34:19.068083426Z"} +2026/03/21 12:34:24 [metric_collector] {"stage_name":"metric_collector","events_processed":4529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":905.8,"last_update":"2026-03-21T12:34:19.068701109Z"} +2026/03/21 12:34:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:34:19.077920462Z"} +2026/03/21 12:34:24 [detection_layer] {"stage_name":"detection_layer","events_processed":150,"events_dropped":0,"avg_latency_ms":18.325802619837734,"throughput_eps":0,"last_update":"2026-03-21T12:34:19.210373533Z"} +2026/03/21 12:34:24 [transform_engine] {"stage_name":"transform_engine","events_processed":151,"events_dropped":0,"avg_latency_ms":327.99426668627433,"throughput_eps":0,"last_update":"2026-03-21T12:34:19.324630533Z"} +2026/03/21 12:34:24 ───────────────────────────────────────────────── +2026/03/21 12:34:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:34:29 [detection_layer] {"stage_name":"detection_layer","events_processed":151,"events_dropped":0,"avg_latency_ms":19.071563895870188,"throughput_eps":0,"last_update":"2026-03-21T12:34:24.21027159Z"} +2026/03/21 12:34:29 [transform_engine] {"stage_name":"transform_engine","events_processed":151,"events_dropped":0,"avg_latency_ms":327.99426668627433,"throughput_eps":0,"last_update":"2026-03-21T12:34:24.210235311Z"} +2026/03/21 12:34:29 [log_collector] {"stage_name":"log_collector","events_processed":8202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1640.4,"last_update":"2026-03-21T12:34:24.069126487Z"} +2026/03/21 12:34:29 [metric_collector] {"stage_name":"metric_collector","events_processed":4534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":906.8,"last_update":"2026-03-21T12:34:24.069280682Z"} +2026/03/21 12:34:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1816,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:34:24.077830232Z"} +2026/03/21 12:34:29 ───────────────────────────────────────────────── +2026/03/21 12:34:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:34:34 [log_collector] {"stage_name":"log_collector","events_processed":8202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1640.4,"last_update":"2026-03-21T12:34:29.068720958Z"} +2026/03/21 12:34:34 [metric_collector] {"stage_name":"metric_collector","events_processed":4539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":907.8,"last_update":"2026-03-21T12:34:29.069238859Z"} +2026/03/21 12:34:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1818,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:34:29.078878508Z"} +2026/03/21 12:34:34 [detection_layer] {"stage_name":"detection_layer","events_processed":151,"events_dropped":0,"avg_latency_ms":19.071563895870188,"throughput_eps":0,"last_update":"2026-03-21T12:34:29.21011036Z"} +2026/03/21 12:34:34 [transform_engine] {"stage_name":"transform_engine","events_processed":151,"events_dropped":0,"avg_latency_ms":327.99426668627433,"throughput_eps":0,"last_update":"2026-03-21T12:34:29.210143353Z"} +2026/03/21 12:34:34 ───────────────────────────────────────────────── +2026/03/21 12:34:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:34:39 [log_collector] {"stage_name":"log_collector","events_processed":8202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1640.4,"last_update":"2026-03-21T12:34:34.068177561Z"} +2026/03/21 12:34:39 [metric_collector] {"stage_name":"metric_collector","events_processed":4543,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":908.6,"last_update":"2026-03-21T12:34:34.068198741Z"} +2026/03/21 12:34:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1820,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:34:34.076995184Z"} +2026/03/21 12:34:39 [detection_layer] {"stage_name":"detection_layer","events_processed":151,"events_dropped":0,"avg_latency_ms":19.071563895870188,"throughput_eps":0,"last_update":"2026-03-21T12:34:34.210247245Z"} +2026/03/21 12:34:39 [transform_engine] {"stage_name":"transform_engine","events_processed":151,"events_dropped":0,"avg_latency_ms":327.99426668627433,"throughput_eps":0,"last_update":"2026-03-21T12:34:34.210277733Z"} +2026/03/21 12:34:39 ───────────────────────────────────────────────── +2026/03/21 12:34:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:34:44 [log_collector] {"stage_name":"log_collector","events_processed":8202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1640.4,"last_update":"2026-03-21T12:34:39.068162421Z"} +2026/03/21 12:34:44 [metric_collector] {"stage_name":"metric_collector","events_processed":4548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":909.6,"last_update":"2026-03-21T12:34:39.068043032Z"} +2026/03/21 12:34:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:34:39.078897847Z"} +2026/03/21 12:34:44 [detection_layer] {"stage_name":"detection_layer","events_processed":151,"events_dropped":0,"avg_latency_ms":19.071563895870188,"throughput_eps":0,"last_update":"2026-03-21T12:34:39.210231986Z"} +2026/03/21 12:34:44 [transform_engine] {"stage_name":"transform_engine","events_processed":151,"events_dropped":0,"avg_latency_ms":327.99426668627433,"throughput_eps":0,"last_update":"2026-03-21T12:34:39.21026578Z"} +2026/03/21 12:34:44 ───────────────────────────────────────────────── +2026/03/21 12:34:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:34:49 [log_collector] {"stage_name":"log_collector","events_processed":8202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1640.4,"last_update":"2026-03-21T12:34:44.068868755Z"} +2026/03/21 12:34:49 [metric_collector] {"stage_name":"metric_collector","events_processed":4554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":910.8,"last_update":"2026-03-21T12:34:44.069614663Z"} +2026/03/21 12:34:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:34:44.079213743Z"} +2026/03/21 12:34:49 [detection_layer] {"stage_name":"detection_layer","events_processed":151,"events_dropped":0,"avg_latency_ms":19.071563895870188,"throughput_eps":0,"last_update":"2026-03-21T12:34:44.210469513Z"} +2026/03/21 12:34:49 [transform_engine] {"stage_name":"transform_engine","events_processed":151,"events_dropped":0,"avg_latency_ms":327.99426668627433,"throughput_eps":0,"last_update":"2026-03-21T12:34:44.210428624Z"} +2026/03/21 12:34:49 ───────────────────────────────────────────────── +Saved state: 14 clusters, 8203 messages, reason: none +2026/03/21 12:34:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:34:54 [metric_collector] {"stage_name":"metric_collector","events_processed":4559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":911.8,"last_update":"2026-03-21T12:34:49.069395853Z"} +2026/03/21 12:34:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1826,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:34:49.078255838Z"} +2026/03/21 12:34:54 [detection_layer] {"stage_name":"detection_layer","events_processed":151,"events_dropped":0,"avg_latency_ms":19.071563895870188,"throughput_eps":0,"last_update":"2026-03-21T12:34:49.209958913Z"} +2026/03/21 12:34:54 [transform_engine] {"stage_name":"transform_engine","events_processed":152,"events_dropped":0,"avg_latency_ms":275.58673214901944,"throughput_eps":0,"last_update":"2026-03-21T12:34:49.276218728Z"} +2026/03/21 12:34:54 [log_collector] {"stage_name":"log_collector","events_processed":8202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1640.4,"last_update":"2026-03-21T12:34:49.069129814Z"} +2026/03/21 12:34:54 ───────────────────────────────────────────────── +2026/03/21 12:34:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:34:59 [log_collector] {"stage_name":"log_collector","events_processed":8207,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1641.4,"last_update":"2026-03-21T12:34:54.068053594Z"} +2026/03/21 12:34:59 [metric_collector] {"stage_name":"metric_collector","events_processed":4564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":912.8,"last_update":"2026-03-21T12:34:54.068453861Z"} +2026/03/21 12:34:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:34:54.074776898Z"} +2026/03/21 12:34:59 [detection_layer] {"stage_name":"detection_layer","events_processed":152,"events_dropped":0,"avg_latency_ms":19.80734351669615,"throughput_eps":0,"last_update":"2026-03-21T12:34:54.210053336Z"} +2026/03/21 12:34:59 [transform_engine] {"stage_name":"transform_engine","events_processed":152,"events_dropped":0,"avg_latency_ms":275.58673214901944,"throughput_eps":0,"last_update":"2026-03-21T12:34:54.21013375Z"} +2026/03/21 12:34:59 ───────────────────────────────────────────────── +2026/03/21 12:35:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:35:04 [metric_collector] {"stage_name":"metric_collector","events_processed":4569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":913.8,"last_update":"2026-03-21T12:34:59.068955157Z"} +2026/03/21 12:35:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1830,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:34:59.074849103Z"} +2026/03/21 12:35:04 [detection_layer] {"stage_name":"detection_layer","events_processed":152,"events_dropped":0,"avg_latency_ms":19.80734351669615,"throughput_eps":0,"last_update":"2026-03-21T12:34:59.210042773Z"} +2026/03/21 12:35:04 [transform_engine] {"stage_name":"transform_engine","events_processed":152,"events_dropped":0,"avg_latency_ms":275.58673214901944,"throughput_eps":0,"last_update":"2026-03-21T12:34:59.21006289Z"} +2026/03/21 12:35:04 [log_collector] {"stage_name":"log_collector","events_processed":8207,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1641.4,"last_update":"2026-03-21T12:34:59.068545313Z"} +2026/03/21 12:35:04 ───────────────────────────────────────────────── +2026/03/21 12:35:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:35:09 [metric_collector] {"stage_name":"metric_collector","events_processed":4574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":914.8,"last_update":"2026-03-21T12:35:04.068725911Z"} +2026/03/21 12:35:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1832,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:35:04.079329746Z"} +2026/03/21 12:35:09 [detection_layer] {"stage_name":"detection_layer","events_processed":152,"events_dropped":0,"avg_latency_ms":19.80734351669615,"throughput_eps":0,"last_update":"2026-03-21T12:35:04.210647423Z"} +2026/03/21 12:35:09 [transform_engine] {"stage_name":"transform_engine","events_processed":152,"events_dropped":0,"avg_latency_ms":275.58673214901944,"throughput_eps":0,"last_update":"2026-03-21T12:35:04.210617405Z"} +2026/03/21 12:35:09 [log_collector] {"stage_name":"log_collector","events_processed":8207,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1641.4,"last_update":"2026-03-21T12:35:04.068431176Z"} +2026/03/21 12:35:09 ───────────────────────────────────────────────── +2026/03/21 12:35:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:35:14 [log_collector] {"stage_name":"log_collector","events_processed":8207,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1641.4,"last_update":"2026-03-21T12:35:14.068181847Z"} +2026/03/21 12:35:14 [metric_collector] {"stage_name":"metric_collector","events_processed":4579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":915.8,"last_update":"2026-03-21T12:35:09.068978061Z"} +2026/03/21 12:35:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:35:09.075993975Z"} +2026/03/21 12:35:14 [detection_layer] {"stage_name":"detection_layer","events_processed":152,"events_dropped":0,"avg_latency_ms":19.80734351669615,"throughput_eps":0,"last_update":"2026-03-21T12:35:09.210472906Z"} +2026/03/21 12:35:14 [transform_engine] {"stage_name":"transform_engine","events_processed":152,"events_dropped":0,"avg_latency_ms":275.58673214901944,"throughput_eps":0,"last_update":"2026-03-21T12:35:09.210461664Z"} +2026/03/21 12:35:14 ───────────────────────────────────────────────── +2026/03/21 12:35:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:35:19 [transform_engine] {"stage_name":"transform_engine","events_processed":152,"events_dropped":0,"avg_latency_ms":275.58673214901944,"throughput_eps":0,"last_update":"2026-03-21T12:35:14.210488437Z"} +2026/03/21 12:35:19 [log_collector] {"stage_name":"log_collector","events_processed":8207,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1641.4,"last_update":"2026-03-21T12:35:14.068181847Z"} +2026/03/21 12:35:19 [metric_collector] {"stage_name":"metric_collector","events_processed":4584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":916.8,"last_update":"2026-03-21T12:35:14.068450051Z"} +2026/03/21 12:35:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:35:14.076275515Z"} +2026/03/21 12:35:19 [detection_layer] {"stage_name":"detection_layer","events_processed":152,"events_dropped":0,"avg_latency_ms":19.80734351669615,"throughput_eps":0,"last_update":"2026-03-21T12:35:14.210452689Z"} +2026/03/21 12:35:19 ───────────────────────────────────────────────── +2026/03/21 12:35:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:35:24 [log_collector] {"stage_name":"log_collector","events_processed":8207,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1641.4,"last_update":"2026-03-21T12:35:19.06806928Z"} +2026/03/21 12:35:24 [metric_collector] {"stage_name":"metric_collector","events_processed":4589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":917.8,"last_update":"2026-03-21T12:35:19.068607039Z"} +2026/03/21 12:35:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:35:19.076938472Z"} +2026/03/21 12:35:24 [detection_layer] {"stage_name":"detection_layer","events_processed":152,"events_dropped":0,"avg_latency_ms":19.80734351669615,"throughput_eps":0,"last_update":"2026-03-21T12:35:19.210199712Z"} +2026/03/21 12:35:24 [transform_engine] {"stage_name":"transform_engine","events_processed":153,"events_dropped":0,"avg_latency_ms":255.78191031921557,"throughput_eps":0,"last_update":"2026-03-21T12:35:19.386752466Z"} +2026/03/21 12:35:24 ───────────────────────────────────────────────── +2026/03/21 12:35:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:35:29 [transform_engine] {"stage_name":"transform_engine","events_processed":153,"events_dropped":0,"avg_latency_ms":255.78191031921557,"throughput_eps":0,"last_update":"2026-03-21T12:35:24.210565672Z"} +2026/03/21 12:35:29 [log_collector] {"stage_name":"log_collector","events_processed":8207,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1641.4,"last_update":"2026-03-21T12:35:24.068605686Z"} +2026/03/21 12:35:29 [metric_collector] {"stage_name":"metric_collector","events_processed":4594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":918.8,"last_update":"2026-03-21T12:35:24.068804226Z"} +2026/03/21 12:35:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:35:24.077361231Z"} +2026/03/21 12:35:29 [detection_layer] {"stage_name":"detection_layer","events_processed":153,"events_dropped":0,"avg_latency_ms":18.02603161335692,"throughput_eps":0,"last_update":"2026-03-21T12:35:24.210556084Z"} +2026/03/21 12:35:29 ───────────────────────────────────────────────── +2026/03/21 12:35:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:35:34 [log_collector] {"stage_name":"log_collector","events_processed":8207,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1641.4,"last_update":"2026-03-21T12:35:29.068274336Z"} +2026/03/21 12:35:34 [metric_collector] {"stage_name":"metric_collector","events_processed":4599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":919.8,"last_update":"2026-03-21T12:35:29.068246864Z"} +2026/03/21 12:35:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:35:29.077117178Z"} +2026/03/21 12:35:34 [detection_layer] {"stage_name":"detection_layer","events_processed":153,"events_dropped":0,"avg_latency_ms":18.02603161335692,"throughput_eps":0,"last_update":"2026-03-21T12:35:29.210393237Z"} +2026/03/21 12:35:34 [transform_engine] {"stage_name":"transform_engine","events_processed":153,"events_dropped":0,"avg_latency_ms":255.78191031921557,"throughput_eps":0,"last_update":"2026-03-21T12:35:29.210406122Z"} +2026/03/21 12:35:34 ───────────────────────────────────────────────── +Saved state: 15 clusters, 8240 messages, reason: cluster_created +Saved state: 16 clusters, 8241 messages, reason: cluster_created +2026/03/21 12:35:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:35:39 [detection_layer] {"stage_name":"detection_layer","events_processed":153,"events_dropped":0,"avg_latency_ms":18.02603161335692,"throughput_eps":0,"last_update":"2026-03-21T12:35:34.210485593Z"} +2026/03/21 12:35:39 [transform_engine] {"stage_name":"transform_engine","events_processed":153,"events_dropped":0,"avg_latency_ms":255.78191031921557,"throughput_eps":0,"last_update":"2026-03-21T12:35:34.21049453Z"} +2026/03/21 12:35:39 [log_collector] {"stage_name":"log_collector","events_processed":8207,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1641.4,"last_update":"2026-03-21T12:35:34.068054785Z"} +2026/03/21 12:35:39 [metric_collector] {"stage_name":"metric_collector","events_processed":4604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":920.8,"last_update":"2026-03-21T12:35:34.068169074Z"} +2026/03/21 12:35:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:35:34.0762829Z"} +2026/03/21 12:35:39 ───────────────────────────────────────────────── +2026/03/21 12:35:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:35:44 [log_collector] {"stage_name":"log_collector","events_processed":8243,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1648.6,"last_update":"2026-03-21T12:35:39.06812398Z"} +2026/03/21 12:35:44 [metric_collector] {"stage_name":"metric_collector","events_processed":4609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":921.8,"last_update":"2026-03-21T12:35:39.068305818Z"} +2026/03/21 12:35:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:35:39.07552917Z"} +2026/03/21 12:35:44 [detection_layer] {"stage_name":"detection_layer","events_processed":153,"events_dropped":0,"avg_latency_ms":18.02603161335692,"throughput_eps":0,"last_update":"2026-03-21T12:35:39.209890727Z"} +2026/03/21 12:35:44 [transform_engine] {"stage_name":"transform_engine","events_processed":153,"events_dropped":0,"avg_latency_ms":255.78191031921557,"throughput_eps":0,"last_update":"2026-03-21T12:35:39.209903341Z"} +2026/03/21 12:35:44 ───────────────────────────────────────────────── +2026/03/21 12:35:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:35:49 [transform_engine] {"stage_name":"transform_engine","events_processed":153,"events_dropped":0,"avg_latency_ms":255.78191031921557,"throughput_eps":0,"last_update":"2026-03-21T12:35:44.210572421Z"} +2026/03/21 12:35:49 [log_collector] {"stage_name":"log_collector","events_processed":8409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1681.8,"last_update":"2026-03-21T12:35:44.068770346Z"} +2026/03/21 12:35:49 [metric_collector] {"stage_name":"metric_collector","events_processed":4614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":922.8,"last_update":"2026-03-21T12:35:44.069100749Z"} +2026/03/21 12:35:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1848,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:35:44.079452992Z"} +2026/03/21 12:35:49 [detection_layer] {"stage_name":"detection_layer","events_processed":153,"events_dropped":0,"avg_latency_ms":18.02603161335692,"throughput_eps":0,"last_update":"2026-03-21T12:35:44.210528087Z"} +2026/03/21 12:35:49 ───────────────────────────────────────────────── +2026/03/21 12:35:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:35:54 [log_collector] {"stage_name":"log_collector","events_processed":8568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1713.6,"last_update":"2026-03-21T12:35:49.068615612Z"} +2026/03/21 12:35:54 [metric_collector] {"stage_name":"metric_collector","events_processed":4619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":923.8,"last_update":"2026-03-21T12:35:49.068859459Z"} +2026/03/21 12:35:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:35:49.075551133Z"} +2026/03/21 12:35:54 [detection_layer] {"stage_name":"detection_layer","events_processed":153,"events_dropped":0,"avg_latency_ms":18.02603161335692,"throughput_eps":0,"last_update":"2026-03-21T12:35:49.210848402Z"} +2026/03/21 12:35:54 [transform_engine] {"stage_name":"transform_engine","events_processed":154,"events_dropped":0,"avg_latency_ms":229.26231485537247,"throughput_eps":0,"last_update":"2026-03-21T12:35:49.332910828Z"} +2026/03/21 12:35:54 ───────────────────────────────────────────────── +2026/03/21 12:35:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:35:59 [transform_engine] {"stage_name":"transform_engine","events_processed":154,"events_dropped":0,"avg_latency_ms":229.26231485537247,"throughput_eps":0,"last_update":"2026-03-21T12:35:54.209686954Z"} +2026/03/21 12:35:59 [log_collector] {"stage_name":"log_collector","events_processed":8571,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1714.2,"last_update":"2026-03-21T12:35:54.068892849Z"} +2026/03/21 12:35:59 [metric_collector] {"stage_name":"metric_collector","events_processed":4624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":924.8,"last_update":"2026-03-21T12:35:54.069106078Z"} +2026/03/21 12:35:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:35:54.07625666Z"} +2026/03/21 12:35:59 [detection_layer] {"stage_name":"detection_layer","events_processed":154,"events_dropped":0,"avg_latency_ms":17.47474909068554,"throughput_eps":0,"last_update":"2026-03-21T12:35:54.209927645Z"} +2026/03/21 12:35:59 ───────────────────────────────────────────────── +2026/03/21 12:36:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:36:04 [metric_collector] {"stage_name":"metric_collector","events_processed":4629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":925.8,"last_update":"2026-03-21T12:35:59.068610178Z"} +2026/03/21 12:36:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:35:59.077306499Z"} +2026/03/21 12:36:04 [detection_layer] {"stage_name":"detection_layer","events_processed":154,"events_dropped":0,"avg_latency_ms":17.47474909068554,"throughput_eps":0,"last_update":"2026-03-21T12:35:59.210544667Z"} +2026/03/21 12:36:04 [transform_engine] {"stage_name":"transform_engine","events_processed":154,"events_dropped":0,"avg_latency_ms":229.26231485537247,"throughput_eps":0,"last_update":"2026-03-21T12:35:59.210557781Z"} +2026/03/21 12:36:04 [log_collector] {"stage_name":"log_collector","events_processed":8571,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1714.2,"last_update":"2026-03-21T12:35:59.068365519Z"} +2026/03/21 12:36:04 ───────────────────────────────────────────────── +2026/03/21 12:36:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:36:09 [log_collector] {"stage_name":"log_collector","events_processed":8582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1716.4,"last_update":"2026-03-21T12:36:04.068117839Z"} +2026/03/21 12:36:09 [metric_collector] {"stage_name":"metric_collector","events_processed":4634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":926.8,"last_update":"2026-03-21T12:36:04.06859883Z"} +2026/03/21 12:36:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:36:04.07832284Z"} +2026/03/21 12:36:09 [detection_layer] {"stage_name":"detection_layer","events_processed":154,"events_dropped":0,"avg_latency_ms":17.47474909068554,"throughput_eps":0,"last_update":"2026-03-21T12:36:04.210483604Z"} +2026/03/21 12:36:09 [transform_engine] {"stage_name":"transform_engine","events_processed":154,"events_dropped":0,"avg_latency_ms":229.26231485537247,"throughput_eps":0,"last_update":"2026-03-21T12:36:04.210603604Z"} +2026/03/21 12:36:09 ───────────────────────────────────────────────── +2026/03/21 12:36:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:36:14 [transform_engine] {"stage_name":"transform_engine","events_processed":154,"events_dropped":0,"avg_latency_ms":229.26231485537247,"throughput_eps":0,"last_update":"2026-03-21T12:36:09.210499744Z"} +2026/03/21 12:36:14 [log_collector] {"stage_name":"log_collector","events_processed":8596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1719.2,"last_update":"2026-03-21T12:36:09.068643045Z"} +2026/03/21 12:36:14 [metric_collector] {"stage_name":"metric_collector","events_processed":4639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":927.8,"last_update":"2026-03-21T12:36:09.068915136Z"} +2026/03/21 12:36:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:36:09.077390995Z"} +2026/03/21 12:36:14 [detection_layer] {"stage_name":"detection_layer","events_processed":154,"events_dropped":0,"avg_latency_ms":17.47474909068554,"throughput_eps":0,"last_update":"2026-03-21T12:36:09.210448526Z"} +2026/03/21 12:36:14 ───────────────────────────────────────────────── +2026/03/21 12:36:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:36:19 [log_collector] {"stage_name":"log_collector","events_processed":8598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1719.6,"last_update":"2026-03-21T12:36:14.06873819Z"} +2026/03/21 12:36:19 [metric_collector] {"stage_name":"metric_collector","events_processed":4644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":928.8,"last_update":"2026-03-21T12:36:14.069118457Z"} +2026/03/21 12:36:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1860,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:36:14.078451419Z"} +2026/03/21 12:36:19 [detection_layer] {"stage_name":"detection_layer","events_processed":154,"events_dropped":0,"avg_latency_ms":17.47474909068554,"throughput_eps":0,"last_update":"2026-03-21T12:36:14.210685182Z"} +2026/03/21 12:36:19 [transform_engine] {"stage_name":"transform_engine","events_processed":154,"events_dropped":0,"avg_latency_ms":229.26231485537247,"throughput_eps":0,"last_update":"2026-03-21T12:36:14.210739366Z"} +2026/03/21 12:36:19 ───────────────────────────────────────────────── +2026/03/21 12:36:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:36:24 [log_collector] {"stage_name":"log_collector","events_processed":8598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1719.6,"last_update":"2026-03-21T12:36:19.06811877Z"} +2026/03/21 12:36:24 [metric_collector] {"stage_name":"metric_collector","events_processed":4649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":929.8,"last_update":"2026-03-21T12:36:19.068887702Z"} +2026/03/21 12:36:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1862,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:36:19.078914812Z"} +2026/03/21 12:36:24 [detection_layer] {"stage_name":"detection_layer","events_processed":154,"events_dropped":0,"avg_latency_ms":17.47474909068554,"throughput_eps":0,"last_update":"2026-03-21T12:36:19.210243863Z"} +2026/03/21 12:36:24 [transform_engine] {"stage_name":"transform_engine","events_processed":155,"events_dropped":0,"avg_latency_ms":206.34711628429798,"throughput_eps":0,"last_update":"2026-03-21T12:36:19.324947429Z"} +2026/03/21 12:36:24 ───────────────────────────────────────────────── +2026/03/21 12:36:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:36:29 [transform_engine] {"stage_name":"transform_engine","events_processed":155,"events_dropped":0,"avg_latency_ms":206.34711628429798,"throughput_eps":0,"last_update":"2026-03-21T12:36:24.210312807Z"} +2026/03/21 12:36:29 [log_collector] {"stage_name":"log_collector","events_processed":8598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1719.6,"last_update":"2026-03-21T12:36:24.068568161Z"} +2026/03/21 12:36:29 [metric_collector] {"stage_name":"metric_collector","events_processed":4654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":930.8,"last_update":"2026-03-21T12:36:24.068799734Z"} +2026/03/21 12:36:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:36:24.078038365Z"} +2026/03/21 12:36:29 [detection_layer] {"stage_name":"detection_layer","events_processed":155,"events_dropped":0,"avg_latency_ms":18.147531672548432,"throughput_eps":0,"last_update":"2026-03-21T12:36:24.210364556Z"} +2026/03/21 12:36:29 ───────────────────────────────────────────────── +2026/03/21 12:36:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:36:34 [log_collector] {"stage_name":"log_collector","events_processed":8598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1719.6,"last_update":"2026-03-21T12:36:29.068101313Z"} +2026/03/21 12:36:34 [metric_collector] {"stage_name":"metric_collector","events_processed":4659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":931.8,"last_update":"2026-03-21T12:36:29.068210803Z"} +2026/03/21 12:36:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:36:29.078474656Z"} +2026/03/21 12:36:34 [detection_layer] {"stage_name":"detection_layer","events_processed":155,"events_dropped":0,"avg_latency_ms":18.147531672548432,"throughput_eps":0,"last_update":"2026-03-21T12:36:29.210916799Z"} +2026/03/21 12:36:34 [transform_engine] {"stage_name":"transform_engine","events_processed":155,"events_dropped":0,"avg_latency_ms":206.34711628429798,"throughput_eps":0,"last_update":"2026-03-21T12:36:29.209724065Z"} +2026/03/21 12:36:34 ───────────────────────────────────────────────── +2026/03/21 12:36:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:36:39 [log_collector] {"stage_name":"log_collector","events_processed":8598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1719.6,"last_update":"2026-03-21T12:36:34.068088217Z"} +2026/03/21 12:36:39 [metric_collector] {"stage_name":"metric_collector","events_processed":4664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":932.8,"last_update":"2026-03-21T12:36:34.068477251Z"} +2026/03/21 12:36:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1868,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:36:34.07739656Z"} +2026/03/21 12:36:39 [detection_layer] {"stage_name":"detection_layer","events_processed":155,"events_dropped":0,"avg_latency_ms":18.147531672548432,"throughput_eps":0,"last_update":"2026-03-21T12:36:34.210679693Z"} +2026/03/21 12:36:39 [transform_engine] {"stage_name":"transform_engine","events_processed":155,"events_dropped":0,"avg_latency_ms":206.34711628429798,"throughput_eps":0,"last_update":"2026-03-21T12:36:34.210630079Z"} +2026/03/21 12:36:39 ───────────────────────────────────────────────── +2026/03/21 12:36:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:36:44 [detection_layer] {"stage_name":"detection_layer","events_processed":155,"events_dropped":0,"avg_latency_ms":18.147531672548432,"throughput_eps":0,"last_update":"2026-03-21T12:36:39.210568554Z"} +2026/03/21 12:36:44 [transform_engine] {"stage_name":"transform_engine","events_processed":155,"events_dropped":0,"avg_latency_ms":206.34711628429798,"throughput_eps":0,"last_update":"2026-03-21T12:36:39.210518139Z"} +2026/03/21 12:36:44 [log_collector] {"stage_name":"log_collector","events_processed":8598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1719.6,"last_update":"2026-03-21T12:36:39.068901507Z"} +2026/03/21 12:36:44 [metric_collector] {"stage_name":"metric_collector","events_processed":4669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":933.8,"last_update":"2026-03-21T12:36:39.06912761Z"} +2026/03/21 12:36:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:36:39.078260809Z"} +2026/03/21 12:36:44 ───────────────────────────────────────────────── +2026/03/21 12:36:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:36:49 [log_collector] {"stage_name":"log_collector","events_processed":8598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1719.6,"last_update":"2026-03-21T12:36:44.068762418Z"} +2026/03/21 12:36:49 [metric_collector] {"stage_name":"metric_collector","events_processed":4674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":934.8,"last_update":"2026-03-21T12:36:44.069130432Z"} +2026/03/21 12:36:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:36:44.078827891Z"} +2026/03/21 12:36:49 [detection_layer] {"stage_name":"detection_layer","events_processed":155,"events_dropped":0,"avg_latency_ms":18.147531672548432,"throughput_eps":0,"last_update":"2026-03-21T12:36:44.209994482Z"} +2026/03/21 12:36:49 [transform_engine] {"stage_name":"transform_engine","events_processed":155,"events_dropped":0,"avg_latency_ms":206.34711628429798,"throughput_eps":0,"last_update":"2026-03-21T12:36:44.209953002Z"} +2026/03/21 12:36:49 ───────────────────────────────────────────────── +2026/03/21 12:36:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:36:54 [log_collector] {"stage_name":"log_collector","events_processed":8598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1719.6,"last_update":"2026-03-21T12:36:49.068565091Z"} +2026/03/21 12:36:54 [metric_collector] {"stage_name":"metric_collector","events_processed":4679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":935.8,"last_update":"2026-03-21T12:36:49.069037897Z"} +2026/03/21 12:36:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:36:49.077829991Z"} +2026/03/21 12:36:54 [detection_layer] {"stage_name":"detection_layer","events_processed":155,"events_dropped":0,"avg_latency_ms":18.147531672548432,"throughput_eps":0,"last_update":"2026-03-21T12:36:49.210202452Z"} +2026/03/21 12:36:54 [transform_engine] {"stage_name":"transform_engine","events_processed":156,"events_dropped":0,"avg_latency_ms":178.74885282743838,"throughput_eps":0,"last_update":"2026-03-21T12:36:49.278596003Z"} +2026/03/21 12:36:54 ───────────────────────────────────────────────── +2026/03/21 12:36:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:36:59 [transform_engine] {"stage_name":"transform_engine","events_processed":156,"events_dropped":0,"avg_latency_ms":178.74885282743838,"throughput_eps":0,"last_update":"2026-03-21T12:36:54.210566814Z"} +2026/03/21 12:36:59 [log_collector] {"stage_name":"log_collector","events_processed":8598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1719.6,"last_update":"2026-03-21T12:36:54.068152786Z"} +2026/03/21 12:36:59 [metric_collector] {"stage_name":"metric_collector","events_processed":4684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":936.8,"last_update":"2026-03-21T12:36:54.068628216Z"} +2026/03/21 12:36:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1876,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:36:54.079248121Z"} +2026/03/21 12:36:59 [detection_layer] {"stage_name":"detection_layer","events_processed":156,"events_dropped":0,"avg_latency_ms":18.724648338038747,"throughput_eps":0,"last_update":"2026-03-21T12:36:54.210531717Z"} +2026/03/21 12:36:59 ───────────────────────────────────────────────── +2026/03/21 12:37:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:37:04 [log_collector] {"stage_name":"log_collector","events_processed":8598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1719.6,"last_update":"2026-03-21T12:37:04.068119983Z"} +2026/03/21 12:37:04 [metric_collector] {"stage_name":"metric_collector","events_processed":4689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":937.8,"last_update":"2026-03-21T12:36:59.068595261Z"} +2026/03/21 12:37:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:36:59.077834913Z"} +2026/03/21 12:37:04 [detection_layer] {"stage_name":"detection_layer","events_processed":156,"events_dropped":0,"avg_latency_ms":18.724648338038747,"throughput_eps":0,"last_update":"2026-03-21T12:36:59.210141227Z"} +2026/03/21 12:37:04 [transform_engine] {"stage_name":"transform_engine","events_processed":156,"events_dropped":0,"avg_latency_ms":178.74885282743838,"throughput_eps":0,"last_update":"2026-03-21T12:36:59.210163059Z"} +2026/03/21 12:37:04 ───────────────────────────────────────────────── +2026/03/21 12:37:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:37:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:37:04.078010883Z"} +2026/03/21 12:37:09 [detection_layer] {"stage_name":"detection_layer","events_processed":156,"events_dropped":0,"avg_latency_ms":18.724648338038747,"throughput_eps":0,"last_update":"2026-03-21T12:37:04.210317096Z"} +2026/03/21 12:37:09 [transform_engine] {"stage_name":"transform_engine","events_processed":156,"events_dropped":0,"avg_latency_ms":178.74885282743838,"throughput_eps":0,"last_update":"2026-03-21T12:37:04.210282449Z"} +2026/03/21 12:37:09 [log_collector] {"stage_name":"log_collector","events_processed":8598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1719.6,"last_update":"2026-03-21T12:37:04.068119983Z"} +2026/03/21 12:37:09 [metric_collector] {"stage_name":"metric_collector","events_processed":4694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":938.8,"last_update":"2026-03-21T12:37:04.068746012Z"} +2026/03/21 12:37:09 ───────────────────────────────────────────────── +2026/03/21 12:37:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:37:14 [log_collector] {"stage_name":"log_collector","events_processed":8598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1719.6,"last_update":"2026-03-21T12:37:09.068085732Z"} +2026/03/21 12:37:14 [metric_collector] {"stage_name":"metric_collector","events_processed":4699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":939.8,"last_update":"2026-03-21T12:37:09.068855957Z"} +2026/03/21 12:37:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:37:09.077560776Z"} +2026/03/21 12:37:14 [detection_layer] {"stage_name":"detection_layer","events_processed":156,"events_dropped":0,"avg_latency_ms":18.724648338038747,"throughput_eps":0,"last_update":"2026-03-21T12:37:09.210801738Z"} +2026/03/21 12:37:14 [transform_engine] {"stage_name":"transform_engine","events_processed":156,"events_dropped":0,"avg_latency_ms":178.74885282743838,"throughput_eps":0,"last_update":"2026-03-21T12:37:09.209692274Z"} +2026/03/21 12:37:14 ───────────────────────────────────────────────── +2026/03/21 12:37:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:37:19 [detection_layer] {"stage_name":"detection_layer","events_processed":156,"events_dropped":0,"avg_latency_ms":18.724648338038747,"throughput_eps":0,"last_update":"2026-03-21T12:37:14.209976458Z"} +2026/03/21 12:37:19 [transform_engine] {"stage_name":"transform_engine","events_processed":156,"events_dropped":0,"avg_latency_ms":178.74885282743838,"throughput_eps":0,"last_update":"2026-03-21T12:37:14.209943775Z"} +2026/03/21 12:37:19 [log_collector] {"stage_name":"log_collector","events_processed":8598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1719.6,"last_update":"2026-03-21T12:37:14.068092715Z"} +2026/03/21 12:37:19 [metric_collector] {"stage_name":"metric_collector","events_processed":4704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":940.8,"last_update":"2026-03-21T12:37:14.068468886Z"} +2026/03/21 12:37:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:37:14.077693759Z"} +2026/03/21 12:37:19 ───────────────────────────────────────────────── +2026/03/21 12:37:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:37:24 [detection_layer] {"stage_name":"detection_layer","events_processed":156,"events_dropped":0,"avg_latency_ms":18.724648338038747,"throughput_eps":0,"last_update":"2026-03-21T12:37:19.210675079Z"} +2026/03/21 12:37:24 [transform_engine] {"stage_name":"transform_engine","events_processed":157,"events_dropped":0,"avg_latency_ms":156.7605730619507,"throughput_eps":0,"last_update":"2026-03-21T12:37:19.279520186Z"} +2026/03/21 12:37:24 [log_collector] {"stage_name":"log_collector","events_processed":8598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1719.6,"last_update":"2026-03-21T12:37:24.068170044Z"} +2026/03/21 12:37:24 [metric_collector] {"stage_name":"metric_collector","events_processed":4709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":941.8,"last_update":"2026-03-21T12:37:19.0683754Z"} +2026/03/21 12:37:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1886,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:37:19.077397696Z"} +2026/03/21 12:37:24 ───────────────────────────────────────────────── +Saved state: 16 clusters, 8599 messages, reason: none +2026/03/21 12:37:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:37:29 [detection_layer] {"stage_name":"detection_layer","events_processed":157,"events_dropped":0,"avg_latency_ms":19.736741470431,"throughput_eps":0,"last_update":"2026-03-21T12:37:24.210324695Z"} +2026/03/21 12:37:29 [transform_engine] {"stage_name":"transform_engine","events_processed":157,"events_dropped":0,"avg_latency_ms":156.7605730619507,"throughput_eps":0,"last_update":"2026-03-21T12:37:24.210279549Z"} +2026/03/21 12:37:29 [log_collector] {"stage_name":"log_collector","events_processed":8598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1719.6,"last_update":"2026-03-21T12:37:24.068170044Z"} +2026/03/21 12:37:29 [metric_collector] {"stage_name":"metric_collector","events_processed":4714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":942.8,"last_update":"2026-03-21T12:37:24.068687344Z"} +2026/03/21 12:37:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:37:24.078077565Z"} +2026/03/21 12:37:29 ───────────────────────────────────────────────── +2026/03/21 12:37:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:37:34 [log_collector] {"stage_name":"log_collector","events_processed":8612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1722.4,"last_update":"2026-03-21T12:37:29.069059958Z"} +2026/03/21 12:37:34 [metric_collector] {"stage_name":"metric_collector","events_processed":4719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":943.8,"last_update":"2026-03-21T12:37:29.06905107Z"} +2026/03/21 12:37:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:37:29.077770337Z"} +2026/03/21 12:37:34 [detection_layer] {"stage_name":"detection_layer","events_processed":157,"events_dropped":0,"avg_latency_ms":19.736741470431,"throughput_eps":0,"last_update":"2026-03-21T12:37:29.210054678Z"} +2026/03/21 12:37:34 [transform_engine] {"stage_name":"transform_engine","events_processed":157,"events_dropped":0,"avg_latency_ms":156.7605730619507,"throughput_eps":0,"last_update":"2026-03-21T12:37:29.210167024Z"} +2026/03/21 12:37:34 ───────────────────────────────────────────────── +2026/03/21 12:37:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:37:39 [log_collector] {"stage_name":"log_collector","events_processed":8612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1722.4,"last_update":"2026-03-21T12:37:34.069086812Z"} +2026/03/21 12:37:39 [metric_collector] {"stage_name":"metric_collector","events_processed":4724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":944.8,"last_update":"2026-03-21T12:37:34.06972313Z"} +2026/03/21 12:37:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1892,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:37:34.079531141Z"} +2026/03/21 12:37:39 [detection_layer] {"stage_name":"detection_layer","events_processed":157,"events_dropped":0,"avg_latency_ms":19.736741470431,"throughput_eps":0,"last_update":"2026-03-21T12:37:34.209886148Z"} +2026/03/21 12:37:39 [transform_engine] {"stage_name":"transform_engine","events_processed":157,"events_dropped":0,"avg_latency_ms":156.7605730619507,"throughput_eps":0,"last_update":"2026-03-21T12:37:34.209809572Z"} +2026/03/21 12:37:39 ───────────────────────────────────────────────── +2026/03/21 12:37:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:37:44 [metric_collector] {"stage_name":"metric_collector","events_processed":4729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":945.8,"last_update":"2026-03-21T12:37:39.069148885Z"} +2026/03/21 12:37:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:37:39.07886497Z"} +2026/03/21 12:37:44 [detection_layer] {"stage_name":"detection_layer","events_processed":157,"events_dropped":0,"avg_latency_ms":19.736741470431,"throughput_eps":0,"last_update":"2026-03-21T12:37:39.210038726Z"} +2026/03/21 12:37:44 [transform_engine] {"stage_name":"transform_engine","events_processed":157,"events_dropped":0,"avg_latency_ms":156.7605730619507,"throughput_eps":0,"last_update":"2026-03-21T12:37:39.209984902Z"} +2026/03/21 12:37:44 [log_collector] {"stage_name":"log_collector","events_processed":8612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1722.4,"last_update":"2026-03-21T12:37:39.068853209Z"} +2026/03/21 12:37:44 ───────────────────────────────────────────────── +2026/03/21 12:37:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:37:49 [log_collector] {"stage_name":"log_collector","events_processed":8612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1722.4,"last_update":"2026-03-21T12:37:44.068764678Z"} +2026/03/21 12:37:49 [metric_collector] {"stage_name":"metric_collector","events_processed":4734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":946.8,"last_update":"2026-03-21T12:37:44.069070724Z"} +2026/03/21 12:37:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1896,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:37:44.078921487Z"} +2026/03/21 12:37:49 [detection_layer] {"stage_name":"detection_layer","events_processed":157,"events_dropped":0,"avg_latency_ms":19.736741470431,"throughput_eps":0,"last_update":"2026-03-21T12:37:44.210206536Z"} +2026/03/21 12:37:49 [transform_engine] {"stage_name":"transform_engine","events_processed":157,"events_dropped":0,"avg_latency_ms":156.7605730619507,"throughput_eps":0,"last_update":"2026-03-21T12:37:44.210317948Z"} +2026/03/21 12:37:49 ───────────────────────────────────────────────── +2026/03/21 12:37:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:37:54 [detection_layer] {"stage_name":"detection_layer","events_processed":157,"events_dropped":0,"avg_latency_ms":19.736741470431,"throughput_eps":0,"last_update":"2026-03-21T12:37:49.210610793Z"} +2026/03/21 12:37:54 [transform_engine] {"stage_name":"transform_engine","events_processed":158,"events_dropped":0,"avg_latency_ms":147.30833884956058,"throughput_eps":0,"last_update":"2026-03-21T12:37:49.320158048Z"} +2026/03/21 12:37:54 [log_collector] {"stage_name":"log_collector","events_processed":8612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1722.4,"last_update":"2026-03-21T12:37:49.068268652Z"} +2026/03/21 12:37:54 [metric_collector] {"stage_name":"metric_collector","events_processed":4739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":947.8,"last_update":"2026-03-21T12:37:49.06871192Z"} +2026/03/21 12:37:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1898,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:37:49.076360356Z"} +2026/03/21 12:37:54 ───────────────────────────────────────────────── +2026/03/21 12:37:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:37:59 [log_collector] {"stage_name":"log_collector","events_processed":8612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1722.4,"last_update":"2026-03-21T12:37:54.068794143Z"} +2026/03/21 12:37:59 [metric_collector] {"stage_name":"metric_collector","events_processed":4744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":948.8,"last_update":"2026-03-21T12:37:54.069092123Z"} +2026/03/21 12:37:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1900,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:37:54.078017344Z"} +2026/03/21 12:37:59 [detection_layer] {"stage_name":"detection_layer","events_processed":158,"events_dropped":0,"avg_latency_ms":20.064613376344802,"throughput_eps":0,"last_update":"2026-03-21T12:37:54.210433228Z"} +2026/03/21 12:37:59 [transform_engine] {"stage_name":"transform_engine","events_processed":158,"events_dropped":0,"avg_latency_ms":147.30833884956058,"throughput_eps":0,"last_update":"2026-03-21T12:37:54.210396888Z"} +2026/03/21 12:37:59 ───────────────────────────────────────────────── +2026/03/21 12:38:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:38:04 [log_collector] {"stage_name":"log_collector","events_processed":8612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1722.4,"last_update":"2026-03-21T12:37:59.068132566Z"} +2026/03/21 12:38:04 [metric_collector] {"stage_name":"metric_collector","events_processed":4749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":949.8,"last_update":"2026-03-21T12:37:59.068455835Z"} +2026/03/21 12:38:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:37:59.078528162Z"} +2026/03/21 12:38:04 [detection_layer] {"stage_name":"detection_layer","events_processed":158,"events_dropped":0,"avg_latency_ms":20.064613376344802,"throughput_eps":0,"last_update":"2026-03-21T12:37:59.209878827Z"} +2026/03/21 12:38:04 [transform_engine] {"stage_name":"transform_engine","events_processed":158,"events_dropped":0,"avg_latency_ms":147.30833884956058,"throughput_eps":0,"last_update":"2026-03-21T12:37:59.209867554Z"} +2026/03/21 12:38:04 ───────────────────────────────────────────────── +2026/03/21 12:38:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:38:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:38:04.079239485Z"} +2026/03/21 12:38:09 [detection_layer] {"stage_name":"detection_layer","events_processed":158,"events_dropped":0,"avg_latency_ms":20.064613376344802,"throughput_eps":0,"last_update":"2026-03-21T12:38:04.210606992Z"} +2026/03/21 12:38:09 [transform_engine] {"stage_name":"transform_engine","events_processed":158,"events_dropped":0,"avg_latency_ms":147.30833884956058,"throughput_eps":0,"last_update":"2026-03-21T12:38:04.210718245Z"} +2026/03/21 12:38:09 [log_collector] {"stage_name":"log_collector","events_processed":8612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1722.4,"last_update":"2026-03-21T12:38:04.068989949Z"} +2026/03/21 12:38:09 [metric_collector] {"stage_name":"metric_collector","events_processed":4754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":950.8,"last_update":"2026-03-21T12:38:04.069408561Z"} +2026/03/21 12:38:09 ───────────────────────────────────────────────── +2026/03/21 12:38:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:38:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1906,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:38:09.077308074Z"} +2026/03/21 12:38:14 [detection_layer] {"stage_name":"detection_layer","events_processed":158,"events_dropped":0,"avg_latency_ms":20.064613376344802,"throughput_eps":0,"last_update":"2026-03-21T12:38:09.210538028Z"} +2026/03/21 12:38:14 [transform_engine] {"stage_name":"transform_engine","events_processed":158,"events_dropped":0,"avg_latency_ms":147.30833884956058,"throughput_eps":0,"last_update":"2026-03-21T12:38:09.21064909Z"} +2026/03/21 12:38:14 [log_collector] {"stage_name":"log_collector","events_processed":8612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1722.4,"last_update":"2026-03-21T12:38:09.068094963Z"} +2026/03/21 12:38:14 [metric_collector] {"stage_name":"metric_collector","events_processed":4758,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":951.6,"last_update":"2026-03-21T12:38:09.067997837Z"} +2026/03/21 12:38:14 ───────────────────────────────────────────────── +2026/03/21 12:38:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:38:19 [log_collector] {"stage_name":"log_collector","events_processed":8612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1722.4,"last_update":"2026-03-21T12:38:14.068715503Z"} +2026/03/21 12:38:19 [metric_collector] {"stage_name":"metric_collector","events_processed":4763,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":952.6,"last_update":"2026-03-21T12:38:14.068579572Z"} +2026/03/21 12:38:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1908,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:38:14.077598001Z"} +2026/03/21 12:38:19 [detection_layer] {"stage_name":"detection_layer","events_processed":158,"events_dropped":0,"avg_latency_ms":20.064613376344802,"throughput_eps":0,"last_update":"2026-03-21T12:38:14.209917911Z"} +2026/03/21 12:38:19 [transform_engine] {"stage_name":"transform_engine","events_processed":158,"events_dropped":0,"avg_latency_ms":147.30833884956058,"throughput_eps":0,"last_update":"2026-03-21T12:38:14.209856334Z"} +2026/03/21 12:38:19 ───────────────────────────────────────────────── +2026/03/21 12:38:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:38:24 [detection_layer] {"stage_name":"detection_layer","events_processed":158,"events_dropped":0,"avg_latency_ms":20.064613376344802,"throughput_eps":0,"last_update":"2026-03-21T12:38:19.210681858Z"} +2026/03/21 12:38:24 [transform_engine] {"stage_name":"transform_engine","events_processed":159,"events_dropped":0,"avg_latency_ms":131.72206607964847,"throughput_eps":0,"last_update":"2026-03-21T12:38:19.280034968Z"} +2026/03/21 12:38:24 [log_collector] {"stage_name":"log_collector","events_processed":8612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1722.4,"last_update":"2026-03-21T12:38:19.069120471Z"} +2026/03/21 12:38:24 [metric_collector] {"stage_name":"metric_collector","events_processed":4768,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":953.6,"last_update":"2026-03-21T12:38:19.069128577Z"} +2026/03/21 12:38:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:38:19.079267351Z"} +2026/03/21 12:38:24 ───────────────────────────────────────────────── +2026/03/21 12:38:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:38:29 [detection_layer] {"stage_name":"detection_layer","events_processed":159,"events_dropped":0,"avg_latency_ms":20.684064901075843,"throughput_eps":0,"last_update":"2026-03-21T12:38:24.210490948Z"} +2026/03/21 12:38:29 [transform_engine] {"stage_name":"transform_engine","events_processed":159,"events_dropped":0,"avg_latency_ms":131.72206607964847,"throughput_eps":0,"last_update":"2026-03-21T12:38:24.210510175Z"} +2026/03/21 12:38:29 [log_collector] {"stage_name":"log_collector","events_processed":8612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1722.4,"last_update":"2026-03-21T12:38:24.068623816Z"} +2026/03/21 12:38:29 [metric_collector] {"stage_name":"metric_collector","events_processed":4774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":954.8,"last_update":"2026-03-21T12:38:24.068950221Z"} +2026/03/21 12:38:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1912,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:38:24.078259708Z"} +2026/03/21 12:38:29 ───────────────────────────────────────────────── +Saved state: 16 clusters, 8613 messages, reason: none +2026/03/21 12:38:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:38:34 [detection_layer] {"stage_name":"detection_layer","events_processed":159,"events_dropped":0,"avg_latency_ms":20.684064901075843,"throughput_eps":0,"last_update":"2026-03-21T12:38:29.21021589Z"} +2026/03/21 12:38:34 [transform_engine] {"stage_name":"transform_engine","events_processed":159,"events_dropped":0,"avg_latency_ms":131.72206607964847,"throughput_eps":0,"last_update":"2026-03-21T12:38:29.210230839Z"} +2026/03/21 12:38:34 [log_collector] {"stage_name":"log_collector","events_processed":8612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1722.4,"last_update":"2026-03-21T12:38:29.068091345Z"} +2026/03/21 12:38:34 [metric_collector] {"stage_name":"metric_collector","events_processed":4779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":955.8,"last_update":"2026-03-21T12:38:29.068249477Z"} +2026/03/21 12:38:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:38:29.078963814Z"} +2026/03/21 12:38:34 ───────────────────────────────────────────────── +2026/03/21 12:38:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:38:39 [detection_layer] {"stage_name":"detection_layer","events_processed":159,"events_dropped":0,"avg_latency_ms":20.684064901075843,"throughput_eps":0,"last_update":"2026-03-21T12:38:34.210194963Z"} +2026/03/21 12:38:39 [transform_engine] {"stage_name":"transform_engine","events_processed":159,"events_dropped":0,"avg_latency_ms":131.72206607964847,"throughput_eps":0,"last_update":"2026-03-21T12:38:34.210205743Z"} +2026/03/21 12:38:39 [log_collector] {"stage_name":"log_collector","events_processed":8617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1723.4,"last_update":"2026-03-21T12:38:34.068582438Z"} +2026/03/21 12:38:39 [metric_collector] {"stage_name":"metric_collector","events_processed":4784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":956.8,"last_update":"2026-03-21T12:38:34.068832887Z"} +2026/03/21 12:38:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:38:34.078188271Z"} +2026/03/21 12:38:39 ───────────────────────────────────────────────── +2026/03/21 12:38:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:38:44 [metric_collector] {"stage_name":"metric_collector","events_processed":4789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":957.8,"last_update":"2026-03-21T12:38:39.069168455Z"} +2026/03/21 12:38:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1918,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:38:39.079878944Z"} +2026/03/21 12:38:44 [detection_layer] {"stage_name":"detection_layer","events_processed":159,"events_dropped":0,"avg_latency_ms":20.684064901075843,"throughput_eps":0,"last_update":"2026-03-21T12:38:39.210099284Z"} +2026/03/21 12:38:44 [transform_engine] {"stage_name":"transform_engine","events_processed":159,"events_dropped":0,"avg_latency_ms":131.72206607964847,"throughput_eps":0,"last_update":"2026-03-21T12:38:39.21011276Z"} +2026/03/21 12:38:44 [log_collector] {"stage_name":"log_collector","events_processed":8617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1723.4,"last_update":"2026-03-21T12:38:39.068913938Z"} +2026/03/21 12:38:44 ───────────────────────────────────────────────── +2026/03/21 12:38:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:38:49 [transform_engine] {"stage_name":"transform_engine","events_processed":159,"events_dropped":0,"avg_latency_ms":131.72206607964847,"throughput_eps":0,"last_update":"2026-03-21T12:38:44.209792023Z"} +2026/03/21 12:38:49 [log_collector] {"stage_name":"log_collector","events_processed":8617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1723.4,"last_update":"2026-03-21T12:38:44.068180159Z"} +2026/03/21 12:38:49 [metric_collector] {"stage_name":"metric_collector","events_processed":4794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":958.8,"last_update":"2026-03-21T12:38:44.068388939Z"} +2026/03/21 12:38:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1920,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:38:44.075624013Z"} +2026/03/21 12:38:49 [detection_layer] {"stage_name":"detection_layer","events_processed":159,"events_dropped":0,"avg_latency_ms":20.684064901075843,"throughput_eps":0,"last_update":"2026-03-21T12:38:44.210953266Z"} +2026/03/21 12:38:49 ───────────────────────────────────────────────── +2026/03/21 12:38:49 [ANOMALY] time=2026-03-21T12:38:49Z score=0.9176 method=SEAD details=MAD!:w=0.33,s=0.92 RRCF-fast!:w=0.17,s=0.98 RRCF-mid!:w=0.15,s=0.91 RRCF-slow!:w=0.14,s=0.92 COPOD!:w=0.20,s=0.86 +2026/03/21 12:38:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:38:54 [log_collector] {"stage_name":"log_collector","events_processed":8617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1723.4,"last_update":"2026-03-21T12:38:49.068778486Z"} +2026/03/21 12:38:54 [metric_collector] {"stage_name":"metric_collector","events_processed":4799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":959.8,"last_update":"2026-03-21T12:38:49.069006773Z"} +2026/03/21 12:38:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:38:49.078378137Z"} +2026/03/21 12:38:54 [detection_layer] {"stage_name":"detection_layer","events_processed":159,"events_dropped":0,"avg_latency_ms":20.684064901075843,"throughput_eps":0,"last_update":"2026-03-21T12:38:49.210070517Z"} +2026/03/21 12:38:54 [transform_engine] {"stage_name":"transform_engine","events_processed":160,"events_dropped":0,"avg_latency_ms":127.05082146371878,"throughput_eps":0,"last_update":"2026-03-21T12:38:49.318449205Z"} +2026/03/21 12:38:54 ───────────────────────────────────────────────── +2026/03/21 12:38:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:38:59 [log_collector] {"stage_name":"log_collector","events_processed":8617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1723.4,"last_update":"2026-03-21T12:38:54.068077147Z"} +2026/03/21 12:38:59 [metric_collector] {"stage_name":"metric_collector","events_processed":4804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":960.8,"last_update":"2026-03-21T12:38:54.06847569Z"} +2026/03/21 12:38:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:38:54.076623852Z"} +2026/03/21 12:38:59 [detection_layer] {"stage_name":"detection_layer","events_processed":160,"events_dropped":0,"avg_latency_ms":18.693156920860673,"throughput_eps":0,"last_update":"2026-03-21T12:38:54.210823895Z"} +2026/03/21 12:38:59 [transform_engine] {"stage_name":"transform_engine","events_processed":160,"events_dropped":0,"avg_latency_ms":127.05082146371878,"throughput_eps":0,"last_update":"2026-03-21T12:38:54.209720451Z"} +2026/03/21 12:38:59 ───────────────────────────────────────────────── +2026/03/21 12:39:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:39:04 [log_collector] {"stage_name":"log_collector","events_processed":8617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1723.4,"last_update":"2026-03-21T12:38:59.068466058Z"} +2026/03/21 12:39:04 [metric_collector] {"stage_name":"metric_collector","events_processed":4809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":961.8,"last_update":"2026-03-21T12:38:59.068707271Z"} +2026/03/21 12:39:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:38:59.079631278Z"} +2026/03/21 12:39:04 [detection_layer] {"stage_name":"detection_layer","events_processed":160,"events_dropped":0,"avg_latency_ms":18.693156920860673,"throughput_eps":0,"last_update":"2026-03-21T12:38:59.210674495Z"} +2026/03/21 12:39:04 [transform_engine] {"stage_name":"transform_engine","events_processed":160,"events_dropped":0,"avg_latency_ms":127.05082146371878,"throughput_eps":0,"last_update":"2026-03-21T12:38:59.210683362Z"} +2026/03/21 12:39:04 ───────────────────────────────────────────────── +2026/03/21 12:39:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:39:09 [log_collector] {"stage_name":"log_collector","events_processed":8617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1723.4,"last_update":"2026-03-21T12:39:04.068640993Z"} +2026/03/21 12:39:09 [metric_collector] {"stage_name":"metric_collector","events_processed":4814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":962.8,"last_update":"2026-03-21T12:39:04.068892315Z"} +2026/03/21 12:39:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:39:04.075574339Z"} +2026/03/21 12:39:09 [detection_layer] {"stage_name":"detection_layer","events_processed":160,"events_dropped":0,"avg_latency_ms":18.693156920860673,"throughput_eps":0,"last_update":"2026-03-21T12:39:04.210382326Z"} +2026/03/21 12:39:09 [transform_engine] {"stage_name":"transform_engine","events_processed":160,"events_dropped":0,"avg_latency_ms":127.05082146371878,"throughput_eps":0,"last_update":"2026-03-21T12:39:04.209711401Z"} +2026/03/21 12:39:09 ───────────────────────────────────────────────── +2026/03/21 12:39:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:39:14 [log_collector] {"stage_name":"log_collector","events_processed":8617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1723.4,"last_update":"2026-03-21T12:39:09.068829968Z"} +2026/03/21 12:39:14 [metric_collector] {"stage_name":"metric_collector","events_processed":4819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":963.8,"last_update":"2026-03-21T12:39:09.068958534Z"} +2026/03/21 12:39:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1930,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:39:09.074737169Z"} +2026/03/21 12:39:14 [detection_layer] {"stage_name":"detection_layer","events_processed":160,"events_dropped":0,"avg_latency_ms":18.693156920860673,"throughput_eps":0,"last_update":"2026-03-21T12:39:09.210011008Z"} +2026/03/21 12:39:14 [transform_engine] {"stage_name":"transform_engine","events_processed":160,"events_dropped":0,"avg_latency_ms":127.05082146371878,"throughput_eps":0,"last_update":"2026-03-21T12:39:09.209992151Z"} +2026/03/21 12:39:14 ───────────────────────────────────────────────── +2026/03/21 12:39:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:39:19 [log_collector] {"stage_name":"log_collector","events_processed":8626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1725.2,"last_update":"2026-03-21T12:39:14.069040456Z"} +2026/03/21 12:39:19 [metric_collector] {"stage_name":"metric_collector","events_processed":4824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":964.8,"last_update":"2026-03-21T12:39:14.069030025Z"} +2026/03/21 12:39:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:39:14.074532832Z"} +2026/03/21 12:39:19 [detection_layer] {"stage_name":"detection_layer","events_processed":160,"events_dropped":0,"avg_latency_ms":18.693156920860673,"throughput_eps":0,"last_update":"2026-03-21T12:39:14.210891237Z"} +2026/03/21 12:39:19 [transform_engine] {"stage_name":"transform_engine","events_processed":160,"events_dropped":0,"avg_latency_ms":127.05082146371878,"throughput_eps":0,"last_update":"2026-03-21T12:39:14.209770542Z"} +2026/03/21 12:39:19 ───────────────────────────────────────────────── +2026/03/21 12:39:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:39:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:39:19.079365984Z"} +2026/03/21 12:39:24 [detection_layer] {"stage_name":"detection_layer","events_processed":160,"events_dropped":0,"avg_latency_ms":18.693156920860673,"throughput_eps":0,"last_update":"2026-03-21T12:39:19.210516777Z"} +2026/03/21 12:39:24 [transform_engine] {"stage_name":"transform_engine","events_processed":161,"events_dropped":0,"avg_latency_ms":135.51560217097503,"throughput_eps":0,"last_update":"2026-03-21T12:39:19.379854082Z"} +2026/03/21 12:39:24 [log_collector] {"stage_name":"log_collector","events_processed":8628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1725.6,"last_update":"2026-03-21T12:39:19.068931273Z"} +2026/03/21 12:39:24 [metric_collector] {"stage_name":"metric_collector","events_processed":4829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":965.8,"last_update":"2026-03-21T12:39:19.069726896Z"} +2026/03/21 12:39:24 ───────────────────────────────────────────────── +2026/03/21 12:39:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:39:29 [detection_layer] {"stage_name":"detection_layer","events_processed":161,"events_dropped":0,"avg_latency_ms":18.34072953668854,"throughput_eps":0,"last_update":"2026-03-21T12:39:24.210258012Z"} +2026/03/21 12:39:29 [transform_engine] {"stage_name":"transform_engine","events_processed":161,"events_dropped":0,"avg_latency_ms":135.51560217097503,"throughput_eps":0,"last_update":"2026-03-21T12:39:24.210244326Z"} +2026/03/21 12:39:29 [log_collector] {"stage_name":"log_collector","events_processed":8843,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1768.6,"last_update":"2026-03-21T12:39:24.068409595Z"} +2026/03/21 12:39:29 [metric_collector] {"stage_name":"metric_collector","events_processed":4834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":966.8,"last_update":"2026-03-21T12:39:24.068679141Z"} +2026/03/21 12:39:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:39:24.074740268Z"} +2026/03/21 12:39:29 ───────────────────────────────────────────────── +Saved state: 16 clusters, 8961 messages, reason: none +2026/03/21 12:39:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:39:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:39:29.079283792Z"} +2026/03/21 12:39:34 [detection_layer] {"stage_name":"detection_layer","events_processed":161,"events_dropped":0,"avg_latency_ms":18.34072953668854,"throughput_eps":0,"last_update":"2026-03-21T12:39:29.210548553Z"} +2026/03/21 12:39:34 [transform_engine] {"stage_name":"transform_engine","events_processed":161,"events_dropped":0,"avg_latency_ms":135.51560217097503,"throughput_eps":0,"last_update":"2026-03-21T12:39:29.210571998Z"} +2026/03/21 12:39:34 [log_collector] {"stage_name":"log_collector","events_processed":8960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1792,"last_update":"2026-03-21T12:39:29.068754279Z"} +2026/03/21 12:39:34 [metric_collector] {"stage_name":"metric_collector","events_processed":4839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":967.8,"last_update":"2026-03-21T12:39:29.069058432Z"} +2026/03/21 12:39:34 ───────────────────────────────────────────────── +2026/03/21 12:39:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:39:39 [detection_layer] {"stage_name":"detection_layer","events_processed":161,"events_dropped":0,"avg_latency_ms":18.34072953668854,"throughput_eps":0,"last_update":"2026-03-21T12:39:34.210592693Z"} +2026/03/21 12:39:39 [transform_engine] {"stage_name":"transform_engine","events_processed":161,"events_dropped":0,"avg_latency_ms":135.51560217097503,"throughput_eps":0,"last_update":"2026-03-21T12:39:34.210570641Z"} +2026/03/21 12:39:39 [log_collector] {"stage_name":"log_collector","events_processed":8972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1794.4,"last_update":"2026-03-21T12:39:34.068819309Z"} +2026/03/21 12:39:39 [metric_collector] {"stage_name":"metric_collector","events_processed":4844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":968.8,"last_update":"2026-03-21T12:39:34.069121208Z"} +2026/03/21 12:39:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1940,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:39:34.079201209Z"} +2026/03/21 12:39:39 ───────────────────────────────────────────────── +2026/03/21 12:39:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:39:44 [log_collector] {"stage_name":"log_collector","events_processed":8975,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1795,"last_update":"2026-03-21T12:39:39.068106856Z"} +2026/03/21 12:39:44 [metric_collector] {"stage_name":"metric_collector","events_processed":4849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":969.8,"last_update":"2026-03-21T12:39:39.06839062Z"} +2026/03/21 12:39:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:39:39.077914245Z"} +2026/03/21 12:39:44 [detection_layer] {"stage_name":"detection_layer","events_processed":161,"events_dropped":0,"avg_latency_ms":18.34072953668854,"throughput_eps":0,"last_update":"2026-03-21T12:39:39.210780504Z"} +2026/03/21 12:39:44 [transform_engine] {"stage_name":"transform_engine","events_processed":161,"events_dropped":0,"avg_latency_ms":135.51560217097503,"throughput_eps":0,"last_update":"2026-03-21T12:39:39.209649057Z"} +2026/03/21 12:39:44 ───────────────────────────────────────────────── +2026/03/21 12:39:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:39:49 [metric_collector] {"stage_name":"metric_collector","events_processed":4854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":970.8,"last_update":"2026-03-21T12:39:44.068788182Z"} +2026/03/21 12:39:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:39:44.07971731Z"} +2026/03/21 12:39:49 [detection_layer] {"stage_name":"detection_layer","events_processed":161,"events_dropped":0,"avg_latency_ms":18.34072953668854,"throughput_eps":0,"last_update":"2026-03-21T12:39:44.2099368Z"} +2026/03/21 12:39:49 [transform_engine] {"stage_name":"transform_engine","events_processed":161,"events_dropped":0,"avg_latency_ms":135.51560217097503,"throughput_eps":0,"last_update":"2026-03-21T12:39:44.209902795Z"} +2026/03/21 12:39:49 [log_collector] {"stage_name":"log_collector","events_processed":8975,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1795,"last_update":"2026-03-21T12:39:44.068218532Z"} +2026/03/21 12:39:49 ───────────────────────────────────────────────── +2026/03/21 12:39:49 [ANOMALY] time=2026-03-21T12:39:49Z score=0.8853 method=SEAD details=MAD!:w=0.33,s=0.89 RRCF-fast!:w=0.17,s=0.94 RRCF-mid!:w=0.15,s=0.89 RRCF-slow:w=0.14,s=0.65 COPOD!:w=0.20,s=0.99 +2026/03/21 12:39:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:39:54 [metric_collector] {"stage_name":"metric_collector","events_processed":4859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":971.8,"last_update":"2026-03-21T12:39:49.068444018Z"} +2026/03/21 12:39:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:39:49.078473212Z"} +2026/03/21 12:39:54 [detection_layer] {"stage_name":"detection_layer","events_processed":161,"events_dropped":0,"avg_latency_ms":18.34072953668854,"throughput_eps":0,"last_update":"2026-03-21T12:39:49.210396706Z"} +2026/03/21 12:39:54 [transform_engine] {"stage_name":"transform_engine","events_processed":162,"events_dropped":0,"avg_latency_ms":137.04241953678002,"throughput_eps":0,"last_update":"2026-03-21T12:39:49.353446514Z"} +2026/03/21 12:39:54 [log_collector] {"stage_name":"log_collector","events_processed":8986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1797.2,"last_update":"2026-03-21T12:39:49.068181415Z"} +2026/03/21 12:39:54 ───────────────────────────────────────────────── +2026/03/21 12:39:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:39:59 [log_collector] {"stage_name":"log_collector","events_processed":9002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1800.4,"last_update":"2026-03-21T12:39:54.068614801Z"} +2026/03/21 12:39:59 [metric_collector] {"stage_name":"metric_collector","events_processed":4864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":972.8,"last_update":"2026-03-21T12:39:54.069076926Z"} +2026/03/21 12:39:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:39:54.078441839Z"} +2026/03/21 12:39:59 [detection_layer] {"stage_name":"detection_layer","events_processed":162,"events_dropped":0,"avg_latency_ms":19.24555002935083,"throughput_eps":0,"last_update":"2026-03-21T12:39:54.210641662Z"} +2026/03/21 12:39:59 [transform_engine] {"stage_name":"transform_engine","events_processed":162,"events_dropped":0,"avg_latency_ms":137.04241953678002,"throughput_eps":0,"last_update":"2026-03-21T12:39:54.210668393Z"} +2026/03/21 12:39:59 ───────────────────────────────────────────────── +2026/03/21 12:40:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:40:04 [log_collector] {"stage_name":"log_collector","events_processed":9002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1800.4,"last_update":"2026-03-21T12:39:59.0681593Z"} +2026/03/21 12:40:04 [metric_collector] {"stage_name":"metric_collector","events_processed":4869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":973.8,"last_update":"2026-03-21T12:39:59.068440639Z"} +2026/03/21 12:40:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:39:59.078571899Z"} +2026/03/21 12:40:04 [detection_layer] {"stage_name":"detection_layer","events_processed":162,"events_dropped":0,"avg_latency_ms":19.24555002935083,"throughput_eps":0,"last_update":"2026-03-21T12:39:59.209885634Z"} +2026/03/21 12:40:04 [transform_engine] {"stage_name":"transform_engine","events_processed":162,"events_dropped":0,"avg_latency_ms":137.04241953678002,"throughput_eps":0,"last_update":"2026-03-21T12:39:59.209934668Z"} +2026/03/21 12:40:04 ───────────────────────────────────────────────── +2026/03/21 12:40:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:40:09 [log_collector] {"stage_name":"log_collector","events_processed":9002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1800.4,"last_update":"2026-03-21T12:40:04.068105952Z"} +2026/03/21 12:40:09 [metric_collector] {"stage_name":"metric_collector","events_processed":4874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":974.8,"last_update":"2026-03-21T12:40:04.068341152Z"} +2026/03/21 12:40:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:40:04.083189505Z"} +2026/03/21 12:40:09 [detection_layer] {"stage_name":"detection_layer","events_processed":162,"events_dropped":0,"avg_latency_ms":19.24555002935083,"throughput_eps":0,"last_update":"2026-03-21T12:40:04.210464437Z"} +2026/03/21 12:40:09 [transform_engine] {"stage_name":"transform_engine","events_processed":162,"events_dropped":0,"avg_latency_ms":137.04241953678002,"throughput_eps":0,"last_update":"2026-03-21T12:40:04.210426604Z"} +2026/03/21 12:40:09 ───────────────────────────────────────────────── +2026/03/21 12:40:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:40:14 [log_collector] {"stage_name":"log_collector","events_processed":9002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1800.4,"last_update":"2026-03-21T12:40:09.068144661Z"} +2026/03/21 12:40:14 [metric_collector] {"stage_name":"metric_collector","events_processed":4879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":975.8,"last_update":"2026-03-21T12:40:09.068635351Z"} +2026/03/21 12:40:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:40:09.078964019Z"} +2026/03/21 12:40:14 [detection_layer] {"stage_name":"detection_layer","events_processed":162,"events_dropped":0,"avg_latency_ms":19.24555002935083,"throughput_eps":0,"last_update":"2026-03-21T12:40:09.210199073Z"} +2026/03/21 12:40:14 [transform_engine] {"stage_name":"transform_engine","events_processed":162,"events_dropped":0,"avg_latency_ms":137.04241953678002,"throughput_eps":0,"last_update":"2026-03-21T12:40:09.210236285Z"} +2026/03/21 12:40:14 ───────────────────────────────────────────────── +2026/03/21 12:40:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:40:19 [log_collector] {"stage_name":"log_collector","events_processed":9002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1800.4,"last_update":"2026-03-21T12:40:14.068920636Z"} +2026/03/21 12:40:19 [metric_collector] {"stage_name":"metric_collector","events_processed":4884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":976.8,"last_update":"2026-03-21T12:40:14.069224859Z"} +2026/03/21 12:40:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:40:14.080874105Z"} +2026/03/21 12:40:19 [detection_layer] {"stage_name":"detection_layer","events_processed":162,"events_dropped":0,"avg_latency_ms":19.24555002935083,"throughput_eps":0,"last_update":"2026-03-21T12:40:14.210177441Z"} +2026/03/21 12:40:19 [transform_engine] {"stage_name":"transform_engine","events_processed":162,"events_dropped":0,"avg_latency_ms":137.04241953678002,"throughput_eps":0,"last_update":"2026-03-21T12:40:14.210106926Z"} +2026/03/21 12:40:19 ───────────────────────────────────────────────── +2026/03/21 12:40:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:40:24 [log_collector] {"stage_name":"log_collector","events_processed":9002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1800.4,"last_update":"2026-03-21T12:40:19.068865279Z"} +2026/03/21 12:40:24 [metric_collector] {"stage_name":"metric_collector","events_processed":4889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":977.8,"last_update":"2026-03-21T12:40:19.069004316Z"} +2026/03/21 12:40:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1958,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:40:19.079323075Z"} +2026/03/21 12:40:24 [detection_layer] {"stage_name":"detection_layer","events_processed":162,"events_dropped":0,"avg_latency_ms":19.24555002935083,"throughput_eps":0,"last_update":"2026-03-21T12:40:19.210508414Z"} +2026/03/21 12:40:24 [transform_engine] {"stage_name":"transform_engine","events_processed":163,"events_dropped":0,"avg_latency_ms":132.09409542942402,"throughput_eps":0,"last_update":"2026-03-21T12:40:19.322909556Z"} +2026/03/21 12:40:24 ───────────────────────────────────────────────── +2026/03/21 12:40:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:40:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:40:24.079706683Z"} +2026/03/21 12:40:29 [detection_layer] {"stage_name":"detection_layer","events_processed":163,"events_dropped":0,"avg_latency_ms":19.788514223480664,"throughput_eps":0,"last_update":"2026-03-21T12:40:24.210071291Z"} +2026/03/21 12:40:29 [transform_engine] {"stage_name":"transform_engine","events_processed":163,"events_dropped":0,"avg_latency_ms":132.09409542942402,"throughput_eps":0,"last_update":"2026-03-21T12:40:24.210085307Z"} +2026/03/21 12:40:29 [log_collector] {"stage_name":"log_collector","events_processed":9002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1800.4,"last_update":"2026-03-21T12:40:29.068090124Z"} +2026/03/21 12:40:29 [metric_collector] {"stage_name":"metric_collector","events_processed":4894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":978.8,"last_update":"2026-03-21T12:40:24.069417139Z"} +2026/03/21 12:40:29 ───────────────────────────────────────────────── +2026/03/21 12:40:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:40:34 [log_collector] {"stage_name":"log_collector","events_processed":9002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1800.4,"last_update":"2026-03-21T12:40:34.068474136Z"} +2026/03/21 12:40:34 [metric_collector] {"stage_name":"metric_collector","events_processed":4899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":979.8,"last_update":"2026-03-21T12:40:29.068630648Z"} +2026/03/21 12:40:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1962,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:40:29.079278788Z"} +2026/03/21 12:40:34 [detection_layer] {"stage_name":"detection_layer","events_processed":163,"events_dropped":0,"avg_latency_ms":19.788514223480664,"throughput_eps":0,"last_update":"2026-03-21T12:40:29.210426436Z"} +2026/03/21 12:40:34 [transform_engine] {"stage_name":"transform_engine","events_processed":163,"events_dropped":0,"avg_latency_ms":132.09409542942402,"throughput_eps":0,"last_update":"2026-03-21T12:40:29.21043897Z"} +2026/03/21 12:40:34 ───────────────────────────────────────────────── +2026/03/21 12:40:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:40:39 [metric_collector] {"stage_name":"metric_collector","events_processed":4904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":980.8,"last_update":"2026-03-21T12:40:34.069219313Z"} +2026/03/21 12:40:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:40:34.079862132Z"} +2026/03/21 12:40:39 [detection_layer] {"stage_name":"detection_layer","events_processed":163,"events_dropped":0,"avg_latency_ms":19.788514223480664,"throughput_eps":0,"last_update":"2026-03-21T12:40:34.210244294Z"} +2026/03/21 12:40:39 [transform_engine] {"stage_name":"transform_engine","events_processed":163,"events_dropped":0,"avg_latency_ms":132.09409542942402,"throughput_eps":0,"last_update":"2026-03-21T12:40:34.210259033Z"} +2026/03/21 12:40:39 [log_collector] {"stage_name":"log_collector","events_processed":9002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1800.4,"last_update":"2026-03-21T12:40:39.068116661Z"} +2026/03/21 12:40:39 ───────────────────────────────────────────────── +2026/03/21 12:40:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:40:44 [log_collector] {"stage_name":"log_collector","events_processed":9002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1800.4,"last_update":"2026-03-21T12:40:39.068116661Z"} +2026/03/21 12:40:44 [metric_collector] {"stage_name":"metric_collector","events_processed":4909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":981.8,"last_update":"2026-03-21T12:40:39.068394874Z"} +2026/03/21 12:40:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:40:39.079418663Z"} +2026/03/21 12:40:44 [detection_layer] {"stage_name":"detection_layer","events_processed":163,"events_dropped":0,"avg_latency_ms":19.788514223480664,"throughput_eps":0,"last_update":"2026-03-21T12:40:39.210486829Z"} +2026/03/21 12:40:44 [transform_engine] {"stage_name":"transform_engine","events_processed":163,"events_dropped":0,"avg_latency_ms":132.09409542942402,"throughput_eps":0,"last_update":"2026-03-21T12:40:39.210497359Z"} +2026/03/21 12:40:44 ───────────────────────────────────────────────── +2026/03/21 12:40:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:40:49 [log_collector] {"stage_name":"log_collector","events_processed":9002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1800.4,"last_update":"2026-03-21T12:40:44.068305867Z"} +2026/03/21 12:40:49 [metric_collector] {"stage_name":"metric_collector","events_processed":4914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":982.8,"last_update":"2026-03-21T12:40:44.068875789Z"} +2026/03/21 12:40:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:40:44.079659578Z"} +2026/03/21 12:40:49 [detection_layer] {"stage_name":"detection_layer","events_processed":163,"events_dropped":0,"avg_latency_ms":19.788514223480664,"throughput_eps":0,"last_update":"2026-03-21T12:40:44.209893658Z"} +2026/03/21 12:40:49 [transform_engine] {"stage_name":"transform_engine","events_processed":163,"events_dropped":0,"avg_latency_ms":132.09409542942402,"throughput_eps":0,"last_update":"2026-03-21T12:40:44.209902234Z"} +2026/03/21 12:40:49 ───────────────────────────────────────────────── +2026/03/21 12:40:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:40:54 [log_collector] {"stage_name":"log_collector","events_processed":9002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1800.4,"last_update":"2026-03-21T12:40:49.068740606Z"} +2026/03/21 12:40:54 [metric_collector] {"stage_name":"metric_collector","events_processed":4919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":983.8,"last_update":"2026-03-21T12:40:49.06918737Z"} +2026/03/21 12:40:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1970,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:40:49.080286985Z"} +2026/03/21 12:40:54 [detection_layer] {"stage_name":"detection_layer","events_processed":163,"events_dropped":0,"avg_latency_ms":19.788514223480664,"throughput_eps":0,"last_update":"2026-03-21T12:40:49.210544598Z"} +2026/03/21 12:40:54 [transform_engine] {"stage_name":"transform_engine","events_processed":164,"events_dropped":0,"avg_latency_ms":119.38459154353923,"throughput_eps":0,"last_update":"2026-03-21T12:40:49.279106816Z"} +2026/03/21 12:40:54 ───────────────────────────────────────────────── +2026/03/21 12:40:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:40:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:40:54.079807154Z"} +2026/03/21 12:40:59 [detection_layer] {"stage_name":"detection_layer","events_processed":164,"events_dropped":0,"avg_latency_ms":19.910461378784532,"throughput_eps":0,"last_update":"2026-03-21T12:40:54.210224864Z"} +2026/03/21 12:40:59 [transform_engine] {"stage_name":"transform_engine","events_processed":164,"events_dropped":0,"avg_latency_ms":119.38459154353923,"throughput_eps":0,"last_update":"2026-03-21T12:40:54.210266173Z"} +2026/03/21 12:40:59 [log_collector] {"stage_name":"log_collector","events_processed":9002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1800.4,"last_update":"2026-03-21T12:40:54.068738709Z"} +2026/03/21 12:40:59 [metric_collector] {"stage_name":"metric_collector","events_processed":4924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":984.8,"last_update":"2026-03-21T12:40:54.069039435Z"} +2026/03/21 12:40:59 ───────────────────────────────────────────────── +2026/03/21 12:41:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:41:04 [metric_collector] {"stage_name":"metric_collector","events_processed":4929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":985.8,"last_update":"2026-03-21T12:40:59.068585947Z"} +2026/03/21 12:41:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:40:59.079104057Z"} +2026/03/21 12:41:04 [detection_layer] {"stage_name":"detection_layer","events_processed":164,"events_dropped":0,"avg_latency_ms":19.910461378784532,"throughput_eps":0,"last_update":"2026-03-21T12:40:59.210382716Z"} +2026/03/21 12:41:04 [transform_engine] {"stage_name":"transform_engine","events_processed":164,"events_dropped":0,"avg_latency_ms":119.38459154353923,"throughput_eps":0,"last_update":"2026-03-21T12:40:59.210391884Z"} +2026/03/21 12:41:04 [log_collector] {"stage_name":"log_collector","events_processed":9002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1800.4,"last_update":"2026-03-21T12:40:59.068098363Z"} +2026/03/21 12:41:04 ───────────────────────────────────────────────── +Saved state: 16 clusters, 9003 messages, reason: none +2026/03/21 12:41:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:41:09 [detection_layer] {"stage_name":"detection_layer","events_processed":164,"events_dropped":0,"avg_latency_ms":19.910461378784532,"throughput_eps":0,"last_update":"2026-03-21T12:41:04.210926089Z"} +2026/03/21 12:41:09 [transform_engine] {"stage_name":"transform_engine","events_processed":164,"events_dropped":0,"avg_latency_ms":119.38459154353923,"throughput_eps":0,"last_update":"2026-03-21T12:41:04.209767109Z"} +2026/03/21 12:41:09 [log_collector] {"stage_name":"log_collector","events_processed":9002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1800.4,"last_update":"2026-03-21T12:41:04.068094638Z"} +2026/03/21 12:41:09 [metric_collector] {"stage_name":"metric_collector","events_processed":4934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":986.8,"last_update":"2026-03-21T12:41:04.068532196Z"} +2026/03/21 12:41:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:41:04.078563645Z"} +2026/03/21 12:41:09 ───────────────────────────────────────────────── +2026/03/21 12:41:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:41:14 [metric_collector] {"stage_name":"metric_collector","events_processed":4938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":987.6,"last_update":"2026-03-21T12:41:09.068671578Z"} +2026/03/21 12:41:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:41:09.081905269Z"} +2026/03/21 12:41:14 [detection_layer] {"stage_name":"detection_layer","events_processed":164,"events_dropped":0,"avg_latency_ms":19.910461378784532,"throughput_eps":0,"last_update":"2026-03-21T12:41:09.210160339Z"} +2026/03/21 12:41:14 [transform_engine] {"stage_name":"transform_engine","events_processed":164,"events_dropped":0,"avg_latency_ms":119.38459154353923,"throughput_eps":0,"last_update":"2026-03-21T12:41:09.210143336Z"} +2026/03/21 12:41:14 [log_collector] {"stage_name":"log_collector","events_processed":9016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1803.2,"last_update":"2026-03-21T12:41:14.068287609Z"} +2026/03/21 12:41:14 ───────────────────────────────────────────────── +2026/03/21 12:41:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:41:19 [log_collector] {"stage_name":"log_collector","events_processed":9016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1803.2,"last_update":"2026-03-21T12:41:14.068287609Z"} +2026/03/21 12:41:19 [metric_collector] {"stage_name":"metric_collector","events_processed":4944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":988.8,"last_update":"2026-03-21T12:41:14.069053617Z"} +2026/03/21 12:41:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:41:14.080756936Z"} +2026/03/21 12:41:19 [detection_layer] {"stage_name":"detection_layer","events_processed":164,"events_dropped":0,"avg_latency_ms":19.910461378784532,"throughput_eps":0,"last_update":"2026-03-21T12:41:14.210009526Z"} +2026/03/21 12:41:19 [transform_engine] {"stage_name":"transform_engine","events_processed":164,"events_dropped":0,"avg_latency_ms":119.38459154353923,"throughput_eps":0,"last_update":"2026-03-21T12:41:14.21002727Z"} +2026/03/21 12:41:19 ───────────────────────────────────────────────── +2026/03/21 12:41:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:41:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:41:19.079504465Z"} +2026/03/21 12:41:24 [detection_layer] {"stage_name":"detection_layer","events_processed":164,"events_dropped":0,"avg_latency_ms":19.910461378784532,"throughput_eps":0,"last_update":"2026-03-21T12:41:19.210868678Z"} +2026/03/21 12:41:24 [transform_engine] {"stage_name":"transform_engine","events_processed":165,"events_dropped":0,"avg_latency_ms":117.62688423483138,"throughput_eps":0,"last_update":"2026-03-21T12:41:19.320264947Z"} +2026/03/21 12:41:24 [log_collector] {"stage_name":"log_collector","events_processed":9016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1803.2,"last_update":"2026-03-21T12:41:19.06902596Z"} +2026/03/21 12:41:24 [metric_collector] {"stage_name":"metric_collector","events_processed":4949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":989.8,"last_update":"2026-03-21T12:41:19.069005942Z"} +2026/03/21 12:41:24 ───────────────────────────────────────────────── +2026/03/21 12:41:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:41:29 [metric_collector] {"stage_name":"metric_collector","events_processed":4954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":990.8,"last_update":"2026-03-21T12:41:24.068863832Z"} +2026/03/21 12:41:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:41:24.079591544Z"} +2026/03/21 12:41:29 [detection_layer] {"stage_name":"detection_layer","events_processed":165,"events_dropped":0,"avg_latency_ms":19.58029590302763,"throughput_eps":0,"last_update":"2026-03-21T12:41:24.209989236Z"} +2026/03/21 12:41:29 [transform_engine] {"stage_name":"transform_engine","events_processed":165,"events_dropped":0,"avg_latency_ms":117.62688423483138,"throughput_eps":0,"last_update":"2026-03-21T12:41:24.209831284Z"} +2026/03/21 12:41:29 [log_collector] {"stage_name":"log_collector","events_processed":9016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1803.2,"last_update":"2026-03-21T12:41:24.068549389Z"} +2026/03/21 12:41:29 ───────────────────────────────────────────────── +2026/03/21 12:41:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:41:34 [detection_layer] {"stage_name":"detection_layer","events_processed":165,"events_dropped":0,"avg_latency_ms":19.58029590302763,"throughput_eps":0,"last_update":"2026-03-21T12:41:29.21066371Z"} +2026/03/21 12:41:34 [transform_engine] {"stage_name":"transform_engine","events_processed":165,"events_dropped":0,"avg_latency_ms":117.62688423483138,"throughput_eps":0,"last_update":"2026-03-21T12:41:29.210670212Z"} +2026/03/21 12:41:34 [log_collector] {"stage_name":"log_collector","events_processed":9016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1803.2,"last_update":"2026-03-21T12:41:29.06866379Z"} +2026/03/21 12:41:34 [metric_collector] {"stage_name":"metric_collector","events_processed":4959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":991.8,"last_update":"2026-03-21T12:41:29.069072002Z"} +2026/03/21 12:41:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:41:29.079300208Z"} +2026/03/21 12:41:34 ───────────────────────────────────────────────── +2026/03/21 12:41:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:41:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:41:34.079626087Z"} +2026/03/21 12:41:39 [detection_layer] {"stage_name":"detection_layer","events_processed":165,"events_dropped":0,"avg_latency_ms":19.58029590302763,"throughput_eps":0,"last_update":"2026-03-21T12:41:34.209861509Z"} +2026/03/21 12:41:39 [transform_engine] {"stage_name":"transform_engine","events_processed":165,"events_dropped":0,"avg_latency_ms":117.62688423483138,"throughput_eps":0,"last_update":"2026-03-21T12:41:34.209827575Z"} +2026/03/21 12:41:39 [log_collector] {"stage_name":"log_collector","events_processed":9016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1803.2,"last_update":"2026-03-21T12:41:34.06834715Z"} +2026/03/21 12:41:39 [metric_collector] {"stage_name":"metric_collector","events_processed":4964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":992.8,"last_update":"2026-03-21T12:41:34.069069644Z"} +2026/03/21 12:41:39 ───────────────────────────────────────────────── +2026/03/21 12:41:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:41:44 [transform_engine] {"stage_name":"transform_engine","events_processed":165,"events_dropped":0,"avg_latency_ms":117.62688423483138,"throughput_eps":0,"last_update":"2026-03-21T12:41:39.209806213Z"} +2026/03/21 12:41:44 [log_collector] {"stage_name":"log_collector","events_processed":9016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1803.2,"last_update":"2026-03-21T12:41:39.068874078Z"} +2026/03/21 12:41:44 [metric_collector] {"stage_name":"metric_collector","events_processed":4969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":993.8,"last_update":"2026-03-21T12:41:39.069489075Z"} +2026/03/21 12:41:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1990,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:41:39.080586335Z"} +2026/03/21 12:41:44 [detection_layer] {"stage_name":"detection_layer","events_processed":165,"events_dropped":0,"avg_latency_ms":19.58029590302763,"throughput_eps":0,"last_update":"2026-03-21T12:41:39.209925411Z"} +2026/03/21 12:41:44 ───────────────────────────────────────────────── +2026/03/21 12:41:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:41:49 [log_collector] {"stage_name":"log_collector","events_processed":9016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1803.2,"last_update":"2026-03-21T12:41:44.068633597Z"} +2026/03/21 12:41:49 [metric_collector] {"stage_name":"metric_collector","events_processed":4974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":994.8,"last_update":"2026-03-21T12:41:44.068927128Z"} +2026/03/21 12:41:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1992,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:41:44.079678506Z"} +2026/03/21 12:41:49 [detection_layer] {"stage_name":"detection_layer","events_processed":165,"events_dropped":0,"avg_latency_ms":19.58029590302763,"throughput_eps":0,"last_update":"2026-03-21T12:41:44.209865726Z"} +2026/03/21 12:41:49 [transform_engine] {"stage_name":"transform_engine","events_processed":165,"events_dropped":0,"avg_latency_ms":117.62688423483138,"throughput_eps":0,"last_update":"2026-03-21T12:41:44.209878169Z"} +2026/03/21 12:41:49 ───────────────────────────────────────────────── +2026/03/21 12:41:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:41:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:41:49.079918858Z"} +2026/03/21 12:41:54 [detection_layer] {"stage_name":"detection_layer","events_processed":165,"events_dropped":0,"avg_latency_ms":19.58029590302763,"throughput_eps":0,"last_update":"2026-03-21T12:41:49.210194036Z"} +2026/03/21 12:41:54 [transform_engine] {"stage_name":"transform_engine","events_processed":165,"events_dropped":0,"avg_latency_ms":117.62688423483138,"throughput_eps":0,"last_update":"2026-03-21T12:41:49.210202372Z"} +2026/03/21 12:41:54 [log_collector] {"stage_name":"log_collector","events_processed":9016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1803.2,"last_update":"2026-03-21T12:41:49.068793785Z"} +2026/03/21 12:41:54 [metric_collector] {"stage_name":"metric_collector","events_processed":4979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":995.8,"last_update":"2026-03-21T12:41:49.068976304Z"} +2026/03/21 12:41:54 ───────────────────────────────────────────────── +2026/03/21 12:41:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:41:59 [log_collector] {"stage_name":"log_collector","events_processed":9016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1803.2,"last_update":"2026-03-21T12:41:54.068608584Z"} +2026/03/21 12:41:59 [metric_collector] {"stage_name":"metric_collector","events_processed":4984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":996.8,"last_update":"2026-03-21T12:41:54.069079105Z"} +2026/03/21 12:41:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1996,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:41:54.07896761Z"} +2026/03/21 12:41:59 [detection_layer] {"stage_name":"detection_layer","events_processed":166,"events_dropped":0,"avg_latency_ms":19.847695522422104,"throughput_eps":0,"last_update":"2026-03-21T12:41:54.210210251Z"} +2026/03/21 12:41:59 [transform_engine] {"stage_name":"transform_engine","events_processed":166,"events_dropped":0,"avg_latency_ms":109.4173387878651,"throughput_eps":0,"last_update":"2026-03-21T12:41:54.21024093Z"} +2026/03/21 12:41:59 ───────────────────────────────────────────────── +2026/03/21 12:42:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:42:04 [log_collector] {"stage_name":"log_collector","events_processed":9016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1803.2,"last_update":"2026-03-21T12:41:59.068772894Z"} +2026/03/21 12:42:04 [metric_collector] {"stage_name":"metric_collector","events_processed":4989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":997.8,"last_update":"2026-03-21T12:41:59.069131662Z"} +2026/03/21 12:42:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:41:59.080098501Z"} +2026/03/21 12:42:04 [detection_layer] {"stage_name":"detection_layer","events_processed":166,"events_dropped":0,"avg_latency_ms":19.847695522422104,"throughput_eps":0,"last_update":"2026-03-21T12:41:59.209937605Z"} +2026/03/21 12:42:04 [transform_engine] {"stage_name":"transform_engine","events_processed":166,"events_dropped":0,"avg_latency_ms":109.4173387878651,"throughput_eps":0,"last_update":"2026-03-21T12:41:59.209829769Z"} +2026/03/21 12:42:04 ───────────────────────────────────────────────── +2026/03/21 12:42:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:42:09 [metric_collector] {"stage_name":"metric_collector","events_processed":4994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":998.8,"last_update":"2026-03-21T12:42:04.069583225Z"} +2026/03/21 12:42:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:42:04.080561797Z"} +2026/03/21 12:42:09 [detection_layer] {"stage_name":"detection_layer","events_processed":166,"events_dropped":0,"avg_latency_ms":19.847695522422104,"throughput_eps":0,"last_update":"2026-03-21T12:42:04.210874869Z"} +2026/03/21 12:42:09 [transform_engine] {"stage_name":"transform_engine","events_processed":166,"events_dropped":0,"avg_latency_ms":109.4173387878651,"throughput_eps":0,"last_update":"2026-03-21T12:42:04.210770197Z"} +2026/03/21 12:42:09 [log_collector] {"stage_name":"log_collector","events_processed":9016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1803.2,"last_update":"2026-03-21T12:42:04.069070423Z"} +2026/03/21 12:42:09 ───────────────────────────────────────────────── +2026/03/21 12:42:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:42:14 [log_collector] {"stage_name":"log_collector","events_processed":9016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1803.2,"last_update":"2026-03-21T12:42:09.068718147Z"} +2026/03/21 12:42:14 [metric_collector] {"stage_name":"metric_collector","events_processed":4999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":999.8,"last_update":"2026-03-21T12:42:09.069456544Z"} +2026/03/21 12:42:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:42:09.079540289Z"} +2026/03/21 12:42:14 [detection_layer] {"stage_name":"detection_layer","events_processed":166,"events_dropped":0,"avg_latency_ms":19.847695522422104,"throughput_eps":0,"last_update":"2026-03-21T12:42:09.210866211Z"} +2026/03/21 12:42:14 [transform_engine] {"stage_name":"transform_engine","events_processed":166,"events_dropped":0,"avg_latency_ms":109.4173387878651,"throughput_eps":0,"last_update":"2026-03-21T12:42:09.209792771Z"} +2026/03/21 12:42:14 ───────────────────────────────────────────────── +Saved state: 16 clusters, 9017 messages, reason: none +2026/03/21 12:42:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:42:19 [log_collector] {"stage_name":"log_collector","events_processed":9016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1803.2,"last_update":"2026-03-21T12:42:14.068505336Z"} +2026/03/21 12:42:19 [metric_collector] {"stage_name":"metric_collector","events_processed":5004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1000.8,"last_update":"2026-03-21T12:42:14.068896046Z"} +2026/03/21 12:42:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:42:14.080531217Z"} +2026/03/21 12:42:19 [detection_layer] {"stage_name":"detection_layer","events_processed":166,"events_dropped":0,"avg_latency_ms":19.847695522422104,"throughput_eps":0,"last_update":"2026-03-21T12:42:14.210875771Z"} +2026/03/21 12:42:19 [transform_engine] {"stage_name":"transform_engine","events_processed":166,"events_dropped":0,"avg_latency_ms":109.4173387878651,"throughput_eps":0,"last_update":"2026-03-21T12:42:14.209710165Z"} +2026/03/21 12:42:19 ───────────────────────────────────────────────── +2026/03/21 12:42:19 [ANOMALY] time=2026-03-21T12:42:19Z score=0.9046 method=SEAD details=MAD!:w=0.33,s=0.97 RRCF-fast!:w=0.17,s=1.00 RRCF-mid!:w=0.15,s=1.00 RRCF-slow!:w=0.14,s=1.00 COPOD!:w=0.20,s=0.58 +2026/03/21 12:42:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:42:24 [log_collector] {"stage_name":"log_collector","events_processed":9021,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1804.2,"last_update":"2026-03-21T12:42:19.06853661Z"} +2026/03/21 12:42:24 [metric_collector] {"stage_name":"metric_collector","events_processed":5009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1001.8,"last_update":"2026-03-21T12:42:19.06896336Z"} +2026/03/21 12:42:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2006,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:42:19.07922713Z"} +2026/03/21 12:42:24 [detection_layer] {"stage_name":"detection_layer","events_processed":166,"events_dropped":0,"avg_latency_ms":19.847695522422104,"throughput_eps":0,"last_update":"2026-03-21T12:42:19.209868529Z"} +2026/03/21 12:42:24 [transform_engine] {"stage_name":"transform_engine","events_processed":167,"events_dropped":0,"avg_latency_ms":230.2590982302921,"throughput_eps":0,"last_update":"2026-03-21T12:42:19.923869003Z"} +2026/03/21 12:42:24 ───────────────────────────────────────────────── +2026/03/21 12:42:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:42:29 [log_collector] {"stage_name":"log_collector","events_processed":9021,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1804.2,"last_update":"2026-03-21T12:42:24.068543558Z"} +2026/03/21 12:42:29 [metric_collector] {"stage_name":"metric_collector","events_processed":5014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1002.8,"last_update":"2026-03-21T12:42:24.068766906Z"} +2026/03/21 12:42:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2008,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:42:24.079729356Z"} +2026/03/21 12:42:29 [detection_layer] {"stage_name":"detection_layer","events_processed":167,"events_dropped":0,"avg_latency_ms":18.505402417937685,"throughput_eps":0,"last_update":"2026-03-21T12:42:24.209946368Z"} +2026/03/21 12:42:29 [transform_engine] {"stage_name":"transform_engine","events_processed":167,"events_dropped":0,"avg_latency_ms":230.2590982302921,"throughput_eps":0,"last_update":"2026-03-21T12:42:24.209956067Z"} +2026/03/21 12:42:29 ───────────────────────────────────────────────── +2026/03/21 12:42:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:42:34 [log_collector] {"stage_name":"log_collector","events_processed":9021,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1804.2,"last_update":"2026-03-21T12:42:29.068755077Z"} +2026/03/21 12:42:34 [metric_collector] {"stage_name":"metric_collector","events_processed":5019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1003.8,"last_update":"2026-03-21T12:42:29.069072557Z"} +2026/03/21 12:42:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:42:29.078951287Z"} +2026/03/21 12:42:34 [detection_layer] {"stage_name":"detection_layer","events_processed":167,"events_dropped":0,"avg_latency_ms":18.505402417937685,"throughput_eps":0,"last_update":"2026-03-21T12:42:29.209942822Z"} +2026/03/21 12:42:34 [transform_engine] {"stage_name":"transform_engine","events_processed":167,"events_dropped":0,"avg_latency_ms":230.2590982302921,"throughput_eps":0,"last_update":"2026-03-21T12:42:29.209957098Z"} +2026/03/21 12:42:34 ───────────────────────────────────────────────── +2026/03/21 12:42:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:42:39 [log_collector] {"stage_name":"log_collector","events_processed":9021,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1804.2,"last_update":"2026-03-21T12:42:39.068303496Z"} +2026/03/21 12:42:39 [metric_collector] {"stage_name":"metric_collector","events_processed":5024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1004.8,"last_update":"2026-03-21T12:42:34.068998089Z"} +2026/03/21 12:42:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2012,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:42:34.076340343Z"} +2026/03/21 12:42:39 [detection_layer] {"stage_name":"detection_layer","events_processed":167,"events_dropped":0,"avg_latency_ms":18.505402417937685,"throughput_eps":0,"last_update":"2026-03-21T12:42:34.210360734Z"} +2026/03/21 12:42:39 [transform_engine] {"stage_name":"transform_engine","events_processed":167,"events_dropped":0,"avg_latency_ms":230.2590982302921,"throughput_eps":0,"last_update":"2026-03-21T12:42:34.210371534Z"} +2026/03/21 12:42:39 ───────────────────────────────────────────────── +2026/03/21 12:42:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:42:44 [transform_engine] {"stage_name":"transform_engine","events_processed":167,"events_dropped":0,"avg_latency_ms":230.2590982302921,"throughput_eps":0,"last_update":"2026-03-21T12:42:39.20963689Z"} +2026/03/21 12:42:44 [log_collector] {"stage_name":"log_collector","events_processed":9021,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1804.2,"last_update":"2026-03-21T12:42:39.068303496Z"} +2026/03/21 12:42:44 [metric_collector] {"stage_name":"metric_collector","events_processed":5029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1005.8,"last_update":"2026-03-21T12:42:39.068541662Z"} +2026/03/21 12:42:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:42:39.080495353Z"} +2026/03/21 12:42:44 [detection_layer] {"stage_name":"detection_layer","events_processed":167,"events_dropped":0,"avg_latency_ms":18.505402417937685,"throughput_eps":0,"last_update":"2026-03-21T12:42:39.210741869Z"} +2026/03/21 12:42:44 ───────────────────────────────────────────────── +2026/03/21 12:42:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:42:49 [metric_collector] {"stage_name":"metric_collector","events_processed":5034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1006.8,"last_update":"2026-03-21T12:42:44.068801666Z"} +2026/03/21 12:42:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:42:44.075281035Z"} +2026/03/21 12:42:49 [detection_layer] {"stage_name":"detection_layer","events_processed":167,"events_dropped":0,"avg_latency_ms":18.505402417937685,"throughput_eps":0,"last_update":"2026-03-21T12:42:44.210495087Z"} +2026/03/21 12:42:49 [transform_engine] {"stage_name":"transform_engine","events_processed":167,"events_dropped":0,"avg_latency_ms":230.2590982302921,"throughput_eps":0,"last_update":"2026-03-21T12:42:44.210506219Z"} +2026/03/21 12:42:49 [log_collector] {"stage_name":"log_collector","events_processed":9021,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1804.2,"last_update":"2026-03-21T12:42:44.068810473Z"} +2026/03/21 12:42:49 ───────────────────────────────────────────────── +2026/03/21 12:42:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:42:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2018,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:42:49.075831931Z"} +2026/03/21 12:42:54 [detection_layer] {"stage_name":"detection_layer","events_processed":167,"events_dropped":0,"avg_latency_ms":18.505402417937685,"throughput_eps":0,"last_update":"2026-03-21T12:42:49.210020462Z"} +2026/03/21 12:42:54 [transform_engine] {"stage_name":"transform_engine","events_processed":168,"events_dropped":0,"avg_latency_ms":694.2822761842336,"throughput_eps":0,"last_update":"2026-03-21T12:42:51.760407694Z"} +2026/03/21 12:42:54 [log_collector] {"stage_name":"log_collector","events_processed":9021,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1804.2,"last_update":"2026-03-21T12:42:49.068665865Z"} +2026/03/21 12:42:54 [metric_collector] {"stage_name":"metric_collector","events_processed":5039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1007.8,"last_update":"2026-03-21T12:42:49.068869516Z"} +2026/03/21 12:42:54 ───────────────────────────────────────────────── +2026/03/21 12:42:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:42:59 [metric_collector] {"stage_name":"metric_collector","events_processed":5044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1008.8,"last_update":"2026-03-21T12:42:54.068161975Z"} +2026/03/21 12:42:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2020,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:42:54.075508959Z"} +2026/03/21 12:42:59 [detection_layer] {"stage_name":"detection_layer","events_processed":168,"events_dropped":0,"avg_latency_ms":16.661009334350148,"throughput_eps":0,"last_update":"2026-03-21T12:42:54.210782617Z"} +2026/03/21 12:42:59 [transform_engine] {"stage_name":"transform_engine","events_processed":168,"events_dropped":0,"avg_latency_ms":694.2822761842336,"throughput_eps":0,"last_update":"2026-03-21T12:42:54.209672368Z"} +2026/03/21 12:42:59 [log_collector] {"stage_name":"log_collector","events_processed":9021,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1804.2,"last_update":"2026-03-21T12:42:54.068092222Z"} +2026/03/21 12:42:59 ───────────────────────────────────────────────── +2026/03/21 12:43:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:43:04 [log_collector] {"stage_name":"log_collector","events_processed":9030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1806,"last_update":"2026-03-21T12:42:59.068754571Z"} +2026/03/21 12:43:04 [metric_collector] {"stage_name":"metric_collector","events_processed":5049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1009.8,"last_update":"2026-03-21T12:42:59.068992567Z"} +2026/03/21 12:43:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2022,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:42:59.075884788Z"} +2026/03/21 12:43:04 [detection_layer] {"stage_name":"detection_layer","events_processed":168,"events_dropped":0,"avg_latency_ms":16.661009334350148,"throughput_eps":0,"last_update":"2026-03-21T12:42:59.210327027Z"} +2026/03/21 12:43:04 [transform_engine] {"stage_name":"transform_engine","events_processed":168,"events_dropped":0,"avg_latency_ms":694.2822761842336,"throughput_eps":0,"last_update":"2026-03-21T12:42:59.210278895Z"} +2026/03/21 12:43:04 ───────────────────────────────────────────────── +2026/03/21 12:43:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:43:09 [log_collector] {"stage_name":"log_collector","events_processed":9032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1806.4,"last_update":"2026-03-21T12:43:04.068546949Z"} +2026/03/21 12:43:09 [metric_collector] {"stage_name":"metric_collector","events_processed":5054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1010.8,"last_update":"2026-03-21T12:43:04.068806487Z"} +2026/03/21 12:43:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:43:04.0805273Z"} +2026/03/21 12:43:09 [detection_layer] {"stage_name":"detection_layer","events_processed":168,"events_dropped":0,"avg_latency_ms":16.661009334350148,"throughput_eps":0,"last_update":"2026-03-21T12:43:04.210851828Z"} +2026/03/21 12:43:09 [transform_engine] {"stage_name":"transform_engine","events_processed":168,"events_dropped":0,"avg_latency_ms":694.2822761842336,"throughput_eps":0,"last_update":"2026-03-21T12:43:04.209678978Z"} +2026/03/21 12:43:09 ───────────────────────────────────────────────── +2026/03/21 12:43:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:43:14 [log_collector] {"stage_name":"log_collector","events_processed":9277,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1855.4,"last_update":"2026-03-21T12:43:09.068128585Z"} +2026/03/21 12:43:14 [metric_collector] {"stage_name":"metric_collector","events_processed":5059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1011.8,"last_update":"2026-03-21T12:43:09.068526528Z"} +2026/03/21 12:43:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:43:09.075739023Z"} +2026/03/21 12:43:14 [detection_layer] {"stage_name":"detection_layer","events_processed":168,"events_dropped":0,"avg_latency_ms":16.661009334350148,"throughput_eps":0,"last_update":"2026-03-21T12:43:09.210510258Z"} +2026/03/21 12:43:14 [transform_engine] {"stage_name":"transform_engine","events_processed":168,"events_dropped":0,"avg_latency_ms":694.2822761842336,"throughput_eps":0,"last_update":"2026-03-21T12:43:09.210520687Z"} +2026/03/21 12:43:14 ───────────────────────────────────────────────── +2026/03/21 12:43:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:43:19 [log_collector] {"stage_name":"log_collector","events_processed":9382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1876.4,"last_update":"2026-03-21T12:43:14.068908404Z"} +2026/03/21 12:43:19 [metric_collector] {"stage_name":"metric_collector","events_processed":5064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1012.8,"last_update":"2026-03-21T12:43:14.069510358Z"} +2026/03/21 12:43:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:43:14.080277481Z"} +2026/03/21 12:43:19 [detection_layer] {"stage_name":"detection_layer","events_processed":168,"events_dropped":0,"avg_latency_ms":16.661009334350148,"throughput_eps":0,"last_update":"2026-03-21T12:43:14.210481241Z"} +2026/03/21 12:43:19 [transform_engine] {"stage_name":"transform_engine","events_processed":168,"events_dropped":0,"avg_latency_ms":694.2822761842336,"throughput_eps":0,"last_update":"2026-03-21T12:43:14.210667858Z"} +2026/03/21 12:43:19 ───────────────────────────────────────────────── +2026/03/21 12:43:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:43:24 [metric_collector] {"stage_name":"metric_collector","events_processed":5069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1013.8,"last_update":"2026-03-21T12:43:19.069432576Z"} +2026/03/21 12:43:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:43:19.079502841Z"} +2026/03/21 12:43:24 [detection_layer] {"stage_name":"detection_layer","events_processed":168,"events_dropped":0,"avg_latency_ms":16.661009334350148,"throughput_eps":0,"last_update":"2026-03-21T12:43:19.210829381Z"} +2026/03/21 12:43:24 [transform_engine] {"stage_name":"transform_engine","events_processed":169,"events_dropped":0,"avg_latency_ms":578.161484947387,"throughput_eps":0,"last_update":"2026-03-21T12:43:19.323322698Z"} +2026/03/21 12:43:24 [log_collector] {"stage_name":"log_collector","events_processed":9382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1876.4,"last_update":"2026-03-21T12:43:19.068987442Z"} +2026/03/21 12:43:24 ───────────────────────────────────────────────── +2026/03/21 12:43:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:43:29 [log_collector] {"stage_name":"log_collector","events_processed":9382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1876.4,"last_update":"2026-03-21T12:43:24.068123298Z"} +2026/03/21 12:43:29 [metric_collector] {"stage_name":"metric_collector","events_processed":5074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1014.8,"last_update":"2026-03-21T12:43:24.068685546Z"} +2026/03/21 12:43:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:43:24.079063902Z"} +2026/03/21 12:43:29 [detection_layer] {"stage_name":"detection_layer","events_processed":169,"events_dropped":0,"avg_latency_ms":16.300787867480118,"throughput_eps":0,"last_update":"2026-03-21T12:43:24.210403393Z"} +2026/03/21 12:43:29 [transform_engine] {"stage_name":"transform_engine","events_processed":169,"events_dropped":0,"avg_latency_ms":578.161484947387,"throughput_eps":0,"last_update":"2026-03-21T12:43:24.210294464Z"} +2026/03/21 12:43:29 ───────────────────────────────────────────────── +2026/03/21 12:43:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:43:34 [transform_engine] {"stage_name":"transform_engine","events_processed":169,"events_dropped":0,"avg_latency_ms":578.161484947387,"throughput_eps":0,"last_update":"2026-03-21T12:43:29.209776066Z"} +2026/03/21 12:43:34 [log_collector] {"stage_name":"log_collector","events_processed":9382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1876.4,"last_update":"2026-03-21T12:43:29.068965413Z"} +2026/03/21 12:43:34 [metric_collector] {"stage_name":"metric_collector","events_processed":5079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1015.8,"last_update":"2026-03-21T12:43:29.069284684Z"} +2026/03/21 12:43:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:43:29.080559219Z"} +2026/03/21 12:43:34 [detection_layer] {"stage_name":"detection_layer","events_processed":169,"events_dropped":0,"avg_latency_ms":16.300787867480118,"throughput_eps":0,"last_update":"2026-03-21T12:43:29.209891277Z"} +2026/03/21 12:43:34 ───────────────────────────────────────────────── +2026/03/21 12:43:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:43:39 [log_collector] {"stage_name":"log_collector","events_processed":9382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1876.4,"last_update":"2026-03-21T12:43:34.068636388Z"} +2026/03/21 12:43:39 [metric_collector] {"stage_name":"metric_collector","events_processed":5084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1016.8,"last_update":"2026-03-21T12:43:34.069008833Z"} +2026/03/21 12:43:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2036,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:43:34.082101865Z"} +2026/03/21 12:43:39 [detection_layer] {"stage_name":"detection_layer","events_processed":169,"events_dropped":0,"avg_latency_ms":16.300787867480118,"throughput_eps":0,"last_update":"2026-03-21T12:43:34.21047533Z"} +2026/03/21 12:43:39 [transform_engine] {"stage_name":"transform_engine","events_processed":169,"events_dropped":0,"avg_latency_ms":578.161484947387,"throughput_eps":0,"last_update":"2026-03-21T12:43:34.210514975Z"} +2026/03/21 12:43:39 ───────────────────────────────────────────────── +2026/03/21 12:43:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:43:44 [transform_engine] {"stage_name":"transform_engine","events_processed":169,"events_dropped":0,"avg_latency_ms":578.161484947387,"throughput_eps":0,"last_update":"2026-03-21T12:43:39.210424735Z"} +2026/03/21 12:43:44 [log_collector] {"stage_name":"log_collector","events_processed":9382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1876.4,"last_update":"2026-03-21T12:43:39.068782375Z"} +2026/03/21 12:43:44 [metric_collector] {"stage_name":"metric_collector","events_processed":5089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1017.8,"last_update":"2026-03-21T12:43:39.069266623Z"} +2026/03/21 12:43:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:43:39.079992334Z"} +2026/03/21 12:43:44 [detection_layer] {"stage_name":"detection_layer","events_processed":169,"events_dropped":0,"avg_latency_ms":16.300787867480118,"throughput_eps":0,"last_update":"2026-03-21T12:43:39.210403926Z"} +2026/03/21 12:43:44 ───────────────────────────────────────────────── +2026/03/21 12:43:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:43:49 [detection_layer] {"stage_name":"detection_layer","events_processed":169,"events_dropped":0,"avg_latency_ms":16.300787867480118,"throughput_eps":0,"last_update":"2026-03-21T12:43:44.210806142Z"} +2026/03/21 12:43:49 [transform_engine] {"stage_name":"transform_engine","events_processed":169,"events_dropped":0,"avg_latency_ms":578.161484947387,"throughput_eps":0,"last_update":"2026-03-21T12:43:44.209716452Z"} +2026/03/21 12:43:49 [log_collector] {"stage_name":"log_collector","events_processed":9382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1876.4,"last_update":"2026-03-21T12:43:44.068829864Z"} +2026/03/21 12:43:49 [metric_collector] {"stage_name":"metric_collector","events_processed":5094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1018.8,"last_update":"2026-03-21T12:43:44.069288234Z"} +2026/03/21 12:43:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:43:44.080567276Z"} +2026/03/21 12:43:49 ───────────────────────────────────────────────── +2026/03/21 12:43:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:43:54 [log_collector] {"stage_name":"log_collector","events_processed":9382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1876.4,"last_update":"2026-03-21T12:43:49.06870178Z"} +2026/03/21 12:43:54 [metric_collector] {"stage_name":"metric_collector","events_processed":5099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1019.8,"last_update":"2026-03-21T12:43:49.06893101Z"} +2026/03/21 12:43:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:43:49.079501453Z"} +2026/03/21 12:43:54 [detection_layer] {"stage_name":"detection_layer","events_processed":169,"events_dropped":0,"avg_latency_ms":16.300787867480118,"throughput_eps":0,"last_update":"2026-03-21T12:43:49.2108006Z"} +2026/03/21 12:43:54 [transform_engine] {"stage_name":"transform_engine","events_processed":170,"events_dropped":0,"avg_latency_ms":472.7273367579096,"throughput_eps":0,"last_update":"2026-03-21T12:43:49.260661748Z"} +2026/03/21 12:43:54 ───────────────────────────────────────────────── +2026/03/21 12:43:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:43:59 [log_collector] {"stage_name":"log_collector","events_processed":9382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1876.4,"last_update":"2026-03-21T12:43:54.068761931Z"} +2026/03/21 12:43:59 [metric_collector] {"stage_name":"metric_collector","events_processed":5104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1020.8,"last_update":"2026-03-21T12:43:54.069103636Z"} +2026/03/21 12:43:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:43:54.079708184Z"} +2026/03/21 12:43:59 [detection_layer] {"stage_name":"detection_layer","events_processed":170,"events_dropped":0,"avg_latency_ms":16.653184693984095,"throughput_eps":0,"last_update":"2026-03-21T12:43:54.210099927Z"} +2026/03/21 12:43:59 [transform_engine] {"stage_name":"transform_engine","events_processed":170,"events_dropped":0,"avg_latency_ms":472.7273367579096,"throughput_eps":0,"last_update":"2026-03-21T12:43:54.210113412Z"} +2026/03/21 12:43:59 ───────────────────────────────────────────────── +2026/03/21 12:44:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:44:04 [metric_collector] {"stage_name":"metric_collector","events_processed":5109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1021.8,"last_update":"2026-03-21T12:43:59.06929454Z"} +2026/03/21 12:44:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:43:59.078308386Z"} +2026/03/21 12:44:04 [detection_layer] {"stage_name":"detection_layer","events_processed":170,"events_dropped":0,"avg_latency_ms":16.653184693984095,"throughput_eps":0,"last_update":"2026-03-21T12:43:59.209884508Z"} +2026/03/21 12:44:04 [transform_engine] {"stage_name":"transform_engine","events_processed":170,"events_dropped":0,"avg_latency_ms":472.7273367579096,"throughput_eps":0,"last_update":"2026-03-21T12:43:59.209809153Z"} +2026/03/21 12:44:04 [log_collector] {"stage_name":"log_collector","events_processed":9382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1876.4,"last_update":"2026-03-21T12:43:59.069030432Z"} +2026/03/21 12:44:04 ───────────────────────────────────────────────── +2026/03/21 12:44:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:44:09 [log_collector] {"stage_name":"log_collector","events_processed":9382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1876.4,"last_update":"2026-03-21T12:44:04.068064324Z"} +2026/03/21 12:44:09 [metric_collector] {"stage_name":"metric_collector","events_processed":5114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1022.8,"last_update":"2026-03-21T12:44:04.068530367Z"} +2026/03/21 12:44:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2048,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:44:04.078735309Z"} +2026/03/21 12:44:09 [detection_layer] {"stage_name":"detection_layer","events_processed":170,"events_dropped":0,"avg_latency_ms":16.653184693984095,"throughput_eps":0,"last_update":"2026-03-21T12:44:04.21016191Z"} +2026/03/21 12:44:09 [transform_engine] {"stage_name":"transform_engine","events_processed":170,"events_dropped":0,"avg_latency_ms":472.7273367579096,"throughput_eps":0,"last_update":"2026-03-21T12:44:04.210274536Z"} +2026/03/21 12:44:09 ───────────────────────────────────────────────── +2026/03/21 12:44:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:44:14 [log_collector] {"stage_name":"log_collector","events_processed":9382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1876.4,"last_update":"2026-03-21T12:44:09.068715022Z"} +2026/03/21 12:44:14 [metric_collector] {"stage_name":"metric_collector","events_processed":5119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1023.8,"last_update":"2026-03-21T12:44:09.068958789Z"} +2026/03/21 12:44:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2050,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:44:09.078225952Z"} +2026/03/21 12:44:14 [detection_layer] {"stage_name":"detection_layer","events_processed":170,"events_dropped":0,"avg_latency_ms":16.653184693984095,"throughput_eps":0,"last_update":"2026-03-21T12:44:09.210414812Z"} +2026/03/21 12:44:14 [transform_engine] {"stage_name":"transform_engine","events_processed":170,"events_dropped":0,"avg_latency_ms":472.7273367579096,"throughput_eps":0,"last_update":"2026-03-21T12:44:09.210425261Z"} +2026/03/21 12:44:14 ───────────────────────────────────────────────── +2026/03/21 12:44:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:44:19 [log_collector] {"stage_name":"log_collector","events_processed":9382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1876.4,"last_update":"2026-03-21T12:44:14.068639135Z"} +2026/03/21 12:44:19 [metric_collector] {"stage_name":"metric_collector","events_processed":5124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1024.8,"last_update":"2026-03-21T12:44:14.068948759Z"} +2026/03/21 12:44:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:44:14.077681016Z"} +2026/03/21 12:44:19 [detection_layer] {"stage_name":"detection_layer","events_processed":170,"events_dropped":0,"avg_latency_ms":16.653184693984095,"throughput_eps":0,"last_update":"2026-03-21T12:44:14.210109482Z"} +2026/03/21 12:44:19 [transform_engine] {"stage_name":"transform_engine","events_processed":170,"events_dropped":0,"avg_latency_ms":472.7273367579096,"throughput_eps":0,"last_update":"2026-03-21T12:44:14.210121145Z"} +2026/03/21 12:44:19 ───────────────────────────────────────────────── +2026/03/21 12:44:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:44:24 [log_collector] {"stage_name":"log_collector","events_processed":9382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1876.4,"last_update":"2026-03-21T12:44:19.068244347Z"} +2026/03/21 12:44:24 [metric_collector] {"stage_name":"metric_collector","events_processed":5129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1025.8,"last_update":"2026-03-21T12:44:19.068430944Z"} +2026/03/21 12:44:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:44:19.077189551Z"} +2026/03/21 12:44:24 [detection_layer] {"stage_name":"detection_layer","events_processed":170,"events_dropped":0,"avg_latency_ms":16.653184693984095,"throughput_eps":0,"last_update":"2026-03-21T12:44:19.210556083Z"} +2026/03/21 12:44:24 [transform_engine] {"stage_name":"transform_engine","events_processed":171,"events_dropped":0,"avg_latency_ms":390.40663740632766,"throughput_eps":0,"last_update":"2026-03-21T12:44:19.271696975Z"} +2026/03/21 12:44:24 ───────────────────────────────────────────────── +2026/03/21 12:44:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:44:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2056,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:44:24.079231226Z"} +2026/03/21 12:44:29 [detection_layer] {"stage_name":"detection_layer","events_processed":171,"events_dropped":0,"avg_latency_ms":16.862023555187278,"throughput_eps":0,"last_update":"2026-03-21T12:44:24.210539948Z"} +2026/03/21 12:44:29 [transform_engine] {"stage_name":"transform_engine","events_processed":171,"events_dropped":0,"avg_latency_ms":390.40663740632766,"throughput_eps":0,"last_update":"2026-03-21T12:44:24.210554435Z"} +2026/03/21 12:44:29 [log_collector] {"stage_name":"log_collector","events_processed":9382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1876.4,"last_update":"2026-03-21T12:44:29.06831914Z"} +2026/03/21 12:44:29 [metric_collector] {"stage_name":"metric_collector","events_processed":5134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1026.8,"last_update":"2026-03-21T12:44:24.069069608Z"} +2026/03/21 12:44:29 ───────────────────────────────────────────────── +Saved state: 16 clusters, 9383 messages, reason: none +2026/03/21 12:44:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:44:34 [metric_collector] {"stage_name":"metric_collector","events_processed":5139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1027.8,"last_update":"2026-03-21T12:44:29.069053108Z"} +2026/03/21 12:44:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:44:29.077620988Z"} +2026/03/21 12:44:34 [detection_layer] {"stage_name":"detection_layer","events_processed":171,"events_dropped":0,"avg_latency_ms":16.862023555187278,"throughput_eps":0,"last_update":"2026-03-21T12:44:29.209937741Z"} +2026/03/21 12:44:34 [transform_engine] {"stage_name":"transform_engine","events_processed":171,"events_dropped":0,"avg_latency_ms":390.40663740632766,"throughput_eps":0,"last_update":"2026-03-21T12:44:29.209950024Z"} +2026/03/21 12:44:34 [log_collector] {"stage_name":"log_collector","events_processed":9382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1876.4,"last_update":"2026-03-21T12:44:29.06831914Z"} +2026/03/21 12:44:34 ───────────────────────────────────────────────── +2026/03/21 12:44:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:44:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:44:34.077062733Z"} +2026/03/21 12:44:39 [detection_layer] {"stage_name":"detection_layer","events_processed":171,"events_dropped":0,"avg_latency_ms":16.862023555187278,"throughput_eps":0,"last_update":"2026-03-21T12:44:34.210298914Z"} +2026/03/21 12:44:39 [transform_engine] {"stage_name":"transform_engine","events_processed":171,"events_dropped":0,"avg_latency_ms":390.40663740632766,"throughput_eps":0,"last_update":"2026-03-21T12:44:34.210310596Z"} +2026/03/21 12:44:39 [log_collector] {"stage_name":"log_collector","events_processed":9385,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1877,"last_update":"2026-03-21T12:44:34.068159389Z"} +2026/03/21 12:44:39 [metric_collector] {"stage_name":"metric_collector","events_processed":5144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1028.8,"last_update":"2026-03-21T12:44:34.068571018Z"} +2026/03/21 12:44:39 ───────────────────────────────────────────────── +2026/03/21 12:44:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:44:44 [transform_engine] {"stage_name":"transform_engine","events_processed":171,"events_dropped":0,"avg_latency_ms":390.40663740632766,"throughput_eps":0,"last_update":"2026-03-21T12:44:39.210771525Z"} +2026/03/21 12:44:44 [log_collector] {"stage_name":"log_collector","events_processed":9385,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1877,"last_update":"2026-03-21T12:44:39.068900908Z"} +2026/03/21 12:44:44 [metric_collector] {"stage_name":"metric_collector","events_processed":5149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1029.8,"last_update":"2026-03-21T12:44:39.069119398Z"} +2026/03/21 12:44:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2062,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:44:39.079383891Z"} +2026/03/21 12:44:44 [detection_layer] {"stage_name":"detection_layer","events_processed":171,"events_dropped":0,"avg_latency_ms":16.862023555187278,"throughput_eps":0,"last_update":"2026-03-21T12:44:39.210756406Z"} +2026/03/21 12:44:44 ───────────────────────────────────────────────── +2026/03/21 12:44:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:44:49 [log_collector] {"stage_name":"log_collector","events_processed":9395,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1879,"last_update":"2026-03-21T12:44:44.068824986Z"} +2026/03/21 12:44:49 [metric_collector] {"stage_name":"metric_collector","events_processed":5154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1030.8,"last_update":"2026-03-21T12:44:44.06877491Z"} +2026/03/21 12:44:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:44:44.07551725Z"} +2026/03/21 12:44:49 [detection_layer] {"stage_name":"detection_layer","events_processed":171,"events_dropped":0,"avg_latency_ms":16.862023555187278,"throughput_eps":0,"last_update":"2026-03-21T12:44:44.210858402Z"} +2026/03/21 12:44:49 [transform_engine] {"stage_name":"transform_engine","events_processed":171,"events_dropped":0,"avg_latency_ms":390.40663740632766,"throughput_eps":0,"last_update":"2026-03-21T12:44:44.209776547Z"} +2026/03/21 12:44:49 ───────────────────────────────────────────────── +2026/03/21 12:44:49 [ANOMALY] time=2026-03-21T12:44:49Z score=0.9226 method=SEAD details=MAD!:w=0.34,s=0.88 RRCF-fast!:w=0.17,s=0.94 RRCF-mid!:w=0.15,s=0.95 RRCF-slow!:w=0.14,s=0.96 COPOD!:w=0.21,s=0.93 +2026/03/21 12:44:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:44:54 [log_collector] {"stage_name":"log_collector","events_processed":9396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1879.2,"last_update":"2026-03-21T12:44:49.068743709Z"} +2026/03/21 12:44:54 [metric_collector] {"stage_name":"metric_collector","events_processed":5159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1031.8,"last_update":"2026-03-21T12:44:49.069103468Z"} +2026/03/21 12:44:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:44:49.078082417Z"} +2026/03/21 12:44:54 [detection_layer] {"stage_name":"detection_layer","events_processed":171,"events_dropped":0,"avg_latency_ms":16.862023555187278,"throughput_eps":0,"last_update":"2026-03-21T12:44:49.210394327Z"} +2026/03/21 12:44:54 [transform_engine] {"stage_name":"transform_engine","events_processed":172,"events_dropped":0,"avg_latency_ms":351.2817307250621,"throughput_eps":0,"last_update":"2026-03-21T12:44:49.405191349Z"} +2026/03/21 12:44:54 ───────────────────────────────────────────────── +2026/03/21 12:44:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:44:59 [log_collector] {"stage_name":"log_collector","events_processed":9412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1882.4,"last_update":"2026-03-21T12:44:54.068332025Z"} +2026/03/21 12:44:59 [metric_collector] {"stage_name":"metric_collector","events_processed":5164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1032.8,"last_update":"2026-03-21T12:44:54.068498404Z"} +2026/03/21 12:44:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:44:54.077537537Z"} +2026/03/21 12:44:59 [detection_layer] {"stage_name":"detection_layer","events_processed":172,"events_dropped":0,"avg_latency_ms":17.517518844149826,"throughput_eps":0,"last_update":"2026-03-21T12:44:54.210490343Z"} +2026/03/21 12:44:59 [transform_engine] {"stage_name":"transform_engine","events_processed":172,"events_dropped":0,"avg_latency_ms":351.2817307250621,"throughput_eps":0,"last_update":"2026-03-21T12:44:54.210512777Z"} +2026/03/21 12:44:59 ───────────────────────────────────────────────── +2026/03/21 12:45:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:45:04 [log_collector] {"stage_name":"log_collector","events_processed":9426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1885.2,"last_update":"2026-03-21T12:45:04.068175546Z"} +2026/03/21 12:45:04 [metric_collector] {"stage_name":"metric_collector","events_processed":5169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1033.8,"last_update":"2026-03-21T12:44:59.06867143Z"} +2026/03/21 12:45:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:44:59.07684307Z"} +2026/03/21 12:45:04 [detection_layer] {"stage_name":"detection_layer","events_processed":172,"events_dropped":0,"avg_latency_ms":17.517518844149826,"throughput_eps":0,"last_update":"2026-03-21T12:44:59.210041554Z"} +2026/03/21 12:45:04 [transform_engine] {"stage_name":"transform_engine","events_processed":172,"events_dropped":0,"avg_latency_ms":351.2817307250621,"throughput_eps":0,"last_update":"2026-03-21T12:44:59.210096621Z"} +2026/03/21 12:45:04 ───────────────────────────────────────────────── +2026/03/21 12:45:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:45:09 [transform_engine] {"stage_name":"transform_engine","events_processed":172,"events_dropped":0,"avg_latency_ms":351.2817307250621,"throughput_eps":0,"last_update":"2026-03-21T12:45:04.210105189Z"} +2026/03/21 12:45:09 [log_collector] {"stage_name":"log_collector","events_processed":9426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1885.2,"last_update":"2026-03-21T12:45:04.068175546Z"} +2026/03/21 12:45:09 [metric_collector] {"stage_name":"metric_collector","events_processed":5174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1034.8,"last_update":"2026-03-21T12:45:04.068562597Z"} +2026/03/21 12:45:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2072,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:45:04.076729728Z"} +2026/03/21 12:45:09 [detection_layer] {"stage_name":"detection_layer","events_processed":172,"events_dropped":0,"avg_latency_ms":17.517518844149826,"throughput_eps":0,"last_update":"2026-03-21T12:45:04.210125709Z"} +2026/03/21 12:45:09 ───────────────────────────────────────────────── +2026/03/21 12:45:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:45:14 [metric_collector] {"stage_name":"metric_collector","events_processed":5179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1035.8,"last_update":"2026-03-21T12:45:09.069199604Z"} +2026/03/21 12:45:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:45:09.079295864Z"} +2026/03/21 12:45:14 [detection_layer] {"stage_name":"detection_layer","events_processed":172,"events_dropped":0,"avg_latency_ms":17.517518844149826,"throughput_eps":0,"last_update":"2026-03-21T12:45:09.210691317Z"} +2026/03/21 12:45:14 [transform_engine] {"stage_name":"transform_engine","events_processed":172,"events_dropped":0,"avg_latency_ms":351.2817307250621,"throughput_eps":0,"last_update":"2026-03-21T12:45:09.210579231Z"} +2026/03/21 12:45:14 [log_collector] {"stage_name":"log_collector","events_processed":9426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1885.2,"last_update":"2026-03-21T12:45:09.068871054Z"} +2026/03/21 12:45:14 ───────────────────────────────────────────────── +2026/03/21 12:45:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:45:19 [log_collector] {"stage_name":"log_collector","events_processed":9426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1885.2,"last_update":"2026-03-21T12:45:19.068261501Z"} +2026/03/21 12:45:19 [metric_collector] {"stage_name":"metric_collector","events_processed":5184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1036.8,"last_update":"2026-03-21T12:45:14.069415074Z"} +2026/03/21 12:45:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2076,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:45:14.078635474Z"} +2026/03/21 12:45:19 [detection_layer] {"stage_name":"detection_layer","events_processed":172,"events_dropped":0,"avg_latency_ms":17.517518844149826,"throughput_eps":0,"last_update":"2026-03-21T12:45:14.209865106Z"} +2026/03/21 12:45:19 [transform_engine] {"stage_name":"transform_engine","events_processed":172,"events_dropped":0,"avg_latency_ms":351.2817307250621,"throughput_eps":0,"last_update":"2026-03-21T12:45:14.209985968Z"} +2026/03/21 12:45:19 ───────────────────────────────────────────────── +2026/03/21 12:45:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:45:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:45:19.078251498Z"} +2026/03/21 12:45:24 [detection_layer] {"stage_name":"detection_layer","events_processed":172,"events_dropped":0,"avg_latency_ms":17.517518844149826,"throughput_eps":0,"last_update":"2026-03-21T12:45:19.21063622Z"} +2026/03/21 12:45:24 [transform_engine] {"stage_name":"transform_engine","events_processed":173,"events_dropped":0,"avg_latency_ms":303.8312481800497,"throughput_eps":0,"last_update":"2026-03-21T12:45:19.324785818Z"} +2026/03/21 12:45:24 [log_collector] {"stage_name":"log_collector","events_processed":9426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1885.2,"last_update":"2026-03-21T12:45:19.068261501Z"} +2026/03/21 12:45:24 [metric_collector] {"stage_name":"metric_collector","events_processed":5189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1037.8,"last_update":"2026-03-21T12:45:19.069005168Z"} +2026/03/21 12:45:24 ───────────────────────────────────────────────── +2026/03/21 12:45:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:45:29 [metric_collector] {"stage_name":"metric_collector","events_processed":5194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1038.8,"last_update":"2026-03-21T12:45:24.068778357Z"} +2026/03/21 12:45:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:45:24.0787617Z"} +2026/03/21 12:45:29 [detection_layer] {"stage_name":"detection_layer","events_processed":173,"events_dropped":0,"avg_latency_ms":17.710969675319863,"throughput_eps":0,"last_update":"2026-03-21T12:45:24.210169246Z"} +2026/03/21 12:45:29 [transform_engine] {"stage_name":"transform_engine","events_processed":173,"events_dropped":0,"avg_latency_ms":303.8312481800497,"throughput_eps":0,"last_update":"2026-03-21T12:45:24.2101082Z"} +2026/03/21 12:45:29 [log_collector] {"stage_name":"log_collector","events_processed":9426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1885.2,"last_update":"2026-03-21T12:45:24.068453133Z"} +2026/03/21 12:45:29 ───────────────────────────────────────────────── +2026/03/21 12:45:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:45:34 [log_collector] {"stage_name":"log_collector","events_processed":9426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1885.2,"last_update":"2026-03-21T12:45:29.068851416Z"} +2026/03/21 12:45:34 [metric_collector] {"stage_name":"metric_collector","events_processed":5199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1039.8,"last_update":"2026-03-21T12:45:29.069048553Z"} +2026/03/21 12:45:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2082,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:45:29.078060664Z"} +2026/03/21 12:45:34 [detection_layer] {"stage_name":"detection_layer","events_processed":173,"events_dropped":0,"avg_latency_ms":17.710969675319863,"throughput_eps":0,"last_update":"2026-03-21T12:45:29.210466812Z"} +2026/03/21 12:45:34 [transform_engine] {"stage_name":"transform_engine","events_processed":173,"events_dropped":0,"avg_latency_ms":303.8312481800497,"throughput_eps":0,"last_update":"2026-03-21T12:45:29.210346111Z"} +2026/03/21 12:45:34 ───────────────────────────────────────────────── +2026/03/21 12:45:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:45:39 [log_collector] {"stage_name":"log_collector","events_processed":9426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1885.2,"last_update":"2026-03-21T12:45:34.068870958Z"} +2026/03/21 12:45:39 [metric_collector] {"stage_name":"metric_collector","events_processed":5204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1040.8,"last_update":"2026-03-21T12:45:34.06965394Z"} +2026/03/21 12:45:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:45:34.078267456Z"} +2026/03/21 12:45:39 [detection_layer] {"stage_name":"detection_layer","events_processed":173,"events_dropped":0,"avg_latency_ms":17.710969675319863,"throughput_eps":0,"last_update":"2026-03-21T12:45:34.210796968Z"} +2026/03/21 12:45:39 [transform_engine] {"stage_name":"transform_engine","events_processed":173,"events_dropped":0,"avg_latency_ms":303.8312481800497,"throughput_eps":0,"last_update":"2026-03-21T12:45:34.210741612Z"} +2026/03/21 12:45:39 ───────────────────────────────────────────────── +2026/03/21 12:45:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:45:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:45:39.080067178Z"} +2026/03/21 12:45:44 [detection_layer] {"stage_name":"detection_layer","events_processed":173,"events_dropped":0,"avg_latency_ms":17.710969675319863,"throughput_eps":0,"last_update":"2026-03-21T12:45:39.2102823Z"} +2026/03/21 12:45:44 [transform_engine] {"stage_name":"transform_engine","events_processed":173,"events_dropped":0,"avg_latency_ms":303.8312481800497,"throughput_eps":0,"last_update":"2026-03-21T12:45:39.210302068Z"} +2026/03/21 12:45:44 [log_collector] {"stage_name":"log_collector","events_processed":9426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1885.2,"last_update":"2026-03-21T12:45:39.069161838Z"} +2026/03/21 12:45:44 [metric_collector] {"stage_name":"metric_collector","events_processed":5209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1041.8,"last_update":"2026-03-21T12:45:39.069370168Z"} +2026/03/21 12:45:44 ───────────────────────────────────────────────── +2026/03/21 12:45:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:45:49 [log_collector] {"stage_name":"log_collector","events_processed":9426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1885.2,"last_update":"2026-03-21T12:45:44.068786187Z"} +2026/03/21 12:45:49 [metric_collector] {"stage_name":"metric_collector","events_processed":5214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1042.8,"last_update":"2026-03-21T12:45:44.069119857Z"} +2026/03/21 12:45:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:45:44.077205349Z"} +2026/03/21 12:45:49 [detection_layer] {"stage_name":"detection_layer","events_processed":173,"events_dropped":0,"avg_latency_ms":17.710969675319863,"throughput_eps":0,"last_update":"2026-03-21T12:45:44.210569687Z"} +2026/03/21 12:45:49 [transform_engine] {"stage_name":"transform_engine","events_processed":173,"events_dropped":0,"avg_latency_ms":303.8312481800497,"throughput_eps":0,"last_update":"2026-03-21T12:45:44.210453364Z"} +2026/03/21 12:45:49 ───────────────────────────────────────────────── +2026/03/21 12:45:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:45:54 [log_collector] {"stage_name":"log_collector","events_processed":9426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1885.2,"last_update":"2026-03-21T12:45:49.068650504Z"} +2026/03/21 12:45:54 [metric_collector] {"stage_name":"metric_collector","events_processed":5219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1043.8,"last_update":"2026-03-21T12:45:49.068918127Z"} +2026/03/21 12:45:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:45:49.077733389Z"} +2026/03/21 12:45:54 [detection_layer] {"stage_name":"detection_layer","events_processed":173,"events_dropped":0,"avg_latency_ms":17.710969675319863,"throughput_eps":0,"last_update":"2026-03-21T12:45:49.21015162Z"} +2026/03/21 12:45:54 [transform_engine] {"stage_name":"transform_engine","events_processed":174,"events_dropped":0,"avg_latency_ms":671.5463065440398,"throughput_eps":0,"last_update":"2026-03-21T12:45:51.352452768Z"} +2026/03/21 12:45:54 ───────────────────────────────────────────────── +2026/03/21 12:45:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:45:59 [log_collector] {"stage_name":"log_collector","events_processed":9426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1885.2,"last_update":"2026-03-21T12:45:54.068645573Z"} +2026/03/21 12:45:59 [metric_collector] {"stage_name":"metric_collector","events_processed":5224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1044.8,"last_update":"2026-03-21T12:45:54.069316229Z"} +2026/03/21 12:45:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:45:54.077696126Z"} +2026/03/21 12:45:59 [detection_layer] {"stage_name":"detection_layer","events_processed":174,"events_dropped":0,"avg_latency_ms":18.15562374025589,"throughput_eps":0,"last_update":"2026-03-21T12:45:54.20992464Z"} +2026/03/21 12:45:59 [transform_engine] {"stage_name":"transform_engine","events_processed":174,"events_dropped":0,"avg_latency_ms":671.5463065440398,"throughput_eps":0,"last_update":"2026-03-21T12:45:54.209944629Z"} +2026/03/21 12:45:59 ───────────────────────────────────────────────── +Saved state: 16 clusters, 9427 messages, reason: none +2026/03/21 12:46:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:46:04 [log_collector] {"stage_name":"log_collector","events_processed":9426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1885.2,"last_update":"2026-03-21T12:45:59.068090587Z"} +2026/03/21 12:46:04 [metric_collector] {"stage_name":"metric_collector","events_processed":5229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1045.8,"last_update":"2026-03-21T12:45:59.068406664Z"} +2026/03/21 12:46:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:45:59.0770474Z"} +2026/03/21 12:46:04 [detection_layer] {"stage_name":"detection_layer","events_processed":174,"events_dropped":0,"avg_latency_ms":18.15562374025589,"throughput_eps":0,"last_update":"2026-03-21T12:45:59.210299134Z"} +2026/03/21 12:46:04 [transform_engine] {"stage_name":"transform_engine","events_processed":174,"events_dropped":0,"avg_latency_ms":671.5463065440398,"throughput_eps":0,"last_update":"2026-03-21T12:45:59.210393074Z"} +2026/03/21 12:46:04 ───────────────────────────────────────────────── +2026/03/21 12:46:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:46:09 [log_collector] {"stage_name":"log_collector","events_processed":9431,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1886.2,"last_update":"2026-03-21T12:46:04.068571019Z"} +2026/03/21 12:46:09 [metric_collector] {"stage_name":"metric_collector","events_processed":5234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1046.8,"last_update":"2026-03-21T12:46:04.068787765Z"} +2026/03/21 12:46:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:46:04.075397517Z"} +2026/03/21 12:46:09 [detection_layer] {"stage_name":"detection_layer","events_processed":174,"events_dropped":0,"avg_latency_ms":18.15562374025589,"throughput_eps":0,"last_update":"2026-03-21T12:46:04.210206465Z"} +2026/03/21 12:46:09 [transform_engine] {"stage_name":"transform_engine","events_processed":174,"events_dropped":0,"avg_latency_ms":671.5463065440398,"throughput_eps":0,"last_update":"2026-03-21T12:46:04.209690996Z"} +2026/03/21 12:46:09 ───────────────────────────────────────────────── +2026/03/21 12:46:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:46:14 [log_collector] {"stage_name":"log_collector","events_processed":9431,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1886.2,"last_update":"2026-03-21T12:46:09.068080151Z"} +2026/03/21 12:46:14 [metric_collector] {"stage_name":"metric_collector","events_processed":5239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1047.8,"last_update":"2026-03-21T12:46:09.068561474Z"} +2026/03/21 12:46:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:46:09.074482697Z"} +2026/03/21 12:46:14 [detection_layer] {"stage_name":"detection_layer","events_processed":174,"events_dropped":0,"avg_latency_ms":18.15562374025589,"throughput_eps":0,"last_update":"2026-03-21T12:46:09.209942038Z"} +2026/03/21 12:46:14 [transform_engine] {"stage_name":"transform_engine","events_processed":174,"events_dropped":0,"avg_latency_ms":671.5463065440398,"throughput_eps":0,"last_update":"2026-03-21T12:46:09.209667711Z"} +2026/03/21 12:46:14 ───────────────────────────────────────────────── +2026/03/21 12:46:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:46:19 [log_collector] {"stage_name":"log_collector","events_processed":9431,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1886.2,"last_update":"2026-03-21T12:46:14.068791381Z"} +2026/03/21 12:46:19 [metric_collector] {"stage_name":"metric_collector","events_processed":5244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1048.8,"last_update":"2026-03-21T12:46:14.068987347Z"} +2026/03/21 12:46:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:46:14.077178752Z"} +2026/03/21 12:46:19 [detection_layer] {"stage_name":"detection_layer","events_processed":174,"events_dropped":0,"avg_latency_ms":18.15562374025589,"throughput_eps":0,"last_update":"2026-03-21T12:46:14.210569926Z"} +2026/03/21 12:46:19 [transform_engine] {"stage_name":"transform_engine","events_processed":174,"events_dropped":0,"avg_latency_ms":671.5463065440398,"throughput_eps":0,"last_update":"2026-03-21T12:46:14.210560136Z"} +2026/03/21 12:46:19 ───────────────────────────────────────────────── +2026/03/21 12:46:20 [ANOMALY] time=2026-03-21T12:46:20Z score=0.9401 method=SEAD details=MAD!:w=0.34,s=0.97 RRCF-fast!:w=0.17,s=0.94 RRCF-mid!:w=0.15,s=0.96 RRCF-slow!:w=0.14,s=0.98 COPOD!:w=0.21,s=0.86 +2026/03/21 12:46:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:46:24 [transform_engine] {"stage_name":"transform_engine","events_processed":175,"events_dropped":0,"avg_latency_ms":810.890909035232,"throughput_eps":0,"last_update":"2026-03-21T12:46:20.578425599Z"} +2026/03/21 12:46:24 [log_collector] {"stage_name":"log_collector","events_processed":9431,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1886.2,"last_update":"2026-03-21T12:46:19.068595197Z"} +2026/03/21 12:46:24 [metric_collector] {"stage_name":"metric_collector","events_processed":5249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1049.8,"last_update":"2026-03-21T12:46:19.069242428Z"} +2026/03/21 12:46:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:46:19.077865009Z"} +2026/03/21 12:46:24 [detection_layer] {"stage_name":"detection_layer","events_processed":174,"events_dropped":0,"avg_latency_ms":18.15562374025589,"throughput_eps":0,"last_update":"2026-03-21T12:46:19.210126875Z"} +2026/03/21 12:46:24 ───────────────────────────────────────────────── +2026/03/21 12:46:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:46:29 [log_collector] {"stage_name":"log_collector","events_processed":9431,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1886.2,"last_update":"2026-03-21T12:46:24.068890399Z"} +2026/03/21 12:46:29 [metric_collector] {"stage_name":"metric_collector","events_processed":5254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1050.8,"last_update":"2026-03-21T12:46:24.069033283Z"} +2026/03/21 12:46:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:46:24.077125908Z"} +2026/03/21 12:46:29 [detection_layer] {"stage_name":"detection_layer","events_processed":175,"events_dropped":0,"avg_latency_ms":16.663738392204714,"throughput_eps":0,"last_update":"2026-03-21T12:46:24.210368051Z"} +2026/03/21 12:46:29 [transform_engine] {"stage_name":"transform_engine","events_processed":175,"events_dropped":0,"avg_latency_ms":810.890909035232,"throughput_eps":0,"last_update":"2026-03-21T12:46:24.210447964Z"} +2026/03/21 12:46:29 ───────────────────────────────────────────────── +2026/03/21 12:46:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:46:34 [transform_engine] {"stage_name":"transform_engine","events_processed":175,"events_dropped":0,"avg_latency_ms":810.890909035232,"throughput_eps":0,"last_update":"2026-03-21T12:46:29.209854569Z"} +2026/03/21 12:46:34 [log_collector] {"stage_name":"log_collector","events_processed":9431,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1886.2,"last_update":"2026-03-21T12:46:29.068123403Z"} +2026/03/21 12:46:34 [metric_collector] {"stage_name":"metric_collector","events_processed":5259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1051.8,"last_update":"2026-03-21T12:46:29.068488413Z"} +2026/03/21 12:46:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:46:29.077770198Z"} +2026/03/21 12:46:34 [detection_layer] {"stage_name":"detection_layer","events_processed":175,"events_dropped":0,"avg_latency_ms":16.663738392204714,"throughput_eps":0,"last_update":"2026-03-21T12:46:29.209892912Z"} +2026/03/21 12:46:34 ───────────────────────────────────────────────── +2026/03/21 12:46:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:46:39 [log_collector] {"stage_name":"log_collector","events_processed":9431,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1886.2,"last_update":"2026-03-21T12:46:34.06947165Z"} +2026/03/21 12:46:39 [metric_collector] {"stage_name":"metric_collector","events_processed":5264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1052.8,"last_update":"2026-03-21T12:46:34.069678526Z"} +2026/03/21 12:46:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:46:34.076099265Z"} +2026/03/21 12:46:39 [detection_layer] {"stage_name":"detection_layer","events_processed":175,"events_dropped":0,"avg_latency_ms":16.663738392204714,"throughput_eps":0,"last_update":"2026-03-21T12:46:34.210411345Z"} +2026/03/21 12:46:39 [transform_engine] {"stage_name":"transform_engine","events_processed":175,"events_dropped":0,"avg_latency_ms":810.890909035232,"throughput_eps":0,"last_update":"2026-03-21T12:46:34.210432005Z"} +2026/03/21 12:46:39 ───────────────────────────────────────────────── +2026/03/21 12:46:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:46:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:46:39.075179351Z"} +2026/03/21 12:46:44 [detection_layer] {"stage_name":"detection_layer","events_processed":175,"events_dropped":0,"avg_latency_ms":16.663738392204714,"throughput_eps":0,"last_update":"2026-03-21T12:46:39.210416913Z"} +2026/03/21 12:46:44 [transform_engine] {"stage_name":"transform_engine","events_processed":175,"events_dropped":0,"avg_latency_ms":810.890909035232,"throughput_eps":0,"last_update":"2026-03-21T12:46:39.210440869Z"} +2026/03/21 12:46:44 [log_collector] {"stage_name":"log_collector","events_processed":9431,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1886.2,"last_update":"2026-03-21T12:46:39.068504124Z"} +2026/03/21 12:46:44 [metric_collector] {"stage_name":"metric_collector","events_processed":5269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1053.8,"last_update":"2026-03-21T12:46:39.068722293Z"} +2026/03/21 12:46:44 ───────────────────────────────────────────────── +2026/03/21 12:46:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:46:49 [metric_collector] {"stage_name":"metric_collector","events_processed":5274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1054.8,"last_update":"2026-03-21T12:46:44.06863378Z"} +2026/03/21 12:46:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:46:44.075809237Z"} +2026/03/21 12:46:49 [detection_layer] {"stage_name":"detection_layer","events_processed":175,"events_dropped":0,"avg_latency_ms":16.663738392204714,"throughput_eps":0,"last_update":"2026-03-21T12:46:44.210189131Z"} +2026/03/21 12:46:49 [transform_engine] {"stage_name":"transform_engine","events_processed":175,"events_dropped":0,"avg_latency_ms":810.890909035232,"throughput_eps":0,"last_update":"2026-03-21T12:46:44.210311546Z"} +2026/03/21 12:46:49 [log_collector] {"stage_name":"log_collector","events_processed":9440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1888,"last_update":"2026-03-21T12:46:44.06811218Z"} +2026/03/21 12:46:49 ───────────────────────────────────────────────── +2026/03/21 12:46:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:46:54 [log_collector] {"stage_name":"log_collector","events_processed":9442,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1888.4,"last_update":"2026-03-21T12:46:49.068491367Z"} +2026/03/21 12:46:54 [metric_collector] {"stage_name":"metric_collector","events_processed":5279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1055.8,"last_update":"2026-03-21T12:46:49.068758068Z"} +2026/03/21 12:46:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:46:49.076932008Z"} +2026/03/21 12:46:54 [detection_layer] {"stage_name":"detection_layer","events_processed":175,"events_dropped":0,"avg_latency_ms":16.663738392204714,"throughput_eps":0,"last_update":"2026-03-21T12:46:49.210220107Z"} +2026/03/21 12:46:54 [transform_engine] {"stage_name":"transform_engine","events_processed":176,"events_dropped":0,"avg_latency_ms":676.6705616281856,"throughput_eps":0,"last_update":"2026-03-21T12:46:49.350053343Z"} +2026/03/21 12:46:54 ───────────────────────────────────────────────── +2026/03/21 12:46:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:46:59 [log_collector] {"stage_name":"log_collector","events_processed":9543,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1908.6,"last_update":"2026-03-21T12:46:54.068294578Z"} +2026/03/21 12:46:59 [metric_collector] {"stage_name":"metric_collector","events_processed":5284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1056.8,"last_update":"2026-03-21T12:46:54.068836548Z"} +2026/03/21 12:46:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:46:54.076973106Z"} +2026/03/21 12:46:59 [detection_layer] {"stage_name":"detection_layer","events_processed":176,"events_dropped":0,"avg_latency_ms":17.00217891376377,"throughput_eps":0,"last_update":"2026-03-21T12:46:54.210176941Z"} +2026/03/21 12:46:59 [transform_engine] {"stage_name":"transform_engine","events_processed":176,"events_dropped":0,"avg_latency_ms":676.6705616281856,"throughput_eps":0,"last_update":"2026-03-21T12:46:54.210278836Z"} +2026/03/21 12:46:59 ───────────────────────────────────────────────── +2026/03/21 12:47:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:47:04 [log_collector] {"stage_name":"log_collector","events_processed":9787,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1957.4,"last_update":"2026-03-21T12:46:59.068077213Z"} +2026/03/21 12:47:04 [metric_collector] {"stage_name":"metric_collector","events_processed":5289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1057.8,"last_update":"2026-03-21T12:46:59.068447292Z"} +2026/03/21 12:47:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:46:59.075448975Z"} +2026/03/21 12:47:04 [detection_layer] {"stage_name":"detection_layer","events_processed":176,"events_dropped":0,"avg_latency_ms":17.00217891376377,"throughput_eps":0,"last_update":"2026-03-21T12:46:59.210783562Z"} +2026/03/21 12:47:04 [transform_engine] {"stage_name":"transform_engine","events_processed":176,"events_dropped":0,"avg_latency_ms":676.6705616281856,"throughput_eps":0,"last_update":"2026-03-21T12:46:59.210679542Z"} +2026/03/21 12:47:04 ───────────────────────────────────────────────── +2026/03/21 12:47:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:47:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:47:04.07795885Z"} +2026/03/21 12:47:09 [detection_layer] {"stage_name":"detection_layer","events_processed":176,"events_dropped":0,"avg_latency_ms":17.00217891376377,"throughput_eps":0,"last_update":"2026-03-21T12:47:04.210225723Z"} +2026/03/21 12:47:09 [transform_engine] {"stage_name":"transform_engine","events_processed":176,"events_dropped":0,"avg_latency_ms":676.6705616281856,"throughput_eps":0,"last_update":"2026-03-21T12:47:04.210335474Z"} +2026/03/21 12:47:09 [log_collector] {"stage_name":"log_collector","events_processed":9789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1957.8,"last_update":"2026-03-21T12:47:04.068650936Z"} +2026/03/21 12:47:09 [metric_collector] {"stage_name":"metric_collector","events_processed":5294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1058.8,"last_update":"2026-03-21T12:47:04.068991879Z"} +2026/03/21 12:47:09 ───────────────────────────────────────────────── +2026/03/21 12:47:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:47:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2122,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:47:09.079224664Z"} +2026/03/21 12:47:14 [detection_layer] {"stage_name":"detection_layer","events_processed":176,"events_dropped":0,"avg_latency_ms":17.00217891376377,"throughput_eps":0,"last_update":"2026-03-21T12:47:09.210607682Z"} +2026/03/21 12:47:14 [transform_engine] {"stage_name":"transform_engine","events_processed":176,"events_dropped":0,"avg_latency_ms":676.6705616281856,"throughput_eps":0,"last_update":"2026-03-21T12:47:09.210499594Z"} +2026/03/21 12:47:14 [log_collector] {"stage_name":"log_collector","events_processed":9789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1957.8,"last_update":"2026-03-21T12:47:09.069044849Z"} +2026/03/21 12:47:14 [metric_collector] {"stage_name":"metric_collector","events_processed":5299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1059.8,"last_update":"2026-03-21T12:47:09.069271905Z"} +2026/03/21 12:47:14 ───────────────────────────────────────────────── +2026/03/21 12:47:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:47:19 [log_collector] {"stage_name":"log_collector","events_processed":9789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1957.8,"last_update":"2026-03-21T12:47:14.06857624Z"} +2026/03/21 12:47:19 [metric_collector] {"stage_name":"metric_collector","events_processed":5304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1060.8,"last_update":"2026-03-21T12:47:14.068835999Z"} +2026/03/21 12:47:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:47:14.077693289Z"} +2026/03/21 12:47:19 [detection_layer] {"stage_name":"detection_layer","events_processed":176,"events_dropped":0,"avg_latency_ms":17.00217891376377,"throughput_eps":0,"last_update":"2026-03-21T12:47:14.210233643Z"} +2026/03/21 12:47:19 [transform_engine] {"stage_name":"transform_engine","events_processed":176,"events_dropped":0,"avg_latency_ms":676.6705616281856,"throughput_eps":0,"last_update":"2026-03-21T12:47:14.210117119Z"} +2026/03/21 12:47:19 ───────────────────────────────────────────────── +2026/03/21 12:47:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:47:24 [metric_collector] {"stage_name":"metric_collector","events_processed":5309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1061.8,"last_update":"2026-03-21T12:47:19.069113357Z"} +2026/03/21 12:47:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2126,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:47:19.077053168Z"} +2026/03/21 12:47:24 [detection_layer] {"stage_name":"detection_layer","events_processed":176,"events_dropped":0,"avg_latency_ms":17.00217891376377,"throughput_eps":0,"last_update":"2026-03-21T12:47:19.210587876Z"} +2026/03/21 12:47:24 [transform_engine] {"stage_name":"transform_engine","events_processed":177,"events_dropped":0,"avg_latency_ms":564.3089017025485,"throughput_eps":0,"last_update":"2026-03-21T12:47:19.325557163Z"} +2026/03/21 12:47:24 [log_collector] {"stage_name":"log_collector","events_processed":9789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1957.8,"last_update":"2026-03-21T12:47:19.068834813Z"} +2026/03/21 12:47:24 ───────────────────────────────────────────────── +2026/03/21 12:47:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:47:29 [metric_collector] {"stage_name":"metric_collector","events_processed":5314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1062.8,"last_update":"2026-03-21T12:47:24.0693323Z"} +2026/03/21 12:47:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2128,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:47:24.077111223Z"} +2026/03/21 12:47:29 [detection_layer] {"stage_name":"detection_layer","events_processed":177,"events_dropped":0,"avg_latency_ms":17.56614873101102,"throughput_eps":0,"last_update":"2026-03-21T12:47:24.210577446Z"} +2026/03/21 12:47:29 [transform_engine] {"stage_name":"transform_engine","events_processed":177,"events_dropped":0,"avg_latency_ms":564.3089017025485,"throughput_eps":0,"last_update":"2026-03-21T12:47:24.210551677Z"} +2026/03/21 12:47:29 [log_collector] {"stage_name":"log_collector","events_processed":9789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1957.8,"last_update":"2026-03-21T12:47:24.068660472Z"} +2026/03/21 12:47:29 ───────────────────────────────────────────────── +2026/03/21 12:47:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:47:34 [transform_engine] {"stage_name":"transform_engine","events_processed":177,"events_dropped":0,"avg_latency_ms":564.3089017025485,"throughput_eps":0,"last_update":"2026-03-21T12:47:29.210441762Z"} +2026/03/21 12:47:34 [log_collector] {"stage_name":"log_collector","events_processed":9789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1957.8,"last_update":"2026-03-21T12:47:29.068173568Z"} +2026/03/21 12:47:34 [metric_collector] {"stage_name":"metric_collector","events_processed":5319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1063.8,"last_update":"2026-03-21T12:47:29.068317564Z"} +2026/03/21 12:47:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2130,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:47:29.078142398Z"} +2026/03/21 12:47:34 [detection_layer] {"stage_name":"detection_layer","events_processed":177,"events_dropped":0,"avg_latency_ms":17.56614873101102,"throughput_eps":0,"last_update":"2026-03-21T12:47:29.210464296Z"} +2026/03/21 12:47:34 ───────────────────────────────────────────────── +2026/03/21 12:47:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:47:39 [metric_collector] {"stage_name":"metric_collector","events_processed":5324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1064.8,"last_update":"2026-03-21T12:47:34.068422663Z"} +2026/03/21 12:47:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:47:34.076963876Z"} +2026/03/21 12:47:39 [detection_layer] {"stage_name":"detection_layer","events_processed":177,"events_dropped":0,"avg_latency_ms":17.56614873101102,"throughput_eps":0,"last_update":"2026-03-21T12:47:34.210325496Z"} +2026/03/21 12:47:39 [transform_engine] {"stage_name":"transform_engine","events_processed":177,"events_dropped":0,"avg_latency_ms":564.3089017025485,"throughput_eps":0,"last_update":"2026-03-21T12:47:34.210224452Z"} +2026/03/21 12:47:39 [log_collector] {"stage_name":"log_collector","events_processed":9789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1957.8,"last_update":"2026-03-21T12:47:34.068063204Z"} +2026/03/21 12:47:39 ───────────────────────────────────────────────── +2026/03/21 12:47:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:47:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:47:39.07802212Z"} +2026/03/21 12:47:44 [detection_layer] {"stage_name":"detection_layer","events_processed":177,"events_dropped":0,"avg_latency_ms":17.56614873101102,"throughput_eps":0,"last_update":"2026-03-21T12:47:39.210299178Z"} +2026/03/21 12:47:44 [transform_engine] {"stage_name":"transform_engine","events_processed":177,"events_dropped":0,"avg_latency_ms":564.3089017025485,"throughput_eps":0,"last_update":"2026-03-21T12:47:39.210262688Z"} +2026/03/21 12:47:44 [log_collector] {"stage_name":"log_collector","events_processed":9789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1957.8,"last_update":"2026-03-21T12:47:39.0680847Z"} +2026/03/21 12:47:44 [metric_collector] {"stage_name":"metric_collector","events_processed":5329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1065.8,"last_update":"2026-03-21T12:47:39.068455442Z"} +2026/03/21 12:47:44 ───────────────────────────────────────────────── +2026/03/21 12:47:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:47:49 [metric_collector] {"stage_name":"metric_collector","events_processed":5334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1066.8,"last_update":"2026-03-21T12:47:44.069508806Z"} +2026/03/21 12:47:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:47:44.078992526Z"} +2026/03/21 12:47:49 [detection_layer] {"stage_name":"detection_layer","events_processed":177,"events_dropped":0,"avg_latency_ms":17.56614873101102,"throughput_eps":0,"last_update":"2026-03-21T12:47:44.210387722Z"} +2026/03/21 12:47:49 [transform_engine] {"stage_name":"transform_engine","events_processed":177,"events_dropped":0,"avg_latency_ms":564.3089017025485,"throughput_eps":0,"last_update":"2026-03-21T12:47:44.210285967Z"} +2026/03/21 12:47:49 [log_collector] {"stage_name":"log_collector","events_processed":9789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1957.8,"last_update":"2026-03-21T12:47:44.069053954Z"} +2026/03/21 12:47:49 ───────────────────────────────────────────────── +2026/03/21 12:47:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:47:54 [metric_collector] {"stage_name":"metric_collector","events_processed":5339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1067.8,"last_update":"2026-03-21T12:47:49.069184771Z"} +2026/03/21 12:47:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:47:49.078159535Z"} +2026/03/21 12:47:54 [detection_layer] {"stage_name":"detection_layer","events_processed":177,"events_dropped":0,"avg_latency_ms":17.56614873101102,"throughput_eps":0,"last_update":"2026-03-21T12:47:49.210497065Z"} +2026/03/21 12:47:54 [transform_engine] {"stage_name":"transform_engine","events_processed":178,"events_dropped":0,"avg_latency_ms":464.9489733620388,"throughput_eps":0,"last_update":"2026-03-21T12:47:49.278067021Z"} +2026/03/21 12:47:54 [log_collector] {"stage_name":"log_collector","events_processed":9789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1957.8,"last_update":"2026-03-21T12:47:49.069007973Z"} +2026/03/21 12:47:54 ───────────────────────────────────────────────── +2026/03/21 12:47:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:47:59 [log_collector] {"stage_name":"log_collector","events_processed":9789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1957.8,"last_update":"2026-03-21T12:47:54.068734674Z"} +2026/03/21 12:47:59 [metric_collector] {"stage_name":"metric_collector","events_processed":5343,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1068.6,"last_update":"2026-03-21T12:47:54.068703044Z"} +2026/03/21 12:47:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:47:54.079431259Z"} +2026/03/21 12:47:59 [detection_layer] {"stage_name":"detection_layer","events_processed":178,"events_dropped":0,"avg_latency_ms":17.666469784808815,"throughput_eps":0,"last_update":"2026-03-21T12:47:54.210644821Z"} +2026/03/21 12:47:59 [transform_engine] {"stage_name":"transform_engine","events_processed":178,"events_dropped":0,"avg_latency_ms":464.9489733620388,"throughput_eps":0,"last_update":"2026-03-21T12:47:54.210653167Z"} +2026/03/21 12:47:59 ───────────────────────────────────────────────── +2026/03/21 12:48:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:48:04 [detection_layer] {"stage_name":"detection_layer","events_processed":178,"events_dropped":0,"avg_latency_ms":17.666469784808815,"throughput_eps":0,"last_update":"2026-03-21T12:47:59.210086307Z"} +2026/03/21 12:48:04 [transform_engine] {"stage_name":"transform_engine","events_processed":178,"events_dropped":0,"avg_latency_ms":464.9489733620388,"throughput_eps":0,"last_update":"2026-03-21T12:47:59.21009871Z"} +2026/03/21 12:48:04 [log_collector] {"stage_name":"log_collector","events_processed":9789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1957.8,"last_update":"2026-03-21T12:47:59.068201941Z"} +2026/03/21 12:48:04 [metric_collector] {"stage_name":"metric_collector","events_processed":5348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1069.6,"last_update":"2026-03-21T12:47:59.068092582Z"} +2026/03/21 12:48:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:47:59.078709102Z"} +2026/03/21 12:48:04 ───────────────────────────────────────────────── +2026/03/21 12:48:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:48:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:48:04.077580247Z"} +2026/03/21 12:48:09 [detection_layer] {"stage_name":"detection_layer","events_processed":178,"events_dropped":0,"avg_latency_ms":17.666469784808815,"throughput_eps":0,"last_update":"2026-03-21T12:48:04.209862445Z"} +2026/03/21 12:48:09 [transform_engine] {"stage_name":"transform_engine","events_processed":178,"events_dropped":0,"avg_latency_ms":464.9489733620388,"throughput_eps":0,"last_update":"2026-03-21T12:48:04.209803551Z"} +2026/03/21 12:48:09 [log_collector] {"stage_name":"log_collector","events_processed":9789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1957.8,"last_update":"2026-03-21T12:48:04.068820275Z"} +2026/03/21 12:48:09 [metric_collector] {"stage_name":"metric_collector","events_processed":5354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1070.8,"last_update":"2026-03-21T12:48:04.069095163Z"} +2026/03/21 12:48:09 ───────────────────────────────────────────────── +2026/03/21 12:48:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:48:14 [log_collector] {"stage_name":"log_collector","events_processed":9789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1957.8,"last_update":"2026-03-21T12:48:09.068941029Z"} +2026/03/21 12:48:14 [metric_collector] {"stage_name":"metric_collector","events_processed":5359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1071.8,"last_update":"2026-03-21T12:48:09.069282093Z"} +2026/03/21 12:48:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:48:09.079410957Z"} +2026/03/21 12:48:14 [detection_layer] {"stage_name":"detection_layer","events_processed":178,"events_dropped":0,"avg_latency_ms":17.666469784808815,"throughput_eps":0,"last_update":"2026-03-21T12:48:09.210811292Z"} +2026/03/21 12:48:14 [transform_engine] {"stage_name":"transform_engine","events_processed":178,"events_dropped":0,"avg_latency_ms":464.9489733620388,"throughput_eps":0,"last_update":"2026-03-21T12:48:09.210703005Z"} +2026/03/21 12:48:14 ───────────────────────────────────────────────── +Saved state: 16 clusters, 9790 messages, reason: none +2026/03/21 12:48:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:48:19 [log_collector] {"stage_name":"log_collector","events_processed":9789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1957.8,"last_update":"2026-03-21T12:48:14.068824192Z"} +2026/03/21 12:48:19 [metric_collector] {"stage_name":"metric_collector","events_processed":5363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1072.6,"last_update":"2026-03-21T12:48:14.068835514Z"} +2026/03/21 12:48:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:48:14.078841013Z"} +2026/03/21 12:48:19 [detection_layer] {"stage_name":"detection_layer","events_processed":178,"events_dropped":0,"avg_latency_ms":17.666469784808815,"throughput_eps":0,"last_update":"2026-03-21T12:48:14.210187312Z"} +2026/03/21 12:48:19 [transform_engine] {"stage_name":"transform_engine","events_processed":178,"events_dropped":0,"avg_latency_ms":464.9489733620388,"throughput_eps":0,"last_update":"2026-03-21T12:48:14.210082721Z"} +2026/03/21 12:48:19 ───────────────────────────────────────────────── +2026/03/21 12:48:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:48:24 [log_collector] {"stage_name":"log_collector","events_processed":9792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1958.4,"last_update":"2026-03-21T12:48:19.068597699Z"} +2026/03/21 12:48:24 [metric_collector] {"stage_name":"metric_collector","events_processed":5369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1073.8,"last_update":"2026-03-21T12:48:19.068825705Z"} +2026/03/21 12:48:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:48:19.077384701Z"} +2026/03/21 12:48:24 [detection_layer] {"stage_name":"detection_layer","events_processed":178,"events_dropped":0,"avg_latency_ms":17.666469784808815,"throughput_eps":0,"last_update":"2026-03-21T12:48:19.210622053Z"} +2026/03/21 12:48:24 [transform_engine] {"stage_name":"transform_engine","events_processed":178,"events_dropped":0,"avg_latency_ms":464.9489733620388,"throughput_eps":0,"last_update":"2026-03-21T12:48:14.210082721Z"} +2026/03/21 12:48:24 ───────────────────────────────────────────────── +2026/03/21 12:48:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:48:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:48:24.075067918Z"} +2026/03/21 12:48:29 [detection_layer] {"stage_name":"detection_layer","events_processed":178,"events_dropped":0,"avg_latency_ms":17.666469784808815,"throughput_eps":0,"last_update":"2026-03-21T12:48:24.210359444Z"} +2026/03/21 12:48:29 [transform_engine] {"stage_name":"transform_engine","events_processed":179,"events_dropped":0,"avg_latency_ms":1687.2433380896312,"throughput_eps":0,"last_update":"2026-03-21T12:48:25.787000248Z"} +2026/03/21 12:48:29 [log_collector] {"stage_name":"log_collector","events_processed":9797,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1959.4,"last_update":"2026-03-21T12:48:24.068828729Z"} +2026/03/21 12:48:29 [metric_collector] {"stage_name":"metric_collector","events_processed":5373,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1074.6,"last_update":"2026-03-21T12:48:24.068833678Z"} +2026/03/21 12:48:29 ───────────────────────────────────────────────── +2026/03/21 12:48:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:48:34 [log_collector] {"stage_name":"log_collector","events_processed":9810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1962,"last_update":"2026-03-21T12:48:29.068590715Z"} +2026/03/21 12:48:34 [metric_collector] {"stage_name":"metric_collector","events_processed":5379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1075.8,"last_update":"2026-03-21T12:48:29.068824002Z"} +2026/03/21 12:48:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:48:29.075501582Z"} +2026/03/21 12:48:34 [detection_layer] {"stage_name":"detection_layer","events_processed":179,"events_dropped":0,"avg_latency_ms":17.841530027847053,"throughput_eps":0,"last_update":"2026-03-21T12:48:29.210796023Z"} +2026/03/21 12:48:34 [transform_engine] {"stage_name":"transform_engine","events_processed":179,"events_dropped":0,"avg_latency_ms":1687.2433380896312,"throughput_eps":0,"last_update":"2026-03-21T12:48:29.209670336Z"} +2026/03/21 12:48:34 ───────────────────────────────────────────────── +2026/03/21 12:48:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:48:39 [log_collector] {"stage_name":"log_collector","events_processed":9819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1963.8,"last_update":"2026-03-21T12:48:34.068554324Z"} +2026/03/21 12:48:39 [metric_collector] {"stage_name":"metric_collector","events_processed":5384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1076.8,"last_update":"2026-03-21T12:48:34.068915557Z"} +2026/03/21 12:48:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:48:34.078096585Z"} +2026/03/21 12:48:39 [detection_layer] {"stage_name":"detection_layer","events_processed":179,"events_dropped":0,"avg_latency_ms":17.841530027847053,"throughput_eps":0,"last_update":"2026-03-21T12:48:34.210516855Z"} +2026/03/21 12:48:39 [transform_engine] {"stage_name":"transform_engine","events_processed":179,"events_dropped":0,"avg_latency_ms":1687.2433380896312,"throughput_eps":0,"last_update":"2026-03-21T12:48:34.210478352Z"} +2026/03/21 12:48:39 ───────────────────────────────────────────────── +2026/03/21 12:48:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:48:44 [log_collector] {"stage_name":"log_collector","events_processed":9822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1964.4,"last_update":"2026-03-21T12:48:39.068100822Z"} +2026/03/21 12:48:44 [metric_collector] {"stage_name":"metric_collector","events_processed":5389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1077.8,"last_update":"2026-03-21T12:48:39.068387081Z"} +2026/03/21 12:48:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:48:39.081140446Z"} +2026/03/21 12:48:44 [detection_layer] {"stage_name":"detection_layer","events_processed":179,"events_dropped":0,"avg_latency_ms":17.841530027847053,"throughput_eps":0,"last_update":"2026-03-21T12:48:39.210409935Z"} +2026/03/21 12:48:44 [transform_engine] {"stage_name":"transform_engine","events_processed":179,"events_dropped":0,"avg_latency_ms":1687.2433380896312,"throughput_eps":0,"last_update":"2026-03-21T12:48:39.210445132Z"} +2026/03/21 12:48:44 ───────────────────────────────────────────────── +2026/03/21 12:48:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:48:49 [log_collector] {"stage_name":"log_collector","events_processed":9833,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1966.6,"last_update":"2026-03-21T12:48:44.068591127Z"} +2026/03/21 12:48:49 [metric_collector] {"stage_name":"metric_collector","events_processed":5394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1078.8,"last_update":"2026-03-21T12:48:44.069036881Z"} +2026/03/21 12:48:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:48:44.078379237Z"} +2026/03/21 12:48:49 [detection_layer] {"stage_name":"detection_layer","events_processed":179,"events_dropped":0,"avg_latency_ms":17.841530027847053,"throughput_eps":0,"last_update":"2026-03-21T12:48:44.210873135Z"} +2026/03/21 12:48:49 [transform_engine] {"stage_name":"transform_engine","events_processed":179,"events_dropped":0,"avg_latency_ms":1687.2433380896312,"throughput_eps":0,"last_update":"2026-03-21T12:48:44.209723231Z"} +2026/03/21 12:48:49 ───────────────────────────────────────────────── +2026/03/21 12:48:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:48:54 [log_collector] {"stage_name":"log_collector","events_processed":9833,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1966.6,"last_update":"2026-03-21T12:48:49.068669309Z"} +2026/03/21 12:48:54 [metric_collector] {"stage_name":"metric_collector","events_processed":5398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1079.6,"last_update":"2026-03-21T12:48:49.068686232Z"} +2026/03/21 12:48:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:48:49.078741174Z"} +2026/03/21 12:48:54 [detection_layer] {"stage_name":"detection_layer","events_processed":179,"events_dropped":0,"avg_latency_ms":17.841530027847053,"throughput_eps":0,"last_update":"2026-03-21T12:48:49.209971037Z"} +2026/03/21 12:48:54 [transform_engine] {"stage_name":"transform_engine","events_processed":180,"events_dropped":0,"avg_latency_ms":1374.246137271705,"throughput_eps":0,"last_update":"2026-03-21T12:48:49.332333633Z"} +2026/03/21 12:48:54 ───────────────────────────────────────────────── +2026/03/21 12:48:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:48:59 [metric_collector] {"stage_name":"metric_collector","events_processed":5404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1080.8,"last_update":"2026-03-21T12:48:54.068619898Z"} +2026/03/21 12:48:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:48:54.07898248Z"} +2026/03/21 12:48:59 [detection_layer] {"stage_name":"detection_layer","events_processed":180,"events_dropped":0,"avg_latency_ms":18.052696422277645,"throughput_eps":0,"last_update":"2026-03-21T12:48:54.21041025Z"} +2026/03/21 12:48:59 [transform_engine] {"stage_name":"transform_engine","events_processed":180,"events_dropped":0,"avg_latency_ms":1374.246137271705,"throughput_eps":0,"last_update":"2026-03-21T12:48:54.210294479Z"} +2026/03/21 12:48:59 [log_collector] {"stage_name":"log_collector","events_processed":9833,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1966.6,"last_update":"2026-03-21T12:48:54.068163072Z"} +2026/03/21 12:48:59 ───────────────────────────────────────────────── +2026/03/21 12:49:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:49:04 [log_collector] {"stage_name":"log_collector","events_processed":9833,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1966.6,"last_update":"2026-03-21T12:48:59.0686809Z"} +2026/03/21 12:49:04 [metric_collector] {"stage_name":"metric_collector","events_processed":5409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1081.8,"last_update":"2026-03-21T12:48:59.068993249Z"} +2026/03/21 12:49:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:48:59.077067885Z"} +2026/03/21 12:49:04 [detection_layer] {"stage_name":"detection_layer","events_processed":180,"events_dropped":0,"avg_latency_ms":18.052696422277645,"throughput_eps":0,"last_update":"2026-03-21T12:48:59.210487803Z"} +2026/03/21 12:49:04 [transform_engine] {"stage_name":"transform_engine","events_processed":180,"events_dropped":0,"avg_latency_ms":1374.246137271705,"throughput_eps":0,"last_update":"2026-03-21T12:48:59.210460109Z"} +2026/03/21 12:49:04 ───────────────────────────────────────────────── +2026/03/21 12:49:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:49:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:49:04.078058089Z"} +2026/03/21 12:49:09 [detection_layer] {"stage_name":"detection_layer","events_processed":180,"events_dropped":0,"avg_latency_ms":18.052696422277645,"throughput_eps":0,"last_update":"2026-03-21T12:49:04.210470742Z"} +2026/03/21 12:49:09 [transform_engine] {"stage_name":"transform_engine","events_processed":180,"events_dropped":0,"avg_latency_ms":1374.246137271705,"throughput_eps":0,"last_update":"2026-03-21T12:49:04.21043817Z"} +2026/03/21 12:49:09 [log_collector] {"stage_name":"log_collector","events_processed":9833,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1966.6,"last_update":"2026-03-21T12:49:04.068676237Z"} +2026/03/21 12:49:09 [metric_collector] {"stage_name":"metric_collector","events_processed":5414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1082.8,"last_update":"2026-03-21T12:49:04.068974849Z"} +2026/03/21 12:49:09 ───────────────────────────────────────────────── +2026/03/21 12:49:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:49:14 [metric_collector] {"stage_name":"metric_collector","events_processed":5419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1083.8,"last_update":"2026-03-21T12:49:09.068639843Z"} +2026/03/21 12:49:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2170,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:49:09.0783427Z"} +2026/03/21 12:49:14 [detection_layer] {"stage_name":"detection_layer","events_processed":180,"events_dropped":0,"avg_latency_ms":18.052696422277645,"throughput_eps":0,"last_update":"2026-03-21T12:49:09.211391092Z"} +2026/03/21 12:49:14 [transform_engine] {"stage_name":"transform_engine","events_processed":180,"events_dropped":0,"avg_latency_ms":1374.246137271705,"throughput_eps":0,"last_update":"2026-03-21T12:49:09.211060448Z"} +2026/03/21 12:49:14 [log_collector] {"stage_name":"log_collector","events_processed":9833,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1966.6,"last_update":"2026-03-21T12:49:09.068065352Z"} +2026/03/21 12:49:14 ───────────────────────────────────────────────── +2026/03/21 12:49:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:49:19 [log_collector] {"stage_name":"log_collector","events_processed":9833,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1966.6,"last_update":"2026-03-21T12:49:14.068647274Z"} +2026/03/21 12:49:19 [metric_collector] {"stage_name":"metric_collector","events_processed":5423,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1084.6,"last_update":"2026-03-21T12:49:14.068653195Z"} +2026/03/21 12:49:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:49:14.077437432Z"} +2026/03/21 12:49:19 [detection_layer] {"stage_name":"detection_layer","events_processed":180,"events_dropped":0,"avg_latency_ms":18.052696422277645,"throughput_eps":0,"last_update":"2026-03-21T12:49:14.210816395Z"} +2026/03/21 12:49:19 [transform_engine] {"stage_name":"transform_engine","events_processed":180,"events_dropped":0,"avg_latency_ms":1374.246137271705,"throughput_eps":0,"last_update":"2026-03-21T12:49:14.210770277Z"} +2026/03/21 12:49:19 ───────────────────────────────────────────────── +2026/03/21 12:49:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:49:24 [transform_engine] {"stage_name":"transform_engine","events_processed":181,"events_dropped":0,"avg_latency_ms":1113.843092217364,"throughput_eps":0,"last_update":"2026-03-21T12:49:19.28241756Z"} +2026/03/21 12:49:24 [log_collector] {"stage_name":"log_collector","events_processed":9833,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1966.6,"last_update":"2026-03-21T12:49:19.068965917Z"} +2026/03/21 12:49:24 [metric_collector] {"stage_name":"metric_collector","events_processed":5428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1085.6,"last_update":"2026-03-21T12:49:19.068971167Z"} +2026/03/21 12:49:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:49:19.078935906Z"} +2026/03/21 12:49:24 [detection_layer] {"stage_name":"detection_layer","events_processed":180,"events_dropped":0,"avg_latency_ms":18.052696422277645,"throughput_eps":0,"last_update":"2026-03-21T12:49:19.210155899Z"} +2026/03/21 12:49:24 ───────────────────────────────────────────────── +2026/03/21 12:49:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:49:29 [log_collector] {"stage_name":"log_collector","events_processed":9833,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1966.6,"last_update":"2026-03-21T12:49:24.068840271Z"} +2026/03/21 12:49:29 [metric_collector] {"stage_name":"metric_collector","events_processed":5433,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1086.6,"last_update":"2026-03-21T12:49:24.068847155Z"} +2026/03/21 12:49:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:49:24.078397088Z"} +2026/03/21 12:49:29 [detection_layer] {"stage_name":"detection_layer","events_processed":181,"events_dropped":0,"avg_latency_ms":18.393331937822115,"throughput_eps":0,"last_update":"2026-03-21T12:49:24.210771633Z"} +2026/03/21 12:49:29 [transform_engine] {"stage_name":"transform_engine","events_processed":181,"events_dropped":0,"avg_latency_ms":1113.843092217364,"throughput_eps":0,"last_update":"2026-03-21T12:49:24.210637184Z"} +2026/03/21 12:49:29 ───────────────────────────────────────────────── +2026/03/21 12:49:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:49:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:49:29.078185392Z"} +2026/03/21 12:49:34 [detection_layer] {"stage_name":"detection_layer","events_processed":181,"events_dropped":0,"avg_latency_ms":18.393331937822115,"throughput_eps":0,"last_update":"2026-03-21T12:49:29.210394777Z"} +2026/03/21 12:49:34 [transform_engine] {"stage_name":"transform_engine","events_processed":181,"events_dropped":0,"avg_latency_ms":1113.843092217364,"throughput_eps":0,"last_update":"2026-03-21T12:49:29.210369609Z"} +2026/03/21 12:49:34 [log_collector] {"stage_name":"log_collector","events_processed":9833,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1966.6,"last_update":"2026-03-21T12:49:29.068675525Z"} +2026/03/21 12:49:34 [metric_collector] {"stage_name":"metric_collector","events_processed":5439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1087.8,"last_update":"2026-03-21T12:49:29.068917218Z"} +2026/03/21 12:49:34 ───────────────────────────────────────────────── +2026/03/21 12:49:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:49:39 [log_collector] {"stage_name":"log_collector","events_processed":9833,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1966.6,"last_update":"2026-03-21T12:49:34.068463671Z"} +2026/03/21 12:49:39 [metric_collector] {"stage_name":"metric_collector","events_processed":5444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1088.8,"last_update":"2026-03-21T12:49:34.069192317Z"} +2026/03/21 12:49:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:49:34.079527767Z"} +2026/03/21 12:49:39 [detection_layer] {"stage_name":"detection_layer","events_processed":181,"events_dropped":0,"avg_latency_ms":18.393331937822115,"throughput_eps":0,"last_update":"2026-03-21T12:49:34.209873258Z"} +2026/03/21 12:49:39 [transform_engine] {"stage_name":"transform_engine","events_processed":181,"events_dropped":0,"avg_latency_ms":1113.843092217364,"throughput_eps":0,"last_update":"2026-03-21T12:49:34.209824405Z"} +2026/03/21 12:49:39 ───────────────────────────────────────────────── +Saved state: 16 clusters, 9834 messages, reason: none +2026/03/21 12:49:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:49:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:49:39.079622519Z"} +2026/03/21 12:49:44 [detection_layer] {"stage_name":"detection_layer","events_processed":181,"events_dropped":0,"avg_latency_ms":18.393331937822115,"throughput_eps":0,"last_update":"2026-03-21T12:49:39.209949693Z"} +2026/03/21 12:49:44 [transform_engine] {"stage_name":"transform_engine","events_processed":181,"events_dropped":0,"avg_latency_ms":1113.843092217364,"throughput_eps":0,"last_update":"2026-03-21T12:49:39.210104461Z"} +2026/03/21 12:49:44 [log_collector] {"stage_name":"log_collector","events_processed":9833,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1966.6,"last_update":"2026-03-21T12:49:39.069066527Z"} +2026/03/21 12:49:44 [metric_collector] {"stage_name":"metric_collector","events_processed":5449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1089.8,"last_update":"2026-03-21T12:49:39.069656899Z"} +2026/03/21 12:49:44 ───────────────────────────────────────────────── +2026/03/21 12:49:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:49:49 [log_collector] {"stage_name":"log_collector","events_processed":9838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1967.6,"last_update":"2026-03-21T12:49:44.069198297Z"} +2026/03/21 12:49:49 [metric_collector] {"stage_name":"metric_collector","events_processed":5454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1090.8,"last_update":"2026-03-21T12:49:44.068859467Z"} +2026/03/21 12:49:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:49:44.083653862Z"} +2026/03/21 12:49:49 [detection_layer] {"stage_name":"detection_layer","events_processed":181,"events_dropped":0,"avg_latency_ms":18.393331937822115,"throughput_eps":0,"last_update":"2026-03-21T12:49:44.209943015Z"} +2026/03/21 12:49:49 [transform_engine] {"stage_name":"transform_engine","events_processed":181,"events_dropped":0,"avg_latency_ms":1113.843092217364,"throughput_eps":0,"last_update":"2026-03-21T12:49:44.209964607Z"} +2026/03/21 12:49:49 ───────────────────────────────────────────────── +2026/03/21 12:49:51 [ANOMALY] time=2026-03-21T12:49:51Z score=0.8680 method=SEAD details=MAD!:w=0.35,s=0.96 RRCF-fast:w=0.16,s=0.88 RRCF-mid:w=0.14,s=0.87 RRCF-slow:w=0.13,s=0.92 COPOD!:w=0.21,s=0.67 +2026/03/21 12:49:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:49:54 [log_collector] {"stage_name":"log_collector","events_processed":9838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1967.6,"last_update":"2026-03-21T12:49:49.068909705Z"} +2026/03/21 12:49:54 [metric_collector] {"stage_name":"metric_collector","events_processed":5459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1091.8,"last_update":"2026-03-21T12:49:49.068892924Z"} +2026/03/21 12:49:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:49:49.076781161Z"} +2026/03/21 12:49:54 [detection_layer] {"stage_name":"detection_layer","events_processed":181,"events_dropped":0,"avg_latency_ms":18.393331937822115,"throughput_eps":0,"last_update":"2026-03-21T12:49:49.210370025Z"} +2026/03/21 12:49:54 [transform_engine] {"stage_name":"transform_engine","events_processed":182,"events_dropped":0,"avg_latency_ms":1372.9796723738914,"throughput_eps":0,"last_update":"2026-03-21T12:49:51.619909292Z"} +2026/03/21 12:49:54 ───────────────────────────────────────────────── +2026/03/21 12:49:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:49:59 [log_collector] {"stage_name":"log_collector","events_processed":9838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1967.6,"last_update":"2026-03-21T12:49:54.068658183Z"} +2026/03/21 12:49:59 [metric_collector] {"stage_name":"metric_collector","events_processed":5464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1092.8,"last_update":"2026-03-21T12:49:54.068971794Z"} +2026/03/21 12:49:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:49:54.076569015Z"} +2026/03/21 12:49:59 [detection_layer] {"stage_name":"detection_layer","events_processed":182,"events_dropped":0,"avg_latency_ms":17.384071550257694,"throughput_eps":0,"last_update":"2026-03-21T12:49:54.210956477Z"} +2026/03/21 12:49:59 [transform_engine] {"stage_name":"transform_engine","events_processed":182,"events_dropped":0,"avg_latency_ms":1372.9796723738914,"throughput_eps":0,"last_update":"2026-03-21T12:49:54.209735026Z"} +2026/03/21 12:49:59 ───────────────────────────────────────────────── +2026/03/21 12:50:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:50:04 [log_collector] {"stage_name":"log_collector","events_processed":9838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1967.6,"last_update":"2026-03-21T12:49:59.068520237Z"} +2026/03/21 12:50:04 [metric_collector] {"stage_name":"metric_collector","events_processed":5469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1093.8,"last_update":"2026-03-21T12:49:59.068936154Z"} +2026/03/21 12:50:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:49:59.075141977Z"} +2026/03/21 12:50:04 [detection_layer] {"stage_name":"detection_layer","events_processed":182,"events_dropped":0,"avg_latency_ms":17.384071550257694,"throughput_eps":0,"last_update":"2026-03-21T12:49:59.210481373Z"} +2026/03/21 12:50:04 [transform_engine] {"stage_name":"transform_engine","events_processed":182,"events_dropped":0,"avg_latency_ms":1372.9796723738914,"throughput_eps":0,"last_update":"2026-03-21T12:49:59.210447808Z"} +2026/03/21 12:50:04 ───────────────────────────────────────────────── +2026/03/21 12:50:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:50:09 [metric_collector] {"stage_name":"metric_collector","events_processed":5474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1094.8,"last_update":"2026-03-21T12:50:04.068566601Z"} +2026/03/21 12:50:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:50:04.086085347Z"} +2026/03/21 12:50:09 [detection_layer] {"stage_name":"detection_layer","events_processed":182,"events_dropped":0,"avg_latency_ms":17.384071550257694,"throughput_eps":0,"last_update":"2026-03-21T12:50:04.210782043Z"} +2026/03/21 12:50:09 [transform_engine] {"stage_name":"transform_engine","events_processed":182,"events_dropped":0,"avg_latency_ms":1372.9796723738914,"throughput_eps":0,"last_update":"2026-03-21T12:50:04.209703976Z"} +2026/03/21 12:50:09 [log_collector] {"stage_name":"log_collector","events_processed":9838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1967.6,"last_update":"2026-03-21T12:50:04.068240797Z"} +2026/03/21 12:50:09 ───────────────────────────────────────────────── +2026/03/21 12:50:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:50:14 [log_collector] {"stage_name":"log_collector","events_processed":9838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1967.6,"last_update":"2026-03-21T12:50:09.068417902Z"} +2026/03/21 12:50:14 [metric_collector] {"stage_name":"metric_collector","events_processed":5479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1095.8,"last_update":"2026-03-21T12:50:09.068665376Z"} +2026/03/21 12:50:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:50:09.076291753Z"} +2026/03/21 12:50:14 [detection_layer] {"stage_name":"detection_layer","events_processed":182,"events_dropped":0,"avg_latency_ms":17.384071550257694,"throughput_eps":0,"last_update":"2026-03-21T12:50:09.210367461Z"} +2026/03/21 12:50:14 [transform_engine] {"stage_name":"transform_engine","events_processed":182,"events_dropped":0,"avg_latency_ms":1372.9796723738914,"throughput_eps":0,"last_update":"2026-03-21T12:50:09.210411506Z"} +2026/03/21 12:50:14 ───────────────────────────────────────────────── +2026/03/21 12:50:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:50:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:50:14.078488948Z"} +2026/03/21 12:50:19 [detection_layer] {"stage_name":"detection_layer","events_processed":182,"events_dropped":0,"avg_latency_ms":17.384071550257694,"throughput_eps":0,"last_update":"2026-03-21T12:50:14.210797959Z"} +2026/03/21 12:50:19 [transform_engine] {"stage_name":"transform_engine","events_processed":182,"events_dropped":0,"avg_latency_ms":1372.9796723738914,"throughput_eps":0,"last_update":"2026-03-21T12:50:14.209707159Z"} +2026/03/21 12:50:19 [log_collector] {"stage_name":"log_collector","events_processed":9838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1967.6,"last_update":"2026-03-21T12:50:14.068807753Z"} +2026/03/21 12:50:19 [metric_collector] {"stage_name":"metric_collector","events_processed":5484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1096.8,"last_update":"2026-03-21T12:50:14.069235272Z"} +2026/03/21 12:50:19 ───────────────────────────────────────────────── +2026/03/21 12:50:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:50:24 [log_collector] {"stage_name":"log_collector","events_processed":9838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1967.6,"last_update":"2026-03-21T12:50:19.068505037Z"} +2026/03/21 12:50:24 [metric_collector] {"stage_name":"metric_collector","events_processed":5489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1097.8,"last_update":"2026-03-21T12:50:19.068451515Z"} +2026/03/21 12:50:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:50:19.076278586Z"} +2026/03/21 12:50:24 [detection_layer] {"stage_name":"detection_layer","events_processed":182,"events_dropped":0,"avg_latency_ms":17.384071550257694,"throughput_eps":0,"last_update":"2026-03-21T12:50:19.210508758Z"} +2026/03/21 12:50:24 [transform_engine] {"stage_name":"transform_engine","events_processed":183,"events_dropped":0,"avg_latency_ms":1816.6966314991132,"throughput_eps":0,"last_update":"2026-03-21T12:50:22.802087674Z"} +2026/03/21 12:50:24 ───────────────────────────────────────────────── +2026/03/21 12:50:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:50:29 [log_collector] {"stage_name":"log_collector","events_processed":9838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1967.6,"last_update":"2026-03-21T12:50:24.069244992Z"} +2026/03/21 12:50:29 [metric_collector] {"stage_name":"metric_collector","events_processed":5493,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1098.6,"last_update":"2026-03-21T12:50:24.068906554Z"} +2026/03/21 12:50:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:50:24.078146321Z"} +2026/03/21 12:50:29 [detection_layer] {"stage_name":"detection_layer","events_processed":183,"events_dropped":0,"avg_latency_ms":17.66068484020616,"throughput_eps":0,"last_update":"2026-03-21T12:50:24.210309802Z"} +2026/03/21 12:50:29 [transform_engine] {"stage_name":"transform_engine","events_processed":183,"events_dropped":0,"avg_latency_ms":1816.6966314991132,"throughput_eps":0,"last_update":"2026-03-21T12:50:24.210363685Z"} +2026/03/21 12:50:29 ───────────────────────────────────────────────── +2026/03/21 12:50:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:50:34 [log_collector] {"stage_name":"log_collector","events_processed":9847,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1969.4,"last_update":"2026-03-21T12:50:29.068850393Z"} +2026/03/21 12:50:34 [metric_collector] {"stage_name":"metric_collector","events_processed":5499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1099.8,"last_update":"2026-03-21T12:50:29.069220923Z"} +2026/03/21 12:50:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:50:29.077984388Z"} +2026/03/21 12:50:34 [detection_layer] {"stage_name":"detection_layer","events_processed":183,"events_dropped":0,"avg_latency_ms":17.66068484020616,"throughput_eps":0,"last_update":"2026-03-21T12:50:29.210205687Z"} +2026/03/21 12:50:34 [transform_engine] {"stage_name":"transform_engine","events_processed":183,"events_dropped":0,"avg_latency_ms":1816.6966314991132,"throughput_eps":0,"last_update":"2026-03-21T12:50:29.210230855Z"} +2026/03/21 12:50:34 ───────────────────────────────────────────────── +2026/03/21 12:50:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:50:39 [log_collector] {"stage_name":"log_collector","events_processed":9856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1971.2,"last_update":"2026-03-21T12:50:34.068443574Z"} +2026/03/21 12:50:39 [metric_collector] {"stage_name":"metric_collector","events_processed":5504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1100.8,"last_update":"2026-03-21T12:50:34.068398128Z"} +2026/03/21 12:50:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:50:34.078997751Z"} +2026/03/21 12:50:39 [detection_layer] {"stage_name":"detection_layer","events_processed":183,"events_dropped":0,"avg_latency_ms":17.66068484020616,"throughput_eps":0,"last_update":"2026-03-21T12:50:34.210377646Z"} +2026/03/21 12:50:39 [transform_engine] {"stage_name":"transform_engine","events_processed":183,"events_dropped":0,"avg_latency_ms":1816.6966314991132,"throughput_eps":0,"last_update":"2026-03-21T12:50:34.210814604Z"} +2026/03/21 12:50:39 ───────────────────────────────────────────────── +2026/03/21 12:50:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:50:44 [log_collector] {"stage_name":"log_collector","events_processed":10121,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2024.2,"last_update":"2026-03-21T12:50:39.068074761Z"} +2026/03/21 12:50:44 [metric_collector] {"stage_name":"metric_collector","events_processed":5509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1101.8,"last_update":"2026-03-21T12:50:39.068424362Z"} +2026/03/21 12:50:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2206,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:50:39.078121766Z"} +2026/03/21 12:50:44 [detection_layer] {"stage_name":"detection_layer","events_processed":183,"events_dropped":0,"avg_latency_ms":17.66068484020616,"throughput_eps":0,"last_update":"2026-03-21T12:50:39.210453885Z"} +2026/03/21 12:50:44 [transform_engine] {"stage_name":"transform_engine","events_processed":183,"events_dropped":0,"avg_latency_ms":1816.6966314991132,"throughput_eps":0,"last_update":"2026-03-21T12:50:39.210488441Z"} +2026/03/21 12:50:44 ───────────────────────────────────────────────── +2026/03/21 12:50:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:50:49 [transform_engine] {"stage_name":"transform_engine","events_processed":183,"events_dropped":0,"avg_latency_ms":1816.6966314991132,"throughput_eps":0,"last_update":"2026-03-21T12:50:44.210389697Z"} +2026/03/21 12:50:49 [log_collector] {"stage_name":"log_collector","events_processed":10199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2039.8,"last_update":"2026-03-21T12:50:44.068596549Z"} +2026/03/21 12:50:49 [metric_collector] {"stage_name":"metric_collector","events_processed":5514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1102.8,"last_update":"2026-03-21T12:50:44.068857829Z"} +2026/03/21 12:50:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:50:44.078043683Z"} +2026/03/21 12:50:49 [detection_layer] {"stage_name":"detection_layer","events_processed":183,"events_dropped":0,"avg_latency_ms":17.66068484020616,"throughput_eps":0,"last_update":"2026-03-21T12:50:44.210275688Z"} +2026/03/21 12:50:49 ───────────────────────────────────────────────── +2026/03/21 12:50:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:50:54 [detection_layer] {"stage_name":"detection_layer","events_processed":183,"events_dropped":0,"avg_latency_ms":17.66068484020616,"throughput_eps":0,"last_update":"2026-03-21T12:50:49.210452576Z"} +2026/03/21 12:50:54 [transform_engine] {"stage_name":"transform_engine","events_processed":183,"events_dropped":0,"avg_latency_ms":1816.6966314991132,"throughput_eps":0,"last_update":"2026-03-21T12:50:49.210415665Z"} +2026/03/21 12:50:54 [log_collector] {"stage_name":"log_collector","events_processed":10199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2039.8,"last_update":"2026-03-21T12:50:49.068759731Z"} +2026/03/21 12:50:54 [metric_collector] {"stage_name":"metric_collector","events_processed":5519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1103.8,"last_update":"2026-03-21T12:50:49.068984192Z"} +2026/03/21 12:50:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2210,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:50:49.079033691Z"} +2026/03/21 12:50:54 ───────────────────────────────────────────────── +2026/03/21 12:50:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:50:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:50:54.076797939Z"} +2026/03/21 12:50:59 [detection_layer] {"stage_name":"detection_layer","events_processed":184,"events_dropped":0,"avg_latency_ms":17.590967272164928,"throughput_eps":0,"last_update":"2026-03-21T12:50:54.210058392Z"} +2026/03/21 12:50:59 [transform_engine] {"stage_name":"transform_engine","events_processed":184,"events_dropped":0,"avg_latency_ms":1478.3169403992908,"throughput_eps":0,"last_update":"2026-03-21T12:50:54.210017284Z"} +2026/03/21 12:50:59 [log_collector] {"stage_name":"log_collector","events_processed":10199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2039.8,"last_update":"2026-03-21T12:50:54.068319692Z"} +2026/03/21 12:50:59 [metric_collector] {"stage_name":"metric_collector","events_processed":5524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1104.8,"last_update":"2026-03-21T12:50:54.068873703Z"} +2026/03/21 12:50:59 ───────────────────────────────────────────────── +2026/03/21 12:51:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:51:04 [metric_collector] {"stage_name":"metric_collector","events_processed":5529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1105.8,"last_update":"2026-03-21T12:50:59.068929748Z"} +2026/03/21 12:51:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:50:59.07888637Z"} +2026/03/21 12:51:04 [detection_layer] {"stage_name":"detection_layer","events_processed":184,"events_dropped":0,"avg_latency_ms":17.590967272164928,"throughput_eps":0,"last_update":"2026-03-21T12:50:59.21022122Z"} +2026/03/21 12:51:04 [transform_engine] {"stage_name":"transform_engine","events_processed":184,"events_dropped":0,"avg_latency_ms":1478.3169403992908,"throughput_eps":0,"last_update":"2026-03-21T12:50:59.21025199Z"} +2026/03/21 12:51:04 [log_collector] {"stage_name":"log_collector","events_processed":10199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2039.8,"last_update":"2026-03-21T12:51:04.0682033Z"} +2026/03/21 12:51:04 ───────────────────────────────────────────────── +2026/03/21 12:51:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:51:09 [detection_layer] {"stage_name":"detection_layer","events_processed":184,"events_dropped":0,"avg_latency_ms":17.590967272164928,"throughput_eps":0,"last_update":"2026-03-21T12:51:04.210304072Z"} +2026/03/21 12:51:09 [transform_engine] {"stage_name":"transform_engine","events_processed":184,"events_dropped":0,"avg_latency_ms":1478.3169403992908,"throughput_eps":0,"last_update":"2026-03-21T12:51:04.210379197Z"} +2026/03/21 12:51:09 [log_collector] {"stage_name":"log_collector","events_processed":10199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2039.8,"last_update":"2026-03-21T12:51:09.068219412Z"} +2026/03/21 12:51:09 [metric_collector] {"stage_name":"metric_collector","events_processed":5534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1106.8,"last_update":"2026-03-21T12:51:04.068727325Z"} +2026/03/21 12:51:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:51:04.077918188Z"} +2026/03/21 12:51:09 ───────────────────────────────────────────────── +2026/03/21 12:51:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:51:14 [log_collector] {"stage_name":"log_collector","events_processed":10199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2039.8,"last_update":"2026-03-21T12:51:09.068219412Z"} +2026/03/21 12:51:14 [metric_collector] {"stage_name":"metric_collector","events_processed":5539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1107.8,"last_update":"2026-03-21T12:51:09.068544114Z"} +2026/03/21 12:51:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:51:09.078103163Z"} +2026/03/21 12:51:14 [detection_layer] {"stage_name":"detection_layer","events_processed":184,"events_dropped":0,"avg_latency_ms":17.590967272164928,"throughput_eps":0,"last_update":"2026-03-21T12:51:09.210378284Z"} +2026/03/21 12:51:14 [transform_engine] {"stage_name":"transform_engine","events_processed":184,"events_dropped":0,"avg_latency_ms":1478.3169403992908,"throughput_eps":0,"last_update":"2026-03-21T12:51:09.210337135Z"} +2026/03/21 12:51:14 ───────────────────────────────────────────────── +2026/03/21 12:51:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:51:19 [log_collector] {"stage_name":"log_collector","events_processed":10199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2039.8,"last_update":"2026-03-21T12:51:14.068787535Z"} +2026/03/21 12:51:19 [metric_collector] {"stage_name":"metric_collector","events_processed":5544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1108.8,"last_update":"2026-03-21T12:51:14.069161101Z"} +2026/03/21 12:51:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:51:14.078420385Z"} +2026/03/21 12:51:19 [detection_layer] {"stage_name":"detection_layer","events_processed":184,"events_dropped":0,"avg_latency_ms":17.590967272164928,"throughput_eps":0,"last_update":"2026-03-21T12:51:14.210799173Z"} +2026/03/21 12:51:19 [transform_engine] {"stage_name":"transform_engine","events_processed":184,"events_dropped":0,"avg_latency_ms":1478.3169403992908,"throughput_eps":0,"last_update":"2026-03-21T12:51:14.210675476Z"} +2026/03/21 12:51:19 ───────────────────────────────────────────────── +2026/03/21 12:51:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:51:24 [transform_engine] {"stage_name":"transform_engine","events_processed":184,"events_dropped":0,"avg_latency_ms":1478.3169403992908,"throughput_eps":0,"last_update":"2026-03-21T12:51:19.209703714Z"} +2026/03/21 12:51:24 [log_collector] {"stage_name":"log_collector","events_processed":10199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2039.8,"last_update":"2026-03-21T12:51:24.068214168Z"} +2026/03/21 12:51:24 [metric_collector] {"stage_name":"metric_collector","events_processed":5549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1109.8,"last_update":"2026-03-21T12:51:19.068970737Z"} +2026/03/21 12:51:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2222,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:51:19.079434189Z"} +2026/03/21 12:51:24 [detection_layer] {"stage_name":"detection_layer","events_processed":184,"events_dropped":0,"avg_latency_ms":17.590967272164928,"throughput_eps":0,"last_update":"2026-03-21T12:51:19.209989671Z"} +2026/03/21 12:51:24 ───────────────────────────────────────────────── +2026/03/21 12:51:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:51:29 [log_collector] {"stage_name":"log_collector","events_processed":10199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2039.8,"last_update":"2026-03-21T12:51:24.068214168Z"} +2026/03/21 12:51:29 [metric_collector] {"stage_name":"metric_collector","events_processed":5554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1110.8,"last_update":"2026-03-21T12:51:24.068864665Z"} +2026/03/21 12:51:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:51:24.077297455Z"} +2026/03/21 12:51:29 [detection_layer] {"stage_name":"detection_layer","events_processed":185,"events_dropped":0,"avg_latency_ms":18.11764521773194,"throughput_eps":0,"last_update":"2026-03-21T12:51:24.210779685Z"} +2026/03/21 12:51:29 [transform_engine] {"stage_name":"transform_engine","events_processed":185,"events_dropped":0,"avg_latency_ms":1196.5220113194327,"throughput_eps":0,"last_update":"2026-03-21T12:51:24.21081361Z"} +2026/03/21 12:51:29 ───────────────────────────────────────────────── +2026/03/21 12:51:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:51:34 [detection_layer] {"stage_name":"detection_layer","events_processed":185,"events_dropped":0,"avg_latency_ms":18.11764521773194,"throughput_eps":0,"last_update":"2026-03-21T12:51:29.210382872Z"} +2026/03/21 12:51:34 [transform_engine] {"stage_name":"transform_engine","events_processed":185,"events_dropped":0,"avg_latency_ms":1196.5220113194327,"throughput_eps":0,"last_update":"2026-03-21T12:51:29.210395878Z"} +2026/03/21 12:51:34 [log_collector] {"stage_name":"log_collector","events_processed":10199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2039.8,"last_update":"2026-03-21T12:51:29.06882072Z"} +2026/03/21 12:51:34 [metric_collector] {"stage_name":"metric_collector","events_processed":5559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1111.8,"last_update":"2026-03-21T12:51:29.069126727Z"} +2026/03/21 12:51:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:51:29.078051099Z"} +2026/03/21 12:51:34 ───────────────────────────────────────────────── +2026/03/21 12:51:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:51:39 [log_collector] {"stage_name":"log_collector","events_processed":10199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2039.8,"last_update":"2026-03-21T12:51:39.068679896Z"} +2026/03/21 12:51:39 [metric_collector] {"stage_name":"metric_collector","events_processed":5564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1112.8,"last_update":"2026-03-21T12:51:34.069024259Z"} +2026/03/21 12:51:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:51:34.077434055Z"} +2026/03/21 12:51:39 [detection_layer] {"stage_name":"detection_layer","events_processed":185,"events_dropped":0,"avg_latency_ms":18.11764521773194,"throughput_eps":0,"last_update":"2026-03-21T12:51:34.210840698Z"} +2026/03/21 12:51:39 [transform_engine] {"stage_name":"transform_engine","events_processed":185,"events_dropped":0,"avg_latency_ms":1196.5220113194327,"throughput_eps":0,"last_update":"2026-03-21T12:51:34.209663902Z"} +2026/03/21 12:51:39 ───────────────────────────────────────────────── +2026/03/21 12:51:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:51:44 [log_collector] {"stage_name":"log_collector","events_processed":10199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2039.8,"last_update":"2026-03-21T12:51:39.068679896Z"} +2026/03/21 12:51:44 [metric_collector] {"stage_name":"metric_collector","events_processed":5569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1113.8,"last_update":"2026-03-21T12:51:39.068936187Z"} +2026/03/21 12:51:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:51:39.07757437Z"} +2026/03/21 12:51:44 [detection_layer] {"stage_name":"detection_layer","events_processed":185,"events_dropped":0,"avg_latency_ms":18.11764521773194,"throughput_eps":0,"last_update":"2026-03-21T12:51:39.210899646Z"} +2026/03/21 12:51:44 [transform_engine] {"stage_name":"transform_engine","events_processed":185,"events_dropped":0,"avg_latency_ms":1196.5220113194327,"throughput_eps":0,"last_update":"2026-03-21T12:51:39.209739643Z"} +2026/03/21 12:51:44 ───────────────────────────────────────────────── +2026/03/21 12:51:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:51:49 [detection_layer] {"stage_name":"detection_layer","events_processed":185,"events_dropped":0,"avg_latency_ms":18.11764521773194,"throughput_eps":0,"last_update":"2026-03-21T12:51:44.210169181Z"} +2026/03/21 12:51:49 [transform_engine] {"stage_name":"transform_engine","events_processed":185,"events_dropped":0,"avg_latency_ms":1196.5220113194327,"throughput_eps":0,"last_update":"2026-03-21T12:51:44.210185141Z"} +2026/03/21 12:51:49 [log_collector] {"stage_name":"log_collector","events_processed":10199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2039.8,"last_update":"2026-03-21T12:51:44.068722223Z"} +2026/03/21 12:51:49 [metric_collector] {"stage_name":"metric_collector","events_processed":5574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1114.8,"last_update":"2026-03-21T12:51:44.069163749Z"} +2026/03/21 12:51:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:51:44.078783152Z"} +2026/03/21 12:51:49 ───────────────────────────────────────────────── +2026/03/21 12:51:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:51:54 [transform_engine] {"stage_name":"transform_engine","events_processed":186,"events_dropped":0,"avg_latency_ms":970.6802356555463,"throughput_eps":0,"last_update":"2026-03-21T12:51:49.277329774Z"} +2026/03/21 12:51:54 [log_collector] {"stage_name":"log_collector","events_processed":10199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2039.8,"last_update":"2026-03-21T12:51:49.068594093Z"} +2026/03/21 12:51:54 [metric_collector] {"stage_name":"metric_collector","events_processed":5579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1115.8,"last_update":"2026-03-21T12:51:49.069030849Z"} +2026/03/21 12:51:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:51:49.077764636Z"} +2026/03/21 12:51:54 [detection_layer] {"stage_name":"detection_layer","events_processed":185,"events_dropped":0,"avg_latency_ms":18.11764521773194,"throughput_eps":0,"last_update":"2026-03-21T12:51:49.210002874Z"} +2026/03/21 12:51:54 ───────────────────────────────────────────────── +2026/03/21 12:51:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:51:59 [log_collector] {"stage_name":"log_collector","events_processed":10199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2039.8,"last_update":"2026-03-21T12:51:54.068655656Z"} +2026/03/21 12:51:59 [metric_collector] {"stage_name":"metric_collector","events_processed":5584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1116.8,"last_update":"2026-03-21T12:51:54.069160032Z"} +2026/03/21 12:51:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:51:54.077754592Z"} +2026/03/21 12:51:59 [detection_layer] {"stage_name":"detection_layer","events_processed":186,"events_dropped":0,"avg_latency_ms":18.223244574185554,"throughput_eps":0,"last_update":"2026-03-21T12:51:54.210000986Z"} +2026/03/21 12:51:59 [transform_engine] {"stage_name":"transform_engine","events_processed":186,"events_dropped":0,"avg_latency_ms":970.6802356555463,"throughput_eps":0,"last_update":"2026-03-21T12:51:54.210013681Z"} +2026/03/21 12:51:59 ───────────────────────────────────────────────── +2026/03/21 12:52:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:52:04 [detection_layer] {"stage_name":"detection_layer","events_processed":186,"events_dropped":0,"avg_latency_ms":18.223244574185554,"throughput_eps":0,"last_update":"2026-03-21T12:51:59.210046499Z"} +2026/03/21 12:52:04 [transform_engine] {"stage_name":"transform_engine","events_processed":186,"events_dropped":0,"avg_latency_ms":970.6802356555463,"throughput_eps":0,"last_update":"2026-03-21T12:51:59.210096565Z"} +2026/03/21 12:52:04 [log_collector] {"stage_name":"log_collector","events_processed":10199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2039.8,"last_update":"2026-03-21T12:51:59.068060403Z"} +2026/03/21 12:52:04 [metric_collector] {"stage_name":"metric_collector","events_processed":5589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1117.8,"last_update":"2026-03-21T12:51:59.068408981Z"} +2026/03/21 12:52:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:51:59.077752586Z"} +2026/03/21 12:52:04 ───────────────────────────────────────────────── +2026/03/21 12:52:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:52:09 [log_collector] {"stage_name":"log_collector","events_processed":10199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2039.8,"last_update":"2026-03-21T12:52:04.068743219Z"} +2026/03/21 12:52:09 [metric_collector] {"stage_name":"metric_collector","events_processed":5593,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1118.6,"last_update":"2026-03-21T12:52:04.068665941Z"} +2026/03/21 12:52:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:52:04.077585564Z"} +2026/03/21 12:52:09 [detection_layer] {"stage_name":"detection_layer","events_processed":186,"events_dropped":0,"avg_latency_ms":18.223244574185554,"throughput_eps":0,"last_update":"2026-03-21T12:52:04.210821019Z"} +2026/03/21 12:52:09 [transform_engine] {"stage_name":"transform_engine","events_processed":186,"events_dropped":0,"avg_latency_ms":970.6802356555463,"throughput_eps":0,"last_update":"2026-03-21T12:52:04.209735379Z"} +2026/03/21 12:52:09 ───────────────────────────────────────────────── +2026/03/21 12:52:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:52:14 [metric_collector] {"stage_name":"metric_collector","events_processed":5599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1119.8,"last_update":"2026-03-21T12:52:09.068974202Z"} +2026/03/21 12:52:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:52:09.077133176Z"} +2026/03/21 12:52:14 [detection_layer] {"stage_name":"detection_layer","events_processed":186,"events_dropped":0,"avg_latency_ms":18.223244574185554,"throughput_eps":0,"last_update":"2026-03-21T12:52:09.210402967Z"} +2026/03/21 12:52:14 [transform_engine] {"stage_name":"transform_engine","events_processed":186,"events_dropped":0,"avg_latency_ms":970.6802356555463,"throughput_eps":0,"last_update":"2026-03-21T12:52:09.210435059Z"} +2026/03/21 12:52:14 [log_collector] {"stage_name":"log_collector","events_processed":10199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2039.8,"last_update":"2026-03-21T12:52:09.068626446Z"} +2026/03/21 12:52:14 ───────────────────────────────────────────────── +2026/03/21 12:52:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:52:19 [detection_layer] {"stage_name":"detection_layer","events_processed":186,"events_dropped":0,"avg_latency_ms":18.223244574185554,"throughput_eps":0,"last_update":"2026-03-21T12:52:14.210691121Z"} +2026/03/21 12:52:19 [transform_engine] {"stage_name":"transform_engine","events_processed":186,"events_dropped":0,"avg_latency_ms":970.6802356555463,"throughput_eps":0,"last_update":"2026-03-21T12:52:14.210536604Z"} +2026/03/21 12:52:19 [log_collector] {"stage_name":"log_collector","events_processed":10199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2039.8,"last_update":"2026-03-21T12:52:19.068190159Z"} +2026/03/21 12:52:19 [metric_collector] {"stage_name":"metric_collector","events_processed":5604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1120.8,"last_update":"2026-03-21T12:52:14.069423696Z"} +2026/03/21 12:52:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:52:14.078245681Z"} +2026/03/21 12:52:19 ───────────────────────────────────────────────── +Saved state: 16 clusters, 10200 messages, reason: none +2026/03/21 12:52:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:52:24 [metric_collector] {"stage_name":"metric_collector","events_processed":5609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1121.8,"last_update":"2026-03-21T12:52:19.068680188Z"} +2026/03/21 12:52:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2246,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:52:19.077308341Z"} +2026/03/21 12:52:24 [detection_layer] {"stage_name":"detection_layer","events_processed":186,"events_dropped":0,"avg_latency_ms":18.223244574185554,"throughput_eps":0,"last_update":"2026-03-21T12:52:19.210569473Z"} +2026/03/21 12:52:24 [transform_engine] {"stage_name":"transform_engine","events_processed":187,"events_dropped":0,"avg_latency_ms":789.9742939244371,"throughput_eps":0,"last_update":"2026-03-21T12:52:19.27773522Z"} +2026/03/21 12:52:24 [log_collector] {"stage_name":"log_collector","events_processed":10199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2039.8,"last_update":"2026-03-21T12:52:19.068190159Z"} +2026/03/21 12:52:24 ───────────────────────────────────────────────── +2026/03/21 12:52:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:52:29 [log_collector] {"stage_name":"log_collector","events_processed":10202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2040.4,"last_update":"2026-03-21T12:52:24.071082692Z"} +2026/03/21 12:52:29 [metric_collector] {"stage_name":"metric_collector","events_processed":5614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1122.8,"last_update":"2026-03-21T12:52:24.073160203Z"} +2026/03/21 12:52:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:52:24.079147066Z"} +2026/03/21 12:52:29 [detection_layer] {"stage_name":"detection_layer","events_processed":187,"events_dropped":0,"avg_latency_ms":18.825289459348447,"throughput_eps":0,"last_update":"2026-03-21T12:52:24.210375651Z"} +2026/03/21 12:52:29 [transform_engine] {"stage_name":"transform_engine","events_processed":187,"events_dropped":0,"avg_latency_ms":789.9742939244371,"throughput_eps":0,"last_update":"2026-03-21T12:52:24.210388074Z"} +2026/03/21 12:52:29 ───────────────────────────────────────────────── +2026/03/21 12:52:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:52:34 [transform_engine] {"stage_name":"transform_engine","events_processed":187,"events_dropped":0,"avg_latency_ms":789.9742939244371,"throughput_eps":0,"last_update":"2026-03-21T12:52:29.210565767Z"} +2026/03/21 12:52:34 [log_collector] {"stage_name":"log_collector","events_processed":10212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2042.4,"last_update":"2026-03-21T12:52:29.068623704Z"} +2026/03/21 12:52:34 [metric_collector] {"stage_name":"metric_collector","events_processed":5618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1123.6,"last_update":"2026-03-21T12:52:29.068573939Z"} +2026/03/21 12:52:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:52:29.075260871Z"} +2026/03/21 12:52:34 [detection_layer] {"stage_name":"detection_layer","events_processed":187,"events_dropped":0,"avg_latency_ms":18.825289459348447,"throughput_eps":0,"last_update":"2026-03-21T12:52:29.210553053Z"} +2026/03/21 12:52:34 ───────────────────────────────────────────────── +2026/03/21 12:52:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:52:39 [log_collector] {"stage_name":"log_collector","events_processed":10219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2043.8,"last_update":"2026-03-21T12:52:34.068854314Z"} +2026/03/21 12:52:39 [metric_collector] {"stage_name":"metric_collector","events_processed":5624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1124.8,"last_update":"2026-03-21T12:52:34.069113871Z"} +2026/03/21 12:52:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:52:34.078041689Z"} +2026/03/21 12:52:39 [detection_layer] {"stage_name":"detection_layer","events_processed":187,"events_dropped":0,"avg_latency_ms":18.825289459348447,"throughput_eps":0,"last_update":"2026-03-21T12:52:34.210376772Z"} +2026/03/21 12:52:39 [transform_engine] {"stage_name":"transform_engine","events_processed":187,"events_dropped":0,"avg_latency_ms":789.9742939244371,"throughput_eps":0,"last_update":"2026-03-21T12:52:34.210389787Z"} +2026/03/21 12:52:39 ───────────────────────────────────────────────── +2026/03/21 12:52:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:52:44 [metric_collector] {"stage_name":"metric_collector","events_processed":5629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1125.8,"last_update":"2026-03-21T12:52:39.068936172Z"} +2026/03/21 12:52:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:52:39.077718702Z"} +2026/03/21 12:52:44 [detection_layer] {"stage_name":"detection_layer","events_processed":187,"events_dropped":0,"avg_latency_ms":18.825289459348447,"throughput_eps":0,"last_update":"2026-03-21T12:52:39.210175597Z"} +2026/03/21 12:52:44 [transform_engine] {"stage_name":"transform_engine","events_processed":187,"events_dropped":0,"avg_latency_ms":789.9742939244371,"throughput_eps":0,"last_update":"2026-03-21T12:52:39.210194433Z"} +2026/03/21 12:52:44 [log_collector] {"stage_name":"log_collector","events_processed":10229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2045.8,"last_update":"2026-03-21T12:52:39.06894515Z"} +2026/03/21 12:52:44 ───────────────────────────────────────────────── +2026/03/21 12:52:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:52:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:52:44.080592636Z"} +2026/03/21 12:52:49 [detection_layer] {"stage_name":"detection_layer","events_processed":187,"events_dropped":0,"avg_latency_ms":18.825289459348447,"throughput_eps":0,"last_update":"2026-03-21T12:52:44.212365109Z"} +2026/03/21 12:52:49 [transform_engine] {"stage_name":"transform_engine","events_processed":187,"events_dropped":0,"avg_latency_ms":789.9742939244371,"throughput_eps":0,"last_update":"2026-03-21T12:52:44.209767672Z"} +2026/03/21 12:52:49 [log_collector] {"stage_name":"log_collector","events_processed":10232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2046.4,"last_update":"2026-03-21T12:52:44.068522418Z"} +2026/03/21 12:52:49 [metric_collector] {"stage_name":"metric_collector","events_processed":5634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1126.8,"last_update":"2026-03-21T12:52:44.068857149Z"} +2026/03/21 12:52:49 ───────────────────────────────────────────────── +2026/03/21 12:52:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:52:54 [detection_layer] {"stage_name":"detection_layer","events_processed":187,"events_dropped":0,"avg_latency_ms":18.825289459348447,"throughput_eps":0,"last_update":"2026-03-21T12:52:49.211011546Z"} +2026/03/21 12:52:54 [transform_engine] {"stage_name":"transform_engine","events_processed":188,"events_dropped":0,"avg_latency_ms":654.0001211395497,"throughput_eps":0,"last_update":"2026-03-21T12:52:49.319840163Z"} +2026/03/21 12:52:54 [log_collector] {"stage_name":"log_collector","events_processed":10243,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2048.6,"last_update":"2026-03-21T12:52:49.068723936Z"} +2026/03/21 12:52:54 [metric_collector] {"stage_name":"metric_collector","events_processed":5639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1127.8,"last_update":"2026-03-21T12:52:49.068995807Z"} +2026/03/21 12:52:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:52:49.077469343Z"} +2026/03/21 12:52:54 ───────────────────────────────────────────────── +2026/03/21 12:52:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:52:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:52:54.077676398Z"} +2026/03/21 12:52:59 [detection_layer] {"stage_name":"detection_layer","events_processed":188,"events_dropped":0,"avg_latency_ms":18.72247316747876,"throughput_eps":0,"last_update":"2026-03-21T12:52:54.209972492Z"} +2026/03/21 12:52:59 [transform_engine] {"stage_name":"transform_engine","events_processed":188,"events_dropped":0,"avg_latency_ms":654.0001211395497,"throughput_eps":0,"last_update":"2026-03-21T12:52:54.209983252Z"} +2026/03/21 12:52:59 [log_collector] {"stage_name":"log_collector","events_processed":10243,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2048.6,"last_update":"2026-03-21T12:52:54.068566973Z"} +2026/03/21 12:52:59 [metric_collector] {"stage_name":"metric_collector","events_processed":5644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1128.8,"last_update":"2026-03-21T12:52:54.068887657Z"} +2026/03/21 12:52:59 ───────────────────────────────────────────────── +2026/03/21 12:53:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:53:04 [metric_collector] {"stage_name":"metric_collector","events_processed":5649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1129.8,"last_update":"2026-03-21T12:52:59.069096722Z"} +2026/03/21 12:53:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:52:59.079488193Z"} +2026/03/21 12:53:04 [detection_layer] {"stage_name":"detection_layer","events_processed":188,"events_dropped":0,"avg_latency_ms":18.72247316747876,"throughput_eps":0,"last_update":"2026-03-21T12:52:59.210968052Z"} +2026/03/21 12:53:04 [transform_engine] {"stage_name":"transform_engine","events_processed":188,"events_dropped":0,"avg_latency_ms":654.0001211395497,"throughput_eps":0,"last_update":"2026-03-21T12:52:59.209752944Z"} +2026/03/21 12:53:04 [log_collector] {"stage_name":"log_collector","events_processed":10243,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2048.6,"last_update":"2026-03-21T12:52:59.068723347Z"} +2026/03/21 12:53:04 ───────────────────────────────────────────────── +2026/03/21 12:53:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:53:09 [log_collector] {"stage_name":"log_collector","events_processed":10243,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2048.6,"last_update":"2026-03-21T12:53:04.068681077Z"} +2026/03/21 12:53:09 [metric_collector] {"stage_name":"metric_collector","events_processed":5654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1130.8,"last_update":"2026-03-21T12:53:04.068978336Z"} +2026/03/21 12:53:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:53:04.07710603Z"} +2026/03/21 12:53:09 [detection_layer] {"stage_name":"detection_layer","events_processed":188,"events_dropped":0,"avg_latency_ms":18.72247316747876,"throughput_eps":0,"last_update":"2026-03-21T12:53:04.210380005Z"} +2026/03/21 12:53:09 [transform_engine] {"stage_name":"transform_engine","events_processed":188,"events_dropped":0,"avg_latency_ms":654.0001211395497,"throughput_eps":0,"last_update":"2026-03-21T12:53:04.210392981Z"} +2026/03/21 12:53:09 ───────────────────────────────────────────────── +2026/03/21 12:53:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:53:14 [detection_layer] {"stage_name":"detection_layer","events_processed":188,"events_dropped":0,"avg_latency_ms":18.72247316747876,"throughput_eps":0,"last_update":"2026-03-21T12:53:09.210273239Z"} +2026/03/21 12:53:14 [transform_engine] {"stage_name":"transform_engine","events_processed":188,"events_dropped":0,"avg_latency_ms":654.0001211395497,"throughput_eps":0,"last_update":"2026-03-21T12:53:09.21028936Z"} +2026/03/21 12:53:14 [log_collector] {"stage_name":"log_collector","events_processed":10243,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2048.6,"last_update":"2026-03-21T12:53:09.068467636Z"} +2026/03/21 12:53:14 [metric_collector] {"stage_name":"metric_collector","events_processed":5659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1131.8,"last_update":"2026-03-21T12:53:09.068898502Z"} +2026/03/21 12:53:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:53:09.076879786Z"} +2026/03/21 12:53:14 ───────────────────────────────────────────────── +2026/03/21 12:53:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:53:19 [log_collector] {"stage_name":"log_collector","events_processed":10243,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2048.6,"last_update":"2026-03-21T12:53:14.068997249Z"} +2026/03/21 12:53:19 [metric_collector] {"stage_name":"metric_collector","events_processed":5664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1132.8,"last_update":"2026-03-21T12:53:14.069171583Z"} +2026/03/21 12:53:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:53:14.0774576Z"} +2026/03/21 12:53:19 [detection_layer] {"stage_name":"detection_layer","events_processed":188,"events_dropped":0,"avg_latency_ms":18.72247316747876,"throughput_eps":0,"last_update":"2026-03-21T12:53:14.211002532Z"} +2026/03/21 12:53:19 [transform_engine] {"stage_name":"transform_engine","events_processed":188,"events_dropped":0,"avg_latency_ms":654.0001211395497,"throughput_eps":0,"last_update":"2026-03-21T12:53:14.209643028Z"} +2026/03/21 12:53:19 ───────────────────────────────────────────────── +2026/03/21 12:53:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:53:24 [detection_layer] {"stage_name":"detection_layer","events_processed":188,"events_dropped":0,"avg_latency_ms":18.72247316747876,"throughput_eps":0,"last_update":"2026-03-21T12:53:19.210471056Z"} +2026/03/21 12:53:24 [transform_engine] {"stage_name":"transform_engine","events_processed":189,"events_dropped":0,"avg_latency_ms":542.3873363116397,"throughput_eps":0,"last_update":"2026-03-21T12:53:19.306419338Z"} +2026/03/21 12:53:24 [log_collector] {"stage_name":"log_collector","events_processed":10243,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2048.6,"last_update":"2026-03-21T12:53:19.068725923Z"} +2026/03/21 12:53:24 [metric_collector] {"stage_name":"metric_collector","events_processed":5669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1133.8,"last_update":"2026-03-21T12:53:19.069330491Z"} +2026/03/21 12:53:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:53:19.07823321Z"} +2026/03/21 12:53:24 ───────────────────────────────────────────────── +2026/03/21 12:53:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:53:29 [log_collector] {"stage_name":"log_collector","events_processed":10243,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2048.6,"last_update":"2026-03-21T12:53:24.068460155Z"} +2026/03/21 12:53:29 [metric_collector] {"stage_name":"metric_collector","events_processed":5674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1134.8,"last_update":"2026-03-21T12:53:24.068711977Z"} +2026/03/21 12:53:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:53:24.077607313Z"} +2026/03/21 12:53:29 [detection_layer] {"stage_name":"detection_layer","events_processed":189,"events_dropped":0,"avg_latency_ms":19.02350413398301,"throughput_eps":0,"last_update":"2026-03-21T12:53:24.210881304Z"} +2026/03/21 12:53:29 [transform_engine] {"stage_name":"transform_engine","events_processed":189,"events_dropped":0,"avg_latency_ms":542.3873363116397,"throughput_eps":0,"last_update":"2026-03-21T12:53:24.209767529Z"} +2026/03/21 12:53:29 ───────────────────────────────────────────────── +2026/03/21 12:53:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:53:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:53:29.077665005Z"} +2026/03/21 12:53:34 [detection_layer] {"stage_name":"detection_layer","events_processed":189,"events_dropped":0,"avg_latency_ms":19.02350413398301,"throughput_eps":0,"last_update":"2026-03-21T12:53:29.209957374Z"} +2026/03/21 12:53:34 [transform_engine] {"stage_name":"transform_engine","events_processed":189,"events_dropped":0,"avg_latency_ms":542.3873363116397,"throughput_eps":0,"last_update":"2026-03-21T12:53:29.209978214Z"} +2026/03/21 12:53:34 [log_collector] {"stage_name":"log_collector","events_processed":10243,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2048.6,"last_update":"2026-03-21T12:53:29.068196843Z"} +2026/03/21 12:53:34 [metric_collector] {"stage_name":"metric_collector","events_processed":5679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1135.8,"last_update":"2026-03-21T12:53:29.06878516Z"} +2026/03/21 12:53:34 ───────────────────────────────────────────────── +2026/03/21 12:53:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:53:39 [detection_layer] {"stage_name":"detection_layer","events_processed":189,"events_dropped":0,"avg_latency_ms":19.02350413398301,"throughput_eps":0,"last_update":"2026-03-21T12:53:34.210755903Z"} +2026/03/21 12:53:39 [transform_engine] {"stage_name":"transform_engine","events_processed":189,"events_dropped":0,"avg_latency_ms":542.3873363116397,"throughput_eps":0,"last_update":"2026-03-21T12:53:34.20964278Z"} +2026/03/21 12:53:39 [log_collector] {"stage_name":"log_collector","events_processed":10243,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2048.6,"last_update":"2026-03-21T12:53:34.068644921Z"} +2026/03/21 12:53:39 [metric_collector] {"stage_name":"metric_collector","events_processed":5684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1136.8,"last_update":"2026-03-21T12:53:34.069113108Z"} +2026/03/21 12:53:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2276,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:53:34.078448005Z"} +2026/03/21 12:53:39 ───────────────────────────────────────────────── +2026/03/21 12:53:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:53:44 [log_collector] {"stage_name":"log_collector","events_processed":10243,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2048.6,"last_update":"2026-03-21T12:53:39.068972509Z"} +2026/03/21 12:53:44 [metric_collector] {"stage_name":"metric_collector","events_processed":5689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1137.8,"last_update":"2026-03-21T12:53:39.069045909Z"} +2026/03/21 12:53:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:53:39.079561228Z"} +2026/03/21 12:53:44 [detection_layer] {"stage_name":"detection_layer","events_processed":189,"events_dropped":0,"avg_latency_ms":19.02350413398301,"throughput_eps":0,"last_update":"2026-03-21T12:53:39.210825175Z"} +2026/03/21 12:53:44 [transform_engine] {"stage_name":"transform_engine","events_processed":189,"events_dropped":0,"avg_latency_ms":542.3873363116397,"throughput_eps":0,"last_update":"2026-03-21T12:53:39.209715559Z"} +2026/03/21 12:53:44 ───────────────────────────────────────────────── +2026/03/21 12:53:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:53:49 [transform_engine] {"stage_name":"transform_engine","events_processed":189,"events_dropped":0,"avg_latency_ms":542.3873363116397,"throughput_eps":0,"last_update":"2026-03-21T12:53:44.209642979Z"} +2026/03/21 12:53:49 [log_collector] {"stage_name":"log_collector","events_processed":10243,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2048.6,"last_update":"2026-03-21T12:53:44.068798546Z"} +2026/03/21 12:53:49 [metric_collector] {"stage_name":"metric_collector","events_processed":5694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1138.8,"last_update":"2026-03-21T12:53:44.069303343Z"} +2026/03/21 12:53:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:53:44.078466721Z"} +2026/03/21 12:53:49 [detection_layer] {"stage_name":"detection_layer","events_processed":189,"events_dropped":0,"avg_latency_ms":19.02350413398301,"throughput_eps":0,"last_update":"2026-03-21T12:53:44.210730853Z"} +2026/03/21 12:53:49 ───────────────────────────────────────────────── +Saved state: 16 clusters, 10244 messages, reason: none +2026/03/21 12:53:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:53:54 [log_collector] {"stage_name":"log_collector","events_processed":10243,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2048.6,"last_update":"2026-03-21T12:53:49.069029188Z"} +2026/03/21 12:53:54 [metric_collector] {"stage_name":"metric_collector","events_processed":5699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1139.8,"last_update":"2026-03-21T12:53:49.069332979Z"} +2026/03/21 12:53:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:53:49.079540388Z"} +2026/03/21 12:53:54 [detection_layer] {"stage_name":"detection_layer","events_processed":189,"events_dropped":0,"avg_latency_ms":19.02350413398301,"throughput_eps":0,"last_update":"2026-03-21T12:53:49.209908857Z"} +2026/03/21 12:53:54 [transform_engine] {"stage_name":"transform_engine","events_processed":190,"events_dropped":0,"avg_latency_ms":447.4606334493118,"throughput_eps":0,"last_update":"2026-03-21T12:53:49.277556556Z"} +2026/03/21 12:53:54 ───────────────────────────────────────────────── +2026/03/21 12:53:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:53:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:53:54.080040848Z"} +2026/03/21 12:53:59 [detection_layer] {"stage_name":"detection_layer","events_processed":190,"events_dropped":0,"avg_latency_ms":19.083650707186408,"throughput_eps":0,"last_update":"2026-03-21T12:53:54.210238709Z"} +2026/03/21 12:53:59 [transform_engine] {"stage_name":"transform_engine","events_processed":190,"events_dropped":0,"avg_latency_ms":447.4606334493118,"throughput_eps":0,"last_update":"2026-03-21T12:53:54.210271632Z"} +2026/03/21 12:53:59 [log_collector] {"stage_name":"log_collector","events_processed":10248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2049.6,"last_update":"2026-03-21T12:53:54.06866456Z"} +2026/03/21 12:53:59 [metric_collector] {"stage_name":"metric_collector","events_processed":5703,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1140.6,"last_update":"2026-03-21T12:53:54.068525144Z"} +2026/03/21 12:53:59 ───────────────────────────────────────────────── +2026/03/21 12:54:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:54:04 [detection_layer] {"stage_name":"detection_layer","events_processed":190,"events_dropped":0,"avg_latency_ms":19.083650707186408,"throughput_eps":0,"last_update":"2026-03-21T12:53:59.210855503Z"} +2026/03/21 12:54:04 [transform_engine] {"stage_name":"transform_engine","events_processed":190,"events_dropped":0,"avg_latency_ms":447.4606334493118,"throughput_eps":0,"last_update":"2026-03-21T12:53:59.209721168Z"} +2026/03/21 12:54:04 [log_collector] {"stage_name":"log_collector","events_processed":10248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2049.6,"last_update":"2026-03-21T12:53:59.068569261Z"} +2026/03/21 12:54:04 [metric_collector] {"stage_name":"metric_collector","events_processed":5708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1141.6,"last_update":"2026-03-21T12:53:59.068572677Z"} +2026/03/21 12:54:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2286,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:53:59.075489019Z"} +2026/03/21 12:54:04 ───────────────────────────────────────────────── +2026/03/21 12:54:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:54:09 [log_collector] {"stage_name":"log_collector","events_processed":10248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2049.6,"last_update":"2026-03-21T12:54:04.068699334Z"} +2026/03/21 12:54:09 [metric_collector] {"stage_name":"metric_collector","events_processed":5713,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1142.6,"last_update":"2026-03-21T12:54:04.068704434Z"} +2026/03/21 12:54:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:54:04.078027097Z"} +2026/03/21 12:54:09 [detection_layer] {"stage_name":"detection_layer","events_processed":190,"events_dropped":0,"avg_latency_ms":19.083650707186408,"throughput_eps":0,"last_update":"2026-03-21T12:54:04.21039384Z"} +2026/03/21 12:54:09 [transform_engine] {"stage_name":"transform_engine","events_processed":190,"events_dropped":0,"avg_latency_ms":447.4606334493118,"throughput_eps":0,"last_update":"2026-03-21T12:54:04.210473885Z"} +2026/03/21 12:54:09 ───────────────────────────────────────────────── +2026/03/21 12:54:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:54:14 [detection_layer] {"stage_name":"detection_layer","events_processed":190,"events_dropped":0,"avg_latency_ms":19.083650707186408,"throughput_eps":0,"last_update":"2026-03-21T12:54:09.21096495Z"} +2026/03/21 12:54:14 [transform_engine] {"stage_name":"transform_engine","events_processed":190,"events_dropped":0,"avg_latency_ms":447.4606334493118,"throughput_eps":0,"last_update":"2026-03-21T12:54:09.209715436Z"} +2026/03/21 12:54:14 [log_collector] {"stage_name":"log_collector","events_processed":10248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2049.6,"last_update":"2026-03-21T12:54:09.068608146Z"} +2026/03/21 12:54:14 [metric_collector] {"stage_name":"metric_collector","events_processed":5718,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1143.6,"last_update":"2026-03-21T12:54:09.068611512Z"} +2026/03/21 12:54:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:54:09.076625176Z"} +2026/03/21 12:54:14 ───────────────────────────────────────────────── +2026/03/21 12:54:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:54:19 [detection_layer] {"stage_name":"detection_layer","events_processed":190,"events_dropped":0,"avg_latency_ms":19.083650707186408,"throughput_eps":0,"last_update":"2026-03-21T12:54:14.210420024Z"} +2026/03/21 12:54:19 [transform_engine] {"stage_name":"transform_engine","events_processed":190,"events_dropped":0,"avg_latency_ms":447.4606334493118,"throughput_eps":0,"last_update":"2026-03-21T12:54:14.210404263Z"} +2026/03/21 12:54:19 [log_collector] {"stage_name":"log_collector","events_processed":10248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2049.6,"last_update":"2026-03-21T12:54:14.06862175Z"} +2026/03/21 12:54:19 [metric_collector] {"stage_name":"metric_collector","events_processed":5724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1144.8,"last_update":"2026-03-21T12:54:14.06890901Z"} +2026/03/21 12:54:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:54:14.079146605Z"} +2026/03/21 12:54:19 ───────────────────────────────────────────────── +2026/03/21 12:54:19 [ANOMALY] time=2026-03-21T12:54:19Z score=0.9102 method=SEAD details=MAD!:w=0.35,s=0.89 RRCF-fast!:w=0.17,s=0.98 RRCF-mid!:w=0.14,s=0.99 RRCF-slow!:w=0.13,s=0.99 COPOD!:w=0.21,s=0.78 +2026/03/21 12:54:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:54:24 [detection_layer] {"stage_name":"detection_layer","events_processed":190,"events_dropped":0,"avg_latency_ms":19.083650707186408,"throughput_eps":0,"last_update":"2026-03-21T12:54:19.21107054Z"} +2026/03/21 12:54:24 [transform_engine] {"stage_name":"transform_engine","events_processed":191,"events_dropped":0,"avg_latency_ms":392.0224837594494,"throughput_eps":0,"last_update":"2026-03-21T12:54:19.380059141Z"} +2026/03/21 12:54:24 [log_collector] {"stage_name":"log_collector","events_processed":10248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2049.6,"last_update":"2026-03-21T12:54:19.068614769Z"} +2026/03/21 12:54:24 [metric_collector] {"stage_name":"metric_collector","events_processed":5729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1145.8,"last_update":"2026-03-21T12:54:19.068908871Z"} +2026/03/21 12:54:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:54:19.076687435Z"} +2026/03/21 12:54:24 ───────────────────────────────────────────────── +2026/03/21 12:54:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:54:29 [log_collector] {"stage_name":"log_collector","events_processed":10248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2049.6,"last_update":"2026-03-21T12:54:24.068465406Z"} +2026/03/21 12:54:29 [metric_collector] {"stage_name":"metric_collector","events_processed":5734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1146.8,"last_update":"2026-03-21T12:54:24.06961594Z"} +2026/03/21 12:54:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:54:24.080584817Z"} +2026/03/21 12:54:29 [detection_layer] {"stage_name":"detection_layer","events_processed":191,"events_dropped":0,"avg_latency_ms":17.105094565749127,"throughput_eps":0,"last_update":"2026-03-21T12:54:24.210763706Z"} +2026/03/21 12:54:29 [transform_engine] {"stage_name":"transform_engine","events_processed":191,"events_dropped":0,"avg_latency_ms":392.0224837594494,"throughput_eps":0,"last_update":"2026-03-21T12:54:24.209691932Z"} +2026/03/21 12:54:29 ───────────────────────────────────────────────── +2026/03/21 12:54:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:54:34 [log_collector] {"stage_name":"log_collector","events_processed":10248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2049.6,"last_update":"2026-03-21T12:54:29.06914757Z"} +2026/03/21 12:54:34 [metric_collector] {"stage_name":"metric_collector","events_processed":5739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1147.8,"last_update":"2026-03-21T12:54:29.068725953Z"} +2026/03/21 12:54:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:54:29.078584281Z"} +2026/03/21 12:54:34 [detection_layer] {"stage_name":"detection_layer","events_processed":191,"events_dropped":0,"avg_latency_ms":17.105094565749127,"throughput_eps":0,"last_update":"2026-03-21T12:54:29.210822605Z"} +2026/03/21 12:54:34 [transform_engine] {"stage_name":"transform_engine","events_processed":191,"events_dropped":0,"avg_latency_ms":392.0224837594494,"throughput_eps":0,"last_update":"2026-03-21T12:54:29.209711136Z"} +2026/03/21 12:54:34 ───────────────────────────────────────────────── +2026/03/21 12:54:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:54:39 [log_collector] {"stage_name":"log_collector","events_processed":10248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2049.6,"last_update":"2026-03-21T12:54:34.069099007Z"} +2026/03/21 12:54:39 [metric_collector] {"stage_name":"metric_collector","events_processed":5744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1148.8,"last_update":"2026-03-21T12:54:34.069388091Z"} +2026/03/21 12:54:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:54:34.076889435Z"} +2026/03/21 12:54:39 [detection_layer] {"stage_name":"detection_layer","events_processed":191,"events_dropped":0,"avg_latency_ms":17.105094565749127,"throughput_eps":0,"last_update":"2026-03-21T12:54:34.210395867Z"} +2026/03/21 12:54:39 [transform_engine] {"stage_name":"transform_engine","events_processed":191,"events_dropped":0,"avg_latency_ms":392.0224837594494,"throughput_eps":0,"last_update":"2026-03-21T12:54:34.21041872Z"} +2026/03/21 12:54:39 ───────────────────────────────────────────────── +2026/03/21 12:54:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:54:44 [log_collector] {"stage_name":"log_collector","events_processed":10259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2051.8,"last_update":"2026-03-21T12:54:39.068104218Z"} +2026/03/21 12:54:44 [metric_collector] {"stage_name":"metric_collector","events_processed":5749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1149.8,"last_update":"2026-03-21T12:54:39.068451523Z"} +2026/03/21 12:54:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:54:39.07569399Z"} +2026/03/21 12:54:44 [detection_layer] {"stage_name":"detection_layer","events_processed":191,"events_dropped":0,"avg_latency_ms":17.105094565749127,"throughput_eps":0,"last_update":"2026-03-21T12:54:39.209972329Z"} +2026/03/21 12:54:44 [transform_engine] {"stage_name":"transform_engine","events_processed":191,"events_dropped":0,"avg_latency_ms":392.0224837594494,"throughput_eps":0,"last_update":"2026-03-21T12:54:39.20993114Z"} +2026/03/21 12:54:44 ───────────────────────────────────────────────── +2026/03/21 12:54:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:54:49 [metric_collector] {"stage_name":"metric_collector","events_processed":5754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1150.8,"last_update":"2026-03-21T12:54:44.06823063Z"} +2026/03/21 12:54:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:54:44.075419183Z"} +2026/03/21 12:54:49 [detection_layer] {"stage_name":"detection_layer","events_processed":191,"events_dropped":0,"avg_latency_ms":17.105094565749127,"throughput_eps":0,"last_update":"2026-03-21T12:54:44.210047123Z"} +2026/03/21 12:54:49 [transform_engine] {"stage_name":"transform_engine","events_processed":191,"events_dropped":0,"avg_latency_ms":392.0224837594494,"throughput_eps":0,"last_update":"2026-03-21T12:54:44.210094382Z"} +2026/03/21 12:54:49 [log_collector] {"stage_name":"log_collector","events_processed":10261,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2052.2,"last_update":"2026-03-21T12:54:44.068070083Z"} +2026/03/21 12:54:49 ───────────────────────────────────────────────── +2026/03/21 12:54:49 [ANOMALY] time=2026-03-21T12:54:49Z score=0.8871 method=SEAD details=MAD!:w=0.35,s=0.93 RRCF-fast:w=0.16,s=0.87 RRCF-mid:w=0.14,s=0.72 RRCF-slow:w=0.13,s=0.84 COPOD!:w=0.21,s=0.96 +2026/03/21 12:54:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:54:54 [log_collector] {"stage_name":"log_collector","events_processed":10422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2084.4,"last_update":"2026-03-21T12:54:49.068150862Z"} +2026/03/21 12:54:54 [metric_collector] {"stage_name":"metric_collector","events_processed":5759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1151.8,"last_update":"2026-03-21T12:54:49.068383889Z"} +2026/03/21 12:54:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:54:49.075282798Z"} +2026/03/21 12:54:54 [detection_layer] {"stage_name":"detection_layer","events_processed":191,"events_dropped":0,"avg_latency_ms":17.105094565749127,"throughput_eps":0,"last_update":"2026-03-21T12:54:49.210491268Z"} +2026/03/21 12:54:54 [transform_engine] {"stage_name":"transform_engine","events_processed":192,"events_dropped":0,"avg_latency_ms":342.6392600075596,"throughput_eps":0,"last_update":"2026-03-21T12:54:49.355630285Z"} +2026/03/21 12:54:54 ───────────────────────────────────────────────── +2026/03/21 12:54:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:54:59 [metric_collector] {"stage_name":"metric_collector","events_processed":5764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1152.8,"last_update":"2026-03-21T12:54:54.069179011Z"} +2026/03/21 12:54:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:54:54.077466629Z"} +2026/03/21 12:54:59 [detection_layer] {"stage_name":"detection_layer","events_processed":192,"events_dropped":0,"avg_latency_ms":16.466023852599303,"throughput_eps":0,"last_update":"2026-03-21T12:54:54.210835024Z"} +2026/03/21 12:54:59 [transform_engine] {"stage_name":"transform_engine","events_processed":192,"events_dropped":0,"avg_latency_ms":342.6392600075596,"throughput_eps":0,"last_update":"2026-03-21T12:54:54.20971099Z"} +2026/03/21 12:54:59 [log_collector] {"stage_name":"log_collector","events_processed":10605,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2121,"last_update":"2026-03-21T12:54:54.06896955Z"} +2026/03/21 12:54:59 ───────────────────────────────────────────────── +2026/03/21 12:55:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:55:04 [log_collector] {"stage_name":"log_collector","events_processed":10605,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2121,"last_update":"2026-03-21T12:54:59.068919077Z"} +2026/03/21 12:55:04 [metric_collector] {"stage_name":"metric_collector","events_processed":5768,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1153.6,"last_update":"2026-03-21T12:54:59.068926352Z"} +2026/03/21 12:55:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:54:59.078526806Z"} +2026/03/21 12:55:04 [detection_layer] {"stage_name":"detection_layer","events_processed":192,"events_dropped":0,"avg_latency_ms":16.466023852599303,"throughput_eps":0,"last_update":"2026-03-21T12:54:59.210974646Z"} +2026/03/21 12:55:04 [transform_engine] {"stage_name":"transform_engine","events_processed":192,"events_dropped":0,"avg_latency_ms":342.6392600075596,"throughput_eps":0,"last_update":"2026-03-21T12:54:59.20975041Z"} +2026/03/21 12:55:04 ───────────────────────────────────────────────── +2026/03/21 12:55:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:55:09 [log_collector] {"stage_name":"log_collector","events_processed":10605,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2121,"last_update":"2026-03-21T12:55:04.068566804Z"} +2026/03/21 12:55:09 [metric_collector] {"stage_name":"metric_collector","events_processed":5774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1154.8,"last_update":"2026-03-21T12:55:04.068854776Z"} +2026/03/21 12:55:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:55:04.077560787Z"} +2026/03/21 12:55:09 [detection_layer] {"stage_name":"detection_layer","events_processed":192,"events_dropped":0,"avg_latency_ms":16.466023852599303,"throughput_eps":0,"last_update":"2026-03-21T12:55:04.209915266Z"} +2026/03/21 12:55:09 [transform_engine] {"stage_name":"transform_engine","events_processed":192,"events_dropped":0,"avg_latency_ms":342.6392600075596,"throughput_eps":0,"last_update":"2026-03-21T12:55:04.209801418Z"} +2026/03/21 12:55:09 ───────────────────────────────────────────────── +Saved state: 16 clusters, 10606 messages, reason: none +2026/03/21 12:55:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:55:14 [detection_layer] {"stage_name":"detection_layer","events_processed":192,"events_dropped":0,"avg_latency_ms":16.466023852599303,"throughput_eps":0,"last_update":"2026-03-21T12:55:09.210387958Z"} +2026/03/21 12:55:14 [transform_engine] {"stage_name":"transform_engine","events_processed":192,"events_dropped":0,"avg_latency_ms":342.6392600075596,"throughput_eps":0,"last_update":"2026-03-21T12:55:09.210398919Z"} +2026/03/21 12:55:14 [log_collector] {"stage_name":"log_collector","events_processed":10605,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2121,"last_update":"2026-03-21T12:55:09.068888027Z"} +2026/03/21 12:55:14 [metric_collector] {"stage_name":"metric_collector","events_processed":5779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1155.8,"last_update":"2026-03-21T12:55:09.069233569Z"} +2026/03/21 12:55:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:55:09.080111921Z"} +2026/03/21 12:55:14 ───────────────────────────────────────────────── +2026/03/21 12:55:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:55:19 [metric_collector] {"stage_name":"metric_collector","events_processed":5784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1156.8,"last_update":"2026-03-21T12:55:14.06861636Z"} +2026/03/21 12:55:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:55:14.076077576Z"} +2026/03/21 12:55:19 [detection_layer] {"stage_name":"detection_layer","events_processed":192,"events_dropped":0,"avg_latency_ms":16.466023852599303,"throughput_eps":0,"last_update":"2026-03-21T12:55:14.210025135Z"} +2026/03/21 12:55:19 [transform_engine] {"stage_name":"transform_engine","events_processed":192,"events_dropped":0,"avg_latency_ms":342.6392600075596,"throughput_eps":0,"last_update":"2026-03-21T12:55:14.210036107Z"} +2026/03/21 12:55:19 [log_collector] {"stage_name":"log_collector","events_processed":10608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2121.6,"last_update":"2026-03-21T12:55:14.068365499Z"} +2026/03/21 12:55:19 ───────────────────────────────────────────────── +2026/03/21 12:55:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:55:24 [transform_engine] {"stage_name":"transform_engine","events_processed":193,"events_dropped":0,"avg_latency_ms":521.0091316060477,"throughput_eps":0,"last_update":"2026-03-21T12:55:20.444678197Z"} +2026/03/21 12:55:24 [log_collector] {"stage_name":"log_collector","events_processed":10618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2123.6,"last_update":"2026-03-21T12:55:19.068839167Z"} +2026/03/21 12:55:24 [metric_collector] {"stage_name":"metric_collector","events_processed":5789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1157.8,"last_update":"2026-03-21T12:55:19.069313456Z"} +2026/03/21 12:55:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:55:19.0749052Z"} +2026/03/21 12:55:24 [detection_layer] {"stage_name":"detection_layer","events_processed":192,"events_dropped":0,"avg_latency_ms":16.466023852599303,"throughput_eps":0,"last_update":"2026-03-21T12:55:19.210173389Z"} +2026/03/21 12:55:24 ───────────────────────────────────────────────── +2026/03/21 12:55:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:55:29 [log_collector] {"stage_name":"log_collector","events_processed":10626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2125.2,"last_update":"2026-03-21T12:55:24.068509443Z"} +2026/03/21 12:55:29 [metric_collector] {"stage_name":"metric_collector","events_processed":5793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1158.6,"last_update":"2026-03-21T12:55:24.068605007Z"} +2026/03/21 12:55:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2320,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:55:24.075892008Z"} +2026/03/21 12:55:29 [detection_layer] {"stage_name":"detection_layer","events_processed":193,"events_dropped":0,"avg_latency_ms":16.60209548207944,"throughput_eps":0,"last_update":"2026-03-21T12:55:24.21026462Z"} +2026/03/21 12:55:29 [transform_engine] {"stage_name":"transform_engine","events_processed":193,"events_dropped":0,"avg_latency_ms":521.0091316060477,"throughput_eps":0,"last_update":"2026-03-21T12:55:24.210297113Z"} +2026/03/21 12:55:29 ───────────────────────────────────────────────── +2026/03/21 12:55:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:55:34 [log_collector] {"stage_name":"log_collector","events_processed":10635,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2127,"last_update":"2026-03-21T12:55:29.068954722Z"} +2026/03/21 12:55:34 [metric_collector] {"stage_name":"metric_collector","events_processed":5799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1159.8,"last_update":"2026-03-21T12:55:29.06932938Z"} +2026/03/21 12:55:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:55:29.077802184Z"} +2026/03/21 12:55:34 [detection_layer] {"stage_name":"detection_layer","events_processed":193,"events_dropped":0,"avg_latency_ms":16.60209548207944,"throughput_eps":0,"last_update":"2026-03-21T12:55:29.210057338Z"} +2026/03/21 12:55:34 [transform_engine] {"stage_name":"transform_engine","events_processed":193,"events_dropped":0,"avg_latency_ms":521.0091316060477,"throughput_eps":0,"last_update":"2026-03-21T12:55:29.210160656Z"} +2026/03/21 12:55:34 ───────────────────────────────────────────────── +2026/03/21 12:55:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:55:39 [log_collector] {"stage_name":"log_collector","events_processed":10635,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2127,"last_update":"2026-03-21T12:55:34.068198517Z"} +2026/03/21 12:55:39 [metric_collector] {"stage_name":"metric_collector","events_processed":5804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1160.8,"last_update":"2026-03-21T12:55:34.068649631Z"} +2026/03/21 12:55:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:55:34.077168191Z"} +2026/03/21 12:55:39 [detection_layer] {"stage_name":"detection_layer","events_processed":193,"events_dropped":0,"avg_latency_ms":16.60209548207944,"throughput_eps":0,"last_update":"2026-03-21T12:55:34.21069952Z"} +2026/03/21 12:55:39 [transform_engine] {"stage_name":"transform_engine","events_processed":193,"events_dropped":0,"avg_latency_ms":521.0091316060477,"throughput_eps":0,"last_update":"2026-03-21T12:55:34.21072545Z"} +2026/03/21 12:55:39 ───────────────────────────────────────────────── +2026/03/21 12:55:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:55:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:55:39.077690965Z"} +2026/03/21 12:55:44 [detection_layer] {"stage_name":"detection_layer","events_processed":193,"events_dropped":0,"avg_latency_ms":16.60209548207944,"throughput_eps":0,"last_update":"2026-03-21T12:55:39.209948102Z"} +2026/03/21 12:55:44 [transform_engine] {"stage_name":"transform_engine","events_processed":193,"events_dropped":0,"avg_latency_ms":521.0091316060477,"throughput_eps":0,"last_update":"2026-03-21T12:55:39.209971146Z"} +2026/03/21 12:55:44 [log_collector] {"stage_name":"log_collector","events_processed":10635,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2127,"last_update":"2026-03-21T12:55:39.06865883Z"} +2026/03/21 12:55:44 [metric_collector] {"stage_name":"metric_collector","events_processed":5809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1161.8,"last_update":"2026-03-21T12:55:39.069185208Z"} +2026/03/21 12:55:44 ───────────────────────────────────────────────── +2026/03/21 12:55:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:55:49 [log_collector] {"stage_name":"log_collector","events_processed":10635,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2127,"last_update":"2026-03-21T12:55:49.068174769Z"} +2026/03/21 12:55:49 [metric_collector] {"stage_name":"metric_collector","events_processed":5814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1162.8,"last_update":"2026-03-21T12:55:44.068947493Z"} +2026/03/21 12:55:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:55:44.077984036Z"} +2026/03/21 12:55:49 [detection_layer] {"stage_name":"detection_layer","events_processed":193,"events_dropped":0,"avg_latency_ms":16.60209548207944,"throughput_eps":0,"last_update":"2026-03-21T12:55:44.210282612Z"} +2026/03/21 12:55:49 [transform_engine] {"stage_name":"transform_engine","events_processed":193,"events_dropped":0,"avg_latency_ms":521.0091316060477,"throughput_eps":0,"last_update":"2026-03-21T12:55:44.210322688Z"} +2026/03/21 12:55:49 ───────────────────────────────────────────────── +2026/03/21 12:55:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:55:54 [log_collector] {"stage_name":"log_collector","events_processed":10635,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2127,"last_update":"2026-03-21T12:55:54.068160097Z"} +2026/03/21 12:55:54 [metric_collector] {"stage_name":"metric_collector","events_processed":5819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1163.8,"last_update":"2026-03-21T12:55:49.068649049Z"} +2026/03/21 12:55:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2330,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:55:49.079569341Z"} +2026/03/21 12:55:54 [detection_layer] {"stage_name":"detection_layer","events_processed":193,"events_dropped":0,"avg_latency_ms":16.60209548207944,"throughput_eps":0,"last_update":"2026-03-21T12:55:49.20992322Z"} +2026/03/21 12:55:54 [transform_engine] {"stage_name":"transform_engine","events_processed":194,"events_dropped":0,"avg_latency_ms":438.8834216848382,"throughput_eps":0,"last_update":"2026-03-21T12:55:49.320196465Z"} +2026/03/21 12:55:54 ───────────────────────────────────────────────── +2026/03/21 12:55:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:55:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:55:54.077826237Z"} +2026/03/21 12:55:59 [detection_layer] {"stage_name":"detection_layer","events_processed":194,"events_dropped":0,"avg_latency_ms":17.421622185663555,"throughput_eps":0,"last_update":"2026-03-21T12:55:54.210197741Z"} +2026/03/21 12:55:59 [transform_engine] {"stage_name":"transform_engine","events_processed":194,"events_dropped":0,"avg_latency_ms":438.8834216848382,"throughput_eps":0,"last_update":"2026-03-21T12:55:54.210213722Z"} +2026/03/21 12:55:59 [log_collector] {"stage_name":"log_collector","events_processed":10635,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2127,"last_update":"2026-03-21T12:55:59.068492752Z"} +2026/03/21 12:55:59 [metric_collector] {"stage_name":"metric_collector","events_processed":5824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1164.8,"last_update":"2026-03-21T12:55:54.068757703Z"} +2026/03/21 12:55:59 ───────────────────────────────────────────────── +2026/03/21 12:56:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:56:04 [metric_collector] {"stage_name":"metric_collector","events_processed":5829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1165.8,"last_update":"2026-03-21T12:55:59.069031093Z"} +2026/03/21 12:56:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:55:59.078370677Z"} +2026/03/21 12:56:04 [detection_layer] {"stage_name":"detection_layer","events_processed":194,"events_dropped":0,"avg_latency_ms":17.421622185663555,"throughput_eps":0,"last_update":"2026-03-21T12:55:59.21062239Z"} +2026/03/21 12:56:04 [transform_engine] {"stage_name":"transform_engine","events_processed":194,"events_dropped":0,"avg_latency_ms":438.8834216848382,"throughput_eps":0,"last_update":"2026-03-21T12:55:59.210630525Z"} +2026/03/21 12:56:04 [log_collector] {"stage_name":"log_collector","events_processed":10635,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2127,"last_update":"2026-03-21T12:55:59.068492752Z"} +2026/03/21 12:56:04 ───────────────────────────────────────────────── +2026/03/21 12:56:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:56:09 [log_collector] {"stage_name":"log_collector","events_processed":10635,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2127,"last_update":"2026-03-21T12:56:04.068072403Z"} +2026/03/21 12:56:09 [metric_collector] {"stage_name":"metric_collector","events_processed":5834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1166.8,"last_update":"2026-03-21T12:56:04.068583202Z"} +2026/03/21 12:56:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:56:04.077970046Z"} +2026/03/21 12:56:09 [detection_layer] {"stage_name":"detection_layer","events_processed":194,"events_dropped":0,"avg_latency_ms":17.421622185663555,"throughput_eps":0,"last_update":"2026-03-21T12:56:04.210220024Z"} +2026/03/21 12:56:09 [transform_engine] {"stage_name":"transform_engine","events_processed":194,"events_dropped":0,"avg_latency_ms":438.8834216848382,"throughput_eps":0,"last_update":"2026-03-21T12:56:04.209752209Z"} +2026/03/21 12:56:09 ───────────────────────────────────────────────── +2026/03/21 12:56:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:56:14 [detection_layer] {"stage_name":"detection_layer","events_processed":194,"events_dropped":0,"avg_latency_ms":17.421622185663555,"throughput_eps":0,"last_update":"2026-03-21T12:56:09.209866092Z"} +2026/03/21 12:56:14 [transform_engine] {"stage_name":"transform_engine","events_processed":194,"events_dropped":0,"avg_latency_ms":438.8834216848382,"throughput_eps":0,"last_update":"2026-03-21T12:56:09.209807359Z"} +2026/03/21 12:56:14 [log_collector] {"stage_name":"log_collector","events_processed":10635,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2127,"last_update":"2026-03-21T12:56:09.069100618Z"} +2026/03/21 12:56:14 [metric_collector] {"stage_name":"metric_collector","events_processed":5839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1167.8,"last_update":"2026-03-21T12:56:09.069476578Z"} +2026/03/21 12:56:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:56:09.078601721Z"} +2026/03/21 12:56:14 ───────────────────────────────────────────────── +2026/03/21 12:56:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:56:19 [transform_engine] {"stage_name":"transform_engine","events_processed":194,"events_dropped":0,"avg_latency_ms":438.8834216848382,"throughput_eps":0,"last_update":"2026-03-21T12:56:14.209747079Z"} +2026/03/21 12:56:19 [log_collector] {"stage_name":"log_collector","events_processed":10635,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2127,"last_update":"2026-03-21T12:56:14.068319839Z"} +2026/03/21 12:56:19 [metric_collector] {"stage_name":"metric_collector","events_processed":5844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1168.8,"last_update":"2026-03-21T12:56:14.068831359Z"} +2026/03/21 12:56:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:56:14.077507612Z"} +2026/03/21 12:56:19 [detection_layer] {"stage_name":"detection_layer","events_processed":194,"events_dropped":0,"avg_latency_ms":17.421622185663555,"throughput_eps":0,"last_update":"2026-03-21T12:56:14.210874048Z"} +2026/03/21 12:56:19 ───────────────────────────────────────────────── +2026/03/21 12:56:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:56:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2342,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:56:19.076963857Z"} +2026/03/21 12:56:24 [detection_layer] {"stage_name":"detection_layer","events_processed":194,"events_dropped":0,"avg_latency_ms":17.421622185663555,"throughput_eps":0,"last_update":"2026-03-21T12:56:19.210283162Z"} +2026/03/21 12:56:24 [transform_engine] {"stage_name":"transform_engine","events_processed":195,"events_dropped":0,"avg_latency_ms":364.47302374787057,"throughput_eps":0,"last_update":"2026-03-21T12:56:19.27708113Z"} +2026/03/21 12:56:24 [log_collector] {"stage_name":"log_collector","events_processed":10635,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2127,"last_update":"2026-03-21T12:56:19.068660529Z"} +2026/03/21 12:56:24 [metric_collector] {"stage_name":"metric_collector","events_processed":5849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1169.8,"last_update":"2026-03-21T12:56:19.069025648Z"} +2026/03/21 12:56:24 ───────────────────────────────────────────────── +2026/03/21 12:56:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:56:29 [transform_engine] {"stage_name":"transform_engine","events_processed":195,"events_dropped":0,"avg_latency_ms":364.47302374787057,"throughput_eps":0,"last_update":"2026-03-21T12:56:24.210486871Z"} +2026/03/21 12:56:29 [log_collector] {"stage_name":"log_collector","events_processed":10635,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2127,"last_update":"2026-03-21T12:56:24.068887381Z"} +2026/03/21 12:56:29 [metric_collector] {"stage_name":"metric_collector","events_processed":5854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1170.8,"last_update":"2026-03-21T12:56:24.06904793Z"} +2026/03/21 12:56:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:56:24.078160247Z"} +2026/03/21 12:56:29 [detection_layer] {"stage_name":"detection_layer","events_processed":195,"events_dropped":0,"avg_latency_ms":17.908544148530847,"throughput_eps":0,"last_update":"2026-03-21T12:56:24.210588515Z"} +2026/03/21 12:56:29 ───────────────────────────────────────────────── +Saved state: 16 clusters, 10636 messages, reason: none +2026/03/21 12:56:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:56:34 [log_collector] {"stage_name":"log_collector","events_processed":10635,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2127,"last_update":"2026-03-21T12:56:29.068447358Z"} +2026/03/21 12:56:34 [metric_collector] {"stage_name":"metric_collector","events_processed":5859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1171.8,"last_update":"2026-03-21T12:56:29.068796116Z"} +2026/03/21 12:56:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:56:29.077595274Z"} +2026/03/21 12:56:34 [detection_layer] {"stage_name":"detection_layer","events_processed":195,"events_dropped":0,"avg_latency_ms":17.908544148530847,"throughput_eps":0,"last_update":"2026-03-21T12:56:29.209990809Z"} +2026/03/21 12:56:34 [transform_engine] {"stage_name":"transform_engine","events_processed":195,"events_dropped":0,"avg_latency_ms":364.47302374787057,"throughput_eps":0,"last_update":"2026-03-21T12:56:29.209820622Z"} +2026/03/21 12:56:34 ───────────────────────────────────────────────── +2026/03/21 12:56:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:56:39 [detection_layer] {"stage_name":"detection_layer","events_processed":195,"events_dropped":0,"avg_latency_ms":17.908544148530847,"throughput_eps":0,"last_update":"2026-03-21T12:56:34.210928775Z"} +2026/03/21 12:56:39 [transform_engine] {"stage_name":"transform_engine","events_processed":195,"events_dropped":0,"avg_latency_ms":364.47302374787057,"throughput_eps":0,"last_update":"2026-03-21T12:56:34.209713587Z"} +2026/03/21 12:56:39 [log_collector] {"stage_name":"log_collector","events_processed":10646,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2129.2,"last_update":"2026-03-21T12:56:34.068209653Z"} +2026/03/21 12:56:39 [metric_collector] {"stage_name":"metric_collector","events_processed":5864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1172.8,"last_update":"2026-03-21T12:56:34.068381372Z"} +2026/03/21 12:56:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:56:34.074864743Z"} +2026/03/21 12:56:39 ───────────────────────────────────────────────── +2026/03/21 12:56:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:56:44 [metric_collector] {"stage_name":"metric_collector","events_processed":5869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1173.8,"last_update":"2026-03-21T12:56:39.069285074Z"} +2026/03/21 12:56:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2350,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:56:39.077788796Z"} +2026/03/21 12:56:44 [detection_layer] {"stage_name":"detection_layer","events_processed":195,"events_dropped":0,"avg_latency_ms":17.908544148530847,"throughput_eps":0,"last_update":"2026-03-21T12:56:39.210029583Z"} +2026/03/21 12:56:44 [transform_engine] {"stage_name":"transform_engine","events_processed":195,"events_dropped":0,"avg_latency_ms":364.47302374787057,"throughput_eps":0,"last_update":"2026-03-21T12:56:39.210050052Z"} +2026/03/21 12:56:44 [log_collector] {"stage_name":"log_collector","events_processed":10649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2129.8,"last_update":"2026-03-21T12:56:39.069020938Z"} +2026/03/21 12:56:44 ───────────────────────────────────────────────── +2026/03/21 12:56:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:56:49 [detection_layer] {"stage_name":"detection_layer","events_processed":195,"events_dropped":0,"avg_latency_ms":17.908544148530847,"throughput_eps":0,"last_update":"2026-03-21T12:56:44.210335713Z"} +2026/03/21 12:56:49 [transform_engine] {"stage_name":"transform_engine","events_processed":195,"events_dropped":0,"avg_latency_ms":364.47302374787057,"throughput_eps":0,"last_update":"2026-03-21T12:56:44.210303481Z"} +2026/03/21 12:56:49 [log_collector] {"stage_name":"log_collector","events_processed":10649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2129.8,"last_update":"2026-03-21T12:56:44.068475929Z"} +2026/03/21 12:56:49 [metric_collector] {"stage_name":"metric_collector","events_processed":5874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1174.8,"last_update":"2026-03-21T12:56:44.0686381Z"} +2026/03/21 12:56:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:56:44.077058603Z"} +2026/03/21 12:56:49 ───────────────────────────────────────────────── +2026/03/21 12:56:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:56:54 [log_collector] {"stage_name":"log_collector","events_processed":10649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2129.8,"last_update":"2026-03-21T12:56:49.068822649Z"} +2026/03/21 12:56:54 [metric_collector] {"stage_name":"metric_collector","events_processed":5879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1175.8,"last_update":"2026-03-21T12:56:49.068999378Z"} +2026/03/21 12:56:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:56:49.079736148Z"} +2026/03/21 12:56:54 [detection_layer] {"stage_name":"detection_layer","events_processed":195,"events_dropped":0,"avg_latency_ms":17.908544148530847,"throughput_eps":0,"last_update":"2026-03-21T12:56:49.2102327Z"} +2026/03/21 12:56:54 [transform_engine] {"stage_name":"transform_engine","events_processed":196,"events_dropped":0,"avg_latency_ms":316.68615579829645,"throughput_eps":0,"last_update":"2026-03-21T12:56:49.335682184Z"} +2026/03/21 12:56:54 ───────────────────────────────────────────────── +2026/03/21 12:56:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:56:59 [detection_layer] {"stage_name":"detection_layer","events_processed":196,"events_dropped":0,"avg_latency_ms":18.229854918824678,"throughput_eps":0,"last_update":"2026-03-21T12:56:54.21036946Z"} +2026/03/21 12:56:59 [transform_engine] {"stage_name":"transform_engine","events_processed":196,"events_dropped":0,"avg_latency_ms":316.68615579829645,"throughput_eps":0,"last_update":"2026-03-21T12:56:54.210381803Z"} +2026/03/21 12:56:59 [log_collector] {"stage_name":"log_collector","events_processed":10649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2129.8,"last_update":"2026-03-21T12:56:54.069046806Z"} +2026/03/21 12:56:59 [metric_collector] {"stage_name":"metric_collector","events_processed":5884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1176.8,"last_update":"2026-03-21T12:56:54.069167698Z"} +2026/03/21 12:56:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:56:54.078109089Z"} +2026/03/21 12:56:59 ───────────────────────────────────────────────── +2026/03/21 12:57:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:57:04 [log_collector] {"stage_name":"log_collector","events_processed":10649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2129.8,"last_update":"2026-03-21T12:56:59.069033601Z"} +2026/03/21 12:57:04 [metric_collector] {"stage_name":"metric_collector","events_processed":5889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1177.8,"last_update":"2026-03-21T12:56:59.06952872Z"} +2026/03/21 12:57:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:56:59.078805693Z"} +2026/03/21 12:57:04 [detection_layer] {"stage_name":"detection_layer","events_processed":196,"events_dropped":0,"avg_latency_ms":18.229854918824678,"throughput_eps":0,"last_update":"2026-03-21T12:56:59.210053473Z"} +2026/03/21 12:57:04 [transform_engine] {"stage_name":"transform_engine","events_processed":196,"events_dropped":0,"avg_latency_ms":316.68615579829645,"throughput_eps":0,"last_update":"2026-03-21T12:56:59.210065487Z"} +2026/03/21 12:57:04 ───────────────────────────────────────────────── +2026/03/21 12:57:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:57:09 [log_collector] {"stage_name":"log_collector","events_processed":10649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2129.8,"last_update":"2026-03-21T12:57:04.068069098Z"} +2026/03/21 12:57:09 [metric_collector] {"stage_name":"metric_collector","events_processed":5894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1178.8,"last_update":"2026-03-21T12:57:04.068610074Z"} +2026/03/21 12:57:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2360,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:57:04.07885914Z"} +2026/03/21 12:57:09 [detection_layer] {"stage_name":"detection_layer","events_processed":196,"events_dropped":0,"avg_latency_ms":18.229854918824678,"throughput_eps":0,"last_update":"2026-03-21T12:57:04.210134602Z"} +2026/03/21 12:57:09 [transform_engine] {"stage_name":"transform_engine","events_processed":196,"events_dropped":0,"avg_latency_ms":316.68615579829645,"throughput_eps":0,"last_update":"2026-03-21T12:57:04.210147577Z"} +2026/03/21 12:57:09 ───────────────────────────────────────────────── +2026/03/21 12:57:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:57:14 [metric_collector] {"stage_name":"metric_collector","events_processed":5899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1179.8,"last_update":"2026-03-21T12:57:09.069153914Z"} +2026/03/21 12:57:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:57:09.078954029Z"} +2026/03/21 12:57:14 [detection_layer] {"stage_name":"detection_layer","events_processed":196,"events_dropped":0,"avg_latency_ms":18.229854918824678,"throughput_eps":0,"last_update":"2026-03-21T12:57:09.210257385Z"} +2026/03/21 12:57:14 [transform_engine] {"stage_name":"transform_engine","events_processed":196,"events_dropped":0,"avg_latency_ms":316.68615579829645,"throughput_eps":0,"last_update":"2026-03-21T12:57:09.210267834Z"} +2026/03/21 12:57:14 [log_collector] {"stage_name":"log_collector","events_processed":10649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2129.8,"last_update":"2026-03-21T12:57:09.069092516Z"} +2026/03/21 12:57:14 ───────────────────────────────────────────────── +2026/03/21 12:57:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:57:19 [transform_engine] {"stage_name":"transform_engine","events_processed":196,"events_dropped":0,"avg_latency_ms":316.68615579829645,"throughput_eps":0,"last_update":"2026-03-21T12:57:14.209909918Z"} +2026/03/21 12:57:19 [log_collector] {"stage_name":"log_collector","events_processed":10649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2129.8,"last_update":"2026-03-21T12:57:14.068529417Z"} +2026/03/21 12:57:19 [metric_collector] {"stage_name":"metric_collector","events_processed":5904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1180.8,"last_update":"2026-03-21T12:57:14.068914795Z"} +2026/03/21 12:57:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:57:14.077637837Z"} +2026/03/21 12:57:19 [detection_layer] {"stage_name":"detection_layer","events_processed":196,"events_dropped":0,"avg_latency_ms":18.229854918824678,"throughput_eps":0,"last_update":"2026-03-21T12:57:14.209889399Z"} +2026/03/21 12:57:19 ───────────────────────────────────────────────── +2026/03/21 12:57:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:57:24 [log_collector] {"stage_name":"log_collector","events_processed":10649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2129.8,"last_update":"2026-03-21T12:57:19.06878484Z"} +2026/03/21 12:57:24 [metric_collector] {"stage_name":"metric_collector","events_processed":5909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1181.8,"last_update":"2026-03-21T12:57:19.069458001Z"} +2026/03/21 12:57:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:57:19.079089062Z"} +2026/03/21 12:57:24 [detection_layer] {"stage_name":"detection_layer","events_processed":196,"events_dropped":0,"avg_latency_ms":18.229854918824678,"throughput_eps":0,"last_update":"2026-03-21T12:57:19.210484594Z"} +2026/03/21 12:57:24 [transform_engine] {"stage_name":"transform_engine","events_processed":197,"events_dropped":0,"avg_latency_ms":269.5508526386372,"throughput_eps":0,"last_update":"2026-03-21T12:57:19.291517067Z"} +2026/03/21 12:57:24 ───────────────────────────────────────────────── +2026/03/21 12:57:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:57:29 [log_collector] {"stage_name":"log_collector","events_processed":10649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2129.8,"last_update":"2026-03-21T12:57:24.068342001Z"} +2026/03/21 12:57:29 [metric_collector] {"stage_name":"metric_collector","events_processed":5914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1182.8,"last_update":"2026-03-21T12:57:24.069100294Z"} +2026/03/21 12:57:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:57:24.078264461Z"} +2026/03/21 12:57:29 [detection_layer] {"stage_name":"detection_layer","events_processed":197,"events_dropped":0,"avg_latency_ms":18.831559735059745,"throughput_eps":0,"last_update":"2026-03-21T12:57:24.210500703Z"} +2026/03/21 12:57:29 [transform_engine] {"stage_name":"transform_engine","events_processed":197,"events_dropped":0,"avg_latency_ms":269.5508526386372,"throughput_eps":0,"last_update":"2026-03-21T12:57:24.210476296Z"} +2026/03/21 12:57:29 ───────────────────────────────────────────────── +2026/03/21 12:57:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:57:34 [detection_layer] {"stage_name":"detection_layer","events_processed":197,"events_dropped":0,"avg_latency_ms":18.831559735059745,"throughput_eps":0,"last_update":"2026-03-21T12:57:29.210214424Z"} +2026/03/21 12:57:34 [transform_engine] {"stage_name":"transform_engine","events_processed":197,"events_dropped":0,"avg_latency_ms":269.5508526386372,"throughput_eps":0,"last_update":"2026-03-21T12:57:29.210329715Z"} +2026/03/21 12:57:34 [log_collector] {"stage_name":"log_collector","events_processed":10649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2129.8,"last_update":"2026-03-21T12:57:29.068957492Z"} +2026/03/21 12:57:34 [metric_collector] {"stage_name":"metric_collector","events_processed":5919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1183.8,"last_update":"2026-03-21T12:57:29.068950639Z"} +2026/03/21 12:57:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:57:29.078762296Z"} +2026/03/21 12:57:34 ───────────────────────────────────────────────── +Saved state: 16 clusters, 10650 messages, reason: none +2026/03/21 12:57:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:57:39 [log_collector] {"stage_name":"log_collector","events_processed":10649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2129.8,"last_update":"2026-03-21T12:57:34.068261175Z"} +2026/03/21 12:57:39 [metric_collector] {"stage_name":"metric_collector","events_processed":5924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1184.8,"last_update":"2026-03-21T12:57:34.068723221Z"} +2026/03/21 12:57:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:57:34.07809272Z"} +2026/03/21 12:57:39 [detection_layer] {"stage_name":"detection_layer","events_processed":197,"events_dropped":0,"avg_latency_ms":18.831559735059745,"throughput_eps":0,"last_update":"2026-03-21T12:57:34.210468698Z"} +2026/03/21 12:57:39 [transform_engine] {"stage_name":"transform_engine","events_processed":197,"events_dropped":0,"avg_latency_ms":269.5508526386372,"throughput_eps":0,"last_update":"2026-03-21T12:57:34.210317728Z"} +2026/03/21 12:57:39 ───────────────────────────────────────────────── +2026/03/21 12:57:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:57:44 [log_collector] {"stage_name":"log_collector","events_processed":10651,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2130.2,"last_update":"2026-03-21T12:57:39.068097813Z"} +2026/03/21 12:57:44 [metric_collector] {"stage_name":"metric_collector","events_processed":5929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1185.8,"last_update":"2026-03-21T12:57:39.068366448Z"} +2026/03/21 12:57:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:57:39.077415244Z"} +2026/03/21 12:57:44 [detection_layer] {"stage_name":"detection_layer","events_processed":197,"events_dropped":0,"avg_latency_ms":18.831559735059745,"throughput_eps":0,"last_update":"2026-03-21T12:57:39.213379424Z"} +2026/03/21 12:57:44 [transform_engine] {"stage_name":"transform_engine","events_processed":197,"events_dropped":0,"avg_latency_ms":269.5508526386372,"throughput_eps":0,"last_update":"2026-03-21T12:57:39.210460362Z"} +2026/03/21 12:57:44 ───────────────────────────────────────────────── +2026/03/21 12:57:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:57:49 [log_collector] {"stage_name":"log_collector","events_processed":10654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2130.8,"last_update":"2026-03-21T12:57:44.068984539Z"} +2026/03/21 12:57:49 [metric_collector] {"stage_name":"metric_collector","events_processed":5934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1186.8,"last_update":"2026-03-21T12:57:44.069228917Z"} +2026/03/21 12:57:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:57:44.075500373Z"} +2026/03/21 12:57:49 [detection_layer] {"stage_name":"detection_layer","events_processed":197,"events_dropped":0,"avg_latency_ms":18.831559735059745,"throughput_eps":0,"last_update":"2026-03-21T12:57:44.211382295Z"} +2026/03/21 12:57:49 [transform_engine] {"stage_name":"transform_engine","events_processed":197,"events_dropped":0,"avg_latency_ms":269.5508526386372,"throughput_eps":0,"last_update":"2026-03-21T12:57:44.211374961Z"} +2026/03/21 12:57:49 ───────────────────────────────────────────────── +2026/03/21 12:57:52 [ANOMALY] time=2026-03-21T12:57:51Z score=0.8780 method=SEAD details=MAD!:w=0.35,s=0.96 RRCF-fast!:w=0.17,s=0.92 RRCF-mid!:w=0.14,s=0.92 RRCF-slow:w=0.13,s=0.90 COPOD!:w=0.21,s=0.66 +2026/03/21 12:57:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:57:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:57:49.081272282Z"} +2026/03/21 12:57:54 [detection_layer] {"stage_name":"detection_layer","events_processed":197,"events_dropped":0,"avg_latency_ms":18.831559735059745,"throughput_eps":0,"last_update":"2026-03-21T12:57:49.210475509Z"} +2026/03/21 12:57:54 [transform_engine] {"stage_name":"transform_engine","events_processed":197,"events_dropped":0,"avg_latency_ms":269.5508526386372,"throughput_eps":0,"last_update":"2026-03-21T12:57:49.210444589Z"} +2026/03/21 12:57:54 [log_collector] {"stage_name":"log_collector","events_processed":10654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2130.8,"last_update":"2026-03-21T12:57:49.068092902Z"} +2026/03/21 12:57:54 [metric_collector] {"stage_name":"metric_collector","events_processed":5939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1187.8,"last_update":"2026-03-21T12:57:49.068564084Z"} +2026/03/21 12:57:54 ───────────────────────────────────────────────── +2026/03/21 12:57:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:57:59 [transform_engine] {"stage_name":"transform_engine","events_processed":198,"events_dropped":0,"avg_latency_ms":851.8887463109098,"throughput_eps":0,"last_update":"2026-03-21T12:57:54.210279358Z"} +2026/03/21 12:57:59 [log_collector] {"stage_name":"log_collector","events_processed":10654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2130.8,"last_update":"2026-03-21T12:57:54.068104561Z"} +2026/03/21 12:57:59 [metric_collector] {"stage_name":"metric_collector","events_processed":5944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1188.8,"last_update":"2026-03-21T12:57:54.068524856Z"} +2026/03/21 12:57:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2380,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:57:54.075656589Z"} +2026/03/21 12:57:59 [detection_layer] {"stage_name":"detection_layer","events_processed":198,"events_dropped":0,"avg_latency_ms":17.385506988047798,"throughput_eps":0,"last_update":"2026-03-21T12:57:54.210300478Z"} +2026/03/21 12:57:59 ───────────────────────────────────────────────── +2026/03/21 12:58:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:58:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:57:59.0775452Z"} +2026/03/21 12:58:04 [detection_layer] {"stage_name":"detection_layer","events_processed":198,"events_dropped":0,"avg_latency_ms":17.385506988047798,"throughput_eps":0,"last_update":"2026-03-21T12:57:59.210748659Z"} +2026/03/21 12:58:04 [transform_engine] {"stage_name":"transform_engine","events_processed":198,"events_dropped":0,"avg_latency_ms":851.8887463109098,"throughput_eps":0,"last_update":"2026-03-21T12:57:59.209659973Z"} +2026/03/21 12:58:04 [log_collector] {"stage_name":"log_collector","events_processed":10654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2130.8,"last_update":"2026-03-21T12:57:59.068119313Z"} +2026/03/21 12:58:04 [metric_collector] {"stage_name":"metric_collector","events_processed":5949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1189.8,"last_update":"2026-03-21T12:57:59.069269486Z"} +2026/03/21 12:58:04 ───────────────────────────────────────────────── +2026/03/21 12:58:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:58:09 [log_collector] {"stage_name":"log_collector","events_processed":10654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2130.8,"last_update":"2026-03-21T12:58:04.068470314Z"} +2026/03/21 12:58:09 [metric_collector] {"stage_name":"metric_collector","events_processed":5954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1190.8,"last_update":"2026-03-21T12:58:04.068722788Z"} +2026/03/21 12:58:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:58:04.075085628Z"} +2026/03/21 12:58:09 [detection_layer] {"stage_name":"detection_layer","events_processed":198,"events_dropped":0,"avg_latency_ms":17.385506988047798,"throughput_eps":0,"last_update":"2026-03-21T12:58:04.210277416Z"} +2026/03/21 12:58:09 [transform_engine] {"stage_name":"transform_engine","events_processed":198,"events_dropped":0,"avg_latency_ms":851.8887463109098,"throughput_eps":0,"last_update":"2026-03-21T12:58:04.210292284Z"} +2026/03/21 12:58:09 ───────────────────────────────────────────────── +2026/03/21 12:58:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:58:14 [log_collector] {"stage_name":"log_collector","events_processed":10654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2130.8,"last_update":"2026-03-21T12:58:09.068944197Z"} +2026/03/21 12:58:14 [metric_collector] {"stage_name":"metric_collector","events_processed":5959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1191.8,"last_update":"2026-03-21T12:58:09.06912347Z"} +2026/03/21 12:58:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:58:09.076605054Z"} +2026/03/21 12:58:14 [detection_layer] {"stage_name":"detection_layer","events_processed":198,"events_dropped":0,"avg_latency_ms":17.385506988047798,"throughput_eps":0,"last_update":"2026-03-21T12:58:09.210794189Z"} +2026/03/21 12:58:14 [transform_engine] {"stage_name":"transform_engine","events_processed":198,"events_dropped":0,"avg_latency_ms":851.8887463109098,"throughput_eps":0,"last_update":"2026-03-21T12:58:09.209709412Z"} +2026/03/21 12:58:14 ───────────────────────────────────────────────── +2026/03/21 12:58:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:58:19 [log_collector] {"stage_name":"log_collector","events_processed":10654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2130.8,"last_update":"2026-03-21T12:58:14.068472136Z"} +2026/03/21 12:58:19 [metric_collector] {"stage_name":"metric_collector","events_processed":5963,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1192.6,"last_update":"2026-03-21T12:58:14.068476595Z"} +2026/03/21 12:58:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2388,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:58:14.075564624Z"} +2026/03/21 12:58:19 [detection_layer] {"stage_name":"detection_layer","events_processed":198,"events_dropped":0,"avg_latency_ms":17.385506988047798,"throughput_eps":0,"last_update":"2026-03-21T12:58:14.210023747Z"} +2026/03/21 12:58:19 [transform_engine] {"stage_name":"transform_engine","events_processed":198,"events_dropped":0,"avg_latency_ms":851.8887463109098,"throughput_eps":0,"last_update":"2026-03-21T12:58:14.209732008Z"} +2026/03/21 12:58:19 ───────────────────────────────────────────────── +2026/03/21 12:58:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:58:24 [log_collector] {"stage_name":"log_collector","events_processed":10654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2130.8,"last_update":"2026-03-21T12:58:19.068650636Z"} +2026/03/21 12:58:24 [metric_collector] {"stage_name":"metric_collector","events_processed":5969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1193.8,"last_update":"2026-03-21T12:58:19.068939961Z"} +2026/03/21 12:58:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2390,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:58:19.076321462Z"} +2026/03/21 12:58:24 [detection_layer] {"stage_name":"detection_layer","events_processed":198,"events_dropped":0,"avg_latency_ms":17.385506988047798,"throughput_eps":0,"last_update":"2026-03-21T12:58:19.210562326Z"} +2026/03/21 12:58:24 [transform_engine] {"stage_name":"transform_engine","events_processed":199,"events_dropped":0,"avg_latency_ms":1001.0963620487279,"throughput_eps":0,"last_update":"2026-03-21T12:58:20.808507436Z"} +2026/03/21 12:58:24 ───────────────────────────────────────────────── +2026/03/21 12:58:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:58:29 [log_collector] {"stage_name":"log_collector","events_processed":10663,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2132.6,"last_update":"2026-03-21T12:58:24.068594766Z"} +2026/03/21 12:58:29 [metric_collector] {"stage_name":"metric_collector","events_processed":5974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1194.8,"last_update":"2026-03-21T12:58:24.068794288Z"} +2026/03/21 12:58:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:58:24.076326438Z"} +2026/03/21 12:58:29 [detection_layer] {"stage_name":"detection_layer","events_processed":199,"events_dropped":0,"avg_latency_ms":17.06444159043824,"throughput_eps":0,"last_update":"2026-03-21T12:58:24.210638518Z"} +2026/03/21 12:58:29 [transform_engine] {"stage_name":"transform_engine","events_processed":199,"events_dropped":0,"avg_latency_ms":1001.0963620487279,"throughput_eps":0,"last_update":"2026-03-21T12:58:24.210668946Z"} +2026/03/21 12:58:29 ───────────────────────────────────────────────── +2026/03/21 12:58:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:58:34 [transform_engine] {"stage_name":"transform_engine","events_processed":199,"events_dropped":0,"avg_latency_ms":1001.0963620487279,"throughput_eps":0,"last_update":"2026-03-21T12:58:29.210625637Z"} +2026/03/21 12:58:34 [log_collector] {"stage_name":"log_collector","events_processed":10665,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2133,"last_update":"2026-03-21T12:58:29.069000447Z"} +2026/03/21 12:58:34 [metric_collector] {"stage_name":"metric_collector","events_processed":5979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1195.8,"last_update":"2026-03-21T12:58:29.069235758Z"} +2026/03/21 12:58:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:58:29.077341667Z"} +2026/03/21 12:58:34 [detection_layer] {"stage_name":"detection_layer","events_processed":199,"events_dropped":0,"avg_latency_ms":17.06444159043824,"throughput_eps":0,"last_update":"2026-03-21T12:58:29.210594357Z"} +2026/03/21 12:58:34 ───────────────────────────────────────────────── +2026/03/21 12:58:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:58:39 [log_collector] {"stage_name":"log_collector","events_processed":10913,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2182.6,"last_update":"2026-03-21T12:58:34.06889149Z"} +2026/03/21 12:58:39 [metric_collector] {"stage_name":"metric_collector","events_processed":5984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1196.8,"last_update":"2026-03-21T12:58:34.069087144Z"} +2026/03/21 12:58:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:58:34.075144879Z"} +2026/03/21 12:58:39 [detection_layer] {"stage_name":"detection_layer","events_processed":199,"events_dropped":0,"avg_latency_ms":17.06444159043824,"throughput_eps":0,"last_update":"2026-03-21T12:58:34.209915025Z"} +2026/03/21 12:58:39 [transform_engine] {"stage_name":"transform_engine","events_processed":199,"events_dropped":0,"avg_latency_ms":1001.0963620487279,"throughput_eps":0,"last_update":"2026-03-21T12:58:34.209955273Z"} +2026/03/21 12:58:39 ───────────────────────────────────────────────── +2026/03/21 12:58:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:58:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:58:39.079366836Z"} +2026/03/21 12:58:44 [detection_layer] {"stage_name":"detection_layer","events_processed":199,"events_dropped":0,"avg_latency_ms":17.06444159043824,"throughput_eps":0,"last_update":"2026-03-21T12:58:39.210827601Z"} +2026/03/21 12:58:44 [transform_engine] {"stage_name":"transform_engine","events_processed":199,"events_dropped":0,"avg_latency_ms":1001.0963620487279,"throughput_eps":0,"last_update":"2026-03-21T12:58:39.210723873Z"} +2026/03/21 12:58:44 [log_collector] {"stage_name":"log_collector","events_processed":11013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2202.6,"last_update":"2026-03-21T12:58:39.06882013Z"} +2026/03/21 12:58:44 [metric_collector] {"stage_name":"metric_collector","events_processed":5989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1197.8,"last_update":"2026-03-21T12:58:39.069105598Z"} +2026/03/21 12:58:44 ───────────────────────────────────────────────── +2026/03/21 12:58:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:58:49 [log_collector] {"stage_name":"log_collector","events_processed":11013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2202.6,"last_update":"2026-03-21T12:58:44.068891623Z"} +2026/03/21 12:58:49 [metric_collector] {"stage_name":"metric_collector","events_processed":5994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1198.8,"last_update":"2026-03-21T12:58:44.069100814Z"} +2026/03/21 12:58:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2400,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:58:44.078033176Z"} +2026/03/21 12:58:49 [detection_layer] {"stage_name":"detection_layer","events_processed":199,"events_dropped":0,"avg_latency_ms":17.06444159043824,"throughput_eps":0,"last_update":"2026-03-21T12:58:44.210418934Z"} +2026/03/21 12:58:49 [transform_engine] {"stage_name":"transform_engine","events_processed":199,"events_dropped":0,"avg_latency_ms":1001.0963620487279,"throughput_eps":0,"last_update":"2026-03-21T12:58:44.210283373Z"} +2026/03/21 12:58:49 ───────────────────────────────────────────────── +Saved state: 16 clusters, 11014 messages, reason: none +2026/03/21 12:58:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:58:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2402,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:58:49.077567967Z"} +2026/03/21 12:58:54 [detection_layer] {"stage_name":"detection_layer","events_processed":199,"events_dropped":0,"avg_latency_ms":17.06444159043824,"throughput_eps":0,"last_update":"2026-03-21T12:58:49.210843309Z"} +2026/03/21 12:58:54 [transform_engine] {"stage_name":"transform_engine","events_processed":199,"events_dropped":0,"avg_latency_ms":1001.0963620487279,"throughput_eps":0,"last_update":"2026-03-21T12:58:49.209698896Z"} +2026/03/21 12:58:54 [log_collector] {"stage_name":"log_collector","events_processed":11013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2202.6,"last_update":"2026-03-21T12:58:49.068666885Z"} +2026/03/21 12:58:54 [metric_collector] {"stage_name":"metric_collector","events_processed":6004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1200.8,"last_update":"2026-03-21T12:58:54.068373334Z"} +2026/03/21 12:58:54 ───────────────────────────────────────────────── +2026/03/21 12:58:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:58:59 [log_collector] {"stage_name":"log_collector","events_processed":11016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2203.2,"last_update":"2026-03-21T12:58:54.068390307Z"} +2026/03/21 12:58:59 [metric_collector] {"stage_name":"metric_collector","events_processed":6004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1200.8,"last_update":"2026-03-21T12:58:54.068373334Z"} +2026/03/21 12:58:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:58:54.075253304Z"} +2026/03/21 12:58:59 [detection_layer] {"stage_name":"detection_layer","events_processed":200,"events_dropped":0,"avg_latency_ms":17.557642072350593,"throughput_eps":0,"last_update":"2026-03-21T12:58:54.210511744Z"} +2026/03/21 12:58:59 [transform_engine] {"stage_name":"transform_engine","events_processed":200,"events_dropped":0,"avg_latency_ms":824.0801328389824,"throughput_eps":0,"last_update":"2026-03-21T12:58:54.210536391Z"} +2026/03/21 12:58:59 ───────────────────────────────────────────────── +2026/03/21 12:59:04 ── Pipeline Health ────────────────────────────── +2026/03/21 12:59:04 [log_collector] {"stage_name":"log_collector","events_processed":11016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2203.2,"last_update":"2026-03-21T12:58:59.068662999Z"} +2026/03/21 12:59:04 [metric_collector] {"stage_name":"metric_collector","events_processed":6009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1201.8,"last_update":"2026-03-21T12:58:59.068876698Z"} +2026/03/21 12:59:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:58:59.078787415Z"} +2026/03/21 12:59:04 [detection_layer] {"stage_name":"detection_layer","events_processed":200,"events_dropped":0,"avg_latency_ms":17.557642072350593,"throughput_eps":0,"last_update":"2026-03-21T12:58:59.210005012Z"} +2026/03/21 12:59:04 [transform_engine] {"stage_name":"transform_engine","events_processed":200,"events_dropped":0,"avg_latency_ms":824.0801328389824,"throughput_eps":0,"last_update":"2026-03-21T12:58:59.209981648Z"} +2026/03/21 12:59:04 ───────────────────────────────────────────────── +2026/03/21 12:59:09 ── Pipeline Health ────────────────────────────── +2026/03/21 12:59:09 [log_collector] {"stage_name":"log_collector","events_processed":11026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2205.2,"last_update":"2026-03-21T12:59:04.068751629Z"} +2026/03/21 12:59:09 [metric_collector] {"stage_name":"metric_collector","events_processed":6014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1202.8,"last_update":"2026-03-21T12:59:04.069441631Z"} +2026/03/21 12:59:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2408,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:59:04.077377012Z"} +2026/03/21 12:59:09 [detection_layer] {"stage_name":"detection_layer","events_processed":200,"events_dropped":0,"avg_latency_ms":17.557642072350593,"throughput_eps":0,"last_update":"2026-03-21T12:59:04.210713759Z"} +2026/03/21 12:59:09 [transform_engine] {"stage_name":"transform_engine","events_processed":200,"events_dropped":0,"avg_latency_ms":824.0801328389824,"throughput_eps":0,"last_update":"2026-03-21T12:59:04.210820984Z"} +2026/03/21 12:59:09 ───────────────────────────────────────────────── +2026/03/21 12:59:14 ── Pipeline Health ────────────────────────────── +2026/03/21 12:59:14 [transform_engine] {"stage_name":"transform_engine","events_processed":200,"events_dropped":0,"avg_latency_ms":824.0801328389824,"throughput_eps":0,"last_update":"2026-03-21T12:59:09.210460171Z"} +2026/03/21 12:59:14 [log_collector] {"stage_name":"log_collector","events_processed":11033,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2206.6,"last_update":"2026-03-21T12:59:09.068621457Z"} +2026/03/21 12:59:14 [metric_collector] {"stage_name":"metric_collector","events_processed":6019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1203.8,"last_update":"2026-03-21T12:59:09.068906744Z"} +2026/03/21 12:59:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:59:09.080386646Z"} +2026/03/21 12:59:14 [detection_layer] {"stage_name":"detection_layer","events_processed":200,"events_dropped":0,"avg_latency_ms":17.557642072350593,"throughput_eps":0,"last_update":"2026-03-21T12:59:09.210445142Z"} +2026/03/21 12:59:14 ───────────────────────────────────────────────── +2026/03/21 12:59:19 ── Pipeline Health ────────────────────────────── +2026/03/21 12:59:19 [transform_engine] {"stage_name":"transform_engine","events_processed":200,"events_dropped":0,"avg_latency_ms":824.0801328389824,"throughput_eps":0,"last_update":"2026-03-21T12:59:14.209799922Z"} +2026/03/21 12:59:19 [log_collector] {"stage_name":"log_collector","events_processed":11043,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2208.6,"last_update":"2026-03-21T12:59:14.068852827Z"} +2026/03/21 12:59:19 [metric_collector] {"stage_name":"metric_collector","events_processed":6024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1204.8,"last_update":"2026-03-21T12:59:14.069455521Z"} +2026/03/21 12:59:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:59:14.077620282Z"} +2026/03/21 12:59:19 [detection_layer] {"stage_name":"detection_layer","events_processed":200,"events_dropped":0,"avg_latency_ms":17.557642072350593,"throughput_eps":0,"last_update":"2026-03-21T12:59:14.209859646Z"} +2026/03/21 12:59:19 ───────────────────────────────────────────────── +2026/03/21 12:59:24 ── Pipeline Health ────────────────────────────── +2026/03/21 12:59:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:59:19.079021141Z"} +2026/03/21 12:59:24 [detection_layer] {"stage_name":"detection_layer","events_processed":200,"events_dropped":0,"avg_latency_ms":17.557642072350593,"throughput_eps":0,"last_update":"2026-03-21T12:59:19.21040182Z"} +2026/03/21 12:59:24 [transform_engine] {"stage_name":"transform_engine","events_processed":201,"events_dropped":0,"avg_latency_ms":681.6836796711859,"throughput_eps":0,"last_update":"2026-03-21T12:59:19.322521499Z"} +2026/03/21 12:59:24 [log_collector] {"stage_name":"log_collector","events_processed":11043,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2208.6,"last_update":"2026-03-21T12:59:19.068707374Z"} +2026/03/21 12:59:24 [metric_collector] {"stage_name":"metric_collector","events_processed":6029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1205.8,"last_update":"2026-03-21T12:59:19.068984995Z"} +2026/03/21 12:59:24 ───────────────────────────────────────────────── +2026/03/21 12:59:29 ── Pipeline Health ────────────────────────────── +2026/03/21 12:59:29 [log_collector] {"stage_name":"log_collector","events_processed":11043,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2208.6,"last_update":"2026-03-21T12:59:24.068831205Z"} +2026/03/21 12:59:29 [metric_collector] {"stage_name":"metric_collector","events_processed":6034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1206.8,"last_update":"2026-03-21T12:59:24.069486411Z"} +2026/03/21 12:59:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:59:24.078472085Z"} +2026/03/21 12:59:29 [detection_layer] {"stage_name":"detection_layer","events_processed":201,"events_dropped":0,"avg_latency_ms":17.273500257880475,"throughput_eps":0,"last_update":"2026-03-21T12:59:24.210939294Z"} +2026/03/21 12:59:29 [transform_engine] {"stage_name":"transform_engine","events_processed":201,"events_dropped":0,"avg_latency_ms":681.6836796711859,"throughput_eps":0,"last_update":"2026-03-21T12:59:24.209707033Z"} +2026/03/21 12:59:29 ───────────────────────────────────────────────── +2026/03/21 12:59:34 ── Pipeline Health ────────────────────────────── +2026/03/21 12:59:34 [log_collector] {"stage_name":"log_collector","events_processed":11043,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2208.6,"last_update":"2026-03-21T12:59:29.068623222Z"} +2026/03/21 12:59:34 [metric_collector] {"stage_name":"metric_collector","events_processed":6039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1207.8,"last_update":"2026-03-21T12:59:29.06933763Z"} +2026/03/21 12:59:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:59:29.077598525Z"} +2026/03/21 12:59:34 [detection_layer] {"stage_name":"detection_layer","events_processed":201,"events_dropped":0,"avg_latency_ms":17.273500257880475,"throughput_eps":0,"last_update":"2026-03-21T12:59:29.209902531Z"} +2026/03/21 12:59:34 [transform_engine] {"stage_name":"transform_engine","events_processed":201,"events_dropped":0,"avg_latency_ms":681.6836796711859,"throughput_eps":0,"last_update":"2026-03-21T12:59:29.209725813Z"} +2026/03/21 12:59:34 ───────────────────────────────────────────────── +2026/03/21 12:59:39 ── Pipeline Health ────────────────────────────── +2026/03/21 12:59:39 [detection_layer] {"stage_name":"detection_layer","events_processed":201,"events_dropped":0,"avg_latency_ms":17.273500257880475,"throughput_eps":0,"last_update":"2026-03-21T12:59:34.210513134Z"} +2026/03/21 12:59:39 [transform_engine] {"stage_name":"transform_engine","events_processed":201,"events_dropped":0,"avg_latency_ms":681.6836796711859,"throughput_eps":0,"last_update":"2026-03-21T12:59:34.210407783Z"} +2026/03/21 12:59:39 [log_collector] {"stage_name":"log_collector","events_processed":11043,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2208.6,"last_update":"2026-03-21T12:59:34.06871394Z"} +2026/03/21 12:59:39 [metric_collector] {"stage_name":"metric_collector","events_processed":6044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1208.8,"last_update":"2026-03-21T12:59:34.068972054Z"} +2026/03/21 12:59:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2420,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:59:34.07719633Z"} +2026/03/21 12:59:39 ───────────────────────────────────────────────── +2026/03/21 12:59:44 ── Pipeline Health ────────────────────────────── +2026/03/21 12:59:44 [metric_collector] {"stage_name":"metric_collector","events_processed":6049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1209.8,"last_update":"2026-03-21T12:59:39.068844905Z"} +2026/03/21 12:59:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:59:39.077201715Z"} +2026/03/21 12:59:44 [detection_layer] {"stage_name":"detection_layer","events_processed":201,"events_dropped":0,"avg_latency_ms":17.273500257880475,"throughput_eps":0,"last_update":"2026-03-21T12:59:39.210619784Z"} +2026/03/21 12:59:44 [transform_engine] {"stage_name":"transform_engine","events_processed":201,"events_dropped":0,"avg_latency_ms":681.6836796711859,"throughput_eps":0,"last_update":"2026-03-21T12:59:39.210635855Z"} +2026/03/21 12:59:44 [log_collector] {"stage_name":"log_collector","events_processed":11043,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2208.6,"last_update":"2026-03-21T12:59:39.06859696Z"} +2026/03/21 12:59:44 ───────────────────────────────────────────────── +2026/03/21 12:59:49 ── Pipeline Health ────────────────────────────── +2026/03/21 12:59:49 [log_collector] {"stage_name":"log_collector","events_processed":11043,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2208.6,"last_update":"2026-03-21T12:59:44.068067861Z"} +2026/03/21 12:59:49 [metric_collector] {"stage_name":"metric_collector","events_processed":6054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1210.8,"last_update":"2026-03-21T12:59:44.068659705Z"} +2026/03/21 12:59:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:59:44.077402043Z"} +2026/03/21 12:59:49 [detection_layer] {"stage_name":"detection_layer","events_processed":201,"events_dropped":0,"avg_latency_ms":17.273500257880475,"throughput_eps":0,"last_update":"2026-03-21T12:59:44.21067849Z"} +2026/03/21 12:59:49 [transform_engine] {"stage_name":"transform_engine","events_processed":201,"events_dropped":0,"avg_latency_ms":681.6836796711859,"throughput_eps":0,"last_update":"2026-03-21T12:59:44.210690843Z"} +2026/03/21 12:59:49 ───────────────────────────────────────────────── +2026/03/21 12:59:54 ── Pipeline Health ────────────────────────────── +2026/03/21 12:59:54 [log_collector] {"stage_name":"log_collector","events_processed":11043,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2208.6,"last_update":"2026-03-21T12:59:49.068127269Z"} +2026/03/21 12:59:54 [metric_collector] {"stage_name":"metric_collector","events_processed":6059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1211.8,"last_update":"2026-03-21T12:59:49.068549317Z"} +2026/03/21 12:59:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:59:49.077077594Z"} +2026/03/21 12:59:54 [detection_layer] {"stage_name":"detection_layer","events_processed":201,"events_dropped":0,"avg_latency_ms":17.273500257880475,"throughput_eps":0,"last_update":"2026-03-21T12:59:49.210490563Z"} +2026/03/21 12:59:54 [transform_engine] {"stage_name":"transform_engine","events_processed":202,"events_dropped":0,"avg_latency_ms":558.9017747369488,"throughput_eps":0,"last_update":"2026-03-21T12:59:49.278284626Z"} +2026/03/21 12:59:54 ───────────────────────────────────────────────── +2026/03/21 12:59:59 ── Pipeline Health ────────────────────────────── +2026/03/21 12:59:59 [log_collector] {"stage_name":"log_collector","events_processed":11043,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2208.6,"last_update":"2026-03-21T12:59:54.069088877Z"} +2026/03/21 12:59:59 [metric_collector] {"stage_name":"metric_collector","events_processed":6064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1212.8,"last_update":"2026-03-21T12:59:54.069596149Z"} +2026/03/21 12:59:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:59:54.079120815Z"} +2026/03/21 12:59:59 [detection_layer] {"stage_name":"detection_layer","events_processed":202,"events_dropped":0,"avg_latency_ms":17.82074880630438,"throughput_eps":0,"last_update":"2026-03-21T12:59:54.210394304Z"} +2026/03/21 12:59:59 [transform_engine] {"stage_name":"transform_engine","events_processed":202,"events_dropped":0,"avg_latency_ms":558.9017747369488,"throughput_eps":0,"last_update":"2026-03-21T12:59:54.210411547Z"} +2026/03/21 12:59:59 ───────────────────────────────────────────────── +2026/03/21 13:00:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:00:04 [log_collector] {"stage_name":"log_collector","events_processed":11043,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2208.6,"last_update":"2026-03-21T12:59:59.068990564Z"} +2026/03/21 13:00:04 [metric_collector] {"stage_name":"metric_collector","events_processed":6069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1213.8,"last_update":"2026-03-21T12:59:59.069457068Z"} +2026/03/21 13:00:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T12:59:59.078537864Z"} +2026/03/21 13:00:04 [detection_layer] {"stage_name":"detection_layer","events_processed":202,"events_dropped":0,"avg_latency_ms":17.82074880630438,"throughput_eps":0,"last_update":"2026-03-21T12:59:59.210847026Z"} +2026/03/21 13:00:04 [transform_engine] {"stage_name":"transform_engine","events_processed":202,"events_dropped":0,"avg_latency_ms":558.9017747369488,"throughput_eps":0,"last_update":"2026-03-21T12:59:59.209731009Z"} +2026/03/21 13:00:04 ───────────────────────────────────────────────── +2026/03/21 13:00:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:00:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:00:04.083226092Z"} +2026/03/21 13:00:09 [detection_layer] {"stage_name":"detection_layer","events_processed":202,"events_dropped":0,"avg_latency_ms":17.82074880630438,"throughput_eps":0,"last_update":"2026-03-21T13:00:04.210481052Z"} +2026/03/21 13:00:09 [transform_engine] {"stage_name":"transform_engine","events_processed":202,"events_dropped":0,"avg_latency_ms":558.9017747369488,"throughput_eps":0,"last_update":"2026-03-21T13:00:04.210491562Z"} +2026/03/21 13:00:09 [log_collector] {"stage_name":"log_collector","events_processed":11043,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2208.6,"last_update":"2026-03-21T13:00:04.068070028Z"} +2026/03/21 13:00:09 [metric_collector] {"stage_name":"metric_collector","events_processed":6074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1214.8,"last_update":"2026-03-21T13:00:04.068415089Z"} +2026/03/21 13:00:09 ───────────────────────────────────────────────── +2026/03/21 13:00:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:00:14 [log_collector] {"stage_name":"log_collector","events_processed":11043,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2208.6,"last_update":"2026-03-21T13:00:14.068335815Z"} +2026/03/21 13:00:14 [metric_collector] {"stage_name":"metric_collector","events_processed":6079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1215.8,"last_update":"2026-03-21T13:00:09.068610942Z"} +2026/03/21 13:00:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:00:09.079085197Z"} +2026/03/21 13:00:14 [detection_layer] {"stage_name":"detection_layer","events_processed":202,"events_dropped":0,"avg_latency_ms":17.82074880630438,"throughput_eps":0,"last_update":"2026-03-21T13:00:09.210415543Z"} +2026/03/21 13:00:14 [transform_engine] {"stage_name":"transform_engine","events_processed":202,"events_dropped":0,"avg_latency_ms":558.9017747369488,"throughput_eps":0,"last_update":"2026-03-21T13:00:09.210433368Z"} +2026/03/21 13:00:14 ───────────────────────────────────────────────── +Saved state: 16 clusters, 11044 messages, reason: none +2026/03/21 13:00:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:00:19 [metric_collector] {"stage_name":"metric_collector","events_processed":6084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1216.8,"last_update":"2026-03-21T13:00:14.069214128Z"} +2026/03/21 13:00:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:00:14.077956596Z"} +2026/03/21 13:00:19 [detection_layer] {"stage_name":"detection_layer","events_processed":202,"events_dropped":0,"avg_latency_ms":17.82074880630438,"throughput_eps":0,"last_update":"2026-03-21T13:00:14.210226261Z"} +2026/03/21 13:00:19 [transform_engine] {"stage_name":"transform_engine","events_processed":202,"events_dropped":0,"avg_latency_ms":558.9017747369488,"throughput_eps":0,"last_update":"2026-03-21T13:00:14.210243244Z"} +2026/03/21 13:00:19 [log_collector] {"stage_name":"log_collector","events_processed":11043,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2208.6,"last_update":"2026-03-21T13:00:14.068335815Z"} +2026/03/21 13:00:19 ───────────────────────────────────────────────── +2026/03/21 13:00:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:00:24 [log_collector] {"stage_name":"log_collector","events_processed":11056,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2211.2,"last_update":"2026-03-21T13:00:19.06859372Z"} +2026/03/21 13:00:24 [metric_collector] {"stage_name":"metric_collector","events_processed":6089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1217.8,"last_update":"2026-03-21T13:00:19.06874531Z"} +2026/03/21 13:00:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:00:19.075180318Z"} +2026/03/21 13:00:24 [detection_layer] {"stage_name":"detection_layer","events_processed":202,"events_dropped":0,"avg_latency_ms":17.82074880630438,"throughput_eps":0,"last_update":"2026-03-21T13:00:19.210421364Z"} +2026/03/21 13:00:24 [transform_engine] {"stage_name":"transform_engine","events_processed":203,"events_dropped":0,"avg_latency_ms":467.3903945895591,"throughput_eps":0,"last_update":"2026-03-21T13:00:19.311782659Z"} +2026/03/21 13:00:24 ───────────────────────────────────────────────── +2026/03/21 13:00:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:00:29 [log_collector] {"stage_name":"log_collector","events_processed":11057,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2211.4,"last_update":"2026-03-21T13:00:29.068298443Z"} +2026/03/21 13:00:29 [metric_collector] {"stage_name":"metric_collector","events_processed":6094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1218.8,"last_update":"2026-03-21T13:00:24.069002074Z"} +2026/03/21 13:00:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:00:24.078053575Z"} +2026/03/21 13:00:29 [detection_layer] {"stage_name":"detection_layer","events_processed":203,"events_dropped":0,"avg_latency_ms":17.262579445043507,"throughput_eps":0,"last_update":"2026-03-21T13:00:24.210304131Z"} +2026/03/21 13:00:29 [transform_engine] {"stage_name":"transform_engine","events_processed":203,"events_dropped":0,"avg_latency_ms":467.3903945895591,"throughput_eps":0,"last_update":"2026-03-21T13:00:24.210318079Z"} +2026/03/21 13:00:29 ───────────────────────────────────────────────── +2026/03/21 13:00:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:00:34 [log_collector] {"stage_name":"log_collector","events_processed":11057,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2211.4,"last_update":"2026-03-21T13:00:29.068298443Z"} +2026/03/21 13:00:34 [metric_collector] {"stage_name":"metric_collector","events_processed":6099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1219.8,"last_update":"2026-03-21T13:00:29.068821765Z"} +2026/03/21 13:00:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2442,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:00:29.077844299Z"} +2026/03/21 13:00:34 [detection_layer] {"stage_name":"detection_layer","events_processed":203,"events_dropped":0,"avg_latency_ms":17.262579445043507,"throughput_eps":0,"last_update":"2026-03-21T13:00:29.210208845Z"} +2026/03/21 13:00:34 [transform_engine] {"stage_name":"transform_engine","events_processed":203,"events_dropped":0,"avg_latency_ms":467.3903945895591,"throughput_eps":0,"last_update":"2026-03-21T13:00:29.210224245Z"} +2026/03/21 13:00:34 ───────────────────────────────────────────────── +2026/03/21 13:00:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:00:39 [log_collector] {"stage_name":"log_collector","events_processed":11057,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2211.4,"last_update":"2026-03-21T13:00:34.06859568Z"} +2026/03/21 13:00:39 [metric_collector] {"stage_name":"metric_collector","events_processed":6104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1220.8,"last_update":"2026-03-21T13:00:34.068881057Z"} +2026/03/21 13:00:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:00:34.07801837Z"} +2026/03/21 13:00:39 [detection_layer] {"stage_name":"detection_layer","events_processed":203,"events_dropped":0,"avg_latency_ms":17.262579445043507,"throughput_eps":0,"last_update":"2026-03-21T13:00:34.210244631Z"} +2026/03/21 13:00:39 [transform_engine] {"stage_name":"transform_engine","events_processed":203,"events_dropped":0,"avg_latency_ms":467.3903945895591,"throughput_eps":0,"last_update":"2026-03-21T13:00:34.210255091Z"} +2026/03/21 13:00:39 ───────────────────────────────────────────────── +2026/03/21 13:00:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:00:44 [transform_engine] {"stage_name":"transform_engine","events_processed":203,"events_dropped":0,"avg_latency_ms":467.3903945895591,"throughput_eps":0,"last_update":"2026-03-21T13:00:39.210069014Z"} +2026/03/21 13:00:44 [log_collector] {"stage_name":"log_collector","events_processed":11057,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2211.4,"last_update":"2026-03-21T13:00:39.068718705Z"} +2026/03/21 13:00:44 [metric_collector] {"stage_name":"metric_collector","events_processed":6114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1222.8,"last_update":"2026-03-21T13:00:44.068966743Z"} +2026/03/21 13:00:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2446,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:00:39.077810121Z"} +2026/03/21 13:00:44 [detection_layer] {"stage_name":"detection_layer","events_processed":203,"events_dropped":0,"avg_latency_ms":17.262579445043507,"throughput_eps":0,"last_update":"2026-03-21T13:00:39.210057853Z"} +2026/03/21 13:00:44 ───────────────────────────────────────────────── +2026/03/21 13:00:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:00:49 [detection_layer] {"stage_name":"detection_layer","events_processed":203,"events_dropped":0,"avg_latency_ms":17.262579445043507,"throughput_eps":0,"last_update":"2026-03-21T13:00:44.210460706Z"} +2026/03/21 13:00:49 [transform_engine] {"stage_name":"transform_engine","events_processed":203,"events_dropped":0,"avg_latency_ms":467.3903945895591,"throughput_eps":0,"last_update":"2026-03-21T13:00:44.210476797Z"} +2026/03/21 13:00:49 [log_collector] {"stage_name":"log_collector","events_processed":11057,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2211.4,"last_update":"2026-03-21T13:00:44.069115688Z"} +2026/03/21 13:00:49 [metric_collector] {"stage_name":"metric_collector","events_processed":6114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1222.8,"last_update":"2026-03-21T13:00:44.068966743Z"} +2026/03/21 13:00:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:00:44.07995898Z"} +2026/03/21 13:00:49 ───────────────────────────────────────────────── +2026/03/21 13:00:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:00:54 [log_collector] {"stage_name":"log_collector","events_processed":11057,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2211.4,"last_update":"2026-03-21T13:00:49.068935749Z"} +2026/03/21 13:00:54 [metric_collector] {"stage_name":"metric_collector","events_processed":6119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1223.8,"last_update":"2026-03-21T13:00:49.069191008Z"} +2026/03/21 13:00:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:00:49.078265541Z"} +2026/03/21 13:00:54 [detection_layer] {"stage_name":"detection_layer","events_processed":203,"events_dropped":0,"avg_latency_ms":17.262579445043507,"throughput_eps":0,"last_update":"2026-03-21T13:00:49.210454328Z"} +2026/03/21 13:00:54 [transform_engine] {"stage_name":"transform_engine","events_processed":204,"events_dropped":0,"avg_latency_ms":397.87992107164735,"throughput_eps":0,"last_update":"2026-03-21T13:00:49.330307555Z"} +2026/03/21 13:00:54 ───────────────────────────────────────────────── +2026/03/21 13:00:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:00:59 [log_collector] {"stage_name":"log_collector","events_processed":11057,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2211.4,"last_update":"2026-03-21T13:00:54.068301321Z"} +2026/03/21 13:00:59 [metric_collector] {"stage_name":"metric_collector","events_processed":6124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1224.8,"last_update":"2026-03-21T13:00:54.068555248Z"} +2026/03/21 13:00:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2452,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:00:54.075889067Z"} +2026/03/21 13:00:59 [detection_layer] {"stage_name":"detection_layer","events_processed":204,"events_dropped":0,"avg_latency_ms":18.054173756034807,"throughput_eps":0,"last_update":"2026-03-21T13:00:54.21019042Z"} +2026/03/21 13:00:59 [transform_engine] {"stage_name":"transform_engine","events_processed":204,"events_dropped":0,"avg_latency_ms":397.87992107164735,"throughput_eps":0,"last_update":"2026-03-21T13:00:54.210135064Z"} +2026/03/21 13:00:59 ───────────────────────────────────────────────── +2026/03/21 13:01:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:01:04 [log_collector] {"stage_name":"log_collector","events_processed":11057,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2211.4,"last_update":"2026-03-21T13:00:59.068593953Z"} +2026/03/21 13:01:04 [metric_collector] {"stage_name":"metric_collector","events_processed":6129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1225.8,"last_update":"2026-03-21T13:00:59.068951918Z"} +2026/03/21 13:01:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:00:59.075185159Z"} +2026/03/21 13:01:04 [detection_layer] {"stage_name":"detection_layer","events_processed":204,"events_dropped":0,"avg_latency_ms":18.054173756034807,"throughput_eps":0,"last_update":"2026-03-21T13:00:59.210627649Z"} +2026/03/21 13:01:04 [transform_engine] {"stage_name":"transform_engine","events_processed":204,"events_dropped":0,"avg_latency_ms":397.87992107164735,"throughput_eps":0,"last_update":"2026-03-21T13:00:59.210595167Z"} +2026/03/21 13:01:04 ───────────────────────────────────────────────── +2026/03/21 13:01:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:01:09 [log_collector] {"stage_name":"log_collector","events_processed":11057,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2211.4,"last_update":"2026-03-21T13:01:04.068613524Z"} +2026/03/21 13:01:09 [metric_collector] {"stage_name":"metric_collector","events_processed":6134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1226.8,"last_update":"2026-03-21T13:01:04.069037216Z"} +2026/03/21 13:01:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:01:04.075978583Z"} +2026/03/21 13:01:09 [detection_layer] {"stage_name":"detection_layer","events_processed":204,"events_dropped":0,"avg_latency_ms":18.054173756034807,"throughput_eps":0,"last_update":"2026-03-21T13:01:04.210455021Z"} +2026/03/21 13:01:09 [transform_engine] {"stage_name":"transform_engine","events_processed":204,"events_dropped":0,"avg_latency_ms":397.87992107164735,"throughput_eps":0,"last_update":"2026-03-21T13:01:04.210384697Z"} +2026/03/21 13:01:09 ───────────────────────────────────────────────── +2026/03/21 13:01:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:01:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:01:09.076328982Z"} +2026/03/21 13:01:14 [detection_layer] {"stage_name":"detection_layer","events_processed":204,"events_dropped":0,"avg_latency_ms":18.054173756034807,"throughput_eps":0,"last_update":"2026-03-21T13:01:09.210636025Z"} +2026/03/21 13:01:14 [transform_engine] {"stage_name":"transform_engine","events_processed":204,"events_dropped":0,"avg_latency_ms":397.87992107164735,"throughput_eps":0,"last_update":"2026-03-21T13:01:09.210605286Z"} +2026/03/21 13:01:14 [log_collector] {"stage_name":"log_collector","events_processed":11057,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2211.4,"last_update":"2026-03-21T13:01:09.068616017Z"} +2026/03/21 13:01:14 [metric_collector] {"stage_name":"metric_collector","events_processed":6139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1227.8,"last_update":"2026-03-21T13:01:09.069064556Z"} +2026/03/21 13:01:14 ───────────────────────────────────────────────── +2026/03/21 13:01:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:01:19 [log_collector] {"stage_name":"log_collector","events_processed":11057,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2211.4,"last_update":"2026-03-21T13:01:14.068631507Z"} +2026/03/21 13:01:19 [metric_collector] {"stage_name":"metric_collector","events_processed":6144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1228.8,"last_update":"2026-03-21T13:01:14.069050809Z"} +2026/03/21 13:01:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:01:14.077517909Z"} +2026/03/21 13:01:19 [detection_layer] {"stage_name":"detection_layer","events_processed":204,"events_dropped":0,"avg_latency_ms":18.054173756034807,"throughput_eps":0,"last_update":"2026-03-21T13:01:14.210818303Z"} +2026/03/21 13:01:19 [transform_engine] {"stage_name":"transform_engine","events_processed":204,"events_dropped":0,"avg_latency_ms":397.87992107164735,"throughput_eps":0,"last_update":"2026-03-21T13:01:14.209693028Z"} +2026/03/21 13:01:19 ───────────────────────────────────────────────── +Saved state: 16 clusters, 11058 messages, reason: none +2026/03/21 13:01:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:01:24 [log_collector] {"stage_name":"log_collector","events_processed":11057,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2211.4,"last_update":"2026-03-21T13:01:19.068711244Z"} +2026/03/21 13:01:24 [metric_collector] {"stage_name":"metric_collector","events_processed":6149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1229.8,"last_update":"2026-03-21T13:01:19.069167247Z"} +2026/03/21 13:01:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:01:19.075308642Z"} +2026/03/21 13:01:24 [detection_layer] {"stage_name":"detection_layer","events_processed":204,"events_dropped":0,"avg_latency_ms":18.054173756034807,"throughput_eps":0,"last_update":"2026-03-21T13:01:19.210565574Z"} +2026/03/21 13:01:24 [transform_engine] {"stage_name":"transform_engine","events_processed":205,"events_dropped":0,"avg_latency_ms":332.3771336573179,"throughput_eps":0,"last_update":"2026-03-21T13:01:19.280907443Z"} +2026/03/21 13:01:24 ───────────────────────────────────────────────── +2026/03/21 13:01:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:01:29 [transform_engine] {"stage_name":"transform_engine","events_processed":205,"events_dropped":0,"avg_latency_ms":332.3771336573179,"throughput_eps":0,"last_update":"2026-03-21T13:01:24.210462555Z"} +2026/03/21 13:01:29 [log_collector] {"stage_name":"log_collector","events_processed":11062,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2212.4,"last_update":"2026-03-21T13:01:24.068834189Z"} +2026/03/21 13:01:29 [metric_collector] {"stage_name":"metric_collector","events_processed":6154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1230.8,"last_update":"2026-03-21T13:01:24.068823628Z"} +2026/03/21 13:01:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:01:24.084341605Z"} +2026/03/21 13:01:29 [detection_layer] {"stage_name":"detection_layer","events_processed":205,"events_dropped":0,"avg_latency_ms":18.308369004827846,"throughput_eps":0,"last_update":"2026-03-21T13:01:24.210448608Z"} +2026/03/21 13:01:29 ───────────────────────────────────────────────── +2026/03/21 13:01:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:01:34 [metric_collector] {"stage_name":"metric_collector","events_processed":6159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1231.8,"last_update":"2026-03-21T13:01:29.068317902Z"} +2026/03/21 13:01:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:01:29.075106285Z"} +2026/03/21 13:01:34 [detection_layer] {"stage_name":"detection_layer","events_processed":205,"events_dropped":0,"avg_latency_ms":18.308369004827846,"throughput_eps":0,"last_update":"2026-03-21T13:01:29.210318109Z"} +2026/03/21 13:01:34 [transform_engine] {"stage_name":"transform_engine","events_processed":205,"events_dropped":0,"avg_latency_ms":332.3771336573179,"throughput_eps":0,"last_update":"2026-03-21T13:01:29.210335072Z"} +2026/03/21 13:01:34 [log_collector] {"stage_name":"log_collector","events_processed":11062,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2212.4,"last_update":"2026-03-21T13:01:34.068239206Z"} +2026/03/21 13:01:34 ───────────────────────────────────────────────── +2026/03/21 13:01:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:01:39 [metric_collector] {"stage_name":"metric_collector","events_processed":6164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1232.8,"last_update":"2026-03-21T13:01:34.069198494Z"} +2026/03/21 13:01:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:01:34.083819592Z"} +2026/03/21 13:01:39 [detection_layer] {"stage_name":"detection_layer","events_processed":205,"events_dropped":0,"avg_latency_ms":18.308369004827846,"throughput_eps":0,"last_update":"2026-03-21T13:01:34.209977863Z"} +2026/03/21 13:01:39 [transform_engine] {"stage_name":"transform_engine","events_processed":205,"events_dropped":0,"avg_latency_ms":332.3771336573179,"throughput_eps":0,"last_update":"2026-03-21T13:01:34.209994054Z"} +2026/03/21 13:01:39 [log_collector] {"stage_name":"log_collector","events_processed":11062,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2212.4,"last_update":"2026-03-21T13:01:39.068218407Z"} +2026/03/21 13:01:39 ───────────────────────────────────────────────── +2026/03/21 13:01:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:01:44 [metric_collector] {"stage_name":"metric_collector","events_processed":6169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1233.8,"last_update":"2026-03-21T13:01:39.068579709Z"} +2026/03/21 13:01:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2470,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:01:39.075530935Z"} +2026/03/21 13:01:44 [detection_layer] {"stage_name":"detection_layer","events_processed":205,"events_dropped":0,"avg_latency_ms":18.308369004827846,"throughput_eps":0,"last_update":"2026-03-21T13:01:39.210382348Z"} +2026/03/21 13:01:44 [transform_engine] {"stage_name":"transform_engine","events_processed":205,"events_dropped":0,"avg_latency_ms":332.3771336573179,"throughput_eps":0,"last_update":"2026-03-21T13:01:39.209700381Z"} +2026/03/21 13:01:44 [log_collector] {"stage_name":"log_collector","events_processed":11062,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2212.4,"last_update":"2026-03-21T13:01:39.068218407Z"} +2026/03/21 13:01:44 ───────────────────────────────────────────────── +2026/03/21 13:01:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:01:49 [log_collector] {"stage_name":"log_collector","events_processed":11062,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2212.4,"last_update":"2026-03-21T13:01:44.068624919Z"} +2026/03/21 13:01:49 [metric_collector] {"stage_name":"metric_collector","events_processed":6174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1234.8,"last_update":"2026-03-21T13:01:44.068712016Z"} +2026/03/21 13:01:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:01:44.076845066Z"} +2026/03/21 13:01:49 [detection_layer] {"stage_name":"detection_layer","events_processed":205,"events_dropped":0,"avg_latency_ms":18.308369004827846,"throughput_eps":0,"last_update":"2026-03-21T13:01:44.209914966Z"} +2026/03/21 13:01:49 [transform_engine] {"stage_name":"transform_engine","events_processed":205,"events_dropped":0,"avg_latency_ms":332.3771336573179,"throughput_eps":0,"last_update":"2026-03-21T13:01:44.209897072Z"} +2026/03/21 13:01:49 ───────────────────────────────────────────────── +2026/03/21 13:01:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:01:54 [detection_layer] {"stage_name":"detection_layer","events_processed":205,"events_dropped":0,"avg_latency_ms":18.308369004827846,"throughput_eps":0,"last_update":"2026-03-21T13:01:49.212790512Z"} +2026/03/21 13:01:54 [transform_engine] {"stage_name":"transform_engine","events_processed":206,"events_dropped":0,"avg_latency_ms":1041.1141771258544,"throughput_eps":0,"last_update":"2026-03-21T13:01:53.087450498Z"} +2026/03/21 13:01:54 [log_collector] {"stage_name":"log_collector","events_processed":11062,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2212.4,"last_update":"2026-03-21T13:01:49.068559693Z"} +2026/03/21 13:01:54 [metric_collector] {"stage_name":"metric_collector","events_processed":6179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1235.8,"last_update":"2026-03-21T13:01:49.068813199Z"} +2026/03/21 13:01:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:01:49.068358428Z"} +2026/03/21 13:01:54 ───────────────────────────────────────────────── +2026/03/21 13:01:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:01:59 [log_collector] {"stage_name":"log_collector","events_processed":11062,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2212.4,"last_update":"2026-03-21T13:01:54.068419487Z"} +2026/03/21 13:01:59 [metric_collector] {"stage_name":"metric_collector","events_processed":6184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1236.8,"last_update":"2026-03-21T13:01:54.068660449Z"} +2026/03/21 13:01:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2476,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:01:54.075259651Z"} +2026/03/21 13:01:59 [detection_layer] {"stage_name":"detection_layer","events_processed":206,"events_dropped":0,"avg_latency_ms":16.999291803862278,"throughput_eps":0,"last_update":"2026-03-21T13:01:54.210656808Z"} +2026/03/21 13:01:59 [transform_engine] {"stage_name":"transform_engine","events_processed":206,"events_dropped":0,"avg_latency_ms":1041.1141771258544,"throughput_eps":0,"last_update":"2026-03-21T13:01:54.210624536Z"} +2026/03/21 13:01:59 ───────────────────────────────────────────────── +2026/03/21 13:02:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:02:04 [log_collector] {"stage_name":"log_collector","events_processed":11062,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2212.4,"last_update":"2026-03-21T13:01:59.068900047Z"} +2026/03/21 13:02:04 [metric_collector] {"stage_name":"metric_collector","events_processed":6189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1237.8,"last_update":"2026-03-21T13:01:59.069219539Z"} +2026/03/21 13:02:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:01:59.079223953Z"} +2026/03/21 13:02:04 [detection_layer] {"stage_name":"detection_layer","events_processed":206,"events_dropped":0,"avg_latency_ms":16.999291803862278,"throughput_eps":0,"last_update":"2026-03-21T13:01:59.210464578Z"} +2026/03/21 13:02:04 [transform_engine] {"stage_name":"transform_engine","events_processed":206,"events_dropped":0,"avg_latency_ms":1041.1141771258544,"throughput_eps":0,"last_update":"2026-03-21T13:01:59.210445121Z"} +2026/03/21 13:02:04 ───────────────────────────────────────────────── +2026/03/21 13:02:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:02:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2480,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:02:04.075902274Z"} +2026/03/21 13:02:09 [detection_layer] {"stage_name":"detection_layer","events_processed":206,"events_dropped":0,"avg_latency_ms":16.999291803862278,"throughput_eps":0,"last_update":"2026-03-21T13:02:04.210184614Z"} +2026/03/21 13:02:09 [transform_engine] {"stage_name":"transform_engine","events_processed":206,"events_dropped":0,"avg_latency_ms":1041.1141771258544,"throughput_eps":0,"last_update":"2026-03-21T13:02:04.210133366Z"} +2026/03/21 13:02:09 [log_collector] {"stage_name":"log_collector","events_processed":11062,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2212.4,"last_update":"2026-03-21T13:02:04.068871826Z"} +2026/03/21 13:02:09 [metric_collector] {"stage_name":"metric_collector","events_processed":6194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1238.8,"last_update":"2026-03-21T13:02:04.068861767Z"} +2026/03/21 13:02:09 ───────────────────────────────────────────────── +2026/03/21 13:02:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:02:14 [log_collector] {"stage_name":"log_collector","events_processed":11073,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2214.6,"last_update":"2026-03-21T13:02:09.068076891Z"} +2026/03/21 13:02:14 [metric_collector] {"stage_name":"metric_collector","events_processed":6199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1239.8,"last_update":"2026-03-21T13:02:09.068438474Z"} +2026/03/21 13:02:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2482,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:02:09.076478816Z"} +2026/03/21 13:02:14 [detection_layer] {"stage_name":"detection_layer","events_processed":206,"events_dropped":0,"avg_latency_ms":16.999291803862278,"throughput_eps":0,"last_update":"2026-03-21T13:02:09.210766697Z"} +2026/03/21 13:02:14 [transform_engine] {"stage_name":"transform_engine","events_processed":206,"events_dropped":0,"avg_latency_ms":1041.1141771258544,"throughput_eps":0,"last_update":"2026-03-21T13:02:09.209641942Z"} +2026/03/21 13:02:14 ───────────────────────────────────────────────── +2026/03/21 13:02:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:02:19 [log_collector] {"stage_name":"log_collector","events_processed":11087,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2217.4,"last_update":"2026-03-21T13:02:14.06851851Z"} +2026/03/21 13:02:19 [metric_collector] {"stage_name":"metric_collector","events_processed":6204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1240.8,"last_update":"2026-03-21T13:02:14.068748251Z"} +2026/03/21 13:02:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:02:14.077379424Z"} +2026/03/21 13:02:19 [detection_layer] {"stage_name":"detection_layer","events_processed":206,"events_dropped":0,"avg_latency_ms":16.999291803862278,"throughput_eps":0,"last_update":"2026-03-21T13:02:14.210620419Z"} +2026/03/21 13:02:19 [transform_engine] {"stage_name":"transform_engine","events_processed":206,"events_dropped":0,"avg_latency_ms":1041.1141771258544,"throughput_eps":0,"last_update":"2026-03-21T13:02:14.210641801Z"} +2026/03/21 13:02:19 ───────────────────────────────────────────────── +2026/03/21 13:02:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:02:24 [log_collector] {"stage_name":"log_collector","events_processed":11371,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2274.2,"last_update":"2026-03-21T13:02:19.068700698Z"} +2026/03/21 13:02:24 [metric_collector] {"stage_name":"metric_collector","events_processed":6209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1241.8,"last_update":"2026-03-21T13:02:19.068948643Z"} +2026/03/21 13:02:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2486,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:02:19.076510418Z"} +2026/03/21 13:02:24 [detection_layer] {"stage_name":"detection_layer","events_processed":206,"events_dropped":0,"avg_latency_ms":16.999291803862278,"throughput_eps":0,"last_update":"2026-03-21T13:02:19.210417871Z"} +2026/03/21 13:02:24 [transform_engine] {"stage_name":"transform_engine","events_processed":207,"events_dropped":0,"avg_latency_ms":861.8138393006836,"throughput_eps":0,"last_update":"2026-03-21T13:02:19.354715286Z"} +2026/03/21 13:02:24 ───────────────────────────────────────────────── +2026/03/21 13:02:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:02:29 [log_collector] {"stage_name":"log_collector","events_processed":11423,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2284.6,"last_update":"2026-03-21T13:02:24.068788862Z"} +2026/03/21 13:02:29 [metric_collector] {"stage_name":"metric_collector","events_processed":6214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1242.8,"last_update":"2026-03-21T13:02:24.069007892Z"} +2026/03/21 13:02:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:02:24.077602325Z"} +2026/03/21 13:02:29 [detection_layer] {"stage_name":"detection_layer","events_processed":207,"events_dropped":0,"avg_latency_ms":16.04436704308982,"throughput_eps":0,"last_update":"2026-03-21T13:02:24.210893676Z"} +2026/03/21 13:02:29 [transform_engine] {"stage_name":"transform_engine","events_processed":207,"events_dropped":0,"avg_latency_ms":861.8138393006836,"throughput_eps":0,"last_update":"2026-03-21T13:02:24.20977333Z"} +2026/03/21 13:02:29 ───────────────────────────────────────────────── +2026/03/21 13:02:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:02:34 [detection_layer] {"stage_name":"detection_layer","events_processed":207,"events_dropped":0,"avg_latency_ms":16.04436704308982,"throughput_eps":0,"last_update":"2026-03-21T13:02:29.210427433Z"} +2026/03/21 13:02:34 [transform_engine] {"stage_name":"transform_engine","events_processed":207,"events_dropped":0,"avg_latency_ms":861.8138393006836,"throughput_eps":0,"last_update":"2026-03-21T13:02:29.210533997Z"} +2026/03/21 13:02:34 [log_collector] {"stage_name":"log_collector","events_processed":11423,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2284.6,"last_update":"2026-03-21T13:02:34.0684146Z"} +2026/03/21 13:02:34 [metric_collector] {"stage_name":"metric_collector","events_processed":6218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1243.6,"last_update":"2026-03-21T13:02:29.068320244Z"} +2026/03/21 13:02:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2490,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:02:29.078114025Z"} +2026/03/21 13:02:34 ───────────────────────────────────────────────── +2026/03/21 13:02:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:02:39 [log_collector] {"stage_name":"log_collector","events_processed":11423,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2284.6,"last_update":"2026-03-21T13:02:34.0684146Z"} +2026/03/21 13:02:39 [metric_collector] {"stage_name":"metric_collector","events_processed":6224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1244.8,"last_update":"2026-03-21T13:02:34.069523935Z"} +2026/03/21 13:02:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:02:34.077751155Z"} +2026/03/21 13:02:39 [detection_layer] {"stage_name":"detection_layer","events_processed":207,"events_dropped":0,"avg_latency_ms":16.04436704308982,"throughput_eps":0,"last_update":"2026-03-21T13:02:34.210152991Z"} +2026/03/21 13:02:39 [transform_engine] {"stage_name":"transform_engine","events_processed":207,"events_dropped":0,"avg_latency_ms":861.8138393006836,"throughput_eps":0,"last_update":"2026-03-21T13:02:34.210202526Z"} +2026/03/21 13:02:39 ───────────────────────────────────────────────── +2026/03/21 13:02:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:02:44 [log_collector] {"stage_name":"log_collector","events_processed":11423,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2284.6,"last_update":"2026-03-21T13:02:39.068631608Z"} +2026/03/21 13:02:44 [metric_collector] {"stage_name":"metric_collector","events_processed":6229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1245.8,"last_update":"2026-03-21T13:02:39.06901429Z"} +2026/03/21 13:02:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:02:39.079429191Z"} +2026/03/21 13:02:44 [detection_layer] {"stage_name":"detection_layer","events_processed":207,"events_dropped":0,"avg_latency_ms":16.04436704308982,"throughput_eps":0,"last_update":"2026-03-21T13:02:39.210671085Z"} +2026/03/21 13:02:44 [transform_engine] {"stage_name":"transform_engine","events_processed":207,"events_dropped":0,"avg_latency_ms":861.8138393006836,"throughput_eps":0,"last_update":"2026-03-21T13:02:39.210696113Z"} +2026/03/21 13:02:44 ───────────────────────────────────────────────── +2026/03/21 13:02:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:02:49 [metric_collector] {"stage_name":"metric_collector","events_processed":6234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1246.8,"last_update":"2026-03-21T13:02:44.069559533Z"} +2026/03/21 13:02:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2496,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:02:44.077744382Z"} +2026/03/21 13:02:49 [detection_layer] {"stage_name":"detection_layer","events_processed":207,"events_dropped":0,"avg_latency_ms":16.04436704308982,"throughput_eps":0,"last_update":"2026-03-21T13:02:44.210025587Z"} +2026/03/21 13:02:49 [transform_engine] {"stage_name":"transform_engine","events_processed":207,"events_dropped":0,"avg_latency_ms":861.8138393006836,"throughput_eps":0,"last_update":"2026-03-21T13:02:44.21005331Z"} +2026/03/21 13:02:49 [log_collector] {"stage_name":"log_collector","events_processed":11423,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2284.6,"last_update":"2026-03-21T13:02:44.068928966Z"} +2026/03/21 13:02:49 ───────────────────────────────────────────────── +2026/03/21 13:02:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:02:54 [transform_engine] {"stage_name":"transform_engine","events_processed":208,"events_dropped":0,"avg_latency_ms":712.5553370405469,"throughput_eps":0,"last_update":"2026-03-21T13:02:49.32626338Z"} +2026/03/21 13:02:54 [log_collector] {"stage_name":"log_collector","events_processed":11423,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2284.6,"last_update":"2026-03-21T13:02:49.068069362Z"} +2026/03/21 13:02:54 [metric_collector] {"stage_name":"metric_collector","events_processed":6239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1247.8,"last_update":"2026-03-21T13:02:49.068516007Z"} +2026/03/21 13:02:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2498,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:02:49.078430639Z"} +2026/03/21 13:02:54 [detection_layer] {"stage_name":"detection_layer","events_processed":207,"events_dropped":0,"avg_latency_ms":16.04436704308982,"throughput_eps":0,"last_update":"2026-03-21T13:02:49.210686155Z"} +2026/03/21 13:02:54 ───────────────────────────────────────────────── +2026/03/21 13:02:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:02:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:02:54.078322864Z"} +2026/03/21 13:02:59 [detection_layer] {"stage_name":"detection_layer","events_processed":208,"events_dropped":0,"avg_latency_ms":17.08081183447186,"throughput_eps":0,"last_update":"2026-03-21T13:02:54.210727764Z"} +2026/03/21 13:02:59 [transform_engine] {"stage_name":"transform_engine","events_processed":208,"events_dropped":0,"avg_latency_ms":712.5553370405469,"throughput_eps":0,"last_update":"2026-03-21T13:02:54.210693449Z"} +2026/03/21 13:02:59 [log_collector] {"stage_name":"log_collector","events_processed":11423,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2284.6,"last_update":"2026-03-21T13:02:59.068403078Z"} +2026/03/21 13:02:59 [metric_collector] {"stage_name":"metric_collector","events_processed":6249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1249.8,"last_update":"2026-03-21T13:02:59.068756505Z"} +2026/03/21 13:02:59 ───────────────────────────────────────────────── +2026/03/21 13:03:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:03:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:02:59.078128768Z"} +2026/03/21 13:03:04 [detection_layer] {"stage_name":"detection_layer","events_processed":208,"events_dropped":0,"avg_latency_ms":17.08081183447186,"throughput_eps":0,"last_update":"2026-03-21T13:02:59.210505504Z"} +2026/03/21 13:03:04 [transform_engine] {"stage_name":"transform_engine","events_processed":208,"events_dropped":0,"avg_latency_ms":712.5553370405469,"throughput_eps":0,"last_update":"2026-03-21T13:02:59.210520814Z"} +2026/03/21 13:03:04 [log_collector] {"stage_name":"log_collector","events_processed":11423,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2284.6,"last_update":"2026-03-21T13:02:59.068403078Z"} +2026/03/21 13:03:04 [metric_collector] {"stage_name":"metric_collector","events_processed":6249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1249.8,"last_update":"2026-03-21T13:02:59.068756505Z"} +2026/03/21 13:03:04 ───────────────────────────────────────────────── +2026/03/21 13:03:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:03:09 [transform_engine] {"stage_name":"transform_engine","events_processed":208,"events_dropped":0,"avg_latency_ms":712.5553370405469,"throughput_eps":0,"last_update":"2026-03-21T13:03:04.209763808Z"} +2026/03/21 13:03:09 [log_collector] {"stage_name":"log_collector","events_processed":11423,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2284.6,"last_update":"2026-03-21T13:03:04.06876707Z"} +2026/03/21 13:03:09 [metric_collector] {"stage_name":"metric_collector","events_processed":6254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1250.8,"last_update":"2026-03-21T13:03:04.068996058Z"} +2026/03/21 13:03:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:03:04.078520242Z"} +2026/03/21 13:03:09 [detection_layer] {"stage_name":"detection_layer","events_processed":208,"events_dropped":0,"avg_latency_ms":17.08081183447186,"throughput_eps":0,"last_update":"2026-03-21T13:03:04.209876935Z"} +2026/03/21 13:03:09 ───────────────────────────────────────────────── +2026/03/21 13:03:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:03:14 [transform_engine] {"stage_name":"transform_engine","events_processed":208,"events_dropped":0,"avg_latency_ms":712.5553370405469,"throughput_eps":0,"last_update":"2026-03-21T13:03:09.210265699Z"} +2026/03/21 13:03:14 [log_collector] {"stage_name":"log_collector","events_processed":11423,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2284.6,"last_update":"2026-03-21T13:03:09.068737432Z"} +2026/03/21 13:03:14 [metric_collector] {"stage_name":"metric_collector","events_processed":6259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1251.8,"last_update":"2026-03-21T13:03:09.069009583Z"} +2026/03/21 13:03:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2506,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:03:09.07784086Z"} +2026/03/21 13:03:14 [detection_layer] {"stage_name":"detection_layer","events_processed":208,"events_dropped":0,"avg_latency_ms":17.08081183447186,"throughput_eps":0,"last_update":"2026-03-21T13:03:09.210249949Z"} +2026/03/21 13:03:14 ───────────────────────────────────────────────── +2026/03/21 13:03:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:03:19 [detection_layer] {"stage_name":"detection_layer","events_processed":208,"events_dropped":0,"avg_latency_ms":17.08081183447186,"throughput_eps":0,"last_update":"2026-03-21T13:03:14.210299048Z"} +2026/03/21 13:03:19 [transform_engine] {"stage_name":"transform_engine","events_processed":208,"events_dropped":0,"avg_latency_ms":712.5553370405469,"throughput_eps":0,"last_update":"2026-03-21T13:03:14.210310571Z"} +2026/03/21 13:03:19 [log_collector] {"stage_name":"log_collector","events_processed":11423,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2284.6,"last_update":"2026-03-21T13:03:14.068073587Z"} +2026/03/21 13:03:19 [metric_collector] {"stage_name":"metric_collector","events_processed":6264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1252.8,"last_update":"2026-03-21T13:03:14.068635474Z"} +2026/03/21 13:03:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:03:14.079034243Z"} +2026/03/21 13:03:19 ───────────────────────────────────────────────── +2026/03/21 13:03:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:03:24 [log_collector] {"stage_name":"log_collector","events_processed":11423,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2284.6,"last_update":"2026-03-21T13:03:19.068786075Z"} +2026/03/21 13:03:24 [metric_collector] {"stage_name":"metric_collector","events_processed":6269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1253.8,"last_update":"2026-03-21T13:03:19.069038137Z"} +2026/03/21 13:03:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:03:19.078090397Z"} +2026/03/21 13:03:24 [detection_layer] {"stage_name":"detection_layer","events_processed":208,"events_dropped":0,"avg_latency_ms":17.08081183447186,"throughput_eps":0,"last_update":"2026-03-21T13:03:19.210520845Z"} +2026/03/21 13:03:24 [transform_engine] {"stage_name":"transform_engine","events_processed":209,"events_dropped":0,"avg_latency_ms":584.6385378324375,"throughput_eps":0,"last_update":"2026-03-21T13:03:19.283402314Z"} +2026/03/21 13:03:24 ───────────────────────────────────────────────── +2026/03/21 13:03:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:03:29 [metric_collector] {"stage_name":"metric_collector","events_processed":6274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1254.8,"last_update":"2026-03-21T13:03:24.069255775Z"} +2026/03/21 13:03:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2512,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:03:24.078809646Z"} +2026/03/21 13:03:29 [detection_layer] {"stage_name":"detection_layer","events_processed":209,"events_dropped":0,"avg_latency_ms":18.013333867577487,"throughput_eps":0,"last_update":"2026-03-21T13:03:24.210074402Z"} +2026/03/21 13:03:29 [transform_engine] {"stage_name":"transform_engine","events_processed":209,"events_dropped":0,"avg_latency_ms":584.6385378324375,"throughput_eps":0,"last_update":"2026-03-21T13:03:24.210031579Z"} +2026/03/21 13:03:29 [log_collector] {"stage_name":"log_collector","events_processed":11423,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2284.6,"last_update":"2026-03-21T13:03:24.069003412Z"} +2026/03/21 13:03:29 ───────────────────────────────────────────────── +2026/03/21 13:03:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:03:34 [transform_engine] {"stage_name":"transform_engine","events_processed":209,"events_dropped":0,"avg_latency_ms":584.6385378324375,"throughput_eps":0,"last_update":"2026-03-21T13:03:29.209653974Z"} +2026/03/21 13:03:34 [log_collector] {"stage_name":"log_collector","events_processed":11423,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2284.6,"last_update":"2026-03-21T13:03:34.068113562Z"} +2026/03/21 13:03:34 [metric_collector] {"stage_name":"metric_collector","events_processed":6279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1255.8,"last_update":"2026-03-21T13:03:29.068844685Z"} +2026/03/21 13:03:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:03:29.077522359Z"} +2026/03/21 13:03:34 [detection_layer] {"stage_name":"detection_layer","events_processed":209,"events_dropped":0,"avg_latency_ms":18.013333867577487,"throughput_eps":0,"last_update":"2026-03-21T13:03:29.210802493Z"} +2026/03/21 13:03:34 ───────────────────────────────────────────────── +2026/03/21 13:03:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:03:39 [log_collector] {"stage_name":"log_collector","events_processed":11423,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2284.6,"last_update":"2026-03-21T13:03:34.068113562Z"} +2026/03/21 13:03:39 [metric_collector] {"stage_name":"metric_collector","events_processed":6284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1256.8,"last_update":"2026-03-21T13:03:34.068615693Z"} +2026/03/21 13:03:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:03:34.077492086Z"} +2026/03/21 13:03:39 [detection_layer] {"stage_name":"detection_layer","events_processed":209,"events_dropped":0,"avg_latency_ms":18.013333867577487,"throughput_eps":0,"last_update":"2026-03-21T13:03:34.210785566Z"} +2026/03/21 13:03:39 [transform_engine] {"stage_name":"transform_engine","events_processed":209,"events_dropped":0,"avg_latency_ms":584.6385378324375,"throughput_eps":0,"last_update":"2026-03-21T13:03:34.209656824Z"} +2026/03/21 13:03:39 ───────────────────────────────────────────────── +2026/03/21 13:03:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:03:44 [detection_layer] {"stage_name":"detection_layer","events_processed":209,"events_dropped":0,"avg_latency_ms":18.013333867577487,"throughput_eps":0,"last_update":"2026-03-21T13:03:39.210081111Z"} +2026/03/21 13:03:44 [transform_engine] {"stage_name":"transform_engine","events_processed":209,"events_dropped":0,"avg_latency_ms":584.6385378324375,"throughput_eps":0,"last_update":"2026-03-21T13:03:39.210131207Z"} +2026/03/21 13:03:44 [log_collector] {"stage_name":"log_collector","events_processed":11423,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2284.6,"last_update":"2026-03-21T13:03:39.068852Z"} +2026/03/21 13:03:44 [metric_collector] {"stage_name":"metric_collector","events_processed":6289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1257.8,"last_update":"2026-03-21T13:03:39.069199706Z"} +2026/03/21 13:03:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:03:39.078843219Z"} +2026/03/21 13:03:44 ───────────────────────────────────────────────── +Saved state: 16 clusters, 11424 messages, reason: none +2026/03/21 13:03:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:03:49 [log_collector] {"stage_name":"log_collector","events_processed":11423,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2284.6,"last_update":"2026-03-21T13:03:44.068763572Z"} +2026/03/21 13:03:49 [metric_collector] {"stage_name":"metric_collector","events_processed":6294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1258.8,"last_update":"2026-03-21T13:03:44.069153769Z"} +2026/03/21 13:03:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:03:44.068653792Z"} +2026/03/21 13:03:49 [detection_layer] {"stage_name":"detection_layer","events_processed":209,"events_dropped":0,"avg_latency_ms":18.013333867577487,"throughput_eps":0,"last_update":"2026-03-21T13:03:44.210906613Z"} +2026/03/21 13:03:49 [transform_engine] {"stage_name":"transform_engine","events_processed":209,"events_dropped":0,"avg_latency_ms":584.6385378324375,"throughput_eps":0,"last_update":"2026-03-21T13:03:44.209723738Z"} +2026/03/21 13:03:49 ───────────────────────────────────────────────── +2026/03/21 13:03:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:03:54 [transform_engine] {"stage_name":"transform_engine","events_processed":210,"events_dropped":0,"avg_latency_ms":489.66188826595,"throughput_eps":0,"last_update":"2026-03-21T13:03:49.319927596Z"} +2026/03/21 13:03:54 [log_collector] {"stage_name":"log_collector","events_processed":11426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2285.2,"last_update":"2026-03-21T13:03:49.068876107Z"} +2026/03/21 13:03:54 [metric_collector] {"stage_name":"metric_collector","events_processed":6299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1259.8,"last_update":"2026-03-21T13:03:49.069162555Z"} +2026/03/21 13:03:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2522,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:03:49.078969111Z"} +2026/03/21 13:03:54 [detection_layer] {"stage_name":"detection_layer","events_processed":209,"events_dropped":0,"avg_latency_ms":18.013333867577487,"throughput_eps":0,"last_update":"2026-03-21T13:03:49.210221139Z"} +2026/03/21 13:03:54 ───────────────────────────────────────────────── +2026/03/21 13:03:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:03:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:03:54.078107496Z"} +2026/03/21 13:03:59 [detection_layer] {"stage_name":"detection_layer","events_processed":210,"events_dropped":0,"avg_latency_ms":18.25566429406199,"throughput_eps":0,"last_update":"2026-03-21T13:03:54.210362375Z"} +2026/03/21 13:03:59 [transform_engine] {"stage_name":"transform_engine","events_processed":210,"events_dropped":0,"avg_latency_ms":489.66188826595,"throughput_eps":0,"last_update":"2026-03-21T13:03:54.210379939Z"} +2026/03/21 13:03:59 [log_collector] {"stage_name":"log_collector","events_processed":11426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2285.2,"last_update":"2026-03-21T13:03:54.068633869Z"} +2026/03/21 13:03:59 [metric_collector] {"stage_name":"metric_collector","events_processed":6304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1260.8,"last_update":"2026-03-21T13:03:54.068886794Z"} +2026/03/21 13:03:59 ───────────────────────────────────────────────── +2026/03/21 13:04:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:04:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2526,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:03:59.075283031Z"} +2026/03/21 13:04:04 [detection_layer] {"stage_name":"detection_layer","events_processed":210,"events_dropped":0,"avg_latency_ms":18.25566429406199,"throughput_eps":0,"last_update":"2026-03-21T13:03:59.210601619Z"} +2026/03/21 13:04:04 [transform_engine] {"stage_name":"transform_engine","events_processed":210,"events_dropped":0,"avg_latency_ms":489.66188826595,"throughput_eps":0,"last_update":"2026-03-21T13:03:59.210494574Z"} +2026/03/21 13:04:04 [log_collector] {"stage_name":"log_collector","events_processed":11437,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2287.4,"last_update":"2026-03-21T13:04:04.068162344Z"} +2026/03/21 13:04:04 [metric_collector] {"stage_name":"metric_collector","events_processed":6309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1261.8,"last_update":"2026-03-21T13:03:59.068919993Z"} +2026/03/21 13:04:04 ───────────────────────────────────────────────── +2026/03/21 13:04:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:04:09 [log_collector] {"stage_name":"log_collector","events_processed":11437,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2287.4,"last_update":"2026-03-21T13:04:04.068162344Z"} +2026/03/21 13:04:09 [metric_collector] {"stage_name":"metric_collector","events_processed":6314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1262.8,"last_update":"2026-03-21T13:04:04.068525079Z"} +2026/03/21 13:04:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:04:04.079881843Z"} +2026/03/21 13:04:09 [detection_layer] {"stage_name":"detection_layer","events_processed":210,"events_dropped":0,"avg_latency_ms":18.25566429406199,"throughput_eps":0,"last_update":"2026-03-21T13:04:04.210160677Z"} +2026/03/21 13:04:09 [transform_engine] {"stage_name":"transform_engine","events_processed":210,"events_dropped":0,"avg_latency_ms":489.66188826595,"throughput_eps":0,"last_update":"2026-03-21T13:04:04.210141581Z"} +2026/03/21 13:04:09 ───────────────────────────────────────────────── +2026/03/21 13:04:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:04:14 [log_collector] {"stage_name":"log_collector","events_processed":11444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2288.8,"last_update":"2026-03-21T13:04:09.06895805Z"} +2026/03/21 13:04:14 [metric_collector] {"stage_name":"metric_collector","events_processed":6319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1263.8,"last_update":"2026-03-21T13:04:09.069172852Z"} +2026/03/21 13:04:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:04:09.07722705Z"} +2026/03/21 13:04:14 [detection_layer] {"stage_name":"detection_layer","events_processed":210,"events_dropped":0,"avg_latency_ms":18.25566429406199,"throughput_eps":0,"last_update":"2026-03-21T13:04:09.210437057Z"} +2026/03/21 13:04:14 [transform_engine] {"stage_name":"transform_engine","events_processed":210,"events_dropped":0,"avg_latency_ms":489.66188826595,"throughput_eps":0,"last_update":"2026-03-21T13:04:09.210415337Z"} +2026/03/21 13:04:14 ───────────────────────────────────────────────── +2026/03/21 13:04:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:04:19 [log_collector] {"stage_name":"log_collector","events_processed":11453,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2290.6,"last_update":"2026-03-21T13:04:14.068114814Z"} +2026/03/21 13:04:19 [metric_collector] {"stage_name":"metric_collector","events_processed":6324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1264.8,"last_update":"2026-03-21T13:04:14.068695526Z"} +2026/03/21 13:04:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2532,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:04:14.078240971Z"} +2026/03/21 13:04:19 [detection_layer] {"stage_name":"detection_layer","events_processed":210,"events_dropped":0,"avg_latency_ms":18.25566429406199,"throughput_eps":0,"last_update":"2026-03-21T13:04:14.210618123Z"} +2026/03/21 13:04:19 [transform_engine] {"stage_name":"transform_engine","events_processed":210,"events_dropped":0,"avg_latency_ms":489.66188826595,"throughput_eps":0,"last_update":"2026-03-21T13:04:14.210659041Z"} +2026/03/21 13:04:19 ───────────────────────────────────────────────── +2026/03/21 13:04:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:04:24 [detection_layer] {"stage_name":"detection_layer","events_processed":210,"events_dropped":0,"avg_latency_ms":18.25566429406199,"throughput_eps":0,"last_update":"2026-03-21T13:04:19.210108796Z"} +2026/03/21 13:04:24 [transform_engine] {"stage_name":"transform_engine","events_processed":211,"events_dropped":0,"avg_latency_ms":412.04664661276,"throughput_eps":0,"last_update":"2026-03-21T13:04:19.311717791Z"} +2026/03/21 13:04:24 [log_collector] {"stage_name":"log_collector","events_processed":11456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2291.2,"last_update":"2026-03-21T13:04:19.06807722Z"} +2026/03/21 13:04:24 [metric_collector] {"stage_name":"metric_collector","events_processed":6329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1265.8,"last_update":"2026-03-21T13:04:19.068568731Z"} +2026/03/21 13:04:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:04:19.074907594Z"} +2026/03/21 13:04:24 ───────────────────────────────────────────────── +2026/03/21 13:04:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:04:29 [log_collector] {"stage_name":"log_collector","events_processed":11467,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2293.4,"last_update":"2026-03-21T13:04:24.068910213Z"} +2026/03/21 13:04:29 [metric_collector] {"stage_name":"metric_collector","events_processed":6334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1266.8,"last_update":"2026-03-21T13:04:24.0692638Z"} +2026/03/21 13:04:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2536,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:04:24.07861895Z"} +2026/03/21 13:04:29 [detection_layer] {"stage_name":"detection_layer","events_processed":211,"events_dropped":0,"avg_latency_ms":17.39065843524959,"throughput_eps":0,"last_update":"2026-03-21T13:04:24.210891992Z"} +2026/03/21 13:04:29 [transform_engine] {"stage_name":"transform_engine","events_processed":211,"events_dropped":0,"avg_latency_ms":412.04664661276,"throughput_eps":0,"last_update":"2026-03-21T13:04:24.209744324Z"} +2026/03/21 13:04:29 ───────────────────────────────────────────────── +2026/03/21 13:04:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:04:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:04:29.078186086Z"} +2026/03/21 13:04:34 [detection_layer] {"stage_name":"detection_layer","events_processed":211,"events_dropped":0,"avg_latency_ms":17.39065843524959,"throughput_eps":0,"last_update":"2026-03-21T13:04:29.210382923Z"} +2026/03/21 13:04:34 [transform_engine] {"stage_name":"transform_engine","events_processed":211,"events_dropped":0,"avg_latency_ms":412.04664661276,"throughput_eps":0,"last_update":"2026-03-21T13:04:29.210415505Z"} +2026/03/21 13:04:34 [log_collector] {"stage_name":"log_collector","events_processed":11467,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2293.4,"last_update":"2026-03-21T13:04:29.06866062Z"} +2026/03/21 13:04:34 [metric_collector] {"stage_name":"metric_collector","events_processed":6339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1267.8,"last_update":"2026-03-21T13:04:29.068918394Z"} +2026/03/21 13:04:34 ───────────────────────────────────────────────── +2026/03/21 13:04:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:04:39 [log_collector] {"stage_name":"log_collector","events_processed":11467,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2293.4,"last_update":"2026-03-21T13:04:34.068792036Z"} +2026/03/21 13:04:39 [metric_collector] {"stage_name":"metric_collector","events_processed":6344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1268.8,"last_update":"2026-03-21T13:04:34.069318665Z"} +2026/03/21 13:04:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2540,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:04:34.078436641Z"} +2026/03/21 13:04:39 [detection_layer] {"stage_name":"detection_layer","events_processed":211,"events_dropped":0,"avg_latency_ms":17.39065843524959,"throughput_eps":0,"last_update":"2026-03-21T13:04:34.210690436Z"} +2026/03/21 13:04:39 [transform_engine] {"stage_name":"transform_engine","events_processed":211,"events_dropped":0,"avg_latency_ms":412.04664661276,"throughput_eps":0,"last_update":"2026-03-21T13:04:34.210797601Z"} +2026/03/21 13:04:39 ───────────────────────────────────────────────── +2026/03/21 13:04:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:04:44 [metric_collector] {"stage_name":"metric_collector","events_processed":6349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1269.8,"last_update":"2026-03-21T13:04:39.069020725Z"} +2026/03/21 13:04:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2542,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:04:39.077374797Z"} +2026/03/21 13:04:44 [detection_layer] {"stage_name":"detection_layer","events_processed":211,"events_dropped":0,"avg_latency_ms":17.39065843524959,"throughput_eps":0,"last_update":"2026-03-21T13:04:39.210629389Z"} +2026/03/21 13:04:44 [transform_engine] {"stage_name":"transform_engine","events_processed":211,"events_dropped":0,"avg_latency_ms":412.04664661276,"throughput_eps":0,"last_update":"2026-03-21T13:04:39.210577179Z"} +2026/03/21 13:04:44 [log_collector] {"stage_name":"log_collector","events_processed":11467,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2293.4,"last_update":"2026-03-21T13:04:39.068826884Z"} +2026/03/21 13:04:44 ───────────────────────────────────────────────── +2026/03/21 13:04:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:04:49 [log_collector] {"stage_name":"log_collector","events_processed":11467,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2293.4,"last_update":"2026-03-21T13:04:44.068415638Z"} +2026/03/21 13:04:49 [metric_collector] {"stage_name":"metric_collector","events_processed":6354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1270.8,"last_update":"2026-03-21T13:04:44.068757934Z"} +2026/03/21 13:04:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:04:44.078552876Z"} +2026/03/21 13:04:49 [detection_layer] {"stage_name":"detection_layer","events_processed":211,"events_dropped":0,"avg_latency_ms":17.39065843524959,"throughput_eps":0,"last_update":"2026-03-21T13:04:44.210882476Z"} +2026/03/21 13:04:49 [transform_engine] {"stage_name":"transform_engine","events_processed":211,"events_dropped":0,"avg_latency_ms":412.04664661276,"throughput_eps":0,"last_update":"2026-03-21T13:04:44.209784322Z"} +2026/03/21 13:04:49 ───────────────────────────────────────────────── +2026/03/21 13:04:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:04:54 [log_collector] {"stage_name":"log_collector","events_processed":11467,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2293.4,"last_update":"2026-03-21T13:04:49.068633027Z"} +2026/03/21 13:04:54 [metric_collector] {"stage_name":"metric_collector","events_processed":6359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1271.8,"last_update":"2026-03-21T13:04:49.068942109Z"} +2026/03/21 13:04:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:04:49.078956191Z"} +2026/03/21 13:04:54 [detection_layer] {"stage_name":"detection_layer","events_processed":211,"events_dropped":0,"avg_latency_ms":17.39065843524959,"throughput_eps":0,"last_update":"2026-03-21T13:04:49.210140607Z"} +2026/03/21 13:04:54 [transform_engine] {"stage_name":"transform_engine","events_processed":212,"events_dropped":0,"avg_latency_ms":353.14270429020803,"throughput_eps":0,"last_update":"2026-03-21T13:04:49.327802901Z"} +2026/03/21 13:04:54 ───────────────────────────────────────────────── +2026/03/21 13:04:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:04:59 [transform_engine] {"stage_name":"transform_engine","events_processed":212,"events_dropped":0,"avg_latency_ms":353.14270429020803,"throughput_eps":0,"last_update":"2026-03-21T13:04:54.210257663Z"} +2026/03/21 13:04:59 [log_collector] {"stage_name":"log_collector","events_processed":11467,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2293.4,"last_update":"2026-03-21T13:04:54.068713083Z"} +2026/03/21 13:04:59 [metric_collector] {"stage_name":"metric_collector","events_processed":6364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1272.8,"last_update":"2026-03-21T13:04:54.069021664Z"} +2026/03/21 13:04:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:04:54.07996771Z"} +2026/03/21 13:04:59 [detection_layer] {"stage_name":"detection_layer","events_processed":212,"events_dropped":0,"avg_latency_ms":18.278491948199676,"throughput_eps":0,"last_update":"2026-03-21T13:04:54.210208188Z"} +2026/03/21 13:04:59 ───────────────────────────────────────────────── +2026/03/21 13:05:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:05:04 [metric_collector] {"stage_name":"metric_collector","events_processed":6369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1273.8,"last_update":"2026-03-21T13:04:59.068982908Z"} +2026/03/21 13:05:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:04:59.077897273Z"} +2026/03/21 13:05:04 [detection_layer] {"stage_name":"detection_layer","events_processed":212,"events_dropped":0,"avg_latency_ms":18.278491948199676,"throughput_eps":0,"last_update":"2026-03-21T13:04:59.21015792Z"} +2026/03/21 13:05:04 [transform_engine] {"stage_name":"transform_engine","events_processed":212,"events_dropped":0,"avg_latency_ms":353.14270429020803,"throughput_eps":0,"last_update":"2026-03-21T13:04:59.210128884Z"} +2026/03/21 13:05:04 [log_collector] {"stage_name":"log_collector","events_processed":11467,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2293.4,"last_update":"2026-03-21T13:04:59.068715926Z"} +2026/03/21 13:05:04 ───────────────────────────────────────────────── +2026/03/21 13:05:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:05:09 [log_collector] {"stage_name":"log_collector","events_processed":11467,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2293.4,"last_update":"2026-03-21T13:05:04.068648336Z"} +2026/03/21 13:05:09 [metric_collector] {"stage_name":"metric_collector","events_processed":6374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1274.8,"last_update":"2026-03-21T13:05:04.069051478Z"} +2026/03/21 13:05:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:05:04.07903401Z"} +2026/03/21 13:05:09 [detection_layer] {"stage_name":"detection_layer","events_processed":212,"events_dropped":0,"avg_latency_ms":18.278491948199676,"throughput_eps":0,"last_update":"2026-03-21T13:05:04.21041928Z"} +2026/03/21 13:05:09 [transform_engine] {"stage_name":"transform_engine","events_processed":212,"events_dropped":0,"avg_latency_ms":353.14270429020803,"throughput_eps":0,"last_update":"2026-03-21T13:05:04.210297917Z"} +2026/03/21 13:05:09 ───────────────────────────────────────────────── +2026/03/21 13:05:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:05:14 [metric_collector] {"stage_name":"metric_collector","events_processed":6379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1275.8,"last_update":"2026-03-21T13:05:09.069033343Z"} +2026/03/21 13:05:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:05:09.079804476Z"} +2026/03/21 13:05:14 [detection_layer] {"stage_name":"detection_layer","events_processed":212,"events_dropped":0,"avg_latency_ms":18.278491948199676,"throughput_eps":0,"last_update":"2026-03-21T13:05:09.210176975Z"} +2026/03/21 13:05:14 [transform_engine] {"stage_name":"transform_engine","events_processed":212,"events_dropped":0,"avg_latency_ms":353.14270429020803,"throughput_eps":0,"last_update":"2026-03-21T13:05:09.210286204Z"} +2026/03/21 13:05:14 [log_collector] {"stage_name":"log_collector","events_processed":11467,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2293.4,"last_update":"2026-03-21T13:05:09.068803172Z"} +2026/03/21 13:05:14 ───────────────────────────────────────────────── +2026/03/21 13:05:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:05:19 [metric_collector] {"stage_name":"metric_collector","events_processed":6384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1276.8,"last_update":"2026-03-21T13:05:14.06922599Z"} +2026/03/21 13:05:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:05:14.077237957Z"} +2026/03/21 13:05:19 [detection_layer] {"stage_name":"detection_layer","events_processed":212,"events_dropped":0,"avg_latency_ms":18.278491948199676,"throughput_eps":0,"last_update":"2026-03-21T13:05:14.210638315Z"} +2026/03/21 13:05:19 [transform_engine] {"stage_name":"transform_engine","events_processed":212,"events_dropped":0,"avg_latency_ms":353.14270429020803,"throughput_eps":0,"last_update":"2026-03-21T13:05:14.210686127Z"} +2026/03/21 13:05:19 [log_collector] {"stage_name":"log_collector","events_processed":11467,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2293.4,"last_update":"2026-03-21T13:05:14.068887422Z"} +2026/03/21 13:05:19 ───────────────────────────────────────────────── +Saved state: 16 clusters, 11468 messages, reason: none +2026/03/21 13:05:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:05:24 [transform_engine] {"stage_name":"transform_engine","events_processed":213,"events_dropped":0,"avg_latency_ms":296.5661300321664,"throughput_eps":0,"last_update":"2026-03-21T13:05:19.28088958Z"} +2026/03/21 13:05:24 [log_collector] {"stage_name":"log_collector","events_processed":11467,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2293.4,"last_update":"2026-03-21T13:05:19.06807854Z"} +2026/03/21 13:05:24 [metric_collector] {"stage_name":"metric_collector","events_processed":6389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1277.8,"last_update":"2026-03-21T13:05:19.068618014Z"} +2026/03/21 13:05:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:05:19.07730298Z"} +2026/03/21 13:05:24 [detection_layer] {"stage_name":"detection_layer","events_processed":212,"events_dropped":0,"avg_latency_ms":18.278491948199676,"throughput_eps":0,"last_update":"2026-03-21T13:05:19.21148702Z"} +2026/03/21 13:05:24 ───────────────────────────────────────────────── +2026/03/21 13:05:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:05:29 [log_collector] {"stage_name":"log_collector","events_processed":11472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2294.4,"last_update":"2026-03-21T13:05:24.068143231Z"} +2026/03/21 13:05:29 [metric_collector] {"stage_name":"metric_collector","events_processed":6394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1278.8,"last_update":"2026-03-21T13:05:24.068393471Z"} +2026/03/21 13:05:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2560,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:05:24.081406969Z"} +2026/03/21 13:05:29 [detection_layer] {"stage_name":"detection_layer","events_processed":213,"events_dropped":0,"avg_latency_ms":18.860444758559744,"throughput_eps":0,"last_update":"2026-03-21T13:05:24.210609075Z"} +2026/03/21 13:05:29 [transform_engine] {"stage_name":"transform_engine","events_processed":213,"events_dropped":0,"avg_latency_ms":296.5661300321664,"throughput_eps":0,"last_update":"2026-03-21T13:05:24.210621899Z"} +2026/03/21 13:05:29 ───────────────────────────────────────────────── +2026/03/21 13:05:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:05:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:05:29.077714443Z"} +2026/03/21 13:05:34 [detection_layer] {"stage_name":"detection_layer","events_processed":213,"events_dropped":0,"avg_latency_ms":18.860444758559744,"throughput_eps":0,"last_update":"2026-03-21T13:05:29.210364214Z"} +2026/03/21 13:05:34 [transform_engine] {"stage_name":"transform_engine","events_processed":213,"events_dropped":0,"avg_latency_ms":296.5661300321664,"throughput_eps":0,"last_update":"2026-03-21T13:05:29.210344175Z"} +2026/03/21 13:05:34 [log_collector] {"stage_name":"log_collector","events_processed":11472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2294.4,"last_update":"2026-03-21T13:05:29.068389231Z"} +2026/03/21 13:05:34 [metric_collector] {"stage_name":"metric_collector","events_processed":6399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1279.8,"last_update":"2026-03-21T13:05:29.070236018Z"} +2026/03/21 13:05:34 ───────────────────────────────────────────────── +2026/03/21 13:05:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:05:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:05:34.074990193Z"} +2026/03/21 13:05:39 [detection_layer] {"stage_name":"detection_layer","events_processed":213,"events_dropped":0,"avg_latency_ms":18.860444758559744,"throughput_eps":0,"last_update":"2026-03-21T13:05:34.210241547Z"} +2026/03/21 13:05:39 [transform_engine] {"stage_name":"transform_engine","events_processed":213,"events_dropped":0,"avg_latency_ms":296.5661300321664,"throughput_eps":0,"last_update":"2026-03-21T13:05:34.210270332Z"} +2026/03/21 13:05:39 [log_collector] {"stage_name":"log_collector","events_processed":11472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2294.4,"last_update":"2026-03-21T13:05:34.068726535Z"} +2026/03/21 13:05:39 [metric_collector] {"stage_name":"metric_collector","events_processed":6404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1280.8,"last_update":"2026-03-21T13:05:34.06892216Z"} +2026/03/21 13:05:39 ───────────────────────────────────────────────── +2026/03/21 13:05:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:05:44 [log_collector] {"stage_name":"log_collector","events_processed":11472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2294.4,"last_update":"2026-03-21T13:05:39.068498796Z"} +2026/03/21 13:05:44 [metric_collector] {"stage_name":"metric_collector","events_processed":6409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1281.8,"last_update":"2026-03-21T13:05:39.070595112Z"} +2026/03/21 13:05:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2566,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:05:39.077764986Z"} +2026/03/21 13:05:44 [detection_layer] {"stage_name":"detection_layer","events_processed":213,"events_dropped":0,"avg_latency_ms":18.860444758559744,"throughput_eps":0,"last_update":"2026-03-21T13:05:39.210070105Z"} +2026/03/21 13:05:44 [transform_engine] {"stage_name":"transform_engine","events_processed":213,"events_dropped":0,"avg_latency_ms":296.5661300321664,"throughput_eps":0,"last_update":"2026-03-21T13:05:39.210050237Z"} +2026/03/21 13:05:44 ───────────────────────────────────────────────── +2026/03/21 13:05:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:05:49 [log_collector] {"stage_name":"log_collector","events_processed":11472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2294.4,"last_update":"2026-03-21T13:05:44.069133881Z"} +2026/03/21 13:05:49 [metric_collector] {"stage_name":"metric_collector","events_processed":6414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1282.8,"last_update":"2026-03-21T13:05:44.069464574Z"} +2026/03/21 13:05:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:05:44.076202982Z"} +2026/03/21 13:05:49 [detection_layer] {"stage_name":"detection_layer","events_processed":213,"events_dropped":0,"avg_latency_ms":18.860444758559744,"throughput_eps":0,"last_update":"2026-03-21T13:05:44.210756278Z"} +2026/03/21 13:05:49 [transform_engine] {"stage_name":"transform_engine","events_processed":213,"events_dropped":0,"avg_latency_ms":296.5661300321664,"throughput_eps":0,"last_update":"2026-03-21T13:05:44.209661291Z"} +2026/03/21 13:05:49 ───────────────────────────────────────────────── +2026/03/21 13:05:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:05:54 [transform_engine] {"stage_name":"transform_engine","events_processed":214,"events_dropped":0,"avg_latency_ms":270.3271572257332,"throughput_eps":0,"last_update":"2026-03-21T13:05:49.376745036Z"} +2026/03/21 13:05:54 [log_collector] {"stage_name":"log_collector","events_processed":11472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2294.4,"last_update":"2026-03-21T13:05:49.068055754Z"} +2026/03/21 13:05:54 [metric_collector] {"stage_name":"metric_collector","events_processed":6419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1283.8,"last_update":"2026-03-21T13:05:49.068342233Z"} +2026/03/21 13:05:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2570,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:05:49.075870815Z"} +2026/03/21 13:05:54 [detection_layer] {"stage_name":"detection_layer","events_processed":213,"events_dropped":0,"avg_latency_ms":18.860444758559744,"throughput_eps":0,"last_update":"2026-03-21T13:05:49.211404788Z"} +2026/03/21 13:05:54 ───────────────────────────────────────────────── +2026/03/21 13:05:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:05:59 [log_collector] {"stage_name":"log_collector","events_processed":11472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2294.4,"last_update":"2026-03-21T13:05:54.069017675Z"} +2026/03/21 13:05:59 [metric_collector] {"stage_name":"metric_collector","events_processed":6424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1284.8,"last_update":"2026-03-21T13:05:54.06899927Z"} +2026/03/21 13:05:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2572,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:05:54.075451209Z"} +2026/03/21 13:05:59 [detection_layer] {"stage_name":"detection_layer","events_processed":214,"events_dropped":0,"avg_latency_ms":17.682236206847797,"throughput_eps":0,"last_update":"2026-03-21T13:05:54.210765962Z"} +2026/03/21 13:05:59 [transform_engine] {"stage_name":"transform_engine","events_processed":214,"events_dropped":0,"avg_latency_ms":270.3271572257332,"throughput_eps":0,"last_update":"2026-03-21T13:05:54.209653081Z"} +2026/03/21 13:05:59 ───────────────────────────────────────────────── +2026/03/21 13:06:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:06:04 [log_collector] {"stage_name":"log_collector","events_processed":11472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2294.4,"last_update":"2026-03-21T13:05:59.068940867Z"} +2026/03/21 13:06:04 [metric_collector] {"stage_name":"metric_collector","events_processed":6429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1285.8,"last_update":"2026-03-21T13:05:59.06893174Z"} +2026/03/21 13:06:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:05:59.075795578Z"} +2026/03/21 13:06:04 [detection_layer] {"stage_name":"detection_layer","events_processed":214,"events_dropped":0,"avg_latency_ms":17.682236206847797,"throughput_eps":0,"last_update":"2026-03-21T13:05:59.210051563Z"} +2026/03/21 13:06:04 [transform_engine] {"stage_name":"transform_engine","events_processed":214,"events_dropped":0,"avg_latency_ms":270.3271572257332,"throughput_eps":0,"last_update":"2026-03-21T13:05:59.210029771Z"} +2026/03/21 13:06:04 ───────────────────────────────────────────────── +2026/03/21 13:06:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:06:09 [log_collector] {"stage_name":"log_collector","events_processed":11472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2294.4,"last_update":"2026-03-21T13:06:04.068740413Z"} +2026/03/21 13:06:09 [metric_collector] {"stage_name":"metric_collector","events_processed":6434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1286.8,"last_update":"2026-03-21T13:06:04.068884429Z"} +2026/03/21 13:06:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2576,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:06:04.075777673Z"} +2026/03/21 13:06:09 [detection_layer] {"stage_name":"detection_layer","events_processed":214,"events_dropped":0,"avg_latency_ms":17.682236206847797,"throughput_eps":0,"last_update":"2026-03-21T13:06:04.209970538Z"} +2026/03/21 13:06:09 [transform_engine] {"stage_name":"transform_engine","events_processed":214,"events_dropped":0,"avg_latency_ms":270.3271572257332,"throughput_eps":0,"last_update":"2026-03-21T13:06:04.209993361Z"} +2026/03/21 13:06:09 ───────────────────────────────────────────────── +2026/03/21 13:06:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:06:14 [transform_engine] {"stage_name":"transform_engine","events_processed":214,"events_dropped":0,"avg_latency_ms":270.3271572257332,"throughput_eps":0,"last_update":"2026-03-21T13:06:09.210592498Z"} +2026/03/21 13:06:14 [log_collector] {"stage_name":"log_collector","events_processed":11483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2296.6,"last_update":"2026-03-21T13:06:09.068734021Z"} +2026/03/21 13:06:14 [metric_collector] {"stage_name":"metric_collector","events_processed":6439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1287.8,"last_update":"2026-03-21T13:06:09.069093329Z"} +2026/03/21 13:06:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:06:09.075341919Z"} +2026/03/21 13:06:14 [detection_layer] {"stage_name":"detection_layer","events_processed":214,"events_dropped":0,"avg_latency_ms":17.682236206847797,"throughput_eps":0,"last_update":"2026-03-21T13:06:09.210691528Z"} +2026/03/21 13:06:14 ───────────────────────────────────────────────── +2026/03/21 13:06:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:06:19 [metric_collector] {"stage_name":"metric_collector","events_processed":6444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1288.8,"last_update":"2026-03-21T13:06:14.068268171Z"} +2026/03/21 13:06:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2580,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:06:14.07661507Z"} +2026/03/21 13:06:19 [detection_layer] {"stage_name":"detection_layer","events_processed":214,"events_dropped":0,"avg_latency_ms":17.682236206847797,"throughput_eps":0,"last_update":"2026-03-21T13:06:14.209952494Z"} +2026/03/21 13:06:19 [transform_engine] {"stage_name":"transform_engine","events_processed":214,"events_dropped":0,"avg_latency_ms":270.3271572257332,"throughput_eps":0,"last_update":"2026-03-21T13:06:14.209932827Z"} +2026/03/21 13:06:19 [log_collector] {"stage_name":"log_collector","events_processed":11497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2299.4,"last_update":"2026-03-21T13:06:14.068070713Z"} +2026/03/21 13:06:19 ───────────────────────────────────────────────── +Saved state: 16 clusters, 11742 messages, reason: none +2026/03/21 13:06:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:06:24 [log_collector] {"stage_name":"log_collector","events_processed":11711,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2342.2,"last_update":"2026-03-21T13:06:19.068706201Z"} +2026/03/21 13:06:24 [metric_collector] {"stage_name":"metric_collector","events_processed":6449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1289.8,"last_update":"2026-03-21T13:06:19.068936101Z"} +2026/03/21 13:06:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:06:19.075785592Z"} +2026/03/21 13:06:24 [detection_layer] {"stage_name":"detection_layer","events_processed":214,"events_dropped":0,"avg_latency_ms":17.682236206847797,"throughput_eps":0,"last_update":"2026-03-21T13:06:19.209844248Z"} +2026/03/21 13:06:24 [transform_engine] {"stage_name":"transform_engine","events_processed":214,"events_dropped":0,"avg_latency_ms":270.3271572257332,"throughput_eps":0,"last_update":"2026-03-21T13:06:19.2098344Z"} +2026/03/21 13:06:24 ───────────────────────────────────────────────── +2026/03/21 13:06:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:06:29 [log_collector] {"stage_name":"log_collector","events_processed":11762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2352.4,"last_update":"2026-03-21T13:06:24.06870381Z"} +2026/03/21 13:06:29 [metric_collector] {"stage_name":"metric_collector","events_processed":6454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1290.8,"last_update":"2026-03-21T13:06:24.068984538Z"} +2026/03/21 13:06:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:06:24.077817908Z"} +2026/03/21 13:06:29 [detection_layer] {"stage_name":"detection_layer","events_processed":215,"events_dropped":0,"avg_latency_ms":17.67318776547824,"throughput_eps":0,"last_update":"2026-03-21T13:06:24.209933603Z"} +2026/03/21 13:06:29 [transform_engine] {"stage_name":"transform_engine","events_processed":215,"events_dropped":0,"avg_latency_ms":849.2491077805865,"throughput_eps":0,"last_update":"2026-03-21T13:06:24.21004203Z"} +2026/03/21 13:06:29 ───────────────────────────────────────────────── +2026/03/21 13:06:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:06:34 [metric_collector] {"stage_name":"metric_collector","events_processed":6459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1291.8,"last_update":"2026-03-21T13:06:29.068305511Z"} +2026/03/21 13:06:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2586,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:06:29.077397977Z"} +2026/03/21 13:06:34 [detection_layer] {"stage_name":"detection_layer","events_processed":215,"events_dropped":0,"avg_latency_ms":17.67318776547824,"throughput_eps":0,"last_update":"2026-03-21T13:06:29.210820345Z"} +2026/03/21 13:06:34 [transform_engine] {"stage_name":"transform_engine","events_processed":215,"events_dropped":0,"avg_latency_ms":849.2491077805865,"throughput_eps":0,"last_update":"2026-03-21T13:06:29.210788584Z"} +2026/03/21 13:06:34 [log_collector] {"stage_name":"log_collector","events_processed":11822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2364.4,"last_update":"2026-03-21T13:06:29.068073757Z"} +2026/03/21 13:06:34 ───────────────────────────────────────────────── +2026/03/21 13:06:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:06:39 [log_collector] {"stage_name":"log_collector","events_processed":11822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2364.4,"last_update":"2026-03-21T13:06:34.06911105Z"} +2026/03/21 13:06:39 [metric_collector] {"stage_name":"metric_collector","events_processed":6464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1292.8,"last_update":"2026-03-21T13:06:34.069316083Z"} +2026/03/21 13:06:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2588,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:06:34.078191182Z"} +2026/03/21 13:06:39 [detection_layer] {"stage_name":"detection_layer","events_processed":215,"events_dropped":0,"avg_latency_ms":17.67318776547824,"throughput_eps":0,"last_update":"2026-03-21T13:06:34.210584789Z"} +2026/03/21 13:06:39 [transform_engine] {"stage_name":"transform_engine","events_processed":215,"events_dropped":0,"avg_latency_ms":849.2491077805865,"throughput_eps":0,"last_update":"2026-03-21T13:06:34.210604878Z"} +2026/03/21 13:06:39 ───────────────────────────────────────────────── +2026/03/21 13:06:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:06:44 [log_collector] {"stage_name":"log_collector","events_processed":11822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2364.4,"last_update":"2026-03-21T13:06:39.068774893Z"} +2026/03/21 13:06:44 [metric_collector] {"stage_name":"metric_collector","events_processed":6469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1293.8,"last_update":"2026-03-21T13:06:39.068952022Z"} +2026/03/21 13:06:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:06:39.077654211Z"} +2026/03/21 13:06:44 [detection_layer] {"stage_name":"detection_layer","events_processed":215,"events_dropped":0,"avg_latency_ms":17.67318776547824,"throughput_eps":0,"last_update":"2026-03-21T13:06:39.209928409Z"} +2026/03/21 13:06:44 [transform_engine] {"stage_name":"transform_engine","events_processed":215,"events_dropped":0,"avg_latency_ms":849.2491077805865,"throughput_eps":0,"last_update":"2026-03-21T13:06:39.209901637Z"} +2026/03/21 13:06:44 ───────────────────────────────────────────────── +2026/03/21 13:06:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:06:49 [detection_layer] {"stage_name":"detection_layer","events_processed":215,"events_dropped":0,"avg_latency_ms":17.67318776547824,"throughput_eps":0,"last_update":"2026-03-21T13:06:44.210542192Z"} +2026/03/21 13:06:49 [transform_engine] {"stage_name":"transform_engine","events_processed":215,"events_dropped":0,"avg_latency_ms":849.2491077805865,"throughput_eps":0,"last_update":"2026-03-21T13:06:44.210653786Z"} +2026/03/21 13:06:49 [log_collector] {"stage_name":"log_collector","events_processed":11822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2364.4,"last_update":"2026-03-21T13:06:49.068394302Z"} +2026/03/21 13:06:49 [metric_collector] {"stage_name":"metric_collector","events_processed":6474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1294.8,"last_update":"2026-03-21T13:06:44.068615997Z"} +2026/03/21 13:06:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2592,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:06:44.077293439Z"} +2026/03/21 13:06:49 ───────────────────────────────────────────────── +2026/03/21 13:06:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:06:54 [metric_collector] {"stage_name":"metric_collector","events_processed":6479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1295.8,"last_update":"2026-03-21T13:06:49.068869172Z"} +2026/03/21 13:06:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:06:49.07758667Z"} +2026/03/21 13:06:54 [detection_layer] {"stage_name":"detection_layer","events_processed":215,"events_dropped":0,"avg_latency_ms":17.67318776547824,"throughput_eps":0,"last_update":"2026-03-21T13:06:49.209868652Z"} +2026/03/21 13:06:54 [transform_engine] {"stage_name":"transform_engine","events_processed":216,"events_dropped":0,"avg_latency_ms":702.4285822244693,"throughput_eps":0,"last_update":"2026-03-21T13:06:49.324913918Z"} +2026/03/21 13:06:54 [log_collector] {"stage_name":"log_collector","events_processed":11822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2364.4,"last_update":"2026-03-21T13:06:49.068394302Z"} +2026/03/21 13:06:54 ───────────────────────────────────────────────── +2026/03/21 13:06:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:06:59 [metric_collector] {"stage_name":"metric_collector","events_processed":6484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1296.8,"last_update":"2026-03-21T13:06:54.069437761Z"} +2026/03/21 13:06:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:06:54.078279077Z"} +2026/03/21 13:06:59 [detection_layer] {"stage_name":"detection_layer","events_processed":216,"events_dropped":0,"avg_latency_ms":18.686982612382593,"throughput_eps":0,"last_update":"2026-03-21T13:06:54.210559978Z"} +2026/03/21 13:06:59 [transform_engine] {"stage_name":"transform_engine","events_processed":216,"events_dropped":0,"avg_latency_ms":702.4285822244693,"throughput_eps":0,"last_update":"2026-03-21T13:06:54.210526182Z"} +2026/03/21 13:06:59 [log_collector] {"stage_name":"log_collector","events_processed":11822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2364.4,"last_update":"2026-03-21T13:06:54.06887822Z"} +2026/03/21 13:06:59 ───────────────────────────────────────────────── +2026/03/21 13:07:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:07:04 [log_collector] {"stage_name":"log_collector","events_processed":11822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2364.4,"last_update":"2026-03-21T13:06:59.068922476Z"} +2026/03/21 13:07:04 [metric_collector] {"stage_name":"metric_collector","events_processed":6489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1297.8,"last_update":"2026-03-21T13:06:59.069121758Z"} +2026/03/21 13:07:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:06:59.078445788Z"} +2026/03/21 13:07:04 [detection_layer] {"stage_name":"detection_layer","events_processed":216,"events_dropped":0,"avg_latency_ms":18.686982612382593,"throughput_eps":0,"last_update":"2026-03-21T13:06:59.210762676Z"} +2026/03/21 13:07:04 [transform_engine] {"stage_name":"transform_engine","events_processed":216,"events_dropped":0,"avg_latency_ms":702.4285822244693,"throughput_eps":0,"last_update":"2026-03-21T13:06:59.210656773Z"} +2026/03/21 13:07:04 ───────────────────────────────────────────────── +2026/03/21 13:07:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:07:09 [detection_layer] {"stage_name":"detection_layer","events_processed":216,"events_dropped":0,"avg_latency_ms":18.686982612382593,"throughput_eps":0,"last_update":"2026-03-21T13:07:04.210336132Z"} +2026/03/21 13:07:09 [transform_engine] {"stage_name":"transform_engine","events_processed":216,"events_dropped":0,"avg_latency_ms":702.4285822244693,"throughput_eps":0,"last_update":"2026-03-21T13:07:04.210440071Z"} +2026/03/21 13:07:09 [log_collector] {"stage_name":"log_collector","events_processed":11822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2364.4,"last_update":"2026-03-21T13:07:04.068309124Z"} +2026/03/21 13:07:09 [metric_collector] {"stage_name":"metric_collector","events_processed":6494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1298.8,"last_update":"2026-03-21T13:07:04.068712998Z"} +2026/03/21 13:07:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:07:04.077086857Z"} +2026/03/21 13:07:09 ───────────────────────────────────────────────── +2026/03/21 13:07:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:07:14 [log_collector] {"stage_name":"log_collector","events_processed":11822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2364.4,"last_update":"2026-03-21T13:07:09.068733884Z"} +2026/03/21 13:07:14 [metric_collector] {"stage_name":"metric_collector","events_processed":6499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1299.8,"last_update":"2026-03-21T13:07:09.06908662Z"} +2026/03/21 13:07:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2602,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:07:09.077330861Z"} +2026/03/21 13:07:14 [detection_layer] {"stage_name":"detection_layer","events_processed":216,"events_dropped":0,"avg_latency_ms":18.686982612382593,"throughput_eps":0,"last_update":"2026-03-21T13:07:09.210582339Z"} +2026/03/21 13:07:14 [transform_engine] {"stage_name":"transform_engine","events_processed":216,"events_dropped":0,"avg_latency_ms":702.4285822244693,"throughput_eps":0,"last_update":"2026-03-21T13:07:09.210689564Z"} +2026/03/21 13:07:14 ───────────────────────────────────────────────── +2026/03/21 13:07:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:07:19 [transform_engine] {"stage_name":"transform_engine","events_processed":216,"events_dropped":0,"avg_latency_ms":702.4285822244693,"throughput_eps":0,"last_update":"2026-03-21T13:07:14.209660842Z"} +2026/03/21 13:07:19 [log_collector] {"stage_name":"log_collector","events_processed":11825,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2365,"last_update":"2026-03-21T13:07:14.068549158Z"} +2026/03/21 13:07:19 [metric_collector] {"stage_name":"metric_collector","events_processed":6504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1300.8,"last_update":"2026-03-21T13:07:14.068907545Z"} +2026/03/21 13:07:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:07:14.078508886Z"} +2026/03/21 13:07:19 [detection_layer] {"stage_name":"detection_layer","events_processed":216,"events_dropped":0,"avg_latency_ms":18.686982612382593,"throughput_eps":0,"last_update":"2026-03-21T13:07:14.210772231Z"} +2026/03/21 13:07:19 ───────────────────────────────────────────────── +2026/03/21 13:07:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:07:24 [transform_engine] {"stage_name":"transform_engine","events_processed":216,"events_dropped":0,"avg_latency_ms":702.4285822244693,"throughput_eps":0,"last_update":"2026-03-21T13:07:14.209660842Z"} +2026/03/21 13:07:24 [log_collector] {"stage_name":"log_collector","events_processed":11825,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2365,"last_update":"2026-03-21T13:07:19.068500674Z"} +2026/03/21 13:07:24 [metric_collector] {"stage_name":"metric_collector","events_processed":6509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1301.8,"last_update":"2026-03-21T13:07:19.068838432Z"} +2026/03/21 13:07:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:07:19.077957659Z"} +2026/03/21 13:07:24 [detection_layer] {"stage_name":"detection_layer","events_processed":216,"events_dropped":0,"avg_latency_ms":18.686982612382593,"throughput_eps":0,"last_update":"2026-03-21T13:07:19.210331445Z"} +2026/03/21 13:07:24 ───────────────────────────────────────────────── +Saved state: 16 clusters, 11836 messages, reason: none +2026/03/21 13:07:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:07:29 [log_collector] {"stage_name":"log_collector","events_processed":11835,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2367,"last_update":"2026-03-21T13:07:24.068699135Z"} +2026/03/21 13:07:29 [metric_collector] {"stage_name":"metric_collector","events_processed":6514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1302.8,"last_update":"2026-03-21T13:07:24.069012736Z"} +2026/03/21 13:07:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:07:24.075106288Z"} +2026/03/21 13:07:29 [detection_layer] {"stage_name":"detection_layer","events_processed":216,"events_dropped":0,"avg_latency_ms":18.686982612382593,"throughput_eps":0,"last_update":"2026-03-21T13:07:24.210320896Z"} +2026/03/21 13:07:29 [transform_engine] {"stage_name":"transform_engine","events_processed":217,"events_dropped":0,"avg_latency_ms":1571.2725025795758,"throughput_eps":0,"last_update":"2026-03-21T13:07:24.25701158Z"} +2026/03/21 13:07:29 ───────────────────────────────────────────────── +2026/03/21 13:07:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:07:34 [transform_engine] {"stage_name":"transform_engine","events_processed":217,"events_dropped":0,"avg_latency_ms":1571.2725025795758,"throughput_eps":0,"last_update":"2026-03-21T13:07:29.210464374Z"} +2026/03/21 13:07:34 [log_collector] {"stage_name":"log_collector","events_processed":11842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2368.4,"last_update":"2026-03-21T13:07:29.069397235Z"} +2026/03/21 13:07:34 [metric_collector] {"stage_name":"metric_collector","events_processed":6519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1303.8,"last_update":"2026-03-21T13:07:29.069718491Z"} +2026/03/21 13:07:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:07:29.083238137Z"} +2026/03/21 13:07:34 [detection_layer] {"stage_name":"detection_layer","events_processed":217,"events_dropped":0,"avg_latency_ms":17.424640889906076,"throughput_eps":0,"last_update":"2026-03-21T13:07:29.210443374Z"} +2026/03/21 13:07:34 ───────────────────────────────────────────────── +2026/03/21 13:07:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:07:39 [log_collector] {"stage_name":"log_collector","events_processed":11852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2370.4,"last_update":"2026-03-21T13:07:34.068050742Z"} +2026/03/21 13:07:39 [metric_collector] {"stage_name":"metric_collector","events_processed":6524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1304.8,"last_update":"2026-03-21T13:07:34.068545579Z"} +2026/03/21 13:07:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:07:34.07778697Z"} +2026/03/21 13:07:39 [detection_layer] {"stage_name":"detection_layer","events_processed":217,"events_dropped":0,"avg_latency_ms":17.424640889906076,"throughput_eps":0,"last_update":"2026-03-21T13:07:34.210407389Z"} +2026/03/21 13:07:39 [transform_engine] {"stage_name":"transform_engine","events_processed":217,"events_dropped":0,"avg_latency_ms":1571.2725025795758,"throughput_eps":0,"last_update":"2026-03-21T13:07:34.210226893Z"} +2026/03/21 13:07:39 ───────────────────────────────────────────────── +2026/03/21 13:07:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:07:44 [log_collector] {"stage_name":"log_collector","events_processed":11852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2370.4,"last_update":"2026-03-21T13:07:39.068868214Z"} +2026/03/21 13:07:44 [metric_collector] {"stage_name":"metric_collector","events_processed":6529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1305.8,"last_update":"2026-03-21T13:07:39.069277499Z"} +2026/03/21 13:07:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:07:39.077909733Z"} +2026/03/21 13:07:44 [detection_layer] {"stage_name":"detection_layer","events_processed":217,"events_dropped":0,"avg_latency_ms":17.424640889906076,"throughput_eps":0,"last_update":"2026-03-21T13:07:39.210427153Z"} +2026/03/21 13:07:44 [transform_engine] {"stage_name":"transform_engine","events_processed":217,"events_dropped":0,"avg_latency_ms":1571.2725025795758,"throughput_eps":0,"last_update":"2026-03-21T13:07:39.210331641Z"} +2026/03/21 13:07:44 ───────────────────────────────────────────────── +2026/03/21 13:07:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:07:49 [transform_engine] {"stage_name":"transform_engine","events_processed":217,"events_dropped":0,"avg_latency_ms":1571.2725025795758,"throughput_eps":0,"last_update":"2026-03-21T13:07:44.209745587Z"} +2026/03/21 13:07:49 [log_collector] {"stage_name":"log_collector","events_processed":11852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2370.4,"last_update":"2026-03-21T13:07:49.06846323Z"} +2026/03/21 13:07:49 [metric_collector] {"stage_name":"metric_collector","events_processed":6534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1306.8,"last_update":"2026-03-21T13:07:44.068675545Z"} +2026/03/21 13:07:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:07:44.078581248Z"} +2026/03/21 13:07:49 [detection_layer] {"stage_name":"detection_layer","events_processed":217,"events_dropped":0,"avg_latency_ms":17.424640889906076,"throughput_eps":0,"last_update":"2026-03-21T13:07:44.209883631Z"} +2026/03/21 13:07:49 ───────────────────────────────────────────────── +2026/03/21 13:07:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:07:54 [metric_collector] {"stage_name":"metric_collector","events_processed":6539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1307.8,"last_update":"2026-03-21T13:07:49.069104288Z"} +2026/03/21 13:07:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:07:49.077832637Z"} +2026/03/21 13:07:54 [detection_layer] {"stage_name":"detection_layer","events_processed":217,"events_dropped":0,"avg_latency_ms":17.424640889906076,"throughput_eps":0,"last_update":"2026-03-21T13:07:49.210181425Z"} +2026/03/21 13:07:54 [transform_engine] {"stage_name":"transform_engine","events_processed":218,"events_dropped":0,"avg_latency_ms":1279.3423772636609,"throughput_eps":0,"last_update":"2026-03-21T13:07:49.321833329Z"} +2026/03/21 13:07:54 [log_collector] {"stage_name":"log_collector","events_processed":11852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2370.4,"last_update":"2026-03-21T13:07:49.06846323Z"} +2026/03/21 13:07:54 ───────────────────────────────────────────────── +2026/03/21 13:07:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:07:59 [log_collector] {"stage_name":"log_collector","events_processed":11852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2370.4,"last_update":"2026-03-21T13:07:54.068802466Z"} +2026/03/21 13:07:59 [metric_collector] {"stage_name":"metric_collector","events_processed":6544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1308.8,"last_update":"2026-03-21T13:07:54.06919596Z"} +2026/03/21 13:07:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2620,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:07:54.078286823Z"} +2026/03/21 13:07:59 [detection_layer] {"stage_name":"detection_layer","events_processed":218,"events_dropped":0,"avg_latency_ms":17.63102131192486,"throughput_eps":0,"last_update":"2026-03-21T13:07:54.210702459Z"} +2026/03/21 13:07:59 [transform_engine] {"stage_name":"transform_engine","events_processed":218,"events_dropped":0,"avg_latency_ms":1279.3423772636609,"throughput_eps":0,"last_update":"2026-03-21T13:07:54.210670697Z"} +2026/03/21 13:07:59 ───────────────────────────────────────────────── +2026/03/21 13:08:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:08:04 [log_collector] {"stage_name":"log_collector","events_processed":11852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2370.4,"last_update":"2026-03-21T13:07:59.068260376Z"} +2026/03/21 13:08:04 [metric_collector] {"stage_name":"metric_collector","events_processed":6549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1309.8,"last_update":"2026-03-21T13:07:59.068678356Z"} +2026/03/21 13:08:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2622,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:07:59.077760263Z"} +2026/03/21 13:08:04 [detection_layer] {"stage_name":"detection_layer","events_processed":218,"events_dropped":0,"avg_latency_ms":17.63102131192486,"throughput_eps":0,"last_update":"2026-03-21T13:07:59.210003477Z"} +2026/03/21 13:08:04 [transform_engine] {"stage_name":"transform_engine","events_processed":218,"events_dropped":0,"avg_latency_ms":1279.3423772636609,"throughput_eps":0,"last_update":"2026-03-21T13:07:59.209973219Z"} +2026/03/21 13:08:04 ───────────────────────────────────────────────── +2026/03/21 13:08:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:08:09 [log_collector] {"stage_name":"log_collector","events_processed":11855,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2371,"last_update":"2026-03-21T13:08:04.068710477Z"} +2026/03/21 13:08:09 [metric_collector] {"stage_name":"metric_collector","events_processed":6554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1310.8,"last_update":"2026-03-21T13:08:04.069024017Z"} +2026/03/21 13:08:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:08:04.075433655Z"} +2026/03/21 13:08:09 [detection_layer] {"stage_name":"detection_layer","events_processed":218,"events_dropped":0,"avg_latency_ms":17.63102131192486,"throughput_eps":0,"last_update":"2026-03-21T13:08:04.210665534Z"} +2026/03/21 13:08:09 [transform_engine] {"stage_name":"transform_engine","events_processed":218,"events_dropped":0,"avg_latency_ms":1279.3423772636609,"throughput_eps":0,"last_update":"2026-03-21T13:08:04.210707425Z"} +2026/03/21 13:08:09 ───────────────────────────────────────────────── +2026/03/21 13:08:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:08:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:08:09.078934693Z"} +2026/03/21 13:08:14 [detection_layer] {"stage_name":"detection_layer","events_processed":218,"events_dropped":0,"avg_latency_ms":17.63102131192486,"throughput_eps":0,"last_update":"2026-03-21T13:08:09.210420596Z"} +2026/03/21 13:08:14 [transform_engine] {"stage_name":"transform_engine","events_processed":218,"events_dropped":0,"avg_latency_ms":1279.3423772636609,"throughput_eps":0,"last_update":"2026-03-21T13:08:09.210279647Z"} +2026/03/21 13:08:14 [log_collector] {"stage_name":"log_collector","events_processed":11866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2373.2,"last_update":"2026-03-21T13:08:09.068847031Z"} +2026/03/21 13:08:14 [metric_collector] {"stage_name":"metric_collector","events_processed":6558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1311.6,"last_update":"2026-03-21T13:08:09.068728605Z"} +2026/03/21 13:08:14 ───────────────────────────────────────────────── +2026/03/21 13:08:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:08:19 [log_collector] {"stage_name":"log_collector","events_processed":11866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2373.2,"last_update":"2026-03-21T13:08:14.068835613Z"} +2026/03/21 13:08:19 [metric_collector] {"stage_name":"metric_collector","events_processed":6564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1312.8,"last_update":"2026-03-21T13:08:14.069570852Z"} +2026/03/21 13:08:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:08:14.07768292Z"} +2026/03/21 13:08:19 [detection_layer] {"stage_name":"detection_layer","events_processed":218,"events_dropped":0,"avg_latency_ms":17.63102131192486,"throughput_eps":0,"last_update":"2026-03-21T13:08:14.210073737Z"} +2026/03/21 13:08:19 [transform_engine] {"stage_name":"transform_engine","events_processed":218,"events_dropped":0,"avg_latency_ms":1279.3423772636609,"throughput_eps":0,"last_update":"2026-03-21T13:08:14.210188147Z"} +2026/03/21 13:08:19 ───────────────────────────────────────────────── +2026/03/21 13:08:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:08:24 [detection_layer] {"stage_name":"detection_layer","events_processed":218,"events_dropped":0,"avg_latency_ms":17.63102131192486,"throughput_eps":0,"last_update":"2026-03-21T13:08:19.210822728Z"} +2026/03/21 13:08:24 [transform_engine] {"stage_name":"transform_engine","events_processed":219,"events_dropped":0,"avg_latency_ms":1046.0594792109287,"throughput_eps":0,"last_update":"2026-03-21T13:08:19.322582728Z"} +2026/03/21 13:08:24 [log_collector] {"stage_name":"log_collector","events_processed":11866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2373.2,"last_update":"2026-03-21T13:08:19.068785364Z"} +2026/03/21 13:08:24 [metric_collector] {"stage_name":"metric_collector","events_processed":6569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1313.8,"last_update":"2026-03-21T13:08:19.069001027Z"} +2026/03/21 13:08:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:08:19.078389511Z"} +2026/03/21 13:08:24 ───────────────────────────────────────────────── +2026/03/21 13:08:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:08:29 [log_collector] {"stage_name":"log_collector","events_processed":11866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2373.2,"last_update":"2026-03-21T13:08:24.068703849Z"} +2026/03/21 13:08:29 [metric_collector] {"stage_name":"metric_collector","events_processed":6574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1314.8,"last_update":"2026-03-21T13:08:24.068990307Z"} +2026/03/21 13:08:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2632,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:08:24.07864493Z"} +2026/03/21 13:08:29 [detection_layer] {"stage_name":"detection_layer","events_processed":219,"events_dropped":0,"avg_latency_ms":18.01758964953989,"throughput_eps":0,"last_update":"2026-03-21T13:08:24.210302922Z"} +2026/03/21 13:08:29 [transform_engine] {"stage_name":"transform_engine","events_processed":219,"events_dropped":0,"avg_latency_ms":1046.0594792109287,"throughput_eps":0,"last_update":"2026-03-21T13:08:24.210143667Z"} +2026/03/21 13:08:29 ───────────────────────────────────────────────── +2026/03/21 13:08:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:08:34 [log_collector] {"stage_name":"log_collector","events_processed":11866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2373.2,"last_update":"2026-03-21T13:08:29.06807562Z"} +2026/03/21 13:08:34 [metric_collector] {"stage_name":"metric_collector","events_processed":6579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1315.8,"last_update":"2026-03-21T13:08:29.068611386Z"} +2026/03/21 13:08:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:08:29.078278202Z"} +2026/03/21 13:08:34 [detection_layer] {"stage_name":"detection_layer","events_processed":219,"events_dropped":0,"avg_latency_ms":18.01758964953989,"throughput_eps":0,"last_update":"2026-03-21T13:08:29.210658007Z"} +2026/03/21 13:08:34 [transform_engine] {"stage_name":"transform_engine","events_processed":219,"events_dropped":0,"avg_latency_ms":1046.0594792109287,"throughput_eps":0,"last_update":"2026-03-21T13:08:29.210536545Z"} +2026/03/21 13:08:34 ───────────────────────────────────────────────── +2026/03/21 13:08:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:08:39 [metric_collector] {"stage_name":"metric_collector","events_processed":6584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1316.8,"last_update":"2026-03-21T13:08:34.068637824Z"} +2026/03/21 13:08:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:08:34.078500175Z"} +2026/03/21 13:08:39 [detection_layer] {"stage_name":"detection_layer","events_processed":219,"events_dropped":0,"avg_latency_ms":18.01758964953989,"throughput_eps":0,"last_update":"2026-03-21T13:08:34.210918133Z"} +2026/03/21 13:08:39 [transform_engine] {"stage_name":"transform_engine","events_processed":219,"events_dropped":0,"avg_latency_ms":1046.0594792109287,"throughput_eps":0,"last_update":"2026-03-21T13:08:34.209681605Z"} +2026/03/21 13:08:39 [log_collector] {"stage_name":"log_collector","events_processed":11866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2373.2,"last_update":"2026-03-21T13:08:34.068078001Z"} +2026/03/21 13:08:39 ───────────────────────────────────────────────── +2026/03/21 13:08:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:08:44 [detection_layer] {"stage_name":"detection_layer","events_processed":219,"events_dropped":0,"avg_latency_ms":18.01758964953989,"throughput_eps":0,"last_update":"2026-03-21T13:08:39.20989899Z"} +2026/03/21 13:08:44 [transform_engine] {"stage_name":"transform_engine","events_processed":219,"events_dropped":0,"avg_latency_ms":1046.0594792109287,"throughput_eps":0,"last_update":"2026-03-21T13:08:39.209791795Z"} +2026/03/21 13:08:44 [log_collector] {"stage_name":"log_collector","events_processed":11866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2373.2,"last_update":"2026-03-21T13:08:39.068778703Z"} +2026/03/21 13:08:44 [metric_collector] {"stage_name":"metric_collector","events_processed":6589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1317.8,"last_update":"2026-03-21T13:08:39.06907947Z"} +2026/03/21 13:08:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:08:39.078614734Z"} +2026/03/21 13:08:44 ───────────────────────────────────────────────── +2026/03/21 13:08:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:08:49 [log_collector] {"stage_name":"log_collector","events_processed":11866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2373.2,"last_update":"2026-03-21T13:08:44.068665941Z"} +2026/03/21 13:08:49 [metric_collector] {"stage_name":"metric_collector","events_processed":6594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1318.8,"last_update":"2026-03-21T13:08:44.069064033Z"} +2026/03/21 13:08:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2640,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:08:44.07814654Z"} +2026/03/21 13:08:49 [detection_layer] {"stage_name":"detection_layer","events_processed":219,"events_dropped":0,"avg_latency_ms":18.01758964953989,"throughput_eps":0,"last_update":"2026-03-21T13:08:44.210581299Z"} +2026/03/21 13:08:49 [transform_engine] {"stage_name":"transform_engine","events_processed":219,"events_dropped":0,"avg_latency_ms":1046.0594792109287,"throughput_eps":0,"last_update":"2026-03-21T13:08:44.210626095Z"} +2026/03/21 13:08:49 ───────────────────────────────────────────────── +2026/03/21 13:08:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:08:54 [metric_collector] {"stage_name":"metric_collector","events_processed":6599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1319.8,"last_update":"2026-03-21T13:08:49.069407957Z"} +2026/03/21 13:08:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:08:49.077610768Z"} +2026/03/21 13:08:54 [detection_layer] {"stage_name":"detection_layer","events_processed":219,"events_dropped":0,"avg_latency_ms":18.01758964953989,"throughput_eps":0,"last_update":"2026-03-21T13:08:49.209860854Z"} +2026/03/21 13:08:54 [transform_engine] {"stage_name":"transform_engine","events_processed":220,"events_dropped":0,"avg_latency_ms":850.957634368743,"throughput_eps":0,"last_update":"2026-03-21T13:08:49.280455393Z"} +2026/03/21 13:08:54 [log_collector] {"stage_name":"log_collector","events_processed":11866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2373.2,"last_update":"2026-03-21T13:08:49.068763402Z"} +2026/03/21 13:08:54 ───────────────────────────────────────────────── +2026/03/21 13:08:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:08:59 [log_collector] {"stage_name":"log_collector","events_processed":11866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2373.2,"last_update":"2026-03-21T13:08:54.068540383Z"} +2026/03/21 13:08:59 [metric_collector] {"stage_name":"metric_collector","events_processed":6603,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1320.6,"last_update":"2026-03-21T13:08:54.06823028Z"} +2026/03/21 13:08:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:08:54.077752729Z"} +2026/03/21 13:08:59 [detection_layer] {"stage_name":"detection_layer","events_processed":220,"events_dropped":0,"avg_latency_ms":18.655966719631913,"throughput_eps":0,"last_update":"2026-03-21T13:08:54.209990462Z"} +2026/03/21 13:08:59 [transform_engine] {"stage_name":"transform_engine","events_processed":220,"events_dropped":0,"avg_latency_ms":850.957634368743,"throughput_eps":0,"last_update":"2026-03-21T13:08:54.210002234Z"} +2026/03/21 13:08:59 ───────────────────────────────────────────────── +2026/03/21 13:09:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:09:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2646,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:08:59.078454396Z"} +2026/03/21 13:09:04 [detection_layer] {"stage_name":"detection_layer","events_processed":220,"events_dropped":0,"avg_latency_ms":18.655966719631913,"throughput_eps":0,"last_update":"2026-03-21T13:08:59.210700254Z"} +2026/03/21 13:09:04 [transform_engine] {"stage_name":"transform_engine","events_processed":220,"events_dropped":0,"avg_latency_ms":850.957634368743,"throughput_eps":0,"last_update":"2026-03-21T13:08:59.210711585Z"} +2026/03/21 13:09:04 [log_collector] {"stage_name":"log_collector","events_processed":11866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2373.2,"last_update":"2026-03-21T13:08:59.0689135Z"} +2026/03/21 13:09:04 [metric_collector] {"stage_name":"metric_collector","events_processed":6609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1321.8,"last_update":"2026-03-21T13:08:59.069199629Z"} +2026/03/21 13:09:04 ───────────────────────────────────────────────── +Saved state: 16 clusters, 11867 messages, reason: none +2026/03/21 13:09:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:09:09 [transform_engine] {"stage_name":"transform_engine","events_processed":220,"events_dropped":0,"avg_latency_ms":850.957634368743,"throughput_eps":0,"last_update":"2026-03-21T13:09:04.210757189Z"} +2026/03/21 13:09:09 [log_collector] {"stage_name":"log_collector","events_processed":11866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2373.2,"last_update":"2026-03-21T13:09:04.068146748Z"} +2026/03/21 13:09:09 [metric_collector] {"stage_name":"metric_collector","events_processed":6614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1322.8,"last_update":"2026-03-21T13:09:04.068719195Z"} +2026/03/21 13:09:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:09:04.078368647Z"} +2026/03/21 13:09:09 [detection_layer] {"stage_name":"detection_layer","events_processed":220,"events_dropped":0,"avg_latency_ms":18.655966719631913,"throughput_eps":0,"last_update":"2026-03-21T13:09:04.21074235Z"} +2026/03/21 13:09:09 ───────────────────────────────────────────────── +2026/03/21 13:09:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:09:14 [log_collector] {"stage_name":"log_collector","events_processed":11871,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2374.2,"last_update":"2026-03-21T13:09:09.068066364Z"} +2026/03/21 13:09:14 [metric_collector] {"stage_name":"metric_collector","events_processed":6619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1323.8,"last_update":"2026-03-21T13:09:09.068279783Z"} +2026/03/21 13:09:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2650,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:09:09.078874657Z"} +2026/03/21 13:09:14 [detection_layer] {"stage_name":"detection_layer","events_processed":220,"events_dropped":0,"avg_latency_ms":18.655966719631913,"throughput_eps":0,"last_update":"2026-03-21T13:09:09.210046387Z"} +2026/03/21 13:09:14 [transform_engine] {"stage_name":"transform_engine","events_processed":220,"events_dropped":0,"avg_latency_ms":850.957634368743,"throughput_eps":0,"last_update":"2026-03-21T13:09:09.210060253Z"} +2026/03/21 13:09:14 ───────────────────────────────────────────────── +2026/03/21 13:09:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:09:19 [log_collector] {"stage_name":"log_collector","events_processed":11871,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2374.2,"last_update":"2026-03-21T13:09:14.068604858Z"} +2026/03/21 13:09:19 [metric_collector] {"stage_name":"metric_collector","events_processed":6624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1324.8,"last_update":"2026-03-21T13:09:14.068722634Z"} +2026/03/21 13:09:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:09:14.080510864Z"} +2026/03/21 13:09:19 [detection_layer] {"stage_name":"detection_layer","events_processed":220,"events_dropped":0,"avg_latency_ms":18.655966719631913,"throughput_eps":0,"last_update":"2026-03-21T13:09:14.210748594Z"} +2026/03/21 13:09:19 [transform_engine] {"stage_name":"transform_engine","events_processed":220,"events_dropped":0,"avg_latency_ms":850.957634368743,"throughput_eps":0,"last_update":"2026-03-21T13:09:14.209642696Z"} +2026/03/21 13:09:19 ───────────────────────────────────────────────── +2026/03/21 13:09:19 [ANOMALY] time=2026-03-21T13:09:19Z score=0.8748 method=SEAD details=MAD!:w=0.35,s=0.96 RRCF-fast!:w=0.17,s=0.92 RRCF-mid:w=0.14,s=0.89 RRCF-slow:w=0.12,s=0.80 COPOD!:w=0.22,s=0.74 +2026/03/21 13:09:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:09:24 [metric_collector] {"stage_name":"metric_collector","events_processed":6629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1325.8,"last_update":"2026-03-21T13:09:19.068825488Z"} +2026/03/21 13:09:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:09:19.075217651Z"} +2026/03/21 13:09:24 [detection_layer] {"stage_name":"detection_layer","events_processed":220,"events_dropped":0,"avg_latency_ms":18.655966719631913,"throughput_eps":0,"last_update":"2026-03-21T13:09:19.210384844Z"} +2026/03/21 13:09:24 [transform_engine] {"stage_name":"transform_engine","events_processed":221,"events_dropped":0,"avg_latency_ms":753.9388444949944,"throughput_eps":0,"last_update":"2026-03-21T13:09:19.576259649Z"} +2026/03/21 13:09:24 [log_collector] {"stage_name":"log_collector","events_processed":11871,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2374.2,"last_update":"2026-03-21T13:09:19.068612239Z"} +2026/03/21 13:09:24 ───────────────────────────────────────────────── +2026/03/21 13:09:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:09:29 [log_collector] {"stage_name":"log_collector","events_processed":11871,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2374.2,"last_update":"2026-03-21T13:09:24.068258311Z"} +2026/03/21 13:09:29 [metric_collector] {"stage_name":"metric_collector","events_processed":6634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1326.8,"last_update":"2026-03-21T13:09:24.068527066Z"} +2026/03/21 13:09:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:09:24.075908023Z"} +2026/03/21 13:09:29 [detection_layer] {"stage_name":"detection_layer","events_processed":221,"events_dropped":0,"avg_latency_ms":17.13719717570553,"throughput_eps":0,"last_update":"2026-03-21T13:09:24.210126899Z"} +2026/03/21 13:09:29 [transform_engine] {"stage_name":"transform_engine","events_processed":221,"events_dropped":0,"avg_latency_ms":753.9388444949944,"throughput_eps":0,"last_update":"2026-03-21T13:09:24.210138682Z"} +2026/03/21 13:09:29 ───────────────────────────────────────────────── +2026/03/21 13:09:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:09:34 [log_collector] {"stage_name":"log_collector","events_processed":11871,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2374.2,"last_update":"2026-03-21T13:09:29.068776987Z"} +2026/03/21 13:09:34 [metric_collector] {"stage_name":"metric_collector","events_processed":6639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1327.8,"last_update":"2026-03-21T13:09:29.068983973Z"} +2026/03/21 13:09:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:09:29.075357832Z"} +2026/03/21 13:09:34 [detection_layer] {"stage_name":"detection_layer","events_processed":221,"events_dropped":0,"avg_latency_ms":17.13719717570553,"throughput_eps":0,"last_update":"2026-03-21T13:09:29.210593085Z"} +2026/03/21 13:09:34 [transform_engine] {"stage_name":"transform_engine","events_processed":221,"events_dropped":0,"avg_latency_ms":753.9388444949944,"throughput_eps":0,"last_update":"2026-03-21T13:09:29.210601711Z"} +2026/03/21 13:09:34 ───────────────────────────────────────────────── +2026/03/21 13:09:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:09:39 [log_collector] {"stage_name":"log_collector","events_processed":11871,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2374.2,"last_update":"2026-03-21T13:09:34.068287357Z"} +2026/03/21 13:09:39 [metric_collector] {"stage_name":"metric_collector","events_processed":6644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1328.8,"last_update":"2026-03-21T13:09:34.068619262Z"} +2026/03/21 13:09:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2660,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:09:34.078271811Z"} +2026/03/21 13:09:39 [detection_layer] {"stage_name":"detection_layer","events_processed":221,"events_dropped":0,"avg_latency_ms":17.13719717570553,"throughput_eps":0,"last_update":"2026-03-21T13:09:34.210531904Z"} +2026/03/21 13:09:39 [transform_engine] {"stage_name":"transform_engine","events_processed":221,"events_dropped":0,"avg_latency_ms":753.9388444949944,"throughput_eps":0,"last_update":"2026-03-21T13:09:34.210503991Z"} +2026/03/21 13:09:39 ───────────────────────────────────────────────── +2026/03/21 13:09:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:09:44 [log_collector] {"stage_name":"log_collector","events_processed":11871,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2374.2,"last_update":"2026-03-21T13:09:39.068664691Z"} +2026/03/21 13:09:44 [metric_collector] {"stage_name":"metric_collector","events_processed":6648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1329.6,"last_update":"2026-03-21T13:09:39.068668628Z"} +2026/03/21 13:09:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2662,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:09:39.07580617Z"} +2026/03/21 13:09:44 [detection_layer] {"stage_name":"detection_layer","events_processed":221,"events_dropped":0,"avg_latency_ms":17.13719717570553,"throughput_eps":0,"last_update":"2026-03-21T13:09:39.210030576Z"} +2026/03/21 13:09:44 [transform_engine] {"stage_name":"transform_engine","events_processed":221,"events_dropped":0,"avg_latency_ms":753.9388444949944,"throughput_eps":0,"last_update":"2026-03-21T13:09:39.210013945Z"} +2026/03/21 13:09:44 ───────────────────────────────────────────────── +2026/03/21 13:09:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:09:49 [detection_layer] {"stage_name":"detection_layer","events_processed":221,"events_dropped":0,"avg_latency_ms":17.13719717570553,"throughput_eps":0,"last_update":"2026-03-21T13:09:44.210586275Z"} +2026/03/21 13:09:49 [transform_engine] {"stage_name":"transform_engine","events_processed":221,"events_dropped":0,"avg_latency_ms":753.9388444949944,"throughput_eps":0,"last_update":"2026-03-21T13:09:44.210556508Z"} +2026/03/21 13:09:49 [log_collector] {"stage_name":"log_collector","events_processed":11871,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2374.2,"last_update":"2026-03-21T13:09:44.069313949Z"} +2026/03/21 13:09:49 [metric_collector] {"stage_name":"metric_collector","events_processed":6654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1330.8,"last_update":"2026-03-21T13:09:44.069318208Z"} +2026/03/21 13:09:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:09:44.080343626Z"} +2026/03/21 13:09:49 ───────────────────────────────────────────────── +2026/03/21 13:09:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:09:54 [metric_collector] {"stage_name":"metric_collector","events_processed":6658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1331.6,"last_update":"2026-03-21T13:09:49.068585944Z"} +2026/03/21 13:09:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:09:49.075318509Z"} +2026/03/21 13:09:54 [detection_layer] {"stage_name":"detection_layer","events_processed":221,"events_dropped":0,"avg_latency_ms":17.13719717570553,"throughput_eps":0,"last_update":"2026-03-21T13:09:49.21052708Z"} +2026/03/21 13:09:54 [transform_engine] {"stage_name":"transform_engine","events_processed":222,"events_dropped":0,"avg_latency_ms":635.0575017959957,"throughput_eps":0,"last_update":"2026-03-21T13:09:49.370080641Z"} +2026/03/21 13:09:54 [log_collector] {"stage_name":"log_collector","events_processed":11871,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2374.2,"last_update":"2026-03-21T13:09:49.068579031Z"} +2026/03/21 13:09:54 ───────────────────────────────────────────────── +2026/03/21 13:09:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:09:59 [log_collector] {"stage_name":"log_collector","events_processed":11882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2376.4,"last_update":"2026-03-21T13:09:54.068836297Z"} +2026/03/21 13:09:59 [metric_collector] {"stage_name":"metric_collector","events_processed":6664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1332.8,"last_update":"2026-03-21T13:09:54.069175687Z"} +2026/03/21 13:09:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2668,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:09:54.077658495Z"} +2026/03/21 13:09:59 [detection_layer] {"stage_name":"detection_layer","events_processed":222,"events_dropped":0,"avg_latency_ms":16.390486540564424,"throughput_eps":0,"last_update":"2026-03-21T13:09:54.210062344Z"} +2026/03/21 13:09:59 [transform_engine] {"stage_name":"transform_engine","events_processed":222,"events_dropped":0,"avg_latency_ms":635.0575017959957,"throughput_eps":0,"last_update":"2026-03-21T13:09:54.210078896Z"} +2026/03/21 13:09:59 ───────────────────────────────────────────────── +2026/03/21 13:10:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:10:04 [log_collector] {"stage_name":"log_collector","events_processed":11889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2377.8,"last_update":"2026-03-21T13:09:59.068214413Z"} +2026/03/21 13:10:04 [metric_collector] {"stage_name":"metric_collector","events_processed":6669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1333.8,"last_update":"2026-03-21T13:09:59.068474241Z"} +2026/03/21 13:10:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2670,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:09:59.076668857Z"} +2026/03/21 13:10:04 [detection_layer] {"stage_name":"detection_layer","events_processed":222,"events_dropped":0,"avg_latency_ms":16.390486540564424,"throughput_eps":0,"last_update":"2026-03-21T13:09:59.210165379Z"} +2026/03/21 13:10:04 [transform_engine] {"stage_name":"transform_engine","events_processed":222,"events_dropped":0,"avg_latency_ms":635.0575017959957,"throughput_eps":0,"last_update":"2026-03-21T13:09:59.210150349Z"} +2026/03/21 13:10:04 ───────────────────────────────────────────────── +2026/03/21 13:10:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:10:09 [log_collector] {"stage_name":"log_collector","events_processed":12175,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2435,"last_update":"2026-03-21T13:10:04.068608179Z"} +2026/03/21 13:10:09 [metric_collector] {"stage_name":"metric_collector","events_processed":6674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1334.8,"last_update":"2026-03-21T13:10:04.068792462Z"} +2026/03/21 13:10:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:10:04.077808923Z"} +2026/03/21 13:10:09 [detection_layer] {"stage_name":"detection_layer","events_processed":222,"events_dropped":0,"avg_latency_ms":16.390486540564424,"throughput_eps":0,"last_update":"2026-03-21T13:10:04.210377326Z"} +2026/03/21 13:10:09 [transform_engine] {"stage_name":"transform_engine","events_processed":222,"events_dropped":0,"avg_latency_ms":635.0575017959957,"throughput_eps":0,"last_update":"2026-03-21T13:10:04.210387645Z"} +2026/03/21 13:10:09 ───────────────────────────────────────────────── +2026/03/21 13:10:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:10:14 [log_collector] {"stage_name":"log_collector","events_processed":12235,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2447,"last_update":"2026-03-21T13:10:09.068988334Z"} +2026/03/21 13:10:14 [metric_collector] {"stage_name":"metric_collector","events_processed":6679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1335.8,"last_update":"2026-03-21T13:10:09.06909047Z"} +2026/03/21 13:10:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:10:09.077853023Z"} +2026/03/21 13:10:14 [detection_layer] {"stage_name":"detection_layer","events_processed":222,"events_dropped":0,"avg_latency_ms":16.390486540564424,"throughput_eps":0,"last_update":"2026-03-21T13:10:09.210085904Z"} +2026/03/21 13:10:14 [transform_engine] {"stage_name":"transform_engine","events_processed":222,"events_dropped":0,"avg_latency_ms":635.0575017959957,"throughput_eps":0,"last_update":"2026-03-21T13:10:09.209776821Z"} +2026/03/21 13:10:14 ───────────────────────────────────────────────── +2026/03/21 13:10:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:10:19 [transform_engine] {"stage_name":"transform_engine","events_processed":222,"events_dropped":0,"avg_latency_ms":635.0575017959957,"throughput_eps":0,"last_update":"2026-03-21T13:10:14.209756543Z"} +2026/03/21 13:10:19 [log_collector] {"stage_name":"log_collector","events_processed":12235,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2447,"last_update":"2026-03-21T13:10:14.068865338Z"} +2026/03/21 13:10:19 [metric_collector] {"stage_name":"metric_collector","events_processed":6684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1336.8,"last_update":"2026-03-21T13:10:14.069113774Z"} +2026/03/21 13:10:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2676,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:10:14.078587661Z"} +2026/03/21 13:10:19 [detection_layer] {"stage_name":"detection_layer","events_processed":222,"events_dropped":0,"avg_latency_ms":16.390486540564424,"throughput_eps":0,"last_update":"2026-03-21T13:10:14.210875286Z"} +2026/03/21 13:10:19 ───────────────────────────────────────────────── +Saved state: 16 clusters, 12236 messages, reason: none +2026/03/21 13:10:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:10:24 [metric_collector] {"stage_name":"metric_collector","events_processed":6689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1337.8,"last_update":"2026-03-21T13:10:19.069063013Z"} +2026/03/21 13:10:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:10:19.078705652Z"} +2026/03/21 13:10:24 [detection_layer] {"stage_name":"detection_layer","events_processed":222,"events_dropped":0,"avg_latency_ms":16.390486540564424,"throughput_eps":0,"last_update":"2026-03-21T13:10:19.210991133Z"} +2026/03/21 13:10:24 [transform_engine] {"stage_name":"transform_engine","events_processed":223,"events_dropped":0,"avg_latency_ms":533.7144008367966,"throughput_eps":0,"last_update":"2026-03-21T13:10:19.338073838Z"} +2026/03/21 13:10:24 [log_collector] {"stage_name":"log_collector","events_processed":12235,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2447,"last_update":"2026-03-21T13:10:19.068572653Z"} +2026/03/21 13:10:24 ───────────────────────────────────────────────── +2026/03/21 13:10:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:10:29 [log_collector] {"stage_name":"log_collector","events_processed":12238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2447.6,"last_update":"2026-03-21T13:10:24.068758259Z"} +2026/03/21 13:10:29 [metric_collector] {"stage_name":"metric_collector","events_processed":6694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1338.8,"last_update":"2026-03-21T13:10:24.06884728Z"} +2026/03/21 13:10:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:10:24.078022814Z"} +2026/03/21 13:10:29 [detection_layer] {"stage_name":"detection_layer","events_processed":223,"events_dropped":0,"avg_latency_ms":16.802239032451542,"throughput_eps":0,"last_update":"2026-03-21T13:10:24.21027954Z"} +2026/03/21 13:10:29 [transform_engine] {"stage_name":"transform_engine","events_processed":223,"events_dropped":0,"avg_latency_ms":533.7144008367966,"throughput_eps":0,"last_update":"2026-03-21T13:10:24.210291994Z"} +2026/03/21 13:10:29 ───────────────────────────────────────────────── +2026/03/21 13:10:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:10:34 [detection_layer] {"stage_name":"detection_layer","events_processed":223,"events_dropped":0,"avg_latency_ms":16.802239032451542,"throughput_eps":0,"last_update":"2026-03-21T13:10:29.210086432Z"} +2026/03/21 13:10:34 [transform_engine] {"stage_name":"transform_engine","events_processed":223,"events_dropped":0,"avg_latency_ms":533.7144008367966,"throughput_eps":0,"last_update":"2026-03-21T13:10:29.210104807Z"} +2026/03/21 13:10:34 [log_collector] {"stage_name":"log_collector","events_processed":12238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2447.6,"last_update":"2026-03-21T13:10:29.069398547Z"} +2026/03/21 13:10:34 [metric_collector] {"stage_name":"metric_collector","events_processed":6699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1339.8,"last_update":"2026-03-21T13:10:29.069753136Z"} +2026/03/21 13:10:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:10:29.077766015Z"} +2026/03/21 13:10:34 ───────────────────────────────────────────────── +2026/03/21 13:10:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:10:39 [log_collector] {"stage_name":"log_collector","events_processed":12248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2449.6,"last_update":"2026-03-21T13:10:34.068621317Z"} +2026/03/21 13:10:39 [metric_collector] {"stage_name":"metric_collector","events_processed":6704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1340.8,"last_update":"2026-03-21T13:10:34.068926943Z"} +2026/03/21 13:10:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:10:34.077730365Z"} +2026/03/21 13:10:39 [detection_layer] {"stage_name":"detection_layer","events_processed":223,"events_dropped":0,"avg_latency_ms":16.802239032451542,"throughput_eps":0,"last_update":"2026-03-21T13:10:34.210146255Z"} +2026/03/21 13:10:39 [transform_engine] {"stage_name":"transform_engine","events_processed":223,"events_dropped":0,"avg_latency_ms":533.7144008367966,"throughput_eps":0,"last_update":"2026-03-21T13:10:34.210160682Z"} +2026/03/21 13:10:39 ───────────────────────────────────────────────── +2026/03/21 13:10:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:10:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:10:39.074867763Z"} +2026/03/21 13:10:44 [detection_layer] {"stage_name":"detection_layer","events_processed":223,"events_dropped":0,"avg_latency_ms":16.802239032451542,"throughput_eps":0,"last_update":"2026-03-21T13:10:39.210149081Z"} +2026/03/21 13:10:44 [transform_engine] {"stage_name":"transform_engine","events_processed":223,"events_dropped":0,"avg_latency_ms":533.7144008367966,"throughput_eps":0,"last_update":"2026-03-21T13:10:39.21015869Z"} +2026/03/21 13:10:44 [log_collector] {"stage_name":"log_collector","events_processed":12256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2451.2,"last_update":"2026-03-21T13:10:39.068284403Z"} +2026/03/21 13:10:44 [metric_collector] {"stage_name":"metric_collector","events_processed":6709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1341.8,"last_update":"2026-03-21T13:10:39.068525605Z"} +2026/03/21 13:10:44 ───────────────────────────────────────────────── +2026/03/21 13:10:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:10:49 [log_collector] {"stage_name":"log_collector","events_processed":12265,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2453,"last_update":"2026-03-21T13:10:44.068857207Z"} +2026/03/21 13:10:49 [metric_collector] {"stage_name":"metric_collector","events_processed":6714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1342.8,"last_update":"2026-03-21T13:10:44.069167221Z"} +2026/03/21 13:10:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2688,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:10:44.078073028Z"} +2026/03/21 13:10:49 [detection_layer] {"stage_name":"detection_layer","events_processed":223,"events_dropped":0,"avg_latency_ms":16.802239032451542,"throughput_eps":0,"last_update":"2026-03-21T13:10:44.210262686Z"} +2026/03/21 13:10:49 [transform_engine] {"stage_name":"transform_engine","events_processed":223,"events_dropped":0,"avg_latency_ms":533.7144008367966,"throughput_eps":0,"last_update":"2026-03-21T13:10:44.210274678Z"} +2026/03/21 13:10:49 ───────────────────────────────────────────────── +2026/03/21 13:10:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:10:54 [log_collector] {"stage_name":"log_collector","events_processed":12265,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2453,"last_update":"2026-03-21T13:10:49.06805898Z"} +2026/03/21 13:10:54 [metric_collector] {"stage_name":"metric_collector","events_processed":6719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1343.8,"last_update":"2026-03-21T13:10:49.068515635Z"} +2026/03/21 13:10:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:10:49.077585037Z"} +2026/03/21 13:10:54 [detection_layer] {"stage_name":"detection_layer","events_processed":223,"events_dropped":0,"avg_latency_ms":16.802239032451542,"throughput_eps":0,"last_update":"2026-03-21T13:10:49.209904752Z"} +2026/03/21 13:10:54 [transform_engine] {"stage_name":"transform_engine","events_processed":224,"events_dropped":0,"avg_latency_ms":466.9456252694373,"throughput_eps":0,"last_update":"2026-03-21T13:10:49.409707305Z"} +2026/03/21 13:10:54 ───────────────────────────────────────────────── +2026/03/21 13:10:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:10:59 [metric_collector] {"stage_name":"metric_collector","events_processed":6724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1344.8,"last_update":"2026-03-21T13:10:54.068606214Z"} +2026/03/21 13:10:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:10:54.077977103Z"} +2026/03/21 13:10:59 [detection_layer] {"stage_name":"detection_layer","events_processed":224,"events_dropped":0,"avg_latency_ms":17.262850225961234,"throughput_eps":0,"last_update":"2026-03-21T13:10:54.210302529Z"} +2026/03/21 13:10:59 [transform_engine] {"stage_name":"transform_engine","events_processed":224,"events_dropped":0,"avg_latency_ms":466.9456252694373,"throughput_eps":0,"last_update":"2026-03-21T13:10:54.210416388Z"} +2026/03/21 13:10:59 [log_collector] {"stage_name":"log_collector","events_processed":12265,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2453,"last_update":"2026-03-21T13:10:54.068125394Z"} +2026/03/21 13:10:59 ───────────────────────────────────────────────── +2026/03/21 13:11:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:11:04 [log_collector] {"stage_name":"log_collector","events_processed":12265,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2453,"last_update":"2026-03-21T13:10:59.068907922Z"} +2026/03/21 13:11:04 [metric_collector] {"stage_name":"metric_collector","events_processed":6729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1345.8,"last_update":"2026-03-21T13:10:59.069391368Z"} +2026/03/21 13:11:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:10:59.077510679Z"} +2026/03/21 13:11:04 [detection_layer] {"stage_name":"detection_layer","events_processed":224,"events_dropped":0,"avg_latency_ms":17.262850225961234,"throughput_eps":0,"last_update":"2026-03-21T13:10:59.210799541Z"} +2026/03/21 13:11:04 [transform_engine] {"stage_name":"transform_engine","events_processed":224,"events_dropped":0,"avg_latency_ms":466.9456252694373,"throughput_eps":0,"last_update":"2026-03-21T13:10:59.209673294Z"} +2026/03/21 13:11:04 ───────────────────────────────────────────────── +2026/03/21 13:11:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:11:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:11:04.078130723Z"} +2026/03/21 13:11:09 [detection_layer] {"stage_name":"detection_layer","events_processed":224,"events_dropped":0,"avg_latency_ms":17.262850225961234,"throughput_eps":0,"last_update":"2026-03-21T13:11:04.2104412Z"} +2026/03/21 13:11:09 [transform_engine] {"stage_name":"transform_engine","events_processed":224,"events_dropped":0,"avg_latency_ms":466.9456252694373,"throughput_eps":0,"last_update":"2026-03-21T13:11:04.210521253Z"} +2026/03/21 13:11:09 [log_collector] {"stage_name":"log_collector","events_processed":12265,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2453,"last_update":"2026-03-21T13:11:04.068059532Z"} +2026/03/21 13:11:09 [metric_collector] {"stage_name":"metric_collector","events_processed":6734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1346.8,"last_update":"2026-03-21T13:11:04.068628492Z"} +2026/03/21 13:11:09 ───────────────────────────────────────────────── +2026/03/21 13:11:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:11:14 [log_collector] {"stage_name":"log_collector","events_processed":12265,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2453,"last_update":"2026-03-21T13:11:09.068143774Z"} +2026/03/21 13:11:14 [metric_collector] {"stage_name":"metric_collector","events_processed":6739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1347.8,"last_update":"2026-03-21T13:11:09.068607462Z"} +2026/03/21 13:11:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:11:09.078088663Z"} +2026/03/21 13:11:14 [detection_layer] {"stage_name":"detection_layer","events_processed":224,"events_dropped":0,"avg_latency_ms":17.262850225961234,"throughput_eps":0,"last_update":"2026-03-21T13:11:09.210409489Z"} +2026/03/21 13:11:14 [transform_engine] {"stage_name":"transform_engine","events_processed":224,"events_dropped":0,"avg_latency_ms":466.9456252694373,"throughput_eps":0,"last_update":"2026-03-21T13:11:09.21039375Z"} +2026/03/21 13:11:14 ───────────────────────────────────────────────── +2026/03/21 13:11:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:11:19 [detection_layer] {"stage_name":"detection_layer","events_processed":224,"events_dropped":0,"avg_latency_ms":17.262850225961234,"throughput_eps":0,"last_update":"2026-03-21T13:11:14.210219149Z"} +2026/03/21 13:11:19 [transform_engine] {"stage_name":"transform_engine","events_processed":224,"events_dropped":0,"avg_latency_ms":466.9456252694373,"throughput_eps":0,"last_update":"2026-03-21T13:11:14.210279605Z"} +2026/03/21 13:11:19 [log_collector] {"stage_name":"log_collector","events_processed":12265,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2453,"last_update":"2026-03-21T13:11:14.068910827Z"} +2026/03/21 13:11:19 [metric_collector] {"stage_name":"metric_collector","events_processed":6744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1348.8,"last_update":"2026-03-21T13:11:14.06889706Z"} +2026/03/21 13:11:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2700,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:11:14.078922483Z"} +2026/03/21 13:11:19 ───────────────────────────────────────────────── +2026/03/21 13:11:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:11:24 [detection_layer] {"stage_name":"detection_layer","events_processed":224,"events_dropped":0,"avg_latency_ms":17.262850225961234,"throughput_eps":0,"last_update":"2026-03-21T13:11:19.21016138Z"} +2026/03/21 13:11:24 [transform_engine] {"stage_name":"transform_engine","events_processed":225,"events_dropped":0,"avg_latency_ms":388.1462554155499,"throughput_eps":0,"last_update":"2026-03-21T13:11:19.283129813Z"} +2026/03/21 13:11:24 [log_collector] {"stage_name":"log_collector","events_processed":12265,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2453,"last_update":"2026-03-21T13:11:19.068610123Z"} +2026/03/21 13:11:24 [metric_collector] {"stage_name":"metric_collector","events_processed":6749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1349.8,"last_update":"2026-03-21T13:11:19.06914117Z"} +2026/03/21 13:11:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2702,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:11:19.077898844Z"} +2026/03/21 13:11:24 ───────────────────────────────────────────────── +2026/03/21 13:11:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:11:29 [transform_engine] {"stage_name":"transform_engine","events_processed":225,"events_dropped":0,"avg_latency_ms":388.1462554155499,"throughput_eps":0,"last_update":"2026-03-21T13:11:24.210688843Z"} +2026/03/21 13:11:29 [log_collector] {"stage_name":"log_collector","events_processed":12265,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2453,"last_update":"2026-03-21T13:11:24.068121651Z"} +2026/03/21 13:11:29 [metric_collector] {"stage_name":"metric_collector","events_processed":6754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1350.8,"last_update":"2026-03-21T13:11:24.06857038Z"} +2026/03/21 13:11:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:11:24.077499453Z"} +2026/03/21 13:11:29 [detection_layer] {"stage_name":"detection_layer","events_processed":225,"events_dropped":0,"avg_latency_ms":17.92410178076899,"throughput_eps":0,"last_update":"2026-03-21T13:11:24.21068186Z"} +2026/03/21 13:11:29 ───────────────────────────────────────────────── +2026/03/21 13:11:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:11:34 [log_collector] {"stage_name":"log_collector","events_processed":12265,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2453,"last_update":"2026-03-21T13:11:29.06912923Z"} +2026/03/21 13:11:34 [metric_collector] {"stage_name":"metric_collector","events_processed":6759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1351.8,"last_update":"2026-03-21T13:11:29.069404969Z"} +2026/03/21 13:11:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:11:29.078326157Z"} +2026/03/21 13:11:34 [detection_layer] {"stage_name":"detection_layer","events_processed":225,"events_dropped":0,"avg_latency_ms":17.92410178076899,"throughput_eps":0,"last_update":"2026-03-21T13:11:29.210750001Z"} +2026/03/21 13:11:34 [transform_engine] {"stage_name":"transform_engine","events_processed":225,"events_dropped":0,"avg_latency_ms":388.1462554155499,"throughput_eps":0,"last_update":"2026-03-21T13:11:29.210764848Z"} +2026/03/21 13:11:34 ───────────────────────────────────────────────── +2026/03/21 13:11:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:11:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:11:34.077198161Z"} +2026/03/21 13:11:39 [detection_layer] {"stage_name":"detection_layer","events_processed":225,"events_dropped":0,"avg_latency_ms":17.92410178076899,"throughput_eps":0,"last_update":"2026-03-21T13:11:34.210683588Z"} +2026/03/21 13:11:39 [transform_engine] {"stage_name":"transform_engine","events_processed":225,"events_dropped":0,"avg_latency_ms":388.1462554155499,"throughput_eps":0,"last_update":"2026-03-21T13:11:34.210662237Z"} +2026/03/21 13:11:39 [log_collector] {"stage_name":"log_collector","events_processed":12265,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2453,"last_update":"2026-03-21T13:11:34.068953158Z"} +2026/03/21 13:11:39 [metric_collector] {"stage_name":"metric_collector","events_processed":6764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1352.8,"last_update":"2026-03-21T13:11:34.069791564Z"} +2026/03/21 13:11:39 ───────────────────────────────────────────────── +2026/03/21 13:11:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:11:44 [log_collector] {"stage_name":"log_collector","events_processed":12265,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2453,"last_update":"2026-03-21T13:11:39.068110725Z"} +2026/03/21 13:11:44 [metric_collector] {"stage_name":"metric_collector","events_processed":6769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1353.8,"last_update":"2026-03-21T13:11:39.068804785Z"} +2026/03/21 13:11:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:11:39.078300864Z"} +2026/03/21 13:11:44 [detection_layer] {"stage_name":"detection_layer","events_processed":225,"events_dropped":0,"avg_latency_ms":17.92410178076899,"throughput_eps":0,"last_update":"2026-03-21T13:11:39.210552037Z"} +2026/03/21 13:11:44 [transform_engine] {"stage_name":"transform_engine","events_processed":225,"events_dropped":0,"avg_latency_ms":388.1462554155499,"throughput_eps":0,"last_update":"2026-03-21T13:11:39.21056406Z"} +2026/03/21 13:11:44 ───────────────────────────────────────────────── +Saved state: 16 clusters, 12266 messages, reason: none +2026/03/21 13:11:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:11:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2712,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:11:44.077338615Z"} +2026/03/21 13:11:49 [detection_layer] {"stage_name":"detection_layer","events_processed":225,"events_dropped":0,"avg_latency_ms":17.92410178076899,"throughput_eps":0,"last_update":"2026-03-21T13:11:44.210554085Z"} +2026/03/21 13:11:49 [transform_engine] {"stage_name":"transform_engine","events_processed":225,"events_dropped":0,"avg_latency_ms":388.1462554155499,"throughput_eps":0,"last_update":"2026-03-21T13:11:44.210566108Z"} +2026/03/21 13:11:49 [log_collector] {"stage_name":"log_collector","events_processed":12265,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2453,"last_update":"2026-03-21T13:11:44.068103196Z"} +2026/03/21 13:11:49 [metric_collector] {"stage_name":"metric_collector","events_processed":6774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1354.8,"last_update":"2026-03-21T13:11:44.068428309Z"} +2026/03/21 13:11:49 ───────────────────────────────────────────────── +2026/03/21 13:11:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:11:54 [metric_collector] {"stage_name":"metric_collector","events_processed":6779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1355.8,"last_update":"2026-03-21T13:11:49.070512732Z"} +2026/03/21 13:11:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:11:49.079953344Z"} +2026/03/21 13:11:54 [detection_layer] {"stage_name":"detection_layer","events_processed":225,"events_dropped":0,"avg_latency_ms":17.92410178076899,"throughput_eps":0,"last_update":"2026-03-21T13:11:49.210156363Z"} +2026/03/21 13:11:54 [transform_engine] {"stage_name":"transform_engine","events_processed":226,"events_dropped":0,"avg_latency_ms":459.32520633243996,"throughput_eps":0,"last_update":"2026-03-21T13:11:49.954210879Z"} +2026/03/21 13:11:54 [log_collector] {"stage_name":"log_collector","events_processed":12278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2455.6,"last_update":"2026-03-21T13:11:49.06973385Z"} +2026/03/21 13:11:54 ───────────────────────────────────────────────── +2026/03/21 13:11:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:11:59 [log_collector] {"stage_name":"log_collector","events_processed":12279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2455.8,"last_update":"2026-03-21T13:11:54.068187954Z"} +2026/03/21 13:11:59 [metric_collector] {"stage_name":"metric_collector","events_processed":6784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1356.8,"last_update":"2026-03-21T13:11:54.068916018Z"} +2026/03/21 13:11:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:11:54.07691567Z"} +2026/03/21 13:11:59 [detection_layer] {"stage_name":"detection_layer","events_processed":226,"events_dropped":0,"avg_latency_ms":18.136723024615193,"throughput_eps":0,"last_update":"2026-03-21T13:11:54.210383353Z"} +2026/03/21 13:11:59 [transform_engine] {"stage_name":"transform_engine","events_processed":226,"events_dropped":0,"avg_latency_ms":459.32520633243996,"throughput_eps":0,"last_update":"2026-03-21T13:11:54.210421276Z"} +2026/03/21 13:11:59 ───────────────────────────────────────────────── +2026/03/21 13:12:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:12:04 [log_collector] {"stage_name":"log_collector","events_processed":12279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2455.8,"last_update":"2026-03-21T13:11:59.068300821Z"} +2026/03/21 13:12:04 [metric_collector] {"stage_name":"metric_collector","events_processed":6789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1357.8,"last_update":"2026-03-21T13:11:59.068786412Z"} +2026/03/21 13:12:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2718,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:11:59.077136094Z"} +2026/03/21 13:12:04 [detection_layer] {"stage_name":"detection_layer","events_processed":226,"events_dropped":0,"avg_latency_ms":18.136723024615193,"throughput_eps":0,"last_update":"2026-03-21T13:11:59.21039666Z"} +2026/03/21 13:12:04 [transform_engine] {"stage_name":"transform_engine","events_processed":226,"events_dropped":0,"avg_latency_ms":459.32520633243996,"throughput_eps":0,"last_update":"2026-03-21T13:11:59.210428922Z"} +2026/03/21 13:12:04 ───────────────────────────────────────────────── +2026/03/21 13:12:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:12:09 [log_collector] {"stage_name":"log_collector","events_processed":12279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2455.8,"last_update":"2026-03-21T13:12:04.068857636Z"} +2026/03/21 13:12:09 [metric_collector] {"stage_name":"metric_collector","events_processed":6793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1358.6,"last_update":"2026-03-21T13:12:04.068868327Z"} +2026/03/21 13:12:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:12:04.079486384Z"} +2026/03/21 13:12:09 [detection_layer] {"stage_name":"detection_layer","events_processed":226,"events_dropped":0,"avg_latency_ms":18.136723024615193,"throughput_eps":0,"last_update":"2026-03-21T13:12:04.21063742Z"} +2026/03/21 13:12:09 [transform_engine] {"stage_name":"transform_engine","events_processed":226,"events_dropped":0,"avg_latency_ms":459.32520633243996,"throughput_eps":0,"last_update":"2026-03-21T13:12:04.210741699Z"} +2026/03/21 13:12:09 ───────────────────────────────────────────────── +2026/03/21 13:12:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:12:14 [transform_engine] {"stage_name":"transform_engine","events_processed":226,"events_dropped":0,"avg_latency_ms":459.32520633243996,"throughput_eps":0,"last_update":"2026-03-21T13:12:09.209783998Z"} +2026/03/21 13:12:14 [log_collector] {"stage_name":"log_collector","events_processed":12279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2455.8,"last_update":"2026-03-21T13:12:09.068099788Z"} +2026/03/21 13:12:14 [metric_collector] {"stage_name":"metric_collector","events_processed":6799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1359.8,"last_update":"2026-03-21T13:12:09.068600067Z"} +2026/03/21 13:12:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2722,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:12:09.078193882Z"} +2026/03/21 13:12:14 [detection_layer] {"stage_name":"detection_layer","events_processed":226,"events_dropped":0,"avg_latency_ms":18.136723024615193,"throughput_eps":0,"last_update":"2026-03-21T13:12:09.210449073Z"} +2026/03/21 13:12:14 ───────────────────────────────────────────────── +2026/03/21 13:12:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:12:19 [transform_engine] {"stage_name":"transform_engine","events_processed":226,"events_dropped":0,"avg_latency_ms":459.32520633243996,"throughput_eps":0,"last_update":"2026-03-21T13:12:14.210682295Z"} +2026/03/21 13:12:19 [log_collector] {"stage_name":"log_collector","events_processed":12279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2455.8,"last_update":"2026-03-21T13:12:14.068673223Z"} +2026/03/21 13:12:19 [metric_collector] {"stage_name":"metric_collector","events_processed":6804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1360.8,"last_update":"2026-03-21T13:12:14.068955303Z"} +2026/03/21 13:12:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:12:14.077293524Z"} +2026/03/21 13:12:19 [detection_layer] {"stage_name":"detection_layer","events_processed":226,"events_dropped":0,"avg_latency_ms":18.136723024615193,"throughput_eps":0,"last_update":"2026-03-21T13:12:14.210801343Z"} +2026/03/21 13:12:19 ───────────────────────────────────────────────── +2026/03/21 13:12:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:12:24 [log_collector] {"stage_name":"log_collector","events_processed":12279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2455.8,"last_update":"2026-03-21T13:12:19.068774609Z"} +2026/03/21 13:12:24 [metric_collector] {"stage_name":"metric_collector","events_processed":6809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1361.8,"last_update":"2026-03-21T13:12:19.069208821Z"} +2026/03/21 13:12:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:12:19.078071767Z"} +2026/03/21 13:12:24 [detection_layer] {"stage_name":"detection_layer","events_processed":226,"events_dropped":0,"avg_latency_ms":18.136723024615193,"throughput_eps":0,"last_update":"2026-03-21T13:12:19.210488887Z"} +2026/03/21 13:12:24 [transform_engine] {"stage_name":"transform_engine","events_processed":227,"events_dropped":0,"avg_latency_ms":384.127547465952,"throughput_eps":0,"last_update":"2026-03-21T13:12:19.293841068Z"} +2026/03/21 13:12:24 ───────────────────────────────────────────────── +2026/03/21 13:12:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:12:29 [transform_engine] {"stage_name":"transform_engine","events_processed":227,"events_dropped":0,"avg_latency_ms":384.127547465952,"throughput_eps":0,"last_update":"2026-03-21T13:12:24.209728427Z"} +2026/03/21 13:12:29 [log_collector] {"stage_name":"log_collector","events_processed":12279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2455.8,"last_update":"2026-03-21T13:12:24.068082602Z"} +2026/03/21 13:12:29 [metric_collector] {"stage_name":"metric_collector","events_processed":6814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1362.8,"last_update":"2026-03-21T13:12:24.068419557Z"} +2026/03/21 13:12:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2728,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:12:24.077471063Z"} +2026/03/21 13:12:29 [detection_layer] {"stage_name":"detection_layer","events_processed":227,"events_dropped":0,"avg_latency_ms":18.601079619692154,"throughput_eps":0,"last_update":"2026-03-21T13:12:24.210889341Z"} +2026/03/21 13:12:29 ───────────────────────────────────────────────── +2026/03/21 13:12:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:12:34 [log_collector] {"stage_name":"log_collector","events_processed":12279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2455.8,"last_update":"2026-03-21T13:12:29.068549147Z"} +2026/03/21 13:12:34 [metric_collector] {"stage_name":"metric_collector","events_processed":6819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1363.8,"last_update":"2026-03-21T13:12:29.068911471Z"} +2026/03/21 13:12:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2730,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:12:29.077654347Z"} +2026/03/21 13:12:34 [detection_layer] {"stage_name":"detection_layer","events_processed":227,"events_dropped":0,"avg_latency_ms":18.601079619692154,"throughput_eps":0,"last_update":"2026-03-21T13:12:29.210107897Z"} +2026/03/21 13:12:34 [transform_engine] {"stage_name":"transform_engine","events_processed":227,"events_dropped":0,"avg_latency_ms":384.127547465952,"throughput_eps":0,"last_update":"2026-03-21T13:12:29.210123427Z"} +2026/03/21 13:12:34 ───────────────────────────────────────────────── +2026/03/21 13:12:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:12:39 [metric_collector] {"stage_name":"metric_collector","events_processed":6824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1364.8,"last_update":"2026-03-21T13:12:34.068899015Z"} +2026/03/21 13:12:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:12:34.081733839Z"} +2026/03/21 13:12:39 [detection_layer] {"stage_name":"detection_layer","events_processed":227,"events_dropped":0,"avg_latency_ms":18.601079619692154,"throughput_eps":0,"last_update":"2026-03-21T13:12:34.21011095Z"} +2026/03/21 13:12:39 [transform_engine] {"stage_name":"transform_engine","events_processed":227,"events_dropped":0,"avg_latency_ms":384.127547465952,"throughput_eps":0,"last_update":"2026-03-21T13:12:34.21012124Z"} +2026/03/21 13:12:39 [log_collector] {"stage_name":"log_collector","events_processed":12279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2455.8,"last_update":"2026-03-21T13:12:34.068727777Z"} +2026/03/21 13:12:39 ───────────────────────────────────────────────── +2026/03/21 13:12:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:12:44 [log_collector] {"stage_name":"log_collector","events_processed":12279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2455.8,"last_update":"2026-03-21T13:12:39.068982181Z"} +2026/03/21 13:12:44 [metric_collector] {"stage_name":"metric_collector","events_processed":6829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1365.8,"last_update":"2026-03-21T13:12:39.069194338Z"} +2026/03/21 13:12:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:12:39.077807535Z"} +2026/03/21 13:12:44 [detection_layer] {"stage_name":"detection_layer","events_processed":227,"events_dropped":0,"avg_latency_ms":18.601079619692154,"throughput_eps":0,"last_update":"2026-03-21T13:12:39.210140033Z"} +2026/03/21 13:12:44 [transform_engine] {"stage_name":"transform_engine","events_processed":227,"events_dropped":0,"avg_latency_ms":384.127547465952,"throughput_eps":0,"last_update":"2026-03-21T13:12:39.210150853Z"} +2026/03/21 13:12:44 ───────────────────────────────────────────────── +2026/03/21 13:12:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:12:49 [log_collector] {"stage_name":"log_collector","events_processed":12279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2455.8,"last_update":"2026-03-21T13:12:44.06851662Z"} +2026/03/21 13:12:49 [metric_collector] {"stage_name":"metric_collector","events_processed":6834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1366.8,"last_update":"2026-03-21T13:12:44.068807467Z"} +2026/03/21 13:12:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2736,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:12:44.078605434Z"} +2026/03/21 13:12:49 [detection_layer] {"stage_name":"detection_layer","events_processed":227,"events_dropped":0,"avg_latency_ms":18.601079619692154,"throughput_eps":0,"last_update":"2026-03-21T13:12:44.209912928Z"} +2026/03/21 13:12:49 [transform_engine] {"stage_name":"transform_engine","events_processed":227,"events_dropped":0,"avg_latency_ms":384.127547465952,"throughput_eps":0,"last_update":"2026-03-21T13:12:44.209732712Z"} +2026/03/21 13:12:49 ───────────────────────────────────────────────── +Saved state: 16 clusters, 12280 messages, reason: none +2026/03/21 13:12:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:12:54 [log_collector] {"stage_name":"log_collector","events_processed":12279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2455.8,"last_update":"2026-03-21T13:12:49.06877372Z"} +2026/03/21 13:12:54 [metric_collector] {"stage_name":"metric_collector","events_processed":6839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1367.8,"last_update":"2026-03-21T13:12:49.068936032Z"} +2026/03/21 13:12:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2738,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:12:49.078866962Z"} +2026/03/21 13:12:54 [detection_layer] {"stage_name":"detection_layer","events_processed":227,"events_dropped":0,"avg_latency_ms":18.601079619692154,"throughput_eps":0,"last_update":"2026-03-21T13:12:49.210201257Z"} +2026/03/21 13:12:54 [transform_engine] {"stage_name":"transform_engine","events_processed":228,"events_dropped":0,"avg_latency_ms":321.45577977276156,"throughput_eps":0,"last_update":"2026-03-21T13:12:49.28098756Z"} +2026/03/21 13:12:54 ───────────────────────────────────────────────── +2026/03/21 13:12:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:12:59 [transform_engine] {"stage_name":"transform_engine","events_processed":228,"events_dropped":0,"avg_latency_ms":321.45577977276156,"throughput_eps":0,"last_update":"2026-03-21T13:12:54.210166323Z"} +2026/03/21 13:12:59 [log_collector] {"stage_name":"log_collector","events_processed":12284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2456.8,"last_update":"2026-03-21T13:12:54.068726593Z"} +2026/03/21 13:12:59 [metric_collector] {"stage_name":"metric_collector","events_processed":6844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1368.8,"last_update":"2026-03-21T13:12:54.068717897Z"} +2026/03/21 13:12:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2740,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:12:54.074971273Z"} +2026/03/21 13:12:59 [detection_layer] {"stage_name":"detection_layer","events_processed":228,"events_dropped":0,"avg_latency_ms":18.871054495753725,"throughput_eps":0,"last_update":"2026-03-21T13:12:54.210154281Z"} +2026/03/21 13:12:59 ───────────────────────────────────────────────── +2026/03/21 13:13:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:13:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:12:59.079406988Z"} +2026/03/21 13:13:04 [detection_layer] {"stage_name":"detection_layer","events_processed":228,"events_dropped":0,"avg_latency_ms":18.871054495753725,"throughput_eps":0,"last_update":"2026-03-21T13:12:59.210598068Z"} +2026/03/21 13:13:04 [transform_engine] {"stage_name":"transform_engine","events_processed":228,"events_dropped":0,"avg_latency_ms":321.45577977276156,"throughput_eps":0,"last_update":"2026-03-21T13:12:59.210632124Z"} +2026/03/21 13:13:04 [log_collector] {"stage_name":"log_collector","events_processed":12284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2456.8,"last_update":"2026-03-21T13:12:59.068093318Z"} +2026/03/21 13:13:04 [metric_collector] {"stage_name":"metric_collector","events_processed":6849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1369.8,"last_update":"2026-03-21T13:12:59.068397511Z"} +2026/03/21 13:13:04 ───────────────────────────────────────────────── +2026/03/21 13:13:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:13:09 [log_collector] {"stage_name":"log_collector","events_processed":12284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2456.8,"last_update":"2026-03-21T13:13:04.06894847Z"} +2026/03/21 13:13:09 [metric_collector] {"stage_name":"metric_collector","events_processed":6854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1370.8,"last_update":"2026-03-21T13:13:04.068899296Z"} +2026/03/21 13:13:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:13:04.075569392Z"} +2026/03/21 13:13:09 [detection_layer] {"stage_name":"detection_layer","events_processed":228,"events_dropped":0,"avg_latency_ms":18.871054495753725,"throughput_eps":0,"last_update":"2026-03-21T13:13:04.210859013Z"} +2026/03/21 13:13:09 [transform_engine] {"stage_name":"transform_engine","events_processed":228,"events_dropped":0,"avg_latency_ms":321.45577977276156,"throughput_eps":0,"last_update":"2026-03-21T13:13:04.209749578Z"} +2026/03/21 13:13:09 ───────────────────────────────────────────────── +2026/03/21 13:13:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:13:14 [log_collector] {"stage_name":"log_collector","events_processed":12284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2456.8,"last_update":"2026-03-21T13:13:09.068746322Z"} +2026/03/21 13:13:14 [metric_collector] {"stage_name":"metric_collector","events_processed":6859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1371.8,"last_update":"2026-03-21T13:13:09.070588411Z"} +2026/03/21 13:13:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:13:09.078186244Z"} +2026/03/21 13:13:14 [detection_layer] {"stage_name":"detection_layer","events_processed":228,"events_dropped":0,"avg_latency_ms":18.871054495753725,"throughput_eps":0,"last_update":"2026-03-21T13:13:09.210432435Z"} +2026/03/21 13:13:14 [transform_engine] {"stage_name":"transform_engine","events_processed":228,"events_dropped":0,"avg_latency_ms":321.45577977276156,"throughput_eps":0,"last_update":"2026-03-21T13:13:09.210441493Z"} +2026/03/21 13:13:14 ───────────────────────────────────────────────── +2026/03/21 13:13:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:13:19 [detection_layer] {"stage_name":"detection_layer","events_processed":228,"events_dropped":0,"avg_latency_ms":18.871054495753725,"throughput_eps":0,"last_update":"2026-03-21T13:13:14.21078205Z"} +2026/03/21 13:13:19 [transform_engine] {"stage_name":"transform_engine","events_processed":228,"events_dropped":0,"avg_latency_ms":321.45577977276156,"throughput_eps":0,"last_update":"2026-03-21T13:13:14.209679118Z"} +2026/03/21 13:13:19 [log_collector] {"stage_name":"log_collector","events_processed":12284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2456.8,"last_update":"2026-03-21T13:13:14.068948706Z"} +2026/03/21 13:13:19 [metric_collector] {"stage_name":"metric_collector","events_processed":6864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1372.8,"last_update":"2026-03-21T13:13:14.069084076Z"} +2026/03/21 13:13:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:13:14.075551703Z"} +2026/03/21 13:13:19 ───────────────────────────────────────────────── +2026/03/21 13:13:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:13:24 [log_collector] {"stage_name":"log_collector","events_processed":12284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2456.8,"last_update":"2026-03-21T13:13:19.068803571Z"} +2026/03/21 13:13:24 [metric_collector] {"stage_name":"metric_collector","events_processed":6869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1373.8,"last_update":"2026-03-21T13:13:19.068984728Z"} +2026/03/21 13:13:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2750,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:13:19.081028877Z"} +2026/03/21 13:13:24 [detection_layer] {"stage_name":"detection_layer","events_processed":228,"events_dropped":0,"avg_latency_ms":18.871054495753725,"throughput_eps":0,"last_update":"2026-03-21T13:13:19.210260665Z"} +2026/03/21 13:13:24 [transform_engine] {"stage_name":"transform_engine","events_processed":229,"events_dropped":0,"avg_latency_ms":745.3942128182093,"throughput_eps":0,"last_update":"2026-03-21T13:13:21.651427156Z"} +2026/03/21 13:13:24 ───────────────────────────────────────────────── +2026/03/21 13:13:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:13:29 [transform_engine] {"stage_name":"transform_engine","events_processed":229,"events_dropped":0,"avg_latency_ms":745.3942128182093,"throughput_eps":0,"last_update":"2026-03-21T13:13:24.210083843Z"} +2026/03/21 13:13:29 [log_collector] {"stage_name":"log_collector","events_processed":12284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2456.8,"last_update":"2026-03-21T13:13:24.068230321Z"} +2026/03/21 13:13:29 [metric_collector] {"stage_name":"metric_collector","events_processed":6874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1374.8,"last_update":"2026-03-21T13:13:24.068694699Z"} +2026/03/21 13:13:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2752,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:13:24.07677182Z"} +2026/03/21 13:13:29 [detection_layer] {"stage_name":"detection_layer","events_processed":229,"events_dropped":0,"avg_latency_ms":16.92248439660298,"throughput_eps":0,"last_update":"2026-03-21T13:13:24.210074946Z"} +2026/03/21 13:13:29 ───────────────────────────────────────────────── +2026/03/21 13:13:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:13:34 [log_collector] {"stage_name":"log_collector","events_processed":12284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2456.8,"last_update":"2026-03-21T13:13:29.069173361Z"} +2026/03/21 13:13:34 [metric_collector] {"stage_name":"metric_collector","events_processed":6879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1375.8,"last_update":"2026-03-21T13:13:29.069166708Z"} +2026/03/21 13:13:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:13:29.075896728Z"} +2026/03/21 13:13:34 [detection_layer] {"stage_name":"detection_layer","events_processed":229,"events_dropped":0,"avg_latency_ms":16.92248439660298,"throughput_eps":0,"last_update":"2026-03-21T13:13:29.210017299Z"} +2026/03/21 13:13:34 [transform_engine] {"stage_name":"transform_engine","events_processed":229,"events_dropped":0,"avg_latency_ms":745.3942128182093,"throughput_eps":0,"last_update":"2026-03-21T13:13:29.210028421Z"} +2026/03/21 13:13:34 ───────────────────────────────────────────────── +2026/03/21 13:13:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:13:39 [detection_layer] {"stage_name":"detection_layer","events_processed":229,"events_dropped":0,"avg_latency_ms":16.92248439660298,"throughput_eps":0,"last_update":"2026-03-21T13:13:34.210480196Z"} +2026/03/21 13:13:39 [transform_engine] {"stage_name":"transform_engine","events_processed":229,"events_dropped":0,"avg_latency_ms":745.3942128182093,"throughput_eps":0,"last_update":"2026-03-21T13:13:34.210496257Z"} +2026/03/21 13:13:39 [log_collector] {"stage_name":"log_collector","events_processed":12284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2456.8,"last_update":"2026-03-21T13:13:34.068725432Z"} +2026/03/21 13:13:39 [metric_collector] {"stage_name":"metric_collector","events_processed":6884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1376.8,"last_update":"2026-03-21T13:13:34.068888966Z"} +2026/03/21 13:13:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:13:34.076029683Z"} +2026/03/21 13:13:39 ───────────────────────────────────────────────── +2026/03/21 13:13:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:13:44 [metric_collector] {"stage_name":"metric_collector","events_processed":6889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1377.8,"last_update":"2026-03-21T13:13:39.068857091Z"} +2026/03/21 13:13:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2758,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:13:39.078102931Z"} +2026/03/21 13:13:44 [detection_layer] {"stage_name":"detection_layer","events_processed":229,"events_dropped":0,"avg_latency_ms":16.92248439660298,"throughput_eps":0,"last_update":"2026-03-21T13:13:39.210328502Z"} +2026/03/21 13:13:44 [transform_engine] {"stage_name":"transform_engine","events_processed":229,"events_dropped":0,"avg_latency_ms":745.3942128182093,"throughput_eps":0,"last_update":"2026-03-21T13:13:39.210341838Z"} +2026/03/21 13:13:44 [log_collector] {"stage_name":"log_collector","events_processed":12295,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2459,"last_update":"2026-03-21T13:13:39.068556666Z"} +2026/03/21 13:13:44 ───────────────────────────────────────────────── +2026/03/21 13:13:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:13:49 [detection_layer] {"stage_name":"detection_layer","events_processed":229,"events_dropped":0,"avg_latency_ms":16.92248439660298,"throughput_eps":0,"last_update":"2026-03-21T13:13:44.210616095Z"} +2026/03/21 13:13:49 [transform_engine] {"stage_name":"transform_engine","events_processed":229,"events_dropped":0,"avg_latency_ms":745.3942128182093,"throughput_eps":0,"last_update":"2026-03-21T13:13:44.210623219Z"} +2026/03/21 13:13:49 [log_collector] {"stage_name":"log_collector","events_processed":12309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2461.8,"last_update":"2026-03-21T13:13:44.068543954Z"} +2026/03/21 13:13:49 [metric_collector] {"stage_name":"metric_collector","events_processed":6894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1378.8,"last_update":"2026-03-21T13:13:44.068801828Z"} +2026/03/21 13:13:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:13:44.077414554Z"} +2026/03/21 13:13:49 ───────────────────────────────────────────────── +2026/03/21 13:13:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:13:54 [transform_engine] {"stage_name":"transform_engine","events_processed":230,"events_dropped":0,"avg_latency_ms":867.4545124545675,"throughput_eps":0,"last_update":"2026-03-21T13:13:50.565811675Z"} +2026/03/21 13:13:54 [log_collector] {"stage_name":"log_collector","events_processed":12595,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2519,"last_update":"2026-03-21T13:13:49.068455754Z"} +2026/03/21 13:13:54 [metric_collector] {"stage_name":"metric_collector","events_processed":6898,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1379.6,"last_update":"2026-03-21T13:13:49.06845924Z"} +2026/03/21 13:13:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:13:49.076720704Z"} +2026/03/21 13:13:54 [detection_layer] {"stage_name":"detection_layer","events_processed":229,"events_dropped":0,"avg_latency_ms":16.92248439660298,"throughput_eps":0,"last_update":"2026-03-21T13:13:49.210093812Z"} +2026/03/21 13:13:54 ───────────────────────────────────────────────── +2026/03/21 13:13:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:13:59 [log_collector] {"stage_name":"log_collector","events_processed":12642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2528.4,"last_update":"2026-03-21T13:13:54.068805056Z"} +2026/03/21 13:13:59 [metric_collector] {"stage_name":"metric_collector","events_processed":6904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1380.8,"last_update":"2026-03-21T13:13:54.068940907Z"} +2026/03/21 13:13:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:13:54.078396136Z"} +2026/03/21 13:13:59 [detection_layer] {"stage_name":"detection_layer","events_processed":230,"events_dropped":0,"avg_latency_ms":17.674315917282385,"throughput_eps":0,"last_update":"2026-03-21T13:13:54.210579668Z"} +2026/03/21 13:13:59 [transform_engine] {"stage_name":"transform_engine","events_processed":230,"events_dropped":0,"avg_latency_ms":867.4545124545675,"throughput_eps":0,"last_update":"2026-03-21T13:13:54.210590418Z"} +2026/03/21 13:13:59 ───────────────────────────────────────────────── +2026/03/21 13:14:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:14:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2766,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:13:59.078766338Z"} +2026/03/21 13:14:04 [detection_layer] {"stage_name":"detection_layer","events_processed":230,"events_dropped":0,"avg_latency_ms":17.674315917282385,"throughput_eps":0,"last_update":"2026-03-21T13:13:59.210161258Z"} +2026/03/21 13:14:04 [transform_engine] {"stage_name":"transform_engine","events_processed":230,"events_dropped":0,"avg_latency_ms":867.4545124545675,"throughput_eps":0,"last_update":"2026-03-21T13:13:59.210176507Z"} +2026/03/21 13:14:04 [log_collector] {"stage_name":"log_collector","events_processed":12642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2528.4,"last_update":"2026-03-21T13:13:59.06901997Z"} +2026/03/21 13:14:04 [metric_collector] {"stage_name":"metric_collector","events_processed":6909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1381.8,"last_update":"2026-03-21T13:13:59.069257054Z"} +2026/03/21 13:14:04 ───────────────────────────────────────────────── +2026/03/21 13:14:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:14:09 [transform_engine] {"stage_name":"transform_engine","events_processed":230,"events_dropped":0,"avg_latency_ms":867.4545124545675,"throughput_eps":0,"last_update":"2026-03-21T13:14:04.210127311Z"} +2026/03/21 13:14:09 [log_collector] {"stage_name":"log_collector","events_processed":12642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2528.4,"last_update":"2026-03-21T13:14:04.068257358Z"} +2026/03/21 13:14:09 [metric_collector] {"stage_name":"metric_collector","events_processed":6914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1382.8,"last_update":"2026-03-21T13:14:04.068770631Z"} +2026/03/21 13:14:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2768,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:14:04.077732386Z"} +2026/03/21 13:14:09 [detection_layer] {"stage_name":"detection_layer","events_processed":230,"events_dropped":0,"avg_latency_ms":17.674315917282385,"throughput_eps":0,"last_update":"2026-03-21T13:14:04.210102613Z"} +2026/03/21 13:14:09 ───────────────────────────────────────────────── +2026/03/21 13:14:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:14:14 [metric_collector] {"stage_name":"metric_collector","events_processed":6919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1383.8,"last_update":"2026-03-21T13:14:09.068760655Z"} +2026/03/21 13:14:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2770,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:14:09.078173204Z"} +2026/03/21 13:14:14 [detection_layer] {"stage_name":"detection_layer","events_processed":230,"events_dropped":0,"avg_latency_ms":17.674315917282385,"throughput_eps":0,"last_update":"2026-03-21T13:14:09.210518054Z"} +2026/03/21 13:14:14 [transform_engine] {"stage_name":"transform_engine","events_processed":230,"events_dropped":0,"avg_latency_ms":867.4545124545675,"throughput_eps":0,"last_update":"2026-03-21T13:14:09.210533132Z"} +2026/03/21 13:14:14 [log_collector] {"stage_name":"log_collector","events_processed":12642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2528.4,"last_update":"2026-03-21T13:14:09.068169033Z"} +2026/03/21 13:14:14 ───────────────────────────────────────────────── +2026/03/21 13:14:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:14:19 [log_collector] {"stage_name":"log_collector","events_processed":12642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2528.4,"last_update":"2026-03-21T13:14:14.068648049Z"} +2026/03/21 13:14:19 [metric_collector] {"stage_name":"metric_collector","events_processed":6924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1384.8,"last_update":"2026-03-21T13:14:14.068950849Z"} +2026/03/21 13:14:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:14:14.078629528Z"} +2026/03/21 13:14:19 [detection_layer] {"stage_name":"detection_layer","events_processed":230,"events_dropped":0,"avg_latency_ms":17.674315917282385,"throughput_eps":0,"last_update":"2026-03-21T13:14:14.209906181Z"} +2026/03/21 13:14:19 [transform_engine] {"stage_name":"transform_engine","events_processed":230,"events_dropped":0,"avg_latency_ms":867.4545124545675,"throughput_eps":0,"last_update":"2026-03-21T13:14:14.209744551Z"} +2026/03/21 13:14:19 ───────────────────────────────────────────────── +2026/03/21 13:14:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:14:24 [transform_engine] {"stage_name":"transform_engine","events_processed":231,"events_dropped":0,"avg_latency_ms":716.8067309636541,"throughput_eps":0,"last_update":"2026-03-21T13:14:19.324833986Z"} +2026/03/21 13:14:24 [log_collector] {"stage_name":"log_collector","events_processed":12642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2528.4,"last_update":"2026-03-21T13:14:19.068119003Z"} +2026/03/21 13:14:24 [metric_collector] {"stage_name":"metric_collector","events_processed":6929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1385.8,"last_update":"2026-03-21T13:14:19.068628569Z"} +2026/03/21 13:14:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:14:19.077310027Z"} +2026/03/21 13:14:24 [detection_layer] {"stage_name":"detection_layer","events_processed":230,"events_dropped":0,"avg_latency_ms":17.674315917282385,"throughput_eps":0,"last_update":"2026-03-21T13:14:19.210601549Z"} +2026/03/21 13:14:24 ───────────────────────────────────────────────── +2026/03/21 13:14:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:14:29 [transform_engine] {"stage_name":"transform_engine","events_processed":231,"events_dropped":0,"avg_latency_ms":716.8067309636541,"throughput_eps":0,"last_update":"2026-03-21T13:14:24.209772764Z"} +2026/03/21 13:14:29 [log_collector] {"stage_name":"log_collector","events_processed":12642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2528.4,"last_update":"2026-03-21T13:14:24.069042184Z"} +2026/03/21 13:14:29 [metric_collector] {"stage_name":"metric_collector","events_processed":6934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1386.8,"last_update":"2026-03-21T13:14:24.06938526Z"} +2026/03/21 13:14:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:14:24.078534365Z"} +2026/03/21 13:14:29 [detection_layer] {"stage_name":"detection_layer","events_processed":231,"events_dropped":0,"avg_latency_ms":18.88503033382591,"throughput_eps":0,"last_update":"2026-03-21T13:14:24.210895494Z"} +2026/03/21 13:14:29 ───────────────────────────────────────────────── +2026/03/21 13:14:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:14:34 [log_collector] {"stage_name":"log_collector","events_processed":12642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2528.4,"last_update":"2026-03-21T13:14:29.068794509Z"} +2026/03/21 13:14:34 [metric_collector] {"stage_name":"metric_collector","events_processed":6939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1387.8,"last_update":"2026-03-21T13:14:29.069034369Z"} +2026/03/21 13:14:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:14:29.076910195Z"} +2026/03/21 13:14:34 [detection_layer] {"stage_name":"detection_layer","events_processed":231,"events_dropped":0,"avg_latency_ms":18.88503033382591,"throughput_eps":0,"last_update":"2026-03-21T13:14:29.210298972Z"} +2026/03/21 13:14:34 [transform_engine] {"stage_name":"transform_engine","events_processed":231,"events_dropped":0,"avg_latency_ms":716.8067309636541,"throughput_eps":0,"last_update":"2026-03-21T13:14:29.210315304Z"} +2026/03/21 13:14:34 ───────────────────────────────────────────────── +2026/03/21 13:14:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:14:39 [log_collector] {"stage_name":"log_collector","events_processed":12642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2528.4,"last_update":"2026-03-21T13:14:34.068947298Z"} +2026/03/21 13:14:39 [metric_collector] {"stage_name":"metric_collector","events_processed":6944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1388.8,"last_update":"2026-03-21T13:14:34.069512802Z"} +2026/03/21 13:14:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2780,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:14:34.077978527Z"} +2026/03/21 13:14:39 [detection_layer] {"stage_name":"detection_layer","events_processed":231,"events_dropped":0,"avg_latency_ms":18.88503033382591,"throughput_eps":0,"last_update":"2026-03-21T13:14:34.210141968Z"} +2026/03/21 13:14:39 [transform_engine] {"stage_name":"transform_engine","events_processed":231,"events_dropped":0,"avg_latency_ms":716.8067309636541,"throughput_eps":0,"last_update":"2026-03-21T13:14:34.210154311Z"} +2026/03/21 13:14:39 ───────────────────────────────────────────────── +2026/03/21 13:14:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:14:44 [log_collector] {"stage_name":"log_collector","events_processed":12642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2528.4,"last_update":"2026-03-21T13:14:39.068694468Z"} +2026/03/21 13:14:44 [metric_collector] {"stage_name":"metric_collector","events_processed":6949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1389.8,"last_update":"2026-03-21T13:14:39.068981618Z"} +2026/03/21 13:14:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2782,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:14:39.079214678Z"} +2026/03/21 13:14:44 [detection_layer] {"stage_name":"detection_layer","events_processed":231,"events_dropped":0,"avg_latency_ms":18.88503033382591,"throughput_eps":0,"last_update":"2026-03-21T13:14:39.210525235Z"} +2026/03/21 13:14:44 [transform_engine] {"stage_name":"transform_engine","events_processed":231,"events_dropped":0,"avg_latency_ms":716.8067309636541,"throughput_eps":0,"last_update":"2026-03-21T13:14:39.210440463Z"} +2026/03/21 13:14:44 ───────────────────────────────────────────────── +2026/03/21 13:14:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:14:49 [log_collector] {"stage_name":"log_collector","events_processed":12642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2528.4,"last_update":"2026-03-21T13:14:44.068607039Z"} +2026/03/21 13:14:49 [metric_collector] {"stage_name":"metric_collector","events_processed":6954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1390.8,"last_update":"2026-03-21T13:14:44.068859633Z"} +2026/03/21 13:14:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:14:44.077896452Z"} +2026/03/21 13:14:49 [detection_layer] {"stage_name":"detection_layer","events_processed":231,"events_dropped":0,"avg_latency_ms":18.88503033382591,"throughput_eps":0,"last_update":"2026-03-21T13:14:44.21016291Z"} +2026/03/21 13:14:49 [transform_engine] {"stage_name":"transform_engine","events_processed":231,"events_dropped":0,"avg_latency_ms":716.8067309636541,"throughput_eps":0,"last_update":"2026-03-21T13:14:44.210196895Z"} +2026/03/21 13:14:49 ───────────────────────────────────────────────── +2026/03/21 13:14:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:14:54 [log_collector] {"stage_name":"log_collector","events_processed":12642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2528.4,"last_update":"2026-03-21T13:14:49.06865707Z"} +2026/03/21 13:14:54 [metric_collector] {"stage_name":"metric_collector","events_processed":6959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1391.8,"last_update":"2026-03-21T13:14:49.068964699Z"} +2026/03/21 13:14:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:14:49.078382448Z"} +2026/03/21 13:14:54 [detection_layer] {"stage_name":"detection_layer","events_processed":231,"events_dropped":0,"avg_latency_ms":18.88503033382591,"throughput_eps":0,"last_update":"2026-03-21T13:14:49.210604321Z"} +2026/03/21 13:14:54 [transform_engine] {"stage_name":"transform_engine","events_processed":232,"events_dropped":0,"avg_latency_ms":587.4887407709233,"throughput_eps":0,"last_update":"2026-03-21T13:14:49.28085681Z"} +2026/03/21 13:14:54 ───────────────────────────────────────────────── +2026/03/21 13:14:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:14:59 [transform_engine] {"stage_name":"transform_engine","events_processed":232,"events_dropped":0,"avg_latency_ms":587.4887407709233,"throughput_eps":0,"last_update":"2026-03-21T13:14:54.209764545Z"} +2026/03/21 13:14:59 [log_collector] {"stage_name":"log_collector","events_processed":12642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2528.4,"last_update":"2026-03-21T13:14:54.068812511Z"} +2026/03/21 13:14:59 [metric_collector] {"stage_name":"metric_collector","events_processed":6964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1392.8,"last_update":"2026-03-21T13:14:54.069160798Z"} +2026/03/21 13:14:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:14:54.078536225Z"} +2026/03/21 13:14:59 [detection_layer] {"stage_name":"detection_layer","events_processed":232,"events_dropped":0,"avg_latency_ms":19.459865467060727,"throughput_eps":0,"last_update":"2026-03-21T13:14:54.210923636Z"} +2026/03/21 13:14:59 ───────────────────────────────────────────────── +2026/03/21 13:15:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:15:04 [transform_engine] {"stage_name":"transform_engine","events_processed":232,"events_dropped":0,"avg_latency_ms":587.4887407709233,"throughput_eps":0,"last_update":"2026-03-21T13:14:59.210265684Z"} +2026/03/21 13:15:04 [log_collector] {"stage_name":"log_collector","events_processed":12642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2528.4,"last_update":"2026-03-21T13:14:59.068827109Z"} +2026/03/21 13:15:04 [metric_collector] {"stage_name":"metric_collector","events_processed":6969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1393.8,"last_update":"2026-03-21T13:14:59.069071797Z"} +2026/03/21 13:15:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:14:59.079439595Z"} +2026/03/21 13:15:04 [detection_layer] {"stage_name":"detection_layer","events_processed":232,"events_dropped":0,"avg_latency_ms":19.459865467060727,"throughput_eps":0,"last_update":"2026-03-21T13:14:59.210442322Z"} +2026/03/21 13:15:04 ───────────────────────────────────────────────── +2026/03/21 13:15:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:15:09 [log_collector] {"stage_name":"log_collector","events_processed":12642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2528.4,"last_update":"2026-03-21T13:15:04.068689501Z"} +2026/03/21 13:15:09 [metric_collector] {"stage_name":"metric_collector","events_processed":6974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1394.8,"last_update":"2026-03-21T13:15:04.068998152Z"} +2026/03/21 13:15:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:15:04.077644623Z"} +2026/03/21 13:15:09 [detection_layer] {"stage_name":"detection_layer","events_processed":232,"events_dropped":0,"avg_latency_ms":19.459865467060727,"throughput_eps":0,"last_update":"2026-03-21T13:15:04.21092898Z"} +2026/03/21 13:15:09 [transform_engine] {"stage_name":"transform_engine","events_processed":232,"events_dropped":0,"avg_latency_ms":587.4887407709233,"throughput_eps":0,"last_update":"2026-03-21T13:15:04.209793606Z"} +2026/03/21 13:15:09 ───────────────────────────────────────────────── +2026/03/21 13:15:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:15:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:15:09.07764747Z"} +2026/03/21 13:15:14 [detection_layer] {"stage_name":"detection_layer","events_processed":232,"events_dropped":0,"avg_latency_ms":19.459865467060727,"throughput_eps":0,"last_update":"2026-03-21T13:15:09.209897517Z"} +2026/03/21 13:15:14 [transform_engine] {"stage_name":"transform_engine","events_processed":232,"events_dropped":0,"avg_latency_ms":587.4887407709233,"throughput_eps":0,"last_update":"2026-03-21T13:15:09.209875064Z"} +2026/03/21 13:15:14 [log_collector] {"stage_name":"log_collector","events_processed":12642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2528.4,"last_update":"2026-03-21T13:15:09.06841654Z"} +2026/03/21 13:15:14 [metric_collector] {"stage_name":"metric_collector","events_processed":6979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1395.8,"last_update":"2026-03-21T13:15:09.068598088Z"} +2026/03/21 13:15:14 ───────────────────────────────────────────────── +Saved state: 16 clusters, 12643 messages, reason: none +2026/03/21 13:15:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:15:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2796,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:15:14.076844261Z"} +2026/03/21 13:15:19 [detection_layer] {"stage_name":"detection_layer","events_processed":232,"events_dropped":0,"avg_latency_ms":19.459865467060727,"throughput_eps":0,"last_update":"2026-03-21T13:15:14.210234702Z"} +2026/03/21 13:15:19 [transform_engine] {"stage_name":"transform_engine","events_processed":232,"events_dropped":0,"avg_latency_ms":587.4887407709233,"throughput_eps":0,"last_update":"2026-03-21T13:15:14.210277414Z"} +2026/03/21 13:15:19 [log_collector] {"stage_name":"log_collector","events_processed":12642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2528.4,"last_update":"2026-03-21T13:15:14.068301298Z"} +2026/03/21 13:15:19 [metric_collector] {"stage_name":"metric_collector","events_processed":6984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1396.8,"last_update":"2026-03-21T13:15:14.068831804Z"} +2026/03/21 13:15:19 ───────────────────────────────────────────────── +2026/03/21 13:15:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:15:24 [log_collector] {"stage_name":"log_collector","events_processed":12645,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2529,"last_update":"2026-03-21T13:15:19.070197036Z"} +2026/03/21 13:15:24 [metric_collector] {"stage_name":"metric_collector","events_processed":6989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1397.8,"last_update":"2026-03-21T13:15:19.070430935Z"} +2026/03/21 13:15:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:15:19.077783336Z"} +2026/03/21 13:15:24 [detection_layer] {"stage_name":"detection_layer","events_processed":232,"events_dropped":0,"avg_latency_ms":19.459865467060727,"throughput_eps":0,"last_update":"2026-03-21T13:15:19.209990301Z"} +2026/03/21 13:15:24 [transform_engine] {"stage_name":"transform_engine","events_processed":233,"events_dropped":0,"avg_latency_ms":490.37034241673865,"throughput_eps":0,"last_update":"2026-03-21T13:15:19.311909182Z"} +2026/03/21 13:15:24 ───────────────────────────────────────────────── +2026/03/21 13:15:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:15:29 [log_collector] {"stage_name":"log_collector","events_processed":12645,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2529,"last_update":"2026-03-21T13:15:24.068730119Z"} +2026/03/21 13:15:29 [metric_collector] {"stage_name":"metric_collector","events_processed":6994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1398.8,"last_update":"2026-03-21T13:15:24.068664323Z"} +2026/03/21 13:15:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2800,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:15:24.075274854Z"} +2026/03/21 13:15:29 [detection_layer] {"stage_name":"detection_layer","events_processed":233,"events_dropped":0,"avg_latency_ms":18.398419773648584,"throughput_eps":0,"last_update":"2026-03-21T13:15:24.210495901Z"} +2026/03/21 13:15:29 [transform_engine] {"stage_name":"transform_engine","events_processed":233,"events_dropped":0,"avg_latency_ms":490.37034241673865,"throughput_eps":0,"last_update":"2026-03-21T13:15:24.210509758Z"} +2026/03/21 13:15:29 ───────────────────────────────────────────────── +2026/03/21 13:15:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:15:34 [log_collector] {"stage_name":"log_collector","events_processed":12655,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2531,"last_update":"2026-03-21T13:15:29.0688401Z"} +2026/03/21 13:15:34 [metric_collector] {"stage_name":"metric_collector","events_processed":6999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1399.8,"last_update":"2026-03-21T13:15:29.069128401Z"} +2026/03/21 13:15:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2802,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:15:29.07772632Z"} +2026/03/21 13:15:34 [detection_layer] {"stage_name":"detection_layer","events_processed":233,"events_dropped":0,"avg_latency_ms":18.398419773648584,"throughput_eps":0,"last_update":"2026-03-21T13:15:29.210120261Z"} +2026/03/21 13:15:34 [transform_engine] {"stage_name":"transform_engine","events_processed":233,"events_dropped":0,"avg_latency_ms":490.37034241673865,"throughput_eps":0,"last_update":"2026-03-21T13:15:29.21013542Z"} +2026/03/21 13:15:34 ───────────────────────────────────────────────── +2026/03/21 13:15:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:15:39 [log_collector] {"stage_name":"log_collector","events_processed":12656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2531.2,"last_update":"2026-03-21T13:15:34.06888413Z"} +2026/03/21 13:15:39 [metric_collector] {"stage_name":"metric_collector","events_processed":7004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1400.8,"last_update":"2026-03-21T13:15:34.069104773Z"} +2026/03/21 13:15:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:15:34.07943568Z"} +2026/03/21 13:15:39 [detection_layer] {"stage_name":"detection_layer","events_processed":233,"events_dropped":0,"avg_latency_ms":18.398419773648584,"throughput_eps":0,"last_update":"2026-03-21T13:15:34.210640725Z"} +2026/03/21 13:15:39 [transform_engine] {"stage_name":"transform_engine","events_processed":233,"events_dropped":0,"avg_latency_ms":490.37034241673865,"throughput_eps":0,"last_update":"2026-03-21T13:15:34.210651746Z"} +2026/03/21 13:15:39 ───────────────────────────────────────────────── +2026/03/21 13:15:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:15:44 [metric_collector] {"stage_name":"metric_collector","events_processed":7009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1401.8,"last_update":"2026-03-21T13:15:39.069004244Z"} +2026/03/21 13:15:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:15:39.077630377Z"} +2026/03/21 13:15:44 [detection_layer] {"stage_name":"detection_layer","events_processed":233,"events_dropped":0,"avg_latency_ms":18.398419773648584,"throughput_eps":0,"last_update":"2026-03-21T13:15:39.210818058Z"} +2026/03/21 13:15:44 [transform_engine] {"stage_name":"transform_engine","events_processed":233,"events_dropped":0,"avg_latency_ms":490.37034241673865,"throughput_eps":0,"last_update":"2026-03-21T13:15:39.209708533Z"} +2026/03/21 13:15:44 [log_collector] {"stage_name":"log_collector","events_processed":12672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2534.4,"last_update":"2026-03-21T13:15:39.06872544Z"} +2026/03/21 13:15:44 ───────────────────────────────────────────────── +2026/03/21 13:15:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:15:49 [detection_layer] {"stage_name":"detection_layer","events_processed":233,"events_dropped":0,"avg_latency_ms":18.398419773648584,"throughput_eps":0,"last_update":"2026-03-21T13:15:44.210845933Z"} +2026/03/21 13:15:49 [transform_engine] {"stage_name":"transform_engine","events_processed":233,"events_dropped":0,"avg_latency_ms":490.37034241673865,"throughput_eps":0,"last_update":"2026-03-21T13:15:44.209674219Z"} +2026/03/21 13:15:49 [log_collector] {"stage_name":"log_collector","events_processed":12675,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2535,"last_update":"2026-03-21T13:15:44.068549514Z"} +2026/03/21 13:15:49 [metric_collector] {"stage_name":"metric_collector","events_processed":7014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1402.8,"last_update":"2026-03-21T13:15:44.068760498Z"} +2026/03/21 13:15:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:15:44.074507476Z"} +2026/03/21 13:15:49 ───────────────────────────────────────────────── +2026/03/21 13:15:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:15:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:15:49.077395796Z"} +2026/03/21 13:15:54 [detection_layer] {"stage_name":"detection_layer","events_processed":233,"events_dropped":0,"avg_latency_ms":18.398419773648584,"throughput_eps":0,"last_update":"2026-03-21T13:15:49.210648151Z"} +2026/03/21 13:15:54 [transform_engine] {"stage_name":"transform_engine","events_processed":234,"events_dropped":0,"avg_latency_ms":414.9809573333909,"throughput_eps":0,"last_update":"2026-03-21T13:15:49.324171239Z"} +2026/03/21 13:15:54 [log_collector] {"stage_name":"log_collector","events_processed":12686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2537.2,"last_update":"2026-03-21T13:15:49.06808384Z"} +2026/03/21 13:15:54 [metric_collector] {"stage_name":"metric_collector","events_processed":7019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1403.8,"last_update":"2026-03-21T13:15:49.068841251Z"} +2026/03/21 13:15:54 ───────────────────────────────────────────────── +2026/03/21 13:15:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:15:59 [log_collector] {"stage_name":"log_collector","events_processed":12686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2537.2,"last_update":"2026-03-21T13:15:54.068066571Z"} +2026/03/21 13:15:59 [metric_collector] {"stage_name":"metric_collector","events_processed":7024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1404.8,"last_update":"2026-03-21T13:15:54.068647223Z"} +2026/03/21 13:15:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2812,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:15:54.07981328Z"} +2026/03/21 13:15:59 [detection_layer] {"stage_name":"detection_layer","events_processed":234,"events_dropped":0,"avg_latency_ms":18.377780418918867,"throughput_eps":0,"last_update":"2026-03-21T13:15:54.210171273Z"} +2026/03/21 13:15:59 [transform_engine] {"stage_name":"transform_engine","events_processed":234,"events_dropped":0,"avg_latency_ms":414.9809573333909,"throughput_eps":0,"last_update":"2026-03-21T13:15:54.210067304Z"} +2026/03/21 13:15:59 ───────────────────────────────────────────────── +2026/03/21 13:16:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:16:04 [log_collector] {"stage_name":"log_collector","events_processed":12686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2537.2,"last_update":"2026-03-21T13:15:59.068744944Z"} +2026/03/21 13:16:04 [metric_collector] {"stage_name":"metric_collector","events_processed":7029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1405.8,"last_update":"2026-03-21T13:15:59.069494429Z"} +2026/03/21 13:16:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:15:59.077876092Z"} +2026/03/21 13:16:04 [detection_layer] {"stage_name":"detection_layer","events_processed":234,"events_dropped":0,"avg_latency_ms":18.377780418918867,"throughput_eps":0,"last_update":"2026-03-21T13:15:59.210213555Z"} +2026/03/21 13:16:04 [transform_engine] {"stage_name":"transform_engine","events_processed":234,"events_dropped":0,"avg_latency_ms":414.9809573333909,"throughput_eps":0,"last_update":"2026-03-21T13:15:59.210104105Z"} +2026/03/21 13:16:04 ───────────────────────────────────────────────── +2026/03/21 13:16:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:16:09 [log_collector] {"stage_name":"log_collector","events_processed":12686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2537.2,"last_update":"2026-03-21T13:16:04.068671732Z"} +2026/03/21 13:16:09 [metric_collector] {"stage_name":"metric_collector","events_processed":7034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1406.8,"last_update":"2026-03-21T13:16:04.068921731Z"} +2026/03/21 13:16:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2816,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:16:04.07850147Z"} +2026/03/21 13:16:09 [detection_layer] {"stage_name":"detection_layer","events_processed":234,"events_dropped":0,"avg_latency_ms":18.377780418918867,"throughput_eps":0,"last_update":"2026-03-21T13:16:04.210904277Z"} +2026/03/21 13:16:09 [transform_engine] {"stage_name":"transform_engine","events_processed":234,"events_dropped":0,"avg_latency_ms":414.9809573333909,"throughput_eps":0,"last_update":"2026-03-21T13:16:04.209673941Z"} +2026/03/21 13:16:09 ───────────────────────────────────────────────── +2026/03/21 13:16:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:16:14 [transform_engine] {"stage_name":"transform_engine","events_processed":234,"events_dropped":0,"avg_latency_ms":414.9809573333909,"throughput_eps":0,"last_update":"2026-03-21T13:16:09.210424084Z"} +2026/03/21 13:16:14 [log_collector] {"stage_name":"log_collector","events_processed":12686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2537.2,"last_update":"2026-03-21T13:16:09.068733696Z"} +2026/03/21 13:16:14 [metric_collector] {"stage_name":"metric_collector","events_processed":7039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1407.8,"last_update":"2026-03-21T13:16:09.069125407Z"} +2026/03/21 13:16:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2818,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:16:09.079002134Z"} +2026/03/21 13:16:14 [detection_layer] {"stage_name":"detection_layer","events_processed":234,"events_dropped":0,"avg_latency_ms":18.377780418918867,"throughput_eps":0,"last_update":"2026-03-21T13:16:09.210471124Z"} +2026/03/21 13:16:14 ───────────────────────────────────────────────── +2026/03/21 13:16:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:16:19 [transform_engine] {"stage_name":"transform_engine","events_processed":234,"events_dropped":0,"avg_latency_ms":414.9809573333909,"throughput_eps":0,"last_update":"2026-03-21T13:16:14.210527094Z"} +2026/03/21 13:16:19 [log_collector] {"stage_name":"log_collector","events_processed":12686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2537.2,"last_update":"2026-03-21T13:16:14.068860402Z"} +2026/03/21 13:16:19 [metric_collector] {"stage_name":"metric_collector","events_processed":7044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1408.8,"last_update":"2026-03-21T13:16:14.069680383Z"} +2026/03/21 13:16:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2820,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:16:14.079252757Z"} +2026/03/21 13:16:19 [detection_layer] {"stage_name":"detection_layer","events_processed":234,"events_dropped":0,"avg_latency_ms":18.377780418918867,"throughput_eps":0,"last_update":"2026-03-21T13:16:14.210464414Z"} +2026/03/21 13:16:19 ───────────────────────────────────────────────── +2026/03/21 13:16:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:16:24 [log_collector] {"stage_name":"log_collector","events_processed":12686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2537.2,"last_update":"2026-03-21T13:16:19.068880159Z"} +2026/03/21 13:16:24 [metric_collector] {"stage_name":"metric_collector","events_processed":7049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1409.8,"last_update":"2026-03-21T13:16:19.068955444Z"} +2026/03/21 13:16:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:16:19.079182463Z"} +2026/03/21 13:16:24 [detection_layer] {"stage_name":"detection_layer","events_processed":234,"events_dropped":0,"avg_latency_ms":18.377780418918867,"throughput_eps":0,"last_update":"2026-03-21T13:16:19.210607832Z"} +2026/03/21 13:16:24 [transform_engine] {"stage_name":"transform_engine","events_processed":235,"events_dropped":0,"avg_latency_ms":348.68714386671274,"throughput_eps":0,"last_update":"2026-03-21T13:16:19.294083714Z"} +2026/03/21 13:16:24 ───────────────────────────────────────────────── +2026/03/21 13:16:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:16:29 [metric_collector] {"stage_name":"metric_collector","events_processed":7054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1410.8,"last_update":"2026-03-21T13:16:24.068875893Z"} +2026/03/21 13:16:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:16:24.07784318Z"} +2026/03/21 13:16:29 [detection_layer] {"stage_name":"detection_layer","events_processed":235,"events_dropped":0,"avg_latency_ms":18.819146135135092,"throughput_eps":0,"last_update":"2026-03-21T13:16:24.209987177Z"} +2026/03/21 13:16:29 [transform_engine] {"stage_name":"transform_engine","events_processed":235,"events_dropped":0,"avg_latency_ms":348.68714386671274,"throughput_eps":0,"last_update":"2026-03-21T13:16:24.209999701Z"} +2026/03/21 13:16:29 [log_collector] {"stage_name":"log_collector","events_processed":12686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2537.2,"last_update":"2026-03-21T13:16:24.068517256Z"} +2026/03/21 13:16:29 ───────────────────────────────────────────────── +2026/03/21 13:16:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:16:34 [log_collector] {"stage_name":"log_collector","events_processed":12686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2537.2,"last_update":"2026-03-21T13:16:29.068653994Z"} +2026/03/21 13:16:34 [metric_collector] {"stage_name":"metric_collector","events_processed":7059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1411.8,"last_update":"2026-03-21T13:16:29.068811616Z"} +2026/03/21 13:16:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2826,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:16:29.078470158Z"} +2026/03/21 13:16:34 [detection_layer] {"stage_name":"detection_layer","events_processed":235,"events_dropped":0,"avg_latency_ms":18.819146135135092,"throughput_eps":0,"last_update":"2026-03-21T13:16:29.210812013Z"} +2026/03/21 13:16:34 [transform_engine] {"stage_name":"transform_engine","events_processed":235,"events_dropped":0,"avg_latency_ms":348.68714386671274,"throughput_eps":0,"last_update":"2026-03-21T13:16:29.209630762Z"} +2026/03/21 13:16:34 ───────────────────────────────────────────────── +2026/03/21 13:16:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:16:39 [transform_engine] {"stage_name":"transform_engine","events_processed":235,"events_dropped":0,"avg_latency_ms":348.68714386671274,"throughput_eps":0,"last_update":"2026-03-21T13:16:34.209729324Z"} +2026/03/21 13:16:39 [log_collector] {"stage_name":"log_collector","events_processed":12686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2537.2,"last_update":"2026-03-21T13:16:34.068709683Z"} +2026/03/21 13:16:39 [metric_collector] {"stage_name":"metric_collector","events_processed":7064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1412.8,"last_update":"2026-03-21T13:16:34.069455641Z"} +2026/03/21 13:16:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:16:34.078526308Z"} +2026/03/21 13:16:39 [detection_layer] {"stage_name":"detection_layer","events_processed":235,"events_dropped":0,"avg_latency_ms":18.819146135135092,"throughput_eps":0,"last_update":"2026-03-21T13:16:34.210910565Z"} +2026/03/21 13:16:39 ───────────────────────────────────────────────── +2026/03/21 13:16:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:16:44 [log_collector] {"stage_name":"log_collector","events_processed":12686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2537.2,"last_update":"2026-03-21T13:16:44.068107779Z"} +2026/03/21 13:16:44 [metric_collector] {"stage_name":"metric_collector","events_processed":7069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1413.8,"last_update":"2026-03-21T13:16:39.069147398Z"} +2026/03/21 13:16:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2830,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:16:39.077240793Z"} +2026/03/21 13:16:44 [detection_layer] {"stage_name":"detection_layer","events_processed":235,"events_dropped":0,"avg_latency_ms":18.819146135135092,"throughput_eps":0,"last_update":"2026-03-21T13:16:39.21063217Z"} +2026/03/21 13:16:44 [transform_engine] {"stage_name":"transform_engine","events_processed":235,"events_dropped":0,"avg_latency_ms":348.68714386671274,"throughput_eps":0,"last_update":"2026-03-21T13:16:39.21064268Z"} +2026/03/21 13:16:44 ───────────────────────────────────────────────── +2026/03/21 13:16:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:16:49 [log_collector] {"stage_name":"log_collector","events_processed":12686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2537.2,"last_update":"2026-03-21T13:16:44.068107779Z"} +2026/03/21 13:16:49 [metric_collector] {"stage_name":"metric_collector","events_processed":7074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1414.8,"last_update":"2026-03-21T13:16:44.068762192Z"} +2026/03/21 13:16:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2832,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:16:44.078529392Z"} +2026/03/21 13:16:49 [detection_layer] {"stage_name":"detection_layer","events_processed":235,"events_dropped":0,"avg_latency_ms":18.819146135135092,"throughput_eps":0,"last_update":"2026-03-21T13:16:44.210843688Z"} +2026/03/21 13:16:49 [transform_engine] {"stage_name":"transform_engine","events_processed":235,"events_dropped":0,"avg_latency_ms":348.68714386671274,"throughput_eps":0,"last_update":"2026-03-21T13:16:44.209654261Z"} +2026/03/21 13:16:49 ───────────────────────────────────────────────── +Saved state: 16 clusters, 12687 messages, reason: none +2026/03/21 13:16:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:16:54 [metric_collector] {"stage_name":"metric_collector","events_processed":7079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1415.8,"last_update":"2026-03-21T13:16:49.068476622Z"} +2026/03/21 13:16:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:16:49.077073833Z"} +2026/03/21 13:16:54 [detection_layer] {"stage_name":"detection_layer","events_processed":235,"events_dropped":0,"avg_latency_ms":18.819146135135092,"throughput_eps":0,"last_update":"2026-03-21T13:16:49.210338459Z"} +2026/03/21 13:16:54 [transform_engine] {"stage_name":"transform_engine","events_processed":236,"events_dropped":0,"avg_latency_ms":292.53341529337024,"throughput_eps":0,"last_update":"2026-03-21T13:16:49.278294381Z"} +2026/03/21 13:16:54 [log_collector] {"stage_name":"log_collector","events_processed":12686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2537.2,"last_update":"2026-03-21T13:16:49.068150138Z"} +2026/03/21 13:16:54 ───────────────────────────────────────────────── +2026/03/21 13:16:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:16:59 [detection_layer] {"stage_name":"detection_layer","events_processed":236,"events_dropped":0,"avg_latency_ms":19.052040708108077,"throughput_eps":0,"last_update":"2026-03-21T13:16:54.210091748Z"} +2026/03/21 13:16:59 [transform_engine] {"stage_name":"transform_engine","events_processed":236,"events_dropped":0,"avg_latency_ms":292.53341529337024,"throughput_eps":0,"last_update":"2026-03-21T13:16:54.210133568Z"} +2026/03/21 13:16:59 [log_collector] {"stage_name":"log_collector","events_processed":12691,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2538.2,"last_update":"2026-03-21T13:16:54.068482415Z"} +2026/03/21 13:16:59 [metric_collector] {"stage_name":"metric_collector","events_processed":7084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1416.8,"last_update":"2026-03-21T13:16:54.06875689Z"} +2026/03/21 13:16:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:16:54.07989781Z"} +2026/03/21 13:16:59 ───────────────────────────────────────────────── +2026/03/21 13:17:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:17:04 [log_collector] {"stage_name":"log_collector","events_processed":12691,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2538.2,"last_update":"2026-03-21T13:16:59.069362052Z"} +2026/03/21 13:17:04 [metric_collector] {"stage_name":"metric_collector","events_processed":7089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1417.8,"last_update":"2026-03-21T13:16:59.069610197Z"} +2026/03/21 13:17:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:16:59.07947305Z"} +2026/03/21 13:17:04 [detection_layer] {"stage_name":"detection_layer","events_processed":236,"events_dropped":0,"avg_latency_ms":19.052040708108077,"throughput_eps":0,"last_update":"2026-03-21T13:16:59.211384097Z"} +2026/03/21 13:17:04 [transform_engine] {"stage_name":"transform_engine","events_processed":236,"events_dropped":0,"avg_latency_ms":292.53341529337024,"throughput_eps":0,"last_update":"2026-03-21T13:16:59.211393074Z"} +2026/03/21 13:17:04 ───────────────────────────────────────────────── +2026/03/21 13:17:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:17:09 [transform_engine] {"stage_name":"transform_engine","events_processed":236,"events_dropped":0,"avg_latency_ms":292.53341529337024,"throughput_eps":0,"last_update":"2026-03-21T13:17:04.210318284Z"} +2026/03/21 13:17:09 [log_collector] {"stage_name":"log_collector","events_processed":12691,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2538.2,"last_update":"2026-03-21T13:17:04.068490331Z"} +2026/03/21 13:17:09 [metric_collector] {"stage_name":"metric_collector","events_processed":7094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1418.8,"last_update":"2026-03-21T13:17:04.068728307Z"} +2026/03/21 13:17:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:17:04.075090187Z"} +2026/03/21 13:17:09 [detection_layer] {"stage_name":"detection_layer","events_processed":236,"events_dropped":0,"avg_latency_ms":19.052040708108077,"throughput_eps":0,"last_update":"2026-03-21T13:17:04.210308386Z"} +2026/03/21 13:17:09 ───────────────────────────────────────────────── +2026/03/21 13:17:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:17:14 [log_collector] {"stage_name":"log_collector","events_processed":12691,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2538.2,"last_update":"2026-03-21T13:17:09.068603608Z"} +2026/03/21 13:17:14 [metric_collector] {"stage_name":"metric_collector","events_processed":7099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1419.8,"last_update":"2026-03-21T13:17:09.069052137Z"} +2026/03/21 13:17:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:17:09.076753181Z"} +2026/03/21 13:17:14 [detection_layer] {"stage_name":"detection_layer","events_processed":236,"events_dropped":0,"avg_latency_ms":19.052040708108077,"throughput_eps":0,"last_update":"2026-03-21T13:17:09.20994972Z"} +2026/03/21 13:17:14 [transform_engine] {"stage_name":"transform_engine","events_processed":236,"events_dropped":0,"avg_latency_ms":292.53341529337024,"throughput_eps":0,"last_update":"2026-03-21T13:17:09.209959149Z"} +2026/03/21 13:17:14 ───────────────────────────────────────────────── +2026/03/21 13:17:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:17:19 [transform_engine] {"stage_name":"transform_engine","events_processed":236,"events_dropped":0,"avg_latency_ms":292.53341529337024,"throughput_eps":0,"last_update":"2026-03-21T13:17:14.210609537Z"} +2026/03/21 13:17:19 [log_collector] {"stage_name":"log_collector","events_processed":12691,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2538.2,"last_update":"2026-03-21T13:17:14.068856445Z"} +2026/03/21 13:17:19 [metric_collector] {"stage_name":"metric_collector","events_processed":7104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1420.8,"last_update":"2026-03-21T13:17:14.069114088Z"} +2026/03/21 13:17:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:17:14.077418387Z"} +2026/03/21 13:17:19 [detection_layer] {"stage_name":"detection_layer","events_processed":236,"events_dropped":0,"avg_latency_ms":19.052040708108077,"throughput_eps":0,"last_update":"2026-03-21T13:17:14.21060015Z"} +2026/03/21 13:17:19 ───────────────────────────────────────────────── +2026/03/21 13:17:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:17:24 [log_collector] {"stage_name":"log_collector","events_processed":12691,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2538.2,"last_update":"2026-03-21T13:17:19.068682548Z"} +2026/03/21 13:17:24 [metric_collector] {"stage_name":"metric_collector","events_processed":7109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1421.8,"last_update":"2026-03-21T13:17:19.068878824Z"} +2026/03/21 13:17:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:17:19.077514065Z"} +2026/03/21 13:17:24 [detection_layer] {"stage_name":"detection_layer","events_processed":236,"events_dropped":0,"avg_latency_ms":19.052040708108077,"throughput_eps":0,"last_update":"2026-03-21T13:17:19.21081678Z"} +2026/03/21 13:17:24 [transform_engine] {"stage_name":"transform_engine","events_processed":237,"events_dropped":0,"avg_latency_ms":538.7893232346962,"throughput_eps":0,"last_update":"2026-03-21T13:17:20.733548014Z"} +2026/03/21 13:17:24 ───────────────────────────────────────────────── +2026/03/21 13:17:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:17:29 [transform_engine] {"stage_name":"transform_engine","events_processed":237,"events_dropped":0,"avg_latency_ms":538.7893232346962,"throughput_eps":0,"last_update":"2026-03-21T13:17:24.210342812Z"} +2026/03/21 13:17:29 [log_collector] {"stage_name":"log_collector","events_processed":12691,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2538.2,"last_update":"2026-03-21T13:17:24.069576918Z"} +2026/03/21 13:17:29 [metric_collector] {"stage_name":"metric_collector","events_processed":7113,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1422.6,"last_update":"2026-03-21T13:17:24.069549595Z"} +2026/03/21 13:17:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2848,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:17:24.079082687Z"} +2026/03/21 13:17:29 [detection_layer] {"stage_name":"detection_layer","events_processed":237,"events_dropped":0,"avg_latency_ms":17.61122316648646,"throughput_eps":0,"last_update":"2026-03-21T13:17:24.210312003Z"} +2026/03/21 13:17:29 ───────────────────────────────────────────────── +2026/03/21 13:17:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:17:34 [metric_collector] {"stage_name":"metric_collector","events_processed":7119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1423.8,"last_update":"2026-03-21T13:17:29.068311945Z"} +2026/03/21 13:17:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:17:29.075834248Z"} +2026/03/21 13:17:34 [detection_layer] {"stage_name":"detection_layer","events_processed":237,"events_dropped":0,"avg_latency_ms":17.61122316648646,"throughput_eps":0,"last_update":"2026-03-21T13:17:29.210092483Z"} +2026/03/21 13:17:34 [transform_engine] {"stage_name":"transform_engine","events_processed":237,"events_dropped":0,"avg_latency_ms":538.7893232346962,"throughput_eps":0,"last_update":"2026-03-21T13:17:29.210056413Z"} +2026/03/21 13:17:34 [log_collector] {"stage_name":"log_collector","events_processed":12691,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2538.2,"last_update":"2026-03-21T13:17:29.068064902Z"} +2026/03/21 13:17:34 ───────────────────────────────────────────────── +2026/03/21 13:17:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:17:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:17:34.076201751Z"} +2026/03/21 13:17:39 [detection_layer] {"stage_name":"detection_layer","events_processed":237,"events_dropped":0,"avg_latency_ms":17.61122316648646,"throughput_eps":0,"last_update":"2026-03-21T13:17:34.210423638Z"} +2026/03/21 13:17:39 [transform_engine] {"stage_name":"transform_engine","events_processed":237,"events_dropped":0,"avg_latency_ms":538.7893232346962,"throughput_eps":0,"last_update":"2026-03-21T13:17:34.210444607Z"} +2026/03/21 13:17:39 [log_collector] {"stage_name":"log_collector","events_processed":12691,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2538.2,"last_update":"2026-03-21T13:17:34.068819968Z"} +2026/03/21 13:17:39 [metric_collector] {"stage_name":"metric_collector","events_processed":7124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1424.8,"last_update":"2026-03-21T13:17:34.068726288Z"} +2026/03/21 13:17:39 ───────────────────────────────────────────────── +2026/03/21 13:17:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:17:44 [log_collector] {"stage_name":"log_collector","events_processed":12700,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2540,"last_update":"2026-03-21T13:17:39.068765465Z"} +2026/03/21 13:17:44 [metric_collector] {"stage_name":"metric_collector","events_processed":7129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1425.8,"last_update":"2026-03-21T13:17:39.069143499Z"} +2026/03/21 13:17:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:17:39.078564577Z"} +2026/03/21 13:17:44 [detection_layer] {"stage_name":"detection_layer","events_processed":237,"events_dropped":0,"avg_latency_ms":17.61122316648646,"throughput_eps":0,"last_update":"2026-03-21T13:17:39.210105681Z"} +2026/03/21 13:17:44 [transform_engine] {"stage_name":"transform_engine","events_processed":237,"events_dropped":0,"avg_latency_ms":538.7893232346962,"throughput_eps":0,"last_update":"2026-03-21T13:17:39.210236863Z"} +2026/03/21 13:17:44 ───────────────────────────────────────────────── +2026/03/21 13:17:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:17:49 [transform_engine] {"stage_name":"transform_engine","events_processed":237,"events_dropped":0,"avg_latency_ms":538.7893232346962,"throughput_eps":0,"last_update":"2026-03-21T13:17:44.209684076Z"} +2026/03/21 13:17:49 [log_collector] {"stage_name":"log_collector","events_processed":12743,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2548.6,"last_update":"2026-03-21T13:17:44.068085134Z"} +2026/03/21 13:17:49 [metric_collector] {"stage_name":"metric_collector","events_processed":7134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1426.8,"last_update":"2026-03-21T13:17:44.068395828Z"} +2026/03/21 13:17:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:17:44.075718579Z"} +2026/03/21 13:17:49 [detection_layer] {"stage_name":"detection_layer","events_processed":237,"events_dropped":0,"avg_latency_ms":17.61122316648646,"throughput_eps":0,"last_update":"2026-03-21T13:17:44.210796856Z"} +2026/03/21 13:17:49 ───────────────────────────────────────────────── +Saved state: 16 clusters, 13041 messages, reason: none +2026/03/21 13:17:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:17:54 [detection_layer] {"stage_name":"detection_layer","events_processed":237,"events_dropped":0,"avg_latency_ms":17.61122316648646,"throughput_eps":0,"last_update":"2026-03-21T13:17:49.210736795Z"} +2026/03/21 13:17:54 [transform_engine] {"stage_name":"transform_engine","events_processed":238,"events_dropped":0,"avg_latency_ms":935.2442179877571,"throughput_eps":0,"last_update":"2026-03-21T13:17:51.730766672Z"} +2026/03/21 13:17:54 [log_collector] {"stage_name":"log_collector","events_processed":12973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2594.6,"last_update":"2026-03-21T13:17:49.068540418Z"} +2026/03/21 13:17:54 [metric_collector] {"stage_name":"metric_collector","events_processed":7139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1427.8,"last_update":"2026-03-21T13:17:49.068850592Z"} +2026/03/21 13:17:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:17:49.075369533Z"} +2026/03/21 13:17:54 ───────────────────────────────────────────────── +2026/03/21 13:17:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:17:59 [detection_layer] {"stage_name":"detection_layer","events_processed":238,"events_dropped":0,"avg_latency_ms":17.487365133189172,"throughput_eps":0,"last_update":"2026-03-21T13:17:54.21075335Z"} +2026/03/21 13:17:59 [transform_engine] {"stage_name":"transform_engine","events_processed":238,"events_dropped":0,"avg_latency_ms":935.2442179877571,"throughput_eps":0,"last_update":"2026-03-21T13:17:54.210767567Z"} +2026/03/21 13:17:59 [log_collector] {"stage_name":"log_collector","events_processed":13048,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2609.6,"last_update":"2026-03-21T13:17:54.068898616Z"} +2026/03/21 13:17:59 [metric_collector] {"stage_name":"metric_collector","events_processed":7143,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1428.6,"last_update":"2026-03-21T13:17:54.068881633Z"} +2026/03/21 13:17:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2860,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:17:54.07840151Z"} +2026/03/21 13:17:59 ───────────────────────────────────────────────── +2026/03/21 13:18:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:18:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2862,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:17:59.079485547Z"} +2026/03/21 13:18:04 [detection_layer] {"stage_name":"detection_layer","events_processed":238,"events_dropped":0,"avg_latency_ms":17.487365133189172,"throughput_eps":0,"last_update":"2026-03-21T13:17:59.211009763Z"} +2026/03/21 13:18:04 [transform_engine] {"stage_name":"transform_engine","events_processed":238,"events_dropped":0,"avg_latency_ms":935.2442179877571,"throughput_eps":0,"last_update":"2026-03-21T13:17:59.209821388Z"} +2026/03/21 13:18:04 [log_collector] {"stage_name":"log_collector","events_processed":13048,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2609.6,"last_update":"2026-03-21T13:17:59.068062036Z"} +2026/03/21 13:18:04 [metric_collector] {"stage_name":"metric_collector","events_processed":7148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1429.6,"last_update":"2026-03-21T13:17:59.068052968Z"} +2026/03/21 13:18:04 ───────────────────────────────────────────────── +2026/03/21 13:18:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:18:09 [transform_engine] {"stage_name":"transform_engine","events_processed":238,"events_dropped":0,"avg_latency_ms":935.2442179877571,"throughput_eps":0,"last_update":"2026-03-21T13:18:04.210611502Z"} +2026/03/21 13:18:09 [log_collector] {"stage_name":"log_collector","events_processed":13051,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2610.2,"last_update":"2026-03-21T13:18:04.068756816Z"} +2026/03/21 13:18:09 [metric_collector] {"stage_name":"metric_collector","events_processed":7153,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1430.6,"last_update":"2026-03-21T13:18:04.068663168Z"} +2026/03/21 13:18:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:18:04.077409152Z"} +2026/03/21 13:18:09 [detection_layer] {"stage_name":"detection_layer","events_processed":238,"events_dropped":0,"avg_latency_ms":17.487365133189172,"throughput_eps":0,"last_update":"2026-03-21T13:18:04.210601633Z"} +2026/03/21 13:18:09 ───────────────────────────────────────────────── +2026/03/21 13:18:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:18:14 [log_collector] {"stage_name":"log_collector","events_processed":13051,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2610.2,"last_update":"2026-03-21T13:18:09.068868281Z"} +2026/03/21 13:18:14 [metric_collector] {"stage_name":"metric_collector","events_processed":7159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1431.8,"last_update":"2026-03-21T13:18:09.068794619Z"} +2026/03/21 13:18:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:18:09.076179418Z"} +2026/03/21 13:18:14 [detection_layer] {"stage_name":"detection_layer","events_processed":238,"events_dropped":0,"avg_latency_ms":17.487365133189172,"throughput_eps":0,"last_update":"2026-03-21T13:18:09.210381203Z"} +2026/03/21 13:18:14 [transform_engine] {"stage_name":"transform_engine","events_processed":238,"events_dropped":0,"avg_latency_ms":935.2442179877571,"throughput_eps":0,"last_update":"2026-03-21T13:18:09.210370081Z"} +2026/03/21 13:18:14 ───────────────────────────────────────────────── +2026/03/21 13:18:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:18:19 [log_collector] {"stage_name":"log_collector","events_processed":13061,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2612.2,"last_update":"2026-03-21T13:18:14.068757899Z"} +2026/03/21 13:18:19 [metric_collector] {"stage_name":"metric_collector","events_processed":7164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1432.8,"last_update":"2026-03-21T13:18:14.069060968Z"} +2026/03/21 13:18:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2868,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:18:14.076942769Z"} +2026/03/21 13:18:19 [detection_layer] {"stage_name":"detection_layer","events_processed":238,"events_dropped":0,"avg_latency_ms":17.487365133189172,"throughput_eps":0,"last_update":"2026-03-21T13:18:14.21051555Z"} +2026/03/21 13:18:19 [transform_engine] {"stage_name":"transform_engine","events_processed":238,"events_dropped":0,"avg_latency_ms":935.2442179877571,"throughput_eps":0,"last_update":"2026-03-21T13:18:14.210419295Z"} +2026/03/21 13:18:19 ───────────────────────────────────────────────── +2026/03/21 13:18:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:18:24 [transform_engine] {"stage_name":"transform_engine","events_processed":239,"events_dropped":0,"avg_latency_ms":764.2321385902058,"throughput_eps":0,"last_update":"2026-03-21T13:18:19.289848222Z"} +2026/03/21 13:18:24 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T13:18:19.068863138Z"} +2026/03/21 13:18:24 [metric_collector] {"stage_name":"metric_collector","events_processed":7169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1433.8,"last_update":"2026-03-21T13:18:19.069006784Z"} +2026/03/21 13:18:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:18:19.075483414Z"} +2026/03/21 13:18:24 [detection_layer] {"stage_name":"detection_layer","events_processed":238,"events_dropped":0,"avg_latency_ms":17.487365133189172,"throughput_eps":0,"last_update":"2026-03-21T13:18:19.210876401Z"} +2026/03/21 13:18:24 ───────────────────────────────────────────────── +2026/03/21 13:18:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:18:29 [transform_engine] {"stage_name":"transform_engine","events_processed":239,"events_dropped":0,"avg_latency_ms":764.2321385902058,"throughput_eps":0,"last_update":"2026-03-21T13:18:24.210503223Z"} +2026/03/21 13:18:29 [log_collector] {"stage_name":"log_collector","events_processed":13078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2615.6,"last_update":"2026-03-21T13:18:24.068639066Z"} +2026/03/21 13:18:29 [metric_collector] {"stage_name":"metric_collector","events_processed":7174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1434.8,"last_update":"2026-03-21T13:18:24.069388922Z"} +2026/03/21 13:18:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:18:24.078266278Z"} +2026/03/21 13:18:29 [detection_layer] {"stage_name":"detection_layer","events_processed":239,"events_dropped":0,"avg_latency_ms":16.842161106551337,"throughput_eps":0,"last_update":"2026-03-21T13:18:24.210495769Z"} +2026/03/21 13:18:29 ───────────────────────────────────────────────── +2026/03/21 13:18:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:18:34 [log_collector] {"stage_name":"log_collector","events_processed":13078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2615.6,"last_update":"2026-03-21T13:18:29.068703494Z"} +2026/03/21 13:18:34 [metric_collector] {"stage_name":"metric_collector","events_processed":7179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1435.8,"last_update":"2026-03-21T13:18:29.069348148Z"} +2026/03/21 13:18:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:18:29.077748723Z"} +2026/03/21 13:18:34 [detection_layer] {"stage_name":"detection_layer","events_processed":239,"events_dropped":0,"avg_latency_ms":16.842161106551337,"throughput_eps":0,"last_update":"2026-03-21T13:18:29.21014908Z"} +2026/03/21 13:18:34 [transform_engine] {"stage_name":"transform_engine","events_processed":239,"events_dropped":0,"avg_latency_ms":764.2321385902058,"throughput_eps":0,"last_update":"2026-03-21T13:18:29.210160441Z"} +2026/03/21 13:18:34 ───────────────────────────────────────────────── +2026/03/21 13:18:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:18:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2876,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:18:34.079817736Z"} +2026/03/21 13:18:39 [detection_layer] {"stage_name":"detection_layer","events_processed":239,"events_dropped":0,"avg_latency_ms":16.842161106551337,"throughput_eps":0,"last_update":"2026-03-21T13:18:34.210172339Z"} +2026/03/21 13:18:39 [transform_engine] {"stage_name":"transform_engine","events_processed":239,"events_dropped":0,"avg_latency_ms":764.2321385902058,"throughput_eps":0,"last_update":"2026-03-21T13:18:34.210057017Z"} +2026/03/21 13:18:39 [log_collector] {"stage_name":"log_collector","events_processed":13078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2615.6,"last_update":"2026-03-21T13:18:34.068706572Z"} +2026/03/21 13:18:39 [metric_collector] {"stage_name":"metric_collector","events_processed":7184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1436.8,"last_update":"2026-03-21T13:18:34.069336589Z"} +2026/03/21 13:18:39 ───────────────────────────────────────────────── +2026/03/21 13:18:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:18:44 [log_collector] {"stage_name":"log_collector","events_processed":13078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2615.6,"last_update":"2026-03-21T13:18:39.068796225Z"} +2026/03/21 13:18:44 [metric_collector] {"stage_name":"metric_collector","events_processed":7189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1437.8,"last_update":"2026-03-21T13:18:39.06945656Z"} +2026/03/21 13:18:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:18:39.077696777Z"} +2026/03/21 13:18:44 [detection_layer] {"stage_name":"detection_layer","events_processed":239,"events_dropped":0,"avg_latency_ms":16.842161106551337,"throughput_eps":0,"last_update":"2026-03-21T13:18:39.209966956Z"} +2026/03/21 13:18:44 [transform_engine] {"stage_name":"transform_engine","events_processed":239,"events_dropped":0,"avg_latency_ms":764.2321385902058,"throughput_eps":0,"last_update":"2026-03-21T13:18:39.209914646Z"} +2026/03/21 13:18:44 ───────────────────────────────────────────────── +2026/03/21 13:18:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:18:49 [log_collector] {"stage_name":"log_collector","events_processed":13078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2615.6,"last_update":"2026-03-21T13:18:44.068788749Z"} +2026/03/21 13:18:49 [metric_collector] {"stage_name":"metric_collector","events_processed":7194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1438.8,"last_update":"2026-03-21T13:18:44.069441268Z"} +2026/03/21 13:18:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:18:44.077056198Z"} +2026/03/21 13:18:49 [detection_layer] {"stage_name":"detection_layer","events_processed":239,"events_dropped":0,"avg_latency_ms":16.842161106551337,"throughput_eps":0,"last_update":"2026-03-21T13:18:44.210420985Z"} +2026/03/21 13:18:49 [transform_engine] {"stage_name":"transform_engine","events_processed":239,"events_dropped":0,"avg_latency_ms":764.2321385902058,"throughput_eps":0,"last_update":"2026-03-21T13:18:44.21032956Z"} +2026/03/21 13:18:49 ───────────────────────────────────────────────── +2026/03/21 13:18:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:18:54 [detection_layer] {"stage_name":"detection_layer","events_processed":239,"events_dropped":0,"avg_latency_ms":16.842161106551337,"throughput_eps":0,"last_update":"2026-03-21T13:18:49.210859499Z"} +2026/03/21 13:18:54 [transform_engine] {"stage_name":"transform_engine","events_processed":240,"events_dropped":0,"avg_latency_ms":633.2675168721646,"throughput_eps":0,"last_update":"2026-03-21T13:18:49.319150088Z"} +2026/03/21 13:18:54 [log_collector] {"stage_name":"log_collector","events_processed":13078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2615.6,"last_update":"2026-03-21T13:18:49.068836254Z"} +2026/03/21 13:18:54 [metric_collector] {"stage_name":"metric_collector","events_processed":7199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1439.8,"last_update":"2026-03-21T13:18:49.069088086Z"} +2026/03/21 13:18:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:18:49.078586772Z"} +2026/03/21 13:18:54 ───────────────────────────────────────────────── +2026/03/21 13:18:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:18:59 [log_collector] {"stage_name":"log_collector","events_processed":13078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2615.6,"last_update":"2026-03-21T13:18:54.068759329Z"} +2026/03/21 13:18:59 [metric_collector] {"stage_name":"metric_collector","events_processed":7204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1440.8,"last_update":"2026-03-21T13:18:54.069208749Z"} +2026/03/21 13:18:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:18:54.077659068Z"} +2026/03/21 13:18:59 [detection_layer] {"stage_name":"detection_layer","events_processed":240,"events_dropped":0,"avg_latency_ms":17.75265368524107,"throughput_eps":0,"last_update":"2026-03-21T13:18:54.210020215Z"} +2026/03/21 13:18:59 [transform_engine] {"stage_name":"transform_engine","events_processed":240,"events_dropped":0,"avg_latency_ms":633.2675168721646,"throughput_eps":0,"last_update":"2026-03-21T13:18:54.210074669Z"} +2026/03/21 13:18:59 ───────────────────────────────────────────────── +2026/03/21 13:19:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:19:04 [log_collector] {"stage_name":"log_collector","events_processed":13078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2615.6,"last_update":"2026-03-21T13:18:59.068657903Z"} +2026/03/21 13:19:04 [metric_collector] {"stage_name":"metric_collector","events_processed":7209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1441.8,"last_update":"2026-03-21T13:18:59.069057419Z"} +2026/03/21 13:19:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2886,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:18:59.077473703Z"} +2026/03/21 13:19:04 [detection_layer] {"stage_name":"detection_layer","events_processed":240,"events_dropped":0,"avg_latency_ms":17.75265368524107,"throughput_eps":0,"last_update":"2026-03-21T13:18:59.210753077Z"} +2026/03/21 13:19:04 [transform_engine] {"stage_name":"transform_engine","events_processed":240,"events_dropped":0,"avg_latency_ms":633.2675168721646,"throughput_eps":0,"last_update":"2026-03-21T13:18:59.20965753Z"} +2026/03/21 13:19:04 ───────────────────────────────────────────────── +2026/03/21 13:19:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:19:09 [detection_layer] {"stage_name":"detection_layer","events_processed":240,"events_dropped":0,"avg_latency_ms":17.75265368524107,"throughput_eps":0,"last_update":"2026-03-21T13:19:04.210133415Z"} +2026/03/21 13:19:09 [transform_engine] {"stage_name":"transform_engine","events_processed":240,"events_dropped":0,"avg_latency_ms":633.2675168721646,"throughput_eps":0,"last_update":"2026-03-21T13:19:04.210159917Z"} +2026/03/21 13:19:09 [log_collector] {"stage_name":"log_collector","events_processed":13078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2615.6,"last_update":"2026-03-21T13:19:04.068096763Z"} +2026/03/21 13:19:09 [metric_collector] {"stage_name":"metric_collector","events_processed":7214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1442.8,"last_update":"2026-03-21T13:19:04.068685019Z"} +2026/03/21 13:19:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:19:04.077881317Z"} +2026/03/21 13:19:09 ───────────────────────────────────────────────── +2026/03/21 13:19:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:19:14 [transform_engine] {"stage_name":"transform_engine","events_processed":240,"events_dropped":0,"avg_latency_ms":633.2675168721646,"throughput_eps":0,"last_update":"2026-03-21T13:19:09.20965394Z"} +2026/03/21 13:19:14 [log_collector] {"stage_name":"log_collector","events_processed":13078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2615.6,"last_update":"2026-03-21T13:19:09.068064281Z"} +2026/03/21 13:19:14 [metric_collector] {"stage_name":"metric_collector","events_processed":7219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1443.8,"last_update":"2026-03-21T13:19:09.068536576Z"} +2026/03/21 13:19:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:19:09.077473658Z"} +2026/03/21 13:19:14 [detection_layer] {"stage_name":"detection_layer","events_processed":240,"events_dropped":0,"avg_latency_ms":17.75265368524107,"throughput_eps":0,"last_update":"2026-03-21T13:19:09.210794304Z"} +2026/03/21 13:19:14 ───────────────────────────────────────────────── +2026/03/21 13:19:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:19:19 [log_collector] {"stage_name":"log_collector","events_processed":13078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2615.6,"last_update":"2026-03-21T13:19:14.068121979Z"} +2026/03/21 13:19:19 [metric_collector] {"stage_name":"metric_collector","events_processed":7224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1444.8,"last_update":"2026-03-21T13:19:14.068667304Z"} +2026/03/21 13:19:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2892,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:19:14.0797849Z"} +2026/03/21 13:19:19 [detection_layer] {"stage_name":"detection_layer","events_processed":240,"events_dropped":0,"avg_latency_ms":17.75265368524107,"throughput_eps":0,"last_update":"2026-03-21T13:19:14.210058332Z"} +2026/03/21 13:19:19 [transform_engine] {"stage_name":"transform_engine","events_processed":240,"events_dropped":0,"avg_latency_ms":633.2675168721646,"throughput_eps":0,"last_update":"2026-03-21T13:19:14.210010711Z"} +2026/03/21 13:19:19 ───────────────────────────────────────────────── +2026/03/21 13:19:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:19:24 [metric_collector] {"stage_name":"metric_collector","events_processed":7229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1445.8,"last_update":"2026-03-21T13:19:19.068922145Z"} +2026/03/21 13:19:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:19:19.078279731Z"} +2026/03/21 13:19:24 [detection_layer] {"stage_name":"detection_layer","events_processed":240,"events_dropped":0,"avg_latency_ms":17.75265368524107,"throughput_eps":0,"last_update":"2026-03-21T13:19:19.210790227Z"} +2026/03/21 13:19:24 [transform_engine] {"stage_name":"transform_engine","events_processed":241,"events_dropped":0,"avg_latency_ms":520.4154972977317,"throughput_eps":0,"last_update":"2026-03-21T13:19:19.279778418Z"} +2026/03/21 13:19:24 [log_collector] {"stage_name":"log_collector","events_processed":13078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2615.6,"last_update":"2026-03-21T13:19:19.068553749Z"} +2026/03/21 13:19:24 ───────────────────────────────────────────────── +2026/03/21 13:19:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:19:29 [log_collector] {"stage_name":"log_collector","events_processed":13078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2615.6,"last_update":"2026-03-21T13:19:24.068945284Z"} +2026/03/21 13:19:29 [metric_collector] {"stage_name":"metric_collector","events_processed":7234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1446.8,"last_update":"2026-03-21T13:19:24.069249998Z"} +2026/03/21 13:19:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2896,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:19:24.079448395Z"} +2026/03/21 13:19:29 [detection_layer] {"stage_name":"detection_layer","events_processed":241,"events_dropped":0,"avg_latency_ms":17.92638354819286,"throughput_eps":0,"last_update":"2026-03-21T13:19:24.210598547Z"} +2026/03/21 13:19:29 [transform_engine] {"stage_name":"transform_engine","events_processed":241,"events_dropped":0,"avg_latency_ms":520.4154972977317,"throughput_eps":0,"last_update":"2026-03-21T13:19:24.21070952Z"} +2026/03/21 13:19:29 ───────────────────────────────────────────────── +2026/03/21 13:19:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:19:34 [log_collector] {"stage_name":"log_collector","events_processed":13078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2615.6,"last_update":"2026-03-21T13:19:29.068075283Z"} +2026/03/21 13:19:34 [metric_collector] {"stage_name":"metric_collector","events_processed":7238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1447.6,"last_update":"2026-03-21T13:19:29.067998867Z"} +2026/03/21 13:19:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2898,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:19:29.077985588Z"} +2026/03/21 13:19:34 [detection_layer] {"stage_name":"detection_layer","events_processed":241,"events_dropped":0,"avg_latency_ms":17.92638354819286,"throughput_eps":0,"last_update":"2026-03-21T13:19:29.210325068Z"} +2026/03/21 13:19:34 [transform_engine] {"stage_name":"transform_engine","events_processed":241,"events_dropped":0,"avg_latency_ms":520.4154972977317,"throughput_eps":0,"last_update":"2026-03-21T13:19:29.210212041Z"} +2026/03/21 13:19:34 ───────────────────────────────────────────────── +2026/03/21 13:19:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:19:39 [log_collector] {"stage_name":"log_collector","events_processed":13078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2615.6,"last_update":"2026-03-21T13:19:34.069079584Z"} +2026/03/21 13:19:39 [metric_collector] {"stage_name":"metric_collector","events_processed":7244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1448.8,"last_update":"2026-03-21T13:19:34.069546708Z"} +2026/03/21 13:19:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2900,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:19:34.078317862Z"} +2026/03/21 13:19:39 [detection_layer] {"stage_name":"detection_layer","events_processed":241,"events_dropped":0,"avg_latency_ms":17.92638354819286,"throughput_eps":0,"last_update":"2026-03-21T13:19:34.210652093Z"} +2026/03/21 13:19:39 [transform_engine] {"stage_name":"transform_engine","events_processed":241,"events_dropped":0,"avg_latency_ms":520.4154972977317,"throughput_eps":0,"last_update":"2026-03-21T13:19:34.210761392Z"} +2026/03/21 13:19:39 ───────────────────────────────────────────────── +Saved state: 16 clusters, 13079 messages, reason: none +2026/03/21 13:19:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:19:44 [metric_collector] {"stage_name":"metric_collector","events_processed":7248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1449.6,"last_update":"2026-03-21T13:19:39.067945864Z"} +2026/03/21 13:19:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:19:39.076652896Z"} +2026/03/21 13:19:44 [detection_layer] {"stage_name":"detection_layer","events_processed":241,"events_dropped":0,"avg_latency_ms":17.92638354819286,"throughput_eps":0,"last_update":"2026-03-21T13:19:39.209863074Z"} +2026/03/21 13:19:44 [transform_engine] {"stage_name":"transform_engine","events_processed":241,"events_dropped":0,"avg_latency_ms":520.4154972977317,"throughput_eps":0,"last_update":"2026-03-21T13:19:39.209851973Z"} +2026/03/21 13:19:44 [log_collector] {"stage_name":"log_collector","events_processed":13078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2615.6,"last_update":"2026-03-21T13:19:39.068089669Z"} +2026/03/21 13:19:44 ───────────────────────────────────────────────── +2026/03/21 13:19:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:19:49 [transform_engine] {"stage_name":"transform_engine","events_processed":241,"events_dropped":0,"avg_latency_ms":520.4154972977317,"throughput_eps":0,"last_update":"2026-03-21T13:19:44.210527232Z"} +2026/03/21 13:19:49 [log_collector] {"stage_name":"log_collector","events_processed":13086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2617.2,"last_update":"2026-03-21T13:19:44.068767464Z"} +2026/03/21 13:19:49 [metric_collector] {"stage_name":"metric_collector","events_processed":7254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1450.8,"last_update":"2026-03-21T13:19:44.069119538Z"} +2026/03/21 13:19:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:19:44.077245437Z"} +2026/03/21 13:19:49 [detection_layer] {"stage_name":"detection_layer","events_processed":241,"events_dropped":0,"avg_latency_ms":17.92638354819286,"throughput_eps":0,"last_update":"2026-03-21T13:19:44.210476925Z"} +2026/03/21 13:19:49 ───────────────────────────────────────────────── +2026/03/21 13:19:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:19:54 [transform_engine] {"stage_name":"transform_engine","events_processed":242,"events_dropped":0,"avg_latency_ms":440.28137723818537,"throughput_eps":0,"last_update":"2026-03-21T13:19:49.330377368Z"} +2026/03/21 13:19:54 [log_collector] {"stage_name":"log_collector","events_processed":13086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2617.2,"last_update":"2026-03-21T13:19:49.068826703Z"} +2026/03/21 13:19:54 [metric_collector] {"stage_name":"metric_collector","events_processed":7259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1451.8,"last_update":"2026-03-21T13:19:49.07018279Z"} +2026/03/21 13:19:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2906,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:19:49.087441606Z"} +2026/03/21 13:19:54 [detection_layer] {"stage_name":"detection_layer","events_processed":241,"events_dropped":0,"avg_latency_ms":17.92638354819286,"throughput_eps":0,"last_update":"2026-03-21T13:19:49.211398718Z"} +2026/03/21 13:19:54 ───────────────────────────────────────────────── +2026/03/21 13:19:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:19:59 [log_collector] {"stage_name":"log_collector","events_processed":13086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2617.2,"last_update":"2026-03-21T13:19:54.069067358Z"} +2026/03/21 13:19:59 [metric_collector] {"stage_name":"metric_collector","events_processed":7264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1452.8,"last_update":"2026-03-21T13:19:54.069243555Z"} +2026/03/21 13:19:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2908,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:19:54.07880348Z"} +2026/03/21 13:19:59 [detection_layer] {"stage_name":"detection_layer","events_processed":242,"events_dropped":0,"avg_latency_ms":16.96097303855429,"throughput_eps":0,"last_update":"2026-03-21T13:19:54.210068605Z"} +2026/03/21 13:19:59 [transform_engine] {"stage_name":"transform_engine","events_processed":242,"events_dropped":0,"avg_latency_ms":440.28137723818537,"throughput_eps":0,"last_update":"2026-03-21T13:19:54.210045542Z"} +2026/03/21 13:19:59 ───────────────────────────────────────────────── +2026/03/21 13:20:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:20:04 [log_collector] {"stage_name":"log_collector","events_processed":13086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2617.2,"last_update":"2026-03-21T13:19:59.068947354Z"} +2026/03/21 13:20:04 [metric_collector] {"stage_name":"metric_collector","events_processed":7269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1453.8,"last_update":"2026-03-21T13:19:59.06927488Z"} +2026/03/21 13:20:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:19:59.078176094Z"} +2026/03/21 13:20:04 [detection_layer] {"stage_name":"detection_layer","events_processed":242,"events_dropped":0,"avg_latency_ms":16.96097303855429,"throughput_eps":0,"last_update":"2026-03-21T13:19:59.210388383Z"} +2026/03/21 13:20:04 [transform_engine] {"stage_name":"transform_engine","events_processed":242,"events_dropped":0,"avg_latency_ms":440.28137723818537,"throughput_eps":0,"last_update":"2026-03-21T13:19:59.210426577Z"} +2026/03/21 13:20:04 ───────────────────────────────────────────────── +2026/03/21 13:20:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:20:09 [log_collector] {"stage_name":"log_collector","events_processed":13086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2617.2,"last_update":"2026-03-21T13:20:04.068695292Z"} +2026/03/21 13:20:09 [metric_collector] {"stage_name":"metric_collector","events_processed":7274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1454.8,"last_update":"2026-03-21T13:20:04.069000377Z"} +2026/03/21 13:20:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2912,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:20:04.082400785Z"} +2026/03/21 13:20:09 [detection_layer] {"stage_name":"detection_layer","events_processed":242,"events_dropped":0,"avg_latency_ms":16.96097303855429,"throughput_eps":0,"last_update":"2026-03-21T13:20:04.21067257Z"} +2026/03/21 13:20:09 [transform_engine] {"stage_name":"transform_engine","events_processed":242,"events_dropped":0,"avg_latency_ms":440.28137723818537,"throughput_eps":0,"last_update":"2026-03-21T13:20:04.210636161Z"} +2026/03/21 13:20:09 ───────────────────────────────────────────────── +2026/03/21 13:20:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:20:14 [detection_layer] {"stage_name":"detection_layer","events_processed":242,"events_dropped":0,"avg_latency_ms":16.96097303855429,"throughput_eps":0,"last_update":"2026-03-21T13:20:09.210253912Z"} +2026/03/21 13:20:14 [transform_engine] {"stage_name":"transform_engine","events_processed":242,"events_dropped":0,"avg_latency_ms":440.28137723818537,"throughput_eps":0,"last_update":"2026-03-21T13:20:09.210281725Z"} +2026/03/21 13:20:14 [log_collector] {"stage_name":"log_collector","events_processed":13086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2617.2,"last_update":"2026-03-21T13:20:09.06854091Z"} +2026/03/21 13:20:14 [metric_collector] {"stage_name":"metric_collector","events_processed":7279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1455.8,"last_update":"2026-03-21T13:20:09.068635752Z"} +2026/03/21 13:20:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:20:09.075036667Z"} +2026/03/21 13:20:14 ───────────────────────────────────────────────── +2026/03/21 13:20:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:20:19 [metric_collector] {"stage_name":"metric_collector","events_processed":7284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1456.8,"last_update":"2026-03-21T13:20:14.068943738Z"} +2026/03/21 13:20:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:20:14.077659505Z"} +2026/03/21 13:20:19 [detection_layer] {"stage_name":"detection_layer","events_processed":242,"events_dropped":0,"avg_latency_ms":16.96097303855429,"throughput_eps":0,"last_update":"2026-03-21T13:20:14.209881887Z"} +2026/03/21 13:20:19 [transform_engine] {"stage_name":"transform_engine","events_processed":242,"events_dropped":0,"avg_latency_ms":440.28137723818537,"throughput_eps":0,"last_update":"2026-03-21T13:20:14.209902697Z"} +2026/03/21 13:20:19 [log_collector] {"stage_name":"log_collector","events_processed":13086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2617.2,"last_update":"2026-03-21T13:20:14.068719177Z"} +2026/03/21 13:20:19 ───────────────────────────────────────────────── +2026/03/21 13:20:19 [ANOMALY] time=2026-03-21T13:20:19Z score=0.9243 method=SEAD details=MAD!:w=0.34,s=0.95 RRCF-fast!:w=0.17,s=1.00 RRCF-mid!:w=0.15,s=0.99 RRCF-slow!:w=0.12,s=0.98 COPOD!:w=0.22,s=0.76 +2026/03/21 13:20:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:20:24 [transform_engine] {"stage_name":"transform_engine","events_processed":243,"events_dropped":0,"avg_latency_ms":365.7539619905483,"throughput_eps":0,"last_update":"2026-03-21T13:20:19.278103686Z"} +2026/03/21 13:20:24 [log_collector] {"stage_name":"log_collector","events_processed":13086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2617.2,"last_update":"2026-03-21T13:20:19.068504998Z"} +2026/03/21 13:20:24 [metric_collector] {"stage_name":"metric_collector","events_processed":7289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1457.8,"last_update":"2026-03-21T13:20:19.06882503Z"} +2026/03/21 13:20:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2918,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:20:19.077990921Z"} +2026/03/21 13:20:24 [detection_layer] {"stage_name":"detection_layer","events_processed":242,"events_dropped":0,"avg_latency_ms":16.96097303855429,"throughput_eps":0,"last_update":"2026-03-21T13:20:19.210436119Z"} +2026/03/21 13:20:24 ───────────────────────────────────────────────── +2026/03/21 13:20:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:20:29 [log_collector] {"stage_name":"log_collector","events_processed":13086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2617.2,"last_update":"2026-03-21T13:20:24.068444753Z"} +2026/03/21 13:20:29 [metric_collector] {"stage_name":"metric_collector","events_processed":7294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1458.8,"last_update":"2026-03-21T13:20:24.068740209Z"} +2026/03/21 13:20:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2920,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:20:24.078719046Z"} +2026/03/21 13:20:29 [detection_layer] {"stage_name":"detection_layer","events_processed":243,"events_dropped":0,"avg_latency_ms":16.20987143084343,"throughput_eps":0,"last_update":"2026-03-21T13:20:24.209953746Z"} +2026/03/21 13:20:29 [transform_engine] {"stage_name":"transform_engine","events_processed":243,"events_dropped":0,"avg_latency_ms":365.7539619905483,"throughput_eps":0,"last_update":"2026-03-21T13:20:24.209964488Z"} +2026/03/21 13:20:29 ───────────────────────────────────────────────── +2026/03/21 13:20:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:20:34 [transform_engine] {"stage_name":"transform_engine","events_processed":243,"events_dropped":0,"avg_latency_ms":365.7539619905483,"throughput_eps":0,"last_update":"2026-03-21T13:20:29.210493832Z"} +2026/03/21 13:20:34 [log_collector] {"stage_name":"log_collector","events_processed":13086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2617.2,"last_update":"2026-03-21T13:20:29.068593539Z"} +2026/03/21 13:20:34 [metric_collector] {"stage_name":"metric_collector","events_processed":7299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1459.8,"last_update":"2026-03-21T13:20:29.068839489Z"} +2026/03/21 13:20:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:20:29.077392306Z"} +2026/03/21 13:20:34 [detection_layer] {"stage_name":"detection_layer","events_processed":243,"events_dropped":0,"avg_latency_ms":16.20987143084343,"throughput_eps":0,"last_update":"2026-03-21T13:20:29.210510685Z"} +2026/03/21 13:20:34 ───────────────────────────────────────────────── +2026/03/21 13:20:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:20:39 [log_collector] {"stage_name":"log_collector","events_processed":13086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2617.2,"last_update":"2026-03-21T13:20:34.068274934Z"} +2026/03/21 13:20:39 [metric_collector] {"stage_name":"metric_collector","events_processed":7304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1460.8,"last_update":"2026-03-21T13:20:34.068614415Z"} +2026/03/21 13:20:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:20:34.077283815Z"} +2026/03/21 13:20:39 [detection_layer] {"stage_name":"detection_layer","events_processed":243,"events_dropped":0,"avg_latency_ms":16.20987143084343,"throughput_eps":0,"last_update":"2026-03-21T13:20:34.21053644Z"} +2026/03/21 13:20:39 [transform_engine] {"stage_name":"transform_engine","events_processed":243,"events_dropped":0,"avg_latency_ms":365.7539619905483,"throughput_eps":0,"last_update":"2026-03-21T13:20:34.210563072Z"} +2026/03/21 13:20:39 ───────────────────────────────────────────────── +Saved state: 16 clusters, 13087 messages, reason: none +2026/03/21 13:20:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:20:44 [log_collector] {"stage_name":"log_collector","events_processed":13096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.2,"last_update":"2026-03-21T13:20:44.068441851Z"} +2026/03/21 13:20:44 [metric_collector] {"stage_name":"metric_collector","events_processed":7314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1462.8,"last_update":"2026-03-21T13:20:44.068345496Z"} +2026/03/21 13:20:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:20:39.078524047Z"} +2026/03/21 13:20:44 [detection_layer] {"stage_name":"detection_layer","events_processed":243,"events_dropped":0,"avg_latency_ms":16.20987143084343,"throughput_eps":0,"last_update":"2026-03-21T13:20:39.210786667Z"} +2026/03/21 13:20:44 [transform_engine] {"stage_name":"transform_engine","events_processed":243,"events_dropped":0,"avg_latency_ms":365.7539619905483,"throughput_eps":0,"last_update":"2026-03-21T13:20:39.209647256Z"} +2026/03/21 13:20:44 ───────────────────────────────────────────────── +2026/03/21 13:20:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:20:49 [transform_engine] {"stage_name":"transform_engine","events_processed":243,"events_dropped":0,"avg_latency_ms":365.7539619905483,"throughput_eps":0,"last_update":"2026-03-21T13:20:44.210089934Z"} +2026/03/21 13:20:49 [log_collector] {"stage_name":"log_collector","events_processed":13096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.2,"last_update":"2026-03-21T13:20:44.068441851Z"} +2026/03/21 13:20:49 [metric_collector] {"stage_name":"metric_collector","events_processed":7314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1462.8,"last_update":"2026-03-21T13:20:44.068345496Z"} +2026/03/21 13:20:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:20:44.076836304Z"} +2026/03/21 13:20:49 [detection_layer] {"stage_name":"detection_layer","events_processed":243,"events_dropped":0,"avg_latency_ms":16.20987143084343,"throughput_eps":0,"last_update":"2026-03-21T13:20:44.210049968Z"} +2026/03/21 13:20:49 ───────────────────────────────────────────────── +2026/03/21 13:20:49 [ANOMALY] time=2026-03-21T13:20:49Z score=0.9106 method=SEAD details=MAD!:w=0.34,s=0.91 RRCF-fast!:w=0.17,s=0.95 RRCF-mid!:w=0.15,s=0.97 RRCF-slow!:w=0.12,s=0.96 COPOD!:w=0.22,s=0.82 +2026/03/21 13:20:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:20:54 [detection_layer] {"stage_name":"detection_layer","events_processed":243,"events_dropped":0,"avg_latency_ms":16.20987143084343,"throughput_eps":0,"last_update":"2026-03-21T13:20:49.209965267Z"} +2026/03/21 13:20:54 [transform_engine] {"stage_name":"transform_engine","events_processed":244,"events_dropped":0,"avg_latency_ms":314.6098473924386,"throughput_eps":0,"last_update":"2026-03-21T13:20:49.320021058Z"} +2026/03/21 13:20:54 [log_collector] {"stage_name":"log_collector","events_processed":13096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.2,"last_update":"2026-03-21T13:20:49.068442022Z"} +2026/03/21 13:20:54 [metric_collector] {"stage_name":"metric_collector","events_processed":7319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1463.8,"last_update":"2026-03-21T13:20:49.068756966Z"} +2026/03/21 13:20:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2930,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:20:49.077755396Z"} +2026/03/21 13:20:54 ───────────────────────────────────────────────── +2026/03/21 13:20:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:20:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:20:54.07704054Z"} +2026/03/21 13:20:59 [detection_layer] {"stage_name":"detection_layer","events_processed":244,"events_dropped":0,"avg_latency_ms":16.036951544674746,"throughput_eps":0,"last_update":"2026-03-21T13:20:54.210255817Z"} +2026/03/21 13:20:59 [transform_engine] {"stage_name":"transform_engine","events_processed":244,"events_dropped":0,"avg_latency_ms":314.6098473924386,"throughput_eps":0,"last_update":"2026-03-21T13:20:54.210289351Z"} +2026/03/21 13:20:59 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:20:54.068541677Z"} +2026/03/21 13:20:59 [metric_collector] {"stage_name":"metric_collector","events_processed":7324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1464.8,"last_update":"2026-03-21T13:20:54.068877299Z"} +2026/03/21 13:20:59 ───────────────────────────────────────────────── +2026/03/21 13:21:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:21:04 [metric_collector] {"stage_name":"metric_collector","events_processed":7329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1465.8,"last_update":"2026-03-21T13:20:59.068388527Z"} +2026/03/21 13:21:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:20:59.078479399Z"} +2026/03/21 13:21:04 [detection_layer] {"stage_name":"detection_layer","events_processed":244,"events_dropped":0,"avg_latency_ms":16.036951544674746,"throughput_eps":0,"last_update":"2026-03-21T13:20:59.210675125Z"} +2026/03/21 13:21:04 [transform_engine] {"stage_name":"transform_engine","events_processed":244,"events_dropped":0,"avg_latency_ms":314.6098473924386,"throughput_eps":0,"last_update":"2026-03-21T13:20:59.210685765Z"} +2026/03/21 13:21:04 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:21:04.068384246Z"} +2026/03/21 13:21:04 ───────────────────────────────────────────────── +2026/03/21 13:21:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:21:09 [transform_engine] {"stage_name":"transform_engine","events_processed":244,"events_dropped":0,"avg_latency_ms":314.6098473924386,"throughput_eps":0,"last_update":"2026-03-21T13:21:04.210650845Z"} +2026/03/21 13:21:09 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:21:04.068384246Z"} +2026/03/21 13:21:09 [metric_collector] {"stage_name":"metric_collector","events_processed":7334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1466.8,"last_update":"2026-03-21T13:21:04.068787598Z"} +2026/03/21 13:21:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:21:04.077390301Z"} +2026/03/21 13:21:09 [detection_layer] {"stage_name":"detection_layer","events_processed":244,"events_dropped":0,"avg_latency_ms":16.036951544674746,"throughput_eps":0,"last_update":"2026-03-21T13:21:04.210630506Z"} +2026/03/21 13:21:09 ───────────────────────────────────────────────── +2026/03/21 13:21:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:21:14 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:21:09.06806497Z"} +2026/03/21 13:21:14 [metric_collector] {"stage_name":"metric_collector","events_processed":7339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1467.8,"last_update":"2026-03-21T13:21:09.068503539Z"} +2026/03/21 13:21:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:21:09.078427692Z"} +2026/03/21 13:21:14 [detection_layer] {"stage_name":"detection_layer","events_processed":244,"events_dropped":0,"avg_latency_ms":16.036951544674746,"throughput_eps":0,"last_update":"2026-03-21T13:21:09.210710366Z"} +2026/03/21 13:21:14 [transform_engine] {"stage_name":"transform_engine","events_processed":244,"events_dropped":0,"avg_latency_ms":314.6098473924386,"throughput_eps":0,"last_update":"2026-03-21T13:21:09.210675819Z"} +2026/03/21 13:21:14 ───────────────────────────────────────────────── +2026/03/21 13:21:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:21:19 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:21:14.068976571Z"} +2026/03/21 13:21:19 [metric_collector] {"stage_name":"metric_collector","events_processed":7344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1468.8,"last_update":"2026-03-21T13:21:14.068964809Z"} +2026/03/21 13:21:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2940,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:21:14.077108612Z"} +2026/03/21 13:21:19 [detection_layer] {"stage_name":"detection_layer","events_processed":244,"events_dropped":0,"avg_latency_ms":16.036951544674746,"throughput_eps":0,"last_update":"2026-03-21T13:21:14.210393946Z"} +2026/03/21 13:21:19 [transform_engine] {"stage_name":"transform_engine","events_processed":244,"events_dropped":0,"avg_latency_ms":314.6098473924386,"throughput_eps":0,"last_update":"2026-03-21T13:21:14.210374599Z"} +2026/03/21 13:21:19 ───────────────────────────────────────────────── +2026/03/21 13:21:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:21:24 [transform_engine] {"stage_name":"transform_engine","events_processed":245,"events_dropped":0,"avg_latency_ms":273.4736811139509,"throughput_eps":0,"last_update":"2026-03-21T13:21:19.319193333Z"} +2026/03/21 13:21:24 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:21:19.068912747Z"} +2026/03/21 13:21:24 [metric_collector] {"stage_name":"metric_collector","events_processed":7349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1469.8,"last_update":"2026-03-21T13:21:19.069306562Z"} +2026/03/21 13:21:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:21:19.078017692Z"} +2026/03/21 13:21:24 [detection_layer] {"stage_name":"detection_layer","events_processed":244,"events_dropped":0,"avg_latency_ms":16.036951544674746,"throughput_eps":0,"last_update":"2026-03-21T13:21:19.210289515Z"} +2026/03/21 13:21:24 ───────────────────────────────────────────────── +2026/03/21 13:21:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:21:29 [transform_engine] {"stage_name":"transform_engine","events_processed":245,"events_dropped":0,"avg_latency_ms":273.4736811139509,"throughput_eps":0,"last_update":"2026-03-21T13:21:24.209977194Z"} +2026/03/21 13:21:29 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:21:24.068576219Z"} +2026/03/21 13:21:29 [metric_collector] {"stage_name":"metric_collector","events_processed":7354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1470.8,"last_update":"2026-03-21T13:21:24.068912404Z"} +2026/03/21 13:21:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:21:24.077733464Z"} +2026/03/21 13:21:29 [detection_layer] {"stage_name":"detection_layer","events_processed":245,"events_dropped":0,"avg_latency_ms":16.420944035739797,"throughput_eps":0,"last_update":"2026-03-21T13:21:24.209967866Z"} +2026/03/21 13:21:29 ───────────────────────────────────────────────── +2026/03/21 13:21:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:21:34 [detection_layer] {"stage_name":"detection_layer","events_processed":245,"events_dropped":0,"avg_latency_ms":16.420944035739797,"throughput_eps":0,"last_update":"2026-03-21T13:21:29.210566292Z"} +2026/03/21 13:21:34 [transform_engine] {"stage_name":"transform_engine","events_processed":245,"events_dropped":0,"avg_latency_ms":273.4736811139509,"throughput_eps":0,"last_update":"2026-03-21T13:21:29.210578165Z"} +2026/03/21 13:21:34 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:21:29.068643939Z"} +2026/03/21 13:21:34 [metric_collector] {"stage_name":"metric_collector","events_processed":7359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1471.8,"last_update":"2026-03-21T13:21:29.068823212Z"} +2026/03/21 13:21:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:21:29.077398501Z"} +2026/03/21 13:21:34 ───────────────────────────────────────────────── +2026/03/21 13:21:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:21:39 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:21:34.068899232Z"} +2026/03/21 13:21:39 [metric_collector] {"stage_name":"metric_collector","events_processed":7364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1472.8,"last_update":"2026-03-21T13:21:34.069288267Z"} +2026/03/21 13:21:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:21:34.077325195Z"} +2026/03/21 13:21:39 [detection_layer] {"stage_name":"detection_layer","events_processed":245,"events_dropped":0,"avg_latency_ms":16.420944035739797,"throughput_eps":0,"last_update":"2026-03-21T13:21:34.21055769Z"} +2026/03/21 13:21:39 [transform_engine] {"stage_name":"transform_engine","events_processed":245,"events_dropped":0,"avg_latency_ms":273.4736811139509,"throughput_eps":0,"last_update":"2026-03-21T13:21:34.210569133Z"} +2026/03/21 13:21:39 ───────────────────────────────────────────────── +2026/03/21 13:21:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:21:44 [transform_engine] {"stage_name":"transform_engine","events_processed":245,"events_dropped":0,"avg_latency_ms":273.4736811139509,"throughput_eps":0,"last_update":"2026-03-21T13:21:39.209933537Z"} +2026/03/21 13:21:44 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:21:39.06813018Z"} +2026/03/21 13:21:44 [metric_collector] {"stage_name":"metric_collector","events_processed":7368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1473.6,"last_update":"2026-03-21T13:21:39.068040589Z"} +2026/03/21 13:21:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:21:39.077655159Z"} +2026/03/21 13:21:44 [detection_layer] {"stage_name":"detection_layer","events_processed":245,"events_dropped":0,"avg_latency_ms":16.420944035739797,"throughput_eps":0,"last_update":"2026-03-21T13:21:39.209922797Z"} +2026/03/21 13:21:44 ───────────────────────────────────────────────── +2026/03/21 13:21:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:21:49 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:21:44.068540802Z"} +2026/03/21 13:21:49 [metric_collector] {"stage_name":"metric_collector","events_processed":7374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1474.8,"last_update":"2026-03-21T13:21:44.068913285Z"} +2026/03/21 13:21:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:21:44.078262096Z"} +2026/03/21 13:21:49 [detection_layer] {"stage_name":"detection_layer","events_processed":245,"events_dropped":0,"avg_latency_ms":16.420944035739797,"throughput_eps":0,"last_update":"2026-03-21T13:21:44.210509105Z"} +2026/03/21 13:21:49 [transform_engine] {"stage_name":"transform_engine","events_processed":245,"events_dropped":0,"avg_latency_ms":273.4736811139509,"throughput_eps":0,"last_update":"2026-03-21T13:21:44.210520947Z"} +2026/03/21 13:21:49 ───────────────────────────────────────────────── +2026/03/21 13:21:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:21:54 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:21:49.068065265Z"} +2026/03/21 13:21:54 [metric_collector] {"stage_name":"metric_collector","events_processed":7379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1475.8,"last_update":"2026-03-21T13:21:49.068329863Z"} +2026/03/21 13:21:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:21:49.077379531Z"} +2026/03/21 13:21:54 [detection_layer] {"stage_name":"detection_layer","events_processed":245,"events_dropped":0,"avg_latency_ms":16.420944035739797,"throughput_eps":0,"last_update":"2026-03-21T13:21:49.210583812Z"} +2026/03/21 13:21:54 [transform_engine] {"stage_name":"transform_engine","events_processed":246,"events_dropped":0,"avg_latency_ms":231.87625789116072,"throughput_eps":0,"last_update":"2026-03-21T13:21:49.276082801Z"} +2026/03/21 13:21:54 ───────────────────────────────────────────────── +2026/03/21 13:21:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:21:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:21:54.077642878Z"} +2026/03/21 13:21:59 [detection_layer] {"stage_name":"detection_layer","events_processed":246,"events_dropped":0,"avg_latency_ms":16.64401302859184,"throughput_eps":0,"last_update":"2026-03-21T13:21:54.209874828Z"} +2026/03/21 13:21:59 [transform_engine] {"stage_name":"transform_engine","events_processed":246,"events_dropped":0,"avg_latency_ms":231.87625789116072,"throughput_eps":0,"last_update":"2026-03-21T13:21:54.209904124Z"} +2026/03/21 13:21:59 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:21:54.068613307Z"} +2026/03/21 13:21:59 [metric_collector] {"stage_name":"metric_collector","events_processed":7384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1476.8,"last_update":"2026-03-21T13:21:54.06897518Z"} +2026/03/21 13:21:59 ───────────────────────────────────────────────── +2026/03/21 13:22:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:22:04 [detection_layer] {"stage_name":"detection_layer","events_processed":246,"events_dropped":0,"avg_latency_ms":16.64401302859184,"throughput_eps":0,"last_update":"2026-03-21T13:21:59.210484358Z"} +2026/03/21 13:22:04 [transform_engine] {"stage_name":"transform_engine","events_processed":246,"events_dropped":0,"avg_latency_ms":231.87625789116072,"throughput_eps":0,"last_update":"2026-03-21T13:21:59.21046438Z"} +2026/03/21 13:22:04 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:21:59.068605124Z"} +2026/03/21 13:22:04 [metric_collector] {"stage_name":"metric_collector","events_processed":7389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1477.8,"last_update":"2026-03-21T13:21:59.06882709Z"} +2026/03/21 13:22:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2958,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:21:59.077222596Z"} +2026/03/21 13:22:04 ───────────────────────────────────────────────── +2026/03/21 13:22:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:22:09 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:22:04.068551792Z"} +2026/03/21 13:22:09 [metric_collector] {"stage_name":"metric_collector","events_processed":7394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1478.8,"last_update":"2026-03-21T13:22:04.068841246Z"} +2026/03/21 13:22:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:22:04.077592092Z"} +2026/03/21 13:22:09 [detection_layer] {"stage_name":"detection_layer","events_processed":246,"events_dropped":0,"avg_latency_ms":16.64401302859184,"throughput_eps":0,"last_update":"2026-03-21T13:22:04.210826875Z"} +2026/03/21 13:22:09 [transform_engine] {"stage_name":"transform_engine","events_processed":246,"events_dropped":0,"avg_latency_ms":231.87625789116072,"throughput_eps":0,"last_update":"2026-03-21T13:22:04.209741446Z"} +2026/03/21 13:22:09 ───────────────────────────────────────────────── +2026/03/21 13:22:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:22:14 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:22:09.068540976Z"} +2026/03/21 13:22:14 [metric_collector] {"stage_name":"metric_collector","events_processed":7399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1479.8,"last_update":"2026-03-21T13:22:09.06890326Z"} +2026/03/21 13:22:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2962,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:22:09.076949106Z"} +2026/03/21 13:22:14 [detection_layer] {"stage_name":"detection_layer","events_processed":246,"events_dropped":0,"avg_latency_ms":16.64401302859184,"throughput_eps":0,"last_update":"2026-03-21T13:22:09.210214837Z"} +2026/03/21 13:22:14 [transform_engine] {"stage_name":"transform_engine","events_processed":246,"events_dropped":0,"avg_latency_ms":231.87625789116072,"throughput_eps":0,"last_update":"2026-03-21T13:22:09.210231358Z"} +2026/03/21 13:22:14 ───────────────────────────────────────────────── +2026/03/21 13:22:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:22:19 [detection_layer] {"stage_name":"detection_layer","events_processed":246,"events_dropped":0,"avg_latency_ms":16.64401302859184,"throughput_eps":0,"last_update":"2026-03-21T13:22:14.210167219Z"} +2026/03/21 13:22:19 [transform_engine] {"stage_name":"transform_engine","events_processed":246,"events_dropped":0,"avg_latency_ms":231.87625789116072,"throughput_eps":0,"last_update":"2026-03-21T13:22:14.20973971Z"} +2026/03/21 13:22:19 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:22:14.068105694Z"} +2026/03/21 13:22:19 [metric_collector] {"stage_name":"metric_collector","events_processed":7404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1480.8,"last_update":"2026-03-21T13:22:14.068539015Z"} +2026/03/21 13:22:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:22:14.077953973Z"} +2026/03/21 13:22:19 ───────────────────────────────────────────────── +2026/03/21 13:22:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:22:24 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:22:19.06893239Z"} +2026/03/21 13:22:24 [metric_collector] {"stage_name":"metric_collector","events_processed":7409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1481.8,"last_update":"2026-03-21T13:22:19.069419352Z"} +2026/03/21 13:22:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:22:19.078427622Z"} +2026/03/21 13:22:24 [detection_layer] {"stage_name":"detection_layer","events_processed":246,"events_dropped":0,"avg_latency_ms":16.64401302859184,"throughput_eps":0,"last_update":"2026-03-21T13:22:19.210649655Z"} +2026/03/21 13:22:24 [transform_engine] {"stage_name":"transform_engine","events_processed":247,"events_dropped":0,"avg_latency_ms":199.37122151292857,"throughput_eps":0,"last_update":"2026-03-21T13:22:19.27997424Z"} +2026/03/21 13:22:24 ───────────────────────────────────────────────── +2026/03/21 13:22:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:22:29 [metric_collector] {"stage_name":"metric_collector","events_processed":7414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1482.8,"last_update":"2026-03-21T13:22:24.069029083Z"} +2026/03/21 13:22:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:22:24.082465162Z"} +2026/03/21 13:22:29 [detection_layer] {"stage_name":"detection_layer","events_processed":247,"events_dropped":0,"avg_latency_ms":16.771929622873472,"throughput_eps":0,"last_update":"2026-03-21T13:22:24.210645167Z"} +2026/03/21 13:22:29 [transform_engine] {"stage_name":"transform_engine","events_processed":247,"events_dropped":0,"avg_latency_ms":199.37122151292857,"throughput_eps":0,"last_update":"2026-03-21T13:22:24.210681155Z"} +2026/03/21 13:22:29 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:22:24.068742224Z"} +2026/03/21 13:22:29 ───────────────────────────────────────────────── +2026/03/21 13:22:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:22:34 [detection_layer] {"stage_name":"detection_layer","events_processed":247,"events_dropped":0,"avg_latency_ms":16.771929622873472,"throughput_eps":0,"last_update":"2026-03-21T13:22:29.210272542Z"} +2026/03/21 13:22:34 [transform_engine] {"stage_name":"transform_engine","events_processed":247,"events_dropped":0,"avg_latency_ms":199.37122151292857,"throughput_eps":0,"last_update":"2026-03-21T13:22:29.210229529Z"} +2026/03/21 13:22:34 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:22:29.068074475Z"} +2026/03/21 13:22:34 [metric_collector] {"stage_name":"metric_collector","events_processed":7419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1483.8,"last_update":"2026-03-21T13:22:29.068335695Z"} +2026/03/21 13:22:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2970,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:22:29.076982232Z"} +2026/03/21 13:22:34 ───────────────────────────────────────────────── +2026/03/21 13:22:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:22:39 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:22:34.068186441Z"} +2026/03/21 13:22:39 [metric_collector] {"stage_name":"metric_collector","events_processed":7424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1484.8,"last_update":"2026-03-21T13:22:34.068549396Z"} +2026/03/21 13:22:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:22:34.076871341Z"} +2026/03/21 13:22:39 [detection_layer] {"stage_name":"detection_layer","events_processed":247,"events_dropped":0,"avg_latency_ms":16.771929622873472,"throughput_eps":0,"last_update":"2026-03-21T13:22:34.21016596Z"} +2026/03/21 13:22:39 [transform_engine] {"stage_name":"transform_engine","events_processed":247,"events_dropped":0,"avg_latency_ms":199.37122151292857,"throughput_eps":0,"last_update":"2026-03-21T13:22:34.21013463Z"} +2026/03/21 13:22:39 ───────────────────────────────────────────────── +2026/03/21 13:22:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:22:44 [detection_layer] {"stage_name":"detection_layer","events_processed":247,"events_dropped":0,"avg_latency_ms":16.771929622873472,"throughput_eps":0,"last_update":"2026-03-21T13:22:39.210856753Z"} +2026/03/21 13:22:44 [transform_engine] {"stage_name":"transform_engine","events_processed":247,"events_dropped":0,"avg_latency_ms":199.37122151292857,"throughput_eps":0,"last_update":"2026-03-21T13:22:39.209695399Z"} +2026/03/21 13:22:44 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:22:39.068650059Z"} +2026/03/21 13:22:44 [metric_collector] {"stage_name":"metric_collector","events_processed":7429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1485.8,"last_update":"2026-03-21T13:22:39.068903564Z"} +2026/03/21 13:22:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:22:39.077516827Z"} +2026/03/21 13:22:44 ───────────────────────────────────────────────── +2026/03/21 13:22:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:22:49 [transform_engine] {"stage_name":"transform_engine","events_processed":247,"events_dropped":0,"avg_latency_ms":199.37122151292857,"throughput_eps":0,"last_update":"2026-03-21T13:22:44.210483479Z"} +2026/03/21 13:22:49 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:22:44.068753295Z"} +2026/03/21 13:22:49 [metric_collector] {"stage_name":"metric_collector","events_processed":7434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1486.8,"last_update":"2026-03-21T13:22:44.069211883Z"} +2026/03/21 13:22:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:22:44.078265059Z"} +2026/03/21 13:22:49 [detection_layer] {"stage_name":"detection_layer","events_processed":247,"events_dropped":0,"avg_latency_ms":16.771929622873472,"throughput_eps":0,"last_update":"2026-03-21T13:22:44.210517985Z"} +2026/03/21 13:22:49 ───────────────────────────────────────────────── +2026/03/21 13:22:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:22:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:22:49.0778499Z"} +2026/03/21 13:22:54 [detection_layer] {"stage_name":"detection_layer","events_processed":247,"events_dropped":0,"avg_latency_ms":16.771929622873472,"throughput_eps":0,"last_update":"2026-03-21T13:22:49.210040887Z"} +2026/03/21 13:22:54 [transform_engine] {"stage_name":"transform_engine","events_processed":248,"events_dropped":0,"avg_latency_ms":172.20004981034288,"throughput_eps":0,"last_update":"2026-03-21T13:22:49.273579885Z"} +2026/03/21 13:22:54 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:22:49.068723995Z"} +2026/03/21 13:22:54 [metric_collector] {"stage_name":"metric_collector","events_processed":7439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1487.8,"last_update":"2026-03-21T13:22:49.069047695Z"} +2026/03/21 13:22:54 ───────────────────────────────────────────────── +2026/03/21 13:22:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:22:59 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:22:54.068492185Z"} +2026/03/21 13:22:59 [metric_collector] {"stage_name":"metric_collector","events_processed":7444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1488.8,"last_update":"2026-03-21T13:22:54.068806236Z"} +2026/03/21 13:22:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:22:54.077306582Z"} +2026/03/21 13:22:59 [detection_layer] {"stage_name":"detection_layer","events_processed":248,"events_dropped":0,"avg_latency_ms":17.20543309829878,"throughput_eps":0,"last_update":"2026-03-21T13:22:54.210517263Z"} +2026/03/21 13:22:59 [transform_engine] {"stage_name":"transform_engine","events_processed":248,"events_dropped":0,"avg_latency_ms":172.20004981034288,"throughput_eps":0,"last_update":"2026-03-21T13:22:54.210548713Z"} +2026/03/21 13:22:59 ───────────────────────────────────────────────── +2026/03/21 13:23:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:23:04 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:22:59.068111874Z"} +2026/03/21 13:23:04 [metric_collector] {"stage_name":"metric_collector","events_processed":7449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1489.8,"last_update":"2026-03-21T13:22:59.068391179Z"} +2026/03/21 13:23:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:22:59.077982936Z"} +2026/03/21 13:23:04 [detection_layer] {"stage_name":"detection_layer","events_processed":248,"events_dropped":0,"avg_latency_ms":17.20543309829878,"throughput_eps":0,"last_update":"2026-03-21T13:22:59.210177561Z"} +2026/03/21 13:23:04 [transform_engine] {"stage_name":"transform_engine","events_processed":248,"events_dropped":0,"avg_latency_ms":172.20004981034288,"throughput_eps":0,"last_update":"2026-03-21T13:22:59.210201697Z"} +2026/03/21 13:23:04 ───────────────────────────────────────────────── +2026/03/21 13:23:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:23:09 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:23:09.068269401Z"} +2026/03/21 13:23:09 [metric_collector] {"stage_name":"metric_collector","events_processed":7454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1490.8,"last_update":"2026-03-21T13:23:04.068874629Z"} +2026/03/21 13:23:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:23:04.077708224Z"} +2026/03/21 13:23:09 [detection_layer] {"stage_name":"detection_layer","events_processed":248,"events_dropped":0,"avg_latency_ms":17.20543309829878,"throughput_eps":0,"last_update":"2026-03-21T13:23:04.209970449Z"} +2026/03/21 13:23:09 [transform_engine] {"stage_name":"transform_engine","events_processed":248,"events_dropped":0,"avg_latency_ms":172.20004981034288,"throughput_eps":0,"last_update":"2026-03-21T13:23:04.209941143Z"} +2026/03/21 13:23:09 ───────────────────────────────────────────────── +2026/03/21 13:23:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:23:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:23:09.077880806Z"} +2026/03/21 13:23:14 [detection_layer] {"stage_name":"detection_layer","events_processed":248,"events_dropped":0,"avg_latency_ms":17.20543309829878,"throughput_eps":0,"last_update":"2026-03-21T13:23:09.210111982Z"} +2026/03/21 13:23:14 [transform_engine] {"stage_name":"transform_engine","events_processed":248,"events_dropped":0,"avg_latency_ms":172.20004981034288,"throughput_eps":0,"last_update":"2026-03-21T13:23:09.210089949Z"} +2026/03/21 13:23:14 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:23:09.068269401Z"} +2026/03/21 13:23:14 [metric_collector] {"stage_name":"metric_collector","events_processed":7459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1491.8,"last_update":"2026-03-21T13:23:09.068855714Z"} +2026/03/21 13:23:14 ───────────────────────────────────────────────── +2026/03/21 13:23:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:23:19 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:23:14.06899033Z"} +2026/03/21 13:23:19 [metric_collector] {"stage_name":"metric_collector","events_processed":7464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1492.8,"last_update":"2026-03-21T13:23:14.069383393Z"} +2026/03/21 13:23:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:23:14.078820654Z"} +2026/03/21 13:23:19 [detection_layer] {"stage_name":"detection_layer","events_processed":248,"events_dropped":0,"avg_latency_ms":17.20543309829878,"throughput_eps":0,"last_update":"2026-03-21T13:23:14.210078386Z"} +2026/03/21 13:23:19 [transform_engine] {"stage_name":"transform_engine","events_processed":248,"events_dropped":0,"avg_latency_ms":172.20004981034288,"throughput_eps":0,"last_update":"2026-03-21T13:23:14.210051074Z"} +2026/03/21 13:23:19 ───────────────────────────────────────────────── +2026/03/21 13:23:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:23:24 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:23:19.068112434Z"} +2026/03/21 13:23:24 [metric_collector] {"stage_name":"metric_collector","events_processed":7469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1493.8,"last_update":"2026-03-21T13:23:19.068333677Z"} +2026/03/21 13:23:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2990,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:23:19.077500069Z"} +2026/03/21 13:23:24 [detection_layer] {"stage_name":"detection_layer","events_processed":248,"events_dropped":0,"avg_latency_ms":17.20543309829878,"throughput_eps":0,"last_update":"2026-03-21T13:23:19.210797598Z"} +2026/03/21 13:23:24 [transform_engine] {"stage_name":"transform_engine","events_processed":249,"events_dropped":0,"avg_latency_ms":151.6086142482743,"throughput_eps":0,"last_update":"2026-03-21T13:23:19.278917951Z"} +2026/03/21 13:23:24 ───────────────────────────────────────────────── +2026/03/21 13:23:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:23:29 [metric_collector] {"stage_name":"metric_collector","events_processed":7474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1494.8,"last_update":"2026-03-21T13:23:24.068841561Z"} +2026/03/21 13:23:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2992,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:23:24.077487026Z"} +2026/03/21 13:23:29 [detection_layer] {"stage_name":"detection_layer","events_processed":249,"events_dropped":0,"avg_latency_ms":17.368399878639025,"throughput_eps":0,"last_update":"2026-03-21T13:23:24.210845051Z"} +2026/03/21 13:23:29 [transform_engine] {"stage_name":"transform_engine","events_processed":249,"events_dropped":0,"avg_latency_ms":151.6086142482743,"throughput_eps":0,"last_update":"2026-03-21T13:23:24.209646566Z"} +2026/03/21 13:23:29 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:23:24.06858515Z"} +2026/03/21 13:23:29 ───────────────────────────────────────────────── +2026/03/21 13:23:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:23:34 [detection_layer] {"stage_name":"detection_layer","events_processed":249,"events_dropped":0,"avg_latency_ms":17.368399878639025,"throughput_eps":0,"last_update":"2026-03-21T13:23:29.209955254Z"} +2026/03/21 13:23:34 [transform_engine] {"stage_name":"transform_engine","events_processed":249,"events_dropped":0,"avg_latency_ms":151.6086142482743,"throughput_eps":0,"last_update":"2026-03-21T13:23:29.209925988Z"} +2026/03/21 13:23:34 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:23:29.068126148Z"} +2026/03/21 13:23:34 [metric_collector] {"stage_name":"metric_collector","events_processed":7479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1495.8,"last_update":"2026-03-21T13:23:29.068448905Z"} +2026/03/21 13:23:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:23:29.077722493Z"} +2026/03/21 13:23:34 ───────────────────────────────────────────────── +2026/03/21 13:23:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:23:39 [metric_collector] {"stage_name":"metric_collector","events_processed":7484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1496.8,"last_update":"2026-03-21T13:23:34.068449809Z"} +2026/03/21 13:23:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2996,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:23:34.076969774Z"} +2026/03/21 13:23:39 [detection_layer] {"stage_name":"detection_layer","events_processed":249,"events_dropped":0,"avg_latency_ms":17.368399878639025,"throughput_eps":0,"last_update":"2026-03-21T13:23:34.210176901Z"} +2026/03/21 13:23:39 [transform_engine] {"stage_name":"transform_engine","events_processed":249,"events_dropped":0,"avg_latency_ms":151.6086142482743,"throughput_eps":0,"last_update":"2026-03-21T13:23:34.2102026Z"} +2026/03/21 13:23:39 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:23:34.068197787Z"} +2026/03/21 13:23:39 ───────────────────────────────────────────────── +2026/03/21 13:23:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:23:44 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:23:39.068899507Z"} +2026/03/21 13:23:44 [metric_collector] {"stage_name":"metric_collector","events_processed":7489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1497.8,"last_update":"2026-03-21T13:23:39.069341734Z"} +2026/03/21 13:23:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:23:39.077827183Z"} +2026/03/21 13:23:44 [detection_layer] {"stage_name":"detection_layer","events_processed":249,"events_dropped":0,"avg_latency_ms":17.368399878639025,"throughput_eps":0,"last_update":"2026-03-21T13:23:39.210048343Z"} +2026/03/21 13:23:44 [transform_engine] {"stage_name":"transform_engine","events_processed":249,"events_dropped":0,"avg_latency_ms":151.6086142482743,"throughput_eps":0,"last_update":"2026-03-21T13:23:39.210093038Z"} +2026/03/21 13:23:44 ───────────────────────────────────────────────── +2026/03/21 13:23:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:23:49 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:23:44.068592103Z"} +2026/03/21 13:23:49 [metric_collector] {"stage_name":"metric_collector","events_processed":7494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1498.8,"last_update":"2026-03-21T13:23:44.068865095Z"} +2026/03/21 13:23:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:23:44.077218963Z"} +2026/03/21 13:23:49 [detection_layer] {"stage_name":"detection_layer","events_processed":249,"events_dropped":0,"avg_latency_ms":17.368399878639025,"throughput_eps":0,"last_update":"2026-03-21T13:23:44.210502586Z"} +2026/03/21 13:23:49 [transform_engine] {"stage_name":"transform_engine","events_processed":249,"events_dropped":0,"avg_latency_ms":151.6086142482743,"throughput_eps":0,"last_update":"2026-03-21T13:23:44.210481075Z"} +2026/03/21 13:23:49 ───────────────────────────────────────────────── +2026/03/21 13:23:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:23:54 [transform_engine] {"stage_name":"transform_engine","events_processed":249,"events_dropped":0,"avg_latency_ms":151.6086142482743,"throughput_eps":0,"last_update":"2026-03-21T13:23:49.210477687Z"} +2026/03/21 13:23:54 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:23:49.068562525Z"} +2026/03/21 13:23:54 [metric_collector] {"stage_name":"metric_collector","events_processed":7499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1499.8,"last_update":"2026-03-21T13:23:49.068910772Z"} +2026/03/21 13:23:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:23:49.077259188Z"} +2026/03/21 13:23:54 [detection_layer] {"stage_name":"detection_layer","events_processed":249,"events_dropped":0,"avg_latency_ms":17.368399878639025,"throughput_eps":0,"last_update":"2026-03-21T13:23:49.21050005Z"} +2026/03/21 13:23:54 ───────────────────────────────────────────────── +2026/03/21 13:23:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:23:59 [metric_collector] {"stage_name":"metric_collector","events_processed":7504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1500.8,"last_update":"2026-03-21T13:23:54.068866283Z"} +2026/03/21 13:23:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:23:54.077899901Z"} +2026/03/21 13:23:59 [detection_layer] {"stage_name":"detection_layer","events_processed":250,"events_dropped":0,"avg_latency_ms":17.35320870291122,"throughput_eps":0,"last_update":"2026-03-21T13:23:54.210197027Z"} +2026/03/21 13:23:59 [transform_engine] {"stage_name":"transform_engine","events_processed":250,"events_dropped":0,"avg_latency_ms":133.13014379861946,"throughput_eps":0,"last_update":"2026-03-21T13:23:54.210152692Z"} +2026/03/21 13:23:59 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:23:54.068408836Z"} +2026/03/21 13:23:59 ───────────────────────────────────────────────── +2026/03/21 13:24:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:24:04 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:23:59.068115203Z"} +2026/03/21 13:24:04 [metric_collector] {"stage_name":"metric_collector","events_processed":7509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1501.8,"last_update":"2026-03-21T13:23:59.068540828Z"} +2026/03/21 13:24:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3006,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:23:59.076834569Z"} +2026/03/21 13:24:04 [detection_layer] {"stage_name":"detection_layer","events_processed":250,"events_dropped":0,"avg_latency_ms":17.35320870291122,"throughput_eps":0,"last_update":"2026-03-21T13:23:59.210107664Z"} +2026/03/21 13:24:04 [transform_engine] {"stage_name":"transform_engine","events_processed":250,"events_dropped":0,"avg_latency_ms":133.13014379861946,"throughput_eps":0,"last_update":"2026-03-21T13:23:59.210081414Z"} +2026/03/21 13:24:04 ───────────────────────────────────────────────── +2026/03/21 13:24:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:24:09 [transform_engine] {"stage_name":"transform_engine","events_processed":250,"events_dropped":0,"avg_latency_ms":133.13014379861946,"throughput_eps":0,"last_update":"2026-03-21T13:24:04.210021222Z"} +2026/03/21 13:24:09 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:24:04.06873938Z"} +2026/03/21 13:24:09 [metric_collector] {"stage_name":"metric_collector","events_processed":7514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1502.8,"last_update":"2026-03-21T13:24:04.06899538Z"} +2026/03/21 13:24:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3008,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:24:04.077815429Z"} +2026/03/21 13:24:09 [detection_layer] {"stage_name":"detection_layer","events_processed":250,"events_dropped":0,"avg_latency_ms":17.35320870291122,"throughput_eps":0,"last_update":"2026-03-21T13:24:04.210051479Z"} +2026/03/21 13:24:09 ───────────────────────────────────────────────── +2026/03/21 13:24:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:24:14 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:24:09.068753565Z"} +2026/03/21 13:24:14 [metric_collector] {"stage_name":"metric_collector","events_processed":7519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1503.8,"last_update":"2026-03-21T13:24:09.069296305Z"} +2026/03/21 13:24:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:24:09.077532887Z"} +2026/03/21 13:24:14 [detection_layer] {"stage_name":"detection_layer","events_processed":250,"events_dropped":0,"avg_latency_ms":17.35320870291122,"throughput_eps":0,"last_update":"2026-03-21T13:24:09.21083037Z"} +2026/03/21 13:24:14 [transform_engine] {"stage_name":"transform_engine","events_processed":250,"events_dropped":0,"avg_latency_ms":133.13014379861946,"throughput_eps":0,"last_update":"2026-03-21T13:24:09.209701107Z"} +2026/03/21 13:24:14 ───────────────────────────────────────────────── +2026/03/21 13:24:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:24:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3012,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:24:14.077187648Z"} +2026/03/21 13:24:19 [detection_layer] {"stage_name":"detection_layer","events_processed":250,"events_dropped":0,"avg_latency_ms":17.35320870291122,"throughput_eps":0,"last_update":"2026-03-21T13:24:14.210058394Z"} +2026/03/21 13:24:19 [transform_engine] {"stage_name":"transform_engine","events_processed":250,"events_dropped":0,"avg_latency_ms":133.13014379861946,"throughput_eps":0,"last_update":"2026-03-21T13:24:14.209750955Z"} +2026/03/21 13:24:19 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:24:14.068075589Z"} +2026/03/21 13:24:19 [metric_collector] {"stage_name":"metric_collector","events_processed":7524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1504.8,"last_update":"2026-03-21T13:24:14.068560858Z"} +2026/03/21 13:24:19 ───────────────────────────────────────────────── +2026/03/21 13:24:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:24:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:24:19.077248833Z"} +2026/03/21 13:24:24 [detection_layer] {"stage_name":"detection_layer","events_processed":250,"events_dropped":0,"avg_latency_ms":17.35320870291122,"throughput_eps":0,"last_update":"2026-03-21T13:24:19.210462586Z"} +2026/03/21 13:24:24 [transform_engine] {"stage_name":"transform_engine","events_processed":251,"events_dropped":0,"avg_latency_ms":119.61017383889558,"throughput_eps":0,"last_update":"2026-03-21T13:24:19.27600771Z"} +2026/03/21 13:24:24 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:24:19.068777441Z"} +2026/03/21 13:24:24 [metric_collector] {"stage_name":"metric_collector","events_processed":7529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1505.8,"last_update":"2026-03-21T13:24:19.069127221Z"} +2026/03/21 13:24:24 ───────────────────────────────────────────────── +2026/03/21 13:24:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:24:29 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:24:24.068737967Z"} +2026/03/21 13:24:29 [metric_collector] {"stage_name":"metric_collector","events_processed":7534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1506.8,"last_update":"2026-03-21T13:24:24.069019666Z"} +2026/03/21 13:24:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:24:24.077535744Z"} +2026/03/21 13:24:29 [detection_layer] {"stage_name":"detection_layer","events_processed":251,"events_dropped":0,"avg_latency_ms":17.781587362328978,"throughput_eps":0,"last_update":"2026-03-21T13:24:24.210751321Z"} +2026/03/21 13:24:29 [transform_engine] {"stage_name":"transform_engine","events_processed":251,"events_dropped":0,"avg_latency_ms":119.61017383889558,"throughput_eps":0,"last_update":"2026-03-21T13:24:24.209670031Z"} +2026/03/21 13:24:29 ───────────────────────────────────────────────── +2026/03/21 13:24:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:24:34 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:24:29.068672467Z"} +2026/03/21 13:24:34 [metric_collector] {"stage_name":"metric_collector","events_processed":7539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1507.8,"last_update":"2026-03-21T13:24:29.06900321Z"} +2026/03/21 13:24:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3018,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:24:29.077573421Z"} +2026/03/21 13:24:34 [detection_layer] {"stage_name":"detection_layer","events_processed":251,"events_dropped":0,"avg_latency_ms":17.781587362328978,"throughput_eps":0,"last_update":"2026-03-21T13:24:29.210802083Z"} +2026/03/21 13:24:34 [transform_engine] {"stage_name":"transform_engine","events_processed":251,"events_dropped":0,"avg_latency_ms":119.61017383889558,"throughput_eps":0,"last_update":"2026-03-21T13:24:29.209718448Z"} +2026/03/21 13:24:34 ───────────────────────────────────────────────── +2026/03/21 13:24:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:24:39 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:24:34.068508831Z"} +2026/03/21 13:24:39 [metric_collector] {"stage_name":"metric_collector","events_processed":7544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1508.8,"last_update":"2026-03-21T13:24:34.068939105Z"} +2026/03/21 13:24:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3020,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:24:34.077677648Z"} +2026/03/21 13:24:39 [detection_layer] {"stage_name":"detection_layer","events_processed":251,"events_dropped":0,"avg_latency_ms":17.781587362328978,"throughput_eps":0,"last_update":"2026-03-21T13:24:34.209894794Z"} +2026/03/21 13:24:39 [transform_engine] {"stage_name":"transform_engine","events_processed":251,"events_dropped":0,"avg_latency_ms":119.61017383889558,"throughput_eps":0,"last_update":"2026-03-21T13:24:34.209906336Z"} +2026/03/21 13:24:39 ───────────────────────────────────────────────── +2026/03/21 13:24:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:24:44 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:24:39.068600769Z"} +2026/03/21 13:24:44 [metric_collector] {"stage_name":"metric_collector","events_processed":7549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1509.8,"last_update":"2026-03-21T13:24:39.068884161Z"} +2026/03/21 13:24:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3022,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:24:39.077637343Z"} +2026/03/21 13:24:44 [detection_layer] {"stage_name":"detection_layer","events_processed":251,"events_dropped":0,"avg_latency_ms":17.781587362328978,"throughput_eps":0,"last_update":"2026-03-21T13:24:39.210843803Z"} +2026/03/21 13:24:44 [transform_engine] {"stage_name":"transform_engine","events_processed":251,"events_dropped":0,"avg_latency_ms":119.61017383889558,"throughput_eps":0,"last_update":"2026-03-21T13:24:39.209735361Z"} +2026/03/21 13:24:44 ───────────────────────────────────────────────── +Saved state: 16 clusters, 13098 messages, reason: none +2026/03/21 13:24:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:24:49 [detection_layer] {"stage_name":"detection_layer","events_processed":251,"events_dropped":0,"avg_latency_ms":17.781587362328978,"throughput_eps":0,"last_update":"2026-03-21T13:24:44.210327412Z"} +2026/03/21 13:24:49 [transform_engine] {"stage_name":"transform_engine","events_processed":251,"events_dropped":0,"avg_latency_ms":119.61017383889558,"throughput_eps":0,"last_update":"2026-03-21T13:24:44.210340167Z"} +2026/03/21 13:24:49 [log_collector] {"stage_name":"log_collector","events_processed":13097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.4,"last_update":"2026-03-21T13:24:44.068402106Z"} +2026/03/21 13:24:49 [metric_collector] {"stage_name":"metric_collector","events_processed":7554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1510.8,"last_update":"2026-03-21T13:24:44.068870292Z"} +2026/03/21 13:24:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:24:44.075065756Z"} +2026/03/21 13:24:49 ───────────────────────────────────────────────── +2026/03/21 13:24:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:24:54 [log_collector] {"stage_name":"log_collector","events_processed":13104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2620.8,"last_update":"2026-03-21T13:24:49.068452289Z"} +2026/03/21 13:24:54 [metric_collector] {"stage_name":"metric_collector","events_processed":7559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1511.8,"last_update":"2026-03-21T13:24:49.068890868Z"} +2026/03/21 13:24:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:24:49.075655151Z"} +2026/03/21 13:24:54 [detection_layer] {"stage_name":"detection_layer","events_processed":251,"events_dropped":0,"avg_latency_ms":17.781587362328978,"throughput_eps":0,"last_update":"2026-03-21T13:24:49.209877258Z"} +2026/03/21 13:24:54 [transform_engine] {"stage_name":"transform_engine","events_processed":252,"events_dropped":0,"avg_latency_ms":116.43111447111647,"throughput_eps":0,"last_update":"2026-03-21T13:24:49.313606823Z"} +2026/03/21 13:24:54 ───────────────────────────────────────────────── +2026/03/21 13:24:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:24:59 [log_collector] {"stage_name":"log_collector","events_processed":13125,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2625,"last_update":"2026-03-21T13:24:54.068321038Z"} +2026/03/21 13:24:59 [metric_collector] {"stage_name":"metric_collector","events_processed":7564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1512.8,"last_update":"2026-03-21T13:24:54.06876612Z"} +2026/03/21 13:24:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:24:54.076086288Z"} +2026/03/21 13:24:59 [detection_layer] {"stage_name":"detection_layer","events_processed":252,"events_dropped":0,"avg_latency_ms":17.18300768986318,"throughput_eps":0,"last_update":"2026-03-21T13:24:54.210415269Z"} +2026/03/21 13:24:59 [transform_engine] {"stage_name":"transform_engine","events_processed":252,"events_dropped":0,"avg_latency_ms":116.43111447111647,"throughput_eps":0,"last_update":"2026-03-21T13:24:54.210424076Z"} +2026/03/21 13:24:59 ───────────────────────────────────────────────── +2026/03/21 13:25:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:25:04 [log_collector] {"stage_name":"log_collector","events_processed":13154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2630.8,"last_update":"2026-03-21T13:24:59.068700859Z"} +2026/03/21 13:25:04 [metric_collector] {"stage_name":"metric_collector","events_processed":7569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1513.8,"last_update":"2026-03-21T13:24:59.068890382Z"} +2026/03/21 13:25:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:24:59.075811956Z"} +2026/03/21 13:25:04 [detection_layer] {"stage_name":"detection_layer","events_processed":252,"events_dropped":0,"avg_latency_ms":17.18300768986318,"throughput_eps":0,"last_update":"2026-03-21T13:24:59.210042058Z"} +2026/03/21 13:25:04 [transform_engine] {"stage_name":"transform_engine","events_processed":252,"events_dropped":0,"avg_latency_ms":116.43111447111647,"throughput_eps":0,"last_update":"2026-03-21T13:24:59.210052418Z"} +2026/03/21 13:25:04 ───────────────────────────────────────────────── +2026/03/21 13:25:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:25:09 [log_collector] {"stage_name":"log_collector","events_processed":13182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2636.4,"last_update":"2026-03-21T13:25:04.068877855Z"} +2026/03/21 13:25:09 [metric_collector] {"stage_name":"metric_collector","events_processed":7574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1514.8,"last_update":"2026-03-21T13:25:04.069180144Z"} +2026/03/21 13:25:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:25:04.075695931Z"} +2026/03/21 13:25:09 [detection_layer] {"stage_name":"detection_layer","events_processed":252,"events_dropped":0,"avg_latency_ms":17.18300768986318,"throughput_eps":0,"last_update":"2026-03-21T13:25:04.210879319Z"} +2026/03/21 13:25:09 [transform_engine] {"stage_name":"transform_engine","events_processed":252,"events_dropped":0,"avg_latency_ms":116.43111447111647,"throughput_eps":0,"last_update":"2026-03-21T13:25:04.209786637Z"} +2026/03/21 13:25:09 ───────────────────────────────────────────────── +2026/03/21 13:25:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:25:14 [log_collector] {"stage_name":"log_collector","events_processed":13222,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2644.4,"last_update":"2026-03-21T13:25:09.068061061Z"} +2026/03/21 13:25:14 [metric_collector] {"stage_name":"metric_collector","events_processed":7579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1515.8,"last_update":"2026-03-21T13:25:09.068332832Z"} +2026/03/21 13:25:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:25:09.07445247Z"} +2026/03/21 13:25:14 [detection_layer] {"stage_name":"detection_layer","events_processed":252,"events_dropped":0,"avg_latency_ms":17.18300768986318,"throughput_eps":0,"last_update":"2026-03-21T13:25:09.210694475Z"} +2026/03/21 13:25:14 [transform_engine] {"stage_name":"transform_engine","events_processed":252,"events_dropped":0,"avg_latency_ms":116.43111447111647,"throughput_eps":0,"last_update":"2026-03-21T13:25:09.210662024Z"} +2026/03/21 13:25:14 ───────────────────────────────────────────────── +2026/03/21 13:25:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:25:19 [log_collector] {"stage_name":"log_collector","events_processed":13243,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2648.6,"last_update":"2026-03-21T13:25:14.068133111Z"} +2026/03/21 13:25:19 [metric_collector] {"stage_name":"metric_collector","events_processed":7583,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1516.6,"last_update":"2026-03-21T13:25:14.067961382Z"} +2026/03/21 13:25:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3036,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:25:14.075860659Z"} +2026/03/21 13:25:19 [detection_layer] {"stage_name":"detection_layer","events_processed":252,"events_dropped":0,"avg_latency_ms":17.18300768986318,"throughput_eps":0,"last_update":"2026-03-21T13:25:14.210024164Z"} +2026/03/21 13:25:19 [transform_engine] {"stage_name":"transform_engine","events_processed":252,"events_dropped":0,"avg_latency_ms":116.43111447111647,"throughput_eps":0,"last_update":"2026-03-21T13:25:14.210049553Z"} +2026/03/21 13:25:19 ───────────────────────────────────────────────── +2026/03/21 13:25:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:25:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:25:19.075768318Z"} +2026/03/21 13:25:24 [detection_layer] {"stage_name":"detection_layer","events_processed":252,"events_dropped":0,"avg_latency_ms":17.18300768986318,"throughput_eps":0,"last_update":"2026-03-21T13:25:19.209968715Z"} +2026/03/21 13:25:24 [transform_engine] {"stage_name":"transform_engine","events_processed":253,"events_dropped":0,"avg_latency_ms":112.82937237689319,"throughput_eps":0,"last_update":"2026-03-21T13:25:19.30840259Z"} +2026/03/21 13:25:24 [log_collector] {"stage_name":"log_collector","events_processed":13255,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2651,"last_update":"2026-03-21T13:25:19.068285057Z"} +2026/03/21 13:25:24 [metric_collector] {"stage_name":"metric_collector","events_processed":7589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1517.8,"last_update":"2026-03-21T13:25:19.068550847Z"} +2026/03/21 13:25:24 ───────────────────────────────────────────────── +2026/03/21 13:25:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:25:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:25:24.074486771Z"} +2026/03/21 13:25:29 [detection_layer] {"stage_name":"detection_layer","events_processed":253,"events_dropped":0,"avg_latency_ms":16.36061635189055,"throughput_eps":0,"last_update":"2026-03-21T13:25:24.210748615Z"} +2026/03/21 13:25:29 [transform_engine] {"stage_name":"transform_engine","events_processed":253,"events_dropped":0,"avg_latency_ms":112.82937237689319,"throughput_eps":0,"last_update":"2026-03-21T13:25:24.209645453Z"} +2026/03/21 13:25:29 [log_collector] {"stage_name":"log_collector","events_processed":13272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2654.4,"last_update":"2026-03-21T13:25:24.068066697Z"} +2026/03/21 13:25:29 [metric_collector] {"stage_name":"metric_collector","events_processed":7594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1518.8,"last_update":"2026-03-21T13:25:24.068452556Z"} +2026/03/21 13:25:29 ───────────────────────────────────────────────── +2026/03/21 13:25:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:25:34 [detection_layer] {"stage_name":"detection_layer","events_processed":253,"events_dropped":0,"avg_latency_ms":16.36061635189055,"throughput_eps":0,"last_update":"2026-03-21T13:25:29.210751108Z"} +2026/03/21 13:25:34 [transform_engine] {"stage_name":"transform_engine","events_processed":253,"events_dropped":0,"avg_latency_ms":112.82937237689319,"throughput_eps":0,"last_update":"2026-03-21T13:25:29.209652864Z"} +2026/03/21 13:25:34 [log_collector] {"stage_name":"log_collector","events_processed":13308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2661.6,"last_update":"2026-03-21T13:25:29.068848672Z"} +2026/03/21 13:25:34 [metric_collector] {"stage_name":"metric_collector","events_processed":7599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1519.8,"last_update":"2026-03-21T13:25:29.068869642Z"} +2026/03/21 13:25:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:25:29.075490571Z"} +2026/03/21 13:25:34 ───────────────────────────────────────────────── +2026/03/21 13:25:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:25:39 [transform_engine] {"stage_name":"transform_engine","events_processed":253,"events_dropped":0,"avg_latency_ms":112.82937237689319,"throughput_eps":0,"last_update":"2026-03-21T13:25:34.210068974Z"} +2026/03/21 13:25:39 [log_collector] {"stage_name":"log_collector","events_processed":13342,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2668.4,"last_update":"2026-03-21T13:25:34.068715157Z"} +2026/03/21 13:25:39 [metric_collector] {"stage_name":"metric_collector","events_processed":7604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1520.8,"last_update":"2026-03-21T13:25:34.068840297Z"} +2026/03/21 13:25:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:25:34.074821291Z"} +2026/03/21 13:25:39 [detection_layer] {"stage_name":"detection_layer","events_processed":253,"events_dropped":0,"avg_latency_ms":16.36061635189055,"throughput_eps":0,"last_update":"2026-03-21T13:25:34.210058885Z"} +2026/03/21 13:25:39 ───────────────────────────────────────────────── +2026/03/21 13:25:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:25:44 [log_collector] {"stage_name":"log_collector","events_processed":13356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2671.2,"last_update":"2026-03-21T13:25:39.068774194Z"} +2026/03/21 13:25:44 [metric_collector] {"stage_name":"metric_collector","events_processed":7609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1521.8,"last_update":"2026-03-21T13:25:39.069027419Z"} +2026/03/21 13:25:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:25:39.075322273Z"} +2026/03/21 13:25:44 [detection_layer] {"stage_name":"detection_layer","events_processed":253,"events_dropped":0,"avg_latency_ms":16.36061635189055,"throughput_eps":0,"last_update":"2026-03-21T13:25:39.210495504Z"} +2026/03/21 13:25:44 [transform_engine] {"stage_name":"transform_engine","events_processed":253,"events_dropped":0,"avg_latency_ms":112.82937237689319,"throughput_eps":0,"last_update":"2026-03-21T13:25:39.210504601Z"} +2026/03/21 13:25:44 ───────────────────────────────────────────────── +Saved state: 16 clusters, 13389 messages, reason: none +2026/03/21 13:25:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:25:49 [log_collector] {"stage_name":"log_collector","events_processed":13369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2673.8,"last_update":"2026-03-21T13:25:44.068474022Z"} +2026/03/21 13:25:49 [metric_collector] {"stage_name":"metric_collector","events_processed":7614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1522.8,"last_update":"2026-03-21T13:25:44.068756864Z"} +2026/03/21 13:25:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3048,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:25:44.075487623Z"} +2026/03/21 13:25:49 [detection_layer] {"stage_name":"detection_layer","events_processed":253,"events_dropped":0,"avg_latency_ms":16.36061635189055,"throughput_eps":0,"last_update":"2026-03-21T13:25:44.21079413Z"} +2026/03/21 13:25:49 [transform_engine] {"stage_name":"transform_engine","events_processed":253,"events_dropped":0,"avg_latency_ms":112.82937237689319,"throughput_eps":0,"last_update":"2026-03-21T13:25:44.209648115Z"} +2026/03/21 13:25:49 ───────────────────────────────────────────────── +2026/03/21 13:25:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:25:54 [log_collector] {"stage_name":"log_collector","events_processed":13400,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2680,"last_update":"2026-03-21T13:25:49.068152413Z"} +2026/03/21 13:25:54 [metric_collector] {"stage_name":"metric_collector","events_processed":7619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1523.8,"last_update":"2026-03-21T13:25:49.068320986Z"} +2026/03/21 13:25:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3050,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:25:49.080379638Z"} +2026/03/21 13:25:54 [detection_layer] {"stage_name":"detection_layer","events_processed":253,"events_dropped":0,"avg_latency_ms":16.36061635189055,"throughput_eps":0,"last_update":"2026-03-21T13:25:49.210081632Z"} +2026/03/21 13:25:54 [transform_engine] {"stage_name":"transform_engine","events_processed":254,"events_dropped":0,"avg_latency_ms":112.18829510151456,"throughput_eps":0,"last_update":"2026-03-21T13:25:49.319713844Z"} +2026/03/21 13:25:54 ───────────────────────────────────────────────── +2026/03/21 13:25:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:25:59 [log_collector] {"stage_name":"log_collector","events_processed":13428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2685.6,"last_update":"2026-03-21T13:25:54.068960146Z"} +2026/03/21 13:25:59 [metric_collector] {"stage_name":"metric_collector","events_processed":7624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1524.8,"last_update":"2026-03-21T13:25:54.069255Z"} +2026/03/21 13:25:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:25:54.075514347Z"} +2026/03/21 13:25:59 [detection_layer] {"stage_name":"detection_layer","events_processed":254,"events_dropped":0,"avg_latency_ms":16.37437148151244,"throughput_eps":0,"last_update":"2026-03-21T13:25:54.210788682Z"} +2026/03/21 13:25:59 [transform_engine] {"stage_name":"transform_engine","events_processed":254,"events_dropped":0,"avg_latency_ms":112.18829510151456,"throughput_eps":0,"last_update":"2026-03-21T13:25:54.209676832Z"} +2026/03/21 13:25:59 ───────────────────────────────────────────────── +2026/03/21 13:26:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:26:04 [detection_layer] {"stage_name":"detection_layer","events_processed":254,"events_dropped":0,"avg_latency_ms":16.37437148151244,"throughput_eps":0,"last_update":"2026-03-21T13:25:59.210760637Z"} +2026/03/21 13:26:04 [transform_engine] {"stage_name":"transform_engine","events_processed":254,"events_dropped":0,"avg_latency_ms":112.18829510151456,"throughput_eps":0,"last_update":"2026-03-21T13:25:59.209674407Z"} +2026/03/21 13:26:04 [log_collector] {"stage_name":"log_collector","events_processed":13457,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2691.4,"last_update":"2026-03-21T13:25:59.068490655Z"} +2026/03/21 13:26:04 [metric_collector] {"stage_name":"metric_collector","events_processed":7629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1525.8,"last_update":"2026-03-21T13:25:59.068865823Z"} +2026/03/21 13:26:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:25:59.075527951Z"} +2026/03/21 13:26:04 ───────────────────────────────────────────────── +2026/03/21 13:26:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:26:09 [metric_collector] {"stage_name":"metric_collector","events_processed":7634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1526.8,"last_update":"2026-03-21T13:26:04.068821156Z"} +2026/03/21 13:26:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3056,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:26:04.075094259Z"} +2026/03/21 13:26:09 [detection_layer] {"stage_name":"detection_layer","events_processed":254,"events_dropped":0,"avg_latency_ms":16.37437148151244,"throughput_eps":0,"last_update":"2026-03-21T13:26:04.210327416Z"} +2026/03/21 13:26:09 [transform_engine] {"stage_name":"transform_engine","events_processed":254,"events_dropped":0,"avg_latency_ms":112.18829510151456,"throughput_eps":0,"last_update":"2026-03-21T13:26:04.210338798Z"} +2026/03/21 13:26:09 [log_collector] {"stage_name":"log_collector","events_processed":13461,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2692.2,"last_update":"2026-03-21T13:26:04.06854127Z"} +2026/03/21 13:26:09 ───────────────────────────────────────────────── +2026/03/21 13:26:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:26:14 [transform_engine] {"stage_name":"transform_engine","events_processed":254,"events_dropped":0,"avg_latency_ms":112.18829510151456,"throughput_eps":0,"last_update":"2026-03-21T13:26:09.210505287Z"} +2026/03/21 13:26:14 [log_collector] {"stage_name":"log_collector","events_processed":13480,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696,"last_update":"2026-03-21T13:26:09.068777994Z"} +2026/03/21 13:26:14 [metric_collector] {"stage_name":"metric_collector","events_processed":7639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1527.8,"last_update":"2026-03-21T13:26:09.069051166Z"} +2026/03/21 13:26:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:26:09.078202401Z"} +2026/03/21 13:26:14 [detection_layer] {"stage_name":"detection_layer","events_processed":254,"events_dropped":0,"avg_latency_ms":16.37437148151244,"throughput_eps":0,"last_update":"2026-03-21T13:26:09.210484908Z"} +2026/03/21 13:26:14 ───────────────────────────────────────────────── +2026/03/21 13:26:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:26:19 [log_collector] {"stage_name":"log_collector","events_processed":13501,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2700.2,"last_update":"2026-03-21T13:26:14.068087298Z"} +2026/03/21 13:26:19 [metric_collector] {"stage_name":"metric_collector","events_processed":7644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1528.8,"last_update":"2026-03-21T13:26:14.06840754Z"} +2026/03/21 13:26:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:26:14.075493429Z"} +2026/03/21 13:26:19 [detection_layer] {"stage_name":"detection_layer","events_processed":254,"events_dropped":0,"avg_latency_ms":16.37437148151244,"throughput_eps":0,"last_update":"2026-03-21T13:26:14.210760372Z"} +2026/03/21 13:26:19 [transform_engine] {"stage_name":"transform_engine","events_processed":254,"events_dropped":0,"avg_latency_ms":112.18829510151456,"throughput_eps":0,"last_update":"2026-03-21T13:26:14.209641258Z"} +2026/03/21 13:26:19 ───────────────────────────────────────────────── +2026/03/21 13:26:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:26:24 [log_collector] {"stage_name":"log_collector","events_processed":13501,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2700.2,"last_update":"2026-03-21T13:26:19.068607099Z"} +2026/03/21 13:26:24 [metric_collector] {"stage_name":"metric_collector","events_processed":7649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1529.8,"last_update":"2026-03-21T13:26:19.068959885Z"} +2026/03/21 13:26:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3062,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:26:19.075282963Z"} +2026/03/21 13:26:24 [detection_layer] {"stage_name":"detection_layer","events_processed":254,"events_dropped":0,"avg_latency_ms":16.37437148151244,"throughput_eps":0,"last_update":"2026-03-21T13:26:19.210524949Z"} +2026/03/21 13:26:24 [transform_engine] {"stage_name":"transform_engine","events_processed":255,"events_dropped":0,"avg_latency_ms":111.65293848121166,"throughput_eps":0,"last_update":"2026-03-21T13:26:19.320003797Z"} +2026/03/21 13:26:24 ───────────────────────────────────────────────── +2026/03/21 13:26:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:26:29 [metric_collector] {"stage_name":"metric_collector","events_processed":7654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1530.8,"last_update":"2026-03-21T13:26:24.068570794Z"} +2026/03/21 13:26:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:26:24.078048404Z"} +2026/03/21 13:26:29 [detection_layer] {"stage_name":"detection_layer","events_processed":255,"events_dropped":0,"avg_latency_ms":15.707162985209953,"throughput_eps":0,"last_update":"2026-03-21T13:26:24.210191093Z"} +2026/03/21 13:26:29 [transform_engine] {"stage_name":"transform_engine","events_processed":255,"events_dropped":0,"avg_latency_ms":111.65293848121166,"throughput_eps":0,"last_update":"2026-03-21T13:26:24.210221201Z"} +2026/03/21 13:26:29 [log_collector] {"stage_name":"log_collector","events_processed":13505,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701,"last_update":"2026-03-21T13:26:24.068091206Z"} +2026/03/21 13:26:29 ───────────────────────────────────────────────── +2026/03/21 13:26:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:26:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:26:29.077258347Z"} +2026/03/21 13:26:34 [detection_layer] {"stage_name":"detection_layer","events_processed":255,"events_dropped":0,"avg_latency_ms":15.707162985209953,"throughput_eps":0,"last_update":"2026-03-21T13:26:29.21049902Z"} +2026/03/21 13:26:34 [transform_engine] {"stage_name":"transform_engine","events_processed":255,"events_dropped":0,"avg_latency_ms":111.65293848121166,"throughput_eps":0,"last_update":"2026-03-21T13:26:29.210524378Z"} +2026/03/21 13:26:34 [log_collector] {"stage_name":"log_collector","events_processed":13505,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701,"last_update":"2026-03-21T13:26:29.068216833Z"} +2026/03/21 13:26:34 [metric_collector] {"stage_name":"metric_collector","events_processed":7659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1531.8,"last_update":"2026-03-21T13:26:29.068624624Z"} +2026/03/21 13:26:34 ───────────────────────────────────────────────── +2026/03/21 13:26:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:26:39 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:26:34.068115657Z"} +2026/03/21 13:26:39 [metric_collector] {"stage_name":"metric_collector","events_processed":7664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1532.8,"last_update":"2026-03-21T13:26:34.068440348Z"} +2026/03/21 13:26:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:26:34.077703758Z"} +2026/03/21 13:26:39 [detection_layer] {"stage_name":"detection_layer","events_processed":255,"events_dropped":0,"avg_latency_ms":15.707162985209953,"throughput_eps":0,"last_update":"2026-03-21T13:26:34.209897877Z"} +2026/03/21 13:26:39 [transform_engine] {"stage_name":"transform_engine","events_processed":255,"events_dropped":0,"avg_latency_ms":111.65293848121166,"throughput_eps":0,"last_update":"2026-03-21T13:26:34.209865865Z"} +2026/03/21 13:26:39 ───────────────────────────────────────────────── +2026/03/21 13:26:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:26:44 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:26:39.068601368Z"} +2026/03/21 13:26:44 [metric_collector] {"stage_name":"metric_collector","events_processed":7669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1533.8,"last_update":"2026-03-21T13:26:39.068880983Z"} +2026/03/21 13:26:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:26:39.076303788Z"} +2026/03/21 13:26:44 [detection_layer] {"stage_name":"detection_layer","events_processed":255,"events_dropped":0,"avg_latency_ms":15.707162985209953,"throughput_eps":0,"last_update":"2026-03-21T13:26:39.210601527Z"} +2026/03/21 13:26:44 [transform_engine] {"stage_name":"transform_engine","events_processed":255,"events_dropped":0,"avg_latency_ms":111.65293848121166,"throughput_eps":0,"last_update":"2026-03-21T13:26:39.210578272Z"} +2026/03/21 13:26:44 ───────────────────────────────────────────────── +2026/03/21 13:26:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:26:49 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:26:44.068537276Z"} +2026/03/21 13:26:49 [metric_collector] {"stage_name":"metric_collector","events_processed":7674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1534.8,"last_update":"2026-03-21T13:26:44.068824616Z"} +2026/03/21 13:26:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3072,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:26:44.078212784Z"} +2026/03/21 13:26:49 [detection_layer] {"stage_name":"detection_layer","events_processed":255,"events_dropped":0,"avg_latency_ms":15.707162985209953,"throughput_eps":0,"last_update":"2026-03-21T13:26:44.210454956Z"} +2026/03/21 13:26:49 [transform_engine] {"stage_name":"transform_engine","events_processed":255,"events_dropped":0,"avg_latency_ms":111.65293848121166,"throughput_eps":0,"last_update":"2026-03-21T13:26:44.210474765Z"} +2026/03/21 13:26:49 ───────────────────────────────────────────────── +2026/03/21 13:26:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:26:54 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:26:49.068576302Z"} +2026/03/21 13:26:54 [metric_collector] {"stage_name":"metric_collector","events_processed":7679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1535.8,"last_update":"2026-03-21T13:26:49.068924189Z"} +2026/03/21 13:26:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:26:49.0781159Z"} +2026/03/21 13:26:54 [detection_layer] {"stage_name":"detection_layer","events_processed":255,"events_dropped":0,"avg_latency_ms":15.707162985209953,"throughput_eps":0,"last_update":"2026-03-21T13:26:49.210389562Z"} +2026/03/21 13:26:54 [transform_engine] {"stage_name":"transform_engine","events_processed":256,"events_dropped":0,"avg_latency_ms":481.0203857849694,"throughput_eps":0,"last_update":"2026-03-21T13:26:51.168917289Z"} +2026/03/21 13:26:54 ───────────────────────────────────────────────── +2026/03/21 13:26:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:26:59 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:26:54.06810966Z"} +2026/03/21 13:26:59 [metric_collector] {"stage_name":"metric_collector","events_processed":7684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1536.8,"last_update":"2026-03-21T13:26:54.068557698Z"} +2026/03/21 13:26:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3076,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:26:54.077325619Z"} +2026/03/21 13:26:59 [detection_layer] {"stage_name":"detection_layer","events_processed":256,"events_dropped":0,"avg_latency_ms":15.255154588167963,"throughput_eps":0,"last_update":"2026-03-21T13:26:54.210551816Z"} +2026/03/21 13:26:59 [transform_engine] {"stage_name":"transform_engine","events_processed":256,"events_dropped":0,"avg_latency_ms":481.0203857849694,"throughput_eps":0,"last_update":"2026-03-21T13:26:54.210562946Z"} +2026/03/21 13:26:59 ───────────────────────────────────────────────── +2026/03/21 13:27:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:27:04 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:26:59.068086789Z"} +2026/03/21 13:27:04 [metric_collector] {"stage_name":"metric_collector","events_processed":7689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1537.8,"last_update":"2026-03-21T13:26:59.068519327Z"} +2026/03/21 13:27:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:26:59.077731489Z"} +2026/03/21 13:27:04 [detection_layer] {"stage_name":"detection_layer","events_processed":256,"events_dropped":0,"avg_latency_ms":15.255154588167963,"throughput_eps":0,"last_update":"2026-03-21T13:26:59.210405167Z"} +2026/03/21 13:27:04 [transform_engine] {"stage_name":"transform_engine","events_processed":256,"events_dropped":0,"avg_latency_ms":481.0203857849694,"throughput_eps":0,"last_update":"2026-03-21T13:26:59.210414977Z"} +2026/03/21 13:27:04 ───────────────────────────────────────────────── +2026/03/21 13:27:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:27:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:27:04.078236799Z"} +2026/03/21 13:27:09 [detection_layer] {"stage_name":"detection_layer","events_processed":256,"events_dropped":0,"avg_latency_ms":15.255154588167963,"throughput_eps":0,"last_update":"2026-03-21T13:27:04.210440749Z"} +2026/03/21 13:27:09 [transform_engine] {"stage_name":"transform_engine","events_processed":256,"events_dropped":0,"avg_latency_ms":481.0203857849694,"throughput_eps":0,"last_update":"2026-03-21T13:27:04.210450747Z"} +2026/03/21 13:27:09 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:27:09.068128755Z"} +2026/03/21 13:27:09 [metric_collector] {"stage_name":"metric_collector","events_processed":7694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1538.8,"last_update":"2026-03-21T13:27:04.068927671Z"} +2026/03/21 13:27:09 ───────────────────────────────────────────────── +2026/03/21 13:27:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:27:14 [metric_collector] {"stage_name":"metric_collector","events_processed":7699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1539.8,"last_update":"2026-03-21T13:27:09.06852278Z"} +2026/03/21 13:27:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3082,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:27:09.077626363Z"} +2026/03/21 13:27:14 [detection_layer] {"stage_name":"detection_layer","events_processed":256,"events_dropped":0,"avg_latency_ms":15.255154588167963,"throughput_eps":0,"last_update":"2026-03-21T13:27:09.210808857Z"} +2026/03/21 13:27:14 [transform_engine] {"stage_name":"transform_engine","events_processed":256,"events_dropped":0,"avg_latency_ms":481.0203857849694,"throughput_eps":0,"last_update":"2026-03-21T13:27:09.209720803Z"} +2026/03/21 13:27:14 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:27:09.068128755Z"} +2026/03/21 13:27:14 ───────────────────────────────────────────────── +2026/03/21 13:27:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:27:19 [metric_collector] {"stage_name":"metric_collector","events_processed":7704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1540.8,"last_update":"2026-03-21T13:27:14.06884057Z"} +2026/03/21 13:27:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:27:14.078715401Z"} +2026/03/21 13:27:19 [detection_layer] {"stage_name":"detection_layer","events_processed":256,"events_dropped":0,"avg_latency_ms":15.255154588167963,"throughput_eps":0,"last_update":"2026-03-21T13:27:14.209931208Z"} +2026/03/21 13:27:19 [transform_engine] {"stage_name":"transform_engine","events_processed":256,"events_dropped":0,"avg_latency_ms":481.0203857849694,"throughput_eps":0,"last_update":"2026-03-21T13:27:14.209955244Z"} +2026/03/21 13:27:19 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:27:14.068487524Z"} +2026/03/21 13:27:19 ───────────────────────────────────────────────── +2026/03/21 13:27:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:27:24 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:27:19.068520841Z"} +2026/03/21 13:27:24 [metric_collector] {"stage_name":"metric_collector","events_processed":7709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1541.8,"last_update":"2026-03-21T13:27:19.068809655Z"} +2026/03/21 13:27:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:27:19.075738133Z"} +2026/03/21 13:27:24 [detection_layer] {"stage_name":"detection_layer","events_processed":256,"events_dropped":0,"avg_latency_ms":15.255154588167963,"throughput_eps":0,"last_update":"2026-03-21T13:27:19.209931003Z"} +2026/03/21 13:27:24 [transform_engine] {"stage_name":"transform_engine","events_processed":257,"events_dropped":0,"avg_latency_ms":396.59004342797556,"throughput_eps":0,"last_update":"2026-03-21T13:27:19.268824583Z"} +2026/03/21 13:27:24 ───────────────────────────────────────────────── +2026/03/21 13:27:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:27:29 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:27:24.068891555Z"} +2026/03/21 13:27:29 [metric_collector] {"stage_name":"metric_collector","events_processed":7714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1542.8,"last_update":"2026-03-21T13:27:24.069072772Z"} +2026/03/21 13:27:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:27:24.076016419Z"} +2026/03/21 13:27:29 [detection_layer] {"stage_name":"detection_layer","events_processed":257,"events_dropped":0,"avg_latency_ms":14.537696470534373,"throughput_eps":0,"last_update":"2026-03-21T13:27:24.210297638Z"} +2026/03/21 13:27:29 [transform_engine] {"stage_name":"transform_engine","events_processed":257,"events_dropped":0,"avg_latency_ms":396.59004342797556,"throughput_eps":0,"last_update":"2026-03-21T13:27:24.210266719Z"} +2026/03/21 13:27:29 ───────────────────────────────────────────────── +2026/03/21 13:27:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:27:34 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:27:29.068556246Z"} +2026/03/21 13:27:34 [metric_collector] {"stage_name":"metric_collector","events_processed":7719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1543.8,"last_update":"2026-03-21T13:27:29.068877Z"} +2026/03/21 13:27:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:27:29.080330664Z"} +2026/03/21 13:27:34 [detection_layer] {"stage_name":"detection_layer","events_processed":257,"events_dropped":0,"avg_latency_ms":14.537696470534373,"throughput_eps":0,"last_update":"2026-03-21T13:27:29.21053184Z"} +2026/03/21 13:27:34 [transform_engine] {"stage_name":"transform_engine","events_processed":257,"events_dropped":0,"avg_latency_ms":396.59004342797556,"throughput_eps":0,"last_update":"2026-03-21T13:27:29.210556537Z"} +2026/03/21 13:27:34 ───────────────────────────────────────────────── +2026/03/21 13:27:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:27:39 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:27:34.068762394Z"} +2026/03/21 13:27:39 [metric_collector] {"stage_name":"metric_collector","events_processed":7723,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1544.6,"last_update":"2026-03-21T13:27:34.068768385Z"} +2026/03/21 13:27:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:27:34.078688282Z"} +2026/03/21 13:27:39 [detection_layer] {"stage_name":"detection_layer","events_processed":257,"events_dropped":0,"avg_latency_ms":14.537696470534373,"throughput_eps":0,"last_update":"2026-03-21T13:27:34.20998752Z"} +2026/03/21 13:27:39 [transform_engine] {"stage_name":"transform_engine","events_processed":257,"events_dropped":0,"avg_latency_ms":396.59004342797556,"throughput_eps":0,"last_update":"2026-03-21T13:27:34.209962623Z"} +2026/03/21 13:27:39 ───────────────────────────────────────────────── +2026/03/21 13:27:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:27:44 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:27:39.068502147Z"} +2026/03/21 13:27:44 [metric_collector] {"stage_name":"metric_collector","events_processed":7729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1545.8,"last_update":"2026-03-21T13:27:39.06888007Z"} +2026/03/21 13:27:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:27:39.077813558Z"} +2026/03/21 13:27:44 [detection_layer] {"stage_name":"detection_layer","events_processed":257,"events_dropped":0,"avg_latency_ms":14.537696470534373,"throughput_eps":0,"last_update":"2026-03-21T13:27:39.209992983Z"} +2026/03/21 13:27:44 [transform_engine] {"stage_name":"transform_engine","events_processed":257,"events_dropped":0,"avg_latency_ms":396.59004342797556,"throughput_eps":0,"last_update":"2026-03-21T13:27:39.210036326Z"} +2026/03/21 13:27:44 ───────────────────────────────────────────────── +2026/03/21 13:27:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:27:49 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:27:44.068782928Z"} +2026/03/21 13:27:49 [metric_collector] {"stage_name":"metric_collector","events_processed":7734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1546.8,"last_update":"2026-03-21T13:27:44.069166392Z"} +2026/03/21 13:27:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:27:44.077971865Z"} +2026/03/21 13:27:49 [detection_layer] {"stage_name":"detection_layer","events_processed":257,"events_dropped":0,"avg_latency_ms":14.537696470534373,"throughput_eps":0,"last_update":"2026-03-21T13:27:44.210276419Z"} +2026/03/21 13:27:49 [transform_engine] {"stage_name":"transform_engine","events_processed":257,"events_dropped":0,"avg_latency_ms":396.59004342797556,"throughput_eps":0,"last_update":"2026-03-21T13:27:44.210304723Z"} +2026/03/21 13:27:49 ───────────────────────────────────────────────── +2026/03/21 13:27:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:27:54 [metric_collector] {"stage_name":"metric_collector","events_processed":7739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1547.8,"last_update":"2026-03-21T13:27:49.069094144Z"} +2026/03/21 13:27:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:27:49.07565571Z"} +2026/03/21 13:27:54 [detection_layer] {"stage_name":"detection_layer","events_processed":257,"events_dropped":0,"avg_latency_ms":14.537696470534373,"throughput_eps":0,"last_update":"2026-03-21T13:27:49.209950345Z"} +2026/03/21 13:27:54 [transform_engine] {"stage_name":"transform_engine","events_processed":258,"events_dropped":0,"avg_latency_ms":330.54329934238046,"throughput_eps":0,"last_update":"2026-03-21T13:27:49.276326647Z"} +2026/03/21 13:27:54 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:27:49.068830149Z"} +2026/03/21 13:27:54 ───────────────────────────────────────────────── +2026/03/21 13:27:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:27:59 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:27:54.0681046Z"} +2026/03/21 13:27:59 [metric_collector] {"stage_name":"metric_collector","events_processed":7744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1548.8,"last_update":"2026-03-21T13:27:54.06838706Z"} +2026/03/21 13:27:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:27:54.07743149Z"} +2026/03/21 13:27:59 [detection_layer] {"stage_name":"detection_layer","events_processed":258,"events_dropped":0,"avg_latency_ms":13.923659176427499,"throughput_eps":0,"last_update":"2026-03-21T13:27:54.210644806Z"} +2026/03/21 13:27:59 [transform_engine] {"stage_name":"transform_engine","events_processed":258,"events_dropped":0,"avg_latency_ms":330.54329934238046,"throughput_eps":0,"last_update":"2026-03-21T13:27:54.210672078Z"} +2026/03/21 13:27:59 ───────────────────────────────────────────────── +2026/03/21 13:28:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:28:04 [detection_layer] {"stage_name":"detection_layer","events_processed":258,"events_dropped":0,"avg_latency_ms":13.923659176427499,"throughput_eps":0,"last_update":"2026-03-21T13:27:59.209914678Z"} +2026/03/21 13:28:04 [transform_engine] {"stage_name":"transform_engine","events_processed":258,"events_dropped":0,"avg_latency_ms":330.54329934238046,"throughput_eps":0,"last_update":"2026-03-21T13:27:59.209934356Z"} +2026/03/21 13:28:04 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:27:59.068131812Z"} +2026/03/21 13:28:04 [metric_collector] {"stage_name":"metric_collector","events_processed":7749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1549.8,"last_update":"2026-03-21T13:27:59.068299563Z"} +2026/03/21 13:28:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:27:59.076666275Z"} +2026/03/21 13:28:04 ───────────────────────────────────────────────── +2026/03/21 13:28:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:28:09 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:28:04.068218499Z"} +2026/03/21 13:28:09 [metric_collector] {"stage_name":"metric_collector","events_processed":7754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1550.8,"last_update":"2026-03-21T13:28:04.068589139Z"} +2026/03/21 13:28:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:28:04.077480196Z"} +2026/03/21 13:28:09 [detection_layer] {"stage_name":"detection_layer","events_processed":258,"events_dropped":0,"avg_latency_ms":13.923659176427499,"throughput_eps":0,"last_update":"2026-03-21T13:28:04.210587879Z"} +2026/03/21 13:28:09 [transform_engine] {"stage_name":"transform_engine","events_processed":258,"events_dropped":0,"avg_latency_ms":330.54329934238046,"throughput_eps":0,"last_update":"2026-03-21T13:28:04.210613378Z"} +2026/03/21 13:28:09 ───────────────────────────────────────────────── +2026/03/21 13:28:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:28:14 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:28:09.068540236Z"} +2026/03/21 13:28:14 [metric_collector] {"stage_name":"metric_collector","events_processed":7764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1552.8,"last_update":"2026-03-21T13:28:14.068753381Z"} +2026/03/21 13:28:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:28:09.078711434Z"} +2026/03/21 13:28:14 [detection_layer] {"stage_name":"detection_layer","events_processed":258,"events_dropped":0,"avg_latency_ms":13.923659176427499,"throughput_eps":0,"last_update":"2026-03-21T13:28:09.209945139Z"} +2026/03/21 13:28:14 [transform_engine] {"stage_name":"transform_engine","events_processed":258,"events_dropped":0,"avg_latency_ms":330.54329934238046,"throughput_eps":0,"last_update":"2026-03-21T13:28:09.20991401Z"} +2026/03/21 13:28:14 ───────────────────────────────────────────────── +2026/03/21 13:28:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:28:19 [detection_layer] {"stage_name":"detection_layer","events_processed":258,"events_dropped":0,"avg_latency_ms":13.923659176427499,"throughput_eps":0,"last_update":"2026-03-21T13:28:14.210649575Z"} +2026/03/21 13:28:19 [transform_engine] {"stage_name":"transform_engine","events_processed":258,"events_dropped":0,"avg_latency_ms":330.54329934238046,"throughput_eps":0,"last_update":"2026-03-21T13:28:14.210627342Z"} +2026/03/21 13:28:19 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:28:14.068766105Z"} +2026/03/21 13:28:19 [metric_collector] {"stage_name":"metric_collector","events_processed":7764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1552.8,"last_update":"2026-03-21T13:28:14.068753381Z"} +2026/03/21 13:28:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:28:14.077400981Z"} +2026/03/21 13:28:19 ───────────────────────────────────────────────── +2026/03/21 13:28:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:28:24 [metric_collector] {"stage_name":"metric_collector","events_processed":7769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1553.8,"last_update":"2026-03-21T13:28:19.068255674Z"} +2026/03/21 13:28:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:28:19.078231408Z"} +2026/03/21 13:28:24 [detection_layer] {"stage_name":"detection_layer","events_processed":258,"events_dropped":0,"avg_latency_ms":13.923659176427499,"throughput_eps":0,"last_update":"2026-03-21T13:28:19.21045521Z"} +2026/03/21 13:28:24 [transform_engine] {"stage_name":"transform_engine","events_processed":259,"events_dropped":0,"avg_latency_ms":278.08630447390436,"throughput_eps":0,"last_update":"2026-03-21T13:28:19.278742771Z"} +2026/03/21 13:28:24 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:28:19.068061342Z"} +2026/03/21 13:28:24 ───────────────────────────────────────────────── +2026/03/21 13:28:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:28:29 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:28:24.068620089Z"} +2026/03/21 13:28:29 [metric_collector] {"stage_name":"metric_collector","events_processed":7774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1554.8,"last_update":"2026-03-21T13:28:24.068847434Z"} +2026/03/21 13:28:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:28:24.079498421Z"} +2026/03/21 13:28:29 [detection_layer] {"stage_name":"detection_layer","events_processed":259,"events_dropped":0,"avg_latency_ms":14.175101541142,"throughput_eps":0,"last_update":"2026-03-21T13:28:24.210730805Z"} +2026/03/21 13:28:29 [transform_engine] {"stage_name":"transform_engine","events_processed":259,"events_dropped":0,"avg_latency_ms":278.08630447390436,"throughput_eps":0,"last_update":"2026-03-21T13:28:24.209641379Z"} +2026/03/21 13:28:29 ───────────────────────────────────────────────── +2026/03/21 13:28:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:28:34 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:28:29.06888162Z"} +2026/03/21 13:28:34 [metric_collector] {"stage_name":"metric_collector","events_processed":7779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1555.8,"last_update":"2026-03-21T13:28:29.069172747Z"} +2026/03/21 13:28:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:28:29.077969333Z"} +2026/03/21 13:28:34 [detection_layer] {"stage_name":"detection_layer","events_processed":259,"events_dropped":0,"avg_latency_ms":14.175101541142,"throughput_eps":0,"last_update":"2026-03-21T13:28:29.210195028Z"} +2026/03/21 13:28:34 [transform_engine] {"stage_name":"transform_engine","events_processed":259,"events_dropped":0,"avg_latency_ms":278.08630447390436,"throughput_eps":0,"last_update":"2026-03-21T13:28:29.210215056Z"} +2026/03/21 13:28:34 ───────────────────────────────────────────────── +2026/03/21 13:28:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:28:39 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:28:34.068834565Z"} +2026/03/21 13:28:39 [metric_collector] {"stage_name":"metric_collector","events_processed":7784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1556.8,"last_update":"2026-03-21T13:28:34.069157494Z"} +2026/03/21 13:28:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:28:34.077755138Z"} +2026/03/21 13:28:39 [detection_layer] {"stage_name":"detection_layer","events_processed":259,"events_dropped":0,"avg_latency_ms":14.175101541142,"throughput_eps":0,"last_update":"2026-03-21T13:28:34.209996373Z"} +2026/03/21 13:28:39 [transform_engine] {"stage_name":"transform_engine","events_processed":259,"events_dropped":0,"avg_latency_ms":278.08630447390436,"throughput_eps":0,"last_update":"2026-03-21T13:28:34.210027082Z"} +2026/03/21 13:28:39 ───────────────────────────────────────────────── +2026/03/21 13:28:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:28:44 [detection_layer] {"stage_name":"detection_layer","events_processed":259,"events_dropped":0,"avg_latency_ms":14.175101541142,"throughput_eps":0,"last_update":"2026-03-21T13:28:39.210762823Z"} +2026/03/21 13:28:44 [transform_engine] {"stage_name":"transform_engine","events_processed":259,"events_dropped":0,"avg_latency_ms":278.08630447390436,"throughput_eps":0,"last_update":"2026-03-21T13:28:39.209654721Z"} +2026/03/21 13:28:44 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:28:39.068469748Z"} +2026/03/21 13:28:44 [metric_collector] {"stage_name":"metric_collector","events_processed":7789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1557.8,"last_update":"2026-03-21T13:28:39.068831741Z"} +2026/03/21 13:28:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:28:39.075491385Z"} +2026/03/21 13:28:44 ───────────────────────────────────────────────── +2026/03/21 13:28:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:28:49 [detection_layer] {"stage_name":"detection_layer","events_processed":259,"events_dropped":0,"avg_latency_ms":14.175101541142,"throughput_eps":0,"last_update":"2026-03-21T13:28:44.210791478Z"} +2026/03/21 13:28:49 [transform_engine] {"stage_name":"transform_engine","events_processed":259,"events_dropped":0,"avg_latency_ms":278.08630447390436,"throughput_eps":0,"last_update":"2026-03-21T13:28:44.209677564Z"} +2026/03/21 13:28:49 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:28:44.06808969Z"} +2026/03/21 13:28:49 [metric_collector] {"stage_name":"metric_collector","events_processed":7794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1558.8,"last_update":"2026-03-21T13:28:44.068475478Z"} +2026/03/21 13:28:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:28:44.074521056Z"} +2026/03/21 13:28:49 ───────────────────────────────────────────────── +2026/03/21 13:28:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:28:54 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:28:49.068423589Z"} +2026/03/21 13:28:54 [metric_collector] {"stage_name":"metric_collector","events_processed":7799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1559.8,"last_update":"2026-03-21T13:28:49.068707003Z"} +2026/03/21 13:28:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3122,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:28:49.075932409Z"} +2026/03/21 13:28:54 [detection_layer] {"stage_name":"detection_layer","events_processed":259,"events_dropped":0,"avg_latency_ms":14.175101541142,"throughput_eps":0,"last_update":"2026-03-21T13:28:49.210152325Z"} +2026/03/21 13:28:54 [transform_engine] {"stage_name":"transform_engine","events_processed":260,"events_dropped":0,"avg_latency_ms":235.40233337912352,"throughput_eps":0,"last_update":"2026-03-21T13:28:49.274850044Z"} +2026/03/21 13:28:54 ───────────────────────────────────────────────── +2026/03/21 13:28:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:28:59 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:28:54.068284062Z"} +2026/03/21 13:28:59 [metric_collector] {"stage_name":"metric_collector","events_processed":7804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1560.8,"last_update":"2026-03-21T13:28:54.068329479Z"} +2026/03/21 13:28:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:28:54.075300238Z"} +2026/03/21 13:28:59 [detection_layer] {"stage_name":"detection_layer","events_processed":260,"events_dropped":0,"avg_latency_ms":14.0995598329136,"throughput_eps":0,"last_update":"2026-03-21T13:28:54.210508617Z"} +2026/03/21 13:28:59 [transform_engine] {"stage_name":"transform_engine","events_processed":260,"events_dropped":0,"avg_latency_ms":235.40233337912352,"throughput_eps":0,"last_update":"2026-03-21T13:28:54.210537122Z"} +2026/03/21 13:28:59 ───────────────────────────────────────────────── +2026/03/21 13:29:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:29:04 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:28:59.069036869Z"} +2026/03/21 13:29:04 [metric_collector] {"stage_name":"metric_collector","events_processed":7809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1561.8,"last_update":"2026-03-21T13:28:59.068980812Z"} +2026/03/21 13:29:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3126,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:28:59.076120435Z"} +2026/03/21 13:29:04 [detection_layer] {"stage_name":"detection_layer","events_processed":260,"events_dropped":0,"avg_latency_ms":14.0995598329136,"throughput_eps":0,"last_update":"2026-03-21T13:28:59.210407018Z"} +2026/03/21 13:29:04 [transform_engine] {"stage_name":"transform_engine","events_processed":260,"events_dropped":0,"avg_latency_ms":235.40233337912352,"throughput_eps":0,"last_update":"2026-03-21T13:28:59.21042898Z"} +2026/03/21 13:29:04 ───────────────────────────────────────────────── +2026/03/21 13:29:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:29:09 [metric_collector] {"stage_name":"metric_collector","events_processed":7814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1562.8,"last_update":"2026-03-21T13:29:04.068968081Z"} +2026/03/21 13:29:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3128,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:29:04.07702429Z"} +2026/03/21 13:29:09 [detection_layer] {"stage_name":"detection_layer","events_processed":260,"events_dropped":0,"avg_latency_ms":14.0995598329136,"throughput_eps":0,"last_update":"2026-03-21T13:29:04.21034288Z"} +2026/03/21 13:29:09 [transform_engine] {"stage_name":"transform_engine","events_processed":260,"events_dropped":0,"avg_latency_ms":235.40233337912352,"throughput_eps":0,"last_update":"2026-03-21T13:29:04.210367096Z"} +2026/03/21 13:29:09 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:29:04.068579187Z"} +2026/03/21 13:29:09 ───────────────────────────────────────────────── +2026/03/21 13:29:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:29:14 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:29:09.068676162Z"} +2026/03/21 13:29:14 [metric_collector] {"stage_name":"metric_collector","events_processed":7819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1563.8,"last_update":"2026-03-21T13:29:09.068845336Z"} +2026/03/21 13:29:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3130,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:29:09.076596189Z"} +2026/03/21 13:29:14 [detection_layer] {"stage_name":"detection_layer","events_processed":260,"events_dropped":0,"avg_latency_ms":14.0995598329136,"throughput_eps":0,"last_update":"2026-03-21T13:29:09.210852305Z"} +2026/03/21 13:29:14 [transform_engine] {"stage_name":"transform_engine","events_processed":260,"events_dropped":0,"avg_latency_ms":235.40233337912352,"throughput_eps":0,"last_update":"2026-03-21T13:29:09.209743702Z"} +2026/03/21 13:29:14 ───────────────────────────────────────────────── +2026/03/21 13:29:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:29:19 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:29:14.069019757Z"} +2026/03/21 13:29:19 [metric_collector] {"stage_name":"metric_collector","events_processed":7824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1564.8,"last_update":"2026-03-21T13:29:14.069422979Z"} +2026/03/21 13:29:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:29:14.07806037Z"} +2026/03/21 13:29:19 [detection_layer] {"stage_name":"detection_layer","events_processed":260,"events_dropped":0,"avg_latency_ms":14.0995598329136,"throughput_eps":0,"last_update":"2026-03-21T13:29:14.210259266Z"} +2026/03/21 13:29:19 [transform_engine] {"stage_name":"transform_engine","events_processed":260,"events_dropped":0,"avg_latency_ms":235.40233337912352,"throughput_eps":0,"last_update":"2026-03-21T13:29:14.210322687Z"} +2026/03/21 13:29:19 ───────────────────────────────────────────────── +2026/03/21 13:29:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:29:24 [metric_collector] {"stage_name":"metric_collector","events_processed":7829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1565.8,"last_update":"2026-03-21T13:29:19.069454038Z"} +2026/03/21 13:29:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:29:19.078568773Z"} +2026/03/21 13:29:24 [detection_layer] {"stage_name":"detection_layer","events_processed":260,"events_dropped":0,"avg_latency_ms":14.0995598329136,"throughput_eps":0,"last_update":"2026-03-21T13:29:19.210822525Z"} +2026/03/21 13:29:24 [transform_engine] {"stage_name":"transform_engine","events_processed":261,"events_dropped":0,"avg_latency_ms":202.48478750329883,"throughput_eps":0,"last_update":"2026-03-21T13:29:19.280537533Z"} +2026/03/21 13:29:24 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:29:19.069075503Z"} +2026/03/21 13:29:24 ───────────────────────────────────────────────── +2026/03/21 13:29:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:29:29 [transform_engine] {"stage_name":"transform_engine","events_processed":261,"events_dropped":0,"avg_latency_ms":202.48478750329883,"throughput_eps":0,"last_update":"2026-03-21T13:29:24.209648252Z"} +2026/03/21 13:29:29 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:29:24.068480531Z"} +2026/03/21 13:29:29 [metric_collector] {"stage_name":"metric_collector","events_processed":7834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1566.8,"last_update":"2026-03-21T13:29:24.068794922Z"} +2026/03/21 13:29:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:29:24.077523278Z"} +2026/03/21 13:29:29 [detection_layer] {"stage_name":"detection_layer","events_processed":261,"events_dropped":0,"avg_latency_ms":14.41210066633088,"throughput_eps":0,"last_update":"2026-03-21T13:29:24.210785822Z"} +2026/03/21 13:29:29 ───────────────────────────────────────────────── +2026/03/21 13:29:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:29:34 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:29:29.068643696Z"} +2026/03/21 13:29:34 [metric_collector] {"stage_name":"metric_collector","events_processed":7839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1567.8,"last_update":"2026-03-21T13:29:29.069140548Z"} +2026/03/21 13:29:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:29:29.077688438Z"} +2026/03/21 13:29:34 [detection_layer] {"stage_name":"detection_layer","events_processed":261,"events_dropped":0,"avg_latency_ms":14.41210066633088,"throughput_eps":0,"last_update":"2026-03-21T13:29:29.209934043Z"} +2026/03/21 13:29:34 [transform_engine] {"stage_name":"transform_engine","events_processed":261,"events_dropped":0,"avg_latency_ms":202.48478750329883,"throughput_eps":0,"last_update":"2026-03-21T13:29:29.209944825Z"} +2026/03/21 13:29:34 ───────────────────────────────────────────────── +2026/03/21 13:29:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:29:39 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:29:34.068621363Z"} +2026/03/21 13:29:39 [metric_collector] {"stage_name":"metric_collector","events_processed":7844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1568.8,"last_update":"2026-03-21T13:29:34.068796649Z"} +2026/03/21 13:29:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:29:34.077357022Z"} +2026/03/21 13:29:39 [detection_layer] {"stage_name":"detection_layer","events_processed":261,"events_dropped":0,"avg_latency_ms":14.41210066633088,"throughput_eps":0,"last_update":"2026-03-21T13:29:34.21056396Z"} +2026/03/21 13:29:39 [transform_engine] {"stage_name":"transform_engine","events_processed":261,"events_dropped":0,"avg_latency_ms":202.48478750329883,"throughput_eps":0,"last_update":"2026-03-21T13:29:34.210576705Z"} +2026/03/21 13:29:39 ───────────────────────────────────────────────── +2026/03/21 13:29:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:29:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:29:39.077186533Z"} +2026/03/21 13:29:44 [detection_layer] {"stage_name":"detection_layer","events_processed":261,"events_dropped":0,"avg_latency_ms":14.41210066633088,"throughput_eps":0,"last_update":"2026-03-21T13:29:39.210432175Z"} +2026/03/21 13:29:44 [transform_engine] {"stage_name":"transform_engine","events_processed":261,"events_dropped":0,"avg_latency_ms":202.48478750329883,"throughput_eps":0,"last_update":"2026-03-21T13:29:39.210444278Z"} +2026/03/21 13:29:44 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:29:39.068540376Z"} +2026/03/21 13:29:44 [metric_collector] {"stage_name":"metric_collector","events_processed":7849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1569.8,"last_update":"2026-03-21T13:29:39.068890266Z"} +2026/03/21 13:29:44 ───────────────────────────────────────────────── +2026/03/21 13:29:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:29:49 [metric_collector] {"stage_name":"metric_collector","events_processed":7854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1570.8,"last_update":"2026-03-21T13:29:44.068918226Z"} +2026/03/21 13:29:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:29:44.077887253Z"} +2026/03/21 13:29:49 [detection_layer] {"stage_name":"detection_layer","events_processed":261,"events_dropped":0,"avg_latency_ms":14.41210066633088,"throughput_eps":0,"last_update":"2026-03-21T13:29:44.210102923Z"} +2026/03/21 13:29:49 [transform_engine] {"stage_name":"transform_engine","events_processed":261,"events_dropped":0,"avg_latency_ms":202.48478750329883,"throughput_eps":0,"last_update":"2026-03-21T13:29:44.210115226Z"} +2026/03/21 13:29:49 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:29:44.068596391Z"} +2026/03/21 13:29:49 ───────────────────────────────────────────────── +2026/03/21 13:29:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:29:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:29:49.078205732Z"} +2026/03/21 13:29:54 [detection_layer] {"stage_name":"detection_layer","events_processed":261,"events_dropped":0,"avg_latency_ms":14.41210066633088,"throughput_eps":0,"last_update":"2026-03-21T13:29:49.210460317Z"} +2026/03/21 13:29:54 [transform_engine] {"stage_name":"transform_engine","events_processed":262,"events_dropped":0,"avg_latency_ms":175.55484140263908,"throughput_eps":0,"last_update":"2026-03-21T13:29:49.278310303Z"} +2026/03/21 13:29:54 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:29:54.068141678Z"} +2026/03/21 13:29:54 [metric_collector] {"stage_name":"metric_collector","events_processed":7859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1571.8,"last_update":"2026-03-21T13:29:49.068809238Z"} +2026/03/21 13:29:54 ───────────────────────────────────────────────── +2026/03/21 13:29:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:29:59 [transform_engine] {"stage_name":"transform_engine","events_processed":262,"events_dropped":0,"avg_latency_ms":175.55484140263908,"throughput_eps":0,"last_update":"2026-03-21T13:29:54.210644498Z"} +2026/03/21 13:29:59 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:29:54.068141678Z"} +2026/03/21 13:29:59 [metric_collector] {"stage_name":"metric_collector","events_processed":7864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1572.8,"last_update":"2026-03-21T13:29:54.068507128Z"} +2026/03/21 13:29:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:29:54.077390159Z"} +2026/03/21 13:29:59 [detection_layer] {"stage_name":"detection_layer","events_processed":262,"events_dropped":0,"avg_latency_ms":14.595443533064707,"throughput_eps":0,"last_update":"2026-03-21T13:29:54.210631924Z"} +2026/03/21 13:29:59 ───────────────────────────────────────────────── +2026/03/21 13:30:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:30:04 [detection_layer] {"stage_name":"detection_layer","events_processed":262,"events_dropped":0,"avg_latency_ms":14.595443533064707,"throughput_eps":0,"last_update":"2026-03-21T13:29:59.20985971Z"} +2026/03/21 13:30:04 [transform_engine] {"stage_name":"transform_engine","events_processed":262,"events_dropped":0,"avg_latency_ms":175.55484140263908,"throughput_eps":0,"last_update":"2026-03-21T13:29:59.209868777Z"} +2026/03/21 13:30:04 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:29:59.068582957Z"} +2026/03/21 13:30:04 [metric_collector] {"stage_name":"metric_collector","events_processed":7869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1573.8,"last_update":"2026-03-21T13:29:59.068932997Z"} +2026/03/21 13:30:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:29:59.079651174Z"} +2026/03/21 13:30:04 ───────────────────────────────────────────────── +2026/03/21 13:30:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:30:09 [detection_layer] {"stage_name":"detection_layer","events_processed":262,"events_dropped":0,"avg_latency_ms":14.595443533064707,"throughput_eps":0,"last_update":"2026-03-21T13:30:04.210731894Z"} +2026/03/21 13:30:09 [transform_engine] {"stage_name":"transform_engine","events_processed":262,"events_dropped":0,"avg_latency_ms":175.55484140263908,"throughput_eps":0,"last_update":"2026-03-21T13:30:04.209640583Z"} +2026/03/21 13:30:09 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:30:04.068202752Z"} +2026/03/21 13:30:09 [metric_collector] {"stage_name":"metric_collector","events_processed":7874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1574.8,"last_update":"2026-03-21T13:30:04.068199035Z"} +2026/03/21 13:30:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:30:04.080441189Z"} +2026/03/21 13:30:09 ───────────────────────────────────────────────── +2026/03/21 13:30:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:30:14 [metric_collector] {"stage_name":"metric_collector","events_processed":7879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1575.8,"last_update":"2026-03-21T13:30:09.06884323Z"} +2026/03/21 13:30:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:30:09.077408433Z"} +2026/03/21 13:30:14 [detection_layer] {"stage_name":"detection_layer","events_processed":262,"events_dropped":0,"avg_latency_ms":14.595443533064707,"throughput_eps":0,"last_update":"2026-03-21T13:30:09.210622706Z"} +2026/03/21 13:30:14 [transform_engine] {"stage_name":"transform_engine","events_processed":262,"events_dropped":0,"avg_latency_ms":175.55484140263908,"throughput_eps":0,"last_update":"2026-03-21T13:30:09.210633597Z"} +2026/03/21 13:30:14 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:30:09.068521524Z"} +2026/03/21 13:30:14 ───────────────────────────────────────────────── +2026/03/21 13:30:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:30:19 [detection_layer] {"stage_name":"detection_layer","events_processed":262,"events_dropped":0,"avg_latency_ms":14.595443533064707,"throughput_eps":0,"last_update":"2026-03-21T13:30:14.210512482Z"} +2026/03/21 13:30:19 [transform_engine] {"stage_name":"transform_engine","events_processed":262,"events_dropped":0,"avg_latency_ms":175.55484140263908,"throughput_eps":0,"last_update":"2026-03-21T13:30:14.210522663Z"} +2026/03/21 13:30:19 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:30:14.06852596Z"} +2026/03/21 13:30:19 [metric_collector] {"stage_name":"metric_collector","events_processed":7884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1576.8,"last_update":"2026-03-21T13:30:14.068824522Z"} +2026/03/21 13:30:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:30:14.0772356Z"} +2026/03/21 13:30:19 ───────────────────────────────────────────────── +2026/03/21 13:30:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:30:24 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:30:19.068513092Z"} +2026/03/21 13:30:24 [metric_collector] {"stage_name":"metric_collector","events_processed":7889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1577.8,"last_update":"2026-03-21T13:30:19.068784963Z"} +2026/03/21 13:30:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:30:19.077834183Z"} +2026/03/21 13:30:24 [detection_layer] {"stage_name":"detection_layer","events_processed":262,"events_dropped":0,"avg_latency_ms":14.595443533064707,"throughput_eps":0,"last_update":"2026-03-21T13:30:19.210056216Z"} +2026/03/21 13:30:24 [transform_engine] {"stage_name":"transform_engine","events_processed":263,"events_dropped":0,"avg_latency_ms":150.1492457221113,"throughput_eps":0,"last_update":"2026-03-21T13:30:19.2586207Z"} +2026/03/21 13:30:24 ───────────────────────────────────────────────── +2026/03/21 13:30:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:30:29 [metric_collector] {"stage_name":"metric_collector","events_processed":7894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1578.8,"last_update":"2026-03-21T13:30:24.068684172Z"} +2026/03/21 13:30:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:30:24.077316433Z"} +2026/03/21 13:30:29 [detection_layer] {"stage_name":"detection_layer","events_processed":263,"events_dropped":0,"avg_latency_ms":14.762382826451766,"throughput_eps":0,"last_update":"2026-03-21T13:30:24.210557207Z"} +2026/03/21 13:30:29 [transform_engine] {"stage_name":"transform_engine","events_processed":263,"events_dropped":0,"avg_latency_ms":150.1492457221113,"throughput_eps":0,"last_update":"2026-03-21T13:30:24.210524595Z"} +2026/03/21 13:30:29 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:30:24.068148757Z"} +2026/03/21 13:30:29 ───────────────────────────────────────────────── +2026/03/21 13:30:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:30:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:30:29.077559106Z"} +2026/03/21 13:30:34 [detection_layer] {"stage_name":"detection_layer","events_processed":263,"events_dropped":0,"avg_latency_ms":14.762382826451766,"throughput_eps":0,"last_update":"2026-03-21T13:30:29.210797866Z"} +2026/03/21 13:30:34 [transform_engine] {"stage_name":"transform_engine","events_processed":263,"events_dropped":0,"avg_latency_ms":150.1492457221113,"throughput_eps":0,"last_update":"2026-03-21T13:30:29.209706987Z"} +2026/03/21 13:30:34 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:30:29.068718385Z"} +2026/03/21 13:30:34 [metric_collector] {"stage_name":"metric_collector","events_processed":7899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1579.8,"last_update":"2026-03-21T13:30:29.069040693Z"} +2026/03/21 13:30:34 ───────────────────────────────────────────────── +2026/03/21 13:30:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:30:39 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:30:34.068720277Z"} +2026/03/21 13:30:39 [metric_collector] {"stage_name":"metric_collector","events_processed":7904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1580.8,"last_update":"2026-03-21T13:30:34.069049557Z"} +2026/03/21 13:30:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:30:34.08075296Z"} +2026/03/21 13:30:39 [detection_layer] {"stage_name":"detection_layer","events_processed":263,"events_dropped":0,"avg_latency_ms":14.762382826451766,"throughput_eps":0,"last_update":"2026-03-21T13:30:34.209946484Z"} +2026/03/21 13:30:39 [transform_engine] {"stage_name":"transform_engine","events_processed":263,"events_dropped":0,"avg_latency_ms":150.1492457221113,"throughput_eps":0,"last_update":"2026-03-21T13:30:34.209986139Z"} +2026/03/21 13:30:39 ───────────────────────────────────────────────── +2026/03/21 13:30:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:30:44 [detection_layer] {"stage_name":"detection_layer","events_processed":263,"events_dropped":0,"avg_latency_ms":14.762382826451766,"throughput_eps":0,"last_update":"2026-03-21T13:30:39.209929212Z"} +2026/03/21 13:30:44 [transform_engine] {"stage_name":"transform_engine","events_processed":263,"events_dropped":0,"avg_latency_ms":150.1492457221113,"throughput_eps":0,"last_update":"2026-03-21T13:30:39.209904775Z"} +2026/03/21 13:30:44 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:30:39.068061315Z"} +2026/03/21 13:30:44 [metric_collector] {"stage_name":"metric_collector","events_processed":7909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1581.8,"last_update":"2026-03-21T13:30:39.068449167Z"} +2026/03/21 13:30:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:30:39.07768747Z"} +2026/03/21 13:30:44 ───────────────────────────────────────────────── +2026/03/21 13:30:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:30:49 [transform_engine] {"stage_name":"transform_engine","events_processed":263,"events_dropped":0,"avg_latency_ms":150.1492457221113,"throughput_eps":0,"last_update":"2026-03-21T13:30:44.210192605Z"} +2026/03/21 13:30:49 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:30:44.068192886Z"} +2026/03/21 13:30:49 [metric_collector] {"stage_name":"metric_collector","events_processed":7914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1582.8,"last_update":"2026-03-21T13:30:44.068517818Z"} +2026/03/21 13:30:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:30:44.078042358Z"} +2026/03/21 13:30:49 [detection_layer] {"stage_name":"detection_layer","events_processed":263,"events_dropped":0,"avg_latency_ms":14.762382826451766,"throughput_eps":0,"last_update":"2026-03-21T13:30:44.210231398Z"} +2026/03/21 13:30:49 ───────────────────────────────────────────────── +2026/03/21 13:30:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:30:54 [transform_engine] {"stage_name":"transform_engine","events_processed":264,"events_dropped":0,"avg_latency_ms":130.03946617768904,"throughput_eps":0,"last_update":"2026-03-21T13:30:49.259685142Z"} +2026/03/21 13:30:54 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:30:49.068402914Z"} +2026/03/21 13:30:54 [metric_collector] {"stage_name":"metric_collector","events_processed":7919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1583.8,"last_update":"2026-03-21T13:30:49.068786328Z"} +2026/03/21 13:30:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3170,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:30:49.077755264Z"} +2026/03/21 13:30:54 [detection_layer] {"stage_name":"detection_layer","events_processed":263,"events_dropped":0,"avg_latency_ms":14.762382826451766,"throughput_eps":0,"last_update":"2026-03-21T13:30:49.210022615Z"} +2026/03/21 13:30:54 ───────────────────────────────────────────────── +2026/03/21 13:30:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:30:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:30:54.077491001Z"} +2026/03/21 13:30:59 [detection_layer] {"stage_name":"detection_layer","events_processed":264,"events_dropped":0,"avg_latency_ms":14.984716461161414,"throughput_eps":0,"last_update":"2026-03-21T13:30:54.210697219Z"} +2026/03/21 13:30:59 [transform_engine] {"stage_name":"transform_engine","events_processed":264,"events_dropped":0,"avg_latency_ms":130.03946617768904,"throughput_eps":0,"last_update":"2026-03-21T13:30:54.210709854Z"} +2026/03/21 13:30:59 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:30:54.068528797Z"} +2026/03/21 13:30:59 [metric_collector] {"stage_name":"metric_collector","events_processed":7924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1584.8,"last_update":"2026-03-21T13:30:54.068900349Z"} +2026/03/21 13:30:59 ───────────────────────────────────────────────── +2026/03/21 13:31:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:31:04 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:30:59.068667776Z"} +2026/03/21 13:31:04 [metric_collector] {"stage_name":"metric_collector","events_processed":7929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1585.8,"last_update":"2026-03-21T13:30:59.069052173Z"} +2026/03/21 13:31:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:30:59.077654507Z"} +2026/03/21 13:31:04 [detection_layer] {"stage_name":"detection_layer","events_processed":264,"events_dropped":0,"avg_latency_ms":14.984716461161414,"throughput_eps":0,"last_update":"2026-03-21T13:30:59.210833564Z"} +2026/03/21 13:31:04 [transform_engine] {"stage_name":"transform_engine","events_processed":264,"events_dropped":0,"avg_latency_ms":130.03946617768904,"throughput_eps":0,"last_update":"2026-03-21T13:30:59.209715663Z"} +2026/03/21 13:31:04 ───────────────────────────────────────────────── +2026/03/21 13:31:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:31:09 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:31:04.068698632Z"} +2026/03/21 13:31:09 [metric_collector] {"stage_name":"metric_collector","events_processed":7934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1586.8,"last_update":"2026-03-21T13:31:04.068991282Z"} +2026/03/21 13:31:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:31:04.077195314Z"} +2026/03/21 13:31:09 [detection_layer] {"stage_name":"detection_layer","events_processed":264,"events_dropped":0,"avg_latency_ms":14.984716461161414,"throughput_eps":0,"last_update":"2026-03-21T13:31:04.210409158Z"} +2026/03/21 13:31:09 [transform_engine] {"stage_name":"transform_engine","events_processed":264,"events_dropped":0,"avg_latency_ms":130.03946617768904,"throughput_eps":0,"last_update":"2026-03-21T13:31:04.21044202Z"} +2026/03/21 13:31:09 ───────────────────────────────────────────────── +2026/03/21 13:31:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:31:14 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:31:09.068900289Z"} +2026/03/21 13:31:14 [metric_collector] {"stage_name":"metric_collector","events_processed":7939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1587.8,"last_update":"2026-03-21T13:31:09.069087989Z"} +2026/03/21 13:31:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:31:09.078093465Z"} +2026/03/21 13:31:14 [detection_layer] {"stage_name":"detection_layer","events_processed":264,"events_dropped":0,"avg_latency_ms":14.984716461161414,"throughput_eps":0,"last_update":"2026-03-21T13:31:09.210273059Z"} +2026/03/21 13:31:14 [transform_engine] {"stage_name":"transform_engine","events_processed":264,"events_dropped":0,"avg_latency_ms":130.03946617768904,"throughput_eps":0,"last_update":"2026-03-21T13:31:09.210322694Z"} +2026/03/21 13:31:14 ───────────────────────────────────────────────── +2026/03/21 13:31:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:31:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:31:14.077653551Z"} +2026/03/21 13:31:19 [detection_layer] {"stage_name":"detection_layer","events_processed":264,"events_dropped":0,"avg_latency_ms":14.984716461161414,"throughput_eps":0,"last_update":"2026-03-21T13:31:14.209869625Z"} +2026/03/21 13:31:19 [transform_engine] {"stage_name":"transform_engine","events_processed":264,"events_dropped":0,"avg_latency_ms":130.03946617768904,"throughput_eps":0,"last_update":"2026-03-21T13:31:14.209889313Z"} +2026/03/21 13:31:19 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:31:14.06855675Z"} +2026/03/21 13:31:19 [metric_collector] {"stage_name":"metric_collector","events_processed":7944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1588.8,"last_update":"2026-03-21T13:31:14.06892231Z"} +2026/03/21 13:31:19 ───────────────────────────────────────────────── +2026/03/21 13:31:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:31:24 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:31:19.068573867Z"} +2026/03/21 13:31:24 [metric_collector] {"stage_name":"metric_collector","events_processed":7949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1589.8,"last_update":"2026-03-21T13:31:19.068939356Z"} +2026/03/21 13:31:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:31:19.078199821Z"} +2026/03/21 13:31:24 [detection_layer] {"stage_name":"detection_layer","events_processed":264,"events_dropped":0,"avg_latency_ms":14.984716461161414,"throughput_eps":0,"last_update":"2026-03-21T13:31:19.210458898Z"} +2026/03/21 13:31:24 [transform_engine] {"stage_name":"transform_engine","events_processed":265,"events_dropped":0,"avg_latency_ms":117.95351854215123,"throughput_eps":0,"last_update":"2026-03-21T13:31:19.28004464Z"} +2026/03/21 13:31:24 ───────────────────────────────────────────────── +2026/03/21 13:31:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:31:29 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:31:24.06881038Z"} +2026/03/21 13:31:29 [metric_collector] {"stage_name":"metric_collector","events_processed":7954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1590.8,"last_update":"2026-03-21T13:31:24.069158086Z"} +2026/03/21 13:31:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:31:24.078417759Z"} +2026/03/21 13:31:29 [detection_layer] {"stage_name":"detection_layer","events_processed":265,"events_dropped":0,"avg_latency_ms":15.78142816892913,"throughput_eps":0,"last_update":"2026-03-21T13:31:24.210698277Z"} +2026/03/21 13:31:29 [transform_engine] {"stage_name":"transform_engine","events_processed":265,"events_dropped":0,"avg_latency_ms":117.95351854215123,"throughput_eps":0,"last_update":"2026-03-21T13:31:24.210669241Z"} +2026/03/21 13:31:29 ───────────────────────────────────────────────── +2026/03/21 13:31:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:31:34 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:31:29.068544033Z"} +2026/03/21 13:31:34 [metric_collector] {"stage_name":"metric_collector","events_processed":7959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1591.8,"last_update":"2026-03-21T13:31:29.068930262Z"} +2026/03/21 13:31:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:31:29.077775081Z"} +2026/03/21 13:31:34 [detection_layer] {"stage_name":"detection_layer","events_processed":265,"events_dropped":0,"avg_latency_ms":15.78142816892913,"throughput_eps":0,"last_update":"2026-03-21T13:31:29.210190236Z"} +2026/03/21 13:31:34 [transform_engine] {"stage_name":"transform_engine","events_processed":265,"events_dropped":0,"avg_latency_ms":117.95351854215123,"throughput_eps":0,"last_update":"2026-03-21T13:31:29.210229151Z"} +2026/03/21 13:31:34 ───────────────────────────────────────────────── +2026/03/21 13:31:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:31:39 [transform_engine] {"stage_name":"transform_engine","events_processed":265,"events_dropped":0,"avg_latency_ms":117.95351854215123,"throughput_eps":0,"last_update":"2026-03-21T13:31:34.209719805Z"} +2026/03/21 13:31:39 [log_collector] {"stage_name":"log_collector","events_processed":13508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.6,"last_update":"2026-03-21T13:31:39.068106352Z"} +2026/03/21 13:31:39 [metric_collector] {"stage_name":"metric_collector","events_processed":7964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1592.8,"last_update":"2026-03-21T13:31:34.068842545Z"} +2026/03/21 13:31:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:31:34.077640804Z"} +2026/03/21 13:31:39 [detection_layer] {"stage_name":"detection_layer","events_processed":265,"events_dropped":0,"avg_latency_ms":15.78142816892913,"throughput_eps":0,"last_update":"2026-03-21T13:31:34.210858386Z"} +2026/03/21 13:31:39 ───────────────────────────────────────────────── +Saved state: 16 clusters, 13509 messages, reason: none +2026/03/21 13:31:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:31:44 [transform_engine] {"stage_name":"transform_engine","events_processed":265,"events_dropped":0,"avg_latency_ms":117.95351854215123,"throughput_eps":0,"last_update":"2026-03-21T13:31:39.210128125Z"} +2026/03/21 13:31:44 [log_collector] {"stage_name":"log_collector","events_processed":13510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702,"last_update":"2026-03-21T13:31:44.068150029Z"} +2026/03/21 13:31:44 [metric_collector] {"stage_name":"metric_collector","events_processed":7969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1593.8,"last_update":"2026-03-21T13:31:39.068574749Z"} +2026/03/21 13:31:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:31:39.077896892Z"} +2026/03/21 13:31:44 [detection_layer] {"stage_name":"detection_layer","events_processed":265,"events_dropped":0,"avg_latency_ms":15.78142816892913,"throughput_eps":0,"last_update":"2026-03-21T13:31:39.210153143Z"} +2026/03/21 13:31:44 ───────────────────────────────────────────────── +2026/03/21 13:31:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:31:49 [log_collector] {"stage_name":"log_collector","events_processed":13510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702,"last_update":"2026-03-21T13:31:44.068150029Z"} +2026/03/21 13:31:49 [metric_collector] {"stage_name":"metric_collector","events_processed":7974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1594.8,"last_update":"2026-03-21T13:31:44.068552971Z"} +2026/03/21 13:31:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:31:44.077739094Z"} +2026/03/21 13:31:49 [detection_layer] {"stage_name":"detection_layer","events_processed":265,"events_dropped":0,"avg_latency_ms":15.78142816892913,"throughput_eps":0,"last_update":"2026-03-21T13:31:44.209939378Z"} +2026/03/21 13:31:49 [transform_engine] {"stage_name":"transform_engine","events_processed":265,"events_dropped":0,"avg_latency_ms":117.95351854215123,"throughput_eps":0,"last_update":"2026-03-21T13:31:44.209905163Z"} +2026/03/21 13:31:49 ───────────────────────────────────────────────── +2026/03/21 13:31:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:31:54 [log_collector] {"stage_name":"log_collector","events_processed":13526,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2705.2,"last_update":"2026-03-21T13:31:49.068678268Z"} +2026/03/21 13:31:54 [metric_collector] {"stage_name":"metric_collector","events_processed":7979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1595.8,"last_update":"2026-03-21T13:31:49.068900122Z"} +2026/03/21 13:31:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:31:49.084243486Z"} +2026/03/21 13:31:54 [detection_layer] {"stage_name":"detection_layer","events_processed":265,"events_dropped":0,"avg_latency_ms":15.78142816892913,"throughput_eps":0,"last_update":"2026-03-21T13:31:49.210855188Z"} +2026/03/21 13:31:54 [transform_engine] {"stage_name":"transform_engine","events_processed":266,"events_dropped":0,"avg_latency_ms":114.035627833721,"throughput_eps":0,"last_update":"2026-03-21T13:31:49.308124847Z"} +2026/03/21 13:31:54 ───────────────────────────────────────────────── +2026/03/21 13:31:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:31:59 [log_collector] {"stage_name":"log_collector","events_processed":13528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2705.6,"last_update":"2026-03-21T13:31:54.068567657Z"} +2026/03/21 13:31:59 [metric_collector] {"stage_name":"metric_collector","events_processed":7984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1596.8,"last_update":"2026-03-21T13:31:54.068793049Z"} +2026/03/21 13:31:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:31:54.07532064Z"} +2026/03/21 13:31:59 [detection_layer] {"stage_name":"detection_layer","events_processed":266,"events_dropped":0,"avg_latency_ms":14.992371935143304,"throughput_eps":0,"last_update":"2026-03-21T13:31:54.210524507Z"} +2026/03/21 13:31:59 [transform_engine] {"stage_name":"transform_engine","events_processed":266,"events_dropped":0,"avg_latency_ms":114.035627833721,"throughput_eps":0,"last_update":"2026-03-21T13:31:54.210533684Z"} +2026/03/21 13:31:59 ───────────────────────────────────────────────── +2026/03/21 13:32:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:32:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:31:59.075521031Z"} +2026/03/21 13:32:04 [detection_layer] {"stage_name":"detection_layer","events_processed":266,"events_dropped":0,"avg_latency_ms":14.992371935143304,"throughput_eps":0,"last_update":"2026-03-21T13:31:59.210800392Z"} +2026/03/21 13:32:04 [transform_engine] {"stage_name":"transform_engine","events_processed":266,"events_dropped":0,"avg_latency_ms":114.035627833721,"throughput_eps":0,"last_update":"2026-03-21T13:31:59.209696808Z"} +2026/03/21 13:32:04 [log_collector] {"stage_name":"log_collector","events_processed":13529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2705.8,"last_update":"2026-03-21T13:31:59.068537547Z"} +2026/03/21 13:32:04 [metric_collector] {"stage_name":"metric_collector","events_processed":7989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1597.8,"last_update":"2026-03-21T13:31:59.068761155Z"} +2026/03/21 13:32:04 ───────────────────────────────────────────────── +2026/03/21 13:32:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:32:09 [log_collector] {"stage_name":"log_collector","events_processed":13529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2705.8,"last_update":"2026-03-21T13:32:04.068510792Z"} +2026/03/21 13:32:09 [metric_collector] {"stage_name":"metric_collector","events_processed":7994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1598.8,"last_update":"2026-03-21T13:32:04.068757044Z"} +2026/03/21 13:32:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:32:04.07504706Z"} +2026/03/21 13:32:09 [detection_layer] {"stage_name":"detection_layer","events_processed":266,"events_dropped":0,"avg_latency_ms":14.992371935143304,"throughput_eps":0,"last_update":"2026-03-21T13:32:04.210434449Z"} +2026/03/21 13:32:09 [transform_engine] {"stage_name":"transform_engine","events_processed":266,"events_dropped":0,"avg_latency_ms":114.035627833721,"throughput_eps":0,"last_update":"2026-03-21T13:32:04.210448345Z"} +2026/03/21 13:32:09 ───────────────────────────────────────────────── +2026/03/21 13:32:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:32:14 [log_collector] {"stage_name":"log_collector","events_processed":13529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2705.8,"last_update":"2026-03-21T13:32:09.068086764Z"} +2026/03/21 13:32:14 [metric_collector] {"stage_name":"metric_collector","events_processed":7999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1599.8,"last_update":"2026-03-21T13:32:09.068287649Z"} +2026/03/21 13:32:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:32:09.077239643Z"} +2026/03/21 13:32:14 [detection_layer] {"stage_name":"detection_layer","events_processed":266,"events_dropped":0,"avg_latency_ms":14.992371935143304,"throughput_eps":0,"last_update":"2026-03-21T13:32:09.210509064Z"} +2026/03/21 13:32:14 [transform_engine] {"stage_name":"transform_engine","events_processed":266,"events_dropped":0,"avg_latency_ms":114.035627833721,"throughput_eps":0,"last_update":"2026-03-21T13:32:09.210496431Z"} +2026/03/21 13:32:14 ───────────────────────────────────────────────── +2026/03/21 13:32:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:32:19 [metric_collector] {"stage_name":"metric_collector","events_processed":8004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1600.8,"last_update":"2026-03-21T13:32:14.068956414Z"} +2026/03/21 13:32:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:32:14.075609665Z"} +2026/03/21 13:32:19 [detection_layer] {"stage_name":"detection_layer","events_processed":266,"events_dropped":0,"avg_latency_ms":14.992371935143304,"throughput_eps":0,"last_update":"2026-03-21T13:32:14.210837558Z"} +2026/03/21 13:32:19 [transform_engine] {"stage_name":"transform_engine","events_processed":266,"events_dropped":0,"avg_latency_ms":114.035627833721,"throughput_eps":0,"last_update":"2026-03-21T13:32:14.209748663Z"} +2026/03/21 13:32:19 [log_collector] {"stage_name":"log_collector","events_processed":13529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2705.8,"last_update":"2026-03-21T13:32:14.068768403Z"} +2026/03/21 13:32:19 ───────────────────────────────────────────────── +2026/03/21 13:32:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:32:24 [log_collector] {"stage_name":"log_collector","events_processed":13529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2705.8,"last_update":"2026-03-21T13:32:19.068562399Z"} +2026/03/21 13:32:24 [metric_collector] {"stage_name":"metric_collector","events_processed":8009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1601.8,"last_update":"2026-03-21T13:32:19.06891837Z"} +2026/03/21 13:32:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3206,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:32:19.075677595Z"} +2026/03/21 13:32:24 [detection_layer] {"stage_name":"detection_layer","events_processed":266,"events_dropped":0,"avg_latency_ms":14.992371935143304,"throughput_eps":0,"last_update":"2026-03-21T13:32:19.209894482Z"} +2026/03/21 13:32:24 [transform_engine] {"stage_name":"transform_engine","events_processed":267,"events_dropped":0,"avg_latency_ms":110.8751874669768,"throughput_eps":0,"last_update":"2026-03-21T13:32:19.308142476Z"} +2026/03/21 13:32:24 ───────────────────────────────────────────────── +2026/03/21 13:32:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:32:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:32:24.075843933Z"} +2026/03/21 13:32:29 [detection_layer] {"stage_name":"detection_layer","events_processed":267,"events_dropped":0,"avg_latency_ms":14.695858148114645,"throughput_eps":0,"last_update":"2026-03-21T13:32:24.210094916Z"} +2026/03/21 13:32:29 [transform_engine] {"stage_name":"transform_engine","events_processed":267,"events_dropped":0,"avg_latency_ms":110.8751874669768,"throughput_eps":0,"last_update":"2026-03-21T13:32:24.210045251Z"} +2026/03/21 13:32:29 [log_collector] {"stage_name":"log_collector","events_processed":13529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2705.8,"last_update":"2026-03-21T13:32:24.068877441Z"} +2026/03/21 13:32:29 [metric_collector] {"stage_name":"metric_collector","events_processed":8014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1602.8,"last_update":"2026-03-21T13:32:24.068964198Z"} +2026/03/21 13:32:29 ───────────────────────────────────────────────── +2026/03/21 13:32:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:32:34 [metric_collector] {"stage_name":"metric_collector","events_processed":8019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1603.8,"last_update":"2026-03-21T13:32:29.068942981Z"} +2026/03/21 13:32:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3210,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:32:29.075585372Z"} +2026/03/21 13:32:34 [detection_layer] {"stage_name":"detection_layer","events_processed":267,"events_dropped":0,"avg_latency_ms":14.695858148114645,"throughput_eps":0,"last_update":"2026-03-21T13:32:29.210838144Z"} +2026/03/21 13:32:34 [transform_engine] {"stage_name":"transform_engine","events_processed":267,"events_dropped":0,"avg_latency_ms":110.8751874669768,"throughput_eps":0,"last_update":"2026-03-21T13:32:29.209703721Z"} +2026/03/21 13:32:34 [log_collector] {"stage_name":"log_collector","events_processed":13529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2705.8,"last_update":"2026-03-21T13:32:29.068710115Z"} +2026/03/21 13:32:34 ───────────────────────────────────────────────── +2026/03/21 13:32:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:32:39 [log_collector] {"stage_name":"log_collector","events_processed":13529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2705.8,"last_update":"2026-03-21T13:32:34.068054882Z"} +2026/03/21 13:32:39 [metric_collector] {"stage_name":"metric_collector","events_processed":8024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1604.8,"last_update":"2026-03-21T13:32:34.068337052Z"} +2026/03/21 13:32:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:32:34.075359981Z"} +2026/03/21 13:32:39 [detection_layer] {"stage_name":"detection_layer","events_processed":267,"events_dropped":0,"avg_latency_ms":14.695858148114645,"throughput_eps":0,"last_update":"2026-03-21T13:32:34.210492111Z"} +2026/03/21 13:32:39 [transform_engine] {"stage_name":"transform_engine","events_processed":267,"events_dropped":0,"avg_latency_ms":110.8751874669768,"throughput_eps":0,"last_update":"2026-03-21T13:32:34.210513903Z"} +2026/03/21 13:32:39 ───────────────────────────────────────────────── +2026/03/21 13:32:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:32:44 [log_collector] {"stage_name":"log_collector","events_processed":13529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2705.8,"last_update":"2026-03-21T13:32:39.068563838Z"} +2026/03/21 13:32:44 [metric_collector] {"stage_name":"metric_collector","events_processed":8029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1605.8,"last_update":"2026-03-21T13:32:39.068803428Z"} +2026/03/21 13:32:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:32:39.076247664Z"} +2026/03/21 13:32:44 [detection_layer] {"stage_name":"detection_layer","events_processed":267,"events_dropped":0,"avg_latency_ms":14.695858148114645,"throughput_eps":0,"last_update":"2026-03-21T13:32:39.210420056Z"} +2026/03/21 13:32:44 [transform_engine] {"stage_name":"transform_engine","events_processed":267,"events_dropped":0,"avg_latency_ms":110.8751874669768,"throughput_eps":0,"last_update":"2026-03-21T13:32:39.21045836Z"} +2026/03/21 13:32:44 ───────────────────────────────────────────────── +Saved state: 16 clusters, 13530 messages, reason: none +2026/03/21 13:32:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:32:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:32:44.075550366Z"} +2026/03/21 13:32:49 [detection_layer] {"stage_name":"detection_layer","events_processed":267,"events_dropped":0,"avg_latency_ms":14.695858148114645,"throughput_eps":0,"last_update":"2026-03-21T13:32:44.210803989Z"} +2026/03/21 13:32:49 [transform_engine] {"stage_name":"transform_engine","events_processed":267,"events_dropped":0,"avg_latency_ms":110.8751874669768,"throughput_eps":0,"last_update":"2026-03-21T13:32:44.209706518Z"} +2026/03/21 13:32:49 [log_collector] {"stage_name":"log_collector","events_processed":13529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2705.8,"last_update":"2026-03-21T13:32:44.068523468Z"} +2026/03/21 13:32:49 [metric_collector] {"stage_name":"metric_collector","events_processed":8034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1606.8,"last_update":"2026-03-21T13:32:44.068856035Z"} +2026/03/21 13:32:49 ───────────────────────────────────────────────── +2026/03/21 13:32:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:32:54 [log_collector] {"stage_name":"log_collector","events_processed":13536,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2707.2,"last_update":"2026-03-21T13:32:49.068884033Z"} +2026/03/21 13:32:54 [metric_collector] {"stage_name":"metric_collector","events_processed":8039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1607.8,"last_update":"2026-03-21T13:32:49.069191181Z"} +2026/03/21 13:32:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:32:49.076432519Z"} +2026/03/21 13:32:54 [detection_layer] {"stage_name":"detection_layer","events_processed":267,"events_dropped":0,"avg_latency_ms":14.695858148114645,"throughput_eps":0,"last_update":"2026-03-21T13:32:49.210643767Z"} +2026/03/21 13:32:54 [transform_engine] {"stage_name":"transform_engine","events_processed":268,"events_dropped":0,"avg_latency_ms":108.61861377358144,"throughput_eps":0,"last_update":"2026-03-21T13:32:49.310276393Z"} +2026/03/21 13:32:54 ───────────────────────────────────────────────── +2026/03/21 13:32:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:32:59 [log_collector] {"stage_name":"log_collector","events_processed":13536,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2707.2,"last_update":"2026-03-21T13:32:54.068104001Z"} +2026/03/21 13:32:59 [metric_collector] {"stage_name":"metric_collector","events_processed":8044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1608.8,"last_update":"2026-03-21T13:32:54.068530849Z"} +2026/03/21 13:32:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:32:54.077481199Z"} +2026/03/21 13:32:59 [detection_layer] {"stage_name":"detection_layer","events_processed":268,"events_dropped":0,"avg_latency_ms":14.488520118491717,"throughput_eps":0,"last_update":"2026-03-21T13:32:54.21075956Z"} +2026/03/21 13:32:59 [transform_engine] {"stage_name":"transform_engine","events_processed":268,"events_dropped":0,"avg_latency_ms":108.61861377358144,"throughput_eps":0,"last_update":"2026-03-21T13:32:54.20963186Z"} +2026/03/21 13:32:59 ───────────────────────────────────────────────── +2026/03/21 13:33:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:33:04 [transform_engine] {"stage_name":"transform_engine","events_processed":268,"events_dropped":0,"avg_latency_ms":108.61861377358144,"throughput_eps":0,"last_update":"2026-03-21T13:32:59.209674569Z"} +2026/03/21 13:33:04 [log_collector] {"stage_name":"log_collector","events_processed":13538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2707.6,"last_update":"2026-03-21T13:32:59.068553578Z"} +2026/03/21 13:33:04 [metric_collector] {"stage_name":"metric_collector","events_processed":8049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1609.8,"last_update":"2026-03-21T13:32:59.068843504Z"} +2026/03/21 13:33:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3222,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:32:59.077597318Z"} +2026/03/21 13:33:04 [detection_layer] {"stage_name":"detection_layer","events_processed":268,"events_dropped":0,"avg_latency_ms":14.488520118491717,"throughput_eps":0,"last_update":"2026-03-21T13:32:59.210774235Z"} +2026/03/21 13:33:04 ───────────────────────────────────────────────── +2026/03/21 13:33:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:33:09 [log_collector] {"stage_name":"log_collector","events_processed":13541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2708.2,"last_update":"2026-03-21T13:33:04.068747529Z"} +2026/03/21 13:33:09 [metric_collector] {"stage_name":"metric_collector","events_processed":8054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1610.8,"last_update":"2026-03-21T13:33:04.069003089Z"} +2026/03/21 13:33:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:33:04.078620998Z"} +2026/03/21 13:33:09 [detection_layer] {"stage_name":"detection_layer","events_processed":268,"events_dropped":0,"avg_latency_ms":14.488520118491717,"throughput_eps":0,"last_update":"2026-03-21T13:33:04.210879496Z"} +2026/03/21 13:33:09 [transform_engine] {"stage_name":"transform_engine","events_processed":268,"events_dropped":0,"avg_latency_ms":108.61861377358144,"throughput_eps":0,"last_update":"2026-03-21T13:33:04.209764621Z"} +2026/03/21 13:33:09 ───────────────────────────────────────────────── +2026/03/21 13:33:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:33:14 [log_collector] {"stage_name":"log_collector","events_processed":13541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2708.2,"last_update":"2026-03-21T13:33:09.068536292Z"} +2026/03/21 13:33:14 [metric_collector] {"stage_name":"metric_collector","events_processed":8059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1611.8,"last_update":"2026-03-21T13:33:09.068860503Z"} +2026/03/21 13:33:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:33:09.074852648Z"} +2026/03/21 13:33:14 [detection_layer] {"stage_name":"detection_layer","events_processed":268,"events_dropped":0,"avg_latency_ms":14.488520118491717,"throughput_eps":0,"last_update":"2026-03-21T13:33:09.210139125Z"} +2026/03/21 13:33:14 [transform_engine] {"stage_name":"transform_engine","events_processed":268,"events_dropped":0,"avg_latency_ms":108.61861377358144,"throughput_eps":0,"last_update":"2026-03-21T13:33:09.2100786Z"} +2026/03/21 13:33:14 ───────────────────────────────────────────────── +2026/03/21 13:33:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:33:19 [log_collector] {"stage_name":"log_collector","events_processed":13541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2708.2,"last_update":"2026-03-21T13:33:14.068553665Z"} +2026/03/21 13:33:19 [metric_collector] {"stage_name":"metric_collector","events_processed":8064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1612.8,"last_update":"2026-03-21T13:33:14.068917673Z"} +2026/03/21 13:33:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:33:14.077027474Z"} +2026/03/21 13:33:19 [detection_layer] {"stage_name":"detection_layer","events_processed":268,"events_dropped":0,"avg_latency_ms":14.488520118491717,"throughput_eps":0,"last_update":"2026-03-21T13:33:14.210265939Z"} +2026/03/21 13:33:19 [transform_engine] {"stage_name":"transform_engine","events_processed":268,"events_dropped":0,"avg_latency_ms":108.61861377358144,"throughput_eps":0,"last_update":"2026-03-21T13:33:14.210248435Z"} +2026/03/21 13:33:19 ───────────────────────────────────────────────── +2026/03/21 13:33:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:33:24 [detection_layer] {"stage_name":"detection_layer","events_processed":268,"events_dropped":0,"avg_latency_ms":14.488520118491717,"throughput_eps":0,"last_update":"2026-03-21T13:33:19.210055191Z"} +2026/03/21 13:33:24 [transform_engine] {"stage_name":"transform_engine","events_processed":269,"events_dropped":0,"avg_latency_ms":108.78398701886516,"throughput_eps":0,"last_update":"2026-03-21T13:33:19.319460183Z"} +2026/03/21 13:33:24 [log_collector] {"stage_name":"log_collector","events_processed":13541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2708.2,"last_update":"2026-03-21T13:33:19.068103279Z"} +2026/03/21 13:33:24 [metric_collector] {"stage_name":"metric_collector","events_processed":8069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1613.8,"last_update":"2026-03-21T13:33:19.068450945Z"} +2026/03/21 13:33:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:33:19.076793482Z"} +2026/03/21 13:33:24 ───────────────────────────────────────────────── +2026/03/21 13:33:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:33:29 [transform_engine] {"stage_name":"transform_engine","events_processed":269,"events_dropped":0,"avg_latency_ms":108.78398701886516,"throughput_eps":0,"last_update":"2026-03-21T13:33:24.210005419Z"} +2026/03/21 13:33:29 [log_collector] {"stage_name":"log_collector","events_processed":13541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2708.2,"last_update":"2026-03-21T13:33:24.068557702Z"} +2026/03/21 13:33:29 [metric_collector] {"stage_name":"metric_collector","events_processed":8074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1614.8,"last_update":"2026-03-21T13:33:24.068860131Z"} +2026/03/21 13:33:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:33:24.077750107Z"} +2026/03/21 13:33:29 [detection_layer] {"stage_name":"detection_layer","events_processed":269,"events_dropped":0,"avg_latency_ms":14.963867894793376,"throughput_eps":0,"last_update":"2026-03-21T13:33:24.209980661Z"} +2026/03/21 13:33:29 ───────────────────────────────────────────────── +2026/03/21 13:33:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:33:34 [metric_collector] {"stage_name":"metric_collector","events_processed":8079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1615.8,"last_update":"2026-03-21T13:33:29.068766376Z"} +2026/03/21 13:33:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:33:29.075902774Z"} +2026/03/21 13:33:34 [detection_layer] {"stage_name":"detection_layer","events_processed":269,"events_dropped":0,"avg_latency_ms":14.963867894793376,"throughput_eps":0,"last_update":"2026-03-21T13:33:29.21011341Z"} +2026/03/21 13:33:34 [transform_engine] {"stage_name":"transform_engine","events_processed":269,"events_dropped":0,"avg_latency_ms":108.78398701886516,"throughput_eps":0,"last_update":"2026-03-21T13:33:29.210124421Z"} +2026/03/21 13:33:34 [log_collector] {"stage_name":"log_collector","events_processed":13541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2708.2,"last_update":"2026-03-21T13:33:29.068575621Z"} +2026/03/21 13:33:34 ───────────────────────────────────────────────── +2026/03/21 13:33:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:33:39 [metric_collector] {"stage_name":"metric_collector","events_processed":8084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1616.8,"last_update":"2026-03-21T13:33:34.068340973Z"} +2026/03/21 13:33:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:33:34.075133041Z"} +2026/03/21 13:33:39 [detection_layer] {"stage_name":"detection_layer","events_processed":269,"events_dropped":0,"avg_latency_ms":14.963867894793376,"throughput_eps":0,"last_update":"2026-03-21T13:33:34.210363191Z"} +2026/03/21 13:33:39 [transform_engine] {"stage_name":"transform_engine","events_processed":269,"events_dropped":0,"avg_latency_ms":108.78398701886516,"throughput_eps":0,"last_update":"2026-03-21T13:33:34.21037843Z"} +2026/03/21 13:33:39 [log_collector] {"stage_name":"log_collector","events_processed":13541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2708.2,"last_update":"2026-03-21T13:33:34.068066076Z"} +2026/03/21 13:33:39 ───────────────────────────────────────────────── +2026/03/21 13:33:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:33:44 [log_collector] {"stage_name":"log_collector","events_processed":13541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2708.2,"last_update":"2026-03-21T13:33:39.068446872Z"} +2026/03/21 13:33:44 [metric_collector] {"stage_name":"metric_collector","events_processed":8089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1617.8,"last_update":"2026-03-21T13:33:39.068862027Z"} +2026/03/21 13:33:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:33:39.075847274Z"} +2026/03/21 13:33:44 [detection_layer] {"stage_name":"detection_layer","events_processed":269,"events_dropped":0,"avg_latency_ms":14.963867894793376,"throughput_eps":0,"last_update":"2026-03-21T13:33:39.210062721Z"} +2026/03/21 13:33:44 [transform_engine] {"stage_name":"transform_engine","events_processed":269,"events_dropped":0,"avg_latency_ms":108.78398701886516,"throughput_eps":0,"last_update":"2026-03-21T13:33:39.210034407Z"} +2026/03/21 13:33:44 ───────────────────────────────────────────────── +2026/03/21 13:33:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:33:49 [transform_engine] {"stage_name":"transform_engine","events_processed":269,"events_dropped":0,"avg_latency_ms":108.78398701886516,"throughput_eps":0,"last_update":"2026-03-21T13:33:44.210085736Z"} +2026/03/21 13:33:49 [log_collector] {"stage_name":"log_collector","events_processed":13541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2708.2,"last_update":"2026-03-21T13:33:44.068077405Z"} +2026/03/21 13:33:49 [metric_collector] {"stage_name":"metric_collector","events_processed":8094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1618.8,"last_update":"2026-03-21T13:33:44.068336402Z"} +2026/03/21 13:33:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:33:44.075855792Z"} +2026/03/21 13:33:49 [detection_layer] {"stage_name":"detection_layer","events_processed":269,"events_dropped":0,"avg_latency_ms":14.963867894793376,"throughput_eps":0,"last_update":"2026-03-21T13:33:44.210118619Z"} +2026/03/21 13:33:49 ───────────────────────────────────────────────── +2026/03/21 13:33:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:33:54 [metric_collector] {"stage_name":"metric_collector","events_processed":8099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1619.8,"last_update":"2026-03-21T13:33:49.069059663Z"} +2026/03/21 13:33:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:33:49.07680221Z"} +2026/03/21 13:33:54 [detection_layer] {"stage_name":"detection_layer","events_processed":269,"events_dropped":0,"avg_latency_ms":14.963867894793376,"throughput_eps":0,"last_update":"2026-03-21T13:33:49.210954035Z"} +2026/03/21 13:33:54 [transform_engine] {"stage_name":"transform_engine","events_processed":270,"events_dropped":0,"avg_latency_ms":100.34473221509214,"throughput_eps":0,"last_update":"2026-03-21T13:33:49.276384241Z"} +2026/03/21 13:33:54 [log_collector] {"stage_name":"log_collector","events_processed":13541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2708.2,"last_update":"2026-03-21T13:33:49.068820965Z"} +2026/03/21 13:33:54 ───────────────────────────────────────────────── +2026/03/21 13:33:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:33:59 [metric_collector] {"stage_name":"metric_collector","events_processed":8104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1620.8,"last_update":"2026-03-21T13:33:54.069124334Z"} +2026/03/21 13:33:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:33:54.07729407Z"} +2026/03/21 13:33:59 [detection_layer] {"stage_name":"detection_layer","events_processed":270,"events_dropped":0,"avg_latency_ms":15.068506315834702,"throughput_eps":0,"last_update":"2026-03-21T13:33:54.211297722Z"} +2026/03/21 13:33:59 [transform_engine] {"stage_name":"transform_engine","events_processed":270,"events_dropped":0,"avg_latency_ms":100.34473221509214,"throughput_eps":0,"last_update":"2026-03-21T13:33:54.211282132Z"} +2026/03/21 13:33:59 [log_collector] {"stage_name":"log_collector","events_processed":13541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2708.2,"last_update":"2026-03-21T13:33:54.068831464Z"} +2026/03/21 13:33:59 ───────────────────────────────────────────────── +2026/03/21 13:34:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:34:04 [log_collector] {"stage_name":"log_collector","events_processed":13541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2708.2,"last_update":"2026-03-21T13:33:59.068635772Z"} +2026/03/21 13:34:04 [metric_collector] {"stage_name":"metric_collector","events_processed":8109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1621.8,"last_update":"2026-03-21T13:33:59.069089881Z"} +2026/03/21 13:34:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3246,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:33:59.078099236Z"} +2026/03/21 13:34:04 [detection_layer] {"stage_name":"detection_layer","events_processed":270,"events_dropped":0,"avg_latency_ms":15.068506315834702,"throughput_eps":0,"last_update":"2026-03-21T13:33:59.210313912Z"} +2026/03/21 13:34:04 [transform_engine] {"stage_name":"transform_engine","events_processed":270,"events_dropped":0,"avg_latency_ms":100.34473221509214,"throughput_eps":0,"last_update":"2026-03-21T13:33:59.210335562Z"} +2026/03/21 13:34:04 ───────────────────────────────────────────────── +2026/03/21 13:34:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:34:09 [log_collector] {"stage_name":"log_collector","events_processed":13541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2708.2,"last_update":"2026-03-21T13:34:04.068565866Z"} +2026/03/21 13:34:09 [metric_collector] {"stage_name":"metric_collector","events_processed":8114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1622.8,"last_update":"2026-03-21T13:34:04.068938861Z"} +2026/03/21 13:34:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:34:04.077859946Z"} +2026/03/21 13:34:09 [detection_layer] {"stage_name":"detection_layer","events_processed":270,"events_dropped":0,"avg_latency_ms":15.068506315834702,"throughput_eps":0,"last_update":"2026-03-21T13:34:04.209985842Z"} +2026/03/21 13:34:09 [transform_engine] {"stage_name":"transform_engine","events_processed":270,"events_dropped":0,"avg_latency_ms":100.34473221509214,"throughput_eps":0,"last_update":"2026-03-21T13:34:04.210010158Z"} +2026/03/21 13:34:09 ───────────────────────────────────────────────── +Saved state: 16 clusters, 13542 messages, reason: none +2026/03/21 13:34:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:34:14 [transform_engine] {"stage_name":"transform_engine","events_processed":270,"events_dropped":0,"avg_latency_ms":100.34473221509214,"throughput_eps":0,"last_update":"2026-03-21T13:34:09.210494549Z"} +2026/03/21 13:34:14 [log_collector] {"stage_name":"log_collector","events_processed":13541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2708.2,"last_update":"2026-03-21T13:34:09.068849714Z"} +2026/03/21 13:34:14 [metric_collector] {"stage_name":"metric_collector","events_processed":8119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1623.8,"last_update":"2026-03-21T13:34:09.069040039Z"} +2026/03/21 13:34:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:34:09.078266308Z"} +2026/03/21 13:34:14 [detection_layer] {"stage_name":"detection_layer","events_processed":270,"events_dropped":0,"avg_latency_ms":15.068506315834702,"throughput_eps":0,"last_update":"2026-03-21T13:34:09.21052088Z"} +2026/03/21 13:34:14 ───────────────────────────────────────────────── +2026/03/21 13:34:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:34:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:34:14.076108915Z"} +2026/03/21 13:34:19 [detection_layer] {"stage_name":"detection_layer","events_processed":270,"events_dropped":0,"avg_latency_ms":15.068506315834702,"throughput_eps":0,"last_update":"2026-03-21T13:34:14.210402693Z"} +2026/03/21 13:34:19 [transform_engine] {"stage_name":"transform_engine","events_processed":270,"events_dropped":0,"avg_latency_ms":100.34473221509214,"throughput_eps":0,"last_update":"2026-03-21T13:34:14.21039096Z"} +2026/03/21 13:34:19 [log_collector] {"stage_name":"log_collector","events_processed":13552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2710.4,"last_update":"2026-03-21T13:34:14.068382197Z"} +2026/03/21 13:34:19 [metric_collector] {"stage_name":"metric_collector","events_processed":8124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1624.8,"last_update":"2026-03-21T13:34:14.068566831Z"} +2026/03/21 13:34:19 ───────────────────────────────────────────────── +2026/03/21 13:34:21 [ANOMALY] time=2026-03-21T13:34:19Z score=0.9053 method=SEAD details=MAD!:w=0.30,s=0.96 RRCF-fast:w=0.17,s=0.77 RRCF-mid:w=0.14,s=0.80 RRCF-slow:w=0.12,s=0.90 COPOD!:w=0.28,s=0.99 +2026/03/21 13:34:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:34:24 [metric_collector] {"stage_name":"metric_collector","events_processed":8129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1625.8,"last_update":"2026-03-21T13:34:19.068974464Z"} +2026/03/21 13:34:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:34:19.076928818Z"} +2026/03/21 13:34:24 [detection_layer] {"stage_name":"detection_layer","events_processed":270,"events_dropped":0,"avg_latency_ms":15.068506315834702,"throughput_eps":0,"last_update":"2026-03-21T13:34:19.210635481Z"} +2026/03/21 13:34:24 [transform_engine] {"stage_name":"transform_engine","events_processed":271,"events_dropped":0,"avg_latency_ms":537.7350739720737,"throughput_eps":0,"last_update":"2026-03-21T13:34:21.497023573Z"} +2026/03/21 13:34:24 [log_collector] {"stage_name":"log_collector","events_processed":13552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2710.4,"last_update":"2026-03-21T13:34:19.068984503Z"} +2026/03/21 13:34:24 ───────────────────────────────────────────────── +2026/03/21 13:34:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:34:29 [log_collector] {"stage_name":"log_collector","events_processed":13561,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2712.2,"last_update":"2026-03-21T13:34:29.068312634Z"} +2026/03/21 13:34:29 [metric_collector] {"stage_name":"metric_collector","events_processed":8134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1626.8,"last_update":"2026-03-21T13:34:24.069196927Z"} +2026/03/21 13:34:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:34:24.081198331Z"} +2026/03/21 13:34:29 [detection_layer] {"stage_name":"detection_layer","events_processed":271,"events_dropped":0,"avg_latency_ms":14.640473052667762,"throughput_eps":0,"last_update":"2026-03-21T13:34:24.210449071Z"} +2026/03/21 13:34:29 [transform_engine] {"stage_name":"transform_engine","events_processed":271,"events_dropped":0,"avg_latency_ms":537.7350739720737,"throughput_eps":0,"last_update":"2026-03-21T13:34:24.210426447Z"} +2026/03/21 13:34:29 ───────────────────────────────────────────────── +2026/03/21 13:34:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:34:34 [metric_collector] {"stage_name":"metric_collector","events_processed":8139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1627.8,"last_update":"2026-03-21T13:34:29.06874946Z"} +2026/03/21 13:34:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:34:29.077622254Z"} +2026/03/21 13:34:34 [detection_layer] {"stage_name":"detection_layer","events_processed":271,"events_dropped":0,"avg_latency_ms":14.640473052667762,"throughput_eps":0,"last_update":"2026-03-21T13:34:29.209967449Z"} +2026/03/21 13:34:34 [transform_engine] {"stage_name":"transform_engine","events_processed":271,"events_dropped":0,"avg_latency_ms":537.7350739720737,"throughput_eps":0,"last_update":"2026-03-21T13:34:29.209808305Z"} +2026/03/21 13:34:34 [log_collector] {"stage_name":"log_collector","events_processed":13561,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2712.2,"last_update":"2026-03-21T13:34:29.068312634Z"} +2026/03/21 13:34:34 ───────────────────────────────────────────────── +2026/03/21 13:34:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:34:39 [log_collector] {"stage_name":"log_collector","events_processed":13563,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2712.6,"last_update":"2026-03-21T13:34:39.068137293Z"} +2026/03/21 13:34:39 [metric_collector] {"stage_name":"metric_collector","events_processed":8144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1628.8,"last_update":"2026-03-21T13:34:34.069171895Z"} +2026/03/21 13:34:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:34:34.077845457Z"} +2026/03/21 13:34:39 [detection_layer] {"stage_name":"detection_layer","events_processed":271,"events_dropped":0,"avg_latency_ms":14.640473052667762,"throughput_eps":0,"last_update":"2026-03-21T13:34:34.210249856Z"} +2026/03/21 13:34:39 [transform_engine] {"stage_name":"transform_engine","events_processed":271,"events_dropped":0,"avg_latency_ms":537.7350739720737,"throughput_eps":0,"last_update":"2026-03-21T13:34:34.210213336Z"} +2026/03/21 13:34:39 ───────────────────────────────────────────────── +2026/03/21 13:34:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:34:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:34:39.076543152Z"} +2026/03/21 13:34:44 [detection_layer] {"stage_name":"detection_layer","events_processed":271,"events_dropped":0,"avg_latency_ms":14.640473052667762,"throughput_eps":0,"last_update":"2026-03-21T13:34:39.209872714Z"} +2026/03/21 13:34:44 [transform_engine] {"stage_name":"transform_engine","events_processed":271,"events_dropped":0,"avg_latency_ms":537.7350739720737,"throughput_eps":0,"last_update":"2026-03-21T13:34:39.209810395Z"} +2026/03/21 13:34:44 [log_collector] {"stage_name":"log_collector","events_processed":13563,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2712.6,"last_update":"2026-03-21T13:34:39.068137293Z"} +2026/03/21 13:34:44 [metric_collector] {"stage_name":"metric_collector","events_processed":8149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1629.8,"last_update":"2026-03-21T13:34:39.068461324Z"} +2026/03/21 13:34:44 ───────────────────────────────────────────────── +2026/03/21 13:34:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:34:49 [detection_layer] {"stage_name":"detection_layer","events_processed":271,"events_dropped":0,"avg_latency_ms":14.640473052667762,"throughput_eps":0,"last_update":"2026-03-21T13:34:44.210454602Z"} +2026/03/21 13:34:49 [transform_engine] {"stage_name":"transform_engine","events_processed":271,"events_dropped":0,"avg_latency_ms":537.7350739720737,"throughput_eps":0,"last_update":"2026-03-21T13:34:44.210415688Z"} +2026/03/21 13:34:49 [log_collector] {"stage_name":"log_collector","events_processed":13563,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2712.6,"last_update":"2026-03-21T13:34:49.068385933Z"} +2026/03/21 13:34:49 [metric_collector] {"stage_name":"metric_collector","events_processed":8159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1631.8,"last_update":"2026-03-21T13:34:49.068679695Z"} +2026/03/21 13:34:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:34:44.078033731Z"} +2026/03/21 13:34:49 ───────────────────────────────────────────────── +2026/03/21 13:34:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:34:54 [transform_engine] {"stage_name":"transform_engine","events_processed":272,"events_dropped":0,"avg_latency_ms":454.7353279776589,"throughput_eps":0,"last_update":"2026-03-21T13:34:49.333256131Z"} +2026/03/21 13:34:54 [log_collector] {"stage_name":"log_collector","events_processed":13563,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2712.6,"last_update":"2026-03-21T13:34:49.068385933Z"} +2026/03/21 13:34:54 [metric_collector] {"stage_name":"metric_collector","events_processed":8159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1631.8,"last_update":"2026-03-21T13:34:49.068679695Z"} +2026/03/21 13:34:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:34:49.078281254Z"} +2026/03/21 13:34:54 [detection_layer] {"stage_name":"detection_layer","events_processed":271,"events_dropped":0,"avg_latency_ms":14.640473052667762,"throughput_eps":0,"last_update":"2026-03-21T13:34:49.210543431Z"} +2026/03/21 13:34:54 ───────────────────────────────────────────────── +2026/03/21 13:34:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:34:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:34:54.079680054Z"} +2026/03/21 13:34:59 [detection_layer] {"stage_name":"detection_layer","events_processed":272,"events_dropped":0,"avg_latency_ms":15.40720044213421,"throughput_eps":0,"last_update":"2026-03-21T13:34:54.210086108Z"} +2026/03/21 13:34:59 [transform_engine] {"stage_name":"transform_engine","events_processed":272,"events_dropped":0,"avg_latency_ms":454.7353279776589,"throughput_eps":0,"last_update":"2026-03-21T13:34:54.210030611Z"} +2026/03/21 13:34:59 [log_collector] {"stage_name":"log_collector","events_processed":13563,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2712.6,"last_update":"2026-03-21T13:34:54.068760673Z"} +2026/03/21 13:34:59 [metric_collector] {"stage_name":"metric_collector","events_processed":8164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1632.8,"last_update":"2026-03-21T13:34:54.069123017Z"} +2026/03/21 13:34:59 ───────────────────────────────────────────────── +2026/03/21 13:35:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:35:04 [detection_layer] {"stage_name":"detection_layer","events_processed":272,"events_dropped":0,"avg_latency_ms":15.40720044213421,"throughput_eps":0,"last_update":"2026-03-21T13:34:59.211021767Z"} +2026/03/21 13:35:04 [transform_engine] {"stage_name":"transform_engine","events_processed":272,"events_dropped":0,"avg_latency_ms":454.7353279776589,"throughput_eps":0,"last_update":"2026-03-21T13:34:59.210986298Z"} +2026/03/21 13:35:04 [log_collector] {"stage_name":"log_collector","events_processed":13563,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2712.6,"last_update":"2026-03-21T13:34:59.068839961Z"} +2026/03/21 13:35:04 [metric_collector] {"stage_name":"metric_collector","events_processed":8169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1633.8,"last_update":"2026-03-21T13:34:59.06920505Z"} +2026/03/21 13:35:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:34:59.078401162Z"} +2026/03/21 13:35:04 ───────────────────────────────────────────────── +2026/03/21 13:35:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:35:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:35:04.077367664Z"} +2026/03/21 13:35:09 [detection_layer] {"stage_name":"detection_layer","events_processed":272,"events_dropped":0,"avg_latency_ms":15.40720044213421,"throughput_eps":0,"last_update":"2026-03-21T13:35:04.210665435Z"} +2026/03/21 13:35:09 [transform_engine] {"stage_name":"transform_engine","events_processed":272,"events_dropped":0,"avg_latency_ms":454.7353279776589,"throughput_eps":0,"last_update":"2026-03-21T13:35:04.210628834Z"} +2026/03/21 13:35:09 [log_collector] {"stage_name":"log_collector","events_processed":13563,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2712.6,"last_update":"2026-03-21T13:35:04.068493648Z"} +2026/03/21 13:35:09 [metric_collector] {"stage_name":"metric_collector","events_processed":8174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1634.8,"last_update":"2026-03-21T13:35:04.068762353Z"} +2026/03/21 13:35:09 ───────────────────────────────────────────────── +Saved state: 16 clusters, 13564 messages, reason: none +2026/03/21 13:35:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:35:14 [log_collector] {"stage_name":"log_collector","events_processed":13563,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2712.6,"last_update":"2026-03-21T13:35:09.068103175Z"} +2026/03/21 13:35:14 [metric_collector] {"stage_name":"metric_collector","events_processed":8179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1635.8,"last_update":"2026-03-21T13:35:09.068519623Z"} +2026/03/21 13:35:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:35:09.077193034Z"} +2026/03/21 13:35:14 [detection_layer] {"stage_name":"detection_layer","events_processed":272,"events_dropped":0,"avg_latency_ms":15.40720044213421,"throughput_eps":0,"last_update":"2026-03-21T13:35:09.210490424Z"} +2026/03/21 13:35:14 [transform_engine] {"stage_name":"transform_engine","events_processed":272,"events_dropped":0,"avg_latency_ms":454.7353279776589,"throughput_eps":0,"last_update":"2026-03-21T13:35:09.210429317Z"} +2026/03/21 13:35:14 ───────────────────────────────────────────────── +2026/03/21 13:35:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:35:19 [log_collector] {"stage_name":"log_collector","events_processed":13565,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2713,"last_update":"2026-03-21T13:35:14.068125316Z"} +2026/03/21 13:35:19 [metric_collector] {"stage_name":"metric_collector","events_processed":8184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1636.8,"last_update":"2026-03-21T13:35:14.068490646Z"} +2026/03/21 13:35:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:35:14.068408539Z"} +2026/03/21 13:35:19 [detection_layer] {"stage_name":"detection_layer","events_processed":272,"events_dropped":0,"avg_latency_ms":15.40720044213421,"throughput_eps":0,"last_update":"2026-03-21T13:35:14.21077667Z"} +2026/03/21 13:35:19 [transform_engine] {"stage_name":"transform_engine","events_processed":272,"events_dropped":0,"avg_latency_ms":454.7353279776589,"throughput_eps":0,"last_update":"2026-03-21T13:35:14.209716791Z"} +2026/03/21 13:35:19 ───────────────────────────────────────────────── +2026/03/21 13:35:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:35:24 [log_collector] {"stage_name":"log_collector","events_processed":13568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2713.6,"last_update":"2026-03-21T13:35:19.068397219Z"} +2026/03/21 13:35:24 [metric_collector] {"stage_name":"metric_collector","events_processed":8189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1637.8,"last_update":"2026-03-21T13:35:19.068749924Z"} +2026/03/21 13:35:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:35:19.075122018Z"} +2026/03/21 13:35:24 [detection_layer] {"stage_name":"detection_layer","events_processed":272,"events_dropped":0,"avg_latency_ms":15.40720044213421,"throughput_eps":0,"last_update":"2026-03-21T13:35:19.210425059Z"} +2026/03/21 13:35:24 [transform_engine] {"stage_name":"transform_engine","events_processed":273,"events_dropped":0,"avg_latency_ms":449.65273338212717,"throughput_eps":0,"last_update":"2026-03-21T13:35:19.639721595Z"} +2026/03/21 13:35:24 ───────────────────────────────────────────────── +2026/03/21 13:35:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:35:29 [log_collector] {"stage_name":"log_collector","events_processed":13568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2713.6,"last_update":"2026-03-21T13:35:24.068792001Z"} +2026/03/21 13:35:29 [metric_collector] {"stage_name":"metric_collector","events_processed":8194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1638.8,"last_update":"2026-03-21T13:35:24.069170475Z"} +2026/03/21 13:35:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:35:24.076343052Z"} +2026/03/21 13:35:29 [detection_layer] {"stage_name":"detection_layer","events_processed":273,"events_dropped":0,"avg_latency_ms":14.841069353707368,"throughput_eps":0,"last_update":"2026-03-21T13:35:24.210758494Z"} +2026/03/21 13:35:29 [transform_engine] {"stage_name":"transform_engine","events_processed":273,"events_dropped":0,"avg_latency_ms":449.65273338212717,"throughput_eps":0,"last_update":"2026-03-21T13:35:24.209627468Z"} +2026/03/21 13:35:29 ───────────────────────────────────────────────── +2026/03/21 13:35:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:35:34 [transform_engine] {"stage_name":"transform_engine","events_processed":273,"events_dropped":0,"avg_latency_ms":449.65273338212717,"throughput_eps":0,"last_update":"2026-03-21T13:35:29.210310005Z"} +2026/03/21 13:35:34 [log_collector] {"stage_name":"log_collector","events_processed":13568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2713.6,"last_update":"2026-03-21T13:35:29.068764488Z"} +2026/03/21 13:35:34 [metric_collector] {"stage_name":"metric_collector","events_processed":8199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1639.8,"last_update":"2026-03-21T13:35:29.069181156Z"} +2026/03/21 13:35:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:35:29.07607023Z"} +2026/03/21 13:35:34 [detection_layer] {"stage_name":"detection_layer","events_processed":273,"events_dropped":0,"avg_latency_ms":14.841069353707368,"throughput_eps":0,"last_update":"2026-03-21T13:35:29.210334252Z"} +2026/03/21 13:35:34 ───────────────────────────────────────────────── +2026/03/21 13:35:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:35:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:35:34.081275212Z"} +2026/03/21 13:35:39 [detection_layer] {"stage_name":"detection_layer","events_processed":273,"events_dropped":0,"avg_latency_ms":14.841069353707368,"throughput_eps":0,"last_update":"2026-03-21T13:35:34.210521164Z"} +2026/03/21 13:35:39 [transform_engine] {"stage_name":"transform_engine","events_processed":273,"events_dropped":0,"avg_latency_ms":449.65273338212717,"throughput_eps":0,"last_update":"2026-03-21T13:35:34.210488661Z"} +2026/03/21 13:35:39 [log_collector] {"stage_name":"log_collector","events_processed":13568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2713.6,"last_update":"2026-03-21T13:35:34.068708605Z"} +2026/03/21 13:35:39 [metric_collector] {"stage_name":"metric_collector","events_processed":8204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1640.8,"last_update":"2026-03-21T13:35:34.068955288Z"} +2026/03/21 13:35:39 ───────────────────────────────────────────────── +2026/03/21 13:35:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:35:44 [log_collector] {"stage_name":"log_collector","events_processed":13568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2713.6,"last_update":"2026-03-21T13:35:39.068538637Z"} +2026/03/21 13:35:44 [metric_collector] {"stage_name":"metric_collector","events_processed":8209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1641.8,"last_update":"2026-03-21T13:35:39.068965314Z"} +2026/03/21 13:35:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3286,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:35:39.075590943Z"} +2026/03/21 13:35:44 [detection_layer] {"stage_name":"detection_layer","events_processed":273,"events_dropped":0,"avg_latency_ms":14.841069353707368,"throughput_eps":0,"last_update":"2026-03-21T13:35:39.211500757Z"} +2026/03/21 13:35:44 [transform_engine] {"stage_name":"transform_engine","events_processed":273,"events_dropped":0,"avg_latency_ms":449.65273338212717,"throughput_eps":0,"last_update":"2026-03-21T13:35:39.209709496Z"} +2026/03/21 13:35:44 ───────────────────────────────────────────────── +2026/03/21 13:35:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:35:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:35:44.08166656Z"} +2026/03/21 13:35:49 [detection_layer] {"stage_name":"detection_layer","events_processed":273,"events_dropped":0,"avg_latency_ms":14.841069353707368,"throughput_eps":0,"last_update":"2026-03-21T13:35:44.210909998Z"} +2026/03/21 13:35:49 [transform_engine] {"stage_name":"transform_engine","events_processed":273,"events_dropped":0,"avg_latency_ms":449.65273338212717,"throughput_eps":0,"last_update":"2026-03-21T13:35:44.21094259Z"} +2026/03/21 13:35:49 [log_collector] {"stage_name":"log_collector","events_processed":13568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2713.6,"last_update":"2026-03-21T13:35:44.068500496Z"} +2026/03/21 13:35:49 [metric_collector] {"stage_name":"metric_collector","events_processed":8214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1642.8,"last_update":"2026-03-21T13:35:44.068759792Z"} +2026/03/21 13:35:49 ───────────────────────────────────────────────── +2026/03/21 13:35:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:35:54 [log_collector] {"stage_name":"log_collector","events_processed":13568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2713.6,"last_update":"2026-03-21T13:35:49.068802328Z"} +2026/03/21 13:35:54 [metric_collector] {"stage_name":"metric_collector","events_processed":8219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1643.8,"last_update":"2026-03-21T13:35:49.06911126Z"} +2026/03/21 13:35:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:35:49.076607646Z"} +2026/03/21 13:35:54 [detection_layer] {"stage_name":"detection_layer","events_processed":273,"events_dropped":0,"avg_latency_ms":14.841069353707368,"throughput_eps":0,"last_update":"2026-03-21T13:35:49.210892068Z"} +2026/03/21 13:35:54 [transform_engine] {"stage_name":"transform_engine","events_processed":274,"events_dropped":0,"avg_latency_ms":825.6117727057018,"throughput_eps":0,"last_update":"2026-03-21T13:35:51.539214693Z"} +2026/03/21 13:35:54 ───────────────────────────────────────────────── +2026/03/21 13:35:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:35:59 [log_collector] {"stage_name":"log_collector","events_processed":13568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2713.6,"last_update":"2026-03-21T13:35:54.068058733Z"} +2026/03/21 13:35:59 [metric_collector] {"stage_name":"metric_collector","events_processed":8224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1644.8,"last_update":"2026-03-21T13:35:54.06819828Z"} +2026/03/21 13:35:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:35:54.077367219Z"} +2026/03/21 13:35:59 [detection_layer] {"stage_name":"detection_layer","events_processed":274,"events_dropped":0,"avg_latency_ms":14.172638082965896,"throughput_eps":0,"last_update":"2026-03-21T13:35:54.210535343Z"} +2026/03/21 13:35:59 [transform_engine] {"stage_name":"transform_engine","events_processed":274,"events_dropped":0,"avg_latency_ms":825.6117727057018,"throughput_eps":0,"last_update":"2026-03-21T13:35:54.21056526Z"} +2026/03/21 13:35:59 ───────────────────────────────────────────────── +2026/03/21 13:36:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:36:04 [detection_layer] {"stage_name":"detection_layer","events_processed":274,"events_dropped":0,"avg_latency_ms":14.172638082965896,"throughput_eps":0,"last_update":"2026-03-21T13:35:59.210540485Z"} +2026/03/21 13:36:04 [transform_engine] {"stage_name":"transform_engine","events_processed":274,"events_dropped":0,"avg_latency_ms":825.6117727057018,"throughput_eps":0,"last_update":"2026-03-21T13:35:59.210578709Z"} +2026/03/21 13:36:04 [log_collector] {"stage_name":"log_collector","events_processed":13577,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2715.4,"last_update":"2026-03-21T13:35:59.068584461Z"} +2026/03/21 13:36:04 [metric_collector] {"stage_name":"metric_collector","events_processed":8229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1645.8,"last_update":"2026-03-21T13:35:59.069234166Z"} +2026/03/21 13:36:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:35:59.076294848Z"} +2026/03/21 13:36:04 ───────────────────────────────────────────────── +2026/03/21 13:36:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:36:09 [log_collector] {"stage_name":"log_collector","events_processed":13579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2715.8,"last_update":"2026-03-21T13:36:04.068960297Z"} +2026/03/21 13:36:09 [metric_collector] {"stage_name":"metric_collector","events_processed":8234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1646.8,"last_update":"2026-03-21T13:36:04.069241555Z"} +2026/03/21 13:36:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:36:04.080147912Z"} +2026/03/21 13:36:09 [detection_layer] {"stage_name":"detection_layer","events_processed":274,"events_dropped":0,"avg_latency_ms":14.172638082965896,"throughput_eps":0,"last_update":"2026-03-21T13:36:04.211268997Z"} +2026/03/21 13:36:09 [transform_engine] {"stage_name":"transform_engine","events_processed":274,"events_dropped":0,"avg_latency_ms":825.6117727057018,"throughput_eps":0,"last_update":"2026-03-21T13:36:04.21101004Z"} +2026/03/21 13:36:09 ───────────────────────────────────────────────── +2026/03/21 13:36:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:36:14 [log_collector] {"stage_name":"log_collector","events_processed":13790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2758,"last_update":"2026-03-21T13:36:09.068683206Z"} +2026/03/21 13:36:14 [metric_collector] {"stage_name":"metric_collector","events_processed":8239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1647.8,"last_update":"2026-03-21T13:36:09.068930009Z"} +2026/03/21 13:36:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:36:09.077733879Z"} +2026/03/21 13:36:14 [detection_layer] {"stage_name":"detection_layer","events_processed":274,"events_dropped":0,"avg_latency_ms":14.172638082965896,"throughput_eps":0,"last_update":"2026-03-21T13:36:09.210180672Z"} +2026/03/21 13:36:14 [transform_engine] {"stage_name":"transform_engine","events_processed":274,"events_dropped":0,"avg_latency_ms":825.6117727057018,"throughput_eps":0,"last_update":"2026-03-21T13:36:09.210147368Z"} +2026/03/21 13:36:14 ───────────────────────────────────────────────── +2026/03/21 13:36:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:36:19 [metric_collector] {"stage_name":"metric_collector","events_processed":8244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1648.8,"last_update":"2026-03-21T13:36:14.068769784Z"} +2026/03/21 13:36:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:36:14.079444096Z"} +2026/03/21 13:36:19 [detection_layer] {"stage_name":"detection_layer","events_processed":274,"events_dropped":0,"avg_latency_ms":14.172638082965896,"throughput_eps":0,"last_update":"2026-03-21T13:36:14.210790372Z"} +2026/03/21 13:36:19 [transform_engine] {"stage_name":"transform_engine","events_processed":274,"events_dropped":0,"avg_latency_ms":825.6117727057018,"throughput_eps":0,"last_update":"2026-03-21T13:36:14.210679991Z"} +2026/03/21 13:36:19 [log_collector] {"stage_name":"log_collector","events_processed":13931,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2786.2,"last_update":"2026-03-21T13:36:14.068504285Z"} +2026/03/21 13:36:19 ───────────────────────────────────────────────── +2026/03/21 13:36:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:36:24 [log_collector] {"stage_name":"log_collector","events_processed":13931,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2786.2,"last_update":"2026-03-21T13:36:19.068624582Z"} +2026/03/21 13:36:24 [metric_collector] {"stage_name":"metric_collector","events_processed":8249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1649.8,"last_update":"2026-03-21T13:36:19.068935016Z"} +2026/03/21 13:36:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:36:19.07791821Z"} +2026/03/21 13:36:24 [detection_layer] {"stage_name":"detection_layer","events_processed":274,"events_dropped":0,"avg_latency_ms":14.172638082965896,"throughput_eps":0,"last_update":"2026-03-21T13:36:19.210072844Z"} +2026/03/21 13:36:24 [transform_engine] {"stage_name":"transform_engine","events_processed":275,"events_dropped":0,"avg_latency_ms":677.3805147645614,"throughput_eps":0,"last_update":"2026-03-21T13:36:19.294611706Z"} +2026/03/21 13:36:24 ───────────────────────────────────────────────── +2026/03/21 13:36:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:36:29 [metric_collector] {"stage_name":"metric_collector","events_processed":8254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1650.8,"last_update":"2026-03-21T13:36:24.069300235Z"} +2026/03/21 13:36:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:36:24.079031422Z"} +2026/03/21 13:36:29 [detection_layer] {"stage_name":"detection_layer","events_processed":275,"events_dropped":0,"avg_latency_ms":15.013855866372719,"throughput_eps":0,"last_update":"2026-03-21T13:36:24.210624189Z"} +2026/03/21 13:36:29 [transform_engine] {"stage_name":"transform_engine","events_processed":275,"events_dropped":0,"avg_latency_ms":677.3805147645614,"throughput_eps":0,"last_update":"2026-03-21T13:36:24.210520139Z"} +2026/03/21 13:36:29 [log_collector] {"stage_name":"log_collector","events_processed":13931,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2786.2,"last_update":"2026-03-21T13:36:24.069033625Z"} +2026/03/21 13:36:29 ───────────────────────────────────────────────── +2026/03/21 13:36:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:36:34 [log_collector] {"stage_name":"log_collector","events_processed":13931,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2786.2,"last_update":"2026-03-21T13:36:29.068595409Z"} +2026/03/21 13:36:34 [metric_collector] {"stage_name":"metric_collector","events_processed":8259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1651.8,"last_update":"2026-03-21T13:36:29.068821723Z"} +2026/03/21 13:36:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:36:29.078126282Z"} +2026/03/21 13:36:34 [detection_layer] {"stage_name":"detection_layer","events_processed":275,"events_dropped":0,"avg_latency_ms":15.013855866372719,"throughput_eps":0,"last_update":"2026-03-21T13:36:29.210374505Z"} +2026/03/21 13:36:34 [transform_engine] {"stage_name":"transform_engine","events_processed":275,"events_dropped":0,"avg_latency_ms":677.3805147645614,"throughput_eps":0,"last_update":"2026-03-21T13:36:29.210397069Z"} +2026/03/21 13:36:34 ───────────────────────────────────────────────── +2026/03/21 13:36:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:36:39 [log_collector] {"stage_name":"log_collector","events_processed":13931,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2786.2,"last_update":"2026-03-21T13:36:34.06858185Z"} +2026/03/21 13:36:39 [metric_collector] {"stage_name":"metric_collector","events_processed":8264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1652.8,"last_update":"2026-03-21T13:36:34.068860073Z"} +2026/03/21 13:36:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:36:34.078412336Z"} +2026/03/21 13:36:39 [detection_layer] {"stage_name":"detection_layer","events_processed":275,"events_dropped":0,"avg_latency_ms":15.013855866372719,"throughput_eps":0,"last_update":"2026-03-21T13:36:34.210782493Z"} +2026/03/21 13:36:39 [transform_engine] {"stage_name":"transform_engine","events_processed":275,"events_dropped":0,"avg_latency_ms":677.3805147645614,"throughput_eps":0,"last_update":"2026-03-21T13:36:34.209656757Z"} +2026/03/21 13:36:39 ───────────────────────────────────────────────── +2026/03/21 13:36:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:36:44 [log_collector] {"stage_name":"log_collector","events_processed":13931,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2786.2,"last_update":"2026-03-21T13:36:39.068856135Z"} +2026/03/21 13:36:44 [metric_collector] {"stage_name":"metric_collector","events_processed":8269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1653.8,"last_update":"2026-03-21T13:36:39.06915099Z"} +2026/03/21 13:36:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:36:39.078581851Z"} +2026/03/21 13:36:44 [detection_layer] {"stage_name":"detection_layer","events_processed":275,"events_dropped":0,"avg_latency_ms":15.013855866372719,"throughput_eps":0,"last_update":"2026-03-21T13:36:39.209857782Z"} +2026/03/21 13:36:44 [transform_engine] {"stage_name":"transform_engine","events_processed":275,"events_dropped":0,"avg_latency_ms":677.3805147645614,"throughput_eps":0,"last_update":"2026-03-21T13:36:39.209800422Z"} +2026/03/21 13:36:44 ───────────────────────────────────────────────── +2026/03/21 13:36:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:36:49 [metric_collector] {"stage_name":"metric_collector","events_processed":8274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1654.8,"last_update":"2026-03-21T13:36:44.068806613Z"} +2026/03/21 13:36:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:36:44.078846711Z"} +2026/03/21 13:36:49 [detection_layer] {"stage_name":"detection_layer","events_processed":275,"events_dropped":0,"avg_latency_ms":15.013855866372719,"throughput_eps":0,"last_update":"2026-03-21T13:36:44.210109227Z"} +2026/03/21 13:36:49 [transform_engine] {"stage_name":"transform_engine","events_processed":275,"events_dropped":0,"avg_latency_ms":677.3805147645614,"throughput_eps":0,"last_update":"2026-03-21T13:36:44.210127512Z"} +2026/03/21 13:36:49 [log_collector] {"stage_name":"log_collector","events_processed":13931,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2786.2,"last_update":"2026-03-21T13:36:44.0686432Z"} +2026/03/21 13:36:49 ───────────────────────────────────────────────── +2026/03/21 13:36:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:36:54 [log_collector] {"stage_name":"log_collector","events_processed":13931,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2786.2,"last_update":"2026-03-21T13:36:49.068880561Z"} +2026/03/21 13:36:54 [metric_collector] {"stage_name":"metric_collector","events_processed":8279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1655.8,"last_update":"2026-03-21T13:36:49.068908244Z"} +2026/03/21 13:36:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:36:49.079402653Z"} +2026/03/21 13:36:54 [detection_layer] {"stage_name":"detection_layer","events_processed":275,"events_dropped":0,"avg_latency_ms":15.013855866372719,"throughput_eps":0,"last_update":"2026-03-21T13:36:49.210839772Z"} +2026/03/21 13:36:54 [transform_engine] {"stage_name":"transform_engine","events_processed":275,"events_dropped":0,"avg_latency_ms":677.3805147645614,"throughput_eps":0,"last_update":"2026-03-21T13:36:49.210716396Z"} +2026/03/21 13:36:54 ───────────────────────────────────────────────── +2026/03/21 13:36:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:36:59 [log_collector] {"stage_name":"log_collector","events_processed":13931,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2786.2,"last_update":"2026-03-21T13:36:54.06880716Z"} +2026/03/21 13:36:59 [metric_collector] {"stage_name":"metric_collector","events_processed":8284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1656.8,"last_update":"2026-03-21T13:36:54.069089952Z"} +2026/03/21 13:36:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:36:54.077931996Z"} +2026/03/21 13:36:59 [detection_layer] {"stage_name":"detection_layer","events_processed":276,"events_dropped":0,"avg_latency_ms":16.24777429309818,"throughput_eps":0,"last_update":"2026-03-21T13:36:54.21023814Z"} +2026/03/21 13:36:59 [transform_engine] {"stage_name":"transform_engine","events_processed":276,"events_dropped":0,"avg_latency_ms":557.1259892116492,"throughput_eps":0,"last_update":"2026-03-21T13:36:54.210296923Z"} +2026/03/21 13:36:59 ───────────────────────────────────────────────── +2026/03/21 13:37:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:37:04 [transform_engine] {"stage_name":"transform_engine","events_processed":276,"events_dropped":0,"avg_latency_ms":557.1259892116492,"throughput_eps":0,"last_update":"2026-03-21T13:36:59.210247481Z"} +2026/03/21 13:37:04 [log_collector] {"stage_name":"log_collector","events_processed":13931,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2786.2,"last_update":"2026-03-21T13:36:59.068557166Z"} +2026/03/21 13:37:04 [metric_collector] {"stage_name":"metric_collector","events_processed":8289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1657.8,"last_update":"2026-03-21T13:36:59.069276332Z"} +2026/03/21 13:37:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:36:59.079978719Z"} +2026/03/21 13:37:04 [detection_layer] {"stage_name":"detection_layer","events_processed":276,"events_dropped":0,"avg_latency_ms":16.24777429309818,"throughput_eps":0,"last_update":"2026-03-21T13:36:59.21030913Z"} +2026/03/21 13:37:04 ───────────────────────────────────────────────── +2026/03/21 13:37:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:37:09 [log_collector] {"stage_name":"log_collector","events_processed":13931,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2786.2,"last_update":"2026-03-21T13:37:04.068761232Z"} +2026/03/21 13:37:09 [metric_collector] {"stage_name":"metric_collector","events_processed":8294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1658.8,"last_update":"2026-03-21T13:37:04.069405055Z"} +2026/03/21 13:37:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3320,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:37:04.078996644Z"} +2026/03/21 13:37:09 [detection_layer] {"stage_name":"detection_layer","events_processed":276,"events_dropped":0,"avg_latency_ms":16.24777429309818,"throughput_eps":0,"last_update":"2026-03-21T13:37:04.210210788Z"} +2026/03/21 13:37:09 [transform_engine] {"stage_name":"transform_engine","events_processed":276,"events_dropped":0,"avg_latency_ms":557.1259892116492,"throughput_eps":0,"last_update":"2026-03-21T13:37:04.210279438Z"} +2026/03/21 13:37:09 ───────────────────────────────────────────────── +2026/03/21 13:37:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:37:14 [transform_engine] {"stage_name":"transform_engine","events_processed":276,"events_dropped":0,"avg_latency_ms":557.1259892116492,"throughput_eps":0,"last_update":"2026-03-21T13:37:09.210532192Z"} +2026/03/21 13:37:14 [log_collector] {"stage_name":"log_collector","events_processed":13931,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2786.2,"last_update":"2026-03-21T13:37:09.068728518Z"} +2026/03/21 13:37:14 [metric_collector] {"stage_name":"metric_collector","events_processed":8299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1659.8,"last_update":"2026-03-21T13:37:09.069476741Z"} +2026/03/21 13:37:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:37:09.078125875Z"} +2026/03/21 13:37:14 [detection_layer] {"stage_name":"detection_layer","events_processed":276,"events_dropped":0,"avg_latency_ms":16.24777429309818,"throughput_eps":0,"last_update":"2026-03-21T13:37:09.210592036Z"} +2026/03/21 13:37:14 ───────────────────────────────────────────────── +2026/03/21 13:37:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:37:19 [log_collector] {"stage_name":"log_collector","events_processed":13931,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2786.2,"last_update":"2026-03-21T13:37:14.06884882Z"} +2026/03/21 13:37:19 [metric_collector] {"stage_name":"metric_collector","events_processed":8304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1660.8,"last_update":"2026-03-21T13:37:14.069215422Z"} +2026/03/21 13:37:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:37:14.077749216Z"} +2026/03/21 13:37:19 [detection_layer] {"stage_name":"detection_layer","events_processed":276,"events_dropped":0,"avg_latency_ms":16.24777429309818,"throughput_eps":0,"last_update":"2026-03-21T13:37:14.210075619Z"} +2026/03/21 13:37:19 [transform_engine] {"stage_name":"transform_engine","events_processed":276,"events_dropped":0,"avg_latency_ms":557.1259892116492,"throughput_eps":0,"last_update":"2026-03-21T13:37:14.210194707Z"} +2026/03/21 13:37:19 ───────────────────────────────────────────────── +Saved state: 16 clusters, 13932 messages, reason: none +2026/03/21 13:37:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:37:24 [metric_collector] {"stage_name":"metric_collector","events_processed":8309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1661.8,"last_update":"2026-03-21T13:37:19.068914802Z"} +2026/03/21 13:37:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:37:19.077634121Z"} +2026/03/21 13:37:24 [detection_layer] {"stage_name":"detection_layer","events_processed":276,"events_dropped":0,"avg_latency_ms":16.24777429309818,"throughput_eps":0,"last_update":"2026-03-21T13:37:19.210906315Z"} +2026/03/21 13:37:24 [transform_engine] {"stage_name":"transform_engine","events_processed":277,"events_dropped":0,"avg_latency_ms":459.34793336931943,"throughput_eps":0,"last_update":"2026-03-21T13:37:19.278023043Z"} +2026/03/21 13:37:24 [log_collector] {"stage_name":"log_collector","events_processed":13931,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2786.2,"last_update":"2026-03-21T13:37:19.068633233Z"} +2026/03/21 13:37:24 ───────────────────────────────────────────────── +2026/03/21 13:37:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:37:29 [log_collector] {"stage_name":"log_collector","events_processed":13934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2786.8,"last_update":"2026-03-21T13:37:24.068870815Z"} +2026/03/21 13:37:29 [metric_collector] {"stage_name":"metric_collector","events_processed":8314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1662.8,"last_update":"2026-03-21T13:37:24.069437792Z"} +2026/03/21 13:37:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:37:24.077944594Z"} +2026/03/21 13:37:29 [detection_layer] {"stage_name":"detection_layer","events_processed":277,"events_dropped":0,"avg_latency_ms":16.916591634478543,"throughput_eps":0,"last_update":"2026-03-21T13:37:24.2101996Z"} +2026/03/21 13:37:29 [transform_engine] {"stage_name":"transform_engine","events_processed":277,"events_dropped":0,"avg_latency_ms":459.34793336931943,"throughput_eps":0,"last_update":"2026-03-21T13:37:24.210233856Z"} +2026/03/21 13:37:29 ───────────────────────────────────────────────── +2026/03/21 13:37:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:37:34 [transform_engine] {"stage_name":"transform_engine","events_processed":277,"events_dropped":0,"avg_latency_ms":459.34793336931943,"throughput_eps":0,"last_update":"2026-03-21T13:37:29.210178702Z"} +2026/03/21 13:37:34 [log_collector] {"stage_name":"log_collector","events_processed":13934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2786.8,"last_update":"2026-03-21T13:37:29.069517396Z"} +2026/03/21 13:37:34 [metric_collector] {"stage_name":"metric_collector","events_processed":8319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1663.8,"last_update":"2026-03-21T13:37:29.069584003Z"} +2026/03/21 13:37:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3330,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:37:29.07797279Z"} +2026/03/21 13:37:34 [detection_layer] {"stage_name":"detection_layer","events_processed":277,"events_dropped":0,"avg_latency_ms":16.916591634478543,"throughput_eps":0,"last_update":"2026-03-21T13:37:29.210202618Z"} +2026/03/21 13:37:34 ───────────────────────────────────────────────── +2026/03/21 13:37:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:37:39 [log_collector] {"stage_name":"log_collector","events_processed":13944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2788.8,"last_update":"2026-03-21T13:37:34.068111469Z"} +2026/03/21 13:37:39 [metric_collector] {"stage_name":"metric_collector","events_processed":8324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1664.8,"last_update":"2026-03-21T13:37:34.068466419Z"} +2026/03/21 13:37:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:37:34.074723542Z"} +2026/03/21 13:37:39 [detection_layer] {"stage_name":"detection_layer","events_processed":277,"events_dropped":0,"avg_latency_ms":16.916591634478543,"throughput_eps":0,"last_update":"2026-03-21T13:37:34.210123713Z"} +2026/03/21 13:37:39 [transform_engine] {"stage_name":"transform_engine","events_processed":277,"events_dropped":0,"avg_latency_ms":459.34793336931943,"throughput_eps":0,"last_update":"2026-03-21T13:37:34.210178648Z"} +2026/03/21 13:37:39 ───────────────────────────────────────────────── +2026/03/21 13:37:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:37:44 [detection_layer] {"stage_name":"detection_layer","events_processed":277,"events_dropped":0,"avg_latency_ms":16.916591634478543,"throughput_eps":0,"last_update":"2026-03-21T13:37:39.210705934Z"} +2026/03/21 13:37:44 [transform_engine] {"stage_name":"transform_engine","events_processed":277,"events_dropped":0,"avg_latency_ms":459.34793336931943,"throughput_eps":0,"last_update":"2026-03-21T13:37:39.209636876Z"} +2026/03/21 13:37:44 [log_collector] {"stage_name":"log_collector","events_processed":13950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2790,"last_update":"2026-03-21T13:37:39.068424325Z"} +2026/03/21 13:37:44 [metric_collector] {"stage_name":"metric_collector","events_processed":8329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1665.8,"last_update":"2026-03-21T13:37:39.068641781Z"} +2026/03/21 13:37:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:37:39.088595716Z"} +2026/03/21 13:37:44 ───────────────────────────────────────────────── +2026/03/21 13:37:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:37:49 [log_collector] {"stage_name":"log_collector","events_processed":13961,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2792.2,"last_update":"2026-03-21T13:37:44.06808794Z"} +2026/03/21 13:37:49 [metric_collector] {"stage_name":"metric_collector","events_processed":8334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1666.8,"last_update":"2026-03-21T13:37:44.068582598Z"} +2026/03/21 13:37:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:37:44.078080488Z"} +2026/03/21 13:37:49 [detection_layer] {"stage_name":"detection_layer","events_processed":277,"events_dropped":0,"avg_latency_ms":16.916591634478543,"throughput_eps":0,"last_update":"2026-03-21T13:37:44.210335585Z"} +2026/03/21 13:37:49 [transform_engine] {"stage_name":"transform_engine","events_processed":277,"events_dropped":0,"avg_latency_ms":459.34793336931943,"throughput_eps":0,"last_update":"2026-03-21T13:37:44.210375732Z"} +2026/03/21 13:37:49 ───────────────────────────────────────────────── +2026/03/21 13:37:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:37:54 [detection_layer] {"stage_name":"detection_layer","events_processed":277,"events_dropped":0,"avg_latency_ms":16.916591634478543,"throughput_eps":0,"last_update":"2026-03-21T13:37:49.210684187Z"} +2026/03/21 13:37:54 [transform_engine] {"stage_name":"transform_engine","events_processed":278,"events_dropped":0,"avg_latency_ms":390.16134209545555,"throughput_eps":0,"last_update":"2026-03-21T13:37:49.324072823Z"} +2026/03/21 13:37:54 [log_collector] {"stage_name":"log_collector","events_processed":13961,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2792.2,"last_update":"2026-03-21T13:37:49.068155985Z"} +2026/03/21 13:37:54 [metric_collector] {"stage_name":"metric_collector","events_processed":8339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1667.8,"last_update":"2026-03-21T13:37:49.068632849Z"} +2026/03/21 13:37:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:37:49.078432606Z"} +2026/03/21 13:37:54 ───────────────────────────────────────────────── +2026/03/21 13:37:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:37:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:37:54.074911219Z"} +2026/03/21 13:37:59 [detection_layer] {"stage_name":"detection_layer","events_processed":278,"events_dropped":0,"avg_latency_ms":16.883132707582835,"throughput_eps":0,"last_update":"2026-03-21T13:37:54.210127417Z"} +2026/03/21 13:37:59 [transform_engine] {"stage_name":"transform_engine","events_processed":278,"events_dropped":0,"avg_latency_ms":390.16134209545555,"throughput_eps":0,"last_update":"2026-03-21T13:37:54.210149169Z"} +2026/03/21 13:37:59 [log_collector] {"stage_name":"log_collector","events_processed":13964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2792.8,"last_update":"2026-03-21T13:37:54.068172704Z"} +2026/03/21 13:37:59 [metric_collector] {"stage_name":"metric_collector","events_processed":8344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1668.8,"last_update":"2026-03-21T13:37:54.068476816Z"} +2026/03/21 13:37:59 ───────────────────────────────────────────────── +2026/03/21 13:38:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:38:04 [detection_layer] {"stage_name":"detection_layer","events_processed":278,"events_dropped":0,"avg_latency_ms":16.883132707582835,"throughput_eps":0,"last_update":"2026-03-21T13:37:59.210225665Z"} +2026/03/21 13:38:04 [transform_engine] {"stage_name":"transform_engine","events_processed":278,"events_dropped":0,"avg_latency_ms":390.16134209545555,"throughput_eps":0,"last_update":"2026-03-21T13:37:59.210271482Z"} +2026/03/21 13:38:04 [log_collector] {"stage_name":"log_collector","events_processed":13975,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2795,"last_update":"2026-03-21T13:37:59.068106386Z"} +2026/03/21 13:38:04 [metric_collector] {"stage_name":"metric_collector","events_processed":8349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1669.8,"last_update":"2026-03-21T13:37:59.068524816Z"} +2026/03/21 13:38:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:37:59.068354391Z"} +2026/03/21 13:38:04 ───────────────────────────────────────────────── +2026/03/21 13:38:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:38:09 [transform_engine] {"stage_name":"transform_engine","events_processed":278,"events_dropped":0,"avg_latency_ms":390.16134209545555,"throughput_eps":0,"last_update":"2026-03-21T13:38:04.210199006Z"} +2026/03/21 13:38:09 [log_collector] {"stage_name":"log_collector","events_processed":13975,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2795,"last_update":"2026-03-21T13:38:04.068837298Z"} +2026/03/21 13:38:09 [metric_collector] {"stage_name":"metric_collector","events_processed":8354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1670.8,"last_update":"2026-03-21T13:38:04.069479198Z"} +2026/03/21 13:38:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:38:04.078998929Z"} +2026/03/21 13:38:09 [detection_layer] {"stage_name":"detection_layer","events_processed":278,"events_dropped":0,"avg_latency_ms":16.883132707582835,"throughput_eps":0,"last_update":"2026-03-21T13:38:04.21016498Z"} +2026/03/21 13:38:09 ───────────────────────────────────────────────── +2026/03/21 13:38:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:38:14 [log_collector] {"stage_name":"log_collector","events_processed":13975,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2795,"last_update":"2026-03-21T13:38:09.06876707Z"} +2026/03/21 13:38:14 [metric_collector] {"stage_name":"metric_collector","events_processed":8359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1671.8,"last_update":"2026-03-21T13:38:09.069052607Z"} +2026/03/21 13:38:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:38:09.078872734Z"} +2026/03/21 13:38:14 [detection_layer] {"stage_name":"detection_layer","events_processed":278,"events_dropped":0,"avg_latency_ms":16.883132707582835,"throughput_eps":0,"last_update":"2026-03-21T13:38:09.210127276Z"} +2026/03/21 13:38:14 [transform_engine] {"stage_name":"transform_engine","events_processed":278,"events_dropped":0,"avg_latency_ms":390.16134209545555,"throughput_eps":0,"last_update":"2026-03-21T13:38:09.210154528Z"} +2026/03/21 13:38:14 ───────────────────────────────────────────────── +2026/03/21 13:38:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:38:19 [log_collector] {"stage_name":"log_collector","events_processed":13975,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2795,"last_update":"2026-03-21T13:38:14.068552697Z"} +2026/03/21 13:38:19 [metric_collector] {"stage_name":"metric_collector","events_processed":8364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1672.8,"last_update":"2026-03-21T13:38:14.06918067Z"} +2026/03/21 13:38:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:38:14.077009013Z"} +2026/03/21 13:38:19 [detection_layer] {"stage_name":"detection_layer","events_processed":278,"events_dropped":0,"avg_latency_ms":16.883132707582835,"throughput_eps":0,"last_update":"2026-03-21T13:38:14.210342656Z"} +2026/03/21 13:38:19 [transform_engine] {"stage_name":"transform_engine","events_processed":278,"events_dropped":0,"avg_latency_ms":390.16134209545555,"throughput_eps":0,"last_update":"2026-03-21T13:38:14.210223267Z"} +2026/03/21 13:38:19 ───────────────────────────────────────────────── +2026/03/21 13:38:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:38:24 [transform_engine] {"stage_name":"transform_engine","events_processed":279,"events_dropped":0,"avg_latency_ms":335.0144386763644,"throughput_eps":0,"last_update":"2026-03-21T13:38:19.324249866Z"} +2026/03/21 13:38:24 [log_collector] {"stage_name":"log_collector","events_processed":13975,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2795,"last_update":"2026-03-21T13:38:19.06897685Z"} +2026/03/21 13:38:24 [metric_collector] {"stage_name":"metric_collector","events_processed":8369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1673.8,"last_update":"2026-03-21T13:38:19.069591116Z"} +2026/03/21 13:38:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3350,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:38:19.07856341Z"} +2026/03/21 13:38:24 [detection_layer] {"stage_name":"detection_layer","events_processed":278,"events_dropped":0,"avg_latency_ms":16.883132707582835,"throughput_eps":0,"last_update":"2026-03-21T13:38:19.209938843Z"} +2026/03/21 13:38:24 ───────────────────────────────────────────────── +2026/03/21 13:38:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:38:29 [transform_engine] {"stage_name":"transform_engine","events_processed":279,"events_dropped":0,"avg_latency_ms":335.0144386763644,"throughput_eps":0,"last_update":"2026-03-21T13:38:24.210151735Z"} +2026/03/21 13:38:29 [log_collector] {"stage_name":"log_collector","events_processed":13975,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2795,"last_update":"2026-03-21T13:38:24.068506634Z"} +2026/03/21 13:38:29 [metric_collector] {"stage_name":"metric_collector","events_processed":8374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1674.8,"last_update":"2026-03-21T13:38:24.068394399Z"} +2026/03/21 13:38:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:38:24.077689981Z"} +2026/03/21 13:38:29 [detection_layer] {"stage_name":"detection_layer","events_processed":279,"events_dropped":0,"avg_latency_ms":17.706463766066268,"throughput_eps":0,"last_update":"2026-03-21T13:38:24.210273018Z"} +2026/03/21 13:38:29 ───────────────────────────────────────────────── +2026/03/21 13:38:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:38:34 [log_collector] {"stage_name":"log_collector","events_processed":13975,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2795,"last_update":"2026-03-21T13:38:29.06845908Z"} +2026/03/21 13:38:34 [metric_collector] {"stage_name":"metric_collector","events_processed":8379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1675.8,"last_update":"2026-03-21T13:38:29.06871547Z"} +2026/03/21 13:38:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:38:29.075510474Z"} +2026/03/21 13:38:34 [detection_layer] {"stage_name":"detection_layer","events_processed":279,"events_dropped":0,"avg_latency_ms":17.706463766066268,"throughput_eps":0,"last_update":"2026-03-21T13:38:29.210902059Z"} +2026/03/21 13:38:34 [transform_engine] {"stage_name":"transform_engine","events_processed":279,"events_dropped":0,"avg_latency_ms":335.0144386763644,"throughput_eps":0,"last_update":"2026-03-21T13:38:29.20972793Z"} +2026/03/21 13:38:34 ───────────────────────────────────────────────── +2026/03/21 13:38:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:38:39 [log_collector] {"stage_name":"log_collector","events_processed":13975,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2795,"last_update":"2026-03-21T13:38:34.06895134Z"} +2026/03/21 13:38:39 [metric_collector] {"stage_name":"metric_collector","events_processed":8384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1676.8,"last_update":"2026-03-21T13:38:34.069647494Z"} +2026/03/21 13:38:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:38:34.078956902Z"} +2026/03/21 13:38:39 [detection_layer] {"stage_name":"detection_layer","events_processed":279,"events_dropped":0,"avg_latency_ms":17.706463766066268,"throughput_eps":0,"last_update":"2026-03-21T13:38:34.210412399Z"} +2026/03/21 13:38:39 [transform_engine] {"stage_name":"transform_engine","events_processed":279,"events_dropped":0,"avg_latency_ms":335.0144386763644,"throughput_eps":0,"last_update":"2026-03-21T13:38:34.210297799Z"} +2026/03/21 13:38:39 ───────────────────────────────────────────────── +2026/03/21 13:38:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:38:44 [log_collector] {"stage_name":"log_collector","events_processed":13975,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2795,"last_update":"2026-03-21T13:38:39.068616209Z"} +2026/03/21 13:38:44 [metric_collector] {"stage_name":"metric_collector","events_processed":8389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1677.8,"last_update":"2026-03-21T13:38:39.069021465Z"} +2026/03/21 13:38:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:38:39.077559947Z"} +2026/03/21 13:38:44 [detection_layer] {"stage_name":"detection_layer","events_processed":279,"events_dropped":0,"avg_latency_ms":17.706463766066268,"throughput_eps":0,"last_update":"2026-03-21T13:38:39.210854596Z"} +2026/03/21 13:38:44 [transform_engine] {"stage_name":"transform_engine","events_processed":279,"events_dropped":0,"avg_latency_ms":335.0144386763644,"throughput_eps":0,"last_update":"2026-03-21T13:38:39.209730182Z"} +2026/03/21 13:38:44 ───────────────────────────────────────────────── +2026/03/21 13:38:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:38:49 [log_collector] {"stage_name":"log_collector","events_processed":13975,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2795,"last_update":"2026-03-21T13:38:44.06807676Z"} +2026/03/21 13:38:49 [metric_collector] {"stage_name":"metric_collector","events_processed":8394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1678.8,"last_update":"2026-03-21T13:38:44.068660508Z"} +2026/03/21 13:38:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3360,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:38:44.078771812Z"} +2026/03/21 13:38:49 [detection_layer] {"stage_name":"detection_layer","events_processed":279,"events_dropped":0,"avg_latency_ms":17.706463766066268,"throughput_eps":0,"last_update":"2026-03-21T13:38:44.210004142Z"} +2026/03/21 13:38:49 [transform_engine] {"stage_name":"transform_engine","events_processed":279,"events_dropped":0,"avg_latency_ms":335.0144386763644,"throughput_eps":0,"last_update":"2026-03-21T13:38:44.210031475Z"} +2026/03/21 13:38:49 ───────────────────────────────────────────────── +2026/03/21 13:38:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:38:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:38:49.077178418Z"} +2026/03/21 13:38:54 [detection_layer] {"stage_name":"detection_layer","events_processed":279,"events_dropped":0,"avg_latency_ms":17.706463766066268,"throughput_eps":0,"last_update":"2026-03-21T13:38:49.210486724Z"} +2026/03/21 13:38:54 [transform_engine] {"stage_name":"transform_engine","events_processed":280,"events_dropped":0,"avg_latency_ms":279.40704894109155,"throughput_eps":0,"last_update":"2026-03-21T13:38:49.267419458Z"} +2026/03/21 13:38:54 [log_collector] {"stage_name":"log_collector","events_processed":13975,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2795,"last_update":"2026-03-21T13:38:49.068084742Z"} +2026/03/21 13:38:54 [metric_collector] {"stage_name":"metric_collector","events_processed":8399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1679.8,"last_update":"2026-03-21T13:38:49.068371201Z"} +2026/03/21 13:38:54 ───────────────────────────────────────────────── +Saved state: 16 clusters, 13976 messages, reason: none +2026/03/21 13:38:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:38:59 [log_collector] {"stage_name":"log_collector","events_processed":13975,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2795,"last_update":"2026-03-21T13:38:54.068260848Z"} +2026/03/21 13:38:59 [metric_collector] {"stage_name":"metric_collector","events_processed":8404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1680.8,"last_update":"2026-03-21T13:38:54.068571272Z"} +2026/03/21 13:38:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:38:54.07838642Z"} +2026/03/21 13:38:59 [detection_layer] {"stage_name":"detection_layer","events_processed":280,"events_dropped":0,"avg_latency_ms":17.606287412853014,"throughput_eps":0,"last_update":"2026-03-21T13:38:54.210642069Z"} +2026/03/21 13:38:59 [transform_engine] {"stage_name":"transform_engine","events_processed":280,"events_dropped":0,"avg_latency_ms":279.40704894109155,"throughput_eps":0,"last_update":"2026-03-21T13:38:54.210691514Z"} +2026/03/21 13:38:59 ───────────────────────────────────────────────── +2026/03/21 13:39:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:39:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:38:59.084616374Z"} +2026/03/21 13:39:04 [detection_layer] {"stage_name":"detection_layer","events_processed":280,"events_dropped":0,"avg_latency_ms":17.606287412853014,"throughput_eps":0,"last_update":"2026-03-21T13:38:59.210835051Z"} +2026/03/21 13:39:04 [transform_engine] {"stage_name":"transform_engine","events_processed":280,"events_dropped":0,"avg_latency_ms":279.40704894109155,"throughput_eps":0,"last_update":"2026-03-21T13:38:59.209754081Z"} +2026/03/21 13:39:04 [log_collector] {"stage_name":"log_collector","events_processed":13980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2796,"last_update":"2026-03-21T13:38:59.070370911Z"} +2026/03/21 13:39:04 [metric_collector] {"stage_name":"metric_collector","events_processed":8409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1681.8,"last_update":"2026-03-21T13:38:59.069151606Z"} +2026/03/21 13:39:04 ───────────────────────────────────────────────── +2026/03/21 13:39:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:39:09 [log_collector] {"stage_name":"log_collector","events_processed":13980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2796,"last_update":"2026-03-21T13:39:04.068725824Z"} +2026/03/21 13:39:09 [metric_collector] {"stage_name":"metric_collector","events_processed":8414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1682.8,"last_update":"2026-03-21T13:39:04.068963319Z"} +2026/03/21 13:39:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:39:04.07605488Z"} +2026/03/21 13:39:09 [detection_layer] {"stage_name":"detection_layer","events_processed":280,"events_dropped":0,"avg_latency_ms":17.606287412853014,"throughput_eps":0,"last_update":"2026-03-21T13:39:04.210307885Z"} +2026/03/21 13:39:09 [transform_engine] {"stage_name":"transform_engine","events_processed":280,"events_dropped":0,"avg_latency_ms":279.40704894109155,"throughput_eps":0,"last_update":"2026-03-21T13:39:04.210294169Z"} +2026/03/21 13:39:09 ───────────────────────────────────────────────── +2026/03/21 13:39:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:39:14 [log_collector] {"stage_name":"log_collector","events_processed":13980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2796,"last_update":"2026-03-21T13:39:09.069104386Z"} +2026/03/21 13:39:14 [metric_collector] {"stage_name":"metric_collector","events_processed":8419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1683.8,"last_update":"2026-03-21T13:39:09.069313676Z"} +2026/03/21 13:39:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:39:09.076602205Z"} +2026/03/21 13:39:14 [detection_layer] {"stage_name":"detection_layer","events_processed":280,"events_dropped":0,"avg_latency_ms":17.606287412853014,"throughput_eps":0,"last_update":"2026-03-21T13:39:09.211206422Z"} +2026/03/21 13:39:14 [transform_engine] {"stage_name":"transform_engine","events_processed":280,"events_dropped":0,"avg_latency_ms":279.40704894109155,"throughput_eps":0,"last_update":"2026-03-21T13:39:09.209722721Z"} +2026/03/21 13:39:14 ───────────────────────────────────────────────── +2026/03/21 13:39:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:39:19 [log_collector] {"stage_name":"log_collector","events_processed":13980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2796,"last_update":"2026-03-21T13:39:14.071233442Z"} +2026/03/21 13:39:19 [metric_collector] {"stage_name":"metric_collector","events_processed":8424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1684.8,"last_update":"2026-03-21T13:39:14.071436991Z"} +2026/03/21 13:39:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:39:14.081114826Z"} +2026/03/21 13:39:19 [detection_layer] {"stage_name":"detection_layer","events_processed":280,"events_dropped":0,"avg_latency_ms":17.606287412853014,"throughput_eps":0,"last_update":"2026-03-21T13:39:14.210329772Z"} +2026/03/21 13:39:19 [transform_engine] {"stage_name":"transform_engine","events_processed":280,"events_dropped":0,"avg_latency_ms":279.40704894109155,"throughput_eps":0,"last_update":"2026-03-21T13:39:14.210379838Z"} +2026/03/21 13:39:19 ───────────────────────────────────────────────── +2026/03/21 13:39:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:39:24 [metric_collector] {"stage_name":"metric_collector","events_processed":8429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1685.8,"last_update":"2026-03-21T13:39:19.068220573Z"} +2026/03/21 13:39:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:39:19.076760719Z"} +2026/03/21 13:39:24 [detection_layer] {"stage_name":"detection_layer","events_processed":280,"events_dropped":0,"avg_latency_ms":17.606287412853014,"throughput_eps":0,"last_update":"2026-03-21T13:39:19.210121115Z"} +2026/03/21 13:39:24 [transform_engine] {"stage_name":"transform_engine","events_processed":281,"events_dropped":0,"avg_latency_ms":541.8036019528734,"throughput_eps":0,"last_update":"2026-03-21T13:39:20.801494086Z"} +2026/03/21 13:39:24 [log_collector] {"stage_name":"log_collector","events_processed":13980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2796,"last_update":"2026-03-21T13:39:19.068074854Z"} +2026/03/21 13:39:24 ───────────────────────────────────────────────── +2026/03/21 13:39:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:39:29 [transform_engine] {"stage_name":"transform_engine","events_processed":281,"events_dropped":0,"avg_latency_ms":541.8036019528734,"throughput_eps":0,"last_update":"2026-03-21T13:39:24.210031226Z"} +2026/03/21 13:39:29 [log_collector] {"stage_name":"log_collector","events_processed":13980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2796,"last_update":"2026-03-21T13:39:24.068501115Z"} +2026/03/21 13:39:29 [metric_collector] {"stage_name":"metric_collector","events_processed":8434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1686.8,"last_update":"2026-03-21T13:39:24.068883567Z"} +2026/03/21 13:39:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:39:24.078725295Z"} +2026/03/21 13:39:29 [detection_layer] {"stage_name":"detection_layer","events_processed":281,"events_dropped":0,"avg_latency_ms":16.92813893028241,"throughput_eps":0,"last_update":"2026-03-21T13:39:24.210020335Z"} +2026/03/21 13:39:29 ───────────────────────────────────────────────── +2026/03/21 13:39:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:39:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:39:29.076196539Z"} +2026/03/21 13:39:34 [detection_layer] {"stage_name":"detection_layer","events_processed":281,"events_dropped":0,"avg_latency_ms":16.92813893028241,"throughput_eps":0,"last_update":"2026-03-21T13:39:29.210464203Z"} +2026/03/21 13:39:34 [transform_engine] {"stage_name":"transform_engine","events_processed":281,"events_dropped":0,"avg_latency_ms":541.8036019528734,"throughput_eps":0,"last_update":"2026-03-21T13:39:29.210473631Z"} +2026/03/21 13:39:34 [log_collector] {"stage_name":"log_collector","events_processed":13980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2796,"last_update":"2026-03-21T13:39:29.068054226Z"} +2026/03/21 13:39:34 [metric_collector] {"stage_name":"metric_collector","events_processed":8439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1687.8,"last_update":"2026-03-21T13:39:29.0683441Z"} +2026/03/21 13:39:34 ───────────────────────────────────────────────── +2026/03/21 13:39:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:39:39 [log_collector] {"stage_name":"log_collector","events_processed":13980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2796,"last_update":"2026-03-21T13:39:34.068515328Z"} +2026/03/21 13:39:39 [metric_collector] {"stage_name":"metric_collector","events_processed":8444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1688.8,"last_update":"2026-03-21T13:39:34.068880016Z"} +2026/03/21 13:39:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3380,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:39:34.077527658Z"} +2026/03/21 13:39:39 [detection_layer] {"stage_name":"detection_layer","events_processed":281,"events_dropped":0,"avg_latency_ms":16.92813893028241,"throughput_eps":0,"last_update":"2026-03-21T13:39:34.210861833Z"} +2026/03/21 13:39:39 [transform_engine] {"stage_name":"transform_engine","events_processed":281,"events_dropped":0,"avg_latency_ms":541.8036019528734,"throughput_eps":0,"last_update":"2026-03-21T13:39:34.209723102Z"} +2026/03/21 13:39:39 ───────────────────────────────────────────────── +2026/03/21 13:39:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:39:44 [log_collector] {"stage_name":"log_collector","events_processed":13980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2796,"last_update":"2026-03-21T13:39:39.068453729Z"} +2026/03/21 13:39:44 [metric_collector] {"stage_name":"metric_collector","events_processed":8449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1689.8,"last_update":"2026-03-21T13:39:39.068669413Z"} +2026/03/21 13:39:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:39:39.073901163Z"} +2026/03/21 13:39:44 [detection_layer] {"stage_name":"detection_layer","events_processed":281,"events_dropped":0,"avg_latency_ms":16.92813893028241,"throughput_eps":0,"last_update":"2026-03-21T13:39:39.210210155Z"} +2026/03/21 13:39:44 [transform_engine] {"stage_name":"transform_engine","events_processed":281,"events_dropped":0,"avg_latency_ms":541.8036019528734,"throughput_eps":0,"last_update":"2026-03-21T13:39:39.210222329Z"} +2026/03/21 13:39:44 ───────────────────────────────────────────────── +2026/03/21 13:39:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:39:49 [log_collector] {"stage_name":"log_collector","events_processed":13991,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2798.2,"last_update":"2026-03-21T13:39:44.068933369Z"} +2026/03/21 13:39:49 [metric_collector] {"stage_name":"metric_collector","events_processed":8454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1690.8,"last_update":"2026-03-21T13:39:44.069153791Z"} +2026/03/21 13:39:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:39:44.07457842Z"} +2026/03/21 13:39:49 [detection_layer] {"stage_name":"detection_layer","events_processed":281,"events_dropped":0,"avg_latency_ms":16.92813893028241,"throughput_eps":0,"last_update":"2026-03-21T13:39:44.20998241Z"} +2026/03/21 13:39:49 [transform_engine] {"stage_name":"transform_engine","events_processed":281,"events_dropped":0,"avg_latency_ms":541.8036019528734,"throughput_eps":0,"last_update":"2026-03-21T13:39:44.20991484Z"} +2026/03/21 13:39:49 ───────────────────────────────────────────────── +2026/03/21 13:39:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:39:54 [log_collector] {"stage_name":"log_collector","events_processed":13991,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2798.2,"last_update":"2026-03-21T13:39:49.068579859Z"} +2026/03/21 13:39:54 [metric_collector] {"stage_name":"metric_collector","events_processed":8459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1691.8,"last_update":"2026-03-21T13:39:49.068903749Z"} +2026/03/21 13:39:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:39:49.076927095Z"} +2026/03/21 13:39:54 [detection_layer] {"stage_name":"detection_layer","events_processed":281,"events_dropped":0,"avg_latency_ms":16.92813893028241,"throughput_eps":0,"last_update":"2026-03-21T13:39:49.211661262Z"} +2026/03/21 13:39:54 [transform_engine] {"stage_name":"transform_engine","events_processed":282,"events_dropped":0,"avg_latency_ms":1015.8624335622987,"throughput_eps":0,"last_update":"2026-03-21T13:39:52.122577879Z"} +2026/03/21 13:39:54 ───────────────────────────────────────────────── +Saved state: 16 clusters, 14297 messages, reason: none +2026/03/21 13:39:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:39:59 [metric_collector] {"stage_name":"metric_collector","events_processed":8464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1692.8,"last_update":"2026-03-21T13:39:54.06919241Z"} +2026/03/21 13:39:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3388,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:39:54.075580364Z"} +2026/03/21 13:39:59 [detection_layer] {"stage_name":"detection_layer","events_processed":282,"events_dropped":0,"avg_latency_ms":17.33571554422593,"throughput_eps":0,"last_update":"2026-03-21T13:39:54.210573267Z"} +2026/03/21 13:39:59 [transform_engine] {"stage_name":"transform_engine","events_processed":282,"events_dropped":0,"avg_latency_ms":1015.8624335622987,"throughput_eps":0,"last_update":"2026-03-21T13:39:54.210579148Z"} +2026/03/21 13:39:59 [log_collector] {"stage_name":"log_collector","events_processed":14050,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2810,"last_update":"2026-03-21T13:39:54.068930649Z"} +2026/03/21 13:39:59 ───────────────────────────────────────────────── +2026/03/21 13:40:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:40:04 [log_collector] {"stage_name":"log_collector","events_processed":14310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2862,"last_update":"2026-03-21T13:39:59.06855481Z"} +2026/03/21 13:40:04 [metric_collector] {"stage_name":"metric_collector","events_processed":8469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1693.8,"last_update":"2026-03-21T13:39:59.068824296Z"} +2026/03/21 13:40:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3390,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:39:59.080205973Z"} +2026/03/21 13:40:04 [detection_layer] {"stage_name":"detection_layer","events_processed":282,"events_dropped":0,"avg_latency_ms":17.33571554422593,"throughput_eps":0,"last_update":"2026-03-21T13:39:59.210447917Z"} +2026/03/21 13:40:04 [transform_engine] {"stage_name":"transform_engine","events_processed":282,"events_dropped":0,"avg_latency_ms":1015.8624335622987,"throughput_eps":0,"last_update":"2026-03-21T13:39:59.210424643Z"} +2026/03/21 13:40:04 ───────────────────────────────────────────────── +2026/03/21 13:40:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:40:09 [log_collector] {"stage_name":"log_collector","events_processed":14343,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2868.6,"last_update":"2026-03-21T13:40:04.068884513Z"} +2026/03/21 13:40:09 [metric_collector] {"stage_name":"metric_collector","events_processed":8474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1694.8,"last_update":"2026-03-21T13:40:04.069395813Z"} +2026/03/21 13:40:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:40:04.090006164Z"} +2026/03/21 13:40:09 [detection_layer] {"stage_name":"detection_layer","events_processed":282,"events_dropped":0,"avg_latency_ms":17.33571554422593,"throughput_eps":0,"last_update":"2026-03-21T13:40:04.210408664Z"} +2026/03/21 13:40:09 [transform_engine] {"stage_name":"transform_engine","events_processed":282,"events_dropped":0,"avg_latency_ms":1015.8624335622987,"throughput_eps":0,"last_update":"2026-03-21T13:40:04.210423623Z"} +2026/03/21 13:40:09 ───────────────────────────────────────────────── +2026/03/21 13:40:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:40:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:40:09.078727528Z"} +2026/03/21 13:40:14 [detection_layer] {"stage_name":"detection_layer","events_processed":282,"events_dropped":0,"avg_latency_ms":17.33571554422593,"throughput_eps":0,"last_update":"2026-03-21T13:40:09.210103525Z"} +2026/03/21 13:40:14 [transform_engine] {"stage_name":"transform_engine","events_processed":282,"events_dropped":0,"avg_latency_ms":1015.8624335622987,"throughput_eps":0,"last_update":"2026-03-21T13:40:09.210115708Z"} +2026/03/21 13:40:14 [log_collector] {"stage_name":"log_collector","events_processed":14343,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2868.6,"last_update":"2026-03-21T13:40:09.069286978Z"} +2026/03/21 13:40:14 [metric_collector] {"stage_name":"metric_collector","events_processed":8479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1695.8,"last_update":"2026-03-21T13:40:09.069511458Z"} +2026/03/21 13:40:14 ───────────────────────────────────────────────── +2026/03/21 13:40:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:40:19 [log_collector] {"stage_name":"log_collector","events_processed":14343,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2868.6,"last_update":"2026-03-21T13:40:14.068721012Z"} +2026/03/21 13:40:19 [metric_collector] {"stage_name":"metric_collector","events_processed":8484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1696.8,"last_update":"2026-03-21T13:40:14.068989315Z"} +2026/03/21 13:40:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:40:14.077689467Z"} +2026/03/21 13:40:19 [detection_layer] {"stage_name":"detection_layer","events_processed":282,"events_dropped":0,"avg_latency_ms":17.33571554422593,"throughput_eps":0,"last_update":"2026-03-21T13:40:14.210023428Z"} +2026/03/21 13:40:19 [transform_engine] {"stage_name":"transform_engine","events_processed":282,"events_dropped":0,"avg_latency_ms":1015.8624335622987,"throughput_eps":0,"last_update":"2026-03-21T13:40:14.210069176Z"} +2026/03/21 13:40:19 ───────────────────────────────────────────────── +2026/03/21 13:40:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:40:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:40:19.078401842Z"} +2026/03/21 13:40:24 [detection_layer] {"stage_name":"detection_layer","events_processed":282,"events_dropped":0,"avg_latency_ms":17.33571554422593,"throughput_eps":0,"last_update":"2026-03-21T13:40:19.210645409Z"} +2026/03/21 13:40:24 [transform_engine] {"stage_name":"transform_engine","events_processed":282,"events_dropped":0,"avg_latency_ms":1015.8624335622987,"throughput_eps":0,"last_update":"2026-03-21T13:40:19.210599782Z"} +2026/03/21 13:40:24 [log_collector] {"stage_name":"log_collector","events_processed":14343,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2868.6,"last_update":"2026-03-21T13:40:19.068639887Z"} +2026/03/21 13:40:24 [metric_collector] {"stage_name":"metric_collector","events_processed":8489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1697.8,"last_update":"2026-03-21T13:40:19.068943668Z"} +2026/03/21 13:40:24 ───────────────────────────────────────────────── +2026/03/21 13:40:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:40:29 [log_collector] {"stage_name":"log_collector","events_processed":14343,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2868.6,"last_update":"2026-03-21T13:40:24.068415487Z"} +2026/03/21 13:40:29 [metric_collector] {"stage_name":"metric_collector","events_processed":8494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1698.8,"last_update":"2026-03-21T13:40:24.068689842Z"} +2026/03/21 13:40:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3400,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:40:24.07853089Z"} +2026/03/21 13:40:29 [detection_layer] {"stage_name":"detection_layer","events_processed":283,"events_dropped":0,"avg_latency_ms":18.278620435380745,"throughput_eps":0,"last_update":"2026-03-21T13:40:24.209895493Z"} +2026/03/21 13:40:29 [transform_engine] {"stage_name":"transform_engine","events_processed":283,"events_dropped":0,"avg_latency_ms":837.5217556498391,"throughput_eps":0,"last_update":"2026-03-21T13:40:24.209796824Z"} +2026/03/21 13:40:29 ───────────────────────────────────────────────── +2026/03/21 13:40:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:40:34 [metric_collector] {"stage_name":"metric_collector","events_processed":8499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1699.8,"last_update":"2026-03-21T13:40:29.06903767Z"} +2026/03/21 13:40:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3402,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:40:29.078393096Z"} +2026/03/21 13:40:34 [detection_layer] {"stage_name":"detection_layer","events_processed":283,"events_dropped":0,"avg_latency_ms":18.278620435380745,"throughput_eps":0,"last_update":"2026-03-21T13:40:29.210700907Z"} +2026/03/21 13:40:34 [transform_engine] {"stage_name":"transform_engine","events_processed":283,"events_dropped":0,"avg_latency_ms":837.5217556498391,"throughput_eps":0,"last_update":"2026-03-21T13:40:29.210659238Z"} +2026/03/21 13:40:34 [log_collector] {"stage_name":"log_collector","events_processed":14343,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2868.6,"last_update":"2026-03-21T13:40:29.06859404Z"} +2026/03/21 13:40:34 ───────────────────────────────────────────────── +2026/03/21 13:40:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:40:39 [log_collector] {"stage_name":"log_collector","events_processed":14343,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2868.6,"last_update":"2026-03-21T13:40:34.069089154Z"} +2026/03/21 13:40:39 [metric_collector] {"stage_name":"metric_collector","events_processed":8504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1700.8,"last_update":"2026-03-21T13:40:34.069474992Z"} +2026/03/21 13:40:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:40:34.078898169Z"} +2026/03/21 13:40:39 [detection_layer] {"stage_name":"detection_layer","events_processed":283,"events_dropped":0,"avg_latency_ms":18.278620435380745,"throughput_eps":0,"last_update":"2026-03-21T13:40:34.210138956Z"} +2026/03/21 13:40:39 [transform_engine] {"stage_name":"transform_engine","events_processed":283,"events_dropped":0,"avg_latency_ms":837.5217556498391,"throughput_eps":0,"last_update":"2026-03-21T13:40:34.21024573Z"} +2026/03/21 13:40:39 ───────────────────────────────────────────────── +2026/03/21 13:40:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:40:44 [metric_collector] {"stage_name":"metric_collector","events_processed":8509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1701.8,"last_update":"2026-03-21T13:40:39.06895325Z"} +2026/03/21 13:40:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:40:39.078681802Z"} +2026/03/21 13:40:44 [detection_layer] {"stage_name":"detection_layer","events_processed":283,"events_dropped":0,"avg_latency_ms":18.278620435380745,"throughput_eps":0,"last_update":"2026-03-21T13:40:39.209976432Z"} +2026/03/21 13:40:44 [transform_engine] {"stage_name":"transform_engine","events_processed":283,"events_dropped":0,"avg_latency_ms":837.5217556498391,"throughput_eps":0,"last_update":"2026-03-21T13:40:39.209924062Z"} +2026/03/21 13:40:44 [log_collector] {"stage_name":"log_collector","events_processed":14343,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2868.6,"last_update":"2026-03-21T13:40:39.068631314Z"} +2026/03/21 13:40:44 ───────────────────────────────────────────────── +2026/03/21 13:40:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:40:49 [log_collector] {"stage_name":"log_collector","events_processed":14343,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2868.6,"last_update":"2026-03-21T13:40:44.068123751Z"} +2026/03/21 13:40:49 [metric_collector] {"stage_name":"metric_collector","events_processed":8514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1702.8,"last_update":"2026-03-21T13:40:44.068569756Z"} +2026/03/21 13:40:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3408,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:40:44.077950602Z"} +2026/03/21 13:40:49 [detection_layer] {"stage_name":"detection_layer","events_processed":283,"events_dropped":0,"avg_latency_ms":18.278620435380745,"throughput_eps":0,"last_update":"2026-03-21T13:40:44.210223905Z"} +2026/03/21 13:40:49 [transform_engine] {"stage_name":"transform_engine","events_processed":283,"events_dropped":0,"avg_latency_ms":837.5217556498391,"throughput_eps":0,"last_update":"2026-03-21T13:40:44.210413289Z"} +2026/03/21 13:40:49 ───────────────────────────────────────────────── +2026/03/21 13:40:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:40:54 [log_collector] {"stage_name":"log_collector","events_processed":14343,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2868.6,"last_update":"2026-03-21T13:40:49.068095268Z"} +2026/03/21 13:40:54 [metric_collector] {"stage_name":"metric_collector","events_processed":8519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1703.8,"last_update":"2026-03-21T13:40:49.068289058Z"} +2026/03/21 13:40:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:40:49.07982921Z"} +2026/03/21 13:40:54 [detection_layer] {"stage_name":"detection_layer","events_processed":283,"events_dropped":0,"avg_latency_ms":18.278620435380745,"throughput_eps":0,"last_update":"2026-03-21T13:40:49.210098757Z"} +2026/03/21 13:40:54 [transform_engine] {"stage_name":"transform_engine","events_processed":284,"events_dropped":0,"avg_latency_ms":684.0756983198713,"throughput_eps":0,"last_update":"2026-03-21T13:40:49.280405606Z"} +2026/03/21 13:40:54 ───────────────────────────────────────────────── +2026/03/21 13:40:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:40:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:40:54.074922176Z"} +2026/03/21 13:40:59 [detection_layer] {"stage_name":"detection_layer","events_processed":284,"events_dropped":0,"avg_latency_ms":18.696131348304597,"throughput_eps":0,"last_update":"2026-03-21T13:40:54.210222849Z"} +2026/03/21 13:40:59 [transform_engine] {"stage_name":"transform_engine","events_processed":284,"events_dropped":0,"avg_latency_ms":684.0756983198713,"throughput_eps":0,"last_update":"2026-03-21T13:40:54.210190667Z"} +2026/03/21 13:40:59 [log_collector] {"stage_name":"log_collector","events_processed":14343,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2868.6,"last_update":"2026-03-21T13:40:54.068153093Z"} +2026/03/21 13:40:59 [metric_collector] {"stage_name":"metric_collector","events_processed":8524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1704.8,"last_update":"2026-03-21T13:40:54.068306416Z"} +2026/03/21 13:40:59 ───────────────────────────────────────────────── +2026/03/21 13:41:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:41:04 [log_collector] {"stage_name":"log_collector","events_processed":14343,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2868.6,"last_update":"2026-03-21T13:40:59.068682063Z"} +2026/03/21 13:41:04 [metric_collector] {"stage_name":"metric_collector","events_processed":8529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1705.8,"last_update":"2026-03-21T13:40:59.068890562Z"} +2026/03/21 13:41:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:40:59.078717292Z"} +2026/03/21 13:41:04 [detection_layer] {"stage_name":"detection_layer","events_processed":284,"events_dropped":0,"avg_latency_ms":18.696131348304597,"throughput_eps":0,"last_update":"2026-03-21T13:40:59.210020218Z"} +2026/03/21 13:41:04 [transform_engine] {"stage_name":"transform_engine","events_processed":284,"events_dropped":0,"avg_latency_ms":684.0756983198713,"throughput_eps":0,"last_update":"2026-03-21T13:40:59.210058291Z"} +2026/03/21 13:41:04 ───────────────────────────────────────────────── +2026/03/21 13:41:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:41:09 [log_collector] {"stage_name":"log_collector","events_processed":14343,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2868.6,"last_update":"2026-03-21T13:41:04.068226017Z"} +2026/03/21 13:41:09 [metric_collector] {"stage_name":"metric_collector","events_processed":8534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1706.8,"last_update":"2026-03-21T13:41:04.069084051Z"} +2026/03/21 13:41:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:41:04.078067736Z"} +2026/03/21 13:41:09 [detection_layer] {"stage_name":"detection_layer","events_processed":284,"events_dropped":0,"avg_latency_ms":18.696131348304597,"throughput_eps":0,"last_update":"2026-03-21T13:41:04.210336081Z"} +2026/03/21 13:41:09 [transform_engine] {"stage_name":"transform_engine","events_processed":284,"events_dropped":0,"avg_latency_ms":684.0756983198713,"throughput_eps":0,"last_update":"2026-03-21T13:41:04.210371941Z"} +2026/03/21 13:41:09 ───────────────────────────────────────────────── +2026/03/21 13:41:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:41:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:41:09.077993904Z"} +2026/03/21 13:41:14 [detection_layer] {"stage_name":"detection_layer","events_processed":284,"events_dropped":0,"avg_latency_ms":18.696131348304597,"throughput_eps":0,"last_update":"2026-03-21T13:41:09.210228194Z"} +2026/03/21 13:41:14 [transform_engine] {"stage_name":"transform_engine","events_processed":284,"events_dropped":0,"avg_latency_ms":684.0756983198713,"throughput_eps":0,"last_update":"2026-03-21T13:41:09.210248764Z"} +2026/03/21 13:41:14 [log_collector] {"stage_name":"log_collector","events_processed":14343,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2868.6,"last_update":"2026-03-21T13:41:09.068549636Z"} +2026/03/21 13:41:14 [metric_collector] {"stage_name":"metric_collector","events_processed":8539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1707.8,"last_update":"2026-03-21T13:41:09.068533586Z"} +2026/03/21 13:41:14 ───────────────────────────────────────────────── +2026/03/21 13:41:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:41:19 [log_collector] {"stage_name":"log_collector","events_processed":14343,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2868.6,"last_update":"2026-03-21T13:41:14.068694437Z"} +2026/03/21 13:41:19 [metric_collector] {"stage_name":"metric_collector","events_processed":8544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1708.8,"last_update":"2026-03-21T13:41:14.068942052Z"} +2026/03/21 13:41:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3420,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:41:14.078200552Z"} +2026/03/21 13:41:19 [detection_layer] {"stage_name":"detection_layer","events_processed":284,"events_dropped":0,"avg_latency_ms":18.696131348304597,"throughput_eps":0,"last_update":"2026-03-21T13:41:14.210465541Z"} +2026/03/21 13:41:19 [transform_engine] {"stage_name":"transform_engine","events_processed":284,"events_dropped":0,"avg_latency_ms":684.0756983198713,"throughput_eps":0,"last_update":"2026-03-21T13:41:14.210420916Z"} +2026/03/21 13:41:19 ───────────────────────────────────────────────── +2026/03/21 13:41:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:41:24 [log_collector] {"stage_name":"log_collector","events_processed":14343,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2868.6,"last_update":"2026-03-21T13:41:19.06866785Z"} +2026/03/21 13:41:24 [metric_collector] {"stage_name":"metric_collector","events_processed":8549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1709.8,"last_update":"2026-03-21T13:41:19.069105939Z"} +2026/03/21 13:41:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:41:19.078104152Z"} +2026/03/21 13:41:24 [detection_layer] {"stage_name":"detection_layer","events_processed":284,"events_dropped":0,"avg_latency_ms":18.696131348304597,"throughput_eps":0,"last_update":"2026-03-21T13:41:19.210490905Z"} +2026/03/21 13:41:24 [transform_engine] {"stage_name":"transform_engine","events_processed":285,"events_dropped":0,"avg_latency_ms":562.229969455897,"throughput_eps":0,"last_update":"2026-03-21T13:41:19.285361915Z"} +2026/03/21 13:41:24 ───────────────────────────────────────────────── +Saved state: 16 clusters, 14344 messages, reason: none +2026/03/21 13:41:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:41:29 [log_collector] {"stage_name":"log_collector","events_processed":14343,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2868.6,"last_update":"2026-03-21T13:41:24.068754661Z"} +2026/03/21 13:41:29 [metric_collector] {"stage_name":"metric_collector","events_processed":8554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1710.8,"last_update":"2026-03-21T13:41:24.069086558Z"} +2026/03/21 13:41:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:41:24.078781345Z"} +2026/03/21 13:41:29 [detection_layer] {"stage_name":"detection_layer","events_processed":285,"events_dropped":0,"avg_latency_ms":19.22088747864368,"throughput_eps":0,"last_update":"2026-03-21T13:41:24.210011552Z"} +2026/03/21 13:41:29 [transform_engine] {"stage_name":"transform_engine","events_processed":285,"events_dropped":0,"avg_latency_ms":562.229969455897,"throughput_eps":0,"last_update":"2026-03-21T13:41:24.210020008Z"} +2026/03/21 13:41:29 ───────────────────────────────────────────────── +2026/03/21 13:41:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:41:34 [log_collector] {"stage_name":"log_collector","events_processed":14346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2869.2,"last_update":"2026-03-21T13:41:29.068696078Z"} +2026/03/21 13:41:34 [metric_collector] {"stage_name":"metric_collector","events_processed":8559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1711.8,"last_update":"2026-03-21T13:41:29.068995592Z"} +2026/03/21 13:41:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:41:29.077668573Z"} +2026/03/21 13:41:34 [detection_layer] {"stage_name":"detection_layer","events_processed":285,"events_dropped":0,"avg_latency_ms":19.22088747864368,"throughput_eps":0,"last_update":"2026-03-21T13:41:29.209876552Z"} +2026/03/21 13:41:34 [transform_engine] {"stage_name":"transform_engine","events_processed":285,"events_dropped":0,"avg_latency_ms":562.229969455897,"throughput_eps":0,"last_update":"2026-03-21T13:41:29.209888255Z"} +2026/03/21 13:41:34 ───────────────────────────────────────────────── +2026/03/21 13:41:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:41:39 [transform_engine] {"stage_name":"transform_engine","events_processed":285,"events_dropped":0,"avg_latency_ms":562.229969455897,"throughput_eps":0,"last_update":"2026-03-21T13:41:34.210024474Z"} +2026/03/21 13:41:39 [log_collector] {"stage_name":"log_collector","events_processed":14346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2869.2,"last_update":"2026-03-21T13:41:34.068583231Z"} +2026/03/21 13:41:39 [metric_collector] {"stage_name":"metric_collector","events_processed":8564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1712.8,"last_update":"2026-03-21T13:41:34.068788554Z"} +2026/03/21 13:41:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:41:34.076751775Z"} +2026/03/21 13:41:39 [detection_layer] {"stage_name":"detection_layer","events_processed":285,"events_dropped":0,"avg_latency_ms":19.22088747864368,"throughput_eps":0,"last_update":"2026-03-21T13:41:34.210045805Z"} +2026/03/21 13:41:39 ───────────────────────────────────────────────── +2026/03/21 13:41:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:41:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:41:39.078396707Z"} +2026/03/21 13:41:44 [detection_layer] {"stage_name":"detection_layer","events_processed":285,"events_dropped":0,"avg_latency_ms":19.22088747864368,"throughput_eps":0,"last_update":"2026-03-21T13:41:39.209977757Z"} +2026/03/21 13:41:44 [transform_engine] {"stage_name":"transform_engine","events_processed":285,"events_dropped":0,"avg_latency_ms":562.229969455897,"throughput_eps":0,"last_update":"2026-03-21T13:41:39.20998409Z"} +2026/03/21 13:41:44 [log_collector] {"stage_name":"log_collector","events_processed":14363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2872.6,"last_update":"2026-03-21T13:41:39.06863859Z"} +2026/03/21 13:41:44 [metric_collector] {"stage_name":"metric_collector","events_processed":8569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1713.8,"last_update":"2026-03-21T13:41:39.068691411Z"} +2026/03/21 13:41:44 ───────────────────────────────────────────────── +2026/03/21 13:41:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:41:49 [detection_layer] {"stage_name":"detection_layer","events_processed":285,"events_dropped":0,"avg_latency_ms":19.22088747864368,"throughput_eps":0,"last_update":"2026-03-21T13:41:44.210806507Z"} +2026/03/21 13:41:49 [transform_engine] {"stage_name":"transform_engine","events_processed":285,"events_dropped":0,"avg_latency_ms":562.229969455897,"throughput_eps":0,"last_update":"2026-03-21T13:41:44.209645654Z"} +2026/03/21 13:41:49 [log_collector] {"stage_name":"log_collector","events_processed":14373,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2874.6,"last_update":"2026-03-21T13:41:44.06874163Z"} +2026/03/21 13:41:49 [metric_collector] {"stage_name":"metric_collector","events_processed":8573,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1714.6,"last_update":"2026-03-21T13:41:44.068594929Z"} +2026/03/21 13:41:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:41:44.078485932Z"} +2026/03/21 13:41:49 ───────────────────────────────────────────────── +2026/03/21 13:41:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:41:54 [log_collector] {"stage_name":"log_collector","events_processed":14376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2875.2,"last_update":"2026-03-21T13:41:49.068405521Z"} +2026/03/21 13:41:54 [metric_collector] {"stage_name":"metric_collector","events_processed":8579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1715.8,"last_update":"2026-03-21T13:41:49.06853598Z"} +2026/03/21 13:41:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:41:49.080124064Z"} +2026/03/21 13:41:54 [detection_layer] {"stage_name":"detection_layer","events_processed":285,"events_dropped":0,"avg_latency_ms":19.22088747864368,"throughput_eps":0,"last_update":"2026-03-21T13:41:49.210363685Z"} +2026/03/21 13:41:54 [transform_engine] {"stage_name":"transform_engine","events_processed":286,"events_dropped":0,"avg_latency_ms":472.91813736471767,"throughput_eps":0,"last_update":"2026-03-21T13:41:49.326045755Z"} +2026/03/21 13:41:54 ───────────────────────────────────────────────── +2026/03/21 13:41:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:41:59 [log_collector] {"stage_name":"log_collector","events_processed":14387,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2877.4,"last_update":"2026-03-21T13:41:54.068849719Z"} +2026/03/21 13:41:59 [metric_collector] {"stage_name":"metric_collector","events_processed":8584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1716.8,"last_update":"2026-03-21T13:41:54.069080902Z"} +2026/03/21 13:41:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:41:54.076999467Z"} +2026/03/21 13:41:59 [detection_layer] {"stage_name":"detection_layer","events_processed":286,"events_dropped":0,"avg_latency_ms":18.525852982914945,"throughput_eps":0,"last_update":"2026-03-21T13:41:54.210464234Z"} +2026/03/21 13:41:59 [transform_engine] {"stage_name":"transform_engine","events_processed":286,"events_dropped":0,"avg_latency_ms":472.91813736471767,"throughput_eps":0,"last_update":"2026-03-21T13:41:54.210441591Z"} +2026/03/21 13:41:59 ───────────────────────────────────────────────── +2026/03/21 13:42:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:42:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:41:59.078314904Z"} +2026/03/21 13:42:04 [detection_layer] {"stage_name":"detection_layer","events_processed":286,"events_dropped":0,"avg_latency_ms":18.525852982914945,"throughput_eps":0,"last_update":"2026-03-21T13:41:59.210586466Z"} +2026/03/21 13:42:04 [transform_engine] {"stage_name":"transform_engine","events_processed":286,"events_dropped":0,"avg_latency_ms":472.91813736471767,"throughput_eps":0,"last_update":"2026-03-21T13:41:59.210595713Z"} +2026/03/21 13:42:04 [log_collector] {"stage_name":"log_collector","events_processed":14387,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2877.4,"last_update":"2026-03-21T13:41:59.068681424Z"} +2026/03/21 13:42:04 [metric_collector] {"stage_name":"metric_collector","events_processed":8589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1717.8,"last_update":"2026-03-21T13:41:59.069302603Z"} +2026/03/21 13:42:04 ───────────────────────────────────────────────── +2026/03/21 13:42:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:42:09 [log_collector] {"stage_name":"log_collector","events_processed":14387,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2877.4,"last_update":"2026-03-21T13:42:04.068069663Z"} +2026/03/21 13:42:09 [metric_collector] {"stage_name":"metric_collector","events_processed":8594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1718.8,"last_update":"2026-03-21T13:42:04.06833467Z"} +2026/03/21 13:42:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:42:04.076864186Z"} +2026/03/21 13:42:09 [detection_layer] {"stage_name":"detection_layer","events_processed":286,"events_dropped":0,"avg_latency_ms":18.525852982914945,"throughput_eps":0,"last_update":"2026-03-21T13:42:04.21012873Z"} +2026/03/21 13:42:09 [transform_engine] {"stage_name":"transform_engine","events_processed":286,"events_dropped":0,"avg_latency_ms":472.91813736471767,"throughput_eps":0,"last_update":"2026-03-21T13:42:04.210141354Z"} +2026/03/21 13:42:09 ───────────────────────────────────────────────── +2026/03/21 13:42:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:42:14 [metric_collector] {"stage_name":"metric_collector","events_processed":8599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1719.8,"last_update":"2026-03-21T13:42:09.069001591Z"} +2026/03/21 13:42:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3442,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:42:09.078495493Z"} +2026/03/21 13:42:14 [detection_layer] {"stage_name":"detection_layer","events_processed":286,"events_dropped":0,"avg_latency_ms":18.525852982914945,"throughput_eps":0,"last_update":"2026-03-21T13:42:09.21102555Z"} +2026/03/21 13:42:14 [transform_engine] {"stage_name":"transform_engine","events_processed":286,"events_dropped":0,"avg_latency_ms":472.91813736471767,"throughput_eps":0,"last_update":"2026-03-21T13:42:09.209756951Z"} +2026/03/21 13:42:14 [log_collector] {"stage_name":"log_collector","events_processed":14387,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2877.4,"last_update":"2026-03-21T13:42:09.068588469Z"} +2026/03/21 13:42:14 ───────────────────────────────────────────────── +2026/03/21 13:42:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:42:19 [detection_layer] {"stage_name":"detection_layer","events_processed":286,"events_dropped":0,"avg_latency_ms":18.525852982914945,"throughput_eps":0,"last_update":"2026-03-21T13:42:14.211002219Z"} +2026/03/21 13:42:19 [transform_engine] {"stage_name":"transform_engine","events_processed":286,"events_dropped":0,"avg_latency_ms":472.91813736471767,"throughput_eps":0,"last_update":"2026-03-21T13:42:14.209797602Z"} +2026/03/21 13:42:19 [log_collector] {"stage_name":"log_collector","events_processed":14387,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2877.4,"last_update":"2026-03-21T13:42:14.06886348Z"} +2026/03/21 13:42:19 [metric_collector] {"stage_name":"metric_collector","events_processed":8604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1720.8,"last_update":"2026-03-21T13:42:14.069120282Z"} +2026/03/21 13:42:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:42:14.077548874Z"} +2026/03/21 13:42:19 ───────────────────────────────────────────────── +2026/03/21 13:42:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:42:24 [log_collector] {"stage_name":"log_collector","events_processed":14387,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2877.4,"last_update":"2026-03-21T13:42:19.068596794Z"} +2026/03/21 13:42:24 [metric_collector] {"stage_name":"metric_collector","events_processed":8609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1721.8,"last_update":"2026-03-21T13:42:19.068878984Z"} +2026/03/21 13:42:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3446,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:42:19.078859659Z"} +2026/03/21 13:42:24 [detection_layer] {"stage_name":"detection_layer","events_processed":286,"events_dropped":0,"avg_latency_ms":18.525852982914945,"throughput_eps":0,"last_update":"2026-03-21T13:42:19.210082142Z"} +2026/03/21 13:42:24 [transform_engine] {"stage_name":"transform_engine","events_processed":287,"events_dropped":0,"avg_latency_ms":405.75082669177414,"throughput_eps":0,"last_update":"2026-03-21T13:42:19.347276121Z"} +2026/03/21 13:42:24 ───────────────────────────────────────────────── +2026/03/21 13:42:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:42:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:42:24.078467915Z"} +2026/03/21 13:42:29 [detection_layer] {"stage_name":"detection_layer","events_processed":287,"events_dropped":0,"avg_latency_ms":19.130546386331957,"throughput_eps":0,"last_update":"2026-03-21T13:42:24.210762212Z"} +2026/03/21 13:42:29 [transform_engine] {"stage_name":"transform_engine","events_processed":287,"events_dropped":0,"avg_latency_ms":405.75082669177414,"throughput_eps":0,"last_update":"2026-03-21T13:42:24.210642342Z"} +2026/03/21 13:42:29 [log_collector] {"stage_name":"log_collector","events_processed":14387,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2877.4,"last_update":"2026-03-21T13:42:24.068252651Z"} +2026/03/21 13:42:29 [metric_collector] {"stage_name":"metric_collector","events_processed":8614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1722.8,"last_update":"2026-03-21T13:42:24.068612671Z"} +2026/03/21 13:42:29 ───────────────────────────────────────────────── +2026/03/21 13:42:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:42:34 [log_collector] {"stage_name":"log_collector","events_processed":14387,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2877.4,"last_update":"2026-03-21T13:42:29.068843542Z"} +2026/03/21 13:42:34 [metric_collector] {"stage_name":"metric_collector","events_processed":8619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1723.8,"last_update":"2026-03-21T13:42:29.069094232Z"} +2026/03/21 13:42:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:42:29.077976222Z"} +2026/03/21 13:42:34 [detection_layer] {"stage_name":"detection_layer","events_processed":287,"events_dropped":0,"avg_latency_ms":19.130546386331957,"throughput_eps":0,"last_update":"2026-03-21T13:42:29.210287441Z"} +2026/03/21 13:42:34 [transform_engine] {"stage_name":"transform_engine","events_processed":287,"events_dropped":0,"avg_latency_ms":405.75082669177414,"throughput_eps":0,"last_update":"2026-03-21T13:42:29.210345923Z"} +2026/03/21 13:42:34 ───────────────────────────────────────────────── +2026/03/21 13:42:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:42:39 [log_collector] {"stage_name":"log_collector","events_processed":14387,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2877.4,"last_update":"2026-03-21T13:42:34.068725967Z"} +2026/03/21 13:42:39 [metric_collector] {"stage_name":"metric_collector","events_processed":8624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1724.8,"last_update":"2026-03-21T13:42:34.068917234Z"} +2026/03/21 13:42:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3452,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:42:34.077709222Z"} +2026/03/21 13:42:39 [detection_layer] {"stage_name":"detection_layer","events_processed":287,"events_dropped":0,"avg_latency_ms":19.130546386331957,"throughput_eps":0,"last_update":"2026-03-21T13:42:34.210072901Z"} +2026/03/21 13:42:39 [transform_engine] {"stage_name":"transform_engine","events_processed":287,"events_dropped":0,"avg_latency_ms":405.75082669177414,"throughput_eps":0,"last_update":"2026-03-21T13:42:34.210107647Z"} +2026/03/21 13:42:39 ───────────────────────────────────────────────── +2026/03/21 13:42:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:42:44 [transform_engine] {"stage_name":"transform_engine","events_processed":287,"events_dropped":0,"avg_latency_ms":405.75082669177414,"throughput_eps":0,"last_update":"2026-03-21T13:42:39.209836842Z"} +2026/03/21 13:42:44 [log_collector] {"stage_name":"log_collector","events_processed":14387,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2877.4,"last_update":"2026-03-21T13:42:39.068937045Z"} +2026/03/21 13:42:44 [metric_collector] {"stage_name":"metric_collector","events_processed":8629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1725.8,"last_update":"2026-03-21T13:42:39.069232761Z"} +2026/03/21 13:42:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:42:39.077625394Z"} +2026/03/21 13:42:44 [detection_layer] {"stage_name":"detection_layer","events_processed":287,"events_dropped":0,"avg_latency_ms":19.130546386331957,"throughput_eps":0,"last_update":"2026-03-21T13:42:39.210021475Z"} +2026/03/21 13:42:44 ───────────────────────────────────────────────── +2026/03/21 13:42:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:42:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:42:44.078438865Z"} +2026/03/21 13:42:49 [detection_layer] {"stage_name":"detection_layer","events_processed":287,"events_dropped":0,"avg_latency_ms":19.130546386331957,"throughput_eps":0,"last_update":"2026-03-21T13:42:44.209867223Z"} +2026/03/21 13:42:49 [transform_engine] {"stage_name":"transform_engine","events_processed":287,"events_dropped":0,"avg_latency_ms":405.75082669177414,"throughput_eps":0,"last_update":"2026-03-21T13:42:44.20970877Z"} +2026/03/21 13:42:49 [log_collector] {"stage_name":"log_collector","events_processed":14387,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2877.4,"last_update":"2026-03-21T13:42:44.068645489Z"} +2026/03/21 13:42:49 [metric_collector] {"stage_name":"metric_collector","events_processed":8634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1726.8,"last_update":"2026-03-21T13:42:44.069116031Z"} +2026/03/21 13:42:49 ───────────────────────────────────────────────── +Saved state: 16 clusters, 14388 messages, reason: none +2026/03/21 13:42:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:42:54 [log_collector] {"stage_name":"log_collector","events_processed":14387,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2877.4,"last_update":"2026-03-21T13:42:49.068875084Z"} +2026/03/21 13:42:54 [metric_collector] {"stage_name":"metric_collector","events_processed":8639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1727.8,"last_update":"2026-03-21T13:42:49.069120284Z"} +2026/03/21 13:42:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:42:49.078656557Z"} +2026/03/21 13:42:54 [detection_layer] {"stage_name":"detection_layer","events_processed":287,"events_dropped":0,"avg_latency_ms":19.130546386331957,"throughput_eps":0,"last_update":"2026-03-21T13:42:49.209934126Z"} +2026/03/21 13:42:54 [transform_engine] {"stage_name":"transform_engine","events_processed":287,"events_dropped":0,"avg_latency_ms":405.75082669177414,"throughput_eps":0,"last_update":"2026-03-21T13:42:49.210037854Z"} +2026/03/21 13:42:54 ───────────────────────────────────────────────── +2026/03/21 13:42:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:42:59 [detection_layer] {"stage_name":"detection_layer","events_processed":288,"events_dropped":0,"avg_latency_ms":19.419596309065568,"throughput_eps":0,"last_update":"2026-03-21T13:42:54.210447406Z"} +2026/03/21 13:42:59 [transform_engine] {"stage_name":"transform_engine","events_processed":288,"events_dropped":0,"avg_latency_ms":339.16129755341933,"throughput_eps":0,"last_update":"2026-03-21T13:42:54.210431526Z"} +2026/03/21 13:42:59 [log_collector] {"stage_name":"log_collector","events_processed":14392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2878.4,"last_update":"2026-03-21T13:42:54.068250555Z"} +2026/03/21 13:42:59 [metric_collector] {"stage_name":"metric_collector","events_processed":8644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1728.8,"last_update":"2026-03-21T13:42:54.069661266Z"} +2026/03/21 13:42:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:42:54.080366159Z"} +2026/03/21 13:42:59 ───────────────────────────────────────────────── +2026/03/21 13:43:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:43:04 [transform_engine] {"stage_name":"transform_engine","events_processed":288,"events_dropped":0,"avg_latency_ms":339.16129755341933,"throughput_eps":0,"last_update":"2026-03-21T13:42:59.210333876Z"} +2026/03/21 13:43:04 [log_collector] {"stage_name":"log_collector","events_processed":14392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2878.4,"last_update":"2026-03-21T13:42:59.068764618Z"} +2026/03/21 13:43:04 [metric_collector] {"stage_name":"metric_collector","events_processed":8649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1729.8,"last_update":"2026-03-21T13:42:59.068890449Z"} +2026/03/21 13:43:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:42:59.076972086Z"} +2026/03/21 13:43:04 [detection_layer] {"stage_name":"detection_layer","events_processed":288,"events_dropped":0,"avg_latency_ms":19.419596309065568,"throughput_eps":0,"last_update":"2026-03-21T13:42:59.210315772Z"} +2026/03/21 13:43:04 ───────────────────────────────────────────────── +2026/03/21 13:43:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:43:09 [detection_layer] {"stage_name":"detection_layer","events_processed":288,"events_dropped":0,"avg_latency_ms":19.419596309065568,"throughput_eps":0,"last_update":"2026-03-21T13:43:04.210548569Z"} +2026/03/21 13:43:09 [transform_engine] {"stage_name":"transform_engine","events_processed":288,"events_dropped":0,"avg_latency_ms":339.16129755341933,"throughput_eps":0,"last_update":"2026-03-21T13:43:04.210532719Z"} +2026/03/21 13:43:09 [log_collector] {"stage_name":"log_collector","events_processed":14392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2878.4,"last_update":"2026-03-21T13:43:04.068063977Z"} +2026/03/21 13:43:09 [metric_collector] {"stage_name":"metric_collector","events_processed":8654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1730.8,"last_update":"2026-03-21T13:43:04.068464203Z"} +2026/03/21 13:43:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:43:04.075272082Z"} +2026/03/21 13:43:09 ───────────────────────────────────────────────── +2026/03/21 13:43:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:43:14 [log_collector] {"stage_name":"log_collector","events_processed":14392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2878.4,"last_update":"2026-03-21T13:43:09.068728342Z"} +2026/03/21 13:43:14 [metric_collector] {"stage_name":"metric_collector","events_processed":8659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1731.8,"last_update":"2026-03-21T13:43:09.069143877Z"} +2026/03/21 13:43:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:43:09.077392254Z"} +2026/03/21 13:43:14 [detection_layer] {"stage_name":"detection_layer","events_processed":288,"events_dropped":0,"avg_latency_ms":19.419596309065568,"throughput_eps":0,"last_update":"2026-03-21T13:43:09.209887585Z"} +2026/03/21 13:43:14 [transform_engine] {"stage_name":"transform_engine","events_processed":288,"events_dropped":0,"avg_latency_ms":339.16129755341933,"throughput_eps":0,"last_update":"2026-03-21T13:43:09.209913205Z"} +2026/03/21 13:43:14 ───────────────────────────────────────────────── +2026/03/21 13:43:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:43:19 [transform_engine] {"stage_name":"transform_engine","events_processed":288,"events_dropped":0,"avg_latency_ms":339.16129755341933,"throughput_eps":0,"last_update":"2026-03-21T13:43:14.209726039Z"} +2026/03/21 13:43:19 [log_collector] {"stage_name":"log_collector","events_processed":14392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2878.4,"last_update":"2026-03-21T13:43:14.068158273Z"} +2026/03/21 13:43:19 [metric_collector] {"stage_name":"metric_collector","events_processed":8664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1732.8,"last_update":"2026-03-21T13:43:14.068430503Z"} +2026/03/21 13:43:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:43:14.075652054Z"} +2026/03/21 13:43:19 [detection_layer] {"stage_name":"detection_layer","events_processed":288,"events_dropped":0,"avg_latency_ms":19.419596309065568,"throughput_eps":0,"last_update":"2026-03-21T13:43:14.210408225Z"} +2026/03/21 13:43:19 ───────────────────────────────────────────────── +2026/03/21 13:43:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:43:24 [log_collector] {"stage_name":"log_collector","events_processed":14392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2878.4,"last_update":"2026-03-21T13:43:19.068808383Z"} +2026/03/21 13:43:24 [metric_collector] {"stage_name":"metric_collector","events_processed":8669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1733.8,"last_update":"2026-03-21T13:43:19.069234018Z"} +2026/03/21 13:43:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3470,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:43:19.076517387Z"} +2026/03/21 13:43:24 [detection_layer] {"stage_name":"detection_layer","events_processed":288,"events_dropped":0,"avg_latency_ms":19.419596309065568,"throughput_eps":0,"last_update":"2026-03-21T13:43:19.210810762Z"} +2026/03/21 13:43:24 [transform_engine] {"stage_name":"transform_engine","events_processed":289,"events_dropped":0,"avg_latency_ms":670.9129276427354,"throughput_eps":0,"last_update":"2026-03-21T13:43:21.207609432Z"} +2026/03/21 13:43:24 ───────────────────────────────────────────────── +2026/03/21 13:43:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:43:29 [log_collector] {"stage_name":"log_collector","events_processed":14392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2878.4,"last_update":"2026-03-21T13:43:24.068970549Z"} +2026/03/21 13:43:29 [metric_collector] {"stage_name":"metric_collector","events_processed":8674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1734.8,"last_update":"2026-03-21T13:43:24.068928148Z"} +2026/03/21 13:43:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:43:24.075734143Z"} +2026/03/21 13:43:29 [detection_layer] {"stage_name":"detection_layer","events_processed":289,"events_dropped":0,"avg_latency_ms":18.952008047252455,"throughput_eps":0,"last_update":"2026-03-21T13:43:24.209983864Z"} +2026/03/21 13:43:29 [transform_engine] {"stage_name":"transform_engine","events_processed":289,"events_dropped":0,"avg_latency_ms":670.9129276427354,"throughput_eps":0,"last_update":"2026-03-21T13:43:24.209952955Z"} +2026/03/21 13:43:29 ───────────────────────────────────────────────── +2026/03/21 13:43:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:43:34 [detection_layer] {"stage_name":"detection_layer","events_processed":289,"events_dropped":0,"avg_latency_ms":18.952008047252455,"throughput_eps":0,"last_update":"2026-03-21T13:43:29.210290858Z"} +2026/03/21 13:43:34 [transform_engine] {"stage_name":"transform_engine","events_processed":289,"events_dropped":0,"avg_latency_ms":670.9129276427354,"throughput_eps":0,"last_update":"2026-03-21T13:43:29.210253546Z"} +2026/03/21 13:43:34 [log_collector] {"stage_name":"log_collector","events_processed":14392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2878.4,"last_update":"2026-03-21T13:43:29.06880626Z"} +2026/03/21 13:43:34 [metric_collector] {"stage_name":"metric_collector","events_processed":8679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1735.8,"last_update":"2026-03-21T13:43:29.06893131Z"} +2026/03/21 13:43:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:43:29.076164523Z"} +2026/03/21 13:43:34 ───────────────────────────────────────────────── +2026/03/21 13:43:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:43:39 [log_collector] {"stage_name":"log_collector","events_processed":14392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2878.4,"last_update":"2026-03-21T13:43:34.068693595Z"} +2026/03/21 13:43:39 [metric_collector] {"stage_name":"metric_collector","events_processed":8684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1736.8,"last_update":"2026-03-21T13:43:34.068775361Z"} +2026/03/21 13:43:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3476,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:43:34.077027095Z"} +2026/03/21 13:43:39 [detection_layer] {"stage_name":"detection_layer","events_processed":289,"events_dropped":0,"avg_latency_ms":18.952008047252455,"throughput_eps":0,"last_update":"2026-03-21T13:43:34.210236063Z"} +2026/03/21 13:43:39 [transform_engine] {"stage_name":"transform_engine","events_processed":289,"events_dropped":0,"avg_latency_ms":670.9129276427354,"throughput_eps":0,"last_update":"2026-03-21T13:43:34.210256472Z"} +2026/03/21 13:43:39 ───────────────────────────────────────────────── +2026/03/21 13:43:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:43:44 [log_collector] {"stage_name":"log_collector","events_processed":14403,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2880.6,"last_update":"2026-03-21T13:43:39.068120829Z"} +2026/03/21 13:43:44 [metric_collector] {"stage_name":"metric_collector","events_processed":8689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1737.8,"last_update":"2026-03-21T13:43:39.068570911Z"} +2026/03/21 13:43:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:43:39.074653148Z"} +2026/03/21 13:43:44 [detection_layer] {"stage_name":"detection_layer","events_processed":289,"events_dropped":0,"avg_latency_ms":18.952008047252455,"throughput_eps":0,"last_update":"2026-03-21T13:43:39.209901172Z"} +2026/03/21 13:43:44 [transform_engine] {"stage_name":"transform_engine","events_processed":289,"events_dropped":0,"avg_latency_ms":670.9129276427354,"throughput_eps":0,"last_update":"2026-03-21T13:43:39.209971146Z"} +2026/03/21 13:43:44 ───────────────────────────────────────────────── +2026/03/21 13:43:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:43:49 [metric_collector] {"stage_name":"metric_collector","events_processed":8694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1738.8,"last_update":"2026-03-21T13:43:44.068261131Z"} +2026/03/21 13:43:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3480,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:43:44.080110925Z"} +2026/03/21 13:43:49 [detection_layer] {"stage_name":"detection_layer","events_processed":289,"events_dropped":0,"avg_latency_ms":18.952008047252455,"throughput_eps":0,"last_update":"2026-03-21T13:43:44.210360515Z"} +2026/03/21 13:43:49 [transform_engine] {"stage_name":"transform_engine","events_processed":289,"events_dropped":0,"avg_latency_ms":670.9129276427354,"throughput_eps":0,"last_update":"2026-03-21T13:43:44.210381165Z"} +2026/03/21 13:43:49 [log_collector] {"stage_name":"log_collector","events_processed":14410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2882,"last_update":"2026-03-21T13:43:44.068066137Z"} +2026/03/21 13:43:49 ───────────────────────────────────────────────── +Saved state: 16 clusters, 14703 messages, reason: none +2026/03/21 13:43:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:43:54 [detection_layer] {"stage_name":"detection_layer","events_processed":289,"events_dropped":0,"avg_latency_ms":18.952008047252455,"throughput_eps":0,"last_update":"2026-03-21T13:43:49.210401367Z"} +2026/03/21 13:43:54 [transform_engine] {"stage_name":"transform_engine","events_processed":290,"events_dropped":0,"avg_latency_ms":1027.6623859141882,"throughput_eps":0,"last_update":"2026-03-21T13:43:51.665035416Z"} +2026/03/21 13:43:54 [log_collector] {"stage_name":"log_collector","events_processed":14556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2911.2,"last_update":"2026-03-21T13:43:49.068574514Z"} +2026/03/21 13:43:54 [metric_collector] {"stage_name":"metric_collector","events_processed":8699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1739.8,"last_update":"2026-03-21T13:43:49.068942068Z"} +2026/03/21 13:43:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3482,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:43:49.077102958Z"} +2026/03/21 13:43:54 ───────────────────────────────────────────────── +2026/03/21 13:43:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:43:59 [detection_layer] {"stage_name":"detection_layer","events_processed":290,"events_dropped":0,"avg_latency_ms":18.975805237801964,"throughput_eps":0,"last_update":"2026-03-21T13:43:54.209894231Z"} +2026/03/21 13:43:59 [transform_engine] {"stage_name":"transform_engine","events_processed":290,"events_dropped":0,"avg_latency_ms":1027.6623859141882,"throughput_eps":0,"last_update":"2026-03-21T13:43:54.209942092Z"} +2026/03/21 13:43:59 [log_collector] {"stage_name":"log_collector","events_processed":14726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2945.2,"last_update":"2026-03-21T13:43:54.068074512Z"} +2026/03/21 13:43:59 [metric_collector] {"stage_name":"metric_collector","events_processed":8704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1740.8,"last_update":"2026-03-21T13:43:54.06846032Z"} +2026/03/21 13:43:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:43:54.0747989Z"} +2026/03/21 13:43:59 ───────────────────────────────────────────────── +2026/03/21 13:44:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:44:04 [log_collector] {"stage_name":"log_collector","events_processed":14748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2949.6,"last_update":"2026-03-21T13:43:59.068715102Z"} +2026/03/21 13:44:04 [metric_collector] {"stage_name":"metric_collector","events_processed":8709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1741.8,"last_update":"2026-03-21T13:43:59.069210221Z"} +2026/03/21 13:44:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3486,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:43:59.078560839Z"} +2026/03/21 13:44:04 [detection_layer] {"stage_name":"detection_layer","events_processed":290,"events_dropped":0,"avg_latency_ms":18.975805237801964,"throughput_eps":0,"last_update":"2026-03-21T13:43:59.210807904Z"} +2026/03/21 13:44:04 [transform_engine] {"stage_name":"transform_engine","events_processed":290,"events_dropped":0,"avg_latency_ms":1027.6623859141882,"throughput_eps":0,"last_update":"2026-03-21T13:43:59.209711585Z"} +2026/03/21 13:44:04 ───────────────────────────────────────────────── +2026/03/21 13:44:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:44:09 [metric_collector] {"stage_name":"metric_collector","events_processed":8714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1742.8,"last_update":"2026-03-21T13:44:04.06909083Z"} +2026/03/21 13:44:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:44:04.07784201Z"} +2026/03/21 13:44:09 [detection_layer] {"stage_name":"detection_layer","events_processed":290,"events_dropped":0,"avg_latency_ms":18.975805237801964,"throughput_eps":0,"last_update":"2026-03-21T13:44:04.210090117Z"} +2026/03/21 13:44:09 [transform_engine] {"stage_name":"transform_engine","events_processed":290,"events_dropped":0,"avg_latency_ms":1027.6623859141882,"throughput_eps":0,"last_update":"2026-03-21T13:44:04.210201962Z"} +2026/03/21 13:44:09 [log_collector] {"stage_name":"log_collector","events_processed":14748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2949.6,"last_update":"2026-03-21T13:44:04.06897105Z"} +2026/03/21 13:44:09 ───────────────────────────────────────────────── +2026/03/21 13:44:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:44:14 [log_collector] {"stage_name":"log_collector","events_processed":14748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2949.6,"last_update":"2026-03-21T13:44:09.068091494Z"} +2026/03/21 13:44:14 [metric_collector] {"stage_name":"metric_collector","events_processed":8719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1743.8,"last_update":"2026-03-21T13:44:09.068256621Z"} +2026/03/21 13:44:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3490,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:44:09.080185868Z"} +2026/03/21 13:44:14 [detection_layer] {"stage_name":"detection_layer","events_processed":290,"events_dropped":0,"avg_latency_ms":18.975805237801964,"throughput_eps":0,"last_update":"2026-03-21T13:44:09.210561329Z"} +2026/03/21 13:44:14 [transform_engine] {"stage_name":"transform_engine","events_processed":290,"events_dropped":0,"avg_latency_ms":1027.6623859141882,"throughput_eps":0,"last_update":"2026-03-21T13:44:09.210598671Z"} +2026/03/21 13:44:14 ───────────────────────────────────────────────── +2026/03/21 13:44:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:44:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:44:14.079438717Z"} +2026/03/21 13:44:19 [detection_layer] {"stage_name":"detection_layer","events_processed":290,"events_dropped":0,"avg_latency_ms":18.975805237801964,"throughput_eps":0,"last_update":"2026-03-21T13:44:14.210767084Z"} +2026/03/21 13:44:19 [transform_engine] {"stage_name":"transform_engine","events_processed":290,"events_dropped":0,"avg_latency_ms":1027.6623859141882,"throughput_eps":0,"last_update":"2026-03-21T13:44:14.209643442Z"} +2026/03/21 13:44:19 [log_collector] {"stage_name":"log_collector","events_processed":14748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2949.6,"last_update":"2026-03-21T13:44:14.069065912Z"} +2026/03/21 13:44:19 [metric_collector] {"stage_name":"metric_collector","events_processed":8724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1744.8,"last_update":"2026-03-21T13:44:14.069168839Z"} +2026/03/21 13:44:19 ───────────────────────────────────────────────── +2026/03/21 13:44:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:44:24 [metric_collector] {"stage_name":"metric_collector","events_processed":8729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1745.8,"last_update":"2026-03-21T13:44:19.069254443Z"} +2026/03/21 13:44:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:44:19.078031864Z"} +2026/03/21 13:44:24 [detection_layer] {"stage_name":"detection_layer","events_processed":290,"events_dropped":0,"avg_latency_ms":18.975805237801964,"throughput_eps":0,"last_update":"2026-03-21T13:44:19.210281375Z"} +2026/03/21 13:44:24 [transform_engine] {"stage_name":"transform_engine","events_processed":291,"events_dropped":0,"avg_latency_ms":844.5542671313506,"throughput_eps":0,"last_update":"2026-03-21T13:44:19.322440269Z"} +2026/03/21 13:44:24 [log_collector] {"stage_name":"log_collector","events_processed":14748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2949.6,"last_update":"2026-03-21T13:44:19.069265465Z"} +2026/03/21 13:44:24 ───────────────────────────────────────────────── +2026/03/21 13:44:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:44:29 [metric_collector] {"stage_name":"metric_collector","events_processed":8734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1746.8,"last_update":"2026-03-21T13:44:24.069206444Z"} +2026/03/21 13:44:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3496,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:44:24.077337127Z"} +2026/03/21 13:44:29 [detection_layer] {"stage_name":"detection_layer","events_processed":291,"events_dropped":0,"avg_latency_ms":19.470299590241574,"throughput_eps":0,"last_update":"2026-03-21T13:44:24.210560382Z"} +2026/03/21 13:44:29 [transform_engine] {"stage_name":"transform_engine","events_processed":291,"events_dropped":0,"avg_latency_ms":844.5542671313506,"throughput_eps":0,"last_update":"2026-03-21T13:44:24.210571294Z"} +2026/03/21 13:44:29 [log_collector] {"stage_name":"log_collector","events_processed":14748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2949.6,"last_update":"2026-03-21T13:44:24.068612257Z"} +2026/03/21 13:44:29 ───────────────────────────────────────────────── +2026/03/21 13:44:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:44:34 [log_collector] {"stage_name":"log_collector","events_processed":14748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2949.6,"last_update":"2026-03-21T13:44:29.068091443Z"} +2026/03/21 13:44:34 [metric_collector] {"stage_name":"metric_collector","events_processed":8739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1747.8,"last_update":"2026-03-21T13:44:29.068320031Z"} +2026/03/21 13:44:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3498,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:44:29.076819639Z"} +2026/03/21 13:44:34 [detection_layer] {"stage_name":"detection_layer","events_processed":291,"events_dropped":0,"avg_latency_ms":19.470299590241574,"throughput_eps":0,"last_update":"2026-03-21T13:44:29.210243639Z"} +2026/03/21 13:44:34 [transform_engine] {"stage_name":"transform_engine","events_processed":291,"events_dropped":0,"avg_latency_ms":844.5542671313506,"throughput_eps":0,"last_update":"2026-03-21T13:44:29.210256895Z"} +2026/03/21 13:44:34 ───────────────────────────────────────────────── +2026/03/21 13:44:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:44:39 [log_collector] {"stage_name":"log_collector","events_processed":14748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2949.6,"last_update":"2026-03-21T13:44:34.068725265Z"} +2026/03/21 13:44:39 [metric_collector] {"stage_name":"metric_collector","events_processed":8744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1748.8,"last_update":"2026-03-21T13:44:34.06907776Z"} +2026/03/21 13:44:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:44:34.077670807Z"} +2026/03/21 13:44:39 [detection_layer] {"stage_name":"detection_layer","events_processed":291,"events_dropped":0,"avg_latency_ms":19.470299590241574,"throughput_eps":0,"last_update":"2026-03-21T13:44:34.210858675Z"} +2026/03/21 13:44:39 [transform_engine] {"stage_name":"transform_engine","events_processed":291,"events_dropped":0,"avg_latency_ms":844.5542671313506,"throughput_eps":0,"last_update":"2026-03-21T13:44:34.209719524Z"} +2026/03/21 13:44:39 ───────────────────────────────────────────────── +2026/03/21 13:44:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:44:44 [transform_engine] {"stage_name":"transform_engine","events_processed":291,"events_dropped":0,"avg_latency_ms":844.5542671313506,"throughput_eps":0,"last_update":"2026-03-21T13:44:39.209929222Z"} +2026/03/21 13:44:44 [log_collector] {"stage_name":"log_collector","events_processed":14748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2949.6,"last_update":"2026-03-21T13:44:39.068923041Z"} +2026/03/21 13:44:44 [metric_collector] {"stage_name":"metric_collector","events_processed":8749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1749.8,"last_update":"2026-03-21T13:44:39.069315383Z"} +2026/03/21 13:44:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:44:39.078684145Z"} +2026/03/21 13:44:44 [detection_layer] {"stage_name":"detection_layer","events_processed":291,"events_dropped":0,"avg_latency_ms":19.470299590241574,"throughput_eps":0,"last_update":"2026-03-21T13:44:39.209917019Z"} +2026/03/21 13:44:44 ───────────────────────────────────────────────── +2026/03/21 13:44:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:44:49 [transform_engine] {"stage_name":"transform_engine","events_processed":291,"events_dropped":0,"avg_latency_ms":844.5542671313506,"throughput_eps":0,"last_update":"2026-03-21T13:44:44.210130065Z"} +2026/03/21 13:44:49 [log_collector] {"stage_name":"log_collector","events_processed":14748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2949.6,"last_update":"2026-03-21T13:44:44.068642271Z"} +2026/03/21 13:44:49 [metric_collector] {"stage_name":"metric_collector","events_processed":8753,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1750.6,"last_update":"2026-03-21T13:44:44.068659985Z"} +2026/03/21 13:44:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:44:44.078775609Z"} +2026/03/21 13:44:49 [detection_layer] {"stage_name":"detection_layer","events_processed":291,"events_dropped":0,"avg_latency_ms":19.470299590241574,"throughput_eps":0,"last_update":"2026-03-21T13:44:44.210117852Z"} +2026/03/21 13:44:49 ───────────────────────────────────────────────── +2026/03/21 13:44:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:44:54 [metric_collector] {"stage_name":"metric_collector","events_processed":8758,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1751.6,"last_update":"2026-03-21T13:44:49.06806188Z"} +2026/03/21 13:44:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3506,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:44:49.077281578Z"} +2026/03/21 13:44:54 [detection_layer] {"stage_name":"detection_layer","events_processed":291,"events_dropped":0,"avg_latency_ms":19.470299590241574,"throughput_eps":0,"last_update":"2026-03-21T13:44:49.210529231Z"} +2026/03/21 13:44:54 [transform_engine] {"stage_name":"transform_engine","events_processed":292,"events_dropped":0,"avg_latency_ms":691.1610025050805,"throughput_eps":0,"last_update":"2026-03-21T13:44:49.288130089Z"} +2026/03/21 13:44:54 [log_collector] {"stage_name":"log_collector","events_processed":14748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2949.6,"last_update":"2026-03-21T13:44:49.068093261Z"} +2026/03/21 13:44:54 ───────────────────────────────────────────────── +2026/03/21 13:44:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:44:59 [log_collector] {"stage_name":"log_collector","events_processed":14748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2949.6,"last_update":"2026-03-21T13:44:54.06892807Z"} +2026/03/21 13:44:59 [metric_collector] {"stage_name":"metric_collector","events_processed":8764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1752.8,"last_update":"2026-03-21T13:44:54.069464487Z"} +2026/03/21 13:44:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:44:54.079170767Z"} +2026/03/21 13:44:59 [detection_layer] {"stage_name":"detection_layer","events_processed":292,"events_dropped":0,"avg_latency_ms":20.08259627219326,"throughput_eps":0,"last_update":"2026-03-21T13:44:54.21042451Z"} +2026/03/21 13:44:59 [transform_engine] {"stage_name":"transform_engine","events_processed":292,"events_dropped":0,"avg_latency_ms":691.1610025050805,"throughput_eps":0,"last_update":"2026-03-21T13:44:54.210437606Z"} +2026/03/21 13:44:59 ───────────────────────────────────────────────── +2026/03/21 13:45:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:45:04 [detection_layer] {"stage_name":"detection_layer","events_processed":292,"events_dropped":0,"avg_latency_ms":20.08259627219326,"throughput_eps":0,"last_update":"2026-03-21T13:44:59.209873097Z"} +2026/03/21 13:45:04 [transform_engine] {"stage_name":"transform_engine","events_processed":292,"events_dropped":0,"avg_latency_ms":691.1610025050805,"throughput_eps":0,"last_update":"2026-03-21T13:44:59.209780389Z"} +2026/03/21 13:45:04 [log_collector] {"stage_name":"log_collector","events_processed":14748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2949.6,"last_update":"2026-03-21T13:44:59.06898953Z"} +2026/03/21 13:45:04 [metric_collector] {"stage_name":"metric_collector","events_processed":8769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1753.8,"last_update":"2026-03-21T13:44:59.069134036Z"} +2026/03/21 13:45:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:44:59.077541278Z"} +2026/03/21 13:45:04 ───────────────────────────────────────────────── +2026/03/21 13:45:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:45:09 [log_collector] {"stage_name":"log_collector","events_processed":14748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2949.6,"last_update":"2026-03-21T13:45:04.068146378Z"} +2026/03/21 13:45:09 [metric_collector] {"stage_name":"metric_collector","events_processed":8774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1754.8,"last_update":"2026-03-21T13:45:04.068556724Z"} +2026/03/21 13:45:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3512,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:45:04.077442281Z"} +2026/03/21 13:45:09 [detection_layer] {"stage_name":"detection_layer","events_processed":292,"events_dropped":0,"avg_latency_ms":20.08259627219326,"throughput_eps":0,"last_update":"2026-03-21T13:45:04.210799033Z"} +2026/03/21 13:45:09 [transform_engine] {"stage_name":"transform_engine","events_processed":292,"events_dropped":0,"avg_latency_ms":691.1610025050805,"throughput_eps":0,"last_update":"2026-03-21T13:45:04.209689057Z"} +2026/03/21 13:45:09 ───────────────────────────────────────────────── +2026/03/21 13:45:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:45:14 [detection_layer] {"stage_name":"detection_layer","events_processed":292,"events_dropped":0,"avg_latency_ms":20.08259627219326,"throughput_eps":0,"last_update":"2026-03-21T13:45:09.21062267Z"} +2026/03/21 13:45:14 [transform_engine] {"stage_name":"transform_engine","events_processed":292,"events_dropped":0,"avg_latency_ms":691.1610025050805,"throughput_eps":0,"last_update":"2026-03-21T13:45:09.210634222Z"} +2026/03/21 13:45:14 [log_collector] {"stage_name":"log_collector","events_processed":14748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2949.6,"last_update":"2026-03-21T13:45:09.068906658Z"} +2026/03/21 13:45:14 [metric_collector] {"stage_name":"metric_collector","events_processed":8779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1755.8,"last_update":"2026-03-21T13:45:09.069114817Z"} +2026/03/21 13:45:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:45:09.078249682Z"} +2026/03/21 13:45:14 ───────────────────────────────────────────────── +2026/03/21 13:45:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:45:19 [metric_collector] {"stage_name":"metric_collector","events_processed":8784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1756.8,"last_update":"2026-03-21T13:45:14.069025271Z"} +2026/03/21 13:45:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:45:14.078405456Z"} +2026/03/21 13:45:19 [detection_layer] {"stage_name":"detection_layer","events_processed":292,"events_dropped":0,"avg_latency_ms":20.08259627219326,"throughput_eps":0,"last_update":"2026-03-21T13:45:14.209938975Z"} +2026/03/21 13:45:19 [transform_engine] {"stage_name":"transform_engine","events_processed":292,"events_dropped":0,"avg_latency_ms":691.1610025050805,"throughput_eps":0,"last_update":"2026-03-21T13:45:14.209710157Z"} +2026/03/21 13:45:19 [log_collector] {"stage_name":"log_collector","events_processed":14748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2949.6,"last_update":"2026-03-21T13:45:14.068878991Z"} +2026/03/21 13:45:19 ───────────────────────────────────────────────── +2026/03/21 13:45:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:45:24 [log_collector] {"stage_name":"log_collector","events_processed":14748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2949.6,"last_update":"2026-03-21T13:45:19.068881793Z"} +2026/03/21 13:45:24 [metric_collector] {"stage_name":"metric_collector","events_processed":8789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1757.8,"last_update":"2026-03-21T13:45:19.068930216Z"} +2026/03/21 13:45:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:45:19.07786128Z"} +2026/03/21 13:45:24 [detection_layer] {"stage_name":"detection_layer","events_processed":292,"events_dropped":0,"avg_latency_ms":20.08259627219326,"throughput_eps":0,"last_update":"2026-03-21T13:45:19.210120561Z"} +2026/03/21 13:45:24 [transform_engine] {"stage_name":"transform_engine","events_processed":293,"events_dropped":0,"avg_latency_ms":567.7938432040644,"throughput_eps":0,"last_update":"2026-03-21T13:45:19.284458521Z"} +2026/03/21 13:45:24 ───────────────────────────────────────────────── +Saved state: 16 clusters, 14749 messages, reason: none +2026/03/21 13:45:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:45:29 [log_collector] {"stage_name":"log_collector","events_processed":14751,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2950.2,"last_update":"2026-03-21T13:45:29.068473959Z"} +2026/03/21 13:45:29 [metric_collector] {"stage_name":"metric_collector","events_processed":8794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1758.8,"last_update":"2026-03-21T13:45:24.069085302Z"} +2026/03/21 13:45:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3520,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:45:24.07806521Z"} +2026/03/21 13:45:29 [detection_layer] {"stage_name":"detection_layer","events_processed":293,"events_dropped":0,"avg_latency_ms":19.99799541775461,"throughput_eps":0,"last_update":"2026-03-21T13:45:24.210284082Z"} +2026/03/21 13:45:29 [transform_engine] {"stage_name":"transform_engine","events_processed":293,"events_dropped":0,"avg_latency_ms":567.7938432040644,"throughput_eps":0,"last_update":"2026-03-21T13:45:24.210294873Z"} +2026/03/21 13:45:29 ───────────────────────────────────────────────── +2026/03/21 13:45:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:45:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3522,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:45:29.077574188Z"} +2026/03/21 13:45:34 [detection_layer] {"stage_name":"detection_layer","events_processed":293,"events_dropped":0,"avg_latency_ms":19.99799541775461,"throughput_eps":0,"last_update":"2026-03-21T13:45:29.209870649Z"} +2026/03/21 13:45:34 [transform_engine] {"stage_name":"transform_engine","events_processed":293,"events_dropped":0,"avg_latency_ms":567.7938432040644,"throughput_eps":0,"last_update":"2026-03-21T13:45:29.209817467Z"} +2026/03/21 13:45:34 [log_collector] {"stage_name":"log_collector","events_processed":14751,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2950.2,"last_update":"2026-03-21T13:45:29.068473959Z"} +2026/03/21 13:45:34 [metric_collector] {"stage_name":"metric_collector","events_processed":8799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1759.8,"last_update":"2026-03-21T13:45:29.068494529Z"} +2026/03/21 13:45:34 ───────────────────────────────────────────────── +2026/03/21 13:45:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:45:39 [transform_engine] {"stage_name":"transform_engine","events_processed":293,"events_dropped":0,"avg_latency_ms":567.7938432040644,"throughput_eps":0,"last_update":"2026-03-21T13:45:34.210260796Z"} +2026/03/21 13:45:39 [log_collector] {"stage_name":"log_collector","events_processed":14751,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2950.2,"last_update":"2026-03-21T13:45:34.06877214Z"} +2026/03/21 13:45:39 [metric_collector] {"stage_name":"metric_collector","events_processed":8804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1760.8,"last_update":"2026-03-21T13:45:34.068757061Z"} +2026/03/21 13:45:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:45:34.080047625Z"} +2026/03/21 13:45:39 [detection_layer] {"stage_name":"detection_layer","events_processed":293,"events_dropped":0,"avg_latency_ms":19.99799541775461,"throughput_eps":0,"last_update":"2026-03-21T13:45:34.210284491Z"} +2026/03/21 13:45:39 ───────────────────────────────────────────────── +2026/03/21 13:45:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:45:44 [transform_engine] {"stage_name":"transform_engine","events_processed":293,"events_dropped":0,"avg_latency_ms":567.7938432040644,"throughput_eps":0,"last_update":"2026-03-21T13:45:39.210111982Z"} +2026/03/21 13:45:44 [log_collector] {"stage_name":"log_collector","events_processed":14761,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2952.2,"last_update":"2026-03-21T13:45:39.068905917Z"} +2026/03/21 13:45:44 [metric_collector] {"stage_name":"metric_collector","events_processed":8809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1761.8,"last_update":"2026-03-21T13:45:39.069223245Z"} +2026/03/21 13:45:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3526,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:45:39.075902877Z"} +2026/03/21 13:45:44 [detection_layer] {"stage_name":"detection_layer","events_processed":293,"events_dropped":0,"avg_latency_ms":19.99799541775461,"throughput_eps":0,"last_update":"2026-03-21T13:45:39.210185222Z"} +2026/03/21 13:45:44 ───────────────────────────────────────────────── +2026/03/21 13:45:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:45:49 [transform_engine] {"stage_name":"transform_engine","events_processed":293,"events_dropped":0,"avg_latency_ms":567.7938432040644,"throughput_eps":0,"last_update":"2026-03-21T13:45:44.210368758Z"} +2026/03/21 13:45:49 [log_collector] {"stage_name":"log_collector","events_processed":14776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2955.2,"last_update":"2026-03-21T13:45:44.069268415Z"} +2026/03/21 13:45:49 [metric_collector] {"stage_name":"metric_collector","events_processed":8814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1762.8,"last_update":"2026-03-21T13:45:44.069156591Z"} +2026/03/21 13:45:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:45:44.078073308Z"} +2026/03/21 13:45:49 [detection_layer] {"stage_name":"detection_layer","events_processed":293,"events_dropped":0,"avg_latency_ms":19.99799541775461,"throughput_eps":0,"last_update":"2026-03-21T13:45:44.210323471Z"} +2026/03/21 13:45:49 ───────────────────────────────────────────────── +2026/03/21 13:45:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:45:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:45:49.078146573Z"} +2026/03/21 13:45:54 [detection_layer] {"stage_name":"detection_layer","events_processed":293,"events_dropped":0,"avg_latency_ms":19.99799541775461,"throughput_eps":0,"last_update":"2026-03-21T13:45:49.210422225Z"} +2026/03/21 13:45:54 [transform_engine] {"stage_name":"transform_engine","events_processed":293,"events_dropped":0,"avg_latency_ms":567.7938432040644,"throughput_eps":0,"last_update":"2026-03-21T13:45:49.210390874Z"} +2026/03/21 13:45:54 [log_collector] {"stage_name":"log_collector","events_processed":14778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2955.6,"last_update":"2026-03-21T13:45:49.068690313Z"} +2026/03/21 13:45:54 [metric_collector] {"stage_name":"metric_collector","events_processed":8819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1763.8,"last_update":"2026-03-21T13:45:49.068959428Z"} +2026/03/21 13:45:54 ───────────────────────────────────────────────── +2026/03/21 13:45:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:45:59 [transform_engine] {"stage_name":"transform_engine","events_processed":294,"events_dropped":0,"avg_latency_ms":483.89530936325156,"throughput_eps":0,"last_update":"2026-03-21T13:45:54.210795594Z"} +2026/03/21 13:45:59 [log_collector] {"stage_name":"log_collector","events_processed":14791,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2958.2,"last_update":"2026-03-21T13:45:54.068061774Z"} +2026/03/21 13:45:59 [metric_collector] {"stage_name":"metric_collector","events_processed":8824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1764.8,"last_update":"2026-03-21T13:45:54.06847232Z"} +2026/03/21 13:45:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3532,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:45:54.074310381Z"} +2026/03/21 13:45:59 [detection_layer] {"stage_name":"detection_layer","events_processed":294,"events_dropped":0,"avg_latency_ms":19.344741134203687,"throughput_eps":0,"last_update":"2026-03-21T13:45:54.210780085Z"} +2026/03/21 13:45:59 ───────────────────────────────────────────────── +2026/03/21 13:46:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:46:04 [log_collector] {"stage_name":"log_collector","events_processed":14792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2958.4,"last_update":"2026-03-21T13:45:59.068786777Z"} +2026/03/21 13:46:04 [metric_collector] {"stage_name":"metric_collector","events_processed":8829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1765.8,"last_update":"2026-03-21T13:45:59.069217984Z"} +2026/03/21 13:46:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:45:59.077274904Z"} +2026/03/21 13:46:04 [detection_layer] {"stage_name":"detection_layer","events_processed":294,"events_dropped":0,"avg_latency_ms":19.344741134203687,"throughput_eps":0,"last_update":"2026-03-21T13:45:59.210517126Z"} +2026/03/21 13:46:04 [transform_engine] {"stage_name":"transform_engine","events_processed":294,"events_dropped":0,"avg_latency_ms":483.89530936325156,"throughput_eps":0,"last_update":"2026-03-21T13:45:59.210525122Z"} +2026/03/21 13:46:04 ───────────────────────────────────────────────── +2026/03/21 13:46:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:46:09 [log_collector] {"stage_name":"log_collector","events_processed":14792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2958.4,"last_update":"2026-03-21T13:46:04.068104418Z"} +2026/03/21 13:46:09 [metric_collector] {"stage_name":"metric_collector","events_processed":8834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1766.8,"last_update":"2026-03-21T13:46:04.068344398Z"} +2026/03/21 13:46:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3536,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:46:04.07725339Z"} +2026/03/21 13:46:09 [detection_layer] {"stage_name":"detection_layer","events_processed":294,"events_dropped":0,"avg_latency_ms":19.344741134203687,"throughput_eps":0,"last_update":"2026-03-21T13:46:04.210523877Z"} +2026/03/21 13:46:09 [transform_engine] {"stage_name":"transform_engine","events_processed":294,"events_dropped":0,"avg_latency_ms":483.89530936325156,"throughput_eps":0,"last_update":"2026-03-21T13:46:04.210534366Z"} +2026/03/21 13:46:09 ───────────────────────────────────────────────── +2026/03/21 13:46:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:46:14 [detection_layer] {"stage_name":"detection_layer","events_processed":294,"events_dropped":0,"avg_latency_ms":19.344741134203687,"throughput_eps":0,"last_update":"2026-03-21T13:46:09.210447509Z"} +2026/03/21 13:46:14 [transform_engine] {"stage_name":"transform_engine","events_processed":294,"events_dropped":0,"avg_latency_ms":483.89530936325156,"throughput_eps":0,"last_update":"2026-03-21T13:46:09.210460784Z"} +2026/03/21 13:46:14 [log_collector] {"stage_name":"log_collector","events_processed":14792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2958.4,"last_update":"2026-03-21T13:46:09.068432775Z"} +2026/03/21 13:46:14 [metric_collector] {"stage_name":"metric_collector","events_processed":8839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1767.8,"last_update":"2026-03-21T13:46:09.069045609Z"} +2026/03/21 13:46:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:46:09.079130142Z"} +2026/03/21 13:46:14 ───────────────────────────────────────────────── +2026/03/21 13:46:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:46:19 [log_collector] {"stage_name":"log_collector","events_processed":14792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2958.4,"last_update":"2026-03-21T13:46:14.068195291Z"} +2026/03/21 13:46:19 [metric_collector] {"stage_name":"metric_collector","events_processed":8844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1768.8,"last_update":"2026-03-21T13:46:14.068837721Z"} +2026/03/21 13:46:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3540,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:46:14.078145737Z"} +2026/03/21 13:46:19 [detection_layer] {"stage_name":"detection_layer","events_processed":294,"events_dropped":0,"avg_latency_ms":19.344741134203687,"throughput_eps":0,"last_update":"2026-03-21T13:46:14.210670036Z"} +2026/03/21 13:46:19 [transform_engine] {"stage_name":"transform_engine","events_processed":294,"events_dropped":0,"avg_latency_ms":483.89530936325156,"throughput_eps":0,"last_update":"2026-03-21T13:46:14.210677349Z"} +2026/03/21 13:46:19 ───────────────────────────────────────────────── +2026/03/21 13:46:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:46:24 [detection_layer] {"stage_name":"detection_layer","events_processed":294,"events_dropped":0,"avg_latency_ms":19.344741134203687,"throughput_eps":0,"last_update":"2026-03-21T13:46:19.209889661Z"} +2026/03/21 13:46:24 [transform_engine] {"stage_name":"transform_engine","events_processed":295,"events_dropped":0,"avg_latency_ms":410.11536689060125,"throughput_eps":0,"last_update":"2026-03-21T13:46:19.324895789Z"} +2026/03/21 13:46:24 [log_collector] {"stage_name":"log_collector","events_processed":14792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2958.4,"last_update":"2026-03-21T13:46:19.069046601Z"} +2026/03/21 13:46:24 [metric_collector] {"stage_name":"metric_collector","events_processed":8849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1769.8,"last_update":"2026-03-21T13:46:19.069441037Z"} +2026/03/21 13:46:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3542,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:46:19.078655274Z"} +2026/03/21 13:46:24 ───────────────────────────────────────────────── +2026/03/21 13:46:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:46:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:46:24.077996853Z"} +2026/03/21 13:46:29 [detection_layer] {"stage_name":"detection_layer","events_processed":295,"events_dropped":0,"avg_latency_ms":19.717582507362952,"throughput_eps":0,"last_update":"2026-03-21T13:46:24.210455195Z"} +2026/03/21 13:46:29 [transform_engine] {"stage_name":"transform_engine","events_processed":295,"events_dropped":0,"avg_latency_ms":410.11536689060125,"throughput_eps":0,"last_update":"2026-03-21T13:46:24.210485522Z"} +2026/03/21 13:46:29 [log_collector] {"stage_name":"log_collector","events_processed":14792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2958.4,"last_update":"2026-03-21T13:46:24.068895211Z"} +2026/03/21 13:46:29 [metric_collector] {"stage_name":"metric_collector","events_processed":8854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1770.8,"last_update":"2026-03-21T13:46:24.069226095Z"} +2026/03/21 13:46:29 ───────────────────────────────────────────────── +2026/03/21 13:46:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:46:34 [transform_engine] {"stage_name":"transform_engine","events_processed":295,"events_dropped":0,"avg_latency_ms":410.11536689060125,"throughput_eps":0,"last_update":"2026-03-21T13:46:29.210262738Z"} +2026/03/21 13:46:34 [log_collector] {"stage_name":"log_collector","events_processed":14792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2958.4,"last_update":"2026-03-21T13:46:29.068990847Z"} +2026/03/21 13:46:34 [metric_collector] {"stage_name":"metric_collector","events_processed":8859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1771.8,"last_update":"2026-03-21T13:46:29.068948215Z"} +2026/03/21 13:46:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:46:29.077885061Z"} +2026/03/21 13:46:34 [detection_layer] {"stage_name":"detection_layer","events_processed":295,"events_dropped":0,"avg_latency_ms":19.717582507362952,"throughput_eps":0,"last_update":"2026-03-21T13:46:29.210299839Z"} +2026/03/21 13:46:34 ───────────────────────────────────────────────── +2026/03/21 13:46:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:46:39 [log_collector] {"stage_name":"log_collector","events_processed":14792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2958.4,"last_update":"2026-03-21T13:46:34.069041026Z"} +2026/03/21 13:46:39 [metric_collector] {"stage_name":"metric_collector","events_processed":8864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1772.8,"last_update":"2026-03-21T13:46:34.069328015Z"} +2026/03/21 13:46:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:46:34.078952117Z"} +2026/03/21 13:46:39 [detection_layer] {"stage_name":"detection_layer","events_processed":295,"events_dropped":0,"avg_latency_ms":19.717582507362952,"throughput_eps":0,"last_update":"2026-03-21T13:46:34.210355508Z"} +2026/03/21 13:46:39 [transform_engine] {"stage_name":"transform_engine","events_processed":295,"events_dropped":0,"avg_latency_ms":410.11536689060125,"throughput_eps":0,"last_update":"2026-03-21T13:46:34.210301846Z"} +2026/03/21 13:46:39 ───────────────────────────────────────────────── +2026/03/21 13:46:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:46:44 [transform_engine] {"stage_name":"transform_engine","events_processed":295,"events_dropped":0,"avg_latency_ms":410.11536689060125,"throughput_eps":0,"last_update":"2026-03-21T13:46:39.210604691Z"} +2026/03/21 13:46:44 [log_collector] {"stage_name":"log_collector","events_processed":14792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2958.4,"last_update":"2026-03-21T13:46:44.068288236Z"} +2026/03/21 13:46:44 [metric_collector] {"stage_name":"metric_collector","events_processed":8869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1773.8,"last_update":"2026-03-21T13:46:39.069050408Z"} +2026/03/21 13:46:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:46:39.079229103Z"} +2026/03/21 13:46:44 [detection_layer] {"stage_name":"detection_layer","events_processed":295,"events_dropped":0,"avg_latency_ms":19.717582507362952,"throughput_eps":0,"last_update":"2026-03-21T13:46:39.210593319Z"} +2026/03/21 13:46:44 ───────────────────────────────────────────────── +2026/03/21 13:46:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:46:49 [transform_engine] {"stage_name":"transform_engine","events_processed":295,"events_dropped":0,"avg_latency_ms":410.11536689060125,"throughput_eps":0,"last_update":"2026-03-21T13:46:44.210020037Z"} +2026/03/21 13:46:49 [log_collector] {"stage_name":"log_collector","events_processed":14792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2958.4,"last_update":"2026-03-21T13:46:44.068288236Z"} +2026/03/21 13:46:49 [metric_collector] {"stage_name":"metric_collector","events_processed":8874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1774.8,"last_update":"2026-03-21T13:46:44.068604661Z"} +2026/03/21 13:46:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:46:44.078637256Z"} +2026/03/21 13:46:49 [detection_layer] {"stage_name":"detection_layer","events_processed":295,"events_dropped":0,"avg_latency_ms":19.717582507362952,"throughput_eps":0,"last_update":"2026-03-21T13:46:44.210012022Z"} +2026/03/21 13:46:49 ───────────────────────────────────────────────── +2026/03/21 13:46:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:46:54 [detection_layer] {"stage_name":"detection_layer","events_processed":295,"events_dropped":0,"avg_latency_ms":19.717582507362952,"throughput_eps":0,"last_update":"2026-03-21T13:46:49.210601991Z"} +2026/03/21 13:46:54 [transform_engine] {"stage_name":"transform_engine","events_processed":296,"events_dropped":0,"avg_latency_ms":341.27751571248103,"throughput_eps":0,"last_update":"2026-03-21T13:46:49.276567378Z"} +2026/03/21 13:46:54 [log_collector] {"stage_name":"log_collector","events_processed":14792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2958.4,"last_update":"2026-03-21T13:46:49.068906548Z"} +2026/03/21 13:46:54 [metric_collector] {"stage_name":"metric_collector","events_processed":8879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1775.8,"last_update":"2026-03-21T13:46:49.069254685Z"} +2026/03/21 13:46:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:46:49.068898403Z"} +2026/03/21 13:46:54 ───────────────────────────────────────────────── +2026/03/21 13:46:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:46:59 [transform_engine] {"stage_name":"transform_engine","events_processed":296,"events_dropped":0,"avg_latency_ms":341.27751571248103,"throughput_eps":0,"last_update":"2026-03-21T13:46:54.210184429Z"} +2026/03/21 13:46:59 [log_collector] {"stage_name":"log_collector","events_processed":14792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2958.4,"last_update":"2026-03-21T13:46:59.068406877Z"} +2026/03/21 13:46:59 [metric_collector] {"stage_name":"metric_collector","events_processed":8884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1776.8,"last_update":"2026-03-21T13:46:54.068933448Z"} +2026/03/21 13:46:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:46:54.079932182Z"} +2026/03/21 13:46:59 [detection_layer] {"stage_name":"detection_layer","events_processed":296,"events_dropped":0,"avg_latency_ms":19.878911605890362,"throughput_eps":0,"last_update":"2026-03-21T13:46:54.210151245Z"} +2026/03/21 13:46:59 ───────────────────────────────────────────────── +Saved state: 16 clusters, 14793 messages, reason: none +2026/03/21 13:47:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:47:04 [transform_engine] {"stage_name":"transform_engine","events_processed":296,"events_dropped":0,"avg_latency_ms":341.27751571248103,"throughput_eps":0,"last_update":"2026-03-21T13:46:59.210547753Z"} +2026/03/21 13:47:04 [log_collector] {"stage_name":"log_collector","events_processed":14792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2958.4,"last_update":"2026-03-21T13:46:59.068406877Z"} +2026/03/21 13:47:04 [metric_collector] {"stage_name":"metric_collector","events_processed":8889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1777.8,"last_update":"2026-03-21T13:46:59.068912074Z"} +2026/03/21 13:47:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:46:59.078096825Z"} +2026/03/21 13:47:04 [detection_layer] {"stage_name":"detection_layer","events_processed":296,"events_dropped":0,"avg_latency_ms":19.878911605890362,"throughput_eps":0,"last_update":"2026-03-21T13:46:59.210578281Z"} +2026/03/21 13:47:04 ───────────────────────────────────────────────── +2026/03/21 13:47:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:47:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3560,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:47:04.077705745Z"} +2026/03/21 13:47:09 [detection_layer] {"stage_name":"detection_layer","events_processed":296,"events_dropped":0,"avg_latency_ms":19.878911605890362,"throughput_eps":0,"last_update":"2026-03-21T13:47:04.209964916Z"} +2026/03/21 13:47:09 [transform_engine] {"stage_name":"transform_engine","events_processed":296,"events_dropped":0,"avg_latency_ms":341.27751571248103,"throughput_eps":0,"last_update":"2026-03-21T13:47:04.209994483Z"} +2026/03/21 13:47:09 [log_collector] {"stage_name":"log_collector","events_processed":14797,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2959.4,"last_update":"2026-03-21T13:47:04.06848693Z"} +2026/03/21 13:47:09 [metric_collector] {"stage_name":"metric_collector","events_processed":8894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1778.8,"last_update":"2026-03-21T13:47:04.068877608Z"} +2026/03/21 13:47:09 ───────────────────────────────────────────────── +2026/03/21 13:47:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:47:14 [log_collector] {"stage_name":"log_collector","events_processed":14797,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2959.4,"last_update":"2026-03-21T13:47:09.068822333Z"} +2026/03/21 13:47:14 [metric_collector] {"stage_name":"metric_collector","events_processed":8899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1779.8,"last_update":"2026-03-21T13:47:09.069492447Z"} +2026/03/21 13:47:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:47:09.078204431Z"} +2026/03/21 13:47:14 [detection_layer] {"stage_name":"detection_layer","events_processed":296,"events_dropped":0,"avg_latency_ms":19.878911605890362,"throughput_eps":0,"last_update":"2026-03-21T13:47:09.210455176Z"} +2026/03/21 13:47:14 [transform_engine] {"stage_name":"transform_engine","events_processed":296,"events_dropped":0,"avg_latency_ms":341.27751571248103,"throughput_eps":0,"last_update":"2026-03-21T13:47:09.21046772Z"} +2026/03/21 13:47:14 ───────────────────────────────────────────────── +2026/03/21 13:47:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:47:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:47:14.074795574Z"} +2026/03/21 13:47:19 [detection_layer] {"stage_name":"detection_layer","events_processed":296,"events_dropped":0,"avg_latency_ms":19.878911605890362,"throughput_eps":0,"last_update":"2026-03-21T13:47:14.210366828Z"} +2026/03/21 13:47:19 [transform_engine] {"stage_name":"transform_engine","events_processed":296,"events_dropped":0,"avg_latency_ms":341.27751571248103,"throughput_eps":0,"last_update":"2026-03-21T13:47:14.210387918Z"} +2026/03/21 13:47:19 [log_collector] {"stage_name":"log_collector","events_processed":14797,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2959.4,"last_update":"2026-03-21T13:47:14.068072438Z"} +2026/03/21 13:47:19 [metric_collector] {"stage_name":"metric_collector","events_processed":8903,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1780.6,"last_update":"2026-03-21T13:47:14.067950294Z"} +2026/03/21 13:47:19 ───────────────────────────────────────────────── +2026/03/21 13:47:20 [ANOMALY] time=2026-03-21T13:47:20Z score=0.9768 method=SEAD details=MAD!:w=0.32,s=0.96 RRCF-fast!:w=0.17,s=0.98 RRCF-mid!:w=0.14,s=0.99 RRCF-slow!:w=0.11,s=1.00 COPOD!:w=0.24,s=0.98 +2026/03/21 13:47:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:47:24 [log_collector] {"stage_name":"log_collector","events_processed":14797,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2959.4,"last_update":"2026-03-21T13:47:19.068509957Z"} +2026/03/21 13:47:24 [metric_collector] {"stage_name":"metric_collector","events_processed":8909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1781.8,"last_update":"2026-03-21T13:47:19.068724528Z"} +2026/03/21 13:47:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3566,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:47:19.078995068Z"} +2026/03/21 13:47:24 [detection_layer] {"stage_name":"detection_layer","events_processed":296,"events_dropped":0,"avg_latency_ms":19.878911605890362,"throughput_eps":0,"last_update":"2026-03-21T13:47:19.210384202Z"} +2026/03/21 13:47:24 [transform_engine] {"stage_name":"transform_engine","events_processed":297,"events_dropped":0,"avg_latency_ms":552.9113015699849,"throughput_eps":0,"last_update":"2026-03-21T13:47:20.609770832Z"} +2026/03/21 13:47:24 ───────────────────────────────────────────────── +2026/03/21 13:47:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:47:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:47:24.075773631Z"} +2026/03/21 13:47:29 [detection_layer] {"stage_name":"detection_layer","events_processed":297,"events_dropped":0,"avg_latency_ms":17.89832048471229,"throughput_eps":0,"last_update":"2026-03-21T13:47:24.210142824Z"} +2026/03/21 13:47:29 [transform_engine] {"stage_name":"transform_engine","events_processed":297,"events_dropped":0,"avg_latency_ms":552.9113015699849,"throughput_eps":0,"last_update":"2026-03-21T13:47:24.210182068Z"} +2026/03/21 13:47:29 [log_collector] {"stage_name":"log_collector","events_processed":14797,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2959.4,"last_update":"2026-03-21T13:47:24.068466678Z"} +2026/03/21 13:47:29 [metric_collector] {"stage_name":"metric_collector","events_processed":8914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1782.8,"last_update":"2026-03-21T13:47:24.068820896Z"} +2026/03/21 13:47:29 ───────────────────────────────────────────────── +2026/03/21 13:47:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:47:34 [transform_engine] {"stage_name":"transform_engine","events_processed":297,"events_dropped":0,"avg_latency_ms":552.9113015699849,"throughput_eps":0,"last_update":"2026-03-21T13:47:29.210534107Z"} +2026/03/21 13:47:34 [log_collector] {"stage_name":"log_collector","events_processed":14797,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2959.4,"last_update":"2026-03-21T13:47:29.068674741Z"} +2026/03/21 13:47:34 [metric_collector] {"stage_name":"metric_collector","events_processed":8919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1783.8,"last_update":"2026-03-21T13:47:29.068754233Z"} +2026/03/21 13:47:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3570,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:47:29.075337501Z"} +2026/03/21 13:47:34 [detection_layer] {"stage_name":"detection_layer","events_processed":297,"events_dropped":0,"avg_latency_ms":17.89832048471229,"throughput_eps":0,"last_update":"2026-03-21T13:47:29.210481036Z"} +2026/03/21 13:47:34 ───────────────────────────────────────────────── +2026/03/21 13:47:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:47:39 [transform_engine] {"stage_name":"transform_engine","events_processed":297,"events_dropped":0,"avg_latency_ms":552.9113015699849,"throughput_eps":0,"last_update":"2026-03-21T13:47:34.209992246Z"} +2026/03/21 13:47:39 [log_collector] {"stage_name":"log_collector","events_processed":14797,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2959.4,"last_update":"2026-03-21T13:47:34.068091259Z"} +2026/03/21 13:47:39 [metric_collector] {"stage_name":"metric_collector","events_processed":8924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1784.8,"last_update":"2026-03-21T13:47:34.068622518Z"} +2026/03/21 13:47:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3572,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:47:34.078330651Z"} +2026/03/21 13:47:39 [detection_layer] {"stage_name":"detection_layer","events_processed":297,"events_dropped":0,"avg_latency_ms":17.89832048471229,"throughput_eps":0,"last_update":"2026-03-21T13:47:34.209983189Z"} +2026/03/21 13:47:39 ───────────────────────────────────────────────── +2026/03/21 13:47:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:47:44 [log_collector] {"stage_name":"log_collector","events_processed":14800,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2960,"last_update":"2026-03-21T13:47:44.068326716Z"} +2026/03/21 13:47:44 [metric_collector] {"stage_name":"metric_collector","events_processed":8929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1785.8,"last_update":"2026-03-21T13:47:39.068858085Z"} +2026/03/21 13:47:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:47:39.075812233Z"} +2026/03/21 13:47:44 [detection_layer] {"stage_name":"detection_layer","events_processed":297,"events_dropped":0,"avg_latency_ms":17.89832048471229,"throughput_eps":0,"last_update":"2026-03-21T13:47:39.210042259Z"} +2026/03/21 13:47:44 [transform_engine] {"stage_name":"transform_engine","events_processed":297,"events_dropped":0,"avg_latency_ms":552.9113015699849,"throughput_eps":0,"last_update":"2026-03-21T13:47:39.210053019Z"} +2026/03/21 13:47:44 ───────────────────────────────────────────────── +2026/03/21 13:47:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:47:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3576,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:47:44.075491037Z"} +2026/03/21 13:47:49 [detection_layer] {"stage_name":"detection_layer","events_processed":297,"events_dropped":0,"avg_latency_ms":17.89832048471229,"throughput_eps":0,"last_update":"2026-03-21T13:47:44.210839724Z"} +2026/03/21 13:47:49 [transform_engine] {"stage_name":"transform_engine","events_processed":297,"events_dropped":0,"avg_latency_ms":552.9113015699849,"throughput_eps":0,"last_update":"2026-03-21T13:47:44.209680234Z"} +2026/03/21 13:47:49 [log_collector] {"stage_name":"log_collector","events_processed":14800,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2960,"last_update":"2026-03-21T13:47:44.068326716Z"} +2026/03/21 13:47:49 [metric_collector] {"stage_name":"metric_collector","events_processed":8934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1786.8,"last_update":"2026-03-21T13:47:44.068656898Z"} +2026/03/21 13:47:49 ───────────────────────────────────────────────── +2026/03/21 13:47:49 [ANOMALY] time=2026-03-21T13:47:49Z score=0.9235 method=SEAD details=MAD!:w=0.32,s=0.88 RRCF-fast!:w=0.17,s=0.93 RRCF-mid!:w=0.14,s=0.98 RRCF-slow!:w=0.11,s=0.99 COPOD!:w=0.24,s=0.92 +2026/03/21 13:47:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:47:54 [log_collector] {"stage_name":"log_collector","events_processed":14808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2961.6,"last_update":"2026-03-21T13:47:49.068702725Z"} +2026/03/21 13:47:54 [metric_collector] {"stage_name":"metric_collector","events_processed":8939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1787.8,"last_update":"2026-03-21T13:47:49.06905008Z"} +2026/03/21 13:47:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:47:49.078994104Z"} +2026/03/21 13:47:54 [detection_layer] {"stage_name":"detection_layer","events_processed":297,"events_dropped":0,"avg_latency_ms":17.89832048471229,"throughput_eps":0,"last_update":"2026-03-21T13:47:49.210256697Z"} +2026/03/21 13:47:54 [transform_engine] {"stage_name":"transform_engine","events_processed":298,"events_dropped":0,"avg_latency_ms":466.0537362559879,"throughput_eps":0,"last_update":"2026-03-21T13:47:49.32890542Z"} +2026/03/21 13:47:54 ───────────────────────────────────────────────── +2026/03/21 13:47:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:47:59 [log_collector] {"stage_name":"log_collector","events_processed":14932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2986.4,"last_update":"2026-03-21T13:47:54.068576962Z"} +2026/03/21 13:47:59 [metric_collector] {"stage_name":"metric_collector","events_processed":8943,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1788.6,"last_update":"2026-03-21T13:47:54.068566693Z"} +2026/03/21 13:47:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3580,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:47:54.077110124Z"} +2026/03/21 13:47:59 [detection_layer] {"stage_name":"detection_layer","events_processed":298,"events_dropped":0,"avg_latency_ms":17.526293787769834,"throughput_eps":0,"last_update":"2026-03-21T13:47:54.21073451Z"} +2026/03/21 13:47:59 [transform_engine] {"stage_name":"transform_engine","events_processed":298,"events_dropped":0,"avg_latency_ms":466.0537362559879,"throughput_eps":0,"last_update":"2026-03-21T13:47:54.209683767Z"} +2026/03/21 13:47:59 ───────────────────────────────────────────────── +2026/03/21 13:48:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:48:04 [metric_collector] {"stage_name":"metric_collector","events_processed":8948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1789.6,"last_update":"2026-03-21T13:47:59.06794977Z"} +2026/03/21 13:48:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:47:59.07805293Z"} +2026/03/21 13:48:04 [detection_layer] {"stage_name":"detection_layer","events_processed":298,"events_dropped":0,"avg_latency_ms":17.526293787769834,"throughput_eps":0,"last_update":"2026-03-21T13:47:59.21011322Z"} +2026/03/21 13:48:04 [transform_engine] {"stage_name":"transform_engine","events_processed":298,"events_dropped":0,"avg_latency_ms":466.0537362559879,"throughput_eps":0,"last_update":"2026-03-21T13:47:59.210123009Z"} +2026/03/21 13:48:04 [log_collector] {"stage_name":"log_collector","events_processed":15105,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3021,"last_update":"2026-03-21T13:47:59.068113344Z"} +2026/03/21 13:48:04 ───────────────────────────────────────────────── +2026/03/21 13:48:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:48:09 [metric_collector] {"stage_name":"metric_collector","events_processed":8953,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1790.6,"last_update":"2026-03-21T13:48:04.068540091Z"} +2026/03/21 13:48:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:48:04.077528707Z"} +2026/03/21 13:48:09 [detection_layer] {"stage_name":"detection_layer","events_processed":298,"events_dropped":0,"avg_latency_ms":17.526293787769834,"throughput_eps":0,"last_update":"2026-03-21T13:48:04.210963268Z"} +2026/03/21 13:48:09 [transform_engine] {"stage_name":"transform_engine","events_processed":298,"events_dropped":0,"avg_latency_ms":466.0537362559879,"throughput_eps":0,"last_update":"2026-03-21T13:48:04.209737841Z"} +2026/03/21 13:48:09 [log_collector] {"stage_name":"log_collector","events_processed":15159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3031.8,"last_update":"2026-03-21T13:48:04.068544451Z"} +2026/03/21 13:48:09 ───────────────────────────────────────────────── +2026/03/21 13:48:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:48:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3586,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:48:09.078681785Z"} +2026/03/21 13:48:14 [detection_layer] {"stage_name":"detection_layer","events_processed":298,"events_dropped":0,"avg_latency_ms":17.526293787769834,"throughput_eps":0,"last_update":"2026-03-21T13:48:09.210054619Z"} +2026/03/21 13:48:14 [transform_engine] {"stage_name":"transform_engine","events_processed":298,"events_dropped":0,"avg_latency_ms":466.0537362559879,"throughput_eps":0,"last_update":"2026-03-21T13:48:09.210070178Z"} +2026/03/21 13:48:14 [log_collector] {"stage_name":"log_collector","events_processed":15159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3031.8,"last_update":"2026-03-21T13:48:09.068666384Z"} +2026/03/21 13:48:14 [metric_collector] {"stage_name":"metric_collector","events_processed":8959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1791.8,"last_update":"2026-03-21T13:48:09.069026353Z"} +2026/03/21 13:48:14 ───────────────────────────────────────────────── +2026/03/21 13:48:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:48:19 [transform_engine] {"stage_name":"transform_engine","events_processed":298,"events_dropped":0,"avg_latency_ms":466.0537362559879,"throughput_eps":0,"last_update":"2026-03-21T13:48:14.210735857Z"} +2026/03/21 13:48:19 [log_collector] {"stage_name":"log_collector","events_processed":15159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3031.8,"last_update":"2026-03-21T13:48:14.0682347Z"} +2026/03/21 13:48:19 [metric_collector] {"stage_name":"metric_collector","events_processed":8964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1792.8,"last_update":"2026-03-21T13:48:14.068736882Z"} +2026/03/21 13:48:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3588,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:48:14.077379946Z"} +2026/03/21 13:48:19 [detection_layer] {"stage_name":"detection_layer","events_processed":298,"events_dropped":0,"avg_latency_ms":17.526293787769834,"throughput_eps":0,"last_update":"2026-03-21T13:48:14.210720007Z"} +2026/03/21 13:48:19 ───────────────────────────────────────────────── +Saved state: 16 clusters, 15160 messages, reason: none +2026/03/21 13:48:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:48:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:48:19.078302927Z"} +2026/03/21 13:48:24 [detection_layer] {"stage_name":"detection_layer","events_processed":298,"events_dropped":0,"avg_latency_ms":17.526293787769834,"throughput_eps":0,"last_update":"2026-03-21T13:48:19.210520217Z"} +2026/03/21 13:48:24 [transform_engine] {"stage_name":"transform_engine","events_processed":299,"events_dropped":0,"avg_latency_ms":396.66130740479036,"throughput_eps":0,"last_update":"2026-03-21T13:48:19.329623632Z"} +2026/03/21 13:48:24 [log_collector] {"stage_name":"log_collector","events_processed":15159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3031.8,"last_update":"2026-03-21T13:48:19.068108302Z"} +2026/03/21 13:48:24 [metric_collector] {"stage_name":"metric_collector","events_processed":8969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1793.8,"last_update":"2026-03-21T13:48:19.068575738Z"} +2026/03/21 13:48:24 ───────────────────────────────────────────────── +2026/03/21 13:48:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:48:29 [log_collector] {"stage_name":"log_collector","events_processed":15162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3032.4,"last_update":"2026-03-21T13:48:24.068431525Z"} +2026/03/21 13:48:29 [metric_collector] {"stage_name":"metric_collector","events_processed":8974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1794.8,"last_update":"2026-03-21T13:48:24.068595148Z"} +2026/03/21 13:48:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3592,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:48:24.074767991Z"} +2026/03/21 13:48:29 [detection_layer] {"stage_name":"detection_layer","events_processed":299,"events_dropped":0,"avg_latency_ms":17.91392263021587,"throughput_eps":0,"last_update":"2026-03-21T13:48:24.21052984Z"} +2026/03/21 13:48:29 [transform_engine] {"stage_name":"transform_engine","events_processed":299,"events_dropped":0,"avg_latency_ms":396.66130740479036,"throughput_eps":0,"last_update":"2026-03-21T13:48:24.210516244Z"} +2026/03/21 13:48:29 ───────────────────────────────────────────────── +2026/03/21 13:48:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:48:34 [transform_engine] {"stage_name":"transform_engine","events_processed":299,"events_dropped":0,"avg_latency_ms":396.66130740479036,"throughput_eps":0,"last_update":"2026-03-21T13:48:29.210214763Z"} +2026/03/21 13:48:34 [log_collector] {"stage_name":"log_collector","events_processed":15162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3032.4,"last_update":"2026-03-21T13:48:29.068053638Z"} +2026/03/21 13:48:34 [metric_collector] {"stage_name":"metric_collector","events_processed":8979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1795.8,"last_update":"2026-03-21T13:48:29.068194918Z"} +2026/03/21 13:48:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:48:29.078970265Z"} +2026/03/21 13:48:34 [detection_layer] {"stage_name":"detection_layer","events_processed":299,"events_dropped":0,"avg_latency_ms":17.91392263021587,"throughput_eps":0,"last_update":"2026-03-21T13:48:29.210204262Z"} +2026/03/21 13:48:34 ───────────────────────────────────────────────── +2026/03/21 13:48:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:48:39 [transform_engine] {"stage_name":"transform_engine","events_processed":299,"events_dropped":0,"avg_latency_ms":396.66130740479036,"throughput_eps":0,"last_update":"2026-03-21T13:48:34.210136949Z"} +2026/03/21 13:48:39 [log_collector] {"stage_name":"log_collector","events_processed":15173,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3034.6,"last_update":"2026-03-21T13:48:34.06868887Z"} +2026/03/21 13:48:39 [metric_collector] {"stage_name":"metric_collector","events_processed":8984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1796.8,"last_update":"2026-03-21T13:48:34.069006328Z"} +2026/03/21 13:48:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:48:34.078884898Z"} +2026/03/21 13:48:39 [detection_layer] {"stage_name":"detection_layer","events_processed":299,"events_dropped":0,"avg_latency_ms":17.91392263021587,"throughput_eps":0,"last_update":"2026-03-21T13:48:34.210123884Z"} +2026/03/21 13:48:39 ───────────────────────────────────────────────── +2026/03/21 13:48:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:48:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:48:39.07450733Z"} +2026/03/21 13:48:44 [detection_layer] {"stage_name":"detection_layer","events_processed":299,"events_dropped":0,"avg_latency_ms":17.91392263021587,"throughput_eps":0,"last_update":"2026-03-21T13:48:39.210778725Z"} +2026/03/21 13:48:44 [transform_engine] {"stage_name":"transform_engine","events_processed":299,"events_dropped":0,"avg_latency_ms":396.66130740479036,"throughput_eps":0,"last_update":"2026-03-21T13:48:39.209714136Z"} +2026/03/21 13:48:44 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T13:48:39.068534241Z"} +2026/03/21 13:48:44 [metric_collector] {"stage_name":"metric_collector","events_processed":8989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1797.8,"last_update":"2026-03-21T13:48:39.068982459Z"} +2026/03/21 13:48:44 ───────────────────────────────────────────────── +2026/03/21 13:48:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:48:49 [transform_engine] {"stage_name":"transform_engine","events_processed":299,"events_dropped":0,"avg_latency_ms":396.66130740479036,"throughput_eps":0,"last_update":"2026-03-21T13:48:44.209737517Z"} +2026/03/21 13:48:49 [log_collector] {"stage_name":"log_collector","events_processed":15189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.8,"last_update":"2026-03-21T13:48:44.068542422Z"} +2026/03/21 13:48:49 [metric_collector] {"stage_name":"metric_collector","events_processed":8994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1798.8,"last_update":"2026-03-21T13:48:44.068944752Z"} +2026/03/21 13:48:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:48:44.077482153Z"} +2026/03/21 13:48:49 [detection_layer] {"stage_name":"detection_layer","events_processed":299,"events_dropped":0,"avg_latency_ms":17.91392263021587,"throughput_eps":0,"last_update":"2026-03-21T13:48:44.21093998Z"} +2026/03/21 13:48:49 ───────────────────────────────────────────────── +2026/03/21 13:48:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:48:54 [log_collector] {"stage_name":"log_collector","events_processed":15189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.8,"last_update":"2026-03-21T13:48:49.068068703Z"} +2026/03/21 13:48:54 [metric_collector] {"stage_name":"metric_collector","events_processed":8999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1799.8,"last_update":"2026-03-21T13:48:49.06870942Z"} +2026/03/21 13:48:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3602,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:48:49.078088132Z"} +2026/03/21 13:48:54 [detection_layer] {"stage_name":"detection_layer","events_processed":299,"events_dropped":0,"avg_latency_ms":17.91392263021587,"throughput_eps":0,"last_update":"2026-03-21T13:48:49.210565411Z"} +2026/03/21 13:48:54 [transform_engine] {"stage_name":"transform_engine","events_processed":300,"events_dropped":0,"avg_latency_ms":334.05602512383234,"throughput_eps":0,"last_update":"2026-03-21T13:48:49.29423312Z"} +2026/03/21 13:48:54 ───────────────────────────────────────────────── +2026/03/21 13:48:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:48:59 [detection_layer] {"stage_name":"detection_layer","events_processed":300,"events_dropped":0,"avg_latency_ms":17.970293704172697,"throughput_eps":0,"last_update":"2026-03-21T13:48:54.210108444Z"} +2026/03/21 13:48:59 [transform_engine] {"stage_name":"transform_engine","events_processed":300,"events_dropped":0,"avg_latency_ms":334.05602512383234,"throughput_eps":0,"last_update":"2026-03-21T13:48:54.210119545Z"} +2026/03/21 13:48:59 [log_collector] {"stage_name":"log_collector","events_processed":15189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.8,"last_update":"2026-03-21T13:48:54.068183882Z"} +2026/03/21 13:48:59 [metric_collector] {"stage_name":"metric_collector","events_processed":9004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1800.8,"last_update":"2026-03-21T13:48:54.068464149Z"} +2026/03/21 13:48:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:48:54.078869707Z"} +2026/03/21 13:48:59 ───────────────────────────────────────────────── +2026/03/21 13:49:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:49:04 [log_collector] {"stage_name":"log_collector","events_processed":15189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.8,"last_update":"2026-03-21T13:48:59.069010245Z"} +2026/03/21 13:49:04 [metric_collector] {"stage_name":"metric_collector","events_processed":9009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1801.8,"last_update":"2026-03-21T13:48:59.069249503Z"} +2026/03/21 13:49:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:48:59.078827687Z"} +2026/03/21 13:49:04 [detection_layer] {"stage_name":"detection_layer","events_processed":300,"events_dropped":0,"avg_latency_ms":17.970293704172697,"throughput_eps":0,"last_update":"2026-03-21T13:48:59.210091041Z"} +2026/03/21 13:49:04 [transform_engine] {"stage_name":"transform_engine","events_processed":300,"events_dropped":0,"avg_latency_ms":334.05602512383234,"throughput_eps":0,"last_update":"2026-03-21T13:48:59.210102112Z"} +2026/03/21 13:49:04 ───────────────────────────────────────────────── +2026/03/21 13:49:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:49:09 [log_collector] {"stage_name":"log_collector","events_processed":15189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.8,"last_update":"2026-03-21T13:49:04.068829791Z"} +2026/03/21 13:49:09 [metric_collector] {"stage_name":"metric_collector","events_processed":9014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1802.8,"last_update":"2026-03-21T13:49:04.068974709Z"} +2026/03/21 13:49:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:49:04.077316586Z"} +2026/03/21 13:49:09 [detection_layer] {"stage_name":"detection_layer","events_processed":300,"events_dropped":0,"avg_latency_ms":17.970293704172697,"throughput_eps":0,"last_update":"2026-03-21T13:49:04.210547126Z"} +2026/03/21 13:49:09 [transform_engine] {"stage_name":"transform_engine","events_processed":300,"events_dropped":0,"avg_latency_ms":334.05602512383234,"throughput_eps":0,"last_update":"2026-03-21T13:49:04.210558608Z"} +2026/03/21 13:49:09 ───────────────────────────────────────────────── +2026/03/21 13:49:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:49:14 [transform_engine] {"stage_name":"transform_engine","events_processed":300,"events_dropped":0,"avg_latency_ms":334.05602512383234,"throughput_eps":0,"last_update":"2026-03-21T13:49:09.209794245Z"} +2026/03/21 13:49:14 [log_collector] {"stage_name":"log_collector","events_processed":15189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.8,"last_update":"2026-03-21T13:49:09.068453Z"} +2026/03/21 13:49:14 [metric_collector] {"stage_name":"metric_collector","events_processed":9019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1803.8,"last_update":"2026-03-21T13:49:09.069238274Z"} +2026/03/21 13:49:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:49:09.079623905Z"} +2026/03/21 13:49:14 [detection_layer] {"stage_name":"detection_layer","events_processed":300,"events_dropped":0,"avg_latency_ms":17.970293704172697,"throughput_eps":0,"last_update":"2026-03-21T13:49:09.20985387Z"} +2026/03/21 13:49:14 ───────────────────────────────────────────────── +2026/03/21 13:49:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:49:19 [detection_layer] {"stage_name":"detection_layer","events_processed":300,"events_dropped":0,"avg_latency_ms":17.970293704172697,"throughput_eps":0,"last_update":"2026-03-21T13:49:14.210231846Z"} +2026/03/21 13:49:19 [transform_engine] {"stage_name":"transform_engine","events_processed":300,"events_dropped":0,"avg_latency_ms":334.05602512383234,"throughput_eps":0,"last_update":"2026-03-21T13:49:14.210248338Z"} +2026/03/21 13:49:19 [log_collector] {"stage_name":"log_collector","events_processed":15189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.8,"last_update":"2026-03-21T13:49:14.06881187Z"} +2026/03/21 13:49:19 [metric_collector] {"stage_name":"metric_collector","events_processed":9024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1804.8,"last_update":"2026-03-21T13:49:14.069146351Z"} +2026/03/21 13:49:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:49:14.078889882Z"} +2026/03/21 13:49:19 ───────────────────────────────────────────────── +2026/03/21 13:49:19 [ANOMALY] time=2026-03-21T13:49:19Z score=0.8872 method=SEAD details=MAD!:w=0.33,s=0.95 RRCF-fast!:w=0.17,s=0.90 RRCF-mid:w=0.14,s=0.83 RRCF-slow!:w=0.11,s=0.96 COPOD!:w=0.25,s=0.79 +2026/03/21 13:49:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:49:24 [transform_engine] {"stage_name":"transform_engine","events_processed":301,"events_dropped":0,"avg_latency_ms":281.32810629906584,"throughput_eps":0,"last_update":"2026-03-21T13:49:19.280843695Z"} +2026/03/21 13:49:24 [log_collector] {"stage_name":"log_collector","events_processed":15189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.8,"last_update":"2026-03-21T13:49:19.068729998Z"} +2026/03/21 13:49:24 [metric_collector] {"stage_name":"metric_collector","events_processed":9029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1805.8,"last_update":"2026-03-21T13:49:19.069020353Z"} +2026/03/21 13:49:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:49:19.078153395Z"} +2026/03/21 13:49:24 [detection_layer] {"stage_name":"detection_layer","events_processed":300,"events_dropped":0,"avg_latency_ms":17.970293704172697,"throughput_eps":0,"last_update":"2026-03-21T13:49:19.210414569Z"} +2026/03/21 13:49:24 ───────────────────────────────────────────────── +2026/03/21 13:49:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:49:29 [log_collector] {"stage_name":"log_collector","events_processed":15189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.8,"last_update":"2026-03-21T13:49:24.068863838Z"} +2026/03/21 13:49:29 [metric_collector] {"stage_name":"metric_collector","events_processed":9034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1806.8,"last_update":"2026-03-21T13:49:24.069167208Z"} +2026/03/21 13:49:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:49:24.078130025Z"} +2026/03/21 13:49:29 [detection_layer] {"stage_name":"detection_layer","events_processed":301,"events_dropped":0,"avg_latency_ms":17.947011563338158,"throughput_eps":0,"last_update":"2026-03-21T13:49:24.210745558Z"} +2026/03/21 13:49:29 [transform_engine] {"stage_name":"transform_engine","events_processed":301,"events_dropped":0,"avg_latency_ms":281.32810629906584,"throughput_eps":0,"last_update":"2026-03-21T13:49:24.210708657Z"} +2026/03/21 13:49:29 ───────────────────────────────────────────────── +2026/03/21 13:49:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:49:34 [log_collector] {"stage_name":"log_collector","events_processed":15189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.8,"last_update":"2026-03-21T13:49:29.06884635Z"} +2026/03/21 13:49:34 [metric_collector] {"stage_name":"metric_collector","events_processed":9039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1807.8,"last_update":"2026-03-21T13:49:29.069260142Z"} +2026/03/21 13:49:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:49:29.078212958Z"} +2026/03/21 13:49:34 [detection_layer] {"stage_name":"detection_layer","events_processed":301,"events_dropped":0,"avg_latency_ms":17.947011563338158,"throughput_eps":0,"last_update":"2026-03-21T13:49:29.21036838Z"} +2026/03/21 13:49:34 [transform_engine] {"stage_name":"transform_engine","events_processed":301,"events_dropped":0,"avg_latency_ms":281.32810629906584,"throughput_eps":0,"last_update":"2026-03-21T13:49:29.210589734Z"} +2026/03/21 13:49:34 ───────────────────────────────────────────────── +2026/03/21 13:49:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:49:39 [detection_layer] {"stage_name":"detection_layer","events_processed":301,"events_dropped":0,"avg_latency_ms":17.947011563338158,"throughput_eps":0,"last_update":"2026-03-21T13:49:34.210291939Z"} +2026/03/21 13:49:39 [transform_engine] {"stage_name":"transform_engine","events_processed":301,"events_dropped":0,"avg_latency_ms":281.32810629906584,"throughput_eps":0,"last_update":"2026-03-21T13:49:34.210415877Z"} +2026/03/21 13:49:39 [log_collector] {"stage_name":"log_collector","events_processed":15189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.8,"last_update":"2026-03-21T13:49:34.069181546Z"} +2026/03/21 13:49:39 [metric_collector] {"stage_name":"metric_collector","events_processed":9044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1808.8,"last_update":"2026-03-21T13:49:34.069291898Z"} +2026/03/21 13:49:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3620,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:49:34.078929235Z"} +2026/03/21 13:49:39 ───────────────────────────────────────────────── +2026/03/21 13:49:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:49:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3622,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:49:39.077182898Z"} +2026/03/21 13:49:44 [detection_layer] {"stage_name":"detection_layer","events_processed":301,"events_dropped":0,"avg_latency_ms":17.947011563338158,"throughput_eps":0,"last_update":"2026-03-21T13:49:39.210535453Z"} +2026/03/21 13:49:44 [transform_engine] {"stage_name":"transform_engine","events_processed":301,"events_dropped":0,"avg_latency_ms":281.32810629906584,"throughput_eps":0,"last_update":"2026-03-21T13:49:39.210412317Z"} +2026/03/21 13:49:44 [log_collector] {"stage_name":"log_collector","events_processed":15189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.8,"last_update":"2026-03-21T13:49:39.069010967Z"} +2026/03/21 13:49:44 [metric_collector] {"stage_name":"metric_collector","events_processed":9049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1809.8,"last_update":"2026-03-21T13:49:39.069230897Z"} +2026/03/21 13:49:44 ───────────────────────────────────────────────── +2026/03/21 13:49:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:49:49 [log_collector] {"stage_name":"log_collector","events_processed":15189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.8,"last_update":"2026-03-21T13:49:44.068796933Z"} +2026/03/21 13:49:49 [metric_collector] {"stage_name":"metric_collector","events_processed":9054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1810.8,"last_update":"2026-03-21T13:49:44.069124731Z"} +2026/03/21 13:49:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:49:44.07948868Z"} +2026/03/21 13:49:49 [detection_layer] {"stage_name":"detection_layer","events_processed":301,"events_dropped":0,"avg_latency_ms":17.947011563338158,"throughput_eps":0,"last_update":"2026-03-21T13:49:44.210908454Z"} +2026/03/21 13:49:49 [transform_engine] {"stage_name":"transform_engine","events_processed":301,"events_dropped":0,"avg_latency_ms":281.32810629906584,"throughput_eps":0,"last_update":"2026-03-21T13:49:44.209709998Z"} +2026/03/21 13:49:49 ───────────────────────────────────────────────── +2026/03/21 13:49:49 [ANOMALY] time=2026-03-21T13:49:49Z score=0.8652 method=SEAD details=MAD!:w=0.33,s=0.94 RRCF-fast:w=0.17,s=0.78 RRCF-mid:w=0.14,s=0.77 RRCF-slow:w=0.11,s=0.91 COPOD!:w=0.25,s=0.87 +2026/03/21 13:49:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:49:54 [log_collector] {"stage_name":"log_collector","events_processed":15189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.8,"last_update":"2026-03-21T13:49:49.068062966Z"} +2026/03/21 13:49:54 [metric_collector] {"stage_name":"metric_collector","events_processed":9058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1811.6,"last_update":"2026-03-21T13:49:49.067961081Z"} +2026/03/21 13:49:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:49:49.076944816Z"} +2026/03/21 13:49:54 [detection_layer] {"stage_name":"detection_layer","events_processed":301,"events_dropped":0,"avg_latency_ms":17.947011563338158,"throughput_eps":0,"last_update":"2026-03-21T13:49:49.210450113Z"} +2026/03/21 13:49:54 [transform_engine] {"stage_name":"transform_engine","events_processed":302,"events_dropped":0,"avg_latency_ms":239.8523044392527,"throughput_eps":0,"last_update":"2026-03-21T13:49:49.284335227Z"} +2026/03/21 13:49:54 ───────────────────────────────────────────────── +2026/03/21 13:49:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:49:59 [metric_collector] {"stage_name":"metric_collector","events_processed":9063,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1812.6,"last_update":"2026-03-21T13:49:54.067983551Z"} +2026/03/21 13:49:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:49:54.07932384Z"} +2026/03/21 13:49:59 [detection_layer] {"stage_name":"detection_layer","events_processed":302,"events_dropped":0,"avg_latency_ms":17.93310105067053,"throughput_eps":0,"last_update":"2026-03-21T13:49:54.210781706Z"} +2026/03/21 13:49:59 [transform_engine] {"stage_name":"transform_engine","events_processed":302,"events_dropped":0,"avg_latency_ms":239.8523044392527,"throughput_eps":0,"last_update":"2026-03-21T13:49:54.210796906Z"} +2026/03/21 13:49:59 [log_collector] {"stage_name":"log_collector","events_processed":15189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.8,"last_update":"2026-03-21T13:49:54.068060117Z"} +2026/03/21 13:49:59 ───────────────────────────────────────────────── +2026/03/21 13:50:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:50:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:49:59.077425313Z"} +2026/03/21 13:50:04 [detection_layer] {"stage_name":"detection_layer","events_processed":302,"events_dropped":0,"avg_latency_ms":17.93310105067053,"throughput_eps":0,"last_update":"2026-03-21T13:49:59.210832714Z"} +2026/03/21 13:50:04 [transform_engine] {"stage_name":"transform_engine","events_processed":302,"events_dropped":0,"avg_latency_ms":239.8523044392527,"throughput_eps":0,"last_update":"2026-03-21T13:49:59.209673974Z"} +2026/03/21 13:50:04 [log_collector] {"stage_name":"log_collector","events_processed":15189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.8,"last_update":"2026-03-21T13:49:59.068311238Z"} +2026/03/21 13:50:04 [metric_collector] {"stage_name":"metric_collector","events_processed":9068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1813.6,"last_update":"2026-03-21T13:49:59.068524256Z"} +2026/03/21 13:50:04 ───────────────────────────────────────────────── +Saved state: 16 clusters, 15190 messages, reason: none +2026/03/21 13:50:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:50:09 [transform_engine] {"stage_name":"transform_engine","events_processed":302,"events_dropped":0,"avg_latency_ms":239.8523044392527,"throughput_eps":0,"last_update":"2026-03-21T13:50:04.210209059Z"} +2026/03/21 13:50:09 [log_collector] {"stage_name":"log_collector","events_processed":15189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.8,"last_update":"2026-03-21T13:50:04.069089318Z"} +2026/03/21 13:50:09 [metric_collector] {"stage_name":"metric_collector","events_processed":9073,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1814.6,"last_update":"2026-03-21T13:50:04.069094257Z"} +2026/03/21 13:50:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3632,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:50:04.081802908Z"} +2026/03/21 13:50:09 [detection_layer] {"stage_name":"detection_layer","events_processed":302,"events_dropped":0,"avg_latency_ms":17.93310105067053,"throughput_eps":0,"last_update":"2026-03-21T13:50:04.210190253Z"} +2026/03/21 13:50:09 ───────────────────────────────────────────────── +2026/03/21 13:50:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:50:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:50:09.079175064Z"} +2026/03/21 13:50:14 [detection_layer] {"stage_name":"detection_layer","events_processed":302,"events_dropped":0,"avg_latency_ms":17.93310105067053,"throughput_eps":0,"last_update":"2026-03-21T13:50:09.210518081Z"} +2026/03/21 13:50:14 [transform_engine] {"stage_name":"transform_engine","events_processed":302,"events_dropped":0,"avg_latency_ms":239.8523044392527,"throughput_eps":0,"last_update":"2026-03-21T13:50:09.210573367Z"} +2026/03/21 13:50:14 [log_collector] {"stage_name":"log_collector","events_processed":15192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3038.4,"last_update":"2026-03-21T13:50:09.068093211Z"} +2026/03/21 13:50:14 [metric_collector] {"stage_name":"metric_collector","events_processed":9078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1815.6,"last_update":"2026-03-21T13:50:09.068017476Z"} +2026/03/21 13:50:14 ───────────────────────────────────────────────── +2026/03/21 13:50:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:50:19 [log_collector] {"stage_name":"log_collector","events_processed":15192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3038.4,"last_update":"2026-03-21T13:50:14.06806574Z"} +2026/03/21 13:50:19 [metric_collector] {"stage_name":"metric_collector","events_processed":9083,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1816.6,"last_update":"2026-03-21T13:50:14.067935811Z"} +2026/03/21 13:50:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:50:14.078693093Z"} +2026/03/21 13:50:19 [detection_layer] {"stage_name":"detection_layer","events_processed":302,"events_dropped":0,"avg_latency_ms":17.93310105067053,"throughput_eps":0,"last_update":"2026-03-21T13:50:14.210063002Z"} +2026/03/21 13:50:19 [transform_engine] {"stage_name":"transform_engine","events_processed":302,"events_dropped":0,"avg_latency_ms":239.8523044392527,"throughput_eps":0,"last_update":"2026-03-21T13:50:14.210122926Z"} +2026/03/21 13:50:19 ───────────────────────────────────────────────── +2026/03/21 13:50:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:50:24 [transform_engine] {"stage_name":"transform_engine","events_processed":302,"events_dropped":0,"avg_latency_ms":239.8523044392527,"throughput_eps":0,"last_update":"2026-03-21T13:50:19.210434051Z"} +2026/03/21 13:50:24 [log_collector] {"stage_name":"log_collector","events_processed":15192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3038.4,"last_update":"2026-03-21T13:50:19.068208291Z"} +2026/03/21 13:50:24 [metric_collector] {"stage_name":"metric_collector","events_processed":9088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1817.6,"last_update":"2026-03-21T13:50:19.067943836Z"} +2026/03/21 13:50:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:50:19.075784212Z"} +2026/03/21 13:50:24 [detection_layer] {"stage_name":"detection_layer","events_processed":302,"events_dropped":0,"avg_latency_ms":17.93310105067053,"throughput_eps":0,"last_update":"2026-03-21T13:50:19.210441706Z"} +2026/03/21 13:50:24 ───────────────────────────────────────────────── +2026/03/21 13:50:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:50:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3640,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:50:24.075221777Z"} +2026/03/21 13:50:29 [detection_layer] {"stage_name":"detection_layer","events_processed":303,"events_dropped":0,"avg_latency_ms":17.162736640536423,"throughput_eps":0,"last_update":"2026-03-21T13:50:24.210463111Z"} +2026/03/21 13:50:29 [transform_engine] {"stage_name":"transform_engine","events_processed":303,"events_dropped":0,"avg_latency_ms":211.15727555140217,"throughput_eps":0,"last_update":"2026-03-21T13:50:24.210481106Z"} +2026/03/21 13:50:29 [log_collector] {"stage_name":"log_collector","events_processed":15192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3038.4,"last_update":"2026-03-21T13:50:24.068572601Z"} +2026/03/21 13:50:29 [metric_collector] {"stage_name":"metric_collector","events_processed":9093,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1818.6,"last_update":"2026-03-21T13:50:24.0685676Z"} +2026/03/21 13:50:29 ───────────────────────────────────────────────── +2026/03/21 13:50:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:50:34 [log_collector] {"stage_name":"log_collector","events_processed":15192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3038.4,"last_update":"2026-03-21T13:50:29.068395279Z"} +2026/03/21 13:50:34 [metric_collector] {"stage_name":"metric_collector","events_processed":9098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1819.6,"last_update":"2026-03-21T13:50:29.068414355Z"} +2026/03/21 13:50:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:50:29.076967853Z"} +2026/03/21 13:50:34 [detection_layer] {"stage_name":"detection_layer","events_processed":303,"events_dropped":0,"avg_latency_ms":17.162736640536423,"throughput_eps":0,"last_update":"2026-03-21T13:50:29.210220872Z"} +2026/03/21 13:50:34 [transform_engine] {"stage_name":"transform_engine","events_processed":303,"events_dropped":0,"avg_latency_ms":211.15727555140217,"throughput_eps":0,"last_update":"2026-03-21T13:50:29.210246632Z"} +2026/03/21 13:50:34 ───────────────────────────────────────────────── +2026/03/21 13:50:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:50:39 [metric_collector] {"stage_name":"metric_collector","events_processed":9103,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1820.6,"last_update":"2026-03-21T13:50:34.068138894Z"} +2026/03/21 13:50:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:50:34.07633141Z"} +2026/03/21 13:50:39 [detection_layer] {"stage_name":"detection_layer","events_processed":303,"events_dropped":0,"avg_latency_ms":17.162736640536423,"throughput_eps":0,"last_update":"2026-03-21T13:50:34.210560981Z"} +2026/03/21 13:50:39 [transform_engine] {"stage_name":"transform_engine","events_processed":303,"events_dropped":0,"avg_latency_ms":211.15727555140217,"throughput_eps":0,"last_update":"2026-03-21T13:50:34.21053503Z"} +2026/03/21 13:50:39 [log_collector] {"stage_name":"log_collector","events_processed":15192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3038.4,"last_update":"2026-03-21T13:50:34.068075754Z"} +2026/03/21 13:50:39 ───────────────────────────────────────────────── +2026/03/21 13:50:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:50:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3646,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:50:39.075847082Z"} +2026/03/21 13:50:44 [detection_layer] {"stage_name":"detection_layer","events_processed":303,"events_dropped":0,"avg_latency_ms":17.162736640536423,"throughput_eps":0,"last_update":"2026-03-21T13:50:39.210496485Z"} +2026/03/21 13:50:44 [transform_engine] {"stage_name":"transform_engine","events_processed":303,"events_dropped":0,"avg_latency_ms":211.15727555140217,"throughput_eps":0,"last_update":"2026-03-21T13:50:39.210508096Z"} +2026/03/21 13:50:44 [log_collector] {"stage_name":"log_collector","events_processed":15192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3038.4,"last_update":"2026-03-21T13:50:39.068410305Z"} +2026/03/21 13:50:44 [metric_collector] {"stage_name":"metric_collector","events_processed":9108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1821.6,"last_update":"2026-03-21T13:50:39.068461734Z"} +2026/03/21 13:50:44 ───────────────────────────────────────────────── +2026/03/21 13:50:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:50:49 [log_collector] {"stage_name":"log_collector","events_processed":15192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3038.4,"last_update":"2026-03-21T13:50:44.068083569Z"} +2026/03/21 13:50:49 [metric_collector] {"stage_name":"metric_collector","events_processed":9114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1822.8,"last_update":"2026-03-21T13:50:44.068575752Z"} +2026/03/21 13:50:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:50:44.077382576Z"} +2026/03/21 13:50:49 [detection_layer] {"stage_name":"detection_layer","events_processed":303,"events_dropped":0,"avg_latency_ms":17.162736640536423,"throughput_eps":0,"last_update":"2026-03-21T13:50:44.210627705Z"} +2026/03/21 13:50:49 [transform_engine] {"stage_name":"transform_engine","events_processed":303,"events_dropped":0,"avg_latency_ms":211.15727555140217,"throughput_eps":0,"last_update":"2026-03-21T13:50:44.210650338Z"} +2026/03/21 13:50:49 ───────────────────────────────────────────────── +2026/03/21 13:50:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:50:54 [transform_engine] {"stage_name":"transform_engine","events_processed":304,"events_dropped":0,"avg_latency_ms":212.75210424112174,"throughput_eps":0,"last_update":"2026-03-21T13:50:49.429706723Z"} +2026/03/21 13:50:54 [log_collector] {"stage_name":"log_collector","events_processed":15202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3040.4,"last_update":"2026-03-21T13:50:49.068157053Z"} +2026/03/21 13:50:54 [metric_collector] {"stage_name":"metric_collector","events_processed":9119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1823.8,"last_update":"2026-03-21T13:50:49.068881752Z"} +2026/03/21 13:50:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3650,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:50:49.078271171Z"} +2026/03/21 13:50:54 [detection_layer] {"stage_name":"detection_layer","events_processed":303,"events_dropped":0,"avg_latency_ms":17.162736640536423,"throughput_eps":0,"last_update":"2026-03-21T13:50:49.21066173Z"} +2026/03/21 13:50:54 ───────────────────────────────────────────────── +2026/03/21 13:50:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:50:59 [log_collector] {"stage_name":"log_collector","events_processed":15203,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3040.6,"last_update":"2026-03-21T13:50:59.068315677Z"} +2026/03/21 13:50:59 [metric_collector] {"stage_name":"metric_collector","events_processed":9124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1824.8,"last_update":"2026-03-21T13:50:54.068342676Z"} +2026/03/21 13:50:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:50:54.07954454Z"} +2026/03/21 13:50:59 [detection_layer] {"stage_name":"detection_layer","events_processed":304,"events_dropped":0,"avg_latency_ms":17.60447631242914,"throughput_eps":0,"last_update":"2026-03-21T13:50:54.210860436Z"} +2026/03/21 13:50:59 [transform_engine] {"stage_name":"transform_engine","events_processed":304,"events_dropped":0,"avg_latency_ms":212.75210424112174,"throughput_eps":0,"last_update":"2026-03-21T13:50:54.209694862Z"} +2026/03/21 13:50:59 ───────────────────────────────────────────────── +2026/03/21 13:51:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:51:04 [log_collector] {"stage_name":"log_collector","events_processed":15203,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3040.6,"last_update":"2026-03-21T13:51:04.068169586Z"} +2026/03/21 13:51:04 [metric_collector] {"stage_name":"metric_collector","events_processed":9129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1825.8,"last_update":"2026-03-21T13:50:59.068959722Z"} +2026/03/21 13:51:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:50:59.078830454Z"} +2026/03/21 13:51:04 [detection_layer] {"stage_name":"detection_layer","events_processed":304,"events_dropped":0,"avg_latency_ms":17.60447631242914,"throughput_eps":0,"last_update":"2026-03-21T13:50:59.210080041Z"} +2026/03/21 13:51:04 [transform_engine] {"stage_name":"transform_engine","events_processed":304,"events_dropped":0,"avg_latency_ms":212.75210424112174,"throughput_eps":0,"last_update":"2026-03-21T13:50:59.210054252Z"} +2026/03/21 13:51:04 ───────────────────────────────────────────────── +2026/03/21 13:51:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:51:09 [log_collector] {"stage_name":"log_collector","events_processed":15203,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3040.6,"last_update":"2026-03-21T13:51:04.068169586Z"} +2026/03/21 13:51:09 [metric_collector] {"stage_name":"metric_collector","events_processed":9134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1826.8,"last_update":"2026-03-21T13:51:04.069037008Z"} +2026/03/21 13:51:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:51:04.077335896Z"} +2026/03/21 13:51:09 [detection_layer] {"stage_name":"detection_layer","events_processed":304,"events_dropped":0,"avg_latency_ms":17.60447631242914,"throughput_eps":0,"last_update":"2026-03-21T13:51:04.210847227Z"} +2026/03/21 13:51:09 [transform_engine] {"stage_name":"transform_engine","events_processed":304,"events_dropped":0,"avg_latency_ms":212.75210424112174,"throughput_eps":0,"last_update":"2026-03-21T13:51:04.210726255Z"} +2026/03/21 13:51:09 ───────────────────────────────────────────────── +2026/03/21 13:51:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:51:14 [detection_layer] {"stage_name":"detection_layer","events_processed":304,"events_dropped":0,"avg_latency_ms":17.60447631242914,"throughput_eps":0,"last_update":"2026-03-21T13:51:09.210687874Z"} +2026/03/21 13:51:14 [transform_engine] {"stage_name":"transform_engine","events_processed":304,"events_dropped":0,"avg_latency_ms":212.75210424112174,"throughput_eps":0,"last_update":"2026-03-21T13:51:09.210661984Z"} +2026/03/21 13:51:14 [log_collector] {"stage_name":"log_collector","events_processed":15203,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3040.6,"last_update":"2026-03-21T13:51:09.068828201Z"} +2026/03/21 13:51:14 [metric_collector] {"stage_name":"metric_collector","events_processed":9139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1827.8,"last_update":"2026-03-21T13:51:09.069128988Z"} +2026/03/21 13:51:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:51:09.07931288Z"} +2026/03/21 13:51:14 ───────────────────────────────────────────────── +2026/03/21 13:51:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:51:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3660,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:51:14.07861488Z"} +2026/03/21 13:51:19 [detection_layer] {"stage_name":"detection_layer","events_processed":304,"events_dropped":0,"avg_latency_ms":17.60447631242914,"throughput_eps":0,"last_update":"2026-03-21T13:51:14.209895762Z"} +2026/03/21 13:51:19 [transform_engine] {"stage_name":"transform_engine","events_processed":304,"events_dropped":0,"avg_latency_ms":212.75210424112174,"throughput_eps":0,"last_update":"2026-03-21T13:51:14.209850385Z"} +2026/03/21 13:51:19 [log_collector] {"stage_name":"log_collector","events_processed":15203,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3040.6,"last_update":"2026-03-21T13:51:14.06878595Z"} +2026/03/21 13:51:19 [metric_collector] {"stage_name":"metric_collector","events_processed":9144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1828.8,"last_update":"2026-03-21T13:51:14.06909372Z"} +2026/03/21 13:51:19 ───────────────────────────────────────────────── +2026/03/21 13:51:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:51:24 [transform_engine] {"stage_name":"transform_engine","events_processed":305,"events_dropped":0,"avg_latency_ms":192.0826865928974,"throughput_eps":0,"last_update":"2026-03-21T13:51:19.319126399Z"} +2026/03/21 13:51:24 [log_collector] {"stage_name":"log_collector","events_processed":15203,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3040.6,"last_update":"2026-03-21T13:51:19.06872515Z"} +2026/03/21 13:51:24 [metric_collector] {"stage_name":"metric_collector","events_processed":9149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1829.8,"last_update":"2026-03-21T13:51:19.069001689Z"} +2026/03/21 13:51:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3662,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:51:19.078616069Z"} +2026/03/21 13:51:24 [detection_layer] {"stage_name":"detection_layer","events_processed":304,"events_dropped":0,"avg_latency_ms":17.60447631242914,"throughput_eps":0,"last_update":"2026-03-21T13:51:19.210966159Z"} +2026/03/21 13:51:24 ───────────────────────────────────────────────── +2026/03/21 13:51:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:51:29 [detection_layer] {"stage_name":"detection_layer","events_processed":305,"events_dropped":0,"avg_latency_ms":18.255941049943313,"throughput_eps":0,"last_update":"2026-03-21T13:51:24.210340884Z"} +2026/03/21 13:51:29 [transform_engine] {"stage_name":"transform_engine","events_processed":305,"events_dropped":0,"avg_latency_ms":192.0826865928974,"throughput_eps":0,"last_update":"2026-03-21T13:51:24.210304514Z"} +2026/03/21 13:51:29 [log_collector] {"stage_name":"log_collector","events_processed":15203,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3040.6,"last_update":"2026-03-21T13:51:24.068155733Z"} +2026/03/21 13:51:29 [metric_collector] {"stage_name":"metric_collector","events_processed":9154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1830.8,"last_update":"2026-03-21T13:51:24.068400894Z"} +2026/03/21 13:51:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:51:24.077949667Z"} +2026/03/21 13:51:29 ───────────────────────────────────────────────── +2026/03/21 13:51:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:51:34 [metric_collector] {"stage_name":"metric_collector","events_processed":9159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1831.8,"last_update":"2026-03-21T13:51:29.069073055Z"} +2026/03/21 13:51:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:51:29.077833087Z"} +2026/03/21 13:51:34 [detection_layer] {"stage_name":"detection_layer","events_processed":305,"events_dropped":0,"avg_latency_ms":18.255941049943313,"throughput_eps":0,"last_update":"2026-03-21T13:51:29.210151602Z"} +2026/03/21 13:51:34 [transform_engine] {"stage_name":"transform_engine","events_processed":305,"events_dropped":0,"avg_latency_ms":192.0826865928974,"throughput_eps":0,"last_update":"2026-03-21T13:51:29.210119751Z"} +2026/03/21 13:51:34 [log_collector] {"stage_name":"log_collector","events_processed":15203,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3040.6,"last_update":"2026-03-21T13:51:29.06843383Z"} +2026/03/21 13:51:34 ───────────────────────────────────────────────── +2026/03/21 13:51:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:51:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3668,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:51:34.07824531Z"} +2026/03/21 13:51:39 [detection_layer] {"stage_name":"detection_layer","events_processed":305,"events_dropped":0,"avg_latency_ms":18.255941049943313,"throughput_eps":0,"last_update":"2026-03-21T13:51:34.210483049Z"} +2026/03/21 13:51:39 [transform_engine] {"stage_name":"transform_engine","events_processed":305,"events_dropped":0,"avg_latency_ms":192.0826865928974,"throughput_eps":0,"last_update":"2026-03-21T13:51:34.210451187Z"} +2026/03/21 13:51:39 [log_collector] {"stage_name":"log_collector","events_processed":15203,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3040.6,"last_update":"2026-03-21T13:51:34.068653374Z"} +2026/03/21 13:51:39 [metric_collector] {"stage_name":"metric_collector","events_processed":9164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1832.8,"last_update":"2026-03-21T13:51:34.068960082Z"} +2026/03/21 13:51:39 ───────────────────────────────────────────────── +2026/03/21 13:51:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:51:44 [log_collector] {"stage_name":"log_collector","events_processed":15203,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3040.6,"last_update":"2026-03-21T13:51:39.068941077Z"} +2026/03/21 13:51:44 [metric_collector] {"stage_name":"metric_collector","events_processed":9169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1833.8,"last_update":"2026-03-21T13:51:39.069345854Z"} +2026/03/21 13:51:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3670,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:51:39.078989609Z"} +2026/03/21 13:51:44 [detection_layer] {"stage_name":"detection_layer","events_processed":305,"events_dropped":0,"avg_latency_ms":18.255941049943313,"throughput_eps":0,"last_update":"2026-03-21T13:51:39.210412223Z"} +2026/03/21 13:51:44 [transform_engine] {"stage_name":"transform_engine","events_processed":305,"events_dropped":0,"avg_latency_ms":192.0826865928974,"throughput_eps":0,"last_update":"2026-03-21T13:51:39.210308744Z"} +2026/03/21 13:51:44 ───────────────────────────────────────────────── +2026/03/21 13:51:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:51:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:51:44.077667748Z"} +2026/03/21 13:51:49 [detection_layer] {"stage_name":"detection_layer","events_processed":305,"events_dropped":0,"avg_latency_ms":18.255941049943313,"throughput_eps":0,"last_update":"2026-03-21T13:51:44.210095898Z"} +2026/03/21 13:51:49 [transform_engine] {"stage_name":"transform_engine","events_processed":305,"events_dropped":0,"avg_latency_ms":192.0826865928974,"throughput_eps":0,"last_update":"2026-03-21T13:51:44.210059437Z"} +2026/03/21 13:51:49 [log_collector] {"stage_name":"log_collector","events_processed":15203,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3040.6,"last_update":"2026-03-21T13:51:44.068338225Z"} +2026/03/21 13:51:49 [metric_collector] {"stage_name":"metric_collector","events_processed":9174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1834.8,"last_update":"2026-03-21T13:51:44.068820009Z"} +2026/03/21 13:51:49 ───────────────────────────────────────────────── +2026/03/21 13:51:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:51:54 [detection_layer] {"stage_name":"detection_layer","events_processed":305,"events_dropped":0,"avg_latency_ms":18.255941049943313,"throughput_eps":0,"last_update":"2026-03-21T13:51:49.210479977Z"} +2026/03/21 13:51:54 [transform_engine] {"stage_name":"transform_engine","events_processed":306,"events_dropped":0,"avg_latency_ms":167.34946327431794,"throughput_eps":0,"last_update":"2026-03-21T13:51:49.278859084Z"} +2026/03/21 13:51:54 [log_collector] {"stage_name":"log_collector","events_processed":15203,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3040.6,"last_update":"2026-03-21T13:51:49.068206637Z"} +2026/03/21 13:51:54 [metric_collector] {"stage_name":"metric_collector","events_processed":9179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1835.8,"last_update":"2026-03-21T13:51:49.068639457Z"} +2026/03/21 13:51:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:51:49.07816768Z"} +2026/03/21 13:51:54 ───────────────────────────────────────────────── +2026/03/21 13:51:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:51:59 [detection_layer] {"stage_name":"detection_layer","events_processed":306,"events_dropped":0,"avg_latency_ms":18.57799463995465,"throughput_eps":0,"last_update":"2026-03-21T13:51:54.210549554Z"} +2026/03/21 13:51:59 [transform_engine] {"stage_name":"transform_engine","events_processed":306,"events_dropped":0,"avg_latency_ms":167.34946327431794,"throughput_eps":0,"last_update":"2026-03-21T13:51:54.210512663Z"} +2026/03/21 13:51:59 [log_collector] {"stage_name":"log_collector","events_processed":15203,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3040.6,"last_update":"2026-03-21T13:51:54.068181525Z"} +2026/03/21 13:51:59 [metric_collector] {"stage_name":"metric_collector","events_processed":9184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1836.8,"last_update":"2026-03-21T13:51:54.068608553Z"} +2026/03/21 13:51:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3676,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:51:54.078106148Z"} +2026/03/21 13:51:59 ───────────────────────────────────────────────── +Saved state: 16 clusters, 15204 messages, reason: none +2026/03/21 13:52:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:52:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:51:59.077853031Z"} +2026/03/21 13:52:04 [detection_layer] {"stage_name":"detection_layer","events_processed":306,"events_dropped":0,"avg_latency_ms":18.57799463995465,"throughput_eps":0,"last_update":"2026-03-21T13:51:59.21023669Z"} +2026/03/21 13:52:04 [transform_engine] {"stage_name":"transform_engine","events_processed":306,"events_dropped":0,"avg_latency_ms":167.34946327431794,"throughput_eps":0,"last_update":"2026-03-21T13:51:59.210130848Z"} +2026/03/21 13:52:04 [log_collector] {"stage_name":"log_collector","events_processed":15203,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3040.6,"last_update":"2026-03-21T13:51:59.068763419Z"} +2026/03/21 13:52:04 [metric_collector] {"stage_name":"metric_collector","events_processed":9189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1837.8,"last_update":"2026-03-21T13:51:59.068960376Z"} +2026/03/21 13:52:04 ───────────────────────────────────────────────── +2026/03/21 13:52:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:52:09 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:52:04.0688415Z"} +2026/03/21 13:52:09 [metric_collector] {"stage_name":"metric_collector","events_processed":9194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1838.8,"last_update":"2026-03-21T13:52:04.069194216Z"} +2026/03/21 13:52:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:52:04.078337021Z"} +2026/03/21 13:52:09 [detection_layer] {"stage_name":"detection_layer","events_processed":306,"events_dropped":0,"avg_latency_ms":18.57799463995465,"throughput_eps":0,"last_update":"2026-03-21T13:52:04.210579136Z"} +2026/03/21 13:52:09 [transform_engine] {"stage_name":"transform_engine","events_processed":306,"events_dropped":0,"avg_latency_ms":167.34946327431794,"throughput_eps":0,"last_update":"2026-03-21T13:52:04.210608102Z"} +2026/03/21 13:52:09 ───────────────────────────────────────────────── +2026/03/21 13:52:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:52:14 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:52:09.068605224Z"} +2026/03/21 13:52:14 [metric_collector] {"stage_name":"metric_collector","events_processed":9199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1839.8,"last_update":"2026-03-21T13:52:09.068917051Z"} +2026/03/21 13:52:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:52:09.0766588Z"} +2026/03/21 13:52:14 [detection_layer] {"stage_name":"detection_layer","events_processed":306,"events_dropped":0,"avg_latency_ms":18.57799463995465,"throughput_eps":0,"last_update":"2026-03-21T13:52:09.20986371Z"} +2026/03/21 13:52:14 [transform_engine] {"stage_name":"transform_engine","events_processed":306,"events_dropped":0,"avg_latency_ms":167.34946327431794,"throughput_eps":0,"last_update":"2026-03-21T13:52:09.209875232Z"} +2026/03/21 13:52:14 ───────────────────────────────────────────────── +2026/03/21 13:52:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:52:19 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:52:14.06854986Z"} +2026/03/21 13:52:19 [metric_collector] {"stage_name":"metric_collector","events_processed":9204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1840.8,"last_update":"2026-03-21T13:52:14.068912435Z"} +2026/03/21 13:52:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:52:14.074584036Z"} +2026/03/21 13:52:19 [detection_layer] {"stage_name":"detection_layer","events_processed":306,"events_dropped":0,"avg_latency_ms":18.57799463995465,"throughput_eps":0,"last_update":"2026-03-21T13:52:14.21085993Z"} +2026/03/21 13:52:19 [transform_engine] {"stage_name":"transform_engine","events_processed":306,"events_dropped":0,"avg_latency_ms":167.34946327431794,"throughput_eps":0,"last_update":"2026-03-21T13:52:14.20973838Z"} +2026/03/21 13:52:19 ───────────────────────────────────────────────── +2026/03/21 13:52:19 [ANOMALY] time=2026-03-21T13:52:19Z score=0.9174 method=SEAD details=MAD!:w=0.33,s=0.96 RRCF-fast!:w=0.17,s=0.97 RRCF-mid!:w=0.14,s=0.92 RRCF-slow!:w=0.11,s=0.95 COPOD!:w=0.24,s=0.81 +2026/03/21 13:52:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:52:24 [transform_engine] {"stage_name":"transform_engine","events_processed":307,"events_dropped":0,"avg_latency_ms":154.20926881945437,"throughput_eps":0,"last_update":"2026-03-21T13:52:19.311667885Z"} +2026/03/21 13:52:24 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:52:19.06859789Z"} +2026/03/21 13:52:24 [metric_collector] {"stage_name":"metric_collector","events_processed":9209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1841.8,"last_update":"2026-03-21T13:52:19.069144688Z"} +2026/03/21 13:52:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:52:19.074779898Z"} +2026/03/21 13:52:24 [detection_layer] {"stage_name":"detection_layer","events_processed":306,"events_dropped":0,"avg_latency_ms":18.57799463995465,"throughput_eps":0,"last_update":"2026-03-21T13:52:19.210003153Z"} +2026/03/21 13:52:24 ───────────────────────────────────────────────── +2026/03/21 13:52:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:52:29 [transform_engine] {"stage_name":"transform_engine","events_processed":307,"events_dropped":0,"avg_latency_ms":154.20926881945437,"throughput_eps":0,"last_update":"2026-03-21T13:52:24.210015899Z"} +2026/03/21 13:52:29 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:52:24.068561151Z"} +2026/03/21 13:52:29 [metric_collector] {"stage_name":"metric_collector","events_processed":9214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1842.8,"last_update":"2026-03-21T13:52:24.068804748Z"} +2026/03/21 13:52:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3688,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:52:24.075722137Z"} +2026/03/21 13:52:29 [detection_layer] {"stage_name":"detection_layer","events_processed":307,"events_dropped":0,"avg_latency_ms":16.96555091196372,"throughput_eps":0,"last_update":"2026-03-21T13:52:24.210001991Z"} +2026/03/21 13:52:29 ───────────────────────────────────────────────── +2026/03/21 13:52:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:52:34 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:52:29.068279092Z"} +2026/03/21 13:52:34 [metric_collector] {"stage_name":"metric_collector","events_processed":9219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1843.8,"last_update":"2026-03-21T13:52:29.068409583Z"} +2026/03/21 13:52:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:52:29.074694528Z"} +2026/03/21 13:52:34 [detection_layer] {"stage_name":"detection_layer","events_processed":307,"events_dropped":0,"avg_latency_ms":16.96555091196372,"throughput_eps":0,"last_update":"2026-03-21T13:52:29.209916197Z"} +2026/03/21 13:52:34 [transform_engine] {"stage_name":"transform_engine","events_processed":307,"events_dropped":0,"avg_latency_ms":154.20926881945437,"throughput_eps":0,"last_update":"2026-03-21T13:52:29.209927498Z"} +2026/03/21 13:52:34 ───────────────────────────────────────────────── +2026/03/21 13:52:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:52:39 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:52:34.068586449Z"} +2026/03/21 13:52:39 [metric_collector] {"stage_name":"metric_collector","events_processed":9224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1844.8,"last_update":"2026-03-21T13:52:34.068923625Z"} +2026/03/21 13:52:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:52:34.075759027Z"} +2026/03/21 13:52:39 [detection_layer] {"stage_name":"detection_layer","events_processed":307,"events_dropped":0,"avg_latency_ms":16.96555091196372,"throughput_eps":0,"last_update":"2026-03-21T13:52:34.210013038Z"} +2026/03/21 13:52:39 [transform_engine] {"stage_name":"transform_engine","events_processed":307,"events_dropped":0,"avg_latency_ms":154.20926881945437,"throughput_eps":0,"last_update":"2026-03-21T13:52:34.210025161Z"} +2026/03/21 13:52:39 ───────────────────────────────────────────────── +2026/03/21 13:52:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:52:44 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:52:39.068572335Z"} +2026/03/21 13:52:44 [metric_collector] {"stage_name":"metric_collector","events_processed":9229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1845.8,"last_update":"2026-03-21T13:52:39.068780494Z"} +2026/03/21 13:52:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:52:39.075434197Z"} +2026/03/21 13:52:44 [detection_layer] {"stage_name":"detection_layer","events_processed":307,"events_dropped":0,"avg_latency_ms":16.96555091196372,"throughput_eps":0,"last_update":"2026-03-21T13:52:39.210645493Z"} +2026/03/21 13:52:44 [transform_engine] {"stage_name":"transform_engine","events_processed":307,"events_dropped":0,"avg_latency_ms":154.20926881945437,"throughput_eps":0,"last_update":"2026-03-21T13:52:39.210656844Z"} +2026/03/21 13:52:44 ───────────────────────────────────────────────── +2026/03/21 13:52:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:52:49 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:52:44.068267051Z"} +2026/03/21 13:52:49 [metric_collector] {"stage_name":"metric_collector","events_processed":9234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1846.8,"last_update":"2026-03-21T13:52:44.068681876Z"} +2026/03/21 13:52:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:52:44.077291037Z"} +2026/03/21 13:52:49 [detection_layer] {"stage_name":"detection_layer","events_processed":307,"events_dropped":0,"avg_latency_ms":16.96555091196372,"throughput_eps":0,"last_update":"2026-03-21T13:52:44.210525251Z"} +2026/03/21 13:52:49 [transform_engine] {"stage_name":"transform_engine","events_processed":307,"events_dropped":0,"avg_latency_ms":154.20926881945437,"throughput_eps":0,"last_update":"2026-03-21T13:52:44.21053539Z"} +2026/03/21 13:52:49 ───────────────────────────────────────────────── +2026/03/21 13:52:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:52:54 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:52:49.068749525Z"} +2026/03/21 13:52:54 [metric_collector] {"stage_name":"metric_collector","events_processed":9239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1847.8,"last_update":"2026-03-21T13:52:49.068972211Z"} +2026/03/21 13:52:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:52:49.076398044Z"} +2026/03/21 13:52:54 [detection_layer] {"stage_name":"detection_layer","events_processed":307,"events_dropped":0,"avg_latency_ms":16.96555091196372,"throughput_eps":0,"last_update":"2026-03-21T13:52:49.210607085Z"} +2026/03/21 13:52:54 [transform_engine] {"stage_name":"transform_engine","events_processed":308,"events_dropped":0,"avg_latency_ms":134.8308686555635,"throughput_eps":0,"last_update":"2026-03-21T13:52:49.267936264Z"} +2026/03/21 13:52:54 ───────────────────────────────────────────────── +2026/03/21 13:52:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:52:59 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:52:54.068111792Z"} +2026/03/21 13:52:59 [metric_collector] {"stage_name":"metric_collector","events_processed":9244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1848.8,"last_update":"2026-03-21T13:52:54.068339419Z"} +2026/03/21 13:52:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3700,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:52:54.075640533Z"} +2026/03/21 13:52:59 [detection_layer] {"stage_name":"detection_layer","events_processed":308,"events_dropped":0,"avg_latency_ms":16.137521129570978,"throughput_eps":0,"last_update":"2026-03-21T13:52:54.209949523Z"} +2026/03/21 13:52:59 [transform_engine] {"stage_name":"transform_engine","events_processed":308,"events_dropped":0,"avg_latency_ms":134.8308686555635,"throughput_eps":0,"last_update":"2026-03-21T13:52:54.209970643Z"} +2026/03/21 13:52:59 ───────────────────────────────────────────────── +2026/03/21 13:53:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:53:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3702,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:52:59.075064918Z"} +2026/03/21 13:53:04 [detection_layer] {"stage_name":"detection_layer","events_processed":308,"events_dropped":0,"avg_latency_ms":16.137521129570978,"throughput_eps":0,"last_update":"2026-03-21T13:52:59.210307677Z"} +2026/03/21 13:53:04 [transform_engine] {"stage_name":"transform_engine","events_processed":308,"events_dropped":0,"avg_latency_ms":134.8308686555635,"throughput_eps":0,"last_update":"2026-03-21T13:52:59.210329699Z"} +2026/03/21 13:53:04 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:52:59.068842974Z"} +2026/03/21 13:53:04 [metric_collector] {"stage_name":"metric_collector","events_processed":9249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1849.8,"last_update":"2026-03-21T13:52:59.068959086Z"} +2026/03/21 13:53:04 ───────────────────────────────────────────────── +2026/03/21 13:53:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:53:09 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:53:09.068310196Z"} +2026/03/21 13:53:09 [metric_collector] {"stage_name":"metric_collector","events_processed":9254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1850.8,"last_update":"2026-03-21T13:53:04.069038288Z"} +2026/03/21 13:53:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:53:04.075745313Z"} +2026/03/21 13:53:09 [detection_layer] {"stage_name":"detection_layer","events_processed":308,"events_dropped":0,"avg_latency_ms":16.137521129570978,"throughput_eps":0,"last_update":"2026-03-21T13:53:04.20999669Z"} +2026/03/21 13:53:09 [transform_engine] {"stage_name":"transform_engine","events_processed":308,"events_dropped":0,"avg_latency_ms":134.8308686555635,"throughput_eps":0,"last_update":"2026-03-21T13:53:04.209973296Z"} +2026/03/21 13:53:09 ───────────────────────────────────────────────── +2026/03/21 13:53:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:53:14 [metric_collector] {"stage_name":"metric_collector","events_processed":9259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1851.8,"last_update":"2026-03-21T13:53:09.069092025Z"} +2026/03/21 13:53:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:53:09.075687385Z"} +2026/03/21 13:53:14 [detection_layer] {"stage_name":"detection_layer","events_processed":308,"events_dropped":0,"avg_latency_ms":16.137521129570978,"throughput_eps":0,"last_update":"2026-03-21T13:53:09.209911168Z"} +2026/03/21 13:53:14 [transform_engine] {"stage_name":"transform_engine","events_processed":308,"events_dropped":0,"avg_latency_ms":134.8308686555635,"throughput_eps":0,"last_update":"2026-03-21T13:53:09.209954171Z"} +2026/03/21 13:53:14 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:53:09.068310196Z"} +2026/03/21 13:53:14 ───────────────────────────────────────────────── +2026/03/21 13:53:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:53:19 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:53:19.068293559Z"} +2026/03/21 13:53:19 [metric_collector] {"stage_name":"metric_collector","events_processed":9264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1852.8,"last_update":"2026-03-21T13:53:14.069049358Z"} +2026/03/21 13:53:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:53:14.075376976Z"} +2026/03/21 13:53:19 [detection_layer] {"stage_name":"detection_layer","events_processed":308,"events_dropped":0,"avg_latency_ms":16.137521129570978,"throughput_eps":0,"last_update":"2026-03-21T13:53:14.210634839Z"} +2026/03/21 13:53:19 [transform_engine] {"stage_name":"transform_engine","events_processed":308,"events_dropped":0,"avg_latency_ms":134.8308686555635,"throughput_eps":0,"last_update":"2026-03-21T13:53:14.210611033Z"} +2026/03/21 13:53:19 ───────────────────────────────────────────────── +2026/03/21 13:53:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:53:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:53:19.075742935Z"} +2026/03/21 13:53:24 [detection_layer] {"stage_name":"detection_layer","events_processed":308,"events_dropped":0,"avg_latency_ms":16.137521129570978,"throughput_eps":0,"last_update":"2026-03-21T13:53:19.209996042Z"} +2026/03/21 13:53:24 [transform_engine] {"stage_name":"transform_engine","events_processed":309,"events_dropped":0,"avg_latency_ms":119.66816312445081,"throughput_eps":0,"last_update":"2026-03-21T13:53:19.268989957Z"} +2026/03/21 13:53:24 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:53:19.068293559Z"} +2026/03/21 13:53:24 [metric_collector] {"stage_name":"metric_collector","events_processed":9269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1853.8,"last_update":"2026-03-21T13:53:19.068739353Z"} +2026/03/21 13:53:24 ───────────────────────────────────────────────── +2026/03/21 13:53:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:53:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3712,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:53:24.075502244Z"} +2026/03/21 13:53:29 [detection_layer] {"stage_name":"detection_layer","events_processed":309,"events_dropped":0,"avg_latency_ms":15.129933703656782,"throughput_eps":0,"last_update":"2026-03-21T13:53:24.210793398Z"} +2026/03/21 13:53:29 [transform_engine] {"stage_name":"transform_engine","events_processed":309,"events_dropped":0,"avg_latency_ms":119.66816312445081,"throughput_eps":0,"last_update":"2026-03-21T13:53:24.209668633Z"} +2026/03/21 13:53:29 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:53:24.068060682Z"} +2026/03/21 13:53:29 [metric_collector] {"stage_name":"metric_collector","events_processed":9274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1854.8,"last_update":"2026-03-21T13:53:24.068313517Z"} +2026/03/21 13:53:29 ───────────────────────────────────────────────── +2026/03/21 13:53:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:53:34 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:53:29.068818229Z"} +2026/03/21 13:53:34 [metric_collector] {"stage_name":"metric_collector","events_processed":9279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1855.8,"last_update":"2026-03-21T13:53:29.069073098Z"} +2026/03/21 13:53:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:53:29.075527016Z"} +2026/03/21 13:53:34 [detection_layer] {"stage_name":"detection_layer","events_processed":309,"events_dropped":0,"avg_latency_ms":15.129933703656782,"throughput_eps":0,"last_update":"2026-03-21T13:53:29.211069471Z"} +2026/03/21 13:53:34 [transform_engine] {"stage_name":"transform_engine","events_processed":309,"events_dropped":0,"avg_latency_ms":119.66816312445081,"throughput_eps":0,"last_update":"2026-03-21T13:53:29.209676902Z"} +2026/03/21 13:53:34 ───────────────────────────────────────────────── +2026/03/21 13:53:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:53:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:53:34.078100817Z"} +2026/03/21 13:53:39 [detection_layer] {"stage_name":"detection_layer","events_processed":309,"events_dropped":0,"avg_latency_ms":15.129933703656782,"throughput_eps":0,"last_update":"2026-03-21T13:53:34.210385686Z"} +2026/03/21 13:53:39 [transform_engine] {"stage_name":"transform_engine","events_processed":309,"events_dropped":0,"avg_latency_ms":119.66816312445081,"throughput_eps":0,"last_update":"2026-03-21T13:53:34.210425462Z"} +2026/03/21 13:53:39 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:53:34.068090802Z"} +2026/03/21 13:53:39 [metric_collector] {"stage_name":"metric_collector","events_processed":9284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1856.8,"last_update":"2026-03-21T13:53:34.068408Z"} +2026/03/21 13:53:39 ───────────────────────────────────────────────── +2026/03/21 13:53:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:53:44 [transform_engine] {"stage_name":"transform_engine","events_processed":309,"events_dropped":0,"avg_latency_ms":119.66816312445081,"throughput_eps":0,"last_update":"2026-03-21T13:53:39.210217885Z"} +2026/03/21 13:53:44 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:53:44.068372031Z"} +2026/03/21 13:53:44 [metric_collector] {"stage_name":"metric_collector","events_processed":9288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1857.6,"last_update":"2026-03-21T13:53:39.068506702Z"} +2026/03/21 13:53:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3718,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:53:39.074995878Z"} +2026/03/21 13:53:44 [detection_layer] {"stage_name":"detection_layer","events_processed":309,"events_dropped":0,"avg_latency_ms":15.129933703656782,"throughput_eps":0,"last_update":"2026-03-21T13:53:39.210240799Z"} +2026/03/21 13:53:44 ───────────────────────────────────────────────── +2026/03/21 13:53:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:53:49 [transform_engine] {"stage_name":"transform_engine","events_processed":309,"events_dropped":0,"avg_latency_ms":119.66816312445081,"throughput_eps":0,"last_update":"2026-03-21T13:53:44.210022627Z"} +2026/03/21 13:53:49 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:53:44.068372031Z"} +2026/03/21 13:53:49 [metric_collector] {"stage_name":"metric_collector","events_processed":9294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1858.8,"last_update":"2026-03-21T13:53:44.06842867Z"} +2026/03/21 13:53:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:53:44.07477341Z"} +2026/03/21 13:53:49 [detection_layer] {"stage_name":"detection_layer","events_processed":309,"events_dropped":0,"avg_latency_ms":15.129933703656782,"throughput_eps":0,"last_update":"2026-03-21T13:53:44.209981628Z"} +2026/03/21 13:53:49 ───────────────────────────────────────────────── +2026/03/21 13:53:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:53:54 [metric_collector] {"stage_name":"metric_collector","events_processed":9298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1859.6,"last_update":"2026-03-21T13:53:49.068949041Z"} +2026/03/21 13:53:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3722,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:53:49.075070694Z"} +2026/03/21 13:53:54 [detection_layer] {"stage_name":"detection_layer","events_processed":309,"events_dropped":0,"avg_latency_ms":15.129933703656782,"throughput_eps":0,"last_update":"2026-03-21T13:53:49.210330119Z"} +2026/03/21 13:53:54 [transform_engine] {"stage_name":"transform_engine","events_processed":310,"events_dropped":0,"avg_latency_ms":107.83860209956066,"throughput_eps":0,"last_update":"2026-03-21T13:53:49.270823405Z"} +2026/03/21 13:53:54 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:53:54.068076476Z"} +2026/03/21 13:53:54 ───────────────────────────────────────────────── +2026/03/21 13:53:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:53:59 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:53:54.068076476Z"} +2026/03/21 13:53:59 [metric_collector] {"stage_name":"metric_collector","events_processed":9304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1860.8,"last_update":"2026-03-21T13:53:54.068435404Z"} +2026/03/21 13:53:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:53:54.074627671Z"} +2026/03/21 13:53:59 [detection_layer] {"stage_name":"detection_layer","events_processed":310,"events_dropped":0,"avg_latency_ms":14.716086962925427,"throughput_eps":0,"last_update":"2026-03-21T13:53:54.210862956Z"} +2026/03/21 13:53:59 [transform_engine] {"stage_name":"transform_engine","events_processed":310,"events_dropped":0,"avg_latency_ms":107.83860209956066,"throughput_eps":0,"last_update":"2026-03-21T13:53:54.209773538Z"} +2026/03/21 13:53:59 ───────────────────────────────────────────────── +2026/03/21 13:54:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:54:04 [transform_engine] {"stage_name":"transform_engine","events_processed":310,"events_dropped":0,"avg_latency_ms":107.83860209956066,"throughput_eps":0,"last_update":"2026-03-21T13:53:59.210171105Z"} +2026/03/21 13:54:04 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:53:59.068508861Z"} +2026/03/21 13:54:04 [metric_collector] {"stage_name":"metric_collector","events_processed":9309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1861.8,"last_update":"2026-03-21T13:53:59.06873809Z"} +2026/03/21 13:54:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:53:59.074934797Z"} +2026/03/21 13:54:04 [detection_layer] {"stage_name":"detection_layer","events_processed":310,"events_dropped":0,"avg_latency_ms":14.716086962925427,"throughput_eps":0,"last_update":"2026-03-21T13:53:59.210180744Z"} +2026/03/21 13:54:04 ───────────────────────────────────────────────── +2026/03/21 13:54:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:54:09 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:54:04.068308352Z"} +2026/03/21 13:54:09 [metric_collector] {"stage_name":"metric_collector","events_processed":9314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1862.8,"last_update":"2026-03-21T13:54:04.068548913Z"} +2026/03/21 13:54:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3728,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:54:04.074653663Z"} +2026/03/21 13:54:09 [detection_layer] {"stage_name":"detection_layer","events_processed":310,"events_dropped":0,"avg_latency_ms":14.716086962925427,"throughput_eps":0,"last_update":"2026-03-21T13:54:04.209908896Z"} +2026/03/21 13:54:09 [transform_engine] {"stage_name":"transform_engine","events_processed":310,"events_dropped":0,"avg_latency_ms":107.83860209956066,"throughput_eps":0,"last_update":"2026-03-21T13:54:04.209884018Z"} +2026/03/21 13:54:09 ───────────────────────────────────────────────── +2026/03/21 13:54:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:54:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3730,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:54:09.076047837Z"} +2026/03/21 13:54:14 [detection_layer] {"stage_name":"detection_layer","events_processed":310,"events_dropped":0,"avg_latency_ms":14.716086962925427,"throughput_eps":0,"last_update":"2026-03-21T13:54:09.210292141Z"} +2026/03/21 13:54:14 [transform_engine] {"stage_name":"transform_engine","events_processed":310,"events_dropped":0,"avg_latency_ms":107.83860209956066,"throughput_eps":0,"last_update":"2026-03-21T13:54:09.210268726Z"} +2026/03/21 13:54:14 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:54:09.068057063Z"} +2026/03/21 13:54:14 [metric_collector] {"stage_name":"metric_collector","events_processed":9319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1863.8,"last_update":"2026-03-21T13:54:09.068231697Z"} +2026/03/21 13:54:14 ───────────────────────────────────────────────── +2026/03/21 13:54:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:54:19 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:54:14.068722377Z"} +2026/03/21 13:54:19 [metric_collector] {"stage_name":"metric_collector","events_processed":9324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1864.8,"last_update":"2026-03-21T13:54:14.068894928Z"} +2026/03/21 13:54:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:54:14.075207345Z"} +2026/03/21 13:54:19 [detection_layer] {"stage_name":"detection_layer","events_processed":310,"events_dropped":0,"avg_latency_ms":14.716086962925427,"throughput_eps":0,"last_update":"2026-03-21T13:54:14.210451484Z"} +2026/03/21 13:54:19 [transform_engine] {"stage_name":"transform_engine","events_processed":310,"events_dropped":0,"avg_latency_ms":107.83860209956066,"throughput_eps":0,"last_update":"2026-03-21T13:54:14.210462725Z"} +2026/03/21 13:54:19 ───────────────────────────────────────────────── +2026/03/21 13:54:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:54:24 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:54:19.068063175Z"} +2026/03/21 13:54:24 [metric_collector] {"stage_name":"metric_collector","events_processed":9329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1865.8,"last_update":"2026-03-21T13:54:19.068522546Z"} +2026/03/21 13:54:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:54:19.075308009Z"} +2026/03/21 13:54:24 [detection_layer] {"stage_name":"detection_layer","events_processed":310,"events_dropped":0,"avg_latency_ms":14.716086962925427,"throughput_eps":0,"last_update":"2026-03-21T13:54:19.210544012Z"} +2026/03/21 13:54:24 [transform_engine] {"stage_name":"transform_engine","events_processed":311,"events_dropped":0,"avg_latency_ms":98.17825147964854,"throughput_eps":0,"last_update":"2026-03-21T13:54:19.270067576Z"} +2026/03/21 13:54:24 ───────────────────────────────────────────────── +2026/03/21 13:54:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:54:29 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:54:24.068537584Z"} +2026/03/21 13:54:29 [metric_collector] {"stage_name":"metric_collector","events_processed":9334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1866.8,"last_update":"2026-03-21T13:54:24.068789137Z"} +2026/03/21 13:54:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3736,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:54:24.075577365Z"} +2026/03/21 13:54:29 [detection_layer] {"stage_name":"detection_layer","events_processed":311,"events_dropped":0,"avg_latency_ms":14.237797370340342,"throughput_eps":0,"last_update":"2026-03-21T13:54:24.210835599Z"} +2026/03/21 13:54:29 [transform_engine] {"stage_name":"transform_engine","events_processed":311,"events_dropped":0,"avg_latency_ms":98.17825147964854,"throughput_eps":0,"last_update":"2026-03-21T13:54:24.209727946Z"} +2026/03/21 13:54:29 ───────────────────────────────────────────────── +2026/03/21 13:54:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:54:34 [metric_collector] {"stage_name":"metric_collector","events_processed":9339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1867.8,"last_update":"2026-03-21T13:54:29.069001231Z"} +2026/03/21 13:54:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3738,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:54:29.075099718Z"} +2026/03/21 13:54:34 [detection_layer] {"stage_name":"detection_layer","events_processed":311,"events_dropped":0,"avg_latency_ms":14.237797370340342,"throughput_eps":0,"last_update":"2026-03-21T13:54:29.21029034Z"} +2026/03/21 13:54:34 [transform_engine] {"stage_name":"transform_engine","events_processed":311,"events_dropped":0,"avg_latency_ms":98.17825147964854,"throughput_eps":0,"last_update":"2026-03-21T13:54:29.210299898Z"} +2026/03/21 13:54:34 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:54:29.068524397Z"} +2026/03/21 13:54:34 ───────────────────────────────────────────────── +2026/03/21 13:54:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:54:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3740,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:54:34.075058527Z"} +2026/03/21 13:54:39 [detection_layer] {"stage_name":"detection_layer","events_processed":311,"events_dropped":0,"avg_latency_ms":14.237797370340342,"throughput_eps":0,"last_update":"2026-03-21T13:54:34.210287191Z"} +2026/03/21 13:54:39 [transform_engine] {"stage_name":"transform_engine","events_processed":311,"events_dropped":0,"avg_latency_ms":98.17825147964854,"throughput_eps":0,"last_update":"2026-03-21T13:54:34.21029674Z"} +2026/03/21 13:54:39 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:54:34.068524885Z"} +2026/03/21 13:54:39 [metric_collector] {"stage_name":"metric_collector","events_processed":9344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1868.8,"last_update":"2026-03-21T13:54:34.068747342Z"} +2026/03/21 13:54:39 ───────────────────────────────────────────────── +2026/03/21 13:54:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:54:44 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:54:39.068448118Z"} +2026/03/21 13:54:44 [metric_collector] {"stage_name":"metric_collector","events_processed":9349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1869.8,"last_update":"2026-03-21T13:54:39.068685453Z"} +2026/03/21 13:54:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:54:39.074903949Z"} +2026/03/21 13:54:44 [detection_layer] {"stage_name":"detection_layer","events_processed":311,"events_dropped":0,"avg_latency_ms":14.237797370340342,"throughput_eps":0,"last_update":"2026-03-21T13:54:39.210113225Z"} +2026/03/21 13:54:44 [transform_engine] {"stage_name":"transform_engine","events_processed":311,"events_dropped":0,"avg_latency_ms":98.17825147964854,"throughput_eps":0,"last_update":"2026-03-21T13:54:39.210123255Z"} +2026/03/21 13:54:44 ───────────────────────────────────────────────── +2026/03/21 13:54:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:54:49 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:54:44.068716689Z"} +2026/03/21 13:54:49 [metric_collector] {"stage_name":"metric_collector","events_processed":9354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1870.8,"last_update":"2026-03-21T13:54:44.069033536Z"} +2026/03/21 13:54:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:54:44.077011976Z"} +2026/03/21 13:54:49 [detection_layer] {"stage_name":"detection_layer","events_processed":311,"events_dropped":0,"avg_latency_ms":14.237797370340342,"throughput_eps":0,"last_update":"2026-03-21T13:54:44.210227479Z"} +2026/03/21 13:54:49 [transform_engine] {"stage_name":"transform_engine","events_processed":311,"events_dropped":0,"avg_latency_ms":98.17825147964854,"throughput_eps":0,"last_update":"2026-03-21T13:54:44.210241316Z"} +2026/03/21 13:54:49 ───────────────────────────────────────────────── +2026/03/21 13:54:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:54:54 [metric_collector] {"stage_name":"metric_collector","events_processed":9359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1871.8,"last_update":"2026-03-21T13:54:49.068563533Z"} +2026/03/21 13:54:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:54:49.075488614Z"} +2026/03/21 13:54:54 [detection_layer] {"stage_name":"detection_layer","events_processed":311,"events_dropped":0,"avg_latency_ms":14.237797370340342,"throughput_eps":0,"last_update":"2026-03-21T13:54:49.210752481Z"} +2026/03/21 13:54:54 [transform_engine] {"stage_name":"transform_engine","events_processed":312,"events_dropped":0,"avg_latency_ms":90.57410218371884,"throughput_eps":0,"last_update":"2026-03-21T13:54:49.269829004Z"} +2026/03/21 13:54:54 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:54:49.06812869Z"} +2026/03/21 13:54:54 ───────────────────────────────────────────────── +2026/03/21 13:54:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:54:59 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:54:54.068539992Z"} +2026/03/21 13:54:59 [metric_collector] {"stage_name":"metric_collector","events_processed":9364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1872.8,"last_update":"2026-03-21T13:54:54.068551404Z"} +2026/03/21 13:54:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:54:54.075579162Z"} +2026/03/21 13:54:59 [detection_layer] {"stage_name":"detection_layer","events_processed":312,"events_dropped":0,"avg_latency_ms":14.227467096272274,"throughput_eps":0,"last_update":"2026-03-21T13:54:54.210795808Z"} +2026/03/21 13:54:59 [transform_engine] {"stage_name":"transform_engine","events_processed":312,"events_dropped":0,"avg_latency_ms":90.57410218371884,"throughput_eps":0,"last_update":"2026-03-21T13:54:54.209704466Z"} +2026/03/21 13:54:59 ───────────────────────────────────────────────── +2026/03/21 13:55:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:55:04 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:54:59.068063516Z"} +2026/03/21 13:55:04 [metric_collector] {"stage_name":"metric_collector","events_processed":9369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1873.8,"last_update":"2026-03-21T13:54:59.068167575Z"} +2026/03/21 13:55:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3750,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:54:59.07627914Z"} +2026/03/21 13:55:04 [detection_layer] {"stage_name":"detection_layer","events_processed":312,"events_dropped":0,"avg_latency_ms":14.227467096272274,"throughput_eps":0,"last_update":"2026-03-21T13:54:59.210466071Z"} +2026/03/21 13:55:04 [transform_engine] {"stage_name":"transform_engine","events_processed":312,"events_dropped":0,"avg_latency_ms":90.57410218371884,"throughput_eps":0,"last_update":"2026-03-21T13:54:59.21048636Z"} +2026/03/21 13:55:04 ───────────────────────────────────────────────── +2026/03/21 13:55:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:55:09 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:55:04.068578321Z"} +2026/03/21 13:55:09 [metric_collector] {"stage_name":"metric_collector","events_processed":9374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1874.8,"last_update":"2026-03-21T13:55:04.069064533Z"} +2026/03/21 13:55:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3752,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:55:04.074864988Z"} +2026/03/21 13:55:09 [detection_layer] {"stage_name":"detection_layer","events_processed":312,"events_dropped":0,"avg_latency_ms":14.227467096272274,"throughput_eps":0,"last_update":"2026-03-21T13:55:04.210108744Z"} +2026/03/21 13:55:09 [transform_engine] {"stage_name":"transform_engine","events_processed":312,"events_dropped":0,"avg_latency_ms":90.57410218371884,"throughput_eps":0,"last_update":"2026-03-21T13:55:04.210083475Z"} +2026/03/21 13:55:09 ───────────────────────────────────────────────── +2026/03/21 13:55:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:55:14 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:55:09.068401081Z"} +2026/03/21 13:55:14 [metric_collector] {"stage_name":"metric_collector","events_processed":9379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1875.8,"last_update":"2026-03-21T13:55:09.068625841Z"} +2026/03/21 13:55:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:55:09.076380993Z"} +2026/03/21 13:55:14 [detection_layer] {"stage_name":"detection_layer","events_processed":312,"events_dropped":0,"avg_latency_ms":14.227467096272274,"throughput_eps":0,"last_update":"2026-03-21T13:55:09.210369552Z"} +2026/03/21 13:55:14 [transform_engine] {"stage_name":"transform_engine","events_processed":312,"events_dropped":0,"avg_latency_ms":90.57410218371884,"throughput_eps":0,"last_update":"2026-03-21T13:55:09.210404359Z"} +2026/03/21 13:55:14 ───────────────────────────────────────────────── +2026/03/21 13:55:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:55:19 [metric_collector] {"stage_name":"metric_collector","events_processed":9384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1876.8,"last_update":"2026-03-21T13:55:14.068592529Z"} +2026/03/21 13:55:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:55:14.074930965Z"} +2026/03/21 13:55:19 [detection_layer] {"stage_name":"detection_layer","events_processed":312,"events_dropped":0,"avg_latency_ms":14.227467096272274,"throughput_eps":0,"last_update":"2026-03-21T13:55:14.210130974Z"} +2026/03/21 13:55:19 [transform_engine] {"stage_name":"transform_engine","events_processed":312,"events_dropped":0,"avg_latency_ms":90.57410218371884,"throughput_eps":0,"last_update":"2026-03-21T13:55:14.21010276Z"} +2026/03/21 13:55:19 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:55:14.068103672Z"} +2026/03/21 13:55:19 ───────────────────────────────────────────────── +2026/03/21 13:55:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:55:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3758,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:55:19.07471799Z"} +2026/03/21 13:55:24 [detection_layer] {"stage_name":"detection_layer","events_processed":312,"events_dropped":0,"avg_latency_ms":14.227467096272274,"throughput_eps":0,"last_update":"2026-03-21T13:55:19.209928658Z"} +2026/03/21 13:55:24 [transform_engine] {"stage_name":"transform_engine","events_processed":313,"events_dropped":0,"avg_latency_ms":84.42009454697506,"throughput_eps":0,"last_update":"2026-03-21T13:55:19.269778209Z"} +2026/03/21 13:55:24 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:55:19.068092834Z"} +2026/03/21 13:55:24 [metric_collector] {"stage_name":"metric_collector","events_processed":9389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1877.8,"last_update":"2026-03-21T13:55:19.068298798Z"} +2026/03/21 13:55:24 ───────────────────────────────────────────────── +2026/03/21 13:55:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:55:29 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:55:29.068328254Z"} +2026/03/21 13:55:29 [metric_collector] {"stage_name":"metric_collector","events_processed":9394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1878.8,"last_update":"2026-03-21T13:55:24.068515471Z"} +2026/03/21 13:55:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:55:24.074717676Z"} +2026/03/21 13:55:29 [detection_layer] {"stage_name":"detection_layer","events_processed":313,"events_dropped":0,"avg_latency_ms":13.86294387701782,"throughput_eps":0,"last_update":"2026-03-21T13:55:24.209912102Z"} +2026/03/21 13:55:29 [transform_engine] {"stage_name":"transform_engine","events_processed":313,"events_dropped":0,"avg_latency_ms":84.42009454697506,"throughput_eps":0,"last_update":"2026-03-21T13:55:24.20992146Z"} +2026/03/21 13:55:29 ───────────────────────────────────────────────── +2026/03/21 13:55:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:55:34 [metric_collector] {"stage_name":"metric_collector","events_processed":9399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1879.8,"last_update":"2026-03-21T13:55:29.068853952Z"} +2026/03/21 13:55:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:55:29.0751313Z"} +2026/03/21 13:55:34 [detection_layer] {"stage_name":"detection_layer","events_processed":313,"events_dropped":0,"avg_latency_ms":13.86294387701782,"throughput_eps":0,"last_update":"2026-03-21T13:55:29.21038085Z"} +2026/03/21 13:55:34 [transform_engine] {"stage_name":"transform_engine","events_processed":313,"events_dropped":0,"avg_latency_ms":84.42009454697506,"throughput_eps":0,"last_update":"2026-03-21T13:55:29.210394086Z"} +2026/03/21 13:55:34 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:55:29.068328254Z"} +2026/03/21 13:55:34 ───────────────────────────────────────────────── +2026/03/21 13:55:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:55:39 [metric_collector] {"stage_name":"metric_collector","events_processed":9404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1880.8,"last_update":"2026-03-21T13:55:34.069195343Z"} +2026/03/21 13:55:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:55:34.077011421Z"} +2026/03/21 13:55:39 [detection_layer] {"stage_name":"detection_layer","events_processed":313,"events_dropped":0,"avg_latency_ms":13.86294387701782,"throughput_eps":0,"last_update":"2026-03-21T13:55:34.210255877Z"} +2026/03/21 13:55:39 [transform_engine] {"stage_name":"transform_engine","events_processed":313,"events_dropped":0,"avg_latency_ms":84.42009454697506,"throughput_eps":0,"last_update":"2026-03-21T13:55:34.210272459Z"} +2026/03/21 13:55:39 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:55:34.068972415Z"} +2026/03/21 13:55:39 ───────────────────────────────────────────────── +2026/03/21 13:55:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:55:44 [metric_collector] {"stage_name":"metric_collector","events_processed":9409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1881.8,"last_update":"2026-03-21T13:55:39.068411342Z"} +2026/03/21 13:55:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3766,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:55:39.077387804Z"} +2026/03/21 13:55:44 [detection_layer] {"stage_name":"detection_layer","events_processed":313,"events_dropped":0,"avg_latency_ms":13.86294387701782,"throughput_eps":0,"last_update":"2026-03-21T13:55:39.210568717Z"} +2026/03/21 13:55:44 [transform_engine] {"stage_name":"transform_engine","events_processed":313,"events_dropped":0,"avg_latency_ms":84.42009454697506,"throughput_eps":0,"last_update":"2026-03-21T13:55:39.21060074Z"} +2026/03/21 13:55:44 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:55:39.068105396Z"} +2026/03/21 13:55:44 ───────────────────────────────────────────────── +2026/03/21 13:55:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:55:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3768,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:55:44.075209801Z"} +2026/03/21 13:55:49 [detection_layer] {"stage_name":"detection_layer","events_processed":313,"events_dropped":0,"avg_latency_ms":13.86294387701782,"throughput_eps":0,"last_update":"2026-03-21T13:55:44.210390735Z"} +2026/03/21 13:55:49 [transform_engine] {"stage_name":"transform_engine","events_processed":313,"events_dropped":0,"avg_latency_ms":84.42009454697506,"throughput_eps":0,"last_update":"2026-03-21T13:55:44.210399533Z"} +2026/03/21 13:55:49 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:55:44.068622478Z"} +2026/03/21 13:55:49 [metric_collector] {"stage_name":"metric_collector","events_processed":9414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1882.8,"last_update":"2026-03-21T13:55:44.069000361Z"} +2026/03/21 13:55:49 ───────────────────────────────────────────────── +2026/03/21 13:55:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:55:54 [metric_collector] {"stage_name":"metric_collector","events_processed":9419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1883.8,"last_update":"2026-03-21T13:55:49.068602035Z"} +2026/03/21 13:55:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3770,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:55:49.075187605Z"} +2026/03/21 13:55:54 [detection_layer] {"stage_name":"detection_layer","events_processed":313,"events_dropped":0,"avg_latency_ms":13.86294387701782,"throughput_eps":0,"last_update":"2026-03-21T13:55:49.210420829Z"} +2026/03/21 13:55:54 [transform_engine] {"stage_name":"transform_engine","events_processed":314,"events_dropped":0,"avg_latency_ms":173.7545414375801,"throughput_eps":0,"last_update":"2026-03-21T13:55:49.741526756Z"} +2026/03/21 13:55:54 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:55:49.068231044Z"} +2026/03/21 13:55:54 ───────────────────────────────────────────────── +2026/03/21 13:55:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:55:59 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:55:54.068160423Z"} +2026/03/21 13:55:59 [metric_collector] {"stage_name":"metric_collector","events_processed":9424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1884.8,"last_update":"2026-03-21T13:55:54.068626226Z"} +2026/03/21 13:55:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:55:54.077085906Z"} +2026/03/21 13:55:59 [detection_layer] {"stage_name":"detection_layer","events_processed":314,"events_dropped":0,"avg_latency_ms":13.466995501614257,"throughput_eps":0,"last_update":"2026-03-21T13:55:54.210314539Z"} +2026/03/21 13:55:59 [transform_engine] {"stage_name":"transform_engine","events_processed":314,"events_dropped":0,"avg_latency_ms":173.7545414375801,"throughput_eps":0,"last_update":"2026-03-21T13:55:54.210272087Z"} +2026/03/21 13:55:59 ───────────────────────────────────────────────── +2026/03/21 13:56:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:56:04 [detection_layer] {"stage_name":"detection_layer","events_processed":314,"events_dropped":0,"avg_latency_ms":13.466995501614257,"throughput_eps":0,"last_update":"2026-03-21T13:55:59.210073526Z"} +2026/03/21 13:56:04 [transform_engine] {"stage_name":"transform_engine","events_processed":314,"events_dropped":0,"avg_latency_ms":173.7545414375801,"throughput_eps":0,"last_update":"2026-03-21T13:55:59.210113223Z"} +2026/03/21 13:56:04 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:55:59.068916794Z"} +2026/03/21 13:56:04 [metric_collector] {"stage_name":"metric_collector","events_processed":9429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1885.8,"last_update":"2026-03-21T13:55:59.069220646Z"} +2026/03/21 13:56:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:55:59.077839371Z"} +2026/03/21 13:56:04 ───────────────────────────────────────────────── +2026/03/21 13:56:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:56:09 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:56:04.06826219Z"} +2026/03/21 13:56:09 [metric_collector] {"stage_name":"metric_collector","events_processed":9434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1886.8,"last_update":"2026-03-21T13:56:04.068671034Z"} +2026/03/21 13:56:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:56:04.074344855Z"} +2026/03/21 13:56:09 [detection_layer] {"stage_name":"detection_layer","events_processed":314,"events_dropped":0,"avg_latency_ms":13.466995501614257,"throughput_eps":0,"last_update":"2026-03-21T13:56:04.210569737Z"} +2026/03/21 13:56:09 [transform_engine] {"stage_name":"transform_engine","events_processed":314,"events_dropped":0,"avg_latency_ms":173.7545414375801,"throughput_eps":0,"last_update":"2026-03-21T13:56:04.210590126Z"} +2026/03/21 13:56:09 ───────────────────────────────────────────────── +2026/03/21 13:56:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:56:14 [metric_collector] {"stage_name":"metric_collector","events_processed":9439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1887.8,"last_update":"2026-03-21T13:56:09.068489354Z"} +2026/03/21 13:56:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:56:09.07756248Z"} +2026/03/21 13:56:14 [detection_layer] {"stage_name":"detection_layer","events_processed":314,"events_dropped":0,"avg_latency_ms":13.466995501614257,"throughput_eps":0,"last_update":"2026-03-21T13:56:09.210830485Z"} +2026/03/21 13:56:14 [transform_engine] {"stage_name":"transform_engine","events_processed":314,"events_dropped":0,"avg_latency_ms":173.7545414375801,"throughput_eps":0,"last_update":"2026-03-21T13:56:09.209717712Z"} +2026/03/21 13:56:14 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:56:09.068089117Z"} +2026/03/21 13:56:14 ───────────────────────────────────────────────── +2026/03/21 13:56:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:56:19 [detection_layer] {"stage_name":"detection_layer","events_processed":314,"events_dropped":0,"avg_latency_ms":13.466995501614257,"throughput_eps":0,"last_update":"2026-03-21T13:56:14.210676978Z"} +2026/03/21 13:56:19 [transform_engine] {"stage_name":"transform_engine","events_processed":314,"events_dropped":0,"avg_latency_ms":173.7545414375801,"throughput_eps":0,"last_update":"2026-03-21T13:56:14.210626802Z"} +2026/03/21 13:56:19 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:56:14.068944194Z"} +2026/03/21 13:56:19 [metric_collector] {"stage_name":"metric_collector","events_processed":9444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1888.8,"last_update":"2026-03-21T13:56:14.069118298Z"} +2026/03/21 13:56:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3780,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:56:14.077404386Z"} +2026/03/21 13:56:19 ───────────────────────────────────────────────── +2026/03/21 13:56:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:56:24 [detection_layer] {"stage_name":"detection_layer","events_processed":314,"events_dropped":0,"avg_latency_ms":13.466995501614257,"throughput_eps":0,"last_update":"2026-03-21T13:56:19.210282973Z"} +2026/03/21 13:56:24 [transform_engine] {"stage_name":"transform_engine","events_processed":315,"events_dropped":0,"avg_latency_ms":455.9622499500641,"throughput_eps":0,"last_update":"2026-03-21T13:56:20.795071869Z"} +2026/03/21 13:56:24 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:56:19.06869599Z"} +2026/03/21 13:56:24 [metric_collector] {"stage_name":"metric_collector","events_processed":9449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1889.8,"last_update":"2026-03-21T13:56:19.068802193Z"} +2026/03/21 13:56:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3782,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:56:19.074999389Z"} +2026/03/21 13:56:24 ───────────────────────────────────────────────── +2026/03/21 13:56:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:56:29 [detection_layer] {"stage_name":"detection_layer","events_processed":315,"events_dropped":0,"avg_latency_ms":13.519698401291407,"throughput_eps":0,"last_update":"2026-03-21T13:56:24.210902034Z"} +2026/03/21 13:56:29 [transform_engine] {"stage_name":"transform_engine","events_processed":315,"events_dropped":0,"avg_latency_ms":455.9622499500641,"throughput_eps":0,"last_update":"2026-03-21T13:56:24.209810702Z"} +2026/03/21 13:56:29 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:56:24.068196388Z"} +2026/03/21 13:56:29 [metric_collector] {"stage_name":"metric_collector","events_processed":9454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1890.8,"last_update":"2026-03-21T13:56:24.068622054Z"} +2026/03/21 13:56:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:56:24.074641058Z"} +2026/03/21 13:56:29 ───────────────────────────────────────────────── +2026/03/21 13:56:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:56:34 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:56:29.068075349Z"} +2026/03/21 13:56:34 [metric_collector] {"stage_name":"metric_collector","events_processed":9459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1891.8,"last_update":"2026-03-21T13:56:29.068386305Z"} +2026/03/21 13:56:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:56:29.076938513Z"} +2026/03/21 13:56:34 [detection_layer] {"stage_name":"detection_layer","events_processed":315,"events_dropped":0,"avg_latency_ms":13.519698401291407,"throughput_eps":0,"last_update":"2026-03-21T13:56:29.210165093Z"} +2026/03/21 13:56:34 [transform_engine] {"stage_name":"transform_engine","events_processed":315,"events_dropped":0,"avg_latency_ms":455.9622499500641,"throughput_eps":0,"last_update":"2026-03-21T13:56:29.210176034Z"} +2026/03/21 13:56:34 ───────────────────────────────────────────────── +2026/03/21 13:56:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:56:39 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:56:34.06859245Z"} +2026/03/21 13:56:39 [metric_collector] {"stage_name":"metric_collector","events_processed":9464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1892.8,"last_update":"2026-03-21T13:56:34.068788315Z"} +2026/03/21 13:56:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:56:34.075109318Z"} +2026/03/21 13:56:39 [detection_layer] {"stage_name":"detection_layer","events_processed":315,"events_dropped":0,"avg_latency_ms":13.519698401291407,"throughput_eps":0,"last_update":"2026-03-21T13:56:34.21036241Z"} +2026/03/21 13:56:39 [transform_engine] {"stage_name":"transform_engine","events_processed":315,"events_dropped":0,"avg_latency_ms":455.9622499500641,"throughput_eps":0,"last_update":"2026-03-21T13:56:34.210337793Z"} +2026/03/21 13:56:39 ───────────────────────────────────────────────── +2026/03/21 13:56:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:56:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:56:39.075233156Z"} +2026/03/21 13:56:44 [detection_layer] {"stage_name":"detection_layer","events_processed":315,"events_dropped":0,"avg_latency_ms":13.519698401291407,"throughput_eps":0,"last_update":"2026-03-21T13:56:39.210505013Z"} +2026/03/21 13:56:44 [transform_engine] {"stage_name":"transform_engine","events_processed":315,"events_dropped":0,"avg_latency_ms":455.9622499500641,"throughput_eps":0,"last_update":"2026-03-21T13:56:39.210468954Z"} +2026/03/21 13:56:44 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:56:39.068658097Z"} +2026/03/21 13:56:44 [metric_collector] {"stage_name":"metric_collector","events_processed":9469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1893.8,"last_update":"2026-03-21T13:56:39.068906974Z"} +2026/03/21 13:56:44 ───────────────────────────────────────────────── +2026/03/21 13:56:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:56:49 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:56:44.068677426Z"} +2026/03/21 13:56:49 [metric_collector] {"stage_name":"metric_collector","events_processed":9474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1894.8,"last_update":"2026-03-21T13:56:44.069004432Z"} +2026/03/21 13:56:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:56:44.077656201Z"} +2026/03/21 13:56:49 [detection_layer] {"stage_name":"detection_layer","events_processed":315,"events_dropped":0,"avg_latency_ms":13.519698401291407,"throughput_eps":0,"last_update":"2026-03-21T13:56:44.209903692Z"} +2026/03/21 13:56:49 [transform_engine] {"stage_name":"transform_engine","events_processed":315,"events_dropped":0,"avg_latency_ms":455.9622499500641,"throughput_eps":0,"last_update":"2026-03-21T13:56:44.209919763Z"} +2026/03/21 13:56:49 ───────────────────────────────────────────────── +2026/03/21 13:56:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:56:54 [transform_engine] {"stage_name":"transform_engine","events_processed":316,"events_dropped":0,"avg_latency_ms":376.87398996005135,"throughput_eps":0,"last_update":"2026-03-21T13:56:49.270280257Z"} +2026/03/21 13:56:54 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:56:49.068761331Z"} +2026/03/21 13:56:54 [metric_collector] {"stage_name":"metric_collector","events_processed":9479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1895.8,"last_update":"2026-03-21T13:56:49.069044142Z"} +2026/03/21 13:56:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:56:49.075611026Z"} +2026/03/21 13:56:54 [detection_layer] {"stage_name":"detection_layer","events_processed":315,"events_dropped":0,"avg_latency_ms":13.519698401291407,"throughput_eps":0,"last_update":"2026-03-21T13:56:49.21080398Z"} +2026/03/21 13:56:54 ───────────────────────────────────────────────── +2026/03/21 13:56:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:56:59 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:56:54.068066123Z"} +2026/03/21 13:56:59 [metric_collector] {"stage_name":"metric_collector","events_processed":9484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1896.8,"last_update":"2026-03-21T13:56:54.068482141Z"} +2026/03/21 13:56:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3796,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:56:54.074924044Z"} +2026/03/21 13:56:59 [detection_layer] {"stage_name":"detection_layer","events_processed":316,"events_dropped":0,"avg_latency_ms":13.358775721033126,"throughput_eps":0,"last_update":"2026-03-21T13:56:54.21016541Z"} +2026/03/21 13:56:59 [transform_engine] {"stage_name":"transform_engine","events_processed":316,"events_dropped":0,"avg_latency_ms":376.87398996005135,"throughput_eps":0,"last_update":"2026-03-21T13:56:54.210151684Z"} +2026/03/21 13:56:59 ───────────────────────────────────────────────── +2026/03/21 13:57:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:57:04 [metric_collector] {"stage_name":"metric_collector","events_processed":9489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1897.8,"last_update":"2026-03-21T13:56:59.068796001Z"} +2026/03/21 13:57:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:56:59.074714802Z"} +2026/03/21 13:57:04 [detection_layer] {"stage_name":"detection_layer","events_processed":316,"events_dropped":0,"avg_latency_ms":13.358775721033126,"throughput_eps":0,"last_update":"2026-03-21T13:56:59.209957229Z"} +2026/03/21 13:57:04 [transform_engine] {"stage_name":"transform_engine","events_processed":316,"events_dropped":0,"avg_latency_ms":376.87398996005135,"throughput_eps":0,"last_update":"2026-03-21T13:56:59.209936559Z"} +2026/03/21 13:57:04 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:56:59.068804276Z"} +2026/03/21 13:57:04 ───────────────────────────────────────────────── +2026/03/21 13:57:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:57:09 [transform_engine] {"stage_name":"transform_engine","events_processed":316,"events_dropped":0,"avg_latency_ms":376.87398996005135,"throughput_eps":0,"last_update":"2026-03-21T13:57:04.210450745Z"} +2026/03/21 13:57:09 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:57:04.068663748Z"} +2026/03/21 13:57:09 [metric_collector] {"stage_name":"metric_collector","events_processed":9494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1898.8,"last_update":"2026-03-21T13:57:04.068927143Z"} +2026/03/21 13:57:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3800,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:57:04.075251101Z"} +2026/03/21 13:57:09 [detection_layer] {"stage_name":"detection_layer","events_processed":316,"events_dropped":0,"avg_latency_ms":13.358775721033126,"throughput_eps":0,"last_update":"2026-03-21T13:57:04.210481053Z"} +2026/03/21 13:57:09 ───────────────────────────────────────────────── +Saved state: 16 clusters, 15209 messages, reason: none +2026/03/21 13:57:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:57:14 [detection_layer] {"stage_name":"detection_layer","events_processed":316,"events_dropped":0,"avg_latency_ms":13.358775721033126,"throughput_eps":0,"last_update":"2026-03-21T13:57:09.210871062Z"} +2026/03/21 13:57:14 [transform_engine] {"stage_name":"transform_engine","events_processed":316,"events_dropped":0,"avg_latency_ms":376.87398996005135,"throughput_eps":0,"last_update":"2026-03-21T13:57:09.209731419Z"} +2026/03/21 13:57:14 [log_collector] {"stage_name":"log_collector","events_processed":15208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.6,"last_update":"2026-03-21T13:57:09.068621681Z"} +2026/03/21 13:57:14 [metric_collector] {"stage_name":"metric_collector","events_processed":9499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1899.8,"last_update":"2026-03-21T13:57:09.068949369Z"} +2026/03/21 13:57:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3802,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:57:09.075620582Z"} +2026/03/21 13:57:14 ───────────────────────────────────────────────── +2026/03/21 13:57:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:57:19 [log_collector] {"stage_name":"log_collector","events_processed":15215,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3043,"last_update":"2026-03-21T13:57:14.068961917Z"} +2026/03/21 13:57:19 [metric_collector] {"stage_name":"metric_collector","events_processed":9504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1900.8,"last_update":"2026-03-21T13:57:14.069183321Z"} +2026/03/21 13:57:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:57:14.075964847Z"} +2026/03/21 13:57:19 [detection_layer] {"stage_name":"detection_layer","events_processed":316,"events_dropped":0,"avg_latency_ms":13.358775721033126,"throughput_eps":0,"last_update":"2026-03-21T13:57:14.21022606Z"} +2026/03/21 13:57:19 [transform_engine] {"stage_name":"transform_engine","events_processed":316,"events_dropped":0,"avg_latency_ms":376.87398996005135,"throughput_eps":0,"last_update":"2026-03-21T13:57:14.210199069Z"} +2026/03/21 13:57:19 ───────────────────────────────────────────────── +2026/03/21 13:57:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:57:24 [log_collector] {"stage_name":"log_collector","events_processed":15223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3044.6,"last_update":"2026-03-21T13:57:19.068630515Z"} +2026/03/21 13:57:24 [metric_collector] {"stage_name":"metric_collector","events_processed":9509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1901.8,"last_update":"2026-03-21T13:57:19.068829396Z"} +2026/03/21 13:57:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:57:19.074710926Z"} +2026/03/21 13:57:24 [detection_layer] {"stage_name":"detection_layer","events_processed":316,"events_dropped":0,"avg_latency_ms":13.358775721033126,"throughput_eps":0,"last_update":"2026-03-21T13:57:19.209946967Z"} +2026/03/21 13:57:24 [transform_engine] {"stage_name":"transform_engine","events_processed":316,"events_dropped":0,"avg_latency_ms":376.87398996005135,"throughput_eps":0,"last_update":"2026-03-21T13:57:19.209934452Z"} +2026/03/21 13:57:24 ───────────────────────────────────────────────── +2026/03/21 13:57:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:57:29 [detection_layer] {"stage_name":"detection_layer","events_processed":317,"events_dropped":0,"avg_latency_ms":14.185081376826503,"throughput_eps":0,"last_update":"2026-03-21T13:57:24.210747085Z"} +2026/03/21 13:57:29 [transform_engine] {"stage_name":"transform_engine","events_processed":317,"events_dropped":0,"avg_latency_ms":321.8158713680411,"throughput_eps":0,"last_update":"2026-03-21T13:57:24.209647799Z"} +2026/03/21 13:57:29 [log_collector] {"stage_name":"log_collector","events_processed":15242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3048.4,"last_update":"2026-03-21T13:57:24.069160508Z"} +2026/03/21 13:57:29 [metric_collector] {"stage_name":"metric_collector","events_processed":9514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1902.8,"last_update":"2026-03-21T13:57:24.069429062Z"} +2026/03/21 13:57:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:57:24.076020963Z"} +2026/03/21 13:57:29 ───────────────────────────────────────────────── +2026/03/21 13:57:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:57:34 [detection_layer] {"stage_name":"detection_layer","events_processed":317,"events_dropped":0,"avg_latency_ms":14.185081376826503,"throughput_eps":0,"last_update":"2026-03-21T13:57:29.210608291Z"} +2026/03/21 13:57:34 [transform_engine] {"stage_name":"transform_engine","events_processed":317,"events_dropped":0,"avg_latency_ms":321.8158713680411,"throughput_eps":0,"last_update":"2026-03-21T13:57:29.210619363Z"} +2026/03/21 13:57:34 [log_collector] {"stage_name":"log_collector","events_processed":15253,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3050.6,"last_update":"2026-03-21T13:57:29.068752258Z"} +2026/03/21 13:57:34 [metric_collector] {"stage_name":"metric_collector","events_processed":9519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1903.8,"last_update":"2026-03-21T13:57:29.068992619Z"} +2026/03/21 13:57:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:57:29.07533406Z"} +2026/03/21 13:57:34 ───────────────────────────────────────────────── +2026/03/21 13:57:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:57:39 [transform_engine] {"stage_name":"transform_engine","events_processed":317,"events_dropped":0,"avg_latency_ms":321.8158713680411,"throughput_eps":0,"last_update":"2026-03-21T13:57:34.21039994Z"} +2026/03/21 13:57:39 [log_collector] {"stage_name":"log_collector","events_processed":15265,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3053,"last_update":"2026-03-21T13:57:34.068634922Z"} +2026/03/21 13:57:39 [metric_collector] {"stage_name":"metric_collector","events_processed":9524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1904.8,"last_update":"2026-03-21T13:57:34.068871556Z"} +2026/03/21 13:57:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3812,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:57:34.075155616Z"} +2026/03/21 13:57:39 [detection_layer] {"stage_name":"detection_layer","events_processed":317,"events_dropped":0,"avg_latency_ms":14.185081376826503,"throughput_eps":0,"last_update":"2026-03-21T13:57:34.210390712Z"} +2026/03/21 13:57:39 ───────────────────────────────────────────────── +2026/03/21 13:57:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:57:44 [transform_engine] {"stage_name":"transform_engine","events_processed":317,"events_dropped":0,"avg_latency_ms":321.8158713680411,"throughput_eps":0,"last_update":"2026-03-21T13:57:39.209705198Z"} +2026/03/21 13:57:44 [log_collector] {"stage_name":"log_collector","events_processed":15272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3054.4,"last_update":"2026-03-21T13:57:39.068628349Z"} +2026/03/21 13:57:44 [metric_collector] {"stage_name":"metric_collector","events_processed":9529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1905.8,"last_update":"2026-03-21T13:57:39.068844232Z"} +2026/03/21 13:57:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:57:39.078577171Z"} +2026/03/21 13:57:44 [detection_layer] {"stage_name":"detection_layer","events_processed":317,"events_dropped":0,"avg_latency_ms":14.185081376826503,"throughput_eps":0,"last_update":"2026-03-21T13:57:39.210786729Z"} +2026/03/21 13:57:44 ───────────────────────────────────────────────── +2026/03/21 13:57:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:57:49 [detection_layer] {"stage_name":"detection_layer","events_processed":317,"events_dropped":0,"avg_latency_ms":14.185081376826503,"throughput_eps":0,"last_update":"2026-03-21T13:57:44.210663561Z"} +2026/03/21 13:57:49 [transform_engine] {"stage_name":"transform_engine","events_processed":317,"events_dropped":0,"avg_latency_ms":321.8158713680411,"throughput_eps":0,"last_update":"2026-03-21T13:57:44.210674062Z"} +2026/03/21 13:57:49 [log_collector] {"stage_name":"log_collector","events_processed":15293,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3058.6,"last_update":"2026-03-21T13:57:44.06807091Z"} +2026/03/21 13:57:49 [metric_collector] {"stage_name":"metric_collector","events_processed":9534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1906.8,"last_update":"2026-03-21T13:57:44.068159319Z"} +2026/03/21 13:57:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3816,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:57:44.075521846Z"} +2026/03/21 13:57:49 ───────────────────────────────────────────────── +2026/03/21 13:57:49 [ANOMALY] time=2026-03-21T13:57:49Z score=0.8533 method=SEAD details=MAD!:w=0.30,s=0.95 RRCF-fast:w=0.17,s=0.75 RRCF-mid:w=0.15,s=0.66 RRCF-slow:w=0.11,s=0.88 COPOD!:w=0.28,s=0.90 +2026/03/21 13:57:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:57:54 [log_collector] {"stage_name":"log_collector","events_processed":15310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3062,"last_update":"2026-03-21T13:57:49.068061356Z"} +2026/03/21 13:57:54 [metric_collector] {"stage_name":"metric_collector","events_processed":9539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1907.8,"last_update":"2026-03-21T13:57:49.068174413Z"} +2026/03/21 13:57:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3818,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:57:49.075877212Z"} +2026/03/21 13:57:54 [detection_layer] {"stage_name":"detection_layer","events_processed":317,"events_dropped":0,"avg_latency_ms":14.185081376826503,"throughput_eps":0,"last_update":"2026-03-21T13:57:49.210122328Z"} +2026/03/21 13:57:54 [transform_engine] {"stage_name":"transform_engine","events_processed":318,"events_dropped":0,"avg_latency_ms":277.6267122944329,"throughput_eps":0,"last_update":"2026-03-21T13:57:49.311024697Z"} +2026/03/21 13:57:54 ───────────────────────────────────────────────── +2026/03/21 13:57:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:57:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3820,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:57:54.076758912Z"} +2026/03/21 13:57:59 [detection_layer] {"stage_name":"detection_layer","events_processed":318,"events_dropped":0,"avg_latency_ms":13.581288101461203,"throughput_eps":0,"last_update":"2026-03-21T13:57:54.210040351Z"} +2026/03/21 13:57:59 [transform_engine] {"stage_name":"transform_engine","events_processed":318,"events_dropped":0,"avg_latency_ms":277.6267122944329,"throughput_eps":0,"last_update":"2026-03-21T13:57:54.209991487Z"} +2026/03/21 13:57:59 [log_collector] {"stage_name":"log_collector","events_processed":15320,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3064,"last_update":"2026-03-21T13:57:54.068649854Z"} +2026/03/21 13:57:59 [metric_collector] {"stage_name":"metric_collector","events_processed":9544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1908.8,"last_update":"2026-03-21T13:57:54.068892639Z"} +2026/03/21 13:57:59 ───────────────────────────────────────────────── +2026/03/21 13:58:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:58:04 [log_collector] {"stage_name":"log_collector","events_processed":15335,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3067,"last_update":"2026-03-21T13:57:59.068846791Z"} +2026/03/21 13:58:04 [metric_collector] {"stage_name":"metric_collector","events_processed":9549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1909.8,"last_update":"2026-03-21T13:57:59.069095577Z"} +2026/03/21 13:58:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:57:59.075170758Z"} +2026/03/21 13:58:04 [detection_layer] {"stage_name":"detection_layer","events_processed":318,"events_dropped":0,"avg_latency_ms":13.581288101461203,"throughput_eps":0,"last_update":"2026-03-21T13:57:59.210460423Z"} +2026/03/21 13:58:04 [transform_engine] {"stage_name":"transform_engine","events_processed":318,"events_dropped":0,"avg_latency_ms":277.6267122944329,"throughput_eps":0,"last_update":"2026-03-21T13:57:59.210432119Z"} +2026/03/21 13:58:04 ───────────────────────────────────────────────── +2026/03/21 13:58:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:58:09 [metric_collector] {"stage_name":"metric_collector","events_processed":9554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1910.8,"last_update":"2026-03-21T13:58:04.068704122Z"} +2026/03/21 13:58:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:58:04.074905263Z"} +2026/03/21 13:58:09 [detection_layer] {"stage_name":"detection_layer","events_processed":318,"events_dropped":0,"avg_latency_ms":13.581288101461203,"throughput_eps":0,"last_update":"2026-03-21T13:58:04.210146456Z"} +2026/03/21 13:58:09 [transform_engine] {"stage_name":"transform_engine","events_processed":318,"events_dropped":0,"avg_latency_ms":277.6267122944329,"throughput_eps":0,"last_update":"2026-03-21T13:58:04.210179499Z"} +2026/03/21 13:58:09 [log_collector] {"stage_name":"log_collector","events_processed":15352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3070.4,"last_update":"2026-03-21T13:58:04.068539186Z"} +2026/03/21 13:58:09 ───────────────────────────────────────────────── +Saved state: 16 clusters, 15380 messages, reason: none +2026/03/21 13:58:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:58:14 [detection_layer] {"stage_name":"detection_layer","events_processed":318,"events_dropped":0,"avg_latency_ms":13.581288101461203,"throughput_eps":0,"last_update":"2026-03-21T13:58:09.210206211Z"} +2026/03/21 13:58:14 [transform_engine] {"stage_name":"transform_engine","events_processed":318,"events_dropped":0,"avg_latency_ms":277.6267122944329,"throughput_eps":0,"last_update":"2026-03-21T13:58:09.210219867Z"} +2026/03/21 13:58:14 [log_collector] {"stage_name":"log_collector","events_processed":15373,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3074.6,"last_update":"2026-03-21T13:58:09.068796891Z"} +2026/03/21 13:58:14 [metric_collector] {"stage_name":"metric_collector","events_processed":9559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1911.8,"last_update":"2026-03-21T13:58:09.069041851Z"} +2026/03/21 13:58:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3826,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:58:09.074921465Z"} +2026/03/21 13:58:14 ───────────────────────────────────────────────── +2026/03/21 13:58:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:58:19 [log_collector] {"stage_name":"log_collector","events_processed":15392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3078.4,"last_update":"2026-03-21T13:58:14.068538033Z"} +2026/03/21 13:58:19 [metric_collector] {"stage_name":"metric_collector","events_processed":9564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1912.8,"last_update":"2026-03-21T13:58:14.068518547Z"} +2026/03/21 13:58:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:58:14.07514869Z"} +2026/03/21 13:58:19 [detection_layer] {"stage_name":"detection_layer","events_processed":318,"events_dropped":0,"avg_latency_ms":13.581288101461203,"throughput_eps":0,"last_update":"2026-03-21T13:58:14.210387226Z"} +2026/03/21 13:58:19 [transform_engine] {"stage_name":"transform_engine","events_processed":318,"events_dropped":0,"avg_latency_ms":277.6267122944329,"throughput_eps":0,"last_update":"2026-03-21T13:58:14.210413726Z"} +2026/03/21 13:58:19 ───────────────────────────────────────────────── +2026/03/21 13:58:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:58:24 [log_collector] {"stage_name":"log_collector","events_processed":15406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3081.2,"last_update":"2026-03-21T13:58:19.068507372Z"} +2026/03/21 13:58:24 [metric_collector] {"stage_name":"metric_collector","events_processed":9569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1913.8,"last_update":"2026-03-21T13:58:19.068724518Z"} +2026/03/21 13:58:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3830,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:58:19.075039879Z"} +2026/03/21 13:58:24 [detection_layer] {"stage_name":"detection_layer","events_processed":318,"events_dropped":0,"avg_latency_ms":13.581288101461203,"throughput_eps":0,"last_update":"2026-03-21T13:58:19.210264666Z"} +2026/03/21 13:58:24 [transform_engine] {"stage_name":"transform_engine","events_processed":319,"events_dropped":0,"avg_latency_ms":242.8284158355463,"throughput_eps":0,"last_update":"2026-03-21T13:58:19.313932721Z"} +2026/03/21 13:58:24 ───────────────────────────────────────────────── +2026/03/21 13:58:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:58:29 [detection_layer] {"stage_name":"detection_layer","events_processed":319,"events_dropped":0,"avg_latency_ms":13.269759881168964,"throughput_eps":0,"last_update":"2026-03-21T13:58:24.21082457Z"} +2026/03/21 13:58:29 [transform_engine] {"stage_name":"transform_engine","events_processed":319,"events_dropped":0,"avg_latency_ms":242.8284158355463,"throughput_eps":0,"last_update":"2026-03-21T13:58:24.209709855Z"} +2026/03/21 13:58:29 [log_collector] {"stage_name":"log_collector","events_processed":15413,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3082.6,"last_update":"2026-03-21T13:58:24.068589662Z"} +2026/03/21 13:58:29 [metric_collector] {"stage_name":"metric_collector","events_processed":9574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1914.8,"last_update":"2026-03-21T13:58:24.068838278Z"} +2026/03/21 13:58:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3832,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:58:24.075434497Z"} +2026/03/21 13:58:29 ───────────────────────────────────────────────── +2026/03/21 13:58:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:58:34 [detection_layer] {"stage_name":"detection_layer","events_processed":319,"events_dropped":0,"avg_latency_ms":13.269759881168964,"throughput_eps":0,"last_update":"2026-03-21T13:58:29.209916419Z"} +2026/03/21 13:58:34 [transform_engine] {"stage_name":"transform_engine","events_processed":319,"events_dropped":0,"avg_latency_ms":242.8284158355463,"throughput_eps":0,"last_update":"2026-03-21T13:58:29.210001913Z"} +2026/03/21 13:58:34 [log_collector] {"stage_name":"log_collector","events_processed":15436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3087.2,"last_update":"2026-03-21T13:58:29.068647321Z"} +2026/03/21 13:58:34 [metric_collector] {"stage_name":"metric_collector","events_processed":9579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1915.8,"last_update":"2026-03-21T13:58:29.068864989Z"} +2026/03/21 13:58:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:58:29.074465489Z"} +2026/03/21 13:58:34 ───────────────────────────────────────────────── +2026/03/21 13:58:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:58:39 [metric_collector] {"stage_name":"metric_collector","events_processed":9584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1916.8,"last_update":"2026-03-21T13:58:34.069126172Z"} +2026/03/21 13:58:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:58:34.076490443Z"} +2026/03/21 13:58:39 [detection_layer] {"stage_name":"detection_layer","events_processed":319,"events_dropped":0,"avg_latency_ms":13.269759881168964,"throughput_eps":0,"last_update":"2026-03-21T13:58:34.210768754Z"} +2026/03/21 13:58:39 [transform_engine] {"stage_name":"transform_engine","events_processed":319,"events_dropped":0,"avg_latency_ms":242.8284158355463,"throughput_eps":0,"last_update":"2026-03-21T13:58:34.209687733Z"} +2026/03/21 13:58:39 [log_collector] {"stage_name":"log_collector","events_processed":15453,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3090.6,"last_update":"2026-03-21T13:58:34.068858439Z"} +2026/03/21 13:58:39 ───────────────────────────────────────────────── +2026/03/21 13:58:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:58:44 [log_collector] {"stage_name":"log_collector","events_processed":15467,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3093.4,"last_update":"2026-03-21T13:58:39.068623481Z"} +2026/03/21 13:58:44 [metric_collector] {"stage_name":"metric_collector","events_processed":9589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1917.8,"last_update":"2026-03-21T13:58:39.068783307Z"} +2026/03/21 13:58:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:58:39.074892182Z"} +2026/03/21 13:58:44 [detection_layer] {"stage_name":"detection_layer","events_processed":319,"events_dropped":0,"avg_latency_ms":13.269759881168964,"throughput_eps":0,"last_update":"2026-03-21T13:58:39.21017109Z"} +2026/03/21 13:58:44 [transform_engine] {"stage_name":"transform_engine","events_processed":319,"events_dropped":0,"avg_latency_ms":242.8284158355463,"throughput_eps":0,"last_update":"2026-03-21T13:58:39.21014508Z"} +2026/03/21 13:58:44 ───────────────────────────────────────────────── +2026/03/21 13:58:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:58:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:58:44.076245045Z"} +2026/03/21 13:58:49 [detection_layer] {"stage_name":"detection_layer","events_processed":319,"events_dropped":0,"avg_latency_ms":13.269759881168964,"throughput_eps":0,"last_update":"2026-03-21T13:58:44.210501664Z"} +2026/03/21 13:58:49 [transform_engine] {"stage_name":"transform_engine","events_processed":319,"events_dropped":0,"avg_latency_ms":242.8284158355463,"throughput_eps":0,"last_update":"2026-03-21T13:58:44.210548344Z"} +2026/03/21 13:58:49 [log_collector] {"stage_name":"log_collector","events_processed":15474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3094.8,"last_update":"2026-03-21T13:58:44.0682001Z"} +2026/03/21 13:58:49 [metric_collector] {"stage_name":"metric_collector","events_processed":9594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1918.8,"last_update":"2026-03-21T13:58:44.068668768Z"} +2026/03/21 13:58:49 ───────────────────────────────────────────────── +2026/03/21 13:58:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:58:54 [log_collector] {"stage_name":"log_collector","events_processed":15495,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3099,"last_update":"2026-03-21T13:58:49.068181174Z"} +2026/03/21 13:58:54 [metric_collector] {"stage_name":"metric_collector","events_processed":9599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1919.8,"last_update":"2026-03-21T13:58:49.068493563Z"} +2026/03/21 13:58:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:58:49.074539857Z"} +2026/03/21 13:58:54 [detection_layer] {"stage_name":"detection_layer","events_processed":319,"events_dropped":0,"avg_latency_ms":13.269759881168964,"throughput_eps":0,"last_update":"2026-03-21T13:58:49.210798081Z"} +2026/03/21 13:58:54 [transform_engine] {"stage_name":"transform_engine","events_processed":320,"events_dropped":0,"avg_latency_ms":216.84761766843707,"throughput_eps":0,"last_update":"2026-03-21T13:58:49.322648258Z"} +2026/03/21 13:58:54 ───────────────────────────────────────────────── +2026/03/21 13:58:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:58:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:58:54.079392414Z"} +2026/03/21 13:58:59 [detection_layer] {"stage_name":"detection_layer","events_processed":320,"events_dropped":0,"avg_latency_ms":13.116080704935172,"throughput_eps":0,"last_update":"2026-03-21T13:58:54.210627502Z"} +2026/03/21 13:58:59 [transform_engine] {"stage_name":"transform_engine","events_processed":320,"events_dropped":0,"avg_latency_ms":216.84761766843707,"throughput_eps":0,"last_update":"2026-03-21T13:58:54.210651879Z"} +2026/03/21 13:58:59 [log_collector] {"stage_name":"log_collector","events_processed":15516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3103.2,"last_update":"2026-03-21T13:58:54.069325556Z"} +2026/03/21 13:58:59 [metric_collector] {"stage_name":"metric_collector","events_processed":9604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1920.8,"last_update":"2026-03-21T13:58:54.070431996Z"} +2026/03/21 13:58:59 ───────────────────────────────────────────────── +2026/03/21 13:59:04 ── Pipeline Health ────────────────────────────── +2026/03/21 13:59:04 [log_collector] {"stage_name":"log_collector","events_processed":15535,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3107,"last_update":"2026-03-21T13:58:59.068377621Z"} +2026/03/21 13:59:04 [metric_collector] {"stage_name":"metric_collector","events_processed":9609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1921.8,"last_update":"2026-03-21T13:58:59.068608734Z"} +2026/03/21 13:59:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:58:59.07731258Z"} +2026/03/21 13:59:04 [detection_layer] {"stage_name":"detection_layer","events_processed":320,"events_dropped":0,"avg_latency_ms":13.116080704935172,"throughput_eps":0,"last_update":"2026-03-21T13:58:59.210486913Z"} +2026/03/21 13:59:04 [transform_engine] {"stage_name":"transform_engine","events_processed":320,"events_dropped":0,"avg_latency_ms":216.84761766843707,"throughput_eps":0,"last_update":"2026-03-21T13:58:59.210498936Z"} +2026/03/21 13:59:04 ───────────────────────────────────────────────── +2026/03/21 13:59:09 ── Pipeline Health ────────────────────────────── +2026/03/21 13:59:09 [log_collector] {"stage_name":"log_collector","events_processed":15545,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3109,"last_update":"2026-03-21T13:59:04.068556297Z"} +2026/03/21 13:59:09 [metric_collector] {"stage_name":"metric_collector","events_processed":9614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1922.8,"last_update":"2026-03-21T13:59:04.068787109Z"} +2026/03/21 13:59:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3848,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:59:04.075398576Z"} +2026/03/21 13:59:09 [detection_layer] {"stage_name":"detection_layer","events_processed":320,"events_dropped":0,"avg_latency_ms":13.116080704935172,"throughput_eps":0,"last_update":"2026-03-21T13:59:04.210615903Z"} +2026/03/21 13:59:09 [transform_engine] {"stage_name":"transform_engine","events_processed":320,"events_dropped":0,"avg_latency_ms":216.84761766843707,"throughput_eps":0,"last_update":"2026-03-21T13:59:04.21063505Z"} +2026/03/21 13:59:09 ───────────────────────────────────────────────── +Saved state: 16 clusters, 15550 messages, reason: none +2026/03/21 13:59:14 ── Pipeline Health ────────────────────────────── +2026/03/21 13:59:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:59:09.075543227Z"} +2026/03/21 13:59:14 [detection_layer] {"stage_name":"detection_layer","events_processed":320,"events_dropped":0,"avg_latency_ms":13.116080704935172,"throughput_eps":0,"last_update":"2026-03-21T13:59:09.210832451Z"} +2026/03/21 13:59:14 [transform_engine] {"stage_name":"transform_engine","events_processed":320,"events_dropped":0,"avg_latency_ms":216.84761766843707,"throughput_eps":0,"last_update":"2026-03-21T13:59:09.209693249Z"} +2026/03/21 13:59:14 [log_collector] {"stage_name":"log_collector","events_processed":15547,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3109.4,"last_update":"2026-03-21T13:59:09.068319005Z"} +2026/03/21 13:59:14 [metric_collector] {"stage_name":"metric_collector","events_processed":9619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1923.8,"last_update":"2026-03-21T13:59:09.068606777Z"} +2026/03/21 13:59:14 ───────────────────────────────────────────────── +2026/03/21 13:59:19 ── Pipeline Health ────────────────────────────── +2026/03/21 13:59:19 [metric_collector] {"stage_name":"metric_collector","events_processed":9624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1924.8,"last_update":"2026-03-21T13:59:14.068799555Z"} +2026/03/21 13:59:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:59:14.075125725Z"} +2026/03/21 13:59:19 [detection_layer] {"stage_name":"detection_layer","events_processed":320,"events_dropped":0,"avg_latency_ms":13.116080704935172,"throughput_eps":0,"last_update":"2026-03-21T13:59:14.210367988Z"} +2026/03/21 13:59:19 [transform_engine] {"stage_name":"transform_engine","events_processed":320,"events_dropped":0,"avg_latency_ms":216.84761766843707,"throughput_eps":0,"last_update":"2026-03-21T13:59:14.210382305Z"} +2026/03/21 13:59:19 [log_collector] {"stage_name":"log_collector","events_processed":15556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3111.2,"last_update":"2026-03-21T13:59:14.068571467Z"} +2026/03/21 13:59:19 ───────────────────────────────────────────────── +2026/03/21 13:59:24 ── Pipeline Health ────────────────────────────── +2026/03/21 13:59:24 [log_collector] {"stage_name":"log_collector","events_processed":15575,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3115,"last_update":"2026-03-21T13:59:19.068228548Z"} +2026/03/21 13:59:24 [metric_collector] {"stage_name":"metric_collector","events_processed":9629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1925.8,"last_update":"2026-03-21T13:59:19.068222777Z"} +2026/03/21 13:59:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:59:19.076304582Z"} +2026/03/21 13:59:24 [detection_layer] {"stage_name":"detection_layer","events_processed":320,"events_dropped":0,"avg_latency_ms":13.116080704935172,"throughput_eps":0,"last_update":"2026-03-21T13:59:19.210086596Z"} +2026/03/21 13:59:24 [transform_engine] {"stage_name":"transform_engine","events_processed":320,"events_dropped":0,"avg_latency_ms":216.84761766843707,"throughput_eps":0,"last_update":"2026-03-21T13:59:19.210053323Z"} +2026/03/21 13:59:24 ───────────────────────────────────────────────── +2026/03/21 13:59:29 ── Pipeline Health ────────────────────────────── +2026/03/21 13:59:29 [transform_engine] {"stage_name":"transform_engine","events_processed":321,"events_dropped":0,"avg_latency_ms":193.48229793474965,"throughput_eps":0,"last_update":"2026-03-21T13:59:24.210416055Z"} +2026/03/21 13:59:29 [log_collector] {"stage_name":"log_collector","events_processed":15598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3119.6,"last_update":"2026-03-21T13:59:24.068064232Z"} +2026/03/21 13:59:29 [metric_collector] {"stage_name":"metric_collector","events_processed":9634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1926.8,"last_update":"2026-03-21T13:59:24.06819821Z"} +2026/03/21 13:59:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:59:24.076167829Z"} +2026/03/21 13:59:29 [detection_layer] {"stage_name":"detection_layer","events_processed":321,"events_dropped":0,"avg_latency_ms":12.905050363948138,"throughput_eps":0,"last_update":"2026-03-21T13:59:24.210454309Z"} +2026/03/21 13:59:29 ───────────────────────────────────────────────── +2026/03/21 13:59:34 ── Pipeline Health ────────────────────────────── +2026/03/21 13:59:34 [transform_engine] {"stage_name":"transform_engine","events_processed":321,"events_dropped":0,"avg_latency_ms":193.48229793474965,"throughput_eps":0,"last_update":"2026-03-21T13:59:29.210556514Z"} +2026/03/21 13:59:34 [log_collector] {"stage_name":"log_collector","events_processed":15608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3121.6,"last_update":"2026-03-21T13:59:29.068816164Z"} +2026/03/21 13:59:34 [metric_collector] {"stage_name":"metric_collector","events_processed":9639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1927.8,"last_update":"2026-03-21T13:59:29.069183869Z"} +2026/03/21 13:59:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:59:29.075323191Z"} +2026/03/21 13:59:34 [detection_layer] {"stage_name":"detection_layer","events_processed":321,"events_dropped":0,"avg_latency_ms":12.905050363948138,"throughput_eps":0,"last_update":"2026-03-21T13:59:29.210543299Z"} +2026/03/21 13:59:34 ───────────────────────────────────────────────── +2026/03/21 13:59:39 ── Pipeline Health ────────────────────────────── +2026/03/21 13:59:39 [log_collector] {"stage_name":"log_collector","events_processed":15608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3121.6,"last_update":"2026-03-21T13:59:34.068803212Z"} +2026/03/21 13:59:39 [metric_collector] {"stage_name":"metric_collector","events_processed":9644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1928.8,"last_update":"2026-03-21T13:59:34.069062348Z"} +2026/03/21 13:59:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3860,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:59:34.07565488Z"} +2026/03/21 13:59:39 [detection_layer] {"stage_name":"detection_layer","events_processed":321,"events_dropped":0,"avg_latency_ms":12.905050363948138,"throughput_eps":0,"last_update":"2026-03-21T13:59:34.20985855Z"} +2026/03/21 13:59:39 [transform_engine] {"stage_name":"transform_engine","events_processed":321,"events_dropped":0,"avg_latency_ms":193.48229793474965,"throughput_eps":0,"last_update":"2026-03-21T13:59:34.209888096Z"} +2026/03/21 13:59:39 ───────────────────────────────────────────────── +2026/03/21 13:59:44 ── Pipeline Health ────────────────────────────── +2026/03/21 13:59:44 [metric_collector] {"stage_name":"metric_collector","events_processed":9649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1929.8,"last_update":"2026-03-21T13:59:39.069019593Z"} +2026/03/21 13:59:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3862,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:59:39.075148126Z"} +2026/03/21 13:59:44 [detection_layer] {"stage_name":"detection_layer","events_processed":321,"events_dropped":0,"avg_latency_ms":12.905050363948138,"throughput_eps":0,"last_update":"2026-03-21T13:59:39.210406746Z"} +2026/03/21 13:59:44 [transform_engine] {"stage_name":"transform_engine","events_processed":321,"events_dropped":0,"avg_latency_ms":193.48229793474965,"throughput_eps":0,"last_update":"2026-03-21T13:59:39.210393811Z"} +2026/03/21 13:59:44 [log_collector] {"stage_name":"log_collector","events_processed":15610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3122,"last_update":"2026-03-21T13:59:39.068972944Z"} +2026/03/21 13:59:44 ───────────────────────────────────────────────── +2026/03/21 13:59:49 ── Pipeline Health ────────────────────────────── +2026/03/21 13:59:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:59:44.076059189Z"} +2026/03/21 13:59:49 [detection_layer] {"stage_name":"detection_layer","events_processed":321,"events_dropped":0,"avg_latency_ms":12.905050363948138,"throughput_eps":0,"last_update":"2026-03-21T13:59:44.210400432Z"} +2026/03/21 13:59:49 [transform_engine] {"stage_name":"transform_engine","events_processed":321,"events_dropped":0,"avg_latency_ms":193.48229793474965,"throughput_eps":0,"last_update":"2026-03-21T13:59:44.21037298Z"} +2026/03/21 13:59:49 [log_collector] {"stage_name":"log_collector","events_processed":15614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3122.8,"last_update":"2026-03-21T13:59:49.068340893Z"} +2026/03/21 13:59:49 [metric_collector] {"stage_name":"metric_collector","events_processed":9654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1930.8,"last_update":"2026-03-21T13:59:44.069179539Z"} +2026/03/21 13:59:49 ───────────────────────────────────────────────── +2026/03/21 13:59:54 ── Pipeline Health ────────────────────────────── +2026/03/21 13:59:54 [transform_engine] {"stage_name":"transform_engine","events_processed":321,"events_dropped":0,"avg_latency_ms":193.48229793474965,"throughput_eps":0,"last_update":"2026-03-21T13:59:49.210416833Z"} +2026/03/21 13:59:54 [log_collector] {"stage_name":"log_collector","events_processed":15614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3122.8,"last_update":"2026-03-21T13:59:49.068340893Z"} +2026/03/21 13:59:54 [metric_collector] {"stage_name":"metric_collector","events_processed":9659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1931.8,"last_update":"2026-03-21T13:59:49.068737242Z"} +2026/03/21 13:59:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:59:49.075154357Z"} +2026/03/21 13:59:54 [detection_layer] {"stage_name":"detection_layer","events_processed":321,"events_dropped":0,"avg_latency_ms":12.905050363948138,"throughput_eps":0,"last_update":"2026-03-21T13:59:49.210458714Z"} +2026/03/21 13:59:54 ───────────────────────────────────────────────── +2026/03/21 13:59:59 ── Pipeline Health ────────────────────────────── +2026/03/21 13:59:59 [transform_engine] {"stage_name":"transform_engine","events_processed":322,"events_dropped":0,"avg_latency_ms":175.77555174779974,"throughput_eps":0,"last_update":"2026-03-21T13:59:54.210293671Z"} +2026/03/21 13:59:59 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T13:59:54.068171333Z"} +2026/03/21 13:59:59 [metric_collector] {"stage_name":"metric_collector","events_processed":9663,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1932.6,"last_update":"2026-03-21T13:59:54.06801873Z"} +2026/03/21 13:59:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3868,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:59:54.077072237Z"} +2026/03/21 13:59:59 [detection_layer] {"stage_name":"detection_layer","events_processed":322,"events_dropped":0,"avg_latency_ms":12.79420709115851,"throughput_eps":0,"last_update":"2026-03-21T13:59:54.210331333Z"} +2026/03/21 13:59:59 ───────────────────────────────────────────────── +2026/03/21 14:00:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:00:04 [detection_layer] {"stage_name":"detection_layer","events_processed":322,"events_dropped":0,"avg_latency_ms":12.79420709115851,"throughput_eps":0,"last_update":"2026-03-21T13:59:59.210404571Z"} +2026/03/21 14:00:04 [transform_engine] {"stage_name":"transform_engine","events_processed":322,"events_dropped":0,"avg_latency_ms":175.77555174779974,"throughput_eps":0,"last_update":"2026-03-21T13:59:59.210423948Z"} +2026/03/21 14:00:04 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T13:59:59.068821285Z"} +2026/03/21 14:00:04 [metric_collector] {"stage_name":"metric_collector","events_processed":9669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1933.8,"last_update":"2026-03-21T13:59:59.068991431Z"} +2026/03/21 14:00:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T13:59:59.075199465Z"} +2026/03/21 14:00:04 ───────────────────────────────────────────────── +2026/03/21 14:00:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:00:09 [detection_layer] {"stage_name":"detection_layer","events_processed":322,"events_dropped":0,"avg_latency_ms":12.79420709115851,"throughput_eps":0,"last_update":"2026-03-21T14:00:04.210118891Z"} +2026/03/21 14:00:09 [transform_engine] {"stage_name":"transform_engine","events_processed":322,"events_dropped":0,"avg_latency_ms":175.77555174779974,"throughput_eps":0,"last_update":"2026-03-21T14:00:04.210138017Z"} +2026/03/21 14:00:09 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:00:04.068699431Z"} +2026/03/21 14:00:09 [metric_collector] {"stage_name":"metric_collector","events_processed":9674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1934.8,"last_update":"2026-03-21T14:00:04.069057907Z"} +2026/03/21 14:00:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:00:04.085948619Z"} +2026/03/21 14:00:09 ───────────────────────────────────────────────── +2026/03/21 14:00:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:00:14 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:00:14.068194356Z"} +2026/03/21 14:00:14 [metric_collector] {"stage_name":"metric_collector","events_processed":9679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1935.8,"last_update":"2026-03-21T14:00:09.068720354Z"} +2026/03/21 14:00:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:00:09.074789121Z"} +2026/03/21 14:00:14 [detection_layer] {"stage_name":"detection_layer","events_processed":322,"events_dropped":0,"avg_latency_ms":12.79420709115851,"throughput_eps":0,"last_update":"2026-03-21T14:00:09.210034812Z"} +2026/03/21 14:00:14 [transform_engine] {"stage_name":"transform_engine","events_processed":322,"events_dropped":0,"avg_latency_ms":175.77555174779974,"throughput_eps":0,"last_update":"2026-03-21T14:00:09.210019312Z"} +2026/03/21 14:00:14 ───────────────────────────────────────────────── +2026/03/21 14:00:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:00:19 [detection_layer] {"stage_name":"detection_layer","events_processed":322,"events_dropped":0,"avg_latency_ms":12.79420709115851,"throughput_eps":0,"last_update":"2026-03-21T14:00:14.210345356Z"} +2026/03/21 14:00:19 [transform_engine] {"stage_name":"transform_engine","events_processed":322,"events_dropped":0,"avg_latency_ms":175.77555174779974,"throughput_eps":0,"last_update":"2026-03-21T14:00:14.210318705Z"} +2026/03/21 14:00:19 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:00:19.068400004Z"} +2026/03/21 14:00:19 [metric_collector] {"stage_name":"metric_collector","events_processed":9684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1936.8,"last_update":"2026-03-21T14:00:14.068481255Z"} +2026/03/21 14:00:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3876,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:00:14.075046664Z"} +2026/03/21 14:00:19 ───────────────────────────────────────────────── +2026/03/21 14:00:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:00:24 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:00:19.068400004Z"} +2026/03/21 14:00:24 [metric_collector] {"stage_name":"metric_collector","events_processed":9689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1937.8,"last_update":"2026-03-21T14:00:19.06860197Z"} +2026/03/21 14:00:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:00:19.074314395Z"} +2026/03/21 14:00:24 [detection_layer] {"stage_name":"detection_layer","events_processed":322,"events_dropped":0,"avg_latency_ms":12.79420709115851,"throughput_eps":0,"last_update":"2026-03-21T14:00:19.210581542Z"} +2026/03/21 14:00:24 [transform_engine] {"stage_name":"transform_engine","events_processed":323,"events_dropped":0,"avg_latency_ms":160.6188787982398,"throughput_eps":0,"last_update":"2026-03-21T14:00:19.310535637Z"} +2026/03/21 14:00:24 ───────────────────────────────────────────────── +2026/03/21 14:00:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:00:29 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:00:24.068604176Z"} +2026/03/21 14:00:29 [metric_collector] {"stage_name":"metric_collector","events_processed":9694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1938.8,"last_update":"2026-03-21T14:00:24.068834737Z"} +2026/03/21 14:00:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:00:24.076755082Z"} +2026/03/21 14:00:29 [detection_layer] {"stage_name":"detection_layer","events_processed":323,"events_dropped":0,"avg_latency_ms":12.91129047292681,"throughput_eps":0,"last_update":"2026-03-21T14:00:24.210033812Z"} +2026/03/21 14:00:29 [transform_engine] {"stage_name":"transform_engine","events_processed":323,"events_dropped":0,"avg_latency_ms":160.6188787982398,"throughput_eps":0,"last_update":"2026-03-21T14:00:24.209733617Z"} +2026/03/21 14:00:29 ───────────────────────────────────────────────── +2026/03/21 14:00:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:00:34 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:00:29.068501661Z"} +2026/03/21 14:00:34 [metric_collector] {"stage_name":"metric_collector","events_processed":9699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1939.8,"last_update":"2026-03-21T14:00:29.068711192Z"} +2026/03/21 14:00:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:00:29.075122376Z"} +2026/03/21 14:00:34 [detection_layer] {"stage_name":"detection_layer","events_processed":323,"events_dropped":0,"avg_latency_ms":12.91129047292681,"throughput_eps":0,"last_update":"2026-03-21T14:00:29.210356923Z"} +2026/03/21 14:00:34 [transform_engine] {"stage_name":"transform_engine","events_processed":323,"events_dropped":0,"avg_latency_ms":160.6188787982398,"throughput_eps":0,"last_update":"2026-03-21T14:00:29.2103705Z"} +2026/03/21 14:00:34 ───────────────────────────────────────────────── +2026/03/21 14:00:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:00:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:00:34.07549013Z"} +2026/03/21 14:00:39 [detection_layer] {"stage_name":"detection_layer","events_processed":323,"events_dropped":0,"avg_latency_ms":12.91129047292681,"throughput_eps":0,"last_update":"2026-03-21T14:00:34.210795341Z"} +2026/03/21 14:00:39 [transform_engine] {"stage_name":"transform_engine","events_processed":323,"events_dropped":0,"avg_latency_ms":160.6188787982398,"throughput_eps":0,"last_update":"2026-03-21T14:00:34.209661689Z"} +2026/03/21 14:00:39 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:00:34.068526989Z"} +2026/03/21 14:00:39 [metric_collector] {"stage_name":"metric_collector","events_processed":9703,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1940.6,"last_update":"2026-03-21T14:00:34.068531457Z"} +2026/03/21 14:00:39 ───────────────────────────────────────────────── +2026/03/21 14:00:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:00:44 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:00:39.068402206Z"} +2026/03/21 14:00:44 [metric_collector] {"stage_name":"metric_collector","events_processed":9708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1941.6,"last_update":"2026-03-21T14:00:39.068429519Z"} +2026/03/21 14:00:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3886,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:00:39.074828599Z"} +2026/03/21 14:00:44 [detection_layer] {"stage_name":"detection_layer","events_processed":323,"events_dropped":0,"avg_latency_ms":12.91129047292681,"throughput_eps":0,"last_update":"2026-03-21T14:00:39.210053095Z"} +2026/03/21 14:00:44 [transform_engine] {"stage_name":"transform_engine","events_processed":323,"events_dropped":0,"avg_latency_ms":160.6188787982398,"throughput_eps":0,"last_update":"2026-03-21T14:00:39.210085988Z"} +2026/03/21 14:00:44 ───────────────────────────────────────────────── +2026/03/21 14:00:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:00:49 [detection_layer] {"stage_name":"detection_layer","events_processed":323,"events_dropped":0,"avg_latency_ms":12.91129047292681,"throughput_eps":0,"last_update":"2026-03-21T14:00:44.209973787Z"} +2026/03/21 14:00:49 [transform_engine] {"stage_name":"transform_engine","events_processed":323,"events_dropped":0,"avg_latency_ms":160.6188787982398,"throughput_eps":0,"last_update":"2026-03-21T14:00:44.209959209Z"} +2026/03/21 14:00:49 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:00:44.06809914Z"} +2026/03/21 14:00:49 [metric_collector] {"stage_name":"metric_collector","events_processed":9714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1942.8,"last_update":"2026-03-21T14:00:44.068371522Z"} +2026/03/21 14:00:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:00:44.074756294Z"} +2026/03/21 14:00:49 ───────────────────────────────────────────────── +2026/03/21 14:00:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:00:54 [metric_collector] {"stage_name":"metric_collector","events_processed":9719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1943.8,"last_update":"2026-03-21T14:00:49.068994495Z"} +2026/03/21 14:00:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:00:49.075867202Z"} +2026/03/21 14:00:54 [detection_layer] {"stage_name":"detection_layer","events_processed":323,"events_dropped":0,"avg_latency_ms":12.91129047292681,"throughput_eps":0,"last_update":"2026-03-21T14:00:49.210063538Z"} +2026/03/21 14:00:54 [transform_engine] {"stage_name":"transform_engine","events_processed":324,"events_dropped":0,"avg_latency_ms":140.13371123859184,"throughput_eps":0,"last_update":"2026-03-21T14:00:49.268274835Z"} +2026/03/21 14:00:54 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:00:49.068733996Z"} +2026/03/21 14:00:54 ───────────────────────────────────────────────── +2026/03/21 14:00:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:00:59 [detection_layer] {"stage_name":"detection_layer","events_processed":324,"events_dropped":0,"avg_latency_ms":13.01049157834145,"throughput_eps":0,"last_update":"2026-03-21T14:00:54.210195719Z"} +2026/03/21 14:00:59 [transform_engine] {"stage_name":"transform_engine","events_processed":324,"events_dropped":0,"avg_latency_ms":140.13371123859184,"throughput_eps":0,"last_update":"2026-03-21T14:00:54.210211188Z"} +2026/03/21 14:00:59 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:00:54.068329038Z"} +2026/03/21 14:00:59 [metric_collector] {"stage_name":"metric_collector","events_processed":9724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1944.8,"last_update":"2026-03-21T14:00:54.068670513Z"} +2026/03/21 14:00:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3892,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:00:54.075988112Z"} +2026/03/21 14:00:59 ───────────────────────────────────────────────── +2026/03/21 14:01:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:01:04 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:00:59.068409104Z"} +2026/03/21 14:01:04 [metric_collector] {"stage_name":"metric_collector","events_processed":9729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1945.8,"last_update":"2026-03-21T14:00:59.068479078Z"} +2026/03/21 14:01:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:00:59.075290859Z"} +2026/03/21 14:01:04 [detection_layer] {"stage_name":"detection_layer","events_processed":324,"events_dropped":0,"avg_latency_ms":13.01049157834145,"throughput_eps":0,"last_update":"2026-03-21T14:00:59.210554929Z"} +2026/03/21 14:01:04 [transform_engine] {"stage_name":"transform_engine","events_processed":324,"events_dropped":0,"avg_latency_ms":140.13371123859184,"throughput_eps":0,"last_update":"2026-03-21T14:00:59.21053975Z"} +2026/03/21 14:01:04 ───────────────────────────────────────────────── +2026/03/21 14:01:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:01:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3896,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:01:04.076071093Z"} +2026/03/21 14:01:09 [detection_layer] {"stage_name":"detection_layer","events_processed":324,"events_dropped":0,"avg_latency_ms":13.01049157834145,"throughput_eps":0,"last_update":"2026-03-21T14:01:04.210335597Z"} +2026/03/21 14:01:09 [transform_engine] {"stage_name":"transform_engine","events_processed":324,"events_dropped":0,"avg_latency_ms":140.13371123859184,"throughput_eps":0,"last_update":"2026-03-21T14:01:04.210309547Z"} +2026/03/21 14:01:09 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:01:04.0680683Z"} +2026/03/21 14:01:09 [metric_collector] {"stage_name":"metric_collector","events_processed":9734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1946.8,"last_update":"2026-03-21T14:01:04.068163743Z"} +2026/03/21 14:01:09 ───────────────────────────────────────────────── +2026/03/21 14:01:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:01:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3898,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:01:09.075593863Z"} +2026/03/21 14:01:14 [detection_layer] {"stage_name":"detection_layer","events_processed":324,"events_dropped":0,"avg_latency_ms":13.01049157834145,"throughput_eps":0,"last_update":"2026-03-21T14:01:09.210842533Z"} +2026/03/21 14:01:14 [transform_engine] {"stage_name":"transform_engine","events_processed":324,"events_dropped":0,"avg_latency_ms":140.13371123859184,"throughput_eps":0,"last_update":"2026-03-21T14:01:09.209726705Z"} +2026/03/21 14:01:14 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:01:09.068081691Z"} +2026/03/21 14:01:14 [metric_collector] {"stage_name":"metric_collector","events_processed":9739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1947.8,"last_update":"2026-03-21T14:01:09.068433685Z"} +2026/03/21 14:01:14 ───────────────────────────────────────────────── +2026/03/21 14:01:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:01:19 [metric_collector] {"stage_name":"metric_collector","events_processed":9744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1948.8,"last_update":"2026-03-21T14:01:14.068759365Z"} +2026/03/21 14:01:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3900,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:01:14.075236294Z"} +2026/03/21 14:01:19 [detection_layer] {"stage_name":"detection_layer","events_processed":324,"events_dropped":0,"avg_latency_ms":13.01049157834145,"throughput_eps":0,"last_update":"2026-03-21T14:01:14.21044219Z"} +2026/03/21 14:01:19 [transform_engine] {"stage_name":"transform_engine","events_processed":324,"events_dropped":0,"avg_latency_ms":140.13371123859184,"throughput_eps":0,"last_update":"2026-03-21T14:01:14.21046295Z"} +2026/03/21 14:01:19 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:01:14.068440554Z"} +2026/03/21 14:01:19 ───────────────────────────────────────────────── +2026/03/21 14:01:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:01:24 [detection_layer] {"stage_name":"detection_layer","events_processed":324,"events_dropped":0,"avg_latency_ms":13.01049157834145,"throughput_eps":0,"last_update":"2026-03-21T14:01:19.211386653Z"} +2026/03/21 14:01:24 [transform_engine] {"stage_name":"transform_engine","events_processed":325,"events_dropped":0,"avg_latency_ms":124.09367199087349,"throughput_eps":0,"last_update":"2026-03-21T14:01:19.27032954Z"} +2026/03/21 14:01:24 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:01:19.068514741Z"} +2026/03/21 14:01:24 [metric_collector] {"stage_name":"metric_collector","events_processed":9749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1949.8,"last_update":"2026-03-21T14:01:19.068777734Z"} +2026/03/21 14:01:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:01:19.075088194Z"} +2026/03/21 14:01:24 ───────────────────────────────────────────────── +2026/03/21 14:01:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:01:29 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:01:24.068507875Z"} +2026/03/21 14:01:29 [metric_collector] {"stage_name":"metric_collector","events_processed":9754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1950.8,"last_update":"2026-03-21T14:01:24.068788514Z"} +2026/03/21 14:01:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:01:24.076239579Z"} +2026/03/21 14:01:29 [detection_layer] {"stage_name":"detection_layer","events_processed":325,"events_dropped":0,"avg_latency_ms":13.16413286267316,"throughput_eps":0,"last_update":"2026-03-21T14:01:24.210485745Z"} +2026/03/21 14:01:29 [transform_engine] {"stage_name":"transform_engine","events_processed":325,"events_dropped":0,"avg_latency_ms":124.09367199087349,"throughput_eps":0,"last_update":"2026-03-21T14:01:24.210515071Z"} +2026/03/21 14:01:29 ───────────────────────────────────────────────── +2026/03/21 14:01:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:01:34 [metric_collector] {"stage_name":"metric_collector","events_processed":9759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1951.8,"last_update":"2026-03-21T14:01:29.069104585Z"} +2026/03/21 14:01:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3906,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:01:29.076327673Z"} +2026/03/21 14:01:34 [detection_layer] {"stage_name":"detection_layer","events_processed":325,"events_dropped":0,"avg_latency_ms":13.16413286267316,"throughput_eps":0,"last_update":"2026-03-21T14:01:29.210519164Z"} +2026/03/21 14:01:34 [transform_engine] {"stage_name":"transform_engine","events_processed":325,"events_dropped":0,"avg_latency_ms":124.09367199087349,"throughput_eps":0,"last_update":"2026-03-21T14:01:29.210497232Z"} +2026/03/21 14:01:34 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:01:29.068816903Z"} +2026/03/21 14:01:34 ───────────────────────────────────────────────── +2026/03/21 14:01:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:01:39 [metric_collector] {"stage_name":"metric_collector","events_processed":9764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1952.8,"last_update":"2026-03-21T14:01:34.068824511Z"} +2026/03/21 14:01:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3908,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:01:34.07530133Z"} +2026/03/21 14:01:39 [detection_layer] {"stage_name":"detection_layer","events_processed":325,"events_dropped":0,"avg_latency_ms":13.16413286267316,"throughput_eps":0,"last_update":"2026-03-21T14:01:34.210527974Z"} +2026/03/21 14:01:39 [transform_engine] {"stage_name":"transform_engine","events_processed":325,"events_dropped":0,"avg_latency_ms":124.09367199087349,"throughput_eps":0,"last_update":"2026-03-21T14:01:34.21051023Z"} +2026/03/21 14:01:39 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:01:34.068565516Z"} +2026/03/21 14:01:39 ───────────────────────────────────────────────── +2026/03/21 14:01:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:01:44 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:01:39.068827631Z"} +2026/03/21 14:01:44 [metric_collector] {"stage_name":"metric_collector","events_processed":9769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1953.8,"last_update":"2026-03-21T14:01:39.069054105Z"} +2026/03/21 14:01:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:01:39.07559189Z"} +2026/03/21 14:01:44 [detection_layer] {"stage_name":"detection_layer","events_processed":325,"events_dropped":0,"avg_latency_ms":13.16413286267316,"throughput_eps":0,"last_update":"2026-03-21T14:01:39.210892264Z"} +2026/03/21 14:01:44 [transform_engine] {"stage_name":"transform_engine","events_processed":325,"events_dropped":0,"avg_latency_ms":124.09367199087349,"throughput_eps":0,"last_update":"2026-03-21T14:01:39.209759815Z"} +2026/03/21 14:01:44 ───────────────────────────────────────────────── +2026/03/21 14:01:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:01:49 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:01:44.068680522Z"} +2026/03/21 14:01:49 [metric_collector] {"stage_name":"metric_collector","events_processed":9774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1954.8,"last_update":"2026-03-21T14:01:44.068951691Z"} +2026/03/21 14:01:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3912,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:01:44.076314718Z"} +2026/03/21 14:01:49 [detection_layer] {"stage_name":"detection_layer","events_processed":325,"events_dropped":0,"avg_latency_ms":13.16413286267316,"throughput_eps":0,"last_update":"2026-03-21T14:01:44.210526185Z"} +2026/03/21 14:01:49 [transform_engine] {"stage_name":"transform_engine","events_processed":325,"events_dropped":0,"avg_latency_ms":124.09367199087349,"throughput_eps":0,"last_update":"2026-03-21T14:01:44.210543719Z"} +2026/03/21 14:01:49 ───────────────────────────────────────────────── +2026/03/21 14:01:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:01:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:01:49.074655789Z"} +2026/03/21 14:01:54 [detection_layer] {"stage_name":"detection_layer","events_processed":325,"events_dropped":0,"avg_latency_ms":13.16413286267316,"throughput_eps":0,"last_update":"2026-03-21T14:01:49.209908902Z"} +2026/03/21 14:01:54 [transform_engine] {"stage_name":"transform_engine","events_processed":326,"events_dropped":0,"avg_latency_ms":136.0390877926988,"throughput_eps":0,"last_update":"2026-03-21T14:01:49.393704114Z"} +2026/03/21 14:01:54 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:01:49.068069161Z"} +2026/03/21 14:01:54 [metric_collector] {"stage_name":"metric_collector","events_processed":9779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1955.8,"last_update":"2026-03-21T14:01:49.068738403Z"} +2026/03/21 14:01:54 ───────────────────────────────────────────────── +2026/03/21 14:01:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:01:59 [transform_engine] {"stage_name":"transform_engine","events_processed":326,"events_dropped":0,"avg_latency_ms":136.0390877926988,"throughput_eps":0,"last_update":"2026-03-21T14:01:54.210041565Z"} +2026/03/21 14:01:59 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:01:54.068176795Z"} +2026/03/21 14:01:59 [metric_collector] {"stage_name":"metric_collector","events_processed":9784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1956.8,"last_update":"2026-03-21T14:01:54.068384222Z"} +2026/03/21 14:01:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:01:54.074769395Z"} +2026/03/21 14:01:59 [detection_layer] {"stage_name":"detection_layer","events_processed":326,"events_dropped":0,"avg_latency_ms":12.89237369013853,"throughput_eps":0,"last_update":"2026-03-21T14:01:54.210059649Z"} +2026/03/21 14:01:59 ───────────────────────────────────────────────── +2026/03/21 14:02:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:02:04 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:01:59.068656472Z"} +2026/03/21 14:02:04 [metric_collector] {"stage_name":"metric_collector","events_processed":9789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1957.8,"last_update":"2026-03-21T14:01:59.068647856Z"} +2026/03/21 14:02:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3918,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:01:59.075223653Z"} +2026/03/21 14:02:04 [detection_layer] {"stage_name":"detection_layer","events_processed":326,"events_dropped":0,"avg_latency_ms":12.89237369013853,"throughput_eps":0,"last_update":"2026-03-21T14:01:59.210473108Z"} +2026/03/21 14:02:04 [transform_engine] {"stage_name":"transform_engine","events_processed":326,"events_dropped":0,"avg_latency_ms":136.0390877926988,"throughput_eps":0,"last_update":"2026-03-21T14:01:59.210445816Z"} +2026/03/21 14:02:04 ───────────────────────────────────────────────── +2026/03/21 14:02:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:02:09 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:02:04.068878864Z"} +2026/03/21 14:02:09 [metric_collector] {"stage_name":"metric_collector","events_processed":9794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1958.8,"last_update":"2026-03-21T14:02:04.068893933Z"} +2026/03/21 14:02:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3920,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:02:04.076541785Z"} +2026/03/21 14:02:09 [detection_layer] {"stage_name":"detection_layer","events_processed":326,"events_dropped":0,"avg_latency_ms":12.89237369013853,"throughput_eps":0,"last_update":"2026-03-21T14:02:04.210788958Z"} +2026/03/21 14:02:09 [transform_engine] {"stage_name":"transform_engine","events_processed":326,"events_dropped":0,"avg_latency_ms":136.0390877926988,"throughput_eps":0,"last_update":"2026-03-21T14:02:04.209684984Z"} +2026/03/21 14:02:09 ───────────────────────────────────────────────── +2026/03/21 14:02:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:02:14 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:02:14.068409905Z"} +2026/03/21 14:02:14 [metric_collector] {"stage_name":"metric_collector","events_processed":9799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1959.8,"last_update":"2026-03-21T14:02:09.068935066Z"} +2026/03/21 14:02:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:02:09.074796045Z"} +2026/03/21 14:02:14 [detection_layer] {"stage_name":"detection_layer","events_processed":326,"events_dropped":0,"avg_latency_ms":12.89237369013853,"throughput_eps":0,"last_update":"2026-03-21T14:02:09.210047473Z"} +2026/03/21 14:02:14 [transform_engine] {"stage_name":"transform_engine","events_processed":326,"events_dropped":0,"avg_latency_ms":136.0390877926988,"throughput_eps":0,"last_update":"2026-03-21T14:02:09.210026051Z"} +2026/03/21 14:02:14 ───────────────────────────────────────────────── +2026/03/21 14:02:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:02:19 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:02:14.068409905Z"} +2026/03/21 14:02:19 [metric_collector] {"stage_name":"metric_collector","events_processed":9804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1960.8,"last_update":"2026-03-21T14:02:14.068503945Z"} +2026/03/21 14:02:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:02:14.075559282Z"} +2026/03/21 14:02:19 [detection_layer] {"stage_name":"detection_layer","events_processed":326,"events_dropped":0,"avg_latency_ms":12.89237369013853,"throughput_eps":0,"last_update":"2026-03-21T14:02:14.210810318Z"} +2026/03/21 14:02:19 [transform_engine] {"stage_name":"transform_engine","events_processed":326,"events_dropped":0,"avg_latency_ms":136.0390877926988,"throughput_eps":0,"last_update":"2026-03-21T14:02:14.209727845Z"} +2026/03/21 14:02:19 ───────────────────────────────────────────────── +2026/03/21 14:02:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:02:24 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:02:19.068712121Z"} +2026/03/21 14:02:24 [metric_collector] {"stage_name":"metric_collector","events_processed":9809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1961.8,"last_update":"2026-03-21T14:02:19.06897249Z"} +2026/03/21 14:02:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:02:19.075170113Z"} +2026/03/21 14:02:24 [detection_layer] {"stage_name":"detection_layer","events_processed":326,"events_dropped":0,"avg_latency_ms":12.89237369013853,"throughput_eps":0,"last_update":"2026-03-21T14:02:19.210411871Z"} +2026/03/21 14:02:24 [transform_engine] {"stage_name":"transform_engine","events_processed":327,"events_dropped":0,"avg_latency_ms":120.40927543415904,"throughput_eps":0,"last_update":"2026-03-21T14:02:19.268328799Z"} +2026/03/21 14:02:24 ───────────────────────────────────────────────── +2026/03/21 14:02:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:02:29 [metric_collector] {"stage_name":"metric_collector","events_processed":9814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1962.8,"last_update":"2026-03-21T14:02:24.068844782Z"} +2026/03/21 14:02:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:02:24.074924329Z"} +2026/03/21 14:02:29 [detection_layer] {"stage_name":"detection_layer","events_processed":327,"events_dropped":0,"avg_latency_ms":12.786523952110826,"throughput_eps":0,"last_update":"2026-03-21T14:02:24.210166858Z"} +2026/03/21 14:02:29 [transform_engine] {"stage_name":"transform_engine","events_processed":327,"events_dropped":0,"avg_latency_ms":120.40927543415904,"throughput_eps":0,"last_update":"2026-03-21T14:02:24.209778254Z"} +2026/03/21 14:02:29 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:02:24.068623958Z"} +2026/03/21 14:02:29 ───────────────────────────────────────────────── +2026/03/21 14:02:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:02:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3930,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:02:29.075537257Z"} +2026/03/21 14:02:34 [detection_layer] {"stage_name":"detection_layer","events_processed":327,"events_dropped":0,"avg_latency_ms":12.786523952110826,"throughput_eps":0,"last_update":"2026-03-21T14:02:29.210901658Z"} +2026/03/21 14:02:34 [transform_engine] {"stage_name":"transform_engine","events_processed":327,"events_dropped":0,"avg_latency_ms":120.40927543415904,"throughput_eps":0,"last_update":"2026-03-21T14:02:29.2097338Z"} +2026/03/21 14:02:34 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:02:29.068536675Z"} +2026/03/21 14:02:34 [metric_collector] {"stage_name":"metric_collector","events_processed":9819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1963.8,"last_update":"2026-03-21T14:02:29.068746648Z"} +2026/03/21 14:02:34 ───────────────────────────────────────────────── +2026/03/21 14:02:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:02:39 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:02:34.068296776Z"} +2026/03/21 14:02:39 [metric_collector] {"stage_name":"metric_collector","events_processed":9824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1964.8,"last_update":"2026-03-21T14:02:34.06857592Z"} +2026/03/21 14:02:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:02:34.074841915Z"} +2026/03/21 14:02:39 [detection_layer] {"stage_name":"detection_layer","events_processed":327,"events_dropped":0,"avg_latency_ms":12.786523952110826,"throughput_eps":0,"last_update":"2026-03-21T14:02:34.210045849Z"} +2026/03/21 14:02:39 [transform_engine] {"stage_name":"transform_engine","events_processed":327,"events_dropped":0,"avg_latency_ms":120.40927543415904,"throughput_eps":0,"last_update":"2026-03-21T14:02:34.210032423Z"} +2026/03/21 14:02:39 ───────────────────────────────────────────────── +2026/03/21 14:02:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:02:44 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:02:39.06866543Z"} +2026/03/21 14:02:44 [metric_collector] {"stage_name":"metric_collector","events_processed":9829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1965.8,"last_update":"2026-03-21T14:02:39.06887427Z"} +2026/03/21 14:02:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:02:39.075374863Z"} +2026/03/21 14:02:44 [detection_layer] {"stage_name":"detection_layer","events_processed":327,"events_dropped":0,"avg_latency_ms":12.786523952110826,"throughput_eps":0,"last_update":"2026-03-21T14:02:39.210578306Z"} +2026/03/21 14:02:44 [transform_engine] {"stage_name":"transform_engine","events_processed":327,"events_dropped":0,"avg_latency_ms":120.40927543415904,"throughput_eps":0,"last_update":"2026-03-21T14:02:39.210589247Z"} +2026/03/21 14:02:44 ───────────────────────────────────────────────── +2026/03/21 14:02:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:02:49 [detection_layer] {"stage_name":"detection_layer","events_processed":327,"events_dropped":0,"avg_latency_ms":12.786523952110826,"throughput_eps":0,"last_update":"2026-03-21T14:02:44.21070693Z"} +2026/03/21 14:02:49 [transform_engine] {"stage_name":"transform_engine","events_processed":327,"events_dropped":0,"avg_latency_ms":120.40927543415904,"throughput_eps":0,"last_update":"2026-03-21T14:02:44.210719463Z"} +2026/03/21 14:02:49 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:02:49.068307051Z"} +2026/03/21 14:02:49 [metric_collector] {"stage_name":"metric_collector","events_processed":9834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1966.8,"last_update":"2026-03-21T14:02:44.068300889Z"} +2026/03/21 14:02:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:02:44.075459163Z"} +2026/03/21 14:02:49 ───────────────────────────────────────────────── +2026/03/21 14:02:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:02:54 [detection_layer] {"stage_name":"detection_layer","events_processed":327,"events_dropped":0,"avg_latency_ms":12.786523952110826,"throughput_eps":0,"last_update":"2026-03-21T14:02:49.210023099Z"} +2026/03/21 14:02:54 [transform_engine] {"stage_name":"transform_engine","events_processed":328,"events_dropped":0,"avg_latency_ms":107.83560974732724,"throughput_eps":0,"last_update":"2026-03-21T14:02:49.267552573Z"} +2026/03/21 14:02:54 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:02:49.068307051Z"} +2026/03/21 14:02:54 [metric_collector] {"stage_name":"metric_collector","events_processed":9839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1967.8,"last_update":"2026-03-21T14:02:49.068570486Z"} +2026/03/21 14:02:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:02:49.074778919Z"} +2026/03/21 14:02:54 ───────────────────────────────────────────────── +2026/03/21 14:02:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:02:59 [detection_layer] {"stage_name":"detection_layer","events_processed":328,"events_dropped":0,"avg_latency_ms":12.906375961688662,"throughput_eps":0,"last_update":"2026-03-21T14:02:54.209887707Z"} +2026/03/21 14:02:59 [transform_engine] {"stage_name":"transform_engine","events_processed":328,"events_dropped":0,"avg_latency_ms":107.83560974732724,"throughput_eps":0,"last_update":"2026-03-21T14:02:54.209910761Z"} +2026/03/21 14:02:59 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:02:54.068493286Z"} +2026/03/21 14:02:59 [metric_collector] {"stage_name":"metric_collector","events_processed":9844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1968.8,"last_update":"2026-03-21T14:02:54.068762952Z"} +2026/03/21 14:02:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3940,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:02:54.075656249Z"} +2026/03/21 14:02:59 ───────────────────────────────────────────────── +2026/03/21 14:03:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:03:04 [detection_layer] {"stage_name":"detection_layer","events_processed":328,"events_dropped":0,"avg_latency_ms":12.906375961688662,"throughput_eps":0,"last_update":"2026-03-21T14:02:59.210450607Z"} +2026/03/21 14:03:04 [transform_engine] {"stage_name":"transform_engine","events_processed":328,"events_dropped":0,"avg_latency_ms":107.83560974732724,"throughput_eps":0,"last_update":"2026-03-21T14:02:59.210459984Z"} +2026/03/21 14:03:04 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:02:59.068777922Z"} +2026/03/21 14:03:04 [metric_collector] {"stage_name":"metric_collector","events_processed":9849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1969.8,"last_update":"2026-03-21T14:02:59.068906438Z"} +2026/03/21 14:03:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:02:59.075242186Z"} +2026/03/21 14:03:04 ───────────────────────────────────────────────── +2026/03/21 14:03:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:03:09 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:03:04.068593824Z"} +2026/03/21 14:03:09 [metric_collector] {"stage_name":"metric_collector","events_processed":9854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1970.8,"last_update":"2026-03-21T14:03:04.068845135Z"} +2026/03/21 14:03:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:03:04.074709Z"} +2026/03/21 14:03:09 [detection_layer] {"stage_name":"detection_layer","events_processed":328,"events_dropped":0,"avg_latency_ms":12.906375961688662,"throughput_eps":0,"last_update":"2026-03-21T14:03:04.209911939Z"} +2026/03/21 14:03:09 [transform_engine] {"stage_name":"transform_engine","events_processed":328,"events_dropped":0,"avg_latency_ms":107.83560974732724,"throughput_eps":0,"last_update":"2026-03-21T14:03:04.209920424Z"} +2026/03/21 14:03:09 ───────────────────────────────────────────────── +2026/03/21 14:03:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:03:14 [metric_collector] {"stage_name":"metric_collector","events_processed":9859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1971.8,"last_update":"2026-03-21T14:03:09.06890678Z"} +2026/03/21 14:03:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:03:09.075651021Z"} +2026/03/21 14:03:14 [detection_layer] {"stage_name":"detection_layer","events_processed":328,"events_dropped":0,"avg_latency_ms":12.906375961688662,"throughput_eps":0,"last_update":"2026-03-21T14:03:09.210786761Z"} +2026/03/21 14:03:14 [transform_engine] {"stage_name":"transform_engine","events_processed":328,"events_dropped":0,"avg_latency_ms":107.83560974732724,"throughput_eps":0,"last_update":"2026-03-21T14:03:09.209696612Z"} +2026/03/21 14:03:14 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:03:09.068633417Z"} +2026/03/21 14:03:14 ───────────────────────────────────────────────── +2026/03/21 14:03:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:03:19 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:03:14.068535688Z"} +2026/03/21 14:03:19 [metric_collector] {"stage_name":"metric_collector","events_processed":9864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1972.8,"last_update":"2026-03-21T14:03:14.068744849Z"} +2026/03/21 14:03:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:03:14.075012836Z"} +2026/03/21 14:03:19 [detection_layer] {"stage_name":"detection_layer","events_processed":328,"events_dropped":0,"avg_latency_ms":12.906375961688662,"throughput_eps":0,"last_update":"2026-03-21T14:03:14.21022398Z"} +2026/03/21 14:03:19 [transform_engine] {"stage_name":"transform_engine","events_processed":328,"events_dropped":0,"avg_latency_ms":107.83560974732724,"throughput_eps":0,"last_update":"2026-03-21T14:03:14.210233458Z"} +2026/03/21 14:03:19 ───────────────────────────────────────────────── +2026/03/21 14:03:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:03:24 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:03:19.068058244Z"} +2026/03/21 14:03:24 [metric_collector] {"stage_name":"metric_collector","events_processed":9869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1973.8,"last_update":"2026-03-21T14:03:19.068329053Z"} +2026/03/21 14:03:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:03:19.075509719Z"} +2026/03/21 14:03:24 [detection_layer] {"stage_name":"detection_layer","events_processed":328,"events_dropped":0,"avg_latency_ms":12.906375961688662,"throughput_eps":0,"last_update":"2026-03-21T14:03:19.210754106Z"} +2026/03/21 14:03:24 [transform_engine] {"stage_name":"transform_engine","events_processed":329,"events_dropped":0,"avg_latency_ms":98.8565355978618,"throughput_eps":0,"last_update":"2026-03-21T14:03:19.272613163Z"} +2026/03/21 14:03:24 ───────────────────────────────────────────────── +2026/03/21 14:03:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:03:29 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:03:24.06855411Z"} +2026/03/21 14:03:29 [metric_collector] {"stage_name":"metric_collector","events_processed":9874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1974.8,"last_update":"2026-03-21T14:03:24.068975588Z"} +2026/03/21 14:03:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:03:24.075401287Z"} +2026/03/21 14:03:29 [detection_layer] {"stage_name":"detection_layer","events_processed":329,"events_dropped":0,"avg_latency_ms":12.97609316935093,"throughput_eps":0,"last_update":"2026-03-21T14:03:24.210636367Z"} +2026/03/21 14:03:29 [transform_engine] {"stage_name":"transform_engine","events_processed":329,"events_dropped":0,"avg_latency_ms":98.8565355978618,"throughput_eps":0,"last_update":"2026-03-21T14:03:24.210647808Z"} +2026/03/21 14:03:29 ───────────────────────────────────────────────── +2026/03/21 14:03:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:03:34 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:03:34.068173537Z"} +2026/03/21 14:03:34 [metric_collector] {"stage_name":"metric_collector","events_processed":9879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1975.8,"last_update":"2026-03-21T14:03:29.068768158Z"} +2026/03/21 14:03:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:03:29.076621643Z"} +2026/03/21 14:03:34 [detection_layer] {"stage_name":"detection_layer","events_processed":329,"events_dropped":0,"avg_latency_ms":12.97609316935093,"throughput_eps":0,"last_update":"2026-03-21T14:03:29.210788905Z"} +2026/03/21 14:03:34 [transform_engine] {"stage_name":"transform_engine","events_processed":329,"events_dropped":0,"avg_latency_ms":98.8565355978618,"throughput_eps":0,"last_update":"2026-03-21T14:03:29.209698727Z"} +2026/03/21 14:03:34 ───────────────────────────────────────────────── +2026/03/21 14:03:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:03:39 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:03:34.068173537Z"} +2026/03/21 14:03:39 [metric_collector] {"stage_name":"metric_collector","events_processed":9884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1976.8,"last_update":"2026-03-21T14:03:34.068468653Z"} +2026/03/21 14:03:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:03:34.075428025Z"} +2026/03/21 14:03:39 [detection_layer] {"stage_name":"detection_layer","events_processed":329,"events_dropped":0,"avg_latency_ms":12.97609316935093,"throughput_eps":0,"last_update":"2026-03-21T14:03:34.210647112Z"} +2026/03/21 14:03:39 [transform_engine] {"stage_name":"transform_engine","events_processed":329,"events_dropped":0,"avg_latency_ms":98.8565355978618,"throughput_eps":0,"last_update":"2026-03-21T14:03:34.210656089Z"} +2026/03/21 14:03:39 ───────────────────────────────────────────────── +Saved state: 16 clusters, 15618 messages, reason: none +2026/03/21 14:03:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:03:44 [detection_layer] {"stage_name":"detection_layer","events_processed":329,"events_dropped":0,"avg_latency_ms":12.97609316935093,"throughput_eps":0,"last_update":"2026-03-21T14:03:39.210151272Z"} +2026/03/21 14:03:44 [transform_engine] {"stage_name":"transform_engine","events_processed":329,"events_dropped":0,"avg_latency_ms":98.8565355978618,"throughput_eps":0,"last_update":"2026-03-21T14:03:39.210161232Z"} +2026/03/21 14:03:44 [log_collector] {"stage_name":"log_collector","events_processed":15617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.4,"last_update":"2026-03-21T14:03:39.068745955Z"} +2026/03/21 14:03:44 [metric_collector] {"stage_name":"metric_collector","events_processed":9889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1977.8,"last_update":"2026-03-21T14:03:39.068959744Z"} +2026/03/21 14:03:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3958,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:03:39.074932006Z"} +2026/03/21 14:03:44 ───────────────────────────────────────────────── +2026/03/21 14:03:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:03:49 [detection_layer] {"stage_name":"detection_layer","events_processed":329,"events_dropped":0,"avg_latency_ms":12.97609316935093,"throughput_eps":0,"last_update":"2026-03-21T14:03:44.210135942Z"} +2026/03/21 14:03:49 [transform_engine] {"stage_name":"transform_engine","events_processed":329,"events_dropped":0,"avg_latency_ms":98.8565355978618,"throughput_eps":0,"last_update":"2026-03-21T14:03:44.210151703Z"} +2026/03/21 14:03:49 [log_collector] {"stage_name":"log_collector","events_processed":15627,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3125.4,"last_update":"2026-03-21T14:03:44.068123261Z"} +2026/03/21 14:03:49 [metric_collector] {"stage_name":"metric_collector","events_processed":9893,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1978.6,"last_update":"2026-03-21T14:03:44.068004954Z"} +2026/03/21 14:03:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:03:44.077883008Z"} +2026/03/21 14:03:49 ───────────────────────────────────────────────── +2026/03/21 14:03:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:03:54 [metric_collector] {"stage_name":"metric_collector","events_processed":9899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1979.8,"last_update":"2026-03-21T14:03:49.068601009Z"} +2026/03/21 14:03:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3962,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:03:49.07511109Z"} +2026/03/21 14:03:54 [detection_layer] {"stage_name":"detection_layer","events_processed":329,"events_dropped":0,"avg_latency_ms":12.97609316935093,"throughput_eps":0,"last_update":"2026-03-21T14:03:49.210368439Z"} +2026/03/21 14:03:54 [transform_engine] {"stage_name":"transform_engine","events_processed":330,"events_dropped":0,"avg_latency_ms":99.43070927828944,"throughput_eps":0,"last_update":"2026-03-21T14:03:49.312093919Z"} +2026/03/21 14:03:54 [log_collector] {"stage_name":"log_collector","events_processed":15628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3125.6,"last_update":"2026-03-21T14:03:49.068222332Z"} +2026/03/21 14:03:54 ───────────────────────────────────────────────── +2026/03/21 14:03:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:03:59 [transform_engine] {"stage_name":"transform_engine","events_processed":330,"events_dropped":0,"avg_latency_ms":99.43070927828944,"throughput_eps":0,"last_update":"2026-03-21T14:03:54.210706429Z"} +2026/03/21 14:03:59 [log_collector] {"stage_name":"log_collector","events_processed":15628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3125.6,"last_update":"2026-03-21T14:03:54.068942025Z"} +2026/03/21 14:03:59 [metric_collector] {"stage_name":"metric_collector","events_processed":9904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1980.8,"last_update":"2026-03-21T14:03:54.069191653Z"} +2026/03/21 14:03:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:03:54.075444241Z"} +2026/03/21 14:03:59 [detection_layer] {"stage_name":"detection_layer","events_processed":330,"events_dropped":0,"avg_latency_ms":13.376308935480745,"throughput_eps":0,"last_update":"2026-03-21T14:03:54.210693704Z"} +2026/03/21 14:03:59 ───────────────────────────────────────────────── +2026/03/21 14:04:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:04:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:03:59.077184581Z"} +2026/03/21 14:04:04 [detection_layer] {"stage_name":"detection_layer","events_processed":330,"events_dropped":0,"avg_latency_ms":13.376308935480745,"throughput_eps":0,"last_update":"2026-03-21T14:03:59.210438871Z"} +2026/03/21 14:04:04 [transform_engine] {"stage_name":"transform_engine","events_processed":330,"events_dropped":0,"avg_latency_ms":99.43070927828944,"throughput_eps":0,"last_update":"2026-03-21T14:03:59.210451706Z"} +2026/03/21 14:04:04 [log_collector] {"stage_name":"log_collector","events_processed":15630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3126,"last_update":"2026-03-21T14:03:59.068213574Z"} +2026/03/21 14:04:04 [metric_collector] {"stage_name":"metric_collector","events_processed":9909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1981.8,"last_update":"2026-03-21T14:03:59.068591298Z"} +2026/03/21 14:04:04 ───────────────────────────────────────────────── +2026/03/21 14:04:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:04:09 [log_collector] {"stage_name":"log_collector","events_processed":15635,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3127,"last_update":"2026-03-21T14:04:04.068528114Z"} +2026/03/21 14:04:09 [metric_collector] {"stage_name":"metric_collector","events_processed":9914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1982.8,"last_update":"2026-03-21T14:04:04.068793032Z"} +2026/03/21 14:04:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:04:04.075580174Z"} +2026/03/21 14:04:09 [detection_layer] {"stage_name":"detection_layer","events_processed":330,"events_dropped":0,"avg_latency_ms":13.376308935480745,"throughput_eps":0,"last_update":"2026-03-21T14:04:04.210850216Z"} +2026/03/21 14:04:09 [transform_engine] {"stage_name":"transform_engine","events_processed":330,"events_dropped":0,"avg_latency_ms":99.43070927828944,"throughput_eps":0,"last_update":"2026-03-21T14:04:04.209738115Z"} +2026/03/21 14:04:09 ───────────────────────────────────────────────── +2026/03/21 14:04:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:04:14 [log_collector] {"stage_name":"log_collector","events_processed":15638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3127.6,"last_update":"2026-03-21T14:04:09.068265326Z"} +2026/03/21 14:04:14 [metric_collector] {"stage_name":"metric_collector","events_processed":9919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1983.8,"last_update":"2026-03-21T14:04:09.06840307Z"} +2026/03/21 14:04:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3970,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:04:09.077140669Z"} +2026/03/21 14:04:14 [detection_layer] {"stage_name":"detection_layer","events_processed":330,"events_dropped":0,"avg_latency_ms":13.376308935480745,"throughput_eps":0,"last_update":"2026-03-21T14:04:09.210339702Z"} +2026/03/21 14:04:14 [transform_engine] {"stage_name":"transform_engine","events_processed":330,"events_dropped":0,"avg_latency_ms":99.43070927828944,"throughput_eps":0,"last_update":"2026-03-21T14:04:09.210361114Z"} +2026/03/21 14:04:14 ───────────────────────────────────────────────── +2026/03/21 14:04:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:04:19 [log_collector] {"stage_name":"log_collector","events_processed":15648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3129.6,"last_update":"2026-03-21T14:04:14.06867111Z"} +2026/03/21 14:04:19 [metric_collector] {"stage_name":"metric_collector","events_processed":9924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1984.8,"last_update":"2026-03-21T14:04:14.068927892Z"} +2026/03/21 14:04:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:04:14.075348643Z"} +2026/03/21 14:04:19 [detection_layer] {"stage_name":"detection_layer","events_processed":330,"events_dropped":0,"avg_latency_ms":13.376308935480745,"throughput_eps":0,"last_update":"2026-03-21T14:04:14.210609646Z"} +2026/03/21 14:04:19 [transform_engine] {"stage_name":"transform_engine","events_processed":330,"events_dropped":0,"avg_latency_ms":99.43070927828944,"throughput_eps":0,"last_update":"2026-03-21T14:04:14.210620527Z"} +2026/03/21 14:04:19 ───────────────────────────────────────────────── +2026/03/21 14:04:19 [ANOMALY] time=2026-03-21T14:04:19Z score=0.9121 method=SEAD details=MAD!:w=0.27,s=0.96 RRCF-fast:w=0.18,s=0.72 RRCF-mid!:w=0.15,s=0.92 RRCF-slow!:w=0.11,s=0.94 COPOD!:w=0.30,s=0.98 +2026/03/21 14:04:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:04:24 [detection_layer] {"stage_name":"detection_layer","events_processed":330,"events_dropped":0,"avg_latency_ms":13.376308935480745,"throughput_eps":0,"last_update":"2026-03-21T14:04:19.209886462Z"} +2026/03/21 14:04:24 [transform_engine] {"stage_name":"transform_engine","events_processed":331,"events_dropped":0,"avg_latency_ms":121.67076962263155,"throughput_eps":0,"last_update":"2026-03-21T14:04:19.420528634Z"} +2026/03/21 14:04:24 [log_collector] {"stage_name":"log_collector","events_processed":15661,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3132.2,"last_update":"2026-03-21T14:04:19.068647566Z"} +2026/03/21 14:04:24 [metric_collector] {"stage_name":"metric_collector","events_processed":9929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1985.8,"last_update":"2026-03-21T14:04:19.068929917Z"} +2026/03/21 14:04:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:04:19.075654359Z"} +2026/03/21 14:04:24 ───────────────────────────────────────────────── +2026/03/21 14:04:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:04:29 [transform_engine] {"stage_name":"transform_engine","events_processed":331,"events_dropped":0,"avg_latency_ms":121.67076962263155,"throughput_eps":0,"last_update":"2026-03-21T14:04:24.210611586Z"} +2026/03/21 14:04:29 [log_collector] {"stage_name":"log_collector","events_processed":15672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3134.4,"last_update":"2026-03-21T14:04:24.068269617Z"} +2026/03/21 14:04:29 [metric_collector] {"stage_name":"metric_collector","events_processed":9934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1986.8,"last_update":"2026-03-21T14:04:24.068712976Z"} +2026/03/21 14:04:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:04:24.077290247Z"} +2026/03/21 14:04:29 [detection_layer] {"stage_name":"detection_layer","events_processed":331,"events_dropped":0,"avg_latency_ms":14.603939948384596,"throughput_eps":0,"last_update":"2026-03-21T14:04:24.210651391Z"} +2026/03/21 14:04:29 ───────────────────────────────────────────────── +2026/03/21 14:04:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:04:34 [transform_engine] {"stage_name":"transform_engine","events_processed":331,"events_dropped":0,"avg_latency_ms":121.67076962263155,"throughput_eps":0,"last_update":"2026-03-21T14:04:29.210548543Z"} +2026/03/21 14:04:34 [log_collector] {"stage_name":"log_collector","events_processed":15672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3134.4,"last_update":"2026-03-21T14:04:29.068206004Z"} +2026/03/21 14:04:34 [metric_collector] {"stage_name":"metric_collector","events_processed":9939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1987.8,"last_update":"2026-03-21T14:04:29.068802487Z"} +2026/03/21 14:04:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:04:29.079186911Z"} +2026/03/21 14:04:34 [detection_layer] {"stage_name":"detection_layer","events_processed":331,"events_dropped":0,"avg_latency_ms":14.603939948384596,"throughput_eps":0,"last_update":"2026-03-21T14:04:29.2105992Z"} +2026/03/21 14:04:34 ───────────────────────────────────────────────── +2026/03/21 14:04:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:04:39 [log_collector] {"stage_name":"log_collector","events_processed":15672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3134.4,"last_update":"2026-03-21T14:04:39.068306017Z"} +2026/03/21 14:04:39 [metric_collector] {"stage_name":"metric_collector","events_processed":9944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1988.8,"last_update":"2026-03-21T14:04:34.069435102Z"} +2026/03/21 14:04:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:04:34.078297069Z"} +2026/03/21 14:04:39 [detection_layer] {"stage_name":"detection_layer","events_processed":331,"events_dropped":0,"avg_latency_ms":14.603939948384596,"throughput_eps":0,"last_update":"2026-03-21T14:04:34.210509401Z"} +2026/03/21 14:04:39 [transform_engine] {"stage_name":"transform_engine","events_processed":331,"events_dropped":0,"avg_latency_ms":121.67076962263155,"throughput_eps":0,"last_update":"2026-03-21T14:04:34.210531683Z"} +2026/03/21 14:04:39 ───────────────────────────────────────────────── +2026/03/21 14:04:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:04:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:04:39.079016125Z"} +2026/03/21 14:04:44 [detection_layer] {"stage_name":"detection_layer","events_processed":331,"events_dropped":0,"avg_latency_ms":14.603939948384596,"throughput_eps":0,"last_update":"2026-03-21T14:04:39.210216287Z"} +2026/03/21 14:04:44 [transform_engine] {"stage_name":"transform_engine","events_processed":331,"events_dropped":0,"avg_latency_ms":121.67076962263155,"throughput_eps":0,"last_update":"2026-03-21T14:04:39.210320887Z"} +2026/03/21 14:04:44 [log_collector] {"stage_name":"log_collector","events_processed":15672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3134.4,"last_update":"2026-03-21T14:04:39.068306017Z"} +2026/03/21 14:04:44 [metric_collector] {"stage_name":"metric_collector","events_processed":9949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1989.8,"last_update":"2026-03-21T14:04:39.068894334Z"} +2026/03/21 14:04:44 ───────────────────────────────────────────────── +2026/03/21 14:04:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:04:49 [detection_layer] {"stage_name":"detection_layer","events_processed":331,"events_dropped":0,"avg_latency_ms":14.603939948384596,"throughput_eps":0,"last_update":"2026-03-21T14:04:44.210560849Z"} +2026/03/21 14:04:49 [transform_engine] {"stage_name":"transform_engine","events_processed":331,"events_dropped":0,"avg_latency_ms":121.67076962263155,"throughput_eps":0,"last_update":"2026-03-21T14:04:44.21066583Z"} +2026/03/21 14:04:49 [log_collector] {"stage_name":"log_collector","events_processed":15672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3134.4,"last_update":"2026-03-21T14:04:44.068739289Z"} +2026/03/21 14:04:49 [metric_collector] {"stage_name":"metric_collector","events_processed":9954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1990.8,"last_update":"2026-03-21T14:04:44.06891197Z"} +2026/03/21 14:04:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:04:44.077412495Z"} +2026/03/21 14:04:49 ───────────────────────────────────────────────── +2026/03/21 14:04:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:04:54 [log_collector] {"stage_name":"log_collector","events_processed":15672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3134.4,"last_update":"2026-03-21T14:04:49.068735871Z"} +2026/03/21 14:04:54 [metric_collector] {"stage_name":"metric_collector","events_processed":9959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1991.8,"last_update":"2026-03-21T14:04:49.069067667Z"} +2026/03/21 14:04:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:04:49.07767219Z"} +2026/03/21 14:04:54 [detection_layer] {"stage_name":"detection_layer","events_processed":331,"events_dropped":0,"avg_latency_ms":14.603939948384596,"throughput_eps":0,"last_update":"2026-03-21T14:04:49.209869482Z"} +2026/03/21 14:04:54 [transform_engine] {"stage_name":"transform_engine","events_processed":332,"events_dropped":0,"avg_latency_ms":129.01152169810524,"throughput_eps":0,"last_update":"2026-03-21T14:04:49.368525832Z"} +2026/03/21 14:04:54 ───────────────────────────────────────────────── +2026/03/21 14:04:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:04:59 [log_collector] {"stage_name":"log_collector","events_processed":15672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3134.4,"last_update":"2026-03-21T14:04:59.068261334Z"} +2026/03/21 14:04:59 [metric_collector] {"stage_name":"metric_collector","events_processed":9964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1992.8,"last_update":"2026-03-21T14:04:54.069231373Z"} +2026/03/21 14:04:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:04:54.079002793Z"} +2026/03/21 14:04:59 [detection_layer] {"stage_name":"detection_layer","events_processed":332,"events_dropped":0,"avg_latency_ms":15.240959758707678,"throughput_eps":0,"last_update":"2026-03-21T14:04:54.210244322Z"} +2026/03/21 14:04:59 [transform_engine] {"stage_name":"transform_engine","events_processed":332,"events_dropped":0,"avg_latency_ms":129.01152169810524,"throughput_eps":0,"last_update":"2026-03-21T14:04:54.210344594Z"} +2026/03/21 14:04:59 ───────────────────────────────────────────────── +2026/03/21 14:05:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:05:04 [detection_layer] {"stage_name":"detection_layer","events_processed":332,"events_dropped":0,"avg_latency_ms":15.240959758707678,"throughput_eps":0,"last_update":"2026-03-21T14:04:59.209874673Z"} +2026/03/21 14:05:04 [transform_engine] {"stage_name":"transform_engine","events_processed":332,"events_dropped":0,"avg_latency_ms":129.01152169810524,"throughput_eps":0,"last_update":"2026-03-21T14:04:59.20963819Z"} +2026/03/21 14:05:04 [log_collector] {"stage_name":"log_collector","events_processed":15672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3134.4,"last_update":"2026-03-21T14:04:59.068261334Z"} +2026/03/21 14:05:04 [metric_collector] {"stage_name":"metric_collector","events_processed":9969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1993.8,"last_update":"2026-03-21T14:04:59.069025578Z"} +2026/03/21 14:05:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3990,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:04:59.077392727Z"} +2026/03/21 14:05:04 ───────────────────────────────────────────────── +2026/03/21 14:05:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:05:09 [transform_engine] {"stage_name":"transform_engine","events_processed":332,"events_dropped":0,"avg_latency_ms":129.01152169810524,"throughput_eps":0,"last_update":"2026-03-21T14:05:04.210415732Z"} +2026/03/21 14:05:09 [log_collector] {"stage_name":"log_collector","events_processed":15672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3134.4,"last_update":"2026-03-21T14:05:04.068622819Z"} +2026/03/21 14:05:09 [metric_collector] {"stage_name":"metric_collector","events_processed":9974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1994.8,"last_update":"2026-03-21T14:05:04.068932652Z"} +2026/03/21 14:05:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3992,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:05:04.078008589Z"} +2026/03/21 14:05:09 [detection_layer] {"stage_name":"detection_layer","events_processed":332,"events_dropped":0,"avg_latency_ms":15.240959758707678,"throughput_eps":0,"last_update":"2026-03-21T14:05:04.210447652Z"} +2026/03/21 14:05:09 ───────────────────────────────────────────────── +2026/03/21 14:05:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:05:14 [log_collector] {"stage_name":"log_collector","events_processed":15672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3134.4,"last_update":"2026-03-21T14:05:14.068476543Z"} +2026/03/21 14:05:14 [metric_collector] {"stage_name":"metric_collector","events_processed":9979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1995.8,"last_update":"2026-03-21T14:05:09.068638899Z"} +2026/03/21 14:05:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:05:09.077433046Z"} +2026/03/21 14:05:14 [detection_layer] {"stage_name":"detection_layer","events_processed":332,"events_dropped":0,"avg_latency_ms":15.240959758707678,"throughput_eps":0,"last_update":"2026-03-21T14:05:09.210738388Z"} +2026/03/21 14:05:14 [transform_engine] {"stage_name":"transform_engine","events_processed":332,"events_dropped":0,"avg_latency_ms":129.01152169810524,"throughput_eps":0,"last_update":"2026-03-21T14:05:09.209659632Z"} +2026/03/21 14:05:14 ───────────────────────────────────────────────── +2026/03/21 14:05:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:05:19 [log_collector] {"stage_name":"log_collector","events_processed":15672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3134.4,"last_update":"2026-03-21T14:05:14.068476543Z"} +2026/03/21 14:05:19 [metric_collector] {"stage_name":"metric_collector","events_processed":9984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1996.8,"last_update":"2026-03-21T14:05:14.06886681Z"} +2026/03/21 14:05:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3996,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:05:14.077920715Z"} +2026/03/21 14:05:19 [detection_layer] {"stage_name":"detection_layer","events_processed":332,"events_dropped":0,"avg_latency_ms":15.240959758707678,"throughput_eps":0,"last_update":"2026-03-21T14:05:14.210179883Z"} +2026/03/21 14:05:19 [transform_engine] {"stage_name":"transform_engine","events_processed":332,"events_dropped":0,"avg_latency_ms":129.01152169810524,"throughput_eps":0,"last_update":"2026-03-21T14:05:14.210155597Z"} +2026/03/21 14:05:19 ───────────────────────────────────────────────── +Saved state: 16 clusters, 15673 messages, reason: none +2026/03/21 14:05:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:05:24 [log_collector] {"stage_name":"log_collector","events_processed":15672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3134.4,"last_update":"2026-03-21T14:05:19.068391212Z"} +2026/03/21 14:05:24 [metric_collector] {"stage_name":"metric_collector","events_processed":9989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1997.8,"last_update":"2026-03-21T14:05:19.068781189Z"} +2026/03/21 14:05:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:05:19.078342485Z"} +2026/03/21 14:05:24 [detection_layer] {"stage_name":"detection_layer","events_processed":332,"events_dropped":0,"avg_latency_ms":15.240959758707678,"throughput_eps":0,"last_update":"2026-03-21T14:05:19.210763082Z"} +2026/03/21 14:05:24 [transform_engine] {"stage_name":"transform_engine","events_processed":333,"events_dropped":0,"avg_latency_ms":117.0995229584842,"throughput_eps":0,"last_update":"2026-03-21T14:05:19.280176767Z"} +2026/03/21 14:05:24 ───────────────────────────────────────────────── +2026/03/21 14:05:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:05:29 [log_collector] {"stage_name":"log_collector","events_processed":15677,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3135.4,"last_update":"2026-03-21T14:05:24.068851078Z"} +2026/03/21 14:05:29 [metric_collector] {"stage_name":"metric_collector","events_processed":9994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1998.8,"last_update":"2026-03-21T14:05:24.069081639Z"} +2026/03/21 14:05:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:05:24.080476639Z"} +2026/03/21 14:05:29 [detection_layer] {"stage_name":"detection_layer","events_processed":333,"events_dropped":0,"avg_latency_ms":15.894719606966143,"throughput_eps":0,"last_update":"2026-03-21T14:05:24.2106807Z"} +2026/03/21 14:05:29 [transform_engine] {"stage_name":"transform_engine","events_processed":333,"events_dropped":0,"avg_latency_ms":117.0995229584842,"throughput_eps":0,"last_update":"2026-03-21T14:05:24.210700708Z"} +2026/03/21 14:05:29 ───────────────────────────────────────────────── +2026/03/21 14:05:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:05:34 [detection_layer] {"stage_name":"detection_layer","events_processed":333,"events_dropped":0,"avg_latency_ms":15.894719606966143,"throughput_eps":0,"last_update":"2026-03-21T14:05:29.210406668Z"} +2026/03/21 14:05:34 [transform_engine] {"stage_name":"transform_engine","events_processed":333,"events_dropped":0,"avg_latency_ms":117.0995229584842,"throughput_eps":0,"last_update":"2026-03-21T14:05:29.210481201Z"} +2026/03/21 14:05:34 [log_collector] {"stage_name":"log_collector","events_processed":15677,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3135.4,"last_update":"2026-03-21T14:05:29.068724409Z"} +2026/03/21 14:05:34 [metric_collector] {"stage_name":"metric_collector","events_processed":9999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1999.8,"last_update":"2026-03-21T14:05:29.069026026Z"} +2026/03/21 14:05:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:05:29.076056054Z"} +2026/03/21 14:05:34 ───────────────────────────────────────────────── +2026/03/21 14:05:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:05:39 [log_collector] {"stage_name":"log_collector","events_processed":15677,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3135.4,"last_update":"2026-03-21T14:05:34.068653643Z"} +2026/03/21 14:05:39 [metric_collector] {"stage_name":"metric_collector","events_processed":10004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2000.8,"last_update":"2026-03-21T14:05:34.068899725Z"} +2026/03/21 14:05:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:05:34.075228459Z"} +2026/03/21 14:05:39 [detection_layer] {"stage_name":"detection_layer","events_processed":333,"events_dropped":0,"avg_latency_ms":15.894719606966143,"throughput_eps":0,"last_update":"2026-03-21T14:05:34.211299608Z"} +2026/03/21 14:05:39 [transform_engine] {"stage_name":"transform_engine","events_processed":333,"events_dropped":0,"avg_latency_ms":117.0995229584842,"throughput_eps":0,"last_update":"2026-03-21T14:05:34.211319516Z"} +2026/03/21 14:05:39 ───────────────────────────────────────────────── +2026/03/21 14:05:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:05:44 [log_collector] {"stage_name":"log_collector","events_processed":15677,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3135.4,"last_update":"2026-03-21T14:05:39.068641906Z"} +2026/03/21 14:05:44 [metric_collector] {"stage_name":"metric_collector","events_processed":10009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2001.8,"last_update":"2026-03-21T14:05:39.068980706Z"} +2026/03/21 14:05:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4006,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:05:39.076429525Z"} +2026/03/21 14:05:44 [detection_layer] {"stage_name":"detection_layer","events_processed":333,"events_dropped":0,"avg_latency_ms":15.894719606966143,"throughput_eps":0,"last_update":"2026-03-21T14:05:39.210638967Z"} +2026/03/21 14:05:44 [transform_engine] {"stage_name":"transform_engine","events_processed":333,"events_dropped":0,"avg_latency_ms":117.0995229584842,"throughput_eps":0,"last_update":"2026-03-21T14:05:39.210649868Z"} +2026/03/21 14:05:44 ───────────────────────────────────────────────── +2026/03/21 14:05:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:05:49 [detection_layer] {"stage_name":"detection_layer","events_processed":333,"events_dropped":0,"avg_latency_ms":15.894719606966143,"throughput_eps":0,"last_update":"2026-03-21T14:05:44.210037268Z"} +2026/03/21 14:05:49 [transform_engine] {"stage_name":"transform_engine","events_processed":333,"events_dropped":0,"avg_latency_ms":117.0995229584842,"throughput_eps":0,"last_update":"2026-03-21T14:05:44.210053629Z"} +2026/03/21 14:05:49 [log_collector] {"stage_name":"log_collector","events_processed":15677,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3135.4,"last_update":"2026-03-21T14:05:44.068440644Z"} +2026/03/21 14:05:49 [metric_collector] {"stage_name":"metric_collector","events_processed":10014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2002.8,"last_update":"2026-03-21T14:05:44.06837557Z"} +2026/03/21 14:05:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4008,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:05:44.075825372Z"} +2026/03/21 14:05:49 ───────────────────────────────────────────────── +2026/03/21 14:05:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:05:54 [transform_engine] {"stage_name":"transform_engine","events_processed":334,"events_dropped":0,"avg_latency_ms":249.43948596678737,"throughput_eps":0,"last_update":"2026-03-21T14:05:49.988732315Z"} +2026/03/21 14:05:54 [log_collector] {"stage_name":"log_collector","events_processed":15677,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3135.4,"last_update":"2026-03-21T14:05:49.068650686Z"} +2026/03/21 14:05:54 [metric_collector] {"stage_name":"metric_collector","events_processed":10019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2003.8,"last_update":"2026-03-21T14:05:49.068946884Z"} +2026/03/21 14:05:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:05:49.076599924Z"} +2026/03/21 14:05:54 [detection_layer] {"stage_name":"detection_layer","events_processed":333,"events_dropped":0,"avg_latency_ms":15.894719606966143,"throughput_eps":0,"last_update":"2026-03-21T14:05:49.209963816Z"} +2026/03/21 14:05:54 ───────────────────────────────────────────────── +2026/03/21 14:05:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:05:59 [log_collector] {"stage_name":"log_collector","events_processed":15677,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3135.4,"last_update":"2026-03-21T14:05:54.06883712Z"} +2026/03/21 14:05:59 [metric_collector] {"stage_name":"metric_collector","events_processed":10024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2004.8,"last_update":"2026-03-21T14:05:54.068827301Z"} +2026/03/21 14:05:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4012,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:05:54.075237651Z"} +2026/03/21 14:05:59 [detection_layer] {"stage_name":"detection_layer","events_processed":334,"events_dropped":0,"avg_latency_ms":15.589416485572915,"throughput_eps":0,"last_update":"2026-03-21T14:05:54.21054665Z"} +2026/03/21 14:05:59 [transform_engine] {"stage_name":"transform_engine","events_processed":334,"events_dropped":0,"avg_latency_ms":249.43948596678737,"throughput_eps":0,"last_update":"2026-03-21T14:05:54.210518806Z"} +2026/03/21 14:05:59 ───────────────────────────────────────────────── +2026/03/21 14:06:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:06:04 [metric_collector] {"stage_name":"metric_collector","events_processed":10029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2005.8,"last_update":"2026-03-21T14:05:59.068376181Z"} +2026/03/21 14:06:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:05:59.074983158Z"} +2026/03/21 14:06:04 [detection_layer] {"stage_name":"detection_layer","events_processed":334,"events_dropped":0,"avg_latency_ms":15.589416485572915,"throughput_eps":0,"last_update":"2026-03-21T14:05:59.21023713Z"} +2026/03/21 14:06:04 [transform_engine] {"stage_name":"transform_engine","events_processed":334,"events_dropped":0,"avg_latency_ms":249.43948596678737,"throughput_eps":0,"last_update":"2026-03-21T14:05:59.210267018Z"} +2026/03/21 14:06:04 [log_collector] {"stage_name":"log_collector","events_processed":15677,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3135.4,"last_update":"2026-03-21T14:05:59.068095033Z"} +2026/03/21 14:06:04 ───────────────────────────────────────────────── +2026/03/21 14:06:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:06:09 [log_collector] {"stage_name":"log_collector","events_processed":15688,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3137.6,"last_update":"2026-03-21T14:06:09.068175768Z"} +2026/03/21 14:06:09 [metric_collector] {"stage_name":"metric_collector","events_processed":10034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2006.8,"last_update":"2026-03-21T14:06:04.06880258Z"} +2026/03/21 14:06:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:06:04.076013484Z"} +2026/03/21 14:06:09 [detection_layer] {"stage_name":"detection_layer","events_processed":334,"events_dropped":0,"avg_latency_ms":15.589416485572915,"throughput_eps":0,"last_update":"2026-03-21T14:06:04.210240548Z"} +2026/03/21 14:06:09 [transform_engine] {"stage_name":"transform_engine","events_processed":334,"events_dropped":0,"avg_latency_ms":249.43948596678737,"throughput_eps":0,"last_update":"2026-03-21T14:06:04.210256759Z"} +2026/03/21 14:06:09 ───────────────────────────────────────────────── +2026/03/21 14:06:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:06:14 [log_collector] {"stage_name":"log_collector","events_processed":15688,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3137.6,"last_update":"2026-03-21T14:06:09.068175768Z"} +2026/03/21 14:06:14 [metric_collector] {"stage_name":"metric_collector","events_processed":10039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2007.8,"last_update":"2026-03-21T14:06:09.069008593Z"} +2026/03/21 14:06:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4018,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:06:09.07727058Z"} +2026/03/21 14:06:14 [detection_layer] {"stage_name":"detection_layer","events_processed":334,"events_dropped":0,"avg_latency_ms":15.589416485572915,"throughput_eps":0,"last_update":"2026-03-21T14:06:09.210703614Z"} +2026/03/21 14:06:14 [transform_engine] {"stage_name":"transform_engine","events_processed":334,"events_dropped":0,"avg_latency_ms":249.43948596678737,"throughput_eps":0,"last_update":"2026-03-21T14:06:09.210719233Z"} +2026/03/21 14:06:14 ───────────────────────────────────────────────── +2026/03/21 14:06:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:06:19 [log_collector] {"stage_name":"log_collector","events_processed":15693,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3138.6,"last_update":"2026-03-21T14:06:14.069205535Z"} +2026/03/21 14:06:19 [metric_collector] {"stage_name":"metric_collector","events_processed":10044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2008.8,"last_update":"2026-03-21T14:06:14.069068093Z"} +2026/03/21 14:06:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4020,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:06:14.07686078Z"} +2026/03/21 14:06:19 [detection_layer] {"stage_name":"detection_layer","events_processed":334,"events_dropped":0,"avg_latency_ms":15.589416485572915,"throughput_eps":0,"last_update":"2026-03-21T14:06:14.210257714Z"} +2026/03/21 14:06:19 [transform_engine] {"stage_name":"transform_engine","events_processed":334,"events_dropped":0,"avg_latency_ms":249.43948596678737,"throughput_eps":0,"last_update":"2026-03-21T14:06:14.210265699Z"} +2026/03/21 14:06:19 ───────────────────────────────────────────────── +2026/03/21 14:06:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:06:24 [log_collector] {"stage_name":"log_collector","events_processed":16033,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3206.6,"last_update":"2026-03-21T14:06:19.068825561Z"} +2026/03/21 14:06:24 [metric_collector] {"stage_name":"metric_collector","events_processed":10049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2009.8,"last_update":"2026-03-21T14:06:19.069194448Z"} +2026/03/21 14:06:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4022,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:06:19.076157156Z"} +2026/03/21 14:06:24 [detection_layer] {"stage_name":"detection_layer","events_processed":334,"events_dropped":0,"avg_latency_ms":15.589416485572915,"throughput_eps":0,"last_update":"2026-03-21T14:06:19.210764428Z"} +2026/03/21 14:06:24 [transform_engine] {"stage_name":"transform_engine","events_processed":335,"events_dropped":0,"avg_latency_ms":228.0440405734299,"throughput_eps":0,"last_update":"2026-03-21T14:06:19.352138141Z"} +2026/03/21 14:06:24 ───────────────────────────────────────────────── +Saved state: 16 clusters, 16042 messages, reason: none +2026/03/21 14:06:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:06:29 [log_collector] {"stage_name":"log_collector","events_processed":16041,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208.2,"last_update":"2026-03-21T14:06:24.068161568Z"} +2026/03/21 14:06:29 [metric_collector] {"stage_name":"metric_collector","events_processed":10054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2010.8,"last_update":"2026-03-21T14:06:24.068638001Z"} +2026/03/21 14:06:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:06:24.077669843Z"} +2026/03/21 14:06:29 [detection_layer] {"stage_name":"detection_layer","events_processed":335,"events_dropped":0,"avg_latency_ms":14.905722188458332,"throughput_eps":0,"last_update":"2026-03-21T14:06:24.210030892Z"} +2026/03/21 14:06:29 [transform_engine] {"stage_name":"transform_engine","events_processed":335,"events_dropped":0,"avg_latency_ms":228.0440405734299,"throughput_eps":0,"last_update":"2026-03-21T14:06:24.210148136Z"} +2026/03/21 14:06:29 ───────────────────────────────────────────────── +2026/03/21 14:06:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:06:34 [transform_engine] {"stage_name":"transform_engine","events_processed":335,"events_dropped":0,"avg_latency_ms":228.0440405734299,"throughput_eps":0,"last_update":"2026-03-21T14:06:29.21069961Z"} +2026/03/21 14:06:34 [log_collector] {"stage_name":"log_collector","events_processed":16044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208.8,"last_update":"2026-03-21T14:06:29.068633591Z"} +2026/03/21 14:06:34 [metric_collector] {"stage_name":"metric_collector","events_processed":10059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2011.8,"last_update":"2026-03-21T14:06:29.068867739Z"} +2026/03/21 14:06:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:06:29.077340019Z"} +2026/03/21 14:06:34 [detection_layer] {"stage_name":"detection_layer","events_processed":335,"events_dropped":0,"avg_latency_ms":14.905722188458332,"throughput_eps":0,"last_update":"2026-03-21T14:06:29.210654474Z"} +2026/03/21 14:06:34 ───────────────────────────────────────────────── +2026/03/21 14:06:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:06:39 [log_collector] {"stage_name":"log_collector","events_processed":16044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208.8,"last_update":"2026-03-21T14:06:34.068672001Z"} +2026/03/21 14:06:39 [metric_collector] {"stage_name":"metric_collector","events_processed":10064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2012.8,"last_update":"2026-03-21T14:06:34.06890175Z"} +2026/03/21 14:06:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:06:34.075837807Z"} +2026/03/21 14:06:39 [detection_layer] {"stage_name":"detection_layer","events_processed":335,"events_dropped":0,"avg_latency_ms":14.905722188458332,"throughput_eps":0,"last_update":"2026-03-21T14:06:34.210805328Z"} +2026/03/21 14:06:39 [transform_engine] {"stage_name":"transform_engine","events_processed":335,"events_dropped":0,"avg_latency_ms":228.0440405734299,"throughput_eps":0,"last_update":"2026-03-21T14:06:34.209724939Z"} +2026/03/21 14:06:39 ───────────────────────────────────────────────── +2026/03/21 14:06:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:06:44 [log_collector] {"stage_name":"log_collector","events_processed":16055,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3211,"last_update":"2026-03-21T14:06:39.068545552Z"} +2026/03/21 14:06:44 [metric_collector] {"stage_name":"metric_collector","events_processed":10069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2013.8,"last_update":"2026-03-21T14:06:39.06913445Z"} +2026/03/21 14:06:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:06:39.078838571Z"} +2026/03/21 14:06:44 [detection_layer] {"stage_name":"detection_layer","events_processed":335,"events_dropped":0,"avg_latency_ms":14.905722188458332,"throughput_eps":0,"last_update":"2026-03-21T14:06:39.210222917Z"} +2026/03/21 14:06:44 [transform_engine] {"stage_name":"transform_engine","events_processed":335,"events_dropped":0,"avg_latency_ms":228.0440405734299,"throughput_eps":0,"last_update":"2026-03-21T14:06:39.210337296Z"} +2026/03/21 14:06:44 ───────────────────────────────────────────────── +2026/03/21 14:06:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:06:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:06:44.088590965Z"} +2026/03/21 14:06:49 [detection_layer] {"stage_name":"detection_layer","events_processed":335,"events_dropped":0,"avg_latency_ms":14.905722188458332,"throughput_eps":0,"last_update":"2026-03-21T14:06:44.210592568Z"} +2026/03/21 14:06:49 [transform_engine] {"stage_name":"transform_engine","events_processed":335,"events_dropped":0,"avg_latency_ms":228.0440405734299,"throughput_eps":0,"last_update":"2026-03-21T14:06:44.210608979Z"} +2026/03/21 14:06:49 [log_collector] {"stage_name":"log_collector","events_processed":16061,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3212.2,"last_update":"2026-03-21T14:06:44.068645727Z"} +2026/03/21 14:06:49 [metric_collector] {"stage_name":"metric_collector","events_processed":10074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2014.8,"last_update":"2026-03-21T14:06:44.068885727Z"} +2026/03/21 14:06:49 ───────────────────────────────────────────────── +2026/03/21 14:06:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:06:54 [detection_layer] {"stage_name":"detection_layer","events_processed":335,"events_dropped":0,"avg_latency_ms":14.905722188458332,"throughput_eps":0,"last_update":"2026-03-21T14:06:49.210118899Z"} +2026/03/21 14:06:54 [transform_engine] {"stage_name":"transform_engine","events_processed":336,"events_dropped":0,"avg_latency_ms":205.91527205874394,"throughput_eps":0,"last_update":"2026-03-21T14:06:49.327549103Z"} +2026/03/21 14:06:54 [log_collector] {"stage_name":"log_collector","events_processed":16071,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3214.2,"last_update":"2026-03-21T14:06:49.068554271Z"} +2026/03/21 14:06:54 [metric_collector] {"stage_name":"metric_collector","events_processed":10079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2015.8,"last_update":"2026-03-21T14:06:49.068949749Z"} +2026/03/21 14:06:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:06:49.077705351Z"} +2026/03/21 14:06:54 ───────────────────────────────────────────────── +2026/03/21 14:06:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:06:59 [metric_collector] {"stage_name":"metric_collector","events_processed":10084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2016.8,"last_update":"2026-03-21T14:06:54.069091518Z"} +2026/03/21 14:06:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4036,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:06:54.078931178Z"} +2026/03/21 14:06:59 [detection_layer] {"stage_name":"detection_layer","events_processed":336,"events_dropped":0,"avg_latency_ms":15.665261550766665,"throughput_eps":0,"last_update":"2026-03-21T14:06:54.210325222Z"} +2026/03/21 14:06:59 [transform_engine] {"stage_name":"transform_engine","events_processed":336,"events_dropped":0,"avg_latency_ms":205.91527205874394,"throughput_eps":0,"last_update":"2026-03-21T14:06:54.210299874Z"} +2026/03/21 14:06:59 [log_collector] {"stage_name":"log_collector","events_processed":16071,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3214.2,"last_update":"2026-03-21T14:06:59.068280149Z"} +2026/03/21 14:06:59 ───────────────────────────────────────────────── +2026/03/21 14:07:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:07:04 [log_collector] {"stage_name":"log_collector","events_processed":16071,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3214.2,"last_update":"2026-03-21T14:06:59.068280149Z"} +2026/03/21 14:07:04 [metric_collector] {"stage_name":"metric_collector","events_processed":10089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2017.8,"last_update":"2026-03-21T14:06:59.068788594Z"} +2026/03/21 14:07:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:06:59.078091184Z"} +2026/03/21 14:07:04 [detection_layer] {"stage_name":"detection_layer","events_processed":336,"events_dropped":0,"avg_latency_ms":15.665261550766665,"throughput_eps":0,"last_update":"2026-03-21T14:06:59.210532434Z"} +2026/03/21 14:07:04 [transform_engine] {"stage_name":"transform_engine","events_processed":336,"events_dropped":0,"avg_latency_ms":205.91527205874394,"throughput_eps":0,"last_update":"2026-03-21T14:06:59.210467829Z"} +2026/03/21 14:07:04 ───────────────────────────────────────────────── +2026/03/21 14:07:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:07:09 [log_collector] {"stage_name":"log_collector","events_processed":16071,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3214.2,"last_update":"2026-03-21T14:07:04.068920301Z"} +2026/03/21 14:07:09 [metric_collector] {"stage_name":"metric_collector","events_processed":10094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2018.8,"last_update":"2026-03-21T14:07:04.069315829Z"} +2026/03/21 14:07:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:07:04.079870888Z"} +2026/03/21 14:07:09 [detection_layer] {"stage_name":"detection_layer","events_processed":336,"events_dropped":0,"avg_latency_ms":15.665261550766665,"throughput_eps":0,"last_update":"2026-03-21T14:07:04.210225692Z"} +2026/03/21 14:07:09 [transform_engine] {"stage_name":"transform_engine","events_processed":336,"events_dropped":0,"avg_latency_ms":205.91527205874394,"throughput_eps":0,"last_update":"2026-03-21T14:07:04.210191666Z"} +2026/03/21 14:07:09 ───────────────────────────────────────────────── +2026/03/21 14:07:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:07:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:07:09.078252682Z"} +2026/03/21 14:07:14 [detection_layer] {"stage_name":"detection_layer","events_processed":336,"events_dropped":0,"avg_latency_ms":15.665261550766665,"throughput_eps":0,"last_update":"2026-03-21T14:07:09.21053641Z"} +2026/03/21 14:07:14 [transform_engine] {"stage_name":"transform_engine","events_processed":336,"events_dropped":0,"avg_latency_ms":205.91527205874394,"throughput_eps":0,"last_update":"2026-03-21T14:07:09.2105099Z"} +2026/03/21 14:07:14 [log_collector] {"stage_name":"log_collector","events_processed":16071,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3214.2,"last_update":"2026-03-21T14:07:09.068054486Z"} +2026/03/21 14:07:14 [metric_collector] {"stage_name":"metric_collector","events_processed":10099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2019.8,"last_update":"2026-03-21T14:07:09.068584251Z"} +2026/03/21 14:07:14 ───────────────────────────────────────────────── +2026/03/21 14:07:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:07:19 [transform_engine] {"stage_name":"transform_engine","events_processed":336,"events_dropped":0,"avg_latency_ms":205.91527205874394,"throughput_eps":0,"last_update":"2026-03-21T14:07:14.210397007Z"} +2026/03/21 14:07:19 [log_collector] {"stage_name":"log_collector","events_processed":16071,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3214.2,"last_update":"2026-03-21T14:07:14.068869762Z"} +2026/03/21 14:07:19 [metric_collector] {"stage_name":"metric_collector","events_processed":10104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2020.8,"last_update":"2026-03-21T14:07:14.069303142Z"} +2026/03/21 14:07:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:07:14.07899623Z"} +2026/03/21 14:07:19 [detection_layer] {"stage_name":"detection_layer","events_processed":336,"events_dropped":0,"avg_latency_ms":15.665261550766665,"throughput_eps":0,"last_update":"2026-03-21T14:07:14.210435269Z"} +2026/03/21 14:07:19 ───────────────────────────────────────────────── +2026/03/21 14:07:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:07:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:07:19.080502327Z"} +2026/03/21 14:07:24 [detection_layer] {"stage_name":"detection_layer","events_processed":336,"events_dropped":0,"avg_latency_ms":15.665261550766665,"throughput_eps":0,"last_update":"2026-03-21T14:07:19.210893749Z"} +2026/03/21 14:07:24 [transform_engine] {"stage_name":"transform_engine","events_processed":337,"events_dropped":0,"avg_latency_ms":181.01559244699516,"throughput_eps":0,"last_update":"2026-03-21T14:07:19.291161994Z"} +2026/03/21 14:07:24 [log_collector] {"stage_name":"log_collector","events_processed":16071,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3214.2,"last_update":"2026-03-21T14:07:19.068797806Z"} +2026/03/21 14:07:24 [metric_collector] {"stage_name":"metric_collector","events_processed":10109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2021.8,"last_update":"2026-03-21T14:07:19.06931178Z"} +2026/03/21 14:07:24 ───────────────────────────────────────────────── +2026/03/21 14:07:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:07:29 [detection_layer] {"stage_name":"detection_layer","events_processed":337,"events_dropped":0,"avg_latency_ms":16.956556840613334,"throughput_eps":0,"last_update":"2026-03-21T14:07:24.211062752Z"} +2026/03/21 14:07:29 [transform_engine] {"stage_name":"transform_engine","events_processed":337,"events_dropped":0,"avg_latency_ms":181.01559244699516,"throughput_eps":0,"last_update":"2026-03-21T14:07:24.209771709Z"} +2026/03/21 14:07:29 [log_collector] {"stage_name":"log_collector","events_processed":16071,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3214.2,"last_update":"2026-03-21T14:07:24.068726418Z"} +2026/03/21 14:07:29 [metric_collector] {"stage_name":"metric_collector","events_processed":10114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2022.8,"last_update":"2026-03-21T14:07:24.069091819Z"} +2026/03/21 14:07:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4048,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:07:24.078552812Z"} +2026/03/21 14:07:29 ───────────────────────────────────────────────── +2026/03/21 14:07:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:07:34 [transform_engine] {"stage_name":"transform_engine","events_processed":337,"events_dropped":0,"avg_latency_ms":181.01559244699516,"throughput_eps":0,"last_update":"2026-03-21T14:07:29.210158171Z"} +2026/03/21 14:07:34 [log_collector] {"stage_name":"log_collector","events_processed":16071,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3214.2,"last_update":"2026-03-21T14:07:29.068344217Z"} +2026/03/21 14:07:34 [metric_collector] {"stage_name":"metric_collector","events_processed":10119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2023.8,"last_update":"2026-03-21T14:07:29.069073114Z"} +2026/03/21 14:07:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4050,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:07:29.077878281Z"} +2026/03/21 14:07:34 [detection_layer] {"stage_name":"detection_layer","events_processed":337,"events_dropped":0,"avg_latency_ms":16.956556840613334,"throughput_eps":0,"last_update":"2026-03-21T14:07:29.210133002Z"} +2026/03/21 14:07:34 ───────────────────────────────────────────────── +2026/03/21 14:07:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:07:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:07:34.080145203Z"} +2026/03/21 14:07:39 [detection_layer] {"stage_name":"detection_layer","events_processed":337,"events_dropped":0,"avg_latency_ms":16.956556840613334,"throughput_eps":0,"last_update":"2026-03-21T14:07:34.210441081Z"} +2026/03/21 14:07:39 [transform_engine] {"stage_name":"transform_engine","events_processed":337,"events_dropped":0,"avg_latency_ms":181.01559244699516,"throughput_eps":0,"last_update":"2026-03-21T14:07:34.210502569Z"} +2026/03/21 14:07:39 [log_collector] {"stage_name":"log_collector","events_processed":16071,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3214.2,"last_update":"2026-03-21T14:07:34.068781584Z"} +2026/03/21 14:07:39 [metric_collector] {"stage_name":"metric_collector","events_processed":10124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2024.8,"last_update":"2026-03-21T14:07:34.068947652Z"} +2026/03/21 14:07:39 ───────────────────────────────────────────────── +2026/03/21 14:07:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:07:44 [log_collector] {"stage_name":"log_collector","events_processed":16071,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3214.2,"last_update":"2026-03-21T14:07:39.068540029Z"} +2026/03/21 14:07:44 [metric_collector] {"stage_name":"metric_collector","events_processed":10129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2025.8,"last_update":"2026-03-21T14:07:39.069065586Z"} +2026/03/21 14:07:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:07:39.077757026Z"} +2026/03/21 14:07:44 [detection_layer] {"stage_name":"detection_layer","events_processed":337,"events_dropped":0,"avg_latency_ms":16.956556840613334,"throughput_eps":0,"last_update":"2026-03-21T14:07:39.210012318Z"} +2026/03/21 14:07:44 [transform_engine] {"stage_name":"transform_engine","events_processed":337,"events_dropped":0,"avg_latency_ms":181.01559244699516,"throughput_eps":0,"last_update":"2026-03-21T14:07:39.210051692Z"} +2026/03/21 14:07:44 ───────────────────────────────────────────────── +2026/03/21 14:07:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:07:49 [detection_layer] {"stage_name":"detection_layer","events_processed":337,"events_dropped":0,"avg_latency_ms":16.956556840613334,"throughput_eps":0,"last_update":"2026-03-21T14:07:44.210025289Z"} +2026/03/21 14:07:49 [transform_engine] {"stage_name":"transform_engine","events_processed":337,"events_dropped":0,"avg_latency_ms":181.01559244699516,"throughput_eps":0,"last_update":"2026-03-21T14:07:44.210158423Z"} +2026/03/21 14:07:49 [log_collector] {"stage_name":"log_collector","events_processed":16071,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3214.2,"last_update":"2026-03-21T14:07:44.068596404Z"} +2026/03/21 14:07:49 [metric_collector] {"stage_name":"metric_collector","events_processed":10134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2026.8,"last_update":"2026-03-21T14:07:44.068872233Z"} +2026/03/21 14:07:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4056,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:07:44.076751918Z"} +2026/03/21 14:07:49 ───────────────────────────────────────────────── +2026/03/21 14:07:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:07:54 [log_collector] {"stage_name":"log_collector","events_processed":16071,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3214.2,"last_update":"2026-03-21T14:07:49.068742772Z"} +2026/03/21 14:07:54 [metric_collector] {"stage_name":"metric_collector","events_processed":10139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2027.8,"last_update":"2026-03-21T14:07:49.069230386Z"} +2026/03/21 14:07:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:07:49.079284346Z"} +2026/03/21 14:07:54 [detection_layer] {"stage_name":"detection_layer","events_processed":337,"events_dropped":0,"avg_latency_ms":16.956556840613334,"throughput_eps":0,"last_update":"2026-03-21T14:07:49.210650453Z"} +2026/03/21 14:07:54 [transform_engine] {"stage_name":"transform_engine","events_processed":337,"events_dropped":0,"avg_latency_ms":181.01559244699516,"throughput_eps":0,"last_update":"2026-03-21T14:07:49.210599736Z"} +2026/03/21 14:07:54 ───────────────────────────────────────────────── +2026/03/21 14:07:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:07:59 [log_collector] {"stage_name":"log_collector","events_processed":16071,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3214.2,"last_update":"2026-03-21T14:07:54.068077875Z"} +2026/03/21 14:07:59 [metric_collector] {"stage_name":"metric_collector","events_processed":10144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2028.8,"last_update":"2026-03-21T14:07:54.068656694Z"} +2026/03/21 14:07:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:07:54.079166306Z"} +2026/03/21 14:07:59 [detection_layer] {"stage_name":"detection_layer","events_processed":338,"events_dropped":0,"avg_latency_ms":17.470634872490667,"throughput_eps":0,"last_update":"2026-03-21T14:07:54.210487627Z"} +2026/03/21 14:07:59 [transform_engine] {"stage_name":"transform_engine","events_processed":338,"events_dropped":0,"avg_latency_ms":158.47526455759612,"throughput_eps":0,"last_update":"2026-03-21T14:07:54.210497807Z"} +2026/03/21 14:07:59 ───────────────────────────────────────────────── +Saved state: 16 clusters, 16072 messages, reason: none +2026/03/21 14:08:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:08:04 [log_collector] {"stage_name":"log_collector","events_processed":16071,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3214.2,"last_update":"2026-03-21T14:07:59.068628797Z"} +2026/03/21 14:08:04 [metric_collector] {"stage_name":"metric_collector","events_processed":10149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2029.8,"last_update":"2026-03-21T14:07:59.068890709Z"} +2026/03/21 14:08:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4062,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:07:59.079192363Z"} +2026/03/21 14:08:04 [detection_layer] {"stage_name":"detection_layer","events_processed":338,"events_dropped":0,"avg_latency_ms":17.470634872490667,"throughput_eps":0,"last_update":"2026-03-21T14:07:59.210466403Z"} +2026/03/21 14:08:04 [transform_engine] {"stage_name":"transform_engine","events_processed":338,"events_dropped":0,"avg_latency_ms":158.47526455759612,"throughput_eps":0,"last_update":"2026-03-21T14:07:59.210488576Z"} +2026/03/21 14:08:04 ───────────────────────────────────────────────── +2026/03/21 14:08:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:08:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:08:04.077497502Z"} +2026/03/21 14:08:09 [detection_layer] {"stage_name":"detection_layer","events_processed":338,"events_dropped":0,"avg_latency_ms":17.470634872490667,"throughput_eps":0,"last_update":"2026-03-21T14:08:04.210881976Z"} +2026/03/21 14:08:09 [transform_engine] {"stage_name":"transform_engine","events_processed":338,"events_dropped":0,"avg_latency_ms":158.47526455759612,"throughput_eps":0,"last_update":"2026-03-21T14:08:04.209669473Z"} +2026/03/21 14:08:09 [log_collector] {"stage_name":"log_collector","events_processed":16085,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3217,"last_update":"2026-03-21T14:08:04.069040772Z"} +2026/03/21 14:08:09 [metric_collector] {"stage_name":"metric_collector","events_processed":10154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2030.8,"last_update":"2026-03-21T14:08:04.069244412Z"} +2026/03/21 14:08:09 ───────────────────────────────────────────────── +2026/03/21 14:08:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:08:14 [metric_collector] {"stage_name":"metric_collector","events_processed":10159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2031.8,"last_update":"2026-03-21T14:08:09.068925759Z"} +2026/03/21 14:08:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:08:09.077181985Z"} +2026/03/21 14:08:14 [detection_layer] {"stage_name":"detection_layer","events_processed":338,"events_dropped":0,"avg_latency_ms":17.470634872490667,"throughput_eps":0,"last_update":"2026-03-21T14:08:09.210555367Z"} +2026/03/21 14:08:14 [transform_engine] {"stage_name":"transform_engine","events_processed":338,"events_dropped":0,"avg_latency_ms":158.47526455759612,"throughput_eps":0,"last_update":"2026-03-21T14:08:09.210497545Z"} +2026/03/21 14:08:14 [log_collector] {"stage_name":"log_collector","events_processed":16085,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3217,"last_update":"2026-03-21T14:08:09.068079709Z"} +2026/03/21 14:08:14 ───────────────────────────────────────────────── +2026/03/21 14:08:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:08:19 [transform_engine] {"stage_name":"transform_engine","events_processed":338,"events_dropped":0,"avg_latency_ms":158.47526455759612,"throughput_eps":0,"last_update":"2026-03-21T14:08:14.210324149Z"} +2026/03/21 14:08:19 [log_collector] {"stage_name":"log_collector","events_processed":16085,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3217,"last_update":"2026-03-21T14:08:14.068156531Z"} +2026/03/21 14:08:19 [metric_collector] {"stage_name":"metric_collector","events_processed":10164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2032.8,"last_update":"2026-03-21T14:08:14.06867793Z"} +2026/03/21 14:08:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:08:14.07806374Z"} +2026/03/21 14:08:19 [detection_layer] {"stage_name":"detection_layer","events_processed":338,"events_dropped":0,"avg_latency_ms":17.470634872490667,"throughput_eps":0,"last_update":"2026-03-21T14:08:14.210297708Z"} +2026/03/21 14:08:19 ───────────────────────────────────────────────── +2026/03/21 14:08:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:08:24 [log_collector] {"stage_name":"log_collector","events_processed":16085,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3217,"last_update":"2026-03-21T14:08:19.068777458Z"} +2026/03/21 14:08:24 [metric_collector] {"stage_name":"metric_collector","events_processed":10169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2033.8,"last_update":"2026-03-21T14:08:19.069035672Z"} +2026/03/21 14:08:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:08:19.079003908Z"} +2026/03/21 14:08:24 [detection_layer] {"stage_name":"detection_layer","events_processed":338,"events_dropped":0,"avg_latency_ms":17.470634872490667,"throughput_eps":0,"last_update":"2026-03-21T14:08:19.210298095Z"} +2026/03/21 14:08:24 [transform_engine] {"stage_name":"transform_engine","events_processed":339,"events_dropped":0,"avg_latency_ms":149.5499656460769,"throughput_eps":0,"last_update":"2026-03-21T14:08:19.324125454Z"} +2026/03/21 14:08:24 ───────────────────────────────────────────────── +2026/03/21 14:08:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:08:29 [transform_engine] {"stage_name":"transform_engine","events_processed":339,"events_dropped":0,"avg_latency_ms":149.5499656460769,"throughput_eps":0,"last_update":"2026-03-21T14:08:24.210578399Z"} +2026/03/21 14:08:29 [log_collector] {"stage_name":"log_collector","events_processed":16085,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3217,"last_update":"2026-03-21T14:08:24.06811288Z"} +2026/03/21 14:08:29 [metric_collector] {"stage_name":"metric_collector","events_processed":10174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2034.8,"last_update":"2026-03-21T14:08:24.06847794Z"} +2026/03/21 14:08:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4072,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:08:24.077345947Z"} +2026/03/21 14:08:29 [detection_layer] {"stage_name":"detection_layer","events_processed":339,"events_dropped":0,"avg_latency_ms":18.151806097992534,"throughput_eps":0,"last_update":"2026-03-21T14:08:24.210689631Z"} +2026/03/21 14:08:29 ───────────────────────────────────────────────── +2026/03/21 14:08:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:08:34 [log_collector] {"stage_name":"log_collector","events_processed":16085,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3217,"last_update":"2026-03-21T14:08:29.069091342Z"} +2026/03/21 14:08:34 [metric_collector] {"stage_name":"metric_collector","events_processed":10179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2035.8,"last_update":"2026-03-21T14:08:29.069714807Z"} +2026/03/21 14:08:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:08:29.07907664Z"} +2026/03/21 14:08:34 [detection_layer] {"stage_name":"detection_layer","events_processed":339,"events_dropped":0,"avg_latency_ms":18.151806097992534,"throughput_eps":0,"last_update":"2026-03-21T14:08:29.210463195Z"} +2026/03/21 14:08:34 [transform_engine] {"stage_name":"transform_engine","events_processed":339,"events_dropped":0,"avg_latency_ms":149.5499656460769,"throughput_eps":0,"last_update":"2026-03-21T14:08:29.210560711Z"} +2026/03/21 14:08:34 ───────────────────────────────────────────────── +2026/03/21 14:08:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:08:39 [log_collector] {"stage_name":"log_collector","events_processed":16085,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3217,"last_update":"2026-03-21T14:08:34.068775243Z"} +2026/03/21 14:08:39 [metric_collector] {"stage_name":"metric_collector","events_processed":10184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2036.8,"last_update":"2026-03-21T14:08:34.069205228Z"} +2026/03/21 14:08:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4076,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:08:34.078302414Z"} +2026/03/21 14:08:39 [detection_layer] {"stage_name":"detection_layer","events_processed":339,"events_dropped":0,"avg_latency_ms":18.151806097992534,"throughput_eps":0,"last_update":"2026-03-21T14:08:34.210605785Z"} +2026/03/21 14:08:39 [transform_engine] {"stage_name":"transform_engine","events_processed":339,"events_dropped":0,"avg_latency_ms":149.5499656460769,"throughput_eps":0,"last_update":"2026-03-21T14:08:34.210640301Z"} +2026/03/21 14:08:39 ───────────────────────────────────────────────── +2026/03/21 14:08:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:08:44 [log_collector] {"stage_name":"log_collector","events_processed":16085,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3217,"last_update":"2026-03-21T14:08:39.068706339Z"} +2026/03/21 14:08:44 [metric_collector] {"stage_name":"metric_collector","events_processed":10189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2037.8,"last_update":"2026-03-21T14:08:39.069364129Z"} +2026/03/21 14:08:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:08:39.078010742Z"} +2026/03/21 14:08:44 [detection_layer] {"stage_name":"detection_layer","events_processed":339,"events_dropped":0,"avg_latency_ms":18.151806097992534,"throughput_eps":0,"last_update":"2026-03-21T14:08:39.210374418Z"} +2026/03/21 14:08:44 [transform_engine] {"stage_name":"transform_engine","events_processed":339,"events_dropped":0,"avg_latency_ms":149.5499656460769,"throughput_eps":0,"last_update":"2026-03-21T14:08:39.21040188Z"} +2026/03/21 14:08:44 ───────────────────────────────────────────────── +2026/03/21 14:08:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:08:49 [log_collector] {"stage_name":"log_collector","events_processed":16085,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3217,"last_update":"2026-03-21T14:08:44.068899649Z"} +2026/03/21 14:08:49 [metric_collector] {"stage_name":"metric_collector","events_processed":10194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2038.8,"last_update":"2026-03-21T14:08:44.069380439Z"} +2026/03/21 14:08:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:08:44.077955706Z"} +2026/03/21 14:08:49 [detection_layer] {"stage_name":"detection_layer","events_processed":339,"events_dropped":0,"avg_latency_ms":18.151806097992534,"throughput_eps":0,"last_update":"2026-03-21T14:08:44.210260819Z"} +2026/03/21 14:08:49 [transform_engine] {"stage_name":"transform_engine","events_processed":339,"events_dropped":0,"avg_latency_ms":149.5499656460769,"throughput_eps":0,"last_update":"2026-03-21T14:08:44.210225462Z"} +2026/03/21 14:08:49 ───────────────────────────────────────────────── +2026/03/21 14:08:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:08:54 [log_collector] {"stage_name":"log_collector","events_processed":16085,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3217,"last_update":"2026-03-21T14:08:54.068261502Z"} +2026/03/21 14:08:54 [metric_collector] {"stage_name":"metric_collector","events_processed":10199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2039.8,"last_update":"2026-03-21T14:08:49.068929272Z"} +2026/03/21 14:08:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4082,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:08:49.077137937Z"} +2026/03/21 14:08:54 [detection_layer] {"stage_name":"detection_layer","events_processed":339,"events_dropped":0,"avg_latency_ms":18.151806097992534,"throughput_eps":0,"last_update":"2026-03-21T14:08:49.210430642Z"} +2026/03/21 14:08:54 [transform_engine] {"stage_name":"transform_engine","events_processed":340,"events_dropped":0,"avg_latency_ms":133.51944411686154,"throughput_eps":0,"last_update":"2026-03-21T14:08:49.279936928Z"} +2026/03/21 14:08:54 ───────────────────────────────────────────────── +2026/03/21 14:08:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:08:59 [log_collector] {"stage_name":"log_collector","events_processed":16085,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3217,"last_update":"2026-03-21T14:08:54.068261502Z"} +2026/03/21 14:08:59 [metric_collector] {"stage_name":"metric_collector","events_processed":10204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2040.8,"last_update":"2026-03-21T14:08:54.068702757Z"} +2026/03/21 14:08:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:08:54.077514617Z"} +2026/03/21 14:08:59 [detection_layer] {"stage_name":"detection_layer","events_processed":340,"events_dropped":0,"avg_latency_ms":18.98535167839403,"throughput_eps":0,"last_update":"2026-03-21T14:08:54.210756685Z"} +2026/03/21 14:08:59 [transform_engine] {"stage_name":"transform_engine","events_processed":340,"events_dropped":0,"avg_latency_ms":133.51944411686154,"throughput_eps":0,"last_update":"2026-03-21T14:08:54.210643759Z"} +2026/03/21 14:08:59 ───────────────────────────────────────────────── +2026/03/21 14:09:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:09:04 [log_collector] {"stage_name":"log_collector","events_processed":16085,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3217,"last_update":"2026-03-21T14:08:59.068592477Z"} +2026/03/21 14:09:04 [metric_collector] {"stage_name":"metric_collector","events_processed":10209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2041.8,"last_update":"2026-03-21T14:08:59.069157268Z"} +2026/03/21 14:09:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:08:59.078318577Z"} +2026/03/21 14:09:04 [detection_layer] {"stage_name":"detection_layer","events_processed":340,"events_dropped":0,"avg_latency_ms":18.98535167839403,"throughput_eps":0,"last_update":"2026-03-21T14:08:59.210543187Z"} +2026/03/21 14:09:04 [transform_engine] {"stage_name":"transform_engine","events_processed":340,"events_dropped":0,"avg_latency_ms":133.51944411686154,"throughput_eps":0,"last_update":"2026-03-21T14:08:59.210666763Z"} +2026/03/21 14:09:04 ───────────────────────────────────────────────── +Saved state: 16 clusters, 16086 messages, reason: none +2026/03/21 14:09:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:09:09 [detection_layer] {"stage_name":"detection_layer","events_processed":340,"events_dropped":0,"avg_latency_ms":18.98535167839403,"throughput_eps":0,"last_update":"2026-03-21T14:09:04.210597711Z"} +2026/03/21 14:09:09 [transform_engine] {"stage_name":"transform_engine","events_processed":340,"events_dropped":0,"avg_latency_ms":133.51944411686154,"throughput_eps":0,"last_update":"2026-03-21T14:09:04.210574166Z"} +2026/03/21 14:09:09 [log_collector] {"stage_name":"log_collector","events_processed":16085,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3217,"last_update":"2026-03-21T14:09:04.068691006Z"} +2026/03/21 14:09:09 [metric_collector] {"stage_name":"metric_collector","events_processed":10214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2042.8,"last_update":"2026-03-21T14:09:04.069168922Z"} +2026/03/21 14:09:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:09:04.077205988Z"} +2026/03/21 14:09:09 ───────────────────────────────────────────────── +2026/03/21 14:09:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:09:14 [detection_layer] {"stage_name":"detection_layer","events_processed":340,"events_dropped":0,"avg_latency_ms":18.98535167839403,"throughput_eps":0,"last_update":"2026-03-21T14:09:09.210152079Z"} +2026/03/21 14:09:14 [transform_engine] {"stage_name":"transform_engine","events_processed":340,"events_dropped":0,"avg_latency_ms":133.51944411686154,"throughput_eps":0,"last_update":"2026-03-21T14:09:09.210186374Z"} +2026/03/21 14:09:14 [log_collector] {"stage_name":"log_collector","events_processed":16090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3218,"last_update":"2026-03-21T14:09:09.068592309Z"} +2026/03/21 14:09:14 [metric_collector] {"stage_name":"metric_collector","events_processed":10219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2043.8,"last_update":"2026-03-21T14:09:09.068817961Z"} +2026/03/21 14:09:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:09:09.081909238Z"} +2026/03/21 14:09:14 ───────────────────────────────────────────────── +2026/03/21 14:09:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:09:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:09:14.076929653Z"} +2026/03/21 14:09:19 [detection_layer] {"stage_name":"detection_layer","events_processed":340,"events_dropped":0,"avg_latency_ms":18.98535167839403,"throughput_eps":0,"last_update":"2026-03-21T14:09:14.210198531Z"} +2026/03/21 14:09:19 [transform_engine] {"stage_name":"transform_engine","events_processed":340,"events_dropped":0,"avg_latency_ms":133.51944411686154,"throughput_eps":0,"last_update":"2026-03-21T14:09:14.210172311Z"} +2026/03/21 14:09:19 [log_collector] {"stage_name":"log_collector","events_processed":16090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3218,"last_update":"2026-03-21T14:09:14.068275566Z"} +2026/03/21 14:09:19 [metric_collector] {"stage_name":"metric_collector","events_processed":10224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2044.8,"last_update":"2026-03-21T14:09:14.068563426Z"} +2026/03/21 14:09:19 ───────────────────────────────────────────────── +2026/03/21 14:09:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:09:24 [detection_layer] {"stage_name":"detection_layer","events_processed":340,"events_dropped":0,"avg_latency_ms":18.98535167839403,"throughput_eps":0,"last_update":"2026-03-21T14:09:19.210061162Z"} +2026/03/21 14:09:24 [transform_engine] {"stage_name":"transform_engine","events_processed":340,"events_dropped":0,"avg_latency_ms":133.51944411686154,"throughput_eps":0,"last_update":"2026-03-21T14:09:14.210172311Z"} +2026/03/21 14:09:24 [log_collector] {"stage_name":"log_collector","events_processed":16090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3218,"last_update":"2026-03-21T14:09:19.068528845Z"} +2026/03/21 14:09:24 [metric_collector] {"stage_name":"metric_collector","events_processed":10229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2045.8,"last_update":"2026-03-21T14:09:19.068781569Z"} +2026/03/21 14:09:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:09:19.080913929Z"} +2026/03/21 14:09:24 ───────────────────────────────────────────────── +2026/03/21 14:09:24 [ANOMALY] time=2026-03-21T14:09:22Z score=0.9038 method=SEAD details=MAD!:w=0.28,s=0.96 RRCF-fast!:w=0.17,s=0.96 RRCF-mid!:w=0.15,s=0.83 RRCF-slow:w=0.11,s=0.78 COPOD!:w=0.29,s=0.91 +2026/03/21 14:09:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:09:29 [metric_collector] {"stage_name":"metric_collector","events_processed":10234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2046.8,"last_update":"2026-03-21T14:09:24.068901213Z"} +2026/03/21 14:09:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:09:24.08055148Z"} +2026/03/21 14:09:29 [detection_layer] {"stage_name":"detection_layer","events_processed":341,"events_dropped":0,"avg_latency_ms":18.963432942715222,"throughput_eps":0,"last_update":"2026-03-21T14:09:24.210534263Z"} +2026/03/21 14:09:29 [transform_engine] {"stage_name":"transform_engine","events_processed":341,"events_dropped":0,"avg_latency_ms":1093.7479562934893,"throughput_eps":0,"last_update":"2026-03-21T14:09:24.210586624Z"} +2026/03/21 14:09:29 [log_collector] {"stage_name":"log_collector","events_processed":16090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3218,"last_update":"2026-03-21T14:09:24.068676453Z"} +2026/03/21 14:09:29 ───────────────────────────────────────────────── +2026/03/21 14:09:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:09:34 [detection_layer] {"stage_name":"detection_layer","events_processed":341,"events_dropped":0,"avg_latency_ms":18.963432942715222,"throughput_eps":0,"last_update":"2026-03-21T14:09:29.210243955Z"} +2026/03/21 14:09:34 [transform_engine] {"stage_name":"transform_engine","events_processed":341,"events_dropped":0,"avg_latency_ms":1093.7479562934893,"throughput_eps":0,"last_update":"2026-03-21T14:09:29.210289072Z"} +2026/03/21 14:09:34 [log_collector] {"stage_name":"log_collector","events_processed":16090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3218,"last_update":"2026-03-21T14:09:29.068798615Z"} +2026/03/21 14:09:34 [metric_collector] {"stage_name":"metric_collector","events_processed":10239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2047.8,"last_update":"2026-03-21T14:09:29.069049285Z"} +2026/03/21 14:09:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:09:29.078027394Z"} +2026/03/21 14:09:34 ───────────────────────────────────────────────── +2026/03/21 14:09:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:09:39 [log_collector] {"stage_name":"log_collector","events_processed":16090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3218,"last_update":"2026-03-21T14:09:34.068571557Z"} +2026/03/21 14:09:39 [metric_collector] {"stage_name":"metric_collector","events_processed":10244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2048.8,"last_update":"2026-03-21T14:09:34.068800316Z"} +2026/03/21 14:09:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:09:34.076464938Z"} +2026/03/21 14:09:39 [detection_layer] {"stage_name":"detection_layer","events_processed":341,"events_dropped":0,"avg_latency_ms":18.963432942715222,"throughput_eps":0,"last_update":"2026-03-21T14:09:34.210684476Z"} +2026/03/21 14:09:39 [transform_engine] {"stage_name":"transform_engine","events_processed":341,"events_dropped":0,"avg_latency_ms":1093.7479562934893,"throughput_eps":0,"last_update":"2026-03-21T14:09:34.21067111Z"} +2026/03/21 14:09:39 ───────────────────────────────────────────────── +2026/03/21 14:09:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:09:44 [log_collector] {"stage_name":"log_collector","events_processed":16090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3218,"last_update":"2026-03-21T14:09:39.068482446Z"} +2026/03/21 14:09:44 [metric_collector] {"stage_name":"metric_collector","events_processed":10249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2049.8,"last_update":"2026-03-21T14:09:39.068772552Z"} +2026/03/21 14:09:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:09:39.082186377Z"} +2026/03/21 14:09:44 [detection_layer] {"stage_name":"detection_layer","events_processed":341,"events_dropped":0,"avg_latency_ms":18.963432942715222,"throughput_eps":0,"last_update":"2026-03-21T14:09:39.210386845Z"} +2026/03/21 14:09:44 [transform_engine] {"stage_name":"transform_engine","events_processed":341,"events_dropped":0,"avg_latency_ms":1093.7479562934893,"throughput_eps":0,"last_update":"2026-03-21T14:09:39.210395573Z"} +2026/03/21 14:09:44 ───────────────────────────────────────────────── +2026/03/21 14:09:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:09:49 [log_collector] {"stage_name":"log_collector","events_processed":16090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3218,"last_update":"2026-03-21T14:09:44.068486555Z"} +2026/03/21 14:09:49 [metric_collector] {"stage_name":"metric_collector","events_processed":10254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2050.8,"last_update":"2026-03-21T14:09:44.06878145Z"} +2026/03/21 14:09:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:09:44.077044769Z"} +2026/03/21 14:09:49 [detection_layer] {"stage_name":"detection_layer","events_processed":341,"events_dropped":0,"avg_latency_ms":18.963432942715222,"throughput_eps":0,"last_update":"2026-03-21T14:09:44.210395332Z"} +2026/03/21 14:09:49 [transform_engine] {"stage_name":"transform_engine","events_processed":341,"events_dropped":0,"avg_latency_ms":1093.7479562934893,"throughput_eps":0,"last_update":"2026-03-21T14:09:44.210412065Z"} +2026/03/21 14:09:49 ───────────────────────────────────────────────── +2026/03/21 14:09:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:09:54 [log_collector] {"stage_name":"log_collector","events_processed":16099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3219.8,"last_update":"2026-03-21T14:09:49.068720545Z"} +2026/03/21 14:09:54 [metric_collector] {"stage_name":"metric_collector","events_processed":10259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2051.8,"last_update":"2026-03-21T14:09:49.069085645Z"} +2026/03/21 14:09:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:09:49.075858779Z"} +2026/03/21 14:09:54 [detection_layer] {"stage_name":"detection_layer","events_processed":341,"events_dropped":0,"avg_latency_ms":18.963432942715222,"throughput_eps":0,"last_update":"2026-03-21T14:09:49.21014776Z"} +2026/03/21 14:09:54 [transform_engine] {"stage_name":"transform_engine","events_processed":342,"events_dropped":0,"avg_latency_ms":1226.4173206347914,"throughput_eps":0,"last_update":"2026-03-21T14:09:50.967256134Z"} +2026/03/21 14:09:54 ───────────────────────────────────────────────── +2026/03/21 14:09:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:09:59 [log_collector] {"stage_name":"log_collector","events_processed":16396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3279.2,"last_update":"2026-03-21T14:09:59.068242262Z"} +2026/03/21 14:09:59 [metric_collector] {"stage_name":"metric_collector","events_processed":10264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2052.8,"last_update":"2026-03-21T14:09:54.0689857Z"} +2026/03/21 14:09:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:09:54.075414284Z"} +2026/03/21 14:09:59 [detection_layer] {"stage_name":"detection_layer","events_processed":342,"events_dropped":0,"avg_latency_ms":18.01005735417218,"throughput_eps":0,"last_update":"2026-03-21T14:09:54.20986824Z"} +2026/03/21 14:09:59 [transform_engine] {"stage_name":"transform_engine","events_processed":342,"events_dropped":0,"avg_latency_ms":1226.4173206347914,"throughput_eps":0,"last_update":"2026-03-21T14:09:54.209687944Z"} +2026/03/21 14:09:59 ───────────────────────────────────────────────── +2026/03/21 14:10:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:10:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:09:59.075678076Z"} +2026/03/21 14:10:04 [detection_layer] {"stage_name":"detection_layer","events_processed":342,"events_dropped":0,"avg_latency_ms":18.01005735417218,"throughput_eps":0,"last_update":"2026-03-21T14:09:59.209957147Z"} +2026/03/21 14:10:04 [transform_engine] {"stage_name":"transform_engine","events_processed":342,"events_dropped":0,"avg_latency_ms":1226.4173206347914,"throughput_eps":0,"last_update":"2026-03-21T14:09:59.209932971Z"} +2026/03/21 14:10:04 [log_collector] {"stage_name":"log_collector","events_processed":16396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3279.2,"last_update":"2026-03-21T14:09:59.068242262Z"} +2026/03/21 14:10:04 [metric_collector] {"stage_name":"metric_collector","events_processed":10269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2053.8,"last_update":"2026-03-21T14:09:59.068531145Z"} +2026/03/21 14:10:04 ───────────────────────────────────────────────── +Saved state: 16 clusters, 16449 messages, reason: none +2026/03/21 14:10:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:10:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:10:04.081774632Z"} +2026/03/21 14:10:09 [detection_layer] {"stage_name":"detection_layer","events_processed":342,"events_dropped":0,"avg_latency_ms":18.01005735417218,"throughput_eps":0,"last_update":"2026-03-21T14:10:04.210171435Z"} +2026/03/21 14:10:09 [transform_engine] {"stage_name":"transform_engine","events_processed":342,"events_dropped":0,"avg_latency_ms":1226.4173206347914,"throughput_eps":0,"last_update":"2026-03-21T14:10:04.210142679Z"} +2026/03/21 14:10:09 [log_collector] {"stage_name":"log_collector","events_processed":16448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3289.6,"last_update":"2026-03-21T14:10:04.068782395Z"} +2026/03/21 14:10:09 [metric_collector] {"stage_name":"metric_collector","events_processed":10274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2054.8,"last_update":"2026-03-21T14:10:04.069114931Z"} +2026/03/21 14:10:09 ───────────────────────────────────────────────── +2026/03/21 14:10:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:10:14 [detection_layer] {"stage_name":"detection_layer","events_processed":342,"events_dropped":0,"avg_latency_ms":18.01005735417218,"throughput_eps":0,"last_update":"2026-03-21T14:10:09.210447833Z"} +2026/03/21 14:10:14 [transform_engine] {"stage_name":"transform_engine","events_processed":342,"events_dropped":0,"avg_latency_ms":1226.4173206347914,"throughput_eps":0,"last_update":"2026-03-21T14:10:09.210462391Z"} +2026/03/21 14:10:14 [log_collector] {"stage_name":"log_collector","events_processed":16451,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3290.2,"last_update":"2026-03-21T14:10:09.068616115Z"} +2026/03/21 14:10:14 [metric_collector] {"stage_name":"metric_collector","events_processed":10279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2055.8,"last_update":"2026-03-21T14:10:09.068929044Z"} +2026/03/21 14:10:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:10:09.075246937Z"} +2026/03/21 14:10:14 ───────────────────────────────────────────────── +2026/03/21 14:10:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:10:19 [detection_layer] {"stage_name":"detection_layer","events_processed":342,"events_dropped":0,"avg_latency_ms":18.01005735417218,"throughput_eps":0,"last_update":"2026-03-21T14:10:14.21090349Z"} +2026/03/21 14:10:19 [transform_engine] {"stage_name":"transform_engine","events_processed":342,"events_dropped":0,"avg_latency_ms":1226.4173206347914,"throughput_eps":0,"last_update":"2026-03-21T14:10:14.209766992Z"} +2026/03/21 14:10:19 [log_collector] {"stage_name":"log_collector","events_processed":16451,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3290.2,"last_update":"2026-03-21T14:10:14.068383933Z"} +2026/03/21 14:10:19 [metric_collector] {"stage_name":"metric_collector","events_processed":10284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2056.8,"last_update":"2026-03-21T14:10:14.068706361Z"} +2026/03/21 14:10:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:10:14.074592898Z"} +2026/03/21 14:10:19 ───────────────────────────────────────────────── +2026/03/21 14:10:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:10:24 [detection_layer] {"stage_name":"detection_layer","events_processed":342,"events_dropped":0,"avg_latency_ms":18.01005735417218,"throughput_eps":0,"last_update":"2026-03-21T14:10:19.210612197Z"} +2026/03/21 14:10:24 [transform_engine] {"stage_name":"transform_engine","events_processed":343,"events_dropped":0,"avg_latency_ms":1003.7326239078332,"throughput_eps":0,"last_update":"2026-03-21T14:10:19.32349982Z"} +2026/03/21 14:10:24 [log_collector] {"stage_name":"log_collector","events_processed":16462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3292.4,"last_update":"2026-03-21T14:10:19.068492918Z"} +2026/03/21 14:10:24 [metric_collector] {"stage_name":"metric_collector","events_processed":10289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2057.8,"last_update":"2026-03-21T14:10:19.068830514Z"} +2026/03/21 14:10:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:10:19.078254637Z"} +2026/03/21 14:10:24 ───────────────────────────────────────────────── +2026/03/21 14:10:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:10:29 [transform_engine] {"stage_name":"transform_engine","events_processed":343,"events_dropped":0,"avg_latency_ms":1003.7326239078332,"throughput_eps":0,"last_update":"2026-03-21T14:10:24.210709319Z"} +2026/03/21 14:10:29 [log_collector] {"stage_name":"log_collector","events_processed":16476,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3295.2,"last_update":"2026-03-21T14:10:24.068234049Z"} +2026/03/21 14:10:29 [metric_collector] {"stage_name":"metric_collector","events_processed":10294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2058.8,"last_update":"2026-03-21T14:10:24.06890309Z"} +2026/03/21 14:10:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:10:24.078365807Z"} +2026/03/21 14:10:29 [detection_layer] {"stage_name":"detection_layer","events_processed":343,"events_dropped":0,"avg_latency_ms":18.146753683337742,"throughput_eps":0,"last_update":"2026-03-21T14:10:24.210840171Z"} +2026/03/21 14:10:29 ───────────────────────────────────────────────── +2026/03/21 14:10:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:10:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4122,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:10:29.077665254Z"} +2026/03/21 14:10:34 [detection_layer] {"stage_name":"detection_layer","events_processed":343,"events_dropped":0,"avg_latency_ms":18.146753683337742,"throughput_eps":0,"last_update":"2026-03-21T14:10:29.209925187Z"} +2026/03/21 14:10:34 [transform_engine] {"stage_name":"transform_engine","events_processed":343,"events_dropped":0,"avg_latency_ms":1003.7326239078332,"throughput_eps":0,"last_update":"2026-03-21T14:10:29.209946107Z"} +2026/03/21 14:10:34 [log_collector] {"stage_name":"log_collector","events_processed":16478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3295.6,"last_update":"2026-03-21T14:10:29.068273033Z"} +2026/03/21 14:10:34 [metric_collector] {"stage_name":"metric_collector","events_processed":10299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2059.8,"last_update":"2026-03-21T14:10:29.068857082Z"} +2026/03/21 14:10:34 ───────────────────────────────────────────────── +2026/03/21 14:10:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:10:39 [log_collector] {"stage_name":"log_collector","events_processed":16478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3295.6,"last_update":"2026-03-21T14:10:34.06807253Z"} +2026/03/21 14:10:39 [metric_collector] {"stage_name":"metric_collector","events_processed":10304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2060.8,"last_update":"2026-03-21T14:10:34.068332018Z"} +2026/03/21 14:10:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:10:34.078013192Z"} +2026/03/21 14:10:39 [detection_layer] {"stage_name":"detection_layer","events_processed":343,"events_dropped":0,"avg_latency_ms":18.146753683337742,"throughput_eps":0,"last_update":"2026-03-21T14:10:34.210309945Z"} +2026/03/21 14:10:39 [transform_engine] {"stage_name":"transform_engine","events_processed":343,"events_dropped":0,"avg_latency_ms":1003.7326239078332,"throughput_eps":0,"last_update":"2026-03-21T14:10:34.210258887Z"} +2026/03/21 14:10:39 ───────────────────────────────────────────────── +2026/03/21 14:10:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:10:44 [metric_collector] {"stage_name":"metric_collector","events_processed":10309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2061.8,"last_update":"2026-03-21T14:10:39.069472596Z"} +2026/03/21 14:10:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4126,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:10:39.078387764Z"} +2026/03/21 14:10:44 [detection_layer] {"stage_name":"detection_layer","events_processed":343,"events_dropped":0,"avg_latency_ms":18.146753683337742,"throughput_eps":0,"last_update":"2026-03-21T14:10:39.210860724Z"} +2026/03/21 14:10:44 [transform_engine] {"stage_name":"transform_engine","events_processed":343,"events_dropped":0,"avg_latency_ms":1003.7326239078332,"throughput_eps":0,"last_update":"2026-03-21T14:10:39.209642691Z"} +2026/03/21 14:10:44 [log_collector] {"stage_name":"log_collector","events_processed":16478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3295.6,"last_update":"2026-03-21T14:10:39.068699035Z"} +2026/03/21 14:10:44 ───────────────────────────────────────────────── +2026/03/21 14:10:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:10:49 [metric_collector] {"stage_name":"metric_collector","events_processed":10314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2062.8,"last_update":"2026-03-21T14:10:44.069081706Z"} +2026/03/21 14:10:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4128,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:10:44.078174462Z"} +2026/03/21 14:10:49 [detection_layer] {"stage_name":"detection_layer","events_processed":343,"events_dropped":0,"avg_latency_ms":18.146753683337742,"throughput_eps":0,"last_update":"2026-03-21T14:10:44.210461346Z"} +2026/03/21 14:10:49 [transform_engine] {"stage_name":"transform_engine","events_processed":343,"events_dropped":0,"avg_latency_ms":1003.7326239078332,"throughput_eps":0,"last_update":"2026-03-21T14:10:44.210515149Z"} +2026/03/21 14:10:49 [log_collector] {"stage_name":"log_collector","events_processed":16478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3295.6,"last_update":"2026-03-21T14:10:44.068738658Z"} +2026/03/21 14:10:49 ───────────────────────────────────────────────── +2026/03/21 14:10:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:10:54 [transform_engine] {"stage_name":"transform_engine","events_processed":344,"events_dropped":0,"avg_latency_ms":826.7472971262666,"throughput_eps":0,"last_update":"2026-03-21T14:10:49.329505752Z"} +2026/03/21 14:10:54 [log_collector] {"stage_name":"log_collector","events_processed":16478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3295.6,"last_update":"2026-03-21T14:10:49.06877109Z"} +2026/03/21 14:10:54 [metric_collector] {"stage_name":"metric_collector","events_processed":10319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2063.8,"last_update":"2026-03-21T14:10:49.069076786Z"} +2026/03/21 14:10:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4130,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:10:49.079276113Z"} +2026/03/21 14:10:54 [detection_layer] {"stage_name":"detection_layer","events_processed":343,"events_dropped":0,"avg_latency_ms":18.146753683337742,"throughput_eps":0,"last_update":"2026-03-21T14:10:49.211460289Z"} +2026/03/21 14:10:54 ───────────────────────────────────────────────── +2026/03/21 14:10:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:10:59 [detection_layer] {"stage_name":"detection_layer","events_processed":344,"events_dropped":0,"avg_latency_ms":18.821593946670195,"throughput_eps":0,"last_update":"2026-03-21T14:10:54.210010042Z"} +2026/03/21 14:10:59 [transform_engine] {"stage_name":"transform_engine","events_processed":344,"events_dropped":0,"avg_latency_ms":826.7472971262666,"throughput_eps":0,"last_update":"2026-03-21T14:10:54.210049397Z"} +2026/03/21 14:10:59 [log_collector] {"stage_name":"log_collector","events_processed":16478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3295.6,"last_update":"2026-03-21T14:10:54.068219784Z"} +2026/03/21 14:10:59 [metric_collector] {"stage_name":"metric_collector","events_processed":10324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2064.8,"last_update":"2026-03-21T14:10:54.068665728Z"} +2026/03/21 14:10:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:10:54.07574555Z"} +2026/03/21 14:10:59 ───────────────────────────────────────────────── +2026/03/21 14:11:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:11:04 [log_collector] {"stage_name":"log_collector","events_processed":16478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3295.6,"last_update":"2026-03-21T14:10:59.068070594Z"} +2026/03/21 14:11:04 [metric_collector] {"stage_name":"metric_collector","events_processed":10329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2065.8,"last_update":"2026-03-21T14:10:59.068323488Z"} +2026/03/21 14:11:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:10:59.075083226Z"} +2026/03/21 14:11:04 [detection_layer] {"stage_name":"detection_layer","events_processed":344,"events_dropped":0,"avg_latency_ms":18.821593946670195,"throughput_eps":0,"last_update":"2026-03-21T14:10:59.210363714Z"} +2026/03/21 14:11:04 [transform_engine] {"stage_name":"transform_engine","events_processed":344,"events_dropped":0,"avg_latency_ms":826.7472971262666,"throughput_eps":0,"last_update":"2026-03-21T14:10:59.210391386Z"} +2026/03/21 14:11:04 ───────────────────────────────────────────────── +2026/03/21 14:11:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:11:09 [detection_layer] {"stage_name":"detection_layer","events_processed":344,"events_dropped":0,"avg_latency_ms":18.821593946670195,"throughput_eps":0,"last_update":"2026-03-21T14:11:04.210167664Z"} +2026/03/21 14:11:09 [transform_engine] {"stage_name":"transform_engine","events_processed":344,"events_dropped":0,"avg_latency_ms":826.7472971262666,"throughput_eps":0,"last_update":"2026-03-21T14:11:04.210065589Z"} +2026/03/21 14:11:09 [log_collector] {"stage_name":"log_collector","events_processed":16478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3295.6,"last_update":"2026-03-21T14:11:04.06826375Z"} +2026/03/21 14:11:09 [metric_collector] {"stage_name":"metric_collector","events_processed":10334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2066.8,"last_update":"2026-03-21T14:11:04.06866585Z"} +2026/03/21 14:11:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:11:04.075639769Z"} +2026/03/21 14:11:09 ───────────────────────────────────────────────── +2026/03/21 14:11:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:11:14 [detection_layer] {"stage_name":"detection_layer","events_processed":344,"events_dropped":0,"avg_latency_ms":18.821593946670195,"throughput_eps":0,"last_update":"2026-03-21T14:11:09.210039419Z"} +2026/03/21 14:11:14 [transform_engine] {"stage_name":"transform_engine","events_processed":344,"events_dropped":0,"avg_latency_ms":826.7472971262666,"throughput_eps":0,"last_update":"2026-03-21T14:11:09.210073955Z"} +2026/03/21 14:11:14 [log_collector] {"stage_name":"log_collector","events_processed":16478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3295.6,"last_update":"2026-03-21T14:11:09.068701118Z"} +2026/03/21 14:11:14 [metric_collector] {"stage_name":"metric_collector","events_processed":10338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2067.6,"last_update":"2026-03-21T14:11:09.068622167Z"} +2026/03/21 14:11:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:11:09.07574997Z"} +2026/03/21 14:11:14 ───────────────────────────────────────────────── +2026/03/21 14:11:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:11:19 [metric_collector] {"stage_name":"metric_collector","events_processed":10344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2068.8,"last_update":"2026-03-21T14:11:14.068928837Z"} +2026/03/21 14:11:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:11:14.076927359Z"} +2026/03/21 14:11:19 [detection_layer] {"stage_name":"detection_layer","events_processed":344,"events_dropped":0,"avg_latency_ms":18.821593946670195,"throughput_eps":0,"last_update":"2026-03-21T14:11:14.210147369Z"} +2026/03/21 14:11:19 [transform_engine] {"stage_name":"transform_engine","events_processed":344,"events_dropped":0,"avg_latency_ms":826.7472971262666,"throughput_eps":0,"last_update":"2026-03-21T14:11:14.210169401Z"} +2026/03/21 14:11:19 [log_collector] {"stage_name":"log_collector","events_processed":16478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3295.6,"last_update":"2026-03-21T14:11:19.068219475Z"} +2026/03/21 14:11:19 ───────────────────────────────────────────────── +2026/03/21 14:11:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:11:24 [log_collector] {"stage_name":"log_collector","events_processed":16478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3295.6,"last_update":"2026-03-21T14:11:19.068219475Z"} +2026/03/21 14:11:24 [metric_collector] {"stage_name":"metric_collector","events_processed":10349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2069.8,"last_update":"2026-03-21T14:11:19.068715746Z"} +2026/03/21 14:11:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:11:19.07638643Z"} +2026/03/21 14:11:24 [detection_layer] {"stage_name":"detection_layer","events_processed":344,"events_dropped":0,"avg_latency_ms":18.821593946670195,"throughput_eps":0,"last_update":"2026-03-21T14:11:19.210677861Z"} +2026/03/21 14:11:24 [transform_engine] {"stage_name":"transform_engine","events_processed":345,"events_dropped":0,"avg_latency_ms":854.7626853010133,"throughput_eps":0,"last_update":"2026-03-21T14:11:20.177464127Z"} +2026/03/21 14:11:24 ───────────────────────────────────────────────── +2026/03/21 14:11:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:11:29 [detection_layer] {"stage_name":"detection_layer","events_processed":345,"events_dropped":0,"avg_latency_ms":18.171029757336157,"throughput_eps":0,"last_update":"2026-03-21T14:11:24.20986392Z"} +2026/03/21 14:11:29 [transform_engine] {"stage_name":"transform_engine","events_processed":345,"events_dropped":0,"avg_latency_ms":854.7626853010133,"throughput_eps":0,"last_update":"2026-03-21T14:11:24.209798385Z"} +2026/03/21 14:11:29 [log_collector] {"stage_name":"log_collector","events_processed":16478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3295.6,"last_update":"2026-03-21T14:11:24.068083343Z"} +2026/03/21 14:11:29 [metric_collector] {"stage_name":"metric_collector","events_processed":10354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2070.8,"last_update":"2026-03-21T14:11:24.068411651Z"} +2026/03/21 14:11:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:11:24.075590774Z"} +2026/03/21 14:11:29 ───────────────────────────────────────────────── +2026/03/21 14:11:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:11:34 [transform_engine] {"stage_name":"transform_engine","events_processed":345,"events_dropped":0,"avg_latency_ms":854.7626853010133,"throughput_eps":0,"last_update":"2026-03-21T14:11:29.209735978Z"} +2026/03/21 14:11:34 [log_collector] {"stage_name":"log_collector","events_processed":16478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3295.6,"last_update":"2026-03-21T14:11:34.068384159Z"} +2026/03/21 14:11:34 [metric_collector] {"stage_name":"metric_collector","events_processed":10359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2071.8,"last_update":"2026-03-21T14:11:29.069474841Z"} +2026/03/21 14:11:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:11:29.07752982Z"} +2026/03/21 14:11:34 [detection_layer] {"stage_name":"detection_layer","events_processed":345,"events_dropped":0,"avg_latency_ms":18.171029757336157,"throughput_eps":0,"last_update":"2026-03-21T14:11:29.209863372Z"} +2026/03/21 14:11:34 ───────────────────────────────────────────────── +2026/03/21 14:11:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:11:39 [log_collector] {"stage_name":"log_collector","events_processed":16478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3295.6,"last_update":"2026-03-21T14:11:34.068384159Z"} +2026/03/21 14:11:39 [metric_collector] {"stage_name":"metric_collector","events_processed":10364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2072.8,"last_update":"2026-03-21T14:11:34.068818691Z"} +2026/03/21 14:11:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:11:34.076326632Z"} +2026/03/21 14:11:39 [detection_layer] {"stage_name":"detection_layer","events_processed":345,"events_dropped":0,"avg_latency_ms":18.171029757336157,"throughput_eps":0,"last_update":"2026-03-21T14:11:34.210688779Z"} +2026/03/21 14:11:39 [transform_engine] {"stage_name":"transform_engine","events_processed":345,"events_dropped":0,"avg_latency_ms":854.7626853010133,"throughput_eps":0,"last_update":"2026-03-21T14:11:34.2107467Z"} +2026/03/21 14:11:39 ───────────────────────────────────────────────── +Saved state: 16 clusters, 16479 messages, reason: none +2026/03/21 14:11:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:11:44 [log_collector] {"stage_name":"log_collector","events_processed":16478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3295.6,"last_update":"2026-03-21T14:11:39.068244278Z"} +2026/03/21 14:11:44 [metric_collector] {"stage_name":"metric_collector","events_processed":10369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2073.8,"last_update":"2026-03-21T14:11:39.06858473Z"} +2026/03/21 14:11:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:11:39.078387368Z"} +2026/03/21 14:11:44 [detection_layer] {"stage_name":"detection_layer","events_processed":345,"events_dropped":0,"avg_latency_ms":18.171029757336157,"throughput_eps":0,"last_update":"2026-03-21T14:11:39.210856368Z"} +2026/03/21 14:11:44 [transform_engine] {"stage_name":"transform_engine","events_processed":345,"events_dropped":0,"avg_latency_ms":854.7626853010133,"throughput_eps":0,"last_update":"2026-03-21T14:11:39.209694803Z"} +2026/03/21 14:11:44 ───────────────────────────────────────────────── +2026/03/21 14:11:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:11:49 [log_collector] {"stage_name":"log_collector","events_processed":16492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3298.4,"last_update":"2026-03-21T14:11:44.068803343Z"} +2026/03/21 14:11:49 [metric_collector] {"stage_name":"metric_collector","events_processed":10374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2074.8,"last_update":"2026-03-21T14:11:44.069238267Z"} +2026/03/21 14:11:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:11:44.075175119Z"} +2026/03/21 14:11:49 [detection_layer] {"stage_name":"detection_layer","events_processed":345,"events_dropped":0,"avg_latency_ms":18.171029757336157,"throughput_eps":0,"last_update":"2026-03-21T14:11:44.210423462Z"} +2026/03/21 14:11:49 [transform_engine] {"stage_name":"transform_engine","events_processed":345,"events_dropped":0,"avg_latency_ms":854.7626853010133,"throughput_eps":0,"last_update":"2026-03-21T14:11:44.210441747Z"} +2026/03/21 14:11:49 ───────────────────────────────────────────────── +2026/03/21 14:11:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:11:54 [metric_collector] {"stage_name":"metric_collector","events_processed":10379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2075.8,"last_update":"2026-03-21T14:11:49.068298742Z"} +2026/03/21 14:11:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:11:49.077451405Z"} +2026/03/21 14:11:54 [detection_layer] {"stage_name":"detection_layer","events_processed":345,"events_dropped":0,"avg_latency_ms":18.171029757336157,"throughput_eps":0,"last_update":"2026-03-21T14:11:49.210760795Z"} +2026/03/21 14:11:54 [transform_engine] {"stage_name":"transform_engine","events_processed":346,"events_dropped":0,"avg_latency_ms":706.3139090408107,"throughput_eps":0,"last_update":"2026-03-21T14:11:49.323178025Z"} +2026/03/21 14:11:54 [log_collector] {"stage_name":"log_collector","events_processed":16492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3298.4,"last_update":"2026-03-21T14:11:49.068098058Z"} +2026/03/21 14:11:54 ───────────────────────────────────────────────── +2026/03/21 14:11:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:11:59 [log_collector] {"stage_name":"log_collector","events_processed":16492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3298.4,"last_update":"2026-03-21T14:11:54.068667268Z"} +2026/03/21 14:11:59 [metric_collector] {"stage_name":"metric_collector","events_processed":10384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2076.8,"last_update":"2026-03-21T14:11:54.069005185Z"} +2026/03/21 14:11:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:11:54.077656046Z"} +2026/03/21 14:11:59 [detection_layer] {"stage_name":"detection_layer","events_processed":346,"events_dropped":0,"avg_latency_ms":18.362243605868926,"throughput_eps":0,"last_update":"2026-03-21T14:11:54.210058098Z"} +2026/03/21 14:11:59 [transform_engine] {"stage_name":"transform_engine","events_processed":346,"events_dropped":0,"avg_latency_ms":706.3139090408107,"throughput_eps":0,"last_update":"2026-03-21T14:11:54.210094918Z"} +2026/03/21 14:11:59 ───────────────────────────────────────────────── +2026/03/21 14:12:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:12:04 [log_collector] {"stage_name":"log_collector","events_processed":16492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3298.4,"last_update":"2026-03-21T14:11:59.06805702Z"} +2026/03/21 14:12:04 [metric_collector] {"stage_name":"metric_collector","events_processed":10389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2077.8,"last_update":"2026-03-21T14:11:59.068660345Z"} +2026/03/21 14:12:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:11:59.079166982Z"} +2026/03/21 14:12:04 [detection_layer] {"stage_name":"detection_layer","events_processed":346,"events_dropped":0,"avg_latency_ms":18.362243605868926,"throughput_eps":0,"last_update":"2026-03-21T14:11:59.210552245Z"} +2026/03/21 14:12:04 [transform_engine] {"stage_name":"transform_engine","events_processed":346,"events_dropped":0,"avg_latency_ms":706.3139090408107,"throughput_eps":0,"last_update":"2026-03-21T14:11:59.210661545Z"} +2026/03/21 14:12:04 ───────────────────────────────────────────────── +2026/03/21 14:12:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:12:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:12:04.077919749Z"} +2026/03/21 14:12:09 [detection_layer] {"stage_name":"detection_layer","events_processed":346,"events_dropped":0,"avg_latency_ms":18.362243605868926,"throughput_eps":0,"last_update":"2026-03-21T14:12:04.210213223Z"} +2026/03/21 14:12:09 [transform_engine] {"stage_name":"transform_engine","events_processed":346,"events_dropped":0,"avg_latency_ms":706.3139090408107,"throughput_eps":0,"last_update":"2026-03-21T14:12:04.21018053Z"} +2026/03/21 14:12:09 [log_collector] {"stage_name":"log_collector","events_processed":16492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3298.4,"last_update":"2026-03-21T14:12:04.068101983Z"} +2026/03/21 14:12:09 [metric_collector] {"stage_name":"metric_collector","events_processed":10394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2078.8,"last_update":"2026-03-21T14:12:04.068448587Z"} +2026/03/21 14:12:09 ───────────────────────────────────────────────── +2026/03/21 14:12:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:12:14 [log_collector] {"stage_name":"log_collector","events_processed":16492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3298.4,"last_update":"2026-03-21T14:12:09.068676825Z"} +2026/03/21 14:12:14 [metric_collector] {"stage_name":"metric_collector","events_processed":10399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2079.8,"last_update":"2026-03-21T14:12:09.068963535Z"} +2026/03/21 14:12:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:12:09.077787588Z"} +2026/03/21 14:12:14 [detection_layer] {"stage_name":"detection_layer","events_processed":346,"events_dropped":0,"avg_latency_ms":18.362243605868926,"throughput_eps":0,"last_update":"2026-03-21T14:12:09.210338954Z"} +2026/03/21 14:12:14 [transform_engine] {"stage_name":"transform_engine","events_processed":346,"events_dropped":0,"avg_latency_ms":706.3139090408107,"throughput_eps":0,"last_update":"2026-03-21T14:12:09.210267528Z"} +2026/03/21 14:12:14 ───────────────────────────────────────────────── +2026/03/21 14:12:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:12:19 [log_collector] {"stage_name":"log_collector","events_processed":16492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3298.4,"last_update":"2026-03-21T14:12:14.068163515Z"} +2026/03/21 14:12:19 [metric_collector] {"stage_name":"metric_collector","events_processed":10404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2080.8,"last_update":"2026-03-21T14:12:14.068497526Z"} +2026/03/21 14:12:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:12:14.078077035Z"} +2026/03/21 14:12:19 [detection_layer] {"stage_name":"detection_layer","events_processed":346,"events_dropped":0,"avg_latency_ms":18.362243605868926,"throughput_eps":0,"last_update":"2026-03-21T14:12:14.210445592Z"} +2026/03/21 14:12:19 [transform_engine] {"stage_name":"transform_engine","events_processed":346,"events_dropped":0,"avg_latency_ms":706.3139090408107,"throughput_eps":0,"last_update":"2026-03-21T14:12:14.210336914Z"} +2026/03/21 14:12:19 ───────────────────────────────────────────────── +2026/03/21 14:12:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:12:24 [log_collector] {"stage_name":"log_collector","events_processed":16492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3298.4,"last_update":"2026-03-21T14:12:19.068634806Z"} +2026/03/21 14:12:24 [metric_collector] {"stage_name":"metric_collector","events_processed":10409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2081.8,"last_update":"2026-03-21T14:12:19.069143541Z"} +2026/03/21 14:12:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:12:19.0757891Z"} +2026/03/21 14:12:24 [detection_layer] {"stage_name":"detection_layer","events_processed":346,"events_dropped":0,"avg_latency_ms":18.362243605868926,"throughput_eps":0,"last_update":"2026-03-21T14:12:19.210143741Z"} +2026/03/21 14:12:24 [transform_engine] {"stage_name":"transform_engine","events_processed":347,"events_dropped":0,"avg_latency_ms":579.5437522326486,"throughput_eps":0,"last_update":"2026-03-21T14:12:19.282502317Z"} +2026/03/21 14:12:24 ───────────────────────────────────────────────── +2026/03/21 14:12:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:12:29 [log_collector] {"stage_name":"log_collector","events_processed":16492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3298.4,"last_update":"2026-03-21T14:12:24.068594771Z"} +2026/03/21 14:12:29 [metric_collector] {"stage_name":"metric_collector","events_processed":10414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2082.8,"last_update":"2026-03-21T14:12:24.069034955Z"} +2026/03/21 14:12:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:12:24.079881933Z"} +2026/03/21 14:12:29 [detection_layer] {"stage_name":"detection_layer","events_processed":347,"events_dropped":0,"avg_latency_ms":18.09904748469514,"throughput_eps":0,"last_update":"2026-03-21T14:12:24.210176837Z"} +2026/03/21 14:12:29 [transform_engine] {"stage_name":"transform_engine","events_processed":347,"events_dropped":0,"avg_latency_ms":579.5437522326486,"throughput_eps":0,"last_update":"2026-03-21T14:12:24.21015758Z"} +2026/03/21 14:12:29 ───────────────────────────────────────────────── +2026/03/21 14:12:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:12:34 [log_collector] {"stage_name":"log_collector","events_processed":16492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3298.4,"last_update":"2026-03-21T14:12:29.068242473Z"} +2026/03/21 14:12:34 [metric_collector] {"stage_name":"metric_collector","events_processed":10419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2083.8,"last_update":"2026-03-21T14:12:29.068589208Z"} +2026/03/21 14:12:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4170,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:12:29.077232614Z"} +2026/03/21 14:12:34 [detection_layer] {"stage_name":"detection_layer","events_processed":347,"events_dropped":0,"avg_latency_ms":18.09904748469514,"throughput_eps":0,"last_update":"2026-03-21T14:12:29.209868021Z"} +2026/03/21 14:12:34 [transform_engine] {"stage_name":"transform_engine","events_processed":347,"events_dropped":0,"avg_latency_ms":579.5437522326486,"throughput_eps":0,"last_update":"2026-03-21T14:12:29.209805321Z"} +2026/03/21 14:12:34 ───────────────────────────────────────────────── +2026/03/21 14:12:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:12:39 [metric_collector] {"stage_name":"metric_collector","events_processed":10424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2084.8,"last_update":"2026-03-21T14:12:34.068619725Z"} +2026/03/21 14:12:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:12:34.079471262Z"} +2026/03/21 14:12:39 [detection_layer] {"stage_name":"detection_layer","events_processed":347,"events_dropped":0,"avg_latency_ms":18.09904748469514,"throughput_eps":0,"last_update":"2026-03-21T14:12:34.210874188Z"} +2026/03/21 14:12:39 [transform_engine] {"stage_name":"transform_engine","events_processed":347,"events_dropped":0,"avg_latency_ms":579.5437522326486,"throughput_eps":0,"last_update":"2026-03-21T14:12:34.209711Z"} +2026/03/21 14:12:39 [log_collector] {"stage_name":"log_collector","events_processed":16492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3298.4,"last_update":"2026-03-21T14:12:34.06816249Z"} +2026/03/21 14:12:39 ───────────────────────────────────────────────── +2026/03/21 14:12:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:12:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:12:39.078151779Z"} +2026/03/21 14:12:44 [detection_layer] {"stage_name":"detection_layer","events_processed":347,"events_dropped":0,"avg_latency_ms":18.09904748469514,"throughput_eps":0,"last_update":"2026-03-21T14:12:39.210405044Z"} +2026/03/21 14:12:44 [transform_engine] {"stage_name":"transform_engine","events_processed":347,"events_dropped":0,"avg_latency_ms":579.5437522326486,"throughput_eps":0,"last_update":"2026-03-21T14:12:39.210510926Z"} +2026/03/21 14:12:44 [log_collector] {"stage_name":"log_collector","events_processed":16492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3298.4,"last_update":"2026-03-21T14:12:39.068595634Z"} +2026/03/21 14:12:44 [metric_collector] {"stage_name":"metric_collector","events_processed":10429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2085.8,"last_update":"2026-03-21T14:12:39.068919604Z"} +2026/03/21 14:12:44 ───────────────────────────────────────────────── +Saved state: 16 clusters, 16493 messages, reason: none +2026/03/21 14:12:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:12:49 [detection_layer] {"stage_name":"detection_layer","events_processed":347,"events_dropped":0,"avg_latency_ms":18.09904748469514,"throughput_eps":0,"last_update":"2026-03-21T14:12:44.210171616Z"} +2026/03/21 14:12:49 [transform_engine] {"stage_name":"transform_engine","events_processed":347,"events_dropped":0,"avg_latency_ms":579.5437522326486,"throughput_eps":0,"last_update":"2026-03-21T14:12:44.210213094Z"} +2026/03/21 14:12:49 [log_collector] {"stage_name":"log_collector","events_processed":16492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3298.4,"last_update":"2026-03-21T14:12:44.068687429Z"} +2026/03/21 14:12:49 [metric_collector] {"stage_name":"metric_collector","events_processed":10434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2086.8,"last_update":"2026-03-21T14:12:44.069045965Z"} +2026/03/21 14:12:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:12:44.077901819Z"} +2026/03/21 14:12:49 ───────────────────────────────────────────────── +2026/03/21 14:12:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:12:54 [transform_engine] {"stage_name":"transform_engine","events_processed":348,"events_dropped":0,"avg_latency_ms":485.7447395861189,"throughput_eps":0,"last_update":"2026-03-21T14:12:49.321220564Z"} +2026/03/21 14:12:54 [log_collector] {"stage_name":"log_collector","events_processed":16497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3299.4,"last_update":"2026-03-21T14:12:49.068662002Z"} +2026/03/21 14:12:54 [metric_collector] {"stage_name":"metric_collector","events_processed":10439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2087.8,"last_update":"2026-03-21T14:12:49.06906306Z"} +2026/03/21 14:12:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:12:49.075436188Z"} +2026/03/21 14:12:54 [detection_layer] {"stage_name":"detection_layer","events_processed":347,"events_dropped":0,"avg_latency_ms":18.09904748469514,"throughput_eps":0,"last_update":"2026-03-21T14:12:49.210635245Z"} +2026/03/21 14:12:54 ───────────────────────────────────────────────── +2026/03/21 14:12:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:12:59 [log_collector] {"stage_name":"log_collector","events_processed":16497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3299.4,"last_update":"2026-03-21T14:12:54.068557799Z"} +2026/03/21 14:12:59 [metric_collector] {"stage_name":"metric_collector","events_processed":10444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2088.8,"last_update":"2026-03-21T14:12:54.068858164Z"} +2026/03/21 14:12:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:12:54.07759016Z"} +2026/03/21 14:12:59 [detection_layer] {"stage_name":"detection_layer","events_processed":348,"events_dropped":0,"avg_latency_ms":16.969848987756116,"throughput_eps":0,"last_update":"2026-03-21T14:12:54.210804566Z"} +2026/03/21 14:12:59 [transform_engine] {"stage_name":"transform_engine","events_processed":348,"events_dropped":0,"avg_latency_ms":485.7447395861189,"throughput_eps":0,"last_update":"2026-03-21T14:12:54.209717884Z"} +2026/03/21 14:12:59 ───────────────────────────────────────────────── +2026/03/21 14:13:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:13:04 [detection_layer] {"stage_name":"detection_layer","events_processed":348,"events_dropped":0,"avg_latency_ms":16.969848987756116,"throughput_eps":0,"last_update":"2026-03-21T14:12:59.210108925Z"} +2026/03/21 14:13:04 [transform_engine] {"stage_name":"transform_engine","events_processed":348,"events_dropped":0,"avg_latency_ms":485.7447395861189,"throughput_eps":0,"last_update":"2026-03-21T14:12:59.21008063Z"} +2026/03/21 14:13:04 [log_collector] {"stage_name":"log_collector","events_processed":16497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3299.4,"last_update":"2026-03-21T14:12:59.068569192Z"} +2026/03/21 14:13:04 [metric_collector] {"stage_name":"metric_collector","events_processed":10449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2089.8,"last_update":"2026-03-21T14:12:59.068962516Z"} +2026/03/21 14:13:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:12:59.075845811Z"} +2026/03/21 14:13:04 ───────────────────────────────────────────────── +2026/03/21 14:13:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:13:09 [log_collector] {"stage_name":"log_collector","events_processed":16497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3299.4,"last_update":"2026-03-21T14:13:09.068762346Z"} +2026/03/21 14:13:09 [metric_collector] {"stage_name":"metric_collector","events_processed":10459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2091.8,"last_update":"2026-03-21T14:13:09.069094002Z"} +2026/03/21 14:13:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:13:04.078308994Z"} +2026/03/21 14:13:09 [detection_layer] {"stage_name":"detection_layer","events_processed":348,"events_dropped":0,"avg_latency_ms":16.969848987756116,"throughput_eps":0,"last_update":"2026-03-21T14:13:04.210386602Z"} +2026/03/21 14:13:09 [transform_engine] {"stage_name":"transform_engine","events_processed":348,"events_dropped":0,"avg_latency_ms":485.7447395861189,"throughput_eps":0,"last_update":"2026-03-21T14:13:04.21037009Z"} +2026/03/21 14:13:09 ───────────────────────────────────────────────── +2026/03/21 14:13:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:13:14 [transform_engine] {"stage_name":"transform_engine","events_processed":348,"events_dropped":0,"avg_latency_ms":485.7447395861189,"throughput_eps":0,"last_update":"2026-03-21T14:13:09.210463828Z"} +2026/03/21 14:13:14 [log_collector] {"stage_name":"log_collector","events_processed":16497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3299.4,"last_update":"2026-03-21T14:13:14.068070033Z"} +2026/03/21 14:13:14 [metric_collector] {"stage_name":"metric_collector","events_processed":10459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2091.8,"last_update":"2026-03-21T14:13:09.069094002Z"} +2026/03/21 14:13:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:13:09.080280349Z"} +2026/03/21 14:13:14 [detection_layer] {"stage_name":"detection_layer","events_processed":348,"events_dropped":0,"avg_latency_ms":16.969848987756116,"throughput_eps":0,"last_update":"2026-03-21T14:13:09.210520647Z"} +2026/03/21 14:13:14 ───────────────────────────────────────────────── +2026/03/21 14:13:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:13:19 [log_collector] {"stage_name":"log_collector","events_processed":16497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3299.4,"last_update":"2026-03-21T14:13:14.068070033Z"} +2026/03/21 14:13:19 [metric_collector] {"stage_name":"metric_collector","events_processed":10464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2092.8,"last_update":"2026-03-21T14:13:14.068299222Z"} +2026/03/21 14:13:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:13:14.080820276Z"} +2026/03/21 14:13:19 [detection_layer] {"stage_name":"detection_layer","events_processed":348,"events_dropped":0,"avg_latency_ms":16.969848987756116,"throughput_eps":0,"last_update":"2026-03-21T14:13:14.210436128Z"} +2026/03/21 14:13:19 [transform_engine] {"stage_name":"transform_engine","events_processed":348,"events_dropped":0,"avg_latency_ms":485.7447395861189,"throughput_eps":0,"last_update":"2026-03-21T14:13:14.210469692Z"} +2026/03/21 14:13:19 ───────────────────────────────────────────────── +2026/03/21 14:13:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:13:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:13:19.079509844Z"} +2026/03/21 14:13:24 [detection_layer] {"stage_name":"detection_layer","events_processed":348,"events_dropped":0,"avg_latency_ms":16.969848987756116,"throughput_eps":0,"last_update":"2026-03-21T14:13:19.210778473Z"} +2026/03/21 14:13:24 [transform_engine] {"stage_name":"transform_engine","events_processed":349,"events_dropped":0,"avg_latency_ms":872.6657828688951,"throughput_eps":0,"last_update":"2026-03-21T14:13:21.630034152Z"} +2026/03/21 14:13:24 [log_collector] {"stage_name":"log_collector","events_processed":16497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3299.4,"last_update":"2026-03-21T14:13:19.068057948Z"} +2026/03/21 14:13:24 [metric_collector] {"stage_name":"metric_collector","events_processed":10469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2093.8,"last_update":"2026-03-21T14:13:19.068507048Z"} +2026/03/21 14:13:24 ───────────────────────────────────────────────── +2026/03/21 14:13:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:13:29 [log_collector] {"stage_name":"log_collector","events_processed":16497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3299.4,"last_update":"2026-03-21T14:13:24.068444332Z"} +2026/03/21 14:13:29 [metric_collector] {"stage_name":"metric_collector","events_processed":10479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2095.8,"last_update":"2026-03-21T14:13:29.068192418Z"} +2026/03/21 14:13:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:13:24.076177926Z"} +2026/03/21 14:13:29 [detection_layer] {"stage_name":"detection_layer","events_processed":349,"events_dropped":0,"avg_latency_ms":16.203500390204894,"throughput_eps":0,"last_update":"2026-03-21T14:13:24.210307995Z"} +2026/03/21 14:13:29 [transform_engine] {"stage_name":"transform_engine","events_processed":349,"events_dropped":0,"avg_latency_ms":872.6657828688951,"throughput_eps":0,"last_update":"2026-03-21T14:13:24.210322503Z"} +2026/03/21 14:13:29 ───────────────────────────────────────────────── +2026/03/21 14:13:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:13:34 [log_collector] {"stage_name":"log_collector","events_processed":16506,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3301.2,"last_update":"2026-03-21T14:13:29.068264696Z"} +2026/03/21 14:13:34 [metric_collector] {"stage_name":"metric_collector","events_processed":10479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2095.8,"last_update":"2026-03-21T14:13:29.068192418Z"} +2026/03/21 14:13:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:13:29.075771475Z"} +2026/03/21 14:13:34 [detection_layer] {"stage_name":"detection_layer","events_processed":349,"events_dropped":0,"avg_latency_ms":16.203500390204894,"throughput_eps":0,"last_update":"2026-03-21T14:13:29.210033215Z"} +2026/03/21 14:13:34 [transform_engine] {"stage_name":"transform_engine","events_processed":349,"events_dropped":0,"avg_latency_ms":872.6657828688951,"throughput_eps":0,"last_update":"2026-03-21T14:13:29.210113479Z"} +2026/03/21 14:13:34 ───────────────────────────────────────────────── +2026/03/21 14:13:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:13:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:13:34.076457059Z"} +2026/03/21 14:13:39 [detection_layer] {"stage_name":"detection_layer","events_processed":349,"events_dropped":0,"avg_latency_ms":16.203500390204894,"throughput_eps":0,"last_update":"2026-03-21T14:13:34.210788563Z"} +2026/03/21 14:13:39 [transform_engine] {"stage_name":"transform_engine","events_processed":349,"events_dropped":0,"avg_latency_ms":872.6657828688951,"throughput_eps":0,"last_update":"2026-03-21T14:13:34.20965417Z"} +2026/03/21 14:13:39 [log_collector] {"stage_name":"log_collector","events_processed":16508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3301.6,"last_update":"2026-03-21T14:13:34.068761267Z"} +2026/03/21 14:13:39 [metric_collector] {"stage_name":"metric_collector","events_processed":10484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2096.8,"last_update":"2026-03-21T14:13:34.069240225Z"} +2026/03/21 14:13:39 ───────────────────────────────────────────────── +2026/03/21 14:13:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:13:44 [transform_engine] {"stage_name":"transform_engine","events_processed":349,"events_dropped":0,"avg_latency_ms":872.6657828688951,"throughput_eps":0,"last_update":"2026-03-21T14:13:39.209847678Z"} +2026/03/21 14:13:44 [log_collector] {"stage_name":"log_collector","events_processed":16670,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3334,"last_update":"2026-03-21T14:13:39.0683041Z"} +2026/03/21 14:13:44 [metric_collector] {"stage_name":"metric_collector","events_processed":10489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2097.8,"last_update":"2026-03-21T14:13:39.068790491Z"} +2026/03/21 14:13:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:13:39.077384604Z"} +2026/03/21 14:13:44 [detection_layer] {"stage_name":"detection_layer","events_processed":349,"events_dropped":0,"avg_latency_ms":16.203500390204894,"throughput_eps":0,"last_update":"2026-03-21T14:13:39.20987501Z"} +2026/03/21 14:13:44 ───────────────────────────────────────────────── +2026/03/21 14:13:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:13:49 [log_collector] {"stage_name":"log_collector","events_processed":16852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3370.4,"last_update":"2026-03-21T14:13:44.068804643Z"} +2026/03/21 14:13:49 [metric_collector] {"stage_name":"metric_collector","events_processed":10494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2098.8,"last_update":"2026-03-21T14:13:44.069160505Z"} +2026/03/21 14:13:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:13:44.079302101Z"} +2026/03/21 14:13:49 [detection_layer] {"stage_name":"detection_layer","events_processed":349,"events_dropped":0,"avg_latency_ms":16.203500390204894,"throughput_eps":0,"last_update":"2026-03-21T14:13:44.210696158Z"} +2026/03/21 14:13:49 [transform_engine] {"stage_name":"transform_engine","events_processed":349,"events_dropped":0,"avg_latency_ms":872.6657828688951,"throughput_eps":0,"last_update":"2026-03-21T14:13:44.210645191Z"} +2026/03/21 14:13:49 ───────────────────────────────────────────────── +Saved state: 16 clusters, 16861 messages, reason: none +2026/03/21 14:13:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:13:54 [log_collector] {"stage_name":"log_collector","events_processed":16860,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3372,"last_update":"2026-03-21T14:13:49.068088568Z"} +2026/03/21 14:13:54 [metric_collector] {"stage_name":"metric_collector","events_processed":10499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2099.8,"last_update":"2026-03-21T14:13:49.068525245Z"} +2026/03/21 14:13:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:13:49.074972244Z"} +2026/03/21 14:13:54 [detection_layer] {"stage_name":"detection_layer","events_processed":349,"events_dropped":0,"avg_latency_ms":16.203500390204894,"throughput_eps":0,"last_update":"2026-03-21T14:13:49.210432591Z"} +2026/03/21 14:13:54 [transform_engine] {"stage_name":"transform_engine","events_processed":350,"events_dropped":0,"avg_latency_ms":720.1026038951161,"throughput_eps":0,"last_update":"2026-03-21T14:13:49.320054883Z"} +2026/03/21 14:13:54 ───────────────────────────────────────────────── +2026/03/21 14:13:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:13:59 [log_collector] {"stage_name":"log_collector","events_processed":16863,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3372.6,"last_update":"2026-03-21T14:13:54.068473307Z"} +2026/03/21 14:13:59 [metric_collector] {"stage_name":"metric_collector","events_processed":10504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2100.8,"last_update":"2026-03-21T14:13:54.06960763Z"} +2026/03/21 14:13:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:13:54.076783816Z"} +2026/03/21 14:13:59 [detection_layer] {"stage_name":"detection_layer","events_processed":350,"events_dropped":0,"avg_latency_ms":15.861899512163916,"throughput_eps":0,"last_update":"2026-03-21T14:13:54.210040711Z"} +2026/03/21 14:13:59 [transform_engine] {"stage_name":"transform_engine","events_processed":350,"events_dropped":0,"avg_latency_ms":720.1026038951161,"throughput_eps":0,"last_update":"2026-03-21T14:13:54.210122518Z"} +2026/03/21 14:13:59 ───────────────────────────────────────────────── +2026/03/21 14:14:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:14:04 [metric_collector] {"stage_name":"metric_collector","events_processed":10509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2101.8,"last_update":"2026-03-21T14:13:59.068802254Z"} +2026/03/21 14:14:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4206,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:13:59.076809282Z"} +2026/03/21 14:14:04 [detection_layer] {"stage_name":"detection_layer","events_processed":350,"events_dropped":0,"avg_latency_ms":15.861899512163916,"throughput_eps":0,"last_update":"2026-03-21T14:13:59.210166929Z"} +2026/03/21 14:14:04 [transform_engine] {"stage_name":"transform_engine","events_processed":350,"events_dropped":0,"avg_latency_ms":720.1026038951161,"throughput_eps":0,"last_update":"2026-03-21T14:13:59.210184232Z"} +2026/03/21 14:14:04 [log_collector] {"stage_name":"log_collector","events_processed":16863,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3372.6,"last_update":"2026-03-21T14:13:59.068808997Z"} +2026/03/21 14:14:04 ───────────────────────────────────────────────── +2026/03/21 14:14:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:14:09 [log_collector] {"stage_name":"log_collector","events_processed":16890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3378,"last_update":"2026-03-21T14:14:09.068158979Z"} +2026/03/21 14:14:09 [metric_collector] {"stage_name":"metric_collector","events_processed":10514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2102.8,"last_update":"2026-03-21T14:14:04.068492733Z"} +2026/03/21 14:14:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:14:04.077949056Z"} +2026/03/21 14:14:09 [detection_layer] {"stage_name":"detection_layer","events_processed":350,"events_dropped":0,"avg_latency_ms":15.861899512163916,"throughput_eps":0,"last_update":"2026-03-21T14:14:04.210291259Z"} +2026/03/21 14:14:09 [transform_engine] {"stage_name":"transform_engine","events_processed":350,"events_dropped":0,"avg_latency_ms":720.1026038951161,"throughput_eps":0,"last_update":"2026-03-21T14:14:04.210301638Z"} +2026/03/21 14:14:09 ───────────────────────────────────────────────── +2026/03/21 14:14:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:14:14 [log_collector] {"stage_name":"log_collector","events_processed":16890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3378,"last_update":"2026-03-21T14:14:09.068158979Z"} +2026/03/21 14:14:14 [metric_collector] {"stage_name":"metric_collector","events_processed":10519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2103.8,"last_update":"2026-03-21T14:14:09.068855323Z"} +2026/03/21 14:14:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4210,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:14:09.074702443Z"} +2026/03/21 14:14:14 [detection_layer] {"stage_name":"detection_layer","events_processed":350,"events_dropped":0,"avg_latency_ms":15.861899512163916,"throughput_eps":0,"last_update":"2026-03-21T14:14:09.209961263Z"} +2026/03/21 14:14:14 [transform_engine] {"stage_name":"transform_engine","events_processed":350,"events_dropped":0,"avg_latency_ms":720.1026038951161,"throughput_eps":0,"last_update":"2026-03-21T14:14:09.209970591Z"} +2026/03/21 14:14:14 ───────────────────────────────────────────────── +2026/03/21 14:14:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:14:19 [log_collector] {"stage_name":"log_collector","events_processed":16890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3378,"last_update":"2026-03-21T14:14:14.068728654Z"} +2026/03/21 14:14:19 [metric_collector] {"stage_name":"metric_collector","events_processed":10524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2104.8,"last_update":"2026-03-21T14:14:14.069342329Z"} +2026/03/21 14:14:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:14:14.078846814Z"} +2026/03/21 14:14:19 [detection_layer] {"stage_name":"detection_layer","events_processed":350,"events_dropped":0,"avg_latency_ms":15.861899512163916,"throughput_eps":0,"last_update":"2026-03-21T14:14:14.210180074Z"} +2026/03/21 14:14:19 [transform_engine] {"stage_name":"transform_engine","events_processed":350,"events_dropped":0,"avg_latency_ms":720.1026038951161,"throughput_eps":0,"last_update":"2026-03-21T14:14:14.210194552Z"} +2026/03/21 14:14:19 ───────────────────────────────────────────────── +2026/03/21 14:14:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:14:24 [metric_collector] {"stage_name":"metric_collector","events_processed":10529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2105.8,"last_update":"2026-03-21T14:14:19.06865005Z"} +2026/03/21 14:14:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:14:19.078419443Z"} +2026/03/21 14:14:24 [detection_layer] {"stage_name":"detection_layer","events_processed":350,"events_dropped":0,"avg_latency_ms":15.861899512163916,"throughput_eps":0,"last_update":"2026-03-21T14:14:19.210670581Z"} +2026/03/21 14:14:24 [transform_engine] {"stage_name":"transform_engine","events_processed":351,"events_dropped":0,"avg_latency_ms":599.397890516093,"throughput_eps":0,"last_update":"2026-03-21T14:14:19.327263356Z"} +2026/03/21 14:14:24 [log_collector] {"stage_name":"log_collector","events_processed":16890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3378,"last_update":"2026-03-21T14:14:19.068074828Z"} +2026/03/21 14:14:24 ───────────────────────────────────────────────── +2026/03/21 14:14:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:14:29 [log_collector] {"stage_name":"log_collector","events_processed":16890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3378,"last_update":"2026-03-21T14:14:24.068292787Z"} +2026/03/21 14:14:29 [metric_collector] {"stage_name":"metric_collector","events_processed":10534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2106.8,"last_update":"2026-03-21T14:14:24.06877486Z"} +2026/03/21 14:14:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:14:24.076806074Z"} +2026/03/21 14:14:29 [detection_layer] {"stage_name":"detection_layer","events_processed":351,"events_dropped":0,"avg_latency_ms":16.831549609731134,"throughput_eps":0,"last_update":"2026-03-21T14:14:24.209972596Z"} +2026/03/21 14:14:29 [transform_engine] {"stage_name":"transform_engine","events_processed":351,"events_dropped":0,"avg_latency_ms":599.397890516093,"throughput_eps":0,"last_update":"2026-03-21T14:14:24.209942237Z"} +2026/03/21 14:14:29 ───────────────────────────────────────────────── +2026/03/21 14:14:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:14:34 [detection_layer] {"stage_name":"detection_layer","events_processed":351,"events_dropped":0,"avg_latency_ms":16.831549609731134,"throughput_eps":0,"last_update":"2026-03-21T14:14:29.210281243Z"} +2026/03/21 14:14:34 [transform_engine] {"stage_name":"transform_engine","events_processed":351,"events_dropped":0,"avg_latency_ms":599.397890516093,"throughput_eps":0,"last_update":"2026-03-21T14:14:29.20978894Z"} +2026/03/21 14:14:34 [log_collector] {"stage_name":"log_collector","events_processed":16890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3378,"last_update":"2026-03-21T14:14:29.068103922Z"} +2026/03/21 14:14:34 [metric_collector] {"stage_name":"metric_collector","events_processed":10539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2107.8,"last_update":"2026-03-21T14:14:29.068670547Z"} +2026/03/21 14:14:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:14:29.078643039Z"} +2026/03/21 14:14:34 ───────────────────────────────────────────────── +2026/03/21 14:14:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:14:39 [metric_collector] {"stage_name":"metric_collector","events_processed":10544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2108.8,"last_update":"2026-03-21T14:14:34.069099021Z"} +2026/03/21 14:14:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:14:34.07920067Z"} +2026/03/21 14:14:39 [detection_layer] {"stage_name":"detection_layer","events_processed":351,"events_dropped":0,"avg_latency_ms":16.831549609731134,"throughput_eps":0,"last_update":"2026-03-21T14:14:34.210477912Z"} +2026/03/21 14:14:39 [transform_engine] {"stage_name":"transform_engine","events_processed":351,"events_dropped":0,"avg_latency_ms":599.397890516093,"throughput_eps":0,"last_update":"2026-03-21T14:14:34.210454106Z"} +2026/03/21 14:14:39 [log_collector] {"stage_name":"log_collector","events_processed":16890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3378,"last_update":"2026-03-21T14:14:34.068704425Z"} +2026/03/21 14:14:39 ───────────────────────────────────────────────── +2026/03/21 14:14:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:14:44 [log_collector] {"stage_name":"log_collector","events_processed":16890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3378,"last_update":"2026-03-21T14:14:39.068940774Z"} +2026/03/21 14:14:44 [metric_collector] {"stage_name":"metric_collector","events_processed":10549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2109.8,"last_update":"2026-03-21T14:14:39.069173048Z"} +2026/03/21 14:14:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4222,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:14:39.077788442Z"} +2026/03/21 14:14:44 [detection_layer] {"stage_name":"detection_layer","events_processed":351,"events_dropped":0,"avg_latency_ms":16.831549609731134,"throughput_eps":0,"last_update":"2026-03-21T14:14:39.210067122Z"} +2026/03/21 14:14:44 [transform_engine] {"stage_name":"transform_engine","events_processed":351,"events_dropped":0,"avg_latency_ms":599.397890516093,"throughput_eps":0,"last_update":"2026-03-21T14:14:39.210109243Z"} +2026/03/21 14:14:44 ───────────────────────────────────────────────── +2026/03/21 14:14:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:14:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:14:44.077571279Z"} +2026/03/21 14:14:49 [detection_layer] {"stage_name":"detection_layer","events_processed":351,"events_dropped":0,"avg_latency_ms":16.831549609731134,"throughput_eps":0,"last_update":"2026-03-21T14:14:44.209982492Z"} +2026/03/21 14:14:49 [transform_engine] {"stage_name":"transform_engine","events_processed":351,"events_dropped":0,"avg_latency_ms":599.397890516093,"throughput_eps":0,"last_update":"2026-03-21T14:14:44.209855859Z"} +2026/03/21 14:14:49 [log_collector] {"stage_name":"log_collector","events_processed":16890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3378,"last_update":"2026-03-21T14:14:44.068724021Z"} +2026/03/21 14:14:49 [metric_collector] {"stage_name":"metric_collector","events_processed":10554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2110.8,"last_update":"2026-03-21T14:14:44.069159486Z"} +2026/03/21 14:14:49 ───────────────────────────────────────────────── +2026/03/21 14:14:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:14:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:14:49.077689071Z"} +2026/03/21 14:14:54 [detection_layer] {"stage_name":"detection_layer","events_processed":351,"events_dropped":0,"avg_latency_ms":16.831549609731134,"throughput_eps":0,"last_update":"2026-03-21T14:14:49.21057242Z"} +2026/03/21 14:14:54 [transform_engine] {"stage_name":"transform_engine","events_processed":352,"events_dropped":0,"avg_latency_ms":493.64130501287434,"throughput_eps":0,"last_update":"2026-03-21T14:14:49.280775884Z"} +2026/03/21 14:14:54 [log_collector] {"stage_name":"log_collector","events_processed":16890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3378,"last_update":"2026-03-21T14:14:49.068541739Z"} +2026/03/21 14:14:54 [metric_collector] {"stage_name":"metric_collector","events_processed":10559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2111.8,"last_update":"2026-03-21T14:14:49.06917894Z"} +2026/03/21 14:14:54 ───────────────────────────────────────────────── +2026/03/21 14:14:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:14:59 [detection_layer] {"stage_name":"detection_layer","events_processed":352,"events_dropped":0,"avg_latency_ms":17.97939068778491,"throughput_eps":0,"last_update":"2026-03-21T14:14:54.210624644Z"} +2026/03/21 14:14:59 [transform_engine] {"stage_name":"transform_engine","events_processed":352,"events_dropped":0,"avg_latency_ms":493.64130501287434,"throughput_eps":0,"last_update":"2026-03-21T14:14:54.210768129Z"} +2026/03/21 14:14:59 [log_collector] {"stage_name":"log_collector","events_processed":16890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3378,"last_update":"2026-03-21T14:14:54.06807533Z"} +2026/03/21 14:14:59 [metric_collector] {"stage_name":"metric_collector","events_processed":10564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2112.8,"last_update":"2026-03-21T14:14:54.068501678Z"} +2026/03/21 14:14:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:14:54.078544234Z"} +2026/03/21 14:14:59 ───────────────────────────────────────────────── +2026/03/21 14:15:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:15:04 [detection_layer] {"stage_name":"detection_layer","events_processed":352,"events_dropped":0,"avg_latency_ms":17.97939068778491,"throughput_eps":0,"last_update":"2026-03-21T14:14:59.21084343Z"} +2026/03/21 14:15:04 [transform_engine] {"stage_name":"transform_engine","events_processed":352,"events_dropped":0,"avg_latency_ms":493.64130501287434,"throughput_eps":0,"last_update":"2026-03-21T14:14:59.209759574Z"} +2026/03/21 14:15:04 [log_collector] {"stage_name":"log_collector","events_processed":16890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3378,"last_update":"2026-03-21T14:14:59.06857141Z"} +2026/03/21 14:15:04 [metric_collector] {"stage_name":"metric_collector","events_processed":10569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2113.8,"last_update":"2026-03-21T14:14:59.068899628Z"} +2026/03/21 14:15:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:14:59.075526181Z"} +2026/03/21 14:15:04 ───────────────────────────────────────────────── +2026/03/21 14:15:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:15:09 [log_collector] {"stage_name":"log_collector","events_processed":16890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3378,"last_update":"2026-03-21T14:15:04.068185774Z"} +2026/03/21 14:15:09 [metric_collector] {"stage_name":"metric_collector","events_processed":10573,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2114.6,"last_update":"2026-03-21T14:15:04.068287579Z"} +2026/03/21 14:15:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:15:04.076880699Z"} +2026/03/21 14:15:09 [detection_layer] {"stage_name":"detection_layer","events_processed":352,"events_dropped":0,"avg_latency_ms":17.97939068778491,"throughput_eps":0,"last_update":"2026-03-21T14:15:04.210275287Z"} +2026/03/21 14:15:09 [transform_engine] {"stage_name":"transform_engine","events_processed":352,"events_dropped":0,"avg_latency_ms":493.64130501287434,"throughput_eps":0,"last_update":"2026-03-21T14:15:04.210405646Z"} +2026/03/21 14:15:09 ───────────────────────────────────────────────── +2026/03/21 14:15:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:15:14 [log_collector] {"stage_name":"log_collector","events_processed":16890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3378,"last_update":"2026-03-21T14:15:09.068604768Z"} +2026/03/21 14:15:14 [metric_collector] {"stage_name":"metric_collector","events_processed":10578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2115.6,"last_update":"2026-03-21T14:15:09.068612182Z"} +2026/03/21 14:15:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:15:09.076136695Z"} +2026/03/21 14:15:14 [detection_layer] {"stage_name":"detection_layer","events_processed":352,"events_dropped":0,"avg_latency_ms":17.97939068778491,"throughput_eps":0,"last_update":"2026-03-21T14:15:09.210411077Z"} +2026/03/21 14:15:14 [transform_engine] {"stage_name":"transform_engine","events_processed":352,"events_dropped":0,"avg_latency_ms":493.64130501287434,"throughput_eps":0,"last_update":"2026-03-21T14:15:09.210383174Z"} +2026/03/21 14:15:14 ───────────────────────────────────────────────── +2026/03/21 14:15:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:15:19 [log_collector] {"stage_name":"log_collector","events_processed":16890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3378,"last_update":"2026-03-21T14:15:14.06865509Z"} +2026/03/21 14:15:19 [metric_collector] {"stage_name":"metric_collector","events_processed":10584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2116.8,"last_update":"2026-03-21T14:15:14.068937682Z"} +2026/03/21 14:15:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:15:14.076425295Z"} +2026/03/21 14:15:19 [detection_layer] {"stage_name":"detection_layer","events_processed":352,"events_dropped":0,"avg_latency_ms":17.97939068778491,"throughput_eps":0,"last_update":"2026-03-21T14:15:14.211119231Z"} +2026/03/21 14:15:19 [transform_engine] {"stage_name":"transform_engine","events_processed":352,"events_dropped":0,"avg_latency_ms":493.64130501287434,"throughput_eps":0,"last_update":"2026-03-21T14:15:14.211003229Z"} +2026/03/21 14:15:19 ───────────────────────────────────────────────── +2026/03/21 14:15:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:15:24 [transform_engine] {"stage_name":"transform_engine","events_processed":353,"events_dropped":0,"avg_latency_ms":407.44704881029946,"throughput_eps":0,"last_update":"2026-03-21T14:15:19.272786675Z"} +2026/03/21 14:15:24 [log_collector] {"stage_name":"log_collector","events_processed":16890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3378,"last_update":"2026-03-21T14:15:19.068602451Z"} +2026/03/21 14:15:24 [metric_collector] {"stage_name":"metric_collector","events_processed":10589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2117.8,"last_update":"2026-03-21T14:15:19.068911362Z"} +2026/03/21 14:15:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:15:19.075957459Z"} +2026/03/21 14:15:24 [detection_layer] {"stage_name":"detection_layer","events_processed":352,"events_dropped":0,"avg_latency_ms":17.97939068778491,"throughput_eps":0,"last_update":"2026-03-21T14:15:19.210081033Z"} +2026/03/21 14:15:24 ───────────────────────────────────────────────── +Saved state: 16 clusters, 16891 messages, reason: none +2026/03/21 14:15:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:15:29 [log_collector] {"stage_name":"log_collector","events_processed":16890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3378,"last_update":"2026-03-21T14:15:24.068502346Z"} +2026/03/21 14:15:29 [metric_collector] {"stage_name":"metric_collector","events_processed":10594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2118.8,"last_update":"2026-03-21T14:15:24.068994028Z"} +2026/03/21 14:15:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:15:24.078731961Z"} +2026/03/21 14:15:29 [detection_layer] {"stage_name":"detection_layer","events_processed":353,"events_dropped":0,"avg_latency_ms":17.77583255022793,"throughput_eps":0,"last_update":"2026-03-21T14:15:24.21000839Z"} +2026/03/21 14:15:29 [transform_engine] {"stage_name":"transform_engine","events_processed":353,"events_dropped":0,"avg_latency_ms":407.44704881029946,"throughput_eps":0,"last_update":"2026-03-21T14:15:24.209951Z"} +2026/03/21 14:15:29 ───────────────────────────────────────────────── +2026/03/21 14:15:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:15:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:15:29.07893363Z"} +2026/03/21 14:15:34 [detection_layer] {"stage_name":"detection_layer","events_processed":353,"events_dropped":0,"avg_latency_ms":17.77583255022793,"throughput_eps":0,"last_update":"2026-03-21T14:15:29.210205491Z"} +2026/03/21 14:15:34 [transform_engine] {"stage_name":"transform_engine","events_processed":353,"events_dropped":0,"avg_latency_ms":407.44704881029946,"throughput_eps":0,"last_update":"2026-03-21T14:15:29.21028843Z"} +2026/03/21 14:15:34 [log_collector] {"stage_name":"log_collector","events_processed":16904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3380.8,"last_update":"2026-03-21T14:15:29.068660733Z"} +2026/03/21 14:15:34 [metric_collector] {"stage_name":"metric_collector","events_processed":10599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2119.8,"last_update":"2026-03-21T14:15:29.068939106Z"} +2026/03/21 14:15:34 ───────────────────────────────────────────────── +2026/03/21 14:15:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:15:39 [log_collector] {"stage_name":"log_collector","events_processed":16904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3380.8,"last_update":"2026-03-21T14:15:34.068146096Z"} +2026/03/21 14:15:39 [metric_collector] {"stage_name":"metric_collector","events_processed":10604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2120.8,"last_update":"2026-03-21T14:15:34.068742398Z"} +2026/03/21 14:15:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:15:34.075857307Z"} +2026/03/21 14:15:39 [detection_layer] {"stage_name":"detection_layer","events_processed":353,"events_dropped":0,"avg_latency_ms":17.77583255022793,"throughput_eps":0,"last_update":"2026-03-21T14:15:34.210216842Z"} +2026/03/21 14:15:39 [transform_engine] {"stage_name":"transform_engine","events_processed":353,"events_dropped":0,"avg_latency_ms":407.44704881029946,"throughput_eps":0,"last_update":"2026-03-21T14:15:34.210141808Z"} +2026/03/21 14:15:39 ───────────────────────────────────────────────── +2026/03/21 14:15:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:15:44 [transform_engine] {"stage_name":"transform_engine","events_processed":353,"events_dropped":0,"avg_latency_ms":407.44704881029946,"throughput_eps":0,"last_update":"2026-03-21T14:15:39.210446536Z"} +2026/03/21 14:15:44 [log_collector] {"stage_name":"log_collector","events_processed":16904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3380.8,"last_update":"2026-03-21T14:15:39.068805273Z"} +2026/03/21 14:15:44 [metric_collector] {"stage_name":"metric_collector","events_processed":10609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2121.8,"last_update":"2026-03-21T14:15:39.069204357Z"} +2026/03/21 14:15:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4246,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:15:39.07768412Z"} +2026/03/21 14:15:44 [detection_layer] {"stage_name":"detection_layer","events_processed":353,"events_dropped":0,"avg_latency_ms":17.77583255022793,"throughput_eps":0,"last_update":"2026-03-21T14:15:39.210433782Z"} +2026/03/21 14:15:44 ───────────────────────────────────────────────── +2026/03/21 14:15:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:15:49 [log_collector] {"stage_name":"log_collector","events_processed":16904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3380.8,"last_update":"2026-03-21T14:15:44.068837846Z"} +2026/03/21 14:15:49 [metric_collector] {"stage_name":"metric_collector","events_processed":10614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2122.8,"last_update":"2026-03-21T14:15:44.069319849Z"} +2026/03/21 14:15:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:15:44.075921915Z"} +2026/03/21 14:15:49 [detection_layer] {"stage_name":"detection_layer","events_processed":353,"events_dropped":0,"avg_latency_ms":17.77583255022793,"throughput_eps":0,"last_update":"2026-03-21T14:15:44.210335674Z"} +2026/03/21 14:15:49 [transform_engine] {"stage_name":"transform_engine","events_processed":353,"events_dropped":0,"avg_latency_ms":407.44704881029946,"throughput_eps":0,"last_update":"2026-03-21T14:15:44.210384878Z"} +2026/03/21 14:15:49 ───────────────────────────────────────────────── +2026/03/21 14:15:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:15:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:15:49.077689376Z"} +2026/03/21 14:15:54 [detection_layer] {"stage_name":"detection_layer","events_processed":353,"events_dropped":0,"avg_latency_ms":17.77583255022793,"throughput_eps":0,"last_update":"2026-03-21T14:15:49.210862949Z"} +2026/03/21 14:15:54 [transform_engine] {"stage_name":"transform_engine","events_processed":354,"events_dropped":0,"avg_latency_ms":348.8548282482396,"throughput_eps":0,"last_update":"2026-03-21T14:15:49.324226697Z"} +2026/03/21 14:15:54 [log_collector] {"stage_name":"log_collector","events_processed":16904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3380.8,"last_update":"2026-03-21T14:15:49.068754101Z"} +2026/03/21 14:15:54 [metric_collector] {"stage_name":"metric_collector","events_processed":10619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2123.8,"last_update":"2026-03-21T14:15:49.069201448Z"} +2026/03/21 14:15:54 ───────────────────────────────────────────────── +2026/03/21 14:15:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:15:59 [log_collector] {"stage_name":"log_collector","events_processed":16904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3380.8,"last_update":"2026-03-21T14:15:54.068911765Z"} +2026/03/21 14:15:59 [metric_collector] {"stage_name":"metric_collector","events_processed":10624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2124.8,"last_update":"2026-03-21T14:15:54.069314817Z"} +2026/03/21 14:15:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:15:54.07825914Z"} +2026/03/21 14:15:59 [detection_layer] {"stage_name":"detection_layer","events_processed":354,"events_dropped":0,"avg_latency_ms":18.368984040182344,"throughput_eps":0,"last_update":"2026-03-21T14:15:54.210653409Z"} +2026/03/21 14:15:59 [transform_engine] {"stage_name":"transform_engine","events_processed":354,"events_dropped":0,"avg_latency_ms":348.8548282482396,"throughput_eps":0,"last_update":"2026-03-21T14:15:54.210618733Z"} +2026/03/21 14:15:59 ───────────────────────────────────────────────── +2026/03/21 14:16:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:16:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:15:59.078205105Z"} +2026/03/21 14:16:04 [detection_layer] {"stage_name":"detection_layer","events_processed":354,"events_dropped":0,"avg_latency_ms":18.368984040182344,"throughput_eps":0,"last_update":"2026-03-21T14:15:59.21047169Z"} +2026/03/21 14:16:04 [transform_engine] {"stage_name":"transform_engine","events_processed":354,"events_dropped":0,"avg_latency_ms":348.8548282482396,"throughput_eps":0,"last_update":"2026-03-21T14:15:59.210511476Z"} +2026/03/21 14:16:04 [log_collector] {"stage_name":"log_collector","events_processed":16904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3380.8,"last_update":"2026-03-21T14:15:59.068744493Z"} +2026/03/21 14:16:04 [metric_collector] {"stage_name":"metric_collector","events_processed":10629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2125.8,"last_update":"2026-03-21T14:15:59.06909285Z"} +2026/03/21 14:16:04 ───────────────────────────────────────────────── +2026/03/21 14:16:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:16:09 [transform_engine] {"stage_name":"transform_engine","events_processed":354,"events_dropped":0,"avg_latency_ms":348.8548282482396,"throughput_eps":0,"last_update":"2026-03-21T14:16:04.210207978Z"} +2026/03/21 14:16:09 [log_collector] {"stage_name":"log_collector","events_processed":16904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3380.8,"last_update":"2026-03-21T14:16:04.068643603Z"} +2026/03/21 14:16:09 [metric_collector] {"stage_name":"metric_collector","events_processed":10634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2126.8,"last_update":"2026-03-21T14:16:04.068932507Z"} +2026/03/21 14:16:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:16:04.077987471Z"} +2026/03/21 14:16:09 [detection_layer] {"stage_name":"detection_layer","events_processed":354,"events_dropped":0,"avg_latency_ms":18.368984040182344,"throughput_eps":0,"last_update":"2026-03-21T14:16:04.2103133Z"} +2026/03/21 14:16:09 ───────────────────────────────────────────────── +2026/03/21 14:16:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:16:14 [transform_engine] {"stage_name":"transform_engine","events_processed":354,"events_dropped":0,"avg_latency_ms":348.8548282482396,"throughput_eps":0,"last_update":"2026-03-21T14:16:09.210007434Z"} +2026/03/21 14:16:14 [log_collector] {"stage_name":"log_collector","events_processed":16904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3380.8,"last_update":"2026-03-21T14:16:09.068218008Z"} +2026/03/21 14:16:14 [metric_collector] {"stage_name":"metric_collector","events_processed":10639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2127.8,"last_update":"2026-03-21T14:16:09.068719318Z"} +2026/03/21 14:16:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:16:09.077752912Z"} +2026/03/21 14:16:14 [detection_layer] {"stage_name":"detection_layer","events_processed":354,"events_dropped":0,"avg_latency_ms":18.368984040182344,"throughput_eps":0,"last_update":"2026-03-21T14:16:09.209972477Z"} +2026/03/21 14:16:14 ───────────────────────────────────────────────── +2026/03/21 14:16:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:16:19 [log_collector] {"stage_name":"log_collector","events_processed":16904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3380.8,"last_update":"2026-03-21T14:16:14.068066855Z"} +2026/03/21 14:16:19 [metric_collector] {"stage_name":"metric_collector","events_processed":10644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2128.8,"last_update":"2026-03-21T14:16:14.068294982Z"} +2026/03/21 14:16:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:16:14.078134429Z"} +2026/03/21 14:16:19 [detection_layer] {"stage_name":"detection_layer","events_processed":354,"events_dropped":0,"avg_latency_ms":18.368984040182344,"throughput_eps":0,"last_update":"2026-03-21T14:16:14.210362421Z"} +2026/03/21 14:16:19 [transform_engine] {"stage_name":"transform_engine","events_processed":354,"events_dropped":0,"avg_latency_ms":348.8548282482396,"throughput_eps":0,"last_update":"2026-03-21T14:16:14.210395344Z"} +2026/03/21 14:16:19 ───────────────────────────────────────────────── +2026/03/21 14:16:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:16:24 [log_collector] {"stage_name":"log_collector","events_processed":16904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3380.8,"last_update":"2026-03-21T14:16:19.068054394Z"} +2026/03/21 14:16:24 [metric_collector] {"stage_name":"metric_collector","events_processed":10649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2129.8,"last_update":"2026-03-21T14:16:19.068290145Z"} +2026/03/21 14:16:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:16:19.077028954Z"} +2026/03/21 14:16:24 [detection_layer] {"stage_name":"detection_layer","events_processed":354,"events_dropped":0,"avg_latency_ms":18.368984040182344,"throughput_eps":0,"last_update":"2026-03-21T14:16:19.210377462Z"} +2026/03/21 14:16:24 [transform_engine] {"stage_name":"transform_engine","events_processed":355,"events_dropped":0,"avg_latency_ms":290.9420827985917,"throughput_eps":0,"last_update":"2026-03-21T14:16:19.269622845Z"} +2026/03/21 14:16:24 ───────────────────────────────────────────────── +2026/03/21 14:16:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:16:29 [metric_collector] {"stage_name":"metric_collector","events_processed":10653,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2130.6,"last_update":"2026-03-21T14:16:24.068555512Z"} +2026/03/21 14:16:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:16:24.078707748Z"} +2026/03/21 14:16:29 [detection_layer] {"stage_name":"detection_layer","events_processed":355,"events_dropped":0,"avg_latency_ms":17.722642232145876,"throughput_eps":0,"last_update":"2026-03-21T14:16:24.209962234Z"} +2026/03/21 14:16:29 [transform_engine] {"stage_name":"transform_engine","events_processed":355,"events_dropped":0,"avg_latency_ms":290.9420827985917,"throughput_eps":0,"last_update":"2026-03-21T14:16:24.210001038Z"} +2026/03/21 14:16:29 [log_collector] {"stage_name":"log_collector","events_processed":16904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3380.8,"last_update":"2026-03-21T14:16:24.068744915Z"} +2026/03/21 14:16:29 ───────────────────────────────────────────────── +Saved state: 16 clusters, 16905 messages, reason: none +2026/03/21 14:16:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:16:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:16:29.078302928Z"} +2026/03/21 14:16:34 [detection_layer] {"stage_name":"detection_layer","events_processed":355,"events_dropped":0,"avg_latency_ms":17.722642232145876,"throughput_eps":0,"last_update":"2026-03-21T14:16:29.210734478Z"} +2026/03/21 14:16:34 [transform_engine] {"stage_name":"transform_engine","events_processed":355,"events_dropped":0,"avg_latency_ms":290.9420827985917,"throughput_eps":0,"last_update":"2026-03-21T14:16:29.210783051Z"} +2026/03/21 14:16:34 [log_collector] {"stage_name":"log_collector","events_processed":16909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3381.8,"last_update":"2026-03-21T14:16:34.068287724Z"} +2026/03/21 14:16:34 [metric_collector] {"stage_name":"metric_collector","events_processed":10659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2131.8,"last_update":"2026-03-21T14:16:29.068495212Z"} +2026/03/21 14:16:34 ───────────────────────────────────────────────── +2026/03/21 14:16:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:16:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:16:34.077109372Z"} +2026/03/21 14:16:39 [detection_layer] {"stage_name":"detection_layer","events_processed":355,"events_dropped":0,"avg_latency_ms":17.722642232145876,"throughput_eps":0,"last_update":"2026-03-21T14:16:34.210680726Z"} +2026/03/21 14:16:39 [transform_engine] {"stage_name":"transform_engine","events_processed":355,"events_dropped":0,"avg_latency_ms":290.9420827985917,"throughput_eps":0,"last_update":"2026-03-21T14:16:34.210707828Z"} +2026/03/21 14:16:39 [log_collector] {"stage_name":"log_collector","events_processed":16909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3381.8,"last_update":"2026-03-21T14:16:34.068287724Z"} +2026/03/21 14:16:39 [metric_collector] {"stage_name":"metric_collector","events_processed":10664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2132.8,"last_update":"2026-03-21T14:16:34.068821066Z"} +2026/03/21 14:16:39 ───────────────────────────────────────────────── +2026/03/21 14:16:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:16:44 [log_collector] {"stage_name":"log_collector","events_processed":16909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3381.8,"last_update":"2026-03-21T14:16:39.068066817Z"} +2026/03/21 14:16:44 [metric_collector] {"stage_name":"metric_collector","events_processed":10668,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2133.6,"last_update":"2026-03-21T14:16:39.06797406Z"} +2026/03/21 14:16:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:16:39.083623716Z"} +2026/03/21 14:16:44 [detection_layer] {"stage_name":"detection_layer","events_processed":355,"events_dropped":0,"avg_latency_ms":17.722642232145876,"throughput_eps":0,"last_update":"2026-03-21T14:16:39.210800191Z"} +2026/03/21 14:16:44 [transform_engine] {"stage_name":"transform_engine","events_processed":355,"events_dropped":0,"avg_latency_ms":290.9420827985917,"throughput_eps":0,"last_update":"2026-03-21T14:16:39.209713369Z"} +2026/03/21 14:16:44 ───────────────────────────────────────────────── +2026/03/21 14:16:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:16:49 [log_collector] {"stage_name":"log_collector","events_processed":16909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3381.8,"last_update":"2026-03-21T14:16:44.068511943Z"} +2026/03/21 14:16:49 [metric_collector] {"stage_name":"metric_collector","events_processed":10674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2134.8,"last_update":"2026-03-21T14:16:44.071542378Z"} +2026/03/21 14:16:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:16:44.080128685Z"} +2026/03/21 14:16:49 [detection_layer] {"stage_name":"detection_layer","events_processed":355,"events_dropped":0,"avg_latency_ms":17.722642232145876,"throughput_eps":0,"last_update":"2026-03-21T14:16:44.21021346Z"} +2026/03/21 14:16:49 [transform_engine] {"stage_name":"transform_engine","events_processed":355,"events_dropped":0,"avg_latency_ms":290.9420827985917,"throughput_eps":0,"last_update":"2026-03-21T14:16:44.210253898Z"} +2026/03/21 14:16:49 ───────────────────────────────────────────────── +2026/03/21 14:16:52 [ANOMALY] time=2026-03-21T14:16:52Z score=0.9445 method=SEAD details=MAD!:w=0.28,s=0.95 RRCF-fast!:w=0.18,s=0.97 RRCF-mid!:w=0.16,s=0.95 RRCF-slow!:w=0.11,s=0.94 COPOD!:w=0.27,s=0.92 +2026/03/21 14:16:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:16:54 [log_collector] {"stage_name":"log_collector","events_processed":16909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3381.8,"last_update":"2026-03-21T14:16:54.068176827Z"} +2026/03/21 14:16:54 [metric_collector] {"stage_name":"metric_collector","events_processed":10679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2135.8,"last_update":"2026-03-21T14:16:49.068861732Z"} +2026/03/21 14:16:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:16:49.075722945Z"} +2026/03/21 14:16:54 [detection_layer] {"stage_name":"detection_layer","events_processed":355,"events_dropped":0,"avg_latency_ms":17.722642232145876,"throughput_eps":0,"last_update":"2026-03-21T14:16:49.209927181Z"} +2026/03/21 14:16:54 [transform_engine] {"stage_name":"transform_engine","events_processed":356,"events_dropped":0,"avg_latency_ms":952.8625512388735,"throughput_eps":0,"last_update":"2026-03-21T14:16:52.810497636Z"} +2026/03/21 14:16:54 ───────────────────────────────────────────────── +2026/03/21 14:16:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:16:59 [log_collector] {"stage_name":"log_collector","events_processed":16909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3381.8,"last_update":"2026-03-21T14:16:54.068176827Z"} +2026/03/21 14:16:59 [metric_collector] {"stage_name":"metric_collector","events_processed":10684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2136.8,"last_update":"2026-03-21T14:16:54.06862234Z"} +2026/03/21 14:16:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4276,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:16:54.074943288Z"} +2026/03/21 14:16:59 [detection_layer] {"stage_name":"detection_layer","events_processed":356,"events_dropped":0,"avg_latency_ms":16.158282985716703,"throughput_eps":0,"last_update":"2026-03-21T14:16:54.210094016Z"} +2026/03/21 14:16:59 [transform_engine] {"stage_name":"transform_engine","events_processed":356,"events_dropped":0,"avg_latency_ms":952.8625512388735,"throughput_eps":0,"last_update":"2026-03-21T14:16:54.210104467Z"} +2026/03/21 14:16:59 ───────────────────────────────────────────────── +2026/03/21 14:17:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:17:04 [log_collector] {"stage_name":"log_collector","events_processed":16909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3381.8,"last_update":"2026-03-21T14:16:59.068638033Z"} +2026/03/21 14:17:04 [metric_collector] {"stage_name":"metric_collector","events_processed":10689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2137.8,"last_update":"2026-03-21T14:16:59.068864938Z"} +2026/03/21 14:17:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4276,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:16:59.068519456Z"} +2026/03/21 14:17:04 [detection_layer] {"stage_name":"detection_layer","events_processed":356,"events_dropped":0,"avg_latency_ms":16.158282985716703,"throughput_eps":0,"last_update":"2026-03-21T14:16:59.210335782Z"} +2026/03/21 14:17:04 [transform_engine] {"stage_name":"transform_engine","events_processed":356,"events_dropped":0,"avg_latency_ms":952.8625512388735,"throughput_eps":0,"last_update":"2026-03-21T14:16:59.210361661Z"} +2026/03/21 14:17:04 ───────────────────────────────────────────────── +2026/03/21 14:17:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:17:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:17:04.068595591Z"} +2026/03/21 14:17:09 [detection_layer] {"stage_name":"detection_layer","events_processed":356,"events_dropped":0,"avg_latency_ms":16.158282985716703,"throughput_eps":0,"last_update":"2026-03-21T14:17:04.20991226Z"} +2026/03/21 14:17:09 [transform_engine] {"stage_name":"transform_engine","events_processed":356,"events_dropped":0,"avg_latency_ms":952.8625512388735,"throughput_eps":0,"last_update":"2026-03-21T14:17:04.209921648Z"} +2026/03/21 14:17:09 [log_collector] {"stage_name":"log_collector","events_processed":16909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3381.8,"last_update":"2026-03-21T14:17:04.069015685Z"} +2026/03/21 14:17:09 [metric_collector] {"stage_name":"metric_collector","events_processed":10694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2138.8,"last_update":"2026-03-21T14:17:04.069003762Z"} +2026/03/21 14:17:09 ───────────────────────────────────────────────── +2026/03/21 14:17:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:17:14 [log_collector] {"stage_name":"log_collector","events_processed":16909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3381.8,"last_update":"2026-03-21T14:17:09.069491502Z"} +2026/03/21 14:17:14 [metric_collector] {"stage_name":"metric_collector","events_processed":10699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2139.8,"last_update":"2026-03-21T14:17:09.069820853Z"} +2026/03/21 14:17:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:17:09.080977824Z"} +2026/03/21 14:17:14 [detection_layer] {"stage_name":"detection_layer","events_processed":356,"events_dropped":0,"avg_latency_ms":16.158282985716703,"throughput_eps":0,"last_update":"2026-03-21T14:17:09.210463461Z"} +2026/03/21 14:17:14 [transform_engine] {"stage_name":"transform_engine","events_processed":356,"events_dropped":0,"avg_latency_ms":952.8625512388735,"throughput_eps":0,"last_update":"2026-03-21T14:17:09.210472879Z"} +2026/03/21 14:17:14 ───────────────────────────────────────────────── +2026/03/21 14:17:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:17:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:17:14.077870805Z"} +2026/03/21 14:17:19 [detection_layer] {"stage_name":"detection_layer","events_processed":356,"events_dropped":0,"avg_latency_ms":16.158282985716703,"throughput_eps":0,"last_update":"2026-03-21T14:17:14.210097682Z"} +2026/03/21 14:17:19 [transform_engine] {"stage_name":"transform_engine","events_processed":356,"events_dropped":0,"avg_latency_ms":952.8625512388735,"throughput_eps":0,"last_update":"2026-03-21T14:17:14.210107711Z"} +2026/03/21 14:17:19 [log_collector] {"stage_name":"log_collector","events_processed":16912,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3382.4,"last_update":"2026-03-21T14:17:14.069244791Z"} +2026/03/21 14:17:19 [metric_collector] {"stage_name":"metric_collector","events_processed":10704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2140.8,"last_update":"2026-03-21T14:17:14.070626879Z"} +2026/03/21 14:17:19 ───────────────────────────────────────────────── +2026/03/21 14:17:19 [ANOMALY] time=2026-03-21T14:17:19Z score=0.8574 method=SEAD details=MAD!:w=0.28,s=0.90 RRCF-fast!:w=0.18,s=0.98 RRCF-mid!:w=0.16,s=0.87 RRCF-slow:w=0.11,s=0.88 COPOD!:w=0.27,s=0.71 +2026/03/21 14:17:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:17:24 [log_collector] {"stage_name":"log_collector","events_processed":16920,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3384,"last_update":"2026-03-21T14:17:19.068938022Z"} +2026/03/21 14:17:24 [metric_collector] {"stage_name":"metric_collector","events_processed":10709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2141.8,"last_update":"2026-03-21T14:17:19.069196777Z"} +2026/03/21 14:17:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4286,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:17:19.077654067Z"} +2026/03/21 14:17:24 [detection_layer] {"stage_name":"detection_layer","events_processed":356,"events_dropped":0,"avg_latency_ms":16.158282985716703,"throughput_eps":0,"last_update":"2026-03-21T14:17:19.210021635Z"} +2026/03/21 14:17:24 [transform_engine] {"stage_name":"transform_engine","events_processed":357,"events_dropped":0,"avg_latency_ms":779.6032399910989,"throughput_eps":0,"last_update":"2026-03-21T14:17:19.296606927Z"} +2026/03/21 14:17:24 ───────────────────────────────────────────────── +Saved state: 16 clusters, 17216 messages, reason: cluster_template_changed +Saved state: 17 clusters, 17217 messages, reason: cluster_created +2026/03/21 14:17:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:17:29 [metric_collector] {"stage_name":"metric_collector","events_processed":10714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2142.8,"last_update":"2026-03-21T14:17:24.068540546Z"} +2026/03/21 14:17:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:17:24.074918853Z"} +2026/03/21 14:17:29 [detection_layer] {"stage_name":"detection_layer","events_processed":357,"events_dropped":0,"avg_latency_ms":16.006167188573365,"throughput_eps":0,"last_update":"2026-03-21T14:17:24.210900783Z"} +2026/03/21 14:17:29 [transform_engine] {"stage_name":"transform_engine","events_processed":357,"events_dropped":0,"avg_latency_ms":779.6032399910989,"throughput_eps":0,"last_update":"2026-03-21T14:17:24.209812238Z"} +2026/03/21 14:17:29 [log_collector] {"stage_name":"log_collector","events_processed":17257,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3451.4,"last_update":"2026-03-21T14:17:29.068257756Z"} +2026/03/21 14:17:29 ───────────────────────────────────────────────── +2026/03/21 14:17:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:17:34 [log_collector] {"stage_name":"log_collector","events_processed":17257,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3451.4,"last_update":"2026-03-21T14:17:29.068257756Z"} +2026/03/21 14:17:34 [metric_collector] {"stage_name":"metric_collector","events_processed":10719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2143.8,"last_update":"2026-03-21T14:17:29.068540898Z"} +2026/03/21 14:17:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:17:29.085000096Z"} +2026/03/21 14:17:34 [detection_layer] {"stage_name":"detection_layer","events_processed":357,"events_dropped":0,"avg_latency_ms":16.006167188573365,"throughput_eps":0,"last_update":"2026-03-21T14:17:29.210522951Z"} +2026/03/21 14:17:34 [transform_engine] {"stage_name":"transform_engine","events_processed":357,"events_dropped":0,"avg_latency_ms":779.6032399910989,"throughput_eps":0,"last_update":"2026-03-21T14:17:29.210553429Z"} +2026/03/21 14:17:34 ───────────────────────────────────────────────── +2026/03/21 14:17:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:17:39 [log_collector] {"stage_name":"log_collector","events_processed":17266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3453.2,"last_update":"2026-03-21T14:17:34.068710261Z"} +2026/03/21 14:17:39 [metric_collector] {"stage_name":"metric_collector","events_processed":10724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2144.8,"last_update":"2026-03-21T14:17:34.069002391Z"} +2026/03/21 14:17:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:17:34.078705507Z"} +2026/03/21 14:17:39 [detection_layer] {"stage_name":"detection_layer","events_processed":357,"events_dropped":0,"avg_latency_ms":16.006167188573365,"throughput_eps":0,"last_update":"2026-03-21T14:17:34.209986703Z"} +2026/03/21 14:17:39 [transform_engine] {"stage_name":"transform_engine","events_processed":357,"events_dropped":0,"avg_latency_ms":779.6032399910989,"throughput_eps":0,"last_update":"2026-03-21T14:17:34.209944612Z"} +2026/03/21 14:17:39 ───────────────────────────────────────────────── +2026/03/21 14:17:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:17:44 [metric_collector] {"stage_name":"metric_collector","events_processed":10729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2145.8,"last_update":"2026-03-21T14:17:39.068622637Z"} +2026/03/21 14:17:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:17:39.077975302Z"} +2026/03/21 14:17:44 [detection_layer] {"stage_name":"detection_layer","events_processed":357,"events_dropped":0,"avg_latency_ms":16.006167188573365,"throughput_eps":0,"last_update":"2026-03-21T14:17:39.210264549Z"} +2026/03/21 14:17:44 [transform_engine] {"stage_name":"transform_engine","events_processed":357,"events_dropped":0,"avg_latency_ms":779.6032399910989,"throughput_eps":0,"last_update":"2026-03-21T14:17:39.210234532Z"} +2026/03/21 14:17:44 [log_collector] {"stage_name":"log_collector","events_processed":17266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3453.2,"last_update":"2026-03-21T14:17:39.068083555Z"} +2026/03/21 14:17:44 ───────────────────────────────────────────────── +2026/03/21 14:17:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:17:49 [log_collector] {"stage_name":"log_collector","events_processed":17266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3453.2,"last_update":"2026-03-21T14:17:44.068697762Z"} +2026/03/21 14:17:49 [metric_collector] {"stage_name":"metric_collector","events_processed":10734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2146.8,"last_update":"2026-03-21T14:17:44.069211326Z"} +2026/03/21 14:17:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:17:44.078379678Z"} +2026/03/21 14:17:49 [detection_layer] {"stage_name":"detection_layer","events_processed":357,"events_dropped":0,"avg_latency_ms":16.006167188573365,"throughput_eps":0,"last_update":"2026-03-21T14:17:44.210772363Z"} +2026/03/21 14:17:49 [transform_engine] {"stage_name":"transform_engine","events_processed":357,"events_dropped":0,"avg_latency_ms":779.6032399910989,"throughput_eps":0,"last_update":"2026-03-21T14:17:44.210731004Z"} +2026/03/21 14:17:49 ───────────────────────────────────────────────── +2026/03/21 14:17:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:17:54 [log_collector] {"stage_name":"log_collector","events_processed":17266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3453.2,"last_update":"2026-03-21T14:17:49.068678574Z"} +2026/03/21 14:17:54 [metric_collector] {"stage_name":"metric_collector","events_processed":10739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2147.8,"last_update":"2026-03-21T14:17:49.068879058Z"} +2026/03/21 14:17:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:17:49.07763998Z"} +2026/03/21 14:17:54 [detection_layer] {"stage_name":"detection_layer","events_processed":357,"events_dropped":0,"avg_latency_ms":16.006167188573365,"throughput_eps":0,"last_update":"2026-03-21T14:17:49.209894219Z"} +2026/03/21 14:17:54 [transform_engine] {"stage_name":"transform_engine","events_processed":357,"events_dropped":0,"avg_latency_ms":779.6032399910989,"throughput_eps":0,"last_update":"2026-03-21T14:17:49.20992075Z"} +2026/03/21 14:17:54 ───────────────────────────────────────────────── +2026/03/21 14:17:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:17:59 [transform_engine] {"stage_name":"transform_engine","events_processed":358,"events_dropped":0,"avg_latency_ms":646.8941993928793,"throughput_eps":0,"last_update":"2026-03-21T14:17:54.210506607Z"} +2026/03/21 14:17:59 [log_collector] {"stage_name":"log_collector","events_processed":17266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3453.2,"last_update":"2026-03-21T14:17:54.068671696Z"} +2026/03/21 14:17:59 [metric_collector] {"stage_name":"metric_collector","events_processed":10744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2148.8,"last_update":"2026-03-21T14:17:54.06918014Z"} +2026/03/21 14:17:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:17:54.078981133Z"} +2026/03/21 14:17:59 [detection_layer] {"stage_name":"detection_layer","events_processed":358,"events_dropped":0,"avg_latency_ms":16.683274750858693,"throughput_eps":0,"last_update":"2026-03-21T14:17:54.210491018Z"} +2026/03/21 14:17:59 ───────────────────────────────────────────────── +2026/03/21 14:18:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:18:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:17:59.076817051Z"} +2026/03/21 14:18:04 [detection_layer] {"stage_name":"detection_layer","events_processed":358,"events_dropped":0,"avg_latency_ms":16.683274750858693,"throughput_eps":0,"last_update":"2026-03-21T14:17:59.210521168Z"} +2026/03/21 14:18:04 [transform_engine] {"stage_name":"transform_engine","events_processed":358,"events_dropped":0,"avg_latency_ms":646.8941993928793,"throughput_eps":0,"last_update":"2026-03-21T14:17:59.210531377Z"} +2026/03/21 14:18:04 [log_collector] {"stage_name":"log_collector","events_processed":17266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3453.2,"last_update":"2026-03-21T14:17:59.068659797Z"} +2026/03/21 14:18:04 [metric_collector] {"stage_name":"metric_collector","events_processed":10749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2149.8,"last_update":"2026-03-21T14:17:59.068968688Z"} +2026/03/21 14:18:04 ───────────────────────────────────────────────── +2026/03/21 14:18:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:18:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:18:04.075543129Z"} +2026/03/21 14:18:09 [detection_layer] {"stage_name":"detection_layer","events_processed":358,"events_dropped":0,"avg_latency_ms":16.683274750858693,"throughput_eps":0,"last_update":"2026-03-21T14:18:04.209882312Z"} +2026/03/21 14:18:09 [transform_engine] {"stage_name":"transform_engine","events_processed":358,"events_dropped":0,"avg_latency_ms":646.8941993928793,"throughput_eps":0,"last_update":"2026-03-21T14:18:04.209737004Z"} +2026/03/21 14:18:09 [log_collector] {"stage_name":"log_collector","events_processed":17266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3453.2,"last_update":"2026-03-21T14:18:04.068823778Z"} +2026/03/21 14:18:09 [metric_collector] {"stage_name":"metric_collector","events_processed":10754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2150.8,"last_update":"2026-03-21T14:18:04.069054951Z"} +2026/03/21 14:18:09 ───────────────────────────────────────────────── +2026/03/21 14:18:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:18:14 [transform_engine] {"stage_name":"transform_engine","events_processed":358,"events_dropped":0,"avg_latency_ms":646.8941993928793,"throughput_eps":0,"last_update":"2026-03-21T14:18:09.210566398Z"} +2026/03/21 14:18:14 [log_collector] {"stage_name":"log_collector","events_processed":17266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3453.2,"last_update":"2026-03-21T14:18:09.068061713Z"} +2026/03/21 14:18:14 [metric_collector] {"stage_name":"metric_collector","events_processed":10759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2151.8,"last_update":"2026-03-21T14:18:09.068256126Z"} +2026/03/21 14:18:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:18:09.076323088Z"} +2026/03/21 14:18:14 [detection_layer] {"stage_name":"detection_layer","events_processed":358,"events_dropped":0,"avg_latency_ms":16.683274750858693,"throughput_eps":0,"last_update":"2026-03-21T14:18:09.210556859Z"} +2026/03/21 14:18:14 ───────────────────────────────────────────────── +2026/03/21 14:18:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:18:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:18:14.076937047Z"} +2026/03/21 14:18:19 [detection_layer] {"stage_name":"detection_layer","events_processed":358,"events_dropped":0,"avg_latency_ms":16.683274750858693,"throughput_eps":0,"last_update":"2026-03-21T14:18:14.21018563Z"} +2026/03/21 14:18:19 [transform_engine] {"stage_name":"transform_engine","events_processed":358,"events_dropped":0,"avg_latency_ms":646.8941993928793,"throughput_eps":0,"last_update":"2026-03-21T14:18:14.210197863Z"} +2026/03/21 14:18:19 [log_collector] {"stage_name":"log_collector","events_processed":17266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3453.2,"last_update":"2026-03-21T14:18:14.068425995Z"} +2026/03/21 14:18:19 [metric_collector] {"stage_name":"metric_collector","events_processed":10764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2152.8,"last_update":"2026-03-21T14:18:14.068817574Z"} +2026/03/21 14:18:19 ───────────────────────────────────────────────── +2026/03/21 14:18:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:18:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:18:19.076067831Z"} +2026/03/21 14:18:24 [detection_layer] {"stage_name":"detection_layer","events_processed":358,"events_dropped":0,"avg_latency_ms":16.683274750858693,"throughput_eps":0,"last_update":"2026-03-21T14:18:19.210307263Z"} +2026/03/21 14:18:24 [transform_engine] {"stage_name":"transform_engine","events_processed":358,"events_dropped":0,"avg_latency_ms":646.8941993928793,"throughput_eps":0,"last_update":"2026-03-21T14:18:19.210317101Z"} +2026/03/21 14:18:24 [log_collector] {"stage_name":"log_collector","events_processed":17266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3453.2,"last_update":"2026-03-21T14:18:19.068720297Z"} +2026/03/21 14:18:24 [metric_collector] {"stage_name":"metric_collector","events_processed":10769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2153.8,"last_update":"2026-03-21T14:18:19.068939776Z"} +2026/03/21 14:18:24 ───────────────────────────────────────────────── +2026/03/21 14:18:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:18:29 [log_collector] {"stage_name":"log_collector","events_processed":17266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3453.2,"last_update":"2026-03-21T14:18:24.068700344Z"} +2026/03/21 14:18:29 [metric_collector] {"stage_name":"metric_collector","events_processed":10774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2154.8,"last_update":"2026-03-21T14:18:24.069164573Z"} +2026/03/21 14:18:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:18:24.076125277Z"} +2026/03/21 14:18:29 [detection_layer] {"stage_name":"detection_layer","events_processed":359,"events_dropped":0,"avg_latency_ms":16.408306400686953,"throughput_eps":0,"last_update":"2026-03-21T14:18:24.210382201Z"} +2026/03/21 14:18:29 [transform_engine] {"stage_name":"transform_engine","events_processed":359,"events_dropped":0,"avg_latency_ms":529.8832079143034,"throughput_eps":0,"last_update":"2026-03-21T14:18:24.21042363Z"} +2026/03/21 14:18:29 ───────────────────────────────────────────────── +2026/03/21 14:18:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:18:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:18:29.076190445Z"} +2026/03/21 14:18:34 [detection_layer] {"stage_name":"detection_layer","events_processed":359,"events_dropped":0,"avg_latency_ms":16.408306400686953,"throughput_eps":0,"last_update":"2026-03-21T14:18:29.210491184Z"} +2026/03/21 14:18:34 [transform_engine] {"stage_name":"transform_engine","events_processed":359,"events_dropped":0,"avg_latency_ms":529.8832079143034,"throughput_eps":0,"last_update":"2026-03-21T14:18:29.210444184Z"} +2026/03/21 14:18:34 [log_collector] {"stage_name":"log_collector","events_processed":17266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3453.2,"last_update":"2026-03-21T14:18:29.068853822Z"} +2026/03/21 14:18:34 [metric_collector] {"stage_name":"metric_collector","events_processed":10779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2155.8,"last_update":"2026-03-21T14:18:29.06908288Z"} +2026/03/21 14:18:34 ───────────────────────────────────────────────── +2026/03/21 14:18:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:18:39 [transform_engine] {"stage_name":"transform_engine","events_processed":359,"events_dropped":0,"avg_latency_ms":529.8832079143034,"throughput_eps":0,"last_update":"2026-03-21T14:18:34.20982075Z"} +2026/03/21 14:18:39 [log_collector] {"stage_name":"log_collector","events_processed":17266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3453.2,"last_update":"2026-03-21T14:18:34.068181724Z"} +2026/03/21 14:18:39 [metric_collector] {"stage_name":"metric_collector","events_processed":10784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2156.8,"last_update":"2026-03-21T14:18:34.0686339Z"} +2026/03/21 14:18:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:18:34.075612649Z"} +2026/03/21 14:18:39 [detection_layer] {"stage_name":"detection_layer","events_processed":359,"events_dropped":0,"avg_latency_ms":16.408306400686953,"throughput_eps":0,"last_update":"2026-03-21T14:18:34.209861418Z"} +2026/03/21 14:18:39 ───────────────────────────────────────────────── +2026/03/21 14:18:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:18:44 [log_collector] {"stage_name":"log_collector","events_processed":17266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3453.2,"last_update":"2026-03-21T14:18:39.069074273Z"} +2026/03/21 14:18:44 [metric_collector] {"stage_name":"metric_collector","events_processed":10789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2157.8,"last_update":"2026-03-21T14:18:39.069063703Z"} +2026/03/21 14:18:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:18:39.077514861Z"} +2026/03/21 14:18:44 [detection_layer] {"stage_name":"detection_layer","events_processed":359,"events_dropped":0,"avg_latency_ms":16.408306400686953,"throughput_eps":0,"last_update":"2026-03-21T14:18:39.210890988Z"} +2026/03/21 14:18:44 [transform_engine] {"stage_name":"transform_engine","events_processed":359,"events_dropped":0,"avg_latency_ms":529.8832079143034,"throughput_eps":0,"last_update":"2026-03-21T14:18:39.209703504Z"} +2026/03/21 14:18:44 ───────────────────────────────────────────────── +2026/03/21 14:18:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:18:49 [log_collector] {"stage_name":"log_collector","events_processed":17266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3453.2,"last_update":"2026-03-21T14:18:49.068320495Z"} +2026/03/21 14:18:49 [metric_collector] {"stage_name":"metric_collector","events_processed":10794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2158.8,"last_update":"2026-03-21T14:18:44.069181132Z"} +2026/03/21 14:18:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4320,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:18:44.07609211Z"} +2026/03/21 14:18:49 [detection_layer] {"stage_name":"detection_layer","events_processed":359,"events_dropped":0,"avg_latency_ms":16.408306400686953,"throughput_eps":0,"last_update":"2026-03-21T14:18:44.21038853Z"} +2026/03/21 14:18:49 [transform_engine] {"stage_name":"transform_engine","events_processed":359,"events_dropped":0,"avg_latency_ms":529.8832079143034,"throughput_eps":0,"last_update":"2026-03-21T14:18:44.210338524Z"} +2026/03/21 14:18:49 ───────────────────────────────────────────────── +2026/03/21 14:18:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:18:54 [log_collector] {"stage_name":"log_collector","events_processed":17266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3453.2,"last_update":"2026-03-21T14:18:49.068320495Z"} +2026/03/21 14:18:54 [metric_collector] {"stage_name":"metric_collector","events_processed":10799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2159.8,"last_update":"2026-03-21T14:18:49.068967986Z"} +2026/03/21 14:18:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:18:49.077671877Z"} +2026/03/21 14:18:54 [detection_layer] {"stage_name":"detection_layer","events_processed":359,"events_dropped":0,"avg_latency_ms":16.408306400686953,"throughput_eps":0,"last_update":"2026-03-21T14:18:49.209935655Z"} +2026/03/21 14:18:54 [transform_engine] {"stage_name":"transform_engine","events_processed":360,"events_dropped":0,"avg_latency_ms":438.52593333144273,"throughput_eps":0,"last_update":"2026-03-21T14:18:49.283174521Z"} +2026/03/21 14:18:54 ───────────────────────────────────────────────── +2026/03/21 14:18:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:18:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:18:54.07924597Z"} +2026/03/21 14:18:59 [detection_layer] {"stage_name":"detection_layer","events_processed":360,"events_dropped":0,"avg_latency_ms":17.458288120549565,"throughput_eps":0,"last_update":"2026-03-21T14:18:54.210484313Z"} +2026/03/21 14:18:59 [transform_engine] {"stage_name":"transform_engine","events_processed":360,"events_dropped":0,"avg_latency_ms":438.52593333144273,"throughput_eps":0,"last_update":"2026-03-21T14:18:54.210504562Z"} +2026/03/21 14:18:59 [log_collector] {"stage_name":"log_collector","events_processed":17266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3453.2,"last_update":"2026-03-21T14:18:54.068820491Z"} +2026/03/21 14:18:59 [metric_collector] {"stage_name":"metric_collector","events_processed":10804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2160.8,"last_update":"2026-03-21T14:18:54.069584735Z"} +2026/03/21 14:18:59 ───────────────────────────────────────────────── +2026/03/21 14:19:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:19:04 [log_collector] {"stage_name":"log_collector","events_processed":17266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3453.2,"last_update":"2026-03-21T14:18:59.068135957Z"} +2026/03/21 14:19:04 [metric_collector] {"stage_name":"metric_collector","events_processed":10809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2161.8,"last_update":"2026-03-21T14:18:59.068601799Z"} +2026/03/21 14:19:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:18:59.077682643Z"} +2026/03/21 14:19:04 [detection_layer] {"stage_name":"detection_layer","events_processed":360,"events_dropped":0,"avg_latency_ms":17.458288120549565,"throughput_eps":0,"last_update":"2026-03-21T14:18:59.210073874Z"} +2026/03/21 14:19:04 [transform_engine] {"stage_name":"transform_engine","events_processed":360,"events_dropped":0,"avg_latency_ms":438.52593333144273,"throughput_eps":0,"last_update":"2026-03-21T14:18:59.209940889Z"} +2026/03/21 14:19:04 ───────────────────────────────────────────────── +Saved state: 17 clusters, 17267 messages, reason: none +2026/03/21 14:19:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:19:09 [transform_engine] {"stage_name":"transform_engine","events_processed":360,"events_dropped":0,"avg_latency_ms":438.52593333144273,"throughput_eps":0,"last_update":"2026-03-21T14:19:04.210223413Z"} +2026/03/21 14:19:09 [log_collector] {"stage_name":"log_collector","events_processed":17266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3453.2,"last_update":"2026-03-21T14:19:04.068885746Z"} +2026/03/21 14:19:09 [metric_collector] {"stage_name":"metric_collector","events_processed":10814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2162.8,"last_update":"2026-03-21T14:19:04.069008551Z"} +2026/03/21 14:19:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:19:04.068662258Z"} +2026/03/21 14:19:09 [detection_layer] {"stage_name":"detection_layer","events_processed":360,"events_dropped":0,"avg_latency_ms":17.458288120549565,"throughput_eps":0,"last_update":"2026-03-21T14:19:04.210211089Z"} +2026/03/21 14:19:09 ───────────────────────────────────────────────── +2026/03/21 14:19:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:19:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:19:09.06919583Z"} +2026/03/21 14:19:14 [detection_layer] {"stage_name":"detection_layer","events_processed":360,"events_dropped":0,"avg_latency_ms":17.458288120549565,"throughput_eps":0,"last_update":"2026-03-21T14:19:09.210630573Z"} +2026/03/21 14:19:14 [transform_engine] {"stage_name":"transform_engine","events_processed":360,"events_dropped":0,"avg_latency_ms":438.52593333144273,"throughput_eps":0,"last_update":"2026-03-21T14:19:09.210643327Z"} +2026/03/21 14:19:14 [log_collector] {"stage_name":"log_collector","events_processed":17269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3453.8,"last_update":"2026-03-21T14:19:09.068062989Z"} +2026/03/21 14:19:14 [metric_collector] {"stage_name":"metric_collector","events_processed":10819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2163.8,"last_update":"2026-03-21T14:19:09.068191336Z"} +2026/03/21 14:19:14 ───────────────────────────────────────────────── +2026/03/21 14:19:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:19:19 [log_collector] {"stage_name":"log_collector","events_processed":17269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3453.8,"last_update":"2026-03-21T14:19:14.068634742Z"} +2026/03/21 14:19:19 [metric_collector] {"stage_name":"metric_collector","events_processed":10824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2164.8,"last_update":"2026-03-21T14:19:14.068917423Z"} +2026/03/21 14:19:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:19:14.076901978Z"} +2026/03/21 14:19:19 [detection_layer] {"stage_name":"detection_layer","events_processed":360,"events_dropped":0,"avg_latency_ms":17.458288120549565,"throughput_eps":0,"last_update":"2026-03-21T14:19:14.210119942Z"} +2026/03/21 14:19:19 [transform_engine] {"stage_name":"transform_engine","events_processed":360,"events_dropped":0,"avg_latency_ms":438.52593333144273,"throughput_eps":0,"last_update":"2026-03-21T14:19:14.210129049Z"} +2026/03/21 14:19:19 ───────────────────────────────────────────────── +2026/03/21 14:19:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:19:24 [detection_layer] {"stage_name":"detection_layer","events_processed":360,"events_dropped":0,"avg_latency_ms":17.458288120549565,"throughput_eps":0,"last_update":"2026-03-21T14:19:19.210341119Z"} +2026/03/21 14:19:24 [transform_engine] {"stage_name":"transform_engine","events_processed":361,"events_dropped":0,"avg_latency_ms":390.6006796651542,"throughput_eps":0,"last_update":"2026-03-21T14:19:19.409210146Z"} +2026/03/21 14:19:24 [log_collector] {"stage_name":"log_collector","events_processed":17280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3456,"last_update":"2026-03-21T14:19:19.068683318Z"} +2026/03/21 14:19:24 [metric_collector] {"stage_name":"metric_collector","events_processed":10829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2165.8,"last_update":"2026-03-21T14:19:19.069068637Z"} +2026/03/21 14:19:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:19:19.078076572Z"} +2026/03/21 14:19:24 ───────────────────────────────────────────────── +2026/03/21 14:19:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:19:29 [log_collector] {"stage_name":"log_collector","events_processed":17288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3457.6,"last_update":"2026-03-21T14:19:24.068592748Z"} +2026/03/21 14:19:29 [metric_collector] {"stage_name":"metric_collector","events_processed":10834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2166.8,"last_update":"2026-03-21T14:19:24.068826976Z"} +2026/03/21 14:19:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:19:24.077113879Z"} +2026/03/21 14:19:29 [detection_layer] {"stage_name":"detection_layer","events_processed":361,"events_dropped":0,"avg_latency_ms":17.389468696439653,"throughput_eps":0,"last_update":"2026-03-21T14:19:24.210425382Z"} +2026/03/21 14:19:29 [transform_engine] {"stage_name":"transform_engine","events_processed":361,"events_dropped":0,"avg_latency_ms":390.6006796651542,"throughput_eps":0,"last_update":"2026-03-21T14:19:24.210401306Z"} +2026/03/21 14:19:29 ───────────────────────────────────────────────── +2026/03/21 14:19:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:19:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:19:29.076489151Z"} +2026/03/21 14:19:34 [detection_layer] {"stage_name":"detection_layer","events_processed":361,"events_dropped":0,"avg_latency_ms":17.389468696439653,"throughput_eps":0,"last_update":"2026-03-21T14:19:29.21081636Z"} +2026/03/21 14:19:34 [transform_engine] {"stage_name":"transform_engine","events_processed":361,"events_dropped":0,"avg_latency_ms":390.6006796651542,"throughput_eps":0,"last_update":"2026-03-21T14:19:29.209649244Z"} +2026/03/21 14:19:34 [log_collector] {"stage_name":"log_collector","events_processed":17309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3461.8,"last_update":"2026-03-21T14:19:29.068414725Z"} +2026/03/21 14:19:34 [metric_collector] {"stage_name":"metric_collector","events_processed":10839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2167.8,"last_update":"2026-03-21T14:19:29.068648302Z"} +2026/03/21 14:19:34 ───────────────────────────────────────────────── +2026/03/21 14:19:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:19:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:19:34.077845966Z"} +2026/03/21 14:19:39 [detection_layer] {"stage_name":"detection_layer","events_processed":361,"events_dropped":0,"avg_latency_ms":17.389468696439653,"throughput_eps":0,"last_update":"2026-03-21T14:19:34.210306348Z"} +2026/03/21 14:19:39 [transform_engine] {"stage_name":"transform_engine","events_processed":361,"events_dropped":0,"avg_latency_ms":390.6006796651542,"throughput_eps":0,"last_update":"2026-03-21T14:19:34.210206137Z"} +2026/03/21 14:19:39 [log_collector] {"stage_name":"log_collector","events_processed":17310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3462,"last_update":"2026-03-21T14:19:34.068792595Z"} +2026/03/21 14:19:39 [metric_collector] {"stage_name":"metric_collector","events_processed":10844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2168.8,"last_update":"2026-03-21T14:19:34.068966959Z"} +2026/03/21 14:19:39 ───────────────────────────────────────────────── +2026/03/21 14:19:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:19:44 [log_collector] {"stage_name":"log_collector","events_processed":17310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3462,"last_update":"2026-03-21T14:19:39.068058282Z"} +2026/03/21 14:19:44 [metric_collector] {"stage_name":"metric_collector","events_processed":10849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2169.8,"last_update":"2026-03-21T14:19:39.068334271Z"} +2026/03/21 14:19:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4342,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:19:39.077091776Z"} +2026/03/21 14:19:44 [detection_layer] {"stage_name":"detection_layer","events_processed":361,"events_dropped":0,"avg_latency_ms":17.389468696439653,"throughput_eps":0,"last_update":"2026-03-21T14:19:39.210449207Z"} +2026/03/21 14:19:44 [transform_engine] {"stage_name":"transform_engine","events_processed":361,"events_dropped":0,"avg_latency_ms":390.6006796651542,"throughput_eps":0,"last_update":"2026-03-21T14:19:39.210419068Z"} +2026/03/21 14:19:44 ───────────────────────────────────────────────── +2026/03/21 14:19:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:19:49 [metric_collector] {"stage_name":"metric_collector","events_processed":10854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2170.8,"last_update":"2026-03-21T14:19:44.069290143Z"} +2026/03/21 14:19:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:19:44.078141587Z"} +2026/03/21 14:19:49 [detection_layer] {"stage_name":"detection_layer","events_processed":361,"events_dropped":0,"avg_latency_ms":17.389468696439653,"throughput_eps":0,"last_update":"2026-03-21T14:19:44.21041416Z"} +2026/03/21 14:19:49 [transform_engine] {"stage_name":"transform_engine","events_processed":361,"events_dropped":0,"avg_latency_ms":390.6006796651542,"throughput_eps":0,"last_update":"2026-03-21T14:19:44.210391487Z"} +2026/03/21 14:19:49 [log_collector] {"stage_name":"log_collector","events_processed":17310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3462,"last_update":"2026-03-21T14:19:49.068278645Z"} +2026/03/21 14:19:49 ───────────────────────────────────────────────── +2026/03/21 14:19:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:19:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:19:49.078937632Z"} +2026/03/21 14:19:54 [detection_layer] {"stage_name":"detection_layer","events_processed":361,"events_dropped":0,"avg_latency_ms":17.389468696439653,"throughput_eps":0,"last_update":"2026-03-21T14:19:49.21030918Z"} +2026/03/21 14:19:54 [transform_engine] {"stage_name":"transform_engine","events_processed":362,"events_dropped":0,"avg_latency_ms":338.19451773212336,"throughput_eps":0,"last_update":"2026-03-21T14:19:49.338913767Z"} +2026/03/21 14:19:54 [log_collector] {"stage_name":"log_collector","events_processed":17310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3462,"last_update":"2026-03-21T14:19:49.068278645Z"} +2026/03/21 14:19:54 [metric_collector] {"stage_name":"metric_collector","events_processed":10859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2171.8,"last_update":"2026-03-21T14:19:49.068666028Z"} +2026/03/21 14:19:54 ───────────────────────────────────────────────── +2026/03/21 14:19:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:19:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:19:54.06870559Z"} +2026/03/21 14:19:59 [detection_layer] {"stage_name":"detection_layer","events_processed":362,"events_dropped":0,"avg_latency_ms":18.204175157151724,"throughput_eps":0,"last_update":"2026-03-21T14:19:54.210359873Z"} +2026/03/21 14:19:59 [transform_engine] {"stage_name":"transform_engine","events_processed":362,"events_dropped":0,"avg_latency_ms":338.19451773212336,"throughput_eps":0,"last_update":"2026-03-21T14:19:54.210372467Z"} +2026/03/21 14:19:59 [log_collector] {"stage_name":"log_collector","events_processed":17310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3462,"last_update":"2026-03-21T14:19:54.068853993Z"} +2026/03/21 14:19:59 [metric_collector] {"stage_name":"metric_collector","events_processed":10864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2172.8,"last_update":"2026-03-21T14:19:54.069117028Z"} +2026/03/21 14:19:59 ───────────────────────────────────────────────── +2026/03/21 14:20:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:20:04 [log_collector] {"stage_name":"log_collector","events_processed":17310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3462,"last_update":"2026-03-21T14:19:59.068527132Z"} +2026/03/21 14:20:04 [metric_collector] {"stage_name":"metric_collector","events_processed":10869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2173.8,"last_update":"2026-03-21T14:19:59.069058619Z"} +2026/03/21 14:20:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4350,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:19:59.077740099Z"} +2026/03/21 14:20:04 [detection_layer] {"stage_name":"detection_layer","events_processed":362,"events_dropped":0,"avg_latency_ms":18.204175157151724,"throughput_eps":0,"last_update":"2026-03-21T14:19:59.210097483Z"} +2026/03/21 14:20:04 [transform_engine] {"stage_name":"transform_engine","events_processed":362,"events_dropped":0,"avg_latency_ms":338.19451773212336,"throughput_eps":0,"last_update":"2026-03-21T14:19:59.210115588Z"} +2026/03/21 14:20:04 ───────────────────────────────────────────────── +2026/03/21 14:20:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:20:09 [log_collector] {"stage_name":"log_collector","events_processed":17310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3462,"last_update":"2026-03-21T14:20:04.068732546Z"} +2026/03/21 14:20:09 [metric_collector] {"stage_name":"metric_collector","events_processed":10874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2174.8,"last_update":"2026-03-21T14:20:04.069615448Z"} +2026/03/21 14:20:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:20:04.080169063Z"} +2026/03/21 14:20:09 [detection_layer] {"stage_name":"detection_layer","events_processed":362,"events_dropped":0,"avg_latency_ms":18.204175157151724,"throughput_eps":0,"last_update":"2026-03-21T14:20:04.210377171Z"} +2026/03/21 14:20:09 [transform_engine] {"stage_name":"transform_engine","events_processed":362,"events_dropped":0,"avg_latency_ms":338.19451773212336,"throughput_eps":0,"last_update":"2026-03-21T14:20:04.210392019Z"} +2026/03/21 14:20:09 ───────────────────────────────────────────────── +2026/03/21 14:20:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:20:14 [log_collector] {"stage_name":"log_collector","events_processed":17310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3462,"last_update":"2026-03-21T14:20:09.068624708Z"} +2026/03/21 14:20:14 [metric_collector] {"stage_name":"metric_collector","events_processed":10879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2175.8,"last_update":"2026-03-21T14:20:09.068903963Z"} +2026/03/21 14:20:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:20:09.078122391Z"} +2026/03/21 14:20:14 [detection_layer] {"stage_name":"detection_layer","events_processed":362,"events_dropped":0,"avg_latency_ms":18.204175157151724,"throughput_eps":0,"last_update":"2026-03-21T14:20:09.210362021Z"} +2026/03/21 14:20:14 [transform_engine] {"stage_name":"transform_engine","events_processed":362,"events_dropped":0,"avg_latency_ms":338.19451773212336,"throughput_eps":0,"last_update":"2026-03-21T14:20:09.210373863Z"} +2026/03/21 14:20:14 ───────────────────────────────────────────────── +2026/03/21 14:20:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:20:19 [detection_layer] {"stage_name":"detection_layer","events_processed":362,"events_dropped":0,"avg_latency_ms":18.204175157151724,"throughput_eps":0,"last_update":"2026-03-21T14:20:14.209877419Z"} +2026/03/21 14:20:19 [transform_engine] {"stage_name":"transform_engine","events_processed":362,"events_dropped":0,"avg_latency_ms":338.19451773212336,"throughput_eps":0,"last_update":"2026-03-21T14:20:14.209815971Z"} +2026/03/21 14:20:19 [log_collector] {"stage_name":"log_collector","events_processed":17310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3462,"last_update":"2026-03-21T14:20:14.068866239Z"} +2026/03/21 14:20:19 [metric_collector] {"stage_name":"metric_collector","events_processed":10884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2176.8,"last_update":"2026-03-21T14:20:14.06915455Z"} +2026/03/21 14:20:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:20:14.078586307Z"} +2026/03/21 14:20:19 ───────────────────────────────────────────────── +2026/03/21 14:20:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:20:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:20:19.077892672Z"} +2026/03/21 14:20:24 [detection_layer] {"stage_name":"detection_layer","events_processed":362,"events_dropped":0,"avg_latency_ms":18.204175157151724,"throughput_eps":0,"last_update":"2026-03-21T14:20:19.210141709Z"} +2026/03/21 14:20:24 [transform_engine] {"stage_name":"transform_engine","events_processed":363,"events_dropped":0,"avg_latency_ms":284.8303749856987,"throughput_eps":0,"last_update":"2026-03-21T14:20:19.281530502Z"} +2026/03/21 14:20:24 [log_collector] {"stage_name":"log_collector","events_processed":17310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3462,"last_update":"2026-03-21T14:20:19.068570446Z"} +2026/03/21 14:20:24 [metric_collector] {"stage_name":"metric_collector","events_processed":10889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2177.8,"last_update":"2026-03-21T14:20:19.06892243Z"} +2026/03/21 14:20:24 ───────────────────────────────────────────────── +2026/03/21 14:20:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:20:29 [log_collector] {"stage_name":"log_collector","events_processed":17310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3462,"last_update":"2026-03-21T14:20:24.068077455Z"} +2026/03/21 14:20:29 [metric_collector] {"stage_name":"metric_collector","events_processed":10894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2178.8,"last_update":"2026-03-21T14:20:24.068482721Z"} +2026/03/21 14:20:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4360,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:20:24.077576931Z"} +2026/03/21 14:20:29 [detection_layer] {"stage_name":"detection_layer","events_processed":363,"events_dropped":0,"avg_latency_ms":18.96043252572138,"throughput_eps":0,"last_update":"2026-03-21T14:20:24.210880437Z"} +2026/03/21 14:20:29 [transform_engine] {"stage_name":"transform_engine","events_processed":363,"events_dropped":0,"avg_latency_ms":284.8303749856987,"throughput_eps":0,"last_update":"2026-03-21T14:20:24.209739753Z"} +2026/03/21 14:20:29 ───────────────────────────────────────────────── +Saved state: 17 clusters, 17311 messages, reason: none +2026/03/21 14:20:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:20:34 [log_collector] {"stage_name":"log_collector","events_processed":17310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3462,"last_update":"2026-03-21T14:20:29.068605424Z"} +2026/03/21 14:20:34 [metric_collector] {"stage_name":"metric_collector","events_processed":10899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2179.8,"last_update":"2026-03-21T14:20:29.068995572Z"} +2026/03/21 14:20:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:20:29.077805958Z"} +2026/03/21 14:20:34 [detection_layer] {"stage_name":"detection_layer","events_processed":363,"events_dropped":0,"avg_latency_ms":18.96043252572138,"throughput_eps":0,"last_update":"2026-03-21T14:20:29.210085474Z"} +2026/03/21 14:20:34 [transform_engine] {"stage_name":"transform_engine","events_processed":363,"events_dropped":0,"avg_latency_ms":284.8303749856987,"throughput_eps":0,"last_update":"2026-03-21T14:20:29.210097818Z"} +2026/03/21 14:20:34 ───────────────────────────────────────────────── +2026/03/21 14:20:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:20:39 [transform_engine] {"stage_name":"transform_engine","events_processed":363,"events_dropped":0,"avg_latency_ms":284.8303749856987,"throughput_eps":0,"last_update":"2026-03-21T14:20:34.210688015Z"} +2026/03/21 14:20:39 [log_collector] {"stage_name":"log_collector","events_processed":17315,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3463,"last_update":"2026-03-21T14:20:34.068422422Z"} +2026/03/21 14:20:39 [metric_collector] {"stage_name":"metric_collector","events_processed":10904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2180.8,"last_update":"2026-03-21T14:20:34.068810765Z"} +2026/03/21 14:20:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:20:34.075424834Z"} +2026/03/21 14:20:39 [detection_layer] {"stage_name":"detection_layer","events_processed":363,"events_dropped":0,"avg_latency_ms":18.96043252572138,"throughput_eps":0,"last_update":"2026-03-21T14:20:34.210678306Z"} +2026/03/21 14:20:39 ───────────────────────────────────────────────── +2026/03/21 14:20:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:20:44 [log_collector] {"stage_name":"log_collector","events_processed":17315,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3463,"last_update":"2026-03-21T14:20:39.06884217Z"} +2026/03/21 14:20:44 [metric_collector] {"stage_name":"metric_collector","events_processed":10909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2181.8,"last_update":"2026-03-21T14:20:39.069144429Z"} +2026/03/21 14:20:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:20:39.082535449Z"} +2026/03/21 14:20:44 [detection_layer] {"stage_name":"detection_layer","events_processed":363,"events_dropped":0,"avg_latency_ms":18.96043252572138,"throughput_eps":0,"last_update":"2026-03-21T14:20:39.210809803Z"} +2026/03/21 14:20:44 [transform_engine] {"stage_name":"transform_engine","events_processed":363,"events_dropped":0,"avg_latency_ms":284.8303749856987,"throughput_eps":0,"last_update":"2026-03-21T14:20:39.209683365Z"} +2026/03/21 14:20:44 ───────────────────────────────────────────────── +2026/03/21 14:20:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:20:49 [detection_layer] {"stage_name":"detection_layer","events_processed":363,"events_dropped":0,"avg_latency_ms":18.96043252572138,"throughput_eps":0,"last_update":"2026-03-21T14:20:44.210826236Z"} +2026/03/21 14:20:49 [transform_engine] {"stage_name":"transform_engine","events_processed":363,"events_dropped":0,"avg_latency_ms":284.8303749856987,"throughput_eps":0,"last_update":"2026-03-21T14:20:44.209746067Z"} +2026/03/21 14:20:49 [log_collector] {"stage_name":"log_collector","events_processed":17315,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3463,"last_update":"2026-03-21T14:20:44.0689507Z"} +2026/03/21 14:20:49 [metric_collector] {"stage_name":"metric_collector","events_processed":10914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2182.8,"last_update":"2026-03-21T14:20:44.069292966Z"} +2026/03/21 14:20:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:20:44.076559444Z"} +2026/03/21 14:20:49 ───────────────────────────────────────────────── +2026/03/21 14:20:49 [ANOMALY] time=2026-03-21T14:20:49Z score=0.8467 method=SEAD details=MAD!:w=0.29,s=0.95 RRCF-fast!:w=0.17,s=0.95 RRCF-mid:w=0.16,s=0.67 RRCF-slow:w=0.11,s=0.67 COPOD!:w=0.27,s=0.86 +2026/03/21 14:20:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:20:54 [transform_engine] {"stage_name":"transform_engine","events_processed":364,"events_dropped":0,"avg_latency_ms":260.72915298855895,"throughput_eps":0,"last_update":"2026-03-21T14:20:49.374587744Z"} +2026/03/21 14:20:54 [log_collector] {"stage_name":"log_collector","events_processed":17315,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3463,"last_update":"2026-03-21T14:20:49.069016516Z"} +2026/03/21 14:20:54 [metric_collector] {"stage_name":"metric_collector","events_processed":10919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2183.8,"last_update":"2026-03-21T14:20:49.069253771Z"} +2026/03/21 14:20:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:20:49.082898216Z"} +2026/03/21 14:20:54 [detection_layer] {"stage_name":"detection_layer","events_processed":363,"events_dropped":0,"avg_latency_ms":18.96043252572138,"throughput_eps":0,"last_update":"2026-03-21T14:20:49.2102492Z"} +2026/03/21 14:20:54 ───────────────────────────────────────────────── +2026/03/21 14:20:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:20:59 [metric_collector] {"stage_name":"metric_collector","events_processed":10924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2184.8,"last_update":"2026-03-21T14:20:54.068961598Z"} +2026/03/21 14:20:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:20:54.077035835Z"} +2026/03/21 14:20:59 [detection_layer] {"stage_name":"detection_layer","events_processed":364,"events_dropped":0,"avg_latency_ms":18.437157220577106,"throughput_eps":0,"last_update":"2026-03-21T14:20:54.210814161Z"} +2026/03/21 14:20:59 [transform_engine] {"stage_name":"transform_engine","events_processed":364,"events_dropped":0,"avg_latency_ms":260.72915298855895,"throughput_eps":0,"last_update":"2026-03-21T14:20:54.209678134Z"} +2026/03/21 14:20:59 [log_collector] {"stage_name":"log_collector","events_processed":17315,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3463,"last_update":"2026-03-21T14:20:59.068390339Z"} +2026/03/21 14:20:59 ───────────────────────────────────────────────── +2026/03/21 14:21:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:21:04 [log_collector] {"stage_name":"log_collector","events_processed":17315,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3463,"last_update":"2026-03-21T14:20:59.068390339Z"} +2026/03/21 14:21:04 [metric_collector] {"stage_name":"metric_collector","events_processed":10929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2185.8,"last_update":"2026-03-21T14:20:59.068706285Z"} +2026/03/21 14:21:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:20:59.075265439Z"} +2026/03/21 14:21:04 [detection_layer] {"stage_name":"detection_layer","events_processed":364,"events_dropped":0,"avg_latency_ms":18.437157220577106,"throughput_eps":0,"last_update":"2026-03-21T14:20:59.210513259Z"} +2026/03/21 14:21:04 [transform_engine] {"stage_name":"transform_engine","events_processed":364,"events_dropped":0,"avg_latency_ms":260.72915298855895,"throughput_eps":0,"last_update":"2026-03-21T14:20:59.210524992Z"} +2026/03/21 14:21:04 ───────────────────────────────────────────────── +2026/03/21 14:21:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:21:09 [log_collector] {"stage_name":"log_collector","events_processed":17315,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3463,"last_update":"2026-03-21T14:21:04.068063456Z"} +2026/03/21 14:21:09 [metric_collector] {"stage_name":"metric_collector","events_processed":10934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2186.8,"last_update":"2026-03-21T14:21:04.068302124Z"} +2026/03/21 14:21:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:21:04.077845033Z"} +2026/03/21 14:21:09 [detection_layer] {"stage_name":"detection_layer","events_processed":364,"events_dropped":0,"avg_latency_ms":18.437157220577106,"throughput_eps":0,"last_update":"2026-03-21T14:21:04.210107315Z"} +2026/03/21 14:21:09 [transform_engine] {"stage_name":"transform_engine","events_processed":364,"events_dropped":0,"avg_latency_ms":260.72915298855895,"throughput_eps":0,"last_update":"2026-03-21T14:21:04.210122745Z"} +2026/03/21 14:21:09 ───────────────────────────────────────────────── +2026/03/21 14:21:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:21:14 [log_collector] {"stage_name":"log_collector","events_processed":17318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3463.6,"last_update":"2026-03-21T14:21:14.068194236Z"} +2026/03/21 14:21:14 [metric_collector] {"stage_name":"metric_collector","events_processed":10939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2187.8,"last_update":"2026-03-21T14:21:09.068726067Z"} +2026/03/21 14:21:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:21:09.075499801Z"} +2026/03/21 14:21:14 [detection_layer] {"stage_name":"detection_layer","events_processed":364,"events_dropped":0,"avg_latency_ms":18.437157220577106,"throughput_eps":0,"last_update":"2026-03-21T14:21:09.210789582Z"} +2026/03/21 14:21:14 [transform_engine] {"stage_name":"transform_engine","events_processed":364,"events_dropped":0,"avg_latency_ms":260.72915298855895,"throughput_eps":0,"last_update":"2026-03-21T14:21:09.209709904Z"} +2026/03/21 14:21:14 ───────────────────────────────────────────────── +2026/03/21 14:21:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:21:19 [transform_engine] {"stage_name":"transform_engine","events_processed":364,"events_dropped":0,"avg_latency_ms":260.72915298855895,"throughput_eps":0,"last_update":"2026-03-21T14:21:14.21034065Z"} +2026/03/21 14:21:19 [log_collector] {"stage_name":"log_collector","events_processed":17318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3463.6,"last_update":"2026-03-21T14:21:14.068194236Z"} +2026/03/21 14:21:19 [metric_collector] {"stage_name":"metric_collector","events_processed":10944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2188.8,"last_update":"2026-03-21T14:21:14.068488529Z"} +2026/03/21 14:21:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4380,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:21:14.079142437Z"} +2026/03/21 14:21:19 [detection_layer] {"stage_name":"detection_layer","events_processed":364,"events_dropped":0,"avg_latency_ms":18.437157220577106,"throughput_eps":0,"last_update":"2026-03-21T14:21:14.210328838Z"} +2026/03/21 14:21:19 ───────────────────────────────────────────────── +2026/03/21 14:21:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:21:24 [log_collector] {"stage_name":"log_collector","events_processed":17326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3465.2,"last_update":"2026-03-21T14:21:19.068753643Z"} +2026/03/21 14:21:24 [metric_collector] {"stage_name":"metric_collector","events_processed":10949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2189.8,"last_update":"2026-03-21T14:21:19.069085538Z"} +2026/03/21 14:21:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:21:19.077627931Z"} +2026/03/21 14:21:24 [detection_layer] {"stage_name":"detection_layer","events_processed":364,"events_dropped":0,"avg_latency_ms":18.437157220577106,"throughput_eps":0,"last_update":"2026-03-21T14:21:19.210877935Z"} +2026/03/21 14:21:24 [transform_engine] {"stage_name":"transform_engine","events_processed":365,"events_dropped":0,"avg_latency_ms":231.17027659084718,"throughput_eps":0,"last_update":"2026-03-21T14:21:19.322669767Z"} +2026/03/21 14:21:24 ───────────────────────────────────────────────── +2026/03/21 14:21:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:21:29 [log_collector] {"stage_name":"log_collector","events_processed":17395,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3479,"last_update":"2026-03-21T14:21:24.069058502Z"} +2026/03/21 14:21:29 [metric_collector] {"stage_name":"metric_collector","events_processed":10954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2190.8,"last_update":"2026-03-21T14:21:24.069289474Z"} +2026/03/21 14:21:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:21:24.077973358Z"} +2026/03/21 14:21:29 [detection_layer] {"stage_name":"detection_layer","events_processed":365,"events_dropped":0,"avg_latency_ms":18.247359376461684,"throughput_eps":0,"last_update":"2026-03-21T14:21:24.209998696Z"} +2026/03/21 14:21:29 [transform_engine] {"stage_name":"transform_engine","events_processed":365,"events_dropped":0,"avg_latency_ms":231.17027659084718,"throughput_eps":0,"last_update":"2026-03-21T14:21:24.210012803Z"} +2026/03/21 14:21:29 ───────────────────────────────────────────────── +2026/03/21 14:21:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:21:34 [log_collector] {"stage_name":"log_collector","events_processed":17673,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3534.6,"last_update":"2026-03-21T14:21:34.068153503Z"} +2026/03/21 14:21:34 [metric_collector] {"stage_name":"metric_collector","events_processed":10959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2191.8,"last_update":"2026-03-21T14:21:29.069012878Z"} +2026/03/21 14:21:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:21:29.075139653Z"} +2026/03/21 14:21:34 [detection_layer] {"stage_name":"detection_layer","events_processed":365,"events_dropped":0,"avg_latency_ms":18.247359376461684,"throughput_eps":0,"last_update":"2026-03-21T14:21:29.210382595Z"} +2026/03/21 14:21:34 [transform_engine] {"stage_name":"transform_engine","events_processed":365,"events_dropped":0,"avg_latency_ms":231.17027659084718,"throughput_eps":0,"last_update":"2026-03-21T14:21:29.210488909Z"} +2026/03/21 14:21:34 ───────────────────────────────────────────────── +2026/03/21 14:21:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:21:39 [log_collector] {"stage_name":"log_collector","events_processed":17673,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3534.6,"last_update":"2026-03-21T14:21:34.068153503Z"} +2026/03/21 14:21:39 [metric_collector] {"stage_name":"metric_collector","events_processed":10964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2192.8,"last_update":"2026-03-21T14:21:34.068534151Z"} +2026/03/21 14:21:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4388,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:21:34.077117693Z"} +2026/03/21 14:21:39 [detection_layer] {"stage_name":"detection_layer","events_processed":365,"events_dropped":0,"avg_latency_ms":18.247359376461684,"throughput_eps":0,"last_update":"2026-03-21T14:21:34.210389418Z"} +2026/03/21 14:21:39 [transform_engine] {"stage_name":"transform_engine","events_processed":365,"events_dropped":0,"avg_latency_ms":231.17027659084718,"throughput_eps":0,"last_update":"2026-03-21T14:21:34.210429875Z"} +2026/03/21 14:21:39 ───────────────────────────────────────────────── +2026/03/21 14:21:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:21:44 [detection_layer] {"stage_name":"detection_layer","events_processed":365,"events_dropped":0,"avg_latency_ms":18.247359376461684,"throughput_eps":0,"last_update":"2026-03-21T14:21:39.210577927Z"} +2026/03/21 14:21:44 [transform_engine] {"stage_name":"transform_engine","events_processed":365,"events_dropped":0,"avg_latency_ms":231.17027659084718,"throughput_eps":0,"last_update":"2026-03-21T14:21:39.210610429Z"} +2026/03/21 14:21:44 [log_collector] {"stage_name":"log_collector","events_processed":17673,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3534.6,"last_update":"2026-03-21T14:21:39.068723692Z"} +2026/03/21 14:21:44 [metric_collector] {"stage_name":"metric_collector","events_processed":10969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2193.8,"last_update":"2026-03-21T14:21:39.069136402Z"} +2026/03/21 14:21:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4390,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:21:39.078294946Z"} +2026/03/21 14:21:44 ───────────────────────────────────────────────── +2026/03/21 14:21:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:21:49 [detection_layer] {"stage_name":"detection_layer","events_processed":365,"events_dropped":0,"avg_latency_ms":18.247359376461684,"throughput_eps":0,"last_update":"2026-03-21T14:21:44.210493461Z"} +2026/03/21 14:21:49 [transform_engine] {"stage_name":"transform_engine","events_processed":365,"events_dropped":0,"avg_latency_ms":231.17027659084718,"throughput_eps":0,"last_update":"2026-03-21T14:21:44.210583152Z"} +2026/03/21 14:21:49 [log_collector] {"stage_name":"log_collector","events_processed":17673,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3534.6,"last_update":"2026-03-21T14:21:44.068757163Z"} +2026/03/21 14:21:49 [metric_collector] {"stage_name":"metric_collector","events_processed":10974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2194.8,"last_update":"2026-03-21T14:21:44.069076884Z"} +2026/03/21 14:21:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:21:44.078191012Z"} +2026/03/21 14:21:49 ───────────────────────────────────────────────── +2026/03/21 14:21:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:21:54 [transform_engine] {"stage_name":"transform_engine","events_processed":365,"events_dropped":0,"avg_latency_ms":231.17027659084718,"throughput_eps":0,"last_update":"2026-03-21T14:21:49.209730472Z"} +2026/03/21 14:21:54 [log_collector] {"stage_name":"log_collector","events_processed":17673,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3534.6,"last_update":"2026-03-21T14:21:49.06810745Z"} +2026/03/21 14:21:54 [metric_collector] {"stage_name":"metric_collector","events_processed":10979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2195.8,"last_update":"2026-03-21T14:21:49.068638198Z"} +2026/03/21 14:21:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:21:49.076570642Z"} +2026/03/21 14:21:54 [detection_layer] {"stage_name":"detection_layer","events_processed":365,"events_dropped":0,"avg_latency_ms":18.247359376461684,"throughput_eps":0,"last_update":"2026-03-21T14:21:49.210896946Z"} +2026/03/21 14:21:54 ───────────────────────────────────────────────── +2026/03/21 14:21:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:21:59 [log_collector] {"stage_name":"log_collector","events_processed":17673,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3534.6,"last_update":"2026-03-21T14:21:54.068096643Z"} +2026/03/21 14:21:59 [metric_collector] {"stage_name":"metric_collector","events_processed":10984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2196.8,"last_update":"2026-03-21T14:21:54.068639412Z"} +2026/03/21 14:21:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:21:54.077630575Z"} +2026/03/21 14:21:59 [detection_layer] {"stage_name":"detection_layer","events_processed":366,"events_dropped":0,"avg_latency_ms":18.52415810116935,"throughput_eps":0,"last_update":"2026-03-21T14:21:54.209870122Z"} +2026/03/21 14:21:59 [transform_engine] {"stage_name":"transform_engine","events_processed":366,"events_dropped":0,"avg_latency_ms":208.56207347267775,"throughput_eps":0,"last_update":"2026-03-21T14:21:54.209803896Z"} +2026/03/21 14:21:59 ───────────────────────────────────────────────── +2026/03/21 14:22:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:22:04 [log_collector] {"stage_name":"log_collector","events_processed":17673,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3534.6,"last_update":"2026-03-21T14:21:59.068206932Z"} +2026/03/21 14:22:04 [metric_collector] {"stage_name":"metric_collector","events_processed":10989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2197.8,"last_update":"2026-03-21T14:21:59.068572593Z"} +2026/03/21 14:22:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:21:59.078328019Z"} +2026/03/21 14:22:04 [detection_layer] {"stage_name":"detection_layer","events_processed":366,"events_dropped":0,"avg_latency_ms":18.52415810116935,"throughput_eps":0,"last_update":"2026-03-21T14:21:59.210750427Z"} +2026/03/21 14:22:04 [transform_engine] {"stage_name":"transform_engine","events_processed":366,"events_dropped":0,"avg_latency_ms":208.56207347267775,"throughput_eps":0,"last_update":"2026-03-21T14:21:59.210721713Z"} +2026/03/21 14:22:04 ───────────────────────────────────────────────── +2026/03/21 14:22:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:22:09 [log_collector] {"stage_name":"log_collector","events_processed":17673,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3534.6,"last_update":"2026-03-21T14:22:04.068763377Z"} +2026/03/21 14:22:09 [metric_collector] {"stage_name":"metric_collector","events_processed":10994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2198.8,"last_update":"2026-03-21T14:22:04.069139657Z"} +2026/03/21 14:22:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4400,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:22:04.079380724Z"} +2026/03/21 14:22:09 [detection_layer] {"stage_name":"detection_layer","events_processed":366,"events_dropped":0,"avg_latency_ms":18.52415810116935,"throughput_eps":0,"last_update":"2026-03-21T14:22:04.210589106Z"} +2026/03/21 14:22:09 [transform_engine] {"stage_name":"transform_engine","events_processed":366,"events_dropped":0,"avg_latency_ms":208.56207347267775,"throughput_eps":0,"last_update":"2026-03-21T14:22:04.210601479Z"} +2026/03/21 14:22:09 ───────────────────────────────────────────────── +2026/03/21 14:22:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:22:14 [log_collector] {"stage_name":"log_collector","events_processed":17673,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3534.6,"last_update":"2026-03-21T14:22:09.06861581Z"} +2026/03/21 14:22:14 [metric_collector] {"stage_name":"metric_collector","events_processed":10998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2199.6,"last_update":"2026-03-21T14:22:09.068621601Z"} +2026/03/21 14:22:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4402,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:22:09.077343468Z"} +2026/03/21 14:22:14 [detection_layer] {"stage_name":"detection_layer","events_processed":366,"events_dropped":0,"avg_latency_ms":18.52415810116935,"throughput_eps":0,"last_update":"2026-03-21T14:22:09.21047319Z"} +2026/03/21 14:22:14 [transform_engine] {"stage_name":"transform_engine","events_processed":366,"events_dropped":0,"avg_latency_ms":208.56207347267775,"throughput_eps":0,"last_update":"2026-03-21T14:22:09.21048347Z"} +2026/03/21 14:22:14 ───────────────────────────────────────────────── +2026/03/21 14:22:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:22:19 [log_collector] {"stage_name":"log_collector","events_processed":17673,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3534.6,"last_update":"2026-03-21T14:22:14.068935947Z"} +2026/03/21 14:22:19 [metric_collector] {"stage_name":"metric_collector","events_processed":11004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2200.8,"last_update":"2026-03-21T14:22:14.069381641Z"} +2026/03/21 14:22:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:22:14.077832809Z"} +2026/03/21 14:22:19 [detection_layer] {"stage_name":"detection_layer","events_processed":366,"events_dropped":0,"avg_latency_ms":18.52415810116935,"throughput_eps":0,"last_update":"2026-03-21T14:22:14.210074521Z"} +2026/03/21 14:22:19 [transform_engine] {"stage_name":"transform_engine","events_processed":366,"events_dropped":0,"avg_latency_ms":208.56207347267775,"throughput_eps":0,"last_update":"2026-03-21T14:22:14.210086243Z"} +2026/03/21 14:22:19 ───────────────────────────────────────────────── +2026/03/21 14:22:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:22:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:22:19.077568454Z"} +2026/03/21 14:22:24 [detection_layer] {"stage_name":"detection_layer","events_processed":366,"events_dropped":0,"avg_latency_ms":18.52415810116935,"throughput_eps":0,"last_update":"2026-03-21T14:22:19.210868143Z"} +2026/03/21 14:22:24 [transform_engine] {"stage_name":"transform_engine","events_processed":367,"events_dropped":0,"avg_latency_ms":181.0237163781422,"throughput_eps":0,"last_update":"2026-03-21T14:22:19.280629918Z"} +2026/03/21 14:22:24 [log_collector] {"stage_name":"log_collector","events_processed":17673,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3534.6,"last_update":"2026-03-21T14:22:19.068072245Z"} +2026/03/21 14:22:24 [metric_collector] {"stage_name":"metric_collector","events_processed":11008,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2201.6,"last_update":"2026-03-21T14:22:19.068168319Z"} +2026/03/21 14:22:24 ───────────────────────────────────────────────── +2026/03/21 14:22:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:22:29 [log_collector] {"stage_name":"log_collector","events_processed":17673,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3534.6,"last_update":"2026-03-21T14:22:24.069026375Z"} +2026/03/21 14:22:29 [metric_collector] {"stage_name":"metric_collector","events_processed":11014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2202.8,"last_update":"2026-03-21T14:22:24.069694775Z"} +2026/03/21 14:22:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4408,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:22:24.078177072Z"} +2026/03/21 14:22:29 [detection_layer] {"stage_name":"detection_layer","events_processed":367,"events_dropped":0,"avg_latency_ms":19.03147848093548,"throughput_eps":0,"last_update":"2026-03-21T14:22:24.210519326Z"} +2026/03/21 14:22:29 [transform_engine] {"stage_name":"transform_engine","events_processed":367,"events_dropped":0,"avg_latency_ms":181.0237163781422,"throughput_eps":0,"last_update":"2026-03-21T14:22:24.210556267Z"} +2026/03/21 14:22:29 ───────────────────────────────────────────────── +2026/03/21 14:22:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:22:34 [metric_collector] {"stage_name":"metric_collector","events_processed":11019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2203.8,"last_update":"2026-03-21T14:22:29.068864782Z"} +2026/03/21 14:22:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:22:29.076892128Z"} +2026/03/21 14:22:34 [detection_layer] {"stage_name":"detection_layer","events_processed":367,"events_dropped":0,"avg_latency_ms":19.03147848093548,"throughput_eps":0,"last_update":"2026-03-21T14:22:29.210275436Z"} +2026/03/21 14:22:34 [transform_engine] {"stage_name":"transform_engine","events_processed":367,"events_dropped":0,"avg_latency_ms":181.0237163781422,"throughput_eps":0,"last_update":"2026-03-21T14:22:29.210168712Z"} +2026/03/21 14:22:34 [log_collector] {"stage_name":"log_collector","events_processed":17673,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3534.6,"last_update":"2026-03-21T14:22:29.068561932Z"} +2026/03/21 14:22:34 ───────────────────────────────────────────────── +2026/03/21 14:22:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:22:39 [detection_layer] {"stage_name":"detection_layer","events_processed":367,"events_dropped":0,"avg_latency_ms":19.03147848093548,"throughput_eps":0,"last_update":"2026-03-21T14:22:34.21024317Z"} +2026/03/21 14:22:39 [transform_engine] {"stage_name":"transform_engine","events_processed":367,"events_dropped":0,"avg_latency_ms":181.0237163781422,"throughput_eps":0,"last_update":"2026-03-21T14:22:34.210286884Z"} +2026/03/21 14:22:39 [log_collector] {"stage_name":"log_collector","events_processed":17673,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3534.6,"last_update":"2026-03-21T14:22:34.06838056Z"} +2026/03/21 14:22:39 [metric_collector] {"stage_name":"metric_collector","events_processed":11024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2204.8,"last_update":"2026-03-21T14:22:34.068882812Z"} +2026/03/21 14:22:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:22:34.078953913Z"} +2026/03/21 14:22:39 ───────────────────────────────────────────────── +2026/03/21 14:22:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:22:44 [transform_engine] {"stage_name":"transform_engine","events_processed":367,"events_dropped":0,"avg_latency_ms":181.0237163781422,"throughput_eps":0,"last_update":"2026-03-21T14:22:39.209752305Z"} +2026/03/21 14:22:44 [log_collector] {"stage_name":"log_collector","events_processed":17673,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3534.6,"last_update":"2026-03-21T14:22:39.068079689Z"} +2026/03/21 14:22:44 [metric_collector] {"stage_name":"metric_collector","events_processed":11029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2205.8,"last_update":"2026-03-21T14:22:39.068922774Z"} +2026/03/21 14:22:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:22:39.077565318Z"} +2026/03/21 14:22:44 [detection_layer] {"stage_name":"detection_layer","events_processed":367,"events_dropped":0,"avg_latency_ms":19.03147848093548,"throughput_eps":0,"last_update":"2026-03-21T14:22:39.21083506Z"} +2026/03/21 14:22:44 ───────────────────────────────────────────────── +2026/03/21 14:22:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:22:49 [detection_layer] {"stage_name":"detection_layer","events_processed":367,"events_dropped":0,"avg_latency_ms":19.03147848093548,"throughput_eps":0,"last_update":"2026-03-21T14:22:44.210644616Z"} +2026/03/21 14:22:49 [transform_engine] {"stage_name":"transform_engine","events_processed":367,"events_dropped":0,"avg_latency_ms":181.0237163781422,"throughput_eps":0,"last_update":"2026-03-21T14:22:44.210601313Z"} +2026/03/21 14:22:49 [log_collector] {"stage_name":"log_collector","events_processed":17673,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3534.6,"last_update":"2026-03-21T14:22:44.068974896Z"} +2026/03/21 14:22:49 [metric_collector] {"stage_name":"metric_collector","events_processed":11034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2206.8,"last_update":"2026-03-21T14:22:44.06957767Z"} +2026/03/21 14:22:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:22:44.079325892Z"} +2026/03/21 14:22:49 ───────────────────────────────────────────────── +2026/03/21 14:22:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:22:54 [metric_collector] {"stage_name":"metric_collector","events_processed":11039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2207.8,"last_update":"2026-03-21T14:22:49.068750326Z"} +2026/03/21 14:22:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:22:49.078512415Z"} +2026/03/21 14:22:54 [detection_layer] {"stage_name":"detection_layer","events_processed":367,"events_dropped":0,"avg_latency_ms":19.03147848093548,"throughput_eps":0,"last_update":"2026-03-21T14:22:49.210814091Z"} +2026/03/21 14:22:54 [transform_engine] {"stage_name":"transform_engine","events_processed":368,"events_dropped":0,"avg_latency_ms":159.2501551025138,"throughput_eps":0,"last_update":"2026-03-21T14:22:49.281853072Z"} +2026/03/21 14:22:54 [log_collector] {"stage_name":"log_collector","events_processed":17673,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3534.6,"last_update":"2026-03-21T14:22:49.068109037Z"} +2026/03/21 14:22:54 ───────────────────────────────────────────────── +2026/03/21 14:22:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:22:59 [log_collector] {"stage_name":"log_collector","events_processed":17673,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3534.6,"last_update":"2026-03-21T14:22:54.068901495Z"} +2026/03/21 14:22:59 [metric_collector] {"stage_name":"metric_collector","events_processed":11044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2208.8,"last_update":"2026-03-21T14:22:54.069316339Z"} +2026/03/21 14:22:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4420,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:22:54.078477277Z"} +2026/03/21 14:22:59 [detection_layer] {"stage_name":"detection_layer","events_processed":368,"events_dropped":0,"avg_latency_ms":19.321003984748383,"throughput_eps":0,"last_update":"2026-03-21T14:22:54.210935442Z"} +2026/03/21 14:22:59 [transform_engine] {"stage_name":"transform_engine","events_processed":368,"events_dropped":0,"avg_latency_ms":159.2501551025138,"throughput_eps":0,"last_update":"2026-03-21T14:22:54.209740855Z"} +2026/03/21 14:22:59 ───────────────────────────────────────────────── +Saved state: 17 clusters, 17674 messages, reason: none +2026/03/21 14:23:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:23:04 [detection_layer] {"stage_name":"detection_layer","events_processed":368,"events_dropped":0,"avg_latency_ms":19.321003984748383,"throughput_eps":0,"last_update":"2026-03-21T14:22:59.210472194Z"} +2026/03/21 14:23:04 [transform_engine] {"stage_name":"transform_engine","events_processed":368,"events_dropped":0,"avg_latency_ms":159.2501551025138,"throughput_eps":0,"last_update":"2026-03-21T14:22:59.2105121Z"} +2026/03/21 14:23:04 [log_collector] {"stage_name":"log_collector","events_processed":17673,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3534.6,"last_update":"2026-03-21T14:22:59.068779789Z"} +2026/03/21 14:23:04 [metric_collector] {"stage_name":"metric_collector","events_processed":11049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2209.8,"last_update":"2026-03-21T14:22:59.068971948Z"} +2026/03/21 14:23:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:22:59.078214341Z"} +2026/03/21 14:23:04 ───────────────────────────────────────────────── +2026/03/21 14:23:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:23:09 [log_collector] {"stage_name":"log_collector","events_processed":17676,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3535.2,"last_update":"2026-03-21T14:23:04.068962977Z"} +2026/03/21 14:23:09 [metric_collector] {"stage_name":"metric_collector","events_processed":11054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2210.8,"last_update":"2026-03-21T14:23:04.069285604Z"} +2026/03/21 14:23:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:23:04.076867428Z"} +2026/03/21 14:23:09 [detection_layer] {"stage_name":"detection_layer","events_processed":368,"events_dropped":0,"avg_latency_ms":19.321003984748383,"throughput_eps":0,"last_update":"2026-03-21T14:23:04.210088495Z"} +2026/03/21 14:23:09 [transform_engine] {"stage_name":"transform_engine","events_processed":368,"events_dropped":0,"avg_latency_ms":159.2501551025138,"throughput_eps":0,"last_update":"2026-03-21T14:23:04.210123572Z"} +2026/03/21 14:23:09 ───────────────────────────────────────────────── +2026/03/21 14:23:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:23:14 [metric_collector] {"stage_name":"metric_collector","events_processed":11059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2211.8,"last_update":"2026-03-21T14:23:09.068999271Z"} +2026/03/21 14:23:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:23:09.076432248Z"} +2026/03/21 14:23:14 [detection_layer] {"stage_name":"detection_layer","events_processed":368,"events_dropped":0,"avg_latency_ms":19.321003984748383,"throughput_eps":0,"last_update":"2026-03-21T14:23:09.210689661Z"} +2026/03/21 14:23:14 [transform_engine] {"stage_name":"transform_engine","events_processed":368,"events_dropped":0,"avg_latency_ms":159.2501551025138,"throughput_eps":0,"last_update":"2026-03-21T14:23:09.210656257Z"} +2026/03/21 14:23:14 [log_collector] {"stage_name":"log_collector","events_processed":17676,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3535.2,"last_update":"2026-03-21T14:23:09.068850185Z"} +2026/03/21 14:23:14 ───────────────────────────────────────────────── +2026/03/21 14:23:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:23:19 [metric_collector] {"stage_name":"metric_collector","events_processed":11064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2212.8,"last_update":"2026-03-21T14:23:14.069383931Z"} +2026/03/21 14:23:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:23:14.077692926Z"} +2026/03/21 14:23:19 [detection_layer] {"stage_name":"detection_layer","events_processed":368,"events_dropped":0,"avg_latency_ms":19.321003984748383,"throughput_eps":0,"last_update":"2026-03-21T14:23:14.209918968Z"} +2026/03/21 14:23:19 [transform_engine] {"stage_name":"transform_engine","events_processed":368,"events_dropped":0,"avg_latency_ms":159.2501551025138,"throughput_eps":0,"last_update":"2026-03-21T14:23:14.20994126Z"} +2026/03/21 14:23:19 [log_collector] {"stage_name":"log_collector","events_processed":17686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3537.2,"last_update":"2026-03-21T14:23:14.068766017Z"} +2026/03/21 14:23:19 ───────────────────────────────────────────────── +2026/03/21 14:23:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:23:24 [log_collector] {"stage_name":"log_collector","events_processed":17701,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3540.2,"last_update":"2026-03-21T14:23:19.068237776Z"} +2026/03/21 14:23:24 [metric_collector] {"stage_name":"metric_collector","events_processed":11069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2213.8,"last_update":"2026-03-21T14:23:19.068599628Z"} +2026/03/21 14:23:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:23:19.076167414Z"} +2026/03/21 14:23:24 [detection_layer] {"stage_name":"detection_layer","events_processed":368,"events_dropped":0,"avg_latency_ms":19.321003984748383,"throughput_eps":0,"last_update":"2026-03-21T14:23:19.210528104Z"} +2026/03/21 14:23:24 [transform_engine] {"stage_name":"transform_engine","events_processed":369,"events_dropped":0,"avg_latency_ms":471.20590608201104,"throughput_eps":0,"last_update":"2026-03-21T14:23:20.929521385Z"} +2026/03/21 14:23:24 ───────────────────────────────────────────────── +2026/03/21 14:23:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:23:29 [log_collector] {"stage_name":"log_collector","events_processed":17711,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3542.2,"last_update":"2026-03-21T14:23:24.068158912Z"} +2026/03/21 14:23:29 [metric_collector] {"stage_name":"metric_collector","events_processed":11074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2214.8,"last_update":"2026-03-21T14:23:24.068520755Z"} +2026/03/21 14:23:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:23:24.074997341Z"} +2026/03/21 14:23:29 [detection_layer] {"stage_name":"detection_layer","events_processed":369,"events_dropped":0,"avg_latency_ms":19.24705098779871,"throughput_eps":0,"last_update":"2026-03-21T14:23:24.210196958Z"} +2026/03/21 14:23:29 [transform_engine] {"stage_name":"transform_engine","events_processed":369,"events_dropped":0,"avg_latency_ms":471.20590608201104,"throughput_eps":0,"last_update":"2026-03-21T14:23:24.210209132Z"} +2026/03/21 14:23:29 ───────────────────────────────────────────────── +2026/03/21 14:23:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:23:34 [log_collector] {"stage_name":"log_collector","events_processed":17717,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3543.4,"last_update":"2026-03-21T14:23:29.068587301Z"} +2026/03/21 14:23:34 [metric_collector] {"stage_name":"metric_collector","events_processed":11079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2215.8,"last_update":"2026-03-21T14:23:29.069151683Z"} +2026/03/21 14:23:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:23:29.078765998Z"} +2026/03/21 14:23:34 [detection_layer] {"stage_name":"detection_layer","events_processed":369,"events_dropped":0,"avg_latency_ms":19.24705098779871,"throughput_eps":0,"last_update":"2026-03-21T14:23:29.209992355Z"} +2026/03/21 14:23:34 [transform_engine] {"stage_name":"transform_engine","events_processed":369,"events_dropped":0,"avg_latency_ms":471.20590608201104,"throughput_eps":0,"last_update":"2026-03-21T14:23:29.210002744Z"} +2026/03/21 14:23:34 ───────────────────────────────────────────────── +2026/03/21 14:23:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:23:39 [metric_collector] {"stage_name":"metric_collector","events_processed":11084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2216.8,"last_update":"2026-03-21T14:23:34.068953388Z"} +2026/03/21 14:23:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:23:34.078343394Z"} +2026/03/21 14:23:39 [detection_layer] {"stage_name":"detection_layer","events_processed":369,"events_dropped":0,"avg_latency_ms":19.24705098779871,"throughput_eps":0,"last_update":"2026-03-21T14:23:34.210674057Z"} +2026/03/21 14:23:39 [transform_engine] {"stage_name":"transform_engine","events_processed":369,"events_dropped":0,"avg_latency_ms":471.20590608201104,"throughput_eps":0,"last_update":"2026-03-21T14:23:34.210689626Z"} +2026/03/21 14:23:39 [log_collector] {"stage_name":"log_collector","events_processed":17717,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3543.4,"last_update":"2026-03-21T14:23:34.068592618Z"} +2026/03/21 14:23:39 ───────────────────────────────────────────────── +2026/03/21 14:23:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:23:44 [log_collector] {"stage_name":"log_collector","events_processed":17717,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3543.4,"last_update":"2026-03-21T14:23:39.068712001Z"} +2026/03/21 14:23:44 [metric_collector] {"stage_name":"metric_collector","events_processed":11089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2217.8,"last_update":"2026-03-21T14:23:39.069032094Z"} +2026/03/21 14:23:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:23:39.078330074Z"} +2026/03/21 14:23:44 [detection_layer] {"stage_name":"detection_layer","events_processed":369,"events_dropped":0,"avg_latency_ms":19.24705098779871,"throughput_eps":0,"last_update":"2026-03-21T14:23:39.210593737Z"} +2026/03/21 14:23:44 [transform_engine] {"stage_name":"transform_engine","events_processed":369,"events_dropped":0,"avg_latency_ms":471.20590608201104,"throughput_eps":0,"last_update":"2026-03-21T14:23:39.21060543Z"} +2026/03/21 14:23:44 ───────────────────────────────────────────────── +2026/03/21 14:23:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:23:49 [metric_collector] {"stage_name":"metric_collector","events_processed":11094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2218.8,"last_update":"2026-03-21T14:23:44.069006757Z"} +2026/03/21 14:23:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:23:44.079076265Z"} +2026/03/21 14:23:49 [detection_layer] {"stage_name":"detection_layer","events_processed":369,"events_dropped":0,"avg_latency_ms":19.24705098779871,"throughput_eps":0,"last_update":"2026-03-21T14:23:44.210291279Z"} +2026/03/21 14:23:49 [transform_engine] {"stage_name":"transform_engine","events_processed":369,"events_dropped":0,"avg_latency_ms":471.20590608201104,"throughput_eps":0,"last_update":"2026-03-21T14:23:44.210301609Z"} +2026/03/21 14:23:49 [log_collector] {"stage_name":"log_collector","events_processed":17717,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3543.4,"last_update":"2026-03-21T14:23:44.068643751Z"} +2026/03/21 14:23:49 ───────────────────────────────────────────────── +2026/03/21 14:23:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:23:54 [log_collector] {"stage_name":"log_collector","events_processed":17717,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3543.4,"last_update":"2026-03-21T14:23:49.068668158Z"} +2026/03/21 14:23:54 [metric_collector] {"stage_name":"metric_collector","events_processed":11099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2219.8,"last_update":"2026-03-21T14:23:49.068957472Z"} +2026/03/21 14:23:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4442,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:23:49.078130673Z"} +2026/03/21 14:23:54 [detection_layer] {"stage_name":"detection_layer","events_processed":369,"events_dropped":0,"avg_latency_ms":19.24705098779871,"throughput_eps":0,"last_update":"2026-03-21T14:23:49.210369418Z"} +2026/03/21 14:23:54 [transform_engine] {"stage_name":"transform_engine","events_processed":370,"events_dropped":0,"avg_latency_ms":817.5930178656088,"throughput_eps":0,"last_update":"2026-03-21T14:23:51.413527446Z"} +2026/03/21 14:23:54 ───────────────────────────────────────────────── +2026/03/21 14:23:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:23:59 [log_collector] {"stage_name":"log_collector","events_processed":17717,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3543.4,"last_update":"2026-03-21T14:23:54.068234166Z"} +2026/03/21 14:23:59 [metric_collector] {"stage_name":"metric_collector","events_processed":11104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2220.8,"last_update":"2026-03-21T14:23:54.068651316Z"} +2026/03/21 14:23:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:23:54.078298454Z"} +2026/03/21 14:23:59 [detection_layer] {"stage_name":"detection_layer","events_processed":370,"events_dropped":0,"avg_latency_ms":19.91267499023897,"throughput_eps":0,"last_update":"2026-03-21T14:23:54.210613335Z"} +2026/03/21 14:23:59 [transform_engine] {"stage_name":"transform_engine","events_processed":370,"events_dropped":0,"avg_latency_ms":817.5930178656088,"throughput_eps":0,"last_update":"2026-03-21T14:23:54.210623044Z"} +2026/03/21 14:23:59 ───────────────────────────────────────────────── +2026/03/21 14:24:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:24:04 [detection_layer] {"stage_name":"detection_layer","events_processed":370,"events_dropped":0,"avg_latency_ms":19.91267499023897,"throughput_eps":0,"last_update":"2026-03-21T14:23:59.21014247Z"} +2026/03/21 14:24:04 [transform_engine] {"stage_name":"transform_engine","events_processed":370,"events_dropped":0,"avg_latency_ms":817.5930178656088,"throughput_eps":0,"last_update":"2026-03-21T14:23:59.210154524Z"} +2026/03/21 14:24:04 [log_collector] {"stage_name":"log_collector","events_processed":17717,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3543.4,"last_update":"2026-03-21T14:23:59.068701859Z"} +2026/03/21 14:24:04 [metric_collector] {"stage_name":"metric_collector","events_processed":11109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2221.8,"last_update":"2026-03-21T14:23:59.068991033Z"} +2026/03/21 14:24:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4446,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:23:59.078818316Z"} +2026/03/21 14:24:04 ───────────────────────────────────────────────── +2026/03/21 14:24:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:24:09 [log_collector] {"stage_name":"log_collector","events_processed":17717,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3543.4,"last_update":"2026-03-21T14:24:04.068804051Z"} +2026/03/21 14:24:09 [metric_collector] {"stage_name":"metric_collector","events_processed":11114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2222.8,"last_update":"2026-03-21T14:24:04.069123774Z"} +2026/03/21 14:24:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:24:04.078723572Z"} +2026/03/21 14:24:09 [detection_layer] {"stage_name":"detection_layer","events_processed":370,"events_dropped":0,"avg_latency_ms":19.91267499023897,"throughput_eps":0,"last_update":"2026-03-21T14:24:04.210129091Z"} +2026/03/21 14:24:09 [transform_engine] {"stage_name":"transform_engine","events_processed":370,"events_dropped":0,"avg_latency_ms":817.5930178656088,"throughput_eps":0,"last_update":"2026-03-21T14:24:04.210107149Z"} +2026/03/21 14:24:09 ───────────────────────────────────────────────── +2026/03/21 14:24:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:24:14 [log_collector] {"stage_name":"log_collector","events_processed":17717,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3543.4,"last_update":"2026-03-21T14:24:09.068632106Z"} +2026/03/21 14:24:14 [metric_collector] {"stage_name":"metric_collector","events_processed":11119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2223.8,"last_update":"2026-03-21T14:24:09.068988408Z"} +2026/03/21 14:24:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:24:09.078332637Z"} +2026/03/21 14:24:14 [detection_layer] {"stage_name":"detection_layer","events_processed":370,"events_dropped":0,"avg_latency_ms":19.91267499023897,"throughput_eps":0,"last_update":"2026-03-21T14:24:09.210551985Z"} +2026/03/21 14:24:14 [transform_engine] {"stage_name":"transform_engine","events_processed":370,"events_dropped":0,"avg_latency_ms":817.5930178656088,"throughput_eps":0,"last_update":"2026-03-21T14:24:09.210563797Z"} +2026/03/21 14:24:14 ───────────────────────────────────────────────── +2026/03/21 14:24:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:24:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4452,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:24:14.077576161Z"} +2026/03/21 14:24:19 [detection_layer] {"stage_name":"detection_layer","events_processed":370,"events_dropped":0,"avg_latency_ms":19.91267499023897,"throughput_eps":0,"last_update":"2026-03-21T14:24:14.210857074Z"} +2026/03/21 14:24:19 [transform_engine] {"stage_name":"transform_engine","events_processed":370,"events_dropped":0,"avg_latency_ms":817.5930178656088,"throughput_eps":0,"last_update":"2026-03-21T14:24:14.209741336Z"} +2026/03/21 14:24:19 [log_collector] {"stage_name":"log_collector","events_processed":17717,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3543.4,"last_update":"2026-03-21T14:24:14.068583536Z"} +2026/03/21 14:24:19 [metric_collector] {"stage_name":"metric_collector","events_processed":11124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2224.8,"last_update":"2026-03-21T14:24:14.06887752Z"} +2026/03/21 14:24:19 ───────────────────────────────────────────────── +2026/03/21 14:24:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:24:24 [metric_collector] {"stage_name":"metric_collector","events_processed":11129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2225.8,"last_update":"2026-03-21T14:24:19.069385545Z"} +2026/03/21 14:24:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:24:19.07854534Z"} +2026/03/21 14:24:24 [detection_layer] {"stage_name":"detection_layer","events_processed":370,"events_dropped":0,"avg_latency_ms":19.91267499023897,"throughput_eps":0,"last_update":"2026-03-21T14:24:19.210461016Z"} +2026/03/21 14:24:24 [transform_engine] {"stage_name":"transform_engine","events_processed":371,"events_dropped":0,"avg_latency_ms":669.387112892487,"throughput_eps":0,"last_update":"2026-03-21T14:24:19.286312605Z"} +2026/03/21 14:24:24 [log_collector] {"stage_name":"log_collector","events_processed":17717,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3543.4,"last_update":"2026-03-21T14:24:19.068989977Z"} +2026/03/21 14:24:24 ───────────────────────────────────────────────── +Saved state: 17 clusters, 17718 messages, reason: none +2026/03/21 14:24:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:24:29 [log_collector] {"stage_name":"log_collector","events_processed":17717,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3543.4,"last_update":"2026-03-21T14:24:24.068744617Z"} +2026/03/21 14:24:29 [metric_collector] {"stage_name":"metric_collector","events_processed":11134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2226.8,"last_update":"2026-03-21T14:24:24.068910415Z"} +2026/03/21 14:24:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:24:24.07878512Z"} +2026/03/21 14:24:29 [detection_layer] {"stage_name":"detection_layer","events_processed":371,"events_dropped":0,"avg_latency_ms":20.327891592191175,"throughput_eps":0,"last_update":"2026-03-21T14:24:24.209959917Z"} +2026/03/21 14:24:29 [transform_engine] {"stage_name":"transform_engine","events_processed":371,"events_dropped":0,"avg_latency_ms":669.387112892487,"throughput_eps":0,"last_update":"2026-03-21T14:24:24.209973563Z"} +2026/03/21 14:24:29 ───────────────────────────────────────────────── +2026/03/21 14:24:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:24:34 [detection_layer] {"stage_name":"detection_layer","events_processed":371,"events_dropped":0,"avg_latency_ms":20.327891592191175,"throughput_eps":0,"last_update":"2026-03-21T14:24:29.210631942Z"} +2026/03/21 14:24:34 [transform_engine] {"stage_name":"transform_engine","events_processed":371,"events_dropped":0,"avg_latency_ms":669.387112892487,"throughput_eps":0,"last_update":"2026-03-21T14:24:29.21064142Z"} +2026/03/21 14:24:34 [log_collector] {"stage_name":"log_collector","events_processed":17722,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3544.4,"last_update":"2026-03-21T14:24:29.068150398Z"} +2026/03/21 14:24:34 [metric_collector] {"stage_name":"metric_collector","events_processed":11139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2227.8,"last_update":"2026-03-21T14:24:29.068235019Z"} +2026/03/21 14:24:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:24:29.076524267Z"} +2026/03/21 14:24:34 ───────────────────────────────────────────────── +2026/03/21 14:24:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:24:39 [log_collector] {"stage_name":"log_collector","events_processed":17722,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3544.4,"last_update":"2026-03-21T14:24:34.068490531Z"} +2026/03/21 14:24:39 [metric_collector] {"stage_name":"metric_collector","events_processed":11144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2228.8,"last_update":"2026-03-21T14:24:34.069574658Z"} +2026/03/21 14:24:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:24:34.075987676Z"} +2026/03/21 14:24:39 [detection_layer] {"stage_name":"detection_layer","events_processed":371,"events_dropped":0,"avg_latency_ms":20.327891592191175,"throughput_eps":0,"last_update":"2026-03-21T14:24:34.212390683Z"} +2026/03/21 14:24:39 [transform_engine] {"stage_name":"transform_engine","events_processed":371,"events_dropped":0,"avg_latency_ms":669.387112892487,"throughput_eps":0,"last_update":"2026-03-21T14:24:34.209685829Z"} +2026/03/21 14:24:39 ───────────────────────────────────────────────── +2026/03/21 14:24:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:24:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:24:39.07585907Z"} +2026/03/21 14:24:44 [detection_layer] {"stage_name":"detection_layer","events_processed":371,"events_dropped":0,"avg_latency_ms":20.327891592191175,"throughput_eps":0,"last_update":"2026-03-21T14:24:39.21006744Z"} +2026/03/21 14:24:44 [transform_engine] {"stage_name":"transform_engine","events_processed":371,"events_dropped":0,"avg_latency_ms":669.387112892487,"throughput_eps":0,"last_update":"2026-03-21T14:24:39.210078531Z"} +2026/03/21 14:24:44 [log_collector] {"stage_name":"log_collector","events_processed":17722,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3544.4,"last_update":"2026-03-21T14:24:39.068661579Z"} +2026/03/21 14:24:44 [metric_collector] {"stage_name":"metric_collector","events_processed":11149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2229.8,"last_update":"2026-03-21T14:24:39.068997482Z"} +2026/03/21 14:24:44 ───────────────────────────────────────────────── +2026/03/21 14:24:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:24:49 [transform_engine] {"stage_name":"transform_engine","events_processed":371,"events_dropped":0,"avg_latency_ms":669.387112892487,"throughput_eps":0,"last_update":"2026-03-21T14:24:44.210621402Z"} +2026/03/21 14:24:49 [log_collector] {"stage_name":"log_collector","events_processed":17722,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3544.4,"last_update":"2026-03-21T14:24:44.068561168Z"} +2026/03/21 14:24:49 [metric_collector] {"stage_name":"metric_collector","events_processed":11154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2230.8,"last_update":"2026-03-21T14:24:44.068819833Z"} +2026/03/21 14:24:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:24:44.07940215Z"} +2026/03/21 14:24:49 [detection_layer] {"stage_name":"detection_layer","events_processed":371,"events_dropped":0,"avg_latency_ms":20.327891592191175,"throughput_eps":0,"last_update":"2026-03-21T14:24:44.210612564Z"} +2026/03/21 14:24:49 ───────────────────────────────────────────────── +2026/03/21 14:24:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:24:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:24:49.078359532Z"} +2026/03/21 14:24:54 [detection_layer] {"stage_name":"detection_layer","events_processed":371,"events_dropped":0,"avg_latency_ms":20.327891592191175,"throughput_eps":0,"last_update":"2026-03-21T14:24:49.210603757Z"} +2026/03/21 14:24:54 [transform_engine] {"stage_name":"transform_engine","events_processed":371,"events_dropped":0,"avg_latency_ms":669.387112892487,"throughput_eps":0,"last_update":"2026-03-21T14:24:44.210621402Z"} +2026/03/21 14:24:54 [log_collector] {"stage_name":"log_collector","events_processed":17722,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3544.4,"last_update":"2026-03-21T14:24:49.068103571Z"} +2026/03/21 14:24:54 [metric_collector] {"stage_name":"metric_collector","events_processed":11159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2231.8,"last_update":"2026-03-21T14:24:49.068581626Z"} +2026/03/21 14:24:54 ───────────────────────────────────────────────── +2026/03/21 14:24:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:24:59 [log_collector] {"stage_name":"log_collector","events_processed":17722,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3544.4,"last_update":"2026-03-21T14:24:54.068936237Z"} +2026/03/21 14:24:59 [metric_collector] {"stage_name":"metric_collector","events_processed":11164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2232.8,"last_update":"2026-03-21T14:24:54.068928983Z"} +2026/03/21 14:24:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:24:54.076085756Z"} +2026/03/21 14:24:59 [detection_layer] {"stage_name":"detection_layer","events_processed":371,"events_dropped":0,"avg_latency_ms":20.327891592191175,"throughput_eps":0,"last_update":"2026-03-21T14:24:54.210479509Z"} +2026/03/21 14:24:59 [transform_engine] {"stage_name":"transform_engine","events_processed":372,"events_dropped":0,"avg_latency_ms":1599.1453169139895,"throughput_eps":0,"last_update":"2026-03-21T14:24:54.528795535Z"} +2026/03/21 14:24:59 ───────────────────────────────────────────────── +2026/03/21 14:25:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:25:04 [log_collector] {"stage_name":"log_collector","events_processed":17722,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3544.4,"last_update":"2026-03-21T14:24:59.068118502Z"} +2026/03/21 14:25:04 [metric_collector] {"stage_name":"metric_collector","events_processed":11169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2233.8,"last_update":"2026-03-21T14:24:59.068399901Z"} +2026/03/21 14:25:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4470,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:24:59.074879336Z"} +2026/03/21 14:25:04 [detection_layer] {"stage_name":"detection_layer","events_processed":372,"events_dropped":0,"avg_latency_ms":19.219992473752942,"throughput_eps":0,"last_update":"2026-03-21T14:24:59.210132185Z"} +2026/03/21 14:25:04 [transform_engine] {"stage_name":"transform_engine","events_processed":372,"events_dropped":0,"avg_latency_ms":1599.1453169139895,"throughput_eps":0,"last_update":"2026-03-21T14:24:59.210107608Z"} +2026/03/21 14:25:04 ───────────────────────────────────────────────── +2026/03/21 14:25:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:25:09 [log_collector] {"stage_name":"log_collector","events_processed":17722,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3544.4,"last_update":"2026-03-21T14:25:04.068519255Z"} +2026/03/21 14:25:09 [metric_collector] {"stage_name":"metric_collector","events_processed":11174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2234.8,"last_update":"2026-03-21T14:25:04.068768272Z"} +2026/03/21 14:25:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:25:04.076627461Z"} +2026/03/21 14:25:09 [detection_layer] {"stage_name":"detection_layer","events_processed":372,"events_dropped":0,"avg_latency_ms":19.219992473752942,"throughput_eps":0,"last_update":"2026-03-21T14:25:04.210822572Z"} +2026/03/21 14:25:09 [transform_engine] {"stage_name":"transform_engine","events_processed":372,"events_dropped":0,"avg_latency_ms":1599.1453169139895,"throughput_eps":0,"last_update":"2026-03-21T14:25:04.20971504Z"} +2026/03/21 14:25:09 ───────────────────────────────────────────────── +2026/03/21 14:25:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:25:14 [log_collector] {"stage_name":"log_collector","events_processed":17725,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3545,"last_update":"2026-03-21T14:25:09.068842171Z"} +2026/03/21 14:25:14 [metric_collector] {"stage_name":"metric_collector","events_processed":11179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2235.8,"last_update":"2026-03-21T14:25:09.069090446Z"} +2026/03/21 14:25:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:25:09.07555874Z"} +2026/03/21 14:25:14 [detection_layer] {"stage_name":"detection_layer","events_processed":372,"events_dropped":0,"avg_latency_ms":19.219992473752942,"throughput_eps":0,"last_update":"2026-03-21T14:25:09.210884988Z"} +2026/03/21 14:25:14 [transform_engine] {"stage_name":"transform_engine","events_processed":372,"events_dropped":0,"avg_latency_ms":1599.1453169139895,"throughput_eps":0,"last_update":"2026-03-21T14:25:09.209736026Z"} +2026/03/21 14:25:14 ───────────────────────────────────────────────── +2026/03/21 14:25:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:25:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4476,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:25:14.077713467Z"} +2026/03/21 14:25:19 [detection_layer] {"stage_name":"detection_layer","events_processed":372,"events_dropped":0,"avg_latency_ms":19.219992473752942,"throughput_eps":0,"last_update":"2026-03-21T14:25:14.210283743Z"} +2026/03/21 14:25:19 [transform_engine] {"stage_name":"transform_engine","events_processed":372,"events_dropped":0,"avg_latency_ms":1599.1453169139895,"throughput_eps":0,"last_update":"2026-03-21T14:25:14.210179533Z"} +2026/03/21 14:25:19 [log_collector] {"stage_name":"log_collector","events_processed":17731,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3546.2,"last_update":"2026-03-21T14:25:14.06868087Z"} +2026/03/21 14:25:19 [metric_collector] {"stage_name":"metric_collector","events_processed":11184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2236.8,"last_update":"2026-03-21T14:25:14.068955676Z"} +2026/03/21 14:25:19 ───────────────────────────────────────────────── +2026/03/21 14:25:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:25:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:25:19.07857508Z"} +2026/03/21 14:25:24 [detection_layer] {"stage_name":"detection_layer","events_processed":372,"events_dropped":0,"avg_latency_ms":19.219992473752942,"throughput_eps":0,"last_update":"2026-03-21T14:25:19.210620409Z"} +2026/03/21 14:25:24 [transform_engine] {"stage_name":"transform_engine","events_processed":373,"events_dropped":0,"avg_latency_ms":1311.9506257311916,"throughput_eps":0,"last_update":"2026-03-21T14:25:19.373822537Z"} +2026/03/21 14:25:24 [log_collector] {"stage_name":"log_collector","events_processed":17849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3569.8,"last_update":"2026-03-21T14:25:19.068654591Z"} +2026/03/21 14:25:24 [metric_collector] {"stage_name":"metric_collector","events_processed":11189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2237.8,"last_update":"2026-03-21T14:25:19.068603233Z"} +2026/03/21 14:25:24 ───────────────────────────────────────────────── +2026/03/21 14:25:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:25:29 [transform_engine] {"stage_name":"transform_engine","events_processed":373,"events_dropped":0,"avg_latency_ms":1311.9506257311916,"throughput_eps":0,"last_update":"2026-03-21T14:25:24.210423475Z"} +2026/03/21 14:25:29 [log_collector] {"stage_name":"log_collector","events_processed":18033,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3606.6,"last_update":"2026-03-21T14:25:24.068814041Z"} +2026/03/21 14:25:29 [metric_collector] {"stage_name":"metric_collector","events_processed":11194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2238.8,"last_update":"2026-03-21T14:25:24.069260938Z"} +2026/03/21 14:25:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4480,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:25:24.078132435Z"} +2026/03/21 14:25:29 [detection_layer] {"stage_name":"detection_layer","events_processed":373,"events_dropped":0,"avg_latency_ms":18.062014579002355,"throughput_eps":0,"last_update":"2026-03-21T14:25:24.210413276Z"} +2026/03/21 14:25:29 ───────────────────────────────────────────────── +2026/03/21 14:25:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:25:34 [log_collector] {"stage_name":"log_collector","events_processed":18080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3616,"last_update":"2026-03-21T14:25:29.068688267Z"} +2026/03/21 14:25:34 [metric_collector] {"stage_name":"metric_collector","events_processed":11199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2239.8,"last_update":"2026-03-21T14:25:29.069007669Z"} +2026/03/21 14:25:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4482,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:25:29.078968214Z"} +2026/03/21 14:25:34 [detection_layer] {"stage_name":"detection_layer","events_processed":373,"events_dropped":0,"avg_latency_ms":18.062014579002355,"throughput_eps":0,"last_update":"2026-03-21T14:25:29.210392552Z"} +2026/03/21 14:25:34 [transform_engine] {"stage_name":"transform_engine","events_processed":373,"events_dropped":0,"avg_latency_ms":1311.9506257311916,"throughput_eps":0,"last_update":"2026-03-21T14:25:29.210504446Z"} +2026/03/21 14:25:34 ───────────────────────────────────────────────── +2026/03/21 14:25:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:25:39 [log_collector] {"stage_name":"log_collector","events_processed":18080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3616,"last_update":"2026-03-21T14:25:34.068708295Z"} +2026/03/21 14:25:39 [metric_collector] {"stage_name":"metric_collector","events_processed":11204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2240.8,"last_update":"2026-03-21T14:25:34.06923749Z"} +2026/03/21 14:25:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:25:34.077926899Z"} +2026/03/21 14:25:39 [detection_layer] {"stage_name":"detection_layer","events_processed":373,"events_dropped":0,"avg_latency_ms":18.062014579002355,"throughput_eps":0,"last_update":"2026-03-21T14:25:34.210180215Z"} +2026/03/21 14:25:39 [transform_engine] {"stage_name":"transform_engine","events_processed":373,"events_dropped":0,"avg_latency_ms":1311.9506257311916,"throughput_eps":0,"last_update":"2026-03-21T14:25:34.210191496Z"} +2026/03/21 14:25:39 ───────────────────────────────────────────────── +2026/03/21 14:25:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:25:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4486,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:25:39.076901708Z"} +2026/03/21 14:25:44 [detection_layer] {"stage_name":"detection_layer","events_processed":373,"events_dropped":0,"avg_latency_ms":18.062014579002355,"throughput_eps":0,"last_update":"2026-03-21T14:25:39.210146963Z"} +2026/03/21 14:25:44 [transform_engine] {"stage_name":"transform_engine","events_processed":373,"events_dropped":0,"avg_latency_ms":1311.9506257311916,"throughput_eps":0,"last_update":"2026-03-21T14:25:39.210159448Z"} +2026/03/21 14:25:44 [log_collector] {"stage_name":"log_collector","events_processed":18080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3616,"last_update":"2026-03-21T14:25:39.068779345Z"} +2026/03/21 14:25:44 [metric_collector] {"stage_name":"metric_collector","events_processed":11209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2241.8,"last_update":"2026-03-21T14:25:39.069043812Z"} +2026/03/21 14:25:44 ───────────────────────────────────────────────── +2026/03/21 14:25:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:25:49 [log_collector] {"stage_name":"log_collector","events_processed":18080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3616,"last_update":"2026-03-21T14:25:44.068405235Z"} +2026/03/21 14:25:49 [metric_collector] {"stage_name":"metric_collector","events_processed":11214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2242.8,"last_update":"2026-03-21T14:25:44.068914932Z"} +2026/03/21 14:25:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:25:44.078203128Z"} +2026/03/21 14:25:49 [detection_layer] {"stage_name":"detection_layer","events_processed":373,"events_dropped":0,"avg_latency_ms":18.062014579002355,"throughput_eps":0,"last_update":"2026-03-21T14:25:44.210585551Z"} +2026/03/21 14:25:49 [transform_engine] {"stage_name":"transform_engine","events_processed":373,"events_dropped":0,"avg_latency_ms":1311.9506257311916,"throughput_eps":0,"last_update":"2026-03-21T14:25:44.21060146Z"} +2026/03/21 14:25:49 ───────────────────────────────────────────────── +2026/03/21 14:25:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:25:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4490,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:25:49.077067513Z"} +2026/03/21 14:25:54 [detection_layer] {"stage_name":"detection_layer","events_processed":373,"events_dropped":0,"avg_latency_ms":18.062014579002355,"throughput_eps":0,"last_update":"2026-03-21T14:25:49.210316174Z"} +2026/03/21 14:25:54 [transform_engine] {"stage_name":"transform_engine","events_processed":374,"events_dropped":0,"avg_latency_ms":1072.5408337849533,"throughput_eps":0,"last_update":"2026-03-21T14:25:49.325234293Z"} +2026/03/21 14:25:54 [log_collector] {"stage_name":"log_collector","events_processed":18080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3616,"last_update":"2026-03-21T14:25:49.068147913Z"} +2026/03/21 14:25:54 [metric_collector] {"stage_name":"metric_collector","events_processed":11219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2243.8,"last_update":"2026-03-21T14:25:49.068536478Z"} +2026/03/21 14:25:54 ───────────────────────────────────────────────── +2026/03/21 14:25:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:25:59 [log_collector] {"stage_name":"log_collector","events_processed":18080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3616,"last_update":"2026-03-21T14:25:54.068126857Z"} +2026/03/21 14:25:59 [metric_collector] {"stage_name":"metric_collector","events_processed":11224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2244.8,"last_update":"2026-03-21T14:25:54.068438855Z"} +2026/03/21 14:25:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:25:54.07676638Z"} +2026/03/21 14:25:59 [detection_layer] {"stage_name":"detection_layer","events_processed":374,"events_dropped":0,"avg_latency_ms":18.747418463201885,"throughput_eps":0,"last_update":"2026-03-21T14:25:54.210028506Z"} +2026/03/21 14:25:59 [transform_engine] {"stage_name":"transform_engine","events_processed":374,"events_dropped":0,"avg_latency_ms":1072.5408337849533,"throughput_eps":0,"last_update":"2026-03-21T14:25:54.210040098Z"} +2026/03/21 14:25:59 ───────────────────────────────────────────────── +2026/03/21 14:26:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:26:04 [log_collector] {"stage_name":"log_collector","events_processed":18080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3616,"last_update":"2026-03-21T14:25:59.068640531Z"} +2026/03/21 14:26:04 [metric_collector] {"stage_name":"metric_collector","events_processed":11229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2245.8,"last_update":"2026-03-21T14:25:59.06891123Z"} +2026/03/21 14:26:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:25:59.077086934Z"} +2026/03/21 14:26:04 [detection_layer] {"stage_name":"detection_layer","events_processed":374,"events_dropped":0,"avg_latency_ms":18.747418463201885,"throughput_eps":0,"last_update":"2026-03-21T14:25:59.210325114Z"} +2026/03/21 14:26:04 [transform_engine] {"stage_name":"transform_engine","events_processed":374,"events_dropped":0,"avg_latency_ms":1072.5408337849533,"throughput_eps":0,"last_update":"2026-03-21T14:25:59.21033864Z"} +2026/03/21 14:26:04 ───────────────────────────────────────────────── +2026/03/21 14:26:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:26:09 [transform_engine] {"stage_name":"transform_engine","events_processed":374,"events_dropped":0,"avg_latency_ms":1072.5408337849533,"throughput_eps":0,"last_update":"2026-03-21T14:26:04.209749766Z"} +2026/03/21 14:26:09 [log_collector] {"stage_name":"log_collector","events_processed":18080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3616,"last_update":"2026-03-21T14:26:04.068715369Z"} +2026/03/21 14:26:09 [metric_collector] {"stage_name":"metric_collector","events_processed":11233,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2246.6,"last_update":"2026-03-21T14:26:04.06872107Z"} +2026/03/21 14:26:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4496,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:26:04.07752044Z"} +2026/03/21 14:26:09 [detection_layer] {"stage_name":"detection_layer","events_processed":374,"events_dropped":0,"avg_latency_ms":18.747418463201885,"throughput_eps":0,"last_update":"2026-03-21T14:26:04.211722296Z"} +2026/03/21 14:26:09 ───────────────────────────────────────────────── +2026/03/21 14:26:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:26:14 [log_collector] {"stage_name":"log_collector","events_processed":18080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3616,"last_update":"2026-03-21T14:26:09.068374035Z"} +2026/03/21 14:26:14 [metric_collector] {"stage_name":"metric_collector","events_processed":11239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2247.8,"last_update":"2026-03-21T14:26:09.068858944Z"} +2026/03/21 14:26:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4498,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:26:09.077822709Z"} +2026/03/21 14:26:14 [detection_layer] {"stage_name":"detection_layer","events_processed":374,"events_dropped":0,"avg_latency_ms":18.747418463201885,"throughput_eps":0,"last_update":"2026-03-21T14:26:09.210269842Z"} +2026/03/21 14:26:14 [transform_engine] {"stage_name":"transform_engine","events_processed":374,"events_dropped":0,"avg_latency_ms":1072.5408337849533,"throughput_eps":0,"last_update":"2026-03-21T14:26:09.210285251Z"} +2026/03/21 14:26:14 ───────────────────────────────────────────────── +2026/03/21 14:26:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:26:19 [log_collector] {"stage_name":"log_collector","events_processed":18080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3616,"last_update":"2026-03-21T14:26:14.068904826Z"} +2026/03/21 14:26:19 [metric_collector] {"stage_name":"metric_collector","events_processed":11244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2248.8,"last_update":"2026-03-21T14:26:14.069004447Z"} +2026/03/21 14:26:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:26:14.078939594Z"} +2026/03/21 14:26:19 [detection_layer] {"stage_name":"detection_layer","events_processed":374,"events_dropped":0,"avg_latency_ms":18.747418463201885,"throughput_eps":0,"last_update":"2026-03-21T14:26:14.210189852Z"} +2026/03/21 14:26:19 [transform_engine] {"stage_name":"transform_engine","events_processed":374,"events_dropped":0,"avg_latency_ms":1072.5408337849533,"throughput_eps":0,"last_update":"2026-03-21T14:26:14.210201955Z"} +2026/03/21 14:26:19 ───────────────────────────────────────────────── +2026/03/21 14:26:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:26:24 [log_collector] {"stage_name":"log_collector","events_processed":18080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3616,"last_update":"2026-03-21T14:26:19.068703581Z"} +2026/03/21 14:26:24 [metric_collector] {"stage_name":"metric_collector","events_processed":11249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2249.8,"last_update":"2026-03-21T14:26:19.069080703Z"} +2026/03/21 14:26:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:26:19.077253493Z"} +2026/03/21 14:26:24 [detection_layer] {"stage_name":"detection_layer","events_processed":374,"events_dropped":0,"avg_latency_ms":18.747418463201885,"throughput_eps":0,"last_update":"2026-03-21T14:26:19.210623241Z"} +2026/03/21 14:26:24 [transform_engine] {"stage_name":"transform_engine","events_processed":375,"events_dropped":0,"avg_latency_ms":872.3395072279627,"throughput_eps":0,"last_update":"2026-03-21T14:26:19.282176739Z"} +2026/03/21 14:26:24 ───────────────────────────────────────────────── +2026/03/21 14:26:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:26:29 [metric_collector] {"stage_name":"metric_collector","events_processed":11254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2250.8,"last_update":"2026-03-21T14:26:24.06916386Z"} +2026/03/21 14:26:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:26:24.078266932Z"} +2026/03/21 14:26:29 [detection_layer] {"stage_name":"detection_layer","events_processed":375,"events_dropped":0,"avg_latency_ms":19.133404370561507,"throughput_eps":0,"last_update":"2026-03-21T14:26:24.210461067Z"} +2026/03/21 14:26:29 [transform_engine] {"stage_name":"transform_engine","events_processed":375,"events_dropped":0,"avg_latency_ms":872.3395072279627,"throughput_eps":0,"last_update":"2026-03-21T14:26:24.210490925Z"} +2026/03/21 14:26:29 [log_collector] {"stage_name":"log_collector","events_processed":18080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3616,"last_update":"2026-03-21T14:26:24.068731052Z"} +2026/03/21 14:26:29 ───────────────────────────────────────────────── +2026/03/21 14:26:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:26:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4506,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:26:29.077504564Z"} +2026/03/21 14:26:34 [detection_layer] {"stage_name":"detection_layer","events_processed":375,"events_dropped":0,"avg_latency_ms":19.133404370561507,"throughput_eps":0,"last_update":"2026-03-21T14:26:29.209859808Z"} +2026/03/21 14:26:34 [transform_engine] {"stage_name":"transform_engine","events_processed":375,"events_dropped":0,"avg_latency_ms":872.3395072279627,"throughput_eps":0,"last_update":"2026-03-21T14:26:29.209732003Z"} +2026/03/21 14:26:34 [log_collector] {"stage_name":"log_collector","events_processed":18080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3616,"last_update":"2026-03-21T14:26:29.068310328Z"} +2026/03/21 14:26:34 [metric_collector] {"stage_name":"metric_collector","events_processed":11258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2251.6,"last_update":"2026-03-21T14:26:29.068344112Z"} +2026/03/21 14:26:34 ───────────────────────────────────────────────── +2026/03/21 14:26:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:26:39 [log_collector] {"stage_name":"log_collector","events_processed":18080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3616,"last_update":"2026-03-21T14:26:34.068674053Z"} +2026/03/21 14:26:39 [metric_collector] {"stage_name":"metric_collector","events_processed":11264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2252.8,"last_update":"2026-03-21T14:26:34.068872633Z"} +2026/03/21 14:26:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:26:34.077825287Z"} +2026/03/21 14:26:39 [detection_layer] {"stage_name":"detection_layer","events_processed":375,"events_dropped":0,"avg_latency_ms":19.133404370561507,"throughput_eps":0,"last_update":"2026-03-21T14:26:34.209879984Z"} +2026/03/21 14:26:39 [transform_engine] {"stage_name":"transform_engine","events_processed":375,"events_dropped":0,"avg_latency_ms":872.3395072279627,"throughput_eps":0,"last_update":"2026-03-21T14:26:34.209800352Z"} +2026/03/21 14:26:39 ───────────────────────────────────────────────── +2026/03/21 14:26:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:26:44 [log_collector] {"stage_name":"log_collector","events_processed":18080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3616,"last_update":"2026-03-21T14:26:39.068293379Z"} +2026/03/21 14:26:44 [metric_collector] {"stage_name":"metric_collector","events_processed":11269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2253.8,"last_update":"2026-03-21T14:26:39.068998711Z"} +2026/03/21 14:26:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:26:39.077256844Z"} +2026/03/21 14:26:44 [detection_layer] {"stage_name":"detection_layer","events_processed":375,"events_dropped":0,"avg_latency_ms":19.133404370561507,"throughput_eps":0,"last_update":"2026-03-21T14:26:39.210532109Z"} +2026/03/21 14:26:44 [transform_engine] {"stage_name":"transform_engine","events_processed":375,"events_dropped":0,"avg_latency_ms":872.3395072279627,"throughput_eps":0,"last_update":"2026-03-21T14:26:39.210549132Z"} +2026/03/21 14:26:44 ───────────────────────────────────────────────── +2026/03/21 14:26:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:26:49 [transform_engine] {"stage_name":"transform_engine","events_processed":375,"events_dropped":0,"avg_latency_ms":872.3395072279627,"throughput_eps":0,"last_update":"2026-03-21T14:26:44.21045307Z"} +2026/03/21 14:26:49 [log_collector] {"stage_name":"log_collector","events_processed":18080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3616,"last_update":"2026-03-21T14:26:44.068238699Z"} +2026/03/21 14:26:49 [metric_collector] {"stage_name":"metric_collector","events_processed":11274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2254.8,"last_update":"2026-03-21T14:26:44.068491814Z"} +2026/03/21 14:26:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4512,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:26:44.078134459Z"} +2026/03/21 14:26:49 [detection_layer] {"stage_name":"detection_layer","events_processed":375,"events_dropped":0,"avg_latency_ms":19.133404370561507,"throughput_eps":0,"last_update":"2026-03-21T14:26:44.210415078Z"} +2026/03/21 14:26:49 ───────────────────────────────────────────────── +2026/03/21 14:26:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:26:54 [log_collector] {"stage_name":"log_collector","events_processed":18080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3616,"last_update":"2026-03-21T14:26:49.068618214Z"} +2026/03/21 14:26:54 [metric_collector] {"stage_name":"metric_collector","events_processed":11279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2255.8,"last_update":"2026-03-21T14:26:49.069166414Z"} +2026/03/21 14:26:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:26:49.077988467Z"} +2026/03/21 14:26:54 [detection_layer] {"stage_name":"detection_layer","events_processed":375,"events_dropped":0,"avg_latency_ms":19.133404370561507,"throughput_eps":0,"last_update":"2026-03-21T14:26:49.210488255Z"} +2026/03/21 14:26:54 [transform_engine] {"stage_name":"transform_engine","events_processed":375,"events_dropped":0,"avg_latency_ms":872.3395072279627,"throughput_eps":0,"last_update":"2026-03-21T14:26:49.210407481Z"} +2026/03/21 14:26:54 ───────────────────────────────────────────────── +2026/03/21 14:26:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:26:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:26:54.077608796Z"} +2026/03/21 14:26:59 [detection_layer] {"stage_name":"detection_layer","events_processed":376,"events_dropped":0,"avg_latency_ms":19.374062496449206,"throughput_eps":0,"last_update":"2026-03-21T14:26:54.209891268Z"} +2026/03/21 14:26:59 [transform_engine] {"stage_name":"transform_engine","events_processed":376,"events_dropped":0,"avg_latency_ms":712.0816039823702,"throughput_eps":0,"last_update":"2026-03-21T14:26:54.209857503Z"} +2026/03/21 14:26:59 [log_collector] {"stage_name":"log_collector","events_processed":18080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3616,"last_update":"2026-03-21T14:26:54.068611568Z"} +2026/03/21 14:26:59 [metric_collector] {"stage_name":"metric_collector","events_processed":11284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2256.8,"last_update":"2026-03-21T14:26:54.068917404Z"} +2026/03/21 14:26:59 ───────────────────────────────────────────────── +Saved state: 17 clusters, 18081 messages, reason: none +2026/03/21 14:27:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:27:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:26:59.078409265Z"} +2026/03/21 14:27:04 [detection_layer] {"stage_name":"detection_layer","events_processed":376,"events_dropped":0,"avg_latency_ms":19.374062496449206,"throughput_eps":0,"last_update":"2026-03-21T14:26:59.210773242Z"} +2026/03/21 14:27:04 [transform_engine] {"stage_name":"transform_engine","events_processed":376,"events_dropped":0,"avg_latency_ms":712.0816039823702,"throughput_eps":0,"last_update":"2026-03-21T14:26:59.210739036Z"} +2026/03/21 14:27:04 [log_collector] {"stage_name":"log_collector","events_processed":18080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3616,"last_update":"2026-03-21T14:26:59.068267394Z"} +2026/03/21 14:27:04 [metric_collector] {"stage_name":"metric_collector","events_processed":11289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2257.8,"last_update":"2026-03-21T14:26:59.06869366Z"} +2026/03/21 14:27:04 ───────────────────────────────────────────────── +2026/03/21 14:27:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:27:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4520,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:27:04.076743876Z"} +2026/03/21 14:27:09 [detection_layer] {"stage_name":"detection_layer","events_processed":376,"events_dropped":0,"avg_latency_ms":19.374062496449206,"throughput_eps":0,"last_update":"2026-03-21T14:27:04.209983079Z"} +2026/03/21 14:27:09 [transform_engine] {"stage_name":"transform_engine","events_processed":376,"events_dropped":0,"avg_latency_ms":712.0816039823702,"throughput_eps":0,"last_update":"2026-03-21T14:27:04.209992928Z"} +2026/03/21 14:27:09 [log_collector] {"stage_name":"log_collector","events_processed":18083,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3616.6,"last_update":"2026-03-21T14:27:04.068699332Z"} +2026/03/21 14:27:09 [metric_collector] {"stage_name":"metric_collector","events_processed":11294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2258.8,"last_update":"2026-03-21T14:27:04.068651671Z"} +2026/03/21 14:27:09 ───────────────────────────────────────────────── +2026/03/21 14:27:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:27:14 [log_collector] {"stage_name":"log_collector","events_processed":18083,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3616.6,"last_update":"2026-03-21T14:27:09.068475814Z"} +2026/03/21 14:27:14 [metric_collector] {"stage_name":"metric_collector","events_processed":11299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2259.8,"last_update":"2026-03-21T14:27:09.068784706Z"} +2026/03/21 14:27:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4522,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:27:09.076763292Z"} +2026/03/21 14:27:14 [detection_layer] {"stage_name":"detection_layer","events_processed":376,"events_dropped":0,"avg_latency_ms":19.374062496449206,"throughput_eps":0,"last_update":"2026-03-21T14:27:09.209988548Z"} +2026/03/21 14:27:14 [transform_engine] {"stage_name":"transform_engine","events_processed":376,"events_dropped":0,"avg_latency_ms":712.0816039823702,"throughput_eps":0,"last_update":"2026-03-21T14:27:09.210007635Z"} +2026/03/21 14:27:14 ───────────────────────────────────────────────── +2026/03/21 14:27:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:27:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:27:14.077380052Z"} +2026/03/21 14:27:19 [detection_layer] {"stage_name":"detection_layer","events_processed":376,"events_dropped":0,"avg_latency_ms":19.374062496449206,"throughput_eps":0,"last_update":"2026-03-21T14:27:14.210764662Z"} +2026/03/21 14:27:19 [transform_engine] {"stage_name":"transform_engine","events_processed":376,"events_dropped":0,"avg_latency_ms":712.0816039823702,"throughput_eps":0,"last_update":"2026-03-21T14:27:14.210801703Z"} +2026/03/21 14:27:19 [log_collector] {"stage_name":"log_collector","events_processed":18093,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3618.6,"last_update":"2026-03-21T14:27:14.0690592Z"} +2026/03/21 14:27:19 [metric_collector] {"stage_name":"metric_collector","events_processed":11304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2260.8,"last_update":"2026-03-21T14:27:14.069475357Z"} +2026/03/21 14:27:19 ───────────────────────────────────────────────── +2026/03/21 14:27:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:27:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4526,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:27:19.087231142Z"} +2026/03/21 14:27:24 [detection_layer] {"stage_name":"detection_layer","events_processed":376,"events_dropped":0,"avg_latency_ms":19.374062496449206,"throughput_eps":0,"last_update":"2026-03-21T14:27:19.211540964Z"} +2026/03/21 14:27:24 [transform_engine] {"stage_name":"transform_engine","events_processed":377,"events_dropped":0,"avg_latency_ms":594.7128233858962,"throughput_eps":0,"last_update":"2026-03-21T14:27:19.335621819Z"} +2026/03/21 14:27:24 [log_collector] {"stage_name":"log_collector","events_processed":18100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3620,"last_update":"2026-03-21T14:27:19.068797984Z"} +2026/03/21 14:27:24 [metric_collector] {"stage_name":"metric_collector","events_processed":11309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2261.8,"last_update":"2026-03-21T14:27:19.069089903Z"} +2026/03/21 14:27:24 ───────────────────────────────────────────────── +2026/03/21 14:27:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:27:29 [transform_engine] {"stage_name":"transform_engine","events_processed":377,"events_dropped":0,"avg_latency_ms":594.7128233858962,"throughput_eps":0,"last_update":"2026-03-21T14:27:24.209664954Z"} +2026/03/21 14:27:29 [log_collector] {"stage_name":"log_collector","events_processed":18110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3622,"last_update":"2026-03-21T14:27:24.069416293Z"} +2026/03/21 14:27:29 [metric_collector] {"stage_name":"metric_collector","events_processed":11314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2262.8,"last_update":"2026-03-21T14:27:24.069111319Z"} +2026/03/21 14:27:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:27:24.077456197Z"} +2026/03/21 14:27:29 [detection_layer] {"stage_name":"detection_layer","events_processed":377,"events_dropped":0,"avg_latency_ms":19.121381797159366,"throughput_eps":0,"last_update":"2026-03-21T14:27:24.210944856Z"} +2026/03/21 14:27:29 ───────────────────────────────────────────────── +2026/03/21 14:27:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:27:34 [detection_layer] {"stage_name":"detection_layer","events_processed":377,"events_dropped":0,"avg_latency_ms":19.121381797159366,"throughput_eps":0,"last_update":"2026-03-21T14:27:29.210625566Z"} +2026/03/21 14:27:34 [transform_engine] {"stage_name":"transform_engine","events_processed":377,"events_dropped":0,"avg_latency_ms":594.7128233858962,"throughput_eps":0,"last_update":"2026-03-21T14:27:29.210605438Z"} +2026/03/21 14:27:34 [log_collector] {"stage_name":"log_collector","events_processed":18123,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3624.6,"last_update":"2026-03-21T14:27:29.068841424Z"} +2026/03/21 14:27:34 [metric_collector] {"stage_name":"metric_collector","events_processed":11319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2263.8,"last_update":"2026-03-21T14:27:29.069063129Z"} +2026/03/21 14:27:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:27:29.076389416Z"} +2026/03/21 14:27:34 ───────────────────────────────────────────────── +2026/03/21 14:27:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:27:39 [log_collector] {"stage_name":"log_collector","events_processed":18124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3624.8,"last_update":"2026-03-21T14:27:34.068722527Z"} +2026/03/21 14:27:39 [metric_collector] {"stage_name":"metric_collector","events_processed":11324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2264.8,"last_update":"2026-03-21T14:27:34.068976424Z"} +2026/03/21 14:27:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4532,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:27:34.077877989Z"} +2026/03/21 14:27:39 [detection_layer] {"stage_name":"detection_layer","events_processed":377,"events_dropped":0,"avg_latency_ms":19.121381797159366,"throughput_eps":0,"last_update":"2026-03-21T14:27:34.210204941Z"} +2026/03/21 14:27:39 [transform_engine] {"stage_name":"transform_engine","events_processed":377,"events_dropped":0,"avg_latency_ms":594.7128233858962,"throughput_eps":0,"last_update":"2026-03-21T14:27:34.210140797Z"} +2026/03/21 14:27:39 ───────────────────────────────────────────────── +2026/03/21 14:27:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:27:44 [transform_engine] {"stage_name":"transform_engine","events_processed":377,"events_dropped":0,"avg_latency_ms":594.7128233858962,"throughput_eps":0,"last_update":"2026-03-21T14:27:39.210629014Z"} +2026/03/21 14:27:44 [log_collector] {"stage_name":"log_collector","events_processed":18124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3624.8,"last_update":"2026-03-21T14:27:39.068584944Z"} +2026/03/21 14:27:44 [metric_collector] {"stage_name":"metric_collector","events_processed":11329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2265.8,"last_update":"2026-03-21T14:27:39.068997023Z"} +2026/03/21 14:27:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:27:39.078222989Z"} +2026/03/21 14:27:44 [detection_layer] {"stage_name":"detection_layer","events_processed":377,"events_dropped":0,"avg_latency_ms":19.121381797159366,"throughput_eps":0,"last_update":"2026-03-21T14:27:39.210612963Z"} +2026/03/21 14:27:44 ───────────────────────────────────────────────── +2026/03/21 14:27:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:27:49 [log_collector] {"stage_name":"log_collector","events_processed":18124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3624.8,"last_update":"2026-03-21T14:27:44.068574364Z"} +2026/03/21 14:27:49 [metric_collector] {"stage_name":"metric_collector","events_processed":11334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2266.8,"last_update":"2026-03-21T14:27:44.068895549Z"} +2026/03/21 14:27:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4536,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:27:44.078042574Z"} +2026/03/21 14:27:49 [detection_layer] {"stage_name":"detection_layer","events_processed":377,"events_dropped":0,"avg_latency_ms":19.121381797159366,"throughput_eps":0,"last_update":"2026-03-21T14:27:44.210304109Z"} +2026/03/21 14:27:49 [transform_engine] {"stage_name":"transform_engine","events_processed":377,"events_dropped":0,"avg_latency_ms":594.7128233858962,"throughput_eps":0,"last_update":"2026-03-21T14:27:44.210347102Z"} +2026/03/21 14:27:49 ───────────────────────────────────────────────── +2026/03/21 14:27:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:27:54 [log_collector] {"stage_name":"log_collector","events_processed":18124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3624.8,"last_update":"2026-03-21T14:27:49.068497876Z"} +2026/03/21 14:27:54 [metric_collector] {"stage_name":"metric_collector","events_processed":11339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2267.8,"last_update":"2026-03-21T14:27:49.068883105Z"} +2026/03/21 14:27:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:27:49.07673582Z"} +2026/03/21 14:27:54 [detection_layer] {"stage_name":"detection_layer","events_processed":377,"events_dropped":0,"avg_latency_ms":19.121381797159366,"throughput_eps":0,"last_update":"2026-03-21T14:27:49.209980037Z"} +2026/03/21 14:27:54 [transform_engine] {"stage_name":"transform_engine","events_processed":378,"events_dropped":0,"avg_latency_ms":499.11106030871696,"throughput_eps":0,"last_update":"2026-03-21T14:27:49.326708662Z"} +2026/03/21 14:27:54 ───────────────────────────────────────────────── +2026/03/21 14:27:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:27:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4540,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:27:54.078478836Z"} +2026/03/21 14:27:59 [detection_layer] {"stage_name":"detection_layer","events_processed":378,"events_dropped":0,"avg_latency_ms":18.642978037727495,"throughput_eps":0,"last_update":"2026-03-21T14:27:54.210912911Z"} +2026/03/21 14:27:59 [transform_engine] {"stage_name":"transform_engine","events_processed":378,"events_dropped":0,"avg_latency_ms":499.11106030871696,"throughput_eps":0,"last_update":"2026-03-21T14:27:54.209728472Z"} +2026/03/21 14:27:59 [log_collector] {"stage_name":"log_collector","events_processed":18124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3624.8,"last_update":"2026-03-21T14:27:54.068930933Z"} +2026/03/21 14:27:59 [metric_collector] {"stage_name":"metric_collector","events_processed":11344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2268.8,"last_update":"2026-03-21T14:27:54.069104435Z"} +2026/03/21 14:27:59 ───────────────────────────────────────────────── +2026/03/21 14:28:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:28:04 [log_collector] {"stage_name":"log_collector","events_processed":18124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3624.8,"last_update":"2026-03-21T14:28:04.068762438Z"} +2026/03/21 14:28:04 [metric_collector] {"stage_name":"metric_collector","events_processed":11354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2270.8,"last_update":"2026-03-21T14:28:04.068735156Z"} +2026/03/21 14:28:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4542,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:27:59.078013795Z"} +2026/03/21 14:28:04 [detection_layer] {"stage_name":"detection_layer","events_processed":378,"events_dropped":0,"avg_latency_ms":18.642978037727495,"throughput_eps":0,"last_update":"2026-03-21T14:27:59.210310016Z"} +2026/03/21 14:28:04 [transform_engine] {"stage_name":"transform_engine","events_processed":378,"events_dropped":0,"avg_latency_ms":499.11106030871696,"throughput_eps":0,"last_update":"2026-03-21T14:27:59.210279707Z"} +2026/03/21 14:28:04 ───────────────────────────────────────────────── +2026/03/21 14:28:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:28:09 [detection_layer] {"stage_name":"detection_layer","events_processed":378,"events_dropped":0,"avg_latency_ms":18.642978037727495,"throughput_eps":0,"last_update":"2026-03-21T14:28:04.210028223Z"} +2026/03/21 14:28:09 [transform_engine] {"stage_name":"transform_engine","events_processed":378,"events_dropped":0,"avg_latency_ms":499.11106030871696,"throughput_eps":0,"last_update":"2026-03-21T14:28:04.209996441Z"} +2026/03/21 14:28:09 [log_collector] {"stage_name":"log_collector","events_processed":18124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3624.8,"last_update":"2026-03-21T14:28:04.068762438Z"} +2026/03/21 14:28:09 [metric_collector] {"stage_name":"metric_collector","events_processed":11354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2270.8,"last_update":"2026-03-21T14:28:04.068735156Z"} +2026/03/21 14:28:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:28:04.076707059Z"} +2026/03/21 14:28:09 ───────────────────────────────────────────────── +2026/03/21 14:28:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:28:14 [log_collector] {"stage_name":"log_collector","events_processed":18124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3624.8,"last_update":"2026-03-21T14:28:09.068943647Z"} +2026/03/21 14:28:14 [metric_collector] {"stage_name":"metric_collector","events_processed":11359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2271.8,"last_update":"2026-03-21T14:28:09.069421151Z"} +2026/03/21 14:28:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:28:09.079633908Z"} +2026/03/21 14:28:14 [detection_layer] {"stage_name":"detection_layer","events_processed":378,"events_dropped":0,"avg_latency_ms":18.642978037727495,"throughput_eps":0,"last_update":"2026-03-21T14:28:09.211645302Z"} +2026/03/21 14:28:14 [transform_engine] {"stage_name":"transform_engine","events_processed":378,"events_dropped":0,"avg_latency_ms":499.11106030871696,"throughput_eps":0,"last_update":"2026-03-21T14:28:09.209726986Z"} +2026/03/21 14:28:14 ───────────────────────────────────────────────── +2026/03/21 14:28:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:28:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:28:14.078784349Z"} +2026/03/21 14:28:19 [detection_layer] {"stage_name":"detection_layer","events_processed":378,"events_dropped":0,"avg_latency_ms":18.642978037727495,"throughput_eps":0,"last_update":"2026-03-21T14:28:14.210189962Z"} +2026/03/21 14:28:19 [transform_engine] {"stage_name":"transform_engine","events_processed":378,"events_dropped":0,"avg_latency_ms":499.11106030871696,"throughput_eps":0,"last_update":"2026-03-21T14:28:14.210309931Z"} +2026/03/21 14:28:19 [log_collector] {"stage_name":"log_collector","events_processed":18124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3624.8,"last_update":"2026-03-21T14:28:19.068239557Z"} +2026/03/21 14:28:19 [metric_collector] {"stage_name":"metric_collector","events_processed":11364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2272.8,"last_update":"2026-03-21T14:28:14.069106988Z"} +2026/03/21 14:28:19 ───────────────────────────────────────────────── +2026/03/21 14:28:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:28:24 [transform_engine] {"stage_name":"transform_engine","events_processed":379,"events_dropped":0,"avg_latency_ms":412.6237828469736,"throughput_eps":0,"last_update":"2026-03-21T14:28:19.276702744Z"} +2026/03/21 14:28:24 [log_collector] {"stage_name":"log_collector","events_processed":18124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3624.8,"last_update":"2026-03-21T14:28:19.068239557Z"} +2026/03/21 14:28:24 [metric_collector] {"stage_name":"metric_collector","events_processed":11369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2273.8,"last_update":"2026-03-21T14:28:19.068612081Z"} +2026/03/21 14:28:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:28:19.077830342Z"} +2026/03/21 14:28:24 [detection_layer] {"stage_name":"detection_layer","events_processed":378,"events_dropped":0,"avg_latency_ms":18.642978037727495,"throughput_eps":0,"last_update":"2026-03-21T14:28:19.210438848Z"} +2026/03/21 14:28:24 ───────────────────────────────────────────────── +2026/03/21 14:28:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:28:29 [transform_engine] {"stage_name":"transform_engine","events_processed":379,"events_dropped":0,"avg_latency_ms":412.6237828469736,"throughput_eps":0,"last_update":"2026-03-21T14:28:24.210270365Z"} +2026/03/21 14:28:29 [log_collector] {"stage_name":"log_collector","events_processed":18124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3624.8,"last_update":"2026-03-21T14:28:24.06894077Z"} +2026/03/21 14:28:29 [metric_collector] {"stage_name":"metric_collector","events_processed":11374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2274.8,"last_update":"2026-03-21T14:28:24.069124171Z"} +2026/03/21 14:28:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:28:24.077042873Z"} +2026/03/21 14:28:29 [detection_layer] {"stage_name":"detection_layer","events_processed":379,"events_dropped":0,"avg_latency_ms":18.987438230181997,"throughput_eps":0,"last_update":"2026-03-21T14:28:24.210309601Z"} +2026/03/21 14:28:29 ───────────────────────────────────────────────── +Saved state: 17 clusters, 18125 messages, reason: none +2026/03/21 14:28:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:28:34 [log_collector] {"stage_name":"log_collector","events_processed":18124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3624.8,"last_update":"2026-03-21T14:28:29.068260899Z"} +2026/03/21 14:28:34 [metric_collector] {"stage_name":"metric_collector","events_processed":11378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2275.6,"last_update":"2026-03-21T14:28:29.068178101Z"} +2026/03/21 14:28:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:28:29.077637575Z"} +2026/03/21 14:28:34 [detection_layer] {"stage_name":"detection_layer","events_processed":379,"events_dropped":0,"avg_latency_ms":18.987438230181997,"throughput_eps":0,"last_update":"2026-03-21T14:28:29.209890659Z"} +2026/03/21 14:28:34 [transform_engine] {"stage_name":"transform_engine","events_processed":379,"events_dropped":0,"avg_latency_ms":412.6237828469736,"throughput_eps":0,"last_update":"2026-03-21T14:28:29.209869038Z"} +2026/03/21 14:28:34 ───────────────────────────────────────────────── +2026/03/21 14:28:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:28:39 [log_collector] {"stage_name":"log_collector","events_processed":18129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3625.8,"last_update":"2026-03-21T14:28:34.069147322Z"} +2026/03/21 14:28:39 [metric_collector] {"stage_name":"metric_collector","events_processed":11384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2276.8,"last_update":"2026-03-21T14:28:34.069189772Z"} +2026/03/21 14:28:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:28:34.081209441Z"} +2026/03/21 14:28:39 [detection_layer] {"stage_name":"detection_layer","events_processed":379,"events_dropped":0,"avg_latency_ms":18.987438230181997,"throughput_eps":0,"last_update":"2026-03-21T14:28:34.210534836Z"} +2026/03/21 14:28:39 [transform_engine] {"stage_name":"transform_engine","events_processed":379,"events_dropped":0,"avg_latency_ms":412.6237828469736,"throughput_eps":0,"last_update":"2026-03-21T14:28:34.210501403Z"} +2026/03/21 14:28:39 ───────────────────────────────────────────────── +2026/03/21 14:28:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:28:44 [log_collector] {"stage_name":"log_collector","events_processed":18129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3625.8,"last_update":"2026-03-21T14:28:39.06867966Z"} +2026/03/21 14:28:44 [metric_collector] {"stage_name":"metric_collector","events_processed":11389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2277.8,"last_update":"2026-03-21T14:28:39.069080237Z"} +2026/03/21 14:28:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:28:39.076371857Z"} +2026/03/21 14:28:44 [detection_layer] {"stage_name":"detection_layer","events_processed":379,"events_dropped":0,"avg_latency_ms":18.987438230181997,"throughput_eps":0,"last_update":"2026-03-21T14:28:39.210625664Z"} +2026/03/21 14:28:44 [transform_engine] {"stage_name":"transform_engine","events_processed":379,"events_dropped":0,"avg_latency_ms":412.6237828469736,"throughput_eps":0,"last_update":"2026-03-21T14:28:39.210603231Z"} +2026/03/21 14:28:44 ───────────────────────────────────────────────── +2026/03/21 14:28:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:28:49 [metric_collector] {"stage_name":"metric_collector","events_processed":11394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2278.8,"last_update":"2026-03-21T14:28:44.06868113Z"} +2026/03/21 14:28:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4560,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:28:44.075622228Z"} +2026/03/21 14:28:49 [detection_layer] {"stage_name":"detection_layer","events_processed":379,"events_dropped":0,"avg_latency_ms":18.987438230181997,"throughput_eps":0,"last_update":"2026-03-21T14:28:44.209885662Z"} +2026/03/21 14:28:49 [transform_engine] {"stage_name":"transform_engine","events_processed":379,"events_dropped":0,"avg_latency_ms":412.6237828469736,"throughput_eps":0,"last_update":"2026-03-21T14:28:44.209904308Z"} +2026/03/21 14:28:49 [log_collector] {"stage_name":"log_collector","events_processed":18129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3625.8,"last_update":"2026-03-21T14:28:44.068428435Z"} +2026/03/21 14:28:49 ───────────────────────────────────────────────── +2026/03/21 14:28:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:28:54 [detection_layer] {"stage_name":"detection_layer","events_processed":379,"events_dropped":0,"avg_latency_ms":18.987438230181997,"throughput_eps":0,"last_update":"2026-03-21T14:28:49.210546545Z"} +2026/03/21 14:28:54 [transform_engine] {"stage_name":"transform_engine","events_processed":380,"events_dropped":0,"avg_latency_ms":351.8777738775789,"throughput_eps":0,"last_update":"2026-03-21T14:28:49.319454401Z"} +2026/03/21 14:28:54 [log_collector] {"stage_name":"log_collector","events_processed":18129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3625.8,"last_update":"2026-03-21T14:28:49.068979538Z"} +2026/03/21 14:28:54 [metric_collector] {"stage_name":"metric_collector","events_processed":11399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2279.8,"last_update":"2026-03-21T14:28:49.068973386Z"} +2026/03/21 14:28:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:28:49.077334436Z"} +2026/03/21 14:28:54 ───────────────────────────────────────────────── +2026/03/21 14:28:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:28:59 [metric_collector] {"stage_name":"metric_collector","events_processed":11404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2280.8,"last_update":"2026-03-21T14:28:54.068657792Z"} +2026/03/21 14:28:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:28:54.076972041Z"} +2026/03/21 14:28:59 [detection_layer] {"stage_name":"detection_layer","events_processed":380,"events_dropped":0,"avg_latency_ms":17.7652667841456,"throughput_eps":0,"last_update":"2026-03-21T14:28:54.210191886Z"} +2026/03/21 14:28:59 [transform_engine] {"stage_name":"transform_engine","events_processed":380,"events_dropped":0,"avg_latency_ms":351.8777738775789,"throughput_eps":0,"last_update":"2026-03-21T14:28:54.210201434Z"} +2026/03/21 14:28:59 [log_collector] {"stage_name":"log_collector","events_processed":18129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3625.8,"last_update":"2026-03-21T14:28:54.068267675Z"} +2026/03/21 14:28:59 ───────────────────────────────────────────────── +2026/03/21 14:29:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:29:04 [log_collector] {"stage_name":"log_collector","events_processed":18129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3625.8,"last_update":"2026-03-21T14:28:59.068971093Z"} +2026/03/21 14:29:04 [metric_collector] {"stage_name":"metric_collector","events_processed":11409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2281.8,"last_update":"2026-03-21T14:28:59.069018404Z"} +2026/03/21 14:29:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4566,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:28:59.080725464Z"} +2026/03/21 14:29:04 [detection_layer] {"stage_name":"detection_layer","events_processed":380,"events_dropped":0,"avg_latency_ms":17.7652667841456,"throughput_eps":0,"last_update":"2026-03-21T14:28:59.209887483Z"} +2026/03/21 14:29:04 [transform_engine] {"stage_name":"transform_engine","events_processed":380,"events_dropped":0,"avg_latency_ms":351.8777738775789,"throughput_eps":0,"last_update":"2026-03-21T14:28:59.209898454Z"} +2026/03/21 14:29:04 ───────────────────────────────────────────────── +2026/03/21 14:29:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:29:09 [log_collector] {"stage_name":"log_collector","events_processed":18129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3625.8,"last_update":"2026-03-21T14:29:04.068698626Z"} +2026/03/21 14:29:09 [metric_collector] {"stage_name":"metric_collector","events_processed":11414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2282.8,"last_update":"2026-03-21T14:29:04.068931573Z"} +2026/03/21 14:29:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:29:04.076627336Z"} +2026/03/21 14:29:09 [detection_layer] {"stage_name":"detection_layer","events_processed":380,"events_dropped":0,"avg_latency_ms":17.7652667841456,"throughput_eps":0,"last_update":"2026-03-21T14:29:04.212053988Z"} +2026/03/21 14:29:09 [transform_engine] {"stage_name":"transform_engine","events_processed":380,"events_dropped":0,"avg_latency_ms":351.8777738775789,"throughput_eps":0,"last_update":"2026-03-21T14:29:04.212063777Z"} +2026/03/21 14:29:09 ───────────────────────────────────────────────── +2026/03/21 14:29:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:29:14 [log_collector] {"stage_name":"log_collector","events_processed":18129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3625.8,"last_update":"2026-03-21T14:29:09.068716318Z"} +2026/03/21 14:29:14 [metric_collector] {"stage_name":"metric_collector","events_processed":11419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2283.8,"last_update":"2026-03-21T14:29:09.068710336Z"} +2026/03/21 14:29:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4570,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:29:09.076648985Z"} +2026/03/21 14:29:14 [detection_layer] {"stage_name":"detection_layer","events_processed":380,"events_dropped":0,"avg_latency_ms":17.7652667841456,"throughput_eps":0,"last_update":"2026-03-21T14:29:09.209864239Z"} +2026/03/21 14:29:14 [transform_engine] {"stage_name":"transform_engine","events_processed":380,"events_dropped":0,"avg_latency_ms":351.8777738775789,"throughput_eps":0,"last_update":"2026-03-21T14:29:09.209875181Z"} +2026/03/21 14:29:14 ───────────────────────────────────────────────── +2026/03/21 14:29:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:29:19 [log_collector] {"stage_name":"log_collector","events_processed":18132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3626.4,"last_update":"2026-03-21T14:29:14.068542143Z"} +2026/03/21 14:29:19 [metric_collector] {"stage_name":"metric_collector","events_processed":11424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2284.8,"last_update":"2026-03-21T14:29:14.06897339Z"} +2026/03/21 14:29:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4572,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:29:14.07525246Z"} +2026/03/21 14:29:19 [detection_layer] {"stage_name":"detection_layer","events_processed":380,"events_dropped":0,"avg_latency_ms":17.7652667841456,"throughput_eps":0,"last_update":"2026-03-21T14:29:14.210478466Z"} +2026/03/21 14:29:19 [transform_engine] {"stage_name":"transform_engine","events_processed":380,"events_dropped":0,"avg_latency_ms":351.8777738775789,"throughput_eps":0,"last_update":"2026-03-21T14:29:14.210488414Z"} +2026/03/21 14:29:19 ───────────────────────────────────────────────── +2026/03/21 14:29:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:29:24 [transform_engine] {"stage_name":"transform_engine","events_processed":381,"events_dropped":0,"avg_latency_ms":304.60324570206313,"throughput_eps":0,"last_update":"2026-03-21T14:29:19.325698734Z"} +2026/03/21 14:29:24 [log_collector] {"stage_name":"log_collector","events_processed":18140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3628,"last_update":"2026-03-21T14:29:19.068191103Z"} +2026/03/21 14:29:24 [metric_collector] {"stage_name":"metric_collector","events_processed":11429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2285.8,"last_update":"2026-03-21T14:29:19.068709586Z"} +2026/03/21 14:29:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:29:19.076927861Z"} +2026/03/21 14:29:24 [detection_layer] {"stage_name":"detection_layer","events_processed":380,"events_dropped":0,"avg_latency_ms":17.7652667841456,"throughput_eps":0,"last_update":"2026-03-21T14:29:19.210167351Z"} +2026/03/21 14:29:24 ───────────────────────────────────────────────── +2026/03/21 14:29:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:29:29 [metric_collector] {"stage_name":"metric_collector","events_processed":11434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2286.8,"last_update":"2026-03-21T14:29:24.068988296Z"} +2026/03/21 14:29:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4576,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:29:24.076881788Z"} +2026/03/21 14:29:29 [detection_layer] {"stage_name":"detection_layer","events_processed":381,"events_dropped":0,"avg_latency_ms":17.42863382731648,"throughput_eps":0,"last_update":"2026-03-21T14:29:24.210563865Z"} +2026/03/21 14:29:29 [transform_engine] {"stage_name":"transform_engine","events_processed":381,"events_dropped":0,"avg_latency_ms":304.60324570206313,"throughput_eps":0,"last_update":"2026-03-21T14:29:24.210577361Z"} +2026/03/21 14:29:29 [log_collector] {"stage_name":"log_collector","events_processed":18241,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3648.2,"last_update":"2026-03-21T14:29:24.068789273Z"} +2026/03/21 14:29:29 ───────────────────────────────────────────────── +2026/03/21 14:29:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:29:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:29:29.075780867Z"} +2026/03/21 14:29:34 [detection_layer] {"stage_name":"detection_layer","events_processed":381,"events_dropped":0,"avg_latency_ms":17.42863382731648,"throughput_eps":0,"last_update":"2026-03-21T14:29:29.210293495Z"} +2026/03/21 14:29:34 [transform_engine] {"stage_name":"transform_engine","events_processed":381,"events_dropped":0,"avg_latency_ms":304.60324570206313,"throughput_eps":0,"last_update":"2026-03-21T14:29:29.210311068Z"} +2026/03/21 14:29:34 [log_collector] {"stage_name":"log_collector","events_processed":18475,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3695,"last_update":"2026-03-21T14:29:29.068800143Z"} +2026/03/21 14:29:34 [metric_collector] {"stage_name":"metric_collector","events_processed":11439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2287.8,"last_update":"2026-03-21T14:29:29.069201131Z"} +2026/03/21 14:29:34 ───────────────────────────────────────────────── +2026/03/21 14:29:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:29:39 [metric_collector] {"stage_name":"metric_collector","events_processed":11444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2288.8,"last_update":"2026-03-21T14:29:34.069046847Z"} +2026/03/21 14:29:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4580,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:29:34.078590261Z"} +2026/03/21 14:29:39 [detection_layer] {"stage_name":"detection_layer","events_processed":381,"events_dropped":0,"avg_latency_ms":17.42863382731648,"throughput_eps":0,"last_update":"2026-03-21T14:29:34.210883897Z"} +2026/03/21 14:29:39 [transform_engine] {"stage_name":"transform_engine","events_processed":381,"events_dropped":0,"avg_latency_ms":304.60324570206313,"throughput_eps":0,"last_update":"2026-03-21T14:29:34.209766687Z"} +2026/03/21 14:29:39 [log_collector] {"stage_name":"log_collector","events_processed":18494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3698.8,"last_update":"2026-03-21T14:29:34.068844831Z"} +2026/03/21 14:29:39 ───────────────────────────────────────────────── +Saved state: 17 clusters, 18495 messages, reason: none +2026/03/21 14:29:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:29:44 [transform_engine] {"stage_name":"transform_engine","events_processed":381,"events_dropped":0,"avg_latency_ms":304.60324570206313,"throughput_eps":0,"last_update":"2026-03-21T14:29:39.209677569Z"} +2026/03/21 14:29:44 [log_collector] {"stage_name":"log_collector","events_processed":18494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3698.8,"last_update":"2026-03-21T14:29:39.069068773Z"} +2026/03/21 14:29:44 [metric_collector] {"stage_name":"metric_collector","events_processed":11449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2289.8,"last_update":"2026-03-21T14:29:39.069399898Z"} +2026/03/21 14:29:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:29:39.079510167Z"} +2026/03/21 14:29:44 [detection_layer] {"stage_name":"detection_layer","events_processed":381,"events_dropped":0,"avg_latency_ms":17.42863382731648,"throughput_eps":0,"last_update":"2026-03-21T14:29:39.210786454Z"} +2026/03/21 14:29:44 ───────────────────────────────────────────────── +2026/03/21 14:29:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:29:49 [log_collector] {"stage_name":"log_collector","events_processed":18497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3699.4,"last_update":"2026-03-21T14:29:44.068473252Z"} +2026/03/21 14:29:49 [metric_collector] {"stage_name":"metric_collector","events_processed":11454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2290.8,"last_update":"2026-03-21T14:29:44.068781482Z"} +2026/03/21 14:29:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:29:44.075490296Z"} +2026/03/21 14:29:49 [detection_layer] {"stage_name":"detection_layer","events_processed":381,"events_dropped":0,"avg_latency_ms":17.42863382731648,"throughput_eps":0,"last_update":"2026-03-21T14:29:44.210162577Z"} +2026/03/21 14:29:49 [transform_engine] {"stage_name":"transform_engine","events_processed":381,"events_dropped":0,"avg_latency_ms":304.60324570206313,"throughput_eps":0,"last_update":"2026-03-21T14:29:44.209632973Z"} +2026/03/21 14:29:49 ───────────────────────────────────────────────── +2026/03/21 14:29:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:29:54 [log_collector] {"stage_name":"log_collector","events_processed":18502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3700.4,"last_update":"2026-03-21T14:29:49.068589527Z"} +2026/03/21 14:29:54 [metric_collector] {"stage_name":"metric_collector","events_processed":11459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2291.8,"last_update":"2026-03-21T14:29:49.068813857Z"} +2026/03/21 14:29:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4586,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:29:49.075745106Z"} +2026/03/21 14:29:54 [detection_layer] {"stage_name":"detection_layer","events_processed":381,"events_dropped":0,"avg_latency_ms":17.42863382731648,"throughput_eps":0,"last_update":"2026-03-21T14:29:49.209934944Z"} +2026/03/21 14:29:54 [transform_engine] {"stage_name":"transform_engine","events_processed":382,"events_dropped":0,"avg_latency_ms":861.2322711616506,"throughput_eps":0,"last_update":"2026-03-21T14:29:52.297716009Z"} +2026/03/21 14:29:54 ───────────────────────────────────────────────── +2026/03/21 14:29:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:29:59 [log_collector] {"stage_name":"log_collector","events_processed":18508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3701.6,"last_update":"2026-03-21T14:29:54.068059067Z"} +2026/03/21 14:29:59 [metric_collector] {"stage_name":"metric_collector","events_processed":11464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2292.8,"last_update":"2026-03-21T14:29:54.06878641Z"} +2026/03/21 14:29:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4588,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:29:54.077430943Z"} +2026/03/21 14:29:59 [detection_layer] {"stage_name":"detection_layer","events_processed":382,"events_dropped":0,"avg_latency_ms":17.991886461853184,"throughput_eps":0,"last_update":"2026-03-21T14:29:54.210684546Z"} +2026/03/21 14:29:59 [transform_engine] {"stage_name":"transform_engine","events_processed":382,"events_dropped":0,"avg_latency_ms":861.2322711616506,"throughput_eps":0,"last_update":"2026-03-21T14:29:54.210694726Z"} +2026/03/21 14:29:59 ───────────────────────────────────────────────── +2026/03/21 14:30:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:30:04 [log_collector] {"stage_name":"log_collector","events_processed":18522,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3704.4,"last_update":"2026-03-21T14:29:59.068855303Z"} +2026/03/21 14:30:04 [metric_collector] {"stage_name":"metric_collector","events_processed":11469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2293.8,"last_update":"2026-03-21T14:29:59.068843511Z"} +2026/03/21 14:30:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:29:59.078312311Z"} +2026/03/21 14:30:04 [detection_layer] {"stage_name":"detection_layer","events_processed":382,"events_dropped":0,"avg_latency_ms":17.991886461853184,"throughput_eps":0,"last_update":"2026-03-21T14:29:59.210464825Z"} +2026/03/21 14:30:04 [transform_engine] {"stage_name":"transform_engine","events_processed":382,"events_dropped":0,"avg_latency_ms":861.2322711616506,"throughput_eps":0,"last_update":"2026-03-21T14:29:59.210474834Z"} +2026/03/21 14:30:04 ───────────────────────────────────────────────── +2026/03/21 14:30:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:30:09 [metric_collector] {"stage_name":"metric_collector","events_processed":11474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2294.8,"last_update":"2026-03-21T14:30:04.068404374Z"} +2026/03/21 14:30:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4592,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:30:04.085090552Z"} +2026/03/21 14:30:09 [detection_layer] {"stage_name":"detection_layer","events_processed":382,"events_dropped":0,"avg_latency_ms":17.991886461853184,"throughput_eps":0,"last_update":"2026-03-21T14:30:04.210638201Z"} +2026/03/21 14:30:09 [transform_engine] {"stage_name":"transform_engine","events_processed":382,"events_dropped":0,"avg_latency_ms":861.2322711616506,"throughput_eps":0,"last_update":"2026-03-21T14:30:04.210648321Z"} +2026/03/21 14:30:09 [log_collector] {"stage_name":"log_collector","events_processed":18524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3704.8,"last_update":"2026-03-21T14:30:04.068064202Z"} +2026/03/21 14:30:09 ───────────────────────────────────────────────── +2026/03/21 14:30:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:30:14 [log_collector] {"stage_name":"log_collector","events_processed":18524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3704.8,"last_update":"2026-03-21T14:30:09.068820901Z"} +2026/03/21 14:30:14 [metric_collector] {"stage_name":"metric_collector","events_processed":11479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2295.8,"last_update":"2026-03-21T14:30:09.069094275Z"} +2026/03/21 14:30:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:30:09.077771729Z"} +2026/03/21 14:30:14 [detection_layer] {"stage_name":"detection_layer","events_processed":382,"events_dropped":0,"avg_latency_ms":17.991886461853184,"throughput_eps":0,"last_update":"2026-03-21T14:30:09.210096281Z"} +2026/03/21 14:30:14 [transform_engine] {"stage_name":"transform_engine","events_processed":382,"events_dropped":0,"avg_latency_ms":861.2322711616506,"throughput_eps":0,"last_update":"2026-03-21T14:30:09.210112052Z"} +2026/03/21 14:30:14 ───────────────────────────────────────────────── +2026/03/21 14:30:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:30:19 [log_collector] {"stage_name":"log_collector","events_processed":18524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3704.8,"last_update":"2026-03-21T14:30:14.068713979Z"} +2026/03/21 14:30:19 [metric_collector] {"stage_name":"metric_collector","events_processed":11484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2296.8,"last_update":"2026-03-21T14:30:14.069019304Z"} +2026/03/21 14:30:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:30:14.078171608Z"} +2026/03/21 14:30:19 [detection_layer] {"stage_name":"detection_layer","events_processed":382,"events_dropped":0,"avg_latency_ms":17.991886461853184,"throughput_eps":0,"last_update":"2026-03-21T14:30:14.210425566Z"} +2026/03/21 14:30:19 [transform_engine] {"stage_name":"transform_engine","events_processed":382,"events_dropped":0,"avg_latency_ms":861.2322711616506,"throughput_eps":0,"last_update":"2026-03-21T14:30:14.210440324Z"} +2026/03/21 14:30:19 ───────────────────────────────────────────────── +2026/03/21 14:30:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:30:24 [log_collector] {"stage_name":"log_collector","events_processed":18524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3704.8,"last_update":"2026-03-21T14:30:19.068684581Z"} +2026/03/21 14:30:24 [metric_collector] {"stage_name":"metric_collector","events_processed":11489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2297.8,"last_update":"2026-03-21T14:30:19.068861921Z"} +2026/03/21 14:30:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:30:19.07539675Z"} +2026/03/21 14:30:24 [detection_layer] {"stage_name":"detection_layer","events_processed":382,"events_dropped":0,"avg_latency_ms":17.991886461853184,"throughput_eps":0,"last_update":"2026-03-21T14:30:19.210674731Z"} +2026/03/21 14:30:24 [transform_engine] {"stage_name":"transform_engine","events_processed":383,"events_dropped":0,"avg_latency_ms":709.8906731293206,"throughput_eps":0,"last_update":"2026-03-21T14:30:19.315214601Z"} +2026/03/21 14:30:24 ───────────────────────────────────────────────── +2026/03/21 14:30:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:30:29 [metric_collector] {"stage_name":"metric_collector","events_processed":11494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2298.8,"last_update":"2026-03-21T14:30:24.068393776Z"} +2026/03/21 14:30:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:30:24.076500268Z"} +2026/03/21 14:30:29 [detection_layer] {"stage_name":"detection_layer","events_processed":383,"events_dropped":0,"avg_latency_ms":17.385673769482548,"throughput_eps":0,"last_update":"2026-03-21T14:30:24.210825291Z"} +2026/03/21 14:30:29 [transform_engine] {"stage_name":"transform_engine","events_processed":383,"events_dropped":0,"avg_latency_ms":709.8906731293206,"throughput_eps":0,"last_update":"2026-03-21T14:30:24.209679645Z"} +2026/03/21 14:30:29 [log_collector] {"stage_name":"log_collector","events_processed":18524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3704.8,"last_update":"2026-03-21T14:30:24.068081359Z"} +2026/03/21 14:30:29 ───────────────────────────────────────────────── +2026/03/21 14:30:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:30:34 [log_collector] {"stage_name":"log_collector","events_processed":18524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3704.8,"last_update":"2026-03-21T14:30:29.068266391Z"} +2026/03/21 14:30:34 [metric_collector] {"stage_name":"metric_collector","events_processed":11499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2299.8,"last_update":"2026-03-21T14:30:29.068707396Z"} +2026/03/21 14:30:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4602,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:30:29.077785558Z"} +2026/03/21 14:30:34 [detection_layer] {"stage_name":"detection_layer","events_processed":383,"events_dropped":0,"avg_latency_ms":17.385673769482548,"throughput_eps":0,"last_update":"2026-03-21T14:30:29.209998706Z"} +2026/03/21 14:30:34 [transform_engine] {"stage_name":"transform_engine","events_processed":383,"events_dropped":0,"avg_latency_ms":709.8906731293206,"throughput_eps":0,"last_update":"2026-03-21T14:30:29.210010708Z"} +2026/03/21 14:30:34 ───────────────────────────────────────────────── +2026/03/21 14:30:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:30:39 [log_collector] {"stage_name":"log_collector","events_processed":18524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3704.8,"last_update":"2026-03-21T14:30:34.06877067Z"} +2026/03/21 14:30:39 [metric_collector] {"stage_name":"metric_collector","events_processed":11504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2300.8,"last_update":"2026-03-21T14:30:34.069029786Z"} +2026/03/21 14:30:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:30:34.078008929Z"} +2026/03/21 14:30:39 [detection_layer] {"stage_name":"detection_layer","events_processed":383,"events_dropped":0,"avg_latency_ms":17.385673769482548,"throughput_eps":0,"last_update":"2026-03-21T14:30:34.210269396Z"} +2026/03/21 14:30:39 [transform_engine] {"stage_name":"transform_engine","events_processed":383,"events_dropped":0,"avg_latency_ms":709.8906731293206,"throughput_eps":0,"last_update":"2026-03-21T14:30:34.21028187Z"} +2026/03/21 14:30:39 ───────────────────────────────────────────────── +2026/03/21 14:30:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:30:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:30:39.076704179Z"} +2026/03/21 14:30:44 [detection_layer] {"stage_name":"detection_layer","events_processed":383,"events_dropped":0,"avg_latency_ms":17.385673769482548,"throughput_eps":0,"last_update":"2026-03-21T14:30:39.210102745Z"} +2026/03/21 14:30:44 [transform_engine] {"stage_name":"transform_engine","events_processed":383,"events_dropped":0,"avg_latency_ms":709.8906731293206,"throughput_eps":0,"last_update":"2026-03-21T14:30:39.210118606Z"} +2026/03/21 14:30:44 [log_collector] {"stage_name":"log_collector","events_processed":18524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3704.8,"last_update":"2026-03-21T14:30:39.068548915Z"} +2026/03/21 14:30:44 [metric_collector] {"stage_name":"metric_collector","events_processed":11509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2301.8,"last_update":"2026-03-21T14:30:39.068913413Z"} +2026/03/21 14:30:44 ───────────────────────────────────────────────── +2026/03/21 14:30:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:30:49 [log_collector] {"stage_name":"log_collector","events_processed":18524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3704.8,"last_update":"2026-03-21T14:30:44.068894831Z"} +2026/03/21 14:30:49 [metric_collector] {"stage_name":"metric_collector","events_processed":11514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2302.8,"last_update":"2026-03-21T14:30:44.069115213Z"} +2026/03/21 14:30:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:30:44.078019512Z"} +2026/03/21 14:30:49 [detection_layer] {"stage_name":"detection_layer","events_processed":383,"events_dropped":0,"avg_latency_ms":17.385673769482548,"throughput_eps":0,"last_update":"2026-03-21T14:30:44.210266203Z"} +2026/03/21 14:30:49 [transform_engine] {"stage_name":"transform_engine","events_processed":383,"events_dropped":0,"avg_latency_ms":709.8906731293206,"throughput_eps":0,"last_update":"2026-03-21T14:30:44.210278877Z"} +2026/03/21 14:30:49 ───────────────────────────────────────────────── +2026/03/21 14:30:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:30:54 [log_collector] {"stage_name":"log_collector","events_processed":18524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3704.8,"last_update":"2026-03-21T14:30:49.068064268Z"} +2026/03/21 14:30:54 [metric_collector] {"stage_name":"metric_collector","events_processed":11519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2303.8,"last_update":"2026-03-21T14:30:49.068345577Z"} +2026/03/21 14:30:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:30:49.077004375Z"} +2026/03/21 14:30:54 [detection_layer] {"stage_name":"detection_layer","events_processed":383,"events_dropped":0,"avg_latency_ms":17.385673769482548,"throughput_eps":0,"last_update":"2026-03-21T14:30:49.210475732Z"} +2026/03/21 14:30:54 [transform_engine] {"stage_name":"transform_engine","events_processed":384,"events_dropped":0,"avg_latency_ms":582.4041019034565,"throughput_eps":0,"last_update":"2026-03-21T14:30:49.282951422Z"} +2026/03/21 14:30:54 ───────────────────────────────────────────────── +2026/03/21 14:30:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:30:59 [detection_layer] {"stage_name":"detection_layer","events_processed":384,"events_dropped":0,"avg_latency_ms":18.18931621558604,"throughput_eps":0,"last_update":"2026-03-21T14:30:54.210590897Z"} +2026/03/21 14:30:59 [transform_engine] {"stage_name":"transform_engine","events_processed":384,"events_dropped":0,"avg_latency_ms":582.4041019034565,"throughput_eps":0,"last_update":"2026-03-21T14:30:54.210604933Z"} +2026/03/21 14:30:59 [log_collector] {"stage_name":"log_collector","events_processed":18524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3704.8,"last_update":"2026-03-21T14:30:54.069019112Z"} +2026/03/21 14:30:59 [metric_collector] {"stage_name":"metric_collector","events_processed":11524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2304.8,"last_update":"2026-03-21T14:30:54.069155854Z"} +2026/03/21 14:30:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:30:54.078200792Z"} +2026/03/21 14:30:59 ───────────────────────────────────────────────── +2026/03/21 14:31:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:31:04 [log_collector] {"stage_name":"log_collector","events_processed":18524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3704.8,"last_update":"2026-03-21T14:30:59.068833326Z"} +2026/03/21 14:31:04 [metric_collector] {"stage_name":"metric_collector","events_processed":11529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2305.8,"last_update":"2026-03-21T14:30:59.069020766Z"} +2026/03/21 14:31:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:30:59.076365446Z"} +2026/03/21 14:31:04 [detection_layer] {"stage_name":"detection_layer","events_processed":384,"events_dropped":0,"avg_latency_ms":18.18931621558604,"throughput_eps":0,"last_update":"2026-03-21T14:30:59.210651332Z"} +2026/03/21 14:31:04 [transform_engine] {"stage_name":"transform_engine","events_processed":384,"events_dropped":0,"avg_latency_ms":582.4041019034565,"throughput_eps":0,"last_update":"2026-03-21T14:30:59.210666231Z"} +2026/03/21 14:31:04 ───────────────────────────────────────────────── +Saved state: 17 clusters, 18525 messages, reason: none +2026/03/21 14:31:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:31:09 [detection_layer] {"stage_name":"detection_layer","events_processed":384,"events_dropped":0,"avg_latency_ms":18.18931621558604,"throughput_eps":0,"last_update":"2026-03-21T14:31:04.210421367Z"} +2026/03/21 14:31:09 [transform_engine] {"stage_name":"transform_engine","events_processed":384,"events_dropped":0,"avg_latency_ms":582.4041019034565,"throughput_eps":0,"last_update":"2026-03-21T14:31:04.210431727Z"} +2026/03/21 14:31:09 [log_collector] {"stage_name":"log_collector","events_processed":18524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3704.8,"last_update":"2026-03-21T14:31:04.068091531Z"} +2026/03/21 14:31:09 [metric_collector] {"stage_name":"metric_collector","events_processed":11539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2307.8,"last_update":"2026-03-21T14:31:09.068542197Z"} +2026/03/21 14:31:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:31:04.077138944Z"} +2026/03/21 14:31:09 ───────────────────────────────────────────────── +2026/03/21 14:31:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:31:14 [log_collector] {"stage_name":"log_collector","events_processed":18527,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3705.4,"last_update":"2026-03-21T14:31:09.068555644Z"} +2026/03/21 14:31:14 [metric_collector] {"stage_name":"metric_collector","events_processed":11539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2307.8,"last_update":"2026-03-21T14:31:09.068542197Z"} +2026/03/21 14:31:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:31:09.077567278Z"} +2026/03/21 14:31:14 [detection_layer] {"stage_name":"detection_layer","events_processed":384,"events_dropped":0,"avg_latency_ms":18.18931621558604,"throughput_eps":0,"last_update":"2026-03-21T14:31:09.209875324Z"} +2026/03/21 14:31:14 [transform_engine] {"stage_name":"transform_engine","events_processed":384,"events_dropped":0,"avg_latency_ms":582.4041019034565,"throughput_eps":0,"last_update":"2026-03-21T14:31:09.20973244Z"} +2026/03/21 14:31:14 ───────────────────────────────────────────────── +2026/03/21 14:31:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:31:19 [log_collector] {"stage_name":"log_collector","events_processed":18537,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3707.4,"last_update":"2026-03-21T14:31:14.068706101Z"} +2026/03/21 14:31:19 [metric_collector] {"stage_name":"metric_collector","events_processed":11544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2308.8,"last_update":"2026-03-21T14:31:14.06902374Z"} +2026/03/21 14:31:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4620,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:31:14.076993919Z"} +2026/03/21 14:31:19 [detection_layer] {"stage_name":"detection_layer","events_processed":384,"events_dropped":0,"avg_latency_ms":18.18931621558604,"throughput_eps":0,"last_update":"2026-03-21T14:31:14.21030172Z"} +2026/03/21 14:31:19 [transform_engine] {"stage_name":"transform_engine","events_processed":384,"events_dropped":0,"avg_latency_ms":582.4041019034565,"throughput_eps":0,"last_update":"2026-03-21T14:31:14.210316999Z"} +2026/03/21 14:31:19 ───────────────────────────────────────────────── +2026/03/21 14:31:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:31:24 [log_collector] {"stage_name":"log_collector","events_processed":18538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3707.6,"last_update":"2026-03-21T14:31:19.068794594Z"} +2026/03/21 14:31:24 [metric_collector] {"stage_name":"metric_collector","events_processed":11549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2309.8,"last_update":"2026-03-21T14:31:19.068990299Z"} +2026/03/21 14:31:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4622,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:31:19.077902292Z"} +2026/03/21 14:31:24 [detection_layer] {"stage_name":"detection_layer","events_processed":384,"events_dropped":0,"avg_latency_ms":18.18931621558604,"throughput_eps":0,"last_update":"2026-03-21T14:31:19.210132639Z"} +2026/03/21 14:31:24 [transform_engine] {"stage_name":"transform_engine","events_processed":385,"events_dropped":0,"avg_latency_ms":489.13535332276524,"throughput_eps":0,"last_update":"2026-03-21T14:31:19.326207084Z"} +2026/03/21 14:31:24 ───────────────────────────────────────────────── +2026/03/21 14:31:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:31:29 [log_collector] {"stage_name":"log_collector","events_processed":18538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3707.6,"last_update":"2026-03-21T14:31:24.068496093Z"} +2026/03/21 14:31:29 [metric_collector] {"stage_name":"metric_collector","events_processed":11554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2310.8,"last_update":"2026-03-21T14:31:24.069135007Z"} +2026/03/21 14:31:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:31:24.077871996Z"} +2026/03/21 14:31:29 [detection_layer] {"stage_name":"detection_layer","events_processed":385,"events_dropped":0,"avg_latency_ms":17.688372572468833,"throughput_eps":0,"last_update":"2026-03-21T14:31:24.210410563Z"} +2026/03/21 14:31:29 [transform_engine] {"stage_name":"transform_engine","events_processed":385,"events_dropped":0,"avg_latency_ms":489.13535332276524,"throughput_eps":0,"last_update":"2026-03-21T14:31:24.21033611Z"} +2026/03/21 14:31:29 ───────────────────────────────────────────────── +2026/03/21 14:31:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:31:34 [detection_layer] {"stage_name":"detection_layer","events_processed":385,"events_dropped":0,"avg_latency_ms":17.688372572468833,"throughput_eps":0,"last_update":"2026-03-21T14:31:29.210639989Z"} +2026/03/21 14:31:34 [transform_engine] {"stage_name":"transform_engine","events_processed":385,"events_dropped":0,"avg_latency_ms":489.13535332276524,"throughput_eps":0,"last_update":"2026-03-21T14:31:29.210694764Z"} +2026/03/21 14:31:34 [log_collector] {"stage_name":"log_collector","events_processed":18538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3707.6,"last_update":"2026-03-21T14:31:29.068736822Z"} +2026/03/21 14:31:34 [metric_collector] {"stage_name":"metric_collector","events_processed":11559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2311.8,"last_update":"2026-03-21T14:31:29.069261267Z"} +2026/03/21 14:31:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:31:29.078378975Z"} +2026/03/21 14:31:34 ───────────────────────────────────────────────── +2026/03/21 14:31:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:31:39 [log_collector] {"stage_name":"log_collector","events_processed":18538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3707.6,"last_update":"2026-03-21T14:31:34.068636233Z"} +2026/03/21 14:31:39 [metric_collector] {"stage_name":"metric_collector","events_processed":11564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2312.8,"last_update":"2026-03-21T14:31:34.068894688Z"} +2026/03/21 14:31:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:31:34.076509657Z"} +2026/03/21 14:31:39 [detection_layer] {"stage_name":"detection_layer","events_processed":385,"events_dropped":0,"avg_latency_ms":17.688372572468833,"throughput_eps":0,"last_update":"2026-03-21T14:31:34.210893698Z"} +2026/03/21 14:31:39 [transform_engine] {"stage_name":"transform_engine","events_processed":385,"events_dropped":0,"avg_latency_ms":489.13535332276524,"throughput_eps":0,"last_update":"2026-03-21T14:31:34.209689312Z"} +2026/03/21 14:31:39 ───────────────────────────────────────────────── +2026/03/21 14:31:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:31:44 [log_collector] {"stage_name":"log_collector","events_processed":18538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3707.6,"last_update":"2026-03-21T14:31:39.068723743Z"} +2026/03/21 14:31:44 [metric_collector] {"stage_name":"metric_collector","events_processed":11569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2313.8,"last_update":"2026-03-21T14:31:39.06894167Z"} +2026/03/21 14:31:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:31:39.078101579Z"} +2026/03/21 14:31:44 [detection_layer] {"stage_name":"detection_layer","events_processed":385,"events_dropped":0,"avg_latency_ms":17.688372572468833,"throughput_eps":0,"last_update":"2026-03-21T14:31:39.21047052Z"} +2026/03/21 14:31:44 [transform_engine] {"stage_name":"transform_engine","events_processed":385,"events_dropped":0,"avg_latency_ms":489.13535332276524,"throughput_eps":0,"last_update":"2026-03-21T14:31:39.210430703Z"} +2026/03/21 14:31:44 ───────────────────────────────────────────────── +2026/03/21 14:31:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:31:49 [log_collector] {"stage_name":"log_collector","events_processed":18538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3707.6,"last_update":"2026-03-21T14:31:44.068459055Z"} +2026/03/21 14:31:49 [metric_collector] {"stage_name":"metric_collector","events_processed":11574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2314.8,"last_update":"2026-03-21T14:31:44.069046099Z"} +2026/03/21 14:31:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4632,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:31:44.076417392Z"} +2026/03/21 14:31:49 [detection_layer] {"stage_name":"detection_layer","events_processed":385,"events_dropped":0,"avg_latency_ms":17.688372572468833,"throughput_eps":0,"last_update":"2026-03-21T14:31:44.210775673Z"} +2026/03/21 14:31:49 [transform_engine] {"stage_name":"transform_engine","events_processed":385,"events_dropped":0,"avg_latency_ms":489.13535332276524,"throughput_eps":0,"last_update":"2026-03-21T14:31:44.210738131Z"} +2026/03/21 14:31:49 ───────────────────────────────────────────────── +2026/03/21 14:31:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:31:54 [log_collector] {"stage_name":"log_collector","events_processed":18538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3707.6,"last_update":"2026-03-21T14:31:49.069015098Z"} +2026/03/21 14:31:54 [metric_collector] {"stage_name":"metric_collector","events_processed":11579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2315.8,"last_update":"2026-03-21T14:31:49.069201654Z"} +2026/03/21 14:31:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:31:49.079385645Z"} +2026/03/21 14:31:54 [detection_layer] {"stage_name":"detection_layer","events_processed":385,"events_dropped":0,"avg_latency_ms":17.688372572468833,"throughput_eps":0,"last_update":"2026-03-21T14:31:49.21074444Z"} +2026/03/21 14:31:54 [transform_engine] {"stage_name":"transform_engine","events_processed":386,"events_dropped":0,"avg_latency_ms":407.3193624582122,"throughput_eps":0,"last_update":"2026-03-21T14:31:49.290693825Z"} +2026/03/21 14:31:54 ───────────────────────────────────────────────── +2026/03/21 14:31:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:31:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:31:54.077275105Z"} +2026/03/21 14:31:59 [detection_layer] {"stage_name":"detection_layer","events_processed":386,"events_dropped":0,"avg_latency_ms":18.338230457975065,"throughput_eps":0,"last_update":"2026-03-21T14:31:54.210631846Z"} +2026/03/21 14:31:59 [transform_engine] {"stage_name":"transform_engine","events_processed":386,"events_dropped":0,"avg_latency_ms":407.3193624582122,"throughput_eps":0,"last_update":"2026-03-21T14:31:54.210661995Z"} +2026/03/21 14:31:59 [log_collector] {"stage_name":"log_collector","events_processed":18538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3707.6,"last_update":"2026-03-21T14:31:54.068541342Z"} +2026/03/21 14:31:59 [metric_collector] {"stage_name":"metric_collector","events_processed":11584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2316.8,"last_update":"2026-03-21T14:31:54.068897806Z"} +2026/03/21 14:31:59 ───────────────────────────────────────────────── +2026/03/21 14:32:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:32:04 [log_collector] {"stage_name":"log_collector","events_processed":18538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3707.6,"last_update":"2026-03-21T14:31:59.068845238Z"} +2026/03/21 14:32:04 [metric_collector] {"stage_name":"metric_collector","events_processed":11589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2317.8,"last_update":"2026-03-21T14:31:59.069656382Z"} +2026/03/21 14:32:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:31:59.079911317Z"} +2026/03/21 14:32:04 [detection_layer] {"stage_name":"detection_layer","events_processed":386,"events_dropped":0,"avg_latency_ms":18.338230457975065,"throughput_eps":0,"last_update":"2026-03-21T14:31:59.210317497Z"} +2026/03/21 14:32:04 [transform_engine] {"stage_name":"transform_engine","events_processed":386,"events_dropped":0,"avg_latency_ms":407.3193624582122,"throughput_eps":0,"last_update":"2026-03-21T14:31:59.210346042Z"} +2026/03/21 14:32:04 ───────────────────────────────────────────────── +2026/03/21 14:32:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:32:09 [detection_layer] {"stage_name":"detection_layer","events_processed":386,"events_dropped":0,"avg_latency_ms":18.338230457975065,"throughput_eps":0,"last_update":"2026-03-21T14:32:04.210333525Z"} +2026/03/21 14:32:09 [transform_engine] {"stage_name":"transform_engine","events_processed":386,"events_dropped":0,"avg_latency_ms":407.3193624582122,"throughput_eps":0,"last_update":"2026-03-21T14:32:04.210383481Z"} +2026/03/21 14:32:09 [log_collector] {"stage_name":"log_collector","events_processed":18538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3707.6,"last_update":"2026-03-21T14:32:04.068559738Z"} +2026/03/21 14:32:09 [metric_collector] {"stage_name":"metric_collector","events_processed":11594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2318.8,"last_update":"2026-03-21T14:32:04.068907155Z"} +2026/03/21 14:32:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4640,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:32:04.077064052Z"} +2026/03/21 14:32:09 ───────────────────────────────────────────────── +2026/03/21 14:32:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:32:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:32:09.075846145Z"} +2026/03/21 14:32:14 [detection_layer] {"stage_name":"detection_layer","events_processed":386,"events_dropped":0,"avg_latency_ms":18.338230457975065,"throughput_eps":0,"last_update":"2026-03-21T14:32:09.210216618Z"} +2026/03/21 14:32:14 [transform_engine] {"stage_name":"transform_engine","events_processed":386,"events_dropped":0,"avg_latency_ms":407.3193624582122,"throughput_eps":0,"last_update":"2026-03-21T14:32:09.210258909Z"} +2026/03/21 14:32:14 [log_collector] {"stage_name":"log_collector","events_processed":18538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3707.6,"last_update":"2026-03-21T14:32:09.068719131Z"} +2026/03/21 14:32:14 [metric_collector] {"stage_name":"metric_collector","events_processed":11599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2319.8,"last_update":"2026-03-21T14:32:09.068881973Z"} +2026/03/21 14:32:14 ───────────────────────────────────────────────── +Saved state: 17 clusters, 18539 messages, reason: none +2026/03/21 14:32:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:32:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:32:14.078384623Z"} +2026/03/21 14:32:19 [detection_layer] {"stage_name":"detection_layer","events_processed":386,"events_dropped":0,"avg_latency_ms":18.338230457975065,"throughput_eps":0,"last_update":"2026-03-21T14:32:14.210724215Z"} +2026/03/21 14:32:19 [transform_engine] {"stage_name":"transform_engine","events_processed":386,"events_dropped":0,"avg_latency_ms":407.3193624582122,"throughput_eps":0,"last_update":"2026-03-21T14:32:14.210695189Z"} +2026/03/21 14:32:19 [log_collector] {"stage_name":"log_collector","events_processed":18538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3707.6,"last_update":"2026-03-21T14:32:14.06881521Z"} +2026/03/21 14:32:19 [metric_collector] {"stage_name":"metric_collector","events_processed":11604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2320.8,"last_update":"2026-03-21T14:32:14.069040602Z"} +2026/03/21 14:32:19 ───────────────────────────────────────────────── +2026/03/21 14:32:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:32:24 [log_collector] {"stage_name":"log_collector","events_processed":18543,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3708.6,"last_update":"2026-03-21T14:32:19.068637211Z"} +2026/03/21 14:32:24 [metric_collector] {"stage_name":"metric_collector","events_processed":11609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2321.8,"last_update":"2026-03-21T14:32:19.068832796Z"} +2026/03/21 14:32:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4646,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:32:19.075504096Z"} +2026/03/21 14:32:24 [detection_layer] {"stage_name":"detection_layer","events_processed":386,"events_dropped":0,"avg_latency_ms":18.338230457975065,"throughput_eps":0,"last_update":"2026-03-21T14:32:19.210610549Z"} +2026/03/21 14:32:24 [transform_engine] {"stage_name":"transform_engine","events_processed":387,"events_dropped":0,"avg_latency_ms":555.5445627665698,"throughput_eps":0,"last_update":"2026-03-21T14:32:20.359093024Z"} +2026/03/21 14:32:24 ───────────────────────────────────────────────── +2026/03/21 14:32:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:32:29 [detection_layer] {"stage_name":"detection_layer","events_processed":387,"events_dropped":0,"avg_latency_ms":18.599417366380052,"throughput_eps":0,"last_update":"2026-03-21T14:32:24.210421838Z"} +2026/03/21 14:32:29 [transform_engine] {"stage_name":"transform_engine","events_processed":387,"events_dropped":0,"avg_latency_ms":555.5445627665698,"throughput_eps":0,"last_update":"2026-03-21T14:32:24.210454891Z"} +2026/03/21 14:32:29 [log_collector] {"stage_name":"log_collector","events_processed":18543,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3708.6,"last_update":"2026-03-21T14:32:24.068132896Z"} +2026/03/21 14:32:29 [metric_collector] {"stage_name":"metric_collector","events_processed":11614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2322.8,"last_update":"2026-03-21T14:32:24.068530848Z"} +2026/03/21 14:32:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:32:24.077102399Z"} +2026/03/21 14:32:29 ───────────────────────────────────────────────── +2026/03/21 14:32:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:32:34 [log_collector] {"stage_name":"log_collector","events_processed":18543,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3708.6,"last_update":"2026-03-21T14:32:29.068509365Z"} +2026/03/21 14:32:34 [metric_collector] {"stage_name":"metric_collector","events_processed":11619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2323.8,"last_update":"2026-03-21T14:32:29.068984316Z"} +2026/03/21 14:32:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4650,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:32:29.075344179Z"} +2026/03/21 14:32:34 [detection_layer] {"stage_name":"detection_layer","events_processed":387,"events_dropped":0,"avg_latency_ms":18.599417366380052,"throughput_eps":0,"last_update":"2026-03-21T14:32:29.210647979Z"} +2026/03/21 14:32:34 [transform_engine] {"stage_name":"transform_engine","events_processed":387,"events_dropped":0,"avg_latency_ms":555.5445627665698,"throughput_eps":0,"last_update":"2026-03-21T14:32:29.210684559Z"} +2026/03/21 14:32:34 ───────────────────────────────────────────────── +2026/03/21 14:32:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:32:39 [log_collector] {"stage_name":"log_collector","events_processed":18543,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3708.6,"last_update":"2026-03-21T14:32:34.068631396Z"} +2026/03/21 14:32:39 [metric_collector] {"stage_name":"metric_collector","events_processed":11624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2324.8,"last_update":"2026-03-21T14:32:34.069124019Z"} +2026/03/21 14:32:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:32:34.081759336Z"} +2026/03/21 14:32:39 [detection_layer] {"stage_name":"detection_layer","events_processed":387,"events_dropped":0,"avg_latency_ms":18.599417366380052,"throughput_eps":0,"last_update":"2026-03-21T14:32:34.20999225Z"} +2026/03/21 14:32:39 [transform_engine] {"stage_name":"transform_engine","events_processed":387,"events_dropped":0,"avg_latency_ms":555.5445627665698,"throughput_eps":0,"last_update":"2026-03-21T14:32:34.210020143Z"} +2026/03/21 14:32:39 ───────────────────────────────────────────────── +2026/03/21 14:32:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:32:44 [log_collector] {"stage_name":"log_collector","events_processed":18543,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3708.6,"last_update":"2026-03-21T14:32:39.06868306Z"} +2026/03/21 14:32:44 [metric_collector] {"stage_name":"metric_collector","events_processed":11629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2325.8,"last_update":"2026-03-21T14:32:39.068972453Z"} +2026/03/21 14:32:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:32:39.075766239Z"} +2026/03/21 14:32:44 [detection_layer] {"stage_name":"detection_layer","events_processed":387,"events_dropped":0,"avg_latency_ms":18.599417366380052,"throughput_eps":0,"last_update":"2026-03-21T14:32:39.210064782Z"} +2026/03/21 14:32:44 [transform_engine] {"stage_name":"transform_engine","events_processed":387,"events_dropped":0,"avg_latency_ms":555.5445627665698,"throughput_eps":0,"last_update":"2026-03-21T14:32:39.210038292Z"} +2026/03/21 14:32:44 ───────────────────────────────────────────────── +2026/03/21 14:32:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:32:49 [log_collector] {"stage_name":"log_collector","events_processed":18543,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3708.6,"last_update":"2026-03-21T14:32:44.068064289Z"} +2026/03/21 14:32:49 [metric_collector] {"stage_name":"metric_collector","events_processed":11633,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2326.6,"last_update":"2026-03-21T14:32:44.067936234Z"} +2026/03/21 14:32:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:32:44.076977224Z"} +2026/03/21 14:32:49 [detection_layer] {"stage_name":"detection_layer","events_processed":387,"events_dropped":0,"avg_latency_ms":18.599417366380052,"throughput_eps":0,"last_update":"2026-03-21T14:32:44.210241566Z"} +2026/03/21 14:32:49 [transform_engine] {"stage_name":"transform_engine","events_processed":387,"events_dropped":0,"avg_latency_ms":555.5445627665698,"throughput_eps":0,"last_update":"2026-03-21T14:32:44.210195508Z"} +2026/03/21 14:32:49 ───────────────────────────────────────────────── +2026/03/21 14:32:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:32:54 [detection_layer] {"stage_name":"detection_layer","events_processed":387,"events_dropped":0,"avg_latency_ms":18.599417366380052,"throughput_eps":0,"last_update":"2026-03-21T14:32:49.211396963Z"} +2026/03/21 14:32:54 [transform_engine] {"stage_name":"transform_engine","events_processed":388,"events_dropped":0,"avg_latency_ms":464.2000056132559,"throughput_eps":0,"last_update":"2026-03-21T14:32:49.309416634Z"} +2026/03/21 14:32:54 [log_collector] {"stage_name":"log_collector","events_processed":18543,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3708.6,"last_update":"2026-03-21T14:32:49.068482664Z"} +2026/03/21 14:32:54 [metric_collector] {"stage_name":"metric_collector","events_processed":11638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2327.6,"last_update":"2026-03-21T14:32:49.068471783Z"} +2026/03/21 14:32:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:32:49.07834624Z"} +2026/03/21 14:32:54 ───────────────────────────────────────────────── +2026/03/21 14:32:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:32:59 [detection_layer] {"stage_name":"detection_layer","events_processed":388,"events_dropped":0,"avg_latency_ms":17.574234493104044,"throughput_eps":0,"last_update":"2026-03-21T14:32:54.209875028Z"} +2026/03/21 14:32:59 [transform_engine] {"stage_name":"transform_engine","events_processed":388,"events_dropped":0,"avg_latency_ms":464.2000056132559,"throughput_eps":0,"last_update":"2026-03-21T14:32:54.209898904Z"} +2026/03/21 14:32:59 [log_collector] {"stage_name":"log_collector","events_processed":18543,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3708.6,"last_update":"2026-03-21T14:32:54.068082208Z"} +2026/03/21 14:32:59 [metric_collector] {"stage_name":"metric_collector","events_processed":11644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2328.8,"last_update":"2026-03-21T14:32:54.068654745Z"} +2026/03/21 14:32:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4660,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:32:54.081664067Z"} +2026/03/21 14:32:59 ───────────────────────────────────────────────── +2026/03/21 14:33:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:33:04 [log_collector] {"stage_name":"log_collector","events_processed":18547,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3709.4,"last_update":"2026-03-21T14:32:59.068879877Z"} +2026/03/21 14:33:04 [metric_collector] {"stage_name":"metric_collector","events_processed":11649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2329.8,"last_update":"2026-03-21T14:32:59.069208817Z"} +2026/03/21 14:33:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4662,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:32:59.076795521Z"} +2026/03/21 14:33:04 [detection_layer] {"stage_name":"detection_layer","events_processed":388,"events_dropped":0,"avg_latency_ms":17.574234493104044,"throughput_eps":0,"last_update":"2026-03-21T14:32:59.210681453Z"} +2026/03/21 14:33:04 [transform_engine] {"stage_name":"transform_engine","events_processed":388,"events_dropped":0,"avg_latency_ms":464.2000056132559,"throughput_eps":0,"last_update":"2026-03-21T14:32:59.210699126Z"} +2026/03/21 14:33:04 ───────────────────────────────────────────────── +2026/03/21 14:33:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:33:09 [log_collector] {"stage_name":"log_collector","events_processed":18554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3710.8,"last_update":"2026-03-21T14:33:04.068502413Z"} +2026/03/21 14:33:09 [metric_collector] {"stage_name":"metric_collector","events_processed":11654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2330.8,"last_update":"2026-03-21T14:33:04.068487434Z"} +2026/03/21 14:33:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:33:04.078052668Z"} +2026/03/21 14:33:09 [detection_layer] {"stage_name":"detection_layer","events_processed":388,"events_dropped":0,"avg_latency_ms":17.574234493104044,"throughput_eps":0,"last_update":"2026-03-21T14:33:04.210397618Z"} +2026/03/21 14:33:09 [transform_engine] {"stage_name":"transform_engine","events_processed":388,"events_dropped":0,"avg_latency_ms":464.2000056132559,"throughput_eps":0,"last_update":"2026-03-21T14:33:04.210428888Z"} +2026/03/21 14:33:09 ───────────────────────────────────────────────── +2026/03/21 14:33:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:33:14 [log_collector] {"stage_name":"log_collector","events_processed":18654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3730.8,"last_update":"2026-03-21T14:33:09.068213649Z"} +2026/03/21 14:33:14 [metric_collector] {"stage_name":"metric_collector","events_processed":11658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2331.6,"last_update":"2026-03-21T14:33:09.068466713Z"} +2026/03/21 14:33:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:33:09.07423877Z"} +2026/03/21 14:33:14 [detection_layer] {"stage_name":"detection_layer","events_processed":388,"events_dropped":0,"avg_latency_ms":17.574234493104044,"throughput_eps":0,"last_update":"2026-03-21T14:33:09.210768887Z"} +2026/03/21 14:33:14 [transform_engine] {"stage_name":"transform_engine","events_processed":388,"events_dropped":0,"avg_latency_ms":464.2000056132559,"throughput_eps":0,"last_update":"2026-03-21T14:33:09.209691574Z"} +2026/03/21 14:33:14 ───────────────────────────────────────────────── +Saved state: 17 clusters, 18894 messages, reason: none +2026/03/21 14:33:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:33:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4668,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:33:14.083199715Z"} +2026/03/21 14:33:19 [detection_layer] {"stage_name":"detection_layer","events_processed":388,"events_dropped":0,"avg_latency_ms":17.574234493104044,"throughput_eps":0,"last_update":"2026-03-21T14:33:14.210485541Z"} +2026/03/21 14:33:19 [transform_engine] {"stage_name":"transform_engine","events_processed":388,"events_dropped":0,"avg_latency_ms":464.2000056132559,"throughput_eps":0,"last_update":"2026-03-21T14:33:14.210397873Z"} +2026/03/21 14:33:19 [log_collector] {"stage_name":"log_collector","events_processed":18761,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3752.2,"last_update":"2026-03-21T14:33:14.068387078Z"} +2026/03/21 14:33:19 [metric_collector] {"stage_name":"metric_collector","events_processed":11664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2332.8,"last_update":"2026-03-21T14:33:14.068492199Z"} +2026/03/21 14:33:19 ───────────────────────────────────────────────── +2026/03/21 14:33:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:33:24 [log_collector] {"stage_name":"log_collector","events_processed":18899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3779.8,"last_update":"2026-03-21T14:33:19.068567258Z"} +2026/03/21 14:33:24 [metric_collector] {"stage_name":"metric_collector","events_processed":11669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2333.8,"last_update":"2026-03-21T14:33:19.068857354Z"} +2026/03/21 14:33:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4670,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:33:19.077590575Z"} +2026/03/21 14:33:24 [detection_layer] {"stage_name":"detection_layer","events_processed":388,"events_dropped":0,"avg_latency_ms":17.574234493104044,"throughput_eps":0,"last_update":"2026-03-21T14:33:19.210908057Z"} +2026/03/21 14:33:24 [transform_engine] {"stage_name":"transform_engine","events_processed":389,"events_dropped":0,"avg_latency_ms":394.95456749060475,"throughput_eps":0,"last_update":"2026-03-21T14:33:19.327767008Z"} +2026/03/21 14:33:24 ───────────────────────────────────────────────── +2026/03/21 14:33:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:33:29 [log_collector] {"stage_name":"log_collector","events_processed":18899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3779.8,"last_update":"2026-03-21T14:33:24.068915874Z"} +2026/03/21 14:33:29 [metric_collector] {"stage_name":"metric_collector","events_processed":11674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2334.8,"last_update":"2026-03-21T14:33:24.069132358Z"} +2026/03/21 14:33:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:33:24.076666902Z"} +2026/03/21 14:33:29 [detection_layer] {"stage_name":"detection_layer","events_processed":389,"events_dropped":0,"avg_latency_ms":17.764547594483236,"throughput_eps":0,"last_update":"2026-03-21T14:33:24.209908689Z"} +2026/03/21 14:33:29 [transform_engine] {"stage_name":"transform_engine","events_processed":389,"events_dropped":0,"avg_latency_ms":394.95456749060475,"throughput_eps":0,"last_update":"2026-03-21T14:33:24.209890654Z"} +2026/03/21 14:33:29 ───────────────────────────────────────────────── +2026/03/21 14:33:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:33:34 [transform_engine] {"stage_name":"transform_engine","events_processed":389,"events_dropped":0,"avg_latency_ms":394.95456749060475,"throughput_eps":0,"last_update":"2026-03-21T14:33:29.210123315Z"} +2026/03/21 14:33:34 [log_collector] {"stage_name":"log_collector","events_processed":18899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3779.8,"last_update":"2026-03-21T14:33:29.069004278Z"} +2026/03/21 14:33:34 [metric_collector] {"stage_name":"metric_collector","events_processed":11679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2335.8,"last_update":"2026-03-21T14:33:29.069594348Z"} +2026/03/21 14:33:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:33:29.075809525Z"} +2026/03/21 14:33:34 [detection_layer] {"stage_name":"detection_layer","events_processed":389,"events_dropped":0,"avg_latency_ms":17.764547594483236,"throughput_eps":0,"last_update":"2026-03-21T14:33:29.210082216Z"} +2026/03/21 14:33:34 ───────────────────────────────────────────────── +2026/03/21 14:33:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:33:39 [log_collector] {"stage_name":"log_collector","events_processed":18899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3779.8,"last_update":"2026-03-21T14:33:34.068513341Z"} +2026/03/21 14:33:39 [metric_collector] {"stage_name":"metric_collector","events_processed":11684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2336.8,"last_update":"2026-03-21T14:33:34.069235155Z"} +2026/03/21 14:33:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4676,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:33:34.076741995Z"} +2026/03/21 14:33:39 [detection_layer] {"stage_name":"detection_layer","events_processed":389,"events_dropped":0,"avg_latency_ms":17.764547594483236,"throughput_eps":0,"last_update":"2026-03-21T14:33:34.210025631Z"} +2026/03/21 14:33:39 [transform_engine] {"stage_name":"transform_engine","events_processed":389,"events_dropped":0,"avg_latency_ms":394.95456749060475,"throughput_eps":0,"last_update":"2026-03-21T14:33:34.210078923Z"} +2026/03/21 14:33:39 ───────────────────────────────────────────────── +2026/03/21 14:33:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:33:44 [transform_engine] {"stage_name":"transform_engine","events_processed":389,"events_dropped":0,"avg_latency_ms":394.95456749060475,"throughput_eps":0,"last_update":"2026-03-21T14:33:39.210201481Z"} +2026/03/21 14:33:44 [log_collector] {"stage_name":"log_collector","events_processed":18899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3779.8,"last_update":"2026-03-21T14:33:39.068203782Z"} +2026/03/21 14:33:44 [metric_collector] {"stage_name":"metric_collector","events_processed":11689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2337.8,"last_update":"2026-03-21T14:33:39.068594521Z"} +2026/03/21 14:33:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:33:39.07694079Z"} +2026/03/21 14:33:44 [detection_layer] {"stage_name":"detection_layer","events_processed":389,"events_dropped":0,"avg_latency_ms":17.764547594483236,"throughput_eps":0,"last_update":"2026-03-21T14:33:39.210181302Z"} +2026/03/21 14:33:44 ───────────────────────────────────────────────── +2026/03/21 14:33:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:33:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:33:44.076018226Z"} +2026/03/21 14:33:49 [detection_layer] {"stage_name":"detection_layer","events_processed":389,"events_dropped":0,"avg_latency_ms":17.764547594483236,"throughput_eps":0,"last_update":"2026-03-21T14:33:44.21034506Z"} +2026/03/21 14:33:49 [transform_engine] {"stage_name":"transform_engine","events_processed":389,"events_dropped":0,"avg_latency_ms":394.95456749060475,"throughput_eps":0,"last_update":"2026-03-21T14:33:44.210375248Z"} +2026/03/21 14:33:49 [log_collector] {"stage_name":"log_collector","events_processed":18899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3779.8,"last_update":"2026-03-21T14:33:44.068134314Z"} +2026/03/21 14:33:49 [metric_collector] {"stage_name":"metric_collector","events_processed":11694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2338.8,"last_update":"2026-03-21T14:33:44.068725827Z"} +2026/03/21 14:33:49 ───────────────────────────────────────────────── +2026/03/21 14:33:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:33:54 [transform_engine] {"stage_name":"transform_engine","events_processed":390,"events_dropped":0,"avg_latency_ms":330.67403299248383,"throughput_eps":0,"last_update":"2026-03-21T14:33:49.283698419Z"} +2026/03/21 14:33:54 [log_collector] {"stage_name":"log_collector","events_processed":18899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3779.8,"last_update":"2026-03-21T14:33:49.068159835Z"} +2026/03/21 14:33:54 [metric_collector] {"stage_name":"metric_collector","events_processed":11699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2339.8,"last_update":"2026-03-21T14:33:49.068726691Z"} +2026/03/21 14:33:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:33:49.077899474Z"} +2026/03/21 14:33:54 [detection_layer] {"stage_name":"detection_layer","events_processed":389,"events_dropped":0,"avg_latency_ms":17.764547594483236,"throughput_eps":0,"last_update":"2026-03-21T14:33:49.21049448Z"} +2026/03/21 14:33:54 ───────────────────────────────────────────────── +2026/03/21 14:33:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:33:59 [log_collector] {"stage_name":"log_collector","events_processed":18899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3779.8,"last_update":"2026-03-21T14:33:54.068731273Z"} +2026/03/21 14:33:59 [metric_collector] {"stage_name":"metric_collector","events_processed":11704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2340.8,"last_update":"2026-03-21T14:33:54.069033842Z"} +2026/03/21 14:33:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:33:54.077375452Z"} +2026/03/21 14:33:59 [detection_layer] {"stage_name":"detection_layer","events_processed":390,"events_dropped":0,"avg_latency_ms":18.44581147558659,"throughput_eps":0,"last_update":"2026-03-21T14:33:54.210725575Z"} +2026/03/21 14:33:59 [transform_engine] {"stage_name":"transform_engine","events_processed":390,"events_dropped":0,"avg_latency_ms":330.67403299248383,"throughput_eps":0,"last_update":"2026-03-21T14:33:54.209631468Z"} +2026/03/21 14:33:59 ───────────────────────────────────────────────── +2026/03/21 14:34:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:34:04 [transform_engine] {"stage_name":"transform_engine","events_processed":390,"events_dropped":0,"avg_latency_ms":330.67403299248383,"throughput_eps":0,"last_update":"2026-03-21T14:33:59.210553089Z"} +2026/03/21 14:34:04 [log_collector] {"stage_name":"log_collector","events_processed":18899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3779.8,"last_update":"2026-03-21T14:33:59.068077094Z"} +2026/03/21 14:34:04 [metric_collector] {"stage_name":"metric_collector","events_processed":11709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2341.8,"last_update":"2026-03-21T14:33:59.068892556Z"} +2026/03/21 14:34:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:33:59.078252527Z"} +2026/03/21 14:34:04 [detection_layer] {"stage_name":"detection_layer","events_processed":390,"events_dropped":0,"avg_latency_ms":18.44581147558659,"throughput_eps":0,"last_update":"2026-03-21T14:33:59.210528712Z"} +2026/03/21 14:34:04 ───────────────────────────────────────────────── +2026/03/21 14:34:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:34:09 [detection_layer] {"stage_name":"detection_layer","events_processed":390,"events_dropped":0,"avg_latency_ms":18.44581147558659,"throughput_eps":0,"last_update":"2026-03-21T14:34:04.209870184Z"} +2026/03/21 14:34:09 [transform_engine] {"stage_name":"transform_engine","events_processed":390,"events_dropped":0,"avg_latency_ms":330.67403299248383,"throughput_eps":0,"last_update":"2026-03-21T14:34:04.209686712Z"} +2026/03/21 14:34:09 [log_collector] {"stage_name":"log_collector","events_processed":18899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3779.8,"last_update":"2026-03-21T14:34:04.068979266Z"} +2026/03/21 14:34:09 [metric_collector] {"stage_name":"metric_collector","events_processed":11714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2342.8,"last_update":"2026-03-21T14:34:04.070398145Z"} +2026/03/21 14:34:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4688,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:34:04.079621644Z"} +2026/03/21 14:34:09 ───────────────────────────────────────────────── +2026/03/21 14:34:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:34:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:34:09.075997805Z"} +2026/03/21 14:34:14 [detection_layer] {"stage_name":"detection_layer","events_processed":390,"events_dropped":0,"avg_latency_ms":18.44581147558659,"throughput_eps":0,"last_update":"2026-03-21T14:34:09.210233343Z"} +2026/03/21 14:34:14 [transform_engine] {"stage_name":"transform_engine","events_processed":390,"events_dropped":0,"avg_latency_ms":330.67403299248383,"throughput_eps":0,"last_update":"2026-03-21T14:34:09.210249033Z"} +2026/03/21 14:34:14 [log_collector] {"stage_name":"log_collector","events_processed":18902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3780.4,"last_update":"2026-03-21T14:34:09.068566089Z"} +2026/03/21 14:34:14 [metric_collector] {"stage_name":"metric_collector","events_processed":11719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2343.8,"last_update":"2026-03-21T14:34:09.068777192Z"} +2026/03/21 14:34:14 ───────────────────────────────────────────────── +Saved state: 17 clusters, 18913 messages, reason: none +2026/03/21 14:34:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:34:19 [log_collector] {"stage_name":"log_collector","events_processed":18902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3780.4,"last_update":"2026-03-21T14:34:14.068524542Z"} +2026/03/21 14:34:19 [metric_collector] {"stage_name":"metric_collector","events_processed":11724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2344.8,"last_update":"2026-03-21T14:34:14.068766727Z"} +2026/03/21 14:34:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:34:14.077580181Z"} +2026/03/21 14:34:19 [detection_layer] {"stage_name":"detection_layer","events_processed":390,"events_dropped":0,"avg_latency_ms":18.44581147558659,"throughput_eps":0,"last_update":"2026-03-21T14:34:14.210922377Z"} +2026/03/21 14:34:19 [transform_engine] {"stage_name":"transform_engine","events_processed":390,"events_dropped":0,"avg_latency_ms":330.67403299248383,"throughput_eps":0,"last_update":"2026-03-21T14:34:14.209808864Z"} +2026/03/21 14:34:19 ───────────────────────────────────────────────── +2026/03/21 14:34:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:34:24 [detection_layer] {"stage_name":"detection_layer","events_processed":390,"events_dropped":0,"avg_latency_ms":18.44581147558659,"throughput_eps":0,"last_update":"2026-03-21T14:34:19.210687231Z"} +2026/03/21 14:34:24 [transform_engine] {"stage_name":"transform_engine","events_processed":391,"events_dropped":0,"avg_latency_ms":502.44374159398706,"throughput_eps":0,"last_update":"2026-03-21T14:34:20.400222502Z"} +2026/03/21 14:34:24 [log_collector] {"stage_name":"log_collector","events_processed":18913,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3782.6,"last_update":"2026-03-21T14:34:19.068619459Z"} +2026/03/21 14:34:24 [metric_collector] {"stage_name":"metric_collector","events_processed":11729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2345.8,"last_update":"2026-03-21T14:34:19.069114678Z"} +2026/03/21 14:34:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:34:19.078531819Z"} +2026/03/21 14:34:24 ───────────────────────────────────────────────── +2026/03/21 14:34:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:34:29 [log_collector] {"stage_name":"log_collector","events_processed":18929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3785.8,"last_update":"2026-03-21T14:34:24.068936801Z"} +2026/03/21 14:34:29 [metric_collector] {"stage_name":"metric_collector","events_processed":11734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2346.8,"last_update":"2026-03-21T14:34:24.069619319Z"} +2026/03/21 14:34:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:34:24.076389008Z"} +2026/03/21 14:34:29 [detection_layer] {"stage_name":"detection_layer","events_processed":391,"events_dropped":0,"avg_latency_ms":18.154825380469276,"throughput_eps":0,"last_update":"2026-03-21T14:34:24.21072084Z"} +2026/03/21 14:34:29 [transform_engine] {"stage_name":"transform_engine","events_processed":391,"events_dropped":0,"avg_latency_ms":502.44374159398706,"throughput_eps":0,"last_update":"2026-03-21T14:34:24.21061177Z"} +2026/03/21 14:34:29 ───────────────────────────────────────────────── +2026/03/21 14:34:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:34:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:34:29.077281483Z"} +2026/03/21 14:34:34 [detection_layer] {"stage_name":"detection_layer","events_processed":391,"events_dropped":0,"avg_latency_ms":18.154825380469276,"throughput_eps":0,"last_update":"2026-03-21T14:34:29.210547613Z"} +2026/03/21 14:34:34 [transform_engine] {"stage_name":"transform_engine","events_processed":391,"events_dropped":0,"avg_latency_ms":502.44374159398706,"throughput_eps":0,"last_update":"2026-03-21T14:34:29.21058318Z"} +2026/03/21 14:34:34 [log_collector] {"stage_name":"log_collector","events_processed":18929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3785.8,"last_update":"2026-03-21T14:34:29.069026569Z"} +2026/03/21 14:34:34 [metric_collector] {"stage_name":"metric_collector","events_processed":11739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2347.8,"last_update":"2026-03-21T14:34:29.069224117Z"} +2026/03/21 14:34:34 ───────────────────────────────────────────────── +2026/03/21 14:34:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:34:39 [metric_collector] {"stage_name":"metric_collector","events_processed":11744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2348.8,"last_update":"2026-03-21T14:34:34.069700056Z"} +2026/03/21 14:34:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4700,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:34:34.077879815Z"} +2026/03/21 14:34:39 [detection_layer] {"stage_name":"detection_layer","events_processed":391,"events_dropped":0,"avg_latency_ms":18.154825380469276,"throughput_eps":0,"last_update":"2026-03-21T14:34:34.210267372Z"} +2026/03/21 14:34:39 [transform_engine] {"stage_name":"transform_engine","events_processed":391,"events_dropped":0,"avg_latency_ms":502.44374159398706,"throughput_eps":0,"last_update":"2026-03-21T14:34:34.210418481Z"} +2026/03/21 14:34:39 [log_collector] {"stage_name":"log_collector","events_processed":18929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3785.8,"last_update":"2026-03-21T14:34:34.068756558Z"} +2026/03/21 14:34:39 ───────────────────────────────────────────────── +2026/03/21 14:34:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:34:44 [log_collector] {"stage_name":"log_collector","events_processed":18929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3785.8,"last_update":"2026-03-21T14:34:44.068458431Z"} +2026/03/21 14:34:44 [metric_collector] {"stage_name":"metric_collector","events_processed":11749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2349.8,"last_update":"2026-03-21T14:34:39.068817942Z"} +2026/03/21 14:34:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4702,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:34:39.079265236Z"} +2026/03/21 14:34:44 [detection_layer] {"stage_name":"detection_layer","events_processed":391,"events_dropped":0,"avg_latency_ms":18.154825380469276,"throughput_eps":0,"last_update":"2026-03-21T14:34:39.210511296Z"} +2026/03/21 14:34:44 [transform_engine] {"stage_name":"transform_engine","events_processed":391,"events_dropped":0,"avg_latency_ms":502.44374159398706,"throughput_eps":0,"last_update":"2026-03-21T14:34:39.210619032Z"} +2026/03/21 14:34:44 ───────────────────────────────────────────────── +2026/03/21 14:34:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:34:49 [log_collector] {"stage_name":"log_collector","events_processed":18929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3785.8,"last_update":"2026-03-21T14:34:44.068458431Z"} +2026/03/21 14:34:49 [metric_collector] {"stage_name":"metric_collector","events_processed":11754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2350.8,"last_update":"2026-03-21T14:34:44.069076655Z"} +2026/03/21 14:34:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:34:44.077003781Z"} +2026/03/21 14:34:49 [detection_layer] {"stage_name":"detection_layer","events_processed":391,"events_dropped":0,"avg_latency_ms":18.154825380469276,"throughput_eps":0,"last_update":"2026-03-21T14:34:44.210376164Z"} +2026/03/21 14:34:49 [transform_engine] {"stage_name":"transform_engine","events_processed":391,"events_dropped":0,"avg_latency_ms":502.44374159398706,"throughput_eps":0,"last_update":"2026-03-21T14:34:44.210398687Z"} +2026/03/21 14:34:49 ───────────────────────────────────────────────── +2026/03/21 14:34:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:34:54 [detection_layer] {"stage_name":"detection_layer","events_processed":391,"events_dropped":0,"avg_latency_ms":18.154825380469276,"throughput_eps":0,"last_update":"2026-03-21T14:34:49.210214333Z"} +2026/03/21 14:34:54 [transform_engine] {"stage_name":"transform_engine","events_processed":392,"events_dropped":0,"avg_latency_ms":424.2733586751897,"throughput_eps":0,"last_update":"2026-03-21T14:34:49.321939425Z"} +2026/03/21 14:34:54 [log_collector] {"stage_name":"log_collector","events_processed":18929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3785.8,"last_update":"2026-03-21T14:34:49.068227738Z"} +2026/03/21 14:34:54 [metric_collector] {"stage_name":"metric_collector","events_processed":11759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2351.8,"last_update":"2026-03-21T14:34:49.068616764Z"} +2026/03/21 14:34:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:34:49.078996208Z"} +2026/03/21 14:34:54 ───────────────────────────────────────────────── +2026/03/21 14:34:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:34:59 [log_collector] {"stage_name":"log_collector","events_processed":18932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3786.4,"last_update":"2026-03-21T14:34:54.06938785Z"} +2026/03/21 14:34:59 [metric_collector] {"stage_name":"metric_collector","events_processed":11764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2352.8,"last_update":"2026-03-21T14:34:54.068921817Z"} +2026/03/21 14:34:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:34:54.075256473Z"} +2026/03/21 14:34:59 [detection_layer] {"stage_name":"detection_layer","events_processed":392,"events_dropped":0,"avg_latency_ms":18.788804704375423,"throughput_eps":0,"last_update":"2026-03-21T14:34:54.2104844Z"} +2026/03/21 14:34:59 [transform_engine] {"stage_name":"transform_engine","events_processed":392,"events_dropped":0,"avg_latency_ms":424.2733586751897,"throughput_eps":0,"last_update":"2026-03-21T14:34:54.210494659Z"} +2026/03/21 14:34:59 ───────────────────────────────────────────────── +2026/03/21 14:35:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:35:04 [log_collector] {"stage_name":"log_collector","events_processed":18943,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3788.6,"last_update":"2026-03-21T14:34:59.068816738Z"} +2026/03/21 14:35:04 [metric_collector] {"stage_name":"metric_collector","events_processed":11768,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2353.6,"last_update":"2026-03-21T14:34:59.068685967Z"} +2026/03/21 14:35:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:34:59.07815115Z"} +2026/03/21 14:35:04 [detection_layer] {"stage_name":"detection_layer","events_processed":392,"events_dropped":0,"avg_latency_ms":18.788804704375423,"throughput_eps":0,"last_update":"2026-03-21T14:34:59.210386022Z"} +2026/03/21 14:35:04 [transform_engine] {"stage_name":"transform_engine","events_processed":392,"events_dropped":0,"avg_latency_ms":424.2733586751897,"throughput_eps":0,"last_update":"2026-03-21T14:34:59.210398175Z"} +2026/03/21 14:35:04 ───────────────────────────────────────────────── +2026/03/21 14:35:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:35:09 [log_collector] {"stage_name":"log_collector","events_processed":18943,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3788.6,"last_update":"2026-03-21T14:35:04.06875455Z"} +2026/03/21 14:35:09 [metric_collector] {"stage_name":"metric_collector","events_processed":11774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2354.8,"last_update":"2026-03-21T14:35:04.069169456Z"} +2026/03/21 14:35:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4712,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:35:04.077909659Z"} +2026/03/21 14:35:09 [detection_layer] {"stage_name":"detection_layer","events_processed":392,"events_dropped":0,"avg_latency_ms":18.788804704375423,"throughput_eps":0,"last_update":"2026-03-21T14:35:04.210397887Z"} +2026/03/21 14:35:09 [transform_engine] {"stage_name":"transform_engine","events_processed":392,"events_dropped":0,"avg_latency_ms":424.2733586751897,"throughput_eps":0,"last_update":"2026-03-21T14:35:04.210407094Z"} +2026/03/21 14:35:09 ───────────────────────────────────────────────── +2026/03/21 14:35:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:35:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:35:09.079493067Z"} +2026/03/21 14:35:14 [detection_layer] {"stage_name":"detection_layer","events_processed":392,"events_dropped":0,"avg_latency_ms":18.788804704375423,"throughput_eps":0,"last_update":"2026-03-21T14:35:09.210829557Z"} +2026/03/21 14:35:14 [transform_engine] {"stage_name":"transform_engine","events_processed":392,"events_dropped":0,"avg_latency_ms":424.2733586751897,"throughput_eps":0,"last_update":"2026-03-21T14:35:09.209738006Z"} +2026/03/21 14:35:14 [log_collector] {"stage_name":"log_collector","events_processed":18943,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3788.6,"last_update":"2026-03-21T14:35:09.068957173Z"} +2026/03/21 14:35:14 [metric_collector] {"stage_name":"metric_collector","events_processed":11779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2355.8,"last_update":"2026-03-21T14:35:09.069306683Z"} +2026/03/21 14:35:14 ───────────────────────────────────────────────── +2026/03/21 14:35:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:35:19 [metric_collector] {"stage_name":"metric_collector","events_processed":11784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2356.8,"last_update":"2026-03-21T14:35:14.068467991Z"} +2026/03/21 14:35:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:35:14.07914762Z"} +2026/03/21 14:35:19 [detection_layer] {"stage_name":"detection_layer","events_processed":392,"events_dropped":0,"avg_latency_ms":18.788804704375423,"throughput_eps":0,"last_update":"2026-03-21T14:35:14.210378999Z"} +2026/03/21 14:35:19 [transform_engine] {"stage_name":"transform_engine","events_processed":392,"events_dropped":0,"avg_latency_ms":424.2733586751897,"throughput_eps":0,"last_update":"2026-03-21T14:35:14.210399068Z"} +2026/03/21 14:35:19 [log_collector] {"stage_name":"log_collector","events_processed":18943,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3788.6,"last_update":"2026-03-21T14:35:14.068083445Z"} +2026/03/21 14:35:19 ───────────────────────────────────────────────── +2026/03/21 14:35:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:35:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4718,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:35:19.078175424Z"} +2026/03/21 14:35:24 [detection_layer] {"stage_name":"detection_layer","events_processed":392,"events_dropped":0,"avg_latency_ms":18.788804704375423,"throughput_eps":0,"last_update":"2026-03-21T14:35:19.210452375Z"} +2026/03/21 14:35:24 [transform_engine] {"stage_name":"transform_engine","events_processed":393,"events_dropped":0,"avg_latency_ms":361.70425514015176,"throughput_eps":0,"last_update":"2026-03-21T14:35:19.321851653Z"} +2026/03/21 14:35:24 [log_collector] {"stage_name":"log_collector","events_processed":18943,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3788.6,"last_update":"2026-03-21T14:35:19.068634375Z"} +2026/03/21 14:35:24 [metric_collector] {"stage_name":"metric_collector","events_processed":11789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2357.8,"last_update":"2026-03-21T14:35:19.069243302Z"} +2026/03/21 14:35:24 ───────────────────────────────────────────────── +2026/03/21 14:35:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:35:29 [detection_layer] {"stage_name":"detection_layer","events_processed":393,"events_dropped":0,"avg_latency_ms":19.10107296350034,"throughput_eps":0,"last_update":"2026-03-21T14:35:24.210601108Z"} +2026/03/21 14:35:29 [transform_engine] {"stage_name":"transform_engine","events_processed":393,"events_dropped":0,"avg_latency_ms":361.70425514015176,"throughput_eps":0,"last_update":"2026-03-21T14:35:24.210553848Z"} +2026/03/21 14:35:29 [log_collector] {"stage_name":"log_collector","events_processed":18943,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3788.6,"last_update":"2026-03-21T14:35:24.068788198Z"} +2026/03/21 14:35:29 [metric_collector] {"stage_name":"metric_collector","events_processed":11794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2358.8,"last_update":"2026-03-21T14:35:24.069086159Z"} +2026/03/21 14:35:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:35:24.078344655Z"} +2026/03/21 14:35:29 ───────────────────────────────────────────────── +2026/03/21 14:35:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:35:34 [log_collector] {"stage_name":"log_collector","events_processed":18943,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3788.6,"last_update":"2026-03-21T14:35:34.068304472Z"} +2026/03/21 14:35:34 [metric_collector] {"stage_name":"metric_collector","events_processed":11799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2359.8,"last_update":"2026-03-21T14:35:29.069041752Z"} +2026/03/21 14:35:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4722,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:35:29.078711967Z"} +2026/03/21 14:35:34 [detection_layer] {"stage_name":"detection_layer","events_processed":393,"events_dropped":0,"avg_latency_ms":19.10107296350034,"throughput_eps":0,"last_update":"2026-03-21T14:35:29.209919641Z"} +2026/03/21 14:35:34 [transform_engine] {"stage_name":"transform_engine","events_processed":393,"events_dropped":0,"avg_latency_ms":361.70425514015176,"throughput_eps":0,"last_update":"2026-03-21T14:35:29.209938306Z"} +2026/03/21 14:35:34 ───────────────────────────────────────────────── +2026/03/21 14:35:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:35:39 [detection_layer] {"stage_name":"detection_layer","events_processed":393,"events_dropped":0,"avg_latency_ms":19.10107296350034,"throughput_eps":0,"last_update":"2026-03-21T14:35:34.210823555Z"} +2026/03/21 14:35:39 [transform_engine] {"stage_name":"transform_engine","events_processed":393,"events_dropped":0,"avg_latency_ms":361.70425514015176,"throughput_eps":0,"last_update":"2026-03-21T14:35:34.209641219Z"} +2026/03/21 14:35:39 [log_collector] {"stage_name":"log_collector","events_processed":18943,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3788.6,"last_update":"2026-03-21T14:35:34.068304472Z"} +2026/03/21 14:35:39 [metric_collector] {"stage_name":"metric_collector","events_processed":11804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2360.8,"last_update":"2026-03-21T14:35:34.06888779Z"} +2026/03/21 14:35:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:35:34.078499874Z"} +2026/03/21 14:35:39 ───────────────────────────────────────────────── +2026/03/21 14:35:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:35:44 [detection_layer] {"stage_name":"detection_layer","events_processed":393,"events_dropped":0,"avg_latency_ms":19.10107296350034,"throughput_eps":0,"last_update":"2026-03-21T14:35:39.210906927Z"} +2026/03/21 14:35:44 [transform_engine] {"stage_name":"transform_engine","events_processed":393,"events_dropped":0,"avg_latency_ms":361.70425514015176,"throughput_eps":0,"last_update":"2026-03-21T14:35:39.209648076Z"} +2026/03/21 14:35:44 [log_collector] {"stage_name":"log_collector","events_processed":18943,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3788.6,"last_update":"2026-03-21T14:35:44.068084039Z"} +2026/03/21 14:35:44 [metric_collector] {"stage_name":"metric_collector","events_processed":11809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2361.8,"last_update":"2026-03-21T14:35:39.069251469Z"} +2026/03/21 14:35:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:35:39.079485395Z"} +2026/03/21 14:35:44 ───────────────────────────────────────────────── +2026/03/21 14:35:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:35:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4728,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:35:44.076734381Z"} +2026/03/21 14:35:49 [detection_layer] {"stage_name":"detection_layer","events_processed":393,"events_dropped":0,"avg_latency_ms":19.10107296350034,"throughput_eps":0,"last_update":"2026-03-21T14:35:44.210270975Z"} +2026/03/21 14:35:49 [transform_engine] {"stage_name":"transform_engine","events_processed":393,"events_dropped":0,"avg_latency_ms":361.70425514015176,"throughput_eps":0,"last_update":"2026-03-21T14:35:44.210157367Z"} +2026/03/21 14:35:49 [log_collector] {"stage_name":"log_collector","events_processed":18943,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3788.6,"last_update":"2026-03-21T14:35:44.068084039Z"} +2026/03/21 14:35:49 [metric_collector] {"stage_name":"metric_collector","events_processed":11814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2362.8,"last_update":"2026-03-21T14:35:44.068897828Z"} +2026/03/21 14:35:49 ───────────────────────────────────────────────── +2026/03/21 14:35:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:35:54 [metric_collector] {"stage_name":"metric_collector","events_processed":11819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2363.8,"last_update":"2026-03-21T14:35:49.06921228Z"} +2026/03/21 14:35:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4730,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:35:49.075978912Z"} +2026/03/21 14:35:54 [detection_layer] {"stage_name":"detection_layer","events_processed":393,"events_dropped":0,"avg_latency_ms":19.10107296350034,"throughput_eps":0,"last_update":"2026-03-21T14:35:49.210255774Z"} +2026/03/21 14:35:54 [transform_engine] {"stage_name":"transform_engine","events_processed":394,"events_dropped":0,"avg_latency_ms":301.7072529121214,"throughput_eps":0,"last_update":"2026-03-21T14:35:49.27192866Z"} +2026/03/21 14:35:54 [log_collector] {"stage_name":"log_collector","events_processed":18943,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3788.6,"last_update":"2026-03-21T14:35:49.068786333Z"} +2026/03/21 14:35:54 ───────────────────────────────────────────────── +2026/03/21 14:35:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:35:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:35:54.077880112Z"} +2026/03/21 14:35:59 [detection_layer] {"stage_name":"detection_layer","events_processed":394,"events_dropped":0,"avg_latency_ms":18.548464170800273,"throughput_eps":0,"last_update":"2026-03-21T14:35:54.21008753Z"} +2026/03/21 14:35:59 [transform_engine] {"stage_name":"transform_engine","events_processed":394,"events_dropped":0,"avg_latency_ms":301.7072529121214,"throughput_eps":0,"last_update":"2026-03-21T14:35:54.210064396Z"} +2026/03/21 14:35:59 [log_collector] {"stage_name":"log_collector","events_processed":18943,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3788.6,"last_update":"2026-03-21T14:35:54.068886724Z"} +2026/03/21 14:35:59 [metric_collector] {"stage_name":"metric_collector","events_processed":11824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2364.8,"last_update":"2026-03-21T14:35:54.06914552Z"} +2026/03/21 14:35:59 ───────────────────────────────────────────────── +Saved state: 17 clusters, 18944 messages, reason: none +2026/03/21 14:36:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:36:04 [log_collector] {"stage_name":"log_collector","events_processed":18943,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3788.6,"last_update":"2026-03-21T14:35:59.068637999Z"} +2026/03/21 14:36:04 [metric_collector] {"stage_name":"metric_collector","events_processed":11829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2365.8,"last_update":"2026-03-21T14:35:59.06887866Z"} +2026/03/21 14:36:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:35:59.075840016Z"} +2026/03/21 14:36:04 [detection_layer] {"stage_name":"detection_layer","events_processed":394,"events_dropped":0,"avg_latency_ms":18.548464170800273,"throughput_eps":0,"last_update":"2026-03-21T14:35:59.210135712Z"} +2026/03/21 14:36:04 [transform_engine] {"stage_name":"transform_engine","events_processed":394,"events_dropped":0,"avg_latency_ms":301.7072529121214,"throughput_eps":0,"last_update":"2026-03-21T14:35:59.210092651Z"} +2026/03/21 14:36:04 ───────────────────────────────────────────────── +2026/03/21 14:36:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:36:09 [transform_engine] {"stage_name":"transform_engine","events_processed":394,"events_dropped":0,"avg_latency_ms":301.7072529121214,"throughput_eps":0,"last_update":"2026-03-21T14:36:04.210496097Z"} +2026/03/21 14:36:09 [log_collector] {"stage_name":"log_collector","events_processed":18948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3789.6,"last_update":"2026-03-21T14:36:04.068429232Z"} +2026/03/21 14:36:09 [metric_collector] {"stage_name":"metric_collector","events_processed":11834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2366.8,"last_update":"2026-03-21T14:36:04.068671767Z"} +2026/03/21 14:36:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4736,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:36:04.075473467Z"} +2026/03/21 14:36:09 [detection_layer] {"stage_name":"detection_layer","events_processed":394,"events_dropped":0,"avg_latency_ms":18.548464170800273,"throughput_eps":0,"last_update":"2026-03-21T14:36:04.210470868Z"} +2026/03/21 14:36:09 ───────────────────────────────────────────────── +2026/03/21 14:36:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:36:14 [log_collector] {"stage_name":"log_collector","events_processed":18948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3789.6,"last_update":"2026-03-21T14:36:09.069438973Z"} +2026/03/21 14:36:14 [metric_collector] {"stage_name":"metric_collector","events_processed":11839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2367.8,"last_update":"2026-03-21T14:36:09.069649587Z"} +2026/03/21 14:36:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4738,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:36:09.079354828Z"} +2026/03/21 14:36:14 [detection_layer] {"stage_name":"detection_layer","events_processed":394,"events_dropped":0,"avg_latency_ms":18.548464170800273,"throughput_eps":0,"last_update":"2026-03-21T14:36:09.210611825Z"} +2026/03/21 14:36:14 [transform_engine] {"stage_name":"transform_engine","events_processed":394,"events_dropped":0,"avg_latency_ms":301.7072529121214,"throughput_eps":0,"last_update":"2026-03-21T14:36:09.210588119Z"} +2026/03/21 14:36:14 ───────────────────────────────────────────────── +2026/03/21 14:36:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:36:19 [transform_engine] {"stage_name":"transform_engine","events_processed":394,"events_dropped":0,"avg_latency_ms":301.7072529121214,"throughput_eps":0,"last_update":"2026-03-21T14:36:14.210599329Z"} +2026/03/21 14:36:19 [log_collector] {"stage_name":"log_collector","events_processed":18948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3789.6,"last_update":"2026-03-21T14:36:19.068391184Z"} +2026/03/21 14:36:19 [metric_collector] {"stage_name":"metric_collector","events_processed":11844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2368.8,"last_update":"2026-03-21T14:36:14.06892177Z"} +2026/03/21 14:36:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4740,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:36:14.076262283Z"} +2026/03/21 14:36:19 [detection_layer] {"stage_name":"detection_layer","events_processed":394,"events_dropped":0,"avg_latency_ms":18.548464170800273,"throughput_eps":0,"last_update":"2026-03-21T14:36:14.210570704Z"} +2026/03/21 14:36:19 ───────────────────────────────────────────────── +2026/03/21 14:36:23 [ANOMALY] time=2026-03-21T14:36:22Z score=0.8343 method=SEAD details=MAD!:w=0.28,s=0.94 RRCF-fast!:w=0.18,s=0.94 RRCF-mid!:w=0.18,s=0.80 RRCF-slow!:w=0.12,s=0.68 COPOD!:w=0.24,s=0.75 +2026/03/21 14:36:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:36:24 [detection_layer] {"stage_name":"detection_layer","events_processed":394,"events_dropped":0,"avg_latency_ms":18.548464170800273,"throughput_eps":0,"last_update":"2026-03-21T14:36:19.209981836Z"} +2026/03/21 14:36:24 [transform_engine] {"stage_name":"transform_engine","events_processed":395,"events_dropped":0,"avg_latency_ms":1156.8165341296972,"throughput_eps":0,"last_update":"2026-03-21T14:36:23.787221498Z"} +2026/03/21 14:36:24 [log_collector] {"stage_name":"log_collector","events_processed":18948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3789.6,"last_update":"2026-03-21T14:36:19.068391184Z"} +2026/03/21 14:36:24 [metric_collector] {"stage_name":"metric_collector","events_processed":11849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2369.8,"last_update":"2026-03-21T14:36:19.068676542Z"} +2026/03/21 14:36:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:36:19.076763593Z"} +2026/03/21 14:36:24 ───────────────────────────────────────────────── +2026/03/21 14:36:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:36:29 [metric_collector] {"stage_name":"metric_collector","events_processed":11854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2370.8,"last_update":"2026-03-21T14:36:24.068779952Z"} +2026/03/21 14:36:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:36:24.076262016Z"} +2026/03/21 14:36:29 [detection_layer] {"stage_name":"detection_layer","events_processed":395,"events_dropped":0,"avg_latency_ms":17.18859473664022,"throughput_eps":0,"last_update":"2026-03-21T14:36:24.21040509Z"} +2026/03/21 14:36:29 [transform_engine] {"stage_name":"transform_engine","events_processed":395,"events_dropped":0,"avg_latency_ms":1156.8165341296972,"throughput_eps":0,"last_update":"2026-03-21T14:36:24.21042103Z"} +2026/03/21 14:36:29 [log_collector] {"stage_name":"log_collector","events_processed":18948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3789.6,"last_update":"2026-03-21T14:36:29.068184587Z"} +2026/03/21 14:36:29 ───────────────────────────────────────────────── +2026/03/21 14:36:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:36:34 [log_collector] {"stage_name":"log_collector","events_processed":18948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3789.6,"last_update":"2026-03-21T14:36:29.068184587Z"} +2026/03/21 14:36:34 [metric_collector] {"stage_name":"metric_collector","events_processed":11859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2371.8,"last_update":"2026-03-21T14:36:29.068477037Z"} +2026/03/21 14:36:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:36:29.074665732Z"} +2026/03/21 14:36:34 [detection_layer] {"stage_name":"detection_layer","events_processed":395,"events_dropped":0,"avg_latency_ms":17.18859473664022,"throughput_eps":0,"last_update":"2026-03-21T14:36:29.209903324Z"} +2026/03/21 14:36:34 [transform_engine] {"stage_name":"transform_engine","events_processed":395,"events_dropped":0,"avg_latency_ms":1156.8165341296972,"throughput_eps":0,"last_update":"2026-03-21T14:36:29.209915637Z"} +2026/03/21 14:36:34 ───────────────────────────────────────────────── +2026/03/21 14:36:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:36:39 [log_collector] {"stage_name":"log_collector","events_processed":18948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3789.6,"last_update":"2026-03-21T14:36:34.06837524Z"} +2026/03/21 14:36:39 [metric_collector] {"stage_name":"metric_collector","events_processed":11864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2372.8,"last_update":"2026-03-21T14:36:34.068781118Z"} +2026/03/21 14:36:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:36:34.075930053Z"} +2026/03/21 14:36:39 [detection_layer] {"stage_name":"detection_layer","events_processed":395,"events_dropped":0,"avg_latency_ms":17.18859473664022,"throughput_eps":0,"last_update":"2026-03-21T14:36:34.210161285Z"} +2026/03/21 14:36:39 [transform_engine] {"stage_name":"transform_engine","events_processed":395,"events_dropped":0,"avg_latency_ms":1156.8165341296972,"throughput_eps":0,"last_update":"2026-03-21T14:36:34.210171835Z"} +2026/03/21 14:36:39 ───────────────────────────────────────────────── +2026/03/21 14:36:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:36:44 [metric_collector] {"stage_name":"metric_collector","events_processed":11869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2373.8,"last_update":"2026-03-21T14:36:39.070006104Z"} +2026/03/21 14:36:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4750,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:36:39.080417178Z"} +2026/03/21 14:36:44 [detection_layer] {"stage_name":"detection_layer","events_processed":395,"events_dropped":0,"avg_latency_ms":17.18859473664022,"throughput_eps":0,"last_update":"2026-03-21T14:36:39.210617259Z"} +2026/03/21 14:36:44 [transform_engine] {"stage_name":"transform_engine","events_processed":395,"events_dropped":0,"avg_latency_ms":1156.8165341296972,"throughput_eps":0,"last_update":"2026-03-21T14:36:39.209697577Z"} +2026/03/21 14:36:44 [log_collector] {"stage_name":"log_collector","events_processed":18948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3789.6,"last_update":"2026-03-21T14:36:39.068901818Z"} +2026/03/21 14:36:44 ───────────────────────────────────────────────── +2026/03/21 14:36:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:36:49 [log_collector] {"stage_name":"log_collector","events_processed":18951,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3790.2,"last_update":"2026-03-21T14:36:44.068131326Z"} +2026/03/21 14:36:49 [metric_collector] {"stage_name":"metric_collector","events_processed":11874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2374.8,"last_update":"2026-03-21T14:36:44.06891179Z"} +2026/03/21 14:36:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4752,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:36:44.075588962Z"} +2026/03/21 14:36:49 [detection_layer] {"stage_name":"detection_layer","events_processed":395,"events_dropped":0,"avg_latency_ms":17.18859473664022,"throughput_eps":0,"last_update":"2026-03-21T14:36:44.210848013Z"} +2026/03/21 14:36:49 [transform_engine] {"stage_name":"transform_engine","events_processed":395,"events_dropped":0,"avg_latency_ms":1156.8165341296972,"throughput_eps":0,"last_update":"2026-03-21T14:36:44.209735241Z"} +2026/03/21 14:36:49 ───────────────────────────────────────────────── +2026/03/21 14:36:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:36:54 [log_collector] {"stage_name":"log_collector","events_processed":18959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3791.8,"last_update":"2026-03-21T14:36:49.06843918Z"} +2026/03/21 14:36:54 [metric_collector] {"stage_name":"metric_collector","events_processed":11879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2375.8,"last_update":"2026-03-21T14:36:49.068940071Z"} +2026/03/21 14:36:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:36:49.077740669Z"} +2026/03/21 14:36:54 [detection_layer] {"stage_name":"detection_layer","events_processed":395,"events_dropped":0,"avg_latency_ms":17.18859473664022,"throughput_eps":0,"last_update":"2026-03-21T14:36:49.210159409Z"} +2026/03/21 14:36:54 [transform_engine] {"stage_name":"transform_engine","events_processed":396,"events_dropped":0,"avg_latency_ms":948.2353483037577,"throughput_eps":0,"last_update":"2026-03-21T14:36:49.324194702Z"} +2026/03/21 14:36:54 ───────────────────────────────────────────────── +2026/03/21 14:36:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:36:59 [log_collector] {"stage_name":"log_collector","events_processed":19073,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3814.6,"last_update":"2026-03-21T14:36:54.068826031Z"} +2026/03/21 14:36:59 [metric_collector] {"stage_name":"metric_collector","events_processed":11884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2376.8,"last_update":"2026-03-21T14:36:54.069037896Z"} +2026/03/21 14:36:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:36:54.074955773Z"} +2026/03/21 14:36:59 [detection_layer] {"stage_name":"detection_layer","events_processed":396,"events_dropped":0,"avg_latency_ms":17.286178389312177,"throughput_eps":0,"last_update":"2026-03-21T14:36:54.210680486Z"} +2026/03/21 14:36:59 [transform_engine] {"stage_name":"transform_engine","events_processed":396,"events_dropped":0,"avg_latency_ms":948.2353483037577,"throughput_eps":0,"last_update":"2026-03-21T14:36:54.210606074Z"} +2026/03/21 14:36:59 ───────────────────────────────────────────────── +2026/03/21 14:37:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:37:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4758,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:36:59.078640396Z"} +2026/03/21 14:37:04 [detection_layer] {"stage_name":"detection_layer","events_processed":396,"events_dropped":0,"avg_latency_ms":17.286178389312177,"throughput_eps":0,"last_update":"2026-03-21T14:36:59.209936525Z"} +2026/03/21 14:37:04 [transform_engine] {"stage_name":"transform_engine","events_processed":396,"events_dropped":0,"avg_latency_ms":948.2353483037577,"throughput_eps":0,"last_update":"2026-03-21T14:36:59.209890035Z"} +2026/03/21 14:37:04 [log_collector] {"stage_name":"log_collector","events_processed":19281,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3856.2,"last_update":"2026-03-21T14:36:59.068753225Z"} +2026/03/21 14:37:04 [metric_collector] {"stage_name":"metric_collector","events_processed":11889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2377.8,"last_update":"2026-03-21T14:36:59.069320842Z"} +2026/03/21 14:37:04 ───────────────────────────────────────────────── +2026/03/21 14:37:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:37:09 [log_collector] {"stage_name":"log_collector","events_processed":19309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3861.8,"last_update":"2026-03-21T14:37:04.068701823Z"} +2026/03/21 14:37:09 [metric_collector] {"stage_name":"metric_collector","events_processed":11894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2378.8,"last_update":"2026-03-21T14:37:04.068873973Z"} +2026/03/21 14:37:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:37:04.077677247Z"} +2026/03/21 14:37:09 [detection_layer] {"stage_name":"detection_layer","events_processed":396,"events_dropped":0,"avg_latency_ms":17.286178389312177,"throughput_eps":0,"last_update":"2026-03-21T14:37:04.209980616Z"} +2026/03/21 14:37:09 [transform_engine] {"stage_name":"transform_engine","events_processed":396,"events_dropped":0,"avg_latency_ms":948.2353483037577,"throughput_eps":0,"last_update":"2026-03-21T14:37:04.210031633Z"} +2026/03/21 14:37:09 ───────────────────────────────────────────────── +Saved state: 17 clusters, 19310 messages, reason: none +2026/03/21 14:37:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:37:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:37:09.077484656Z"} +2026/03/21 14:37:14 [detection_layer] {"stage_name":"detection_layer","events_processed":396,"events_dropped":0,"avg_latency_ms":17.286178389312177,"throughput_eps":0,"last_update":"2026-03-21T14:37:09.210854027Z"} +2026/03/21 14:37:14 [transform_engine] {"stage_name":"transform_engine","events_processed":396,"events_dropped":0,"avg_latency_ms":948.2353483037577,"throughput_eps":0,"last_update":"2026-03-21T14:37:09.209731497Z"} +2026/03/21 14:37:14 [log_collector] {"stage_name":"log_collector","events_processed":19309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3861.8,"last_update":"2026-03-21T14:37:09.068767346Z"} +2026/03/21 14:37:14 [metric_collector] {"stage_name":"metric_collector","events_processed":11899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2379.8,"last_update":"2026-03-21T14:37:09.06924408Z"} +2026/03/21 14:37:14 ───────────────────────────────────────────────── +2026/03/21 14:37:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:37:19 [metric_collector] {"stage_name":"metric_collector","events_processed":11904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2380.8,"last_update":"2026-03-21T14:37:14.068986219Z"} +2026/03/21 14:37:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:37:14.079110103Z"} +2026/03/21 14:37:19 [detection_layer] {"stage_name":"detection_layer","events_processed":396,"events_dropped":0,"avg_latency_ms":17.286178389312177,"throughput_eps":0,"last_update":"2026-03-21T14:37:14.212379862Z"} +2026/03/21 14:37:19 [transform_engine] {"stage_name":"transform_engine","events_processed":396,"events_dropped":0,"avg_latency_ms":948.2353483037577,"throughput_eps":0,"last_update":"2026-03-21T14:37:14.210381544Z"} +2026/03/21 14:37:19 [log_collector] {"stage_name":"log_collector","events_processed":19312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3862.4,"last_update":"2026-03-21T14:37:14.068589529Z"} +2026/03/21 14:37:19 ───────────────────────────────────────────────── +2026/03/21 14:37:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:37:24 [log_collector] {"stage_name":"log_collector","events_processed":19312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3862.4,"last_update":"2026-03-21T14:37:19.068481518Z"} +2026/03/21 14:37:24 [metric_collector] {"stage_name":"metric_collector","events_processed":11909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2381.8,"last_update":"2026-03-21T14:37:19.068709194Z"} +2026/03/21 14:37:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4766,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:37:19.075702721Z"} +2026/03/21 14:37:24 [detection_layer] {"stage_name":"detection_layer","events_processed":396,"events_dropped":0,"avg_latency_ms":17.286178389312177,"throughput_eps":0,"last_update":"2026-03-21T14:37:19.209924735Z"} +2026/03/21 14:37:24 [transform_engine] {"stage_name":"transform_engine","events_processed":396,"events_dropped":0,"avg_latency_ms":948.2353483037577,"throughput_eps":0,"last_update":"2026-03-21T14:37:19.209963599Z"} +2026/03/21 14:37:24 ───────────────────────────────────────────────── +2026/03/21 14:37:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:37:29 [log_collector] {"stage_name":"log_collector","events_processed":19323,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3864.6,"last_update":"2026-03-21T14:37:24.068642906Z"} +2026/03/21 14:37:29 [metric_collector] {"stage_name":"metric_collector","events_processed":11914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2382.8,"last_update":"2026-03-21T14:37:24.069063691Z"} +2026/03/21 14:37:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4768,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:37:24.07746692Z"} +2026/03/21 14:37:29 [detection_layer] {"stage_name":"detection_layer","events_processed":397,"events_dropped":0,"avg_latency_ms":16.58477791144974,"throughput_eps":0,"last_update":"2026-03-21T14:37:24.210647557Z"} +2026/03/21 14:37:29 [transform_engine] {"stage_name":"transform_engine","events_processed":397,"events_dropped":0,"avg_latency_ms":863.1199276430062,"throughput_eps":0,"last_update":"2026-03-21T14:37:24.210656845Z"} +2026/03/21 14:37:29 ───────────────────────────────────────────────── +2026/03/21 14:37:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:37:34 [log_collector] {"stage_name":"log_collector","events_processed":19337,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3867.4,"last_update":"2026-03-21T14:37:29.068952569Z"} +2026/03/21 14:37:34 [metric_collector] {"stage_name":"metric_collector","events_processed":11919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2383.8,"last_update":"2026-03-21T14:37:29.06920357Z"} +2026/03/21 14:37:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4770,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:37:29.076722494Z"} +2026/03/21 14:37:34 [detection_layer] {"stage_name":"detection_layer","events_processed":397,"events_dropped":0,"avg_latency_ms":16.58477791144974,"throughput_eps":0,"last_update":"2026-03-21T14:37:29.209934572Z"} +2026/03/21 14:37:34 [transform_engine] {"stage_name":"transform_engine","events_processed":397,"events_dropped":0,"avg_latency_ms":863.1199276430062,"throughput_eps":0,"last_update":"2026-03-21T14:37:29.209945875Z"} +2026/03/21 14:37:34 ───────────────────────────────────────────────── +2026/03/21 14:37:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:37:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:37:34.075170888Z"} +2026/03/21 14:37:39 [detection_layer] {"stage_name":"detection_layer","events_processed":397,"events_dropped":0,"avg_latency_ms":16.58477791144974,"throughput_eps":0,"last_update":"2026-03-21T14:37:34.210515571Z"} +2026/03/21 14:37:39 [transform_engine] {"stage_name":"transform_engine","events_processed":397,"events_dropped":0,"avg_latency_ms":863.1199276430062,"throughput_eps":0,"last_update":"2026-03-21T14:37:34.210528497Z"} +2026/03/21 14:37:39 [log_collector] {"stage_name":"log_collector","events_processed":19339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3867.8,"last_update":"2026-03-21T14:37:34.068593979Z"} +2026/03/21 14:37:39 [metric_collector] {"stage_name":"metric_collector","events_processed":11924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2384.8,"last_update":"2026-03-21T14:37:34.069072065Z"} +2026/03/21 14:37:39 ───────────────────────────────────────────────── +2026/03/21 14:37:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:37:44 [transform_engine] {"stage_name":"transform_engine","events_processed":397,"events_dropped":0,"avg_latency_ms":863.1199276430062,"throughput_eps":0,"last_update":"2026-03-21T14:37:39.209643017Z"} +2026/03/21 14:37:44 [log_collector] {"stage_name":"log_collector","events_processed":19339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3867.8,"last_update":"2026-03-21T14:37:39.068607202Z"} +2026/03/21 14:37:44 [metric_collector] {"stage_name":"metric_collector","events_processed":11929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2385.8,"last_update":"2026-03-21T14:37:39.069083946Z"} +2026/03/21 14:37:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:37:39.0764414Z"} +2026/03/21 14:37:44 [detection_layer] {"stage_name":"detection_layer","events_processed":397,"events_dropped":0,"avg_latency_ms":16.58477791144974,"throughput_eps":0,"last_update":"2026-03-21T14:37:39.210758034Z"} +2026/03/21 14:37:44 ───────────────────────────────────────────────── +2026/03/21 14:37:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:37:49 [metric_collector] {"stage_name":"metric_collector","events_processed":11934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2386.8,"last_update":"2026-03-21T14:37:44.069213576Z"} +2026/03/21 14:37:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:37:44.076466981Z"} +2026/03/21 14:37:49 [detection_layer] {"stage_name":"detection_layer","events_processed":397,"events_dropped":0,"avg_latency_ms":16.58477791144974,"throughput_eps":0,"last_update":"2026-03-21T14:37:44.210704444Z"} +2026/03/21 14:37:49 [transform_engine] {"stage_name":"transform_engine","events_processed":397,"events_dropped":0,"avg_latency_ms":863.1199276430062,"throughput_eps":0,"last_update":"2026-03-21T14:37:44.210716697Z"} +2026/03/21 14:37:49 [log_collector] {"stage_name":"log_collector","events_processed":19339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3867.8,"last_update":"2026-03-21T14:37:44.069015917Z"} +2026/03/21 14:37:49 ───────────────────────────────────────────────── +2026/03/21 14:37:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:37:54 [log_collector] {"stage_name":"log_collector","events_processed":19339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3867.8,"last_update":"2026-03-21T14:37:49.0681734Z"} +2026/03/21 14:37:54 [metric_collector] {"stage_name":"metric_collector","events_processed":11939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2387.8,"last_update":"2026-03-21T14:37:49.068597813Z"} +2026/03/21 14:37:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:37:49.077287168Z"} +2026/03/21 14:37:54 [detection_layer] {"stage_name":"detection_layer","events_processed":397,"events_dropped":0,"avg_latency_ms":16.58477791144974,"throughput_eps":0,"last_update":"2026-03-21T14:37:49.210545766Z"} +2026/03/21 14:37:54 [transform_engine] {"stage_name":"transform_engine","events_processed":397,"events_dropped":0,"avg_latency_ms":863.1199276430062,"throughput_eps":0,"last_update":"2026-03-21T14:37:49.210555564Z"} +2026/03/21 14:37:54 ───────────────────────────────────────────────── +2026/03/21 14:37:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:37:59 [log_collector] {"stage_name":"log_collector","events_processed":19339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3867.8,"last_update":"2026-03-21T14:37:54.068099737Z"} +2026/03/21 14:37:59 [metric_collector] {"stage_name":"metric_collector","events_processed":11944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2388.8,"last_update":"2026-03-21T14:37:54.068415272Z"} +2026/03/21 14:37:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4780,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:37:54.076454803Z"} +2026/03/21 14:37:59 [detection_layer] {"stage_name":"detection_layer","events_processed":398,"events_dropped":0,"avg_latency_ms":16.680056929159793,"throughput_eps":0,"last_update":"2026-03-21T14:37:54.210887027Z"} +2026/03/21 14:37:59 [transform_engine] {"stage_name":"transform_engine","events_processed":398,"events_dropped":0,"avg_latency_ms":711.9542625144051,"throughput_eps":0,"last_update":"2026-03-21T14:37:54.20966157Z"} +2026/03/21 14:37:59 ───────────────────────────────────────────────── +2026/03/21 14:38:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:38:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4782,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:37:59.07501076Z"} +2026/03/21 14:38:04 [detection_layer] {"stage_name":"detection_layer","events_processed":398,"events_dropped":0,"avg_latency_ms":16.680056929159793,"throughput_eps":0,"last_update":"2026-03-21T14:37:59.210132195Z"} +2026/03/21 14:38:04 [transform_engine] {"stage_name":"transform_engine","events_processed":398,"events_dropped":0,"avg_latency_ms":711.9542625144051,"throughput_eps":0,"last_update":"2026-03-21T14:37:59.21014533Z"} +2026/03/21 14:38:04 [log_collector] {"stage_name":"log_collector","events_processed":19339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3867.8,"last_update":"2026-03-21T14:37:59.068612482Z"} +2026/03/21 14:38:04 [metric_collector] {"stage_name":"metric_collector","events_processed":11949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2389.8,"last_update":"2026-03-21T14:37:59.068865407Z"} +2026/03/21 14:38:04 ───────────────────────────────────────────────── +2026/03/21 14:38:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:38:09 [log_collector] {"stage_name":"log_collector","events_processed":19339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3867.8,"last_update":"2026-03-21T14:38:04.068804598Z"} +2026/03/21 14:38:09 [metric_collector] {"stage_name":"metric_collector","events_processed":11954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2390.8,"last_update":"2026-03-21T14:38:04.068818656Z"} +2026/03/21 14:38:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:38:04.076796057Z"} +2026/03/21 14:38:09 [detection_layer] {"stage_name":"detection_layer","events_processed":398,"events_dropped":0,"avg_latency_ms":16.680056929159793,"throughput_eps":0,"last_update":"2026-03-21T14:38:04.210065595Z"} +2026/03/21 14:38:09 [transform_engine] {"stage_name":"transform_engine","events_processed":398,"events_dropped":0,"avg_latency_ms":711.9542625144051,"throughput_eps":0,"last_update":"2026-03-21T14:38:04.210078419Z"} +2026/03/21 14:38:09 ───────────────────────────────────────────────── +2026/03/21 14:38:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:38:14 [log_collector] {"stage_name":"log_collector","events_processed":19339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3867.8,"last_update":"2026-03-21T14:38:09.068841772Z"} +2026/03/21 14:38:14 [metric_collector] {"stage_name":"metric_collector","events_processed":11959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2391.8,"last_update":"2026-03-21T14:38:09.068982801Z"} +2026/03/21 14:38:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:38:09.075630727Z"} +2026/03/21 14:38:14 [detection_layer] {"stage_name":"detection_layer","events_processed":398,"events_dropped":0,"avg_latency_ms":16.680056929159793,"throughput_eps":0,"last_update":"2026-03-21T14:38:09.209859261Z"} +2026/03/21 14:38:14 [transform_engine] {"stage_name":"transform_engine","events_processed":398,"events_dropped":0,"avg_latency_ms":711.9542625144051,"throughput_eps":0,"last_update":"2026-03-21T14:38:09.209761424Z"} +2026/03/21 14:38:14 ───────────────────────────────────────────────── +2026/03/21 14:38:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:38:19 [log_collector] {"stage_name":"log_collector","events_processed":19339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3867.8,"last_update":"2026-03-21T14:38:14.068969431Z"} +2026/03/21 14:38:19 [metric_collector] {"stage_name":"metric_collector","events_processed":11964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2392.8,"last_update":"2026-03-21T14:38:14.06904156Z"} +2026/03/21 14:38:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:38:14.078251773Z"} +2026/03/21 14:38:19 [detection_layer] {"stage_name":"detection_layer","events_processed":398,"events_dropped":0,"avg_latency_ms":16.680056929159793,"throughput_eps":0,"last_update":"2026-03-21T14:38:14.210461549Z"} +2026/03/21 14:38:19 [transform_engine] {"stage_name":"transform_engine","events_processed":398,"events_dropped":0,"avg_latency_ms":711.9542625144051,"throughput_eps":0,"last_update":"2026-03-21T14:38:14.210479143Z"} +2026/03/21 14:38:19 ───────────────────────────────────────────────── +2026/03/21 14:38:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:38:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:38:19.079048158Z"} +2026/03/21 14:38:24 [detection_layer] {"stage_name":"detection_layer","events_processed":398,"events_dropped":0,"avg_latency_ms":16.680056929159793,"throughput_eps":0,"last_update":"2026-03-21T14:38:19.210166805Z"} +2026/03/21 14:38:24 [transform_engine] {"stage_name":"transform_engine","events_processed":398,"events_dropped":0,"avg_latency_ms":711.9542625144051,"throughput_eps":0,"last_update":"2026-03-21T14:38:19.210178076Z"} +2026/03/21 14:38:24 [log_collector] {"stage_name":"log_collector","events_processed":19339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3867.8,"last_update":"2026-03-21T14:38:19.068600093Z"} +2026/03/21 14:38:24 [metric_collector] {"stage_name":"metric_collector","events_processed":11969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2393.8,"last_update":"2026-03-21T14:38:19.068909426Z"} +2026/03/21 14:38:24 ───────────────────────────────────────────────── +2026/03/21 14:38:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:38:29 [log_collector] {"stage_name":"log_collector","events_processed":19339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3867.8,"last_update":"2026-03-21T14:38:24.068270586Z"} +2026/03/21 14:38:29 [metric_collector] {"stage_name":"metric_collector","events_processed":11974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2394.8,"last_update":"2026-03-21T14:38:24.06871084Z"} +2026/03/21 14:38:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:38:24.07755918Z"} +2026/03/21 14:38:29 [detection_layer] {"stage_name":"detection_layer","events_processed":399,"events_dropped":0,"avg_latency_ms":17.403762343327834,"throughput_eps":0,"last_update":"2026-03-21T14:38:24.210949107Z"} +2026/03/21 14:38:29 [transform_engine] {"stage_name":"transform_engine","events_processed":399,"events_dropped":0,"avg_latency_ms":580.314238611524,"throughput_eps":0,"last_update":"2026-03-21T14:38:24.209764328Z"} +2026/03/21 14:38:29 ───────────────────────────────────────────────── +2026/03/21 14:38:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:38:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:38:29.077722389Z"} +2026/03/21 14:38:34 [detection_layer] {"stage_name":"detection_layer","events_processed":399,"events_dropped":0,"avg_latency_ms":17.403762343327834,"throughput_eps":0,"last_update":"2026-03-21T14:38:29.210116808Z"} +2026/03/21 14:38:34 [transform_engine] {"stage_name":"transform_engine","events_processed":399,"events_dropped":0,"avg_latency_ms":580.314238611524,"throughput_eps":0,"last_update":"2026-03-21T14:38:29.21013333Z"} +2026/03/21 14:38:34 [log_collector] {"stage_name":"log_collector","events_processed":19339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3867.8,"last_update":"2026-03-21T14:38:29.068760501Z"} +2026/03/21 14:38:34 [metric_collector] {"stage_name":"metric_collector","events_processed":11979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2395.8,"last_update":"2026-03-21T14:38:29.069093499Z"} +2026/03/21 14:38:34 ───────────────────────────────────────────────── +Saved state: 17 clusters, 19340 messages, reason: none +2026/03/21 14:38:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:38:39 [transform_engine] {"stage_name":"transform_engine","events_processed":399,"events_dropped":0,"avg_latency_ms":580.314238611524,"throughput_eps":0,"last_update":"2026-03-21T14:38:34.21055052Z"} +2026/03/21 14:38:39 [log_collector] {"stage_name":"log_collector","events_processed":19339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3867.8,"last_update":"2026-03-21T14:38:34.068506205Z"} +2026/03/21 14:38:39 [metric_collector] {"stage_name":"metric_collector","events_processed":11984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2396.8,"last_update":"2026-03-21T14:38:34.068710546Z"} +2026/03/21 14:38:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4796,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:38:34.078289536Z"} +2026/03/21 14:38:39 [detection_layer] {"stage_name":"detection_layer","events_processed":399,"events_dropped":0,"avg_latency_ms":17.403762343327834,"throughput_eps":0,"last_update":"2026-03-21T14:38:34.210539951Z"} +2026/03/21 14:38:39 ───────────────────────────────────────────────── +2026/03/21 14:38:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:38:44 [log_collector] {"stage_name":"log_collector","events_processed":19342,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3868.4,"last_update":"2026-03-21T14:38:39.068146832Z"} +2026/03/21 14:38:44 [metric_collector] {"stage_name":"metric_collector","events_processed":11989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2397.8,"last_update":"2026-03-21T14:38:39.068494007Z"} +2026/03/21 14:38:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:38:39.077368878Z"} +2026/03/21 14:38:44 [detection_layer] {"stage_name":"detection_layer","events_processed":399,"events_dropped":0,"avg_latency_ms":17.403762343327834,"throughput_eps":0,"last_update":"2026-03-21T14:38:39.210628235Z"} +2026/03/21 14:38:44 [transform_engine] {"stage_name":"transform_engine","events_processed":399,"events_dropped":0,"avg_latency_ms":580.314238611524,"throughput_eps":0,"last_update":"2026-03-21T14:38:39.21063594Z"} +2026/03/21 14:38:44 ───────────────────────────────────────────────── +2026/03/21 14:38:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:38:49 [log_collector] {"stage_name":"log_collector","events_processed":19353,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3870.6,"last_update":"2026-03-21T14:38:44.06899155Z"} +2026/03/21 14:38:49 [metric_collector] {"stage_name":"metric_collector","events_processed":11994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2398.8,"last_update":"2026-03-21T14:38:44.069190871Z"} +2026/03/21 14:38:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4800,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:38:44.078070071Z"} +2026/03/21 14:38:49 [detection_layer] {"stage_name":"detection_layer","events_processed":399,"events_dropped":0,"avg_latency_ms":17.403762343327834,"throughput_eps":0,"last_update":"2026-03-21T14:38:44.210311998Z"} +2026/03/21 14:38:49 [transform_engine] {"stage_name":"transform_engine","events_processed":399,"events_dropped":0,"avg_latency_ms":580.314238611524,"throughput_eps":0,"last_update":"2026-03-21T14:38:44.210332718Z"} +2026/03/21 14:38:49 ───────────────────────────────────────────────── +2026/03/21 14:38:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:38:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4802,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:38:49.074980988Z"} +2026/03/21 14:38:54 [detection_layer] {"stage_name":"detection_layer","events_processed":399,"events_dropped":0,"avg_latency_ms":17.403762343327834,"throughput_eps":0,"last_update":"2026-03-21T14:38:49.210391796Z"} +2026/03/21 14:38:54 [transform_engine] {"stage_name":"transform_engine","events_processed":400,"events_dropped":0,"avg_latency_ms":486.7289116892192,"throughput_eps":0,"last_update":"2026-03-21T14:38:49.322616117Z"} +2026/03/21 14:38:54 [log_collector] {"stage_name":"log_collector","events_processed":19353,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3870.6,"last_update":"2026-03-21T14:38:49.068140454Z"} +2026/03/21 14:38:54 [metric_collector] {"stage_name":"metric_collector","events_processed":11999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2399.8,"last_update":"2026-03-21T14:38:49.068741515Z"} +2026/03/21 14:38:54 ───────────────────────────────────────────────── +2026/03/21 14:38:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:38:59 [log_collector] {"stage_name":"log_collector","events_processed":19353,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3870.6,"last_update":"2026-03-21T14:38:54.068662041Z"} +2026/03/21 14:38:59 [metric_collector] {"stage_name":"metric_collector","events_processed":12004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2400.8,"last_update":"2026-03-21T14:38:54.068971523Z"} +2026/03/21 14:38:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:38:54.077117097Z"} +2026/03/21 14:38:59 [detection_layer] {"stage_name":"detection_layer","events_processed":400,"events_dropped":0,"avg_latency_ms":17.46000147466227,"throughput_eps":0,"last_update":"2026-03-21T14:38:54.210673493Z"} +2026/03/21 14:38:59 [transform_engine] {"stage_name":"transform_engine","events_processed":400,"events_dropped":0,"avg_latency_ms":486.7289116892192,"throughput_eps":0,"last_update":"2026-03-21T14:38:54.210569333Z"} +2026/03/21 14:38:59 ───────────────────────────────────────────────── +2026/03/21 14:39:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:39:04 [transform_engine] {"stage_name":"transform_engine","events_processed":400,"events_dropped":0,"avg_latency_ms":486.7289116892192,"throughput_eps":0,"last_update":"2026-03-21T14:38:59.209788552Z"} +2026/03/21 14:39:04 [log_collector] {"stage_name":"log_collector","events_processed":19353,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3870.6,"last_update":"2026-03-21T14:38:59.068107002Z"} +2026/03/21 14:39:04 [metric_collector] {"stage_name":"metric_collector","events_processed":12009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2401.8,"last_update":"2026-03-21T14:38:59.068452473Z"} +2026/03/21 14:39:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:38:59.078575445Z"} +2026/03/21 14:39:04 [detection_layer] {"stage_name":"detection_layer","events_processed":400,"events_dropped":0,"avg_latency_ms":17.46000147466227,"throughput_eps":0,"last_update":"2026-03-21T14:38:59.209855861Z"} +2026/03/21 14:39:04 ───────────────────────────────────────────────── +2026/03/21 14:39:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:39:09 [detection_layer] {"stage_name":"detection_layer","events_processed":400,"events_dropped":0,"avg_latency_ms":17.46000147466227,"throughput_eps":0,"last_update":"2026-03-21T14:39:04.210586777Z"} +2026/03/21 14:39:09 [transform_engine] {"stage_name":"transform_engine","events_processed":400,"events_dropped":0,"avg_latency_ms":486.7289116892192,"throughput_eps":0,"last_update":"2026-03-21T14:39:04.210472108Z"} +2026/03/21 14:39:09 [log_collector] {"stage_name":"log_collector","events_processed":19353,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3870.6,"last_update":"2026-03-21T14:39:04.068886121Z"} +2026/03/21 14:39:09 [metric_collector] {"stage_name":"metric_collector","events_processed":12014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2402.8,"last_update":"2026-03-21T14:39:04.069263935Z"} +2026/03/21 14:39:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:39:04.078145859Z"} +2026/03/21 14:39:09 ───────────────────────────────────────────────── +2026/03/21 14:39:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:39:14 [log_collector] {"stage_name":"log_collector","events_processed":19353,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3870.6,"last_update":"2026-03-21T14:39:09.068853482Z"} +2026/03/21 14:39:14 [metric_collector] {"stage_name":"metric_collector","events_processed":12019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2403.8,"last_update":"2026-03-21T14:39:09.069145041Z"} +2026/03/21 14:39:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:39:09.07801911Z"} +2026/03/21 14:39:14 [detection_layer] {"stage_name":"detection_layer","events_processed":400,"events_dropped":0,"avg_latency_ms":17.46000147466227,"throughput_eps":0,"last_update":"2026-03-21T14:39:09.210421073Z"} +2026/03/21 14:39:14 [transform_engine] {"stage_name":"transform_engine","events_processed":400,"events_dropped":0,"avg_latency_ms":486.7289116892192,"throughput_eps":0,"last_update":"2026-03-21T14:39:09.210463395Z"} +2026/03/21 14:39:14 ───────────────────────────────────────────────── +2026/03/21 14:39:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:39:19 [detection_layer] {"stage_name":"detection_layer","events_processed":400,"events_dropped":0,"avg_latency_ms":17.46000147466227,"throughput_eps":0,"last_update":"2026-03-21T14:39:14.210837568Z"} +2026/03/21 14:39:19 [transform_engine] {"stage_name":"transform_engine","events_processed":400,"events_dropped":0,"avg_latency_ms":486.7289116892192,"throughput_eps":0,"last_update":"2026-03-21T14:39:14.209742029Z"} +2026/03/21 14:39:19 [log_collector] {"stage_name":"log_collector","events_processed":19353,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3870.6,"last_update":"2026-03-21T14:39:19.068390855Z"} +2026/03/21 14:39:19 [metric_collector] {"stage_name":"metric_collector","events_processed":12024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2404.8,"last_update":"2026-03-21T14:39:14.069153634Z"} +2026/03/21 14:39:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4812,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:39:14.075526703Z"} +2026/03/21 14:39:19 ───────────────────────────────────────────────── +2026/03/21 14:39:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:39:24 [metric_collector] {"stage_name":"metric_collector","events_processed":12029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2405.8,"last_update":"2026-03-21T14:39:19.068799388Z"} +2026/03/21 14:39:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:39:19.076043394Z"} +2026/03/21 14:39:24 [detection_layer] {"stage_name":"detection_layer","events_processed":400,"events_dropped":0,"avg_latency_ms":17.46000147466227,"throughput_eps":0,"last_update":"2026-03-21T14:39:19.210265113Z"} +2026/03/21 14:39:24 [transform_engine] {"stage_name":"transform_engine","events_processed":401,"events_dropped":0,"avg_latency_ms":404.0470099513754,"throughput_eps":0,"last_update":"2026-03-21T14:39:19.283609694Z"} +2026/03/21 14:39:24 [log_collector] {"stage_name":"log_collector","events_processed":19353,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3870.6,"last_update":"2026-03-21T14:39:19.068390855Z"} +2026/03/21 14:39:24 ───────────────────────────────────────────────── +2026/03/21 14:39:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:39:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4816,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:39:24.078393554Z"} +2026/03/21 14:39:29 [detection_layer] {"stage_name":"detection_layer","events_processed":401,"events_dropped":0,"avg_latency_ms":17.29788017972982,"throughput_eps":0,"last_update":"2026-03-21T14:39:24.210453852Z"} +2026/03/21 14:39:29 [transform_engine] {"stage_name":"transform_engine","events_processed":401,"events_dropped":0,"avg_latency_ms":404.0470099513754,"throughput_eps":0,"last_update":"2026-03-21T14:39:24.210430898Z"} +2026/03/21 14:39:29 [log_collector] {"stage_name":"log_collector","events_processed":19353,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3870.6,"last_update":"2026-03-21T14:39:24.06895916Z"} +2026/03/21 14:39:29 [metric_collector] {"stage_name":"metric_collector","events_processed":12034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2406.8,"last_update":"2026-03-21T14:39:24.069124126Z"} +2026/03/21 14:39:29 ───────────────────────────────────────────────── +2026/03/21 14:39:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:39:34 [metric_collector] {"stage_name":"metric_collector","events_processed":12039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2407.8,"last_update":"2026-03-21T14:39:29.069179163Z"} +2026/03/21 14:39:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4818,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:39:29.078245541Z"} +2026/03/21 14:39:34 [detection_layer] {"stage_name":"detection_layer","events_processed":401,"events_dropped":0,"avg_latency_ms":17.29788017972982,"throughput_eps":0,"last_update":"2026-03-21T14:39:29.210674456Z"} +2026/03/21 14:39:34 [transform_engine] {"stage_name":"transform_engine","events_processed":401,"events_dropped":0,"avg_latency_ms":404.0470099513754,"throughput_eps":0,"last_update":"2026-03-21T14:39:29.210579935Z"} +2026/03/21 14:39:34 [log_collector] {"stage_name":"log_collector","events_processed":19353,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3870.6,"last_update":"2026-03-21T14:39:29.068913665Z"} +2026/03/21 14:39:34 ───────────────────────────────────────────────── +2026/03/21 14:39:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:39:39 [log_collector] {"stage_name":"log_collector","events_processed":19353,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3870.6,"last_update":"2026-03-21T14:39:34.06880433Z"} +2026/03/21 14:39:39 [metric_collector] {"stage_name":"metric_collector","events_processed":12044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2408.8,"last_update":"2026-03-21T14:39:34.068954047Z"} +2026/03/21 14:39:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4820,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:39:34.077822055Z"} +2026/03/21 14:39:39 [detection_layer] {"stage_name":"detection_layer","events_processed":401,"events_dropped":0,"avg_latency_ms":17.29788017972982,"throughput_eps":0,"last_update":"2026-03-21T14:39:34.2103296Z"} +2026/03/21 14:39:39 [transform_engine] {"stage_name":"transform_engine","events_processed":401,"events_dropped":0,"avg_latency_ms":404.0470099513754,"throughput_eps":0,"last_update":"2026-03-21T14:39:34.210211003Z"} +2026/03/21 14:39:39 ───────────────────────────────────────────────── +2026/03/21 14:39:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:39:44 [log_collector] {"stage_name":"log_collector","events_processed":19353,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3870.6,"last_update":"2026-03-21T14:39:44.068411674Z"} +2026/03/21 14:39:44 [metric_collector] {"stage_name":"metric_collector","events_processed":12049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2409.8,"last_update":"2026-03-21T14:39:39.068910785Z"} +2026/03/21 14:39:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:39:39.078653629Z"} +2026/03/21 14:39:44 [detection_layer] {"stage_name":"detection_layer","events_processed":401,"events_dropped":0,"avg_latency_ms":17.29788017972982,"throughput_eps":0,"last_update":"2026-03-21T14:39:39.210039174Z"} +2026/03/21 14:39:44 [transform_engine] {"stage_name":"transform_engine","events_processed":401,"events_dropped":0,"avg_latency_ms":404.0470099513754,"throughput_eps":0,"last_update":"2026-03-21T14:39:39.210077769Z"} +2026/03/21 14:39:44 ───────────────────────────────────────────────── +Saved state: 17 clusters, 19354 messages, reason: none +2026/03/21 14:39:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:39:49 [detection_layer] {"stage_name":"detection_layer","events_processed":401,"events_dropped":0,"avg_latency_ms":17.29788017972982,"throughput_eps":0,"last_update":"2026-03-21T14:39:44.210371035Z"} +2026/03/21 14:39:49 [transform_engine] {"stage_name":"transform_engine","events_processed":401,"events_dropped":0,"avg_latency_ms":404.0470099513754,"throughput_eps":0,"last_update":"2026-03-21T14:39:44.210452872Z"} +2026/03/21 14:39:49 [log_collector] {"stage_name":"log_collector","events_processed":19353,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3870.6,"last_update":"2026-03-21T14:39:44.068411674Z"} +2026/03/21 14:39:49 [metric_collector] {"stage_name":"metric_collector","events_processed":12054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2410.8,"last_update":"2026-03-21T14:39:44.068823713Z"} +2026/03/21 14:39:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:39:44.078141503Z"} +2026/03/21 14:39:49 ───────────────────────────────────────────────── +2026/03/21 14:39:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:39:54 [log_collector] {"stage_name":"log_collector","events_processed":19358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3871.6,"last_update":"2026-03-21T14:39:49.068759781Z"} +2026/03/21 14:39:54 [metric_collector] {"stage_name":"metric_collector","events_processed":12059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2411.8,"last_update":"2026-03-21T14:39:49.068967529Z"} +2026/03/21 14:39:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4826,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:39:49.075685278Z"} +2026/03/21 14:39:54 [detection_layer] {"stage_name":"detection_layer","events_processed":401,"events_dropped":0,"avg_latency_ms":17.29788017972982,"throughput_eps":0,"last_update":"2026-03-21T14:39:49.209884102Z"} +2026/03/21 14:39:54 [transform_engine] {"stage_name":"transform_engine","events_processed":402,"events_dropped":0,"avg_latency_ms":744.9058515611005,"throughput_eps":0,"last_update":"2026-03-21T14:39:51.318205432Z"} +2026/03/21 14:39:54 ───────────────────────────────────────────────── +2026/03/21 14:39:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:39:59 [log_collector] {"stage_name":"log_collector","events_processed":19358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3871.6,"last_update":"2026-03-21T14:39:54.068753576Z"} +2026/03/21 14:39:59 [metric_collector] {"stage_name":"metric_collector","events_processed":12064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2412.8,"last_update":"2026-03-21T14:39:54.068741322Z"} +2026/03/21 14:39:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:39:54.075362175Z"} +2026/03/21 14:39:59 [detection_layer] {"stage_name":"detection_layer","events_processed":402,"events_dropped":0,"avg_latency_ms":17.00349334378386,"throughput_eps":0,"last_update":"2026-03-21T14:39:54.210567498Z"} +2026/03/21 14:39:59 [transform_engine] {"stage_name":"transform_engine","events_processed":402,"events_dropped":0,"avg_latency_ms":744.9058515611005,"throughput_eps":0,"last_update":"2026-03-21T14:39:54.210609248Z"} +2026/03/21 14:39:59 ───────────────────────────────────────────────── +2026/03/21 14:40:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:40:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4830,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:39:59.075678563Z"} +2026/03/21 14:40:04 [detection_layer] {"stage_name":"detection_layer","events_processed":402,"events_dropped":0,"avg_latency_ms":17.00349334378386,"throughput_eps":0,"last_update":"2026-03-21T14:39:59.210004231Z"} +2026/03/21 14:40:04 [transform_engine] {"stage_name":"transform_engine","events_processed":402,"events_dropped":0,"avg_latency_ms":744.9058515611005,"throughput_eps":0,"last_update":"2026-03-21T14:39:59.209934587Z"} +2026/03/21 14:40:04 [log_collector] {"stage_name":"log_collector","events_processed":19358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3871.6,"last_update":"2026-03-21T14:39:59.068909947Z"} +2026/03/21 14:40:04 [metric_collector] {"stage_name":"metric_collector","events_processed":12069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2413.8,"last_update":"2026-03-21T14:39:59.069143133Z"} +2026/03/21 14:40:04 ───────────────────────────────────────────────── +2026/03/21 14:40:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:40:09 [detection_layer] {"stage_name":"detection_layer","events_processed":402,"events_dropped":0,"avg_latency_ms":17.00349334378386,"throughput_eps":0,"last_update":"2026-03-21T14:40:04.210132672Z"} +2026/03/21 14:40:09 [transform_engine] {"stage_name":"transform_engine","events_processed":402,"events_dropped":0,"avg_latency_ms":744.9058515611005,"throughput_eps":0,"last_update":"2026-03-21T14:40:04.210150647Z"} +2026/03/21 14:40:09 [log_collector] {"stage_name":"log_collector","events_processed":19358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3871.6,"last_update":"2026-03-21T14:40:04.068842955Z"} +2026/03/21 14:40:09 [metric_collector] {"stage_name":"metric_collector","events_processed":12074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2414.8,"last_update":"2026-03-21T14:40:04.069094176Z"} +2026/03/21 14:40:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4832,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:40:04.086889465Z"} +2026/03/21 14:40:09 ───────────────────────────────────────────────── +2026/03/21 14:40:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:40:14 [log_collector] {"stage_name":"log_collector","events_processed":19358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3871.6,"last_update":"2026-03-21T14:40:09.070396203Z"} +2026/03/21 14:40:14 [metric_collector] {"stage_name":"metric_collector","events_processed":12079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2415.8,"last_update":"2026-03-21T14:40:09.070726796Z"} +2026/03/21 14:40:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:40:09.07852256Z"} +2026/03/21 14:40:14 [detection_layer] {"stage_name":"detection_layer","events_processed":402,"events_dropped":0,"avg_latency_ms":17.00349334378386,"throughput_eps":0,"last_update":"2026-03-21T14:40:09.210957605Z"} +2026/03/21 14:40:14 [transform_engine] {"stage_name":"transform_engine","events_processed":402,"events_dropped":0,"avg_latency_ms":744.9058515611005,"throughput_eps":0,"last_update":"2026-03-21T14:40:09.209720164Z"} +2026/03/21 14:40:14 ───────────────────────────────────────────────── +2026/03/21 14:40:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:40:19 [detection_layer] {"stage_name":"detection_layer","events_processed":402,"events_dropped":0,"avg_latency_ms":17.00349334378386,"throughput_eps":0,"last_update":"2026-03-21T14:40:14.21065367Z"} +2026/03/21 14:40:19 [transform_engine] {"stage_name":"transform_engine","events_processed":402,"events_dropped":0,"avg_latency_ms":744.9058515611005,"throughput_eps":0,"last_update":"2026-03-21T14:40:14.210680923Z"} +2026/03/21 14:40:19 [log_collector] {"stage_name":"log_collector","events_processed":19358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3871.6,"last_update":"2026-03-21T14:40:14.068133115Z"} +2026/03/21 14:40:19 [metric_collector] {"stage_name":"metric_collector","events_processed":12084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2416.8,"last_update":"2026-03-21T14:40:14.068383385Z"} +2026/03/21 14:40:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:40:14.077416168Z"} +2026/03/21 14:40:19 ───────────────────────────────────────────────── +2026/03/21 14:40:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:40:24 [metric_collector] {"stage_name":"metric_collector","events_processed":12089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2417.8,"last_update":"2026-03-21T14:40:19.068778162Z"} +2026/03/21 14:40:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:40:19.077225885Z"} +2026/03/21 14:40:24 [detection_layer] {"stage_name":"detection_layer","events_processed":402,"events_dropped":0,"avg_latency_ms":17.00349334378386,"throughput_eps":0,"last_update":"2026-03-21T14:40:19.210444492Z"} +2026/03/21 14:40:24 [transform_engine] {"stage_name":"transform_engine","events_processed":403,"events_dropped":0,"avg_latency_ms":1239.7358312488805,"throughput_eps":0,"last_update":"2026-03-21T14:40:22.42953106Z"} +2026/03/21 14:40:24 [log_collector] {"stage_name":"log_collector","events_processed":19358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3871.6,"last_update":"2026-03-21T14:40:24.068385037Z"} +2026/03/21 14:40:24 ───────────────────────────────────────────────── +2026/03/21 14:40:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:40:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:40:24.07980813Z"} +2026/03/21 14:40:29 [detection_layer] {"stage_name":"detection_layer","events_processed":403,"events_dropped":0,"avg_latency_ms":17.142134675027087,"throughput_eps":0,"last_update":"2026-03-21T14:40:24.209897851Z"} +2026/03/21 14:40:29 [transform_engine] {"stage_name":"transform_engine","events_processed":403,"events_dropped":0,"avg_latency_ms":1239.7358312488805,"throughput_eps":0,"last_update":"2026-03-21T14:40:24.209885949Z"} +2026/03/21 14:40:29 [log_collector] {"stage_name":"log_collector","events_processed":19358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3871.6,"last_update":"2026-03-21T14:40:24.068385037Z"} +2026/03/21 14:40:29 [metric_collector] {"stage_name":"metric_collector","events_processed":12094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2418.8,"last_update":"2026-03-21T14:40:24.068687196Z"} +2026/03/21 14:40:29 ───────────────────────────────────────────────── +2026/03/21 14:40:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:40:34 [log_collector] {"stage_name":"log_collector","events_processed":19361,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3872.2,"last_update":"2026-03-21T14:40:29.068666159Z"} +2026/03/21 14:40:34 [metric_collector] {"stage_name":"metric_collector","events_processed":12099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2419.8,"last_update":"2026-03-21T14:40:29.068890388Z"} +2026/03/21 14:40:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:40:29.075114721Z"} +2026/03/21 14:40:34 [detection_layer] {"stage_name":"detection_layer","events_processed":403,"events_dropped":0,"avg_latency_ms":17.142134675027087,"throughput_eps":0,"last_update":"2026-03-21T14:40:29.21050651Z"} +2026/03/21 14:40:34 [transform_engine] {"stage_name":"transform_engine","events_processed":403,"events_dropped":0,"avg_latency_ms":1239.7358312488805,"throughput_eps":0,"last_update":"2026-03-21T14:40:29.210526047Z"} +2026/03/21 14:40:34 ───────────────────────────────────────────────── +2026/03/21 14:40:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:40:39 [log_collector] {"stage_name":"log_collector","events_processed":19369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3873.8,"last_update":"2026-03-21T14:40:34.068672738Z"} +2026/03/21 14:40:39 [metric_collector] {"stage_name":"metric_collector","events_processed":12104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2420.8,"last_update":"2026-03-21T14:40:34.069124523Z"} +2026/03/21 14:40:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:40:34.078710766Z"} +2026/03/21 14:40:39 [detection_layer] {"stage_name":"detection_layer","events_processed":403,"events_dropped":0,"avg_latency_ms":17.142134675027087,"throughput_eps":0,"last_update":"2026-03-21T14:40:34.210142369Z"} +2026/03/21 14:40:39 [transform_engine] {"stage_name":"transform_engine","events_processed":403,"events_dropped":0,"avg_latency_ms":1239.7358312488805,"throughput_eps":0,"last_update":"2026-03-21T14:40:34.210098967Z"} +2026/03/21 14:40:39 ───────────────────────────────────────────────── +2026/03/21 14:40:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:40:44 [log_collector] {"stage_name":"log_collector","events_processed":19514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3902.8,"last_update":"2026-03-21T14:40:39.068150432Z"} +2026/03/21 14:40:44 [metric_collector] {"stage_name":"metric_collector","events_processed":12109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2421.8,"last_update":"2026-03-21T14:40:39.068287535Z"} +2026/03/21 14:40:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:40:39.076759073Z"} +2026/03/21 14:40:44 [detection_layer] {"stage_name":"detection_layer","events_processed":403,"events_dropped":0,"avg_latency_ms":17.142134675027087,"throughput_eps":0,"last_update":"2026-03-21T14:40:39.210544615Z"} +2026/03/21 14:40:44 [transform_engine] {"stage_name":"transform_engine","events_processed":403,"events_dropped":0,"avg_latency_ms":1239.7358312488805,"throughput_eps":0,"last_update":"2026-03-21T14:40:39.210555505Z"} +2026/03/21 14:40:44 ───────────────────────────────────────────────── +2026/03/21 14:40:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:40:49 [log_collector] {"stage_name":"log_collector","events_processed":19686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3937.2,"last_update":"2026-03-21T14:40:44.068837568Z"} +2026/03/21 14:40:49 [metric_collector] {"stage_name":"metric_collector","events_processed":12114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2422.8,"last_update":"2026-03-21T14:40:44.069156899Z"} +2026/03/21 14:40:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4848,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:40:44.08147163Z"} +2026/03/21 14:40:49 [detection_layer] {"stage_name":"detection_layer","events_processed":403,"events_dropped":0,"avg_latency_ms":17.142134675027087,"throughput_eps":0,"last_update":"2026-03-21T14:40:44.209908204Z"} +2026/03/21 14:40:49 [transform_engine] {"stage_name":"transform_engine","events_processed":403,"events_dropped":0,"avg_latency_ms":1239.7358312488805,"throughput_eps":0,"last_update":"2026-03-21T14:40:44.209924866Z"} +2026/03/21 14:40:49 ───────────────────────────────────────────────── +2026/03/21 14:40:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:40:54 [log_collector] {"stage_name":"log_collector","events_processed":19716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3943.2,"last_update":"2026-03-21T14:40:49.068675622Z"} +2026/03/21 14:40:54 [metric_collector] {"stage_name":"metric_collector","events_processed":12119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2423.8,"last_update":"2026-03-21T14:40:49.068893008Z"} +2026/03/21 14:40:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:40:49.077640384Z"} +2026/03/21 14:40:54 [detection_layer] {"stage_name":"detection_layer","events_processed":403,"events_dropped":0,"avg_latency_ms":17.142134675027087,"throughput_eps":0,"last_update":"2026-03-21T14:40:49.209958455Z"} +2026/03/21 14:40:54 [transform_engine] {"stage_name":"transform_engine","events_processed":404,"events_dropped":0,"avg_latency_ms":1015.7289993991044,"throughput_eps":0,"last_update":"2026-03-21T14:40:49.329716325Z"} +2026/03/21 14:40:54 ───────────────────────────────────────────────── +2026/03/21 14:40:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:40:59 [metric_collector] {"stage_name":"metric_collector","events_processed":12124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2424.8,"last_update":"2026-03-21T14:40:54.069132106Z"} +2026/03/21 14:40:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:40:54.077563687Z"} +2026/03/21 14:40:59 [detection_layer] {"stage_name":"detection_layer","events_processed":404,"events_dropped":0,"avg_latency_ms":17.45149194002167,"throughput_eps":0,"last_update":"2026-03-21T14:40:54.210820015Z"} +2026/03/21 14:40:59 [transform_engine] {"stage_name":"transform_engine","events_processed":404,"events_dropped":0,"avg_latency_ms":1015.7289993991044,"throughput_eps":0,"last_update":"2026-03-21T14:40:54.209723925Z"} +2026/03/21 14:40:59 [log_collector] {"stage_name":"log_collector","events_processed":19716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3943.2,"last_update":"2026-03-21T14:40:54.068901013Z"} +2026/03/21 14:40:59 ───────────────────────────────────────────────── +2026/03/21 14:41:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:41:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:40:59.078183022Z"} +2026/03/21 14:41:04 [detection_layer] {"stage_name":"detection_layer","events_processed":404,"events_dropped":0,"avg_latency_ms":17.45149194002167,"throughput_eps":0,"last_update":"2026-03-21T14:40:59.210423161Z"} +2026/03/21 14:41:04 [transform_engine] {"stage_name":"transform_engine","events_processed":404,"events_dropped":0,"avg_latency_ms":1015.7289993991044,"throughput_eps":0,"last_update":"2026-03-21T14:40:59.210433942Z"} +2026/03/21 14:41:04 [log_collector] {"stage_name":"log_collector","events_processed":19716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3943.2,"last_update":"2026-03-21T14:40:59.068603251Z"} +2026/03/21 14:41:04 [metric_collector] {"stage_name":"metric_collector","events_processed":12129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2425.8,"last_update":"2026-03-21T14:40:59.068960074Z"} +2026/03/21 14:41:04 ───────────────────────────────────────────────── +2026/03/21 14:41:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:41:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:41:04.078269237Z"} +2026/03/21 14:41:09 [detection_layer] {"stage_name":"detection_layer","events_processed":404,"events_dropped":0,"avg_latency_ms":17.45149194002167,"throughput_eps":0,"last_update":"2026-03-21T14:41:04.210661911Z"} +2026/03/21 14:41:09 [transform_engine] {"stage_name":"transform_engine","events_processed":404,"events_dropped":0,"avg_latency_ms":1015.7289993991044,"throughput_eps":0,"last_update":"2026-03-21T14:41:04.21067755Z"} +2026/03/21 14:41:09 [log_collector] {"stage_name":"log_collector","events_processed":19716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3943.2,"last_update":"2026-03-21T14:41:04.068835887Z"} +2026/03/21 14:41:09 [metric_collector] {"stage_name":"metric_collector","events_processed":12134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2426.8,"last_update":"2026-03-21T14:41:04.069618436Z"} +2026/03/21 14:41:09 ───────────────────────────────────────────────── +2026/03/21 14:41:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:41:14 [log_collector] {"stage_name":"log_collector","events_processed":19716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3943.2,"last_update":"2026-03-21T14:41:09.068689835Z"} +2026/03/21 14:41:14 [metric_collector] {"stage_name":"metric_collector","events_processed":12139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2427.8,"last_update":"2026-03-21T14:41:09.068771312Z"} +2026/03/21 14:41:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:41:09.080106946Z"} +2026/03/21 14:41:14 [detection_layer] {"stage_name":"detection_layer","events_processed":404,"events_dropped":0,"avg_latency_ms":17.45149194002167,"throughput_eps":0,"last_update":"2026-03-21T14:41:09.210368817Z"} +2026/03/21 14:41:14 [transform_engine] {"stage_name":"transform_engine","events_processed":404,"events_dropped":0,"avg_latency_ms":1015.7289993991044,"throughput_eps":0,"last_update":"2026-03-21T14:41:09.210379868Z"} +2026/03/21 14:41:14 ───────────────────────────────────────────────── +2026/03/21 14:41:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:41:19 [log_collector] {"stage_name":"log_collector","events_processed":19716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3943.2,"last_update":"2026-03-21T14:41:14.06805399Z"} +2026/03/21 14:41:19 [metric_collector] {"stage_name":"metric_collector","events_processed":12144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2428.8,"last_update":"2026-03-21T14:41:14.068582263Z"} +2026/03/21 14:41:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4860,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:41:14.078506042Z"} +2026/03/21 14:41:19 [detection_layer] {"stage_name":"detection_layer","events_processed":404,"events_dropped":0,"avg_latency_ms":17.45149194002167,"throughput_eps":0,"last_update":"2026-03-21T14:41:14.210887745Z"} +2026/03/21 14:41:19 [transform_engine] {"stage_name":"transform_engine","events_processed":404,"events_dropped":0,"avg_latency_ms":1015.7289993991044,"throughput_eps":0,"last_update":"2026-03-21T14:41:14.209681805Z"} +2026/03/21 14:41:19 ───────────────────────────────────────────────── +2026/03/21 14:41:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:41:24 [log_collector] {"stage_name":"log_collector","events_processed":19716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3943.2,"last_update":"2026-03-21T14:41:19.06860254Z"} +2026/03/21 14:41:24 [metric_collector] {"stage_name":"metric_collector","events_processed":12149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2429.8,"last_update":"2026-03-21T14:41:19.068951208Z"} +2026/03/21 14:41:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4862,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:41:19.078853056Z"} +2026/03/21 14:41:24 [detection_layer] {"stage_name":"detection_layer","events_processed":404,"events_dropped":0,"avg_latency_ms":17.45149194002167,"throughput_eps":0,"last_update":"2026-03-21T14:41:19.210125452Z"} +2026/03/21 14:41:24 [transform_engine] {"stage_name":"transform_engine","events_processed":404,"events_dropped":0,"avg_latency_ms":1015.7289993991044,"throughput_eps":0,"last_update":"2026-03-21T14:41:19.210137605Z"} +2026/03/21 14:41:24 ───────────────────────────────────────────────── +2026/03/21 14:41:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:41:29 [log_collector] {"stage_name":"log_collector","events_processed":19716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3943.2,"last_update":"2026-03-21T14:41:24.068593146Z"} +2026/03/21 14:41:29 [metric_collector] {"stage_name":"metric_collector","events_processed":12154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2430.8,"last_update":"2026-03-21T14:41:24.068930433Z"} +2026/03/21 14:41:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:41:24.077617554Z"} +2026/03/21 14:41:29 [detection_layer] {"stage_name":"detection_layer","events_processed":405,"events_dropped":0,"avg_latency_ms":18.238306752017337,"throughput_eps":0,"last_update":"2026-03-21T14:41:24.210874933Z"} +2026/03/21 14:41:29 [transform_engine] {"stage_name":"transform_engine","events_processed":405,"events_dropped":0,"avg_latency_ms":827.9170811192836,"throughput_eps":0,"last_update":"2026-03-21T14:41:24.20976667Z"} +2026/03/21 14:41:29 ───────────────────────────────────────────────── +2026/03/21 14:41:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:41:34 [log_collector] {"stage_name":"log_collector","events_processed":19716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3943.2,"last_update":"2026-03-21T14:41:29.068695724Z"} +2026/03/21 14:41:34 [metric_collector] {"stage_name":"metric_collector","events_processed":12159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2431.8,"last_update":"2026-03-21T14:41:29.069056976Z"} +2026/03/21 14:41:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:41:29.078091141Z"} +2026/03/21 14:41:34 [detection_layer] {"stage_name":"detection_layer","events_processed":405,"events_dropped":0,"avg_latency_ms":18.238306752017337,"throughput_eps":0,"last_update":"2026-03-21T14:41:29.210412697Z"} +2026/03/21 14:41:34 [transform_engine] {"stage_name":"transform_engine","events_processed":405,"events_dropped":0,"avg_latency_ms":827.9170811192836,"throughput_eps":0,"last_update":"2026-03-21T14:41:29.210424751Z"} +2026/03/21 14:41:34 ───────────────────────────────────────────────── +2026/03/21 14:41:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:41:39 [metric_collector] {"stage_name":"metric_collector","events_processed":12164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2432.8,"last_update":"2026-03-21T14:41:34.06851833Z"} +2026/03/21 14:41:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4868,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:41:34.078559815Z"} +2026/03/21 14:41:39 [detection_layer] {"stage_name":"detection_layer","events_processed":405,"events_dropped":0,"avg_latency_ms":18.238306752017337,"throughput_eps":0,"last_update":"2026-03-21T14:41:34.2108862Z"} +2026/03/21 14:41:39 [transform_engine] {"stage_name":"transform_engine","events_processed":405,"events_dropped":0,"avg_latency_ms":827.9170811192836,"throughput_eps":0,"last_update":"2026-03-21T14:41:34.209745665Z"} +2026/03/21 14:41:39 [log_collector] {"stage_name":"log_collector","events_processed":19716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3943.2,"last_update":"2026-03-21T14:41:39.068287029Z"} +2026/03/21 14:41:39 ───────────────────────────────────────────────── +2026/03/21 14:41:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:41:44 [log_collector] {"stage_name":"log_collector","events_processed":19716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3943.2,"last_update":"2026-03-21T14:41:39.068287029Z"} +2026/03/21 14:41:44 [metric_collector] {"stage_name":"metric_collector","events_processed":12169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2433.8,"last_update":"2026-03-21T14:41:39.069067004Z"} +2026/03/21 14:41:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:41:39.078126548Z"} +2026/03/21 14:41:44 [detection_layer] {"stage_name":"detection_layer","events_processed":405,"events_dropped":0,"avg_latency_ms":18.238306752017337,"throughput_eps":0,"last_update":"2026-03-21T14:41:39.210382739Z"} +2026/03/21 14:41:44 [transform_engine] {"stage_name":"transform_engine","events_processed":405,"events_dropped":0,"avg_latency_ms":827.9170811192836,"throughput_eps":0,"last_update":"2026-03-21T14:41:39.210395022Z"} +2026/03/21 14:41:44 ───────────────────────────────────────────────── +2026/03/21 14:41:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:41:49 [log_collector] {"stage_name":"log_collector","events_processed":19716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3943.2,"last_update":"2026-03-21T14:41:44.068084049Z"} +2026/03/21 14:41:49 [metric_collector] {"stage_name":"metric_collector","events_processed":12174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2434.8,"last_update":"2026-03-21T14:41:44.068665363Z"} +2026/03/21 14:41:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:41:44.078706879Z"} +2026/03/21 14:41:49 [detection_layer] {"stage_name":"detection_layer","events_processed":405,"events_dropped":0,"avg_latency_ms":18.238306752017337,"throughput_eps":0,"last_update":"2026-03-21T14:41:44.210915999Z"} +2026/03/21 14:41:49 [transform_engine] {"stage_name":"transform_engine","events_processed":405,"events_dropped":0,"avg_latency_ms":827.9170811192836,"throughput_eps":0,"last_update":"2026-03-21T14:41:44.209766827Z"} +2026/03/21 14:41:49 ───────────────────────────────────────────────── +2026/03/21 14:41:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:41:54 [log_collector] {"stage_name":"log_collector","events_processed":19716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3943.2,"last_update":"2026-03-21T14:41:49.068166741Z"} +2026/03/21 14:41:54 [metric_collector] {"stage_name":"metric_collector","events_processed":12179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2435.8,"last_update":"2026-03-21T14:41:49.068835032Z"} +2026/03/21 14:41:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:41:49.078207907Z"} +2026/03/21 14:41:54 [detection_layer] {"stage_name":"detection_layer","events_processed":405,"events_dropped":0,"avg_latency_ms":18.238306752017337,"throughput_eps":0,"last_update":"2026-03-21T14:41:49.210496239Z"} +2026/03/21 14:41:54 [transform_engine] {"stage_name":"transform_engine","events_processed":406,"events_dropped":0,"avg_latency_ms":677.2825790954269,"throughput_eps":0,"last_update":"2026-03-21T14:41:49.285254606Z"} +2026/03/21 14:41:54 ───────────────────────────────────────────────── +2026/03/21 14:41:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:41:59 [transform_engine] {"stage_name":"transform_engine","events_processed":406,"events_dropped":0,"avg_latency_ms":677.2825790954269,"throughput_eps":0,"last_update":"2026-03-21T14:41:54.21076859Z"} +2026/03/21 14:41:59 [log_collector] {"stage_name":"log_collector","events_processed":19716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3943.2,"last_update":"2026-03-21T14:41:54.068563974Z"} +2026/03/21 14:41:59 [metric_collector] {"stage_name":"metric_collector","events_processed":12184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2436.8,"last_update":"2026-03-21T14:41:54.068763526Z"} +2026/03/21 14:41:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4876,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:41:54.078328669Z"} +2026/03/21 14:41:59 [detection_layer] {"stage_name":"detection_layer","events_processed":406,"events_dropped":0,"avg_latency_ms":18.89623720161387,"throughput_eps":0,"last_update":"2026-03-21T14:41:54.210728574Z"} +2026/03/21 14:41:59 ───────────────────────────────────────────────── +2026/03/21 14:42:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:42:04 [log_collector] {"stage_name":"log_collector","events_processed":19716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3943.2,"last_update":"2026-03-21T14:41:59.068424191Z"} +2026/03/21 14:42:04 [metric_collector] {"stage_name":"metric_collector","events_processed":12189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2437.8,"last_update":"2026-03-21T14:41:59.068976159Z"} +2026/03/21 14:42:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:41:59.078233833Z"} +2026/03/21 14:42:04 [detection_layer] {"stage_name":"detection_layer","events_processed":406,"events_dropped":0,"avg_latency_ms":18.89623720161387,"throughput_eps":0,"last_update":"2026-03-21T14:41:59.210596466Z"} +2026/03/21 14:42:04 [transform_engine] {"stage_name":"transform_engine","events_processed":406,"events_dropped":0,"avg_latency_ms":677.2825790954269,"throughput_eps":0,"last_update":"2026-03-21T14:41:59.210474733Z"} +2026/03/21 14:42:04 ───────────────────────────────────────────────── +2026/03/21 14:42:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:42:09 [log_collector] {"stage_name":"log_collector","events_processed":19716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3943.2,"last_update":"2026-03-21T14:42:04.06859454Z"} +2026/03/21 14:42:09 [metric_collector] {"stage_name":"metric_collector","events_processed":12194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2438.8,"last_update":"2026-03-21T14:42:04.069117532Z"} +2026/03/21 14:42:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:42:04.078779961Z"} +2026/03/21 14:42:09 [detection_layer] {"stage_name":"detection_layer","events_processed":406,"events_dropped":0,"avg_latency_ms":18.89623720161387,"throughput_eps":0,"last_update":"2026-03-21T14:42:04.210098616Z"} +2026/03/21 14:42:09 [transform_engine] {"stage_name":"transform_engine","events_processed":406,"events_dropped":0,"avg_latency_ms":677.2825790954269,"throughput_eps":0,"last_update":"2026-03-21T14:42:04.210146888Z"} +2026/03/21 14:42:09 ───────────────────────────────────────────────── +2026/03/21 14:42:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:42:14 [log_collector] {"stage_name":"log_collector","events_processed":19716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3943.2,"last_update":"2026-03-21T14:42:09.068603566Z"} +2026/03/21 14:42:14 [metric_collector] {"stage_name":"metric_collector","events_processed":12199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2439.8,"last_update":"2026-03-21T14:42:09.068971371Z"} +2026/03/21 14:42:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:42:09.078442525Z"} +2026/03/21 14:42:14 [detection_layer] {"stage_name":"detection_layer","events_processed":406,"events_dropped":0,"avg_latency_ms":18.89623720161387,"throughput_eps":0,"last_update":"2026-03-21T14:42:09.210672053Z"} +2026/03/21 14:42:14 [transform_engine] {"stage_name":"transform_engine","events_processed":406,"events_dropped":0,"avg_latency_ms":677.2825790954269,"throughput_eps":0,"last_update":"2026-03-21T14:42:09.210689897Z"} +2026/03/21 14:42:14 ───────────────────────────────────────────────── +2026/03/21 14:42:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:42:19 [detection_layer] {"stage_name":"detection_layer","events_processed":406,"events_dropped":0,"avg_latency_ms":18.89623720161387,"throughput_eps":0,"last_update":"2026-03-21T14:42:14.210030859Z"} +2026/03/21 14:42:19 [transform_engine] {"stage_name":"transform_engine","events_processed":406,"events_dropped":0,"avg_latency_ms":677.2825790954269,"throughput_eps":0,"last_update":"2026-03-21T14:42:14.210041478Z"} +2026/03/21 14:42:19 [log_collector] {"stage_name":"log_collector","events_processed":19716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3943.2,"last_update":"2026-03-21T14:42:14.068095147Z"} +2026/03/21 14:42:19 [metric_collector] {"stage_name":"metric_collector","events_processed":12204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2440.8,"last_update":"2026-03-21T14:42:14.068340367Z"} +2026/03/21 14:42:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:42:14.077703412Z"} +2026/03/21 14:42:19 ───────────────────────────────────────────────── +Saved state: 17 clusters, 19717 messages, reason: none +2026/03/21 14:42:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:42:24 [transform_engine] {"stage_name":"transform_engine","events_processed":407,"events_dropped":0,"avg_latency_ms":554.6803628763415,"throughput_eps":0,"last_update":"2026-03-21T14:42:19.274705079Z"} +2026/03/21 14:42:24 [log_collector] {"stage_name":"log_collector","events_processed":19716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3943.2,"last_update":"2026-03-21T14:42:19.068620114Z"} +2026/03/21 14:42:24 [metric_collector] {"stage_name":"metric_collector","events_processed":12209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2441.8,"last_update":"2026-03-21T14:42:19.068834264Z"} +2026/03/21 14:42:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4886,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:42:19.076053774Z"} +2026/03/21 14:42:24 [detection_layer] {"stage_name":"detection_layer","events_processed":406,"events_dropped":0,"avg_latency_ms":18.89623720161387,"throughput_eps":0,"last_update":"2026-03-21T14:42:19.210416539Z"} +2026/03/21 14:42:24 ───────────────────────────────────────────────── +2026/03/21 14:42:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:42:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:42:24.081403479Z"} +2026/03/21 14:42:29 [detection_layer] {"stage_name":"detection_layer","events_processed":407,"events_dropped":0,"avg_latency_ms":18.6937413612911,"throughput_eps":0,"last_update":"2026-03-21T14:42:24.210480689Z"} +2026/03/21 14:42:29 [transform_engine] {"stage_name":"transform_engine","events_processed":407,"events_dropped":0,"avg_latency_ms":554.6803628763415,"throughput_eps":0,"last_update":"2026-03-21T14:42:24.210490237Z"} +2026/03/21 14:42:29 [log_collector] {"stage_name":"log_collector","events_processed":19719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3943.8,"last_update":"2026-03-21T14:42:24.068516744Z"} +2026/03/21 14:42:29 [metric_collector] {"stage_name":"metric_collector","events_processed":12214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2442.8,"last_update":"2026-03-21T14:42:24.068736714Z"} +2026/03/21 14:42:29 ───────────────────────────────────────────────── +2026/03/21 14:42:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:42:34 [log_collector] {"stage_name":"log_collector","events_processed":19719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3943.8,"last_update":"2026-03-21T14:42:29.068590959Z"} +2026/03/21 14:42:34 [metric_collector] {"stage_name":"metric_collector","events_processed":12219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2443.8,"last_update":"2026-03-21T14:42:29.068822202Z"} +2026/03/21 14:42:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:42:29.075056574Z"} +2026/03/21 14:42:34 [detection_layer] {"stage_name":"detection_layer","events_processed":407,"events_dropped":0,"avg_latency_ms":18.6937413612911,"throughput_eps":0,"last_update":"2026-03-21T14:42:29.210235553Z"} +2026/03/21 14:42:34 [transform_engine] {"stage_name":"transform_engine","events_processed":407,"events_dropped":0,"avg_latency_ms":554.6803628763415,"throughput_eps":0,"last_update":"2026-03-21T14:42:29.210245061Z"} +2026/03/21 14:42:34 ───────────────────────────────────────────────── +2026/03/21 14:42:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:42:39 [log_collector] {"stage_name":"log_collector","events_processed":19730,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3946,"last_update":"2026-03-21T14:42:34.068595037Z"} +2026/03/21 14:42:39 [metric_collector] {"stage_name":"metric_collector","events_processed":12224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2444.8,"last_update":"2026-03-21T14:42:34.068931742Z"} +2026/03/21 14:42:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4892,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:42:34.077651475Z"} +2026/03/21 14:42:39 [detection_layer] {"stage_name":"detection_layer","events_processed":407,"events_dropped":0,"avg_latency_ms":18.6937413612911,"throughput_eps":0,"last_update":"2026-03-21T14:42:34.209908706Z"} +2026/03/21 14:42:39 [transform_engine] {"stage_name":"transform_engine","events_processed":407,"events_dropped":0,"avg_latency_ms":554.6803628763415,"throughput_eps":0,"last_update":"2026-03-21T14:42:34.209921471Z"} +2026/03/21 14:42:39 ───────────────────────────────────────────────── +2026/03/21 14:42:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:42:44 [transform_engine] {"stage_name":"transform_engine","events_processed":407,"events_dropped":0,"avg_latency_ms":554.6803628763415,"throughput_eps":0,"last_update":"2026-03-21T14:42:39.210655774Z"} +2026/03/21 14:42:44 [log_collector] {"stage_name":"log_collector","events_processed":19744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3948.8,"last_update":"2026-03-21T14:42:39.068247196Z"} +2026/03/21 14:42:44 [metric_collector] {"stage_name":"metric_collector","events_processed":12229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2445.8,"last_update":"2026-03-21T14:42:39.068566147Z"} +2026/03/21 14:42:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:42:39.075268766Z"} +2026/03/21 14:42:44 [detection_layer] {"stage_name":"detection_layer","events_processed":407,"events_dropped":0,"avg_latency_ms":18.6937413612911,"throughput_eps":0,"last_update":"2026-03-21T14:42:39.210639964Z"} +2026/03/21 14:42:44 ───────────────────────────────────────────────── +2026/03/21 14:42:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:42:49 [log_collector] {"stage_name":"log_collector","events_processed":19746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3949.2,"last_update":"2026-03-21T14:42:44.068317144Z"} +2026/03/21 14:42:49 [metric_collector] {"stage_name":"metric_collector","events_processed":12234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2446.8,"last_update":"2026-03-21T14:42:44.068737218Z"} +2026/03/21 14:42:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4896,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:42:44.077745855Z"} +2026/03/21 14:42:49 [detection_layer] {"stage_name":"detection_layer","events_processed":407,"events_dropped":0,"avg_latency_ms":18.6937413612911,"throughput_eps":0,"last_update":"2026-03-21T14:42:44.209946138Z"} +2026/03/21 14:42:49 [transform_engine] {"stage_name":"transform_engine","events_processed":407,"events_dropped":0,"avg_latency_ms":554.6803628763415,"throughput_eps":0,"last_update":"2026-03-21T14:42:44.209955776Z"} +2026/03/21 14:42:49 ───────────────────────────────────────────────── +2026/03/21 14:42:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:42:54 [detection_layer] {"stage_name":"detection_layer","events_processed":407,"events_dropped":0,"avg_latency_ms":18.6937413612911,"throughput_eps":0,"last_update":"2026-03-21T14:42:49.21080885Z"} +2026/03/21 14:42:54 [transform_engine] {"stage_name":"transform_engine","events_processed":408,"events_dropped":0,"avg_latency_ms":528.1979913010732,"throughput_eps":0,"last_update":"2026-03-21T14:42:49.631959783Z"} +2026/03/21 14:42:54 [log_collector] {"stage_name":"log_collector","events_processed":19759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3951.8,"last_update":"2026-03-21T14:42:49.068783838Z"} +2026/03/21 14:42:54 [metric_collector] {"stage_name":"metric_collector","events_processed":12239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2447.8,"last_update":"2026-03-21T14:42:49.06940132Z"} +2026/03/21 14:42:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4898,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:42:49.079433748Z"} +2026/03/21 14:42:54 ───────────────────────────────────────────────── +2026/03/21 14:42:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:42:59 [detection_layer] {"stage_name":"detection_layer","events_processed":408,"events_dropped":0,"avg_latency_ms":19.00153268903288,"throughput_eps":0,"last_update":"2026-03-21T14:42:54.210632207Z"} +2026/03/21 14:42:59 [transform_engine] {"stage_name":"transform_engine","events_processed":408,"events_dropped":0,"avg_latency_ms":528.1979913010732,"throughput_eps":0,"last_update":"2026-03-21T14:42:54.210648048Z"} +2026/03/21 14:42:59 [log_collector] {"stage_name":"log_collector","events_processed":19760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3952,"last_update":"2026-03-21T14:42:54.068070418Z"} +2026/03/21 14:42:59 [metric_collector] {"stage_name":"metric_collector","events_processed":12244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2448.8,"last_update":"2026-03-21T14:42:54.068307621Z"} +2026/03/21 14:42:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4900,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:42:54.07822027Z"} +2026/03/21 14:42:59 ───────────────────────────────────────────────── +2026/03/21 14:43:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:43:04 [log_collector] {"stage_name":"log_collector","events_processed":19760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3952,"last_update":"2026-03-21T14:42:59.068470446Z"} +2026/03/21 14:43:04 [metric_collector] {"stage_name":"metric_collector","events_processed":12249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2449.8,"last_update":"2026-03-21T14:42:59.068973189Z"} +2026/03/21 14:43:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:42:59.078517021Z"} +2026/03/21 14:43:04 [detection_layer] {"stage_name":"detection_layer","events_processed":408,"events_dropped":0,"avg_latency_ms":19.00153268903288,"throughput_eps":0,"last_update":"2026-03-21T14:42:59.210941703Z"} +2026/03/21 14:43:04 [transform_engine] {"stage_name":"transform_engine","events_processed":408,"events_dropped":0,"avg_latency_ms":528.1979913010732,"throughput_eps":0,"last_update":"2026-03-21T14:42:59.209757053Z"} +2026/03/21 14:43:04 ───────────────────────────────────────────────── +2026/03/21 14:43:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:43:09 [log_collector] {"stage_name":"log_collector","events_processed":19760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3952,"last_update":"2026-03-21T14:43:09.068237013Z"} +2026/03/21 14:43:09 [metric_collector] {"stage_name":"metric_collector","events_processed":12254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2450.8,"last_update":"2026-03-21T14:43:04.069714468Z"} +2026/03/21 14:43:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:43:04.078982131Z"} +2026/03/21 14:43:09 [detection_layer] {"stage_name":"detection_layer","events_processed":408,"events_dropped":0,"avg_latency_ms":19.00153268903288,"throughput_eps":0,"last_update":"2026-03-21T14:43:04.210292447Z"} +2026/03/21 14:43:09 [transform_engine] {"stage_name":"transform_engine","events_processed":408,"events_dropped":0,"avg_latency_ms":528.1979913010732,"throughput_eps":0,"last_update":"2026-03-21T14:43:04.210307997Z"} +2026/03/21 14:43:09 ───────────────────────────────────────────────── +2026/03/21 14:43:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:43:14 [detection_layer] {"stage_name":"detection_layer","events_processed":408,"events_dropped":0,"avg_latency_ms":19.00153268903288,"throughput_eps":0,"last_update":"2026-03-21T14:43:09.210678433Z"} +2026/03/21 14:43:14 [transform_engine] {"stage_name":"transform_engine","events_processed":408,"events_dropped":0,"avg_latency_ms":528.1979913010732,"throughput_eps":0,"last_update":"2026-03-21T14:43:09.210691658Z"} +2026/03/21 14:43:14 [log_collector] {"stage_name":"log_collector","events_processed":19760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3952,"last_update":"2026-03-21T14:43:09.068237013Z"} +2026/03/21 14:43:14 [metric_collector] {"stage_name":"metric_collector","events_processed":12259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2451.8,"last_update":"2026-03-21T14:43:09.068684571Z"} +2026/03/21 14:43:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4906,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:43:09.077427539Z"} +2026/03/21 14:43:14 ───────────────────────────────────────────────── +2026/03/21 14:43:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:43:19 [detection_layer] {"stage_name":"detection_layer","events_processed":408,"events_dropped":0,"avg_latency_ms":19.00153268903288,"throughput_eps":0,"last_update":"2026-03-21T14:43:14.209883794Z"} +2026/03/21 14:43:19 [transform_engine] {"stage_name":"transform_engine","events_processed":408,"events_dropped":0,"avg_latency_ms":528.1979913010732,"throughput_eps":0,"last_update":"2026-03-21T14:43:14.209810814Z"} +2026/03/21 14:43:19 [log_collector] {"stage_name":"log_collector","events_processed":19760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3952,"last_update":"2026-03-21T14:43:14.068057602Z"} +2026/03/21 14:43:19 [metric_collector] {"stage_name":"metric_collector","events_processed":12264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2452.8,"last_update":"2026-03-21T14:43:14.068720422Z"} +2026/03/21 14:43:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4908,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:43:14.077631712Z"} +2026/03/21 14:43:19 ───────────────────────────────────────────────── +2026/03/21 14:43:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:43:24 [transform_engine] {"stage_name":"transform_engine","events_processed":409,"events_dropped":0,"avg_latency_ms":447.84186604085863,"throughput_eps":0,"last_update":"2026-03-21T14:43:19.337135985Z"} +2026/03/21 14:43:24 [log_collector] {"stage_name":"log_collector","events_processed":19760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3952,"last_update":"2026-03-21T14:43:19.068073802Z"} +2026/03/21 14:43:24 [metric_collector] {"stage_name":"metric_collector","events_processed":12268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2453.6,"last_update":"2026-03-21T14:43:19.067963562Z"} +2026/03/21 14:43:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:43:19.077469771Z"} +2026/03/21 14:43:24 [detection_layer] {"stage_name":"detection_layer","events_processed":408,"events_dropped":0,"avg_latency_ms":19.00153268903288,"throughput_eps":0,"last_update":"2026-03-21T14:43:19.210699866Z"} +2026/03/21 14:43:24 ───────────────────────────────────────────────── +2026/03/21 14:43:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:43:29 [log_collector] {"stage_name":"log_collector","events_processed":19760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3952,"last_update":"2026-03-21T14:43:24.068441231Z"} +2026/03/21 14:43:29 [metric_collector] {"stage_name":"metric_collector","events_processed":12274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2454.8,"last_update":"2026-03-21T14:43:24.068853542Z"} +2026/03/21 14:43:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4912,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:43:24.077254945Z"} +2026/03/21 14:43:29 [detection_layer] {"stage_name":"detection_layer","events_processed":409,"events_dropped":0,"avg_latency_ms":19.883605551226307,"throughput_eps":0,"last_update":"2026-03-21T14:43:24.210600009Z"} +2026/03/21 14:43:29 [transform_engine] {"stage_name":"transform_engine","events_processed":409,"events_dropped":0,"avg_latency_ms":447.84186604085863,"throughput_eps":0,"last_update":"2026-03-21T14:43:24.210624787Z"} +2026/03/21 14:43:29 ───────────────────────────────────────────────── +2026/03/21 14:43:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:43:34 [log_collector] {"stage_name":"log_collector","events_processed":19760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3952,"last_update":"2026-03-21T14:43:34.068420694Z"} +2026/03/21 14:43:34 [metric_collector] {"stage_name":"metric_collector","events_processed":12284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2456.8,"last_update":"2026-03-21T14:43:34.068406017Z"} +2026/03/21 14:43:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:43:29.080020206Z"} +2026/03/21 14:43:34 [detection_layer] {"stage_name":"detection_layer","events_processed":409,"events_dropped":0,"avg_latency_ms":19.883605551226307,"throughput_eps":0,"last_update":"2026-03-21T14:43:29.210496294Z"} +2026/03/21 14:43:34 [transform_engine] {"stage_name":"transform_engine","events_processed":409,"events_dropped":0,"avg_latency_ms":447.84186604085863,"throughput_eps":0,"last_update":"2026-03-21T14:43:29.210276443Z"} +2026/03/21 14:43:34 ───────────────────────────────────────────────── +2026/03/21 14:43:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:43:39 [detection_layer] {"stage_name":"detection_layer","events_processed":409,"events_dropped":0,"avg_latency_ms":19.883605551226307,"throughput_eps":0,"last_update":"2026-03-21T14:43:34.210266913Z"} +2026/03/21 14:43:39 [transform_engine] {"stage_name":"transform_engine","events_processed":409,"events_dropped":0,"avg_latency_ms":447.84186604085863,"throughput_eps":0,"last_update":"2026-03-21T14:43:34.210243889Z"} +2026/03/21 14:43:39 [log_collector] {"stage_name":"log_collector","events_processed":19760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3952,"last_update":"2026-03-21T14:43:34.068420694Z"} +2026/03/21 14:43:39 [metric_collector] {"stage_name":"metric_collector","events_processed":12284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2456.8,"last_update":"2026-03-21T14:43:34.068406017Z"} +2026/03/21 14:43:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:43:34.077831371Z"} +2026/03/21 14:43:39 ───────────────────────────────────────────────── +2026/03/21 14:43:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:43:44 [log_collector] {"stage_name":"log_collector","events_processed":19760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3952,"last_update":"2026-03-21T14:43:39.069051077Z"} +2026/03/21 14:43:44 [metric_collector] {"stage_name":"metric_collector","events_processed":12289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2457.8,"last_update":"2026-03-21T14:43:39.069236763Z"} +2026/03/21 14:43:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4918,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:43:39.078645005Z"} +2026/03/21 14:43:44 [detection_layer] {"stage_name":"detection_layer","events_processed":409,"events_dropped":0,"avg_latency_ms":19.883605551226307,"throughput_eps":0,"last_update":"2026-03-21T14:43:39.20991273Z"} +2026/03/21 14:43:44 [transform_engine] {"stage_name":"transform_engine","events_processed":409,"events_dropped":0,"avg_latency_ms":447.84186604085863,"throughput_eps":0,"last_update":"2026-03-21T14:43:39.209871622Z"} +2026/03/21 14:43:44 ───────────────────────────────────────────────── +2026/03/21 14:43:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:43:49 [transform_engine] {"stage_name":"transform_engine","events_processed":409,"events_dropped":0,"avg_latency_ms":447.84186604085863,"throughput_eps":0,"last_update":"2026-03-21T14:43:44.210583357Z"} +2026/03/21 14:43:49 [log_collector] {"stage_name":"log_collector","events_processed":19760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3952,"last_update":"2026-03-21T14:43:44.068790981Z"} +2026/03/21 14:43:49 [metric_collector] {"stage_name":"metric_collector","events_processed":12294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2458.8,"last_update":"2026-03-21T14:43:44.069078221Z"} +2026/03/21 14:43:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4920,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:43:44.078227086Z"} +2026/03/21 14:43:49 [detection_layer] {"stage_name":"detection_layer","events_processed":409,"events_dropped":0,"avg_latency_ms":19.883605551226307,"throughput_eps":0,"last_update":"2026-03-21T14:43:44.210551065Z"} +2026/03/21 14:43:49 ───────────────────────────────────────────────── +Saved state: 17 clusters, 19761 messages, reason: none +2026/03/21 14:43:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:43:54 [log_collector] {"stage_name":"log_collector","events_processed":19760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3952,"last_update":"2026-03-21T14:43:49.06903062Z"} +2026/03/21 14:43:54 [metric_collector] {"stage_name":"metric_collector","events_processed":12299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2459.8,"last_update":"2026-03-21T14:43:49.069316257Z"} +2026/03/21 14:43:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:43:49.07745612Z"} +2026/03/21 14:43:54 [detection_layer] {"stage_name":"detection_layer","events_processed":409,"events_dropped":0,"avg_latency_ms":19.883605551226307,"throughput_eps":0,"last_update":"2026-03-21T14:43:49.210809219Z"} +2026/03/21 14:43:54 [transform_engine] {"stage_name":"transform_engine","events_processed":410,"events_dropped":0,"avg_latency_ms":368.34089983268694,"throughput_eps":0,"last_update":"2026-03-21T14:43:49.259985831Z"} +2026/03/21 14:43:54 ───────────────────────────────────────────────── +2026/03/21 14:43:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:43:59 [log_collector] {"stage_name":"log_collector","events_processed":19765,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3953,"last_update":"2026-03-21T14:43:54.068972617Z"} +2026/03/21 14:43:59 [metric_collector] {"stage_name":"metric_collector","events_processed":12304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2460.8,"last_update":"2026-03-21T14:43:54.069373364Z"} +2026/03/21 14:43:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:43:54.07461253Z"} +2026/03/21 14:43:59 [detection_layer] {"stage_name":"detection_layer","events_processed":410,"events_dropped":0,"avg_latency_ms":20.251096040981047,"throughput_eps":0,"last_update":"2026-03-21T14:43:54.210830407Z"} +2026/03/21 14:43:59 [transform_engine] {"stage_name":"transform_engine","events_processed":410,"events_dropped":0,"avg_latency_ms":368.34089983268694,"throughput_eps":0,"last_update":"2026-03-21T14:43:54.209721422Z"} +2026/03/21 14:43:59 ───────────────────────────────────────────────── +2026/03/21 14:44:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:44:04 [log_collector] {"stage_name":"log_collector","events_processed":19765,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3953,"last_update":"2026-03-21T14:43:59.068850716Z"} +2026/03/21 14:44:04 [metric_collector] {"stage_name":"metric_collector","events_processed":12309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2461.8,"last_update":"2026-03-21T14:43:59.069126514Z"} +2026/03/21 14:44:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:43:59.076887781Z"} +2026/03/21 14:44:04 [detection_layer] {"stage_name":"detection_layer","events_processed":410,"events_dropped":0,"avg_latency_ms":20.251096040981047,"throughput_eps":0,"last_update":"2026-03-21T14:43:59.210126872Z"} +2026/03/21 14:44:04 [transform_engine] {"stage_name":"transform_engine","events_processed":410,"events_dropped":0,"avg_latency_ms":368.34089983268694,"throughput_eps":0,"last_update":"2026-03-21T14:43:59.210100862Z"} +2026/03/21 14:44:04 ───────────────────────────────────────────────── +2026/03/21 14:44:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:44:09 [log_collector] {"stage_name":"log_collector","events_processed":19765,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3953,"last_update":"2026-03-21T14:44:04.068488632Z"} +2026/03/21 14:44:09 [metric_collector] {"stage_name":"metric_collector","events_processed":12314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2462.8,"last_update":"2026-03-21T14:44:04.06887349Z"} +2026/03/21 14:44:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:44:04.074600369Z"} +2026/03/21 14:44:09 [detection_layer] {"stage_name":"detection_layer","events_processed":410,"events_dropped":0,"avg_latency_ms":20.251096040981047,"throughput_eps":0,"last_update":"2026-03-21T14:44:04.210854405Z"} +2026/03/21 14:44:09 [transform_engine] {"stage_name":"transform_engine","events_processed":410,"events_dropped":0,"avg_latency_ms":368.34089983268694,"throughput_eps":0,"last_update":"2026-03-21T14:44:04.209755951Z"} +2026/03/21 14:44:09 ───────────────────────────────────────────────── +2026/03/21 14:44:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:44:14 [detection_layer] {"stage_name":"detection_layer","events_processed":410,"events_dropped":0,"avg_latency_ms":20.251096040981047,"throughput_eps":0,"last_update":"2026-03-21T14:44:09.209946594Z"} +2026/03/21 14:44:14 [transform_engine] {"stage_name":"transform_engine","events_processed":410,"events_dropped":0,"avg_latency_ms":368.34089983268694,"throughput_eps":0,"last_update":"2026-03-21T14:44:09.209967023Z"} +2026/03/21 14:44:14 [log_collector] {"stage_name":"log_collector","events_processed":19765,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3953,"last_update":"2026-03-21T14:44:14.068093296Z"} +2026/03/21 14:44:14 [metric_collector] {"stage_name":"metric_collector","events_processed":12319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2463.8,"last_update":"2026-03-21T14:44:09.069119398Z"} +2026/03/21 14:44:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4930,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:44:09.075681017Z"} +2026/03/21 14:44:14 ───────────────────────────────────────────────── +2026/03/21 14:44:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:44:19 [log_collector] {"stage_name":"log_collector","events_processed":19765,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3953,"last_update":"2026-03-21T14:44:19.068097505Z"} +2026/03/21 14:44:19 [metric_collector] {"stage_name":"metric_collector","events_processed":12324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2464.8,"last_update":"2026-03-21T14:44:14.068497401Z"} +2026/03/21 14:44:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:44:14.075700729Z"} +2026/03/21 14:44:19 [detection_layer] {"stage_name":"detection_layer","events_processed":410,"events_dropped":0,"avg_latency_ms":20.251096040981047,"throughput_eps":0,"last_update":"2026-03-21T14:44:14.20993676Z"} +2026/03/21 14:44:19 [transform_engine] {"stage_name":"transform_engine","events_processed":410,"events_dropped":0,"avg_latency_ms":368.34089983268694,"throughput_eps":0,"last_update":"2026-03-21T14:44:14.209963661Z"} +2026/03/21 14:44:19 ───────────────────────────────────────────────── +2026/03/21 14:44:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:44:24 [transform_engine] {"stage_name":"transform_engine","events_processed":411,"events_dropped":0,"avg_latency_ms":605.4963538661495,"throughput_eps":0,"last_update":"2026-03-21T14:44:20.764746665Z"} +2026/03/21 14:44:24 [log_collector] {"stage_name":"log_collector","events_processed":19765,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3953,"last_update":"2026-03-21T14:44:24.068199679Z"} +2026/03/21 14:44:24 [metric_collector] {"stage_name":"metric_collector","events_processed":12329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2465.8,"last_update":"2026-03-21T14:44:19.068656917Z"} +2026/03/21 14:44:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:44:19.075364366Z"} +2026/03/21 14:44:24 [detection_layer] {"stage_name":"detection_layer","events_processed":410,"events_dropped":0,"avg_latency_ms":20.251096040981047,"throughput_eps":0,"last_update":"2026-03-21T14:44:19.210606753Z"} +2026/03/21 14:44:24 ───────────────────────────────────────────────── +2026/03/21 14:44:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:44:29 [log_collector] {"stage_name":"log_collector","events_processed":19765,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3953,"last_update":"2026-03-21T14:44:29.068503015Z"} +2026/03/21 14:44:29 [metric_collector] {"stage_name":"metric_collector","events_processed":12334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2466.8,"last_update":"2026-03-21T14:44:24.0684875Z"} +2026/03/21 14:44:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:44:24.079678337Z"} +2026/03/21 14:44:29 [detection_layer] {"stage_name":"detection_layer","events_processed":411,"events_dropped":0,"avg_latency_ms":18.42144263278484,"throughput_eps":0,"last_update":"2026-03-21T14:44:24.21001123Z"} +2026/03/21 14:44:29 [transform_engine] {"stage_name":"transform_engine","events_processed":411,"events_dropped":0,"avg_latency_ms":605.4963538661495,"throughput_eps":0,"last_update":"2026-03-21T14:44:24.210034735Z"} +2026/03/21 14:44:29 ───────────────────────────────────────────────── +2026/03/21 14:44:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:44:34 [log_collector] {"stage_name":"log_collector","events_processed":19765,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3953,"last_update":"2026-03-21T14:44:29.068503015Z"} +2026/03/21 14:44:34 [metric_collector] {"stage_name":"metric_collector","events_processed":12339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2467.8,"last_update":"2026-03-21T14:44:29.068665517Z"} +2026/03/21 14:44:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:44:29.076384864Z"} +2026/03/21 14:44:34 [detection_layer] {"stage_name":"detection_layer","events_processed":411,"events_dropped":0,"avg_latency_ms":18.42144263278484,"throughput_eps":0,"last_update":"2026-03-21T14:44:29.210613169Z"} +2026/03/21 14:44:34 [transform_engine] {"stage_name":"transform_engine","events_processed":411,"events_dropped":0,"avg_latency_ms":605.4963538661495,"throughput_eps":0,"last_update":"2026-03-21T14:44:29.210583101Z"} +2026/03/21 14:44:34 ───────────────────────────────────────────────── +2026/03/21 14:44:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:44:39 [transform_engine] {"stage_name":"transform_engine","events_processed":411,"events_dropped":0,"avg_latency_ms":605.4963538661495,"throughput_eps":0,"last_update":"2026-03-21T14:44:34.210468584Z"} +2026/03/21 14:44:39 [log_collector] {"stage_name":"log_collector","events_processed":19776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3955.2,"last_update":"2026-03-21T14:44:39.068213302Z"} +2026/03/21 14:44:39 [metric_collector] {"stage_name":"metric_collector","events_processed":12344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2468.8,"last_update":"2026-03-21T14:44:34.069167721Z"} +2026/03/21 14:44:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4940,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:44:34.075492947Z"} +2026/03/21 14:44:39 [detection_layer] {"stage_name":"detection_layer","events_processed":411,"events_dropped":0,"avg_latency_ms":18.42144263278484,"throughput_eps":0,"last_update":"2026-03-21T14:44:34.210374634Z"} +2026/03/21 14:44:39 ───────────────────────────────────────────────── +2026/03/21 14:44:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:44:44 [log_collector] {"stage_name":"log_collector","events_processed":19776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3955.2,"last_update":"2026-03-21T14:44:39.068213302Z"} +2026/03/21 14:44:44 [metric_collector] {"stage_name":"metric_collector","events_processed":12349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2469.8,"last_update":"2026-03-21T14:44:39.069130329Z"} +2026/03/21 14:44:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:44:39.077214775Z"} +2026/03/21 14:44:44 [detection_layer] {"stage_name":"detection_layer","events_processed":411,"events_dropped":0,"avg_latency_ms":18.42144263278484,"throughput_eps":0,"last_update":"2026-03-21T14:44:39.21045631Z"} +2026/03/21 14:44:44 [transform_engine] {"stage_name":"transform_engine","events_processed":411,"events_dropped":0,"avg_latency_ms":605.4963538661495,"throughput_eps":0,"last_update":"2026-03-21T14:44:39.21056098Z"} +2026/03/21 14:44:44 ───────────────────────────────────────────────── +2026/03/21 14:44:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:44:49 [log_collector] {"stage_name":"log_collector","events_processed":19884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3976.8,"last_update":"2026-03-21T14:44:44.068423712Z"} +2026/03/21 14:44:49 [metric_collector] {"stage_name":"metric_collector","events_processed":12354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2470.8,"last_update":"2026-03-21T14:44:44.06878814Z"} +2026/03/21 14:44:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:44:44.076185961Z"} +2026/03/21 14:44:49 [detection_layer] {"stage_name":"detection_layer","events_processed":411,"events_dropped":0,"avg_latency_ms":18.42144263278484,"throughput_eps":0,"last_update":"2026-03-21T14:44:44.21021794Z"} +2026/03/21 14:44:49 [transform_engine] {"stage_name":"transform_engine","events_processed":411,"events_dropped":0,"avg_latency_ms":605.4963538661495,"throughput_eps":0,"last_update":"2026-03-21T14:44:44.210226706Z"} +2026/03/21 14:44:49 ───────────────────────────────────────────────── +Saved state: 17 clusters, 20110 messages, reason: none +2026/03/21 14:44:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:44:54 [log_collector] {"stage_name":"log_collector","events_processed":20038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4007.6,"last_update":"2026-03-21T14:44:49.06859807Z"} +2026/03/21 14:44:54 [metric_collector] {"stage_name":"metric_collector","events_processed":12359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2471.8,"last_update":"2026-03-21T14:44:49.068763176Z"} +2026/03/21 14:44:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:44:49.077605364Z"} +2026/03/21 14:44:54 [detection_layer] {"stage_name":"detection_layer","events_processed":411,"events_dropped":0,"avg_latency_ms":18.42144263278484,"throughput_eps":0,"last_update":"2026-03-21T14:44:49.210095219Z"} +2026/03/21 14:44:54 [transform_engine] {"stage_name":"transform_engine","events_processed":411,"events_dropped":0,"avg_latency_ms":605.4963538661495,"throughput_eps":0,"last_update":"2026-03-21T14:44:49.2101065Z"} +2026/03/21 14:44:54 ───────────────────────────────────────────────── +2026/03/21 14:44:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:44:59 [log_collector] {"stage_name":"log_collector","events_processed":20113,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4022.6,"last_update":"2026-03-21T14:44:54.068079707Z"} +2026/03/21 14:44:59 [metric_collector] {"stage_name":"metric_collector","events_processed":12363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2472.6,"last_update":"2026-03-21T14:44:54.067981158Z"} +2026/03/21 14:44:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:44:54.076670253Z"} +2026/03/21 14:44:59 [detection_layer] {"stage_name":"detection_layer","events_processed":412,"events_dropped":0,"avg_latency_ms":18.264489306227873,"throughput_eps":0,"last_update":"2026-03-21T14:44:54.209919152Z"} +2026/03/21 14:44:59 [transform_engine] {"stage_name":"transform_engine","events_processed":412,"events_dropped":0,"avg_latency_ms":512.0244634929197,"throughput_eps":0,"last_update":"2026-03-21T14:44:54.209938269Z"} +2026/03/21 14:44:59 ───────────────────────────────────────────────── +2026/03/21 14:45:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:45:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:44:59.077869049Z"} +2026/03/21 14:45:04 [detection_layer] {"stage_name":"detection_layer","events_processed":412,"events_dropped":0,"avg_latency_ms":18.264489306227873,"throughput_eps":0,"last_update":"2026-03-21T14:44:59.210099226Z"} +2026/03/21 14:45:04 [transform_engine] {"stage_name":"transform_engine","events_processed":412,"events_dropped":0,"avg_latency_ms":512.0244634929197,"throughput_eps":0,"last_update":"2026-03-21T14:44:59.210120527Z"} +2026/03/21 14:45:04 [log_collector] {"stage_name":"log_collector","events_processed":20113,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4022.6,"last_update":"2026-03-21T14:44:59.068160531Z"} +2026/03/21 14:45:04 [metric_collector] {"stage_name":"metric_collector","events_processed":12369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2473.8,"last_update":"2026-03-21T14:44:59.068575686Z"} +2026/03/21 14:45:04 ───────────────────────────────────────────────── +2026/03/21 14:45:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:45:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:45:04.07761623Z"} +2026/03/21 14:45:09 [detection_layer] {"stage_name":"detection_layer","events_processed":412,"events_dropped":0,"avg_latency_ms":18.264489306227873,"throughput_eps":0,"last_update":"2026-03-21T14:45:04.209883438Z"} +2026/03/21 14:45:09 [transform_engine] {"stage_name":"transform_engine","events_processed":412,"events_dropped":0,"avg_latency_ms":512.0244634929197,"throughput_eps":0,"last_update":"2026-03-21T14:45:04.209814626Z"} +2026/03/21 14:45:09 [log_collector] {"stage_name":"log_collector","events_processed":20113,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4022.6,"last_update":"2026-03-21T14:45:04.068531337Z"} +2026/03/21 14:45:09 [metric_collector] {"stage_name":"metric_collector","events_processed":12374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2474.8,"last_update":"2026-03-21T14:45:04.068933507Z"} +2026/03/21 14:45:09 ───────────────────────────────────────────────── +2026/03/21 14:45:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:45:14 [detection_layer] {"stage_name":"detection_layer","events_processed":412,"events_dropped":0,"avg_latency_ms":18.264489306227873,"throughput_eps":0,"last_update":"2026-03-21T14:45:09.209890235Z"} +2026/03/21 14:45:14 [transform_engine] {"stage_name":"transform_engine","events_processed":412,"events_dropped":0,"avg_latency_ms":512.0244634929197,"throughput_eps":0,"last_update":"2026-03-21T14:45:09.209935662Z"} +2026/03/21 14:45:14 [log_collector] {"stage_name":"log_collector","events_processed":20113,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4022.6,"last_update":"2026-03-21T14:45:09.068087922Z"} +2026/03/21 14:45:14 [metric_collector] {"stage_name":"metric_collector","events_processed":12379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2475.8,"last_update":"2026-03-21T14:45:09.068479462Z"} +2026/03/21 14:45:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:45:09.077644759Z"} +2026/03/21 14:45:14 ───────────────────────────────────────────────── +2026/03/21 14:45:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:45:19 [detection_layer] {"stage_name":"detection_layer","events_processed":412,"events_dropped":0,"avg_latency_ms":18.264489306227873,"throughput_eps":0,"last_update":"2026-03-21T14:45:14.210091421Z"} +2026/03/21 14:45:19 [transform_engine] {"stage_name":"transform_engine","events_processed":412,"events_dropped":0,"avg_latency_ms":512.0244634929197,"throughput_eps":0,"last_update":"2026-03-21T14:45:14.209986089Z"} +2026/03/21 14:45:19 [log_collector] {"stage_name":"log_collector","events_processed":20113,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4022.6,"last_update":"2026-03-21T14:45:14.068848459Z"} +2026/03/21 14:45:19 [metric_collector] {"stage_name":"metric_collector","events_processed":12384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2476.8,"last_update":"2026-03-21T14:45:14.069212197Z"} +2026/03/21 14:45:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:45:14.078722595Z"} +2026/03/21 14:45:19 ───────────────────────────────────────────────── +2026/03/21 14:45:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:45:24 [transform_engine] {"stage_name":"transform_engine","events_processed":413,"events_dropped":0,"avg_latency_ms":432.7130543943358,"throughput_eps":0,"last_update":"2026-03-21T14:45:19.326108849Z"} +2026/03/21 14:45:24 [log_collector] {"stage_name":"log_collector","events_processed":20113,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4022.6,"last_update":"2026-03-21T14:45:19.068070927Z"} +2026/03/21 14:45:24 [metric_collector] {"stage_name":"metric_collector","events_processed":12389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2477.8,"last_update":"2026-03-21T14:45:19.068647522Z"} +2026/03/21 14:45:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4958,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:45:19.077291099Z"} +2026/03/21 14:45:24 [detection_layer] {"stage_name":"detection_layer","events_processed":412,"events_dropped":0,"avg_latency_ms":18.264489306227873,"throughput_eps":0,"last_update":"2026-03-21T14:45:19.210526222Z"} +2026/03/21 14:45:24 ───────────────────────────────────────────────── +2026/03/21 14:45:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:45:29 [metric_collector] {"stage_name":"metric_collector","events_processed":12394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2478.8,"last_update":"2026-03-21T14:45:24.069232188Z"} +2026/03/21 14:45:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:45:24.078184647Z"} +2026/03/21 14:45:29 [detection_layer] {"stage_name":"detection_layer","events_processed":413,"events_dropped":0,"avg_latency_ms":18.9507914449823,"throughput_eps":0,"last_update":"2026-03-21T14:45:24.210528783Z"} +2026/03/21 14:45:29 [transform_engine] {"stage_name":"transform_engine","events_processed":413,"events_dropped":0,"avg_latency_ms":432.7130543943358,"throughput_eps":0,"last_update":"2026-03-21T14:45:24.210498395Z"} +2026/03/21 14:45:29 [log_collector] {"stage_name":"log_collector","events_processed":20113,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4022.6,"last_update":"2026-03-21T14:45:24.068835659Z"} +2026/03/21 14:45:29 ───────────────────────────────────────────────── +2026/03/21 14:45:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:45:34 [transform_engine] {"stage_name":"transform_engine","events_processed":413,"events_dropped":0,"avg_latency_ms":432.7130543943358,"throughput_eps":0,"last_update":"2026-03-21T14:45:29.20964454Z"} +2026/03/21 14:45:34 [log_collector] {"stage_name":"log_collector","events_processed":20113,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4022.6,"last_update":"2026-03-21T14:45:29.068855058Z"} +2026/03/21 14:45:34 [metric_collector] {"stage_name":"metric_collector","events_processed":12399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2479.8,"last_update":"2026-03-21T14:45:29.069653738Z"} +2026/03/21 14:45:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4962,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:45:29.079438372Z"} +2026/03/21 14:45:34 [detection_layer] {"stage_name":"detection_layer","events_processed":413,"events_dropped":0,"avg_latency_ms":18.9507914449823,"throughput_eps":0,"last_update":"2026-03-21T14:45:29.210863516Z"} +2026/03/21 14:45:34 ───────────────────────────────────────────────── +2026/03/21 14:45:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:45:39 [metric_collector] {"stage_name":"metric_collector","events_processed":12404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2480.8,"last_update":"2026-03-21T14:45:34.06838008Z"} +2026/03/21 14:45:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:45:34.078249967Z"} +2026/03/21 14:45:39 [detection_layer] {"stage_name":"detection_layer","events_processed":413,"events_dropped":0,"avg_latency_ms":18.9507914449823,"throughput_eps":0,"last_update":"2026-03-21T14:45:34.210476036Z"} +2026/03/21 14:45:39 [transform_engine] {"stage_name":"transform_engine","events_processed":413,"events_dropped":0,"avg_latency_ms":432.7130543943358,"throughput_eps":0,"last_update":"2026-03-21T14:45:34.210501034Z"} +2026/03/21 14:45:39 [log_collector] {"stage_name":"log_collector","events_processed":20113,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4022.6,"last_update":"2026-03-21T14:45:34.068104913Z"} +2026/03/21 14:45:39 ───────────────────────────────────────────────── +2026/03/21 14:45:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:45:44 [transform_engine] {"stage_name":"transform_engine","events_processed":413,"events_dropped":0,"avg_latency_ms":432.7130543943358,"throughput_eps":0,"last_update":"2026-03-21T14:45:39.210777472Z"} +2026/03/21 14:45:44 [log_collector] {"stage_name":"log_collector","events_processed":20113,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4022.6,"last_update":"2026-03-21T14:45:39.068699009Z"} +2026/03/21 14:45:44 [metric_collector] {"stage_name":"metric_collector","events_processed":12409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2481.8,"last_update":"2026-03-21T14:45:39.06912242Z"} +2026/03/21 14:45:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:45:39.077409605Z"} +2026/03/21 14:45:44 [detection_layer] {"stage_name":"detection_layer","events_processed":413,"events_dropped":0,"avg_latency_ms":18.9507914449823,"throughput_eps":0,"last_update":"2026-03-21T14:45:39.210668153Z"} +2026/03/21 14:45:44 ───────────────────────────────────────────────── +2026/03/21 14:45:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:45:49 [log_collector] {"stage_name":"log_collector","events_processed":20113,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4022.6,"last_update":"2026-03-21T14:45:44.06851922Z"} +2026/03/21 14:45:49 [metric_collector] {"stage_name":"metric_collector","events_processed":12414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2482.8,"last_update":"2026-03-21T14:45:44.06854526Z"} +2026/03/21 14:45:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:45:44.078625099Z"} +2026/03/21 14:45:49 [detection_layer] {"stage_name":"detection_layer","events_processed":413,"events_dropped":0,"avg_latency_ms":18.9507914449823,"throughput_eps":0,"last_update":"2026-03-21T14:45:44.210969644Z"} +2026/03/21 14:45:49 [transform_engine] {"stage_name":"transform_engine","events_processed":413,"events_dropped":0,"avg_latency_ms":432.7130543943358,"throughput_eps":0,"last_update":"2026-03-21T14:45:44.209769285Z"} +2026/03/21 14:45:49 ───────────────────────────────────────────────── +2026/03/21 14:45:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:45:54 [log_collector] {"stage_name":"log_collector","events_processed":20113,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4022.6,"last_update":"2026-03-21T14:45:49.068924859Z"} +2026/03/21 14:45:54 [metric_collector] {"stage_name":"metric_collector","events_processed":12419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2483.8,"last_update":"2026-03-21T14:45:49.069324555Z"} +2026/03/21 14:45:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4970,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:45:49.08021158Z"} +2026/03/21 14:45:54 [detection_layer] {"stage_name":"detection_layer","events_processed":413,"events_dropped":0,"avg_latency_ms":18.9507914449823,"throughput_eps":0,"last_update":"2026-03-21T14:45:49.210591763Z"} +2026/03/21 14:45:54 [transform_engine] {"stage_name":"transform_engine","events_processed":414,"events_dropped":0,"avg_latency_ms":360.5775693154687,"throughput_eps":0,"last_update":"2026-03-21T14:45:49.282748404Z"} +2026/03/21 14:45:54 ───────────────────────────────────────────────── +2026/03/21 14:45:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:45:59 [metric_collector] {"stage_name":"metric_collector","events_processed":12424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2484.8,"last_update":"2026-03-21T14:45:54.068655615Z"} +2026/03/21 14:45:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:45:54.077420815Z"} +2026/03/21 14:45:59 [detection_layer] {"stage_name":"detection_layer","events_processed":414,"events_dropped":0,"avg_latency_ms":19.47335255598584,"throughput_eps":0,"last_update":"2026-03-21T14:45:54.210620559Z"} +2026/03/21 14:45:59 [transform_engine] {"stage_name":"transform_engine","events_processed":414,"events_dropped":0,"avg_latency_ms":360.5775693154687,"throughput_eps":0,"last_update":"2026-03-21T14:45:54.210666227Z"} +2026/03/21 14:45:59 [log_collector] {"stage_name":"log_collector","events_processed":20113,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4022.6,"last_update":"2026-03-21T14:45:54.068221924Z"} +2026/03/21 14:45:59 ───────────────────────────────────────────────── +2026/03/21 14:46:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:46:04 [log_collector] {"stage_name":"log_collector","events_processed":20113,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4022.6,"last_update":"2026-03-21T14:45:59.068715749Z"} +2026/03/21 14:46:04 [metric_collector] {"stage_name":"metric_collector","events_processed":12429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2485.8,"last_update":"2026-03-21T14:45:59.069052794Z"} +2026/03/21 14:46:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:45:59.078482908Z"} +2026/03/21 14:46:04 [detection_layer] {"stage_name":"detection_layer","events_processed":414,"events_dropped":0,"avg_latency_ms":19.47335255598584,"throughput_eps":0,"last_update":"2026-03-21T14:45:59.210767339Z"} +2026/03/21 14:46:04 [transform_engine] {"stage_name":"transform_engine","events_processed":414,"events_dropped":0,"avg_latency_ms":360.5775693154687,"throughput_eps":0,"last_update":"2026-03-21T14:45:59.209632995Z"} +2026/03/21 14:46:04 ───────────────────────────────────────────────── +Saved state: 17 clusters, 20114 messages, reason: none +2026/03/21 14:46:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:46:09 [transform_engine] {"stage_name":"transform_engine","events_processed":414,"events_dropped":0,"avg_latency_ms":360.5775693154687,"throughput_eps":0,"last_update":"2026-03-21T14:46:04.209637819Z"} +2026/03/21 14:46:09 [log_collector] {"stage_name":"log_collector","events_processed":20113,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4022.6,"last_update":"2026-03-21T14:46:04.068298324Z"} +2026/03/21 14:46:09 [metric_collector] {"stage_name":"metric_collector","events_processed":12434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2486.8,"last_update":"2026-03-21T14:46:04.068814573Z"} +2026/03/21 14:46:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:46:04.077401893Z"} +2026/03/21 14:46:09 [detection_layer] {"stage_name":"detection_layer","events_processed":414,"events_dropped":0,"avg_latency_ms":19.47335255598584,"throughput_eps":0,"last_update":"2026-03-21T14:46:04.210857917Z"} +2026/03/21 14:46:09 ───────────────────────────────────────────────── +2026/03/21 14:46:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:46:14 [transform_engine] {"stage_name":"transform_engine","events_processed":414,"events_dropped":0,"avg_latency_ms":360.5775693154687,"throughput_eps":0,"last_update":"2026-03-21T14:46:09.209669874Z"} +2026/03/21 14:46:14 [log_collector] {"stage_name":"log_collector","events_processed":20116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4023.2,"last_update":"2026-03-21T14:46:09.070364835Z"} +2026/03/21 14:46:14 [metric_collector] {"stage_name":"metric_collector","events_processed":12438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2487.6,"last_update":"2026-03-21T14:46:09.070369294Z"} +2026/03/21 14:46:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:46:09.077161244Z"} +2026/03/21 14:46:14 [detection_layer] {"stage_name":"detection_layer","events_processed":414,"events_dropped":0,"avg_latency_ms":19.47335255598584,"throughput_eps":0,"last_update":"2026-03-21T14:46:09.210767847Z"} +2026/03/21 14:46:14 ───────────────────────────────────────────────── +2026/03/21 14:46:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:46:19 [log_collector] {"stage_name":"log_collector","events_processed":20116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4023.2,"last_update":"2026-03-21T14:46:14.068836799Z"} +2026/03/21 14:46:19 [metric_collector] {"stage_name":"metric_collector","events_processed":12444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2488.8,"last_update":"2026-03-21T14:46:14.069168264Z"} +2026/03/21 14:46:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:46:14.077083737Z"} +2026/03/21 14:46:19 [detection_layer] {"stage_name":"detection_layer","events_processed":414,"events_dropped":0,"avg_latency_ms":19.47335255598584,"throughput_eps":0,"last_update":"2026-03-21T14:46:14.210486289Z"} +2026/03/21 14:46:19 [transform_engine] {"stage_name":"transform_engine","events_processed":414,"events_dropped":0,"avg_latency_ms":360.5775693154687,"throughput_eps":0,"last_update":"2026-03-21T14:46:14.210496168Z"} +2026/03/21 14:46:19 ───────────────────────────────────────────────── +2026/03/21 14:46:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:46:24 [log_collector] {"stage_name":"log_collector","events_processed":20127,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4025.4,"last_update":"2026-03-21T14:46:19.068876503Z"} +2026/03/21 14:46:24 [metric_collector] {"stage_name":"metric_collector","events_processed":12448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2489.6,"last_update":"2026-03-21T14:46:19.068881542Z"} +2026/03/21 14:46:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:46:19.077636333Z"} +2026/03/21 14:46:24 [detection_layer] {"stage_name":"detection_layer","events_processed":414,"events_dropped":0,"avg_latency_ms":19.47335255598584,"throughput_eps":0,"last_update":"2026-03-21T14:46:19.211022673Z"} +2026/03/21 14:46:24 [transform_engine] {"stage_name":"transform_engine","events_processed":415,"events_dropped":0,"avg_latency_ms":311.256391652375,"throughput_eps":0,"last_update":"2026-03-21T14:46:19.323701067Z"} +2026/03/21 14:46:24 ───────────────────────────────────────────────── +2026/03/21 14:46:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:46:29 [log_collector] {"stage_name":"log_collector","events_processed":20141,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4028.2,"last_update":"2026-03-21T14:46:24.068109089Z"} +2026/03/21 14:46:29 [metric_collector] {"stage_name":"metric_collector","events_processed":12454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2490.8,"last_update":"2026-03-21T14:46:24.068476202Z"} +2026/03/21 14:46:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:46:24.077769113Z"} +2026/03/21 14:46:29 [detection_layer] {"stage_name":"detection_layer","events_processed":415,"events_dropped":0,"avg_latency_ms":20.150042844788672,"throughput_eps":0,"last_update":"2026-03-21T14:46:24.209992566Z"} +2026/03/21 14:46:29 [transform_engine] {"stage_name":"transform_engine","events_processed":415,"events_dropped":0,"avg_latency_ms":311.256391652375,"throughput_eps":0,"last_update":"2026-03-21T14:46:24.21000493Z"} +2026/03/21 14:46:29 ───────────────────────────────────────────────── +2026/03/21 14:46:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:46:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:46:29.076927865Z"} +2026/03/21 14:46:34 [detection_layer] {"stage_name":"detection_layer","events_processed":415,"events_dropped":0,"avg_latency_ms":20.150042844788672,"throughput_eps":0,"last_update":"2026-03-21T14:46:29.210265343Z"} +2026/03/21 14:46:34 [transform_engine] {"stage_name":"transform_engine","events_processed":415,"events_dropped":0,"avg_latency_ms":311.256391652375,"throughput_eps":0,"last_update":"2026-03-21T14:46:29.210277566Z"} +2026/03/21 14:46:34 [log_collector] {"stage_name":"log_collector","events_processed":20143,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4028.6,"last_update":"2026-03-21T14:46:29.068167384Z"} +2026/03/21 14:46:34 [metric_collector] {"stage_name":"metric_collector","events_processed":12459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2491.8,"last_update":"2026-03-21T14:46:29.068662232Z"} +2026/03/21 14:46:34 ───────────────────────────────────────────────── +2026/03/21 14:46:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:46:39 [log_collector] {"stage_name":"log_collector","events_processed":20156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4031.2,"last_update":"2026-03-21T14:46:34.068692451Z"} +2026/03/21 14:46:39 [metric_collector] {"stage_name":"metric_collector","events_processed":12464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2492.8,"last_update":"2026-03-21T14:46:34.069263885Z"} +2026/03/21 14:46:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:46:34.075584303Z"} +2026/03/21 14:46:39 [detection_layer] {"stage_name":"detection_layer","events_processed":415,"events_dropped":0,"avg_latency_ms":20.150042844788672,"throughput_eps":0,"last_update":"2026-03-21T14:46:34.209855739Z"} +2026/03/21 14:46:39 [transform_engine] {"stage_name":"transform_engine","events_processed":415,"events_dropped":0,"avg_latency_ms":311.256391652375,"throughput_eps":0,"last_update":"2026-03-21T14:46:34.209775746Z"} +2026/03/21 14:46:39 ───────────────────────────────────────────────── +2026/03/21 14:46:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:46:44 [metric_collector] {"stage_name":"metric_collector","events_processed":12469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2493.8,"last_update":"2026-03-21T14:46:39.069040899Z"} +2026/03/21 14:46:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4990,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:46:39.07834417Z"} +2026/03/21 14:46:44 [detection_layer] {"stage_name":"detection_layer","events_processed":415,"events_dropped":0,"avg_latency_ms":20.150042844788672,"throughput_eps":0,"last_update":"2026-03-21T14:46:39.210661623Z"} +2026/03/21 14:46:44 [transform_engine] {"stage_name":"transform_engine","events_processed":415,"events_dropped":0,"avg_latency_ms":311.256391652375,"throughput_eps":0,"last_update":"2026-03-21T14:46:39.210678746Z"} +2026/03/21 14:46:44 [log_collector] {"stage_name":"log_collector","events_processed":20157,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4031.4,"last_update":"2026-03-21T14:46:39.06883282Z"} +2026/03/21 14:46:44 ───────────────────────────────────────────────── +2026/03/21 14:46:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:46:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4992,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:46:44.077948651Z"} +2026/03/21 14:46:49 [detection_layer] {"stage_name":"detection_layer","events_processed":415,"events_dropped":0,"avg_latency_ms":20.150042844788672,"throughput_eps":0,"last_update":"2026-03-21T14:46:44.210345355Z"} +2026/03/21 14:46:49 [transform_engine] {"stage_name":"transform_engine","events_processed":415,"events_dropped":0,"avg_latency_ms":311.256391652375,"throughput_eps":0,"last_update":"2026-03-21T14:46:44.210396553Z"} +2026/03/21 14:46:49 [log_collector] {"stage_name":"log_collector","events_processed":20157,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4031.4,"last_update":"2026-03-21T14:46:44.068857875Z"} +2026/03/21 14:46:49 [metric_collector] {"stage_name":"metric_collector","events_processed":12474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2494.8,"last_update":"2026-03-21T14:46:44.069011531Z"} +2026/03/21 14:46:49 ───────────────────────────────────────────────── +2026/03/21 14:46:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:46:54 [detection_layer] {"stage_name":"detection_layer","events_processed":415,"events_dropped":0,"avg_latency_ms":20.150042844788672,"throughput_eps":0,"last_update":"2026-03-21T14:46:49.209999055Z"} +2026/03/21 14:46:54 [transform_engine] {"stage_name":"transform_engine","events_processed":416,"events_dropped":0,"avg_latency_ms":271.15773212190004,"throughput_eps":0,"last_update":"2026-03-21T14:46:49.320775295Z"} +2026/03/21 14:46:54 [log_collector] {"stage_name":"log_collector","events_processed":20157,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4031.4,"last_update":"2026-03-21T14:46:49.068573275Z"} +2026/03/21 14:46:54 [metric_collector] {"stage_name":"metric_collector","events_processed":12479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2495.8,"last_update":"2026-03-21T14:46:49.068807314Z"} +2026/03/21 14:46:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:46:49.077759813Z"} +2026/03/21 14:46:54 ───────────────────────────────────────────────── +2026/03/21 14:46:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:46:59 [metric_collector] {"stage_name":"metric_collector","events_processed":12483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2496.6,"last_update":"2026-03-21T14:46:54.068853435Z"} +2026/03/21 14:46:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4996,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:46:54.079152374Z"} +2026/03/21 14:46:59 [detection_layer] {"stage_name":"detection_layer","events_processed":416,"events_dropped":0,"avg_latency_ms":20.11512907583094,"throughput_eps":0,"last_update":"2026-03-21T14:46:54.210264937Z"} +2026/03/21 14:46:59 [transform_engine] {"stage_name":"transform_engine","events_processed":416,"events_dropped":0,"avg_latency_ms":271.15773212190004,"throughput_eps":0,"last_update":"2026-03-21T14:46:54.210295467Z"} +2026/03/21 14:46:59 [log_collector] {"stage_name":"log_collector","events_processed":20157,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4031.4,"last_update":"2026-03-21T14:46:54.068875758Z"} +2026/03/21 14:46:59 ───────────────────────────────────────────────── +2026/03/21 14:47:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:47:04 [log_collector] {"stage_name":"log_collector","events_processed":20157,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4031.4,"last_update":"2026-03-21T14:46:59.068199662Z"} +2026/03/21 14:47:04 [metric_collector] {"stage_name":"metric_collector","events_processed":12489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2497.8,"last_update":"2026-03-21T14:46:59.068763172Z"} +2026/03/21 14:47:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:46:59.078612008Z"} +2026/03/21 14:47:04 [detection_layer] {"stage_name":"detection_layer","events_processed":416,"events_dropped":0,"avg_latency_ms":20.11512907583094,"throughput_eps":0,"last_update":"2026-03-21T14:46:59.209864771Z"} +2026/03/21 14:47:04 [transform_engine] {"stage_name":"transform_engine","events_processed":416,"events_dropped":0,"avg_latency_ms":271.15773212190004,"throughput_eps":0,"last_update":"2026-03-21T14:46:59.209738109Z"} +2026/03/21 14:47:04 ───────────────────────────────────────────────── +2026/03/21 14:47:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:47:09 [metric_collector] {"stage_name":"metric_collector","events_processed":12494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2498.8,"last_update":"2026-03-21T14:47:04.069006115Z"} +2026/03/21 14:47:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:47:04.079142832Z"} +2026/03/21 14:47:09 [detection_layer] {"stage_name":"detection_layer","events_processed":416,"events_dropped":0,"avg_latency_ms":20.11512907583094,"throughput_eps":0,"last_update":"2026-03-21T14:47:04.210447986Z"} +2026/03/21 14:47:09 [transform_engine] {"stage_name":"transform_engine","events_processed":416,"events_dropped":0,"avg_latency_ms":271.15773212190004,"throughput_eps":0,"last_update":"2026-03-21T14:47:04.210492562Z"} +2026/03/21 14:47:09 [log_collector] {"stage_name":"log_collector","events_processed":20157,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4031.4,"last_update":"2026-03-21T14:47:04.069015453Z"} +2026/03/21 14:47:09 ───────────────────────────────────────────────── +2026/03/21 14:47:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:47:14 [log_collector] {"stage_name":"log_collector","events_processed":20157,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4031.4,"last_update":"2026-03-21T14:47:09.068834392Z"} +2026/03/21 14:47:14 [metric_collector] {"stage_name":"metric_collector","events_processed":12499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2499.8,"last_update":"2026-03-21T14:47:09.069468677Z"} +2026/03/21 14:47:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:47:09.077752857Z"} +2026/03/21 14:47:14 [detection_layer] {"stage_name":"detection_layer","events_processed":416,"events_dropped":0,"avg_latency_ms":20.11512907583094,"throughput_eps":0,"last_update":"2026-03-21T14:47:09.209984254Z"} +2026/03/21 14:47:14 [transform_engine] {"stage_name":"transform_engine","events_processed":416,"events_dropped":0,"avg_latency_ms":271.15773212190004,"throughput_eps":0,"last_update":"2026-03-21T14:47:09.210029821Z"} +2026/03/21 14:47:14 ───────────────────────────────────────────────── +2026/03/21 14:47:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:47:19 [log_collector] {"stage_name":"log_collector","events_processed":20157,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4031.4,"last_update":"2026-03-21T14:47:14.068865035Z"} +2026/03/21 14:47:19 [metric_collector] {"stage_name":"metric_collector","events_processed":12504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2500.8,"last_update":"2026-03-21T14:47:14.06898253Z"} +2026/03/21 14:47:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:47:14.077386759Z"} +2026/03/21 14:47:19 [detection_layer] {"stage_name":"detection_layer","events_processed":416,"events_dropped":0,"avg_latency_ms":20.11512907583094,"throughput_eps":0,"last_update":"2026-03-21T14:47:14.210839465Z"} +2026/03/21 14:47:19 [transform_engine] {"stage_name":"transform_engine","events_processed":416,"events_dropped":0,"avg_latency_ms":271.15773212190004,"throughput_eps":0,"last_update":"2026-03-21T14:47:14.210726469Z"} +2026/03/21 14:47:19 ───────────────────────────────────────────────── +2026/03/21 14:47:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:47:24 [log_collector] {"stage_name":"log_collector","events_processed":20157,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4031.4,"last_update":"2026-03-21T14:47:19.068716721Z"} +2026/03/21 14:47:24 [metric_collector] {"stage_name":"metric_collector","events_processed":12509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2501.8,"last_update":"2026-03-21T14:47:19.068998131Z"} +2026/03/21 14:47:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5006,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:47:19.078578542Z"} +2026/03/21 14:47:24 [detection_layer] {"stage_name":"detection_layer","events_processed":416,"events_dropped":0,"avg_latency_ms":20.11512907583094,"throughput_eps":0,"last_update":"2026-03-21T14:47:19.210870736Z"} +2026/03/21 14:47:24 [transform_engine] {"stage_name":"transform_engine","events_processed":417,"events_dropped":0,"avg_latency_ms":232.17618409752006,"throughput_eps":0,"last_update":"2026-03-21T14:47:19.285989982Z"} +2026/03/21 14:47:24 ───────────────────────────────────────────────── +2026/03/21 14:47:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:47:29 [metric_collector] {"stage_name":"metric_collector","events_processed":12514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2502.8,"last_update":"2026-03-21T14:47:24.06919174Z"} +2026/03/21 14:47:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5008,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:47:24.077683397Z"} +2026/03/21 14:47:29 [detection_layer] {"stage_name":"detection_layer","events_processed":417,"events_dropped":0,"avg_latency_ms":20.423636460664753,"throughput_eps":0,"last_update":"2026-03-21T14:47:24.210067837Z"} +2026/03/21 14:47:29 [transform_engine] {"stage_name":"transform_engine","events_processed":417,"events_dropped":0,"avg_latency_ms":232.17618409752006,"throughput_eps":0,"last_update":"2026-03-21T14:47:24.20992285Z"} +2026/03/21 14:47:29 [log_collector] {"stage_name":"log_collector","events_processed":20157,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4031.4,"last_update":"2026-03-21T14:47:24.068913858Z"} +2026/03/21 14:47:29 ───────────────────────────────────────────────── +2026/03/21 14:47:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:47:34 [log_collector] {"stage_name":"log_collector","events_processed":20157,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4031.4,"last_update":"2026-03-21T14:47:29.068759931Z"} +2026/03/21 14:47:34 [metric_collector] {"stage_name":"metric_collector","events_processed":12519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2503.8,"last_update":"2026-03-21T14:47:29.06907296Z"} +2026/03/21 14:47:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:47:29.078429223Z"} +2026/03/21 14:47:34 [detection_layer] {"stage_name":"detection_layer","events_processed":417,"events_dropped":0,"avg_latency_ms":20.423636460664753,"throughput_eps":0,"last_update":"2026-03-21T14:47:29.210768036Z"} +2026/03/21 14:47:34 [transform_engine] {"stage_name":"transform_engine","events_processed":417,"events_dropped":0,"avg_latency_ms":232.17618409752006,"throughput_eps":0,"last_update":"2026-03-21T14:47:29.21067074Z"} +2026/03/21 14:47:34 ───────────────────────────────────────────────── +2026/03/21 14:47:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:47:39 [log_collector] {"stage_name":"log_collector","events_processed":20157,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4031.4,"last_update":"2026-03-21T14:47:34.06806668Z"} +2026/03/21 14:47:39 [metric_collector] {"stage_name":"metric_collector","events_processed":12524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2504.8,"last_update":"2026-03-21T14:47:34.068511221Z"} +2026/03/21 14:47:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5012,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:47:34.077076659Z"} +2026/03/21 14:47:39 [detection_layer] {"stage_name":"detection_layer","events_processed":417,"events_dropped":0,"avg_latency_ms":20.423636460664753,"throughput_eps":0,"last_update":"2026-03-21T14:47:34.210390941Z"} +2026/03/21 14:47:39 [transform_engine] {"stage_name":"transform_engine","events_processed":417,"events_dropped":0,"avg_latency_ms":232.17618409752006,"throughput_eps":0,"last_update":"2026-03-21T14:47:34.21036933Z"} +2026/03/21 14:47:39 ───────────────────────────────────────────────── +Saved state: 17 clusters, 20158 messages, reason: none +2026/03/21 14:47:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:47:44 [transform_engine] {"stage_name":"transform_engine","events_processed":417,"events_dropped":0,"avg_latency_ms":232.17618409752006,"throughput_eps":0,"last_update":"2026-03-21T14:47:39.210336921Z"} +2026/03/21 14:47:44 [log_collector] {"stage_name":"log_collector","events_processed":20157,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4031.4,"last_update":"2026-03-21T14:47:39.068527136Z"} +2026/03/21 14:47:44 [metric_collector] {"stage_name":"metric_collector","events_processed":12529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2505.8,"last_update":"2026-03-21T14:47:39.068730325Z"} +2026/03/21 14:47:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:47:39.078979728Z"} +2026/03/21 14:47:44 [detection_layer] {"stage_name":"detection_layer","events_processed":417,"events_dropped":0,"avg_latency_ms":20.423636460664753,"throughput_eps":0,"last_update":"2026-03-21T14:47:39.210275693Z"} +2026/03/21 14:47:44 ───────────────────────────────────────────────── +2026/03/21 14:47:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:47:49 [metric_collector] {"stage_name":"metric_collector","events_processed":12534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2506.8,"last_update":"2026-03-21T14:47:44.068773519Z"} +2026/03/21 14:47:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:47:44.082478502Z"} +2026/03/21 14:47:49 [detection_layer] {"stage_name":"detection_layer","events_processed":417,"events_dropped":0,"avg_latency_ms":20.423636460664753,"throughput_eps":0,"last_update":"2026-03-21T14:47:44.210721429Z"} +2026/03/21 14:47:49 [transform_engine] {"stage_name":"transform_engine","events_processed":417,"events_dropped":0,"avg_latency_ms":232.17618409752006,"throughput_eps":0,"last_update":"2026-03-21T14:47:44.210697753Z"} +2026/03/21 14:47:49 [log_collector] {"stage_name":"log_collector","events_processed":20162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4032.4,"last_update":"2026-03-21T14:47:44.06848211Z"} +2026/03/21 14:47:49 ───────────────────────────────────────────────── +2026/03/21 14:47:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:47:54 [transform_engine] {"stage_name":"transform_engine","events_processed":418,"events_dropped":0,"avg_latency_ms":266.4733090780161,"throughput_eps":0,"last_update":"2026-03-21T14:47:49.614123349Z"} +2026/03/21 14:47:54 [log_collector] {"stage_name":"log_collector","events_processed":20162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4032.4,"last_update":"2026-03-21T14:47:49.068383541Z"} +2026/03/21 14:47:54 [metric_collector] {"stage_name":"metric_collector","events_processed":12539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2507.8,"last_update":"2026-03-21T14:47:49.068664288Z"} +2026/03/21 14:47:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5018,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:47:49.080259339Z"} +2026/03/21 14:47:54 [detection_layer] {"stage_name":"detection_layer","events_processed":417,"events_dropped":0,"avg_latency_ms":20.423636460664753,"throughput_eps":0,"last_update":"2026-03-21T14:47:49.210481157Z"} +2026/03/21 14:47:54 ───────────────────────────────────────────────── +2026/03/21 14:47:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:47:59 [detection_layer] {"stage_name":"detection_layer","events_processed":418,"events_dropped":0,"avg_latency_ms":18.9582425685318,"throughput_eps":0,"last_update":"2026-03-21T14:47:54.209868902Z"} +2026/03/21 14:47:59 [transform_engine] {"stage_name":"transform_engine","events_processed":418,"events_dropped":0,"avg_latency_ms":266.4733090780161,"throughput_eps":0,"last_update":"2026-03-21T14:47:54.20988854Z"} +2026/03/21 14:47:59 [log_collector] {"stage_name":"log_collector","events_processed":20162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4032.4,"last_update":"2026-03-21T14:47:54.068721025Z"} +2026/03/21 14:47:59 [metric_collector] {"stage_name":"metric_collector","events_processed":12544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2508.8,"last_update":"2026-03-21T14:47:54.069060776Z"} +2026/03/21 14:47:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5020,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:47:54.075653304Z"} +2026/03/21 14:47:59 ───────────────────────────────────────────────── +2026/03/21 14:48:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:48:04 [log_collector] {"stage_name":"log_collector","events_processed":20162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4032.4,"last_update":"2026-03-21T14:47:59.068675164Z"} +2026/03/21 14:48:04 [metric_collector] {"stage_name":"metric_collector","events_processed":12549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2509.8,"last_update":"2026-03-21T14:47:59.068666937Z"} +2026/03/21 14:48:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5022,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:47:59.075498444Z"} +2026/03/21 14:48:04 [detection_layer] {"stage_name":"detection_layer","events_processed":418,"events_dropped":0,"avg_latency_ms":18.9582425685318,"throughput_eps":0,"last_update":"2026-03-21T14:47:59.210721402Z"} +2026/03/21 14:48:04 [transform_engine] {"stage_name":"transform_engine","events_processed":418,"events_dropped":0,"avg_latency_ms":266.4733090780161,"throughput_eps":0,"last_update":"2026-03-21T14:47:59.209649228Z"} +2026/03/21 14:48:04 ───────────────────────────────────────────────── +2026/03/21 14:48:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:48:09 [log_collector] {"stage_name":"log_collector","events_processed":20162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4032.4,"last_update":"2026-03-21T14:48:04.068540187Z"} +2026/03/21 14:48:09 [metric_collector] {"stage_name":"metric_collector","events_processed":12554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2510.8,"last_update":"2026-03-21T14:48:04.068765228Z"} +2026/03/21 14:48:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:48:04.074478912Z"} +2026/03/21 14:48:09 [detection_layer] {"stage_name":"detection_layer","events_processed":418,"events_dropped":0,"avg_latency_ms":18.9582425685318,"throughput_eps":0,"last_update":"2026-03-21T14:48:04.210722585Z"} +2026/03/21 14:48:09 [transform_engine] {"stage_name":"transform_engine","events_processed":418,"events_dropped":0,"avg_latency_ms":266.4733090780161,"throughput_eps":0,"last_update":"2026-03-21T14:48:04.209625985Z"} +2026/03/21 14:48:09 ───────────────────────────────────────────────── +2026/03/21 14:48:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:48:14 [log_collector] {"stage_name":"log_collector","events_processed":20162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4032.4,"last_update":"2026-03-21T14:48:14.068322421Z"} +2026/03/21 14:48:14 [metric_collector] {"stage_name":"metric_collector","events_processed":12559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2511.8,"last_update":"2026-03-21T14:48:09.069068199Z"} +2026/03/21 14:48:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:48:09.078268473Z"} +2026/03/21 14:48:14 [detection_layer] {"stage_name":"detection_layer","events_processed":418,"events_dropped":0,"avg_latency_ms":18.9582425685318,"throughput_eps":0,"last_update":"2026-03-21T14:48:09.210274208Z"} +2026/03/21 14:48:14 [transform_engine] {"stage_name":"transform_engine","events_processed":418,"events_dropped":0,"avg_latency_ms":266.4733090780161,"throughput_eps":0,"last_update":"2026-03-21T14:48:09.210286731Z"} +2026/03/21 14:48:14 ───────────────────────────────────────────────── +2026/03/21 14:48:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:48:19 [log_collector] {"stage_name":"log_collector","events_processed":20162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4032.4,"last_update":"2026-03-21T14:48:14.068322421Z"} +2026/03/21 14:48:19 [metric_collector] {"stage_name":"metric_collector","events_processed":12564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2512.8,"last_update":"2026-03-21T14:48:14.068770279Z"} +2026/03/21 14:48:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:48:14.07535935Z"} +2026/03/21 14:48:19 [detection_layer] {"stage_name":"detection_layer","events_processed":418,"events_dropped":0,"avg_latency_ms":18.9582425685318,"throughput_eps":0,"last_update":"2026-03-21T14:48:14.210594993Z"} +2026/03/21 14:48:19 [transform_engine] {"stage_name":"transform_engine","events_processed":418,"events_dropped":0,"avg_latency_ms":266.4733090780161,"throughput_eps":0,"last_update":"2026-03-21T14:48:14.210612366Z"} +2026/03/21 14:48:19 ───────────────────────────────────────────────── +2026/03/21 14:48:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:48:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:48:19.075723907Z"} +2026/03/21 14:48:24 [detection_layer] {"stage_name":"detection_layer","events_processed":418,"events_dropped":0,"avg_latency_ms":18.9582425685318,"throughput_eps":0,"last_update":"2026-03-21T14:48:19.209943342Z"} +2026/03/21 14:48:24 [transform_engine] {"stage_name":"transform_engine","events_processed":419,"events_dropped":0,"avg_latency_ms":737.2743354624129,"throughput_eps":0,"last_update":"2026-03-21T14:48:21.830407056Z"} +2026/03/21 14:48:24 [log_collector] {"stage_name":"log_collector","events_processed":20162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4032.4,"last_update":"2026-03-21T14:48:19.068591043Z"} +2026/03/21 14:48:24 [metric_collector] {"stage_name":"metric_collector","events_processed":12569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2513.8,"last_update":"2026-03-21T14:48:19.068842104Z"} +2026/03/21 14:48:24 ───────────────────────────────────────────────── +2026/03/21 14:48:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:48:29 [log_collector] {"stage_name":"log_collector","events_processed":20171,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4034.2,"last_update":"2026-03-21T14:48:24.06860159Z"} +2026/03/21 14:48:29 [metric_collector] {"stage_name":"metric_collector","events_processed":12574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2514.8,"last_update":"2026-03-21T14:48:24.068869784Z"} +2026/03/21 14:48:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:48:24.075007742Z"} +2026/03/21 14:48:29 [detection_layer] {"stage_name":"detection_layer","events_processed":419,"events_dropped":0,"avg_latency_ms":18.044334454825442,"throughput_eps":0,"last_update":"2026-03-21T14:48:24.210392749Z"} +2026/03/21 14:48:29 [transform_engine] {"stage_name":"transform_engine","events_processed":419,"events_dropped":0,"avg_latency_ms":737.2743354624129,"throughput_eps":0,"last_update":"2026-03-21T14:48:24.210411846Z"} +2026/03/21 14:48:29 ───────────────────────────────────────────────── +2026/03/21 14:48:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:48:34 [metric_collector] {"stage_name":"metric_collector","events_processed":12579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2515.8,"last_update":"2026-03-21T14:48:29.069268321Z"} +2026/03/21 14:48:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:48:29.077481073Z"} +2026/03/21 14:48:34 [detection_layer] {"stage_name":"detection_layer","events_processed":419,"events_dropped":0,"avg_latency_ms":18.044334454825442,"throughput_eps":0,"last_update":"2026-03-21T14:48:29.210878573Z"} +2026/03/21 14:48:34 [transform_engine] {"stage_name":"transform_engine","events_processed":419,"events_dropped":0,"avg_latency_ms":737.2743354624129,"throughput_eps":0,"last_update":"2026-03-21T14:48:29.209647074Z"} +2026/03/21 14:48:34 [log_collector] {"stage_name":"log_collector","events_processed":20173,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4034.6,"last_update":"2026-03-21T14:48:29.068773874Z"} +2026/03/21 14:48:34 ───────────────────────────────────────────────── +2026/03/21 14:48:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:48:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5036,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:48:34.080502242Z"} +2026/03/21 14:48:39 [detection_layer] {"stage_name":"detection_layer","events_processed":419,"events_dropped":0,"avg_latency_ms":18.044334454825442,"throughput_eps":0,"last_update":"2026-03-21T14:48:34.210556218Z"} +2026/03/21 14:48:39 [transform_engine] {"stage_name":"transform_engine","events_processed":419,"events_dropped":0,"avg_latency_ms":737.2743354624129,"throughput_eps":0,"last_update":"2026-03-21T14:48:34.210574383Z"} +2026/03/21 14:48:39 [log_collector] {"stage_name":"log_collector","events_processed":20232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4046.4,"last_update":"2026-03-21T14:48:34.068627536Z"} +2026/03/21 14:48:39 [metric_collector] {"stage_name":"metric_collector","events_processed":12584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2516.8,"last_update":"2026-03-21T14:48:34.068954702Z"} +2026/03/21 14:48:39 ───────────────────────────────────────────────── +Saved state: 17 clusters, 20511 messages, reason: none +2026/03/21 14:48:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:48:44 [log_collector] {"stage_name":"log_collector","events_processed":20508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4101.6,"last_update":"2026-03-21T14:48:39.068624409Z"} +2026/03/21 14:48:44 [metric_collector] {"stage_name":"metric_collector","events_processed":12589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2517.8,"last_update":"2026-03-21T14:48:39.068843459Z"} +2026/03/21 14:48:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:48:39.075472026Z"} +2026/03/21 14:48:44 [detection_layer] {"stage_name":"detection_layer","events_processed":419,"events_dropped":0,"avg_latency_ms":18.044334454825442,"throughput_eps":0,"last_update":"2026-03-21T14:48:39.210904856Z"} +2026/03/21 14:48:44 [transform_engine] {"stage_name":"transform_engine","events_processed":419,"events_dropped":0,"avg_latency_ms":737.2743354624129,"throughput_eps":0,"last_update":"2026-03-21T14:48:39.209731147Z"} +2026/03/21 14:48:44 ───────────────────────────────────────────────── +2026/03/21 14:48:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:48:49 [detection_layer] {"stage_name":"detection_layer","events_processed":419,"events_dropped":0,"avg_latency_ms":18.044334454825442,"throughput_eps":0,"last_update":"2026-03-21T14:48:44.210397235Z"} +2026/03/21 14:48:49 [transform_engine] {"stage_name":"transform_engine","events_processed":419,"events_dropped":0,"avg_latency_ms":737.2743354624129,"throughput_eps":0,"last_update":"2026-03-21T14:48:44.210408536Z"} +2026/03/21 14:48:49 [log_collector] {"stage_name":"log_collector","events_processed":20518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4103.6,"last_update":"2026-03-21T14:48:44.068798072Z"} +2026/03/21 14:48:49 [metric_collector] {"stage_name":"metric_collector","events_processed":12594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2518.8,"last_update":"2026-03-21T14:48:44.069018575Z"} +2026/03/21 14:48:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:48:44.078038623Z"} +2026/03/21 14:48:49 ───────────────────────────────────────────────── +2026/03/21 14:48:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:48:54 [log_collector] {"stage_name":"log_collector","events_processed":20518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4103.6,"last_update":"2026-03-21T14:48:49.069001702Z"} +2026/03/21 14:48:54 [metric_collector] {"stage_name":"metric_collector","events_processed":12599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2519.8,"last_update":"2026-03-21T14:48:49.069494646Z"} +2026/03/21 14:48:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:48:49.079205819Z"} +2026/03/21 14:48:54 [detection_layer] {"stage_name":"detection_layer","events_processed":419,"events_dropped":0,"avg_latency_ms":18.044334454825442,"throughput_eps":0,"last_update":"2026-03-21T14:48:49.210522793Z"} +2026/03/21 14:48:54 [transform_engine] {"stage_name":"transform_engine","events_processed":420,"events_dropped":0,"avg_latency_ms":613.7683037699303,"throughput_eps":0,"last_update":"2026-03-21T14:48:49.330223076Z"} +2026/03/21 14:48:54 ───────────────────────────────────────────────── +2026/03/21 14:48:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:48:59 [transform_engine] {"stage_name":"transform_engine","events_processed":420,"events_dropped":0,"avg_latency_ms":613.7683037699303,"throughput_eps":0,"last_update":"2026-03-21T14:48:54.210643882Z"} +2026/03/21 14:48:59 [log_collector] {"stage_name":"log_collector","events_processed":20518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4103.6,"last_update":"2026-03-21T14:48:54.068712293Z"} +2026/03/21 14:48:59 [metric_collector] {"stage_name":"metric_collector","events_processed":12604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2520.8,"last_update":"2026-03-21T14:48:54.068996218Z"} +2026/03/21 14:48:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:48:54.077424542Z"} +2026/03/21 14:48:59 [detection_layer] {"stage_name":"detection_layer","events_processed":420,"events_dropped":0,"avg_latency_ms":18.118244163860354,"throughput_eps":0,"last_update":"2026-03-21T14:48:54.210669161Z"} +2026/03/21 14:48:59 ───────────────────────────────────────────────── +2026/03/21 14:49:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:49:04 [metric_collector] {"stage_name":"metric_collector","events_processed":12609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2521.8,"last_update":"2026-03-21T14:48:59.068891841Z"} +2026/03/21 14:49:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:48:59.075417933Z"} +2026/03/21 14:49:04 [detection_layer] {"stage_name":"detection_layer","events_processed":420,"events_dropped":0,"avg_latency_ms":18.118244163860354,"throughput_eps":0,"last_update":"2026-03-21T14:48:59.210462527Z"} +2026/03/21 14:49:04 [transform_engine] {"stage_name":"transform_engine","events_processed":420,"events_dropped":0,"avg_latency_ms":613.7683037699303,"throughput_eps":0,"last_update":"2026-03-21T14:48:59.210446327Z"} +2026/03/21 14:49:04 [log_collector] {"stage_name":"log_collector","events_processed":20521,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4104.2,"last_update":"2026-03-21T14:48:59.068663103Z"} +2026/03/21 14:49:04 ───────────────────────────────────────────────── +2026/03/21 14:49:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:49:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5048,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:49:04.076436767Z"} +2026/03/21 14:49:09 [detection_layer] {"stage_name":"detection_layer","events_processed":420,"events_dropped":0,"avg_latency_ms":18.118244163860354,"throughput_eps":0,"last_update":"2026-03-21T14:49:04.210630973Z"} +2026/03/21 14:49:09 [transform_engine] {"stage_name":"transform_engine","events_processed":420,"events_dropped":0,"avg_latency_ms":613.7683037699303,"throughput_eps":0,"last_update":"2026-03-21T14:49:04.210704403Z"} +2026/03/21 14:49:09 [log_collector] {"stage_name":"log_collector","events_processed":20521,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4104.2,"last_update":"2026-03-21T14:49:04.068709134Z"} +2026/03/21 14:49:09 [metric_collector] {"stage_name":"metric_collector","events_processed":12614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2522.8,"last_update":"2026-03-21T14:49:04.069019538Z"} +2026/03/21 14:49:09 ───────────────────────────────────────────────── +2026/03/21 14:49:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:49:14 [log_collector] {"stage_name":"log_collector","events_processed":20546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.2,"last_update":"2026-03-21T14:49:14.068154372Z"} +2026/03/21 14:49:14 [metric_collector] {"stage_name":"metric_collector","events_processed":12619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2523.8,"last_update":"2026-03-21T14:49:09.069195306Z"} +2026/03/21 14:49:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5050,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:49:09.077510344Z"} +2026/03/21 14:49:14 [detection_layer] {"stage_name":"detection_layer","events_processed":420,"events_dropped":0,"avg_latency_ms":18.118244163860354,"throughput_eps":0,"last_update":"2026-03-21T14:49:09.210909829Z"} +2026/03/21 14:49:14 [transform_engine] {"stage_name":"transform_engine","events_processed":420,"events_dropped":0,"avg_latency_ms":613.7683037699303,"throughput_eps":0,"last_update":"2026-03-21T14:49:09.209749326Z"} +2026/03/21 14:49:14 ───────────────────────────────────────────────── +2026/03/21 14:49:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:49:19 [log_collector] {"stage_name":"log_collector","events_processed":20546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.2,"last_update":"2026-03-21T14:49:14.068154372Z"} +2026/03/21 14:49:19 [metric_collector] {"stage_name":"metric_collector","events_processed":12624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2524.8,"last_update":"2026-03-21T14:49:14.068616728Z"} +2026/03/21 14:49:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:49:14.074886548Z"} +2026/03/21 14:49:19 [detection_layer] {"stage_name":"detection_layer","events_processed":420,"events_dropped":0,"avg_latency_ms":18.118244163860354,"throughput_eps":0,"last_update":"2026-03-21T14:49:14.210196261Z"} +2026/03/21 14:49:19 [transform_engine] {"stage_name":"transform_engine","events_processed":420,"events_dropped":0,"avg_latency_ms":613.7683037699303,"throughput_eps":0,"last_update":"2026-03-21T14:49:14.210167837Z"} +2026/03/21 14:49:19 ───────────────────────────────────────────────── +2026/03/21 14:49:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:49:24 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-21T14:49:19.068997233Z"} +2026/03/21 14:49:24 [metric_collector] {"stage_name":"metric_collector","events_processed":12629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2525.8,"last_update":"2026-03-21T14:49:19.069546525Z"} +2026/03/21 14:49:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:49:19.078711872Z"} +2026/03/21 14:49:24 [detection_layer] {"stage_name":"detection_layer","events_processed":420,"events_dropped":0,"avg_latency_ms":18.118244163860354,"throughput_eps":0,"last_update":"2026-03-21T14:49:19.209975334Z"} +2026/03/21 14:49:24 [transform_engine] {"stage_name":"transform_engine","events_processed":421,"events_dropped":0,"avg_latency_ms":514.4102386159443,"throughput_eps":0,"last_update":"2026-03-21T14:49:19.326974472Z"} +2026/03/21 14:49:24 ───────────────────────────────────────────────── +2026/03/21 14:49:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:49:29 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-21T14:49:24.068688477Z"} +2026/03/21 14:49:29 [metric_collector] {"stage_name":"metric_collector","events_processed":12634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2526.8,"last_update":"2026-03-21T14:49:24.068926624Z"} +2026/03/21 14:49:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5056,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:49:24.076984078Z"} +2026/03/21 14:49:29 [detection_layer] {"stage_name":"detection_layer","events_processed":421,"events_dropped":0,"avg_latency_ms":18.258140531088284,"throughput_eps":0,"last_update":"2026-03-21T14:49:24.210290594Z"} +2026/03/21 14:49:29 [transform_engine] {"stage_name":"transform_engine","events_processed":421,"events_dropped":0,"avg_latency_ms":514.4102386159443,"throughput_eps":0,"last_update":"2026-03-21T14:49:24.210270455Z"} +2026/03/21 14:49:29 ───────────────────────────────────────────────── +2026/03/21 14:49:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:49:34 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-21T14:49:29.068769665Z"} +2026/03/21 14:49:34 [metric_collector] {"stage_name":"metric_collector","events_processed":12639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2527.8,"last_update":"2026-03-21T14:49:29.06905939Z"} +2026/03/21 14:49:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:49:29.078370075Z"} +2026/03/21 14:49:34 [detection_layer] {"stage_name":"detection_layer","events_processed":421,"events_dropped":0,"avg_latency_ms":18.258140531088284,"throughput_eps":0,"last_update":"2026-03-21T14:49:29.21063676Z"} +2026/03/21 14:49:34 [transform_engine] {"stage_name":"transform_engine","events_processed":421,"events_dropped":0,"avg_latency_ms":514.4102386159443,"throughput_eps":0,"last_update":"2026-03-21T14:49:29.210614988Z"} +2026/03/21 14:49:34 ───────────────────────────────────────────────── +2026/03/21 14:49:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:49:39 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-21T14:49:34.068783183Z"} +2026/03/21 14:49:39 [metric_collector] {"stage_name":"metric_collector","events_processed":12644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2528.8,"last_update":"2026-03-21T14:49:34.069132132Z"} +2026/03/21 14:49:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:49:34.077889167Z"} +2026/03/21 14:49:39 [detection_layer] {"stage_name":"detection_layer","events_processed":421,"events_dropped":0,"avg_latency_ms":18.258140531088284,"throughput_eps":0,"last_update":"2026-03-21T14:49:34.210169998Z"} +2026/03/21 14:49:39 [transform_engine] {"stage_name":"transform_engine","events_processed":421,"events_dropped":0,"avg_latency_ms":514.4102386159443,"throughput_eps":0,"last_update":"2026-03-21T14:49:34.210275229Z"} +2026/03/21 14:49:39 ───────────────────────────────────────────────── +2026/03/21 14:49:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:49:44 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-21T14:49:39.068165803Z"} +2026/03/21 14:49:44 [metric_collector] {"stage_name":"metric_collector","events_processed":12649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2529.8,"last_update":"2026-03-21T14:49:39.068636495Z"} +2026/03/21 14:49:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5062,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:49:39.077397317Z"} +2026/03/21 14:49:44 [detection_layer] {"stage_name":"detection_layer","events_processed":421,"events_dropped":0,"avg_latency_ms":18.258140531088284,"throughput_eps":0,"last_update":"2026-03-21T14:49:39.210823983Z"} +2026/03/21 14:49:44 [transform_engine] {"stage_name":"transform_engine","events_processed":421,"events_dropped":0,"avg_latency_ms":514.4102386159443,"throughput_eps":0,"last_update":"2026-03-21T14:49:39.210722869Z"} +2026/03/21 14:49:44 ───────────────────────────────────────────────── +2026/03/21 14:49:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:49:49 [detection_layer] {"stage_name":"detection_layer","events_processed":421,"events_dropped":0,"avg_latency_ms":18.258140531088284,"throughput_eps":0,"last_update":"2026-03-21T14:49:44.21089615Z"} +2026/03/21 14:49:49 [transform_engine] {"stage_name":"transform_engine","events_processed":421,"events_dropped":0,"avg_latency_ms":514.4102386159443,"throughput_eps":0,"last_update":"2026-03-21T14:49:44.209721791Z"} +2026/03/21 14:49:49 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-21T14:49:44.068839443Z"} +2026/03/21 14:49:49 [metric_collector] {"stage_name":"metric_collector","events_processed":12654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2530.8,"last_update":"2026-03-21T14:49:44.069099341Z"} +2026/03/21 14:49:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:49:44.078528904Z"} +2026/03/21 14:49:49 ───────────────────────────────────────────────── +2026/03/21 14:49:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:49:54 [metric_collector] {"stage_name":"metric_collector","events_processed":12659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2531.8,"last_update":"2026-03-21T14:49:49.069072328Z"} +2026/03/21 14:49:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:49:49.077032586Z"} +2026/03/21 14:49:54 [detection_layer] {"stage_name":"detection_layer","events_processed":421,"events_dropped":0,"avg_latency_ms":18.258140531088284,"throughput_eps":0,"last_update":"2026-03-21T14:49:49.210323111Z"} +2026/03/21 14:49:54 [transform_engine] {"stage_name":"transform_engine","events_processed":422,"events_dropped":0,"avg_latency_ms":427.4153196927555,"throughput_eps":0,"last_update":"2026-03-21T14:49:49.289835552Z"} +2026/03/21 14:49:54 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-21T14:49:49.068803773Z"} +2026/03/21 14:49:54 ───────────────────────────────────────────────── +2026/03/21 14:49:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:49:59 [detection_layer] {"stage_name":"detection_layer","events_processed":422,"events_dropped":0,"avg_latency_ms":19.39779422487063,"throughput_eps":0,"last_update":"2026-03-21T14:49:54.209889257Z"} +2026/03/21 14:49:59 [transform_engine] {"stage_name":"transform_engine","events_processed":422,"events_dropped":0,"avg_latency_ms":427.4153196927555,"throughput_eps":0,"last_update":"2026-03-21T14:49:54.209733128Z"} +2026/03/21 14:49:59 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-21T14:49:54.068556908Z"} +2026/03/21 14:49:59 [metric_collector] {"stage_name":"metric_collector","events_processed":12664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2532.8,"last_update":"2026-03-21T14:49:54.06886127Z"} +2026/03/21 14:49:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:49:54.078628851Z"} +2026/03/21 14:49:59 ───────────────────────────────────────────────── +2026/03/21 14:50:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:50:04 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-21T14:49:59.069030017Z"} +2026/03/21 14:50:04 [metric_collector] {"stage_name":"metric_collector","events_processed":12669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2533.8,"last_update":"2026-03-21T14:49:59.069623735Z"} +2026/03/21 14:50:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:49:59.078222176Z"} +2026/03/21 14:50:04 [detection_layer] {"stage_name":"detection_layer","events_processed":422,"events_dropped":0,"avg_latency_ms":19.39779422487063,"throughput_eps":0,"last_update":"2026-03-21T14:49:59.210655499Z"} +2026/03/21 14:50:04 [transform_engine] {"stage_name":"transform_engine","events_processed":422,"events_dropped":0,"avg_latency_ms":427.4153196927555,"throughput_eps":0,"last_update":"2026-03-21T14:49:59.210546089Z"} +2026/03/21 14:50:04 ───────────────────────────────────────────────── +2026/03/21 14:50:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:50:09 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-21T14:50:04.069217831Z"} +2026/03/21 14:50:09 [metric_collector] {"stage_name":"metric_collector","events_processed":12674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2534.8,"last_update":"2026-03-21T14:50:04.069422252Z"} +2026/03/21 14:50:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5072,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:50:04.084773879Z"} +2026/03/21 14:50:09 [detection_layer] {"stage_name":"detection_layer","events_processed":422,"events_dropped":0,"avg_latency_ms":19.39779422487063,"throughput_eps":0,"last_update":"2026-03-21T14:50:04.210207473Z"} +2026/03/21 14:50:09 [transform_engine] {"stage_name":"transform_engine","events_processed":422,"events_dropped":0,"avg_latency_ms":427.4153196927555,"throughput_eps":0,"last_update":"2026-03-21T14:50:04.210283208Z"} +2026/03/21 14:50:09 ───────────────────────────────────────────────── +2026/03/21 14:50:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:50:14 [detection_layer] {"stage_name":"detection_layer","events_processed":422,"events_dropped":0,"avg_latency_ms":19.39779422487063,"throughput_eps":0,"last_update":"2026-03-21T14:50:09.21070092Z"} +2026/03/21 14:50:14 [transform_engine] {"stage_name":"transform_engine","events_processed":422,"events_dropped":0,"avg_latency_ms":427.4153196927555,"throughput_eps":0,"last_update":"2026-03-21T14:50:09.210730578Z"} +2026/03/21 14:50:14 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-21T14:50:14.068224578Z"} +2026/03/21 14:50:14 [metric_collector] {"stage_name":"metric_collector","events_processed":12679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2535.8,"last_update":"2026-03-21T14:50:09.069026315Z"} +2026/03/21 14:50:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:50:09.077046208Z"} +2026/03/21 14:50:14 ───────────────────────────────────────────────── +2026/03/21 14:50:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:50:19 [transform_engine] {"stage_name":"transform_engine","events_processed":422,"events_dropped":0,"avg_latency_ms":427.4153196927555,"throughput_eps":0,"last_update":"2026-03-21T14:50:14.210673446Z"} +2026/03/21 14:50:19 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-21T14:50:14.068224578Z"} +2026/03/21 14:50:19 [metric_collector] {"stage_name":"metric_collector","events_processed":12684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2536.8,"last_update":"2026-03-21T14:50:14.068847241Z"} +2026/03/21 14:50:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5076,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:50:14.078219574Z"} +2026/03/21 14:50:19 [detection_layer] {"stage_name":"detection_layer","events_processed":422,"events_dropped":0,"avg_latency_ms":19.39779422487063,"throughput_eps":0,"last_update":"2026-03-21T14:50:14.210725005Z"} +2026/03/21 14:50:19 ───────────────────────────────────────────────── +2026/03/21 14:50:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:50:24 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-21T14:50:19.068512357Z"} +2026/03/21 14:50:24 [metric_collector] {"stage_name":"metric_collector","events_processed":12689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2537.8,"last_update":"2026-03-21T14:50:19.068912824Z"} +2026/03/21 14:50:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:50:19.07743045Z"} +2026/03/21 14:50:24 [detection_layer] {"stage_name":"detection_layer","events_processed":422,"events_dropped":0,"avg_latency_ms":19.39779422487063,"throughput_eps":0,"last_update":"2026-03-21T14:50:19.21081767Z"} +2026/03/21 14:50:24 [transform_engine] {"stage_name":"transform_engine","events_processed":423,"events_dropped":0,"avg_latency_ms":356.2165801542044,"throughput_eps":0,"last_update":"2026-03-21T14:50:19.281109839Z"} +2026/03/21 14:50:24 ───────────────────────────────────────────────── +Saved state: 17 clusters, 20549 messages, reason: none +2026/03/21 14:50:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:50:29 [detection_layer] {"stage_name":"detection_layer","events_processed":423,"events_dropped":0,"avg_latency_ms":19.775225979896504,"throughput_eps":0,"last_update":"2026-03-21T14:50:24.210123897Z"} +2026/03/21 14:50:29 [transform_engine] {"stage_name":"transform_engine","events_processed":423,"events_dropped":0,"avg_latency_ms":356.2165801542044,"throughput_eps":0,"last_update":"2026-03-21T14:50:24.210136201Z"} +2026/03/21 14:50:29 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-21T14:50:24.068702237Z"} +2026/03/21 14:50:29 [metric_collector] {"stage_name":"metric_collector","events_processed":12694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2538.8,"last_update":"2026-03-21T14:50:24.069616759Z"} +2026/03/21 14:50:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:50:24.077899995Z"} +2026/03/21 14:50:29 ───────────────────────────────────────────────── +2026/03/21 14:50:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:50:34 [log_collector] {"stage_name":"log_collector","events_processed":20551,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4110.2,"last_update":"2026-03-21T14:50:29.06853428Z"} +2026/03/21 14:50:34 [metric_collector] {"stage_name":"metric_collector","events_processed":12699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2539.8,"last_update":"2026-03-21T14:50:29.068761024Z"} +2026/03/21 14:50:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5082,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:50:29.075628991Z"} +2026/03/21 14:50:34 [detection_layer] {"stage_name":"detection_layer","events_processed":423,"events_dropped":0,"avg_latency_ms":19.775225979896504,"throughput_eps":0,"last_update":"2026-03-21T14:50:29.210925117Z"} +2026/03/21 14:50:34 [transform_engine] {"stage_name":"transform_engine","events_processed":423,"events_dropped":0,"avg_latency_ms":356.2165801542044,"throughput_eps":0,"last_update":"2026-03-21T14:50:29.209819078Z"} +2026/03/21 14:50:34 ───────────────────────────────────────────────── +2026/03/21 14:50:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:50:39 [log_collector] {"stage_name":"log_collector","events_processed":20551,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4110.2,"last_update":"2026-03-21T14:50:34.068139096Z"} +2026/03/21 14:50:39 [metric_collector] {"stage_name":"metric_collector","events_processed":12704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2540.8,"last_update":"2026-03-21T14:50:34.068303291Z"} +2026/03/21 14:50:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:50:34.075553489Z"} +2026/03/21 14:50:39 [detection_layer] {"stage_name":"detection_layer","events_processed":423,"events_dropped":0,"avg_latency_ms":19.775225979896504,"throughput_eps":0,"last_update":"2026-03-21T14:50:34.210825449Z"} +2026/03/21 14:50:39 [transform_engine] {"stage_name":"transform_engine","events_processed":423,"events_dropped":0,"avg_latency_ms":356.2165801542044,"throughput_eps":0,"last_update":"2026-03-21T14:50:34.209696306Z"} +2026/03/21 14:50:39 ───────────────────────────────────────────────── +2026/03/21 14:50:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:50:44 [log_collector] {"stage_name":"log_collector","events_processed":20551,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4110.2,"last_update":"2026-03-21T14:50:39.068539174Z"} +2026/03/21 14:50:44 [metric_collector] {"stage_name":"metric_collector","events_processed":12709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2541.8,"last_update":"2026-03-21T14:50:39.06890743Z"} +2026/03/21 14:50:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:50:39.075568189Z"} +2026/03/21 14:50:44 [detection_layer] {"stage_name":"detection_layer","events_processed":423,"events_dropped":0,"avg_latency_ms":19.775225979896504,"throughput_eps":0,"last_update":"2026-03-21T14:50:39.21088254Z"} +2026/03/21 14:50:44 [transform_engine] {"stage_name":"transform_engine","events_processed":423,"events_dropped":0,"avg_latency_ms":356.2165801542044,"throughput_eps":0,"last_update":"2026-03-21T14:50:39.209796229Z"} +2026/03/21 14:50:44 ───────────────────────────────────────────────── +2026/03/21 14:50:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:50:49 [metric_collector] {"stage_name":"metric_collector","events_processed":12714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2542.8,"last_update":"2026-03-21T14:50:44.069189569Z"} +2026/03/21 14:50:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:50:44.076366587Z"} +2026/03/21 14:50:49 [detection_layer] {"stage_name":"detection_layer","events_processed":423,"events_dropped":0,"avg_latency_ms":19.775225979896504,"throughput_eps":0,"last_update":"2026-03-21T14:50:44.210572434Z"} +2026/03/21 14:50:49 [transform_engine] {"stage_name":"transform_engine","events_processed":423,"events_dropped":0,"avg_latency_ms":356.2165801542044,"throughput_eps":0,"last_update":"2026-03-21T14:50:44.210591511Z"} +2026/03/21 14:50:49 [log_collector] {"stage_name":"log_collector","events_processed":20551,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4110.2,"last_update":"2026-03-21T14:50:44.068780876Z"} +2026/03/21 14:50:49 ───────────────────────────────────────────────── +2026/03/21 14:50:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:50:54 [log_collector] {"stage_name":"log_collector","events_processed":20551,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4110.2,"last_update":"2026-03-21T14:50:49.068671246Z"} +2026/03/21 14:50:54 [metric_collector] {"stage_name":"metric_collector","events_processed":12719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2543.8,"last_update":"2026-03-21T14:50:49.068798299Z"} +2026/03/21 14:50:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:50:49.076087351Z"} +2026/03/21 14:50:54 [detection_layer] {"stage_name":"detection_layer","events_processed":423,"events_dropped":0,"avg_latency_ms":19.775225979896504,"throughput_eps":0,"last_update":"2026-03-21T14:50:49.210294311Z"} +2026/03/21 14:50:54 [transform_engine] {"stage_name":"transform_engine","events_processed":424,"events_dropped":0,"avg_latency_ms":305.99188232336354,"throughput_eps":0,"last_update":"2026-03-21T14:50:49.315409936Z"} +2026/03/21 14:50:54 ───────────────────────────────────────────────── +2026/03/21 14:50:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:50:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:50:54.075918507Z"} +2026/03/21 14:50:59 [detection_layer] {"stage_name":"detection_layer","events_processed":424,"events_dropped":0,"avg_latency_ms":19.003624783917203,"throughput_eps":0,"last_update":"2026-03-21T14:50:54.210151417Z"} +2026/03/21 14:50:59 [transform_engine] {"stage_name":"transform_engine","events_processed":424,"events_dropped":0,"avg_latency_ms":305.99188232336354,"throughput_eps":0,"last_update":"2026-03-21T14:50:54.210160915Z"} +2026/03/21 14:50:59 [log_collector] {"stage_name":"log_collector","events_processed":20551,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4110.2,"last_update":"2026-03-21T14:50:54.068686664Z"} +2026/03/21 14:50:59 [metric_collector] {"stage_name":"metric_collector","events_processed":12724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2544.8,"last_update":"2026-03-21T14:50:54.068922315Z"} +2026/03/21 14:50:59 ───────────────────────────────────────────────── +2026/03/21 14:51:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:51:04 [transform_engine] {"stage_name":"transform_engine","events_processed":424,"events_dropped":0,"avg_latency_ms":305.99188232336354,"throughput_eps":0,"last_update":"2026-03-21T14:50:59.210053024Z"} +2026/03/21 14:51:04 [log_collector] {"stage_name":"log_collector","events_processed":20551,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4110.2,"last_update":"2026-03-21T14:50:59.068573693Z"} +2026/03/21 14:51:04 [metric_collector] {"stage_name":"metric_collector","events_processed":12729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2545.8,"last_update":"2026-03-21T14:50:59.068853268Z"} +2026/03/21 14:51:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:50:59.075816597Z"} +2026/03/21 14:51:04 [detection_layer] {"stage_name":"detection_layer","events_processed":424,"events_dropped":0,"avg_latency_ms":19.003624783917203,"throughput_eps":0,"last_update":"2026-03-21T14:50:59.210041262Z"} +2026/03/21 14:51:04 ───────────────────────────────────────────────── +2026/03/21 14:51:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:51:09 [detection_layer] {"stage_name":"detection_layer","events_processed":424,"events_dropped":0,"avg_latency_ms":19.003624783917203,"throughput_eps":0,"last_update":"2026-03-21T14:51:04.210147701Z"} +2026/03/21 14:51:09 [transform_engine] {"stage_name":"transform_engine","events_processed":424,"events_dropped":0,"avg_latency_ms":305.99188232336354,"throughput_eps":0,"last_update":"2026-03-21T14:51:04.210159804Z"} +2026/03/21 14:51:09 [log_collector] {"stage_name":"log_collector","events_processed":20551,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4110.2,"last_update":"2026-03-21T14:51:04.069053268Z"} +2026/03/21 14:51:09 [metric_collector] {"stage_name":"metric_collector","events_processed":12734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2546.8,"last_update":"2026-03-21T14:51:04.069257759Z"} +2026/03/21 14:51:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:51:04.077894734Z"} +2026/03/21 14:51:09 ───────────────────────────────────────────────── +2026/03/21 14:51:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:51:14 [log_collector] {"stage_name":"log_collector","events_processed":20551,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4110.2,"last_update":"2026-03-21T14:51:09.06849838Z"} +2026/03/21 14:51:14 [metric_collector] {"stage_name":"metric_collector","events_processed":12739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2547.8,"last_update":"2026-03-21T14:51:09.068742648Z"} +2026/03/21 14:51:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:51:09.075337159Z"} +2026/03/21 14:51:14 [detection_layer] {"stage_name":"detection_layer","events_processed":424,"events_dropped":0,"avg_latency_ms":19.003624783917203,"throughput_eps":0,"last_update":"2026-03-21T14:51:09.210461947Z"} +2026/03/21 14:51:14 [transform_engine] {"stage_name":"transform_engine","events_processed":424,"events_dropped":0,"avg_latency_ms":305.99188232336354,"throughput_eps":0,"last_update":"2026-03-21T14:51:09.210471727Z"} +2026/03/21 14:51:14 ───────────────────────────────────────────────── +2026/03/21 14:51:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:51:19 [log_collector] {"stage_name":"log_collector","events_processed":20561,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4112.2,"last_update":"2026-03-21T14:51:14.06809034Z"} +2026/03/21 14:51:19 [metric_collector] {"stage_name":"metric_collector","events_processed":12744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2548.8,"last_update":"2026-03-21T14:51:14.068522648Z"} +2026/03/21 14:51:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:51:14.078168024Z"} +2026/03/21 14:51:19 [detection_layer] {"stage_name":"detection_layer","events_processed":424,"events_dropped":0,"avg_latency_ms":19.003624783917203,"throughput_eps":0,"last_update":"2026-03-21T14:51:14.210380383Z"} +2026/03/21 14:51:19 [transform_engine] {"stage_name":"transform_engine","events_processed":424,"events_dropped":0,"avg_latency_ms":305.99188232336354,"throughput_eps":0,"last_update":"2026-03-21T14:51:14.210390622Z"} +2026/03/21 14:51:19 ───────────────────────────────────────────────── +2026/03/21 14:51:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:51:24 [log_collector] {"stage_name":"log_collector","events_processed":20562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4112.4,"last_update":"2026-03-21T14:51:19.068954597Z"} +2026/03/21 14:51:24 [metric_collector] {"stage_name":"metric_collector","events_processed":12749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2549.8,"last_update":"2026-03-21T14:51:19.069694144Z"} +2026/03/21 14:51:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:51:19.078211859Z"} +2026/03/21 14:51:24 [detection_layer] {"stage_name":"detection_layer","events_processed":424,"events_dropped":0,"avg_latency_ms":19.003624783917203,"throughput_eps":0,"last_update":"2026-03-21T14:51:19.210435701Z"} +2026/03/21 14:51:24 [transform_engine] {"stage_name":"transform_engine","events_processed":425,"events_dropped":0,"avg_latency_ms":268.0334332586908,"throughput_eps":0,"last_update":"2026-03-21T14:51:19.326657529Z"} +2026/03/21 14:51:24 ───────────────────────────────────────────────── +2026/03/21 14:51:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:51:29 [log_collector] {"stage_name":"log_collector","events_processed":20562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4112.4,"last_update":"2026-03-21T14:51:24.068641779Z"} +2026/03/21 14:51:29 [metric_collector] {"stage_name":"metric_collector","events_processed":12754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2550.8,"last_update":"2026-03-21T14:51:24.069208845Z"} +2026/03/21 14:51:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:51:24.077258926Z"} +2026/03/21 14:51:29 [detection_layer] {"stage_name":"detection_layer","events_processed":425,"events_dropped":0,"avg_latency_ms":18.952197827133762,"throughput_eps":0,"last_update":"2026-03-21T14:51:24.210598744Z"} +2026/03/21 14:51:29 [transform_engine] {"stage_name":"transform_engine","events_processed":425,"events_dropped":0,"avg_latency_ms":268.0334332586908,"throughput_eps":0,"last_update":"2026-03-21T14:51:24.210506549Z"} +2026/03/21 14:51:29 ───────────────────────────────────────────────── +2026/03/21 14:51:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:51:34 [log_collector] {"stage_name":"log_collector","events_processed":20562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4112.4,"last_update":"2026-03-21T14:51:29.068136943Z"} +2026/03/21 14:51:34 [metric_collector] {"stage_name":"metric_collector","events_processed":12759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2551.8,"last_update":"2026-03-21T14:51:29.068394115Z"} +2026/03/21 14:51:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:51:29.077527391Z"} +2026/03/21 14:51:34 [detection_layer] {"stage_name":"detection_layer","events_processed":425,"events_dropped":0,"avg_latency_ms":18.952197827133762,"throughput_eps":0,"last_update":"2026-03-21T14:51:29.210851278Z"} +2026/03/21 14:51:34 [transform_engine] {"stage_name":"transform_engine","events_processed":425,"events_dropped":0,"avg_latency_ms":268.0334332586908,"throughput_eps":0,"last_update":"2026-03-21T14:51:29.209701256Z"} +2026/03/21 14:51:34 ───────────────────────────────────────────────── +2026/03/21 14:51:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:51:39 [log_collector] {"stage_name":"log_collector","events_processed":20562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4112.4,"last_update":"2026-03-21T14:51:34.068086924Z"} +2026/03/21 14:51:39 [metric_collector] {"stage_name":"metric_collector","events_processed":12764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2552.8,"last_update":"2026-03-21T14:51:34.068630606Z"} +2026/03/21 14:51:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:51:34.078412324Z"} +2026/03/21 14:51:39 [detection_layer] {"stage_name":"detection_layer","events_processed":425,"events_dropped":0,"avg_latency_ms":18.952197827133762,"throughput_eps":0,"last_update":"2026-03-21T14:51:34.210600486Z"} +2026/03/21 14:51:39 [transform_engine] {"stage_name":"transform_engine","events_processed":425,"events_dropped":0,"avg_latency_ms":268.0334332586908,"throughput_eps":0,"last_update":"2026-03-21T14:51:34.210642707Z"} +2026/03/21 14:51:39 ───────────────────────────────────────────────── +2026/03/21 14:51:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:51:44 [metric_collector] {"stage_name":"metric_collector","events_processed":12769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2553.8,"last_update":"2026-03-21T14:51:39.069208111Z"} +2026/03/21 14:51:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:51:39.077720196Z"} +2026/03/21 14:51:44 [detection_layer] {"stage_name":"detection_layer","events_processed":425,"events_dropped":0,"avg_latency_ms":18.952197827133762,"throughput_eps":0,"last_update":"2026-03-21T14:51:39.210031134Z"} +2026/03/21 14:51:44 [transform_engine] {"stage_name":"transform_engine","events_processed":425,"events_dropped":0,"avg_latency_ms":268.0334332586908,"throughput_eps":0,"last_update":"2026-03-21T14:51:39.210050111Z"} +2026/03/21 14:51:44 [log_collector] {"stage_name":"log_collector","events_processed":20562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4112.4,"last_update":"2026-03-21T14:51:39.068881005Z"} +2026/03/21 14:51:44 ───────────────────────────────────────────────── +2026/03/21 14:51:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:51:49 [log_collector] {"stage_name":"log_collector","events_processed":20562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4112.4,"last_update":"2026-03-21T14:51:44.06870355Z"} +2026/03/21 14:51:49 [metric_collector] {"stage_name":"metric_collector","events_processed":12774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2554.8,"last_update":"2026-03-21T14:51:44.069323117Z"} +2026/03/21 14:51:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:51:44.078417307Z"} +2026/03/21 14:51:49 [detection_layer] {"stage_name":"detection_layer","events_processed":425,"events_dropped":0,"avg_latency_ms":18.952197827133762,"throughput_eps":0,"last_update":"2026-03-21T14:51:44.210703317Z"} +2026/03/21 14:51:49 [transform_engine] {"stage_name":"transform_engine","events_processed":425,"events_dropped":0,"avg_latency_ms":268.0334332586908,"throughput_eps":0,"last_update":"2026-03-21T14:51:44.210682137Z"} +2026/03/21 14:51:49 ───────────────────────────────────────────────── +2026/03/21 14:51:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:51:54 [detection_layer] {"stage_name":"detection_layer","events_processed":425,"events_dropped":0,"avg_latency_ms":18.952197827133762,"throughput_eps":0,"last_update":"2026-03-21T14:51:49.210833973Z"} +2026/03/21 14:51:54 [transform_engine] {"stage_name":"transform_engine","events_processed":426,"events_dropped":0,"avg_latency_ms":648.2536964069526,"throughput_eps":0,"last_update":"2026-03-21T14:51:51.378895487Z"} +2026/03/21 14:51:54 [log_collector] {"stage_name":"log_collector","events_processed":20562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4112.4,"last_update":"2026-03-21T14:51:49.06912344Z"} +2026/03/21 14:51:54 [metric_collector] {"stage_name":"metric_collector","events_processed":12779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2555.8,"last_update":"2026-03-21T14:51:49.069105967Z"} +2026/03/21 14:51:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:51:49.07861942Z"} +2026/03/21 14:51:54 ───────────────────────────────────────────────── +2026/03/21 14:51:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:51:59 [log_collector] {"stage_name":"log_collector","events_processed":20562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4112.4,"last_update":"2026-03-21T14:51:54.06867239Z"} +2026/03/21 14:51:59 [metric_collector] {"stage_name":"metric_collector","events_processed":12784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2556.8,"last_update":"2026-03-21T14:51:54.069121009Z"} +2026/03/21 14:51:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:51:54.077747193Z"} +2026/03/21 14:51:59 [detection_layer] {"stage_name":"detection_layer","events_processed":426,"events_dropped":0,"avg_latency_ms":19.82575846170701,"throughput_eps":0,"last_update":"2026-03-21T14:51:54.210055926Z"} +2026/03/21 14:51:59 [transform_engine] {"stage_name":"transform_engine","events_processed":426,"events_dropped":0,"avg_latency_ms":648.2536964069526,"throughput_eps":0,"last_update":"2026-03-21T14:51:54.2100107Z"} +2026/03/21 14:51:59 ───────────────────────────────────────────────── +2026/03/21 14:52:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:52:04 [log_collector] {"stage_name":"log_collector","events_processed":20562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4112.4,"last_update":"2026-03-21T14:51:59.068765973Z"} +2026/03/21 14:52:04 [metric_collector] {"stage_name":"metric_collector","events_processed":12789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2557.8,"last_update":"2026-03-21T14:51:59.069139609Z"} +2026/03/21 14:52:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:51:59.07915804Z"} +2026/03/21 14:52:04 [detection_layer] {"stage_name":"detection_layer","events_processed":426,"events_dropped":0,"avg_latency_ms":19.82575846170701,"throughput_eps":0,"last_update":"2026-03-21T14:51:59.210495312Z"} +2026/03/21 14:52:04 [transform_engine] {"stage_name":"transform_engine","events_processed":426,"events_dropped":0,"avg_latency_ms":648.2536964069526,"throughput_eps":0,"last_update":"2026-03-21T14:51:59.210571217Z"} +2026/03/21 14:52:04 ───────────────────────────────────────────────── +2026/03/21 14:52:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:52:09 [metric_collector] {"stage_name":"metric_collector","events_processed":12794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2558.8,"last_update":"2026-03-21T14:52:04.069033055Z"} +2026/03/21 14:52:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:52:04.077005507Z"} +2026/03/21 14:52:09 [detection_layer] {"stage_name":"detection_layer","events_processed":426,"events_dropped":0,"avg_latency_ms":19.82575846170701,"throughput_eps":0,"last_update":"2026-03-21T14:52:04.210288087Z"} +2026/03/21 14:52:09 [transform_engine] {"stage_name":"transform_engine","events_processed":426,"events_dropped":0,"avg_latency_ms":648.2536964069526,"throughput_eps":0,"last_update":"2026-03-21T14:52:04.210240535Z"} +2026/03/21 14:52:09 [log_collector] {"stage_name":"log_collector","events_processed":20562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4112.4,"last_update":"2026-03-21T14:52:04.068744213Z"} +2026/03/21 14:52:09 ───────────────────────────────────────────────── +2026/03/21 14:52:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:52:14 [log_collector] {"stage_name":"log_collector","events_processed":20562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4112.4,"last_update":"2026-03-21T14:52:09.068715329Z"} +2026/03/21 14:52:14 [metric_collector] {"stage_name":"metric_collector","events_processed":12799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2559.8,"last_update":"2026-03-21T14:52:09.069202532Z"} +2026/03/21 14:52:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5122,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:52:09.078124081Z"} +2026/03/21 14:52:14 [detection_layer] {"stage_name":"detection_layer","events_processed":426,"events_dropped":0,"avg_latency_ms":19.82575846170701,"throughput_eps":0,"last_update":"2026-03-21T14:52:09.210401996Z"} +2026/03/21 14:52:14 [transform_engine] {"stage_name":"transform_engine","events_processed":426,"events_dropped":0,"avg_latency_ms":648.2536964069526,"throughput_eps":0,"last_update":"2026-03-21T14:52:09.210385395Z"} +2026/03/21 14:52:14 ───────────────────────────────────────────────── +Saved state: 17 clusters, 20563 messages, reason: none +2026/03/21 14:52:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:52:19 [log_collector] {"stage_name":"log_collector","events_processed":20562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4112.4,"last_update":"2026-03-21T14:52:14.068124434Z"} +2026/03/21 14:52:19 [metric_collector] {"stage_name":"metric_collector","events_processed":12804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2560.8,"last_update":"2026-03-21T14:52:14.068410452Z"} +2026/03/21 14:52:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:52:14.078989407Z"} +2026/03/21 14:52:19 [detection_layer] {"stage_name":"detection_layer","events_processed":426,"events_dropped":0,"avg_latency_ms":19.82575846170701,"throughput_eps":0,"last_update":"2026-03-21T14:52:14.210435167Z"} +2026/03/21 14:52:19 [transform_engine] {"stage_name":"transform_engine","events_processed":426,"events_dropped":0,"avg_latency_ms":648.2536964069526,"throughput_eps":0,"last_update":"2026-03-21T14:52:14.210392255Z"} +2026/03/21 14:52:19 ───────────────────────────────────────────────── +2026/03/21 14:52:19 [ANOMALY] time=2026-03-21T14:52:19Z score=0.8744 method=SEAD details=MAD!:w=0.28,s=0.94 RRCF-fast!:w=0.17,s=0.83 RRCF-mid!:w=0.18,s=0.85 RRCF-slow!:w=0.13,s=0.92 COPOD!:w=0.24,s=0.83 +2026/03/21 14:52:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:52:24 [metric_collector] {"stage_name":"metric_collector","events_processed":12809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2561.8,"last_update":"2026-03-21T14:52:19.069122142Z"} +2026/03/21 14:52:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5126,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:52:19.076140055Z"} +2026/03/21 14:52:24 [detection_layer] {"stage_name":"detection_layer","events_processed":426,"events_dropped":0,"avg_latency_ms":19.82575846170701,"throughput_eps":0,"last_update":"2026-03-21T14:52:19.210320734Z"} +2026/03/21 14:52:24 [transform_engine] {"stage_name":"transform_engine","events_processed":427,"events_dropped":0,"avg_latency_ms":540.940008725562,"throughput_eps":0,"last_update":"2026-03-21T14:52:19.322050207Z"} +2026/03/21 14:52:24 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:52:19.068796899Z"} +2026/03/21 14:52:24 ───────────────────────────────────────────────── +2026/03/21 14:52:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:52:29 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:52:24.068069692Z"} +2026/03/21 14:52:29 [metric_collector] {"stage_name":"metric_collector","events_processed":12814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2562.8,"last_update":"2026-03-21T14:52:24.068378583Z"} +2026/03/21 14:52:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5128,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:52:24.075275394Z"} +2026/03/21 14:52:29 [detection_layer] {"stage_name":"detection_layer","events_processed":427,"events_dropped":0,"avg_latency_ms":18.169200969365612,"throughput_eps":0,"last_update":"2026-03-21T14:52:24.21048312Z"} +2026/03/21 14:52:29 [transform_engine] {"stage_name":"transform_engine","events_processed":427,"events_dropped":0,"avg_latency_ms":540.940008725562,"throughput_eps":0,"last_update":"2026-03-21T14:52:24.210531734Z"} +2026/03/21 14:52:29 ───────────────────────────────────────────────── +2026/03/21 14:52:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:52:34 [detection_layer] {"stage_name":"detection_layer","events_processed":427,"events_dropped":0,"avg_latency_ms":18.169200969365612,"throughput_eps":0,"last_update":"2026-03-21T14:52:29.210151602Z"} +2026/03/21 14:52:34 [transform_engine] {"stage_name":"transform_engine","events_processed":427,"events_dropped":0,"avg_latency_ms":540.940008725562,"throughput_eps":0,"last_update":"2026-03-21T14:52:29.210137976Z"} +2026/03/21 14:52:34 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:52:29.068976845Z"} +2026/03/21 14:52:34 [metric_collector] {"stage_name":"metric_collector","events_processed":12819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2563.8,"last_update":"2026-03-21T14:52:29.069287911Z"} +2026/03/21 14:52:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5130,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:52:29.075865931Z"} +2026/03/21 14:52:34 ───────────────────────────────────────────────── +2026/03/21 14:52:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:52:39 [metric_collector] {"stage_name":"metric_collector","events_processed":12824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2564.8,"last_update":"2026-03-21T14:52:34.068795011Z"} +2026/03/21 14:52:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:52:34.07557565Z"} +2026/03/21 14:52:39 [detection_layer] {"stage_name":"detection_layer","events_processed":427,"events_dropped":0,"avg_latency_ms":18.169200969365612,"throughput_eps":0,"last_update":"2026-03-21T14:52:34.211398173Z"} +2026/03/21 14:52:39 [transform_engine] {"stage_name":"transform_engine","events_processed":427,"events_dropped":0,"avg_latency_ms":540.940008725562,"throughput_eps":0,"last_update":"2026-03-21T14:52:34.209710291Z"} +2026/03/21 14:52:39 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:52:34.068591491Z"} +2026/03/21 14:52:39 ───────────────────────────────────────────────── +2026/03/21 14:52:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:52:44 [detection_layer] {"stage_name":"detection_layer","events_processed":427,"events_dropped":0,"avg_latency_ms":18.169200969365612,"throughput_eps":0,"last_update":"2026-03-21T14:52:39.209986591Z"} +2026/03/21 14:52:44 [transform_engine] {"stage_name":"transform_engine","events_processed":427,"events_dropped":0,"avg_latency_ms":540.940008725562,"throughput_eps":0,"last_update":"2026-03-21T14:52:39.210007631Z"} +2026/03/21 14:52:44 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:52:39.068609708Z"} +2026/03/21 14:52:44 [metric_collector] {"stage_name":"metric_collector","events_processed":12829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2565.8,"last_update":"2026-03-21T14:52:39.068891117Z"} +2026/03/21 14:52:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:52:39.07577363Z"} +2026/03/21 14:52:44 ───────────────────────────────────────────────── +2026/03/21 14:52:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:52:49 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:52:44.068124782Z"} +2026/03/21 14:52:49 [metric_collector] {"stage_name":"metric_collector","events_processed":12834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2566.8,"last_update":"2026-03-21T14:52:44.068227759Z"} +2026/03/21 14:52:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:52:44.075790485Z"} +2026/03/21 14:52:49 [detection_layer] {"stage_name":"detection_layer","events_processed":427,"events_dropped":0,"avg_latency_ms":18.169200969365612,"throughput_eps":0,"last_update":"2026-03-21T14:52:44.210028704Z"} +2026/03/21 14:52:49 [transform_engine] {"stage_name":"transform_engine","events_processed":427,"events_dropped":0,"avg_latency_ms":540.940008725562,"throughput_eps":0,"last_update":"2026-03-21T14:52:44.209709323Z"} +2026/03/21 14:52:49 ───────────────────────────────────────────────── +2026/03/21 14:52:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:52:54 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:52:49.06805217Z"} +2026/03/21 14:52:54 [metric_collector] {"stage_name":"metric_collector","events_processed":12839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2567.8,"last_update":"2026-03-21T14:52:49.068337527Z"} +2026/03/21 14:52:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:52:49.077895606Z"} +2026/03/21 14:52:54 [detection_layer] {"stage_name":"detection_layer","events_processed":427,"events_dropped":0,"avg_latency_ms":18.169200969365612,"throughput_eps":0,"last_update":"2026-03-21T14:52:49.210145056Z"} +2026/03/21 14:52:54 [transform_engine] {"stage_name":"transform_engine","events_processed":428,"events_dropped":0,"avg_latency_ms":447.3998855804497,"throughput_eps":0,"last_update":"2026-03-21T14:52:49.283342498Z"} +2026/03/21 14:52:54 ───────────────────────────────────────────────── +2026/03/21 14:52:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:52:59 [detection_layer] {"stage_name":"detection_layer","events_processed":428,"events_dropped":0,"avg_latency_ms":18.23942617549249,"throughput_eps":0,"last_update":"2026-03-21T14:52:54.210837922Z"} +2026/03/21 14:52:59 [transform_engine] {"stage_name":"transform_engine","events_processed":428,"events_dropped":0,"avg_latency_ms":447.3998855804497,"throughput_eps":0,"last_update":"2026-03-21T14:52:54.209709681Z"} +2026/03/21 14:52:59 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:52:54.068172991Z"} +2026/03/21 14:52:59 [metric_collector] {"stage_name":"metric_collector","events_processed":12844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2568.8,"last_update":"2026-03-21T14:52:54.06841236Z"} +2026/03/21 14:52:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:52:54.075547788Z"} +2026/03/21 14:52:59 ───────────────────────────────────────────────── +2026/03/21 14:53:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:53:04 [metric_collector] {"stage_name":"metric_collector","events_processed":12849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2569.8,"last_update":"2026-03-21T14:52:59.068498104Z"} +2026/03/21 14:53:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:52:59.076178556Z"} +2026/03/21 14:53:04 [detection_layer] {"stage_name":"detection_layer","events_processed":428,"events_dropped":0,"avg_latency_ms":18.23942617549249,"throughput_eps":0,"last_update":"2026-03-21T14:52:59.210374795Z"} +2026/03/21 14:53:04 [transform_engine] {"stage_name":"transform_engine","events_processed":428,"events_dropped":0,"avg_latency_ms":447.3998855804497,"throughput_eps":0,"last_update":"2026-03-21T14:52:59.210392818Z"} +2026/03/21 14:53:04 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:52:59.068158363Z"} +2026/03/21 14:53:04 ───────────────────────────────────────────────── +2026/03/21 14:53:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:53:09 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:53:04.068204194Z"} +2026/03/21 14:53:09 [metric_collector] {"stage_name":"metric_collector","events_processed":12854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2570.8,"last_update":"2026-03-21T14:53:04.068538264Z"} +2026/03/21 14:53:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:53:04.074969584Z"} +2026/03/21 14:53:09 [detection_layer] {"stage_name":"detection_layer","events_processed":428,"events_dropped":0,"avg_latency_ms":18.23942617549249,"throughput_eps":0,"last_update":"2026-03-21T14:53:04.210173061Z"} +2026/03/21 14:53:09 [transform_engine] {"stage_name":"transform_engine","events_processed":428,"events_dropped":0,"avg_latency_ms":447.3998855804497,"throughput_eps":0,"last_update":"2026-03-21T14:53:04.210199602Z"} +2026/03/21 14:53:09 ───────────────────────────────────────────────── +2026/03/21 14:53:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:53:14 [transform_engine] {"stage_name":"transform_engine","events_processed":428,"events_dropped":0,"avg_latency_ms":447.3998855804497,"throughput_eps":0,"last_update":"2026-03-21T14:53:09.21050468Z"} +2026/03/21 14:53:14 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:53:09.068735225Z"} +2026/03/21 14:53:14 [metric_collector] {"stage_name":"metric_collector","events_processed":12859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2571.8,"last_update":"2026-03-21T14:53:09.068958804Z"} +2026/03/21 14:53:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:53:09.076243808Z"} +2026/03/21 14:53:14 [detection_layer] {"stage_name":"detection_layer","events_processed":428,"events_dropped":0,"avg_latency_ms":18.23942617549249,"throughput_eps":0,"last_update":"2026-03-21T14:53:09.2104728Z"} +2026/03/21 14:53:14 ───────────────────────────────────────────────── +2026/03/21 14:53:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:53:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:53:14.076546283Z"} +2026/03/21 14:53:19 [detection_layer] {"stage_name":"detection_layer","events_processed":428,"events_dropped":0,"avg_latency_ms":18.23942617549249,"throughput_eps":0,"last_update":"2026-03-21T14:53:14.210692635Z"} +2026/03/21 14:53:19 [transform_engine] {"stage_name":"transform_engine","events_processed":428,"events_dropped":0,"avg_latency_ms":447.3998855804497,"throughput_eps":0,"last_update":"2026-03-21T14:53:14.210735077Z"} +2026/03/21 14:53:19 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:53:14.068080316Z"} +2026/03/21 14:53:19 [metric_collector] {"stage_name":"metric_collector","events_processed":12864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2572.8,"last_update":"2026-03-21T14:53:14.068323392Z"} +2026/03/21 14:53:19 ───────────────────────────────────────────────── +2026/03/21 14:53:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:53:24 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:53:19.068688424Z"} +2026/03/21 14:53:24 [metric_collector] {"stage_name":"metric_collector","events_processed":12869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2573.8,"last_update":"2026-03-21T14:53:19.068986284Z"} +2026/03/21 14:53:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:53:19.077900771Z"} +2026/03/21 14:53:24 [detection_layer] {"stage_name":"detection_layer","events_processed":428,"events_dropped":0,"avg_latency_ms":18.23942617549249,"throughput_eps":0,"last_update":"2026-03-21T14:53:19.210118489Z"} +2026/03/21 14:53:24 [transform_engine] {"stage_name":"transform_engine","events_processed":429,"events_dropped":0,"avg_latency_ms":370.2085758643598,"throughput_eps":0,"last_update":"2026-03-21T14:53:19.271575012Z"} +2026/03/21 14:53:24 ───────────────────────────────────────────────── +2026/03/21 14:53:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:53:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:53:24.075587353Z"} +2026/03/21 14:53:29 [detection_layer] {"stage_name":"detection_layer","events_processed":429,"events_dropped":0,"avg_latency_ms":17.284719740393992,"throughput_eps":0,"last_update":"2026-03-21T14:53:24.210822832Z"} +2026/03/21 14:53:29 [transform_engine] {"stage_name":"transform_engine","events_processed":429,"events_dropped":0,"avg_latency_ms":370.2085758643598,"throughput_eps":0,"last_update":"2026-03-21T14:53:24.209725279Z"} +2026/03/21 14:53:29 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:53:24.068623492Z"} +2026/03/21 14:53:29 [metric_collector] {"stage_name":"metric_collector","events_processed":12874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2574.8,"last_update":"2026-03-21T14:53:24.069000485Z"} +2026/03/21 14:53:29 ───────────────────────────────────────────────── +2026/03/21 14:53:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:53:34 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:53:29.068853429Z"} +2026/03/21 14:53:34 [metric_collector] {"stage_name":"metric_collector","events_processed":12879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2575.8,"last_update":"2026-03-21T14:53:29.069097556Z"} +2026/03/21 14:53:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:53:29.076206655Z"} +2026/03/21 14:53:34 [detection_layer] {"stage_name":"detection_layer","events_processed":429,"events_dropped":0,"avg_latency_ms":17.284719740393992,"throughput_eps":0,"last_update":"2026-03-21T14:53:29.210479569Z"} +2026/03/21 14:53:34 [transform_engine] {"stage_name":"transform_engine","events_processed":429,"events_dropped":0,"avg_latency_ms":370.2085758643598,"throughput_eps":0,"last_update":"2026-03-21T14:53:29.210491191Z"} +2026/03/21 14:53:34 ───────────────────────────────────────────────── +2026/03/21 14:53:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:53:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:53:34.076605019Z"} +2026/03/21 14:53:39 [detection_layer] {"stage_name":"detection_layer","events_processed":429,"events_dropped":0,"avg_latency_ms":17.284719740393992,"throughput_eps":0,"last_update":"2026-03-21T14:53:34.210822609Z"} +2026/03/21 14:53:39 [transform_engine] {"stage_name":"transform_engine","events_processed":429,"events_dropped":0,"avg_latency_ms":370.2085758643598,"throughput_eps":0,"last_update":"2026-03-21T14:53:34.209730447Z"} +2026/03/21 14:53:39 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:53:34.068605385Z"} +2026/03/21 14:53:39 [metric_collector] {"stage_name":"metric_collector","events_processed":12884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2576.8,"last_update":"2026-03-21T14:53:34.068968722Z"} +2026/03/21 14:53:39 ───────────────────────────────────────────────── +2026/03/21 14:53:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:53:44 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:53:39.068305751Z"} +2026/03/21 14:53:44 [metric_collector] {"stage_name":"metric_collector","events_processed":12889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2577.8,"last_update":"2026-03-21T14:53:39.06828382Z"} +2026/03/21 14:53:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:53:39.076888432Z"} +2026/03/21 14:53:44 [detection_layer] {"stage_name":"detection_layer","events_processed":429,"events_dropped":0,"avg_latency_ms":17.284719740393992,"throughput_eps":0,"last_update":"2026-03-21T14:53:39.210124201Z"} +2026/03/21 14:53:44 [transform_engine] {"stage_name":"transform_engine","events_processed":429,"events_dropped":0,"avg_latency_ms":370.2085758643598,"throughput_eps":0,"last_update":"2026-03-21T14:53:39.210158115Z"} +2026/03/21 14:53:44 ───────────────────────────────────────────────── +2026/03/21 14:53:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:53:49 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:53:44.068651753Z"} +2026/03/21 14:53:49 [metric_collector] {"stage_name":"metric_collector","events_processed":12893,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2578.6,"last_update":"2026-03-21T14:53:44.068656843Z"} +2026/03/21 14:53:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:53:44.076129808Z"} +2026/03/21 14:53:49 [detection_layer] {"stage_name":"detection_layer","events_processed":429,"events_dropped":0,"avg_latency_ms":17.284719740393992,"throughput_eps":0,"last_update":"2026-03-21T14:53:44.210375472Z"} +2026/03/21 14:53:49 [transform_engine] {"stage_name":"transform_engine","events_processed":429,"events_dropped":0,"avg_latency_ms":370.2085758643598,"throughput_eps":0,"last_update":"2026-03-21T14:53:44.21037968Z"} +2026/03/21 14:53:49 ───────────────────────────────────────────────── +2026/03/21 14:53:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:53:54 [detection_layer] {"stage_name":"detection_layer","events_processed":429,"events_dropped":0,"avg_latency_ms":17.284719740393992,"throughput_eps":0,"last_update":"2026-03-21T14:53:49.210695622Z"} +2026/03/21 14:53:54 [transform_engine] {"stage_name":"transform_engine","events_processed":430,"events_dropped":0,"avg_latency_ms":307.9198702914878,"throughput_eps":0,"last_update":"2026-03-21T14:53:49.269474356Z"} +2026/03/21 14:53:54 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:53:49.068891491Z"} +2026/03/21 14:53:54 [metric_collector] {"stage_name":"metric_collector","events_processed":12899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2579.8,"last_update":"2026-03-21T14:53:49.069125809Z"} +2026/03/21 14:53:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:53:49.075501863Z"} +2026/03/21 14:53:54 ───────────────────────────────────────────────── +2026/03/21 14:53:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:53:59 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:53:54.068186686Z"} +2026/03/21 14:53:59 [metric_collector] {"stage_name":"metric_collector","events_processed":12904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2580.8,"last_update":"2026-03-21T14:53:54.06864299Z"} +2026/03/21 14:53:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:53:54.081309223Z"} +2026/03/21 14:53:59 [detection_layer] {"stage_name":"detection_layer","events_processed":430,"events_dropped":0,"avg_latency_ms":17.247971392315193,"throughput_eps":0,"last_update":"2026-03-21T14:53:54.210531795Z"} +2026/03/21 14:53:59 [transform_engine] {"stage_name":"transform_engine","events_processed":430,"events_dropped":0,"avg_latency_ms":307.9198702914878,"throughput_eps":0,"last_update":"2026-03-21T14:53:54.210543807Z"} +2026/03/21 14:53:59 ───────────────────────────────────────────────── +2026/03/21 14:54:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:54:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:53:59.074328901Z"} +2026/03/21 14:54:04 [detection_layer] {"stage_name":"detection_layer","events_processed":430,"events_dropped":0,"avg_latency_ms":17.247971392315193,"throughput_eps":0,"last_update":"2026-03-21T14:53:59.210730394Z"} +2026/03/21 14:54:04 [transform_engine] {"stage_name":"transform_engine","events_processed":430,"events_dropped":0,"avg_latency_ms":307.9198702914878,"throughput_eps":0,"last_update":"2026-03-21T14:53:59.209644133Z"} +2026/03/21 14:54:04 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:53:59.068679319Z"} +2026/03/21 14:54:04 [metric_collector] {"stage_name":"metric_collector","events_processed":12909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2581.8,"last_update":"2026-03-21T14:53:59.069083623Z"} +2026/03/21 14:54:04 ───────────────────────────────────────────────── +2026/03/21 14:54:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:54:09 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:54:04.068790488Z"} +2026/03/21 14:54:09 [metric_collector] {"stage_name":"metric_collector","events_processed":12914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2582.8,"last_update":"2026-03-21T14:54:04.069046648Z"} +2026/03/21 14:54:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:54:04.076112803Z"} +2026/03/21 14:54:09 [detection_layer] {"stage_name":"detection_layer","events_processed":430,"events_dropped":0,"avg_latency_ms":17.247971392315193,"throughput_eps":0,"last_update":"2026-03-21T14:54:04.210324973Z"} +2026/03/21 14:54:09 [transform_engine] {"stage_name":"transform_engine","events_processed":430,"events_dropped":0,"avg_latency_ms":307.9198702914878,"throughput_eps":0,"last_update":"2026-03-21T14:54:04.21033385Z"} +2026/03/21 14:54:09 ───────────────────────────────────────────────── +2026/03/21 14:54:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:54:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5170,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:54:09.07561272Z"} +2026/03/21 14:54:14 [detection_layer] {"stage_name":"detection_layer","events_processed":430,"events_dropped":0,"avg_latency_ms":17.247971392315193,"throughput_eps":0,"last_update":"2026-03-21T14:54:09.210878657Z"} +2026/03/21 14:54:14 [transform_engine] {"stage_name":"transform_engine","events_processed":430,"events_dropped":0,"avg_latency_ms":307.9198702914878,"throughput_eps":0,"last_update":"2026-03-21T14:54:09.20979958Z"} +2026/03/21 14:54:14 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:54:09.068356019Z"} +2026/03/21 14:54:14 [metric_collector] {"stage_name":"metric_collector","events_processed":12919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2583.8,"last_update":"2026-03-21T14:54:09.06859649Z"} +2026/03/21 14:54:14 ───────────────────────────────────────────────── +2026/03/21 14:54:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:54:19 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:54:14.068555236Z"} +2026/03/21 14:54:19 [metric_collector] {"stage_name":"metric_collector","events_processed":12924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2584.8,"last_update":"2026-03-21T14:54:14.068782382Z"} +2026/03/21 14:54:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:54:14.075560665Z"} +2026/03/21 14:54:19 [detection_layer] {"stage_name":"detection_layer","events_processed":430,"events_dropped":0,"avg_latency_ms":17.247971392315193,"throughput_eps":0,"last_update":"2026-03-21T14:54:14.210838766Z"} +2026/03/21 14:54:19 [transform_engine] {"stage_name":"transform_engine","events_processed":430,"events_dropped":0,"avg_latency_ms":307.9198702914878,"throughput_eps":0,"last_update":"2026-03-21T14:54:14.209721185Z"} +2026/03/21 14:54:19 ───────────────────────────────────────────────── +2026/03/21 14:54:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:54:24 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:54:19.068157739Z"} +2026/03/21 14:54:24 [metric_collector] {"stage_name":"metric_collector","events_processed":12929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2585.8,"last_update":"2026-03-21T14:54:19.068259844Z"} +2026/03/21 14:54:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:54:19.076319503Z"} +2026/03/21 14:54:24 [detection_layer] {"stage_name":"detection_layer","events_processed":430,"events_dropped":0,"avg_latency_ms":17.247971392315193,"throughput_eps":0,"last_update":"2026-03-21T14:54:19.210534127Z"} +2026/03/21 14:54:24 [transform_engine] {"stage_name":"transform_engine","events_processed":431,"events_dropped":0,"avg_latency_ms":258.83950143319026,"throughput_eps":0,"last_update":"2026-03-21T14:54:19.273067772Z"} +2026/03/21 14:54:24 ───────────────────────────────────────────────── +2026/03/21 14:54:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:54:29 [metric_collector] {"stage_name":"metric_collector","events_processed":12934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2586.8,"last_update":"2026-03-21T14:54:24.068778507Z"} +2026/03/21 14:54:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:54:24.075246837Z"} +2026/03/21 14:54:29 [detection_layer] {"stage_name":"detection_layer","events_processed":431,"events_dropped":0,"avg_latency_ms":17.110758313852156,"throughput_eps":0,"last_update":"2026-03-21T14:54:24.210512484Z"} +2026/03/21 14:54:29 [transform_engine] {"stage_name":"transform_engine","events_processed":431,"events_dropped":0,"avg_latency_ms":258.83950143319026,"throughput_eps":0,"last_update":"2026-03-21T14:54:24.210492587Z"} +2026/03/21 14:54:29 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:54:29.068089287Z"} +2026/03/21 14:54:29 ───────────────────────────────────────────────── +2026/03/21 14:54:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:54:34 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:54:29.068089287Z"} +2026/03/21 14:54:34 [metric_collector] {"stage_name":"metric_collector","events_processed":12939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2587.8,"last_update":"2026-03-21T14:54:29.068337373Z"} +2026/03/21 14:54:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:54:29.074378905Z"} +2026/03/21 14:54:34 [detection_layer] {"stage_name":"detection_layer","events_processed":431,"events_dropped":0,"avg_latency_ms":17.110758313852156,"throughput_eps":0,"last_update":"2026-03-21T14:54:29.210606435Z"} +2026/03/21 14:54:34 [transform_engine] {"stage_name":"transform_engine","events_processed":431,"events_dropped":0,"avg_latency_ms":258.83950143319026,"throughput_eps":0,"last_update":"2026-03-21T14:54:29.210586316Z"} +2026/03/21 14:54:34 ───────────────────────────────────────────────── +2026/03/21 14:54:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:54:39 [transform_engine] {"stage_name":"transform_engine","events_processed":431,"events_dropped":0,"avg_latency_ms":258.83950143319026,"throughput_eps":0,"last_update":"2026-03-21T14:54:34.210197561Z"} +2026/03/21 14:54:39 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:54:34.068634882Z"} +2026/03/21 14:54:39 [metric_collector] {"stage_name":"metric_collector","events_processed":12943,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2588.6,"last_update":"2026-03-21T14:54:34.068531584Z"} +2026/03/21 14:54:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:54:34.07595767Z"} +2026/03/21 14:54:39 [detection_layer] {"stage_name":"detection_layer","events_processed":431,"events_dropped":0,"avg_latency_ms":17.110758313852156,"throughput_eps":0,"last_update":"2026-03-21T14:54:34.210216768Z"} +2026/03/21 14:54:39 ───────────────────────────────────────────────── +2026/03/21 14:54:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:54:44 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:54:39.068609273Z"} +2026/03/21 14:54:44 [metric_collector] {"stage_name":"metric_collector","events_processed":12949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2589.8,"last_update":"2026-03-21T14:54:39.069202108Z"} +2026/03/21 14:54:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:54:39.075872676Z"} +2026/03/21 14:54:44 [detection_layer] {"stage_name":"detection_layer","events_processed":431,"events_dropped":0,"avg_latency_ms":17.110758313852156,"throughput_eps":0,"last_update":"2026-03-21T14:54:39.210064325Z"} +2026/03/21 14:54:44 [transform_engine] {"stage_name":"transform_engine","events_processed":431,"events_dropped":0,"avg_latency_ms":258.83950143319026,"throughput_eps":0,"last_update":"2026-03-21T14:54:39.210082821Z"} +2026/03/21 14:54:44 ───────────────────────────────────────────────── +2026/03/21 14:54:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:54:49 [transform_engine] {"stage_name":"transform_engine","events_processed":431,"events_dropped":0,"avg_latency_ms":258.83950143319026,"throughput_eps":0,"last_update":"2026-03-21T14:54:44.20976385Z"} +2026/03/21 14:54:49 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:54:44.068629041Z"} +2026/03/21 14:54:49 [metric_collector] {"stage_name":"metric_collector","events_processed":12954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2590.8,"last_update":"2026-03-21T14:54:44.069081307Z"} +2026/03/21 14:54:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:54:44.076201897Z"} +2026/03/21 14:54:49 [detection_layer] {"stage_name":"detection_layer","events_processed":431,"events_dropped":0,"avg_latency_ms":17.110758313852156,"throughput_eps":0,"last_update":"2026-03-21T14:54:44.209850325Z"} +2026/03/21 14:54:49 ───────────────────────────────────────────────── +2026/03/21 14:54:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:54:54 [metric_collector] {"stage_name":"metric_collector","events_processed":12959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2591.8,"last_update":"2026-03-21T14:54:49.069001542Z"} +2026/03/21 14:54:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:54:49.076003445Z"} +2026/03/21 14:54:54 [detection_layer] {"stage_name":"detection_layer","events_processed":431,"events_dropped":0,"avg_latency_ms":17.110758313852156,"throughput_eps":0,"last_update":"2026-03-21T14:54:49.210275528Z"} +2026/03/21 14:54:54 [transform_engine] {"stage_name":"transform_engine","events_processed":432,"events_dropped":0,"avg_latency_ms":219.3850841465522,"throughput_eps":0,"last_update":"2026-03-21T14:54:49.271905483Z"} +2026/03/21 14:54:54 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:54:49.068720725Z"} +2026/03/21 14:54:54 ───────────────────────────────────────────────── +2026/03/21 14:54:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:54:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:54:54.075892461Z"} +2026/03/21 14:54:59 [detection_layer] {"stage_name":"detection_layer","events_processed":432,"events_dropped":0,"avg_latency_ms":16.830484851081724,"throughput_eps":0,"last_update":"2026-03-21T14:54:54.210176949Z"} +2026/03/21 14:54:59 [transform_engine] {"stage_name":"transform_engine","events_processed":432,"events_dropped":0,"avg_latency_ms":219.3850841465522,"throughput_eps":0,"last_update":"2026-03-21T14:54:54.210217807Z"} +2026/03/21 14:54:59 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:54:59.068157221Z"} +2026/03/21 14:54:59 [metric_collector] {"stage_name":"metric_collector","events_processed":12964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2592.8,"last_update":"2026-03-21T14:54:54.068291622Z"} +2026/03/21 14:54:59 ───────────────────────────────────────────────── +2026/03/21 14:55:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:55:04 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:54:59.068157221Z"} +2026/03/21 14:55:04 [metric_collector] {"stage_name":"metric_collector","events_processed":12969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2593.8,"last_update":"2026-03-21T14:54:59.068703026Z"} +2026/03/21 14:55:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:54:59.075917796Z"} +2026/03/21 14:55:04 [detection_layer] {"stage_name":"detection_layer","events_processed":432,"events_dropped":0,"avg_latency_ms":16.830484851081724,"throughput_eps":0,"last_update":"2026-03-21T14:54:59.210148821Z"} +2026/03/21 14:55:04 [transform_engine] {"stage_name":"transform_engine","events_processed":432,"events_dropped":0,"avg_latency_ms":219.3850841465522,"throughput_eps":0,"last_update":"2026-03-21T14:54:59.210172646Z"} +2026/03/21 14:55:04 ───────────────────────────────────────────────── +2026/03/21 14:55:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:55:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:55:04.077260263Z"} +2026/03/21 14:55:09 [detection_layer] {"stage_name":"detection_layer","events_processed":432,"events_dropped":0,"avg_latency_ms":16.830484851081724,"throughput_eps":0,"last_update":"2026-03-21T14:55:04.210489138Z"} +2026/03/21 14:55:09 [transform_engine] {"stage_name":"transform_engine","events_processed":432,"events_dropped":0,"avg_latency_ms":219.3850841465522,"throughput_eps":0,"last_update":"2026-03-21T14:55:04.210506823Z"} +2026/03/21 14:55:09 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:55:04.068935516Z"} +2026/03/21 14:55:09 [metric_collector] {"stage_name":"metric_collector","events_processed":12974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2594.8,"last_update":"2026-03-21T14:55:04.069317168Z"} +2026/03/21 14:55:09 ───────────────────────────────────────────────── +2026/03/21 14:55:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:55:14 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:55:09.068492743Z"} +2026/03/21 14:55:14 [metric_collector] {"stage_name":"metric_collector","events_processed":12979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2595.8,"last_update":"2026-03-21T14:55:09.068770576Z"} +2026/03/21 14:55:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:55:09.077938167Z"} +2026/03/21 14:55:14 [detection_layer] {"stage_name":"detection_layer","events_processed":432,"events_dropped":0,"avg_latency_ms":16.830484851081724,"throughput_eps":0,"last_update":"2026-03-21T14:55:09.210164381Z"} +2026/03/21 14:55:14 [transform_engine] {"stage_name":"transform_engine","events_processed":432,"events_dropped":0,"avg_latency_ms":219.3850841465522,"throughput_eps":0,"last_update":"2026-03-21T14:55:09.210139363Z"} +2026/03/21 14:55:14 ───────────────────────────────────────────────── +2026/03/21 14:55:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:55:19 [transform_engine] {"stage_name":"transform_engine","events_processed":432,"events_dropped":0,"avg_latency_ms":219.3850841465522,"throughput_eps":0,"last_update":"2026-03-21T14:55:14.210111322Z"} +2026/03/21 14:55:19 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:55:14.068086578Z"} +2026/03/21 14:55:19 [metric_collector] {"stage_name":"metric_collector","events_processed":12984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2596.8,"last_update":"2026-03-21T14:55:14.06820196Z"} +2026/03/21 14:55:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:55:14.075864537Z"} +2026/03/21 14:55:19 [detection_layer] {"stage_name":"detection_layer","events_processed":432,"events_dropped":0,"avg_latency_ms":16.830484851081724,"throughput_eps":0,"last_update":"2026-03-21T14:55:14.210078099Z"} +2026/03/21 14:55:19 ───────────────────────────────────────────────── +2026/03/21 14:55:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:55:24 [detection_layer] {"stage_name":"detection_layer","events_processed":432,"events_dropped":0,"avg_latency_ms":16.830484851081724,"throughput_eps":0,"last_update":"2026-03-21T14:55:19.210679021Z"} +2026/03/21 14:55:24 [transform_engine] {"stage_name":"transform_engine","events_processed":433,"events_dropped":0,"avg_latency_ms":187.99048991724177,"throughput_eps":0,"last_update":"2026-03-21T14:55:19.273104469Z"} +2026/03/21 14:55:24 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:55:19.068469273Z"} +2026/03/21 14:55:24 [metric_collector] {"stage_name":"metric_collector","events_processed":12989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2597.8,"last_update":"2026-03-21T14:55:19.069036208Z"} +2026/03/21 14:55:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:55:19.075394086Z"} +2026/03/21 14:55:24 ───────────────────────────────────────────────── +2026/03/21 14:55:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:55:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:55:24.075022118Z"} +2026/03/21 14:55:29 [detection_layer] {"stage_name":"detection_layer","events_processed":433,"events_dropped":0,"avg_latency_ms":16.30942968086538,"throughput_eps":0,"last_update":"2026-03-21T14:55:24.210289478Z"} +2026/03/21 14:55:29 [transform_engine] {"stage_name":"transform_engine","events_processed":433,"events_dropped":0,"avg_latency_ms":187.99048991724177,"throughput_eps":0,"last_update":"2026-03-21T14:55:24.21026415Z"} +2026/03/21 14:55:29 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:55:24.06806927Z"} +2026/03/21 14:55:29 [metric_collector] {"stage_name":"metric_collector","events_processed":12994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2598.8,"last_update":"2026-03-21T14:55:24.068431985Z"} +2026/03/21 14:55:29 ───────────────────────────────────────────────── +2026/03/21 14:55:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:55:34 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:55:29.068209099Z"} +2026/03/21 14:55:34 [metric_collector] {"stage_name":"metric_collector","events_processed":12999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2599.8,"last_update":"2026-03-21T14:55:29.068605087Z"} +2026/03/21 14:55:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:55:29.075297998Z"} +2026/03/21 14:55:34 [detection_layer] {"stage_name":"detection_layer","events_processed":433,"events_dropped":0,"avg_latency_ms":16.30942968086538,"throughput_eps":0,"last_update":"2026-03-21T14:55:29.21055091Z"} +2026/03/21 14:55:34 [transform_engine] {"stage_name":"transform_engine","events_processed":433,"events_dropped":0,"avg_latency_ms":187.99048991724177,"throughput_eps":0,"last_update":"2026-03-21T14:55:29.210526143Z"} +2026/03/21 14:55:34 ───────────────────────────────────────────────── +2026/03/21 14:55:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:55:39 [metric_collector] {"stage_name":"metric_collector","events_processed":13004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2600.8,"last_update":"2026-03-21T14:55:34.068419944Z"} +2026/03/21 14:55:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:55:34.075261259Z"} +2026/03/21 14:55:39 [detection_layer] {"stage_name":"detection_layer","events_processed":433,"events_dropped":0,"avg_latency_ms":16.30942968086538,"throughput_eps":0,"last_update":"2026-03-21T14:55:34.210486317Z"} +2026/03/21 14:55:39 [transform_engine] {"stage_name":"transform_engine","events_processed":433,"events_dropped":0,"avg_latency_ms":187.99048991724177,"throughput_eps":0,"last_update":"2026-03-21T14:55:34.210514982Z"} +2026/03/21 14:55:39 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:55:34.068110361Z"} +2026/03/21 14:55:39 ───────────────────────────────────────────────── +2026/03/21 14:55:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:55:44 [metric_collector] {"stage_name":"metric_collector","events_processed":13009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2601.8,"last_update":"2026-03-21T14:55:39.069174496Z"} +2026/03/21 14:55:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5206,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:55:39.077323667Z"} +2026/03/21 14:55:44 [detection_layer] {"stage_name":"detection_layer","events_processed":433,"events_dropped":0,"avg_latency_ms":16.30942968086538,"throughput_eps":0,"last_update":"2026-03-21T14:55:39.210715083Z"} +2026/03/21 14:55:44 [transform_engine] {"stage_name":"transform_engine","events_processed":433,"events_dropped":0,"avg_latency_ms":187.99048991724177,"throughput_eps":0,"last_update":"2026-03-21T14:55:39.210683132Z"} +2026/03/21 14:55:44 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:55:39.068879202Z"} +2026/03/21 14:55:44 ───────────────────────────────────────────────── +2026/03/21 14:55:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:55:49 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:55:44.069096966Z"} +2026/03/21 14:55:49 [metric_collector] {"stage_name":"metric_collector","events_processed":13014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2602.8,"last_update":"2026-03-21T14:55:44.069229569Z"} +2026/03/21 14:55:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:55:44.076779792Z"} +2026/03/21 14:55:49 [detection_layer] {"stage_name":"detection_layer","events_processed":433,"events_dropped":0,"avg_latency_ms":16.30942968086538,"throughput_eps":0,"last_update":"2026-03-21T14:55:44.209992847Z"} +2026/03/21 14:55:49 [transform_engine] {"stage_name":"transform_engine","events_processed":433,"events_dropped":0,"avg_latency_ms":187.99048991724177,"throughput_eps":0,"last_update":"2026-03-21T14:55:44.210028425Z"} +2026/03/21 14:55:49 ───────────────────────────────────────────────── +2026/03/21 14:55:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:55:54 [detection_layer] {"stage_name":"detection_layer","events_processed":433,"events_dropped":0,"avg_latency_ms":16.30942968086538,"throughput_eps":0,"last_update":"2026-03-21T14:55:49.210666206Z"} +2026/03/21 14:55:54 [transform_engine] {"stage_name":"transform_engine","events_processed":434,"events_dropped":0,"avg_latency_ms":163.09614833379342,"throughput_eps":0,"last_update":"2026-03-21T14:55:49.274157715Z"} +2026/03/21 14:55:54 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:55:49.068070137Z"} +2026/03/21 14:55:54 [metric_collector] {"stage_name":"metric_collector","events_processed":13019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2603.8,"last_update":"2026-03-21T14:55:49.068543885Z"} +2026/03/21 14:55:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5210,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:55:49.075408704Z"} +2026/03/21 14:55:54 ───────────────────────────────────────────────── +2026/03/21 14:55:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:55:59 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:55:54.068587215Z"} +2026/03/21 14:55:59 [metric_collector] {"stage_name":"metric_collector","events_processed":13024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2604.8,"last_update":"2026-03-21T14:55:54.068884264Z"} +2026/03/21 14:55:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:55:54.0760087Z"} +2026/03/21 14:55:59 [detection_layer] {"stage_name":"detection_layer","events_processed":434,"events_dropped":0,"avg_latency_ms":16.477580144692304,"throughput_eps":0,"last_update":"2026-03-21T14:55:54.210326892Z"} +2026/03/21 14:55:59 [transform_engine] {"stage_name":"transform_engine","events_processed":434,"events_dropped":0,"avg_latency_ms":163.09614833379342,"throughput_eps":0,"last_update":"2026-03-21T14:55:54.210312535Z"} +2026/03/21 14:55:59 ───────────────────────────────────────────────── +2026/03/21 14:56:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:56:04 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:55:59.06809178Z"} +2026/03/21 14:56:04 [metric_collector] {"stage_name":"metric_collector","events_processed":13029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2605.8,"last_update":"2026-03-21T14:55:59.068517557Z"} +2026/03/21 14:56:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:55:59.076055145Z"} +2026/03/21 14:56:04 [detection_layer] {"stage_name":"detection_layer","events_processed":434,"events_dropped":0,"avg_latency_ms":16.477580144692304,"throughput_eps":0,"last_update":"2026-03-21T14:55:59.210269017Z"} +2026/03/21 14:56:04 [transform_engine] {"stage_name":"transform_engine","events_processed":434,"events_dropped":0,"avg_latency_ms":163.09614833379342,"throughput_eps":0,"last_update":"2026-03-21T14:55:59.21028682Z"} +2026/03/21 14:56:04 ───────────────────────────────────────────────── +2026/03/21 14:56:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:56:09 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:56:04.068756981Z"} +2026/03/21 14:56:09 [metric_collector] {"stage_name":"metric_collector","events_processed":13034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2606.8,"last_update":"2026-03-21T14:56:04.068995267Z"} +2026/03/21 14:56:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:56:04.077117876Z"} +2026/03/21 14:56:09 [detection_layer] {"stage_name":"detection_layer","events_processed":434,"events_dropped":0,"avg_latency_ms":16.477580144692304,"throughput_eps":0,"last_update":"2026-03-21T14:56:04.210335409Z"} +2026/03/21 14:56:09 [transform_engine] {"stage_name":"transform_engine","events_processed":434,"events_dropped":0,"avg_latency_ms":163.09614833379342,"throughput_eps":0,"last_update":"2026-03-21T14:56:04.210344858Z"} +2026/03/21 14:56:09 ───────────────────────────────────────────────── +2026/03/21 14:56:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:56:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:56:09.075998796Z"} +2026/03/21 14:56:14 [detection_layer] {"stage_name":"detection_layer","events_processed":434,"events_dropped":0,"avg_latency_ms":16.477580144692304,"throughput_eps":0,"last_update":"2026-03-21T14:56:09.210188451Z"} +2026/03/21 14:56:14 [transform_engine] {"stage_name":"transform_engine","events_processed":434,"events_dropped":0,"avg_latency_ms":163.09614833379342,"throughput_eps":0,"last_update":"2026-03-21T14:56:09.210199963Z"} +2026/03/21 14:56:14 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:56:09.068115205Z"} +2026/03/21 14:56:14 [metric_collector] {"stage_name":"metric_collector","events_processed":13039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2607.8,"last_update":"2026-03-21T14:56:09.06861887Z"} +2026/03/21 14:56:14 ───────────────────────────────────────────────── +2026/03/21 14:56:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:56:19 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:56:14.068530842Z"} +2026/03/21 14:56:19 [metric_collector] {"stage_name":"metric_collector","events_processed":13044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2608.8,"last_update":"2026-03-21T14:56:14.068758358Z"} +2026/03/21 14:56:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:56:14.075326009Z"} +2026/03/21 14:56:19 [detection_layer] {"stage_name":"detection_layer","events_processed":434,"events_dropped":0,"avg_latency_ms":16.477580144692304,"throughput_eps":0,"last_update":"2026-03-21T14:56:14.210525709Z"} +2026/03/21 14:56:19 [transform_engine] {"stage_name":"transform_engine","events_processed":434,"events_dropped":0,"avg_latency_ms":163.09614833379342,"throughput_eps":0,"last_update":"2026-03-21T14:56:14.210534826Z"} +2026/03/21 14:56:19 ───────────────────────────────────────────────── +2026/03/21 14:56:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:56:24 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:56:19.069296061Z"} +2026/03/21 14:56:24 [metric_collector] {"stage_name":"metric_collector","events_processed":13049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2609.8,"last_update":"2026-03-21T14:56:19.06928529Z"} +2026/03/21 14:56:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5222,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:56:19.077183579Z"} +2026/03/21 14:56:24 [detection_layer] {"stage_name":"detection_layer","events_processed":434,"events_dropped":0,"avg_latency_ms":16.477580144692304,"throughput_eps":0,"last_update":"2026-03-21T14:56:19.210402696Z"} +2026/03/21 14:56:24 [transform_engine] {"stage_name":"transform_engine","events_processed":435,"events_dropped":0,"avg_latency_ms":143.80690686703474,"throughput_eps":0,"last_update":"2026-03-21T14:56:19.277067074Z"} +2026/03/21 14:56:24 ───────────────────────────────────────────────── +2026/03/21 14:56:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:56:29 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:56:24.068682999Z"} +2026/03/21 14:56:29 [metric_collector] {"stage_name":"metric_collector","events_processed":13054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2610.8,"last_update":"2026-03-21T14:56:24.068864647Z"} +2026/03/21 14:56:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:56:24.078540261Z"} +2026/03/21 14:56:29 [detection_layer] {"stage_name":"detection_layer","events_processed":435,"events_dropped":0,"avg_latency_ms":15.952847715753844,"throughput_eps":0,"last_update":"2026-03-21T14:56:24.210760734Z"} +2026/03/21 14:56:29 [transform_engine] {"stage_name":"transform_engine","events_processed":435,"events_dropped":0,"avg_latency_ms":143.80690686703474,"throughput_eps":0,"last_update":"2026-03-21T14:56:24.209678181Z"} +2026/03/21 14:56:29 ───────────────────────────────────────────────── +2026/03/21 14:56:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:56:34 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:56:29.068548293Z"} +2026/03/21 14:56:34 [metric_collector] {"stage_name":"metric_collector","events_processed":13059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2611.8,"last_update":"2026-03-21T14:56:29.068796558Z"} +2026/03/21 14:56:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:56:29.075378236Z"} +2026/03/21 14:56:34 [detection_layer] {"stage_name":"detection_layer","events_processed":435,"events_dropped":0,"avg_latency_ms":15.952847715753844,"throughput_eps":0,"last_update":"2026-03-21T14:56:29.210553268Z"} +2026/03/21 14:56:34 [transform_engine] {"stage_name":"transform_engine","events_processed":435,"events_dropped":0,"avg_latency_ms":143.80690686703474,"throughput_eps":0,"last_update":"2026-03-21T14:56:29.210595128Z"} +2026/03/21 14:56:34 ───────────────────────────────────────────────── +2026/03/21 14:56:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:56:39 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:56:34.068563966Z"} +2026/03/21 14:56:39 [metric_collector] {"stage_name":"metric_collector","events_processed":13064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2612.8,"last_update":"2026-03-21T14:56:34.069003468Z"} +2026/03/21 14:56:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:56:34.077824244Z"} +2026/03/21 14:56:39 [detection_layer] {"stage_name":"detection_layer","events_processed":435,"events_dropped":0,"avg_latency_ms":15.952847715753844,"throughput_eps":0,"last_update":"2026-03-21T14:56:34.210090305Z"} +2026/03/21 14:56:39 [transform_engine] {"stage_name":"transform_engine","events_processed":435,"events_dropped":0,"avg_latency_ms":143.80690686703474,"throughput_eps":0,"last_update":"2026-03-21T14:56:34.210070727Z"} +2026/03/21 14:56:39 ───────────────────────────────────────────────── +2026/03/21 14:56:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:56:44 [detection_layer] {"stage_name":"detection_layer","events_processed":435,"events_dropped":0,"avg_latency_ms":15.952847715753844,"throughput_eps":0,"last_update":"2026-03-21T14:56:39.210459824Z"} +2026/03/21 14:56:44 [transform_engine] {"stage_name":"transform_engine","events_processed":435,"events_dropped":0,"avg_latency_ms":143.80690686703474,"throughput_eps":0,"last_update":"2026-03-21T14:56:39.210499961Z"} +2026/03/21 14:56:44 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:56:39.06869587Z"} +2026/03/21 14:56:44 [metric_collector] {"stage_name":"metric_collector","events_processed":13069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2613.8,"last_update":"2026-03-21T14:56:39.069002267Z"} +2026/03/21 14:56:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:56:39.078217198Z"} +2026/03/21 14:56:44 ───────────────────────────────────────────────── +2026/03/21 14:56:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:56:49 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:56:44.068534522Z"} +2026/03/21 14:56:49 [metric_collector] {"stage_name":"metric_collector","events_processed":13074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614.8,"last_update":"2026-03-21T14:56:44.068889341Z"} +2026/03/21 14:56:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:56:44.077909259Z"} +2026/03/21 14:56:49 [detection_layer] {"stage_name":"detection_layer","events_processed":435,"events_dropped":0,"avg_latency_ms":15.952847715753844,"throughput_eps":0,"last_update":"2026-03-21T14:56:44.210032867Z"} +2026/03/21 14:56:49 [transform_engine] {"stage_name":"transform_engine","events_processed":435,"events_dropped":0,"avg_latency_ms":143.80690686703474,"throughput_eps":0,"last_update":"2026-03-21T14:56:44.210003229Z"} +2026/03/21 14:56:49 ───────────────────────────────────────────────── +2026/03/21 14:56:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:56:54 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:56:49.0682374Z"} +2026/03/21 14:56:54 [metric_collector] {"stage_name":"metric_collector","events_processed":13078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2615.6,"last_update":"2026-03-21T14:56:49.068324016Z"} +2026/03/21 14:56:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:56:49.077757646Z"} +2026/03/21 14:56:54 [detection_layer] {"stage_name":"detection_layer","events_processed":435,"events_dropped":0,"avg_latency_ms":15.952847715753844,"throughput_eps":0,"last_update":"2026-03-21T14:56:49.209991515Z"} +2026/03/21 14:56:54 [transform_engine] {"stage_name":"transform_engine","events_processed":436,"events_dropped":0,"avg_latency_ms":130.6940490936278,"throughput_eps":0,"last_update":"2026-03-21T14:56:49.288250823Z"} +2026/03/21 14:56:54 ───────────────────────────────────────────────── +2026/03/21 14:56:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:56:59 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:56:54.068558132Z"} +2026/03/21 14:56:59 [metric_collector] {"stage_name":"metric_collector","events_processed":13084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2616.8,"last_update":"2026-03-21T14:56:54.068960342Z"} +2026/03/21 14:56:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:56:54.077428694Z"} +2026/03/21 14:56:59 [detection_layer] {"stage_name":"detection_layer","events_processed":436,"events_dropped":0,"avg_latency_ms":16.386356172603076,"throughput_eps":0,"last_update":"2026-03-21T14:56:54.210660164Z"} +2026/03/21 14:56:59 [transform_engine] {"stage_name":"transform_engine","events_processed":436,"events_dropped":0,"avg_latency_ms":130.6940490936278,"throughput_eps":0,"last_update":"2026-03-21T14:56:54.210681885Z"} +2026/03/21 14:56:59 ───────────────────────────────────────────────── +2026/03/21 14:57:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:57:04 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:56:59.068644236Z"} +2026/03/21 14:57:04 [metric_collector] {"stage_name":"metric_collector","events_processed":13088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2617.6,"last_update":"2026-03-21T14:56:59.068651561Z"} +2026/03/21 14:57:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:56:59.075316257Z"} +2026/03/21 14:57:04 [detection_layer] {"stage_name":"detection_layer","events_processed":436,"events_dropped":0,"avg_latency_ms":16.386356172603076,"throughput_eps":0,"last_update":"2026-03-21T14:56:59.210589918Z"} +2026/03/21 14:57:04 [transform_engine] {"stage_name":"transform_engine","events_processed":436,"events_dropped":0,"avg_latency_ms":130.6940490936278,"throughput_eps":0,"last_update":"2026-03-21T14:56:59.210557486Z"} +2026/03/21 14:57:04 ───────────────────────────────────────────────── +2026/03/21 14:57:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:57:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:57:04.075150497Z"} +2026/03/21 14:57:09 [detection_layer] {"stage_name":"detection_layer","events_processed":436,"events_dropped":0,"avg_latency_ms":16.386356172603076,"throughput_eps":0,"last_update":"2026-03-21T14:57:04.210426513Z"} +2026/03/21 14:57:09 [transform_engine] {"stage_name":"transform_engine","events_processed":436,"events_dropped":0,"avg_latency_ms":130.6940490936278,"throughput_eps":0,"last_update":"2026-03-21T14:57:04.210383871Z"} +2026/03/21 14:57:09 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:57:04.068568449Z"} +2026/03/21 14:57:09 [metric_collector] {"stage_name":"metric_collector","events_processed":13094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.8,"last_update":"2026-03-21T14:57:04.068787398Z"} +2026/03/21 14:57:09 ───────────────────────────────────────────────── +2026/03/21 14:57:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:57:14 [detection_layer] {"stage_name":"detection_layer","events_processed":436,"events_dropped":0,"avg_latency_ms":16.386356172603076,"throughput_eps":0,"last_update":"2026-03-21T14:57:09.210409667Z"} +2026/03/21 14:57:14 [transform_engine] {"stage_name":"transform_engine","events_processed":436,"events_dropped":0,"avg_latency_ms":130.6940490936278,"throughput_eps":0,"last_update":"2026-03-21T14:57:09.2104323Z"} +2026/03/21 14:57:14 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:57:09.068902135Z"} +2026/03/21 14:57:14 [metric_collector] {"stage_name":"metric_collector","events_processed":13099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.8,"last_update":"2026-03-21T14:57:09.069202821Z"} +2026/03/21 14:57:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:57:09.077145415Z"} +2026/03/21 14:57:14 ───────────────────────────────────────────────── +Saved state: 17 clusters, 20568 messages, reason: none +2026/03/21 14:57:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:57:19 [metric_collector] {"stage_name":"metric_collector","events_processed":13104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2620.8,"last_update":"2026-03-21T14:57:14.068948852Z"} +2026/03/21 14:57:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:57:14.077186892Z"} +2026/03/21 14:57:19 [detection_layer] {"stage_name":"detection_layer","events_processed":436,"events_dropped":0,"avg_latency_ms":16.386356172603076,"throughput_eps":0,"last_update":"2026-03-21T14:57:14.210407221Z"} +2026/03/21 14:57:19 [transform_engine] {"stage_name":"transform_engine","events_processed":436,"events_dropped":0,"avg_latency_ms":130.6940490936278,"throughput_eps":0,"last_update":"2026-03-21T14:57:14.210377754Z"} +2026/03/21 14:57:19 [log_collector] {"stage_name":"log_collector","events_processed":20567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.4,"last_update":"2026-03-21T14:57:14.068486917Z"} +2026/03/21 14:57:19 ───────────────────────────────────────────────── +2026/03/21 14:57:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:57:24 [detection_layer] {"stage_name":"detection_layer","events_processed":436,"events_dropped":0,"avg_latency_ms":16.386356172603076,"throughput_eps":0,"last_update":"2026-03-21T14:57:19.210207632Z"} +2026/03/21 14:57:24 [transform_engine] {"stage_name":"transform_engine","events_processed":436,"events_dropped":0,"avg_latency_ms":130.6940490936278,"throughput_eps":0,"last_update":"2026-03-21T14:57:19.210194778Z"} +2026/03/21 14:57:24 [log_collector] {"stage_name":"log_collector","events_processed":20595,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4119,"last_update":"2026-03-21T14:57:19.068220841Z"} +2026/03/21 14:57:24 [metric_collector] {"stage_name":"metric_collector","events_processed":13109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2621.8,"last_update":"2026-03-21T14:57:19.068461713Z"} +2026/03/21 14:57:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5246,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:57:19.075520605Z"} +2026/03/21 14:57:24 ───────────────────────────────────────────────── +2026/03/21 14:57:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:57:29 [log_collector] {"stage_name":"log_collector","events_processed":20720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4144,"last_update":"2026-03-21T14:57:24.068944823Z"} +2026/03/21 14:57:29 [metric_collector] {"stage_name":"metric_collector","events_processed":13114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2622.8,"last_update":"2026-03-21T14:57:24.068934243Z"} +2026/03/21 14:57:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:57:24.07587103Z"} +2026/03/21 14:57:29 [detection_layer] {"stage_name":"detection_layer","events_processed":437,"events_dropped":0,"avg_latency_ms":15.845875538082462,"throughput_eps":0,"last_update":"2026-03-21T14:57:24.21002137Z"} +2026/03/21 14:57:29 [transform_engine] {"stage_name":"transform_engine","events_processed":437,"events_dropped":0,"avg_latency_ms":130.81878407490225,"throughput_eps":0,"last_update":"2026-03-21T14:57:24.210005089Z"} +2026/03/21 14:57:29 ───────────────────────────────────────────────── +2026/03/21 14:57:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:57:34 [log_collector] {"stage_name":"log_collector","events_processed":20902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4180.4,"last_update":"2026-03-21T14:57:29.068816751Z"} +2026/03/21 14:57:34 [metric_collector] {"stage_name":"metric_collector","events_processed":13119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2623.8,"last_update":"2026-03-21T14:57:29.068739924Z"} +2026/03/21 14:57:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:57:29.075294859Z"} +2026/03/21 14:57:34 [detection_layer] {"stage_name":"detection_layer","events_processed":437,"events_dropped":0,"avg_latency_ms":15.845875538082462,"throughput_eps":0,"last_update":"2026-03-21T14:57:29.210436829Z"} +2026/03/21 14:57:34 [transform_engine] {"stage_name":"transform_engine","events_processed":437,"events_dropped":0,"avg_latency_ms":130.81878407490225,"throughput_eps":0,"last_update":"2026-03-21T14:57:29.210414065Z"} +2026/03/21 14:57:34 ───────────────────────────────────────────────── +2026/03/21 14:57:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:57:39 [log_collector] {"stage_name":"log_collector","events_processed":20979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4195.8,"last_update":"2026-03-21T14:57:34.068555124Z"} +2026/03/21 14:57:39 [metric_collector] {"stage_name":"metric_collector","events_processed":13124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2624.8,"last_update":"2026-03-21T14:57:34.068768353Z"} +2026/03/21 14:57:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:57:34.076490284Z"} +2026/03/21 14:57:39 [detection_layer] {"stage_name":"detection_layer","events_processed":437,"events_dropped":0,"avg_latency_ms":15.845875538082462,"throughput_eps":0,"last_update":"2026-03-21T14:57:34.210765192Z"} +2026/03/21 14:57:39 [transform_engine] {"stage_name":"transform_engine","events_processed":437,"events_dropped":0,"avg_latency_ms":130.81878407490225,"throughput_eps":0,"last_update":"2026-03-21T14:57:34.209647743Z"} +2026/03/21 14:57:39 ───────────────────────────────────────────────── +2026/03/21 14:57:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:57:44 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T14:57:39.06872343Z"} +2026/03/21 14:57:44 [metric_collector] {"stage_name":"metric_collector","events_processed":13129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2625.8,"last_update":"2026-03-21T14:57:39.069072519Z"} +2026/03/21 14:57:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:57:39.07501875Z"} +2026/03/21 14:57:44 [detection_layer] {"stage_name":"detection_layer","events_processed":437,"events_dropped":0,"avg_latency_ms":15.845875538082462,"throughput_eps":0,"last_update":"2026-03-21T14:57:39.210305446Z"} +2026/03/21 14:57:44 [transform_engine] {"stage_name":"transform_engine","events_processed":437,"events_dropped":0,"avg_latency_ms":130.81878407490225,"throughput_eps":0,"last_update":"2026-03-21T14:57:39.210261722Z"} +2026/03/21 14:57:44 ───────────────────────────────────────────────── +2026/03/21 14:57:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:57:49 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T14:57:44.068081101Z"} +2026/03/21 14:57:49 [metric_collector] {"stage_name":"metric_collector","events_processed":13134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2626.8,"last_update":"2026-03-21T14:57:44.068317183Z"} +2026/03/21 14:57:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:57:44.074983273Z"} +2026/03/21 14:57:49 [detection_layer] {"stage_name":"detection_layer","events_processed":437,"events_dropped":0,"avg_latency_ms":15.845875538082462,"throughput_eps":0,"last_update":"2026-03-21T14:57:44.210237317Z"} +2026/03/21 14:57:49 [transform_engine] {"stage_name":"transform_engine","events_processed":437,"events_dropped":0,"avg_latency_ms":130.81878407490225,"throughput_eps":0,"last_update":"2026-03-21T14:57:44.210215925Z"} +2026/03/21 14:57:49 ───────────────────────────────────────────────── +2026/03/21 14:57:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:57:54 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T14:57:49.068903609Z"} +2026/03/21 14:57:54 [metric_collector] {"stage_name":"metric_collector","events_processed":13139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2627.8,"last_update":"2026-03-21T14:57:49.06905018Z"} +2026/03/21 14:57:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:57:49.076541339Z"} +2026/03/21 14:57:54 [detection_layer] {"stage_name":"detection_layer","events_processed":437,"events_dropped":0,"avg_latency_ms":15.845875538082462,"throughput_eps":0,"last_update":"2026-03-21T14:57:49.210280321Z"} +2026/03/21 14:57:54 [transform_engine] {"stage_name":"transform_engine","events_processed":438,"events_dropped":0,"avg_latency_ms":125.33536905992182,"throughput_eps":0,"last_update":"2026-03-21T14:57:49.313077242Z"} +2026/03/21 14:57:54 ───────────────────────────────────────────────── +2026/03/21 14:57:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:57:59 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T14:57:54.068853985Z"} +2026/03/21 14:57:59 [metric_collector] {"stage_name":"metric_collector","events_processed":13144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2628.8,"last_update":"2026-03-21T14:57:54.069084867Z"} +2026/03/21 14:57:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:57:54.075295423Z"} +2026/03/21 14:57:59 [detection_layer] {"stage_name":"detection_layer","events_processed":438,"events_dropped":0,"avg_latency_ms":15.01852403046597,"throughput_eps":0,"last_update":"2026-03-21T14:57:54.210526072Z"} +2026/03/21 14:57:59 [transform_engine] {"stage_name":"transform_engine","events_processed":438,"events_dropped":0,"avg_latency_ms":125.33536905992182,"throughput_eps":0,"last_update":"2026-03-21T14:57:54.21054055Z"} +2026/03/21 14:57:59 ───────────────────────────────────────────────── +2026/03/21 14:58:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:58:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:57:59.074748436Z"} +2026/03/21 14:58:04 [detection_layer] {"stage_name":"detection_layer","events_processed":438,"events_dropped":0,"avg_latency_ms":15.01852403046597,"throughput_eps":0,"last_update":"2026-03-21T14:57:59.210010415Z"} +2026/03/21 14:58:04 [transform_engine] {"stage_name":"transform_engine","events_processed":438,"events_dropped":0,"avg_latency_ms":125.33536905992182,"throughput_eps":0,"last_update":"2026-03-21T14:57:59.210042447Z"} +2026/03/21 14:58:04 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T14:57:59.068088148Z"} +2026/03/21 14:58:04 [metric_collector] {"stage_name":"metric_collector","events_processed":13149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2629.8,"last_update":"2026-03-21T14:57:59.068320703Z"} +2026/03/21 14:58:04 ───────────────────────────────────────────────── +2026/03/21 14:58:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:58:09 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T14:58:09.068281641Z"} +2026/03/21 14:58:09 [metric_collector] {"stage_name":"metric_collector","events_processed":13154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2630.8,"last_update":"2026-03-21T14:58:04.068800954Z"} +2026/03/21 14:58:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:58:04.075247994Z"} +2026/03/21 14:58:09 [detection_layer] {"stage_name":"detection_layer","events_processed":438,"events_dropped":0,"avg_latency_ms":15.01852403046597,"throughput_eps":0,"last_update":"2026-03-21T14:58:04.210484724Z"} +2026/03/21 14:58:09 [transform_engine] {"stage_name":"transform_engine","events_processed":438,"events_dropped":0,"avg_latency_ms":125.33536905992182,"throughput_eps":0,"last_update":"2026-03-21T14:58:04.210494173Z"} +2026/03/21 14:58:09 ───────────────────────────────────────────────── +2026/03/21 14:58:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:58:14 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T14:58:09.068281641Z"} +2026/03/21 14:58:14 [metric_collector] {"stage_name":"metric_collector","events_processed":13159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2631.8,"last_update":"2026-03-21T14:58:09.068661869Z"} +2026/03/21 14:58:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:58:09.074391555Z"} +2026/03/21 14:58:14 [detection_layer] {"stage_name":"detection_layer","events_processed":438,"events_dropped":0,"avg_latency_ms":15.01852403046597,"throughput_eps":0,"last_update":"2026-03-21T14:58:09.21061716Z"} +2026/03/21 14:58:14 [transform_engine] {"stage_name":"transform_engine","events_processed":438,"events_dropped":0,"avg_latency_ms":125.33536905992182,"throughput_eps":0,"last_update":"2026-03-21T14:58:09.210646506Z"} +2026/03/21 14:58:14 ───────────────────────────────────────────────── +2026/03/21 14:58:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:58:19 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T14:58:14.068745755Z"} +2026/03/21 14:58:19 [metric_collector] {"stage_name":"metric_collector","events_processed":13164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2632.8,"last_update":"2026-03-21T14:58:14.068926092Z"} +2026/03/21 14:58:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:58:14.075024042Z"} +2026/03/21 14:58:19 [detection_layer] {"stage_name":"detection_layer","events_processed":438,"events_dropped":0,"avg_latency_ms":15.01852403046597,"throughput_eps":0,"last_update":"2026-03-21T14:58:14.210283466Z"} +2026/03/21 14:58:19 [transform_engine] {"stage_name":"transform_engine","events_processed":438,"events_dropped":0,"avg_latency_ms":125.33536905992182,"throughput_eps":0,"last_update":"2026-03-21T14:58:14.210310427Z"} +2026/03/21 14:58:19 ───────────────────────────────────────────────── +2026/03/21 14:58:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:58:24 [transform_engine] {"stage_name":"transform_engine","events_processed":439,"events_dropped":0,"avg_latency_ms":113.23908144793747,"throughput_eps":0,"last_update":"2026-03-21T14:58:19.274497388Z"} +2026/03/21 14:58:24 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T14:58:19.068649459Z"} +2026/03/21 14:58:24 [metric_collector] {"stage_name":"metric_collector","events_processed":13169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2633.8,"last_update":"2026-03-21T14:58:19.068898647Z"} +2026/03/21 14:58:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:58:19.076489557Z"} +2026/03/21 14:58:24 [detection_layer] {"stage_name":"detection_layer","events_processed":438,"events_dropped":0,"avg_latency_ms":15.01852403046597,"throughput_eps":0,"last_update":"2026-03-21T14:58:19.210719719Z"} +2026/03/21 14:58:24 ───────────────────────────────────────────────── +2026/03/21 14:58:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:58:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:58:24.075091657Z"} +2026/03/21 14:58:29 [detection_layer] {"stage_name":"detection_layer","events_processed":439,"events_dropped":0,"avg_latency_ms":14.403933624372778,"throughput_eps":0,"last_update":"2026-03-21T14:58:24.210319581Z"} +2026/03/21 14:58:29 [transform_engine] {"stage_name":"transform_engine","events_processed":439,"events_dropped":0,"avg_latency_ms":113.23908144793747,"throughput_eps":0,"last_update":"2026-03-21T14:58:24.210305103Z"} +2026/03/21 14:58:29 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T14:58:24.068219824Z"} +2026/03/21 14:58:29 [metric_collector] {"stage_name":"metric_collector","events_processed":13174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2634.8,"last_update":"2026-03-21T14:58:24.06858335Z"} +2026/03/21 14:58:29 ───────────────────────────────────────────────── +2026/03/21 14:58:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:58:34 [transform_engine] {"stage_name":"transform_engine","events_processed":439,"events_dropped":0,"avg_latency_ms":113.23908144793747,"throughput_eps":0,"last_update":"2026-03-21T14:58:29.209648224Z"} +2026/03/21 14:58:34 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T14:58:34.06820902Z"} +2026/03/21 14:58:34 [metric_collector] {"stage_name":"metric_collector","events_processed":13179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2635.8,"last_update":"2026-03-21T14:58:29.068847195Z"} +2026/03/21 14:58:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:58:29.075503115Z"} +2026/03/21 14:58:34 [detection_layer] {"stage_name":"detection_layer","events_processed":439,"events_dropped":0,"avg_latency_ms":14.403933624372778,"throughput_eps":0,"last_update":"2026-03-21T14:58:29.210729356Z"} +2026/03/21 14:58:34 ───────────────────────────────────────────────── +2026/03/21 14:58:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:58:39 [metric_collector] {"stage_name":"metric_collector","events_processed":13184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2636.8,"last_update":"2026-03-21T14:58:34.06852714Z"} +2026/03/21 14:58:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5276,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:58:34.074864128Z"} +2026/03/21 14:58:39 [detection_layer] {"stage_name":"detection_layer","events_processed":439,"events_dropped":0,"avg_latency_ms":14.403933624372778,"throughput_eps":0,"last_update":"2026-03-21T14:58:34.210112241Z"} +2026/03/21 14:58:39 [transform_engine] {"stage_name":"transform_engine","events_processed":439,"events_dropped":0,"avg_latency_ms":113.23908144793747,"throughput_eps":0,"last_update":"2026-03-21T14:58:34.210094657Z"} +2026/03/21 14:58:39 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T14:58:34.06820902Z"} +2026/03/21 14:58:39 ───────────────────────────────────────────────── +2026/03/21 14:58:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:58:44 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T14:58:39.068530042Z"} +2026/03/21 14:58:44 [metric_collector] {"stage_name":"metric_collector","events_processed":13189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2637.8,"last_update":"2026-03-21T14:58:39.068989071Z"} +2026/03/21 14:58:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:58:39.075953101Z"} +2026/03/21 14:58:44 [detection_layer] {"stage_name":"detection_layer","events_processed":439,"events_dropped":0,"avg_latency_ms":14.403933624372778,"throughput_eps":0,"last_update":"2026-03-21T14:58:39.210198372Z"} +2026/03/21 14:58:44 [transform_engine] {"stage_name":"transform_engine","events_processed":439,"events_dropped":0,"avg_latency_ms":113.23908144793747,"throughput_eps":0,"last_update":"2026-03-21T14:58:39.210213351Z"} +2026/03/21 14:58:44 ───────────────────────────────────────────────── +2026/03/21 14:58:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:58:49 [transform_engine] {"stage_name":"transform_engine","events_processed":439,"events_dropped":0,"avg_latency_ms":113.23908144793747,"throughput_eps":0,"last_update":"2026-03-21T14:58:44.21057915Z"} +2026/03/21 14:58:49 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T14:58:44.068506169Z"} +2026/03/21 14:58:49 [metric_collector] {"stage_name":"metric_collector","events_processed":13194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2638.8,"last_update":"2026-03-21T14:58:44.068790583Z"} +2026/03/21 14:58:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:58:44.075373601Z"} +2026/03/21 14:58:49 [detection_layer] {"stage_name":"detection_layer","events_processed":439,"events_dropped":0,"avg_latency_ms":14.403933624372778,"throughput_eps":0,"last_update":"2026-03-21T14:58:44.210593878Z"} +2026/03/21 14:58:49 ───────────────────────────────────────────────── +2026/03/21 14:58:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:58:54 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T14:58:49.068772194Z"} +2026/03/21 14:58:54 [metric_collector] {"stage_name":"metric_collector","events_processed":13199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2639.8,"last_update":"2026-03-21T14:58:49.068992536Z"} +2026/03/21 14:58:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:58:49.075180247Z"} +2026/03/21 14:58:54 [detection_layer] {"stage_name":"detection_layer","events_processed":439,"events_dropped":0,"avg_latency_ms":14.403933624372778,"throughput_eps":0,"last_update":"2026-03-21T14:58:49.210384153Z"} +2026/03/21 14:58:54 [transform_engine] {"stage_name":"transform_engine","events_processed":440,"events_dropped":0,"avg_latency_ms":111.89859195834998,"throughput_eps":0,"last_update":"2026-03-21T14:58:49.316908814Z"} +2026/03/21 14:58:54 ───────────────────────────────────────────────── +2026/03/21 14:58:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:58:59 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T14:58:54.068898272Z"} +2026/03/21 14:58:59 [metric_collector] {"stage_name":"metric_collector","events_processed":13204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2640.8,"last_update":"2026-03-21T14:58:54.069248183Z"} +2026/03/21 14:58:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:58:54.075412829Z"} +2026/03/21 14:58:59 [detection_layer] {"stage_name":"detection_layer","events_processed":440,"events_dropped":0,"avg_latency_ms":14.093525699498223,"throughput_eps":0,"last_update":"2026-03-21T14:58:54.210635873Z"} +2026/03/21 14:58:59 [transform_engine] {"stage_name":"transform_engine","events_processed":440,"events_dropped":0,"avg_latency_ms":111.89859195834998,"throughput_eps":0,"last_update":"2026-03-21T14:58:54.210646554Z"} +2026/03/21 14:58:59 ───────────────────────────────────────────────── +2026/03/21 14:59:04 ── Pipeline Health ────────────────────────────── +2026/03/21 14:59:04 [detection_layer] {"stage_name":"detection_layer","events_processed":440,"events_dropped":0,"avg_latency_ms":14.093525699498223,"throughput_eps":0,"last_update":"2026-03-21T14:58:59.210445071Z"} +2026/03/21 14:59:04 [transform_engine] {"stage_name":"transform_engine","events_processed":440,"events_dropped":0,"avg_latency_ms":111.89859195834998,"throughput_eps":0,"last_update":"2026-03-21T14:58:59.210453837Z"} +2026/03/21 14:59:04 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T14:58:59.068229364Z"} +2026/03/21 14:59:04 [metric_collector] {"stage_name":"metric_collector","events_processed":13209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2641.8,"last_update":"2026-03-21T14:58:59.068507987Z"} +2026/03/21 14:59:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5286,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:58:59.074327263Z"} +2026/03/21 14:59:04 ───────────────────────────────────────────────── +2026/03/21 14:59:09 ── Pipeline Health ────────────────────────────── +2026/03/21 14:59:09 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T14:59:04.068273936Z"} +2026/03/21 14:59:09 [metric_collector] {"stage_name":"metric_collector","events_processed":13214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2642.8,"last_update":"2026-03-21T14:59:04.068868084Z"} +2026/03/21 14:59:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:59:04.075935158Z"} +2026/03/21 14:59:09 [detection_layer] {"stage_name":"detection_layer","events_processed":440,"events_dropped":0,"avg_latency_ms":14.093525699498223,"throughput_eps":0,"last_update":"2026-03-21T14:59:04.210168567Z"} +2026/03/21 14:59:09 [transform_engine] {"stage_name":"transform_engine","events_processed":440,"events_dropped":0,"avg_latency_ms":111.89859195834998,"throughput_eps":0,"last_update":"2026-03-21T14:59:04.210178456Z"} +2026/03/21 14:59:09 ───────────────────────────────────────────────── +2026/03/21 14:59:14 ── Pipeline Health ────────────────────────────── +2026/03/21 14:59:14 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T14:59:09.068600369Z"} +2026/03/21 14:59:14 [metric_collector] {"stage_name":"metric_collector","events_processed":13219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2643.8,"last_update":"2026-03-21T14:59:09.068897278Z"} +2026/03/21 14:59:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:59:09.074865608Z"} +2026/03/21 14:59:14 [detection_layer] {"stage_name":"detection_layer","events_processed":440,"events_dropped":0,"avg_latency_ms":14.093525699498223,"throughput_eps":0,"last_update":"2026-03-21T14:59:09.209980375Z"} +2026/03/21 14:59:14 [transform_engine] {"stage_name":"transform_engine","events_processed":440,"events_dropped":0,"avg_latency_ms":111.89859195834998,"throughput_eps":0,"last_update":"2026-03-21T14:59:09.209989322Z"} +2026/03/21 14:59:14 ───────────────────────────────────────────────── +2026/03/21 14:59:19 ── Pipeline Health ────────────────────────────── +2026/03/21 14:59:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:59:14.076012138Z"} +2026/03/21 14:59:19 [detection_layer] {"stage_name":"detection_layer","events_processed":440,"events_dropped":0,"avg_latency_ms":14.093525699498223,"throughput_eps":0,"last_update":"2026-03-21T14:59:14.210229887Z"} +2026/03/21 14:59:19 [transform_engine] {"stage_name":"transform_engine","events_processed":440,"events_dropped":0,"avg_latency_ms":111.89859195834998,"throughput_eps":0,"last_update":"2026-03-21T14:59:14.210243815Z"} +2026/03/21 14:59:19 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T14:59:14.068051812Z"} +2026/03/21 14:59:19 [metric_collector] {"stage_name":"metric_collector","events_processed":13224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2644.8,"last_update":"2026-03-21T14:59:14.068268748Z"} +2026/03/21 14:59:19 ───────────────────────────────────────────────── +2026/03/21 14:59:24 ── Pipeline Health ────────────────────────────── +2026/03/21 14:59:24 [transform_engine] {"stage_name":"transform_engine","events_processed":441,"events_dropped":0,"avg_latency_ms":101.11909016667998,"throughput_eps":0,"last_update":"2026-03-21T14:59:19.267994558Z"} +2026/03/21 14:59:24 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T14:59:19.068265281Z"} +2026/03/21 14:59:24 [metric_collector] {"stage_name":"metric_collector","events_processed":13229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2645.8,"last_update":"2026-03-21T14:59:19.068720754Z"} +2026/03/21 14:59:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:59:19.074862977Z"} +2026/03/21 14:59:24 [detection_layer] {"stage_name":"detection_layer","events_processed":440,"events_dropped":0,"avg_latency_ms":14.093525699498223,"throughput_eps":0,"last_update":"2026-03-21T14:59:19.20997994Z"} +2026/03/21 14:59:24 ───────────────────────────────────────────────── +2026/03/21 14:59:29 ── Pipeline Health ────────────────────────────── +2026/03/21 14:59:29 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T14:59:24.06812677Z"} +2026/03/21 14:59:29 [metric_collector] {"stage_name":"metric_collector","events_processed":13234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2646.8,"last_update":"2026-03-21T14:59:24.068400264Z"} +2026/03/21 14:59:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:59:24.0750192Z"} +2026/03/21 14:59:29 [detection_layer] {"stage_name":"detection_layer","events_processed":441,"events_dropped":0,"avg_latency_ms":13.773239359598579,"throughput_eps":0,"last_update":"2026-03-21T14:59:24.210319714Z"} +2026/03/21 14:59:29 [transform_engine] {"stage_name":"transform_engine","events_processed":441,"events_dropped":0,"avg_latency_ms":101.11909016667998,"throughput_eps":0,"last_update":"2026-03-21T14:59:24.210247055Z"} +2026/03/21 14:59:29 ───────────────────────────────────────────────── +2026/03/21 14:59:34 ── Pipeline Health ────────────────────────────── +2026/03/21 14:59:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:59:29.075561535Z"} +2026/03/21 14:59:34 [detection_layer] {"stage_name":"detection_layer","events_processed":441,"events_dropped":0,"avg_latency_ms":13.773239359598579,"throughput_eps":0,"last_update":"2026-03-21T14:59:29.2107942Z"} +2026/03/21 14:59:34 [transform_engine] {"stage_name":"transform_engine","events_processed":441,"events_dropped":0,"avg_latency_ms":101.11909016667998,"throughput_eps":0,"last_update":"2026-03-21T14:59:29.20970301Z"} +2026/03/21 14:59:34 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T14:59:29.0687187Z"} +2026/03/21 14:59:34 [metric_collector] {"stage_name":"metric_collector","events_processed":13239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2647.8,"last_update":"2026-03-21T14:59:29.068824312Z"} +2026/03/21 14:59:34 ───────────────────────────────────────────────── +2026/03/21 14:59:39 ── Pipeline Health ────────────────────────────── +2026/03/21 14:59:39 [metric_collector] {"stage_name":"metric_collector","events_processed":13244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2648.8,"last_update":"2026-03-21T14:59:34.06905185Z"} +2026/03/21 14:59:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:59:34.075428232Z"} +2026/03/21 14:59:39 [detection_layer] {"stage_name":"detection_layer","events_processed":441,"events_dropped":0,"avg_latency_ms":13.773239359598579,"throughput_eps":0,"last_update":"2026-03-21T14:59:34.210562599Z"} +2026/03/21 14:59:39 [transform_engine] {"stage_name":"transform_engine","events_processed":441,"events_dropped":0,"avg_latency_ms":101.11909016667998,"throughput_eps":0,"last_update":"2026-03-21T14:59:34.210580494Z"} +2026/03/21 14:59:39 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T14:59:34.068788686Z"} +2026/03/21 14:59:39 ───────────────────────────────────────────────── +2026/03/21 14:59:44 ── Pipeline Health ────────────────────────────── +2026/03/21 14:59:44 [metric_collector] {"stage_name":"metric_collector","events_processed":13249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2649.8,"last_update":"2026-03-21T14:59:39.069040686Z"} +2026/03/21 14:59:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:59:39.076312132Z"} +2026/03/21 14:59:44 [detection_layer] {"stage_name":"detection_layer","events_processed":441,"events_dropped":0,"avg_latency_ms":13.773239359598579,"throughput_eps":0,"last_update":"2026-03-21T14:59:39.210572286Z"} +2026/03/21 14:59:44 [transform_engine] {"stage_name":"transform_engine","events_processed":441,"events_dropped":0,"avg_latency_ms":101.11909016667998,"throughput_eps":0,"last_update":"2026-03-21T14:59:39.210591312Z"} +2026/03/21 14:59:44 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T14:59:39.068812449Z"} +2026/03/21 14:59:44 ───────────────────────────────────────────────── +2026/03/21 14:59:49 ── Pipeline Health ────────────────────────────── +2026/03/21 14:59:49 [metric_collector] {"stage_name":"metric_collector","events_processed":13254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2650.8,"last_update":"2026-03-21T14:59:44.06868205Z"} +2026/03/21 14:59:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:59:44.074660329Z"} +2026/03/21 14:59:49 [detection_layer] {"stage_name":"detection_layer","events_processed":441,"events_dropped":0,"avg_latency_ms":13.773239359598579,"throughput_eps":0,"last_update":"2026-03-21T14:59:44.209898296Z"} +2026/03/21 14:59:49 [transform_engine] {"stage_name":"transform_engine","events_processed":441,"events_dropped":0,"avg_latency_ms":101.11909016667998,"throughput_eps":0,"last_update":"2026-03-21T14:59:44.209912383Z"} +2026/03/21 14:59:49 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T14:59:44.068465535Z"} +2026/03/21 14:59:49 ───────────────────────────────────────────────── +2026/03/21 14:59:54 ── Pipeline Health ────────────────────────────── +2026/03/21 14:59:54 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T14:59:49.068518319Z"} +2026/03/21 14:59:54 [metric_collector] {"stage_name":"metric_collector","events_processed":13259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2651.8,"last_update":"2026-03-21T14:59:49.068759662Z"} +2026/03/21 14:59:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:59:49.075237568Z"} +2026/03/21 14:59:54 [detection_layer] {"stage_name":"detection_layer","events_processed":441,"events_dropped":0,"avg_latency_ms":13.773239359598579,"throughput_eps":0,"last_update":"2026-03-21T14:59:49.210461097Z"} +2026/03/21 14:59:54 [transform_engine] {"stage_name":"transform_engine","events_processed":442,"events_dropped":0,"avg_latency_ms":92.71327793334399,"throughput_eps":0,"last_update":"2026-03-21T14:59:49.269565624Z"} +2026/03/21 14:59:54 ───────────────────────────────────────────────── +2026/03/21 14:59:59 ── Pipeline Health ────────────────────────────── +2026/03/21 14:59:59 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T14:59:54.068739443Z"} +2026/03/21 14:59:59 [metric_collector] {"stage_name":"metric_collector","events_processed":13264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2652.8,"last_update":"2026-03-21T14:59:54.068934146Z"} +2026/03/21 14:59:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:59:54.074903909Z"} +2026/03/21 14:59:59 [detection_layer] {"stage_name":"detection_layer","events_processed":442,"events_dropped":0,"avg_latency_ms":13.557073287678863,"throughput_eps":0,"last_update":"2026-03-21T14:59:54.210119434Z"} +2026/03/21 14:59:59 [transform_engine] {"stage_name":"transform_engine","events_processed":442,"events_dropped":0,"avg_latency_ms":92.71327793334399,"throughput_eps":0,"last_update":"2026-03-21T14:59:54.210132638Z"} +2026/03/21 14:59:59 ───────────────────────────────────────────────── +2026/03/21 15:00:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:00:04 [metric_collector] {"stage_name":"metric_collector","events_processed":13269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2653.8,"last_update":"2026-03-21T14:59:59.068920395Z"} +2026/03/21 15:00:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T14:59:59.075438919Z"} +2026/03/21 15:00:04 [detection_layer] {"stage_name":"detection_layer","events_processed":442,"events_dropped":0,"avg_latency_ms":13.557073287678863,"throughput_eps":0,"last_update":"2026-03-21T14:59:59.210625939Z"} +2026/03/21 15:00:04 [transform_engine] {"stage_name":"transform_engine","events_processed":442,"events_dropped":0,"avg_latency_ms":92.71327793334399,"throughput_eps":0,"last_update":"2026-03-21T14:59:59.210645116Z"} +2026/03/21 15:00:04 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T14:59:59.068621212Z"} +2026/03/21 15:00:04 ───────────────────────────────────────────────── +2026/03/21 15:00:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:00:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:00:04.084601957Z"} +2026/03/21 15:00:09 [detection_layer] {"stage_name":"detection_layer","events_processed":442,"events_dropped":0,"avg_latency_ms":13.557073287678863,"throughput_eps":0,"last_update":"2026-03-21T15:00:04.210818166Z"} +2026/03/21 15:00:09 [transform_engine] {"stage_name":"transform_engine","events_processed":442,"events_dropped":0,"avg_latency_ms":92.71327793334399,"throughput_eps":0,"last_update":"2026-03-21T15:00:04.209731225Z"} +2026/03/21 15:00:09 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T15:00:04.068581134Z"} +2026/03/21 15:00:09 [metric_collector] {"stage_name":"metric_collector","events_processed":13274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2654.8,"last_update":"2026-03-21T15:00:04.06873549Z"} +2026/03/21 15:00:09 ───────────────────────────────────────────────── +2026/03/21 15:00:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:00:14 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T15:00:09.068081627Z"} +2026/03/21 15:00:14 [metric_collector] {"stage_name":"metric_collector","events_processed":13279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2655.8,"last_update":"2026-03-21T15:00:09.068191867Z"} +2026/03/21 15:00:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:00:09.075675841Z"} +2026/03/21 15:00:14 [detection_layer] {"stage_name":"detection_layer","events_processed":442,"events_dropped":0,"avg_latency_ms":13.557073287678863,"throughput_eps":0,"last_update":"2026-03-21T15:00:09.209926477Z"} +2026/03/21 15:00:14 [transform_engine] {"stage_name":"transform_engine","events_processed":442,"events_dropped":0,"avg_latency_ms":92.71327793334399,"throughput_eps":0,"last_update":"2026-03-21T15:00:09.209948539Z"} +2026/03/21 15:00:14 ───────────────────────────────────────────────── +2026/03/21 15:00:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:00:19 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T15:00:14.068108598Z"} +2026/03/21 15:00:19 [metric_collector] {"stage_name":"metric_collector","events_processed":13284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2656.8,"last_update":"2026-03-21T15:00:14.068558009Z"} +2026/03/21 15:00:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:00:14.0752052Z"} +2026/03/21 15:00:19 [detection_layer] {"stage_name":"detection_layer","events_processed":442,"events_dropped":0,"avg_latency_ms":13.557073287678863,"throughput_eps":0,"last_update":"2026-03-21T15:00:14.210460451Z"} +2026/03/21 15:00:19 [transform_engine] {"stage_name":"transform_engine","events_processed":442,"events_dropped":0,"avg_latency_ms":92.71327793334399,"throughput_eps":0,"last_update":"2026-03-21T15:00:14.210432528Z"} +2026/03/21 15:00:19 ───────────────────────────────────────────────── +2026/03/21 15:00:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:00:24 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T15:00:19.069345806Z"} +2026/03/21 15:00:24 [metric_collector] {"stage_name":"metric_collector","events_processed":13289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2657.8,"last_update":"2026-03-21T15:00:19.069470595Z"} +2026/03/21 15:00:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:00:19.076016651Z"} +2026/03/21 15:00:24 [detection_layer] {"stage_name":"detection_layer","events_processed":442,"events_dropped":0,"avg_latency_ms":13.557073287678863,"throughput_eps":0,"last_update":"2026-03-21T15:00:19.210272209Z"} +2026/03/21 15:00:24 [transform_engine] {"stage_name":"transform_engine","events_processed":443,"events_dropped":0,"avg_latency_ms":89.19029014667518,"throughput_eps":0,"last_update":"2026-03-21T15:00:19.285346462Z"} +2026/03/21 15:00:24 ───────────────────────────────────────────────── +2026/03/21 15:00:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:00:29 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T15:00:24.06861562Z"} +2026/03/21 15:00:29 [metric_collector] {"stage_name":"metric_collector","events_processed":13294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2658.8,"last_update":"2026-03-21T15:00:24.068926185Z"} +2026/03/21 15:00:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5320,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:00:24.075118595Z"} +2026/03/21 15:00:29 [detection_layer] {"stage_name":"detection_layer","events_processed":443,"events_dropped":0,"avg_latency_ms":13.545946230143091,"throughput_eps":0,"last_update":"2026-03-21T15:00:24.210303522Z"} +2026/03/21 15:00:29 [transform_engine] {"stage_name":"transform_engine","events_processed":443,"events_dropped":0,"avg_latency_ms":89.19029014667518,"throughput_eps":0,"last_update":"2026-03-21T15:00:24.210312981Z"} +2026/03/21 15:00:29 ───────────────────────────────────────────────── +2026/03/21 15:00:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:00:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:00:29.075053306Z"} +2026/03/21 15:00:34 [detection_layer] {"stage_name":"detection_layer","events_processed":443,"events_dropped":0,"avg_latency_ms":13.545946230143091,"throughput_eps":0,"last_update":"2026-03-21T15:00:29.210260847Z"} +2026/03/21 15:00:34 [transform_engine] {"stage_name":"transform_engine","events_processed":443,"events_dropped":0,"avg_latency_ms":89.19029014667518,"throughput_eps":0,"last_update":"2026-03-21T15:00:29.210270456Z"} +2026/03/21 15:00:34 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T15:00:29.06861282Z"} +2026/03/21 15:00:34 [metric_collector] {"stage_name":"metric_collector","events_processed":13299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2659.8,"last_update":"2026-03-21T15:00:29.06892572Z"} +2026/03/21 15:00:34 ───────────────────────────────────────────────── +2026/03/21 15:00:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:00:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:00:34.074712248Z"} +2026/03/21 15:00:39 [detection_layer] {"stage_name":"detection_layer","events_processed":443,"events_dropped":0,"avg_latency_ms":13.545946230143091,"throughput_eps":0,"last_update":"2026-03-21T15:00:34.209928886Z"} +2026/03/21 15:00:39 [transform_engine] {"stage_name":"transform_engine","events_processed":443,"events_dropped":0,"avg_latency_ms":89.19029014667518,"throughput_eps":0,"last_update":"2026-03-21T15:00:34.209941791Z"} +2026/03/21 15:00:39 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T15:00:34.068121165Z"} +2026/03/21 15:00:39 [metric_collector] {"stage_name":"metric_collector","events_processed":13304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2660.8,"last_update":"2026-03-21T15:00:34.068501934Z"} +2026/03/21 15:00:39 ───────────────────────────────────────────────── +2026/03/21 15:00:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:00:44 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T15:00:39.068517259Z"} +2026/03/21 15:00:44 [metric_collector] {"stage_name":"metric_collector","events_processed":13309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2661.8,"last_update":"2026-03-21T15:00:39.068831361Z"} +2026/03/21 15:00:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:00:39.075218715Z"} +2026/03/21 15:00:44 [detection_layer] {"stage_name":"detection_layer","events_processed":443,"events_dropped":0,"avg_latency_ms":13.545946230143091,"throughput_eps":0,"last_update":"2026-03-21T15:00:39.210478266Z"} +2026/03/21 15:00:44 [transform_engine] {"stage_name":"transform_engine","events_processed":443,"events_dropped":0,"avg_latency_ms":89.19029014667518,"throughput_eps":0,"last_update":"2026-03-21T15:00:39.210487393Z"} +2026/03/21 15:00:44 ───────────────────────────────────────────────── +2026/03/21 15:00:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:00:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:00:44.075426455Z"} +2026/03/21 15:00:49 [detection_layer] {"stage_name":"detection_layer","events_processed":443,"events_dropped":0,"avg_latency_ms":13.545946230143091,"throughput_eps":0,"last_update":"2026-03-21T15:00:44.210638254Z"} +2026/03/21 15:00:49 [transform_engine] {"stage_name":"transform_engine","events_processed":443,"events_dropped":0,"avg_latency_ms":89.19029014667518,"throughput_eps":0,"last_update":"2026-03-21T15:00:44.210647292Z"} +2026/03/21 15:00:49 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T15:00:44.06883495Z"} +2026/03/21 15:00:49 [metric_collector] {"stage_name":"metric_collector","events_processed":13314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2662.8,"last_update":"2026-03-21T15:00:44.06913274Z"} +2026/03/21 15:00:49 ───────────────────────────────────────────────── +2026/03/21 15:00:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:00:54 [transform_engine] {"stage_name":"transform_engine","events_processed":444,"events_dropped":0,"avg_latency_ms":83.54233291734015,"throughput_eps":0,"last_update":"2026-03-21T15:00:49.270965733Z"} +2026/03/21 15:00:54 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T15:00:49.068722603Z"} +2026/03/21 15:00:54 [metric_collector] {"stage_name":"metric_collector","events_processed":13319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2663.8,"last_update":"2026-03-21T15:00:49.069080919Z"} +2026/03/21 15:00:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5330,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:00:49.074822025Z"} +2026/03/21 15:00:54 [detection_layer] {"stage_name":"detection_layer","events_processed":443,"events_dropped":0,"avg_latency_ms":13.545946230143091,"throughput_eps":0,"last_update":"2026-03-21T15:00:49.210003898Z"} +2026/03/21 15:00:54 ───────────────────────────────────────────────── +2026/03/21 15:00:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:00:59 [transform_engine] {"stage_name":"transform_engine","events_processed":444,"events_dropped":0,"avg_latency_ms":83.54233291734015,"throughput_eps":0,"last_update":"2026-03-21T15:00:54.210136383Z"} +2026/03/21 15:00:59 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T15:00:54.068518583Z"} +2026/03/21 15:00:59 [metric_collector] {"stage_name":"metric_collector","events_processed":13324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2664.8,"last_update":"2026-03-21T15:00:54.068771306Z"} +2026/03/21 15:00:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:00:54.074942326Z"} +2026/03/21 15:00:59 [detection_layer] {"stage_name":"detection_layer","events_processed":444,"events_dropped":0,"avg_latency_ms":13.144616984114473,"throughput_eps":0,"last_update":"2026-03-21T15:00:54.210167322Z"} +2026/03/21 15:00:59 ───────────────────────────────────────────────── +2026/03/21 15:01:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:01:04 [detection_layer] {"stage_name":"detection_layer","events_processed":444,"events_dropped":0,"avg_latency_ms":13.144616984114473,"throughput_eps":0,"last_update":"2026-03-21T15:00:59.210103641Z"} +2026/03/21 15:01:04 [transform_engine] {"stage_name":"transform_engine","events_processed":444,"events_dropped":0,"avg_latency_ms":83.54233291734015,"throughput_eps":0,"last_update":"2026-03-21T15:00:59.210092711Z"} +2026/03/21 15:01:04 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T15:00:59.06806761Z"} +2026/03/21 15:01:04 [metric_collector] {"stage_name":"metric_collector","events_processed":13329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2665.8,"last_update":"2026-03-21T15:00:59.068163022Z"} +2026/03/21 15:01:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:00:59.075882467Z"} +2026/03/21 15:01:04 ───────────────────────────────────────────────── +2026/03/21 15:01:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:01:09 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T15:01:04.068483691Z"} +2026/03/21 15:01:09 [metric_collector] {"stage_name":"metric_collector","events_processed":13334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2666.8,"last_update":"2026-03-21T15:01:04.068767084Z"} +2026/03/21 15:01:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:01:04.075251513Z"} +2026/03/21 15:01:09 [detection_layer] {"stage_name":"detection_layer","events_processed":444,"events_dropped":0,"avg_latency_ms":13.144616984114473,"throughput_eps":0,"last_update":"2026-03-21T15:01:04.210446022Z"} +2026/03/21 15:01:09 [transform_engine] {"stage_name":"transform_engine","events_processed":444,"events_dropped":0,"avg_latency_ms":83.54233291734015,"throughput_eps":0,"last_update":"2026-03-21T15:01:04.210424581Z"} +2026/03/21 15:01:09 ───────────────────────────────────────────────── +2026/03/21 15:01:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:01:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:01:09.075713505Z"} +2026/03/21 15:01:14 [detection_layer] {"stage_name":"detection_layer","events_processed":444,"events_dropped":0,"avg_latency_ms":13.144616984114473,"throughput_eps":0,"last_update":"2026-03-21T15:01:09.20991927Z"} +2026/03/21 15:01:14 [transform_engine] {"stage_name":"transform_engine","events_processed":444,"events_dropped":0,"avg_latency_ms":83.54233291734015,"throughput_eps":0,"last_update":"2026-03-21T15:01:09.209933248Z"} +2026/03/21 15:01:14 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T15:01:09.068709671Z"} +2026/03/21 15:01:14 [metric_collector] {"stage_name":"metric_collector","events_processed":13339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2667.8,"last_update":"2026-03-21T15:01:09.069038271Z"} +2026/03/21 15:01:14 ───────────────────────────────────────────────── +2026/03/21 15:01:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:01:19 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T15:01:14.068513164Z"} +2026/03/21 15:01:19 [metric_collector] {"stage_name":"metric_collector","events_processed":13344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2668.8,"last_update":"2026-03-21T15:01:14.068760358Z"} +2026/03/21 15:01:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:01:14.07505852Z"} +2026/03/21 15:01:19 [detection_layer] {"stage_name":"detection_layer","events_processed":444,"events_dropped":0,"avg_latency_ms":13.144616984114473,"throughput_eps":0,"last_update":"2026-03-21T15:01:14.210096029Z"} +2026/03/21 15:01:19 [transform_engine] {"stage_name":"transform_engine","events_processed":444,"events_dropped":0,"avg_latency_ms":83.54233291734015,"throughput_eps":0,"last_update":"2026-03-21T15:01:14.210117671Z"} +2026/03/21 15:01:19 ───────────────────────────────────────────────── +2026/03/21 15:01:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:01:24 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T15:01:19.068467137Z"} +2026/03/21 15:01:24 [metric_collector] {"stage_name":"metric_collector","events_processed":13349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2669.8,"last_update":"2026-03-21T15:01:19.068554595Z"} +2026/03/21 15:01:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5342,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:01:19.075058912Z"} +2026/03/21 15:01:24 [detection_layer] {"stage_name":"detection_layer","events_processed":444,"events_dropped":0,"avg_latency_ms":13.144616984114473,"throughput_eps":0,"last_update":"2026-03-21T15:01:19.210277117Z"} +2026/03/21 15:01:24 [transform_engine] {"stage_name":"transform_engine","events_processed":445,"events_dropped":0,"avg_latency_ms":78.85975073387212,"throughput_eps":0,"last_update":"2026-03-21T15:01:19.270430766Z"} +2026/03/21 15:01:24 ───────────────────────────────────────────────── +2026/03/21 15:01:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:01:29 [metric_collector] {"stage_name":"metric_collector","events_processed":13354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2670.8,"last_update":"2026-03-21T15:01:24.068506856Z"} +2026/03/21 15:01:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:01:24.075575365Z"} +2026/03/21 15:01:29 [detection_layer] {"stage_name":"detection_layer","events_processed":445,"events_dropped":0,"avg_latency_ms":12.90889318729158,"throughput_eps":0,"last_update":"2026-03-21T15:01:24.210799752Z"} +2026/03/21 15:01:29 [transform_engine] {"stage_name":"transform_engine","events_processed":445,"events_dropped":0,"avg_latency_ms":78.85975073387212,"throughput_eps":0,"last_update":"2026-03-21T15:01:24.209694355Z"} +2026/03/21 15:01:29 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T15:01:24.068249463Z"} +2026/03/21 15:01:29 ───────────────────────────────────────────────── +2026/03/21 15:01:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:01:34 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T15:01:29.06853757Z"} +2026/03/21 15:01:34 [metric_collector] {"stage_name":"metric_collector","events_processed":13359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2671.8,"last_update":"2026-03-21T15:01:29.068760878Z"} +2026/03/21 15:01:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:01:29.075206293Z"} +2026/03/21 15:01:34 [detection_layer] {"stage_name":"detection_layer","events_processed":445,"events_dropped":0,"avg_latency_ms":12.90889318729158,"throughput_eps":0,"last_update":"2026-03-21T15:01:29.210787152Z"} +2026/03/21 15:01:34 [transform_engine] {"stage_name":"transform_engine","events_processed":445,"events_dropped":0,"avg_latency_ms":78.85975073387212,"throughput_eps":0,"last_update":"2026-03-21T15:01:29.209690543Z"} +2026/03/21 15:01:34 ───────────────────────────────────────────────── +2026/03/21 15:01:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:01:39 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T15:01:34.068649173Z"} +2026/03/21 15:01:39 [metric_collector] {"stage_name":"metric_collector","events_processed":13364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2672.8,"last_update":"2026-03-21T15:01:34.068836371Z"} +2026/03/21 15:01:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:01:34.075412596Z"} +2026/03/21 15:01:39 [detection_layer] {"stage_name":"detection_layer","events_processed":445,"events_dropped":0,"avg_latency_ms":12.90889318729158,"throughput_eps":0,"last_update":"2026-03-21T15:01:34.212380453Z"} +2026/03/21 15:01:39 [transform_engine] {"stage_name":"transform_engine","events_processed":445,"events_dropped":0,"avg_latency_ms":78.85975073387212,"throughput_eps":0,"last_update":"2026-03-21T15:01:34.21239436Z"} +2026/03/21 15:01:39 ───────────────────────────────────────────────── +Saved state: 17 clusters, 20987 messages, reason: none +2026/03/21 15:01:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:01:44 [log_collector] {"stage_name":"log_collector","events_processed":20986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.2,"last_update":"2026-03-21T15:01:39.068117812Z"} +2026/03/21 15:01:44 [metric_collector] {"stage_name":"metric_collector","events_processed":13369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2673.8,"last_update":"2026-03-21T15:01:39.068275395Z"} +2026/03/21 15:01:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5350,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:01:39.076495759Z"} +2026/03/21 15:01:44 [detection_layer] {"stage_name":"detection_layer","events_processed":445,"events_dropped":0,"avg_latency_ms":12.90889318729158,"throughput_eps":0,"last_update":"2026-03-21T15:01:39.210749678Z"} +2026/03/21 15:01:44 [transform_engine] {"stage_name":"transform_engine","events_processed":445,"events_dropped":0,"avg_latency_ms":78.85975073387212,"throughput_eps":0,"last_update":"2026-03-21T15:01:39.209647236Z"} +2026/03/21 15:01:44 ───────────────────────────────────────────────── +2026/03/21 15:01:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:01:49 [log_collector] {"stage_name":"log_collector","events_processed":20996,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4199.2,"last_update":"2026-03-21T15:01:44.0682733Z"} +2026/03/21 15:01:49 [metric_collector] {"stage_name":"metric_collector","events_processed":13374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2674.8,"last_update":"2026-03-21T15:01:44.068248072Z"} +2026/03/21 15:01:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:01:44.078028834Z"} +2026/03/21 15:01:49 [detection_layer] {"stage_name":"detection_layer","events_processed":445,"events_dropped":0,"avg_latency_ms":12.90889318729158,"throughput_eps":0,"last_update":"2026-03-21T15:01:44.210252686Z"} +2026/03/21 15:01:49 [transform_engine] {"stage_name":"transform_engine","events_processed":445,"events_dropped":0,"avg_latency_ms":78.85975073387212,"throughput_eps":0,"last_update":"2026-03-21T15:01:44.210274348Z"} +2026/03/21 15:01:49 ───────────────────────────────────────────────── +2026/03/21 15:01:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:01:54 [log_collector] {"stage_name":"log_collector","events_processed":21004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4200.8,"last_update":"2026-03-21T15:01:49.068968152Z"} +2026/03/21 15:01:54 [metric_collector] {"stage_name":"metric_collector","events_processed":13379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2675.8,"last_update":"2026-03-21T15:01:49.069320987Z"} +2026/03/21 15:01:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:01:49.075774417Z"} +2026/03/21 15:01:54 [detection_layer] {"stage_name":"detection_layer","events_processed":445,"events_dropped":0,"avg_latency_ms":12.90889318729158,"throughput_eps":0,"last_update":"2026-03-21T15:01:49.210059016Z"} +2026/03/21 15:01:54 [transform_engine] {"stage_name":"transform_engine","events_processed":446,"events_dropped":0,"avg_latency_ms":90.9026169870977,"throughput_eps":0,"last_update":"2026-03-21T15:01:49.349097971Z"} +2026/03/21 15:01:54 ───────────────────────────────────────────────── +2026/03/21 15:01:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:01:59 [log_collector] {"stage_name":"log_collector","events_processed":21014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202.8,"last_update":"2026-03-21T15:01:54.068738507Z"} +2026/03/21 15:01:59 [metric_collector] {"stage_name":"metric_collector","events_processed":13384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2676.8,"last_update":"2026-03-21T15:01:54.068957527Z"} +2026/03/21 15:01:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:01:54.07481767Z"} +2026/03/21 15:01:59 [detection_layer] {"stage_name":"detection_layer","events_processed":446,"events_dropped":0,"avg_latency_ms":14.472780549833265,"throughput_eps":0,"last_update":"2026-03-21T15:01:54.210035307Z"} +2026/03/21 15:01:59 [transform_engine] {"stage_name":"transform_engine","events_processed":446,"events_dropped":0,"avg_latency_ms":90.9026169870977,"throughput_eps":0,"last_update":"2026-03-21T15:01:54.210051778Z"} +2026/03/21 15:01:59 ───────────────────────────────────────────────── +2026/03/21 15:02:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:02:04 [log_collector] {"stage_name":"log_collector","events_processed":21016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4203.2,"last_update":"2026-03-21T15:01:59.068094078Z"} +2026/03/21 15:02:04 [metric_collector] {"stage_name":"metric_collector","events_processed":13389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2677.8,"last_update":"2026-03-21T15:01:59.068274363Z"} +2026/03/21 15:02:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:01:59.074575531Z"} +2026/03/21 15:02:04 [detection_layer] {"stage_name":"detection_layer","events_processed":446,"events_dropped":0,"avg_latency_ms":14.472780549833265,"throughput_eps":0,"last_update":"2026-03-21T15:01:59.210842628Z"} +2026/03/21 15:02:04 [transform_engine] {"stage_name":"transform_engine","events_processed":446,"events_dropped":0,"avg_latency_ms":90.9026169870977,"throughput_eps":0,"last_update":"2026-03-21T15:01:59.209756849Z"} +2026/03/21 15:02:04 ───────────────────────────────────────────────── +2026/03/21 15:02:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:02:09 [log_collector] {"stage_name":"log_collector","events_processed":21019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4203.8,"last_update":"2026-03-21T15:02:04.068089644Z"} +2026/03/21 15:02:09 [metric_collector] {"stage_name":"metric_collector","events_processed":13394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2678.8,"last_update":"2026-03-21T15:02:04.06852136Z"} +2026/03/21 15:02:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5360,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:02:04.074564315Z"} +2026/03/21 15:02:09 [detection_layer] {"stage_name":"detection_layer","events_processed":446,"events_dropped":0,"avg_latency_ms":14.472780549833265,"throughput_eps":0,"last_update":"2026-03-21T15:02:04.210851059Z"} +2026/03/21 15:02:09 [transform_engine] {"stage_name":"transform_engine","events_processed":446,"events_dropped":0,"avg_latency_ms":90.9026169870977,"throughput_eps":0,"last_update":"2026-03-21T15:02:04.209696698Z"} +2026/03/21 15:02:09 ───────────────────────────────────────────────── +2026/03/21 15:02:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:02:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5360,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:02:09.068917075Z"} +2026/03/21 15:02:14 [detection_layer] {"stage_name":"detection_layer","events_processed":446,"events_dropped":0,"avg_latency_ms":14.472780549833265,"throughput_eps":0,"last_update":"2026-03-21T15:02:09.211424633Z"} +2026/03/21 15:02:14 [transform_engine] {"stage_name":"transform_engine","events_processed":446,"events_dropped":0,"avg_latency_ms":90.9026169870977,"throughput_eps":0,"last_update":"2026-03-21T15:02:09.209723997Z"} +2026/03/21 15:02:14 [log_collector] {"stage_name":"log_collector","events_processed":21019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4203.8,"last_update":"2026-03-21T15:02:09.06897191Z"} +2026/03/21 15:02:14 [metric_collector] {"stage_name":"metric_collector","events_processed":13399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2679.8,"last_update":"2026-03-21T15:02:09.069152395Z"} +2026/03/21 15:02:14 ───────────────────────────────────────────────── +2026/03/21 15:02:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:02:19 [log_collector] {"stage_name":"log_collector","events_processed":21019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4203.8,"last_update":"2026-03-21T15:02:14.068738111Z"} +2026/03/21 15:02:19 [metric_collector] {"stage_name":"metric_collector","events_processed":13404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2680.8,"last_update":"2026-03-21T15:02:14.068731729Z"} +2026/03/21 15:02:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:02:14.07470515Z"} +2026/03/21 15:02:19 [detection_layer] {"stage_name":"detection_layer","events_processed":446,"events_dropped":0,"avg_latency_ms":14.472780549833265,"throughput_eps":0,"last_update":"2026-03-21T15:02:14.209914982Z"} +2026/03/21 15:02:19 [transform_engine] {"stage_name":"transform_engine","events_processed":446,"events_dropped":0,"avg_latency_ms":90.9026169870977,"throughput_eps":0,"last_update":"2026-03-21T15:02:14.20992474Z"} +2026/03/21 15:02:19 ───────────────────────────────────────────────── +2026/03/21 15:02:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:02:24 [detection_layer] {"stage_name":"detection_layer","events_processed":446,"events_dropped":0,"avg_latency_ms":14.472780549833265,"throughput_eps":0,"last_update":"2026-03-21T15:02:19.20994483Z"} +2026/03/21 15:02:24 [transform_engine] {"stage_name":"transform_engine","events_processed":447,"events_dropped":0,"avg_latency_ms":92.30556698967817,"throughput_eps":0,"last_update":"2026-03-21T15:02:19.307876515Z"} +2026/03/21 15:02:24 [log_collector] {"stage_name":"log_collector","events_processed":21019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4203.8,"last_update":"2026-03-21T15:02:19.068795652Z"} +2026/03/21 15:02:24 [metric_collector] {"stage_name":"metric_collector","events_processed":13409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2681.8,"last_update":"2026-03-21T15:02:19.069030963Z"} +2026/03/21 15:02:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:02:19.075739632Z"} +2026/03/21 15:02:24 ───────────────────────────────────────────────── +2026/03/21 15:02:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:02:29 [metric_collector] {"stage_name":"metric_collector","events_processed":13414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2682.8,"last_update":"2026-03-21T15:02:24.068930449Z"} +2026/03/21 15:02:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:02:24.075400381Z"} +2026/03/21 15:02:29 [detection_layer] {"stage_name":"detection_layer","events_processed":447,"events_dropped":0,"avg_latency_ms":14.180558439866612,"throughput_eps":0,"last_update":"2026-03-21T15:02:24.210480416Z"} +2026/03/21 15:02:29 [transform_engine] {"stage_name":"transform_engine","events_processed":447,"events_dropped":0,"avg_latency_ms":92.30556698967817,"throughput_eps":0,"last_update":"2026-03-21T15:02:24.210492188Z"} +2026/03/21 15:02:29 [log_collector] {"stage_name":"log_collector","events_processed":21019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4203.8,"last_update":"2026-03-21T15:02:24.068690991Z"} +2026/03/21 15:02:29 ───────────────────────────────────────────────── +2026/03/21 15:02:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:02:34 [log_collector] {"stage_name":"log_collector","events_processed":21019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4203.8,"last_update":"2026-03-21T15:02:29.068622806Z"} +2026/03/21 15:02:34 [metric_collector] {"stage_name":"metric_collector","events_processed":13419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2683.8,"last_update":"2026-03-21T15:02:29.068828109Z"} +2026/03/21 15:02:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:02:29.075158204Z"} +2026/03/21 15:02:34 [detection_layer] {"stage_name":"detection_layer","events_processed":447,"events_dropped":0,"avg_latency_ms":14.180558439866612,"throughput_eps":0,"last_update":"2026-03-21T15:02:29.210388096Z"} +2026/03/21 15:02:34 [transform_engine] {"stage_name":"transform_engine","events_processed":447,"events_dropped":0,"avg_latency_ms":92.30556698967817,"throughput_eps":0,"last_update":"2026-03-21T15:02:29.210402402Z"} +2026/03/21 15:02:34 ───────────────────────────────────────────────── +2026/03/21 15:02:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:02:39 [transform_engine] {"stage_name":"transform_engine","events_processed":447,"events_dropped":0,"avg_latency_ms":92.30556698967817,"throughput_eps":0,"last_update":"2026-03-21T15:02:34.210067631Z"} +2026/03/21 15:02:39 [log_collector] {"stage_name":"log_collector","events_processed":21019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4203.8,"last_update":"2026-03-21T15:02:34.068064476Z"} +2026/03/21 15:02:39 [metric_collector] {"stage_name":"metric_collector","events_processed":13424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2684.8,"last_update":"2026-03-21T15:02:34.068513937Z"} +2026/03/21 15:02:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:02:34.074841286Z"} +2026/03/21 15:02:39 [detection_layer] {"stage_name":"detection_layer","events_processed":447,"events_dropped":0,"avg_latency_ms":14.180558439866612,"throughput_eps":0,"last_update":"2026-03-21T15:02:34.210058624Z"} +2026/03/21 15:02:39 ───────────────────────────────────────────────── +2026/03/21 15:02:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:02:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:02:39.07574566Z"} +2026/03/21 15:02:44 [detection_layer] {"stage_name":"detection_layer","events_processed":447,"events_dropped":0,"avg_latency_ms":14.180558439866612,"throughput_eps":0,"last_update":"2026-03-21T15:02:39.209953034Z"} +2026/03/21 15:02:44 [transform_engine] {"stage_name":"transform_engine","events_processed":447,"events_dropped":0,"avg_latency_ms":92.30556698967817,"throughput_eps":0,"last_update":"2026-03-21T15:02:39.209966851Z"} +2026/03/21 15:02:44 [log_collector] {"stage_name":"log_collector","events_processed":21019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4203.8,"last_update":"2026-03-21T15:02:39.068914737Z"} +2026/03/21 15:02:44 [metric_collector] {"stage_name":"metric_collector","events_processed":13428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2685.6,"last_update":"2026-03-21T15:02:39.068918855Z"} +2026/03/21 15:02:44 ───────────────────────────────────────────────── +2026/03/21 15:02:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:02:49 [metric_collector] {"stage_name":"metric_collector","events_processed":13433,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2686.6,"last_update":"2026-03-21T15:02:44.068331956Z"} +2026/03/21 15:02:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:02:44.074534365Z"} +2026/03/21 15:02:49 [detection_layer] {"stage_name":"detection_layer","events_processed":447,"events_dropped":0,"avg_latency_ms":14.180558439866612,"throughput_eps":0,"last_update":"2026-03-21T15:02:44.210821613Z"} +2026/03/21 15:02:49 [transform_engine] {"stage_name":"transform_engine","events_processed":447,"events_dropped":0,"avg_latency_ms":92.30556698967817,"throughput_eps":0,"last_update":"2026-03-21T15:02:44.209706948Z"} +2026/03/21 15:02:49 [log_collector] {"stage_name":"log_collector","events_processed":21019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4203.8,"last_update":"2026-03-21T15:02:44.068287201Z"} +2026/03/21 15:02:49 ───────────────────────────────────────────────── +Saved state: 17 clusters, 21020 messages, reason: none +2026/03/21 15:02:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:02:54 [detection_layer] {"stage_name":"detection_layer","events_processed":447,"events_dropped":0,"avg_latency_ms":14.180558439866612,"throughput_eps":0,"last_update":"2026-03-21T15:02:49.210624827Z"} +2026/03/21 15:02:54 [transform_engine] {"stage_name":"transform_engine","events_processed":448,"events_dropped":0,"avg_latency_ms":85.84047739174254,"throughput_eps":0,"last_update":"2026-03-21T15:02:49.270636556Z"} +2026/03/21 15:02:54 [log_collector] {"stage_name":"log_collector","events_processed":21019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4203.8,"last_update":"2026-03-21T15:02:49.068499609Z"} +2026/03/21 15:02:54 [metric_collector] {"stage_name":"metric_collector","events_processed":13438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2687.6,"last_update":"2026-03-21T15:02:49.068504959Z"} +2026/03/21 15:02:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:02:49.075401367Z"} +2026/03/21 15:02:54 ───────────────────────────────────────────────── +2026/03/21 15:02:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:02:59 [log_collector] {"stage_name":"log_collector","events_processed":21029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4205.8,"last_update":"2026-03-21T15:02:54.068087107Z"} +2026/03/21 15:02:59 [metric_collector] {"stage_name":"metric_collector","events_processed":13444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2688.8,"last_update":"2026-03-21T15:02:54.068383425Z"} +2026/03/21 15:02:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5380,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:02:54.078026453Z"} +2026/03/21 15:02:59 [detection_layer] {"stage_name":"detection_layer","events_processed":448,"events_dropped":0,"avg_latency_ms":14.05865515189329,"throughput_eps":0,"last_update":"2026-03-21T15:02:54.210226975Z"} +2026/03/21 15:02:59 [transform_engine] {"stage_name":"transform_engine","events_processed":448,"events_dropped":0,"avg_latency_ms":85.84047739174254,"throughput_eps":0,"last_update":"2026-03-21T15:02:54.210239388Z"} +2026/03/21 15:02:59 ───────────────────────────────────────────────── +2026/03/21 15:03:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:03:04 [metric_collector] {"stage_name":"metric_collector","events_processed":13449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2689.8,"last_update":"2026-03-21T15:02:59.069005603Z"} +2026/03/21 15:03:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:02:59.077286312Z"} +2026/03/21 15:03:04 [detection_layer] {"stage_name":"detection_layer","events_processed":448,"events_dropped":0,"avg_latency_ms":14.05865515189329,"throughput_eps":0,"last_update":"2026-03-21T15:02:59.210493762Z"} +2026/03/21 15:03:04 [transform_engine] {"stage_name":"transform_engine","events_processed":448,"events_dropped":0,"avg_latency_ms":85.84047739174254,"throughput_eps":0,"last_update":"2026-03-21T15:02:59.210522908Z"} +2026/03/21 15:03:04 [log_collector] {"stage_name":"log_collector","events_processed":21030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4206,"last_update":"2026-03-21T15:02:59.069014088Z"} +2026/03/21 15:03:04 ───────────────────────────────────────────────── +2026/03/21 15:03:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:03:09 [metric_collector] {"stage_name":"metric_collector","events_processed":13454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2690.8,"last_update":"2026-03-21T15:03:04.069034158Z"} +2026/03/21 15:03:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:03:04.077301453Z"} +2026/03/21 15:03:09 [detection_layer] {"stage_name":"detection_layer","events_processed":448,"events_dropped":0,"avg_latency_ms":14.05865515189329,"throughput_eps":0,"last_update":"2026-03-21T15:03:04.210542798Z"} +2026/03/21 15:03:09 [transform_engine] {"stage_name":"transform_engine","events_processed":448,"events_dropped":0,"avg_latency_ms":85.84047739174254,"throughput_eps":0,"last_update":"2026-03-21T15:03:04.21058062Z"} +2026/03/21 15:03:09 [log_collector] {"stage_name":"log_collector","events_processed":21030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4206,"last_update":"2026-03-21T15:03:04.068760624Z"} +2026/03/21 15:03:09 ───────────────────────────────────────────────── +2026/03/21 15:03:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:03:14 [metric_collector] {"stage_name":"metric_collector","events_processed":13459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2691.8,"last_update":"2026-03-21T15:03:09.068942994Z"} +2026/03/21 15:03:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:03:09.078202769Z"} +2026/03/21 15:03:14 [detection_layer] {"stage_name":"detection_layer","events_processed":448,"events_dropped":0,"avg_latency_ms":14.05865515189329,"throughput_eps":0,"last_update":"2026-03-21T15:03:09.210480279Z"} +2026/03/21 15:03:14 [transform_engine] {"stage_name":"transform_engine","events_processed":448,"events_dropped":0,"avg_latency_ms":85.84047739174254,"throughput_eps":0,"last_update":"2026-03-21T15:03:09.210501268Z"} +2026/03/21 15:03:14 [log_collector] {"stage_name":"log_collector","events_processed":21030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4206,"last_update":"2026-03-21T15:03:09.068580149Z"} +2026/03/21 15:03:14 ───────────────────────────────────────────────── +2026/03/21 15:03:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:03:19 [metric_collector] {"stage_name":"metric_collector","events_processed":13464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2692.8,"last_update":"2026-03-21T15:03:14.06913514Z"} +2026/03/21 15:03:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5388,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:03:14.075810365Z"} +2026/03/21 15:03:19 [detection_layer] {"stage_name":"detection_layer","events_processed":448,"events_dropped":0,"avg_latency_ms":14.05865515189329,"throughput_eps":0,"last_update":"2026-03-21T15:03:14.210054661Z"} +2026/03/21 15:03:19 [transform_engine] {"stage_name":"transform_engine","events_processed":448,"events_dropped":0,"avg_latency_ms":85.84047739174254,"throughput_eps":0,"last_update":"2026-03-21T15:03:14.210026778Z"} +2026/03/21 15:03:19 [log_collector] {"stage_name":"log_collector","events_processed":21030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4206,"last_update":"2026-03-21T15:03:14.068858901Z"} +2026/03/21 15:03:19 ───────────────────────────────────────────────── +2026/03/21 15:03:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:03:24 [log_collector] {"stage_name":"log_collector","events_processed":21030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4206,"last_update":"2026-03-21T15:03:19.068602488Z"} +2026/03/21 15:03:24 [metric_collector] {"stage_name":"metric_collector","events_processed":13468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2693.6,"last_update":"2026-03-21T15:03:19.068608329Z"} +2026/03/21 15:03:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5390,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:03:19.077869959Z"} +2026/03/21 15:03:24 [detection_layer] {"stage_name":"detection_layer","events_processed":448,"events_dropped":0,"avg_latency_ms":14.05865515189329,"throughput_eps":0,"last_update":"2026-03-21T15:03:19.21010127Z"} +2026/03/21 15:03:24 [transform_engine] {"stage_name":"transform_engine","events_processed":449,"events_dropped":0,"avg_latency_ms":90.54049371339403,"throughput_eps":0,"last_update":"2026-03-21T15:03:19.319478188Z"} +2026/03/21 15:03:24 ───────────────────────────────────────────────── +2026/03/21 15:03:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:03:29 [log_collector] {"stage_name":"log_collector","events_processed":21030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4206,"last_update":"2026-03-21T15:03:24.068086527Z"} +2026/03/21 15:03:29 [metric_collector] {"stage_name":"metric_collector","events_processed":13473,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2694.6,"last_update":"2026-03-21T15:03:24.067955375Z"} +2026/03/21 15:03:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:03:24.077086805Z"} +2026/03/21 15:03:29 [detection_layer] {"stage_name":"detection_layer","events_processed":449,"events_dropped":0,"avg_latency_ms":14.772298321514633,"throughput_eps":0,"last_update":"2026-03-21T15:03:24.210292773Z"} +2026/03/21 15:03:29 [transform_engine] {"stage_name":"transform_engine","events_processed":449,"events_dropped":0,"avg_latency_ms":90.54049371339403,"throughput_eps":0,"last_update":"2026-03-21T15:03:24.210341035Z"} +2026/03/21 15:03:29 ───────────────────────────────────────────────── +2026/03/21 15:03:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:03:34 [metric_collector] {"stage_name":"metric_collector","events_processed":13478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2695.6,"last_update":"2026-03-21T15:03:29.068117606Z"} +2026/03/21 15:03:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:03:29.077067167Z"} +2026/03/21 15:03:34 [detection_layer] {"stage_name":"detection_layer","events_processed":449,"events_dropped":0,"avg_latency_ms":14.772298321514633,"throughput_eps":0,"last_update":"2026-03-21T15:03:29.210370872Z"} +2026/03/21 15:03:34 [transform_engine] {"stage_name":"transform_engine","events_processed":449,"events_dropped":0,"avg_latency_ms":90.54049371339403,"throughput_eps":0,"last_update":"2026-03-21T15:03:29.210375943Z"} +2026/03/21 15:03:34 [log_collector] {"stage_name":"log_collector","events_processed":21030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4206,"last_update":"2026-03-21T15:03:29.068082148Z"} +2026/03/21 15:03:34 ───────────────────────────────────────────────── +2026/03/21 15:03:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:03:39 [metric_collector] {"stage_name":"metric_collector","events_processed":13484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.8,"last_update":"2026-03-21T15:03:34.068728273Z"} +2026/03/21 15:03:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:03:34.076827445Z"} +2026/03/21 15:03:39 [detection_layer] {"stage_name":"detection_layer","events_processed":449,"events_dropped":0,"avg_latency_ms":14.772298321514633,"throughput_eps":0,"last_update":"2026-03-21T15:03:34.210086636Z"} +2026/03/21 15:03:39 [transform_engine] {"stage_name":"transform_engine","events_processed":449,"events_dropped":0,"avg_latency_ms":90.54049371339403,"throughput_eps":0,"last_update":"2026-03-21T15:03:34.210060987Z"} +2026/03/21 15:03:39 [log_collector] {"stage_name":"log_collector","events_processed":21030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4206,"last_update":"2026-03-21T15:03:34.068420814Z"} +2026/03/21 15:03:39 ───────────────────────────────────────────────── +2026/03/21 15:03:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:03:44 [log_collector] {"stage_name":"log_collector","events_processed":21030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4206,"last_update":"2026-03-21T15:03:39.068652913Z"} +2026/03/21 15:03:44 [metric_collector] {"stage_name":"metric_collector","events_processed":13489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2697.8,"last_update":"2026-03-21T15:03:39.068967696Z"} +2026/03/21 15:03:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:03:39.077637321Z"} +2026/03/21 15:03:44 [detection_layer] {"stage_name":"detection_layer","events_processed":449,"events_dropped":0,"avg_latency_ms":14.772298321514633,"throughput_eps":0,"last_update":"2026-03-21T15:03:39.210806669Z"} +2026/03/21 15:03:44 [transform_engine] {"stage_name":"transform_engine","events_processed":449,"events_dropped":0,"avg_latency_ms":90.54049371339403,"throughput_eps":0,"last_update":"2026-03-21T15:03:39.209718766Z"} +2026/03/21 15:03:44 ───────────────────────────────────────────────── +2026/03/21 15:03:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:03:49 [log_collector] {"stage_name":"log_collector","events_processed":21030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4206,"last_update":"2026-03-21T15:03:44.068528407Z"} +2026/03/21 15:03:49 [metric_collector] {"stage_name":"metric_collector","events_processed":13494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2698.8,"last_update":"2026-03-21T15:03:44.068768877Z"} +2026/03/21 15:03:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5400,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:03:44.07487938Z"} +2026/03/21 15:03:49 [detection_layer] {"stage_name":"detection_layer","events_processed":449,"events_dropped":0,"avg_latency_ms":14.772298321514633,"throughput_eps":0,"last_update":"2026-03-21T15:03:44.21011664Z"} +2026/03/21 15:03:49 [transform_engine] {"stage_name":"transform_engine","events_processed":449,"events_dropped":0,"avg_latency_ms":90.54049371339403,"throughput_eps":0,"last_update":"2026-03-21T15:03:44.210098575Z"} +2026/03/21 15:03:49 ───────────────────────────────────────────────── +2026/03/21 15:03:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:03:54 [log_collector] {"stage_name":"log_collector","events_processed":21030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4206,"last_update":"2026-03-21T15:03:49.068579737Z"} +2026/03/21 15:03:54 [metric_collector] {"stage_name":"metric_collector","events_processed":13499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2699.8,"last_update":"2026-03-21T15:03:49.068894369Z"} +2026/03/21 15:03:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5402,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:03:49.078191626Z"} +2026/03/21 15:03:54 [detection_layer] {"stage_name":"detection_layer","events_processed":449,"events_dropped":0,"avg_latency_ms":14.772298321514633,"throughput_eps":0,"last_update":"2026-03-21T15:03:49.210442447Z"} +2026/03/21 15:03:54 [transform_engine] {"stage_name":"transform_engine","events_processed":450,"events_dropped":0,"avg_latency_ms":85.94201397071522,"throughput_eps":0,"last_update":"2026-03-21T15:03:49.278020889Z"} +2026/03/21 15:03:54 ───────────────────────────────────────────────── +2026/03/21 15:03:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:03:59 [log_collector] {"stage_name":"log_collector","events_processed":21030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4206,"last_update":"2026-03-21T15:03:54.068329419Z"} +2026/03/21 15:03:59 [metric_collector] {"stage_name":"metric_collector","events_processed":13504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2700.8,"last_update":"2026-03-21T15:03:54.06864817Z"} +2026/03/21 15:03:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:03:54.077625324Z"} +2026/03/21 15:03:59 [detection_layer] {"stage_name":"detection_layer","events_processed":450,"events_dropped":0,"avg_latency_ms":15.445073857211707,"throughput_eps":0,"last_update":"2026-03-21T15:03:54.210911798Z"} +2026/03/21 15:03:59 [transform_engine] {"stage_name":"transform_engine","events_processed":450,"events_dropped":0,"avg_latency_ms":85.94201397071522,"throughput_eps":0,"last_update":"2026-03-21T15:03:54.209800179Z"} +2026/03/21 15:03:59 ───────────────────────────────────────────────── +Saved state: 17 clusters, 21031 messages, reason: none +2026/03/21 15:04:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:04:04 [detection_layer] {"stage_name":"detection_layer","events_processed":450,"events_dropped":0,"avg_latency_ms":15.445073857211707,"throughput_eps":0,"last_update":"2026-03-21T15:03:59.210024882Z"} +2026/03/21 15:04:04 [transform_engine] {"stage_name":"transform_engine","events_processed":450,"events_dropped":0,"avg_latency_ms":85.94201397071522,"throughput_eps":0,"last_update":"2026-03-21T15:03:59.210037436Z"} +2026/03/21 15:04:04 [log_collector] {"stage_name":"log_collector","events_processed":21030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4206,"last_update":"2026-03-21T15:03:59.068087268Z"} +2026/03/21 15:04:04 [metric_collector] {"stage_name":"metric_collector","events_processed":13509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.8,"last_update":"2026-03-21T15:03:59.068307259Z"} +2026/03/21 15:04:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:03:59.077804229Z"} +2026/03/21 15:04:04 ───────────────────────────────────────────────── +2026/03/21 15:04:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:04:09 [transform_engine] {"stage_name":"transform_engine","events_processed":450,"events_dropped":0,"avg_latency_ms":85.94201397071522,"throughput_eps":0,"last_update":"2026-03-21T15:04:04.210021764Z"} +2026/03/21 15:04:09 [log_collector] {"stage_name":"log_collector","events_processed":21037,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4207.4,"last_update":"2026-03-21T15:04:04.068305794Z"} +2026/03/21 15:04:09 [metric_collector] {"stage_name":"metric_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-21T15:04:04.068539421Z"} +2026/03/21 15:04:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5408,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:04:04.075793947Z"} +2026/03/21 15:04:09 [detection_layer] {"stage_name":"detection_layer","events_processed":450,"events_dropped":0,"avg_latency_ms":15.445073857211707,"throughput_eps":0,"last_update":"2026-03-21T15:04:04.21000974Z"} +2026/03/21 15:04:09 ───────────────────────────────────────────────── +2026/03/21 15:04:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:04:14 [detection_layer] {"stage_name":"detection_layer","events_processed":450,"events_dropped":0,"avg_latency_ms":15.445073857211707,"throughput_eps":0,"last_update":"2026-03-21T15:04:09.210298228Z"} +2026/03/21 15:04:14 [transform_engine] {"stage_name":"transform_engine","events_processed":450,"events_dropped":0,"avg_latency_ms":85.94201397071522,"throughput_eps":0,"last_update":"2026-03-21T15:04:09.210332885Z"} +2026/03/21 15:04:14 [log_collector] {"stage_name":"log_collector","events_processed":21037,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4207.4,"last_update":"2026-03-21T15:04:09.068563714Z"} +2026/03/21 15:04:14 [metric_collector] {"stage_name":"metric_collector","events_processed":13519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2703.8,"last_update":"2026-03-21T15:04:09.068786781Z"} +2026/03/21 15:04:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:04:09.075082359Z"} +2026/03/21 15:04:14 ───────────────────────────────────────────────── +2026/03/21 15:04:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:04:19 [detection_layer] {"stage_name":"detection_layer","events_processed":450,"events_dropped":0,"avg_latency_ms":15.445073857211707,"throughput_eps":0,"last_update":"2026-03-21T15:04:14.210832899Z"} +2026/03/21 15:04:19 [transform_engine] {"stage_name":"transform_engine","events_processed":450,"events_dropped":0,"avg_latency_ms":85.94201397071522,"throughput_eps":0,"last_update":"2026-03-21T15:04:14.209746668Z"} +2026/03/21 15:04:19 [log_collector] {"stage_name":"log_collector","events_processed":21037,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4207.4,"last_update":"2026-03-21T15:04:14.06840265Z"} +2026/03/21 15:04:19 [metric_collector] {"stage_name":"metric_collector","events_processed":13524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2704.8,"last_update":"2026-03-21T15:04:14.068745387Z"} +2026/03/21 15:04:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:04:14.0745839Z"} +2026/03/21 15:04:19 ───────────────────────────────────────────────── +2026/03/21 15:04:22 [ANOMALY] time=2026-03-21T15:04:22Z score=0.8880 method=SEAD details=MAD!:w=0.26,s=0.94 RRCF-fast!:w=0.17,s=0.88 RRCF-mid!:w=0.17,s=0.88 RRCF-slow:w=0.14,s=0.59 COPOD!:w=0.27,s=1.00 +2026/03/21 15:04:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:04:24 [detection_layer] {"stage_name":"detection_layer","events_processed":450,"events_dropped":0,"avg_latency_ms":15.445073857211707,"throughput_eps":0,"last_update":"2026-03-21T15:04:19.210464197Z"} +2026/03/21 15:04:24 [transform_engine] {"stage_name":"transform_engine","events_processed":451,"events_dropped":0,"avg_latency_ms":803.5481607765721,"throughput_eps":0,"last_update":"2026-03-21T15:04:22.884448547Z"} +2026/03/21 15:04:24 [log_collector] {"stage_name":"log_collector","events_processed":21037,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4207.4,"last_update":"2026-03-21T15:04:19.068867104Z"} +2026/03/21 15:04:24 [metric_collector] {"stage_name":"metric_collector","events_processed":13529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2705.8,"last_update":"2026-03-21T15:04:19.069066025Z"} +2026/03/21 15:04:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:04:19.081254139Z"} +2026/03/21 15:04:24 ───────────────────────────────────────────────── +2026/03/21 15:04:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:04:29 [log_collector] {"stage_name":"log_collector","events_processed":21037,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4207.4,"last_update":"2026-03-21T15:04:24.068084557Z"} +2026/03/21 15:04:29 [metric_collector] {"stage_name":"metric_collector","events_processed":13533,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2706.6,"last_update":"2026-03-21T15:04:24.067940441Z"} +2026/03/21 15:04:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:04:24.075598488Z"} +2026/03/21 15:04:29 [detection_layer] {"stage_name":"detection_layer","events_processed":451,"events_dropped":0,"avg_latency_ms":14.627393485769367,"throughput_eps":0,"last_update":"2026-03-21T15:04:24.210807907Z"} +2026/03/21 15:04:29 [transform_engine] {"stage_name":"transform_engine","events_processed":451,"events_dropped":0,"avg_latency_ms":803.5481607765721,"throughput_eps":0,"last_update":"2026-03-21T15:04:24.209699824Z"} +2026/03/21 15:04:29 ───────────────────────────────────────────────── +2026/03/21 15:04:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:04:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:04:29.075776971Z"} +2026/03/21 15:04:34 [detection_layer] {"stage_name":"detection_layer","events_processed":451,"events_dropped":0,"avg_latency_ms":14.627393485769367,"throughput_eps":0,"last_update":"2026-03-21T15:04:29.210405257Z"} +2026/03/21 15:04:34 [transform_engine] {"stage_name":"transform_engine","events_processed":451,"events_dropped":0,"avg_latency_ms":803.5481607765721,"throughput_eps":0,"last_update":"2026-03-21T15:04:29.21043326Z"} +2026/03/21 15:04:34 [log_collector] {"stage_name":"log_collector","events_processed":21037,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4207.4,"last_update":"2026-03-21T15:04:29.068374042Z"} +2026/03/21 15:04:34 [metric_collector] {"stage_name":"metric_collector","events_processed":13539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2707.8,"last_update":"2026-03-21T15:04:29.068387027Z"} +2026/03/21 15:04:34 ───────────────────────────────────────────────── +2026/03/21 15:04:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:04:39 [detection_layer] {"stage_name":"detection_layer","events_processed":451,"events_dropped":0,"avg_latency_ms":14.627393485769367,"throughput_eps":0,"last_update":"2026-03-21T15:04:34.210363325Z"} +2026/03/21 15:04:39 [transform_engine] {"stage_name":"transform_engine","events_processed":451,"events_dropped":0,"avg_latency_ms":803.5481607765721,"throughput_eps":0,"last_update":"2026-03-21T15:04:34.210306867Z"} +2026/03/21 15:04:39 [log_collector] {"stage_name":"log_collector","events_processed":21037,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4207.4,"last_update":"2026-03-21T15:04:34.068301782Z"} +2026/03/21 15:04:39 [metric_collector] {"stage_name":"metric_collector","events_processed":13544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2708.8,"last_update":"2026-03-21T15:04:34.068326229Z"} +2026/03/21 15:04:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5420,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:04:34.079191689Z"} +2026/03/21 15:04:39 ───────────────────────────────────────────────── +2026/03/21 15:04:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:04:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:04:39.077260397Z"} +2026/03/21 15:04:44 [detection_layer] {"stage_name":"detection_layer","events_processed":451,"events_dropped":0,"avg_latency_ms":14.627393485769367,"throughput_eps":0,"last_update":"2026-03-21T15:04:39.210546512Z"} +2026/03/21 15:04:44 [transform_engine] {"stage_name":"transform_engine","events_processed":451,"events_dropped":0,"avg_latency_ms":803.5481607765721,"throughput_eps":0,"last_update":"2026-03-21T15:04:39.210484423Z"} +2026/03/21 15:04:44 [log_collector] {"stage_name":"log_collector","events_processed":21040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4208,"last_update":"2026-03-21T15:04:39.068362735Z"} +2026/03/21 15:04:44 [metric_collector] {"stage_name":"metric_collector","events_processed":13549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2709.8,"last_update":"2026-03-21T15:04:39.068632292Z"} +2026/03/21 15:04:44 ───────────────────────────────────────────────── +2026/03/21 15:04:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:04:49 [log_collector] {"stage_name":"log_collector","events_processed":21047,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4209.4,"last_update":"2026-03-21T15:04:44.068626266Z"} +2026/03/21 15:04:49 [metric_collector] {"stage_name":"metric_collector","events_processed":13554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2710.8,"last_update":"2026-03-21T15:04:44.06892089Z"} +2026/03/21 15:04:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:04:44.075666791Z"} +2026/03/21 15:04:49 [detection_layer] {"stage_name":"detection_layer","events_processed":451,"events_dropped":0,"avg_latency_ms":14.627393485769367,"throughput_eps":0,"last_update":"2026-03-21T15:04:44.210085296Z"} +2026/03/21 15:04:49 [transform_engine] {"stage_name":"transform_engine","events_processed":451,"events_dropped":0,"avg_latency_ms":803.5481607765721,"throughput_eps":0,"last_update":"2026-03-21T15:04:44.210049156Z"} +2026/03/21 15:04:49 ───────────────────────────────────────────────── +2026/03/21 15:04:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:04:54 [detection_layer] {"stage_name":"detection_layer","events_processed":451,"events_dropped":0,"avg_latency_ms":14.627393485769367,"throughput_eps":0,"last_update":"2026-03-21T15:04:49.210722297Z"} +2026/03/21 15:04:54 [transform_engine] {"stage_name":"transform_engine","events_processed":452,"events_dropped":0,"avg_latency_ms":668.1518336212578,"throughput_eps":0,"last_update":"2026-03-21T15:04:49.336288727Z"} +2026/03/21 15:04:54 [log_collector] {"stage_name":"log_collector","events_processed":21049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4209.8,"last_update":"2026-03-21T15:04:49.068619695Z"} +2026/03/21 15:04:54 [metric_collector] {"stage_name":"metric_collector","events_processed":13559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2711.8,"last_update":"2026-03-21T15:04:49.068602031Z"} +2026/03/21 15:04:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:04:49.078429003Z"} +2026/03/21 15:04:54 ───────────────────────────────────────────────── +2026/03/21 15:04:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:04:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:04:54.076730248Z"} +2026/03/21 15:04:59 [detection_layer] {"stage_name":"detection_layer","events_processed":452,"events_dropped":0,"avg_latency_ms":14.548318588615496,"throughput_eps":0,"last_update":"2026-03-21T15:04:54.209962491Z"} +2026/03/21 15:04:59 [transform_engine] {"stage_name":"transform_engine","events_processed":452,"events_dropped":0,"avg_latency_ms":668.1518336212578,"throughput_eps":0,"last_update":"2026-03-21T15:04:54.21000381Z"} +2026/03/21 15:04:59 [log_collector] {"stage_name":"log_collector","events_processed":21049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4209.8,"last_update":"2026-03-21T15:04:59.069261862Z"} +2026/03/21 15:04:59 [metric_collector] {"stage_name":"metric_collector","events_processed":13568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2713.6,"last_update":"2026-03-21T15:04:59.069272201Z"} +2026/03/21 15:04:59 ───────────────────────────────────────────────── +2026/03/21 15:05:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:05:04 [transform_engine] {"stage_name":"transform_engine","events_processed":452,"events_dropped":0,"avg_latency_ms":668.1518336212578,"throughput_eps":0,"last_update":"2026-03-21T15:04:59.210444412Z"} +2026/03/21 15:05:04 [log_collector] {"stage_name":"log_collector","events_processed":21049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4209.8,"last_update":"2026-03-21T15:04:59.069261862Z"} +2026/03/21 15:05:04 [metric_collector] {"stage_name":"metric_collector","events_processed":13568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2713.6,"last_update":"2026-03-21T15:04:59.069272201Z"} +2026/03/21 15:05:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:04:59.079217169Z"} +2026/03/21 15:05:04 [detection_layer] {"stage_name":"detection_layer","events_processed":452,"events_dropped":0,"avg_latency_ms":14.548318588615496,"throughput_eps":0,"last_update":"2026-03-21T15:04:59.210499537Z"} +2026/03/21 15:05:04 ───────────────────────────────────────────────── +2026/03/21 15:05:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:05:09 [log_collector] {"stage_name":"log_collector","events_processed":21049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4209.8,"last_update":"2026-03-21T15:05:04.068650206Z"} +2026/03/21 15:05:09 [metric_collector] {"stage_name":"metric_collector","events_processed":13574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2714.8,"last_update":"2026-03-21T15:05:04.068982432Z"} +2026/03/21 15:05:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:05:04.07532478Z"} +2026/03/21 15:05:09 [detection_layer] {"stage_name":"detection_layer","events_processed":452,"events_dropped":0,"avg_latency_ms":14.548318588615496,"throughput_eps":0,"last_update":"2026-03-21T15:05:04.210516886Z"} +2026/03/21 15:05:09 [transform_engine] {"stage_name":"transform_engine","events_processed":452,"events_dropped":0,"avg_latency_ms":668.1518336212578,"throughput_eps":0,"last_update":"2026-03-21T15:05:04.210497459Z"} +2026/03/21 15:05:09 ───────────────────────────────────────────────── +Saved state: 17 clusters, 21050 messages, reason: none +2026/03/21 15:05:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:05:14 [log_collector] {"stage_name":"log_collector","events_processed":21049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4209.8,"last_update":"2026-03-21T15:05:09.068644279Z"} +2026/03/21 15:05:14 [metric_collector] {"stage_name":"metric_collector","events_processed":13579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2715.8,"last_update":"2026-03-21T15:05:09.068857266Z"} +2026/03/21 15:05:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:05:09.078737109Z"} +2026/03/21 15:05:14 [detection_layer] {"stage_name":"detection_layer","events_processed":452,"events_dropped":0,"avg_latency_ms":14.548318588615496,"throughput_eps":0,"last_update":"2026-03-21T15:05:09.209981335Z"} +2026/03/21 15:05:14 [transform_engine] {"stage_name":"transform_engine","events_processed":452,"events_dropped":0,"avg_latency_ms":668.1518336212578,"throughput_eps":0,"last_update":"2026-03-21T15:05:09.209958351Z"} +2026/03/21 15:05:14 ───────────────────────────────────────────────── +2026/03/21 15:05:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:05:19 [log_collector] {"stage_name":"log_collector","events_processed":21052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4210.4,"last_update":"2026-03-21T15:05:14.068948361Z"} +2026/03/21 15:05:19 [metric_collector] {"stage_name":"metric_collector","events_processed":13584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2716.8,"last_update":"2026-03-21T15:05:14.069394345Z"} +2026/03/21 15:05:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:05:14.076776344Z"} +2026/03/21 15:05:19 [detection_layer] {"stage_name":"detection_layer","events_processed":452,"events_dropped":0,"avg_latency_ms":14.548318588615496,"throughput_eps":0,"last_update":"2026-03-21T15:05:14.210040929Z"} +2026/03/21 15:05:19 [transform_engine] {"stage_name":"transform_engine","events_processed":452,"events_dropped":0,"avg_latency_ms":668.1518336212578,"throughput_eps":0,"last_update":"2026-03-21T15:05:14.210016402Z"} +2026/03/21 15:05:19 ───────────────────────────────────────────────── +2026/03/21 15:05:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:05:24 [log_collector] {"stage_name":"log_collector","events_processed":21060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4212,"last_update":"2026-03-21T15:05:19.068654657Z"} +2026/03/21 15:05:24 [metric_collector] {"stage_name":"metric_collector","events_processed":13589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2717.8,"last_update":"2026-03-21T15:05:19.069077437Z"} +2026/03/21 15:05:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:05:19.078653107Z"} +2026/03/21 15:05:24 [detection_layer] {"stage_name":"detection_layer","events_processed":452,"events_dropped":0,"avg_latency_ms":14.548318588615496,"throughput_eps":0,"last_update":"2026-03-21T15:05:19.210077809Z"} +2026/03/21 15:05:24 [transform_engine] {"stage_name":"transform_engine","events_processed":453,"events_dropped":0,"avg_latency_ms":557.0905160970062,"throughput_eps":0,"last_update":"2026-03-21T15:05:19.322886144Z"} +2026/03/21 15:05:24 ───────────────────────────────────────────────── +2026/03/21 15:05:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:05:29 [log_collector] {"stage_name":"log_collector","events_processed":21112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4222.4,"last_update":"2026-03-21T15:05:24.068929179Z"} +2026/03/21 15:05:29 [metric_collector] {"stage_name":"metric_collector","events_processed":13594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2718.8,"last_update":"2026-03-21T15:05:24.068991248Z"} +2026/03/21 15:05:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:05:24.07631761Z"} +2026/03/21 15:05:29 [detection_layer] {"stage_name":"detection_layer","events_processed":453,"events_dropped":0,"avg_latency_ms":15.340703670892397,"throughput_eps":0,"last_update":"2026-03-21T15:05:24.210385855Z"} +2026/03/21 15:05:29 [transform_engine] {"stage_name":"transform_engine","events_processed":453,"events_dropped":0,"avg_latency_ms":557.0905160970062,"throughput_eps":0,"last_update":"2026-03-21T15:05:24.210430481Z"} +2026/03/21 15:05:29 ───────────────────────────────────────────────── +2026/03/21 15:05:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:05:34 [transform_engine] {"stage_name":"transform_engine","events_processed":453,"events_dropped":0,"avg_latency_ms":557.0905160970062,"throughput_eps":0,"last_update":"2026-03-21T15:05:29.210704269Z"} +2026/03/21 15:05:34 [log_collector] {"stage_name":"log_collector","events_processed":21403,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4280.6,"last_update":"2026-03-21T15:05:29.069025667Z"} +2026/03/21 15:05:34 [metric_collector] {"stage_name":"metric_collector","events_processed":13599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2719.8,"last_update":"2026-03-21T15:05:29.069218817Z"} +2026/03/21 15:05:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5442,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:05:29.07596058Z"} +2026/03/21 15:05:34 [detection_layer] {"stage_name":"detection_layer","events_processed":453,"events_dropped":0,"avg_latency_ms":15.340703670892397,"throughput_eps":0,"last_update":"2026-03-21T15:05:29.210755537Z"} +2026/03/21 15:05:34 ───────────────────────────────────────────────── +2026/03/21 15:05:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:05:39 [log_collector] {"stage_name":"log_collector","events_processed":21405,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4281,"last_update":"2026-03-21T15:05:34.068783002Z"} +2026/03/21 15:05:39 [metric_collector] {"stage_name":"metric_collector","events_processed":13603,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2720.6,"last_update":"2026-03-21T15:05:34.068683572Z"} +2026/03/21 15:05:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:05:34.07897826Z"} +2026/03/21 15:05:39 [detection_layer] {"stage_name":"detection_layer","events_processed":453,"events_dropped":0,"avg_latency_ms":15.340703670892397,"throughput_eps":0,"last_update":"2026-03-21T15:05:34.210253446Z"} +2026/03/21 15:05:39 [transform_engine] {"stage_name":"transform_engine","events_processed":453,"events_dropped":0,"avg_latency_ms":557.0905160970062,"throughput_eps":0,"last_update":"2026-03-21T15:05:34.210276119Z"} +2026/03/21 15:05:39 ───────────────────────────────────────────────── +2026/03/21 15:05:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:05:44 [log_collector] {"stage_name":"log_collector","events_processed":21405,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4281,"last_update":"2026-03-21T15:05:39.069041015Z"} +2026/03/21 15:05:44 [metric_collector] {"stage_name":"metric_collector","events_processed":13609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2721.8,"last_update":"2026-03-21T15:05:39.069431171Z"} +2026/03/21 15:05:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5446,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:05:39.07964254Z"} +2026/03/21 15:05:44 [detection_layer] {"stage_name":"detection_layer","events_processed":453,"events_dropped":0,"avg_latency_ms":15.340703670892397,"throughput_eps":0,"last_update":"2026-03-21T15:05:39.210826432Z"} +2026/03/21 15:05:44 [transform_engine] {"stage_name":"transform_engine","events_processed":453,"events_dropped":0,"avg_latency_ms":557.0905160970062,"throughput_eps":0,"last_update":"2026-03-21T15:05:39.209709282Z"} +2026/03/21 15:05:44 ───────────────────────────────────────────────── +2026/03/21 15:05:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:05:49 [detection_layer] {"stage_name":"detection_layer","events_processed":453,"events_dropped":0,"avg_latency_ms":15.340703670892397,"throughput_eps":0,"last_update":"2026-03-21T15:05:44.21022745Z"} +2026/03/21 15:05:49 [transform_engine] {"stage_name":"transform_engine","events_processed":453,"events_dropped":0,"avg_latency_ms":557.0905160970062,"throughput_eps":0,"last_update":"2026-03-21T15:05:44.210204977Z"} +2026/03/21 15:05:49 [log_collector] {"stage_name":"log_collector","events_processed":21408,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4281.6,"last_update":"2026-03-21T15:05:44.068569989Z"} +2026/03/21 15:05:49 [metric_collector] {"stage_name":"metric_collector","events_processed":13614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2722.8,"last_update":"2026-03-21T15:05:44.068795851Z"} +2026/03/21 15:05:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:05:44.074928286Z"} +2026/03/21 15:05:49 ───────────────────────────────────────────────── +2026/03/21 15:05:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:05:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:05:49.076435526Z"} +2026/03/21 15:05:54 [detection_layer] {"stage_name":"detection_layer","events_processed":453,"events_dropped":0,"avg_latency_ms":15.340703670892397,"throughput_eps":0,"last_update":"2026-03-21T15:05:49.214368564Z"} +2026/03/21 15:05:54 [transform_engine] {"stage_name":"transform_engine","events_processed":454,"events_dropped":0,"avg_latency_ms":1004.191964077605,"throughput_eps":0,"last_update":"2026-03-21T15:05:52.005977036Z"} +2026/03/21 15:05:54 [log_collector] {"stage_name":"log_collector","events_processed":21419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4283.8,"last_update":"2026-03-21T15:05:54.068497581Z"} +2026/03/21 15:05:54 [metric_collector] {"stage_name":"metric_collector","events_processed":13619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2723.8,"last_update":"2026-03-21T15:05:49.06893017Z"} +2026/03/21 15:05:54 ───────────────────────────────────────────────── +2026/03/21 15:05:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:05:59 [log_collector] {"stage_name":"log_collector","events_processed":21419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4283.8,"last_update":"2026-03-21T15:05:54.068497581Z"} +2026/03/21 15:05:59 [metric_collector] {"stage_name":"metric_collector","events_processed":13624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2724.8,"last_update":"2026-03-21T15:05:54.069042384Z"} +2026/03/21 15:05:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5452,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:05:54.077567363Z"} +2026/03/21 15:05:59 [detection_layer] {"stage_name":"detection_layer","events_processed":454,"events_dropped":0,"avg_latency_ms":15.982891736713917,"throughput_eps":0,"last_update":"2026-03-21T15:05:54.210976086Z"} +2026/03/21 15:05:59 [transform_engine] {"stage_name":"transform_engine","events_processed":454,"events_dropped":0,"avg_latency_ms":1004.191964077605,"throughput_eps":0,"last_update":"2026-03-21T15:05:54.20974626Z"} +2026/03/21 15:05:59 ───────────────────────────────────────────────── +2026/03/21 15:06:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:06:04 [log_collector] {"stage_name":"log_collector","events_processed":21426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4285.2,"last_update":"2026-03-21T15:05:59.0690781Z"} +2026/03/21 15:06:04 [metric_collector] {"stage_name":"metric_collector","events_processed":13629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2725.8,"last_update":"2026-03-21T15:05:59.069586033Z"} +2026/03/21 15:06:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:05:59.082930933Z"} +2026/03/21 15:06:04 [detection_layer] {"stage_name":"detection_layer","events_processed":454,"events_dropped":0,"avg_latency_ms":15.982891736713917,"throughput_eps":0,"last_update":"2026-03-21T15:05:59.210265321Z"} +2026/03/21 15:06:04 [transform_engine] {"stage_name":"transform_engine","events_processed":454,"events_dropped":0,"avg_latency_ms":1004.191964077605,"throughput_eps":0,"last_update":"2026-03-21T15:05:59.210315347Z"} +2026/03/21 15:06:04 ───────────────────────────────────────────────── +2026/03/21 15:06:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:06:09 [metric_collector] {"stage_name":"metric_collector","events_processed":13634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2726.8,"last_update":"2026-03-21T15:06:04.068823876Z"} +2026/03/21 15:06:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:06:04.078890657Z"} +2026/03/21 15:06:09 [detection_layer] {"stage_name":"detection_layer","events_processed":454,"events_dropped":0,"avg_latency_ms":15.982891736713917,"throughput_eps":0,"last_update":"2026-03-21T15:06:04.21022593Z"} +2026/03/21 15:06:09 [transform_engine] {"stage_name":"transform_engine","events_processed":454,"events_dropped":0,"avg_latency_ms":1004.191964077605,"throughput_eps":0,"last_update":"2026-03-21T15:06:04.21018431Z"} +2026/03/21 15:06:09 [log_collector] {"stage_name":"log_collector","events_processed":21435,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4287,"last_update":"2026-03-21T15:06:04.068142361Z"} +2026/03/21 15:06:09 ───────────────────────────────────────────────── +2026/03/21 15:06:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:06:14 [transform_engine] {"stage_name":"transform_engine","events_processed":454,"events_dropped":0,"avg_latency_ms":1004.191964077605,"throughput_eps":0,"last_update":"2026-03-21T15:06:09.210011658Z"} +2026/03/21 15:06:14 [log_collector] {"stage_name":"log_collector","events_processed":21435,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4287,"last_update":"2026-03-21T15:06:09.068117693Z"} +2026/03/21 15:06:14 [metric_collector] {"stage_name":"metric_collector","events_processed":13639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2727.8,"last_update":"2026-03-21T15:06:09.068637519Z"} +2026/03/21 15:06:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:06:09.077681351Z"} +2026/03/21 15:06:14 [detection_layer] {"stage_name":"detection_layer","events_processed":454,"events_dropped":0,"avg_latency_ms":15.982891736713917,"throughput_eps":0,"last_update":"2026-03-21T15:06:09.210067897Z"} +2026/03/21 15:06:14 ───────────────────────────────────────────────── +2026/03/21 15:06:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:06:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:06:14.077869517Z"} +2026/03/21 15:06:19 [detection_layer] {"stage_name":"detection_layer","events_processed":454,"events_dropped":0,"avg_latency_ms":15.982891736713917,"throughput_eps":0,"last_update":"2026-03-21T15:06:14.210076618Z"} +2026/03/21 15:06:19 [transform_engine] {"stage_name":"transform_engine","events_processed":454,"events_dropped":0,"avg_latency_ms":1004.191964077605,"throughput_eps":0,"last_update":"2026-03-21T15:06:14.210179666Z"} +2026/03/21 15:06:19 [log_collector] {"stage_name":"log_collector","events_processed":21435,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4287,"last_update":"2026-03-21T15:06:14.068660538Z"} +2026/03/21 15:06:19 [metric_collector] {"stage_name":"metric_collector","events_processed":13644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2728.8,"last_update":"2026-03-21T15:06:14.069047961Z"} +2026/03/21 15:06:19 ───────────────────────────────────────────────── +2026/03/21 15:06:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:06:24 [metric_collector] {"stage_name":"metric_collector","events_processed":13649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2729.8,"last_update":"2026-03-21T15:06:19.068919628Z"} +2026/03/21 15:06:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:06:19.078166299Z"} +2026/03/21 15:06:24 [detection_layer] {"stage_name":"detection_layer","events_processed":454,"events_dropped":0,"avg_latency_ms":15.982891736713917,"throughput_eps":0,"last_update":"2026-03-21T15:06:19.210505113Z"} +2026/03/21 15:06:24 [transform_engine] {"stage_name":"transform_engine","events_processed":455,"events_dropped":0,"avg_latency_ms":825.761450262084,"throughput_eps":0,"last_update":"2026-03-21T15:06:19.322573433Z"} +2026/03/21 15:06:24 [log_collector] {"stage_name":"log_collector","events_processed":21435,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4287,"last_update":"2026-03-21T15:06:19.068598173Z"} +2026/03/21 15:06:24 ───────────────────────────────────────────────── +2026/03/21 15:06:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:06:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:06:24.077854883Z"} +2026/03/21 15:06:29 [detection_layer] {"stage_name":"detection_layer","events_processed":455,"events_dropped":0,"avg_latency_ms":16.928356589371134,"throughput_eps":0,"last_update":"2026-03-21T15:06:24.210051726Z"} +2026/03/21 15:06:29 [transform_engine] {"stage_name":"transform_engine","events_processed":455,"events_dropped":0,"avg_latency_ms":825.761450262084,"throughput_eps":0,"last_update":"2026-03-21T15:06:24.21006446Z"} +2026/03/21 15:06:29 [log_collector] {"stage_name":"log_collector","events_processed":21435,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4287,"last_update":"2026-03-21T15:06:24.068258834Z"} +2026/03/21 15:06:29 [metric_collector] {"stage_name":"metric_collector","events_processed":13654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2730.8,"last_update":"2026-03-21T15:06:24.068683467Z"} +2026/03/21 15:06:29 ───────────────────────────────────────────────── +2026/03/21 15:06:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:06:34 [log_collector] {"stage_name":"log_collector","events_processed":21435,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4287,"last_update":"2026-03-21T15:06:29.068895821Z"} +2026/03/21 15:06:34 [metric_collector] {"stage_name":"metric_collector","events_processed":13659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2731.8,"last_update":"2026-03-21T15:06:29.069035708Z"} +2026/03/21 15:06:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:06:29.079080487Z"} +2026/03/21 15:06:34 [detection_layer] {"stage_name":"detection_layer","events_processed":455,"events_dropped":0,"avg_latency_ms":16.928356589371134,"throughput_eps":0,"last_update":"2026-03-21T15:06:29.210365764Z"} +2026/03/21 15:06:34 [transform_engine] {"stage_name":"transform_engine","events_processed":455,"events_dropped":0,"avg_latency_ms":825.761450262084,"throughput_eps":0,"last_update":"2026-03-21T15:06:29.210376365Z"} +2026/03/21 15:06:34 ───────────────────────────────────────────────── +2026/03/21 15:06:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:06:39 [log_collector] {"stage_name":"log_collector","events_processed":21435,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4287,"last_update":"2026-03-21T15:06:34.068717691Z"} +2026/03/21 15:06:39 [metric_collector] {"stage_name":"metric_collector","events_processed":13664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2732.8,"last_update":"2026-03-21T15:06:34.069062451Z"} +2026/03/21 15:06:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:06:34.07897618Z"} +2026/03/21 15:06:39 [detection_layer] {"stage_name":"detection_layer","events_processed":455,"events_dropped":0,"avg_latency_ms":16.928356589371134,"throughput_eps":0,"last_update":"2026-03-21T15:06:34.210241148Z"} +2026/03/21 15:06:39 [transform_engine] {"stage_name":"transform_engine","events_processed":455,"events_dropped":0,"avg_latency_ms":825.761450262084,"throughput_eps":0,"last_update":"2026-03-21T15:06:34.210253682Z"} +2026/03/21 15:06:39 ───────────────────────────────────────────────── +2026/03/21 15:06:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:06:44 [log_collector] {"stage_name":"log_collector","events_processed":21435,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4287,"last_update":"2026-03-21T15:06:39.068076943Z"} +2026/03/21 15:06:44 [metric_collector] {"stage_name":"metric_collector","events_processed":13668,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2733.6,"last_update":"2026-03-21T15:06:39.067968916Z"} +2026/03/21 15:06:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5470,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:06:39.07897151Z"} +2026/03/21 15:06:44 [detection_layer] {"stage_name":"detection_layer","events_processed":455,"events_dropped":0,"avg_latency_ms":16.928356589371134,"throughput_eps":0,"last_update":"2026-03-21T15:06:39.210285402Z"} +2026/03/21 15:06:44 [transform_engine] {"stage_name":"transform_engine","events_processed":455,"events_dropped":0,"avg_latency_ms":825.761450262084,"throughput_eps":0,"last_update":"2026-03-21T15:06:39.210300441Z"} +2026/03/21 15:06:44 ───────────────────────────────────────────────── +2026/03/21 15:06:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:06:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:06:44.078569977Z"} +2026/03/21 15:06:49 [detection_layer] {"stage_name":"detection_layer","events_processed":455,"events_dropped":0,"avg_latency_ms":16.928356589371134,"throughput_eps":0,"last_update":"2026-03-21T15:06:44.210853637Z"} +2026/03/21 15:06:49 [transform_engine] {"stage_name":"transform_engine","events_processed":455,"events_dropped":0,"avg_latency_ms":825.761450262084,"throughput_eps":0,"last_update":"2026-03-21T15:06:44.209741968Z"} +2026/03/21 15:06:49 [log_collector] {"stage_name":"log_collector","events_processed":21435,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4287,"last_update":"2026-03-21T15:06:44.06866208Z"} +2026/03/21 15:06:49 [metric_collector] {"stage_name":"metric_collector","events_processed":13674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2734.8,"last_update":"2026-03-21T15:06:44.06921538Z"} +2026/03/21 15:06:49 ───────────────────────────────────────────────── +2026/03/21 15:06:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:06:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:06:49.077067601Z"} +2026/03/21 15:06:54 [detection_layer] {"stage_name":"detection_layer","events_processed":455,"events_dropped":0,"avg_latency_ms":16.928356589371134,"throughput_eps":0,"last_update":"2026-03-21T15:06:49.209889323Z"} +2026/03/21 15:06:54 [transform_engine] {"stage_name":"transform_engine","events_processed":456,"events_dropped":0,"avg_latency_ms":675.1566440096673,"throughput_eps":0,"last_update":"2026-03-21T15:06:49.282715931Z"} +2026/03/21 15:06:54 [log_collector] {"stage_name":"log_collector","events_processed":21435,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4287,"last_update":"2026-03-21T15:06:49.068074136Z"} +2026/03/21 15:06:54 [metric_collector] {"stage_name":"metric_collector","events_processed":13679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2735.8,"last_update":"2026-03-21T15:06:49.068392035Z"} +2026/03/21 15:06:54 ───────────────────────────────────────────────── +2026/03/21 15:06:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:06:59 [log_collector] {"stage_name":"log_collector","events_processed":21435,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4287,"last_update":"2026-03-21T15:06:59.068280514Z"} +2026/03/21 15:06:59 [metric_collector] {"stage_name":"metric_collector","events_processed":13684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2736.8,"last_update":"2026-03-21T15:06:54.069176116Z"} +2026/03/21 15:06:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5476,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:06:54.078824065Z"} +2026/03/21 15:06:59 [detection_layer] {"stage_name":"detection_layer","events_processed":456,"events_dropped":0,"avg_latency_ms":18.009553071496907,"throughput_eps":0,"last_update":"2026-03-21T15:06:54.210175478Z"} +2026/03/21 15:06:59 [transform_engine] {"stage_name":"transform_engine","events_processed":456,"events_dropped":0,"avg_latency_ms":675.1566440096673,"throughput_eps":0,"last_update":"2026-03-21T15:06:54.210203983Z"} +2026/03/21 15:06:59 ───────────────────────────────────────────────── +2026/03/21 15:07:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:07:04 [detection_layer] {"stage_name":"detection_layer","events_processed":456,"events_dropped":0,"avg_latency_ms":18.009553071496907,"throughput_eps":0,"last_update":"2026-03-21T15:06:59.21040327Z"} +2026/03/21 15:07:04 [transform_engine] {"stage_name":"transform_engine","events_processed":456,"events_dropped":0,"avg_latency_ms":675.1566440096673,"throughput_eps":0,"last_update":"2026-03-21T15:06:59.210415773Z"} +2026/03/21 15:07:04 [log_collector] {"stage_name":"log_collector","events_processed":21435,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4287,"last_update":"2026-03-21T15:06:59.068280514Z"} +2026/03/21 15:07:04 [metric_collector] {"stage_name":"metric_collector","events_processed":13689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2737.8,"last_update":"2026-03-21T15:06:59.06873755Z"} +2026/03/21 15:07:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:06:59.078237134Z"} +2026/03/21 15:07:04 ───────────────────────────────────────────────── +2026/03/21 15:07:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:07:09 [log_collector] {"stage_name":"log_collector","events_processed":21435,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4287,"last_update":"2026-03-21T15:07:09.06811789Z"} +2026/03/21 15:07:09 [metric_collector] {"stage_name":"metric_collector","events_processed":13694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2738.8,"last_update":"2026-03-21T15:07:04.069227809Z"} +2026/03/21 15:07:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5480,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:07:04.077471849Z"} +2026/03/21 15:07:09 [detection_layer] {"stage_name":"detection_layer","events_processed":456,"events_dropped":0,"avg_latency_ms":18.009553071496907,"throughput_eps":0,"last_update":"2026-03-21T15:07:04.210834888Z"} +2026/03/21 15:07:09 [transform_engine] {"stage_name":"transform_engine","events_processed":456,"events_dropped":0,"avg_latency_ms":675.1566440096673,"throughput_eps":0,"last_update":"2026-03-21T15:07:04.209706577Z"} +2026/03/21 15:07:09 ───────────────────────────────────────────────── +Saved state: 17 clusters, 21436 messages, reason: none +2026/03/21 15:07:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:07:14 [transform_engine] {"stage_name":"transform_engine","events_processed":456,"events_dropped":0,"avg_latency_ms":675.1566440096673,"throughput_eps":0,"last_update":"2026-03-21T15:07:09.210858519Z"} +2026/03/21 15:07:14 [log_collector] {"stage_name":"log_collector","events_processed":21435,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4287,"last_update":"2026-03-21T15:07:09.06811789Z"} +2026/03/21 15:07:14 [metric_collector] {"stage_name":"metric_collector","events_processed":13699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2739.8,"last_update":"2026-03-21T15:07:09.068884028Z"} +2026/03/21 15:07:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5482,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:07:09.078381939Z"} +2026/03/21 15:07:14 [detection_layer] {"stage_name":"detection_layer","events_processed":456,"events_dropped":0,"avg_latency_ms":18.009553071496907,"throughput_eps":0,"last_update":"2026-03-21T15:07:09.210748018Z"} +2026/03/21 15:07:14 ───────────────────────────────────────────────── +2026/03/21 15:07:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:07:19 [log_collector] {"stage_name":"log_collector","events_processed":21449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4289.8,"last_update":"2026-03-21T15:07:14.068083177Z"} +2026/03/21 15:07:19 [metric_collector] {"stage_name":"metric_collector","events_processed":13704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2740.8,"last_update":"2026-03-21T15:07:14.068886165Z"} +2026/03/21 15:07:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5482,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:07:14.068337043Z"} +2026/03/21 15:07:19 [detection_layer] {"stage_name":"detection_layer","events_processed":456,"events_dropped":0,"avg_latency_ms":18.009553071496907,"throughput_eps":0,"last_update":"2026-03-21T15:07:14.210508182Z"} +2026/03/21 15:07:19 [transform_engine] {"stage_name":"transform_engine","events_processed":456,"events_dropped":0,"avg_latency_ms":675.1566440096673,"throughput_eps":0,"last_update":"2026-03-21T15:07:14.210535875Z"} +2026/03/21 15:07:19 ───────────────────────────────────────────────── +2026/03/21 15:07:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:07:24 [metric_collector] {"stage_name":"metric_collector","events_processed":13709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2741.8,"last_update":"2026-03-21T15:07:19.068783598Z"} +2026/03/21 15:07:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5486,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:07:24.068362345Z"} +2026/03/21 15:07:24 [detection_layer] {"stage_name":"detection_layer","events_processed":456,"events_dropped":0,"avg_latency_ms":18.009553071496907,"throughput_eps":0,"last_update":"2026-03-21T15:07:19.210676193Z"} +2026/03/21 15:07:24 [transform_engine] {"stage_name":"transform_engine","events_processed":457,"events_dropped":0,"avg_latency_ms":563.0780078077338,"throughput_eps":0,"last_update":"2026-03-21T15:07:19.325391514Z"} +2026/03/21 15:07:24 [log_collector] {"stage_name":"log_collector","events_processed":21449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4289.8,"last_update":"2026-03-21T15:07:24.068450314Z"} +2026/03/21 15:07:24 ───────────────────────────────────────────────── +2026/03/21 15:07:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:07:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5486,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:07:24.068362345Z"} +2026/03/21 15:07:29 [detection_layer] {"stage_name":"detection_layer","events_processed":457,"events_dropped":0,"avg_latency_ms":18.281484457197525,"throughput_eps":0,"last_update":"2026-03-21T15:07:24.210737074Z"} +2026/03/21 15:07:29 [transform_engine] {"stage_name":"transform_engine","events_processed":457,"events_dropped":0,"avg_latency_ms":563.0780078077338,"throughput_eps":0,"last_update":"2026-03-21T15:07:24.210681879Z"} +2026/03/21 15:07:29 [log_collector] {"stage_name":"log_collector","events_processed":21449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4289.8,"last_update":"2026-03-21T15:07:24.068450314Z"} +2026/03/21 15:07:29 [metric_collector] {"stage_name":"metric_collector","events_processed":13714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2742.8,"last_update":"2026-03-21T15:07:24.069075452Z"} +2026/03/21 15:07:29 ───────────────────────────────────────────────── +2026/03/21 15:07:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:07:34 [detection_layer] {"stage_name":"detection_layer","events_processed":457,"events_dropped":0,"avg_latency_ms":18.281484457197525,"throughput_eps":0,"last_update":"2026-03-21T15:07:29.210524257Z"} +2026/03/21 15:07:34 [transform_engine] {"stage_name":"transform_engine","events_processed":457,"events_dropped":0,"avg_latency_ms":563.0780078077338,"throughput_eps":0,"last_update":"2026-03-21T15:07:29.210406653Z"} +2026/03/21 15:07:34 [log_collector] {"stage_name":"log_collector","events_processed":21449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4289.8,"last_update":"2026-03-21T15:07:29.068064154Z"} +2026/03/21 15:07:34 [metric_collector] {"stage_name":"metric_collector","events_processed":13719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2743.8,"last_update":"2026-03-21T15:07:29.068678371Z"} +2026/03/21 15:07:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5490,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:07:29.078006928Z"} +2026/03/21 15:07:34 ───────────────────────────────────────────────── +2026/03/21 15:07:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:07:39 [metric_collector] {"stage_name":"metric_collector","events_processed":13724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2744.8,"last_update":"2026-03-21T15:07:34.068967952Z"} +2026/03/21 15:07:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:07:34.077021988Z"} +2026/03/21 15:07:39 [detection_layer] {"stage_name":"detection_layer","events_processed":457,"events_dropped":0,"avg_latency_ms":18.281484457197525,"throughput_eps":0,"last_update":"2026-03-21T15:07:34.210479398Z"} +2026/03/21 15:07:39 [transform_engine] {"stage_name":"transform_engine","events_processed":457,"events_dropped":0,"avg_latency_ms":563.0780078077338,"throughput_eps":0,"last_update":"2026-03-21T15:07:34.210372623Z"} +2026/03/21 15:07:39 [log_collector] {"stage_name":"log_collector","events_processed":21449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4289.8,"last_update":"2026-03-21T15:07:34.068699287Z"} +2026/03/21 15:07:39 ───────────────────────────────────────────────── +2026/03/21 15:07:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:07:44 [log_collector] {"stage_name":"log_collector","events_processed":21449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4289.8,"last_update":"2026-03-21T15:07:44.068399362Z"} +2026/03/21 15:07:44 [metric_collector] {"stage_name":"metric_collector","events_processed":13729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2745.8,"last_update":"2026-03-21T15:07:39.069391956Z"} +2026/03/21 15:07:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:07:39.079224549Z"} +2026/03/21 15:07:44 [detection_layer] {"stage_name":"detection_layer","events_processed":457,"events_dropped":0,"avg_latency_ms":18.281484457197525,"throughput_eps":0,"last_update":"2026-03-21T15:07:39.210690434Z"} +2026/03/21 15:07:44 [transform_engine] {"stage_name":"transform_engine","events_processed":457,"events_dropped":0,"avg_latency_ms":563.0780078077338,"throughput_eps":0,"last_update":"2026-03-21T15:07:39.210569683Z"} +2026/03/21 15:07:44 ───────────────────────────────────────────────── +2026/03/21 15:07:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:07:49 [log_collector] {"stage_name":"log_collector","events_processed":21449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4289.8,"last_update":"2026-03-21T15:07:44.068399362Z"} +2026/03/21 15:07:49 [metric_collector] {"stage_name":"metric_collector","events_processed":13734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2746.8,"last_update":"2026-03-21T15:07:44.068713535Z"} +2026/03/21 15:07:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5496,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:07:44.077389852Z"} +2026/03/21 15:07:49 [detection_layer] {"stage_name":"detection_layer","events_processed":457,"events_dropped":0,"avg_latency_ms":18.281484457197525,"throughput_eps":0,"last_update":"2026-03-21T15:07:44.210693198Z"} +2026/03/21 15:07:49 [transform_engine] {"stage_name":"transform_engine","events_processed":457,"events_dropped":0,"avg_latency_ms":563.0780078077338,"throughput_eps":0,"last_update":"2026-03-21T15:07:44.210796826Z"} +2026/03/21 15:07:49 ───────────────────────────────────────────────── +2026/03/21 15:07:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:07:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5498,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:07:49.077790083Z"} +2026/03/21 15:07:54 [detection_layer] {"stage_name":"detection_layer","events_processed":457,"events_dropped":0,"avg_latency_ms":18.281484457197525,"throughput_eps":0,"last_update":"2026-03-21T15:07:49.210004924Z"} +2026/03/21 15:07:54 [transform_engine] {"stage_name":"transform_engine","events_processed":458,"events_dropped":0,"avg_latency_ms":468.0624726461871,"throughput_eps":0,"last_update":"2026-03-21T15:07:49.298113253Z"} +2026/03/21 15:07:54 [log_collector] {"stage_name":"log_collector","events_processed":21449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4289.8,"last_update":"2026-03-21T15:07:49.068744638Z"} +2026/03/21 15:07:54 [metric_collector] {"stage_name":"metric_collector","events_processed":13739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2747.8,"last_update":"2026-03-21T15:07:49.06909029Z"} +2026/03/21 15:07:54 ───────────────────────────────────────────────── +2026/03/21 15:07:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:07:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:07:54.078026846Z"} +2026/03/21 15:07:59 [detection_layer] {"stage_name":"detection_layer","events_processed":458,"events_dropped":0,"avg_latency_ms":18.99112796575802,"throughput_eps":0,"last_update":"2026-03-21T15:07:54.210490904Z"} +2026/03/21 15:07:59 [transform_engine] {"stage_name":"transform_engine","events_processed":458,"events_dropped":0,"avg_latency_ms":468.0624726461871,"throughput_eps":0,"last_update":"2026-03-21T15:07:54.210405249Z"} +2026/03/21 15:07:59 [log_collector] {"stage_name":"log_collector","events_processed":21449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4289.8,"last_update":"2026-03-21T15:07:54.068709129Z"} +2026/03/21 15:07:59 [metric_collector] {"stage_name":"metric_collector","events_processed":13744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2748.8,"last_update":"2026-03-21T15:07:54.06951327Z"} +2026/03/21 15:07:59 ───────────────────────────────────────────────── +2026/03/21 15:08:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:08:04 [log_collector] {"stage_name":"log_collector","events_processed":21449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4289.8,"last_update":"2026-03-21T15:07:59.068080208Z"} +2026/03/21 15:08:04 [metric_collector] {"stage_name":"metric_collector","events_processed":13748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2749.6,"last_update":"2026-03-21T15:07:59.067950579Z"} +2026/03/21 15:08:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:07:59.077530859Z"} +2026/03/21 15:08:04 [detection_layer] {"stage_name":"detection_layer","events_processed":458,"events_dropped":0,"avg_latency_ms":18.99112796575802,"throughput_eps":0,"last_update":"2026-03-21T15:07:59.20988663Z"} +2026/03/21 15:08:04 [transform_engine] {"stage_name":"transform_engine","events_processed":458,"events_dropped":0,"avg_latency_ms":468.0624726461871,"throughput_eps":0,"last_update":"2026-03-21T15:07:59.209785296Z"} +2026/03/21 15:08:04 ───────────────────────────────────────────────── +2026/03/21 15:08:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:08:09 [metric_collector] {"stage_name":"metric_collector","events_processed":13754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2750.8,"last_update":"2026-03-21T15:08:04.069287369Z"} +2026/03/21 15:08:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:08:04.077981622Z"} +2026/03/21 15:08:09 [detection_layer] {"stage_name":"detection_layer","events_processed":458,"events_dropped":0,"avg_latency_ms":18.99112796575802,"throughput_eps":0,"last_update":"2026-03-21T15:08:04.210395374Z"} +2026/03/21 15:08:09 [transform_engine] {"stage_name":"transform_engine","events_processed":458,"events_dropped":0,"avg_latency_ms":468.0624726461871,"throughput_eps":0,"last_update":"2026-03-21T15:08:04.210517066Z"} +2026/03/21 15:08:09 [log_collector] {"stage_name":"log_collector","events_processed":21449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4289.8,"last_update":"2026-03-21T15:08:04.06862981Z"} +2026/03/21 15:08:09 ───────────────────────────────────────────────── +2026/03/21 15:08:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:08:14 [transform_engine] {"stage_name":"transform_engine","events_processed":458,"events_dropped":0,"avg_latency_ms":468.0624726461871,"throughput_eps":0,"last_update":"2026-03-21T15:08:09.210369179Z"} +2026/03/21 15:08:14 [log_collector] {"stage_name":"log_collector","events_processed":21449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4289.8,"last_update":"2026-03-21T15:08:09.068170476Z"} +2026/03/21 15:08:14 [metric_collector] {"stage_name":"metric_collector","events_processed":13759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2751.8,"last_update":"2026-03-21T15:08:09.068499897Z"} +2026/03/21 15:08:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5506,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:08:09.078179537Z"} +2026/03/21 15:08:14 [detection_layer] {"stage_name":"detection_layer","events_processed":458,"events_dropped":0,"avg_latency_ms":18.99112796575802,"throughput_eps":0,"last_update":"2026-03-21T15:08:09.210475744Z"} +2026/03/21 15:08:14 ───────────────────────────────────────────────── +Saved state: 17 clusters, 21450 messages, reason: none +2026/03/21 15:08:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:08:19 [metric_collector] {"stage_name":"metric_collector","events_processed":13764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2752.8,"last_update":"2026-03-21T15:08:14.068624596Z"} +2026/03/21 15:08:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:08:14.077459247Z"} +2026/03/21 15:08:19 [detection_layer] {"stage_name":"detection_layer","events_processed":458,"events_dropped":0,"avg_latency_ms":18.99112796575802,"throughput_eps":0,"last_update":"2026-03-21T15:08:14.210894015Z"} +2026/03/21 15:08:19 [transform_engine] {"stage_name":"transform_engine","events_processed":458,"events_dropped":0,"avg_latency_ms":468.0624726461871,"throughput_eps":0,"last_update":"2026-03-21T15:08:14.209679739Z"} +2026/03/21 15:08:19 [log_collector] {"stage_name":"log_collector","events_processed":21449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4289.8,"last_update":"2026-03-21T15:08:14.068267792Z"} +2026/03/21 15:08:19 ───────────────────────────────────────────────── +2026/03/21 15:08:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:08:24 [detection_layer] {"stage_name":"detection_layer","events_processed":458,"events_dropped":0,"avg_latency_ms":18.99112796575802,"throughput_eps":0,"last_update":"2026-03-21T15:08:19.210775053Z"} +2026/03/21 15:08:24 [transform_engine] {"stage_name":"transform_engine","events_processed":459,"events_dropped":0,"avg_latency_ms":396.2830005169497,"throughput_eps":0,"last_update":"2026-03-21T15:08:19.318839677Z"} +2026/03/21 15:08:24 [log_collector] {"stage_name":"log_collector","events_processed":21454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4290.8,"last_update":"2026-03-21T15:08:24.068265524Z"} +2026/03/21 15:08:24 [metric_collector] {"stage_name":"metric_collector","events_processed":13774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2754.8,"last_update":"2026-03-21T15:08:24.068661924Z"} +2026/03/21 15:08:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:08:19.075513086Z"} +2026/03/21 15:08:24 ───────────────────────────────────────────────── +2026/03/21 15:08:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:08:29 [log_collector] {"stage_name":"log_collector","events_processed":21454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4290.8,"last_update":"2026-03-21T15:08:24.068265524Z"} +2026/03/21 15:08:29 [metric_collector] {"stage_name":"metric_collector","events_processed":13774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2754.8,"last_update":"2026-03-21T15:08:24.068661924Z"} +2026/03/21 15:08:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5512,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:08:24.077169098Z"} +2026/03/21 15:08:29 [detection_layer] {"stage_name":"detection_layer","events_processed":459,"events_dropped":0,"avg_latency_ms":17.55441957260642,"throughput_eps":0,"last_update":"2026-03-21T15:08:24.210416246Z"} +2026/03/21 15:08:29 [transform_engine] {"stage_name":"transform_engine","events_processed":459,"events_dropped":0,"avg_latency_ms":396.2830005169497,"throughput_eps":0,"last_update":"2026-03-21T15:08:24.210425303Z"} +2026/03/21 15:08:29 ───────────────────────────────────────────────── +2026/03/21 15:08:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:08:34 [log_collector] {"stage_name":"log_collector","events_processed":21454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4290.8,"last_update":"2026-03-21T15:08:29.068992023Z"} +2026/03/21 15:08:34 [metric_collector] {"stage_name":"metric_collector","events_processed":13779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2755.8,"last_update":"2026-03-21T15:08:29.069219759Z"} +2026/03/21 15:08:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:08:29.075418713Z"} +2026/03/21 15:08:34 [detection_layer] {"stage_name":"detection_layer","events_processed":459,"events_dropped":0,"avg_latency_ms":17.55441957260642,"throughput_eps":0,"last_update":"2026-03-21T15:08:29.210044632Z"} +2026/03/21 15:08:34 [transform_engine] {"stage_name":"transform_engine","events_processed":459,"events_dropped":0,"avg_latency_ms":396.2830005169497,"throughput_eps":0,"last_update":"2026-03-21T15:08:29.210053959Z"} +2026/03/21 15:08:34 ───────────────────────────────────────────────── +2026/03/21 15:08:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:08:39 [log_collector] {"stage_name":"log_collector","events_processed":21454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4290.8,"last_update":"2026-03-21T15:08:34.068779978Z"} +2026/03/21 15:08:39 [metric_collector] {"stage_name":"metric_collector","events_processed":13784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2756.8,"last_update":"2026-03-21T15:08:34.068771401Z"} +2026/03/21 15:08:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:08:34.080120069Z"} +2026/03/21 15:08:39 [detection_layer] {"stage_name":"detection_layer","events_processed":459,"events_dropped":0,"avg_latency_ms":17.55441957260642,"throughput_eps":0,"last_update":"2026-03-21T15:08:34.210092315Z"} +2026/03/21 15:08:39 [transform_engine] {"stage_name":"transform_engine","events_processed":459,"events_dropped":0,"avg_latency_ms":396.2830005169497,"throughput_eps":0,"last_update":"2026-03-21T15:08:34.210104748Z"} +2026/03/21 15:08:39 ───────────────────────────────────────────────── +2026/03/21 15:08:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:08:44 [log_collector] {"stage_name":"log_collector","events_processed":21454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4290.8,"last_update":"2026-03-21T15:08:39.068915033Z"} +2026/03/21 15:08:44 [metric_collector] {"stage_name":"metric_collector","events_processed":13788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2757.6,"last_update":"2026-03-21T15:08:39.068832355Z"} +2026/03/21 15:08:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:08:39.075308017Z"} +2026/03/21 15:08:44 [detection_layer] {"stage_name":"detection_layer","events_processed":459,"events_dropped":0,"avg_latency_ms":17.55441957260642,"throughput_eps":0,"last_update":"2026-03-21T15:08:39.21302114Z"} +2026/03/21 15:08:44 [transform_engine] {"stage_name":"transform_engine","events_processed":459,"events_dropped":0,"avg_latency_ms":396.2830005169497,"throughput_eps":0,"last_update":"2026-03-21T15:08:39.213030158Z"} +2026/03/21 15:08:44 ───────────────────────────────────────────────── +2026/03/21 15:08:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:08:49 [log_collector] {"stage_name":"log_collector","events_processed":21454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4290.8,"last_update":"2026-03-21T15:08:44.068173805Z"} +2026/03/21 15:08:49 [metric_collector] {"stage_name":"metric_collector","events_processed":13793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2758.6,"last_update":"2026-03-21T15:08:44.068156501Z"} +2026/03/21 15:08:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5520,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:08:44.076178546Z"} +2026/03/21 15:08:49 [detection_layer] {"stage_name":"detection_layer","events_processed":459,"events_dropped":0,"avg_latency_ms":17.55441957260642,"throughput_eps":0,"last_update":"2026-03-21T15:08:44.210411363Z"} +2026/03/21 15:08:49 [transform_engine] {"stage_name":"transform_engine","events_processed":459,"events_dropped":0,"avg_latency_ms":396.2830005169497,"throughput_eps":0,"last_update":"2026-03-21T15:08:44.21042558Z"} +2026/03/21 15:08:49 ───────────────────────────────────────────────── +2026/03/21 15:08:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:08:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5522,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:08:49.077083136Z"} +2026/03/21 15:08:54 [detection_layer] {"stage_name":"detection_layer","events_processed":459,"events_dropped":0,"avg_latency_ms":17.55441957260642,"throughput_eps":0,"last_update":"2026-03-21T15:08:49.210178784Z"} +2026/03/21 15:08:54 [transform_engine] {"stage_name":"transform_engine","events_processed":460,"events_dropped":0,"avg_latency_ms":965.8793784135598,"throughput_eps":0,"last_update":"2026-03-21T15:08:52.454459795Z"} +2026/03/21 15:08:54 [log_collector] {"stage_name":"log_collector","events_processed":21454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4290.8,"last_update":"2026-03-21T15:08:49.068221021Z"} +2026/03/21 15:08:54 [metric_collector] {"stage_name":"metric_collector","events_processed":13799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2759.8,"last_update":"2026-03-21T15:08:49.06854406Z"} +2026/03/21 15:08:54 ───────────────────────────────────────────────── +2026/03/21 15:08:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:08:59 [detection_layer] {"stage_name":"detection_layer","events_processed":460,"events_dropped":0,"avg_latency_ms":17.356643658085137,"throughput_eps":0,"last_update":"2026-03-21T15:08:54.210388196Z"} +2026/03/21 15:08:59 [transform_engine] {"stage_name":"transform_engine","events_processed":460,"events_dropped":0,"avg_latency_ms":965.8793784135598,"throughput_eps":0,"last_update":"2026-03-21T15:08:54.2104002Z"} +2026/03/21 15:08:59 [log_collector] {"stage_name":"log_collector","events_processed":21454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4290.8,"last_update":"2026-03-21T15:08:54.068624415Z"} +2026/03/21 15:08:59 [metric_collector] {"stage_name":"metric_collector","events_processed":13804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2760.8,"last_update":"2026-03-21T15:08:54.068932324Z"} +2026/03/21 15:08:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:08:54.076165539Z"} +2026/03/21 15:08:59 ───────────────────────────────────────────────── +2026/03/21 15:09:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:09:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5526,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:08:59.076038553Z"} +2026/03/21 15:09:04 [detection_layer] {"stage_name":"detection_layer","events_processed":460,"events_dropped":0,"avg_latency_ms":17.356643658085137,"throughput_eps":0,"last_update":"2026-03-21T15:08:59.210089552Z"} +2026/03/21 15:09:04 [transform_engine] {"stage_name":"transform_engine","events_processed":460,"events_dropped":0,"avg_latency_ms":965.8793784135598,"throughput_eps":0,"last_update":"2026-03-21T15:08:59.210110672Z"} +2026/03/21 15:09:04 [log_collector] {"stage_name":"log_collector","events_processed":21454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4290.8,"last_update":"2026-03-21T15:08:59.068557263Z"} +2026/03/21 15:09:04 [metric_collector] {"stage_name":"metric_collector","events_processed":13809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2761.8,"last_update":"2026-03-21T15:08:59.068819185Z"} +2026/03/21 15:09:04 ───────────────────────────────────────────────── +2026/03/21 15:09:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:09:09 [detection_layer] {"stage_name":"detection_layer","events_processed":460,"events_dropped":0,"avg_latency_ms":17.356643658085137,"throughput_eps":0,"last_update":"2026-03-21T15:09:04.210204253Z"} +2026/03/21 15:09:09 [transform_engine] {"stage_name":"transform_engine","events_processed":460,"events_dropped":0,"avg_latency_ms":965.8793784135598,"throughput_eps":0,"last_update":"2026-03-21T15:09:04.210219894Z"} +2026/03/21 15:09:09 [log_collector] {"stage_name":"log_collector","events_processed":21465,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4293,"last_update":"2026-03-21T15:09:04.068609755Z"} +2026/03/21 15:09:09 [metric_collector] {"stage_name":"metric_collector","events_processed":13814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2762.8,"last_update":"2026-03-21T15:09:04.068996776Z"} +2026/03/21 15:09:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:09:04.077781713Z"} +2026/03/21 15:09:09 ───────────────────────────────────────────────── +2026/03/21 15:09:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:09:14 [detection_layer] {"stage_name":"detection_layer","events_processed":460,"events_dropped":0,"avg_latency_ms":17.356643658085137,"throughput_eps":0,"last_update":"2026-03-21T15:09:09.21052282Z"} +2026/03/21 15:09:14 [transform_engine] {"stage_name":"transform_engine","events_processed":460,"events_dropped":0,"avg_latency_ms":965.8793784135598,"throughput_eps":0,"last_update":"2026-03-21T15:09:09.210531506Z"} +2026/03/21 15:09:14 [log_collector] {"stage_name":"log_collector","events_processed":21506,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4301.2,"last_update":"2026-03-21T15:09:09.068622897Z"} +2026/03/21 15:09:14 [metric_collector] {"stage_name":"metric_collector","events_processed":13819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2763.8,"last_update":"2026-03-21T15:09:09.068985351Z"} +2026/03/21 15:09:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:09:09.075844258Z"} +2026/03/21 15:09:14 ───────────────────────────────────────────────── +Saved state: 17 clusters, 21790 messages, reason: none +2026/03/21 15:09:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:09:19 [metric_collector] {"stage_name":"metric_collector","events_processed":13824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2764.8,"last_update":"2026-03-21T15:09:14.069090393Z"} +2026/03/21 15:09:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5532,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:09:14.07530725Z"} +2026/03/21 15:09:19 [detection_layer] {"stage_name":"detection_layer","events_processed":460,"events_dropped":0,"avg_latency_ms":17.356643658085137,"throughput_eps":0,"last_update":"2026-03-21T15:09:14.210490859Z"} +2026/03/21 15:09:19 [transform_engine] {"stage_name":"transform_engine","events_processed":460,"events_dropped":0,"avg_latency_ms":965.8793784135598,"throughput_eps":0,"last_update":"2026-03-21T15:09:14.210502961Z"} +2026/03/21 15:09:19 [log_collector] {"stage_name":"log_collector","events_processed":21736,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4347.2,"last_update":"2026-03-21T15:09:14.068796199Z"} +2026/03/21 15:09:19 ───────────────────────────────────────────────── +2026/03/21 15:09:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:09:24 [log_collector] {"stage_name":"log_collector","events_processed":21801,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4360.2,"last_update":"2026-03-21T15:09:19.068759572Z"} +2026/03/21 15:09:24 [metric_collector] {"stage_name":"metric_collector","events_processed":13829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2765.8,"last_update":"2026-03-21T15:09:19.069154189Z"} +2026/03/21 15:09:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:09:19.078050668Z"} +2026/03/21 15:09:24 [detection_layer] {"stage_name":"detection_layer","events_processed":460,"events_dropped":0,"avg_latency_ms":17.356643658085137,"throughput_eps":0,"last_update":"2026-03-21T15:09:19.210292723Z"} +2026/03/21 15:09:24 [transform_engine] {"stage_name":"transform_engine","events_processed":461,"events_dropped":0,"avg_latency_ms":952.5354303308479,"throughput_eps":0,"last_update":"2026-03-21T15:09:20.109471427Z"} +2026/03/21 15:09:24 ───────────────────────────────────────────────── +2026/03/21 15:09:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:09:29 [transform_engine] {"stage_name":"transform_engine","events_processed":461,"events_dropped":0,"avg_latency_ms":952.5354303308479,"throughput_eps":0,"last_update":"2026-03-21T15:09:24.210162324Z"} +2026/03/21 15:09:29 [log_collector] {"stage_name":"log_collector","events_processed":21809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4361.8,"last_update":"2026-03-21T15:09:24.06841348Z"} +2026/03/21 15:09:29 [metric_collector] {"stage_name":"metric_collector","events_processed":13834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2766.8,"last_update":"2026-03-21T15:09:24.068682566Z"} +2026/03/21 15:09:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5536,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:09:24.077861798Z"} +2026/03/21 15:09:29 [detection_layer] {"stage_name":"detection_layer","events_processed":461,"events_dropped":0,"avg_latency_ms":17.72043072646811,"throughput_eps":0,"last_update":"2026-03-21T15:09:24.210125363Z"} +2026/03/21 15:09:29 ───────────────────────────────────────────────── +2026/03/21 15:09:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:09:34 [log_collector] {"stage_name":"log_collector","events_processed":21812,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4362.4,"last_update":"2026-03-21T15:09:29.068559624Z"} +2026/03/21 15:09:34 [metric_collector] {"stage_name":"metric_collector","events_processed":13839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2767.8,"last_update":"2026-03-21T15:09:29.068815895Z"} +2026/03/21 15:09:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:09:29.078375936Z"} +2026/03/21 15:09:34 [detection_layer] {"stage_name":"detection_layer","events_processed":461,"events_dropped":0,"avg_latency_ms":17.72043072646811,"throughput_eps":0,"last_update":"2026-03-21T15:09:29.210248613Z"} +2026/03/21 15:09:34 [transform_engine] {"stage_name":"transform_engine","events_processed":461,"events_dropped":0,"avg_latency_ms":952.5354303308479,"throughput_eps":0,"last_update":"2026-03-21T15:09:29.210213957Z"} +2026/03/21 15:09:34 ───────────────────────────────────────────────── +2026/03/21 15:09:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:09:39 [log_collector] {"stage_name":"log_collector","events_processed":21823,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4364.6,"last_update":"2026-03-21T15:09:39.068205646Z"} +2026/03/21 15:09:39 [metric_collector] {"stage_name":"metric_collector","events_processed":13844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2768.8,"last_update":"2026-03-21T15:09:34.069200059Z"} +2026/03/21 15:09:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5540,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:09:34.077369597Z"} +2026/03/21 15:09:39 [detection_layer] {"stage_name":"detection_layer","events_processed":461,"events_dropped":0,"avg_latency_ms":17.72043072646811,"throughput_eps":0,"last_update":"2026-03-21T15:09:34.210736617Z"} +2026/03/21 15:09:39 [transform_engine] {"stage_name":"transform_engine","events_processed":461,"events_dropped":0,"avg_latency_ms":952.5354303308479,"throughput_eps":0,"last_update":"2026-03-21T15:09:34.209628935Z"} +2026/03/21 15:09:39 ───────────────────────────────────────────────── +2026/03/21 15:09:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:09:44 [metric_collector] {"stage_name":"metric_collector","events_processed":13849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2769.8,"last_update":"2026-03-21T15:09:39.068771591Z"} +2026/03/21 15:09:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5542,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:09:39.077211596Z"} +2026/03/21 15:09:44 [detection_layer] {"stage_name":"detection_layer","events_processed":461,"events_dropped":0,"avg_latency_ms":17.72043072646811,"throughput_eps":0,"last_update":"2026-03-21T15:09:39.210539491Z"} +2026/03/21 15:09:44 [transform_engine] {"stage_name":"transform_engine","events_processed":461,"events_dropped":0,"avg_latency_ms":952.5354303308479,"throughput_eps":0,"last_update":"2026-03-21T15:09:39.210588926Z"} +2026/03/21 15:09:44 [log_collector] {"stage_name":"log_collector","events_processed":21823,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4364.6,"last_update":"2026-03-21T15:09:39.068205646Z"} +2026/03/21 15:09:44 ───────────────────────────────────────────────── +2026/03/21 15:09:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:09:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:09:44.075128283Z"} +2026/03/21 15:09:49 [detection_layer] {"stage_name":"detection_layer","events_processed":461,"events_dropped":0,"avg_latency_ms":17.72043072646811,"throughput_eps":0,"last_update":"2026-03-21T15:09:44.210358693Z"} +2026/03/21 15:09:49 [transform_engine] {"stage_name":"transform_engine","events_processed":461,"events_dropped":0,"avg_latency_ms":952.5354303308479,"throughput_eps":0,"last_update":"2026-03-21T15:09:44.210399301Z"} +2026/03/21 15:09:49 [log_collector] {"stage_name":"log_collector","events_processed":21837,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.4,"last_update":"2026-03-21T15:09:44.068277973Z"} +2026/03/21 15:09:49 [metric_collector] {"stage_name":"metric_collector","events_processed":13854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2770.8,"last_update":"2026-03-21T15:09:44.068536618Z"} +2026/03/21 15:09:49 ───────────────────────────────────────────────── +2026/03/21 15:09:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:09:54 [metric_collector] {"stage_name":"metric_collector","events_processed":13859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2771.8,"last_update":"2026-03-21T15:09:49.06937761Z"} +2026/03/21 15:09:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:09:49.077860238Z"} +2026/03/21 15:09:54 [detection_layer] {"stage_name":"detection_layer","events_processed":461,"events_dropped":0,"avg_latency_ms":17.72043072646811,"throughput_eps":0,"last_update":"2026-03-21T15:09:49.210213046Z"} +2026/03/21 15:09:54 [transform_engine] {"stage_name":"transform_engine","events_processed":461,"events_dropped":0,"avg_latency_ms":952.5354303308479,"throughput_eps":0,"last_update":"2026-03-21T15:09:49.210111872Z"} +2026/03/21 15:09:54 [log_collector] {"stage_name":"log_collector","events_processed":21839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.8,"last_update":"2026-03-21T15:09:49.068609089Z"} +2026/03/21 15:09:54 ───────────────────────────────────────────────── +2026/03/21 15:09:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:09:59 [transform_engine] {"stage_name":"transform_engine","events_processed":462,"events_dropped":0,"avg_latency_ms":785.9425514646783,"throughput_eps":0,"last_update":"2026-03-21T15:09:54.210573142Z"} +2026/03/21 15:09:59 [log_collector] {"stage_name":"log_collector","events_processed":21839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.8,"last_update":"2026-03-21T15:09:54.068883801Z"} +2026/03/21 15:09:59 [metric_collector] {"stage_name":"metric_collector","events_processed":13864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2772.8,"last_update":"2026-03-21T15:09:54.069208072Z"} +2026/03/21 15:09:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:09:54.078329132Z"} +2026/03/21 15:09:59 [detection_layer] {"stage_name":"detection_layer","events_processed":462,"events_dropped":0,"avg_latency_ms":18.067224981174487,"throughput_eps":0,"last_update":"2026-03-21T15:09:54.210467379Z"} +2026/03/21 15:09:59 ───────────────────────────────────────────────── +2026/03/21 15:10:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:10:04 [log_collector] {"stage_name":"log_collector","events_processed":21839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.8,"last_update":"2026-03-21T15:09:59.06871561Z"} +2026/03/21 15:10:04 [metric_collector] {"stage_name":"metric_collector","events_processed":13869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2773.8,"last_update":"2026-03-21T15:09:59.069196811Z"} +2026/03/21 15:10:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:09:59.079002353Z"} +2026/03/21 15:10:04 [detection_layer] {"stage_name":"detection_layer","events_processed":462,"events_dropped":0,"avg_latency_ms":18.067224981174487,"throughput_eps":0,"last_update":"2026-03-21T15:09:59.210213734Z"} +2026/03/21 15:10:04 [transform_engine] {"stage_name":"transform_engine","events_processed":462,"events_dropped":0,"avg_latency_ms":785.9425514646783,"throughput_eps":0,"last_update":"2026-03-21T15:09:59.210259351Z"} +2026/03/21 15:10:04 ───────────────────────────────────────────────── +2026/03/21 15:10:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:10:09 [transform_engine] {"stage_name":"transform_engine","events_processed":462,"events_dropped":0,"avg_latency_ms":785.9425514646783,"throughput_eps":0,"last_update":"2026-03-21T15:10:04.210314682Z"} +2026/03/21 15:10:09 [log_collector] {"stage_name":"log_collector","events_processed":21839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.8,"last_update":"2026-03-21T15:10:04.06866607Z"} +2026/03/21 15:10:09 [metric_collector] {"stage_name":"metric_collector","events_processed":13874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2774.8,"last_update":"2026-03-21T15:10:04.068997043Z"} +2026/03/21 15:10:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:10:04.08293514Z"} +2026/03/21 15:10:09 [detection_layer] {"stage_name":"detection_layer","events_processed":462,"events_dropped":0,"avg_latency_ms":18.067224981174487,"throughput_eps":0,"last_update":"2026-03-21T15:10:04.210380378Z"} +2026/03/21 15:10:09 ───────────────────────────────────────────────── +2026/03/21 15:10:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:10:14 [metric_collector] {"stage_name":"metric_collector","events_processed":13879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2775.8,"last_update":"2026-03-21T15:10:09.069091694Z"} +2026/03/21 15:10:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:10:09.089857578Z"} +2026/03/21 15:10:14 [detection_layer] {"stage_name":"detection_layer","events_processed":462,"events_dropped":0,"avg_latency_ms":18.067224981174487,"throughput_eps":0,"last_update":"2026-03-21T15:10:09.210044583Z"} +2026/03/21 15:10:14 [transform_engine] {"stage_name":"transform_engine","events_processed":462,"events_dropped":0,"avg_latency_ms":785.9425514646783,"throughput_eps":0,"last_update":"2026-03-21T15:10:09.210076104Z"} +2026/03/21 15:10:14 [log_collector] {"stage_name":"log_collector","events_processed":21839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.8,"last_update":"2026-03-21T15:10:09.06871382Z"} +2026/03/21 15:10:14 ───────────────────────────────────────────────── +2026/03/21 15:10:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:10:19 [metric_collector] {"stage_name":"metric_collector","events_processed":13883,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2776.6,"last_update":"2026-03-21T15:10:14.06793895Z"} +2026/03/21 15:10:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:10:14.078500569Z"} +2026/03/21 15:10:19 [detection_layer] {"stage_name":"detection_layer","events_processed":462,"events_dropped":0,"avg_latency_ms":18.067224981174487,"throughput_eps":0,"last_update":"2026-03-21T15:10:14.210872534Z"} +2026/03/21 15:10:19 [transform_engine] {"stage_name":"transform_engine","events_processed":462,"events_dropped":0,"avg_latency_ms":785.9425514646783,"throughput_eps":0,"last_update":"2026-03-21T15:10:14.209745786Z"} +2026/03/21 15:10:19 [log_collector] {"stage_name":"log_collector","events_processed":21839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.8,"last_update":"2026-03-21T15:10:14.068112743Z"} +2026/03/21 15:10:19 ───────────────────────────────────────────────── +2026/03/21 15:10:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:10:24 [log_collector] {"stage_name":"log_collector","events_processed":21839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.8,"last_update":"2026-03-21T15:10:19.0688491Z"} +2026/03/21 15:10:24 [metric_collector] {"stage_name":"metric_collector","events_processed":13889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2777.8,"last_update":"2026-03-21T15:10:19.069290896Z"} +2026/03/21 15:10:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:10:19.07842436Z"} +2026/03/21 15:10:24 [detection_layer] {"stage_name":"detection_layer","events_processed":462,"events_dropped":0,"avg_latency_ms":18.067224981174487,"throughput_eps":0,"last_update":"2026-03-21T15:10:19.210754925Z"} +2026/03/21 15:10:24 [transform_engine] {"stage_name":"transform_engine","events_processed":463,"events_dropped":0,"avg_latency_ms":642.8662875717428,"throughput_eps":0,"last_update":"2026-03-21T15:10:19.281211508Z"} +2026/03/21 15:10:24 ───────────────────────────────────────────────── +2026/03/21 15:10:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:10:29 [log_collector] {"stage_name":"log_collector","events_processed":21839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.8,"last_update":"2026-03-21T15:10:24.068682964Z"} +2026/03/21 15:10:29 [metric_collector] {"stage_name":"metric_collector","events_processed":13894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2778.8,"last_update":"2026-03-21T15:10:24.068664228Z"} +2026/03/21 15:10:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5560,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:10:24.079585787Z"} +2026/03/21 15:10:29 [detection_layer] {"stage_name":"detection_layer","events_processed":463,"events_dropped":0,"avg_latency_ms":19.03387858493959,"throughput_eps":0,"last_update":"2026-03-21T15:10:24.209883389Z"} +2026/03/21 15:10:29 [transform_engine] {"stage_name":"transform_engine","events_processed":463,"events_dropped":0,"avg_latency_ms":642.8662875717428,"throughput_eps":0,"last_update":"2026-03-21T15:10:24.20974831Z"} +2026/03/21 15:10:29 ───────────────────────────────────────────────── +2026/03/21 15:10:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:10:34 [transform_engine] {"stage_name":"transform_engine","events_processed":463,"events_dropped":0,"avg_latency_ms":642.8662875717428,"throughput_eps":0,"last_update":"2026-03-21T15:10:29.209715172Z"} +2026/03/21 15:10:34 [log_collector] {"stage_name":"log_collector","events_processed":21839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.8,"last_update":"2026-03-21T15:10:29.068071358Z"} +2026/03/21 15:10:34 [metric_collector] {"stage_name":"metric_collector","events_processed":13899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2779.8,"last_update":"2026-03-21T15:10:29.068771609Z"} +2026/03/21 15:10:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:10:29.078534629Z"} +2026/03/21 15:10:34 [detection_layer] {"stage_name":"detection_layer","events_processed":463,"events_dropped":0,"avg_latency_ms":19.03387858493959,"throughput_eps":0,"last_update":"2026-03-21T15:10:29.210817023Z"} +2026/03/21 15:10:34 ───────────────────────────────────────────────── +2026/03/21 15:10:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:10:39 [detection_layer] {"stage_name":"detection_layer","events_processed":463,"events_dropped":0,"avg_latency_ms":19.03387858493959,"throughput_eps":0,"last_update":"2026-03-21T15:10:34.210569881Z"} +2026/03/21 15:10:39 [transform_engine] {"stage_name":"transform_engine","events_processed":463,"events_dropped":0,"avg_latency_ms":642.8662875717428,"throughput_eps":0,"last_update":"2026-03-21T15:10:34.210609606Z"} +2026/03/21 15:10:39 [log_collector] {"stage_name":"log_collector","events_processed":21839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.8,"last_update":"2026-03-21T15:10:34.068880068Z"} +2026/03/21 15:10:39 [metric_collector] {"stage_name":"metric_collector","events_processed":13904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2780.8,"last_update":"2026-03-21T15:10:34.069341772Z"} +2026/03/21 15:10:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:10:34.079205214Z"} +2026/03/21 15:10:39 ───────────────────────────────────────────────── +2026/03/21 15:10:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:10:44 [log_collector] {"stage_name":"log_collector","events_processed":21839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.8,"last_update":"2026-03-21T15:10:39.068735776Z"} +2026/03/21 15:10:44 [metric_collector] {"stage_name":"metric_collector","events_processed":13909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2781.8,"last_update":"2026-03-21T15:10:39.06903561Z"} +2026/03/21 15:10:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5566,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:10:39.075413747Z"} +2026/03/21 15:10:44 [detection_layer] {"stage_name":"detection_layer","events_processed":463,"events_dropped":0,"avg_latency_ms":19.03387858493959,"throughput_eps":0,"last_update":"2026-03-21T15:10:39.210663935Z"} +2026/03/21 15:10:44 [transform_engine] {"stage_name":"transform_engine","events_processed":463,"events_dropped":0,"avg_latency_ms":642.8662875717428,"throughput_eps":0,"last_update":"2026-03-21T15:10:39.210646882Z"} +2026/03/21 15:10:44 ───────────────────────────────────────────────── +2026/03/21 15:10:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:10:49 [transform_engine] {"stage_name":"transform_engine","events_processed":463,"events_dropped":0,"avg_latency_ms":642.8662875717428,"throughput_eps":0,"last_update":"2026-03-21T15:10:44.209721238Z"} +2026/03/21 15:10:49 [log_collector] {"stage_name":"log_collector","events_processed":21839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.8,"last_update":"2026-03-21T15:10:44.0687545Z"} +2026/03/21 15:10:49 [metric_collector] {"stage_name":"metric_collector","events_processed":13914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2782.8,"last_update":"2026-03-21T15:10:44.068980412Z"} +2026/03/21 15:10:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:10:44.078521167Z"} +2026/03/21 15:10:49 [detection_layer] {"stage_name":"detection_layer","events_processed":463,"events_dropped":0,"avg_latency_ms":19.03387858493959,"throughput_eps":0,"last_update":"2026-03-21T15:10:44.2108551Z"} +2026/03/21 15:10:49 ───────────────────────────────────────────────── +Saved state: 17 clusters, 21840 messages, reason: none +2026/03/21 15:10:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:10:54 [metric_collector] {"stage_name":"metric_collector","events_processed":13918,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2783.6,"last_update":"2026-03-21T15:10:49.067949991Z"} +2026/03/21 15:10:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5570,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:10:49.077648216Z"} +2026/03/21 15:10:54 [detection_layer] {"stage_name":"detection_layer","events_processed":463,"events_dropped":0,"avg_latency_ms":19.03387858493959,"throughput_eps":0,"last_update":"2026-03-21T15:10:49.210882273Z"} +2026/03/21 15:10:54 [transform_engine] {"stage_name":"transform_engine","events_processed":464,"events_dropped":0,"avg_latency_ms":528.3701952573942,"throughput_eps":0,"last_update":"2026-03-21T15:10:49.280170839Z"} +2026/03/21 15:10:54 [log_collector] {"stage_name":"log_collector","events_processed":21839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.8,"last_update":"2026-03-21T15:10:49.068078667Z"} +2026/03/21 15:10:54 ───────────────────────────────────────────────── +2026/03/21 15:10:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:10:59 [log_collector] {"stage_name":"log_collector","events_processed":21842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4368.4,"last_update":"2026-03-21T15:10:54.068765388Z"} +2026/03/21 15:10:59 [metric_collector] {"stage_name":"metric_collector","events_processed":13923,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2784.6,"last_update":"2026-03-21T15:10:54.068773173Z"} +2026/03/21 15:10:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5572,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:10:54.075858775Z"} +2026/03/21 15:10:59 [detection_layer] {"stage_name":"detection_layer","events_processed":464,"events_dropped":0,"avg_latency_ms":19.854131667951673,"throughput_eps":0,"last_update":"2026-03-21T15:10:54.210098689Z"} +2026/03/21 15:10:59 [transform_engine] {"stage_name":"transform_engine","events_processed":464,"events_dropped":0,"avg_latency_ms":528.3701952573942,"throughput_eps":0,"last_update":"2026-03-21T15:10:54.21011519Z"} +2026/03/21 15:10:59 ───────────────────────────────────────────────── +2026/03/21 15:11:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:11:04 [log_collector] {"stage_name":"log_collector","events_processed":21853,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4370.6,"last_update":"2026-03-21T15:10:59.06859285Z"} +2026/03/21 15:11:04 [metric_collector] {"stage_name":"metric_collector","events_processed":13928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2785.6,"last_update":"2026-03-21T15:10:59.068598731Z"} +2026/03/21 15:11:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:10:59.078162098Z"} +2026/03/21 15:11:04 [detection_layer] {"stage_name":"detection_layer","events_processed":464,"events_dropped":0,"avg_latency_ms":19.854131667951673,"throughput_eps":0,"last_update":"2026-03-21T15:10:59.210627383Z"} +2026/03/21 15:11:04 [transform_engine] {"stage_name":"transform_engine","events_processed":464,"events_dropped":0,"avg_latency_ms":528.3701952573942,"throughput_eps":0,"last_update":"2026-03-21T15:10:59.210516019Z"} +2026/03/21 15:11:04 ───────────────────────────────────────────────── +2026/03/21 15:11:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:11:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5576,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:11:04.078668022Z"} +2026/03/21 15:11:09 [detection_layer] {"stage_name":"detection_layer","events_processed":464,"events_dropped":0,"avg_latency_ms":19.854131667951673,"throughput_eps":0,"last_update":"2026-03-21T15:11:04.210057887Z"} +2026/03/21 15:11:09 [transform_engine] {"stage_name":"transform_engine","events_processed":464,"events_dropped":0,"avg_latency_ms":528.3701952573942,"throughput_eps":0,"last_update":"2026-03-21T15:11:04.210163679Z"} +2026/03/21 15:11:09 [log_collector] {"stage_name":"log_collector","events_processed":21853,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4370.6,"last_update":"2026-03-21T15:11:04.068152872Z"} +2026/03/21 15:11:09 [metric_collector] {"stage_name":"metric_collector","events_processed":13934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2786.8,"last_update":"2026-03-21T15:11:04.068621199Z"} +2026/03/21 15:11:09 ───────────────────────────────────────────────── +2026/03/21 15:11:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:11:14 [transform_engine] {"stage_name":"transform_engine","events_processed":464,"events_dropped":0,"avg_latency_ms":528.3701952573942,"throughput_eps":0,"last_update":"2026-03-21T15:11:09.20981034Z"} +2026/03/21 15:11:14 [log_collector] {"stage_name":"log_collector","events_processed":21853,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4370.6,"last_update":"2026-03-21T15:11:09.068700528Z"} +2026/03/21 15:11:14 [metric_collector] {"stage_name":"metric_collector","events_processed":13939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2787.8,"last_update":"2026-03-21T15:11:09.068838112Z"} +2026/03/21 15:11:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:11:09.077579715Z"} +2026/03/21 15:11:14 [detection_layer] {"stage_name":"detection_layer","events_processed":464,"events_dropped":0,"avg_latency_ms":19.854131667951673,"throughput_eps":0,"last_update":"2026-03-21T15:11:09.209921643Z"} +2026/03/21 15:11:14 ───────────────────────────────────────────────── +2026/03/21 15:11:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:11:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5580,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:11:14.07796404Z"} +2026/03/21 15:11:19 [detection_layer] {"stage_name":"detection_layer","events_processed":464,"events_dropped":0,"avg_latency_ms":19.854131667951673,"throughput_eps":0,"last_update":"2026-03-21T15:11:14.210337129Z"} +2026/03/21 15:11:19 [transform_engine] {"stage_name":"transform_engine","events_processed":464,"events_dropped":0,"avg_latency_ms":528.3701952573942,"throughput_eps":0,"last_update":"2026-03-21T15:11:14.210377186Z"} +2026/03/21 15:11:19 [log_collector] {"stage_name":"log_collector","events_processed":21853,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4370.6,"last_update":"2026-03-21T15:11:14.068620935Z"} +2026/03/21 15:11:19 [metric_collector] {"stage_name":"metric_collector","events_processed":13944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2788.8,"last_update":"2026-03-21T15:11:14.068748039Z"} +2026/03/21 15:11:19 ───────────────────────────────────────────────── +2026/03/21 15:11:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:11:24 [log_collector] {"stage_name":"log_collector","events_processed":21853,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4370.6,"last_update":"2026-03-21T15:11:19.069013683Z"} +2026/03/21 15:11:24 [metric_collector] {"stage_name":"metric_collector","events_processed":13949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2789.8,"last_update":"2026-03-21T15:11:19.070085686Z"} +2026/03/21 15:11:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:11:19.079513604Z"} +2026/03/21 15:11:24 [detection_layer] {"stage_name":"detection_layer","events_processed":464,"events_dropped":0,"avg_latency_ms":19.854131667951673,"throughput_eps":0,"last_update":"2026-03-21T15:11:19.210897006Z"} +2026/03/21 15:11:24 [transform_engine] {"stage_name":"transform_engine","events_processed":465,"events_dropped":0,"avg_latency_ms":445.8501774059154,"throughput_eps":0,"last_update":"2026-03-21T15:11:19.325458018Z"} +2026/03/21 15:11:24 ───────────────────────────────────────────────── +2026/03/21 15:11:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:11:29 [log_collector] {"stage_name":"log_collector","events_processed":21853,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4370.6,"last_update":"2026-03-21T15:11:24.068103418Z"} +2026/03/21 15:11:29 [metric_collector] {"stage_name":"metric_collector","events_processed":13954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2790.8,"last_update":"2026-03-21T15:11:24.068745157Z"} +2026/03/21 15:11:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:11:24.07912599Z"} +2026/03/21 15:11:29 [detection_layer] {"stage_name":"detection_layer","events_processed":465,"events_dropped":0,"avg_latency_ms":20.49034373436134,"throughput_eps":0,"last_update":"2026-03-21T15:11:24.210428027Z"} +2026/03/21 15:11:29 [transform_engine] {"stage_name":"transform_engine","events_processed":465,"events_dropped":0,"avg_latency_ms":445.8501774059154,"throughput_eps":0,"last_update":"2026-03-21T15:11:24.21044505Z"} +2026/03/21 15:11:29 ───────────────────────────────────────────────── +2026/03/21 15:11:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:11:34 [detection_layer] {"stage_name":"detection_layer","events_processed":465,"events_dropped":0,"avg_latency_ms":20.49034373436134,"throughput_eps":0,"last_update":"2026-03-21T15:11:29.210266559Z"} +2026/03/21 15:11:34 [transform_engine] {"stage_name":"transform_engine","events_processed":465,"events_dropped":0,"avg_latency_ms":445.8501774059154,"throughput_eps":0,"last_update":"2026-03-21T15:11:29.210291026Z"} +2026/03/21 15:11:34 [log_collector] {"stage_name":"log_collector","events_processed":21853,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4370.6,"last_update":"2026-03-21T15:11:29.068064976Z"} +2026/03/21 15:11:34 [metric_collector] {"stage_name":"metric_collector","events_processed":13959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2791.8,"last_update":"2026-03-21T15:11:29.068640829Z"} +2026/03/21 15:11:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5586,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:11:29.076881443Z"} +2026/03/21 15:11:34 ───────────────────────────────────────────────── +2026/03/21 15:11:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:11:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5588,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:11:34.078067051Z"} +2026/03/21 15:11:39 [detection_layer] {"stage_name":"detection_layer","events_processed":465,"events_dropped":0,"avg_latency_ms":20.49034373436134,"throughput_eps":0,"last_update":"2026-03-21T15:11:34.210446962Z"} +2026/03/21 15:11:39 [transform_engine] {"stage_name":"transform_engine","events_processed":465,"events_dropped":0,"avg_latency_ms":445.8501774059154,"throughput_eps":0,"last_update":"2026-03-21T15:11:34.210405844Z"} +2026/03/21 15:11:39 [log_collector] {"stage_name":"log_collector","events_processed":21853,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4370.6,"last_update":"2026-03-21T15:11:39.068285214Z"} +2026/03/21 15:11:39 [metric_collector] {"stage_name":"metric_collector","events_processed":13964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2792.8,"last_update":"2026-03-21T15:11:34.068929679Z"} +2026/03/21 15:11:39 ───────────────────────────────────────────────── +2026/03/21 15:11:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:11:44 [log_collector] {"stage_name":"log_collector","events_processed":21853,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4370.6,"last_update":"2026-03-21T15:11:39.068285214Z"} +2026/03/21 15:11:44 [metric_collector] {"stage_name":"metric_collector","events_processed":13969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2793.8,"last_update":"2026-03-21T15:11:39.069003279Z"} +2026/03/21 15:11:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:11:39.08000388Z"} +2026/03/21 15:11:44 [detection_layer] {"stage_name":"detection_layer","events_processed":465,"events_dropped":0,"avg_latency_ms":20.49034373436134,"throughput_eps":0,"last_update":"2026-03-21T15:11:39.210446981Z"} +2026/03/21 15:11:44 [transform_engine] {"stage_name":"transform_engine","events_processed":465,"events_dropped":0,"avg_latency_ms":445.8501774059154,"throughput_eps":0,"last_update":"2026-03-21T15:11:39.210401846Z"} +2026/03/21 15:11:44 ───────────────────────────────────────────────── +2026/03/21 15:11:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:11:49 [metric_collector] {"stage_name":"metric_collector","events_processed":13974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2794.8,"last_update":"2026-03-21T15:11:44.068986871Z"} +2026/03/21 15:11:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5592,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:11:44.078269571Z"} +2026/03/21 15:11:49 [detection_layer] {"stage_name":"detection_layer","events_processed":465,"events_dropped":0,"avg_latency_ms":20.49034373436134,"throughput_eps":0,"last_update":"2026-03-21T15:11:44.21065334Z"} +2026/03/21 15:11:49 [transform_engine] {"stage_name":"transform_engine","events_processed":465,"events_dropped":0,"avg_latency_ms":445.8501774059154,"throughput_eps":0,"last_update":"2026-03-21T15:11:44.210765164Z"} +2026/03/21 15:11:49 [log_collector] {"stage_name":"log_collector","events_processed":21853,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4370.6,"last_update":"2026-03-21T15:11:44.0687045Z"} +2026/03/21 15:11:49 ───────────────────────────────────────────────── +2026/03/21 15:11:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:11:54 [detection_layer] {"stage_name":"detection_layer","events_processed":465,"events_dropped":0,"avg_latency_ms":20.49034373436134,"throughput_eps":0,"last_update":"2026-03-21T15:11:49.21091088Z"} +2026/03/21 15:11:54 [transform_engine] {"stage_name":"transform_engine","events_processed":466,"events_dropped":0,"avg_latency_ms":372.7734291247324,"throughput_eps":0,"last_update":"2026-03-21T15:11:49.290222004Z"} +2026/03/21 15:11:54 [log_collector] {"stage_name":"log_collector","events_processed":21853,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4370.6,"last_update":"2026-03-21T15:11:49.068758099Z"} +2026/03/21 15:11:54 [metric_collector] {"stage_name":"metric_collector","events_processed":13979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2795.8,"last_update":"2026-03-21T15:11:49.068980866Z"} +2026/03/21 15:11:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:11:49.077504281Z"} +2026/03/21 15:11:54 ───────────────────────────────────────────────── +Saved state: 17 clusters, 21854 messages, reason: none +2026/03/21 15:11:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:11:59 [metric_collector] {"stage_name":"metric_collector","events_processed":13984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2796.8,"last_update":"2026-03-21T15:11:54.068594545Z"} +2026/03/21 15:11:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:11:54.077996924Z"} +2026/03/21 15:11:59 [detection_layer] {"stage_name":"detection_layer","events_processed":466,"events_dropped":0,"avg_latency_ms":21.13042638748907,"throughput_eps":0,"last_update":"2026-03-21T15:11:54.210392657Z"} +2026/03/21 15:11:59 [transform_engine] {"stage_name":"transform_engine","events_processed":466,"events_dropped":0,"avg_latency_ms":372.7734291247324,"throughput_eps":0,"last_update":"2026-03-21T15:11:54.210410301Z"} +2026/03/21 15:11:59 [log_collector] {"stage_name":"log_collector","events_processed":21853,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4370.6,"last_update":"2026-03-21T15:11:54.068456581Z"} +2026/03/21 15:11:59 ───────────────────────────────────────────────── +2026/03/21 15:12:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:12:04 [log_collector] {"stage_name":"log_collector","events_processed":21858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4371.6,"last_update":"2026-03-21T15:11:59.068533693Z"} +2026/03/21 15:12:04 [metric_collector] {"stage_name":"metric_collector","events_processed":13989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2797.8,"last_update":"2026-03-21T15:11:59.068724407Z"} +2026/03/21 15:12:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:11:59.081900395Z"} +2026/03/21 15:12:04 [detection_layer] {"stage_name":"detection_layer","events_processed":466,"events_dropped":0,"avg_latency_ms":21.13042638748907,"throughput_eps":0,"last_update":"2026-03-21T15:11:59.210057599Z"} +2026/03/21 15:12:04 [transform_engine] {"stage_name":"transform_engine","events_processed":466,"events_dropped":0,"avg_latency_ms":372.7734291247324,"throughput_eps":0,"last_update":"2026-03-21T15:11:59.210069441Z"} +2026/03/21 15:12:04 ───────────────────────────────────────────────── +2026/03/21 15:12:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:12:09 [log_collector] {"stage_name":"log_collector","events_processed":21858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4371.6,"last_update":"2026-03-21T15:12:09.068078357Z"} +2026/03/21 15:12:09 [metric_collector] {"stage_name":"metric_collector","events_processed":13994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2798.8,"last_update":"2026-03-21T15:12:04.068858731Z"} +2026/03/21 15:12:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:12:04.075486145Z"} +2026/03/21 15:12:09 [detection_layer] {"stage_name":"detection_layer","events_processed":466,"events_dropped":0,"avg_latency_ms":21.13042638748907,"throughput_eps":0,"last_update":"2026-03-21T15:12:04.210693373Z"} +2026/03/21 15:12:09 [transform_engine] {"stage_name":"transform_engine","events_processed":466,"events_dropped":0,"avg_latency_ms":372.7734291247324,"throughput_eps":0,"last_update":"2026-03-21T15:12:04.209640466Z"} +2026/03/21 15:12:09 ───────────────────────────────────────────────── +2026/03/21 15:12:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:12:14 [metric_collector] {"stage_name":"metric_collector","events_processed":13999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2799.8,"last_update":"2026-03-21T15:12:09.068443746Z"} +2026/03/21 15:12:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5602,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:12:09.075528978Z"} +2026/03/21 15:12:14 [detection_layer] {"stage_name":"detection_layer","events_processed":466,"events_dropped":0,"avg_latency_ms":21.13042638748907,"throughput_eps":0,"last_update":"2026-03-21T15:12:09.209932065Z"} +2026/03/21 15:12:14 [transform_engine] {"stage_name":"transform_engine","events_processed":466,"events_dropped":0,"avg_latency_ms":372.7734291247324,"throughput_eps":0,"last_update":"2026-03-21T15:12:09.209759745Z"} +2026/03/21 15:12:14 [log_collector] {"stage_name":"log_collector","events_processed":21858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4371.6,"last_update":"2026-03-21T15:12:09.068078357Z"} +2026/03/21 15:12:14 ───────────────────────────────────────────────── +2026/03/21 15:12:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:12:19 [log_collector] {"stage_name":"log_collector","events_processed":21858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4371.6,"last_update":"2026-03-21T15:12:19.068305031Z"} +2026/03/21 15:12:19 [metric_collector] {"stage_name":"metric_collector","events_processed":14004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2800.8,"last_update":"2026-03-21T15:12:14.068660446Z"} +2026/03/21 15:12:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:12:14.076304446Z"} +2026/03/21 15:12:19 [detection_layer] {"stage_name":"detection_layer","events_processed":466,"events_dropped":0,"avg_latency_ms":21.13042638748907,"throughput_eps":0,"last_update":"2026-03-21T15:12:14.210533932Z"} +2026/03/21 15:12:19 [transform_engine] {"stage_name":"transform_engine","events_processed":466,"events_dropped":0,"avg_latency_ms":372.7734291247324,"throughput_eps":0,"last_update":"2026-03-21T15:12:14.210544101Z"} +2026/03/21 15:12:19 ───────────────────────────────────────────────── +2026/03/21 15:12:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:12:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:12:19.074850076Z"} +2026/03/21 15:12:24 [detection_layer] {"stage_name":"detection_layer","events_processed":466,"events_dropped":0,"avg_latency_ms":21.13042638748907,"throughput_eps":0,"last_update":"2026-03-21T15:12:19.210162998Z"} +2026/03/21 15:12:24 [transform_engine] {"stage_name":"transform_engine","events_processed":467,"events_dropped":0,"avg_latency_ms":655.094447899786,"throughput_eps":0,"last_update":"2026-03-21T15:12:20.994552932Z"} +2026/03/21 15:12:24 [log_collector] {"stage_name":"log_collector","events_processed":21858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4371.6,"last_update":"2026-03-21T15:12:24.068085259Z"} +2026/03/21 15:12:24 [metric_collector] {"stage_name":"metric_collector","events_processed":14009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2801.8,"last_update":"2026-03-21T15:12:19.068648107Z"} +2026/03/21 15:12:24 ───────────────────────────────────────────────── +2026/03/21 15:12:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:12:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:12:24.075079606Z"} +2026/03/21 15:12:29 [detection_layer] {"stage_name":"detection_layer","events_processed":467,"events_dropped":0,"avg_latency_ms":19.83458570999126,"throughput_eps":0,"last_update":"2026-03-21T15:12:24.210383329Z"} +2026/03/21 15:12:29 [transform_engine] {"stage_name":"transform_engine","events_processed":467,"events_dropped":0,"avg_latency_ms":655.094447899786,"throughput_eps":0,"last_update":"2026-03-21T15:12:24.210393207Z"} +2026/03/21 15:12:29 [log_collector] {"stage_name":"log_collector","events_processed":21858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4371.6,"last_update":"2026-03-21T15:12:24.068085259Z"} +2026/03/21 15:12:29 [metric_collector] {"stage_name":"metric_collector","events_processed":14014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2802.8,"last_update":"2026-03-21T15:12:24.068509362Z"} +2026/03/21 15:12:29 ───────────────────────────────────────────────── +2026/03/21 15:12:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:12:34 [log_collector] {"stage_name":"log_collector","events_processed":21858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4371.6,"last_update":"2026-03-21T15:12:29.068606031Z"} +2026/03/21 15:12:34 [metric_collector] {"stage_name":"metric_collector","events_processed":14019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2803.8,"last_update":"2026-03-21T15:12:29.068835921Z"} +2026/03/21 15:12:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:12:29.078470254Z"} +2026/03/21 15:12:34 [detection_layer] {"stage_name":"detection_layer","events_processed":467,"events_dropped":0,"avg_latency_ms":19.83458570999126,"throughput_eps":0,"last_update":"2026-03-21T15:12:29.210470169Z"} +2026/03/21 15:12:34 [transform_engine] {"stage_name":"transform_engine","events_processed":467,"events_dropped":0,"avg_latency_ms":655.094447899786,"throughput_eps":0,"last_update":"2026-03-21T15:12:29.210481481Z"} +2026/03/21 15:12:34 ───────────────────────────────────────────────── +2026/03/21 15:12:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:12:39 [log_collector] {"stage_name":"log_collector","events_processed":21858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4371.6,"last_update":"2026-03-21T15:12:34.068110858Z"} +2026/03/21 15:12:39 [metric_collector] {"stage_name":"metric_collector","events_processed":14024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2804.8,"last_update":"2026-03-21T15:12:34.068335037Z"} +2026/03/21 15:12:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:12:34.075439194Z"} +2026/03/21 15:12:39 [detection_layer] {"stage_name":"detection_layer","events_processed":467,"events_dropped":0,"avg_latency_ms":19.83458570999126,"throughput_eps":0,"last_update":"2026-03-21T15:12:34.21069765Z"} +2026/03/21 15:12:39 [transform_engine] {"stage_name":"transform_engine","events_processed":467,"events_dropped":0,"avg_latency_ms":655.094447899786,"throughput_eps":0,"last_update":"2026-03-21T15:12:34.210710736Z"} +2026/03/21 15:12:39 ───────────────────────────────────────────────── +2026/03/21 15:12:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:12:44 [log_collector] {"stage_name":"log_collector","events_processed":21861,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4372.2,"last_update":"2026-03-21T15:12:39.06855074Z"} +2026/03/21 15:12:44 [metric_collector] {"stage_name":"metric_collector","events_processed":14029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2805.8,"last_update":"2026-03-21T15:12:39.06878042Z"} +2026/03/21 15:12:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:12:39.075591696Z"} +2026/03/21 15:12:44 [detection_layer] {"stage_name":"detection_layer","events_processed":467,"events_dropped":0,"avg_latency_ms":19.83458570999126,"throughput_eps":0,"last_update":"2026-03-21T15:12:39.210830074Z"} +2026/03/21 15:12:44 [transform_engine] {"stage_name":"transform_engine","events_processed":467,"events_dropped":0,"avg_latency_ms":655.094447899786,"throughput_eps":0,"last_update":"2026-03-21T15:12:39.209735177Z"} +2026/03/21 15:12:44 ───────────────────────────────────────────────── +2026/03/21 15:12:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:12:49 [metric_collector] {"stage_name":"metric_collector","events_processed":14034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2806.8,"last_update":"2026-03-21T15:12:44.06900917Z"} +2026/03/21 15:12:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:12:44.077295381Z"} +2026/03/21 15:12:49 [detection_layer] {"stage_name":"detection_layer","events_processed":467,"events_dropped":0,"avg_latency_ms":19.83458570999126,"throughput_eps":0,"last_update":"2026-03-21T15:12:44.210532475Z"} +2026/03/21 15:12:49 [transform_engine] {"stage_name":"transform_engine","events_processed":467,"events_dropped":0,"avg_latency_ms":655.094447899786,"throughput_eps":0,"last_update":"2026-03-21T15:12:44.21054525Z"} +2026/03/21 15:12:49 [log_collector] {"stage_name":"log_collector","events_processed":21867,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4373.4,"last_update":"2026-03-21T15:12:44.068708524Z"} +2026/03/21 15:12:49 ───────────────────────────────────────────────── +2026/03/21 15:12:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:12:54 [log_collector] {"stage_name":"log_collector","events_processed":21921,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4384.2,"last_update":"2026-03-21T15:12:49.068781849Z"} +2026/03/21 15:12:54 [metric_collector] {"stage_name":"metric_collector","events_processed":14039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2807.8,"last_update":"2026-03-21T15:12:49.069131579Z"} +2026/03/21 15:12:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:12:49.075878422Z"} +2026/03/21 15:12:54 [detection_layer] {"stage_name":"detection_layer","events_processed":467,"events_dropped":0,"avg_latency_ms":19.83458570999126,"throughput_eps":0,"last_update":"2026-03-21T15:12:49.210170668Z"} +2026/03/21 15:12:54 [transform_engine] {"stage_name":"transform_engine","events_processed":468,"events_dropped":0,"avg_latency_ms":551.5026947198288,"throughput_eps":0,"last_update":"2026-03-21T15:12:49.347321419Z"} +2026/03/21 15:12:54 ───────────────────────────────────────────────── +2026/03/21 15:12:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:12:59 [log_collector] {"stage_name":"log_collector","events_processed":22159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4431.8,"last_update":"2026-03-21T15:12:54.068645287Z"} +2026/03/21 15:12:59 [metric_collector] {"stage_name":"metric_collector","events_processed":14043,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2808.6,"last_update":"2026-03-21T15:12:54.068639235Z"} +2026/03/21 15:12:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5620,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:12:54.078317193Z"} +2026/03/21 15:12:59 [detection_layer] {"stage_name":"detection_layer","events_processed":468,"events_dropped":0,"avg_latency_ms":18.882176367993008,"throughput_eps":0,"last_update":"2026-03-21T15:12:54.210733886Z"} +2026/03/21 15:12:59 [transform_engine] {"stage_name":"transform_engine","events_processed":468,"events_dropped":0,"avg_latency_ms":551.5026947198288,"throughput_eps":0,"last_update":"2026-03-21T15:12:54.210713727Z"} +2026/03/21 15:12:59 ───────────────────────────────────────────────── +2026/03/21 15:13:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:13:04 [log_collector] {"stage_name":"log_collector","events_processed":22223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4444.6,"last_update":"2026-03-21T15:12:59.068691326Z"} +2026/03/21 15:13:04 [metric_collector] {"stage_name":"metric_collector","events_processed":14048,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2809.6,"last_update":"2026-03-21T15:12:59.068633966Z"} +2026/03/21 15:13:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5622,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:12:59.07796549Z"} +2026/03/21 15:13:04 [detection_layer] {"stage_name":"detection_layer","events_processed":468,"events_dropped":0,"avg_latency_ms":18.882176367993008,"throughput_eps":0,"last_update":"2026-03-21T15:12:59.210400038Z"} +2026/03/21 15:13:04 [transform_engine] {"stage_name":"transform_engine","events_processed":468,"events_dropped":0,"avg_latency_ms":551.5026947198288,"throughput_eps":0,"last_update":"2026-03-21T15:12:59.210648514Z"} +2026/03/21 15:13:04 ───────────────────────────────────────────────── +2026/03/21 15:13:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:13:09 [log_collector] {"stage_name":"log_collector","events_processed":22223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4444.6,"last_update":"2026-03-21T15:13:04.068439347Z"} +2026/03/21 15:13:09 [metric_collector] {"stage_name":"metric_collector","events_processed":14054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2810.8,"last_update":"2026-03-21T15:13:04.068927532Z"} +2026/03/21 15:13:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:13:04.077628007Z"} +2026/03/21 15:13:09 [detection_layer] {"stage_name":"detection_layer","events_processed":468,"events_dropped":0,"avg_latency_ms":18.882176367993008,"throughput_eps":0,"last_update":"2026-03-21T15:13:04.2098718Z"} +2026/03/21 15:13:09 [transform_engine] {"stage_name":"transform_engine","events_processed":468,"events_dropped":0,"avg_latency_ms":551.5026947198288,"throughput_eps":0,"last_update":"2026-03-21T15:13:04.209729747Z"} +2026/03/21 15:13:09 ───────────────────────────────────────────────── +2026/03/21 15:13:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:13:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:13:09.077828229Z"} +2026/03/21 15:13:14 [detection_layer] {"stage_name":"detection_layer","events_processed":468,"events_dropped":0,"avg_latency_ms":18.882176367993008,"throughput_eps":0,"last_update":"2026-03-21T15:13:09.210237328Z"} +2026/03/21 15:13:14 [transform_engine] {"stage_name":"transform_engine","events_processed":468,"events_dropped":0,"avg_latency_ms":551.5026947198288,"throughput_eps":0,"last_update":"2026-03-21T15:13:09.210339193Z"} +2026/03/21 15:13:14 [log_collector] {"stage_name":"log_collector","events_processed":22223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4444.6,"last_update":"2026-03-21T15:13:09.068644889Z"} +2026/03/21 15:13:14 [metric_collector] {"stage_name":"metric_collector","events_processed":14059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2811.8,"last_update":"2026-03-21T15:13:09.068946577Z"} +2026/03/21 15:13:14 ───────────────────────────────────────────────── +2026/03/21 15:13:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:13:19 [detection_layer] {"stage_name":"detection_layer","events_processed":468,"events_dropped":0,"avg_latency_ms":18.882176367993008,"throughput_eps":0,"last_update":"2026-03-21T15:13:14.210342219Z"} +2026/03/21 15:13:19 [transform_engine] {"stage_name":"transform_engine","events_processed":468,"events_dropped":0,"avg_latency_ms":551.5026947198288,"throughput_eps":0,"last_update":"2026-03-21T15:13:14.210441099Z"} +2026/03/21 15:13:19 [log_collector] {"stage_name":"log_collector","events_processed":22223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4444.6,"last_update":"2026-03-21T15:13:14.068685807Z"} +2026/03/21 15:13:19 [metric_collector] {"stage_name":"metric_collector","events_processed":14064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2812.8,"last_update":"2026-03-21T15:13:14.069062539Z"} +2026/03/21 15:13:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:13:14.077102059Z"} +2026/03/21 15:13:19 ───────────────────────────────────────────────── +2026/03/21 15:13:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:13:24 [detection_layer] {"stage_name":"detection_layer","events_processed":468,"events_dropped":0,"avg_latency_ms":18.882176367993008,"throughput_eps":0,"last_update":"2026-03-21T15:13:19.210908568Z"} +2026/03/21 15:13:24 [transform_engine] {"stage_name":"transform_engine","events_processed":469,"events_dropped":0,"avg_latency_ms":464.90968797586305,"throughput_eps":0,"last_update":"2026-03-21T15:13:19.32832426Z"} +2026/03/21 15:13:24 [log_collector] {"stage_name":"log_collector","events_processed":22223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4444.6,"last_update":"2026-03-21T15:13:19.068829518Z"} +2026/03/21 15:13:24 [metric_collector] {"stage_name":"metric_collector","events_processed":14069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2813.8,"last_update":"2026-03-21T15:13:19.069085107Z"} +2026/03/21 15:13:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:13:19.078539746Z"} +2026/03/21 15:13:24 ───────────────────────────────────────────────── +2026/03/21 15:13:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:13:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5632,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:13:24.078064764Z"} +2026/03/21 15:13:29 [detection_layer] {"stage_name":"detection_layer","events_processed":469,"events_dropped":0,"avg_latency_ms":19.656920494394406,"throughput_eps":0,"last_update":"2026-03-21T15:13:24.210479755Z"} +2026/03/21 15:13:29 [transform_engine] {"stage_name":"transform_engine","events_processed":469,"events_dropped":0,"avg_latency_ms":464.90968797586305,"throughput_eps":0,"last_update":"2026-03-21T15:13:24.21040448Z"} +2026/03/21 15:13:29 [log_collector] {"stage_name":"log_collector","events_processed":22223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4444.6,"last_update":"2026-03-21T15:13:24.068954224Z"} +2026/03/21 15:13:29 [metric_collector] {"stage_name":"metric_collector","events_processed":14074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2814.8,"last_update":"2026-03-21T15:13:24.069216957Z"} +2026/03/21 15:13:29 ───────────────────────────────────────────────── +2026/03/21 15:13:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:13:34 [transform_engine] {"stage_name":"transform_engine","events_processed":469,"events_dropped":0,"avg_latency_ms":464.90968797586305,"throughput_eps":0,"last_update":"2026-03-21T15:13:29.210109476Z"} +2026/03/21 15:13:34 [log_collector] {"stage_name":"log_collector","events_processed":22223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4444.6,"last_update":"2026-03-21T15:13:29.068558456Z"} +2026/03/21 15:13:34 [metric_collector] {"stage_name":"metric_collector","events_processed":14079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2815.8,"last_update":"2026-03-21T15:13:29.068937743Z"} +2026/03/21 15:13:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:13:29.077847899Z"} +2026/03/21 15:13:34 [detection_layer] {"stage_name":"detection_layer","events_processed":469,"events_dropped":0,"avg_latency_ms":19.656920494394406,"throughput_eps":0,"last_update":"2026-03-21T15:13:29.210215909Z"} +2026/03/21 15:13:34 ───────────────────────────────────────────────── +2026/03/21 15:13:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:13:39 [detection_layer] {"stage_name":"detection_layer","events_processed":469,"events_dropped":0,"avg_latency_ms":19.656920494394406,"throughput_eps":0,"last_update":"2026-03-21T15:13:34.210694999Z"} +2026/03/21 15:13:39 [transform_engine] {"stage_name":"transform_engine","events_processed":469,"events_dropped":0,"avg_latency_ms":464.90968797586305,"throughput_eps":0,"last_update":"2026-03-21T15:13:34.210579548Z"} +2026/03/21 15:13:39 [log_collector] {"stage_name":"log_collector","events_processed":22223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4444.6,"last_update":"2026-03-21T15:13:34.068055374Z"} +2026/03/21 15:13:39 [metric_collector] {"stage_name":"metric_collector","events_processed":14084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2816.8,"last_update":"2026-03-21T15:13:34.068663528Z"} +2026/03/21 15:13:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:13:34.077183989Z"} +2026/03/21 15:13:39 ───────────────────────────────────────────────── +2026/03/21 15:13:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:13:44 [metric_collector] {"stage_name":"metric_collector","events_processed":14089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2817.8,"last_update":"2026-03-21T15:13:39.068691457Z"} +2026/03/21 15:13:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:13:39.077598478Z"} +2026/03/21 15:13:44 [detection_layer] {"stage_name":"detection_layer","events_processed":469,"events_dropped":0,"avg_latency_ms":19.656920494394406,"throughput_eps":0,"last_update":"2026-03-21T15:13:39.209911133Z"} +2026/03/21 15:13:44 [transform_engine] {"stage_name":"transform_engine","events_processed":469,"events_dropped":0,"avg_latency_ms":464.90968797586305,"throughput_eps":0,"last_update":"2026-03-21T15:13:39.209743221Z"} +2026/03/21 15:13:44 [log_collector] {"stage_name":"log_collector","events_processed":22223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4444.6,"last_update":"2026-03-21T15:13:44.068222257Z"} +2026/03/21 15:13:44 ───────────────────────────────────────────────── +2026/03/21 15:13:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:13:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:13:44.068346295Z"} +2026/03/21 15:13:49 [detection_layer] {"stage_name":"detection_layer","events_processed":469,"events_dropped":0,"avg_latency_ms":19.656920494394406,"throughput_eps":0,"last_update":"2026-03-21T15:13:44.210042934Z"} +2026/03/21 15:13:49 [transform_engine] {"stage_name":"transform_engine","events_processed":469,"events_dropped":0,"avg_latency_ms":464.90968797586305,"throughput_eps":0,"last_update":"2026-03-21T15:13:44.210070777Z"} +2026/03/21 15:13:49 [log_collector] {"stage_name":"log_collector","events_processed":22223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4444.6,"last_update":"2026-03-21T15:13:44.068222257Z"} +2026/03/21 15:13:49 [metric_collector] {"stage_name":"metric_collector","events_processed":14094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2818.8,"last_update":"2026-03-21T15:13:44.06860002Z"} +2026/03/21 15:13:49 ───────────────────────────────────────────────── +2026/03/21 15:13:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:13:54 [transform_engine] {"stage_name":"transform_engine","events_processed":470,"events_dropped":0,"avg_latency_ms":386.1236373806904,"throughput_eps":0,"last_update":"2026-03-21T15:13:49.280623876Z"} +2026/03/21 15:13:54 [log_collector] {"stage_name":"log_collector","events_processed":22223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4444.6,"last_update":"2026-03-21T15:13:54.068445086Z"} +2026/03/21 15:13:54 [metric_collector] {"stage_name":"metric_collector","events_processed":14099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2819.8,"last_update":"2026-03-21T15:13:49.069625084Z"} +2026/03/21 15:13:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:13:49.078516174Z"} +2026/03/21 15:13:54 [detection_layer] {"stage_name":"detection_layer","events_processed":469,"events_dropped":0,"avg_latency_ms":19.656920494394406,"throughput_eps":0,"last_update":"2026-03-21T15:13:49.210408754Z"} +2026/03/21 15:13:54 ───────────────────────────────────────────────── +2026/03/21 15:13:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:13:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:13:54.077622686Z"} +2026/03/21 15:13:59 [detection_layer] {"stage_name":"detection_layer","events_processed":470,"events_dropped":0,"avg_latency_ms":20.147073595515526,"throughput_eps":0,"last_update":"2026-03-21T15:13:54.210905609Z"} +2026/03/21 15:13:59 [transform_engine] {"stage_name":"transform_engine","events_processed":470,"events_dropped":0,"avg_latency_ms":386.1236373806904,"throughput_eps":0,"last_update":"2026-03-21T15:13:54.209769674Z"} +2026/03/21 15:13:59 [log_collector] {"stage_name":"log_collector","events_processed":22223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4444.6,"last_update":"2026-03-21T15:13:54.068445086Z"} +2026/03/21 15:13:59 [metric_collector] {"stage_name":"metric_collector","events_processed":14104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2820.8,"last_update":"2026-03-21T15:13:54.06872401Z"} +2026/03/21 15:13:59 ───────────────────────────────────────────────── +2026/03/21 15:14:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:14:04 [detection_layer] {"stage_name":"detection_layer","events_processed":470,"events_dropped":0,"avg_latency_ms":20.147073595515526,"throughput_eps":0,"last_update":"2026-03-21T15:13:59.210724998Z"} +2026/03/21 15:14:04 [transform_engine] {"stage_name":"transform_engine","events_processed":470,"events_dropped":0,"avg_latency_ms":386.1236373806904,"throughput_eps":0,"last_update":"2026-03-21T15:13:59.210762439Z"} +2026/03/21 15:14:04 [log_collector] {"stage_name":"log_collector","events_processed":22223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4444.6,"last_update":"2026-03-21T15:13:59.068651576Z"} +2026/03/21 15:14:04 [metric_collector] {"stage_name":"metric_collector","events_processed":14109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2821.8,"last_update":"2026-03-21T15:13:59.069153097Z"} +2026/03/21 15:14:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5646,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:13:59.078362567Z"} +2026/03/21 15:14:04 ───────────────────────────────────────────────── +2026/03/21 15:14:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:14:09 [log_collector] {"stage_name":"log_collector","events_processed":22223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4444.6,"last_update":"2026-03-21T15:14:04.069085457Z"} +2026/03/21 15:14:09 [metric_collector] {"stage_name":"metric_collector","events_processed":14114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2822.8,"last_update":"2026-03-21T15:14:04.069879398Z"} +2026/03/21 15:14:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:14:04.078243159Z"} +2026/03/21 15:14:09 [detection_layer] {"stage_name":"detection_layer","events_processed":470,"events_dropped":0,"avg_latency_ms":20.147073595515526,"throughput_eps":0,"last_update":"2026-03-21T15:14:04.210630376Z"} +2026/03/21 15:14:09 [transform_engine] {"stage_name":"transform_engine","events_processed":470,"events_dropped":0,"avg_latency_ms":386.1236373806904,"throughput_eps":0,"last_update":"2026-03-21T15:14:04.210747391Z"} +2026/03/21 15:14:09 ───────────────────────────────────────────────── +2026/03/21 15:14:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:14:14 [log_collector] {"stage_name":"log_collector","events_processed":22223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4444.6,"last_update":"2026-03-21T15:14:09.068714631Z"} +2026/03/21 15:14:14 [metric_collector] {"stage_name":"metric_collector","events_processed":14119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2823.8,"last_update":"2026-03-21T15:14:09.068980449Z"} +2026/03/21 15:14:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5650,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:14:09.078002171Z"} +2026/03/21 15:14:14 [detection_layer] {"stage_name":"detection_layer","events_processed":470,"events_dropped":0,"avg_latency_ms":20.147073595515526,"throughput_eps":0,"last_update":"2026-03-21T15:14:09.210403876Z"} +2026/03/21 15:14:14 [transform_engine] {"stage_name":"transform_engine","events_processed":470,"events_dropped":0,"avg_latency_ms":386.1236373806904,"throughput_eps":0,"last_update":"2026-03-21T15:14:09.210252596Z"} +2026/03/21 15:14:14 ───────────────────────────────────────────────── +Saved state: 17 clusters, 22224 messages, reason: none +2026/03/21 15:14:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:14:19 [detection_layer] {"stage_name":"detection_layer","events_processed":470,"events_dropped":0,"avg_latency_ms":20.147073595515526,"throughput_eps":0,"last_update":"2026-03-21T15:14:14.210329197Z"} +2026/03/21 15:14:19 [transform_engine] {"stage_name":"transform_engine","events_processed":470,"events_dropped":0,"avg_latency_ms":386.1236373806904,"throughput_eps":0,"last_update":"2026-03-21T15:14:14.21043489Z"} +2026/03/21 15:14:19 [log_collector] {"stage_name":"log_collector","events_processed":22223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4444.6,"last_update":"2026-03-21T15:14:14.06893684Z"} +2026/03/21 15:14:19 [metric_collector] {"stage_name":"metric_collector","events_processed":14124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2824.8,"last_update":"2026-03-21T15:14:14.069526139Z"} +2026/03/21 15:14:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:14:14.077915368Z"} +2026/03/21 15:14:19 ───────────────────────────────────────────────── +2026/03/21 15:14:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:14:24 [transform_engine] {"stage_name":"transform_engine","events_processed":471,"events_dropped":0,"avg_latency_ms":331.69981930455236,"throughput_eps":0,"last_update":"2026-03-21T15:14:19.324157172Z"} +2026/03/21 15:14:24 [log_collector] {"stage_name":"log_collector","events_processed":22226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4445.2,"last_update":"2026-03-21T15:14:19.068513295Z"} +2026/03/21 15:14:24 [metric_collector] {"stage_name":"metric_collector","events_processed":14129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2825.8,"last_update":"2026-03-21T15:14:19.0686413Z"} +2026/03/21 15:14:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:14:19.075677187Z"} +2026/03/21 15:14:24 [detection_layer] {"stage_name":"detection_layer","events_processed":470,"events_dropped":0,"avg_latency_ms":20.147073595515526,"throughput_eps":0,"last_update":"2026-03-21T15:14:19.210161822Z"} +2026/03/21 15:14:24 ───────────────────────────────────────────────── +2026/03/21 15:14:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:14:29 [log_collector] {"stage_name":"log_collector","events_processed":22226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4445.2,"last_update":"2026-03-21T15:14:24.068907579Z"} +2026/03/21 15:14:29 [metric_collector] {"stage_name":"metric_collector","events_processed":14134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2826.8,"last_update":"2026-03-21T15:14:24.069214837Z"} +2026/03/21 15:14:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:14:24.082452764Z"} +2026/03/21 15:14:29 [detection_layer] {"stage_name":"detection_layer","events_processed":471,"events_dropped":0,"avg_latency_ms":19.38896487641242,"throughput_eps":0,"last_update":"2026-03-21T15:14:24.210832978Z"} +2026/03/21 15:14:29 [transform_engine] {"stage_name":"transform_engine","events_processed":471,"events_dropped":0,"avg_latency_ms":331.69981930455236,"throughput_eps":0,"last_update":"2026-03-21T15:14:24.209717521Z"} +2026/03/21 15:14:29 ───────────────────────────────────────────────── +2026/03/21 15:14:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:14:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:14:29.078383362Z"} +2026/03/21 15:14:34 [detection_layer] {"stage_name":"detection_layer","events_processed":471,"events_dropped":0,"avg_latency_ms":19.38896487641242,"throughput_eps":0,"last_update":"2026-03-21T15:14:29.210694755Z"} +2026/03/21 15:14:34 [transform_engine] {"stage_name":"transform_engine","events_processed":471,"events_dropped":0,"avg_latency_ms":331.69981930455236,"throughput_eps":0,"last_update":"2026-03-21T15:14:29.210643256Z"} +2026/03/21 15:14:34 [log_collector] {"stage_name":"log_collector","events_processed":22236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4447.2,"last_update":"2026-03-21T15:14:29.068617817Z"} +2026/03/21 15:14:34 [metric_collector] {"stage_name":"metric_collector","events_processed":14139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2827.8,"last_update":"2026-03-21T15:14:29.068914314Z"} +2026/03/21 15:14:34 ───────────────────────────────────────────────── +2026/03/21 15:14:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:14:39 [detection_layer] {"stage_name":"detection_layer","events_processed":471,"events_dropped":0,"avg_latency_ms":19.38896487641242,"throughput_eps":0,"last_update":"2026-03-21T15:14:34.210542909Z"} +2026/03/21 15:14:39 [transform_engine] {"stage_name":"transform_engine","events_processed":471,"events_dropped":0,"avg_latency_ms":331.69981930455236,"throughput_eps":0,"last_update":"2026-03-21T15:14:34.210577546Z"} +2026/03/21 15:14:39 [log_collector] {"stage_name":"log_collector","events_processed":22245,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4449,"last_update":"2026-03-21T15:14:34.068102685Z"} +2026/03/21 15:14:39 [metric_collector] {"stage_name":"metric_collector","events_processed":14144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2828.8,"last_update":"2026-03-21T15:14:34.068553318Z"} +2026/03/21 15:14:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5660,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:14:34.076306529Z"} +2026/03/21 15:14:39 ───────────────────────────────────────────────── +2026/03/21 15:14:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:14:44 [log_collector] {"stage_name":"log_collector","events_processed":22253,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4450.6,"last_update":"2026-03-21T15:14:39.06871791Z"} +2026/03/21 15:14:44 [metric_collector] {"stage_name":"metric_collector","events_processed":14149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2829.8,"last_update":"2026-03-21T15:14:39.068893937Z"} +2026/03/21 15:14:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5662,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:14:39.07928525Z"} +2026/03/21 15:14:44 [detection_layer] {"stage_name":"detection_layer","events_processed":471,"events_dropped":0,"avg_latency_ms":19.38896487641242,"throughput_eps":0,"last_update":"2026-03-21T15:14:39.210573895Z"} +2026/03/21 15:14:44 [transform_engine] {"stage_name":"transform_engine","events_processed":471,"events_dropped":0,"avg_latency_ms":331.69981930455236,"throughput_eps":0,"last_update":"2026-03-21T15:14:39.210532255Z"} +2026/03/21 15:14:44 ───────────────────────────────────────────────── +2026/03/21 15:14:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:14:49 [log_collector] {"stage_name":"log_collector","events_processed":22261,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4452.2,"last_update":"2026-03-21T15:14:44.068167384Z"} +2026/03/21 15:14:49 [metric_collector] {"stage_name":"metric_collector","events_processed":14154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2830.8,"last_update":"2026-03-21T15:14:44.068973498Z"} +2026/03/21 15:14:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:14:44.076964615Z"} +2026/03/21 15:14:49 [detection_layer] {"stage_name":"detection_layer","events_processed":471,"events_dropped":0,"avg_latency_ms":19.38896487641242,"throughput_eps":0,"last_update":"2026-03-21T15:14:44.210743028Z"} +2026/03/21 15:14:49 [transform_engine] {"stage_name":"transform_engine","events_processed":471,"events_dropped":0,"avg_latency_ms":331.69981930455236,"throughput_eps":0,"last_update":"2026-03-21T15:14:44.209644183Z"} +2026/03/21 15:14:49 ───────────────────────────────────────────────── +2026/03/21 15:14:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:14:54 [detection_layer] {"stage_name":"detection_layer","events_processed":471,"events_dropped":0,"avg_latency_ms":19.38896487641242,"throughput_eps":0,"last_update":"2026-03-21T15:14:49.209942347Z"} +2026/03/21 15:14:54 [transform_engine] {"stage_name":"transform_engine","events_processed":471,"events_dropped":0,"avg_latency_ms":331.69981930455236,"throughput_eps":0,"last_update":"2026-03-21T15:14:49.209670206Z"} +2026/03/21 15:14:54 [log_collector] {"stage_name":"log_collector","events_processed":22267,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4453.4,"last_update":"2026-03-21T15:14:49.069061619Z"} +2026/03/21 15:14:54 [metric_collector] {"stage_name":"metric_collector","events_processed":14159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2831.8,"last_update":"2026-03-21T15:14:49.069311317Z"} +2026/03/21 15:14:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:14:49.078408182Z"} +2026/03/21 15:14:54 ───────────────────────────────────────────────── +2026/03/21 15:14:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:14:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5668,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:14:54.078641234Z"} +2026/03/21 15:14:59 [detection_layer] {"stage_name":"detection_layer","events_processed":472,"events_dropped":0,"avg_latency_ms":19.268847501129937,"throughput_eps":0,"last_update":"2026-03-21T15:14:54.21006082Z"} +2026/03/21 15:14:59 [transform_engine] {"stage_name":"transform_engine","events_processed":472,"events_dropped":0,"avg_latency_ms":291.0351286436419,"throughput_eps":0,"last_update":"2026-03-21T15:14:54.210006154Z"} +2026/03/21 15:14:59 [log_collector] {"stage_name":"log_collector","events_processed":22267,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4453.4,"last_update":"2026-03-21T15:14:54.068084182Z"} +2026/03/21 15:14:59 [metric_collector] {"stage_name":"metric_collector","events_processed":14164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2832.8,"last_update":"2026-03-21T15:14:54.068345714Z"} +2026/03/21 15:14:59 ───────────────────────────────────────────────── +2026/03/21 15:15:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:15:04 [transform_engine] {"stage_name":"transform_engine","events_processed":472,"events_dropped":0,"avg_latency_ms":291.0351286436419,"throughput_eps":0,"last_update":"2026-03-21T15:14:59.209661721Z"} +2026/03/21 15:15:04 [log_collector] {"stage_name":"log_collector","events_processed":22267,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4453.4,"last_update":"2026-03-21T15:14:59.06896706Z"} +2026/03/21 15:15:04 [metric_collector] {"stage_name":"metric_collector","events_processed":14169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2833.8,"last_update":"2026-03-21T15:14:59.069331699Z"} +2026/03/21 15:15:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5670,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:14:59.078472887Z"} +2026/03/21 15:15:04 [detection_layer] {"stage_name":"detection_layer","events_processed":472,"events_dropped":0,"avg_latency_ms":19.268847501129937,"throughput_eps":0,"last_update":"2026-03-21T15:14:59.210755396Z"} +2026/03/21 15:15:04 ───────────────────────────────────────────────── +2026/03/21 15:15:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:15:09 [metric_collector] {"stage_name":"metric_collector","events_processed":14174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2834.8,"last_update":"2026-03-21T15:15:04.06878447Z"} +2026/03/21 15:15:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:15:04.078918731Z"} +2026/03/21 15:15:09 [detection_layer] {"stage_name":"detection_layer","events_processed":472,"events_dropped":0,"avg_latency_ms":19.268847501129937,"throughput_eps":0,"last_update":"2026-03-21T15:15:04.210032099Z"} +2026/03/21 15:15:09 [transform_engine] {"stage_name":"transform_engine","events_processed":472,"events_dropped":0,"avg_latency_ms":291.0351286436419,"throughput_eps":0,"last_update":"2026-03-21T15:15:04.210135508Z"} +2026/03/21 15:15:09 [log_collector] {"stage_name":"log_collector","events_processed":22267,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4453.4,"last_update":"2026-03-21T15:15:04.068318397Z"} +2026/03/21 15:15:09 ───────────────────────────────────────────────── +2026/03/21 15:15:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:15:14 [log_collector] {"stage_name":"log_collector","events_processed":22267,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4453.4,"last_update":"2026-03-21T15:15:09.068203465Z"} +2026/03/21 15:15:14 [metric_collector] {"stage_name":"metric_collector","events_processed":14179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2835.8,"last_update":"2026-03-21T15:15:09.0686758Z"} +2026/03/21 15:15:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:15:09.077650391Z"} +2026/03/21 15:15:14 [detection_layer] {"stage_name":"detection_layer","events_processed":472,"events_dropped":0,"avg_latency_ms":19.268847501129937,"throughput_eps":0,"last_update":"2026-03-21T15:15:09.21012665Z"} +2026/03/21 15:15:14 [transform_engine] {"stage_name":"transform_engine","events_processed":472,"events_dropped":0,"avg_latency_ms":291.0351286436419,"throughput_eps":0,"last_update":"2026-03-21T15:15:09.210242893Z"} +2026/03/21 15:15:14 ───────────────────────────────────────────────── +2026/03/21 15:15:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:15:19 [log_collector] {"stage_name":"log_collector","events_processed":22267,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4453.4,"last_update":"2026-03-21T15:15:14.068872251Z"} +2026/03/21 15:15:19 [metric_collector] {"stage_name":"metric_collector","events_processed":14184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2836.8,"last_update":"2026-03-21T15:15:14.069285131Z"} +2026/03/21 15:15:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5676,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:15:14.077531307Z"} +2026/03/21 15:15:19 [detection_layer] {"stage_name":"detection_layer","events_processed":472,"events_dropped":0,"avg_latency_ms":19.268847501129937,"throughput_eps":0,"last_update":"2026-03-21T15:15:14.210800806Z"} +2026/03/21 15:15:19 [transform_engine] {"stage_name":"transform_engine","events_processed":472,"events_dropped":0,"avg_latency_ms":291.0351286436419,"throughput_eps":0,"last_update":"2026-03-21T15:15:14.209710647Z"} +2026/03/21 15:15:19 ───────────────────────────────────────────────── +2026/03/21 15:15:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:15:24 [log_collector] {"stage_name":"log_collector","events_processed":22267,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4453.4,"last_update":"2026-03-21T15:15:19.068772507Z"} +2026/03/21 15:15:24 [metric_collector] {"stage_name":"metric_collector","events_processed":14189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2837.8,"last_update":"2026-03-21T15:15:19.069065789Z"} +2026/03/21 15:15:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:15:19.078380961Z"} +2026/03/21 15:15:24 [detection_layer] {"stage_name":"detection_layer","events_processed":472,"events_dropped":0,"avg_latency_ms":19.268847501129937,"throughput_eps":0,"last_update":"2026-03-21T15:15:19.210746048Z"} +2026/03/21 15:15:24 [transform_engine] {"stage_name":"transform_engine","events_processed":473,"events_dropped":0,"avg_latency_ms":246.7019293149135,"throughput_eps":0,"last_update":"2026-03-21T15:15:19.280130018Z"} +2026/03/21 15:15:24 ───────────────────────────────────────────────── +2026/03/21 15:15:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:15:29 [log_collector] {"stage_name":"log_collector","events_processed":22267,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4453.4,"last_update":"2026-03-21T15:15:24.068763359Z"} +2026/03/21 15:15:29 [metric_collector] {"stage_name":"metric_collector","events_processed":14194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2838.8,"last_update":"2026-03-21T15:15:24.068954436Z"} +2026/03/21 15:15:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:15:24.078712757Z"} +2026/03/21 15:15:29 [detection_layer] {"stage_name":"detection_layer","events_processed":473,"events_dropped":0,"avg_latency_ms":20.23943460090395,"throughput_eps":0,"last_update":"2026-03-21T15:15:24.209934463Z"} +2026/03/21 15:15:29 [transform_engine] {"stage_name":"transform_engine","events_processed":473,"events_dropped":0,"avg_latency_ms":246.7019293149135,"throughput_eps":0,"last_update":"2026-03-21T15:15:24.209945024Z"} +2026/03/21 15:15:29 ───────────────────────────────────────────────── +2026/03/21 15:15:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:15:34 [metric_collector] {"stage_name":"metric_collector","events_processed":14199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2839.8,"last_update":"2026-03-21T15:15:29.068853523Z"} +2026/03/21 15:15:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:15:29.077626597Z"} +2026/03/21 15:15:34 [detection_layer] {"stage_name":"detection_layer","events_processed":473,"events_dropped":0,"avg_latency_ms":20.23943460090395,"throughput_eps":0,"last_update":"2026-03-21T15:15:29.210865498Z"} +2026/03/21 15:15:34 [transform_engine] {"stage_name":"transform_engine","events_processed":473,"events_dropped":0,"avg_latency_ms":246.7019293149135,"throughput_eps":0,"last_update":"2026-03-21T15:15:29.209752426Z"} +2026/03/21 15:15:34 [log_collector] {"stage_name":"log_collector","events_processed":22267,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4453.4,"last_update":"2026-03-21T15:15:29.06860632Z"} +2026/03/21 15:15:34 ───────────────────────────────────────────────── +2026/03/21 15:15:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:15:39 [log_collector] {"stage_name":"log_collector","events_processed":22267,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4453.4,"last_update":"2026-03-21T15:15:34.068089213Z"} +2026/03/21 15:15:39 [metric_collector] {"stage_name":"metric_collector","events_processed":14204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2840.8,"last_update":"2026-03-21T15:15:34.069066645Z"} +2026/03/21 15:15:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:15:34.078235678Z"} +2026/03/21 15:15:39 [detection_layer] {"stage_name":"detection_layer","events_processed":473,"events_dropped":0,"avg_latency_ms":20.23943460090395,"throughput_eps":0,"last_update":"2026-03-21T15:15:34.210651662Z"} +2026/03/21 15:15:39 [transform_engine] {"stage_name":"transform_engine","events_processed":473,"events_dropped":0,"avg_latency_ms":246.7019293149135,"throughput_eps":0,"last_update":"2026-03-21T15:15:34.210667462Z"} +2026/03/21 15:15:39 ───────────────────────────────────────────────── +2026/03/21 15:15:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:15:44 [log_collector] {"stage_name":"log_collector","events_processed":22267,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4453.4,"last_update":"2026-03-21T15:15:39.068110848Z"} +2026/03/21 15:15:44 [metric_collector] {"stage_name":"metric_collector","events_processed":14209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2841.8,"last_update":"2026-03-21T15:15:39.068537856Z"} +2026/03/21 15:15:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:15:39.078899654Z"} +2026/03/21 15:15:44 [detection_layer] {"stage_name":"detection_layer","events_processed":473,"events_dropped":0,"avg_latency_ms":20.23943460090395,"throughput_eps":0,"last_update":"2026-03-21T15:15:39.210168821Z"} +2026/03/21 15:15:44 [transform_engine] {"stage_name":"transform_engine","events_processed":473,"events_dropped":0,"avg_latency_ms":246.7019293149135,"throughput_eps":0,"last_update":"2026-03-21T15:15:39.210248063Z"} +2026/03/21 15:15:44 ───────────────────────────────────────────────── +Saved state: 17 clusters, 22268 messages, reason: none +2026/03/21 15:15:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:15:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5688,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:15:44.080149204Z"} +2026/03/21 15:15:49 [detection_layer] {"stage_name":"detection_layer","events_processed":473,"events_dropped":0,"avg_latency_ms":20.23943460090395,"throughput_eps":0,"last_update":"2026-03-21T15:15:44.210485555Z"} +2026/03/21 15:15:49 [transform_engine] {"stage_name":"transform_engine","events_processed":473,"events_dropped":0,"avg_latency_ms":246.7019293149135,"throughput_eps":0,"last_update":"2026-03-21T15:15:44.21054033Z"} +2026/03/21 15:15:49 [log_collector] {"stage_name":"log_collector","events_processed":22267,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4453.4,"last_update":"2026-03-21T15:15:44.068775799Z"} +2026/03/21 15:15:49 [metric_collector] {"stage_name":"metric_collector","events_processed":14214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2842.8,"last_update":"2026-03-21T15:15:44.069682256Z"} +2026/03/21 15:15:49 ───────────────────────────────────────────────── +2026/03/21 15:15:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:15:54 [detection_layer] {"stage_name":"detection_layer","events_processed":473,"events_dropped":0,"avg_latency_ms":20.23943460090395,"throughput_eps":0,"last_update":"2026-03-21T15:15:49.210799035Z"} +2026/03/21 15:15:54 [transform_engine] {"stage_name":"transform_engine","events_processed":474,"events_dropped":0,"avg_latency_ms":500.9663970519308,"throughput_eps":0,"last_update":"2026-03-21T15:15:50.727701325Z"} +2026/03/21 15:15:54 [log_collector] {"stage_name":"log_collector","events_processed":22272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4454.4,"last_update":"2026-03-21T15:15:49.068385852Z"} +2026/03/21 15:15:54 [metric_collector] {"stage_name":"metric_collector","events_processed":14219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2843.8,"last_update":"2026-03-21T15:15:49.068667922Z"} +2026/03/21 15:15:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:15:49.07562083Z"} +2026/03/21 15:15:54 ───────────────────────────────────────────────── +2026/03/21 15:15:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:15:59 [log_collector] {"stage_name":"log_collector","events_processed":22272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4454.4,"last_update":"2026-03-21T15:15:54.068697431Z"} +2026/03/21 15:15:59 [metric_collector] {"stage_name":"metric_collector","events_processed":14224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2844.8,"last_update":"2026-03-21T15:15:54.068892395Z"} +2026/03/21 15:15:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:15:54.078463758Z"} +2026/03/21 15:15:59 [detection_layer] {"stage_name":"detection_layer","events_processed":474,"events_dropped":0,"avg_latency_ms":18.96814988072316,"throughput_eps":0,"last_update":"2026-03-21T15:15:54.210543609Z"} +2026/03/21 15:15:59 [transform_engine] {"stage_name":"transform_engine","events_processed":474,"events_dropped":0,"avg_latency_ms":500.9663970519308,"throughput_eps":0,"last_update":"2026-03-21T15:15:54.210520354Z"} +2026/03/21 15:15:59 ───────────────────────────────────────────────── +2026/03/21 15:16:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:16:04 [log_collector] {"stage_name":"log_collector","events_processed":22272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4454.4,"last_update":"2026-03-21T15:15:59.068226082Z"} +2026/03/21 15:16:04 [metric_collector] {"stage_name":"metric_collector","events_processed":14229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2845.8,"last_update":"2026-03-21T15:15:59.068640816Z"} +2026/03/21 15:16:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:15:59.076734969Z"} +2026/03/21 15:16:04 [detection_layer] {"stage_name":"detection_layer","events_processed":474,"events_dropped":0,"avg_latency_ms":18.96814988072316,"throughput_eps":0,"last_update":"2026-03-21T15:15:59.210034507Z"} +2026/03/21 15:16:04 [transform_engine] {"stage_name":"transform_engine","events_processed":474,"events_dropped":0,"avg_latency_ms":500.9663970519308,"throughput_eps":0,"last_update":"2026-03-21T15:15:59.210010731Z"} +2026/03/21 15:16:04 ───────────────────────────────────────────────── +2026/03/21 15:16:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:16:09 [log_collector] {"stage_name":"log_collector","events_processed":22272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4454.4,"last_update":"2026-03-21T15:16:04.069370201Z"} +2026/03/21 15:16:09 [metric_collector] {"stage_name":"metric_collector","events_processed":14234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2846.8,"last_update":"2026-03-21T15:16:04.068716679Z"} +2026/03/21 15:16:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:16:04.076449941Z"} +2026/03/21 15:16:09 [detection_layer] {"stage_name":"detection_layer","events_processed":474,"events_dropped":0,"avg_latency_ms":18.96814988072316,"throughput_eps":0,"last_update":"2026-03-21T15:16:04.210657527Z"} +2026/03/21 15:16:09 [transform_engine] {"stage_name":"transform_engine","events_processed":474,"events_dropped":0,"avg_latency_ms":500.9663970519308,"throughput_eps":0,"last_update":"2026-03-21T15:16:04.210683427Z"} +2026/03/21 15:16:09 ───────────────────────────────────────────────── +2026/03/21 15:16:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:16:14 [log_collector] {"stage_name":"log_collector","events_processed":22272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4454.4,"last_update":"2026-03-21T15:16:09.068544848Z"} +2026/03/21 15:16:14 [metric_collector] {"stage_name":"metric_collector","events_processed":14239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2847.8,"last_update":"2026-03-21T15:16:09.068582481Z"} +2026/03/21 15:16:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:16:09.075736884Z"} +2026/03/21 15:16:14 [detection_layer] {"stage_name":"detection_layer","events_processed":474,"events_dropped":0,"avg_latency_ms":18.96814988072316,"throughput_eps":0,"last_update":"2026-03-21T15:16:09.210029144Z"} +2026/03/21 15:16:14 [transform_engine] {"stage_name":"transform_engine","events_processed":474,"events_dropped":0,"avg_latency_ms":500.9663970519308,"throughput_eps":0,"last_update":"2026-03-21T15:16:09.209948608Z"} +2026/03/21 15:16:14 ───────────────────────────────────────────────── +2026/03/21 15:16:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:16:19 [log_collector] {"stage_name":"log_collector","events_processed":22272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4454.4,"last_update":"2026-03-21T15:16:14.068596669Z"} +2026/03/21 15:16:19 [metric_collector] {"stage_name":"metric_collector","events_processed":14244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2848.8,"last_update":"2026-03-21T15:16:14.069000644Z"} +2026/03/21 15:16:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5700,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:16:14.075623259Z"} +2026/03/21 15:16:19 [detection_layer] {"stage_name":"detection_layer","events_processed":474,"events_dropped":0,"avg_latency_ms":18.96814988072316,"throughput_eps":0,"last_update":"2026-03-21T15:16:14.210815511Z"} +2026/03/21 15:16:19 [transform_engine] {"stage_name":"transform_engine","events_processed":474,"events_dropped":0,"avg_latency_ms":500.9663970519308,"throughput_eps":0,"last_update":"2026-03-21T15:16:14.209738418Z"} +2026/03/21 15:16:19 ───────────────────────────────────────────────── +2026/03/21 15:16:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:16:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5702,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:16:19.074405298Z"} +2026/03/21 15:16:24 [detection_layer] {"stage_name":"detection_layer","events_processed":474,"events_dropped":0,"avg_latency_ms":18.96814988072316,"throughput_eps":0,"last_update":"2026-03-21T15:16:19.210808802Z"} +2026/03/21 15:16:24 [transform_engine] {"stage_name":"transform_engine","events_processed":475,"events_dropped":0,"avg_latency_ms":419.5499918415447,"throughput_eps":0,"last_update":"2026-03-21T15:16:19.303589627Z"} +2026/03/21 15:16:24 [log_collector] {"stage_name":"log_collector","events_processed":22272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4454.4,"last_update":"2026-03-21T15:16:19.068558238Z"} +2026/03/21 15:16:24 [metric_collector] {"stage_name":"metric_collector","events_processed":14249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2849.8,"last_update":"2026-03-21T15:16:19.068778651Z"} +2026/03/21 15:16:24 ───────────────────────────────────────────────── +2026/03/21 15:16:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:16:29 [transform_engine] {"stage_name":"transform_engine","events_processed":475,"events_dropped":0,"avg_latency_ms":419.5499918415447,"throughput_eps":0,"last_update":"2026-03-21T15:16:24.209896057Z"} +2026/03/21 15:16:29 [log_collector] {"stage_name":"log_collector","events_processed":22272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4454.4,"last_update":"2026-03-21T15:16:24.068558654Z"} +2026/03/21 15:16:29 [metric_collector] {"stage_name":"metric_collector","events_processed":14254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2850.8,"last_update":"2026-03-21T15:16:24.068794065Z"} +2026/03/21 15:16:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:16:24.076646666Z"} +2026/03/21 15:16:29 [detection_layer] {"stage_name":"detection_layer","events_processed":475,"events_dropped":0,"avg_latency_ms":17.76745270457853,"throughput_eps":0,"last_update":"2026-03-21T15:16:24.209874245Z"} +2026/03/21 15:16:29 ───────────────────────────────────────────────── +2026/03/21 15:16:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:16:34 [metric_collector] {"stage_name":"metric_collector","events_processed":14259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2851.8,"last_update":"2026-03-21T15:16:29.068850941Z"} +2026/03/21 15:16:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:16:29.076593121Z"} +2026/03/21 15:16:34 [detection_layer] {"stage_name":"detection_layer","events_processed":475,"events_dropped":0,"avg_latency_ms":17.76745270457853,"throughput_eps":0,"last_update":"2026-03-21T15:16:29.210901711Z"} +2026/03/21 15:16:34 [transform_engine] {"stage_name":"transform_engine","events_processed":475,"events_dropped":0,"avg_latency_ms":419.5499918415447,"throughput_eps":0,"last_update":"2026-03-21T15:16:29.209777898Z"} +2026/03/21 15:16:34 [log_collector] {"stage_name":"log_collector","events_processed":22275,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4455,"last_update":"2026-03-21T15:16:29.068611853Z"} +2026/03/21 15:16:34 ───────────────────────────────────────────────── +2026/03/21 15:16:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:16:39 [metric_collector] {"stage_name":"metric_collector","events_processed":14264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2852.8,"last_update":"2026-03-21T15:16:34.069330248Z"} +2026/03/21 15:16:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:16:34.07763801Z"} +2026/03/21 15:16:39 [detection_layer] {"stage_name":"detection_layer","events_processed":475,"events_dropped":0,"avg_latency_ms":17.76745270457853,"throughput_eps":0,"last_update":"2026-03-21T15:16:34.209928635Z"} +2026/03/21 15:16:39 [transform_engine] {"stage_name":"transform_engine","events_processed":475,"events_dropped":0,"avg_latency_ms":419.5499918415447,"throughput_eps":0,"last_update":"2026-03-21T15:16:34.209810108Z"} +2026/03/21 15:16:39 [log_collector] {"stage_name":"log_collector","events_processed":22281,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4456.2,"last_update":"2026-03-21T15:16:34.068754535Z"} +2026/03/21 15:16:39 ───────────────────────────────────────────────── +2026/03/21 15:16:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:16:44 [log_collector] {"stage_name":"log_collector","events_processed":22370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4474,"last_update":"2026-03-21T15:16:39.068061808Z"} +2026/03/21 15:16:44 [metric_collector] {"stage_name":"metric_collector","events_processed":14269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2853.8,"last_update":"2026-03-21T15:16:39.068371892Z"} +2026/03/21 15:16:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:16:39.07440591Z"} +2026/03/21 15:16:44 [detection_layer] {"stage_name":"detection_layer","events_processed":475,"events_dropped":0,"avg_latency_ms":17.76745270457853,"throughput_eps":0,"last_update":"2026-03-21T15:16:39.210664335Z"} +2026/03/21 15:16:44 [transform_engine] {"stage_name":"transform_engine","events_processed":475,"events_dropped":0,"avg_latency_ms":419.5499918415447,"throughput_eps":0,"last_update":"2026-03-21T15:16:39.210670907Z"} +2026/03/21 15:16:44 ───────────────────────────────────────────────── +2026/03/21 15:16:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:16:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5712,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:16:44.077194214Z"} +2026/03/21 15:16:49 [detection_layer] {"stage_name":"detection_layer","events_processed":475,"events_dropped":0,"avg_latency_ms":17.76745270457853,"throughput_eps":0,"last_update":"2026-03-21T15:16:44.21066505Z"} +2026/03/21 15:16:49 [transform_engine] {"stage_name":"transform_engine","events_processed":475,"events_dropped":0,"avg_latency_ms":419.5499918415447,"throughput_eps":0,"last_update":"2026-03-21T15:16:44.210549087Z"} +2026/03/21 15:16:49 [log_collector] {"stage_name":"log_collector","events_processed":22592,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4518.4,"last_update":"2026-03-21T15:16:44.068582319Z"} +2026/03/21 15:16:49 [metric_collector] {"stage_name":"metric_collector","events_processed":14274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2854.8,"last_update":"2026-03-21T15:16:44.068782903Z"} +2026/03/21 15:16:49 ───────────────────────────────────────────────── +2026/03/21 15:16:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:16:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:16:49.077774329Z"} +2026/03/21 15:16:54 [detection_layer] {"stage_name":"detection_layer","events_processed":475,"events_dropped":0,"avg_latency_ms":17.76745270457853,"throughput_eps":0,"last_update":"2026-03-21T15:16:49.210349098Z"} +2026/03/21 15:16:54 [transform_engine] {"stage_name":"transform_engine","events_processed":476,"events_dropped":0,"avg_latency_ms":362.0400992732358,"throughput_eps":0,"last_update":"2026-03-21T15:16:49.342268873Z"} +2026/03/21 15:16:54 [log_collector] {"stage_name":"log_collector","events_processed":22637,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4527.4,"last_update":"2026-03-21T15:16:49.068799138Z"} +2026/03/21 15:16:54 [metric_collector] {"stage_name":"metric_collector","events_processed":14279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2855.8,"last_update":"2026-03-21T15:16:49.069102559Z"} +2026/03/21 15:16:54 ───────────────────────────────────────────────── +2026/03/21 15:16:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:16:59 [metric_collector] {"stage_name":"metric_collector","events_processed":14284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2856.8,"last_update":"2026-03-21T15:16:54.069180046Z"} +2026/03/21 15:16:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:16:54.078285507Z"} +2026/03/21 15:16:59 [detection_layer] {"stage_name":"detection_layer","events_processed":476,"events_dropped":0,"avg_latency_ms":17.845017163662824,"throughput_eps":0,"last_update":"2026-03-21T15:16:54.210656385Z"} +2026/03/21 15:16:59 [transform_engine] {"stage_name":"transform_engine","events_processed":476,"events_dropped":0,"avg_latency_ms":362.0400992732358,"throughput_eps":0,"last_update":"2026-03-21T15:16:54.210662538Z"} +2026/03/21 15:16:59 [log_collector] {"stage_name":"log_collector","events_processed":22637,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4527.4,"last_update":"2026-03-21T15:16:59.068372416Z"} +2026/03/21 15:16:59 ───────────────────────────────────────────────── +2026/03/21 15:17:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:17:04 [log_collector] {"stage_name":"log_collector","events_processed":22637,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4527.4,"last_update":"2026-03-21T15:16:59.068372416Z"} +2026/03/21 15:17:04 [metric_collector] {"stage_name":"metric_collector","events_processed":14289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2857.8,"last_update":"2026-03-21T15:16:59.068681528Z"} +2026/03/21 15:17:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5718,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:16:59.078051886Z"} +2026/03/21 15:17:04 [detection_layer] {"stage_name":"detection_layer","events_processed":476,"events_dropped":0,"avg_latency_ms":17.845017163662824,"throughput_eps":0,"last_update":"2026-03-21T15:16:59.210233933Z"} +2026/03/21 15:17:04 [transform_engine] {"stage_name":"transform_engine","events_processed":476,"events_dropped":0,"avg_latency_ms":362.0400992732358,"throughput_eps":0,"last_update":"2026-03-21T15:16:59.210243982Z"} +2026/03/21 15:17:04 ───────────────────────────────────────────────── +2026/03/21 15:17:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:17:09 [log_collector] {"stage_name":"log_collector","events_processed":22637,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4527.4,"last_update":"2026-03-21T15:17:04.068615059Z"} +2026/03/21 15:17:09 [metric_collector] {"stage_name":"metric_collector","events_processed":14294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2858.8,"last_update":"2026-03-21T15:17:04.0689024Z"} +2026/03/21 15:17:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:17:04.077549363Z"} +2026/03/21 15:17:09 [detection_layer] {"stage_name":"detection_layer","events_processed":476,"events_dropped":0,"avg_latency_ms":17.845017163662824,"throughput_eps":0,"last_update":"2026-03-21T15:17:04.211025208Z"} +2026/03/21 15:17:09 [transform_engine] {"stage_name":"transform_engine","events_processed":476,"events_dropped":0,"avg_latency_ms":362.0400992732358,"throughput_eps":0,"last_update":"2026-03-21T15:17:04.209787838Z"} +2026/03/21 15:17:09 ───────────────────────────────────────────────── +2026/03/21 15:17:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:17:14 [log_collector] {"stage_name":"log_collector","events_processed":22637,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4527.4,"last_update":"2026-03-21T15:17:09.068703471Z"} +2026/03/21 15:17:14 [metric_collector] {"stage_name":"metric_collector","events_processed":14299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2859.8,"last_update":"2026-03-21T15:17:09.069009447Z"} +2026/03/21 15:17:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5722,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:17:09.078424681Z"} +2026/03/21 15:17:14 [detection_layer] {"stage_name":"detection_layer","events_processed":476,"events_dropped":0,"avg_latency_ms":17.845017163662824,"throughput_eps":0,"last_update":"2026-03-21T15:17:09.210617749Z"} +2026/03/21 15:17:14 [transform_engine] {"stage_name":"transform_engine","events_processed":476,"events_dropped":0,"avg_latency_ms":362.0400992732358,"throughput_eps":0,"last_update":"2026-03-21T15:17:09.210623911Z"} +2026/03/21 15:17:14 ───────────────────────────────────────────────── +2026/03/21 15:17:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:17:19 [detection_layer] {"stage_name":"detection_layer","events_processed":476,"events_dropped":0,"avg_latency_ms":17.845017163662824,"throughput_eps":0,"last_update":"2026-03-21T15:17:14.210369556Z"} +2026/03/21 15:17:19 [transform_engine] {"stage_name":"transform_engine","events_processed":476,"events_dropped":0,"avg_latency_ms":362.0400992732358,"throughput_eps":0,"last_update":"2026-03-21T15:17:14.210380317Z"} +2026/03/21 15:17:19 [log_collector] {"stage_name":"log_collector","events_processed":22637,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4527.4,"last_update":"2026-03-21T15:17:14.068135395Z"} +2026/03/21 15:17:19 [metric_collector] {"stage_name":"metric_collector","events_processed":14304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2860.8,"last_update":"2026-03-21T15:17:14.068624532Z"} +2026/03/21 15:17:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:17:14.07911689Z"} +2026/03/21 15:17:19 ───────────────────────────────────────────────── +2026/03/21 15:17:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:17:24 [log_collector] {"stage_name":"log_collector","events_processed":22637,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4527.4,"last_update":"2026-03-21T15:17:19.068124288Z"} +2026/03/21 15:17:24 [metric_collector] {"stage_name":"metric_collector","events_processed":14309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2861.8,"last_update":"2026-03-21T15:17:19.068659092Z"} +2026/03/21 15:17:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:17:19.077395737Z"} +2026/03/21 15:17:24 [detection_layer] {"stage_name":"detection_layer","events_processed":476,"events_dropped":0,"avg_latency_ms":17.845017163662824,"throughput_eps":0,"last_update":"2026-03-21T15:17:19.210034269Z"} +2026/03/21 15:17:24 [transform_engine] {"stage_name":"transform_engine","events_processed":477,"events_dropped":0,"avg_latency_ms":303.85455981858865,"throughput_eps":0,"last_update":"2026-03-21T15:17:19.280751103Z"} +2026/03/21 15:17:24 ───────────────────────────────────────────────── +2026/03/21 15:17:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:17:29 [metric_collector] {"stage_name":"metric_collector","events_processed":14314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2862.8,"last_update":"2026-03-21T15:17:24.06895107Z"} +2026/03/21 15:17:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5728,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:17:24.077958213Z"} +2026/03/21 15:17:29 [detection_layer] {"stage_name":"detection_layer","events_processed":477,"events_dropped":0,"avg_latency_ms":19.07699373093026,"throughput_eps":0,"last_update":"2026-03-21T15:17:24.210226835Z"} +2026/03/21 15:17:29 [transform_engine] {"stage_name":"transform_engine","events_processed":477,"events_dropped":0,"avg_latency_ms":303.85455981858865,"throughput_eps":0,"last_update":"2026-03-21T15:17:24.210195205Z"} +2026/03/21 15:17:29 [log_collector] {"stage_name":"log_collector","events_processed":22637,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4527.4,"last_update":"2026-03-21T15:17:24.068543268Z"} +2026/03/21 15:17:29 ───────────────────────────────────────────────── +2026/03/21 15:17:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:17:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5730,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:17:29.077294331Z"} +2026/03/21 15:17:34 [detection_layer] {"stage_name":"detection_layer","events_processed":477,"events_dropped":0,"avg_latency_ms":19.07699373093026,"throughput_eps":0,"last_update":"2026-03-21T15:17:29.210582678Z"} +2026/03/21 15:17:34 [transform_engine] {"stage_name":"transform_engine","events_processed":477,"events_dropped":0,"avg_latency_ms":303.85455981858865,"throughput_eps":0,"last_update":"2026-03-21T15:17:29.210562058Z"} +2026/03/21 15:17:34 [log_collector] {"stage_name":"log_collector","events_processed":22637,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4527.4,"last_update":"2026-03-21T15:17:29.068731649Z"} +2026/03/21 15:17:34 [metric_collector] {"stage_name":"metric_collector","events_processed":14319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2863.8,"last_update":"2026-03-21T15:17:29.068940589Z"} +2026/03/21 15:17:34 ───────────────────────────────────────────────── +2026/03/21 15:17:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:17:39 [transform_engine] {"stage_name":"transform_engine","events_processed":477,"events_dropped":0,"avg_latency_ms":303.85455981858865,"throughput_eps":0,"last_update":"2026-03-21T15:17:34.210021252Z"} +2026/03/21 15:17:39 [log_collector] {"stage_name":"log_collector","events_processed":22637,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4527.4,"last_update":"2026-03-21T15:17:34.068774701Z"} +2026/03/21 15:17:39 [metric_collector] {"stage_name":"metric_collector","events_processed":14324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2864.8,"last_update":"2026-03-21T15:17:34.069325026Z"} +2026/03/21 15:17:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:17:34.078780488Z"} +2026/03/21 15:17:39 [detection_layer] {"stage_name":"detection_layer","events_processed":477,"events_dropped":0,"avg_latency_ms":19.07699373093026,"throughput_eps":0,"last_update":"2026-03-21T15:17:34.210073632Z"} +2026/03/21 15:17:39 ───────────────────────────────────────────────── +2026/03/21 15:17:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:17:44 [log_collector] {"stage_name":"log_collector","events_processed":22637,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4527.4,"last_update":"2026-03-21T15:17:39.068098491Z"} +2026/03/21 15:17:44 [metric_collector] {"stage_name":"metric_collector","events_processed":14329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2865.8,"last_update":"2026-03-21T15:17:39.068693009Z"} +2026/03/21 15:17:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:17:39.077373707Z"} +2026/03/21 15:17:44 [detection_layer] {"stage_name":"detection_layer","events_processed":477,"events_dropped":0,"avg_latency_ms":19.07699373093026,"throughput_eps":0,"last_update":"2026-03-21T15:17:39.210632176Z"} +2026/03/21 15:17:44 [transform_engine] {"stage_name":"transform_engine","events_processed":477,"events_dropped":0,"avg_latency_ms":303.85455981858865,"throughput_eps":0,"last_update":"2026-03-21T15:17:39.210599373Z"} +2026/03/21 15:17:44 ───────────────────────────────────────────────── +2026/03/21 15:17:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:17:49 [transform_engine] {"stage_name":"transform_engine","events_processed":477,"events_dropped":0,"avg_latency_ms":303.85455981858865,"throughput_eps":0,"last_update":"2026-03-21T15:17:44.210036568Z"} +2026/03/21 15:17:49 [log_collector] {"stage_name":"log_collector","events_processed":22637,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4527.4,"last_update":"2026-03-21T15:17:44.068784658Z"} +2026/03/21 15:17:49 [metric_collector] {"stage_name":"metric_collector","events_processed":14334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2866.8,"last_update":"2026-03-21T15:17:44.069346875Z"} +2026/03/21 15:17:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5736,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:17:44.077661241Z"} +2026/03/21 15:17:49 [detection_layer] {"stage_name":"detection_layer","events_processed":477,"events_dropped":0,"avg_latency_ms":19.07699373093026,"throughput_eps":0,"last_update":"2026-03-21T15:17:44.21015198Z"} +2026/03/21 15:17:49 ───────────────────────────────────────────────── +2026/03/21 15:17:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:17:54 [metric_collector] {"stage_name":"metric_collector","events_processed":14339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2867.8,"last_update":"2026-03-21T15:17:49.069647416Z"} +2026/03/21 15:17:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5738,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:17:49.078778627Z"} +2026/03/21 15:17:54 [detection_layer] {"stage_name":"detection_layer","events_processed":477,"events_dropped":0,"avg_latency_ms":19.07699373093026,"throughput_eps":0,"last_update":"2026-03-21T15:17:49.210229293Z"} +2026/03/21 15:17:54 [transform_engine] {"stage_name":"transform_engine","events_processed":478,"events_dropped":0,"avg_latency_ms":259.19046345487095,"throughput_eps":0,"last_update":"2026-03-21T15:17:49.290816333Z"} +2026/03/21 15:17:54 [log_collector] {"stage_name":"log_collector","events_processed":22637,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4527.4,"last_update":"2026-03-21T15:17:49.068800224Z"} +2026/03/21 15:17:54 ───────────────────────────────────────────────── +2026/03/21 15:17:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:17:59 [log_collector] {"stage_name":"log_collector","events_processed":22637,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4527.4,"last_update":"2026-03-21T15:17:54.068449239Z"} +2026/03/21 15:17:59 [metric_collector] {"stage_name":"metric_collector","events_processed":14344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2868.8,"last_update":"2026-03-21T15:17:54.068796314Z"} +2026/03/21 15:17:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5740,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:17:54.077313368Z"} +2026/03/21 15:17:59 [detection_layer] {"stage_name":"detection_layer","events_processed":478,"events_dropped":0,"avg_latency_ms":19.800216384744207,"throughput_eps":0,"last_update":"2026-03-21T15:17:54.21058879Z"} +2026/03/21 15:17:59 [transform_engine] {"stage_name":"transform_engine","events_processed":478,"events_dropped":0,"avg_latency_ms":259.19046345487095,"throughput_eps":0,"last_update":"2026-03-21T15:17:54.210596284Z"} +2026/03/21 15:17:59 ───────────────────────────────────────────────── +2026/03/21 15:18:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:18:04 [log_collector] {"stage_name":"log_collector","events_processed":22637,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4527.4,"last_update":"2026-03-21T15:17:59.068756698Z"} +2026/03/21 15:18:04 [metric_collector] {"stage_name":"metric_collector","events_processed":14348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2869.6,"last_update":"2026-03-21T15:17:59.06861187Z"} +2026/03/21 15:18:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:17:59.077880484Z"} +2026/03/21 15:18:04 [detection_layer] {"stage_name":"detection_layer","events_processed":478,"events_dropped":0,"avg_latency_ms":19.800216384744207,"throughput_eps":0,"last_update":"2026-03-21T15:17:59.21013515Z"} +2026/03/21 15:18:04 [transform_engine] {"stage_name":"transform_engine","events_processed":478,"events_dropped":0,"avg_latency_ms":259.19046345487095,"throughput_eps":0,"last_update":"2026-03-21T15:17:59.210146262Z"} +2026/03/21 15:18:04 ───────────────────────────────────────────────── +Saved state: 17 clusters, 22638 messages, reason: none +2026/03/21 15:18:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:18:09 [detection_layer] {"stage_name":"detection_layer","events_processed":478,"events_dropped":0,"avg_latency_ms":19.800216384744207,"throughput_eps":0,"last_update":"2026-03-21T15:18:04.210385822Z"} +2026/03/21 15:18:09 [transform_engine] {"stage_name":"transform_engine","events_processed":478,"events_dropped":0,"avg_latency_ms":259.19046345487095,"throughput_eps":0,"last_update":"2026-03-21T15:18:04.210396844Z"} +2026/03/21 15:18:09 [log_collector] {"stage_name":"log_collector","events_processed":22637,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4527.4,"last_update":"2026-03-21T15:18:04.068681966Z"} +2026/03/21 15:18:09 [metric_collector] {"stage_name":"metric_collector","events_processed":14353,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2870.6,"last_update":"2026-03-21T15:18:04.068559882Z"} +2026/03/21 15:18:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:18:04.077965649Z"} +2026/03/21 15:18:09 ───────────────────────────────────────────────── +2026/03/21 15:18:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:18:14 [log_collector] {"stage_name":"log_collector","events_processed":22640,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4528,"last_update":"2026-03-21T15:18:09.068946566Z"} +2026/03/21 15:18:14 [metric_collector] {"stage_name":"metric_collector","events_processed":14358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2871.6,"last_update":"2026-03-21T15:18:09.068942618Z"} +2026/03/21 15:18:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:18:09.074477219Z"} +2026/03/21 15:18:14 [detection_layer] {"stage_name":"detection_layer","events_processed":478,"events_dropped":0,"avg_latency_ms":19.800216384744207,"throughput_eps":0,"last_update":"2026-03-21T15:18:09.210683836Z"} +2026/03/21 15:18:14 [transform_engine] {"stage_name":"transform_engine","events_processed":478,"events_dropped":0,"avg_latency_ms":259.19046345487095,"throughput_eps":0,"last_update":"2026-03-21T15:18:09.210690449Z"} +2026/03/21 15:18:14 ───────────────────────────────────────────────── +2026/03/21 15:18:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:18:19 [log_collector] {"stage_name":"log_collector","events_processed":22640,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4528,"last_update":"2026-03-21T15:18:14.068298139Z"} +2026/03/21 15:18:19 [metric_collector] {"stage_name":"metric_collector","events_processed":14364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2872.8,"last_update":"2026-03-21T15:18:14.068571502Z"} +2026/03/21 15:18:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:18:14.074691255Z"} +2026/03/21 15:18:19 [detection_layer] {"stage_name":"detection_layer","events_processed":478,"events_dropped":0,"avg_latency_ms":19.800216384744207,"throughput_eps":0,"last_update":"2026-03-21T15:18:14.20996306Z"} +2026/03/21 15:18:19 [transform_engine] {"stage_name":"transform_engine","events_processed":478,"events_dropped":0,"avg_latency_ms":259.19046345487095,"throughput_eps":0,"last_update":"2026-03-21T15:18:14.209980323Z"} +2026/03/21 15:18:19 ───────────────────────────────────────────────── +2026/03/21 15:18:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:18:24 [log_collector] {"stage_name":"log_collector","events_processed":22651,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4530.2,"last_update":"2026-03-21T15:18:19.068884106Z"} +2026/03/21 15:18:24 [metric_collector] {"stage_name":"metric_collector","events_processed":14369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2873.8,"last_update":"2026-03-21T15:18:19.069051618Z"} +2026/03/21 15:18:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5750,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:18:19.077737606Z"} +2026/03/21 15:18:24 [detection_layer] {"stage_name":"detection_layer","events_processed":478,"events_dropped":0,"avg_latency_ms":19.800216384744207,"throughput_eps":0,"last_update":"2026-03-21T15:18:19.21008483Z"} +2026/03/21 15:18:24 [transform_engine] {"stage_name":"transform_engine","events_processed":479,"events_dropped":0,"avg_latency_ms":241.4268005638968,"throughput_eps":0,"last_update":"2026-03-21T15:18:19.380476015Z"} +2026/03/21 15:18:24 ───────────────────────────────────────────────── +2026/03/21 15:18:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:18:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5752,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:18:24.074881381Z"} +2026/03/21 15:18:29 [detection_layer] {"stage_name":"detection_layer","events_processed":479,"events_dropped":0,"avg_latency_ms":19.370763707795366,"throughput_eps":0,"last_update":"2026-03-21T15:18:24.210225306Z"} +2026/03/21 15:18:29 [transform_engine] {"stage_name":"transform_engine","events_processed":479,"events_dropped":0,"avg_latency_ms":241.4268005638968,"throughput_eps":0,"last_update":"2026-03-21T15:18:24.210337009Z"} +2026/03/21 15:18:29 [log_collector] {"stage_name":"log_collector","events_processed":22665,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4533,"last_update":"2026-03-21T15:18:24.068613004Z"} +2026/03/21 15:18:29 [metric_collector] {"stage_name":"metric_collector","events_processed":14374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2874.8,"last_update":"2026-03-21T15:18:24.068807748Z"} +2026/03/21 15:18:29 ───────────────────────────────────────────────── +2026/03/21 15:18:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:18:34 [metric_collector] {"stage_name":"metric_collector","events_processed":14379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2875.8,"last_update":"2026-03-21T15:18:29.068685274Z"} +2026/03/21 15:18:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:18:29.075178562Z"} +2026/03/21 15:18:34 [detection_layer] {"stage_name":"detection_layer","events_processed":479,"events_dropped":0,"avg_latency_ms":19.370763707795366,"throughput_eps":0,"last_update":"2026-03-21T15:18:29.210412094Z"} +2026/03/21 15:18:34 [transform_engine] {"stage_name":"transform_engine","events_processed":479,"events_dropped":0,"avg_latency_ms":241.4268005638968,"throughput_eps":0,"last_update":"2026-03-21T15:18:29.210421884Z"} +2026/03/21 15:18:34 [log_collector] {"stage_name":"log_collector","events_processed":22680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4536,"last_update":"2026-03-21T15:18:29.068079544Z"} +2026/03/21 15:18:34 ───────────────────────────────────────────────── +2026/03/21 15:18:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:18:39 [detection_layer] {"stage_name":"detection_layer","events_processed":479,"events_dropped":0,"avg_latency_ms":19.370763707795366,"throughput_eps":0,"last_update":"2026-03-21T15:18:34.210648319Z"} +2026/03/21 15:18:39 [transform_engine] {"stage_name":"transform_engine","events_processed":479,"events_dropped":0,"avg_latency_ms":241.4268005638968,"throughput_eps":0,"last_update":"2026-03-21T15:18:34.210659269Z"} +2026/03/21 15:18:39 [log_collector] {"stage_name":"log_collector","events_processed":22681,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4536.2,"last_update":"2026-03-21T15:18:34.068538735Z"} +2026/03/21 15:18:39 [metric_collector] {"stage_name":"metric_collector","events_processed":14384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2876.8,"last_update":"2026-03-21T15:18:34.068813972Z"} +2026/03/21 15:18:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:18:34.07841887Z"} +2026/03/21 15:18:39 ───────────────────────────────────────────────── +2026/03/21 15:18:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:18:44 [log_collector] {"stage_name":"log_collector","events_processed":22681,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4536.2,"last_update":"2026-03-21T15:18:39.068233874Z"} +2026/03/21 15:18:44 [metric_collector] {"stage_name":"metric_collector","events_processed":14389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2877.8,"last_update":"2026-03-21T15:18:39.068622548Z"} +2026/03/21 15:18:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5758,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:18:39.07796322Z"} +2026/03/21 15:18:44 [detection_layer] {"stage_name":"detection_layer","events_processed":479,"events_dropped":0,"avg_latency_ms":19.370763707795366,"throughput_eps":0,"last_update":"2026-03-21T15:18:39.210344129Z"} +2026/03/21 15:18:44 [transform_engine] {"stage_name":"transform_engine","events_processed":479,"events_dropped":0,"avg_latency_ms":241.4268005638968,"throughput_eps":0,"last_update":"2026-03-21T15:18:39.210388292Z"} +2026/03/21 15:18:44 ───────────────────────────────────────────────── +2026/03/21 15:18:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:18:49 [log_collector] {"stage_name":"log_collector","events_processed":22681,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4536.2,"last_update":"2026-03-21T15:18:44.068157862Z"} +2026/03/21 15:18:49 [metric_collector] {"stage_name":"metric_collector","events_processed":14394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2878.8,"last_update":"2026-03-21T15:18:44.068808398Z"} +2026/03/21 15:18:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:18:44.077914851Z"} +2026/03/21 15:18:49 [detection_layer] {"stage_name":"detection_layer","events_processed":479,"events_dropped":0,"avg_latency_ms":19.370763707795366,"throughput_eps":0,"last_update":"2026-03-21T15:18:44.210291231Z"} +2026/03/21 15:18:49 [transform_engine] {"stage_name":"transform_engine","events_processed":479,"events_dropped":0,"avg_latency_ms":241.4268005638968,"throughput_eps":0,"last_update":"2026-03-21T15:18:44.210302483Z"} +2026/03/21 15:18:49 ───────────────────────────────────────────────── +2026/03/21 15:18:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:18:54 [metric_collector] {"stage_name":"metric_collector","events_processed":14398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2879.6,"last_update":"2026-03-21T15:18:49.068316502Z"} +2026/03/21 15:18:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:18:49.077585896Z"} +2026/03/21 15:18:54 [detection_layer] {"stage_name":"detection_layer","events_processed":479,"events_dropped":0,"avg_latency_ms":19.370763707795366,"throughput_eps":0,"last_update":"2026-03-21T15:18:49.209894978Z"} +2026/03/21 15:18:54 [transform_engine] {"stage_name":"transform_engine","events_processed":480,"events_dropped":0,"avg_latency_ms":216.85936085111743,"throughput_eps":0,"last_update":"2026-03-21T15:18:49.328502715Z"} +2026/03/21 15:18:54 [log_collector] {"stage_name":"log_collector","events_processed":22681,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4536.2,"last_update":"2026-03-21T15:18:49.068282597Z"} +2026/03/21 15:18:54 ───────────────────────────────────────────────── +2026/03/21 15:18:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:18:59 [transform_engine] {"stage_name":"transform_engine","events_processed":480,"events_dropped":0,"avg_latency_ms":216.85936085111743,"throughput_eps":0,"last_update":"2026-03-21T15:18:54.210601117Z"} +2026/03/21 15:18:59 [log_collector] {"stage_name":"log_collector","events_processed":22681,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4536.2,"last_update":"2026-03-21T15:18:54.068069756Z"} +2026/03/21 15:18:59 [metric_collector] {"stage_name":"metric_collector","events_processed":14404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2880.8,"last_update":"2026-03-21T15:18:54.068758425Z"} +2026/03/21 15:18:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:18:54.07718727Z"} +2026/03/21 15:18:59 [detection_layer] {"stage_name":"detection_layer","events_processed":480,"events_dropped":0,"avg_latency_ms":20.136668766236294,"throughput_eps":0,"last_update":"2026-03-21T15:18:54.210579667Z"} +2026/03/21 15:18:59 ───────────────────────────────────────────────── +2026/03/21 15:19:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:19:04 [log_collector] {"stage_name":"log_collector","events_processed":22681,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4536.2,"last_update":"2026-03-21T15:18:59.068725219Z"} +2026/03/21 15:19:04 [metric_collector] {"stage_name":"metric_collector","events_processed":14409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2881.8,"last_update":"2026-03-21T15:18:59.069436512Z"} +2026/03/21 15:19:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5766,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:18:59.078225657Z"} +2026/03/21 15:19:04 [detection_layer] {"stage_name":"detection_layer","events_processed":480,"events_dropped":0,"avg_latency_ms":20.136668766236294,"throughput_eps":0,"last_update":"2026-03-21T15:18:59.210721436Z"} +2026/03/21 15:19:04 [transform_engine] {"stage_name":"transform_engine","events_processed":480,"events_dropped":0,"avg_latency_ms":216.85936085111743,"throughput_eps":0,"last_update":"2026-03-21T15:18:59.210609401Z"} +2026/03/21 15:19:04 ───────────────────────────────────────────────── +2026/03/21 15:19:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:19:09 [transform_engine] {"stage_name":"transform_engine","events_processed":480,"events_dropped":0,"avg_latency_ms":216.85936085111743,"throughput_eps":0,"last_update":"2026-03-21T15:19:04.210473379Z"} +2026/03/21 15:19:09 [log_collector] {"stage_name":"log_collector","events_processed":22681,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4536.2,"last_update":"2026-03-21T15:19:04.068610368Z"} +2026/03/21 15:19:09 [metric_collector] {"stage_name":"metric_collector","events_processed":14414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2882.8,"last_update":"2026-03-21T15:19:04.068562576Z"} +2026/03/21 15:19:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5768,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:19:04.078204094Z"} +2026/03/21 15:19:09 [detection_layer] {"stage_name":"detection_layer","events_processed":480,"events_dropped":0,"avg_latency_ms":20.136668766236294,"throughput_eps":0,"last_update":"2026-03-21T15:19:04.210488038Z"} +2026/03/21 15:19:09 ───────────────────────────────────────────────── +2026/03/21 15:19:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:19:14 [log_collector] {"stage_name":"log_collector","events_processed":22681,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4536.2,"last_update":"2026-03-21T15:19:09.068133026Z"} +2026/03/21 15:19:14 [metric_collector] {"stage_name":"metric_collector","events_processed":14419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2883.8,"last_update":"2026-03-21T15:19:09.06876735Z"} +2026/03/21 15:19:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5770,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:19:09.077518373Z"} +2026/03/21 15:19:14 [detection_layer] {"stage_name":"detection_layer","events_processed":480,"events_dropped":0,"avg_latency_ms":20.136668766236294,"throughput_eps":0,"last_update":"2026-03-21T15:19:09.210901131Z"} +2026/03/21 15:19:14 [transform_engine] {"stage_name":"transform_engine","events_processed":480,"events_dropped":0,"avg_latency_ms":216.85936085111743,"throughput_eps":0,"last_update":"2026-03-21T15:19:09.209692356Z"} +2026/03/21 15:19:14 ───────────────────────────────────────────────── +2026/03/21 15:19:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:19:19 [log_collector] {"stage_name":"log_collector","events_processed":22681,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4536.2,"last_update":"2026-03-21T15:19:14.068820678Z"} +2026/03/21 15:19:19 [metric_collector] {"stage_name":"metric_collector","events_processed":14424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2884.8,"last_update":"2026-03-21T15:19:14.069334863Z"} +2026/03/21 15:19:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:19:14.078014688Z"} +2026/03/21 15:19:19 [detection_layer] {"stage_name":"detection_layer","events_processed":480,"events_dropped":0,"avg_latency_ms":20.136668766236294,"throughput_eps":0,"last_update":"2026-03-21T15:19:14.210334642Z"} +2026/03/21 15:19:19 [transform_engine] {"stage_name":"transform_engine","events_processed":480,"events_dropped":0,"avg_latency_ms":216.85936085111743,"throughput_eps":0,"last_update":"2026-03-21T15:19:14.210376421Z"} +2026/03/21 15:19:19 ───────────────────────────────────────────────── +2026/03/21 15:19:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:19:24 [transform_engine] {"stage_name":"transform_engine","events_processed":481,"events_dropped":0,"avg_latency_ms":188.41999908089394,"throughput_eps":0,"last_update":"2026-03-21T15:19:19.284465872Z"} +2026/03/21 15:19:24 [log_collector] {"stage_name":"log_collector","events_processed":22681,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4536.2,"last_update":"2026-03-21T15:19:19.068421159Z"} +2026/03/21 15:19:24 [metric_collector] {"stage_name":"metric_collector","events_processed":14429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2885.8,"last_update":"2026-03-21T15:19:19.068959019Z"} +2026/03/21 15:19:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:19:19.087751526Z"} +2026/03/21 15:19:24 [detection_layer] {"stage_name":"detection_layer","events_processed":480,"events_dropped":0,"avg_latency_ms":20.136668766236294,"throughput_eps":0,"last_update":"2026-03-21T15:19:19.210945147Z"} +2026/03/21 15:19:24 ───────────────────────────────────────────────── +2026/03/21 15:19:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:19:29 [log_collector] {"stage_name":"log_collector","events_processed":22681,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4536.2,"last_update":"2026-03-21T15:19:24.068763919Z"} +2026/03/21 15:19:29 [metric_collector] {"stage_name":"metric_collector","events_processed":14434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2886.8,"last_update":"2026-03-21T15:19:24.068986415Z"} +2026/03/21 15:19:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:19:24.077842118Z"} +2026/03/21 15:19:29 [detection_layer] {"stage_name":"detection_layer","events_processed":481,"events_dropped":0,"avg_latency_ms":20.470165812989038,"throughput_eps":0,"last_update":"2026-03-21T15:19:24.210249067Z"} +2026/03/21 15:19:29 [transform_engine] {"stage_name":"transform_engine","events_processed":481,"events_dropped":0,"avg_latency_ms":188.41999908089394,"throughput_eps":0,"last_update":"2026-03-21T15:19:24.210262744Z"} +2026/03/21 15:19:29 ───────────────────────────────────────────────── +Saved state: 17 clusters, 22682 messages, reason: none +2026/03/21 15:19:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:19:34 [transform_engine] {"stage_name":"transform_engine","events_processed":481,"events_dropped":0,"avg_latency_ms":188.41999908089394,"throughput_eps":0,"last_update":"2026-03-21T15:19:29.21047643Z"} +2026/03/21 15:19:34 [log_collector] {"stage_name":"log_collector","events_processed":22681,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4536.2,"last_update":"2026-03-21T15:19:29.06879715Z"} +2026/03/21 15:19:34 [metric_collector] {"stage_name":"metric_collector","events_processed":14439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2887.8,"last_update":"2026-03-21T15:19:29.068983386Z"} +2026/03/21 15:19:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:19:29.078208016Z"} +2026/03/21 15:19:34 [detection_layer] {"stage_name":"detection_layer","events_processed":481,"events_dropped":0,"avg_latency_ms":20.470165812989038,"throughput_eps":0,"last_update":"2026-03-21T15:19:29.21046607Z"} +2026/03/21 15:19:34 ───────────────────────────────────────────────── +2026/03/21 15:19:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:19:39 [metric_collector] {"stage_name":"metric_collector","events_processed":14444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2888.8,"last_update":"2026-03-21T15:19:34.068808451Z"} +2026/03/21 15:19:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5780,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:19:34.074873789Z"} +2026/03/21 15:19:39 [detection_layer] {"stage_name":"detection_layer","events_processed":481,"events_dropped":0,"avg_latency_ms":20.470165812989038,"throughput_eps":0,"last_update":"2026-03-21T15:19:34.21044025Z"} +2026/03/21 15:19:39 [transform_engine] {"stage_name":"transform_engine","events_processed":481,"events_dropped":0,"avg_latency_ms":188.41999908089394,"throughput_eps":0,"last_update":"2026-03-21T15:19:34.210453005Z"} +2026/03/21 15:19:39 [log_collector] {"stage_name":"log_collector","events_processed":22686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4537.2,"last_update":"2026-03-21T15:19:34.068565396Z"} +2026/03/21 15:19:39 ───────────────────────────────────────────────── +2026/03/21 15:19:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:19:44 [log_collector] {"stage_name":"log_collector","events_processed":22686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4537.2,"last_update":"2026-03-21T15:19:39.06863037Z"} +2026/03/21 15:19:44 [metric_collector] {"stage_name":"metric_collector","events_processed":14449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2889.8,"last_update":"2026-03-21T15:19:39.068770028Z"} +2026/03/21 15:19:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5782,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:19:39.078861467Z"} +2026/03/21 15:19:44 [detection_layer] {"stage_name":"detection_layer","events_processed":481,"events_dropped":0,"avg_latency_ms":20.470165812989038,"throughput_eps":0,"last_update":"2026-03-21T15:19:39.209946845Z"} +2026/03/21 15:19:44 [transform_engine] {"stage_name":"transform_engine","events_processed":481,"events_dropped":0,"avg_latency_ms":188.41999908089394,"throughput_eps":0,"last_update":"2026-03-21T15:19:39.209957185Z"} +2026/03/21 15:19:44 ───────────────────────────────────────────────── +2026/03/21 15:19:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:19:49 [detection_layer] {"stage_name":"detection_layer","events_processed":481,"events_dropped":0,"avg_latency_ms":20.470165812989038,"throughput_eps":0,"last_update":"2026-03-21T15:19:44.210805371Z"} +2026/03/21 15:19:49 [transform_engine] {"stage_name":"transform_engine","events_processed":481,"events_dropped":0,"avg_latency_ms":188.41999908089394,"throughput_eps":0,"last_update":"2026-03-21T15:19:44.209704903Z"} +2026/03/21 15:19:49 [log_collector] {"stage_name":"log_collector","events_processed":22686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4537.2,"last_update":"2026-03-21T15:19:44.069157501Z"} +2026/03/21 15:19:49 [metric_collector] {"stage_name":"metric_collector","events_processed":14454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2890.8,"last_update":"2026-03-21T15:19:44.06913656Z"} +2026/03/21 15:19:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:19:44.075576867Z"} +2026/03/21 15:19:49 ───────────────────────────────────────────────── +2026/03/21 15:19:53 [ANOMALY] time=2026-03-21T15:19:53Z score=0.9408 method=SEAD details=MAD!:w=0.26,s=0.94 RRCF-fast!:w=0.17,s=0.96 RRCF-mid!:w=0.18,s=0.99 RRCF-slow!:w=0.15,s=0.89 COPOD!:w=0.23,s=0.93 +2026/03/21 15:19:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:19:54 [detection_layer] {"stage_name":"detection_layer","events_processed":481,"events_dropped":0,"avg_latency_ms":20.470165812989038,"throughput_eps":0,"last_update":"2026-03-21T15:19:49.211470718Z"} +2026/03/21 15:19:54 [transform_engine] {"stage_name":"transform_engine","events_processed":482,"events_dropped":0,"avg_latency_ms":933.2174074647152,"throughput_eps":0,"last_update":"2026-03-21T15:19:53.122989948Z"} +2026/03/21 15:19:54 [log_collector] {"stage_name":"log_collector","events_processed":22686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4537.2,"last_update":"2026-03-21T15:19:49.068493702Z"} +2026/03/21 15:19:54 [metric_collector] {"stage_name":"metric_collector","events_processed":14459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2891.8,"last_update":"2026-03-21T15:19:49.068806701Z"} +2026/03/21 15:19:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:19:49.077463864Z"} +2026/03/21 15:19:54 ───────────────────────────────────────────────── +2026/03/21 15:19:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:19:59 [metric_collector] {"stage_name":"metric_collector","events_processed":14464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2892.8,"last_update":"2026-03-21T15:19:54.069278179Z"} +2026/03/21 15:19:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:19:54.083790547Z"} +2026/03/21 15:19:59 [detection_layer] {"stage_name":"detection_layer","events_processed":482,"events_dropped":0,"avg_latency_ms":18.177188250391232,"throughput_eps":0,"last_update":"2026-03-21T15:19:54.209974947Z"} +2026/03/21 15:19:59 [transform_engine] {"stage_name":"transform_engine","events_processed":482,"events_dropped":0,"avg_latency_ms":933.2174074647152,"throughput_eps":0,"last_update":"2026-03-21T15:19:54.209985497Z"} +2026/03/21 15:19:59 [log_collector] {"stage_name":"log_collector","events_processed":22686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4537.2,"last_update":"2026-03-21T15:19:54.068973395Z"} +2026/03/21 15:19:59 ───────────────────────────────────────────────── +2026/03/21 15:20:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:20:04 [metric_collector] {"stage_name":"metric_collector","events_processed":14469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2893.8,"last_update":"2026-03-21T15:19:59.068846178Z"} +2026/03/21 15:20:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:19:59.07563967Z"} +2026/03/21 15:20:04 [detection_layer] {"stage_name":"detection_layer","events_processed":482,"events_dropped":0,"avg_latency_ms":18.177188250391232,"throughput_eps":0,"last_update":"2026-03-21T15:19:59.20991606Z"} +2026/03/21 15:20:04 [transform_engine] {"stage_name":"transform_engine","events_processed":482,"events_dropped":0,"avg_latency_ms":933.2174074647152,"throughput_eps":0,"last_update":"2026-03-21T15:19:59.209928985Z"} +2026/03/21 15:20:04 [log_collector] {"stage_name":"log_collector","events_processed":22686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4537.2,"last_update":"2026-03-21T15:19:59.068865755Z"} +2026/03/21 15:20:04 ───────────────────────────────────────────────── +2026/03/21 15:20:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:20:09 [detection_layer] {"stage_name":"detection_layer","events_processed":482,"events_dropped":0,"avg_latency_ms":18.177188250391232,"throughput_eps":0,"last_update":"2026-03-21T15:20:04.210787237Z"} +2026/03/21 15:20:09 [transform_engine] {"stage_name":"transform_engine","events_processed":482,"events_dropped":0,"avg_latency_ms":933.2174074647152,"throughput_eps":0,"last_update":"2026-03-21T15:20:04.209691849Z"} +2026/03/21 15:20:09 [log_collector] {"stage_name":"log_collector","events_processed":22686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4537.2,"last_update":"2026-03-21T15:20:04.068609091Z"} +2026/03/21 15:20:09 [metric_collector] {"stage_name":"metric_collector","events_processed":14474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2894.8,"last_update":"2026-03-21T15:20:04.069002675Z"} +2026/03/21 15:20:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:20:04.084479119Z"} +2026/03/21 15:20:09 ───────────────────────────────────────────────── +2026/03/21 15:20:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:20:14 [transform_engine] {"stage_name":"transform_engine","events_processed":482,"events_dropped":0,"avg_latency_ms":933.2174074647152,"throughput_eps":0,"last_update":"2026-03-21T15:20:09.210181524Z"} +2026/03/21 15:20:14 [log_collector] {"stage_name":"log_collector","events_processed":22686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4537.2,"last_update":"2026-03-21T15:20:09.068578471Z"} +2026/03/21 15:20:14 [metric_collector] {"stage_name":"metric_collector","events_processed":14479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2895.8,"last_update":"2026-03-21T15:20:09.068811658Z"} +2026/03/21 15:20:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:20:09.076853641Z"} +2026/03/21 15:20:14 [detection_layer] {"stage_name":"detection_layer","events_processed":482,"events_dropped":0,"avg_latency_ms":18.177188250391232,"throughput_eps":0,"last_update":"2026-03-21T15:20:09.210170133Z"} +2026/03/21 15:20:14 ───────────────────────────────────────────────── +2026/03/21 15:20:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:20:19 [detection_layer] {"stage_name":"detection_layer","events_processed":482,"events_dropped":0,"avg_latency_ms":18.177188250391232,"throughput_eps":0,"last_update":"2026-03-21T15:20:14.21086361Z"} +2026/03/21 15:20:19 [transform_engine] {"stage_name":"transform_engine","events_processed":482,"events_dropped":0,"avg_latency_ms":933.2174074647152,"throughput_eps":0,"last_update":"2026-03-21T15:20:14.209732674Z"} +2026/03/21 15:20:19 [log_collector] {"stage_name":"log_collector","events_processed":22689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4537.8,"last_update":"2026-03-21T15:20:14.068911057Z"} +2026/03/21 15:20:19 [metric_collector] {"stage_name":"metric_collector","events_processed":14484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2896.8,"last_update":"2026-03-21T15:20:14.069085651Z"} +2026/03/21 15:20:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5796,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:20:14.075615278Z"} +2026/03/21 15:20:19 ───────────────────────────────────────────────── +2026/03/21 15:20:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:20:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:20:19.078535231Z"} +2026/03/21 15:20:24 [detection_layer] {"stage_name":"detection_layer","events_processed":482,"events_dropped":0,"avg_latency_ms":18.177188250391232,"throughput_eps":0,"last_update":"2026-03-21T15:20:19.209881078Z"} +2026/03/21 15:20:24 [transform_engine] {"stage_name":"transform_engine","events_processed":482,"events_dropped":0,"avg_latency_ms":933.2174074647152,"throughput_eps":0,"last_update":"2026-03-21T15:20:19.209767149Z"} +2026/03/21 15:20:24 [log_collector] {"stage_name":"log_collector","events_processed":22697,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4539.4,"last_update":"2026-03-21T15:20:19.068673421Z"} +2026/03/21 15:20:24 [metric_collector] {"stage_name":"metric_collector","events_processed":14489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2897.8,"last_update":"2026-03-21T15:20:19.069017511Z"} +2026/03/21 15:20:24 ───────────────────────────────────────────────── +2026/03/21 15:20:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:20:29 [log_collector] {"stage_name":"log_collector","events_processed":22764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4552.8,"last_update":"2026-03-21T15:20:24.068067282Z"} +2026/03/21 15:20:29 [metric_collector] {"stage_name":"metric_collector","events_processed":14494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2898.8,"last_update":"2026-03-21T15:20:24.068433233Z"} +2026/03/21 15:20:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5800,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:20:24.076066795Z"} +2026/03/21 15:20:29 [detection_layer] {"stage_name":"detection_layer","events_processed":483,"events_dropped":0,"avg_latency_ms":17.835185000312986,"throughput_eps":0,"last_update":"2026-03-21T15:20:24.210002523Z"} +2026/03/21 15:20:29 [transform_engine] {"stage_name":"transform_engine","events_processed":483,"events_dropped":0,"avg_latency_ms":770.0140183717722,"throughput_eps":0,"last_update":"2026-03-21T15:20:24.210011259Z"} +2026/03/21 15:20:29 ───────────────────────────────────────────────── +Saved state: 17 clusters, 23061 messages, reason: none +2026/03/21 15:20:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:20:34 [metric_collector] {"stage_name":"metric_collector","events_processed":14499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2899.8,"last_update":"2026-03-21T15:20:29.069174325Z"} +2026/03/21 15:20:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5802,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:20:29.079273831Z"} +2026/03/21 15:20:34 [detection_layer] {"stage_name":"detection_layer","events_processed":483,"events_dropped":0,"avg_latency_ms":17.835185000312986,"throughput_eps":0,"last_update":"2026-03-21T15:20:29.210590061Z"} +2026/03/21 15:20:34 [transform_engine] {"stage_name":"transform_engine","events_processed":483,"events_dropped":0,"avg_latency_ms":770.0140183717722,"throughput_eps":0,"last_update":"2026-03-21T15:20:29.210605691Z"} +2026/03/21 15:20:34 [log_collector] {"stage_name":"log_collector","events_processed":22964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4592.8,"last_update":"2026-03-21T15:20:29.068985705Z"} +2026/03/21 15:20:34 ───────────────────────────────────────────────── +2026/03/21 15:20:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:20:39 [detection_layer] {"stage_name":"detection_layer","events_processed":483,"events_dropped":0,"avg_latency_ms":17.835185000312986,"throughput_eps":0,"last_update":"2026-03-21T15:20:34.210590776Z"} +2026/03/21 15:20:39 [transform_engine] {"stage_name":"transform_engine","events_processed":483,"events_dropped":0,"avg_latency_ms":770.0140183717722,"throughput_eps":0,"last_update":"2026-03-21T15:20:34.210554727Z"} +2026/03/21 15:20:39 [log_collector] {"stage_name":"log_collector","events_processed":23064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4612.8,"last_update":"2026-03-21T15:20:34.06888296Z"} +2026/03/21 15:20:39 [metric_collector] {"stage_name":"metric_collector","events_processed":14504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2900.8,"last_update":"2026-03-21T15:20:34.06909138Z"} +2026/03/21 15:20:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:20:34.078842317Z"} +2026/03/21 15:20:39 ───────────────────────────────────────────────── +2026/03/21 15:20:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:20:44 [log_collector] {"stage_name":"log_collector","events_processed":23064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4612.8,"last_update":"2026-03-21T15:20:39.069157784Z"} +2026/03/21 15:20:44 [metric_collector] {"stage_name":"metric_collector","events_processed":14509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2901.8,"last_update":"2026-03-21T15:20:39.069332178Z"} +2026/03/21 15:20:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:20:39.078764766Z"} +2026/03/21 15:20:44 [detection_layer] {"stage_name":"detection_layer","events_processed":483,"events_dropped":0,"avg_latency_ms":17.835185000312986,"throughput_eps":0,"last_update":"2026-03-21T15:20:39.210159226Z"} +2026/03/21 15:20:44 [transform_engine] {"stage_name":"transform_engine","events_processed":483,"events_dropped":0,"avg_latency_ms":770.0140183717722,"throughput_eps":0,"last_update":"2026-03-21T15:20:39.210273856Z"} +2026/03/21 15:20:44 ───────────────────────────────────────────────── +2026/03/21 15:20:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:20:49 [log_collector] {"stage_name":"log_collector","events_processed":23064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4612.8,"last_update":"2026-03-21T15:20:44.068785516Z"} +2026/03/21 15:20:49 [metric_collector] {"stage_name":"metric_collector","events_processed":14514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2902.8,"last_update":"2026-03-21T15:20:44.069198838Z"} +2026/03/21 15:20:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:20:44.0780434Z"} +2026/03/21 15:20:49 [detection_layer] {"stage_name":"detection_layer","events_processed":483,"events_dropped":0,"avg_latency_ms":17.835185000312986,"throughput_eps":0,"last_update":"2026-03-21T15:20:44.210553537Z"} +2026/03/21 15:20:49 [transform_engine] {"stage_name":"transform_engine","events_processed":483,"events_dropped":0,"avg_latency_ms":770.0140183717722,"throughput_eps":0,"last_update":"2026-03-21T15:20:44.210426934Z"} +2026/03/21 15:20:49 ───────────────────────────────────────────────── +2026/03/21 15:20:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:20:54 [transform_engine] {"stage_name":"transform_engine","events_processed":484,"events_dropped":0,"avg_latency_ms":639.2151750974178,"throughput_eps":0,"last_update":"2026-03-21T15:20:49.325766301Z"} +2026/03/21 15:20:54 [log_collector] {"stage_name":"log_collector","events_processed":23064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4612.8,"last_update":"2026-03-21T15:20:49.068144718Z"} +2026/03/21 15:20:54 [metric_collector] {"stage_name":"metric_collector","events_processed":14519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2903.8,"last_update":"2026-03-21T15:20:49.068333559Z"} +2026/03/21 15:20:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:20:49.077552929Z"} +2026/03/21 15:20:54 [detection_layer] {"stage_name":"detection_layer","events_processed":483,"events_dropped":0,"avg_latency_ms":17.835185000312986,"throughput_eps":0,"last_update":"2026-03-21T15:20:49.210872577Z"} +2026/03/21 15:20:54 ───────────────────────────────────────────────── +2026/03/21 15:20:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:20:59 [log_collector] {"stage_name":"log_collector","events_processed":23064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4612.8,"last_update":"2026-03-21T15:20:54.068555784Z"} +2026/03/21 15:20:59 [metric_collector] {"stage_name":"metric_collector","events_processed":14524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2904.8,"last_update":"2026-03-21T15:20:54.068918208Z"} +2026/03/21 15:20:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5812,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:20:54.0798044Z"} +2026/03/21 15:20:59 [detection_layer] {"stage_name":"detection_layer","events_processed":484,"events_dropped":0,"avg_latency_ms":18.27248020025039,"throughput_eps":0,"last_update":"2026-03-21T15:20:54.210047365Z"} +2026/03/21 15:20:59 [transform_engine] {"stage_name":"transform_engine","events_processed":484,"events_dropped":0,"avg_latency_ms":639.2151750974178,"throughput_eps":0,"last_update":"2026-03-21T15:20:54.210060099Z"} +2026/03/21 15:20:59 ───────────────────────────────────────────────── +2026/03/21 15:21:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:21:04 [log_collector] {"stage_name":"log_collector","events_processed":23064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4612.8,"last_update":"2026-03-21T15:20:59.069044783Z"} +2026/03/21 15:21:04 [metric_collector] {"stage_name":"metric_collector","events_processed":14529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2905.8,"last_update":"2026-03-21T15:20:59.069204488Z"} +2026/03/21 15:21:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:20:59.078762937Z"} +2026/03/21 15:21:04 [detection_layer] {"stage_name":"detection_layer","events_processed":484,"events_dropped":0,"avg_latency_ms":18.27248020025039,"throughput_eps":0,"last_update":"2026-03-21T15:20:59.210162516Z"} +2026/03/21 15:21:04 [transform_engine] {"stage_name":"transform_engine","events_processed":484,"events_dropped":0,"avg_latency_ms":639.2151750974178,"throughput_eps":0,"last_update":"2026-03-21T15:20:59.210177215Z"} +2026/03/21 15:21:04 ───────────────────────────────────────────────── +2026/03/21 15:21:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:21:09 [log_collector] {"stage_name":"log_collector","events_processed":23064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4612.8,"last_update":"2026-03-21T15:21:04.069044734Z"} +2026/03/21 15:21:09 [metric_collector] {"stage_name":"metric_collector","events_processed":14534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2906.8,"last_update":"2026-03-21T15:21:04.069414663Z"} +2026/03/21 15:21:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5816,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:21:04.07826245Z"} +2026/03/21 15:21:09 [detection_layer] {"stage_name":"detection_layer","events_processed":484,"events_dropped":0,"avg_latency_ms":18.27248020025039,"throughput_eps":0,"last_update":"2026-03-21T15:21:04.210498913Z"} +2026/03/21 15:21:09 [transform_engine] {"stage_name":"transform_engine","events_processed":484,"events_dropped":0,"avg_latency_ms":639.2151750974178,"throughput_eps":0,"last_update":"2026-03-21T15:21:04.210510796Z"} +2026/03/21 15:21:09 ───────────────────────────────────────────────── +2026/03/21 15:21:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:21:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5818,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:21:09.07721205Z"} +2026/03/21 15:21:14 [detection_layer] {"stage_name":"detection_layer","events_processed":484,"events_dropped":0,"avg_latency_ms":18.27248020025039,"throughput_eps":0,"last_update":"2026-03-21T15:21:09.210554041Z"} +2026/03/21 15:21:14 [transform_engine] {"stage_name":"transform_engine","events_processed":484,"events_dropped":0,"avg_latency_ms":639.2151750974178,"throughput_eps":0,"last_update":"2026-03-21T15:21:09.210540045Z"} +2026/03/21 15:21:14 [log_collector] {"stage_name":"log_collector","events_processed":23064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4612.8,"last_update":"2026-03-21T15:21:09.068585166Z"} +2026/03/21 15:21:14 [metric_collector] {"stage_name":"metric_collector","events_processed":14539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2907.8,"last_update":"2026-03-21T15:21:09.068847449Z"} +2026/03/21 15:21:14 ───────────────────────────────────────────────── +2026/03/21 15:21:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:21:19 [log_collector] {"stage_name":"log_collector","events_processed":23064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4612.8,"last_update":"2026-03-21T15:21:14.068581393Z"} +2026/03/21 15:21:19 [metric_collector] {"stage_name":"metric_collector","events_processed":14544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2908.8,"last_update":"2026-03-21T15:21:14.069202794Z"} +2026/03/21 15:21:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5820,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:21:14.081007666Z"} +2026/03/21 15:21:19 [detection_layer] {"stage_name":"detection_layer","events_processed":484,"events_dropped":0,"avg_latency_ms":18.27248020025039,"throughput_eps":0,"last_update":"2026-03-21T15:21:14.210398538Z"} +2026/03/21 15:21:19 [transform_engine] {"stage_name":"transform_engine","events_processed":484,"events_dropped":0,"avg_latency_ms":639.2151750974178,"throughput_eps":0,"last_update":"2026-03-21T15:21:14.210409499Z"} +2026/03/21 15:21:19 ───────────────────────────────────────────────── +2026/03/21 15:21:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:21:24 [detection_layer] {"stage_name":"detection_layer","events_processed":484,"events_dropped":0,"avg_latency_ms":18.27248020025039,"throughput_eps":0,"last_update":"2026-03-21T15:21:19.210622724Z"} +2026/03/21 15:21:24 [transform_engine] {"stage_name":"transform_engine","events_processed":485,"events_dropped":0,"avg_latency_ms":529.8615256779343,"throughput_eps":0,"last_update":"2026-03-21T15:21:19.3030845Z"} +2026/03/21 15:21:24 [log_collector] {"stage_name":"log_collector","events_processed":23064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4612.8,"last_update":"2026-03-21T15:21:19.06831562Z"} +2026/03/21 15:21:24 [metric_collector] {"stage_name":"metric_collector","events_processed":14549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2909.8,"last_update":"2026-03-21T15:21:19.068824915Z"} +2026/03/21 15:21:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:21:19.077363401Z"} +2026/03/21 15:21:24 ───────────────────────────────────────────────── +2026/03/21 15:21:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:21:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:21:24.078161234Z"} +2026/03/21 15:21:29 [detection_layer] {"stage_name":"detection_layer","events_processed":485,"events_dropped":0,"avg_latency_ms":19.052219760200312,"throughput_eps":0,"last_update":"2026-03-21T15:21:24.210388721Z"} +2026/03/21 15:21:29 [transform_engine] {"stage_name":"transform_engine","events_processed":485,"events_dropped":0,"avg_latency_ms":529.8615256779343,"throughput_eps":0,"last_update":"2026-03-21T15:21:24.210397387Z"} +2026/03/21 15:21:29 [log_collector] {"stage_name":"log_collector","events_processed":23064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4612.8,"last_update":"2026-03-21T15:21:24.068942116Z"} +2026/03/21 15:21:29 [metric_collector] {"stage_name":"metric_collector","events_processed":14554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2910.8,"last_update":"2026-03-21T15:21:24.069486749Z"} +2026/03/21 15:21:29 ───────────────────────────────────────────────── +2026/03/21 15:21:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:21:34 [log_collector] {"stage_name":"log_collector","events_processed":23064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4612.8,"last_update":"2026-03-21T15:21:29.068100149Z"} +2026/03/21 15:21:34 [metric_collector] {"stage_name":"metric_collector","events_processed":14559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2911.8,"last_update":"2026-03-21T15:21:29.068440931Z"} +2026/03/21 15:21:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5826,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:21:29.076821634Z"} +2026/03/21 15:21:34 [detection_layer] {"stage_name":"detection_layer","events_processed":485,"events_dropped":0,"avg_latency_ms":19.052219760200312,"throughput_eps":0,"last_update":"2026-03-21T15:21:29.210205636Z"} +2026/03/21 15:21:34 [transform_engine] {"stage_name":"transform_engine","events_processed":485,"events_dropped":0,"avg_latency_ms":529.8615256779343,"throughput_eps":0,"last_update":"2026-03-21T15:21:29.210229021Z"} +2026/03/21 15:21:34 ───────────────────────────────────────────────── +2026/03/21 15:21:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:21:39 [log_collector] {"stage_name":"log_collector","events_processed":23064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4612.8,"last_update":"2026-03-21T15:21:34.068590538Z"} +2026/03/21 15:21:39 [metric_collector] {"stage_name":"metric_collector","events_processed":14564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2912.8,"last_update":"2026-03-21T15:21:34.068992488Z"} +2026/03/21 15:21:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:21:34.078736302Z"} +2026/03/21 15:21:39 [detection_layer] {"stage_name":"detection_layer","events_processed":485,"events_dropped":0,"avg_latency_ms":19.052219760200312,"throughput_eps":0,"last_update":"2026-03-21T15:21:34.210230182Z"} +2026/03/21 15:21:39 [transform_engine] {"stage_name":"transform_engine","events_processed":485,"events_dropped":0,"avg_latency_ms":529.8615256779343,"throughput_eps":0,"last_update":"2026-03-21T15:21:34.210242306Z"} +2026/03/21 15:21:39 ───────────────────────────────────────────────── +Saved state: 17 clusters, 23065 messages, reason: none +2026/03/21 15:21:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:21:44 [log_collector] {"stage_name":"log_collector","events_processed":23064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4612.8,"last_update":"2026-03-21T15:21:39.068513239Z"} +2026/03/21 15:21:44 [metric_collector] {"stage_name":"metric_collector","events_processed":14569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2913.8,"last_update":"2026-03-21T15:21:39.068777765Z"} +2026/03/21 15:21:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5830,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:21:39.077685638Z"} +2026/03/21 15:21:44 [detection_layer] {"stage_name":"detection_layer","events_processed":485,"events_dropped":0,"avg_latency_ms":19.052219760200312,"throughput_eps":0,"last_update":"2026-03-21T15:21:39.210120521Z"} +2026/03/21 15:21:44 [transform_engine] {"stage_name":"transform_engine","events_processed":485,"events_dropped":0,"avg_latency_ms":529.8615256779343,"throughput_eps":0,"last_update":"2026-03-21T15:21:39.210004339Z"} +2026/03/21 15:21:44 ───────────────────────────────────────────────── +2026/03/21 15:21:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:21:49 [detection_layer] {"stage_name":"detection_layer","events_processed":485,"events_dropped":0,"avg_latency_ms":19.052219760200312,"throughput_eps":0,"last_update":"2026-03-21T15:21:44.210477566Z"} +2026/03/21 15:21:49 [transform_engine] {"stage_name":"transform_engine","events_processed":485,"events_dropped":0,"avg_latency_ms":529.8615256779343,"throughput_eps":0,"last_update":"2026-03-21T15:21:44.210489278Z"} +2026/03/21 15:21:49 [log_collector] {"stage_name":"log_collector","events_processed":23067,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4613.4,"last_update":"2026-03-21T15:21:44.068556361Z"} +2026/03/21 15:21:49 [metric_collector] {"stage_name":"metric_collector","events_processed":14574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2914.8,"last_update":"2026-03-21T15:21:44.068812322Z"} +2026/03/21 15:21:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5832,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:21:44.079325189Z"} +2026/03/21 15:21:49 ───────────────────────────────────────────────── +2026/03/21 15:21:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:21:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:21:49.077662677Z"} +2026/03/21 15:21:54 [detection_layer] {"stage_name":"detection_layer","events_processed":485,"events_dropped":0,"avg_latency_ms":19.052219760200312,"throughput_eps":0,"last_update":"2026-03-21T15:21:49.209915191Z"} +2026/03/21 15:21:54 [transform_engine] {"stage_name":"transform_engine","events_processed":486,"events_dropped":0,"avg_latency_ms":574.7341797423475,"throughput_eps":0,"last_update":"2026-03-21T15:21:49.964155827Z"} +2026/03/21 15:21:54 [log_collector] {"stage_name":"log_collector","events_processed":23067,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4613.4,"last_update":"2026-03-21T15:21:49.068061806Z"} +2026/03/21 15:21:54 [metric_collector] {"stage_name":"metric_collector","events_processed":14579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2915.8,"last_update":"2026-03-21T15:21:49.071220277Z"} +2026/03/21 15:21:54 ───────────────────────────────────────────────── +2026/03/21 15:21:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:21:59 [detection_layer] {"stage_name":"detection_layer","events_processed":486,"events_dropped":0,"avg_latency_ms":18.23409580816025,"throughput_eps":0,"last_update":"2026-03-21T15:21:54.210877807Z"} +2026/03/21 15:21:59 [transform_engine] {"stage_name":"transform_engine","events_processed":486,"events_dropped":0,"avg_latency_ms":574.7341797423475,"throughput_eps":0,"last_update":"2026-03-21T15:21:54.209752101Z"} +2026/03/21 15:21:59 [log_collector] {"stage_name":"log_collector","events_processed":23077,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4615.4,"last_update":"2026-03-21T15:21:54.068683299Z"} +2026/03/21 15:21:59 [metric_collector] {"stage_name":"metric_collector","events_processed":14584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2916.8,"last_update":"2026-03-21T15:21:54.069029092Z"} +2026/03/21 15:21:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:21:54.078610344Z"} +2026/03/21 15:21:59 ───────────────────────────────────────────────── +2026/03/21 15:22:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:22:04 [transform_engine] {"stage_name":"transform_engine","events_processed":486,"events_dropped":0,"avg_latency_ms":574.7341797423475,"throughput_eps":0,"last_update":"2026-03-21T15:21:59.209642625Z"} +2026/03/21 15:22:04 [log_collector] {"stage_name":"log_collector","events_processed":23092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4618.4,"last_update":"2026-03-21T15:21:59.068857748Z"} +2026/03/21 15:22:04 [metric_collector] {"stage_name":"metric_collector","events_processed":14589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2917.8,"last_update":"2026-03-21T15:21:59.069227236Z"} +2026/03/21 15:22:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:21:59.075469933Z"} +2026/03/21 15:22:04 [detection_layer] {"stage_name":"detection_layer","events_processed":486,"events_dropped":0,"avg_latency_ms":18.23409580816025,"throughput_eps":0,"last_update":"2026-03-21T15:21:59.210846802Z"} +2026/03/21 15:22:04 ───────────────────────────────────────────────── +2026/03/21 15:22:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:22:09 [detection_layer] {"stage_name":"detection_layer","events_processed":486,"events_dropped":0,"avg_latency_ms":18.23409580816025,"throughput_eps":0,"last_update":"2026-03-21T15:22:04.210133362Z"} +2026/03/21 15:22:09 [transform_engine] {"stage_name":"transform_engine","events_processed":486,"events_dropped":0,"avg_latency_ms":574.7341797423475,"throughput_eps":0,"last_update":"2026-03-21T15:22:04.21003353Z"} +2026/03/21 15:22:09 [log_collector] {"stage_name":"log_collector","events_processed":23094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4618.8,"last_update":"2026-03-21T15:22:04.068204923Z"} +2026/03/21 15:22:09 [metric_collector] {"stage_name":"metric_collector","events_processed":14594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2918.8,"last_update":"2026-03-21T15:22:04.068811434Z"} +2026/03/21 15:22:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:22:04.077691153Z"} +2026/03/21 15:22:09 ───────────────────────────────────────────────── +2026/03/21 15:22:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:22:14 [log_collector] {"stage_name":"log_collector","events_processed":23094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4618.8,"last_update":"2026-03-21T15:22:09.068739643Z"} +2026/03/21 15:22:14 [metric_collector] {"stage_name":"metric_collector","events_processed":14603,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2920.6,"last_update":"2026-03-21T15:22:14.06809866Z"} +2026/03/21 15:22:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:22:09.078132374Z"} +2026/03/21 15:22:14 [detection_layer] {"stage_name":"detection_layer","events_processed":486,"events_dropped":0,"avg_latency_ms":18.23409580816025,"throughput_eps":0,"last_update":"2026-03-21T15:22:09.21050099Z"} +2026/03/21 15:22:14 [transform_engine] {"stage_name":"transform_engine","events_processed":486,"events_dropped":0,"avg_latency_ms":574.7341797423475,"throughput_eps":0,"last_update":"2026-03-21T15:22:09.210512804Z"} +2026/03/21 15:22:14 ───────────────────────────────────────────────── +2026/03/21 15:22:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:22:19 [transform_engine] {"stage_name":"transform_engine","events_processed":486,"events_dropped":0,"avg_latency_ms":574.7341797423475,"throughput_eps":0,"last_update":"2026-03-21T15:22:14.210615085Z"} +2026/03/21 15:22:19 [log_collector] {"stage_name":"log_collector","events_processed":23108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4621.6,"last_update":"2026-03-21T15:22:14.0681351Z"} +2026/03/21 15:22:19 [metric_collector] {"stage_name":"metric_collector","events_processed":14603,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2920.6,"last_update":"2026-03-21T15:22:14.06809866Z"} +2026/03/21 15:22:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:22:14.075215793Z"} +2026/03/21 15:22:19 [detection_layer] {"stage_name":"detection_layer","events_processed":486,"events_dropped":0,"avg_latency_ms":18.23409580816025,"throughput_eps":0,"last_update":"2026-03-21T15:22:14.210599275Z"} +2026/03/21 15:22:19 ───────────────────────────────────────────────── +2026/03/21 15:22:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:22:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:22:19.077437748Z"} +2026/03/21 15:22:24 [detection_layer] {"stage_name":"detection_layer","events_processed":486,"events_dropped":0,"avg_latency_ms":18.23409580816025,"throughput_eps":0,"last_update":"2026-03-21T15:22:19.210700738Z"} +2026/03/21 15:22:24 [transform_engine] {"stage_name":"transform_engine","events_processed":486,"events_dropped":0,"avg_latency_ms":574.7341797423475,"throughput_eps":0,"last_update":"2026-03-21T15:22:19.210711488Z"} +2026/03/21 15:22:24 [log_collector] {"stage_name":"log_collector","events_processed":23108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4621.6,"last_update":"2026-03-21T15:22:19.068980538Z"} +2026/03/21 15:22:24 [metric_collector] {"stage_name":"metric_collector","events_processed":14608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2921.6,"last_update":"2026-03-21T15:22:19.068688879Z"} +2026/03/21 15:22:24 ───────────────────────────────────────────────── +2026/03/21 15:22:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:22:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5848,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:22:24.078758287Z"} +2026/03/21 15:22:29 [detection_layer] {"stage_name":"detection_layer","events_processed":487,"events_dropped":0,"avg_latency_ms":18.984898246528203,"throughput_eps":0,"last_update":"2026-03-21T15:22:24.21001331Z"} +2026/03/21 15:22:29 [transform_engine] {"stage_name":"transform_engine","events_processed":487,"events_dropped":0,"avg_latency_ms":488.071322393878,"throughput_eps":0,"last_update":"2026-03-21T15:22:24.210020944Z"} +2026/03/21 15:22:29 [log_collector] {"stage_name":"log_collector","events_processed":23108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4621.6,"last_update":"2026-03-21T15:22:24.069120596Z"} +2026/03/21 15:22:29 [metric_collector] {"stage_name":"metric_collector","events_processed":14614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2922.8,"last_update":"2026-03-21T15:22:24.069657253Z"} +2026/03/21 15:22:29 ───────────────────────────────────────────────── +2026/03/21 15:22:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:22:34 [log_collector] {"stage_name":"log_collector","events_processed":23108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4621.6,"last_update":"2026-03-21T15:22:29.068091925Z"} +2026/03/21 15:22:34 [metric_collector] {"stage_name":"metric_collector","events_processed":14619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2923.8,"last_update":"2026-03-21T15:22:29.068682607Z"} +2026/03/21 15:22:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:22:29.078219364Z"} +2026/03/21 15:22:34 [detection_layer] {"stage_name":"detection_layer","events_processed":487,"events_dropped":0,"avg_latency_ms":18.984898246528203,"throughput_eps":0,"last_update":"2026-03-21T15:22:29.21054108Z"} +2026/03/21 15:22:34 [transform_engine] {"stage_name":"transform_engine","events_processed":487,"events_dropped":0,"avg_latency_ms":488.071322393878,"throughput_eps":0,"last_update":"2026-03-21T15:22:29.210554045Z"} +2026/03/21 15:22:34 ───────────────────────────────────────────────── +2026/03/21 15:22:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:22:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:22:34.07910839Z"} +2026/03/21 15:22:39 [detection_layer] {"stage_name":"detection_layer","events_processed":487,"events_dropped":0,"avg_latency_ms":18.984898246528203,"throughput_eps":0,"last_update":"2026-03-21T15:22:34.210475478Z"} +2026/03/21 15:22:39 [transform_engine] {"stage_name":"transform_engine","events_processed":487,"events_dropped":0,"avg_latency_ms":488.071322393878,"throughput_eps":0,"last_update":"2026-03-21T15:22:34.210490056Z"} +2026/03/21 15:22:39 [log_collector] {"stage_name":"log_collector","events_processed":23108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4621.6,"last_update":"2026-03-21T15:22:34.068173274Z"} +2026/03/21 15:22:39 [metric_collector] {"stage_name":"metric_collector","events_processed":14624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2924.8,"last_update":"2026-03-21T15:22:34.068749167Z"} +2026/03/21 15:22:39 ───────────────────────────────────────────────── +2026/03/21 15:22:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:22:44 [log_collector] {"stage_name":"log_collector","events_processed":23108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4621.6,"last_update":"2026-03-21T15:22:39.068122038Z"} +2026/03/21 15:22:44 [metric_collector] {"stage_name":"metric_collector","events_processed":14629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2925.8,"last_update":"2026-03-21T15:22:39.068648446Z"} +2026/03/21 15:22:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:22:39.078358285Z"} +2026/03/21 15:22:44 [detection_layer] {"stage_name":"detection_layer","events_processed":487,"events_dropped":0,"avg_latency_ms":18.984898246528203,"throughput_eps":0,"last_update":"2026-03-21T15:22:39.21058454Z"} +2026/03/21 15:22:44 [transform_engine] {"stage_name":"transform_engine","events_processed":487,"events_dropped":0,"avg_latency_ms":488.071322393878,"throughput_eps":0,"last_update":"2026-03-21T15:22:39.210592455Z"} +2026/03/21 15:22:44 ───────────────────────────────────────────────── +2026/03/21 15:22:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:22:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:22:44.078366886Z"} +2026/03/21 15:22:49 [detection_layer] {"stage_name":"detection_layer","events_processed":487,"events_dropped":0,"avg_latency_ms":18.984898246528203,"throughput_eps":0,"last_update":"2026-03-21T15:22:44.210769708Z"} +2026/03/21 15:22:49 [transform_engine] {"stage_name":"transform_engine","events_processed":487,"events_dropped":0,"avg_latency_ms":488.071322393878,"throughput_eps":0,"last_update":"2026-03-21T15:22:44.210790789Z"} +2026/03/21 15:22:49 [log_collector] {"stage_name":"log_collector","events_processed":23108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4621.6,"last_update":"2026-03-21T15:22:44.068170596Z"} +2026/03/21 15:22:49 [metric_collector] {"stage_name":"metric_collector","events_processed":14634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2926.8,"last_update":"2026-03-21T15:22:44.068812815Z"} +2026/03/21 15:22:49 ───────────────────────────────────────────────── +2026/03/21 15:22:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:22:54 [log_collector] {"stage_name":"log_collector","events_processed":23108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4621.6,"last_update":"2026-03-21T15:22:49.068814744Z"} +2026/03/21 15:22:54 [metric_collector] {"stage_name":"metric_collector","events_processed":14639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2927.8,"last_update":"2026-03-21T15:22:49.069029695Z"} +2026/03/21 15:22:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:22:49.0797396Z"} +2026/03/21 15:22:54 [detection_layer] {"stage_name":"detection_layer","events_processed":487,"events_dropped":0,"avg_latency_ms":18.984898246528203,"throughput_eps":0,"last_update":"2026-03-21T15:22:49.210102264Z"} +2026/03/21 15:22:54 [transform_engine] {"stage_name":"transform_engine","events_processed":488,"events_dropped":0,"avg_latency_ms":406.90762451510244,"throughput_eps":0,"last_update":"2026-03-21T15:22:49.29226305Z"} +2026/03/21 15:22:54 ───────────────────────────────────────────────── +2026/03/21 15:22:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:22:59 [transform_engine] {"stage_name":"transform_engine","events_processed":488,"events_dropped":0,"avg_latency_ms":406.90762451510244,"throughput_eps":0,"last_update":"2026-03-21T15:22:54.210371576Z"} +2026/03/21 15:22:59 [log_collector] {"stage_name":"log_collector","events_processed":23108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4621.6,"last_update":"2026-03-21T15:22:54.069100617Z"} +2026/03/21 15:22:59 [metric_collector] {"stage_name":"metric_collector","events_processed":14643,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2928.6,"last_update":"2026-03-21T15:22:54.068961551Z"} +2026/03/21 15:22:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5860,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:22:54.079063411Z"} +2026/03/21 15:22:59 [detection_layer] {"stage_name":"detection_layer","events_processed":488,"events_dropped":0,"avg_latency_ms":20.098991597222565,"throughput_eps":0,"last_update":"2026-03-21T15:22:54.210326069Z"} +2026/03/21 15:22:59 ───────────────────────────────────────────────── +2026/03/21 15:23:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:23:04 [log_collector] {"stage_name":"log_collector","events_processed":23108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4621.6,"last_update":"2026-03-21T15:22:59.068079028Z"} +2026/03/21 15:23:04 [metric_collector] {"stage_name":"metric_collector","events_processed":14649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2929.8,"last_update":"2026-03-21T15:22:59.068454918Z"} +2026/03/21 15:23:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5862,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:22:59.077544238Z"} +2026/03/21 15:23:04 [detection_layer] {"stage_name":"detection_layer","events_processed":488,"events_dropped":0,"avg_latency_ms":20.098991597222565,"throughput_eps":0,"last_update":"2026-03-21T15:22:59.210093271Z"} +2026/03/21 15:23:04 [transform_engine] {"stage_name":"transform_engine","events_processed":488,"events_dropped":0,"avg_latency_ms":406.90762451510244,"throughput_eps":0,"last_update":"2026-03-21T15:22:59.210131924Z"} +2026/03/21 15:23:04 ───────────────────────────────────────────────── +2026/03/21 15:23:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:23:09 [metric_collector] {"stage_name":"metric_collector","events_processed":14654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2930.8,"last_update":"2026-03-21T15:23:04.069302808Z"} +2026/03/21 15:23:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:23:04.078405794Z"} +2026/03/21 15:23:09 [detection_layer] {"stage_name":"detection_layer","events_processed":488,"events_dropped":0,"avg_latency_ms":20.098991597222565,"throughput_eps":0,"last_update":"2026-03-21T15:23:04.21076336Z"} +2026/03/21 15:23:09 [transform_engine] {"stage_name":"transform_engine","events_processed":488,"events_dropped":0,"avg_latency_ms":406.90762451510244,"throughput_eps":0,"last_update":"2026-03-21T15:23:04.210718544Z"} +2026/03/21 15:23:09 [log_collector] {"stage_name":"log_collector","events_processed":23108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4621.6,"last_update":"2026-03-21T15:23:04.068895909Z"} +2026/03/21 15:23:09 ───────────────────────────────────────────────── +2026/03/21 15:23:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:23:14 [log_collector] {"stage_name":"log_collector","events_processed":23108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4621.6,"last_update":"2026-03-21T15:23:09.068054484Z"} +2026/03/21 15:23:14 [metric_collector] {"stage_name":"metric_collector","events_processed":14659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2931.8,"last_update":"2026-03-21T15:23:09.068371943Z"} +2026/03/21 15:23:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:23:09.077936603Z"} +2026/03/21 15:23:14 [detection_layer] {"stage_name":"detection_layer","events_processed":488,"events_dropped":0,"avg_latency_ms":20.098991597222565,"throughput_eps":0,"last_update":"2026-03-21T15:23:09.210266526Z"} +2026/03/21 15:23:14 [transform_engine] {"stage_name":"transform_engine","events_processed":488,"events_dropped":0,"avg_latency_ms":406.90762451510244,"throughput_eps":0,"last_update":"2026-03-21T15:23:09.21029979Z"} +2026/03/21 15:23:14 ───────────────────────────────────────────────── +Saved state: 17 clusters, 23109 messages, reason: none +2026/03/21 15:23:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:23:19 [log_collector] {"stage_name":"log_collector","events_processed":23108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4621.6,"last_update":"2026-03-21T15:23:14.068754824Z"} +2026/03/21 15:23:19 [metric_collector] {"stage_name":"metric_collector","events_processed":14664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2932.8,"last_update":"2026-03-21T15:23:14.069047204Z"} +2026/03/21 15:23:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5868,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:23:14.078376924Z"} +2026/03/21 15:23:19 [detection_layer] {"stage_name":"detection_layer","events_processed":488,"events_dropped":0,"avg_latency_ms":20.098991597222565,"throughput_eps":0,"last_update":"2026-03-21T15:23:14.210720373Z"} +2026/03/21 15:23:19 [transform_engine] {"stage_name":"transform_engine","events_processed":488,"events_dropped":0,"avg_latency_ms":406.90762451510244,"throughput_eps":0,"last_update":"2026-03-21T15:23:14.210760249Z"} +2026/03/21 15:23:19 ───────────────────────────────────────────────── +2026/03/21 15:23:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:23:24 [log_collector] {"stage_name":"log_collector","events_processed":23113,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4622.6,"last_update":"2026-03-21T15:23:19.068204359Z"} +2026/03/21 15:23:24 [metric_collector] {"stage_name":"metric_collector","events_processed":14669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2933.8,"last_update":"2026-03-21T15:23:19.068558868Z"} +2026/03/21 15:23:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:23:19.083362664Z"} +2026/03/21 15:23:24 [detection_layer] {"stage_name":"detection_layer","events_processed":488,"events_dropped":0,"avg_latency_ms":20.098991597222565,"throughput_eps":0,"last_update":"2026-03-21T15:23:19.2098993Z"} +2026/03/21 15:23:24 [transform_engine] {"stage_name":"transform_engine","events_processed":489,"events_dropped":0,"avg_latency_ms":348.55411901208197,"throughput_eps":0,"last_update":"2026-03-21T15:23:19.325011954Z"} +2026/03/21 15:23:24 ───────────────────────────────────────────────── +2026/03/21 15:23:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:23:29 [detection_layer] {"stage_name":"detection_layer","events_processed":489,"events_dropped":0,"avg_latency_ms":20.118610677778054,"throughput_eps":0,"last_update":"2026-03-21T15:23:24.210270212Z"} +2026/03/21 15:23:29 [transform_engine] {"stage_name":"transform_engine","events_processed":489,"events_dropped":0,"avg_latency_ms":348.55411901208197,"throughput_eps":0,"last_update":"2026-03-21T15:23:24.210282745Z"} +2026/03/21 15:23:29 [log_collector] {"stage_name":"log_collector","events_processed":23113,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4622.6,"last_update":"2026-03-21T15:23:24.068733684Z"} +2026/03/21 15:23:29 [metric_collector] {"stage_name":"metric_collector","events_processed":14674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2934.8,"last_update":"2026-03-21T15:23:24.069031094Z"} +2026/03/21 15:23:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:23:24.075039161Z"} +2026/03/21 15:23:29 ───────────────────────────────────────────────── +2026/03/21 15:23:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:23:34 [log_collector] {"stage_name":"log_collector","events_processed":23113,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4622.6,"last_update":"2026-03-21T15:23:29.068656818Z"} +2026/03/21 15:23:34 [metric_collector] {"stage_name":"metric_collector","events_processed":14678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2935.6,"last_update":"2026-03-21T15:23:29.068557658Z"} +2026/03/21 15:23:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:23:29.077368816Z"} +2026/03/21 15:23:34 [detection_layer] {"stage_name":"detection_layer","events_processed":489,"events_dropped":0,"avg_latency_ms":20.118610677778054,"throughput_eps":0,"last_update":"2026-03-21T15:23:29.210579395Z"} +2026/03/21 15:23:34 [transform_engine] {"stage_name":"transform_engine","events_processed":489,"events_dropped":0,"avg_latency_ms":348.55411901208197,"throughput_eps":0,"last_update":"2026-03-21T15:23:29.210554928Z"} +2026/03/21 15:23:34 ───────────────────────────────────────────────── +2026/03/21 15:23:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:23:39 [metric_collector] {"stage_name":"metric_collector","events_processed":14684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2936.8,"last_update":"2026-03-21T15:23:34.06987857Z"} +2026/03/21 15:23:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5876,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:23:34.079493237Z"} +2026/03/21 15:23:39 [detection_layer] {"stage_name":"detection_layer","events_processed":489,"events_dropped":0,"avg_latency_ms":20.118610677778054,"throughput_eps":0,"last_update":"2026-03-21T15:23:34.210752029Z"} +2026/03/21 15:23:39 [transform_engine] {"stage_name":"transform_engine","events_processed":489,"events_dropped":0,"avg_latency_ms":348.55411901208197,"throughput_eps":0,"last_update":"2026-03-21T15:23:34.209628667Z"} +2026/03/21 15:23:39 [log_collector] {"stage_name":"log_collector","events_processed":23113,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4622.6,"last_update":"2026-03-21T15:23:34.069373944Z"} +2026/03/21 15:23:39 ───────────────────────────────────────────────── +2026/03/21 15:23:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:23:44 [log_collector] {"stage_name":"log_collector","events_processed":23113,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4622.6,"last_update":"2026-03-21T15:23:39.068619683Z"} +2026/03/21 15:23:44 [metric_collector] {"stage_name":"metric_collector","events_processed":14689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2937.8,"last_update":"2026-03-21T15:23:39.068862158Z"} +2026/03/21 15:23:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:23:39.07747214Z"} +2026/03/21 15:23:44 [detection_layer] {"stage_name":"detection_layer","events_processed":489,"events_dropped":0,"avg_latency_ms":20.118610677778054,"throughput_eps":0,"last_update":"2026-03-21T15:23:39.21078772Z"} +2026/03/21 15:23:44 [transform_engine] {"stage_name":"transform_engine","events_processed":489,"events_dropped":0,"avg_latency_ms":348.55411901208197,"throughput_eps":0,"last_update":"2026-03-21T15:23:39.20970686Z"} +2026/03/21 15:23:44 ───────────────────────────────────────────────── +2026/03/21 15:23:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:23:49 [log_collector] {"stage_name":"log_collector","events_processed":23113,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4622.6,"last_update":"2026-03-21T15:23:44.0680834Z"} +2026/03/21 15:23:49 [metric_collector] {"stage_name":"metric_collector","events_processed":14694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2938.8,"last_update":"2026-03-21T15:23:44.068237836Z"} +2026/03/21 15:23:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:23:44.075403321Z"} +2026/03/21 15:23:49 [detection_layer] {"stage_name":"detection_layer","events_processed":489,"events_dropped":0,"avg_latency_ms":20.118610677778054,"throughput_eps":0,"last_update":"2026-03-21T15:23:44.210630865Z"} +2026/03/21 15:23:49 [transform_engine] {"stage_name":"transform_engine","events_processed":489,"events_dropped":0,"avg_latency_ms":348.55411901208197,"throughput_eps":0,"last_update":"2026-03-21T15:23:44.212370747Z"} +2026/03/21 15:23:49 ───────────────────────────────────────────────── +2026/03/21 15:23:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:23:54 [log_collector] {"stage_name":"log_collector","events_processed":23113,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4622.6,"last_update":"2026-03-21T15:23:49.068609513Z"} +2026/03/21 15:23:54 [metric_collector] {"stage_name":"metric_collector","events_processed":14699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2939.8,"last_update":"2026-03-21T15:23:49.068916352Z"} +2026/03/21 15:23:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:23:49.07575488Z"} +2026/03/21 15:23:54 [detection_layer] {"stage_name":"detection_layer","events_processed":489,"events_dropped":0,"avg_latency_ms":20.118610677778054,"throughput_eps":0,"last_update":"2026-03-21T15:23:49.209966538Z"} +2026/03/21 15:23:54 [transform_engine] {"stage_name":"transform_engine","events_processed":490,"events_dropped":0,"avg_latency_ms":294.7696054096656,"throughput_eps":0,"last_update":"2026-03-21T15:23:49.289546059Z"} +2026/03/21 15:23:54 ───────────────────────────────────────────────── +2026/03/21 15:23:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:23:59 [detection_layer] {"stage_name":"detection_layer","events_processed":490,"events_dropped":0,"avg_latency_ms":19.010050142222447,"throughput_eps":0,"last_update":"2026-03-21T15:23:54.210590559Z"} +2026/03/21 15:23:59 [transform_engine] {"stage_name":"transform_engine","events_processed":490,"events_dropped":0,"avg_latency_ms":294.7696054096656,"throughput_eps":0,"last_update":"2026-03-21T15:23:54.210615246Z"} +2026/03/21 15:23:59 [log_collector] {"stage_name":"log_collector","events_processed":23113,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4622.6,"last_update":"2026-03-21T15:23:54.069378943Z"} +2026/03/21 15:23:59 [metric_collector] {"stage_name":"metric_collector","events_processed":14704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2940.8,"last_update":"2026-03-21T15:23:54.069578515Z"} +2026/03/21 15:23:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:23:54.075379898Z"} +2026/03/21 15:23:59 ───────────────────────────────────────────────── +2026/03/21 15:24:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:24:04 [transform_engine] {"stage_name":"transform_engine","events_processed":490,"events_dropped":0,"avg_latency_ms":294.7696054096656,"throughput_eps":0,"last_update":"2026-03-21T15:23:59.210415479Z"} +2026/03/21 15:24:04 [log_collector] {"stage_name":"log_collector","events_processed":23116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4623.2,"last_update":"2026-03-21T15:23:59.068550202Z"} +2026/03/21 15:24:04 [metric_collector] {"stage_name":"metric_collector","events_processed":14709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2941.8,"last_update":"2026-03-21T15:23:59.068829837Z"} +2026/03/21 15:24:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5886,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:23:59.075162417Z"} +2026/03/21 15:24:04 [detection_layer] {"stage_name":"detection_layer","events_processed":490,"events_dropped":0,"avg_latency_ms":19.010050142222447,"throughput_eps":0,"last_update":"2026-03-21T15:23:59.210551009Z"} +2026/03/21 15:24:04 ───────────────────────────────────────────────── +2026/03/21 15:24:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:24:09 [detection_layer] {"stage_name":"detection_layer","events_processed":490,"events_dropped":0,"avg_latency_ms":19.010050142222447,"throughput_eps":0,"last_update":"2026-03-21T15:24:04.210308532Z"} +2026/03/21 15:24:09 [transform_engine] {"stage_name":"transform_engine","events_processed":490,"events_dropped":0,"avg_latency_ms":294.7696054096656,"throughput_eps":0,"last_update":"2026-03-21T15:24:04.210368286Z"} +2026/03/21 15:24:09 [log_collector] {"stage_name":"log_collector","events_processed":23124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4624.8,"last_update":"2026-03-21T15:24:04.068586449Z"} +2026/03/21 15:24:09 [metric_collector] {"stage_name":"metric_collector","events_processed":14714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2942.8,"last_update":"2026-03-21T15:24:04.068884219Z"} +2026/03/21 15:24:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:24:04.078070616Z"} +2026/03/21 15:24:09 ───────────────────────────────────────────────── +2026/03/21 15:24:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:24:14 [detection_layer] {"stage_name":"detection_layer","events_processed":490,"events_dropped":0,"avg_latency_ms":19.010050142222447,"throughput_eps":0,"last_update":"2026-03-21T15:24:09.210090884Z"} +2026/03/21 15:24:14 [transform_engine] {"stage_name":"transform_engine","events_processed":490,"events_dropped":0,"avg_latency_ms":294.7696054096656,"throughput_eps":0,"last_update":"2026-03-21T15:24:09.210069984Z"} +2026/03/21 15:24:14 [log_collector] {"stage_name":"log_collector","events_processed":23210,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4642,"last_update":"2026-03-21T15:24:09.068453653Z"} +2026/03/21 15:24:14 [metric_collector] {"stage_name":"metric_collector","events_processed":14719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2943.8,"last_update":"2026-03-21T15:24:09.068992515Z"} +2026/03/21 15:24:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:24:09.076415594Z"} +2026/03/21 15:24:14 ───────────────────────────────────────────────── +Saved state: 17 clusters, 23478 messages, reason: none +2026/03/21 15:24:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:24:19 [detection_layer] {"stage_name":"detection_layer","events_processed":490,"events_dropped":0,"avg_latency_ms":19.010050142222447,"throughput_eps":0,"last_update":"2026-03-21T15:24:14.210035618Z"} +2026/03/21 15:24:19 [transform_engine] {"stage_name":"transform_engine","events_processed":490,"events_dropped":0,"avg_latency_ms":294.7696054096656,"throughput_eps":0,"last_update":"2026-03-21T15:24:14.210062289Z"} +2026/03/21 15:24:19 [log_collector] {"stage_name":"log_collector","events_processed":23385,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4677,"last_update":"2026-03-21T15:24:14.06852043Z"} +2026/03/21 15:24:19 [metric_collector] {"stage_name":"metric_collector","events_processed":14724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2944.8,"last_update":"2026-03-21T15:24:14.068752284Z"} +2026/03/21 15:24:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5892,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:24:14.075872262Z"} +2026/03/21 15:24:19 ───────────────────────────────────────────────── +2026/03/21 15:24:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:24:24 [log_collector] {"stage_name":"log_collector","events_processed":23483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4696.6,"last_update":"2026-03-21T15:24:19.068827108Z"} +2026/03/21 15:24:24 [metric_collector] {"stage_name":"metric_collector","events_processed":14729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2945.8,"last_update":"2026-03-21T15:24:19.069116843Z"} +2026/03/21 15:24:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:24:19.077927951Z"} +2026/03/21 15:24:24 [detection_layer] {"stage_name":"detection_layer","events_processed":490,"events_dropped":0,"avg_latency_ms":19.010050142222447,"throughput_eps":0,"last_update":"2026-03-21T15:24:19.210986459Z"} +2026/03/21 15:24:24 [transform_engine] {"stage_name":"transform_engine","events_processed":491,"events_dropped":0,"avg_latency_ms":260.2482761277325,"throughput_eps":0,"last_update":"2026-03-21T15:24:19.332571572Z"} +2026/03/21 15:24:24 ───────────────────────────────────────────────── +2026/03/21 15:24:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:24:29 [log_collector] {"stage_name":"log_collector","events_processed":23483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4696.6,"last_update":"2026-03-21T15:24:24.06889053Z"} +2026/03/21 15:24:29 [metric_collector] {"stage_name":"metric_collector","events_processed":14734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2946.8,"last_update":"2026-03-21T15:24:24.069581474Z"} +2026/03/21 15:24:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5896,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:24:24.078293952Z"} +2026/03/21 15:24:29 [detection_layer] {"stage_name":"detection_layer","events_processed":491,"events_dropped":0,"avg_latency_ms":19.528451713777958,"throughput_eps":0,"last_update":"2026-03-21T15:24:24.210711744Z"} +2026/03/21 15:24:29 [transform_engine] {"stage_name":"transform_engine","events_processed":491,"events_dropped":0,"avg_latency_ms":260.2482761277325,"throughput_eps":0,"last_update":"2026-03-21T15:24:24.210685674Z"} +2026/03/21 15:24:29 ───────────────────────────────────────────────── +2026/03/21 15:24:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:24:34 [log_collector] {"stage_name":"log_collector","events_processed":23486,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4697.2,"last_update":"2026-03-21T15:24:29.068085861Z"} +2026/03/21 15:24:34 [metric_collector] {"stage_name":"metric_collector","events_processed":14739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2947.8,"last_update":"2026-03-21T15:24:29.068374914Z"} +2026/03/21 15:24:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5898,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:24:29.076018095Z"} +2026/03/21 15:24:34 [detection_layer] {"stage_name":"detection_layer","events_processed":491,"events_dropped":0,"avg_latency_ms":19.528451713777958,"throughput_eps":0,"last_update":"2026-03-21T15:24:29.210321277Z"} +2026/03/21 15:24:34 [transform_engine] {"stage_name":"transform_engine","events_processed":491,"events_dropped":0,"avg_latency_ms":260.2482761277325,"throughput_eps":0,"last_update":"2026-03-21T15:24:29.210271843Z"} +2026/03/21 15:24:34 ───────────────────────────────────────────────── +2026/03/21 15:24:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:24:39 [log_collector] {"stage_name":"log_collector","events_processed":23486,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4697.2,"last_update":"2026-03-21T15:24:34.069046334Z"} +2026/03/21 15:24:39 [metric_collector] {"stage_name":"metric_collector","events_processed":14743,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2948.6,"last_update":"2026-03-21T15:24:34.068952674Z"} +2026/03/21 15:24:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5900,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:24:34.076372236Z"} +2026/03/21 15:24:39 [detection_layer] {"stage_name":"detection_layer","events_processed":491,"events_dropped":0,"avg_latency_ms":19.528451713777958,"throughput_eps":0,"last_update":"2026-03-21T15:24:34.210606758Z"} +2026/03/21 15:24:39 [transform_engine] {"stage_name":"transform_engine","events_processed":491,"events_dropped":0,"avg_latency_ms":260.2482761277325,"throughput_eps":0,"last_update":"2026-03-21T15:24:34.210588883Z"} +2026/03/21 15:24:39 ───────────────────────────────────────────────── +2026/03/21 15:24:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:24:44 [log_collector] {"stage_name":"log_collector","events_processed":23504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4700.8,"last_update":"2026-03-21T15:24:39.06839506Z"} +2026/03/21 15:24:44 [metric_collector] {"stage_name":"metric_collector","events_processed":14749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2949.8,"last_update":"2026-03-21T15:24:39.068694944Z"} +2026/03/21 15:24:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:24:39.077885017Z"} +2026/03/21 15:24:44 [detection_layer] {"stage_name":"detection_layer","events_processed":491,"events_dropped":0,"avg_latency_ms":19.528451713777958,"throughput_eps":0,"last_update":"2026-03-21T15:24:39.210196125Z"} +2026/03/21 15:24:44 [transform_engine] {"stage_name":"transform_engine","events_processed":491,"events_dropped":0,"avg_latency_ms":260.2482761277325,"throughput_eps":0,"last_update":"2026-03-21T15:24:39.210170586Z"} +2026/03/21 15:24:44 ───────────────────────────────────────────────── +2026/03/21 15:24:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:24:49 [transform_engine] {"stage_name":"transform_engine","events_processed":491,"events_dropped":0,"avg_latency_ms":260.2482761277325,"throughput_eps":0,"last_update":"2026-03-21T15:24:44.210065889Z"} +2026/03/21 15:24:49 [log_collector] {"stage_name":"log_collector","events_processed":23513,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4702.6,"last_update":"2026-03-21T15:24:44.068828614Z"} +2026/03/21 15:24:49 [metric_collector] {"stage_name":"metric_collector","events_processed":14754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2950.8,"last_update":"2026-03-21T15:24:44.069159829Z"} +2026/03/21 15:24:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:24:44.078478889Z"} +2026/03/21 15:24:49 [detection_layer] {"stage_name":"detection_layer","events_processed":491,"events_dropped":0,"avg_latency_ms":19.528451713777958,"throughput_eps":0,"last_update":"2026-03-21T15:24:44.210178505Z"} +2026/03/21 15:24:49 ───────────────────────────────────────────────── +2026/03/21 15:24:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:24:54 [log_collector] {"stage_name":"log_collector","events_processed":23513,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4702.6,"last_update":"2026-03-21T15:24:49.06807251Z"} +2026/03/21 15:24:54 [metric_collector] {"stage_name":"metric_collector","events_processed":14759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2951.8,"last_update":"2026-03-21T15:24:49.068320565Z"} +2026/03/21 15:24:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5906,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:24:49.078652917Z"} +2026/03/21 15:24:54 [detection_layer] {"stage_name":"detection_layer","events_processed":491,"events_dropped":0,"avg_latency_ms":19.528451713777958,"throughput_eps":0,"last_update":"2026-03-21T15:24:49.210143342Z"} +2026/03/21 15:24:54 [transform_engine] {"stage_name":"transform_engine","events_processed":492,"events_dropped":0,"avg_latency_ms":231.495843902186,"throughput_eps":0,"last_update":"2026-03-21T15:24:49.326523775Z"} +2026/03/21 15:24:54 ───────────────────────────────────────────────── +2026/03/21 15:24:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:24:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5908,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:24:54.0788135Z"} +2026/03/21 15:24:59 [detection_layer] {"stage_name":"detection_layer","events_processed":492,"events_dropped":0,"avg_latency_ms":19.26467337102237,"throughput_eps":0,"last_update":"2026-03-21T15:24:54.210183907Z"} +2026/03/21 15:24:59 [transform_engine] {"stage_name":"transform_engine","events_processed":492,"events_dropped":0,"avg_latency_ms":231.495843902186,"throughput_eps":0,"last_update":"2026-03-21T15:24:54.210196069Z"} +2026/03/21 15:24:59 [log_collector] {"stage_name":"log_collector","events_processed":23513,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4702.6,"last_update":"2026-03-21T15:24:54.068782878Z"} +2026/03/21 15:24:59 [metric_collector] {"stage_name":"metric_collector","events_processed":14764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2952.8,"last_update":"2026-03-21T15:24:54.06893545Z"} +2026/03/21 15:24:59 ───────────────────────────────────────────────── +2026/03/21 15:25:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:25:04 [metric_collector] {"stage_name":"metric_collector","events_processed":14769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2953.8,"last_update":"2026-03-21T15:24:59.068467339Z"} +2026/03/21 15:25:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:24:59.078267131Z"} +2026/03/21 15:25:04 [detection_layer] {"stage_name":"detection_layer","events_processed":492,"events_dropped":0,"avg_latency_ms":19.26467337102237,"throughput_eps":0,"last_update":"2026-03-21T15:24:59.210696895Z"} +2026/03/21 15:25:04 [transform_engine] {"stage_name":"transform_engine","events_processed":492,"events_dropped":0,"avg_latency_ms":231.495843902186,"throughput_eps":0,"last_update":"2026-03-21T15:24:59.210709739Z"} +2026/03/21 15:25:04 [log_collector] {"stage_name":"log_collector","events_processed":23513,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4702.6,"last_update":"2026-03-21T15:24:59.068231418Z"} +2026/03/21 15:25:04 ───────────────────────────────────────────────── +2026/03/21 15:25:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:25:09 [log_collector] {"stage_name":"log_collector","events_processed":23513,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4702.6,"last_update":"2026-03-21T15:25:04.068512474Z"} +2026/03/21 15:25:09 [metric_collector] {"stage_name":"metric_collector","events_processed":14774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2954.8,"last_update":"2026-03-21T15:25:04.068433883Z"} +2026/03/21 15:25:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5912,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:25:04.078533729Z"} +2026/03/21 15:25:09 [detection_layer] {"stage_name":"detection_layer","events_processed":492,"events_dropped":0,"avg_latency_ms":19.26467337102237,"throughput_eps":0,"last_update":"2026-03-21T15:25:04.210058039Z"} +2026/03/21 15:25:09 [transform_engine] {"stage_name":"transform_engine","events_processed":492,"events_dropped":0,"avg_latency_ms":231.495843902186,"throughput_eps":0,"last_update":"2026-03-21T15:25:04.209760219Z"} +2026/03/21 15:25:09 ───────────────────────────────────────────────── +2026/03/21 15:25:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:25:14 [log_collector] {"stage_name":"log_collector","events_processed":23513,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4702.6,"last_update":"2026-03-21T15:25:09.069021457Z"} +2026/03/21 15:25:14 [metric_collector] {"stage_name":"metric_collector","events_processed":14779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2955.8,"last_update":"2026-03-21T15:25:09.06971226Z"} +2026/03/21 15:25:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:25:09.078016416Z"} +2026/03/21 15:25:14 [detection_layer] {"stage_name":"detection_layer","events_processed":492,"events_dropped":0,"avg_latency_ms":19.26467337102237,"throughput_eps":0,"last_update":"2026-03-21T15:25:09.210317865Z"} +2026/03/21 15:25:14 [transform_engine] {"stage_name":"transform_engine","events_processed":492,"events_dropped":0,"avg_latency_ms":231.495843902186,"throughput_eps":0,"last_update":"2026-03-21T15:25:09.210333044Z"} +2026/03/21 15:25:14 ───────────────────────────────────────────────── +2026/03/21 15:25:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:25:19 [log_collector] {"stage_name":"log_collector","events_processed":23513,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4702.6,"last_update":"2026-03-21T15:25:14.068210823Z"} +2026/03/21 15:25:19 [metric_collector] {"stage_name":"metric_collector","events_processed":14784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2956.8,"last_update":"2026-03-21T15:25:14.068834668Z"} +2026/03/21 15:25:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:25:14.076971073Z"} +2026/03/21 15:25:19 [detection_layer] {"stage_name":"detection_layer","events_processed":492,"events_dropped":0,"avg_latency_ms":19.26467337102237,"throughput_eps":0,"last_update":"2026-03-21T15:25:14.210395684Z"} +2026/03/21 15:25:19 [transform_engine] {"stage_name":"transform_engine","events_processed":492,"events_dropped":0,"avg_latency_ms":231.495843902186,"throughput_eps":0,"last_update":"2026-03-21T15:25:14.21041501Z"} +2026/03/21 15:25:19 ───────────────────────────────────────────────── +2026/03/21 15:25:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:25:24 [detection_layer] {"stage_name":"detection_layer","events_processed":492,"events_dropped":0,"avg_latency_ms":19.26467337102237,"throughput_eps":0,"last_update":"2026-03-21T15:25:19.210465726Z"} +2026/03/21 15:25:24 [transform_engine] {"stage_name":"transform_engine","events_processed":493,"events_dropped":0,"avg_latency_ms":200.39422132174883,"throughput_eps":0,"last_update":"2026-03-21T15:25:19.286467765Z"} +2026/03/21 15:25:24 [log_collector] {"stage_name":"log_collector","events_processed":23513,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4702.6,"last_update":"2026-03-21T15:25:19.068328929Z"} +2026/03/21 15:25:24 [metric_collector] {"stage_name":"metric_collector","events_processed":14789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2957.8,"last_update":"2026-03-21T15:25:19.068844275Z"} +2026/03/21 15:25:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5918,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:25:19.07824922Z"} +2026/03/21 15:25:24 ───────────────────────────────────────────────── +2026/03/21 15:25:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:25:29 [log_collector] {"stage_name":"log_collector","events_processed":23513,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4702.6,"last_update":"2026-03-21T15:25:24.068077296Z"} +2026/03/21 15:25:29 [metric_collector] {"stage_name":"metric_collector","events_processed":14794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2958.8,"last_update":"2026-03-21T15:25:24.068777076Z"} +2026/03/21 15:25:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5920,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:25:24.079102364Z"} +2026/03/21 15:25:29 [detection_layer] {"stage_name":"detection_layer","events_processed":493,"events_dropped":0,"avg_latency_ms":20.148289296817897,"throughput_eps":0,"last_update":"2026-03-21T15:25:24.21048293Z"} +2026/03/21 15:25:29 [transform_engine] {"stage_name":"transform_engine","events_processed":493,"events_dropped":0,"avg_latency_ms":200.39422132174883,"throughput_eps":0,"last_update":"2026-03-21T15:25:24.21049905Z"} +2026/03/21 15:25:29 ───────────────────────────────────────────────── +2026/03/21 15:25:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:25:34 [detection_layer] {"stage_name":"detection_layer","events_processed":493,"events_dropped":0,"avg_latency_ms":20.148289296817897,"throughput_eps":0,"last_update":"2026-03-21T15:25:29.210334466Z"} +2026/03/21 15:25:34 [transform_engine] {"stage_name":"transform_engine","events_processed":493,"events_dropped":0,"avg_latency_ms":200.39422132174883,"throughput_eps":0,"last_update":"2026-03-21T15:25:29.210385423Z"} +2026/03/21 15:25:34 [log_collector] {"stage_name":"log_collector","events_processed":23513,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4702.6,"last_update":"2026-03-21T15:25:29.068071416Z"} +2026/03/21 15:25:34 [metric_collector] {"stage_name":"metric_collector","events_processed":14799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2959.8,"last_update":"2026-03-21T15:25:29.068264436Z"} +2026/03/21 15:25:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:25:29.077915141Z"} +2026/03/21 15:25:34 ───────────────────────────────────────────────── +2026/03/21 15:25:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:25:39 [log_collector] {"stage_name":"log_collector","events_processed":23513,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4702.6,"last_update":"2026-03-21T15:25:34.068918822Z"} +2026/03/21 15:25:39 [metric_collector] {"stage_name":"metric_collector","events_processed":14804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2960.8,"last_update":"2026-03-21T15:25:34.069495226Z"} +2026/03/21 15:25:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:25:34.078511225Z"} +2026/03/21 15:25:39 [detection_layer] {"stage_name":"detection_layer","events_processed":493,"events_dropped":0,"avg_latency_ms":20.148289296817897,"throughput_eps":0,"last_update":"2026-03-21T15:25:34.210923366Z"} +2026/03/21 15:25:39 [transform_engine] {"stage_name":"transform_engine","events_processed":493,"events_dropped":0,"avg_latency_ms":200.39422132174883,"throughput_eps":0,"last_update":"2026-03-21T15:25:34.20970843Z"} +2026/03/21 15:25:39 ───────────────────────────────────────────────── +2026/03/21 15:25:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:25:44 [log_collector] {"stage_name":"log_collector","events_processed":23513,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4702.6,"last_update":"2026-03-21T15:25:39.068704572Z"} +2026/03/21 15:25:44 [metric_collector] {"stage_name":"metric_collector","events_processed":14809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2961.8,"last_update":"2026-03-21T15:25:39.068997624Z"} +2026/03/21 15:25:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:25:39.078787155Z"} +2026/03/21 15:25:44 [detection_layer] {"stage_name":"detection_layer","events_processed":493,"events_dropped":0,"avg_latency_ms":20.148289296817897,"throughput_eps":0,"last_update":"2026-03-21T15:25:39.210098066Z"} +2026/03/21 15:25:44 [transform_engine] {"stage_name":"transform_engine","events_processed":493,"events_dropped":0,"avg_latency_ms":200.39422132174883,"throughput_eps":0,"last_update":"2026-03-21T15:25:39.210109588Z"} +2026/03/21 15:25:44 ───────────────────────────────────────────────── +2026/03/21 15:25:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:25:49 [detection_layer] {"stage_name":"detection_layer","events_processed":493,"events_dropped":0,"avg_latency_ms":20.148289296817897,"throughput_eps":0,"last_update":"2026-03-21T15:25:44.210858615Z"} +2026/03/21 15:25:49 [transform_engine] {"stage_name":"transform_engine","events_processed":493,"events_dropped":0,"avg_latency_ms":200.39422132174883,"throughput_eps":0,"last_update":"2026-03-21T15:25:44.209730134Z"} +2026/03/21 15:25:49 [log_collector] {"stage_name":"log_collector","events_processed":23513,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4702.6,"last_update":"2026-03-21T15:25:44.068820296Z"} +2026/03/21 15:25:49 [metric_collector] {"stage_name":"metric_collector","events_processed":14814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2962.8,"last_update":"2026-03-21T15:25:44.069189975Z"} +2026/03/21 15:25:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:25:44.077504761Z"} +2026/03/21 15:25:49 ───────────────────────────────────────────────── +2026/03/21 15:25:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:25:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5930,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:25:49.079112263Z"} +2026/03/21 15:25:54 [detection_layer] {"stage_name":"detection_layer","events_processed":493,"events_dropped":0,"avg_latency_ms":20.148289296817897,"throughput_eps":0,"last_update":"2026-03-21T15:25:49.21037894Z"} +2026/03/21 15:25:54 [transform_engine] {"stage_name":"transform_engine","events_processed":494,"events_dropped":0,"avg_latency_ms":174.99219985739907,"throughput_eps":0,"last_update":"2026-03-21T15:25:49.283773515Z"} +2026/03/21 15:25:54 [log_collector] {"stage_name":"log_collector","events_processed":23513,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4702.6,"last_update":"2026-03-21T15:25:49.068855688Z"} +2026/03/21 15:25:54 [metric_collector] {"stage_name":"metric_collector","events_processed":14819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2963.8,"last_update":"2026-03-21T15:25:49.069240735Z"} +2026/03/21 15:25:54 ───────────────────────────────────────────────── +Saved state: 17 clusters, 23514 messages, reason: none +2026/03/21 15:25:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:25:59 [log_collector] {"stage_name":"log_collector","events_processed":23513,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4702.6,"last_update":"2026-03-21T15:25:54.068342479Z"} +2026/03/21 15:25:59 [metric_collector] {"stage_name":"metric_collector","events_processed":14824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2964.8,"last_update":"2026-03-21T15:25:54.06882389Z"} +2026/03/21 15:25:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:25:54.076909198Z"} +2026/03/21 15:25:59 [detection_layer] {"stage_name":"detection_layer","events_processed":494,"events_dropped":0,"avg_latency_ms":21.01204243745432,"throughput_eps":0,"last_update":"2026-03-21T15:25:54.210290135Z"} +2026/03/21 15:25:59 [transform_engine] {"stage_name":"transform_engine","events_processed":494,"events_dropped":0,"avg_latency_ms":174.99219985739907,"throughput_eps":0,"last_update":"2026-03-21T15:25:54.210190634Z"} +2026/03/21 15:25:59 ───────────────────────────────────────────────── +2026/03/21 15:26:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:26:04 [log_collector] {"stage_name":"log_collector","events_processed":23527,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4705.4,"last_update":"2026-03-21T15:25:59.068233214Z"} +2026/03/21 15:26:04 [metric_collector] {"stage_name":"metric_collector","events_processed":14829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2965.8,"last_update":"2026-03-21T15:25:59.069064125Z"} +2026/03/21 15:26:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:25:59.076930323Z"} +2026/03/21 15:26:04 [detection_layer] {"stage_name":"detection_layer","events_processed":494,"events_dropped":0,"avg_latency_ms":21.01204243745432,"throughput_eps":0,"last_update":"2026-03-21T15:25:59.210282885Z"} +2026/03/21 15:26:04 [transform_engine] {"stage_name":"transform_engine","events_processed":494,"events_dropped":0,"avg_latency_ms":174.99219985739907,"throughput_eps":0,"last_update":"2026-03-21T15:25:59.21031126Z"} +2026/03/21 15:26:04 ───────────────────────────────────────────────── +2026/03/21 15:26:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:26:09 [log_collector] {"stage_name":"log_collector","events_processed":23527,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4705.4,"last_update":"2026-03-21T15:26:04.069000688Z"} +2026/03/21 15:26:09 [metric_collector] {"stage_name":"metric_collector","events_processed":14834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2966.8,"last_update":"2026-03-21T15:26:04.069327836Z"} +2026/03/21 15:26:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:26:04.079508256Z"} +2026/03/21 15:26:09 [detection_layer] {"stage_name":"detection_layer","events_processed":494,"events_dropped":0,"avg_latency_ms":21.01204243745432,"throughput_eps":0,"last_update":"2026-03-21T15:26:04.209984619Z"} +2026/03/21 15:26:09 [transform_engine] {"stage_name":"transform_engine","events_processed":494,"events_dropped":0,"avg_latency_ms":174.99219985739907,"throughput_eps":0,"last_update":"2026-03-21T15:26:04.209777763Z"} +2026/03/21 15:26:09 ───────────────────────────────────────────────── +2026/03/21 15:26:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:26:14 [log_collector] {"stage_name":"log_collector","events_processed":23527,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4705.4,"last_update":"2026-03-21T15:26:09.068785441Z"} +2026/03/21 15:26:14 [metric_collector] {"stage_name":"metric_collector","events_processed":14839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2967.8,"last_update":"2026-03-21T15:26:09.069600493Z"} +2026/03/21 15:26:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:26:09.078315085Z"} +2026/03/21 15:26:14 [detection_layer] {"stage_name":"detection_layer","events_processed":494,"events_dropped":0,"avg_latency_ms":21.01204243745432,"throughput_eps":0,"last_update":"2026-03-21T15:26:09.210715954Z"} +2026/03/21 15:26:14 [transform_engine] {"stage_name":"transform_engine","events_processed":494,"events_dropped":0,"avg_latency_ms":174.99219985739907,"throughput_eps":0,"last_update":"2026-03-21T15:26:09.210756191Z"} +2026/03/21 15:26:14 ───────────────────────────────────────────────── +2026/03/21 15:26:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:26:19 [log_collector] {"stage_name":"log_collector","events_processed":23527,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4705.4,"last_update":"2026-03-21T15:26:19.068494087Z"} +2026/03/21 15:26:19 [metric_collector] {"stage_name":"metric_collector","events_processed":14844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2968.8,"last_update":"2026-03-21T15:26:14.069585069Z"} +2026/03/21 15:26:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5940,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:26:14.078563658Z"} +2026/03/21 15:26:19 [detection_layer] {"stage_name":"detection_layer","events_processed":494,"events_dropped":0,"avg_latency_ms":21.01204243745432,"throughput_eps":0,"last_update":"2026-03-21T15:26:14.209865973Z"} +2026/03/21 15:26:19 [transform_engine] {"stage_name":"transform_engine","events_processed":494,"events_dropped":0,"avg_latency_ms":174.99219985739907,"throughput_eps":0,"last_update":"2026-03-21T15:26:14.209855503Z"} +2026/03/21 15:26:19 ───────────────────────────────────────────────── +2026/03/21 15:26:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:26:24 [log_collector] {"stage_name":"log_collector","events_processed":23527,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4705.4,"last_update":"2026-03-21T15:26:19.068494087Z"} +2026/03/21 15:26:24 [metric_collector] {"stage_name":"metric_collector","events_processed":14849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2969.8,"last_update":"2026-03-21T15:26:19.068932267Z"} +2026/03/21 15:26:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:26:19.077862823Z"} +2026/03/21 15:26:24 [detection_layer] {"stage_name":"detection_layer","events_processed":494,"events_dropped":0,"avg_latency_ms":21.01204243745432,"throughput_eps":0,"last_update":"2026-03-21T15:26:19.210232963Z"} +2026/03/21 15:26:24 [transform_engine] {"stage_name":"transform_engine","events_processed":495,"events_dropped":0,"avg_latency_ms":163.30002448591927,"throughput_eps":0,"last_update":"2026-03-21T15:26:19.326937778Z"} +2026/03/21 15:26:24 ───────────────────────────────────────────────── +2026/03/21 15:26:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:26:29 [metric_collector] {"stage_name":"metric_collector","events_processed":14854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2970.8,"last_update":"2026-03-21T15:26:24.068422529Z"} +2026/03/21 15:26:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:26:24.076965453Z"} +2026/03/21 15:26:29 [detection_layer] {"stage_name":"detection_layer","events_processed":495,"events_dropped":0,"avg_latency_ms":21.639539549963455,"throughput_eps":0,"last_update":"2026-03-21T15:26:24.21031575Z"} +2026/03/21 15:26:29 [transform_engine] {"stage_name":"transform_engine","events_processed":495,"events_dropped":0,"avg_latency_ms":163.30002448591927,"throughput_eps":0,"last_update":"2026-03-21T15:26:24.210391124Z"} +2026/03/21 15:26:29 [log_collector] {"stage_name":"log_collector","events_processed":23527,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4705.4,"last_update":"2026-03-21T15:26:24.068197558Z"} +2026/03/21 15:26:29 ───────────────────────────────────────────────── +2026/03/21 15:26:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:26:34 [detection_layer] {"stage_name":"detection_layer","events_processed":495,"events_dropped":0,"avg_latency_ms":21.639539549963455,"throughput_eps":0,"last_update":"2026-03-21T15:26:29.210727489Z"} +2026/03/21 15:26:34 [transform_engine] {"stage_name":"transform_engine","events_processed":495,"events_dropped":0,"avg_latency_ms":163.30002448591927,"throughput_eps":0,"last_update":"2026-03-21T15:26:29.210668055Z"} +2026/03/21 15:26:34 [log_collector] {"stage_name":"log_collector","events_processed":23527,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4705.4,"last_update":"2026-03-21T15:26:29.068728794Z"} +2026/03/21 15:26:34 [metric_collector] {"stage_name":"metric_collector","events_processed":14859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2971.8,"last_update":"2026-03-21T15:26:29.069215026Z"} +2026/03/21 15:26:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:26:29.078335666Z"} +2026/03/21 15:26:34 ───────────────────────────────────────────────── +2026/03/21 15:26:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:26:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:26:34.079107184Z"} +2026/03/21 15:26:39 [detection_layer] {"stage_name":"detection_layer","events_processed":495,"events_dropped":0,"avg_latency_ms":21.639539549963455,"throughput_eps":0,"last_update":"2026-03-21T15:26:34.210489803Z"} +2026/03/21 15:26:39 [transform_engine] {"stage_name":"transform_engine","events_processed":495,"events_dropped":0,"avg_latency_ms":163.30002448591927,"throughput_eps":0,"last_update":"2026-03-21T15:26:34.21060315Z"} +2026/03/21 15:26:39 [log_collector] {"stage_name":"log_collector","events_processed":23527,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4705.4,"last_update":"2026-03-21T15:26:34.068912156Z"} +2026/03/21 15:26:39 [metric_collector] {"stage_name":"metric_collector","events_processed":14864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2972.8,"last_update":"2026-03-21T15:26:34.069603359Z"} +2026/03/21 15:26:39 ───────────────────────────────────────────────── +2026/03/21 15:26:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:26:44 [log_collector] {"stage_name":"log_collector","events_processed":23527,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4705.4,"last_update":"2026-03-21T15:26:39.068090401Z"} +2026/03/21 15:26:44 [metric_collector] {"stage_name":"metric_collector","events_processed":14868,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2973.6,"last_update":"2026-03-21T15:26:39.068177899Z"} +2026/03/21 15:26:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:26:39.077033832Z"} +2026/03/21 15:26:44 [detection_layer] {"stage_name":"detection_layer","events_processed":495,"events_dropped":0,"avg_latency_ms":21.639539549963455,"throughput_eps":0,"last_update":"2026-03-21T15:26:39.210449676Z"} +2026/03/21 15:26:44 [transform_engine] {"stage_name":"transform_engine","events_processed":495,"events_dropped":0,"avg_latency_ms":163.30002448591927,"throughput_eps":0,"last_update":"2026-03-21T15:26:39.210421131Z"} +2026/03/21 15:26:44 ───────────────────────────────────────────────── +2026/03/21 15:26:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:26:49 [log_collector] {"stage_name":"log_collector","events_processed":23527,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4705.4,"last_update":"2026-03-21T15:26:44.068143905Z"} +2026/03/21 15:26:49 [metric_collector] {"stage_name":"metric_collector","events_processed":14873,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2974.6,"last_update":"2026-03-21T15:26:44.0680002Z"} +2026/03/21 15:26:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:26:44.078321791Z"} +2026/03/21 15:26:49 [detection_layer] {"stage_name":"detection_layer","events_processed":495,"events_dropped":0,"avg_latency_ms":21.639539549963455,"throughput_eps":0,"last_update":"2026-03-21T15:26:44.211232697Z"} +2026/03/21 15:26:49 [transform_engine] {"stage_name":"transform_engine","events_processed":495,"events_dropped":0,"avg_latency_ms":163.30002448591927,"throughput_eps":0,"last_update":"2026-03-21T15:26:44.211272273Z"} +2026/03/21 15:26:49 ───────────────────────────────────────────────── +2026/03/21 15:26:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:26:54 [log_collector] {"stage_name":"log_collector","events_processed":23527,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4705.4,"last_update":"2026-03-21T15:26:49.068298253Z"} +2026/03/21 15:26:54 [metric_collector] {"stage_name":"metric_collector","events_processed":14878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2975.6,"last_update":"2026-03-21T15:26:49.068389177Z"} +2026/03/21 15:26:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:26:49.078413779Z"} +2026/03/21 15:26:54 [detection_layer] {"stage_name":"detection_layer","events_processed":495,"events_dropped":0,"avg_latency_ms":21.639539549963455,"throughput_eps":0,"last_update":"2026-03-21T15:26:49.210863481Z"} +2026/03/21 15:26:54 [transform_engine] {"stage_name":"transform_engine","events_processed":496,"events_dropped":0,"avg_latency_ms":144.95185538873542,"throughput_eps":0,"last_update":"2026-03-21T15:26:49.281310511Z"} +2026/03/21 15:26:54 ───────────────────────────────────────────────── +Saved state: 17 clusters, 23528 messages, reason: none +2026/03/21 15:26:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:26:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:26:54.077957787Z"} +2026/03/21 15:26:59 [detection_layer] {"stage_name":"detection_layer","events_processed":496,"events_dropped":0,"avg_latency_ms":21.761096439970768,"throughput_eps":0,"last_update":"2026-03-21T15:26:54.210451555Z"} +2026/03/21 15:26:59 [transform_engine] {"stage_name":"transform_engine","events_processed":496,"events_dropped":0,"avg_latency_ms":144.95185538873542,"throughput_eps":0,"last_update":"2026-03-21T15:26:54.21038096Z"} +2026/03/21 15:26:59 [log_collector] {"stage_name":"log_collector","events_processed":23527,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4705.4,"last_update":"2026-03-21T15:26:54.068265853Z"} +2026/03/21 15:26:59 [metric_collector] {"stage_name":"metric_collector","events_processed":14883,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2976.6,"last_update":"2026-03-21T15:26:54.067994543Z"} +2026/03/21 15:26:59 ───────────────────────────────────────────────── +2026/03/21 15:27:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:27:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5958,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:26:59.075241778Z"} +2026/03/21 15:27:04 [detection_layer] {"stage_name":"detection_layer","events_processed":496,"events_dropped":0,"avg_latency_ms":21.761096439970768,"throughput_eps":0,"last_update":"2026-03-21T15:26:59.210572619Z"} +2026/03/21 15:27:04 [transform_engine] {"stage_name":"transform_engine","events_processed":496,"events_dropped":0,"avg_latency_ms":144.95185538873542,"throughput_eps":0,"last_update":"2026-03-21T15:26:59.210586336Z"} +2026/03/21 15:27:04 [log_collector] {"stage_name":"log_collector","events_processed":23532,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4706.4,"last_update":"2026-03-21T15:26:59.068973621Z"} +2026/03/21 15:27:04 [metric_collector] {"stage_name":"metric_collector","events_processed":14889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2977.8,"last_update":"2026-03-21T15:26:59.069100103Z"} +2026/03/21 15:27:04 ───────────────────────────────────────────────── +2026/03/21 15:27:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:27:09 [detection_layer] {"stage_name":"detection_layer","events_processed":496,"events_dropped":0,"avg_latency_ms":21.761096439970768,"throughput_eps":0,"last_update":"2026-03-21T15:27:04.210250225Z"} +2026/03/21 15:27:09 [transform_engine] {"stage_name":"transform_engine","events_processed":496,"events_dropped":0,"avg_latency_ms":144.95185538873542,"throughput_eps":0,"last_update":"2026-03-21T15:27:04.210317354Z"} +2026/03/21 15:27:09 [log_collector] {"stage_name":"log_collector","events_processed":23532,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4706.4,"last_update":"2026-03-21T15:27:04.06904433Z"} +2026/03/21 15:27:09 [metric_collector] {"stage_name":"metric_collector","events_processed":14894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2978.8,"last_update":"2026-03-21T15:27:04.069389301Z"} +2026/03/21 15:27:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:27:04.078851636Z"} +2026/03/21 15:27:09 ───────────────────────────────────────────────── +2026/03/21 15:27:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:27:14 [log_collector] {"stage_name":"log_collector","events_processed":23532,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4706.4,"last_update":"2026-03-21T15:27:09.068584633Z"} +2026/03/21 15:27:14 [metric_collector] {"stage_name":"metric_collector","events_processed":14899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2979.8,"last_update":"2026-03-21T15:27:09.068911339Z"} +2026/03/21 15:27:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5962,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:27:09.074960666Z"} +2026/03/21 15:27:14 [detection_layer] {"stage_name":"detection_layer","events_processed":496,"events_dropped":0,"avg_latency_ms":21.761096439970768,"throughput_eps":0,"last_update":"2026-03-21T15:27:09.210363285Z"} +2026/03/21 15:27:14 [transform_engine] {"stage_name":"transform_engine","events_processed":496,"events_dropped":0,"avg_latency_ms":144.95185538873542,"throughput_eps":0,"last_update":"2026-03-21T15:27:09.210185805Z"} +2026/03/21 15:27:14 ───────────────────────────────────────────────── +2026/03/21 15:27:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:27:19 [log_collector] {"stage_name":"log_collector","events_processed":23532,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4706.4,"last_update":"2026-03-21T15:27:14.068614845Z"} +2026/03/21 15:27:19 [metric_collector] {"stage_name":"metric_collector","events_processed":14904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2980.8,"last_update":"2026-03-21T15:27:14.068980055Z"} +2026/03/21 15:27:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:27:14.076854588Z"} +2026/03/21 15:27:19 [detection_layer] {"stage_name":"detection_layer","events_processed":496,"events_dropped":0,"avg_latency_ms":21.761096439970768,"throughput_eps":0,"last_update":"2026-03-21T15:27:14.210157235Z"} +2026/03/21 15:27:19 [transform_engine] {"stage_name":"transform_engine","events_processed":496,"events_dropped":0,"avg_latency_ms":144.95185538873542,"throughput_eps":0,"last_update":"2026-03-21T15:27:14.210120375Z"} +2026/03/21 15:27:19 ───────────────────────────────────────────────── +2026/03/21 15:27:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:27:24 [transform_engine] {"stage_name":"transform_engine","events_processed":496,"events_dropped":0,"avg_latency_ms":144.95185538873542,"throughput_eps":0,"last_update":"2026-03-21T15:27:14.210120375Z"} +2026/03/21 15:27:24 [log_collector] {"stage_name":"log_collector","events_processed":23532,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4706.4,"last_update":"2026-03-21T15:27:24.068151487Z"} +2026/03/21 15:27:24 [metric_collector] {"stage_name":"metric_collector","events_processed":14909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2981.8,"last_update":"2026-03-21T15:27:19.068478218Z"} +2026/03/21 15:27:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:27:19.077421308Z"} +2026/03/21 15:27:24 [detection_layer] {"stage_name":"detection_layer","events_processed":496,"events_dropped":0,"avg_latency_ms":21.761096439970768,"throughput_eps":0,"last_update":"2026-03-21T15:27:19.209955493Z"} +2026/03/21 15:27:24 ───────────────────────────────────────────────── +2026/03/21 15:27:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:27:29 [metric_collector] {"stage_name":"metric_collector","events_processed":14914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2982.8,"last_update":"2026-03-21T15:27:24.068672576Z"} +2026/03/21 15:27:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:27:24.080039629Z"} +2026/03/21 15:27:29 [detection_layer] {"stage_name":"detection_layer","events_processed":496,"events_dropped":0,"avg_latency_ms":21.761096439970768,"throughput_eps":0,"last_update":"2026-03-21T15:27:24.21030123Z"} +2026/03/21 15:27:29 [transform_engine] {"stage_name":"transform_engine","events_processed":497,"events_dropped":0,"avg_latency_ms":1283.2575277109886,"throughput_eps":0,"last_update":"2026-03-21T15:27:25.046473574Z"} +2026/03/21 15:27:29 [log_collector] {"stage_name":"log_collector","events_processed":23532,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4706.4,"last_update":"2026-03-21T15:27:24.068151487Z"} +2026/03/21 15:27:29 ───────────────────────────────────────────────── +2026/03/21 15:27:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:27:34 [log_collector] {"stage_name":"log_collector","events_processed":23532,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4706.4,"last_update":"2026-03-21T15:27:29.069331223Z"} +2026/03/21 15:27:34 [metric_collector] {"stage_name":"metric_collector","events_processed":14919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2983.8,"last_update":"2026-03-21T15:27:29.069211213Z"} +2026/03/21 15:27:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5970,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:27:29.076248102Z"} +2026/03/21 15:27:34 [detection_layer] {"stage_name":"detection_layer","events_processed":497,"events_dropped":0,"avg_latency_ms":20.346574351976614,"throughput_eps":0,"last_update":"2026-03-21T15:27:29.210489628Z"} +2026/03/21 15:27:34 [transform_engine] {"stage_name":"transform_engine","events_processed":497,"events_dropped":0,"avg_latency_ms":1283.2575277109886,"throughput_eps":0,"last_update":"2026-03-21T15:27:29.210513674Z"} +2026/03/21 15:27:34 ───────────────────────────────────────────────── +2026/03/21 15:27:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:27:39 [log_collector] {"stage_name":"log_collector","events_processed":23532,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4706.4,"last_update":"2026-03-21T15:27:34.070423502Z"} +2026/03/21 15:27:39 [metric_collector] {"stage_name":"metric_collector","events_processed":14924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2984.8,"last_update":"2026-03-21T15:27:34.069260996Z"} +2026/03/21 15:27:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:27:34.075874533Z"} +2026/03/21 15:27:39 [detection_layer] {"stage_name":"detection_layer","events_processed":497,"events_dropped":0,"avg_latency_ms":20.346574351976614,"throughput_eps":0,"last_update":"2026-03-21T15:27:34.210492299Z"} +2026/03/21 15:27:39 [transform_engine] {"stage_name":"transform_engine","events_processed":497,"events_dropped":0,"avg_latency_ms":1283.2575277109886,"throughput_eps":0,"last_update":"2026-03-21T15:27:34.210508531Z"} +2026/03/21 15:27:39 ───────────────────────────────────────────────── +2026/03/21 15:27:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:27:44 [log_collector] {"stage_name":"log_collector","events_processed":23532,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4706.4,"last_update":"2026-03-21T15:27:39.068578865Z"} +2026/03/21 15:27:44 [metric_collector] {"stage_name":"metric_collector","events_processed":14929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2985.8,"last_update":"2026-03-21T15:27:39.068859513Z"} +2026/03/21 15:27:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:27:39.078659083Z"} +2026/03/21 15:27:44 [detection_layer] {"stage_name":"detection_layer","events_processed":497,"events_dropped":0,"avg_latency_ms":20.346574351976614,"throughput_eps":0,"last_update":"2026-03-21T15:27:39.20988902Z"} +2026/03/21 15:27:44 [transform_engine] {"stage_name":"transform_engine","events_processed":497,"events_dropped":0,"avg_latency_ms":1283.2575277109886,"throughput_eps":0,"last_update":"2026-03-21T15:27:39.209907105Z"} +2026/03/21 15:27:44 ───────────────────────────────────────────────── +2026/03/21 15:27:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:27:49 [metric_collector] {"stage_name":"metric_collector","events_processed":14934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2986.8,"last_update":"2026-03-21T15:27:44.068836817Z"} +2026/03/21 15:27:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:27:44.074809037Z"} +2026/03/21 15:27:49 [detection_layer] {"stage_name":"detection_layer","events_processed":497,"events_dropped":0,"avg_latency_ms":20.346574351976614,"throughput_eps":0,"last_update":"2026-03-21T15:27:44.210053333Z"} +2026/03/21 15:27:49 [transform_engine] {"stage_name":"transform_engine","events_processed":497,"events_dropped":0,"avg_latency_ms":1283.2575277109886,"throughput_eps":0,"last_update":"2026-03-21T15:27:44.210090003Z"} +2026/03/21 15:27:49 [log_collector] {"stage_name":"log_collector","events_processed":23541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4708.2,"last_update":"2026-03-21T15:27:44.06861374Z"} +2026/03/21 15:27:49 ───────────────────────────────────────────────── +2026/03/21 15:27:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:27:54 [log_collector] {"stage_name":"log_collector","events_processed":23543,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4708.6,"last_update":"2026-03-21T15:27:49.068599088Z"} +2026/03/21 15:27:54 [metric_collector] {"stage_name":"metric_collector","events_processed":14939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2987.8,"last_update":"2026-03-21T15:27:49.068844598Z"} +2026/03/21 15:27:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:27:49.075497943Z"} +2026/03/21 15:27:54 [detection_layer] {"stage_name":"detection_layer","events_processed":497,"events_dropped":0,"avg_latency_ms":20.346574351976614,"throughput_eps":0,"last_update":"2026-03-21T15:27:49.211163497Z"} +2026/03/21 15:27:54 [transform_engine] {"stage_name":"transform_engine","events_processed":498,"events_dropped":0,"avg_latency_ms":1137.916608368791,"throughput_eps":0,"last_update":"2026-03-21T15:27:49.766210501Z"} +2026/03/21 15:27:54 ───────────────────────────────────────────────── +Saved state: 17 clusters, 23749 messages, reason: none +2026/03/21 15:27:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:27:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:27:54.076643004Z"} +2026/03/21 15:27:59 [detection_layer] {"stage_name":"detection_layer","events_processed":498,"events_dropped":0,"avg_latency_ms":19.067469881581292,"throughput_eps":0,"last_update":"2026-03-21T15:27:54.20987678Z"} +2026/03/21 15:27:59 [transform_engine] {"stage_name":"transform_engine","events_processed":498,"events_dropped":0,"avg_latency_ms":1137.916608368791,"throughput_eps":0,"last_update":"2026-03-21T15:27:54.209887901Z"} +2026/03/21 15:27:59 [log_collector] {"stage_name":"log_collector","events_processed":23574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4714.8,"last_update":"2026-03-21T15:27:54.068734847Z"} +2026/03/21 15:27:59 [metric_collector] {"stage_name":"metric_collector","events_processed":14944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2988.8,"last_update":"2026-03-21T15:27:54.069324015Z"} +2026/03/21 15:27:59 ───────────────────────────────────────────────── +2026/03/21 15:28:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:28:04 [log_collector] {"stage_name":"log_collector","events_processed":23791,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4758.2,"last_update":"2026-03-21T15:27:59.068067918Z"} +2026/03/21 15:28:04 [metric_collector] {"stage_name":"metric_collector","events_processed":14948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2989.6,"last_update":"2026-03-21T15:27:59.068027701Z"} +2026/03/21 15:28:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:27:59.078644487Z"} +2026/03/21 15:28:04 [detection_layer] {"stage_name":"detection_layer","events_processed":498,"events_dropped":0,"avg_latency_ms":19.067469881581292,"throughput_eps":0,"last_update":"2026-03-21T15:27:59.210615454Z"} +2026/03/21 15:28:04 [transform_engine] {"stage_name":"transform_engine","events_processed":498,"events_dropped":0,"avg_latency_ms":1137.916608368791,"throughput_eps":0,"last_update":"2026-03-21T15:27:59.210626565Z"} +2026/03/21 15:28:04 ───────────────────────────────────────────────── +2026/03/21 15:28:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:28:09 [log_collector] {"stage_name":"log_collector","events_processed":23894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4778.8,"last_update":"2026-03-21T15:28:04.068514173Z"} +2026/03/21 15:28:09 [metric_collector] {"stage_name":"metric_collector","events_processed":14953,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2990.6,"last_update":"2026-03-21T15:28:04.068518571Z"} +2026/03/21 15:28:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:28:04.07478234Z"} +2026/03/21 15:28:09 [detection_layer] {"stage_name":"detection_layer","events_processed":498,"events_dropped":0,"avg_latency_ms":19.067469881581292,"throughput_eps":0,"last_update":"2026-03-21T15:28:04.209938517Z"} +2026/03/21 15:28:09 [transform_engine] {"stage_name":"transform_engine","events_processed":498,"events_dropped":0,"avg_latency_ms":1137.916608368791,"throughput_eps":0,"last_update":"2026-03-21T15:28:04.209922938Z"} +2026/03/21 15:28:09 ───────────────────────────────────────────────── +2026/03/21 15:28:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:28:14 [transform_engine] {"stage_name":"transform_engine","events_processed":498,"events_dropped":0,"avg_latency_ms":1137.916608368791,"throughput_eps":0,"last_update":"2026-03-21T15:28:09.210441431Z"} +2026/03/21 15:28:14 [log_collector] {"stage_name":"log_collector","events_processed":23905,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4781,"last_update":"2026-03-21T15:28:09.068377552Z"} +2026/03/21 15:28:14 [metric_collector] {"stage_name":"metric_collector","events_processed":14959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2991.8,"last_update":"2026-03-21T15:28:09.068604547Z"} +2026/03/21 15:28:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:28:09.076201058Z"} +2026/03/21 15:28:14 [detection_layer] {"stage_name":"detection_layer","events_processed":498,"events_dropped":0,"avg_latency_ms":19.067469881581292,"throughput_eps":0,"last_update":"2026-03-21T15:28:09.210431002Z"} +2026/03/21 15:28:14 ───────────────────────────────────────────────── +2026/03/21 15:28:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:28:19 [transform_engine] {"stage_name":"transform_engine","events_processed":498,"events_dropped":0,"avg_latency_ms":1137.916608368791,"throughput_eps":0,"last_update":"2026-03-21T15:28:14.210011399Z"} +2026/03/21 15:28:19 [log_collector] {"stage_name":"log_collector","events_processed":23905,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4781,"last_update":"2026-03-21T15:28:14.068738254Z"} +2026/03/21 15:28:19 [metric_collector] {"stage_name":"metric_collector","events_processed":14964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2992.8,"last_update":"2026-03-21T15:28:14.069027288Z"} +2026/03/21 15:28:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:28:14.075905823Z"} +2026/03/21 15:28:19 [detection_layer] {"stage_name":"detection_layer","events_processed":498,"events_dropped":0,"avg_latency_ms":19.067469881581292,"throughput_eps":0,"last_update":"2026-03-21T15:28:14.210000037Z"} +2026/03/21 15:28:19 ───────────────────────────────────────────────── +2026/03/21 15:28:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:28:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5990,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:28:19.075328398Z"} +2026/03/21 15:28:24 [detection_layer] {"stage_name":"detection_layer","events_processed":498,"events_dropped":0,"avg_latency_ms":19.067469881581292,"throughput_eps":0,"last_update":"2026-03-21T15:28:19.210733783Z"} +2026/03/21 15:28:24 [transform_engine] {"stage_name":"transform_engine","events_processed":499,"events_dropped":0,"avg_latency_ms":949.4899440950328,"throughput_eps":0,"last_update":"2026-03-21T15:28:19.406535135Z"} +2026/03/21 15:28:24 [log_collector] {"stage_name":"log_collector","events_processed":23916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4783.2,"last_update":"2026-03-21T15:28:19.068139759Z"} +2026/03/21 15:28:24 [metric_collector] {"stage_name":"metric_collector","events_processed":14969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2993.8,"last_update":"2026-03-21T15:28:19.068574051Z"} +2026/03/21 15:28:24 ───────────────────────────────────────────────── +2026/03/21 15:28:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:28:29 [transform_engine] {"stage_name":"transform_engine","events_processed":499,"events_dropped":0,"avg_latency_ms":949.4899440950328,"throughput_eps":0,"last_update":"2026-03-21T15:28:24.210377103Z"} +2026/03/21 15:28:29 [log_collector] {"stage_name":"log_collector","events_processed":23923,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4784.6,"last_update":"2026-03-21T15:28:24.068334253Z"} +2026/03/21 15:28:29 [metric_collector] {"stage_name":"metric_collector","events_processed":14974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2994.8,"last_update":"2026-03-21T15:28:24.068644518Z"} +2026/03/21 15:28:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5992,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:28:24.075228068Z"} +2026/03/21 15:28:29 [detection_layer] {"stage_name":"detection_layer","events_processed":499,"events_dropped":0,"avg_latency_ms":18.276507505265034,"throughput_eps":0,"last_update":"2026-03-21T15:28:24.210368256Z"} +2026/03/21 15:28:29 ───────────────────────────────────────────────── +2026/03/21 15:28:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:28:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:28:29.078249168Z"} +2026/03/21 15:28:34 [detection_layer] {"stage_name":"detection_layer","events_processed":499,"events_dropped":0,"avg_latency_ms":18.276507505265034,"throughput_eps":0,"last_update":"2026-03-21T15:28:29.210550808Z"} +2026/03/21 15:28:34 [transform_engine] {"stage_name":"transform_engine","events_processed":499,"events_dropped":0,"avg_latency_ms":949.4899440950328,"throughput_eps":0,"last_update":"2026-03-21T15:28:29.21055699Z"} +2026/03/21 15:28:34 [log_collector] {"stage_name":"log_collector","events_processed":23932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4786.4,"last_update":"2026-03-21T15:28:34.068397228Z"} +2026/03/21 15:28:34 [metric_collector] {"stage_name":"metric_collector","events_processed":14979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2995.8,"last_update":"2026-03-21T15:28:29.068432034Z"} +2026/03/21 15:28:34 ───────────────────────────────────────────────── +2026/03/21 15:28:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:28:39 [detection_layer] {"stage_name":"detection_layer","events_processed":499,"events_dropped":0,"avg_latency_ms":18.276507505265034,"throughput_eps":0,"last_update":"2026-03-21T15:28:34.210172466Z"} +2026/03/21 15:28:39 [transform_engine] {"stage_name":"transform_engine","events_processed":499,"events_dropped":0,"avg_latency_ms":949.4899440950328,"throughput_eps":0,"last_update":"2026-03-21T15:28:34.210184639Z"} +2026/03/21 15:28:39 [log_collector] {"stage_name":"log_collector","events_processed":23932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4786.4,"last_update":"2026-03-21T15:28:39.068324483Z"} +2026/03/21 15:28:39 [metric_collector] {"stage_name":"metric_collector","events_processed":14984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2996.8,"last_update":"2026-03-21T15:28:34.068988621Z"} +2026/03/21 15:28:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5996,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:28:34.077918136Z"} +2026/03/21 15:28:39 ───────────────────────────────────────────────── +2026/03/21 15:28:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:28:44 [log_collector] {"stage_name":"log_collector","events_processed":23932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4786.4,"last_update":"2026-03-21T15:28:39.068324483Z"} +2026/03/21 15:28:44 [metric_collector] {"stage_name":"metric_collector","events_processed":14989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2997.8,"last_update":"2026-03-21T15:28:39.06870972Z"} +2026/03/21 15:28:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:28:39.078917273Z"} +2026/03/21 15:28:44 [detection_layer] {"stage_name":"detection_layer","events_processed":499,"events_dropped":0,"avg_latency_ms":18.276507505265034,"throughput_eps":0,"last_update":"2026-03-21T15:28:39.210105199Z"} +2026/03/21 15:28:44 [transform_engine] {"stage_name":"transform_engine","events_processed":499,"events_dropped":0,"avg_latency_ms":949.4899440950328,"throughput_eps":0,"last_update":"2026-03-21T15:28:39.210113856Z"} +2026/03/21 15:28:44 ───────────────────────────────────────────────── +2026/03/21 15:28:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:28:49 [log_collector] {"stage_name":"log_collector","events_processed":23932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4786.4,"last_update":"2026-03-21T15:28:44.06871806Z"} +2026/03/21 15:28:49 [metric_collector] {"stage_name":"metric_collector","events_processed":14994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2998.8,"last_update":"2026-03-21T15:28:44.069033555Z"} +2026/03/21 15:28:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:28:44.078685983Z"} +2026/03/21 15:28:49 [detection_layer] {"stage_name":"detection_layer","events_processed":499,"events_dropped":0,"avg_latency_ms":18.276507505265034,"throughput_eps":0,"last_update":"2026-03-21T15:28:44.210923901Z"} +2026/03/21 15:28:49 [transform_engine] {"stage_name":"transform_engine","events_processed":499,"events_dropped":0,"avg_latency_ms":949.4899440950328,"throughput_eps":0,"last_update":"2026-03-21T15:28:44.209801882Z"} +2026/03/21 15:28:49 ───────────────────────────────────────────────── +2026/03/21 15:28:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:28:54 [transform_engine] {"stage_name":"transform_engine","events_processed":500,"events_dropped":0,"avg_latency_ms":782.3803598760263,"throughput_eps":0,"last_update":"2026-03-21T15:28:49.324495969Z"} +2026/03/21 15:28:54 [log_collector] {"stage_name":"log_collector","events_processed":23932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4786.4,"last_update":"2026-03-21T15:28:49.069261175Z"} +2026/03/21 15:28:54 [metric_collector] {"stage_name":"metric_collector","events_processed":14999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2999.8,"last_update":"2026-03-21T15:28:49.069251686Z"} +2026/03/21 15:28:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:28:49.079300755Z"} +2026/03/21 15:28:54 [detection_layer] {"stage_name":"detection_layer","events_processed":499,"events_dropped":0,"avg_latency_ms":18.276507505265034,"throughput_eps":0,"last_update":"2026-03-21T15:28:49.210543888Z"} +2026/03/21 15:28:54 ───────────────────────────────────────────────── +2026/03/21 15:28:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:28:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:28:54.077855471Z"} +2026/03/21 15:28:59 [detection_layer] {"stage_name":"detection_layer","events_processed":500,"events_dropped":0,"avg_latency_ms":19.031201204212028,"throughput_eps":0,"last_update":"2026-03-21T15:28:54.210062149Z"} +2026/03/21 15:28:59 [transform_engine] {"stage_name":"transform_engine","events_processed":500,"events_dropped":0,"avg_latency_ms":782.3803598760263,"throughput_eps":0,"last_update":"2026-03-21T15:28:54.210036099Z"} +2026/03/21 15:28:59 [log_collector] {"stage_name":"log_collector","events_processed":23932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4786.4,"last_update":"2026-03-21T15:28:54.06814476Z"} +2026/03/21 15:28:59 [metric_collector] {"stage_name":"metric_collector","events_processed":15004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3000.8,"last_update":"2026-03-21T15:28:54.06857783Z"} +2026/03/21 15:28:59 ───────────────────────────────────────────────── +2026/03/21 15:29:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:29:04 [detection_layer] {"stage_name":"detection_layer","events_processed":500,"events_dropped":0,"avg_latency_ms":19.031201204212028,"throughput_eps":0,"last_update":"2026-03-21T15:28:59.210137628Z"} +2026/03/21 15:29:04 [transform_engine] {"stage_name":"transform_engine","events_processed":500,"events_dropped":0,"avg_latency_ms":782.3803598760263,"throughput_eps":0,"last_update":"2026-03-21T15:28:59.210164951Z"} +2026/03/21 15:29:04 [log_collector] {"stage_name":"log_collector","events_processed":23932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4786.4,"last_update":"2026-03-21T15:28:59.068671504Z"} +2026/03/21 15:29:04 [metric_collector] {"stage_name":"metric_collector","events_processed":15009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3001.8,"last_update":"2026-03-21T15:28:59.068910703Z"} +2026/03/21 15:29:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6006,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:28:59.076909434Z"} +2026/03/21 15:29:04 ───────────────────────────────────────────────── +2026/03/21 15:29:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:29:09 [log_collector] {"stage_name":"log_collector","events_processed":23932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4786.4,"last_update":"2026-03-21T15:29:04.068729611Z"} +2026/03/21 15:29:09 [metric_collector] {"stage_name":"metric_collector","events_processed":15014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3002.8,"last_update":"2026-03-21T15:29:04.069313Z"} +2026/03/21 15:29:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6008,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:29:04.077325538Z"} +2026/03/21 15:29:09 [detection_layer] {"stage_name":"detection_layer","events_processed":500,"events_dropped":0,"avg_latency_ms":19.031201204212028,"throughput_eps":0,"last_update":"2026-03-21T15:29:04.210548702Z"} +2026/03/21 15:29:09 [transform_engine] {"stage_name":"transform_engine","events_processed":500,"events_dropped":0,"avg_latency_ms":782.3803598760263,"throughput_eps":0,"last_update":"2026-03-21T15:29:04.210590853Z"} +2026/03/21 15:29:09 ───────────────────────────────────────────────── +2026/03/21 15:29:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:29:14 [log_collector] {"stage_name":"log_collector","events_processed":23932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4786.4,"last_update":"2026-03-21T15:29:09.068663511Z"} +2026/03/21 15:29:14 [metric_collector] {"stage_name":"metric_collector","events_processed":15019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3003.8,"last_update":"2026-03-21T15:29:09.069033039Z"} +2026/03/21 15:29:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:29:09.077758692Z"} +2026/03/21 15:29:14 [detection_layer] {"stage_name":"detection_layer","events_processed":500,"events_dropped":0,"avg_latency_ms":19.031201204212028,"throughput_eps":0,"last_update":"2026-03-21T15:29:09.210030765Z"} +2026/03/21 15:29:14 [transform_engine] {"stage_name":"transform_engine","events_processed":500,"events_dropped":0,"avg_latency_ms":782.3803598760263,"throughput_eps":0,"last_update":"2026-03-21T15:29:09.210062907Z"} +2026/03/21 15:29:14 ───────────────────────────────────────────────── +2026/03/21 15:29:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:29:19 [log_collector] {"stage_name":"log_collector","events_processed":23932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4786.4,"last_update":"2026-03-21T15:29:14.068088607Z"} +2026/03/21 15:29:19 [metric_collector] {"stage_name":"metric_collector","events_processed":15024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3004.8,"last_update":"2026-03-21T15:29:14.068406755Z"} +2026/03/21 15:29:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6012,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:29:14.078032824Z"} +2026/03/21 15:29:19 [detection_layer] {"stage_name":"detection_layer","events_processed":500,"events_dropped":0,"avg_latency_ms":19.031201204212028,"throughput_eps":0,"last_update":"2026-03-21T15:29:14.210232599Z"} +2026/03/21 15:29:19 [transform_engine] {"stage_name":"transform_engine","events_processed":500,"events_dropped":0,"avg_latency_ms":782.3803598760263,"throughput_eps":0,"last_update":"2026-03-21T15:29:14.210329755Z"} +2026/03/21 15:29:19 ───────────────────────────────────────────────── +2026/03/21 15:29:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:29:24 [log_collector] {"stage_name":"log_collector","events_processed":23932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4786.4,"last_update":"2026-03-21T15:29:19.068607647Z"} +2026/03/21 15:29:24 [metric_collector] {"stage_name":"metric_collector","events_processed":15029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3005.8,"last_update":"2026-03-21T15:29:19.068907482Z"} +2026/03/21 15:29:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:29:19.077963819Z"} +2026/03/21 15:29:24 [detection_layer] {"stage_name":"detection_layer","events_processed":500,"events_dropped":0,"avg_latency_ms":19.031201204212028,"throughput_eps":0,"last_update":"2026-03-21T15:29:19.210393564Z"} +2026/03/21 15:29:24 [transform_engine] {"stage_name":"transform_engine","events_processed":501,"events_dropped":0,"avg_latency_ms":640.7998761008212,"throughput_eps":0,"last_update":"2026-03-21T15:29:19.285000061Z"} +2026/03/21 15:29:24 ───────────────────────────────────────────────── +2026/03/21 15:29:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:29:29 [detection_layer] {"stage_name":"detection_layer","events_processed":501,"events_dropped":0,"avg_latency_ms":19.517112563369622,"throughput_eps":0,"last_update":"2026-03-21T15:29:24.210878721Z"} +2026/03/21 15:29:29 [transform_engine] {"stage_name":"transform_engine","events_processed":501,"events_dropped":0,"avg_latency_ms":640.7998761008212,"throughput_eps":0,"last_update":"2026-03-21T15:29:24.209741273Z"} +2026/03/21 15:29:29 [log_collector] {"stage_name":"log_collector","events_processed":23932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4786.4,"last_update":"2026-03-21T15:29:29.068477303Z"} +2026/03/21 15:29:29 [metric_collector] {"stage_name":"metric_collector","events_processed":15034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3006.8,"last_update":"2026-03-21T15:29:24.069010045Z"} +2026/03/21 15:29:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:29:24.079573349Z"} +2026/03/21 15:29:29 ───────────────────────────────────────────────── +2026/03/21 15:29:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:29:34 [log_collector] {"stage_name":"log_collector","events_processed":23932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4786.4,"last_update":"2026-03-21T15:29:29.068477303Z"} +2026/03/21 15:29:34 [metric_collector] {"stage_name":"metric_collector","events_processed":15039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3007.8,"last_update":"2026-03-21T15:29:29.068808788Z"} +2026/03/21 15:29:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6018,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:29:29.078229503Z"} +2026/03/21 15:29:34 [detection_layer] {"stage_name":"detection_layer","events_processed":501,"events_dropped":0,"avg_latency_ms":19.517112563369622,"throughput_eps":0,"last_update":"2026-03-21T15:29:29.210632708Z"} +2026/03/21 15:29:34 [transform_engine] {"stage_name":"transform_engine","events_processed":501,"events_dropped":0,"avg_latency_ms":640.7998761008212,"throughput_eps":0,"last_update":"2026-03-21T15:29:29.210520923Z"} +2026/03/21 15:29:34 ───────────────────────────────────────────────── +Saved state: 17 clusters, 23933 messages, reason: none +2026/03/21 15:29:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:29:39 [metric_collector] {"stage_name":"metric_collector","events_processed":15044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3008.8,"last_update":"2026-03-21T15:29:34.069525369Z"} +2026/03/21 15:29:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6020,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:29:34.078101105Z"} +2026/03/21 15:29:39 [detection_layer] {"stage_name":"detection_layer","events_processed":501,"events_dropped":0,"avg_latency_ms":19.517112563369622,"throughput_eps":0,"last_update":"2026-03-21T15:29:34.210460716Z"} +2026/03/21 15:29:39 [transform_engine] {"stage_name":"transform_engine","events_processed":501,"events_dropped":0,"avg_latency_ms":640.7998761008212,"throughput_eps":0,"last_update":"2026-03-21T15:29:34.210507125Z"} +2026/03/21 15:29:39 [log_collector] {"stage_name":"log_collector","events_processed":23932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4786.4,"last_update":"2026-03-21T15:29:34.068891915Z"} +2026/03/21 15:29:39 ───────────────────────────────────────────────── +2026/03/21 15:29:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:29:44 [log_collector] {"stage_name":"log_collector","events_processed":23945,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4789,"last_update":"2026-03-21T15:29:39.068758338Z"} +2026/03/21 15:29:44 [metric_collector] {"stage_name":"metric_collector","events_processed":15049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3009.8,"last_update":"2026-03-21T15:29:39.068794086Z"} +2026/03/21 15:29:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6022,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:29:39.074733222Z"} +2026/03/21 15:29:44 [detection_layer] {"stage_name":"detection_layer","events_processed":501,"events_dropped":0,"avg_latency_ms":19.517112563369622,"throughput_eps":0,"last_update":"2026-03-21T15:29:39.210139981Z"} +2026/03/21 15:29:44 [transform_engine] {"stage_name":"transform_engine","events_processed":501,"events_dropped":0,"avg_latency_ms":640.7998761008212,"throughput_eps":0,"last_update":"2026-03-21T15:29:39.210006996Z"} +2026/03/21 15:29:44 ───────────────────────────────────────────────── +2026/03/21 15:29:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:29:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:29:44.077929403Z"} +2026/03/21 15:29:49 [detection_layer] {"stage_name":"detection_layer","events_processed":501,"events_dropped":0,"avg_latency_ms":19.517112563369622,"throughput_eps":0,"last_update":"2026-03-21T15:29:44.210252806Z"} +2026/03/21 15:29:49 [transform_engine] {"stage_name":"transform_engine","events_processed":501,"events_dropped":0,"avg_latency_ms":640.7998761008212,"throughput_eps":0,"last_update":"2026-03-21T15:29:44.210305427Z"} +2026/03/21 15:29:49 [log_collector] {"stage_name":"log_collector","events_processed":23946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4789.2,"last_update":"2026-03-21T15:29:44.068274389Z"} +2026/03/21 15:29:49 [metric_collector] {"stage_name":"metric_collector","events_processed":15054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3010.8,"last_update":"2026-03-21T15:29:44.068789296Z"} +2026/03/21 15:29:49 ───────────────────────────────────────────────── +2026/03/21 15:29:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:29:54 [log_collector] {"stage_name":"log_collector","events_processed":23946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4789.2,"last_update":"2026-03-21T15:29:49.068108672Z"} +2026/03/21 15:29:54 [metric_collector] {"stage_name":"metric_collector","events_processed":15059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3011.8,"last_update":"2026-03-21T15:29:49.068382376Z"} +2026/03/21 15:29:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:29:49.078725838Z"} +2026/03/21 15:29:54 [detection_layer] {"stage_name":"detection_layer","events_processed":501,"events_dropped":0,"avg_latency_ms":19.517112563369622,"throughput_eps":0,"last_update":"2026-03-21T15:29:49.21011978Z"} +2026/03/21 15:29:54 [transform_engine] {"stage_name":"transform_engine","events_processed":502,"events_dropped":0,"avg_latency_ms":536.2460258806569,"throughput_eps":0,"last_update":"2026-03-21T15:29:49.328212364Z"} +2026/03/21 15:29:54 ───────────────────────────────────────────────── +2026/03/21 15:29:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:29:59 [log_collector] {"stage_name":"log_collector","events_processed":23946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4789.2,"last_update":"2026-03-21T15:29:54.068878737Z"} +2026/03/21 15:29:59 [metric_collector] {"stage_name":"metric_collector","events_processed":15064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3012.8,"last_update":"2026-03-21T15:29:54.069173652Z"} +2026/03/21 15:29:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:29:54.07948833Z"} +2026/03/21 15:29:59 [detection_layer] {"stage_name":"detection_layer","events_processed":502,"events_dropped":0,"avg_latency_ms":19.490381850695698,"throughput_eps":0,"last_update":"2026-03-21T15:29:54.210937066Z"} +2026/03/21 15:29:59 [transform_engine] {"stage_name":"transform_engine","events_processed":502,"events_dropped":0,"avg_latency_ms":536.2460258806569,"throughput_eps":0,"last_update":"2026-03-21T15:29:54.209734883Z"} +2026/03/21 15:29:59 ───────────────────────────────────────────────── +2026/03/21 15:30:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:30:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:29:59.079267026Z"} +2026/03/21 15:30:04 [detection_layer] {"stage_name":"detection_layer","events_processed":502,"events_dropped":0,"avg_latency_ms":19.490381850695698,"throughput_eps":0,"last_update":"2026-03-21T15:29:59.21067793Z"} +2026/03/21 15:30:04 [transform_engine] {"stage_name":"transform_engine","events_processed":502,"events_dropped":0,"avg_latency_ms":536.2460258806569,"throughput_eps":0,"last_update":"2026-03-21T15:29:59.210742213Z"} +2026/03/21 15:30:04 [log_collector] {"stage_name":"log_collector","events_processed":23946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4789.2,"last_update":"2026-03-21T15:29:59.068868698Z"} +2026/03/21 15:30:04 [metric_collector] {"stage_name":"metric_collector","events_processed":15069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3013.8,"last_update":"2026-03-21T15:29:59.069169194Z"} +2026/03/21 15:30:04 ───────────────────────────────────────────────── +2026/03/21 15:30:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:30:09 [transform_engine] {"stage_name":"transform_engine","events_processed":502,"events_dropped":0,"avg_latency_ms":536.2460258806569,"throughput_eps":0,"last_update":"2026-03-21T15:30:04.210300899Z"} +2026/03/21 15:30:09 [log_collector] {"stage_name":"log_collector","events_processed":23946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4789.2,"last_update":"2026-03-21T15:30:04.068669308Z"} +2026/03/21 15:30:09 [metric_collector] {"stage_name":"metric_collector","events_processed":15074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3014.8,"last_update":"2026-03-21T15:30:04.069126032Z"} +2026/03/21 15:30:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:30:04.09104095Z"} +2026/03/21 15:30:09 [detection_layer] {"stage_name":"detection_layer","events_processed":502,"events_dropped":0,"avg_latency_ms":19.490381850695698,"throughput_eps":0,"last_update":"2026-03-21T15:30:04.210334804Z"} +2026/03/21 15:30:09 ───────────────────────────────────────────────── +2026/03/21 15:30:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:30:14 [transform_engine] {"stage_name":"transform_engine","events_processed":502,"events_dropped":0,"avg_latency_ms":536.2460258806569,"throughput_eps":0,"last_update":"2026-03-21T15:30:09.210335265Z"} +2026/03/21 15:30:14 [log_collector] {"stage_name":"log_collector","events_processed":23946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4789.2,"last_update":"2026-03-21T15:30:09.068635754Z"} +2026/03/21 15:30:14 [metric_collector] {"stage_name":"metric_collector","events_processed":15079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3015.8,"last_update":"2026-03-21T15:30:09.068913957Z"} +2026/03/21 15:30:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:30:09.078004569Z"} +2026/03/21 15:30:14 [detection_layer] {"stage_name":"detection_layer","events_processed":502,"events_dropped":0,"avg_latency_ms":19.490381850695698,"throughput_eps":0,"last_update":"2026-03-21T15:30:09.210224954Z"} +2026/03/21 15:30:14 ───────────────────────────────────────────────── +2026/03/21 15:30:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:30:19 [detection_layer] {"stage_name":"detection_layer","events_processed":502,"events_dropped":0,"avg_latency_ms":19.490381850695698,"throughput_eps":0,"last_update":"2026-03-21T15:30:14.210579073Z"} +2026/03/21 15:30:19 [transform_engine] {"stage_name":"transform_engine","events_processed":502,"events_dropped":0,"avg_latency_ms":536.2460258806569,"throughput_eps":0,"last_update":"2026-03-21T15:30:14.210558353Z"} +2026/03/21 15:30:19 [log_collector] {"stage_name":"log_collector","events_processed":23946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4789.2,"last_update":"2026-03-21T15:30:14.068631155Z"} +2026/03/21 15:30:19 [metric_collector] {"stage_name":"metric_collector","events_processed":15084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3016.8,"last_update":"2026-03-21T15:30:14.068957801Z"} +2026/03/21 15:30:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6036,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:30:14.079299089Z"} +2026/03/21 15:30:19 ───────────────────────────────────────────────── +2026/03/21 15:30:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:30:24 [log_collector] {"stage_name":"log_collector","events_processed":23946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4789.2,"last_update":"2026-03-21T15:30:19.068104719Z"} +2026/03/21 15:30:24 [metric_collector] {"stage_name":"metric_collector","events_processed":15089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3017.8,"last_update":"2026-03-21T15:30:19.068602533Z"} +2026/03/21 15:30:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:30:19.07729875Z"} +2026/03/21 15:30:24 [detection_layer] {"stage_name":"detection_layer","events_processed":502,"events_dropped":0,"avg_latency_ms":19.490381850695698,"throughput_eps":0,"last_update":"2026-03-21T15:30:19.210846527Z"} +2026/03/21 15:30:24 [transform_engine] {"stage_name":"transform_engine","events_processed":502,"events_dropped":0,"avg_latency_ms":536.2460258806569,"throughput_eps":0,"last_update":"2026-03-21T15:30:19.210698383Z"} +2026/03/21 15:30:24 ───────────────────────────────────────────────── +2026/03/21 15:30:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:30:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:30:24.078507026Z"} +2026/03/21 15:30:29 [detection_layer] {"stage_name":"detection_layer","events_processed":503,"events_dropped":0,"avg_latency_ms":20.171969680556558,"throughput_eps":0,"last_update":"2026-03-21T15:30:24.210868581Z"} +2026/03/21 15:30:29 [transform_engine] {"stage_name":"transform_engine","events_processed":503,"events_dropped":0,"avg_latency_ms":446.40493150452556,"throughput_eps":0,"last_update":"2026-03-21T15:30:24.209669434Z"} +2026/03/21 15:30:29 [log_collector] {"stage_name":"log_collector","events_processed":23946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4789.2,"last_update":"2026-03-21T15:30:24.068656288Z"} +2026/03/21 15:30:29 [metric_collector] {"stage_name":"metric_collector","events_processed":15094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3018.8,"last_update":"2026-03-21T15:30:24.069051275Z"} +2026/03/21 15:30:29 ───────────────────────────────────────────────── +2026/03/21 15:30:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:30:34 [metric_collector] {"stage_name":"metric_collector","events_processed":15099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3019.8,"last_update":"2026-03-21T15:30:29.069421687Z"} +2026/03/21 15:30:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:30:29.079689314Z"} +2026/03/21 15:30:34 [detection_layer] {"stage_name":"detection_layer","events_processed":503,"events_dropped":0,"avg_latency_ms":20.171969680556558,"throughput_eps":0,"last_update":"2026-03-21T15:30:29.210010821Z"} +2026/03/21 15:30:34 [transform_engine] {"stage_name":"transform_engine","events_processed":503,"events_dropped":0,"avg_latency_ms":446.40493150452556,"throughput_eps":0,"last_update":"2026-03-21T15:30:29.210054485Z"} +2026/03/21 15:30:34 [log_collector] {"stage_name":"log_collector","events_processed":23946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4789.2,"last_update":"2026-03-21T15:30:29.069176627Z"} +2026/03/21 15:30:34 ───────────────────────────────────────────────── +2026/03/21 15:30:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:30:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:30:34.078803711Z"} +2026/03/21 15:30:39 [detection_layer] {"stage_name":"detection_layer","events_processed":503,"events_dropped":0,"avg_latency_ms":20.171969680556558,"throughput_eps":0,"last_update":"2026-03-21T15:30:34.210019029Z"} +2026/03/21 15:30:39 [transform_engine] {"stage_name":"transform_engine","events_processed":503,"events_dropped":0,"avg_latency_ms":446.40493150452556,"throughput_eps":0,"last_update":"2026-03-21T15:30:34.210156183Z"} +2026/03/21 15:30:39 [log_collector] {"stage_name":"log_collector","events_processed":23946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4789.2,"last_update":"2026-03-21T15:30:34.069085707Z"} +2026/03/21 15:30:39 [metric_collector] {"stage_name":"metric_collector","events_processed":15104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3020.8,"last_update":"2026-03-21T15:30:34.069208762Z"} +2026/03/21 15:30:39 ───────────────────────────────────────────────── +Saved state: 17 clusters, 23947 messages, reason: none +2026/03/21 15:30:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:30:44 [log_collector] {"stage_name":"log_collector","events_processed":23946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4789.2,"last_update":"2026-03-21T15:30:39.068758273Z"} +2026/03/21 15:30:44 [metric_collector] {"stage_name":"metric_collector","events_processed":15109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3021.8,"last_update":"2026-03-21T15:30:39.069006228Z"} +2026/03/21 15:30:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:30:39.078810478Z"} +2026/03/21 15:30:44 [detection_layer] {"stage_name":"detection_layer","events_processed":503,"events_dropped":0,"avg_latency_ms":20.171969680556558,"throughput_eps":0,"last_update":"2026-03-21T15:30:39.210083127Z"} +2026/03/21 15:30:44 [transform_engine] {"stage_name":"transform_engine","events_processed":503,"events_dropped":0,"avg_latency_ms":446.40493150452556,"throughput_eps":0,"last_update":"2026-03-21T15:30:39.210042438Z"} +2026/03/21 15:30:44 ───────────────────────────────────────────────── +2026/03/21 15:30:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:30:49 [log_collector] {"stage_name":"log_collector","events_processed":23951,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4790.2,"last_update":"2026-03-21T15:30:44.06877582Z"} +2026/03/21 15:30:49 [metric_collector] {"stage_name":"metric_collector","events_processed":15114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3022.8,"last_update":"2026-03-21T15:30:44.068981984Z"} +2026/03/21 15:30:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6048,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:30:44.074959194Z"} +2026/03/21 15:30:49 [detection_layer] {"stage_name":"detection_layer","events_processed":503,"events_dropped":0,"avg_latency_ms":20.171969680556558,"throughput_eps":0,"last_update":"2026-03-21T15:30:44.210216706Z"} +2026/03/21 15:30:49 [transform_engine] {"stage_name":"transform_engine","events_processed":503,"events_dropped":0,"avg_latency_ms":446.40493150452556,"throughput_eps":0,"last_update":"2026-03-21T15:30:44.210195766Z"} +2026/03/21 15:30:49 ───────────────────────────────────────────────── +2026/03/21 15:30:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:30:54 [log_collector] {"stage_name":"log_collector","events_processed":23951,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4790.2,"last_update":"2026-03-21T15:30:49.068654361Z"} +2026/03/21 15:30:54 [metric_collector] {"stage_name":"metric_collector","events_processed":15119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3023.8,"last_update":"2026-03-21T15:30:49.068635776Z"} +2026/03/21 15:30:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6050,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:30:49.082731917Z"} +2026/03/21 15:30:54 [detection_layer] {"stage_name":"detection_layer","events_processed":503,"events_dropped":0,"avg_latency_ms":20.171969680556558,"throughput_eps":0,"last_update":"2026-03-21T15:30:49.209946824Z"} +2026/03/21 15:30:54 [transform_engine] {"stage_name":"transform_engine","events_processed":503,"events_dropped":0,"avg_latency_ms":446.40493150452556,"throughput_eps":0,"last_update":"2026-03-21T15:30:44.210195766Z"} +2026/03/21 15:30:54 ───────────────────────────────────────────────── +2026/03/21 15:30:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:30:59 [log_collector] {"stage_name":"log_collector","events_processed":23951,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4790.2,"last_update":"2026-03-21T15:30:54.068378478Z"} +2026/03/21 15:30:59 [metric_collector] {"stage_name":"metric_collector","events_processed":15124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3024.8,"last_update":"2026-03-21T15:30:54.068345345Z"} +2026/03/21 15:30:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:30:54.075278034Z"} +2026/03/21 15:30:59 [detection_layer] {"stage_name":"detection_layer","events_processed":503,"events_dropped":0,"avg_latency_ms":20.171969680556558,"throughput_eps":0,"last_update":"2026-03-21T15:30:54.210439021Z"} +2026/03/21 15:30:59 [transform_engine] {"stage_name":"transform_engine","events_processed":504,"events_dropped":0,"avg_latency_ms":1495.0660806036205,"throughput_eps":0,"last_update":"2026-03-21T15:30:54.899685765Z"} +2026/03/21 15:30:59 ───────────────────────────────────────────────── +2026/03/21 15:31:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:31:04 [detection_layer] {"stage_name":"detection_layer","events_processed":504,"events_dropped":0,"avg_latency_ms":18.685163544445246,"throughput_eps":0,"last_update":"2026-03-21T15:30:59.210417866Z"} +2026/03/21 15:31:04 [transform_engine] {"stage_name":"transform_engine","events_processed":504,"events_dropped":0,"avg_latency_ms":1495.0660806036205,"throughput_eps":0,"last_update":"2026-03-21T15:30:59.210387928Z"} +2026/03/21 15:31:04 [log_collector] {"stage_name":"log_collector","events_processed":23951,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4790.2,"last_update":"2026-03-21T15:30:59.068584468Z"} +2026/03/21 15:31:04 [metric_collector] {"stage_name":"metric_collector","events_processed":15129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3025.8,"last_update":"2026-03-21T15:30:59.068847311Z"} +2026/03/21 15:31:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:30:59.082050292Z"} +2026/03/21 15:31:04 ───────────────────────────────────────────────── +2026/03/21 15:31:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:31:09 [log_collector] {"stage_name":"log_collector","events_processed":23951,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4790.2,"last_update":"2026-03-21T15:31:09.068117594Z"} +2026/03/21 15:31:09 [metric_collector] {"stage_name":"metric_collector","events_processed":15134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3026.8,"last_update":"2026-03-21T15:31:04.06830561Z"} +2026/03/21 15:31:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6056,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:31:04.075425006Z"} +2026/03/21 15:31:09 [detection_layer] {"stage_name":"detection_layer","events_processed":504,"events_dropped":0,"avg_latency_ms":18.685163544445246,"throughput_eps":0,"last_update":"2026-03-21T15:31:04.210058323Z"} +2026/03/21 15:31:09 [transform_engine] {"stage_name":"transform_engine","events_processed":504,"events_dropped":0,"avg_latency_ms":1495.0660806036205,"throughput_eps":0,"last_update":"2026-03-21T15:31:04.210038204Z"} +2026/03/21 15:31:09 ───────────────────────────────────────────────── +2026/03/21 15:31:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:31:14 [log_collector] {"stage_name":"log_collector","events_processed":23951,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4790.2,"last_update":"2026-03-21T15:31:09.068117594Z"} +2026/03/21 15:31:14 [metric_collector] {"stage_name":"metric_collector","events_processed":15139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3027.8,"last_update":"2026-03-21T15:31:09.068421777Z"} +2026/03/21 15:31:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:31:09.076565186Z"} +2026/03/21 15:31:14 [detection_layer] {"stage_name":"detection_layer","events_processed":504,"events_dropped":0,"avg_latency_ms":18.685163544445246,"throughput_eps":0,"last_update":"2026-03-21T15:31:09.210772536Z"} +2026/03/21 15:31:14 [transform_engine] {"stage_name":"transform_engine","events_processed":504,"events_dropped":0,"avg_latency_ms":1495.0660806036205,"throughput_eps":0,"last_update":"2026-03-21T15:31:09.209716924Z"} +2026/03/21 15:31:14 ───────────────────────────────────────────────── +2026/03/21 15:31:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:31:19 [log_collector] {"stage_name":"log_collector","events_processed":23951,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4790.2,"last_update":"2026-03-21T15:31:14.068711007Z"} +2026/03/21 15:31:19 [metric_collector] {"stage_name":"metric_collector","events_processed":15144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3028.8,"last_update":"2026-03-21T15:31:14.068676592Z"} +2026/03/21 15:31:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:31:14.079355516Z"} +2026/03/21 15:31:19 [detection_layer] {"stage_name":"detection_layer","events_processed":504,"events_dropped":0,"avg_latency_ms":18.685163544445246,"throughput_eps":0,"last_update":"2026-03-21T15:31:14.210589371Z"} +2026/03/21 15:31:19 [transform_engine] {"stage_name":"transform_engine","events_processed":504,"events_dropped":0,"avg_latency_ms":1495.0660806036205,"throughput_eps":0,"last_update":"2026-03-21T15:31:14.210560947Z"} +2026/03/21 15:31:19 ───────────────────────────────────────────────── +2026/03/21 15:31:22 [ANOMALY] time=2026-03-21T15:31:22Z score=0.9088 method=SEAD details=MAD!:w=0.28,s=0.91 RRCF-fast!:w=0.16,s=0.93 RRCF-mid!:w=0.17,s=0.95 RRCF-slow!:w=0.16,s=0.93 COPOD!:w=0.23,s=0.86 +2026/03/21 15:31:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:31:24 [metric_collector] {"stage_name":"metric_collector","events_processed":15149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3029.8,"last_update":"2026-03-21T15:31:19.069139214Z"} +2026/03/21 15:31:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6062,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:31:19.076627197Z"} +2026/03/21 15:31:24 [detection_layer] {"stage_name":"detection_layer","events_processed":504,"events_dropped":0,"avg_latency_ms":18.685163544445246,"throughput_eps":0,"last_update":"2026-03-21T15:31:19.210388032Z"} +2026/03/21 15:31:24 [transform_engine] {"stage_name":"transform_engine","events_processed":504,"events_dropped":0,"avg_latency_ms":1495.0660806036205,"throughput_eps":0,"last_update":"2026-03-21T15:31:19.209698722Z"} +2026/03/21 15:31:24 [log_collector] {"stage_name":"log_collector","events_processed":23951,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4790.2,"last_update":"2026-03-21T15:31:19.06889713Z"} +2026/03/21 15:31:24 ───────────────────────────────────────────────── +2026/03/21 15:31:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:31:29 [metric_collector] {"stage_name":"metric_collector","events_processed":15154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3030.8,"last_update":"2026-03-21T15:31:24.069293697Z"} +2026/03/21 15:31:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:31:24.079018324Z"} +2026/03/21 15:31:29 [detection_layer] {"stage_name":"detection_layer","events_processed":505,"events_dropped":0,"avg_latency_ms":18.3364170355562,"throughput_eps":0,"last_update":"2026-03-21T15:31:24.210248883Z"} +2026/03/21 15:31:29 [transform_engine] {"stage_name":"transform_engine","events_processed":505,"events_dropped":0,"avg_latency_ms":1917.5904166828964,"throughput_eps":0,"last_update":"2026-03-21T15:31:24.210260425Z"} +2026/03/21 15:31:29 [log_collector] {"stage_name":"log_collector","events_processed":23951,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4790.2,"last_update":"2026-03-21T15:31:24.069061762Z"} +2026/03/21 15:31:29 ───────────────────────────────────────────────── +2026/03/21 15:31:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:31:34 [transform_engine] {"stage_name":"transform_engine","events_processed":505,"events_dropped":0,"avg_latency_ms":1917.5904166828964,"throughput_eps":0,"last_update":"2026-03-21T15:31:29.210427692Z"} +2026/03/21 15:31:34 [log_collector] {"stage_name":"log_collector","events_processed":23960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4792,"last_update":"2026-03-21T15:31:29.069033706Z"} +2026/03/21 15:31:34 [metric_collector] {"stage_name":"metric_collector","events_processed":15159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3031.8,"last_update":"2026-03-21T15:31:29.069019318Z"} +2026/03/21 15:31:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:31:29.077154952Z"} +2026/03/21 15:31:34 [detection_layer] {"stage_name":"detection_layer","events_processed":505,"events_dropped":0,"avg_latency_ms":18.3364170355562,"throughput_eps":0,"last_update":"2026-03-21T15:31:29.210413325Z"} +2026/03/21 15:31:34 ───────────────────────────────────────────────── +2026/03/21 15:31:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:31:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:31:34.076025577Z"} +2026/03/21 15:31:39 [detection_layer] {"stage_name":"detection_layer","events_processed":505,"events_dropped":0,"avg_latency_ms":18.3364170355562,"throughput_eps":0,"last_update":"2026-03-21T15:31:34.210825322Z"} +2026/03/21 15:31:39 [transform_engine] {"stage_name":"transform_engine","events_processed":505,"events_dropped":0,"avg_latency_ms":1917.5904166828964,"throughput_eps":0,"last_update":"2026-03-21T15:31:34.209765622Z"} +2026/03/21 15:31:39 [log_collector] {"stage_name":"log_collector","events_processed":23989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4797.8,"last_update":"2026-03-21T15:31:34.068740743Z"} +2026/03/21 15:31:39 [metric_collector] {"stage_name":"metric_collector","events_processed":15164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3032.8,"last_update":"2026-03-21T15:31:34.068990942Z"} +2026/03/21 15:31:39 ───────────────────────────────────────────────── +2026/03/21 15:31:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:31:44 [metric_collector] {"stage_name":"metric_collector","events_processed":15169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3033.8,"last_update":"2026-03-21T15:31:39.068477615Z"} +2026/03/21 15:31:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:31:39.074957368Z"} +2026/03/21 15:31:44 [detection_layer] {"stage_name":"detection_layer","events_processed":505,"events_dropped":0,"avg_latency_ms":18.3364170355562,"throughput_eps":0,"last_update":"2026-03-21T15:31:39.210405906Z"} +2026/03/21 15:31:44 [transform_engine] {"stage_name":"transform_engine","events_processed":505,"events_dropped":0,"avg_latency_ms":1917.5904166828964,"throughput_eps":0,"last_update":"2026-03-21T15:31:39.210421065Z"} +2026/03/21 15:31:44 [log_collector] {"stage_name":"log_collector","events_processed":24201,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4840.2,"last_update":"2026-03-21T15:31:39.068062Z"} +2026/03/21 15:31:44 ───────────────────────────────────────────────── +2026/03/21 15:31:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:31:49 [log_collector] {"stage_name":"log_collector","events_processed":24324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4864.8,"last_update":"2026-03-21T15:31:44.0685435Z"} +2026/03/21 15:31:49 [metric_collector] {"stage_name":"metric_collector","events_processed":15174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3034.8,"last_update":"2026-03-21T15:31:44.068910283Z"} +2026/03/21 15:31:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6072,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:31:44.075203688Z"} +2026/03/21 15:31:49 [detection_layer] {"stage_name":"detection_layer","events_processed":505,"events_dropped":0,"avg_latency_ms":18.3364170355562,"throughput_eps":0,"last_update":"2026-03-21T15:31:44.210606919Z"} +2026/03/21 15:31:49 [transform_engine] {"stage_name":"transform_engine","events_processed":505,"events_dropped":0,"avg_latency_ms":1917.5904166828964,"throughput_eps":0,"last_update":"2026-03-21T15:31:44.2106233Z"} +2026/03/21 15:31:49 ───────────────────────────────────────────────── +Saved state: 17 clusters, 24325 messages, reason: none +2026/03/21 15:31:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:31:54 [metric_collector] {"stage_name":"metric_collector","events_processed":15179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3035.8,"last_update":"2026-03-21T15:31:49.068587232Z"} +2026/03/21 15:31:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:31:49.078727235Z"} +2026/03/21 15:31:54 [detection_layer] {"stage_name":"detection_layer","events_processed":505,"events_dropped":0,"avg_latency_ms":18.3364170355562,"throughput_eps":0,"last_update":"2026-03-21T15:31:49.210158368Z"} +2026/03/21 15:31:54 [transform_engine] {"stage_name":"transform_engine","events_processed":506,"events_dropped":0,"avg_latency_ms":1557.4528263463171,"throughput_eps":0,"last_update":"2026-03-21T15:31:49.326862712Z"} +2026/03/21 15:31:54 [log_collector] {"stage_name":"log_collector","events_processed":24324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4864.8,"last_update":"2026-03-21T15:31:49.068166907Z"} +2026/03/21 15:31:54 ───────────────────────────────────────────────── +2026/03/21 15:31:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:31:59 [transform_engine] {"stage_name":"transform_engine","events_processed":506,"events_dropped":0,"avg_latency_ms":1557.4528263463171,"throughput_eps":0,"last_update":"2026-03-21T15:31:54.209780343Z"} +2026/03/21 15:31:59 [log_collector] {"stage_name":"log_collector","events_processed":24327,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4865.4,"last_update":"2026-03-21T15:31:59.068284411Z"} +2026/03/21 15:31:59 [metric_collector] {"stage_name":"metric_collector","events_processed":15184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3036.8,"last_update":"2026-03-21T15:31:54.068787245Z"} +2026/03/21 15:31:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6076,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:31:54.081519493Z"} +2026/03/21 15:31:59 [detection_layer] {"stage_name":"detection_layer","events_processed":506,"events_dropped":0,"avg_latency_ms":18.15541342844496,"throughput_eps":0,"last_update":"2026-03-21T15:31:54.210383689Z"} +2026/03/21 15:31:59 ───────────────────────────────────────────────── +2026/03/21 15:32:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:32:04 [transform_engine] {"stage_name":"transform_engine","events_processed":506,"events_dropped":0,"avg_latency_ms":1557.4528263463171,"throughput_eps":0,"last_update":"2026-03-21T15:31:59.21044211Z"} +2026/03/21 15:32:04 [log_collector] {"stage_name":"log_collector","events_processed":24327,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4865.4,"last_update":"2026-03-21T15:31:59.068284411Z"} +2026/03/21 15:32:04 [metric_collector] {"stage_name":"metric_collector","events_processed":15189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.8,"last_update":"2026-03-21T15:31:59.068698163Z"} +2026/03/21 15:32:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:31:59.075282705Z"} +2026/03/21 15:32:04 [detection_layer] {"stage_name":"detection_layer","events_processed":506,"events_dropped":0,"avg_latency_ms":18.15541342844496,"throughput_eps":0,"last_update":"2026-03-21T15:31:59.210466897Z"} +2026/03/21 15:32:04 ───────────────────────────────────────────────── +2026/03/21 15:32:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:32:09 [detection_layer] {"stage_name":"detection_layer","events_processed":506,"events_dropped":0,"avg_latency_ms":18.15541342844496,"throughput_eps":0,"last_update":"2026-03-21T15:32:04.210858156Z"} +2026/03/21 15:32:09 [transform_engine] {"stage_name":"transform_engine","events_processed":506,"events_dropped":0,"avg_latency_ms":1557.4528263463171,"throughput_eps":0,"last_update":"2026-03-21T15:32:04.209647677Z"} +2026/03/21 15:32:09 [log_collector] {"stage_name":"log_collector","events_processed":24337,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4867.4,"last_update":"2026-03-21T15:32:04.068818142Z"} +2026/03/21 15:32:09 [metric_collector] {"stage_name":"metric_collector","events_processed":15194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3038.8,"last_update":"2026-03-21T15:32:04.069099611Z"} +2026/03/21 15:32:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:32:04.078499185Z"} +2026/03/21 15:32:09 ───────────────────────────────────────────────── +2026/03/21 15:32:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:32:14 [detection_layer] {"stage_name":"detection_layer","events_processed":506,"events_dropped":0,"avg_latency_ms":18.15541342844496,"throughput_eps":0,"last_update":"2026-03-21T15:32:09.210595632Z"} +2026/03/21 15:32:14 [transform_engine] {"stage_name":"transform_engine","events_processed":506,"events_dropped":0,"avg_latency_ms":1557.4528263463171,"throughput_eps":0,"last_update":"2026-03-21T15:32:09.210561808Z"} +2026/03/21 15:32:14 [log_collector] {"stage_name":"log_collector","events_processed":24346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4869.2,"last_update":"2026-03-21T15:32:09.068092962Z"} +2026/03/21 15:32:14 [metric_collector] {"stage_name":"metric_collector","events_processed":15199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3039.8,"last_update":"2026-03-21T15:32:09.06845228Z"} +2026/03/21 15:32:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6082,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:32:09.075277965Z"} +2026/03/21 15:32:14 ───────────────────────────────────────────────── +2026/03/21 15:32:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:32:19 [log_collector] {"stage_name":"log_collector","events_processed":24354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4870.8,"last_update":"2026-03-21T15:32:14.069032763Z"} +2026/03/21 15:32:19 [metric_collector] {"stage_name":"metric_collector","events_processed":15204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3040.8,"last_update":"2026-03-21T15:32:14.06921401Z"} +2026/03/21 15:32:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:32:14.077293696Z"} +2026/03/21 15:32:19 [detection_layer] {"stage_name":"detection_layer","events_processed":506,"events_dropped":0,"avg_latency_ms":18.15541342844496,"throughput_eps":0,"last_update":"2026-03-21T15:32:14.210738496Z"} +2026/03/21 15:32:19 [transform_engine] {"stage_name":"transform_engine","events_processed":506,"events_dropped":0,"avg_latency_ms":1557.4528263463171,"throughput_eps":0,"last_update":"2026-03-21T15:32:14.210706405Z"} +2026/03/21 15:32:19 ───────────────────────────────────────────────── +2026/03/21 15:32:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:32:24 [log_collector] {"stage_name":"log_collector","events_processed":24354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4870.8,"last_update":"2026-03-21T15:32:19.06863952Z"} +2026/03/21 15:32:24 [metric_collector] {"stage_name":"metric_collector","events_processed":15209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.8,"last_update":"2026-03-21T15:32:19.068932231Z"} +2026/03/21 15:32:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:32:19.077588291Z"} +2026/03/21 15:32:24 [detection_layer] {"stage_name":"detection_layer","events_processed":506,"events_dropped":0,"avg_latency_ms":18.15541342844496,"throughput_eps":0,"last_update":"2026-03-21T15:32:19.21089678Z"} +2026/03/21 15:32:24 [transform_engine] {"stage_name":"transform_engine","events_processed":507,"events_dropped":0,"avg_latency_ms":1279.8949322770538,"throughput_eps":0,"last_update":"2026-03-21T15:32:19.379475078Z"} +2026/03/21 15:32:24 ───────────────────────────────────────────────── +2026/03/21 15:32:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:32:29 [log_collector] {"stage_name":"log_collector","events_processed":24354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4870.8,"last_update":"2026-03-21T15:32:24.068617288Z"} +2026/03/21 15:32:29 [metric_collector] {"stage_name":"metric_collector","events_processed":15214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3042.8,"last_update":"2026-03-21T15:32:24.068847589Z"} +2026/03/21 15:32:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:32:24.076989796Z"} +2026/03/21 15:32:29 [detection_layer] {"stage_name":"detection_layer","events_processed":507,"events_dropped":0,"avg_latency_ms":18.434512542755968,"throughput_eps":0,"last_update":"2026-03-21T15:32:24.210261515Z"} +2026/03/21 15:32:29 [transform_engine] {"stage_name":"transform_engine","events_processed":507,"events_dropped":0,"avg_latency_ms":1279.8949322770538,"throughput_eps":0,"last_update":"2026-03-21T15:32:24.210240885Z"} +2026/03/21 15:32:29 ───────────────────────────────────────────────── +2026/03/21 15:32:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:32:34 [log_collector] {"stage_name":"log_collector","events_processed":24354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4870.8,"last_update":"2026-03-21T15:32:29.068877107Z"} +2026/03/21 15:32:34 [metric_collector] {"stage_name":"metric_collector","events_processed":15219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3043.8,"last_update":"2026-03-21T15:32:29.069268586Z"} +2026/03/21 15:32:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:32:29.075865142Z"} +2026/03/21 15:32:34 [detection_layer] {"stage_name":"detection_layer","events_processed":507,"events_dropped":0,"avg_latency_ms":18.434512542755968,"throughput_eps":0,"last_update":"2026-03-21T15:32:29.210207111Z"} +2026/03/21 15:32:34 [transform_engine] {"stage_name":"transform_engine","events_processed":507,"events_dropped":0,"avg_latency_ms":1279.8949322770538,"throughput_eps":0,"last_update":"2026-03-21T15:32:29.210162375Z"} +2026/03/21 15:32:34 ───────────────────────────────────────────────── +2026/03/21 15:32:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:32:39 [log_collector] {"stage_name":"log_collector","events_processed":24354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4870.8,"last_update":"2026-03-21T15:32:34.068443869Z"} +2026/03/21 15:32:39 [metric_collector] {"stage_name":"metric_collector","events_processed":15224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3044.8,"last_update":"2026-03-21T15:32:34.069280671Z"} +2026/03/21 15:32:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:32:34.078957748Z"} +2026/03/21 15:32:39 [detection_layer] {"stage_name":"detection_layer","events_processed":507,"events_dropped":0,"avg_latency_ms":18.434512542755968,"throughput_eps":0,"last_update":"2026-03-21T15:32:34.210181123Z"} +2026/03/21 15:32:39 [transform_engine] {"stage_name":"transform_engine","events_processed":507,"events_dropped":0,"avg_latency_ms":1279.8949322770538,"throughput_eps":0,"last_update":"2026-03-21T15:32:34.210289661Z"} +2026/03/21 15:32:39 ───────────────────────────────────────────────── +2026/03/21 15:32:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:32:44 [log_collector] {"stage_name":"log_collector","events_processed":24354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4870.8,"last_update":"2026-03-21T15:32:39.068722064Z"} +2026/03/21 15:32:44 [metric_collector] {"stage_name":"metric_collector","events_processed":15229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3045.8,"last_update":"2026-03-21T15:32:39.069498641Z"} +2026/03/21 15:32:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:32:39.077049525Z"} +2026/03/21 15:32:44 [detection_layer] {"stage_name":"detection_layer","events_processed":507,"events_dropped":0,"avg_latency_ms":18.434512542755968,"throughput_eps":0,"last_update":"2026-03-21T15:32:39.210496118Z"} +2026/03/21 15:32:44 [transform_engine] {"stage_name":"transform_engine","events_processed":507,"events_dropped":0,"avg_latency_ms":1279.8949322770538,"throughput_eps":0,"last_update":"2026-03-21T15:32:39.210619905Z"} +2026/03/21 15:32:44 ───────────────────────────────────────────────── +2026/03/21 15:32:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:32:49 [log_collector] {"stage_name":"log_collector","events_processed":24354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4870.8,"last_update":"2026-03-21T15:32:44.06861486Z"} +2026/03/21 15:32:49 [metric_collector] {"stage_name":"metric_collector","events_processed":15234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3046.8,"last_update":"2026-03-21T15:32:44.068936726Z"} +2026/03/21 15:32:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:32:44.078390075Z"} +2026/03/21 15:32:49 [detection_layer] {"stage_name":"detection_layer","events_processed":507,"events_dropped":0,"avg_latency_ms":18.434512542755968,"throughput_eps":0,"last_update":"2026-03-21T15:32:44.210624306Z"} +2026/03/21 15:32:49 [transform_engine] {"stage_name":"transform_engine","events_processed":507,"events_dropped":0,"avg_latency_ms":1279.8949322770538,"throughput_eps":0,"last_update":"2026-03-21T15:32:44.210658331Z"} +2026/03/21 15:32:49 ───────────────────────────────────────────────── +2026/03/21 15:32:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:32:54 [detection_layer] {"stage_name":"detection_layer","events_processed":507,"events_dropped":0,"avg_latency_ms":18.434512542755968,"throughput_eps":0,"last_update":"2026-03-21T15:32:49.209861377Z"} +2026/03/21 15:32:54 [transform_engine] {"stage_name":"transform_engine","events_processed":508,"events_dropped":0,"avg_latency_ms":1038.4430452216432,"throughput_eps":0,"last_update":"2026-03-21T15:32:49.282523526Z"} +2026/03/21 15:32:54 [log_collector] {"stage_name":"log_collector","events_processed":24354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4870.8,"last_update":"2026-03-21T15:32:49.068083588Z"} +2026/03/21 15:32:54 [metric_collector] {"stage_name":"metric_collector","events_processed":15239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3047.8,"last_update":"2026-03-21T15:32:49.068598444Z"} +2026/03/21 15:32:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:32:49.077655074Z"} +2026/03/21 15:32:54 ───────────────────────────────────────────────── +2026/03/21 15:32:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:32:59 [transform_engine] {"stage_name":"transform_engine","events_processed":508,"events_dropped":0,"avg_latency_ms":1038.4430452216432,"throughput_eps":0,"last_update":"2026-03-21T15:32:54.209824938Z"} +2026/03/21 15:32:59 [log_collector] {"stage_name":"log_collector","events_processed":24354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4870.8,"last_update":"2026-03-21T15:32:54.068667226Z"} +2026/03/21 15:32:59 [metric_collector] {"stage_name":"metric_collector","events_processed":15244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3048.8,"last_update":"2026-03-21T15:32:54.068944638Z"} +2026/03/21 15:32:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:32:54.07555839Z"} +2026/03/21 15:32:59 [detection_layer] {"stage_name":"detection_layer","events_processed":508,"events_dropped":0,"avg_latency_ms":18.962940834204776,"throughput_eps":0,"last_update":"2026-03-21T15:32:54.209890574Z"} +2026/03/21 15:32:59 ───────────────────────────────────────────────── +2026/03/21 15:33:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:33:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:32:59.076986302Z"} +2026/03/21 15:33:04 [detection_layer] {"stage_name":"detection_layer","events_processed":508,"events_dropped":0,"avg_latency_ms":18.962940834204776,"throughput_eps":0,"last_update":"2026-03-21T15:32:59.210221026Z"} +2026/03/21 15:33:04 [transform_engine] {"stage_name":"transform_engine","events_processed":508,"events_dropped":0,"avg_latency_ms":1038.4430452216432,"throughput_eps":0,"last_update":"2026-03-21T15:32:59.210268527Z"} +2026/03/21 15:33:04 [log_collector] {"stage_name":"log_collector","events_processed":24354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4870.8,"last_update":"2026-03-21T15:32:59.068075983Z"} +2026/03/21 15:33:04 [metric_collector] {"stage_name":"metric_collector","events_processed":15249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3049.8,"last_update":"2026-03-21T15:32:59.068207124Z"} +2026/03/21 15:33:04 ───────────────────────────────────────────────── +2026/03/21 15:33:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:33:09 [log_collector] {"stage_name":"log_collector","events_processed":24354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4870.8,"last_update":"2026-03-21T15:33:04.068769588Z"} +2026/03/21 15:33:09 [metric_collector] {"stage_name":"metric_collector","events_processed":15254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3050.8,"last_update":"2026-03-21T15:33:04.069142932Z"} +2026/03/21 15:33:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:33:04.078152503Z"} +2026/03/21 15:33:09 [detection_layer] {"stage_name":"detection_layer","events_processed":508,"events_dropped":0,"avg_latency_ms":18.962940834204776,"throughput_eps":0,"last_update":"2026-03-21T15:33:04.210427459Z"} +2026/03/21 15:33:09 [transform_engine] {"stage_name":"transform_engine","events_processed":508,"events_dropped":0,"avg_latency_ms":1038.4430452216432,"throughput_eps":0,"last_update":"2026-03-21T15:33:04.210458508Z"} +2026/03/21 15:33:09 ───────────────────────────────────────────────── +2026/03/21 15:33:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:33:14 [log_collector] {"stage_name":"log_collector","events_processed":24354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4870.8,"last_update":"2026-03-21T15:33:09.068806191Z"} +2026/03/21 15:33:14 [metric_collector] {"stage_name":"metric_collector","events_processed":15259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3051.8,"last_update":"2026-03-21T15:33:09.069483338Z"} +2026/03/21 15:33:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:33:09.079675101Z"} +2026/03/21 15:33:14 [detection_layer] {"stage_name":"detection_layer","events_processed":508,"events_dropped":0,"avg_latency_ms":18.962940834204776,"throughput_eps":0,"last_update":"2026-03-21T15:33:09.210048208Z"} +2026/03/21 15:33:14 [transform_engine] {"stage_name":"transform_engine","events_processed":508,"events_dropped":0,"avg_latency_ms":1038.4430452216432,"throughput_eps":0,"last_update":"2026-03-21T15:33:09.210199198Z"} +2026/03/21 15:33:14 ───────────────────────────────────────────────── +2026/03/21 15:33:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:33:19 [log_collector] {"stage_name":"log_collector","events_processed":24354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4870.8,"last_update":"2026-03-21T15:33:14.068434751Z"} +2026/03/21 15:33:19 [metric_collector] {"stage_name":"metric_collector","events_processed":15263,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3052.6,"last_update":"2026-03-21T15:33:14.068467413Z"} +2026/03/21 15:33:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:33:14.078214365Z"} +2026/03/21 15:33:19 [detection_layer] {"stage_name":"detection_layer","events_processed":508,"events_dropped":0,"avg_latency_ms":18.962940834204776,"throughput_eps":0,"last_update":"2026-03-21T15:33:14.21062295Z"} +2026/03/21 15:33:19 [transform_engine] {"stage_name":"transform_engine","events_processed":508,"events_dropped":0,"avg_latency_ms":1038.4430452216432,"throughput_eps":0,"last_update":"2026-03-21T15:33:14.210656324Z"} +2026/03/21 15:33:19 ───────────────────────────────────────────────── +Saved state: 17 clusters, 24355 messages, reason: none +2026/03/21 15:33:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:33:24 [transform_engine] {"stage_name":"transform_engine","events_processed":509,"events_dropped":0,"avg_latency_ms":844.6205809773146,"throughput_eps":0,"last_update":"2026-03-21T15:33:19.279523979Z"} +2026/03/21 15:33:24 [log_collector] {"stage_name":"log_collector","events_processed":24354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4870.8,"last_update":"2026-03-21T15:33:19.068248982Z"} +2026/03/21 15:33:24 [metric_collector] {"stage_name":"metric_collector","events_processed":15269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3053.8,"last_update":"2026-03-21T15:33:19.069146791Z"} +2026/03/21 15:33:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:33:19.077844695Z"} +2026/03/21 15:33:24 [detection_layer] {"stage_name":"detection_layer","events_processed":508,"events_dropped":0,"avg_latency_ms":18.962940834204776,"throughput_eps":0,"last_update":"2026-03-21T15:33:19.210175561Z"} +2026/03/21 15:33:24 ───────────────────────────────────────────────── +2026/03/21 15:33:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:33:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:33:24.07939192Z"} +2026/03/21 15:33:29 [detection_layer] {"stage_name":"detection_layer","events_processed":509,"events_dropped":0,"avg_latency_ms":19.27013026736382,"throughput_eps":0,"last_update":"2026-03-21T15:33:24.210665583Z"} +2026/03/21 15:33:29 [transform_engine] {"stage_name":"transform_engine","events_processed":509,"events_dropped":0,"avg_latency_ms":844.6205809773146,"throughput_eps":0,"last_update":"2026-03-21T15:33:24.210677887Z"} +2026/03/21 15:33:29 [log_collector] {"stage_name":"log_collector","events_processed":24357,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4871.4,"last_update":"2026-03-21T15:33:24.06851788Z"} +2026/03/21 15:33:29 [metric_collector] {"stage_name":"metric_collector","events_processed":15274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3054.8,"last_update":"2026-03-21T15:33:24.068754263Z"} +2026/03/21 15:33:29 ───────────────────────────────────────────────── +2026/03/21 15:33:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:33:34 [detection_layer] {"stage_name":"detection_layer","events_processed":509,"events_dropped":0,"avg_latency_ms":19.27013026736382,"throughput_eps":0,"last_update":"2026-03-21T15:33:29.210154155Z"} +2026/03/21 15:33:34 [transform_engine] {"stage_name":"transform_engine","events_processed":509,"events_dropped":0,"avg_latency_ms":844.6205809773146,"throughput_eps":0,"last_update":"2026-03-21T15:33:29.210164564Z"} +2026/03/21 15:33:34 [log_collector] {"stage_name":"log_collector","events_processed":24368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4873.6,"last_update":"2026-03-21T15:33:29.068058058Z"} +2026/03/21 15:33:34 [metric_collector] {"stage_name":"metric_collector","events_processed":15279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3055.8,"last_update":"2026-03-21T15:33:29.068252541Z"} +2026/03/21 15:33:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:33:29.078908333Z"} +2026/03/21 15:33:34 ───────────────────────────────────────────────── +2026/03/21 15:33:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:33:39 [log_collector] {"stage_name":"log_collector","events_processed":24368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4873.6,"last_update":"2026-03-21T15:33:34.068754136Z"} +2026/03/21 15:33:39 [metric_collector] {"stage_name":"metric_collector","events_processed":15284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3056.8,"last_update":"2026-03-21T15:33:34.069418378Z"} +2026/03/21 15:33:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:33:34.078661406Z"} +2026/03/21 15:33:39 [detection_layer] {"stage_name":"detection_layer","events_processed":509,"events_dropped":0,"avg_latency_ms":19.27013026736382,"throughput_eps":0,"last_update":"2026-03-21T15:33:34.209915303Z"} +2026/03/21 15:33:39 [transform_engine] {"stage_name":"transform_engine","events_processed":509,"events_dropped":0,"avg_latency_ms":844.6205809773146,"throughput_eps":0,"last_update":"2026-03-21T15:33:34.209925301Z"} +2026/03/21 15:33:39 ───────────────────────────────────────────────── +2026/03/21 15:33:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:33:44 [detection_layer] {"stage_name":"detection_layer","events_processed":509,"events_dropped":0,"avg_latency_ms":19.27013026736382,"throughput_eps":0,"last_update":"2026-03-21T15:33:39.210194146Z"} +2026/03/21 15:33:44 [transform_engine] {"stage_name":"transform_engine","events_processed":509,"events_dropped":0,"avg_latency_ms":844.6205809773146,"throughput_eps":0,"last_update":"2026-03-21T15:33:39.210204687Z"} +2026/03/21 15:33:44 [log_collector] {"stage_name":"log_collector","events_processed":24368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4873.6,"last_update":"2026-03-21T15:33:39.068807567Z"} +2026/03/21 15:33:44 [metric_collector] {"stage_name":"metric_collector","events_processed":15289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3057.8,"last_update":"2026-03-21T15:33:39.06908056Z"} +2026/03/21 15:33:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:33:39.078931872Z"} +2026/03/21 15:33:44 ───────────────────────────────────────────────── +2026/03/21 15:33:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:33:49 [detection_layer] {"stage_name":"detection_layer","events_processed":509,"events_dropped":0,"avg_latency_ms":19.27013026736382,"throughput_eps":0,"last_update":"2026-03-21T15:33:44.210092286Z"} +2026/03/21 15:33:49 [transform_engine] {"stage_name":"transform_engine","events_processed":509,"events_dropped":0,"avg_latency_ms":844.6205809773146,"throughput_eps":0,"last_update":"2026-03-21T15:33:44.210108957Z"} +2026/03/21 15:33:49 [log_collector] {"stage_name":"log_collector","events_processed":24368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4873.6,"last_update":"2026-03-21T15:33:44.068108061Z"} +2026/03/21 15:33:49 [metric_collector] {"stage_name":"metric_collector","events_processed":15294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3058.8,"last_update":"2026-03-21T15:33:44.068627605Z"} +2026/03/21 15:33:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:33:44.077680249Z"} +2026/03/21 15:33:49 ───────────────────────────────────────────────── +2026/03/21 15:33:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:33:54 [log_collector] {"stage_name":"log_collector","events_processed":24368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4873.6,"last_update":"2026-03-21T15:33:49.068780526Z"} +2026/03/21 15:33:54 [metric_collector] {"stage_name":"metric_collector","events_processed":15299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3059.8,"last_update":"2026-03-21T15:33:49.06906475Z"} +2026/03/21 15:33:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6122,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:33:49.078174823Z"} +2026/03/21 15:33:54 [detection_layer] {"stage_name":"detection_layer","events_processed":509,"events_dropped":0,"avg_latency_ms":19.27013026736382,"throughput_eps":0,"last_update":"2026-03-21T15:33:49.210370096Z"} +2026/03/21 15:33:54 [transform_engine] {"stage_name":"transform_engine","events_processed":510,"events_dropped":0,"avg_latency_ms":698.9837625818518,"throughput_eps":0,"last_update":"2026-03-21T15:33:49.326821605Z"} +2026/03/21 15:33:54 ───────────────────────────────────────────────── +2026/03/21 15:33:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:33:59 [log_collector] {"stage_name":"log_collector","events_processed":24368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4873.6,"last_update":"2026-03-21T15:33:54.068830672Z"} +2026/03/21 15:33:59 [metric_collector] {"stage_name":"metric_collector","events_processed":15304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3060.8,"last_update":"2026-03-21T15:33:54.0697642Z"} +2026/03/21 15:33:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:33:54.07830822Z"} +2026/03/21 15:33:59 [detection_layer] {"stage_name":"detection_layer","events_processed":510,"events_dropped":0,"avg_latency_ms":19.951770613891057,"throughput_eps":0,"last_update":"2026-03-21T15:33:54.210729696Z"} +2026/03/21 15:33:59 [transform_engine] {"stage_name":"transform_engine","events_processed":510,"events_dropped":0,"avg_latency_ms":698.9837625818518,"throughput_eps":0,"last_update":"2026-03-21T15:33:54.210678969Z"} +2026/03/21 15:33:59 ───────────────────────────────────────────────── +2026/03/21 15:34:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:34:04 [metric_collector] {"stage_name":"metric_collector","events_processed":15309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3061.8,"last_update":"2026-03-21T15:33:59.068724886Z"} +2026/03/21 15:34:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6126,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:33:59.078767485Z"} +2026/03/21 15:34:04 [detection_layer] {"stage_name":"detection_layer","events_processed":510,"events_dropped":0,"avg_latency_ms":19.951770613891057,"throughput_eps":0,"last_update":"2026-03-21T15:33:59.210036947Z"} +2026/03/21 15:34:04 [transform_engine] {"stage_name":"transform_engine","events_processed":510,"events_dropped":0,"avg_latency_ms":698.9837625818518,"throughput_eps":0,"last_update":"2026-03-21T15:33:59.209978524Z"} +2026/03/21 15:34:04 [log_collector] {"stage_name":"log_collector","events_processed":24368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4873.6,"last_update":"2026-03-21T15:33:59.068101582Z"} +2026/03/21 15:34:04 ───────────────────────────────────────────────── +2026/03/21 15:34:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:34:09 [detection_layer] {"stage_name":"detection_layer","events_processed":510,"events_dropped":0,"avg_latency_ms":19.951770613891057,"throughput_eps":0,"last_update":"2026-03-21T15:34:04.210562881Z"} +2026/03/21 15:34:09 [transform_engine] {"stage_name":"transform_engine","events_processed":510,"events_dropped":0,"avg_latency_ms":698.9837625818518,"throughput_eps":0,"last_update":"2026-03-21T15:34:04.21059294Z"} +2026/03/21 15:34:09 [log_collector] {"stage_name":"log_collector","events_processed":24368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4873.6,"last_update":"2026-03-21T15:34:04.068198536Z"} +2026/03/21 15:34:09 [metric_collector] {"stage_name":"metric_collector","events_processed":15314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3062.8,"last_update":"2026-03-21T15:34:04.06851938Z"} +2026/03/21 15:34:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6128,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:34:04.078059447Z"} +2026/03/21 15:34:09 ───────────────────────────────────────────────── +2026/03/21 15:34:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:34:14 [metric_collector] {"stage_name":"metric_collector","events_processed":15319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3063.8,"last_update":"2026-03-21T15:34:09.069083911Z"} +2026/03/21 15:34:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6130,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:34:09.078455676Z"} +2026/03/21 15:34:14 [detection_layer] {"stage_name":"detection_layer","events_processed":510,"events_dropped":0,"avg_latency_ms":19.951770613891057,"throughput_eps":0,"last_update":"2026-03-21T15:34:09.210669438Z"} +2026/03/21 15:34:14 [transform_engine] {"stage_name":"transform_engine","events_processed":510,"events_dropped":0,"avg_latency_ms":698.9837625818518,"throughput_eps":0,"last_update":"2026-03-21T15:34:09.210774899Z"} +2026/03/21 15:34:14 [log_collector] {"stage_name":"log_collector","events_processed":24368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4873.6,"last_update":"2026-03-21T15:34:09.068735806Z"} +2026/03/21 15:34:14 ───────────────────────────────────────────────── +2026/03/21 15:34:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:34:19 [transform_engine] {"stage_name":"transform_engine","events_processed":510,"events_dropped":0,"avg_latency_ms":698.9837625818518,"throughput_eps":0,"last_update":"2026-03-21T15:34:14.210325783Z"} +2026/03/21 15:34:19 [log_collector] {"stage_name":"log_collector","events_processed":24368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4873.6,"last_update":"2026-03-21T15:34:14.068826291Z"} +2026/03/21 15:34:19 [metric_collector] {"stage_name":"metric_collector","events_processed":15324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3064.8,"last_update":"2026-03-21T15:34:14.069573983Z"} +2026/03/21 15:34:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:34:14.080027529Z"} +2026/03/21 15:34:19 [detection_layer] {"stage_name":"detection_layer","events_processed":510,"events_dropped":0,"avg_latency_ms":19.951770613891057,"throughput_eps":0,"last_update":"2026-03-21T15:34:14.210345832Z"} +2026/03/21 15:34:19 ───────────────────────────────────────────────── +2026/03/21 15:34:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:34:24 [log_collector] {"stage_name":"log_collector","events_processed":24368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4873.6,"last_update":"2026-03-21T15:34:19.068107513Z"} +2026/03/21 15:34:24 [metric_collector] {"stage_name":"metric_collector","events_processed":15329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3065.8,"last_update":"2026-03-21T15:34:19.069105744Z"} +2026/03/21 15:34:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:34:19.077836681Z"} +2026/03/21 15:34:24 [detection_layer] {"stage_name":"detection_layer","events_processed":510,"events_dropped":0,"avg_latency_ms":19.951770613891057,"throughput_eps":0,"last_update":"2026-03-21T15:34:19.210282069Z"} +2026/03/21 15:34:24 [transform_engine] {"stage_name":"transform_engine","events_processed":511,"events_dropped":0,"avg_latency_ms":575.3136962654814,"throughput_eps":0,"last_update":"2026-03-21T15:34:19.290947631Z"} +2026/03/21 15:34:24 ───────────────────────────────────────────────── +Saved state: 17 clusters, 24369 messages, reason: none +2026/03/21 15:34:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:34:29 [log_collector] {"stage_name":"log_collector","events_processed":24368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4873.6,"last_update":"2026-03-21T15:34:24.06837882Z"} +2026/03/21 15:34:29 [metric_collector] {"stage_name":"metric_collector","events_processed":15334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3066.8,"last_update":"2026-03-21T15:34:24.069176837Z"} +2026/03/21 15:34:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:34:24.077923876Z"} +2026/03/21 15:34:29 [detection_layer] {"stage_name":"detection_layer","events_processed":511,"events_dropped":0,"avg_latency_ms":20.391196491112847,"throughput_eps":0,"last_update":"2026-03-21T15:34:24.21027293Z"} +2026/03/21 15:34:29 [transform_engine] {"stage_name":"transform_engine","events_processed":511,"events_dropped":0,"avg_latency_ms":575.3136962654814,"throughput_eps":0,"last_update":"2026-03-21T15:34:24.210283359Z"} +2026/03/21 15:34:29 ───────────────────────────────────────────────── +2026/03/21 15:34:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:34:34 [log_collector] {"stage_name":"log_collector","events_processed":24373,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4874.6,"last_update":"2026-03-21T15:34:29.068504008Z"} +2026/03/21 15:34:34 [metric_collector] {"stage_name":"metric_collector","events_processed":15339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3067.8,"last_update":"2026-03-21T15:34:29.068737896Z"} +2026/03/21 15:34:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:34:29.077960495Z"} +2026/03/21 15:34:34 [detection_layer] {"stage_name":"detection_layer","events_processed":511,"events_dropped":0,"avg_latency_ms":20.391196491112847,"throughput_eps":0,"last_update":"2026-03-21T15:34:29.210208796Z"} +2026/03/21 15:34:34 [transform_engine] {"stage_name":"transform_engine","events_processed":511,"events_dropped":0,"avg_latency_ms":575.3136962654814,"throughput_eps":0,"last_update":"2026-03-21T15:34:29.210181284Z"} +2026/03/21 15:34:34 ───────────────────────────────────────────────── +2026/03/21 15:34:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:34:39 [log_collector] {"stage_name":"log_collector","events_processed":24373,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4874.6,"last_update":"2026-03-21T15:34:34.068948491Z"} +2026/03/21 15:34:39 [metric_collector] {"stage_name":"metric_collector","events_processed":15343,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3068.6,"last_update":"2026-03-21T15:34:34.068736915Z"} +2026/03/21 15:34:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:34:34.077204669Z"} +2026/03/21 15:34:39 [detection_layer] {"stage_name":"detection_layer","events_processed":511,"events_dropped":0,"avg_latency_ms":20.391196491112847,"throughput_eps":0,"last_update":"2026-03-21T15:34:34.211387646Z"} +2026/03/21 15:34:39 [transform_engine] {"stage_name":"transform_engine","events_processed":511,"events_dropped":0,"avg_latency_ms":575.3136962654814,"throughput_eps":0,"last_update":"2026-03-21T15:34:34.211368269Z"} +2026/03/21 15:34:39 ───────────────────────────────────────────────── +2026/03/21 15:34:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:34:44 [log_collector] {"stage_name":"log_collector","events_processed":24373,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4874.6,"last_update":"2026-03-21T15:34:39.068712781Z"} +2026/03/21 15:34:44 [metric_collector] {"stage_name":"metric_collector","events_processed":15349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3069.8,"last_update":"2026-03-21T15:34:39.06889515Z"} +2026/03/21 15:34:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:34:39.08267743Z"} +2026/03/21 15:34:44 [detection_layer] {"stage_name":"detection_layer","events_processed":511,"events_dropped":0,"avg_latency_ms":20.391196491112847,"throughput_eps":0,"last_update":"2026-03-21T15:34:39.209929797Z"} +2026/03/21 15:34:44 [transform_engine] {"stage_name":"transform_engine","events_processed":511,"events_dropped":0,"avg_latency_ms":575.3136962654814,"throughput_eps":0,"last_update":"2026-03-21T15:34:39.209905841Z"} +2026/03/21 15:34:44 ───────────────────────────────────────────────── +2026/03/21 15:34:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:34:49 [detection_layer] {"stage_name":"detection_layer","events_processed":511,"events_dropped":0,"avg_latency_ms":20.391196491112847,"throughput_eps":0,"last_update":"2026-03-21T15:34:44.210145824Z"} +2026/03/21 15:34:49 [transform_engine] {"stage_name":"transform_engine","events_processed":511,"events_dropped":0,"avg_latency_ms":575.3136962654814,"throughput_eps":0,"last_update":"2026-03-21T15:34:44.21017503Z"} +2026/03/21 15:34:49 [log_collector] {"stage_name":"log_collector","events_processed":24373,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4874.6,"last_update":"2026-03-21T15:34:44.068545994Z"} +2026/03/21 15:34:49 [metric_collector] {"stage_name":"metric_collector","events_processed":15354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3070.8,"last_update":"2026-03-21T15:34:44.068924659Z"} +2026/03/21 15:34:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:34:44.076919177Z"} +2026/03/21 15:34:49 ───────────────────────────────────────────────── +2026/03/21 15:34:50 [ANOMALY] time=2026-03-21T15:34:50Z score=0.8280 method=SEAD details=MAD!:w=0.29,s=0.88 RRCF-fast:w=0.16,s=0.82 RRCF-mid!:w=0.16,s=0.90 RRCF-slow!:w=0.16,s=0.76 COPOD!:w=0.22,s=0.77 +2026/03/21 15:34:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:34:54 [log_collector] {"stage_name":"log_collector","events_processed":24373,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4874.6,"last_update":"2026-03-21T15:34:49.069461331Z"} +2026/03/21 15:34:54 [metric_collector] {"stage_name":"metric_collector","events_processed":15359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3071.8,"last_update":"2026-03-21T15:34:49.069673758Z"} +2026/03/21 15:34:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:34:49.077008402Z"} +2026/03/21 15:34:54 [detection_layer] {"stage_name":"detection_layer","events_processed":511,"events_dropped":0,"avg_latency_ms":20.391196491112847,"throughput_eps":0,"last_update":"2026-03-21T15:34:49.210379897Z"} +2026/03/21 15:34:54 [transform_engine] {"stage_name":"transform_engine","events_processed":512,"events_dropped":0,"avg_latency_ms":676.9220816123852,"throughput_eps":0,"last_update":"2026-03-21T15:34:50.293765668Z"} +2026/03/21 15:34:54 ───────────────────────────────────────────────── +2026/03/21 15:34:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:34:59 [log_collector] {"stage_name":"log_collector","events_processed":24373,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4874.6,"last_update":"2026-03-21T15:34:54.068547675Z"} +2026/03/21 15:34:59 [metric_collector] {"stage_name":"metric_collector","events_processed":15364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3072.8,"last_update":"2026-03-21T15:34:54.068783196Z"} +2026/03/21 15:34:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:34:54.078689003Z"} +2026/03/21 15:34:59 [detection_layer] {"stage_name":"detection_layer","events_processed":512,"events_dropped":0,"avg_latency_ms":18.807752192890277,"throughput_eps":0,"last_update":"2026-03-21T15:34:54.211064322Z"} +2026/03/21 15:34:59 [transform_engine] {"stage_name":"transform_engine","events_processed":512,"events_dropped":0,"avg_latency_ms":676.9220816123852,"throughput_eps":0,"last_update":"2026-03-21T15:34:54.211149225Z"} +2026/03/21 15:34:59 ───────────────────────────────────────────────── +2026/03/21 15:35:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:35:04 [transform_engine] {"stage_name":"transform_engine","events_processed":512,"events_dropped":0,"avg_latency_ms":676.9220816123852,"throughput_eps":0,"last_update":"2026-03-21T15:34:59.210044163Z"} +2026/03/21 15:35:04 [log_collector] {"stage_name":"log_collector","events_processed":24373,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4874.6,"last_update":"2026-03-21T15:34:59.068332337Z"} +2026/03/21 15:35:04 [metric_collector] {"stage_name":"metric_collector","events_processed":15369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3073.8,"last_update":"2026-03-21T15:34:59.068659272Z"} +2026/03/21 15:35:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:34:59.075726193Z"} +2026/03/21 15:35:04 [detection_layer] {"stage_name":"detection_layer","events_processed":512,"events_dropped":0,"avg_latency_ms":18.807752192890277,"throughput_eps":0,"last_update":"2026-03-21T15:34:59.210075122Z"} +2026/03/21 15:35:04 ───────────────────────────────────────────────── +2026/03/21 15:35:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:35:09 [detection_layer] {"stage_name":"detection_layer","events_processed":512,"events_dropped":0,"avg_latency_ms":18.807752192890277,"throughput_eps":0,"last_update":"2026-03-21T15:35:04.210887963Z"} +2026/03/21 15:35:09 [transform_engine] {"stage_name":"transform_engine","events_processed":512,"events_dropped":0,"avg_latency_ms":676.9220816123852,"throughput_eps":0,"last_update":"2026-03-21T15:35:04.209797054Z"} +2026/03/21 15:35:09 [log_collector] {"stage_name":"log_collector","events_processed":24373,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4874.6,"last_update":"2026-03-21T15:35:04.068582138Z"} +2026/03/21 15:35:09 [metric_collector] {"stage_name":"metric_collector","events_processed":15374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3074.8,"last_update":"2026-03-21T15:35:04.068850451Z"} +2026/03/21 15:35:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:35:04.078630027Z"} +2026/03/21 15:35:09 ───────────────────────────────────────────────── +2026/03/21 15:35:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:35:14 [log_collector] {"stage_name":"log_collector","events_processed":24373,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4874.6,"last_update":"2026-03-21T15:35:09.068501907Z"} +2026/03/21 15:35:14 [metric_collector] {"stage_name":"metric_collector","events_processed":15379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3075.8,"last_update":"2026-03-21T15:35:09.068737548Z"} +2026/03/21 15:35:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:35:09.076726355Z"} +2026/03/21 15:35:14 [detection_layer] {"stage_name":"detection_layer","events_processed":512,"events_dropped":0,"avg_latency_ms":18.807752192890277,"throughput_eps":0,"last_update":"2026-03-21T15:35:09.209984646Z"} +2026/03/21 15:35:14 [transform_engine] {"stage_name":"transform_engine","events_processed":512,"events_dropped":0,"avg_latency_ms":676.9220816123852,"throughput_eps":0,"last_update":"2026-03-21T15:35:09.209943849Z"} +2026/03/21 15:35:14 ───────────────────────────────────────────────── +2026/03/21 15:35:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:35:19 [log_collector] {"stage_name":"log_collector","events_processed":24384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4876.8,"last_update":"2026-03-21T15:35:14.068569227Z"} +2026/03/21 15:35:19 [metric_collector] {"stage_name":"metric_collector","events_processed":15384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3076.8,"last_update":"2026-03-21T15:35:14.068885683Z"} +2026/03/21 15:35:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:35:14.076449667Z"} +2026/03/21 15:35:19 [detection_layer] {"stage_name":"detection_layer","events_processed":512,"events_dropped":0,"avg_latency_ms":18.807752192890277,"throughput_eps":0,"last_update":"2026-03-21T15:35:14.210677796Z"} +2026/03/21 15:35:19 [transform_engine] {"stage_name":"transform_engine","events_processed":512,"events_dropped":0,"avg_latency_ms":676.9220816123852,"throughput_eps":0,"last_update":"2026-03-21T15:35:14.210706982Z"} +2026/03/21 15:35:19 ───────────────────────────────────────────────── +2026/03/21 15:35:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:35:24 [log_collector] {"stage_name":"log_collector","events_processed":24691,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4938.2,"last_update":"2026-03-21T15:35:24.068254392Z"} +2026/03/21 15:35:24 [metric_collector] {"stage_name":"metric_collector","events_processed":15389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3077.8,"last_update":"2026-03-21T15:35:19.068924206Z"} +2026/03/21 15:35:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:35:19.076412385Z"} +2026/03/21 15:35:24 [detection_layer] {"stage_name":"detection_layer","events_processed":512,"events_dropped":0,"avg_latency_ms":18.807752192890277,"throughput_eps":0,"last_update":"2026-03-21T15:35:19.210668679Z"} +2026/03/21 15:35:24 [transform_engine] {"stage_name":"transform_engine","events_processed":513,"events_dropped":0,"avg_latency_ms":570.6544080899082,"throughput_eps":0,"last_update":"2026-03-21T15:35:19.356244308Z"} +2026/03/21 15:35:24 ───────────────────────────────────────────────── +Saved state: 17 clusters, 24714 messages, reason: none +2026/03/21 15:35:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:35:29 [log_collector] {"stage_name":"log_collector","events_processed":24691,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4938.2,"last_update":"2026-03-21T15:35:24.068254392Z"} +2026/03/21 15:35:29 [metric_collector] {"stage_name":"metric_collector","events_processed":15394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3078.8,"last_update":"2026-03-21T15:35:24.068627557Z"} +2026/03/21 15:35:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:35:24.075403501Z"} +2026/03/21 15:35:29 [detection_layer] {"stage_name":"detection_layer","events_processed":513,"events_dropped":0,"avg_latency_ms":18.088152554312224,"throughput_eps":0,"last_update":"2026-03-21T15:35:24.210553678Z"} +2026/03/21 15:35:29 [transform_engine] {"stage_name":"transform_engine","events_processed":513,"events_dropped":0,"avg_latency_ms":570.6544080899082,"throughput_eps":0,"last_update":"2026-03-21T15:35:24.210530153Z"} +2026/03/21 15:35:29 ───────────────────────────────────────────────── +2026/03/21 15:35:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:35:34 [transform_engine] {"stage_name":"transform_engine","events_processed":513,"events_dropped":0,"avg_latency_ms":570.6544080899082,"throughput_eps":0,"last_update":"2026-03-21T15:35:29.210319657Z"} +2026/03/21 15:35:34 [log_collector] {"stage_name":"log_collector","events_processed":24737,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4947.4,"last_update":"2026-03-21T15:35:29.068081377Z"} +2026/03/21 15:35:34 [metric_collector] {"stage_name":"metric_collector","events_processed":15399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3079.8,"last_update":"2026-03-21T15:35:29.068760057Z"} +2026/03/21 15:35:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:35:29.077040513Z"} +2026/03/21 15:35:34 [detection_layer] {"stage_name":"detection_layer","events_processed":513,"events_dropped":0,"avg_latency_ms":18.088152554312224,"throughput_eps":0,"last_update":"2026-03-21T15:35:29.210276244Z"} +2026/03/21 15:35:34 ───────────────────────────────────────────────── +2026/03/21 15:35:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:35:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:35:34.079952151Z"} +2026/03/21 15:35:39 [detection_layer] {"stage_name":"detection_layer","events_processed":513,"events_dropped":0,"avg_latency_ms":18.088152554312224,"throughput_eps":0,"last_update":"2026-03-21T15:35:34.210179844Z"} +2026/03/21 15:35:39 [transform_engine] {"stage_name":"transform_engine","events_processed":513,"events_dropped":0,"avg_latency_ms":570.6544080899082,"throughput_eps":0,"last_update":"2026-03-21T15:35:34.210211234Z"} +2026/03/21 15:35:39 [log_collector] {"stage_name":"log_collector","events_processed":24737,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4947.4,"last_update":"2026-03-21T15:35:34.069057361Z"} +2026/03/21 15:35:39 [metric_collector] {"stage_name":"metric_collector","events_processed":15404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3080.8,"last_update":"2026-03-21T15:35:34.069393865Z"} +2026/03/21 15:35:39 ───────────────────────────────────────────────── +2026/03/21 15:35:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:35:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:35:39.076311745Z"} +2026/03/21 15:35:44 [detection_layer] {"stage_name":"detection_layer","events_processed":513,"events_dropped":0,"avg_latency_ms":18.088152554312224,"throughput_eps":0,"last_update":"2026-03-21T15:35:39.210497648Z"} +2026/03/21 15:35:44 [transform_engine] {"stage_name":"transform_engine","events_processed":513,"events_dropped":0,"avg_latency_ms":570.6544080899082,"throughput_eps":0,"last_update":"2026-03-21T15:35:39.210508929Z"} +2026/03/21 15:35:44 [log_collector] {"stage_name":"log_collector","events_processed":24737,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4947.4,"last_update":"2026-03-21T15:35:39.068765977Z"} +2026/03/21 15:35:44 [metric_collector] {"stage_name":"metric_collector","events_processed":15409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3081.8,"last_update":"2026-03-21T15:35:39.068967092Z"} +2026/03/21 15:35:44 ───────────────────────────────────────────────── +2026/03/21 15:35:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:35:49 [transform_engine] {"stage_name":"transform_engine","events_processed":513,"events_dropped":0,"avg_latency_ms":570.6544080899082,"throughput_eps":0,"last_update":"2026-03-21T15:35:44.210047929Z"} +2026/03/21 15:35:49 [log_collector] {"stage_name":"log_collector","events_processed":24737,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4947.4,"last_update":"2026-03-21T15:35:44.068101947Z"} +2026/03/21 15:35:49 [metric_collector] {"stage_name":"metric_collector","events_processed":15414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3082.8,"last_update":"2026-03-21T15:35:44.068318551Z"} +2026/03/21 15:35:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:35:44.077804345Z"} +2026/03/21 15:35:49 [detection_layer] {"stage_name":"detection_layer","events_processed":513,"events_dropped":0,"avg_latency_ms":18.088152554312224,"throughput_eps":0,"last_update":"2026-03-21T15:35:44.210038822Z"} +2026/03/21 15:35:49 ───────────────────────────────────────────────── +2026/03/21 15:35:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:35:54 [transform_engine] {"stage_name":"transform_engine","events_processed":514,"events_dropped":0,"avg_latency_ms":479.5410190719266,"throughput_eps":0,"last_update":"2026-03-21T15:35:49.325767809Z"} +2026/03/21 15:35:54 [log_collector] {"stage_name":"log_collector","events_processed":24737,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4947.4,"last_update":"2026-03-21T15:35:49.068422846Z"} +2026/03/21 15:35:54 [metric_collector] {"stage_name":"metric_collector","events_processed":15419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3083.8,"last_update":"2026-03-21T15:35:49.068796852Z"} +2026/03/21 15:35:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6170,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:35:49.07836832Z"} +2026/03/21 15:35:54 [detection_layer] {"stage_name":"detection_layer","events_processed":513,"events_dropped":0,"avg_latency_ms":18.088152554312224,"throughput_eps":0,"last_update":"2026-03-21T15:35:49.210667751Z"} +2026/03/21 15:35:54 ───────────────────────────────────────────────── +2026/03/21 15:35:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:35:59 [log_collector] {"stage_name":"log_collector","events_processed":24737,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4947.4,"last_update":"2026-03-21T15:35:54.068880486Z"} +2026/03/21 15:35:59 [metric_collector] {"stage_name":"metric_collector","events_processed":15424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3084.8,"last_update":"2026-03-21T15:35:54.069174248Z"} +2026/03/21 15:35:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:35:54.077356987Z"} +2026/03/21 15:35:59 [detection_layer] {"stage_name":"detection_layer","events_processed":514,"events_dropped":0,"avg_latency_ms":17.82204964344978,"throughput_eps":0,"last_update":"2026-03-21T15:35:54.210598343Z"} +2026/03/21 15:35:59 [transform_engine] {"stage_name":"transform_engine","events_processed":514,"events_dropped":0,"avg_latency_ms":479.5410190719266,"throughput_eps":0,"last_update":"2026-03-21T15:35:54.210703854Z"} +2026/03/21 15:35:59 ───────────────────────────────────────────────── +2026/03/21 15:36:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:36:04 [log_collector] {"stage_name":"log_collector","events_processed":24737,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4947.4,"last_update":"2026-03-21T15:35:59.069320929Z"} +2026/03/21 15:36:04 [metric_collector] {"stage_name":"metric_collector","events_processed":15429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3085.8,"last_update":"2026-03-21T15:35:59.069289028Z"} +2026/03/21 15:36:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:35:59.076006931Z"} +2026/03/21 15:36:04 [detection_layer] {"stage_name":"detection_layer","events_processed":514,"events_dropped":0,"avg_latency_ms":17.82204964344978,"throughput_eps":0,"last_update":"2026-03-21T15:35:59.210325572Z"} +2026/03/21 15:36:04 [transform_engine] {"stage_name":"transform_engine","events_processed":514,"events_dropped":0,"avg_latency_ms":479.5410190719266,"throughput_eps":0,"last_update":"2026-03-21T15:35:59.21029373Z"} +2026/03/21 15:36:04 ───────────────────────────────────────────────── +2026/03/21 15:36:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:36:09 [metric_collector] {"stage_name":"metric_collector","events_processed":15434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3086.8,"last_update":"2026-03-21T15:36:04.068522817Z"} +2026/03/21 15:36:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:36:04.076777212Z"} +2026/03/21 15:36:09 [detection_layer] {"stage_name":"detection_layer","events_processed":514,"events_dropped":0,"avg_latency_ms":17.82204964344978,"throughput_eps":0,"last_update":"2026-03-21T15:36:04.210102341Z"} +2026/03/21 15:36:09 [transform_engine] {"stage_name":"transform_engine","events_processed":514,"events_dropped":0,"avg_latency_ms":479.5410190719266,"throughput_eps":0,"last_update":"2026-03-21T15:36:04.21002903Z"} +2026/03/21 15:36:09 [log_collector] {"stage_name":"log_collector","events_processed":24737,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4947.4,"last_update":"2026-03-21T15:36:04.068272267Z"} +2026/03/21 15:36:09 ───────────────────────────────────────────────── +2026/03/21 15:36:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:36:14 [log_collector] {"stage_name":"log_collector","events_processed":24737,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4947.4,"last_update":"2026-03-21T15:36:09.068851959Z"} +2026/03/21 15:36:14 [metric_collector] {"stage_name":"metric_collector","events_processed":15439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3087.8,"last_update":"2026-03-21T15:36:09.069121405Z"} +2026/03/21 15:36:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:36:09.076730946Z"} +2026/03/21 15:36:14 [detection_layer] {"stage_name":"detection_layer","events_processed":514,"events_dropped":0,"avg_latency_ms":17.82204964344978,"throughput_eps":0,"last_update":"2026-03-21T15:36:09.210099027Z"} +2026/03/21 15:36:14 [transform_engine] {"stage_name":"transform_engine","events_processed":514,"events_dropped":0,"avg_latency_ms":479.5410190719266,"throughput_eps":0,"last_update":"2026-03-21T15:36:09.210063318Z"} +2026/03/21 15:36:14 ───────────────────────────────────────────────── +2026/03/21 15:36:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:36:19 [detection_layer] {"stage_name":"detection_layer","events_processed":514,"events_dropped":0,"avg_latency_ms":17.82204964344978,"throughput_eps":0,"last_update":"2026-03-21T15:36:14.210560951Z"} +2026/03/21 15:36:19 [transform_engine] {"stage_name":"transform_engine","events_processed":514,"events_dropped":0,"avg_latency_ms":479.5410190719266,"throughput_eps":0,"last_update":"2026-03-21T15:36:14.210640743Z"} +2026/03/21 15:36:19 [log_collector] {"stage_name":"log_collector","events_processed":24737,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4947.4,"last_update":"2026-03-21T15:36:14.068753479Z"} +2026/03/21 15:36:19 [metric_collector] {"stage_name":"metric_collector","events_processed":15444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3088.8,"last_update":"2026-03-21T15:36:14.068979061Z"} +2026/03/21 15:36:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:36:14.077334841Z"} +2026/03/21 15:36:19 ───────────────────────────────────────────────── +2026/03/21 15:36:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:36:24 [transform_engine] {"stage_name":"transform_engine","events_processed":515,"events_dropped":0,"avg_latency_ms":396.6943644575413,"throughput_eps":0,"last_update":"2026-03-21T15:36:19.275326453Z"} +2026/03/21 15:36:24 [log_collector] {"stage_name":"log_collector","events_processed":24737,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4947.4,"last_update":"2026-03-21T15:36:19.068923389Z"} +2026/03/21 15:36:24 [metric_collector] {"stage_name":"metric_collector","events_processed":15449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3089.8,"last_update":"2026-03-21T15:36:19.06908587Z"} +2026/03/21 15:36:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:36:19.075662083Z"} +2026/03/21 15:36:24 [detection_layer] {"stage_name":"detection_layer","events_processed":514,"events_dropped":0,"avg_latency_ms":17.82204964344978,"throughput_eps":0,"last_update":"2026-03-21T15:36:19.209985865Z"} +2026/03/21 15:36:24 ───────────────────────────────────────────────── +2026/03/21 15:36:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:36:29 [log_collector] {"stage_name":"log_collector","events_processed":24737,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4947.4,"last_update":"2026-03-21T15:36:24.069035713Z"} +2026/03/21 15:36:29 [metric_collector] {"stage_name":"metric_collector","events_processed":15454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3090.8,"last_update":"2026-03-21T15:36:24.069422263Z"} +2026/03/21 15:36:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:36:24.076310543Z"} +2026/03/21 15:36:29 [detection_layer] {"stage_name":"detection_layer","events_processed":515,"events_dropped":0,"avg_latency_ms":17.550797914759826,"throughput_eps":0,"last_update":"2026-03-21T15:36:24.210535186Z"} +2026/03/21 15:36:29 [transform_engine] {"stage_name":"transform_engine","events_processed":515,"events_dropped":0,"avg_latency_ms":396.6943644575413,"throughput_eps":0,"last_update":"2026-03-21T15:36:24.210507232Z"} +2026/03/21 15:36:29 ───────────────────────────────────────────────── +2026/03/21 15:36:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:36:34 [metric_collector] {"stage_name":"metric_collector","events_processed":15459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3091.8,"last_update":"2026-03-21T15:36:29.069415883Z"} +2026/03/21 15:36:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:36:29.07601503Z"} +2026/03/21 15:36:34 [detection_layer] {"stage_name":"detection_layer","events_processed":515,"events_dropped":0,"avg_latency_ms":17.550797914759826,"throughput_eps":0,"last_update":"2026-03-21T15:36:29.21049886Z"} +2026/03/21 15:36:34 [transform_engine] {"stage_name":"transform_engine","events_processed":515,"events_dropped":0,"avg_latency_ms":396.6943644575413,"throughput_eps":0,"last_update":"2026-03-21T15:36:29.210415479Z"} +2026/03/21 15:36:34 [log_collector] {"stage_name":"log_collector","events_processed":24737,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4947.4,"last_update":"2026-03-21T15:36:29.06899091Z"} +2026/03/21 15:36:34 ───────────────────────────────────────────────── +2026/03/21 15:36:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:36:39 [log_collector] {"stage_name":"log_collector","events_processed":24737,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4947.4,"last_update":"2026-03-21T15:36:34.068822346Z"} +2026/03/21 15:36:39 [metric_collector] {"stage_name":"metric_collector","events_processed":15464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3092.8,"last_update":"2026-03-21T15:36:34.069043238Z"} +2026/03/21 15:36:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:36:34.076385348Z"} +2026/03/21 15:36:39 [detection_layer] {"stage_name":"detection_layer","events_processed":515,"events_dropped":0,"avg_latency_ms":17.550797914759826,"throughput_eps":0,"last_update":"2026-03-21T15:36:34.210584723Z"} +2026/03/21 15:36:39 [transform_engine] {"stage_name":"transform_engine","events_processed":515,"events_dropped":0,"avg_latency_ms":396.6943644575413,"throughput_eps":0,"last_update":"2026-03-21T15:36:34.210617637Z"} +2026/03/21 15:36:39 ───────────────────────────────────────────────── +2026/03/21 15:36:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:36:44 [transform_engine] {"stage_name":"transform_engine","events_processed":515,"events_dropped":0,"avg_latency_ms":396.6943644575413,"throughput_eps":0,"last_update":"2026-03-21T15:36:39.210318378Z"} +2026/03/21 15:36:44 [log_collector] {"stage_name":"log_collector","events_processed":24737,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4947.4,"last_update":"2026-03-21T15:36:44.068190347Z"} +2026/03/21 15:36:44 [metric_collector] {"stage_name":"metric_collector","events_processed":15469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3093.8,"last_update":"2026-03-21T15:36:39.069037712Z"} +2026/03/21 15:36:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:36:39.076992605Z"} +2026/03/21 15:36:44 [detection_layer] {"stage_name":"detection_layer","events_processed":515,"events_dropped":0,"avg_latency_ms":17.550797914759826,"throughput_eps":0,"last_update":"2026-03-21T15:36:39.210269143Z"} +2026/03/21 15:36:44 ───────────────────────────────────────────────── +2026/03/21 15:36:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:36:49 [metric_collector] {"stage_name":"metric_collector","events_processed":15474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3094.8,"last_update":"2026-03-21T15:36:44.068663173Z"} +2026/03/21 15:36:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:36:44.07547176Z"} +2026/03/21 15:36:49 [detection_layer] {"stage_name":"detection_layer","events_processed":515,"events_dropped":0,"avg_latency_ms":17.550797914759826,"throughput_eps":0,"last_update":"2026-03-21T15:36:44.21080632Z"} +2026/03/21 15:36:49 [transform_engine] {"stage_name":"transform_engine","events_processed":515,"events_dropped":0,"avg_latency_ms":396.6943644575413,"throughput_eps":0,"last_update":"2026-03-21T15:36:44.209668632Z"} +2026/03/21 15:36:49 [log_collector] {"stage_name":"log_collector","events_processed":24737,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4947.4,"last_update":"2026-03-21T15:36:44.068190347Z"} +2026/03/21 15:36:49 ───────────────────────────────────────────────── +2026/03/21 15:36:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:36:54 [log_collector] {"stage_name":"log_collector","events_processed":24737,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4947.4,"last_update":"2026-03-21T15:36:49.068059048Z"} +2026/03/21 15:36:54 [metric_collector] {"stage_name":"metric_collector","events_processed":15479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3095.8,"last_update":"2026-03-21T15:36:49.068433354Z"} +2026/03/21 15:36:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:36:49.077425844Z"} +2026/03/21 15:36:54 [detection_layer] {"stage_name":"detection_layer","events_processed":515,"events_dropped":0,"avg_latency_ms":17.550797914759826,"throughput_eps":0,"last_update":"2026-03-21T15:36:49.210723927Z"} +2026/03/21 15:36:54 [transform_engine] {"stage_name":"transform_engine","events_processed":515,"events_dropped":0,"avg_latency_ms":396.6943644575413,"throughput_eps":0,"last_update":"2026-03-21T15:36:49.210685002Z"} +2026/03/21 15:36:54 ───────────────────────────────────────────────── +2026/03/21 15:36:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:36:59 [detection_layer] {"stage_name":"detection_layer","events_processed":516,"events_dropped":0,"avg_latency_ms":17.107821931807862,"throughput_eps":0,"last_update":"2026-03-21T15:36:54.210098566Z"} +2026/03/21 15:36:59 [transform_engine] {"stage_name":"transform_engine","events_processed":516,"events_dropped":0,"avg_latency_ms":330.0191069660331,"throughput_eps":0,"last_update":"2026-03-21T15:36:54.210174642Z"} +2026/03/21 15:36:59 [log_collector] {"stage_name":"log_collector","events_processed":24737,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4947.4,"last_update":"2026-03-21T15:36:54.068826895Z"} +2026/03/21 15:36:59 [metric_collector] {"stage_name":"metric_collector","events_processed":15484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3096.8,"last_update":"2026-03-21T15:36:54.06903287Z"} +2026/03/21 15:36:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:36:54.075869931Z"} +2026/03/21 15:36:59 ───────────────────────────────────────────────── +Saved state: 17 clusters, 24738 messages, reason: none +2026/03/21 15:37:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:37:04 [metric_collector] {"stage_name":"metric_collector","events_processed":15489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3097.8,"last_update":"2026-03-21T15:36:59.068435415Z"} +2026/03/21 15:37:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:36:59.076199753Z"} +2026/03/21 15:37:04 [detection_layer] {"stage_name":"detection_layer","events_processed":516,"events_dropped":0,"avg_latency_ms":17.107821931807862,"throughput_eps":0,"last_update":"2026-03-21T15:36:59.210493202Z"} +2026/03/21 15:37:04 [transform_engine] {"stage_name":"transform_engine","events_processed":516,"events_dropped":0,"avg_latency_ms":330.0191069660331,"throughput_eps":0,"last_update":"2026-03-21T15:36:59.210511417Z"} +2026/03/21 15:37:04 [log_collector] {"stage_name":"log_collector","events_processed":24737,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4947.4,"last_update":"2026-03-21T15:36:59.068127265Z"} +2026/03/21 15:37:04 ───────────────────────────────────────────────── +2026/03/21 15:37:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:37:09 [log_collector] {"stage_name":"log_collector","events_processed":24740,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4948,"last_update":"2026-03-21T15:37:04.068619669Z"} +2026/03/21 15:37:09 [metric_collector] {"stage_name":"metric_collector","events_processed":15494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3098.8,"last_update":"2026-03-21T15:37:04.069004297Z"} +2026/03/21 15:37:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:37:04.068615361Z"} +2026/03/21 15:37:09 [detection_layer] {"stage_name":"detection_layer","events_processed":516,"events_dropped":0,"avg_latency_ms":17.107821931807862,"throughput_eps":0,"last_update":"2026-03-21T15:37:04.210889764Z"} +2026/03/21 15:37:09 [transform_engine] {"stage_name":"transform_engine","events_processed":516,"events_dropped":0,"avg_latency_ms":330.0191069660331,"throughput_eps":0,"last_update":"2026-03-21T15:37:04.209687291Z"} +2026/03/21 15:37:09 ───────────────────────────────────────────────── +2026/03/21 15:37:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:37:14 [transform_engine] {"stage_name":"transform_engine","events_processed":516,"events_dropped":0,"avg_latency_ms":330.0191069660331,"throughput_eps":0,"last_update":"2026-03-21T15:37:09.210571472Z"} +2026/03/21 15:37:14 [log_collector] {"stage_name":"log_collector","events_processed":24740,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4948,"last_update":"2026-03-21T15:37:09.068894944Z"} +2026/03/21 15:37:14 [metric_collector] {"stage_name":"metric_collector","events_processed":15499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3099.8,"last_update":"2026-03-21T15:37:09.069217831Z"} +2026/03/21 15:37:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:37:09.068888902Z"} +2026/03/21 15:37:14 [detection_layer] {"stage_name":"detection_layer","events_processed":516,"events_dropped":0,"avg_latency_ms":17.107821931807862,"throughput_eps":0,"last_update":"2026-03-21T15:37:09.210582372Z"} +2026/03/21 15:37:14 ───────────────────────────────────────────────── +2026/03/21 15:37:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:37:19 [log_collector] {"stage_name":"log_collector","events_processed":24751,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4950.2,"last_update":"2026-03-21T15:37:14.068690291Z"} +2026/03/21 15:37:19 [metric_collector] {"stage_name":"metric_collector","events_processed":15504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3100.8,"last_update":"2026-03-21T15:37:14.068931212Z"} +2026/03/21 15:37:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:37:14.068686894Z"} +2026/03/21 15:37:19 [detection_layer] {"stage_name":"detection_layer","events_processed":516,"events_dropped":0,"avg_latency_ms":17.107821931807862,"throughput_eps":0,"last_update":"2026-03-21T15:37:14.21046091Z"} +2026/03/21 15:37:19 [transform_engine] {"stage_name":"transform_engine","events_processed":516,"events_dropped":0,"avg_latency_ms":330.0191069660331,"throughput_eps":0,"last_update":"2026-03-21T15:37:14.210554329Z"} +2026/03/21 15:37:19 ───────────────────────────────────────────────── +2026/03/21 15:37:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:37:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:37:19.068381059Z"} +2026/03/21 15:37:24 [detection_layer] {"stage_name":"detection_layer","events_processed":516,"events_dropped":0,"avg_latency_ms":17.107821931807862,"throughput_eps":0,"last_update":"2026-03-21T15:37:19.210381579Z"} +2026/03/21 15:37:24 [transform_engine] {"stage_name":"transform_engine","events_processed":517,"events_dropped":0,"avg_latency_ms":287.3644151728265,"throughput_eps":0,"last_update":"2026-03-21T15:37:19.327171894Z"} +2026/03/21 15:37:24 [log_collector] {"stage_name":"log_collector","events_processed":24758,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4951.6,"last_update":"2026-03-21T15:37:19.068054714Z"} +2026/03/21 15:37:24 [metric_collector] {"stage_name":"metric_collector","events_processed":15509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3101.8,"last_update":"2026-03-21T15:37:19.068224219Z"} +2026/03/21 15:37:24 ───────────────────────────────────────────────── +2026/03/21 15:37:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:37:29 [transform_engine] {"stage_name":"transform_engine","events_processed":517,"events_dropped":0,"avg_latency_ms":287.3644151728265,"throughput_eps":0,"last_update":"2026-03-21T15:37:24.210561569Z"} +2026/03/21 15:37:29 [log_collector] {"stage_name":"log_collector","events_processed":24770,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4954,"last_update":"2026-03-21T15:37:24.068697349Z"} +2026/03/21 15:37:29 [metric_collector] {"stage_name":"metric_collector","events_processed":15514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3102.8,"last_update":"2026-03-21T15:37:24.068909296Z"} +2026/03/21 15:37:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:37:24.075344338Z"} +2026/03/21 15:37:29 [detection_layer] {"stage_name":"detection_layer","events_processed":517,"events_dropped":0,"avg_latency_ms":16.88635554544629,"throughput_eps":0,"last_update":"2026-03-21T15:37:24.211404785Z"} +2026/03/21 15:37:29 ───────────────────────────────────────────────── +2026/03/21 15:37:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:37:34 [log_collector] {"stage_name":"log_collector","events_processed":24781,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4956.2,"last_update":"2026-03-21T15:37:29.068980738Z"} +2026/03/21 15:37:34 [metric_collector] {"stage_name":"metric_collector","events_processed":15519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3103.8,"last_update":"2026-03-21T15:37:29.069473371Z"} +2026/03/21 15:37:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6210,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:37:29.078661195Z"} +2026/03/21 15:37:34 [detection_layer] {"stage_name":"detection_layer","events_processed":517,"events_dropped":0,"avg_latency_ms":16.88635554544629,"throughput_eps":0,"last_update":"2026-03-21T15:37:29.209937711Z"} +2026/03/21 15:37:34 [transform_engine] {"stage_name":"transform_engine","events_processed":517,"events_dropped":0,"avg_latency_ms":287.3644151728265,"throughput_eps":0,"last_update":"2026-03-21T15:37:29.209911631Z"} +2026/03/21 15:37:34 ───────────────────────────────────────────────── +2026/03/21 15:37:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:37:39 [transform_engine] {"stage_name":"transform_engine","events_processed":517,"events_dropped":0,"avg_latency_ms":287.3644151728265,"throughput_eps":0,"last_update":"2026-03-21T15:37:34.20997346Z"} +2026/03/21 15:37:39 [log_collector] {"stage_name":"log_collector","events_processed":24781,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4956.2,"last_update":"2026-03-21T15:37:34.068641859Z"} +2026/03/21 15:37:39 [metric_collector] {"stage_name":"metric_collector","events_processed":15524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3104.8,"last_update":"2026-03-21T15:37:34.069092181Z"} +2026/03/21 15:37:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:37:34.077642203Z"} +2026/03/21 15:37:39 [detection_layer] {"stage_name":"detection_layer","events_processed":517,"events_dropped":0,"avg_latency_ms":16.88635554544629,"throughput_eps":0,"last_update":"2026-03-21T15:37:34.209931008Z"} +2026/03/21 15:37:39 ───────────────────────────────────────────────── +2026/03/21 15:37:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:37:44 [log_collector] {"stage_name":"log_collector","events_processed":24781,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4956.2,"last_update":"2026-03-21T15:37:39.068089443Z"} +2026/03/21 15:37:44 [metric_collector] {"stage_name":"metric_collector","events_processed":15529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3105.8,"last_update":"2026-03-21T15:37:39.068334041Z"} +2026/03/21 15:37:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:37:39.076829189Z"} +2026/03/21 15:37:44 [detection_layer] {"stage_name":"detection_layer","events_processed":517,"events_dropped":0,"avg_latency_ms":16.88635554544629,"throughput_eps":0,"last_update":"2026-03-21T15:37:39.210230704Z"} +2026/03/21 15:37:44 [transform_engine] {"stage_name":"transform_engine","events_processed":517,"events_dropped":0,"avg_latency_ms":287.3644151728265,"throughput_eps":0,"last_update":"2026-03-21T15:37:39.210125583Z"} +2026/03/21 15:37:44 ───────────────────────────────────────────────── +2026/03/21 15:37:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:37:49 [metric_collector] {"stage_name":"metric_collector","events_processed":15534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3106.8,"last_update":"2026-03-21T15:37:44.069049392Z"} +2026/03/21 15:37:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:37:44.078261572Z"} +2026/03/21 15:37:49 [detection_layer] {"stage_name":"detection_layer","events_processed":517,"events_dropped":0,"avg_latency_ms":16.88635554544629,"throughput_eps":0,"last_update":"2026-03-21T15:37:44.210550559Z"} +2026/03/21 15:37:49 [transform_engine] {"stage_name":"transform_engine","events_processed":517,"events_dropped":0,"avg_latency_ms":287.3644151728265,"throughput_eps":0,"last_update":"2026-03-21T15:37:44.210510272Z"} +2026/03/21 15:37:49 [log_collector] {"stage_name":"log_collector","events_processed":24781,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4956.2,"last_update":"2026-03-21T15:37:44.068795786Z"} +2026/03/21 15:37:49 ───────────────────────────────────────────────── +2026/03/21 15:37:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:37:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:37:49.077473767Z"} +2026/03/21 15:37:54 [detection_layer] {"stage_name":"detection_layer","events_processed":517,"events_dropped":0,"avg_latency_ms":16.88635554544629,"throughput_eps":0,"last_update":"2026-03-21T15:37:49.21074244Z"} +2026/03/21 15:37:54 [transform_engine] {"stage_name":"transform_engine","events_processed":518,"events_dropped":0,"avg_latency_ms":251.07584493826124,"throughput_eps":0,"last_update":"2026-03-21T15:37:49.316631092Z"} +2026/03/21 15:37:54 [log_collector] {"stage_name":"log_collector","events_processed":24781,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4956.2,"last_update":"2026-03-21T15:37:54.068081135Z"} +2026/03/21 15:37:54 [metric_collector] {"stage_name":"metric_collector","events_processed":15539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3107.8,"last_update":"2026-03-21T15:37:49.069054806Z"} +2026/03/21 15:37:54 ───────────────────────────────────────────────── +2026/03/21 15:37:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:37:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:37:54.076599127Z"} +2026/03/21 15:37:59 [detection_layer] {"stage_name":"detection_layer","events_processed":518,"events_dropped":0,"avg_latency_ms":17.718589436357032,"throughput_eps":0,"last_update":"2026-03-21T15:37:54.210885429Z"} +2026/03/21 15:37:59 [transform_engine] {"stage_name":"transform_engine","events_processed":518,"events_dropped":0,"avg_latency_ms":251.07584493826124,"throughput_eps":0,"last_update":"2026-03-21T15:37:54.209749674Z"} +2026/03/21 15:37:59 [log_collector] {"stage_name":"log_collector","events_processed":24781,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4956.2,"last_update":"2026-03-21T15:37:54.068081135Z"} +2026/03/21 15:37:59 [metric_collector] {"stage_name":"metric_collector","events_processed":15544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3108.8,"last_update":"2026-03-21T15:37:54.068377312Z"} +2026/03/21 15:37:59 ───────────────────────────────────────────────── +2026/03/21 15:38:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:38:04 [log_collector] {"stage_name":"log_collector","events_processed":24781,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4956.2,"last_update":"2026-03-21T15:37:59.068205829Z"} +2026/03/21 15:38:04 [metric_collector] {"stage_name":"metric_collector","events_processed":15549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3109.8,"last_update":"2026-03-21T15:37:59.068725533Z"} +2026/03/21 15:38:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6222,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:37:59.075521608Z"} +2026/03/21 15:38:04 [detection_layer] {"stage_name":"detection_layer","events_processed":518,"events_dropped":0,"avg_latency_ms":17.718589436357032,"throughput_eps":0,"last_update":"2026-03-21T15:37:59.210809067Z"} +2026/03/21 15:38:04 [transform_engine] {"stage_name":"transform_engine","events_processed":518,"events_dropped":0,"avg_latency_ms":251.07584493826124,"throughput_eps":0,"last_update":"2026-03-21T15:37:59.20971348Z"} +2026/03/21 15:38:04 ───────────────────────────────────────────────── +2026/03/21 15:38:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:38:09 [log_collector] {"stage_name":"log_collector","events_processed":24781,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4956.2,"last_update":"2026-03-21T15:38:04.068666557Z"} +2026/03/21 15:38:09 [metric_collector] {"stage_name":"metric_collector","events_processed":15554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3110.8,"last_update":"2026-03-21T15:38:04.068766638Z"} +2026/03/21 15:38:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:38:04.075426171Z"} +2026/03/21 15:38:09 [detection_layer] {"stage_name":"detection_layer","events_processed":518,"events_dropped":0,"avg_latency_ms":17.718589436357032,"throughput_eps":0,"last_update":"2026-03-21T15:38:04.210796931Z"} +2026/03/21 15:38:09 [transform_engine] {"stage_name":"transform_engine","events_processed":518,"events_dropped":0,"avg_latency_ms":251.07584493826124,"throughput_eps":0,"last_update":"2026-03-21T15:38:04.209646116Z"} +2026/03/21 15:38:09 ───────────────────────────────────────────────── +2026/03/21 15:38:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:38:14 [transform_engine] {"stage_name":"transform_engine","events_processed":518,"events_dropped":0,"avg_latency_ms":251.07584493826124,"throughput_eps":0,"last_update":"2026-03-21T15:38:09.210713026Z"} +2026/03/21 15:38:14 [log_collector] {"stage_name":"log_collector","events_processed":24781,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4956.2,"last_update":"2026-03-21T15:38:09.068624552Z"} +2026/03/21 15:38:14 [metric_collector] {"stage_name":"metric_collector","events_processed":15559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3111.8,"last_update":"2026-03-21T15:38:09.068950316Z"} +2026/03/21 15:38:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:38:09.076197143Z"} +2026/03/21 15:38:14 [detection_layer] {"stage_name":"detection_layer","events_processed":518,"events_dropped":0,"avg_latency_ms":17.718589436357032,"throughput_eps":0,"last_update":"2026-03-21T15:38:09.210601283Z"} +2026/03/21 15:38:14 ───────────────────────────────────────────────── +2026/03/21 15:38:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:38:19 [metric_collector] {"stage_name":"metric_collector","events_processed":15564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3112.8,"last_update":"2026-03-21T15:38:14.069258101Z"} +2026/03/21 15:38:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:38:14.079681912Z"} +2026/03/21 15:38:19 [detection_layer] {"stage_name":"detection_layer","events_processed":518,"events_dropped":0,"avg_latency_ms":17.718589436357032,"throughput_eps":0,"last_update":"2026-03-21T15:38:14.209946144Z"} +2026/03/21 15:38:19 [transform_engine] {"stage_name":"transform_engine","events_processed":518,"events_dropped":0,"avg_latency_ms":251.07584493826124,"throughput_eps":0,"last_update":"2026-03-21T15:38:14.209981693Z"} +2026/03/21 15:38:19 [log_collector] {"stage_name":"log_collector","events_processed":24781,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4956.2,"last_update":"2026-03-21T15:38:14.069086212Z"} +2026/03/21 15:38:19 ───────────────────────────────────────────────── +2026/03/21 15:38:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:38:24 [log_collector] {"stage_name":"log_collector","events_processed":24781,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4956.2,"last_update":"2026-03-21T15:38:19.06897696Z"} +2026/03/21 15:38:24 [metric_collector] {"stage_name":"metric_collector","events_processed":15569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3113.8,"last_update":"2026-03-21T15:38:19.069605914Z"} +2026/03/21 15:38:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:38:19.078932755Z"} +2026/03/21 15:38:24 [detection_layer] {"stage_name":"detection_layer","events_processed":518,"events_dropped":0,"avg_latency_ms":17.718589436357032,"throughput_eps":0,"last_update":"2026-03-21T15:38:19.210325358Z"} +2026/03/21 15:38:24 [transform_engine] {"stage_name":"transform_engine","events_processed":519,"events_dropped":0,"avg_latency_ms":215.112994550609,"throughput_eps":0,"last_update":"2026-03-21T15:38:19.28172161Z"} +2026/03/21 15:38:24 ───────────────────────────────────────────────── +Saved state: 17 clusters, 24782 messages, reason: none +2026/03/21 15:38:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:38:29 [transform_engine] {"stage_name":"transform_engine","events_processed":519,"events_dropped":0,"avg_latency_ms":215.112994550609,"throughput_eps":0,"last_update":"2026-03-21T15:38:24.21038535Z"} +2026/03/21 15:38:29 [log_collector] {"stage_name":"log_collector","events_processed":24781,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4956.2,"last_update":"2026-03-21T15:38:24.068420521Z"} +2026/03/21 15:38:29 [metric_collector] {"stage_name":"metric_collector","events_processed":15574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3114.8,"last_update":"2026-03-21T15:38:24.069157873Z"} +2026/03/21 15:38:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:38:24.077972132Z"} +2026/03/21 15:38:29 [detection_layer] {"stage_name":"detection_layer","events_processed":519,"events_dropped":0,"avg_latency_ms":18.594885749085627,"throughput_eps":0,"last_update":"2026-03-21T15:38:24.210340554Z"} +2026/03/21 15:38:29 ───────────────────────────────────────────────── +2026/03/21 15:38:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:38:34 [log_collector] {"stage_name":"log_collector","events_processed":24786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4957.2,"last_update":"2026-03-21T15:38:29.069217034Z"} +2026/03/21 15:38:34 [metric_collector] {"stage_name":"metric_collector","events_processed":15579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3115.8,"last_update":"2026-03-21T15:38:29.069574678Z"} +2026/03/21 15:38:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:38:29.081811401Z"} +2026/03/21 15:38:34 [detection_layer] {"stage_name":"detection_layer","events_processed":519,"events_dropped":0,"avg_latency_ms":18.594885749085627,"throughput_eps":0,"last_update":"2026-03-21T15:38:29.209953321Z"} +2026/03/21 15:38:34 [transform_engine] {"stage_name":"transform_engine","events_processed":519,"events_dropped":0,"avg_latency_ms":215.112994550609,"throughput_eps":0,"last_update":"2026-03-21T15:38:29.209964062Z"} +2026/03/21 15:38:34 ───────────────────────────────────────────────── +2026/03/21 15:38:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:38:39 [log_collector] {"stage_name":"log_collector","events_processed":24786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4957.2,"last_update":"2026-03-21T15:38:34.068706042Z"} +2026/03/21 15:38:39 [metric_collector] {"stage_name":"metric_collector","events_processed":15584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3116.8,"last_update":"2026-03-21T15:38:34.068912287Z"} +2026/03/21 15:38:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:38:34.077656552Z"} +2026/03/21 15:38:39 [detection_layer] {"stage_name":"detection_layer","events_processed":519,"events_dropped":0,"avg_latency_ms":18.594885749085627,"throughput_eps":0,"last_update":"2026-03-21T15:38:34.210850015Z"} +2026/03/21 15:38:39 [transform_engine] {"stage_name":"transform_engine","events_processed":519,"events_dropped":0,"avg_latency_ms":215.112994550609,"throughput_eps":0,"last_update":"2026-03-21T15:38:34.209730462Z"} +2026/03/21 15:38:39 ───────────────────────────────────────────────── +2026/03/21 15:38:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:38:44 [detection_layer] {"stage_name":"detection_layer","events_processed":519,"events_dropped":0,"avg_latency_ms":18.594885749085627,"throughput_eps":0,"last_update":"2026-03-21T15:38:39.210057876Z"} +2026/03/21 15:38:44 [transform_engine] {"stage_name":"transform_engine","events_processed":519,"events_dropped":0,"avg_latency_ms":215.112994550609,"throughput_eps":0,"last_update":"2026-03-21T15:38:39.210067073Z"} +2026/03/21 15:38:44 [log_collector] {"stage_name":"log_collector","events_processed":24786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4957.2,"last_update":"2026-03-21T15:38:44.068279877Z"} +2026/03/21 15:38:44 [metric_collector] {"stage_name":"metric_collector","events_processed":15589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3117.8,"last_update":"2026-03-21T15:38:39.068902985Z"} +2026/03/21 15:38:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:38:39.079970129Z"} +2026/03/21 15:38:44 ───────────────────────────────────────────────── +2026/03/21 15:38:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:38:49 [detection_layer] {"stage_name":"detection_layer","events_processed":519,"events_dropped":0,"avg_latency_ms":18.594885749085627,"throughput_eps":0,"last_update":"2026-03-21T15:38:44.209997726Z"} +2026/03/21 15:38:49 [transform_engine] {"stage_name":"transform_engine","events_processed":519,"events_dropped":0,"avg_latency_ms":215.112994550609,"throughput_eps":0,"last_update":"2026-03-21T15:38:44.210009258Z"} +2026/03/21 15:38:49 [log_collector] {"stage_name":"log_collector","events_processed":24786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4957.2,"last_update":"2026-03-21T15:38:44.068279877Z"} +2026/03/21 15:38:49 [metric_collector] {"stage_name":"metric_collector","events_processed":15594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3118.8,"last_update":"2026-03-21T15:38:44.068691797Z"} +2026/03/21 15:38:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:38:44.078756009Z"} +2026/03/21 15:38:49 ───────────────────────────────────────────────── +2026/03/21 15:38:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:38:54 [log_collector] {"stage_name":"log_collector","events_processed":24786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4957.2,"last_update":"2026-03-21T15:38:49.068789699Z"} +2026/03/21 15:38:54 [metric_collector] {"stage_name":"metric_collector","events_processed":15599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3119.8,"last_update":"2026-03-21T15:38:49.068777175Z"} +2026/03/21 15:38:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:38:49.077331306Z"} +2026/03/21 15:38:54 [detection_layer] {"stage_name":"detection_layer","events_processed":519,"events_dropped":0,"avg_latency_ms":18.594885749085627,"throughput_eps":0,"last_update":"2026-03-21T15:38:49.210549047Z"} +2026/03/21 15:38:54 [transform_engine] {"stage_name":"transform_engine","events_processed":519,"events_dropped":0,"avg_latency_ms":215.112994550609,"throughput_eps":0,"last_update":"2026-03-21T15:38:44.210009258Z"} +2026/03/21 15:38:54 ───────────────────────────────────────────────── +2026/03/21 15:38:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:38:59 [log_collector] {"stage_name":"log_collector","events_processed":24786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4957.2,"last_update":"2026-03-21T15:38:54.068832564Z"} +2026/03/21 15:38:59 [metric_collector] {"stage_name":"metric_collector","events_processed":15604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3120.8,"last_update":"2026-03-21T15:38:54.06882499Z"} +2026/03/21 15:38:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:38:54.076852082Z"} +2026/03/21 15:38:59 [detection_layer] {"stage_name":"detection_layer","events_processed":519,"events_dropped":0,"avg_latency_ms":18.594885749085627,"throughput_eps":0,"last_update":"2026-03-21T15:38:54.209972057Z"} +2026/03/21 15:38:59 [transform_engine] {"stage_name":"transform_engine","events_processed":520,"events_dropped":0,"avg_latency_ms":1641.3668896404872,"throughput_eps":0,"last_update":"2026-03-21T15:38:56.556947629Z"} +2026/03/21 15:38:59 ───────────────────────────────────────────────── +2026/03/21 15:39:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:39:04 [transform_engine] {"stage_name":"transform_engine","events_processed":520,"events_dropped":0,"avg_latency_ms":1641.3668896404872,"throughput_eps":0,"last_update":"2026-03-21T15:38:59.21040584Z"} +2026/03/21 15:39:04 [log_collector] {"stage_name":"log_collector","events_processed":24786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4957.2,"last_update":"2026-03-21T15:38:59.068503997Z"} +2026/03/21 15:39:04 [metric_collector] {"stage_name":"metric_collector","events_processed":15609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3121.8,"last_update":"2026-03-21T15:38:59.068772783Z"} +2026/03/21 15:39:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6246,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:38:59.079094588Z"} +2026/03/21 15:39:04 [detection_layer] {"stage_name":"detection_layer","events_processed":520,"events_dropped":0,"avg_latency_ms":17.4973645992685,"throughput_eps":0,"last_update":"2026-03-21T15:38:59.210388648Z"} +2026/03/21 15:39:04 ───────────────────────────────────────────────── +2026/03/21 15:39:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:39:09 [detection_layer] {"stage_name":"detection_layer","events_processed":520,"events_dropped":0,"avg_latency_ms":17.4973645992685,"throughput_eps":0,"last_update":"2026-03-21T15:39:04.210110395Z"} +2026/03/21 15:39:09 [transform_engine] {"stage_name":"transform_engine","events_processed":520,"events_dropped":0,"avg_latency_ms":1641.3668896404872,"throughput_eps":0,"last_update":"2026-03-21T15:39:04.210186671Z"} +2026/03/21 15:39:09 [log_collector] {"stage_name":"log_collector","events_processed":24786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4957.2,"last_update":"2026-03-21T15:39:04.068575756Z"} +2026/03/21 15:39:09 [metric_collector] {"stage_name":"metric_collector","events_processed":15614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3122.8,"last_update":"2026-03-21T15:39:04.069018183Z"} +2026/03/21 15:39:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:39:04.074842366Z"} +2026/03/21 15:39:09 ───────────────────────────────────────────────── +2026/03/21 15:39:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:39:14 [log_collector] {"stage_name":"log_collector","events_processed":24786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4957.2,"last_update":"2026-03-21T15:39:09.068709751Z"} +2026/03/21 15:39:14 [metric_collector] {"stage_name":"metric_collector","events_processed":15619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.8,"last_update":"2026-03-21T15:39:09.068929762Z"} +2026/03/21 15:39:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:39:09.075615956Z"} +2026/03/21 15:39:14 [detection_layer] {"stage_name":"detection_layer","events_processed":520,"events_dropped":0,"avg_latency_ms":17.4973645992685,"throughput_eps":0,"last_update":"2026-03-21T15:39:09.21082352Z"} +2026/03/21 15:39:14 [transform_engine] {"stage_name":"transform_engine","events_processed":520,"events_dropped":0,"avg_latency_ms":1641.3668896404872,"throughput_eps":0,"last_update":"2026-03-21T15:39:09.209725849Z"} +2026/03/21 15:39:14 ───────────────────────────────────────────────── +2026/03/21 15:39:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:39:19 [log_collector] {"stage_name":"log_collector","events_processed":24795,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4959,"last_update":"2026-03-21T15:39:14.068263724Z"} +2026/03/21 15:39:19 [metric_collector] {"stage_name":"metric_collector","events_processed":15624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3124.8,"last_update":"2026-03-21T15:39:14.068719116Z"} +2026/03/21 15:39:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:39:14.075249341Z"} +2026/03/21 15:39:19 [detection_layer] {"stage_name":"detection_layer","events_processed":520,"events_dropped":0,"avg_latency_ms":17.4973645992685,"throughput_eps":0,"last_update":"2026-03-21T15:39:14.210496993Z"} +2026/03/21 15:39:19 [transform_engine] {"stage_name":"transform_engine","events_processed":520,"events_dropped":0,"avg_latency_ms":1641.3668896404872,"throughput_eps":0,"last_update":"2026-03-21T15:39:14.210508835Z"} +2026/03/21 15:39:19 ───────────────────────────────────────────────── +2026/03/21 15:39:19 [ANOMALY] time=2026-03-21T15:39:19Z score=0.8499 method=SEAD details=MAD!:w=0.29,s=0.84 RRCF-fast!:w=0.16,s=0.89 RRCF-mid!:w=0.16,s=0.96 RRCF-slow!:w=0.17,s=0.91 COPOD!:w=0.22,s=0.71 +2026/03/21 15:39:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:39:24 [transform_engine] {"stage_name":"transform_engine","events_processed":521,"events_dropped":0,"avg_latency_ms":1333.9719485123899,"throughput_eps":0,"last_update":"2026-03-21T15:39:19.314210262Z"} +2026/03/21 15:39:24 [log_collector] {"stage_name":"log_collector","events_processed":24828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4965.6,"last_update":"2026-03-21T15:39:19.068314257Z"} +2026/03/21 15:39:24 [metric_collector] {"stage_name":"metric_collector","events_processed":15629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3125.8,"last_update":"2026-03-21T15:39:19.068590436Z"} +2026/03/21 15:39:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:39:19.076605895Z"} +2026/03/21 15:39:24 [detection_layer] {"stage_name":"detection_layer","events_processed":520,"events_dropped":0,"avg_latency_ms":17.4973645992685,"throughput_eps":0,"last_update":"2026-03-21T15:39:19.209918481Z"} +2026/03/21 15:39:24 ───────────────────────────────────────────────── +2026/03/21 15:39:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:39:29 [detection_layer] {"stage_name":"detection_layer","events_processed":521,"events_dropped":0,"avg_latency_ms":16.628176879414802,"throughput_eps":0,"last_update":"2026-03-21T15:39:24.210789574Z"} +2026/03/21 15:39:29 [transform_engine] {"stage_name":"transform_engine","events_processed":521,"events_dropped":0,"avg_latency_ms":1333.9719485123899,"throughput_eps":0,"last_update":"2026-03-21T15:39:24.209639923Z"} +2026/03/21 15:39:29 [log_collector] {"stage_name":"log_collector","events_processed":25101,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5020.2,"last_update":"2026-03-21T15:39:24.068717553Z"} +2026/03/21 15:39:29 [metric_collector] {"stage_name":"metric_collector","events_processed":15634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3126.8,"last_update":"2026-03-21T15:39:24.069201831Z"} +2026/03/21 15:39:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:39:24.075475935Z"} +2026/03/21 15:39:29 ───────────────────────────────────────────────── +2026/03/21 15:39:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:39:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:39:29.075670639Z"} +2026/03/21 15:39:34 [detection_layer] {"stage_name":"detection_layer","events_processed":521,"events_dropped":0,"avg_latency_ms":16.628176879414802,"throughput_eps":0,"last_update":"2026-03-21T15:39:29.209909139Z"} +2026/03/21 15:39:34 [transform_engine] {"stage_name":"transform_engine","events_processed":521,"events_dropped":0,"avg_latency_ms":1333.9719485123899,"throughput_eps":0,"last_update":"2026-03-21T15:39:29.209921233Z"} +2026/03/21 15:39:34 [log_collector] {"stage_name":"log_collector","events_processed":25148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5029.6,"last_update":"2026-03-21T15:39:29.068876237Z"} +2026/03/21 15:39:34 [metric_collector] {"stage_name":"metric_collector","events_processed":15639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3127.8,"last_update":"2026-03-21T15:39:29.069020334Z"} +2026/03/21 15:39:34 ───────────────────────────────────────────────── +2026/03/21 15:39:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:39:39 [detection_layer] {"stage_name":"detection_layer","events_processed":521,"events_dropped":0,"avg_latency_ms":16.628176879414802,"throughput_eps":0,"last_update":"2026-03-21T15:39:34.209920269Z"} +2026/03/21 15:39:39 [transform_engine] {"stage_name":"transform_engine","events_processed":521,"events_dropped":0,"avg_latency_ms":1333.9719485123899,"throughput_eps":0,"last_update":"2026-03-21T15:39:34.20981591Z"} +2026/03/21 15:39:39 [log_collector] {"stage_name":"log_collector","events_processed":25148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5029.6,"last_update":"2026-03-21T15:39:34.068710429Z"} +2026/03/21 15:39:39 [metric_collector] {"stage_name":"metric_collector","events_processed":15644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3128.8,"last_update":"2026-03-21T15:39:34.068950248Z"} +2026/03/21 15:39:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:39:34.074560852Z"} +2026/03/21 15:39:39 ───────────────────────────────────────────────── +2026/03/21 15:39:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:39:44 [log_collector] {"stage_name":"log_collector","events_processed":25148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5029.6,"last_update":"2026-03-21T15:39:39.068910387Z"} +2026/03/21 15:39:44 [metric_collector] {"stage_name":"metric_collector","events_processed":15649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3129.8,"last_update":"2026-03-21T15:39:39.069124046Z"} +2026/03/21 15:39:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:39:39.078483159Z"} +2026/03/21 15:39:44 [detection_layer] {"stage_name":"detection_layer","events_processed":521,"events_dropped":0,"avg_latency_ms":16.628176879414802,"throughput_eps":0,"last_update":"2026-03-21T15:39:39.210800511Z"} +2026/03/21 15:39:44 [transform_engine] {"stage_name":"transform_engine","events_processed":521,"events_dropped":0,"avg_latency_ms":1333.9719485123899,"throughput_eps":0,"last_update":"2026-03-21T15:39:39.209638436Z"} +2026/03/21 15:39:44 ───────────────────────────────────────────────── +2026/03/21 15:39:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:39:49 [log_collector] {"stage_name":"log_collector","events_processed":25148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5029.6,"last_update":"2026-03-21T15:39:44.068669137Z"} +2026/03/21 15:39:49 [metric_collector] {"stage_name":"metric_collector","events_processed":15654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3130.8,"last_update":"2026-03-21T15:39:44.069166319Z"} +2026/03/21 15:39:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:39:44.076849763Z"} +2026/03/21 15:39:49 [detection_layer] {"stage_name":"detection_layer","events_processed":521,"events_dropped":0,"avg_latency_ms":16.628176879414802,"throughput_eps":0,"last_update":"2026-03-21T15:39:44.210104111Z"} +2026/03/21 15:39:49 [transform_engine] {"stage_name":"transform_engine","events_processed":521,"events_dropped":0,"avg_latency_ms":1333.9719485123899,"throughput_eps":0,"last_update":"2026-03-21T15:39:44.210131994Z"} +2026/03/21 15:39:49 ───────────────────────────────────────────────── +2026/03/21 15:39:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:39:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:39:49.077562738Z"} +2026/03/21 15:39:54 [detection_layer] {"stage_name":"detection_layer","events_processed":521,"events_dropped":0,"avg_latency_ms":16.628176879414802,"throughput_eps":0,"last_update":"2026-03-21T15:39:49.210852193Z"} +2026/03/21 15:39:54 [transform_engine] {"stage_name":"transform_engine","events_processed":522,"events_dropped":0,"avg_latency_ms":1089.1628996099118,"throughput_eps":0,"last_update":"2026-03-21T15:39:49.319629906Z"} +2026/03/21 15:39:54 [log_collector] {"stage_name":"log_collector","events_processed":25148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5029.6,"last_update":"2026-03-21T15:39:49.068570929Z"} +2026/03/21 15:39:54 [metric_collector] {"stage_name":"metric_collector","events_processed":15659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3131.8,"last_update":"2026-03-21T15:39:49.069134498Z"} +2026/03/21 15:39:54 ───────────────────────────────────────────────── +2026/03/21 15:39:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:39:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:39:54.076269198Z"} +2026/03/21 15:39:59 [detection_layer] {"stage_name":"detection_layer","events_processed":522,"events_dropped":0,"avg_latency_ms":17.028082103531844,"throughput_eps":0,"last_update":"2026-03-21T15:39:54.210514454Z"} +2026/03/21 15:39:59 [transform_engine] {"stage_name":"transform_engine","events_processed":522,"events_dropped":0,"avg_latency_ms":1089.1628996099118,"throughput_eps":0,"last_update":"2026-03-21T15:39:54.210556064Z"} +2026/03/21 15:39:59 [log_collector] {"stage_name":"log_collector","events_processed":25148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5029.6,"last_update":"2026-03-21T15:39:54.068748034Z"} +2026/03/21 15:39:59 [metric_collector] {"stage_name":"metric_collector","events_processed":15664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3132.8,"last_update":"2026-03-21T15:39:54.068948799Z"} +2026/03/21 15:39:59 ───────────────────────────────────────────────── +2026/03/21 15:40:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:40:04 [log_collector] {"stage_name":"log_collector","events_processed":25148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5029.6,"last_update":"2026-03-21T15:39:59.068926099Z"} +2026/03/21 15:40:04 [metric_collector] {"stage_name":"metric_collector","events_processed":15669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3133.8,"last_update":"2026-03-21T15:39:59.069126532Z"} +2026/03/21 15:40:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:39:59.078223363Z"} +2026/03/21 15:40:04 [detection_layer] {"stage_name":"detection_layer","events_processed":522,"events_dropped":0,"avg_latency_ms":17.028082103531844,"throughput_eps":0,"last_update":"2026-03-21T15:39:59.210536088Z"} +2026/03/21 15:40:04 [transform_engine] {"stage_name":"transform_engine","events_processed":522,"events_dropped":0,"avg_latency_ms":1089.1628996099118,"throughput_eps":0,"last_update":"2026-03-21T15:39:59.21057887Z"} +2026/03/21 15:40:04 ───────────────────────────────────────────────── +2026/03/21 15:40:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:40:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:40:04.084295672Z"} +2026/03/21 15:40:09 [detection_layer] {"stage_name":"detection_layer","events_processed":522,"events_dropped":0,"avg_latency_ms":17.028082103531844,"throughput_eps":0,"last_update":"2026-03-21T15:40:04.210533544Z"} +2026/03/21 15:40:09 [transform_engine] {"stage_name":"transform_engine","events_processed":522,"events_dropped":0,"avg_latency_ms":1089.1628996099118,"throughput_eps":0,"last_update":"2026-03-21T15:40:04.210575795Z"} +2026/03/21 15:40:09 [log_collector] {"stage_name":"log_collector","events_processed":25148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5029.6,"last_update":"2026-03-21T15:40:04.068283969Z"} +2026/03/21 15:40:09 [metric_collector] {"stage_name":"metric_collector","events_processed":15674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3134.8,"last_update":"2026-03-21T15:40:04.068695878Z"} +2026/03/21 15:40:09 ───────────────────────────────────────────────── +2026/03/21 15:40:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:40:14 [log_collector] {"stage_name":"log_collector","events_processed":25148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5029.6,"last_update":"2026-03-21T15:40:09.068251541Z"} +2026/03/21 15:40:14 [metric_collector] {"stage_name":"metric_collector","events_processed":15679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3135.8,"last_update":"2026-03-21T15:40:09.068653681Z"} +2026/03/21 15:40:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:40:09.076191246Z"} +2026/03/21 15:40:14 [detection_layer] {"stage_name":"detection_layer","events_processed":522,"events_dropped":0,"avg_latency_ms":17.028082103531844,"throughput_eps":0,"last_update":"2026-03-21T15:40:09.21049238Z"} +2026/03/21 15:40:14 [transform_engine] {"stage_name":"transform_engine","events_processed":522,"events_dropped":0,"avg_latency_ms":1089.1628996099118,"throughput_eps":0,"last_update":"2026-03-21T15:40:09.210521135Z"} +2026/03/21 15:40:14 ───────────────────────────────────────────────── +2026/03/21 15:40:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:40:19 [log_collector] {"stage_name":"log_collector","events_processed":25148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5029.6,"last_update":"2026-03-21T15:40:14.068592275Z"} +2026/03/21 15:40:19 [metric_collector] {"stage_name":"metric_collector","events_processed":15684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3136.8,"last_update":"2026-03-21T15:40:14.068959648Z"} +2026/03/21 15:40:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6276,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:40:14.076751179Z"} +2026/03/21 15:40:19 [detection_layer] {"stage_name":"detection_layer","events_processed":522,"events_dropped":0,"avg_latency_ms":17.028082103531844,"throughput_eps":0,"last_update":"2026-03-21T15:40:14.210052509Z"} +2026/03/21 15:40:19 [transform_engine] {"stage_name":"transform_engine","events_processed":522,"events_dropped":0,"avg_latency_ms":1089.1628996099118,"throughput_eps":0,"last_update":"2026-03-21T15:40:14.210028052Z"} +2026/03/21 15:40:19 ───────────────────────────────────────────────── +Saved state: 17 clusters, 25149 messages, reason: none +2026/03/21 15:40:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:40:24 [log_collector] {"stage_name":"log_collector","events_processed":25148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5029.6,"last_update":"2026-03-21T15:40:19.068135217Z"} +2026/03/21 15:40:24 [metric_collector] {"stage_name":"metric_collector","events_processed":15689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3137.8,"last_update":"2026-03-21T15:40:19.068496439Z"} +2026/03/21 15:40:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:40:19.076706702Z"} +2026/03/21 15:40:24 [detection_layer] {"stage_name":"detection_layer","events_processed":522,"events_dropped":0,"avg_latency_ms":17.028082103531844,"throughput_eps":0,"last_update":"2026-03-21T15:40:19.210116389Z"} +2026/03/21 15:40:24 [transform_engine] {"stage_name":"transform_engine","events_processed":523,"events_dropped":0,"avg_latency_ms":884.0839456879296,"throughput_eps":0,"last_update":"2026-03-21T15:40:19.273905429Z"} +2026/03/21 15:40:24 ───────────────────────────────────────────────── +2026/03/21 15:40:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:40:29 [log_collector] {"stage_name":"log_collector","events_processed":25151,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5030.2,"last_update":"2026-03-21T15:40:24.06865228Z"} +2026/03/21 15:40:29 [metric_collector] {"stage_name":"metric_collector","events_processed":15694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3138.8,"last_update":"2026-03-21T15:40:24.068967903Z"} +2026/03/21 15:40:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:40:24.076651448Z"} +2026/03/21 15:40:29 [detection_layer] {"stage_name":"detection_layer","events_processed":523,"events_dropped":0,"avg_latency_ms":16.656277682825475,"throughput_eps":0,"last_update":"2026-03-21T15:40:24.209889598Z"} +2026/03/21 15:40:29 [transform_engine] {"stage_name":"transform_engine","events_processed":523,"events_dropped":0,"avg_latency_ms":884.0839456879296,"throughput_eps":0,"last_update":"2026-03-21T15:40:24.209906711Z"} +2026/03/21 15:40:29 ───────────────────────────────────────────────── +2026/03/21 15:40:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:40:34 [log_collector] {"stage_name":"log_collector","events_processed":25151,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5030.2,"last_update":"2026-03-21T15:40:29.068625778Z"} +2026/03/21 15:40:34 [metric_collector] {"stage_name":"metric_collector","events_processed":15699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3139.8,"last_update":"2026-03-21T15:40:29.068925402Z"} +2026/03/21 15:40:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:40:29.077239744Z"} +2026/03/21 15:40:34 [detection_layer] {"stage_name":"detection_layer","events_processed":523,"events_dropped":0,"avg_latency_ms":16.656277682825475,"throughput_eps":0,"last_update":"2026-03-21T15:40:29.210469598Z"} +2026/03/21 15:40:34 [transform_engine] {"stage_name":"transform_engine","events_processed":523,"events_dropped":0,"avg_latency_ms":884.0839456879296,"throughput_eps":0,"last_update":"2026-03-21T15:40:29.210553338Z"} +2026/03/21 15:40:34 ───────────────────────────────────────────────── +2026/03/21 15:40:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:40:39 [log_collector] {"stage_name":"log_collector","events_processed":25162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5032.4,"last_update":"2026-03-21T15:40:34.06862894Z"} +2026/03/21 15:40:39 [metric_collector] {"stage_name":"metric_collector","events_processed":15704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3140.8,"last_update":"2026-03-21T15:40:34.068897704Z"} +2026/03/21 15:40:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:40:34.076496397Z"} +2026/03/21 15:40:39 [detection_layer] {"stage_name":"detection_layer","events_processed":523,"events_dropped":0,"avg_latency_ms":16.656277682825475,"throughput_eps":0,"last_update":"2026-03-21T15:40:34.210808844Z"} +2026/03/21 15:40:39 [transform_engine] {"stage_name":"transform_engine","events_processed":523,"events_dropped":0,"avg_latency_ms":884.0839456879296,"throughput_eps":0,"last_update":"2026-03-21T15:40:34.209667528Z"} +2026/03/21 15:40:39 ───────────────────────────────────────────────── +2026/03/21 15:40:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:40:44 [log_collector] {"stage_name":"log_collector","events_processed":25169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5033.8,"last_update":"2026-03-21T15:40:39.068930748Z"} +2026/03/21 15:40:44 [metric_collector] {"stage_name":"metric_collector","events_processed":15708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3141.6,"last_update":"2026-03-21T15:40:39.06892193Z"} +2026/03/21 15:40:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6286,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:40:39.075709338Z"} +2026/03/21 15:40:44 [detection_layer] {"stage_name":"detection_layer","events_processed":523,"events_dropped":0,"avg_latency_ms":16.656277682825475,"throughput_eps":0,"last_update":"2026-03-21T15:40:39.209871438Z"} +2026/03/21 15:40:44 [transform_engine] {"stage_name":"transform_engine","events_processed":523,"events_dropped":0,"avg_latency_ms":884.0839456879296,"throughput_eps":0,"last_update":"2026-03-21T15:40:39.209851Z"} +2026/03/21 15:40:44 ───────────────────────────────────────────────── +2026/03/21 15:40:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:40:49 [log_collector] {"stage_name":"log_collector","events_processed":25178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5035.6,"last_update":"2026-03-21T15:40:44.068948968Z"} +2026/03/21 15:40:49 [metric_collector] {"stage_name":"metric_collector","events_processed":15714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3142.8,"last_update":"2026-03-21T15:40:44.069011849Z"} +2026/03/21 15:40:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:40:44.078990669Z"} +2026/03/21 15:40:49 [detection_layer] {"stage_name":"detection_layer","events_processed":523,"events_dropped":0,"avg_latency_ms":16.656277682825475,"throughput_eps":0,"last_update":"2026-03-21T15:40:44.210271872Z"} +2026/03/21 15:40:49 [transform_engine] {"stage_name":"transform_engine","events_processed":523,"events_dropped":0,"avg_latency_ms":884.0839456879296,"throughput_eps":0,"last_update":"2026-03-21T15:40:44.210302711Z"} +2026/03/21 15:40:49 ───────────────────────────────────────────────── +2026/03/21 15:40:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:40:54 [log_collector] {"stage_name":"log_collector","events_processed":25178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5035.6,"last_update":"2026-03-21T15:40:49.068869857Z"} +2026/03/21 15:40:54 [metric_collector] {"stage_name":"metric_collector","events_processed":15719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3143.8,"last_update":"2026-03-21T15:40:49.069146698Z"} +2026/03/21 15:40:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:40:49.07917369Z"} +2026/03/21 15:40:54 [detection_layer] {"stage_name":"detection_layer","events_processed":523,"events_dropped":0,"avg_latency_ms":16.656277682825475,"throughput_eps":0,"last_update":"2026-03-21T15:40:49.210453562Z"} +2026/03/21 15:40:54 [transform_engine] {"stage_name":"transform_engine","events_processed":524,"events_dropped":0,"avg_latency_ms":730.7070677503438,"throughput_eps":0,"last_update":"2026-03-21T15:40:49.327691221Z"} +2026/03/21 15:40:54 ───────────────────────────────────────────────── +2026/03/21 15:40:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:40:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:40:54.078471591Z"} +2026/03/21 15:40:59 [detection_layer] {"stage_name":"detection_layer","events_processed":524,"events_dropped":0,"avg_latency_ms":16.74966254626038,"throughput_eps":0,"last_update":"2026-03-21T15:40:54.210842782Z"} +2026/03/21 15:40:59 [transform_engine] {"stage_name":"transform_engine","events_processed":524,"events_dropped":0,"avg_latency_ms":730.7070677503438,"throughput_eps":0,"last_update":"2026-03-21T15:40:54.20976102Z"} +2026/03/21 15:40:59 [log_collector] {"stage_name":"log_collector","events_processed":25178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5035.6,"last_update":"2026-03-21T15:40:54.068128232Z"} +2026/03/21 15:40:59 [metric_collector] {"stage_name":"metric_collector","events_processed":15724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3144.8,"last_update":"2026-03-21T15:40:54.068493171Z"} +2026/03/21 15:40:59 ───────────────────────────────────────────────── +2026/03/21 15:41:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:41:04 [detection_layer] {"stage_name":"detection_layer","events_processed":524,"events_dropped":0,"avg_latency_ms":16.74966254626038,"throughput_eps":0,"last_update":"2026-03-21T15:40:59.209896541Z"} +2026/03/21 15:41:04 [transform_engine] {"stage_name":"transform_engine","events_processed":524,"events_dropped":0,"avg_latency_ms":730.7070677503438,"throughput_eps":0,"last_update":"2026-03-21T15:40:59.209909556Z"} +2026/03/21 15:41:04 [log_collector] {"stage_name":"log_collector","events_processed":25178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5035.6,"last_update":"2026-03-21T15:40:59.068735115Z"} +2026/03/21 15:41:04 [metric_collector] {"stage_name":"metric_collector","events_processed":15729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3145.8,"last_update":"2026-03-21T15:40:59.069065288Z"} +2026/03/21 15:41:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:40:59.078668509Z"} +2026/03/21 15:41:04 ───────────────────────────────────────────────── +2026/03/21 15:41:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:41:09 [log_collector] {"stage_name":"log_collector","events_processed":25192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5038.4,"last_update":"2026-03-21T15:41:04.068115724Z"} +2026/03/21 15:41:09 [metric_collector] {"stage_name":"metric_collector","events_processed":15734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3146.8,"last_update":"2026-03-21T15:41:04.06877203Z"} +2026/03/21 15:41:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:41:04.078639397Z"} +2026/03/21 15:41:09 [detection_layer] {"stage_name":"detection_layer","events_processed":524,"events_dropped":0,"avg_latency_ms":16.74966254626038,"throughput_eps":0,"last_update":"2026-03-21T15:41:04.209922536Z"} +2026/03/21 15:41:09 [transform_engine] {"stage_name":"transform_engine","events_processed":524,"events_dropped":0,"avg_latency_ms":730.7070677503438,"throughput_eps":0,"last_update":"2026-03-21T15:41:04.209902056Z"} +2026/03/21 15:41:09 ───────────────────────────────────────────────── +2026/03/21 15:41:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:41:14 [log_collector] {"stage_name":"log_collector","events_processed":25192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5038.4,"last_update":"2026-03-21T15:41:09.06902784Z"} +2026/03/21 15:41:14 [metric_collector] {"stage_name":"metric_collector","events_processed":15739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3147.8,"last_update":"2026-03-21T15:41:09.069418909Z"} +2026/03/21 15:41:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:41:09.079482241Z"} +2026/03/21 15:41:14 [detection_layer] {"stage_name":"detection_layer","events_processed":524,"events_dropped":0,"avg_latency_ms":16.74966254626038,"throughput_eps":0,"last_update":"2026-03-21T15:41:09.210776571Z"} +2026/03/21 15:41:14 [transform_engine] {"stage_name":"transform_engine","events_processed":524,"events_dropped":0,"avg_latency_ms":730.7070677503438,"throughput_eps":0,"last_update":"2026-03-21T15:41:09.209666666Z"} +2026/03/21 15:41:14 ───────────────────────────────────────────────── +2026/03/21 15:41:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:41:19 [log_collector] {"stage_name":"log_collector","events_processed":25192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5038.4,"last_update":"2026-03-21T15:41:14.068100006Z"} +2026/03/21 15:41:19 [metric_collector] {"stage_name":"metric_collector","events_processed":15744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3148.8,"last_update":"2026-03-21T15:41:14.068579033Z"} +2026/03/21 15:41:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:41:14.078132389Z"} +2026/03/21 15:41:19 [detection_layer] {"stage_name":"detection_layer","events_processed":524,"events_dropped":0,"avg_latency_ms":16.74966254626038,"throughput_eps":0,"last_update":"2026-03-21T15:41:14.21045587Z"} +2026/03/21 15:41:19 [transform_engine] {"stage_name":"transform_engine","events_processed":524,"events_dropped":0,"avg_latency_ms":730.7070677503438,"throughput_eps":0,"last_update":"2026-03-21T15:41:14.210559769Z"} +2026/03/21 15:41:19 ───────────────────────────────────────────────── +2026/03/21 15:41:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:41:24 [log_collector] {"stage_name":"log_collector","events_processed":25192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5038.4,"last_update":"2026-03-21T15:41:19.069149623Z"} +2026/03/21 15:41:24 [metric_collector] {"stage_name":"metric_collector","events_processed":15749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3149.8,"last_update":"2026-03-21T15:41:19.069574757Z"} +2026/03/21 15:41:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:41:19.07815033Z"} +2026/03/21 15:41:24 [detection_layer] {"stage_name":"detection_layer","events_processed":524,"events_dropped":0,"avg_latency_ms":16.74966254626038,"throughput_eps":0,"last_update":"2026-03-21T15:41:19.210498429Z"} +2026/03/21 15:41:24 [transform_engine] {"stage_name":"transform_engine","events_processed":524,"events_dropped":0,"avg_latency_ms":730.7070677503438,"throughput_eps":0,"last_update":"2026-03-21T15:41:19.210438935Z"} +2026/03/21 15:41:24 ───────────────────────────────────────────────── +2026/03/21 15:41:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:41:29 [log_collector] {"stage_name":"log_collector","events_processed":25192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5038.4,"last_update":"2026-03-21T15:41:24.068956625Z"} +2026/03/21 15:41:29 [metric_collector] {"stage_name":"metric_collector","events_processed":15754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3150.8,"last_update":"2026-03-21T15:41:24.069595248Z"} +2026/03/21 15:41:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:41:24.078150432Z"} +2026/03/21 15:41:29 [detection_layer] {"stage_name":"detection_layer","events_processed":525,"events_dropped":0,"avg_latency_ms":17.471808437008306,"throughput_eps":0,"last_update":"2026-03-21T15:41:24.210525834Z"} +2026/03/21 15:41:29 [transform_engine] {"stage_name":"transform_engine","events_processed":525,"events_dropped":0,"avg_latency_ms":608.860467200275,"throughput_eps":0,"last_update":"2026-03-21T15:41:24.210636205Z"} +2026/03/21 15:41:29 ───────────────────────────────────────────────── +2026/03/21 15:41:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:41:34 [detection_layer] {"stage_name":"detection_layer","events_processed":525,"events_dropped":0,"avg_latency_ms":17.471808437008306,"throughput_eps":0,"last_update":"2026-03-21T15:41:29.209848022Z"} +2026/03/21 15:41:34 [transform_engine] {"stage_name":"transform_engine","events_processed":525,"events_dropped":0,"avg_latency_ms":608.860467200275,"throughput_eps":0,"last_update":"2026-03-21T15:41:29.209834877Z"} +2026/03/21 15:41:34 [log_collector] {"stage_name":"log_collector","events_processed":25192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5038.4,"last_update":"2026-03-21T15:41:29.068738192Z"} +2026/03/21 15:41:34 [metric_collector] {"stage_name":"metric_collector","events_processed":15759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3151.8,"last_update":"2026-03-21T15:41:29.069252898Z"} +2026/03/21 15:41:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:41:29.079580376Z"} +2026/03/21 15:41:34 ───────────────────────────────────────────────── +2026/03/21 15:41:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:41:39 [detection_layer] {"stage_name":"detection_layer","events_processed":525,"events_dropped":0,"avg_latency_ms":17.471808437008306,"throughput_eps":0,"last_update":"2026-03-21T15:41:34.210376484Z"} +2026/03/21 15:41:39 [transform_engine] {"stage_name":"transform_engine","events_processed":525,"events_dropped":0,"avg_latency_ms":608.860467200275,"throughput_eps":0,"last_update":"2026-03-21T15:41:34.210300218Z"} +2026/03/21 15:41:39 [log_collector] {"stage_name":"log_collector","events_processed":25192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5038.4,"last_update":"2026-03-21T15:41:34.06881048Z"} +2026/03/21 15:41:39 [metric_collector] {"stage_name":"metric_collector","events_processed":15764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3152.8,"last_update":"2026-03-21T15:41:34.069108691Z"} +2026/03/21 15:41:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:41:34.077912241Z"} +2026/03/21 15:41:39 ───────────────────────────────────────────────── +2026/03/21 15:41:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:41:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:41:39.07749325Z"} +2026/03/21 15:41:44 [detection_layer] {"stage_name":"detection_layer","events_processed":525,"events_dropped":0,"avg_latency_ms":17.471808437008306,"throughput_eps":0,"last_update":"2026-03-21T15:41:39.210883928Z"} +2026/03/21 15:41:44 [transform_engine] {"stage_name":"transform_engine","events_processed":525,"events_dropped":0,"avg_latency_ms":608.860467200275,"throughput_eps":0,"last_update":"2026-03-21T15:41:39.209668811Z"} +2026/03/21 15:41:44 [log_collector] {"stage_name":"log_collector","events_processed":25192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5038.4,"last_update":"2026-03-21T15:41:39.068765606Z"} +2026/03/21 15:41:44 [metric_collector] {"stage_name":"metric_collector","events_processed":15769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3153.8,"last_update":"2026-03-21T15:41:39.069341189Z"} +2026/03/21 15:41:44 ───────────────────────────────────────────────── +2026/03/21 15:41:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:41:49 [detection_layer] {"stage_name":"detection_layer","events_processed":525,"events_dropped":0,"avg_latency_ms":17.471808437008306,"throughput_eps":0,"last_update":"2026-03-21T15:41:44.210059105Z"} +2026/03/21 15:41:49 [transform_engine] {"stage_name":"transform_engine","events_processed":525,"events_dropped":0,"avg_latency_ms":608.860467200275,"throughput_eps":0,"last_update":"2026-03-21T15:41:44.210006715Z"} +2026/03/21 15:41:49 [log_collector] {"stage_name":"log_collector","events_processed":25192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5038.4,"last_update":"2026-03-21T15:41:44.068119074Z"} +2026/03/21 15:41:49 [metric_collector] {"stage_name":"metric_collector","events_processed":15774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3154.8,"last_update":"2026-03-21T15:41:44.068912294Z"} +2026/03/21 15:41:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:41:44.079749468Z"} +2026/03/21 15:41:49 ───────────────────────────────────────────────── +2026/03/21 15:41:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:41:54 [log_collector] {"stage_name":"log_collector","events_processed":25192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5038.4,"last_update":"2026-03-21T15:41:49.068281086Z"} +2026/03/21 15:41:54 [metric_collector] {"stage_name":"metric_collector","events_processed":15779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3155.8,"last_update":"2026-03-21T15:41:49.06827811Z"} +2026/03/21 15:41:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:41:49.078746047Z"} +2026/03/21 15:41:54 [detection_layer] {"stage_name":"detection_layer","events_processed":525,"events_dropped":0,"avg_latency_ms":17.471808437008306,"throughput_eps":0,"last_update":"2026-03-21T15:41:49.210187182Z"} +2026/03/21 15:41:54 [transform_engine] {"stage_name":"transform_engine","events_processed":525,"events_dropped":0,"avg_latency_ms":608.860467200275,"throughput_eps":0,"last_update":"2026-03-21T15:41:49.210125844Z"} +2026/03/21 15:41:54 ───────────────────────────────────────────────── +2026/03/21 15:41:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:41:59 [transform_engine] {"stage_name":"transform_engine","events_processed":526,"events_dropped":0,"avg_latency_ms":504.21697296022006,"throughput_eps":0,"last_update":"2026-03-21T15:41:54.210486739Z"} +2026/03/21 15:41:59 [log_collector] {"stage_name":"log_collector","events_processed":25192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5038.4,"last_update":"2026-03-21T15:41:54.068800483Z"} +2026/03/21 15:41:59 [metric_collector] {"stage_name":"metric_collector","events_processed":15784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3156.8,"last_update":"2026-03-21T15:41:54.06916421Z"} +2026/03/21 15:41:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:41:54.078215003Z"} +2026/03/21 15:41:59 [detection_layer] {"stage_name":"detection_layer","events_processed":526,"events_dropped":0,"avg_latency_ms":18.699728549606647,"throughput_eps":0,"last_update":"2026-03-21T15:41:54.210476499Z"} +2026/03/21 15:41:59 ───────────────────────────────────────────────── +Saved state: 17 clusters, 25193 messages, reason: none +2026/03/21 15:42:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:42:04 [transform_engine] {"stage_name":"transform_engine","events_processed":526,"events_dropped":0,"avg_latency_ms":504.21697296022006,"throughput_eps":0,"last_update":"2026-03-21T15:41:59.210398086Z"} +2026/03/21 15:42:04 [log_collector] {"stage_name":"log_collector","events_processed":25192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5038.4,"last_update":"2026-03-21T15:41:59.069044747Z"} +2026/03/21 15:42:04 [metric_collector] {"stage_name":"metric_collector","events_processed":15789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3157.8,"last_update":"2026-03-21T15:41:59.069274518Z"} +2026/03/21 15:42:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:41:59.078014535Z"} +2026/03/21 15:42:04 [detection_layer] {"stage_name":"detection_layer","events_processed":526,"events_dropped":0,"avg_latency_ms":18.699728549606647,"throughput_eps":0,"last_update":"2026-03-21T15:41:59.210386203Z"} +2026/03/21 15:42:04 ───────────────────────────────────────────────── +2026/03/21 15:42:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:42:09 [transform_engine] {"stage_name":"transform_engine","events_processed":526,"events_dropped":0,"avg_latency_ms":504.21697296022006,"throughput_eps":0,"last_update":"2026-03-21T15:42:04.210385742Z"} +2026/03/21 15:42:09 [log_collector] {"stage_name":"log_collector","events_processed":25197,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5039.4,"last_update":"2026-03-21T15:42:04.068073227Z"} +2026/03/21 15:42:09 [metric_collector] {"stage_name":"metric_collector","events_processed":15794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3158.8,"last_update":"2026-03-21T15:42:04.068270685Z"} +2026/03/21 15:42:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6320,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:42:04.077742154Z"} +2026/03/21 15:42:09 [detection_layer] {"stage_name":"detection_layer","events_processed":526,"events_dropped":0,"avg_latency_ms":18.699728549606647,"throughput_eps":0,"last_update":"2026-03-21T15:42:04.210375702Z"} +2026/03/21 15:42:09 ───────────────────────────────────────────────── +2026/03/21 15:42:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:42:14 [log_collector] {"stage_name":"log_collector","events_processed":25197,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5039.4,"last_update":"2026-03-21T15:42:14.068167204Z"} +2026/03/21 15:42:14 [metric_collector] {"stage_name":"metric_collector","events_processed":15804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3160.8,"last_update":"2026-03-21T15:42:14.068549066Z"} +2026/03/21 15:42:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:42:09.075986634Z"} +2026/03/21 15:42:14 [detection_layer] {"stage_name":"detection_layer","events_processed":526,"events_dropped":0,"avg_latency_ms":18.699728549606647,"throughput_eps":0,"last_update":"2026-03-21T15:42:09.211447548Z"} +2026/03/21 15:42:14 [transform_engine] {"stage_name":"transform_engine","events_processed":526,"events_dropped":0,"avg_latency_ms":504.21697296022006,"throughput_eps":0,"last_update":"2026-03-21T15:42:09.211433732Z"} +2026/03/21 15:42:14 ───────────────────────────────────────────────── +2026/03/21 15:42:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:42:19 [transform_engine] {"stage_name":"transform_engine","events_processed":526,"events_dropped":0,"avg_latency_ms":504.21697296022006,"throughput_eps":0,"last_update":"2026-03-21T15:42:14.210372756Z"} +2026/03/21 15:42:19 [log_collector] {"stage_name":"log_collector","events_processed":25197,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5039.4,"last_update":"2026-03-21T15:42:14.068167204Z"} +2026/03/21 15:42:19 [metric_collector] {"stage_name":"metric_collector","events_processed":15804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3160.8,"last_update":"2026-03-21T15:42:14.068549066Z"} +2026/03/21 15:42:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:42:14.076125625Z"} +2026/03/21 15:42:19 [detection_layer] {"stage_name":"detection_layer","events_processed":526,"events_dropped":0,"avg_latency_ms":18.699728549606647,"throughput_eps":0,"last_update":"2026-03-21T15:42:14.210396702Z"} +2026/03/21 15:42:19 ───────────────────────────────────────────────── +2026/03/21 15:42:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:42:24 [log_collector] {"stage_name":"log_collector","events_processed":25197,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5039.4,"last_update":"2026-03-21T15:42:24.068459853Z"} +2026/03/21 15:42:24 [metric_collector] {"stage_name":"metric_collector","events_processed":15814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3162.8,"last_update":"2026-03-21T15:42:24.068802378Z"} +2026/03/21 15:42:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:42:19.075290443Z"} +2026/03/21 15:42:24 [detection_layer] {"stage_name":"detection_layer","events_processed":526,"events_dropped":0,"avg_latency_ms":18.699728549606647,"throughput_eps":0,"last_update":"2026-03-21T15:42:19.212368286Z"} +2026/03/21 15:42:24 [transform_engine] {"stage_name":"transform_engine","events_processed":527,"events_dropped":0,"avg_latency_ms":643.5616751681761,"throughput_eps":0,"last_update":"2026-03-21T15:42:20.413327565Z"} +2026/03/21 15:42:24 ───────────────────────────────────────────────── +2026/03/21 15:42:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:42:29 [log_collector] {"stage_name":"log_collector","events_processed":25197,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5039.4,"last_update":"2026-03-21T15:42:24.068459853Z"} +2026/03/21 15:42:29 [metric_collector] {"stage_name":"metric_collector","events_processed":15814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3162.8,"last_update":"2026-03-21T15:42:24.068802378Z"} +2026/03/21 15:42:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:42:24.081411546Z"} +2026/03/21 15:42:29 [detection_layer] {"stage_name":"detection_layer","events_processed":527,"events_dropped":0,"avg_latency_ms":17.340406039685316,"throughput_eps":0,"last_update":"2026-03-21T15:42:24.210575071Z"} +2026/03/21 15:42:29 [transform_engine] {"stage_name":"transform_engine","events_processed":527,"events_dropped":0,"avg_latency_ms":643.5616751681761,"throughput_eps":0,"last_update":"2026-03-21T15:42:24.210550574Z"} +2026/03/21 15:42:29 ───────────────────────────────────────────────── +2026/03/21 15:42:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:42:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6330,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:42:29.075506862Z"} +2026/03/21 15:42:34 [detection_layer] {"stage_name":"detection_layer","events_processed":527,"events_dropped":0,"avg_latency_ms":17.340406039685316,"throughput_eps":0,"last_update":"2026-03-21T15:42:29.210735562Z"} +2026/03/21 15:42:34 [transform_engine] {"stage_name":"transform_engine","events_processed":527,"events_dropped":0,"avg_latency_ms":643.5616751681761,"throughput_eps":0,"last_update":"2026-03-21T15:42:29.209639684Z"} +2026/03/21 15:42:34 [log_collector] {"stage_name":"log_collector","events_processed":25197,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5039.4,"last_update":"2026-03-21T15:42:29.068557723Z"} +2026/03/21 15:42:34 [metric_collector] {"stage_name":"metric_collector","events_processed":15819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3163.8,"last_update":"2026-03-21T15:42:29.068812521Z"} +2026/03/21 15:42:34 ───────────────────────────────────────────────── +2026/03/21 15:42:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:42:39 [log_collector] {"stage_name":"log_collector","events_processed":25197,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5039.4,"last_update":"2026-03-21T15:42:34.068531278Z"} +2026/03/21 15:42:39 [metric_collector] {"stage_name":"metric_collector","events_processed":15824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3164.8,"last_update":"2026-03-21T15:42:34.068776558Z"} +2026/03/21 15:42:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:42:34.075551814Z"} +2026/03/21 15:42:39 [detection_layer] {"stage_name":"detection_layer","events_processed":527,"events_dropped":0,"avg_latency_ms":17.340406039685316,"throughput_eps":0,"last_update":"2026-03-21T15:42:34.210852924Z"} +2026/03/21 15:42:39 [transform_engine] {"stage_name":"transform_engine","events_processed":527,"events_dropped":0,"avg_latency_ms":643.5616751681761,"throughput_eps":0,"last_update":"2026-03-21T15:42:34.209766734Z"} +2026/03/21 15:42:39 ───────────────────────────────────────────────── +2026/03/21 15:42:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:42:44 [log_collector] {"stage_name":"log_collector","events_processed":25197,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5039.4,"last_update":"2026-03-21T15:42:39.068534952Z"} +2026/03/21 15:42:44 [metric_collector] {"stage_name":"metric_collector","events_processed":15829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3165.8,"last_update":"2026-03-21T15:42:39.068755034Z"} +2026/03/21 15:42:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:42:39.078709769Z"} +2026/03/21 15:42:44 [detection_layer] {"stage_name":"detection_layer","events_processed":527,"events_dropped":0,"avg_latency_ms":17.340406039685316,"throughput_eps":0,"last_update":"2026-03-21T15:42:39.210584707Z"} +2026/03/21 15:42:44 [transform_engine] {"stage_name":"transform_engine","events_processed":527,"events_dropped":0,"avg_latency_ms":643.5616751681761,"throughput_eps":0,"last_update":"2026-03-21T15:42:39.210634262Z"} +2026/03/21 15:42:44 ───────────────────────────────────────────────── +2026/03/21 15:42:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:42:49 [log_collector] {"stage_name":"log_collector","events_processed":25197,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5039.4,"last_update":"2026-03-21T15:42:44.068526485Z"} +2026/03/21 15:42:49 [metric_collector] {"stage_name":"metric_collector","events_processed":15834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3166.8,"last_update":"2026-03-21T15:42:44.068772496Z"} +2026/03/21 15:42:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:42:44.075757203Z"} +2026/03/21 15:42:49 [detection_layer] {"stage_name":"detection_layer","events_processed":527,"events_dropped":0,"avg_latency_ms":17.340406039685316,"throughput_eps":0,"last_update":"2026-03-21T15:42:44.210398821Z"} +2026/03/21 15:42:49 [transform_engine] {"stage_name":"transform_engine","events_processed":527,"events_dropped":0,"avg_latency_ms":643.5616751681761,"throughput_eps":0,"last_update":"2026-03-21T15:42:44.210389542Z"} +2026/03/21 15:42:49 ───────────────────────────────────────────────── +2026/03/21 15:42:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:42:54 [log_collector] {"stage_name":"log_collector","events_processed":25206,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5041.2,"last_update":"2026-03-21T15:42:49.068620197Z"} +2026/03/21 15:42:54 [metric_collector] {"stage_name":"metric_collector","events_processed":15839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3167.8,"last_update":"2026-03-21T15:42:49.069000155Z"} +2026/03/21 15:42:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:42:49.077586458Z"} +2026/03/21 15:42:54 [detection_layer] {"stage_name":"detection_layer","events_processed":527,"events_dropped":0,"avg_latency_ms":17.340406039685316,"throughput_eps":0,"last_update":"2026-03-21T15:42:49.210877069Z"} +2026/03/21 15:42:54 [transform_engine] {"stage_name":"transform_engine","events_processed":528,"events_dropped":0,"avg_latency_ms":759.3779129345409,"throughput_eps":0,"last_update":"2026-03-21T15:42:50.432415819Z"} +2026/03/21 15:42:54 ───────────────────────────────────────────────── +2026/03/21 15:42:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:42:59 [log_collector] {"stage_name":"log_collector","events_processed":25246,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5049.2,"last_update":"2026-03-21T15:42:54.068840141Z"} +2026/03/21 15:42:59 [metric_collector] {"stage_name":"metric_collector","events_processed":15844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3168.8,"last_update":"2026-03-21T15:42:54.069051897Z"} +2026/03/21 15:42:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:42:54.075820038Z"} +2026/03/21 15:42:59 [detection_layer] {"stage_name":"detection_layer","events_processed":528,"events_dropped":0,"avg_latency_ms":17.548471231748252,"throughput_eps":0,"last_update":"2026-03-21T15:42:54.210409937Z"} +2026/03/21 15:42:59 [transform_engine] {"stage_name":"transform_engine","events_processed":528,"events_dropped":0,"avg_latency_ms":759.3779129345409,"throughput_eps":0,"last_update":"2026-03-21T15:42:54.210386713Z"} +2026/03/21 15:42:59 ───────────────────────────────────────────────── +2026/03/21 15:43:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:43:04 [log_collector] {"stage_name":"log_collector","events_processed":25383,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5076.6,"last_update":"2026-03-21T15:42:59.068865494Z"} +2026/03/21 15:43:04 [metric_collector] {"stage_name":"metric_collector","events_processed":15849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3169.8,"last_update":"2026-03-21T15:42:59.069083662Z"} +2026/03/21 15:43:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6342,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:42:59.080179101Z"} +2026/03/21 15:43:04 [detection_layer] {"stage_name":"detection_layer","events_processed":528,"events_dropped":0,"avg_latency_ms":17.548471231748252,"throughput_eps":0,"last_update":"2026-03-21T15:42:59.210698264Z"} +2026/03/21 15:43:04 [transform_engine] {"stage_name":"transform_engine","events_processed":528,"events_dropped":0,"avg_latency_ms":759.3779129345409,"throughput_eps":0,"last_update":"2026-03-21T15:42:59.210663678Z"} +2026/03/21 15:43:04 ───────────────────────────────────────────────── +2026/03/21 15:43:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:43:09 [detection_layer] {"stage_name":"detection_layer","events_processed":528,"events_dropped":0,"avg_latency_ms":17.548471231748252,"throughput_eps":0,"last_update":"2026-03-21T15:43:04.210931076Z"} +2026/03/21 15:43:09 [transform_engine] {"stage_name":"transform_engine","events_processed":528,"events_dropped":0,"avg_latency_ms":759.3779129345409,"throughput_eps":0,"last_update":"2026-03-21T15:43:04.209746027Z"} +2026/03/21 15:43:09 [log_collector] {"stage_name":"log_collector","events_processed":25554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5110.8,"last_update":"2026-03-21T15:43:04.068085636Z"} +2026/03/21 15:43:09 [metric_collector] {"stage_name":"metric_collector","events_processed":15854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3170.8,"last_update":"2026-03-21T15:43:04.068665737Z"} +2026/03/21 15:43:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:43:04.077524363Z"} +2026/03/21 15:43:09 ───────────────────────────────────────────────── +2026/03/21 15:43:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:43:14 [detection_layer] {"stage_name":"detection_layer","events_processed":528,"events_dropped":0,"avg_latency_ms":17.548471231748252,"throughput_eps":0,"last_update":"2026-03-21T15:43:09.210137525Z"} +2026/03/21 15:43:14 [transform_engine] {"stage_name":"transform_engine","events_processed":528,"events_dropped":0,"avg_latency_ms":759.3779129345409,"throughput_eps":0,"last_update":"2026-03-21T15:43:09.21018718Z"} +2026/03/21 15:43:14 [log_collector] {"stage_name":"log_collector","events_processed":25554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5110.8,"last_update":"2026-03-21T15:43:09.068520537Z"} +2026/03/21 15:43:14 [metric_collector] {"stage_name":"metric_collector","events_processed":15859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3171.8,"last_update":"2026-03-21T15:43:09.068969225Z"} +2026/03/21 15:43:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:43:09.078917178Z"} +2026/03/21 15:43:14 ───────────────────────────────────────────────── +2026/03/21 15:43:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:43:19 [log_collector] {"stage_name":"log_collector","events_processed":25554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5110.8,"last_update":"2026-03-21T15:43:14.068664751Z"} +2026/03/21 15:43:19 [metric_collector] {"stage_name":"metric_collector","events_processed":15864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3172.8,"last_update":"2026-03-21T15:43:14.069078534Z"} +2026/03/21 15:43:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:43:14.078429512Z"} +2026/03/21 15:43:19 [detection_layer] {"stage_name":"detection_layer","events_processed":528,"events_dropped":0,"avg_latency_ms":17.548471231748252,"throughput_eps":0,"last_update":"2026-03-21T15:43:14.210796235Z"} +2026/03/21 15:43:19 [transform_engine] {"stage_name":"transform_engine","events_processed":528,"events_dropped":0,"avg_latency_ms":759.3779129345409,"throughput_eps":0,"last_update":"2026-03-21T15:43:14.209701519Z"} +2026/03/21 15:43:19 ───────────────────────────────────────────────── +2026/03/21 15:43:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:43:24 [metric_collector] {"stage_name":"metric_collector","events_processed":15869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3173.8,"last_update":"2026-03-21T15:43:19.069674946Z"} +2026/03/21 15:43:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6350,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:43:19.07831324Z"} +2026/03/21 15:43:24 [detection_layer] {"stage_name":"detection_layer","events_processed":528,"events_dropped":0,"avg_latency_ms":17.548471231748252,"throughput_eps":0,"last_update":"2026-03-21T15:43:19.210678059Z"} +2026/03/21 15:43:24 [transform_engine] {"stage_name":"transform_engine","events_processed":529,"events_dropped":0,"avg_latency_ms":631.5515601476327,"throughput_eps":0,"last_update":"2026-03-21T15:43:19.330801665Z"} +2026/03/21 15:43:24 [log_collector] {"stage_name":"log_collector","events_processed":25554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5110.8,"last_update":"2026-03-21T15:43:19.069004011Z"} +2026/03/21 15:43:24 ───────────────────────────────────────────────── +2026/03/21 15:43:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:43:29 [log_collector] {"stage_name":"log_collector","events_processed":25554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5110.8,"last_update":"2026-03-21T15:43:24.068571295Z"} +2026/03/21 15:43:29 [metric_collector] {"stage_name":"metric_collector","events_processed":15874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3174.8,"last_update":"2026-03-21T15:43:24.069156595Z"} +2026/03/21 15:43:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:43:24.080213Z"} +2026/03/21 15:43:29 [detection_layer] {"stage_name":"detection_layer","events_processed":529,"events_dropped":0,"avg_latency_ms":18.098329585398602,"throughput_eps":0,"last_update":"2026-03-21T15:43:24.210420388Z"} +2026/03/21 15:43:29 [transform_engine] {"stage_name":"transform_engine","events_processed":529,"events_dropped":0,"avg_latency_ms":631.5515601476327,"throughput_eps":0,"last_update":"2026-03-21T15:43:24.210445286Z"} +2026/03/21 15:43:29 ───────────────────────────────────────────────── +2026/03/21 15:43:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:43:34 [transform_engine] {"stage_name":"transform_engine","events_processed":529,"events_dropped":0,"avg_latency_ms":631.5515601476327,"throughput_eps":0,"last_update":"2026-03-21T15:43:29.210407897Z"} +2026/03/21 15:43:34 [log_collector] {"stage_name":"log_collector","events_processed":25554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5110.8,"last_update":"2026-03-21T15:43:29.068079175Z"} +2026/03/21 15:43:34 [metric_collector] {"stage_name":"metric_collector","events_processed":15879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3175.8,"last_update":"2026-03-21T15:43:29.06833789Z"} +2026/03/21 15:43:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:43:29.079118847Z"} +2026/03/21 15:43:34 [detection_layer] {"stage_name":"detection_layer","events_processed":529,"events_dropped":0,"avg_latency_ms":18.098329585398602,"throughput_eps":0,"last_update":"2026-03-21T15:43:29.210296272Z"} +2026/03/21 15:43:34 ───────────────────────────────────────────────── +2026/03/21 15:43:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:43:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:43:34.078671503Z"} +2026/03/21 15:43:39 [detection_layer] {"stage_name":"detection_layer","events_processed":529,"events_dropped":0,"avg_latency_ms":18.098329585398602,"throughput_eps":0,"last_update":"2026-03-21T15:43:34.209940364Z"} +2026/03/21 15:43:39 [transform_engine] {"stage_name":"transform_engine","events_processed":529,"events_dropped":0,"avg_latency_ms":631.5515601476327,"throughput_eps":0,"last_update":"2026-03-21T15:43:34.209909796Z"} +2026/03/21 15:43:39 [log_collector] {"stage_name":"log_collector","events_processed":25554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5110.8,"last_update":"2026-03-21T15:43:34.068721468Z"} +2026/03/21 15:43:39 [metric_collector] {"stage_name":"metric_collector","events_processed":15884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3176.8,"last_update":"2026-03-21T15:43:34.069266751Z"} +2026/03/21 15:43:39 ───────────────────────────────────────────────── +2026/03/21 15:43:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:43:44 [log_collector] {"stage_name":"log_collector","events_processed":25554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5110.8,"last_update":"2026-03-21T15:43:39.068727123Z"} +2026/03/21 15:43:44 [metric_collector] {"stage_name":"metric_collector","events_processed":15889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3177.8,"last_update":"2026-03-21T15:43:39.069207593Z"} +2026/03/21 15:43:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:43:39.077198337Z"} +2026/03/21 15:43:44 [detection_layer] {"stage_name":"detection_layer","events_processed":529,"events_dropped":0,"avg_latency_ms":18.098329585398602,"throughput_eps":0,"last_update":"2026-03-21T15:43:39.21062997Z"} +2026/03/21 15:43:44 [transform_engine] {"stage_name":"transform_engine","events_processed":529,"events_dropped":0,"avg_latency_ms":631.5515601476327,"throughput_eps":0,"last_update":"2026-03-21T15:43:39.210592017Z"} +2026/03/21 15:43:44 ───────────────────────────────────────────────── +2026/03/21 15:43:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:43:49 [log_collector] {"stage_name":"log_collector","events_processed":25554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5110.8,"last_update":"2026-03-21T15:43:44.068787554Z"} +2026/03/21 15:43:49 [metric_collector] {"stage_name":"metric_collector","events_processed":15894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3178.8,"last_update":"2026-03-21T15:43:44.069097136Z"} +2026/03/21 15:43:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6360,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:43:44.078142971Z"} +2026/03/21 15:43:49 [detection_layer] {"stage_name":"detection_layer","events_processed":529,"events_dropped":0,"avg_latency_ms":18.098329585398602,"throughput_eps":0,"last_update":"2026-03-21T15:43:44.210519313Z"} +2026/03/21 15:43:49 [transform_engine] {"stage_name":"transform_engine","events_processed":529,"events_dropped":0,"avg_latency_ms":631.5515601476327,"throughput_eps":0,"last_update":"2026-03-21T15:43:44.210480389Z"} +2026/03/21 15:43:49 ───────────────────────────────────────────────── +2026/03/21 15:43:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:43:54 [metric_collector] {"stage_name":"metric_collector","events_processed":15899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3179.8,"last_update":"2026-03-21T15:43:49.069175292Z"} +2026/03/21 15:43:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:43:49.079244987Z"} +2026/03/21 15:43:54 [detection_layer] {"stage_name":"detection_layer","events_processed":529,"events_dropped":0,"avg_latency_ms":18.098329585398602,"throughput_eps":0,"last_update":"2026-03-21T15:43:49.211570953Z"} +2026/03/21 15:43:54 [transform_engine] {"stage_name":"transform_engine","events_processed":530,"events_dropped":0,"avg_latency_ms":519.5527571181062,"throughput_eps":0,"last_update":"2026-03-21T15:43:49.282209077Z"} +2026/03/21 15:43:54 [log_collector] {"stage_name":"log_collector","events_processed":25554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5110.8,"last_update":"2026-03-21T15:43:49.068466454Z"} +2026/03/21 15:43:54 ───────────────────────────────────────────────── +2026/03/21 15:43:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:43:59 [detection_layer] {"stage_name":"detection_layer","events_processed":530,"events_dropped":0,"avg_latency_ms":18.667476068318884,"throughput_eps":0,"last_update":"2026-03-21T15:43:54.210834387Z"} +2026/03/21 15:43:59 [transform_engine] {"stage_name":"transform_engine","events_processed":530,"events_dropped":0,"avg_latency_ms":519.5527571181062,"throughput_eps":0,"last_update":"2026-03-21T15:43:54.209690697Z"} +2026/03/21 15:43:59 [log_collector] {"stage_name":"log_collector","events_processed":25554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5110.8,"last_update":"2026-03-21T15:43:54.069471864Z"} +2026/03/21 15:43:59 [metric_collector] {"stage_name":"metric_collector","events_processed":15904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3180.8,"last_update":"2026-03-21T15:43:54.069472816Z"} +2026/03/21 15:43:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:43:54.080480677Z"} +2026/03/21 15:43:59 ───────────────────────────────────────────────── +2026/03/21 15:44:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:44:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:43:59.07763313Z"} +2026/03/21 15:44:04 [detection_layer] {"stage_name":"detection_layer","events_processed":530,"events_dropped":0,"avg_latency_ms":18.667476068318884,"throughput_eps":0,"last_update":"2026-03-21T15:43:59.210876774Z"} +2026/03/21 15:44:04 [transform_engine] {"stage_name":"transform_engine","events_processed":530,"events_dropped":0,"avg_latency_ms":519.5527571181062,"throughput_eps":0,"last_update":"2026-03-21T15:43:59.209732523Z"} +2026/03/21 15:44:04 [log_collector] {"stage_name":"log_collector","events_processed":25554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5110.8,"last_update":"2026-03-21T15:43:59.06808254Z"} +2026/03/21 15:44:04 [metric_collector] {"stage_name":"metric_collector","events_processed":15909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3181.8,"last_update":"2026-03-21T15:43:59.068630649Z"} +2026/03/21 15:44:04 ───────────────────────────────────────────────── +Saved state: 17 clusters, 25555 messages, reason: none +2026/03/21 15:44:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:44:09 [log_collector] {"stage_name":"log_collector","events_processed":25554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5110.8,"last_update":"2026-03-21T15:44:04.0688311Z"} +2026/03/21 15:44:09 [metric_collector] {"stage_name":"metric_collector","events_processed":15914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3182.8,"last_update":"2026-03-21T15:44:04.069046403Z"} +2026/03/21 15:44:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:44:04.076936393Z"} +2026/03/21 15:44:09 [detection_layer] {"stage_name":"detection_layer","events_processed":530,"events_dropped":0,"avg_latency_ms":18.667476068318884,"throughput_eps":0,"last_update":"2026-03-21T15:44:04.210174838Z"} +2026/03/21 15:44:09 [transform_engine] {"stage_name":"transform_engine","events_processed":530,"events_dropped":0,"avg_latency_ms":519.5527571181062,"throughput_eps":0,"last_update":"2026-03-21T15:44:04.210187032Z"} +2026/03/21 15:44:09 ───────────────────────────────────────────────── +2026/03/21 15:44:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:44:14 [detection_layer] {"stage_name":"detection_layer","events_processed":530,"events_dropped":0,"avg_latency_ms":18.667476068318884,"throughput_eps":0,"last_update":"2026-03-21T15:44:09.210581104Z"} +2026/03/21 15:44:14 [transform_engine] {"stage_name":"transform_engine","events_processed":530,"events_dropped":0,"avg_latency_ms":519.5527571181062,"throughput_eps":0,"last_update":"2026-03-21T15:44:09.21059521Z"} +2026/03/21 15:44:14 [log_collector] {"stage_name":"log_collector","events_processed":25557,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5111.4,"last_update":"2026-03-21T15:44:09.069030209Z"} +2026/03/21 15:44:14 [metric_collector] {"stage_name":"metric_collector","events_processed":15919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3183.8,"last_update":"2026-03-21T15:44:09.069018977Z"} +2026/03/21 15:44:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:44:09.078367371Z"} +2026/03/21 15:44:14 ───────────────────────────────────────────────── +2026/03/21 15:44:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:44:19 [log_collector] {"stage_name":"log_collector","events_processed":25568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5113.6,"last_update":"2026-03-21T15:44:19.068107247Z"} +2026/03/21 15:44:19 [metric_collector] {"stage_name":"metric_collector","events_processed":15924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3184.8,"last_update":"2026-03-21T15:44:14.068939533Z"} +2026/03/21 15:44:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:44:14.080703934Z"} +2026/03/21 15:44:19 [detection_layer] {"stage_name":"detection_layer","events_processed":530,"events_dropped":0,"avg_latency_ms":18.667476068318884,"throughput_eps":0,"last_update":"2026-03-21T15:44:14.209956285Z"} +2026/03/21 15:44:19 [transform_engine] {"stage_name":"transform_engine","events_processed":530,"events_dropped":0,"avg_latency_ms":519.5527571181062,"throughput_eps":0,"last_update":"2026-03-21T15:44:14.209967516Z"} +2026/03/21 15:44:19 ───────────────────────────────────────────────── +2026/03/21 15:44:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:44:24 [log_collector] {"stage_name":"log_collector","events_processed":25577,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5115.4,"last_update":"2026-03-21T15:44:24.068282528Z"} +2026/03/21 15:44:24 [metric_collector] {"stage_name":"metric_collector","events_processed":15934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3186.8,"last_update":"2026-03-21T15:44:24.068266227Z"} +2026/03/21 15:44:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:44:19.077228154Z"} +2026/03/21 15:44:24 [detection_layer] {"stage_name":"detection_layer","events_processed":530,"events_dropped":0,"avg_latency_ms":18.667476068318884,"throughput_eps":0,"last_update":"2026-03-21T15:44:19.210543557Z"} +2026/03/21 15:44:24 [transform_engine] {"stage_name":"transform_engine","events_processed":531,"events_dropped":0,"avg_latency_ms":436.90171329448503,"throughput_eps":0,"last_update":"2026-03-21T15:44:19.316856406Z"} +2026/03/21 15:44:24 ───────────────────────────────────────────────── +2026/03/21 15:44:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:44:29 [transform_engine] {"stage_name":"transform_engine","events_processed":531,"events_dropped":0,"avg_latency_ms":436.90171329448503,"throughput_eps":0,"last_update":"2026-03-21T15:44:24.209933245Z"} +2026/03/21 15:44:29 [log_collector] {"stage_name":"log_collector","events_processed":25577,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5115.4,"last_update":"2026-03-21T15:44:24.068282528Z"} +2026/03/21 15:44:29 [metric_collector] {"stage_name":"metric_collector","events_processed":15934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3186.8,"last_update":"2026-03-21T15:44:24.068266227Z"} +2026/03/21 15:44:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:44:24.068310201Z"} +2026/03/21 15:44:29 [detection_layer] {"stage_name":"detection_layer","events_processed":531,"events_dropped":0,"avg_latency_ms":17.853566254655107,"throughput_eps":0,"last_update":"2026-03-21T15:44:24.20996165Z"} +2026/03/21 15:44:29 ───────────────────────────────────────────────── +2026/03/21 15:44:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:44:34 [metric_collector] {"stage_name":"metric_collector","events_processed":15939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3187.8,"last_update":"2026-03-21T15:44:29.069144575Z"} +2026/03/21 15:44:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:44:29.068686276Z"} +2026/03/21 15:44:34 [detection_layer] {"stage_name":"detection_layer","events_processed":531,"events_dropped":0,"avg_latency_ms":17.853566254655107,"throughput_eps":0,"last_update":"2026-03-21T15:44:29.210671665Z"} +2026/03/21 15:44:34 [transform_engine] {"stage_name":"transform_engine","events_processed":531,"events_dropped":0,"avg_latency_ms":436.90171329448503,"throughput_eps":0,"last_update":"2026-03-21T15:44:29.210720398Z"} +2026/03/21 15:44:34 [log_collector] {"stage_name":"log_collector","events_processed":25584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5116.8,"last_update":"2026-03-21T15:44:29.068694032Z"} +2026/03/21 15:44:34 ───────────────────────────────────────────────── +2026/03/21 15:44:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:44:39 [detection_layer] {"stage_name":"detection_layer","events_processed":531,"events_dropped":0,"avg_latency_ms":17.853566254655107,"throughput_eps":0,"last_update":"2026-03-21T15:44:34.209909771Z"} +2026/03/21 15:44:39 [transform_engine] {"stage_name":"transform_engine","events_processed":531,"events_dropped":0,"avg_latency_ms":436.90171329448503,"throughput_eps":0,"last_update":"2026-03-21T15:44:34.209735027Z"} +2026/03/21 15:44:39 [log_collector] {"stage_name":"log_collector","events_processed":25584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5116.8,"last_update":"2026-03-21T15:44:34.068063489Z"} +2026/03/21 15:44:39 [metric_collector] {"stage_name":"metric_collector","events_processed":15944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3188.8,"last_update":"2026-03-21T15:44:34.068396387Z"} +2026/03/21 15:44:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6380,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:44:34.078566524Z"} +2026/03/21 15:44:39 ───────────────────────────────────────────────── +2026/03/21 15:44:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:44:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:44:39.078604533Z"} +2026/03/21 15:44:44 [detection_layer] {"stage_name":"detection_layer","events_processed":531,"events_dropped":0,"avg_latency_ms":17.853566254655107,"throughput_eps":0,"last_update":"2026-03-21T15:44:39.209853179Z"} +2026/03/21 15:44:44 [transform_engine] {"stage_name":"transform_engine","events_processed":531,"events_dropped":0,"avg_latency_ms":436.90171329448503,"throughput_eps":0,"last_update":"2026-03-21T15:44:39.209826437Z"} +2026/03/21 15:44:44 [log_collector] {"stage_name":"log_collector","events_processed":25584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5116.8,"last_update":"2026-03-21T15:44:39.068128239Z"} +2026/03/21 15:44:44 [metric_collector] {"stage_name":"metric_collector","events_processed":15949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3189.8,"last_update":"2026-03-21T15:44:39.068432371Z"} +2026/03/21 15:44:44 ───────────────────────────────────────────────── +2026/03/21 15:44:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:44:49 [log_collector] {"stage_name":"log_collector","events_processed":25597,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5119.4,"last_update":"2026-03-21T15:44:44.068594216Z"} +2026/03/21 15:44:49 [metric_collector] {"stage_name":"metric_collector","events_processed":15954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3190.8,"last_update":"2026-03-21T15:44:44.069297644Z"} +2026/03/21 15:44:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:44:44.079419049Z"} +2026/03/21 15:44:49 [detection_layer] {"stage_name":"detection_layer","events_processed":531,"events_dropped":0,"avg_latency_ms":17.853566254655107,"throughput_eps":0,"last_update":"2026-03-21T15:44:44.210815547Z"} +2026/03/21 15:44:49 [transform_engine] {"stage_name":"transform_engine","events_processed":531,"events_dropped":0,"avg_latency_ms":436.90171329448503,"throughput_eps":0,"last_update":"2026-03-21T15:44:44.209690783Z"} +2026/03/21 15:44:49 ───────────────────────────────────────────────── +2026/03/21 15:44:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:44:54 [transform_engine] {"stage_name":"transform_engine","events_processed":532,"events_dropped":0,"avg_latency_ms":372.42511763558804,"throughput_eps":0,"last_update":"2026-03-21T15:44:49.325060835Z"} +2026/03/21 15:44:54 [log_collector] {"stage_name":"log_collector","events_processed":25598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5119.6,"last_update":"2026-03-21T15:44:49.068800888Z"} +2026/03/21 15:44:54 [metric_collector] {"stage_name":"metric_collector","events_processed":15959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3191.8,"last_update":"2026-03-21T15:44:49.06900581Z"} +2026/03/21 15:44:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:44:49.082214528Z"} +2026/03/21 15:44:54 [detection_layer] {"stage_name":"detection_layer","events_processed":531,"events_dropped":0,"avg_latency_ms":17.853566254655107,"throughput_eps":0,"last_update":"2026-03-21T15:44:49.210433221Z"} +2026/03/21 15:44:54 ───────────────────────────────────────────────── +2026/03/21 15:44:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:44:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6388,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:44:54.078188151Z"} +2026/03/21 15:44:59 [detection_layer] {"stage_name":"detection_layer","events_processed":532,"events_dropped":0,"avg_latency_ms":18.196121803724086,"throughput_eps":0,"last_update":"2026-03-21T15:44:54.210619703Z"} +2026/03/21 15:44:59 [transform_engine] {"stage_name":"transform_engine","events_processed":532,"events_dropped":0,"avg_latency_ms":372.42511763558804,"throughput_eps":0,"last_update":"2026-03-21T15:44:54.210663087Z"} +2026/03/21 15:44:59 [log_collector] {"stage_name":"log_collector","events_processed":25598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5119.6,"last_update":"2026-03-21T15:44:54.068746258Z"} +2026/03/21 15:44:59 [metric_collector] {"stage_name":"metric_collector","events_processed":15964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3192.8,"last_update":"2026-03-21T15:44:54.069262748Z"} +2026/03/21 15:44:59 ───────────────────────────────────────────────── +2026/03/21 15:45:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:45:04 [detection_layer] {"stage_name":"detection_layer","events_processed":532,"events_dropped":0,"avg_latency_ms":18.196121803724086,"throughput_eps":0,"last_update":"2026-03-21T15:44:59.210796376Z"} +2026/03/21 15:45:04 [transform_engine] {"stage_name":"transform_engine","events_processed":532,"events_dropped":0,"avg_latency_ms":372.42511763558804,"throughput_eps":0,"last_update":"2026-03-21T15:44:59.210681506Z"} +2026/03/21 15:45:04 [log_collector] {"stage_name":"log_collector","events_processed":25598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5119.6,"last_update":"2026-03-21T15:44:59.068146965Z"} +2026/03/21 15:45:04 [metric_collector] {"stage_name":"metric_collector","events_processed":15969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3193.8,"last_update":"2026-03-21T15:44:59.068911849Z"} +2026/03/21 15:45:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6390,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:44:59.079278944Z"} +2026/03/21 15:45:04 ───────────────────────────────────────────────── +2026/03/21 15:45:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:45:09 [log_collector] {"stage_name":"log_collector","events_processed":25598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5119.6,"last_update":"2026-03-21T15:45:04.068473924Z"} +2026/03/21 15:45:09 [metric_collector] {"stage_name":"metric_collector","events_processed":15974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3194.8,"last_update":"2026-03-21T15:45:04.068855244Z"} +2026/03/21 15:45:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:45:04.077507395Z"} +2026/03/21 15:45:09 [detection_layer] {"stage_name":"detection_layer","events_processed":532,"events_dropped":0,"avg_latency_ms":18.196121803724086,"throughput_eps":0,"last_update":"2026-03-21T15:45:04.210825735Z"} +2026/03/21 15:45:09 [transform_engine] {"stage_name":"transform_engine","events_processed":532,"events_dropped":0,"avg_latency_ms":372.42511763558804,"throughput_eps":0,"last_update":"2026-03-21T15:45:04.209673839Z"} +2026/03/21 15:45:09 ───────────────────────────────────────────────── +2026/03/21 15:45:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:45:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:45:09.079669446Z"} +2026/03/21 15:45:14 [detection_layer] {"stage_name":"detection_layer","events_processed":532,"events_dropped":0,"avg_latency_ms":18.196121803724086,"throughput_eps":0,"last_update":"2026-03-21T15:45:09.210025264Z"} +2026/03/21 15:45:14 [transform_engine] {"stage_name":"transform_engine","events_processed":532,"events_dropped":0,"avg_latency_ms":372.42511763558804,"throughput_eps":0,"last_update":"2026-03-21T15:45:09.209922786Z"} +2026/03/21 15:45:14 [log_collector] {"stage_name":"log_collector","events_processed":25598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5119.6,"last_update":"2026-03-21T15:45:09.069112177Z"} +2026/03/21 15:45:14 [metric_collector] {"stage_name":"metric_collector","events_processed":15979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3195.8,"last_update":"2026-03-21T15:45:09.069342448Z"} +2026/03/21 15:45:14 ───────────────────────────────────────────────── +2026/03/21 15:45:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:45:19 [transform_engine] {"stage_name":"transform_engine","events_processed":532,"events_dropped":0,"avg_latency_ms":372.42511763558804,"throughput_eps":0,"last_update":"2026-03-21T15:45:14.210319239Z"} +2026/03/21 15:45:19 [log_collector] {"stage_name":"log_collector","events_processed":25598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5119.6,"last_update":"2026-03-21T15:45:14.068138705Z"} +2026/03/21 15:45:19 [metric_collector] {"stage_name":"metric_collector","events_processed":15984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3196.8,"last_update":"2026-03-21T15:45:14.068805882Z"} +2026/03/21 15:45:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:45:14.078983645Z"} +2026/03/21 15:45:19 [detection_layer] {"stage_name":"detection_layer","events_processed":532,"events_dropped":0,"avg_latency_ms":18.196121803724086,"throughput_eps":0,"last_update":"2026-03-21T15:45:14.21039809Z"} +2026/03/21 15:45:19 ───────────────────────────────────────────────── +2026/03/21 15:45:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:45:24 [metric_collector] {"stage_name":"metric_collector","events_processed":15989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3197.8,"last_update":"2026-03-21T15:45:19.068415965Z"} +2026/03/21 15:45:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:45:19.077212483Z"} +2026/03/21 15:45:24 [detection_layer] {"stage_name":"detection_layer","events_processed":532,"events_dropped":0,"avg_latency_ms":18.196121803724086,"throughput_eps":0,"last_update":"2026-03-21T15:45:19.211282885Z"} +2026/03/21 15:45:24 [transform_engine] {"stage_name":"transform_engine","events_processed":533,"events_dropped":0,"avg_latency_ms":313.4390517084704,"throughput_eps":0,"last_update":"2026-03-21T15:45:19.288802119Z"} +2026/03/21 15:45:24 [log_collector] {"stage_name":"log_collector","events_processed":25598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5119.6,"last_update":"2026-03-21T15:45:24.068495756Z"} +2026/03/21 15:45:24 ───────────────────────────────────────────────── +2026/03/21 15:45:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:45:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6400,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:45:24.079573402Z"} +2026/03/21 15:45:29 [detection_layer] {"stage_name":"detection_layer","events_processed":533,"events_dropped":0,"avg_latency_ms":18.91492784297927,"throughput_eps":0,"last_update":"2026-03-21T15:45:24.210860875Z"} +2026/03/21 15:45:29 [transform_engine] {"stage_name":"transform_engine","events_processed":533,"events_dropped":0,"avg_latency_ms":313.4390517084704,"throughput_eps":0,"last_update":"2026-03-21T15:45:24.20974139Z"} +2026/03/21 15:45:29 [log_collector] {"stage_name":"log_collector","events_processed":25598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5119.6,"last_update":"2026-03-21T15:45:24.068495756Z"} +2026/03/21 15:45:29 [metric_collector] {"stage_name":"metric_collector","events_processed":15994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3198.8,"last_update":"2026-03-21T15:45:24.068514372Z"} +2026/03/21 15:45:29 ───────────────────────────────────────────────── +2026/03/21 15:45:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:45:34 [metric_collector] {"stage_name":"metric_collector","events_processed":15999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3199.8,"last_update":"2026-03-21T15:45:29.068755512Z"} +2026/03/21 15:45:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6402,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:45:29.078641485Z"} +2026/03/21 15:45:34 [detection_layer] {"stage_name":"detection_layer","events_processed":533,"events_dropped":0,"avg_latency_ms":18.91492784297927,"throughput_eps":0,"last_update":"2026-03-21T15:45:29.210912582Z"} +2026/03/21 15:45:34 [transform_engine] {"stage_name":"transform_engine","events_processed":533,"events_dropped":0,"avg_latency_ms":313.4390517084704,"throughput_eps":0,"last_update":"2026-03-21T15:45:29.209745286Z"} +2026/03/21 15:45:34 [log_collector] {"stage_name":"log_collector","events_processed":25598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5119.6,"last_update":"2026-03-21T15:45:29.068153178Z"} +2026/03/21 15:45:34 ───────────────────────────────────────────────── +2026/03/21 15:45:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:45:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:45:34.078512702Z"} +2026/03/21 15:45:39 [detection_layer] {"stage_name":"detection_layer","events_processed":533,"events_dropped":0,"avg_latency_ms":18.91492784297927,"throughput_eps":0,"last_update":"2026-03-21T15:45:34.210926963Z"} +2026/03/21 15:45:39 [transform_engine] {"stage_name":"transform_engine","events_processed":533,"events_dropped":0,"avg_latency_ms":313.4390517084704,"throughput_eps":0,"last_update":"2026-03-21T15:45:34.209752223Z"} +2026/03/21 15:45:39 [log_collector] {"stage_name":"log_collector","events_processed":25598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5119.6,"last_update":"2026-03-21T15:45:34.069047484Z"} +2026/03/21 15:45:39 [metric_collector] {"stage_name":"metric_collector","events_processed":16004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3200.8,"last_update":"2026-03-21T15:45:34.069340596Z"} +2026/03/21 15:45:39 ───────────────────────────────────────────────── +2026/03/21 15:45:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:45:44 [metric_collector] {"stage_name":"metric_collector","events_processed":16009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3201.8,"last_update":"2026-03-21T15:45:39.069117353Z"} +2026/03/21 15:45:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:45:39.079001262Z"} +2026/03/21 15:45:44 [detection_layer] {"stage_name":"detection_layer","events_processed":533,"events_dropped":0,"avg_latency_ms":18.91492784297927,"throughput_eps":0,"last_update":"2026-03-21T15:45:39.210390049Z"} +2026/03/21 15:45:44 [transform_engine] {"stage_name":"transform_engine","events_processed":533,"events_dropped":0,"avg_latency_ms":313.4390517084704,"throughput_eps":0,"last_update":"2026-03-21T15:45:39.210333922Z"} +2026/03/21 15:45:44 [log_collector] {"stage_name":"log_collector","events_processed":25598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5119.6,"last_update":"2026-03-21T15:45:39.068670476Z"} +2026/03/21 15:45:44 ───────────────────────────────────────────────── +Saved state: 17 clusters, 25599 messages, reason: none +2026/03/21 15:45:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:45:49 [log_collector] {"stage_name":"log_collector","events_processed":25598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5119.6,"last_update":"2026-03-21T15:45:44.068174069Z"} +2026/03/21 15:45:49 [metric_collector] {"stage_name":"metric_collector","events_processed":16014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3202.8,"last_update":"2026-03-21T15:45:44.068787814Z"} +2026/03/21 15:45:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6408,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:45:44.07722839Z"} +2026/03/21 15:45:49 [detection_layer] {"stage_name":"detection_layer","events_processed":533,"events_dropped":0,"avg_latency_ms":18.91492784297927,"throughput_eps":0,"last_update":"2026-03-21T15:45:44.210619382Z"} +2026/03/21 15:45:49 [transform_engine] {"stage_name":"transform_engine","events_processed":533,"events_dropped":0,"avg_latency_ms":313.4390517084704,"throughput_eps":0,"last_update":"2026-03-21T15:45:44.210486207Z"} +2026/03/21 15:45:49 ───────────────────────────────────────────────── +2026/03/21 15:45:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:45:54 [detection_layer] {"stage_name":"detection_layer","events_processed":533,"events_dropped":0,"avg_latency_ms":18.91492784297927,"throughput_eps":0,"last_update":"2026-03-21T15:45:49.210342943Z"} +2026/03/21 15:45:54 [transform_engine] {"stage_name":"transform_engine","events_processed":534,"events_dropped":0,"avg_latency_ms":276.83648816677635,"throughput_eps":0,"last_update":"2026-03-21T15:45:49.340793614Z"} +2026/03/21 15:45:54 [log_collector] {"stage_name":"log_collector","events_processed":25603,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5120.6,"last_update":"2026-03-21T15:45:49.068633509Z"} +2026/03/21 15:45:54 [metric_collector] {"stage_name":"metric_collector","events_processed":16019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3203.8,"last_update":"2026-03-21T15:45:49.06883774Z"} +2026/03/21 15:45:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:45:49.07608991Z"} +2026/03/21 15:45:54 ───────────────────────────────────────────────── +2026/03/21 15:45:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:45:59 [metric_collector] {"stage_name":"metric_collector","events_processed":16024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3204.8,"last_update":"2026-03-21T15:45:54.068643438Z"} +2026/03/21 15:45:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:45:54.076148831Z"} +2026/03/21 15:45:59 [detection_layer] {"stage_name":"detection_layer","events_processed":534,"events_dropped":0,"avg_latency_ms":17.76497307438342,"throughput_eps":0,"last_update":"2026-03-21T15:45:54.21045666Z"} +2026/03/21 15:45:59 [transform_engine] {"stage_name":"transform_engine","events_processed":534,"events_dropped":0,"avg_latency_ms":276.83648816677635,"throughput_eps":0,"last_update":"2026-03-21T15:45:54.210484303Z"} +2026/03/21 15:45:59 [log_collector] {"stage_name":"log_collector","events_processed":25603,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5120.6,"last_update":"2026-03-21T15:45:54.068719774Z"} +2026/03/21 15:45:59 ───────────────────────────────────────────────── +2026/03/21 15:46:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:46:04 [transform_engine] {"stage_name":"transform_engine","events_processed":534,"events_dropped":0,"avg_latency_ms":276.83648816677635,"throughput_eps":0,"last_update":"2026-03-21T15:45:59.2106818Z"} +2026/03/21 15:46:04 [log_collector] {"stage_name":"log_collector","events_processed":25603,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5120.6,"last_update":"2026-03-21T15:45:59.068845913Z"} +2026/03/21 15:46:04 [metric_collector] {"stage_name":"metric_collector","events_processed":16029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3205.8,"last_update":"2026-03-21T15:45:59.068953038Z"} +2026/03/21 15:46:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:45:59.076406964Z"} +2026/03/21 15:46:04 [detection_layer] {"stage_name":"detection_layer","events_processed":534,"events_dropped":0,"avg_latency_ms":17.76497307438342,"throughput_eps":0,"last_update":"2026-03-21T15:45:59.210767193Z"} +2026/03/21 15:46:04 ───────────────────────────────────────────────── +2026/03/21 15:46:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:46:09 [metric_collector] {"stage_name":"metric_collector","events_processed":16034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3206.8,"last_update":"2026-03-21T15:46:04.068870435Z"} +2026/03/21 15:46:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:46:04.075463372Z"} +2026/03/21 15:46:09 [detection_layer] {"stage_name":"detection_layer","events_processed":534,"events_dropped":0,"avg_latency_ms":17.76497307438342,"throughput_eps":0,"last_update":"2026-03-21T15:46:04.211414077Z"} +2026/03/21 15:46:09 [transform_engine] {"stage_name":"transform_engine","events_processed":534,"events_dropped":0,"avg_latency_ms":276.83648816677635,"throughput_eps":0,"last_update":"2026-03-21T15:46:04.209702099Z"} +2026/03/21 15:46:09 [log_collector] {"stage_name":"log_collector","events_processed":25603,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5120.6,"last_update":"2026-03-21T15:46:04.068583285Z"} +2026/03/21 15:46:09 ───────────────────────────────────────────────── +2026/03/21 15:46:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:46:14 [log_collector] {"stage_name":"log_collector","events_processed":25603,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5120.6,"last_update":"2026-03-21T15:46:09.068063643Z"} +2026/03/21 15:46:14 [metric_collector] {"stage_name":"metric_collector","events_processed":16039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3207.8,"last_update":"2026-03-21T15:46:09.068274677Z"} +2026/03/21 15:46:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:46:09.076772903Z"} +2026/03/21 15:46:14 [detection_layer] {"stage_name":"detection_layer","events_processed":534,"events_dropped":0,"avg_latency_ms":17.76497307438342,"throughput_eps":0,"last_update":"2026-03-21T15:46:09.20998329Z"} +2026/03/21 15:46:14 [transform_engine] {"stage_name":"transform_engine","events_processed":534,"events_dropped":0,"avg_latency_ms":276.83648816677635,"throughput_eps":0,"last_update":"2026-03-21T15:46:09.210000904Z"} +2026/03/21 15:46:14 ───────────────────────────────────────────────── +2026/03/21 15:46:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:46:19 [log_collector] {"stage_name":"log_collector","events_processed":25603,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5120.6,"last_update":"2026-03-21T15:46:19.068415528Z"} +2026/03/21 15:46:19 [metric_collector] {"stage_name":"metric_collector","events_processed":16044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208.8,"last_update":"2026-03-21T15:46:14.06878771Z"} +2026/03/21 15:46:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6420,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:46:14.076175129Z"} +2026/03/21 15:46:19 [detection_layer] {"stage_name":"detection_layer","events_processed":534,"events_dropped":0,"avg_latency_ms":17.76497307438342,"throughput_eps":0,"last_update":"2026-03-21T15:46:14.210405069Z"} +2026/03/21 15:46:19 [transform_engine] {"stage_name":"transform_engine","events_processed":534,"events_dropped":0,"avg_latency_ms":276.83648816677635,"throughput_eps":0,"last_update":"2026-03-21T15:46:14.210370614Z"} +2026/03/21 15:46:19 ───────────────────────────────────────────────── +2026/03/21 15:46:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:46:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:46:19.075561333Z"} +2026/03/21 15:46:24 [detection_layer] {"stage_name":"detection_layer","events_processed":534,"events_dropped":0,"avg_latency_ms":17.76497307438342,"throughput_eps":0,"last_update":"2026-03-21T15:46:19.210790588Z"} +2026/03/21 15:46:24 [transform_engine] {"stage_name":"transform_engine","events_processed":535,"events_dropped":0,"avg_latency_ms":525.725509133421,"throughput_eps":0,"last_update":"2026-03-21T15:46:20.730952767Z"} +2026/03/21 15:46:24 [log_collector] {"stage_name":"log_collector","events_processed":25603,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5120.6,"last_update":"2026-03-21T15:46:19.068415528Z"} +2026/03/21 15:46:24 [metric_collector] {"stage_name":"metric_collector","events_processed":16048,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3209.6,"last_update":"2026-03-21T15:46:19.068533443Z"} +2026/03/21 15:46:24 ───────────────────────────────────────────────── +2026/03/21 15:46:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:46:29 [log_collector] {"stage_name":"log_collector","events_processed":25603,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5120.6,"last_update":"2026-03-21T15:46:24.068791626Z"} +2026/03/21 15:46:29 [metric_collector] {"stage_name":"metric_collector","events_processed":16054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3210.8,"last_update":"2026-03-21T15:46:24.068781717Z"} +2026/03/21 15:46:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:46:24.07998355Z"} +2026/03/21 15:46:29 [detection_layer] {"stage_name":"detection_layer","events_processed":535,"events_dropped":0,"avg_latency_ms":17.233966059506738,"throughput_eps":0,"last_update":"2026-03-21T15:46:24.210113329Z"} +2026/03/21 15:46:29 [transform_engine] {"stage_name":"transform_engine","events_processed":535,"events_dropped":0,"avg_latency_ms":525.725509133421,"throughput_eps":0,"last_update":"2026-03-21T15:46:24.210091026Z"} +2026/03/21 15:46:29 ───────────────────────────────────────────────── +2026/03/21 15:46:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:46:34 [log_collector] {"stage_name":"log_collector","events_processed":25606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5121.2,"last_update":"2026-03-21T15:46:29.068784528Z"} +2026/03/21 15:46:34 [metric_collector] {"stage_name":"metric_collector","events_processed":16059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3211.8,"last_update":"2026-03-21T15:46:29.06902064Z"} +2026/03/21 15:46:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:46:29.074479816Z"} +2026/03/21 15:46:34 [detection_layer] {"stage_name":"detection_layer","events_processed":535,"events_dropped":0,"avg_latency_ms":17.233966059506738,"throughput_eps":0,"last_update":"2026-03-21T15:46:29.210760985Z"} +2026/03/21 15:46:34 [transform_engine] {"stage_name":"transform_engine","events_processed":535,"events_dropped":0,"avg_latency_ms":525.725509133421,"throughput_eps":0,"last_update":"2026-03-21T15:46:29.209663443Z"} +2026/03/21 15:46:34 ───────────────────────────────────────────────── +2026/03/21 15:46:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:46:39 [detection_layer] {"stage_name":"detection_layer","events_processed":535,"events_dropped":0,"avg_latency_ms":17.233966059506738,"throughput_eps":0,"last_update":"2026-03-21T15:46:34.210195385Z"} +2026/03/21 15:46:39 [transform_engine] {"stage_name":"transform_engine","events_processed":535,"events_dropped":0,"avg_latency_ms":525.725509133421,"throughput_eps":0,"last_update":"2026-03-21T15:46:34.210218349Z"} +2026/03/21 15:46:39 [log_collector] {"stage_name":"log_collector","events_processed":25612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5122.4,"last_update":"2026-03-21T15:46:34.06805259Z"} +2026/03/21 15:46:39 [metric_collector] {"stage_name":"metric_collector","events_processed":16064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3212.8,"last_update":"2026-03-21T15:46:34.068761948Z"} +2026/03/21 15:46:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:46:34.07692348Z"} +2026/03/21 15:46:39 ───────────────────────────────────────────────── +2026/03/21 15:46:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:46:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:46:39.075845896Z"} +2026/03/21 15:46:44 [detection_layer] {"stage_name":"detection_layer","events_processed":535,"events_dropped":0,"avg_latency_ms":17.233966059506738,"throughput_eps":0,"last_update":"2026-03-21T15:46:39.210174025Z"} +2026/03/21 15:46:44 [transform_engine] {"stage_name":"transform_engine","events_processed":535,"events_dropped":0,"avg_latency_ms":525.725509133421,"throughput_eps":0,"last_update":"2026-03-21T15:46:39.210184997Z"} +2026/03/21 15:46:44 [log_collector] {"stage_name":"log_collector","events_processed":25708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5141.6,"last_update":"2026-03-21T15:46:39.068625498Z"} +2026/03/21 15:46:44 [metric_collector] {"stage_name":"metric_collector","events_processed":16069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3213.8,"last_update":"2026-03-21T15:46:39.06881959Z"} +2026/03/21 15:46:44 ───────────────────────────────────────────────── +2026/03/21 15:46:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:46:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:46:44.074308538Z"} +2026/03/21 15:46:49 [detection_layer] {"stage_name":"detection_layer","events_processed":535,"events_dropped":0,"avg_latency_ms":17.233966059506738,"throughput_eps":0,"last_update":"2026-03-21T15:46:44.210856229Z"} +2026/03/21 15:46:49 [transform_engine] {"stage_name":"transform_engine","events_processed":535,"events_dropped":0,"avg_latency_ms":525.725509133421,"throughput_eps":0,"last_update":"2026-03-21T15:46:44.209664237Z"} +2026/03/21 15:46:49 [log_collector] {"stage_name":"log_collector","events_processed":25871,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5174.2,"last_update":"2026-03-21T15:46:44.068267178Z"} +2026/03/21 15:46:49 [metric_collector] {"stage_name":"metric_collector","events_processed":16074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3214.8,"last_update":"2026-03-21T15:46:44.06878Z"} +2026/03/21 15:46:49 ───────────────────────────────────────────────── +2026/03/21 15:46:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:46:54 [log_collector] {"stage_name":"log_collector","events_processed":25966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5193.2,"last_update":"2026-03-21T15:46:49.068726434Z"} +2026/03/21 15:46:54 [metric_collector] {"stage_name":"metric_collector","events_processed":16079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3215.8,"last_update":"2026-03-21T15:46:49.068874878Z"} +2026/03/21 15:46:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:46:49.077943747Z"} +2026/03/21 15:46:54 [detection_layer] {"stage_name":"detection_layer","events_processed":535,"events_dropped":0,"avg_latency_ms":17.233966059506738,"throughput_eps":0,"last_update":"2026-03-21T15:46:49.210240536Z"} +2026/03/21 15:46:54 [transform_engine] {"stage_name":"transform_engine","events_processed":536,"events_dropped":0,"avg_latency_ms":444.22730070673686,"throughput_eps":0,"last_update":"2026-03-21T15:46:49.328450967Z"} +2026/03/21 15:46:54 ───────────────────────────────────────────────── +2026/03/21 15:46:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:46:59 [log_collector] {"stage_name":"log_collector","events_processed":25966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5193.2,"last_update":"2026-03-21T15:46:54.068624833Z"} +2026/03/21 15:46:59 [metric_collector] {"stage_name":"metric_collector","events_processed":16084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3216.8,"last_update":"2026-03-21T15:46:54.069005442Z"} +2026/03/21 15:46:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:46:54.078618203Z"} +2026/03/21 15:46:59 [detection_layer] {"stage_name":"detection_layer","events_processed":536,"events_dropped":0,"avg_latency_ms":17.47173964760539,"throughput_eps":0,"last_update":"2026-03-21T15:46:54.209860041Z"} +2026/03/21 15:46:59 [transform_engine] {"stage_name":"transform_engine","events_processed":536,"events_dropped":0,"avg_latency_ms":444.22730070673686,"throughput_eps":0,"last_update":"2026-03-21T15:46:54.209837458Z"} +2026/03/21 15:46:59 ───────────────────────────────────────────────── +2026/03/21 15:47:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:47:04 [transform_engine] {"stage_name":"transform_engine","events_processed":536,"events_dropped":0,"avg_latency_ms":444.22730070673686,"throughput_eps":0,"last_update":"2026-03-21T15:46:59.209825715Z"} +2026/03/21 15:47:04 [log_collector] {"stage_name":"log_collector","events_processed":25966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5193.2,"last_update":"2026-03-21T15:46:59.068249393Z"} +2026/03/21 15:47:04 [metric_collector] {"stage_name":"metric_collector","events_processed":16088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3217.6,"last_update":"2026-03-21T15:46:59.068177716Z"} +2026/03/21 15:47:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:46:59.076609906Z"} +2026/03/21 15:47:04 [detection_layer] {"stage_name":"detection_layer","events_processed":536,"events_dropped":0,"avg_latency_ms":17.47173964760539,"throughput_eps":0,"last_update":"2026-03-21T15:46:59.209848198Z"} +2026/03/21 15:47:04 ───────────────────────────────────────────────── +2026/03/21 15:47:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:47:09 [metric_collector] {"stage_name":"metric_collector","events_processed":16094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3218.8,"last_update":"2026-03-21T15:47:04.069017602Z"} +2026/03/21 15:47:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:47:04.07918248Z"} +2026/03/21 15:47:09 [detection_layer] {"stage_name":"detection_layer","events_processed":536,"events_dropped":0,"avg_latency_ms":17.47173964760539,"throughput_eps":0,"last_update":"2026-03-21T15:47:04.210579756Z"} +2026/03/21 15:47:09 [transform_engine] {"stage_name":"transform_engine","events_processed":536,"events_dropped":0,"avg_latency_ms":444.22730070673686,"throughput_eps":0,"last_update":"2026-03-21T15:47:04.210522697Z"} +2026/03/21 15:47:09 [log_collector] {"stage_name":"log_collector","events_processed":25966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5193.2,"last_update":"2026-03-21T15:47:04.068845533Z"} +2026/03/21 15:47:09 ───────────────────────────────────────────────── +2026/03/21 15:47:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:47:14 [detection_layer] {"stage_name":"detection_layer","events_processed":536,"events_dropped":0,"avg_latency_ms":17.47173964760539,"throughput_eps":0,"last_update":"2026-03-21T15:47:09.210190947Z"} +2026/03/21 15:47:14 [transform_engine] {"stage_name":"transform_engine","events_processed":536,"events_dropped":0,"avg_latency_ms":444.22730070673686,"throughput_eps":0,"last_update":"2026-03-21T15:47:09.210160048Z"} +2026/03/21 15:47:14 [log_collector] {"stage_name":"log_collector","events_processed":25966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5193.2,"last_update":"2026-03-21T15:47:09.068602181Z"} +2026/03/21 15:47:14 [metric_collector] {"stage_name":"metric_collector","events_processed":16099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3219.8,"last_update":"2026-03-21T15:47:09.068917355Z"} +2026/03/21 15:47:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6442,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:47:09.076899101Z"} +2026/03/21 15:47:14 ───────────────────────────────────────────────── +2026/03/21 15:47:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:47:19 [log_collector] {"stage_name":"log_collector","events_processed":25966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5193.2,"last_update":"2026-03-21T15:47:14.068333067Z"} +2026/03/21 15:47:19 [metric_collector] {"stage_name":"metric_collector","events_processed":16104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3220.8,"last_update":"2026-03-21T15:47:14.068909611Z"} +2026/03/21 15:47:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:47:14.078175087Z"} +2026/03/21 15:47:19 [detection_layer] {"stage_name":"detection_layer","events_processed":536,"events_dropped":0,"avg_latency_ms":17.47173964760539,"throughput_eps":0,"last_update":"2026-03-21T15:47:14.210633697Z"} +2026/03/21 15:47:19 [transform_engine] {"stage_name":"transform_engine","events_processed":536,"events_dropped":0,"avg_latency_ms":444.22730070673686,"throughput_eps":0,"last_update":"2026-03-21T15:47:14.210599261Z"} +2026/03/21 15:47:19 ───────────────────────────────────────────────── +2026/03/21 15:47:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:47:24 [log_collector] {"stage_name":"log_collector","events_processed":25966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5193.2,"last_update":"2026-03-21T15:47:19.068594718Z"} +2026/03/21 15:47:24 [metric_collector] {"stage_name":"metric_collector","events_processed":16109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3221.8,"last_update":"2026-03-21T15:47:19.068657398Z"} +2026/03/21 15:47:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6446,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:47:19.07719543Z"} +2026/03/21 15:47:24 [detection_layer] {"stage_name":"detection_layer","events_processed":536,"events_dropped":0,"avg_latency_ms":17.47173964760539,"throughput_eps":0,"last_update":"2026-03-21T15:47:19.210630521Z"} +2026/03/21 15:47:24 [transform_engine] {"stage_name":"transform_engine","events_processed":537,"events_dropped":0,"avg_latency_ms":370.5030093653895,"throughput_eps":0,"last_update":"2026-03-21T15:47:19.286284005Z"} +2026/03/21 15:47:24 ───────────────────────────────────────────────── +2026/03/21 15:47:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:47:29 [log_collector] {"stage_name":"log_collector","events_processed":25966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5193.2,"last_update":"2026-03-21T15:47:24.06890622Z"} +2026/03/21 15:47:29 [metric_collector] {"stage_name":"metric_collector","events_processed":16113,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3222.6,"last_update":"2026-03-21T15:47:24.068916669Z"} +2026/03/21 15:47:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:47:24.078182045Z"} +2026/03/21 15:47:29 [detection_layer] {"stage_name":"detection_layer","events_processed":537,"events_dropped":0,"avg_latency_ms":18.374825918084312,"throughput_eps":0,"last_update":"2026-03-21T15:47:24.210410254Z"} +2026/03/21 15:47:29 [transform_engine] {"stage_name":"transform_engine","events_processed":537,"events_dropped":0,"avg_latency_ms":370.5030093653895,"throughput_eps":0,"last_update":"2026-03-21T15:47:24.210420473Z"} +2026/03/21 15:47:29 ───────────────────────────────────────────────── +2026/03/21 15:47:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:47:34 [log_collector] {"stage_name":"log_collector","events_processed":25966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5193.2,"last_update":"2026-03-21T15:47:29.068311083Z"} +2026/03/21 15:47:34 [metric_collector] {"stage_name":"metric_collector","events_processed":16119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3223.8,"last_update":"2026-03-21T15:47:29.068943875Z"} +2026/03/21 15:47:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:47:29.0781727Z"} +2026/03/21 15:47:34 [detection_layer] {"stage_name":"detection_layer","events_processed":537,"events_dropped":0,"avg_latency_ms":18.374825918084312,"throughput_eps":0,"last_update":"2026-03-21T15:47:29.210410698Z"} +2026/03/21 15:47:34 [transform_engine] {"stage_name":"transform_engine","events_processed":537,"events_dropped":0,"avg_latency_ms":370.5030093653895,"throughput_eps":0,"last_update":"2026-03-21T15:47:29.210421179Z"} +2026/03/21 15:47:34 ───────────────────────────────────────────────── +2026/03/21 15:47:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:47:39 [log_collector] {"stage_name":"log_collector","events_processed":25966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5193.2,"last_update":"2026-03-21T15:47:34.068750565Z"} +2026/03/21 15:47:39 [metric_collector] {"stage_name":"metric_collector","events_processed":16124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3224.8,"last_update":"2026-03-21T15:47:34.069048125Z"} +2026/03/21 15:47:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6452,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:47:34.077897905Z"} +2026/03/21 15:47:39 [detection_layer] {"stage_name":"detection_layer","events_processed":537,"events_dropped":0,"avg_latency_ms":18.374825918084312,"throughput_eps":0,"last_update":"2026-03-21T15:47:34.21059989Z"} +2026/03/21 15:47:39 [transform_engine] {"stage_name":"transform_engine","events_processed":537,"events_dropped":0,"avg_latency_ms":370.5030093653895,"throughput_eps":0,"last_update":"2026-03-21T15:47:34.210611824Z"} +2026/03/21 15:47:39 ───────────────────────────────────────────────── +2026/03/21 15:47:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:47:44 [log_collector] {"stage_name":"log_collector","events_processed":25966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5193.2,"last_update":"2026-03-21T15:47:39.068088733Z"} +2026/03/21 15:47:44 [metric_collector] {"stage_name":"metric_collector","events_processed":16129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3225.8,"last_update":"2026-03-21T15:47:39.068388938Z"} +2026/03/21 15:47:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:47:39.07706801Z"} +2026/03/21 15:47:44 [detection_layer] {"stage_name":"detection_layer","events_processed":537,"events_dropped":0,"avg_latency_ms":18.374825918084312,"throughput_eps":0,"last_update":"2026-03-21T15:47:39.210406496Z"} +2026/03/21 15:47:44 [transform_engine] {"stage_name":"transform_engine","events_processed":537,"events_dropped":0,"avg_latency_ms":370.5030093653895,"throughput_eps":0,"last_update":"2026-03-21T15:47:39.210417417Z"} +2026/03/21 15:47:44 ───────────────────────────────────────────────── +2026/03/21 15:47:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:47:49 [log_collector] {"stage_name":"log_collector","events_processed":25966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5193.2,"last_update":"2026-03-21T15:47:44.068918846Z"} +2026/03/21 15:47:49 [metric_collector] {"stage_name":"metric_collector","events_processed":16134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3226.8,"last_update":"2026-03-21T15:47:44.068996665Z"} +2026/03/21 15:47:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:47:44.079113581Z"} +2026/03/21 15:47:49 [detection_layer] {"stage_name":"detection_layer","events_processed":537,"events_dropped":0,"avg_latency_ms":18.374825918084312,"throughput_eps":0,"last_update":"2026-03-21T15:47:44.210395018Z"} +2026/03/21 15:47:49 [transform_engine] {"stage_name":"transform_engine","events_processed":537,"events_dropped":0,"avg_latency_ms":370.5030093653895,"throughput_eps":0,"last_update":"2026-03-21T15:47:44.210410137Z"} +2026/03/21 15:47:49 ───────────────────────────────────────────────── +Saved state: 17 clusters, 25967 messages, reason: none +2026/03/21 15:47:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:47:54 [metric_collector] {"stage_name":"metric_collector","events_processed":16139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3227.8,"last_update":"2026-03-21T15:47:49.068439988Z"} +2026/03/21 15:47:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:47:49.077717657Z"} +2026/03/21 15:47:54 [detection_layer] {"stage_name":"detection_layer","events_processed":537,"events_dropped":0,"avg_latency_ms":18.374825918084312,"throughput_eps":0,"last_update":"2026-03-21T15:47:49.209966236Z"} +2026/03/21 15:47:54 [transform_engine] {"stage_name":"transform_engine","events_processed":538,"events_dropped":0,"avg_latency_ms":310.66970289231165,"throughput_eps":0,"last_update":"2026-03-21T15:47:49.281318964Z"} +2026/03/21 15:47:54 [log_collector] {"stage_name":"log_collector","events_processed":25966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5193.2,"last_update":"2026-03-21T15:47:49.068122239Z"} +2026/03/21 15:47:54 ───────────────────────────────────────────────── +2026/03/21 15:47:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:47:59 [log_collector] {"stage_name":"log_collector","events_processed":25969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5193.8,"last_update":"2026-03-21T15:47:54.068765919Z"} +2026/03/21 15:47:59 [metric_collector] {"stage_name":"metric_collector","events_processed":16144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3228.8,"last_update":"2026-03-21T15:47:54.068770978Z"} +2026/03/21 15:47:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:47:54.07545016Z"} +2026/03/21 15:47:59 [detection_layer] {"stage_name":"detection_layer","events_processed":538,"events_dropped":0,"avg_latency_ms":19.38243913446745,"throughput_eps":0,"last_update":"2026-03-21T15:47:54.210693996Z"} +2026/03/21 15:47:59 [transform_engine] {"stage_name":"transform_engine","events_processed":538,"events_dropped":0,"avg_latency_ms":310.66970289231165,"throughput_eps":0,"last_update":"2026-03-21T15:47:54.210702582Z"} +2026/03/21 15:47:59 ───────────────────────────────────────────────── +2026/03/21 15:48:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:48:04 [detection_layer] {"stage_name":"detection_layer","events_processed":538,"events_dropped":0,"avg_latency_ms":19.38243913446745,"throughput_eps":0,"last_update":"2026-03-21T15:47:59.210258404Z"} +2026/03/21 15:48:04 [transform_engine] {"stage_name":"transform_engine","events_processed":538,"events_dropped":0,"avg_latency_ms":310.66970289231165,"throughput_eps":0,"last_update":"2026-03-21T15:47:59.210268645Z"} +2026/03/21 15:48:04 [log_collector] {"stage_name":"log_collector","events_processed":25969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5193.8,"last_update":"2026-03-21T15:47:59.068323964Z"} +2026/03/21 15:48:04 [metric_collector] {"stage_name":"metric_collector","events_processed":16149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3229.8,"last_update":"2026-03-21T15:47:59.068594452Z"} +2026/03/21 15:48:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:47:59.076993048Z"} +2026/03/21 15:48:04 ───────────────────────────────────────────────── +2026/03/21 15:48:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:48:09 [log_collector] {"stage_name":"log_collector","events_processed":25988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5197.6,"last_update":"2026-03-21T15:48:04.068641592Z"} +2026/03/21 15:48:09 [metric_collector] {"stage_name":"metric_collector","events_processed":16154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3230.8,"last_update":"2026-03-21T15:48:04.06882321Z"} +2026/03/21 15:48:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:48:04.075376461Z"} +2026/03/21 15:48:09 [detection_layer] {"stage_name":"detection_layer","events_processed":538,"events_dropped":0,"avg_latency_ms":19.38243913446745,"throughput_eps":0,"last_update":"2026-03-21T15:48:04.210587093Z"} +2026/03/21 15:48:09 [transform_engine] {"stage_name":"transform_engine","events_processed":538,"events_dropped":0,"avg_latency_ms":310.66970289231165,"throughput_eps":0,"last_update":"2026-03-21T15:48:04.210596482Z"} +2026/03/21 15:48:09 ───────────────────────────────────────────────── +2026/03/21 15:48:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:48:14 [log_collector] {"stage_name":"log_collector","events_processed":25996,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5199.2,"last_update":"2026-03-21T15:48:09.068965889Z"} +2026/03/21 15:48:14 [metric_collector] {"stage_name":"metric_collector","events_processed":16159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3231.8,"last_update":"2026-03-21T15:48:09.069291022Z"} +2026/03/21 15:48:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:48:09.07717412Z"} +2026/03/21 15:48:14 [detection_layer] {"stage_name":"detection_layer","events_processed":538,"events_dropped":0,"avg_latency_ms":19.38243913446745,"throughput_eps":0,"last_update":"2026-03-21T15:48:09.210596217Z"} +2026/03/21 15:48:14 [transform_engine] {"stage_name":"transform_engine","events_processed":538,"events_dropped":0,"avg_latency_ms":310.66970289231165,"throughput_eps":0,"last_update":"2026-03-21T15:48:09.210612549Z"} +2026/03/21 15:48:14 ───────────────────────────────────────────────── +2026/03/21 15:48:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:48:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:48:14.077415976Z"} +2026/03/21 15:48:19 [detection_layer] {"stage_name":"detection_layer","events_processed":538,"events_dropped":0,"avg_latency_ms":19.38243913446745,"throughput_eps":0,"last_update":"2026-03-21T15:48:14.210717171Z"} +2026/03/21 15:48:19 [transform_engine] {"stage_name":"transform_engine","events_processed":538,"events_dropped":0,"avg_latency_ms":310.66970289231165,"throughput_eps":0,"last_update":"2026-03-21T15:48:14.210729946Z"} +2026/03/21 15:48:19 [log_collector] {"stage_name":"log_collector","events_processed":25996,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5199.2,"last_update":"2026-03-21T15:48:14.068631051Z"} +2026/03/21 15:48:19 [metric_collector] {"stage_name":"metric_collector","events_processed":16164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3232.8,"last_update":"2026-03-21T15:48:14.069095289Z"} +2026/03/21 15:48:19 ───────────────────────────────────────────────── +2026/03/21 15:48:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:48:24 [log_collector] {"stage_name":"log_collector","events_processed":25996,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5199.2,"last_update":"2026-03-21T15:48:19.068671936Z"} +2026/03/21 15:48:24 [metric_collector] {"stage_name":"metric_collector","events_processed":16169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3233.8,"last_update":"2026-03-21T15:48:19.06908072Z"} +2026/03/21 15:48:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6470,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:48:19.07874495Z"} +2026/03/21 15:48:24 [detection_layer] {"stage_name":"detection_layer","events_processed":538,"events_dropped":0,"avg_latency_ms":19.38243913446745,"throughput_eps":0,"last_update":"2026-03-21T15:48:19.210135796Z"} +2026/03/21 15:48:24 [transform_engine] {"stage_name":"transform_engine","events_processed":539,"events_dropped":0,"avg_latency_ms":271.3994421138493,"throughput_eps":0,"last_update":"2026-03-21T15:48:19.324472711Z"} +2026/03/21 15:48:24 ───────────────────────────────────────────────── +2026/03/21 15:48:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:48:29 [log_collector] {"stage_name":"log_collector","events_processed":25996,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5199.2,"last_update":"2026-03-21T15:48:24.068088293Z"} +2026/03/21 15:48:29 [metric_collector] {"stage_name":"metric_collector","events_processed":16174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3234.8,"last_update":"2026-03-21T15:48:24.068688393Z"} +2026/03/21 15:48:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:48:24.077588167Z"} +2026/03/21 15:48:29 [detection_layer] {"stage_name":"detection_layer","events_processed":539,"events_dropped":0,"avg_latency_ms":19.555487307573962,"throughput_eps":0,"last_update":"2026-03-21T15:48:24.209934064Z"} +2026/03/21 15:48:29 [transform_engine] {"stage_name":"transform_engine","events_processed":539,"events_dropped":0,"avg_latency_ms":271.3994421138493,"throughput_eps":0,"last_update":"2026-03-21T15:48:24.209817671Z"} +2026/03/21 15:48:29 ───────────────────────────────────────────────── +2026/03/21 15:48:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:48:34 [detection_layer] {"stage_name":"detection_layer","events_processed":539,"events_dropped":0,"avg_latency_ms":19.555487307573962,"throughput_eps":0,"last_update":"2026-03-21T15:48:29.210392473Z"} +2026/03/21 15:48:34 [transform_engine] {"stage_name":"transform_engine","events_processed":539,"events_dropped":0,"avg_latency_ms":271.3994421138493,"throughput_eps":0,"last_update":"2026-03-21T15:48:29.210408063Z"} +2026/03/21 15:48:34 [log_collector] {"stage_name":"log_collector","events_processed":26009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5201.8,"last_update":"2026-03-21T15:48:29.068143469Z"} +2026/03/21 15:48:34 [metric_collector] {"stage_name":"metric_collector","events_processed":16179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3235.8,"last_update":"2026-03-21T15:48:29.068862065Z"} +2026/03/21 15:48:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:48:29.077040829Z"} +2026/03/21 15:48:34 ───────────────────────────────────────────────── +2026/03/21 15:48:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:48:39 [log_collector] {"stage_name":"log_collector","events_processed":26010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5202,"last_update":"2026-03-21T15:48:34.068957174Z"} +2026/03/21 15:48:39 [metric_collector] {"stage_name":"metric_collector","events_processed":16184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3236.8,"last_update":"2026-03-21T15:48:34.069417425Z"} +2026/03/21 15:48:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6476,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:48:34.07843658Z"} +2026/03/21 15:48:39 [detection_layer] {"stage_name":"detection_layer","events_processed":539,"events_dropped":0,"avg_latency_ms":19.555487307573962,"throughput_eps":0,"last_update":"2026-03-21T15:48:34.21077385Z"} +2026/03/21 15:48:39 [transform_engine] {"stage_name":"transform_engine","events_processed":539,"events_dropped":0,"avg_latency_ms":271.3994421138493,"throughput_eps":0,"last_update":"2026-03-21T15:48:34.209670907Z"} +2026/03/21 15:48:39 ───────────────────────────────────────────────── +2026/03/21 15:48:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:48:44 [metric_collector] {"stage_name":"metric_collector","events_processed":16189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3237.8,"last_update":"2026-03-21T15:48:39.068386383Z"} +2026/03/21 15:48:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:48:39.078032087Z"} +2026/03/21 15:48:44 [detection_layer] {"stage_name":"detection_layer","events_processed":539,"events_dropped":0,"avg_latency_ms":19.555487307573962,"throughput_eps":0,"last_update":"2026-03-21T15:48:39.210434763Z"} +2026/03/21 15:48:44 [transform_engine] {"stage_name":"transform_engine","events_processed":539,"events_dropped":0,"avg_latency_ms":271.3994421138493,"throughput_eps":0,"last_update":"2026-03-21T15:48:39.210447347Z"} +2026/03/21 15:48:44 [log_collector] {"stage_name":"log_collector","events_processed":26010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5202,"last_update":"2026-03-21T15:48:39.068084084Z"} +2026/03/21 15:48:44 ───────────────────────────────────────────────── +2026/03/21 15:48:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:48:49 [transform_engine] {"stage_name":"transform_engine","events_processed":539,"events_dropped":0,"avg_latency_ms":271.3994421138493,"throughput_eps":0,"last_update":"2026-03-21T15:48:44.210266339Z"} +2026/03/21 15:48:49 [log_collector] {"stage_name":"log_collector","events_processed":26010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5202,"last_update":"2026-03-21T15:48:44.068230934Z"} +2026/03/21 15:48:49 [metric_collector] {"stage_name":"metric_collector","events_processed":16194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3238.8,"last_update":"2026-03-21T15:48:44.06829669Z"} +2026/03/21 15:48:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6480,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:48:44.078982817Z"} +2026/03/21 15:48:49 [detection_layer] {"stage_name":"detection_layer","events_processed":539,"events_dropped":0,"avg_latency_ms":19.555487307573962,"throughput_eps":0,"last_update":"2026-03-21T15:48:44.210254016Z"} +2026/03/21 15:48:49 ───────────────────────────────────────────────── +2026/03/21 15:48:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:48:54 [log_collector] {"stage_name":"log_collector","events_processed":26010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5202,"last_update":"2026-03-21T15:48:49.068724775Z"} +2026/03/21 15:48:54 [metric_collector] {"stage_name":"metric_collector","events_processed":16199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3239.8,"last_update":"2026-03-21T15:48:49.069246734Z"} +2026/03/21 15:48:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6482,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:48:49.079116326Z"} +2026/03/21 15:48:54 [detection_layer] {"stage_name":"detection_layer","events_processed":539,"events_dropped":0,"avg_latency_ms":19.555487307573962,"throughput_eps":0,"last_update":"2026-03-21T15:48:49.210538525Z"} +2026/03/21 15:48:54 [transform_engine] {"stage_name":"transform_engine","events_processed":540,"events_dropped":0,"avg_latency_ms":240.89338069107947,"throughput_eps":0,"last_update":"2026-03-21T15:48:49.329423872Z"} +2026/03/21 15:48:54 ───────────────────────────────────────────────── +2026/03/21 15:48:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:48:59 [log_collector] {"stage_name":"log_collector","events_processed":26010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5202,"last_update":"2026-03-21T15:48:54.06875403Z"} +2026/03/21 15:48:59 [metric_collector] {"stage_name":"metric_collector","events_processed":16204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3240.8,"last_update":"2026-03-21T15:48:54.069257123Z"} +2026/03/21 15:48:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:48:54.078231061Z"} +2026/03/21 15:48:59 [detection_layer] {"stage_name":"detection_layer","events_processed":540,"events_dropped":0,"avg_latency_ms":19.84558424605917,"throughput_eps":0,"last_update":"2026-03-21T15:48:54.210603409Z"} +2026/03/21 15:48:59 [transform_engine] {"stage_name":"transform_engine","events_processed":540,"events_dropped":0,"avg_latency_ms":240.89338069107947,"throughput_eps":0,"last_update":"2026-03-21T15:48:54.21058279Z"} +2026/03/21 15:48:59 ───────────────────────────────────────────────── +2026/03/21 15:49:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:49:04 [transform_engine] {"stage_name":"transform_engine","events_processed":540,"events_dropped":0,"avg_latency_ms":240.89338069107947,"throughput_eps":0,"last_update":"2026-03-21T15:48:59.210040998Z"} +2026/03/21 15:49:04 [log_collector] {"stage_name":"log_collector","events_processed":26010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5202,"last_update":"2026-03-21T15:48:59.068634816Z"} +2026/03/21 15:49:04 [metric_collector] {"stage_name":"metric_collector","events_processed":16209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3241.8,"last_update":"2026-03-21T15:48:59.06901289Z"} +2026/03/21 15:49:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6486,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:48:59.078036353Z"} +2026/03/21 15:49:04 [detection_layer] {"stage_name":"detection_layer","events_processed":540,"events_dropped":0,"avg_latency_ms":19.84558424605917,"throughput_eps":0,"last_update":"2026-03-21T15:48:59.209961996Z"} +2026/03/21 15:49:04 ───────────────────────────────────────────────── +2026/03/21 15:49:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:49:09 [log_collector] {"stage_name":"log_collector","events_processed":26010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5202,"last_update":"2026-03-21T15:49:04.06814009Z"} +2026/03/21 15:49:09 [metric_collector] {"stage_name":"metric_collector","events_processed":16214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3242.8,"last_update":"2026-03-21T15:49:04.068681387Z"} +2026/03/21 15:49:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:49:04.077972622Z"} +2026/03/21 15:49:09 [detection_layer] {"stage_name":"detection_layer","events_processed":540,"events_dropped":0,"avg_latency_ms":19.84558424605917,"throughput_eps":0,"last_update":"2026-03-21T15:49:04.210297078Z"} +2026/03/21 15:49:09 [transform_engine] {"stage_name":"transform_engine","events_processed":540,"events_dropped":0,"avg_latency_ms":240.89338069107947,"throughput_eps":0,"last_update":"2026-03-21T15:49:04.210307639Z"} +2026/03/21 15:49:09 ───────────────────────────────────────────────── +2026/03/21 15:49:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:49:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6490,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:49:09.07895974Z"} +2026/03/21 15:49:14 [detection_layer] {"stage_name":"detection_layer","events_processed":540,"events_dropped":0,"avg_latency_ms":19.84558424605917,"throughput_eps":0,"last_update":"2026-03-21T15:49:09.210239555Z"} +2026/03/21 15:49:14 [transform_engine] {"stage_name":"transform_engine","events_processed":540,"events_dropped":0,"avg_latency_ms":240.89338069107947,"throughput_eps":0,"last_update":"2026-03-21T15:49:09.210252711Z"} +2026/03/21 15:49:14 [log_collector] {"stage_name":"log_collector","events_processed":26010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5202,"last_update":"2026-03-21T15:49:09.068784181Z"} +2026/03/21 15:49:14 [metric_collector] {"stage_name":"metric_collector","events_processed":16219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3243.8,"last_update":"2026-03-21T15:49:09.069047646Z"} +2026/03/21 15:49:14 ───────────────────────────────────────────────── +2026/03/21 15:49:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:49:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:49:14.079141111Z"} +2026/03/21 15:49:19 [detection_layer] {"stage_name":"detection_layer","events_processed":540,"events_dropped":0,"avg_latency_ms":19.84558424605917,"throughput_eps":0,"last_update":"2026-03-21T15:49:14.210443932Z"} +2026/03/21 15:49:19 [transform_engine] {"stage_name":"transform_engine","events_processed":540,"events_dropped":0,"avg_latency_ms":240.89338069107947,"throughput_eps":0,"last_update":"2026-03-21T15:49:14.210460463Z"} +2026/03/21 15:49:19 [log_collector] {"stage_name":"log_collector","events_processed":26010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5202,"last_update":"2026-03-21T15:49:14.068962656Z"} +2026/03/21 15:49:19 [metric_collector] {"stage_name":"metric_collector","events_processed":16224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3244.8,"last_update":"2026-03-21T15:49:14.069247021Z"} +2026/03/21 15:49:19 ───────────────────────────────────────────────── +2026/03/21 15:49:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:49:24 [metric_collector] {"stage_name":"metric_collector","events_processed":16229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3245.8,"last_update":"2026-03-21T15:49:19.069330791Z"} +2026/03/21 15:49:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:49:19.078077733Z"} +2026/03/21 15:49:24 [detection_layer] {"stage_name":"detection_layer","events_processed":540,"events_dropped":0,"avg_latency_ms":19.84558424605917,"throughput_eps":0,"last_update":"2026-03-21T15:49:19.210330744Z"} +2026/03/21 15:49:24 [transform_engine] {"stage_name":"transform_engine","events_processed":541,"events_dropped":0,"avg_latency_ms":207.21080635286359,"throughput_eps":0,"last_update":"2026-03-21T15:49:19.282828286Z"} +2026/03/21 15:49:24 [log_collector] {"stage_name":"log_collector","events_processed":26010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5202,"last_update":"2026-03-21T15:49:19.068952727Z"} +2026/03/21 15:49:24 ───────────────────────────────────────────────── +2026/03/21 15:49:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:49:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6496,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:49:24.077505381Z"} +2026/03/21 15:49:29 [detection_layer] {"stage_name":"detection_layer","events_processed":541,"events_dropped":0,"avg_latency_ms":20.434503196847338,"throughput_eps":0,"last_update":"2026-03-21T15:49:24.210808503Z"} +2026/03/21 15:49:29 [transform_engine] {"stage_name":"transform_engine","events_processed":541,"events_dropped":0,"avg_latency_ms":207.21080635286359,"throughput_eps":0,"last_update":"2026-03-21T15:49:24.209707113Z"} +2026/03/21 15:49:29 [log_collector] {"stage_name":"log_collector","events_processed":26010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5202,"last_update":"2026-03-21T15:49:24.068881995Z"} +2026/03/21 15:49:29 [metric_collector] {"stage_name":"metric_collector","events_processed":16234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3246.8,"last_update":"2026-03-21T15:49:24.06927101Z"} +2026/03/21 15:49:29 ───────────────────────────────────────────────── +Saved state: 17 clusters, 26011 messages, reason: none +2026/03/21 15:49:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:49:34 [transform_engine] {"stage_name":"transform_engine","events_processed":541,"events_dropped":0,"avg_latency_ms":207.21080635286359,"throughput_eps":0,"last_update":"2026-03-21T15:49:29.209998961Z"} +2026/03/21 15:49:34 [log_collector] {"stage_name":"log_collector","events_processed":26010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5202,"last_update":"2026-03-21T15:49:29.068732847Z"} +2026/03/21 15:49:34 [metric_collector] {"stage_name":"metric_collector","events_processed":16239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3247.8,"last_update":"2026-03-21T15:49:29.069018603Z"} +2026/03/21 15:49:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6498,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:49:29.077749646Z"} +2026/03/21 15:49:34 [detection_layer] {"stage_name":"detection_layer","events_processed":541,"events_dropped":0,"avg_latency_ms":20.434503196847338,"throughput_eps":0,"last_update":"2026-03-21T15:49:29.209978241Z"} +2026/03/21 15:49:34 ───────────────────────────────────────────────── +2026/03/21 15:49:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:49:39 [detection_layer] {"stage_name":"detection_layer","events_processed":541,"events_dropped":0,"avg_latency_ms":20.434503196847338,"throughput_eps":0,"last_update":"2026-03-21T15:49:34.210253162Z"} +2026/03/21 15:49:39 [transform_engine] {"stage_name":"transform_engine","events_processed":541,"events_dropped":0,"avg_latency_ms":207.21080635286359,"throughput_eps":0,"last_update":"2026-03-21T15:49:34.210225069Z"} +2026/03/21 15:49:39 [log_collector] {"stage_name":"log_collector","events_processed":26015,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203,"last_update":"2026-03-21T15:49:34.068062158Z"} +2026/03/21 15:49:39 [metric_collector] {"stage_name":"metric_collector","events_processed":16244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3248.8,"last_update":"2026-03-21T15:49:34.068149665Z"} +2026/03/21 15:49:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:49:34.077015165Z"} +2026/03/21 15:49:39 ───────────────────────────────────────────────── +2026/03/21 15:49:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:49:44 [log_collector] {"stage_name":"log_collector","events_processed":26015,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203,"last_update":"2026-03-21T15:49:39.068460631Z"} +2026/03/21 15:49:44 [metric_collector] {"stage_name":"metric_collector","events_processed":16249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3249.8,"last_update":"2026-03-21T15:49:39.068685382Z"} +2026/03/21 15:49:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:49:39.075965615Z"} +2026/03/21 15:49:44 [detection_layer] {"stage_name":"detection_layer","events_processed":541,"events_dropped":0,"avg_latency_ms":20.434503196847338,"throughput_eps":0,"last_update":"2026-03-21T15:49:39.210251469Z"} +2026/03/21 15:49:44 [transform_engine] {"stage_name":"transform_engine","events_processed":541,"events_dropped":0,"avg_latency_ms":207.21080635286359,"throughput_eps":0,"last_update":"2026-03-21T15:49:39.210221863Z"} +2026/03/21 15:49:44 ───────────────────────────────────────────────── +2026/03/21 15:49:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:49:49 [transform_engine] {"stage_name":"transform_engine","events_processed":541,"events_dropped":0,"avg_latency_ms":207.21080635286359,"throughput_eps":0,"last_update":"2026-03-21T15:49:44.210694644Z"} +2026/03/21 15:49:49 [log_collector] {"stage_name":"log_collector","events_processed":26015,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203,"last_update":"2026-03-21T15:49:44.068967568Z"} +2026/03/21 15:49:49 [metric_collector] {"stage_name":"metric_collector","events_processed":16254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3250.8,"last_update":"2026-03-21T15:49:44.068954263Z"} +2026/03/21 15:49:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:49:44.0784658Z"} +2026/03/21 15:49:49 [detection_layer] {"stage_name":"detection_layer","events_processed":541,"events_dropped":0,"avg_latency_ms":20.434503196847338,"throughput_eps":0,"last_update":"2026-03-21T15:49:44.210803733Z"} +2026/03/21 15:49:49 ───────────────────────────────────────────────── +2026/03/21 15:49:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:49:54 [log_collector] {"stage_name":"log_collector","events_processed":26015,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203,"last_update":"2026-03-21T15:49:49.068807072Z"} +2026/03/21 15:49:54 [metric_collector] {"stage_name":"metric_collector","events_processed":16259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3251.8,"last_update":"2026-03-21T15:49:49.069178193Z"} +2026/03/21 15:49:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6506,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:49:49.076890384Z"} +2026/03/21 15:49:54 [detection_layer] {"stage_name":"detection_layer","events_processed":541,"events_dropped":0,"avg_latency_ms":20.434503196847338,"throughput_eps":0,"last_update":"2026-03-21T15:49:49.210113462Z"} +2026/03/21 15:49:54 [transform_engine] {"stage_name":"transform_engine","events_processed":542,"events_dropped":0,"avg_latency_ms":199.14142308229088,"throughput_eps":0,"last_update":"2026-03-21T15:49:49.377010688Z"} +2026/03/21 15:49:54 ───────────────────────────────────────────────── +2026/03/21 15:49:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:49:59 [transform_engine] {"stage_name":"transform_engine","events_processed":542,"events_dropped":0,"avg_latency_ms":199.14142308229088,"throughput_eps":0,"last_update":"2026-03-21T15:49:54.210208196Z"} +2026/03/21 15:49:59 [log_collector] {"stage_name":"log_collector","events_processed":26015,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203,"last_update":"2026-03-21T15:49:54.068840598Z"} +2026/03/21 15:49:59 [metric_collector] {"stage_name":"metric_collector","events_processed":16264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3252.8,"last_update":"2026-03-21T15:49:54.069126134Z"} +2026/03/21 15:49:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:49:54.076948056Z"} +2026/03/21 15:49:59 [detection_layer] {"stage_name":"detection_layer","events_processed":542,"events_dropped":0,"avg_latency_ms":19.10631835747787,"throughput_eps":0,"last_update":"2026-03-21T15:49:54.210199149Z"} +2026/03/21 15:49:59 ───────────────────────────────────────────────── +2026/03/21 15:50:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:50:04 [metric_collector] {"stage_name":"metric_collector","events_processed":16269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3253.8,"last_update":"2026-03-21T15:49:59.069310239Z"} +2026/03/21 15:50:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:49:59.078074454Z"} +2026/03/21 15:50:04 [detection_layer] {"stage_name":"detection_layer","events_processed":542,"events_dropped":0,"avg_latency_ms":19.10631835747787,"throughput_eps":0,"last_update":"2026-03-21T15:49:59.210335883Z"} +2026/03/21 15:50:04 [transform_engine] {"stage_name":"transform_engine","events_processed":542,"events_dropped":0,"avg_latency_ms":199.14142308229088,"throughput_eps":0,"last_update":"2026-03-21T15:49:59.210343978Z"} +2026/03/21 15:50:04 [log_collector] {"stage_name":"log_collector","events_processed":26015,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203,"last_update":"2026-03-21T15:49:59.068712724Z"} +2026/03/21 15:50:04 ───────────────────────────────────────────────── +2026/03/21 15:50:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:50:09 [detection_layer] {"stage_name":"detection_layer","events_processed":542,"events_dropped":0,"avg_latency_ms":19.10631835747787,"throughput_eps":0,"last_update":"2026-03-21T15:50:04.210373481Z"} +2026/03/21 15:50:09 [transform_engine] {"stage_name":"transform_engine","events_processed":542,"events_dropped":0,"avg_latency_ms":199.14142308229088,"throughput_eps":0,"last_update":"2026-03-21T15:50:04.210384082Z"} +2026/03/21 15:50:09 [log_collector] {"stage_name":"log_collector","events_processed":26015,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203,"last_update":"2026-03-21T15:50:04.068678085Z"} +2026/03/21 15:50:09 [metric_collector] {"stage_name":"metric_collector","events_processed":16274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3254.8,"last_update":"2026-03-21T15:50:04.069006163Z"} +2026/03/21 15:50:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6512,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:50:04.081163908Z"} +2026/03/21 15:50:09 ───────────────────────────────────────────────── +2026/03/21 15:50:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:50:14 [log_collector] {"stage_name":"log_collector","events_processed":26015,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203,"last_update":"2026-03-21T15:50:09.068725498Z"} +2026/03/21 15:50:14 [metric_collector] {"stage_name":"metric_collector","events_processed":16279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3255.8,"last_update":"2026-03-21T15:50:09.069106638Z"} +2026/03/21 15:50:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:50:09.077369383Z"} +2026/03/21 15:50:14 [detection_layer] {"stage_name":"detection_layer","events_processed":542,"events_dropped":0,"avg_latency_ms":19.10631835747787,"throughput_eps":0,"last_update":"2026-03-21T15:50:09.209874026Z"} +2026/03/21 15:50:14 [transform_engine] {"stage_name":"transform_engine","events_processed":542,"events_dropped":0,"avg_latency_ms":199.14142308229088,"throughput_eps":0,"last_update":"2026-03-21T15:50:09.209708779Z"} +2026/03/21 15:50:14 ───────────────────────────────────────────────── +2026/03/21 15:50:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:50:19 [transform_engine] {"stage_name":"transform_engine","events_processed":542,"events_dropped":0,"avg_latency_ms":199.14142308229088,"throughput_eps":0,"last_update":"2026-03-21T15:50:14.209800031Z"} +2026/03/21 15:50:19 [log_collector] {"stage_name":"log_collector","events_processed":26015,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203,"last_update":"2026-03-21T15:50:14.068089845Z"} +2026/03/21 15:50:19 [metric_collector] {"stage_name":"metric_collector","events_processed":16284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3256.8,"last_update":"2026-03-21T15:50:14.068446098Z"} +2026/03/21 15:50:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:50:14.077618395Z"} +2026/03/21 15:50:19 [detection_layer] {"stage_name":"detection_layer","events_processed":542,"events_dropped":0,"avg_latency_ms":19.10631835747787,"throughput_eps":0,"last_update":"2026-03-21T15:50:14.210950694Z"} +2026/03/21 15:50:19 ───────────────────────────────────────────────── +2026/03/21 15:50:19 [ANOMALY] time=2026-03-21T15:50:19Z score=0.8059 method=SEAD details=MAD!:w=0.29,s=0.90 RRCF-fast!:w=0.16,s=0.91 RRCF-mid!:w=0.15,s=0.98 RRCF-slow!:w=0.17,s=0.98 COPOD!:w=0.22,s=0.35 +2026/03/21 15:50:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:50:24 [log_collector] {"stage_name":"log_collector","events_processed":26015,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203,"last_update":"2026-03-21T15:50:19.068853719Z"} +2026/03/21 15:50:24 [metric_collector] {"stage_name":"metric_collector","events_processed":16289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3257.8,"last_update":"2026-03-21T15:50:19.069019788Z"} +2026/03/21 15:50:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:50:19.077884095Z"} +2026/03/21 15:50:24 [detection_layer] {"stage_name":"detection_layer","events_processed":542,"events_dropped":0,"avg_latency_ms":19.10631835747787,"throughput_eps":0,"last_update":"2026-03-21T15:50:19.210080498Z"} +2026/03/21 15:50:24 [transform_engine] {"stage_name":"transform_engine","events_processed":543,"events_dropped":0,"avg_latency_ms":179.6651822658327,"throughput_eps":0,"last_update":"2026-03-21T15:50:19.311852981Z"} +2026/03/21 15:50:24 ───────────────────────────────────────────────── +Saved state: 18 clusters, 26016 messages, reason: cluster_created +2026/03/21 15:50:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:50:29 [log_collector] {"stage_name":"log_collector","events_processed":26015,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203,"last_update":"2026-03-21T15:50:24.06877336Z"} +2026/03/21 15:50:29 [metric_collector] {"stage_name":"metric_collector","events_processed":16294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3258.8,"last_update":"2026-03-21T15:50:24.068876497Z"} +2026/03/21 15:50:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6520,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:50:24.075231879Z"} +2026/03/21 15:50:29 [detection_layer] {"stage_name":"detection_layer","events_processed":543,"events_dropped":0,"avg_latency_ms":18.384927685982298,"throughput_eps":0,"last_update":"2026-03-21T15:50:24.210467553Z"} +2026/03/21 15:50:29 [transform_engine] {"stage_name":"transform_engine","events_processed":543,"events_dropped":0,"avg_latency_ms":179.6651822658327,"throughput_eps":0,"last_update":"2026-03-21T15:50:24.210479817Z"} +2026/03/21 15:50:29 ───────────────────────────────────────────────── +2026/03/21 15:50:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:50:34 [log_collector] {"stage_name":"log_collector","events_processed":26016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203.2,"last_update":"2026-03-21T15:50:29.068462827Z"} +2026/03/21 15:50:34 [metric_collector] {"stage_name":"metric_collector","events_processed":16299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3259.8,"last_update":"2026-03-21T15:50:29.068926905Z"} +2026/03/21 15:50:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6522,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:50:29.074727755Z"} +2026/03/21 15:50:34 [detection_layer] {"stage_name":"detection_layer","events_processed":543,"events_dropped":0,"avg_latency_ms":18.384927685982298,"throughput_eps":0,"last_update":"2026-03-21T15:50:29.209967979Z"} +2026/03/21 15:50:34 [transform_engine] {"stage_name":"transform_engine","events_processed":543,"events_dropped":0,"avg_latency_ms":179.6651822658327,"throughput_eps":0,"last_update":"2026-03-21T15:50:29.209981035Z"} +2026/03/21 15:50:34 ───────────────────────────────────────────────── +2026/03/21 15:50:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:50:39 [log_collector] {"stage_name":"log_collector","events_processed":26016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203.2,"last_update":"2026-03-21T15:50:34.068664739Z"} +2026/03/21 15:50:39 [metric_collector] {"stage_name":"metric_collector","events_processed":16304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3260.8,"last_update":"2026-03-21T15:50:34.068805358Z"} +2026/03/21 15:50:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:50:34.082468217Z"} +2026/03/21 15:50:39 [detection_layer] {"stage_name":"detection_layer","events_processed":543,"events_dropped":0,"avg_latency_ms":18.384927685982298,"throughput_eps":0,"last_update":"2026-03-21T15:50:34.210699797Z"} +2026/03/21 15:50:39 [transform_engine] {"stage_name":"transform_engine","events_processed":543,"events_dropped":0,"avg_latency_ms":179.6651822658327,"throughput_eps":0,"last_update":"2026-03-21T15:50:34.210746426Z"} +2026/03/21 15:50:39 ───────────────────────────────────────────────── +2026/03/21 15:50:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:50:44 [log_collector] {"stage_name":"log_collector","events_processed":26016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203.2,"last_update":"2026-03-21T15:50:39.068133853Z"} +2026/03/21 15:50:44 [metric_collector] {"stage_name":"metric_collector","events_processed":16309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3261.8,"last_update":"2026-03-21T15:50:39.068452813Z"} +2026/03/21 15:50:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6526,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:50:39.083609001Z"} +2026/03/21 15:50:44 [detection_layer] {"stage_name":"detection_layer","events_processed":543,"events_dropped":0,"avg_latency_ms":18.384927685982298,"throughput_eps":0,"last_update":"2026-03-21T15:50:39.210850806Z"} +2026/03/21 15:50:44 [transform_engine] {"stage_name":"transform_engine","events_processed":543,"events_dropped":0,"avg_latency_ms":179.6651822658327,"throughput_eps":0,"last_update":"2026-03-21T15:50:39.209713418Z"} +2026/03/21 15:50:44 ───────────────────────────────────────────────── +2026/03/21 15:50:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:50:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:50:44.077274365Z"} +2026/03/21 15:50:49 [detection_layer] {"stage_name":"detection_layer","events_processed":543,"events_dropped":0,"avg_latency_ms":18.384927685982298,"throughput_eps":0,"last_update":"2026-03-21T15:50:44.210608288Z"} +2026/03/21 15:50:49 [transform_engine] {"stage_name":"transform_engine","events_processed":543,"events_dropped":0,"avg_latency_ms":179.6651822658327,"throughput_eps":0,"last_update":"2026-03-21T15:50:44.210500953Z"} +2026/03/21 15:50:49 [log_collector] {"stage_name":"log_collector","events_processed":26016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203.2,"last_update":"2026-03-21T15:50:44.068254569Z"} +2026/03/21 15:50:49 [metric_collector] {"stage_name":"metric_collector","events_processed":16314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3262.8,"last_update":"2026-03-21T15:50:44.068412953Z"} +2026/03/21 15:50:49 ───────────────────────────────────────────────── +2026/03/21 15:50:49 [ANOMALY] time=2026-03-21T15:50:49Z score=0.8985 method=SEAD details=MAD!:w=0.29,s=0.89 RRCF-fast!:w=0.16,s=0.95 RRCF-mid!:w=0.15,s=0.91 RRCF-slow!:w=0.17,s=0.84 COPOD!:w=0.23,s=0.92 +2026/03/21 15:50:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:50:54 [log_collector] {"stage_name":"log_collector","events_processed":26016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203.2,"last_update":"2026-03-21T15:50:49.068111617Z"} +2026/03/21 15:50:54 [metric_collector] {"stage_name":"metric_collector","events_processed":16319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3263.8,"last_update":"2026-03-21T15:50:49.068451609Z"} +2026/03/21 15:50:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:50:49.077228598Z"} +2026/03/21 15:50:54 [detection_layer] {"stage_name":"detection_layer","events_processed":543,"events_dropped":0,"avg_latency_ms":18.384927685982298,"throughput_eps":0,"last_update":"2026-03-21T15:50:49.210501354Z"} +2026/03/21 15:50:54 [transform_engine] {"stage_name":"transform_engine","events_processed":543,"events_dropped":0,"avg_latency_ms":179.6651822658327,"throughput_eps":0,"last_update":"2026-03-21T15:50:49.210465896Z"} +2026/03/21 15:50:54 ───────────────────────────────────────────────── +2026/03/21 15:50:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:50:59 [log_collector] {"stage_name":"log_collector","events_processed":26016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203.2,"last_update":"2026-03-21T15:50:54.068206994Z"} +2026/03/21 15:50:59 [metric_collector] {"stage_name":"metric_collector","events_processed":16324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3264.8,"last_update":"2026-03-21T15:50:54.068965617Z"} +2026/03/21 15:50:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6532,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:50:54.077686971Z"} +2026/03/21 15:50:59 [detection_layer] {"stage_name":"detection_layer","events_processed":544,"events_dropped":0,"avg_latency_ms":17.81686874878584,"throughput_eps":0,"last_update":"2026-03-21T15:50:54.20991721Z"} +2026/03/21 15:50:59 [transform_engine] {"stage_name":"transform_engine","events_processed":544,"events_dropped":0,"avg_latency_ms":166.57546341266618,"throughput_eps":0,"last_update":"2026-03-21T15:50:54.209927249Z"} +2026/03/21 15:50:59 ───────────────────────────────────────────────── +2026/03/21 15:51:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:51:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:50:59.07699298Z"} +2026/03/21 15:51:04 [detection_layer] {"stage_name":"detection_layer","events_processed":544,"events_dropped":0,"avg_latency_ms":17.81686874878584,"throughput_eps":0,"last_update":"2026-03-21T15:50:59.210121009Z"} +2026/03/21 15:51:04 [transform_engine] {"stage_name":"transform_engine","events_processed":544,"events_dropped":0,"avg_latency_ms":166.57546341266618,"throughput_eps":0,"last_update":"2026-03-21T15:50:59.210132731Z"} +2026/03/21 15:51:04 [log_collector] {"stage_name":"log_collector","events_processed":26016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203.2,"last_update":"2026-03-21T15:50:59.068377368Z"} +2026/03/21 15:51:04 [metric_collector] {"stage_name":"metric_collector","events_processed":16329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3265.8,"last_update":"2026-03-21T15:50:59.068822872Z"} +2026/03/21 15:51:04 ───────────────────────────────────────────────── +2026/03/21 15:51:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:51:09 [detection_layer] {"stage_name":"detection_layer","events_processed":544,"events_dropped":0,"avg_latency_ms":17.81686874878584,"throughput_eps":0,"last_update":"2026-03-21T15:51:04.20989545Z"} +2026/03/21 15:51:09 [transform_engine] {"stage_name":"transform_engine","events_processed":544,"events_dropped":0,"avg_latency_ms":166.57546341266618,"throughput_eps":0,"last_update":"2026-03-21T15:51:04.209903887Z"} +2026/03/21 15:51:09 [log_collector] {"stage_name":"log_collector","events_processed":26016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203.2,"last_update":"2026-03-21T15:51:04.068084942Z"} +2026/03/21 15:51:09 [metric_collector] {"stage_name":"metric_collector","events_processed":16334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3266.8,"last_update":"2026-03-21T15:51:04.068304582Z"} +2026/03/21 15:51:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6536,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:51:04.077671292Z"} +2026/03/21 15:51:09 ───────────────────────────────────────────────── +2026/03/21 15:51:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:51:14 [log_collector] {"stage_name":"log_collector","events_processed":26016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203.2,"last_update":"2026-03-21T15:51:09.068142982Z"} +2026/03/21 15:51:14 [metric_collector] {"stage_name":"metric_collector","events_processed":16339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3267.8,"last_update":"2026-03-21T15:51:09.068637449Z"} +2026/03/21 15:51:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:51:09.078035179Z"} +2026/03/21 15:51:14 [detection_layer] {"stage_name":"detection_layer","events_processed":544,"events_dropped":0,"avg_latency_ms":17.81686874878584,"throughput_eps":0,"last_update":"2026-03-21T15:51:09.21044384Z"} +2026/03/21 15:51:14 [transform_engine] {"stage_name":"transform_engine","events_processed":544,"events_dropped":0,"avg_latency_ms":166.57546341266618,"throughput_eps":0,"last_update":"2026-03-21T15:51:09.210458878Z"} +2026/03/21 15:51:14 ───────────────────────────────────────────────── +2026/03/21 15:51:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:51:19 [log_collector] {"stage_name":"log_collector","events_processed":26016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203.2,"last_update":"2026-03-21T15:51:14.06873624Z"} +2026/03/21 15:51:19 [metric_collector] {"stage_name":"metric_collector","events_processed":16344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3268.8,"last_update":"2026-03-21T15:51:14.068998532Z"} +2026/03/21 15:51:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6540,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:51:14.078409256Z"} +2026/03/21 15:51:19 [detection_layer] {"stage_name":"detection_layer","events_processed":544,"events_dropped":0,"avg_latency_ms":17.81686874878584,"throughput_eps":0,"last_update":"2026-03-21T15:51:14.210858996Z"} +2026/03/21 15:51:19 [transform_engine] {"stage_name":"transform_engine","events_processed":544,"events_dropped":0,"avg_latency_ms":166.57546341266618,"throughput_eps":0,"last_update":"2026-03-21T15:51:14.209652224Z"} +2026/03/21 15:51:19 ───────────────────────────────────────────────── +2026/03/21 15:51:19 [ANOMALY] time=2026-03-21T15:51:19Z score=0.8496 method=SEAD details=MAD!:w=0.29,s=0.92 RRCF-fast!:w=0.16,s=0.92 RRCF-mid!:w=0.15,s=0.91 RRCF-slow!:w=0.17,s=0.98 COPOD!:w=0.23,s=0.57 +2026/03/21 15:51:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:51:24 [metric_collector] {"stage_name":"metric_collector","events_processed":16349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3269.8,"last_update":"2026-03-21T15:51:19.069464992Z"} +2026/03/21 15:51:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6542,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:51:19.077538355Z"} +2026/03/21 15:51:24 [detection_layer] {"stage_name":"detection_layer","events_processed":544,"events_dropped":0,"avg_latency_ms":17.81686874878584,"throughput_eps":0,"last_update":"2026-03-21T15:51:19.210823094Z"} +2026/03/21 15:51:24 [transform_engine] {"stage_name":"transform_engine","events_processed":545,"events_dropped":0,"avg_latency_ms":148.06109633013295,"throughput_eps":0,"last_update":"2026-03-21T15:51:19.283688473Z"} +2026/03/21 15:51:24 [log_collector] {"stage_name":"log_collector","events_processed":26016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203.2,"last_update":"2026-03-21T15:51:19.068833302Z"} +2026/03/21 15:51:24 ───────────────────────────────────────────────── +2026/03/21 15:51:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:51:29 [log_collector] {"stage_name":"log_collector","events_processed":26016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203.2,"last_update":"2026-03-21T15:51:24.068064452Z"} +2026/03/21 15:51:29 [metric_collector] {"stage_name":"metric_collector","events_processed":16354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3270.8,"last_update":"2026-03-21T15:51:24.068548489Z"} +2026/03/21 15:51:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:51:24.076768693Z"} +2026/03/21 15:51:29 [detection_layer] {"stage_name":"detection_layer","events_processed":545,"events_dropped":0,"avg_latency_ms":17.591886999028674,"throughput_eps":0,"last_update":"2026-03-21T15:51:24.209927822Z"} +2026/03/21 15:51:29 [transform_engine] {"stage_name":"transform_engine","events_processed":545,"events_dropped":0,"avg_latency_ms":148.06109633013295,"throughput_eps":0,"last_update":"2026-03-21T15:51:24.209955224Z"} +2026/03/21 15:51:29 ───────────────────────────────────────────────── +2026/03/21 15:51:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:51:34 [log_collector] {"stage_name":"log_collector","events_processed":26017,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203.4,"last_update":"2026-03-21T15:51:29.068965161Z"} +2026/03/21 15:51:34 [metric_collector] {"stage_name":"metric_collector","events_processed":16359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3271.8,"last_update":"2026-03-21T15:51:29.069025617Z"} +2026/03/21 15:51:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:51:29.078422414Z"} +2026/03/21 15:51:34 [detection_layer] {"stage_name":"detection_layer","events_processed":545,"events_dropped":0,"avg_latency_ms":17.591886999028674,"throughput_eps":0,"last_update":"2026-03-21T15:51:29.210644178Z"} +2026/03/21 15:51:34 [transform_engine] {"stage_name":"transform_engine","events_processed":545,"events_dropped":0,"avg_latency_ms":148.06109633013295,"throughput_eps":0,"last_update":"2026-03-21T15:51:29.210670829Z"} +2026/03/21 15:51:34 ───────────────────────────────────────────────── +2026/03/21 15:51:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:51:39 [log_collector] {"stage_name":"log_collector","events_processed":26017,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203.4,"last_update":"2026-03-21T15:51:39.068104598Z"} +2026/03/21 15:51:39 [metric_collector] {"stage_name":"metric_collector","events_processed":16364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3272.8,"last_update":"2026-03-21T15:51:34.069164842Z"} +2026/03/21 15:51:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:51:34.075676725Z"} +2026/03/21 15:51:39 [detection_layer] {"stage_name":"detection_layer","events_processed":545,"events_dropped":0,"avg_latency_ms":17.591886999028674,"throughput_eps":0,"last_update":"2026-03-21T15:51:34.210018098Z"} +2026/03/21 15:51:39 [transform_engine] {"stage_name":"transform_engine","events_processed":545,"events_dropped":0,"avg_latency_ms":148.06109633013295,"throughput_eps":0,"last_update":"2026-03-21T15:51:34.210043266Z"} +2026/03/21 15:51:39 ───────────────────────────────────────────────── +2026/03/21 15:51:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:51:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:51:39.074518241Z"} +2026/03/21 15:51:44 [detection_layer] {"stage_name":"detection_layer","events_processed":545,"events_dropped":0,"avg_latency_ms":17.591886999028674,"throughput_eps":0,"last_update":"2026-03-21T15:51:39.210383013Z"} +2026/03/21 15:51:44 [transform_engine] {"stage_name":"transform_engine","events_processed":545,"events_dropped":0,"avg_latency_ms":148.06109633013295,"throughput_eps":0,"last_update":"2026-03-21T15:51:39.209675989Z"} +2026/03/21 15:51:44 [log_collector] {"stage_name":"log_collector","events_processed":26017,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203.4,"last_update":"2026-03-21T15:51:39.068104598Z"} +2026/03/21 15:51:44 [metric_collector] {"stage_name":"metric_collector","events_processed":16369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3273.8,"last_update":"2026-03-21T15:51:39.06842982Z"} +2026/03/21 15:51:44 ───────────────────────────────────────────────── +2026/03/21 15:51:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:51:49 [log_collector] {"stage_name":"log_collector","events_processed":26017,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203.4,"last_update":"2026-03-21T15:51:44.068167258Z"} +2026/03/21 15:51:49 [metric_collector] {"stage_name":"metric_collector","events_processed":16374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3274.8,"last_update":"2026-03-21T15:51:44.068658117Z"} +2026/03/21 15:51:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:51:44.078112125Z"} +2026/03/21 15:51:49 [detection_layer] {"stage_name":"detection_layer","events_processed":545,"events_dropped":0,"avg_latency_ms":17.591886999028674,"throughput_eps":0,"last_update":"2026-03-21T15:51:44.21036564Z"} +2026/03/21 15:51:49 [transform_engine] {"stage_name":"transform_engine","events_processed":545,"events_dropped":0,"avg_latency_ms":148.06109633013295,"throughput_eps":0,"last_update":"2026-03-21T15:51:44.210341063Z"} +2026/03/21 15:51:49 ───────────────────────────────────────────────── +2026/03/21 15:51:50 [ANOMALY] time=2026-03-21T15:51:50Z score=0.8690 method=SEAD details=MAD!:w=0.29,s=0.93 RRCF-fast!:w=0.16,s=0.96 RRCF-mid!:w=0.15,s=0.99 RRCF-slow!:w=0.17,s=1.00 COPOD!:w=0.23,s=0.56 +2026/03/21 15:51:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:51:54 [transform_engine] {"stage_name":"transform_engine","events_processed":546,"events_dropped":0,"avg_latency_ms":471.85767646410636,"throughput_eps":0,"last_update":"2026-03-21T15:51:50.977498982Z"} +2026/03/21 15:51:54 [log_collector] {"stage_name":"log_collector","events_processed":26017,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203.4,"last_update":"2026-03-21T15:51:49.068650536Z"} +2026/03/21 15:51:54 [metric_collector] {"stage_name":"metric_collector","events_processed":16379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3275.8,"last_update":"2026-03-21T15:51:49.0688194Z"} +2026/03/21 15:51:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:51:49.077222244Z"} +2026/03/21 15:51:54 [detection_layer] {"stage_name":"detection_layer","events_processed":545,"events_dropped":0,"avg_latency_ms":17.591886999028674,"throughput_eps":0,"last_update":"2026-03-21T15:51:49.21047894Z"} +2026/03/21 15:51:54 ───────────────────────────────────────────────── +2026/03/21 15:51:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:51:59 [transform_engine] {"stage_name":"transform_engine","events_processed":546,"events_dropped":0,"avg_latency_ms":471.85767646410636,"throughput_eps":0,"last_update":"2026-03-21T15:51:54.210806604Z"} +2026/03/21 15:51:59 [log_collector] {"stage_name":"log_collector","events_processed":26017,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203.4,"last_update":"2026-03-21T15:51:54.068677725Z"} +2026/03/21 15:51:59 [metric_collector] {"stage_name":"metric_collector","events_processed":16384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3276.8,"last_update":"2026-03-21T15:51:54.068959164Z"} +2026/03/21 15:51:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:51:54.077470606Z"} +2026/03/21 15:51:59 [detection_layer] {"stage_name":"detection_layer","events_processed":546,"events_dropped":0,"avg_latency_ms":16.44764479922294,"throughput_eps":0,"last_update":"2026-03-21T15:51:54.210693277Z"} +2026/03/21 15:51:59 ───────────────────────────────────────────────── +2026/03/21 15:52:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:52:04 [log_collector] {"stage_name":"log_collector","events_processed":26017,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203.4,"last_update":"2026-03-21T15:51:59.068648048Z"} +2026/03/21 15:52:04 [metric_collector] {"stage_name":"metric_collector","events_processed":16389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3277.8,"last_update":"2026-03-21T15:51:59.069105294Z"} +2026/03/21 15:52:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:51:59.077899557Z"} +2026/03/21 15:52:04 [detection_layer] {"stage_name":"detection_layer","events_processed":546,"events_dropped":0,"avg_latency_ms":16.44764479922294,"throughput_eps":0,"last_update":"2026-03-21T15:51:59.210240299Z"} +2026/03/21 15:52:04 [transform_engine] {"stage_name":"transform_engine","events_processed":546,"events_dropped":0,"avg_latency_ms":471.85767646410636,"throughput_eps":0,"last_update":"2026-03-21T15:51:59.210129296Z"} +2026/03/21 15:52:04 ───────────────────────────────────────────────── +2026/03/21 15:52:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:52:09 [detection_layer] {"stage_name":"detection_layer","events_processed":546,"events_dropped":0,"avg_latency_ms":16.44764479922294,"throughput_eps":0,"last_update":"2026-03-21T15:52:04.210067023Z"} +2026/03/21 15:52:09 [transform_engine] {"stage_name":"transform_engine","events_processed":546,"events_dropped":0,"avg_latency_ms":471.85767646410636,"throughput_eps":0,"last_update":"2026-03-21T15:52:04.2101073Z"} +2026/03/21 15:52:09 [log_collector] {"stage_name":"log_collector","events_processed":26017,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203.4,"last_update":"2026-03-21T15:52:09.068287734Z"} +2026/03/21 15:52:09 [metric_collector] {"stage_name":"metric_collector","events_processed":16394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3278.8,"last_update":"2026-03-21T15:52:04.068852604Z"} +2026/03/21 15:52:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6560,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:52:04.077857752Z"} +2026/03/21 15:52:09 ───────────────────────────────────────────────── +2026/03/21 15:52:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:52:14 [detection_layer] {"stage_name":"detection_layer","events_processed":546,"events_dropped":0,"avg_latency_ms":16.44764479922294,"throughput_eps":0,"last_update":"2026-03-21T15:52:09.210178427Z"} +2026/03/21 15:52:14 [transform_engine] {"stage_name":"transform_engine","events_processed":546,"events_dropped":0,"avg_latency_ms":471.85767646410636,"throughput_eps":0,"last_update":"2026-03-21T15:52:09.210200219Z"} +2026/03/21 15:52:14 [log_collector] {"stage_name":"log_collector","events_processed":26017,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203.4,"last_update":"2026-03-21T15:52:09.068287734Z"} +2026/03/21 15:52:14 [metric_collector] {"stage_name":"metric_collector","events_processed":16399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3279.8,"last_update":"2026-03-21T15:52:09.068770408Z"} +2026/03/21 15:52:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:52:09.077950621Z"} +2026/03/21 15:52:14 ───────────────────────────────────────────────── +2026/03/21 15:52:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:52:19 [transform_engine] {"stage_name":"transform_engine","events_processed":546,"events_dropped":0,"avg_latency_ms":471.85767646410636,"throughput_eps":0,"last_update":"2026-03-21T15:52:14.210671794Z"} +2026/03/21 15:52:19 [log_collector] {"stage_name":"log_collector","events_processed":26017,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203.4,"last_update":"2026-03-21T15:52:14.068730543Z"} +2026/03/21 15:52:19 [metric_collector] {"stage_name":"metric_collector","events_processed":16404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3280.8,"last_update":"2026-03-21T15:52:14.069013185Z"} +2026/03/21 15:52:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:52:14.077454963Z"} +2026/03/21 15:52:19 [detection_layer] {"stage_name":"detection_layer","events_processed":546,"events_dropped":0,"avg_latency_ms":16.44764479922294,"throughput_eps":0,"last_update":"2026-03-21T15:52:14.210635494Z"} +2026/03/21 15:52:19 ───────────────────────────────────────────────── +2026/03/21 15:52:19 [ANOMALY] time=2026-03-21T15:52:19Z score=0.8269 method=SEAD details=MAD!:w=0.29,s=0.90 RRCF-fast!:w=0.16,s=0.95 RRCF-mid!:w=0.15,s=0.98 RRCF-slow!:w=0.17,s=0.99 COPOD!:w=0.23,s=0.43 +2026/03/21 15:52:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:52:24 [log_collector] {"stage_name":"log_collector","events_processed":26017,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203.4,"last_update":"2026-03-21T15:52:19.068922199Z"} +2026/03/21 15:52:24 [metric_collector] {"stage_name":"metric_collector","events_processed":16409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3281.8,"last_update":"2026-03-21T15:52:19.069201965Z"} +2026/03/21 15:52:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6566,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:52:19.078010315Z"} +2026/03/21 15:52:24 [detection_layer] {"stage_name":"detection_layer","events_processed":546,"events_dropped":0,"avg_latency_ms":16.44764479922294,"throughput_eps":0,"last_update":"2026-03-21T15:52:19.210137168Z"} +2026/03/21 15:52:24 [transform_engine] {"stage_name":"transform_engine","events_processed":547,"events_dropped":0,"avg_latency_ms":391.9616201712851,"throughput_eps":0,"last_update":"2026-03-21T15:52:19.282561312Z"} +2026/03/21 15:52:24 ───────────────────────────────────────────────── +2026/03/21 15:52:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:52:29 [log_collector] {"stage_name":"log_collector","events_processed":26017,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203.4,"last_update":"2026-03-21T15:52:24.06824314Z"} +2026/03/21 15:52:29 [metric_collector] {"stage_name":"metric_collector","events_processed":16413,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3282.6,"last_update":"2026-03-21T15:52:24.068183256Z"} +2026/03/21 15:52:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:52:24.077093231Z"} +2026/03/21 15:52:29 [detection_layer] {"stage_name":"detection_layer","events_processed":547,"events_dropped":0,"avg_latency_ms":15.995069639378352,"throughput_eps":0,"last_update":"2026-03-21T15:52:24.210324299Z"} +2026/03/21 15:52:29 [transform_engine] {"stage_name":"transform_engine","events_processed":547,"events_dropped":0,"avg_latency_ms":391.9616201712851,"throughput_eps":0,"last_update":"2026-03-21T15:52:24.210376258Z"} +2026/03/21 15:52:29 ───────────────────────────────────────────────── +2026/03/21 15:52:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:52:34 [log_collector] {"stage_name":"log_collector","events_processed":26017,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203.4,"last_update":"2026-03-21T15:52:29.068429237Z"} +2026/03/21 15:52:34 [metric_collector] {"stage_name":"metric_collector","events_processed":16419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3283.8,"last_update":"2026-03-21T15:52:29.068303186Z"} +2026/03/21 15:52:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6570,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:52:29.077542481Z"} +2026/03/21 15:52:34 [detection_layer] {"stage_name":"detection_layer","events_processed":547,"events_dropped":0,"avg_latency_ms":15.995069639378352,"throughput_eps":0,"last_update":"2026-03-21T15:52:29.210768199Z"} +2026/03/21 15:52:34 [transform_engine] {"stage_name":"transform_engine","events_processed":547,"events_dropped":0,"avg_latency_ms":391.9616201712851,"throughput_eps":0,"last_update":"2026-03-21T15:52:29.209685285Z"} +2026/03/21 15:52:34 ───────────────────────────────────────────────── +Saved state: 18 clusters, 26018 messages, reason: none +2026/03/21 15:52:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:52:39 [transform_engine] {"stage_name":"transform_engine","events_processed":547,"events_dropped":0,"avg_latency_ms":391.9616201712851,"throughput_eps":0,"last_update":"2026-03-21T15:52:34.210295662Z"} +2026/03/21 15:52:39 [log_collector] {"stage_name":"log_collector","events_processed":26017,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203.4,"last_update":"2026-03-21T15:52:34.068180158Z"} +2026/03/21 15:52:39 [metric_collector] {"stage_name":"metric_collector","events_processed":16424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3284.8,"last_update":"2026-03-21T15:52:34.068424645Z"} +2026/03/21 15:52:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6572,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:52:34.076048457Z"} +2026/03/21 15:52:39 [detection_layer] {"stage_name":"detection_layer","events_processed":547,"events_dropped":0,"avg_latency_ms":15.995069639378352,"throughput_eps":0,"last_update":"2026-03-21T15:52:34.210285423Z"} +2026/03/21 15:52:39 ───────────────────────────────────────────────── +2026/03/21 15:52:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:52:44 [log_collector] {"stage_name":"log_collector","events_processed":26020,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5204,"last_update":"2026-03-21T15:52:39.068499552Z"} +2026/03/21 15:52:44 [metric_collector] {"stage_name":"metric_collector","events_processed":16429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3285.8,"last_update":"2026-03-21T15:52:39.068698623Z"} +2026/03/21 15:52:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:52:39.075688581Z"} +2026/03/21 15:52:44 [detection_layer] {"stage_name":"detection_layer","events_processed":547,"events_dropped":0,"avg_latency_ms":15.995069639378352,"throughput_eps":0,"last_update":"2026-03-21T15:52:39.210393682Z"} +2026/03/21 15:52:44 [transform_engine] {"stage_name":"transform_engine","events_processed":547,"events_dropped":0,"avg_latency_ms":391.9616201712851,"throughput_eps":0,"last_update":"2026-03-21T15:52:39.210408551Z"} +2026/03/21 15:52:44 ───────────────────────────────────────────────── +2026/03/21 15:52:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:52:49 [log_collector] {"stage_name":"log_collector","events_processed":26026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5205.2,"last_update":"2026-03-21T15:52:44.068920494Z"} +2026/03/21 15:52:49 [metric_collector] {"stage_name":"metric_collector","events_processed":16434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3286.8,"last_update":"2026-03-21T15:52:44.069548847Z"} +2026/03/21 15:52:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6576,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:52:44.07836857Z"} +2026/03/21 15:52:49 [detection_layer] {"stage_name":"detection_layer","events_processed":547,"events_dropped":0,"avg_latency_ms":15.995069639378352,"throughput_eps":0,"last_update":"2026-03-21T15:52:44.210637806Z"} +2026/03/21 15:52:49 [transform_engine] {"stage_name":"transform_engine","events_processed":547,"events_dropped":0,"avg_latency_ms":391.9616201712851,"throughput_eps":0,"last_update":"2026-03-21T15:52:44.210649217Z"} +2026/03/21 15:52:49 ───────────────────────────────────────────────── +2026/03/21 15:52:50 [ANOMALY] time=2026-03-21T15:52:50Z score=0.9294 method=SEAD details=MAD!:w=0.29,s=1.00 RRCF-fast!:w=0.16,s=0.98 RRCF-mid!:w=0.15,s=1.00 RRCF-slow!:w=0.17,s=1.00 COPOD!:w=0.23,s=0.71 +2026/03/21 15:52:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:52:54 [metric_collector] {"stage_name":"metric_collector","events_processed":16439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3287.8,"last_update":"2026-03-21T15:52:49.068679301Z"} +2026/03/21 15:52:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:52:49.079179933Z"} +2026/03/21 15:52:54 [detection_layer] {"stage_name":"detection_layer","events_processed":547,"events_dropped":0,"avg_latency_ms":15.995069639378352,"throughput_eps":0,"last_update":"2026-03-21T15:52:49.210602948Z"} +2026/03/21 15:52:54 [transform_engine] {"stage_name":"transform_engine","events_processed":548,"events_dropped":0,"avg_latency_ms":568.9529623370281,"throughput_eps":0,"last_update":"2026-03-21T15:52:50.487538834Z"} +2026/03/21 15:52:54 [log_collector] {"stage_name":"log_collector","events_processed":26026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5205.2,"last_update":"2026-03-21T15:52:49.068122034Z"} +2026/03/21 15:52:54 ───────────────────────────────────────────────── +2026/03/21 15:52:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:52:59 [transform_engine] {"stage_name":"transform_engine","events_processed":548,"events_dropped":0,"avg_latency_ms":568.9529623370281,"throughput_eps":0,"last_update":"2026-03-21T15:52:54.210061724Z"} +2026/03/21 15:52:59 [log_collector] {"stage_name":"log_collector","events_processed":26026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5205.2,"last_update":"2026-03-21T15:52:54.06886623Z"} +2026/03/21 15:52:59 [metric_collector] {"stage_name":"metric_collector","events_processed":16444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3288.8,"last_update":"2026-03-21T15:52:54.069137691Z"} +2026/03/21 15:52:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6580,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:52:54.078669206Z"} +2026/03/21 15:52:59 [detection_layer] {"stage_name":"detection_layer","events_processed":548,"events_dropped":0,"avg_latency_ms":15.126725711502681,"throughput_eps":0,"last_update":"2026-03-21T15:52:54.210047657Z"} +2026/03/21 15:52:59 ───────────────────────────────────────────────── +2026/03/21 15:53:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:53:04 [log_collector] {"stage_name":"log_collector","events_processed":26026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5205.2,"last_update":"2026-03-21T15:52:59.068942141Z"} +2026/03/21 15:53:04 [metric_collector] {"stage_name":"metric_collector","events_processed":16449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3289.8,"last_update":"2026-03-21T15:52:59.069260551Z"} +2026/03/21 15:53:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:52:59.079287285Z"} +2026/03/21 15:53:04 [detection_layer] {"stage_name":"detection_layer","events_processed":548,"events_dropped":0,"avg_latency_ms":15.126725711502681,"throughput_eps":0,"last_update":"2026-03-21T15:52:59.210688419Z"} +2026/03/21 15:53:04 [transform_engine] {"stage_name":"transform_engine","events_processed":548,"events_dropped":0,"avg_latency_ms":568.9529623370281,"throughput_eps":0,"last_update":"2026-03-21T15:52:59.210701734Z"} +2026/03/21 15:53:04 ───────────────────────────────────────────────── +2026/03/21 15:53:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:53:09 [log_collector] {"stage_name":"log_collector","events_processed":26026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5205.2,"last_update":"2026-03-21T15:53:04.068814226Z"} +2026/03/21 15:53:09 [metric_collector] {"stage_name":"metric_collector","events_processed":16454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3290.8,"last_update":"2026-03-21T15:53:04.069323682Z"} +2026/03/21 15:53:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:53:04.078284685Z"} +2026/03/21 15:53:09 [detection_layer] {"stage_name":"detection_layer","events_processed":548,"events_dropped":0,"avg_latency_ms":15.126725711502681,"throughput_eps":0,"last_update":"2026-03-21T15:53:04.21069391Z"} +2026/03/21 15:53:09 [transform_engine] {"stage_name":"transform_engine","events_processed":548,"events_dropped":0,"avg_latency_ms":568.9529623370281,"throughput_eps":0,"last_update":"2026-03-21T15:53:04.210711012Z"} +2026/03/21 15:53:09 ───────────────────────────────────────────────── +2026/03/21 15:53:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:53:14 [detection_layer] {"stage_name":"detection_layer","events_processed":548,"events_dropped":0,"avg_latency_ms":15.126725711502681,"throughput_eps":0,"last_update":"2026-03-21T15:53:09.210716645Z"} +2026/03/21 15:53:14 [transform_engine] {"stage_name":"transform_engine","events_processed":548,"events_dropped":0,"avg_latency_ms":568.9529623370281,"throughput_eps":0,"last_update":"2026-03-21T15:53:09.21072375Z"} +2026/03/21 15:53:14 [log_collector] {"stage_name":"log_collector","events_processed":26026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5205.2,"last_update":"2026-03-21T15:53:09.068656105Z"} +2026/03/21 15:53:14 [metric_collector] {"stage_name":"metric_collector","events_processed":16459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3291.8,"last_update":"2026-03-21T15:53:09.068904702Z"} +2026/03/21 15:53:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6586,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:53:09.077382229Z"} +2026/03/21 15:53:14 ───────────────────────────────────────────────── +2026/03/21 15:53:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:53:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6588,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:53:14.075356996Z"} +2026/03/21 15:53:19 [detection_layer] {"stage_name":"detection_layer","events_processed":548,"events_dropped":0,"avg_latency_ms":15.126725711502681,"throughput_eps":0,"last_update":"2026-03-21T15:53:14.210149837Z"} +2026/03/21 15:53:19 [transform_engine] {"stage_name":"transform_engine","events_processed":548,"events_dropped":0,"avg_latency_ms":568.9529623370281,"throughput_eps":0,"last_update":"2026-03-21T15:53:14.210126242Z"} +2026/03/21 15:53:19 [log_collector] {"stage_name":"log_collector","events_processed":26065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5213,"last_update":"2026-03-21T15:53:14.068084337Z"} +2026/03/21 15:53:19 [metric_collector] {"stage_name":"metric_collector","events_processed":16464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3292.8,"last_update":"2026-03-21T15:53:14.068600686Z"} +2026/03/21 15:53:19 ───────────────────────────────────────────────── +2026/03/21 15:53:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:53:24 [transform_engine] {"stage_name":"transform_engine","events_processed":549,"events_dropped":0,"avg_latency_ms":904.2910534696225,"throughput_eps":0,"last_update":"2026-03-21T15:53:21.456281139Z"} +2026/03/21 15:53:24 [log_collector] {"stage_name":"log_collector","events_processed":26375,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5275,"last_update":"2026-03-21T15:53:19.068657154Z"} +2026/03/21 15:53:24 [metric_collector] {"stage_name":"metric_collector","events_processed":16469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3293.8,"last_update":"2026-03-21T15:53:19.068870693Z"} +2026/03/21 15:53:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:53:19.076020327Z"} +2026/03/21 15:53:24 [detection_layer] {"stage_name":"detection_layer","events_processed":548,"events_dropped":0,"avg_latency_ms":15.126725711502681,"throughput_eps":0,"last_update":"2026-03-21T15:53:19.210414964Z"} +2026/03/21 15:53:24 ───────────────────────────────────────────────── +2026/03/21 15:53:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:53:29 [log_collector] {"stage_name":"log_collector","events_processed":26379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5275.8,"last_update":"2026-03-21T15:53:24.068076284Z"} +2026/03/21 15:53:29 [metric_collector] {"stage_name":"metric_collector","events_processed":16474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3294.8,"last_update":"2026-03-21T15:53:24.06883135Z"} +2026/03/21 15:53:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6592,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:53:24.077654038Z"} +2026/03/21 15:53:29 [detection_layer] {"stage_name":"detection_layer","events_processed":549,"events_dropped":0,"avg_latency_ms":15.141874169202145,"throughput_eps":0,"last_update":"2026-03-21T15:53:24.209958594Z"} +2026/03/21 15:53:29 [transform_engine] {"stage_name":"transform_engine","events_processed":549,"events_dropped":0,"avg_latency_ms":904.2910534696225,"throughput_eps":0,"last_update":"2026-03-21T15:53:24.209928476Z"} +2026/03/21 15:53:29 ───────────────────────────────────────────────── +2026/03/21 15:53:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:53:34 [detection_layer] {"stage_name":"detection_layer","events_processed":549,"events_dropped":0,"avg_latency_ms":15.141874169202145,"throughput_eps":0,"last_update":"2026-03-21T15:53:29.210321265Z"} +2026/03/21 15:53:34 [transform_engine] {"stage_name":"transform_engine","events_processed":549,"events_dropped":0,"avg_latency_ms":904.2910534696225,"throughput_eps":0,"last_update":"2026-03-21T15:53:29.210336965Z"} +2026/03/21 15:53:34 [log_collector] {"stage_name":"log_collector","events_processed":26382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5276.4,"last_update":"2026-03-21T15:53:29.068616205Z"} +2026/03/21 15:53:34 [metric_collector] {"stage_name":"metric_collector","events_processed":16479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3295.8,"last_update":"2026-03-21T15:53:29.068868178Z"} +2026/03/21 15:53:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:53:29.081103853Z"} +2026/03/21 15:53:34 ───────────────────────────────────────────────── +2026/03/21 15:53:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:53:39 [transform_engine] {"stage_name":"transform_engine","events_processed":549,"events_dropped":0,"avg_latency_ms":904.2910534696225,"throughput_eps":0,"last_update":"2026-03-21T15:53:34.210056808Z"} +2026/03/21 15:53:39 [log_collector] {"stage_name":"log_collector","events_processed":26382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5276.4,"last_update":"2026-03-21T15:53:34.068496837Z"} +2026/03/21 15:53:39 [metric_collector] {"stage_name":"metric_collector","events_processed":16484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3296.8,"last_update":"2026-03-21T15:53:34.068719434Z"} +2026/03/21 15:53:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:53:34.074766285Z"} +2026/03/21 15:53:39 [detection_layer] {"stage_name":"detection_layer","events_processed":549,"events_dropped":0,"avg_latency_ms":15.141874169202145,"throughput_eps":0,"last_update":"2026-03-21T15:53:34.210094551Z"} +2026/03/21 15:53:39 ───────────────────────────────────────────────── +Saved state: 18 clusters, 26393 messages, reason: none +2026/03/21 15:53:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:53:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:53:39.077163259Z"} +2026/03/21 15:53:44 [detection_layer] {"stage_name":"detection_layer","events_processed":549,"events_dropped":0,"avg_latency_ms":15.141874169202145,"throughput_eps":0,"last_update":"2026-03-21T15:53:39.210434475Z"} +2026/03/21 15:53:44 [transform_engine] {"stage_name":"transform_engine","events_processed":549,"events_dropped":0,"avg_latency_ms":904.2910534696225,"throughput_eps":0,"last_update":"2026-03-21T15:53:39.210406923Z"} +2026/03/21 15:53:44 [log_collector] {"stage_name":"log_collector","events_processed":26392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5278.4,"last_update":"2026-03-21T15:53:39.068941482Z"} +2026/03/21 15:53:44 [metric_collector] {"stage_name":"metric_collector","events_processed":16489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3297.8,"last_update":"2026-03-21T15:53:39.06913883Z"} +2026/03/21 15:53:44 ───────────────────────────────────────────────── +2026/03/21 15:53:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:53:49 [transform_engine] {"stage_name":"transform_engine","events_processed":549,"events_dropped":0,"avg_latency_ms":904.2910534696225,"throughput_eps":0,"last_update":"2026-03-21T15:53:44.20971737Z"} +2026/03/21 15:53:49 [log_collector] {"stage_name":"log_collector","events_processed":26393,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5278.6,"last_update":"2026-03-21T15:53:44.068812653Z"} +2026/03/21 15:53:49 [metric_collector] {"stage_name":"metric_collector","events_processed":16494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3298.8,"last_update":"2026-03-21T15:53:44.069390409Z"} +2026/03/21 15:53:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:53:44.077631324Z"} +2026/03/21 15:53:49 [detection_layer] {"stage_name":"detection_layer","events_processed":549,"events_dropped":0,"avg_latency_ms":15.141874169202145,"throughput_eps":0,"last_update":"2026-03-21T15:53:44.210909703Z"} +2026/03/21 15:53:49 ───────────────────────────────────────────────── +2026/03/21 15:53:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:53:54 [log_collector] {"stage_name":"log_collector","events_processed":26393,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5278.6,"last_update":"2026-03-21T15:53:49.068844425Z"} +2026/03/21 15:53:54 [metric_collector] {"stage_name":"metric_collector","events_processed":16499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3299.8,"last_update":"2026-03-21T15:53:49.069345184Z"} +2026/03/21 15:53:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6602,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:53:49.078219551Z"} +2026/03/21 15:53:54 [detection_layer] {"stage_name":"detection_layer","events_processed":549,"events_dropped":0,"avg_latency_ms":15.141874169202145,"throughput_eps":0,"last_update":"2026-03-21T15:53:49.210601665Z"} +2026/03/21 15:53:54 [transform_engine] {"stage_name":"transform_engine","events_processed":550,"events_dropped":0,"avg_latency_ms":1072.8500491756981,"throughput_eps":0,"last_update":"2026-03-21T15:53:50.957809701Z"} +2026/03/21 15:53:54 ───────────────────────────────────────────────── +2026/03/21 15:53:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:53:59 [transform_engine] {"stage_name":"transform_engine","events_processed":550,"events_dropped":0,"avg_latency_ms":1072.8500491756981,"throughput_eps":0,"last_update":"2026-03-21T15:53:54.209835872Z"} +2026/03/21 15:53:59 [log_collector] {"stage_name":"log_collector","events_processed":26393,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5278.6,"last_update":"2026-03-21T15:53:54.068867081Z"} +2026/03/21 15:53:59 [metric_collector] {"stage_name":"metric_collector","events_processed":16504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3300.8,"last_update":"2026-03-21T15:53:54.06911711Z"} +2026/03/21 15:53:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:53:54.077644633Z"} +2026/03/21 15:53:59 [detection_layer] {"stage_name":"detection_layer","events_processed":550,"events_dropped":0,"avg_latency_ms":15.320062735361716,"throughput_eps":0,"last_update":"2026-03-21T15:53:54.209880738Z"} +2026/03/21 15:53:59 ───────────────────────────────────────────────── +2026/03/21 15:54:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:54:04 [log_collector] {"stage_name":"log_collector","events_processed":26393,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5278.6,"last_update":"2026-03-21T15:53:59.068109197Z"} +2026/03/21 15:54:04 [metric_collector] {"stage_name":"metric_collector","events_processed":16509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3301.8,"last_update":"2026-03-21T15:53:59.068834988Z"} +2026/03/21 15:54:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:53:59.077402527Z"} +2026/03/21 15:54:04 [detection_layer] {"stage_name":"detection_layer","events_processed":550,"events_dropped":0,"avg_latency_ms":15.320062735361716,"throughput_eps":0,"last_update":"2026-03-21T15:53:59.210839541Z"} +2026/03/21 15:54:04 [transform_engine] {"stage_name":"transform_engine","events_processed":550,"events_dropped":0,"avg_latency_ms":1072.8500491756981,"throughput_eps":0,"last_update":"2026-03-21T15:53:59.209668989Z"} +2026/03/21 15:54:04 ───────────────────────────────────────────────── +2026/03/21 15:54:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:54:09 [log_collector] {"stage_name":"log_collector","events_processed":26393,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5278.6,"last_update":"2026-03-21T15:54:04.06879445Z"} +2026/03/21 15:54:09 [metric_collector] {"stage_name":"metric_collector","events_processed":16514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3302.8,"last_update":"2026-03-21T15:54:04.069176081Z"} +2026/03/21 15:54:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:54:04.0785628Z"} +2026/03/21 15:54:09 [detection_layer] {"stage_name":"detection_layer","events_processed":550,"events_dropped":0,"avg_latency_ms":15.320062735361716,"throughput_eps":0,"last_update":"2026-03-21T15:54:04.210965243Z"} +2026/03/21 15:54:09 [transform_engine] {"stage_name":"transform_engine","events_processed":550,"events_dropped":0,"avg_latency_ms":1072.8500491756981,"throughput_eps":0,"last_update":"2026-03-21T15:54:04.20978926Z"} +2026/03/21 15:54:09 ───────────────────────────────────────────────── +2026/03/21 15:54:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:54:14 [transform_engine] {"stage_name":"transform_engine","events_processed":550,"events_dropped":0,"avg_latency_ms":1072.8500491756981,"throughput_eps":0,"last_update":"2026-03-21T15:54:09.210679578Z"} +2026/03/21 15:54:14 [log_collector] {"stage_name":"log_collector","events_processed":26393,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5278.6,"last_update":"2026-03-21T15:54:09.068059015Z"} +2026/03/21 15:54:14 [metric_collector] {"stage_name":"metric_collector","events_processed":16519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3303.8,"last_update":"2026-03-21T15:54:09.068413193Z"} +2026/03/21 15:54:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:54:09.077236703Z"} +2026/03/21 15:54:14 [detection_layer] {"stage_name":"detection_layer","events_processed":550,"events_dropped":0,"avg_latency_ms":15.320062735361716,"throughput_eps":0,"last_update":"2026-03-21T15:54:09.210572483Z"} +2026/03/21 15:54:14 ───────────────────────────────────────────────── +2026/03/21 15:54:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:54:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:54:14.075324165Z"} +2026/03/21 15:54:19 [detection_layer] {"stage_name":"detection_layer","events_processed":550,"events_dropped":0,"avg_latency_ms":15.320062735361716,"throughput_eps":0,"last_update":"2026-03-21T15:54:14.210591014Z"} +2026/03/21 15:54:19 [transform_engine] {"stage_name":"transform_engine","events_processed":550,"events_dropped":0,"avg_latency_ms":1072.8500491756981,"throughput_eps":0,"last_update":"2026-03-21T15:54:14.210561297Z"} +2026/03/21 15:54:19 [log_collector] {"stage_name":"log_collector","events_processed":26407,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.4,"last_update":"2026-03-21T15:54:14.068680651Z"} +2026/03/21 15:54:19 [metric_collector] {"stage_name":"metric_collector","events_processed":16524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3304.8,"last_update":"2026-03-21T15:54:14.069132226Z"} +2026/03/21 15:54:19 ───────────────────────────────────────────────── +2026/03/21 15:54:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:54:24 [log_collector] {"stage_name":"log_collector","events_processed":26409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.8,"last_update":"2026-03-21T15:54:19.068813436Z"} +2026/03/21 15:54:24 [metric_collector] {"stage_name":"metric_collector","events_processed":16529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3305.8,"last_update":"2026-03-21T15:54:19.068974093Z"} +2026/03/21 15:54:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:54:19.079129063Z"} +2026/03/21 15:54:24 [detection_layer] {"stage_name":"detection_layer","events_processed":550,"events_dropped":0,"avg_latency_ms":15.320062735361716,"throughput_eps":0,"last_update":"2026-03-21T15:54:19.210544085Z"} +2026/03/21 15:54:24 [transform_engine] {"stage_name":"transform_engine","events_processed":551,"events_dropped":0,"avg_latency_ms":897.1513063405586,"throughput_eps":0,"last_update":"2026-03-21T15:54:19.404855864Z"} +2026/03/21 15:54:24 ───────────────────────────────────────────────── +2026/03/21 15:54:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:54:29 [log_collector] {"stage_name":"log_collector","events_processed":26409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.8,"last_update":"2026-03-21T15:54:24.06859445Z"} +2026/03/21 15:54:29 [metric_collector] {"stage_name":"metric_collector","events_processed":16534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3306.8,"last_update":"2026-03-21T15:54:24.068958236Z"} +2026/03/21 15:54:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:54:24.078204125Z"} +2026/03/21 15:54:29 [detection_layer] {"stage_name":"detection_layer","events_processed":551,"events_dropped":0,"avg_latency_ms":15.629898188289374,"throughput_eps":0,"last_update":"2026-03-21T15:54:24.210695298Z"} +2026/03/21 15:54:29 [transform_engine] {"stage_name":"transform_engine","events_processed":551,"events_dropped":0,"avg_latency_ms":897.1513063405586,"throughput_eps":0,"last_update":"2026-03-21T15:54:24.210570769Z"} +2026/03/21 15:54:29 ───────────────────────────────────────────────── +2026/03/21 15:54:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:54:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:54:29.079181733Z"} +2026/03/21 15:54:34 [detection_layer] {"stage_name":"detection_layer","events_processed":551,"events_dropped":0,"avg_latency_ms":15.629898188289374,"throughput_eps":0,"last_update":"2026-03-21T15:54:29.210701606Z"} +2026/03/21 15:54:34 [transform_engine] {"stage_name":"transform_engine","events_processed":551,"events_dropped":0,"avg_latency_ms":897.1513063405586,"throughput_eps":0,"last_update":"2026-03-21T15:54:29.210560957Z"} +2026/03/21 15:54:34 [log_collector] {"stage_name":"log_collector","events_processed":26409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.8,"last_update":"2026-03-21T15:54:29.068974433Z"} +2026/03/21 15:54:34 [metric_collector] {"stage_name":"metric_collector","events_processed":16539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3307.8,"last_update":"2026-03-21T15:54:29.069311127Z"} +2026/03/21 15:54:34 ───────────────────────────────────────────────── +2026/03/21 15:54:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:54:39 [log_collector] {"stage_name":"log_collector","events_processed":26409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.8,"last_update":"2026-03-21T15:54:34.068118102Z"} +2026/03/21 15:54:39 [metric_collector] {"stage_name":"metric_collector","events_processed":16544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3308.8,"last_update":"2026-03-21T15:54:34.068742368Z"} +2026/03/21 15:54:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6620,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:54:34.077792011Z"} +2026/03/21 15:54:39 [detection_layer] {"stage_name":"detection_layer","events_processed":551,"events_dropped":0,"avg_latency_ms":15.629898188289374,"throughput_eps":0,"last_update":"2026-03-21T15:54:34.210189384Z"} +2026/03/21 15:54:39 [transform_engine] {"stage_name":"transform_engine","events_processed":551,"events_dropped":0,"avg_latency_ms":897.1513063405586,"throughput_eps":0,"last_update":"2026-03-21T15:54:34.210301519Z"} +2026/03/21 15:54:39 ───────────────────────────────────────────────── +2026/03/21 15:54:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:54:44 [log_collector] {"stage_name":"log_collector","events_processed":26409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.8,"last_update":"2026-03-21T15:54:39.068700819Z"} +2026/03/21 15:54:44 [metric_collector] {"stage_name":"metric_collector","events_processed":16548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3309.6,"last_update":"2026-03-21T15:54:39.068706509Z"} +2026/03/21 15:54:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6622,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:54:39.0790183Z"} +2026/03/21 15:54:44 [detection_layer] {"stage_name":"detection_layer","events_processed":551,"events_dropped":0,"avg_latency_ms":15.629898188289374,"throughput_eps":0,"last_update":"2026-03-21T15:54:39.210422452Z"} +2026/03/21 15:54:44 [transform_engine] {"stage_name":"transform_engine","events_processed":551,"events_dropped":0,"avg_latency_ms":897.1513063405586,"throughput_eps":0,"last_update":"2026-03-21T15:54:39.210386192Z"} +2026/03/21 15:54:44 ───────────────────────────────────────────────── +2026/03/21 15:54:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:54:49 [log_collector] {"stage_name":"log_collector","events_processed":26409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.8,"last_update":"2026-03-21T15:54:44.068584962Z"} +2026/03/21 15:54:49 [metric_collector] {"stage_name":"metric_collector","events_processed":16554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3310.8,"last_update":"2026-03-21T15:54:44.068825372Z"} +2026/03/21 15:54:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:54:44.076720945Z"} +2026/03/21 15:54:49 [detection_layer] {"stage_name":"detection_layer","events_processed":551,"events_dropped":0,"avg_latency_ms":15.629898188289374,"throughput_eps":0,"last_update":"2026-03-21T15:54:44.209972214Z"} +2026/03/21 15:54:49 [transform_engine] {"stage_name":"transform_engine","events_processed":551,"events_dropped":0,"avg_latency_ms":897.1513063405586,"throughput_eps":0,"last_update":"2026-03-21T15:54:44.209954019Z"} +2026/03/21 15:54:49 ───────────────────────────────────────────────── +2026/03/21 15:54:49 [ANOMALY] time=2026-03-21T15:54:49Z score=0.8491 method=SEAD details=MAD!:w=0.29,s=0.87 RRCF-fast:w=0.16,s=0.76 RRCF-mid:w=0.15,s=0.92 RRCF-slow!:w=0.17,s=0.96 COPOD!:w=0.23,s=0.76 +2026/03/21 15:54:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:54:54 [log_collector] {"stage_name":"log_collector","events_processed":26409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.8,"last_update":"2026-03-21T15:54:49.068928798Z"} +2026/03/21 15:54:54 [metric_collector] {"stage_name":"metric_collector","events_processed":16559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3311.8,"last_update":"2026-03-21T15:54:49.069207551Z"} +2026/03/21 15:54:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:54:49.079227854Z"} +2026/03/21 15:54:54 [detection_layer] {"stage_name":"detection_layer","events_processed":551,"events_dropped":0,"avg_latency_ms":15.629898188289374,"throughput_eps":0,"last_update":"2026-03-21T15:54:49.211529243Z"} +2026/03/21 15:54:54 [transform_engine] {"stage_name":"transform_engine","events_processed":552,"events_dropped":0,"avg_latency_ms":742.2454990724469,"throughput_eps":0,"last_update":"2026-03-21T15:54:49.333113125Z"} +2026/03/21 15:54:54 ───────────────────────────────────────────────── +2026/03/21 15:54:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:54:59 [log_collector] {"stage_name":"log_collector","events_processed":26409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.8,"last_update":"2026-03-21T15:54:54.06829383Z"} +2026/03/21 15:54:59 [metric_collector] {"stage_name":"metric_collector","events_processed":16564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3312.8,"last_update":"2026-03-21T15:54:54.069062543Z"} +2026/03/21 15:54:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:54:54.068501237Z"} +2026/03/21 15:54:59 [detection_layer] {"stage_name":"detection_layer","events_processed":552,"events_dropped":0,"avg_latency_ms":15.9596753506315,"throughput_eps":0,"last_update":"2026-03-21T15:54:54.210290771Z"} +2026/03/21 15:54:59 [transform_engine] {"stage_name":"transform_engine","events_processed":552,"events_dropped":0,"avg_latency_ms":742.2454990724469,"throughput_eps":0,"last_update":"2026-03-21T15:54:54.210297383Z"} +2026/03/21 15:54:59 ───────────────────────────────────────────────── +2026/03/21 15:55:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:55:04 [log_collector] {"stage_name":"log_collector","events_processed":26409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.8,"last_update":"2026-03-21T15:54:59.068117886Z"} +2026/03/21 15:55:04 [metric_collector] {"stage_name":"metric_collector","events_processed":16569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3313.8,"last_update":"2026-03-21T15:54:59.068561245Z"} +2026/03/21 15:55:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:54:59.077628873Z"} +2026/03/21 15:55:04 [detection_layer] {"stage_name":"detection_layer","events_processed":552,"events_dropped":0,"avg_latency_ms":15.9596753506315,"throughput_eps":0,"last_update":"2026-03-21T15:54:59.209858675Z"} +2026/03/21 15:55:04 [transform_engine] {"stage_name":"transform_engine","events_processed":552,"events_dropped":0,"avg_latency_ms":742.2454990724469,"throughput_eps":0,"last_update":"2026-03-21T15:54:59.20980375Z"} +2026/03/21 15:55:04 ───────────────────────────────────────────────── +2026/03/21 15:55:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:55:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6632,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:55:04.077191449Z"} +2026/03/21 15:55:09 [detection_layer] {"stage_name":"detection_layer","events_processed":552,"events_dropped":0,"avg_latency_ms":15.9596753506315,"throughput_eps":0,"last_update":"2026-03-21T15:55:04.210580613Z"} +2026/03/21 15:55:09 [transform_engine] {"stage_name":"transform_engine","events_processed":552,"events_dropped":0,"avg_latency_ms":742.2454990724469,"throughput_eps":0,"last_update":"2026-03-21T15:55:04.210561667Z"} +2026/03/21 15:55:09 [log_collector] {"stage_name":"log_collector","events_processed":26409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.8,"last_update":"2026-03-21T15:55:04.068103403Z"} +2026/03/21 15:55:09 [metric_collector] {"stage_name":"metric_collector","events_processed":16573,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3314.6,"last_update":"2026-03-21T15:55:04.067978775Z"} +2026/03/21 15:55:09 ───────────────────────────────────────────────── +2026/03/21 15:55:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:55:14 [transform_engine] {"stage_name":"transform_engine","events_processed":552,"events_dropped":0,"avg_latency_ms":742.2454990724469,"throughput_eps":0,"last_update":"2026-03-21T15:55:09.210645406Z"} +2026/03/21 15:55:14 [log_collector] {"stage_name":"log_collector","events_processed":26409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.8,"last_update":"2026-03-21T15:55:09.069057949Z"} +2026/03/21 15:55:14 [metric_collector] {"stage_name":"metric_collector","events_processed":16579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3315.8,"last_update":"2026-03-21T15:55:09.069201885Z"} +2026/03/21 15:55:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:55:09.078335369Z"} +2026/03/21 15:55:14 [detection_layer] {"stage_name":"detection_layer","events_processed":552,"events_dropped":0,"avg_latency_ms":15.9596753506315,"throughput_eps":0,"last_update":"2026-03-21T15:55:09.210592785Z"} +2026/03/21 15:55:14 ───────────────────────────────────────────────── +2026/03/21 15:55:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:55:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:55:14.076914989Z"} +2026/03/21 15:55:19 [detection_layer] {"stage_name":"detection_layer","events_processed":552,"events_dropped":0,"avg_latency_ms":15.9596753506315,"throughput_eps":0,"last_update":"2026-03-21T15:55:14.2101931Z"} +2026/03/21 15:55:19 [transform_engine] {"stage_name":"transform_engine","events_processed":552,"events_dropped":0,"avg_latency_ms":742.2454990724469,"throughput_eps":0,"last_update":"2026-03-21T15:55:14.210243516Z"} +2026/03/21 15:55:19 [log_collector] {"stage_name":"log_collector","events_processed":26409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.8,"last_update":"2026-03-21T15:55:14.068211589Z"} +2026/03/21 15:55:19 [metric_collector] {"stage_name":"metric_collector","events_processed":16584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3316.8,"last_update":"2026-03-21T15:55:14.068653145Z"} +2026/03/21 15:55:19 ───────────────────────────────────────────────── +2026/03/21 15:55:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:55:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:55:19.077502949Z"} +2026/03/21 15:55:24 [detection_layer] {"stage_name":"detection_layer","events_processed":552,"events_dropped":0,"avg_latency_ms":15.9596753506315,"throughput_eps":0,"last_update":"2026-03-21T15:55:19.209875786Z"} +2026/03/21 15:55:24 [transform_engine] {"stage_name":"transform_engine","events_processed":553,"events_dropped":0,"avg_latency_ms":608.9795600579575,"throughput_eps":0,"last_update":"2026-03-21T15:55:19.285691077Z"} +2026/03/21 15:55:24 [log_collector] {"stage_name":"log_collector","events_processed":26409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.8,"last_update":"2026-03-21T15:55:24.068381223Z"} +2026/03/21 15:55:24 [metric_collector] {"stage_name":"metric_collector","events_processed":16589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3317.8,"last_update":"2026-03-21T15:55:19.069320136Z"} +2026/03/21 15:55:24 ───────────────────────────────────────────────── +2026/03/21 15:55:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:55:29 [log_collector] {"stage_name":"log_collector","events_processed":26409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.8,"last_update":"2026-03-21T15:55:24.068381223Z"} +2026/03/21 15:55:29 [metric_collector] {"stage_name":"metric_collector","events_processed":16594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3318.8,"last_update":"2026-03-21T15:55:24.068913352Z"} +2026/03/21 15:55:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6640,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:55:24.077955752Z"} +2026/03/21 15:55:29 [detection_layer] {"stage_name":"detection_layer","events_processed":553,"events_dropped":0,"avg_latency_ms":16.314970480505202,"throughput_eps":0,"last_update":"2026-03-21T15:55:24.210317157Z"} +2026/03/21 15:55:29 [transform_engine] {"stage_name":"transform_engine","events_processed":553,"events_dropped":0,"avg_latency_ms":608.9795600579575,"throughput_eps":0,"last_update":"2026-03-21T15:55:24.210456464Z"} +2026/03/21 15:55:29 ───────────────────────────────────────────────── +2026/03/21 15:55:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:55:34 [log_collector] {"stage_name":"log_collector","events_processed":26409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.8,"last_update":"2026-03-21T15:55:34.06838964Z"} +2026/03/21 15:55:34 [metric_collector] {"stage_name":"metric_collector","events_processed":16599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3319.8,"last_update":"2026-03-21T15:55:29.069213827Z"} +2026/03/21 15:55:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:55:29.077427971Z"} +2026/03/21 15:55:34 [detection_layer] {"stage_name":"detection_layer","events_processed":553,"events_dropped":0,"avg_latency_ms":16.314970480505202,"throughput_eps":0,"last_update":"2026-03-21T15:55:29.210801905Z"} +2026/03/21 15:55:34 [transform_engine] {"stage_name":"transform_engine","events_processed":553,"events_dropped":0,"avg_latency_ms":608.9795600579575,"throughput_eps":0,"last_update":"2026-03-21T15:55:29.210768301Z"} +2026/03/21 15:55:34 ───────────────────────────────────────────────── +2026/03/21 15:55:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:55:39 [log_collector] {"stage_name":"log_collector","events_processed":26409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.8,"last_update":"2026-03-21T15:55:34.06838964Z"} +2026/03/21 15:55:39 [metric_collector] {"stage_name":"metric_collector","events_processed":16604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3320.8,"last_update":"2026-03-21T15:55:34.068870752Z"} +2026/03/21 15:55:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:55:34.077615592Z"} +2026/03/21 15:55:39 [detection_layer] {"stage_name":"detection_layer","events_processed":553,"events_dropped":0,"avg_latency_ms":16.314970480505202,"throughput_eps":0,"last_update":"2026-03-21T15:55:34.20991573Z"} +2026/03/21 15:55:39 [transform_engine] {"stage_name":"transform_engine","events_processed":553,"events_dropped":0,"avg_latency_ms":608.9795600579575,"throughput_eps":0,"last_update":"2026-03-21T15:55:34.209798184Z"} +2026/03/21 15:55:39 ───────────────────────────────────────────────── +2026/03/21 15:55:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:55:44 [log_collector] {"stage_name":"log_collector","events_processed":26409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.8,"last_update":"2026-03-21T15:55:44.068078939Z"} +2026/03/21 15:55:44 [metric_collector] {"stage_name":"metric_collector","events_processed":16609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3321.8,"last_update":"2026-03-21T15:55:39.069297404Z"} +2026/03/21 15:55:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6646,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:55:39.077606519Z"} +2026/03/21 15:55:44 [detection_layer] {"stage_name":"detection_layer","events_processed":553,"events_dropped":0,"avg_latency_ms":16.314970480505202,"throughput_eps":0,"last_update":"2026-03-21T15:55:39.210938233Z"} +2026/03/21 15:55:44 [transform_engine] {"stage_name":"transform_engine","events_processed":553,"events_dropped":0,"avg_latency_ms":608.9795600579575,"throughput_eps":0,"last_update":"2026-03-21T15:55:39.209743104Z"} +2026/03/21 15:55:44 ───────────────────────────────────────────────── +2026/03/21 15:55:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:55:49 [log_collector] {"stage_name":"log_collector","events_processed":26409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.8,"last_update":"2026-03-21T15:55:44.068078939Z"} +2026/03/21 15:55:49 [metric_collector] {"stage_name":"metric_collector","events_processed":16614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3322.8,"last_update":"2026-03-21T15:55:44.068841659Z"} +2026/03/21 15:55:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:55:44.076761739Z"} +2026/03/21 15:55:49 [detection_layer] {"stage_name":"detection_layer","events_processed":553,"events_dropped":0,"avg_latency_ms":16.314970480505202,"throughput_eps":0,"last_update":"2026-03-21T15:55:44.210084285Z"} +2026/03/21 15:55:49 [transform_engine] {"stage_name":"transform_engine","events_processed":553,"events_dropped":0,"avg_latency_ms":608.9795600579575,"throughput_eps":0,"last_update":"2026-03-21T15:55:44.210189546Z"} +2026/03/21 15:55:49 ───────────────────────────────────────────────── +2026/03/21 15:55:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:55:54 [detection_layer] {"stage_name":"detection_layer","events_processed":553,"events_dropped":0,"avg_latency_ms":16.314970480505202,"throughput_eps":0,"last_update":"2026-03-21T15:55:49.210304256Z"} +2026/03/21 15:55:54 [transform_engine] {"stage_name":"transform_engine","events_processed":553,"events_dropped":0,"avg_latency_ms":608.9795600579575,"throughput_eps":0,"last_update":"2026-03-21T15:55:49.210271093Z"} +2026/03/21 15:55:54 [log_collector] {"stage_name":"log_collector","events_processed":26409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.8,"last_update":"2026-03-21T15:55:49.068741988Z"} +2026/03/21 15:55:54 [metric_collector] {"stage_name":"metric_collector","events_processed":16619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3323.8,"last_update":"2026-03-21T15:55:49.069032244Z"} +2026/03/21 15:55:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6650,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:55:49.076890394Z"} +2026/03/21 15:55:54 ───────────────────────────────────────────────── +2026/03/21 15:55:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:55:59 [log_collector] {"stage_name":"log_collector","events_processed":26409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.8,"last_update":"2026-03-21T15:55:59.068433986Z"} +2026/03/21 15:55:59 [metric_collector] {"stage_name":"metric_collector","events_processed":16624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3324.8,"last_update":"2026-03-21T15:55:54.06894539Z"} +2026/03/21 15:55:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:55:54.077547054Z"} +2026/03/21 15:55:59 [detection_layer] {"stage_name":"detection_layer","events_processed":554,"events_dropped":0,"avg_latency_ms":16.856679784404164,"throughput_eps":0,"last_update":"2026-03-21T15:55:54.210918805Z"} +2026/03/21 15:55:59 [transform_engine] {"stage_name":"transform_engine","events_processed":554,"events_dropped":0,"avg_latency_ms":503.09025044636604,"throughput_eps":0,"last_update":"2026-03-21T15:55:54.209727915Z"} +2026/03/21 15:55:59 ───────────────────────────────────────────────── +2026/03/21 15:56:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:56:04 [log_collector] {"stage_name":"log_collector","events_processed":26409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.8,"last_update":"2026-03-21T15:56:04.068258177Z"} +2026/03/21 15:56:04 [metric_collector] {"stage_name":"metric_collector","events_processed":16629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3325.8,"last_update":"2026-03-21T15:55:59.068853861Z"} +2026/03/21 15:56:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:55:59.078884252Z"} +2026/03/21 15:56:04 [detection_layer] {"stage_name":"detection_layer","events_processed":554,"events_dropped":0,"avg_latency_ms":16.856679784404164,"throughput_eps":0,"last_update":"2026-03-21T15:55:59.210254228Z"} +2026/03/21 15:56:04 [transform_engine] {"stage_name":"transform_engine","events_processed":554,"events_dropped":0,"avg_latency_ms":503.09025044636604,"throughput_eps":0,"last_update":"2026-03-21T15:55:59.210399607Z"} +2026/03/21 15:56:04 ───────────────────────────────────────────────── +2026/03/21 15:56:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:56:09 [log_collector] {"stage_name":"log_collector","events_processed":26409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.8,"last_update":"2026-03-21T15:56:04.068258177Z"} +2026/03/21 15:56:09 [metric_collector] {"stage_name":"metric_collector","events_processed":16634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3326.8,"last_update":"2026-03-21T15:56:04.069182628Z"} +2026/03/21 15:56:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:56:04.07927604Z"} +2026/03/21 15:56:09 [detection_layer] {"stage_name":"detection_layer","events_processed":554,"events_dropped":0,"avg_latency_ms":16.856679784404164,"throughput_eps":0,"last_update":"2026-03-21T15:56:04.21065813Z"} +2026/03/21 15:56:09 [transform_engine] {"stage_name":"transform_engine","events_processed":554,"events_dropped":0,"avg_latency_ms":503.09025044636604,"throughput_eps":0,"last_update":"2026-03-21T15:56:04.210556075Z"} +2026/03/21 15:56:09 ───────────────────────────────────────────────── +Saved state: 18 clusters, 26410 messages, reason: none +2026/03/21 15:56:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:56:14 [log_collector] {"stage_name":"log_collector","events_processed":26409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.8,"last_update":"2026-03-21T15:56:09.068099624Z"} +2026/03/21 15:56:14 [metric_collector] {"stage_name":"metric_collector","events_processed":16639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3327.8,"last_update":"2026-03-21T15:56:09.068452129Z"} +2026/03/21 15:56:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:56:09.076991615Z"} +2026/03/21 15:56:14 [detection_layer] {"stage_name":"detection_layer","events_processed":554,"events_dropped":0,"avg_latency_ms":16.856679784404164,"throughput_eps":0,"last_update":"2026-03-21T15:56:09.210283383Z"} +2026/03/21 15:56:14 [transform_engine] {"stage_name":"transform_engine","events_processed":554,"events_dropped":0,"avg_latency_ms":503.09025044636604,"throughput_eps":0,"last_update":"2026-03-21T15:56:09.210257423Z"} +2026/03/21 15:56:14 ───────────────────────────────────────────────── +2026/03/21 15:56:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:56:19 [detection_layer] {"stage_name":"detection_layer","events_processed":554,"events_dropped":0,"avg_latency_ms":16.856679784404164,"throughput_eps":0,"last_update":"2026-03-21T15:56:14.210383577Z"} +2026/03/21 15:56:19 [transform_engine] {"stage_name":"transform_engine","events_processed":554,"events_dropped":0,"avg_latency_ms":503.09025044636604,"throughput_eps":0,"last_update":"2026-03-21T15:56:14.210480112Z"} +2026/03/21 15:56:19 [log_collector] {"stage_name":"log_collector","events_processed":26423,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5284.6,"last_update":"2026-03-21T15:56:19.068084763Z"} +2026/03/21 15:56:19 [metric_collector] {"stage_name":"metric_collector","events_processed":16644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3328.8,"last_update":"2026-03-21T15:56:14.069172311Z"} +2026/03/21 15:56:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6660,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:56:14.077173526Z"} +2026/03/21 15:56:19 ───────────────────────────────────────────────── +2026/03/21 15:56:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:56:24 [detection_layer] {"stage_name":"detection_layer","events_processed":554,"events_dropped":0,"avg_latency_ms":16.856679784404164,"throughput_eps":0,"last_update":"2026-03-21T15:56:19.210728955Z"} +2026/03/21 15:56:24 [transform_engine] {"stage_name":"transform_engine","events_processed":555,"events_dropped":0,"avg_latency_ms":425.67487515709286,"throughput_eps":0,"last_update":"2026-03-21T15:56:19.326648048Z"} +2026/03/21 15:56:24 [log_collector] {"stage_name":"log_collector","events_processed":26423,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5284.6,"last_update":"2026-03-21T15:56:19.068084763Z"} +2026/03/21 15:56:24 [metric_collector] {"stage_name":"metric_collector","events_processed":16649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3329.8,"last_update":"2026-03-21T15:56:19.068565053Z"} +2026/03/21 15:56:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6662,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:56:19.077284524Z"} +2026/03/21 15:56:24 ───────────────────────────────────────────────── +2026/03/21 15:56:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:56:29 [detection_layer] {"stage_name":"detection_layer","events_processed":555,"events_dropped":0,"avg_latency_ms":17.118821227523334,"throughput_eps":0,"last_update":"2026-03-21T15:56:24.210331993Z"} +2026/03/21 15:56:29 [transform_engine] {"stage_name":"transform_engine","events_processed":555,"events_dropped":0,"avg_latency_ms":425.67487515709286,"throughput_eps":0,"last_update":"2026-03-21T15:56:24.210466921Z"} +2026/03/21 15:56:29 [log_collector] {"stage_name":"log_collector","events_processed":26423,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5284.6,"last_update":"2026-03-21T15:56:24.06819328Z"} +2026/03/21 15:56:29 [metric_collector] {"stage_name":"metric_collector","events_processed":16654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3330.8,"last_update":"2026-03-21T15:56:24.068463747Z"} +2026/03/21 15:56:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:56:24.078128439Z"} +2026/03/21 15:56:29 ───────────────────────────────────────────────── +2026/03/21 15:56:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:56:34 [transform_engine] {"stage_name":"transform_engine","events_processed":555,"events_dropped":0,"avg_latency_ms":425.67487515709286,"throughput_eps":0,"last_update":"2026-03-21T15:56:29.210564299Z"} +2026/03/21 15:56:34 [log_collector] {"stage_name":"log_collector","events_processed":26423,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5284.6,"last_update":"2026-03-21T15:56:29.068968305Z"} +2026/03/21 15:56:34 [metric_collector] {"stage_name":"metric_collector","events_processed":16659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3331.8,"last_update":"2026-03-21T15:56:29.069286323Z"} +2026/03/21 15:56:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:56:29.078078453Z"} +2026/03/21 15:56:34 [detection_layer] {"stage_name":"detection_layer","events_processed":555,"events_dropped":0,"avg_latency_ms":17.118821227523334,"throughput_eps":0,"last_update":"2026-03-21T15:56:29.21068517Z"} +2026/03/21 15:56:34 ───────────────────────────────────────────────── +2026/03/21 15:56:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:56:39 [log_collector] {"stage_name":"log_collector","events_processed":26423,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5284.6,"last_update":"2026-03-21T15:56:34.068573511Z"} +2026/03/21 15:56:39 [metric_collector] {"stage_name":"metric_collector","events_processed":16664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3332.8,"last_update":"2026-03-21T15:56:34.068540608Z"} +2026/03/21 15:56:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6668,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:56:34.07784521Z"} +2026/03/21 15:56:39 [detection_layer] {"stage_name":"detection_layer","events_processed":555,"events_dropped":0,"avg_latency_ms":17.118821227523334,"throughput_eps":0,"last_update":"2026-03-21T15:56:34.210058733Z"} +2026/03/21 15:56:39 [transform_engine] {"stage_name":"transform_engine","events_processed":555,"events_dropped":0,"avg_latency_ms":425.67487515709286,"throughput_eps":0,"last_update":"2026-03-21T15:56:34.210082749Z"} +2026/03/21 15:56:39 ───────────────────────────────────────────────── +2026/03/21 15:56:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:56:44 [log_collector] {"stage_name":"log_collector","events_processed":26423,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5284.6,"last_update":"2026-03-21T15:56:39.068883039Z"} +2026/03/21 15:56:44 [metric_collector] {"stage_name":"metric_collector","events_processed":16669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3333.8,"last_update":"2026-03-21T15:56:39.069199134Z"} +2026/03/21 15:56:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6670,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:56:39.078314273Z"} +2026/03/21 15:56:44 [detection_layer] {"stage_name":"detection_layer","events_processed":555,"events_dropped":0,"avg_latency_ms":17.118821227523334,"throughput_eps":0,"last_update":"2026-03-21T15:56:39.210699345Z"} +2026/03/21 15:56:44 [transform_engine] {"stage_name":"transform_engine","events_processed":555,"events_dropped":0,"avg_latency_ms":425.67487515709286,"throughput_eps":0,"last_update":"2026-03-21T15:56:39.210751966Z"} +2026/03/21 15:56:44 ───────────────────────────────────────────────── +2026/03/21 15:56:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:56:49 [log_collector] {"stage_name":"log_collector","events_processed":26423,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5284.6,"last_update":"2026-03-21T15:56:44.068843279Z"} +2026/03/21 15:56:49 [metric_collector] {"stage_name":"metric_collector","events_processed":16674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3334.8,"last_update":"2026-03-21T15:56:44.069133405Z"} +2026/03/21 15:56:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:56:44.079063695Z"} +2026/03/21 15:56:49 [detection_layer] {"stage_name":"detection_layer","events_processed":555,"events_dropped":0,"avg_latency_ms":17.118821227523334,"throughput_eps":0,"last_update":"2026-03-21T15:56:44.210304815Z"} +2026/03/21 15:56:49 [transform_engine] {"stage_name":"transform_engine","events_processed":555,"events_dropped":0,"avg_latency_ms":425.67487515709286,"throughput_eps":0,"last_update":"2026-03-21T15:56:44.210341857Z"} +2026/03/21 15:56:49 ───────────────────────────────────────────────── +2026/03/21 15:56:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:56:54 [detection_layer] {"stage_name":"detection_layer","events_processed":555,"events_dropped":0,"avg_latency_ms":17.118821227523334,"throughput_eps":0,"last_update":"2026-03-21T15:56:49.210570936Z"} +2026/03/21 15:56:54 [transform_engine] {"stage_name":"transform_engine","events_processed":556,"events_dropped":0,"avg_latency_ms":365.8011699256743,"throughput_eps":0,"last_update":"2026-03-21T15:56:49.337019017Z"} +2026/03/21 15:56:54 [log_collector] {"stage_name":"log_collector","events_processed":26423,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5284.6,"last_update":"2026-03-21T15:56:49.068787773Z"} +2026/03/21 15:56:54 [metric_collector] {"stage_name":"metric_collector","events_processed":16679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3335.8,"last_update":"2026-03-21T15:56:49.069080845Z"} +2026/03/21 15:56:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:56:49.079291222Z"} +2026/03/21 15:56:54 ───────────────────────────────────────────────── +2026/03/21 15:56:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:56:59 [transform_engine] {"stage_name":"transform_engine","events_processed":556,"events_dropped":0,"avg_latency_ms":365.8011699256743,"throughput_eps":0,"last_update":"2026-03-21T15:56:54.209654632Z"} +2026/03/21 15:56:59 [log_collector] {"stage_name":"log_collector","events_processed":26423,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5284.6,"last_update":"2026-03-21T15:56:54.068714084Z"} +2026/03/21 15:56:59 [metric_collector] {"stage_name":"metric_collector","events_processed":16684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3336.8,"last_update":"2026-03-21T15:56:54.069000862Z"} +2026/03/21 15:56:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6676,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:56:54.077332872Z"} +2026/03/21 15:56:59 [detection_layer] {"stage_name":"detection_layer","events_processed":556,"events_dropped":0,"avg_latency_ms":17.662427782018668,"throughput_eps":0,"last_update":"2026-03-21T15:56:54.210818772Z"} +2026/03/21 15:56:59 ───────────────────────────────────────────────── +2026/03/21 15:57:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:57:04 [log_collector] {"stage_name":"log_collector","events_processed":26423,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5284.6,"last_update":"2026-03-21T15:56:59.068795164Z"} +2026/03/21 15:57:04 [metric_collector] {"stage_name":"metric_collector","events_processed":16689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3337.8,"last_update":"2026-03-21T15:56:59.069084599Z"} +2026/03/21 15:57:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:56:59.077825371Z"} +2026/03/21 15:57:04 [detection_layer] {"stage_name":"detection_layer","events_processed":556,"events_dropped":0,"avg_latency_ms":17.662427782018668,"throughput_eps":0,"last_update":"2026-03-21T15:56:59.210071907Z"} +2026/03/21 15:57:04 [transform_engine] {"stage_name":"transform_engine","events_processed":556,"events_dropped":0,"avg_latency_ms":365.8011699256743,"throughput_eps":0,"last_update":"2026-03-21T15:56:59.210115882Z"} +2026/03/21 15:57:04 ───────────────────────────────────────────────── +2026/03/21 15:57:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:57:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:57:04.078300527Z"} +2026/03/21 15:57:09 [detection_layer] {"stage_name":"detection_layer","events_processed":556,"events_dropped":0,"avg_latency_ms":17.662427782018668,"throughput_eps":0,"last_update":"2026-03-21T15:57:04.21066986Z"} +2026/03/21 15:57:09 [transform_engine] {"stage_name":"transform_engine","events_processed":556,"events_dropped":0,"avg_latency_ms":365.8011699256743,"throughput_eps":0,"last_update":"2026-03-21T15:57:04.210709074Z"} +2026/03/21 15:57:09 [log_collector] {"stage_name":"log_collector","events_processed":26423,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5284.6,"last_update":"2026-03-21T15:57:04.069014491Z"} +2026/03/21 15:57:09 [metric_collector] {"stage_name":"metric_collector","events_processed":16694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3338.8,"last_update":"2026-03-21T15:57:04.069667933Z"} +2026/03/21 15:57:09 ───────────────────────────────────────────────── +2026/03/21 15:57:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:57:14 [log_collector] {"stage_name":"log_collector","events_processed":26423,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5284.6,"last_update":"2026-03-21T15:57:09.068848382Z"} +2026/03/21 15:57:14 [metric_collector] {"stage_name":"metric_collector","events_processed":16699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3339.8,"last_update":"2026-03-21T15:57:09.068978892Z"} +2026/03/21 15:57:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:57:09.078514816Z"} +2026/03/21 15:57:14 [detection_layer] {"stage_name":"detection_layer","events_processed":556,"events_dropped":0,"avg_latency_ms":17.662427782018668,"throughput_eps":0,"last_update":"2026-03-21T15:57:09.210907152Z"} +2026/03/21 15:57:14 [transform_engine] {"stage_name":"transform_engine","events_processed":556,"events_dropped":0,"avg_latency_ms":365.8011699256743,"throughput_eps":0,"last_update":"2026-03-21T15:57:09.209759224Z"} +2026/03/21 15:57:14 ───────────────────────────────────────────────── +2026/03/21 15:57:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:57:19 [metric_collector] {"stage_name":"metric_collector","events_processed":16704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3340.8,"last_update":"2026-03-21T15:57:14.06950054Z"} +2026/03/21 15:57:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:57:14.080202709Z"} +2026/03/21 15:57:19 [detection_layer] {"stage_name":"detection_layer","events_processed":556,"events_dropped":0,"avg_latency_ms":17.662427782018668,"throughput_eps":0,"last_update":"2026-03-21T15:57:14.210577471Z"} +2026/03/21 15:57:19 [transform_engine] {"stage_name":"transform_engine","events_processed":556,"events_dropped":0,"avg_latency_ms":365.8011699256743,"throughput_eps":0,"last_update":"2026-03-21T15:57:14.210463332Z"} +2026/03/21 15:57:19 [log_collector] {"stage_name":"log_collector","events_processed":26423,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5284.6,"last_update":"2026-03-21T15:57:14.069048204Z"} +2026/03/21 15:57:19 ───────────────────────────────────────────────── +2026/03/21 15:57:19 [ANOMALY] time=2026-03-21T15:57:19Z score=0.8589 method=SEAD details=MAD!:w=0.29,s=1.00 RRCF-fast:w=0.16,s=0.77 RRCF-mid!:w=0.15,s=0.97 RRCF-slow!:w=0.16,s=0.98 COPOD!:w=0.24,s=0.60 +Saved state: 18 clusters, 26424 messages, reason: none +2026/03/21 15:57:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:57:24 [transform_engine] {"stage_name":"transform_engine","events_processed":557,"events_dropped":0,"avg_latency_ms":306.8852607405395,"throughput_eps":0,"last_update":"2026-03-21T15:57:19.281078476Z"} +2026/03/21 15:57:24 [log_collector] {"stage_name":"log_collector","events_processed":26423,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5284.6,"last_update":"2026-03-21T15:57:19.068186987Z"} +2026/03/21 15:57:24 [metric_collector] {"stage_name":"metric_collector","events_processed":16709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3341.8,"last_update":"2026-03-21T15:57:19.06868499Z"} +2026/03/21 15:57:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:57:19.077394853Z"} +2026/03/21 15:57:24 [detection_layer] {"stage_name":"detection_layer","events_processed":556,"events_dropped":0,"avg_latency_ms":17.662427782018668,"throughput_eps":0,"last_update":"2026-03-21T15:57:19.21054461Z"} +2026/03/21 15:57:24 ───────────────────────────────────────────────── +2026/03/21 15:57:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:57:29 [log_collector] {"stage_name":"log_collector","events_processed":26428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5285.6,"last_update":"2026-03-21T15:57:24.068641642Z"} +2026/03/21 15:57:29 [metric_collector] {"stage_name":"metric_collector","events_processed":16714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3342.8,"last_update":"2026-03-21T15:57:24.068873627Z"} +2026/03/21 15:57:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6688,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:57:24.075320746Z"} +2026/03/21 15:57:29 [detection_layer] {"stage_name":"detection_layer","events_processed":557,"events_dropped":0,"avg_latency_ms":17.483996625614935,"throughput_eps":0,"last_update":"2026-03-21T15:57:24.210674003Z"} +2026/03/21 15:57:29 [transform_engine] {"stage_name":"transform_engine","events_processed":557,"events_dropped":0,"avg_latency_ms":306.8852607405395,"throughput_eps":0,"last_update":"2026-03-21T15:57:24.210696355Z"} +2026/03/21 15:57:29 ───────────────────────────────────────────────── +2026/03/21 15:57:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:57:34 [log_collector] {"stage_name":"log_collector","events_processed":26428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5285.6,"last_update":"2026-03-21T15:57:29.068259688Z"} +2026/03/21 15:57:34 [metric_collector] {"stage_name":"metric_collector","events_processed":16718,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3343.6,"last_update":"2026-03-21T15:57:29.068263175Z"} +2026/03/21 15:57:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:57:29.074837938Z"} +2026/03/21 15:57:34 [detection_layer] {"stage_name":"detection_layer","events_processed":557,"events_dropped":0,"avg_latency_ms":17.483996625614935,"throughput_eps":0,"last_update":"2026-03-21T15:57:29.210092396Z"} +2026/03/21 15:57:34 [transform_engine] {"stage_name":"transform_engine","events_processed":557,"events_dropped":0,"avg_latency_ms":306.8852607405395,"throughput_eps":0,"last_update":"2026-03-21T15:57:29.210136611Z"} +2026/03/21 15:57:34 ───────────────────────────────────────────────── +2026/03/21 15:57:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:57:39 [log_collector] {"stage_name":"log_collector","events_processed":26428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5285.6,"last_update":"2026-03-21T15:57:34.068090302Z"} +2026/03/21 15:57:39 [metric_collector] {"stage_name":"metric_collector","events_processed":16723,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3344.6,"last_update":"2026-03-21T15:57:34.068028344Z"} +2026/03/21 15:57:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:57:34.07441675Z"} +2026/03/21 15:57:39 [detection_layer] {"stage_name":"detection_layer","events_processed":557,"events_dropped":0,"avg_latency_ms":17.483996625614935,"throughput_eps":0,"last_update":"2026-03-21T15:57:34.210632529Z"} +2026/03/21 15:57:39 [transform_engine] {"stage_name":"transform_engine","events_processed":557,"events_dropped":0,"avg_latency_ms":306.8852607405395,"throughput_eps":0,"last_update":"2026-03-21T15:57:34.210654582Z"} +2026/03/21 15:57:39 ───────────────────────────────────────────────── +2026/03/21 15:57:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:57:44 [transform_engine] {"stage_name":"transform_engine","events_processed":557,"events_dropped":0,"avg_latency_ms":306.8852607405395,"throughput_eps":0,"last_update":"2026-03-21T15:57:39.209712098Z"} +2026/03/21 15:57:44 [log_collector] {"stage_name":"log_collector","events_processed":26428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5285.6,"last_update":"2026-03-21T15:57:39.068657721Z"} +2026/03/21 15:57:44 [metric_collector] {"stage_name":"metric_collector","events_processed":16729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3345.8,"last_update":"2026-03-21T15:57:39.068774585Z"} +2026/03/21 15:57:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:57:39.075487783Z"} +2026/03/21 15:57:44 [detection_layer] {"stage_name":"detection_layer","events_processed":557,"events_dropped":0,"avg_latency_ms":17.483996625614935,"throughput_eps":0,"last_update":"2026-03-21T15:57:39.210894552Z"} +2026/03/21 15:57:44 ───────────────────────────────────────────────── +2026/03/21 15:57:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:57:49 [log_collector] {"stage_name":"log_collector","events_processed":26428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5285.6,"last_update":"2026-03-21T15:57:44.068684737Z"} +2026/03/21 15:57:49 [metric_collector] {"stage_name":"metric_collector","events_processed":16734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3346.8,"last_update":"2026-03-21T15:57:44.069065766Z"} +2026/03/21 15:57:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:57:44.077225906Z"} +2026/03/21 15:57:49 [detection_layer] {"stage_name":"detection_layer","events_processed":557,"events_dropped":0,"avg_latency_ms":17.483996625614935,"throughput_eps":0,"last_update":"2026-03-21T15:57:44.210452139Z"} +2026/03/21 15:57:49 [transform_engine] {"stage_name":"transform_engine","events_processed":557,"events_dropped":0,"avg_latency_ms":306.8852607405395,"throughput_eps":0,"last_update":"2026-03-21T15:57:44.210432412Z"} +2026/03/21 15:57:49 ───────────────────────────────────────────────── +2026/03/21 15:57:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:57:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:57:49.077655684Z"} +2026/03/21 15:57:54 [detection_layer] {"stage_name":"detection_layer","events_processed":557,"events_dropped":0,"avg_latency_ms":17.483996625614935,"throughput_eps":0,"last_update":"2026-03-21T15:57:49.209891751Z"} +2026/03/21 15:57:54 [transform_engine] {"stage_name":"transform_engine","events_processed":558,"events_dropped":0,"avg_latency_ms":627.6165223924316,"throughput_eps":0,"last_update":"2026-03-21T15:57:51.120410487Z"} +2026/03/21 15:57:54 [log_collector] {"stage_name":"log_collector","events_processed":26428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5285.6,"last_update":"2026-03-21T15:57:49.068519385Z"} +2026/03/21 15:57:54 [metric_collector] {"stage_name":"metric_collector","events_processed":16739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3347.8,"last_update":"2026-03-21T15:57:49.068928709Z"} +2026/03/21 15:57:54 ───────────────────────────────────────────────── +2026/03/21 15:57:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:57:59 [log_collector] {"stage_name":"log_collector","events_processed":26428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5285.6,"last_update":"2026-03-21T15:57:54.068947553Z"} +2026/03/21 15:57:59 [metric_collector] {"stage_name":"metric_collector","events_processed":16744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3348.8,"last_update":"2026-03-21T15:57:54.069439364Z"} +2026/03/21 15:57:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6700,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:57:54.079033039Z"} +2026/03/21 15:57:59 [detection_layer] {"stage_name":"detection_layer","events_processed":558,"events_dropped":0,"avg_latency_ms":16.92645910049195,"throughput_eps":0,"last_update":"2026-03-21T15:57:54.210263711Z"} +2026/03/21 15:57:59 [transform_engine] {"stage_name":"transform_engine","events_processed":558,"events_dropped":0,"avg_latency_ms":627.6165223924316,"throughput_eps":0,"last_update":"2026-03-21T15:57:54.210417746Z"} +2026/03/21 15:57:59 ───────────────────────────────────────────────── +2026/03/21 15:58:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:58:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6702,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:57:59.077657583Z"} +2026/03/21 15:58:04 [detection_layer] {"stage_name":"detection_layer","events_processed":558,"events_dropped":0,"avg_latency_ms":16.92645910049195,"throughput_eps":0,"last_update":"2026-03-21T15:57:59.209906816Z"} +2026/03/21 15:58:04 [transform_engine] {"stage_name":"transform_engine","events_processed":558,"events_dropped":0,"avg_latency_ms":627.6165223924316,"throughput_eps":0,"last_update":"2026-03-21T15:57:59.209883661Z"} +2026/03/21 15:58:04 [log_collector] {"stage_name":"log_collector","events_processed":26428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5285.6,"last_update":"2026-03-21T15:57:59.068598873Z"} +2026/03/21 15:58:04 [metric_collector] {"stage_name":"metric_collector","events_processed":16749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3349.8,"last_update":"2026-03-21T15:57:59.068958281Z"} +2026/03/21 15:58:04 ───────────────────────────────────────────────── +2026/03/21 15:58:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:58:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:58:04.07784893Z"} +2026/03/21 15:58:09 [detection_layer] {"stage_name":"detection_layer","events_processed":558,"events_dropped":0,"avg_latency_ms":16.92645910049195,"throughput_eps":0,"last_update":"2026-03-21T15:58:04.21007521Z"} +2026/03/21 15:58:09 [transform_engine] {"stage_name":"transform_engine","events_processed":558,"events_dropped":0,"avg_latency_ms":627.6165223924316,"throughput_eps":0,"last_update":"2026-03-21T15:58:04.210119945Z"} +2026/03/21 15:58:09 [log_collector] {"stage_name":"log_collector","events_processed":26428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5285.6,"last_update":"2026-03-21T15:58:04.068655412Z"} +2026/03/21 15:58:09 [metric_collector] {"stage_name":"metric_collector","events_processed":16754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3350.8,"last_update":"2026-03-21T15:58:04.068933885Z"} +2026/03/21 15:58:09 ───────────────────────────────────────────────── +2026/03/21 15:58:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:58:14 [log_collector] {"stage_name":"log_collector","events_processed":26428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5285.6,"last_update":"2026-03-21T15:58:09.068809681Z"} +2026/03/21 15:58:14 [metric_collector] {"stage_name":"metric_collector","events_processed":16759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3351.8,"last_update":"2026-03-21T15:58:09.069077895Z"} +2026/03/21 15:58:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:58:09.077223687Z"} +2026/03/21 15:58:14 [detection_layer] {"stage_name":"detection_layer","events_processed":558,"events_dropped":0,"avg_latency_ms":16.92645910049195,"throughput_eps":0,"last_update":"2026-03-21T15:58:09.210494026Z"} +2026/03/21 15:58:14 [transform_engine] {"stage_name":"transform_engine","events_processed":558,"events_dropped":0,"avg_latency_ms":627.6165223924316,"throughput_eps":0,"last_update":"2026-03-21T15:58:09.210467996Z"} +2026/03/21 15:58:14 ───────────────────────────────────────────────── +2026/03/21 15:58:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:58:19 [transform_engine] {"stage_name":"transform_engine","events_processed":558,"events_dropped":0,"avg_latency_ms":627.6165223924316,"throughput_eps":0,"last_update":"2026-03-21T15:58:14.210679366Z"} +2026/03/21 15:58:19 [log_collector] {"stage_name":"log_collector","events_processed":26428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5285.6,"last_update":"2026-03-21T15:58:14.068462291Z"} +2026/03/21 15:58:19 [metric_collector] {"stage_name":"metric_collector","events_processed":16764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3352.8,"last_update":"2026-03-21T15:58:14.068837159Z"} +2026/03/21 15:58:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:58:14.077251886Z"} +2026/03/21 15:58:19 [detection_layer] {"stage_name":"detection_layer","events_processed":558,"events_dropped":0,"avg_latency_ms":16.92645910049195,"throughput_eps":0,"last_update":"2026-03-21T15:58:14.210652534Z"} +2026/03/21 15:58:19 ───────────────────────────────────────────────── +2026/03/21 15:58:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:58:24 [log_collector] {"stage_name":"log_collector","events_processed":26428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5285.6,"last_update":"2026-03-21T15:58:19.068572347Z"} +2026/03/21 15:58:24 [metric_collector] {"stage_name":"metric_collector","events_processed":16769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3353.8,"last_update":"2026-03-21T15:58:19.068870999Z"} +2026/03/21 15:58:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:58:19.076848879Z"} +2026/03/21 15:58:24 [detection_layer] {"stage_name":"detection_layer","events_processed":558,"events_dropped":0,"avg_latency_ms":16.92645910049195,"throughput_eps":0,"last_update":"2026-03-21T15:58:19.210056067Z"} +2026/03/21 15:58:24 [transform_engine] {"stage_name":"transform_engine","events_processed":559,"events_dropped":0,"avg_latency_ms":516.5373875139453,"throughput_eps":0,"last_update":"2026-03-21T15:58:19.282309667Z"} +2026/03/21 15:58:24 ───────────────────────────────────────────────── +2026/03/21 15:58:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:58:29 [transform_engine] {"stage_name":"transform_engine","events_processed":559,"events_dropped":0,"avg_latency_ms":516.5373875139453,"throughput_eps":0,"last_update":"2026-03-21T15:58:24.210578306Z"} +2026/03/21 15:58:29 [log_collector] {"stage_name":"log_collector","events_processed":26428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5285.6,"last_update":"2026-03-21T15:58:24.068747331Z"} +2026/03/21 15:58:29 [metric_collector] {"stage_name":"metric_collector","events_processed":16774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3354.8,"last_update":"2026-03-21T15:58:24.068738053Z"} +2026/03/21 15:58:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6712,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:58:24.07607725Z"} +2026/03/21 15:58:29 [detection_layer] {"stage_name":"detection_layer","events_processed":559,"events_dropped":0,"avg_latency_ms":16.81287168039356,"throughput_eps":0,"last_update":"2026-03-21T15:58:24.210508152Z"} +2026/03/21 15:58:29 ───────────────────────────────────────────────── +2026/03/21 15:58:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:58:34 [log_collector] {"stage_name":"log_collector","events_processed":26428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5285.6,"last_update":"2026-03-21T15:58:29.068072299Z"} +2026/03/21 15:58:34 [metric_collector] {"stage_name":"metric_collector","events_processed":16779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3355.8,"last_update":"2026-03-21T15:58:29.06845437Z"} +2026/03/21 15:58:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:58:29.075370748Z"} +2026/03/21 15:58:34 [detection_layer] {"stage_name":"detection_layer","events_processed":559,"events_dropped":0,"avg_latency_ms":16.81287168039356,"throughput_eps":0,"last_update":"2026-03-21T15:58:29.212240551Z"} +2026/03/21 15:58:34 [transform_engine] {"stage_name":"transform_engine","events_processed":559,"events_dropped":0,"avg_latency_ms":516.5373875139453,"throughput_eps":0,"last_update":"2026-03-21T15:58:29.209739019Z"} +2026/03/21 15:58:34 ───────────────────────────────────────────────── +2026/03/21 15:58:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:58:39 [detection_layer] {"stage_name":"detection_layer","events_processed":559,"events_dropped":0,"avg_latency_ms":16.81287168039356,"throughput_eps":0,"last_update":"2026-03-21T15:58:34.210134399Z"} +2026/03/21 15:58:39 [transform_engine] {"stage_name":"transform_engine","events_processed":559,"events_dropped":0,"avg_latency_ms":516.5373875139453,"throughput_eps":0,"last_update":"2026-03-21T15:58:34.210105764Z"} +2026/03/21 15:58:39 [log_collector] {"stage_name":"log_collector","events_processed":26428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5285.6,"last_update":"2026-03-21T15:58:34.068646321Z"} +2026/03/21 15:58:39 [metric_collector] {"stage_name":"metric_collector","events_processed":16784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3356.8,"last_update":"2026-03-21T15:58:34.068956355Z"} +2026/03/21 15:58:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:58:34.078783998Z"} +2026/03/21 15:58:39 ───────────────────────────────────────────────── +2026/03/21 15:58:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:58:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6718,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:58:39.074711653Z"} +2026/03/21 15:58:44 [detection_layer] {"stage_name":"detection_layer","events_processed":559,"events_dropped":0,"avg_latency_ms":16.81287168039356,"throughput_eps":0,"last_update":"2026-03-21T15:58:39.209992582Z"} +2026/03/21 15:58:44 [transform_engine] {"stage_name":"transform_engine","events_processed":559,"events_dropped":0,"avg_latency_ms":516.5373875139453,"throughput_eps":0,"last_update":"2026-03-21T15:58:39.210021808Z"} +2026/03/21 15:58:44 [log_collector] {"stage_name":"log_collector","events_processed":26428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5285.6,"last_update":"2026-03-21T15:58:39.068772658Z"} +2026/03/21 15:58:44 [metric_collector] {"stage_name":"metric_collector","events_processed":16789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3357.8,"last_update":"2026-03-21T15:58:39.068873531Z"} +2026/03/21 15:58:44 ───────────────────────────────────────────────── +2026/03/21 15:58:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:58:49 [detection_layer] {"stage_name":"detection_layer","events_processed":559,"events_dropped":0,"avg_latency_ms":16.81287168039356,"throughput_eps":0,"last_update":"2026-03-21T15:58:44.210445445Z"} +2026/03/21 15:58:49 [transform_engine] {"stage_name":"transform_engine","events_processed":559,"events_dropped":0,"avg_latency_ms":516.5373875139453,"throughput_eps":0,"last_update":"2026-03-21T15:58:44.210425167Z"} +2026/03/21 15:58:49 [log_collector] {"stage_name":"log_collector","events_processed":26428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5285.6,"last_update":"2026-03-21T15:58:44.068698481Z"} +2026/03/21 15:58:49 [metric_collector] {"stage_name":"metric_collector","events_processed":16794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3358.8,"last_update":"2026-03-21T15:58:44.069118195Z"} +2026/03/21 15:58:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:58:44.07916082Z"} +2026/03/21 15:58:49 ───────────────────────────────────────────────── +2026/03/21 15:58:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:58:54 [log_collector] {"stage_name":"log_collector","events_processed":26428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5285.6,"last_update":"2026-03-21T15:58:49.068803369Z"} +2026/03/21 15:58:54 [metric_collector] {"stage_name":"metric_collector","events_processed":16799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3359.8,"last_update":"2026-03-21T15:58:49.069132009Z"} +2026/03/21 15:58:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6722,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:58:49.077753843Z"} +2026/03/21 15:58:54 [detection_layer] {"stage_name":"detection_layer","events_processed":559,"events_dropped":0,"avg_latency_ms":16.81287168039356,"throughput_eps":0,"last_update":"2026-03-21T15:58:49.20995811Z"} +2026/03/21 15:58:54 [transform_engine] {"stage_name":"transform_engine","events_processed":560,"events_dropped":0,"avg_latency_ms":427.43668901115626,"throughput_eps":0,"last_update":"2026-03-21T15:58:49.281021801Z"} +2026/03/21 15:58:54 ───────────────────────────────────────────────── +2026/03/21 15:58:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:58:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:58:54.078290021Z"} +2026/03/21 15:58:59 [detection_layer] {"stage_name":"detection_layer","events_processed":560,"events_dropped":0,"avg_latency_ms":16.39420994431485,"throughput_eps":0,"last_update":"2026-03-21T15:58:54.210598137Z"} +2026/03/21 15:58:59 [transform_engine] {"stage_name":"transform_engine","events_processed":560,"events_dropped":0,"avg_latency_ms":427.43668901115626,"throughput_eps":0,"last_update":"2026-03-21T15:58:54.210619006Z"} +2026/03/21 15:58:59 [log_collector] {"stage_name":"log_collector","events_processed":26428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5285.6,"last_update":"2026-03-21T15:58:54.068582317Z"} +2026/03/21 15:58:59 [metric_collector] {"stage_name":"metric_collector","events_processed":16804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3360.8,"last_update":"2026-03-21T15:58:54.068966833Z"} +2026/03/21 15:58:59 ───────────────────────────────────────────────── +2026/03/21 15:59:04 ── Pipeline Health ────────────────────────────── +2026/03/21 15:59:04 [detection_layer] {"stage_name":"detection_layer","events_processed":560,"events_dropped":0,"avg_latency_ms":16.39420994431485,"throughput_eps":0,"last_update":"2026-03-21T15:58:59.210927539Z"} +2026/03/21 15:59:04 [transform_engine] {"stage_name":"transform_engine","events_processed":560,"events_dropped":0,"avg_latency_ms":427.43668901115626,"throughput_eps":0,"last_update":"2026-03-21T15:58:59.209791192Z"} +2026/03/21 15:59:04 [log_collector] {"stage_name":"log_collector","events_processed":26428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5285.6,"last_update":"2026-03-21T15:58:59.068090516Z"} +2026/03/21 15:59:04 [metric_collector] {"stage_name":"metric_collector","events_processed":16809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3361.8,"last_update":"2026-03-21T15:58:59.068376785Z"} +2026/03/21 15:59:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:58:59.077634546Z"} +2026/03/21 15:59:04 ───────────────────────────────────────────────── +2026/03/21 15:59:09 ── Pipeline Health ────────────────────────────── +2026/03/21 15:59:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6728,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:59:04.079508601Z"} +2026/03/21 15:59:09 [detection_layer] {"stage_name":"detection_layer","events_processed":560,"events_dropped":0,"avg_latency_ms":16.39420994431485,"throughput_eps":0,"last_update":"2026-03-21T15:59:04.210881375Z"} +2026/03/21 15:59:09 [transform_engine] {"stage_name":"transform_engine","events_processed":560,"events_dropped":0,"avg_latency_ms":427.43668901115626,"throughput_eps":0,"last_update":"2026-03-21T15:59:04.20974008Z"} +2026/03/21 15:59:09 [log_collector] {"stage_name":"log_collector","events_processed":26428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5285.6,"last_update":"2026-03-21T15:59:04.068284433Z"} +2026/03/21 15:59:09 [metric_collector] {"stage_name":"metric_collector","events_processed":16814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3362.8,"last_update":"2026-03-21T15:59:04.068537328Z"} +2026/03/21 15:59:09 ───────────────────────────────────────────────── +2026/03/21 15:59:14 ── Pipeline Health ────────────────────────────── +2026/03/21 15:59:14 [transform_engine] {"stage_name":"transform_engine","events_processed":560,"events_dropped":0,"avg_latency_ms":427.43668901115626,"throughput_eps":0,"last_update":"2026-03-21T15:59:09.209970967Z"} +2026/03/21 15:59:14 [log_collector] {"stage_name":"log_collector","events_processed":26428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5285.6,"last_update":"2026-03-21T15:59:09.068089945Z"} +2026/03/21 15:59:14 [metric_collector] {"stage_name":"metric_collector","events_processed":16819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3363.8,"last_update":"2026-03-21T15:59:09.068470504Z"} +2026/03/21 15:59:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6730,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:59:09.077684662Z"} +2026/03/21 15:59:14 [detection_layer] {"stage_name":"detection_layer","events_processed":560,"events_dropped":0,"avg_latency_ms":16.39420994431485,"throughput_eps":0,"last_update":"2026-03-21T15:59:09.209942934Z"} +2026/03/21 15:59:14 ───────────────────────────────────────────────── +2026/03/21 15:59:19 ── Pipeline Health ────────────────────────────── +2026/03/21 15:59:19 [transform_engine] {"stage_name":"transform_engine","events_processed":560,"events_dropped":0,"avg_latency_ms":427.43668901115626,"throughput_eps":0,"last_update":"2026-03-21T15:59:14.210392782Z"} +2026/03/21 15:59:19 [log_collector] {"stage_name":"log_collector","events_processed":26428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5285.6,"last_update":"2026-03-21T15:59:14.06831318Z"} +2026/03/21 15:59:19 [metric_collector] {"stage_name":"metric_collector","events_processed":16824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3364.8,"last_update":"2026-03-21T15:59:14.068728346Z"} +2026/03/21 15:59:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:59:14.077124617Z"} +2026/03/21 15:59:19 [detection_layer] {"stage_name":"detection_layer","events_processed":560,"events_dropped":0,"avg_latency_ms":16.39420994431485,"throughput_eps":0,"last_update":"2026-03-21T15:59:14.210409945Z"} +2026/03/21 15:59:19 ───────────────────────────────────────────────── +Saved state: 18 clusters, 26429 messages, reason: none +2026/03/21 15:59:24 ── Pipeline Health ────────────────────────────── +2026/03/21 15:59:24 [transform_engine] {"stage_name":"transform_engine","events_processed":561,"events_dropped":0,"avg_latency_ms":361.13512060892504,"throughput_eps":0,"last_update":"2026-03-21T15:59:19.305658729Z"} +2026/03/21 15:59:24 [log_collector] {"stage_name":"log_collector","events_processed":26428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5285.6,"last_update":"2026-03-21T15:59:19.068891457Z"} +2026/03/21 15:59:24 [metric_collector] {"stage_name":"metric_collector","events_processed":16829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3365.8,"last_update":"2026-03-21T15:59:19.069164941Z"} +2026/03/21 15:59:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:59:19.075557926Z"} +2026/03/21 15:59:24 [detection_layer] {"stage_name":"detection_layer","events_processed":560,"events_dropped":0,"avg_latency_ms":16.39420994431485,"throughput_eps":0,"last_update":"2026-03-21T15:59:19.209936447Z"} +2026/03/21 15:59:24 ───────────────────────────────────────────────── +2026/03/21 15:59:29 ── Pipeline Health ────────────────────────────── +2026/03/21 15:59:29 [metric_collector] {"stage_name":"metric_collector","events_processed":16834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3366.8,"last_update":"2026-03-21T15:59:24.069118934Z"} +2026/03/21 15:59:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6736,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:59:24.075457875Z"} +2026/03/21 15:59:29 [detection_layer] {"stage_name":"detection_layer","events_processed":561,"events_dropped":0,"avg_latency_ms":16.23130815545188,"throughput_eps":0,"last_update":"2026-03-21T15:59:24.210836993Z"} +2026/03/21 15:59:29 [transform_engine] {"stage_name":"transform_engine","events_processed":561,"events_dropped":0,"avg_latency_ms":361.13512060892504,"throughput_eps":0,"last_update":"2026-03-21T15:59:24.20969189Z"} +2026/03/21 15:59:29 [log_collector] {"stage_name":"log_collector","events_processed":26439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5287.8,"last_update":"2026-03-21T15:59:24.068945061Z"} +2026/03/21 15:59:29 ───────────────────────────────────────────────── +2026/03/21 15:59:34 ── Pipeline Health ────────────────────────────── +2026/03/21 15:59:34 [log_collector] {"stage_name":"log_collector","events_processed":26504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5300.8,"last_update":"2026-03-21T15:59:29.068344864Z"} +2026/03/21 15:59:34 [metric_collector] {"stage_name":"metric_collector","events_processed":16839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3367.8,"last_update":"2026-03-21T15:59:29.068581768Z"} +2026/03/21 15:59:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6738,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:59:29.077494579Z"} +2026/03/21 15:59:34 [detection_layer] {"stage_name":"detection_layer","events_processed":561,"events_dropped":0,"avg_latency_ms":16.23130815545188,"throughput_eps":0,"last_update":"2026-03-21T15:59:29.210787841Z"} +2026/03/21 15:59:34 [transform_engine] {"stage_name":"transform_engine","events_processed":561,"events_dropped":0,"avg_latency_ms":361.13512060892504,"throughput_eps":0,"last_update":"2026-03-21T15:59:29.209689638Z"} +2026/03/21 15:59:34 ───────────────────────────────────────────────── +2026/03/21 15:59:39 ── Pipeline Health ────────────────────────────── +2026/03/21 15:59:39 [log_collector] {"stage_name":"log_collector","events_processed":26679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5335.8,"last_update":"2026-03-21T15:59:34.068579918Z"} +2026/03/21 15:59:39 [metric_collector] {"stage_name":"metric_collector","events_processed":16844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3368.8,"last_update":"2026-03-21T15:59:34.069119161Z"} +2026/03/21 15:59:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6740,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:59:34.077641173Z"} +2026/03/21 15:59:39 [detection_layer] {"stage_name":"detection_layer","events_processed":561,"events_dropped":0,"avg_latency_ms":16.23130815545188,"throughput_eps":0,"last_update":"2026-03-21T15:59:34.209857353Z"} +2026/03/21 15:59:39 [transform_engine] {"stage_name":"transform_engine","events_processed":561,"events_dropped":0,"avg_latency_ms":361.13512060892504,"throughput_eps":0,"last_update":"2026-03-21T15:59:34.209815393Z"} +2026/03/21 15:59:39 ───────────────────────────────────────────────── +2026/03/21 15:59:44 ── Pipeline Health ────────────────────────────── +2026/03/21 15:59:44 [log_collector] {"stage_name":"log_collector","events_processed":26772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5354.4,"last_update":"2026-03-21T15:59:39.068927379Z"} +2026/03/21 15:59:44 [metric_collector] {"stage_name":"metric_collector","events_processed":16849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3369.8,"last_update":"2026-03-21T15:59:39.069034133Z"} +2026/03/21 15:59:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:59:39.077444472Z"} +2026/03/21 15:59:44 [detection_layer] {"stage_name":"detection_layer","events_processed":561,"events_dropped":0,"avg_latency_ms":16.23130815545188,"throughput_eps":0,"last_update":"2026-03-21T15:59:39.210682128Z"} +2026/03/21 15:59:44 [transform_engine] {"stage_name":"transform_engine","events_processed":561,"events_dropped":0,"avg_latency_ms":361.13512060892504,"throughput_eps":0,"last_update":"2026-03-21T15:59:39.210789103Z"} +2026/03/21 15:59:44 ───────────────────────────────────────────────── +2026/03/21 15:59:49 ── Pipeline Health ────────────────────────────── +2026/03/21 15:59:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:59:44.077512279Z"} +2026/03/21 15:59:49 [detection_layer] {"stage_name":"detection_layer","events_processed":561,"events_dropped":0,"avg_latency_ms":16.23130815545188,"throughput_eps":0,"last_update":"2026-03-21T15:59:44.210729797Z"} +2026/03/21 15:59:49 [transform_engine] {"stage_name":"transform_engine","events_processed":561,"events_dropped":0,"avg_latency_ms":361.13512060892504,"throughput_eps":0,"last_update":"2026-03-21T15:59:44.209641012Z"} +2026/03/21 15:59:49 [log_collector] {"stage_name":"log_collector","events_processed":26772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5354.4,"last_update":"2026-03-21T15:59:44.068655686Z"} +2026/03/21 15:59:49 [metric_collector] {"stage_name":"metric_collector","events_processed":16854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3370.8,"last_update":"2026-03-21T15:59:44.068940261Z"} +2026/03/21 15:59:49 ───────────────────────────────────────────────── +2026/03/21 15:59:54 ── Pipeline Health ────────────────────────────── +2026/03/21 15:59:54 [log_collector] {"stage_name":"log_collector","events_processed":26772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5354.4,"last_update":"2026-03-21T15:59:54.068079142Z"} +2026/03/21 15:59:54 [metric_collector] {"stage_name":"metric_collector","events_processed":16859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3371.8,"last_update":"2026-03-21T15:59:49.068888321Z"} +2026/03/21 15:59:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:59:49.078459743Z"} +2026/03/21 15:59:54 [detection_layer] {"stage_name":"detection_layer","events_processed":561,"events_dropped":0,"avg_latency_ms":16.23130815545188,"throughput_eps":0,"last_update":"2026-03-21T15:59:49.210844838Z"} +2026/03/21 15:59:54 [transform_engine] {"stage_name":"transform_engine","events_processed":562,"events_dropped":0,"avg_latency_ms":322.00347568714005,"throughput_eps":0,"last_update":"2026-03-21T15:59:49.375126404Z"} +2026/03/21 15:59:54 ───────────────────────────────────────────────── +2026/03/21 15:59:59 ── Pipeline Health ────────────────────────────── +2026/03/21 15:59:59 [log_collector] {"stage_name":"log_collector","events_processed":26772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5354.4,"last_update":"2026-03-21T15:59:54.068079142Z"} +2026/03/21 15:59:59 [metric_collector] {"stage_name":"metric_collector","events_processed":16864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3372.8,"last_update":"2026-03-21T15:59:54.068320314Z"} +2026/03/21 15:59:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:59:54.078067273Z"} +2026/03/21 15:59:59 [detection_layer] {"stage_name":"detection_layer","events_processed":562,"events_dropped":0,"avg_latency_ms":16.520726724361506,"throughput_eps":0,"last_update":"2026-03-21T15:59:54.210390237Z"} +2026/03/21 15:59:59 [transform_engine] {"stage_name":"transform_engine","events_processed":562,"events_dropped":0,"avg_latency_ms":322.00347568714005,"throughput_eps":0,"last_update":"2026-03-21T15:59:54.21040156Z"} +2026/03/21 15:59:59 ───────────────────────────────────────────────── +2026/03/21 16:00:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:00:04 [log_collector] {"stage_name":"log_collector","events_processed":26772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5354.4,"last_update":"2026-03-21T15:59:59.068629849Z"} +2026/03/21 16:00:04 [metric_collector] {"stage_name":"metric_collector","events_processed":16869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3373.8,"last_update":"2026-03-21T15:59:59.068966354Z"} +2026/03/21 16:00:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6750,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T15:59:59.078101441Z"} +2026/03/21 16:00:04 [detection_layer] {"stage_name":"detection_layer","events_processed":562,"events_dropped":0,"avg_latency_ms":16.520726724361506,"throughput_eps":0,"last_update":"2026-03-21T15:59:59.210344512Z"} +2026/03/21 16:00:04 [transform_engine] {"stage_name":"transform_engine","events_processed":562,"events_dropped":0,"avg_latency_ms":322.00347568714005,"throughput_eps":0,"last_update":"2026-03-21T15:59:59.210376785Z"} +2026/03/21 16:00:04 ───────────────────────────────────────────────── +2026/03/21 16:00:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:00:09 [log_collector] {"stage_name":"log_collector","events_processed":26772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5354.4,"last_update":"2026-03-21T16:00:04.06882199Z"} +2026/03/21 16:00:09 [metric_collector] {"stage_name":"metric_collector","events_processed":16874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3374.8,"last_update":"2026-03-21T16:00:04.06911914Z"} +2026/03/21 16:00:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6752,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:00:04.08214034Z"} +2026/03/21 16:00:09 [detection_layer] {"stage_name":"detection_layer","events_processed":562,"events_dropped":0,"avg_latency_ms":16.520726724361506,"throughput_eps":0,"last_update":"2026-03-21T16:00:04.210403048Z"} +2026/03/21 16:00:09 [transform_engine] {"stage_name":"transform_engine","events_processed":562,"events_dropped":0,"avg_latency_ms":322.00347568714005,"throughput_eps":0,"last_update":"2026-03-21T16:00:04.210417605Z"} +2026/03/21 16:00:09 ───────────────────────────────────────────────── +2026/03/21 16:00:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:00:14 [detection_layer] {"stage_name":"detection_layer","events_processed":562,"events_dropped":0,"avg_latency_ms":16.520726724361506,"throughput_eps":0,"last_update":"2026-03-21T16:00:09.210049525Z"} +2026/03/21 16:00:14 [transform_engine] {"stage_name":"transform_engine","events_processed":562,"events_dropped":0,"avg_latency_ms":322.00347568714005,"throughput_eps":0,"last_update":"2026-03-21T16:00:09.210062059Z"} +2026/03/21 16:00:14 [log_collector] {"stage_name":"log_collector","events_processed":26772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5354.4,"last_update":"2026-03-21T16:00:09.068096215Z"} +2026/03/21 16:00:14 [metric_collector] {"stage_name":"metric_collector","events_processed":16879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3375.8,"last_update":"2026-03-21T16:00:09.068493396Z"} +2026/03/21 16:00:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:00:09.078830725Z"} +2026/03/21 16:00:14 ───────────────────────────────────────────────── +2026/03/21 16:00:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:00:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:00:14.078292942Z"} +2026/03/21 16:00:19 [detection_layer] {"stage_name":"detection_layer","events_processed":562,"events_dropped":0,"avg_latency_ms":16.520726724361506,"throughput_eps":0,"last_update":"2026-03-21T16:00:14.210544581Z"} +2026/03/21 16:00:19 [transform_engine] {"stage_name":"transform_engine","events_processed":562,"events_dropped":0,"avg_latency_ms":322.00347568714005,"throughput_eps":0,"last_update":"2026-03-21T16:00:14.21064304Z"} +2026/03/21 16:00:19 [log_collector] {"stage_name":"log_collector","events_processed":26772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5354.4,"last_update":"2026-03-21T16:00:14.068649922Z"} +2026/03/21 16:00:19 [metric_collector] {"stage_name":"metric_collector","events_processed":16884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3376.8,"last_update":"2026-03-21T16:00:14.069008009Z"} +2026/03/21 16:00:19 ───────────────────────────────────────────────── +2026/03/21 16:00:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:00:24 [transform_engine] {"stage_name":"transform_engine","events_processed":563,"events_dropped":0,"avg_latency_ms":501.6336055497121,"throughput_eps":0,"last_update":"2026-03-21T16:00:20.430682854Z"} +2026/03/21 16:00:24 [log_collector] {"stage_name":"log_collector","events_processed":26788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5357.6,"last_update":"2026-03-21T16:00:19.068956028Z"} +2026/03/21 16:00:24 [metric_collector] {"stage_name":"metric_collector","events_processed":16889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3377.8,"last_update":"2026-03-21T16:00:19.069180798Z"} +2026/03/21 16:00:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6758,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:00:19.077844012Z"} +2026/03/21 16:00:24 [detection_layer] {"stage_name":"detection_layer","events_processed":562,"events_dropped":0,"avg_latency_ms":16.520726724361506,"throughput_eps":0,"last_update":"2026-03-21T16:00:19.210087925Z"} +2026/03/21 16:00:24 ───────────────────────────────────────────────── +2026/03/21 16:00:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:00:29 [log_collector] {"stage_name":"log_collector","events_processed":26788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5357.6,"last_update":"2026-03-21T16:00:24.068746877Z"} +2026/03/21 16:00:29 [metric_collector] {"stage_name":"metric_collector","events_processed":16894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3378.8,"last_update":"2026-03-21T16:00:24.068995974Z"} +2026/03/21 16:00:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:00:24.079268701Z"} +2026/03/21 16:00:29 [detection_layer] {"stage_name":"detection_layer","events_processed":563,"events_dropped":0,"avg_latency_ms":17.476665179489206,"throughput_eps":0,"last_update":"2026-03-21T16:00:24.210540993Z"} +2026/03/21 16:00:29 [transform_engine] {"stage_name":"transform_engine","events_processed":563,"events_dropped":0,"avg_latency_ms":501.6336055497121,"throughput_eps":0,"last_update":"2026-03-21T16:00:24.21051315Z"} +2026/03/21 16:00:29 ───────────────────────────────────────────────── +2026/03/21 16:00:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:00:34 [log_collector] {"stage_name":"log_collector","events_processed":26788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5357.6,"last_update":"2026-03-21T16:00:34.068267794Z"} +2026/03/21 16:00:34 [metric_collector] {"stage_name":"metric_collector","events_processed":16899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3379.8,"last_update":"2026-03-21T16:00:29.069157886Z"} +2026/03/21 16:00:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:00:29.07719037Z"} +2026/03/21 16:00:34 [detection_layer] {"stage_name":"detection_layer","events_processed":563,"events_dropped":0,"avg_latency_ms":17.476665179489206,"throughput_eps":0,"last_update":"2026-03-21T16:00:29.210569839Z"} +2026/03/21 16:00:34 [transform_engine] {"stage_name":"transform_engine","events_processed":563,"events_dropped":0,"avg_latency_ms":501.6336055497121,"throughput_eps":0,"last_update":"2026-03-21T16:00:29.210687515Z"} +2026/03/21 16:00:34 ───────────────────────────────────────────────── +2026/03/21 16:00:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:00:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:00:34.078116598Z"} +2026/03/21 16:00:39 [detection_layer] {"stage_name":"detection_layer","events_processed":563,"events_dropped":0,"avg_latency_ms":17.476665179489206,"throughput_eps":0,"last_update":"2026-03-21T16:00:34.210428301Z"} +2026/03/21 16:00:39 [transform_engine] {"stage_name":"transform_engine","events_processed":563,"events_dropped":0,"avg_latency_ms":501.6336055497121,"throughput_eps":0,"last_update":"2026-03-21T16:00:34.210473157Z"} +2026/03/21 16:00:39 [log_collector] {"stage_name":"log_collector","events_processed":26788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5357.6,"last_update":"2026-03-21T16:00:34.068267794Z"} +2026/03/21 16:00:39 [metric_collector] {"stage_name":"metric_collector","events_processed":16904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3380.8,"last_update":"2026-03-21T16:00:34.06870436Z"} +2026/03/21 16:00:39 ───────────────────────────────────────────────── +2026/03/21 16:00:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:00:44 [detection_layer] {"stage_name":"detection_layer","events_processed":563,"events_dropped":0,"avg_latency_ms":17.476665179489206,"throughput_eps":0,"last_update":"2026-03-21T16:00:39.211332058Z"} +2026/03/21 16:00:44 [transform_engine] {"stage_name":"transform_engine","events_processed":563,"events_dropped":0,"avg_latency_ms":501.6336055497121,"throughput_eps":0,"last_update":"2026-03-21T16:00:39.211397212Z"} +2026/03/21 16:00:44 [log_collector] {"stage_name":"log_collector","events_processed":26788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5357.6,"last_update":"2026-03-21T16:00:39.068442113Z"} +2026/03/21 16:00:44 [metric_collector] {"stage_name":"metric_collector","events_processed":16909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3381.8,"last_update":"2026-03-21T16:00:39.068343424Z"} +2026/03/21 16:00:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6766,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:00:39.078039095Z"} +2026/03/21 16:00:44 ───────────────────────────────────────────────── +2026/03/21 16:00:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:00:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6768,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:00:44.078114083Z"} +2026/03/21 16:00:49 [detection_layer] {"stage_name":"detection_layer","events_processed":563,"events_dropped":0,"avg_latency_ms":17.476665179489206,"throughput_eps":0,"last_update":"2026-03-21T16:00:44.210512683Z"} +2026/03/21 16:00:49 [transform_engine] {"stage_name":"transform_engine","events_processed":563,"events_dropped":0,"avg_latency_ms":501.6336055497121,"throughput_eps":0,"last_update":"2026-03-21T16:00:44.210609098Z"} +2026/03/21 16:00:49 [log_collector] {"stage_name":"log_collector","events_processed":26788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5357.6,"last_update":"2026-03-21T16:00:44.068982703Z"} +2026/03/21 16:00:49 [metric_collector] {"stage_name":"metric_collector","events_processed":16914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3382.8,"last_update":"2026-03-21T16:00:44.069171054Z"} +2026/03/21 16:00:49 ───────────────────────────────────────────────── +2026/03/21 16:00:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:00:54 [log_collector] {"stage_name":"log_collector","events_processed":26788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5357.6,"last_update":"2026-03-21T16:00:49.068935842Z"} +2026/03/21 16:00:54 [metric_collector] {"stage_name":"metric_collector","events_processed":16919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3383.8,"last_update":"2026-03-21T16:00:49.068925613Z"} +2026/03/21 16:00:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6770,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:00:49.076849499Z"} +2026/03/21 16:00:54 [detection_layer] {"stage_name":"detection_layer","events_processed":563,"events_dropped":0,"avg_latency_ms":17.476665179489206,"throughput_eps":0,"last_update":"2026-03-21T16:00:49.210228437Z"} +2026/03/21 16:00:54 [transform_engine] {"stage_name":"transform_engine","events_processed":564,"events_dropped":0,"avg_latency_ms":425.1946438397697,"throughput_eps":0,"last_update":"2026-03-21T16:00:49.329710287Z"} +2026/03/21 16:00:54 ───────────────────────────────────────────────── +2026/03/21 16:00:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:00:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:00:54.078060748Z"} +2026/03/21 16:00:59 [detection_layer] {"stage_name":"detection_layer","events_processed":564,"events_dropped":0,"avg_latency_ms":17.838952743591367,"throughput_eps":0,"last_update":"2026-03-21T16:00:54.210285416Z"} +2026/03/21 16:00:59 [transform_engine] {"stage_name":"transform_engine","events_processed":564,"events_dropped":0,"avg_latency_ms":425.1946438397697,"throughput_eps":0,"last_update":"2026-03-21T16:00:54.210296957Z"} +2026/03/21 16:00:59 [log_collector] {"stage_name":"log_collector","events_processed":26788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5357.6,"last_update":"2026-03-21T16:00:54.068213026Z"} +2026/03/21 16:00:59 [metric_collector] {"stage_name":"metric_collector","events_processed":16924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3384.8,"last_update":"2026-03-21T16:00:54.068719516Z"} +2026/03/21 16:00:59 ───────────────────────────────────────────────── +2026/03/21 16:01:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:01:04 [transform_engine] {"stage_name":"transform_engine","events_processed":564,"events_dropped":0,"avg_latency_ms":425.1946438397697,"throughput_eps":0,"last_update":"2026-03-21T16:00:59.210175465Z"} +2026/03/21 16:01:04 [log_collector] {"stage_name":"log_collector","events_processed":26788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5357.6,"last_update":"2026-03-21T16:00:59.069167495Z"} +2026/03/21 16:01:04 [metric_collector] {"stage_name":"metric_collector","events_processed":16929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3385.8,"last_update":"2026-03-21T16:00:59.069155311Z"} +2026/03/21 16:01:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:00:59.078874657Z"} +2026/03/21 16:01:04 [detection_layer] {"stage_name":"detection_layer","events_processed":564,"events_dropped":0,"avg_latency_ms":17.838952743591367,"throughput_eps":0,"last_update":"2026-03-21T16:00:59.210205854Z"} +2026/03/21 16:01:04 ───────────────────────────────────────────────── +2026/03/21 16:01:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:01:09 [detection_layer] {"stage_name":"detection_layer","events_processed":564,"events_dropped":0,"avg_latency_ms":17.838952743591367,"throughput_eps":0,"last_update":"2026-03-21T16:01:04.210067861Z"} +2026/03/21 16:01:09 [transform_engine] {"stage_name":"transform_engine","events_processed":564,"events_dropped":0,"avg_latency_ms":425.1946438397697,"throughput_eps":0,"last_update":"2026-03-21T16:01:04.209892646Z"} +2026/03/21 16:01:09 [log_collector] {"stage_name":"log_collector","events_processed":26788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5357.6,"last_update":"2026-03-21T16:01:04.068684601Z"} +2026/03/21 16:01:09 [metric_collector] {"stage_name":"metric_collector","events_processed":16934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3386.8,"last_update":"2026-03-21T16:01:04.069266246Z"} +2026/03/21 16:01:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:01:04.078741084Z"} +2026/03/21 16:01:09 ───────────────────────────────────────────────── +2026/03/21 16:01:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:01:14 [transform_engine] {"stage_name":"transform_engine","events_processed":564,"events_dropped":0,"avg_latency_ms":425.1946438397697,"throughput_eps":0,"last_update":"2026-03-21T16:01:09.210539176Z"} +2026/03/21 16:01:14 [log_collector] {"stage_name":"log_collector","events_processed":26788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5357.6,"last_update":"2026-03-21T16:01:09.068084275Z"} +2026/03/21 16:01:14 [metric_collector] {"stage_name":"metric_collector","events_processed":16939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3387.8,"last_update":"2026-03-21T16:01:09.068272586Z"} +2026/03/21 16:01:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:01:09.078244756Z"} +2026/03/21 16:01:14 [detection_layer] {"stage_name":"detection_layer","events_processed":564,"events_dropped":0,"avg_latency_ms":17.838952743591367,"throughput_eps":0,"last_update":"2026-03-21T16:01:09.210575076Z"} +2026/03/21 16:01:14 ───────────────────────────────────────────────── +2026/03/21 16:01:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:01:19 [detection_layer] {"stage_name":"detection_layer","events_processed":564,"events_dropped":0,"avg_latency_ms":17.838952743591367,"throughput_eps":0,"last_update":"2026-03-21T16:01:14.210734376Z"} +2026/03/21 16:01:19 [transform_engine] {"stage_name":"transform_engine","events_processed":564,"events_dropped":0,"avg_latency_ms":425.1946438397697,"throughput_eps":0,"last_update":"2026-03-21T16:01:14.209647654Z"} +2026/03/21 16:01:19 [log_collector] {"stage_name":"log_collector","events_processed":26788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5357.6,"last_update":"2026-03-21T16:01:14.068067448Z"} +2026/03/21 16:01:19 [metric_collector] {"stage_name":"metric_collector","events_processed":16944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3388.8,"last_update":"2026-03-21T16:01:14.068234919Z"} +2026/03/21 16:01:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6780,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:01:14.07852606Z"} +2026/03/21 16:01:19 ───────────────────────────────────────────────── +2026/03/21 16:01:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:01:24 [log_collector] {"stage_name":"log_collector","events_processed":26788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5357.6,"last_update":"2026-03-21T16:01:19.068749529Z"} +2026/03/21 16:01:24 [metric_collector] {"stage_name":"metric_collector","events_processed":16949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3389.8,"last_update":"2026-03-21T16:01:19.069044023Z"} +2026/03/21 16:01:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6782,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:01:19.077438672Z"} +2026/03/21 16:01:24 [detection_layer] {"stage_name":"detection_layer","events_processed":564,"events_dropped":0,"avg_latency_ms":17.838952743591367,"throughput_eps":0,"last_update":"2026-03-21T16:01:19.210690226Z"} +2026/03/21 16:01:24 [transform_engine] {"stage_name":"transform_engine","events_processed":565,"events_dropped":0,"avg_latency_ms":354.9525382718158,"throughput_eps":0,"last_update":"2026-03-21T16:01:19.284725359Z"} +2026/03/21 16:01:24 ───────────────────────────────────────────────── +2026/03/21 16:01:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:01:29 [log_collector] {"stage_name":"log_collector","events_processed":26788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5357.6,"last_update":"2026-03-21T16:01:24.068984597Z"} +2026/03/21 16:01:29 [metric_collector] {"stage_name":"metric_collector","events_processed":16954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3390.8,"last_update":"2026-03-21T16:01:24.069426423Z"} +2026/03/21 16:01:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:01:24.07928699Z"} +2026/03/21 16:01:29 [detection_layer] {"stage_name":"detection_layer","events_processed":565,"events_dropped":0,"avg_latency_ms":18.891221194873093,"throughput_eps":0,"last_update":"2026-03-21T16:01:24.210570856Z"} +2026/03/21 16:01:29 [transform_engine] {"stage_name":"transform_engine","events_processed":565,"events_dropped":0,"avg_latency_ms":354.9525382718158,"throughput_eps":0,"last_update":"2026-03-21T16:01:24.21052626Z"} +2026/03/21 16:01:29 ───────────────────────────────────────────────── +2026/03/21 16:01:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:01:34 [log_collector] {"stage_name":"log_collector","events_processed":26788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5357.6,"last_update":"2026-03-21T16:01:29.068932104Z"} +2026/03/21 16:01:34 [metric_collector] {"stage_name":"metric_collector","events_processed":16959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3391.8,"last_update":"2026-03-21T16:01:29.06923265Z"} +2026/03/21 16:01:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:01:29.078267845Z"} +2026/03/21 16:01:34 [detection_layer] {"stage_name":"detection_layer","events_processed":565,"events_dropped":0,"avg_latency_ms":18.891221194873093,"throughput_eps":0,"last_update":"2026-03-21T16:01:29.21060576Z"} +2026/03/21 16:01:34 [transform_engine] {"stage_name":"transform_engine","events_processed":565,"events_dropped":0,"avg_latency_ms":354.9525382718158,"throughput_eps":0,"last_update":"2026-03-21T16:01:29.21048582Z"} +2026/03/21 16:01:34 ───────────────────────────────────────────────── +2026/03/21 16:01:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:01:39 [log_collector] {"stage_name":"log_collector","events_processed":26788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5357.6,"last_update":"2026-03-21T16:01:34.068222806Z"} +2026/03/21 16:01:39 [metric_collector] {"stage_name":"metric_collector","events_processed":16964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3392.8,"last_update":"2026-03-21T16:01:34.06863222Z"} +2026/03/21 16:01:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:01:34.078092089Z"} +2026/03/21 16:01:39 [detection_layer] {"stage_name":"detection_layer","events_processed":565,"events_dropped":0,"avg_latency_ms":18.891221194873093,"throughput_eps":0,"last_update":"2026-03-21T16:01:34.210394075Z"} +2026/03/21 16:01:39 [transform_engine] {"stage_name":"transform_engine","events_processed":565,"events_dropped":0,"avg_latency_ms":354.9525382718158,"throughput_eps":0,"last_update":"2026-03-21T16:01:34.210370008Z"} +2026/03/21 16:01:39 ───────────────────────────────────────────────── +2026/03/21 16:01:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:01:44 [metric_collector] {"stage_name":"metric_collector","events_processed":16969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3393.8,"last_update":"2026-03-21T16:01:39.068623685Z"} +2026/03/21 16:01:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:01:39.078497717Z"} +2026/03/21 16:01:44 [detection_layer] {"stage_name":"detection_layer","events_processed":565,"events_dropped":0,"avg_latency_ms":18.891221194873093,"throughput_eps":0,"last_update":"2026-03-21T16:01:39.210791197Z"} +2026/03/21 16:01:44 [transform_engine] {"stage_name":"transform_engine","events_processed":565,"events_dropped":0,"avg_latency_ms":354.9525382718158,"throughput_eps":0,"last_update":"2026-03-21T16:01:39.209648688Z"} +2026/03/21 16:01:44 [log_collector] {"stage_name":"log_collector","events_processed":26788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5357.6,"last_update":"2026-03-21T16:01:39.06819297Z"} +2026/03/21 16:01:44 ───────────────────────────────────────────────── +2026/03/21 16:01:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:01:49 [detection_layer] {"stage_name":"detection_layer","events_processed":565,"events_dropped":0,"avg_latency_ms":18.891221194873093,"throughput_eps":0,"last_update":"2026-03-21T16:01:44.21066118Z"} +2026/03/21 16:01:49 [transform_engine] {"stage_name":"transform_engine","events_processed":565,"events_dropped":0,"avg_latency_ms":354.9525382718158,"throughput_eps":0,"last_update":"2026-03-21T16:01:44.210611234Z"} +2026/03/21 16:01:49 [log_collector] {"stage_name":"log_collector","events_processed":26788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5357.6,"last_update":"2026-03-21T16:01:44.068607788Z"} +2026/03/21 16:01:49 [metric_collector] {"stage_name":"metric_collector","events_processed":16974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3394.8,"last_update":"2026-03-21T16:01:44.068915777Z"} +2026/03/21 16:01:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:01:44.079272403Z"} +2026/03/21 16:01:49 ───────────────────────────────────────────────── +2026/03/21 16:01:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:01:54 [log_collector] {"stage_name":"log_collector","events_processed":26788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5357.6,"last_update":"2026-03-21T16:01:49.068698345Z"} +2026/03/21 16:01:54 [metric_collector] {"stage_name":"metric_collector","events_processed":16979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3395.8,"last_update":"2026-03-21T16:01:49.068950377Z"} +2026/03/21 16:01:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:01:49.079276996Z"} +2026/03/21 16:01:54 [detection_layer] {"stage_name":"detection_layer","events_processed":565,"events_dropped":0,"avg_latency_ms":18.891221194873093,"throughput_eps":0,"last_update":"2026-03-21T16:01:49.211449093Z"} +2026/03/21 16:01:54 [transform_engine] {"stage_name":"transform_engine","events_processed":566,"events_dropped":0,"avg_latency_ms":298.89940101745265,"throughput_eps":0,"last_update":"2026-03-21T16:01:49.285178191Z"} +2026/03/21 16:01:54 ───────────────────────────────────────────────── +2026/03/21 16:01:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:01:59 [transform_engine] {"stage_name":"transform_engine","events_processed":566,"events_dropped":0,"avg_latency_ms":298.89940101745265,"throughput_eps":0,"last_update":"2026-03-21T16:01:54.209995424Z"} +2026/03/21 16:01:59 [log_collector] {"stage_name":"log_collector","events_processed":26788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5357.6,"last_update":"2026-03-21T16:01:59.0684082Z"} +2026/03/21 16:01:59 [metric_collector] {"stage_name":"metric_collector","events_processed":16984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3396.8,"last_update":"2026-03-21T16:01:54.068835091Z"} +2026/03/21 16:01:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6796,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:01:54.077709839Z"} +2026/03/21 16:01:59 [detection_layer] {"stage_name":"detection_layer","events_processed":566,"events_dropped":0,"avg_latency_ms":18.773740755898473,"throughput_eps":0,"last_update":"2026-03-21T16:01:54.209969444Z"} +2026/03/21 16:01:59 ───────────────────────────────────────────────── +2026/03/21 16:02:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:02:04 [transform_engine] {"stage_name":"transform_engine","events_processed":566,"events_dropped":0,"avg_latency_ms":298.89940101745265,"throughput_eps":0,"last_update":"2026-03-21T16:01:59.210781376Z"} +2026/03/21 16:02:04 [log_collector] {"stage_name":"log_collector","events_processed":26788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5357.6,"last_update":"2026-03-21T16:01:59.0684082Z"} +2026/03/21 16:02:04 [metric_collector] {"stage_name":"metric_collector","events_processed":16989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3397.8,"last_update":"2026-03-21T16:01:59.06906071Z"} +2026/03/21 16:02:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:01:59.077473012Z"} +2026/03/21 16:02:04 [detection_layer] {"stage_name":"detection_layer","events_processed":566,"events_dropped":0,"avg_latency_ms":18.773740755898473,"throughput_eps":0,"last_update":"2026-03-21T16:01:59.210675122Z"} +2026/03/21 16:02:04 ───────────────────────────────────────────────── +2026/03/21 16:02:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:02:09 [metric_collector] {"stage_name":"metric_collector","events_processed":16994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3398.8,"last_update":"2026-03-21T16:02:04.069301337Z"} +2026/03/21 16:02:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6800,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:02:04.078973083Z"} +2026/03/21 16:02:09 [detection_layer] {"stage_name":"detection_layer","events_processed":566,"events_dropped":0,"avg_latency_ms":18.773740755898473,"throughput_eps":0,"last_update":"2026-03-21T16:02:04.210152218Z"} +2026/03/21 16:02:09 [transform_engine] {"stage_name":"transform_engine","events_processed":566,"events_dropped":0,"avg_latency_ms":298.89940101745265,"throughput_eps":0,"last_update":"2026-03-21T16:02:04.210122451Z"} +2026/03/21 16:02:09 [log_collector] {"stage_name":"log_collector","events_processed":26788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5357.6,"last_update":"2026-03-21T16:02:04.069147262Z"} +2026/03/21 16:02:09 ───────────────────────────────────────────────── +Saved state: 18 clusters, 26789 messages, reason: none +2026/03/21 16:02:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:02:14 [log_collector] {"stage_name":"log_collector","events_processed":26788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5357.6,"last_update":"2026-03-21T16:02:09.068888246Z"} +2026/03/21 16:02:14 [metric_collector] {"stage_name":"metric_collector","events_processed":16999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3399.8,"last_update":"2026-03-21T16:02:09.068990211Z"} +2026/03/21 16:02:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6802,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:02:09.078330331Z"} +2026/03/21 16:02:14 [detection_layer] {"stage_name":"detection_layer","events_processed":566,"events_dropped":0,"avg_latency_ms":18.773740755898473,"throughput_eps":0,"last_update":"2026-03-21T16:02:09.210598572Z"} +2026/03/21 16:02:14 [transform_engine] {"stage_name":"transform_engine","events_processed":566,"events_dropped":0,"avg_latency_ms":298.89940101745265,"throughput_eps":0,"last_update":"2026-03-21T16:02:09.210711619Z"} +2026/03/21 16:02:14 ───────────────────────────────────────────────── +2026/03/21 16:02:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:02:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:02:14.075906178Z"} +2026/03/21 16:02:19 [detection_layer] {"stage_name":"detection_layer","events_processed":566,"events_dropped":0,"avg_latency_ms":18.773740755898473,"throughput_eps":0,"last_update":"2026-03-21T16:02:14.210441251Z"} +2026/03/21 16:02:19 [transform_engine] {"stage_name":"transform_engine","events_processed":566,"events_dropped":0,"avg_latency_ms":298.89940101745265,"throughput_eps":0,"last_update":"2026-03-21T16:02:14.210428526Z"} +2026/03/21 16:02:19 [log_collector] {"stage_name":"log_collector","events_processed":26793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5358.6,"last_update":"2026-03-21T16:02:14.06805475Z"} +2026/03/21 16:02:19 [metric_collector] {"stage_name":"metric_collector","events_processed":17004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3400.8,"last_update":"2026-03-21T16:02:14.068327803Z"} +2026/03/21 16:02:19 ───────────────────────────────────────────────── +2026/03/21 16:02:19 [ANOMALY] time=2026-03-21T16:02:19Z score=0.8370 method=SEAD details=MAD!:w=0.28,s=0.92 RRCF-fast!:w=0.17,s=0.91 RRCF-mid:w=0.14,s=0.90 RRCF-slow:w=0.16,s=0.89 COPOD!:w=0.25,s=0.63 +2026/03/21 16:02:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:02:24 [transform_engine] {"stage_name":"transform_engine","events_processed":567,"events_dropped":0,"avg_latency_ms":274.09010801396215,"throughput_eps":0,"last_update":"2026-03-21T16:02:19.384537238Z"} +2026/03/21 16:02:24 [log_collector] {"stage_name":"log_collector","events_processed":26793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5358.6,"last_update":"2026-03-21T16:02:19.068642127Z"} +2026/03/21 16:02:24 [metric_collector] {"stage_name":"metric_collector","events_processed":17009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3401.8,"last_update":"2026-03-21T16:02:19.06891565Z"} +2026/03/21 16:02:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:02:19.075534989Z"} +2026/03/21 16:02:24 [detection_layer] {"stage_name":"detection_layer","events_processed":566,"events_dropped":0,"avg_latency_ms":18.773740755898473,"throughput_eps":0,"last_update":"2026-03-21T16:02:19.210781665Z"} +2026/03/21 16:02:24 ───────────────────────────────────────────────── +2026/03/21 16:02:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:02:29 [transform_engine] {"stage_name":"transform_engine","events_processed":567,"events_dropped":0,"avg_latency_ms":274.09010801396215,"throughput_eps":0,"last_update":"2026-03-21T16:02:24.210627522Z"} +2026/03/21 16:02:29 [log_collector] {"stage_name":"log_collector","events_processed":26793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5358.6,"last_update":"2026-03-21T16:02:24.068504795Z"} +2026/03/21 16:02:29 [metric_collector] {"stage_name":"metric_collector","events_processed":17014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3402.8,"last_update":"2026-03-21T16:02:24.06879959Z"} +2026/03/21 16:02:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:02:24.081413561Z"} +2026/03/21 16:02:29 [detection_layer] {"stage_name":"detection_layer","events_processed":567,"events_dropped":0,"avg_latency_ms":17.40011520471878,"throughput_eps":0,"last_update":"2026-03-21T16:02:24.21065277Z"} +2026/03/21 16:02:29 ───────────────────────────────────────────────── +2026/03/21 16:02:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:02:34 [log_collector] {"stage_name":"log_collector","events_processed":26793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5358.6,"last_update":"2026-03-21T16:02:29.068055579Z"} +2026/03/21 16:02:34 [metric_collector] {"stage_name":"metric_collector","events_processed":17019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3403.8,"last_update":"2026-03-21T16:02:29.068526722Z"} +2026/03/21 16:02:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:02:29.075744035Z"} +2026/03/21 16:02:34 [detection_layer] {"stage_name":"detection_layer","events_processed":567,"events_dropped":0,"avg_latency_ms":17.40011520471878,"throughput_eps":0,"last_update":"2026-03-21T16:02:29.210027837Z"} +2026/03/21 16:02:34 [transform_engine] {"stage_name":"transform_engine","events_processed":567,"events_dropped":0,"avg_latency_ms":274.09010801396215,"throughput_eps":0,"last_update":"2026-03-21T16:02:29.210077482Z"} +2026/03/21 16:02:34 ───────────────────────────────────────────────── +2026/03/21 16:02:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:02:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6812,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:02:34.079465177Z"} +2026/03/21 16:02:39 [detection_layer] {"stage_name":"detection_layer","events_processed":567,"events_dropped":0,"avg_latency_ms":17.40011520471878,"throughput_eps":0,"last_update":"2026-03-21T16:02:34.210597163Z"} +2026/03/21 16:02:39 [transform_engine] {"stage_name":"transform_engine","events_processed":567,"events_dropped":0,"avg_latency_ms":274.09010801396215,"throughput_eps":0,"last_update":"2026-03-21T16:02:34.210581672Z"} +2026/03/21 16:02:39 [log_collector] {"stage_name":"log_collector","events_processed":26793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5358.6,"last_update":"2026-03-21T16:02:34.068483814Z"} +2026/03/21 16:02:39 [metric_collector] {"stage_name":"metric_collector","events_processed":17024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3404.8,"last_update":"2026-03-21T16:02:34.068761567Z"} +2026/03/21 16:02:39 ───────────────────────────────────────────────── +2026/03/21 16:02:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:02:44 [log_collector] {"stage_name":"log_collector","events_processed":26793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5358.6,"last_update":"2026-03-21T16:02:39.06884373Z"} +2026/03/21 16:02:44 [metric_collector] {"stage_name":"metric_collector","events_processed":17029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3405.8,"last_update":"2026-03-21T16:02:39.069227104Z"} +2026/03/21 16:02:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:02:39.077719019Z"} +2026/03/21 16:02:44 [detection_layer] {"stage_name":"detection_layer","events_processed":567,"events_dropped":0,"avg_latency_ms":17.40011520471878,"throughput_eps":0,"last_update":"2026-03-21T16:02:39.210304418Z"} +2026/03/21 16:02:44 [transform_engine] {"stage_name":"transform_engine","events_processed":567,"events_dropped":0,"avg_latency_ms":274.09010801396215,"throughput_eps":0,"last_update":"2026-03-21T16:02:39.21000296Z"} +2026/03/21 16:02:44 ───────────────────────────────────────────────── +2026/03/21 16:02:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:02:49 [log_collector] {"stage_name":"log_collector","events_processed":26793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5358.6,"last_update":"2026-03-21T16:02:44.068060125Z"} +2026/03/21 16:02:49 [metric_collector] {"stage_name":"metric_collector","events_processed":17034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3406.8,"last_update":"2026-03-21T16:02:44.068301158Z"} +2026/03/21 16:02:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6816,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:02:44.075809178Z"} +2026/03/21 16:02:49 [detection_layer] {"stage_name":"detection_layer","events_processed":567,"events_dropped":0,"avg_latency_ms":17.40011520471878,"throughput_eps":0,"last_update":"2026-03-21T16:02:44.210051Z"} +2026/03/21 16:02:49 [transform_engine] {"stage_name":"transform_engine","events_processed":567,"events_dropped":0,"avg_latency_ms":274.09010801396215,"throughput_eps":0,"last_update":"2026-03-21T16:02:44.210076749Z"} +2026/03/21 16:02:49 ───────────────────────────────────────────────── +2026/03/21 16:02:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:02:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6818,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:02:49.075958863Z"} +2026/03/21 16:02:54 [detection_layer] {"stage_name":"detection_layer","events_processed":567,"events_dropped":0,"avg_latency_ms":17.40011520471878,"throughput_eps":0,"last_update":"2026-03-21T16:02:49.210432508Z"} +2026/03/21 16:02:54 [transform_engine] {"stage_name":"transform_engine","events_processed":568,"events_dropped":0,"avg_latency_ms":231.61837201116975,"throughput_eps":0,"last_update":"2026-03-21T16:02:49.272128008Z"} +2026/03/21 16:02:54 [log_collector] {"stage_name":"log_collector","events_processed":26793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5358.6,"last_update":"2026-03-21T16:02:49.068572135Z"} +2026/03/21 16:02:54 [metric_collector] {"stage_name":"metric_collector","events_processed":17039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3407.8,"last_update":"2026-03-21T16:02:49.069083744Z"} +2026/03/21 16:02:54 ───────────────────────────────────────────────── +2026/03/21 16:02:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:02:59 [transform_engine] {"stage_name":"transform_engine","events_processed":568,"events_dropped":0,"avg_latency_ms":231.61837201116975,"throughput_eps":0,"last_update":"2026-03-21T16:02:54.210222526Z"} +2026/03/21 16:02:59 [log_collector] {"stage_name":"log_collector","events_processed":26793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5358.6,"last_update":"2026-03-21T16:02:54.068756968Z"} +2026/03/21 16:02:59 [metric_collector] {"stage_name":"metric_collector","events_processed":17044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3408.8,"last_update":"2026-03-21T16:02:54.069136565Z"} +2026/03/21 16:02:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6820,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:02:54.076996379Z"} +2026/03/21 16:02:59 [detection_layer] {"stage_name":"detection_layer","events_processed":568,"events_dropped":0,"avg_latency_ms":16.624449963775024,"throughput_eps":0,"last_update":"2026-03-21T16:02:54.210210973Z"} +2026/03/21 16:02:59 ───────────────────────────────────────────────── +2026/03/21 16:03:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:03:04 [metric_collector] {"stage_name":"metric_collector","events_processed":17049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3409.8,"last_update":"2026-03-21T16:02:59.069235666Z"} +2026/03/21 16:03:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:02:59.078669795Z"} +2026/03/21 16:03:04 [detection_layer] {"stage_name":"detection_layer","events_processed":568,"events_dropped":0,"avg_latency_ms":16.624449963775024,"throughput_eps":0,"last_update":"2026-03-21T16:02:59.209927932Z"} +2026/03/21 16:03:04 [transform_engine] {"stage_name":"transform_engine","events_processed":568,"events_dropped":0,"avg_latency_ms":231.61837201116975,"throughput_eps":0,"last_update":"2026-03-21T16:02:59.209941738Z"} +2026/03/21 16:03:04 [log_collector] {"stage_name":"log_collector","events_processed":26793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5358.6,"last_update":"2026-03-21T16:02:59.068890985Z"} +2026/03/21 16:03:04 ───────────────────────────────────────────────── +2026/03/21 16:03:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:03:09 [log_collector] {"stage_name":"log_collector","events_processed":26793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5358.6,"last_update":"2026-03-21T16:03:04.068112816Z"} +2026/03/21 16:03:09 [metric_collector] {"stage_name":"metric_collector","events_processed":17054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3410.8,"last_update":"2026-03-21T16:03:04.068562447Z"} +2026/03/21 16:03:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:03:04.077622832Z"} +2026/03/21 16:03:09 [detection_layer] {"stage_name":"detection_layer","events_processed":568,"events_dropped":0,"avg_latency_ms":16.624449963775024,"throughput_eps":0,"last_update":"2026-03-21T16:03:04.210877381Z"} +2026/03/21 16:03:09 [transform_engine] {"stage_name":"transform_engine","events_processed":568,"events_dropped":0,"avg_latency_ms":231.61837201116975,"throughput_eps":0,"last_update":"2026-03-21T16:03:04.209771213Z"} +2026/03/21 16:03:09 ───────────────────────────────────────────────── +2026/03/21 16:03:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:03:14 [transform_engine] {"stage_name":"transform_engine","events_processed":568,"events_dropped":0,"avg_latency_ms":231.61837201116975,"throughput_eps":0,"last_update":"2026-03-21T16:03:09.209963624Z"} +2026/03/21 16:03:14 [log_collector] {"stage_name":"log_collector","events_processed":26793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5358.6,"last_update":"2026-03-21T16:03:09.068195397Z"} +2026/03/21 16:03:14 [metric_collector] {"stage_name":"metric_collector","events_processed":17059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3411.8,"last_update":"2026-03-21T16:03:09.068608418Z"} +2026/03/21 16:03:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6826,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:03:09.077806585Z"} +2026/03/21 16:03:14 [detection_layer] {"stage_name":"detection_layer","events_processed":568,"events_dropped":0,"avg_latency_ms":16.624449963775024,"throughput_eps":0,"last_update":"2026-03-21T16:03:09.209951311Z"} +2026/03/21 16:03:14 ───────────────────────────────────────────────── +2026/03/21 16:03:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:03:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:03:14.07685655Z"} +2026/03/21 16:03:19 [detection_layer] {"stage_name":"detection_layer","events_processed":568,"events_dropped":0,"avg_latency_ms":16.624449963775024,"throughput_eps":0,"last_update":"2026-03-21T16:03:14.210138593Z"} +2026/03/21 16:03:19 [transform_engine] {"stage_name":"transform_engine","events_processed":568,"events_dropped":0,"avg_latency_ms":231.61837201116975,"throughput_eps":0,"last_update":"2026-03-21T16:03:14.210153341Z"} +2026/03/21 16:03:19 [log_collector] {"stage_name":"log_collector","events_processed":26793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5358.6,"last_update":"2026-03-21T16:03:19.068121454Z"} +2026/03/21 16:03:19 [metric_collector] {"stage_name":"metric_collector","events_processed":17064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3412.8,"last_update":"2026-03-21T16:03:14.069119621Z"} +2026/03/21 16:03:19 ───────────────────────────────────────────────── +2026/03/21 16:03:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:03:24 [detection_layer] {"stage_name":"detection_layer","events_processed":568,"events_dropped":0,"avg_latency_ms":16.624449963775024,"throughput_eps":0,"last_update":"2026-03-21T16:03:19.210197531Z"} +2026/03/21 16:03:24 [transform_engine] {"stage_name":"transform_engine","events_processed":569,"events_dropped":0,"avg_latency_ms":199.7425164089358,"throughput_eps":0,"last_update":"2026-03-21T16:03:19.282475559Z"} +2026/03/21 16:03:24 [log_collector] {"stage_name":"log_collector","events_processed":26793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5358.6,"last_update":"2026-03-21T16:03:19.068121454Z"} +2026/03/21 16:03:24 [metric_collector] {"stage_name":"metric_collector","events_processed":17069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3413.8,"last_update":"2026-03-21T16:03:19.069042458Z"} +2026/03/21 16:03:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6830,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:03:19.077993292Z"} +2026/03/21 16:03:24 ───────────────────────────────────────────────── +2026/03/21 16:03:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:03:29 [log_collector] {"stage_name":"log_collector","events_processed":26793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5358.6,"last_update":"2026-03-21T16:03:24.068816611Z"} +2026/03/21 16:03:29 [metric_collector] {"stage_name":"metric_collector","events_processed":17074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3414.8,"last_update":"2026-03-21T16:03:24.069174417Z"} +2026/03/21 16:03:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6832,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:03:24.076589089Z"} +2026/03/21 16:03:29 [detection_layer] {"stage_name":"detection_layer","events_processed":569,"events_dropped":0,"avg_latency_ms":16.59608797102002,"throughput_eps":0,"last_update":"2026-03-21T16:03:24.210754714Z"} +2026/03/21 16:03:29 [transform_engine] {"stage_name":"transform_engine","events_processed":569,"events_dropped":0,"avg_latency_ms":199.7425164089358,"throughput_eps":0,"last_update":"2026-03-21T16:03:24.209669646Z"} +2026/03/21 16:03:29 ───────────────────────────────────────────────── +2026/03/21 16:03:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:03:34 [log_collector] {"stage_name":"log_collector","events_processed":26793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5358.6,"last_update":"2026-03-21T16:03:29.068688433Z"} +2026/03/21 16:03:34 [metric_collector] {"stage_name":"metric_collector","events_processed":17079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3415.8,"last_update":"2026-03-21T16:03:29.069002214Z"} +2026/03/21 16:03:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:03:29.076376278Z"} +2026/03/21 16:03:34 [detection_layer] {"stage_name":"detection_layer","events_processed":569,"events_dropped":0,"avg_latency_ms":16.59608797102002,"throughput_eps":0,"last_update":"2026-03-21T16:03:29.210582391Z"} +2026/03/21 16:03:34 [transform_engine] {"stage_name":"transform_engine","events_processed":569,"events_dropped":0,"avg_latency_ms":199.7425164089358,"throughput_eps":0,"last_update":"2026-03-21T16:03:29.210557604Z"} +2026/03/21 16:03:34 ───────────────────────────────────────────────── +2026/03/21 16:03:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:03:39 [log_collector] {"stage_name":"log_collector","events_processed":26793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5358.6,"last_update":"2026-03-21T16:03:34.068649848Z"} +2026/03/21 16:03:39 [metric_collector] {"stage_name":"metric_collector","events_processed":17084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3416.8,"last_update":"2026-03-21T16:03:34.068865069Z"} +2026/03/21 16:03:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:03:34.075916426Z"} +2026/03/21 16:03:39 [detection_layer] {"stage_name":"detection_layer","events_processed":569,"events_dropped":0,"avg_latency_ms":16.59608797102002,"throughput_eps":0,"last_update":"2026-03-21T16:03:34.210251596Z"} +2026/03/21 16:03:39 [transform_engine] {"stage_name":"transform_engine","events_processed":569,"events_dropped":0,"avg_latency_ms":199.7425164089358,"throughput_eps":0,"last_update":"2026-03-21T16:03:34.210229714Z"} +2026/03/21 16:03:39 ───────────────────────────────────────────────── +2026/03/21 16:03:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:03:44 [detection_layer] {"stage_name":"detection_layer","events_processed":569,"events_dropped":0,"avg_latency_ms":16.59608797102002,"throughput_eps":0,"last_update":"2026-03-21T16:03:39.21045256Z"} +2026/03/21 16:03:44 [transform_engine] {"stage_name":"transform_engine","events_processed":569,"events_dropped":0,"avg_latency_ms":199.7425164089358,"throughput_eps":0,"last_update":"2026-03-21T16:03:39.210429767Z"} +2026/03/21 16:03:44 [log_collector] {"stage_name":"log_collector","events_processed":26793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5358.6,"last_update":"2026-03-21T16:03:39.068631592Z"} +2026/03/21 16:03:44 [metric_collector] {"stage_name":"metric_collector","events_processed":17089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3417.8,"last_update":"2026-03-21T16:03:39.068938499Z"} +2026/03/21 16:03:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:03:39.07519899Z"} +2026/03/21 16:03:44 ───────────────────────────────────────────────── +2026/03/21 16:03:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:03:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:03:44.076621335Z"} +2026/03/21 16:03:49 [detection_layer] {"stage_name":"detection_layer","events_processed":569,"events_dropped":0,"avg_latency_ms":16.59608797102002,"throughput_eps":0,"last_update":"2026-03-21T16:03:44.210827469Z"} +2026/03/21 16:03:49 [transform_engine] {"stage_name":"transform_engine","events_processed":569,"events_dropped":0,"avg_latency_ms":199.7425164089358,"throughput_eps":0,"last_update":"2026-03-21T16:03:44.209731519Z"} +2026/03/21 16:03:49 [log_collector] {"stage_name":"log_collector","events_processed":26793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5358.6,"last_update":"2026-03-21T16:03:44.06813449Z"} +2026/03/21 16:03:49 [metric_collector] {"stage_name":"metric_collector","events_processed":17094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3418.8,"last_update":"2026-03-21T16:03:44.068564844Z"} +2026/03/21 16:03:49 ───────────────────────────────────────────────── +2026/03/21 16:03:49 [ANOMALY] time=2026-03-21T16:03:49Z score=0.8433 method=SEAD details=MAD!:w=0.28,s=1.00 RRCF-fast!:w=0.17,s=0.95 RRCF-mid!:w=0.14,s=0.96 RRCF-slow!:w=0.15,s=0.98 COPOD!:w=0.26,s=0.45 +2026/03/21 16:03:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:03:54 [transform_engine] {"stage_name":"transform_engine","events_processed":570,"events_dropped":0,"avg_latency_ms":174.60843792714869,"throughput_eps":0,"last_update":"2026-03-21T16:03:49.283842019Z"} +2026/03/21 16:03:54 [log_collector] {"stage_name":"log_collector","events_processed":26793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5358.6,"last_update":"2026-03-21T16:03:49.068693412Z"} +2026/03/21 16:03:54 [metric_collector] {"stage_name":"metric_collector","events_processed":17099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3419.8,"last_update":"2026-03-21T16:03:49.068996663Z"} +2026/03/21 16:03:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:03:49.079613157Z"} +2026/03/21 16:03:54 [detection_layer] {"stage_name":"detection_layer","events_processed":569,"events_dropped":0,"avg_latency_ms":16.59608797102002,"throughput_eps":0,"last_update":"2026-03-21T16:03:49.210876213Z"} +2026/03/21 16:03:54 ───────────────────────────────────────────────── +2026/03/21 16:03:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:03:59 [log_collector] {"stage_name":"log_collector","events_processed":26793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5358.6,"last_update":"2026-03-21T16:03:59.06808876Z"} +2026/03/21 16:03:59 [metric_collector] {"stage_name":"metric_collector","events_processed":17104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3420.8,"last_update":"2026-03-21T16:03:54.068614704Z"} +2026/03/21 16:03:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:03:54.077943101Z"} +2026/03/21 16:03:59 [detection_layer] {"stage_name":"detection_layer","events_processed":570,"events_dropped":0,"avg_latency_ms":15.114393776816016,"throughput_eps":0,"last_update":"2026-03-21T16:03:54.21019451Z"} +2026/03/21 16:03:59 [transform_engine] {"stage_name":"transform_engine","events_processed":570,"events_dropped":0,"avg_latency_ms":174.60843792714869,"throughput_eps":0,"last_update":"2026-03-21T16:03:54.210231321Z"} +2026/03/21 16:03:59 ───────────────────────────────────────────────── +2026/03/21 16:04:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:04:04 [metric_collector] {"stage_name":"metric_collector","events_processed":17109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3421.8,"last_update":"2026-03-21T16:03:59.068673569Z"} +2026/03/21 16:04:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:03:59.075865644Z"} +2026/03/21 16:04:04 [detection_layer] {"stage_name":"detection_layer","events_processed":570,"events_dropped":0,"avg_latency_ms":15.114393776816016,"throughput_eps":0,"last_update":"2026-03-21T16:03:59.210188702Z"} +2026/03/21 16:04:04 [transform_engine] {"stage_name":"transform_engine","events_processed":570,"events_dropped":0,"avg_latency_ms":174.60843792714869,"throughput_eps":0,"last_update":"2026-03-21T16:03:59.210095383Z"} +2026/03/21 16:04:04 [log_collector] {"stage_name":"log_collector","events_processed":26793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5358.6,"last_update":"2026-03-21T16:03:59.06808876Z"} +2026/03/21 16:04:04 ───────────────────────────────────────────────── +2026/03/21 16:04:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:04:09 [detection_layer] {"stage_name":"detection_layer","events_processed":570,"events_dropped":0,"avg_latency_ms":15.114393776816016,"throughput_eps":0,"last_update":"2026-03-21T16:04:04.210383049Z"} +2026/03/21 16:04:09 [transform_engine] {"stage_name":"transform_engine","events_processed":570,"events_dropped":0,"avg_latency_ms":174.60843792714869,"throughput_eps":0,"last_update":"2026-03-21T16:04:04.210407856Z"} +2026/03/21 16:04:09 [log_collector] {"stage_name":"log_collector","events_processed":26793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5358.6,"last_update":"2026-03-21T16:04:09.068263194Z"} +2026/03/21 16:04:09 [metric_collector] {"stage_name":"metric_collector","events_processed":17114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3422.8,"last_update":"2026-03-21T16:04:04.068476427Z"} +2026/03/21 16:04:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6848,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:04:04.075119981Z"} +2026/03/21 16:04:09 ───────────────────────────────────────────────── +2026/03/21 16:04:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:04:14 [detection_layer] {"stage_name":"detection_layer","events_processed":570,"events_dropped":0,"avg_latency_ms":15.114393776816016,"throughput_eps":0,"last_update":"2026-03-21T16:04:09.210136894Z"} +2026/03/21 16:04:14 [transform_engine] {"stage_name":"transform_engine","events_processed":570,"events_dropped":0,"avg_latency_ms":174.60843792714869,"throughput_eps":0,"last_update":"2026-03-21T16:04:09.21011402Z"} +2026/03/21 16:04:14 [log_collector] {"stage_name":"log_collector","events_processed":26793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5358.6,"last_update":"2026-03-21T16:04:09.068263194Z"} +2026/03/21 16:04:14 [metric_collector] {"stage_name":"metric_collector","events_processed":17119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3423.8,"last_update":"2026-03-21T16:04:09.068728926Z"} +2026/03/21 16:04:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:04:09.075867378Z"} +2026/03/21 16:04:14 ───────────────────────────────────────────────── +2026/03/21 16:04:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:04:19 [metric_collector] {"stage_name":"metric_collector","events_processed":17124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3424.8,"last_update":"2026-03-21T16:04:14.069124801Z"} +2026/03/21 16:04:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:04:14.076929019Z"} +2026/03/21 16:04:19 [detection_layer] {"stage_name":"detection_layer","events_processed":570,"events_dropped":0,"avg_latency_ms":15.114393776816016,"throughput_eps":0,"last_update":"2026-03-21T16:04:14.210223496Z"} +2026/03/21 16:04:19 [transform_engine] {"stage_name":"transform_engine","events_processed":570,"events_dropped":0,"avg_latency_ms":174.60843792714869,"throughput_eps":0,"last_update":"2026-03-21T16:04:14.210207145Z"} +2026/03/21 16:04:19 [log_collector] {"stage_name":"log_collector","events_processed":26793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5358.6,"last_update":"2026-03-21T16:04:14.068891955Z"} +2026/03/21 16:04:19 ───────────────────────────────────────────────── +2026/03/21 16:04:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:04:24 [transform_engine] {"stage_name":"transform_engine","events_processed":571,"events_dropped":0,"avg_latency_ms":152.56589254171894,"throughput_eps":0,"last_update":"2026-03-21T16:04:19.274934399Z"} +2026/03/21 16:04:24 [log_collector] {"stage_name":"log_collector","events_processed":26793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5358.6,"last_update":"2026-03-21T16:04:19.068136165Z"} +2026/03/21 16:04:24 [metric_collector] {"stage_name":"metric_collector","events_processed":17129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3425.8,"last_update":"2026-03-21T16:04:19.068540289Z"} +2026/03/21 16:04:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:04:19.076283341Z"} +2026/03/21 16:04:24 [detection_layer] {"stage_name":"detection_layer","events_processed":570,"events_dropped":0,"avg_latency_ms":15.114393776816016,"throughput_eps":0,"last_update":"2026-03-21T16:04:19.210498441Z"} +2026/03/21 16:04:24 ───────────────────────────────────────────────── +2026/03/21 16:04:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:04:29 [log_collector] {"stage_name":"log_collector","events_processed":26793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5358.6,"last_update":"2026-03-21T16:04:24.068686357Z"} +2026/03/21 16:04:29 [metric_collector] {"stage_name":"metric_collector","events_processed":17134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3426.8,"last_update":"2026-03-21T16:04:24.069122673Z"} +2026/03/21 16:04:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:04:24.068601123Z"} +2026/03/21 16:04:29 [detection_layer] {"stage_name":"detection_layer","events_processed":571,"events_dropped":0,"avg_latency_ms":14.578811221452813,"throughput_eps":0,"last_update":"2026-03-21T16:04:24.210280722Z"} +2026/03/21 16:04:29 [transform_engine] {"stage_name":"transform_engine","events_processed":571,"events_dropped":0,"avg_latency_ms":152.56589254171894,"throughput_eps":0,"last_update":"2026-03-21T16:04:24.210309497Z"} +2026/03/21 16:04:29 ───────────────────────────────────────────────── +2026/03/21 16:04:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:04:34 [log_collector] {"stage_name":"log_collector","events_processed":26793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5358.6,"last_update":"2026-03-21T16:04:29.068079595Z"} +2026/03/21 16:04:34 [metric_collector] {"stage_name":"metric_collector","events_processed":17139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3427.8,"last_update":"2026-03-21T16:04:29.068294075Z"} +2026/03/21 16:04:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:04:29.068307892Z"} +2026/03/21 16:04:34 [detection_layer] {"stage_name":"detection_layer","events_processed":571,"events_dropped":0,"avg_latency_ms":14.578811221452813,"throughput_eps":0,"last_update":"2026-03-21T16:04:29.210851264Z"} +2026/03/21 16:04:34 [transform_engine] {"stage_name":"transform_engine","events_processed":571,"events_dropped":0,"avg_latency_ms":152.56589254171894,"throughput_eps":0,"last_update":"2026-03-21T16:04:29.20972681Z"} +2026/03/21 16:04:34 ───────────────────────────────────────────────── +Saved state: 18 clusters, 26794 messages, reason: none +2026/03/21 16:04:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:04:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6860,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:04:34.075475361Z"} +2026/03/21 16:04:39 [detection_layer] {"stage_name":"detection_layer","events_processed":571,"events_dropped":0,"avg_latency_ms":14.578811221452813,"throughput_eps":0,"last_update":"2026-03-21T16:04:34.210673635Z"} +2026/03/21 16:04:39 [transform_engine] {"stage_name":"transform_engine","events_processed":571,"events_dropped":0,"avg_latency_ms":152.56589254171894,"throughput_eps":0,"last_update":"2026-03-21T16:04:34.210651603Z"} +2026/03/21 16:04:39 [log_collector] {"stage_name":"log_collector","events_processed":26802,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5360.4,"last_update":"2026-03-21T16:04:39.068202121Z"} +2026/03/21 16:04:39 [metric_collector] {"stage_name":"metric_collector","events_processed":17144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3428.8,"last_update":"2026-03-21T16:04:34.068879667Z"} +2026/03/21 16:04:39 ───────────────────────────────────────────────── +2026/03/21 16:04:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:04:44 [log_collector] {"stage_name":"log_collector","events_processed":26802,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5360.4,"last_update":"2026-03-21T16:04:39.068202121Z"} +2026/03/21 16:04:44 [metric_collector] {"stage_name":"metric_collector","events_processed":17149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3429.8,"last_update":"2026-03-21T16:04:39.068741023Z"} +2026/03/21 16:04:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6862,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:04:39.075431618Z"} +2026/03/21 16:04:44 [detection_layer] {"stage_name":"detection_layer","events_processed":571,"events_dropped":0,"avg_latency_ms":14.578811221452813,"throughput_eps":0,"last_update":"2026-03-21T16:04:39.210428737Z"} +2026/03/21 16:04:44 [transform_engine] {"stage_name":"transform_engine","events_processed":571,"events_dropped":0,"avg_latency_ms":152.56589254171894,"throughput_eps":0,"last_update":"2026-03-21T16:04:39.210453244Z"} +2026/03/21 16:04:44 ───────────────────────────────────────────────── +2026/03/21 16:04:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:04:49 [detection_layer] {"stage_name":"detection_layer","events_processed":571,"events_dropped":0,"avg_latency_ms":14.578811221452813,"throughput_eps":0,"last_update":"2026-03-21T16:04:44.210305874Z"} +2026/03/21 16:04:49 [transform_engine] {"stage_name":"transform_engine","events_processed":571,"events_dropped":0,"avg_latency_ms":152.56589254171894,"throughput_eps":0,"last_update":"2026-03-21T16:04:44.210328658Z"} +2026/03/21 16:04:49 [log_collector] {"stage_name":"log_collector","events_processed":26828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5365.6,"last_update":"2026-03-21T16:04:44.068970605Z"} +2026/03/21 16:04:49 [metric_collector] {"stage_name":"metric_collector","events_processed":17154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3430.8,"last_update":"2026-03-21T16:04:44.069033907Z"} +2026/03/21 16:04:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:04:44.077815978Z"} +2026/03/21 16:04:49 ───────────────────────────────────────────────── +2026/03/21 16:04:49 [ANOMALY] time=2026-03-21T16:04:49Z score=0.8955 method=SEAD details=MAD!:w=0.28,s=0.99 RRCF-fast:w=0.17,s=0.53 RRCF-mid:w=0.14,s=0.91 RRCF-slow:w=0.15,s=0.95 COPOD!:w=0.26,s=0.98 +2026/03/21 16:04:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:04:54 [detection_layer] {"stage_name":"detection_layer","events_processed":571,"events_dropped":0,"avg_latency_ms":14.578811221452813,"throughput_eps":0,"last_update":"2026-03-21T16:04:49.210348668Z"} +2026/03/21 16:04:54 [transform_engine] {"stage_name":"transform_engine","events_processed":571,"events_dropped":0,"avg_latency_ms":152.56589254171894,"throughput_eps":0,"last_update":"2026-03-21T16:04:49.210252735Z"} +2026/03/21 16:04:54 [log_collector] {"stage_name":"log_collector","events_processed":27152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5430.4,"last_update":"2026-03-21T16:04:49.068861529Z"} +2026/03/21 16:04:54 [metric_collector] {"stage_name":"metric_collector","events_processed":17158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3431.6,"last_update":"2026-03-21T16:04:49.068864775Z"} +2026/03/21 16:04:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:04:49.076049927Z"} +2026/03/21 16:04:54 ───────────────────────────────────────────────── +2026/03/21 16:04:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:04:59 [log_collector] {"stage_name":"log_collector","events_processed":27158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5431.6,"last_update":"2026-03-21T16:04:54.068387515Z"} +2026/03/21 16:04:59 [metric_collector] {"stage_name":"metric_collector","events_processed":17164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3432.8,"last_update":"2026-03-21T16:04:54.068873335Z"} +2026/03/21 16:04:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6868,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:04:54.077955321Z"} +2026/03/21 16:04:59 [detection_layer] {"stage_name":"detection_layer","events_processed":572,"events_dropped":0,"avg_latency_ms":13.962240977162251,"throughput_eps":0,"last_update":"2026-03-21T16:04:54.210201621Z"} +2026/03/21 16:04:59 [transform_engine] {"stage_name":"transform_engine","events_processed":572,"events_dropped":0,"avg_latency_ms":143.57790063337515,"throughput_eps":0,"last_update":"2026-03-21T16:04:54.21023823Z"} +2026/03/21 16:04:59 ───────────────────────────────────────────────── +2026/03/21 16:05:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:05:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:04:59.075565077Z"} +2026/03/21 16:05:04 [detection_layer] {"stage_name":"detection_layer","events_processed":572,"events_dropped":0,"avg_latency_ms":13.962240977162251,"throughput_eps":0,"last_update":"2026-03-21T16:04:59.210415645Z"} +2026/03/21 16:05:04 [transform_engine] {"stage_name":"transform_engine","events_processed":572,"events_dropped":0,"avg_latency_ms":143.57790063337515,"throughput_eps":0,"last_update":"2026-03-21T16:04:59.209675197Z"} +2026/03/21 16:05:04 [log_collector] {"stage_name":"log_collector","events_processed":27161,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5432.2,"last_update":"2026-03-21T16:04:59.068136318Z"} +2026/03/21 16:05:04 [metric_collector] {"stage_name":"metric_collector","events_processed":17169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3433.8,"last_update":"2026-03-21T16:04:59.068613141Z"} +2026/03/21 16:05:04 ───────────────────────────────────────────────── +2026/03/21 16:05:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:05:09 [detection_layer] {"stage_name":"detection_layer","events_processed":572,"events_dropped":0,"avg_latency_ms":13.962240977162251,"throughput_eps":0,"last_update":"2026-03-21T16:05:04.210216329Z"} +2026/03/21 16:05:09 [transform_engine] {"stage_name":"transform_engine","events_processed":572,"events_dropped":0,"avg_latency_ms":143.57790063337515,"throughput_eps":0,"last_update":"2026-03-21T16:05:04.210235405Z"} +2026/03/21 16:05:09 [log_collector] {"stage_name":"log_collector","events_processed":27161,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5432.2,"last_update":"2026-03-21T16:05:04.068705514Z"} +2026/03/21 16:05:09 [metric_collector] {"stage_name":"metric_collector","events_processed":17174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3434.8,"last_update":"2026-03-21T16:05:04.068911578Z"} +2026/03/21 16:05:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:05:04.075561225Z"} +2026/03/21 16:05:09 ───────────────────────────────────────────────── +2026/03/21 16:05:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:05:14 [log_collector] {"stage_name":"log_collector","events_processed":27172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5434.4,"last_update":"2026-03-21T16:05:09.068226654Z"} +2026/03/21 16:05:14 [metric_collector] {"stage_name":"metric_collector","events_processed":17179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3435.8,"last_update":"2026-03-21T16:05:09.068695883Z"} +2026/03/21 16:05:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:05:09.076811347Z"} +2026/03/21 16:05:14 [detection_layer] {"stage_name":"detection_layer","events_processed":572,"events_dropped":0,"avg_latency_ms":13.962240977162251,"throughput_eps":0,"last_update":"2026-03-21T16:05:09.210240843Z"} +2026/03/21 16:05:14 [transform_engine] {"stage_name":"transform_engine","events_processed":572,"events_dropped":0,"avg_latency_ms":143.57790063337515,"throughput_eps":0,"last_update":"2026-03-21T16:05:09.210393976Z"} +2026/03/21 16:05:14 ───────────────────────────────────────────────── +2026/03/21 16:05:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:05:19 [log_collector] {"stage_name":"log_collector","events_processed":27172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5434.4,"last_update":"2026-03-21T16:05:14.068822683Z"} +2026/03/21 16:05:19 [metric_collector] {"stage_name":"metric_collector","events_processed":17184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3436.8,"last_update":"2026-03-21T16:05:14.069110383Z"} +2026/03/21 16:05:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6876,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:05:14.07864728Z"} +2026/03/21 16:05:19 [detection_layer] {"stage_name":"detection_layer","events_processed":572,"events_dropped":0,"avg_latency_ms":13.962240977162251,"throughput_eps":0,"last_update":"2026-03-21T16:05:14.209908293Z"} +2026/03/21 16:05:19 [transform_engine] {"stage_name":"transform_engine","events_processed":572,"events_dropped":0,"avg_latency_ms":143.57790063337515,"throughput_eps":0,"last_update":"2026-03-21T16:05:14.209937709Z"} +2026/03/21 16:05:19 ───────────────────────────────────────────────── +2026/03/21 16:05:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:05:24 [log_collector] {"stage_name":"log_collector","events_processed":27188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5437.6,"last_update":"2026-03-21T16:05:19.068456219Z"} +2026/03/21 16:05:24 [metric_collector] {"stage_name":"metric_collector","events_processed":17189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3437.8,"last_update":"2026-03-21T16:05:19.068710175Z"} +2026/03/21 16:05:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:05:19.077330556Z"} +2026/03/21 16:05:24 [detection_layer] {"stage_name":"detection_layer","events_processed":572,"events_dropped":0,"avg_latency_ms":13.962240977162251,"throughput_eps":0,"last_update":"2026-03-21T16:05:19.210646024Z"} +2026/03/21 16:05:24 [transform_engine] {"stage_name":"transform_engine","events_processed":573,"events_dropped":0,"avg_latency_ms":131.31513350670014,"throughput_eps":0,"last_update":"2026-03-21T16:05:19.293021382Z"} +2026/03/21 16:05:24 ───────────────────────────────────────────────── +2026/03/21 16:05:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:05:29 [log_collector] {"stage_name":"log_collector","events_processed":27188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5437.6,"last_update":"2026-03-21T16:05:24.068608669Z"} +2026/03/21 16:05:29 [metric_collector] {"stage_name":"metric_collector","events_processed":17194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3438.8,"last_update":"2026-03-21T16:05:24.06892789Z"} +2026/03/21 16:05:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:05:24.07814264Z"} +2026/03/21 16:05:29 [detection_layer] {"stage_name":"detection_layer","events_processed":573,"events_dropped":0,"avg_latency_ms":14.516336581729803,"throughput_eps":0,"last_update":"2026-03-21T16:05:24.21043048Z"} +2026/03/21 16:05:29 [transform_engine] {"stage_name":"transform_engine","events_processed":573,"events_dropped":0,"avg_latency_ms":131.31513350670014,"throughput_eps":0,"last_update":"2026-03-21T16:05:24.210384171Z"} +2026/03/21 16:05:29 ───────────────────────────────────────────────── +2026/03/21 16:05:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:05:34 [log_collector] {"stage_name":"log_collector","events_processed":27188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5437.6,"last_update":"2026-03-21T16:05:29.068662421Z"} +2026/03/21 16:05:34 [metric_collector] {"stage_name":"metric_collector","events_processed":17199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3439.8,"last_update":"2026-03-21T16:05:29.068939411Z"} +2026/03/21 16:05:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:05:29.077409315Z"} +2026/03/21 16:05:34 [detection_layer] {"stage_name":"detection_layer","events_processed":573,"events_dropped":0,"avg_latency_ms":14.516336581729803,"throughput_eps":0,"last_update":"2026-03-21T16:05:29.210669427Z"} +2026/03/21 16:05:34 [transform_engine] {"stage_name":"transform_engine","events_processed":573,"events_dropped":0,"avg_latency_ms":131.31513350670014,"throughput_eps":0,"last_update":"2026-03-21T16:05:29.210692642Z"} +2026/03/21 16:05:34 ───────────────────────────────────────────────── +2026/03/21 16:05:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:05:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:05:34.077222758Z"} +2026/03/21 16:05:39 [detection_layer] {"stage_name":"detection_layer","events_processed":573,"events_dropped":0,"avg_latency_ms":14.516336581729803,"throughput_eps":0,"last_update":"2026-03-21T16:05:34.21049858Z"} +2026/03/21 16:05:39 [transform_engine] {"stage_name":"transform_engine","events_processed":573,"events_dropped":0,"avg_latency_ms":131.31513350670014,"throughput_eps":0,"last_update":"2026-03-21T16:05:34.210526413Z"} +2026/03/21 16:05:39 [log_collector] {"stage_name":"log_collector","events_processed":27188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5437.6,"last_update":"2026-03-21T16:05:34.068097741Z"} +2026/03/21 16:05:39 [metric_collector] {"stage_name":"metric_collector","events_processed":17204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3440.8,"last_update":"2026-03-21T16:05:34.068588611Z"} +2026/03/21 16:05:39 ───────────────────────────────────────────────── +2026/03/21 16:05:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:05:44 [log_collector] {"stage_name":"log_collector","events_processed":27188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5437.6,"last_update":"2026-03-21T16:05:39.06807535Z"} +2026/03/21 16:05:44 [metric_collector] {"stage_name":"metric_collector","events_processed":17209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3441.8,"last_update":"2026-03-21T16:05:39.068371868Z"} +2026/03/21 16:05:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6886,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:05:39.077536382Z"} +2026/03/21 16:05:44 [detection_layer] {"stage_name":"detection_layer","events_processed":573,"events_dropped":0,"avg_latency_ms":14.516336581729803,"throughput_eps":0,"last_update":"2026-03-21T16:05:39.209898202Z"} +2026/03/21 16:05:44 [transform_engine] {"stage_name":"transform_engine","events_processed":573,"events_dropped":0,"avg_latency_ms":131.31513350670014,"throughput_eps":0,"last_update":"2026-03-21T16:05:39.209768414Z"} +2026/03/21 16:05:44 ───────────────────────────────────────────────── +2026/03/21 16:05:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:05:49 [detection_layer] {"stage_name":"detection_layer","events_processed":573,"events_dropped":0,"avg_latency_ms":14.516336581729803,"throughput_eps":0,"last_update":"2026-03-21T16:05:44.209983568Z"} +2026/03/21 16:05:49 [transform_engine] {"stage_name":"transform_engine","events_processed":573,"events_dropped":0,"avg_latency_ms":131.31513350670014,"throughput_eps":0,"last_update":"2026-03-21T16:05:44.20995347Z"} +2026/03/21 16:05:49 [log_collector] {"stage_name":"log_collector","events_processed":27188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5437.6,"last_update":"2026-03-21T16:05:44.068588384Z"} +2026/03/21 16:05:49 [metric_collector] {"stage_name":"metric_collector","events_processed":17214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3442.8,"last_update":"2026-03-21T16:05:44.068878951Z"} +2026/03/21 16:05:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:05:44.077740765Z"} +2026/03/21 16:05:49 ───────────────────────────────────────────────── +2026/03/21 16:05:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:05:54 [log_collector] {"stage_name":"log_collector","events_processed":27188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5437.6,"last_update":"2026-03-21T16:05:49.068063542Z"} +2026/03/21 16:05:54 [metric_collector] {"stage_name":"metric_collector","events_processed":17219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3443.8,"last_update":"2026-03-21T16:05:49.068324672Z"} +2026/03/21 16:05:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:05:49.076616554Z"} +2026/03/21 16:05:54 [detection_layer] {"stage_name":"detection_layer","events_processed":573,"events_dropped":0,"avg_latency_ms":14.516336581729803,"throughput_eps":0,"last_update":"2026-03-21T16:05:49.210908773Z"} +2026/03/21 16:05:54 [transform_engine] {"stage_name":"transform_engine","events_processed":574,"events_dropped":0,"avg_latency_ms":119.20035960536012,"throughput_eps":0,"last_update":"2026-03-21T16:05:49.280522519Z"} +2026/03/21 16:05:54 ───────────────────────────────────────────────── +2026/03/21 16:05:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:05:59 [log_collector] {"stage_name":"log_collector","events_processed":27188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5437.6,"last_update":"2026-03-21T16:05:54.068827498Z"} +2026/03/21 16:05:59 [metric_collector] {"stage_name":"metric_collector","events_processed":17224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3444.8,"last_update":"2026-03-21T16:05:54.069145227Z"} +2026/03/21 16:05:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6892,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:05:54.07865918Z"} +2026/03/21 16:05:59 [detection_layer] {"stage_name":"detection_layer","events_processed":574,"events_dropped":0,"avg_latency_ms":15.423070865383842,"throughput_eps":0,"last_update":"2026-03-21T16:05:54.209913479Z"} +2026/03/21 16:05:59 [transform_engine] {"stage_name":"transform_engine","events_processed":574,"events_dropped":0,"avg_latency_ms":119.20035960536012,"throughput_eps":0,"last_update":"2026-03-21T16:05:54.209925914Z"} +2026/03/21 16:05:59 ───────────────────────────────────────────────── +2026/03/21 16:06:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:06:04 [log_collector] {"stage_name":"log_collector","events_processed":27188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5437.6,"last_update":"2026-03-21T16:05:59.069111477Z"} +2026/03/21 16:06:04 [metric_collector] {"stage_name":"metric_collector","events_processed":17229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3445.8,"last_update":"2026-03-21T16:05:59.069261665Z"} +2026/03/21 16:06:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:05:59.077938604Z"} +2026/03/21 16:06:04 [detection_layer] {"stage_name":"detection_layer","events_processed":574,"events_dropped":0,"avg_latency_ms":15.423070865383842,"throughput_eps":0,"last_update":"2026-03-21T16:05:59.210178922Z"} +2026/03/21 16:06:04 [transform_engine] {"stage_name":"transform_engine","events_processed":574,"events_dropped":0,"avg_latency_ms":119.20035960536012,"throughput_eps":0,"last_update":"2026-03-21T16:05:59.210189643Z"} +2026/03/21 16:06:04 ───────────────────────────────────────────────── +2026/03/21 16:06:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:06:09 [log_collector] {"stage_name":"log_collector","events_processed":27188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5437.6,"last_update":"2026-03-21T16:06:04.068069947Z"} +2026/03/21 16:06:09 [metric_collector] {"stage_name":"metric_collector","events_processed":17234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3446.8,"last_update":"2026-03-21T16:06:04.068523106Z"} +2026/03/21 16:06:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6896,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:06:04.078707552Z"} +2026/03/21 16:06:09 [detection_layer] {"stage_name":"detection_layer","events_processed":574,"events_dropped":0,"avg_latency_ms":15.423070865383842,"throughput_eps":0,"last_update":"2026-03-21T16:06:04.209949669Z"} +2026/03/21 16:06:09 [transform_engine] {"stage_name":"transform_engine","events_processed":574,"events_dropped":0,"avg_latency_ms":119.20035960536012,"throughput_eps":0,"last_update":"2026-03-21T16:06:04.209960509Z"} +2026/03/21 16:06:09 ───────────────────────────────────────────────── +2026/03/21 16:06:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:06:14 [detection_layer] {"stage_name":"detection_layer","events_processed":574,"events_dropped":0,"avg_latency_ms":15.423070865383842,"throughput_eps":0,"last_update":"2026-03-21T16:06:09.210838017Z"} +2026/03/21 16:06:14 [transform_engine] {"stage_name":"transform_engine","events_processed":574,"events_dropped":0,"avg_latency_ms":119.20035960536012,"throughput_eps":0,"last_update":"2026-03-21T16:06:09.209675409Z"} +2026/03/21 16:06:14 [log_collector] {"stage_name":"log_collector","events_processed":27188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5437.6,"last_update":"2026-03-21T16:06:09.06853266Z"} +2026/03/21 16:06:14 [metric_collector] {"stage_name":"metric_collector","events_processed":17239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3447.8,"last_update":"2026-03-21T16:06:09.068910013Z"} +2026/03/21 16:06:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6898,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:06:09.077499444Z"} +2026/03/21 16:06:14 ───────────────────────────────────────────────── +2026/03/21 16:06:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:06:19 [detection_layer] {"stage_name":"detection_layer","events_processed":574,"events_dropped":0,"avg_latency_ms":15.423070865383842,"throughput_eps":0,"last_update":"2026-03-21T16:06:14.210727472Z"} +2026/03/21 16:06:19 [transform_engine] {"stage_name":"transform_engine","events_processed":574,"events_dropped":0,"avg_latency_ms":119.20035960536012,"throughput_eps":0,"last_update":"2026-03-21T16:06:14.210746348Z"} +2026/03/21 16:06:19 [log_collector] {"stage_name":"log_collector","events_processed":27188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5437.6,"last_update":"2026-03-21T16:06:14.068685009Z"} +2026/03/21 16:06:19 [metric_collector] {"stage_name":"metric_collector","events_processed":17244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3448.8,"last_update":"2026-03-21T16:06:14.068932974Z"} +2026/03/21 16:06:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6900,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:06:14.077297284Z"} +2026/03/21 16:06:19 ───────────────────────────────────────────────── +2026/03/21 16:06:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:06:24 [transform_engine] {"stage_name":"transform_engine","events_processed":575,"events_dropped":0,"avg_latency_ms":110.8996070842881,"throughput_eps":0,"last_update":"2026-03-21T16:06:19.287723384Z"} +2026/03/21 16:06:24 [log_collector] {"stage_name":"log_collector","events_processed":27188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5437.6,"last_update":"2026-03-21T16:06:19.068073244Z"} +2026/03/21 16:06:24 [metric_collector] {"stage_name":"metric_collector","events_processed":17249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3449.8,"last_update":"2026-03-21T16:06:19.068343832Z"} +2026/03/21 16:06:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:06:19.076771473Z"} +2026/03/21 16:06:24 [detection_layer] {"stage_name":"detection_layer","events_processed":574,"events_dropped":0,"avg_latency_ms":15.423070865383842,"throughput_eps":0,"last_update":"2026-03-21T16:06:19.210013141Z"} +2026/03/21 16:06:24 ───────────────────────────────────────────────── +2026/03/21 16:06:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:06:29 [metric_collector] {"stage_name":"metric_collector","events_processed":17254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3450.8,"last_update":"2026-03-21T16:06:24.068931777Z"} +2026/03/21 16:06:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:06:24.076915649Z"} +2026/03/21 16:06:29 [detection_layer] {"stage_name":"detection_layer","events_processed":575,"events_dropped":0,"avg_latency_ms":16.142692892307075,"throughput_eps":0,"last_update":"2026-03-21T16:06:24.210187243Z"} +2026/03/21 16:06:29 [transform_engine] {"stage_name":"transform_engine","events_processed":575,"events_dropped":0,"avg_latency_ms":110.8996070842881,"throughput_eps":0,"last_update":"2026-03-21T16:06:24.210199586Z"} +2026/03/21 16:06:29 [log_collector] {"stage_name":"log_collector","events_processed":27188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5437.6,"last_update":"2026-03-21T16:06:24.068613547Z"} +2026/03/21 16:06:29 ───────────────────────────────────────────────── +Saved state: 18 clusters, 27189 messages, reason: none +2026/03/21 16:06:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:06:34 [log_collector] {"stage_name":"log_collector","events_processed":27188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5437.6,"last_update":"2026-03-21T16:06:29.068922809Z"} +2026/03/21 16:06:34 [metric_collector] {"stage_name":"metric_collector","events_processed":17259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3451.8,"last_update":"2026-03-21T16:06:29.069306414Z"} +2026/03/21 16:06:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6906,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:06:29.078191141Z"} +2026/03/21 16:06:34 [detection_layer] {"stage_name":"detection_layer","events_processed":575,"events_dropped":0,"avg_latency_ms":16.142692892307075,"throughput_eps":0,"last_update":"2026-03-21T16:06:29.210563402Z"} +2026/03/21 16:06:34 [transform_engine] {"stage_name":"transform_engine","events_processed":575,"events_dropped":0,"avg_latency_ms":110.8996070842881,"throughput_eps":0,"last_update":"2026-03-21T16:06:29.210584032Z"} +2026/03/21 16:06:34 ───────────────────────────────────────────────── +2026/03/21 16:06:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:06:39 [log_collector] {"stage_name":"log_collector","events_processed":27201,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5440.2,"last_update":"2026-03-21T16:06:34.068597676Z"} +2026/03/21 16:06:39 [metric_collector] {"stage_name":"metric_collector","events_processed":17264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3452.8,"last_update":"2026-03-21T16:06:34.068912559Z"} +2026/03/21 16:06:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6908,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:06:34.076897884Z"} +2026/03/21 16:06:39 [detection_layer] {"stage_name":"detection_layer","events_processed":575,"events_dropped":0,"avg_latency_ms":16.142692892307075,"throughput_eps":0,"last_update":"2026-03-21T16:06:34.210141835Z"} +2026/03/21 16:06:39 [transform_engine] {"stage_name":"transform_engine","events_processed":575,"events_dropped":0,"avg_latency_ms":110.8996070842881,"throughput_eps":0,"last_update":"2026-03-21T16:06:34.210156624Z"} +2026/03/21 16:06:39 ───────────────────────────────────────────────── +2026/03/21 16:06:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:06:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:06:39.077128335Z"} +2026/03/21 16:06:44 [detection_layer] {"stage_name":"detection_layer","events_processed":575,"events_dropped":0,"avg_latency_ms":16.142692892307075,"throughput_eps":0,"last_update":"2026-03-21T16:06:39.210447782Z"} +2026/03/21 16:06:44 [transform_engine] {"stage_name":"transform_engine","events_processed":575,"events_dropped":0,"avg_latency_ms":110.8996070842881,"throughput_eps":0,"last_update":"2026-03-21T16:06:39.210464805Z"} +2026/03/21 16:06:44 [log_collector] {"stage_name":"log_collector","events_processed":27202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5440.4,"last_update":"2026-03-21T16:06:39.068806867Z"} +2026/03/21 16:06:44 [metric_collector] {"stage_name":"metric_collector","events_processed":17269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3453.8,"last_update":"2026-03-21T16:06:39.069094337Z"} +2026/03/21 16:06:44 ───────────────────────────────────────────────── +2026/03/21 16:06:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:06:49 [log_collector] {"stage_name":"log_collector","events_processed":27202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5440.4,"last_update":"2026-03-21T16:06:44.06844212Z"} +2026/03/21 16:06:49 [metric_collector] {"stage_name":"metric_collector","events_processed":17274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3454.8,"last_update":"2026-03-21T16:06:44.068830164Z"} +2026/03/21 16:06:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6912,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:06:44.077671919Z"} +2026/03/21 16:06:49 [detection_layer] {"stage_name":"detection_layer","events_processed":575,"events_dropped":0,"avg_latency_ms":16.142692892307075,"throughput_eps":0,"last_update":"2026-03-21T16:06:44.209934721Z"} +2026/03/21 16:06:49 [transform_engine] {"stage_name":"transform_engine","events_processed":575,"events_dropped":0,"avg_latency_ms":110.8996070842881,"throughput_eps":0,"last_update":"2026-03-21T16:06:44.209947274Z"} +2026/03/21 16:06:49 ───────────────────────────────────────────────── +2026/03/21 16:06:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:06:54 [log_collector] {"stage_name":"log_collector","events_processed":27202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5440.4,"last_update":"2026-03-21T16:06:49.069132474Z"} +2026/03/21 16:06:54 [metric_collector] {"stage_name":"metric_collector","events_processed":17279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3455.8,"last_update":"2026-03-21T16:06:49.06936553Z"} +2026/03/21 16:06:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:06:49.07855429Z"} +2026/03/21 16:06:54 [detection_layer] {"stage_name":"detection_layer","events_processed":575,"events_dropped":0,"avg_latency_ms":16.142692892307075,"throughput_eps":0,"last_update":"2026-03-21T16:06:49.209870919Z"} +2026/03/21 16:06:54 [transform_engine] {"stage_name":"transform_engine","events_processed":576,"events_dropped":0,"avg_latency_ms":112.1039490674305,"throughput_eps":0,"last_update":"2026-03-21T16:06:49.32672074Z"} +2026/03/21 16:06:54 ───────────────────────────────────────────────── +2026/03/21 16:06:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:06:59 [transform_engine] {"stage_name":"transform_engine","events_processed":576,"events_dropped":0,"avg_latency_ms":112.1039490674305,"throughput_eps":0,"last_update":"2026-03-21T16:06:54.209794335Z"} +2026/03/21 16:06:59 [log_collector] {"stage_name":"log_collector","events_processed":27202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5440.4,"last_update":"2026-03-21T16:06:54.068835347Z"} +2026/03/21 16:06:59 [metric_collector] {"stage_name":"metric_collector","events_processed":17284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3456.8,"last_update":"2026-03-21T16:06:54.069125353Z"} +2026/03/21 16:06:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:06:54.077563936Z"} +2026/03/21 16:06:59 [detection_layer] {"stage_name":"detection_layer","events_processed":576,"events_dropped":0,"avg_latency_ms":16.59591611384566,"throughput_eps":0,"last_update":"2026-03-21T16:06:54.209888556Z"} +2026/03/21 16:06:59 ───────────────────────────────────────────────── +2026/03/21 16:07:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:07:04 [log_collector] {"stage_name":"log_collector","events_processed":27202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5440.4,"last_update":"2026-03-21T16:06:59.068879109Z"} +2026/03/21 16:07:04 [metric_collector] {"stage_name":"metric_collector","events_processed":17289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3457.8,"last_update":"2026-03-21T16:06:59.069210946Z"} +2026/03/21 16:07:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6918,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:06:59.079608164Z"} +2026/03/21 16:07:04 [detection_layer] {"stage_name":"detection_layer","events_processed":576,"events_dropped":0,"avg_latency_ms":16.59591611384566,"throughput_eps":0,"last_update":"2026-03-21T16:06:59.209862622Z"} +2026/03/21 16:07:04 [transform_engine] {"stage_name":"transform_engine","events_processed":576,"events_dropped":0,"avg_latency_ms":112.1039490674305,"throughput_eps":0,"last_update":"2026-03-21T16:06:59.209851831Z"} +2026/03/21 16:07:04 ───────────────────────────────────────────────── +2026/03/21 16:07:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:07:09 [log_collector] {"stage_name":"log_collector","events_processed":27202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5440.4,"last_update":"2026-03-21T16:07:04.068133057Z"} +2026/03/21 16:07:09 [metric_collector] {"stage_name":"metric_collector","events_processed":17294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3458.8,"last_update":"2026-03-21T16:07:04.068531101Z"} +2026/03/21 16:07:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6920,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:07:04.077872204Z"} +2026/03/21 16:07:09 [detection_layer] {"stage_name":"detection_layer","events_processed":576,"events_dropped":0,"avg_latency_ms":16.59591611384566,"throughput_eps":0,"last_update":"2026-03-21T16:07:04.210400639Z"} +2026/03/21 16:07:09 [transform_engine] {"stage_name":"transform_engine","events_processed":576,"events_dropped":0,"avg_latency_ms":112.1039490674305,"throughput_eps":0,"last_update":"2026-03-21T16:07:04.210273275Z"} +2026/03/21 16:07:09 ───────────────────────────────────────────────── +2026/03/21 16:07:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:07:14 [detection_layer] {"stage_name":"detection_layer","events_processed":576,"events_dropped":0,"avg_latency_ms":16.59591611384566,"throughput_eps":0,"last_update":"2026-03-21T16:07:09.210147554Z"} +2026/03/21 16:07:14 [transform_engine] {"stage_name":"transform_engine","events_processed":576,"events_dropped":0,"avg_latency_ms":112.1039490674305,"throughput_eps":0,"last_update":"2026-03-21T16:07:09.210121995Z"} +2026/03/21 16:07:14 [log_collector] {"stage_name":"log_collector","events_processed":27202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5440.4,"last_update":"2026-03-21T16:07:09.068129051Z"} +2026/03/21 16:07:14 [metric_collector] {"stage_name":"metric_collector","events_processed":17299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3459.8,"last_update":"2026-03-21T16:07:09.068737287Z"} +2026/03/21 16:07:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:07:09.077855554Z"} +2026/03/21 16:07:14 ───────────────────────────────────────────────── +2026/03/21 16:07:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:07:19 [log_collector] {"stage_name":"log_collector","events_processed":27202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5440.4,"last_update":"2026-03-21T16:07:14.068075662Z"} +2026/03/21 16:07:19 [metric_collector] {"stage_name":"metric_collector","events_processed":17304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3460.8,"last_update":"2026-03-21T16:07:14.068679379Z"} +2026/03/21 16:07:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:07:14.077405144Z"} +2026/03/21 16:07:19 [detection_layer] {"stage_name":"detection_layer","events_processed":576,"events_dropped":0,"avg_latency_ms":16.59591611384566,"throughput_eps":0,"last_update":"2026-03-21T16:07:14.210692011Z"} +2026/03/21 16:07:19 [transform_engine] {"stage_name":"transform_engine","events_processed":576,"events_dropped":0,"avg_latency_ms":112.1039490674305,"throughput_eps":0,"last_update":"2026-03-21T16:07:14.210662824Z"} +2026/03/21 16:07:19 ───────────────────────────────────────────────── +2026/03/21 16:07:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:07:24 [transform_engine] {"stage_name":"transform_engine","events_processed":577,"events_dropped":0,"avg_latency_ms":104.4073044539444,"throughput_eps":0,"last_update":"2026-03-21T16:07:19.284394801Z"} +2026/03/21 16:07:24 [log_collector] {"stage_name":"log_collector","events_processed":27202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5440.4,"last_update":"2026-03-21T16:07:19.068935841Z"} +2026/03/21 16:07:24 [metric_collector] {"stage_name":"metric_collector","events_processed":17309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3461.8,"last_update":"2026-03-21T16:07:19.069149671Z"} +2026/03/21 16:07:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:07:19.078353602Z"} +2026/03/21 16:07:24 [detection_layer] {"stage_name":"detection_layer","events_processed":576,"events_dropped":0,"avg_latency_ms":16.59591611384566,"throughput_eps":0,"last_update":"2026-03-21T16:07:19.210754268Z"} +2026/03/21 16:07:24 ───────────────────────────────────────────────── +2026/03/21 16:07:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:07:29 [log_collector] {"stage_name":"log_collector","events_processed":27202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5440.4,"last_update":"2026-03-21T16:07:24.068663906Z"} +2026/03/21 16:07:29 [metric_collector] {"stage_name":"metric_collector","events_processed":17314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3462.8,"last_update":"2026-03-21T16:07:24.068987967Z"} +2026/03/21 16:07:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:07:24.079021037Z"} +2026/03/21 16:07:29 [detection_layer] {"stage_name":"detection_layer","events_processed":577,"events_dropped":0,"avg_latency_ms":17.85280969107653,"throughput_eps":0,"last_update":"2026-03-21T16:07:24.210267919Z"} +2026/03/21 16:07:29 [transform_engine] {"stage_name":"transform_engine","events_processed":577,"events_dropped":0,"avg_latency_ms":104.4073044539444,"throughput_eps":0,"last_update":"2026-03-21T16:07:24.210280764Z"} +2026/03/21 16:07:29 ───────────────────────────────────────────────── +2026/03/21 16:07:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:07:34 [transform_engine] {"stage_name":"transform_engine","events_processed":577,"events_dropped":0,"avg_latency_ms":104.4073044539444,"throughput_eps":0,"last_update":"2026-03-21T16:07:29.209679912Z"} +2026/03/21 16:07:34 [log_collector] {"stage_name":"log_collector","events_processed":27202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5440.4,"last_update":"2026-03-21T16:07:29.06893163Z"} +2026/03/21 16:07:34 [metric_collector] {"stage_name":"metric_collector","events_processed":17318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3463.6,"last_update":"2026-03-21T16:07:29.068939396Z"} +2026/03/21 16:07:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6930,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:07:29.078477086Z"} +2026/03/21 16:07:34 [detection_layer] {"stage_name":"detection_layer","events_processed":577,"events_dropped":0,"avg_latency_ms":17.85280969107653,"throughput_eps":0,"last_update":"2026-03-21T16:07:29.210769962Z"} +2026/03/21 16:07:34 ───────────────────────────────────────────────── +2026/03/21 16:07:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:07:39 [log_collector] {"stage_name":"log_collector","events_processed":27202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5440.4,"last_update":"2026-03-21T16:07:34.068174716Z"} +2026/03/21 16:07:39 [metric_collector] {"stage_name":"metric_collector","events_processed":17323,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3464.6,"last_update":"2026-03-21T16:07:34.068217779Z"} +2026/03/21 16:07:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:07:34.078809949Z"} +2026/03/21 16:07:39 [detection_layer] {"stage_name":"detection_layer","events_processed":577,"events_dropped":0,"avg_latency_ms":17.85280969107653,"throughput_eps":0,"last_update":"2026-03-21T16:07:34.210151782Z"} +2026/03/21 16:07:39 [transform_engine] {"stage_name":"transform_engine","events_processed":577,"events_dropped":0,"avg_latency_ms":104.4073044539444,"throughput_eps":0,"last_update":"2026-03-21T16:07:34.210126143Z"} +2026/03/21 16:07:39 ───────────────────────────────────────────────── +Saved state: 18 clusters, 27203 messages, reason: none +2026/03/21 16:07:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:07:44 [log_collector] {"stage_name":"log_collector","events_processed":27202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5440.4,"last_update":"2026-03-21T16:07:39.06913009Z"} +2026/03/21 16:07:44 [metric_collector] {"stage_name":"metric_collector","events_processed":17328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3465.6,"last_update":"2026-03-21T16:07:39.069116483Z"} +2026/03/21 16:07:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:07:39.078731141Z"} +2026/03/21 16:07:44 [detection_layer] {"stage_name":"detection_layer","events_processed":577,"events_dropped":0,"avg_latency_ms":17.85280969107653,"throughput_eps":0,"last_update":"2026-03-21T16:07:39.210005703Z"} +2026/03/21 16:07:44 [transform_engine] {"stage_name":"transform_engine","events_processed":577,"events_dropped":0,"avg_latency_ms":104.4073044539444,"throughput_eps":0,"last_update":"2026-03-21T16:07:39.210046Z"} +2026/03/21 16:07:44 ───────────────────────────────────────────────── +2026/03/21 16:07:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:07:49 [detection_layer] {"stage_name":"detection_layer","events_processed":577,"events_dropped":0,"avg_latency_ms":17.85280969107653,"throughput_eps":0,"last_update":"2026-03-21T16:07:44.210092218Z"} +2026/03/21 16:07:49 [transform_engine] {"stage_name":"transform_engine","events_processed":577,"events_dropped":0,"avg_latency_ms":104.4073044539444,"throughput_eps":0,"last_update":"2026-03-21T16:07:44.210106034Z"} +2026/03/21 16:07:49 [log_collector] {"stage_name":"log_collector","events_processed":27207,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5441.4,"last_update":"2026-03-21T16:07:44.068954995Z"} +2026/03/21 16:07:49 [metric_collector] {"stage_name":"metric_collector","events_processed":17334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3466.8,"last_update":"2026-03-21T16:07:44.06916679Z"} +2026/03/21 16:07:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:07:44.07591821Z"} +2026/03/21 16:07:49 ───────────────────────────────────────────────── +2026/03/21 16:07:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:07:54 [detection_layer] {"stage_name":"detection_layer","events_processed":577,"events_dropped":0,"avg_latency_ms":17.85280969107653,"throughput_eps":0,"last_update":"2026-03-21T16:07:49.210895154Z"} +2026/03/21 16:07:54 [transform_engine] {"stage_name":"transform_engine","events_processed":578,"events_dropped":0,"avg_latency_ms":455.0801907631556,"throughput_eps":0,"last_update":"2026-03-21T16:07:51.067858921Z"} +2026/03/21 16:07:54 [log_collector] {"stage_name":"log_collector","events_processed":27207,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5441.4,"last_update":"2026-03-21T16:07:49.068694003Z"} +2026/03/21 16:07:54 [metric_collector] {"stage_name":"metric_collector","events_processed":17339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3467.8,"last_update":"2026-03-21T16:07:49.069068881Z"} +2026/03/21 16:07:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:07:49.0778179Z"} +2026/03/21 16:07:54 ───────────────────────────────────────────────── +2026/03/21 16:07:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:07:59 [log_collector] {"stage_name":"log_collector","events_processed":27207,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5441.4,"last_update":"2026-03-21T16:07:54.068584751Z"} +2026/03/21 16:07:59 [metric_collector] {"stage_name":"metric_collector","events_processed":17344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3468.8,"last_update":"2026-03-21T16:07:54.068764315Z"} +2026/03/21 16:07:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6940,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:07:54.07901418Z"} +2026/03/21 16:07:59 [detection_layer] {"stage_name":"detection_layer","events_processed":578,"events_dropped":0,"avg_latency_ms":17.445718752861225,"throughput_eps":0,"last_update":"2026-03-21T16:07:54.210226849Z"} +2026/03/21 16:07:59 [transform_engine] {"stage_name":"transform_engine","events_processed":578,"events_dropped":0,"avg_latency_ms":455.0801907631556,"throughput_eps":0,"last_update":"2026-03-21T16:07:54.210238831Z"} +2026/03/21 16:07:59 ───────────────────────────────────────────────── +2026/03/21 16:08:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:08:04 [log_collector] {"stage_name":"log_collector","events_processed":27207,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5441.4,"last_update":"2026-03-21T16:07:59.068771395Z"} +2026/03/21 16:08:04 [metric_collector] {"stage_name":"metric_collector","events_processed":17349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3469.8,"last_update":"2026-03-21T16:07:59.068927003Z"} +2026/03/21 16:08:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:07:59.074892676Z"} +2026/03/21 16:08:04 [detection_layer] {"stage_name":"detection_layer","events_processed":578,"events_dropped":0,"avg_latency_ms":17.445718752861225,"throughput_eps":0,"last_update":"2026-03-21T16:07:59.210165045Z"} +2026/03/21 16:08:04 [transform_engine] {"stage_name":"transform_engine","events_processed":578,"events_dropped":0,"avg_latency_ms":455.0801907631556,"throughput_eps":0,"last_update":"2026-03-21T16:07:59.210176867Z"} +2026/03/21 16:08:04 ───────────────────────────────────────────────── +2026/03/21 16:08:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:08:09 [log_collector] {"stage_name":"log_collector","events_processed":27207,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5441.4,"last_update":"2026-03-21T16:08:04.068696085Z"} +2026/03/21 16:08:09 [metric_collector] {"stage_name":"metric_collector","events_processed":17354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3470.8,"last_update":"2026-03-21T16:08:04.068997293Z"} +2026/03/21 16:08:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:08:04.076105566Z"} +2026/03/21 16:08:09 [detection_layer] {"stage_name":"detection_layer","events_processed":578,"events_dropped":0,"avg_latency_ms":17.445718752861225,"throughput_eps":0,"last_update":"2026-03-21T16:08:04.210275901Z"} +2026/03/21 16:08:09 [transform_engine] {"stage_name":"transform_engine","events_processed":578,"events_dropped":0,"avg_latency_ms":455.0801907631556,"throughput_eps":0,"last_update":"2026-03-21T16:08:04.210284858Z"} +2026/03/21 16:08:09 ───────────────────────────────────────────────── +2026/03/21 16:08:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:08:14 [detection_layer] {"stage_name":"detection_layer","events_processed":578,"events_dropped":0,"avg_latency_ms":17.445718752861225,"throughput_eps":0,"last_update":"2026-03-21T16:08:09.210444116Z"} +2026/03/21 16:08:14 [transform_engine] {"stage_name":"transform_engine","events_processed":578,"events_dropped":0,"avg_latency_ms":455.0801907631556,"throughput_eps":0,"last_update":"2026-03-21T16:08:09.210453634Z"} +2026/03/21 16:08:14 [log_collector] {"stage_name":"log_collector","events_processed":27207,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5441.4,"last_update":"2026-03-21T16:08:09.068783388Z"} +2026/03/21 16:08:14 [metric_collector] {"stage_name":"metric_collector","events_processed":17359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3471.8,"last_update":"2026-03-21T16:08:09.068773999Z"} +2026/03/21 16:08:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:08:09.078223289Z"} +2026/03/21 16:08:14 ───────────────────────────────────────────────── +2026/03/21 16:08:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:08:19 [log_collector] {"stage_name":"log_collector","events_processed":27207,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5441.4,"last_update":"2026-03-21T16:08:14.068887752Z"} +2026/03/21 16:08:19 [metric_collector] {"stage_name":"metric_collector","events_processed":17364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3472.8,"last_update":"2026-03-21T16:08:14.068875799Z"} +2026/03/21 16:08:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:08:14.078680199Z"} +2026/03/21 16:08:19 [detection_layer] {"stage_name":"detection_layer","events_processed":578,"events_dropped":0,"avg_latency_ms":17.445718752861225,"throughput_eps":0,"last_update":"2026-03-21T16:08:14.209903153Z"} +2026/03/21 16:08:19 [transform_engine] {"stage_name":"transform_engine","events_processed":578,"events_dropped":0,"avg_latency_ms":455.0801907631556,"throughput_eps":0,"last_update":"2026-03-21T16:08:14.209917781Z"} +2026/03/21 16:08:19 ───────────────────────────────────────────────── +2026/03/21 16:08:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:08:24 [metric_collector] {"stage_name":"metric_collector","events_processed":17369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3473.8,"last_update":"2026-03-21T16:08:19.069275071Z"} +2026/03/21 16:08:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:08:19.076907258Z"} +2026/03/21 16:08:24 [detection_layer] {"stage_name":"detection_layer","events_processed":578,"events_dropped":0,"avg_latency_ms":17.445718752861225,"throughput_eps":0,"last_update":"2026-03-21T16:08:19.210101779Z"} +2026/03/21 16:08:24 [transform_engine] {"stage_name":"transform_engine","events_processed":579,"events_dropped":0,"avg_latency_ms":902.0122446105245,"throughput_eps":0,"last_update":"2026-03-21T16:08:21.899856125Z"} +2026/03/21 16:08:24 [log_collector] {"stage_name":"log_collector","events_processed":27207,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5441.4,"last_update":"2026-03-21T16:08:19.068798858Z"} +2026/03/21 16:08:24 ───────────────────────────────────────────────── +2026/03/21 16:08:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:08:29 [metric_collector] {"stage_name":"metric_collector","events_processed":17374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3474.8,"last_update":"2026-03-21T16:08:24.068709914Z"} +2026/03/21 16:08:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:08:24.075260338Z"} +2026/03/21 16:08:29 [detection_layer] {"stage_name":"detection_layer","events_processed":579,"events_dropped":0,"avg_latency_ms":16.666268202288983,"throughput_eps":0,"last_update":"2026-03-21T16:08:24.210607163Z"} +2026/03/21 16:08:29 [transform_engine] {"stage_name":"transform_engine","events_processed":579,"events_dropped":0,"avg_latency_ms":902.0122446105245,"throughput_eps":0,"last_update":"2026-03-21T16:08:24.210723595Z"} +2026/03/21 16:08:29 [log_collector] {"stage_name":"log_collector","events_processed":27216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5443.2,"last_update":"2026-03-21T16:08:24.068114463Z"} +2026/03/21 16:08:29 ───────────────────────────────────────────────── +2026/03/21 16:08:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:08:34 [log_collector] {"stage_name":"log_collector","events_processed":27218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5443.6,"last_update":"2026-03-21T16:08:29.068062112Z"} +2026/03/21 16:08:34 [metric_collector] {"stage_name":"metric_collector","events_processed":17379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3475.8,"last_update":"2026-03-21T16:08:29.068289559Z"} +2026/03/21 16:08:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:08:29.079785039Z"} +2026/03/21 16:08:34 [detection_layer] {"stage_name":"detection_layer","events_processed":579,"events_dropped":0,"avg_latency_ms":16.666268202288983,"throughput_eps":0,"last_update":"2026-03-21T16:08:29.210031558Z"} +2026/03/21 16:08:34 [transform_engine] {"stage_name":"transform_engine","events_processed":579,"events_dropped":0,"avg_latency_ms":902.0122446105245,"throughput_eps":0,"last_update":"2026-03-21T16:08:29.210005548Z"} +2026/03/21 16:08:34 ───────────────────────────────────────────────── +2026/03/21 16:08:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:08:39 [log_collector] {"stage_name":"log_collector","events_processed":27464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5492.8,"last_update":"2026-03-21T16:08:34.068898218Z"} +2026/03/21 16:08:39 [metric_collector] {"stage_name":"metric_collector","events_processed":17384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3476.8,"last_update":"2026-03-21T16:08:34.069105544Z"} +2026/03/21 16:08:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:08:34.077029Z"} +2026/03/21 16:08:39 [detection_layer] {"stage_name":"detection_layer","events_processed":579,"events_dropped":0,"avg_latency_ms":16.666268202288983,"throughput_eps":0,"last_update":"2026-03-21T16:08:34.210212486Z"} +2026/03/21 16:08:39 [transform_engine] {"stage_name":"transform_engine","events_processed":579,"events_dropped":0,"avg_latency_ms":902.0122446105245,"throughput_eps":0,"last_update":"2026-03-21T16:08:34.21022536Z"} +2026/03/21 16:08:39 ───────────────────────────────────────────────── +2026/03/21 16:08:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:08:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6958,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:08:39.075275643Z"} +2026/03/21 16:08:44 [detection_layer] {"stage_name":"detection_layer","events_processed":579,"events_dropped":0,"avg_latency_ms":16.666268202288983,"throughput_eps":0,"last_update":"2026-03-21T16:08:39.210536419Z"} +2026/03/21 16:08:44 [transform_engine] {"stage_name":"transform_engine","events_processed":579,"events_dropped":0,"avg_latency_ms":902.0122446105245,"throughput_eps":0,"last_update":"2026-03-21T16:08:39.210550807Z"} +2026/03/21 16:08:44 [log_collector] {"stage_name":"log_collector","events_processed":27568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5513.6,"last_update":"2026-03-21T16:08:39.068599198Z"} +2026/03/21 16:08:44 [metric_collector] {"stage_name":"metric_collector","events_processed":17389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3477.8,"last_update":"2026-03-21T16:08:39.068846452Z"} +2026/03/21 16:08:44 ───────────────────────────────────────────────── +2026/03/21 16:08:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:08:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:08:44.078256653Z"} +2026/03/21 16:08:49 [detection_layer] {"stage_name":"detection_layer","events_processed":579,"events_dropped":0,"avg_latency_ms":16.666268202288983,"throughput_eps":0,"last_update":"2026-03-21T16:08:44.210595888Z"} +2026/03/21 16:08:49 [transform_engine] {"stage_name":"transform_engine","events_processed":579,"events_dropped":0,"avg_latency_ms":902.0122446105245,"throughput_eps":0,"last_update":"2026-03-21T16:08:44.210580298Z"} +2026/03/21 16:08:49 [log_collector] {"stage_name":"log_collector","events_processed":27570,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5514,"last_update":"2026-03-21T16:08:44.068112481Z"} +2026/03/21 16:08:49 [metric_collector] {"stage_name":"metric_collector","events_processed":17394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3478.8,"last_update":"2026-03-21T16:08:44.068478433Z"} +2026/03/21 16:08:49 ───────────────────────────────────────────────── +Saved state: 18 clusters, 27571 messages, reason: none +2026/03/21 16:08:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:08:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6962,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:08:49.077944555Z"} +2026/03/21 16:08:54 [detection_layer] {"stage_name":"detection_layer","events_processed":579,"events_dropped":0,"avg_latency_ms":16.666268202288983,"throughput_eps":0,"last_update":"2026-03-21T16:08:49.210264432Z"} +2026/03/21 16:08:54 [transform_engine] {"stage_name":"transform_engine","events_processed":580,"events_dropped":0,"avg_latency_ms":746.3414310884195,"throughput_eps":0,"last_update":"2026-03-21T16:08:49.333937258Z"} +2026/03/21 16:08:54 [log_collector] {"stage_name":"log_collector","events_processed":27570,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5514,"last_update":"2026-03-21T16:08:49.068580039Z"} +2026/03/21 16:08:54 [metric_collector] {"stage_name":"metric_collector","events_processed":17399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3479.8,"last_update":"2026-03-21T16:08:49.068914841Z"} +2026/03/21 16:08:54 ───────────────────────────────────────────────── +2026/03/21 16:08:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:08:59 [detection_layer] {"stage_name":"detection_layer","events_processed":580,"events_dropped":0,"avg_latency_ms":16.990730561831185,"throughput_eps":0,"last_update":"2026-03-21T16:08:54.21017183Z"} +2026/03/21 16:08:59 [transform_engine] {"stage_name":"transform_engine","events_processed":580,"events_dropped":0,"avg_latency_ms":746.3414310884195,"throughput_eps":0,"last_update":"2026-03-21T16:08:54.210154797Z"} +2026/03/21 16:08:59 [log_collector] {"stage_name":"log_collector","events_processed":27573,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5514.6,"last_update":"2026-03-21T16:08:54.069003307Z"} +2026/03/21 16:08:59 [metric_collector] {"stage_name":"metric_collector","events_processed":17404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3480.8,"last_update":"2026-03-21T16:08:54.069453228Z"} +2026/03/21 16:08:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:08:54.079834624Z"} +2026/03/21 16:08:59 ───────────────────────────────────────────────── +2026/03/21 16:09:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:09:04 [log_collector] {"stage_name":"log_collector","events_processed":27573,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5514.6,"last_update":"2026-03-21T16:08:59.068420748Z"} +2026/03/21 16:09:04 [metric_collector] {"stage_name":"metric_collector","events_processed":17409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3481.8,"last_update":"2026-03-21T16:08:59.068652172Z"} +2026/03/21 16:09:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:08:59.076170099Z"} +2026/03/21 16:09:04 [detection_layer] {"stage_name":"detection_layer","events_processed":580,"events_dropped":0,"avg_latency_ms":16.990730561831185,"throughput_eps":0,"last_update":"2026-03-21T16:08:59.210814829Z"} +2026/03/21 16:09:04 [transform_engine] {"stage_name":"transform_engine","events_processed":580,"events_dropped":0,"avg_latency_ms":746.3414310884195,"throughput_eps":0,"last_update":"2026-03-21T16:08:59.210802235Z"} +2026/03/21 16:09:04 ───────────────────────────────────────────────── +2026/03/21 16:09:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:09:09 [log_collector] {"stage_name":"log_collector","events_processed":27583,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5516.6,"last_update":"2026-03-21T16:09:04.068748582Z"} +2026/03/21 16:09:09 [metric_collector] {"stage_name":"metric_collector","events_processed":17414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3482.8,"last_update":"2026-03-21T16:09:04.068948645Z"} +2026/03/21 16:09:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:09:04.075767101Z"} +2026/03/21 16:09:09 [detection_layer] {"stage_name":"detection_layer","events_processed":580,"events_dropped":0,"avg_latency_ms":16.990730561831185,"throughput_eps":0,"last_update":"2026-03-21T16:09:04.210022524Z"} +2026/03/21 16:09:09 [transform_engine] {"stage_name":"transform_engine","events_processed":580,"events_dropped":0,"avg_latency_ms":746.3414310884195,"throughput_eps":0,"last_update":"2026-03-21T16:09:04.210128607Z"} +2026/03/21 16:09:09 ───────────────────────────────────────────────── +2026/03/21 16:09:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:09:14 [transform_engine] {"stage_name":"transform_engine","events_processed":580,"events_dropped":0,"avg_latency_ms":746.3414310884195,"throughput_eps":0,"last_update":"2026-03-21T16:09:09.210180766Z"} +2026/03/21 16:09:14 [log_collector] {"stage_name":"log_collector","events_processed":27584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5516.8,"last_update":"2026-03-21T16:09:09.068632077Z"} +2026/03/21 16:09:14 [metric_collector] {"stage_name":"metric_collector","events_processed":17419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3483.8,"last_update":"2026-03-21T16:09:09.068944496Z"} +2026/03/21 16:09:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6970,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:09:09.078922679Z"} +2026/03/21 16:09:14 [detection_layer] {"stage_name":"detection_layer","events_processed":580,"events_dropped":0,"avg_latency_ms":16.990730561831185,"throughput_eps":0,"last_update":"2026-03-21T16:09:09.2101614Z"} +2026/03/21 16:09:14 ───────────────────────────────────────────────── +2026/03/21 16:09:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:09:19 [log_collector] {"stage_name":"log_collector","events_processed":27598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5519.6,"last_update":"2026-03-21T16:09:14.06881344Z"} +2026/03/21 16:09:19 [metric_collector] {"stage_name":"metric_collector","events_processed":17424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3484.8,"last_update":"2026-03-21T16:09:14.069003103Z"} +2026/03/21 16:09:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:09:14.0747721Z"} +2026/03/21 16:09:19 [detection_layer] {"stage_name":"detection_layer","events_processed":580,"events_dropped":0,"avg_latency_ms":16.990730561831185,"throughput_eps":0,"last_update":"2026-03-21T16:09:14.210015142Z"} +2026/03/21 16:09:19 [transform_engine] {"stage_name":"transform_engine","events_processed":580,"events_dropped":0,"avg_latency_ms":746.3414310884195,"throughput_eps":0,"last_update":"2026-03-21T16:09:14.210122278Z"} +2026/03/21 16:09:19 ───────────────────────────────────────────────── +2026/03/21 16:09:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:09:24 [metric_collector] {"stage_name":"metric_collector","events_processed":17429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3485.8,"last_update":"2026-03-21T16:09:19.06915138Z"} +2026/03/21 16:09:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:09:19.079482228Z"} +2026/03/21 16:09:24 [detection_layer] {"stage_name":"detection_layer","events_processed":580,"events_dropped":0,"avg_latency_ms":16.990730561831185,"throughput_eps":0,"last_update":"2026-03-21T16:09:19.210429037Z"} +2026/03/21 16:09:24 [transform_engine] {"stage_name":"transform_engine","events_processed":581,"events_dropped":0,"avg_latency_ms":620.3064256707356,"throughput_eps":0,"last_update":"2026-03-21T16:09:19.325808682Z"} +2026/03/21 16:09:24 [log_collector] {"stage_name":"log_collector","events_processed":27600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5520,"last_update":"2026-03-21T16:09:19.068861374Z"} +2026/03/21 16:09:24 ───────────────────────────────────────────────── +2026/03/21 16:09:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:09:29 [detection_layer] {"stage_name":"detection_layer","events_processed":581,"events_dropped":0,"avg_latency_ms":17.64244564946495,"throughput_eps":0,"last_update":"2026-03-21T16:09:24.210201377Z"} +2026/03/21 16:09:29 [transform_engine] {"stage_name":"transform_engine","events_processed":581,"events_dropped":0,"avg_latency_ms":620.3064256707356,"throughput_eps":0,"last_update":"2026-03-21T16:09:24.210235492Z"} +2026/03/21 16:09:29 [log_collector] {"stage_name":"log_collector","events_processed":27600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5520,"last_update":"2026-03-21T16:09:24.068249971Z"} +2026/03/21 16:09:29 [metric_collector] {"stage_name":"metric_collector","events_processed":17434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3486.8,"last_update":"2026-03-21T16:09:24.068959049Z"} +2026/03/21 16:09:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:09:24.076793093Z"} +2026/03/21 16:09:29 ───────────────────────────────────────────────── +2026/03/21 16:09:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:09:34 [log_collector] {"stage_name":"log_collector","events_processed":27600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5520,"last_update":"2026-03-21T16:09:29.068098266Z"} +2026/03/21 16:09:34 [metric_collector] {"stage_name":"metric_collector","events_processed":17439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3487.8,"last_update":"2026-03-21T16:09:29.068901475Z"} +2026/03/21 16:09:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:09:29.077825146Z"} +2026/03/21 16:09:34 [detection_layer] {"stage_name":"detection_layer","events_processed":581,"events_dropped":0,"avg_latency_ms":17.64244564946495,"throughput_eps":0,"last_update":"2026-03-21T16:09:29.210209558Z"} +2026/03/21 16:09:34 [transform_engine] {"stage_name":"transform_engine","events_processed":581,"events_dropped":0,"avg_latency_ms":620.3064256707356,"throughput_eps":0,"last_update":"2026-03-21T16:09:29.210253072Z"} +2026/03/21 16:09:34 ───────────────────────────────────────────────── +2026/03/21 16:09:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:09:39 [log_collector] {"stage_name":"log_collector","events_processed":27600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5520,"last_update":"2026-03-21T16:09:34.068250601Z"} +2026/03/21 16:09:39 [metric_collector] {"stage_name":"metric_collector","events_processed":17444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3488.8,"last_update":"2026-03-21T16:09:34.068735791Z"} +2026/03/21 16:09:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:09:34.077396468Z"} +2026/03/21 16:09:39 [detection_layer] {"stage_name":"detection_layer","events_processed":581,"events_dropped":0,"avg_latency_ms":17.64244564946495,"throughput_eps":0,"last_update":"2026-03-21T16:09:34.210705109Z"} +2026/03/21 16:09:39 [transform_engine] {"stage_name":"transform_engine","events_processed":581,"events_dropped":0,"avg_latency_ms":620.3064256707356,"throughput_eps":0,"last_update":"2026-03-21T16:09:34.21082042Z"} +2026/03/21 16:09:39 ───────────────────────────────────────────────── +2026/03/21 16:09:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:09:44 [log_collector] {"stage_name":"log_collector","events_processed":27600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5520,"last_update":"2026-03-21T16:09:39.068821255Z"} +2026/03/21 16:09:44 [metric_collector] {"stage_name":"metric_collector","events_processed":17449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3489.8,"last_update":"2026-03-21T16:09:39.069420153Z"} +2026/03/21 16:09:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:09:39.079146493Z"} +2026/03/21 16:09:44 [detection_layer] {"stage_name":"detection_layer","events_processed":581,"events_dropped":0,"avg_latency_ms":17.64244564946495,"throughput_eps":0,"last_update":"2026-03-21T16:09:39.210477323Z"} +2026/03/21 16:09:44 [transform_engine] {"stage_name":"transform_engine","events_processed":581,"events_dropped":0,"avg_latency_ms":620.3064256707356,"throughput_eps":0,"last_update":"2026-03-21T16:09:39.210494084Z"} +2026/03/21 16:09:44 ───────────────────────────────────────────────── +2026/03/21 16:09:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:09:49 [log_collector] {"stage_name":"log_collector","events_processed":27600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5520,"last_update":"2026-03-21T16:09:44.068455413Z"} +2026/03/21 16:09:49 [metric_collector] {"stage_name":"metric_collector","events_processed":17454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3490.8,"last_update":"2026-03-21T16:09:44.06885572Z"} +2026/03/21 16:09:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:09:44.077828254Z"} +2026/03/21 16:09:49 [detection_layer] {"stage_name":"detection_layer","events_processed":581,"events_dropped":0,"avg_latency_ms":17.64244564946495,"throughput_eps":0,"last_update":"2026-03-21T16:09:44.210235517Z"} +2026/03/21 16:09:49 [transform_engine] {"stage_name":"transform_engine","events_processed":581,"events_dropped":0,"avg_latency_ms":620.3064256707356,"throughput_eps":0,"last_update":"2026-03-21T16:09:44.210250976Z"} +2026/03/21 16:09:49 ───────────────────────────────────────────────── +2026/03/21 16:09:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:09:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:09:49.07993041Z"} +2026/03/21 16:09:54 [detection_layer] {"stage_name":"detection_layer","events_processed":581,"events_dropped":0,"avg_latency_ms":17.64244564946495,"throughput_eps":0,"last_update":"2026-03-21T16:09:49.210438371Z"} +2026/03/21 16:09:54 [transform_engine] {"stage_name":"transform_engine","events_processed":582,"events_dropped":0,"avg_latency_ms":511.4171995365885,"throughput_eps":0,"last_update":"2026-03-21T16:09:49.286265955Z"} +2026/03/21 16:09:54 [log_collector] {"stage_name":"log_collector","events_processed":27600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5520,"last_update":"2026-03-21T16:09:49.068766747Z"} +2026/03/21 16:09:54 [metric_collector] {"stage_name":"metric_collector","events_processed":17459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3491.8,"last_update":"2026-03-21T16:09:49.069223502Z"} +2026/03/21 16:09:54 ───────────────────────────────────────────────── +2026/03/21 16:09:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:09:59 [metric_collector] {"stage_name":"metric_collector","events_processed":17463,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3492.6,"last_update":"2026-03-21T16:09:54.068183988Z"} +2026/03/21 16:09:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:09:54.07857962Z"} +2026/03/21 16:09:59 [detection_layer] {"stage_name":"detection_layer","events_processed":582,"events_dropped":0,"avg_latency_ms":18.62656051957196,"throughput_eps":0,"last_update":"2026-03-21T16:09:54.210985347Z"} +2026/03/21 16:09:59 [transform_engine] {"stage_name":"transform_engine","events_processed":582,"events_dropped":0,"avg_latency_ms":511.4171995365885,"throughput_eps":0,"last_update":"2026-03-21T16:09:54.209796819Z"} +2026/03/21 16:09:59 [log_collector] {"stage_name":"log_collector","events_processed":27600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5520,"last_update":"2026-03-21T16:09:54.068145745Z"} +2026/03/21 16:09:59 ───────────────────────────────────────────────── +2026/03/21 16:10:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:10:04 [log_collector] {"stage_name":"log_collector","events_processed":27600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5520,"last_update":"2026-03-21T16:09:59.06870892Z"} +2026/03/21 16:10:04 [metric_collector] {"stage_name":"metric_collector","events_processed":17468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3493.6,"last_update":"2026-03-21T16:09:59.068702417Z"} +2026/03/21 16:10:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6990,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:09:59.079541168Z"} +2026/03/21 16:10:04 [detection_layer] {"stage_name":"detection_layer","events_processed":582,"events_dropped":0,"avg_latency_ms":18.62656051957196,"throughput_eps":0,"last_update":"2026-03-21T16:09:59.209964595Z"} +2026/03/21 16:10:04 [transform_engine] {"stage_name":"transform_engine","events_processed":582,"events_dropped":0,"avg_latency_ms":511.4171995365885,"throughput_eps":0,"last_update":"2026-03-21T16:09:59.209785322Z"} +2026/03/21 16:10:04 ───────────────────────────────────────────────── +2026/03/21 16:10:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:10:09 [log_collector] {"stage_name":"log_collector","events_processed":27600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5520,"last_update":"2026-03-21T16:10:04.068784841Z"} +2026/03/21 16:10:09 [metric_collector] {"stage_name":"metric_collector","events_processed":17474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3494.8,"last_update":"2026-03-21T16:10:04.069113461Z"} +2026/03/21 16:10:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6992,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:10:04.081060676Z"} +2026/03/21 16:10:09 [detection_layer] {"stage_name":"detection_layer","events_processed":582,"events_dropped":0,"avg_latency_ms":18.62656051957196,"throughput_eps":0,"last_update":"2026-03-21T16:10:04.210268923Z"} +2026/03/21 16:10:09 [transform_engine] {"stage_name":"transform_engine","events_processed":582,"events_dropped":0,"avg_latency_ms":511.4171995365885,"throughput_eps":0,"last_update":"2026-03-21T16:10:04.210280516Z"} +2026/03/21 16:10:09 ───────────────────────────────────────────────── +2026/03/21 16:10:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:10:14 [log_collector] {"stage_name":"log_collector","events_processed":27600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5520,"last_update":"2026-03-21T16:10:09.069049976Z"} +2026/03/21 16:10:14 [metric_collector] {"stage_name":"metric_collector","events_processed":17479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3495.8,"last_update":"2026-03-21T16:10:09.069562017Z"} +2026/03/21 16:10:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:10:09.078635024Z"} +2026/03/21 16:10:14 [detection_layer] {"stage_name":"detection_layer","events_processed":582,"events_dropped":0,"avg_latency_ms":18.62656051957196,"throughput_eps":0,"last_update":"2026-03-21T16:10:09.209858532Z"} +2026/03/21 16:10:14 [transform_engine] {"stage_name":"transform_engine","events_processed":582,"events_dropped":0,"avg_latency_ms":511.4171995365885,"throughput_eps":0,"last_update":"2026-03-21T16:10:09.209827322Z"} +2026/03/21 16:10:14 ───────────────────────────────────────────────── +Saved state: 18 clusters, 27601 messages, reason: none +2026/03/21 16:10:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:10:19 [log_collector] {"stage_name":"log_collector","events_processed":27600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5520,"last_update":"2026-03-21T16:10:14.068915716Z"} +2026/03/21 16:10:19 [metric_collector] {"stage_name":"metric_collector","events_processed":17484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3496.8,"last_update":"2026-03-21T16:10:14.06977836Z"} +2026/03/21 16:10:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6996,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:10:14.076080506Z"} +2026/03/21 16:10:19 [detection_layer] {"stage_name":"detection_layer","events_processed":582,"events_dropped":0,"avg_latency_ms":18.62656051957196,"throughput_eps":0,"last_update":"2026-03-21T16:10:14.210325815Z"} +2026/03/21 16:10:19 [transform_engine] {"stage_name":"transform_engine","events_processed":582,"events_dropped":0,"avg_latency_ms":511.4171995365885,"throughput_eps":0,"last_update":"2026-03-21T16:10:14.210337527Z"} +2026/03/21 16:10:19 ───────────────────────────────────────────────── +2026/03/21 16:10:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:10:24 [log_collector] {"stage_name":"log_collector","events_processed":27603,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5520.6,"last_update":"2026-03-21T16:10:19.068731733Z"} +2026/03/21 16:10:24 [metric_collector] {"stage_name":"metric_collector","events_processed":17489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3497.8,"last_update":"2026-03-21T16:10:19.068972124Z"} +2026/03/21 16:10:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:10:19.07957897Z"} +2026/03/21 16:10:24 [detection_layer] {"stage_name":"detection_layer","events_processed":582,"events_dropped":0,"avg_latency_ms":18.62656051957196,"throughput_eps":0,"last_update":"2026-03-21T16:10:19.210797416Z"} +2026/03/21 16:10:24 [transform_engine] {"stage_name":"transform_engine","events_processed":583,"events_dropped":0,"avg_latency_ms":441.2757278292708,"throughput_eps":0,"last_update":"2026-03-21T16:10:19.370404143Z"} +2026/03/21 16:10:24 ───────────────────────────────────────────────── +2026/03/21 16:10:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:10:29 [log_collector] {"stage_name":"log_collector","events_processed":27614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5522.8,"last_update":"2026-03-21T16:10:24.068856582Z"} +2026/03/21 16:10:29 [metric_collector] {"stage_name":"metric_collector","events_processed":17494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3498.8,"last_update":"2026-03-21T16:10:24.069073928Z"} +2026/03/21 16:10:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:10:24.077665512Z"} +2026/03/21 16:10:29 [detection_layer] {"stage_name":"detection_layer","events_processed":583,"events_dropped":0,"avg_latency_ms":17.98964681565757,"throughput_eps":0,"last_update":"2026-03-21T16:10:24.209937106Z"} +2026/03/21 16:10:29 [transform_engine] {"stage_name":"transform_engine","events_processed":583,"events_dropped":0,"avg_latency_ms":441.2757278292708,"throughput_eps":0,"last_update":"2026-03-21T16:10:24.209836353Z"} +2026/03/21 16:10:29 ───────────────────────────────────────────────── +2026/03/21 16:10:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:10:34 [transform_engine] {"stage_name":"transform_engine","events_processed":583,"events_dropped":0,"avg_latency_ms":441.2757278292708,"throughput_eps":0,"last_update":"2026-03-21T16:10:29.210008123Z"} +2026/03/21 16:10:34 [log_collector] {"stage_name":"log_collector","events_processed":27614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5522.8,"last_update":"2026-03-21T16:10:29.068065849Z"} +2026/03/21 16:10:34 [metric_collector] {"stage_name":"metric_collector","events_processed":17499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3499.8,"last_update":"2026-03-21T16:10:29.068408205Z"} +2026/03/21 16:10:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:10:29.077761679Z"} +2026/03/21 16:10:34 [detection_layer] {"stage_name":"detection_layer","events_processed":583,"events_dropped":0,"avg_latency_ms":17.98964681565757,"throughput_eps":0,"last_update":"2026-03-21T16:10:29.210057397Z"} +2026/03/21 16:10:34 ───────────────────────────────────────────────── +2026/03/21 16:10:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:10:39 [log_collector] {"stage_name":"log_collector","events_processed":27614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5522.8,"last_update":"2026-03-21T16:10:34.068832401Z"} +2026/03/21 16:10:39 [metric_collector] {"stage_name":"metric_collector","events_processed":17504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3500.8,"last_update":"2026-03-21T16:10:34.06910337Z"} +2026/03/21 16:10:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:10:34.078066086Z"} +2026/03/21 16:10:39 [detection_layer] {"stage_name":"detection_layer","events_processed":583,"events_dropped":0,"avg_latency_ms":17.98964681565757,"throughput_eps":0,"last_update":"2026-03-21T16:10:34.210566876Z"} +2026/03/21 16:10:39 [transform_engine] {"stage_name":"transform_engine","events_processed":583,"events_dropped":0,"avg_latency_ms":441.2757278292708,"throughput_eps":0,"last_update":"2026-03-21T16:10:34.210454661Z"} +2026/03/21 16:10:39 ───────────────────────────────────────────────── +2026/03/21 16:10:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:10:44 [log_collector] {"stage_name":"log_collector","events_processed":27614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5522.8,"last_update":"2026-03-21T16:10:39.068774627Z"} +2026/03/21 16:10:44 [metric_collector] {"stage_name":"metric_collector","events_processed":17509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3501.8,"last_update":"2026-03-21T16:10:39.068949232Z"} +2026/03/21 16:10:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7006,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:10:39.078510574Z"} +2026/03/21 16:10:44 [detection_layer] {"stage_name":"detection_layer","events_processed":583,"events_dropped":0,"avg_latency_ms":17.98964681565757,"throughput_eps":0,"last_update":"2026-03-21T16:10:39.210912193Z"} +2026/03/21 16:10:44 [transform_engine] {"stage_name":"transform_engine","events_processed":583,"events_dropped":0,"avg_latency_ms":441.2757278292708,"throughput_eps":0,"last_update":"2026-03-21T16:10:39.209709218Z"} +2026/03/21 16:10:44 ───────────────────────────────────────────────── +2026/03/21 16:10:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:10:49 [metric_collector] {"stage_name":"metric_collector","events_processed":17514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3502.8,"last_update":"2026-03-21T16:10:44.068914835Z"} +2026/03/21 16:10:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7008,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:10:44.076870992Z"} +2026/03/21 16:10:49 [detection_layer] {"stage_name":"detection_layer","events_processed":583,"events_dropped":0,"avg_latency_ms":17.98964681565757,"throughput_eps":0,"last_update":"2026-03-21T16:10:44.210169649Z"} +2026/03/21 16:10:49 [transform_engine] {"stage_name":"transform_engine","events_processed":583,"events_dropped":0,"avg_latency_ms":441.2757278292708,"throughput_eps":0,"last_update":"2026-03-21T16:10:44.210300199Z"} +2026/03/21 16:10:49 [log_collector] {"stage_name":"log_collector","events_processed":27614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5522.8,"last_update":"2026-03-21T16:10:44.068606685Z"} +2026/03/21 16:10:49 ───────────────────────────────────────────────── +2026/03/21 16:10:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:10:54 [log_collector] {"stage_name":"log_collector","events_processed":27614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5522.8,"last_update":"2026-03-21T16:10:49.068421923Z"} +2026/03/21 16:10:54 [metric_collector] {"stage_name":"metric_collector","events_processed":17519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3503.8,"last_update":"2026-03-21T16:10:49.068767665Z"} +2026/03/21 16:10:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:10:49.078592222Z"} +2026/03/21 16:10:54 [detection_layer] {"stage_name":"detection_layer","events_processed":583,"events_dropped":0,"avg_latency_ms":17.98964681565757,"throughput_eps":0,"last_update":"2026-03-21T16:10:49.210957029Z"} +2026/03/21 16:10:54 [transform_engine] {"stage_name":"transform_engine","events_processed":584,"events_dropped":0,"avg_latency_ms":377.65926286341664,"throughput_eps":0,"last_update":"2026-03-21T16:10:49.332946464Z"} +2026/03/21 16:10:54 ───────────────────────────────────────────────── +2026/03/21 16:10:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:10:59 [log_collector] {"stage_name":"log_collector","events_processed":27614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5522.8,"last_update":"2026-03-21T16:10:54.068715995Z"} +2026/03/21 16:10:59 [metric_collector] {"stage_name":"metric_collector","events_processed":17524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3504.8,"last_update":"2026-03-21T16:10:54.068999689Z"} +2026/03/21 16:10:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7012,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:10:54.077773041Z"} +2026/03/21 16:10:59 [detection_layer] {"stage_name":"detection_layer","events_processed":584,"events_dropped":0,"avg_latency_ms":18.611894452526055,"throughput_eps":0,"last_update":"2026-03-21T16:10:54.210021313Z"} +2026/03/21 16:10:59 [transform_engine] {"stage_name":"transform_engine","events_processed":584,"events_dropped":0,"avg_latency_ms":377.65926286341664,"throughput_eps":0,"last_update":"2026-03-21T16:10:54.210028658Z"} +2026/03/21 16:10:59 ───────────────────────────────────────────────── +2026/03/21 16:11:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:11:04 [log_collector] {"stage_name":"log_collector","events_processed":27614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5522.8,"last_update":"2026-03-21T16:11:04.068322406Z"} +2026/03/21 16:11:04 [metric_collector] {"stage_name":"metric_collector","events_processed":17529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3505.8,"last_update":"2026-03-21T16:10:59.06838452Z"} +2026/03/21 16:11:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:10:59.078426643Z"} +2026/03/21 16:11:04 [detection_layer] {"stage_name":"detection_layer","events_processed":584,"events_dropped":0,"avg_latency_ms":18.611894452526055,"throughput_eps":0,"last_update":"2026-03-21T16:10:59.210178805Z"} +2026/03/21 16:11:04 [transform_engine] {"stage_name":"transform_engine","events_processed":584,"events_dropped":0,"avg_latency_ms":377.65926286341664,"throughput_eps":0,"last_update":"2026-03-21T16:10:59.209635363Z"} +2026/03/21 16:11:04 ───────────────────────────────────────────────── +2026/03/21 16:11:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:11:09 [detection_layer] {"stage_name":"detection_layer","events_processed":584,"events_dropped":0,"avg_latency_ms":18.611894452526055,"throughput_eps":0,"last_update":"2026-03-21T16:11:04.210648348Z"} +2026/03/21 16:11:09 [transform_engine] {"stage_name":"transform_engine","events_processed":584,"events_dropped":0,"avg_latency_ms":377.65926286341664,"throughput_eps":0,"last_update":"2026-03-21T16:11:04.210670691Z"} +2026/03/21 16:11:09 [log_collector] {"stage_name":"log_collector","events_processed":27614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5522.8,"last_update":"2026-03-21T16:11:04.068322406Z"} +2026/03/21 16:11:09 [metric_collector] {"stage_name":"metric_collector","events_processed":17534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3506.8,"last_update":"2026-03-21T16:11:04.068981499Z"} +2026/03/21 16:11:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:11:04.077303376Z"} +2026/03/21 16:11:09 ───────────────────────────────────────────────── +2026/03/21 16:11:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:11:14 [log_collector] {"stage_name":"log_collector","events_processed":27614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5522.8,"last_update":"2026-03-21T16:11:14.068443133Z"} +2026/03/21 16:11:14 [metric_collector] {"stage_name":"metric_collector","events_processed":17539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3507.8,"last_update":"2026-03-21T16:11:09.06901443Z"} +2026/03/21 16:11:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7018,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:11:09.077204545Z"} +2026/03/21 16:11:14 [detection_layer] {"stage_name":"detection_layer","events_processed":584,"events_dropped":0,"avg_latency_ms":18.611894452526055,"throughput_eps":0,"last_update":"2026-03-21T16:11:09.210461288Z"} +2026/03/21 16:11:14 [transform_engine] {"stage_name":"transform_engine","events_processed":584,"events_dropped":0,"avg_latency_ms":377.65926286341664,"throughput_eps":0,"last_update":"2026-03-21T16:11:09.209740817Z"} +2026/03/21 16:11:14 ───────────────────────────────────────────────── +2026/03/21 16:11:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:11:19 [log_collector] {"stage_name":"log_collector","events_processed":27614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5522.8,"last_update":"2026-03-21T16:11:14.068443133Z"} +2026/03/21 16:11:19 [metric_collector] {"stage_name":"metric_collector","events_processed":17544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3508.8,"last_update":"2026-03-21T16:11:14.06906311Z"} +2026/03/21 16:11:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7020,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:11:14.07809131Z"} +2026/03/21 16:11:19 [detection_layer] {"stage_name":"detection_layer","events_processed":584,"events_dropped":0,"avg_latency_ms":18.611894452526055,"throughput_eps":0,"last_update":"2026-03-21T16:11:14.210383443Z"} +2026/03/21 16:11:19 [transform_engine] {"stage_name":"transform_engine","events_processed":584,"events_dropped":0,"avg_latency_ms":377.65926286341664,"throughput_eps":0,"last_update":"2026-03-21T16:11:14.21039764Z"} +2026/03/21 16:11:19 ───────────────────────────────────────────────── +2026/03/21 16:11:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:11:24 [log_collector] {"stage_name":"log_collector","events_processed":27614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5522.8,"last_update":"2026-03-21T16:11:19.068922601Z"} +2026/03/21 16:11:24 [metric_collector] {"stage_name":"metric_collector","events_processed":17549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3509.8,"last_update":"2026-03-21T16:11:19.069224008Z"} +2026/03/21 16:11:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7022,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:11:19.077973274Z"} +2026/03/21 16:11:24 [detection_layer] {"stage_name":"detection_layer","events_processed":584,"events_dropped":0,"avg_latency_ms":18.611894452526055,"throughput_eps":0,"last_update":"2026-03-21T16:11:19.210151257Z"} +2026/03/21 16:11:24 [transform_engine] {"stage_name":"transform_engine","events_processed":585,"events_dropped":0,"avg_latency_ms":316.4182208907333,"throughput_eps":0,"last_update":"2026-03-21T16:11:19.281623235Z"} +2026/03/21 16:11:24 ───────────────────────────────────────────────── +Saved state: 18 clusters, 27615 messages, reason: none +2026/03/21 16:11:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:11:29 [log_collector] {"stage_name":"log_collector","events_processed":27614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5522.8,"last_update":"2026-03-21T16:11:24.068446553Z"} +2026/03/21 16:11:29 [metric_collector] {"stage_name":"metric_collector","events_processed":17554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3510.8,"last_update":"2026-03-21T16:11:24.068729726Z"} +2026/03/21 16:11:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:11:24.07756175Z"} +2026/03/21 16:11:29 [detection_layer] {"stage_name":"detection_layer","events_processed":585,"events_dropped":0,"avg_latency_ms":19.254900762020846,"throughput_eps":0,"last_update":"2026-03-21T16:11:24.210049457Z"} +2026/03/21 16:11:29 [transform_engine] {"stage_name":"transform_engine","events_processed":585,"events_dropped":0,"avg_latency_ms":316.4182208907333,"throughput_eps":0,"last_update":"2026-03-21T16:11:24.210063984Z"} +2026/03/21 16:11:29 ───────────────────────────────────────────────── +2026/03/21 16:11:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:11:34 [log_collector] {"stage_name":"log_collector","events_processed":27619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5523.8,"last_update":"2026-03-21T16:11:29.068844918Z"} +2026/03/21 16:11:34 [metric_collector] {"stage_name":"metric_collector","events_processed":17559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3511.8,"last_update":"2026-03-21T16:11:29.06909662Z"} +2026/03/21 16:11:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:11:29.075298264Z"} +2026/03/21 16:11:34 [detection_layer] {"stage_name":"detection_layer","events_processed":585,"events_dropped":0,"avg_latency_ms":19.254900762020846,"throughput_eps":0,"last_update":"2026-03-21T16:11:29.210442289Z"} +2026/03/21 16:11:34 [transform_engine] {"stage_name":"transform_engine","events_processed":585,"events_dropped":0,"avg_latency_ms":316.4182208907333,"throughput_eps":0,"last_update":"2026-03-21T16:11:29.210452028Z"} +2026/03/21 16:11:34 ───────────────────────────────────────────────── +2026/03/21 16:11:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:11:39 [log_collector] {"stage_name":"log_collector","events_processed":27619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5523.8,"last_update":"2026-03-21T16:11:34.068098547Z"} +2026/03/21 16:11:39 [metric_collector] {"stage_name":"metric_collector","events_processed":17563,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3512.6,"last_update":"2026-03-21T16:11:34.06798554Z"} +2026/03/21 16:11:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:11:34.074613461Z"} +2026/03/21 16:11:39 [detection_layer] {"stage_name":"detection_layer","events_processed":585,"events_dropped":0,"avg_latency_ms":19.254900762020846,"throughput_eps":0,"last_update":"2026-03-21T16:11:34.209921599Z"} +2026/03/21 16:11:39 [transform_engine] {"stage_name":"transform_engine","events_processed":585,"events_dropped":0,"avg_latency_ms":316.4182208907333,"throughput_eps":0,"last_update":"2026-03-21T16:11:34.209947449Z"} +2026/03/21 16:11:39 ───────────────────────────────────────────────── +2026/03/21 16:11:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:11:44 [detection_layer] {"stage_name":"detection_layer","events_processed":585,"events_dropped":0,"avg_latency_ms":19.254900762020846,"throughput_eps":0,"last_update":"2026-03-21T16:11:39.210125565Z"} +2026/03/21 16:11:44 [transform_engine] {"stage_name":"transform_engine","events_processed":585,"events_dropped":0,"avg_latency_ms":316.4182208907333,"throughput_eps":0,"last_update":"2026-03-21T16:11:39.210116226Z"} +2026/03/21 16:11:44 [log_collector] {"stage_name":"log_collector","events_processed":27619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5523.8,"last_update":"2026-03-21T16:11:39.06848868Z"} +2026/03/21 16:11:44 [metric_collector] {"stage_name":"metric_collector","events_processed":17569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3513.8,"last_update":"2026-03-21T16:11:39.06904704Z"} +2026/03/21 16:11:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:11:39.080867981Z"} +2026/03/21 16:11:44 ───────────────────────────────────────────────── +2026/03/21 16:11:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:11:49 [log_collector] {"stage_name":"log_collector","events_processed":27619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5523.8,"last_update":"2026-03-21T16:11:44.068705527Z"} +2026/03/21 16:11:49 [metric_collector] {"stage_name":"metric_collector","events_processed":17574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3514.8,"last_update":"2026-03-21T16:11:44.068794688Z"} +2026/03/21 16:11:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:11:44.074963489Z"} +2026/03/21 16:11:49 [detection_layer] {"stage_name":"detection_layer","events_processed":585,"events_dropped":0,"avg_latency_ms":19.254900762020846,"throughput_eps":0,"last_update":"2026-03-21T16:11:44.210233302Z"} +2026/03/21 16:11:49 [transform_engine] {"stage_name":"transform_engine","events_processed":585,"events_dropped":0,"avg_latency_ms":316.4182208907333,"throughput_eps":0,"last_update":"2026-03-21T16:11:44.210207152Z"} +2026/03/21 16:11:49 ───────────────────────────────────────────────── +2026/03/21 16:11:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:11:54 [log_collector] {"stage_name":"log_collector","events_processed":27619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5523.8,"last_update":"2026-03-21T16:11:49.068094897Z"} +2026/03/21 16:11:54 [metric_collector] {"stage_name":"metric_collector","events_processed":17579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3515.8,"last_update":"2026-03-21T16:11:49.068499221Z"} +2026/03/21 16:11:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:11:49.076322612Z"} +2026/03/21 16:11:54 [detection_layer] {"stage_name":"detection_layer","events_processed":585,"events_dropped":0,"avg_latency_ms":19.254900762020846,"throughput_eps":0,"last_update":"2026-03-21T16:11:49.210559886Z"} +2026/03/21 16:11:54 [transform_engine] {"stage_name":"transform_engine","events_processed":586,"events_dropped":0,"avg_latency_ms":678.8116345125867,"throughput_eps":0,"last_update":"2026-03-21T16:11:51.338925017Z"} +2026/03/21 16:11:54 ───────────────────────────────────────────────── +2026/03/21 16:11:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:11:59 [log_collector] {"stage_name":"log_collector","events_processed":27619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5523.8,"last_update":"2026-03-21T16:11:54.068798943Z"} +2026/03/21 16:11:59 [metric_collector] {"stage_name":"metric_collector","events_processed":17584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3516.8,"last_update":"2026-03-21T16:11:54.069088588Z"} +2026/03/21 16:11:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7036,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:11:54.075387718Z"} +2026/03/21 16:11:59 [detection_layer] {"stage_name":"detection_layer","events_processed":586,"events_dropped":0,"avg_latency_ms":17.964799809616675,"throughput_eps":0,"last_update":"2026-03-21T16:11:54.210624707Z"} +2026/03/21 16:11:59 [transform_engine] {"stage_name":"transform_engine","events_processed":586,"events_dropped":0,"avg_latency_ms":678.8116345125867,"throughput_eps":0,"last_update":"2026-03-21T16:11:54.210657369Z"} +2026/03/21 16:11:59 ───────────────────────────────────────────────── +2026/03/21 16:12:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:12:04 [log_collector] {"stage_name":"log_collector","events_processed":27619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5523.8,"last_update":"2026-03-21T16:11:59.068783258Z"} +2026/03/21 16:12:04 [metric_collector] {"stage_name":"metric_collector","events_processed":17589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3517.8,"last_update":"2026-03-21T16:11:59.069102029Z"} +2026/03/21 16:12:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:11:59.077109673Z"} +2026/03/21 16:12:04 [detection_layer] {"stage_name":"detection_layer","events_processed":586,"events_dropped":0,"avg_latency_ms":17.964799809616675,"throughput_eps":0,"last_update":"2026-03-21T16:11:59.210370764Z"} +2026/03/21 16:12:04 [transform_engine] {"stage_name":"transform_engine","events_processed":586,"events_dropped":0,"avg_latency_ms":678.8116345125867,"throughput_eps":0,"last_update":"2026-03-21T16:11:59.210390933Z"} +2026/03/21 16:12:04 ───────────────────────────────────────────────── +2026/03/21 16:12:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:12:09 [log_collector] {"stage_name":"log_collector","events_processed":27619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5523.8,"last_update":"2026-03-21T16:12:04.068958536Z"} +2026/03/21 16:12:09 [metric_collector] {"stage_name":"metric_collector","events_processed":17594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3518.8,"last_update":"2026-03-21T16:12:04.069199117Z"} +2026/03/21 16:12:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:12:04.079019024Z"} +2026/03/21 16:12:09 [detection_layer] {"stage_name":"detection_layer","events_processed":586,"events_dropped":0,"avg_latency_ms":17.964799809616675,"throughput_eps":0,"last_update":"2026-03-21T16:12:04.210253121Z"} +2026/03/21 16:12:09 [transform_engine] {"stage_name":"transform_engine","events_processed":586,"events_dropped":0,"avg_latency_ms":678.8116345125867,"throughput_eps":0,"last_update":"2026-03-21T16:12:04.210238824Z"} +2026/03/21 16:12:09 ───────────────────────────────────────────────── +2026/03/21 16:12:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:12:14 [log_collector] {"stage_name":"log_collector","events_processed":27628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5525.6,"last_update":"2026-03-21T16:12:09.068729559Z"} +2026/03/21 16:12:14 [metric_collector] {"stage_name":"metric_collector","events_processed":17599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3519.8,"last_update":"2026-03-21T16:12:09.068995179Z"} +2026/03/21 16:12:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:12:09.075984572Z"} +2026/03/21 16:12:14 [detection_layer] {"stage_name":"detection_layer","events_processed":586,"events_dropped":0,"avg_latency_ms":17.964799809616675,"throughput_eps":0,"last_update":"2026-03-21T16:12:09.210248143Z"} +2026/03/21 16:12:14 [transform_engine] {"stage_name":"transform_engine","events_processed":586,"events_dropped":0,"avg_latency_ms":678.8116345125867,"throughput_eps":0,"last_update":"2026-03-21T16:12:09.210226902Z"} +2026/03/21 16:12:14 ───────────────────────────────────────────────── +2026/03/21 16:12:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:12:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:12:14.079204723Z"} +2026/03/21 16:12:19 [detection_layer] {"stage_name":"detection_layer","events_processed":586,"events_dropped":0,"avg_latency_ms":17.964799809616675,"throughput_eps":0,"last_update":"2026-03-21T16:12:14.210565961Z"} +2026/03/21 16:12:19 [transform_engine] {"stage_name":"transform_engine","events_processed":586,"events_dropped":0,"avg_latency_ms":678.8116345125867,"throughput_eps":0,"last_update":"2026-03-21T16:12:14.210492721Z"} +2026/03/21 16:12:19 [log_collector] {"stage_name":"log_collector","events_processed":27630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5526,"last_update":"2026-03-21T16:12:14.068821166Z"} +2026/03/21 16:12:19 [metric_collector] {"stage_name":"metric_collector","events_processed":17604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3520.8,"last_update":"2026-03-21T16:12:14.069270026Z"} +2026/03/21 16:12:19 ───────────────────────────────────────────────── +2026/03/21 16:12:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:12:24 [log_collector] {"stage_name":"log_collector","events_processed":27792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5558.4,"last_update":"2026-03-21T16:12:19.068484951Z"} +2026/03/21 16:12:24 [metric_collector] {"stage_name":"metric_collector","events_processed":17609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3521.8,"last_update":"2026-03-21T16:12:19.068966804Z"} +2026/03/21 16:12:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:12:19.074432307Z"} +2026/03/21 16:12:24 [detection_layer] {"stage_name":"detection_layer","events_processed":586,"events_dropped":0,"avg_latency_ms":17.964799809616675,"throughput_eps":0,"last_update":"2026-03-21T16:12:19.209909713Z"} +2026/03/21 16:12:24 [transform_engine] {"stage_name":"transform_engine","events_processed":586,"events_dropped":0,"avg_latency_ms":678.8116345125867,"throughput_eps":0,"last_update":"2026-03-21T16:12:19.209884394Z"} +2026/03/21 16:12:24 ───────────────────────────────────────────────── +Saved state: 18 clusters, 27971 messages, reason: none +2026/03/21 16:12:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:12:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7048,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:12:24.078115873Z"} +2026/03/21 16:12:29 [detection_layer] {"stage_name":"detection_layer","events_processed":587,"events_dropped":0,"avg_latency_ms":17.26040084769334,"throughput_eps":0,"last_update":"2026-03-21T16:12:24.210158676Z"} +2026/03/21 16:12:29 [transform_engine] {"stage_name":"transform_engine","events_processed":587,"events_dropped":0,"avg_latency_ms":564.9603884100694,"throughput_eps":0,"last_update":"2026-03-21T16:12:24.210103451Z"} +2026/03/21 16:12:29 [log_collector] {"stage_name":"log_collector","events_processed":27964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5592.8,"last_update":"2026-03-21T16:12:24.068786957Z"} +2026/03/21 16:12:29 [metric_collector] {"stage_name":"metric_collector","events_processed":17614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3522.8,"last_update":"2026-03-21T16:12:24.068922397Z"} +2026/03/21 16:12:29 ───────────────────────────────────────────────── +2026/03/21 16:12:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:12:34 [log_collector] {"stage_name":"log_collector","events_processed":27973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5594.6,"last_update":"2026-03-21T16:12:29.069431141Z"} +2026/03/21 16:12:34 [metric_collector] {"stage_name":"metric_collector","events_processed":17619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3523.8,"last_update":"2026-03-21T16:12:29.069618059Z"} +2026/03/21 16:12:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7050,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:12:29.077286173Z"} +2026/03/21 16:12:34 [detection_layer] {"stage_name":"detection_layer","events_processed":587,"events_dropped":0,"avg_latency_ms":17.26040084769334,"throughput_eps":0,"last_update":"2026-03-21T16:12:29.210581535Z"} +2026/03/21 16:12:34 [transform_engine] {"stage_name":"transform_engine","events_processed":587,"events_dropped":0,"avg_latency_ms":564.9603884100694,"throughput_eps":0,"last_update":"2026-03-21T16:12:29.21056329Z"} +2026/03/21 16:12:34 ───────────────────────────────────────────────── +2026/03/21 16:12:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:12:39 [log_collector] {"stage_name":"log_collector","events_processed":27973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5594.6,"last_update":"2026-03-21T16:12:34.068529802Z"} +2026/03/21 16:12:39 [metric_collector] {"stage_name":"metric_collector","events_processed":17623,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3524.6,"last_update":"2026-03-21T16:12:34.06853426Z"} +2026/03/21 16:12:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:12:34.077256112Z"} +2026/03/21 16:12:39 [detection_layer] {"stage_name":"detection_layer","events_processed":587,"events_dropped":0,"avg_latency_ms":17.26040084769334,"throughput_eps":0,"last_update":"2026-03-21T16:12:34.210494285Z"} +2026/03/21 16:12:39 [transform_engine] {"stage_name":"transform_engine","events_processed":587,"events_dropped":0,"avg_latency_ms":564.9603884100694,"throughput_eps":0,"last_update":"2026-03-21T16:12:34.210463185Z"} +2026/03/21 16:12:39 ───────────────────────────────────────────────── +2026/03/21 16:12:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:12:44 [log_collector] {"stage_name":"log_collector","events_processed":27990,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5598,"last_update":"2026-03-21T16:12:44.068282088Z"} +2026/03/21 16:12:44 [metric_collector] {"stage_name":"metric_collector","events_processed":17634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3526.8,"last_update":"2026-03-21T16:12:44.068620217Z"} +2026/03/21 16:12:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:12:39.07585042Z"} +2026/03/21 16:12:44 [detection_layer] {"stage_name":"detection_layer","events_processed":587,"events_dropped":0,"avg_latency_ms":17.26040084769334,"throughput_eps":0,"last_update":"2026-03-21T16:12:39.210149735Z"} +2026/03/21 16:12:44 [transform_engine] {"stage_name":"transform_engine","events_processed":587,"events_dropped":0,"avg_latency_ms":564.9603884100694,"throughput_eps":0,"last_update":"2026-03-21T16:12:39.210177989Z"} +2026/03/21 16:12:44 ───────────────────────────────────────────────── +2026/03/21 16:12:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:12:49 [log_collector] {"stage_name":"log_collector","events_processed":27990,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5598,"last_update":"2026-03-21T16:12:44.068282088Z"} +2026/03/21 16:12:49 [metric_collector] {"stage_name":"metric_collector","events_processed":17634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3526.8,"last_update":"2026-03-21T16:12:44.068620217Z"} +2026/03/21 16:12:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7056,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:12:44.083472996Z"} +2026/03/21 16:12:49 [detection_layer] {"stage_name":"detection_layer","events_processed":587,"events_dropped":0,"avg_latency_ms":17.26040084769334,"throughput_eps":0,"last_update":"2026-03-21T16:12:44.21032518Z"} +2026/03/21 16:12:49 [transform_engine] {"stage_name":"transform_engine","events_processed":587,"events_dropped":0,"avg_latency_ms":564.9603884100694,"throughput_eps":0,"last_update":"2026-03-21T16:12:44.210339177Z"} +2026/03/21 16:12:49 ───────────────────────────────────────────────── +2026/03/21 16:12:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:12:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:12:49.075335825Z"} +2026/03/21 16:12:54 [detection_layer] {"stage_name":"detection_layer","events_processed":587,"events_dropped":0,"avg_latency_ms":17.26040084769334,"throughput_eps":0,"last_update":"2026-03-21T16:12:49.210640785Z"} +2026/03/21 16:12:54 [transform_engine] {"stage_name":"transform_engine","events_processed":587,"events_dropped":0,"avg_latency_ms":564.9603884100694,"throughput_eps":0,"last_update":"2026-03-21T16:12:49.210598394Z"} +2026/03/21 16:12:54 [log_collector] {"stage_name":"log_collector","events_processed":28000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5600,"last_update":"2026-03-21T16:12:49.068667187Z"} +2026/03/21 16:12:54 [metric_collector] {"stage_name":"metric_collector","events_processed":17639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3527.8,"last_update":"2026-03-21T16:12:49.069000516Z"} +2026/03/21 16:12:54 ───────────────────────────────────────────────── +2026/03/21 16:12:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:12:59 [log_collector] {"stage_name":"log_collector","events_processed":28000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5600,"last_update":"2026-03-21T16:12:54.068932268Z"} +2026/03/21 16:12:59 [metric_collector] {"stage_name":"metric_collector","events_processed":17644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3528.8,"last_update":"2026-03-21T16:12:54.069222364Z"} +2026/03/21 16:12:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:12:54.078726255Z"} +2026/03/21 16:12:59 [detection_layer] {"stage_name":"detection_layer","events_processed":588,"events_dropped":0,"avg_latency_ms":16.487229878154672,"throughput_eps":0,"last_update":"2026-03-21T16:12:54.209970253Z"} +2026/03/21 16:12:59 [transform_engine] {"stage_name":"transform_engine","events_processed":588,"events_dropped":0,"avg_latency_ms":473.15906692805555,"throughput_eps":0,"last_update":"2026-03-21T16:12:54.210024627Z"} +2026/03/21 16:12:59 ───────────────────────────────────────────────── +2026/03/21 16:13:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:13:04 [transform_engine] {"stage_name":"transform_engine","events_processed":588,"events_dropped":0,"avg_latency_ms":473.15906692805555,"throughput_eps":0,"last_update":"2026-03-21T16:12:59.210333774Z"} +2026/03/21 16:13:04 [log_collector] {"stage_name":"log_collector","events_processed":28000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5600,"last_update":"2026-03-21T16:12:59.068825369Z"} +2026/03/21 16:13:04 [metric_collector] {"stage_name":"metric_collector","events_processed":17649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3529.8,"last_update":"2026-03-21T16:12:59.06908714Z"} +2026/03/21 16:13:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7062,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:12:59.077970832Z"} +2026/03/21 16:13:04 [detection_layer] {"stage_name":"detection_layer","events_processed":588,"events_dropped":0,"avg_latency_ms":16.487229878154672,"throughput_eps":0,"last_update":"2026-03-21T16:12:59.210279088Z"} +2026/03/21 16:13:04 ───────────────────────────────────────────────── +2026/03/21 16:13:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:13:09 [transform_engine] {"stage_name":"transform_engine","events_processed":588,"events_dropped":0,"avg_latency_ms":473.15906692805555,"throughput_eps":0,"last_update":"2026-03-21T16:13:04.210789993Z"} +2026/03/21 16:13:09 [log_collector] {"stage_name":"log_collector","events_processed":28000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5600,"last_update":"2026-03-21T16:13:04.068843248Z"} +2026/03/21 16:13:09 [metric_collector] {"stage_name":"metric_collector","events_processed":17654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3530.8,"last_update":"2026-03-21T16:13:04.069224399Z"} +2026/03/21 16:13:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:13:04.079295857Z"} +2026/03/21 16:13:09 [detection_layer] {"stage_name":"detection_layer","events_processed":588,"events_dropped":0,"avg_latency_ms":16.487229878154672,"throughput_eps":0,"last_update":"2026-03-21T16:13:04.210829118Z"} +2026/03/21 16:13:09 ───────────────────────────────────────────────── +2026/03/21 16:13:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:13:14 [detection_layer] {"stage_name":"detection_layer","events_processed":588,"events_dropped":0,"avg_latency_ms":16.487229878154672,"throughput_eps":0,"last_update":"2026-03-21T16:13:09.210014255Z"} +2026/03/21 16:13:14 [transform_engine] {"stage_name":"transform_engine","events_processed":588,"events_dropped":0,"avg_latency_ms":473.15906692805555,"throughput_eps":0,"last_update":"2026-03-21T16:13:09.209932398Z"} +2026/03/21 16:13:14 [log_collector] {"stage_name":"log_collector","events_processed":28000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5600,"last_update":"2026-03-21T16:13:09.068976122Z"} +2026/03/21 16:13:14 [metric_collector] {"stage_name":"metric_collector","events_processed":17659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3531.8,"last_update":"2026-03-21T16:13:09.069464538Z"} +2026/03/21 16:13:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:13:09.077577874Z"} +2026/03/21 16:13:14 ───────────────────────────────────────────────── +2026/03/21 16:13:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:13:19 [metric_collector] {"stage_name":"metric_collector","events_processed":17664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3532.8,"last_update":"2026-03-21T16:13:14.069027121Z"} +2026/03/21 16:13:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:13:14.078419548Z"} +2026/03/21 16:13:19 [detection_layer] {"stage_name":"detection_layer","events_processed":588,"events_dropped":0,"avg_latency_ms":16.487229878154672,"throughput_eps":0,"last_update":"2026-03-21T16:13:14.210591159Z"} +2026/03/21 16:13:19 [transform_engine] {"stage_name":"transform_engine","events_processed":588,"events_dropped":0,"avg_latency_ms":473.15906692805555,"throughput_eps":0,"last_update":"2026-03-21T16:13:14.210604546Z"} +2026/03/21 16:13:19 [log_collector] {"stage_name":"log_collector","events_processed":28000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5600,"last_update":"2026-03-21T16:13:14.068802581Z"} +2026/03/21 16:13:19 ───────────────────────────────────────────────── +2026/03/21 16:13:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:13:24 [log_collector] {"stage_name":"log_collector","events_processed":28000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5600,"last_update":"2026-03-21T16:13:19.068817112Z"} +2026/03/21 16:13:24 [metric_collector] {"stage_name":"metric_collector","events_processed":17669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3533.8,"last_update":"2026-03-21T16:13:19.069127286Z"} +2026/03/21 16:13:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:13:19.078819056Z"} +2026/03/21 16:13:24 [detection_layer] {"stage_name":"detection_layer","events_processed":588,"events_dropped":0,"avg_latency_ms":16.487229878154672,"throughput_eps":0,"last_update":"2026-03-21T16:13:19.210230631Z"} +2026/03/21 16:13:24 [transform_engine] {"stage_name":"transform_engine","events_processed":589,"events_dropped":0,"avg_latency_ms":393.58100574244446,"throughput_eps":0,"last_update":"2026-03-21T16:13:19.285515052Z"} +2026/03/21 16:13:24 ───────────────────────────────────────────────── +2026/03/21 16:13:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:13:29 [detection_layer] {"stage_name":"detection_layer","events_processed":589,"events_dropped":0,"avg_latency_ms":17.713736102523736,"throughput_eps":0,"last_update":"2026-03-21T16:13:24.210385223Z"} +2026/03/21 16:13:29 [transform_engine] {"stage_name":"transform_engine","events_processed":589,"events_dropped":0,"avg_latency_ms":393.58100574244446,"throughput_eps":0,"last_update":"2026-03-21T16:13:24.21043592Z"} +2026/03/21 16:13:29 [log_collector] {"stage_name":"log_collector","events_processed":28000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5600,"last_update":"2026-03-21T16:13:24.069082165Z"} +2026/03/21 16:13:29 [metric_collector] {"stage_name":"metric_collector","events_processed":17674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3534.8,"last_update":"2026-03-21T16:13:24.069389774Z"} +2026/03/21 16:13:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7072,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:13:24.079107955Z"} +2026/03/21 16:13:29 ───────────────────────────────────────────────── +2026/03/21 16:13:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:13:34 [transform_engine] {"stage_name":"transform_engine","events_processed":589,"events_dropped":0,"avg_latency_ms":393.58100574244446,"throughput_eps":0,"last_update":"2026-03-21T16:13:29.210762303Z"} +2026/03/21 16:13:34 [log_collector] {"stage_name":"log_collector","events_processed":28000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5600,"last_update":"2026-03-21T16:13:34.068094253Z"} +2026/03/21 16:13:34 [metric_collector] {"stage_name":"metric_collector","events_processed":17679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3535.8,"last_update":"2026-03-21T16:13:29.068938398Z"} +2026/03/21 16:13:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:13:29.079252641Z"} +2026/03/21 16:13:34 [detection_layer] {"stage_name":"detection_layer","events_processed":589,"events_dropped":0,"avg_latency_ms":17.713736102523736,"throughput_eps":0,"last_update":"2026-03-21T16:13:29.210629057Z"} +2026/03/21 16:13:34 ───────────────────────────────────────────────── +2026/03/21 16:13:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:13:39 [log_collector] {"stage_name":"log_collector","events_processed":28000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5600,"last_update":"2026-03-21T16:13:34.068094253Z"} +2026/03/21 16:13:39 [metric_collector] {"stage_name":"metric_collector","events_processed":17684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3536.8,"last_update":"2026-03-21T16:13:34.068469783Z"} +2026/03/21 16:13:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7076,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:13:34.07770083Z"} +2026/03/21 16:13:39 [detection_layer] {"stage_name":"detection_layer","events_processed":589,"events_dropped":0,"avg_latency_ms":17.713736102523736,"throughput_eps":0,"last_update":"2026-03-21T16:13:34.210046072Z"} +2026/03/21 16:13:39 [transform_engine] {"stage_name":"transform_engine","events_processed":589,"events_dropped":0,"avg_latency_ms":393.58100574244446,"throughput_eps":0,"last_update":"2026-03-21T16:13:34.210022327Z"} +2026/03/21 16:13:39 ───────────────────────────────────────────────── +2026/03/21 16:13:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:13:44 [detection_layer] {"stage_name":"detection_layer","events_processed":589,"events_dropped":0,"avg_latency_ms":17.713736102523736,"throughput_eps":0,"last_update":"2026-03-21T16:13:39.210863003Z"} +2026/03/21 16:13:44 [transform_engine] {"stage_name":"transform_engine","events_processed":589,"events_dropped":0,"avg_latency_ms":393.58100574244446,"throughput_eps":0,"last_update":"2026-03-21T16:13:39.209644539Z"} +2026/03/21 16:13:44 [log_collector] {"stage_name":"log_collector","events_processed":28000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5600,"last_update":"2026-03-21T16:13:39.068766357Z"} +2026/03/21 16:13:44 [metric_collector] {"stage_name":"metric_collector","events_processed":17689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3537.8,"last_update":"2026-03-21T16:13:39.069463022Z"} +2026/03/21 16:13:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:13:39.078462877Z"} +2026/03/21 16:13:44 ───────────────────────────────────────────────── +2026/03/21 16:13:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:13:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:13:44.075570586Z"} +2026/03/21 16:13:49 [detection_layer] {"stage_name":"detection_layer","events_processed":589,"events_dropped":0,"avg_latency_ms":17.713736102523736,"throughput_eps":0,"last_update":"2026-03-21T16:13:44.209888076Z"} +2026/03/21 16:13:49 [transform_engine] {"stage_name":"transform_engine","events_processed":589,"events_dropped":0,"avg_latency_ms":393.58100574244446,"throughput_eps":0,"last_update":"2026-03-21T16:13:44.209709133Z"} +2026/03/21 16:13:49 [log_collector] {"stage_name":"log_collector","events_processed":28000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5600,"last_update":"2026-03-21T16:13:44.068280167Z"} +2026/03/21 16:13:49 [metric_collector] {"stage_name":"metric_collector","events_processed":17694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3538.8,"last_update":"2026-03-21T16:13:44.068731993Z"} +2026/03/21 16:13:49 ───────────────────────────────────────────────── +2026/03/21 16:13:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:13:54 [metric_collector] {"stage_name":"metric_collector","events_processed":17699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3539.8,"last_update":"2026-03-21T16:13:49.069162361Z"} +2026/03/21 16:13:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7082,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:13:49.079044948Z"} +2026/03/21 16:13:54 [detection_layer] {"stage_name":"detection_layer","events_processed":589,"events_dropped":0,"avg_latency_ms":17.713736102523736,"throughput_eps":0,"last_update":"2026-03-21T16:13:49.211426327Z"} +2026/03/21 16:13:54 [transform_engine] {"stage_name":"transform_engine","events_processed":590,"events_dropped":0,"avg_latency_ms":329.9274671939556,"throughput_eps":0,"last_update":"2026-03-21T16:13:49.285699127Z"} +2026/03/21 16:13:54 [log_collector] {"stage_name":"log_collector","events_processed":28000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5600,"last_update":"2026-03-21T16:13:49.068873628Z"} +2026/03/21 16:13:54 ───────────────────────────────────────────────── +2026/03/21 16:13:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:13:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:13:54.078662223Z"} +2026/03/21 16:13:59 [detection_layer] {"stage_name":"detection_layer","events_processed":590,"events_dropped":0,"avg_latency_ms":18.42117048201899,"throughput_eps":0,"last_update":"2026-03-21T16:13:54.209998981Z"} +2026/03/21 16:13:59 [transform_engine] {"stage_name":"transform_engine","events_processed":590,"events_dropped":0,"avg_latency_ms":329.9274671939556,"throughput_eps":0,"last_update":"2026-03-21T16:13:54.209890983Z"} +2026/03/21 16:13:59 [log_collector] {"stage_name":"log_collector","events_processed":28000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5600,"last_update":"2026-03-21T16:13:54.068293656Z"} +2026/03/21 16:13:59 [metric_collector] {"stage_name":"metric_collector","events_processed":17704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3540.8,"last_update":"2026-03-21T16:13:54.068632465Z"} +2026/03/21 16:13:59 ───────────────────────────────────────────────── +2026/03/21 16:14:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:14:04 [log_collector] {"stage_name":"log_collector","events_processed":28000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5600,"last_update":"2026-03-21T16:13:59.068064882Z"} +2026/03/21 16:14:04 [metric_collector] {"stage_name":"metric_collector","events_processed":17709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3541.8,"last_update":"2026-03-21T16:13:59.068947884Z"} +2026/03/21 16:14:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:13:59.078135267Z"} +2026/03/21 16:14:04 [detection_layer] {"stage_name":"detection_layer","events_processed":590,"events_dropped":0,"avg_latency_ms":18.42117048201899,"throughput_eps":0,"last_update":"2026-03-21T16:13:59.210469184Z"} +2026/03/21 16:14:04 [transform_engine] {"stage_name":"transform_engine","events_processed":590,"events_dropped":0,"avg_latency_ms":329.9274671939556,"throughput_eps":0,"last_update":"2026-03-21T16:13:59.210429439Z"} +2026/03/21 16:14:04 ───────────────────────────────────────────────── +Saved state: 18 clusters, 28001 messages, reason: none +2026/03/21 16:14:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:14:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:14:04.068585769Z"} +2026/03/21 16:14:09 [detection_layer] {"stage_name":"detection_layer","events_processed":590,"events_dropped":0,"avg_latency_ms":18.42117048201899,"throughput_eps":0,"last_update":"2026-03-21T16:14:04.210470605Z"} +2026/03/21 16:14:09 [transform_engine] {"stage_name":"transform_engine","events_processed":590,"events_dropped":0,"avg_latency_ms":329.9274671939556,"throughput_eps":0,"last_update":"2026-03-21T16:14:04.210587258Z"} +2026/03/21 16:14:09 [log_collector] {"stage_name":"log_collector","events_processed":28014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5602.8,"last_update":"2026-03-21T16:14:09.068300005Z"} +2026/03/21 16:14:09 [metric_collector] {"stage_name":"metric_collector","events_processed":17714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3542.8,"last_update":"2026-03-21T16:14:04.068992557Z"} +2026/03/21 16:14:09 ───────────────────────────────────────────────── +2026/03/21 16:14:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:14:14 [detection_layer] {"stage_name":"detection_layer","events_processed":590,"events_dropped":0,"avg_latency_ms":18.42117048201899,"throughput_eps":0,"last_update":"2026-03-21T16:14:09.210324358Z"} +2026/03/21 16:14:14 [transform_engine] {"stage_name":"transform_engine","events_processed":590,"events_dropped":0,"avg_latency_ms":329.9274671939556,"throughput_eps":0,"last_update":"2026-03-21T16:14:09.210285134Z"} +2026/03/21 16:14:14 [log_collector] {"stage_name":"log_collector","events_processed":28014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5602.8,"last_update":"2026-03-21T16:14:09.068300005Z"} +2026/03/21 16:14:14 [metric_collector] {"stage_name":"metric_collector","events_processed":17719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3543.8,"last_update":"2026-03-21T16:14:09.068703558Z"} +2026/03/21 16:14:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:14:09.077870152Z"} +2026/03/21 16:14:14 ───────────────────────────────────────────────── +2026/03/21 16:14:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:14:19 [log_collector] {"stage_name":"log_collector","events_processed":28014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5602.8,"last_update":"2026-03-21T16:14:19.068372898Z"} +2026/03/21 16:14:19 [metric_collector] {"stage_name":"metric_collector","events_processed":17724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3544.8,"last_update":"2026-03-21T16:14:14.06922716Z"} +2026/03/21 16:14:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:14:14.078677107Z"} +2026/03/21 16:14:19 [detection_layer] {"stage_name":"detection_layer","events_processed":590,"events_dropped":0,"avg_latency_ms":18.42117048201899,"throughput_eps":0,"last_update":"2026-03-21T16:14:14.210051604Z"} +2026/03/21 16:14:19 [transform_engine] {"stage_name":"transform_engine","events_processed":590,"events_dropped":0,"avg_latency_ms":329.9274671939556,"throughput_eps":0,"last_update":"2026-03-21T16:14:14.210083285Z"} +2026/03/21 16:14:19 ───────────────────────────────────────────────── +2026/03/21 16:14:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:14:24 [transform_engine] {"stage_name":"transform_engine","events_processed":591,"events_dropped":0,"avg_latency_ms":288.8354561551645,"throughput_eps":0,"last_update":"2026-03-21T16:14:19.334506465Z"} +2026/03/21 16:14:24 [log_collector] {"stage_name":"log_collector","events_processed":28014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5602.8,"last_update":"2026-03-21T16:14:24.068467189Z"} +2026/03/21 16:14:24 [metric_collector] {"stage_name":"metric_collector","events_processed":17729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3545.8,"last_update":"2026-03-21T16:14:19.068946397Z"} +2026/03/21 16:14:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:14:19.077681724Z"} +2026/03/21 16:14:24 [detection_layer] {"stage_name":"detection_layer","events_processed":590,"events_dropped":0,"avg_latency_ms":18.42117048201899,"throughput_eps":0,"last_update":"2026-03-21T16:14:19.210002143Z"} +2026/03/21 16:14:24 ───────────────────────────────────────────────── +2026/03/21 16:14:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:14:29 [detection_layer] {"stage_name":"detection_layer","events_processed":591,"events_dropped":0,"avg_latency_ms":18.972742185615193,"throughput_eps":0,"last_update":"2026-03-21T16:14:24.210276297Z"} +2026/03/21 16:14:29 [transform_engine] {"stage_name":"transform_engine","events_processed":591,"events_dropped":0,"avg_latency_ms":288.8354561551645,"throughput_eps":0,"last_update":"2026-03-21T16:14:24.210318779Z"} +2026/03/21 16:14:29 [log_collector] {"stage_name":"log_collector","events_processed":28014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5602.8,"last_update":"2026-03-21T16:14:24.068467189Z"} +2026/03/21 16:14:29 [metric_collector] {"stage_name":"metric_collector","events_processed":17734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3546.8,"last_update":"2026-03-21T16:14:24.068810286Z"} +2026/03/21 16:14:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:14:24.079028083Z"} +2026/03/21 16:14:29 ───────────────────────────────────────────────── +2026/03/21 16:14:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:14:34 [log_collector] {"stage_name":"log_collector","events_processed":28014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5602.8,"last_update":"2026-03-21T16:14:29.068431917Z"} +2026/03/21 16:14:34 [metric_collector] {"stage_name":"metric_collector","events_processed":17739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3547.8,"last_update":"2026-03-21T16:14:29.068893101Z"} +2026/03/21 16:14:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:14:29.077041623Z"} +2026/03/21 16:14:34 [detection_layer] {"stage_name":"detection_layer","events_processed":591,"events_dropped":0,"avg_latency_ms":18.972742185615193,"throughput_eps":0,"last_update":"2026-03-21T16:14:29.210399328Z"} +2026/03/21 16:14:34 [transform_engine] {"stage_name":"transform_engine","events_processed":591,"events_dropped":0,"avg_latency_ms":288.8354561551645,"throughput_eps":0,"last_update":"2026-03-21T16:14:29.210510912Z"} +2026/03/21 16:14:34 ───────────────────────────────────────────────── +2026/03/21 16:14:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:14:39 [detection_layer] {"stage_name":"detection_layer","events_processed":591,"events_dropped":0,"avg_latency_ms":18.972742185615193,"throughput_eps":0,"last_update":"2026-03-21T16:14:34.210415242Z"} +2026/03/21 16:14:39 [transform_engine] {"stage_name":"transform_engine","events_processed":591,"events_dropped":0,"avg_latency_ms":288.8354561551645,"throughput_eps":0,"last_update":"2026-03-21T16:14:34.21031008Z"} +2026/03/21 16:14:39 [log_collector] {"stage_name":"log_collector","events_processed":28014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5602.8,"last_update":"2026-03-21T16:14:34.068889657Z"} +2026/03/21 16:14:39 [metric_collector] {"stage_name":"metric_collector","events_processed":17744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3548.8,"last_update":"2026-03-21T16:14:34.069255387Z"} +2026/03/21 16:14:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:14:34.07793568Z"} +2026/03/21 16:14:39 ───────────────────────────────────────────────── +2026/03/21 16:14:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:14:44 [log_collector] {"stage_name":"log_collector","events_processed":28014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5602.8,"last_update":"2026-03-21T16:14:39.068886972Z"} +2026/03/21 16:14:44 [metric_collector] {"stage_name":"metric_collector","events_processed":17749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3549.8,"last_update":"2026-03-21T16:14:39.06918911Z"} +2026/03/21 16:14:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:14:39.078384048Z"} +2026/03/21 16:14:44 [detection_layer] {"stage_name":"detection_layer","events_processed":591,"events_dropped":0,"avg_latency_ms":18.972742185615193,"throughput_eps":0,"last_update":"2026-03-21T16:14:39.210664518Z"} +2026/03/21 16:14:44 [transform_engine] {"stage_name":"transform_engine","events_processed":591,"events_dropped":0,"avg_latency_ms":288.8354561551645,"throughput_eps":0,"last_update":"2026-03-21T16:14:39.210591538Z"} +2026/03/21 16:14:44 ───────────────────────────────────────────────── +2026/03/21 16:14:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:14:49 [metric_collector] {"stage_name":"metric_collector","events_processed":17754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3550.8,"last_update":"2026-03-21T16:14:44.069029421Z"} +2026/03/21 16:14:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:14:44.078440914Z"} +2026/03/21 16:14:49 [detection_layer] {"stage_name":"detection_layer","events_processed":591,"events_dropped":0,"avg_latency_ms":18.972742185615193,"throughput_eps":0,"last_update":"2026-03-21T16:14:44.209916481Z"} +2026/03/21 16:14:49 [transform_engine] {"stage_name":"transform_engine","events_processed":591,"events_dropped":0,"avg_latency_ms":288.8354561551645,"throughput_eps":0,"last_update":"2026-03-21T16:14:44.209711979Z"} +2026/03/21 16:14:49 [log_collector] {"stage_name":"log_collector","events_processed":28014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5602.8,"last_update":"2026-03-21T16:14:49.068382977Z"} +2026/03/21 16:14:49 ───────────────────────────────────────────────── +2026/03/21 16:14:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:14:54 [log_collector] {"stage_name":"log_collector","events_processed":28014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5602.8,"last_update":"2026-03-21T16:14:49.068382977Z"} +2026/03/21 16:14:54 [metric_collector] {"stage_name":"metric_collector","events_processed":17759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3551.8,"last_update":"2026-03-21T16:14:49.068970041Z"} +2026/03/21 16:14:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:14:49.077075772Z"} +2026/03/21 16:14:54 [detection_layer] {"stage_name":"detection_layer","events_processed":591,"events_dropped":0,"avg_latency_ms":18.972742185615193,"throughput_eps":0,"last_update":"2026-03-21T16:14:49.210343923Z"} +2026/03/21 16:14:54 [transform_engine] {"stage_name":"transform_engine","events_processed":592,"events_dropped":0,"avg_latency_ms":245.3037117241316,"throughput_eps":0,"last_update":"2026-03-21T16:14:49.281560072Z"} +2026/03/21 16:14:54 ───────────────────────────────────────────────── +2026/03/21 16:14:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:14:59 [metric_collector] {"stage_name":"metric_collector","events_processed":17764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3552.8,"last_update":"2026-03-21T16:14:54.06919878Z"} +2026/03/21 16:14:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:14:54.078918423Z"} +2026/03/21 16:14:59 [detection_layer] {"stage_name":"detection_layer","events_processed":592,"events_dropped":0,"avg_latency_ms":19.554584948492156,"throughput_eps":0,"last_update":"2026-03-21T16:14:54.210160783Z"} +2026/03/21 16:14:59 [transform_engine] {"stage_name":"transform_engine","events_processed":592,"events_dropped":0,"avg_latency_ms":245.3037117241316,"throughput_eps":0,"last_update":"2026-03-21T16:14:54.210180731Z"} +2026/03/21 16:14:59 [log_collector] {"stage_name":"log_collector","events_processed":28014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5602.8,"last_update":"2026-03-21T16:14:54.06898416Z"} +2026/03/21 16:14:59 ───────────────────────────────────────────────── +2026/03/21 16:15:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:15:04 [metric_collector] {"stage_name":"metric_collector","events_processed":17769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3553.8,"last_update":"2026-03-21T16:14:59.068424446Z"} +2026/03/21 16:15:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:14:59.077328486Z"} +2026/03/21 16:15:04 [detection_layer] {"stage_name":"detection_layer","events_processed":592,"events_dropped":0,"avg_latency_ms":19.554584948492156,"throughput_eps":0,"last_update":"2026-03-21T16:14:59.210451107Z"} +2026/03/21 16:15:04 [transform_engine] {"stage_name":"transform_engine","events_processed":592,"events_dropped":0,"avg_latency_ms":245.3037117241316,"throughput_eps":0,"last_update":"2026-03-21T16:14:59.210461236Z"} +2026/03/21 16:15:04 [log_collector] {"stage_name":"log_collector","events_processed":28014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5602.8,"last_update":"2026-03-21T16:14:59.068064997Z"} +2026/03/21 16:15:04 ───────────────────────────────────────────────── +2026/03/21 16:15:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:15:09 [transform_engine] {"stage_name":"transform_engine","events_processed":592,"events_dropped":0,"avg_latency_ms":245.3037117241316,"throughput_eps":0,"last_update":"2026-03-21T16:15:04.21057493Z"} +2026/03/21 16:15:09 [log_collector] {"stage_name":"log_collector","events_processed":28014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5602.8,"last_update":"2026-03-21T16:15:04.068956772Z"} +2026/03/21 16:15:09 [metric_collector] {"stage_name":"metric_collector","events_processed":17774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3554.8,"last_update":"2026-03-21T16:15:04.069270403Z"} +2026/03/21 16:15:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:15:04.07812611Z"} +2026/03/21 16:15:09 [detection_layer] {"stage_name":"detection_layer","events_processed":592,"events_dropped":0,"avg_latency_ms":19.554584948492156,"throughput_eps":0,"last_update":"2026-03-21T16:15:04.210566194Z"} +2026/03/21 16:15:09 ───────────────────────────────────────────────── +Saved state: 18 clusters, 28015 messages, reason: none +2026/03/21 16:15:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:15:14 [log_collector] {"stage_name":"log_collector","events_processed":28014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5602.8,"last_update":"2026-03-21T16:15:09.068919353Z"} +2026/03/21 16:15:14 [metric_collector] {"stage_name":"metric_collector","events_processed":17779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3555.8,"last_update":"2026-03-21T16:15:09.069292137Z"} +2026/03/21 16:15:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:15:09.079062567Z"} +2026/03/21 16:15:14 [detection_layer] {"stage_name":"detection_layer","events_processed":592,"events_dropped":0,"avg_latency_ms":19.554584948492156,"throughput_eps":0,"last_update":"2026-03-21T16:15:09.210260279Z"} +2026/03/21 16:15:14 [transform_engine] {"stage_name":"transform_engine","events_processed":592,"events_dropped":0,"avg_latency_ms":245.3037117241316,"throughput_eps":0,"last_update":"2026-03-21T16:15:09.210271741Z"} +2026/03/21 16:15:14 ───────────────────────────────────────────────── +2026/03/21 16:15:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:15:19 [log_collector] {"stage_name":"log_collector","events_processed":28019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5603.8,"last_update":"2026-03-21T16:15:14.068075679Z"} +2026/03/21 16:15:19 [metric_collector] {"stage_name":"metric_collector","events_processed":17784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3556.8,"last_update":"2026-03-21T16:15:14.068167865Z"} +2026/03/21 16:15:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:15:14.075390143Z"} +2026/03/21 16:15:19 [detection_layer] {"stage_name":"detection_layer","events_processed":592,"events_dropped":0,"avg_latency_ms":19.554584948492156,"throughput_eps":0,"last_update":"2026-03-21T16:15:14.210639547Z"} +2026/03/21 16:15:19 [transform_engine] {"stage_name":"transform_engine","events_processed":592,"events_dropped":0,"avg_latency_ms":245.3037117241316,"throughput_eps":0,"last_update":"2026-03-21T16:15:14.210661389Z"} +2026/03/21 16:15:19 ───────────────────────────────────────────────── +2026/03/21 16:15:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:15:24 [transform_engine] {"stage_name":"transform_engine","events_processed":592,"events_dropped":0,"avg_latency_ms":245.3037117241316,"throughput_eps":0,"last_update":"2026-03-21T16:15:19.210002377Z"} +2026/03/21 16:15:24 [log_collector] {"stage_name":"log_collector","events_processed":28019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5603.8,"last_update":"2026-03-21T16:15:19.069416599Z"} +2026/03/21 16:15:24 [metric_collector] {"stage_name":"metric_collector","events_processed":17788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3557.6,"last_update":"2026-03-21T16:15:19.06937025Z"} +2026/03/21 16:15:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:15:19.08785659Z"} +2026/03/21 16:15:24 [detection_layer] {"stage_name":"detection_layer","events_processed":592,"events_dropped":0,"avg_latency_ms":19.554584948492156,"throughput_eps":0,"last_update":"2026-03-21T16:15:19.210045169Z"} +2026/03/21 16:15:24 ───────────────────────────────────────────────── +2026/03/21 16:15:25 [ANOMALY] time=2026-03-21T16:15:24Z score=0.8209 method=SEAD details=MAD!:w=0.29,s=0.91 RRCF-fast:w=0.18,s=0.84 RRCF-mid:w=0.14,s=0.81 RRCF-slow:w=0.14,s=0.81 COPOD!:w=0.25,s=0.72 +2026/03/21 16:15:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:15:29 [metric_collector] {"stage_name":"metric_collector","events_processed":17794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3558.8,"last_update":"2026-03-21T16:15:24.068848699Z"} +2026/03/21 16:15:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:15:24.074989856Z"} +2026/03/21 16:15:29 [detection_layer] {"stage_name":"detection_layer","events_processed":592,"events_dropped":0,"avg_latency_ms":19.554584948492156,"throughput_eps":0,"last_update":"2026-03-21T16:15:24.210294294Z"} +2026/03/21 16:15:29 [transform_engine] {"stage_name":"transform_engine","events_processed":593,"events_dropped":0,"avg_latency_ms":1355.5720195793053,"throughput_eps":0,"last_update":"2026-03-21T16:15:25.006703154Z"} +2026/03/21 16:15:29 [log_collector] {"stage_name":"log_collector","events_processed":28019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5603.8,"last_update":"2026-03-21T16:15:24.068646222Z"} +2026/03/21 16:15:29 ───────────────────────────────────────────────── +2026/03/21 16:15:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:15:34 [log_collector] {"stage_name":"log_collector","events_processed":28019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5603.8,"last_update":"2026-03-21T16:15:29.068201949Z"} +2026/03/21 16:15:34 [metric_collector] {"stage_name":"metric_collector","events_processed":17799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3559.8,"last_update":"2026-03-21T16:15:29.068725552Z"} +2026/03/21 16:15:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7122,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:15:29.077024342Z"} +2026/03/21 16:15:34 [detection_layer] {"stage_name":"detection_layer","events_processed":593,"events_dropped":0,"avg_latency_ms":18.204422158793726,"throughput_eps":0,"last_update":"2026-03-21T16:15:29.21027268Z"} +2026/03/21 16:15:34 [transform_engine] {"stage_name":"transform_engine","events_processed":593,"events_dropped":0,"avg_latency_ms":1355.5720195793053,"throughput_eps":0,"last_update":"2026-03-21T16:15:29.210317636Z"} +2026/03/21 16:15:34 ───────────────────────────────────────────────── +2026/03/21 16:15:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:15:39 [log_collector] {"stage_name":"log_collector","events_processed":28019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5603.8,"last_update":"2026-03-21T16:15:34.068122333Z"} +2026/03/21 16:15:39 [metric_collector] {"stage_name":"metric_collector","events_processed":17804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3560.8,"last_update":"2026-03-21T16:15:34.069606907Z"} +2026/03/21 16:15:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:15:34.07852303Z"} +2026/03/21 16:15:39 [detection_layer] {"stage_name":"detection_layer","events_processed":593,"events_dropped":0,"avg_latency_ms":18.204422158793726,"throughput_eps":0,"last_update":"2026-03-21T16:15:34.212376197Z"} +2026/03/21 16:15:39 [transform_engine] {"stage_name":"transform_engine","events_processed":593,"events_dropped":0,"avg_latency_ms":1355.5720195793053,"throughput_eps":0,"last_update":"2026-03-21T16:15:34.209724967Z"} +2026/03/21 16:15:39 ───────────────────────────────────────────────── +2026/03/21 16:15:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:15:44 [metric_collector] {"stage_name":"metric_collector","events_processed":17809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3561.8,"last_update":"2026-03-21T16:15:39.068892905Z"} +2026/03/21 16:15:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7126,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:15:39.076976353Z"} +2026/03/21 16:15:44 [detection_layer] {"stage_name":"detection_layer","events_processed":593,"events_dropped":0,"avg_latency_ms":18.204422158793726,"throughput_eps":0,"last_update":"2026-03-21T16:15:39.210215583Z"} +2026/03/21 16:15:44 [transform_engine] {"stage_name":"transform_engine","events_processed":593,"events_dropped":0,"avg_latency_ms":1355.5720195793053,"throughput_eps":0,"last_update":"2026-03-21T16:15:39.210170727Z"} +2026/03/21 16:15:44 [log_collector] {"stage_name":"log_collector","events_processed":28019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5603.8,"last_update":"2026-03-21T16:15:39.068772093Z"} +2026/03/21 16:15:44 ───────────────────────────────────────────────── +2026/03/21 16:15:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:15:49 [log_collector] {"stage_name":"log_collector","events_processed":28019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5603.8,"last_update":"2026-03-21T16:15:44.068069993Z"} +2026/03/21 16:15:49 [metric_collector] {"stage_name":"metric_collector","events_processed":17814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3562.8,"last_update":"2026-03-21T16:15:44.068400406Z"} +2026/03/21 16:15:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7128,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:15:44.07516171Z"} +2026/03/21 16:15:49 [detection_layer] {"stage_name":"detection_layer","events_processed":593,"events_dropped":0,"avg_latency_ms":18.204422158793726,"throughput_eps":0,"last_update":"2026-03-21T16:15:44.210644729Z"} +2026/03/21 16:15:49 [transform_engine] {"stage_name":"transform_engine","events_processed":593,"events_dropped":0,"avg_latency_ms":1355.5720195793053,"throughput_eps":0,"last_update":"2026-03-21T16:15:44.210627085Z"} +2026/03/21 16:15:49 ───────────────────────────────────────────────── +2026/03/21 16:15:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:15:54 [transform_engine] {"stage_name":"transform_engine","events_processed":594,"events_dropped":0,"avg_latency_ms":1097.4315868634444,"throughput_eps":0,"last_update":"2026-03-21T16:15:49.274933016Z"} +2026/03/21 16:15:54 [log_collector] {"stage_name":"log_collector","events_processed":28019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5603.8,"last_update":"2026-03-21T16:15:49.068537644Z"} +2026/03/21 16:15:54 [metric_collector] {"stage_name":"metric_collector","events_processed":17819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3563.8,"last_update":"2026-03-21T16:15:49.068799737Z"} +2026/03/21 16:15:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7130,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:15:49.079827965Z"} +2026/03/21 16:15:54 [detection_layer] {"stage_name":"detection_layer","events_processed":593,"events_dropped":0,"avg_latency_ms":18.204422158793726,"throughput_eps":0,"last_update":"2026-03-21T16:15:49.210047389Z"} +2026/03/21 16:15:54 ───────────────────────────────────────────────── +2026/03/21 16:15:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:15:59 [detection_layer] {"stage_name":"detection_layer","events_processed":594,"events_dropped":0,"avg_latency_ms":17.34582232703498,"throughput_eps":0,"last_update":"2026-03-21T16:15:54.210680465Z"} +2026/03/21 16:15:59 [transform_engine] {"stage_name":"transform_engine","events_processed":594,"events_dropped":0,"avg_latency_ms":1097.4315868634444,"throughput_eps":0,"last_update":"2026-03-21T16:15:54.210568311Z"} +2026/03/21 16:15:59 [log_collector] {"stage_name":"log_collector","events_processed":28028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5605.6,"last_update":"2026-03-21T16:15:54.068384024Z"} +2026/03/21 16:15:59 [metric_collector] {"stage_name":"metric_collector","events_processed":17824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3564.8,"last_update":"2026-03-21T16:15:54.068813416Z"} +2026/03/21 16:15:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:15:54.074218362Z"} +2026/03/21 16:15:59 ───────────────────────────────────────────────── +2026/03/21 16:16:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:16:04 [log_collector] {"stage_name":"log_collector","events_processed":28030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5606,"last_update":"2026-03-21T16:15:59.068637734Z"} +2026/03/21 16:16:04 [metric_collector] {"stage_name":"metric_collector","events_processed":17834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3566.8,"last_update":"2026-03-21T16:16:04.068634392Z"} +2026/03/21 16:16:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:15:59.07774389Z"} +2026/03/21 16:16:04 [detection_layer] {"stage_name":"detection_layer","events_processed":594,"events_dropped":0,"avg_latency_ms":17.34582232703498,"throughput_eps":0,"last_update":"2026-03-21T16:15:59.210058506Z"} +2026/03/21 16:16:04 [transform_engine] {"stage_name":"transform_engine","events_processed":594,"events_dropped":0,"avg_latency_ms":1097.4315868634444,"throughput_eps":0,"last_update":"2026-03-21T16:15:59.210080328Z"} +2026/03/21 16:16:04 ───────────────────────────────────────────────── +2026/03/21 16:16:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:16:09 [detection_layer] {"stage_name":"detection_layer","events_processed":594,"events_dropped":0,"avg_latency_ms":17.34582232703498,"throughput_eps":0,"last_update":"2026-03-21T16:16:04.210195383Z"} +2026/03/21 16:16:09 [transform_engine] {"stage_name":"transform_engine","events_processed":594,"events_dropped":0,"avg_latency_ms":1097.4315868634444,"throughput_eps":0,"last_update":"2026-03-21T16:16:04.210204992Z"} +2026/03/21 16:16:09 [log_collector] {"stage_name":"log_collector","events_processed":28262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5652.4,"last_update":"2026-03-21T16:16:04.068729334Z"} +2026/03/21 16:16:09 [metric_collector] {"stage_name":"metric_collector","events_processed":17834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3566.8,"last_update":"2026-03-21T16:16:04.068634392Z"} +2026/03/21 16:16:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:16:04.075940991Z"} +2026/03/21 16:16:09 ───────────────────────────────────────────────── +2026/03/21 16:16:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:16:14 [detection_layer] {"stage_name":"detection_layer","events_processed":594,"events_dropped":0,"avg_latency_ms":17.34582232703498,"throughput_eps":0,"last_update":"2026-03-21T16:16:09.210534196Z"} +2026/03/21 16:16:14 [transform_engine] {"stage_name":"transform_engine","events_processed":594,"events_dropped":0,"avg_latency_ms":1097.4315868634444,"throughput_eps":0,"last_update":"2026-03-21T16:16:09.210509258Z"} +2026/03/21 16:16:14 [log_collector] {"stage_name":"log_collector","events_processed":28382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5676.4,"last_update":"2026-03-21T16:16:09.068714059Z"} +2026/03/21 16:16:14 [metric_collector] {"stage_name":"metric_collector","events_processed":17839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3567.8,"last_update":"2026-03-21T16:16:09.068905777Z"} +2026/03/21 16:16:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:16:09.075231316Z"} +2026/03/21 16:16:14 ───────────────────────────────────────────────── +2026/03/21 16:16:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:16:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:16:14.07783507Z"} +2026/03/21 16:16:19 [detection_layer] {"stage_name":"detection_layer","events_processed":594,"events_dropped":0,"avg_latency_ms":17.34582232703498,"throughput_eps":0,"last_update":"2026-03-21T16:16:14.210170033Z"} +2026/03/21 16:16:19 [transform_engine] {"stage_name":"transform_engine","events_processed":594,"events_dropped":0,"avg_latency_ms":1097.4315868634444,"throughput_eps":0,"last_update":"2026-03-21T16:16:14.210129114Z"} +2026/03/21 16:16:19 [log_collector] {"stage_name":"log_collector","events_processed":28382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5676.4,"last_update":"2026-03-21T16:16:14.068797244Z"} +2026/03/21 16:16:19 [metric_collector] {"stage_name":"metric_collector","events_processed":17844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3568.8,"last_update":"2026-03-21T16:16:14.069278135Z"} +2026/03/21 16:16:19 ───────────────────────────────────────────────── +2026/03/21 16:16:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:16:24 [log_collector] {"stage_name":"log_collector","events_processed":28382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5676.4,"last_update":"2026-03-21T16:16:19.068114202Z"} +2026/03/21 16:16:24 [metric_collector] {"stage_name":"metric_collector","events_processed":17849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3569.8,"last_update":"2026-03-21T16:16:19.068644939Z"} +2026/03/21 16:16:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:16:19.077592252Z"} +2026/03/21 16:16:24 [detection_layer] {"stage_name":"detection_layer","events_processed":594,"events_dropped":0,"avg_latency_ms":17.34582232703498,"throughput_eps":0,"last_update":"2026-03-21T16:16:19.210969592Z"} +2026/03/21 16:16:24 [transform_engine] {"stage_name":"transform_engine","events_processed":595,"events_dropped":0,"avg_latency_ms":902.8844050907555,"throughput_eps":0,"last_update":"2026-03-21T16:16:19.334497882Z"} +2026/03/21 16:16:24 ───────────────────────────────────────────────── +Saved state: 18 clusters, 28383 messages, reason: none +2026/03/21 16:16:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:16:29 [log_collector] {"stage_name":"log_collector","events_processed":28382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5676.4,"last_update":"2026-03-21T16:16:24.068604661Z"} +2026/03/21 16:16:29 [metric_collector] {"stage_name":"metric_collector","events_processed":17854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3570.8,"last_update":"2026-03-21T16:16:24.068955243Z"} +2026/03/21 16:16:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:16:24.077467963Z"} +2026/03/21 16:16:29 [detection_layer] {"stage_name":"detection_layer","events_processed":595,"events_dropped":0,"avg_latency_ms":17.567573461627983,"throughput_eps":0,"last_update":"2026-03-21T16:16:24.20992596Z"} +2026/03/21 16:16:29 [transform_engine] {"stage_name":"transform_engine","events_processed":595,"events_dropped":0,"avg_latency_ms":902.8844050907555,"throughput_eps":0,"last_update":"2026-03-21T16:16:24.209735094Z"} +2026/03/21 16:16:29 ───────────────────────────────────────────────── +2026/03/21 16:16:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:16:34 [detection_layer] {"stage_name":"detection_layer","events_processed":595,"events_dropped":0,"avg_latency_ms":17.567573461627983,"throughput_eps":0,"last_update":"2026-03-21T16:16:29.210481553Z"} +2026/03/21 16:16:34 [transform_engine] {"stage_name":"transform_engine","events_processed":595,"events_dropped":0,"avg_latency_ms":902.8844050907555,"throughput_eps":0,"last_update":"2026-03-21T16:16:29.210457617Z"} +2026/03/21 16:16:34 [log_collector] {"stage_name":"log_collector","events_processed":28385,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5677,"last_update":"2026-03-21T16:16:29.068300557Z"} +2026/03/21 16:16:34 [metric_collector] {"stage_name":"metric_collector","events_processed":17859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3571.8,"last_update":"2026-03-21T16:16:29.068736072Z"} +2026/03/21 16:16:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:16:29.075074906Z"} +2026/03/21 16:16:34 ───────────────────────────────────────────────── +2026/03/21 16:16:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:16:39 [log_collector] {"stage_name":"log_collector","events_processed":28385,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5677,"last_update":"2026-03-21T16:16:34.068616261Z"} +2026/03/21 16:16:39 [metric_collector] {"stage_name":"metric_collector","events_processed":17864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3572.8,"last_update":"2026-03-21T16:16:34.069109957Z"} +2026/03/21 16:16:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:16:34.07534394Z"} +2026/03/21 16:16:39 [detection_layer] {"stage_name":"detection_layer","events_processed":595,"events_dropped":0,"avg_latency_ms":17.567573461627983,"throughput_eps":0,"last_update":"2026-03-21T16:16:34.210640316Z"} +2026/03/21 16:16:39 [transform_engine] {"stage_name":"transform_engine","events_processed":595,"events_dropped":0,"avg_latency_ms":902.8844050907555,"throughput_eps":0,"last_update":"2026-03-21T16:16:34.21062686Z"} +2026/03/21 16:16:39 ───────────────────────────────────────────────── +2026/03/21 16:16:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:16:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:16:39.075179126Z"} +2026/03/21 16:16:44 [detection_layer] {"stage_name":"detection_layer","events_processed":595,"events_dropped":0,"avg_latency_ms":17.567573461627983,"throughput_eps":0,"last_update":"2026-03-21T16:16:39.210517462Z"} +2026/03/21 16:16:44 [transform_engine] {"stage_name":"transform_engine","events_processed":595,"events_dropped":0,"avg_latency_ms":902.8844050907555,"throughput_eps":0,"last_update":"2026-03-21T16:16:39.210410997Z"} +2026/03/21 16:16:44 [log_collector] {"stage_name":"log_collector","events_processed":28395,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5679,"last_update":"2026-03-21T16:16:39.068787139Z"} +2026/03/21 16:16:44 [metric_collector] {"stage_name":"metric_collector","events_processed":17868,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3573.6,"last_update":"2026-03-21T16:16:39.06879776Z"} +2026/03/21 16:16:44 ───────────────────────────────────────────────── +2026/03/21 16:16:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:16:49 [log_collector] {"stage_name":"log_collector","events_processed":28396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5679.2,"last_update":"2026-03-21T16:16:44.068763245Z"} +2026/03/21 16:16:49 [metric_collector] {"stage_name":"metric_collector","events_processed":17874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3574.8,"last_update":"2026-03-21T16:16:44.069154915Z"} +2026/03/21 16:16:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:16:44.078657781Z"} +2026/03/21 16:16:49 [detection_layer] {"stage_name":"detection_layer","events_processed":595,"events_dropped":0,"avg_latency_ms":17.567573461627983,"throughput_eps":0,"last_update":"2026-03-21T16:16:44.210121353Z"} +2026/03/21 16:16:49 [transform_engine] {"stage_name":"transform_engine","events_processed":595,"events_dropped":0,"avg_latency_ms":902.8844050907555,"throughput_eps":0,"last_update":"2026-03-21T16:16:44.209933713Z"} +2026/03/21 16:16:49 ───────────────────────────────────────────────── +2026/03/21 16:16:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:16:54 [log_collector] {"stage_name":"log_collector","events_processed":28412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5682.4,"last_update":"2026-03-21T16:16:49.068798536Z"} +2026/03/21 16:16:54 [metric_collector] {"stage_name":"metric_collector","events_processed":17879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3575.8,"last_update":"2026-03-21T16:16:49.069199605Z"} +2026/03/21 16:16:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:16:49.075846139Z"} +2026/03/21 16:16:54 [detection_layer] {"stage_name":"detection_layer","events_processed":595,"events_dropped":0,"avg_latency_ms":17.567573461627983,"throughput_eps":0,"last_update":"2026-03-21T16:16:49.209991989Z"} +2026/03/21 16:16:54 [transform_engine] {"stage_name":"transform_engine","events_processed":596,"events_dropped":0,"avg_latency_ms":744.5095930726045,"throughput_eps":0,"last_update":"2026-03-21T16:16:49.321027752Z"} +2026/03/21 16:16:54 ───────────────────────────────────────────────── +2026/03/21 16:16:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:16:59 [detection_layer] {"stage_name":"detection_layer","events_processed":596,"events_dropped":0,"avg_latency_ms":16.659306369302385,"throughput_eps":0,"last_update":"2026-03-21T16:16:54.210374027Z"} +2026/03/21 16:16:59 [transform_engine] {"stage_name":"transform_engine","events_processed":596,"events_dropped":0,"avg_latency_ms":744.5095930726045,"throughput_eps":0,"last_update":"2026-03-21T16:16:54.210302682Z"} +2026/03/21 16:16:59 [log_collector] {"stage_name":"log_collector","events_processed":28412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5682.4,"last_update":"2026-03-21T16:16:54.068152877Z"} +2026/03/21 16:16:59 [metric_collector] {"stage_name":"metric_collector","events_processed":17884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3576.8,"last_update":"2026-03-21T16:16:54.06855092Z"} +2026/03/21 16:16:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:16:54.07705359Z"} +2026/03/21 16:16:59 ───────────────────────────────────────────────── +2026/03/21 16:17:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:17:04 [log_collector] {"stage_name":"log_collector","events_processed":28412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5682.4,"last_update":"2026-03-21T16:17:04.068545613Z"} +2026/03/21 16:17:04 [metric_collector] {"stage_name":"metric_collector","events_processed":17889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3577.8,"last_update":"2026-03-21T16:16:59.069311738Z"} +2026/03/21 16:17:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:16:59.078662924Z"} +2026/03/21 16:17:04 [detection_layer] {"stage_name":"detection_layer","events_processed":596,"events_dropped":0,"avg_latency_ms":16.659306369302385,"throughput_eps":0,"last_update":"2026-03-21T16:16:59.209933784Z"} +2026/03/21 16:17:04 [transform_engine] {"stage_name":"transform_engine","events_processed":596,"events_dropped":0,"avg_latency_ms":744.5095930726045,"throughput_eps":0,"last_update":"2026-03-21T16:16:59.209962249Z"} +2026/03/21 16:17:04 ───────────────────────────────────────────────── +2026/03/21 16:17:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:17:09 [log_collector] {"stage_name":"log_collector","events_processed":28412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5682.4,"last_update":"2026-03-21T16:17:04.068545613Z"} +2026/03/21 16:17:09 [metric_collector] {"stage_name":"metric_collector","events_processed":17894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3578.8,"last_update":"2026-03-21T16:17:04.068972119Z"} +2026/03/21 16:17:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:17:04.077845179Z"} +2026/03/21 16:17:09 [detection_layer] {"stage_name":"detection_layer","events_processed":596,"events_dropped":0,"avg_latency_ms":16.659306369302385,"throughput_eps":0,"last_update":"2026-03-21T16:17:04.210164768Z"} +2026/03/21 16:17:09 [transform_engine] {"stage_name":"transform_engine","events_processed":596,"events_dropped":0,"avg_latency_ms":744.5095930726045,"throughput_eps":0,"last_update":"2026-03-21T16:17:04.210049368Z"} +2026/03/21 16:17:09 ───────────────────────────────────────────────── +2026/03/21 16:17:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:17:14 [log_collector] {"stage_name":"log_collector","events_processed":28412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5682.4,"last_update":"2026-03-21T16:17:14.0683396Z"} +2026/03/21 16:17:14 [metric_collector] {"stage_name":"metric_collector","events_processed":17899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3579.8,"last_update":"2026-03-21T16:17:09.068800525Z"} +2026/03/21 16:17:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:17:09.076787226Z"} +2026/03/21 16:17:14 [detection_layer] {"stage_name":"detection_layer","events_processed":596,"events_dropped":0,"avg_latency_ms":16.659306369302385,"throughput_eps":0,"last_update":"2026-03-21T16:17:09.210071634Z"} +2026/03/21 16:17:14 [transform_engine] {"stage_name":"transform_engine","events_processed":596,"events_dropped":0,"avg_latency_ms":744.5095930726045,"throughput_eps":0,"last_update":"2026-03-21T16:17:09.210111049Z"} +2026/03/21 16:17:14 ───────────────────────────────────────────────── +2026/03/21 16:17:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:17:19 [transform_engine] {"stage_name":"transform_engine","events_processed":596,"events_dropped":0,"avg_latency_ms":744.5095930726045,"throughput_eps":0,"last_update":"2026-03-21T16:17:14.210740343Z"} +2026/03/21 16:17:19 [log_collector] {"stage_name":"log_collector","events_processed":28412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5682.4,"last_update":"2026-03-21T16:17:14.0683396Z"} +2026/03/21 16:17:19 [metric_collector] {"stage_name":"metric_collector","events_processed":17904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3580.8,"last_update":"2026-03-21T16:17:14.068953376Z"} +2026/03/21 16:17:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:17:14.077382485Z"} +2026/03/21 16:17:19 [detection_layer] {"stage_name":"detection_layer","events_processed":596,"events_dropped":0,"avg_latency_ms":16.659306369302385,"throughput_eps":0,"last_update":"2026-03-21T16:17:14.210684666Z"} +2026/03/21 16:17:19 ───────────────────────────────────────────────── +2026/03/21 16:17:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:17:24 [transform_engine] {"stage_name":"transform_engine","events_processed":597,"events_dropped":0,"avg_latency_ms":610.8366030580836,"throughput_eps":0,"last_update":"2026-03-21T16:17:19.28660019Z"} +2026/03/21 16:17:24 [log_collector] {"stage_name":"log_collector","events_processed":28412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5682.4,"last_update":"2026-03-21T16:17:19.068450082Z"} +2026/03/21 16:17:24 [metric_collector] {"stage_name":"metric_collector","events_processed":17909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3581.8,"last_update":"2026-03-21T16:17:19.069067074Z"} +2026/03/21 16:17:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:17:19.079205228Z"} +2026/03/21 16:17:24 [detection_layer] {"stage_name":"detection_layer","events_processed":596,"events_dropped":0,"avg_latency_ms":16.659306369302385,"throughput_eps":0,"last_update":"2026-03-21T16:17:19.21144896Z"} +2026/03/21 16:17:24 ───────────────────────────────────────────────── +2026/03/21 16:17:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:17:29 [detection_layer] {"stage_name":"detection_layer","events_processed":597,"events_dropped":0,"avg_latency_ms":17.928708295441908,"throughput_eps":0,"last_update":"2026-03-21T16:17:24.210428097Z"} +2026/03/21 16:17:29 [transform_engine] {"stage_name":"transform_engine","events_processed":597,"events_dropped":0,"avg_latency_ms":610.8366030580836,"throughput_eps":0,"last_update":"2026-03-21T16:17:24.210312254Z"} +2026/03/21 16:17:29 [log_collector] {"stage_name":"log_collector","events_processed":28412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5682.4,"last_update":"2026-03-21T16:17:24.068847276Z"} +2026/03/21 16:17:29 [metric_collector] {"stage_name":"metric_collector","events_processed":17914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3582.8,"last_update":"2026-03-21T16:17:24.069176807Z"} +2026/03/21 16:17:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:17:24.077929947Z"} +2026/03/21 16:17:29 ───────────────────────────────────────────────── +2026/03/21 16:17:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:17:34 [log_collector] {"stage_name":"log_collector","events_processed":28412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5682.4,"last_update":"2026-03-21T16:17:29.068810251Z"} +2026/03/21 16:17:34 [metric_collector] {"stage_name":"metric_collector","events_processed":17919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3583.8,"last_update":"2026-03-21T16:17:29.069603801Z"} +2026/03/21 16:17:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7170,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:17:29.078621076Z"} +2026/03/21 16:17:34 [detection_layer] {"stage_name":"detection_layer","events_processed":597,"events_dropped":0,"avg_latency_ms":17.928708295441908,"throughput_eps":0,"last_update":"2026-03-21T16:17:29.209932843Z"} +2026/03/21 16:17:34 [transform_engine] {"stage_name":"transform_engine","events_processed":597,"events_dropped":0,"avg_latency_ms":610.8366030580836,"throughput_eps":0,"last_update":"2026-03-21T16:17:29.209809026Z"} +2026/03/21 16:17:34 ───────────────────────────────────────────────── +2026/03/21 16:17:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:17:39 [log_collector] {"stage_name":"log_collector","events_processed":28412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5682.4,"last_update":"2026-03-21T16:17:34.068818053Z"} +2026/03/21 16:17:39 [metric_collector] {"stage_name":"metric_collector","events_processed":17924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3584.8,"last_update":"2026-03-21T16:17:34.069045619Z"} +2026/03/21 16:17:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:17:34.078508808Z"} +2026/03/21 16:17:39 [detection_layer] {"stage_name":"detection_layer","events_processed":597,"events_dropped":0,"avg_latency_ms":17.928708295441908,"throughput_eps":0,"last_update":"2026-03-21T16:17:34.210833545Z"} +2026/03/21 16:17:39 [transform_engine] {"stage_name":"transform_engine","events_processed":597,"events_dropped":0,"avg_latency_ms":610.8366030580836,"throughput_eps":0,"last_update":"2026-03-21T16:17:34.209684163Z"} +2026/03/21 16:17:39 ───────────────────────────────────────────────── +2026/03/21 16:17:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:17:44 [log_collector] {"stage_name":"log_collector","events_processed":28412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5682.4,"last_update":"2026-03-21T16:17:39.068771716Z"} +2026/03/21 16:17:44 [metric_collector] {"stage_name":"metric_collector","events_processed":17929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3585.8,"last_update":"2026-03-21T16:17:39.069283848Z"} +2026/03/21 16:17:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:17:39.078531435Z"} +2026/03/21 16:17:44 [detection_layer] {"stage_name":"detection_layer","events_processed":597,"events_dropped":0,"avg_latency_ms":17.928708295441908,"throughput_eps":0,"last_update":"2026-03-21T16:17:39.210790585Z"} +2026/03/21 16:17:44 [transform_engine] {"stage_name":"transform_engine","events_processed":597,"events_dropped":0,"avg_latency_ms":610.8366030580836,"throughput_eps":0,"last_update":"2026-03-21T16:17:39.209668826Z"} +2026/03/21 16:17:44 ───────────────────────────────────────────────── +Saved state: 18 clusters, 28413 messages, reason: none +2026/03/21 16:17:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:17:49 [log_collector] {"stage_name":"log_collector","events_processed":28412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5682.4,"last_update":"2026-03-21T16:17:44.068931249Z"} +2026/03/21 16:17:49 [metric_collector] {"stage_name":"metric_collector","events_processed":17934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3586.8,"last_update":"2026-03-21T16:17:44.069143516Z"} +2026/03/21 16:17:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:17:44.078736315Z"} +2026/03/21 16:17:49 [detection_layer] {"stage_name":"detection_layer","events_processed":597,"events_dropped":0,"avg_latency_ms":17.928708295441908,"throughput_eps":0,"last_update":"2026-03-21T16:17:44.21012674Z"} +2026/03/21 16:17:49 [transform_engine] {"stage_name":"transform_engine","events_processed":597,"events_dropped":0,"avg_latency_ms":610.8366030580836,"throughput_eps":0,"last_update":"2026-03-21T16:17:44.21019935Z"} +2026/03/21 16:17:49 ───────────────────────────────────────────────── +2026/03/21 16:17:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:17:54 [log_collector] {"stage_name":"log_collector","events_processed":28415,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5683,"last_update":"2026-03-21T16:17:49.068700408Z"} +2026/03/21 16:17:54 [metric_collector] {"stage_name":"metric_collector","events_processed":17939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3587.8,"last_update":"2026-03-21T16:17:49.068942772Z"} +2026/03/21 16:17:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:17:49.079387382Z"} +2026/03/21 16:17:54 [detection_layer] {"stage_name":"detection_layer","events_processed":597,"events_dropped":0,"avg_latency_ms":17.928708295441908,"throughput_eps":0,"last_update":"2026-03-21T16:17:49.210685109Z"} +2026/03/21 16:17:54 [transform_engine] {"stage_name":"transform_engine","events_processed":598,"events_dropped":0,"avg_latency_ms":509.45552624646695,"throughput_eps":0,"last_update":"2026-03-21T16:17:49.314671242Z"} +2026/03/21 16:17:54 ───────────────────────────────────────────────── +2026/03/21 16:17:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:17:59 [transform_engine] {"stage_name":"transform_engine","events_processed":598,"events_dropped":0,"avg_latency_ms":509.45552624646695,"throughput_eps":0,"last_update":"2026-03-21T16:17:54.21012446Z"} +2026/03/21 16:17:59 [log_collector] {"stage_name":"log_collector","events_processed":28426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5685.2,"last_update":"2026-03-21T16:17:54.068727544Z"} +2026/03/21 16:17:59 [metric_collector] {"stage_name":"metric_collector","events_processed":17944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3588.8,"last_update":"2026-03-21T16:17:54.06909066Z"} +2026/03/21 16:17:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:17:54.078811764Z"} +2026/03/21 16:17:59 [detection_layer] {"stage_name":"detection_layer","events_processed":598,"events_dropped":0,"avg_latency_ms":17.350695036353528,"throughput_eps":0,"last_update":"2026-03-21T16:17:54.210085696Z"} +2026/03/21 16:17:59 ───────────────────────────────────────────────── +2026/03/21 16:18:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:18:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:17:59.078424922Z"} +2026/03/21 16:18:04 [detection_layer] {"stage_name":"detection_layer","events_processed":598,"events_dropped":0,"avg_latency_ms":17.350695036353528,"throughput_eps":0,"last_update":"2026-03-21T16:17:59.210651398Z"} +2026/03/21 16:18:04 [transform_engine] {"stage_name":"transform_engine","events_processed":598,"events_dropped":0,"avg_latency_ms":509.45552624646695,"throughput_eps":0,"last_update":"2026-03-21T16:17:59.210536929Z"} +2026/03/21 16:18:04 [log_collector] {"stage_name":"log_collector","events_processed":28426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5685.2,"last_update":"2026-03-21T16:17:59.068925663Z"} +2026/03/21 16:18:04 [metric_collector] {"stage_name":"metric_collector","events_processed":17949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3589.8,"last_update":"2026-03-21T16:17:59.069444708Z"} +2026/03/21 16:18:04 ───────────────────────────────────────────────── +2026/03/21 16:18:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:18:09 [detection_layer] {"stage_name":"detection_layer","events_processed":598,"events_dropped":0,"avg_latency_ms":17.350695036353528,"throughput_eps":0,"last_update":"2026-03-21T16:18:04.210662383Z"} +2026/03/21 16:18:09 [transform_engine] {"stage_name":"transform_engine","events_processed":598,"events_dropped":0,"avg_latency_ms":509.45552624646695,"throughput_eps":0,"last_update":"2026-03-21T16:18:04.210612287Z"} +2026/03/21 16:18:09 [log_collector] {"stage_name":"log_collector","events_processed":28426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5685.2,"last_update":"2026-03-21T16:18:09.068306169Z"} +2026/03/21 16:18:09 [metric_collector] {"stage_name":"metric_collector","events_processed":17954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3590.8,"last_update":"2026-03-21T16:18:04.068967748Z"} +2026/03/21 16:18:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:18:04.078205135Z"} +2026/03/21 16:18:09 ───────────────────────────────────────────────── +2026/03/21 16:18:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:18:14 [log_collector] {"stage_name":"log_collector","events_processed":28426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5685.2,"last_update":"2026-03-21T16:18:09.068306169Z"} +2026/03/21 16:18:14 [metric_collector] {"stage_name":"metric_collector","events_processed":17959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3591.8,"last_update":"2026-03-21T16:18:09.069205331Z"} +2026/03/21 16:18:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:18:09.078307419Z"} +2026/03/21 16:18:14 [detection_layer] {"stage_name":"detection_layer","events_processed":598,"events_dropped":0,"avg_latency_ms":17.350695036353528,"throughput_eps":0,"last_update":"2026-03-21T16:18:09.211106452Z"} +2026/03/21 16:18:14 [transform_engine] {"stage_name":"transform_engine","events_processed":598,"events_dropped":0,"avg_latency_ms":509.45552624646695,"throughput_eps":0,"last_update":"2026-03-21T16:18:09.211130238Z"} +2026/03/21 16:18:14 ───────────────────────────────────────────────── +2026/03/21 16:18:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:18:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:18:14.078638515Z"} +2026/03/21 16:18:19 [detection_layer] {"stage_name":"detection_layer","events_processed":598,"events_dropped":0,"avg_latency_ms":17.350695036353528,"throughput_eps":0,"last_update":"2026-03-21T16:18:14.209873741Z"} +2026/03/21 16:18:19 [transform_engine] {"stage_name":"transform_engine","events_processed":598,"events_dropped":0,"avg_latency_ms":509.45552624646695,"throughput_eps":0,"last_update":"2026-03-21T16:18:14.20986284Z"} +2026/03/21 16:18:19 [log_collector] {"stage_name":"log_collector","events_processed":28426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5685.2,"last_update":"2026-03-21T16:18:14.068856845Z"} +2026/03/21 16:18:19 [metric_collector] {"stage_name":"metric_collector","events_processed":17964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3592.8,"last_update":"2026-03-21T16:18:14.069148614Z"} +2026/03/21 16:18:19 ───────────────────────────────────────────────── +2026/03/21 16:18:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:18:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:18:19.07828243Z"} +2026/03/21 16:18:24 [detection_layer] {"stage_name":"detection_layer","events_processed":598,"events_dropped":0,"avg_latency_ms":17.350695036353528,"throughput_eps":0,"last_update":"2026-03-21T16:18:19.210618083Z"} +2026/03/21 16:18:24 [transform_engine] {"stage_name":"transform_engine","events_processed":599,"events_dropped":0,"avg_latency_ms":431.1398695971736,"throughput_eps":0,"last_update":"2026-03-21T16:18:19.328390586Z"} +2026/03/21 16:18:24 [log_collector] {"stage_name":"log_collector","events_processed":28426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5685.2,"last_update":"2026-03-21T16:18:19.06856838Z"} +2026/03/21 16:18:24 [metric_collector] {"stage_name":"metric_collector","events_processed":17969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3593.8,"last_update":"2026-03-21T16:18:19.068904333Z"} +2026/03/21 16:18:24 ───────────────────────────────────────────────── +2026/03/21 16:18:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:18:29 [metric_collector] {"stage_name":"metric_collector","events_processed":17974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3594.8,"last_update":"2026-03-21T16:18:24.069713916Z"} +2026/03/21 16:18:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:18:24.078904774Z"} +2026/03/21 16:18:29 [detection_layer] {"stage_name":"detection_layer","events_processed":599,"events_dropped":0,"avg_latency_ms":18.747095429082826,"throughput_eps":0,"last_update":"2026-03-21T16:18:24.210188932Z"} +2026/03/21 16:18:29 [transform_engine] {"stage_name":"transform_engine","events_processed":599,"events_dropped":0,"avg_latency_ms":431.1398695971736,"throughput_eps":0,"last_update":"2026-03-21T16:18:24.210152683Z"} +2026/03/21 16:18:29 [log_collector] {"stage_name":"log_collector","events_processed":28426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5685.2,"last_update":"2026-03-21T16:18:24.068929463Z"} +2026/03/21 16:18:29 ───────────────────────────────────────────────── +2026/03/21 16:18:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:18:34 [log_collector] {"stage_name":"log_collector","events_processed":28426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5685.2,"last_update":"2026-03-21T16:18:29.06901845Z"} +2026/03/21 16:18:34 [metric_collector] {"stage_name":"metric_collector","events_processed":17979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3595.8,"last_update":"2026-03-21T16:18:29.06965576Z"} +2026/03/21 16:18:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:18:29.078089107Z"} +2026/03/21 16:18:34 [detection_layer] {"stage_name":"detection_layer","events_processed":599,"events_dropped":0,"avg_latency_ms":18.747095429082826,"throughput_eps":0,"last_update":"2026-03-21T16:18:29.210482511Z"} +2026/03/21 16:18:34 [transform_engine] {"stage_name":"transform_engine","events_processed":599,"events_dropped":0,"avg_latency_ms":431.1398695971736,"throughput_eps":0,"last_update":"2026-03-21T16:18:29.210458525Z"} +2026/03/21 16:18:34 ───────────────────────────────────────────────── +2026/03/21 16:18:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:18:39 [detection_layer] {"stage_name":"detection_layer","events_processed":599,"events_dropped":0,"avg_latency_ms":18.747095429082826,"throughput_eps":0,"last_update":"2026-03-21T16:18:34.210718234Z"} +2026/03/21 16:18:39 [transform_engine] {"stage_name":"transform_engine","events_processed":599,"events_dropped":0,"avg_latency_ms":431.1398695971736,"throughput_eps":0,"last_update":"2026-03-21T16:18:34.210654342Z"} +2026/03/21 16:18:39 [log_collector] {"stage_name":"log_collector","events_processed":28426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5685.2,"last_update":"2026-03-21T16:18:34.068984546Z"} +2026/03/21 16:18:39 [metric_collector] {"stage_name":"metric_collector","events_processed":17984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3596.8,"last_update":"2026-03-21T16:18:34.06921067Z"} +2026/03/21 16:18:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:18:34.078415334Z"} +2026/03/21 16:18:39 ───────────────────────────────────────────────── +2026/03/21 16:18:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:18:44 [log_collector] {"stage_name":"log_collector","events_processed":28426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5685.2,"last_update":"2026-03-21T16:18:39.068085752Z"} +2026/03/21 16:18:44 [metric_collector] {"stage_name":"metric_collector","events_processed":17989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3597.8,"last_update":"2026-03-21T16:18:39.068610698Z"} +2026/03/21 16:18:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:18:39.077847173Z"} +2026/03/21 16:18:44 [detection_layer] {"stage_name":"detection_layer","events_processed":599,"events_dropped":0,"avg_latency_ms":18.747095429082826,"throughput_eps":0,"last_update":"2026-03-21T16:18:39.210079326Z"} +2026/03/21 16:18:44 [transform_engine] {"stage_name":"transform_engine","events_processed":599,"events_dropped":0,"avg_latency_ms":431.1398695971736,"throughput_eps":0,"last_update":"2026-03-21T16:18:39.21018524Z"} +2026/03/21 16:18:44 ───────────────────────────────────────────────── +2026/03/21 16:18:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:18:49 [log_collector] {"stage_name":"log_collector","events_processed":28426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5685.2,"last_update":"2026-03-21T16:18:44.068902659Z"} +2026/03/21 16:18:49 [metric_collector] {"stage_name":"metric_collector","events_processed":17994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3598.8,"last_update":"2026-03-21T16:18:44.069401985Z"} +2026/03/21 16:18:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:18:44.077715934Z"} +2026/03/21 16:18:49 [detection_layer] {"stage_name":"detection_layer","events_processed":599,"events_dropped":0,"avg_latency_ms":18.747095429082826,"throughput_eps":0,"last_update":"2026-03-21T16:18:44.209971122Z"} +2026/03/21 16:18:49 [transform_engine] {"stage_name":"transform_engine","events_processed":599,"events_dropped":0,"avg_latency_ms":431.1398695971736,"throughput_eps":0,"last_update":"2026-03-21T16:18:44.209993855Z"} +2026/03/21 16:18:49 ───────────────────────────────────────────────── +2026/03/21 16:18:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:18:54 [metric_collector] {"stage_name":"metric_collector","events_processed":17999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3599.8,"last_update":"2026-03-21T16:18:49.069254452Z"} +2026/03/21 16:18:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:18:49.078505906Z"} +2026/03/21 16:18:54 [detection_layer] {"stage_name":"detection_layer","events_processed":599,"events_dropped":0,"avg_latency_ms":18.747095429082826,"throughput_eps":0,"last_update":"2026-03-21T16:18:49.210672273Z"} +2026/03/21 16:18:54 [transform_engine] {"stage_name":"transform_engine","events_processed":600,"events_dropped":0,"avg_latency_ms":359.7345514777389,"throughput_eps":0,"last_update":"2026-03-21T16:18:49.284801502Z"} +2026/03/21 16:18:54 [log_collector] {"stage_name":"log_collector","events_processed":28426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5685.2,"last_update":"2026-03-21T16:18:49.068908609Z"} +2026/03/21 16:18:54 ───────────────────────────────────────────────── +Saved state: 18 clusters, 28427 messages, reason: none +2026/03/21 16:18:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:18:59 [metric_collector] {"stage_name":"metric_collector","events_processed":18004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3600.8,"last_update":"2026-03-21T16:18:54.068336958Z"} +2026/03/21 16:18:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:18:54.077481187Z"} +2026/03/21 16:18:59 [detection_layer] {"stage_name":"detection_layer","events_processed":600,"events_dropped":0,"avg_latency_ms":19.419519743266264,"throughput_eps":0,"last_update":"2026-03-21T16:18:54.210754954Z"} +2026/03/21 16:18:59 [transform_engine] {"stage_name":"transform_engine","events_processed":600,"events_dropped":0,"avg_latency_ms":359.7345514777389,"throughput_eps":0,"last_update":"2026-03-21T16:18:54.209635109Z"} +2026/03/21 16:18:59 [log_collector] {"stage_name":"log_collector","events_processed":28426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5685.2,"last_update":"2026-03-21T16:18:54.068073023Z"} +2026/03/21 16:18:59 ───────────────────────────────────────────────── +2026/03/21 16:19:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:19:04 [log_collector] {"stage_name":"log_collector","events_processed":28431,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5686.2,"last_update":"2026-03-21T16:18:59.068858157Z"} +2026/03/21 16:19:04 [metric_collector] {"stage_name":"metric_collector","events_processed":18009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3601.8,"last_update":"2026-03-21T16:18:59.069086294Z"} +2026/03/21 16:19:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7206,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:18:59.074749915Z"} +2026/03/21 16:19:04 [detection_layer] {"stage_name":"detection_layer","events_processed":600,"events_dropped":0,"avg_latency_ms":19.419519743266264,"throughput_eps":0,"last_update":"2026-03-21T16:18:59.210366281Z"} +2026/03/21 16:19:04 [transform_engine] {"stage_name":"transform_engine","events_processed":600,"events_dropped":0,"avg_latency_ms":359.7345514777389,"throughput_eps":0,"last_update":"2026-03-21T16:18:59.209951135Z"} +2026/03/21 16:19:04 ───────────────────────────────────────────────── +2026/03/21 16:19:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:19:09 [detection_layer] {"stage_name":"detection_layer","events_processed":600,"events_dropped":0,"avg_latency_ms":19.419519743266264,"throughput_eps":0,"last_update":"2026-03-21T16:19:04.210442131Z"} +2026/03/21 16:19:09 [transform_engine] {"stage_name":"transform_engine","events_processed":600,"events_dropped":0,"avg_latency_ms":359.7345514777389,"throughput_eps":0,"last_update":"2026-03-21T16:19:04.210462681Z"} +2026/03/21 16:19:09 [log_collector] {"stage_name":"log_collector","events_processed":28431,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5686.2,"last_update":"2026-03-21T16:19:04.068565412Z"} +2026/03/21 16:19:09 [metric_collector] {"stage_name":"metric_collector","events_processed":18014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3602.8,"last_update":"2026-03-21T16:19:04.068958505Z"} +2026/03/21 16:19:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:19:04.075216815Z"} +2026/03/21 16:19:09 ───────────────────────────────────────────────── +2026/03/21 16:19:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:19:14 [log_collector] {"stage_name":"log_collector","events_processed":28431,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5686.2,"last_update":"2026-03-21T16:19:09.068579161Z"} +2026/03/21 16:19:14 [metric_collector] {"stage_name":"metric_collector","events_processed":18019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3603.8,"last_update":"2026-03-21T16:19:09.068845231Z"} +2026/03/21 16:19:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7210,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:19:09.077404078Z"} +2026/03/21 16:19:14 [detection_layer] {"stage_name":"detection_layer","events_processed":600,"events_dropped":0,"avg_latency_ms":19.419519743266264,"throughput_eps":0,"last_update":"2026-03-21T16:19:09.210614794Z"} +2026/03/21 16:19:14 [transform_engine] {"stage_name":"transform_engine","events_processed":600,"events_dropped":0,"avg_latency_ms":359.7345514777389,"throughput_eps":0,"last_update":"2026-03-21T16:19:09.210634873Z"} +2026/03/21 16:19:14 ───────────────────────────────────────────────── +2026/03/21 16:19:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:19:19 [log_collector] {"stage_name":"log_collector","events_processed":28431,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5686.2,"last_update":"2026-03-21T16:19:14.068325944Z"} +2026/03/21 16:19:19 [metric_collector] {"stage_name":"metric_collector","events_processed":18024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3604.8,"last_update":"2026-03-21T16:19:14.068687708Z"} +2026/03/21 16:19:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:19:14.076093285Z"} +2026/03/21 16:19:19 [detection_layer] {"stage_name":"detection_layer","events_processed":600,"events_dropped":0,"avg_latency_ms":19.419519743266264,"throughput_eps":0,"last_update":"2026-03-21T16:19:14.210412104Z"} +2026/03/21 16:19:19 [transform_engine] {"stage_name":"transform_engine","events_processed":600,"events_dropped":0,"avg_latency_ms":359.7345514777389,"throughput_eps":0,"last_update":"2026-03-21T16:19:14.210395051Z"} +2026/03/21 16:19:19 ───────────────────────────────────────────────── +2026/03/21 16:19:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:19:24 [log_collector] {"stage_name":"log_collector","events_processed":28431,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5686.2,"last_update":"2026-03-21T16:19:19.068581538Z"} +2026/03/21 16:19:24 [metric_collector] {"stage_name":"metric_collector","events_processed":18029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3605.8,"last_update":"2026-03-21T16:19:19.068410952Z"} +2026/03/21 16:19:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:19:19.074859896Z"} +2026/03/21 16:19:24 [detection_layer] {"stage_name":"detection_layer","events_processed":600,"events_dropped":0,"avg_latency_ms":19.419519743266264,"throughput_eps":0,"last_update":"2026-03-21T16:19:19.210377431Z"} +2026/03/21 16:19:24 [transform_engine] {"stage_name":"transform_engine","events_processed":601,"events_dropped":0,"avg_latency_ms":745.0396539821911,"throughput_eps":0,"last_update":"2026-03-21T16:19:21.496659768Z"} +2026/03/21 16:19:24 ───────────────────────────────────────────────── +2026/03/21 16:19:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:19:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:19:24.076944812Z"} +2026/03/21 16:19:29 [detection_layer] {"stage_name":"detection_layer","events_processed":601,"events_dropped":0,"avg_latency_ms":18.785381594613014,"throughput_eps":0,"last_update":"2026-03-21T16:19:24.210205273Z"} +2026/03/21 16:19:29 [transform_engine] {"stage_name":"transform_engine","events_processed":601,"events_dropped":0,"avg_latency_ms":745.0396539821911,"throughput_eps":0,"last_update":"2026-03-21T16:19:24.210178482Z"} +2026/03/21 16:19:29 [log_collector] {"stage_name":"log_collector","events_processed":28431,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5686.2,"last_update":"2026-03-21T16:19:24.068660221Z"} +2026/03/21 16:19:29 [metric_collector] {"stage_name":"metric_collector","events_processed":18034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3606.8,"last_update":"2026-03-21T16:19:24.068886004Z"} +2026/03/21 16:19:29 ───────────────────────────────────────────────── +2026/03/21 16:19:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:19:34 [log_collector] {"stage_name":"log_collector","events_processed":28431,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5686.2,"last_update":"2026-03-21T16:19:29.071491043Z"} +2026/03/21 16:19:34 [metric_collector] {"stage_name":"metric_collector","events_processed":18039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3607.8,"last_update":"2026-03-21T16:19:29.071763335Z"} +2026/03/21 16:19:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:19:29.078339944Z"} +2026/03/21 16:19:34 [detection_layer] {"stage_name":"detection_layer","events_processed":601,"events_dropped":0,"avg_latency_ms":18.785381594613014,"throughput_eps":0,"last_update":"2026-03-21T16:19:29.210629123Z"} +2026/03/21 16:19:34 [transform_engine] {"stage_name":"transform_engine","events_processed":601,"events_dropped":0,"avg_latency_ms":745.0396539821911,"throughput_eps":0,"last_update":"2026-03-21T16:19:29.210618784Z"} +2026/03/21 16:19:34 ───────────────────────────────────────────────── +2026/03/21 16:19:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:19:39 [detection_layer] {"stage_name":"detection_layer","events_processed":601,"events_dropped":0,"avg_latency_ms":18.785381594613014,"throughput_eps":0,"last_update":"2026-03-21T16:19:34.210407435Z"} +2026/03/21 16:19:39 [transform_engine] {"stage_name":"transform_engine","events_processed":601,"events_dropped":0,"avg_latency_ms":745.0396539821911,"throughput_eps":0,"last_update":"2026-03-21T16:19:34.210424216Z"} +2026/03/21 16:19:39 [log_collector] {"stage_name":"log_collector","events_processed":28431,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5686.2,"last_update":"2026-03-21T16:19:34.068531419Z"} +2026/03/21 16:19:39 [metric_collector] {"stage_name":"metric_collector","events_processed":18044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3608.8,"last_update":"2026-03-21T16:19:34.068743074Z"} +2026/03/21 16:19:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:19:34.084200186Z"} +2026/03/21 16:19:39 ───────────────────────────────────────────────── +2026/03/21 16:19:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:19:44 [log_collector] {"stage_name":"log_collector","events_processed":28434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5686.8,"last_update":"2026-03-21T16:19:39.068070859Z"} +2026/03/21 16:19:44 [metric_collector] {"stage_name":"metric_collector","events_processed":18049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3609.8,"last_update":"2026-03-21T16:19:39.068464694Z"} +2026/03/21 16:19:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7222,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:19:39.075409599Z"} +2026/03/21 16:19:44 [detection_layer] {"stage_name":"detection_layer","events_processed":601,"events_dropped":0,"avg_latency_ms":18.785381594613014,"throughput_eps":0,"last_update":"2026-03-21T16:19:39.210703634Z"} +2026/03/21 16:19:44 [transform_engine] {"stage_name":"transform_engine","events_processed":601,"events_dropped":0,"avg_latency_ms":745.0396539821911,"throughput_eps":0,"last_update":"2026-03-21T16:19:39.210737911Z"} +2026/03/21 16:19:44 ───────────────────────────────────────────────── +2026/03/21 16:19:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:19:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:19:44.076094231Z"} +2026/03/21 16:19:49 [detection_layer] {"stage_name":"detection_layer","events_processed":601,"events_dropped":0,"avg_latency_ms":18.785381594613014,"throughput_eps":0,"last_update":"2026-03-21T16:19:44.21038833Z"} +2026/03/21 16:19:49 [transform_engine] {"stage_name":"transform_engine","events_processed":601,"events_dropped":0,"avg_latency_ms":745.0396539821911,"throughput_eps":0,"last_update":"2026-03-21T16:19:44.210401054Z"} +2026/03/21 16:19:49 [log_collector] {"stage_name":"log_collector","events_processed":28442,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5688.4,"last_update":"2026-03-21T16:19:44.068789316Z"} +2026/03/21 16:19:49 [metric_collector] {"stage_name":"metric_collector","events_processed":18054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3610.8,"last_update":"2026-03-21T16:19:44.068909717Z"} +2026/03/21 16:19:49 ───────────────────────────────────────────────── +2026/03/21 16:19:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:19:54 [transform_engine] {"stage_name":"transform_engine","events_processed":601,"events_dropped":0,"avg_latency_ms":745.0396539821911,"throughput_eps":0,"last_update":"2026-03-21T16:19:49.209823626Z"} +2026/03/21 16:19:54 [log_collector] {"stage_name":"log_collector","events_processed":28518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5703.6,"last_update":"2026-03-21T16:19:49.068830573Z"} +2026/03/21 16:19:54 [metric_collector] {"stage_name":"metric_collector","events_processed":18059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3611.8,"last_update":"2026-03-21T16:19:49.06888616Z"} +2026/03/21 16:19:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:19:49.079633279Z"} +2026/03/21 16:19:54 [detection_layer] {"stage_name":"detection_layer","events_processed":601,"events_dropped":0,"avg_latency_ms":18.785381594613014,"throughput_eps":0,"last_update":"2026-03-21T16:19:49.21056199Z"} +2026/03/21 16:19:54 ───────────────────────────────────────────────── +2026/03/21 16:19:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:19:59 [log_collector] {"stage_name":"log_collector","events_processed":28781,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5756.2,"last_update":"2026-03-21T16:19:54.068108222Z"} +2026/03/21 16:19:59 [metric_collector] {"stage_name":"metric_collector","events_processed":18064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3612.8,"last_update":"2026-03-21T16:19:54.068501275Z"} +2026/03/21 16:19:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:19:54.075506546Z"} +2026/03/21 16:19:59 [detection_layer] {"stage_name":"detection_layer","events_processed":602,"events_dropped":0,"avg_latency_ms":18.09388827569041,"throughput_eps":0,"last_update":"2026-03-21T16:19:54.210815739Z"} +2026/03/21 16:19:59 [transform_engine] {"stage_name":"transform_engine","events_processed":602,"events_dropped":0,"avg_latency_ms":710.5590513857529,"throughput_eps":0,"last_update":"2026-03-21T16:19:54.209648383Z"} +2026/03/21 16:19:59 ───────────────────────────────────────────────── +2026/03/21 16:20:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:20:04 [log_collector] {"stage_name":"log_collector","events_processed":28789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5757.8,"last_update":"2026-03-21T16:19:59.068898318Z"} +2026/03/21 16:20:04 [metric_collector] {"stage_name":"metric_collector","events_processed":18069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3613.8,"last_update":"2026-03-21T16:19:59.069067221Z"} +2026/03/21 16:20:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:19:59.077577976Z"} +2026/03/21 16:20:04 [detection_layer] {"stage_name":"detection_layer","events_processed":602,"events_dropped":0,"avg_latency_ms":18.09388827569041,"throughput_eps":0,"last_update":"2026-03-21T16:19:59.209901769Z"} +2026/03/21 16:20:04 [transform_engine] {"stage_name":"transform_engine","events_processed":602,"events_dropped":0,"avg_latency_ms":710.5590513857529,"throughput_eps":0,"last_update":"2026-03-21T16:19:59.209918061Z"} +2026/03/21 16:20:04 ───────────────────────────────────────────────── +2026/03/21 16:20:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:20:09 [log_collector] {"stage_name":"log_collector","events_processed":28789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5757.8,"last_update":"2026-03-21T16:20:04.068990042Z"} +2026/03/21 16:20:09 [metric_collector] {"stage_name":"metric_collector","events_processed":18073,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3614.6,"last_update":"2026-03-21T16:20:04.068869802Z"} +2026/03/21 16:20:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:20:04.08592201Z"} +2026/03/21 16:20:09 [detection_layer] {"stage_name":"detection_layer","events_processed":602,"events_dropped":0,"avg_latency_ms":18.09388827569041,"throughput_eps":0,"last_update":"2026-03-21T16:20:04.210167226Z"} +2026/03/21 16:20:09 [transform_engine] {"stage_name":"transform_engine","events_processed":602,"events_dropped":0,"avg_latency_ms":710.5590513857529,"throughput_eps":0,"last_update":"2026-03-21T16:20:04.210183328Z"} +2026/03/21 16:20:09 ───────────────────────────────────────────────── +2026/03/21 16:20:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:20:14 [log_collector] {"stage_name":"log_collector","events_processed":28789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5757.8,"last_update":"2026-03-21T16:20:09.068085768Z"} +2026/03/21 16:20:14 [metric_collector] {"stage_name":"metric_collector","events_processed":18078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3615.6,"last_update":"2026-03-21T16:20:09.067965657Z"} +2026/03/21 16:20:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:20:09.076362043Z"} +2026/03/21 16:20:14 [detection_layer] {"stage_name":"detection_layer","events_processed":602,"events_dropped":0,"avg_latency_ms":18.09388827569041,"throughput_eps":0,"last_update":"2026-03-21T16:20:09.210684655Z"} +2026/03/21 16:20:14 [transform_engine] {"stage_name":"transform_engine","events_processed":602,"events_dropped":0,"avg_latency_ms":710.5590513857529,"throughput_eps":0,"last_update":"2026-03-21T16:20:09.21069282Z"} +2026/03/21 16:20:14 ───────────────────────────────────────────────── +Saved state: 18 clusters, 28790 messages, reason: none +2026/03/21 16:20:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:20:19 [detection_layer] {"stage_name":"detection_layer","events_processed":602,"events_dropped":0,"avg_latency_ms":18.09388827569041,"throughput_eps":0,"last_update":"2026-03-21T16:20:14.20992376Z"} +2026/03/21 16:20:19 [transform_engine] {"stage_name":"transform_engine","events_processed":602,"events_dropped":0,"avg_latency_ms":710.5590513857529,"throughput_eps":0,"last_update":"2026-03-21T16:20:14.209934572Z"} +2026/03/21 16:20:19 [log_collector] {"stage_name":"log_collector","events_processed":28789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5757.8,"last_update":"2026-03-21T16:20:14.068769231Z"} +2026/03/21 16:20:19 [metric_collector] {"stage_name":"metric_collector","events_processed":18084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3616.8,"last_update":"2026-03-21T16:20:14.069286472Z"} +2026/03/21 16:20:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:20:14.077681203Z"} +2026/03/21 16:20:19 ───────────────────────────────────────────────── +2026/03/21 16:20:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:20:24 [log_collector] {"stage_name":"log_collector","events_processed":28792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5758.4,"last_update":"2026-03-21T16:20:19.068613665Z"} +2026/03/21 16:20:24 [metric_collector] {"stage_name":"metric_collector","events_processed":18089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3617.8,"last_update":"2026-03-21T16:20:19.068769884Z"} +2026/03/21 16:20:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:20:19.078625255Z"} +2026/03/21 16:20:24 [detection_layer] {"stage_name":"detection_layer","events_processed":602,"events_dropped":0,"avg_latency_ms":18.09388827569041,"throughput_eps":0,"last_update":"2026-03-21T16:20:19.210812316Z"} +2026/03/21 16:20:24 [transform_engine] {"stage_name":"transform_engine","events_processed":603,"events_dropped":0,"avg_latency_ms":593.2614875086024,"throughput_eps":0,"last_update":"2026-03-21T16:20:19.333787399Z"} +2026/03/21 16:20:24 ───────────────────────────────────────────────── +2026/03/21 16:20:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:20:29 [log_collector] {"stage_name":"log_collector","events_processed":28803,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5760.6,"last_update":"2026-03-21T16:20:29.068174723Z"} +2026/03/21 16:20:29 [metric_collector] {"stage_name":"metric_collector","events_processed":18094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3618.8,"last_update":"2026-03-21T16:20:24.069176444Z"} +2026/03/21 16:20:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:20:24.077668273Z"} +2026/03/21 16:20:29 [detection_layer] {"stage_name":"detection_layer","events_processed":603,"events_dropped":0,"avg_latency_ms":18.578972620552328,"throughput_eps":0,"last_update":"2026-03-21T16:20:24.209848831Z"} +2026/03/21 16:20:29 [transform_engine] {"stage_name":"transform_engine","events_processed":603,"events_dropped":0,"avg_latency_ms":593.2614875086024,"throughput_eps":0,"last_update":"2026-03-21T16:20:24.209799105Z"} +2026/03/21 16:20:29 ───────────────────────────────────────────────── +2026/03/21 16:20:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:20:34 [detection_layer] {"stage_name":"detection_layer","events_processed":603,"events_dropped":0,"avg_latency_ms":18.578972620552328,"throughput_eps":0,"last_update":"2026-03-21T16:20:29.210615046Z"} +2026/03/21 16:20:34 [transform_engine] {"stage_name":"transform_engine","events_processed":603,"events_dropped":0,"avg_latency_ms":593.2614875086024,"throughput_eps":0,"last_update":"2026-03-21T16:20:29.210539662Z"} +2026/03/21 16:20:34 [log_collector] {"stage_name":"log_collector","events_processed":28817,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5763.4,"last_update":"2026-03-21T16:20:34.068781042Z"} +2026/03/21 16:20:34 [metric_collector] {"stage_name":"metric_collector","events_processed":18104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3620.8,"last_update":"2026-03-21T16:20:34.068769019Z"} +2026/03/21 16:20:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:20:29.075254256Z"} +2026/03/21 16:20:34 ───────────────────────────────────────────────── +2026/03/21 16:20:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:20:39 [metric_collector] {"stage_name":"metric_collector","events_processed":18104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3620.8,"last_update":"2026-03-21T16:20:34.068769019Z"} +2026/03/21 16:20:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:20:34.075675931Z"} +2026/03/21 16:20:39 [detection_layer] {"stage_name":"detection_layer","events_processed":603,"events_dropped":0,"avg_latency_ms":18.578972620552328,"throughput_eps":0,"last_update":"2026-03-21T16:20:34.209930842Z"} +2026/03/21 16:20:39 [transform_engine] {"stage_name":"transform_engine","events_processed":603,"events_dropped":0,"avg_latency_ms":593.2614875086024,"throughput_eps":0,"last_update":"2026-03-21T16:20:34.209943506Z"} +2026/03/21 16:20:39 [log_collector] {"stage_name":"log_collector","events_processed":28817,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5763.4,"last_update":"2026-03-21T16:20:34.068781042Z"} +2026/03/21 16:20:39 ───────────────────────────────────────────────── +2026/03/21 16:20:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:20:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7246,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:20:39.076360768Z"} +2026/03/21 16:20:44 [detection_layer] {"stage_name":"detection_layer","events_processed":603,"events_dropped":0,"avg_latency_ms":18.578972620552328,"throughput_eps":0,"last_update":"2026-03-21T16:20:39.210668109Z"} +2026/03/21 16:20:44 [transform_engine] {"stage_name":"transform_engine","events_processed":603,"events_dropped":0,"avg_latency_ms":593.2614875086024,"throughput_eps":0,"last_update":"2026-03-21T16:20:39.210680463Z"} +2026/03/21 16:20:44 [log_collector] {"stage_name":"log_collector","events_processed":28819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5763.8,"last_update":"2026-03-21T16:20:44.068076341Z"} +2026/03/21 16:20:44 [metric_collector] {"stage_name":"metric_collector","events_processed":18109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3621.8,"last_update":"2026-03-21T16:20:39.068284497Z"} +2026/03/21 16:20:44 ───────────────────────────────────────────────── +2026/03/21 16:20:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:20:49 [metric_collector] {"stage_name":"metric_collector","events_processed":18114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3622.8,"last_update":"2026-03-21T16:20:44.068525862Z"} +2026/03/21 16:20:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:20:44.074806864Z"} +2026/03/21 16:20:49 [detection_layer] {"stage_name":"detection_layer","events_processed":603,"events_dropped":0,"avg_latency_ms":18.578972620552328,"throughput_eps":0,"last_update":"2026-03-21T16:20:44.210098491Z"} +2026/03/21 16:20:49 [transform_engine] {"stage_name":"transform_engine","events_processed":603,"events_dropped":0,"avg_latency_ms":593.2614875086024,"throughput_eps":0,"last_update":"2026-03-21T16:20:44.210112297Z"} +2026/03/21 16:20:49 [log_collector] {"stage_name":"log_collector","events_processed":28819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5763.8,"last_update":"2026-03-21T16:20:44.068076341Z"} +2026/03/21 16:20:49 ───────────────────────────────────────────────── +2026/03/21 16:20:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:20:54 [transform_engine] {"stage_name":"transform_engine","events_processed":604,"events_dropped":0,"avg_latency_ms":496.73905160688196,"throughput_eps":0,"last_update":"2026-03-21T16:20:49.32042279Z"} +2026/03/21 16:20:54 [log_collector] {"stage_name":"log_collector","events_processed":28819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5763.8,"last_update":"2026-03-21T16:20:49.068659983Z"} +2026/03/21 16:20:54 [metric_collector] {"stage_name":"metric_collector","events_processed":18119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3623.8,"last_update":"2026-03-21T16:20:49.068880264Z"} +2026/03/21 16:20:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:20:49.075585991Z"} +2026/03/21 16:20:54 [detection_layer] {"stage_name":"detection_layer","events_processed":603,"events_dropped":0,"avg_latency_ms":18.578972620552328,"throughput_eps":0,"last_update":"2026-03-21T16:20:49.210865103Z"} +2026/03/21 16:20:54 ───────────────────────────────────────────────── +2026/03/21 16:20:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:20:59 [metric_collector] {"stage_name":"metric_collector","events_processed":18124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3624.8,"last_update":"2026-03-21T16:20:54.069108201Z"} +2026/03/21 16:20:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:20:54.075374756Z"} +2026/03/21 16:20:59 [detection_layer] {"stage_name":"detection_layer","events_processed":604,"events_dropped":0,"avg_latency_ms":17.783270296441863,"throughput_eps":0,"last_update":"2026-03-21T16:20:54.21059183Z"} +2026/03/21 16:20:59 [transform_engine] {"stage_name":"transform_engine","events_processed":604,"events_dropped":0,"avg_latency_ms":496.73905160688196,"throughput_eps":0,"last_update":"2026-03-21T16:20:54.210622188Z"} +2026/03/21 16:20:59 [log_collector] {"stage_name":"log_collector","events_processed":28819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5763.8,"last_update":"2026-03-21T16:20:54.068710309Z"} +2026/03/21 16:20:59 ───────────────────────────────────────────────── +2026/03/21 16:21:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:21:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:20:59.074943411Z"} +2026/03/21 16:21:04 [detection_layer] {"stage_name":"detection_layer","events_processed":604,"events_dropped":0,"avg_latency_ms":17.783270296441863,"throughput_eps":0,"last_update":"2026-03-21T16:20:59.210226791Z"} +2026/03/21 16:21:04 [transform_engine] {"stage_name":"transform_engine","events_processed":604,"events_dropped":0,"avg_latency_ms":496.73905160688196,"throughput_eps":0,"last_update":"2026-03-21T16:20:59.21020032Z"} +2026/03/21 16:21:04 [log_collector] {"stage_name":"log_collector","events_processed":28819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5763.8,"last_update":"2026-03-21T16:21:04.068219598Z"} +2026/03/21 16:21:04 [metric_collector] {"stage_name":"metric_collector","events_processed":18129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3625.8,"last_update":"2026-03-21T16:20:59.068897819Z"} +2026/03/21 16:21:04 ───────────────────────────────────────────────── +2026/03/21 16:21:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:21:09 [transform_engine] {"stage_name":"transform_engine","events_processed":604,"events_dropped":0,"avg_latency_ms":496.73905160688196,"throughput_eps":0,"last_update":"2026-03-21T16:21:04.209811393Z"} +2026/03/21 16:21:09 [log_collector] {"stage_name":"log_collector","events_processed":28819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5763.8,"last_update":"2026-03-21T16:21:04.068219598Z"} +2026/03/21 16:21:09 [metric_collector] {"stage_name":"metric_collector","events_processed":18134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3626.8,"last_update":"2026-03-21T16:21:04.068876997Z"} +2026/03/21 16:21:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:21:04.07856642Z"} +2026/03/21 16:21:09 [detection_layer] {"stage_name":"detection_layer","events_processed":604,"events_dropped":0,"avg_latency_ms":17.783270296441863,"throughput_eps":0,"last_update":"2026-03-21T16:21:04.209854505Z"} +2026/03/21 16:21:09 ───────────────────────────────────────────────── +2026/03/21 16:21:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:21:14 [metric_collector] {"stage_name":"metric_collector","events_processed":18138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3627.6,"last_update":"2026-03-21T16:21:09.068827232Z"} +2026/03/21 16:21:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:21:09.078744541Z"} +2026/03/21 16:21:14 [detection_layer] {"stage_name":"detection_layer","events_processed":604,"events_dropped":0,"avg_latency_ms":17.783270296441863,"throughput_eps":0,"last_update":"2026-03-21T16:21:09.210022167Z"} +2026/03/21 16:21:14 [transform_engine] {"stage_name":"transform_engine","events_processed":604,"events_dropped":0,"avg_latency_ms":496.73905160688196,"throughput_eps":0,"last_update":"2026-03-21T16:21:09.210001838Z"} +2026/03/21 16:21:14 [log_collector] {"stage_name":"log_collector","events_processed":28819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5763.8,"last_update":"2026-03-21T16:21:09.068820599Z"} +2026/03/21 16:21:14 ───────────────────────────────────────────────── +2026/03/21 16:21:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:21:19 [log_collector] {"stage_name":"log_collector","events_processed":28819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5763.8,"last_update":"2026-03-21T16:21:14.069023035Z"} +2026/03/21 16:21:19 [metric_collector] {"stage_name":"metric_collector","events_processed":18144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3628.8,"last_update":"2026-03-21T16:21:14.069581355Z"} +2026/03/21 16:21:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:21:14.077678888Z"} +2026/03/21 16:21:19 [detection_layer] {"stage_name":"detection_layer","events_processed":604,"events_dropped":0,"avg_latency_ms":17.783270296441863,"throughput_eps":0,"last_update":"2026-03-21T16:21:14.209937312Z"} +2026/03/21 16:21:19 [transform_engine] {"stage_name":"transform_engine","events_processed":604,"events_dropped":0,"avg_latency_ms":496.73905160688196,"throughput_eps":0,"last_update":"2026-03-21T16:21:14.209901423Z"} +2026/03/21 16:21:19 ───────────────────────────────────────────────── +2026/03/21 16:21:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:21:24 [log_collector] {"stage_name":"log_collector","events_processed":28819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5763.8,"last_update":"2026-03-21T16:21:19.068112449Z"} +2026/03/21 16:21:24 [metric_collector] {"stage_name":"metric_collector","events_processed":18148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3629.6,"last_update":"2026-03-21T16:21:19.068009591Z"} +2026/03/21 16:21:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:21:19.078503344Z"} +2026/03/21 16:21:24 [detection_layer] {"stage_name":"detection_layer","events_processed":604,"events_dropped":0,"avg_latency_ms":17.783270296441863,"throughput_eps":0,"last_update":"2026-03-21T16:21:19.210732092Z"} +2026/03/21 16:21:24 [transform_engine] {"stage_name":"transform_engine","events_processed":605,"events_dropped":0,"avg_latency_ms":411.1949656855056,"throughput_eps":0,"last_update":"2026-03-21T16:21:19.278651378Z"} +2026/03/21 16:21:24 ───────────────────────────────────────────────── +2026/03/21 16:21:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:21:29 [detection_layer] {"stage_name":"detection_layer","events_processed":605,"events_dropped":0,"avg_latency_ms":18.98083803715349,"throughput_eps":0,"last_update":"2026-03-21T16:21:24.210798704Z"} +2026/03/21 16:21:29 [transform_engine] {"stage_name":"transform_engine","events_processed":605,"events_dropped":0,"avg_latency_ms":411.1949656855056,"throughput_eps":0,"last_update":"2026-03-21T16:21:24.210807842Z"} +2026/03/21 16:21:29 [log_collector] {"stage_name":"log_collector","events_processed":28819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5763.8,"last_update":"2026-03-21T16:21:24.068108607Z"} +2026/03/21 16:21:29 [metric_collector] {"stage_name":"metric_collector","events_processed":18154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3630.8,"last_update":"2026-03-21T16:21:24.069051944Z"} +2026/03/21 16:21:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:21:24.077372865Z"} +2026/03/21 16:21:29 ───────────────────────────────────────────────── +2026/03/21 16:21:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:21:34 [log_collector] {"stage_name":"log_collector","events_processed":28819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5763.8,"last_update":"2026-03-21T16:21:34.068263606Z"} +2026/03/21 16:21:34 [metric_collector] {"stage_name":"metric_collector","events_processed":18158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3631.6,"last_update":"2026-03-21T16:21:29.068807372Z"} +2026/03/21 16:21:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:21:29.078733067Z"} +2026/03/21 16:21:34 [detection_layer] {"stage_name":"detection_layer","events_processed":605,"events_dropped":0,"avg_latency_ms":18.98083803715349,"throughput_eps":0,"last_update":"2026-03-21T16:21:29.210083039Z"} +2026/03/21 16:21:34 [transform_engine] {"stage_name":"transform_engine","events_processed":605,"events_dropped":0,"avg_latency_ms":411.1949656855056,"throughput_eps":0,"last_update":"2026-03-21T16:21:29.21009942Z"} +2026/03/21 16:21:34 ───────────────────────────────────────────────── +Saved state: 18 clusters, 28820 messages, reason: none +2026/03/21 16:21:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:21:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:21:34.077444565Z"} +2026/03/21 16:21:39 [detection_layer] {"stage_name":"detection_layer","events_processed":605,"events_dropped":0,"avg_latency_ms":18.98083803715349,"throughput_eps":0,"last_update":"2026-03-21T16:21:34.210736126Z"} +2026/03/21 16:21:39 [transform_engine] {"stage_name":"transform_engine","events_processed":605,"events_dropped":0,"avg_latency_ms":411.1949656855056,"throughput_eps":0,"last_update":"2026-03-21T16:21:34.210719294Z"} +2026/03/21 16:21:39 [log_collector] {"stage_name":"log_collector","events_processed":28819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5763.8,"last_update":"2026-03-21T16:21:34.068263606Z"} +2026/03/21 16:21:39 [metric_collector] {"stage_name":"metric_collector","events_processed":18164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3632.8,"last_update":"2026-03-21T16:21:34.068652482Z"} +2026/03/21 16:21:39 ───────────────────────────────────────────────── +2026/03/21 16:21:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:21:44 [log_collector] {"stage_name":"log_collector","events_processed":28832,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5766.4,"last_update":"2026-03-21T16:21:39.068101421Z"} +2026/03/21 16:21:44 [metric_collector] {"stage_name":"metric_collector","events_processed":18169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3633.8,"last_update":"2026-03-21T16:21:39.068569517Z"} +2026/03/21 16:21:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:21:39.074667539Z"} +2026/03/21 16:21:44 [detection_layer] {"stage_name":"detection_layer","events_processed":605,"events_dropped":0,"avg_latency_ms":18.98083803715349,"throughput_eps":0,"last_update":"2026-03-21T16:21:39.210068102Z"} +2026/03/21 16:21:44 [transform_engine] {"stage_name":"transform_engine","events_processed":605,"events_dropped":0,"avg_latency_ms":411.1949656855056,"throughput_eps":0,"last_update":"2026-03-21T16:21:39.210105202Z"} +2026/03/21 16:21:44 ───────────────────────────────────────────────── +2026/03/21 16:21:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:21:49 [detection_layer] {"stage_name":"detection_layer","events_processed":605,"events_dropped":0,"avg_latency_ms":18.98083803715349,"throughput_eps":0,"last_update":"2026-03-21T16:21:44.211020279Z"} +2026/03/21 16:21:49 [transform_engine] {"stage_name":"transform_engine","events_processed":605,"events_dropped":0,"avg_latency_ms":411.1949656855056,"throughput_eps":0,"last_update":"2026-03-21T16:21:44.209688499Z"} +2026/03/21 16:21:49 [log_collector] {"stage_name":"log_collector","events_processed":28833,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5766.6,"last_update":"2026-03-21T16:21:44.068827786Z"} +2026/03/21 16:21:49 [metric_collector] {"stage_name":"metric_collector","events_processed":18174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3634.8,"last_update":"2026-03-21T16:21:44.069573325Z"} +2026/03/21 16:21:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:21:44.077441278Z"} +2026/03/21 16:21:49 ───────────────────────────────────────────────── +2026/03/21 16:21:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:21:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:21:49.078495975Z"} +2026/03/21 16:21:54 [detection_layer] {"stage_name":"detection_layer","events_processed":605,"events_dropped":0,"avg_latency_ms":18.98083803715349,"throughput_eps":0,"last_update":"2026-03-21T16:21:49.210884495Z"} +2026/03/21 16:21:54 [transform_engine] {"stage_name":"transform_engine","events_processed":606,"events_dropped":0,"avg_latency_ms":352.50729694840453,"throughput_eps":0,"last_update":"2026-03-21T16:21:49.327415588Z"} +2026/03/21 16:21:54 [log_collector] {"stage_name":"log_collector","events_processed":28833,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5766.6,"last_update":"2026-03-21T16:21:49.068901113Z"} +2026/03/21 16:21:54 [metric_collector] {"stage_name":"metric_collector","events_processed":18179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3635.8,"last_update":"2026-03-21T16:21:49.069219353Z"} +2026/03/21 16:21:54 ───────────────────────────────────────────────── +2026/03/21 16:21:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:21:59 [log_collector] {"stage_name":"log_collector","events_processed":28833,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5766.6,"last_update":"2026-03-21T16:21:54.068875218Z"} +2026/03/21 16:21:59 [metric_collector] {"stage_name":"metric_collector","events_processed":18184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3636.8,"last_update":"2026-03-21T16:21:54.069819768Z"} +2026/03/21 16:21:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7276,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:21:54.078286598Z"} +2026/03/21 16:21:59 [detection_layer] {"stage_name":"detection_layer","events_processed":606,"events_dropped":0,"avg_latency_ms":19.374725429722794,"throughput_eps":0,"last_update":"2026-03-21T16:21:54.210673876Z"} +2026/03/21 16:21:59 [transform_engine] {"stage_name":"transform_engine","events_processed":606,"events_dropped":0,"avg_latency_ms":352.50729694840453,"throughput_eps":0,"last_update":"2026-03-21T16:21:54.210685809Z"} +2026/03/21 16:21:59 ───────────────────────────────────────────────── +2026/03/21 16:22:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:22:04 [log_collector] {"stage_name":"log_collector","events_processed":28833,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5766.6,"last_update":"2026-03-21T16:21:59.068749444Z"} +2026/03/21 16:22:04 [metric_collector] {"stage_name":"metric_collector","events_processed":18189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3637.8,"last_update":"2026-03-21T16:21:59.069100897Z"} +2026/03/21 16:22:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:21:59.077420856Z"} +2026/03/21 16:22:04 [detection_layer] {"stage_name":"detection_layer","events_processed":606,"events_dropped":0,"avg_latency_ms":19.374725429722794,"throughput_eps":0,"last_update":"2026-03-21T16:21:59.21073039Z"} +2026/03/21 16:22:04 [transform_engine] {"stage_name":"transform_engine","events_processed":606,"events_dropped":0,"avg_latency_ms":352.50729694840453,"throughput_eps":0,"last_update":"2026-03-21T16:21:59.209637326Z"} +2026/03/21 16:22:04 ───────────────────────────────────────────────── +2026/03/21 16:22:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:22:09 [log_collector] {"stage_name":"log_collector","events_processed":28833,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5766.6,"last_update":"2026-03-21T16:22:04.06811351Z"} +2026/03/21 16:22:09 [metric_collector] {"stage_name":"metric_collector","events_processed":18194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3638.8,"last_update":"2026-03-21T16:22:04.068722306Z"} +2026/03/21 16:22:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:22:04.077769118Z"} +2026/03/21 16:22:09 [detection_layer] {"stage_name":"detection_layer","events_processed":606,"events_dropped":0,"avg_latency_ms":19.374725429722794,"throughput_eps":0,"last_update":"2026-03-21T16:22:04.210022559Z"} +2026/03/21 16:22:09 [transform_engine] {"stage_name":"transform_engine","events_processed":606,"events_dropped":0,"avg_latency_ms":352.50729694840453,"throughput_eps":0,"last_update":"2026-03-21T16:22:04.210030584Z"} +2026/03/21 16:22:09 ───────────────────────────────────────────────── +2026/03/21 16:22:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:22:14 [metric_collector] {"stage_name":"metric_collector","events_processed":18199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3639.8,"last_update":"2026-03-21T16:22:09.06894561Z"} +2026/03/21 16:22:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:22:09.078426522Z"} +2026/03/21 16:22:14 [detection_layer] {"stage_name":"detection_layer","events_processed":606,"events_dropped":0,"avg_latency_ms":19.374725429722794,"throughput_eps":0,"last_update":"2026-03-21T16:22:09.210635007Z"} +2026/03/21 16:22:14 [transform_engine] {"stage_name":"transform_engine","events_processed":606,"events_dropped":0,"avg_latency_ms":352.50729694840453,"throughput_eps":0,"last_update":"2026-03-21T16:22:09.210685334Z"} +2026/03/21 16:22:14 [log_collector] {"stage_name":"log_collector","events_processed":28833,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5766.6,"last_update":"2026-03-21T16:22:09.068821011Z"} +2026/03/21 16:22:14 ───────────────────────────────────────────────── +2026/03/21 16:22:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:22:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:22:14.077918276Z"} +2026/03/21 16:22:19 [detection_layer] {"stage_name":"detection_layer","events_processed":606,"events_dropped":0,"avg_latency_ms":19.374725429722794,"throughput_eps":0,"last_update":"2026-03-21T16:22:14.210178108Z"} +2026/03/21 16:22:19 [transform_engine] {"stage_name":"transform_engine","events_processed":606,"events_dropped":0,"avg_latency_ms":352.50729694840453,"throughput_eps":0,"last_update":"2026-03-21T16:22:14.210236952Z"} +2026/03/21 16:22:19 [log_collector] {"stage_name":"log_collector","events_processed":28833,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5766.6,"last_update":"2026-03-21T16:22:14.068594153Z"} +2026/03/21 16:22:19 [metric_collector] {"stage_name":"metric_collector","events_processed":18204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3640.8,"last_update":"2026-03-21T16:22:14.069013407Z"} +2026/03/21 16:22:19 ───────────────────────────────────────────────── +2026/03/21 16:22:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:22:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7286,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:22:19.078294393Z"} +2026/03/21 16:22:24 [detection_layer] {"stage_name":"detection_layer","events_processed":606,"events_dropped":0,"avg_latency_ms":19.374725429722794,"throughput_eps":0,"last_update":"2026-03-21T16:22:19.21076522Z"} +2026/03/21 16:22:24 [transform_engine] {"stage_name":"transform_engine","events_processed":607,"events_dropped":0,"avg_latency_ms":298.4919123587236,"throughput_eps":0,"last_update":"2026-03-21T16:22:19.293091335Z"} +2026/03/21 16:22:24 [log_collector] {"stage_name":"log_collector","events_processed":28833,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5766.6,"last_update":"2026-03-21T16:22:19.068791508Z"} +2026/03/21 16:22:24 [metric_collector] {"stage_name":"metric_collector","events_processed":18209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3641.8,"last_update":"2026-03-21T16:22:19.069186024Z"} +2026/03/21 16:22:24 ───────────────────────────────────────────────── +2026/03/21 16:22:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:22:29 [log_collector] {"stage_name":"log_collector","events_processed":28833,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5766.6,"last_update":"2026-03-21T16:22:24.068756729Z"} +2026/03/21 16:22:29 [metric_collector] {"stage_name":"metric_collector","events_processed":18214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3642.8,"last_update":"2026-03-21T16:22:24.069252569Z"} +2026/03/21 16:22:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:22:24.077295927Z"} +2026/03/21 16:22:29 [detection_layer] {"stage_name":"detection_layer","events_processed":607,"events_dropped":0,"avg_latency_ms":19.944833743778236,"throughput_eps":0,"last_update":"2026-03-21T16:22:24.210676849Z"} +2026/03/21 16:22:29 [transform_engine] {"stage_name":"transform_engine","events_processed":607,"events_dropped":0,"avg_latency_ms":298.4919123587236,"throughput_eps":0,"last_update":"2026-03-21T16:22:24.210600313Z"} +2026/03/21 16:22:29 ───────────────────────────────────────────────── +2026/03/21 16:22:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:22:34 [detection_layer] {"stage_name":"detection_layer","events_processed":607,"events_dropped":0,"avg_latency_ms":19.944833743778236,"throughput_eps":0,"last_update":"2026-03-21T16:22:29.209868958Z"} +2026/03/21 16:22:34 [transform_engine] {"stage_name":"transform_engine","events_processed":607,"events_dropped":0,"avg_latency_ms":298.4919123587236,"throughput_eps":0,"last_update":"2026-03-21T16:22:29.20988037Z"} +2026/03/21 16:22:34 [log_collector] {"stage_name":"log_collector","events_processed":28833,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5766.6,"last_update":"2026-03-21T16:22:29.068832422Z"} +2026/03/21 16:22:34 [metric_collector] {"stage_name":"metric_collector","events_processed":18219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3643.8,"last_update":"2026-03-21T16:22:29.069611975Z"} +2026/03/21 16:22:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:22:29.077736259Z"} +2026/03/21 16:22:34 ───────────────────────────────────────────────── +2026/03/21 16:22:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:22:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:22:34.077430161Z"} +2026/03/21 16:22:39 [detection_layer] {"stage_name":"detection_layer","events_processed":607,"events_dropped":0,"avg_latency_ms":19.944833743778236,"throughput_eps":0,"last_update":"2026-03-21T16:22:34.210577693Z"} +2026/03/21 16:22:39 [transform_engine] {"stage_name":"transform_engine","events_processed":607,"events_dropped":0,"avg_latency_ms":298.4919123587236,"throughput_eps":0,"last_update":"2026-03-21T16:22:34.210601849Z"} +2026/03/21 16:22:39 [log_collector] {"stage_name":"log_collector","events_processed":28833,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5766.6,"last_update":"2026-03-21T16:22:34.068820738Z"} +2026/03/21 16:22:39 [metric_collector] {"stage_name":"metric_collector","events_processed":18224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3644.8,"last_update":"2026-03-21T16:22:34.069064595Z"} +2026/03/21 16:22:39 ───────────────────────────────────────────────── +2026/03/21 16:22:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:22:44 [log_collector] {"stage_name":"log_collector","events_processed":28833,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5766.6,"last_update":"2026-03-21T16:22:39.068973227Z"} +2026/03/21 16:22:44 [metric_collector] {"stage_name":"metric_collector","events_processed":18229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3645.8,"last_update":"2026-03-21T16:22:39.069623504Z"} +2026/03/21 16:22:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:22:39.078632312Z"} +2026/03/21 16:22:44 [detection_layer] {"stage_name":"detection_layer","events_processed":607,"events_dropped":0,"avg_latency_ms":19.944833743778236,"throughput_eps":0,"last_update":"2026-03-21T16:22:39.209912558Z"} +2026/03/21 16:22:44 [transform_engine] {"stage_name":"transform_engine","events_processed":607,"events_dropped":0,"avg_latency_ms":298.4919123587236,"throughput_eps":0,"last_update":"2026-03-21T16:22:39.209792638Z"} +2026/03/21 16:22:44 ───────────────────────────────────────────────── +Saved state: 18 clusters, 28834 messages, reason: none +2026/03/21 16:22:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:22:49 [metric_collector] {"stage_name":"metric_collector","events_processed":18234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3646.8,"last_update":"2026-03-21T16:22:44.069268544Z"} +2026/03/21 16:22:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:22:44.078568029Z"} +2026/03/21 16:22:49 [detection_layer] {"stage_name":"detection_layer","events_processed":607,"events_dropped":0,"avg_latency_ms":19.944833743778236,"throughput_eps":0,"last_update":"2026-03-21T16:22:44.209865126Z"} +2026/03/21 16:22:49 [transform_engine] {"stage_name":"transform_engine","events_processed":607,"events_dropped":0,"avg_latency_ms":298.4919123587236,"throughput_eps":0,"last_update":"2026-03-21T16:22:44.209802818Z"} +2026/03/21 16:22:49 [log_collector] {"stage_name":"log_collector","events_processed":28833,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5766.6,"last_update":"2026-03-21T16:22:44.068879388Z"} +2026/03/21 16:22:49 ───────────────────────────────────────────────── +2026/03/21 16:22:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:22:54 [log_collector] {"stage_name":"log_collector","events_processed":28838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5767.6,"last_update":"2026-03-21T16:22:49.068381456Z"} +2026/03/21 16:22:54 [metric_collector] {"stage_name":"metric_collector","events_processed":18239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3647.8,"last_update":"2026-03-21T16:22:49.068851536Z"} +2026/03/21 16:22:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:22:49.076144528Z"} +2026/03/21 16:22:54 [detection_layer] {"stage_name":"detection_layer","events_processed":607,"events_dropped":0,"avg_latency_ms":19.944833743778236,"throughput_eps":0,"last_update":"2026-03-21T16:22:49.210880012Z"} +2026/03/21 16:22:54 [transform_engine] {"stage_name":"transform_engine","events_processed":608,"events_dropped":0,"avg_latency_ms":260.51231088697887,"throughput_eps":0,"last_update":"2026-03-21T16:22:49.318274748Z"} +2026/03/21 16:22:54 ───────────────────────────────────────────────── +2026/03/21 16:22:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:22:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:22:54.078394259Z"} +2026/03/21 16:22:59 [detection_layer] {"stage_name":"detection_layer","events_processed":608,"events_dropped":0,"avg_latency_ms":18.366023995022587,"throughput_eps":0,"last_update":"2026-03-21T16:22:54.21064903Z"} +2026/03/21 16:22:59 [transform_engine] {"stage_name":"transform_engine","events_processed":608,"events_dropped":0,"avg_latency_ms":260.51231088697887,"throughput_eps":0,"last_update":"2026-03-21T16:22:54.21063276Z"} +2026/03/21 16:22:59 [log_collector] {"stage_name":"log_collector","events_processed":28838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5767.6,"last_update":"2026-03-21T16:22:54.068487631Z"} +2026/03/21 16:22:59 [metric_collector] {"stage_name":"metric_collector","events_processed":18244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3648.8,"last_update":"2026-03-21T16:22:54.069797941Z"} +2026/03/21 16:22:59 ───────────────────────────────────────────────── +2026/03/21 16:23:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:23:04 [log_collector] {"stage_name":"log_collector","events_processed":28838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5767.6,"last_update":"2026-03-21T16:23:04.068071522Z"} +2026/03/21 16:23:04 [metric_collector] {"stage_name":"metric_collector","events_processed":18249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3649.8,"last_update":"2026-03-21T16:22:59.068760997Z"} +2026/03/21 16:23:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:22:59.076212221Z"} +2026/03/21 16:23:04 [detection_layer] {"stage_name":"detection_layer","events_processed":608,"events_dropped":0,"avg_latency_ms":18.366023995022587,"throughput_eps":0,"last_update":"2026-03-21T16:22:59.210331525Z"} +2026/03/21 16:23:04 [transform_engine] {"stage_name":"transform_engine","events_processed":608,"events_dropped":0,"avg_latency_ms":260.51231088697887,"throughput_eps":0,"last_update":"2026-03-21T16:22:59.210358436Z"} +2026/03/21 16:23:04 ───────────────────────────────────────────────── +2026/03/21 16:23:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:23:09 [detection_layer] {"stage_name":"detection_layer","events_processed":608,"events_dropped":0,"avg_latency_ms":18.366023995022587,"throughput_eps":0,"last_update":"2026-03-21T16:23:04.210776362Z"} +2026/03/21 16:23:09 [transform_engine] {"stage_name":"transform_engine","events_processed":608,"events_dropped":0,"avg_latency_ms":260.51231088697887,"throughput_eps":0,"last_update":"2026-03-21T16:23:04.209670985Z"} +2026/03/21 16:23:09 [log_collector] {"stage_name":"log_collector","events_processed":28838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5767.6,"last_update":"2026-03-21T16:23:04.068071522Z"} +2026/03/21 16:23:09 [metric_collector] {"stage_name":"metric_collector","events_processed":18254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3650.8,"last_update":"2026-03-21T16:23:04.068715215Z"} +2026/03/21 16:23:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:23:04.076538102Z"} +2026/03/21 16:23:09 ───────────────────────────────────────────────── +2026/03/21 16:23:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:23:14 [log_collector] {"stage_name":"log_collector","events_processed":28838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5767.6,"last_update":"2026-03-21T16:23:09.068873214Z"} +2026/03/21 16:23:14 [metric_collector] {"stage_name":"metric_collector","events_processed":18259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3651.8,"last_update":"2026-03-21T16:23:09.068866711Z"} +2026/03/21 16:23:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:23:09.075002145Z"} +2026/03/21 16:23:14 [detection_layer] {"stage_name":"detection_layer","events_processed":608,"events_dropped":0,"avg_latency_ms":18.366023995022587,"throughput_eps":0,"last_update":"2026-03-21T16:23:09.210264428Z"} +2026/03/21 16:23:14 [transform_engine] {"stage_name":"transform_engine","events_processed":608,"events_dropped":0,"avg_latency_ms":260.51231088697887,"throughput_eps":0,"last_update":"2026-03-21T16:23:09.210280538Z"} +2026/03/21 16:23:14 ───────────────────────────────────────────────── +2026/03/21 16:23:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:23:19 [log_collector] {"stage_name":"log_collector","events_processed":28838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5767.6,"last_update":"2026-03-21T16:23:19.068208998Z"} +2026/03/21 16:23:19 [metric_collector] {"stage_name":"metric_collector","events_processed":18264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3652.8,"last_update":"2026-03-21T16:23:14.069273659Z"} +2026/03/21 16:23:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:23:14.078609764Z"} +2026/03/21 16:23:19 [detection_layer] {"stage_name":"detection_layer","events_processed":608,"events_dropped":0,"avg_latency_ms":18.366023995022587,"throughput_eps":0,"last_update":"2026-03-21T16:23:14.21086761Z"} +2026/03/21 16:23:19 [transform_engine] {"stage_name":"transform_engine","events_processed":608,"events_dropped":0,"avg_latency_ms":260.51231088697887,"throughput_eps":0,"last_update":"2026-03-21T16:23:14.209784916Z"} +2026/03/21 16:23:19 ───────────────────────────────────────────────── +2026/03/21 16:23:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:23:24 [log_collector] {"stage_name":"log_collector","events_processed":28838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5767.6,"last_update":"2026-03-21T16:23:19.068208998Z"} +2026/03/21 16:23:24 [metric_collector] {"stage_name":"metric_collector","events_processed":18269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3653.8,"last_update":"2026-03-21T16:23:19.068477132Z"} +2026/03/21 16:23:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:23:19.075355038Z"} +2026/03/21 16:23:24 [detection_layer] {"stage_name":"detection_layer","events_processed":608,"events_dropped":0,"avg_latency_ms":18.366023995022587,"throughput_eps":0,"last_update":"2026-03-21T16:23:19.210486609Z"} +2026/03/21 16:23:24 [transform_engine] {"stage_name":"transform_engine","events_processed":609,"events_dropped":0,"avg_latency_ms":1069.695387309583,"throughput_eps":0,"last_update":"2026-03-21T16:23:23.516929392Z"} +2026/03/21 16:23:24 ───────────────────────────────────────────────── +2026/03/21 16:23:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:23:29 [detection_layer] {"stage_name":"detection_layer","events_processed":609,"events_dropped":0,"avg_latency_ms":17.51486319601807,"throughput_eps":0,"last_update":"2026-03-21T16:23:24.210258031Z"} +2026/03/21 16:23:29 [transform_engine] {"stage_name":"transform_engine","events_processed":609,"events_dropped":0,"avg_latency_ms":1069.695387309583,"throughput_eps":0,"last_update":"2026-03-21T16:23:24.210267779Z"} +2026/03/21 16:23:29 [log_collector] {"stage_name":"log_collector","events_processed":28838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5767.6,"last_update":"2026-03-21T16:23:24.068735166Z"} +2026/03/21 16:23:29 [metric_collector] {"stage_name":"metric_collector","events_processed":18274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3654.8,"last_update":"2026-03-21T16:23:24.068983431Z"} +2026/03/21 16:23:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:23:24.076019971Z"} +2026/03/21 16:23:29 ───────────────────────────────────────────────── +2026/03/21 16:23:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:23:34 [log_collector] {"stage_name":"log_collector","events_processed":28841,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5768.2,"last_update":"2026-03-21T16:23:29.06867378Z"} +2026/03/21 16:23:34 [metric_collector] {"stage_name":"metric_collector","events_processed":18279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3655.8,"last_update":"2026-03-21T16:23:29.068984605Z"} +2026/03/21 16:23:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:23:29.074993747Z"} +2026/03/21 16:23:34 [detection_layer] {"stage_name":"detection_layer","events_processed":609,"events_dropped":0,"avg_latency_ms":17.51486319601807,"throughput_eps":0,"last_update":"2026-03-21T16:23:29.210285525Z"} +2026/03/21 16:23:34 [transform_engine] {"stage_name":"transform_engine","events_processed":609,"events_dropped":0,"avg_latency_ms":1069.695387309583,"throughput_eps":0,"last_update":"2026-03-21T16:23:29.210300594Z"} +2026/03/21 16:23:34 ───────────────────────────────────────────────── +2026/03/21 16:23:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:23:39 [log_collector] {"stage_name":"log_collector","events_processed":28849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5769.8,"last_update":"2026-03-21T16:23:34.068900918Z"} +2026/03/21 16:23:39 [metric_collector] {"stage_name":"metric_collector","events_processed":18284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3656.8,"last_update":"2026-03-21T16:23:34.068894886Z"} +2026/03/21 16:23:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:23:34.079773476Z"} +2026/03/21 16:23:39 [detection_layer] {"stage_name":"detection_layer","events_processed":609,"events_dropped":0,"avg_latency_ms":17.51486319601807,"throughput_eps":0,"last_update":"2026-03-21T16:23:34.210022093Z"} +2026/03/21 16:23:39 [transform_engine] {"stage_name":"transform_engine","events_processed":609,"events_dropped":0,"avg_latency_ms":1069.695387309583,"throughput_eps":0,"last_update":"2026-03-21T16:23:34.210030649Z"} +2026/03/21 16:23:39 ───────────────────────────────────────────────── +2026/03/21 16:23:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:23:44 [detection_layer] {"stage_name":"detection_layer","events_processed":609,"events_dropped":0,"avg_latency_ms":17.51486319601807,"throughput_eps":0,"last_update":"2026-03-21T16:23:39.209931926Z"} +2026/03/21 16:23:44 [transform_engine] {"stage_name":"transform_engine","events_processed":609,"events_dropped":0,"avg_latency_ms":1069.695387309583,"throughput_eps":0,"last_update":"2026-03-21T16:23:39.209940712Z"} +2026/03/21 16:23:44 [log_collector] {"stage_name":"log_collector","events_processed":28963,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5792.6,"last_update":"2026-03-21T16:23:39.068364214Z"} +2026/03/21 16:23:44 [metric_collector] {"stage_name":"metric_collector","events_processed":18289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3657.8,"last_update":"2026-03-21T16:23:39.068394603Z"} +2026/03/21 16:23:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:23:39.074136072Z"} +2026/03/21 16:23:44 ───────────────────────────────────────────────── +2026/03/21 16:23:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:23:49 [log_collector] {"stage_name":"log_collector","events_processed":29156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5831.2,"last_update":"2026-03-21T16:23:44.0688228Z"} +2026/03/21 16:23:49 [metric_collector] {"stage_name":"metric_collector","events_processed":18294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3658.8,"last_update":"2026-03-21T16:23:44.069190154Z"} +2026/03/21 16:23:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7320,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:23:44.07829176Z"} +2026/03/21 16:23:49 [detection_layer] {"stage_name":"detection_layer","events_processed":609,"events_dropped":0,"avg_latency_ms":17.51486319601807,"throughput_eps":0,"last_update":"2026-03-21T16:23:44.210195377Z"} +2026/03/21 16:23:49 [transform_engine] {"stage_name":"transform_engine","events_processed":609,"events_dropped":0,"avg_latency_ms":1069.695387309583,"throughput_eps":0,"last_update":"2026-03-21T16:23:44.210232449Z"} +2026/03/21 16:23:49 ───────────────────────────────────────────────── +2026/03/21 16:23:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:23:54 [log_collector] {"stage_name":"log_collector","events_processed":29201,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5840.2,"last_update":"2026-03-21T16:23:49.068972698Z"} +2026/03/21 16:23:54 [metric_collector] {"stage_name":"metric_collector","events_processed":18299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3659.8,"last_update":"2026-03-21T16:23:49.069822035Z"} +2026/03/21 16:23:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:23:49.077782755Z"} +2026/03/21 16:23:54 [detection_layer] {"stage_name":"detection_layer","events_processed":609,"events_dropped":0,"avg_latency_ms":17.51486319601807,"throughput_eps":0,"last_update":"2026-03-21T16:23:49.210295809Z"} +2026/03/21 16:23:54 [transform_engine] {"stage_name":"transform_engine","events_processed":610,"events_dropped":0,"avg_latency_ms":879.9470780476665,"throughput_eps":0,"last_update":"2026-03-21T16:23:49.331001194Z"} +2026/03/21 16:23:54 ───────────────────────────────────────────────── +Saved state: 18 clusters, 29202 messages, reason: none +2026/03/21 16:23:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:23:59 [metric_collector] {"stage_name":"metric_collector","events_processed":18304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3660.8,"last_update":"2026-03-21T16:23:54.069288635Z"} +2026/03/21 16:23:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:23:54.077881336Z"} +2026/03/21 16:23:59 [detection_layer] {"stage_name":"detection_layer","events_processed":610,"events_dropped":0,"avg_latency_ms":17.829137156814458,"throughput_eps":0,"last_update":"2026-03-21T16:23:54.21018021Z"} +2026/03/21 16:23:59 [transform_engine] {"stage_name":"transform_engine","events_processed":610,"events_dropped":0,"avg_latency_ms":879.9470780476665,"throughput_eps":0,"last_update":"2026-03-21T16:23:54.210134593Z"} +2026/03/21 16:23:59 [log_collector] {"stage_name":"log_collector","events_processed":29201,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5840.2,"last_update":"2026-03-21T16:23:54.069000995Z"} +2026/03/21 16:23:59 ───────────────────────────────────────────────── +2026/03/21 16:24:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:24:04 [metric_collector] {"stage_name":"metric_collector","events_processed":18309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3661.8,"last_update":"2026-03-21T16:23:59.069560081Z"} +2026/03/21 16:24:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:23:59.074447663Z"} +2026/03/21 16:24:04 [detection_layer] {"stage_name":"detection_layer","events_processed":610,"events_dropped":0,"avg_latency_ms":17.829137156814458,"throughput_eps":0,"last_update":"2026-03-21T16:23:59.210682357Z"} +2026/03/21 16:24:04 [transform_engine] {"stage_name":"transform_engine","events_processed":610,"events_dropped":0,"avg_latency_ms":879.9470780476665,"throughput_eps":0,"last_update":"2026-03-21T16:23:59.210667317Z"} +2026/03/21 16:24:04 [log_collector] {"stage_name":"log_collector","events_processed":29204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5840.8,"last_update":"2026-03-21T16:23:59.06888669Z"} +2026/03/21 16:24:04 ───────────────────────────────────────────────── +2026/03/21 16:24:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:24:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:24:04.074879627Z"} +2026/03/21 16:24:09 [detection_layer] {"stage_name":"detection_layer","events_processed":610,"events_dropped":0,"avg_latency_ms":17.829137156814458,"throughput_eps":0,"last_update":"2026-03-21T16:24:04.210120727Z"} +2026/03/21 16:24:09 [transform_engine] {"stage_name":"transform_engine","events_processed":610,"events_dropped":0,"avg_latency_ms":879.9470780476665,"throughput_eps":0,"last_update":"2026-03-21T16:24:04.210134594Z"} +2026/03/21 16:24:09 [log_collector] {"stage_name":"log_collector","events_processed":29204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5840.8,"last_update":"2026-03-21T16:24:04.068592743Z"} +2026/03/21 16:24:09 [metric_collector] {"stage_name":"metric_collector","events_processed":18314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3662.8,"last_update":"2026-03-21T16:24:04.068799058Z"} +2026/03/21 16:24:09 ───────────────────────────────────────────────── +2026/03/21 16:24:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:24:14 [metric_collector] {"stage_name":"metric_collector","events_processed":18319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3663.8,"last_update":"2026-03-21T16:24:09.069274047Z"} +2026/03/21 16:24:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7330,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:24:09.078474101Z"} +2026/03/21 16:24:14 [detection_layer] {"stage_name":"detection_layer","events_processed":610,"events_dropped":0,"avg_latency_ms":17.829137156814458,"throughput_eps":0,"last_update":"2026-03-21T16:24:09.210861103Z"} +2026/03/21 16:24:14 [transform_engine] {"stage_name":"transform_engine","events_processed":610,"events_dropped":0,"avg_latency_ms":879.9470780476665,"throughput_eps":0,"last_update":"2026-03-21T16:24:09.209693907Z"} +2026/03/21 16:24:14 [log_collector] {"stage_name":"log_collector","events_processed":29215,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5843,"last_update":"2026-03-21T16:24:09.068814457Z"} +2026/03/21 16:24:14 ───────────────────────────────────────────────── +2026/03/21 16:24:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:24:19 [transform_engine] {"stage_name":"transform_engine","events_processed":610,"events_dropped":0,"avg_latency_ms":879.9470780476665,"throughput_eps":0,"last_update":"2026-03-21T16:24:14.21039946Z"} +2026/03/21 16:24:19 [log_collector] {"stage_name":"log_collector","events_processed":29229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5845.8,"last_update":"2026-03-21T16:24:14.06851813Z"} +2026/03/21 16:24:19 [metric_collector] {"stage_name":"metric_collector","events_processed":18324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3664.8,"last_update":"2026-03-21T16:24:14.069043937Z"} +2026/03/21 16:24:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:24:14.077098437Z"} +2026/03/21 16:24:19 [detection_layer] {"stage_name":"detection_layer","events_processed":610,"events_dropped":0,"avg_latency_ms":17.829137156814458,"throughput_eps":0,"last_update":"2026-03-21T16:24:14.210385784Z"} +2026/03/21 16:24:19 ───────────────────────────────────────────────── +2026/03/21 16:24:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:24:24 [log_collector] {"stage_name":"log_collector","events_processed":29231,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5846.2,"last_update":"2026-03-21T16:24:19.068646901Z"} +2026/03/21 16:24:24 [metric_collector] {"stage_name":"metric_collector","events_processed":18329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3665.8,"last_update":"2026-03-21T16:24:19.068964549Z"} +2026/03/21 16:24:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:24:19.076933846Z"} +2026/03/21 16:24:24 [detection_layer] {"stage_name":"detection_layer","events_processed":610,"events_dropped":0,"avg_latency_ms":17.829137156814458,"throughput_eps":0,"last_update":"2026-03-21T16:24:19.210173271Z"} +2026/03/21 16:24:24 [transform_engine] {"stage_name":"transform_engine","events_processed":611,"events_dropped":0,"avg_latency_ms":719.8473642381333,"throughput_eps":0,"last_update":"2026-03-21T16:24:19.289631397Z"} +2026/03/21 16:24:24 ───────────────────────────────────────────────── +2026/03/21 16:24:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:24:29 [log_collector] {"stage_name":"log_collector","events_processed":29231,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5846.2,"last_update":"2026-03-21T16:24:24.068858762Z"} +2026/03/21 16:24:29 [metric_collector] {"stage_name":"metric_collector","events_processed":18334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3666.8,"last_update":"2026-03-21T16:24:24.069602677Z"} +2026/03/21 16:24:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:24:24.0775544Z"} +2026/03/21 16:24:29 [detection_layer] {"stage_name":"detection_layer","events_processed":611,"events_dropped":0,"avg_latency_ms":18.02721232545157,"throughput_eps":0,"last_update":"2026-03-21T16:24:24.210919746Z"} +2026/03/21 16:24:29 [transform_engine] {"stage_name":"transform_engine","events_processed":611,"events_dropped":0,"avg_latency_ms":719.8473642381333,"throughput_eps":0,"last_update":"2026-03-21T16:24:24.209729836Z"} +2026/03/21 16:24:29 ───────────────────────────────────────────────── +2026/03/21 16:24:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:24:34 [log_collector] {"stage_name":"log_collector","events_processed":29231,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5846.2,"last_update":"2026-03-21T16:24:29.068857278Z"} +2026/03/21 16:24:34 [metric_collector] {"stage_name":"metric_collector","events_processed":18339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3667.8,"last_update":"2026-03-21T16:24:29.069624838Z"} +2026/03/21 16:24:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:24:29.078743446Z"} +2026/03/21 16:24:34 [detection_layer] {"stage_name":"detection_layer","events_processed":611,"events_dropped":0,"avg_latency_ms":18.02721232545157,"throughput_eps":0,"last_update":"2026-03-21T16:24:29.210235363Z"} +2026/03/21 16:24:34 [transform_engine] {"stage_name":"transform_engine","events_processed":611,"events_dropped":0,"avg_latency_ms":719.8473642381333,"throughput_eps":0,"last_update":"2026-03-21T16:24:29.210247717Z"} +2026/03/21 16:24:34 ───────────────────────────────────────────────── +2026/03/21 16:24:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:24:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:24:34.077868452Z"} +2026/03/21 16:24:39 [detection_layer] {"stage_name":"detection_layer","events_processed":611,"events_dropped":0,"avg_latency_ms":18.02721232545157,"throughput_eps":0,"last_update":"2026-03-21T16:24:34.21011815Z"} +2026/03/21 16:24:39 [transform_engine] {"stage_name":"transform_engine","events_processed":611,"events_dropped":0,"avg_latency_ms":719.8473642381333,"throughput_eps":0,"last_update":"2026-03-21T16:24:34.210125714Z"} +2026/03/21 16:24:39 [log_collector] {"stage_name":"log_collector","events_processed":29231,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5846.2,"last_update":"2026-03-21T16:24:34.069018238Z"} +2026/03/21 16:24:39 [metric_collector] {"stage_name":"metric_collector","events_processed":18344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3668.8,"last_update":"2026-03-21T16:24:34.069586375Z"} +2026/03/21 16:24:39 ───────────────────────────────────────────────── +2026/03/21 16:24:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:24:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7342,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:24:39.07742698Z"} +2026/03/21 16:24:44 [detection_layer] {"stage_name":"detection_layer","events_processed":611,"events_dropped":0,"avg_latency_ms":18.02721232545157,"throughput_eps":0,"last_update":"2026-03-21T16:24:39.210678025Z"} +2026/03/21 16:24:44 [transform_engine] {"stage_name":"transform_engine","events_processed":611,"events_dropped":0,"avg_latency_ms":719.8473642381333,"throughput_eps":0,"last_update":"2026-03-21T16:24:39.210686212Z"} +2026/03/21 16:24:44 [log_collector] {"stage_name":"log_collector","events_processed":29231,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5846.2,"last_update":"2026-03-21T16:24:39.068116143Z"} +2026/03/21 16:24:44 [metric_collector] {"stage_name":"metric_collector","events_processed":18349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3669.8,"last_update":"2026-03-21T16:24:39.068408543Z"} +2026/03/21 16:24:44 ───────────────────────────────────────────────── +2026/03/21 16:24:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:24:49 [log_collector] {"stage_name":"log_collector","events_processed":29231,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5846.2,"last_update":"2026-03-21T16:24:44.068231061Z"} +2026/03/21 16:24:49 [metric_collector] {"stage_name":"metric_collector","events_processed":18354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3670.8,"last_update":"2026-03-21T16:24:44.069021274Z"} +2026/03/21 16:24:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:24:44.078864842Z"} +2026/03/21 16:24:49 [detection_layer] {"stage_name":"detection_layer","events_processed":611,"events_dropped":0,"avg_latency_ms":18.02721232545157,"throughput_eps":0,"last_update":"2026-03-21T16:24:44.210110747Z"} +2026/03/21 16:24:49 [transform_engine] {"stage_name":"transform_engine","events_processed":611,"events_dropped":0,"avg_latency_ms":719.8473642381333,"throughput_eps":0,"last_update":"2026-03-21T16:24:44.210120515Z"} +2026/03/21 16:24:49 ───────────────────────────────────────────────── +2026/03/21 16:24:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:24:54 [log_collector] {"stage_name":"log_collector","events_processed":29231,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5846.2,"last_update":"2026-03-21T16:24:54.068322236Z"} +2026/03/21 16:24:54 [metric_collector] {"stage_name":"metric_collector","events_processed":18359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3671.8,"last_update":"2026-03-21T16:24:49.069100847Z"} +2026/03/21 16:24:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:24:49.078193425Z"} +2026/03/21 16:24:54 [detection_layer] {"stage_name":"detection_layer","events_processed":611,"events_dropped":0,"avg_latency_ms":18.02721232545157,"throughput_eps":0,"last_update":"2026-03-21T16:24:49.210576067Z"} +2026/03/21 16:24:54 [transform_engine] {"stage_name":"transform_engine","events_processed":612,"events_dropped":0,"avg_latency_ms":590.7142787905067,"throughput_eps":0,"last_update":"2026-03-21T16:24:49.284775178Z"} +2026/03/21 16:24:54 ───────────────────────────────────────────────── +2026/03/21 16:24:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:24:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:24:54.078006007Z"} +2026/03/21 16:24:59 [detection_layer] {"stage_name":"detection_layer","events_processed":612,"events_dropped":0,"avg_latency_ms":18.907757660361256,"throughput_eps":0,"last_update":"2026-03-21T16:24:54.210326489Z"} +2026/03/21 16:24:59 [transform_engine] {"stage_name":"transform_engine","events_processed":612,"events_dropped":0,"avg_latency_ms":590.7142787905067,"throughput_eps":0,"last_update":"2026-03-21T16:24:54.210334745Z"} +2026/03/21 16:24:59 [log_collector] {"stage_name":"log_collector","events_processed":29231,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5846.2,"last_update":"2026-03-21T16:24:54.068322236Z"} +2026/03/21 16:24:59 [metric_collector] {"stage_name":"metric_collector","events_processed":18364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3672.8,"last_update":"2026-03-21T16:24:54.068779511Z"} +2026/03/21 16:24:59 ───────────────────────────────────────────────── +2026/03/21 16:25:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:25:04 [log_collector] {"stage_name":"log_collector","events_processed":29231,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5846.2,"last_update":"2026-03-21T16:24:59.068799185Z"} +2026/03/21 16:25:04 [metric_collector] {"stage_name":"metric_collector","events_processed":18369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3673.8,"last_update":"2026-03-21T16:24:59.069022102Z"} +2026/03/21 16:25:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7350,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:24:59.077240525Z"} +2026/03/21 16:25:04 [detection_layer] {"stage_name":"detection_layer","events_processed":612,"events_dropped":0,"avg_latency_ms":18.907757660361256,"throughput_eps":0,"last_update":"2026-03-21T16:24:59.210574008Z"} +2026/03/21 16:25:04 [transform_engine] {"stage_name":"transform_engine","events_processed":612,"events_dropped":0,"avg_latency_ms":590.7142787905067,"throughput_eps":0,"last_update":"2026-03-21T16:24:59.210588517Z"} +2026/03/21 16:25:04 ───────────────────────────────────────────────── +2026/03/21 16:25:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:25:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:25:04.077766081Z"} +2026/03/21 16:25:09 [detection_layer] {"stage_name":"detection_layer","events_processed":612,"events_dropped":0,"avg_latency_ms":18.907757660361256,"throughput_eps":0,"last_update":"2026-03-21T16:25:04.210055755Z"} +2026/03/21 16:25:09 [transform_engine] {"stage_name":"transform_engine","events_processed":612,"events_dropped":0,"avg_latency_ms":590.7142787905067,"throughput_eps":0,"last_update":"2026-03-21T16:25:04.210066244Z"} +2026/03/21 16:25:09 [log_collector] {"stage_name":"log_collector","events_processed":29231,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5846.2,"last_update":"2026-03-21T16:25:09.068241808Z"} +2026/03/21 16:25:09 [metric_collector] {"stage_name":"metric_collector","events_processed":18374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3674.8,"last_update":"2026-03-21T16:25:04.069106552Z"} +2026/03/21 16:25:09 ───────────────────────────────────────────────── +2026/03/21 16:25:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:25:14 [detection_layer] {"stage_name":"detection_layer","events_processed":612,"events_dropped":0,"avg_latency_ms":18.907757660361256,"throughput_eps":0,"last_update":"2026-03-21T16:25:09.210535756Z"} +2026/03/21 16:25:14 [transform_engine] {"stage_name":"transform_engine","events_processed":612,"events_dropped":0,"avg_latency_ms":590.7142787905067,"throughput_eps":0,"last_update":"2026-03-21T16:25:09.21054776Z"} +2026/03/21 16:25:14 [log_collector] {"stage_name":"log_collector","events_processed":29231,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5846.2,"last_update":"2026-03-21T16:25:09.068241808Z"} +2026/03/21 16:25:14 [metric_collector] {"stage_name":"metric_collector","events_processed":18379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3675.8,"last_update":"2026-03-21T16:25:09.06887976Z"} +2026/03/21 16:25:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:25:09.077282206Z"} +2026/03/21 16:25:14 ───────────────────────────────────────────────── +2026/03/21 16:25:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:25:19 [log_collector] {"stage_name":"log_collector","events_processed":29231,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5846.2,"last_update":"2026-03-21T16:25:14.068660717Z"} +2026/03/21 16:25:19 [metric_collector] {"stage_name":"metric_collector","events_processed":18384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3676.8,"last_update":"2026-03-21T16:25:14.068846702Z"} +2026/03/21 16:25:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:25:14.077618867Z"} +2026/03/21 16:25:19 [detection_layer] {"stage_name":"detection_layer","events_processed":612,"events_dropped":0,"avg_latency_ms":18.907757660361256,"throughput_eps":0,"last_update":"2026-03-21T16:25:14.209931644Z"} +2026/03/21 16:25:19 [transform_engine] {"stage_name":"transform_engine","events_processed":612,"events_dropped":0,"avg_latency_ms":590.7142787905067,"throughput_eps":0,"last_update":"2026-03-21T16:25:14.209949278Z"} +2026/03/21 16:25:19 ───────────────────────────────────────────────── +2026/03/21 16:25:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:25:24 [log_collector] {"stage_name":"log_collector","events_processed":29231,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5846.2,"last_update":"2026-03-21T16:25:19.069136997Z"} +2026/03/21 16:25:24 [metric_collector] {"stage_name":"metric_collector","events_processed":18389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3677.8,"last_update":"2026-03-21T16:25:19.069743019Z"} +2026/03/21 16:25:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:25:19.078178849Z"} +2026/03/21 16:25:24 [detection_layer] {"stage_name":"detection_layer","events_processed":612,"events_dropped":0,"avg_latency_ms":18.907757660361256,"throughput_eps":0,"last_update":"2026-03-21T16:25:19.210558764Z"} +2026/03/21 16:25:24 [transform_engine] {"stage_name":"transform_engine","events_processed":613,"events_dropped":0,"avg_latency_ms":488.4112910324054,"throughput_eps":0,"last_update":"2026-03-21T16:25:19.28977688Z"} +2026/03/21 16:25:24 ───────────────────────────────────────────────── +Saved state: 18 clusters, 29232 messages, reason: none +2026/03/21 16:25:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:25:29 [log_collector] {"stage_name":"log_collector","events_processed":29231,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5846.2,"last_update":"2026-03-21T16:25:24.068946996Z"} +2026/03/21 16:25:29 [metric_collector] {"stage_name":"metric_collector","events_processed":18394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3678.8,"last_update":"2026-03-21T16:25:24.06950217Z"} +2026/03/21 16:25:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7360,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:25:24.078492342Z"} +2026/03/21 16:25:29 [detection_layer] {"stage_name":"detection_layer","events_processed":613,"events_dropped":0,"avg_latency_ms":19.548223128289006,"throughput_eps":0,"last_update":"2026-03-21T16:25:24.210939206Z"} +2026/03/21 16:25:29 [transform_engine] {"stage_name":"transform_engine","events_processed":613,"events_dropped":0,"avg_latency_ms":488.4112910324054,"throughput_eps":0,"last_update":"2026-03-21T16:25:24.209726793Z"} +2026/03/21 16:25:29 ───────────────────────────────────────────────── +2026/03/21 16:25:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:25:34 [metric_collector] {"stage_name":"metric_collector","events_processed":18399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3679.8,"last_update":"2026-03-21T16:25:29.068961738Z"} +2026/03/21 16:25:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:25:29.077584507Z"} +2026/03/21 16:25:34 [detection_layer] {"stage_name":"detection_layer","events_processed":613,"events_dropped":0,"avg_latency_ms":19.548223128289006,"throughput_eps":0,"last_update":"2026-03-21T16:25:29.209899928Z"} +2026/03/21 16:25:34 [transform_engine] {"stage_name":"transform_engine","events_processed":613,"events_dropped":0,"avg_latency_ms":488.4112910324054,"throughput_eps":0,"last_update":"2026-03-21T16:25:29.209848109Z"} +2026/03/21 16:25:34 [log_collector] {"stage_name":"log_collector","events_processed":29245,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5849,"last_update":"2026-03-21T16:25:29.068242201Z"} +2026/03/21 16:25:34 ───────────────────────────────────────────────── +2026/03/21 16:25:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:25:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:25:34.077207486Z"} +2026/03/21 16:25:39 [detection_layer] {"stage_name":"detection_layer","events_processed":613,"events_dropped":0,"avg_latency_ms":19.548223128289006,"throughput_eps":0,"last_update":"2026-03-21T16:25:34.21058364Z"} +2026/03/21 16:25:39 [transform_engine] {"stage_name":"transform_engine","events_processed":613,"events_dropped":0,"avg_latency_ms":488.4112910324054,"throughput_eps":0,"last_update":"2026-03-21T16:25:34.21059448Z"} +2026/03/21 16:25:39 [log_collector] {"stage_name":"log_collector","events_processed":29245,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5849,"last_update":"2026-03-21T16:25:34.068090351Z"} +2026/03/21 16:25:39 [metric_collector] {"stage_name":"metric_collector","events_processed":18404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3680.8,"last_update":"2026-03-21T16:25:34.068657758Z"} +2026/03/21 16:25:39 ───────────────────────────────────────────────── +2026/03/21 16:25:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:25:44 [log_collector] {"stage_name":"log_collector","events_processed":29245,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5849,"last_update":"2026-03-21T16:25:39.068766759Z"} +2026/03/21 16:25:44 [metric_collector] {"stage_name":"metric_collector","events_processed":18409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3681.8,"last_update":"2026-03-21T16:25:39.068948848Z"} +2026/03/21 16:25:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:25:39.079006315Z"} +2026/03/21 16:25:44 [detection_layer] {"stage_name":"detection_layer","events_processed":613,"events_dropped":0,"avg_latency_ms":19.548223128289006,"throughput_eps":0,"last_update":"2026-03-21T16:25:39.210394319Z"} +2026/03/21 16:25:44 [transform_engine] {"stage_name":"transform_engine","events_processed":613,"events_dropped":0,"avg_latency_ms":488.4112910324054,"throughput_eps":0,"last_update":"2026-03-21T16:25:39.2104102Z"} +2026/03/21 16:25:44 ───────────────────────────────────────────────── +2026/03/21 16:25:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:25:49 [log_collector] {"stage_name":"log_collector","events_processed":29245,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5849,"last_update":"2026-03-21T16:25:44.069031093Z"} +2026/03/21 16:25:49 [metric_collector] {"stage_name":"metric_collector","events_processed":18414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3682.8,"last_update":"2026-03-21T16:25:44.069148588Z"} +2026/03/21 16:25:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:25:44.077880705Z"} +2026/03/21 16:25:49 [detection_layer] {"stage_name":"detection_layer","events_processed":613,"events_dropped":0,"avg_latency_ms":19.548223128289006,"throughput_eps":0,"last_update":"2026-03-21T16:25:44.210306278Z"} +2026/03/21 16:25:49 [transform_engine] {"stage_name":"transform_engine","events_processed":613,"events_dropped":0,"avg_latency_ms":488.4112910324054,"throughput_eps":0,"last_update":"2026-03-21T16:25:44.210321217Z"} +2026/03/21 16:25:49 ───────────────────────────────────────────────── +2026/03/21 16:25:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:25:54 [transform_engine] {"stage_name":"transform_engine","events_processed":614,"events_dropped":0,"avg_latency_ms":414.95487702592436,"throughput_eps":0,"last_update":"2026-03-21T16:25:49.331596897Z"} +2026/03/21 16:25:54 [log_collector] {"stage_name":"log_collector","events_processed":29245,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5849,"last_update":"2026-03-21T16:25:49.068094948Z"} +2026/03/21 16:25:54 [metric_collector] {"stage_name":"metric_collector","events_processed":18419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3683.8,"last_update":"2026-03-21T16:25:49.068658227Z"} +2026/03/21 16:25:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:25:49.07728825Z"} +2026/03/21 16:25:54 [detection_layer] {"stage_name":"detection_layer","events_processed":613,"events_dropped":0,"avg_latency_ms":19.548223128289006,"throughput_eps":0,"last_update":"2026-03-21T16:25:49.210456644Z"} +2026/03/21 16:25:54 ───────────────────────────────────────────────── +2026/03/21 16:25:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:25:59 [log_collector] {"stage_name":"log_collector","events_processed":29245,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5849,"last_update":"2026-03-21T16:25:54.068715652Z"} +2026/03/21 16:25:59 [metric_collector] {"stage_name":"metric_collector","events_processed":18424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3684.8,"last_update":"2026-03-21T16:25:54.069094317Z"} +2026/03/21 16:25:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:25:54.076787725Z"} +2026/03/21 16:25:59 [detection_layer] {"stage_name":"detection_layer","events_processed":614,"events_dropped":0,"avg_latency_ms":20.123169702631206,"throughput_eps":0,"last_update":"2026-03-21T16:25:54.210136585Z"} +2026/03/21 16:25:59 [transform_engine] {"stage_name":"transform_engine","events_processed":614,"events_dropped":0,"avg_latency_ms":414.95487702592436,"throughput_eps":0,"last_update":"2026-03-21T16:25:54.210174108Z"} +2026/03/21 16:25:59 ───────────────────────────────────────────────── +2026/03/21 16:26:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:26:04 [detection_layer] {"stage_name":"detection_layer","events_processed":614,"events_dropped":0,"avg_latency_ms":20.123169702631206,"throughput_eps":0,"last_update":"2026-03-21T16:25:59.210188994Z"} +2026/03/21 16:26:04 [transform_engine] {"stage_name":"transform_engine","events_processed":614,"events_dropped":0,"avg_latency_ms":414.95487702592436,"throughput_eps":0,"last_update":"2026-03-21T16:25:59.210128428Z"} +2026/03/21 16:26:04 [log_collector] {"stage_name":"log_collector","events_processed":29245,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5849,"last_update":"2026-03-21T16:25:59.068837664Z"} +2026/03/21 16:26:04 [metric_collector] {"stage_name":"metric_collector","events_processed":18429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3685.8,"last_update":"2026-03-21T16:25:59.069155634Z"} +2026/03/21 16:26:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:25:59.078885182Z"} +2026/03/21 16:26:04 ───────────────────────────────────────────────── +2026/03/21 16:26:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:26:09 [log_collector] {"stage_name":"log_collector","events_processed":29245,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5849,"last_update":"2026-03-21T16:26:04.068869997Z"} +2026/03/21 16:26:09 [metric_collector] {"stage_name":"metric_collector","events_processed":18434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3686.8,"last_update":"2026-03-21T16:26:04.069452964Z"} +2026/03/21 16:26:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:26:04.077906788Z"} +2026/03/21 16:26:09 [detection_layer] {"stage_name":"detection_layer","events_processed":614,"events_dropped":0,"avg_latency_ms":20.123169702631206,"throughput_eps":0,"last_update":"2026-03-21T16:26:04.210260743Z"} +2026/03/21 16:26:09 [transform_engine] {"stage_name":"transform_engine","events_processed":614,"events_dropped":0,"avg_latency_ms":414.95487702592436,"throughput_eps":0,"last_update":"2026-03-21T16:26:04.210226086Z"} +2026/03/21 16:26:09 ───────────────────────────────────────────────── +2026/03/21 16:26:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:26:14 [log_collector] {"stage_name":"log_collector","events_processed":29245,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5849,"last_update":"2026-03-21T16:26:09.068773939Z"} +2026/03/21 16:26:14 [metric_collector] {"stage_name":"metric_collector","events_processed":18439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3687.8,"last_update":"2026-03-21T16:26:09.069432039Z"} +2026/03/21 16:26:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:26:09.079590479Z"} +2026/03/21 16:26:14 [detection_layer] {"stage_name":"detection_layer","events_processed":614,"events_dropped":0,"avg_latency_ms":20.123169702631206,"throughput_eps":0,"last_update":"2026-03-21T16:26:09.20985968Z"} +2026/03/21 16:26:14 [transform_engine] {"stage_name":"transform_engine","events_processed":614,"events_dropped":0,"avg_latency_ms":414.95487702592436,"throughput_eps":0,"last_update":"2026-03-21T16:26:09.209813281Z"} +2026/03/21 16:26:14 ───────────────────────────────────────────────── +2026/03/21 16:26:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:26:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7380,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:26:14.077885342Z"} +2026/03/21 16:26:19 [detection_layer] {"stage_name":"detection_layer","events_processed":614,"events_dropped":0,"avg_latency_ms":20.123169702631206,"throughput_eps":0,"last_update":"2026-03-21T16:26:14.210136569Z"} +2026/03/21 16:26:19 [transform_engine] {"stage_name":"transform_engine","events_processed":614,"events_dropped":0,"avg_latency_ms":414.95487702592436,"throughput_eps":0,"last_update":"2026-03-21T16:26:14.210243684Z"} +2026/03/21 16:26:19 [log_collector] {"stage_name":"log_collector","events_processed":29245,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5849,"last_update":"2026-03-21T16:26:14.068103884Z"} +2026/03/21 16:26:19 [metric_collector] {"stage_name":"metric_collector","events_processed":18444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3688.8,"last_update":"2026-03-21T16:26:14.06834188Z"} +2026/03/21 16:26:19 ───────────────────────────────────────────────── +2026/03/21 16:26:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:26:24 [metric_collector] {"stage_name":"metric_collector","events_processed":18449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3689.8,"last_update":"2026-03-21T16:26:19.068713484Z"} +2026/03/21 16:26:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:26:19.07751699Z"} +2026/03/21 16:26:24 [detection_layer] {"stage_name":"detection_layer","events_processed":614,"events_dropped":0,"avg_latency_ms":20.123169702631206,"throughput_eps":0,"last_update":"2026-03-21T16:26:19.210877802Z"} +2026/03/21 16:26:24 [transform_engine] {"stage_name":"transform_engine","events_processed":615,"events_dropped":0,"avg_latency_ms":348.42715942073954,"throughput_eps":0,"last_update":"2026-03-21T16:26:19.292002788Z"} +2026/03/21 16:26:24 [log_collector] {"stage_name":"log_collector","events_processed":29245,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5849,"last_update":"2026-03-21T16:26:19.068113836Z"} +2026/03/21 16:26:24 ───────────────────────────────────────────────── +2026/03/21 16:26:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:26:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:26:24.07728852Z"} +2026/03/21 16:26:29 [detection_layer] {"stage_name":"detection_layer","events_processed":615,"events_dropped":0,"avg_latency_ms":20.368457562104965,"throughput_eps":0,"last_update":"2026-03-21T16:26:24.210511738Z"} +2026/03/21 16:26:29 [transform_engine] {"stage_name":"transform_engine","events_processed":615,"events_dropped":0,"avg_latency_ms":348.42715942073954,"throughput_eps":0,"last_update":"2026-03-21T16:26:24.210494265Z"} +2026/03/21 16:26:29 [log_collector] {"stage_name":"log_collector","events_processed":29245,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5849,"last_update":"2026-03-21T16:26:24.068697522Z"} +2026/03/21 16:26:29 [metric_collector] {"stage_name":"metric_collector","events_processed":18454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3690.8,"last_update":"2026-03-21T16:26:24.068886474Z"} +2026/03/21 16:26:29 ───────────────────────────────────────────────── +Saved state: 18 clusters, 29246 messages, reason: none +2026/03/21 16:26:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:26:34 [log_collector] {"stage_name":"log_collector","events_processed":29245,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5849,"last_update":"2026-03-21T16:26:29.068926053Z"} +2026/03/21 16:26:34 [metric_collector] {"stage_name":"metric_collector","events_processed":18459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3691.8,"last_update":"2026-03-21T16:26:29.069172074Z"} +2026/03/21 16:26:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:26:29.078811831Z"} +2026/03/21 16:26:34 [detection_layer] {"stage_name":"detection_layer","events_processed":615,"events_dropped":0,"avg_latency_ms":20.368457562104965,"throughput_eps":0,"last_update":"2026-03-21T16:26:29.210447559Z"} +2026/03/21 16:26:34 [transform_engine] {"stage_name":"transform_engine","events_processed":615,"events_dropped":0,"avg_latency_ms":348.42715942073954,"throughput_eps":0,"last_update":"2026-03-21T16:26:29.210559643Z"} +2026/03/21 16:26:34 ───────────────────────────────────────────────── +2026/03/21 16:26:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:26:39 [log_collector] {"stage_name":"log_collector","events_processed":29250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5850,"last_update":"2026-03-21T16:26:34.068731818Z"} +2026/03/21 16:26:39 [metric_collector] {"stage_name":"metric_collector","events_processed":18464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3692.8,"last_update":"2026-03-21T16:26:34.069004801Z"} +2026/03/21 16:26:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7388,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:26:34.083185506Z"} +2026/03/21 16:26:39 [detection_layer] {"stage_name":"detection_layer","events_processed":615,"events_dropped":0,"avg_latency_ms":20.368457562104965,"throughput_eps":0,"last_update":"2026-03-21T16:26:34.210292759Z"} +2026/03/21 16:26:39 [transform_engine] {"stage_name":"transform_engine","events_processed":615,"events_dropped":0,"avg_latency_ms":348.42715942073954,"throughput_eps":0,"last_update":"2026-03-21T16:26:34.210275195Z"} +2026/03/21 16:26:39 ───────────────────────────────────────────────── +2026/03/21 16:26:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:26:44 [log_collector] {"stage_name":"log_collector","events_processed":29250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5850,"last_update":"2026-03-21T16:26:39.068885141Z"} +2026/03/21 16:26:44 [metric_collector] {"stage_name":"metric_collector","events_processed":18469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3693.8,"last_update":"2026-03-21T16:26:39.068878509Z"} +2026/03/21 16:26:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7390,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:26:39.075967839Z"} +2026/03/21 16:26:44 [detection_layer] {"stage_name":"detection_layer","events_processed":615,"events_dropped":0,"avg_latency_ms":20.368457562104965,"throughput_eps":0,"last_update":"2026-03-21T16:26:39.210829186Z"} +2026/03/21 16:26:44 [transform_engine] {"stage_name":"transform_engine","events_processed":615,"events_dropped":0,"avg_latency_ms":348.42715942073954,"throughput_eps":0,"last_update":"2026-03-21T16:26:39.209689482Z"} +2026/03/21 16:26:44 ───────────────────────────────────────────────── +2026/03/21 16:26:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:26:49 [metric_collector] {"stage_name":"metric_collector","events_processed":18474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3694.8,"last_update":"2026-03-21T16:26:44.06873614Z"} +2026/03/21 16:26:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:26:44.07882086Z"} +2026/03/21 16:26:49 [detection_layer] {"stage_name":"detection_layer","events_processed":615,"events_dropped":0,"avg_latency_ms":20.368457562104965,"throughput_eps":0,"last_update":"2026-03-21T16:26:44.20993106Z"} +2026/03/21 16:26:49 [transform_engine] {"stage_name":"transform_engine","events_processed":615,"events_dropped":0,"avg_latency_ms":348.42715942073954,"throughput_eps":0,"last_update":"2026-03-21T16:26:44.209960326Z"} +2026/03/21 16:26:49 [log_collector] {"stage_name":"log_collector","events_processed":29250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5850,"last_update":"2026-03-21T16:26:44.068447368Z"} +2026/03/21 16:26:49 ───────────────────────────────────────────────── +2026/03/21 16:26:52 [ANOMALY] time=2026-03-21T16:26:52Z score=0.8654 method=SEAD details=MAD!:w=0.28,s=0.91 RRCF-fast!:w=0.19,s=0.94 RRCF-mid:w=0.15,s=0.81 RRCF-slow:w=0.14,s=0.80 COPOD!:w=0.24,s=0.83 +2026/03/21 16:26:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:26:54 [log_collector] {"stage_name":"log_collector","events_processed":29250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5850,"last_update":"2026-03-21T16:26:49.068517892Z"} +2026/03/21 16:26:54 [metric_collector] {"stage_name":"metric_collector","events_processed":18479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3695.8,"last_update":"2026-03-21T16:26:49.068683329Z"} +2026/03/21 16:26:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:26:49.074537623Z"} +2026/03/21 16:26:54 [detection_layer] {"stage_name":"detection_layer","events_processed":615,"events_dropped":0,"avg_latency_ms":20.368457562104965,"throughput_eps":0,"last_update":"2026-03-21T16:26:49.210369008Z"} +2026/03/21 16:26:54 [transform_engine] {"stage_name":"transform_engine","events_processed":616,"events_dropped":0,"avg_latency_ms":845.8702551365916,"throughput_eps":0,"last_update":"2026-03-21T16:26:52.045384956Z"} +2026/03/21 16:26:54 ───────────────────────────────────────────────── +2026/03/21 16:26:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:26:59 [detection_layer] {"stage_name":"detection_layer","events_processed":616,"events_dropped":0,"avg_latency_ms":18.53262304968397,"throughput_eps":0,"last_update":"2026-03-21T16:26:54.210162224Z"} +2026/03/21 16:26:59 [transform_engine] {"stage_name":"transform_engine","events_processed":616,"events_dropped":0,"avg_latency_ms":845.8702551365916,"throughput_eps":0,"last_update":"2026-03-21T16:26:54.210194686Z"} +2026/03/21 16:26:59 [log_collector] {"stage_name":"log_collector","events_processed":29250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5850,"last_update":"2026-03-21T16:26:54.068924243Z"} +2026/03/21 16:26:59 [metric_collector] {"stage_name":"metric_collector","events_processed":18484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3696.8,"last_update":"2026-03-21T16:26:54.069213196Z"} +2026/03/21 16:26:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:26:54.080911046Z"} +2026/03/21 16:26:59 ───────────────────────────────────────────────── +2026/03/21 16:27:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:27:04 [log_collector] {"stage_name":"log_collector","events_processed":29250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5850,"last_update":"2026-03-21T16:26:59.068741252Z"} +2026/03/21 16:27:04 [metric_collector] {"stage_name":"metric_collector","events_processed":18489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3697.8,"last_update":"2026-03-21T16:26:59.06901151Z"} +2026/03/21 16:27:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:26:59.075028135Z"} +2026/03/21 16:27:04 [detection_layer] {"stage_name":"detection_layer","events_processed":616,"events_dropped":0,"avg_latency_ms":18.53262304968397,"throughput_eps":0,"last_update":"2026-03-21T16:26:59.210318974Z"} +2026/03/21 16:27:04 [transform_engine] {"stage_name":"transform_engine","events_processed":616,"events_dropped":0,"avg_latency_ms":845.8702551365916,"throughput_eps":0,"last_update":"2026-03-21T16:26:59.213453168Z"} +2026/03/21 16:27:04 ───────────────────────────────────────────────── +2026/03/21 16:27:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:27:09 [log_collector] {"stage_name":"log_collector","events_processed":29250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5850,"last_update":"2026-03-21T16:27:04.068456046Z"} +2026/03/21 16:27:09 [metric_collector] {"stage_name":"metric_collector","events_processed":18494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3698.8,"last_update":"2026-03-21T16:27:04.069244177Z"} +2026/03/21 16:27:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7400,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:27:04.07881438Z"} +2026/03/21 16:27:09 [detection_layer] {"stage_name":"detection_layer","events_processed":616,"events_dropped":0,"avg_latency_ms":18.53262304968397,"throughput_eps":0,"last_update":"2026-03-21T16:27:04.210188275Z"} +2026/03/21 16:27:09 [transform_engine] {"stage_name":"transform_engine","events_processed":616,"events_dropped":0,"avg_latency_ms":845.8702551365916,"throughput_eps":0,"last_update":"2026-03-21T16:27:04.210159039Z"} +2026/03/21 16:27:09 ───────────────────────────────────────────────── +2026/03/21 16:27:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:27:14 [log_collector] {"stage_name":"log_collector","events_processed":29250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5850,"last_update":"2026-03-21T16:27:09.068692908Z"} +2026/03/21 16:27:14 [metric_collector] {"stage_name":"metric_collector","events_processed":18499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3699.8,"last_update":"2026-03-21T16:27:09.068778983Z"} +2026/03/21 16:27:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7402,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:27:09.075590371Z"} +2026/03/21 16:27:14 [detection_layer] {"stage_name":"detection_layer","events_processed":616,"events_dropped":0,"avg_latency_ms":18.53262304968397,"throughput_eps":0,"last_update":"2026-03-21T16:27:09.210394226Z"} +2026/03/21 16:27:14 [transform_engine] {"stage_name":"transform_engine","events_processed":616,"events_dropped":0,"avg_latency_ms":845.8702551365916,"throughput_eps":0,"last_update":"2026-03-21T16:27:09.209742618Z"} +2026/03/21 16:27:14 ───────────────────────────────────────────────── +2026/03/21 16:27:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:27:19 [transform_engine] {"stage_name":"transform_engine","events_processed":616,"events_dropped":0,"avg_latency_ms":845.8702551365916,"throughput_eps":0,"last_update":"2026-03-21T16:27:14.209784429Z"} +2026/03/21 16:27:19 [log_collector] {"stage_name":"log_collector","events_processed":29253,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5850.6,"last_update":"2026-03-21T16:27:14.068833238Z"} +2026/03/21 16:27:19 [metric_collector] {"stage_name":"metric_collector","events_processed":18504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3700.8,"last_update":"2026-03-21T16:27:14.069266017Z"} +2026/03/21 16:27:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:27:14.075566958Z"} +2026/03/21 16:27:19 [detection_layer] {"stage_name":"detection_layer","events_processed":616,"events_dropped":0,"avg_latency_ms":18.53262304968397,"throughput_eps":0,"last_update":"2026-03-21T16:27:14.209878029Z"} +2026/03/21 16:27:19 ───────────────────────────────────────────────── +2026/03/21 16:27:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:27:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:27:19.078471048Z"} +2026/03/21 16:27:24 [detection_layer] {"stage_name":"detection_layer","events_processed":616,"events_dropped":0,"avg_latency_ms":18.53262304968397,"throughput_eps":0,"last_update":"2026-03-21T16:27:19.209853168Z"} +2026/03/21 16:27:24 [transform_engine] {"stage_name":"transform_engine","events_processed":616,"events_dropped":0,"avg_latency_ms":845.8702551365916,"throughput_eps":0,"last_update":"2026-03-21T16:27:19.209699854Z"} +2026/03/21 16:27:24 [log_collector] {"stage_name":"log_collector","events_processed":29261,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5852.2,"last_update":"2026-03-21T16:27:19.068756127Z"} +2026/03/21 16:27:24 [metric_collector] {"stage_name":"metric_collector","events_processed":18509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3701.8,"last_update":"2026-03-21T16:27:19.069080208Z"} +2026/03/21 16:27:24 ───────────────────────────────────────────────── +2026/03/21 16:27:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:27:29 [transform_engine] {"stage_name":"transform_engine","events_processed":617,"events_dropped":0,"avg_latency_ms":699.8190771092734,"throughput_eps":0,"last_update":"2026-03-21T16:27:24.209887123Z"} +2026/03/21 16:27:29 [log_collector] {"stage_name":"log_collector","events_processed":29401,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5880.2,"last_update":"2026-03-21T16:27:24.068795003Z"} +2026/03/21 16:27:29 [metric_collector] {"stage_name":"metric_collector","events_processed":18513,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3702.6,"last_update":"2026-03-21T16:27:24.06873139Z"} +2026/03/21 16:27:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7408,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:27:24.07692162Z"} +2026/03/21 16:27:29 [detection_layer] {"stage_name":"detection_layer","events_processed":617,"events_dropped":0,"avg_latency_ms":18.701779039747176,"throughput_eps":0,"last_update":"2026-03-21T16:27:24.209902132Z"} +2026/03/21 16:27:29 ───────────────────────────────────────────────── +2026/03/21 16:27:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:27:34 [log_collector] {"stage_name":"log_collector","events_processed":29581,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5916.2,"last_update":"2026-03-21T16:27:29.068087554Z"} +2026/03/21 16:27:34 [metric_collector] {"stage_name":"metric_collector","events_processed":18518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3703.6,"last_update":"2026-03-21T16:27:29.067940662Z"} +2026/03/21 16:27:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:27:29.082620343Z"} +2026/03/21 16:27:34 [detection_layer] {"stage_name":"detection_layer","events_processed":617,"events_dropped":0,"avg_latency_ms":18.701779039747176,"throughput_eps":0,"last_update":"2026-03-21T16:27:29.210594184Z"} +2026/03/21 16:27:34 [transform_engine] {"stage_name":"transform_engine","events_processed":617,"events_dropped":0,"avg_latency_ms":699.8190771092734,"throughput_eps":0,"last_update":"2026-03-21T16:27:29.210610105Z"} +2026/03/21 16:27:34 ───────────────────────────────────────────────── +2026/03/21 16:27:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:27:39 [log_collector] {"stage_name":"log_collector","events_processed":29609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5921.8,"last_update":"2026-03-21T16:27:34.068663657Z"} +2026/03/21 16:27:39 [metric_collector] {"stage_name":"metric_collector","events_processed":18524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3704.8,"last_update":"2026-03-21T16:27:34.069087679Z"} +2026/03/21 16:27:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:27:34.07762897Z"} +2026/03/21 16:27:39 [detection_layer] {"stage_name":"detection_layer","events_processed":617,"events_dropped":0,"avg_latency_ms":18.701779039747176,"throughput_eps":0,"last_update":"2026-03-21T16:27:34.210828482Z"} +2026/03/21 16:27:39 [transform_engine] {"stage_name":"transform_engine","events_processed":617,"events_dropped":0,"avg_latency_ms":699.8190771092734,"throughput_eps":0,"last_update":"2026-03-21T16:27:34.209732503Z"} +2026/03/21 16:27:39 ───────────────────────────────────────────────── +Saved state: 18 clusters, 29610 messages, reason: none +2026/03/21 16:27:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:27:44 [log_collector] {"stage_name":"log_collector","events_processed":29609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5921.8,"last_update":"2026-03-21T16:27:39.06896596Z"} +2026/03/21 16:27:44 [metric_collector] {"stage_name":"metric_collector","events_processed":18529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3705.8,"last_update":"2026-03-21T16:27:39.069004915Z"} +2026/03/21 16:27:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:27:39.077925454Z"} +2026/03/21 16:27:44 [detection_layer] {"stage_name":"detection_layer","events_processed":617,"events_dropped":0,"avg_latency_ms":18.701779039747176,"throughput_eps":0,"last_update":"2026-03-21T16:27:39.210258065Z"} +2026/03/21 16:27:44 [transform_engine] {"stage_name":"transform_engine","events_processed":617,"events_dropped":0,"avg_latency_ms":699.8190771092734,"throughput_eps":0,"last_update":"2026-03-21T16:27:39.210201436Z"} +2026/03/21 16:27:44 ───────────────────────────────────────────────── +2026/03/21 16:27:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:27:49 [log_collector] {"stage_name":"log_collector","events_processed":29612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5922.4,"last_update":"2026-03-21T16:27:44.069381828Z"} +2026/03/21 16:27:49 [metric_collector] {"stage_name":"metric_collector","events_processed":18534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3706.8,"last_update":"2026-03-21T16:27:44.06875626Z"} +2026/03/21 16:27:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:27:44.078977029Z"} +2026/03/21 16:27:49 [detection_layer] {"stage_name":"detection_layer","events_processed":617,"events_dropped":0,"avg_latency_ms":18.701779039747176,"throughput_eps":0,"last_update":"2026-03-21T16:27:44.210437249Z"} +2026/03/21 16:27:49 [transform_engine] {"stage_name":"transform_engine","events_processed":617,"events_dropped":0,"avg_latency_ms":699.8190771092734,"throughput_eps":0,"last_update":"2026-03-21T16:27:44.21041179Z"} +2026/03/21 16:27:49 ───────────────────────────────────────────────── +2026/03/21 16:27:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:27:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:27:49.075688275Z"} +2026/03/21 16:27:54 [detection_layer] {"stage_name":"detection_layer","events_processed":617,"events_dropped":0,"avg_latency_ms":18.701779039747176,"throughput_eps":0,"last_update":"2026-03-21T16:27:49.209926646Z"} +2026/03/21 16:27:54 [transform_engine] {"stage_name":"transform_engine","events_processed":618,"events_dropped":0,"avg_latency_ms":708.9236416874188,"throughput_eps":0,"last_update":"2026-03-21T16:27:49.955284858Z"} +2026/03/21 16:27:54 [log_collector] {"stage_name":"log_collector","events_processed":29622,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5924.4,"last_update":"2026-03-21T16:27:49.068662747Z"} +2026/03/21 16:27:54 [metric_collector] {"stage_name":"metric_collector","events_processed":18539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3707.8,"last_update":"2026-03-21T16:27:49.068877438Z"} +2026/03/21 16:27:54 ───────────────────────────────────────────────── +2026/03/21 16:27:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:27:59 [log_collector] {"stage_name":"log_collector","events_processed":29623,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5924.6,"last_update":"2026-03-21T16:27:54.068625606Z"} +2026/03/21 16:27:59 [metric_collector] {"stage_name":"metric_collector","events_processed":18544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3708.8,"last_update":"2026-03-21T16:27:54.068913668Z"} +2026/03/21 16:27:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7420,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:27:54.077439972Z"} +2026/03/21 16:27:59 [detection_layer] {"stage_name":"detection_layer","events_processed":618,"events_dropped":0,"avg_latency_ms":17.692470831797742,"throughput_eps":0,"last_update":"2026-03-21T16:27:54.210924539Z"} +2026/03/21 16:27:59 [transform_engine] {"stage_name":"transform_engine","events_processed":618,"events_dropped":0,"avg_latency_ms":708.9236416874188,"throughput_eps":0,"last_update":"2026-03-21T16:27:54.209684724Z"} +2026/03/21 16:27:59 ───────────────────────────────────────────────── +2026/03/21 16:28:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:28:04 [log_collector] {"stage_name":"log_collector","events_processed":29637,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5927.4,"last_update":"2026-03-21T16:27:59.068286562Z"} +2026/03/21 16:28:04 [metric_collector] {"stage_name":"metric_collector","events_processed":18549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3709.8,"last_update":"2026-03-21T16:27:59.068698221Z"} +2026/03/21 16:28:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:27:59.077516453Z"} +2026/03/21 16:28:04 [detection_layer] {"stage_name":"detection_layer","events_processed":618,"events_dropped":0,"avg_latency_ms":17.692470831797742,"throughput_eps":0,"last_update":"2026-03-21T16:27:59.210908903Z"} +2026/03/21 16:28:04 [transform_engine] {"stage_name":"transform_engine","events_processed":618,"events_dropped":0,"avg_latency_ms":708.9236416874188,"throughput_eps":0,"last_update":"2026-03-21T16:27:59.20972226Z"} +2026/03/21 16:28:04 ───────────────────────────────────────────────── +2026/03/21 16:28:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:28:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:28:04.077759799Z"} +2026/03/21 16:28:09 [detection_layer] {"stage_name":"detection_layer","events_processed":618,"events_dropped":0,"avg_latency_ms":17.692470831797742,"throughput_eps":0,"last_update":"2026-03-21T16:28:04.210050369Z"} +2026/03/21 16:28:09 [transform_engine] {"stage_name":"transform_engine","events_processed":618,"events_dropped":0,"avg_latency_ms":708.9236416874188,"throughput_eps":0,"last_update":"2026-03-21T16:28:04.210003669Z"} +2026/03/21 16:28:09 [log_collector] {"stage_name":"log_collector","events_processed":29639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5927.8,"last_update":"2026-03-21T16:28:09.068415817Z"} +2026/03/21 16:28:09 [metric_collector] {"stage_name":"metric_collector","events_processed":18554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3710.8,"last_update":"2026-03-21T16:28:04.069167089Z"} +2026/03/21 16:28:09 ───────────────────────────────────────────────── +2026/03/21 16:28:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:28:14 [transform_engine] {"stage_name":"transform_engine","events_processed":618,"events_dropped":0,"avg_latency_ms":708.9236416874188,"throughput_eps":0,"last_update":"2026-03-21T16:28:09.210484196Z"} +2026/03/21 16:28:14 [log_collector] {"stage_name":"log_collector","events_processed":29639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5927.8,"last_update":"2026-03-21T16:28:09.068415817Z"} +2026/03/21 16:28:14 [metric_collector] {"stage_name":"metric_collector","events_processed":18559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3711.8,"last_update":"2026-03-21T16:28:09.06885088Z"} +2026/03/21 16:28:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:28:09.078179369Z"} +2026/03/21 16:28:14 [detection_layer] {"stage_name":"detection_layer","events_processed":618,"events_dropped":0,"avg_latency_ms":17.692470831797742,"throughput_eps":0,"last_update":"2026-03-21T16:28:09.210434993Z"} +2026/03/21 16:28:14 ───────────────────────────────────────────────── +2026/03/21 16:28:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:28:19 [transform_engine] {"stage_name":"transform_engine","events_processed":618,"events_dropped":0,"avg_latency_ms":708.9236416874188,"throughput_eps":0,"last_update":"2026-03-21T16:28:14.21048562Z"} +2026/03/21 16:28:19 [log_collector] {"stage_name":"log_collector","events_processed":29639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5927.8,"last_update":"2026-03-21T16:28:14.06917441Z"} +2026/03/21 16:28:19 [metric_collector] {"stage_name":"metric_collector","events_processed":18564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3712.8,"last_update":"2026-03-21T16:28:14.069699446Z"} +2026/03/21 16:28:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:28:14.078039572Z"} +2026/03/21 16:28:19 [detection_layer] {"stage_name":"detection_layer","events_processed":618,"events_dropped":0,"avg_latency_ms":17.692470831797742,"throughput_eps":0,"last_update":"2026-03-21T16:28:14.21038174Z"} +2026/03/21 16:28:19 ───────────────────────────────────────────────── +2026/03/21 16:28:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:28:24 [transform_engine] {"stage_name":"transform_engine","events_processed":619,"events_dropped":0,"avg_latency_ms":592.8428323499351,"throughput_eps":0,"last_update":"2026-03-21T16:28:19.339172941Z"} +2026/03/21 16:28:24 [log_collector] {"stage_name":"log_collector","events_processed":29639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5927.8,"last_update":"2026-03-21T16:28:19.068147959Z"} +2026/03/21 16:28:24 [metric_collector] {"stage_name":"metric_collector","events_processed":18569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3713.8,"last_update":"2026-03-21T16:28:19.068590136Z"} +2026/03/21 16:28:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:28:19.0783069Z"} +2026/03/21 16:28:24 [detection_layer] {"stage_name":"detection_layer","events_processed":618,"events_dropped":0,"avg_latency_ms":17.692470831797742,"throughput_eps":0,"last_update":"2026-03-21T16:28:19.210609442Z"} +2026/03/21 16:28:24 ───────────────────────────────────────────────── +2026/03/21 16:28:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:28:29 [detection_layer] {"stage_name":"detection_layer","events_processed":619,"events_dropped":0,"avg_latency_ms":18.549677065438193,"throughput_eps":0,"last_update":"2026-03-21T16:28:24.21087406Z"} +2026/03/21 16:28:29 [transform_engine] {"stage_name":"transform_engine","events_processed":619,"events_dropped":0,"avg_latency_ms":592.8428323499351,"throughput_eps":0,"last_update":"2026-03-21T16:28:24.209693388Z"} +2026/03/21 16:28:29 [log_collector] {"stage_name":"log_collector","events_processed":29639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5927.8,"last_update":"2026-03-21T16:28:29.068377808Z"} +2026/03/21 16:28:29 [metric_collector] {"stage_name":"metric_collector","events_processed":18574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3714.8,"last_update":"2026-03-21T16:28:24.069756962Z"} +2026/03/21 16:28:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:28:24.077457855Z"} +2026/03/21 16:28:29 ───────────────────────────────────────────────── +2026/03/21 16:28:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:28:34 [log_collector] {"stage_name":"log_collector","events_processed":29639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5927.8,"last_update":"2026-03-21T16:28:29.068377808Z"} +2026/03/21 16:28:34 [metric_collector] {"stage_name":"metric_collector","events_processed":18579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3715.8,"last_update":"2026-03-21T16:28:29.068791441Z"} +2026/03/21 16:28:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:28:29.077568334Z"} +2026/03/21 16:28:34 [detection_layer] {"stage_name":"detection_layer","events_processed":619,"events_dropped":0,"avg_latency_ms":18.549677065438193,"throughput_eps":0,"last_update":"2026-03-21T16:28:29.21087528Z"} +2026/03/21 16:28:34 [transform_engine] {"stage_name":"transform_engine","events_processed":619,"events_dropped":0,"avg_latency_ms":592.8428323499351,"throughput_eps":0,"last_update":"2026-03-21T16:28:29.209722171Z"} +2026/03/21 16:28:34 ───────────────────────────────────────────────── +2026/03/21 16:28:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:28:39 [metric_collector] {"stage_name":"metric_collector","events_processed":18584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3716.8,"last_update":"2026-03-21T16:28:34.069243109Z"} +2026/03/21 16:28:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:28:34.07806565Z"} +2026/03/21 16:28:39 [detection_layer] {"stage_name":"detection_layer","events_processed":619,"events_dropped":0,"avg_latency_ms":18.549677065438193,"throughput_eps":0,"last_update":"2026-03-21T16:28:34.210360888Z"} +2026/03/21 16:28:39 [transform_engine] {"stage_name":"transform_engine","events_processed":619,"events_dropped":0,"avg_latency_ms":592.8428323499351,"throughput_eps":0,"last_update":"2026-03-21T16:28:34.210441812Z"} +2026/03/21 16:28:39 [log_collector] {"stage_name":"log_collector","events_processed":29639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5927.8,"last_update":"2026-03-21T16:28:34.068949778Z"} +2026/03/21 16:28:39 ───────────────────────────────────────────────── +2026/03/21 16:28:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:28:44 [log_collector] {"stage_name":"log_collector","events_processed":29639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5927.8,"last_update":"2026-03-21T16:28:39.0681125Z"} +2026/03/21 16:28:44 [metric_collector] {"stage_name":"metric_collector","events_processed":18589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3717.8,"last_update":"2026-03-21T16:28:39.068496376Z"} +2026/03/21 16:28:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:28:39.07811453Z"} +2026/03/21 16:28:44 [detection_layer] {"stage_name":"detection_layer","events_processed":619,"events_dropped":0,"avg_latency_ms":18.549677065438193,"throughput_eps":0,"last_update":"2026-03-21T16:28:39.210383468Z"} +2026/03/21 16:28:44 [transform_engine] {"stage_name":"transform_engine","events_processed":619,"events_dropped":0,"avg_latency_ms":592.8428323499351,"throughput_eps":0,"last_update":"2026-03-21T16:28:39.210335255Z"} +2026/03/21 16:28:44 ───────────────────────────────────────────────── +2026/03/21 16:28:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:28:49 [log_collector] {"stage_name":"log_collector","events_processed":29639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5927.8,"last_update":"2026-03-21T16:28:44.068603215Z"} +2026/03/21 16:28:49 [metric_collector] {"stage_name":"metric_collector","events_processed":18594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3718.8,"last_update":"2026-03-21T16:28:44.069025274Z"} +2026/03/21 16:28:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:28:44.077769985Z"} +2026/03/21 16:28:49 [detection_layer] {"stage_name":"detection_layer","events_processed":619,"events_dropped":0,"avg_latency_ms":18.549677065438193,"throughput_eps":0,"last_update":"2026-03-21T16:28:44.210051175Z"} +2026/03/21 16:28:49 [transform_engine] {"stage_name":"transform_engine","events_processed":619,"events_dropped":0,"avg_latency_ms":592.8428323499351,"throughput_eps":0,"last_update":"2026-03-21T16:28:44.210013924Z"} +2026/03/21 16:28:49 ───────────────────────────────────────────────── +2026/03/21 16:28:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:28:54 [log_collector] {"stage_name":"log_collector","events_processed":29639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5927.8,"last_update":"2026-03-21T16:28:49.068774391Z"} +2026/03/21 16:28:54 [metric_collector] {"stage_name":"metric_collector","events_processed":18599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3719.8,"last_update":"2026-03-21T16:28:49.069231727Z"} +2026/03/21 16:28:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7442,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:28:49.078481987Z"} +2026/03/21 16:28:54 [detection_layer] {"stage_name":"detection_layer","events_processed":619,"events_dropped":0,"avg_latency_ms":18.549677065438193,"throughput_eps":0,"last_update":"2026-03-21T16:28:49.210442984Z"} +2026/03/21 16:28:54 [transform_engine] {"stage_name":"transform_engine","events_processed":620,"events_dropped":0,"avg_latency_ms":488.9009030799481,"throughput_eps":0,"last_update":"2026-03-21T16:28:49.282786537Z"} +2026/03/21 16:28:54 ───────────────────────────────────────────────── +2026/03/21 16:28:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:28:59 [log_collector] {"stage_name":"log_collector","events_processed":29639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5927.8,"last_update":"2026-03-21T16:28:54.068606895Z"} +2026/03/21 16:28:59 [metric_collector] {"stage_name":"metric_collector","events_processed":18604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3720.8,"last_update":"2026-03-21T16:28:54.069010098Z"} +2026/03/21 16:28:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:28:54.077677211Z"} +2026/03/21 16:28:59 [detection_layer] {"stage_name":"detection_layer","events_processed":620,"events_dropped":0,"avg_latency_ms":19.183879252350554,"throughput_eps":0,"last_update":"2026-03-21T16:28:54.209918916Z"} +2026/03/21 16:28:59 [transform_engine] {"stage_name":"transform_engine","events_processed":620,"events_dropped":0,"avg_latency_ms":488.9009030799481,"throughput_eps":0,"last_update":"2026-03-21T16:28:54.209945036Z"} +2026/03/21 16:28:59 ───────────────────────────────────────────────── +2026/03/21 16:29:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:29:04 [log_collector] {"stage_name":"log_collector","events_processed":29639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5927.8,"last_update":"2026-03-21T16:28:59.068675437Z"} +2026/03/21 16:29:04 [metric_collector] {"stage_name":"metric_collector","events_processed":18609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3721.8,"last_update":"2026-03-21T16:28:59.068660189Z"} +2026/03/21 16:29:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7446,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:28:59.077135634Z"} +2026/03/21 16:29:04 [detection_layer] {"stage_name":"detection_layer","events_processed":620,"events_dropped":0,"avg_latency_ms":19.183879252350554,"throughput_eps":0,"last_update":"2026-03-21T16:28:59.21055808Z"} +2026/03/21 16:29:04 [transform_engine] {"stage_name":"transform_engine","events_processed":620,"events_dropped":0,"avg_latency_ms":488.9009030799481,"throughput_eps":0,"last_update":"2026-03-21T16:28:59.210597687Z"} +2026/03/21 16:29:04 ───────────────────────────────────────────────── +2026/03/21 16:29:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:29:09 [transform_engine] {"stage_name":"transform_engine","events_processed":620,"events_dropped":0,"avg_latency_ms":488.9009030799481,"throughput_eps":0,"last_update":"2026-03-21T16:29:04.209853497Z"} +2026/03/21 16:29:09 [log_collector] {"stage_name":"log_collector","events_processed":29639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5927.8,"last_update":"2026-03-21T16:29:04.068721752Z"} +2026/03/21 16:29:09 [metric_collector] {"stage_name":"metric_collector","events_processed":18614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3722.8,"last_update":"2026-03-21T16:29:04.069176744Z"} +2026/03/21 16:29:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:29:04.077612354Z"} +2026/03/21 16:29:09 [detection_layer] {"stage_name":"detection_layer","events_processed":620,"events_dropped":0,"avg_latency_ms":19.183879252350554,"throughput_eps":0,"last_update":"2026-03-21T16:29:04.209877042Z"} +2026/03/21 16:29:09 ───────────────────────────────────────────────── +Saved state: 18 clusters, 29640 messages, reason: none +2026/03/21 16:29:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:29:14 [transform_engine] {"stage_name":"transform_engine","events_processed":620,"events_dropped":0,"avg_latency_ms":488.9009030799481,"throughput_eps":0,"last_update":"2026-03-21T16:29:09.209699364Z"} +2026/03/21 16:29:14 [log_collector] {"stage_name":"log_collector","events_processed":29639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5927.8,"last_update":"2026-03-21T16:29:09.068660518Z"} +2026/03/21 16:29:14 [metric_collector] {"stage_name":"metric_collector","events_processed":18619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3723.8,"last_update":"2026-03-21T16:29:09.068961174Z"} +2026/03/21 16:29:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:29:09.077443863Z"} +2026/03/21 16:29:14 [detection_layer] {"stage_name":"detection_layer","events_processed":620,"events_dropped":0,"avg_latency_ms":19.183879252350554,"throughput_eps":0,"last_update":"2026-03-21T16:29:09.210947104Z"} +2026/03/21 16:29:14 ───────────────────────────────────────────────── +2026/03/21 16:29:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:29:19 [metric_collector] {"stage_name":"metric_collector","events_processed":18624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3724.8,"last_update":"2026-03-21T16:29:14.068681465Z"} +2026/03/21 16:29:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7452,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:29:14.078043759Z"} +2026/03/21 16:29:19 [detection_layer] {"stage_name":"detection_layer","events_processed":620,"events_dropped":0,"avg_latency_ms":19.183879252350554,"throughput_eps":0,"last_update":"2026-03-21T16:29:14.210253954Z"} +2026/03/21 16:29:19 [transform_engine] {"stage_name":"transform_engine","events_processed":620,"events_dropped":0,"avg_latency_ms":488.9009030799481,"throughput_eps":0,"last_update":"2026-03-21T16:29:14.210224768Z"} +2026/03/21 16:29:19 [log_collector] {"stage_name":"log_collector","events_processed":29653,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5930.6,"last_update":"2026-03-21T16:29:14.068532249Z"} +2026/03/21 16:29:19 ───────────────────────────────────────────────── +2026/03/21 16:29:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:29:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:29:19.07706584Z"} +2026/03/21 16:29:24 [detection_layer] {"stage_name":"detection_layer","events_processed":620,"events_dropped":0,"avg_latency_ms":19.183879252350554,"throughput_eps":0,"last_update":"2026-03-21T16:29:19.21144528Z"} +2026/03/21 16:29:24 [transform_engine] {"stage_name":"transform_engine","events_processed":621,"events_dropped":0,"avg_latency_ms":414.4800740639585,"throughput_eps":0,"last_update":"2026-03-21T16:29:19.327254616Z"} +2026/03/21 16:29:24 [log_collector] {"stage_name":"log_collector","events_processed":29653,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5930.6,"last_update":"2026-03-21T16:29:19.068098933Z"} +2026/03/21 16:29:24 [metric_collector] {"stage_name":"metric_collector","events_processed":18629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3725.8,"last_update":"2026-03-21T16:29:19.068578121Z"} +2026/03/21 16:29:24 ───────────────────────────────────────────────── +2026/03/21 16:29:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:29:29 [detection_layer] {"stage_name":"detection_layer","events_processed":621,"events_dropped":0,"avg_latency_ms":19.480621401880445,"throughput_eps":0,"last_update":"2026-03-21T16:29:24.210716123Z"} +2026/03/21 16:29:29 [transform_engine] {"stage_name":"transform_engine","events_processed":621,"events_dropped":0,"avg_latency_ms":414.4800740639585,"throughput_eps":0,"last_update":"2026-03-21T16:29:24.21073567Z"} +2026/03/21 16:29:29 [log_collector] {"stage_name":"log_collector","events_processed":29653,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5930.6,"last_update":"2026-03-21T16:29:24.068395702Z"} +2026/03/21 16:29:29 [metric_collector] {"stage_name":"metric_collector","events_processed":18634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3726.8,"last_update":"2026-03-21T16:29:24.068390933Z"} +2026/03/21 16:29:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:29:24.077344054Z"} +2026/03/21 16:29:29 ───────────────────────────────────────────────── +2026/03/21 16:29:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:29:34 [detection_layer] {"stage_name":"detection_layer","events_processed":621,"events_dropped":0,"avg_latency_ms":19.480621401880445,"throughput_eps":0,"last_update":"2026-03-21T16:29:29.210521646Z"} +2026/03/21 16:29:34 [transform_engine] {"stage_name":"transform_engine","events_processed":621,"events_dropped":0,"avg_latency_ms":414.4800740639585,"throughput_eps":0,"last_update":"2026-03-21T16:29:29.210534951Z"} +2026/03/21 16:29:34 [log_collector] {"stage_name":"log_collector","events_processed":29653,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5930.6,"last_update":"2026-03-21T16:29:29.068494466Z"} +2026/03/21 16:29:34 [metric_collector] {"stage_name":"metric_collector","events_processed":18639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3727.8,"last_update":"2026-03-21T16:29:29.068343236Z"} +2026/03/21 16:29:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:29:29.078307585Z"} +2026/03/21 16:29:34 ───────────────────────────────────────────────── +2026/03/21 16:29:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:29:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:29:34.079430336Z"} +2026/03/21 16:29:39 [detection_layer] {"stage_name":"detection_layer","events_processed":621,"events_dropped":0,"avg_latency_ms":19.480621401880445,"throughput_eps":0,"last_update":"2026-03-21T16:29:34.210836159Z"} +2026/03/21 16:29:39 [transform_engine] {"stage_name":"transform_engine","events_processed":621,"events_dropped":0,"avg_latency_ms":414.4800740639585,"throughput_eps":0,"last_update":"2026-03-21T16:29:34.209696716Z"} +2026/03/21 16:29:39 [log_collector] {"stage_name":"log_collector","events_processed":29653,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5930.6,"last_update":"2026-03-21T16:29:34.068818589Z"} +2026/03/21 16:29:39 [metric_collector] {"stage_name":"metric_collector","events_processed":18644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3728.8,"last_update":"2026-03-21T16:29:34.069191202Z"} +2026/03/21 16:29:39 ───────────────────────────────────────────────── +2026/03/21 16:29:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:29:44 [log_collector] {"stage_name":"log_collector","events_processed":29653,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5930.6,"last_update":"2026-03-21T16:29:39.06856509Z"} +2026/03/21 16:29:44 [metric_collector] {"stage_name":"metric_collector","events_processed":18649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3729.8,"last_update":"2026-03-21T16:29:39.068944176Z"} +2026/03/21 16:29:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:29:39.078555629Z"} +2026/03/21 16:29:44 [detection_layer] {"stage_name":"detection_layer","events_processed":621,"events_dropped":0,"avg_latency_ms":19.480621401880445,"throughput_eps":0,"last_update":"2026-03-21T16:29:39.210863088Z"} +2026/03/21 16:29:44 [transform_engine] {"stage_name":"transform_engine","events_processed":621,"events_dropped":0,"avg_latency_ms":414.4800740639585,"throughput_eps":0,"last_update":"2026-03-21T16:29:39.209719037Z"} +2026/03/21 16:29:44 ───────────────────────────────────────────────── +2026/03/21 16:29:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:29:49 [detection_layer] {"stage_name":"detection_layer","events_processed":621,"events_dropped":0,"avg_latency_ms":19.480621401880445,"throughput_eps":0,"last_update":"2026-03-21T16:29:44.210371078Z"} +2026/03/21 16:29:49 [transform_engine] {"stage_name":"transform_engine","events_processed":621,"events_dropped":0,"avg_latency_ms":414.4800740639585,"throughput_eps":0,"last_update":"2026-03-21T16:29:44.210383082Z"} +2026/03/21 16:29:49 [log_collector] {"stage_name":"log_collector","events_processed":29653,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5930.6,"last_update":"2026-03-21T16:29:44.068163154Z"} +2026/03/21 16:29:49 [metric_collector] {"stage_name":"metric_collector","events_processed":18654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3730.8,"last_update":"2026-03-21T16:29:44.068627644Z"} +2026/03/21 16:29:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:29:44.078043441Z"} +2026/03/21 16:29:49 ───────────────────────────────────────────────── +2026/03/21 16:29:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:29:54 [transform_engine] {"stage_name":"transform_engine","events_processed":622,"events_dropped":0,"avg_latency_ms":345.4528424511668,"throughput_eps":0,"last_update":"2026-03-21T16:29:49.27972859Z"} +2026/03/21 16:29:54 [log_collector] {"stage_name":"log_collector","events_processed":29653,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5930.6,"last_update":"2026-03-21T16:29:49.069023902Z"} +2026/03/21 16:29:54 [metric_collector] {"stage_name":"metric_collector","events_processed":18659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3731.8,"last_update":"2026-03-21T16:29:49.069394693Z"} +2026/03/21 16:29:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:29:49.078120127Z"} +2026/03/21 16:29:54 [detection_layer] {"stage_name":"detection_layer","events_processed":621,"events_dropped":0,"avg_latency_ms":19.480621401880445,"throughput_eps":0,"last_update":"2026-03-21T16:29:49.210370407Z"} +2026/03/21 16:29:54 ───────────────────────────────────────────────── +2026/03/21 16:29:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:29:59 [detection_layer] {"stage_name":"detection_layer","events_processed":622,"events_dropped":0,"avg_latency_ms":20.004708521504355,"throughput_eps":0,"last_update":"2026-03-21T16:29:54.210879767Z"} +2026/03/21 16:29:59 [transform_engine] {"stage_name":"transform_engine","events_processed":622,"events_dropped":0,"avg_latency_ms":345.4528424511668,"throughput_eps":0,"last_update":"2026-03-21T16:29:54.209773088Z"} +2026/03/21 16:29:59 [log_collector] {"stage_name":"log_collector","events_processed":29653,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5930.6,"last_update":"2026-03-21T16:29:54.068609904Z"} +2026/03/21 16:29:59 [metric_collector] {"stage_name":"metric_collector","events_processed":18664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3732.8,"last_update":"2026-03-21T16:29:54.06894213Z"} +2026/03/21 16:29:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:29:54.077738149Z"} +2026/03/21 16:29:59 ───────────────────────────────────────────────── +2026/03/21 16:30:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:30:04 [detection_layer] {"stage_name":"detection_layer","events_processed":622,"events_dropped":0,"avg_latency_ms":20.004708521504355,"throughput_eps":0,"last_update":"2026-03-21T16:29:59.210490552Z"} +2026/03/21 16:30:04 [transform_engine] {"stage_name":"transform_engine","events_processed":622,"events_dropped":0,"avg_latency_ms":345.4528424511668,"throughput_eps":0,"last_update":"2026-03-21T16:29:59.210505962Z"} +2026/03/21 16:30:04 [log_collector] {"stage_name":"log_collector","events_processed":29653,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5930.6,"last_update":"2026-03-21T16:29:59.068885172Z"} +2026/03/21 16:30:04 [metric_collector] {"stage_name":"metric_collector","events_processed":18669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3733.8,"last_update":"2026-03-21T16:29:59.069195587Z"} +2026/03/21 16:30:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7470,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:29:59.078047934Z"} +2026/03/21 16:30:04 ───────────────────────────────────────────────── +2026/03/21 16:30:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:30:09 [log_collector] {"stage_name":"log_collector","events_processed":29653,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5930.6,"last_update":"2026-03-21T16:30:04.068771983Z"} +2026/03/21 16:30:09 [metric_collector] {"stage_name":"metric_collector","events_processed":18674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3734.8,"last_update":"2026-03-21T16:30:04.069210091Z"} +2026/03/21 16:30:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:30:04.081849614Z"} +2026/03/21 16:30:09 [detection_layer] {"stage_name":"detection_layer","events_processed":622,"events_dropped":0,"avg_latency_ms":20.004708521504355,"throughput_eps":0,"last_update":"2026-03-21T16:30:04.210240351Z"} +2026/03/21 16:30:09 [transform_engine] {"stage_name":"transform_engine","events_processed":622,"events_dropped":0,"avg_latency_ms":345.4528424511668,"throughput_eps":0,"last_update":"2026-03-21T16:30:04.210256391Z"} +2026/03/21 16:30:09 ───────────────────────────────────────────────── +2026/03/21 16:30:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:30:14 [detection_layer] {"stage_name":"detection_layer","events_processed":622,"events_dropped":0,"avg_latency_ms":20.004708521504355,"throughput_eps":0,"last_update":"2026-03-21T16:30:09.210648416Z"} +2026/03/21 16:30:14 [transform_engine] {"stage_name":"transform_engine","events_processed":622,"events_dropped":0,"avg_latency_ms":345.4528424511668,"throughput_eps":0,"last_update":"2026-03-21T16:30:09.210660409Z"} +2026/03/21 16:30:14 [log_collector] {"stage_name":"log_collector","events_processed":29653,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5930.6,"last_update":"2026-03-21T16:30:09.068078718Z"} +2026/03/21 16:30:14 [metric_collector] {"stage_name":"metric_collector","events_processed":18679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3735.8,"last_update":"2026-03-21T16:30:09.068418399Z"} +2026/03/21 16:30:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:30:09.077396878Z"} +2026/03/21 16:30:14 ───────────────────────────────────────────────── +Saved state: 18 clusters, 29654 messages, reason: none +2026/03/21 16:30:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:30:19 [detection_layer] {"stage_name":"detection_layer","events_processed":622,"events_dropped":0,"avg_latency_ms":20.004708521504355,"throughput_eps":0,"last_update":"2026-03-21T16:30:14.210376485Z"} +2026/03/21 16:30:19 [transform_engine] {"stage_name":"transform_engine","events_processed":622,"events_dropped":0,"avg_latency_ms":345.4528424511668,"throughput_eps":0,"last_update":"2026-03-21T16:30:14.210388417Z"} +2026/03/21 16:30:19 [log_collector] {"stage_name":"log_collector","events_processed":29653,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5930.6,"last_update":"2026-03-21T16:30:14.068919047Z"} +2026/03/21 16:30:19 [metric_collector] {"stage_name":"metric_collector","events_processed":18684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3736.8,"last_update":"2026-03-21T16:30:14.069383978Z"} +2026/03/21 16:30:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7476,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:30:14.079139526Z"} +2026/03/21 16:30:19 ───────────────────────────────────────────────── +2026/03/21 16:30:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:30:24 [log_collector] {"stage_name":"log_collector","events_processed":29658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5931.6,"last_update":"2026-03-21T16:30:19.068643686Z"} +2026/03/21 16:30:24 [metric_collector] {"stage_name":"metric_collector","events_processed":18689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3737.8,"last_update":"2026-03-21T16:30:19.068631752Z"} +2026/03/21 16:30:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:30:19.07709269Z"} +2026/03/21 16:30:24 [detection_layer] {"stage_name":"detection_layer","events_processed":622,"events_dropped":0,"avg_latency_ms":20.004708521504355,"throughput_eps":0,"last_update":"2026-03-21T16:30:19.210395647Z"} +2026/03/21 16:30:24 [transform_engine] {"stage_name":"transform_engine","events_processed":623,"events_dropped":0,"avg_latency_ms":471.10860896093345,"throughput_eps":0,"last_update":"2026-03-21T16:30:20.184146187Z"} +2026/03/21 16:30:24 ───────────────────────────────────────────────── +2026/03/21 16:30:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:30:29 [log_collector] {"stage_name":"log_collector","events_processed":29658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5931.6,"last_update":"2026-03-21T16:30:24.068418446Z"} +2026/03/21 16:30:29 [metric_collector] {"stage_name":"metric_collector","events_processed":18694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3738.8,"last_update":"2026-03-21T16:30:24.068720966Z"} +2026/03/21 16:30:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7480,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:30:24.076077218Z"} +2026/03/21 16:30:29 [detection_layer] {"stage_name":"detection_layer","events_processed":623,"events_dropped":0,"avg_latency_ms":19.435963417203485,"throughput_eps":0,"last_update":"2026-03-21T16:30:24.210308822Z"} +2026/03/21 16:30:29 [transform_engine] {"stage_name":"transform_engine","events_processed":623,"events_dropped":0,"avg_latency_ms":471.10860896093345,"throughput_eps":0,"last_update":"2026-03-21T16:30:24.210328269Z"} +2026/03/21 16:30:29 ───────────────────────────────────────────────── +2026/03/21 16:30:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:30:34 [log_collector] {"stage_name":"log_collector","events_processed":29658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5931.6,"last_update":"2026-03-21T16:30:29.068078845Z"} +2026/03/21 16:30:34 [metric_collector] {"stage_name":"metric_collector","events_processed":18699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3739.8,"last_update":"2026-03-21T16:30:29.068416952Z"} +2026/03/21 16:30:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7482,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:30:29.077508228Z"} +2026/03/21 16:30:34 [detection_layer] {"stage_name":"detection_layer","events_processed":623,"events_dropped":0,"avg_latency_ms":19.435963417203485,"throughput_eps":0,"last_update":"2026-03-21T16:30:29.210823517Z"} +2026/03/21 16:30:34 [transform_engine] {"stage_name":"transform_engine","events_processed":623,"events_dropped":0,"avg_latency_ms":471.10860896093345,"throughput_eps":0,"last_update":"2026-03-21T16:30:29.20963475Z"} +2026/03/21 16:30:34 ───────────────────────────────────────────────── +2026/03/21 16:30:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:30:39 [transform_engine] {"stage_name":"transform_engine","events_processed":623,"events_dropped":0,"avg_latency_ms":471.10860896093345,"throughput_eps":0,"last_update":"2026-03-21T16:30:34.21040456Z"} +2026/03/21 16:30:39 [log_collector] {"stage_name":"log_collector","events_processed":29658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5931.6,"last_update":"2026-03-21T16:30:34.068473015Z"} +2026/03/21 16:30:39 [metric_collector] {"stage_name":"metric_collector","events_processed":18704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3740.8,"last_update":"2026-03-21T16:30:34.068685824Z"} +2026/03/21 16:30:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:30:34.077193862Z"} +2026/03/21 16:30:39 [detection_layer] {"stage_name":"detection_layer","events_processed":623,"events_dropped":0,"avg_latency_ms":19.435963417203485,"throughput_eps":0,"last_update":"2026-03-21T16:30:34.210385293Z"} +2026/03/21 16:30:39 ───────────────────────────────────────────────── +2026/03/21 16:30:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:30:44 [metric_collector] {"stage_name":"metric_collector","events_processed":18709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3741.8,"last_update":"2026-03-21T16:30:39.069495656Z"} +2026/03/21 16:30:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7486,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:30:39.079808581Z"} +2026/03/21 16:30:44 [detection_layer] {"stage_name":"detection_layer","events_processed":623,"events_dropped":0,"avg_latency_ms":19.435963417203485,"throughput_eps":0,"last_update":"2026-03-21T16:30:39.210409351Z"} +2026/03/21 16:30:44 [transform_engine] {"stage_name":"transform_engine","events_processed":623,"events_dropped":0,"avg_latency_ms":471.10860896093345,"throughput_eps":0,"last_update":"2026-03-21T16:30:39.21042447Z"} +2026/03/21 16:30:44 [log_collector] {"stage_name":"log_collector","events_processed":29658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5931.6,"last_update":"2026-03-21T16:30:39.069225529Z"} +2026/03/21 16:30:44 ───────────────────────────────────────────────── +2026/03/21 16:30:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:30:49 [log_collector] {"stage_name":"log_collector","events_processed":29658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5931.6,"last_update":"2026-03-21T16:30:44.068249938Z"} +2026/03/21 16:30:49 [metric_collector] {"stage_name":"metric_collector","events_processed":18714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3742.8,"last_update":"2026-03-21T16:30:44.068749345Z"} +2026/03/21 16:30:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:30:44.076167485Z"} +2026/03/21 16:30:49 [detection_layer] {"stage_name":"detection_layer","events_processed":623,"events_dropped":0,"avg_latency_ms":19.435963417203485,"throughput_eps":0,"last_update":"2026-03-21T16:30:44.210371997Z"} +2026/03/21 16:30:49 [transform_engine] {"stage_name":"transform_engine","events_processed":623,"events_dropped":0,"avg_latency_ms":471.10860896093345,"throughput_eps":0,"last_update":"2026-03-21T16:30:44.210395232Z"} +2026/03/21 16:30:49 ───────────────────────────────────────────────── +2026/03/21 16:30:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:30:54 [log_collector] {"stage_name":"log_collector","events_processed":29658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5931.6,"last_update":"2026-03-21T16:30:49.068908905Z"} +2026/03/21 16:30:54 [metric_collector] {"stage_name":"metric_collector","events_processed":18719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3743.8,"last_update":"2026-03-21T16:30:49.069168212Z"} +2026/03/21 16:30:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7490,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:30:49.076321705Z"} +2026/03/21 16:30:54 [detection_layer] {"stage_name":"detection_layer","events_processed":623,"events_dropped":0,"avg_latency_ms":19.435963417203485,"throughput_eps":0,"last_update":"2026-03-21T16:30:49.210507231Z"} +2026/03/21 16:30:54 [transform_engine] {"stage_name":"transform_engine","events_processed":624,"events_dropped":0,"avg_latency_ms":785.8308101687469,"throughput_eps":0,"last_update":"2026-03-21T16:30:51.25524939Z"} +2026/03/21 16:30:54 ───────────────────────────────────────────────── +2026/03/21 16:30:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:30:59 [log_collector] {"stage_name":"log_collector","events_processed":29658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5931.6,"last_update":"2026-03-21T16:30:54.068611466Z"} +2026/03/21 16:30:59 [metric_collector] {"stage_name":"metric_collector","events_processed":18724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3744.8,"last_update":"2026-03-21T16:30:54.068809505Z"} +2026/03/21 16:30:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:30:54.075635632Z"} +2026/03/21 16:30:59 [detection_layer] {"stage_name":"detection_layer","events_processed":624,"events_dropped":0,"avg_latency_ms":18.33881333376279,"throughput_eps":0,"last_update":"2026-03-21T16:30:54.210569542Z"} +2026/03/21 16:30:59 [transform_engine] {"stage_name":"transform_engine","events_processed":624,"events_dropped":0,"avg_latency_ms":785.8308101687469,"throughput_eps":0,"last_update":"2026-03-21T16:30:54.210556256Z"} +2026/03/21 16:30:59 ───────────────────────────────────────────────── +2026/03/21 16:31:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:31:04 [log_collector] {"stage_name":"log_collector","events_processed":29661,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5932.2,"last_update":"2026-03-21T16:30:59.068637233Z"} +2026/03/21 16:31:04 [metric_collector] {"stage_name":"metric_collector","events_processed":18729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3745.8,"last_update":"2026-03-21T16:30:59.069073909Z"} +2026/03/21 16:31:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:30:59.076167668Z"} +2026/03/21 16:31:04 [detection_layer] {"stage_name":"detection_layer","events_processed":624,"events_dropped":0,"avg_latency_ms":18.33881333376279,"throughput_eps":0,"last_update":"2026-03-21T16:30:59.210514002Z"} +2026/03/21 16:31:04 [transform_engine] {"stage_name":"transform_engine","events_processed":624,"events_dropped":0,"avg_latency_ms":785.8308101687469,"throughput_eps":0,"last_update":"2026-03-21T16:30:59.210472052Z"} +2026/03/21 16:31:04 ───────────────────────────────────────────────── +2026/03/21 16:31:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:31:09 [log_collector] {"stage_name":"log_collector","events_processed":29669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5933.8,"last_update":"2026-03-21T16:31:04.068667576Z"} +2026/03/21 16:31:09 [metric_collector] {"stage_name":"metric_collector","events_processed":18734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3746.8,"last_update":"2026-03-21T16:31:04.068915461Z"} +2026/03/21 16:31:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7496,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:31:04.078021775Z"} +2026/03/21 16:31:09 [detection_layer] {"stage_name":"detection_layer","events_processed":624,"events_dropped":0,"avg_latency_ms":18.33881333376279,"throughput_eps":0,"last_update":"2026-03-21T16:31:04.210313573Z"} +2026/03/21 16:31:09 [transform_engine] {"stage_name":"transform_engine","events_processed":624,"events_dropped":0,"avg_latency_ms":785.8308101687469,"throughput_eps":0,"last_update":"2026-03-21T16:31:04.21027075Z"} +2026/03/21 16:31:09 ───────────────────────────────────────────────── +2026/03/21 16:31:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:31:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7498,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:31:09.076712898Z"} +2026/03/21 16:31:14 [detection_layer] {"stage_name":"detection_layer","events_processed":624,"events_dropped":0,"avg_latency_ms":18.33881333376279,"throughput_eps":0,"last_update":"2026-03-21T16:31:09.209932984Z"} +2026/03/21 16:31:14 [transform_engine] {"stage_name":"transform_engine","events_processed":624,"events_dropped":0,"avg_latency_ms":785.8308101687469,"throughput_eps":0,"last_update":"2026-03-21T16:31:09.209939998Z"} +2026/03/21 16:31:14 [log_collector] {"stage_name":"log_collector","events_processed":29785,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5957,"last_update":"2026-03-21T16:31:09.069495452Z"} +2026/03/21 16:31:14 [metric_collector] {"stage_name":"metric_collector","events_processed":18739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3747.8,"last_update":"2026-03-21T16:31:09.069759678Z"} +2026/03/21 16:31:14 ───────────────────────────────────────────────── +2026/03/21 16:31:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:31:19 [log_collector] {"stage_name":"log_collector","events_processed":30024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6004.8,"last_update":"2026-03-21T16:31:19.068105932Z"} +2026/03/21 16:31:19 [metric_collector] {"stage_name":"metric_collector","events_processed":18744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3748.8,"last_update":"2026-03-21T16:31:14.06867582Z"} +2026/03/21 16:31:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:31:14.077962008Z"} +2026/03/21 16:31:19 [detection_layer] {"stage_name":"detection_layer","events_processed":624,"events_dropped":0,"avg_latency_ms":18.33881333376279,"throughput_eps":0,"last_update":"2026-03-21T16:31:14.210060516Z"} +2026/03/21 16:31:19 [transform_engine] {"stage_name":"transform_engine","events_processed":624,"events_dropped":0,"avg_latency_ms":785.8308101687469,"throughput_eps":0,"last_update":"2026-03-21T16:31:14.210079192Z"} +2026/03/21 16:31:19 ───────────────────────────────────────────────── +2026/03/21 16:31:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:31:24 [log_collector] {"stage_name":"log_collector","events_processed":30024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6004.8,"last_update":"2026-03-21T16:31:19.068105932Z"} +2026/03/21 16:31:24 [metric_collector] {"stage_name":"metric_collector","events_processed":18749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3749.8,"last_update":"2026-03-21T16:31:19.068839678Z"} +2026/03/21 16:31:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:31:19.079001894Z"} +2026/03/21 16:31:24 [detection_layer] {"stage_name":"detection_layer","events_processed":624,"events_dropped":0,"avg_latency_ms":18.33881333376279,"throughput_eps":0,"last_update":"2026-03-21T16:31:19.210329474Z"} +2026/03/21 16:31:24 [transform_engine] {"stage_name":"transform_engine","events_processed":625,"events_dropped":0,"avg_latency_ms":653.6970821349976,"throughput_eps":0,"last_update":"2026-03-21T16:31:19.33558282Z"} +2026/03/21 16:31:24 ───────────────────────────────────────────────── +Saved state: 18 clusters, 30025 messages, reason: none +2026/03/21 16:31:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:31:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:31:24.077854867Z"} +2026/03/21 16:31:29 [detection_layer] {"stage_name":"detection_layer","events_processed":625,"events_dropped":0,"avg_latency_ms":18.347365067010234,"throughput_eps":0,"last_update":"2026-03-21T16:31:24.210089646Z"} +2026/03/21 16:31:29 [transform_engine] {"stage_name":"transform_engine","events_processed":625,"events_dropped":0,"avg_latency_ms":653.6970821349976,"throughput_eps":0,"last_update":"2026-03-21T16:31:24.210100868Z"} +2026/03/21 16:31:29 [log_collector] {"stage_name":"log_collector","events_processed":30024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6004.8,"last_update":"2026-03-21T16:31:24.068099139Z"} +2026/03/21 16:31:29 [metric_collector] {"stage_name":"metric_collector","events_processed":18754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3750.8,"last_update":"2026-03-21T16:31:24.06860543Z"} +2026/03/21 16:31:29 ───────────────────────────────────────────────── +2026/03/21 16:31:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:31:34 [log_collector] {"stage_name":"log_collector","events_processed":30037,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6007.4,"last_update":"2026-03-21T16:31:34.068093811Z"} +2026/03/21 16:31:34 [metric_collector] {"stage_name":"metric_collector","events_processed":18759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3751.8,"last_update":"2026-03-21T16:31:29.068850346Z"} +2026/03/21 16:31:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7506,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:31:29.079844216Z"} +2026/03/21 16:31:34 [detection_layer] {"stage_name":"detection_layer","events_processed":625,"events_dropped":0,"avg_latency_ms":18.347365067010234,"throughput_eps":0,"last_update":"2026-03-21T16:31:29.210796377Z"} +2026/03/21 16:31:34 [transform_engine] {"stage_name":"transform_engine","events_processed":625,"events_dropped":0,"avg_latency_ms":653.6970821349976,"throughput_eps":0,"last_update":"2026-03-21T16:31:29.209713413Z"} +2026/03/21 16:31:34 ───────────────────────────────────────────────── +2026/03/21 16:31:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:31:39 [log_collector] {"stage_name":"log_collector","events_processed":30037,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6007.4,"last_update":"2026-03-21T16:31:34.068093811Z"} +2026/03/21 16:31:39 [metric_collector] {"stage_name":"metric_collector","events_processed":18764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3752.8,"last_update":"2026-03-21T16:31:34.068487526Z"} +2026/03/21 16:31:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:31:34.076118323Z"} +2026/03/21 16:31:39 [detection_layer] {"stage_name":"detection_layer","events_processed":625,"events_dropped":0,"avg_latency_ms":18.347365067010234,"throughput_eps":0,"last_update":"2026-03-21T16:31:34.210428085Z"} +2026/03/21 16:31:39 [transform_engine] {"stage_name":"transform_engine","events_processed":625,"events_dropped":0,"avg_latency_ms":653.6970821349976,"throughput_eps":0,"last_update":"2026-03-21T16:31:34.210405963Z"} +2026/03/21 16:31:39 ───────────────────────────────────────────────── +2026/03/21 16:31:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:31:44 [log_collector] {"stage_name":"log_collector","events_processed":30038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6007.6,"last_update":"2026-03-21T16:31:39.068560857Z"} +2026/03/21 16:31:44 [metric_collector] {"stage_name":"metric_collector","events_processed":18769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3753.8,"last_update":"2026-03-21T16:31:39.068961865Z"} +2026/03/21 16:31:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:31:39.079203383Z"} +2026/03/21 16:31:44 [detection_layer] {"stage_name":"detection_layer","events_processed":625,"events_dropped":0,"avg_latency_ms":18.347365067010234,"throughput_eps":0,"last_update":"2026-03-21T16:31:39.21059136Z"} +2026/03/21 16:31:44 [transform_engine] {"stage_name":"transform_engine","events_processed":625,"events_dropped":0,"avg_latency_ms":653.6970821349976,"throughput_eps":0,"last_update":"2026-03-21T16:31:39.210611748Z"} +2026/03/21 16:31:44 ───────────────────────────────────────────────── +2026/03/21 16:31:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:31:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7512,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:31:44.077681075Z"} +2026/03/21 16:31:49 [detection_layer] {"stage_name":"detection_layer","events_processed":625,"events_dropped":0,"avg_latency_ms":18.347365067010234,"throughput_eps":0,"last_update":"2026-03-21T16:31:44.209953335Z"} +2026/03/21 16:31:49 [transform_engine] {"stage_name":"transform_engine","events_processed":625,"events_dropped":0,"avg_latency_ms":653.6970821349976,"throughput_eps":0,"last_update":"2026-03-21T16:31:44.209964706Z"} +2026/03/21 16:31:49 [log_collector] {"stage_name":"log_collector","events_processed":30052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6010.4,"last_update":"2026-03-21T16:31:44.068747452Z"} +2026/03/21 16:31:49 [metric_collector] {"stage_name":"metric_collector","events_processed":18774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3754.8,"last_update":"2026-03-21T16:31:44.069058639Z"} +2026/03/21 16:31:49 ───────────────────────────────────────────────── +2026/03/21 16:31:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:31:54 [transform_engine] {"stage_name":"transform_engine","events_processed":626,"events_dropped":0,"avg_latency_ms":546.6769061079981,"throughput_eps":0,"last_update":"2026-03-21T16:31:49.328278693Z"} +2026/03/21 16:31:54 [log_collector] {"stage_name":"log_collector","events_processed":30054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6010.8,"last_update":"2026-03-21T16:31:49.068909448Z"} +2026/03/21 16:31:54 [metric_collector] {"stage_name":"metric_collector","events_processed":18779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3755.8,"last_update":"2026-03-21T16:31:49.069053894Z"} +2026/03/21 16:31:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:31:49.077485987Z"} +2026/03/21 16:31:54 [detection_layer] {"stage_name":"detection_layer","events_processed":625,"events_dropped":0,"avg_latency_ms":18.347365067010234,"throughput_eps":0,"last_update":"2026-03-21T16:31:49.210803438Z"} +2026/03/21 16:31:54 ───────────────────────────────────────────────── +2026/03/21 16:31:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:31:59 [log_collector] {"stage_name":"log_collector","events_processed":30054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6010.8,"last_update":"2026-03-21T16:31:54.068070031Z"} +2026/03/21 16:31:59 [metric_collector] {"stage_name":"metric_collector","events_processed":18784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3756.8,"last_update":"2026-03-21T16:31:54.068739473Z"} +2026/03/21 16:31:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:31:54.077981528Z"} +2026/03/21 16:31:59 [detection_layer] {"stage_name":"detection_layer","events_processed":626,"events_dropped":0,"avg_latency_ms":18.644097853608187,"throughput_eps":0,"last_update":"2026-03-21T16:31:54.210284957Z"} +2026/03/21 16:31:59 [transform_engine] {"stage_name":"transform_engine","events_processed":626,"events_dropped":0,"avg_latency_ms":546.6769061079981,"throughput_eps":0,"last_update":"2026-03-21T16:31:54.210231374Z"} +2026/03/21 16:31:59 ───────────────────────────────────────────────── +2026/03/21 16:32:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:32:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:31:59.077505605Z"} +2026/03/21 16:32:04 [detection_layer] {"stage_name":"detection_layer","events_processed":626,"events_dropped":0,"avg_latency_ms":18.644097853608187,"throughput_eps":0,"last_update":"2026-03-21T16:31:59.210895765Z"} +2026/03/21 16:32:04 [transform_engine] {"stage_name":"transform_engine","events_processed":626,"events_dropped":0,"avg_latency_ms":546.6769061079981,"throughput_eps":0,"last_update":"2026-03-21T16:31:59.209687751Z"} +2026/03/21 16:32:04 [log_collector] {"stage_name":"log_collector","events_processed":30054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6010.8,"last_update":"2026-03-21T16:31:59.0680856Z"} +2026/03/21 16:32:04 [metric_collector] {"stage_name":"metric_collector","events_processed":18788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3757.6,"last_update":"2026-03-21T16:31:59.067962334Z"} +2026/03/21 16:32:04 ───────────────────────────────────────────────── +2026/03/21 16:32:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:32:09 [detection_layer] {"stage_name":"detection_layer","events_processed":626,"events_dropped":0,"avg_latency_ms":18.644097853608187,"throughput_eps":0,"last_update":"2026-03-21T16:32:04.210113483Z"} +2026/03/21 16:32:09 [transform_engine] {"stage_name":"transform_engine","events_processed":626,"events_dropped":0,"avg_latency_ms":546.6769061079981,"throughput_eps":0,"last_update":"2026-03-21T16:32:04.210128953Z"} +2026/03/21 16:32:09 [log_collector] {"stage_name":"log_collector","events_processed":30054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6010.8,"last_update":"2026-03-21T16:32:09.068294449Z"} +2026/03/21 16:32:09 [metric_collector] {"stage_name":"metric_collector","events_processed":18793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3758.6,"last_update":"2026-03-21T16:32:04.068647411Z"} +2026/03/21 16:32:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7520,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:32:04.077802759Z"} +2026/03/21 16:32:09 ───────────────────────────────────────────────── +2026/03/21 16:32:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:32:14 [metric_collector] {"stage_name":"metric_collector","events_processed":18798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3759.6,"last_update":"2026-03-21T16:32:09.068329255Z"} +2026/03/21 16:32:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7522,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:32:09.078106324Z"} +2026/03/21 16:32:14 [detection_layer] {"stage_name":"detection_layer","events_processed":626,"events_dropped":0,"avg_latency_ms":18.644097853608187,"throughput_eps":0,"last_update":"2026-03-21T16:32:09.210448226Z"} +2026/03/21 16:32:14 [transform_engine] {"stage_name":"transform_engine","events_processed":626,"events_dropped":0,"avg_latency_ms":546.6769061079981,"throughput_eps":0,"last_update":"2026-03-21T16:32:09.210338056Z"} +2026/03/21 16:32:14 [log_collector] {"stage_name":"log_collector","events_processed":30054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6010.8,"last_update":"2026-03-21T16:32:09.068294449Z"} +2026/03/21 16:32:14 ───────────────────────────────────────────────── +2026/03/21 16:32:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:32:19 [transform_engine] {"stage_name":"transform_engine","events_processed":626,"events_dropped":0,"avg_latency_ms":546.6769061079981,"throughput_eps":0,"last_update":"2026-03-21T16:32:14.210125899Z"} +2026/03/21 16:32:19 [log_collector] {"stage_name":"log_collector","events_processed":30054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6010.8,"last_update":"2026-03-21T16:32:14.068235585Z"} +2026/03/21 16:32:19 [metric_collector] {"stage_name":"metric_collector","events_processed":18804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3760.8,"last_update":"2026-03-21T16:32:14.068575686Z"} +2026/03/21 16:32:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:32:14.078683218Z"} +2026/03/21 16:32:19 [detection_layer] {"stage_name":"detection_layer","events_processed":626,"events_dropped":0,"avg_latency_ms":18.644097853608187,"throughput_eps":0,"last_update":"2026-03-21T16:32:14.20990211Z"} +2026/03/21 16:32:19 ───────────────────────────────────────────────── +2026/03/21 16:32:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:32:24 [log_collector] {"stage_name":"log_collector","events_processed":30054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6010.8,"last_update":"2026-03-21T16:32:19.068588758Z"} +2026/03/21 16:32:24 [metric_collector] {"stage_name":"metric_collector","events_processed":18809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3761.8,"last_update":"2026-03-21T16:32:19.068894093Z"} +2026/03/21 16:32:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7526,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:32:19.077466374Z"} +2026/03/21 16:32:24 [detection_layer] {"stage_name":"detection_layer","events_processed":626,"events_dropped":0,"avg_latency_ms":18.644097853608187,"throughput_eps":0,"last_update":"2026-03-21T16:32:19.210845664Z"} +2026/03/21 16:32:24 [transform_engine] {"stage_name":"transform_engine","events_processed":627,"events_dropped":0,"avg_latency_ms":454.2031046863985,"throughput_eps":0,"last_update":"2026-03-21T16:32:19.294013359Z"} +2026/03/21 16:32:24 ───────────────────────────────────────────────── +2026/03/21 16:32:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:32:29 [log_collector] {"stage_name":"log_collector","events_processed":30054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6010.8,"last_update":"2026-03-21T16:32:24.069101744Z"} +2026/03/21 16:32:29 [metric_collector] {"stage_name":"metric_collector","events_processed":18814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3762.8,"last_update":"2026-03-21T16:32:24.069087436Z"} +2026/03/21 16:32:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:32:24.078635838Z"} +2026/03/21 16:32:29 [detection_layer] {"stage_name":"detection_layer","events_processed":627,"events_dropped":0,"avg_latency_ms":19.583889282886553,"throughput_eps":0,"last_update":"2026-03-21T16:32:24.209867153Z"} +2026/03/21 16:32:29 [transform_engine] {"stage_name":"transform_engine","events_processed":627,"events_dropped":0,"avg_latency_ms":454.2031046863985,"throughput_eps":0,"last_update":"2026-03-21T16:32:24.209856191Z"} +2026/03/21 16:32:29 ───────────────────────────────────────────────── +2026/03/21 16:32:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:32:34 [log_collector] {"stage_name":"log_collector","events_processed":30054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6010.8,"last_update":"2026-03-21T16:32:29.068640171Z"} +2026/03/21 16:32:34 [metric_collector] {"stage_name":"metric_collector","events_processed":18819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3763.8,"last_update":"2026-03-21T16:32:29.068943111Z"} +2026/03/21 16:32:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:32:29.078472285Z"} +2026/03/21 16:32:34 [detection_layer] {"stage_name":"detection_layer","events_processed":627,"events_dropped":0,"avg_latency_ms":19.583889282886553,"throughput_eps":0,"last_update":"2026-03-21T16:32:29.210916743Z"} +2026/03/21 16:32:34 [transform_engine] {"stage_name":"transform_engine","events_processed":627,"events_dropped":0,"avg_latency_ms":454.2031046863985,"throughput_eps":0,"last_update":"2026-03-21T16:32:29.209716094Z"} +2026/03/21 16:32:34 ───────────────────────────────────────────────── +2026/03/21 16:32:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:32:39 [log_collector] {"stage_name":"log_collector","events_processed":30054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6010.8,"last_update":"2026-03-21T16:32:34.068065718Z"} +2026/03/21 16:32:39 [metric_collector] {"stage_name":"metric_collector","events_processed":18824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3764.8,"last_update":"2026-03-21T16:32:34.068278066Z"} +2026/03/21 16:32:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7532,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:32:34.078135789Z"} +2026/03/21 16:32:39 [detection_layer] {"stage_name":"detection_layer","events_processed":627,"events_dropped":0,"avg_latency_ms":19.583889282886553,"throughput_eps":0,"last_update":"2026-03-21T16:32:34.210441682Z"} +2026/03/21 16:32:39 [transform_engine] {"stage_name":"transform_engine","events_processed":627,"events_dropped":0,"avg_latency_ms":454.2031046863985,"throughput_eps":0,"last_update":"2026-03-21T16:32:34.210478281Z"} +2026/03/21 16:32:39 ───────────────────────────────────────────────── +2026/03/21 16:32:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:32:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:32:39.078600514Z"} +2026/03/21 16:32:44 [detection_layer] {"stage_name":"detection_layer","events_processed":627,"events_dropped":0,"avg_latency_ms":19.583889282886553,"throughput_eps":0,"last_update":"2026-03-21T16:32:39.209880341Z"} +2026/03/21 16:32:44 [transform_engine] {"stage_name":"transform_engine","events_processed":627,"events_dropped":0,"avg_latency_ms":454.2031046863985,"throughput_eps":0,"last_update":"2026-03-21T16:32:39.209821148Z"} +2026/03/21 16:32:44 [log_collector] {"stage_name":"log_collector","events_processed":30054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6010.8,"last_update":"2026-03-21T16:32:39.068637839Z"} +2026/03/21 16:32:44 [metric_collector] {"stage_name":"metric_collector","events_processed":18829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3765.8,"last_update":"2026-03-21T16:32:39.069547091Z"} +2026/03/21 16:32:44 ───────────────────────────────────────────────── +2026/03/21 16:32:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:32:49 [log_collector] {"stage_name":"log_collector","events_processed":30054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6010.8,"last_update":"2026-03-21T16:32:44.06865775Z"} +2026/03/21 16:32:49 [metric_collector] {"stage_name":"metric_collector","events_processed":18833,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3766.6,"last_update":"2026-03-21T16:32:44.06867367Z"} +2026/03/21 16:32:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7536,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:32:44.078184899Z"} +2026/03/21 16:32:49 [detection_layer] {"stage_name":"detection_layer","events_processed":627,"events_dropped":0,"avg_latency_ms":19.583889282886553,"throughput_eps":0,"last_update":"2026-03-21T16:32:44.210610482Z"} +2026/03/21 16:32:49 [transform_engine] {"stage_name":"transform_engine","events_processed":627,"events_dropped":0,"avg_latency_ms":454.2031046863985,"throughput_eps":0,"last_update":"2026-03-21T16:32:44.210555848Z"} +2026/03/21 16:32:49 ───────────────────────────────────────────────── +Saved state: 18 clusters, 30055 messages, reason: none +2026/03/21 16:32:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:32:54 [detection_layer] {"stage_name":"detection_layer","events_processed":627,"events_dropped":0,"avg_latency_ms":19.583889282886553,"throughput_eps":0,"last_update":"2026-03-21T16:32:49.210901187Z"} +2026/03/21 16:32:54 [transform_engine] {"stage_name":"transform_engine","events_processed":628,"events_dropped":0,"avg_latency_ms":378.44313414911886,"throughput_eps":0,"last_update":"2026-03-21T16:32:49.285118156Z"} +2026/03/21 16:32:54 [log_collector] {"stage_name":"log_collector","events_processed":30054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6010.8,"last_update":"2026-03-21T16:32:49.068850266Z"} +2026/03/21 16:32:54 [metric_collector] {"stage_name":"metric_collector","events_processed":18838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3767.6,"last_update":"2026-03-21T16:32:49.068855597Z"} +2026/03/21 16:32:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:32:49.078552231Z"} +2026/03/21 16:32:54 ───────────────────────────────────────────────── +2026/03/21 16:32:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:32:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7540,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:32:54.076045357Z"} +2026/03/21 16:32:59 [detection_layer] {"stage_name":"detection_layer","events_processed":628,"events_dropped":0,"avg_latency_ms":19.92281782630924,"throughput_eps":0,"last_update":"2026-03-21T16:32:54.210857411Z"} +2026/03/21 16:32:59 [transform_engine] {"stage_name":"transform_engine","events_processed":628,"events_dropped":0,"avg_latency_ms":378.44313414911886,"throughput_eps":0,"last_update":"2026-03-21T16:32:54.209756853Z"} +2026/03/21 16:32:59 [log_collector] {"stage_name":"log_collector","events_processed":30067,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6013.4,"last_update":"2026-03-21T16:32:54.068892295Z"} +2026/03/21 16:32:59 [metric_collector] {"stage_name":"metric_collector","events_processed":18844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3768.8,"last_update":"2026-03-21T16:32:54.069331827Z"} +2026/03/21 16:32:59 ───────────────────────────────────────────────── +2026/03/21 16:33:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:33:04 [detection_layer] {"stage_name":"detection_layer","events_processed":628,"events_dropped":0,"avg_latency_ms":19.92281782630924,"throughput_eps":0,"last_update":"2026-03-21T16:32:59.210163386Z"} +2026/03/21 16:33:04 [transform_engine] {"stage_name":"transform_engine","events_processed":628,"events_dropped":0,"avg_latency_ms":378.44313414911886,"throughput_eps":0,"last_update":"2026-03-21T16:32:59.210089234Z"} +2026/03/21 16:33:04 [log_collector] {"stage_name":"log_collector","events_processed":30068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6013.6,"last_update":"2026-03-21T16:32:59.068902369Z"} +2026/03/21 16:33:04 [metric_collector] {"stage_name":"metric_collector","events_processed":18849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3769.8,"last_update":"2026-03-21T16:32:59.069175302Z"} +2026/03/21 16:33:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7542,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:32:59.077771099Z"} +2026/03/21 16:33:04 ───────────────────────────────────────────────── +2026/03/21 16:33:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:33:09 [log_collector] {"stage_name":"log_collector","events_processed":30068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6013.6,"last_update":"2026-03-21T16:33:04.068911729Z"} +2026/03/21 16:33:09 [metric_collector] {"stage_name":"metric_collector","events_processed":18854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3770.8,"last_update":"2026-03-21T16:33:04.069115909Z"} +2026/03/21 16:33:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:33:04.078077086Z"} +2026/03/21 16:33:09 [detection_layer] {"stage_name":"detection_layer","events_processed":628,"events_dropped":0,"avg_latency_ms":19.92281782630924,"throughput_eps":0,"last_update":"2026-03-21T16:33:04.210560027Z"} +2026/03/21 16:33:09 [transform_engine] {"stage_name":"transform_engine","events_processed":628,"events_dropped":0,"avg_latency_ms":378.44313414911886,"throughput_eps":0,"last_update":"2026-03-21T16:33:04.210470767Z"} +2026/03/21 16:33:09 ───────────────────────────────────────────────── +2026/03/21 16:33:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:33:14 [metric_collector] {"stage_name":"metric_collector","events_processed":18859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3771.8,"last_update":"2026-03-21T16:33:09.068990038Z"} +2026/03/21 16:33:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:33:09.077581876Z"} +2026/03/21 16:33:14 [detection_layer] {"stage_name":"detection_layer","events_processed":628,"events_dropped":0,"avg_latency_ms":19.92281782630924,"throughput_eps":0,"last_update":"2026-03-21T16:33:09.209881777Z"} +2026/03/21 16:33:14 [transform_engine] {"stage_name":"transform_engine","events_processed":628,"events_dropped":0,"avg_latency_ms":378.44313414911886,"throughput_eps":0,"last_update":"2026-03-21T16:33:09.209844616Z"} +2026/03/21 16:33:14 [log_collector] {"stage_name":"log_collector","events_processed":30068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6013.6,"last_update":"2026-03-21T16:33:09.06873514Z"} +2026/03/21 16:33:14 ───────────────────────────────────────────────── +2026/03/21 16:33:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:33:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:33:14.078599732Z"} +2026/03/21 16:33:19 [detection_layer] {"stage_name":"detection_layer","events_processed":628,"events_dropped":0,"avg_latency_ms":19.92281782630924,"throughput_eps":0,"last_update":"2026-03-21T16:33:14.210234198Z"} +2026/03/21 16:33:19 [transform_engine] {"stage_name":"transform_engine","events_processed":628,"events_dropped":0,"avg_latency_ms":378.44313414911886,"throughput_eps":0,"last_update":"2026-03-21T16:33:14.210087067Z"} +2026/03/21 16:33:19 [log_collector] {"stage_name":"log_collector","events_processed":30068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6013.6,"last_update":"2026-03-21T16:33:14.068879753Z"} +2026/03/21 16:33:19 [metric_collector] {"stage_name":"metric_collector","events_processed":18869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3773.8,"last_update":"2026-03-21T16:33:19.068312339Z"} +2026/03/21 16:33:19 ───────────────────────────────────────────────── +2026/03/21 16:33:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:33:24 [metric_collector] {"stage_name":"metric_collector","events_processed":18869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3773.8,"last_update":"2026-03-21T16:33:19.068312339Z"} +2026/03/21 16:33:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:33:19.07794957Z"} +2026/03/21 16:33:24 [detection_layer] {"stage_name":"detection_layer","events_processed":628,"events_dropped":0,"avg_latency_ms":19.92281782630924,"throughput_eps":0,"last_update":"2026-03-21T16:33:19.210339593Z"} +2026/03/21 16:33:24 [transform_engine] {"stage_name":"transform_engine","events_processed":628,"events_dropped":0,"avg_latency_ms":378.44313414911886,"throughput_eps":0,"last_update":"2026-03-21T16:33:19.210521763Z"} +2026/03/21 16:33:24 [log_collector] {"stage_name":"log_collector","events_processed":30068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6013.6,"last_update":"2026-03-21T16:33:19.068343598Z"} +2026/03/21 16:33:24 ───────────────────────────────────────────────── +2026/03/21 16:33:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:33:29 [log_collector] {"stage_name":"log_collector","events_processed":30068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6013.6,"last_update":"2026-03-21T16:33:24.068630399Z"} +2026/03/21 16:33:29 [metric_collector] {"stage_name":"metric_collector","events_processed":18874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3774.8,"last_update":"2026-03-21T16:33:24.069035925Z"} +2026/03/21 16:33:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:33:24.078324448Z"} +2026/03/21 16:33:29 [detection_layer] {"stage_name":"detection_layer","events_processed":629,"events_dropped":0,"avg_latency_ms":20.315909861047395,"throughput_eps":0,"last_update":"2026-03-21T16:33:24.21061376Z"} +2026/03/21 16:33:29 [transform_engine] {"stage_name":"transform_engine","events_processed":629,"events_dropped":0,"avg_latency_ms":326.8730485192951,"throughput_eps":0,"last_update":"2026-03-21T16:33:24.210627165Z"} +2026/03/21 16:33:29 ───────────────────────────────────────────────── +2026/03/21 16:33:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:33:34 [detection_layer] {"stage_name":"detection_layer","events_processed":629,"events_dropped":0,"avg_latency_ms":20.315909861047395,"throughput_eps":0,"last_update":"2026-03-21T16:33:29.210227858Z"} +2026/03/21 16:33:34 [transform_engine] {"stage_name":"transform_engine","events_processed":629,"events_dropped":0,"avg_latency_ms":326.8730485192951,"throughput_eps":0,"last_update":"2026-03-21T16:33:29.210250101Z"} +2026/03/21 16:33:34 [log_collector] {"stage_name":"log_collector","events_processed":30068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6013.6,"last_update":"2026-03-21T16:33:29.068678209Z"} +2026/03/21 16:33:34 [metric_collector] {"stage_name":"metric_collector","events_processed":18879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3775.8,"last_update":"2026-03-21T16:33:29.069208996Z"} +2026/03/21 16:33:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:33:29.077831352Z"} +2026/03/21 16:33:34 ───────────────────────────────────────────────── +2026/03/21 16:33:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:33:39 [detection_layer] {"stage_name":"detection_layer","events_processed":629,"events_dropped":0,"avg_latency_ms":20.315909861047395,"throughput_eps":0,"last_update":"2026-03-21T16:33:34.21008016Z"} +2026/03/21 16:33:39 [transform_engine] {"stage_name":"transform_engine","events_processed":629,"events_dropped":0,"avg_latency_ms":326.8730485192951,"throughput_eps":0,"last_update":"2026-03-21T16:33:34.210093104Z"} +2026/03/21 16:33:39 [log_collector] {"stage_name":"log_collector","events_processed":30068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6013.6,"last_update":"2026-03-21T16:33:34.06866597Z"} +2026/03/21 16:33:39 [metric_collector] {"stage_name":"metric_collector","events_processed":18884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3776.8,"last_update":"2026-03-21T16:33:34.068970022Z"} +2026/03/21 16:33:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:33:34.077819374Z"} +2026/03/21 16:33:39 ───────────────────────────────────────────────── +2026/03/21 16:33:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:33:44 [log_collector] {"stage_name":"log_collector","events_processed":30068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6013.6,"last_update":"2026-03-21T16:33:39.068110579Z"} +2026/03/21 16:33:44 [metric_collector] {"stage_name":"metric_collector","events_processed":18889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3777.8,"last_update":"2026-03-21T16:33:39.06864298Z"} +2026/03/21 16:33:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:33:39.077253243Z"} +2026/03/21 16:33:44 [detection_layer] {"stage_name":"detection_layer","events_processed":629,"events_dropped":0,"avg_latency_ms":20.315909861047395,"throughput_eps":0,"last_update":"2026-03-21T16:33:39.210618064Z"} +2026/03/21 16:33:44 [transform_engine] {"stage_name":"transform_engine","events_processed":629,"events_dropped":0,"avg_latency_ms":326.8730485192951,"throughput_eps":0,"last_update":"2026-03-21T16:33:39.210636399Z"} +2026/03/21 16:33:44 ───────────────────────────────────────────────── +2026/03/21 16:33:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:33:49 [log_collector] {"stage_name":"log_collector","events_processed":30068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6013.6,"last_update":"2026-03-21T16:33:44.068997089Z"} +2026/03/21 16:33:49 [metric_collector] {"stage_name":"metric_collector","events_processed":18894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3778.8,"last_update":"2026-03-21T16:33:44.069181702Z"} +2026/03/21 16:33:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7560,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:33:44.076032936Z"} +2026/03/21 16:33:49 [detection_layer] {"stage_name":"detection_layer","events_processed":629,"events_dropped":0,"avg_latency_ms":20.315909861047395,"throughput_eps":0,"last_update":"2026-03-21T16:33:44.210299925Z"} +2026/03/21 16:33:49 [transform_engine] {"stage_name":"transform_engine","events_processed":629,"events_dropped":0,"avg_latency_ms":326.8730485192951,"throughput_eps":0,"last_update":"2026-03-21T16:33:44.21031279Z"} +2026/03/21 16:33:49 ───────────────────────────────────────────────── +2026/03/21 16:33:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:33:54 [metric_collector] {"stage_name":"metric_collector","events_processed":18899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3779.8,"last_update":"2026-03-21T16:33:49.068609363Z"} +2026/03/21 16:33:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:33:49.077191713Z"} +2026/03/21 16:33:54 [detection_layer] {"stage_name":"detection_layer","events_processed":629,"events_dropped":0,"avg_latency_ms":20.315909861047395,"throughput_eps":0,"last_update":"2026-03-21T16:33:49.21054354Z"} +2026/03/21 16:33:54 [transform_engine] {"stage_name":"transform_engine","events_processed":629,"events_dropped":0,"avg_latency_ms":326.8730485192951,"throughput_eps":0,"last_update":"2026-03-21T16:33:49.210557626Z"} +2026/03/21 16:33:54 [log_collector] {"stage_name":"log_collector","events_processed":30068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6013.6,"last_update":"2026-03-21T16:33:49.06810153Z"} +2026/03/21 16:33:54 ───────────────────────────────────────────────── +Saved state: 18 clusters, 30069 messages, reason: none +2026/03/21 16:33:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:33:59 [log_collector] {"stage_name":"log_collector","events_processed":30068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6013.6,"last_update":"2026-03-21T16:33:54.068136834Z"} +2026/03/21 16:33:59 [metric_collector] {"stage_name":"metric_collector","events_processed":18904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3780.8,"last_update":"2026-03-21T16:33:54.06840622Z"} +2026/03/21 16:33:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:33:54.077170128Z"} +2026/03/21 16:33:59 [detection_layer] {"stage_name":"detection_layer","events_processed":630,"events_dropped":0,"avg_latency_ms":19.79357048883792,"throughput_eps":0,"last_update":"2026-03-21T16:33:54.210461408Z"} +2026/03/21 16:33:59 [transform_engine] {"stage_name":"transform_engine","events_processed":630,"events_dropped":0,"avg_latency_ms":274.5729942154361,"throughput_eps":0,"last_update":"2026-03-21T16:33:54.210471928Z"} +2026/03/21 16:33:59 ───────────────────────────────────────────────── +2026/03/21 16:34:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:34:04 [metric_collector] {"stage_name":"metric_collector","events_processed":18909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3781.8,"last_update":"2026-03-21T16:33:59.068873609Z"} +2026/03/21 16:34:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7566,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:33:59.082161963Z"} +2026/03/21 16:34:04 [detection_layer] {"stage_name":"detection_layer","events_processed":630,"events_dropped":0,"avg_latency_ms":19.79357048883792,"throughput_eps":0,"last_update":"2026-03-21T16:33:59.21038793Z"} +2026/03/21 16:34:04 [transform_engine] {"stage_name":"transform_engine","events_processed":630,"events_dropped":0,"avg_latency_ms":274.5729942154361,"throughput_eps":0,"last_update":"2026-03-21T16:33:59.210399583Z"} +2026/03/21 16:34:04 [log_collector] {"stage_name":"log_collector","events_processed":30073,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6014.6,"last_update":"2026-03-21T16:33:59.068487268Z"} +2026/03/21 16:34:04 ───────────────────────────────────────────────── +2026/03/21 16:34:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:34:09 [log_collector] {"stage_name":"log_collector","events_processed":30073,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6014.6,"last_update":"2026-03-21T16:34:04.068885693Z"} +2026/03/21 16:34:09 [metric_collector] {"stage_name":"metric_collector","events_processed":18914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3782.8,"last_update":"2026-03-21T16:34:04.069217328Z"} +2026/03/21 16:34:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:34:04.07630221Z"} +2026/03/21 16:34:09 [detection_layer] {"stage_name":"detection_layer","events_processed":630,"events_dropped":0,"avg_latency_ms":19.79357048883792,"throughput_eps":0,"last_update":"2026-03-21T16:34:04.210459619Z"} +2026/03/21 16:34:09 [transform_engine] {"stage_name":"transform_engine","events_processed":630,"events_dropped":0,"avg_latency_ms":274.5729942154361,"throughput_eps":0,"last_update":"2026-03-21T16:34:04.210472964Z"} +2026/03/21 16:34:09 ───────────────────────────────────────────────── +2026/03/21 16:34:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:34:14 [log_collector] {"stage_name":"log_collector","events_processed":30073,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6014.6,"last_update":"2026-03-21T16:34:09.068061834Z"} +2026/03/21 16:34:14 [metric_collector] {"stage_name":"metric_collector","events_processed":18919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3783.8,"last_update":"2026-03-21T16:34:09.068406845Z"} +2026/03/21 16:34:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7570,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:34:09.075802742Z"} +2026/03/21 16:34:14 [detection_layer] {"stage_name":"detection_layer","events_processed":630,"events_dropped":0,"avg_latency_ms":19.79357048883792,"throughput_eps":0,"last_update":"2026-03-21T16:34:09.210067026Z"} +2026/03/21 16:34:14 [transform_engine] {"stage_name":"transform_engine","events_processed":630,"events_dropped":0,"avg_latency_ms":274.5729942154361,"throughput_eps":0,"last_update":"2026-03-21T16:34:09.210045224Z"} +2026/03/21 16:34:14 ───────────────────────────────────────────────── +2026/03/21 16:34:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:34:19 [log_collector] {"stage_name":"log_collector","events_processed":30073,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6014.6,"last_update":"2026-03-21T16:34:14.068277032Z"} +2026/03/21 16:34:19 [metric_collector] {"stage_name":"metric_collector","events_processed":18924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3784.8,"last_update":"2026-03-21T16:34:14.0685373Z"} +2026/03/21 16:34:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7572,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:34:14.075561866Z"} +2026/03/21 16:34:19 [detection_layer] {"stage_name":"detection_layer","events_processed":630,"events_dropped":0,"avg_latency_ms":19.79357048883792,"throughput_eps":0,"last_update":"2026-03-21T16:34:14.210801919Z"} +2026/03/21 16:34:19 [transform_engine] {"stage_name":"transform_engine","events_processed":630,"events_dropped":0,"avg_latency_ms":274.5729942154361,"throughput_eps":0,"last_update":"2026-03-21T16:34:14.209710829Z"} +2026/03/21 16:34:19 ───────────────────────────────────────────────── +2026/03/21 16:34:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:34:24 [transform_engine] {"stage_name":"transform_engine","events_processed":630,"events_dropped":0,"avg_latency_ms":274.5729942154361,"throughput_eps":0,"last_update":"2026-03-21T16:34:19.20962622Z"} +2026/03/21 16:34:24 [log_collector] {"stage_name":"log_collector","events_processed":30073,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6014.6,"last_update":"2026-03-21T16:34:19.068559336Z"} +2026/03/21 16:34:24 [metric_collector] {"stage_name":"metric_collector","events_processed":18929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3785.8,"last_update":"2026-03-21T16:34:19.068788154Z"} +2026/03/21 16:34:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:34:19.079164511Z"} +2026/03/21 16:34:24 [detection_layer] {"stage_name":"detection_layer","events_processed":630,"events_dropped":0,"avg_latency_ms":19.79357048883792,"throughput_eps":0,"last_update":"2026-03-21T16:34:19.21069631Z"} +2026/03/21 16:34:24 ───────────────────────────────────────────────── +2026/03/21 16:34:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:34:29 [log_collector] {"stage_name":"log_collector","events_processed":30073,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6014.6,"last_update":"2026-03-21T16:34:24.068690138Z"} +2026/03/21 16:34:29 [metric_collector] {"stage_name":"metric_collector","events_processed":18934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3786.8,"last_update":"2026-03-21T16:34:24.069017896Z"} +2026/03/21 16:34:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7576,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:34:24.075269472Z"} +2026/03/21 16:34:29 [detection_layer] {"stage_name":"detection_layer","events_processed":630,"events_dropped":0,"avg_latency_ms":19.79357048883792,"throughput_eps":0,"last_update":"2026-03-21T16:34:24.210525334Z"} +2026/03/21 16:34:29 [transform_engine] {"stage_name":"transform_engine","events_processed":631,"events_dropped":0,"avg_latency_ms":1463.3896053723488,"throughput_eps":0,"last_update":"2026-03-21T16:34:25.428299874Z"} +2026/03/21 16:34:29 ───────────────────────────────────────────────── +2026/03/21 16:34:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:34:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:34:29.075149771Z"} +2026/03/21 16:34:34 [detection_layer] {"stage_name":"detection_layer","events_processed":631,"events_dropped":0,"avg_latency_ms":19.192067391070335,"throughput_eps":0,"last_update":"2026-03-21T16:34:29.21038284Z"} +2026/03/21 16:34:34 [transform_engine] {"stage_name":"transform_engine","events_processed":631,"events_dropped":0,"avg_latency_ms":1463.3896053723488,"throughput_eps":0,"last_update":"2026-03-21T16:34:29.2103671Z"} +2026/03/21 16:34:34 [log_collector] {"stage_name":"log_collector","events_processed":30073,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6014.6,"last_update":"2026-03-21T16:34:29.068874661Z"} +2026/03/21 16:34:34 [metric_collector] {"stage_name":"metric_collector","events_processed":18939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3787.8,"last_update":"2026-03-21T16:34:29.068866735Z"} +2026/03/21 16:34:34 ───────────────────────────────────────────────── +2026/03/21 16:34:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:34:39 [transform_engine] {"stage_name":"transform_engine","events_processed":631,"events_dropped":0,"avg_latency_ms":1463.3896053723488,"throughput_eps":0,"last_update":"2026-03-21T16:34:34.210084305Z"} +2026/03/21 16:34:39 [log_collector] {"stage_name":"log_collector","events_processed":30073,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6014.6,"last_update":"2026-03-21T16:34:34.068968788Z"} +2026/03/21 16:34:39 [metric_collector] {"stage_name":"metric_collector","events_processed":18944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3788.8,"last_update":"2026-03-21T16:34:34.069087004Z"} +2026/03/21 16:34:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7580,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:34:34.076805269Z"} +2026/03/21 16:34:39 [detection_layer] {"stage_name":"detection_layer","events_processed":631,"events_dropped":0,"avg_latency_ms":19.192067391070335,"throughput_eps":0,"last_update":"2026-03-21T16:34:34.210058235Z"} +2026/03/21 16:34:39 ───────────────────────────────────────────────── +2026/03/21 16:34:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:34:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:34:39.075670489Z"} +2026/03/21 16:34:44 [detection_layer] {"stage_name":"detection_layer","events_processed":631,"events_dropped":0,"avg_latency_ms":19.192067391070335,"throughput_eps":0,"last_update":"2026-03-21T16:34:39.210695711Z"} +2026/03/21 16:34:44 [transform_engine] {"stage_name":"transform_engine","events_processed":631,"events_dropped":0,"avg_latency_ms":1463.3896053723488,"throughput_eps":0,"last_update":"2026-03-21T16:34:39.210720388Z"} +2026/03/21 16:34:44 [log_collector] {"stage_name":"log_collector","events_processed":30076,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6015.2,"last_update":"2026-03-21T16:34:39.068401164Z"} +2026/03/21 16:34:44 [metric_collector] {"stage_name":"metric_collector","events_processed":18949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3789.8,"last_update":"2026-03-21T16:34:39.068644481Z"} +2026/03/21 16:34:44 ───────────────────────────────────────────────── +2026/03/21 16:34:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:34:49 [log_collector] {"stage_name":"log_collector","events_processed":30084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6016.8,"last_update":"2026-03-21T16:34:44.0685954Z"} +2026/03/21 16:34:49 [metric_collector] {"stage_name":"metric_collector","events_processed":18953,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3790.6,"last_update":"2026-03-21T16:34:44.068588155Z"} +2026/03/21 16:34:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:34:44.077211244Z"} +2026/03/21 16:34:49 [detection_layer] {"stage_name":"detection_layer","events_processed":631,"events_dropped":0,"avg_latency_ms":19.192067391070335,"throughput_eps":0,"last_update":"2026-03-21T16:34:44.210595712Z"} +2026/03/21 16:34:49 [transform_engine] {"stage_name":"transform_engine","events_processed":631,"events_dropped":0,"avg_latency_ms":1463.3896053723488,"throughput_eps":0,"last_update":"2026-03-21T16:34:44.210619287Z"} +2026/03/21 16:34:49 ───────────────────────────────────────────────── +2026/03/21 16:34:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:34:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7586,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:34:49.076987565Z"} +2026/03/21 16:34:54 [detection_layer] {"stage_name":"detection_layer","events_processed":631,"events_dropped":0,"avg_latency_ms":19.192067391070335,"throughput_eps":0,"last_update":"2026-03-21T16:34:49.209853149Z"} +2026/03/21 16:34:54 [transform_engine] {"stage_name":"transform_engine","events_processed":631,"events_dropped":0,"avg_latency_ms":1463.3896053723488,"throughput_eps":0,"last_update":"2026-03-21T16:34:49.209829223Z"} +2026/03/21 16:34:54 [log_collector] {"stage_name":"log_collector","events_processed":30228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6045.6,"last_update":"2026-03-21T16:34:49.068511238Z"} +2026/03/21 16:34:54 [metric_collector] {"stage_name":"metric_collector","events_processed":18959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3791.8,"last_update":"2026-03-21T16:34:49.068739455Z"} +2026/03/21 16:34:54 ───────────────────────────────────────────────── +Saved state: 18 clusters, 30438 messages, reason: none +2026/03/21 16:34:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:34:59 [log_collector] {"stage_name":"log_collector","events_processed":30392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6078.4,"last_update":"2026-03-21T16:34:54.068976527Z"} +2026/03/21 16:34:59 [metric_collector] {"stage_name":"metric_collector","events_processed":18964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3792.8,"last_update":"2026-03-21T16:34:54.069311559Z"} +2026/03/21 16:34:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7588,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:34:54.075769329Z"} +2026/03/21 16:34:59 [detection_layer] {"stage_name":"detection_layer","events_processed":632,"events_dropped":0,"avg_latency_ms":18.07358011285627,"throughput_eps":0,"last_update":"2026-03-21T16:34:54.210561454Z"} +2026/03/21 16:34:59 [transform_engine] {"stage_name":"transform_engine","events_processed":632,"events_dropped":0,"avg_latency_ms":1194.0158110978791,"throughput_eps":0,"last_update":"2026-03-21T16:34:54.210584799Z"} +2026/03/21 16:34:59 ───────────────────────────────────────────────── +2026/03/21 16:35:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:35:04 [log_collector] {"stage_name":"log_collector","events_processed":30439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6087.8,"last_update":"2026-03-21T16:34:59.068752694Z"} +2026/03/21 16:35:04 [metric_collector] {"stage_name":"metric_collector","events_processed":18969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3793.8,"last_update":"2026-03-21T16:34:59.068999206Z"} +2026/03/21 16:35:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:34:59.077357677Z"} +2026/03/21 16:35:04 [detection_layer] {"stage_name":"detection_layer","events_processed":632,"events_dropped":0,"avg_latency_ms":18.07358011285627,"throughput_eps":0,"last_update":"2026-03-21T16:34:59.210741575Z"} +2026/03/21 16:35:04 [transform_engine] {"stage_name":"transform_engine","events_processed":632,"events_dropped":0,"avg_latency_ms":1194.0158110978791,"throughput_eps":0,"last_update":"2026-03-21T16:34:59.210697931Z"} +2026/03/21 16:35:04 ───────────────────────────────────────────────── +2026/03/21 16:35:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:35:09 [log_collector] {"stage_name":"log_collector","events_processed":30439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6087.8,"last_update":"2026-03-21T16:35:04.068640302Z"} +2026/03/21 16:35:09 [metric_collector] {"stage_name":"metric_collector","events_processed":18974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3794.8,"last_update":"2026-03-21T16:35:04.069033175Z"} +2026/03/21 16:35:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7592,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:35:04.077244263Z"} +2026/03/21 16:35:09 [detection_layer] {"stage_name":"detection_layer","events_processed":632,"events_dropped":0,"avg_latency_ms":18.07358011285627,"throughput_eps":0,"last_update":"2026-03-21T16:35:04.210469205Z"} +2026/03/21 16:35:09 [transform_engine] {"stage_name":"transform_engine","events_processed":632,"events_dropped":0,"avg_latency_ms":1194.0158110978791,"throughput_eps":0,"last_update":"2026-03-21T16:35:04.210493161Z"} +2026/03/21 16:35:09 ───────────────────────────────────────────────── +2026/03/21 16:35:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:35:14 [transform_engine] {"stage_name":"transform_engine","events_processed":632,"events_dropped":0,"avg_latency_ms":1194.0158110978791,"throughput_eps":0,"last_update":"2026-03-21T16:35:09.209638054Z"} +2026/03/21 16:35:14 [log_collector] {"stage_name":"log_collector","events_processed":30439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6087.8,"last_update":"2026-03-21T16:35:09.06876979Z"} +2026/03/21 16:35:14 [metric_collector] {"stage_name":"metric_collector","events_processed":18979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3795.8,"last_update":"2026-03-21T16:35:09.069001705Z"} +2026/03/21 16:35:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:35:09.07845351Z"} +2026/03/21 16:35:14 [detection_layer] {"stage_name":"detection_layer","events_processed":632,"events_dropped":0,"avg_latency_ms":18.07358011285627,"throughput_eps":0,"last_update":"2026-03-21T16:35:09.210808887Z"} +2026/03/21 16:35:14 ───────────────────────────────────────────────── +2026/03/21 16:35:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:35:19 [detection_layer] {"stage_name":"detection_layer","events_processed":632,"events_dropped":0,"avg_latency_ms":18.07358011285627,"throughput_eps":0,"last_update":"2026-03-21T16:35:14.210323627Z"} +2026/03/21 16:35:19 [transform_engine] {"stage_name":"transform_engine","events_processed":632,"events_dropped":0,"avg_latency_ms":1194.0158110978791,"throughput_eps":0,"last_update":"2026-03-21T16:35:14.210212814Z"} +2026/03/21 16:35:19 [log_collector] {"stage_name":"log_collector","events_processed":30439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6087.8,"last_update":"2026-03-21T16:35:14.068932201Z"} +2026/03/21 16:35:19 [metric_collector] {"stage_name":"metric_collector","events_processed":18984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3796.8,"last_update":"2026-03-21T16:35:14.069517722Z"} +2026/03/21 16:35:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:35:14.078972283Z"} +2026/03/21 16:35:19 ───────────────────────────────────────────────── +2026/03/21 16:35:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:35:24 [detection_layer] {"stage_name":"detection_layer","events_processed":632,"events_dropped":0,"avg_latency_ms":18.07358011285627,"throughput_eps":0,"last_update":"2026-03-21T16:35:19.210511553Z"} +2026/03/21 16:35:24 [transform_engine] {"stage_name":"transform_engine","events_processed":633,"events_dropped":0,"avg_latency_ms":1171.4227486783034,"throughput_eps":0,"last_update":"2026-03-21T16:35:20.291595788Z"} +2026/03/21 16:35:24 [log_collector] {"stage_name":"log_collector","events_processed":30442,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6088.4,"last_update":"2026-03-21T16:35:19.068392665Z"} +2026/03/21 16:35:24 [metric_collector] {"stage_name":"metric_collector","events_processed":18989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3797.8,"last_update":"2026-03-21T16:35:19.068736855Z"} +2026/03/21 16:35:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:35:19.077236416Z"} +2026/03/21 16:35:24 ───────────────────────────────────────────────── +2026/03/21 16:35:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:35:29 [transform_engine] {"stage_name":"transform_engine","events_processed":633,"events_dropped":0,"avg_latency_ms":1171.4227486783034,"throughput_eps":0,"last_update":"2026-03-21T16:35:24.210562337Z"} +2026/03/21 16:35:29 [log_collector] {"stage_name":"log_collector","events_processed":30452,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6090.4,"last_update":"2026-03-21T16:35:24.068709959Z"} +2026/03/21 16:35:29 [metric_collector] {"stage_name":"metric_collector","events_processed":18994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3798.8,"last_update":"2026-03-21T16:35:24.069042176Z"} +2026/03/21 16:35:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:35:24.076300359Z"} +2026/03/21 16:35:29 [detection_layer] {"stage_name":"detection_layer","events_processed":633,"events_dropped":0,"avg_latency_ms":17.833947490285016,"throughput_eps":0,"last_update":"2026-03-21T16:35:24.210549813Z"} +2026/03/21 16:35:29 ───────────────────────────────────────────────── +2026/03/21 16:35:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:35:34 [transform_engine] {"stage_name":"transform_engine","events_processed":633,"events_dropped":0,"avg_latency_ms":1171.4227486783034,"throughput_eps":0,"last_update":"2026-03-21T16:35:29.21042131Z"} +2026/03/21 16:35:34 [log_collector] {"stage_name":"log_collector","events_processed":30453,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6090.6,"last_update":"2026-03-21T16:35:29.068656569Z"} +2026/03/21 16:35:34 [metric_collector] {"stage_name":"metric_collector","events_processed":18999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3799.8,"last_update":"2026-03-21T16:35:29.068947807Z"} +2026/03/21 16:35:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7602,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:35:29.078003805Z"} +2026/03/21 16:35:34 [detection_layer] {"stage_name":"detection_layer","events_processed":633,"events_dropped":0,"avg_latency_ms":17.833947490285016,"throughput_eps":0,"last_update":"2026-03-21T16:35:29.210405539Z"} +2026/03/21 16:35:34 ───────────────────────────────────────────────── +2026/03/21 16:35:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:35:39 [metric_collector] {"stage_name":"metric_collector","events_processed":19004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3800.8,"last_update":"2026-03-21T16:35:34.069003274Z"} +2026/03/21 16:35:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:35:34.078196274Z"} +2026/03/21 16:35:39 [detection_layer] {"stage_name":"detection_layer","events_processed":633,"events_dropped":0,"avg_latency_ms":17.833947490285016,"throughput_eps":0,"last_update":"2026-03-21T16:35:34.210512194Z"} +2026/03/21 16:35:39 [transform_engine] {"stage_name":"transform_engine","events_processed":633,"events_dropped":0,"avg_latency_ms":1171.4227486783034,"throughput_eps":0,"last_update":"2026-03-21T16:35:34.210528236Z"} +2026/03/21 16:35:39 [log_collector] {"stage_name":"log_collector","events_processed":30467,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6093.4,"last_update":"2026-03-21T16:35:34.068737885Z"} +2026/03/21 16:35:39 ───────────────────────────────────────────────── +2026/03/21 16:35:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:35:44 [log_collector] {"stage_name":"log_collector","events_processed":30469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6093.8,"last_update":"2026-03-21T16:35:39.068776068Z"} +2026/03/21 16:35:44 [metric_collector] {"stage_name":"metric_collector","events_processed":19009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3801.8,"last_update":"2026-03-21T16:35:39.069086644Z"} +2026/03/21 16:35:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:35:39.078203137Z"} +2026/03/21 16:35:44 [detection_layer] {"stage_name":"detection_layer","events_processed":633,"events_dropped":0,"avg_latency_ms":17.833947490285016,"throughput_eps":0,"last_update":"2026-03-21T16:35:39.210587688Z"} +2026/03/21 16:35:44 [transform_engine] {"stage_name":"transform_engine","events_processed":633,"events_dropped":0,"avg_latency_ms":1171.4227486783034,"throughput_eps":0,"last_update":"2026-03-21T16:35:39.210603178Z"} +2026/03/21 16:35:44 ───────────────────────────────────────────────── +2026/03/21 16:35:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:35:49 [detection_layer] {"stage_name":"detection_layer","events_processed":633,"events_dropped":0,"avg_latency_ms":17.833947490285016,"throughput_eps":0,"last_update":"2026-03-21T16:35:44.210561597Z"} +2026/03/21 16:35:49 [transform_engine] {"stage_name":"transform_engine","events_processed":633,"events_dropped":0,"avg_latency_ms":1171.4227486783034,"throughput_eps":0,"last_update":"2026-03-21T16:35:44.210573941Z"} +2026/03/21 16:35:49 [log_collector] {"stage_name":"log_collector","events_processed":30469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6093.8,"last_update":"2026-03-21T16:35:44.068238147Z"} +2026/03/21 16:35:49 [metric_collector] {"stage_name":"metric_collector","events_processed":19014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3802.8,"last_update":"2026-03-21T16:35:44.068953697Z"} +2026/03/21 16:35:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:35:44.077330654Z"} +2026/03/21 16:35:49 ───────────────────────────────────────────────── +2026/03/21 16:35:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:35:54 [metric_collector] {"stage_name":"metric_collector","events_processed":19019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3803.8,"last_update":"2026-03-21T16:35:49.068941981Z"} +2026/03/21 16:35:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:35:49.07809843Z"} +2026/03/21 16:35:54 [detection_layer] {"stage_name":"detection_layer","events_processed":633,"events_dropped":0,"avg_latency_ms":17.833947490285016,"throughput_eps":0,"last_update":"2026-03-21T16:35:49.210493001Z"} +2026/03/21 16:35:54 [transform_engine] {"stage_name":"transform_engine","events_processed":634,"events_dropped":0,"avg_latency_ms":960.9020221426427,"throughput_eps":0,"last_update":"2026-03-21T16:35:49.329329551Z"} +2026/03/21 16:35:54 [log_collector] {"stage_name":"log_collector","events_processed":30469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6093.8,"last_update":"2026-03-21T16:35:49.068710066Z"} +2026/03/21 16:35:54 ───────────────────────────────────────────────── +2026/03/21 16:35:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:35:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:35:54.078121138Z"} +2026/03/21 16:35:59 [detection_layer] {"stage_name":"detection_layer","events_processed":634,"events_dropped":0,"avg_latency_ms":18.153532592228014,"throughput_eps":0,"last_update":"2026-03-21T16:35:54.210384769Z"} +2026/03/21 16:35:59 [transform_engine] {"stage_name":"transform_engine","events_processed":634,"events_dropped":0,"avg_latency_ms":960.9020221426427,"throughput_eps":0,"last_update":"2026-03-21T16:35:54.210397583Z"} +2026/03/21 16:35:59 [log_collector] {"stage_name":"log_collector","events_processed":30469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6093.8,"last_update":"2026-03-21T16:35:54.069183718Z"} +2026/03/21 16:35:59 [metric_collector] {"stage_name":"metric_collector","events_processed":19024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3804.8,"last_update":"2026-03-21T16:35:54.069519381Z"} +2026/03/21 16:35:59 ───────────────────────────────────────────────── +2026/03/21 16:36:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:36:04 [log_collector] {"stage_name":"log_collector","events_processed":30469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6093.8,"last_update":"2026-03-21T16:35:59.068637202Z"} +2026/03/21 16:36:04 [metric_collector] {"stage_name":"metric_collector","events_processed":19029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3805.8,"last_update":"2026-03-21T16:35:59.068893444Z"} +2026/03/21 16:36:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:35:59.079131044Z"} +2026/03/21 16:36:04 [detection_layer] {"stage_name":"detection_layer","events_processed":634,"events_dropped":0,"avg_latency_ms":18.153532592228014,"throughput_eps":0,"last_update":"2026-03-21T16:35:59.210466376Z"} +2026/03/21 16:36:04 [transform_engine] {"stage_name":"transform_engine","events_processed":634,"events_dropped":0,"avg_latency_ms":960.9020221426427,"throughput_eps":0,"last_update":"2026-03-21T16:35:59.210482808Z"} +2026/03/21 16:36:04 ───────────────────────────────────────────────── +2026/03/21 16:36:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:36:09 [metric_collector] {"stage_name":"metric_collector","events_processed":19034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3806.8,"last_update":"2026-03-21T16:36:04.06890287Z"} +2026/03/21 16:36:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:36:04.078400474Z"} +2026/03/21 16:36:09 [detection_layer] {"stage_name":"detection_layer","events_processed":634,"events_dropped":0,"avg_latency_ms":18.153532592228014,"throughput_eps":0,"last_update":"2026-03-21T16:36:04.210882932Z"} +2026/03/21 16:36:09 [transform_engine] {"stage_name":"transform_engine","events_processed":634,"events_dropped":0,"avg_latency_ms":960.9020221426427,"throughput_eps":0,"last_update":"2026-03-21T16:36:04.209643108Z"} +2026/03/21 16:36:09 [log_collector] {"stage_name":"log_collector","events_processed":30469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6093.8,"last_update":"2026-03-21T16:36:04.068100453Z"} +2026/03/21 16:36:09 ───────────────────────────────────────────────── +2026/03/21 16:36:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:36:14 [log_collector] {"stage_name":"log_collector","events_processed":30469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6093.8,"last_update":"2026-03-21T16:36:09.068983082Z"} +2026/03/21 16:36:14 [metric_collector] {"stage_name":"metric_collector","events_processed":19039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3807.8,"last_update":"2026-03-21T16:36:09.069084927Z"} +2026/03/21 16:36:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:36:09.076058335Z"} +2026/03/21 16:36:14 [detection_layer] {"stage_name":"detection_layer","events_processed":634,"events_dropped":0,"avg_latency_ms":18.153532592228014,"throughput_eps":0,"last_update":"2026-03-21T16:36:09.210404464Z"} +2026/03/21 16:36:14 [transform_engine] {"stage_name":"transform_engine","events_processed":634,"events_dropped":0,"avg_latency_ms":960.9020221426427,"throughput_eps":0,"last_update":"2026-03-21T16:36:09.210419863Z"} +2026/03/21 16:36:14 ───────────────────────────────────────────────── +2026/03/21 16:36:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:36:19 [log_collector] {"stage_name":"log_collector","events_processed":30469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6093.8,"last_update":"2026-03-21T16:36:14.06850388Z"} +2026/03/21 16:36:19 [metric_collector] {"stage_name":"metric_collector","events_processed":19044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3808.8,"last_update":"2026-03-21T16:36:14.068919807Z"} +2026/03/21 16:36:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7620,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:36:14.077977107Z"} +2026/03/21 16:36:19 [detection_layer] {"stage_name":"detection_layer","events_processed":634,"events_dropped":0,"avg_latency_ms":18.153532592228014,"throughput_eps":0,"last_update":"2026-03-21T16:36:14.210193837Z"} +2026/03/21 16:36:19 [transform_engine] {"stage_name":"transform_engine","events_processed":634,"events_dropped":0,"avg_latency_ms":960.9020221426427,"throughput_eps":0,"last_update":"2026-03-21T16:36:14.21020595Z"} +2026/03/21 16:36:19 ───────────────────────────────────────────────── +2026/03/21 16:36:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:36:24 [log_collector] {"stage_name":"log_collector","events_processed":30469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6093.8,"last_update":"2026-03-21T16:36:19.068636268Z"} +2026/03/21 16:36:24 [metric_collector] {"stage_name":"metric_collector","events_processed":19049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3809.8,"last_update":"2026-03-21T16:36:19.068952565Z"} +2026/03/21 16:36:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7622,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:36:19.078294219Z"} +2026/03/21 16:36:24 [detection_layer] {"stage_name":"detection_layer","events_processed":634,"events_dropped":0,"avg_latency_ms":18.153532592228014,"throughput_eps":0,"last_update":"2026-03-21T16:36:19.210644916Z"} +2026/03/21 16:36:24 [transform_engine] {"stage_name":"transform_engine","events_processed":635,"events_dropped":0,"avg_latency_ms":783.5668769141142,"throughput_eps":0,"last_update":"2026-03-21T16:36:19.284889376Z"} +2026/03/21 16:36:24 ───────────────────────────────────────────────── +2026/03/21 16:36:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:36:29 [metric_collector] {"stage_name":"metric_collector","events_processed":19054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3810.8,"last_update":"2026-03-21T16:36:24.069531627Z"} +2026/03/21 16:36:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:36:24.078722372Z"} +2026/03/21 16:36:29 [detection_layer] {"stage_name":"detection_layer","events_processed":635,"events_dropped":0,"avg_latency_ms":19.062620473782413,"throughput_eps":0,"last_update":"2026-03-21T16:36:24.210092981Z"} +2026/03/21 16:36:29 [transform_engine] {"stage_name":"transform_engine","events_processed":635,"events_dropped":0,"avg_latency_ms":783.5668769141142,"throughput_eps":0,"last_update":"2026-03-21T16:36:24.209952251Z"} +2026/03/21 16:36:29 [log_collector] {"stage_name":"log_collector","events_processed":30469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6093.8,"last_update":"2026-03-21T16:36:24.069063901Z"} +2026/03/21 16:36:29 ───────────────────────────────────────────────── +Saved state: 18 clusters, 30470 messages, reason: none +2026/03/21 16:36:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:36:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:36:29.07798561Z"} +2026/03/21 16:36:34 [detection_layer] {"stage_name":"detection_layer","events_processed":635,"events_dropped":0,"avg_latency_ms":19.062620473782413,"throughput_eps":0,"last_update":"2026-03-21T16:36:29.210347418Z"} +2026/03/21 16:36:34 [transform_engine] {"stage_name":"transform_engine","events_processed":635,"events_dropped":0,"avg_latency_ms":783.5668769141142,"throughput_eps":0,"last_update":"2026-03-21T16:36:29.210241555Z"} +2026/03/21 16:36:34 [log_collector] {"stage_name":"log_collector","events_processed":30469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6093.8,"last_update":"2026-03-21T16:36:29.06874552Z"} +2026/03/21 16:36:34 [metric_collector] {"stage_name":"metric_collector","events_processed":19059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3811.8,"last_update":"2026-03-21T16:36:29.069397038Z"} +2026/03/21 16:36:34 ───────────────────────────────────────────────── +2026/03/21 16:36:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:36:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:36:34.077530267Z"} +2026/03/21 16:36:39 [detection_layer] {"stage_name":"detection_layer","events_processed":635,"events_dropped":0,"avg_latency_ms":19.062620473782413,"throughput_eps":0,"last_update":"2026-03-21T16:36:34.210713378Z"} +2026/03/21 16:36:39 [transform_engine] {"stage_name":"transform_engine","events_processed":635,"events_dropped":0,"avg_latency_ms":783.5668769141142,"throughput_eps":0,"last_update":"2026-03-21T16:36:34.209659289Z"} +2026/03/21 16:36:39 [log_collector] {"stage_name":"log_collector","events_processed":30472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6094.4,"last_update":"2026-03-21T16:36:34.06905891Z"} +2026/03/21 16:36:39 [metric_collector] {"stage_name":"metric_collector","events_processed":19064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3812.8,"last_update":"2026-03-21T16:36:34.069431724Z"} +2026/03/21 16:36:39 ───────────────────────────────────────────────── +2026/03/21 16:36:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:36:44 [log_collector] {"stage_name":"log_collector","events_processed":30483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6096.6,"last_update":"2026-03-21T16:36:39.068601291Z"} +2026/03/21 16:36:44 [metric_collector] {"stage_name":"metric_collector","events_processed":19069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3813.8,"last_update":"2026-03-21T16:36:39.068962783Z"} +2026/03/21 16:36:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:36:39.078494802Z"} +2026/03/21 16:36:44 [detection_layer] {"stage_name":"detection_layer","events_processed":635,"events_dropped":0,"avg_latency_ms":19.062620473782413,"throughput_eps":0,"last_update":"2026-03-21T16:36:39.210726721Z"} +2026/03/21 16:36:44 [transform_engine] {"stage_name":"transform_engine","events_processed":635,"events_dropped":0,"avg_latency_ms":783.5668769141142,"throughput_eps":0,"last_update":"2026-03-21T16:36:39.210769674Z"} +2026/03/21 16:36:44 ───────────────────────────────────────────────── +2026/03/21 16:36:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:36:49 [metric_collector] {"stage_name":"metric_collector","events_processed":19073,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3814.6,"last_update":"2026-03-21T16:36:44.068121659Z"} +2026/03/21 16:36:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7632,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:36:44.077678675Z"} +2026/03/21 16:36:49 [detection_layer] {"stage_name":"detection_layer","events_processed":635,"events_dropped":0,"avg_latency_ms":19.062620473782413,"throughput_eps":0,"last_update":"2026-03-21T16:36:44.210089737Z"} +2026/03/21 16:36:49 [transform_engine] {"stage_name":"transform_engine","events_processed":635,"events_dropped":0,"avg_latency_ms":783.5668769141142,"throughput_eps":0,"last_update":"2026-03-21T16:36:44.210144973Z"} +2026/03/21 16:36:49 [log_collector] {"stage_name":"log_collector","events_processed":30483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6096.6,"last_update":"2026-03-21T16:36:44.068080089Z"} +2026/03/21 16:36:49 ───────────────────────────────────────────────── +2026/03/21 16:36:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:36:54 [transform_engine] {"stage_name":"transform_engine","events_processed":636,"events_dropped":0,"avg_latency_ms":649.8211195312914,"throughput_eps":0,"last_update":"2026-03-21T16:36:49.324851586Z"} +2026/03/21 16:36:54 [log_collector] {"stage_name":"log_collector","events_processed":30483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6096.6,"last_update":"2026-03-21T16:36:49.068557858Z"} +2026/03/21 16:36:54 [metric_collector] {"stage_name":"metric_collector","events_processed":19078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3815.6,"last_update":"2026-03-21T16:36:49.068572956Z"} +2026/03/21 16:36:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:36:49.077763802Z"} +2026/03/21 16:36:54 [detection_layer] {"stage_name":"detection_layer","events_processed":635,"events_dropped":0,"avg_latency_ms":19.062620473782413,"throughput_eps":0,"last_update":"2026-03-21T16:36:49.210054895Z"} +2026/03/21 16:36:54 ───────────────────────────────────────────────── +2026/03/21 16:36:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:36:59 [log_collector] {"stage_name":"log_collector","events_processed":30483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6096.6,"last_update":"2026-03-21T16:36:54.06866771Z"} +2026/03/21 16:36:59 [metric_collector] {"stage_name":"metric_collector","events_processed":19083,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3816.6,"last_update":"2026-03-21T16:36:54.068645217Z"} +2026/03/21 16:36:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:36:54.077495881Z"} +2026/03/21 16:36:59 [detection_layer] {"stage_name":"detection_layer","events_processed":636,"events_dropped":0,"avg_latency_ms":19.20938077902593,"throughput_eps":0,"last_update":"2026-03-21T16:36:54.210963788Z"} +2026/03/21 16:36:59 [transform_engine] {"stage_name":"transform_engine","events_processed":636,"events_dropped":0,"avg_latency_ms":649.8211195312914,"throughput_eps":0,"last_update":"2026-03-21T16:36:54.209733561Z"} +2026/03/21 16:36:59 ───────────────────────────────────────────────── +2026/03/21 16:37:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:37:04 [log_collector] {"stage_name":"log_collector","events_processed":30483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6096.6,"last_update":"2026-03-21T16:36:59.068237777Z"} +2026/03/21 16:37:04 [metric_collector] {"stage_name":"metric_collector","events_processed":19089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3817.8,"last_update":"2026-03-21T16:36:59.068721864Z"} +2026/03/21 16:37:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:36:59.078129856Z"} +2026/03/21 16:37:04 [detection_layer] {"stage_name":"detection_layer","events_processed":636,"events_dropped":0,"avg_latency_ms":19.20938077902593,"throughput_eps":0,"last_update":"2026-03-21T16:36:59.210329523Z"} +2026/03/21 16:37:04 [transform_engine] {"stage_name":"transform_engine","events_processed":636,"events_dropped":0,"avg_latency_ms":649.8211195312914,"throughput_eps":0,"last_update":"2026-03-21T16:36:59.210341767Z"} +2026/03/21 16:37:04 ───────────────────────────────────────────────── +2026/03/21 16:37:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:37:09 [metric_collector] {"stage_name":"metric_collector","events_processed":19094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3818.8,"last_update":"2026-03-21T16:37:04.068687358Z"} +2026/03/21 16:37:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7640,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:37:04.07472268Z"} +2026/03/21 16:37:09 [detection_layer] {"stage_name":"detection_layer","events_processed":636,"events_dropped":0,"avg_latency_ms":19.20938077902593,"throughput_eps":0,"last_update":"2026-03-21T16:37:04.210008458Z"} +2026/03/21 16:37:09 [transform_engine] {"stage_name":"transform_engine","events_processed":636,"events_dropped":0,"avg_latency_ms":649.8211195312914,"throughput_eps":0,"last_update":"2026-03-21T16:37:04.209980565Z"} +2026/03/21 16:37:09 [log_collector] {"stage_name":"log_collector","events_processed":30483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6096.6,"last_update":"2026-03-21T16:37:04.068098471Z"} +2026/03/21 16:37:09 ───────────────────────────────────────────────── +2026/03/21 16:37:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:37:14 [metric_collector] {"stage_name":"metric_collector","events_processed":19099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3819.8,"last_update":"2026-03-21T16:37:09.069294265Z"} +2026/03/21 16:37:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:37:09.07862507Z"} +2026/03/21 16:37:14 [detection_layer] {"stage_name":"detection_layer","events_processed":636,"events_dropped":0,"avg_latency_ms":19.20938077902593,"throughput_eps":0,"last_update":"2026-03-21T16:37:09.209868675Z"} +2026/03/21 16:37:14 [transform_engine] {"stage_name":"transform_engine","events_processed":636,"events_dropped":0,"avg_latency_ms":649.8211195312914,"throughput_eps":0,"last_update":"2026-03-21T16:37:09.209813139Z"} +2026/03/21 16:37:14 [log_collector] {"stage_name":"log_collector","events_processed":30483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6096.6,"last_update":"2026-03-21T16:37:09.068528399Z"} +2026/03/21 16:37:14 ───────────────────────────────────────────────── +2026/03/21 16:37:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:37:19 [metric_collector] {"stage_name":"metric_collector","events_processed":19104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3820.8,"last_update":"2026-03-21T16:37:14.068529757Z"} +2026/03/21 16:37:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:37:14.075158986Z"} +2026/03/21 16:37:19 [detection_layer] {"stage_name":"detection_layer","events_processed":636,"events_dropped":0,"avg_latency_ms":19.20938077902593,"throughput_eps":0,"last_update":"2026-03-21T16:37:14.210421239Z"} +2026/03/21 16:37:19 [transform_engine] {"stage_name":"transform_engine","events_processed":636,"events_dropped":0,"avg_latency_ms":649.8211195312914,"throughput_eps":0,"last_update":"2026-03-21T16:37:14.210484881Z"} +2026/03/21 16:37:19 [log_collector] {"stage_name":"log_collector","events_processed":30483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6096.6,"last_update":"2026-03-21T16:37:14.068074495Z"} +2026/03/21 16:37:19 ───────────────────────────────────────────────── +2026/03/21 16:37:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:37:24 [transform_engine] {"stage_name":"transform_engine","events_processed":636,"events_dropped":0,"avg_latency_ms":649.8211195312914,"throughput_eps":0,"last_update":"2026-03-21T16:37:19.210109285Z"} +2026/03/21 16:37:24 [log_collector] {"stage_name":"log_collector","events_processed":30483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6096.6,"last_update":"2026-03-21T16:37:24.068405294Z"} +2026/03/21 16:37:24 [metric_collector] {"stage_name":"metric_collector","events_processed":19109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3821.8,"last_update":"2026-03-21T16:37:19.069003528Z"} +2026/03/21 16:37:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7646,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:37:19.075718732Z"} +2026/03/21 16:37:24 [detection_layer] {"stage_name":"detection_layer","events_processed":636,"events_dropped":0,"avg_latency_ms":19.20938077902593,"throughput_eps":0,"last_update":"2026-03-21T16:37:19.210079308Z"} +2026/03/21 16:37:24 ───────────────────────────────────────────────── +2026/03/21 16:37:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:37:29 [log_collector] {"stage_name":"log_collector","events_processed":30483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6096.6,"last_update":"2026-03-21T16:37:24.068405294Z"} +2026/03/21 16:37:29 [metric_collector] {"stage_name":"metric_collector","events_processed":19114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3822.8,"last_update":"2026-03-21T16:37:24.06890961Z"} +2026/03/21 16:37:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:37:24.0785932Z"} +2026/03/21 16:37:29 [detection_layer] {"stage_name":"detection_layer","events_processed":637,"events_dropped":0,"avg_latency_ms":20.63002342322075,"throughput_eps":0,"last_update":"2026-03-21T16:37:24.21087337Z"} +2026/03/21 16:37:29 [transform_engine] {"stage_name":"transform_engine","events_processed":637,"events_dropped":0,"avg_latency_ms":536.1476056250332,"throughput_eps":0,"last_update":"2026-03-21T16:37:24.20978192Z"} +2026/03/21 16:37:29 ───────────────────────────────────────────────── +2026/03/21 16:37:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:37:34 [log_collector] {"stage_name":"log_collector","events_processed":30483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6096.6,"last_update":"2026-03-21T16:37:29.06876347Z"} +2026/03/21 16:37:34 [metric_collector] {"stage_name":"metric_collector","events_processed":19119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3823.8,"last_update":"2026-03-21T16:37:29.069167875Z"} +2026/03/21 16:37:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7650,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:37:29.078942088Z"} +2026/03/21 16:37:34 [detection_layer] {"stage_name":"detection_layer","events_processed":637,"events_dropped":0,"avg_latency_ms":20.63002342322075,"throughput_eps":0,"last_update":"2026-03-21T16:37:29.210376568Z"} +2026/03/21 16:37:34 [transform_engine] {"stage_name":"transform_engine","events_processed":637,"events_dropped":0,"avg_latency_ms":536.1476056250332,"throughput_eps":0,"last_update":"2026-03-21T16:37:29.210338605Z"} +2026/03/21 16:37:34 ───────────────────────────────────────────────── +Saved state: 18 clusters, 30484 messages, reason: none +2026/03/21 16:37:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:37:39 [detection_layer] {"stage_name":"detection_layer","events_processed":637,"events_dropped":0,"avg_latency_ms":20.63002342322075,"throughput_eps":0,"last_update":"2026-03-21T16:37:34.210716548Z"} +2026/03/21 16:37:39 [transform_engine] {"stage_name":"transform_engine","events_processed":637,"events_dropped":0,"avg_latency_ms":536.1476056250332,"throughput_eps":0,"last_update":"2026-03-21T16:37:34.210783907Z"} +2026/03/21 16:37:39 [log_collector] {"stage_name":"log_collector","events_processed":30483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6096.6,"last_update":"2026-03-21T16:37:34.069258666Z"} +2026/03/21 16:37:39 [metric_collector] {"stage_name":"metric_collector","events_processed":19124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3824.8,"last_update":"2026-03-21T16:37:34.069807297Z"} +2026/03/21 16:37:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:37:34.07824988Z"} +2026/03/21 16:37:39 ───────────────────────────────────────────────── +2026/03/21 16:37:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:37:44 [log_collector] {"stage_name":"log_collector","events_processed":30488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6097.6,"last_update":"2026-03-21T16:37:39.068678012Z"} +2026/03/21 16:37:44 [metric_collector] {"stage_name":"metric_collector","events_processed":19129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3825.8,"last_update":"2026-03-21T16:37:39.068714171Z"} +2026/03/21 16:37:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:37:39.075461195Z"} +2026/03/21 16:37:44 [detection_layer] {"stage_name":"detection_layer","events_processed":637,"events_dropped":0,"avg_latency_ms":20.63002342322075,"throughput_eps":0,"last_update":"2026-03-21T16:37:39.210720693Z"} +2026/03/21 16:37:44 [transform_engine] {"stage_name":"transform_engine","events_processed":637,"events_dropped":0,"avg_latency_ms":536.1476056250332,"throughput_eps":0,"last_update":"2026-03-21T16:37:39.210689964Z"} +2026/03/21 16:37:44 ───────────────────────────────────────────────── +2026/03/21 16:37:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:37:49 [metric_collector] {"stage_name":"metric_collector","events_processed":19134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3826.8,"last_update":"2026-03-21T16:37:44.06908684Z"} +2026/03/21 16:37:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:37:44.075546935Z"} +2026/03/21 16:37:49 [detection_layer] {"stage_name":"detection_layer","events_processed":637,"events_dropped":0,"avg_latency_ms":20.63002342322075,"throughput_eps":0,"last_update":"2026-03-21T16:37:44.209863345Z"} +2026/03/21 16:37:49 [transform_engine] {"stage_name":"transform_engine","events_processed":637,"events_dropped":0,"avg_latency_ms":536.1476056250332,"throughput_eps":0,"last_update":"2026-03-21T16:37:44.209715573Z"} +2026/03/21 16:37:49 [log_collector] {"stage_name":"log_collector","events_processed":30488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6097.6,"last_update":"2026-03-21T16:37:44.069097Z"} +2026/03/21 16:37:49 ───────────────────────────────────────────────── +2026/03/21 16:37:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:37:54 [log_collector] {"stage_name":"log_collector","events_processed":30488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6097.6,"last_update":"2026-03-21T16:37:49.069007272Z"} +2026/03/21 16:37:54 [metric_collector] {"stage_name":"metric_collector","events_processed":19139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3827.8,"last_update":"2026-03-21T16:37:49.07175209Z"} +2026/03/21 16:37:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:37:49.078195201Z"} +2026/03/21 16:37:54 [detection_layer] {"stage_name":"detection_layer","events_processed":637,"events_dropped":0,"avg_latency_ms":20.63002342322075,"throughput_eps":0,"last_update":"2026-03-21T16:37:49.210475723Z"} +2026/03/21 16:37:54 [transform_engine] {"stage_name":"transform_engine","events_processed":637,"events_dropped":0,"avg_latency_ms":536.1476056250332,"throughput_eps":0,"last_update":"2026-03-21T16:37:44.209715573Z"} +2026/03/21 16:37:54 ───────────────────────────────────────────────── +2026/03/21 16:37:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:37:59 [metric_collector] {"stage_name":"metric_collector","events_processed":19144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3828.8,"last_update":"2026-03-21T16:37:54.069571134Z"} +2026/03/21 16:37:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7660,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:37:54.076978874Z"} +2026/03/21 16:37:59 [detection_layer] {"stage_name":"detection_layer","events_processed":637,"events_dropped":0,"avg_latency_ms":20.63002342322075,"throughput_eps":0,"last_update":"2026-03-21T16:37:54.210220257Z"} +2026/03/21 16:37:59 [transform_engine] {"stage_name":"transform_engine","events_processed":638,"events_dropped":0,"avg_latency_ms":1500.2478733000266,"throughput_eps":0,"last_update":"2026-03-21T16:37:54.567156388Z"} +2026/03/21 16:37:59 [log_collector] {"stage_name":"log_collector","events_processed":30488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6097.6,"last_update":"2026-03-21T16:37:54.069244067Z"} +2026/03/21 16:37:59 ───────────────────────────────────────────────── +2026/03/21 16:38:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:38:04 [transform_engine] {"stage_name":"transform_engine","events_processed":638,"events_dropped":0,"avg_latency_ms":1500.2478733000266,"throughput_eps":0,"last_update":"2026-03-21T16:37:59.209658061Z"} +2026/03/21 16:38:04 [log_collector] {"stage_name":"log_collector","events_processed":30488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6097.6,"last_update":"2026-03-21T16:37:59.068339817Z"} +2026/03/21 16:38:04 [metric_collector] {"stage_name":"metric_collector","events_processed":19149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3829.8,"last_update":"2026-03-21T16:37:59.068646825Z"} +2026/03/21 16:38:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7662,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:37:59.080548203Z"} +2026/03/21 16:38:04 [detection_layer] {"stage_name":"detection_layer","events_processed":638,"events_dropped":0,"avg_latency_ms":19.3447221385766,"throughput_eps":0,"last_update":"2026-03-21T16:37:59.210751265Z"} +2026/03/21 16:38:04 ───────────────────────────────────────────────── +2026/03/21 16:38:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:38:09 [detection_layer] {"stage_name":"detection_layer","events_processed":638,"events_dropped":0,"avg_latency_ms":19.3447221385766,"throughput_eps":0,"last_update":"2026-03-21T16:38:04.21008118Z"} +2026/03/21 16:38:09 [transform_engine] {"stage_name":"transform_engine","events_processed":638,"events_dropped":0,"avg_latency_ms":1500.2478733000266,"throughput_eps":0,"last_update":"2026-03-21T16:38:04.210055932Z"} +2026/03/21 16:38:09 [log_collector] {"stage_name":"log_collector","events_processed":30488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6097.6,"last_update":"2026-03-21T16:38:04.068725586Z"} +2026/03/21 16:38:09 [metric_collector] {"stage_name":"metric_collector","events_processed":19154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3830.8,"last_update":"2026-03-21T16:38:04.068991946Z"} +2026/03/21 16:38:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:38:04.076847424Z"} +2026/03/21 16:38:09 ───────────────────────────────────────────────── +2026/03/21 16:38:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:38:14 [detection_layer] {"stage_name":"detection_layer","events_processed":638,"events_dropped":0,"avg_latency_ms":19.3447221385766,"throughput_eps":0,"last_update":"2026-03-21T16:38:09.210203062Z"} +2026/03/21 16:38:14 [transform_engine] {"stage_name":"transform_engine","events_processed":638,"events_dropped":0,"avg_latency_ms":1500.2478733000266,"throughput_eps":0,"last_update":"2026-03-21T16:38:09.210166182Z"} +2026/03/21 16:38:14 [log_collector] {"stage_name":"log_collector","events_processed":30488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6097.6,"last_update":"2026-03-21T16:38:09.068202201Z"} +2026/03/21 16:38:14 [metric_collector] {"stage_name":"metric_collector","events_processed":19159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3831.8,"last_update":"2026-03-21T16:38:09.068470446Z"} +2026/03/21 16:38:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:38:09.079009333Z"} +2026/03/21 16:38:14 ───────────────────────────────────────────────── +2026/03/21 16:38:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:38:19 [transform_engine] {"stage_name":"transform_engine","events_processed":638,"events_dropped":0,"avg_latency_ms":1500.2478733000266,"throughput_eps":0,"last_update":"2026-03-21T16:38:14.210575913Z"} +2026/03/21 16:38:19 [log_collector] {"stage_name":"log_collector","events_processed":30488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6097.6,"last_update":"2026-03-21T16:38:14.069208436Z"} +2026/03/21 16:38:19 [metric_collector] {"stage_name":"metric_collector","events_processed":19164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3832.8,"last_update":"2026-03-21T16:38:14.06919507Z"} +2026/03/21 16:38:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7668,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:38:14.077335474Z"} +2026/03/21 16:38:19 [detection_layer] {"stage_name":"detection_layer","events_processed":638,"events_dropped":0,"avg_latency_ms":19.3447221385766,"throughput_eps":0,"last_update":"2026-03-21T16:38:14.210549773Z"} +2026/03/21 16:38:19 ───────────────────────────────────────────────── +2026/03/21 16:38:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:38:24 [log_collector] {"stage_name":"log_collector","events_processed":30497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6099.4,"last_update":"2026-03-21T16:38:19.068905791Z"} +2026/03/21 16:38:24 [metric_collector] {"stage_name":"metric_collector","events_processed":19169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3833.8,"last_update":"2026-03-21T16:38:19.069045047Z"} +2026/03/21 16:38:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7670,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:38:19.076792047Z"} +2026/03/21 16:38:24 [detection_layer] {"stage_name":"detection_layer","events_processed":638,"events_dropped":0,"avg_latency_ms":19.3447221385766,"throughput_eps":0,"last_update":"2026-03-21T16:38:19.210019572Z"} +2026/03/21 16:38:24 [transform_engine] {"stage_name":"transform_engine","events_processed":639,"events_dropped":0,"avg_latency_ms":1243.4262122400214,"throughput_eps":0,"last_update":"2026-03-21T16:38:19.426203185Z"} +2026/03/21 16:38:24 ───────────────────────────────────────────────── +2026/03/21 16:38:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:38:29 [metric_collector] {"stage_name":"metric_collector","events_processed":19174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3834.8,"last_update":"2026-03-21T16:38:24.068232063Z"} +2026/03/21 16:38:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:38:24.0779203Z"} +2026/03/21 16:38:29 [detection_layer] {"stage_name":"detection_layer","events_processed":639,"events_dropped":0,"avg_latency_ms":18.375422310861282,"throughput_eps":0,"last_update":"2026-03-21T16:38:24.210049021Z"} +2026/03/21 16:38:29 [transform_engine] {"stage_name":"transform_engine","events_processed":639,"events_dropped":0,"avg_latency_ms":1243.4262122400214,"throughput_eps":0,"last_update":"2026-03-21T16:38:24.210058419Z"} +2026/03/21 16:38:29 [log_collector] {"stage_name":"log_collector","events_processed":30649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6129.8,"last_update":"2026-03-21T16:38:24.068089008Z"} +2026/03/21 16:38:29 ───────────────────────────────────────────────── +2026/03/21 16:38:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:38:34 [metric_collector] {"stage_name":"metric_collector","events_processed":19179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3835.8,"last_update":"2026-03-21T16:38:29.068401408Z"} +2026/03/21 16:38:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:38:29.07491757Z"} +2026/03/21 16:38:34 [detection_layer] {"stage_name":"detection_layer","events_processed":639,"events_dropped":0,"avg_latency_ms":18.375422310861282,"throughput_eps":0,"last_update":"2026-03-21T16:38:29.210103536Z"} +2026/03/21 16:38:34 [transform_engine] {"stage_name":"transform_engine","events_processed":639,"events_dropped":0,"avg_latency_ms":1243.4262122400214,"throughput_eps":0,"last_update":"2026-03-21T16:38:29.210061916Z"} +2026/03/21 16:38:34 [log_collector] {"stage_name":"log_collector","events_processed":30844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6168.8,"last_update":"2026-03-21T16:38:29.068107484Z"} +2026/03/21 16:38:34 ───────────────────────────────────────────────── +2026/03/21 16:38:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:38:39 [log_collector] {"stage_name":"log_collector","events_processed":30846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6169.2,"last_update":"2026-03-21T16:38:34.068797577Z"} +2026/03/21 16:38:39 [metric_collector] {"stage_name":"metric_collector","events_processed":19184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3836.8,"last_update":"2026-03-21T16:38:34.06908128Z"} +2026/03/21 16:38:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7676,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:38:34.074971423Z"} +2026/03/21 16:38:39 [detection_layer] {"stage_name":"detection_layer","events_processed":639,"events_dropped":0,"avg_latency_ms":18.375422310861282,"throughput_eps":0,"last_update":"2026-03-21T16:38:34.210227904Z"} +2026/03/21 16:38:39 [transform_engine] {"stage_name":"transform_engine","events_processed":639,"events_dropped":0,"avg_latency_ms":1243.4262122400214,"throughput_eps":0,"last_update":"2026-03-21T16:38:34.210280975Z"} +2026/03/21 16:38:39 ───────────────────────────────────────────────── +2026/03/21 16:38:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:38:44 [detection_layer] {"stage_name":"detection_layer","events_processed":639,"events_dropped":0,"avg_latency_ms":18.375422310861282,"throughput_eps":0,"last_update":"2026-03-21T16:38:39.210656013Z"} +2026/03/21 16:38:44 [transform_engine] {"stage_name":"transform_engine","events_processed":639,"events_dropped":0,"avg_latency_ms":1243.4262122400214,"throughput_eps":0,"last_update":"2026-03-21T16:38:39.21054443Z"} +2026/03/21 16:38:44 [log_collector] {"stage_name":"log_collector","events_processed":30846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6169.2,"last_update":"2026-03-21T16:38:39.068999151Z"} +2026/03/21 16:38:44 [metric_collector] {"stage_name":"metric_collector","events_processed":19189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3837.8,"last_update":"2026-03-21T16:38:39.069218281Z"} +2026/03/21 16:38:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:38:39.078149009Z"} +2026/03/21 16:38:44 ───────────────────────────────────────────────── +2026/03/21 16:38:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:38:49 [log_collector] {"stage_name":"log_collector","events_processed":30846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6169.2,"last_update":"2026-03-21T16:38:44.069096135Z"} +2026/03/21 16:38:49 [metric_collector] {"stage_name":"metric_collector","events_processed":19194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3838.8,"last_update":"2026-03-21T16:38:44.069625999Z"} +2026/03/21 16:38:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:38:44.079037939Z"} +2026/03/21 16:38:49 [detection_layer] {"stage_name":"detection_layer","events_processed":639,"events_dropped":0,"avg_latency_ms":18.375422310861282,"throughput_eps":0,"last_update":"2026-03-21T16:38:44.210492919Z"} +2026/03/21 16:38:49 [transform_engine] {"stage_name":"transform_engine","events_processed":639,"events_dropped":0,"avg_latency_ms":1243.4262122400214,"throughput_eps":0,"last_update":"2026-03-21T16:38:44.210534047Z"} +2026/03/21 16:38:49 ───────────────────────────────────────────────── +2026/03/21 16:38:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:38:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:38:49.076535942Z"} +2026/03/21 16:38:54 [detection_layer] {"stage_name":"detection_layer","events_processed":639,"events_dropped":0,"avg_latency_ms":18.375422310861282,"throughput_eps":0,"last_update":"2026-03-21T16:38:49.210884704Z"} +2026/03/21 16:38:54 [transform_engine] {"stage_name":"transform_engine","events_processed":639,"events_dropped":0,"avg_latency_ms":1243.4262122400214,"throughput_eps":0,"last_update":"2026-03-21T16:38:49.20971325Z"} +2026/03/21 16:38:54 [log_collector] {"stage_name":"log_collector","events_processed":30846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6169.2,"last_update":"2026-03-21T16:38:49.068620789Z"} +2026/03/21 16:38:54 [metric_collector] {"stage_name":"metric_collector","events_processed":19199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3839.8,"last_update":"2026-03-21T16:38:49.069005306Z"} +2026/03/21 16:38:54 ───────────────────────────────────────────────── +2026/03/21 16:38:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:38:59 [detection_layer] {"stage_name":"detection_layer","events_processed":640,"events_dropped":0,"avg_latency_ms":18.225212048689027,"throughput_eps":0,"last_update":"2026-03-21T16:38:54.210829314Z"} +2026/03/21 16:38:59 [transform_engine] {"stage_name":"transform_engine","events_processed":640,"events_dropped":0,"avg_latency_ms":1017.8100539920172,"throughput_eps":0,"last_update":"2026-03-21T16:38:54.209740478Z"} +2026/03/21 16:38:59 [log_collector] {"stage_name":"log_collector","events_processed":30846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6169.2,"last_update":"2026-03-21T16:38:54.068313456Z"} +2026/03/21 16:38:59 [metric_collector] {"stage_name":"metric_collector","events_processed":19204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3840.8,"last_update":"2026-03-21T16:38:54.068715146Z"} +2026/03/21 16:38:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:38:54.075622238Z"} +2026/03/21 16:38:59 ───────────────────────────────────────────────── +2026/03/21 16:39:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:39:04 [transform_engine] {"stage_name":"transform_engine","events_processed":640,"events_dropped":0,"avg_latency_ms":1017.8100539920172,"throughput_eps":0,"last_update":"2026-03-21T16:38:59.210373926Z"} +2026/03/21 16:39:04 [log_collector] {"stage_name":"log_collector","events_processed":30846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6169.2,"last_update":"2026-03-21T16:38:59.068904824Z"} +2026/03/21 16:39:04 [metric_collector] {"stage_name":"metric_collector","events_processed":19209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3841.8,"last_update":"2026-03-21T16:38:59.069401816Z"} +2026/03/21 16:39:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:38:59.075995766Z"} +2026/03/21 16:39:04 [detection_layer] {"stage_name":"detection_layer","events_processed":640,"events_dropped":0,"avg_latency_ms":18.225212048689027,"throughput_eps":0,"last_update":"2026-03-21T16:38:59.210280607Z"} +2026/03/21 16:39:04 ───────────────────────────────────────────────── +2026/03/21 16:39:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:39:09 [detection_layer] {"stage_name":"detection_layer","events_processed":640,"events_dropped":0,"avg_latency_ms":18.225212048689027,"throughput_eps":0,"last_update":"2026-03-21T16:39:04.210789424Z"} +2026/03/21 16:39:09 [transform_engine] {"stage_name":"transform_engine","events_processed":640,"events_dropped":0,"avg_latency_ms":1017.8100539920172,"throughput_eps":0,"last_update":"2026-03-21T16:39:04.210666759Z"} +2026/03/21 16:39:09 [log_collector] {"stage_name":"log_collector","events_processed":30846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6169.2,"last_update":"2026-03-21T16:39:04.068950603Z"} +2026/03/21 16:39:09 [metric_collector] {"stage_name":"metric_collector","events_processed":19214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3842.8,"last_update":"2026-03-21T16:39:04.069235289Z"} +2026/03/21 16:39:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7688,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:39:04.079745191Z"} +2026/03/21 16:39:09 ───────────────────────────────────────────────── +2026/03/21 16:39:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:39:14 [log_collector] {"stage_name":"log_collector","events_processed":30846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6169.2,"last_update":"2026-03-21T16:39:09.068090118Z"} +2026/03/21 16:39:14 [metric_collector] {"stage_name":"metric_collector","events_processed":19219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3843.8,"last_update":"2026-03-21T16:39:09.068290171Z"} +2026/03/21 16:39:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:39:09.076980919Z"} +2026/03/21 16:39:14 [detection_layer] {"stage_name":"detection_layer","events_processed":640,"events_dropped":0,"avg_latency_ms":18.225212048689027,"throughput_eps":0,"last_update":"2026-03-21T16:39:09.210400171Z"} +2026/03/21 16:39:14 [transform_engine] {"stage_name":"transform_engine","events_processed":640,"events_dropped":0,"avg_latency_ms":1017.8100539920172,"throughput_eps":0,"last_update":"2026-03-21T16:39:09.210432363Z"} +2026/03/21 16:39:14 ───────────────────────────────────────────────── +2026/03/21 16:39:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:39:19 [detection_layer] {"stage_name":"detection_layer","events_processed":640,"events_dropped":0,"avg_latency_ms":18.225212048689027,"throughput_eps":0,"last_update":"2026-03-21T16:39:14.21106198Z"} +2026/03/21 16:39:19 [transform_engine] {"stage_name":"transform_engine","events_processed":640,"events_dropped":0,"avg_latency_ms":1017.8100539920172,"throughput_eps":0,"last_update":"2026-03-21T16:39:14.210835316Z"} +2026/03/21 16:39:19 [log_collector] {"stage_name":"log_collector","events_processed":30846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6169.2,"last_update":"2026-03-21T16:39:14.068241709Z"} +2026/03/21 16:39:19 [metric_collector] {"stage_name":"metric_collector","events_processed":19224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3844.8,"last_update":"2026-03-21T16:39:14.068653979Z"} +2026/03/21 16:39:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:39:14.077384343Z"} +2026/03/21 16:39:19 ───────────────────────────────────────────────── +2026/03/21 16:39:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:39:24 [log_collector] {"stage_name":"log_collector","events_processed":30846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6169.2,"last_update":"2026-03-21T16:39:19.069423651Z"} +2026/03/21 16:39:24 [metric_collector] {"stage_name":"metric_collector","events_processed":19229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3845.8,"last_update":"2026-03-21T16:39:19.069734486Z"} +2026/03/21 16:39:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:39:19.078396529Z"} +2026/03/21 16:39:24 [detection_layer] {"stage_name":"detection_layer","events_processed":640,"events_dropped":0,"avg_latency_ms":18.225212048689027,"throughput_eps":0,"last_update":"2026-03-21T16:39:19.210609551Z"} +2026/03/21 16:39:24 [transform_engine] {"stage_name":"transform_engine","events_processed":640,"events_dropped":0,"avg_latency_ms":1017.8100539920172,"throughput_eps":0,"last_update":"2026-03-21T16:39:19.209712893Z"} +2026/03/21 16:39:24 ───────────────────────────────────────────────── +2026/03/21 16:39:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:39:29 [metric_collector] {"stage_name":"metric_collector","events_processed":19234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3846.8,"last_update":"2026-03-21T16:39:24.068969279Z"} +2026/03/21 16:39:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:39:24.077624378Z"} +2026/03/21 16:39:29 [detection_layer] {"stage_name":"detection_layer","events_processed":641,"events_dropped":0,"avg_latency_ms":18.735878238951223,"throughput_eps":0,"last_update":"2026-03-21T16:39:24.209934806Z"} +2026/03/21 16:39:29 [transform_engine] {"stage_name":"transform_engine","events_processed":641,"events_dropped":0,"avg_latency_ms":828.9232823936137,"throughput_eps":0,"last_update":"2026-03-21T16:39:24.20982785Z"} +2026/03/21 16:39:29 [log_collector] {"stage_name":"log_collector","events_processed":30846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6169.2,"last_update":"2026-03-21T16:39:24.068692228Z"} +2026/03/21 16:39:29 ───────────────────────────────────────────────── +2026/03/21 16:39:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:39:34 [metric_collector] {"stage_name":"metric_collector","events_processed":19239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3847.8,"last_update":"2026-03-21T16:39:29.069234523Z"} +2026/03/21 16:39:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:39:29.077933917Z"} +2026/03/21 16:39:34 [detection_layer] {"stage_name":"detection_layer","events_processed":641,"events_dropped":0,"avg_latency_ms":18.735878238951223,"throughput_eps":0,"last_update":"2026-03-21T16:39:29.210275915Z"} +2026/03/21 16:39:34 [transform_engine] {"stage_name":"transform_engine","events_processed":641,"events_dropped":0,"avg_latency_ms":828.9232823936137,"throughput_eps":0,"last_update":"2026-03-21T16:39:29.210293239Z"} +2026/03/21 16:39:34 [log_collector] {"stage_name":"log_collector","events_processed":30846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6169.2,"last_update":"2026-03-21T16:39:29.069004492Z"} +2026/03/21 16:39:34 ───────────────────────────────────────────────── +2026/03/21 16:39:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:39:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7700,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:39:34.078409393Z"} +2026/03/21 16:39:39 [detection_layer] {"stage_name":"detection_layer","events_processed":641,"events_dropped":0,"avg_latency_ms":18.735878238951223,"throughput_eps":0,"last_update":"2026-03-21T16:39:34.210664364Z"} +2026/03/21 16:39:39 [transform_engine] {"stage_name":"transform_engine","events_processed":641,"events_dropped":0,"avg_latency_ms":828.9232823936137,"throughput_eps":0,"last_update":"2026-03-21T16:39:34.210677159Z"} +2026/03/21 16:39:39 [log_collector] {"stage_name":"log_collector","events_processed":30846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6169.2,"last_update":"2026-03-21T16:39:34.068885499Z"} +2026/03/21 16:39:39 [metric_collector] {"stage_name":"metric_collector","events_processed":19244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3848.8,"last_update":"2026-03-21T16:39:34.069086965Z"} +2026/03/21 16:39:39 ───────────────────────────────────────────────── +2026/03/21 16:39:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:39:44 [log_collector] {"stage_name":"log_collector","events_processed":30846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6169.2,"last_update":"2026-03-21T16:39:39.068098546Z"} +2026/03/21 16:39:44 [metric_collector] {"stage_name":"metric_collector","events_processed":19249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3849.8,"last_update":"2026-03-21T16:39:39.06853882Z"} +2026/03/21 16:39:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7702,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:39:39.076922058Z"} +2026/03/21 16:39:44 [detection_layer] {"stage_name":"detection_layer","events_processed":641,"events_dropped":0,"avg_latency_ms":18.735878238951223,"throughput_eps":0,"last_update":"2026-03-21T16:39:39.210332613Z"} +2026/03/21 16:39:44 [transform_engine] {"stage_name":"transform_engine","events_processed":641,"events_dropped":0,"avg_latency_ms":828.9232823936137,"throughput_eps":0,"last_update":"2026-03-21T16:39:39.210373721Z"} +2026/03/21 16:39:44 ───────────────────────────────────────────────── +2026/03/21 16:39:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:39:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:39:44.077389896Z"} +2026/03/21 16:39:49 [detection_layer] {"stage_name":"detection_layer","events_processed":641,"events_dropped":0,"avg_latency_ms":18.735878238951223,"throughput_eps":0,"last_update":"2026-03-21T16:39:44.210660504Z"} +2026/03/21 16:39:49 [transform_engine] {"stage_name":"transform_engine","events_processed":641,"events_dropped":0,"avg_latency_ms":828.9232823936137,"throughput_eps":0,"last_update":"2026-03-21T16:39:44.210672947Z"} +2026/03/21 16:39:49 [log_collector] {"stage_name":"log_collector","events_processed":30846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6169.2,"last_update":"2026-03-21T16:39:44.068841541Z"} +2026/03/21 16:39:49 [metric_collector] {"stage_name":"metric_collector","events_processed":19254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3850.8,"last_update":"2026-03-21T16:39:44.069547223Z"} +2026/03/21 16:39:49 ───────────────────────────────────────────────── +2026/03/21 16:39:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:39:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:39:49.078095309Z"} +2026/03/21 16:39:54 [detection_layer] {"stage_name":"detection_layer","events_processed":641,"events_dropped":0,"avg_latency_ms":18.735878238951223,"throughput_eps":0,"last_update":"2026-03-21T16:39:49.210489118Z"} +2026/03/21 16:39:54 [transform_engine] {"stage_name":"transform_engine","events_processed":642,"events_dropped":0,"avg_latency_ms":678.056522114891,"throughput_eps":0,"last_update":"2026-03-21T16:39:49.285098065Z"} +2026/03/21 16:39:54 [log_collector] {"stage_name":"log_collector","events_processed":30846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6169.2,"last_update":"2026-03-21T16:39:49.068511782Z"} +2026/03/21 16:39:54 [metric_collector] {"stage_name":"metric_collector","events_processed":19259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3851.8,"last_update":"2026-03-21T16:39:49.068442038Z"} +2026/03/21 16:39:54 ───────────────────────────────────────────────── +2026/03/21 16:39:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:39:59 [detection_layer] {"stage_name":"detection_layer","events_processed":642,"events_dropped":0,"avg_latency_ms":19.153546591160982,"throughput_eps":0,"last_update":"2026-03-21T16:39:54.210406048Z"} +2026/03/21 16:39:59 [transform_engine] {"stage_name":"transform_engine","events_processed":642,"events_dropped":0,"avg_latency_ms":678.056522114891,"throughput_eps":0,"last_update":"2026-03-21T16:39:54.21042224Z"} +2026/03/21 16:39:59 [log_collector] {"stage_name":"log_collector","events_processed":30846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6169.2,"last_update":"2026-03-21T16:39:54.068713669Z"} +2026/03/21 16:39:59 [metric_collector] {"stage_name":"metric_collector","events_processed":19264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3852.8,"last_update":"2026-03-21T16:39:54.069221592Z"} +2026/03/21 16:39:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:39:54.078992699Z"} +2026/03/21 16:39:59 ───────────────────────────────────────────────── +2026/03/21 16:40:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:40:04 [detection_layer] {"stage_name":"detection_layer","events_processed":642,"events_dropped":0,"avg_latency_ms":19.153546591160982,"throughput_eps":0,"last_update":"2026-03-21T16:39:59.21039216Z"} +2026/03/21 16:40:04 [transform_engine] {"stage_name":"transform_engine","events_processed":642,"events_dropped":0,"avg_latency_ms":678.056522114891,"throughput_eps":0,"last_update":"2026-03-21T16:39:59.21040775Z"} +2026/03/21 16:40:04 [log_collector] {"stage_name":"log_collector","events_processed":30846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6169.2,"last_update":"2026-03-21T16:39:59.068859948Z"} +2026/03/21 16:40:04 [metric_collector] {"stage_name":"metric_collector","events_processed":19269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3853.8,"last_update":"2026-03-21T16:39:59.069471999Z"} +2026/03/21 16:40:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:39:59.077992812Z"} +2026/03/21 16:40:04 ───────────────────────────────────────────────── +Saved state: 18 clusters, 30847 messages, reason: none +2026/03/21 16:40:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:40:09 [log_collector] {"stage_name":"log_collector","events_processed":30846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6169.2,"last_update":"2026-03-21T16:40:04.06860604Z"} +2026/03/21 16:40:09 [metric_collector] {"stage_name":"metric_collector","events_processed":19274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3854.8,"last_update":"2026-03-21T16:40:04.069606075Z"} +2026/03/21 16:40:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7712,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:40:04.084452124Z"} +2026/03/21 16:40:09 [detection_layer] {"stage_name":"detection_layer","events_processed":642,"events_dropped":0,"avg_latency_ms":19.153546591160982,"throughput_eps":0,"last_update":"2026-03-21T16:40:04.210682295Z"} +2026/03/21 16:40:09 [transform_engine] {"stage_name":"transform_engine","events_processed":642,"events_dropped":0,"avg_latency_ms":678.056522114891,"throughput_eps":0,"last_update":"2026-03-21T16:40:04.210693777Z"} +2026/03/21 16:40:09 ───────────────────────────────────────────────── +2026/03/21 16:40:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:40:14 [log_collector] {"stage_name":"log_collector","events_processed":30849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6169.8,"last_update":"2026-03-21T16:40:09.068139313Z"} +2026/03/21 16:40:14 [metric_collector] {"stage_name":"metric_collector","events_processed":19279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3855.8,"last_update":"2026-03-21T16:40:09.068589836Z"} +2026/03/21 16:40:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:40:09.077200991Z"} +2026/03/21 16:40:14 [detection_layer] {"stage_name":"detection_layer","events_processed":642,"events_dropped":0,"avg_latency_ms":19.153546591160982,"throughput_eps":0,"last_update":"2026-03-21T16:40:09.210563223Z"} +2026/03/21 16:40:14 [transform_engine] {"stage_name":"transform_engine","events_processed":642,"events_dropped":0,"avg_latency_ms":678.056522114891,"throughput_eps":0,"last_update":"2026-03-21T16:40:09.210576689Z"} +2026/03/21 16:40:14 ───────────────────────────────────────────────── +2026/03/21 16:40:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:40:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:40:14.076017238Z"} +2026/03/21 16:40:19 [detection_layer] {"stage_name":"detection_layer","events_processed":642,"events_dropped":0,"avg_latency_ms":19.153546591160982,"throughput_eps":0,"last_update":"2026-03-21T16:40:14.210293051Z"} +2026/03/21 16:40:19 [transform_engine] {"stage_name":"transform_engine","events_processed":642,"events_dropped":0,"avg_latency_ms":678.056522114891,"throughput_eps":0,"last_update":"2026-03-21T16:40:14.210305124Z"} +2026/03/21 16:40:19 [log_collector] {"stage_name":"log_collector","events_processed":30859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6171.8,"last_update":"2026-03-21T16:40:14.06827602Z"} +2026/03/21 16:40:19 [metric_collector] {"stage_name":"metric_collector","events_processed":19284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3856.8,"last_update":"2026-03-21T16:40:14.068785114Z"} +2026/03/21 16:40:19 ───────────────────────────────────────────────── +2026/03/21 16:40:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:40:24 [metric_collector] {"stage_name":"metric_collector","events_processed":19289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3857.8,"last_update":"2026-03-21T16:40:19.068236928Z"} +2026/03/21 16:40:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7718,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:40:19.076957693Z"} +2026/03/21 16:40:24 [detection_layer] {"stage_name":"detection_layer","events_processed":642,"events_dropped":0,"avg_latency_ms":19.153546591160982,"throughput_eps":0,"last_update":"2026-03-21T16:40:19.210262034Z"} +2026/03/21 16:40:24 [transform_engine] {"stage_name":"transform_engine","events_processed":643,"events_dropped":0,"avg_latency_ms":832.7187276919128,"throughput_eps":0,"last_update":"2026-03-21T16:40:20.661654803Z"} +2026/03/21 16:40:24 [log_collector] {"stage_name":"log_collector","events_processed":30868,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6173.6,"last_update":"2026-03-21T16:40:19.068068586Z"} +2026/03/21 16:40:24 ───────────────────────────────────────────────── +2026/03/21 16:40:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:40:29 [log_collector] {"stage_name":"log_collector","events_processed":30879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6175.8,"last_update":"2026-03-21T16:40:24.068576651Z"} +2026/03/21 16:40:29 [metric_collector] {"stage_name":"metric_collector","events_processed":19294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3858.8,"last_update":"2026-03-21T16:40:24.069248248Z"} +2026/03/21 16:40:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:40:24.076644185Z"} +2026/03/21 16:40:29 [detection_layer] {"stage_name":"detection_layer","events_processed":643,"events_dropped":0,"avg_latency_ms":18.269263272928786,"throughput_eps":0,"last_update":"2026-03-21T16:40:24.209914111Z"} +2026/03/21 16:40:29 [transform_engine] {"stage_name":"transform_engine","events_processed":643,"events_dropped":0,"avg_latency_ms":832.7187276919128,"throughput_eps":0,"last_update":"2026-03-21T16:40:24.20992911Z"} +2026/03/21 16:40:29 ───────────────────────────────────────────────── +2026/03/21 16:40:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:40:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7722,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:40:29.077256661Z"} +2026/03/21 16:40:34 [detection_layer] {"stage_name":"detection_layer","events_processed":643,"events_dropped":0,"avg_latency_ms":18.269263272928786,"throughput_eps":0,"last_update":"2026-03-21T16:40:29.210546305Z"} +2026/03/21 16:40:34 [transform_engine] {"stage_name":"transform_engine","events_processed":643,"events_dropped":0,"avg_latency_ms":832.7187276919128,"throughput_eps":0,"last_update":"2026-03-21T16:40:29.21049676Z"} +2026/03/21 16:40:34 [log_collector] {"stage_name":"log_collector","events_processed":30890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6178,"last_update":"2026-03-21T16:40:29.068580853Z"} +2026/03/21 16:40:34 [metric_collector] {"stage_name":"metric_collector","events_processed":19299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3859.8,"last_update":"2026-03-21T16:40:29.06885624Z"} +2026/03/21 16:40:34 ───────────────────────────────────────────────── +2026/03/21 16:40:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:40:39 [log_collector] {"stage_name":"log_collector","events_processed":30890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6178,"last_update":"2026-03-21T16:40:34.068116545Z"} +2026/03/21 16:40:39 [metric_collector] {"stage_name":"metric_collector","events_processed":19304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3860.8,"last_update":"2026-03-21T16:40:34.068603087Z"} +2026/03/21 16:40:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:40:34.076375265Z"} +2026/03/21 16:40:39 [detection_layer] {"stage_name":"detection_layer","events_processed":643,"events_dropped":0,"avg_latency_ms":18.269263272928786,"throughput_eps":0,"last_update":"2026-03-21T16:40:34.210657129Z"} +2026/03/21 16:40:39 [transform_engine] {"stage_name":"transform_engine","events_processed":643,"events_dropped":0,"avg_latency_ms":832.7187276919128,"throughput_eps":0,"last_update":"2026-03-21T16:40:34.210582326Z"} +2026/03/21 16:40:39 ───────────────────────────────────────────────── +2026/03/21 16:40:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:40:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:40:39.07858599Z"} +2026/03/21 16:40:44 [detection_layer] {"stage_name":"detection_layer","events_processed":643,"events_dropped":0,"avg_latency_ms":18.269263272928786,"throughput_eps":0,"last_update":"2026-03-21T16:40:39.20992164Z"} +2026/03/21 16:40:44 [transform_engine] {"stage_name":"transform_engine","events_processed":643,"events_dropped":0,"avg_latency_ms":832.7187276919128,"throughput_eps":0,"last_update":"2026-03-21T16:40:39.209894739Z"} +2026/03/21 16:40:44 [log_collector] {"stage_name":"log_collector","events_processed":30890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6178,"last_update":"2026-03-21T16:40:39.068721344Z"} +2026/03/21 16:40:44 [metric_collector] {"stage_name":"metric_collector","events_processed":19309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3861.8,"last_update":"2026-03-21T16:40:39.069373062Z"} +2026/03/21 16:40:44 ───────────────────────────────────────────────── +2026/03/21 16:40:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:40:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7728,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:40:44.078379262Z"} +2026/03/21 16:40:49 [detection_layer] {"stage_name":"detection_layer","events_processed":643,"events_dropped":0,"avg_latency_ms":18.269263272928786,"throughput_eps":0,"last_update":"2026-03-21T16:40:44.210770064Z"} +2026/03/21 16:40:49 [transform_engine] {"stage_name":"transform_engine","events_processed":643,"events_dropped":0,"avg_latency_ms":832.7187276919128,"throughput_eps":0,"last_update":"2026-03-21T16:40:44.210803287Z"} +2026/03/21 16:40:49 [log_collector] {"stage_name":"log_collector","events_processed":30890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6178,"last_update":"2026-03-21T16:40:44.068718156Z"} +2026/03/21 16:40:49 [metric_collector] {"stage_name":"metric_collector","events_processed":19314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3862.8,"last_update":"2026-03-21T16:40:44.069108784Z"} +2026/03/21 16:40:49 ───────────────────────────────────────────────── +2026/03/21 16:40:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:40:54 [metric_collector] {"stage_name":"metric_collector","events_processed":19319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3863.8,"last_update":"2026-03-21T16:40:49.069496787Z"} +2026/03/21 16:40:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7730,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:40:49.077913209Z"} +2026/03/21 16:40:54 [detection_layer] {"stage_name":"detection_layer","events_processed":643,"events_dropped":0,"avg_latency_ms":18.269263272928786,"throughput_eps":0,"last_update":"2026-03-21T16:40:49.210306445Z"} +2026/03/21 16:40:54 [transform_engine] {"stage_name":"transform_engine","events_processed":644,"events_dropped":0,"avg_latency_ms":688.8915867535303,"throughput_eps":0,"last_update":"2026-03-21T16:40:49.323907203Z"} +2026/03/21 16:40:54 [log_collector] {"stage_name":"log_collector","events_processed":30890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6178,"last_update":"2026-03-21T16:40:49.068382953Z"} +2026/03/21 16:40:54 ───────────────────────────────────────────────── +2026/03/21 16:40:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:40:59 [metric_collector] {"stage_name":"metric_collector","events_processed":19324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3864.8,"last_update":"2026-03-21T16:40:54.068567402Z"} +2026/03/21 16:40:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:40:54.078152182Z"} +2026/03/21 16:40:59 [detection_layer] {"stage_name":"detection_layer","events_processed":644,"events_dropped":0,"avg_latency_ms":19.184036218343028,"throughput_eps":0,"last_update":"2026-03-21T16:40:54.210401913Z"} +2026/03/21 16:40:59 [transform_engine] {"stage_name":"transform_engine","events_processed":644,"events_dropped":0,"avg_latency_ms":688.8915867535303,"throughput_eps":0,"last_update":"2026-03-21T16:40:54.210414317Z"} +2026/03/21 16:40:59 [log_collector] {"stage_name":"log_collector","events_processed":30890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6178,"last_update":"2026-03-21T16:40:54.068132689Z"} +2026/03/21 16:40:59 ───────────────────────────────────────────────── +2026/03/21 16:41:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:41:04 [log_collector] {"stage_name":"log_collector","events_processed":30890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6178,"last_update":"2026-03-21T16:40:59.068888443Z"} +2026/03/21 16:41:04 [metric_collector] {"stage_name":"metric_collector","events_processed":19329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3865.8,"last_update":"2026-03-21T16:40:59.069148451Z"} +2026/03/21 16:41:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:40:59.078499293Z"} +2026/03/21 16:41:04 [detection_layer] {"stage_name":"detection_layer","events_processed":644,"events_dropped":0,"avg_latency_ms":19.184036218343028,"throughput_eps":0,"last_update":"2026-03-21T16:40:59.21084082Z"} +2026/03/21 16:41:04 [transform_engine] {"stage_name":"transform_engine","events_processed":644,"events_dropped":0,"avg_latency_ms":688.8915867535303,"throughput_eps":0,"last_update":"2026-03-21T16:40:59.209686548Z"} +2026/03/21 16:41:04 ───────────────────────────────────────────────── +2026/03/21 16:41:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:41:09 [log_collector] {"stage_name":"log_collector","events_processed":30890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6178,"last_update":"2026-03-21T16:41:09.068164486Z"} +2026/03/21 16:41:09 [metric_collector] {"stage_name":"metric_collector","events_processed":19334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3866.8,"last_update":"2026-03-21T16:41:04.068802683Z"} +2026/03/21 16:41:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7736,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:41:04.077418267Z"} +2026/03/21 16:41:09 [detection_layer] {"stage_name":"detection_layer","events_processed":644,"events_dropped":0,"avg_latency_ms":19.184036218343028,"throughput_eps":0,"last_update":"2026-03-21T16:41:04.210768536Z"} +2026/03/21 16:41:09 [transform_engine] {"stage_name":"transform_engine","events_processed":644,"events_dropped":0,"avg_latency_ms":688.8915867535303,"throughput_eps":0,"last_update":"2026-03-21T16:41:04.209652608Z"} +2026/03/21 16:41:09 ───────────────────────────────────────────────── +2026/03/21 16:41:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:41:14 [transform_engine] {"stage_name":"transform_engine","events_processed":644,"events_dropped":0,"avg_latency_ms":688.8915867535303,"throughput_eps":0,"last_update":"2026-03-21T16:41:09.210718322Z"} +2026/03/21 16:41:14 [log_collector] {"stage_name":"log_collector","events_processed":30890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6178,"last_update":"2026-03-21T16:41:09.068164486Z"} +2026/03/21 16:41:14 [metric_collector] {"stage_name":"metric_collector","events_processed":19339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3867.8,"last_update":"2026-03-21T16:41:09.068808961Z"} +2026/03/21 16:41:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7738,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:41:09.077442118Z"} +2026/03/21 16:41:14 [detection_layer] {"stage_name":"detection_layer","events_processed":644,"events_dropped":0,"avg_latency_ms":19.184036218343028,"throughput_eps":0,"last_update":"2026-03-21T16:41:09.210669959Z"} +2026/03/21 16:41:14 ───────────────────────────────────────────────── +2026/03/21 16:41:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:41:19 [transform_engine] {"stage_name":"transform_engine","events_processed":644,"events_dropped":0,"avg_latency_ms":688.8915867535303,"throughput_eps":0,"last_update":"2026-03-21T16:41:14.210320349Z"} +2026/03/21 16:41:19 [log_collector] {"stage_name":"log_collector","events_processed":30890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6178,"last_update":"2026-03-21T16:41:14.068628624Z"} +2026/03/21 16:41:19 [metric_collector] {"stage_name":"metric_collector","events_processed":19344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3868.8,"last_update":"2026-03-21T16:41:14.068907098Z"} +2026/03/21 16:41:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7740,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:41:14.078856577Z"} +2026/03/21 16:41:19 [detection_layer] {"stage_name":"detection_layer","events_processed":644,"events_dropped":0,"avg_latency_ms":19.184036218343028,"throughput_eps":0,"last_update":"2026-03-21T16:41:14.210263941Z"} +2026/03/21 16:41:19 ───────────────────────────────────────────────── +2026/03/21 16:41:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:41:24 [transform_engine] {"stage_name":"transform_engine","events_processed":644,"events_dropped":0,"avg_latency_ms":688.8915867535303,"throughput_eps":0,"last_update":"2026-03-21T16:41:19.209844192Z"} +2026/03/21 16:41:24 [log_collector] {"stage_name":"log_collector","events_processed":30890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6178,"last_update":"2026-03-21T16:41:19.068612699Z"} +2026/03/21 16:41:24 [metric_collector] {"stage_name":"metric_collector","events_processed":19349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3869.8,"last_update":"2026-03-21T16:41:19.068979192Z"} +2026/03/21 16:41:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:41:19.078925465Z"} +2026/03/21 16:41:24 [detection_layer] {"stage_name":"detection_layer","events_processed":644,"events_dropped":0,"avg_latency_ms":19.184036218343028,"throughput_eps":0,"last_update":"2026-03-21T16:41:19.209924787Z"} +2026/03/21 16:41:24 ───────────────────────────────────────────────── +Saved state: 18 clusters, 30891 messages, reason: none +2026/03/21 16:41:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:41:29 [detection_layer] {"stage_name":"detection_layer","events_processed":645,"events_dropped":0,"avg_latency_ms":19.773423774674423,"throughput_eps":0,"last_update":"2026-03-21T16:41:24.209897088Z"} +2026/03/21 16:41:29 [transform_engine] {"stage_name":"transform_engine","events_processed":645,"events_dropped":0,"avg_latency_ms":566.3720010028243,"throughput_eps":0,"last_update":"2026-03-21T16:41:24.210010164Z"} +2026/03/21 16:41:29 [log_collector] {"stage_name":"log_collector","events_processed":30890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6178,"last_update":"2026-03-21T16:41:24.068085474Z"} +2026/03/21 16:41:29 [metric_collector] {"stage_name":"metric_collector","events_processed":19354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3870.8,"last_update":"2026-03-21T16:41:24.068546207Z"} +2026/03/21 16:41:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:41:24.077659594Z"} +2026/03/21 16:41:29 ───────────────────────────────────────────────── +2026/03/21 16:41:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:41:34 [log_collector] {"stage_name":"log_collector","events_processed":30895,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6179,"last_update":"2026-03-21T16:41:29.068946362Z"} +2026/03/21 16:41:34 [metric_collector] {"stage_name":"metric_collector","events_processed":19359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3871.8,"last_update":"2026-03-21T16:41:29.068935121Z"} +2026/03/21 16:41:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:41:29.076085959Z"} +2026/03/21 16:41:34 [detection_layer] {"stage_name":"detection_layer","events_processed":645,"events_dropped":0,"avg_latency_ms":19.773423774674423,"throughput_eps":0,"last_update":"2026-03-21T16:41:29.210341008Z"} +2026/03/21 16:41:34 [transform_engine] {"stage_name":"transform_engine","events_processed":645,"events_dropped":0,"avg_latency_ms":566.3720010028243,"throughput_eps":0,"last_update":"2026-03-21T16:41:29.210385223Z"} +2026/03/21 16:41:34 ───────────────────────────────────────────────── +2026/03/21 16:41:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:41:39 [detection_layer] {"stage_name":"detection_layer","events_processed":645,"events_dropped":0,"avg_latency_ms":19.773423774674423,"throughput_eps":0,"last_update":"2026-03-21T16:41:34.21008231Z"} +2026/03/21 16:41:39 [transform_engine] {"stage_name":"transform_engine","events_processed":645,"events_dropped":0,"avg_latency_ms":566.3720010028243,"throughput_eps":0,"last_update":"2026-03-21T16:41:34.210067682Z"} +2026/03/21 16:41:39 [log_collector] {"stage_name":"log_collector","events_processed":30895,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6179,"last_update":"2026-03-21T16:41:34.068480619Z"} +2026/03/21 16:41:39 [metric_collector] {"stage_name":"metric_collector","events_processed":19364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3872.8,"last_update":"2026-03-21T16:41:34.068743852Z"} +2026/03/21 16:41:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:41:34.075849104Z"} +2026/03/21 16:41:39 ───────────────────────────────────────────────── +2026/03/21 16:41:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:41:44 [transform_engine] {"stage_name":"transform_engine","events_processed":645,"events_dropped":0,"avg_latency_ms":566.3720010028243,"throughput_eps":0,"last_update":"2026-03-21T16:41:39.210341211Z"} +2026/03/21 16:41:44 [log_collector] {"stage_name":"log_collector","events_processed":30895,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6179,"last_update":"2026-03-21T16:41:39.0689851Z"} +2026/03/21 16:41:44 [metric_collector] {"stage_name":"metric_collector","events_processed":19369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3873.8,"last_update":"2026-03-21T16:41:39.069223336Z"} +2026/03/21 16:41:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7750,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:41:39.07996339Z"} +2026/03/21 16:41:44 [detection_layer] {"stage_name":"detection_layer","events_processed":645,"events_dropped":0,"avg_latency_ms":19.773423774674423,"throughput_eps":0,"last_update":"2026-03-21T16:41:39.210243593Z"} +2026/03/21 16:41:44 ───────────────────────────────────────────────── +2026/03/21 16:41:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:41:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7752,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:41:44.075619129Z"} +2026/03/21 16:41:49 [detection_layer] {"stage_name":"detection_layer","events_processed":645,"events_dropped":0,"avg_latency_ms":19.773423774674423,"throughput_eps":0,"last_update":"2026-03-21T16:41:44.210223608Z"} +2026/03/21 16:41:49 [transform_engine] {"stage_name":"transform_engine","events_processed":645,"events_dropped":0,"avg_latency_ms":566.3720010028243,"throughput_eps":0,"last_update":"2026-03-21T16:41:44.209748087Z"} +2026/03/21 16:41:49 [log_collector] {"stage_name":"log_collector","events_processed":30895,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6179,"last_update":"2026-03-21T16:41:44.068427172Z"} +2026/03/21 16:41:49 [metric_collector] {"stage_name":"metric_collector","events_processed":19374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3874.8,"last_update":"2026-03-21T16:41:44.068522966Z"} +2026/03/21 16:41:49 ───────────────────────────────────────────────── +2026/03/21 16:41:49 [ANOMALY] time=2026-03-21T16:41:49Z score=0.8351 method=SEAD details=MAD!:w=0.28,s=0.84 RRCF-fast!:w=0.19,s=0.84 RRCF-mid!:w=0.15,s=0.90 RRCF-slow:w=0.14,s=0.51 COPOD!:w=0.24,s=0.98 +2026/03/21 16:41:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:41:54 [log_collector] {"stage_name":"log_collector","events_processed":30895,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6179,"last_update":"2026-03-21T16:41:49.068563734Z"} +2026/03/21 16:41:54 [metric_collector] {"stage_name":"metric_collector","events_processed":19379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3875.8,"last_update":"2026-03-21T16:41:49.068807591Z"} +2026/03/21 16:41:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:41:49.081125497Z"} +2026/03/21 16:41:54 [detection_layer] {"stage_name":"detection_layer","events_processed":645,"events_dropped":0,"avg_latency_ms":19.773423774674423,"throughput_eps":0,"last_update":"2026-03-21T16:41:49.210559791Z"} +2026/03/21 16:41:54 [transform_engine] {"stage_name":"transform_engine","events_processed":646,"events_dropped":0,"avg_latency_ms":510.06578260225945,"throughput_eps":0,"last_update":"2026-03-21T16:41:49.495414257Z"} +2026/03/21 16:41:54 ───────────────────────────────────────────────── +2026/03/21 16:41:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:41:59 [metric_collector] {"stage_name":"metric_collector","events_processed":19384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3876.8,"last_update":"2026-03-21T16:41:54.068560344Z"} +2026/03/21 16:41:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:41:54.075950451Z"} +2026/03/21 16:41:59 [detection_layer] {"stage_name":"detection_layer","events_processed":646,"events_dropped":0,"avg_latency_ms":19.61866421973954,"throughput_eps":0,"last_update":"2026-03-21T16:41:54.21021127Z"} +2026/03/21 16:41:59 [transform_engine] {"stage_name":"transform_engine","events_processed":646,"events_dropped":0,"avg_latency_ms":510.06578260225945,"throughput_eps":0,"last_update":"2026-03-21T16:41:54.210238402Z"} +2026/03/21 16:41:59 [log_collector] {"stage_name":"log_collector","events_processed":30895,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6179,"last_update":"2026-03-21T16:41:54.068188131Z"} +2026/03/21 16:41:59 ───────────────────────────────────────────────── +2026/03/21 16:42:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:42:04 [log_collector] {"stage_name":"log_collector","events_processed":30895,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6179,"last_update":"2026-03-21T16:41:59.070400213Z"} +2026/03/21 16:42:04 [metric_collector] {"stage_name":"metric_collector","events_processed":19389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3877.8,"last_update":"2026-03-21T16:41:59.070619603Z"} +2026/03/21 16:42:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7758,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:41:59.077376166Z"} +2026/03/21 16:42:04 [detection_layer] {"stage_name":"detection_layer","events_processed":646,"events_dropped":0,"avg_latency_ms":19.61866421973954,"throughput_eps":0,"last_update":"2026-03-21T16:41:59.210573528Z"} +2026/03/21 16:42:04 [transform_engine] {"stage_name":"transform_engine","events_processed":646,"events_dropped":0,"avg_latency_ms":510.06578260225945,"throughput_eps":0,"last_update":"2026-03-21T16:41:59.210598226Z"} +2026/03/21 16:42:04 ───────────────────────────────────────────────── +2026/03/21 16:42:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:42:09 [log_collector] {"stage_name":"log_collector","events_processed":30895,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6179,"last_update":"2026-03-21T16:42:04.068972519Z"} +2026/03/21 16:42:09 [metric_collector] {"stage_name":"metric_collector","events_processed":19394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3878.8,"last_update":"2026-03-21T16:42:04.068964925Z"} +2026/03/21 16:42:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:42:04.079984124Z"} +2026/03/21 16:42:09 [detection_layer] {"stage_name":"detection_layer","events_processed":646,"events_dropped":0,"avg_latency_ms":19.61866421973954,"throughput_eps":0,"last_update":"2026-03-21T16:42:04.210235282Z"} +2026/03/21 16:42:09 [transform_engine] {"stage_name":"transform_engine","events_processed":646,"events_dropped":0,"avg_latency_ms":510.06578260225945,"throughput_eps":0,"last_update":"2026-03-21T16:42:04.210190025Z"} +2026/03/21 16:42:09 ───────────────────────────────────────────────── +2026/03/21 16:42:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:42:14 [log_collector] {"stage_name":"log_collector","events_processed":30895,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6179,"last_update":"2026-03-21T16:42:09.068619763Z"} +2026/03/21 16:42:14 [metric_collector] {"stage_name":"metric_collector","events_processed":19399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3879.8,"last_update":"2026-03-21T16:42:09.068852508Z"} +2026/03/21 16:42:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:42:09.07561866Z"} +2026/03/21 16:42:14 [detection_layer] {"stage_name":"detection_layer","events_processed":646,"events_dropped":0,"avg_latency_ms":19.61866421973954,"throughput_eps":0,"last_update":"2026-03-21T16:42:09.210884584Z"} +2026/03/21 16:42:14 [transform_engine] {"stage_name":"transform_engine","events_processed":646,"events_dropped":0,"avg_latency_ms":510.06578260225945,"throughput_eps":0,"last_update":"2026-03-21T16:42:09.20978609Z"} +2026/03/21 16:42:14 ───────────────────────────────────────────────── +2026/03/21 16:42:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:42:19 [log_collector] {"stage_name":"log_collector","events_processed":30904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6180.8,"last_update":"2026-03-21T16:42:14.0688239Z"} +2026/03/21 16:42:19 [metric_collector] {"stage_name":"metric_collector","events_processed":19404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3880.8,"last_update":"2026-03-21T16:42:14.069320491Z"} +2026/03/21 16:42:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:42:14.078600207Z"} +2026/03/21 16:42:19 [detection_layer] {"stage_name":"detection_layer","events_processed":646,"events_dropped":0,"avg_latency_ms":19.61866421973954,"throughput_eps":0,"last_update":"2026-03-21T16:42:14.210857479Z"} +2026/03/21 16:42:19 [transform_engine] {"stage_name":"transform_engine","events_processed":646,"events_dropped":0,"avg_latency_ms":510.06578260225945,"throughput_eps":0,"last_update":"2026-03-21T16:42:14.209745338Z"} +2026/03/21 16:42:19 ───────────────────────────────────────────────── +2026/03/21 16:42:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:42:24 [log_collector] {"stage_name":"log_collector","events_processed":30920,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6184,"last_update":"2026-03-21T16:42:19.06843586Z"} +2026/03/21 16:42:24 [metric_collector] {"stage_name":"metric_collector","events_processed":19409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3881.8,"last_update":"2026-03-21T16:42:19.069105934Z"} +2026/03/21 16:42:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7766,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:42:19.077998638Z"} +2026/03/21 16:42:24 [detection_layer] {"stage_name":"detection_layer","events_processed":646,"events_dropped":0,"avg_latency_ms":19.61866421973954,"throughput_eps":0,"last_update":"2026-03-21T16:42:19.210185845Z"} +2026/03/21 16:42:24 [transform_engine] {"stage_name":"transform_engine","events_processed":647,"events_dropped":0,"avg_latency_ms":839.6121800818077,"throughput_eps":0,"last_update":"2026-03-21T16:42:21.36800068Z"} +2026/03/21 16:42:24 ───────────────────────────────────────────────── +2026/03/21 16:42:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:42:29 [metric_collector] {"stage_name":"metric_collector","events_processed":19414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3882.8,"last_update":"2026-03-21T16:42:24.069721695Z"} +2026/03/21 16:42:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7768,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:42:24.083144096Z"} +2026/03/21 16:42:29 [detection_layer] {"stage_name":"detection_layer","events_processed":647,"events_dropped":0,"avg_latency_ms":19.71214077579163,"throughput_eps":0,"last_update":"2026-03-21T16:42:24.210237565Z"} +2026/03/21 16:42:29 [transform_engine] {"stage_name":"transform_engine","events_processed":647,"events_dropped":0,"avg_latency_ms":839.6121800818077,"throughput_eps":0,"last_update":"2026-03-21T16:42:24.210222347Z"} +2026/03/21 16:42:29 [log_collector] {"stage_name":"log_collector","events_processed":31061,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6212.2,"last_update":"2026-03-21T16:42:24.068958052Z"} +2026/03/21 16:42:29 ───────────────────────────────────────────────── +2026/03/21 16:42:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:42:34 [detection_layer] {"stage_name":"detection_layer","events_processed":647,"events_dropped":0,"avg_latency_ms":19.71214077579163,"throughput_eps":0,"last_update":"2026-03-21T16:42:29.210383875Z"} +2026/03/21 16:42:34 [transform_engine] {"stage_name":"transform_engine","events_processed":647,"events_dropped":0,"avg_latency_ms":839.6121800818077,"throughput_eps":0,"last_update":"2026-03-21T16:42:29.210396549Z"} +2026/03/21 16:42:34 [log_collector] {"stage_name":"log_collector","events_processed":31257,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6251.4,"last_update":"2026-03-21T16:42:29.068646042Z"} +2026/03/21 16:42:34 [metric_collector] {"stage_name":"metric_collector","events_processed":19419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3883.8,"last_update":"2026-03-21T16:42:29.068936669Z"} +2026/03/21 16:42:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7770,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:42:29.078142063Z"} +2026/03/21 16:42:34 ───────────────────────────────────────────────── +2026/03/21 16:42:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:42:39 [metric_collector] {"stage_name":"metric_collector","events_processed":19424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3884.8,"last_update":"2026-03-21T16:42:34.068823528Z"} +2026/03/21 16:42:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:42:34.079297913Z"} +2026/03/21 16:42:39 [detection_layer] {"stage_name":"detection_layer","events_processed":647,"events_dropped":0,"avg_latency_ms":19.71214077579163,"throughput_eps":0,"last_update":"2026-03-21T16:42:34.210552894Z"} +2026/03/21 16:42:39 [transform_engine] {"stage_name":"transform_engine","events_processed":647,"events_dropped":0,"avg_latency_ms":839.6121800818077,"throughput_eps":0,"last_update":"2026-03-21T16:42:34.210564706Z"} +2026/03/21 16:42:39 [log_collector] {"stage_name":"log_collector","events_processed":31257,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6251.4,"last_update":"2026-03-21T16:42:34.068070255Z"} +2026/03/21 16:42:39 ───────────────────────────────────────────────── +2026/03/21 16:42:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:42:44 [transform_engine] {"stage_name":"transform_engine","events_processed":647,"events_dropped":0,"avg_latency_ms":839.6121800818077,"throughput_eps":0,"last_update":"2026-03-21T16:42:39.210673249Z"} +2026/03/21 16:42:44 [log_collector] {"stage_name":"log_collector","events_processed":31257,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6251.4,"last_update":"2026-03-21T16:42:44.068339546Z"} +2026/03/21 16:42:44 [metric_collector] {"stage_name":"metric_collector","events_processed":19429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3885.8,"last_update":"2026-03-21T16:42:39.06913606Z"} +2026/03/21 16:42:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:42:39.080278124Z"} +2026/03/21 16:42:44 [detection_layer] {"stage_name":"detection_layer","events_processed":647,"events_dropped":0,"avg_latency_ms":19.71214077579163,"throughput_eps":0,"last_update":"2026-03-21T16:42:39.210657548Z"} +2026/03/21 16:42:44 ───────────────────────────────────────────────── +2026/03/21 16:42:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:42:49 [log_collector] {"stage_name":"log_collector","events_processed":31257,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6251.4,"last_update":"2026-03-21T16:42:44.068339546Z"} +2026/03/21 16:42:49 [metric_collector] {"stage_name":"metric_collector","events_processed":19434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3886.8,"last_update":"2026-03-21T16:42:44.068722329Z"} +2026/03/21 16:42:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:42:44.077969743Z"} +2026/03/21 16:42:49 [detection_layer] {"stage_name":"detection_layer","events_processed":647,"events_dropped":0,"avg_latency_ms":19.71214077579163,"throughput_eps":0,"last_update":"2026-03-21T16:42:44.210185836Z"} +2026/03/21 16:42:49 [transform_engine] {"stage_name":"transform_engine","events_processed":647,"events_dropped":0,"avg_latency_ms":839.6121800818077,"throughput_eps":0,"last_update":"2026-03-21T16:42:44.210199601Z"} +2026/03/21 16:42:49 ───────────────────────────────────────────────── +2026/03/21 16:42:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:42:54 [log_collector] {"stage_name":"log_collector","events_processed":31257,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6251.4,"last_update":"2026-03-21T16:42:49.069227486Z"} +2026/03/21 16:42:54 [metric_collector] {"stage_name":"metric_collector","events_processed":19439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3887.8,"last_update":"2026-03-21T16:42:49.069651067Z"} +2026/03/21 16:42:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:42:49.079694185Z"} +2026/03/21 16:42:54 [detection_layer] {"stage_name":"detection_layer","events_processed":647,"events_dropped":0,"avg_latency_ms":19.71214077579163,"throughput_eps":0,"last_update":"2026-03-21T16:42:49.210212765Z"} +2026/03/21 16:42:54 [transform_engine] {"stage_name":"transform_engine","events_processed":647,"events_dropped":0,"avg_latency_ms":839.6121800818077,"throughput_eps":0,"last_update":"2026-03-21T16:42:49.210197837Z"} +2026/03/21 16:42:54 ───────────────────────────────────────────────── +2026/03/21 16:42:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:42:59 [detection_layer] {"stage_name":"detection_layer","events_processed":648,"events_dropped":0,"avg_latency_ms":20.013966820633307,"throughput_eps":0,"last_update":"2026-03-21T16:42:54.210067404Z"} +2026/03/21 16:42:59 [transform_engine] {"stage_name":"transform_engine","events_processed":648,"events_dropped":0,"avg_latency_ms":696.3490934654461,"throughput_eps":0,"last_update":"2026-03-21T16:42:54.210131417Z"} +2026/03/21 16:42:59 [log_collector] {"stage_name":"log_collector","events_processed":31257,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6251.4,"last_update":"2026-03-21T16:42:54.068788091Z"} +2026/03/21 16:42:59 [metric_collector] {"stage_name":"metric_collector","events_processed":19444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3888.8,"last_update":"2026-03-21T16:42:54.069161015Z"} +2026/03/21 16:42:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7780,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:42:54.079628667Z"} +2026/03/21 16:42:59 ───────────────────────────────────────────────── +2026/03/21 16:43:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:43:04 [log_collector] {"stage_name":"log_collector","events_processed":31257,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6251.4,"last_update":"2026-03-21T16:42:59.068887034Z"} +2026/03/21 16:43:04 [metric_collector] {"stage_name":"metric_collector","events_processed":19449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3889.8,"last_update":"2026-03-21T16:42:59.069424584Z"} +2026/03/21 16:43:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7782,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:42:59.078079944Z"} +2026/03/21 16:43:04 [detection_layer] {"stage_name":"detection_layer","events_processed":648,"events_dropped":0,"avg_latency_ms":20.013966820633307,"throughput_eps":0,"last_update":"2026-03-21T16:42:59.210417158Z"} +2026/03/21 16:43:04 [transform_engine] {"stage_name":"transform_engine","events_processed":648,"events_dropped":0,"avg_latency_ms":696.3490934654461,"throughput_eps":0,"last_update":"2026-03-21T16:42:59.210520285Z"} +2026/03/21 16:43:04 ───────────────────────────────────────────────── +2026/03/21 16:43:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:43:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:43:04.077574607Z"} +2026/03/21 16:43:09 [detection_layer] {"stage_name":"detection_layer","events_processed":648,"events_dropped":0,"avg_latency_ms":20.013966820633307,"throughput_eps":0,"last_update":"2026-03-21T16:43:04.210905424Z"} +2026/03/21 16:43:09 [transform_engine] {"stage_name":"transform_engine","events_processed":648,"events_dropped":0,"avg_latency_ms":696.3490934654461,"throughput_eps":0,"last_update":"2026-03-21T16:43:04.209754589Z"} +2026/03/21 16:43:09 [log_collector] {"stage_name":"log_collector","events_processed":31257,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6251.4,"last_update":"2026-03-21T16:43:09.068110877Z"} +2026/03/21 16:43:09 [metric_collector] {"stage_name":"metric_collector","events_processed":19454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3890.8,"last_update":"2026-03-21T16:43:04.069059575Z"} +2026/03/21 16:43:09 ───────────────────────────────────────────────── +2026/03/21 16:43:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:43:14 [transform_engine] {"stage_name":"transform_engine","events_processed":648,"events_dropped":0,"avg_latency_ms":696.3490934654461,"throughput_eps":0,"last_update":"2026-03-21T16:43:09.210624436Z"} +2026/03/21 16:43:14 [log_collector] {"stage_name":"log_collector","events_processed":31257,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6251.4,"last_update":"2026-03-21T16:43:09.068110877Z"} +2026/03/21 16:43:14 [metric_collector] {"stage_name":"metric_collector","events_processed":19459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3891.8,"last_update":"2026-03-21T16:43:09.068477961Z"} +2026/03/21 16:43:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:43:09.078371954Z"} +2026/03/21 16:43:14 [detection_layer] {"stage_name":"detection_layer","events_processed":648,"events_dropped":0,"avg_latency_ms":20.013966820633307,"throughput_eps":0,"last_update":"2026-03-21T16:43:09.210593345Z"} +2026/03/21 16:43:14 ───────────────────────────────────────────────── +2026/03/21 16:43:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:43:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:43:14.078013805Z"} +2026/03/21 16:43:19 [detection_layer] {"stage_name":"detection_layer","events_processed":648,"events_dropped":0,"avg_latency_ms":20.013966820633307,"throughput_eps":0,"last_update":"2026-03-21T16:43:14.210392848Z"} +2026/03/21 16:43:19 [transform_engine] {"stage_name":"transform_engine","events_processed":648,"events_dropped":0,"avg_latency_ms":696.3490934654461,"throughput_eps":0,"last_update":"2026-03-21T16:43:14.210419089Z"} +2026/03/21 16:43:19 [log_collector] {"stage_name":"log_collector","events_processed":31257,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6251.4,"last_update":"2026-03-21T16:43:14.068700354Z"} +2026/03/21 16:43:19 [metric_collector] {"stage_name":"metric_collector","events_processed":19464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3892.8,"last_update":"2026-03-21T16:43:14.068868035Z"} +2026/03/21 16:43:19 ───────────────────────────────────────────────── +2026/03/21 16:43:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:43:24 [detection_layer] {"stage_name":"detection_layer","events_processed":648,"events_dropped":0,"avg_latency_ms":20.013966820633307,"throughput_eps":0,"last_update":"2026-03-21T16:43:19.210174123Z"} +2026/03/21 16:43:24 [transform_engine] {"stage_name":"transform_engine","events_processed":649,"events_dropped":0,"avg_latency_ms":571.9628937723569,"throughput_eps":0,"last_update":"2026-03-21T16:43:19.284627335Z"} +2026/03/21 16:43:24 [log_collector] {"stage_name":"log_collector","events_processed":31257,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6251.4,"last_update":"2026-03-21T16:43:19.068068117Z"} +2026/03/21 16:43:24 [metric_collector] {"stage_name":"metric_collector","events_processed":19469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3893.8,"last_update":"2026-03-21T16:43:19.06870686Z"} +2026/03/21 16:43:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:43:19.077739233Z"} +2026/03/21 16:43:24 ───────────────────────────────────────────────── +2026/03/21 16:43:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:43:29 [log_collector] {"stage_name":"log_collector","events_processed":31257,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6251.4,"last_update":"2026-03-21T16:43:29.068345511Z"} +2026/03/21 16:43:29 [metric_collector] {"stage_name":"metric_collector","events_processed":19474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3894.8,"last_update":"2026-03-21T16:43:24.068913018Z"} +2026/03/21 16:43:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:43:24.07717268Z"} +2026/03/21 16:43:29 [detection_layer] {"stage_name":"detection_layer","events_processed":649,"events_dropped":0,"avg_latency_ms":20.208451656506647,"throughput_eps":0,"last_update":"2026-03-21T16:43:24.21178415Z"} +2026/03/21 16:43:29 [transform_engine] {"stage_name":"transform_engine","events_processed":649,"events_dropped":0,"avg_latency_ms":571.9628937723569,"throughput_eps":0,"last_update":"2026-03-21T16:43:24.211828255Z"} +2026/03/21 16:43:29 ───────────────────────────────────────────────── +2026/03/21 16:43:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:43:34 [log_collector] {"stage_name":"log_collector","events_processed":31257,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6251.4,"last_update":"2026-03-21T16:43:29.068345511Z"} +2026/03/21 16:43:34 [metric_collector] {"stage_name":"metric_collector","events_processed":19479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3895.8,"last_update":"2026-03-21T16:43:29.069044389Z"} +2026/03/21 16:43:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:43:29.077993022Z"} +2026/03/21 16:43:34 [detection_layer] {"stage_name":"detection_layer","events_processed":649,"events_dropped":0,"avg_latency_ms":20.208451656506647,"throughput_eps":0,"last_update":"2026-03-21T16:43:29.21033297Z"} +2026/03/21 16:43:34 [transform_engine] {"stage_name":"transform_engine","events_processed":649,"events_dropped":0,"avg_latency_ms":571.9628937723569,"throughput_eps":0,"last_update":"2026-03-21T16:43:29.210293945Z"} +2026/03/21 16:43:34 ───────────────────────────────────────────────── +2026/03/21 16:43:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:43:39 [log_collector] {"stage_name":"log_collector","events_processed":31257,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6251.4,"last_update":"2026-03-21T16:43:34.068753862Z"} +2026/03/21 16:43:39 [metric_collector] {"stage_name":"metric_collector","events_processed":19484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3896.8,"last_update":"2026-03-21T16:43:34.068989012Z"} +2026/03/21 16:43:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7796,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:43:34.078835574Z"} +2026/03/21 16:43:39 [detection_layer] {"stage_name":"detection_layer","events_processed":649,"events_dropped":0,"avg_latency_ms":20.208451656506647,"throughput_eps":0,"last_update":"2026-03-21T16:43:34.210094341Z"} +2026/03/21 16:43:39 [transform_engine] {"stage_name":"transform_engine","events_processed":649,"events_dropped":0,"avg_latency_ms":571.9628937723569,"throughput_eps":0,"last_update":"2026-03-21T16:43:34.210164896Z"} +2026/03/21 16:43:39 ───────────────────────────────────────────────── +2026/03/21 16:43:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:43:44 [metric_collector] {"stage_name":"metric_collector","events_processed":19489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3897.8,"last_update":"2026-03-21T16:43:39.069807216Z"} +2026/03/21 16:43:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:43:39.079016416Z"} +2026/03/21 16:43:44 [detection_layer] {"stage_name":"detection_layer","events_processed":649,"events_dropped":0,"avg_latency_ms":20.208451656506647,"throughput_eps":0,"last_update":"2026-03-21T16:43:39.210270055Z"} +2026/03/21 16:43:44 [transform_engine] {"stage_name":"transform_engine","events_processed":649,"events_dropped":0,"avg_latency_ms":571.9628937723569,"throughput_eps":0,"last_update":"2026-03-21T16:43:39.210394994Z"} +2026/03/21 16:43:44 [log_collector] {"stage_name":"log_collector","events_processed":31257,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6251.4,"last_update":"2026-03-21T16:43:39.068823942Z"} +2026/03/21 16:43:44 ───────────────────────────────────────────────── +2026/03/21 16:43:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:43:49 [log_collector] {"stage_name":"log_collector","events_processed":31257,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6251.4,"last_update":"2026-03-21T16:43:44.068588405Z"} +2026/03/21 16:43:49 [metric_collector] {"stage_name":"metric_collector","events_processed":19494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3898.8,"last_update":"2026-03-21T16:43:44.068861017Z"} +2026/03/21 16:43:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7800,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:43:44.076429876Z"} +2026/03/21 16:43:49 [detection_layer] {"stage_name":"detection_layer","events_processed":649,"events_dropped":0,"avg_latency_ms":20.208451656506647,"throughput_eps":0,"last_update":"2026-03-21T16:43:44.210763943Z"} +2026/03/21 16:43:49 [transform_engine] {"stage_name":"transform_engine","events_processed":649,"events_dropped":0,"avg_latency_ms":571.9628937723569,"throughput_eps":0,"last_update":"2026-03-21T16:43:44.210717494Z"} +2026/03/21 16:43:49 ───────────────────────────────────────────────── +2026/03/21 16:43:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:43:54 [log_collector] {"stage_name":"log_collector","events_processed":31257,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6251.4,"last_update":"2026-03-21T16:43:49.068331563Z"} +2026/03/21 16:43:54 [metric_collector] {"stage_name":"metric_collector","events_processed":19499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3899.8,"last_update":"2026-03-21T16:43:49.068708785Z"} +2026/03/21 16:43:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7802,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:43:49.074910827Z"} +2026/03/21 16:43:54 [detection_layer] {"stage_name":"detection_layer","events_processed":649,"events_dropped":0,"avg_latency_ms":20.208451656506647,"throughput_eps":0,"last_update":"2026-03-21T16:43:49.210288844Z"} +2026/03/21 16:43:54 [transform_engine] {"stage_name":"transform_engine","events_processed":650,"events_dropped":0,"avg_latency_ms":470.8407154178856,"throughput_eps":0,"last_update":"2026-03-21T16:43:49.2766784Z"} +2026/03/21 16:43:54 ───────────────────────────────────────────────── +2026/03/21 16:43:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:43:59 [detection_layer] {"stage_name":"detection_layer","events_processed":650,"events_dropped":0,"avg_latency_ms":19.641557725205317,"throughput_eps":0,"last_update":"2026-03-21T16:43:54.210411539Z"} +2026/03/21 16:43:59 [transform_engine] {"stage_name":"transform_engine","events_processed":650,"events_dropped":0,"avg_latency_ms":470.8407154178856,"throughput_eps":0,"last_update":"2026-03-21T16:43:54.210271781Z"} +2026/03/21 16:43:59 [log_collector] {"stage_name":"log_collector","events_processed":31257,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6251.4,"last_update":"2026-03-21T16:43:54.068753351Z"} +2026/03/21 16:43:59 [metric_collector] {"stage_name":"metric_collector","events_processed":19504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3900.8,"last_update":"2026-03-21T16:43:54.069145162Z"} +2026/03/21 16:43:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:43:54.077771576Z"} +2026/03/21 16:43:59 ───────────────────────────────────────────────── +2026/03/21 16:44:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:44:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:43:59.078142334Z"} +2026/03/21 16:44:04 [detection_layer] {"stage_name":"detection_layer","events_processed":650,"events_dropped":0,"avg_latency_ms":19.641557725205317,"throughput_eps":0,"last_update":"2026-03-21T16:43:59.210446583Z"} +2026/03/21 16:44:04 [transform_engine] {"stage_name":"transform_engine","events_processed":650,"events_dropped":0,"avg_latency_ms":470.8407154178856,"throughput_eps":0,"last_update":"2026-03-21T16:43:59.210433659Z"} +2026/03/21 16:44:04 [log_collector] {"stage_name":"log_collector","events_processed":31257,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6251.4,"last_update":"2026-03-21T16:43:59.068070721Z"} +2026/03/21 16:44:04 [metric_collector] {"stage_name":"metric_collector","events_processed":19509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3901.8,"last_update":"2026-03-21T16:43:59.068619051Z"} +2026/03/21 16:44:04 ───────────────────────────────────────────────── +Saved state: 18 clusters, 31258 messages, reason: none +2026/03/21 16:44:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:44:09 [detection_layer] {"stage_name":"detection_layer","events_processed":650,"events_dropped":0,"avg_latency_ms":19.641557725205317,"throughput_eps":0,"last_update":"2026-03-21T16:44:04.210192954Z"} +2026/03/21 16:44:09 [transform_engine] {"stage_name":"transform_engine","events_processed":650,"events_dropped":0,"avg_latency_ms":470.8407154178856,"throughput_eps":0,"last_update":"2026-03-21T16:44:04.210073565Z"} +2026/03/21 16:44:09 [log_collector] {"stage_name":"log_collector","events_processed":31257,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6251.4,"last_update":"2026-03-21T16:44:04.068978826Z"} +2026/03/21 16:44:09 [metric_collector] {"stage_name":"metric_collector","events_processed":19514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3902.8,"last_update":"2026-03-21T16:44:04.069040905Z"} +2026/03/21 16:44:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:44:04.079681318Z"} +2026/03/21 16:44:09 ───────────────────────────────────────────────── +2026/03/21 16:44:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:44:14 [log_collector] {"stage_name":"log_collector","events_processed":31260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6252,"last_update":"2026-03-21T16:44:09.06888951Z"} +2026/03/21 16:44:14 [metric_collector] {"stage_name":"metric_collector","events_processed":19519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3903.8,"last_update":"2026-03-21T16:44:09.069268706Z"} +2026/03/21 16:44:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:44:09.078218952Z"} +2026/03/21 16:44:14 [detection_layer] {"stage_name":"detection_layer","events_processed":650,"events_dropped":0,"avg_latency_ms":19.641557725205317,"throughput_eps":0,"last_update":"2026-03-21T16:44:09.209906239Z"} +2026/03/21 16:44:14 [transform_engine] {"stage_name":"transform_engine","events_processed":650,"events_dropped":0,"avg_latency_ms":470.8407154178856,"throughput_eps":0,"last_update":"2026-03-21T16:44:09.209953921Z"} +2026/03/21 16:44:14 ───────────────────────────────────────────────── +2026/03/21 16:44:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:44:19 [log_collector] {"stage_name":"log_collector","events_processed":31260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6252,"last_update":"2026-03-21T16:44:14.068265526Z"} +2026/03/21 16:44:19 [metric_collector] {"stage_name":"metric_collector","events_processed":19524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3904.8,"last_update":"2026-03-21T16:44:14.068533899Z"} +2026/03/21 16:44:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7812,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:44:14.075520954Z"} +2026/03/21 16:44:19 [detection_layer] {"stage_name":"detection_layer","events_processed":650,"events_dropped":0,"avg_latency_ms":19.641557725205317,"throughput_eps":0,"last_update":"2026-03-21T16:44:14.210909141Z"} +2026/03/21 16:44:19 [transform_engine] {"stage_name":"transform_engine","events_processed":650,"events_dropped":0,"avg_latency_ms":470.8407154178856,"throughput_eps":0,"last_update":"2026-03-21T16:44:14.209736395Z"} +2026/03/21 16:44:19 ───────────────────────────────────────────────── +2026/03/21 16:44:19 [ANOMALY] time=2026-03-21T16:44:19Z score=0.8101 method=SEAD details=MAD!:w=0.28,s=0.73 RRCF-fast!:w=0.19,s=0.89 RRCF-mid!:w=0.15,s=0.89 RRCF-slow:w=0.14,s=0.57 COPOD!:w=0.24,s=0.94 +2026/03/21 16:44:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:44:24 [detection_layer] {"stage_name":"detection_layer","events_processed":650,"events_dropped":0,"avg_latency_ms":19.641557725205317,"throughput_eps":0,"last_update":"2026-03-21T16:44:19.210328477Z"} +2026/03/21 16:44:24 [transform_engine] {"stage_name":"transform_engine","events_processed":651,"events_dropped":0,"avg_latency_ms":411.6773527343085,"throughput_eps":0,"last_update":"2026-03-21T16:44:19.385407916Z"} +2026/03/21 16:44:24 [log_collector] {"stage_name":"log_collector","events_processed":31271,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6254.2,"last_update":"2026-03-21T16:44:19.068804156Z"} +2026/03/21 16:44:24 [metric_collector] {"stage_name":"metric_collector","events_processed":19529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3905.8,"last_update":"2026-03-21T16:44:19.069122095Z"} +2026/03/21 16:44:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:44:19.078973376Z"} +2026/03/21 16:44:24 ───────────────────────────────────────────────── +2026/03/21 16:44:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:44:29 [log_collector] {"stage_name":"log_collector","events_processed":31279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6255.8,"last_update":"2026-03-21T16:44:24.068837096Z"} +2026/03/21 16:44:29 [metric_collector] {"stage_name":"metric_collector","events_processed":19534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3906.8,"last_update":"2026-03-21T16:44:24.069077417Z"} +2026/03/21 16:44:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7816,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:44:24.076095962Z"} +2026/03/21 16:44:29 [detection_layer] {"stage_name":"detection_layer","events_processed":651,"events_dropped":0,"avg_latency_ms":19.232359380164255,"throughput_eps":0,"last_update":"2026-03-21T16:44:24.210336469Z"} +2026/03/21 16:44:29 [transform_engine] {"stage_name":"transform_engine","events_processed":651,"events_dropped":0,"avg_latency_ms":411.6773527343085,"throughput_eps":0,"last_update":"2026-03-21T16:44:24.210379903Z"} +2026/03/21 16:44:29 ───────────────────────────────────────────────── +2026/03/21 16:44:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:44:34 [metric_collector] {"stage_name":"metric_collector","events_processed":19539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3907.8,"last_update":"2026-03-21T16:44:29.069281362Z"} +2026/03/21 16:44:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7818,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:44:29.078453031Z"} +2026/03/21 16:44:34 [detection_layer] {"stage_name":"detection_layer","events_processed":651,"events_dropped":0,"avg_latency_ms":19.232359380164255,"throughput_eps":0,"last_update":"2026-03-21T16:44:29.210731161Z"} +2026/03/21 16:44:34 [transform_engine] {"stage_name":"transform_engine","events_processed":651,"events_dropped":0,"avg_latency_ms":411.6773527343085,"throughput_eps":0,"last_update":"2026-03-21T16:44:29.210707986Z"} +2026/03/21 16:44:34 [log_collector] {"stage_name":"log_collector","events_processed":31285,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6257,"last_update":"2026-03-21T16:44:29.068937163Z"} +2026/03/21 16:44:34 ───────────────────────────────────────────────── +2026/03/21 16:44:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:44:39 [log_collector] {"stage_name":"log_collector","events_processed":31301,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6260.2,"last_update":"2026-03-21T16:44:34.068068241Z"} +2026/03/21 16:44:39 [metric_collector] {"stage_name":"metric_collector","events_processed":19544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3908.8,"last_update":"2026-03-21T16:44:34.068655796Z"} +2026/03/21 16:44:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7820,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:44:34.077551568Z"} +2026/03/21 16:44:39 [detection_layer] {"stage_name":"detection_layer","events_processed":651,"events_dropped":0,"avg_latency_ms":19.232359380164255,"throughput_eps":0,"last_update":"2026-03-21T16:44:34.210839291Z"} +2026/03/21 16:44:39 [transform_engine] {"stage_name":"transform_engine","events_processed":651,"events_dropped":0,"avg_latency_ms":411.6773527343085,"throughput_eps":0,"last_update":"2026-03-21T16:44:34.209688857Z"} +2026/03/21 16:44:39 ───────────────────────────────────────────────── +2026/03/21 16:44:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:44:44 [transform_engine] {"stage_name":"transform_engine","events_processed":651,"events_dropped":0,"avg_latency_ms":411.6773527343085,"throughput_eps":0,"last_update":"2026-03-21T16:44:39.210491336Z"} +2026/03/21 16:44:44 [log_collector] {"stage_name":"log_collector","events_processed":31301,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6260.2,"last_update":"2026-03-21T16:44:39.068282403Z"} +2026/03/21 16:44:44 [metric_collector] {"stage_name":"metric_collector","events_processed":19549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3909.8,"last_update":"2026-03-21T16:44:39.069019776Z"} +2026/03/21 16:44:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:44:39.077222078Z"} +2026/03/21 16:44:44 [detection_layer] {"stage_name":"detection_layer","events_processed":651,"events_dropped":0,"avg_latency_ms":19.232359380164255,"throughput_eps":0,"last_update":"2026-03-21T16:44:39.210521584Z"} +2026/03/21 16:44:44 ───────────────────────────────────────────────── +2026/03/21 16:44:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:44:49 [log_collector] {"stage_name":"log_collector","events_processed":31301,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6260.2,"last_update":"2026-03-21T16:44:44.068128738Z"} +2026/03/21 16:44:49 [metric_collector] {"stage_name":"metric_collector","events_processed":19554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3910.8,"last_update":"2026-03-21T16:44:44.069028462Z"} +2026/03/21 16:44:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:44:44.077900467Z"} +2026/03/21 16:44:49 [detection_layer] {"stage_name":"detection_layer","events_processed":651,"events_dropped":0,"avg_latency_ms":19.232359380164255,"throughput_eps":0,"last_update":"2026-03-21T16:44:44.210489372Z"} +2026/03/21 16:44:49 [transform_engine] {"stage_name":"transform_engine","events_processed":651,"events_dropped":0,"avg_latency_ms":411.6773527343085,"throughput_eps":0,"last_update":"2026-03-21T16:44:44.210457481Z"} +2026/03/21 16:44:49 ───────────────────────────────────────────────── +2026/03/21 16:44:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:44:54 [transform_engine] {"stage_name":"transform_engine","events_processed":652,"events_dropped":0,"avg_latency_ms":352.5753055874468,"throughput_eps":0,"last_update":"2026-03-21T16:44:49.325895158Z"} +2026/03/21 16:44:54 [log_collector] {"stage_name":"log_collector","events_processed":31301,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6260.2,"last_update":"2026-03-21T16:44:49.068771687Z"} +2026/03/21 16:44:54 [metric_collector] {"stage_name":"metric_collector","events_processed":19559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3911.8,"last_update":"2026-03-21T16:44:49.06942587Z"} +2026/03/21 16:44:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7826,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:44:49.077610859Z"} +2026/03/21 16:44:54 [detection_layer] {"stage_name":"detection_layer","events_processed":651,"events_dropped":0,"avg_latency_ms":19.232359380164255,"throughput_eps":0,"last_update":"2026-03-21T16:44:49.210992973Z"} +2026/03/21 16:44:54 ───────────────────────────────────────────────── +2026/03/21 16:44:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:44:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:44:54.078904633Z"} +2026/03/21 16:44:59 [detection_layer] {"stage_name":"detection_layer","events_processed":652,"events_dropped":0,"avg_latency_ms":19.382194704131404,"throughput_eps":0,"last_update":"2026-03-21T16:44:54.210279181Z"} +2026/03/21 16:44:59 [transform_engine] {"stage_name":"transform_engine","events_processed":652,"events_dropped":0,"avg_latency_ms":352.5753055874468,"throughput_eps":0,"last_update":"2026-03-21T16:44:54.210169251Z"} +2026/03/21 16:44:59 [log_collector] {"stage_name":"log_collector","events_processed":31301,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6260.2,"last_update":"2026-03-21T16:44:54.068751293Z"} +2026/03/21 16:44:59 [metric_collector] {"stage_name":"metric_collector","events_processed":19564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3912.8,"last_update":"2026-03-21T16:44:54.069047761Z"} +2026/03/21 16:44:59 ───────────────────────────────────────────────── +2026/03/21 16:45:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:45:04 [log_collector] {"stage_name":"log_collector","events_processed":31301,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6260.2,"last_update":"2026-03-21T16:44:59.068122614Z"} +2026/03/21 16:45:04 [metric_collector] {"stage_name":"metric_collector","events_processed":19569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3913.8,"last_update":"2026-03-21T16:44:59.068606451Z"} +2026/03/21 16:45:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7830,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:44:59.077688979Z"} +2026/03/21 16:45:04 [detection_layer] {"stage_name":"detection_layer","events_processed":652,"events_dropped":0,"avg_latency_ms":19.382194704131404,"throughput_eps":0,"last_update":"2026-03-21T16:44:59.20993671Z"} +2026/03/21 16:45:04 [transform_engine] {"stage_name":"transform_engine","events_processed":652,"events_dropped":0,"avg_latency_ms":352.5753055874468,"throughput_eps":0,"last_update":"2026-03-21T16:44:59.209971486Z"} +2026/03/21 16:45:04 ───────────────────────────────────────────────── +2026/03/21 16:45:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:45:09 [metric_collector] {"stage_name":"metric_collector","events_processed":19574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3914.8,"last_update":"2026-03-21T16:45:04.068908891Z"} +2026/03/21 16:45:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7832,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:45:04.078783247Z"} +2026/03/21 16:45:09 [detection_layer] {"stage_name":"detection_layer","events_processed":652,"events_dropped":0,"avg_latency_ms":19.382194704131404,"throughput_eps":0,"last_update":"2026-03-21T16:45:04.210028526Z"} +2026/03/21 16:45:09 [transform_engine] {"stage_name":"transform_engine","events_processed":652,"events_dropped":0,"avg_latency_ms":352.5753055874468,"throughput_eps":0,"last_update":"2026-03-21T16:45:04.210002506Z"} +2026/03/21 16:45:09 [log_collector] {"stage_name":"log_collector","events_processed":31301,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6260.2,"last_update":"2026-03-21T16:45:04.068760497Z"} +2026/03/21 16:45:09 ───────────────────────────────────────────────── +2026/03/21 16:45:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:45:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:45:09.07805428Z"} +2026/03/21 16:45:14 [detection_layer] {"stage_name":"detection_layer","events_processed":652,"events_dropped":0,"avg_latency_ms":19.382194704131404,"throughput_eps":0,"last_update":"2026-03-21T16:45:09.210397654Z"} +2026/03/21 16:45:14 [transform_engine] {"stage_name":"transform_engine","events_processed":652,"events_dropped":0,"avg_latency_ms":352.5753055874468,"throughput_eps":0,"last_update":"2026-03-21T16:45:09.210514227Z"} +2026/03/21 16:45:14 [log_collector] {"stage_name":"log_collector","events_processed":31301,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6260.2,"last_update":"2026-03-21T16:45:09.068808819Z"} +2026/03/21 16:45:14 [metric_collector] {"stage_name":"metric_collector","events_processed":19579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3915.8,"last_update":"2026-03-21T16:45:09.069312514Z"} +2026/03/21 16:45:14 ───────────────────────────────────────────────── +2026/03/21 16:45:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:45:19 [detection_layer] {"stage_name":"detection_layer","events_processed":652,"events_dropped":0,"avg_latency_ms":19.382194704131404,"throughput_eps":0,"last_update":"2026-03-21T16:45:14.209863117Z"} +2026/03/21 16:45:19 [transform_engine] {"stage_name":"transform_engine","events_processed":652,"events_dropped":0,"avg_latency_ms":352.5753055874468,"throughput_eps":0,"last_update":"2026-03-21T16:45:14.20981207Z"} +2026/03/21 16:45:19 [log_collector] {"stage_name":"log_collector","events_processed":31301,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6260.2,"last_update":"2026-03-21T16:45:14.068728413Z"} +2026/03/21 16:45:19 [metric_collector] {"stage_name":"metric_collector","events_processed":19584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3916.8,"last_update":"2026-03-21T16:45:14.069130904Z"} +2026/03/21 16:45:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:45:14.080647686Z"} +2026/03/21 16:45:19 ───────────────────────────────────────────────── +2026/03/21 16:45:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:45:24 [metric_collector] {"stage_name":"metric_collector","events_processed":19589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3917.8,"last_update":"2026-03-21T16:45:19.06926637Z"} +2026/03/21 16:45:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:45:19.078174655Z"} +2026/03/21 16:45:24 [detection_layer] {"stage_name":"detection_layer","events_processed":652,"events_dropped":0,"avg_latency_ms":19.382194704131404,"throughput_eps":0,"last_update":"2026-03-21T16:45:19.210499734Z"} +2026/03/21 16:45:24 [transform_engine] {"stage_name":"transform_engine","events_processed":653,"events_dropped":0,"avg_latency_ms":297.15850626995746,"throughput_eps":0,"last_update":"2026-03-21T16:45:19.285881764Z"} +2026/03/21 16:45:24 [log_collector] {"stage_name":"log_collector","events_processed":31301,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6260.2,"last_update":"2026-03-21T16:45:19.068704023Z"} +2026/03/21 16:45:24 ───────────────────────────────────────────────── +2026/03/21 16:45:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:45:29 [log_collector] {"stage_name":"log_collector","events_processed":31301,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6260.2,"last_update":"2026-03-21T16:45:24.06812584Z"} +2026/03/21 16:45:29 [metric_collector] {"stage_name":"metric_collector","events_processed":19594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3918.8,"last_update":"2026-03-21T16:45:24.068596893Z"} +2026/03/21 16:45:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:45:24.078861645Z"} +2026/03/21 16:45:29 [detection_layer] {"stage_name":"detection_layer","events_processed":653,"events_dropped":0,"avg_latency_ms":19.952183363305124,"throughput_eps":0,"last_update":"2026-03-21T16:45:24.210091015Z"} +2026/03/21 16:45:29 [transform_engine] {"stage_name":"transform_engine","events_processed":653,"events_dropped":0,"avg_latency_ms":297.15850626995746,"throughput_eps":0,"last_update":"2026-03-21T16:45:24.210102697Z"} +2026/03/21 16:45:29 ───────────────────────────────────────────────── +2026/03/21 16:45:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:45:34 [detection_layer] {"stage_name":"detection_layer","events_processed":653,"events_dropped":0,"avg_latency_ms":19.952183363305124,"throughput_eps":0,"last_update":"2026-03-21T16:45:29.210337642Z"} +2026/03/21 16:45:34 [transform_engine] {"stage_name":"transform_engine","events_processed":653,"events_dropped":0,"avg_latency_ms":297.15850626995746,"throughput_eps":0,"last_update":"2026-03-21T16:45:29.210390092Z"} +2026/03/21 16:45:34 [log_collector] {"stage_name":"log_collector","events_processed":31301,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6260.2,"last_update":"2026-03-21T16:45:29.068773996Z"} +2026/03/21 16:45:34 [metric_collector] {"stage_name":"metric_collector","events_processed":19599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3919.8,"last_update":"2026-03-21T16:45:29.06900064Z"} +2026/03/21 16:45:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:45:29.079002198Z"} +2026/03/21 16:45:34 ───────────────────────────────────────────────── +Saved state: 18 clusters, 31302 messages, reason: none +2026/03/21 16:45:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:45:39 [log_collector] {"stage_name":"log_collector","events_processed":31301,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6260.2,"last_update":"2026-03-21T16:45:34.06875409Z"} +2026/03/21 16:45:39 [metric_collector] {"stage_name":"metric_collector","events_processed":19604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3920.8,"last_update":"2026-03-21T16:45:34.06898405Z"} +2026/03/21 16:45:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:45:34.079005757Z"} +2026/03/21 16:45:39 [detection_layer] {"stage_name":"detection_layer","events_processed":653,"events_dropped":0,"avg_latency_ms":19.952183363305124,"throughput_eps":0,"last_update":"2026-03-21T16:45:34.210500175Z"} +2026/03/21 16:45:39 [transform_engine] {"stage_name":"transform_engine","events_processed":653,"events_dropped":0,"avg_latency_ms":297.15850626995746,"throughput_eps":0,"last_update":"2026-03-21T16:45:34.210514602Z"} +2026/03/21 16:45:39 ───────────────────────────────────────────────── +2026/03/21 16:45:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:45:44 [log_collector] {"stage_name":"log_collector","events_processed":31306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6261.2,"last_update":"2026-03-21T16:45:39.068622067Z"} +2026/03/21 16:45:44 [metric_collector] {"stage_name":"metric_collector","events_processed":19608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3921.6,"last_update":"2026-03-21T16:45:39.068630162Z"} +2026/03/21 16:45:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:45:39.075893305Z"} +2026/03/21 16:45:44 [detection_layer] {"stage_name":"detection_layer","events_processed":653,"events_dropped":0,"avg_latency_ms":19.952183363305124,"throughput_eps":0,"last_update":"2026-03-21T16:45:39.210114125Z"} +2026/03/21 16:45:44 [transform_engine] {"stage_name":"transform_engine","events_processed":653,"events_dropped":0,"avg_latency_ms":297.15850626995746,"throughput_eps":0,"last_update":"2026-03-21T16:45:39.210099998Z"} +2026/03/21 16:45:44 ───────────────────────────────────────────────── +2026/03/21 16:45:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:45:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7848,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:45:44.076557825Z"} +2026/03/21 16:45:49 [detection_layer] {"stage_name":"detection_layer","events_processed":653,"events_dropped":0,"avg_latency_ms":19.952183363305124,"throughput_eps":0,"last_update":"2026-03-21T16:45:44.210791849Z"} +2026/03/21 16:45:49 [transform_engine] {"stage_name":"transform_engine","events_processed":653,"events_dropped":0,"avg_latency_ms":297.15850626995746,"throughput_eps":0,"last_update":"2026-03-21T16:45:44.209700189Z"} +2026/03/21 16:45:49 [log_collector] {"stage_name":"log_collector","events_processed":31306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6261.2,"last_update":"2026-03-21T16:45:44.068937638Z"} +2026/03/21 16:45:49 [metric_collector] {"stage_name":"metric_collector","events_processed":19614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3922.8,"last_update":"2026-03-21T16:45:44.068849218Z"} +2026/03/21 16:45:49 ───────────────────────────────────────────────── +2026/03/21 16:45:50 [ANOMALY] time=2026-03-21T16:45:50Z score=0.9175 method=SEAD details=MAD!:w=0.28,s=0.91 RRCF-fast!:w=0.19,s=1.00 RRCF-mid!:w=0.15,s=1.00 RRCF-slow!:w=0.14,s=1.00 COPOD!:w=0.24,s=0.77 +2026/03/21 16:45:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:45:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:45:49.07569661Z"} +2026/03/21 16:45:54 [detection_layer] {"stage_name":"detection_layer","events_processed":653,"events_dropped":0,"avg_latency_ms":19.952183363305124,"throughput_eps":0,"last_update":"2026-03-21T16:45:49.20992806Z"} +2026/03/21 16:45:54 [transform_engine] {"stage_name":"transform_engine","events_processed":654,"events_dropped":0,"avg_latency_ms":535.617633215966,"throughput_eps":0,"last_update":"2026-03-21T16:45:50.699397941Z"} +2026/03/21 16:45:54 [log_collector] {"stage_name":"log_collector","events_processed":31306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6261.2,"last_update":"2026-03-21T16:45:49.06852423Z"} +2026/03/21 16:45:54 [metric_collector] {"stage_name":"metric_collector","events_processed":19619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3923.8,"last_update":"2026-03-21T16:45:49.068795711Z"} +2026/03/21 16:45:54 ───────────────────────────────────────────────── +2026/03/21 16:45:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:45:59 [metric_collector] {"stage_name":"metric_collector","events_processed":19624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3924.8,"last_update":"2026-03-21T16:45:54.068936745Z"} +2026/03/21 16:45:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:45:54.076154401Z"} +2026/03/21 16:45:59 [detection_layer] {"stage_name":"detection_layer","events_processed":654,"events_dropped":0,"avg_latency_ms":18.4012598906441,"throughput_eps":0,"last_update":"2026-03-21T16:45:54.210395009Z"} +2026/03/21 16:45:59 [transform_engine] {"stage_name":"transform_engine","events_processed":654,"events_dropped":0,"avg_latency_ms":535.617633215966,"throughput_eps":0,"last_update":"2026-03-21T16:45:54.210412422Z"} +2026/03/21 16:45:59 [log_collector] {"stage_name":"log_collector","events_processed":31306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6261.2,"last_update":"2026-03-21T16:45:54.068715722Z"} +2026/03/21 16:45:59 ───────────────────────────────────────────────── +2026/03/21 16:46:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:46:04 [transform_engine] {"stage_name":"transform_engine","events_processed":654,"events_dropped":0,"avg_latency_ms":535.617633215966,"throughput_eps":0,"last_update":"2026-03-21T16:45:59.209793539Z"} +2026/03/21 16:46:04 [log_collector] {"stage_name":"log_collector","events_processed":31306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6261.2,"last_update":"2026-03-21T16:45:59.068556549Z"} +2026/03/21 16:46:04 [metric_collector] {"stage_name":"metric_collector","events_processed":19628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3925.6,"last_update":"2026-03-21T16:45:59.068566769Z"} +2026/03/21 16:46:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:45:59.080655485Z"} +2026/03/21 16:46:04 [detection_layer] {"stage_name":"detection_layer","events_processed":654,"events_dropped":0,"avg_latency_ms":18.4012598906441,"throughput_eps":0,"last_update":"2026-03-21T16:45:59.210910969Z"} +2026/03/21 16:46:04 ───────────────────────────────────────────────── +2026/03/21 16:46:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:46:09 [log_collector] {"stage_name":"log_collector","events_processed":31306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6261.2,"last_update":"2026-03-21T16:46:04.069003045Z"} +2026/03/21 16:46:09 [metric_collector] {"stage_name":"metric_collector","events_processed":19634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3926.8,"last_update":"2026-03-21T16:46:04.069062028Z"} +2026/03/21 16:46:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:46:04.079455648Z"} +2026/03/21 16:46:09 [detection_layer] {"stage_name":"detection_layer","events_processed":654,"events_dropped":0,"avg_latency_ms":18.4012598906441,"throughput_eps":0,"last_update":"2026-03-21T16:46:04.210580838Z"} +2026/03/21 16:46:09 [transform_engine] {"stage_name":"transform_engine","events_processed":654,"events_dropped":0,"avg_latency_ms":535.617633215966,"throughput_eps":0,"last_update":"2026-03-21T16:46:04.210559537Z"} +2026/03/21 16:46:09 ───────────────────────────────────────────────── +2026/03/21 16:46:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:46:14 [log_collector] {"stage_name":"log_collector","events_processed":31306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6261.2,"last_update":"2026-03-21T16:46:09.068728249Z"} +2026/03/21 16:46:14 [metric_collector] {"stage_name":"metric_collector","events_processed":19639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3927.8,"last_update":"2026-03-21T16:46:09.069060746Z"} +2026/03/21 16:46:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:46:09.077331108Z"} +2026/03/21 16:46:14 [detection_layer] {"stage_name":"detection_layer","events_processed":654,"events_dropped":0,"avg_latency_ms":18.4012598906441,"throughput_eps":0,"last_update":"2026-03-21T16:46:09.210549358Z"} +2026/03/21 16:46:14 [transform_engine] {"stage_name":"transform_engine","events_processed":654,"events_dropped":0,"avg_latency_ms":535.617633215966,"throughput_eps":0,"last_update":"2026-03-21T16:46:09.210533998Z"} +2026/03/21 16:46:14 ───────────────────────────────────────────────── +2026/03/21 16:46:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:46:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7860,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:46:14.079784806Z"} +2026/03/21 16:46:19 [detection_layer] {"stage_name":"detection_layer","events_processed":654,"events_dropped":0,"avg_latency_ms":18.4012598906441,"throughput_eps":0,"last_update":"2026-03-21T16:46:14.210509248Z"} +2026/03/21 16:46:19 [transform_engine] {"stage_name":"transform_engine","events_processed":654,"events_dropped":0,"avg_latency_ms":535.617633215966,"throughput_eps":0,"last_update":"2026-03-21T16:46:14.210497195Z"} +2026/03/21 16:46:19 [log_collector] {"stage_name":"log_collector","events_processed":31306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6261.2,"last_update":"2026-03-21T16:46:14.068301399Z"} +2026/03/21 16:46:19 [metric_collector] {"stage_name":"metric_collector","events_processed":19644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3928.8,"last_update":"2026-03-21T16:46:14.068297331Z"} +2026/03/21 16:46:19 ───────────────────────────────────────────────── +2026/03/21 16:46:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:46:24 [log_collector] {"stage_name":"log_collector","events_processed":31309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6261.8,"last_update":"2026-03-21T16:46:19.068674158Z"} +2026/03/21 16:46:24 [metric_collector] {"stage_name":"metric_collector","events_processed":19649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3929.8,"last_update":"2026-03-21T16:46:19.068869552Z"} +2026/03/21 16:46:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7862,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:46:19.07560205Z"} +2026/03/21 16:46:24 [detection_layer] {"stage_name":"detection_layer","events_processed":654,"events_dropped":0,"avg_latency_ms":18.4012598906441,"throughput_eps":0,"last_update":"2026-03-21T16:46:19.210850318Z"} +2026/03/21 16:46:24 [transform_engine] {"stage_name":"transform_engine","events_processed":655,"events_dropped":0,"avg_latency_ms":600.2654409727728,"throughput_eps":0,"last_update":"2026-03-21T16:46:20.068610078Z"} +2026/03/21 16:46:24 ───────────────────────────────────────────────── +2026/03/21 16:46:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:46:29 [log_collector] {"stage_name":"log_collector","events_processed":31317,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6263.4,"last_update":"2026-03-21T16:46:24.06876164Z"} +2026/03/21 16:46:29 [metric_collector] {"stage_name":"metric_collector","events_processed":19654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3930.8,"last_update":"2026-03-21T16:46:24.068910736Z"} +2026/03/21 16:46:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:46:24.074824014Z"} +2026/03/21 16:46:29 [detection_layer] {"stage_name":"detection_layer","events_processed":655,"events_dropped":0,"avg_latency_ms":16.93864391251528,"throughput_eps":0,"last_update":"2026-03-21T16:46:24.21014433Z"} +2026/03/21 16:46:29 [transform_engine] {"stage_name":"transform_engine","events_processed":655,"events_dropped":0,"avg_latency_ms":600.2654409727728,"throughput_eps":0,"last_update":"2026-03-21T16:46:24.210155891Z"} +2026/03/21 16:46:29 ───────────────────────────────────────────────── +2026/03/21 16:46:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:46:34 [log_collector] {"stage_name":"log_collector","events_processed":31474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6294.8,"last_update":"2026-03-21T16:46:29.068553958Z"} +2026/03/21 16:46:34 [metric_collector] {"stage_name":"metric_collector","events_processed":19659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3931.8,"last_update":"2026-03-21T16:46:29.068665441Z"} +2026/03/21 16:46:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:46:29.076896277Z"} +2026/03/21 16:46:34 [detection_layer] {"stage_name":"detection_layer","events_processed":655,"events_dropped":0,"avg_latency_ms":16.93864391251528,"throughput_eps":0,"last_update":"2026-03-21T16:46:29.209988826Z"} +2026/03/21 16:46:34 [transform_engine] {"stage_name":"transform_engine","events_processed":655,"events_dropped":0,"avg_latency_ms":600.2654409727728,"throughput_eps":0,"last_update":"2026-03-21T16:46:29.209996741Z"} +2026/03/21 16:46:34 ───────────────────────────────────────────────── +2026/03/21 16:46:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:46:39 [log_collector] {"stage_name":"log_collector","events_processed":31663,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6332.6,"last_update":"2026-03-21T16:46:34.068276699Z"} +2026/03/21 16:46:39 [metric_collector] {"stage_name":"metric_collector","events_processed":19664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3932.8,"last_update":"2026-03-21T16:46:34.068696684Z"} +2026/03/21 16:46:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7868,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:46:34.076293196Z"} +2026/03/21 16:46:39 [detection_layer] {"stage_name":"detection_layer","events_processed":655,"events_dropped":0,"avg_latency_ms":16.93864391251528,"throughput_eps":0,"last_update":"2026-03-21T16:46:34.21054765Z"} +2026/03/21 16:46:39 [transform_engine] {"stage_name":"transform_engine","events_processed":655,"events_dropped":0,"avg_latency_ms":600.2654409727728,"throughput_eps":0,"last_update":"2026-03-21T16:46:34.210556337Z"} +2026/03/21 16:46:39 ───────────────────────────────────────────────── +2026/03/21 16:46:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:46:44 [metric_collector] {"stage_name":"metric_collector","events_processed":19669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3933.8,"last_update":"2026-03-21T16:46:39.068880367Z"} +2026/03/21 16:46:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:46:39.075497182Z"} +2026/03/21 16:46:44 [detection_layer] {"stage_name":"detection_layer","events_processed":655,"events_dropped":0,"avg_latency_ms":16.93864391251528,"throughput_eps":0,"last_update":"2026-03-21T16:46:39.210763824Z"} +2026/03/21 16:46:44 [transform_engine] {"stage_name":"transform_engine","events_processed":655,"events_dropped":0,"avg_latency_ms":600.2654409727728,"throughput_eps":0,"last_update":"2026-03-21T16:46:39.209682533Z"} +2026/03/21 16:46:44 [log_collector] {"stage_name":"log_collector","events_processed":31671,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6334.2,"last_update":"2026-03-21T16:46:39.068635778Z"} +2026/03/21 16:46:44 ───────────────────────────────────────────────── +2026/03/21 16:46:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:46:49 [log_collector] {"stage_name":"log_collector","events_processed":31671,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6334.2,"last_update":"2026-03-21T16:46:44.068176275Z"} +2026/03/21 16:46:49 [metric_collector] {"stage_name":"metric_collector","events_processed":19674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3934.8,"last_update":"2026-03-21T16:46:44.068692154Z"} +2026/03/21 16:46:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:46:44.075839796Z"} +2026/03/21 16:46:49 [detection_layer] {"stage_name":"detection_layer","events_processed":655,"events_dropped":0,"avg_latency_ms":16.93864391251528,"throughput_eps":0,"last_update":"2026-03-21T16:46:44.210126662Z"} +2026/03/21 16:46:49 [transform_engine] {"stage_name":"transform_engine","events_processed":655,"events_dropped":0,"avg_latency_ms":600.2654409727728,"throughput_eps":0,"last_update":"2026-03-21T16:46:44.210140428Z"} +2026/03/21 16:46:49 ───────────────────────────────────────────────── +2026/03/21 16:46:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:46:54 [log_collector] {"stage_name":"log_collector","events_processed":31671,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6334.2,"last_update":"2026-03-21T16:46:49.068575187Z"} +2026/03/21 16:46:54 [metric_collector] {"stage_name":"metric_collector","events_processed":19679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3935.8,"last_update":"2026-03-21T16:46:49.068977638Z"} +2026/03/21 16:46:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:46:49.07532709Z"} +2026/03/21 16:46:54 [detection_layer] {"stage_name":"detection_layer","events_processed":655,"events_dropped":0,"avg_latency_ms":16.93864391251528,"throughput_eps":0,"last_update":"2026-03-21T16:46:49.210564888Z"} +2026/03/21 16:46:54 [transform_engine] {"stage_name":"transform_engine","events_processed":656,"events_dropped":0,"avg_latency_ms":502.33215877821823,"throughput_eps":0,"last_update":"2026-03-21T16:46:49.321177444Z"} +2026/03/21 16:46:54 ───────────────────────────────────────────────── +2026/03/21 16:46:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:46:59 [log_collector] {"stage_name":"log_collector","events_processed":31671,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6334.2,"last_update":"2026-03-21T16:46:54.068062548Z"} +2026/03/21 16:46:59 [metric_collector] {"stage_name":"metric_collector","events_processed":19684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3936.8,"last_update":"2026-03-21T16:46:54.068484426Z"} +2026/03/21 16:46:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7876,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:46:54.075323857Z"} +2026/03/21 16:46:59 [detection_layer] {"stage_name":"detection_layer","events_processed":656,"events_dropped":0,"avg_latency_ms":16.33795173001222,"throughput_eps":0,"last_update":"2026-03-21T16:46:54.210729857Z"} +2026/03/21 16:46:59 [transform_engine] {"stage_name":"transform_engine","events_processed":656,"events_dropped":0,"avg_latency_ms":502.33215877821823,"throughput_eps":0,"last_update":"2026-03-21T16:46:54.210806374Z"} +2026/03/21 16:46:59 ───────────────────────────────────────────────── +2026/03/21 16:47:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:47:04 [transform_engine] {"stage_name":"transform_engine","events_processed":656,"events_dropped":0,"avg_latency_ms":502.33215877821823,"throughput_eps":0,"last_update":"2026-03-21T16:46:59.209816852Z"} +2026/03/21 16:47:04 [log_collector] {"stage_name":"log_collector","events_processed":31671,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6334.2,"last_update":"2026-03-21T16:46:59.068597367Z"} +2026/03/21 16:47:04 [metric_collector] {"stage_name":"metric_collector","events_processed":19689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3937.8,"last_update":"2026-03-21T16:46:59.068906048Z"} +2026/03/21 16:47:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:46:59.077568141Z"} +2026/03/21 16:47:04 [detection_layer] {"stage_name":"detection_layer","events_processed":656,"events_dropped":0,"avg_latency_ms":16.33795173001222,"throughput_eps":0,"last_update":"2026-03-21T16:46:59.209865876Z"} +2026/03/21 16:47:04 ───────────────────────────────────────────────── +2026/03/21 16:47:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:47:09 [log_collector] {"stage_name":"log_collector","events_processed":31671,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6334.2,"last_update":"2026-03-21T16:47:04.068610693Z"} +2026/03/21 16:47:09 [metric_collector] {"stage_name":"metric_collector","events_processed":19694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3938.8,"last_update":"2026-03-21T16:47:04.069015589Z"} +2026/03/21 16:47:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:47:04.077935626Z"} +2026/03/21 16:47:09 [detection_layer] {"stage_name":"detection_layer","events_processed":656,"events_dropped":0,"avg_latency_ms":16.33795173001222,"throughput_eps":0,"last_update":"2026-03-21T16:47:04.210285773Z"} +2026/03/21 16:47:09 [transform_engine] {"stage_name":"transform_engine","events_processed":656,"events_dropped":0,"avg_latency_ms":502.33215877821823,"throughput_eps":0,"last_update":"2026-03-21T16:47:04.210189939Z"} +2026/03/21 16:47:09 ───────────────────────────────────────────────── +2026/03/21 16:47:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:47:14 [detection_layer] {"stage_name":"detection_layer","events_processed":656,"events_dropped":0,"avg_latency_ms":16.33795173001222,"throughput_eps":0,"last_update":"2026-03-21T16:47:09.210383909Z"} +2026/03/21 16:47:14 [transform_engine] {"stage_name":"transform_engine","events_processed":656,"events_dropped":0,"avg_latency_ms":502.33215877821823,"throughput_eps":0,"last_update":"2026-03-21T16:47:09.210435819Z"} +2026/03/21 16:47:14 [log_collector] {"stage_name":"log_collector","events_processed":31671,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6334.2,"last_update":"2026-03-21T16:47:09.068865852Z"} +2026/03/21 16:47:14 [metric_collector] {"stage_name":"metric_collector","events_processed":19699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3939.8,"last_update":"2026-03-21T16:47:09.069251832Z"} +2026/03/21 16:47:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:47:09.080083591Z"} +2026/03/21 16:47:14 ───────────────────────────────────────────────── +2026/03/21 16:47:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:47:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:47:14.078252283Z"} +2026/03/21 16:47:19 [detection_layer] {"stage_name":"detection_layer","events_processed":656,"events_dropped":0,"avg_latency_ms":16.33795173001222,"throughput_eps":0,"last_update":"2026-03-21T16:47:14.21065025Z"} +2026/03/21 16:47:19 [transform_engine] {"stage_name":"transform_engine","events_processed":656,"events_dropped":0,"avg_latency_ms":502.33215877821823,"throughput_eps":0,"last_update":"2026-03-21T16:47:14.210767083Z"} +2026/03/21 16:47:19 [log_collector] {"stage_name":"log_collector","events_processed":31671,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6334.2,"last_update":"2026-03-21T16:47:14.06896387Z"} +2026/03/21 16:47:19 [metric_collector] {"stage_name":"metric_collector","events_processed":19704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3940.8,"last_update":"2026-03-21T16:47:14.069449059Z"} +2026/03/21 16:47:19 ───────────────────────────────────────────────── +2026/03/21 16:47:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:47:24 [log_collector] {"stage_name":"log_collector","events_processed":31671,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6334.2,"last_update":"2026-03-21T16:47:19.068668842Z"} +2026/03/21 16:47:24 [metric_collector] {"stage_name":"metric_collector","events_processed":19709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3941.8,"last_update":"2026-03-21T16:47:19.068918119Z"} +2026/03/21 16:47:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7886,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:47:19.077889344Z"} +2026/03/21 16:47:24 [detection_layer] {"stage_name":"detection_layer","events_processed":656,"events_dropped":0,"avg_latency_ms":16.33795173001222,"throughput_eps":0,"last_update":"2026-03-21T16:47:19.210413243Z"} +2026/03/21 16:47:24 [transform_engine] {"stage_name":"transform_engine","events_processed":657,"events_dropped":0,"avg_latency_ms":416.4193074225746,"throughput_eps":0,"last_update":"2026-03-21T16:47:19.283072116Z"} +2026/03/21 16:47:24 ───────────────────────────────────────────────── +2026/03/21 16:47:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:47:29 [log_collector] {"stage_name":"log_collector","events_processed":31671,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6334.2,"last_update":"2026-03-21T16:47:24.068751206Z"} +2026/03/21 16:47:29 [metric_collector] {"stage_name":"metric_collector","events_processed":19714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3942.8,"last_update":"2026-03-21T16:47:24.069066599Z"} +2026/03/21 16:47:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:47:24.079031878Z"} +2026/03/21 16:47:29 [detection_layer] {"stage_name":"detection_layer","events_processed":657,"events_dropped":0,"avg_latency_ms":17.16749178400978,"throughput_eps":0,"last_update":"2026-03-21T16:47:24.210224968Z"} +2026/03/21 16:47:29 [transform_engine] {"stage_name":"transform_engine","events_processed":657,"events_dropped":0,"avg_latency_ms":416.4193074225746,"throughput_eps":0,"last_update":"2026-03-21T16:47:24.210243704Z"} +2026/03/21 16:47:29 ───────────────────────────────────────────────── +2026/03/21 16:47:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:47:34 [log_collector] {"stage_name":"log_collector","events_processed":31671,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6334.2,"last_update":"2026-03-21T16:47:29.068780095Z"} +2026/03/21 16:47:34 [metric_collector] {"stage_name":"metric_collector","events_processed":19719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3943.8,"last_update":"2026-03-21T16:47:29.069004044Z"} +2026/03/21 16:47:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:47:29.079059797Z"} +2026/03/21 16:47:34 [detection_layer] {"stage_name":"detection_layer","events_processed":657,"events_dropped":0,"avg_latency_ms":17.16749178400978,"throughput_eps":0,"last_update":"2026-03-21T16:47:29.210487686Z"} +2026/03/21 16:47:34 [transform_engine] {"stage_name":"transform_engine","events_processed":657,"events_dropped":0,"avg_latency_ms":416.4193074225746,"throughput_eps":0,"last_update":"2026-03-21T16:47:29.210459963Z"} +2026/03/21 16:47:34 ───────────────────────────────────────────────── +2026/03/21 16:47:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:47:39 [detection_layer] {"stage_name":"detection_layer","events_processed":657,"events_dropped":0,"avg_latency_ms":17.16749178400978,"throughput_eps":0,"last_update":"2026-03-21T16:47:34.21068615Z"} +2026/03/21 16:47:39 [transform_engine] {"stage_name":"transform_engine","events_processed":657,"events_dropped":0,"avg_latency_ms":416.4193074225746,"throughput_eps":0,"last_update":"2026-03-21T16:47:34.210580036Z"} +2026/03/21 16:47:39 [log_collector] {"stage_name":"log_collector","events_processed":31671,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6334.2,"last_update":"2026-03-21T16:47:34.069042161Z"} +2026/03/21 16:47:39 [metric_collector] {"stage_name":"metric_collector","events_processed":19724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3944.8,"last_update":"2026-03-21T16:47:34.069330213Z"} +2026/03/21 16:47:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7892,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:47:34.079374493Z"} +2026/03/21 16:47:39 ───────────────────────────────────────────────── +2026/03/21 16:47:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:47:44 [log_collector] {"stage_name":"log_collector","events_processed":31671,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6334.2,"last_update":"2026-03-21T16:47:39.068991868Z"} +2026/03/21 16:47:44 [metric_collector] {"stage_name":"metric_collector","events_processed":19729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3945.8,"last_update":"2026-03-21T16:47:39.069364321Z"} +2026/03/21 16:47:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:47:39.078777894Z"} +2026/03/21 16:47:44 [detection_layer] {"stage_name":"detection_layer","events_processed":657,"events_dropped":0,"avg_latency_ms":17.16749178400978,"throughput_eps":0,"last_update":"2026-03-21T16:47:39.210311074Z"} +2026/03/21 16:47:44 [transform_engine] {"stage_name":"transform_engine","events_processed":657,"events_dropped":0,"avg_latency_ms":416.4193074225746,"throughput_eps":0,"last_update":"2026-03-21T16:47:39.210154213Z"} +2026/03/21 16:47:44 ───────────────────────────────────────────────── +2026/03/21 16:47:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:47:49 [log_collector] {"stage_name":"log_collector","events_processed":31671,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6334.2,"last_update":"2026-03-21T16:47:44.068908931Z"} +2026/03/21 16:47:49 [metric_collector] {"stage_name":"metric_collector","events_processed":19734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3946.8,"last_update":"2026-03-21T16:47:44.06889837Z"} +2026/03/21 16:47:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7896,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:47:44.077885335Z"} +2026/03/21 16:47:49 [detection_layer] {"stage_name":"detection_layer","events_processed":657,"events_dropped":0,"avg_latency_ms":17.16749178400978,"throughput_eps":0,"last_update":"2026-03-21T16:47:44.210127063Z"} +2026/03/21 16:47:49 [transform_engine] {"stage_name":"transform_engine","events_processed":657,"events_dropped":0,"avg_latency_ms":416.4193074225746,"throughput_eps":0,"last_update":"2026-03-21T16:47:44.210153153Z"} +2026/03/21 16:47:49 ───────────────────────────────────────────────── +2026/03/21 16:47:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:47:54 [log_collector] {"stage_name":"log_collector","events_processed":31671,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6334.2,"last_update":"2026-03-21T16:47:49.068567668Z"} +2026/03/21 16:47:54 [metric_collector] {"stage_name":"metric_collector","events_processed":19739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3947.8,"last_update":"2026-03-21T16:47:49.069027338Z"} +2026/03/21 16:47:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7898,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:47:49.077510187Z"} +2026/03/21 16:47:54 [detection_layer] {"stage_name":"detection_layer","events_processed":657,"events_dropped":0,"avg_latency_ms":17.16749178400978,"throughput_eps":0,"last_update":"2026-03-21T16:47:49.210551978Z"} +2026/03/21 16:47:54 [transform_engine] {"stage_name":"transform_engine","events_processed":658,"events_dropped":0,"avg_latency_ms":347.6714927380597,"throughput_eps":0,"last_update":"2026-03-21T16:47:49.282472536Z"} +2026/03/21 16:47:54 ───────────────────────────────────────────────── +2026/03/21 16:47:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:47:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7900,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:47:54.077953645Z"} +2026/03/21 16:47:59 [detection_layer] {"stage_name":"detection_layer","events_processed":658,"events_dropped":0,"avg_latency_ms":17.817726027207826,"throughput_eps":0,"last_update":"2026-03-21T16:47:54.210284453Z"} +2026/03/21 16:47:59 [transform_engine] {"stage_name":"transform_engine","events_processed":658,"events_dropped":0,"avg_latency_ms":347.6714927380597,"throughput_eps":0,"last_update":"2026-03-21T16:47:54.210348096Z"} +2026/03/21 16:47:59 [log_collector] {"stage_name":"log_collector","events_processed":31671,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6334.2,"last_update":"2026-03-21T16:47:54.068668478Z"} +2026/03/21 16:47:59 [metric_collector] {"stage_name":"metric_collector","events_processed":19744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3948.8,"last_update":"2026-03-21T16:47:54.069153147Z"} +2026/03/21 16:47:59 ───────────────────────────────────────────────── +Saved state: 18 clusters, 31672 messages, reason: none +2026/03/21 16:48:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:48:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:47:59.078528744Z"} +2026/03/21 16:48:04 [detection_layer] {"stage_name":"detection_layer","events_processed":658,"events_dropped":0,"avg_latency_ms":17.817726027207826,"throughput_eps":0,"last_update":"2026-03-21T16:47:59.209905294Z"} +2026/03/21 16:48:04 [transform_engine] {"stage_name":"transform_engine","events_processed":658,"events_dropped":0,"avg_latency_ms":347.6714927380597,"throughput_eps":0,"last_update":"2026-03-21T16:47:59.209771499Z"} +2026/03/21 16:48:04 [log_collector] {"stage_name":"log_collector","events_processed":31671,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6334.2,"last_update":"2026-03-21T16:47:59.068718432Z"} +2026/03/21 16:48:04 [metric_collector] {"stage_name":"metric_collector","events_processed":19749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3949.8,"last_update":"2026-03-21T16:47:59.069053794Z"} +2026/03/21 16:48:04 ───────────────────────────────────────────────── +2026/03/21 16:48:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:48:09 [transform_engine] {"stage_name":"transform_engine","events_processed":658,"events_dropped":0,"avg_latency_ms":347.6714927380597,"throughput_eps":0,"last_update":"2026-03-21T16:48:04.209908448Z"} +2026/03/21 16:48:09 [log_collector] {"stage_name":"log_collector","events_processed":31674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6334.8,"last_update":"2026-03-21T16:48:04.068761341Z"} +2026/03/21 16:48:09 [metric_collector] {"stage_name":"metric_collector","events_processed":19754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3950.8,"last_update":"2026-03-21T16:48:04.068753635Z"} +2026/03/21 16:48:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:48:04.076773949Z"} +2026/03/21 16:48:09 [detection_layer] {"stage_name":"detection_layer","events_processed":658,"events_dropped":0,"avg_latency_ms":17.817726027207826,"throughput_eps":0,"last_update":"2026-03-21T16:48:04.209934688Z"} +2026/03/21 16:48:09 ───────────────────────────────────────────────── +2026/03/21 16:48:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:48:14 [log_collector] {"stage_name":"log_collector","events_processed":31674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6334.8,"last_update":"2026-03-21T16:48:09.068590848Z"} +2026/03/21 16:48:14 [metric_collector] {"stage_name":"metric_collector","events_processed":19759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3951.8,"last_update":"2026-03-21T16:48:09.06887915Z"} +2026/03/21 16:48:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7906,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:48:09.075505624Z"} +2026/03/21 16:48:14 [detection_layer] {"stage_name":"detection_layer","events_processed":658,"events_dropped":0,"avg_latency_ms":17.817726027207826,"throughput_eps":0,"last_update":"2026-03-21T16:48:09.210854424Z"} +2026/03/21 16:48:14 [transform_engine] {"stage_name":"transform_engine","events_processed":658,"events_dropped":0,"avg_latency_ms":347.6714927380597,"throughput_eps":0,"last_update":"2026-03-21T16:48:09.20974589Z"} +2026/03/21 16:48:14 ───────────────────────────────────────────────── +2026/03/21 16:48:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:48:19 [log_collector] {"stage_name":"log_collector","events_processed":31685,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6337,"last_update":"2026-03-21T16:48:14.068107005Z"} +2026/03/21 16:48:19 [metric_collector] {"stage_name":"metric_collector","events_processed":19764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3952.8,"last_update":"2026-03-21T16:48:14.068537009Z"} +2026/03/21 16:48:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7908,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:48:14.079119Z"} +2026/03/21 16:48:19 [detection_layer] {"stage_name":"detection_layer","events_processed":658,"events_dropped":0,"avg_latency_ms":17.817726027207826,"throughput_eps":0,"last_update":"2026-03-21T16:48:14.2104172Z"} +2026/03/21 16:48:19 [transform_engine] {"stage_name":"transform_engine","events_processed":658,"events_dropped":0,"avg_latency_ms":347.6714927380597,"throughput_eps":0,"last_update":"2026-03-21T16:48:14.210389137Z"} +2026/03/21 16:48:19 ───────────────────────────────────────────────── +2026/03/21 16:48:19 [ANOMALY] time=2026-03-21T16:48:19Z score=0.8163 method=SEAD details=MAD!:w=0.29,s=0.67 RRCF-fast:w=0.18,s=0.77 RRCF-mid!:w=0.14,s=0.88 RRCF-slow!:w=0.14,s=0.84 COPOD!:w=0.24,s=0.98 +2026/03/21 16:48:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:48:24 [metric_collector] {"stage_name":"metric_collector","events_processed":19769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3953.8,"last_update":"2026-03-21T16:48:19.068930215Z"} +2026/03/21 16:48:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:48:19.076130347Z"} +2026/03/21 16:48:24 [detection_layer] {"stage_name":"detection_layer","events_processed":658,"events_dropped":0,"avg_latency_ms":17.817726027207826,"throughput_eps":0,"last_update":"2026-03-21T16:48:19.210407423Z"} +2026/03/21 16:48:24 [transform_engine] {"stage_name":"transform_engine","events_processed":659,"events_dropped":0,"avg_latency_ms":303.1441847904478,"throughput_eps":0,"last_update":"2026-03-21T16:48:19.335404052Z"} +2026/03/21 16:48:24 [log_collector] {"stage_name":"log_collector","events_processed":31701,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6340.2,"last_update":"2026-03-21T16:48:19.068615832Z"} +2026/03/21 16:48:24 ───────────────────────────────────────────────── +2026/03/21 16:48:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:48:29 [log_collector] {"stage_name":"log_collector","events_processed":31715,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6343,"last_update":"2026-03-21T16:48:24.068614429Z"} +2026/03/21 16:48:29 [metric_collector] {"stage_name":"metric_collector","events_processed":19774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3954.8,"last_update":"2026-03-21T16:48:24.068879616Z"} +2026/03/21 16:48:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7912,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:48:24.076355808Z"} +2026/03/21 16:48:29 [detection_layer] {"stage_name":"detection_layer","events_processed":659,"events_dropped":0,"avg_latency_ms":17.354704021766263,"throughput_eps":0,"last_update":"2026-03-21T16:48:24.210567839Z"} +2026/03/21 16:48:29 [transform_engine] {"stage_name":"transform_engine","events_processed":659,"events_dropped":0,"avg_latency_ms":303.1441847904478,"throughput_eps":0,"last_update":"2026-03-21T16:48:24.210595322Z"} +2026/03/21 16:48:29 ───────────────────────────────────────────────── +2026/03/21 16:48:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:48:34 [log_collector] {"stage_name":"log_collector","events_processed":31715,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6343,"last_update":"2026-03-21T16:48:29.068867831Z"} +2026/03/21 16:48:34 [metric_collector] {"stage_name":"metric_collector","events_processed":19779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3955.8,"last_update":"2026-03-21T16:48:29.068874804Z"} +2026/03/21 16:48:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:48:29.076632966Z"} +2026/03/21 16:48:34 [detection_layer] {"stage_name":"detection_layer","events_processed":659,"events_dropped":0,"avg_latency_ms":17.354704021766263,"throughput_eps":0,"last_update":"2026-03-21T16:48:29.210889814Z"} +2026/03/21 16:48:34 [transform_engine] {"stage_name":"transform_engine","events_processed":659,"events_dropped":0,"avg_latency_ms":303.1441847904478,"throughput_eps":0,"last_update":"2026-03-21T16:48:29.209749018Z"} +2026/03/21 16:48:34 ───────────────────────────────────────────────── +2026/03/21 16:48:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:48:39 [log_collector] {"stage_name":"log_collector","events_processed":31715,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6343,"last_update":"2026-03-21T16:48:34.068379433Z"} +2026/03/21 16:48:39 [metric_collector] {"stage_name":"metric_collector","events_processed":19784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3956.8,"last_update":"2026-03-21T16:48:34.068829596Z"} +2026/03/21 16:48:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:48:34.075337322Z"} +2026/03/21 16:48:39 [detection_layer] {"stage_name":"detection_layer","events_processed":659,"events_dropped":0,"avg_latency_ms":17.354704021766263,"throughput_eps":0,"last_update":"2026-03-21T16:48:34.210847631Z"} +2026/03/21 16:48:39 [transform_engine] {"stage_name":"transform_engine","events_processed":659,"events_dropped":0,"avg_latency_ms":303.1441847904478,"throughput_eps":0,"last_update":"2026-03-21T16:48:34.210744523Z"} +2026/03/21 16:48:39 ───────────────────────────────────────────────── +2026/03/21 16:48:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:48:44 [transform_engine] {"stage_name":"transform_engine","events_processed":659,"events_dropped":0,"avg_latency_ms":303.1441847904478,"throughput_eps":0,"last_update":"2026-03-21T16:48:39.210243751Z"} +2026/03/21 16:48:44 [log_collector] {"stage_name":"log_collector","events_processed":31715,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6343,"last_update":"2026-03-21T16:48:39.068672713Z"} +2026/03/21 16:48:44 [metric_collector] {"stage_name":"metric_collector","events_processed":19789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3957.8,"last_update":"2026-03-21T16:48:39.069004779Z"} +2026/03/21 16:48:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7918,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:48:39.07698257Z"} +2026/03/21 16:48:44 [detection_layer] {"stage_name":"detection_layer","events_processed":659,"events_dropped":0,"avg_latency_ms":17.354704021766263,"throughput_eps":0,"last_update":"2026-03-21T16:48:39.210276454Z"} +2026/03/21 16:48:44 ───────────────────────────────────────────────── +2026/03/21 16:48:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:48:49 [transform_engine] {"stage_name":"transform_engine","events_processed":659,"events_dropped":0,"avg_latency_ms":303.1441847904478,"throughput_eps":0,"last_update":"2026-03-21T16:48:44.210221345Z"} +2026/03/21 16:48:49 [log_collector] {"stage_name":"log_collector","events_processed":31715,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6343,"last_update":"2026-03-21T16:48:44.068053543Z"} +2026/03/21 16:48:49 [metric_collector] {"stage_name":"metric_collector","events_processed":19794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3958.8,"last_update":"2026-03-21T16:48:44.068341404Z"} +2026/03/21 16:48:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7920,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:48:44.076986635Z"} +2026/03/21 16:48:49 [detection_layer] {"stage_name":"detection_layer","events_processed":659,"events_dropped":0,"avg_latency_ms":17.354704021766263,"throughput_eps":0,"last_update":"2026-03-21T16:48:44.210324973Z"} +2026/03/21 16:48:49 ───────────────────────────────────────────────── +2026/03/21 16:48:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:48:54 [log_collector] {"stage_name":"log_collector","events_processed":31715,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6343,"last_update":"2026-03-21T16:48:49.068141436Z"} +2026/03/21 16:48:54 [metric_collector] {"stage_name":"metric_collector","events_processed":19799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3959.8,"last_update":"2026-03-21T16:48:49.068392116Z"} +2026/03/21 16:48:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:48:49.076830471Z"} +2026/03/21 16:48:54 [detection_layer] {"stage_name":"detection_layer","events_processed":659,"events_dropped":0,"avg_latency_ms":17.354704021766263,"throughput_eps":0,"last_update":"2026-03-21T16:48:49.210338093Z"} +2026/03/21 16:48:54 [transform_engine] {"stage_name":"transform_engine","events_processed":660,"events_dropped":0,"avg_latency_ms":268.2564086323583,"throughput_eps":0,"last_update":"2026-03-21T16:48:49.338806222Z"} +2026/03/21 16:48:54 ───────────────────────────────────────────────── +2026/03/21 16:48:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:48:59 [detection_layer] {"stage_name":"detection_layer","events_processed":660,"events_dropped":0,"avg_latency_ms":18.096092017413014,"throughput_eps":0,"last_update":"2026-03-21T16:48:54.210781926Z"} +2026/03/21 16:48:59 [transform_engine] {"stage_name":"transform_engine","events_processed":660,"events_dropped":0,"avg_latency_ms":268.2564086323583,"throughput_eps":0,"last_update":"2026-03-21T16:48:54.209637283Z"} +2026/03/21 16:48:59 [log_collector] {"stage_name":"log_collector","events_processed":31715,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6343,"last_update":"2026-03-21T16:48:54.068405786Z"} +2026/03/21 16:48:59 [metric_collector] {"stage_name":"metric_collector","events_processed":19804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3960.8,"last_update":"2026-03-21T16:48:54.068649542Z"} +2026/03/21 16:48:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:48:54.077523381Z"} +2026/03/21 16:48:59 ───────────────────────────────────────────────── +2026/03/21 16:49:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:49:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:48:59.078075721Z"} +2026/03/21 16:49:04 [detection_layer] {"stage_name":"detection_layer","events_processed":660,"events_dropped":0,"avg_latency_ms":18.096092017413014,"throughput_eps":0,"last_update":"2026-03-21T16:48:59.210420305Z"} +2026/03/21 16:49:04 [transform_engine] {"stage_name":"transform_engine","events_processed":660,"events_dropped":0,"avg_latency_ms":268.2564086323583,"throughput_eps":0,"last_update":"2026-03-21T16:48:59.210497743Z"} +2026/03/21 16:49:04 [log_collector] {"stage_name":"log_collector","events_processed":31715,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6343,"last_update":"2026-03-21T16:49:04.068089143Z"} +2026/03/21 16:49:04 [metric_collector] {"stage_name":"metric_collector","events_processed":19809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3961.8,"last_update":"2026-03-21T16:48:59.068912908Z"} +2026/03/21 16:49:04 ───────────────────────────────────────────────── +2026/03/21 16:49:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:49:09 [log_collector] {"stage_name":"log_collector","events_processed":31715,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6343,"last_update":"2026-03-21T16:49:04.068089143Z"} +2026/03/21 16:49:09 [metric_collector] {"stage_name":"metric_collector","events_processed":19814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3962.8,"last_update":"2026-03-21T16:49:04.068642062Z"} +2026/03/21 16:49:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:49:04.077115764Z"} +2026/03/21 16:49:09 [detection_layer] {"stage_name":"detection_layer","events_processed":660,"events_dropped":0,"avg_latency_ms":18.096092017413014,"throughput_eps":0,"last_update":"2026-03-21T16:49:04.210330765Z"} +2026/03/21 16:49:09 [transform_engine] {"stage_name":"transform_engine","events_processed":660,"events_dropped":0,"avg_latency_ms":268.2564086323583,"throughput_eps":0,"last_update":"2026-03-21T16:49:04.210310827Z"} +2026/03/21 16:49:09 ───────────────────────────────────────────────── +2026/03/21 16:49:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:49:14 [log_collector] {"stage_name":"log_collector","events_processed":31715,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6343,"last_update":"2026-03-21T16:49:09.06872493Z"} +2026/03/21 16:49:14 [metric_collector] {"stage_name":"metric_collector","events_processed":19819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3963.8,"last_update":"2026-03-21T16:49:09.069082124Z"} +2026/03/21 16:49:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7930,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:49:09.079254209Z"} +2026/03/21 16:49:14 [detection_layer] {"stage_name":"detection_layer","events_processed":660,"events_dropped":0,"avg_latency_ms":18.096092017413014,"throughput_eps":0,"last_update":"2026-03-21T16:49:09.210673151Z"} +2026/03/21 16:49:14 [transform_engine] {"stage_name":"transform_engine","events_processed":660,"events_dropped":0,"avg_latency_ms":268.2564086323583,"throughput_eps":0,"last_update":"2026-03-21T16:49:09.210705072Z"} +2026/03/21 16:49:14 ───────────────────────────────────────────────── +2026/03/21 16:49:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:49:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:49:14.07774112Z"} +2026/03/21 16:49:19 [detection_layer] {"stage_name":"detection_layer","events_processed":660,"events_dropped":0,"avg_latency_ms":18.096092017413014,"throughput_eps":0,"last_update":"2026-03-21T16:49:14.210406559Z"} +2026/03/21 16:49:19 [transform_engine] {"stage_name":"transform_engine","events_processed":660,"events_dropped":0,"avg_latency_ms":268.2564086323583,"throughput_eps":0,"last_update":"2026-03-21T16:49:14.210219941Z"} +2026/03/21 16:49:19 [log_collector] {"stage_name":"log_collector","events_processed":31715,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6343,"last_update":"2026-03-21T16:49:14.068273553Z"} +2026/03/21 16:49:19 [metric_collector] {"stage_name":"metric_collector","events_processed":19824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3964.8,"last_update":"2026-03-21T16:49:14.069002921Z"} +2026/03/21 16:49:19 ───────────────────────────────────────────────── +2026/03/21 16:49:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:49:24 [metric_collector] {"stage_name":"metric_collector","events_processed":19829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3965.8,"last_update":"2026-03-21T16:49:19.06929539Z"} +2026/03/21 16:49:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:49:19.078484042Z"} +2026/03/21 16:49:24 [detection_layer] {"stage_name":"detection_layer","events_processed":660,"events_dropped":0,"avg_latency_ms":18.096092017413014,"throughput_eps":0,"last_update":"2026-03-21T16:49:19.210795212Z"} +2026/03/21 16:49:24 [transform_engine] {"stage_name":"transform_engine","events_processed":660,"events_dropped":0,"avg_latency_ms":268.2564086323583,"throughput_eps":0,"last_update":"2026-03-21T16:49:14.210219941Z"} +2026/03/21 16:49:24 [log_collector] {"stage_name":"log_collector","events_processed":31715,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6343,"last_update":"2026-03-21T16:49:19.068767158Z"} +2026/03/21 16:49:24 ───────────────────────────────────────────────── +2026/03/21 16:49:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:49:29 [log_collector] {"stage_name":"log_collector","events_processed":31715,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6343,"last_update":"2026-03-21T16:49:24.068079026Z"} +2026/03/21 16:49:29 [metric_collector] {"stage_name":"metric_collector","events_processed":19834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3966.8,"last_update":"2026-03-21T16:49:24.068446981Z"} +2026/03/21 16:49:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:49:25.312474704Z"} +2026/03/21 16:49:29 [detection_layer] {"stage_name":"detection_layer","events_processed":660,"events_dropped":0,"avg_latency_ms":18.096092017413014,"throughput_eps":0,"last_update":"2026-03-21T16:49:24.210751104Z"} +2026/03/21 16:49:29 [transform_engine] {"stage_name":"transform_engine","events_processed":660,"events_dropped":0,"avg_latency_ms":268.2564086323583,"throughput_eps":0,"last_update":"2026-03-21T16:49:14.210219941Z"} +2026/03/21 16:49:29 ───────────────────────────────────────────────── +2026/03/21 16:49:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:49:34 [log_collector] {"stage_name":"log_collector","events_processed":31715,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6343,"last_update":"2026-03-21T16:49:29.068995467Z"} +2026/03/21 16:49:34 [metric_collector] {"stage_name":"metric_collector","events_processed":19839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3967.8,"last_update":"2026-03-21T16:49:29.069252379Z"} +2026/03/21 16:49:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:49:29.076735755Z"} +2026/03/21 16:49:34 [detection_layer] {"stage_name":"detection_layer","events_processed":660,"events_dropped":0,"avg_latency_ms":18.096092017413014,"throughput_eps":0,"last_update":"2026-03-21T16:49:29.20996357Z"} +2026/03/21 16:49:34 [transform_engine] {"stage_name":"transform_engine","events_processed":660,"events_dropped":0,"avg_latency_ms":268.2564086323583,"throughput_eps":0,"last_update":"2026-03-21T16:49:14.210219941Z"} +2026/03/21 16:49:34 ───────────────────────────────────────────────── +2026/03/21 16:49:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:49:39 [log_collector] {"stage_name":"log_collector","events_processed":31715,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6343,"last_update":"2026-03-21T16:49:34.068731016Z"} +2026/03/21 16:49:39 [metric_collector] {"stage_name":"metric_collector","events_processed":19844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3968.8,"last_update":"2026-03-21T16:49:34.068976115Z"} +2026/03/21 16:49:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7940,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:49:34.077144172Z"} +2026/03/21 16:49:39 [detection_layer] {"stage_name":"detection_layer","events_processed":660,"events_dropped":0,"avg_latency_ms":18.096092017413014,"throughput_eps":0,"last_update":"2026-03-21T16:49:34.210417585Z"} +2026/03/21 16:49:39 [transform_engine] {"stage_name":"transform_engine","events_processed":660,"events_dropped":0,"avg_latency_ms":268.2564086323583,"throughput_eps":0,"last_update":"2026-03-21T16:49:14.210219941Z"} +2026/03/21 16:49:39 ───────────────────────────────────────────────── +2026/03/21 16:49:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:49:44 [detection_layer] {"stage_name":"detection_layer","events_processed":660,"events_dropped":0,"avg_latency_ms":18.096092017413014,"throughput_eps":0,"last_update":"2026-03-21T16:49:39.210715468Z"} +2026/03/21 16:49:44 [transform_engine] {"stage_name":"transform_engine","events_processed":660,"events_dropped":0,"avg_latency_ms":268.2564086323583,"throughput_eps":0,"last_update":"2026-03-21T16:49:14.210219941Z"} +2026/03/21 16:49:44 [log_collector] {"stage_name":"log_collector","events_processed":31715,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6343,"last_update":"2026-03-21T16:49:39.068611859Z"} +2026/03/21 16:49:44 [metric_collector] {"stage_name":"metric_collector","events_processed":19849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3969.8,"last_update":"2026-03-21T16:49:39.068985505Z"} +2026/03/21 16:49:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:49:39.075454688Z"} +2026/03/21 16:49:44 ───────────────────────────────────────────────── +2026/03/21 16:49:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:49:49 [log_collector] {"stage_name":"log_collector","events_processed":31715,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6343,"last_update":"2026-03-21T16:49:44.069026775Z"} +2026/03/21 16:49:49 [metric_collector] {"stage_name":"metric_collector","events_processed":19854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3970.8,"last_update":"2026-03-21T16:49:44.069222159Z"} +2026/03/21 16:49:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:49:44.078069948Z"} +2026/03/21 16:49:49 [detection_layer] {"stage_name":"detection_layer","events_processed":660,"events_dropped":0,"avg_latency_ms":18.096092017413014,"throughput_eps":0,"last_update":"2026-03-21T16:49:44.210265747Z"} +2026/03/21 16:49:49 [transform_engine] {"stage_name":"transform_engine","events_processed":660,"events_dropped":0,"avg_latency_ms":268.2564086323583,"throughput_eps":0,"last_update":"2026-03-21T16:49:14.210219941Z"} +2026/03/21 16:49:49 ───────────────────────────────────────────────── +Saved state: 18 clusters, 31716 messages, reason: none +2026/03/21 16:49:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:49:54 [metric_collector] {"stage_name":"metric_collector","events_processed":19859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3971.8,"last_update":"2026-03-21T16:49:49.069178598Z"} +2026/03/21 16:49:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:49:49.077638553Z"} +2026/03/21 16:49:54 [detection_layer] {"stage_name":"detection_layer","events_processed":660,"events_dropped":0,"avg_latency_ms":18.096092017413014,"throughput_eps":0,"last_update":"2026-03-21T16:49:49.210923008Z"} +2026/03/21 16:49:54 [transform_engine] {"stage_name":"transform_engine","events_processed":661,"events_dropped":0,"avg_latency_ms":6346.606491905886,"throughput_eps":0,"last_update":"2026-03-21T16:49:49.869694165Z"} +2026/03/21 16:49:54 [log_collector] {"stage_name":"log_collector","events_processed":31715,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6343,"last_update":"2026-03-21T16:49:49.068646188Z"} +2026/03/21 16:49:54 ───────────────────────────────────────────────── +2026/03/21 16:49:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:49:59 [detection_layer] {"stage_name":"detection_layer","events_processed":661,"events_dropped":0,"avg_latency_ms":18.05336261393041,"throughput_eps":0,"last_update":"2026-03-21T16:49:54.210436306Z"} +2026/03/21 16:49:59 [transform_engine] {"stage_name":"transform_engine","events_processed":662,"events_dropped":0,"avg_latency_ms":5105.081819724709,"throughput_eps":0,"last_update":"2026-03-21T16:49:54.210489007Z"} +2026/03/21 16:49:59 [log_collector] {"stage_name":"log_collector","events_processed":31720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6344,"last_update":"2026-03-21T16:49:54.06856872Z"} +2026/03/21 16:49:59 [metric_collector] {"stage_name":"metric_collector","events_processed":19864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3972.8,"last_update":"2026-03-21T16:49:54.068862022Z"} +2026/03/21 16:49:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:49:54.076157887Z"} +2026/03/21 16:49:59 ───────────────────────────────────────────────── +2026/03/21 16:50:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:50:04 [transform_engine] {"stage_name":"transform_engine","events_processed":662,"events_dropped":0,"avg_latency_ms":5105.081819724709,"throughput_eps":0,"last_update":"2026-03-21T16:49:59.211107971Z"} +2026/03/21 16:50:04 [log_collector] {"stage_name":"log_collector","events_processed":31720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6344,"last_update":"2026-03-21T16:49:59.068394626Z"} +2026/03/21 16:50:04 [metric_collector] {"stage_name":"metric_collector","events_processed":19869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3973.8,"last_update":"2026-03-21T16:49:59.068664974Z"} +2026/03/21 16:50:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:49:59.079071518Z"} +2026/03/21 16:50:04 [detection_layer] {"stage_name":"detection_layer","events_processed":661,"events_dropped":0,"avg_latency_ms":18.05336261393041,"throughput_eps":0,"last_update":"2026-03-21T16:49:59.210277902Z"} +2026/03/21 16:50:04 ───────────────────────────────────────────────── +2026/03/21 16:50:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:50:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:50:04.086407348Z"} +2026/03/21 16:50:09 [detection_layer] {"stage_name":"detection_layer","events_processed":661,"events_dropped":0,"avg_latency_ms":18.05336261393041,"throughput_eps":0,"last_update":"2026-03-21T16:50:04.210603674Z"} +2026/03/21 16:50:09 [transform_engine] {"stage_name":"transform_engine","events_processed":662,"events_dropped":0,"avg_latency_ms":5105.081819724709,"throughput_eps":0,"last_update":"2026-03-21T16:50:04.210636366Z"} +2026/03/21 16:50:09 [log_collector] {"stage_name":"log_collector","events_processed":31720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6344,"last_update":"2026-03-21T16:50:04.068821381Z"} +2026/03/21 16:50:09 [metric_collector] {"stage_name":"metric_collector","events_processed":19874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3974.8,"last_update":"2026-03-21T16:50:04.069109794Z"} +2026/03/21 16:50:09 ───────────────────────────────────────────────── +2026/03/21 16:50:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:50:14 [metric_collector] {"stage_name":"metric_collector","events_processed":19879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3975.8,"last_update":"2026-03-21T16:50:09.068893637Z"} +2026/03/21 16:50:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:50:09.082541601Z"} +2026/03/21 16:50:14 [detection_layer] {"stage_name":"detection_layer","events_processed":661,"events_dropped":0,"avg_latency_ms":18.05336261393041,"throughput_eps":0,"last_update":"2026-03-21T16:50:09.210021376Z"} +2026/03/21 16:50:14 [transform_engine] {"stage_name":"transform_engine","events_processed":662,"events_dropped":0,"avg_latency_ms":5105.081819724709,"throughput_eps":0,"last_update":"2026-03-21T16:50:09.209689561Z"} +2026/03/21 16:50:14 [log_collector] {"stage_name":"log_collector","events_processed":31720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6344,"last_update":"2026-03-21T16:50:09.068653877Z"} +2026/03/21 16:50:14 ───────────────────────────────────────────────── +2026/03/21 16:50:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:50:19 [detection_layer] {"stage_name":"detection_layer","events_processed":661,"events_dropped":0,"avg_latency_ms":18.05336261393041,"throughput_eps":0,"last_update":"2026-03-21T16:50:14.210205356Z"} +2026/03/21 16:50:19 [transform_engine] {"stage_name":"transform_engine","events_processed":662,"events_dropped":0,"avg_latency_ms":5105.081819724709,"throughput_eps":0,"last_update":"2026-03-21T16:50:14.210237458Z"} +2026/03/21 16:50:19 [log_collector] {"stage_name":"log_collector","events_processed":31720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6344,"last_update":"2026-03-21T16:50:14.06839537Z"} +2026/03/21 16:50:19 [metric_collector] {"stage_name":"metric_collector","events_processed":19884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3976.8,"last_update":"2026-03-21T16:50:14.068597758Z"} +2026/03/21 16:50:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:50:14.083932773Z"} +2026/03/21 16:50:19 ───────────────────────────────────────────────── +2026/03/21 16:50:21 [ANOMALY] time=2026-03-21T16:50:21Z score=0.9145 method=SEAD details=MAD!:w=0.30,s=0.86 RRCF-fast!:w=0.18,s=0.94 RRCF-mid!:w=0.14,s=0.93 RRCF-slow!:w=0.14,s=0.89 COPOD!:w=0.24,s=0.97 +2026/03/21 16:50:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:50:24 [log_collector] {"stage_name":"log_collector","events_processed":31720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6344,"last_update":"2026-03-21T16:50:19.068075583Z"} +2026/03/21 16:50:24 [metric_collector] {"stage_name":"metric_collector","events_processed":19889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3977.8,"last_update":"2026-03-21T16:50:19.068326835Z"} +2026/03/21 16:50:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7958,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:50:19.075396678Z"} +2026/03/21 16:50:24 [detection_layer] {"stage_name":"detection_layer","events_processed":661,"events_dropped":0,"avg_latency_ms":18.05336261393041,"throughput_eps":0,"last_update":"2026-03-21T16:50:19.210647608Z"} +2026/03/21 16:50:24 [transform_engine] {"stage_name":"transform_engine","events_processed":662,"events_dropped":0,"avg_latency_ms":5105.081819724709,"throughput_eps":0,"last_update":"2026-03-21T16:50:19.210681504Z"} +2026/03/21 16:50:24 ───────────────────────────────────────────────── +2026/03/21 16:50:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:50:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:50:24.077221515Z"} +2026/03/21 16:50:29 [detection_layer] {"stage_name":"detection_layer","events_processed":662,"events_dropped":0,"avg_latency_ms":17.67746249114433,"throughput_eps":0,"last_update":"2026-03-21T16:50:24.210461124Z"} +2026/03/21 16:50:29 [transform_engine] {"stage_name":"transform_engine","events_processed":663,"events_dropped":0,"avg_latency_ms":4530.432037779768,"throughput_eps":0,"last_update":"2026-03-21T16:50:24.210481022Z"} +2026/03/21 16:50:29 [log_collector] {"stage_name":"log_collector","events_processed":31720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6344,"last_update":"2026-03-21T16:50:24.068584932Z"} +2026/03/21 16:50:29 [metric_collector] {"stage_name":"metric_collector","events_processed":19899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3979.8,"last_update":"2026-03-21T16:50:29.068737748Z"} +2026/03/21 16:50:29 ───────────────────────────────────────────────── +2026/03/21 16:50:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:50:34 [detection_layer] {"stage_name":"detection_layer","events_processed":662,"events_dropped":0,"avg_latency_ms":17.67746249114433,"throughput_eps":0,"last_update":"2026-03-21T16:50:29.210851274Z"} +2026/03/21 16:50:34 [transform_engine] {"stage_name":"transform_engine","events_processed":663,"events_dropped":0,"avg_latency_ms":4530.432037779768,"throughput_eps":0,"last_update":"2026-03-21T16:50:29.20974219Z"} +2026/03/21 16:50:34 [log_collector] {"stage_name":"log_collector","events_processed":31720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6344,"last_update":"2026-03-21T16:50:29.068750953Z"} +2026/03/21 16:50:34 [metric_collector] {"stage_name":"metric_collector","events_processed":19899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3979.8,"last_update":"2026-03-21T16:50:29.068737748Z"} +2026/03/21 16:50:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7962,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:50:29.076561695Z"} +2026/03/21 16:50:34 ───────────────────────────────────────────────── +2026/03/21 16:50:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:50:39 [log_collector] {"stage_name":"log_collector","events_processed":31729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6345.8,"last_update":"2026-03-21T16:50:34.068660869Z"} +2026/03/21 16:50:39 [metric_collector] {"stage_name":"metric_collector","events_processed":19904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3980.8,"last_update":"2026-03-21T16:50:34.068833971Z"} +2026/03/21 16:50:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:50:34.075565116Z"} +2026/03/21 16:50:39 [detection_layer] {"stage_name":"detection_layer","events_processed":662,"events_dropped":0,"avg_latency_ms":17.67746249114433,"throughput_eps":0,"last_update":"2026-03-21T16:50:34.210825295Z"} +2026/03/21 16:50:39 [transform_engine] {"stage_name":"transform_engine","events_processed":663,"events_dropped":0,"avg_latency_ms":4530.432037779768,"throughput_eps":0,"last_update":"2026-03-21T16:50:34.20974786Z"} +2026/03/21 16:50:39 ───────────────────────────────────────────────── +2026/03/21 16:50:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:50:44 [detection_layer] {"stage_name":"detection_layer","events_processed":662,"events_dropped":0,"avg_latency_ms":17.67746249114433,"throughput_eps":0,"last_update":"2026-03-21T16:50:39.210290601Z"} +2026/03/21 16:50:44 [transform_engine] {"stage_name":"transform_engine","events_processed":663,"events_dropped":0,"avg_latency_ms":4530.432037779768,"throughput_eps":0,"last_update":"2026-03-21T16:50:39.210191762Z"} +2026/03/21 16:50:44 [log_collector] {"stage_name":"log_collector","events_processed":31845,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6369,"last_update":"2026-03-21T16:50:44.068186882Z"} +2026/03/21 16:50:44 [metric_collector] {"stage_name":"metric_collector","events_processed":19914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3982.8,"last_update":"2026-03-21T16:50:44.068508087Z"} +2026/03/21 16:50:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:50:39.078888994Z"} +2026/03/21 16:50:44 ───────────────────────────────────────────────── +2026/03/21 16:50:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:50:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:50:44.075613688Z"} +2026/03/21 16:50:49 [detection_layer] {"stage_name":"detection_layer","events_processed":662,"events_dropped":0,"avg_latency_ms":17.67746249114433,"throughput_eps":0,"last_update":"2026-03-21T16:50:44.210399399Z"} +2026/03/21 16:50:49 [transform_engine] {"stage_name":"transform_engine","events_processed":663,"events_dropped":0,"avg_latency_ms":4530.432037779768,"throughput_eps":0,"last_update":"2026-03-21T16:50:44.210411662Z"} +2026/03/21 16:50:49 [log_collector] {"stage_name":"log_collector","events_processed":31845,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6369,"last_update":"2026-03-21T16:50:44.068186882Z"} +2026/03/21 16:50:49 [metric_collector] {"stage_name":"metric_collector","events_processed":19914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3982.8,"last_update":"2026-03-21T16:50:44.068508087Z"} +2026/03/21 16:50:49 ───────────────────────────────────────────────── +Saved state: 18 clusters, 31961 messages, reason: none +2026/03/21 16:50:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:50:54 [log_collector] {"stage_name":"log_collector","events_processed":31960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6392,"last_update":"2026-03-21T16:50:49.068815995Z"} +2026/03/21 16:50:54 [metric_collector] {"stage_name":"metric_collector","events_processed":19919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3983.8,"last_update":"2026-03-21T16:50:49.068945533Z"} +2026/03/21 16:50:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7970,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:50:49.077104953Z"} +2026/03/21 16:50:54 [detection_layer] {"stage_name":"detection_layer","events_processed":662,"events_dropped":0,"avg_latency_ms":17.67746249114433,"throughput_eps":0,"last_update":"2026-03-21T16:50:49.210365302Z"} +2026/03/21 16:50:54 [transform_engine] {"stage_name":"transform_engine","events_processed":663,"events_dropped":0,"avg_latency_ms":4530.432037779768,"throughput_eps":0,"last_update":"2026-03-21T16:50:44.210411662Z"} +2026/03/21 16:50:54 ───────────────────────────────────────────────── +2026/03/21 16:50:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:50:59 [log_collector] {"stage_name":"log_collector","events_processed":31962,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6392.4,"last_update":"2026-03-21T16:50:54.068860249Z"} +2026/03/21 16:50:59 [metric_collector] {"stage_name":"metric_collector","events_processed":19924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3984.8,"last_update":"2026-03-21T16:50:54.06974809Z"} +2026/03/21 16:50:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:50:54.077040799Z"} +2026/03/21 16:50:59 [detection_layer] {"stage_name":"detection_layer","events_processed":662,"events_dropped":0,"avg_latency_ms":17.67746249114433,"throughput_eps":0,"last_update":"2026-03-21T16:50:54.210303021Z"} +2026/03/21 16:50:59 [transform_engine] {"stage_name":"transform_engine","events_processed":663,"events_dropped":0,"avg_latency_ms":4530.432037779768,"throughput_eps":0,"last_update":"2026-03-21T16:50:44.210411662Z"} +2026/03/21 16:50:59 ───────────────────────────────────────────────── +2026/03/21 16:51:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:51:04 [log_collector] {"stage_name":"log_collector","events_processed":31962,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6392.4,"last_update":"2026-03-21T16:50:59.068253564Z"} +2026/03/21 16:51:04 [metric_collector] {"stage_name":"metric_collector","events_processed":19929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3985.8,"last_update":"2026-03-21T16:50:59.068621449Z"} +2026/03/21 16:51:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:50:59.07783118Z"} +2026/03/21 16:51:04 [detection_layer] {"stage_name":"detection_layer","events_processed":662,"events_dropped":0,"avg_latency_ms":17.67746249114433,"throughput_eps":0,"last_update":"2026-03-21T16:50:59.210006089Z"} +2026/03/21 16:51:04 [transform_engine] {"stage_name":"transform_engine","events_processed":663,"events_dropped":0,"avg_latency_ms":4530.432037779768,"throughput_eps":0,"last_update":"2026-03-21T16:50:44.210411662Z"} +2026/03/21 16:51:04 ───────────────────────────────────────────────── +2026/03/21 16:51:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:51:09 [log_collector] {"stage_name":"log_collector","events_processed":31962,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6392.4,"last_update":"2026-03-21T16:51:04.068716978Z"} +2026/03/21 16:51:09 [metric_collector] {"stage_name":"metric_collector","events_processed":19934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3986.8,"last_update":"2026-03-21T16:51:04.068986905Z"} +2026/03/21 16:51:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:51:04.075734781Z"} +2026/03/21 16:51:09 [detection_layer] {"stage_name":"detection_layer","events_processed":662,"events_dropped":0,"avg_latency_ms":17.67746249114433,"throughput_eps":0,"last_update":"2026-03-21T16:51:04.209909621Z"} +2026/03/21 16:51:09 [transform_engine] {"stage_name":"transform_engine","events_processed":663,"events_dropped":0,"avg_latency_ms":4530.432037779768,"throughput_eps":0,"last_update":"2026-03-21T16:50:44.210411662Z"} +2026/03/21 16:51:09 ───────────────────────────────────────────────── +2026/03/21 16:51:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:51:14 [transform_engine] {"stage_name":"transform_engine","events_processed":663,"events_dropped":0,"avg_latency_ms":4530.432037779768,"throughput_eps":0,"last_update":"2026-03-21T16:50:44.210411662Z"} +2026/03/21 16:51:14 [log_collector] {"stage_name":"log_collector","events_processed":31962,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6392.4,"last_update":"2026-03-21T16:51:09.068537167Z"} +2026/03/21 16:51:14 [metric_collector] {"stage_name":"metric_collector","events_processed":19939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3987.8,"last_update":"2026-03-21T16:51:09.068875725Z"} +2026/03/21 16:51:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:51:09.075580348Z"} +2026/03/21 16:51:14 [detection_layer] {"stage_name":"detection_layer","events_processed":662,"events_dropped":0,"avg_latency_ms":17.67746249114433,"throughput_eps":0,"last_update":"2026-03-21T16:51:09.210823053Z"} +2026/03/21 16:51:14 ───────────────────────────────────────────────── +2026/03/21 16:51:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:51:19 [transform_engine] {"stage_name":"transform_engine","events_processed":663,"events_dropped":0,"avg_latency_ms":4530.432037779768,"throughput_eps":0,"last_update":"2026-03-21T16:50:44.210411662Z"} +2026/03/21 16:51:19 [log_collector] {"stage_name":"log_collector","events_processed":31962,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6392.4,"last_update":"2026-03-21T16:51:14.068414374Z"} +2026/03/21 16:51:19 [metric_collector] {"stage_name":"metric_collector","events_processed":19944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3988.8,"last_update":"2026-03-21T16:51:14.068936163Z"} +2026/03/21 16:51:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:51:14.075238586Z"} +2026/03/21 16:51:19 [detection_layer] {"stage_name":"detection_layer","events_processed":662,"events_dropped":0,"avg_latency_ms":17.67746249114433,"throughput_eps":0,"last_update":"2026-03-21T16:51:14.210504405Z"} +2026/03/21 16:51:19 ───────────────────────────────────────────────── +2026/03/21 16:51:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:51:24 [log_collector] {"stage_name":"log_collector","events_processed":31962,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6392.4,"last_update":"2026-03-21T16:51:19.068178575Z"} +2026/03/21 16:51:24 [metric_collector] {"stage_name":"metric_collector","events_processed":19949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3989.8,"last_update":"2026-03-21T16:51:19.068664957Z"} +2026/03/21 16:51:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:51:19.076831961Z"} +2026/03/21 16:51:24 [detection_layer] {"stage_name":"detection_layer","events_processed":662,"events_dropped":0,"avg_latency_ms":17.67746249114433,"throughput_eps":0,"last_update":"2026-03-21T16:51:19.209937031Z"} +2026/03/21 16:51:24 [transform_engine] {"stage_name":"transform_engine","events_processed":663,"events_dropped":0,"avg_latency_ms":4530.432037779768,"throughput_eps":0,"last_update":"2026-03-21T16:50:44.210411662Z"} +2026/03/21 16:51:24 ───────────────────────────────────────────────── +2026/03/21 16:51:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:51:29 [log_collector] {"stage_name":"log_collector","events_processed":31962,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6392.4,"last_update":"2026-03-21T16:51:24.068786882Z"} +2026/03/21 16:51:29 [metric_collector] {"stage_name":"metric_collector","events_processed":19954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3990.8,"last_update":"2026-03-21T16:51:24.069129889Z"} +2026/03/21 16:51:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:51:24.079509372Z"} +2026/03/21 16:51:29 [detection_layer] {"stage_name":"detection_layer","events_processed":662,"events_dropped":0,"avg_latency_ms":17.67746249114433,"throughput_eps":0,"last_update":"2026-03-21T16:51:24.210762344Z"} +2026/03/21 16:51:29 [transform_engine] {"stage_name":"transform_engine","events_processed":663,"events_dropped":0,"avg_latency_ms":4530.432037779768,"throughput_eps":0,"last_update":"2026-03-21T16:50:44.210411662Z"} +2026/03/21 16:51:29 ───────────────────────────────────────────────── +2026/03/21 16:51:33 [ANOMALY] time=2026-03-21T16:51:33Z score=0.8323 method=SEAD details=MAD!:w=0.30,s=0.75 RRCF-fast:w=0.18,s=0.83 RRCF-mid:w=0.14,s=0.76 RRCF-slow!:w=0.14,s=0.82 COPOD!:w=0.24,s=0.99 +2026/03/21 16:51:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:51:34 [log_collector] {"stage_name":"log_collector","events_processed":31962,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6392.4,"last_update":"2026-03-21T16:51:29.068804869Z"} +2026/03/21 16:51:34 [metric_collector] {"stage_name":"metric_collector","events_processed":19959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3991.8,"last_update":"2026-03-21T16:51:29.069108712Z"} +2026/03/21 16:51:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:51:29.078116156Z"} +2026/03/21 16:51:34 [detection_layer] {"stage_name":"detection_layer","events_processed":662,"events_dropped":0,"avg_latency_ms":17.67746249114433,"throughput_eps":0,"last_update":"2026-03-21T16:51:29.210426965Z"} +2026/03/21 16:51:34 [transform_engine] {"stage_name":"transform_engine","events_processed":664,"events_dropped":0,"avg_latency_ms":12563.650558423815,"throughput_eps":0,"last_update":"2026-03-21T16:51:33.90693518Z"} +2026/03/21 16:51:34 ───────────────────────────────────────────────── +2026/03/21 16:51:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:51:39 [metric_collector] {"stage_name":"metric_collector","events_processed":19964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3992.8,"last_update":"2026-03-21T16:51:34.068736981Z"} +2026/03/21 16:51:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:51:34.077811524Z"} +2026/03/21 16:51:39 [detection_layer] {"stage_name":"detection_layer","events_processed":663,"events_dropped":0,"avg_latency_ms":18.45780119291546,"throughput_eps":0,"last_update":"2026-03-21T16:51:34.210321574Z"} +2026/03/21 16:51:39 [transform_engine] {"stage_name":"transform_engine","events_processed":665,"events_dropped":0,"avg_latency_ms":10075.610908739052,"throughput_eps":0,"last_update":"2026-03-21T16:51:34.210289011Z"} +2026/03/21 16:51:39 [log_collector] {"stage_name":"log_collector","events_processed":32076,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6415.2,"last_update":"2026-03-21T16:51:39.068132462Z"} +2026/03/21 16:51:39 ───────────────────────────────────────────────── +2026/03/21 16:51:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:51:44 [log_collector] {"stage_name":"log_collector","events_processed":32076,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6415.2,"last_update":"2026-03-21T16:51:39.068132462Z"} +2026/03/21 16:51:44 [metric_collector] {"stage_name":"metric_collector","events_processed":19969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3993.8,"last_update":"2026-03-21T16:51:39.06855419Z"} +2026/03/21 16:51:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7990,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:51:39.076823589Z"} +2026/03/21 16:51:44 [detection_layer] {"stage_name":"detection_layer","events_processed":663,"events_dropped":0,"avg_latency_ms":18.45780119291546,"throughput_eps":0,"last_update":"2026-03-21T16:51:39.210095299Z"} +2026/03/21 16:51:44 [transform_engine] {"stage_name":"transform_engine","events_processed":665,"events_dropped":0,"avg_latency_ms":10075.610908739052,"throughput_eps":0,"last_update":"2026-03-21T16:51:39.21004863Z"} +2026/03/21 16:51:44 ───────────────────────────────────────────────── +2026/03/21 16:51:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:51:49 [detection_layer] {"stage_name":"detection_layer","events_processed":663,"events_dropped":0,"avg_latency_ms":18.45780119291546,"throughput_eps":0,"last_update":"2026-03-21T16:51:44.210034342Z"} +2026/03/21 16:51:49 [transform_engine] {"stage_name":"transform_engine","events_processed":665,"events_dropped":0,"avg_latency_ms":10075.610908739052,"throughput_eps":0,"last_update":"2026-03-21T16:51:44.210014594Z"} +2026/03/21 16:51:49 [log_collector] {"stage_name":"log_collector","events_processed":32082,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6416.4,"last_update":"2026-03-21T16:51:44.068699498Z"} +2026/03/21 16:51:49 [metric_collector] {"stage_name":"metric_collector","events_processed":19974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3994.8,"last_update":"2026-03-21T16:51:44.068970957Z"} +2026/03/21 16:51:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7992,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:51:44.078759569Z"} +2026/03/21 16:51:49 ───────────────────────────────────────────────── +2026/03/21 16:51:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:51:54 [log_collector] {"stage_name":"log_collector","events_processed":32082,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6416.4,"last_update":"2026-03-21T16:51:49.068125487Z"} +2026/03/21 16:51:54 [metric_collector] {"stage_name":"metric_collector","events_processed":19979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3995.8,"last_update":"2026-03-21T16:51:49.068577462Z"} +2026/03/21 16:51:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:51:49.077977589Z"} +2026/03/21 16:51:54 [detection_layer] {"stage_name":"detection_layer","events_processed":663,"events_dropped":0,"avg_latency_ms":18.45780119291546,"throughput_eps":0,"last_update":"2026-03-21T16:51:49.210222382Z"} +2026/03/21 16:51:54 [transform_engine] {"stage_name":"transform_engine","events_processed":666,"events_dropped":0,"avg_latency_ms":8084.137112991242,"throughput_eps":0,"last_update":"2026-03-21T16:51:49.328510779Z"} +2026/03/21 16:51:54 ───────────────────────────────────────────────── +2026/03/21 16:51:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:51:59 [log_collector] {"stage_name":"log_collector","events_processed":32082,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6416.4,"last_update":"2026-03-21T16:51:54.068220095Z"} +2026/03/21 16:51:59 [metric_collector] {"stage_name":"metric_collector","events_processed":19984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3996.8,"last_update":"2026-03-21T16:51:54.068720724Z"} +2026/03/21 16:51:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7996,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:51:54.078009538Z"} +2026/03/21 16:51:59 [detection_layer] {"stage_name":"detection_layer","events_processed":664,"events_dropped":0,"avg_latency_ms":18.51486355433237,"throughput_eps":0,"last_update":"2026-03-21T16:51:54.21024383Z"} +2026/03/21 16:51:59 [transform_engine] {"stage_name":"transform_engine","events_processed":666,"events_dropped":0,"avg_latency_ms":8084.137112991242,"throughput_eps":0,"last_update":"2026-03-21T16:51:54.210325747Z"} +2026/03/21 16:51:59 ───────────────────────────────────────────────── +2026/03/21 16:52:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:52:04 [log_collector] {"stage_name":"log_collector","events_processed":32082,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6416.4,"last_update":"2026-03-21T16:51:59.068901006Z"} +2026/03/21 16:52:04 [metric_collector] {"stage_name":"metric_collector","events_processed":19989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3997.8,"last_update":"2026-03-21T16:51:59.069200389Z"} +2026/03/21 16:52:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:51:59.077864035Z"} +2026/03/21 16:52:04 [detection_layer] {"stage_name":"detection_layer","events_processed":664,"events_dropped":0,"avg_latency_ms":18.51486355433237,"throughput_eps":0,"last_update":"2026-03-21T16:51:59.210342075Z"} +2026/03/21 16:52:04 [transform_engine] {"stage_name":"transform_engine","events_processed":666,"events_dropped":0,"avg_latency_ms":8084.137112991242,"throughput_eps":0,"last_update":"2026-03-21T16:51:59.210301477Z"} +2026/03/21 16:52:04 ───────────────────────────────────────────────── +2026/03/21 16:52:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:52:09 [detection_layer] {"stage_name":"detection_layer","events_processed":664,"events_dropped":0,"avg_latency_ms":18.51486355433237,"throughput_eps":0,"last_update":"2026-03-21T16:52:04.210875923Z"} +2026/03/21 16:52:09 [transform_engine] {"stage_name":"transform_engine","events_processed":666,"events_dropped":0,"avg_latency_ms":8084.137112991242,"throughput_eps":0,"last_update":"2026-03-21T16:52:04.209714158Z"} +2026/03/21 16:52:09 [log_collector] {"stage_name":"log_collector","events_processed":32082,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6416.4,"last_update":"2026-03-21T16:52:04.069151362Z"} +2026/03/21 16:52:09 [metric_collector] {"stage_name":"metric_collector","events_processed":19994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3998.8,"last_update":"2026-03-21T16:52:04.06934334Z"} +2026/03/21 16:52:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:52:04.07851055Z"} +2026/03/21 16:52:09 ───────────────────────────────────────────────── +Saved state: 18 clusters, 32083 messages, reason: none +2026/03/21 16:52:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:52:14 [log_collector] {"stage_name":"log_collector","events_processed":32082,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6416.4,"last_update":"2026-03-21T16:52:09.068913089Z"} +2026/03/21 16:52:14 [metric_collector] {"stage_name":"metric_collector","events_processed":19998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3999.6,"last_update":"2026-03-21T16:52:09.068853125Z"} +2026/03/21 16:52:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:52:09.079721504Z"} +2026/03/21 16:52:14 [detection_layer] {"stage_name":"detection_layer","events_processed":664,"events_dropped":0,"avg_latency_ms":18.51486355433237,"throughput_eps":0,"last_update":"2026-03-21T16:52:09.210315684Z"} +2026/03/21 16:52:14 [transform_engine] {"stage_name":"transform_engine","events_processed":666,"events_dropped":0,"avg_latency_ms":8084.137112991242,"throughput_eps":0,"last_update":"2026-03-21T16:52:09.21028715Z"} +2026/03/21 16:52:14 ───────────────────────────────────────────────── +2026/03/21 16:52:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:52:19 [metric_collector] {"stage_name":"metric_collector","events_processed":20004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4000.8,"last_update":"2026-03-21T16:52:14.068696369Z"} +2026/03/21 16:52:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:52:14.075411452Z"} +2026/03/21 16:52:19 [detection_layer] {"stage_name":"detection_layer","events_processed":664,"events_dropped":0,"avg_latency_ms":18.51486355433237,"throughput_eps":0,"last_update":"2026-03-21T16:52:14.210657524Z"} +2026/03/21 16:52:19 [transform_engine] {"stage_name":"transform_engine","events_processed":666,"events_dropped":0,"avg_latency_ms":8084.137112991242,"throughput_eps":0,"last_update":"2026-03-21T16:52:14.210684966Z"} +2026/03/21 16:52:19 [log_collector] {"stage_name":"log_collector","events_processed":32085,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6417,"last_update":"2026-03-21T16:52:14.068270262Z"} +2026/03/21 16:52:19 ───────────────────────────────────────────────── +2026/03/21 16:52:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:52:24 [log_collector] {"stage_name":"log_collector","events_processed":32095,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6419,"last_update":"2026-03-21T16:52:19.068722171Z"} +2026/03/21 16:52:24 [metric_collector] {"stage_name":"metric_collector","events_processed":20009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4001.8,"last_update":"2026-03-21T16:52:19.068931812Z"} +2026/03/21 16:52:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8006,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:52:19.075339606Z"} +2026/03/21 16:52:24 [detection_layer] {"stage_name":"detection_layer","events_processed":664,"events_dropped":0,"avg_latency_ms":18.51486355433237,"throughput_eps":0,"last_update":"2026-03-21T16:52:19.210606759Z"} +2026/03/21 16:52:24 [transform_engine] {"stage_name":"transform_engine","events_processed":667,"events_dropped":0,"avg_latency_ms":6488.727605592994,"throughput_eps":0,"last_update":"2026-03-21T16:52:19.317731552Z"} +2026/03/21 16:52:24 ───────────────────────────────────────────────── +2026/03/21 16:52:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:52:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8008,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:52:24.080181626Z"} +2026/03/21 16:52:29 [detection_layer] {"stage_name":"detection_layer","events_processed":665,"events_dropped":0,"avg_latency_ms":17.415061243465896,"throughput_eps":0,"last_update":"2026-03-21T16:52:24.210519205Z"} +2026/03/21 16:52:29 [transform_engine] {"stage_name":"transform_engine","events_processed":667,"events_dropped":0,"avg_latency_ms":6488.727605592994,"throughput_eps":0,"last_update":"2026-03-21T16:52:24.210586444Z"} +2026/03/21 16:52:29 [log_collector] {"stage_name":"log_collector","events_processed":32096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6419.2,"last_update":"2026-03-21T16:52:24.068670095Z"} +2026/03/21 16:52:29 [metric_collector] {"stage_name":"metric_collector","events_processed":20014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4002.8,"last_update":"2026-03-21T16:52:24.068988665Z"} +2026/03/21 16:52:29 ───────────────────────────────────────────────── +2026/03/21 16:52:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:52:34 [log_collector] {"stage_name":"log_collector","events_processed":32096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6419.2,"last_update":"2026-03-21T16:52:29.068670476Z"} +2026/03/21 16:52:34 [metric_collector] {"stage_name":"metric_collector","events_processed":20019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4003.8,"last_update":"2026-03-21T16:52:29.069513731Z"} +2026/03/21 16:52:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:52:29.076759311Z"} +2026/03/21 16:52:34 [detection_layer] {"stage_name":"detection_layer","events_processed":665,"events_dropped":0,"avg_latency_ms":17.415061243465896,"throughput_eps":0,"last_update":"2026-03-21T16:52:29.209990703Z"} +2026/03/21 16:52:34 [transform_engine] {"stage_name":"transform_engine","events_processed":667,"events_dropped":0,"avg_latency_ms":6488.727605592994,"throughput_eps":0,"last_update":"2026-03-21T16:52:29.210030218Z"} +2026/03/21 16:52:34 ───────────────────────────────────────────────── +2026/03/21 16:52:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:52:39 [log_collector] {"stage_name":"log_collector","events_processed":32096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6419.2,"last_update":"2026-03-21T16:52:34.068914694Z"} +2026/03/21 16:52:39 [metric_collector] {"stage_name":"metric_collector","events_processed":20024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4004.8,"last_update":"2026-03-21T16:52:34.069412438Z"} +2026/03/21 16:52:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8012,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:52:34.076916732Z"} +2026/03/21 16:52:39 [detection_layer] {"stage_name":"detection_layer","events_processed":665,"events_dropped":0,"avg_latency_ms":17.415061243465896,"throughput_eps":0,"last_update":"2026-03-21T16:52:34.210327398Z"} +2026/03/21 16:52:39 [transform_engine] {"stage_name":"transform_engine","events_processed":667,"events_dropped":0,"avg_latency_ms":6488.727605592994,"throughput_eps":0,"last_update":"2026-03-21T16:52:34.210288865Z"} +2026/03/21 16:52:39 ───────────────────────────────────────────────── +2026/03/21 16:52:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:52:44 [detection_layer] {"stage_name":"detection_layer","events_processed":665,"events_dropped":0,"avg_latency_ms":17.415061243465896,"throughput_eps":0,"last_update":"2026-03-21T16:52:39.210332468Z"} +2026/03/21 16:52:44 [transform_engine] {"stage_name":"transform_engine","events_processed":667,"events_dropped":0,"avg_latency_ms":6488.727605592994,"throughput_eps":0,"last_update":"2026-03-21T16:52:39.210304554Z"} +2026/03/21 16:52:44 [log_collector] {"stage_name":"log_collector","events_processed":32096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6419.2,"last_update":"2026-03-21T16:52:39.068787992Z"} +2026/03/21 16:52:44 [metric_collector] {"stage_name":"metric_collector","events_processed":20029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4005.8,"last_update":"2026-03-21T16:52:39.069243264Z"} +2026/03/21 16:52:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:52:39.078067607Z"} +2026/03/21 16:52:44 ───────────────────────────────────────────────── +2026/03/21 16:52:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:52:49 [log_collector] {"stage_name":"log_collector","events_processed":32096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6419.2,"last_update":"2026-03-21T16:52:44.068063635Z"} +2026/03/21 16:52:49 [metric_collector] {"stage_name":"metric_collector","events_processed":20034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4006.8,"last_update":"2026-03-21T16:52:44.068556137Z"} +2026/03/21 16:52:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:52:44.077594892Z"} +2026/03/21 16:52:49 [detection_layer] {"stage_name":"detection_layer","events_processed":665,"events_dropped":0,"avg_latency_ms":17.415061243465896,"throughput_eps":0,"last_update":"2026-03-21T16:52:44.209911572Z"} +2026/03/21 16:52:49 [transform_engine] {"stage_name":"transform_engine","events_processed":667,"events_dropped":0,"avg_latency_ms":6488.727605592994,"throughput_eps":0,"last_update":"2026-03-21T16:52:44.209864933Z"} +2026/03/21 16:52:49 ───────────────────────────────────────────────── +2026/03/21 16:52:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:52:54 [detection_layer] {"stage_name":"detection_layer","events_processed":665,"events_dropped":0,"avg_latency_ms":17.415061243465896,"throughput_eps":0,"last_update":"2026-03-21T16:52:49.210865607Z"} +2026/03/21 16:52:54 [transform_engine] {"stage_name":"transform_engine","events_processed":667,"events_dropped":0,"avg_latency_ms":6488.727605592994,"throughput_eps":0,"last_update":"2026-03-21T16:52:44.209864933Z"} +2026/03/21 16:52:54 [log_collector] {"stage_name":"log_collector","events_processed":32096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6419.2,"last_update":"2026-03-21T16:52:49.068656608Z"} +2026/03/21 16:52:54 [metric_collector] {"stage_name":"metric_collector","events_processed":20039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4007.8,"last_update":"2026-03-21T16:52:49.069226159Z"} +2026/03/21 16:52:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8018,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:52:49.077153775Z"} +2026/03/21 16:52:54 ───────────────────────────────────────────────── +2026/03/21 16:52:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:52:59 [metric_collector] {"stage_name":"metric_collector","events_processed":20044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4008.8,"last_update":"2026-03-21T16:52:54.068744083Z"} +2026/03/21 16:52:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8020,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:52:54.077170714Z"} +2026/03/21 16:52:59 [detection_layer] {"stage_name":"detection_layer","events_processed":665,"events_dropped":0,"avg_latency_ms":17.415061243465896,"throughput_eps":0,"last_update":"2026-03-21T16:52:54.210557885Z"} +2026/03/21 16:52:59 [transform_engine] {"stage_name":"transform_engine","events_processed":667,"events_dropped":0,"avg_latency_ms":6488.727605592994,"throughput_eps":0,"last_update":"2026-03-21T16:52:44.209864933Z"} +2026/03/21 16:52:59 [log_collector] {"stage_name":"log_collector","events_processed":32096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6419.2,"last_update":"2026-03-21T16:52:54.068302677Z"} +2026/03/21 16:52:59 ───────────────────────────────────────────────── +2026/03/21 16:53:01 [ANOMALY] time=2026-03-21T16:53:01Z score=0.8171 method=SEAD details=MAD!:w=0.30,s=0.76 RRCF-fast!:w=0.18,s=1.00 RRCF-mid!:w=0.14,s=1.00 RRCF-slow!:w=0.14,s=1.00 COPOD!:w=0.24,s=0.55 +2026/03/21 16:53:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:53:04 [log_collector] {"stage_name":"log_collector","events_processed":32096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6419.2,"last_update":"2026-03-21T16:52:59.068529597Z"} +2026/03/21 16:53:04 [metric_collector] {"stage_name":"metric_collector","events_processed":20049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4009.8,"last_update":"2026-03-21T16:52:59.068800025Z"} +2026/03/21 16:53:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8022,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:52:59.075201417Z"} +2026/03/21 16:53:04 [detection_layer] {"stage_name":"detection_layer","events_processed":665,"events_dropped":0,"avg_latency_ms":17.415061243465896,"throughput_eps":0,"last_update":"2026-03-21T16:52:59.210446957Z"} +2026/03/21 16:53:04 [transform_engine] {"stage_name":"transform_engine","events_processed":668,"events_dropped":0,"avg_latency_ms":7592.361625674395,"throughput_eps":0,"last_update":"2026-03-21T16:53:01.217303773Z"} +2026/03/21 16:53:04 ───────────────────────────────────────────────── +2026/03/21 16:53:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:53:09 [log_collector] {"stage_name":"log_collector","events_processed":32123,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6424.6,"last_update":"2026-03-21T16:53:04.068457726Z"} +2026/03/21 16:53:09 [metric_collector] {"stage_name":"metric_collector","events_processed":20054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4010.8,"last_update":"2026-03-21T16:53:04.068651637Z"} +2026/03/21 16:53:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:53:04.076096989Z"} +2026/03/21 16:53:09 [detection_layer] {"stage_name":"detection_layer","events_processed":666,"events_dropped":0,"avg_latency_ms":15.971738194772717,"throughput_eps":0,"last_update":"2026-03-21T16:53:04.21033977Z"} +2026/03/21 16:53:09 [transform_engine] {"stage_name":"transform_engine","events_processed":668,"events_dropped":0,"avg_latency_ms":7592.361625674395,"throughput_eps":0,"last_update":"2026-03-21T16:53:04.210313318Z"} +2026/03/21 16:53:09 ───────────────────────────────────────────────── +2026/03/21 16:53:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:53:14 [log_collector] {"stage_name":"log_collector","events_processed":32131,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6426.2,"last_update":"2026-03-21T16:53:09.068881213Z"} +2026/03/21 16:53:14 [metric_collector] {"stage_name":"metric_collector","events_processed":20059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4011.8,"last_update":"2026-03-21T16:53:09.069291309Z"} +2026/03/21 16:53:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:53:09.078333851Z"} +2026/03/21 16:53:14 [detection_layer] {"stage_name":"detection_layer","events_processed":666,"events_dropped":0,"avg_latency_ms":15.971738194772717,"throughput_eps":0,"last_update":"2026-03-21T16:53:09.210638157Z"} +2026/03/21 16:53:14 [transform_engine] {"stage_name":"transform_engine","events_processed":668,"events_dropped":0,"avg_latency_ms":7592.361625674395,"throughput_eps":0,"last_update":"2026-03-21T16:53:09.210614331Z"} +2026/03/21 16:53:14 ───────────────────────────────────────────────── +2026/03/21 16:53:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:53:19 [metric_collector] {"stage_name":"metric_collector","events_processed":20064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4012.8,"last_update":"2026-03-21T16:53:14.068892782Z"} +2026/03/21 16:53:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:53:14.077452078Z"} +2026/03/21 16:53:19 [detection_layer] {"stage_name":"detection_layer","events_processed":666,"events_dropped":0,"avg_latency_ms":15.971738194772717,"throughput_eps":0,"last_update":"2026-03-21T16:53:14.210770357Z"} +2026/03/21 16:53:19 [transform_engine] {"stage_name":"transform_engine","events_processed":668,"events_dropped":0,"avg_latency_ms":7592.361625674395,"throughput_eps":0,"last_update":"2026-03-21T16:53:14.210729248Z"} +2026/03/21 16:53:19 [log_collector] {"stage_name":"log_collector","events_processed":32131,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6426.2,"last_update":"2026-03-21T16:53:19.068311834Z"} +2026/03/21 16:53:19 ───────────────────────────────────────────────── +Saved state: 18 clusters, 32132 messages, reason: none +2026/03/21 16:53:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:53:24 [transform_engine] {"stage_name":"transform_engine","events_processed":669,"events_dropped":0,"avg_latency_ms":6098.362293939516,"throughput_eps":0,"last_update":"2026-03-21T16:53:19.332098662Z"} +2026/03/21 16:53:24 [log_collector] {"stage_name":"log_collector","events_processed":32131,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6426.2,"last_update":"2026-03-21T16:53:19.068311834Z"} +2026/03/21 16:53:24 [metric_collector] {"stage_name":"metric_collector","events_processed":20069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4013.8,"last_update":"2026-03-21T16:53:19.068753831Z"} +2026/03/21 16:53:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:53:19.0776179Z"} +2026/03/21 16:53:24 [detection_layer] {"stage_name":"detection_layer","events_processed":666,"events_dropped":0,"avg_latency_ms":15.971738194772717,"throughput_eps":0,"last_update":"2026-03-21T16:53:19.210917223Z"} +2026/03/21 16:53:24 ───────────────────────────────────────────────── +2026/03/21 16:53:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:53:29 [log_collector] {"stage_name":"log_collector","events_processed":32134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6426.8,"last_update":"2026-03-21T16:53:24.06860085Z"} +2026/03/21 16:53:29 [metric_collector] {"stage_name":"metric_collector","events_processed":20074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4014.8,"last_update":"2026-03-21T16:53:24.068847754Z"} +2026/03/21 16:53:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:53:24.074773455Z"} +2026/03/21 16:53:29 [detection_layer] {"stage_name":"detection_layer","events_processed":667,"events_dropped":0,"avg_latency_ms":16.837986755818175,"throughput_eps":0,"last_update":"2026-03-21T16:53:24.210197516Z"} +2026/03/21 16:53:29 [transform_engine] {"stage_name":"transform_engine","events_processed":669,"events_dropped":0,"avg_latency_ms":6098.362293939516,"throughput_eps":0,"last_update":"2026-03-21T16:53:24.210218447Z"} +2026/03/21 16:53:29 ───────────────────────────────────────────────── +2026/03/21 16:53:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:53:34 [metric_collector] {"stage_name":"metric_collector","events_processed":20079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4015.8,"last_update":"2026-03-21T16:53:29.069178291Z"} +2026/03/21 16:53:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:53:29.078317306Z"} +2026/03/21 16:53:34 [detection_layer] {"stage_name":"detection_layer","events_processed":667,"events_dropped":0,"avg_latency_ms":16.837986755818175,"throughput_eps":0,"last_update":"2026-03-21T16:53:29.210567209Z"} +2026/03/21 16:53:34 [transform_engine] {"stage_name":"transform_engine","events_processed":669,"events_dropped":0,"avg_latency_ms":6098.362293939516,"throughput_eps":0,"last_update":"2026-03-21T16:53:29.210579192Z"} +2026/03/21 16:53:34 [log_collector] {"stage_name":"log_collector","events_processed":32145,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6429,"last_update":"2026-03-21T16:53:34.068088817Z"} +2026/03/21 16:53:34 ───────────────────────────────────────────────── +2026/03/21 16:53:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:53:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8036,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:53:34.077828895Z"} +2026/03/21 16:53:39 [detection_layer] {"stage_name":"detection_layer","events_processed":667,"events_dropped":0,"avg_latency_ms":16.837986755818175,"throughput_eps":0,"last_update":"2026-03-21T16:53:34.210066834Z"} +2026/03/21 16:53:39 [transform_engine] {"stage_name":"transform_engine","events_processed":669,"events_dropped":0,"avg_latency_ms":6098.362293939516,"throughput_eps":0,"last_update":"2026-03-21T16:53:34.210078878Z"} +2026/03/21 16:53:39 [log_collector] {"stage_name":"log_collector","events_processed":32145,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6429,"last_update":"2026-03-21T16:53:34.068088817Z"} +2026/03/21 16:53:39 [metric_collector] {"stage_name":"metric_collector","events_processed":20084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4016.8,"last_update":"2026-03-21T16:53:34.068605086Z"} +2026/03/21 16:53:39 ───────────────────────────────────────────────── +2026/03/21 16:53:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:53:44 [metric_collector] {"stage_name":"metric_collector","events_processed":20089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4017.8,"last_update":"2026-03-21T16:53:39.068944709Z"} +2026/03/21 16:53:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:53:39.077320624Z"} +2026/03/21 16:53:44 [detection_layer] {"stage_name":"detection_layer","events_processed":667,"events_dropped":0,"avg_latency_ms":16.837986755818175,"throughput_eps":0,"last_update":"2026-03-21T16:53:39.21160392Z"} +2026/03/21 16:53:44 [transform_engine] {"stage_name":"transform_engine","events_processed":669,"events_dropped":0,"avg_latency_ms":6098.362293939516,"throughput_eps":0,"last_update":"2026-03-21T16:53:39.211620262Z"} +2026/03/21 16:53:44 [log_collector] {"stage_name":"log_collector","events_processed":32145,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6429,"last_update":"2026-03-21T16:53:39.068137042Z"} +2026/03/21 16:53:44 ───────────────────────────────────────────────── +2026/03/21 16:53:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:53:49 [transform_engine] {"stage_name":"transform_engine","events_processed":669,"events_dropped":0,"avg_latency_ms":6098.362293939516,"throughput_eps":0,"last_update":"2026-03-21T16:53:44.209709464Z"} +2026/03/21 16:53:49 [log_collector] {"stage_name":"log_collector","events_processed":32145,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6429,"last_update":"2026-03-21T16:53:44.06873548Z"} +2026/03/21 16:53:49 [metric_collector] {"stage_name":"metric_collector","events_processed":20094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4018.8,"last_update":"2026-03-21T16:53:44.069024614Z"} +2026/03/21 16:53:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:53:44.078507028Z"} +2026/03/21 16:53:49 [detection_layer] {"stage_name":"detection_layer","events_processed":667,"events_dropped":0,"avg_latency_ms":16.837986755818175,"throughput_eps":0,"last_update":"2026-03-21T16:53:44.21083017Z"} +2026/03/21 16:53:49 ───────────────────────────────────────────────── +2026/03/21 16:53:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:53:54 [log_collector] {"stage_name":"log_collector","events_processed":32145,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6429,"last_update":"2026-03-21T16:53:49.068652272Z"} +2026/03/21 16:53:54 [metric_collector] {"stage_name":"metric_collector","events_processed":20099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4019.8,"last_update":"2026-03-21T16:53:49.069179963Z"} +2026/03/21 16:53:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:53:49.077836064Z"} +2026/03/21 16:53:54 [detection_layer] {"stage_name":"detection_layer","events_processed":667,"events_dropped":0,"avg_latency_ms":16.837986755818175,"throughput_eps":0,"last_update":"2026-03-21T16:53:49.210194314Z"} +2026/03/21 16:53:54 [transform_engine] {"stage_name":"transform_engine","events_processed":670,"events_dropped":0,"avg_latency_ms":4903.673236351613,"throughput_eps":0,"last_update":"2026-03-21T16:53:49.335126929Z"} +2026/03/21 16:53:54 ───────────────────────────────────────────────── +2026/03/21 16:53:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:53:59 [log_collector] {"stage_name":"log_collector","events_processed":32145,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6429,"last_update":"2026-03-21T16:53:54.068853919Z"} +2026/03/21 16:53:59 [metric_collector] {"stage_name":"metric_collector","events_processed":20104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4020.8,"last_update":"2026-03-21T16:53:54.069440232Z"} +2026/03/21 16:53:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:53:54.07581313Z"} +2026/03/21 16:53:59 [detection_layer] {"stage_name":"detection_layer","events_processed":668,"events_dropped":0,"avg_latency_ms":18.29350220465454,"throughput_eps":0,"last_update":"2026-03-21T16:53:54.210097238Z"} +2026/03/21 16:53:59 [transform_engine] {"stage_name":"transform_engine","events_processed":670,"events_dropped":0,"avg_latency_ms":4903.673236351613,"throughput_eps":0,"last_update":"2026-03-21T16:53:54.210074053Z"} +2026/03/21 16:53:59 ───────────────────────────────────────────────── +2026/03/21 16:54:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:54:04 [log_collector] {"stage_name":"log_collector","events_processed":32145,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6429,"last_update":"2026-03-21T16:53:59.068388849Z"} +2026/03/21 16:54:04 [metric_collector] {"stage_name":"metric_collector","events_processed":20109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4021.8,"last_update":"2026-03-21T16:53:59.068810135Z"} +2026/03/21 16:54:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:53:59.078210763Z"} +2026/03/21 16:54:04 [detection_layer] {"stage_name":"detection_layer","events_processed":668,"events_dropped":0,"avg_latency_ms":18.29350220465454,"throughput_eps":0,"last_update":"2026-03-21T16:53:59.210516471Z"} +2026/03/21 16:54:04 [transform_engine] {"stage_name":"transform_engine","events_processed":670,"events_dropped":0,"avg_latency_ms":4903.673236351613,"throughput_eps":0,"last_update":"2026-03-21T16:53:59.210473058Z"} +2026/03/21 16:54:04 ───────────────────────────────────────────────── +2026/03/21 16:54:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:54:09 [log_collector] {"stage_name":"log_collector","events_processed":32145,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6429,"last_update":"2026-03-21T16:54:04.068985751Z"} +2026/03/21 16:54:09 [metric_collector] {"stage_name":"metric_collector","events_processed":20114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4022.8,"last_update":"2026-03-21T16:54:04.06962267Z"} +2026/03/21 16:54:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8048,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:54:04.078033893Z"} +2026/03/21 16:54:09 [detection_layer] {"stage_name":"detection_layer","events_processed":668,"events_dropped":0,"avg_latency_ms":18.29350220465454,"throughput_eps":0,"last_update":"2026-03-21T16:54:04.210412481Z"} +2026/03/21 16:54:09 [transform_engine] {"stage_name":"transform_engine","events_processed":670,"events_dropped":0,"avg_latency_ms":4903.673236351613,"throughput_eps":0,"last_update":"2026-03-21T16:54:04.210383576Z"} +2026/03/21 16:54:09 ───────────────────────────────────────────────── +2026/03/21 16:54:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:54:14 [log_collector] {"stage_name":"log_collector","events_processed":32145,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6429,"last_update":"2026-03-21T16:54:09.069046493Z"} +2026/03/21 16:54:14 [metric_collector] {"stage_name":"metric_collector","events_processed":20119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4023.8,"last_update":"2026-03-21T16:54:09.069329735Z"} +2026/03/21 16:54:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8050,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:54:09.075835828Z"} +2026/03/21 16:54:14 [detection_layer] {"stage_name":"detection_layer","events_processed":668,"events_dropped":0,"avg_latency_ms":18.29350220465454,"throughput_eps":0,"last_update":"2026-03-21T16:54:09.210164411Z"} +2026/03/21 16:54:14 [transform_engine] {"stage_name":"transform_engine","events_processed":670,"events_dropped":0,"avg_latency_ms":4903.673236351613,"throughput_eps":0,"last_update":"2026-03-21T16:54:09.210144664Z"} +2026/03/21 16:54:14 ───────────────────────────────────────────────── +2026/03/21 16:54:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:54:19 [log_collector] {"stage_name":"log_collector","events_processed":32145,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6429,"last_update":"2026-03-21T16:54:14.068601836Z"} +2026/03/21 16:54:19 [metric_collector] {"stage_name":"metric_collector","events_processed":20124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4024.8,"last_update":"2026-03-21T16:54:14.06890673Z"} +2026/03/21 16:54:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:54:14.077279338Z"} +2026/03/21 16:54:19 [detection_layer] {"stage_name":"detection_layer","events_processed":668,"events_dropped":0,"avg_latency_ms":18.29350220465454,"throughput_eps":0,"last_update":"2026-03-21T16:54:14.210412912Z"} +2026/03/21 16:54:19 [transform_engine] {"stage_name":"transform_engine","events_processed":670,"events_dropped":0,"avg_latency_ms":4903.673236351613,"throughput_eps":0,"last_update":"2026-03-21T16:54:14.210441027Z"} +2026/03/21 16:54:19 ───────────────────────────────────────────────── +2026/03/21 16:54:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:54:24 [detection_layer] {"stage_name":"detection_layer","events_processed":668,"events_dropped":0,"avg_latency_ms":18.29350220465454,"throughput_eps":0,"last_update":"2026-03-21T16:54:19.211055352Z"} +2026/03/21 16:54:24 [transform_engine] {"stage_name":"transform_engine","events_processed":670,"events_dropped":0,"avg_latency_ms":4903.673236351613,"throughput_eps":0,"last_update":"2026-03-21T16:54:19.210024768Z"} +2026/03/21 16:54:24 [log_collector] {"stage_name":"log_collector","events_processed":32145,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6429,"last_update":"2026-03-21T16:54:19.068621422Z"} +2026/03/21 16:54:24 [metric_collector] {"stage_name":"metric_collector","events_processed":20129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4025.8,"last_update":"2026-03-21T16:54:19.069039392Z"} +2026/03/21 16:54:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:54:19.07576719Z"} +2026/03/21 16:54:24 ───────────────────────────────────────────────── +2026/03/21 16:54:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:54:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8056,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:54:24.075937793Z"} +2026/03/21 16:54:29 [detection_layer] {"stage_name":"detection_layer","events_processed":668,"events_dropped":0,"avg_latency_ms":18.29350220465454,"throughput_eps":0,"last_update":"2026-03-21T16:54:24.210180852Z"} +2026/03/21 16:54:29 [transform_engine] {"stage_name":"transform_engine","events_processed":671,"events_dropped":0,"avg_latency_ms":5187.284302681291,"throughput_eps":0,"last_update":"2026-03-21T16:54:25.532795532Z"} +2026/03/21 16:54:29 [log_collector] {"stage_name":"log_collector","events_processed":32145,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6429,"last_update":"2026-03-21T16:54:24.068715679Z"} +2026/03/21 16:54:29 [metric_collector] {"stage_name":"metric_collector","events_processed":20134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4026.8,"last_update":"2026-03-21T16:54:24.068954235Z"} +2026/03/21 16:54:29 ───────────────────────────────────────────────── +2026/03/21 16:54:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:54:34 [log_collector] {"stage_name":"log_collector","events_processed":32145,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6429,"last_update":"2026-03-21T16:54:29.068654497Z"} +2026/03/21 16:54:34 [metric_collector] {"stage_name":"metric_collector","events_processed":20139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4027.8,"last_update":"2026-03-21T16:54:29.068978097Z"} +2026/03/21 16:54:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:54:29.076444119Z"} +2026/03/21 16:54:34 [detection_layer] {"stage_name":"detection_layer","events_processed":669,"events_dropped":0,"avg_latency_ms":17.147574963723635,"throughput_eps":0,"last_update":"2026-03-21T16:54:29.210691248Z"} +2026/03/21 16:54:34 [transform_engine] {"stage_name":"transform_engine","events_processed":671,"events_dropped":0,"avg_latency_ms":5187.284302681291,"throughput_eps":0,"last_update":"2026-03-21T16:54:29.210703851Z"} +2026/03/21 16:54:34 ───────────────────────────────────────────────── +Saved state: 18 clusters, 32146 messages, reason: none +2026/03/21 16:54:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:54:39 [log_collector] {"stage_name":"log_collector","events_processed":32145,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6429,"last_update":"2026-03-21T16:54:34.06861735Z"} +2026/03/21 16:54:39 [metric_collector] {"stage_name":"metric_collector","events_processed":20144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4028.8,"last_update":"2026-03-21T16:54:34.068912846Z"} +2026/03/21 16:54:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:54:34.079537629Z"} +2026/03/21 16:54:39 [detection_layer] {"stage_name":"detection_layer","events_processed":669,"events_dropped":0,"avg_latency_ms":17.147574963723635,"throughput_eps":0,"last_update":"2026-03-21T16:54:34.210810288Z"} +2026/03/21 16:54:39 [transform_engine] {"stage_name":"transform_engine","events_processed":671,"events_dropped":0,"avg_latency_ms":5187.284302681291,"throughput_eps":0,"last_update":"2026-03-21T16:54:34.209682689Z"} +2026/03/21 16:54:39 ───────────────────────────────────────────────── +2026/03/21 16:54:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:54:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8062,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:54:39.075199413Z"} +2026/03/21 16:54:44 [detection_layer] {"stage_name":"detection_layer","events_processed":669,"events_dropped":0,"avg_latency_ms":17.147574963723635,"throughput_eps":0,"last_update":"2026-03-21T16:54:39.210422219Z"} +2026/03/21 16:54:44 [transform_engine] {"stage_name":"transform_engine","events_processed":671,"events_dropped":0,"avg_latency_ms":5187.284302681291,"throughput_eps":0,"last_update":"2026-03-21T16:54:39.210412691Z"} +2026/03/21 16:54:44 [log_collector] {"stage_name":"log_collector","events_processed":32150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6430,"last_update":"2026-03-21T16:54:39.068528004Z"} +2026/03/21 16:54:44 [metric_collector] {"stage_name":"metric_collector","events_processed":20149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4029.8,"last_update":"2026-03-21T16:54:39.068769396Z"} +2026/03/21 16:54:44 ───────────────────────────────────────────────── +2026/03/21 16:54:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:54:49 [log_collector] {"stage_name":"log_collector","events_processed":32150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6430,"last_update":"2026-03-21T16:54:44.068600276Z"} +2026/03/21 16:54:49 [metric_collector] {"stage_name":"metric_collector","events_processed":20154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4030.8,"last_update":"2026-03-21T16:54:44.068823574Z"} +2026/03/21 16:54:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:54:44.074858243Z"} +2026/03/21 16:54:49 [detection_layer] {"stage_name":"detection_layer","events_processed":669,"events_dropped":0,"avg_latency_ms":17.147574963723635,"throughput_eps":0,"last_update":"2026-03-21T16:54:44.210508779Z"} +2026/03/21 16:54:49 [transform_engine] {"stage_name":"transform_engine","events_processed":671,"events_dropped":0,"avg_latency_ms":5187.284302681291,"throughput_eps":0,"last_update":"2026-03-21T16:54:44.210548906Z"} +2026/03/21 16:54:49 ───────────────────────────────────────────────── +2026/03/21 16:54:49 [ANOMALY] time=2026-03-21T16:54:49Z score=0.8904 method=SEAD details=MAD!:w=0.30,s=0.91 RRCF-fast:w=0.18,s=0.79 RRCF-mid!:w=0.14,s=0.89 RRCF-slow!:w=0.13,s=0.88 COPOD!:w=0.24,s=0.95 +2026/03/21 16:54:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:54:54 [metric_collector] {"stage_name":"metric_collector","events_processed":20159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4031.8,"last_update":"2026-03-21T16:54:49.068854155Z"} +2026/03/21 16:54:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:54:49.074474822Z"} +2026/03/21 16:54:54 [detection_layer] {"stage_name":"detection_layer","events_processed":669,"events_dropped":0,"avg_latency_ms":17.147574963723635,"throughput_eps":0,"last_update":"2026-03-21T16:54:49.212241711Z"} +2026/03/21 16:54:54 [transform_engine] {"stage_name":"transform_engine","events_processed":672,"events_dropped":0,"avg_latency_ms":4184.352130145033,"throughput_eps":0,"last_update":"2026-03-21T16:54:49.384888014Z"} +2026/03/21 16:54:54 [log_collector] {"stage_name":"log_collector","events_processed":32150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6430,"last_update":"2026-03-21T16:54:49.068631768Z"} +2026/03/21 16:54:54 ───────────────────────────────────────────────── +2026/03/21 16:54:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:54:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:54:54.076479754Z"} +2026/03/21 16:54:59 [detection_layer] {"stage_name":"detection_layer","events_processed":670,"events_dropped":0,"avg_latency_ms":16.226312770978907,"throughput_eps":0,"last_update":"2026-03-21T16:54:54.210791566Z"} +2026/03/21 16:54:59 [transform_engine] {"stage_name":"transform_engine","events_processed":672,"events_dropped":0,"avg_latency_ms":4184.352130145033,"throughput_eps":0,"last_update":"2026-03-21T16:54:54.209691278Z"} +2026/03/21 16:54:59 [log_collector] {"stage_name":"log_collector","events_processed":32150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6430,"last_update":"2026-03-21T16:54:54.068344942Z"} +2026/03/21 16:54:59 [metric_collector] {"stage_name":"metric_collector","events_processed":20164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4032.8,"last_update":"2026-03-21T16:54:54.068623946Z"} +2026/03/21 16:54:59 ───────────────────────────────────────────────── +2026/03/21 16:55:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:55:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:54:59.080514384Z"} +2026/03/21 16:55:04 [detection_layer] {"stage_name":"detection_layer","events_processed":670,"events_dropped":0,"avg_latency_ms":16.226312770978907,"throughput_eps":0,"last_update":"2026-03-21T16:54:59.21075154Z"} +2026/03/21 16:55:04 [transform_engine] {"stage_name":"transform_engine","events_processed":672,"events_dropped":0,"avg_latency_ms":4184.352130145033,"throughput_eps":0,"last_update":"2026-03-21T16:54:59.209668265Z"} +2026/03/21 16:55:04 [log_collector] {"stage_name":"log_collector","events_processed":32150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6430,"last_update":"2026-03-21T16:55:04.068163357Z"} +2026/03/21 16:55:04 [metric_collector] {"stage_name":"metric_collector","events_processed":20169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4033.8,"last_update":"2026-03-21T16:54:59.06914256Z"} +2026/03/21 16:55:04 ───────────────────────────────────────────────── +2026/03/21 16:55:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:55:09 [transform_engine] {"stage_name":"transform_engine","events_processed":672,"events_dropped":0,"avg_latency_ms":4184.352130145033,"throughput_eps":0,"last_update":"2026-03-21T16:55:04.209686081Z"} +2026/03/21 16:55:09 [log_collector] {"stage_name":"log_collector","events_processed":32150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6430,"last_update":"2026-03-21T16:55:04.068163357Z"} +2026/03/21 16:55:09 [metric_collector] {"stage_name":"metric_collector","events_processed":20174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4034.8,"last_update":"2026-03-21T16:55:04.068456708Z"} +2026/03/21 16:55:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8072,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:55:04.075615502Z"} +2026/03/21 16:55:09 [detection_layer] {"stage_name":"detection_layer","events_processed":670,"events_dropped":0,"avg_latency_ms":16.226312770978907,"throughput_eps":0,"last_update":"2026-03-21T16:55:04.210770879Z"} +2026/03/21 16:55:09 ───────────────────────────────────────────────── +2026/03/21 16:55:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:55:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:55:09.075050451Z"} +2026/03/21 16:55:14 [detection_layer] {"stage_name":"detection_layer","events_processed":670,"events_dropped":0,"avg_latency_ms":16.226312770978907,"throughput_eps":0,"last_update":"2026-03-21T16:55:09.210361616Z"} +2026/03/21 16:55:14 [transform_engine] {"stage_name":"transform_engine","events_processed":672,"events_dropped":0,"avg_latency_ms":4184.352130145033,"throughput_eps":0,"last_update":"2026-03-21T16:55:09.210320969Z"} +2026/03/21 16:55:14 [log_collector] {"stage_name":"log_collector","events_processed":32150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6430,"last_update":"2026-03-21T16:55:09.06810678Z"} +2026/03/21 16:55:14 [metric_collector] {"stage_name":"metric_collector","events_processed":20179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4035.8,"last_update":"2026-03-21T16:55:09.068394511Z"} +2026/03/21 16:55:14 ───────────────────────────────────────────────── +2026/03/21 16:55:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:55:19 [transform_engine] {"stage_name":"transform_engine","events_processed":672,"events_dropped":0,"avg_latency_ms":4184.352130145033,"throughput_eps":0,"last_update":"2026-03-21T16:55:14.210470805Z"} +2026/03/21 16:55:19 [log_collector] {"stage_name":"log_collector","events_processed":32150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6430,"last_update":"2026-03-21T16:55:14.070052277Z"} +2026/03/21 16:55:19 [metric_collector] {"stage_name":"metric_collector","events_processed":20184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4036.8,"last_update":"2026-03-21T16:55:14.070044501Z"} +2026/03/21 16:55:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8076,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:55:14.07739906Z"} +2026/03/21 16:55:19 [detection_layer] {"stage_name":"detection_layer","events_processed":670,"events_dropped":0,"avg_latency_ms":16.226312770978907,"throughput_eps":0,"last_update":"2026-03-21T16:55:14.210453262Z"} +2026/03/21 16:55:19 ───────────────────────────────────────────────── +2026/03/21 16:55:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:55:24 [log_collector] {"stage_name":"log_collector","events_processed":32159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6431.8,"last_update":"2026-03-21T16:55:19.068578793Z"} +2026/03/21 16:55:24 [metric_collector] {"stage_name":"metric_collector","events_processed":20189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4037.8,"last_update":"2026-03-21T16:55:19.068963088Z"} +2026/03/21 16:55:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:55:19.076953475Z"} +2026/03/21 16:55:24 [detection_layer] {"stage_name":"detection_layer","events_processed":670,"events_dropped":0,"avg_latency_ms":16.226312770978907,"throughput_eps":0,"last_update":"2026-03-21T16:55:19.210406541Z"} +2026/03/21 16:55:24 [transform_engine] {"stage_name":"transform_engine","events_processed":673,"events_dropped":0,"avg_latency_ms":3385.1980817160265,"throughput_eps":0,"last_update":"2026-03-21T16:55:19.399010421Z"} +2026/03/21 16:55:24 ───────────────────────────────────────────────── +2026/03/21 16:55:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:55:29 [log_collector] {"stage_name":"log_collector","events_processed":32161,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6432.2,"last_update":"2026-03-21T16:55:24.069004768Z"} +2026/03/21 16:55:29 [metric_collector] {"stage_name":"metric_collector","events_processed":20194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4038.8,"last_update":"2026-03-21T16:55:24.069470541Z"} +2026/03/21 16:55:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:55:24.080115581Z"} +2026/03/21 16:55:29 [detection_layer] {"stage_name":"detection_layer","events_processed":671,"events_dropped":0,"avg_latency_ms":15.572630616783126,"throughput_eps":0,"last_update":"2026-03-21T16:55:24.210274558Z"} +2026/03/21 16:55:29 [transform_engine] {"stage_name":"transform_engine","events_processed":673,"events_dropped":0,"avg_latency_ms":3385.1980817160265,"throughput_eps":0,"last_update":"2026-03-21T16:55:24.210286109Z"} +2026/03/21 16:55:29 ───────────────────────────────────────────────── +2026/03/21 16:55:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:55:34 [log_collector] {"stage_name":"log_collector","events_processed":32317,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6463.4,"last_update":"2026-03-21T16:55:29.068943628Z"} +2026/03/21 16:55:34 [metric_collector] {"stage_name":"metric_collector","events_processed":20199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4039.8,"last_update":"2026-03-21T16:55:29.069342221Z"} +2026/03/21 16:55:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8082,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:55:29.075765195Z"} +2026/03/21 16:55:34 [detection_layer] {"stage_name":"detection_layer","events_processed":671,"events_dropped":0,"avg_latency_ms":15.572630616783126,"throughput_eps":0,"last_update":"2026-03-21T16:55:29.210031429Z"} +2026/03/21 16:55:34 [transform_engine] {"stage_name":"transform_engine","events_processed":673,"events_dropped":0,"avg_latency_ms":3385.1980817160265,"throughput_eps":0,"last_update":"2026-03-21T16:55:29.210048131Z"} +2026/03/21 16:55:34 ───────────────────────────────────────────────── +2026/03/21 16:55:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:55:39 [detection_layer] {"stage_name":"detection_layer","events_processed":671,"events_dropped":0,"avg_latency_ms":15.572630616783126,"throughput_eps":0,"last_update":"2026-03-21T16:55:34.21012225Z"} +2026/03/21 16:55:39 [transform_engine] {"stage_name":"transform_engine","events_processed":673,"events_dropped":0,"avg_latency_ms":3385.1980817160265,"throughput_eps":0,"last_update":"2026-03-21T16:55:34.21013262Z"} +2026/03/21 16:55:39 [log_collector] {"stage_name":"log_collector","events_processed":32333,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6466.6,"last_update":"2026-03-21T16:55:34.068984242Z"} +2026/03/21 16:55:39 [metric_collector] {"stage_name":"metric_collector","events_processed":20204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4040.8,"last_update":"2026-03-21T16:55:34.069430768Z"} +2026/03/21 16:55:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:55:34.07591052Z"} +2026/03/21 16:55:39 ───────────────────────────────────────────────── +2026/03/21 16:55:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:55:44 [detection_layer] {"stage_name":"detection_layer","events_processed":671,"events_dropped":0,"avg_latency_ms":15.572630616783126,"throughput_eps":0,"last_update":"2026-03-21T16:55:39.210257245Z"} +2026/03/21 16:55:44 [transform_engine] {"stage_name":"transform_engine","events_processed":673,"events_dropped":0,"avg_latency_ms":3385.1980817160265,"throughput_eps":0,"last_update":"2026-03-21T16:55:39.21027001Z"} +2026/03/21 16:55:44 [log_collector] {"stage_name":"log_collector","events_processed":32333,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6466.6,"last_update":"2026-03-21T16:55:39.068069026Z"} +2026/03/21 16:55:44 [metric_collector] {"stage_name":"metric_collector","events_processed":20209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4041.8,"last_update":"2026-03-21T16:55:39.068533126Z"} +2026/03/21 16:55:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:55:39.076010549Z"} +2026/03/21 16:55:44 ───────────────────────────────────────────────── +2026/03/21 16:55:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:55:49 [log_collector] {"stage_name":"log_collector","events_processed":32333,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6466.6,"last_update":"2026-03-21T16:55:44.068337027Z"} +2026/03/21 16:55:49 [metric_collector] {"stage_name":"metric_collector","events_processed":20214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4042.8,"last_update":"2026-03-21T16:55:44.069253102Z"} +2026/03/21 16:55:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:55:44.07742688Z"} +2026/03/21 16:55:49 [detection_layer] {"stage_name":"detection_layer","events_processed":671,"events_dropped":0,"avg_latency_ms":15.572630616783126,"throughput_eps":0,"last_update":"2026-03-21T16:55:44.210705492Z"} +2026/03/21 16:55:49 [transform_engine] {"stage_name":"transform_engine","events_processed":673,"events_dropped":0,"avg_latency_ms":3385.1980817160265,"throughput_eps":0,"last_update":"2026-03-21T16:55:44.210715781Z"} +2026/03/21 16:55:49 ───────────────────────────────────────────────── +2026/03/21 16:55:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:55:54 [log_collector] {"stage_name":"log_collector","events_processed":32333,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6466.6,"last_update":"2026-03-21T16:55:49.068106321Z"} +2026/03/21 16:55:54 [metric_collector] {"stage_name":"metric_collector","events_processed":20219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4043.8,"last_update":"2026-03-21T16:55:49.06862789Z"} +2026/03/21 16:55:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:55:49.078769466Z"} +2026/03/21 16:55:54 [detection_layer] {"stage_name":"detection_layer","events_processed":671,"events_dropped":0,"avg_latency_ms":15.572630616783126,"throughput_eps":0,"last_update":"2026-03-21T16:55:49.209971761Z"} +2026/03/21 16:55:54 [transform_engine] {"stage_name":"transform_engine","events_processed":673,"events_dropped":0,"avg_latency_ms":3385.1980817160265,"throughput_eps":0,"last_update":"2026-03-21T16:55:44.210715781Z"} +2026/03/21 16:55:54 ───────────────────────────────────────────────── +2026/03/21 16:55:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:55:59 [transform_engine] {"stage_name":"transform_engine","events_processed":673,"events_dropped":0,"avg_latency_ms":3385.1980817160265,"throughput_eps":0,"last_update":"2026-03-21T16:55:44.210715781Z"} +2026/03/21 16:55:59 [log_collector] {"stage_name":"log_collector","events_processed":32333,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6466.6,"last_update":"2026-03-21T16:55:54.068899857Z"} +2026/03/21 16:55:59 [metric_collector] {"stage_name":"metric_collector","events_processed":20224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4044.8,"last_update":"2026-03-21T16:55:54.06898531Z"} +2026/03/21 16:55:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:55:54.079148018Z"} +2026/03/21 16:55:59 [detection_layer] {"stage_name":"detection_layer","events_processed":671,"events_dropped":0,"avg_latency_ms":15.572630616783126,"throughput_eps":0,"last_update":"2026-03-21T16:55:54.210368356Z"} +2026/03/21 16:55:59 ───────────────────────────────────────────────── +2026/03/21 16:56:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:56:04 [log_collector] {"stage_name":"log_collector","events_processed":32333,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6466.6,"last_update":"2026-03-21T16:55:59.068615297Z"} +2026/03/21 16:56:04 [metric_collector] {"stage_name":"metric_collector","events_processed":20229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4045.8,"last_update":"2026-03-21T16:55:59.068786364Z"} +2026/03/21 16:56:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:55:59.076368418Z"} +2026/03/21 16:56:04 [detection_layer] {"stage_name":"detection_layer","events_processed":671,"events_dropped":0,"avg_latency_ms":15.572630616783126,"throughput_eps":0,"last_update":"2026-03-21T16:55:59.210806622Z"} +2026/03/21 16:56:04 [transform_engine] {"stage_name":"transform_engine","events_processed":673,"events_dropped":0,"avg_latency_ms":3385.1980817160265,"throughput_eps":0,"last_update":"2026-03-21T16:55:44.210715781Z"} +2026/03/21 16:56:04 ───────────────────────────────────────────────── +2026/03/21 16:56:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:56:09 [log_collector] {"stage_name":"log_collector","events_processed":32333,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6466.6,"last_update":"2026-03-21T16:56:04.068095536Z"} +2026/03/21 16:56:09 [metric_collector] {"stage_name":"metric_collector","events_processed":20234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4046.8,"last_update":"2026-03-21T16:56:04.068588441Z"} +2026/03/21 16:56:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:56:04.076699698Z"} +2026/03/21 16:56:09 [detection_layer] {"stage_name":"detection_layer","events_processed":671,"events_dropped":0,"avg_latency_ms":15.572630616783126,"throughput_eps":0,"last_update":"2026-03-21T16:56:04.209899439Z"} +2026/03/21 16:56:09 [transform_engine] {"stage_name":"transform_engine","events_processed":673,"events_dropped":0,"avg_latency_ms":3385.1980817160265,"throughput_eps":0,"last_update":"2026-03-21T16:55:44.210715781Z"} +2026/03/21 16:56:09 ───────────────────────────────────────────────── +Saved state: 18 clusters, 32334 messages, reason: none +Saved state: 18 clusters, 32387 messages, reason: cluster_template_changed +Saved state: 19 clusters, 32388 messages, reason: cluster_created +2026/03/21 16:56:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:56:14 [log_collector] {"stage_name":"log_collector","events_processed":32333,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6466.6,"last_update":"2026-03-21T16:56:09.068605347Z"} +2026/03/21 16:56:14 [metric_collector] {"stage_name":"metric_collector","events_processed":20239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4047.8,"last_update":"2026-03-21T16:56:09.068853673Z"} +2026/03/21 16:56:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:56:09.075975445Z"} +2026/03/21 16:56:14 [detection_layer] {"stage_name":"detection_layer","events_processed":671,"events_dropped":0,"avg_latency_ms":15.572630616783126,"throughput_eps":0,"last_update":"2026-03-21T16:56:09.210225727Z"} +2026/03/21 16:56:14 [transform_engine] {"stage_name":"transform_engine","events_processed":674,"events_dropped":0,"avg_latency_ms":7369.309022972821,"throughput_eps":0,"last_update":"2026-03-21T16:56:12.515746973Z"} +2026/03/21 16:56:14 ───────────────────────────────────────────────── +2026/03/21 16:56:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:56:19 [log_collector] {"stage_name":"log_collector","events_processed":32395,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6479,"last_update":"2026-03-21T16:56:14.068946746Z"} +2026/03/21 16:56:19 [metric_collector] {"stage_name":"metric_collector","events_processed":20244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4048.8,"last_update":"2026-03-21T16:56:14.069239946Z"} +2026/03/21 16:56:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:56:14.076538046Z"} +2026/03/21 16:56:19 [detection_layer] {"stage_name":"detection_layer","events_processed":672,"events_dropped":0,"avg_latency_ms":15.866441293426503,"throughput_eps":0,"last_update":"2026-03-21T16:56:14.210825981Z"} +2026/03/21 16:56:19 [transform_engine] {"stage_name":"transform_engine","events_processed":674,"events_dropped":0,"avg_latency_ms":7369.309022972821,"throughput_eps":0,"last_update":"2026-03-21T16:56:14.209700025Z"} +2026/03/21 16:56:19 ───────────────────────────────────────────────── +2026/03/21 16:56:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:56:24 [transform_engine] {"stage_name":"transform_engine","events_processed":675,"events_dropped":0,"avg_latency_ms":5930.337406378258,"throughput_eps":0,"last_update":"2026-03-21T16:56:19.385078354Z"} +2026/03/21 16:56:24 [log_collector] {"stage_name":"log_collector","events_processed":32503,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6500.6,"last_update":"2026-03-21T16:56:19.06844634Z"} +2026/03/21 16:56:24 [metric_collector] {"stage_name":"metric_collector","events_processed":20248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4049.6,"last_update":"2026-03-21T16:56:19.068417814Z"} +2026/03/21 16:56:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:56:19.079219967Z"} +2026/03/21 16:56:24 [detection_layer] {"stage_name":"detection_layer","events_processed":672,"events_dropped":0,"avg_latency_ms":15.866441293426503,"throughput_eps":0,"last_update":"2026-03-21T16:56:19.210607586Z"} +2026/03/21 16:56:24 ───────────────────────────────────────────────── +2026/03/21 16:56:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:56:29 [log_collector] {"stage_name":"log_collector","events_processed":32503,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6500.6,"last_update":"2026-03-21T16:56:24.068634884Z"} +2026/03/21 16:56:29 [metric_collector] {"stage_name":"metric_collector","events_processed":20253,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4050.6,"last_update":"2026-03-21T16:56:24.068639303Z"} +2026/03/21 16:56:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:56:24.078235284Z"} +2026/03/21 16:56:29 [detection_layer] {"stage_name":"detection_layer","events_processed":673,"events_dropped":0,"avg_latency_ms":16.3472366347412,"throughput_eps":0,"last_update":"2026-03-21T16:56:24.21046673Z"} +2026/03/21 16:56:29 [transform_engine] {"stage_name":"transform_engine","events_processed":675,"events_dropped":0,"avg_latency_ms":5930.337406378258,"throughput_eps":0,"last_update":"2026-03-21T16:56:24.210479004Z"} +2026/03/21 16:56:29 ───────────────────────────────────────────────── +2026/03/21 16:56:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:56:34 [metric_collector] {"stage_name":"metric_collector","events_processed":20258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4051.6,"last_update":"2026-03-21T16:56:29.067949402Z"} +2026/03/21 16:56:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:56:29.078286895Z"} +2026/03/21 16:56:34 [detection_layer] {"stage_name":"detection_layer","events_processed":673,"events_dropped":0,"avg_latency_ms":16.3472366347412,"throughput_eps":0,"last_update":"2026-03-21T16:56:29.210602572Z"} +2026/03/21 16:56:34 [transform_engine] {"stage_name":"transform_engine","events_processed":675,"events_dropped":0,"avg_latency_ms":5930.337406378258,"throughput_eps":0,"last_update":"2026-03-21T16:56:29.210614675Z"} +2026/03/21 16:56:34 [log_collector] {"stage_name":"log_collector","events_processed":32503,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6500.6,"last_update":"2026-03-21T16:56:29.068077638Z"} +2026/03/21 16:56:34 ───────────────────────────────────────────────── +2026/03/21 16:56:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:56:39 [detection_layer] {"stage_name":"detection_layer","events_processed":673,"events_dropped":0,"avg_latency_ms":16.3472366347412,"throughput_eps":0,"last_update":"2026-03-21T16:56:34.210383276Z"} +2026/03/21 16:56:39 [transform_engine] {"stage_name":"transform_engine","events_processed":675,"events_dropped":0,"avg_latency_ms":5930.337406378258,"throughput_eps":0,"last_update":"2026-03-21T16:56:34.210392543Z"} +2026/03/21 16:56:39 [log_collector] {"stage_name":"log_collector","events_processed":32506,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6501.2,"last_update":"2026-03-21T16:56:34.0689279Z"} +2026/03/21 16:56:39 [metric_collector] {"stage_name":"metric_collector","events_processed":20263,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4052.6,"last_update":"2026-03-21T16:56:34.068921147Z"} +2026/03/21 16:56:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:56:34.07613703Z"} +2026/03/21 16:56:39 ───────────────────────────────────────────────── +2026/03/21 16:56:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:56:44 [log_collector] {"stage_name":"log_collector","events_processed":32506,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6501.2,"last_update":"2026-03-21T16:56:39.068453604Z"} +2026/03/21 16:56:44 [metric_collector] {"stage_name":"metric_collector","events_processed":20268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4053.6,"last_update":"2026-03-21T16:56:39.068302174Z"} +2026/03/21 16:56:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:56:39.081903208Z"} +2026/03/21 16:56:44 [detection_layer] {"stage_name":"detection_layer","events_processed":673,"events_dropped":0,"avg_latency_ms":16.3472366347412,"throughput_eps":0,"last_update":"2026-03-21T16:56:39.210071189Z"} +2026/03/21 16:56:44 [transform_engine] {"stage_name":"transform_engine","events_processed":675,"events_dropped":0,"avg_latency_ms":5930.337406378258,"throughput_eps":0,"last_update":"2026-03-21T16:56:39.210082742Z"} +2026/03/21 16:56:44 ───────────────────────────────────────────────── +2026/03/21 16:56:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:56:49 [metric_collector] {"stage_name":"metric_collector","events_processed":20274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4054.8,"last_update":"2026-03-21T16:56:44.06838317Z"} +2026/03/21 16:56:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:56:44.075192685Z"} +2026/03/21 16:56:49 [detection_layer] {"stage_name":"detection_layer","events_processed":673,"events_dropped":0,"avg_latency_ms":16.3472366347412,"throughput_eps":0,"last_update":"2026-03-21T16:56:44.210374703Z"} +2026/03/21 16:56:49 [transform_engine] {"stage_name":"transform_engine","events_processed":675,"events_dropped":0,"avg_latency_ms":5930.337406378258,"throughput_eps":0,"last_update":"2026-03-21T16:56:44.21038369Z"} +2026/03/21 16:56:49 [log_collector] {"stage_name":"log_collector","events_processed":32516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6503.2,"last_update":"2026-03-21T16:56:44.068066584Z"} +2026/03/21 16:56:49 ───────────────────────────────────────────────── +2026/03/21 16:56:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:56:54 [log_collector] {"stage_name":"log_collector","events_processed":32517,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6503.4,"last_update":"2026-03-21T16:56:49.068106351Z"} +2026/03/21 16:56:54 [metric_collector] {"stage_name":"metric_collector","events_processed":20279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4055.8,"last_update":"2026-03-21T16:56:49.068541153Z"} +2026/03/21 16:56:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:56:49.07740877Z"} +2026/03/21 16:56:54 [detection_layer] {"stage_name":"detection_layer","events_processed":673,"events_dropped":0,"avg_latency_ms":16.3472366347412,"throughput_eps":0,"last_update":"2026-03-21T16:56:49.210709855Z"} +2026/03/21 16:56:54 [transform_engine] {"stage_name":"transform_engine","events_processed":676,"events_dropped":0,"avg_latency_ms":5130.472615702606,"throughput_eps":0,"last_update":"2026-03-21T16:56:51.141747424Z"} +2026/03/21 16:56:54 ───────────────────────────────────────────────── +2026/03/21 16:56:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:56:59 [detection_layer] {"stage_name":"detection_layer","events_processed":674,"events_dropped":0,"avg_latency_ms":16.89594510779296,"throughput_eps":0,"last_update":"2026-03-21T16:56:54.210387326Z"} +2026/03/21 16:56:59 [transform_engine] {"stage_name":"transform_engine","events_processed":676,"events_dropped":0,"avg_latency_ms":5130.472615702606,"throughput_eps":0,"last_update":"2026-03-21T16:56:54.210451099Z"} +2026/03/21 16:56:59 [log_collector] {"stage_name":"log_collector","events_processed":32531,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6506.2,"last_update":"2026-03-21T16:56:54.068598994Z"} +2026/03/21 16:56:59 [metric_collector] {"stage_name":"metric_collector","events_processed":20284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4056.8,"last_update":"2026-03-21T16:56:54.068968271Z"} +2026/03/21 16:56:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:56:54.076011893Z"} +2026/03/21 16:56:59 ───────────────────────────────────────────────── +2026/03/21 16:57:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:57:04 [log_collector] {"stage_name":"log_collector","events_processed":32533,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6506.6,"last_update":"2026-03-21T16:56:59.068729204Z"} +2026/03/21 16:57:04 [metric_collector] {"stage_name":"metric_collector","events_processed":20289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4057.8,"last_update":"2026-03-21T16:56:59.069018257Z"} +2026/03/21 16:57:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:56:59.078457979Z"} +2026/03/21 16:57:04 [detection_layer] {"stage_name":"detection_layer","events_processed":674,"events_dropped":0,"avg_latency_ms":16.89594510779296,"throughput_eps":0,"last_update":"2026-03-21T16:56:59.210823492Z"} +2026/03/21 16:57:04 [transform_engine] {"stage_name":"transform_engine","events_processed":676,"events_dropped":0,"avg_latency_ms":5130.472615702606,"throughput_eps":0,"last_update":"2026-03-21T16:56:59.209698296Z"} +2026/03/21 16:57:04 ───────────────────────────────────────────────── +2026/03/21 16:57:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:57:09 [log_collector] {"stage_name":"log_collector","events_processed":32533,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6506.6,"last_update":"2026-03-21T16:57:04.068493481Z"} +2026/03/21 16:57:09 [metric_collector] {"stage_name":"metric_collector","events_processed":20294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4058.8,"last_update":"2026-03-21T16:57:04.06880675Z"} +2026/03/21 16:57:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:57:04.077692763Z"} +2026/03/21 16:57:09 [detection_layer] {"stage_name":"detection_layer","events_processed":674,"events_dropped":0,"avg_latency_ms":16.89594510779296,"throughput_eps":0,"last_update":"2026-03-21T16:57:04.210046231Z"} +2026/03/21 16:57:09 [transform_engine] {"stage_name":"transform_engine","events_processed":676,"events_dropped":0,"avg_latency_ms":5130.472615702606,"throughput_eps":0,"last_update":"2026-03-21T16:57:04.209981197Z"} +2026/03/21 16:57:09 ───────────────────────────────────────────────── +2026/03/21 16:57:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:57:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8122,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:57:09.076585097Z"} +2026/03/21 16:57:14 [detection_layer] {"stage_name":"detection_layer","events_processed":674,"events_dropped":0,"avg_latency_ms":16.89594510779296,"throughput_eps":0,"last_update":"2026-03-21T16:57:09.20986448Z"} +2026/03/21 16:57:14 [transform_engine] {"stage_name":"transform_engine","events_processed":676,"events_dropped":0,"avg_latency_ms":5130.472615702606,"throughput_eps":0,"last_update":"2026-03-21T16:57:09.209782654Z"} +2026/03/21 16:57:14 [log_collector] {"stage_name":"log_collector","events_processed":32533,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6506.6,"last_update":"2026-03-21T16:57:09.0680829Z"} +2026/03/21 16:57:14 [metric_collector] {"stage_name":"metric_collector","events_processed":20299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4059.8,"last_update":"2026-03-21T16:57:09.068444534Z"} +2026/03/21 16:57:14 ───────────────────────────────────────────────── +2026/03/21 16:57:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:57:19 [transform_engine] {"stage_name":"transform_engine","events_processed":676,"events_dropped":0,"avg_latency_ms":5130.472615702606,"throughput_eps":0,"last_update":"2026-03-21T16:57:14.210035885Z"} +2026/03/21 16:57:19 [log_collector] {"stage_name":"log_collector","events_processed":32533,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6506.6,"last_update":"2026-03-21T16:57:14.068317786Z"} +2026/03/21 16:57:19 [metric_collector] {"stage_name":"metric_collector","events_processed":20304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4060.8,"last_update":"2026-03-21T16:57:14.068709788Z"} +2026/03/21 16:57:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:57:14.077786856Z"} +2026/03/21 16:57:19 [detection_layer] {"stage_name":"detection_layer","events_processed":674,"events_dropped":0,"avg_latency_ms":16.89594510779296,"throughput_eps":0,"last_update":"2026-03-21T16:57:14.210141086Z"} +2026/03/21 16:57:19 ───────────────────────────────────────────────── +2026/03/21 16:57:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:57:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8126,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:57:19.076902799Z"} +2026/03/21 16:57:24 [detection_layer] {"stage_name":"detection_layer","events_processed":674,"events_dropped":0,"avg_latency_ms":16.89594510779296,"throughput_eps":0,"last_update":"2026-03-21T16:57:19.210188675Z"} +2026/03/21 16:57:24 [transform_engine] {"stage_name":"transform_engine","events_processed":676,"events_dropped":0,"avg_latency_ms":5130.472615702606,"throughput_eps":0,"last_update":"2026-03-21T16:57:14.210035885Z"} +2026/03/21 16:57:24 [log_collector] {"stage_name":"log_collector","events_processed":32533,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6506.6,"last_update":"2026-03-21T16:57:19.068926479Z"} +2026/03/21 16:57:24 [metric_collector] {"stage_name":"metric_collector","events_processed":20309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4061.8,"last_update":"2026-03-21T16:57:19.069407001Z"} +2026/03/21 16:57:24 ───────────────────────────────────────────────── +2026/03/21 16:57:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:57:29 [log_collector] {"stage_name":"log_collector","events_processed":32533,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6506.6,"last_update":"2026-03-21T16:57:24.068081027Z"} +2026/03/21 16:57:29 [metric_collector] {"stage_name":"metric_collector","events_processed":20314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4062.8,"last_update":"2026-03-21T16:57:24.068571938Z"} +2026/03/21 16:57:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8128,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:57:24.077436409Z"} +2026/03/21 16:57:29 [detection_layer] {"stage_name":"detection_layer","events_processed":674,"events_dropped":0,"avg_latency_ms":16.89594510779296,"throughput_eps":0,"last_update":"2026-03-21T16:57:24.210030539Z"} +2026/03/21 16:57:29 [transform_engine] {"stage_name":"transform_engine","events_processed":676,"events_dropped":0,"avg_latency_ms":5130.472615702606,"throughput_eps":0,"last_update":"2026-03-21T16:57:14.210035885Z"} +2026/03/21 16:57:29 ───────────────────────────────────────────────── +2026/03/21 16:57:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:57:34 [log_collector] {"stage_name":"log_collector","events_processed":32533,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6506.6,"last_update":"2026-03-21T16:57:29.068370388Z"} +2026/03/21 16:57:34 [metric_collector] {"stage_name":"metric_collector","events_processed":20319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4063.8,"last_update":"2026-03-21T16:57:29.068826732Z"} +2026/03/21 16:57:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8130,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:57:29.077777629Z"} +2026/03/21 16:57:34 [detection_layer] {"stage_name":"detection_layer","events_processed":674,"events_dropped":0,"avg_latency_ms":16.89594510779296,"throughput_eps":0,"last_update":"2026-03-21T16:57:29.209952987Z"} +2026/03/21 16:57:34 [transform_engine] {"stage_name":"transform_engine","events_processed":676,"events_dropped":0,"avg_latency_ms":5130.472615702606,"throughput_eps":0,"last_update":"2026-03-21T16:57:14.210035885Z"} +2026/03/21 16:57:34 ───────────────────────────────────────────────── +2026/03/21 16:57:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:57:39 [transform_engine] {"stage_name":"transform_engine","events_processed":676,"events_dropped":0,"avg_latency_ms":5130.472615702606,"throughput_eps":0,"last_update":"2026-03-21T16:57:14.210035885Z"} +2026/03/21 16:57:39 [log_collector] {"stage_name":"log_collector","events_processed":32533,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6506.6,"last_update":"2026-03-21T16:57:34.06809176Z"} +2026/03/21 16:57:39 [metric_collector] {"stage_name":"metric_collector","events_processed":20324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4064.8,"last_update":"2026-03-21T16:57:34.068282946Z"} +2026/03/21 16:57:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:57:34.081487049Z"} +2026/03/21 16:57:39 [detection_layer] {"stage_name":"detection_layer","events_processed":674,"events_dropped":0,"avg_latency_ms":16.89594510779296,"throughput_eps":0,"last_update":"2026-03-21T16:57:34.210795957Z"} +2026/03/21 16:57:39 ───────────────────────────────────────────────── +2026/03/21 16:57:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:57:44 [log_collector] {"stage_name":"log_collector","events_processed":32533,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6506.6,"last_update":"2026-03-21T16:57:39.068790395Z"} +2026/03/21 16:57:44 [metric_collector] {"stage_name":"metric_collector","events_processed":20329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4065.8,"last_update":"2026-03-21T16:57:39.069393029Z"} +2026/03/21 16:57:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:57:39.077322398Z"} +2026/03/21 16:57:44 [detection_layer] {"stage_name":"detection_layer","events_processed":674,"events_dropped":0,"avg_latency_ms":16.89594510779296,"throughput_eps":0,"last_update":"2026-03-21T16:57:39.21058018Z"} +2026/03/21 16:57:44 [transform_engine] {"stage_name":"transform_engine","events_processed":676,"events_dropped":0,"avg_latency_ms":5130.472615702606,"throughput_eps":0,"last_update":"2026-03-21T16:57:14.210035885Z"} +2026/03/21 16:57:44 ───────────────────────────────────────────────── +2026/03/21 16:57:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:57:49 [log_collector] {"stage_name":"log_collector","events_processed":32533,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6506.6,"last_update":"2026-03-21T16:57:44.068693824Z"} +2026/03/21 16:57:49 [metric_collector] {"stage_name":"metric_collector","events_processed":20334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4066.8,"last_update":"2026-03-21T16:57:44.068972799Z"} +2026/03/21 16:57:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:57:44.077694004Z"} +2026/03/21 16:57:49 [detection_layer] {"stage_name":"detection_layer","events_processed":674,"events_dropped":0,"avg_latency_ms":16.89594510779296,"throughput_eps":0,"last_update":"2026-03-21T16:57:44.210930546Z"} +2026/03/21 16:57:49 [transform_engine] {"stage_name":"transform_engine","events_processed":677,"events_dropped":0,"avg_latency_ms":9402.331238562085,"throughput_eps":0,"last_update":"2026-03-21T16:57:45.700012475Z"} +2026/03/21 16:57:49 ───────────────────────────────────────────────── +2026/03/21 16:57:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:57:54 [detection_layer] {"stage_name":"detection_layer","events_processed":675,"events_dropped":0,"avg_latency_ms":16.54866388623437,"throughput_eps":0,"last_update":"2026-03-21T16:57:49.210572624Z"} +2026/03/21 16:57:54 [transform_engine] {"stage_name":"transform_engine","events_processed":678,"events_dropped":0,"avg_latency_ms":7540.226962049668,"throughput_eps":0,"last_update":"2026-03-21T16:57:49.302404933Z"} +2026/03/21 16:57:54 [log_collector] {"stage_name":"log_collector","events_processed":32533,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6506.6,"last_update":"2026-03-21T16:57:49.068750416Z"} +2026/03/21 16:57:54 [metric_collector] {"stage_name":"metric_collector","events_processed":20339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4067.8,"last_update":"2026-03-21T16:57:49.068925481Z"} +2026/03/21 16:57:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:57:49.076386364Z"} +2026/03/21 16:57:54 ───────────────────────────────────────────────── +2026/03/21 16:57:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:57:59 [detection_layer] {"stage_name":"detection_layer","events_processed":676,"events_dropped":0,"avg_latency_ms":15.751846708987495,"throughput_eps":0,"last_update":"2026-03-21T16:57:54.210895867Z"} +2026/03/21 16:57:59 [transform_engine] {"stage_name":"transform_engine","events_processed":678,"events_dropped":0,"avg_latency_ms":7540.226962049668,"throughput_eps":0,"last_update":"2026-03-21T16:57:54.209662655Z"} +2026/03/21 16:57:59 [log_collector] {"stage_name":"log_collector","events_processed":32533,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6506.6,"last_update":"2026-03-21T16:57:54.068844441Z"} +2026/03/21 16:57:59 [metric_collector] {"stage_name":"metric_collector","events_processed":20344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4068.8,"last_update":"2026-03-21T16:57:54.069278943Z"} +2026/03/21 16:57:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:57:54.076418129Z"} +2026/03/21 16:57:59 ───────────────────────────────────────────────── +2026/03/21 16:58:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:58:04 [detection_layer] {"stage_name":"detection_layer","events_processed":676,"events_dropped":0,"avg_latency_ms":15.751846708987495,"throughput_eps":0,"last_update":"2026-03-21T16:57:59.210169629Z"} +2026/03/21 16:58:04 [transform_engine] {"stage_name":"transform_engine","events_processed":678,"events_dropped":0,"avg_latency_ms":7540.226962049668,"throughput_eps":0,"last_update":"2026-03-21T16:57:59.210133669Z"} +2026/03/21 16:58:04 [log_collector] {"stage_name":"log_collector","events_processed":32533,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6506.6,"last_update":"2026-03-21T16:57:59.06859771Z"} +2026/03/21 16:58:04 [metric_collector] {"stage_name":"metric_collector","events_processed":20349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4069.8,"last_update":"2026-03-21T16:57:59.068887075Z"} +2026/03/21 16:58:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:57:59.076850689Z"} +2026/03/21 16:58:04 ───────────────────────────────────────────────── +2026/03/21 16:58:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:58:09 [log_collector] {"stage_name":"log_collector","events_processed":32533,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6506.6,"last_update":"2026-03-21T16:58:04.068447957Z"} +2026/03/21 16:58:09 [metric_collector] {"stage_name":"metric_collector","events_processed":20354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4070.8,"last_update":"2026-03-21T16:58:04.068959037Z"} +2026/03/21 16:58:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:58:04.078466017Z"} +2026/03/21 16:58:09 [detection_layer] {"stage_name":"detection_layer","events_processed":676,"events_dropped":0,"avg_latency_ms":15.751846708987495,"throughput_eps":0,"last_update":"2026-03-21T16:58:04.21083626Z"} +2026/03/21 16:58:09 [transform_engine] {"stage_name":"transform_engine","events_processed":678,"events_dropped":0,"avg_latency_ms":7540.226962049668,"throughput_eps":0,"last_update":"2026-03-21T16:58:04.209706274Z"} +2026/03/21 16:58:09 ───────────────────────────────────────────────── +Saved state: 19 clusters, 32534 messages, reason: none +2026/03/21 16:58:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:58:14 [log_collector] {"stage_name":"log_collector","events_processed":32544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6508.8,"last_update":"2026-03-21T16:58:14.068163591Z"} +2026/03/21 16:58:14 [metric_collector] {"stage_name":"metric_collector","events_processed":20359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4071.8,"last_update":"2026-03-21T16:58:09.069340951Z"} +2026/03/21 16:58:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:58:09.077709742Z"} +2026/03/21 16:58:14 [detection_layer] {"stage_name":"detection_layer","events_processed":676,"events_dropped":0,"avg_latency_ms":15.751846708987495,"throughput_eps":0,"last_update":"2026-03-21T16:58:09.210126934Z"} +2026/03/21 16:58:14 [transform_engine] {"stage_name":"transform_engine","events_processed":678,"events_dropped":0,"avg_latency_ms":7540.226962049668,"throughput_eps":0,"last_update":"2026-03-21T16:58:09.210091506Z"} +2026/03/21 16:58:14 ───────────────────────────────────────────────── +2026/03/21 16:58:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:58:19 [log_collector] {"stage_name":"log_collector","events_processed":32547,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6509.4,"last_update":"2026-03-21T16:58:19.068216242Z"} +2026/03/21 16:58:19 [metric_collector] {"stage_name":"metric_collector","events_processed":20364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4072.8,"last_update":"2026-03-21T16:58:14.068549961Z"} +2026/03/21 16:58:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:58:14.075792294Z"} +2026/03/21 16:58:19 [detection_layer] {"stage_name":"detection_layer","events_processed":676,"events_dropped":0,"avg_latency_ms":15.751846708987495,"throughput_eps":0,"last_update":"2026-03-21T16:58:14.210051534Z"} +2026/03/21 16:58:19 [transform_engine] {"stage_name":"transform_engine","events_processed":678,"events_dropped":0,"avg_latency_ms":7540.226962049668,"throughput_eps":0,"last_update":"2026-03-21T16:58:14.210066353Z"} +2026/03/21 16:58:19 ───────────────────────────────────────────────── +2026/03/21 16:58:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:58:24 [transform_engine] {"stage_name":"transform_engine","events_processed":679,"events_dropped":0,"avg_latency_ms":6055.784409839735,"throughput_eps":0,"last_update":"2026-03-21T16:58:19.327829714Z"} +2026/03/21 16:58:24 [log_collector] {"stage_name":"log_collector","events_processed":32547,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6509.4,"last_update":"2026-03-21T16:58:19.068216242Z"} +2026/03/21 16:58:24 [metric_collector] {"stage_name":"metric_collector","events_processed":20369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4073.8,"last_update":"2026-03-21T16:58:19.068647548Z"} +2026/03/21 16:58:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:58:19.076605623Z"} +2026/03/21 16:58:24 [detection_layer] {"stage_name":"detection_layer","events_processed":676,"events_dropped":0,"avg_latency_ms":15.751846708987495,"throughput_eps":0,"last_update":"2026-03-21T16:58:19.209904143Z"} +2026/03/21 16:58:24 ───────────────────────────────────────────────── +2026/03/21 16:58:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:58:29 [log_collector] {"stage_name":"log_collector","events_processed":32547,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6509.4,"last_update":"2026-03-21T16:58:24.0681193Z"} +2026/03/21 16:58:29 [metric_collector] {"stage_name":"metric_collector","events_processed":20374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4074.8,"last_update":"2026-03-21T16:58:24.068747713Z"} +2026/03/21 16:58:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:58:24.077680143Z"} +2026/03/21 16:58:29 [detection_layer] {"stage_name":"detection_layer","events_processed":677,"events_dropped":0,"avg_latency_ms":16.73121616719,"throughput_eps":0,"last_update":"2026-03-21T16:58:24.210010679Z"} +2026/03/21 16:58:29 [transform_engine] {"stage_name":"transform_engine","events_processed":679,"events_dropped":0,"avg_latency_ms":6055.784409839735,"throughput_eps":0,"last_update":"2026-03-21T16:58:24.209911479Z"} +2026/03/21 16:58:29 ───────────────────────────────────────────────── +2026/03/21 16:58:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:58:34 [detection_layer] {"stage_name":"detection_layer","events_processed":677,"events_dropped":0,"avg_latency_ms":16.73121616719,"throughput_eps":0,"last_update":"2026-03-21T16:58:29.210279426Z"} +2026/03/21 16:58:34 [transform_engine] {"stage_name":"transform_engine","events_processed":679,"events_dropped":0,"avg_latency_ms":6055.784409839735,"throughput_eps":0,"last_update":"2026-03-21T16:58:29.210427309Z"} +2026/03/21 16:58:34 [log_collector] {"stage_name":"log_collector","events_processed":32547,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6509.4,"last_update":"2026-03-21T16:58:29.068699262Z"} +2026/03/21 16:58:34 [metric_collector] {"stage_name":"metric_collector","events_processed":20379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4075.8,"last_update":"2026-03-21T16:58:29.069000218Z"} +2026/03/21 16:58:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:58:29.078785272Z"} +2026/03/21 16:58:34 ───────────────────────────────────────────────── +2026/03/21 16:58:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:58:39 [log_collector] {"stage_name":"log_collector","events_processed":32547,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6509.4,"last_update":"2026-03-21T16:58:34.068733188Z"} +2026/03/21 16:58:39 [metric_collector] {"stage_name":"metric_collector","events_processed":20384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4076.8,"last_update":"2026-03-21T16:58:34.069565752Z"} +2026/03/21 16:58:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:58:34.077887473Z"} +2026/03/21 16:58:39 [detection_layer] {"stage_name":"detection_layer","events_processed":677,"events_dropped":0,"avg_latency_ms":16.73121616719,"throughput_eps":0,"last_update":"2026-03-21T16:58:34.210127286Z"} +2026/03/21 16:58:39 [transform_engine] {"stage_name":"transform_engine","events_processed":679,"events_dropped":0,"avg_latency_ms":6055.784409839735,"throughput_eps":0,"last_update":"2026-03-21T16:58:34.210236645Z"} +2026/03/21 16:58:39 ───────────────────────────────────────────────── +2026/03/21 16:58:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:58:44 [detection_layer] {"stage_name":"detection_layer","events_processed":677,"events_dropped":0,"avg_latency_ms":16.73121616719,"throughput_eps":0,"last_update":"2026-03-21T16:58:39.210174707Z"} +2026/03/21 16:58:44 [transform_engine] {"stage_name":"transform_engine","events_processed":679,"events_dropped":0,"avg_latency_ms":6055.784409839735,"throughput_eps":0,"last_update":"2026-03-21T16:58:39.210215064Z"} +2026/03/21 16:58:44 [log_collector] {"stage_name":"log_collector","events_processed":32547,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6509.4,"last_update":"2026-03-21T16:58:39.068398598Z"} +2026/03/21 16:58:44 [metric_collector] {"stage_name":"metric_collector","events_processed":20389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4077.8,"last_update":"2026-03-21T16:58:39.069025809Z"} +2026/03/21 16:58:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:58:39.077912903Z"} +2026/03/21 16:58:44 ───────────────────────────────────────────────── +2026/03/21 16:58:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:58:49 [metric_collector] {"stage_name":"metric_collector","events_processed":20394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4078.8,"last_update":"2026-03-21T16:58:44.069382995Z"} +2026/03/21 16:58:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:58:44.077973782Z"} +2026/03/21 16:58:49 [detection_layer] {"stage_name":"detection_layer","events_processed":677,"events_dropped":0,"avg_latency_ms":16.73121616719,"throughput_eps":0,"last_update":"2026-03-21T16:58:44.210213153Z"} +2026/03/21 16:58:49 [transform_engine] {"stage_name":"transform_engine","events_processed":679,"events_dropped":0,"avg_latency_ms":6055.784409839735,"throughput_eps":0,"last_update":"2026-03-21T16:58:44.210333583Z"} +2026/03/21 16:58:49 [log_collector] {"stage_name":"log_collector","events_processed":32547,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6509.4,"last_update":"2026-03-21T16:58:44.068949325Z"} +2026/03/21 16:58:49 ───────────────────────────────────────────────── +2026/03/21 16:58:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:58:54 [detection_layer] {"stage_name":"detection_layer","events_processed":677,"events_dropped":0,"avg_latency_ms":16.73121616719,"throughput_eps":0,"last_update":"2026-03-21T16:58:49.210558945Z"} +2026/03/21 16:58:54 [transform_engine] {"stage_name":"transform_engine","events_processed":680,"events_dropped":0,"avg_latency_ms":5290.970557471788,"throughput_eps":0,"last_update":"2026-03-21T16:58:51.442301023Z"} +2026/03/21 16:58:54 [log_collector] {"stage_name":"log_collector","events_processed":32547,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6509.4,"last_update":"2026-03-21T16:58:54.068274342Z"} +2026/03/21 16:58:54 [metric_collector] {"stage_name":"metric_collector","events_processed":20399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4079.8,"last_update":"2026-03-21T16:58:49.069047792Z"} +2026/03/21 16:58:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:58:49.079242231Z"} +2026/03/21 16:58:54 ───────────────────────────────────────────────── +2026/03/21 16:58:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:58:59 [log_collector] {"stage_name":"log_collector","events_processed":32547,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6509.4,"last_update":"2026-03-21T16:58:54.068274342Z"} +2026/03/21 16:58:59 [metric_collector] {"stage_name":"metric_collector","events_processed":20404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4080.8,"last_update":"2026-03-21T16:58:54.068749542Z"} +2026/03/21 16:58:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:58:54.078690064Z"} +2026/03/21 16:58:59 [detection_layer] {"stage_name":"detection_layer","events_processed":678,"events_dropped":0,"avg_latency_ms":17.676623733752,"throughput_eps":0,"last_update":"2026-03-21T16:58:54.210104605Z"} +2026/03/21 16:58:59 [transform_engine] {"stage_name":"transform_engine","events_processed":680,"events_dropped":0,"avg_latency_ms":5290.970557471788,"throughput_eps":0,"last_update":"2026-03-21T16:58:54.210073825Z"} +2026/03/21 16:58:59 ───────────────────────────────────────────────── +2026/03/21 16:59:04 ── Pipeline Health ────────────────────────────── +2026/03/21 16:59:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:58:59.075954072Z"} +2026/03/21 16:59:04 [detection_layer] {"stage_name":"detection_layer","events_processed":678,"events_dropped":0,"avg_latency_ms":17.676623733752,"throughput_eps":0,"last_update":"2026-03-21T16:58:59.210572862Z"} +2026/03/21 16:59:04 [transform_engine] {"stage_name":"transform_engine","events_processed":680,"events_dropped":0,"avg_latency_ms":5290.970557471788,"throughput_eps":0,"last_update":"2026-03-21T16:58:59.210547423Z"} +2026/03/21 16:59:04 [log_collector] {"stage_name":"log_collector","events_processed":32547,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6509.4,"last_update":"2026-03-21T16:58:59.06856586Z"} +2026/03/21 16:59:04 [metric_collector] {"stage_name":"metric_collector","events_processed":20409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4081.8,"last_update":"2026-03-21T16:58:59.068844103Z"} +2026/03/21 16:59:04 ───────────────────────────────────────────────── +2026/03/21 16:59:09 ── Pipeline Health ────────────────────────────── +2026/03/21 16:59:09 [log_collector] {"stage_name":"log_collector","events_processed":32547,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6509.4,"last_update":"2026-03-21T16:59:04.06841874Z"} +2026/03/21 16:59:09 [metric_collector] {"stage_name":"metric_collector","events_processed":20414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4082.8,"last_update":"2026-03-21T16:59:04.068479185Z"} +2026/03/21 16:59:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:59:04.075854063Z"} +2026/03/21 16:59:09 [detection_layer] {"stage_name":"detection_layer","events_processed":678,"events_dropped":0,"avg_latency_ms":17.676623733752,"throughput_eps":0,"last_update":"2026-03-21T16:59:04.210199999Z"} +2026/03/21 16:59:09 [transform_engine] {"stage_name":"transform_engine","events_processed":680,"events_dropped":0,"avg_latency_ms":5290.970557471788,"throughput_eps":0,"last_update":"2026-03-21T16:59:04.210238814Z"} +2026/03/21 16:59:09 ───────────────────────────────────────────────── +2026/03/21 16:59:14 ── Pipeline Health ────────────────────────────── +2026/03/21 16:59:14 [transform_engine] {"stage_name":"transform_engine","events_processed":680,"events_dropped":0,"avg_latency_ms":5290.970557471788,"throughput_eps":0,"last_update":"2026-03-21T16:59:09.210413686Z"} +2026/03/21 16:59:14 [log_collector] {"stage_name":"log_collector","events_processed":32547,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6509.4,"last_update":"2026-03-21T16:59:09.068791952Z"} +2026/03/21 16:59:14 [metric_collector] {"stage_name":"metric_collector","events_processed":20419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4083.8,"last_update":"2026-03-21T16:59:09.069347457Z"} +2026/03/21 16:59:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8170,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:59:09.07912157Z"} +2026/03/21 16:59:14 [detection_layer] {"stage_name":"detection_layer","events_processed":678,"events_dropped":0,"avg_latency_ms":17.676623733752,"throughput_eps":0,"last_update":"2026-03-21T16:59:09.210451578Z"} +2026/03/21 16:59:14 ───────────────────────────────────────────────── +2026/03/21 16:59:19 ── Pipeline Health ────────────────────────────── +2026/03/21 16:59:19 [log_collector] {"stage_name":"log_collector","events_processed":32547,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6509.4,"last_update":"2026-03-21T16:59:14.068190859Z"} +2026/03/21 16:59:19 [metric_collector] {"stage_name":"metric_collector","events_processed":20423,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4084.6,"last_update":"2026-03-21T16:59:14.068173888Z"} +2026/03/21 16:59:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:59:14.075239722Z"} +2026/03/21 16:59:19 [detection_layer] {"stage_name":"detection_layer","events_processed":678,"events_dropped":0,"avg_latency_ms":17.676623733752,"throughput_eps":0,"last_update":"2026-03-21T16:59:14.210569894Z"} +2026/03/21 16:59:19 [transform_engine] {"stage_name":"transform_engine","events_processed":680,"events_dropped":0,"avg_latency_ms":5290.970557471788,"throughput_eps":0,"last_update":"2026-03-21T16:59:14.210512293Z"} +2026/03/21 16:59:19 ───────────────────────────────────────────────── +2026/03/21 16:59:24 ── Pipeline Health ────────────────────────────── +2026/03/21 16:59:24 [log_collector] {"stage_name":"log_collector","events_processed":32547,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6509.4,"last_update":"2026-03-21T16:59:24.06826657Z"} +2026/03/21 16:59:24 [metric_collector] {"stage_name":"metric_collector","events_processed":20429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4085.8,"last_update":"2026-03-21T16:59:19.069484045Z"} +2026/03/21 16:59:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:59:19.078084179Z"} +2026/03/21 16:59:24 [detection_layer] {"stage_name":"detection_layer","events_processed":678,"events_dropped":0,"avg_latency_ms":17.676623733752,"throughput_eps":0,"last_update":"2026-03-21T16:59:19.210320785Z"} +2026/03/21 16:59:24 [transform_engine] {"stage_name":"transform_engine","events_processed":680,"events_dropped":0,"avg_latency_ms":5290.970557471788,"throughput_eps":0,"last_update":"2026-03-21T16:59:14.210512293Z"} +2026/03/21 16:59:24 ───────────────────────────────────────────────── +Saved state: 19 clusters, 32548 messages, reason: none +2026/03/21 16:59:29 ── Pipeline Health ────────────────────────────── +2026/03/21 16:59:29 [metric_collector] {"stage_name":"metric_collector","events_processed":20434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4086.8,"last_update":"2026-03-21T16:59:24.06861616Z"} +2026/03/21 16:59:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:59:24.077886017Z"} +2026/03/21 16:59:29 [detection_layer] {"stage_name":"detection_layer","events_processed":678,"events_dropped":0,"avg_latency_ms":17.676623733752,"throughput_eps":0,"last_update":"2026-03-21T16:59:24.21008979Z"} +2026/03/21 16:59:29 [transform_engine] {"stage_name":"transform_engine","events_processed":681,"events_dropped":0,"avg_latency_ms":5257.21970197743,"throughput_eps":0,"last_update":"2026-03-21T16:59:24.332630884Z"} +2026/03/21 16:59:29 [log_collector] {"stage_name":"log_collector","events_processed":32547,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6509.4,"last_update":"2026-03-21T16:59:24.06826657Z"} +2026/03/21 16:59:29 ───────────────────────────────────────────────── +2026/03/21 16:59:34 ── Pipeline Health ────────────────────────────── +2026/03/21 16:59:34 [log_collector] {"stage_name":"log_collector","events_processed":32552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6510.4,"last_update":"2026-03-21T16:59:34.068443595Z"} +2026/03/21 16:59:34 [metric_collector] {"stage_name":"metric_collector","events_processed":20444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4088.8,"last_update":"2026-03-21T16:59:34.068629993Z"} +2026/03/21 16:59:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:59:29.08206443Z"} +2026/03/21 16:59:34 [detection_layer] {"stage_name":"detection_layer","events_processed":679,"events_dropped":0,"avg_latency_ms":17.323067787001598,"throughput_eps":0,"last_update":"2026-03-21T16:59:29.210249815Z"} +2026/03/21 16:59:34 [transform_engine] {"stage_name":"transform_engine","events_processed":681,"events_dropped":0,"avg_latency_ms":5257.21970197743,"throughput_eps":0,"last_update":"2026-03-21T16:59:29.210215008Z"} +2026/03/21 16:59:34 ───────────────────────────────────────────────── +2026/03/21 16:59:39 ── Pipeline Health ────────────────────────────── +2026/03/21 16:59:39 [log_collector] {"stage_name":"log_collector","events_processed":32552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6510.4,"last_update":"2026-03-21T16:59:39.068504018Z"} +2026/03/21 16:59:39 [metric_collector] {"stage_name":"metric_collector","events_processed":20444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4088.8,"last_update":"2026-03-21T16:59:34.068629993Z"} +2026/03/21 16:59:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:59:34.084642615Z"} +2026/03/21 16:59:39 [detection_layer] {"stage_name":"detection_layer","events_processed":679,"events_dropped":0,"avg_latency_ms":17.323067787001598,"throughput_eps":0,"last_update":"2026-03-21T16:59:34.211105711Z"} +2026/03/21 16:59:39 [transform_engine] {"stage_name":"transform_engine","events_processed":681,"events_dropped":0,"avg_latency_ms":5257.21970197743,"throughput_eps":0,"last_update":"2026-03-21T16:59:34.211089471Z"} +2026/03/21 16:59:39 ───────────────────────────────────────────────── +2026/03/21 16:59:44 ── Pipeline Health ────────────────────────────── +2026/03/21 16:59:44 [log_collector] {"stage_name":"log_collector","events_processed":32552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6510.4,"last_update":"2026-03-21T16:59:39.068504018Z"} +2026/03/21 16:59:44 [metric_collector] {"stage_name":"metric_collector","events_processed":20449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4089.8,"last_update":"2026-03-21T16:59:39.068826606Z"} +2026/03/21 16:59:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:59:39.077236486Z"} +2026/03/21 16:59:44 [detection_layer] {"stage_name":"detection_layer","events_processed":679,"events_dropped":0,"avg_latency_ms":17.323067787001598,"throughput_eps":0,"last_update":"2026-03-21T16:59:39.210368737Z"} +2026/03/21 16:59:44 [transform_engine] {"stage_name":"transform_engine","events_processed":681,"events_dropped":0,"avg_latency_ms":5257.21970197743,"throughput_eps":0,"last_update":"2026-03-21T16:59:39.210372184Z"} +2026/03/21 16:59:44 ───────────────────────────────────────────────── +2026/03/21 16:59:49 ── Pipeline Health ────────────────────────────── +2026/03/21 16:59:49 [metric_collector] {"stage_name":"metric_collector","events_processed":20454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4090.8,"last_update":"2026-03-21T16:59:44.069390683Z"} +2026/03/21 16:59:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:59:44.07970995Z"} +2026/03/21 16:59:49 [detection_layer] {"stage_name":"detection_layer","events_processed":679,"events_dropped":0,"avg_latency_ms":17.323067787001598,"throughput_eps":0,"last_update":"2026-03-21T16:59:44.212389113Z"} +2026/03/21 16:59:49 [transform_engine] {"stage_name":"transform_engine","events_processed":681,"events_dropped":0,"avg_latency_ms":5257.21970197743,"throughput_eps":0,"last_update":"2026-03-21T16:59:44.212371109Z"} +2026/03/21 16:59:49 [log_collector] {"stage_name":"log_collector","events_processed":32552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6510.4,"last_update":"2026-03-21T16:59:44.069305049Z"} +2026/03/21 16:59:49 ───────────────────────────────────────────────── +2026/03/21 16:59:54 ── Pipeline Health ────────────────────────────── +2026/03/21 16:59:54 [log_collector] {"stage_name":"log_collector","events_processed":32552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6510.4,"last_update":"2026-03-21T16:59:49.069186779Z"} +2026/03/21 16:59:54 [metric_collector] {"stage_name":"metric_collector","events_processed":20459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4091.8,"last_update":"2026-03-21T16:59:49.06917671Z"} +2026/03/21 16:59:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:59:49.080081188Z"} +2026/03/21 16:59:54 [detection_layer] {"stage_name":"detection_layer","events_processed":679,"events_dropped":0,"avg_latency_ms":17.323067787001598,"throughput_eps":0,"last_update":"2026-03-21T16:59:49.211603215Z"} +2026/03/21 16:59:54 [transform_engine] {"stage_name":"transform_engine","events_processed":682,"events_dropped":0,"avg_latency_ms":4269.323433981945,"throughput_eps":0,"last_update":"2026-03-21T16:59:49.52806413Z"} +2026/03/21 16:59:54 ───────────────────────────────────────────────── +2026/03/21 16:59:59 ── Pipeline Health ────────────────────────────── +2026/03/21 16:59:59 [transform_engine] {"stage_name":"transform_engine","events_processed":682,"events_dropped":0,"avg_latency_ms":4269.323433981945,"throughput_eps":0,"last_update":"2026-03-21T16:59:54.209649408Z"} +2026/03/21 16:59:59 [log_collector] {"stage_name":"log_collector","events_processed":32552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6510.4,"last_update":"2026-03-21T16:59:54.06912686Z"} +2026/03/21 16:59:59 [metric_collector] {"stage_name":"metric_collector","events_processed":20464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4092.8,"last_update":"2026-03-21T16:59:54.069111581Z"} +2026/03/21 16:59:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:59:54.077511672Z"} +2026/03/21 16:59:59 [detection_layer] {"stage_name":"detection_layer","events_processed":680,"events_dropped":0,"avg_latency_ms":16.38586942960128,"throughput_eps":0,"last_update":"2026-03-21T16:59:54.210761788Z"} +2026/03/21 16:59:59 ───────────────────────────────────────────────── +2026/03/21 17:00:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:00:04 [log_collector] {"stage_name":"log_collector","events_processed":32552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6510.4,"last_update":"2026-03-21T16:59:59.06867487Z"} +2026/03/21 17:00:04 [metric_collector] {"stage_name":"metric_collector","events_processed":20469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4093.8,"last_update":"2026-03-21T16:59:59.068955168Z"} +2026/03/21 17:00:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T16:59:59.081752271Z"} +2026/03/21 17:00:04 [detection_layer] {"stage_name":"detection_layer","events_processed":680,"events_dropped":0,"avg_latency_ms":16.38586942960128,"throughput_eps":0,"last_update":"2026-03-21T16:59:59.209940902Z"} +2026/03/21 17:00:04 [transform_engine] {"stage_name":"transform_engine","events_processed":682,"events_dropped":0,"avg_latency_ms":4269.323433981945,"throughput_eps":0,"last_update":"2026-03-21T16:59:59.209972704Z"} +2026/03/21 17:00:04 ───────────────────────────────────────────────── +2026/03/21 17:00:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:00:09 [detection_layer] {"stage_name":"detection_layer","events_processed":680,"events_dropped":0,"avg_latency_ms":16.38586942960128,"throughput_eps":0,"last_update":"2026-03-21T17:00:04.210657339Z"} +2026/03/21 17:00:09 [transform_engine] {"stage_name":"transform_engine","events_processed":682,"events_dropped":0,"avg_latency_ms":4269.323433981945,"throughput_eps":0,"last_update":"2026-03-21T17:00:04.210752442Z"} +2026/03/21 17:00:09 [log_collector] {"stage_name":"log_collector","events_processed":32552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6510.4,"last_update":"2026-03-21T17:00:04.068749859Z"} +2026/03/21 17:00:09 [metric_collector] {"stage_name":"metric_collector","events_processed":20474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4094.8,"last_update":"2026-03-21T17:00:04.069041257Z"} +2026/03/21 17:00:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:00:04.085428127Z"} +2026/03/21 17:00:09 ───────────────────────────────────────────────── +2026/03/21 17:00:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:00:14 [metric_collector] {"stage_name":"metric_collector","events_processed":20479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4095.8,"last_update":"2026-03-21T17:00:09.068813515Z"} +2026/03/21 17:00:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:00:09.076959409Z"} +2026/03/21 17:00:14 [detection_layer] {"stage_name":"detection_layer","events_processed":680,"events_dropped":0,"avg_latency_ms":16.38586942960128,"throughput_eps":0,"last_update":"2026-03-21T17:00:09.210318886Z"} +2026/03/21 17:00:14 [transform_engine] {"stage_name":"transform_engine","events_processed":682,"events_dropped":0,"avg_latency_ms":4269.323433981945,"throughput_eps":0,"last_update":"2026-03-21T17:00:09.210269091Z"} +2026/03/21 17:00:14 [log_collector] {"stage_name":"log_collector","events_processed":32555,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6511,"last_update":"2026-03-21T17:00:09.068616899Z"} +2026/03/21 17:00:14 ───────────────────────────────────────────────── +2026/03/21 17:00:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:00:19 [log_collector] {"stage_name":"log_collector","events_processed":32563,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6512.6,"last_update":"2026-03-21T17:00:14.068788422Z"} +2026/03/21 17:00:19 [metric_collector] {"stage_name":"metric_collector","events_processed":20484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4096.8,"last_update":"2026-03-21T17:00:14.06908009Z"} +2026/03/21 17:00:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:00:14.078831921Z"} +2026/03/21 17:00:19 [detection_layer] {"stage_name":"detection_layer","events_processed":680,"events_dropped":0,"avg_latency_ms":16.38586942960128,"throughput_eps":0,"last_update":"2026-03-21T17:00:14.210122935Z"} +2026/03/21 17:00:19 [transform_engine] {"stage_name":"transform_engine","events_processed":682,"events_dropped":0,"avg_latency_ms":4269.323433981945,"throughput_eps":0,"last_update":"2026-03-21T17:00:14.210096795Z"} +2026/03/21 17:00:19 ───────────────────────────────────────────────── +2026/03/21 17:00:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:00:24 [log_collector] {"stage_name":"log_collector","events_processed":32563,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6512.6,"last_update":"2026-03-21T17:00:19.06885807Z"} +2026/03/21 17:00:24 [metric_collector] {"stage_name":"metric_collector","events_processed":20489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4097.8,"last_update":"2026-03-21T17:00:19.069120864Z"} +2026/03/21 17:00:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:00:19.076522791Z"} +2026/03/21 17:00:24 [detection_layer] {"stage_name":"detection_layer","events_processed":680,"events_dropped":0,"avg_latency_ms":16.38586942960128,"throughput_eps":0,"last_update":"2026-03-21T17:00:19.210870642Z"} +2026/03/21 17:00:24 [transform_engine] {"stage_name":"transform_engine","events_processed":682,"events_dropped":0,"avg_latency_ms":4269.323433981945,"throughput_eps":0,"last_update":"2026-03-21T17:00:14.210096795Z"} +2026/03/21 17:00:24 ───────────────────────────────────────────────── +2026/03/21 17:00:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:00:29 [transform_engine] {"stage_name":"transform_engine","events_processed":682,"events_dropped":0,"avg_latency_ms":4269.323433981945,"throughput_eps":0,"last_update":"2026-03-21T17:00:14.210096795Z"} +2026/03/21 17:00:29 [log_collector] {"stage_name":"log_collector","events_processed":32563,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6512.6,"last_update":"2026-03-21T17:00:24.06817826Z"} +2026/03/21 17:00:29 [metric_collector] {"stage_name":"metric_collector","events_processed":20494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4098.8,"last_update":"2026-03-21T17:00:24.06861152Z"} +2026/03/21 17:00:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:00:24.076819073Z"} +2026/03/21 17:00:29 [detection_layer] {"stage_name":"detection_layer","events_processed":680,"events_dropped":0,"avg_latency_ms":16.38586942960128,"throughput_eps":0,"last_update":"2026-03-21T17:00:24.209956363Z"} +2026/03/21 17:00:29 ───────────────────────────────────────────────── +2026/03/21 17:00:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:00:34 [log_collector] {"stage_name":"log_collector","events_processed":32563,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6512.6,"last_update":"2026-03-21T17:00:29.06860889Z"} +2026/03/21 17:00:34 [metric_collector] {"stage_name":"metric_collector","events_processed":20499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4099.8,"last_update":"2026-03-21T17:00:29.0689222Z"} +2026/03/21 17:00:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:00:29.07702985Z"} +2026/03/21 17:00:34 [detection_layer] {"stage_name":"detection_layer","events_processed":680,"events_dropped":0,"avg_latency_ms":16.38586942960128,"throughput_eps":0,"last_update":"2026-03-21T17:00:29.210277263Z"} +2026/03/21 17:00:34 [transform_engine] {"stage_name":"transform_engine","events_processed":682,"events_dropped":0,"avg_latency_ms":4269.323433981945,"throughput_eps":0,"last_update":"2026-03-21T17:00:14.210096795Z"} +2026/03/21 17:00:34 ───────────────────────────────────────────────── +2026/03/21 17:00:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:00:39 [log_collector] {"stage_name":"log_collector","events_processed":32563,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6512.6,"last_update":"2026-03-21T17:00:34.068814728Z"} +2026/03/21 17:00:39 [metric_collector] {"stage_name":"metric_collector","events_processed":20504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4100.8,"last_update":"2026-03-21T17:00:34.069175228Z"} +2026/03/21 17:00:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:00:34.078057212Z"} +2026/03/21 17:00:39 [detection_layer] {"stage_name":"detection_layer","events_processed":680,"events_dropped":0,"avg_latency_ms":16.38586942960128,"throughput_eps":0,"last_update":"2026-03-21T17:00:34.210407474Z"} +2026/03/21 17:00:39 [transform_engine] {"stage_name":"transform_engine","events_processed":682,"events_dropped":0,"avg_latency_ms":4269.323433981945,"throughput_eps":0,"last_update":"2026-03-21T17:00:14.210096795Z"} +2026/03/21 17:00:39 ───────────────────────────────────────────────── +2026/03/21 17:00:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:00:44 [metric_collector] {"stage_name":"metric_collector","events_processed":20509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4101.8,"last_update":"2026-03-21T17:00:39.068950332Z"} +2026/03/21 17:00:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8206,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:00:39.077694741Z"} +2026/03/21 17:00:44 [detection_layer] {"stage_name":"detection_layer","events_processed":680,"events_dropped":0,"avg_latency_ms":16.38586942960128,"throughput_eps":0,"last_update":"2026-03-21T17:00:39.21160327Z"} +2026/03/21 17:00:44 [transform_engine] {"stage_name":"transform_engine","events_processed":682,"events_dropped":0,"avg_latency_ms":4269.323433981945,"throughput_eps":0,"last_update":"2026-03-21T17:00:14.210096795Z"} +2026/03/21 17:00:44 [log_collector] {"stage_name":"log_collector","events_processed":32563,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6512.6,"last_update":"2026-03-21T17:00:39.068719048Z"} +2026/03/21 17:00:44 ───────────────────────────────────────────────── +2026/03/21 17:00:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:00:49 [metric_collector] {"stage_name":"metric_collector","events_processed":20514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102.8,"last_update":"2026-03-21T17:00:44.06904256Z"} +2026/03/21 17:00:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:00:44.078677527Z"} +2026/03/21 17:00:49 [detection_layer] {"stage_name":"detection_layer","events_processed":680,"events_dropped":0,"avg_latency_ms":16.38586942960128,"throughput_eps":0,"last_update":"2026-03-21T17:00:44.2098638Z"} +2026/03/21 17:00:49 [transform_engine] {"stage_name":"transform_engine","events_processed":682,"events_dropped":0,"avg_latency_ms":4269.323433981945,"throughput_eps":0,"last_update":"2026-03-21T17:00:14.210096795Z"} +2026/03/21 17:00:49 [log_collector] {"stage_name":"log_collector","events_processed":32563,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6512.6,"last_update":"2026-03-21T17:00:44.068527563Z"} +2026/03/21 17:00:49 ───────────────────────────────────────────────── +Saved state: 19 clusters, 32564 messages, reason: none +2026/03/21 17:00:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:00:54 [log_collector] {"stage_name":"log_collector","events_processed":32563,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6512.6,"last_update":"2026-03-21T17:00:49.068908875Z"} +2026/03/21 17:00:54 [metric_collector] {"stage_name":"metric_collector","events_processed":20519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4103.8,"last_update":"2026-03-21T17:00:49.069187459Z"} +2026/03/21 17:00:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8210,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:00:49.076239528Z"} +2026/03/21 17:00:54 [detection_layer] {"stage_name":"detection_layer","events_processed":680,"events_dropped":0,"avg_latency_ms":16.38586942960128,"throughput_eps":0,"last_update":"2026-03-21T17:00:49.210504448Z"} +2026/03/21 17:00:54 [transform_engine] {"stage_name":"transform_engine","events_processed":684,"events_dropped":0,"avg_latency_ms":8281.649333788446,"throughput_eps":0,"last_update":"2026-03-21T17:00:53.892717344Z"} +2026/03/21 17:00:54 ───────────────────────────────────────────────── +2026/03/21 17:00:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:00:59 [transform_engine] {"stage_name":"transform_engine","events_processed":684,"events_dropped":0,"avg_latency_ms":8281.649333788446,"throughput_eps":0,"last_update":"2026-03-21T17:00:54.210674856Z"} +2026/03/21 17:00:59 [log_collector] {"stage_name":"log_collector","events_processed":32573,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6514.6,"last_update":"2026-03-21T17:00:54.068833111Z"} +2026/03/21 17:00:59 [metric_collector] {"stage_name":"metric_collector","events_processed":20524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4104.8,"last_update":"2026-03-21T17:00:54.069129428Z"} +2026/03/21 17:00:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:00:54.075383268Z"} +2026/03/21 17:00:59 [detection_layer] {"stage_name":"detection_layer","events_processed":681,"events_dropped":0,"avg_latency_ms":17.011753943681022,"throughput_eps":0,"last_update":"2026-03-21T17:00:54.210662902Z"} +2026/03/21 17:00:59 ───────────────────────────────────────────────── +2026/03/21 17:01:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:01:04 [detection_layer] {"stage_name":"detection_layer","events_processed":681,"events_dropped":0,"avg_latency_ms":17.011753943681022,"throughput_eps":0,"last_update":"2026-03-21T17:00:59.210191852Z"} +2026/03/21 17:01:04 [transform_engine] {"stage_name":"transform_engine","events_processed":684,"events_dropped":0,"avg_latency_ms":8281.649333788446,"throughput_eps":0,"last_update":"2026-03-21T17:00:59.210173237Z"} +2026/03/21 17:01:04 [log_collector] {"stage_name":"log_collector","events_processed":32912,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6582.4,"last_update":"2026-03-21T17:00:59.068190872Z"} +2026/03/21 17:01:04 [metric_collector] {"stage_name":"metric_collector","events_processed":20529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4105.8,"last_update":"2026-03-21T17:00:59.068605056Z"} +2026/03/21 17:01:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:00:59.076343379Z"} +2026/03/21 17:01:04 ───────────────────────────────────────────────── +2026/03/21 17:01:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:01:09 [metric_collector] {"stage_name":"metric_collector","events_processed":20534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4106.8,"last_update":"2026-03-21T17:01:04.068964417Z"} +2026/03/21 17:01:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:01:04.07802364Z"} +2026/03/21 17:01:09 [detection_layer] {"stage_name":"detection_layer","events_processed":681,"events_dropped":0,"avg_latency_ms":17.011753943681022,"throughput_eps":0,"last_update":"2026-03-21T17:01:04.210415292Z"} +2026/03/21 17:01:09 [transform_engine] {"stage_name":"transform_engine","events_processed":684,"events_dropped":0,"avg_latency_ms":8281.649333788446,"throughput_eps":0,"last_update":"2026-03-21T17:01:04.210517628Z"} +2026/03/21 17:01:09 [log_collector] {"stage_name":"log_collector","events_processed":33090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6618,"last_update":"2026-03-21T17:01:04.06863789Z"} +2026/03/21 17:01:09 ───────────────────────────────────────────────── +2026/03/21 17:01:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:01:14 [log_collector] {"stage_name":"log_collector","events_processed":33090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6618,"last_update":"2026-03-21T17:01:09.068085475Z"} +2026/03/21 17:01:14 [metric_collector] {"stage_name":"metric_collector","events_processed":20539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4107.8,"last_update":"2026-03-21T17:01:09.068635448Z"} +2026/03/21 17:01:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:01:09.076942901Z"} +2026/03/21 17:01:14 [detection_layer] {"stage_name":"detection_layer","events_processed":681,"events_dropped":0,"avg_latency_ms":17.011753943681022,"throughput_eps":0,"last_update":"2026-03-21T17:01:09.21030907Z"} +2026/03/21 17:01:14 [transform_engine] {"stage_name":"transform_engine","events_processed":684,"events_dropped":0,"avg_latency_ms":8281.649333788446,"throughput_eps":0,"last_update":"2026-03-21T17:01:09.210335962Z"} +2026/03/21 17:01:14 ───────────────────────────────────────────────── +2026/03/21 17:01:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:01:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:01:14.079080498Z"} +2026/03/21 17:01:19 [detection_layer] {"stage_name":"detection_layer","events_processed":681,"events_dropped":0,"avg_latency_ms":17.011753943681022,"throughput_eps":0,"last_update":"2026-03-21T17:01:14.210427258Z"} +2026/03/21 17:01:19 [transform_engine] {"stage_name":"transform_engine","events_processed":684,"events_dropped":0,"avg_latency_ms":8281.649333788446,"throughput_eps":0,"last_update":"2026-03-21T17:01:14.21044342Z"} +2026/03/21 17:01:19 [log_collector] {"stage_name":"log_collector","events_processed":33090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6618,"last_update":"2026-03-21T17:01:14.06896971Z"} +2026/03/21 17:01:19 [metric_collector] {"stage_name":"metric_collector","events_processed":20544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4108.8,"last_update":"2026-03-21T17:01:14.069274304Z"} +2026/03/21 17:01:19 ───────────────────────────────────────────────── +2026/03/21 17:01:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:01:24 [log_collector] {"stage_name":"log_collector","events_processed":33093,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6618.6,"last_update":"2026-03-21T17:01:19.068618508Z"} +2026/03/21 17:01:24 [metric_collector] {"stage_name":"metric_collector","events_processed":20549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.8,"last_update":"2026-03-21T17:01:19.069163933Z"} +2026/03/21 17:01:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8222,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:01:19.079828822Z"} +2026/03/21 17:01:24 [detection_layer] {"stage_name":"detection_layer","events_processed":681,"events_dropped":0,"avg_latency_ms":17.011753943681022,"throughput_eps":0,"last_update":"2026-03-21T17:01:19.210026041Z"} +2026/03/21 17:01:24 [transform_engine] {"stage_name":"transform_engine","events_processed":684,"events_dropped":0,"avg_latency_ms":8281.649333788446,"throughput_eps":0,"last_update":"2026-03-21T17:01:19.210035489Z"} +2026/03/21 17:01:24 ───────────────────────────────────────────────── +2026/03/21 17:01:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:01:29 [log_collector] {"stage_name":"log_collector","events_processed":33093,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6618.6,"last_update":"2026-03-21T17:01:24.068516595Z"} +2026/03/21 17:01:29 [metric_collector] {"stage_name":"metric_collector","events_processed":20554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4110.8,"last_update":"2026-03-21T17:01:24.068758938Z"} +2026/03/21 17:01:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:01:24.076913518Z"} +2026/03/21 17:01:29 [detection_layer] {"stage_name":"detection_layer","events_processed":682,"events_dropped":0,"avg_latency_ms":18.03641935494482,"throughput_eps":0,"last_update":"2026-03-21T17:01:24.210295248Z"} +2026/03/21 17:01:29 [transform_engine] {"stage_name":"transform_engine","events_processed":685,"events_dropped":0,"avg_latency_ms":6647.549086830757,"throughput_eps":0,"last_update":"2026-03-21T17:01:24.210187161Z"} +2026/03/21 17:01:29 ───────────────────────────────────────────────── +2026/03/21 17:01:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:01:34 [metric_collector] {"stage_name":"metric_collector","events_processed":20559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.8,"last_update":"2026-03-21T17:01:29.069225683Z"} +2026/03/21 17:01:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:01:29.076983934Z"} +2026/03/21 17:01:34 [detection_layer] {"stage_name":"detection_layer","events_processed":682,"events_dropped":0,"avg_latency_ms":18.03641935494482,"throughput_eps":0,"last_update":"2026-03-21T17:01:29.210232297Z"} +2026/03/21 17:01:34 [transform_engine] {"stage_name":"transform_engine","events_processed":685,"events_dropped":0,"avg_latency_ms":6647.549086830757,"throughput_eps":0,"last_update":"2026-03-21T17:01:29.210246775Z"} +2026/03/21 17:01:34 [log_collector] {"stage_name":"log_collector","events_processed":33103,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6620.6,"last_update":"2026-03-21T17:01:29.069027714Z"} +2026/03/21 17:01:34 ───────────────────────────────────────────────── +2026/03/21 17:01:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:01:39 [log_collector] {"stage_name":"log_collector","events_processed":33111,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6622.2,"last_update":"2026-03-21T17:01:34.068609874Z"} +2026/03/21 17:01:39 [metric_collector] {"stage_name":"metric_collector","events_processed":20564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4112.8,"last_update":"2026-03-21T17:01:34.068867577Z"} +2026/03/21 17:01:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:01:34.075726987Z"} +2026/03/21 17:01:39 [detection_layer] {"stage_name":"detection_layer","events_processed":682,"events_dropped":0,"avg_latency_ms":18.03641935494482,"throughput_eps":0,"last_update":"2026-03-21T17:01:34.209995344Z"} +2026/03/21 17:01:39 [transform_engine] {"stage_name":"transform_engine","events_processed":685,"events_dropped":0,"avg_latency_ms":6647.549086830757,"throughput_eps":0,"last_update":"2026-03-21T17:01:34.210007898Z"} +2026/03/21 17:01:39 ───────────────────────────────────────────────── +2026/03/21 17:01:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:01:44 [log_collector] {"stage_name":"log_collector","events_processed":33120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6624,"last_update":"2026-03-21T17:01:39.068666352Z"} +2026/03/21 17:01:44 [metric_collector] {"stage_name":"metric_collector","events_processed":20569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.8,"last_update":"2026-03-21T17:01:39.069134269Z"} +2026/03/21 17:01:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:01:39.075150112Z"} +2026/03/21 17:01:44 [detection_layer] {"stage_name":"detection_layer","events_processed":682,"events_dropped":0,"avg_latency_ms":18.03641935494482,"throughput_eps":0,"last_update":"2026-03-21T17:01:39.210928682Z"} +2026/03/21 17:01:44 [transform_engine] {"stage_name":"transform_engine","events_processed":685,"events_dropped":0,"avg_latency_ms":6647.549086830757,"throughput_eps":0,"last_update":"2026-03-21T17:01:39.210940034Z"} +2026/03/21 17:01:44 ───────────────────────────────────────────────── +2026/03/21 17:01:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:01:49 [log_collector] {"stage_name":"log_collector","events_processed":33120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6624,"last_update":"2026-03-21T17:01:44.068692871Z"} +2026/03/21 17:01:49 [metric_collector] {"stage_name":"metric_collector","events_processed":20574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4114.8,"last_update":"2026-03-21T17:01:44.068959332Z"} +2026/03/21 17:01:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:01:44.077919695Z"} +2026/03/21 17:01:49 [detection_layer] {"stage_name":"detection_layer","events_processed":682,"events_dropped":0,"avg_latency_ms":18.03641935494482,"throughput_eps":0,"last_update":"2026-03-21T17:01:44.210398936Z"} +2026/03/21 17:01:49 [transform_engine] {"stage_name":"transform_engine","events_processed":685,"events_dropped":0,"avg_latency_ms":6647.549086830757,"throughput_eps":0,"last_update":"2026-03-21T17:01:44.210410428Z"} +2026/03/21 17:01:49 ───────────────────────────────────────────────── +2026/03/21 17:01:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:01:54 [log_collector] {"stage_name":"log_collector","events_processed":33120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6624,"last_update":"2026-03-21T17:01:49.06876488Z"} +2026/03/21 17:01:54 [metric_collector] {"stage_name":"metric_collector","events_processed":20579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4115.8,"last_update":"2026-03-21T17:01:49.06897956Z"} +2026/03/21 17:01:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:01:49.077119954Z"} +2026/03/21 17:01:54 [detection_layer] {"stage_name":"detection_layer","events_processed":682,"events_dropped":0,"avg_latency_ms":18.03641935494482,"throughput_eps":0,"last_update":"2026-03-21T17:01:49.210916948Z"} +2026/03/21 17:01:54 [transform_engine] {"stage_name":"transform_engine","events_processed":686,"events_dropped":0,"avg_latency_ms":5341.422799664606,"throughput_eps":0,"last_update":"2026-03-21T17:01:49.327293523Z"} +2026/03/21 17:01:54 ───────────────────────────────────────────────── +2026/03/21 17:01:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:01:59 [log_collector] {"stage_name":"log_collector","events_processed":33120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6624,"last_update":"2026-03-21T17:01:54.068879589Z"} +2026/03/21 17:01:59 [metric_collector] {"stage_name":"metric_collector","events_processed":20584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4116.8,"last_update":"2026-03-21T17:01:54.068868978Z"} +2026/03/21 17:01:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:01:54.080609217Z"} +2026/03/21 17:01:59 [detection_layer] {"stage_name":"detection_layer","events_processed":683,"events_dropped":0,"avg_latency_ms":18.495757283955854,"throughput_eps":0,"last_update":"2026-03-21T17:01:54.210906137Z"} +2026/03/21 17:01:59 [transform_engine] {"stage_name":"transform_engine","events_processed":686,"events_dropped":0,"avg_latency_ms":5341.422799664606,"throughput_eps":0,"last_update":"2026-03-21T17:01:54.209761124Z"} +2026/03/21 17:01:59 ───────────────────────────────────────────────── +2026/03/21 17:02:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:02:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:01:59.076776155Z"} +2026/03/21 17:02:04 [detection_layer] {"stage_name":"detection_layer","events_processed":683,"events_dropped":0,"avg_latency_ms":18.495757283955854,"throughput_eps":0,"last_update":"2026-03-21T17:01:59.210047242Z"} +2026/03/21 17:02:04 [transform_engine] {"stage_name":"transform_engine","events_processed":686,"events_dropped":0,"avg_latency_ms":5341.422799664606,"throughput_eps":0,"last_update":"2026-03-21T17:01:59.210029619Z"} +2026/03/21 17:02:04 [log_collector] {"stage_name":"log_collector","events_processed":33120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6624,"last_update":"2026-03-21T17:01:59.068526202Z"} +2026/03/21 17:02:04 [metric_collector] {"stage_name":"metric_collector","events_processed":20589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4117.8,"last_update":"2026-03-21T17:01:59.068495013Z"} +2026/03/21 17:02:04 ───────────────────────────────────────────────── +2026/03/21 17:02:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:02:09 [log_collector] {"stage_name":"log_collector","events_processed":33120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6624,"last_update":"2026-03-21T17:02:04.068565176Z"} +2026/03/21 17:02:09 [metric_collector] {"stage_name":"metric_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-21T17:02:04.069134827Z"} +2026/03/21 17:02:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:02:04.076321384Z"} +2026/03/21 17:02:09 [detection_layer] {"stage_name":"detection_layer","events_processed":683,"events_dropped":0,"avg_latency_ms":18.495757283955854,"throughput_eps":0,"last_update":"2026-03-21T17:02:04.21065233Z"} +2026/03/21 17:02:09 [transform_engine] {"stage_name":"transform_engine","events_processed":686,"events_dropped":0,"avg_latency_ms":5341.422799664606,"throughput_eps":0,"last_update":"2026-03-21T17:02:04.210634235Z"} +2026/03/21 17:02:09 ───────────────────────────────────────────────── +2026/03/21 17:02:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:02:14 [log_collector] {"stage_name":"log_collector","events_processed":33120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6624,"last_update":"2026-03-21T17:02:09.068668482Z"} +2026/03/21 17:02:14 [metric_collector] {"stage_name":"metric_collector","events_processed":20599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4119.8,"last_update":"2026-03-21T17:02:09.068963337Z"} +2026/03/21 17:02:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:02:09.076448044Z"} +2026/03/21 17:02:14 [detection_layer] {"stage_name":"detection_layer","events_processed":683,"events_dropped":0,"avg_latency_ms":18.495757283955854,"throughput_eps":0,"last_update":"2026-03-21T17:02:09.210683629Z"} +2026/03/21 17:02:14 [transform_engine] {"stage_name":"transform_engine","events_processed":686,"events_dropped":0,"avg_latency_ms":5341.422799664606,"throughput_eps":0,"last_update":"2026-03-21T17:02:09.210653621Z"} +2026/03/21 17:02:14 ───────────────────────────────────────────────── +2026/03/21 17:02:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:02:19 [transform_engine] {"stage_name":"transform_engine","events_processed":686,"events_dropped":0,"avg_latency_ms":5341.422799664606,"throughput_eps":0,"last_update":"2026-03-21T17:02:14.210547216Z"} +2026/03/21 17:02:19 [log_collector] {"stage_name":"log_collector","events_processed":33120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6624,"last_update":"2026-03-21T17:02:14.068726893Z"} +2026/03/21 17:02:19 [metric_collector] {"stage_name":"metric_collector","events_processed":20604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4120.8,"last_update":"2026-03-21T17:02:14.068999375Z"} +2026/03/21 17:02:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:02:14.077113849Z"} +2026/03/21 17:02:19 [detection_layer] {"stage_name":"detection_layer","events_processed":683,"events_dropped":0,"avg_latency_ms":18.495757283955854,"throughput_eps":0,"last_update":"2026-03-21T17:02:14.210509715Z"} +2026/03/21 17:02:19 ───────────────────────────────────────────────── +2026/03/21 17:02:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:02:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8246,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:02:19.074992873Z"} +2026/03/21 17:02:24 [detection_layer] {"stage_name":"detection_layer","events_processed":683,"events_dropped":0,"avg_latency_ms":18.495757283955854,"throughput_eps":0,"last_update":"2026-03-21T17:02:19.210484132Z"} +2026/03/21 17:02:24 [transform_engine] {"stage_name":"transform_engine","events_processed":686,"events_dropped":0,"avg_latency_ms":5341.422799664606,"throughput_eps":0,"last_update":"2026-03-21T17:02:14.210547216Z"} +2026/03/21 17:02:24 [log_collector] {"stage_name":"log_collector","events_processed":33120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6624,"last_update":"2026-03-21T17:02:19.068652307Z"} +2026/03/21 17:02:24 [metric_collector] {"stage_name":"metric_collector","events_processed":20614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4122.8,"last_update":"2026-03-21T17:02:24.068656601Z"} +2026/03/21 17:02:24 ───────────────────────────────────────────────── +2026/03/21 17:02:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:02:29 [log_collector] {"stage_name":"log_collector","events_processed":33120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6624,"last_update":"2026-03-21T17:02:24.06866682Z"} +2026/03/21 17:02:29 [metric_collector] {"stage_name":"metric_collector","events_processed":20614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4122.8,"last_update":"2026-03-21T17:02:24.068656601Z"} +2026/03/21 17:02:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:02:24.077392585Z"} +2026/03/21 17:02:29 [detection_layer] {"stage_name":"detection_layer","events_processed":683,"events_dropped":0,"avg_latency_ms":18.495757283955854,"throughput_eps":0,"last_update":"2026-03-21T17:02:24.210691645Z"} +2026/03/21 17:02:29 [transform_engine] {"stage_name":"transform_engine","events_processed":687,"events_dropped":0,"avg_latency_ms":5984.449796731685,"throughput_eps":0,"last_update":"2026-03-21T17:02:27.766981431Z"} +2026/03/21 17:02:29 ───────────────────────────────────────────────── +2026/03/21 17:02:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:02:34 [transform_engine] {"stage_name":"transform_engine","events_processed":687,"events_dropped":0,"avg_latency_ms":5984.449796731685,"throughput_eps":0,"last_update":"2026-03-21T17:02:29.210445984Z"} +2026/03/21 17:02:34 [log_collector] {"stage_name":"log_collector","events_processed":33120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6624,"last_update":"2026-03-21T17:02:29.068190628Z"} +2026/03/21 17:02:34 [metric_collector] {"stage_name":"metric_collector","events_processed":20619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4123.8,"last_update":"2026-03-21T17:02:29.068426289Z"} +2026/03/21 17:02:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:02:29.077210466Z"} +2026/03/21 17:02:34 [detection_layer] {"stage_name":"detection_layer","events_processed":684,"events_dropped":0,"avg_latency_ms":16.728999427164684,"throughput_eps":0,"last_update":"2026-03-21T17:02:29.210433651Z"} +2026/03/21 17:02:34 ───────────────────────────────────────────────── +2026/03/21 17:02:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:02:39 [log_collector] {"stage_name":"log_collector","events_processed":33120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6624,"last_update":"2026-03-21T17:02:34.068768131Z"} +2026/03/21 17:02:39 [metric_collector] {"stage_name":"metric_collector","events_processed":20624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4124.8,"last_update":"2026-03-21T17:02:34.068918189Z"} +2026/03/21 17:02:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:02:34.078933023Z"} +2026/03/21 17:02:39 [detection_layer] {"stage_name":"detection_layer","events_processed":684,"events_dropped":0,"avg_latency_ms":16.728999427164684,"throughput_eps":0,"last_update":"2026-03-21T17:02:34.210164973Z"} +2026/03/21 17:02:39 [transform_engine] {"stage_name":"transform_engine","events_processed":687,"events_dropped":0,"avg_latency_ms":5984.449796731685,"throughput_eps":0,"last_update":"2026-03-21T17:02:34.210174972Z"} +2026/03/21 17:02:39 ───────────────────────────────────────────────── +2026/03/21 17:02:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:02:44 [transform_engine] {"stage_name":"transform_engine","events_processed":687,"events_dropped":0,"avg_latency_ms":5984.449796731685,"throughput_eps":0,"last_update":"2026-03-21T17:02:39.210474403Z"} +2026/03/21 17:02:44 [log_collector] {"stage_name":"log_collector","events_processed":33120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6624,"last_update":"2026-03-21T17:02:39.068702423Z"} +2026/03/21 17:02:44 [metric_collector] {"stage_name":"metric_collector","events_processed":20629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4125.8,"last_update":"2026-03-21T17:02:39.068882688Z"} +2026/03/21 17:02:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:02:39.076076207Z"} +2026/03/21 17:02:44 [detection_layer] {"stage_name":"detection_layer","events_processed":684,"events_dropped":0,"avg_latency_ms":16.728999427164684,"throughput_eps":0,"last_update":"2026-03-21T17:02:39.210463663Z"} +2026/03/21 17:02:44 ───────────────────────────────────────────────── +2026/03/21 17:02:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:02:49 [metric_collector] {"stage_name":"metric_collector","events_processed":20634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4126.8,"last_update":"2026-03-21T17:02:44.069231123Z"} +2026/03/21 17:02:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:02:44.078728024Z"} +2026/03/21 17:02:49 [detection_layer] {"stage_name":"detection_layer","events_processed":684,"events_dropped":0,"avg_latency_ms":16.728999427164684,"throughput_eps":0,"last_update":"2026-03-21T17:02:44.209986906Z"} +2026/03/21 17:02:49 [transform_engine] {"stage_name":"transform_engine","events_processed":687,"events_dropped":0,"avg_latency_ms":5984.449796731685,"throughput_eps":0,"last_update":"2026-03-21T17:02:44.210003048Z"} +2026/03/21 17:02:49 [log_collector] {"stage_name":"log_collector","events_processed":33120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6624,"last_update":"2026-03-21T17:02:44.069065996Z"} +2026/03/21 17:02:49 ───────────────────────────────────────────────── +2026/03/21 17:02:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:02:54 [metric_collector] {"stage_name":"metric_collector","events_processed":20639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4127.8,"last_update":"2026-03-21T17:02:49.069139907Z"} +2026/03/21 17:02:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:02:49.078330481Z"} +2026/03/21 17:02:54 [detection_layer] {"stage_name":"detection_layer","events_processed":684,"events_dropped":0,"avg_latency_ms":16.728999427164684,"throughput_eps":0,"last_update":"2026-03-21T17:02:49.210583578Z"} +2026/03/21 17:02:54 [transform_engine] {"stage_name":"transform_engine","events_processed":688,"events_dropped":0,"avg_latency_ms":4802.309897785348,"throughput_eps":0,"last_update":"2026-03-21T17:02:49.284367053Z"} +2026/03/21 17:02:54 [log_collector] {"stage_name":"log_collector","events_processed":33120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6624,"last_update":"2026-03-21T17:02:49.06891723Z"} +2026/03/21 17:02:54 ───────────────────────────────────────────────── +2026/03/21 17:02:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:02:59 [log_collector] {"stage_name":"log_collector","events_processed":33120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6624,"last_update":"2026-03-21T17:02:54.068447437Z"} +2026/03/21 17:02:59 [metric_collector] {"stage_name":"metric_collector","events_processed":20644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4128.8,"last_update":"2026-03-21T17:02:54.068696354Z"} +2026/03/21 17:02:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:02:54.077388053Z"} +2026/03/21 17:02:59 [detection_layer] {"stage_name":"detection_layer","events_processed":685,"events_dropped":0,"avg_latency_ms":17.835866941731748,"throughput_eps":0,"last_update":"2026-03-21T17:02:54.21074305Z"} +2026/03/21 17:02:59 [transform_engine] {"stage_name":"transform_engine","events_processed":688,"events_dropped":0,"avg_latency_ms":4802.309897785348,"throughput_eps":0,"last_update":"2026-03-21T17:02:54.210756395Z"} +2026/03/21 17:02:59 ───────────────────────────────────────────────── +2026/03/21 17:03:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:03:04 [log_collector] {"stage_name":"log_collector","events_processed":33120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6624,"last_update":"2026-03-21T17:02:59.068115747Z"} +2026/03/21 17:03:04 [metric_collector] {"stage_name":"metric_collector","events_processed":20649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4129.8,"last_update":"2026-03-21T17:02:59.068395954Z"} +2026/03/21 17:03:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:02:59.078404896Z"} +2026/03/21 17:03:04 [detection_layer] {"stage_name":"detection_layer","events_processed":685,"events_dropped":0,"avg_latency_ms":17.835866941731748,"throughput_eps":0,"last_update":"2026-03-21T17:02:59.210778243Z"} +2026/03/21 17:03:04 [transform_engine] {"stage_name":"transform_engine","events_processed":688,"events_dropped":0,"avg_latency_ms":4802.309897785348,"throughput_eps":0,"last_update":"2026-03-21T17:02:59.210793663Z"} +2026/03/21 17:03:04 ───────────────────────────────────────────────── +2026/03/21 17:03:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:03:09 [metric_collector] {"stage_name":"metric_collector","events_processed":20654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4130.8,"last_update":"2026-03-21T17:03:04.068937406Z"} +2026/03/21 17:03:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:03:04.079382924Z"} +2026/03/21 17:03:09 [detection_layer] {"stage_name":"detection_layer","events_processed":685,"events_dropped":0,"avg_latency_ms":17.835866941731748,"throughput_eps":0,"last_update":"2026-03-21T17:03:04.210673287Z"} +2026/03/21 17:03:09 [transform_engine] {"stage_name":"transform_engine","events_processed":688,"events_dropped":0,"avg_latency_ms":4802.309897785348,"throughput_eps":0,"last_update":"2026-03-21T17:03:04.210686773Z"} +2026/03/21 17:03:09 [log_collector] {"stage_name":"log_collector","events_processed":33120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6624,"last_update":"2026-03-21T17:03:04.068826042Z"} +2026/03/21 17:03:09 ───────────────────────────────────────────────── +2026/03/21 17:03:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:03:14 [metric_collector] {"stage_name":"metric_collector","events_processed":20659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4131.8,"last_update":"2026-03-21T17:03:09.068453315Z"} +2026/03/21 17:03:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:03:09.077194279Z"} +2026/03/21 17:03:14 [detection_layer] {"stage_name":"detection_layer","events_processed":685,"events_dropped":0,"avg_latency_ms":17.835866941731748,"throughput_eps":0,"last_update":"2026-03-21T17:03:09.210428024Z"} +2026/03/21 17:03:14 [transform_engine] {"stage_name":"transform_engine","events_processed":688,"events_dropped":0,"avg_latency_ms":4802.309897785348,"throughput_eps":0,"last_update":"2026-03-21T17:03:09.210440077Z"} +2026/03/21 17:03:14 [log_collector] {"stage_name":"log_collector","events_processed":33120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6624,"last_update":"2026-03-21T17:03:09.068121811Z"} +2026/03/21 17:03:14 ───────────────────────────────────────────────── +2026/03/21 17:03:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:03:19 [detection_layer] {"stage_name":"detection_layer","events_processed":685,"events_dropped":0,"avg_latency_ms":17.835866941731748,"throughput_eps":0,"last_update":"2026-03-21T17:03:14.209890359Z"} +2026/03/21 17:03:19 [transform_engine] {"stage_name":"transform_engine","events_processed":688,"events_dropped":0,"avg_latency_ms":4802.309897785348,"throughput_eps":0,"last_update":"2026-03-21T17:03:14.209770039Z"} +2026/03/21 17:03:19 [log_collector] {"stage_name":"log_collector","events_processed":33120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6624,"last_update":"2026-03-21T17:03:14.068080777Z"} +2026/03/21 17:03:19 [metric_collector] {"stage_name":"metric_collector","events_processed":20664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4132.8,"last_update":"2026-03-21T17:03:14.068683632Z"} +2026/03/21 17:03:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:03:14.078619505Z"} +2026/03/21 17:03:19 ───────────────────────────────────────────────── +2026/03/21 17:03:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:03:24 [metric_collector] {"stage_name":"metric_collector","events_processed":20669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4133.8,"last_update":"2026-03-21T17:03:19.069472808Z"} +2026/03/21 17:03:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:03:19.078661329Z"} +2026/03/21 17:03:24 [detection_layer] {"stage_name":"detection_layer","events_processed":685,"events_dropped":0,"avg_latency_ms":17.835866941731748,"throughput_eps":0,"last_update":"2026-03-21T17:03:19.209881397Z"} +2026/03/21 17:03:24 [transform_engine] {"stage_name":"transform_engine","events_processed":689,"events_dropped":0,"avg_latency_ms":3856.9844148282787,"throughput_eps":0,"last_update":"2026-03-21T17:03:19.285578378Z"} +2026/03/21 17:03:24 [log_collector] {"stage_name":"log_collector","events_processed":33120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6624,"last_update":"2026-03-21T17:03:19.068943835Z"} +2026/03/21 17:03:24 ───────────────────────────────────────────────── +2026/03/21 17:03:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:03:29 [log_collector] {"stage_name":"log_collector","events_processed":33120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6624,"last_update":"2026-03-21T17:03:24.068941485Z"} +2026/03/21 17:03:29 [metric_collector] {"stage_name":"metric_collector","events_processed":20674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4134.8,"last_update":"2026-03-21T17:03:24.069318928Z"} +2026/03/21 17:03:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:03:24.078868471Z"} +2026/03/21 17:03:29 [detection_layer] {"stage_name":"detection_layer","events_processed":686,"events_dropped":0,"avg_latency_ms":18.6047413533854,"throughput_eps":0,"last_update":"2026-03-21T17:03:24.210095422Z"} +2026/03/21 17:03:29 [transform_engine] {"stage_name":"transform_engine","events_processed":689,"events_dropped":0,"avg_latency_ms":3856.9844148282787,"throughput_eps":0,"last_update":"2026-03-21T17:03:24.210106564Z"} +2026/03/21 17:03:29 ───────────────────────────────────────────────── +2026/03/21 17:03:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:03:34 [metric_collector] {"stage_name":"metric_collector","events_processed":20679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4135.8,"last_update":"2026-03-21T17:03:29.06887326Z"} +2026/03/21 17:03:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:03:29.075517927Z"} +2026/03/21 17:03:34 [detection_layer] {"stage_name":"detection_layer","events_processed":686,"events_dropped":0,"avg_latency_ms":18.6047413533854,"throughput_eps":0,"last_update":"2026-03-21T17:03:29.211425926Z"} +2026/03/21 17:03:34 [transform_engine] {"stage_name":"transform_engine","events_processed":689,"events_dropped":0,"avg_latency_ms":3856.9844148282787,"throughput_eps":0,"last_update":"2026-03-21T17:03:29.209712423Z"} +2026/03/21 17:03:34 [log_collector] {"stage_name":"log_collector","events_processed":33120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6624,"last_update":"2026-03-21T17:03:29.068636957Z"} +2026/03/21 17:03:34 ───────────────────────────────────────────────── +2026/03/21 17:03:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:03:39 [metric_collector] {"stage_name":"metric_collector","events_processed":20684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4136.8,"last_update":"2026-03-21T17:03:34.069208715Z"} +2026/03/21 17:03:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8276,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:03:34.074659747Z"} +2026/03/21 17:03:39 [detection_layer] {"stage_name":"detection_layer","events_processed":686,"events_dropped":0,"avg_latency_ms":18.6047413533854,"throughput_eps":0,"last_update":"2026-03-21T17:03:34.209904395Z"} +2026/03/21 17:03:39 [transform_engine] {"stage_name":"transform_engine","events_processed":689,"events_dropped":0,"avg_latency_ms":3856.9844148282787,"throughput_eps":0,"last_update":"2026-03-21T17:03:34.209916347Z"} +2026/03/21 17:03:39 [log_collector] {"stage_name":"log_collector","events_processed":33120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6624,"last_update":"2026-03-21T17:03:34.068690503Z"} +2026/03/21 17:03:39 ───────────────────────────────────────────────── +2026/03/21 17:03:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:03:44 [log_collector] {"stage_name":"log_collector","events_processed":33120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6624,"last_update":"2026-03-21T17:03:39.068633317Z"} +2026/03/21 17:03:44 [metric_collector] {"stage_name":"metric_collector","events_processed":20689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4137.8,"last_update":"2026-03-21T17:03:39.069084731Z"} +2026/03/21 17:03:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:03:39.077799766Z"} +2026/03/21 17:03:44 [detection_layer] {"stage_name":"detection_layer","events_processed":686,"events_dropped":0,"avg_latency_ms":18.6047413533854,"throughput_eps":0,"last_update":"2026-03-21T17:03:39.210038175Z"} +2026/03/21 17:03:44 [transform_engine] {"stage_name":"transform_engine","events_processed":689,"events_dropped":0,"avg_latency_ms":3856.9844148282787,"throughput_eps":0,"last_update":"2026-03-21T17:03:39.21006185Z"} +2026/03/21 17:03:44 ───────────────────────────────────────────────── +2026/03/21 17:03:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:03:49 [transform_engine] {"stage_name":"transform_engine","events_processed":689,"events_dropped":0,"avg_latency_ms":3856.9844148282787,"throughput_eps":0,"last_update":"2026-03-21T17:03:44.20977814Z"} +2026/03/21 17:03:49 [log_collector] {"stage_name":"log_collector","events_processed":33120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6624,"last_update":"2026-03-21T17:03:44.069008329Z"} +2026/03/21 17:03:49 [metric_collector] {"stage_name":"metric_collector","events_processed":20694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4138.8,"last_update":"2026-03-21T17:03:44.069279418Z"} +2026/03/21 17:03:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:03:44.075606678Z"} +2026/03/21 17:03:49 [detection_layer] {"stage_name":"detection_layer","events_processed":686,"events_dropped":0,"avg_latency_ms":18.6047413533854,"throughput_eps":0,"last_update":"2026-03-21T17:03:44.209852983Z"} +2026/03/21 17:03:49 ───────────────────────────────────────────────── +2026/03/21 17:03:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:03:54 [log_collector] {"stage_name":"log_collector","events_processed":33120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6624,"last_update":"2026-03-21T17:03:49.068770516Z"} +2026/03/21 17:03:54 [metric_collector] {"stage_name":"metric_collector","events_processed":20699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4139.8,"last_update":"2026-03-21T17:03:49.069778707Z"} +2026/03/21 17:03:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:03:49.078142789Z"} +2026/03/21 17:03:54 [detection_layer] {"stage_name":"detection_layer","events_processed":686,"events_dropped":0,"avg_latency_ms":18.6047413533854,"throughput_eps":0,"last_update":"2026-03-21T17:03:49.210394443Z"} +2026/03/21 17:03:54 [transform_engine] {"stage_name":"transform_engine","events_processed":689,"events_dropped":0,"avg_latency_ms":3856.9844148282787,"throughput_eps":0,"last_update":"2026-03-21T17:03:44.20977814Z"} +2026/03/21 17:03:54 ───────────────────────────────────────────────── +2026/03/21 17:03:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:03:59 [log_collector] {"stage_name":"log_collector","events_processed":33120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6624,"last_update":"2026-03-21T17:03:54.068822249Z"} +2026/03/21 17:03:59 [metric_collector] {"stage_name":"metric_collector","events_processed":20704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4140.8,"last_update":"2026-03-21T17:03:54.06886963Z"} +2026/03/21 17:03:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:03:54.074991116Z"} +2026/03/21 17:03:59 [detection_layer] {"stage_name":"detection_layer","events_processed":686,"events_dropped":0,"avg_latency_ms":18.6047413533854,"throughput_eps":0,"last_update":"2026-03-21T17:03:54.210279426Z"} +2026/03/21 17:03:59 [transform_engine] {"stage_name":"transform_engine","events_processed":690,"events_dropped":0,"avg_latency_ms":4169.920369862623,"throughput_eps":0,"last_update":"2026-03-21T17:03:54.632095745Z"} +2026/03/21 17:03:59 ───────────────────────────────────────────────── +2026/03/21 17:04:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:04:04 [transform_engine] {"stage_name":"transform_engine","events_processed":690,"events_dropped":0,"avg_latency_ms":4169.920369862623,"throughput_eps":0,"last_update":"2026-03-21T17:03:59.210619333Z"} +2026/03/21 17:04:04 [log_collector] {"stage_name":"log_collector","events_processed":33120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6624,"last_update":"2026-03-21T17:03:59.068844327Z"} +2026/03/21 17:04:04 [metric_collector] {"stage_name":"metric_collector","events_processed":20709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4141.8,"last_update":"2026-03-21T17:03:59.06925862Z"} +2026/03/21 17:04:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8286,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:03:59.079440814Z"} +2026/03/21 17:04:04 [detection_layer] {"stage_name":"detection_layer","events_processed":687,"events_dropped":0,"avg_latency_ms":18.13141008270832,"throughput_eps":0,"last_update":"2026-03-21T17:03:59.210600957Z"} +2026/03/21 17:04:04 ───────────────────────────────────────────────── +Saved state: 19 clusters, 33121 messages, reason: none +2026/03/21 17:04:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:04:09 [log_collector] {"stage_name":"log_collector","events_processed":33120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6624,"last_update":"2026-03-21T17:04:04.068278786Z"} +2026/03/21 17:04:09 [metric_collector] {"stage_name":"metric_collector","events_processed":20714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4142.8,"last_update":"2026-03-21T17:04:04.068872043Z"} +2026/03/21 17:04:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:04:04.077982043Z"} +2026/03/21 17:04:09 [detection_layer] {"stage_name":"detection_layer","events_processed":687,"events_dropped":0,"avg_latency_ms":18.13141008270832,"throughput_eps":0,"last_update":"2026-03-21T17:04:04.210231874Z"} +2026/03/21 17:04:09 [transform_engine] {"stage_name":"transform_engine","events_processed":690,"events_dropped":0,"avg_latency_ms":4169.920369862623,"throughput_eps":0,"last_update":"2026-03-21T17:04:04.210249848Z"} +2026/03/21 17:04:09 ───────────────────────────────────────────────── +Saved state: 20 clusters, 33135 messages, reason: cluster_created +Saved state: 21 clusters, 33136 messages, reason: cluster_created +Saved state: 22 clusters, 33137 messages, reason: cluster_created +Saved state: 23 clusters, 33138 messages, reason: cluster_created +Saved state: 23 clusters, 33139 messages, reason: cluster_template_changed +Saved state: 23 clusters, 33140 messages, reason: cluster_template_changed +Saved state: 23 clusters, 33142 messages, reason: cluster_template_changed +Saved state: 23 clusters, 33143 messages, reason: cluster_template_changed +Saved state: 24 clusters, 33144 messages, reason: cluster_created +Saved state: 24 clusters, 33146 messages, reason: cluster_template_changed +Saved state: 24 clusters, 33147 messages, reason: cluster_template_changed +Saved state: 25 clusters, 33148 messages, reason: cluster_created +Saved state: 25 clusters, 33149 messages, reason: cluster_template_changed +Saved state: 25 clusters, 33150 messages, reason: cluster_template_changed +Saved state: 26 clusters, 33151 messages, reason: cluster_created +Saved state: 26 clusters, 33152 messages, reason: cluster_template_changed +Saved state: 27 clusters, 33153 messages, reason: cluster_created +Saved state: 27 clusters, 33154 messages, reason: cluster_template_changed +2026/03/21 17:04:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:04:14 [log_collector] {"stage_name":"log_collector","events_processed":33154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6630.8,"last_update":"2026-03-21T17:04:14.068432324Z"} +2026/03/21 17:04:14 [metric_collector] {"stage_name":"metric_collector","events_processed":20719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4143.8,"last_update":"2026-03-21T17:04:09.069026901Z"} +2026/03/21 17:04:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:04:09.075476967Z"} +2026/03/21 17:04:14 [detection_layer] {"stage_name":"detection_layer","events_processed":687,"events_dropped":0,"avg_latency_ms":18.13141008270832,"throughput_eps":0,"last_update":"2026-03-21T17:04:09.210874036Z"} +2026/03/21 17:04:14 [transform_engine] {"stage_name":"transform_engine","events_processed":690,"events_dropped":0,"avg_latency_ms":4169.920369862623,"throughput_eps":0,"last_update":"2026-03-21T17:04:09.209688165Z"} +2026/03/21 17:04:14 ───────────────────────────────────────────────── +2026/03/21 17:04:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:04:19 [log_collector] {"stage_name":"log_collector","events_processed":33154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6630.8,"last_update":"2026-03-21T17:04:14.068432324Z"} +2026/03/21 17:04:19 [metric_collector] {"stage_name":"metric_collector","events_processed":20724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4144.8,"last_update":"2026-03-21T17:04:14.069016694Z"} +2026/03/21 17:04:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:04:14.077645293Z"} +2026/03/21 17:04:19 [detection_layer] {"stage_name":"detection_layer","events_processed":687,"events_dropped":0,"avg_latency_ms":18.13141008270832,"throughput_eps":0,"last_update":"2026-03-21T17:04:14.210200147Z"} +2026/03/21 17:04:19 [transform_engine] {"stage_name":"transform_engine","events_processed":690,"events_dropped":0,"avg_latency_ms":4169.920369862623,"throughput_eps":0,"last_update":"2026-03-21T17:04:14.210168467Z"} +2026/03/21 17:04:19 ───────────────────────────────────────────────── +2026/03/21 17:04:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:04:24 [log_collector] {"stage_name":"log_collector","events_processed":33154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6630.8,"last_update":"2026-03-21T17:04:19.068638523Z"} +2026/03/21 17:04:24 [metric_collector] {"stage_name":"metric_collector","events_processed":20729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4145.8,"last_update":"2026-03-21T17:04:19.069030183Z"} +2026/03/21 17:04:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:04:19.078250926Z"} +2026/03/21 17:04:24 [detection_layer] {"stage_name":"detection_layer","events_processed":687,"events_dropped":0,"avg_latency_ms":18.13141008270832,"throughput_eps":0,"last_update":"2026-03-21T17:04:19.210674379Z"} +2026/03/21 17:04:24 [transform_engine] {"stage_name":"transform_engine","events_processed":691,"events_dropped":0,"avg_latency_ms":3360.941961290099,"throughput_eps":0,"last_update":"2026-03-21T17:04:19.335522541Z"} +2026/03/21 17:04:24 ───────────────────────────────────────────────── +2026/03/21 17:04:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:04:29 [detection_layer] {"stage_name":"detection_layer","events_processed":688,"events_dropped":0,"avg_latency_ms":18.432747466166656,"throughput_eps":0,"last_update":"2026-03-21T17:04:24.210628854Z"} +2026/03/21 17:04:29 [transform_engine] {"stage_name":"transform_engine","events_processed":691,"events_dropped":0,"avg_latency_ms":3360.941961290099,"throughput_eps":0,"last_update":"2026-03-21T17:04:24.210613505Z"} +2026/03/21 17:04:29 [log_collector] {"stage_name":"log_collector","events_processed":33154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6630.8,"last_update":"2026-03-21T17:04:24.068206008Z"} +2026/03/21 17:04:29 [metric_collector] {"stage_name":"metric_collector","events_processed":20734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4146.8,"last_update":"2026-03-21T17:04:24.069098938Z"} +2026/03/21 17:04:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:04:24.078315262Z"} +2026/03/21 17:04:29 ───────────────────────────────────────────────── +2026/03/21 17:04:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:04:34 [metric_collector] {"stage_name":"metric_collector","events_processed":20739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4147.8,"last_update":"2026-03-21T17:04:29.068726466Z"} +2026/03/21 17:04:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:04:29.078745117Z"} +2026/03/21 17:04:34 [detection_layer] {"stage_name":"detection_layer","events_processed":688,"events_dropped":0,"avg_latency_ms":18.432747466166656,"throughput_eps":0,"last_update":"2026-03-21T17:04:29.210074614Z"} +2026/03/21 17:04:34 [transform_engine] {"stage_name":"transform_engine","events_processed":691,"events_dropped":0,"avg_latency_ms":3360.941961290099,"throughput_eps":0,"last_update":"2026-03-21T17:04:29.210012154Z"} +2026/03/21 17:04:34 [log_collector] {"stage_name":"log_collector","events_processed":33154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6630.8,"last_update":"2026-03-21T17:04:29.068345877Z"} +2026/03/21 17:04:34 ───────────────────────────────────────────────── +2026/03/21 17:04:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:04:39 [transform_engine] {"stage_name":"transform_engine","events_processed":691,"events_dropped":0,"avg_latency_ms":3360.941961290099,"throughput_eps":0,"last_update":"2026-03-21T17:04:34.210336619Z"} +2026/03/21 17:04:39 [log_collector] {"stage_name":"log_collector","events_processed":33154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6630.8,"last_update":"2026-03-21T17:04:34.068772416Z"} +2026/03/21 17:04:39 [metric_collector] {"stage_name":"metric_collector","events_processed":20744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4148.8,"last_update":"2026-03-21T17:04:34.069471235Z"} +2026/03/21 17:04:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:04:34.077819546Z"} +2026/03/21 17:04:39 [detection_layer] {"stage_name":"detection_layer","events_processed":688,"events_dropped":0,"avg_latency_ms":18.432747466166656,"throughput_eps":0,"last_update":"2026-03-21T17:04:34.210303145Z"} +2026/03/21 17:04:39 ───────────────────────────────────────────────── +2026/03/21 17:04:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:04:44 [log_collector] {"stage_name":"log_collector","events_processed":33154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6630.8,"last_update":"2026-03-21T17:04:39.068445512Z"} +2026/03/21 17:04:44 [metric_collector] {"stage_name":"metric_collector","events_processed":20749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4149.8,"last_update":"2026-03-21T17:04:39.068760996Z"} +2026/03/21 17:04:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:04:39.078416041Z"} +2026/03/21 17:04:44 [detection_layer] {"stage_name":"detection_layer","events_processed":688,"events_dropped":0,"avg_latency_ms":18.432747466166656,"throughput_eps":0,"last_update":"2026-03-21T17:04:39.21070144Z"} +2026/03/21 17:04:44 [transform_engine] {"stage_name":"transform_engine","events_processed":691,"events_dropped":0,"avg_latency_ms":3360.941961290099,"throughput_eps":0,"last_update":"2026-03-21T17:04:39.210627258Z"} +2026/03/21 17:04:44 ───────────────────────────────────────────────── +2026/03/21 17:04:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:04:49 [transform_engine] {"stage_name":"transform_engine","events_processed":691,"events_dropped":0,"avg_latency_ms":3360.941961290099,"throughput_eps":0,"last_update":"2026-03-21T17:04:44.209822187Z"} +2026/03/21 17:04:49 [log_collector] {"stage_name":"log_collector","events_processed":33154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6630.8,"last_update":"2026-03-21T17:04:44.06903323Z"} +2026/03/21 17:04:49 [metric_collector] {"stage_name":"metric_collector","events_processed":20753,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4150.6,"last_update":"2026-03-21T17:04:44.069047238Z"} +2026/03/21 17:04:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:04:44.07852348Z"} +2026/03/21 17:04:49 [detection_layer] {"stage_name":"detection_layer","events_processed":688,"events_dropped":0,"avg_latency_ms":18.432747466166656,"throughput_eps":0,"last_update":"2026-03-21T17:04:44.210017261Z"} +2026/03/21 17:04:49 ───────────────────────────────────────────────── +2026/03/21 17:04:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:04:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:04:49.077116686Z"} +2026/03/21 17:04:54 [detection_layer] {"stage_name":"detection_layer","events_processed":688,"events_dropped":0,"avg_latency_ms":18.432747466166656,"throughput_eps":0,"last_update":"2026-03-21T17:04:49.211499693Z"} +2026/03/21 17:04:54 [transform_engine] {"stage_name":"transform_engine","events_processed":692,"events_dropped":0,"avg_latency_ms":2705.0851388320793,"throughput_eps":0,"last_update":"2026-03-21T17:04:49.292214956Z"} +2026/03/21 17:04:54 [log_collector] {"stage_name":"log_collector","events_processed":33154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6630.8,"last_update":"2026-03-21T17:04:49.068278456Z"} +2026/03/21 17:04:54 [metric_collector] {"stage_name":"metric_collector","events_processed":20759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4151.8,"last_update":"2026-03-21T17:04:49.0688391Z"} +2026/03/21 17:04:54 ───────────────────────────────────────────────── +2026/03/21 17:04:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:04:59 [log_collector] {"stage_name":"log_collector","events_processed":33154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6630.8,"last_update":"2026-03-21T17:04:54.068120705Z"} +2026/03/21 17:04:59 [metric_collector] {"stage_name":"metric_collector","events_processed":20764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4152.8,"last_update":"2026-03-21T17:04:54.068344113Z"} +2026/03/21 17:04:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:04:54.077252969Z"} +2026/03/21 17:04:59 [detection_layer] {"stage_name":"detection_layer","events_processed":689,"events_dropped":0,"avg_latency_ms":19.174362372933324,"throughput_eps":0,"last_update":"2026-03-21T17:04:54.210566376Z"} +2026/03/21 17:04:59 [transform_engine] {"stage_name":"transform_engine","events_processed":692,"events_dropped":0,"avg_latency_ms":2705.0851388320793,"throughput_eps":0,"last_update":"2026-03-21T17:04:54.210548833Z"} +2026/03/21 17:04:59 ───────────────────────────────────────────────── +2026/03/21 17:05:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:05:04 [log_collector] {"stage_name":"log_collector","events_processed":33154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6630.8,"last_update":"2026-03-21T17:04:59.06884849Z"} +2026/03/21 17:05:04 [metric_collector] {"stage_name":"metric_collector","events_processed":20769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4153.8,"last_update":"2026-03-21T17:04:59.069276179Z"} +2026/03/21 17:05:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:04:59.078265359Z"} +2026/03/21 17:05:04 [detection_layer] {"stage_name":"detection_layer","events_processed":689,"events_dropped":0,"avg_latency_ms":19.174362372933324,"throughput_eps":0,"last_update":"2026-03-21T17:04:59.21057845Z"} +2026/03/21 17:05:04 [transform_engine] {"stage_name":"transform_engine","events_processed":692,"events_dropped":0,"avg_latency_ms":2705.0851388320793,"throughput_eps":0,"last_update":"2026-03-21T17:04:59.21047365Z"} +2026/03/21 17:05:04 ───────────────────────────────────────────────── +2026/03/21 17:05:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:05:09 [log_collector] {"stage_name":"log_collector","events_processed":33154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6630.8,"last_update":"2026-03-21T17:05:04.068802931Z"} +2026/03/21 17:05:09 [metric_collector] {"stage_name":"metric_collector","events_processed":20774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4154.8,"last_update":"2026-03-21T17:05:04.069323759Z"} +2026/03/21 17:05:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:05:04.079396814Z"} +2026/03/21 17:05:09 [detection_layer] {"stage_name":"detection_layer","events_processed":689,"events_dropped":0,"avg_latency_ms":19.174362372933324,"throughput_eps":0,"last_update":"2026-03-21T17:05:04.211378431Z"} +2026/03/21 17:05:09 [transform_engine] {"stage_name":"transform_engine","events_processed":692,"events_dropped":0,"avg_latency_ms":2705.0851388320793,"throughput_eps":0,"last_update":"2026-03-21T17:05:04.209648518Z"} +2026/03/21 17:05:09 ───────────────────────────────────────────────── +Saved state: 27 clusters, 33155 messages, reason: none +2026/03/21 17:05:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:05:14 [metric_collector] {"stage_name":"metric_collector","events_processed":20779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4155.8,"last_update":"2026-03-21T17:05:09.069708408Z"} +2026/03/21 17:05:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:05:09.080169617Z"} +2026/03/21 17:05:14 [detection_layer] {"stage_name":"detection_layer","events_processed":689,"events_dropped":0,"avg_latency_ms":19.174362372933324,"throughput_eps":0,"last_update":"2026-03-21T17:05:09.210420859Z"} +2026/03/21 17:05:14 [transform_engine] {"stage_name":"transform_engine","events_processed":692,"events_dropped":0,"avg_latency_ms":2705.0851388320793,"throughput_eps":0,"last_update":"2026-03-21T17:05:09.210395791Z"} +2026/03/21 17:05:14 [log_collector] {"stage_name":"log_collector","events_processed":33154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6630.8,"last_update":"2026-03-21T17:05:09.069083201Z"} +2026/03/21 17:05:14 ───────────────────────────────────────────────── +2026/03/21 17:05:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:05:19 [log_collector] {"stage_name":"log_collector","events_processed":33159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6631.8,"last_update":"2026-03-21T17:05:14.068602592Z"} +2026/03/21 17:05:19 [metric_collector] {"stage_name":"metric_collector","events_processed":20783,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4156.6,"last_update":"2026-03-21T17:05:14.068681002Z"} +2026/03/21 17:05:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:05:14.084454226Z"} +2026/03/21 17:05:19 [detection_layer] {"stage_name":"detection_layer","events_processed":689,"events_dropped":0,"avg_latency_ms":19.174362372933324,"throughput_eps":0,"last_update":"2026-03-21T17:05:14.210633708Z"} +2026/03/21 17:05:19 [transform_engine] {"stage_name":"transform_engine","events_processed":692,"events_dropped":0,"avg_latency_ms":2705.0851388320793,"throughput_eps":0,"last_update":"2026-03-21T17:05:14.210649339Z"} +2026/03/21 17:05:19 ───────────────────────────────────────────────── +2026/03/21 17:05:19 [ANOMALY] time=2026-03-21T17:05:19Z score=0.8220 method=SEAD details=MAD!:w=0.31,s=0.91 RRCF-fast!:w=0.18,s=0.97 RRCF-mid!:w=0.13,s=0.94 RRCF-slow:w=0.12,s=0.91 COPOD!:w=0.25,s=0.50 +2026/03/21 17:05:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:05:24 [log_collector] {"stage_name":"log_collector","events_processed":33159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6631.8,"last_update":"2026-03-21T17:05:19.068058892Z"} +2026/03/21 17:05:24 [metric_collector] {"stage_name":"metric_collector","events_processed":20789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4157.8,"last_update":"2026-03-21T17:05:19.068278451Z"} +2026/03/21 17:05:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:05:19.078052985Z"} +2026/03/21 17:05:24 [detection_layer] {"stage_name":"detection_layer","events_processed":689,"events_dropped":0,"avg_latency_ms":19.174362372933324,"throughput_eps":0,"last_update":"2026-03-21T17:05:19.21039389Z"} +2026/03/21 17:05:24 [transform_engine] {"stage_name":"transform_engine","events_processed":693,"events_dropped":0,"avg_latency_ms":2187.037722265664,"throughput_eps":0,"last_update":"2026-03-21T17:05:19.325260241Z"} +2026/03/21 17:05:24 ───────────────────────────────────────────────── +2026/03/21 17:05:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:05:29 [transform_engine] {"stage_name":"transform_engine","events_processed":693,"events_dropped":0,"avg_latency_ms":2187.037722265664,"throughput_eps":0,"last_update":"2026-03-21T17:05:24.210333575Z"} +2026/03/21 17:05:29 [log_collector] {"stage_name":"log_collector","events_processed":33159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6631.8,"last_update":"2026-03-21T17:05:24.06877258Z"} +2026/03/21 17:05:29 [metric_collector] {"stage_name":"metric_collector","events_processed":20794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4158.8,"last_update":"2026-03-21T17:05:24.069117941Z"} +2026/03/21 17:05:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8320,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:05:24.079105031Z"} +2026/03/21 17:05:29 [detection_layer] {"stage_name":"detection_layer","events_processed":690,"events_dropped":0,"avg_latency_ms":17.77694489834666,"throughput_eps":0,"last_update":"2026-03-21T17:05:24.210379203Z"} +2026/03/21 17:05:29 ───────────────────────────────────────────────── +2026/03/21 17:05:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:05:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:05:29.075672596Z"} +2026/03/21 17:05:34 [detection_layer] {"stage_name":"detection_layer","events_processed":690,"events_dropped":0,"avg_latency_ms":17.77694489834666,"throughput_eps":0,"last_update":"2026-03-21T17:05:29.20992902Z"} +2026/03/21 17:05:34 [transform_engine] {"stage_name":"transform_engine","events_processed":693,"events_dropped":0,"avg_latency_ms":2187.037722265664,"throughput_eps":0,"last_update":"2026-03-21T17:05:29.20991851Z"} +2026/03/21 17:05:34 [log_collector] {"stage_name":"log_collector","events_processed":33159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6631.8,"last_update":"2026-03-21T17:05:29.068791005Z"} +2026/03/21 17:05:34 [metric_collector] {"stage_name":"metric_collector","events_processed":20799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4159.8,"last_update":"2026-03-21T17:05:29.068782057Z"} +2026/03/21 17:05:34 ───────────────────────────────────────────────── +2026/03/21 17:05:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:05:39 [log_collector] {"stage_name":"log_collector","events_processed":33159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6631.8,"last_update":"2026-03-21T17:05:34.068730428Z"} +2026/03/21 17:05:39 [metric_collector] {"stage_name":"metric_collector","events_processed":20804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4160.8,"last_update":"2026-03-21T17:05:34.068996969Z"} +2026/03/21 17:05:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:05:34.077373585Z"} +2026/03/21 17:05:39 [detection_layer] {"stage_name":"detection_layer","events_processed":690,"events_dropped":0,"avg_latency_ms":17.77694489834666,"throughput_eps":0,"last_update":"2026-03-21T17:05:34.210574217Z"} +2026/03/21 17:05:39 [transform_engine] {"stage_name":"transform_engine","events_processed":693,"events_dropped":0,"avg_latency_ms":2187.037722265664,"throughput_eps":0,"last_update":"2026-03-21T17:05:34.210603392Z"} +2026/03/21 17:05:39 ───────────────────────────────────────────────── +2026/03/21 17:05:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:05:44 [detection_layer] {"stage_name":"detection_layer","events_processed":690,"events_dropped":0,"avg_latency_ms":17.77694489834666,"throughput_eps":0,"last_update":"2026-03-21T17:05:39.210155616Z"} +2026/03/21 17:05:44 [transform_engine] {"stage_name":"transform_engine","events_processed":693,"events_dropped":0,"avg_latency_ms":2187.037722265664,"throughput_eps":0,"last_update":"2026-03-21T17:05:39.210173751Z"} +2026/03/21 17:05:44 [log_collector] {"stage_name":"log_collector","events_processed":33159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6631.8,"last_update":"2026-03-21T17:05:39.06857358Z"} +2026/03/21 17:05:44 [metric_collector] {"stage_name":"metric_collector","events_processed":20809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4161.8,"last_update":"2026-03-21T17:05:39.068809673Z"} +2026/03/21 17:05:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:05:39.075844127Z"} +2026/03/21 17:05:44 ───────────────────────────────────────────────── +2026/03/21 17:05:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:05:49 [log_collector] {"stage_name":"log_collector","events_processed":33159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6631.8,"last_update":"2026-03-21T17:05:44.068535939Z"} +2026/03/21 17:05:49 [metric_collector] {"stage_name":"metric_collector","events_processed":20814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4162.8,"last_update":"2026-03-21T17:05:44.068743827Z"} +2026/03/21 17:05:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:05:44.076019123Z"} +2026/03/21 17:05:49 [detection_layer] {"stage_name":"detection_layer","events_processed":690,"events_dropped":0,"avg_latency_ms":17.77694489834666,"throughput_eps":0,"last_update":"2026-03-21T17:05:44.210299483Z"} +2026/03/21 17:05:49 [transform_engine] {"stage_name":"transform_engine","events_processed":693,"events_dropped":0,"avg_latency_ms":2187.037722265664,"throughput_eps":0,"last_update":"2026-03-21T17:05:44.21031903Z"} +2026/03/21 17:05:49 ───────────────────────────────────────────────── +2026/03/21 17:05:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:05:54 [transform_engine] {"stage_name":"transform_engine","events_processed":694,"events_dropped":0,"avg_latency_ms":2047.2987070125312,"throughput_eps":0,"last_update":"2026-03-21T17:05:50.698423651Z"} +2026/03/21 17:05:54 [log_collector] {"stage_name":"log_collector","events_processed":33159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6631.8,"last_update":"2026-03-21T17:05:49.068135191Z"} +2026/03/21 17:05:54 [metric_collector] {"stage_name":"metric_collector","events_processed":20819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4163.8,"last_update":"2026-03-21T17:05:49.068507494Z"} +2026/03/21 17:05:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8330,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:05:49.074814275Z"} +2026/03/21 17:05:54 [detection_layer] {"stage_name":"detection_layer","events_processed":690,"events_dropped":0,"avg_latency_ms":17.77694489834666,"throughput_eps":0,"last_update":"2026-03-21T17:05:49.210067409Z"} +2026/03/21 17:05:54 ───────────────────────────────────────────────── +2026/03/21 17:05:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:05:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:05:54.07694757Z"} +2026/03/21 17:05:59 [detection_layer] {"stage_name":"detection_layer","events_processed":691,"events_dropped":0,"avg_latency_ms":17.24224211867733,"throughput_eps":0,"last_update":"2026-03-21T17:05:54.210138223Z"} +2026/03/21 17:05:59 [transform_engine] {"stage_name":"transform_engine","events_processed":694,"events_dropped":0,"avg_latency_ms":2047.2987070125312,"throughput_eps":0,"last_update":"2026-03-21T17:05:54.21014739Z"} +2026/03/21 17:05:59 [log_collector] {"stage_name":"log_collector","events_processed":33159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6631.8,"last_update":"2026-03-21T17:05:54.068771689Z"} +2026/03/21 17:05:59 [metric_collector] {"stage_name":"metric_collector","events_processed":20824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4164.8,"last_update":"2026-03-21T17:05:54.069143201Z"} +2026/03/21 17:05:59 ───────────────────────────────────────────────── +2026/03/21 17:06:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:06:04 [log_collector] {"stage_name":"log_collector","events_processed":33170,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6634,"last_update":"2026-03-21T17:05:59.068269045Z"} +2026/03/21 17:06:04 [metric_collector] {"stage_name":"metric_collector","events_processed":20829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4165.8,"last_update":"2026-03-21T17:05:59.068792848Z"} +2026/03/21 17:06:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:05:59.076178245Z"} +2026/03/21 17:06:04 [detection_layer] {"stage_name":"detection_layer","events_processed":691,"events_dropped":0,"avg_latency_ms":17.24224211867733,"throughput_eps":0,"last_update":"2026-03-21T17:05:59.210438787Z"} +2026/03/21 17:06:04 [transform_engine] {"stage_name":"transform_engine","events_processed":694,"events_dropped":0,"avg_latency_ms":2047.2987070125312,"throughput_eps":0,"last_update":"2026-03-21T17:05:59.210449728Z"} +2026/03/21 17:06:04 ───────────────────────────────────────────────── +2026/03/21 17:06:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:06:09 [detection_layer] {"stage_name":"detection_layer","events_processed":691,"events_dropped":0,"avg_latency_ms":17.24224211867733,"throughput_eps":0,"last_update":"2026-03-21T17:06:04.210068639Z"} +2026/03/21 17:06:09 [transform_engine] {"stage_name":"transform_engine","events_processed":694,"events_dropped":0,"avg_latency_ms":2047.2987070125312,"throughput_eps":0,"last_update":"2026-03-21T17:06:04.210063659Z"} +2026/03/21 17:06:09 [log_collector] {"stage_name":"log_collector","events_processed":33184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6636.8,"last_update":"2026-03-21T17:06:04.068735549Z"} +2026/03/21 17:06:09 [metric_collector] {"stage_name":"metric_collector","events_processed":20834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4166.8,"last_update":"2026-03-21T17:06:04.068804291Z"} +2026/03/21 17:06:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:06:04.078012159Z"} +2026/03/21 17:06:09 ───────────────────────────────────────────────── +Saved state: 27 clusters, 33512 messages, reason: none +2026/03/21 17:06:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:06:14 [log_collector] {"stage_name":"log_collector","events_processed":33454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6690.8,"last_update":"2026-03-21T17:06:09.068194711Z"} +2026/03/21 17:06:14 [metric_collector] {"stage_name":"metric_collector","events_processed":20839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4167.8,"last_update":"2026-03-21T17:06:09.068384285Z"} +2026/03/21 17:06:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:06:09.076099865Z"} +2026/03/21 17:06:14 [detection_layer] {"stage_name":"detection_layer","events_processed":691,"events_dropped":0,"avg_latency_ms":17.24224211867733,"throughput_eps":0,"last_update":"2026-03-21T17:06:09.211096507Z"} +2026/03/21 17:06:14 [transform_engine] {"stage_name":"transform_engine","events_processed":694,"events_dropped":0,"avg_latency_ms":2047.2987070125312,"throughput_eps":0,"last_update":"2026-03-21T17:06:09.211107628Z"} +2026/03/21 17:06:14 ───────────────────────────────────────────────── +2026/03/21 17:06:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:06:19 [log_collector] {"stage_name":"log_collector","events_processed":33515,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6703,"last_update":"2026-03-21T17:06:14.068751829Z"} +2026/03/21 17:06:19 [metric_collector] {"stage_name":"metric_collector","events_processed":20844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4168.8,"last_update":"2026-03-21T17:06:14.069042775Z"} +2026/03/21 17:06:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:06:14.081458469Z"} +2026/03/21 17:06:19 [detection_layer] {"stage_name":"detection_layer","events_processed":691,"events_dropped":0,"avg_latency_ms":17.24224211867733,"throughput_eps":0,"last_update":"2026-03-21T17:06:14.210914507Z"} +2026/03/21 17:06:19 [transform_engine] {"stage_name":"transform_engine","events_processed":694,"events_dropped":0,"avg_latency_ms":2047.2987070125312,"throughput_eps":0,"last_update":"2026-03-21T17:06:14.209690422Z"} +2026/03/21 17:06:19 ───────────────────────────────────────────────── +2026/03/21 17:06:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:06:24 [metric_collector] {"stage_name":"metric_collector","events_processed":20849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4169.8,"last_update":"2026-03-21T17:06:19.069616813Z"} +2026/03/21 17:06:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8342,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:06:19.078435155Z"} +2026/03/21 17:06:24 [detection_layer] {"stage_name":"detection_layer","events_processed":691,"events_dropped":0,"avg_latency_ms":17.24224211867733,"throughput_eps":0,"last_update":"2026-03-21T17:06:19.21090688Z"} +2026/03/21 17:06:24 [transform_engine] {"stage_name":"transform_engine","events_processed":695,"events_dropped":0,"avg_latency_ms":1668.893161210025,"throughput_eps":0,"last_update":"2026-03-21T17:06:19.365028578Z"} +2026/03/21 17:06:24 [log_collector] {"stage_name":"log_collector","events_processed":33515,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6703,"last_update":"2026-03-21T17:06:19.06929665Z"} +2026/03/21 17:06:24 ───────────────────────────────────────────────── +2026/03/21 17:06:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:06:29 [log_collector] {"stage_name":"log_collector","events_processed":33515,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6703,"last_update":"2026-03-21T17:06:24.06814326Z"} +2026/03/21 17:06:29 [metric_collector] {"stage_name":"metric_collector","events_processed":20854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4170.8,"last_update":"2026-03-21T17:06:24.068658647Z"} +2026/03/21 17:06:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:06:24.078644826Z"} +2026/03/21 17:06:29 [detection_layer] {"stage_name":"detection_layer","events_processed":692,"events_dropped":0,"avg_latency_ms":18.164197494941863,"throughput_eps":0,"last_update":"2026-03-21T17:06:24.209940289Z"} +2026/03/21 17:06:29 [transform_engine] {"stage_name":"transform_engine","events_processed":695,"events_dropped":0,"avg_latency_ms":1668.893161210025,"throughput_eps":0,"last_update":"2026-03-21T17:06:24.209898649Z"} +2026/03/21 17:06:29 ───────────────────────────────────────────────── +2026/03/21 17:06:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:06:34 [log_collector] {"stage_name":"log_collector","events_processed":33515,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6703,"last_update":"2026-03-21T17:06:29.068693573Z"} +2026/03/21 17:06:34 [metric_collector] {"stage_name":"metric_collector","events_processed":20859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4171.8,"last_update":"2026-03-21T17:06:29.069009387Z"} +2026/03/21 17:06:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:06:29.077642615Z"} +2026/03/21 17:06:34 [detection_layer] {"stage_name":"detection_layer","events_processed":692,"events_dropped":0,"avg_latency_ms":18.164197494941863,"throughput_eps":0,"last_update":"2026-03-21T17:06:29.209933545Z"} +2026/03/21 17:06:34 [transform_engine] {"stage_name":"transform_engine","events_processed":695,"events_dropped":0,"avg_latency_ms":1668.893161210025,"throughput_eps":0,"last_update":"2026-03-21T17:06:29.20981637Z"} +2026/03/21 17:06:34 ───────────────────────────────────────────────── +2026/03/21 17:06:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:06:39 [transform_engine] {"stage_name":"transform_engine","events_processed":695,"events_dropped":0,"avg_latency_ms":1668.893161210025,"throughput_eps":0,"last_update":"2026-03-21T17:06:34.210124278Z"} +2026/03/21 17:06:39 [log_collector] {"stage_name":"log_collector","events_processed":33515,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6703,"last_update":"2026-03-21T17:06:34.068087781Z"} +2026/03/21 17:06:39 [metric_collector] {"stage_name":"metric_collector","events_processed":20864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4172.8,"last_update":"2026-03-21T17:06:34.068763576Z"} +2026/03/21 17:06:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:06:34.078835489Z"} +2026/03/21 17:06:39 [detection_layer] {"stage_name":"detection_layer","events_processed":692,"events_dropped":0,"avg_latency_ms":18.164197494941863,"throughput_eps":0,"last_update":"2026-03-21T17:06:34.210109821Z"} +2026/03/21 17:06:39 ───────────────────────────────────────────────── +2026/03/21 17:06:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:06:44 [log_collector] {"stage_name":"log_collector","events_processed":33515,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6703,"last_update":"2026-03-21T17:06:39.068648164Z"} +2026/03/21 17:06:44 [metric_collector] {"stage_name":"metric_collector","events_processed":20869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4173.8,"last_update":"2026-03-21T17:06:39.069070783Z"} +2026/03/21 17:06:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8350,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:06:39.079120945Z"} +2026/03/21 17:06:44 [detection_layer] {"stage_name":"detection_layer","events_processed":692,"events_dropped":0,"avg_latency_ms":18.164197494941863,"throughput_eps":0,"last_update":"2026-03-21T17:06:39.21033959Z"} +2026/03/21 17:06:44 [transform_engine] {"stage_name":"transform_engine","events_processed":695,"events_dropped":0,"avg_latency_ms":1668.893161210025,"throughput_eps":0,"last_update":"2026-03-21T17:06:39.210409073Z"} +2026/03/21 17:06:44 ───────────────────────────────────────────────── +2026/03/21 17:06:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:06:49 [log_collector] {"stage_name":"log_collector","events_processed":33515,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6703,"last_update":"2026-03-21T17:06:44.068816082Z"} +2026/03/21 17:06:49 [metric_collector] {"stage_name":"metric_collector","events_processed":20874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4174.8,"last_update":"2026-03-21T17:06:44.069181883Z"} +2026/03/21 17:06:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:06:44.077839106Z"} +2026/03/21 17:06:49 [detection_layer] {"stage_name":"detection_layer","events_processed":692,"events_dropped":0,"avg_latency_ms":18.164197494941863,"throughput_eps":0,"last_update":"2026-03-21T17:06:44.210102233Z"} +2026/03/21 17:06:49 [transform_engine] {"stage_name":"transform_engine","events_processed":695,"events_dropped":0,"avg_latency_ms":1668.893161210025,"throughput_eps":0,"last_update":"2026-03-21T17:06:44.210058258Z"} +2026/03/21 17:06:49 ───────────────────────────────────────────────── +2026/03/21 17:06:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:06:54 [detection_layer] {"stage_name":"detection_layer","events_processed":692,"events_dropped":0,"avg_latency_ms":18.164197494941863,"throughput_eps":0,"last_update":"2026-03-21T17:06:49.210481598Z"} +2026/03/21 17:06:54 [transform_engine] {"stage_name":"transform_engine","events_processed":696,"events_dropped":0,"avg_latency_ms":1349.80661456802,"throughput_eps":0,"last_update":"2026-03-21T17:06:49.283903641Z"} +2026/03/21 17:06:54 [log_collector] {"stage_name":"log_collector","events_processed":33515,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6703,"last_update":"2026-03-21T17:06:49.068784881Z"} +2026/03/21 17:06:54 [metric_collector] {"stage_name":"metric_collector","events_processed":20879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4175.8,"last_update":"2026-03-21T17:06:49.069308043Z"} +2026/03/21 17:06:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:06:49.078158978Z"} +2026/03/21 17:06:54 ───────────────────────────────────────────────── +2026/03/21 17:06:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:06:59 [detection_layer] {"stage_name":"detection_layer","events_processed":693,"events_dropped":0,"avg_latency_ms":19.402935595953494,"throughput_eps":0,"last_update":"2026-03-21T17:06:54.21001433Z"} +2026/03/21 17:06:59 [transform_engine] {"stage_name":"transform_engine","events_processed":696,"events_dropped":0,"avg_latency_ms":1349.80661456802,"throughput_eps":0,"last_update":"2026-03-21T17:06:54.209871486Z"} +2026/03/21 17:06:59 [log_collector] {"stage_name":"log_collector","events_processed":33515,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6703,"last_update":"2026-03-21T17:06:54.068670509Z"} +2026/03/21 17:06:59 [metric_collector] {"stage_name":"metric_collector","events_processed":20884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4176.8,"last_update":"2026-03-21T17:06:54.069095784Z"} +2026/03/21 17:06:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:06:54.07764425Z"} +2026/03/21 17:06:59 ───────────────────────────────────────────────── +2026/03/21 17:07:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:07:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:06:59.079216098Z"} +2026/03/21 17:07:04 [detection_layer] {"stage_name":"detection_layer","events_processed":693,"events_dropped":0,"avg_latency_ms":19.402935595953494,"throughput_eps":0,"last_update":"2026-03-21T17:06:59.210554932Z"} +2026/03/21 17:07:04 [transform_engine] {"stage_name":"transform_engine","events_processed":696,"events_dropped":0,"avg_latency_ms":1349.80661456802,"throughput_eps":0,"last_update":"2026-03-21T17:06:59.210595631Z"} +2026/03/21 17:07:04 [log_collector] {"stage_name":"log_collector","events_processed":33515,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6703,"last_update":"2026-03-21T17:06:59.068925336Z"} +2026/03/21 17:07:04 [metric_collector] {"stage_name":"metric_collector","events_processed":20889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4177.8,"last_update":"2026-03-21T17:06:59.069466371Z"} +2026/03/21 17:07:04 ───────────────────────────────────────────────── +2026/03/21 17:07:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:07:09 [log_collector] {"stage_name":"log_collector","events_processed":33515,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6703,"last_update":"2026-03-21T17:07:04.069103182Z"} +2026/03/21 17:07:09 [metric_collector] {"stage_name":"metric_collector","events_processed":20894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4178.8,"last_update":"2026-03-21T17:07:04.069780539Z"} +2026/03/21 17:07:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8360,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:07:04.078356446Z"} +2026/03/21 17:07:09 [detection_layer] {"stage_name":"detection_layer","events_processed":693,"events_dropped":0,"avg_latency_ms":19.402935595953494,"throughput_eps":0,"last_update":"2026-03-21T17:07:04.210698895Z"} +2026/03/21 17:07:09 [transform_engine] {"stage_name":"transform_engine","events_processed":696,"events_dropped":0,"avg_latency_ms":1349.80661456802,"throughput_eps":0,"last_update":"2026-03-21T17:07:04.210677584Z"} +2026/03/21 17:07:09 ───────────────────────────────────────────────── +2026/03/21 17:07:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:07:14 [detection_layer] {"stage_name":"detection_layer","events_processed":693,"events_dropped":0,"avg_latency_ms":19.402935595953494,"throughput_eps":0,"last_update":"2026-03-21T17:07:09.210627504Z"} +2026/03/21 17:07:14 [transform_engine] {"stage_name":"transform_engine","events_processed":696,"events_dropped":0,"avg_latency_ms":1349.80661456802,"throughput_eps":0,"last_update":"2026-03-21T17:07:09.210754648Z"} +2026/03/21 17:07:14 [log_collector] {"stage_name":"log_collector","events_processed":33515,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6703,"last_update":"2026-03-21T17:07:09.06880139Z"} +2026/03/21 17:07:14 [metric_collector] {"stage_name":"metric_collector","events_processed":20899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4179.8,"last_update":"2026-03-21T17:07:09.069103971Z"} +2026/03/21 17:07:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:07:09.079284341Z"} +2026/03/21 17:07:14 ───────────────────────────────────────────────── +2026/03/21 17:07:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:07:19 [transform_engine] {"stage_name":"transform_engine","events_processed":696,"events_dropped":0,"avg_latency_ms":1349.80661456802,"throughput_eps":0,"last_update":"2026-03-21T17:07:14.210639074Z"} +2026/03/21 17:07:19 [log_collector] {"stage_name":"log_collector","events_processed":33515,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6703,"last_update":"2026-03-21T17:07:14.068093461Z"} +2026/03/21 17:07:19 [metric_collector] {"stage_name":"metric_collector","events_processed":20904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4180.8,"last_update":"2026-03-21T17:07:14.068535598Z"} +2026/03/21 17:07:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:07:14.079244682Z"} +2026/03/21 17:07:19 [detection_layer] {"stage_name":"detection_layer","events_processed":693,"events_dropped":0,"avg_latency_ms":19.402935595953494,"throughput_eps":0,"last_update":"2026-03-21T17:07:14.21059563Z"} +2026/03/21 17:07:19 ───────────────────────────────────────────────── +2026/03/21 17:07:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:07:24 [log_collector] {"stage_name":"log_collector","events_processed":33515,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6703,"last_update":"2026-03-21T17:07:19.068101433Z"} +2026/03/21 17:07:24 [metric_collector] {"stage_name":"metric_collector","events_processed":20909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4181.8,"last_update":"2026-03-21T17:07:19.068458648Z"} +2026/03/21 17:07:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:07:19.078303857Z"} +2026/03/21 17:07:24 [detection_layer] {"stage_name":"detection_layer","events_processed":693,"events_dropped":0,"avg_latency_ms":19.402935595953494,"throughput_eps":0,"last_update":"2026-03-21T17:07:19.210657746Z"} +2026/03/21 17:07:24 [transform_engine] {"stage_name":"transform_engine","events_processed":697,"events_dropped":0,"avg_latency_ms":1095.225601254416,"throughput_eps":0,"last_update":"2026-03-21T17:07:19.287594843Z"} +2026/03/21 17:07:24 ───────────────────────────────────────────────── +2026/03/21 17:07:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:07:29 [metric_collector] {"stage_name":"metric_collector","events_processed":20914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4182.8,"last_update":"2026-03-21T17:07:24.069122687Z"} +2026/03/21 17:07:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:07:24.079712703Z"} +2026/03/21 17:07:29 [detection_layer] {"stage_name":"detection_layer","events_processed":694,"events_dropped":0,"avg_latency_ms":20.221513876762796,"throughput_eps":0,"last_update":"2026-03-21T17:07:24.209927314Z"} +2026/03/21 17:07:29 [transform_engine] {"stage_name":"transform_engine","events_processed":697,"events_dropped":0,"avg_latency_ms":1095.225601254416,"throughput_eps":0,"last_update":"2026-03-21T17:07:24.209940169Z"} +2026/03/21 17:07:29 [log_collector] {"stage_name":"log_collector","events_processed":33515,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6703,"last_update":"2026-03-21T17:07:24.068709024Z"} +2026/03/21 17:07:29 ───────────────────────────────────────────────── +Saved state: 27 clusters, 33516 messages, reason: none +2026/03/21 17:07:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:07:34 [log_collector] {"stage_name":"log_collector","events_processed":33515,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6703,"last_update":"2026-03-21T17:07:29.068801488Z"} +2026/03/21 17:07:34 [metric_collector] {"stage_name":"metric_collector","events_processed":20919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4183.8,"last_update":"2026-03-21T17:07:29.069336282Z"} +2026/03/21 17:07:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:07:29.07840771Z"} +2026/03/21 17:07:34 [detection_layer] {"stage_name":"detection_layer","events_processed":694,"events_dropped":0,"avg_latency_ms":20.221513876762796,"throughput_eps":0,"last_update":"2026-03-21T17:07:29.210762491Z"} +2026/03/21 17:07:34 [transform_engine] {"stage_name":"transform_engine","events_processed":697,"events_dropped":0,"avg_latency_ms":1095.225601254416,"throughput_eps":0,"last_update":"2026-03-21T17:07:29.210707606Z"} +2026/03/21 17:07:34 ───────────────────────────────────────────────── +2026/03/21 17:07:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:07:39 [detection_layer] {"stage_name":"detection_layer","events_processed":694,"events_dropped":0,"avg_latency_ms":20.221513876762796,"throughput_eps":0,"last_update":"2026-03-21T17:07:34.210265365Z"} +2026/03/21 17:07:39 [transform_engine] {"stage_name":"transform_engine","events_processed":697,"events_dropped":0,"avg_latency_ms":1095.225601254416,"throughput_eps":0,"last_update":"2026-03-21T17:07:34.210290513Z"} +2026/03/21 17:07:39 [log_collector] {"stage_name":"log_collector","events_processed":33518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6703.6,"last_update":"2026-03-21T17:07:39.068396454Z"} +2026/03/21 17:07:39 [metric_collector] {"stage_name":"metric_collector","events_processed":20924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4184.8,"last_update":"2026-03-21T17:07:34.06853285Z"} +2026/03/21 17:07:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:07:34.078050001Z"} +2026/03/21 17:07:39 ───────────────────────────────────────────────── +2026/03/21 17:07:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:07:44 [metric_collector] {"stage_name":"metric_collector","events_processed":20929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4185.8,"last_update":"2026-03-21T17:07:39.068714303Z"} +2026/03/21 17:07:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:07:39.075924795Z"} +2026/03/21 17:07:44 [detection_layer] {"stage_name":"detection_layer","events_processed":694,"events_dropped":0,"avg_latency_ms":20.221513876762796,"throughput_eps":0,"last_update":"2026-03-21T17:07:39.210199373Z"} +2026/03/21 17:07:44 [transform_engine] {"stage_name":"transform_engine","events_processed":697,"events_dropped":0,"avg_latency_ms":1095.225601254416,"throughput_eps":0,"last_update":"2026-03-21T17:07:39.210233149Z"} +2026/03/21 17:07:44 [log_collector] {"stage_name":"log_collector","events_processed":33528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6705.6,"last_update":"2026-03-21T17:07:44.068116403Z"} +2026/03/21 17:07:44 ───────────────────────────────────────────────── +2026/03/21 17:07:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:07:49 [transform_engine] {"stage_name":"transform_engine","events_processed":697,"events_dropped":0,"avg_latency_ms":1095.225601254416,"throughput_eps":0,"last_update":"2026-03-21T17:07:44.210095862Z"} +2026/03/21 17:07:49 [log_collector] {"stage_name":"log_collector","events_processed":33528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6705.6,"last_update":"2026-03-21T17:07:44.068116403Z"} +2026/03/21 17:07:49 [metric_collector] {"stage_name":"metric_collector","events_processed":20934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4186.8,"last_update":"2026-03-21T17:07:44.068559482Z"} +2026/03/21 17:07:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:07:44.074824373Z"} +2026/03/21 17:07:49 [detection_layer] {"stage_name":"detection_layer","events_processed":694,"events_dropped":0,"avg_latency_ms":20.221513876762796,"throughput_eps":0,"last_update":"2026-03-21T17:07:44.210055604Z"} +2026/03/21 17:07:49 ───────────────────────────────────────────────── +2026/03/21 17:07:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:07:54 [log_collector] {"stage_name":"log_collector","events_processed":33536,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6707.2,"last_update":"2026-03-21T17:07:49.068603242Z"} +2026/03/21 17:07:54 [metric_collector] {"stage_name":"metric_collector","events_processed":20939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4187.8,"last_update":"2026-03-21T17:07:49.068813604Z"} +2026/03/21 17:07:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:07:49.076562147Z"} +2026/03/21 17:07:54 [detection_layer] {"stage_name":"detection_layer","events_processed":694,"events_dropped":0,"avg_latency_ms":20.221513876762796,"throughput_eps":0,"last_update":"2026-03-21T17:07:49.210407644Z"} +2026/03/21 17:07:54 [transform_engine] {"stage_name":"transform_engine","events_processed":698,"events_dropped":0,"avg_latency_ms":911.0374286035328,"throughput_eps":0,"last_update":"2026-03-21T17:07:49.384039864Z"} +2026/03/21 17:07:54 ───────────────────────────────────────────────── +2026/03/21 17:07:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:07:59 [metric_collector] {"stage_name":"metric_collector","events_processed":20944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4188.8,"last_update":"2026-03-21T17:07:54.068999235Z"} +2026/03/21 17:07:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8380,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:07:54.075303992Z"} +2026/03/21 17:07:59 [detection_layer] {"stage_name":"detection_layer","events_processed":695,"events_dropped":0,"avg_latency_ms":18.750147501410236,"throughput_eps":0,"last_update":"2026-03-21T17:07:54.210439389Z"} +2026/03/21 17:07:59 [transform_engine] {"stage_name":"transform_engine","events_processed":698,"events_dropped":0,"avg_latency_ms":911.0374286035328,"throughput_eps":0,"last_update":"2026-03-21T17:07:54.210448718Z"} +2026/03/21 17:07:59 [log_collector] {"stage_name":"log_collector","events_processed":33548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6709.6,"last_update":"2026-03-21T17:07:54.068650497Z"} +2026/03/21 17:07:59 ───────────────────────────────────────────────── +2026/03/21 17:08:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:08:04 [metric_collector] {"stage_name":"metric_collector","events_processed":20949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4189.8,"last_update":"2026-03-21T17:07:59.069232358Z"} +2026/03/21 17:08:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:07:59.077270335Z"} +2026/03/21 17:08:04 [detection_layer] {"stage_name":"detection_layer","events_processed":695,"events_dropped":0,"avg_latency_ms":18.750147501410236,"throughput_eps":0,"last_update":"2026-03-21T17:07:59.210597409Z"} +2026/03/21 17:08:04 [transform_engine] {"stage_name":"transform_engine","events_processed":698,"events_dropped":0,"avg_latency_ms":911.0374286035328,"throughput_eps":0,"last_update":"2026-03-21T17:07:59.210604512Z"} +2026/03/21 17:08:04 [log_collector] {"stage_name":"log_collector","events_processed":33559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6711.8,"last_update":"2026-03-21T17:07:59.068899931Z"} +2026/03/21 17:08:04 ───────────────────────────────────────────────── +2026/03/21 17:08:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:08:09 [log_collector] {"stage_name":"log_collector","events_processed":33559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6711.8,"last_update":"2026-03-21T17:08:04.068641032Z"} +2026/03/21 17:08:09 [metric_collector] {"stage_name":"metric_collector","events_processed":20954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4190.8,"last_update":"2026-03-21T17:08:04.069009969Z"} +2026/03/21 17:08:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:08:04.077236818Z"} +2026/03/21 17:08:09 [detection_layer] {"stage_name":"detection_layer","events_processed":695,"events_dropped":0,"avg_latency_ms":18.750147501410236,"throughput_eps":0,"last_update":"2026-03-21T17:08:04.210637241Z"} +2026/03/21 17:08:09 [transform_engine] {"stage_name":"transform_engine","events_processed":698,"events_dropped":0,"avg_latency_ms":911.0374286035328,"throughput_eps":0,"last_update":"2026-03-21T17:08:04.210653523Z"} +2026/03/21 17:08:09 ───────────────────────────────────────────────── +2026/03/21 17:08:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:08:14 [detection_layer] {"stage_name":"detection_layer","events_processed":695,"events_dropped":0,"avg_latency_ms":18.750147501410236,"throughput_eps":0,"last_update":"2026-03-21T17:08:09.210616918Z"} +2026/03/21 17:08:14 [transform_engine] {"stage_name":"transform_engine","events_processed":698,"events_dropped":0,"avg_latency_ms":911.0374286035328,"throughput_eps":0,"last_update":"2026-03-21T17:08:09.210631345Z"} +2026/03/21 17:08:14 [log_collector] {"stage_name":"log_collector","events_processed":33559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6711.8,"last_update":"2026-03-21T17:08:09.068615207Z"} +2026/03/21 17:08:14 [metric_collector] {"stage_name":"metric_collector","events_processed":20959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4191.8,"last_update":"2026-03-21T17:08:09.069013079Z"} +2026/03/21 17:08:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:08:09.075367672Z"} +2026/03/21 17:08:14 ───────────────────────────────────────────────── +2026/03/21 17:08:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:08:19 [log_collector] {"stage_name":"log_collector","events_processed":33559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6711.8,"last_update":"2026-03-21T17:08:14.06809685Z"} +2026/03/21 17:08:19 [metric_collector] {"stage_name":"metric_collector","events_processed":20964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4192.8,"last_update":"2026-03-21T17:08:14.068487106Z"} +2026/03/21 17:08:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8388,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:08:14.077854781Z"} +2026/03/21 17:08:19 [detection_layer] {"stage_name":"detection_layer","events_processed":695,"events_dropped":0,"avg_latency_ms":18.750147501410236,"throughput_eps":0,"last_update":"2026-03-21T17:08:14.210254008Z"} +2026/03/21 17:08:19 [transform_engine] {"stage_name":"transform_engine","events_processed":698,"events_dropped":0,"avg_latency_ms":911.0374286035328,"throughput_eps":0,"last_update":"2026-03-21T17:08:14.210270008Z"} +2026/03/21 17:08:19 ───────────────────────────────────────────────── +2026/03/21 17:08:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:08:24 [detection_layer] {"stage_name":"detection_layer","events_processed":695,"events_dropped":0,"avg_latency_ms":18.750147501410236,"throughput_eps":0,"last_update":"2026-03-21T17:08:19.210615345Z"} +2026/03/21 17:08:24 [transform_engine] {"stage_name":"transform_engine","events_processed":699,"events_dropped":0,"avg_latency_ms":753.1951012828264,"throughput_eps":0,"last_update":"2026-03-21T17:08:19.33245313Z"} +2026/03/21 17:08:24 [log_collector] {"stage_name":"log_collector","events_processed":33559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6711.8,"last_update":"2026-03-21T17:08:19.068133675Z"} +2026/03/21 17:08:24 [metric_collector] {"stage_name":"metric_collector","events_processed":20969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4193.8,"last_update":"2026-03-21T17:08:19.06857455Z"} +2026/03/21 17:08:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8390,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:08:19.077371741Z"} +2026/03/21 17:08:24 ───────────────────────────────────────────────── +2026/03/21 17:08:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:08:29 [detection_layer] {"stage_name":"detection_layer","events_processed":696,"events_dropped":0,"avg_latency_ms":19.83085140112819,"throughput_eps":0,"last_update":"2026-03-21T17:08:24.210905465Z"} +2026/03/21 17:08:29 [transform_engine] {"stage_name":"transform_engine","events_processed":699,"events_dropped":0,"avg_latency_ms":753.1951012828264,"throughput_eps":0,"last_update":"2026-03-21T17:08:24.209777264Z"} +2026/03/21 17:08:29 [log_collector] {"stage_name":"log_collector","events_processed":33559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6711.8,"last_update":"2026-03-21T17:08:24.068733969Z"} +2026/03/21 17:08:29 [metric_collector] {"stage_name":"metric_collector","events_processed":20974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4194.8,"last_update":"2026-03-21T17:08:24.069124247Z"} +2026/03/21 17:08:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:08:24.07852805Z"} +2026/03/21 17:08:29 ───────────────────────────────────────────────── +2026/03/21 17:08:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:08:34 [transform_engine] {"stage_name":"transform_engine","events_processed":699,"events_dropped":0,"avg_latency_ms":753.1951012828264,"throughput_eps":0,"last_update":"2026-03-21T17:08:29.210072265Z"} +2026/03/21 17:08:34 [log_collector] {"stage_name":"log_collector","events_processed":33559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6711.8,"last_update":"2026-03-21T17:08:29.068531197Z"} +2026/03/21 17:08:34 [metric_collector] {"stage_name":"metric_collector","events_processed":20979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4195.8,"last_update":"2026-03-21T17:08:29.068985227Z"} +2026/03/21 17:08:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:08:29.078712851Z"} +2026/03/21 17:08:34 [detection_layer] {"stage_name":"detection_layer","events_processed":696,"events_dropped":0,"avg_latency_ms":19.83085140112819,"throughput_eps":0,"last_update":"2026-03-21T17:08:29.210183949Z"} +2026/03/21 17:08:34 ───────────────────────────────────────────────── +2026/03/21 17:08:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:08:39 [metric_collector] {"stage_name":"metric_collector","events_processed":20984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4196.8,"last_update":"2026-03-21T17:08:34.068577481Z"} +2026/03/21 17:08:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:08:34.0781254Z"} +2026/03/21 17:08:39 [detection_layer] {"stage_name":"detection_layer","events_processed":696,"events_dropped":0,"avg_latency_ms":19.83085140112819,"throughput_eps":0,"last_update":"2026-03-21T17:08:34.210558912Z"} +2026/03/21 17:08:39 [transform_engine] {"stage_name":"transform_engine","events_processed":699,"events_dropped":0,"avg_latency_ms":753.1951012828264,"throughput_eps":0,"last_update":"2026-03-21T17:08:34.210447859Z"} +2026/03/21 17:08:39 [log_collector] {"stage_name":"log_collector","events_processed":33559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6711.8,"last_update":"2026-03-21T17:08:34.068067984Z"} +2026/03/21 17:08:39 ───────────────────────────────────────────────── +2026/03/21 17:08:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:08:44 [log_collector] {"stage_name":"log_collector","events_processed":33559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6711.8,"last_update":"2026-03-21T17:08:39.068823958Z"} +2026/03/21 17:08:44 [metric_collector] {"stage_name":"metric_collector","events_processed":20989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.8,"last_update":"2026-03-21T17:08:39.069411313Z"} +2026/03/21 17:08:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:08:39.078222321Z"} +2026/03/21 17:08:44 [detection_layer] {"stage_name":"detection_layer","events_processed":696,"events_dropped":0,"avg_latency_ms":19.83085140112819,"throughput_eps":0,"last_update":"2026-03-21T17:08:39.210531765Z"} +2026/03/21 17:08:44 [transform_engine] {"stage_name":"transform_engine","events_processed":699,"events_dropped":0,"avg_latency_ms":753.1951012828264,"throughput_eps":0,"last_update":"2026-03-21T17:08:39.210579376Z"} +2026/03/21 17:08:44 ───────────────────────────────────────────────── +2026/03/21 17:08:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:08:49 [metric_collector] {"stage_name":"metric_collector","events_processed":20994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4198.8,"last_update":"2026-03-21T17:08:44.069298921Z"} +2026/03/21 17:08:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8400,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:08:44.078071956Z"} +2026/03/21 17:08:49 [detection_layer] {"stage_name":"detection_layer","events_processed":696,"events_dropped":0,"avg_latency_ms":19.83085140112819,"throughput_eps":0,"last_update":"2026-03-21T17:08:44.210314142Z"} +2026/03/21 17:08:49 [transform_engine] {"stage_name":"transform_engine","events_processed":699,"events_dropped":0,"avg_latency_ms":753.1951012828264,"throughput_eps":0,"last_update":"2026-03-21T17:08:44.210384748Z"} +2026/03/21 17:08:49 [log_collector] {"stage_name":"log_collector","events_processed":33559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6711.8,"last_update":"2026-03-21T17:08:44.068806217Z"} +2026/03/21 17:08:49 ───────────────────────────────────────────────── +2026/03/21 17:08:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:08:54 [metric_collector] {"stage_name":"metric_collector","events_processed":20999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4199.8,"last_update":"2026-03-21T17:08:49.06909731Z"} +2026/03/21 17:08:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8402,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:08:49.078878517Z"} +2026/03/21 17:08:54 [detection_layer] {"stage_name":"detection_layer","events_processed":696,"events_dropped":0,"avg_latency_ms":19.83085140112819,"throughput_eps":0,"last_update":"2026-03-21T17:08:49.210208034Z"} +2026/03/21 17:08:54 [transform_engine] {"stage_name":"transform_engine","events_processed":700,"events_dropped":0,"avg_latency_ms":621.3708558262612,"throughput_eps":0,"last_update":"2026-03-21T17:08:49.304332003Z"} +2026/03/21 17:08:54 [log_collector] {"stage_name":"log_collector","events_processed":33559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6711.8,"last_update":"2026-03-21T17:08:49.068654142Z"} +2026/03/21 17:08:54 ───────────────────────────────────────────────── +Saved state: 27 clusters, 33560 messages, reason: none +2026/03/21 17:08:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:08:59 [transform_engine] {"stage_name":"transform_engine","events_processed":700,"events_dropped":0,"avg_latency_ms":621.3708558262612,"throughput_eps":0,"last_update":"2026-03-21T17:08:54.210081786Z"} +2026/03/21 17:08:59 [log_collector] {"stage_name":"log_collector","events_processed":33559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6711.8,"last_update":"2026-03-21T17:08:54.068641451Z"} +2026/03/21 17:08:59 [metric_collector] {"stage_name":"metric_collector","events_processed":21004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4200.8,"last_update":"2026-03-21T17:08:54.068900306Z"} +2026/03/21 17:08:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:08:54.078879893Z"} +2026/03/21 17:08:59 [detection_layer] {"stage_name":"detection_layer","events_processed":697,"events_dropped":0,"avg_latency_ms":20.798471920902553,"throughput_eps":0,"last_update":"2026-03-21T17:08:54.210177008Z"} +2026/03/21 17:08:59 ───────────────────────────────────────────────── +2026/03/21 17:09:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:09:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:08:59.076439263Z"} +2026/03/21 17:09:04 [detection_layer] {"stage_name":"detection_layer","events_processed":697,"events_dropped":0,"avg_latency_ms":20.798471920902553,"throughput_eps":0,"last_update":"2026-03-21T17:08:59.210695506Z"} +2026/03/21 17:09:04 [transform_engine] {"stage_name":"transform_engine","events_processed":700,"events_dropped":0,"avg_latency_ms":621.3708558262612,"throughput_eps":0,"last_update":"2026-03-21T17:08:59.210670047Z"} +2026/03/21 17:09:04 [log_collector] {"stage_name":"log_collector","events_processed":33564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6712.8,"last_update":"2026-03-21T17:08:59.068557004Z"} +2026/03/21 17:09:04 [metric_collector] {"stage_name":"metric_collector","events_processed":21009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4201.8,"last_update":"2026-03-21T17:08:59.068779711Z"} +2026/03/21 17:09:04 ───────────────────────────────────────────────── +2026/03/21 17:09:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:09:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8408,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:09:04.076733331Z"} +2026/03/21 17:09:09 [detection_layer] {"stage_name":"detection_layer","events_processed":697,"events_dropped":0,"avg_latency_ms":20.798471920902553,"throughput_eps":0,"last_update":"2026-03-21T17:09:04.209939232Z"} +2026/03/21 17:09:09 [transform_engine] {"stage_name":"transform_engine","events_processed":700,"events_dropped":0,"avg_latency_ms":621.3708558262612,"throughput_eps":0,"last_update":"2026-03-21T17:09:04.209962006Z"} +2026/03/21 17:09:09 [log_collector] {"stage_name":"log_collector","events_processed":33564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6712.8,"last_update":"2026-03-21T17:09:04.068640839Z"} +2026/03/21 17:09:09 [metric_collector] {"stage_name":"metric_collector","events_processed":21014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202.8,"last_update":"2026-03-21T17:09:04.068904274Z"} +2026/03/21 17:09:09 ───────────────────────────────────────────────── +2026/03/21 17:09:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:09:14 [metric_collector] {"stage_name":"metric_collector","events_processed":21019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4203.8,"last_update":"2026-03-21T17:09:09.068969985Z"} +2026/03/21 17:09:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:09:09.074981129Z"} +2026/03/21 17:09:14 [detection_layer] {"stage_name":"detection_layer","events_processed":697,"events_dropped":0,"avg_latency_ms":20.798471920902553,"throughput_eps":0,"last_update":"2026-03-21T17:09:09.210261103Z"} +2026/03/21 17:09:14 [transform_engine] {"stage_name":"transform_engine","events_processed":700,"events_dropped":0,"avg_latency_ms":621.3708558262612,"throughput_eps":0,"last_update":"2026-03-21T17:09:09.210241076Z"} +2026/03/21 17:09:14 [log_collector] {"stage_name":"log_collector","events_processed":33564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6712.8,"last_update":"2026-03-21T17:09:09.068666804Z"} +2026/03/21 17:09:14 ───────────────────────────────────────────────── +2026/03/21 17:09:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:09:19 [log_collector] {"stage_name":"log_collector","events_processed":33564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6712.8,"last_update":"2026-03-21T17:09:14.068661989Z"} +2026/03/21 17:09:19 [metric_collector] {"stage_name":"metric_collector","events_processed":21024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4204.8,"last_update":"2026-03-21T17:09:14.068825902Z"} +2026/03/21 17:09:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:09:14.07470314Z"} +2026/03/21 17:09:19 [detection_layer] {"stage_name":"detection_layer","events_processed":697,"events_dropped":0,"avg_latency_ms":20.798471920902553,"throughput_eps":0,"last_update":"2026-03-21T17:09:14.210221502Z"} +2026/03/21 17:09:19 [transform_engine] {"stage_name":"transform_engine","events_processed":700,"events_dropped":0,"avg_latency_ms":621.3708558262612,"throughput_eps":0,"last_update":"2026-03-21T17:09:14.210170634Z"} +2026/03/21 17:09:19 ───────────────────────────────────────────────── +2026/03/21 17:09:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:09:24 [metric_collector] {"stage_name":"metric_collector","events_processed":21029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4205.8,"last_update":"2026-03-21T17:09:19.068228964Z"} +2026/03/21 17:09:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:09:19.078228879Z"} +2026/03/21 17:09:24 [detection_layer] {"stage_name":"detection_layer","events_processed":697,"events_dropped":0,"avg_latency_ms":20.798471920902553,"throughput_eps":0,"last_update":"2026-03-21T17:09:19.210491985Z"} +2026/03/21 17:09:24 [transform_engine] {"stage_name":"transform_engine","events_processed":700,"events_dropped":0,"avg_latency_ms":621.3708558262612,"throughput_eps":0,"last_update":"2026-03-21T17:09:19.210461466Z"} +2026/03/21 17:09:24 [log_collector] {"stage_name":"log_collector","events_processed":33564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6712.8,"last_update":"2026-03-21T17:09:19.068251436Z"} +2026/03/21 17:09:24 ───────────────────────────────────────────────── +2026/03/21 17:09:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:09:29 [log_collector] {"stage_name":"log_collector","events_processed":33564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6712.8,"last_update":"2026-03-21T17:09:24.068969856Z"} +2026/03/21 17:09:29 [metric_collector] {"stage_name":"metric_collector","events_processed":21034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4206.8,"last_update":"2026-03-21T17:09:24.069289739Z"} +2026/03/21 17:09:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:09:24.074950121Z"} +2026/03/21 17:09:29 [detection_layer] {"stage_name":"detection_layer","events_processed":698,"events_dropped":0,"avg_latency_ms":18.861144736722043,"throughput_eps":0,"last_update":"2026-03-21T17:09:24.210208394Z"} +2026/03/21 17:09:29 [transform_engine] {"stage_name":"transform_engine","events_processed":701,"events_dropped":0,"avg_latency_ms":525.517828461009,"throughput_eps":0,"last_update":"2026-03-21T17:09:24.21023744Z"} +2026/03/21 17:09:29 ───────────────────────────────────────────────── +2026/03/21 17:09:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:09:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:09:29.075738106Z"} +2026/03/21 17:09:34 [detection_layer] {"stage_name":"detection_layer","events_processed":698,"events_dropped":0,"avg_latency_ms":18.861144736722043,"throughput_eps":0,"last_update":"2026-03-21T17:09:29.209940937Z"} +2026/03/21 17:09:34 [transform_engine] {"stage_name":"transform_engine","events_processed":701,"events_dropped":0,"avg_latency_ms":525.517828461009,"throughput_eps":0,"last_update":"2026-03-21T17:09:29.20972881Z"} +2026/03/21 17:09:34 [log_collector] {"stage_name":"log_collector","events_processed":33564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6712.8,"last_update":"2026-03-21T17:09:29.068424205Z"} +2026/03/21 17:09:34 [metric_collector] {"stage_name":"metric_collector","events_processed":21039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4207.8,"last_update":"2026-03-21T17:09:29.068894656Z"} +2026/03/21 17:09:34 ───────────────────────────────────────────────── +2026/03/21 17:09:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:09:39 [metric_collector] {"stage_name":"metric_collector","events_processed":21044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4208.8,"last_update":"2026-03-21T17:09:34.069188904Z"} +2026/03/21 17:09:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8420,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:09:34.076450644Z"} +2026/03/21 17:09:39 [detection_layer] {"stage_name":"detection_layer","events_processed":698,"events_dropped":0,"avg_latency_ms":18.861144736722043,"throughput_eps":0,"last_update":"2026-03-21T17:09:34.210417754Z"} +2026/03/21 17:09:39 [transform_engine] {"stage_name":"transform_engine","events_processed":701,"events_dropped":0,"avg_latency_ms":525.517828461009,"throughput_eps":0,"last_update":"2026-03-21T17:09:34.210464664Z"} +2026/03/21 17:09:39 [log_collector] {"stage_name":"log_collector","events_processed":33564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6712.8,"last_update":"2026-03-21T17:09:34.068742879Z"} +2026/03/21 17:09:39 ───────────────────────────────────────────────── +2026/03/21 17:09:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:09:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:09:39.076954072Z"} +2026/03/21 17:09:44 [detection_layer] {"stage_name":"detection_layer","events_processed":698,"events_dropped":0,"avg_latency_ms":18.861144736722043,"throughput_eps":0,"last_update":"2026-03-21T17:09:39.210198368Z"} +2026/03/21 17:09:44 [transform_engine] {"stage_name":"transform_engine","events_processed":701,"events_dropped":0,"avg_latency_ms":525.517828461009,"throughput_eps":0,"last_update":"2026-03-21T17:09:39.210209359Z"} +2026/03/21 17:09:44 [log_collector] {"stage_name":"log_collector","events_processed":33564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6712.8,"last_update":"2026-03-21T17:09:39.068987933Z"} +2026/03/21 17:09:44 [metric_collector] {"stage_name":"metric_collector","events_processed":21049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4209.8,"last_update":"2026-03-21T17:09:39.069376527Z"} +2026/03/21 17:09:44 ───────────────────────────────────────────────── +2026/03/21 17:09:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:09:49 [transform_engine] {"stage_name":"transform_engine","events_processed":701,"events_dropped":0,"avg_latency_ms":525.517828461009,"throughput_eps":0,"last_update":"2026-03-21T17:09:44.210613095Z"} +2026/03/21 17:09:49 [log_collector] {"stage_name":"log_collector","events_processed":33575,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6715,"last_update":"2026-03-21T17:09:44.068820315Z"} +2026/03/21 17:09:49 [metric_collector] {"stage_name":"metric_collector","events_processed":21054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4210.8,"last_update":"2026-03-21T17:09:44.06917754Z"} +2026/03/21 17:09:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:09:44.077290901Z"} +2026/03/21 17:09:49 [detection_layer] {"stage_name":"detection_layer","events_processed":698,"events_dropped":0,"avg_latency_ms":18.861144736722043,"throughput_eps":0,"last_update":"2026-03-21T17:09:44.210597415Z"} +2026/03/21 17:09:49 ───────────────────────────────────────────────── +2026/03/21 17:09:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:09:54 [log_collector] {"stage_name":"log_collector","events_processed":33606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6721.2,"last_update":"2026-03-21T17:09:49.068769811Z"} +2026/03/21 17:09:54 [metric_collector] {"stage_name":"metric_collector","events_processed":21059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4211.8,"last_update":"2026-03-21T17:09:49.068722871Z"} +2026/03/21 17:09:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:09:49.074739768Z"} +2026/03/21 17:09:54 [detection_layer] {"stage_name":"detection_layer","events_processed":698,"events_dropped":0,"avg_latency_ms":18.861144736722043,"throughput_eps":0,"last_update":"2026-03-21T17:09:49.210226779Z"} +2026/03/21 17:09:54 [transform_engine] {"stage_name":"transform_engine","events_processed":702,"events_dropped":0,"avg_latency_ms":477.66171656880726,"throughput_eps":0,"last_update":"2026-03-21T17:09:49.496419735Z"} +2026/03/21 17:09:54 ───────────────────────────────────────────────── +Saved state: 27 clusters, 33806 messages, reason: none +2026/03/21 17:09:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:09:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:09:54.075187817Z"} +2026/03/21 17:09:59 [detection_layer] {"stage_name":"detection_layer","events_processed":699,"events_dropped":0,"avg_latency_ms":18.570466789377637,"throughput_eps":0,"last_update":"2026-03-21T17:09:54.210773187Z"} +2026/03/21 17:09:59 [transform_engine] {"stage_name":"transform_engine","events_processed":702,"events_dropped":0,"avg_latency_ms":477.66171656880726,"throughput_eps":0,"last_update":"2026-03-21T17:09:54.210655612Z"} +2026/03/21 17:09:59 [log_collector] {"stage_name":"log_collector","events_processed":33789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6757.8,"last_update":"2026-03-21T17:09:54.068548209Z"} +2026/03/21 17:09:59 [metric_collector] {"stage_name":"metric_collector","events_processed":21064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4212.8,"last_update":"2026-03-21T17:09:54.068587875Z"} +2026/03/21 17:09:59 ───────────────────────────────────────────────── +2026/03/21 17:10:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:10:04 [log_collector] {"stage_name":"log_collector","events_processed":33869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6773.8,"last_update":"2026-03-21T17:09:59.068295869Z"} +2026/03/21 17:10:04 [metric_collector] {"stage_name":"metric_collector","events_processed":21068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4213.6,"last_update":"2026-03-21T17:09:59.068236144Z"} +2026/03/21 17:10:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:09:59.074783516Z"} +2026/03/21 17:10:04 [detection_layer] {"stage_name":"detection_layer","events_processed":699,"events_dropped":0,"avg_latency_ms":18.570466789377637,"throughput_eps":0,"last_update":"2026-03-21T17:09:59.210056507Z"} +2026/03/21 17:10:04 [transform_engine] {"stage_name":"transform_engine","events_processed":702,"events_dropped":0,"avg_latency_ms":477.66171656880726,"throughput_eps":0,"last_update":"2026-03-21T17:09:59.210066335Z"} +2026/03/21 17:10:04 ───────────────────────────────────────────────── +2026/03/21 17:10:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:10:09 [metric_collector] {"stage_name":"metric_collector","events_processed":21074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4214.8,"last_update":"2026-03-21T17:10:04.068805487Z"} +2026/03/21 17:10:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:10:04.083381468Z"} +2026/03/21 17:10:09 [detection_layer] {"stage_name":"detection_layer","events_processed":699,"events_dropped":0,"avg_latency_ms":18.570466789377637,"throughput_eps":0,"last_update":"2026-03-21T17:10:04.210643113Z"} +2026/03/21 17:10:09 [transform_engine] {"stage_name":"transform_engine","events_processed":702,"events_dropped":0,"avg_latency_ms":477.66171656880726,"throughput_eps":0,"last_update":"2026-03-21T17:10:04.210655477Z"} +2026/03/21 17:10:09 [log_collector] {"stage_name":"log_collector","events_processed":33919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6783.8,"last_update":"2026-03-21T17:10:04.068591527Z"} +2026/03/21 17:10:09 ───────────────────────────────────────────────── +2026/03/21 17:10:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:10:14 [log_collector] {"stage_name":"log_collector","events_processed":33919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6783.8,"last_update":"2026-03-21T17:10:09.068420863Z"} +2026/03/21 17:10:14 [metric_collector] {"stage_name":"metric_collector","events_processed":21079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4215.8,"last_update":"2026-03-21T17:10:09.068606669Z"} +2026/03/21 17:10:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:10:09.074248266Z"} +2026/03/21 17:10:14 [detection_layer] {"stage_name":"detection_layer","events_processed":699,"events_dropped":0,"avg_latency_ms":18.570466789377637,"throughput_eps":0,"last_update":"2026-03-21T17:10:09.210377026Z"} +2026/03/21 17:10:14 [transform_engine] {"stage_name":"transform_engine","events_processed":702,"events_dropped":0,"avg_latency_ms":477.66171656880726,"throughput_eps":0,"last_update":"2026-03-21T17:10:09.210387928Z"} +2026/03/21 17:10:14 ───────────────────────────────────────────────── +2026/03/21 17:10:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:10:19 [transform_engine] {"stage_name":"transform_engine","events_processed":702,"events_dropped":0,"avg_latency_ms":477.66171656880726,"throughput_eps":0,"last_update":"2026-03-21T17:10:14.210471328Z"} +2026/03/21 17:10:19 [log_collector] {"stage_name":"log_collector","events_processed":33930,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6786,"last_update":"2026-03-21T17:10:14.068094731Z"} +2026/03/21 17:10:19 [metric_collector] {"stage_name":"metric_collector","events_processed":21084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4216.8,"last_update":"2026-03-21T17:10:14.068601131Z"} +2026/03/21 17:10:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:10:14.077159144Z"} +2026/03/21 17:10:19 [detection_layer] {"stage_name":"detection_layer","events_processed":699,"events_dropped":0,"avg_latency_ms":18.570466789377637,"throughput_eps":0,"last_update":"2026-03-21T17:10:14.210462151Z"} +2026/03/21 17:10:19 ───────────────────────────────────────────────── +2026/03/21 17:10:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:10:24 [log_collector] {"stage_name":"log_collector","events_processed":33937,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6787.4,"last_update":"2026-03-21T17:10:19.068436248Z"} +2026/03/21 17:10:24 [metric_collector] {"stage_name":"metric_collector","events_processed":21089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4217.8,"last_update":"2026-03-21T17:10:19.068795025Z"} +2026/03/21 17:10:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:10:19.075221064Z"} +2026/03/21 17:10:24 [detection_layer] {"stage_name":"detection_layer","events_processed":699,"events_dropped":0,"avg_latency_ms":18.570466789377637,"throughput_eps":0,"last_update":"2026-03-21T17:10:19.210475209Z"} +2026/03/21 17:10:24 [transform_engine] {"stage_name":"transform_engine","events_processed":703,"events_dropped":0,"avg_latency_ms":404.46523845504584,"throughput_eps":0,"last_update":"2026-03-21T17:10:19.322166739Z"} +2026/03/21 17:10:24 ───────────────────────────────────────────────── +2026/03/21 17:10:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:10:29 [log_collector] {"stage_name":"log_collector","events_processed":33946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6789.2,"last_update":"2026-03-21T17:10:24.068371487Z"} +2026/03/21 17:10:29 [metric_collector] {"stage_name":"metric_collector","events_processed":21094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4218.8,"last_update":"2026-03-21T17:10:24.068726668Z"} +2026/03/21 17:10:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:10:24.07754033Z"} +2026/03/21 17:10:29 [detection_layer] {"stage_name":"detection_layer","events_processed":700,"events_dropped":0,"avg_latency_ms":17.75901763150211,"throughput_eps":0,"last_update":"2026-03-21T17:10:24.210991793Z"} +2026/03/21 17:10:29 [transform_engine] {"stage_name":"transform_engine","events_processed":703,"events_dropped":0,"avg_latency_ms":404.46523845504584,"throughput_eps":0,"last_update":"2026-03-21T17:10:24.209767688Z"} +2026/03/21 17:10:29 ───────────────────────────────────────────────── +2026/03/21 17:10:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:10:34 [log_collector] {"stage_name":"log_collector","events_processed":33946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6789.2,"last_update":"2026-03-21T17:10:29.06902014Z"} +2026/03/21 17:10:34 [metric_collector] {"stage_name":"metric_collector","events_processed":21099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4219.8,"last_update":"2026-03-21T17:10:29.06965139Z"} +2026/03/21 17:10:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8442,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:10:29.077958212Z"} +2026/03/21 17:10:34 [detection_layer] {"stage_name":"detection_layer","events_processed":700,"events_dropped":0,"avg_latency_ms":17.75901763150211,"throughput_eps":0,"last_update":"2026-03-21T17:10:29.210207191Z"} +2026/03/21 17:10:34 [transform_engine] {"stage_name":"transform_engine","events_processed":703,"events_dropped":0,"avg_latency_ms":404.46523845504584,"throughput_eps":0,"last_update":"2026-03-21T17:10:29.210253429Z"} +2026/03/21 17:10:34 ───────────────────────────────────────────────── +2026/03/21 17:10:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:10:39 [log_collector] {"stage_name":"log_collector","events_processed":33946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6789.2,"last_update":"2026-03-21T17:10:34.06818302Z"} +2026/03/21 17:10:39 [metric_collector] {"stage_name":"metric_collector","events_processed":21104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4220.8,"last_update":"2026-03-21T17:10:34.068977231Z"} +2026/03/21 17:10:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:10:34.078333955Z"} +2026/03/21 17:10:39 [detection_layer] {"stage_name":"detection_layer","events_processed":700,"events_dropped":0,"avg_latency_ms":17.75901763150211,"throughput_eps":0,"last_update":"2026-03-21T17:10:34.21069084Z"} +2026/03/21 17:10:39 [transform_engine] {"stage_name":"transform_engine","events_processed":703,"events_dropped":0,"avg_latency_ms":404.46523845504584,"throughput_eps":0,"last_update":"2026-03-21T17:10:34.210588154Z"} +2026/03/21 17:10:39 ───────────────────────────────────────────────── +2026/03/21 17:10:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:10:44 [log_collector] {"stage_name":"log_collector","events_processed":33946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6789.2,"last_update":"2026-03-21T17:10:39.068088811Z"} +2026/03/21 17:10:44 [metric_collector] {"stage_name":"metric_collector","events_processed":21109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4221.8,"last_update":"2026-03-21T17:10:39.068675065Z"} +2026/03/21 17:10:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8446,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:10:39.079245092Z"} +2026/03/21 17:10:44 [detection_layer] {"stage_name":"detection_layer","events_processed":700,"events_dropped":0,"avg_latency_ms":17.75901763150211,"throughput_eps":0,"last_update":"2026-03-21T17:10:39.210597754Z"} +2026/03/21 17:10:44 [transform_engine] {"stage_name":"transform_engine","events_processed":703,"events_dropped":0,"avg_latency_ms":404.46523845504584,"throughput_eps":0,"last_update":"2026-03-21T17:10:39.210696372Z"} +2026/03/21 17:10:44 ───────────────────────────────────────────────── +2026/03/21 17:10:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:10:49 [detection_layer] {"stage_name":"detection_layer","events_processed":700,"events_dropped":0,"avg_latency_ms":17.75901763150211,"throughput_eps":0,"last_update":"2026-03-21T17:10:44.210449773Z"} +2026/03/21 17:10:49 [transform_engine] {"stage_name":"transform_engine","events_processed":703,"events_dropped":0,"avg_latency_ms":404.46523845504584,"throughput_eps":0,"last_update":"2026-03-21T17:10:44.210422711Z"} +2026/03/21 17:10:49 [log_collector] {"stage_name":"log_collector","events_processed":33946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6789.2,"last_update":"2026-03-21T17:10:44.068826058Z"} +2026/03/21 17:10:49 [metric_collector] {"stage_name":"metric_collector","events_processed":21114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4222.8,"last_update":"2026-03-21T17:10:44.069034356Z"} +2026/03/21 17:10:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:10:44.07913746Z"} +2026/03/21 17:10:49 ───────────────────────────────────────────────── +2026/03/21 17:10:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:10:54 [log_collector] {"stage_name":"log_collector","events_processed":33946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6789.2,"last_update":"2026-03-21T17:10:49.068877308Z"} +2026/03/21 17:10:54 [metric_collector] {"stage_name":"metric_collector","events_processed":21119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4223.8,"last_update":"2026-03-21T17:10:49.069219143Z"} +2026/03/21 17:10:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:10:49.077202736Z"} +2026/03/21 17:10:54 [detection_layer] {"stage_name":"detection_layer","events_processed":700,"events_dropped":0,"avg_latency_ms":17.75901763150211,"throughput_eps":0,"last_update":"2026-03-21T17:10:49.211568029Z"} +2026/03/21 17:10:54 [transform_engine] {"stage_name":"transform_engine","events_processed":704,"events_dropped":0,"avg_latency_ms":348.0822827640367,"throughput_eps":0,"last_update":"2026-03-21T17:10:49.333109266Z"} +2026/03/21 17:10:54 ───────────────────────────────────────────────── +2026/03/21 17:10:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:10:59 [log_collector] {"stage_name":"log_collector","events_processed":33946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6789.2,"last_update":"2026-03-21T17:10:54.068658633Z"} +2026/03/21 17:10:59 [metric_collector] {"stage_name":"metric_collector","events_processed":21124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4224.8,"last_update":"2026-03-21T17:10:54.069124354Z"} +2026/03/21 17:10:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8452,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:10:54.078131228Z"} +2026/03/21 17:10:59 [detection_layer] {"stage_name":"detection_layer","events_processed":701,"events_dropped":0,"avg_latency_ms":19.89300750520169,"throughput_eps":0,"last_update":"2026-03-21T17:10:54.210409281Z"} +2026/03/21 17:10:59 [transform_engine] {"stage_name":"transform_engine","events_processed":704,"events_dropped":0,"avg_latency_ms":348.0822827640367,"throughput_eps":0,"last_update":"2026-03-21T17:10:54.210384694Z"} +2026/03/21 17:10:59 ───────────────────────────────────────────────── +2026/03/21 17:11:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:11:04 [metric_collector] {"stage_name":"metric_collector","events_processed":21129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4225.8,"last_update":"2026-03-21T17:10:59.069277689Z"} +2026/03/21 17:11:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:10:59.078462943Z"} +2026/03/21 17:11:04 [detection_layer] {"stage_name":"detection_layer","events_processed":701,"events_dropped":0,"avg_latency_ms":19.89300750520169,"throughput_eps":0,"last_update":"2026-03-21T17:10:59.209865862Z"} +2026/03/21 17:11:04 [transform_engine] {"stage_name":"transform_engine","events_processed":704,"events_dropped":0,"avg_latency_ms":348.0822827640367,"throughput_eps":0,"last_update":"2026-03-21T17:10:59.209676899Z"} +2026/03/21 17:11:04 [log_collector] {"stage_name":"log_collector","events_processed":33946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6789.2,"last_update":"2026-03-21T17:10:59.06888138Z"} +2026/03/21 17:11:04 ───────────────────────────────────────────────── +2026/03/21 17:11:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:11:09 [detection_layer] {"stage_name":"detection_layer","events_processed":701,"events_dropped":0,"avg_latency_ms":19.89300750520169,"throughput_eps":0,"last_update":"2026-03-21T17:11:04.210816857Z"} +2026/03/21 17:11:09 [transform_engine] {"stage_name":"transform_engine","events_processed":704,"events_dropped":0,"avg_latency_ms":348.0822827640367,"throughput_eps":0,"last_update":"2026-03-21T17:11:04.209637277Z"} +2026/03/21 17:11:09 [log_collector] {"stage_name":"log_collector","events_processed":33946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6789.2,"last_update":"2026-03-21T17:11:04.06871278Z"} +2026/03/21 17:11:09 [metric_collector] {"stage_name":"metric_collector","events_processed":21134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4226.8,"last_update":"2026-03-21T17:11:04.069474359Z"} +2026/03/21 17:11:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:11:04.077402196Z"} +2026/03/21 17:11:09 ───────────────────────────────────────────────── +2026/03/21 17:11:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:11:14 [log_collector] {"stage_name":"log_collector","events_processed":33946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6789.2,"last_update":"2026-03-21T17:11:09.068284934Z"} +2026/03/21 17:11:14 [metric_collector] {"stage_name":"metric_collector","events_processed":21139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4227.8,"last_update":"2026-03-21T17:11:09.069048698Z"} +2026/03/21 17:11:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:11:09.078015805Z"} +2026/03/21 17:11:14 [detection_layer] {"stage_name":"detection_layer","events_processed":701,"events_dropped":0,"avg_latency_ms":19.89300750520169,"throughput_eps":0,"last_update":"2026-03-21T17:11:09.210454847Z"} +2026/03/21 17:11:14 [transform_engine] {"stage_name":"transform_engine","events_processed":704,"events_dropped":0,"avg_latency_ms":348.0822827640367,"throughput_eps":0,"last_update":"2026-03-21T17:11:09.210378701Z"} +2026/03/21 17:11:14 ───────────────────────────────────────────────── +2026/03/21 17:11:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:11:19 [log_collector] {"stage_name":"log_collector","events_processed":33946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6789.2,"last_update":"2026-03-21T17:11:14.068930224Z"} +2026/03/21 17:11:19 [metric_collector] {"stage_name":"metric_collector","events_processed":21144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4228.8,"last_update":"2026-03-21T17:11:14.06918408Z"} +2026/03/21 17:11:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:11:14.079150171Z"} +2026/03/21 17:11:19 [detection_layer] {"stage_name":"detection_layer","events_processed":701,"events_dropped":0,"avg_latency_ms":19.89300750520169,"throughput_eps":0,"last_update":"2026-03-21T17:11:14.210606792Z"} +2026/03/21 17:11:19 [transform_engine] {"stage_name":"transform_engine","events_processed":704,"events_dropped":0,"avg_latency_ms":348.0822827640367,"throughput_eps":0,"last_update":"2026-03-21T17:11:14.210633322Z"} +2026/03/21 17:11:19 ───────────────────────────────────────────────── +2026/03/21 17:11:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:11:24 [log_collector] {"stage_name":"log_collector","events_processed":33946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6789.2,"last_update":"2026-03-21T17:11:19.068726215Z"} +2026/03/21 17:11:24 [metric_collector] {"stage_name":"metric_collector","events_processed":21149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4229.8,"last_update":"2026-03-21T17:11:19.069183691Z"} +2026/03/21 17:11:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:11:19.078737762Z"} +2026/03/21 17:11:24 [detection_layer] {"stage_name":"detection_layer","events_processed":701,"events_dropped":0,"avg_latency_ms":19.89300750520169,"throughput_eps":0,"last_update":"2026-03-21T17:11:19.210002144Z"} +2026/03/21 17:11:24 [transform_engine] {"stage_name":"transform_engine","events_processed":705,"events_dropped":0,"avg_latency_ms":292.09347041122936,"throughput_eps":0,"last_update":"2026-03-21T17:11:19.278177728Z"} +2026/03/21 17:11:24 ───────────────────────────────────────────────── +2026/03/21 17:11:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:11:29 [metric_collector] {"stage_name":"metric_collector","events_processed":21154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4230.8,"last_update":"2026-03-21T17:11:24.069405737Z"} +2026/03/21 17:11:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:11:24.076687175Z"} +2026/03/21 17:11:29 [detection_layer] {"stage_name":"detection_layer","events_processed":702,"events_dropped":0,"avg_latency_ms":19.432769604161354,"throughput_eps":0,"last_update":"2026-03-21T17:11:24.210110622Z"} +2026/03/21 17:11:29 [transform_engine] {"stage_name":"transform_engine","events_processed":705,"events_dropped":0,"avg_latency_ms":292.09347041122936,"throughput_eps":0,"last_update":"2026-03-21T17:11:24.210227547Z"} +2026/03/21 17:11:29 [log_collector] {"stage_name":"log_collector","events_processed":33946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6789.2,"last_update":"2026-03-21T17:11:24.068929465Z"} +2026/03/21 17:11:29 ───────────────────────────────────────────────── +2026/03/21 17:11:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:11:34 [log_collector] {"stage_name":"log_collector","events_processed":33946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6789.2,"last_update":"2026-03-21T17:11:29.068627146Z"} +2026/03/21 17:11:34 [metric_collector] {"stage_name":"metric_collector","events_processed":21159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4231.8,"last_update":"2026-03-21T17:11:29.068990582Z"} +2026/03/21 17:11:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:11:29.07813558Z"} +2026/03/21 17:11:34 [detection_layer] {"stage_name":"detection_layer","events_processed":702,"events_dropped":0,"avg_latency_ms":19.432769604161354,"throughput_eps":0,"last_update":"2026-03-21T17:11:29.209859202Z"} +2026/03/21 17:11:34 [transform_engine] {"stage_name":"transform_engine","events_processed":705,"events_dropped":0,"avg_latency_ms":292.09347041122936,"throughput_eps":0,"last_update":"2026-03-21T17:11:29.209798515Z"} +2026/03/21 17:11:34 ───────────────────────────────────────────────── +Saved state: 27 clusters, 33947 messages, reason: none +2026/03/21 17:11:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:11:39 [log_collector] {"stage_name":"log_collector","events_processed":33946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6789.2,"last_update":"2026-03-21T17:11:34.068081261Z"} +2026/03/21 17:11:39 [metric_collector] {"stage_name":"metric_collector","events_processed":21164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4232.8,"last_update":"2026-03-21T17:11:34.068392848Z"} +2026/03/21 17:11:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:11:34.076195845Z"} +2026/03/21 17:11:39 [detection_layer] {"stage_name":"detection_layer","events_processed":702,"events_dropped":0,"avg_latency_ms":19.432769604161354,"throughput_eps":0,"last_update":"2026-03-21T17:11:34.210556458Z"} +2026/03/21 17:11:39 [transform_engine] {"stage_name":"transform_engine","events_processed":705,"events_dropped":0,"avg_latency_ms":292.09347041122936,"throughput_eps":0,"last_update":"2026-03-21T17:11:34.210519839Z"} +2026/03/21 17:11:39 ───────────────────────────────────────────────── +2026/03/21 17:11:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:11:44 [detection_layer] {"stage_name":"detection_layer","events_processed":702,"events_dropped":0,"avg_latency_ms":19.432769604161354,"throughput_eps":0,"last_update":"2026-03-21T17:11:39.210216017Z"} +2026/03/21 17:11:44 [transform_engine] {"stage_name":"transform_engine","events_processed":705,"events_dropped":0,"avg_latency_ms":292.09347041122936,"throughput_eps":0,"last_update":"2026-03-21T17:11:39.210136876Z"} +2026/03/21 17:11:44 [log_collector] {"stage_name":"log_collector","events_processed":33960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6792,"last_update":"2026-03-21T17:11:44.068338925Z"} +2026/03/21 17:11:44 [metric_collector] {"stage_name":"metric_collector","events_processed":21169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4233.8,"last_update":"2026-03-21T17:11:39.069171871Z"} +2026/03/21 17:11:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8470,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:11:39.075919266Z"} +2026/03/21 17:11:44 ───────────────────────────────────────────────── +2026/03/21 17:11:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:11:49 [log_collector] {"stage_name":"log_collector","events_processed":33960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6792,"last_update":"2026-03-21T17:11:44.068338925Z"} +2026/03/21 17:11:49 [metric_collector] {"stage_name":"metric_collector","events_processed":21174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4234.8,"last_update":"2026-03-21T17:11:44.068831599Z"} +2026/03/21 17:11:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:11:44.076247544Z"} +2026/03/21 17:11:49 [detection_layer] {"stage_name":"detection_layer","events_processed":702,"events_dropped":0,"avg_latency_ms":19.432769604161354,"throughput_eps":0,"last_update":"2026-03-21T17:11:44.210659847Z"} +2026/03/21 17:11:49 [transform_engine] {"stage_name":"transform_engine","events_processed":705,"events_dropped":0,"avg_latency_ms":292.09347041122936,"throughput_eps":0,"last_update":"2026-03-21T17:11:44.210685286Z"} +2026/03/21 17:11:49 ───────────────────────────────────────────────── +2026/03/21 17:11:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:11:54 [transform_engine] {"stage_name":"transform_engine","events_processed":706,"events_dropped":0,"avg_latency_ms":260.2938763289835,"throughput_eps":0,"last_update":"2026-03-21T17:11:49.343266512Z"} +2026/03/21 17:11:54 [log_collector] {"stage_name":"log_collector","events_processed":33960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6792,"last_update":"2026-03-21T17:11:49.069116486Z"} +2026/03/21 17:11:54 [metric_collector] {"stage_name":"metric_collector","events_processed":21179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4235.8,"last_update":"2026-03-21T17:11:49.069104303Z"} +2026/03/21 17:11:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:11:49.077715047Z"} +2026/03/21 17:11:54 [detection_layer] {"stage_name":"detection_layer","events_processed":702,"events_dropped":0,"avg_latency_ms":19.432769604161354,"throughput_eps":0,"last_update":"2026-03-21T17:11:49.210188516Z"} +2026/03/21 17:11:54 ───────────────────────────────────────────────── +2026/03/21 17:11:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:11:59 [detection_layer] {"stage_name":"detection_layer","events_processed":703,"events_dropped":0,"avg_latency_ms":20.005591883329085,"throughput_eps":0,"last_update":"2026-03-21T17:11:54.210416102Z"} +2026/03/21 17:11:59 [transform_engine] {"stage_name":"transform_engine","events_processed":706,"events_dropped":0,"avg_latency_ms":260.2938763289835,"throughput_eps":0,"last_update":"2026-03-21T17:11:54.210443525Z"} +2026/03/21 17:11:59 [log_collector] {"stage_name":"log_collector","events_processed":33960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6792,"last_update":"2026-03-21T17:11:54.068896937Z"} +2026/03/21 17:11:59 [metric_collector] {"stage_name":"metric_collector","events_processed":21184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4236.8,"last_update":"2026-03-21T17:11:54.069626264Z"} +2026/03/21 17:11:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8476,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:11:54.078167544Z"} +2026/03/21 17:11:59 ───────────────────────────────────────────────── +2026/03/21 17:12:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:12:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:11:59.076978678Z"} +2026/03/21 17:12:04 [detection_layer] {"stage_name":"detection_layer","events_processed":703,"events_dropped":0,"avg_latency_ms":20.005591883329085,"throughput_eps":0,"last_update":"2026-03-21T17:11:59.210270163Z"} +2026/03/21 17:12:04 [transform_engine] {"stage_name":"transform_engine","events_processed":706,"events_dropped":0,"avg_latency_ms":260.2938763289835,"throughput_eps":0,"last_update":"2026-03-21T17:11:59.210302585Z"} +2026/03/21 17:12:04 [log_collector] {"stage_name":"log_collector","events_processed":33960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6792,"last_update":"2026-03-21T17:11:59.068743333Z"} +2026/03/21 17:12:04 [metric_collector] {"stage_name":"metric_collector","events_processed":21189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4237.8,"last_update":"2026-03-21T17:11:59.06895063Z"} +2026/03/21 17:12:04 ───────────────────────────────────────────────── +2026/03/21 17:12:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:12:09 [metric_collector] {"stage_name":"metric_collector","events_processed":21194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4238.8,"last_update":"2026-03-21T17:12:04.068310733Z"} +2026/03/21 17:12:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8480,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:12:04.076921908Z"} +2026/03/21 17:12:09 [detection_layer] {"stage_name":"detection_layer","events_processed":703,"events_dropped":0,"avg_latency_ms":20.005591883329085,"throughput_eps":0,"last_update":"2026-03-21T17:12:04.21028407Z"} +2026/03/21 17:12:09 [transform_engine] {"stage_name":"transform_engine","events_processed":706,"events_dropped":0,"avg_latency_ms":260.2938763289835,"throughput_eps":0,"last_update":"2026-03-21T17:12:04.210180722Z"} +2026/03/21 17:12:09 [log_collector] {"stage_name":"log_collector","events_processed":33960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6792,"last_update":"2026-03-21T17:12:04.068091513Z"} +2026/03/21 17:12:09 ───────────────────────────────────────────────── +2026/03/21 17:12:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:12:14 [log_collector] {"stage_name":"log_collector","events_processed":33960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6792,"last_update":"2026-03-21T17:12:09.068906916Z"} +2026/03/21 17:12:14 [metric_collector] {"stage_name":"metric_collector","events_processed":21199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4239.8,"last_update":"2026-03-21T17:12:09.069109965Z"} +2026/03/21 17:12:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8482,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:12:09.078159389Z"} +2026/03/21 17:12:14 [detection_layer] {"stage_name":"detection_layer","events_processed":703,"events_dropped":0,"avg_latency_ms":20.005591883329085,"throughput_eps":0,"last_update":"2026-03-21T17:12:09.210415512Z"} +2026/03/21 17:12:14 [transform_engine] {"stage_name":"transform_engine","events_processed":706,"events_dropped":0,"avg_latency_ms":260.2938763289835,"throughput_eps":0,"last_update":"2026-03-21T17:12:09.210438205Z"} +2026/03/21 17:12:14 ───────────────────────────────────────────────── +2026/03/21 17:12:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:12:19 [log_collector] {"stage_name":"log_collector","events_processed":33960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6792,"last_update":"2026-03-21T17:12:14.068585752Z"} +2026/03/21 17:12:19 [metric_collector] {"stage_name":"metric_collector","events_processed":21204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4240.8,"last_update":"2026-03-21T17:12:14.06894493Z"} +2026/03/21 17:12:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:12:14.077787508Z"} +2026/03/21 17:12:19 [detection_layer] {"stage_name":"detection_layer","events_processed":703,"events_dropped":0,"avg_latency_ms":20.005591883329085,"throughput_eps":0,"last_update":"2026-03-21T17:12:14.20998596Z"} +2026/03/21 17:12:19 [transform_engine] {"stage_name":"transform_engine","events_processed":706,"events_dropped":0,"avg_latency_ms":260.2938763289835,"throughput_eps":0,"last_update":"2026-03-21T17:12:14.209960651Z"} +2026/03/21 17:12:19 ───────────────────────────────────────────────── +2026/03/21 17:12:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:12:24 [transform_engine] {"stage_name":"transform_engine","events_processed":707,"events_dropped":0,"avg_latency_ms":223.6301128631868,"throughput_eps":0,"last_update":"2026-03-21T17:12:19.287480174Z"} +2026/03/21 17:12:24 [log_collector] {"stage_name":"log_collector","events_processed":33960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6792,"last_update":"2026-03-21T17:12:19.068074894Z"} +2026/03/21 17:12:24 [metric_collector] {"stage_name":"metric_collector","events_processed":21209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4241.8,"last_update":"2026-03-21T17:12:19.06903381Z"} +2026/03/21 17:12:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8486,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:12:19.07813773Z"} +2026/03/21 17:12:24 [detection_layer] {"stage_name":"detection_layer","events_processed":703,"events_dropped":0,"avg_latency_ms":20.005591883329085,"throughput_eps":0,"last_update":"2026-03-21T17:12:19.210396898Z"} +2026/03/21 17:12:24 ───────────────────────────────────────────────── +2026/03/21 17:12:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:12:29 [transform_engine] {"stage_name":"transform_engine","events_processed":707,"events_dropped":0,"avg_latency_ms":223.6301128631868,"throughput_eps":0,"last_update":"2026-03-21T17:12:24.209941527Z"} +2026/03/21 17:12:29 [log_collector] {"stage_name":"log_collector","events_processed":33960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6792,"last_update":"2026-03-21T17:12:24.06881878Z"} +2026/03/21 17:12:29 [metric_collector] {"stage_name":"metric_collector","events_processed":21214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4242.8,"last_update":"2026-03-21T17:12:24.069021489Z"} +2026/03/21 17:12:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:12:24.077697789Z"} +2026/03/21 17:12:29 [detection_layer] {"stage_name":"detection_layer","events_processed":704,"events_dropped":0,"avg_latency_ms":20.86437270666327,"throughput_eps":0,"last_update":"2026-03-21T17:12:24.209966295Z"} +2026/03/21 17:12:29 ───────────────────────────────────────────────── +2026/03/21 17:12:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:12:34 [transform_engine] {"stage_name":"transform_engine","events_processed":707,"events_dropped":0,"avg_latency_ms":223.6301128631868,"throughput_eps":0,"last_update":"2026-03-21T17:12:29.210134727Z"} +2026/03/21 17:12:34 [log_collector] {"stage_name":"log_collector","events_processed":33960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6792,"last_update":"2026-03-21T17:12:29.068479421Z"} +2026/03/21 17:12:34 [metric_collector] {"stage_name":"metric_collector","events_processed":21219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4243.8,"last_update":"2026-03-21T17:12:29.069045495Z"} +2026/03/21 17:12:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8490,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:12:29.077900859Z"} +2026/03/21 17:12:34 [detection_layer] {"stage_name":"detection_layer","events_processed":704,"events_dropped":0,"avg_latency_ms":20.86437270666327,"throughput_eps":0,"last_update":"2026-03-21T17:12:29.210237845Z"} +2026/03/21 17:12:34 ───────────────────────────────────────────────── +2026/03/21 17:12:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:12:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:12:34.078111261Z"} +2026/03/21 17:12:39 [detection_layer] {"stage_name":"detection_layer","events_processed":704,"events_dropped":0,"avg_latency_ms":20.86437270666327,"throughput_eps":0,"last_update":"2026-03-21T17:12:34.210421336Z"} +2026/03/21 17:12:39 [transform_engine] {"stage_name":"transform_engine","events_processed":707,"events_dropped":0,"avg_latency_ms":223.6301128631868,"throughput_eps":0,"last_update":"2026-03-21T17:12:34.210370669Z"} +2026/03/21 17:12:39 [log_collector] {"stage_name":"log_collector","events_processed":33960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6792,"last_update":"2026-03-21T17:12:34.068085115Z"} +2026/03/21 17:12:39 [metric_collector] {"stage_name":"metric_collector","events_processed":21224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4244.8,"last_update":"2026-03-21T17:12:34.068724731Z"} +2026/03/21 17:12:39 ───────────────────────────────────────────────── +Saved state: 27 clusters, 33961 messages, reason: none +2026/03/21 17:12:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:12:44 [metric_collector] {"stage_name":"metric_collector","events_processed":21234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4246.8,"last_update":"2026-03-21T17:12:44.06824874Z"} +2026/03/21 17:12:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:12:39.078703686Z"} +2026/03/21 17:12:44 [detection_layer] {"stage_name":"detection_layer","events_processed":704,"events_dropped":0,"avg_latency_ms":20.86437270666327,"throughput_eps":0,"last_update":"2026-03-21T17:12:39.209988077Z"} +2026/03/21 17:12:44 [transform_engine] {"stage_name":"transform_engine","events_processed":707,"events_dropped":0,"avg_latency_ms":223.6301128631868,"throughput_eps":0,"last_update":"2026-03-21T17:12:39.209931649Z"} +2026/03/21 17:12:44 [log_collector] {"stage_name":"log_collector","events_processed":33960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6792,"last_update":"2026-03-21T17:12:39.0682017Z"} +2026/03/21 17:12:44 ───────────────────────────────────────────────── +2026/03/21 17:12:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:12:49 [metric_collector] {"stage_name":"metric_collector","events_processed":21234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4246.8,"last_update":"2026-03-21T17:12:44.06824874Z"} +2026/03/21 17:12:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8496,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:12:44.076043362Z"} +2026/03/21 17:12:49 [detection_layer] {"stage_name":"detection_layer","events_processed":704,"events_dropped":0,"avg_latency_ms":20.86437270666327,"throughput_eps":0,"last_update":"2026-03-21T17:12:44.211061514Z"} +2026/03/21 17:12:49 [transform_engine] {"stage_name":"transform_engine","events_processed":707,"events_dropped":0,"avg_latency_ms":223.6301128631868,"throughput_eps":0,"last_update":"2026-03-21T17:12:44.211046476Z"} +2026/03/21 17:12:49 [log_collector] {"stage_name":"log_collector","events_processed":33965,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6793,"last_update":"2026-03-21T17:12:44.068310648Z"} +2026/03/21 17:12:49 ───────────────────────────────────────────────── +2026/03/21 17:12:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:12:54 [detection_layer] {"stage_name":"detection_layer","events_processed":704,"events_dropped":0,"avg_latency_ms":20.86437270666327,"throughput_eps":0,"last_update":"2026-03-21T17:12:49.210015431Z"} +2026/03/21 17:12:54 [transform_engine] {"stage_name":"transform_engine","events_processed":708,"events_dropped":0,"avg_latency_ms":975.1870596905495,"throughput_eps":0,"last_update":"2026-03-21T17:12:53.191411992Z"} +2026/03/21 17:12:54 [log_collector] {"stage_name":"log_collector","events_processed":33965,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6793,"last_update":"2026-03-21T17:12:49.068672693Z"} +2026/03/21 17:12:54 [metric_collector] {"stage_name":"metric_collector","events_processed":21239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4247.8,"last_update":"2026-03-21T17:12:49.06906791Z"} +2026/03/21 17:12:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8498,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:12:49.077777483Z"} +2026/03/21 17:12:54 ───────────────────────────────────────────────── +2026/03/21 17:12:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:12:59 [metric_collector] {"stage_name":"metric_collector","events_processed":21244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4248.8,"last_update":"2026-03-21T17:12:54.06893249Z"} +2026/03/21 17:12:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:12:54.076303328Z"} +2026/03/21 17:12:59 [detection_layer] {"stage_name":"detection_layer","events_processed":705,"events_dropped":0,"avg_latency_ms":20.61035476533062,"throughput_eps":0,"last_update":"2026-03-21T17:12:54.21052197Z"} +2026/03/21 17:12:59 [transform_engine] {"stage_name":"transform_engine","events_processed":708,"events_dropped":0,"avg_latency_ms":975.1870596905495,"throughput_eps":0,"last_update":"2026-03-21T17:12:54.210506861Z"} +2026/03/21 17:12:59 [log_collector] {"stage_name":"log_collector","events_processed":33965,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6793,"last_update":"2026-03-21T17:12:59.068453803Z"} +2026/03/21 17:12:59 ───────────────────────────────────────────────── +2026/03/21 17:13:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:13:04 [metric_collector] {"stage_name":"metric_collector","events_processed":21249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4249.8,"last_update":"2026-03-21T17:12:59.068935897Z"} +2026/03/21 17:13:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:12:59.081485105Z"} +2026/03/21 17:13:04 [detection_layer] {"stage_name":"detection_layer","events_processed":705,"events_dropped":0,"avg_latency_ms":20.61035476533062,"throughput_eps":0,"last_update":"2026-03-21T17:12:59.210727474Z"} +2026/03/21 17:13:04 [transform_engine] {"stage_name":"transform_engine","events_processed":708,"events_dropped":0,"avg_latency_ms":975.1870596905495,"throughput_eps":0,"last_update":"2026-03-21T17:12:59.209643869Z"} +2026/03/21 17:13:04 [log_collector] {"stage_name":"log_collector","events_processed":33965,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6793,"last_update":"2026-03-21T17:12:59.068453803Z"} +2026/03/21 17:13:04 ───────────────────────────────────────────────── +2026/03/21 17:13:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:13:09 [log_collector] {"stage_name":"log_collector","events_processed":33965,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6793,"last_update":"2026-03-21T17:13:04.068251735Z"} +2026/03/21 17:13:09 [metric_collector] {"stage_name":"metric_collector","events_processed":21254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4250.8,"last_update":"2026-03-21T17:13:04.068322681Z"} +2026/03/21 17:13:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:13:04.078409001Z"} +2026/03/21 17:13:09 [detection_layer] {"stage_name":"detection_layer","events_processed":705,"events_dropped":0,"avg_latency_ms":20.61035476533062,"throughput_eps":0,"last_update":"2026-03-21T17:13:04.210655435Z"} +2026/03/21 17:13:09 [transform_engine] {"stage_name":"transform_engine","events_processed":708,"events_dropped":0,"avg_latency_ms":975.1870596905495,"throughput_eps":0,"last_update":"2026-03-21T17:13:04.2106786Z"} +2026/03/21 17:13:09 ───────────────────────────────────────────────── +2026/03/21 17:13:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:13:14 [transform_engine] {"stage_name":"transform_engine","events_processed":708,"events_dropped":0,"avg_latency_ms":975.1870596905495,"throughput_eps":0,"last_update":"2026-03-21T17:13:09.209751704Z"} +2026/03/21 17:13:14 [log_collector] {"stage_name":"log_collector","events_processed":33965,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6793,"last_update":"2026-03-21T17:13:09.068566328Z"} +2026/03/21 17:13:14 [metric_collector] {"stage_name":"metric_collector","events_processed":21259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4251.8,"last_update":"2026-03-21T17:13:09.068689413Z"} +2026/03/21 17:13:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8506,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:13:09.076616458Z"} +2026/03/21 17:13:14 [detection_layer] {"stage_name":"detection_layer","events_processed":705,"events_dropped":0,"avg_latency_ms":20.61035476533062,"throughput_eps":0,"last_update":"2026-03-21T17:13:09.210836431Z"} +2026/03/21 17:13:14 ───────────────────────────────────────────────── +2026/03/21 17:13:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:13:19 [detection_layer] {"stage_name":"detection_layer","events_processed":705,"events_dropped":0,"avg_latency_ms":20.61035476533062,"throughput_eps":0,"last_update":"2026-03-21T17:13:14.210070434Z"} +2026/03/21 17:13:19 [transform_engine] {"stage_name":"transform_engine","events_processed":708,"events_dropped":0,"avg_latency_ms":975.1870596905495,"throughput_eps":0,"last_update":"2026-03-21T17:13:14.210089221Z"} +2026/03/21 17:13:19 [log_collector] {"stage_name":"log_collector","events_processed":33965,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6793,"last_update":"2026-03-21T17:13:14.069000399Z"} +2026/03/21 17:13:19 [metric_collector] {"stage_name":"metric_collector","events_processed":21264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4252.8,"last_update":"2026-03-21T17:13:14.068992413Z"} +2026/03/21 17:13:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:13:14.076843993Z"} +2026/03/21 17:13:19 ───────────────────────────────────────────────── +2026/03/21 17:13:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:13:24 [log_collector] {"stage_name":"log_collector","events_processed":33965,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6793,"last_update":"2026-03-21T17:13:19.068569943Z"} +2026/03/21 17:13:24 [metric_collector] {"stage_name":"metric_collector","events_processed":21269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4253.8,"last_update":"2026-03-21T17:13:19.068797068Z"} +2026/03/21 17:13:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:13:19.077715973Z"} +2026/03/21 17:13:24 [detection_layer] {"stage_name":"detection_layer","events_processed":705,"events_dropped":0,"avg_latency_ms":20.61035476533062,"throughput_eps":0,"last_update":"2026-03-21T17:13:19.210426796Z"} +2026/03/21 17:13:24 [transform_engine] {"stage_name":"transform_engine","events_processed":709,"events_dropped":0,"avg_latency_ms":1136.5495045524397,"throughput_eps":0,"last_update":"2026-03-21T17:13:20.991927746Z"} +2026/03/21 17:13:24 ───────────────────────────────────────────────── +2026/03/21 17:13:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:13:29 [transform_engine] {"stage_name":"transform_engine","events_processed":709,"events_dropped":0,"avg_latency_ms":1136.5495045524397,"throughput_eps":0,"last_update":"2026-03-21T17:13:24.210075732Z"} +2026/03/21 17:13:29 [log_collector] {"stage_name":"log_collector","events_processed":33974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6794.8,"last_update":"2026-03-21T17:13:24.068459451Z"} +2026/03/21 17:13:29 [metric_collector] {"stage_name":"metric_collector","events_processed":21274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4254.8,"last_update":"2026-03-21T17:13:24.068670666Z"} +2026/03/21 17:13:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8512,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:13:24.075684581Z"} +2026/03/21 17:13:29 [detection_layer] {"stage_name":"detection_layer","events_processed":706,"events_dropped":0,"avg_latency_ms":20.023449412264497,"throughput_eps":0,"last_update":"2026-03-21T17:13:24.210174692Z"} +2026/03/21 17:13:29 ───────────────────────────────────────────────── +2026/03/21 17:13:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:13:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:13:29.077662008Z"} +2026/03/21 17:13:34 [detection_layer] {"stage_name":"detection_layer","events_processed":706,"events_dropped":0,"avg_latency_ms":20.023449412264497,"throughput_eps":0,"last_update":"2026-03-21T17:13:29.210667305Z"} +2026/03/21 17:13:34 [transform_engine] {"stage_name":"transform_engine","events_processed":709,"events_dropped":0,"avg_latency_ms":1136.5495045524397,"throughput_eps":0,"last_update":"2026-03-21T17:13:29.210680039Z"} +2026/03/21 17:13:34 [log_collector] {"stage_name":"log_collector","events_processed":34015,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6803,"last_update":"2026-03-21T17:13:29.068425054Z"} +2026/03/21 17:13:34 [metric_collector] {"stage_name":"metric_collector","events_processed":21279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4255.8,"last_update":"2026-03-21T17:13:29.068731592Z"} +2026/03/21 17:13:34 ───────────────────────────────────────────────── +2026/03/21 17:13:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:13:39 [log_collector] {"stage_name":"log_collector","events_processed":34280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6856,"last_update":"2026-03-21T17:13:34.068805702Z"} +2026/03/21 17:13:39 [metric_collector] {"stage_name":"metric_collector","events_processed":21284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4256.8,"last_update":"2026-03-21T17:13:34.069036845Z"} +2026/03/21 17:13:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:13:34.076152736Z"} +2026/03/21 17:13:39 [detection_layer] {"stage_name":"detection_layer","events_processed":706,"events_dropped":0,"avg_latency_ms":20.023449412264497,"throughput_eps":0,"last_update":"2026-03-21T17:13:34.210069769Z"} +2026/03/21 17:13:39 [transform_engine] {"stage_name":"transform_engine","events_processed":709,"events_dropped":0,"avg_latency_ms":1136.5495045524397,"throughput_eps":0,"last_update":"2026-03-21T17:13:34.210109666Z"} +2026/03/21 17:13:39 ───────────────────────────────────────────────── +2026/03/21 17:13:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:13:44 [log_collector] {"stage_name":"log_collector","events_processed":34327,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6865.4,"last_update":"2026-03-21T17:13:39.068190813Z"} +2026/03/21 17:13:44 [metric_collector] {"stage_name":"metric_collector","events_processed":21289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4257.8,"last_update":"2026-03-21T17:13:39.068641657Z"} +2026/03/21 17:13:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:13:39.077812655Z"} +2026/03/21 17:13:44 [detection_layer] {"stage_name":"detection_layer","events_processed":706,"events_dropped":0,"avg_latency_ms":20.023449412264497,"throughput_eps":0,"last_update":"2026-03-21T17:13:39.210291844Z"} +2026/03/21 17:13:44 [transform_engine] {"stage_name":"transform_engine","events_processed":709,"events_dropped":0,"avg_latency_ms":1136.5495045524397,"throughput_eps":0,"last_update":"2026-03-21T17:13:39.210343423Z"} +2026/03/21 17:13:44 ───────────────────────────────────────────────── +Saved state: 27 clusters, 34330 messages, reason: none +2026/03/21 17:13:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:13:49 [transform_engine] {"stage_name":"transform_engine","events_processed":709,"events_dropped":0,"avg_latency_ms":1136.5495045524397,"throughput_eps":0,"last_update":"2026-03-21T17:13:44.210483269Z"} +2026/03/21 17:13:49 [log_collector] {"stage_name":"log_collector","events_processed":34329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6865.8,"last_update":"2026-03-21T17:13:44.068713533Z"} +2026/03/21 17:13:49 [metric_collector] {"stage_name":"metric_collector","events_processed":21294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4258.8,"last_update":"2026-03-21T17:13:44.069018768Z"} +2026/03/21 17:13:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8520,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:13:44.078269117Z"} +2026/03/21 17:13:49 [detection_layer] {"stage_name":"detection_layer","events_processed":706,"events_dropped":0,"avg_latency_ms":20.023449412264497,"throughput_eps":0,"last_update":"2026-03-21T17:13:44.210582349Z"} +2026/03/21 17:13:49 ───────────────────────────────────────────────── +2026/03/21 17:13:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:13:54 [log_collector] {"stage_name":"log_collector","events_processed":34332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6866.4,"last_update":"2026-03-21T17:13:49.06866543Z"} +2026/03/21 17:13:54 [metric_collector] {"stage_name":"metric_collector","events_processed":21299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4259.8,"last_update":"2026-03-21T17:13:49.069000692Z"} +2026/03/21 17:13:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8522,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:13:49.081909389Z"} +2026/03/21 17:13:54 [detection_layer] {"stage_name":"detection_layer","events_processed":706,"events_dropped":0,"avg_latency_ms":20.023449412264497,"throughput_eps":0,"last_update":"2026-03-21T17:13:49.210176931Z"} +2026/03/21 17:13:54 [transform_engine] {"stage_name":"transform_engine","events_processed":710,"events_dropped":0,"avg_latency_ms":941.7066898419519,"throughput_eps":0,"last_update":"2026-03-21T17:13:49.37246982Z"} +2026/03/21 17:13:54 ───────────────────────────────────────────────── +2026/03/21 17:13:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:13:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:13:54.079864902Z"} +2026/03/21 17:13:59 [detection_layer] {"stage_name":"detection_layer","events_processed":707,"events_dropped":0,"avg_latency_ms":20.2542709298116,"throughput_eps":0,"last_update":"2026-03-21T17:13:54.210057311Z"} +2026/03/21 17:13:59 [transform_engine] {"stage_name":"transform_engine","events_processed":710,"events_dropped":0,"avg_latency_ms":941.7066898419519,"throughput_eps":0,"last_update":"2026-03-21T17:13:54.210078301Z"} +2026/03/21 17:13:59 [log_collector] {"stage_name":"log_collector","events_processed":34332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6866.4,"last_update":"2026-03-21T17:13:54.068541602Z"} +2026/03/21 17:13:59 [metric_collector] {"stage_name":"metric_collector","events_processed":21304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4260.8,"last_update":"2026-03-21T17:13:54.068879829Z"} +2026/03/21 17:13:59 ───────────────────────────────────────────────── +2026/03/21 17:14:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:14:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8526,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:13:59.078438357Z"} +2026/03/21 17:14:04 [detection_layer] {"stage_name":"detection_layer","events_processed":707,"events_dropped":0,"avg_latency_ms":20.2542709298116,"throughput_eps":0,"last_update":"2026-03-21T17:13:59.2106009Z"} +2026/03/21 17:14:04 [transform_engine] {"stage_name":"transform_engine","events_processed":710,"events_dropped":0,"avg_latency_ms":941.7066898419519,"throughput_eps":0,"last_update":"2026-03-21T17:13:59.210645816Z"} +2026/03/21 17:14:04 [log_collector] {"stage_name":"log_collector","events_processed":34343,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6868.6,"last_update":"2026-03-21T17:13:59.06873485Z"} +2026/03/21 17:14:04 [metric_collector] {"stage_name":"metric_collector","events_processed":21309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4261.8,"last_update":"2026-03-21T17:13:59.069055995Z"} +2026/03/21 17:14:04 ───────────────────────────────────────────────── +2026/03/21 17:14:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:14:09 [log_collector] {"stage_name":"log_collector","events_processed":34345,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6869,"last_update":"2026-03-21T17:14:04.068888442Z"} +2026/03/21 17:14:09 [metric_collector] {"stage_name":"metric_collector","events_processed":21314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4262.8,"last_update":"2026-03-21T17:14:04.069206902Z"} +2026/03/21 17:14:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:14:04.079088361Z"} +2026/03/21 17:14:09 [detection_layer] {"stage_name":"detection_layer","events_processed":707,"events_dropped":0,"avg_latency_ms":20.2542709298116,"throughput_eps":0,"last_update":"2026-03-21T17:14:04.210609424Z"} +2026/03/21 17:14:09 [transform_engine] {"stage_name":"transform_engine","events_processed":710,"events_dropped":0,"avg_latency_ms":941.7066898419519,"throughput_eps":0,"last_update":"2026-03-21T17:14:04.210595648Z"} +2026/03/21 17:14:09 ───────────────────────────────────────────────── +2026/03/21 17:14:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:14:14 [metric_collector] {"stage_name":"metric_collector","events_processed":21319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4263.8,"last_update":"2026-03-21T17:14:09.068942834Z"} +2026/03/21 17:14:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:14:09.07932372Z"} +2026/03/21 17:14:14 [detection_layer] {"stage_name":"detection_layer","events_processed":707,"events_dropped":0,"avg_latency_ms":20.2542709298116,"throughput_eps":0,"last_update":"2026-03-21T17:14:09.210672213Z"} +2026/03/21 17:14:14 [transform_engine] {"stage_name":"transform_engine","events_processed":710,"events_dropped":0,"avg_latency_ms":941.7066898419519,"throughput_eps":0,"last_update":"2026-03-21T17:14:09.210570007Z"} +2026/03/21 17:14:14 [log_collector] {"stage_name":"log_collector","events_processed":34359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6871.8,"last_update":"2026-03-21T17:14:09.068264815Z"} +2026/03/21 17:14:14 ───────────────────────────────────────────────── +2026/03/21 17:14:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:14:19 [log_collector] {"stage_name":"log_collector","events_processed":34359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6871.8,"last_update":"2026-03-21T17:14:14.068111461Z"} +2026/03/21 17:14:19 [metric_collector] {"stage_name":"metric_collector","events_processed":21324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4264.8,"last_update":"2026-03-21T17:14:14.068295444Z"} +2026/03/21 17:14:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8532,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:14:14.078064427Z"} +2026/03/21 17:14:19 [detection_layer] {"stage_name":"detection_layer","events_processed":707,"events_dropped":0,"avg_latency_ms":20.2542709298116,"throughput_eps":0,"last_update":"2026-03-21T17:14:14.210401424Z"} +2026/03/21 17:14:19 [transform_engine] {"stage_name":"transform_engine","events_processed":710,"events_dropped":0,"avg_latency_ms":941.7066898419519,"throughput_eps":0,"last_update":"2026-03-21T17:14:14.210324487Z"} +2026/03/21 17:14:19 ───────────────────────────────────────────────── +2026/03/21 17:14:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:14:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:14:19.079926261Z"} +2026/03/21 17:14:24 [detection_layer] {"stage_name":"detection_layer","events_processed":707,"events_dropped":0,"avg_latency_ms":20.2542709298116,"throughput_eps":0,"last_update":"2026-03-21T17:14:19.210188584Z"} +2026/03/21 17:14:24 [transform_engine] {"stage_name":"transform_engine","events_processed":711,"events_dropped":0,"avg_latency_ms":776.6086812735615,"throughput_eps":0,"last_update":"2026-03-21T17:14:19.326445379Z"} +2026/03/21 17:14:24 [log_collector] {"stage_name":"log_collector","events_processed":34359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6871.8,"last_update":"2026-03-21T17:14:19.068798465Z"} +2026/03/21 17:14:24 [metric_collector] {"stage_name":"metric_collector","events_processed":21329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4265.8,"last_update":"2026-03-21T17:14:19.069172041Z"} +2026/03/21 17:14:24 ───────────────────────────────────────────────── +2026/03/21 17:14:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:14:29 [log_collector] {"stage_name":"log_collector","events_processed":34359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6871.8,"last_update":"2026-03-21T17:14:24.068561048Z"} +2026/03/21 17:14:29 [metric_collector] {"stage_name":"metric_collector","events_processed":21334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4266.8,"last_update":"2026-03-21T17:14:24.069044344Z"} +2026/03/21 17:14:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8536,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:14:24.077716195Z"} +2026/03/21 17:14:29 [detection_layer] {"stage_name":"detection_layer","events_processed":708,"events_dropped":0,"avg_latency_ms":20.32856654384928,"throughput_eps":0,"last_update":"2026-03-21T17:14:24.210909983Z"} +2026/03/21 17:14:29 [transform_engine] {"stage_name":"transform_engine","events_processed":711,"events_dropped":0,"avg_latency_ms":776.6086812735615,"throughput_eps":0,"last_update":"2026-03-21T17:14:24.209818904Z"} +2026/03/21 17:14:29 ───────────────────────────────────────────────── +2026/03/21 17:14:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:14:34 [log_collector] {"stage_name":"log_collector","events_processed":34359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6871.8,"last_update":"2026-03-21T17:14:29.069053501Z"} +2026/03/21 17:14:34 [metric_collector] {"stage_name":"metric_collector","events_processed":21339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4267.8,"last_update":"2026-03-21T17:14:29.069315553Z"} +2026/03/21 17:14:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:14:29.078781135Z"} +2026/03/21 17:14:34 [detection_layer] {"stage_name":"detection_layer","events_processed":708,"events_dropped":0,"avg_latency_ms":20.32856654384928,"throughput_eps":0,"last_update":"2026-03-21T17:14:29.210027302Z"} +2026/03/21 17:14:34 [transform_engine] {"stage_name":"transform_engine","events_processed":711,"events_dropped":0,"avg_latency_ms":776.6086812735615,"throughput_eps":0,"last_update":"2026-03-21T17:14:29.210037552Z"} +2026/03/21 17:14:34 ───────────────────────────────────────────────── +2026/03/21 17:14:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:14:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8540,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:14:34.07876931Z"} +2026/03/21 17:14:39 [detection_layer] {"stage_name":"detection_layer","events_processed":708,"events_dropped":0,"avg_latency_ms":20.32856654384928,"throughput_eps":0,"last_update":"2026-03-21T17:14:34.209987524Z"} +2026/03/21 17:14:39 [transform_engine] {"stage_name":"transform_engine","events_processed":711,"events_dropped":0,"avg_latency_ms":776.6086812735615,"throughput_eps":0,"last_update":"2026-03-21T17:14:34.209997935Z"} +2026/03/21 17:14:39 [log_collector] {"stage_name":"log_collector","events_processed":34359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6871.8,"last_update":"2026-03-21T17:14:34.069096823Z"} +2026/03/21 17:14:39 [metric_collector] {"stage_name":"metric_collector","events_processed":21344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4268.8,"last_update":"2026-03-21T17:14:34.069412958Z"} +2026/03/21 17:14:39 ───────────────────────────────────────────────── +2026/03/21 17:14:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:14:44 [log_collector] {"stage_name":"log_collector","events_processed":34359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6871.8,"last_update":"2026-03-21T17:14:39.068707156Z"} +2026/03/21 17:14:44 [metric_collector] {"stage_name":"metric_collector","events_processed":21349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4269.8,"last_update":"2026-03-21T17:14:39.069007311Z"} +2026/03/21 17:14:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8542,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:14:39.078462863Z"} +2026/03/21 17:14:44 [detection_layer] {"stage_name":"detection_layer","events_processed":708,"events_dropped":0,"avg_latency_ms":20.32856654384928,"throughput_eps":0,"last_update":"2026-03-21T17:14:39.210698496Z"} +2026/03/21 17:14:44 [transform_engine] {"stage_name":"transform_engine","events_processed":711,"events_dropped":0,"avg_latency_ms":776.6086812735615,"throughput_eps":0,"last_update":"2026-03-21T17:14:39.210708785Z"} +2026/03/21 17:14:44 ───────────────────────────────────────────────── +2026/03/21 17:14:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:14:49 [log_collector] {"stage_name":"log_collector","events_processed":34359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6871.8,"last_update":"2026-03-21T17:14:44.068879716Z"} +2026/03/21 17:14:49 [metric_collector] {"stage_name":"metric_collector","events_processed":21354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4270.8,"last_update":"2026-03-21T17:14:44.069175092Z"} +2026/03/21 17:14:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:14:44.078161155Z"} +2026/03/21 17:14:49 [detection_layer] {"stage_name":"detection_layer","events_processed":708,"events_dropped":0,"avg_latency_ms":20.32856654384928,"throughput_eps":0,"last_update":"2026-03-21T17:14:44.210419031Z"} +2026/03/21 17:14:49 [transform_engine] {"stage_name":"transform_engine","events_processed":711,"events_dropped":0,"avg_latency_ms":776.6086812735615,"throughput_eps":0,"last_update":"2026-03-21T17:14:44.21042924Z"} +2026/03/21 17:14:49 ───────────────────────────────────────────────── +2026/03/21 17:14:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:14:54 [metric_collector] {"stage_name":"metric_collector","events_processed":21359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4271.8,"last_update":"2026-03-21T17:14:49.06843392Z"} +2026/03/21 17:14:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:14:49.078790117Z"} +2026/03/21 17:14:54 [detection_layer] {"stage_name":"detection_layer","events_processed":708,"events_dropped":0,"avg_latency_ms":20.32856654384928,"throughput_eps":0,"last_update":"2026-03-21T17:14:49.210062686Z"} +2026/03/21 17:14:54 [transform_engine] {"stage_name":"transform_engine","events_processed":712,"events_dropped":0,"avg_latency_ms":636.2446390188492,"throughput_eps":0,"last_update":"2026-03-21T17:14:49.284867757Z"} +2026/03/21 17:14:54 [log_collector] {"stage_name":"log_collector","events_processed":34359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6871.8,"last_update":"2026-03-21T17:14:49.068142662Z"} +2026/03/21 17:14:54 ───────────────────────────────────────────────── +2026/03/21 17:14:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:14:59 [metric_collector] {"stage_name":"metric_collector","events_processed":21364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4272.8,"last_update":"2026-03-21T17:14:54.069010892Z"} +2026/03/21 17:14:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:14:54.078706324Z"} +2026/03/21 17:14:59 [detection_layer] {"stage_name":"detection_layer","events_processed":709,"events_dropped":0,"avg_latency_ms":21.365251035079424,"throughput_eps":0,"last_update":"2026-03-21T17:14:54.210114021Z"} +2026/03/21 17:14:59 [transform_engine] {"stage_name":"transform_engine","events_processed":712,"events_dropped":0,"avg_latency_ms":636.2446390188492,"throughput_eps":0,"last_update":"2026-03-21T17:14:54.210073413Z"} +2026/03/21 17:14:59 [log_collector] {"stage_name":"log_collector","events_processed":34359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6871.8,"last_update":"2026-03-21T17:14:54.068614052Z"} +2026/03/21 17:14:59 ───────────────────────────────────────────────── +2026/03/21 17:15:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:15:04 [log_collector] {"stage_name":"log_collector","events_processed":34359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6871.8,"last_update":"2026-03-21T17:14:59.068774898Z"} +2026/03/21 17:15:04 [metric_collector] {"stage_name":"metric_collector","events_processed":21369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4273.8,"last_update":"2026-03-21T17:14:59.069148935Z"} +2026/03/21 17:15:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:14:59.079309247Z"} +2026/03/21 17:15:04 [detection_layer] {"stage_name":"detection_layer","events_processed":709,"events_dropped":0,"avg_latency_ms":21.365251035079424,"throughput_eps":0,"last_update":"2026-03-21T17:14:59.210787479Z"} +2026/03/21 17:15:04 [transform_engine] {"stage_name":"transform_engine","events_processed":712,"events_dropped":0,"avg_latency_ms":636.2446390188492,"throughput_eps":0,"last_update":"2026-03-21T17:14:59.210686205Z"} +2026/03/21 17:15:04 ───────────────────────────────────────────────── +2026/03/21 17:15:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:15:09 [metric_collector] {"stage_name":"metric_collector","events_processed":21374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4274.8,"last_update":"2026-03-21T17:15:04.069073678Z"} +2026/03/21 17:15:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:15:04.079268306Z"} +2026/03/21 17:15:09 [detection_layer] {"stage_name":"detection_layer","events_processed":709,"events_dropped":0,"avg_latency_ms":21.365251035079424,"throughput_eps":0,"last_update":"2026-03-21T17:15:04.21061718Z"} +2026/03/21 17:15:09 [transform_engine] {"stage_name":"transform_engine","events_processed":712,"events_dropped":0,"avg_latency_ms":636.2446390188492,"throughput_eps":0,"last_update":"2026-03-21T17:15:04.210654772Z"} +2026/03/21 17:15:09 [log_collector] {"stage_name":"log_collector","events_processed":34359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6871.8,"last_update":"2026-03-21T17:15:04.068655657Z"} +2026/03/21 17:15:09 ───────────────────────────────────────────────── +2026/03/21 17:15:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:15:14 [log_collector] {"stage_name":"log_collector","events_processed":34359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6871.8,"last_update":"2026-03-21T17:15:09.069051714Z"} +2026/03/21 17:15:14 [metric_collector] {"stage_name":"metric_collector","events_processed":21379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4275.8,"last_update":"2026-03-21T17:15:09.069260355Z"} +2026/03/21 17:15:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:15:09.078147879Z"} +2026/03/21 17:15:14 [detection_layer] {"stage_name":"detection_layer","events_processed":709,"events_dropped":0,"avg_latency_ms":21.365251035079424,"throughput_eps":0,"last_update":"2026-03-21T17:15:09.210400735Z"} +2026/03/21 17:15:14 [transform_engine] {"stage_name":"transform_engine","events_processed":712,"events_dropped":0,"avg_latency_ms":636.2446390188492,"throughput_eps":0,"last_update":"2026-03-21T17:15:09.21037213Z"} +2026/03/21 17:15:14 ───────────────────────────────────────────────── +Saved state: 27 clusters, 34360 messages, reason: none +2026/03/21 17:15:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:15:19 [log_collector] {"stage_name":"log_collector","events_processed":34359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6871.8,"last_update":"2026-03-21T17:15:14.068764114Z"} +2026/03/21 17:15:19 [metric_collector] {"stage_name":"metric_collector","events_processed":21384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4276.8,"last_update":"2026-03-21T17:15:14.069183347Z"} +2026/03/21 17:15:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:15:14.077338699Z"} +2026/03/21 17:15:19 [detection_layer] {"stage_name":"detection_layer","events_processed":709,"events_dropped":0,"avg_latency_ms":21.365251035079424,"throughput_eps":0,"last_update":"2026-03-21T17:15:14.21059692Z"} +2026/03/21 17:15:19 [transform_engine] {"stage_name":"transform_engine","events_processed":712,"events_dropped":0,"avg_latency_ms":636.2446390188492,"throughput_eps":0,"last_update":"2026-03-21T17:15:14.210625034Z"} +2026/03/21 17:15:19 ───────────────────────────────────────────────── +2026/03/21 17:15:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:15:24 [log_collector] {"stage_name":"log_collector","events_processed":34373,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6874.6,"last_update":"2026-03-21T17:15:19.068200893Z"} +2026/03/21 17:15:24 [metric_collector] {"stage_name":"metric_collector","events_processed":21389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4277.8,"last_update":"2026-03-21T17:15:19.068728804Z"} +2026/03/21 17:15:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:15:19.07794621Z"} +2026/03/21 17:15:24 [detection_layer] {"stage_name":"detection_layer","events_processed":709,"events_dropped":0,"avg_latency_ms":21.365251035079424,"throughput_eps":0,"last_update":"2026-03-21T17:15:19.210267177Z"} +2026/03/21 17:15:24 [transform_engine] {"stage_name":"transform_engine","events_processed":713,"events_dropped":0,"avg_latency_ms":532.4329662150794,"throughput_eps":0,"last_update":"2026-03-21T17:15:19.327478751Z"} +2026/03/21 17:15:24 ───────────────────────────────────────────────── +2026/03/21 17:15:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:15:29 [metric_collector] {"stage_name":"metric_collector","events_processed":21394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4278.8,"last_update":"2026-03-21T17:15:24.068911824Z"} +2026/03/21 17:15:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8560,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:15:24.077527007Z"} +2026/03/21 17:15:29 [detection_layer] {"stage_name":"detection_layer","events_processed":710,"events_dropped":0,"avg_latency_ms":21.53537202806354,"throughput_eps":0,"last_update":"2026-03-21T17:15:24.210752886Z"} +2026/03/21 17:15:29 [transform_engine] {"stage_name":"transform_engine","events_processed":713,"events_dropped":0,"avg_latency_ms":532.4329662150794,"throughput_eps":0,"last_update":"2026-03-21T17:15:24.209668239Z"} +2026/03/21 17:15:29 [log_collector] {"stage_name":"log_collector","events_processed":34373,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6874.6,"last_update":"2026-03-21T17:15:24.068615666Z"} +2026/03/21 17:15:29 ───────────────────────────────────────────────── +2026/03/21 17:15:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:15:34 [metric_collector] {"stage_name":"metric_collector","events_processed":21399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4279.8,"last_update":"2026-03-21T17:15:29.068915991Z"} +2026/03/21 17:15:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:15:29.078141813Z"} +2026/03/21 17:15:34 [detection_layer] {"stage_name":"detection_layer","events_processed":710,"events_dropped":0,"avg_latency_ms":21.53537202806354,"throughput_eps":0,"last_update":"2026-03-21T17:15:29.210373788Z"} +2026/03/21 17:15:34 [transform_engine] {"stage_name":"transform_engine","events_processed":713,"events_dropped":0,"avg_latency_ms":532.4329662150794,"throughput_eps":0,"last_update":"2026-03-21T17:15:29.210397073Z"} +2026/03/21 17:15:34 [log_collector] {"stage_name":"log_collector","events_processed":34373,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6874.6,"last_update":"2026-03-21T17:15:29.06874834Z"} +2026/03/21 17:15:34 ───────────────────────────────────────────────── +2026/03/21 17:15:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:15:39 [log_collector] {"stage_name":"log_collector","events_processed":34373,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6874.6,"last_update":"2026-03-21T17:15:34.068063224Z"} +2026/03/21 17:15:39 [metric_collector] {"stage_name":"metric_collector","events_processed":21404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4280.8,"last_update":"2026-03-21T17:15:34.068492808Z"} +2026/03/21 17:15:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:15:34.077259941Z"} +2026/03/21 17:15:39 [detection_layer] {"stage_name":"detection_layer","events_processed":710,"events_dropped":0,"avg_latency_ms":21.53537202806354,"throughput_eps":0,"last_update":"2026-03-21T17:15:34.210913911Z"} +2026/03/21 17:15:39 [transform_engine] {"stage_name":"transform_engine","events_processed":713,"events_dropped":0,"avg_latency_ms":532.4329662150794,"throughput_eps":0,"last_update":"2026-03-21T17:15:34.209734422Z"} +2026/03/21 17:15:39 ───────────────────────────────────────────────── +2026/03/21 17:15:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:15:44 [transform_engine] {"stage_name":"transform_engine","events_processed":713,"events_dropped":0,"avg_latency_ms":532.4329662150794,"throughput_eps":0,"last_update":"2026-03-21T17:15:39.209945533Z"} +2026/03/21 17:15:44 [log_collector] {"stage_name":"log_collector","events_processed":34373,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6874.6,"last_update":"2026-03-21T17:15:39.068678962Z"} +2026/03/21 17:15:44 [metric_collector] {"stage_name":"metric_collector","events_processed":21408,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4281.6,"last_update":"2026-03-21T17:15:39.068686106Z"} +2026/03/21 17:15:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8566,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:15:39.077689492Z"} +2026/03/21 17:15:44 [detection_layer] {"stage_name":"detection_layer","events_processed":710,"events_dropped":0,"avg_latency_ms":21.53537202806354,"throughput_eps":0,"last_update":"2026-03-21T17:15:39.209971573Z"} +2026/03/21 17:15:44 ───────────────────────────────────────────────── +2026/03/21 17:15:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:15:49 [transform_engine] {"stage_name":"transform_engine","events_processed":713,"events_dropped":0,"avg_latency_ms":532.4329662150794,"throughput_eps":0,"last_update":"2026-03-21T17:15:44.21071195Z"} +2026/03/21 17:15:49 [log_collector] {"stage_name":"log_collector","events_processed":34373,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6874.6,"last_update":"2026-03-21T17:15:44.068885335Z"} +2026/03/21 17:15:49 [metric_collector] {"stage_name":"metric_collector","events_processed":21414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4282.8,"last_update":"2026-03-21T17:15:44.069375324Z"} +2026/03/21 17:15:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:15:44.07729254Z"} +2026/03/21 17:15:49 [detection_layer] {"stage_name":"detection_layer","events_processed":710,"events_dropped":0,"avg_latency_ms":21.53537202806354,"throughput_eps":0,"last_update":"2026-03-21T17:15:44.210766526Z"} +2026/03/21 17:15:49 ───────────────────────────────────────────────── +2026/03/21 17:15:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:15:54 [log_collector] {"stage_name":"log_collector","events_processed":34373,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6874.6,"last_update":"2026-03-21T17:15:49.068883791Z"} +2026/03/21 17:15:54 [metric_collector] {"stage_name":"metric_collector","events_processed":21419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4283.8,"last_update":"2026-03-21T17:15:49.069268297Z"} +2026/03/21 17:15:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8570,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:15:49.078329525Z"} +2026/03/21 17:15:54 [detection_layer] {"stage_name":"detection_layer","events_processed":710,"events_dropped":0,"avg_latency_ms":21.53537202806354,"throughput_eps":0,"last_update":"2026-03-21T17:15:49.210700787Z"} +2026/03/21 17:15:54 [transform_engine] {"stage_name":"transform_engine","events_processed":714,"events_dropped":0,"avg_latency_ms":855.6006555720635,"throughput_eps":0,"last_update":"2026-03-21T17:15:51.359022838Z"} +2026/03/21 17:15:54 ───────────────────────────────────────────────── +2026/03/21 17:15:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:15:59 [metric_collector] {"stage_name":"metric_collector","events_processed":21424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4284.8,"last_update":"2026-03-21T17:15:54.06901512Z"} +2026/03/21 17:15:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8572,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:15:54.077808965Z"} +2026/03/21 17:15:59 [detection_layer] {"stage_name":"detection_layer","events_processed":711,"events_dropped":0,"avg_latency_ms":22.043313022450835,"throughput_eps":0,"last_update":"2026-03-21T17:15:54.210104372Z"} +2026/03/21 17:15:59 [transform_engine] {"stage_name":"transform_engine","events_processed":714,"events_dropped":0,"avg_latency_ms":855.6006555720635,"throughput_eps":0,"last_update":"2026-03-21T17:15:54.210081699Z"} +2026/03/21 17:15:59 [log_collector] {"stage_name":"log_collector","events_processed":34373,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6874.6,"last_update":"2026-03-21T17:15:54.068706649Z"} +2026/03/21 17:15:59 ───────────────────────────────────────────────── +2026/03/21 17:16:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:16:04 [transform_engine] {"stage_name":"transform_engine","events_processed":714,"events_dropped":0,"avg_latency_ms":855.6006555720635,"throughput_eps":0,"last_update":"2026-03-21T17:15:59.210021882Z"} +2026/03/21 17:16:04 [log_collector] {"stage_name":"log_collector","events_processed":34373,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6874.6,"last_update":"2026-03-21T17:16:04.068279255Z"} +2026/03/21 17:16:04 [metric_collector] {"stage_name":"metric_collector","events_processed":21429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4285.8,"last_update":"2026-03-21T17:15:59.068886401Z"} +2026/03/21 17:16:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:15:59.07663296Z"} +2026/03/21 17:16:04 [detection_layer] {"stage_name":"detection_layer","events_processed":711,"events_dropped":0,"avg_latency_ms":22.043313022450835,"throughput_eps":0,"last_update":"2026-03-21T17:15:59.210005249Z"} +2026/03/21 17:16:04 ───────────────────────────────────────────────── +2026/03/21 17:16:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:16:09 [log_collector] {"stage_name":"log_collector","events_processed":34373,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6874.6,"last_update":"2026-03-21T17:16:04.068279255Z"} +2026/03/21 17:16:09 [metric_collector] {"stage_name":"metric_collector","events_processed":21434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4286.8,"last_update":"2026-03-21T17:16:04.068702706Z"} +2026/03/21 17:16:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8576,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:16:04.076741435Z"} +2026/03/21 17:16:09 [detection_layer] {"stage_name":"detection_layer","events_processed":711,"events_dropped":0,"avg_latency_ms":22.043313022450835,"throughput_eps":0,"last_update":"2026-03-21T17:16:04.209996409Z"} +2026/03/21 17:16:09 [transform_engine] {"stage_name":"transform_engine","events_processed":714,"events_dropped":0,"avg_latency_ms":855.6006555720635,"throughput_eps":0,"last_update":"2026-03-21T17:16:04.210007321Z"} +2026/03/21 17:16:09 ───────────────────────────────────────────────── +2026/03/21 17:16:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:16:14 [log_collector] {"stage_name":"log_collector","events_processed":34373,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6874.6,"last_update":"2026-03-21T17:16:09.068761653Z"} +2026/03/21 17:16:14 [metric_collector] {"stage_name":"metric_collector","events_processed":21439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4287.8,"last_update":"2026-03-21T17:16:09.069340221Z"} +2026/03/21 17:16:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:16:09.078839667Z"} +2026/03/21 17:16:14 [detection_layer] {"stage_name":"detection_layer","events_processed":711,"events_dropped":0,"avg_latency_ms":22.043313022450835,"throughput_eps":0,"last_update":"2026-03-21T17:16:09.210232433Z"} +2026/03/21 17:16:14 [transform_engine] {"stage_name":"transform_engine","events_processed":714,"events_dropped":0,"avg_latency_ms":855.6006555720635,"throughput_eps":0,"last_update":"2026-03-21T17:16:09.210248703Z"} +2026/03/21 17:16:14 ───────────────────────────────────────────────── +2026/03/21 17:16:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:16:19 [log_collector] {"stage_name":"log_collector","events_processed":34373,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6874.6,"last_update":"2026-03-21T17:16:14.068792015Z"} +2026/03/21 17:16:19 [metric_collector] {"stage_name":"metric_collector","events_processed":21444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4288.8,"last_update":"2026-03-21T17:16:14.069438262Z"} +2026/03/21 17:16:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8580,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:16:14.079269614Z"} +2026/03/21 17:16:19 [detection_layer] {"stage_name":"detection_layer","events_processed":711,"events_dropped":0,"avg_latency_ms":22.043313022450835,"throughput_eps":0,"last_update":"2026-03-21T17:16:14.210597806Z"} +2026/03/21 17:16:19 [transform_engine] {"stage_name":"transform_engine","events_processed":714,"events_dropped":0,"avg_latency_ms":855.6006555720635,"throughput_eps":0,"last_update":"2026-03-21T17:16:14.210613756Z"} +2026/03/21 17:16:19 ───────────────────────────────────────────────── +Saved state: 27 clusters, 34374 messages, reason: none +2026/03/21 17:16:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:16:24 [log_collector] {"stage_name":"log_collector","events_processed":34373,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6874.6,"last_update":"2026-03-21T17:16:19.068654335Z"} +2026/03/21 17:16:24 [metric_collector] {"stage_name":"metric_collector","events_processed":21449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4289.8,"last_update":"2026-03-21T17:16:19.069102453Z"} +2026/03/21 17:16:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:16:19.077082409Z"} +2026/03/21 17:16:24 [detection_layer] {"stage_name":"detection_layer","events_processed":711,"events_dropped":0,"avg_latency_ms":22.043313022450835,"throughput_eps":0,"last_update":"2026-03-21T17:16:19.210439897Z"} +2026/03/21 17:16:24 [transform_engine] {"stage_name":"transform_engine","events_processed":715,"events_dropped":0,"avg_latency_ms":701.1472138576509,"throughput_eps":0,"last_update":"2026-03-21T17:16:19.293791951Z"} +2026/03/21 17:16:24 ───────────────────────────────────────────────── +2026/03/21 17:16:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:16:29 [transform_engine] {"stage_name":"transform_engine","events_processed":715,"events_dropped":0,"avg_latency_ms":701.1472138576509,"throughput_eps":0,"last_update":"2026-03-21T17:16:24.209836999Z"} +2026/03/21 17:16:29 [log_collector] {"stage_name":"log_collector","events_processed":34378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6875.6,"last_update":"2026-03-21T17:16:24.068386427Z"} +2026/03/21 17:16:29 [metric_collector] {"stage_name":"metric_collector","events_processed":21454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4290.8,"last_update":"2026-03-21T17:16:24.068666825Z"} +2026/03/21 17:16:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:16:24.087650318Z"} +2026/03/21 17:16:29 [detection_layer] {"stage_name":"detection_layer","events_processed":712,"events_dropped":0,"avg_latency_ms":22.577456617960667,"throughput_eps":0,"last_update":"2026-03-21T17:16:24.209844704Z"} +2026/03/21 17:16:29 ───────────────────────────────────────────────── +2026/03/21 17:16:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:16:34 [log_collector] {"stage_name":"log_collector","events_processed":34378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6875.6,"last_update":"2026-03-21T17:16:34.068728786Z"} +2026/03/21 17:16:34 [metric_collector] {"stage_name":"metric_collector","events_processed":21459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4291.8,"last_update":"2026-03-21T17:16:29.069690101Z"} +2026/03/21 17:16:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8586,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:16:29.079398437Z"} +2026/03/21 17:16:34 [detection_layer] {"stage_name":"detection_layer","events_processed":712,"events_dropped":0,"avg_latency_ms":22.577456617960667,"throughput_eps":0,"last_update":"2026-03-21T17:16:29.210587002Z"} +2026/03/21 17:16:34 [transform_engine] {"stage_name":"transform_engine","events_processed":715,"events_dropped":0,"avg_latency_ms":701.1472138576509,"throughput_eps":0,"last_update":"2026-03-21T17:16:29.210577223Z"} +2026/03/21 17:16:34 ───────────────────────────────────────────────── +2026/03/21 17:16:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:16:39 [detection_layer] {"stage_name":"detection_layer","events_processed":712,"events_dropped":0,"avg_latency_ms":22.577456617960667,"throughput_eps":0,"last_update":"2026-03-21T17:16:34.210167795Z"} +2026/03/21 17:16:39 [transform_engine] {"stage_name":"transform_engine","events_processed":715,"events_dropped":0,"avg_latency_ms":701.1472138576509,"throughput_eps":0,"last_update":"2026-03-21T17:16:34.210142356Z"} +2026/03/21 17:16:39 [log_collector] {"stage_name":"log_collector","events_processed":34378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6875.6,"last_update":"2026-03-21T17:16:34.068728786Z"} +2026/03/21 17:16:39 [metric_collector] {"stage_name":"metric_collector","events_processed":21464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4292.8,"last_update":"2026-03-21T17:16:34.068941313Z"} +2026/03/21 17:16:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8588,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:16:34.075909471Z"} +2026/03/21 17:16:39 ───────────────────────────────────────────────── +2026/03/21 17:16:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:16:44 [metric_collector] {"stage_name":"metric_collector","events_processed":21469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4293.8,"last_update":"2026-03-21T17:16:39.068271096Z"} +2026/03/21 17:16:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:16:39.078953209Z"} +2026/03/21 17:16:44 [detection_layer] {"stage_name":"detection_layer","events_processed":712,"events_dropped":0,"avg_latency_ms":22.577456617960667,"throughput_eps":0,"last_update":"2026-03-21T17:16:39.210188382Z"} +2026/03/21 17:16:44 [transform_engine] {"stage_name":"transform_engine","events_processed":715,"events_dropped":0,"avg_latency_ms":701.1472138576509,"throughput_eps":0,"last_update":"2026-03-21T17:16:39.210214953Z"} +2026/03/21 17:16:44 [log_collector] {"stage_name":"log_collector","events_processed":34378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6875.6,"last_update":"2026-03-21T17:16:44.068404669Z"} +2026/03/21 17:16:44 ───────────────────────────────────────────────── +2026/03/21 17:16:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:16:49 [log_collector] {"stage_name":"log_collector","events_processed":34378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6875.6,"last_update":"2026-03-21T17:16:44.068404669Z"} +2026/03/21 17:16:49 [metric_collector] {"stage_name":"metric_collector","events_processed":21474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4294.8,"last_update":"2026-03-21T17:16:44.068571169Z"} +2026/03/21 17:16:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8592,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:16:44.076159614Z"} +2026/03/21 17:16:49 [detection_layer] {"stage_name":"detection_layer","events_processed":712,"events_dropped":0,"avg_latency_ms":22.577456617960667,"throughput_eps":0,"last_update":"2026-03-21T17:16:44.210384785Z"} +2026/03/21 17:16:49 [transform_engine] {"stage_name":"transform_engine","events_processed":715,"events_dropped":0,"avg_latency_ms":701.1472138576509,"throughput_eps":0,"last_update":"2026-03-21T17:16:44.210400997Z"} +2026/03/21 17:16:49 ───────────────────────────────────────────────── +2026/03/21 17:16:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:16:54 [log_collector] {"stage_name":"log_collector","events_processed":34378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6875.6,"last_update":"2026-03-21T17:16:49.068062203Z"} +2026/03/21 17:16:54 [metric_collector] {"stage_name":"metric_collector","events_processed":21479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4295.8,"last_update":"2026-03-21T17:16:49.068849932Z"} +2026/03/21 17:16:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:16:49.077831436Z"} +2026/03/21 17:16:54 [detection_layer] {"stage_name":"detection_layer","events_processed":712,"events_dropped":0,"avg_latency_ms":22.577456617960667,"throughput_eps":0,"last_update":"2026-03-21T17:16:49.210012312Z"} +2026/03/21 17:16:54 [transform_engine] {"stage_name":"transform_engine","events_processed":715,"events_dropped":0,"avg_latency_ms":701.1472138576509,"throughput_eps":0,"last_update":"2026-03-21T17:16:44.210400997Z"} +2026/03/21 17:16:54 ───────────────────────────────────────────────── +2026/03/21 17:16:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:16:59 [detection_layer] {"stage_name":"detection_layer","events_processed":712,"events_dropped":0,"avg_latency_ms":22.577456617960667,"throughput_eps":0,"last_update":"2026-03-21T17:16:54.210857891Z"} +2026/03/21 17:16:59 [transform_engine] {"stage_name":"transform_engine","events_processed":716,"events_dropped":0,"avg_latency_ms":1847.0341590861208,"throughput_eps":0,"last_update":"2026-03-21T17:16:55.64061457Z"} +2026/03/21 17:16:59 [log_collector] {"stage_name":"log_collector","events_processed":34378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6875.6,"last_update":"2026-03-21T17:16:54.068231488Z"} +2026/03/21 17:16:59 [metric_collector] {"stage_name":"metric_collector","events_processed":21484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4296.8,"last_update":"2026-03-21T17:16:54.06879111Z"} +2026/03/21 17:16:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:16:54.075486675Z"} +2026/03/21 17:16:59 ───────────────────────────────────────────────── +2026/03/21 17:17:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:17:04 [log_collector] {"stage_name":"log_collector","events_processed":34378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6875.6,"last_update":"2026-03-21T17:16:59.068909609Z"} +2026/03/21 17:17:04 [metric_collector] {"stage_name":"metric_collector","events_processed":21489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4297.8,"last_update":"2026-03-21T17:16:59.069132185Z"} +2026/03/21 17:17:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:16:59.076040358Z"} +2026/03/21 17:17:04 [detection_layer] {"stage_name":"detection_layer","events_processed":713,"events_dropped":0,"avg_latency_ms":21.491067694368535,"throughput_eps":0,"last_update":"2026-03-21T17:16:59.210298332Z"} +2026/03/21 17:17:04 [transform_engine] {"stage_name":"transform_engine","events_processed":716,"events_dropped":0,"avg_latency_ms":1847.0341590861208,"throughput_eps":0,"last_update":"2026-03-21T17:16:59.210310585Z"} +2026/03/21 17:17:04 ───────────────────────────────────────────────── +2026/03/21 17:17:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:17:09 [log_collector] {"stage_name":"log_collector","events_processed":34387,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6877.4,"last_update":"2026-03-21T17:17:09.068369388Z"} +2026/03/21 17:17:09 [metric_collector] {"stage_name":"metric_collector","events_processed":21494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4298.8,"last_update":"2026-03-21T17:17:04.068727331Z"} +2026/03/21 17:17:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:17:04.075879982Z"} +2026/03/21 17:17:09 [detection_layer] {"stage_name":"detection_layer","events_processed":713,"events_dropped":0,"avg_latency_ms":21.491067694368535,"throughput_eps":0,"last_update":"2026-03-21T17:17:04.210014198Z"} +2026/03/21 17:17:09 [transform_engine] {"stage_name":"transform_engine","events_processed":716,"events_dropped":0,"avg_latency_ms":1847.0341590861208,"throughput_eps":0,"last_update":"2026-03-21T17:17:04.210024739Z"} +2026/03/21 17:17:09 ───────────────────────────────────────────────── +2026/03/21 17:17:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:17:14 [log_collector] {"stage_name":"log_collector","events_processed":34387,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6877.4,"last_update":"2026-03-21T17:17:09.068369388Z"} +2026/03/21 17:17:14 [metric_collector] {"stage_name":"metric_collector","events_processed":21499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4299.8,"last_update":"2026-03-21T17:17:09.068728335Z"} +2026/03/21 17:17:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8602,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:17:09.076282095Z"} +2026/03/21 17:17:14 [detection_layer] {"stage_name":"detection_layer","events_processed":713,"events_dropped":0,"avg_latency_ms":21.491067694368535,"throughput_eps":0,"last_update":"2026-03-21T17:17:09.210272106Z"} +2026/03/21 17:17:14 [transform_engine] {"stage_name":"transform_engine","events_processed":716,"events_dropped":0,"avg_latency_ms":1847.0341590861208,"throughput_eps":0,"last_update":"2026-03-21T17:17:09.210281594Z"} +2026/03/21 17:17:14 ───────────────────────────────────────────────── +2026/03/21 17:17:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:17:19 [detection_layer] {"stage_name":"detection_layer","events_processed":713,"events_dropped":0,"avg_latency_ms":21.491067694368535,"throughput_eps":0,"last_update":"2026-03-21T17:17:14.210665452Z"} +2026/03/21 17:17:19 [transform_engine] {"stage_name":"transform_engine","events_processed":716,"events_dropped":0,"avg_latency_ms":1847.0341590861208,"throughput_eps":0,"last_update":"2026-03-21T17:17:14.210677785Z"} +2026/03/21 17:17:19 [log_collector] {"stage_name":"log_collector","events_processed":34389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6877.8,"last_update":"2026-03-21T17:17:14.068584183Z"} +2026/03/21 17:17:19 [metric_collector] {"stage_name":"metric_collector","events_processed":21504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4300.8,"last_update":"2026-03-21T17:17:14.068959381Z"} +2026/03/21 17:17:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:17:14.077433203Z"} +2026/03/21 17:17:19 ───────────────────────────────────────────────── +Saved state: 27 clusters, 34660 messages, reason: none +2026/03/21 17:17:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:17:24 [detection_layer] {"stage_name":"detection_layer","events_processed":713,"events_dropped":0,"avg_latency_ms":21.491067694368535,"throughput_eps":0,"last_update":"2026-03-21T17:17:19.210581315Z"} +2026/03/21 17:17:24 [transform_engine] {"stage_name":"transform_engine","events_processed":717,"events_dropped":0,"avg_latency_ms":2079.5234260688967,"throughput_eps":0,"last_update":"2026-03-21T17:17:22.220078672Z"} +2026/03/21 17:17:24 [log_collector] {"stage_name":"log_collector","events_processed":34586,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6917.2,"last_update":"2026-03-21T17:17:19.068903569Z"} +2026/03/21 17:17:24 [metric_collector] {"stage_name":"metric_collector","events_processed":21509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4301.8,"last_update":"2026-03-21T17:17:19.069200949Z"} +2026/03/21 17:17:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:17:19.077333507Z"} +2026/03/21 17:17:24 ───────────────────────────────────────────────── +2026/03/21 17:17:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:17:29 [log_collector] {"stage_name":"log_collector","events_processed":34675,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6935,"last_update":"2026-03-21T17:17:24.068965243Z"} +2026/03/21 17:17:29 [metric_collector] {"stage_name":"metric_collector","events_processed":21514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4302.8,"last_update":"2026-03-21T17:17:24.069098338Z"} +2026/03/21 17:17:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:17:24.076343556Z"} +2026/03/21 17:17:29 [detection_layer] {"stage_name":"detection_layer","events_processed":714,"events_dropped":0,"avg_latency_ms":21.255013355494828,"throughput_eps":0,"last_update":"2026-03-21T17:17:24.210628832Z"} +2026/03/21 17:17:29 [transform_engine] {"stage_name":"transform_engine","events_processed":717,"events_dropped":0,"avg_latency_ms":2079.5234260688967,"throughput_eps":0,"last_update":"2026-03-21T17:17:24.210659321Z"} +2026/03/21 17:17:29 ───────────────────────────────────────────────── +2026/03/21 17:17:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:17:34 [metric_collector] {"stage_name":"metric_collector","events_processed":21519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4303.8,"last_update":"2026-03-21T17:17:29.069167285Z"} +2026/03/21 17:17:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:17:29.078790429Z"} +2026/03/21 17:17:34 [detection_layer] {"stage_name":"detection_layer","events_processed":714,"events_dropped":0,"avg_latency_ms":21.255013355494828,"throughput_eps":0,"last_update":"2026-03-21T17:17:29.210037825Z"} +2026/03/21 17:17:34 [transform_engine] {"stage_name":"transform_engine","events_processed":717,"events_dropped":0,"avg_latency_ms":2079.5234260688967,"throughput_eps":0,"last_update":"2026-03-21T17:17:29.210061771Z"} +2026/03/21 17:17:34 [log_collector] {"stage_name":"log_collector","events_processed":34735,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6947,"last_update":"2026-03-21T17:17:29.068774062Z"} +2026/03/21 17:17:34 ───────────────────────────────────────────────── +2026/03/21 17:17:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:17:39 [metric_collector] {"stage_name":"metric_collector","events_processed":21524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4304.8,"last_update":"2026-03-21T17:17:34.06879046Z"} +2026/03/21 17:17:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:17:34.07799435Z"} +2026/03/21 17:17:39 [detection_layer] {"stage_name":"detection_layer","events_processed":714,"events_dropped":0,"avg_latency_ms":21.255013355494828,"throughput_eps":0,"last_update":"2026-03-21T17:17:34.210409714Z"} +2026/03/21 17:17:39 [transform_engine] {"stage_name":"transform_engine","events_processed":717,"events_dropped":0,"avg_latency_ms":2079.5234260688967,"throughput_eps":0,"last_update":"2026-03-21T17:17:34.210274536Z"} +2026/03/21 17:17:39 [log_collector] {"stage_name":"log_collector","events_processed":34735,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6947,"last_update":"2026-03-21T17:17:34.068440249Z"} +2026/03/21 17:17:39 ───────────────────────────────────────────────── +2026/03/21 17:17:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:17:44 [log_collector] {"stage_name":"log_collector","events_processed":34735,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6947,"last_update":"2026-03-21T17:17:39.068783172Z"} +2026/03/21 17:17:44 [metric_collector] {"stage_name":"metric_collector","events_processed":21529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4305.8,"last_update":"2026-03-21T17:17:39.069249867Z"} +2026/03/21 17:17:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:17:39.078061024Z"} +2026/03/21 17:17:44 [detection_layer] {"stage_name":"detection_layer","events_processed":714,"events_dropped":0,"avg_latency_ms":21.255013355494828,"throughput_eps":0,"last_update":"2026-03-21T17:17:39.210433196Z"} +2026/03/21 17:17:44 [transform_engine] {"stage_name":"transform_engine","events_processed":717,"events_dropped":0,"avg_latency_ms":2079.5234260688967,"throughput_eps":0,"last_update":"2026-03-21T17:17:39.210405002Z"} +2026/03/21 17:17:44 ───────────────────────────────────────────────── +2026/03/21 17:17:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:17:49 [log_collector] {"stage_name":"log_collector","events_processed":34735,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6947,"last_update":"2026-03-21T17:17:44.068441575Z"} +2026/03/21 17:17:49 [metric_collector] {"stage_name":"metric_collector","events_processed":21534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4306.8,"last_update":"2026-03-21T17:17:44.068429943Z"} +2026/03/21 17:17:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:17:44.077018054Z"} +2026/03/21 17:17:49 [detection_layer] {"stage_name":"detection_layer","events_processed":714,"events_dropped":0,"avg_latency_ms":21.255013355494828,"throughput_eps":0,"last_update":"2026-03-21T17:17:44.210407665Z"} +2026/03/21 17:17:49 [transform_engine] {"stage_name":"transform_engine","events_processed":717,"events_dropped":0,"avg_latency_ms":2079.5234260688967,"throughput_eps":0,"last_update":"2026-03-21T17:17:44.210438043Z"} +2026/03/21 17:17:49 ───────────────────────────────────────────────── +2026/03/21 17:17:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:17:54 [log_collector] {"stage_name":"log_collector","events_processed":34735,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6947,"last_update":"2026-03-21T17:17:49.068943905Z"} +2026/03/21 17:17:54 [metric_collector] {"stage_name":"metric_collector","events_processed":21539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4307.8,"last_update":"2026-03-21T17:17:49.069563723Z"} +2026/03/21 17:17:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:17:49.078593599Z"} +2026/03/21 17:17:54 [detection_layer] {"stage_name":"detection_layer","events_processed":714,"events_dropped":0,"avg_latency_ms":21.255013355494828,"throughput_eps":0,"last_update":"2026-03-21T17:17:49.21082907Z"} +2026/03/21 17:17:54 [transform_engine] {"stage_name":"transform_engine","events_processed":718,"events_dropped":0,"avg_latency_ms":1688.0675972551176,"throughput_eps":0,"last_update":"2026-03-21T17:17:49.331961061Z"} +2026/03/21 17:17:54 ───────────────────────────────────────────────── +2026/03/21 17:17:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:17:59 [log_collector] {"stage_name":"log_collector","events_processed":34735,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6947,"last_update":"2026-03-21T17:17:54.068139435Z"} +2026/03/21 17:17:59 [metric_collector] {"stage_name":"metric_collector","events_processed":21544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4308.8,"last_update":"2026-03-21T17:17:54.068641597Z"} +2026/03/21 17:17:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8620,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:17:54.077582473Z"} +2026/03/21 17:17:59 [detection_layer] {"stage_name":"detection_layer","events_processed":715,"events_dropped":0,"avg_latency_ms":21.913162284395863,"throughput_eps":0,"last_update":"2026-03-21T17:17:54.209869903Z"} +2026/03/21 17:17:59 [transform_engine] {"stage_name":"transform_engine","events_processed":718,"events_dropped":0,"avg_latency_ms":1688.0675972551176,"throughput_eps":0,"last_update":"2026-03-21T17:17:54.209830047Z"} +2026/03/21 17:17:59 ───────────────────────────────────────────────── +2026/03/21 17:18:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:18:04 [log_collector] {"stage_name":"log_collector","events_processed":34735,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6947,"last_update":"2026-03-21T17:17:59.068069602Z"} +2026/03/21 17:18:04 [metric_collector] {"stage_name":"metric_collector","events_processed":21549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4309.8,"last_update":"2026-03-21T17:17:59.068393031Z"} +2026/03/21 17:18:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8622,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:17:59.077205953Z"} +2026/03/21 17:18:04 [detection_layer] {"stage_name":"detection_layer","events_processed":715,"events_dropped":0,"avg_latency_ms":21.913162284395863,"throughput_eps":0,"last_update":"2026-03-21T17:17:59.210591276Z"} +2026/03/21 17:18:04 [transform_engine] {"stage_name":"transform_engine","events_processed":718,"events_dropped":0,"avg_latency_ms":1688.0675972551176,"throughput_eps":0,"last_update":"2026-03-21T17:17:59.210523015Z"} +2026/03/21 17:18:04 ───────────────────────────────────────────────── +2026/03/21 17:18:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:18:09 [log_collector] {"stage_name":"log_collector","events_processed":34735,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6947,"last_update":"2026-03-21T17:18:04.068822816Z"} +2026/03/21 17:18:09 [metric_collector] {"stage_name":"metric_collector","events_processed":21554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4310.8,"last_update":"2026-03-21T17:18:04.068993563Z"} +2026/03/21 17:18:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:18:04.07764732Z"} +2026/03/21 17:18:09 [detection_layer] {"stage_name":"detection_layer","events_processed":715,"events_dropped":0,"avg_latency_ms":21.913162284395863,"throughput_eps":0,"last_update":"2026-03-21T17:18:04.210038498Z"} +2026/03/21 17:18:09 [transform_engine] {"stage_name":"transform_engine","events_processed":718,"events_dropped":0,"avg_latency_ms":1688.0675972551176,"throughput_eps":0,"last_update":"2026-03-21T17:18:04.209922636Z"} +2026/03/21 17:18:09 ───────────────────────────────────────────────── +2026/03/21 17:18:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:18:14 [log_collector] {"stage_name":"log_collector","events_processed":34735,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6947,"last_update":"2026-03-21T17:18:09.068649264Z"} +2026/03/21 17:18:14 [metric_collector] {"stage_name":"metric_collector","events_processed":21559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4311.8,"last_update":"2026-03-21T17:18:09.069142008Z"} +2026/03/21 17:18:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:18:09.077451946Z"} +2026/03/21 17:18:14 [detection_layer] {"stage_name":"detection_layer","events_processed":715,"events_dropped":0,"avg_latency_ms":21.913162284395863,"throughput_eps":0,"last_update":"2026-03-21T17:18:09.21083273Z"} +2026/03/21 17:18:14 [transform_engine] {"stage_name":"transform_engine","events_processed":718,"events_dropped":0,"avg_latency_ms":1688.0675972551176,"throughput_eps":0,"last_update":"2026-03-21T17:18:09.209700652Z"} +2026/03/21 17:18:14 ───────────────────────────────────────────────── +2026/03/21 17:18:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:18:19 [transform_engine] {"stage_name":"transform_engine","events_processed":718,"events_dropped":0,"avg_latency_ms":1688.0675972551176,"throughput_eps":0,"last_update":"2026-03-21T17:18:14.209637332Z"} +2026/03/21 17:18:19 [log_collector] {"stage_name":"log_collector","events_processed":34735,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6947,"last_update":"2026-03-21T17:18:14.068735852Z"} +2026/03/21 17:18:19 [metric_collector] {"stage_name":"metric_collector","events_processed":21564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4312.8,"last_update":"2026-03-21T17:18:14.069156638Z"} +2026/03/21 17:18:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:18:14.078514072Z"} +2026/03/21 17:18:19 [detection_layer] {"stage_name":"detection_layer","events_processed":715,"events_dropped":0,"avg_latency_ms":21.913162284395863,"throughput_eps":0,"last_update":"2026-03-21T17:18:14.210895441Z"} +2026/03/21 17:18:19 ───────────────────────────────────────────────── +2026/03/21 17:18:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:18:24 [log_collector] {"stage_name":"log_collector","events_processed":34738,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6947.6,"last_update":"2026-03-21T17:18:19.068571139Z"} +2026/03/21 17:18:24 [metric_collector] {"stage_name":"metric_collector","events_processed":21569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4313.8,"last_update":"2026-03-21T17:18:19.06885334Z"} +2026/03/21 17:18:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:18:19.077705847Z"} +2026/03/21 17:18:24 [detection_layer] {"stage_name":"detection_layer","events_processed":715,"events_dropped":0,"avg_latency_ms":21.913162284395863,"throughput_eps":0,"last_update":"2026-03-21T17:18:19.210139897Z"} +2026/03/21 17:18:24 [transform_engine] {"stage_name":"transform_engine","events_processed":719,"events_dropped":0,"avg_latency_ms":1375.170264404094,"throughput_eps":0,"last_update":"2026-03-21T17:18:19.333673359Z"} +2026/03/21 17:18:24 ───────────────────────────────────────────────── +Saved state: 27 clusters, 34739 messages, reason: none +2026/03/21 17:18:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:18:29 [log_collector] {"stage_name":"log_collector","events_processed":34738,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6947.6,"last_update":"2026-03-21T17:18:24.068380678Z"} +2026/03/21 17:18:29 [metric_collector] {"stage_name":"metric_collector","events_processed":21574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4314.8,"last_update":"2026-03-21T17:18:24.068607402Z"} +2026/03/21 17:18:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8632,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:18:24.079714128Z"} +2026/03/21 17:18:29 [detection_layer] {"stage_name":"detection_layer","events_processed":716,"events_dropped":0,"avg_latency_ms":22.28678662751669,"throughput_eps":0,"last_update":"2026-03-21T17:18:24.210051782Z"} +2026/03/21 17:18:29 [transform_engine] {"stage_name":"transform_engine","events_processed":719,"events_dropped":0,"avg_latency_ms":1375.170264404094,"throughput_eps":0,"last_update":"2026-03-21T17:18:24.210148177Z"} +2026/03/21 17:18:29 ───────────────────────────────────────────────── +2026/03/21 17:18:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:18:34 [log_collector] {"stage_name":"log_collector","events_processed":34748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6949.6,"last_update":"2026-03-21T17:18:29.068474783Z"} +2026/03/21 17:18:34 [metric_collector] {"stage_name":"metric_collector","events_processed":21579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4315.8,"last_update":"2026-03-21T17:18:29.069146259Z"} +2026/03/21 17:18:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:18:29.075843929Z"} +2026/03/21 17:18:34 [detection_layer] {"stage_name":"detection_layer","events_processed":716,"events_dropped":0,"avg_latency_ms":22.28678662751669,"throughput_eps":0,"last_update":"2026-03-21T17:18:29.210146198Z"} +2026/03/21 17:18:34 [transform_engine] {"stage_name":"transform_engine","events_processed":719,"events_dropped":0,"avg_latency_ms":1375.170264404094,"throughput_eps":0,"last_update":"2026-03-21T17:18:29.210117282Z"} +2026/03/21 17:18:34 ───────────────────────────────────────────────── +2026/03/21 17:18:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:18:39 [log_collector] {"stage_name":"log_collector","events_processed":34756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6951.2,"last_update":"2026-03-21T17:18:34.068687485Z"} +2026/03/21 17:18:39 [metric_collector] {"stage_name":"metric_collector","events_processed":21584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4316.8,"last_update":"2026-03-21T17:18:34.068926302Z"} +2026/03/21 17:18:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:18:34.074691635Z"} +2026/03/21 17:18:39 [detection_layer] {"stage_name":"detection_layer","events_processed":716,"events_dropped":0,"avg_latency_ms":22.28678662751669,"throughput_eps":0,"last_update":"2026-03-21T17:18:34.209954023Z"} +2026/03/21 17:18:39 [transform_engine] {"stage_name":"transform_engine","events_processed":719,"events_dropped":0,"avg_latency_ms":1375.170264404094,"throughput_eps":0,"last_update":"2026-03-21T17:18:34.209937593Z"} +2026/03/21 17:18:39 ───────────────────────────────────────────────── +2026/03/21 17:18:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:18:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:18:39.077275011Z"} +2026/03/21 17:18:44 [detection_layer] {"stage_name":"detection_layer","events_processed":716,"events_dropped":0,"avg_latency_ms":22.28678662751669,"throughput_eps":0,"last_update":"2026-03-21T17:18:39.210816232Z"} +2026/03/21 17:18:44 [transform_engine] {"stage_name":"transform_engine","events_processed":719,"events_dropped":0,"avg_latency_ms":1375.170264404094,"throughput_eps":0,"last_update":"2026-03-21T17:18:39.2106847Z"} +2026/03/21 17:18:44 [log_collector] {"stage_name":"log_collector","events_processed":34765,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6953,"last_update":"2026-03-21T17:18:39.068080579Z"} +2026/03/21 17:18:44 [metric_collector] {"stage_name":"metric_collector","events_processed":21589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4317.8,"last_update":"2026-03-21T17:18:39.068384621Z"} +2026/03/21 17:18:44 ───────────────────────────────────────────────── +2026/03/21 17:18:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:18:49 [log_collector] {"stage_name":"log_collector","events_processed":34765,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6953,"last_update":"2026-03-21T17:18:44.068094241Z"} +2026/03/21 17:18:49 [metric_collector] {"stage_name":"metric_collector","events_processed":21594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4318.8,"last_update":"2026-03-21T17:18:44.068606163Z"} +2026/03/21 17:18:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8640,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:18:44.078744132Z"} +2026/03/21 17:18:49 [detection_layer] {"stage_name":"detection_layer","events_processed":716,"events_dropped":0,"avg_latency_ms":22.28678662751669,"throughput_eps":0,"last_update":"2026-03-21T17:18:44.209978044Z"} +2026/03/21 17:18:49 [transform_engine] {"stage_name":"transform_engine","events_processed":719,"events_dropped":0,"avg_latency_ms":1375.170264404094,"throughput_eps":0,"last_update":"2026-03-21T17:18:44.21000747Z"} +2026/03/21 17:18:49 ───────────────────────────────────────────────── +2026/03/21 17:18:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:18:54 [log_collector] {"stage_name":"log_collector","events_processed":34765,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6953,"last_update":"2026-03-21T17:18:49.068126582Z"} +2026/03/21 17:18:54 [metric_collector] {"stage_name":"metric_collector","events_processed":21599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4319.8,"last_update":"2026-03-21T17:18:49.068585201Z"} +2026/03/21 17:18:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:18:49.076954091Z"} +2026/03/21 17:18:54 [detection_layer] {"stage_name":"detection_layer","events_processed":716,"events_dropped":0,"avg_latency_ms":22.28678662751669,"throughput_eps":0,"last_update":"2026-03-21T17:18:49.210285902Z"} +2026/03/21 17:18:54 [transform_engine] {"stage_name":"transform_engine","events_processed":720,"events_dropped":0,"avg_latency_ms":1125.1139089232752,"throughput_eps":0,"last_update":"2026-03-21T17:18:49.335211591Z"} +2026/03/21 17:18:54 ───────────────────────────────────────────────── +2026/03/21 17:18:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:18:59 [log_collector] {"stage_name":"log_collector","events_processed":34765,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6953,"last_update":"2026-03-21T17:18:54.068877749Z"} +2026/03/21 17:18:59 [metric_collector] {"stage_name":"metric_collector","events_processed":21604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4320.8,"last_update":"2026-03-21T17:18:54.069344704Z"} +2026/03/21 17:18:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:18:54.077169111Z"} +2026/03/21 17:18:59 [detection_layer] {"stage_name":"detection_layer","events_processed":717,"events_dropped":0,"avg_latency_ms":22.225191502013352,"throughput_eps":0,"last_update":"2026-03-21T17:18:54.210523916Z"} +2026/03/21 17:18:59 [transform_engine] {"stage_name":"transform_engine","events_processed":720,"events_dropped":0,"avg_latency_ms":1125.1139089232752,"throughput_eps":0,"last_update":"2026-03-21T17:18:54.210629809Z"} +2026/03/21 17:18:59 ───────────────────────────────────────────────── +2026/03/21 17:19:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:19:04 [log_collector] {"stage_name":"log_collector","events_processed":34765,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6953,"last_update":"2026-03-21T17:18:59.069090947Z"} +2026/03/21 17:19:04 [metric_collector] {"stage_name":"metric_collector","events_processed":21609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4321.8,"last_update":"2026-03-21T17:18:59.069725893Z"} +2026/03/21 17:19:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8646,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:18:59.078989296Z"} +2026/03/21 17:19:04 [detection_layer] {"stage_name":"detection_layer","events_processed":717,"events_dropped":0,"avg_latency_ms":22.225191502013352,"throughput_eps":0,"last_update":"2026-03-21T17:18:59.210221655Z"} +2026/03/21 17:19:04 [transform_engine] {"stage_name":"transform_engine","events_processed":720,"events_dropped":0,"avg_latency_ms":1125.1139089232752,"throughput_eps":0,"last_update":"2026-03-21T17:18:59.210251793Z"} +2026/03/21 17:19:04 ───────────────────────────────────────────────── +2026/03/21 17:19:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:19:09 [log_collector] {"stage_name":"log_collector","events_processed":34778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6955.6,"last_update":"2026-03-21T17:19:04.068386247Z"} +2026/03/21 17:19:09 [metric_collector] {"stage_name":"metric_collector","events_processed":21614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4322.8,"last_update":"2026-03-21T17:19:04.068768409Z"} +2026/03/21 17:19:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:19:04.074536788Z"} +2026/03/21 17:19:09 [detection_layer] {"stage_name":"detection_layer","events_processed":717,"events_dropped":0,"avg_latency_ms":22.225191502013352,"throughput_eps":0,"last_update":"2026-03-21T17:19:04.210786868Z"} +2026/03/21 17:19:09 [transform_engine] {"stage_name":"transform_engine","events_processed":720,"events_dropped":0,"avg_latency_ms":1125.1139089232752,"throughput_eps":0,"last_update":"2026-03-21T17:19:04.209701208Z"} +2026/03/21 17:19:09 ───────────────────────────────────────────────── +2026/03/21 17:19:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:19:14 [transform_engine] {"stage_name":"transform_engine","events_processed":720,"events_dropped":0,"avg_latency_ms":1125.1139089232752,"throughput_eps":0,"last_update":"2026-03-21T17:19:09.210182081Z"} +2026/03/21 17:19:14 [log_collector] {"stage_name":"log_collector","events_processed":34779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6955.8,"last_update":"2026-03-21T17:19:09.068679048Z"} +2026/03/21 17:19:14 [metric_collector] {"stage_name":"metric_collector","events_processed":21619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4323.8,"last_update":"2026-03-21T17:19:09.069105996Z"} +2026/03/21 17:19:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8650,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:19:09.077927053Z"} +2026/03/21 17:19:14 [detection_layer] {"stage_name":"detection_layer","events_processed":717,"events_dropped":0,"avg_latency_ms":22.225191502013352,"throughput_eps":0,"last_update":"2026-03-21T17:19:09.210226897Z"} +2026/03/21 17:19:14 ───────────────────────────────────────────────── +2026/03/21 17:19:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:19:19 [transform_engine] {"stage_name":"transform_engine","events_processed":720,"events_dropped":0,"avg_latency_ms":1125.1139089232752,"throughput_eps":0,"last_update":"2026-03-21T17:19:14.210686548Z"} +2026/03/21 17:19:19 [log_collector] {"stage_name":"log_collector","events_processed":34779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6955.8,"last_update":"2026-03-21T17:19:14.069073856Z"} +2026/03/21 17:19:19 [metric_collector] {"stage_name":"metric_collector","events_processed":21624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4324.8,"last_update":"2026-03-21T17:19:14.069336528Z"} +2026/03/21 17:19:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:19:14.0783688Z"} +2026/03/21 17:19:19 [detection_layer] {"stage_name":"detection_layer","events_processed":717,"events_dropped":0,"avg_latency_ms":22.225191502013352,"throughput_eps":0,"last_update":"2026-03-21T17:19:14.210577369Z"} +2026/03/21 17:19:19 ───────────────────────────────────────────────── +2026/03/21 17:19:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:19:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:19:19.079498935Z"} +2026/03/21 17:19:24 [detection_layer] {"stage_name":"detection_layer","events_processed":717,"events_dropped":0,"avg_latency_ms":22.225191502013352,"throughput_eps":0,"last_update":"2026-03-21T17:19:19.210507696Z"} +2026/03/21 17:19:24 [transform_engine] {"stage_name":"transform_engine","events_processed":721,"events_dropped":0,"avg_latency_ms":925.1431711386202,"throughput_eps":0,"last_update":"2026-03-21T17:19:19.335027537Z"} +2026/03/21 17:19:24 [log_collector] {"stage_name":"log_collector","events_processed":34779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6955.8,"last_update":"2026-03-21T17:19:19.068680393Z"} +2026/03/21 17:19:24 [metric_collector] {"stage_name":"metric_collector","events_processed":21629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4325.8,"last_update":"2026-03-21T17:19:19.069139301Z"} +2026/03/21 17:19:24 ───────────────────────────────────────────────── +2026/03/21 17:19:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:19:29 [log_collector] {"stage_name":"log_collector","events_processed":34779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6955.8,"last_update":"2026-03-21T17:19:24.075433741Z"} +2026/03/21 17:19:29 [metric_collector] {"stage_name":"metric_collector","events_processed":21634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4326.8,"last_update":"2026-03-21T17:19:24.074970683Z"} +2026/03/21 17:19:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:19:24.127652457Z"} +2026/03/21 17:19:29 [detection_layer] {"stage_name":"detection_layer","events_processed":718,"events_dropped":0,"avg_latency_ms":22.217216601610684,"throughput_eps":0,"last_update":"2026-03-21T17:19:24.21104633Z"} +2026/03/21 17:19:29 [transform_engine] {"stage_name":"transform_engine","events_processed":721,"events_dropped":0,"avg_latency_ms":925.1431711386202,"throughput_eps":0,"last_update":"2026-03-21T17:19:24.213273145Z"} +2026/03/21 17:19:29 ───────────────────────────────────────────────── +2026/03/21 17:19:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:19:34 [log_collector] {"stage_name":"log_collector","events_processed":34779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6955.8,"last_update":"2026-03-21T17:19:29.069259496Z"} +2026/03/21 17:19:34 [metric_collector] {"stage_name":"metric_collector","events_processed":21639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4327.8,"last_update":"2026-03-21T17:19:29.070109464Z"} +2026/03/21 17:19:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:19:29.137711778Z"} +2026/03/21 17:19:34 [detection_layer] {"stage_name":"detection_layer","events_processed":718,"events_dropped":0,"avg_latency_ms":22.217216601610684,"throughput_eps":0,"last_update":"2026-03-21T17:19:29.210809398Z"} +2026/03/21 17:19:34 [transform_engine] {"stage_name":"transform_engine","events_processed":721,"events_dropped":0,"avg_latency_ms":925.1431711386202,"throughput_eps":0,"last_update":"2026-03-21T17:19:29.20970334Z"} +2026/03/21 17:19:34 ───────────────────────────────────────────────── +2026/03/21 17:19:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:19:39 [transform_engine] {"stage_name":"transform_engine","events_processed":721,"events_dropped":0,"avg_latency_ms":925.1431711386202,"throughput_eps":0,"last_update":"2026-03-21T17:19:34.210314494Z"} +2026/03/21 17:19:39 [log_collector] {"stage_name":"log_collector","events_processed":34779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6955.8,"last_update":"2026-03-21T17:19:34.069551068Z"} +2026/03/21 17:19:39 [metric_collector] {"stage_name":"metric_collector","events_processed":21644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4328.8,"last_update":"2026-03-21T17:19:34.069824501Z"} +2026/03/21 17:19:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8660,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:19:34.092985036Z"} +2026/03/21 17:19:39 [detection_layer] {"stage_name":"detection_layer","events_processed":718,"events_dropped":0,"avg_latency_ms":22.217216601610684,"throughput_eps":0,"last_update":"2026-03-21T17:19:34.210305327Z"} +2026/03/21 17:19:39 ───────────────────────────────────────────────── +2026/03/21 17:19:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:19:44 [log_collector] {"stage_name":"log_collector","events_processed":34779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6955.8,"last_update":"2026-03-21T17:19:39.068775506Z"} +2026/03/21 17:19:44 [metric_collector] {"stage_name":"metric_collector","events_processed":21649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4329.8,"last_update":"2026-03-21T17:19:39.069406445Z"} +2026/03/21 17:19:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8662,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:19:39.091243864Z"} +2026/03/21 17:19:44 [detection_layer] {"stage_name":"detection_layer","events_processed":718,"events_dropped":0,"avg_latency_ms":22.217216601610684,"throughput_eps":0,"last_update":"2026-03-21T17:19:39.210552113Z"} +2026/03/21 17:19:44 [transform_engine] {"stage_name":"transform_engine","events_processed":721,"events_dropped":0,"avg_latency_ms":925.1431711386202,"throughput_eps":0,"last_update":"2026-03-21T17:19:39.210474644Z"} +2026/03/21 17:19:44 ───────────────────────────────────────────────── +2026/03/21 17:19:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:19:49 [metric_collector] {"stage_name":"metric_collector","events_processed":21654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4330.8,"last_update":"2026-03-21T17:19:44.069716183Z"} +2026/03/21 17:19:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:19:44.091392374Z"} +2026/03/21 17:19:49 [detection_layer] {"stage_name":"detection_layer","events_processed":718,"events_dropped":0,"avg_latency_ms":22.217216601610684,"throughput_eps":0,"last_update":"2026-03-21T17:19:44.212462126Z"} +2026/03/21 17:19:49 [transform_engine] {"stage_name":"transform_engine","events_processed":721,"events_dropped":0,"avg_latency_ms":925.1431711386202,"throughput_eps":0,"last_update":"2026-03-21T17:19:44.210350621Z"} +2026/03/21 17:19:49 [log_collector] {"stage_name":"log_collector","events_processed":34779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6955.8,"last_update":"2026-03-21T17:19:44.069030959Z"} +2026/03/21 17:19:49 ───────────────────────────────────────────────── +2026/03/21 17:19:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:19:54 [log_collector] {"stage_name":"log_collector","events_processed":34779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6955.8,"last_update":"2026-03-21T17:19:49.073004075Z"} +2026/03/21 17:19:54 [metric_collector] {"stage_name":"metric_collector","events_processed":21658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4331.6,"last_update":"2026-03-21T17:19:49.069116078Z"} +2026/03/21 17:19:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:19:49.095389795Z"} +2026/03/21 17:19:54 [detection_layer] {"stage_name":"detection_layer","events_processed":718,"events_dropped":0,"avg_latency_ms":22.217216601610684,"throughput_eps":0,"last_update":"2026-03-21T17:19:49.210599532Z"} +2026/03/21 17:19:54 [transform_engine] {"stage_name":"transform_engine","events_processed":722,"events_dropped":0,"avg_latency_ms":1012.5487135108963,"throughput_eps":0,"last_update":"2026-03-21T17:19:50.572988344Z"} +2026/03/21 17:19:54 ───────────────────────────────────────────────── +2026/03/21 17:19:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:19:59 [log_collector] {"stage_name":"log_collector","events_processed":34779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6955.8,"last_update":"2026-03-21T17:19:54.069189023Z"} +2026/03/21 17:19:59 [metric_collector] {"stage_name":"metric_collector","events_processed":21663,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4332.6,"last_update":"2026-03-21T17:19:54.069132014Z"} +2026/03/21 17:19:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8668,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:19:54.091428183Z"} +2026/03/21 17:19:59 [detection_layer] {"stage_name":"detection_layer","events_processed":719,"events_dropped":0,"avg_latency_ms":21.01100848128855,"throughput_eps":0,"last_update":"2026-03-21T17:19:54.210668111Z"} +2026/03/21 17:19:59 [transform_engine] {"stage_name":"transform_engine","events_processed":722,"events_dropped":0,"avg_latency_ms":1012.5487135108963,"throughput_eps":0,"last_update":"2026-03-21T17:19:54.210688079Z"} +2026/03/21 17:19:59 ───────────────────────────────────────────────── +2026/03/21 17:20:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:20:04 [log_collector] {"stage_name":"log_collector","events_processed":34779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6955.8,"last_update":"2026-03-21T17:19:59.068726706Z"} +2026/03/21 17:20:04 [metric_collector] {"stage_name":"metric_collector","events_processed":21668,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4333.6,"last_update":"2026-03-21T17:19:59.068558695Z"} +2026/03/21 17:20:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8670,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:19:59.077626654Z"} +2026/03/21 17:20:04 [detection_layer] {"stage_name":"detection_layer","events_processed":719,"events_dropped":0,"avg_latency_ms":21.01100848128855,"throughput_eps":0,"last_update":"2026-03-21T17:19:59.20995327Z"} +2026/03/21 17:20:04 [transform_engine] {"stage_name":"transform_engine","events_processed":722,"events_dropped":0,"avg_latency_ms":1012.5487135108963,"throughput_eps":0,"last_update":"2026-03-21T17:19:59.209730483Z"} +2026/03/21 17:20:04 ───────────────────────────────────────────────── +Saved state: 27 clusters, 34780 messages, reason: none +2026/03/21 17:20:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:20:09 [log_collector] {"stage_name":"log_collector","events_processed":34779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6955.8,"last_update":"2026-03-21T17:20:04.068942115Z"} +2026/03/21 17:20:09 [metric_collector] {"stage_name":"metric_collector","events_processed":21674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4334.8,"last_update":"2026-03-21T17:20:04.069250957Z"} +2026/03/21 17:20:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:20:04.101096047Z"} +2026/03/21 17:20:09 [detection_layer] {"stage_name":"detection_layer","events_processed":719,"events_dropped":0,"avg_latency_ms":21.01100848128855,"throughput_eps":0,"last_update":"2026-03-21T17:20:04.210327282Z"} +2026/03/21 17:20:09 [transform_engine] {"stage_name":"transform_engine","events_processed":722,"events_dropped":0,"avg_latency_ms":1012.5487135108963,"throughput_eps":0,"last_update":"2026-03-21T17:20:04.210396645Z"} +2026/03/21 17:20:09 ───────────────────────────────────────────────── +2026/03/21 17:20:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:20:14 [transform_engine] {"stage_name":"transform_engine","events_processed":722,"events_dropped":0,"avg_latency_ms":1012.5487135108963,"throughput_eps":0,"last_update":"2026-03-21T17:20:09.210102879Z"} +2026/03/21 17:20:14 [log_collector] {"stage_name":"log_collector","events_processed":34784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6956.8,"last_update":"2026-03-21T17:20:09.068736958Z"} +2026/03/21 17:20:14 [metric_collector] {"stage_name":"metric_collector","events_processed":21679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4335.8,"last_update":"2026-03-21T17:20:09.068886234Z"} +2026/03/21 17:20:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:20:09.076824971Z"} +2026/03/21 17:20:14 [detection_layer] {"stage_name":"detection_layer","events_processed":719,"events_dropped":0,"avg_latency_ms":21.01100848128855,"throughput_eps":0,"last_update":"2026-03-21T17:20:09.210131313Z"} +2026/03/21 17:20:14 ───────────────────────────────────────────────── +2026/03/21 17:20:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:20:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8676,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:20:14.074621578Z"} +2026/03/21 17:20:19 [detection_layer] {"stage_name":"detection_layer","events_processed":719,"events_dropped":0,"avg_latency_ms":21.01100848128855,"throughput_eps":0,"last_update":"2026-03-21T17:20:14.210777949Z"} +2026/03/21 17:20:19 [transform_engine] {"stage_name":"transform_engine","events_processed":722,"events_dropped":0,"avg_latency_ms":1012.5487135108963,"throughput_eps":0,"last_update":"2026-03-21T17:20:14.209680898Z"} +2026/03/21 17:20:19 [log_collector] {"stage_name":"log_collector","events_processed":34784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6956.8,"last_update":"2026-03-21T17:20:14.068416662Z"} +2026/03/21 17:20:19 [metric_collector] {"stage_name":"metric_collector","events_processed":21684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4336.8,"last_update":"2026-03-21T17:20:14.068500242Z"} +2026/03/21 17:20:19 ───────────────────────────────────────────────── +2026/03/21 17:20:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:20:24 [detection_layer] {"stage_name":"detection_layer","events_processed":719,"events_dropped":0,"avg_latency_ms":21.01100848128855,"throughput_eps":0,"last_update":"2026-03-21T17:20:19.21052968Z"} +2026/03/21 17:20:24 [transform_engine] {"stage_name":"transform_engine","events_processed":723,"events_dropped":0,"avg_latency_ms":1573.356427408717,"throughput_eps":0,"last_update":"2026-03-21T17:20:23.027169173Z"} +2026/03/21 17:20:24 [log_collector] {"stage_name":"log_collector","events_processed":34784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6956.8,"last_update":"2026-03-21T17:20:19.068462056Z"} +2026/03/21 17:20:24 [metric_collector] {"stage_name":"metric_collector","events_processed":21689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4337.8,"last_update":"2026-03-21T17:20:19.068853076Z"} +2026/03/21 17:20:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:20:19.075016281Z"} +2026/03/21 17:20:24 ───────────────────────────────────────────────── +2026/03/21 17:20:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:20:29 [log_collector] {"stage_name":"log_collector","events_processed":34784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6956.8,"last_update":"2026-03-21T17:20:24.068095845Z"} +2026/03/21 17:20:29 [metric_collector] {"stage_name":"metric_collector","events_processed":21694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4338.8,"last_update":"2026-03-21T17:20:24.068305907Z"} +2026/03/21 17:20:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:20:24.076716848Z"} +2026/03/21 17:20:29 [detection_layer] {"stage_name":"detection_layer","events_processed":720,"events_dropped":0,"avg_latency_ms":20.09358478503084,"throughput_eps":0,"last_update":"2026-03-21T17:20:24.210477991Z"} +2026/03/21 17:20:29 [transform_engine] {"stage_name":"transform_engine","events_processed":723,"events_dropped":0,"avg_latency_ms":1573.356427408717,"throughput_eps":0,"last_update":"2026-03-21T17:20:24.210456561Z"} +2026/03/21 17:20:29 ───────────────────────────────────────────────── +2026/03/21 17:20:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:20:34 [transform_engine] {"stage_name":"transform_engine","events_processed":723,"events_dropped":0,"avg_latency_ms":1573.356427408717,"throughput_eps":0,"last_update":"2026-03-21T17:20:29.210088935Z"} +2026/03/21 17:20:34 [log_collector] {"stage_name":"log_collector","events_processed":34784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6956.8,"last_update":"2026-03-21T17:20:29.068518574Z"} +2026/03/21 17:20:34 [metric_collector] {"stage_name":"metric_collector","events_processed":21699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4339.8,"last_update":"2026-03-21T17:20:29.068795584Z"} +2026/03/21 17:20:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:20:29.076878908Z"} +2026/03/21 17:20:34 [detection_layer] {"stage_name":"detection_layer","events_processed":720,"events_dropped":0,"avg_latency_ms":20.09358478503084,"throughput_eps":0,"last_update":"2026-03-21T17:20:29.210062044Z"} +2026/03/21 17:20:34 ───────────────────────────────────────────────── +2026/03/21 17:20:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:20:39 [transform_engine] {"stage_name":"transform_engine","events_processed":723,"events_dropped":0,"avg_latency_ms":1573.356427408717,"throughput_eps":0,"last_update":"2026-03-21T17:20:34.210440559Z"} +2026/03/21 17:20:39 [log_collector] {"stage_name":"log_collector","events_processed":34784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6956.8,"last_update":"2026-03-21T17:20:34.069104446Z"} +2026/03/21 17:20:39 [metric_collector] {"stage_name":"metric_collector","events_processed":21704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4340.8,"last_update":"2026-03-21T17:20:34.069091751Z"} +2026/03/21 17:20:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:20:34.075197146Z"} +2026/03/21 17:20:39 [detection_layer] {"stage_name":"detection_layer","events_processed":720,"events_dropped":0,"avg_latency_ms":20.09358478503084,"throughput_eps":0,"last_update":"2026-03-21T17:20:34.21042535Z"} +2026/03/21 17:20:39 ───────────────────────────────────────────────── +2026/03/21 17:20:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:20:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:20:39.078751135Z"} +2026/03/21 17:20:44 [detection_layer] {"stage_name":"detection_layer","events_processed":720,"events_dropped":0,"avg_latency_ms":20.09358478503084,"throughput_eps":0,"last_update":"2026-03-21T17:20:39.210075731Z"} +2026/03/21 17:20:44 [transform_engine] {"stage_name":"transform_engine","events_processed":723,"events_dropped":0,"avg_latency_ms":1573.356427408717,"throughput_eps":0,"last_update":"2026-03-21T17:20:39.210054371Z"} +2026/03/21 17:20:44 [log_collector] {"stage_name":"log_collector","events_processed":34784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6956.8,"last_update":"2026-03-21T17:20:39.068063723Z"} +2026/03/21 17:20:44 [metric_collector] {"stage_name":"metric_collector","events_processed":21709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4341.8,"last_update":"2026-03-21T17:20:39.068248868Z"} +2026/03/21 17:20:44 ───────────────────────────────────────────────── +2026/03/21 17:20:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:20:49 [detection_layer] {"stage_name":"detection_layer","events_processed":720,"events_dropped":0,"avg_latency_ms":20.09358478503084,"throughput_eps":0,"last_update":"2026-03-21T17:20:44.210011049Z"} +2026/03/21 17:20:49 [transform_engine] {"stage_name":"transform_engine","events_processed":723,"events_dropped":0,"avg_latency_ms":1573.356427408717,"throughput_eps":0,"last_update":"2026-03-21T17:20:44.210054793Z"} +2026/03/21 17:20:49 [log_collector] {"stage_name":"log_collector","events_processed":34784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6956.8,"last_update":"2026-03-21T17:20:44.068513547Z"} +2026/03/21 17:20:49 [metric_collector] {"stage_name":"metric_collector","events_processed":21714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4342.8,"last_update":"2026-03-21T17:20:44.068829842Z"} +2026/03/21 17:20:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8688,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:20:44.07480586Z"} +2026/03/21 17:20:49 ───────────────────────────────────────────────── +2026/03/21 17:20:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:20:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:20:49.076644453Z"} +2026/03/21 17:20:54 [detection_layer] {"stage_name":"detection_layer","events_processed":720,"events_dropped":0,"avg_latency_ms":20.09358478503084,"throughput_eps":0,"last_update":"2026-03-21T17:20:49.209908233Z"} +2026/03/21 17:20:54 [transform_engine] {"stage_name":"transform_engine","events_processed":724,"events_dropped":0,"avg_latency_ms":1382.9812703269738,"throughput_eps":0,"last_update":"2026-03-21T17:20:49.831456215Z"} +2026/03/21 17:20:54 [log_collector] {"stage_name":"log_collector","events_processed":34784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6956.8,"last_update":"2026-03-21T17:20:49.068078705Z"} +2026/03/21 17:20:54 [metric_collector] {"stage_name":"metric_collector","events_processed":21719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4343.8,"last_update":"2026-03-21T17:20:49.068475075Z"} +2026/03/21 17:20:54 ───────────────────────────────────────────────── +2026/03/21 17:20:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:20:59 [transform_engine] {"stage_name":"transform_engine","events_processed":724,"events_dropped":0,"avg_latency_ms":1382.9812703269738,"throughput_eps":0,"last_update":"2026-03-21T17:20:54.210447178Z"} +2026/03/21 17:20:59 [log_collector] {"stage_name":"log_collector","events_processed":34795,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6959,"last_update":"2026-03-21T17:20:54.07640623Z"} +2026/03/21 17:20:59 [metric_collector] {"stage_name":"metric_collector","events_processed":21724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4344.8,"last_update":"2026-03-21T17:20:54.076456105Z"} +2026/03/21 17:20:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:20:54.09816576Z"} +2026/03/21 17:20:59 [detection_layer] {"stage_name":"detection_layer","events_processed":721,"events_dropped":0,"avg_latency_ms":18.906622228024673,"throughput_eps":0,"last_update":"2026-03-21T17:20:54.210413023Z"} +2026/03/21 17:20:59 ───────────────────────────────────────────────── +2026/03/21 17:21:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:21:04 [detection_layer] {"stage_name":"detection_layer","events_processed":721,"events_dropped":0,"avg_latency_ms":18.906622228024673,"throughput_eps":0,"last_update":"2026-03-21T17:20:59.210832579Z"} +2026/03/21 17:21:04 [transform_engine] {"stage_name":"transform_engine","events_processed":724,"events_dropped":0,"avg_latency_ms":1382.9812703269738,"throughput_eps":0,"last_update":"2026-03-21T17:20:59.20964783Z"} +2026/03/21 17:21:04 [log_collector] {"stage_name":"log_collector","events_processed":34795,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6959,"last_update":"2026-03-21T17:20:59.069940707Z"} +2026/03/21 17:21:04 [metric_collector] {"stage_name":"metric_collector","events_processed":21729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4345.8,"last_update":"2026-03-21T17:20:59.070750829Z"} +2026/03/21 17:21:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:20:59.093456722Z"} +2026/03/21 17:21:04 ───────────────────────────────────────────────── +2026/03/21 17:21:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:21:09 [detection_layer] {"stage_name":"detection_layer","events_processed":721,"events_dropped":0,"avg_latency_ms":18.906622228024673,"throughput_eps":0,"last_update":"2026-03-21T17:21:04.210561132Z"} +2026/03/21 17:21:09 [transform_engine] {"stage_name":"transform_engine","events_processed":724,"events_dropped":0,"avg_latency_ms":1382.9812703269738,"throughput_eps":0,"last_update":"2026-03-21T17:21:04.210547807Z"} +2026/03/21 17:21:09 [log_collector] {"stage_name":"log_collector","events_processed":35003,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7000.6,"last_update":"2026-03-21T17:21:04.072209116Z"} +2026/03/21 17:21:09 [metric_collector] {"stage_name":"metric_collector","events_processed":21734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4346.8,"last_update":"2026-03-21T17:21:04.070080498Z"} +2026/03/21 17:21:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:21:04.12403518Z"} +2026/03/21 17:21:09 ───────────────────────────────────────────────── +2026/03/21 17:21:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:21:14 [log_collector] {"stage_name":"log_collector","events_processed":35146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7029.2,"last_update":"2026-03-21T17:21:09.071422213Z"} +2026/03/21 17:21:14 [metric_collector] {"stage_name":"metric_collector","events_processed":21739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4347.8,"last_update":"2026-03-21T17:21:09.071183184Z"} +2026/03/21 17:21:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:21:09.123274076Z"} +2026/03/21 17:21:14 [detection_layer] {"stage_name":"detection_layer","events_processed":721,"events_dropped":0,"avg_latency_ms":18.906622228024673,"throughput_eps":0,"last_update":"2026-03-21T17:21:09.210498036Z"} +2026/03/21 17:21:14 [transform_engine] {"stage_name":"transform_engine","events_processed":724,"events_dropped":0,"avg_latency_ms":1382.9812703269738,"throughput_eps":0,"last_update":"2026-03-21T17:21:09.210511752Z"} +2026/03/21 17:21:14 ───────────────────────────────────────────────── +2026/03/21 17:21:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:21:19 [metric_collector] {"stage_name":"metric_collector","events_processed":21744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4348.8,"last_update":"2026-03-21T17:21:14.070403415Z"} +2026/03/21 17:21:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8700,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:21:14.090800245Z"} +2026/03/21 17:21:19 [detection_layer] {"stage_name":"detection_layer","events_processed":721,"events_dropped":0,"avg_latency_ms":18.906622228024673,"throughput_eps":0,"last_update":"2026-03-21T17:21:14.209989957Z"} +2026/03/21 17:21:19 [transform_engine] {"stage_name":"transform_engine","events_processed":724,"events_dropped":0,"avg_latency_ms":1382.9812703269738,"throughput_eps":0,"last_update":"2026-03-21T17:21:14.210003844Z"} +2026/03/21 17:21:19 [log_collector] {"stage_name":"log_collector","events_processed":35146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7029.2,"last_update":"2026-03-21T17:21:14.069478974Z"} +2026/03/21 17:21:19 ───────────────────────────────────────────────── +2026/03/21 17:21:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:21:24 [log_collector] {"stage_name":"log_collector","events_processed":35146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7029.2,"last_update":"2026-03-21T17:21:19.069221726Z"} +2026/03/21 17:21:24 [metric_collector] {"stage_name":"metric_collector","events_processed":21749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4349.8,"last_update":"2026-03-21T17:21:19.070014515Z"} +2026/03/21 17:21:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8702,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:21:19.092984344Z"} +2026/03/21 17:21:24 [detection_layer] {"stage_name":"detection_layer","events_processed":721,"events_dropped":0,"avg_latency_ms":18.906622228024673,"throughput_eps":0,"last_update":"2026-03-21T17:21:19.210280248Z"} +2026/03/21 17:21:24 [transform_engine] {"stage_name":"transform_engine","events_processed":725,"events_dropped":0,"avg_latency_ms":1324.310941261579,"throughput_eps":0,"last_update":"2026-03-21T17:21:20.2999814Z"} +2026/03/21 17:21:24 ───────────────────────────────────────────────── +Saved state: 27 clusters, 35147 messages, reason: none +2026/03/21 17:21:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:21:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:21:24.088716064Z"} +2026/03/21 17:21:29 [detection_layer] {"stage_name":"detection_layer","events_processed":722,"events_dropped":0,"avg_latency_ms":17.72751838241974,"throughput_eps":0,"last_update":"2026-03-21T17:21:24.210009314Z"} +2026/03/21 17:21:29 [transform_engine] {"stage_name":"transform_engine","events_processed":725,"events_dropped":0,"avg_latency_ms":1324.310941261579,"throughput_eps":0,"last_update":"2026-03-21T17:21:24.210022118Z"} +2026/03/21 17:21:29 [log_collector] {"stage_name":"log_collector","events_processed":35146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7029.2,"last_update":"2026-03-21T17:21:24.069221692Z"} +2026/03/21 17:21:29 [metric_collector] {"stage_name":"metric_collector","events_processed":21754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4350.8,"last_update":"2026-03-21T17:21:24.069808796Z"} +2026/03/21 17:21:29 ───────────────────────────────────────────────── +2026/03/21 17:21:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:21:34 [log_collector] {"stage_name":"log_collector","events_processed":35149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7029.8,"last_update":"2026-03-21T17:21:29.068515414Z"} +2026/03/21 17:21:34 [metric_collector] {"stage_name":"metric_collector","events_processed":21759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4351.8,"last_update":"2026-03-21T17:21:29.068744153Z"} +2026/03/21 17:21:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:21:29.077677204Z"} +2026/03/21 17:21:34 [detection_layer] {"stage_name":"detection_layer","events_processed":722,"events_dropped":0,"avg_latency_ms":17.72751838241974,"throughput_eps":0,"last_update":"2026-03-21T17:21:29.209881465Z"} +2026/03/21 17:21:34 [transform_engine] {"stage_name":"transform_engine","events_processed":725,"events_dropped":0,"avg_latency_ms":1324.310941261579,"throughput_eps":0,"last_update":"2026-03-21T17:21:29.211370747Z"} +2026/03/21 17:21:34 ───────────────────────────────────────────────── +2026/03/21 17:21:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:21:39 [log_collector] {"stage_name":"log_collector","events_processed":35159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7031.8,"last_update":"2026-03-21T17:21:34.068676669Z"} +2026/03/21 17:21:39 [metric_collector] {"stage_name":"metric_collector","events_processed":21764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4352.8,"last_update":"2026-03-21T17:21:34.069087525Z"} +2026/03/21 17:21:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:21:34.075031512Z"} +2026/03/21 17:21:39 [detection_layer] {"stage_name":"detection_layer","events_processed":722,"events_dropped":0,"avg_latency_ms":17.72751838241974,"throughput_eps":0,"last_update":"2026-03-21T17:21:34.210386027Z"} +2026/03/21 17:21:39 [transform_engine] {"stage_name":"transform_engine","events_processed":725,"events_dropped":0,"avg_latency_ms":1324.310941261579,"throughput_eps":0,"last_update":"2026-03-21T17:21:34.210317065Z"} +2026/03/21 17:21:39 ───────────────────────────────────────────────── +2026/03/21 17:21:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:21:44 [transform_engine] {"stage_name":"transform_engine","events_processed":725,"events_dropped":0,"avg_latency_ms":1324.310941261579,"throughput_eps":0,"last_update":"2026-03-21T17:21:39.210529037Z"} +2026/03/21 17:21:44 [log_collector] {"stage_name":"log_collector","events_processed":35160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7032,"last_update":"2026-03-21T17:21:39.0686219Z"} +2026/03/21 17:21:44 [metric_collector] {"stage_name":"metric_collector","events_processed":21769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4353.8,"last_update":"2026-03-21T17:21:39.069071421Z"} +2026/03/21 17:21:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:21:39.078122158Z"} +2026/03/21 17:21:44 [detection_layer] {"stage_name":"detection_layer","events_processed":722,"events_dropped":0,"avg_latency_ms":17.72751838241974,"throughput_eps":0,"last_update":"2026-03-21T17:21:39.210421802Z"} +2026/03/21 17:21:44 ───────────────────────────────────────────────── +2026/03/21 17:21:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:21:49 [metric_collector] {"stage_name":"metric_collector","events_processed":21774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4354.8,"last_update":"2026-03-21T17:21:44.069183943Z"} +2026/03/21 17:21:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8712,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:21:44.075444295Z"} +2026/03/21 17:21:49 [detection_layer] {"stage_name":"detection_layer","events_processed":722,"events_dropped":0,"avg_latency_ms":17.72751838241974,"throughput_eps":0,"last_update":"2026-03-21T17:21:44.210762481Z"} +2026/03/21 17:21:49 [transform_engine] {"stage_name":"transform_engine","events_processed":725,"events_dropped":0,"avg_latency_ms":1324.310941261579,"throughput_eps":0,"last_update":"2026-03-21T17:21:44.210717966Z"} +2026/03/21 17:21:49 [log_collector] {"stage_name":"log_collector","events_processed":35174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7034.8,"last_update":"2026-03-21T17:21:44.068600296Z"} +2026/03/21 17:21:49 ───────────────────────────────────────────────── +2026/03/21 17:21:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:21:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:21:49.078194172Z"} +2026/03/21 17:21:54 [detection_layer] {"stage_name":"detection_layer","events_processed":722,"events_dropped":0,"avg_latency_ms":17.72751838241974,"throughput_eps":0,"last_update":"2026-03-21T17:21:49.210400256Z"} +2026/03/21 17:21:54 [transform_engine] {"stage_name":"transform_engine","events_processed":726,"events_dropped":0,"avg_latency_ms":1088.0384272092633,"throughput_eps":0,"last_update":"2026-03-21T17:21:49.353419103Z"} +2026/03/21 17:21:54 [log_collector] {"stage_name":"log_collector","events_processed":35176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7035.2,"last_update":"2026-03-21T17:21:49.068725494Z"} +2026/03/21 17:21:54 [metric_collector] {"stage_name":"metric_collector","events_processed":21779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4355.8,"last_update":"2026-03-21T17:21:49.069047872Z"} +2026/03/21 17:21:54 ───────────────────────────────────────────────── +2026/03/21 17:21:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:21:59 [metric_collector] {"stage_name":"metric_collector","events_processed":21784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4356.8,"last_update":"2026-03-21T17:21:54.068806668Z"} +2026/03/21 17:21:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:21:54.078387911Z"} +2026/03/21 17:21:59 [detection_layer] {"stage_name":"detection_layer","events_processed":723,"events_dropped":0,"avg_latency_ms":17.80355010593579,"throughput_eps":0,"last_update":"2026-03-21T17:21:54.210741639Z"} +2026/03/21 17:21:59 [transform_engine] {"stage_name":"transform_engine","events_processed":726,"events_dropped":0,"avg_latency_ms":1088.0384272092633,"throughput_eps":0,"last_update":"2026-03-21T17:21:54.210778699Z"} +2026/03/21 17:21:59 [log_collector] {"stage_name":"log_collector","events_processed":35176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7035.2,"last_update":"2026-03-21T17:21:54.068391322Z"} +2026/03/21 17:21:59 ───────────────────────────────────────────────── +2026/03/21 17:22:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:22:04 [log_collector] {"stage_name":"log_collector","events_processed":35176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7035.2,"last_update":"2026-03-21T17:21:59.068816585Z"} +2026/03/21 17:22:04 [metric_collector] {"stage_name":"metric_collector","events_processed":21789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4357.8,"last_update":"2026-03-21T17:21:59.069416666Z"} +2026/03/21 17:22:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8718,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:21:59.077755078Z"} +2026/03/21 17:22:04 [detection_layer] {"stage_name":"detection_layer","events_processed":723,"events_dropped":0,"avg_latency_ms":17.80355010593579,"throughput_eps":0,"last_update":"2026-03-21T17:21:59.210103846Z"} +2026/03/21 17:22:04 [transform_engine] {"stage_name":"transform_engine","events_processed":726,"events_dropped":0,"avg_latency_ms":1088.0384272092633,"throughput_eps":0,"last_update":"2026-03-21T17:21:59.209990148Z"} +2026/03/21 17:22:04 ───────────────────────────────────────────────── +2026/03/21 17:22:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:22:09 [metric_collector] {"stage_name":"metric_collector","events_processed":21794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4358.8,"last_update":"2026-03-21T17:22:04.068899314Z"} +2026/03/21 17:22:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:22:04.078211993Z"} +2026/03/21 17:22:09 [detection_layer] {"stage_name":"detection_layer","events_processed":723,"events_dropped":0,"avg_latency_ms":17.80355010593579,"throughput_eps":0,"last_update":"2026-03-21T17:22:04.210581991Z"} +2026/03/21 17:22:09 [transform_engine] {"stage_name":"transform_engine","events_processed":726,"events_dropped":0,"avg_latency_ms":1088.0384272092633,"throughput_eps":0,"last_update":"2026-03-21T17:22:04.210697723Z"} +2026/03/21 17:22:09 [log_collector] {"stage_name":"log_collector","events_processed":35176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7035.2,"last_update":"2026-03-21T17:22:04.068590312Z"} +2026/03/21 17:22:09 ───────────────────────────────────────────────── +2026/03/21 17:22:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:22:14 [log_collector] {"stage_name":"log_collector","events_processed":35176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7035.2,"last_update":"2026-03-21T17:22:09.068095902Z"} +2026/03/21 17:22:14 [metric_collector] {"stage_name":"metric_collector","events_processed":21799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4359.8,"last_update":"2026-03-21T17:22:09.068432137Z"} +2026/03/21 17:22:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8722,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:22:09.077832493Z"} +2026/03/21 17:22:14 [detection_layer] {"stage_name":"detection_layer","events_processed":723,"events_dropped":0,"avg_latency_ms":17.80355010593579,"throughput_eps":0,"last_update":"2026-03-21T17:22:09.210013961Z"} +2026/03/21 17:22:14 [transform_engine] {"stage_name":"transform_engine","events_processed":726,"events_dropped":0,"avg_latency_ms":1088.0384272092633,"throughput_eps":0,"last_update":"2026-03-21T17:22:09.210058015Z"} +2026/03/21 17:22:14 ───────────────────────────────────────────────── +2026/03/21 17:22:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:22:19 [transform_engine] {"stage_name":"transform_engine","events_processed":726,"events_dropped":0,"avg_latency_ms":1088.0384272092633,"throughput_eps":0,"last_update":"2026-03-21T17:22:14.21010233Z"} +2026/03/21 17:22:19 [log_collector] {"stage_name":"log_collector","events_processed":35176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7035.2,"last_update":"2026-03-21T17:22:14.068154755Z"} +2026/03/21 17:22:19 [metric_collector] {"stage_name":"metric_collector","events_processed":21804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4360.8,"last_update":"2026-03-21T17:22:14.068818577Z"} +2026/03/21 17:22:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:22:14.077744525Z"} +2026/03/21 17:22:19 [detection_layer] {"stage_name":"detection_layer","events_processed":723,"events_dropped":0,"avg_latency_ms":17.80355010593579,"throughput_eps":0,"last_update":"2026-03-21T17:22:14.210220706Z"} +2026/03/21 17:22:19 ───────────────────────────────────────────────── +2026/03/21 17:22:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:22:24 [transform_engine] {"stage_name":"transform_engine","events_processed":727,"events_dropped":0,"avg_latency_ms":885.2588353674107,"throughput_eps":0,"last_update":"2026-03-21T17:22:19.284547312Z"} +2026/03/21 17:22:24 [log_collector] {"stage_name":"log_collector","events_processed":35176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7035.2,"last_update":"2026-03-21T17:22:19.068775405Z"} +2026/03/21 17:22:24 [metric_collector] {"stage_name":"metric_collector","events_processed":21809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4361.8,"last_update":"2026-03-21T17:22:19.069484343Z"} +2026/03/21 17:22:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:22:19.078162807Z"} +2026/03/21 17:22:24 [detection_layer] {"stage_name":"detection_layer","events_processed":723,"events_dropped":0,"avg_latency_ms":17.80355010593579,"throughput_eps":0,"last_update":"2026-03-21T17:22:19.210376396Z"} +2026/03/21 17:22:24 ───────────────────────────────────────────────── +2026/03/21 17:22:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:22:29 [transform_engine] {"stage_name":"transform_engine","events_processed":727,"events_dropped":0,"avg_latency_ms":885.2588353674107,"throughput_eps":0,"last_update":"2026-03-21T17:22:24.232057066Z"} +2026/03/21 17:22:29 [log_collector] {"stage_name":"log_collector","events_processed":35176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7035.2,"last_update":"2026-03-21T17:22:24.069470787Z"} +2026/03/21 17:22:29 [metric_collector] {"stage_name":"metric_collector","events_processed":21814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4362.8,"last_update":"2026-03-21T17:22:24.070416368Z"} +2026/03/21 17:22:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8728,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:22:24.093865967Z"} +2026/03/21 17:22:29 [detection_layer] {"stage_name":"detection_layer","events_processed":724,"events_dropped":0,"avg_latency_ms":18.718465284748635,"throughput_eps":0,"last_update":"2026-03-21T17:22:24.232201712Z"} +2026/03/21 17:22:29 ───────────────────────────────────────────────── +2026/03/21 17:22:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:22:34 [transform_engine] {"stage_name":"transform_engine","events_processed":727,"events_dropped":0,"avg_latency_ms":885.2588353674107,"throughput_eps":0,"last_update":"2026-03-21T17:22:29.210627338Z"} +2026/03/21 17:22:34 [log_collector] {"stage_name":"log_collector","events_processed":35176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7035.2,"last_update":"2026-03-21T17:22:29.077318671Z"} +2026/03/21 17:22:34 [metric_collector] {"stage_name":"metric_collector","events_processed":21819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4363.8,"last_update":"2026-03-21T17:22:29.07872765Z"} +2026/03/21 17:22:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8730,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:22:29.117519908Z"} +2026/03/21 17:22:34 [detection_layer] {"stage_name":"detection_layer","events_processed":724,"events_dropped":0,"avg_latency_ms":18.718465284748635,"throughput_eps":0,"last_update":"2026-03-21T17:22:29.210656243Z"} +2026/03/21 17:22:34 ───────────────────────────────────────────────── +2026/03/21 17:22:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:22:39 [log_collector] {"stage_name":"log_collector","events_processed":35176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7035.2,"last_update":"2026-03-21T17:22:34.06884445Z"} +2026/03/21 17:22:39 [metric_collector] {"stage_name":"metric_collector","events_processed":21824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4364.8,"last_update":"2026-03-21T17:22:34.069846349Z"} +2026/03/21 17:22:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:22:34.091666005Z"} +2026/03/21 17:22:39 [detection_layer] {"stage_name":"detection_layer","events_processed":724,"events_dropped":0,"avg_latency_ms":18.718465284748635,"throughput_eps":0,"last_update":"2026-03-21T17:22:34.209937428Z"} +2026/03/21 17:22:39 [transform_engine] {"stage_name":"transform_engine","events_processed":727,"events_dropped":0,"avg_latency_ms":885.2588353674107,"throughput_eps":0,"last_update":"2026-03-21T17:22:34.209868195Z"} +2026/03/21 17:22:39 ───────────────────────────────────────────────── +2026/03/21 17:22:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:22:44 [detection_layer] {"stage_name":"detection_layer","events_processed":724,"events_dropped":0,"avg_latency_ms":18.718465284748635,"throughput_eps":0,"last_update":"2026-03-21T17:22:39.21021382Z"} +2026/03/21 17:22:44 [transform_engine] {"stage_name":"transform_engine","events_processed":727,"events_dropped":0,"avg_latency_ms":885.2588353674107,"throughput_eps":0,"last_update":"2026-03-21T17:22:39.210227966Z"} +2026/03/21 17:22:44 [log_collector] {"stage_name":"log_collector","events_processed":35176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7035.2,"last_update":"2026-03-21T17:22:39.069263124Z"} +2026/03/21 17:22:44 [metric_collector] {"stage_name":"metric_collector","events_processed":21829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4365.8,"last_update":"2026-03-21T17:22:39.069999234Z"} +2026/03/21 17:22:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:22:39.09294629Z"} +2026/03/21 17:22:44 ───────────────────────────────────────────────── +Saved state: 27 clusters, 35177 messages, reason: none +2026/03/21 17:22:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:22:49 [detection_layer] {"stage_name":"detection_layer","events_processed":724,"events_dropped":0,"avg_latency_ms":18.718465284748635,"throughput_eps":0,"last_update":"2026-03-21T17:22:44.210533023Z"} +2026/03/21 17:22:49 [transform_engine] {"stage_name":"transform_engine","events_processed":727,"events_dropped":0,"avg_latency_ms":885.2588353674107,"throughput_eps":0,"last_update":"2026-03-21T17:22:44.210509358Z"} +2026/03/21 17:22:49 [log_collector] {"stage_name":"log_collector","events_processed":35176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7035.2,"last_update":"2026-03-21T17:22:44.068762408Z"} +2026/03/21 17:22:49 [metric_collector] {"stage_name":"metric_collector","events_processed":21834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4366.8,"last_update":"2026-03-21T17:22:44.069248639Z"} +2026/03/21 17:22:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8736,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:22:44.091275362Z"} +2026/03/21 17:22:49 ───────────────────────────────────────────────── +2026/03/21 17:22:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:22:54 [metric_collector] {"stage_name":"metric_collector","events_processed":21838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.6,"last_update":"2026-03-21T17:22:49.069141958Z"} +2026/03/21 17:22:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8738,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:22:49.107535923Z"} +2026/03/21 17:22:54 [detection_layer] {"stage_name":"detection_layer","events_processed":724,"events_dropped":0,"avg_latency_ms":18.718465284748635,"throughput_eps":0,"last_update":"2026-03-21T17:22:49.210746105Z"} +2026/03/21 17:22:54 [transform_engine] {"stage_name":"transform_engine","events_processed":728,"events_dropped":0,"avg_latency_ms":744.6439840939286,"throughput_eps":0,"last_update":"2026-03-21T17:22:49.392824351Z"} +2026/03/21 17:22:54 [log_collector] {"stage_name":"log_collector","events_processed":35179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7035.8,"last_update":"2026-03-21T17:22:49.068888232Z"} +2026/03/21 17:22:54 ───────────────────────────────────────────────── +2026/03/21 17:22:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:22:59 [log_collector] {"stage_name":"log_collector","events_processed":35190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7038,"last_update":"2026-03-21T17:22:54.069010921Z"} +2026/03/21 17:22:59 [metric_collector] {"stage_name":"metric_collector","events_processed":21844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4368.8,"last_update":"2026-03-21T17:22:54.06963165Z"} +2026/03/21 17:22:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8740,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:22:54.088283859Z"} +2026/03/21 17:22:59 [detection_layer] {"stage_name":"detection_layer","events_processed":725,"events_dropped":0,"avg_latency_ms":21.70002662779891,"throughput_eps":0,"last_update":"2026-03-21T17:22:54.210596402Z"} +2026/03/21 17:22:59 [transform_engine] {"stage_name":"transform_engine","events_processed":728,"events_dropped":0,"avg_latency_ms":744.6439840939286,"throughput_eps":0,"last_update":"2026-03-21T17:22:54.210615158Z"} +2026/03/21 17:22:59 ───────────────────────────────────────────────── +2026/03/21 17:23:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:23:04 [log_collector] {"stage_name":"log_collector","events_processed":35190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7038,"last_update":"2026-03-21T17:22:59.068650633Z"} +2026/03/21 17:23:04 [metric_collector] {"stage_name":"metric_collector","events_processed":21848,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4369.6,"last_update":"2026-03-21T17:22:59.068707473Z"} +2026/03/21 17:23:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:22:59.076901728Z"} +2026/03/21 17:23:04 [detection_layer] {"stage_name":"detection_layer","events_processed":725,"events_dropped":0,"avg_latency_ms":21.70002662779891,"throughput_eps":0,"last_update":"2026-03-21T17:22:59.210142896Z"} +2026/03/21 17:23:04 [transform_engine] {"stage_name":"transform_engine","events_processed":728,"events_dropped":0,"avg_latency_ms":744.6439840939286,"throughput_eps":0,"last_update":"2026-03-21T17:22:59.21015496Z"} +2026/03/21 17:23:04 ───────────────────────────────────────────────── +2026/03/21 17:23:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:23:09 [log_collector] {"stage_name":"log_collector","events_processed":35190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7038,"last_update":"2026-03-21T17:23:04.068637221Z"} +2026/03/21 17:23:09 [metric_collector] {"stage_name":"metric_collector","events_processed":21854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4370.8,"last_update":"2026-03-21T17:23:04.068625168Z"} +2026/03/21 17:23:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:23:04.078137579Z"} +2026/03/21 17:23:09 [detection_layer] {"stage_name":"detection_layer","events_processed":725,"events_dropped":0,"avg_latency_ms":21.70002662779891,"throughput_eps":0,"last_update":"2026-03-21T17:23:04.210374744Z"} +2026/03/21 17:23:09 [transform_engine] {"stage_name":"transform_engine","events_processed":728,"events_dropped":0,"avg_latency_ms":744.6439840939286,"throughput_eps":0,"last_update":"2026-03-21T17:23:04.210385804Z"} +2026/03/21 17:23:09 ───────────────────────────────────────────────── +2026/03/21 17:23:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:23:14 [log_collector] {"stage_name":"log_collector","events_processed":35190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7038,"last_update":"2026-03-21T17:23:09.068859832Z"} +2026/03/21 17:23:14 [metric_collector] {"stage_name":"metric_collector","events_processed":21859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4371.8,"last_update":"2026-03-21T17:23:09.069332718Z"} +2026/03/21 17:23:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:23:09.078226614Z"} +2026/03/21 17:23:14 [detection_layer] {"stage_name":"detection_layer","events_processed":725,"events_dropped":0,"avg_latency_ms":21.70002662779891,"throughput_eps":0,"last_update":"2026-03-21T17:23:09.210540176Z"} +2026/03/21 17:23:14 [transform_engine] {"stage_name":"transform_engine","events_processed":728,"events_dropped":0,"avg_latency_ms":744.6439840939286,"throughput_eps":0,"last_update":"2026-03-21T17:23:09.210549733Z"} +2026/03/21 17:23:14 ───────────────────────────────────────────────── +2026/03/21 17:23:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:23:19 [log_collector] {"stage_name":"log_collector","events_processed":35190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7038,"last_update":"2026-03-21T17:23:14.06906974Z"} +2026/03/21 17:23:19 [metric_collector] {"stage_name":"metric_collector","events_processed":21864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4372.8,"last_update":"2026-03-21T17:23:14.069416043Z"} +2026/03/21 17:23:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:23:14.079243368Z"} +2026/03/21 17:23:19 [detection_layer] {"stage_name":"detection_layer","events_processed":725,"events_dropped":0,"avg_latency_ms":21.70002662779891,"throughput_eps":0,"last_update":"2026-03-21T17:23:14.210599144Z"} +2026/03/21 17:23:19 [transform_engine] {"stage_name":"transform_engine","events_processed":728,"events_dropped":0,"avg_latency_ms":744.6439840939286,"throughput_eps":0,"last_update":"2026-03-21T17:23:14.210615044Z"} +2026/03/21 17:23:19 ───────────────────────────────────────────────── +2026/03/21 17:23:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:23:24 [metric_collector] {"stage_name":"metric_collector","events_processed":21869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4373.8,"last_update":"2026-03-21T17:23:19.069643975Z"} +2026/03/21 17:23:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8750,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:23:19.078553031Z"} +2026/03/21 17:23:24 [detection_layer] {"stage_name":"detection_layer","events_processed":725,"events_dropped":0,"avg_latency_ms":21.70002662779891,"throughput_eps":0,"last_update":"2026-03-21T17:23:19.209934686Z"} +2026/03/21 17:23:24 [transform_engine] {"stage_name":"transform_engine","events_processed":729,"events_dropped":0,"avg_latency_ms":624.2018664751429,"throughput_eps":0,"last_update":"2026-03-21T17:23:19.352260706Z"} +2026/03/21 17:23:24 [log_collector] {"stage_name":"log_collector","events_processed":35190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7038,"last_update":"2026-03-21T17:23:19.069185737Z"} +2026/03/21 17:23:24 ───────────────────────────────────────────────── +2026/03/21 17:23:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:23:29 [log_collector] {"stage_name":"log_collector","events_processed":35190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7038,"last_update":"2026-03-21T17:23:24.068112308Z"} +2026/03/21 17:23:29 [metric_collector] {"stage_name":"metric_collector","events_processed":21874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4374.8,"last_update":"2026-03-21T17:23:24.06832261Z"} +2026/03/21 17:23:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8752,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:23:24.077037032Z"} +2026/03/21 17:23:29 [detection_layer] {"stage_name":"detection_layer","events_processed":726,"events_dropped":0,"avg_latency_ms":22.10792410223913,"throughput_eps":0,"last_update":"2026-03-21T17:23:24.210478163Z"} +2026/03/21 17:23:29 [transform_engine] {"stage_name":"transform_engine","events_processed":729,"events_dropped":0,"avg_latency_ms":624.2018664751429,"throughput_eps":0,"last_update":"2026-03-21T17:23:24.210486308Z"} +2026/03/21 17:23:29 ───────────────────────────────────────────────── +2026/03/21 17:23:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:23:34 [transform_engine] {"stage_name":"transform_engine","events_processed":729,"events_dropped":0,"avg_latency_ms":624.2018664751429,"throughput_eps":0,"last_update":"2026-03-21T17:23:29.210690565Z"} +2026/03/21 17:23:34 [log_collector] {"stage_name":"log_collector","events_processed":35190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7038,"last_update":"2026-03-21T17:23:29.068470969Z"} +2026/03/21 17:23:34 [metric_collector] {"stage_name":"metric_collector","events_processed":21879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4375.8,"last_update":"2026-03-21T17:23:29.068460279Z"} +2026/03/21 17:23:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:23:29.078419225Z"} +2026/03/21 17:23:34 [detection_layer] {"stage_name":"detection_layer","events_processed":726,"events_dropped":0,"avg_latency_ms":22.10792410223913,"throughput_eps":0,"last_update":"2026-03-21T17:23:29.21068247Z"} +2026/03/21 17:23:34 ───────────────────────────────────────────────── +2026/03/21 17:23:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:23:39 [detection_layer] {"stage_name":"detection_layer","events_processed":726,"events_dropped":0,"avg_latency_ms":22.10792410223913,"throughput_eps":0,"last_update":"2026-03-21T17:23:34.20989654Z"} +2026/03/21 17:23:39 [transform_engine] {"stage_name":"transform_engine","events_processed":729,"events_dropped":0,"avg_latency_ms":624.2018664751429,"throughput_eps":0,"last_update":"2026-03-21T17:23:34.209911277Z"} +2026/03/21 17:23:39 [log_collector] {"stage_name":"log_collector","events_processed":35190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7038,"last_update":"2026-03-21T17:23:34.068581786Z"} +2026/03/21 17:23:39 [metric_collector] {"stage_name":"metric_collector","events_processed":21884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4376.8,"last_update":"2026-03-21T17:23:34.06895918Z"} +2026/03/21 17:23:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:23:34.077802109Z"} +2026/03/21 17:23:39 ───────────────────────────────────────────────── +2026/03/21 17:23:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:23:44 [log_collector] {"stage_name":"log_collector","events_processed":35190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7038,"last_update":"2026-03-21T17:23:39.068652931Z"} +2026/03/21 17:23:44 [metric_collector] {"stage_name":"metric_collector","events_processed":21889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4377.8,"last_update":"2026-03-21T17:23:39.069100608Z"} +2026/03/21 17:23:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8758,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:23:39.077865287Z"} +2026/03/21 17:23:44 [detection_layer] {"stage_name":"detection_layer","events_processed":726,"events_dropped":0,"avg_latency_ms":22.10792410223913,"throughput_eps":0,"last_update":"2026-03-21T17:23:39.211309954Z"} +2026/03/21 17:23:44 [transform_engine] {"stage_name":"transform_engine","events_processed":729,"events_dropped":0,"avg_latency_ms":624.2018664751429,"throughput_eps":0,"last_update":"2026-03-21T17:23:39.211277883Z"} +2026/03/21 17:23:44 ───────────────────────────────────────────────── +2026/03/21 17:23:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:23:49 [log_collector] {"stage_name":"log_collector","events_processed":35190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7038,"last_update":"2026-03-21T17:23:44.068841559Z"} +2026/03/21 17:23:49 [metric_collector] {"stage_name":"metric_collector","events_processed":21894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4378.8,"last_update":"2026-03-21T17:23:44.069335024Z"} +2026/03/21 17:23:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:23:44.078659215Z"} +2026/03/21 17:23:49 [detection_layer] {"stage_name":"detection_layer","events_processed":726,"events_dropped":0,"avg_latency_ms":22.10792410223913,"throughput_eps":0,"last_update":"2026-03-21T17:23:44.210111085Z"} +2026/03/21 17:23:49 [transform_engine] {"stage_name":"transform_engine","events_processed":729,"events_dropped":0,"avg_latency_ms":624.2018664751429,"throughput_eps":0,"last_update":"2026-03-21T17:23:44.21007672Z"} +2026/03/21 17:23:49 ───────────────────────────────────────────────── +Saved state: 27 clusters, 35191 messages, reason: none +2026/03/21 17:23:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:23:54 [log_collector] {"stage_name":"log_collector","events_processed":35190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7038,"last_update":"2026-03-21T17:23:49.068630852Z"} +2026/03/21 17:23:54 [metric_collector] {"stage_name":"metric_collector","events_processed":21899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4379.8,"last_update":"2026-03-21T17:23:49.06893224Z"} +2026/03/21 17:23:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:23:49.077507516Z"} +2026/03/21 17:23:54 [detection_layer] {"stage_name":"detection_layer","events_processed":726,"events_dropped":0,"avg_latency_ms":22.10792410223913,"throughput_eps":0,"last_update":"2026-03-21T17:23:49.211011727Z"} +2026/03/21 17:23:54 [transform_engine] {"stage_name":"transform_engine","events_processed":730,"events_dropped":0,"avg_latency_ms":514.3009979801143,"throughput_eps":0,"last_update":"2026-03-21T17:23:49.284456944Z"} +2026/03/21 17:23:54 ───────────────────────────────────────────────── +2026/03/21 17:23:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:23:59 [log_collector] {"stage_name":"log_collector","events_processed":35195,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7039,"last_update":"2026-03-21T17:23:54.069567914Z"} +2026/03/21 17:23:59 [metric_collector] {"stage_name":"metric_collector","events_processed":21904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4380.8,"last_update":"2026-03-21T17:23:54.069776875Z"} +2026/03/21 17:23:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:23:54.108954992Z"} +2026/03/21 17:23:59 [detection_layer] {"stage_name":"detection_layer","events_processed":727,"events_dropped":0,"avg_latency_ms":22.392580281791304,"throughput_eps":0,"last_update":"2026-03-21T17:23:54.21099869Z"} +2026/03/21 17:23:59 [transform_engine] {"stage_name":"transform_engine","events_processed":730,"events_dropped":0,"avg_latency_ms":514.3009979801143,"throughput_eps":0,"last_update":"2026-03-21T17:23:54.210854013Z"} +2026/03/21 17:23:59 ───────────────────────────────────────────────── +2026/03/21 17:24:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:24:04 [detection_layer] {"stage_name":"detection_layer","events_processed":727,"events_dropped":0,"avg_latency_ms":22.392580281791304,"throughput_eps":0,"last_update":"2026-03-21T17:23:59.211686335Z"} +2026/03/21 17:24:04 [transform_engine] {"stage_name":"transform_engine","events_processed":730,"events_dropped":0,"avg_latency_ms":514.3009979801143,"throughput_eps":0,"last_update":"2026-03-21T17:23:59.211600872Z"} +2026/03/21 17:24:04 [log_collector] {"stage_name":"log_collector","events_processed":35195,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7039,"last_update":"2026-03-21T17:23:59.068289625Z"} +2026/03/21 17:24:04 [metric_collector] {"stage_name":"metric_collector","events_processed":21909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4381.8,"last_update":"2026-03-21T17:23:59.068928058Z"} +2026/03/21 17:24:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8766,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:23:59.097745408Z"} +2026/03/21 17:24:04 ───────────────────────────────────────────────── +2026/03/21 17:24:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:24:09 [log_collector] {"stage_name":"log_collector","events_processed":35195,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7039,"last_update":"2026-03-21T17:24:04.068303961Z"} +2026/03/21 17:24:09 [metric_collector] {"stage_name":"metric_collector","events_processed":21914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4382.8,"last_update":"2026-03-21T17:24:04.068876538Z"} +2026/03/21 17:24:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8768,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:24:04.090729338Z"} +2026/03/21 17:24:09 [detection_layer] {"stage_name":"detection_layer","events_processed":727,"events_dropped":0,"avg_latency_ms":22.392580281791304,"throughput_eps":0,"last_update":"2026-03-21T17:24:04.21114063Z"} +2026/03/21 17:24:09 [transform_engine] {"stage_name":"transform_engine","events_processed":730,"events_dropped":0,"avg_latency_ms":514.3009979801143,"throughput_eps":0,"last_update":"2026-03-21T17:24:04.211112395Z"} +2026/03/21 17:24:09 ───────────────────────────────────────────────── +2026/03/21 17:24:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:24:14 [metric_collector] {"stage_name":"metric_collector","events_processed":21919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4383.8,"last_update":"2026-03-21T17:24:09.096894586Z"} +2026/03/21 17:24:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8770,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:24:09.12962344Z"} +2026/03/21 17:24:14 [detection_layer] {"stage_name":"detection_layer","events_processed":727,"events_dropped":0,"avg_latency_ms":22.392580281791304,"throughput_eps":0,"last_update":"2026-03-21T17:24:09.210816848Z"} +2026/03/21 17:24:14 [transform_engine] {"stage_name":"transform_engine","events_processed":730,"events_dropped":0,"avg_latency_ms":514.3009979801143,"throughput_eps":0,"last_update":"2026-03-21T17:24:09.209706762Z"} +2026/03/21 17:24:14 [log_collector] {"stage_name":"log_collector","events_processed":35195,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7039,"last_update":"2026-03-21T17:24:09.093777977Z"} +2026/03/21 17:24:14 ───────────────────────────────────────────────── +2026/03/21 17:24:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:24:19 [metric_collector] {"stage_name":"metric_collector","events_processed":21924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4384.8,"last_update":"2026-03-21T17:24:14.069613078Z"} +2026/03/21 17:24:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:24:14.091548075Z"} +2026/03/21 17:24:19 [detection_layer] {"stage_name":"detection_layer","events_processed":727,"events_dropped":0,"avg_latency_ms":22.392580281791304,"throughput_eps":0,"last_update":"2026-03-21T17:24:14.214003873Z"} +2026/03/21 17:24:19 [transform_engine] {"stage_name":"transform_engine","events_processed":730,"events_dropped":0,"avg_latency_ms":514.3009979801143,"throughput_eps":0,"last_update":"2026-03-21T17:24:14.210723278Z"} +2026/03/21 17:24:19 [log_collector] {"stage_name":"log_collector","events_processed":35195,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7039,"last_update":"2026-03-21T17:24:14.069044548Z"} +2026/03/21 17:24:19 ───────────────────────────────────────────────── +2026/03/21 17:24:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:24:24 [transform_engine] {"stage_name":"transform_engine","events_processed":731,"events_dropped":0,"avg_latency_ms":538.0320517840914,"throughput_eps":0,"last_update":"2026-03-21T17:24:19.843623197Z"} +2026/03/21 17:24:24 [log_collector] {"stage_name":"log_collector","events_processed":35195,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7039,"last_update":"2026-03-21T17:24:19.069441729Z"} +2026/03/21 17:24:24 [metric_collector] {"stage_name":"metric_collector","events_processed":21929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4385.8,"last_update":"2026-03-21T17:24:19.069292714Z"} +2026/03/21 17:24:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:24:19.148481793Z"} +2026/03/21 17:24:24 [detection_layer] {"stage_name":"detection_layer","events_processed":727,"events_dropped":0,"avg_latency_ms":22.392580281791304,"throughput_eps":0,"last_update":"2026-03-21T17:24:19.210603179Z"} +2026/03/21 17:24:24 ───────────────────────────────────────────────── +2026/03/21 17:24:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:24:29 [metric_collector] {"stage_name":"metric_collector","events_processed":21934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4386.8,"last_update":"2026-03-21T17:24:24.069297563Z"} +2026/03/21 17:24:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:24:24.093298117Z"} +2026/03/21 17:24:29 [detection_layer] {"stage_name":"detection_layer","events_processed":728,"events_dropped":0,"avg_latency_ms":20.334831025433044,"throughput_eps":0,"last_update":"2026-03-21T17:24:24.210519639Z"} +2026/03/21 17:24:29 [transform_engine] {"stage_name":"transform_engine","events_processed":731,"events_dropped":0,"avg_latency_ms":538.0320517840914,"throughput_eps":0,"last_update":"2026-03-21T17:24:24.210492527Z"} +2026/03/21 17:24:29 [log_collector] {"stage_name":"log_collector","events_processed":35195,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7039,"last_update":"2026-03-21T17:24:24.068795752Z"} +2026/03/21 17:24:29 ───────────────────────────────────────────────── +2026/03/21 17:24:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:24:34 [log_collector] {"stage_name":"log_collector","events_processed":35195,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7039,"last_update":"2026-03-21T17:24:29.069861234Z"} +2026/03/21 17:24:34 [metric_collector] {"stage_name":"metric_collector","events_processed":21939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4387.8,"last_update":"2026-03-21T17:24:29.068785083Z"} +2026/03/21 17:24:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:24:29.076262466Z"} +2026/03/21 17:24:34 [detection_layer] {"stage_name":"detection_layer","events_processed":728,"events_dropped":0,"avg_latency_ms":20.334831025433044,"throughput_eps":0,"last_update":"2026-03-21T17:24:29.21048345Z"} +2026/03/21 17:24:34 [transform_engine] {"stage_name":"transform_engine","events_processed":731,"events_dropped":0,"avg_latency_ms":538.0320517840914,"throughput_eps":0,"last_update":"2026-03-21T17:24:29.210466469Z"} +2026/03/21 17:24:34 ───────────────────────────────────────────────── +2026/03/21 17:24:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:24:39 [metric_collector] {"stage_name":"metric_collector","events_processed":21944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4388.8,"last_update":"2026-03-21T17:24:34.068814111Z"} +2026/03/21 17:24:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8780,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:24:34.074701488Z"} +2026/03/21 17:24:39 [detection_layer] {"stage_name":"detection_layer","events_processed":728,"events_dropped":0,"avg_latency_ms":20.334831025433044,"throughput_eps":0,"last_update":"2026-03-21T17:24:34.209910576Z"} +2026/03/21 17:24:39 [transform_engine] {"stage_name":"transform_engine","events_processed":731,"events_dropped":0,"avg_latency_ms":538.0320517840914,"throughput_eps":0,"last_update":"2026-03-21T17:24:34.209937898Z"} +2026/03/21 17:24:39 [log_collector] {"stage_name":"log_collector","events_processed":35195,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7039,"last_update":"2026-03-21T17:24:34.068542591Z"} +2026/03/21 17:24:39 ───────────────────────────────────────────────── +2026/03/21 17:24:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:24:44 [log_collector] {"stage_name":"log_collector","events_processed":35206,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7041.2,"last_update":"2026-03-21T17:24:44.068067995Z"} +2026/03/21 17:24:44 [metric_collector] {"stage_name":"metric_collector","events_processed":21953,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4390.6,"last_update":"2026-03-21T17:24:44.06806077Z"} +2026/03/21 17:24:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8782,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:24:39.07913364Z"} +2026/03/21 17:24:44 [detection_layer] {"stage_name":"detection_layer","events_processed":728,"events_dropped":0,"avg_latency_ms":20.334831025433044,"throughput_eps":0,"last_update":"2026-03-21T17:24:39.210396638Z"} +2026/03/21 17:24:44 [transform_engine] {"stage_name":"transform_engine","events_processed":731,"events_dropped":0,"avg_latency_ms":538.0320517840914,"throughput_eps":0,"last_update":"2026-03-21T17:24:39.210508001Z"} +2026/03/21 17:24:44 ───────────────────────────────────────────────── +2026/03/21 17:24:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:24:49 [log_collector] {"stage_name":"log_collector","events_processed":35206,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7041.2,"last_update":"2026-03-21T17:24:44.068067995Z"} +2026/03/21 17:24:49 [metric_collector] {"stage_name":"metric_collector","events_processed":21953,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4390.6,"last_update":"2026-03-21T17:24:44.06806077Z"} +2026/03/21 17:24:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:24:44.076811232Z"} +2026/03/21 17:24:49 [detection_layer] {"stage_name":"detection_layer","events_processed":728,"events_dropped":0,"avg_latency_ms":20.334831025433044,"throughput_eps":0,"last_update":"2026-03-21T17:24:44.210231803Z"} +2026/03/21 17:24:49 [transform_engine] {"stage_name":"transform_engine","events_processed":731,"events_dropped":0,"avg_latency_ms":538.0320517840914,"throughput_eps":0,"last_update":"2026-03-21T17:24:44.210200674Z"} +2026/03/21 17:24:49 ───────────────────────────────────────────────── +Saved state: 27 clusters, 35514 messages, reason: none +2026/03/21 17:24:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:24:54 [metric_collector] {"stage_name":"metric_collector","events_processed":21958,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4391.6,"last_update":"2026-03-21T17:24:49.068815888Z"} +2026/03/21 17:24:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:24:49.077852418Z"} +2026/03/21 17:24:54 [detection_layer] {"stage_name":"detection_layer","events_processed":728,"events_dropped":0,"avg_latency_ms":20.334831025433044,"throughput_eps":0,"last_update":"2026-03-21T17:24:49.210223089Z"} +2026/03/21 17:24:54 [transform_engine] {"stage_name":"transform_engine","events_processed":732,"events_dropped":0,"avg_latency_ms":484.81485162727313,"throughput_eps":0,"last_update":"2026-03-21T17:24:49.482249173Z"} +2026/03/21 17:24:54 [log_collector] {"stage_name":"log_collector","events_processed":35234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7046.8,"last_update":"2026-03-21T17:24:49.06887423Z"} +2026/03/21 17:24:54 ───────────────────────────────────────────────── +2026/03/21 17:24:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:24:59 [detection_layer] {"stage_name":"detection_layer","events_processed":729,"events_dropped":0,"avg_latency_ms":19.571320420346435,"throughput_eps":0,"last_update":"2026-03-21T17:24:54.210360565Z"} +2026/03/21 17:24:59 [transform_engine] {"stage_name":"transform_engine","events_processed":732,"events_dropped":0,"avg_latency_ms":484.81485162727313,"throughput_eps":0,"last_update":"2026-03-21T17:24:54.210330177Z"} +2026/03/21 17:24:59 [log_collector] {"stage_name":"log_collector","events_processed":35549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7109.8,"last_update":"2026-03-21T17:24:54.06826139Z"} +2026/03/21 17:24:59 [metric_collector] {"stage_name":"metric_collector","events_processed":21964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4392.8,"last_update":"2026-03-21T17:24:54.068324761Z"} +2026/03/21 17:24:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:24:54.07437487Z"} +2026/03/21 17:24:59 ───────────────────────────────────────────────── +2026/03/21 17:25:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:25:04 [log_collector] {"stage_name":"log_collector","events_processed":35559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7111.8,"last_update":"2026-03-21T17:24:59.068778882Z"} +2026/03/21 17:25:04 [metric_collector] {"stage_name":"metric_collector","events_processed":21969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4393.8,"last_update":"2026-03-21T17:24:59.069126368Z"} +2026/03/21 17:25:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:24:59.078192444Z"} +2026/03/21 17:25:04 [detection_layer] {"stage_name":"detection_layer","events_processed":729,"events_dropped":0,"avg_latency_ms":19.571320420346435,"throughput_eps":0,"last_update":"2026-03-21T17:24:59.210420962Z"} +2026/03/21 17:25:04 [transform_engine] {"stage_name":"transform_engine","events_processed":732,"events_dropped":0,"avg_latency_ms":484.81485162727313,"throughput_eps":0,"last_update":"2026-03-21T17:24:59.210446751Z"} +2026/03/21 17:25:04 ───────────────────────────────────────────────── +2026/03/21 17:25:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:25:09 [transform_engine] {"stage_name":"transform_engine","events_processed":732,"events_dropped":0,"avg_latency_ms":484.81485162727313,"throughput_eps":0,"last_update":"2026-03-21T17:25:04.210504915Z"} +2026/03/21 17:25:09 [log_collector] {"stage_name":"log_collector","events_processed":35562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7112.4,"last_update":"2026-03-21T17:25:04.068701106Z"} +2026/03/21 17:25:09 [metric_collector] {"stage_name":"metric_collector","events_processed":21974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4394.8,"last_update":"2026-03-21T17:25:04.069014727Z"} +2026/03/21 17:25:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:25:04.078015719Z"} +2026/03/21 17:25:09 [detection_layer] {"stage_name":"detection_layer","events_processed":729,"events_dropped":0,"avg_latency_ms":19.571320420346435,"throughput_eps":0,"last_update":"2026-03-21T17:25:04.210523992Z"} +2026/03/21 17:25:09 ───────────────────────────────────────────────── +2026/03/21 17:25:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:25:14 [log_collector] {"stage_name":"log_collector","events_processed":35562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7112.4,"last_update":"2026-03-21T17:25:09.068116148Z"} +2026/03/21 17:25:14 [metric_collector] {"stage_name":"metric_collector","events_processed":21979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4395.8,"last_update":"2026-03-21T17:25:09.068316031Z"} +2026/03/21 17:25:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:25:09.075814744Z"} +2026/03/21 17:25:14 [detection_layer] {"stage_name":"detection_layer","events_processed":729,"events_dropped":0,"avg_latency_ms":19.571320420346435,"throughput_eps":0,"last_update":"2026-03-21T17:25:09.209983729Z"} +2026/03/21 17:25:14 [transform_engine] {"stage_name":"transform_engine","events_processed":732,"events_dropped":0,"avg_latency_ms":484.81485162727313,"throughput_eps":0,"last_update":"2026-03-21T17:25:09.209965625Z"} +2026/03/21 17:25:14 ───────────────────────────────────────────────── +2026/03/21 17:25:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:25:19 [log_collector] {"stage_name":"log_collector","events_processed":35573,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7114.6,"last_update":"2026-03-21T17:25:14.068864235Z"} +2026/03/21 17:25:19 [metric_collector] {"stage_name":"metric_collector","events_processed":21984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4396.8,"last_update":"2026-03-21T17:25:14.069046283Z"} +2026/03/21 17:25:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8796,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:25:14.077156007Z"} +2026/03/21 17:25:19 [detection_layer] {"stage_name":"detection_layer","events_processed":729,"events_dropped":0,"avg_latency_ms":19.571320420346435,"throughput_eps":0,"last_update":"2026-03-21T17:25:14.210432924Z"} +2026/03/21 17:25:19 [transform_engine] {"stage_name":"transform_engine","events_processed":732,"events_dropped":0,"avg_latency_ms":484.81485162727313,"throughput_eps":0,"last_update":"2026-03-21T17:25:14.210443374Z"} +2026/03/21 17:25:19 ───────────────────────────────────────────────── +2026/03/21 17:25:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:25:24 [transform_engine] {"stage_name":"transform_engine","events_processed":733,"events_dropped":0,"avg_latency_ms":511.33348010181857,"throughput_eps":0,"last_update":"2026-03-21T17:25:19.827056969Z"} +2026/03/21 17:25:24 [log_collector] {"stage_name":"log_collector","events_processed":35587,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7117.4,"last_update":"2026-03-21T17:25:19.06807767Z"} +2026/03/21 17:25:24 [metric_collector] {"stage_name":"metric_collector","events_processed":21989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4397.8,"last_update":"2026-03-21T17:25:19.068757092Z"} +2026/03/21 17:25:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:25:19.076480887Z"} +2026/03/21 17:25:24 [detection_layer] {"stage_name":"detection_layer","events_processed":729,"events_dropped":0,"avg_latency_ms":19.571320420346435,"throughput_eps":0,"last_update":"2026-03-21T17:25:19.210891535Z"} +2026/03/21 17:25:24 ───────────────────────────────────────────────── +2026/03/21 17:25:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:25:29 [metric_collector] {"stage_name":"metric_collector","events_processed":21994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4398.8,"last_update":"2026-03-21T17:25:24.069800305Z"} +2026/03/21 17:25:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8800,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:25:24.092591612Z"} +2026/03/21 17:25:29 [detection_layer] {"stage_name":"detection_layer","events_processed":730,"events_dropped":0,"avg_latency_ms":19.92707793627715,"throughput_eps":0,"last_update":"2026-03-21T17:25:24.209953913Z"} +2026/03/21 17:25:29 [transform_engine] {"stage_name":"transform_engine","events_processed":733,"events_dropped":0,"avg_latency_ms":511.33348010181857,"throughput_eps":0,"last_update":"2026-03-21T17:25:24.209985655Z"} +2026/03/21 17:25:29 [log_collector] {"stage_name":"log_collector","events_processed":35589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7117.8,"last_update":"2026-03-21T17:25:24.0692181Z"} +2026/03/21 17:25:29 ───────────────────────────────────────────────── +2026/03/21 17:25:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:25:34 [log_collector] {"stage_name":"log_collector","events_processed":35589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7117.8,"last_update":"2026-03-21T17:25:29.069237452Z"} +2026/03/21 17:25:34 [metric_collector] {"stage_name":"metric_collector","events_processed":21999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4399.8,"last_update":"2026-03-21T17:25:29.069934637Z"} +2026/03/21 17:25:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8802,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:25:29.091153813Z"} +2026/03/21 17:25:34 [detection_layer] {"stage_name":"detection_layer","events_processed":730,"events_dropped":0,"avg_latency_ms":19.92707793627715,"throughput_eps":0,"last_update":"2026-03-21T17:25:29.210750414Z"} +2026/03/21 17:25:34 [transform_engine] {"stage_name":"transform_engine","events_processed":733,"events_dropped":0,"avg_latency_ms":511.33348010181857,"throughput_eps":0,"last_update":"2026-03-21T17:25:29.210637067Z"} +2026/03/21 17:25:34 ───────────────────────────────────────────────── +2026/03/21 17:25:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:25:39 [metric_collector] {"stage_name":"metric_collector","events_processed":22004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4400.8,"last_update":"2026-03-21T17:25:34.0695217Z"} +2026/03/21 17:25:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:25:34.093406513Z"} +2026/03/21 17:25:39 [detection_layer] {"stage_name":"detection_layer","events_processed":730,"events_dropped":0,"avg_latency_ms":19.92707793627715,"throughput_eps":0,"last_update":"2026-03-21T17:25:34.210526399Z"} +2026/03/21 17:25:39 [transform_engine] {"stage_name":"transform_engine","events_processed":733,"events_dropped":0,"avg_latency_ms":511.33348010181857,"throughput_eps":0,"last_update":"2026-03-21T17:25:34.210397993Z"} +2026/03/21 17:25:39 [log_collector] {"stage_name":"log_collector","events_processed":35589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7117.8,"last_update":"2026-03-21T17:25:34.068812011Z"} +2026/03/21 17:25:39 ───────────────────────────────────────────────── +2026/03/21 17:25:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:25:44 [metric_collector] {"stage_name":"metric_collector","events_processed":22009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4401.8,"last_update":"2026-03-21T17:25:39.070587487Z"} +2026/03/21 17:25:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:25:39.11894607Z"} +2026/03/21 17:25:44 [detection_layer] {"stage_name":"detection_layer","events_processed":730,"events_dropped":0,"avg_latency_ms":19.92707793627715,"throughput_eps":0,"last_update":"2026-03-21T17:25:39.210149443Z"} +2026/03/21 17:25:44 [transform_engine] {"stage_name":"transform_engine","events_processed":733,"events_dropped":0,"avg_latency_ms":511.33348010181857,"throughput_eps":0,"last_update":"2026-03-21T17:25:39.210172156Z"} +2026/03/21 17:25:44 [log_collector] {"stage_name":"log_collector","events_processed":35589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7117.8,"last_update":"2026-03-21T17:25:39.069783607Z"} +2026/03/21 17:25:44 ───────────────────────────────────────────────── +2026/03/21 17:25:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:25:49 [log_collector] {"stage_name":"log_collector","events_processed":35589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7117.8,"last_update":"2026-03-21T17:25:44.069226336Z"} +2026/03/21 17:25:49 [metric_collector] {"stage_name":"metric_collector","events_processed":22014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4402.8,"last_update":"2026-03-21T17:25:44.070149113Z"} +2026/03/21 17:25:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:25:44.093704575Z"} +2026/03/21 17:25:49 [detection_layer] {"stage_name":"detection_layer","events_processed":730,"events_dropped":0,"avg_latency_ms":19.92707793627715,"throughput_eps":0,"last_update":"2026-03-21T17:25:44.209967861Z"} +2026/03/21 17:25:49 [transform_engine] {"stage_name":"transform_engine","events_processed":733,"events_dropped":0,"avg_latency_ms":511.33348010181857,"throughput_eps":0,"last_update":"2026-03-21T17:25:44.210011946Z"} +2026/03/21 17:25:49 ───────────────────────────────────────────────── +2026/03/21 17:25:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:25:54 [detection_layer] {"stage_name":"detection_layer","events_processed":730,"events_dropped":0,"avg_latency_ms":19.92707793627715,"throughput_eps":0,"last_update":"2026-03-21T17:25:49.210368113Z"} +2026/03/21 17:25:54 [transform_engine] {"stage_name":"transform_engine","events_processed":734,"events_dropped":0,"avg_latency_ms":486.0743864814549,"throughput_eps":0,"last_update":"2026-03-21T17:25:49.595498983Z"} +2026/03/21 17:25:54 [log_collector] {"stage_name":"log_collector","events_processed":35589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7117.8,"last_update":"2026-03-21T17:25:49.069065414Z"} +2026/03/21 17:25:54 [metric_collector] {"stage_name":"metric_collector","events_processed":22019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4403.8,"last_update":"2026-03-21T17:25:49.069589948Z"} +2026/03/21 17:25:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:25:49.091040718Z"} +2026/03/21 17:25:54 ───────────────────────────────────────────────── +2026/03/21 17:25:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:25:59 [log_collector] {"stage_name":"log_collector","events_processed":35589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7117.8,"last_update":"2026-03-21T17:25:54.068977791Z"} +2026/03/21 17:25:59 [metric_collector] {"stage_name":"metric_collector","events_processed":22024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4404.8,"last_update":"2026-03-21T17:25:54.06974998Z"} +2026/03/21 17:25:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8812,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:25:54.090087437Z"} +2026/03/21 17:25:59 [detection_layer] {"stage_name":"detection_layer","events_processed":731,"events_dropped":0,"avg_latency_ms":19.341604949021722,"throughput_eps":0,"last_update":"2026-03-21T17:25:54.210329254Z"} +2026/03/21 17:25:59 [transform_engine] {"stage_name":"transform_engine","events_processed":734,"events_dropped":0,"avg_latency_ms":486.0743864814549,"throughput_eps":0,"last_update":"2026-03-21T17:25:54.210331248Z"} +2026/03/21 17:25:59 ───────────────────────────────────────────────── +2026/03/21 17:26:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:26:04 [detection_layer] {"stage_name":"detection_layer","events_processed":731,"events_dropped":0,"avg_latency_ms":19.341604949021722,"throughput_eps":0,"last_update":"2026-03-21T17:25:59.210047794Z"} +2026/03/21 17:26:04 [transform_engine] {"stage_name":"transform_engine","events_processed":734,"events_dropped":0,"avg_latency_ms":486.0743864814549,"throughput_eps":0,"last_update":"2026-03-21T17:25:59.210001825Z"} +2026/03/21 17:26:04 [log_collector] {"stage_name":"log_collector","events_processed":35589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7117.8,"last_update":"2026-03-21T17:25:59.068759471Z"} +2026/03/21 17:26:04 [metric_collector] {"stage_name":"metric_collector","events_processed":22029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4405.8,"last_update":"2026-03-21T17:25:59.069305427Z"} +2026/03/21 17:26:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:25:59.078647302Z"} +2026/03/21 17:26:04 ───────────────────────────────────────────────── +2026/03/21 17:26:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:26:09 [log_collector] {"stage_name":"log_collector","events_processed":35589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7117.8,"last_update":"2026-03-21T17:26:04.068725804Z"} +2026/03/21 17:26:09 [metric_collector] {"stage_name":"metric_collector","events_processed":22034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4406.8,"last_update":"2026-03-21T17:26:04.068939383Z"} +2026/03/21 17:26:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8816,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:26:04.076247292Z"} +2026/03/21 17:26:09 [detection_layer] {"stage_name":"detection_layer","events_processed":731,"events_dropped":0,"avg_latency_ms":19.341604949021722,"throughput_eps":0,"last_update":"2026-03-21T17:26:04.210453458Z"} +2026/03/21 17:26:09 [transform_engine] {"stage_name":"transform_engine","events_processed":734,"events_dropped":0,"avg_latency_ms":486.0743864814549,"throughput_eps":0,"last_update":"2026-03-21T17:26:04.210408872Z"} +2026/03/21 17:26:09 ───────────────────────────────────────────────── +2026/03/21 17:26:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:26:14 [metric_collector] {"stage_name":"metric_collector","events_processed":22039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4407.8,"last_update":"2026-03-21T17:26:09.068844458Z"} +2026/03/21 17:26:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8818,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:26:09.078383761Z"} +2026/03/21 17:26:14 [detection_layer] {"stage_name":"detection_layer","events_processed":731,"events_dropped":0,"avg_latency_ms":19.341604949021722,"throughput_eps":0,"last_update":"2026-03-21T17:26:09.210605967Z"} +2026/03/21 17:26:14 [transform_engine] {"stage_name":"transform_engine","events_processed":734,"events_dropped":0,"avg_latency_ms":486.0743864814549,"throughput_eps":0,"last_update":"2026-03-21T17:26:09.210632898Z"} +2026/03/21 17:26:14 [log_collector] {"stage_name":"log_collector","events_processed":35589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7117.8,"last_update":"2026-03-21T17:26:09.068615609Z"} +2026/03/21 17:26:14 ───────────────────────────────────────────────── +2026/03/21 17:26:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:26:19 [log_collector] {"stage_name":"log_collector","events_processed":35589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7117.8,"last_update":"2026-03-21T17:26:14.068126089Z"} +2026/03/21 17:26:19 [metric_collector] {"stage_name":"metric_collector","events_processed":22044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4408.8,"last_update":"2026-03-21T17:26:14.068436994Z"} +2026/03/21 17:26:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8820,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:26:14.077436713Z"} +2026/03/21 17:26:19 [detection_layer] {"stage_name":"detection_layer","events_processed":731,"events_dropped":0,"avg_latency_ms":19.341604949021722,"throughput_eps":0,"last_update":"2026-03-21T17:26:14.210649597Z"} +2026/03/21 17:26:19 [transform_engine] {"stage_name":"transform_engine","events_processed":734,"events_dropped":0,"avg_latency_ms":486.0743864814549,"throughput_eps":0,"last_update":"2026-03-21T17:26:14.210697018Z"} +2026/03/21 17:26:19 ───────────────────────────────────────────────── +2026/03/21 17:26:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:26:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:26:19.075454766Z"} +2026/03/21 17:26:24 [detection_layer] {"stage_name":"detection_layer","events_processed":731,"events_dropped":0,"avg_latency_ms":19.341604949021722,"throughput_eps":0,"last_update":"2026-03-21T17:26:19.209933665Z"} +2026/03/21 17:26:24 [transform_engine] {"stage_name":"transform_engine","events_processed":735,"events_dropped":0,"avg_latency_ms":406.7419997851639,"throughput_eps":0,"last_update":"2026-03-21T17:26:19.299117398Z"} +2026/03/21 17:26:24 [log_collector] {"stage_name":"log_collector","events_processed":35589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7117.8,"last_update":"2026-03-21T17:26:19.068703173Z"} +2026/03/21 17:26:24 [metric_collector] {"stage_name":"metric_collector","events_processed":22049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4409.8,"last_update":"2026-03-21T17:26:19.068913465Z"} +2026/03/21 17:26:24 ───────────────────────────────────────────────── +2026/03/21 17:26:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:26:29 [metric_collector] {"stage_name":"metric_collector","events_processed":22054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4410.8,"last_update":"2026-03-21T17:26:24.069077038Z"} +2026/03/21 17:26:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:26:24.078823457Z"} +2026/03/21 17:26:29 [detection_layer] {"stage_name":"detection_layer","events_processed":732,"events_dropped":0,"avg_latency_ms":19.13564735921738,"throughput_eps":0,"last_update":"2026-03-21T17:26:24.210047401Z"} +2026/03/21 17:26:29 [transform_engine] {"stage_name":"transform_engine","events_processed":735,"events_dropped":0,"avg_latency_ms":406.7419997851639,"throughput_eps":0,"last_update":"2026-03-21T17:26:24.210058151Z"} +2026/03/21 17:26:29 [log_collector] {"stage_name":"log_collector","events_processed":35589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7117.8,"last_update":"2026-03-21T17:26:24.068635942Z"} +2026/03/21 17:26:29 ───────────────────────────────────────────────── +Saved state: 27 clusters, 35590 messages, reason: none +2026/03/21 17:26:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:26:34 [log_collector] {"stage_name":"log_collector","events_processed":35589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7117.8,"last_update":"2026-03-21T17:26:29.068110144Z"} +2026/03/21 17:26:34 [metric_collector] {"stage_name":"metric_collector","events_processed":22059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4411.8,"last_update":"2026-03-21T17:26:29.068773244Z"} +2026/03/21 17:26:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8826,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:26:29.079076661Z"} +2026/03/21 17:26:34 [detection_layer] {"stage_name":"detection_layer","events_processed":732,"events_dropped":0,"avg_latency_ms":19.13564735921738,"throughput_eps":0,"last_update":"2026-03-21T17:26:29.210313199Z"} +2026/03/21 17:26:34 [transform_engine] {"stage_name":"transform_engine","events_processed":735,"events_dropped":0,"avg_latency_ms":406.7419997851639,"throughput_eps":0,"last_update":"2026-03-21T17:26:29.21032459Z"} +2026/03/21 17:26:34 ───────────────────────────────────────────────── +2026/03/21 17:26:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:26:39 [log_collector] {"stage_name":"log_collector","events_processed":35592,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7118.4,"last_update":"2026-03-21T17:26:34.06807845Z"} +2026/03/21 17:26:39 [metric_collector] {"stage_name":"metric_collector","events_processed":22064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4412.8,"last_update":"2026-03-21T17:26:34.068389155Z"} +2026/03/21 17:26:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:26:34.078538386Z"} +2026/03/21 17:26:39 [detection_layer] {"stage_name":"detection_layer","events_processed":732,"events_dropped":0,"avg_latency_ms":19.13564735921738,"throughput_eps":0,"last_update":"2026-03-21T17:26:34.210909888Z"} +2026/03/21 17:26:39 [transform_engine] {"stage_name":"transform_engine","events_processed":735,"events_dropped":0,"avg_latency_ms":406.7419997851639,"throughput_eps":0,"last_update":"2026-03-21T17:26:34.209749065Z"} +2026/03/21 17:26:39 ───────────────────────────────────────────────── +2026/03/21 17:26:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:26:44 [transform_engine] {"stage_name":"transform_engine","events_processed":735,"events_dropped":0,"avg_latency_ms":406.7419997851639,"throughput_eps":0,"last_update":"2026-03-21T17:26:39.210049939Z"} +2026/03/21 17:26:44 [log_collector] {"stage_name":"log_collector","events_processed":35603,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7120.6,"last_update":"2026-03-21T17:26:39.068558127Z"} +2026/03/21 17:26:44 [metric_collector] {"stage_name":"metric_collector","events_processed":22074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4414.8,"last_update":"2026-03-21T17:26:44.068994902Z"} +2026/03/21 17:26:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8830,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:26:39.077744243Z"} +2026/03/21 17:26:44 [detection_layer] {"stage_name":"detection_layer","events_processed":732,"events_dropped":0,"avg_latency_ms":19.13564735921738,"throughput_eps":0,"last_update":"2026-03-21T17:26:39.210037666Z"} +2026/03/21 17:26:44 ───────────────────────────────────────────────── +2026/03/21 17:26:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:26:49 [transform_engine] {"stage_name":"transform_engine","events_processed":735,"events_dropped":0,"avg_latency_ms":406.7419997851639,"throughput_eps":0,"last_update":"2026-03-21T17:26:44.210488748Z"} +2026/03/21 17:26:49 [log_collector] {"stage_name":"log_collector","events_processed":35603,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7120.6,"last_update":"2026-03-21T17:26:44.06915072Z"} +2026/03/21 17:26:49 [metric_collector] {"stage_name":"metric_collector","events_processed":22074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4414.8,"last_update":"2026-03-21T17:26:44.068994902Z"} +2026/03/21 17:26:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8832,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:26:44.07829144Z"} +2026/03/21 17:26:49 [detection_layer] {"stage_name":"detection_layer","events_processed":732,"events_dropped":0,"avg_latency_ms":19.13564735921738,"throughput_eps":0,"last_update":"2026-03-21T17:26:44.210472847Z"} +2026/03/21 17:26:49 ───────────────────────────────────────────────── +2026/03/21 17:26:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:26:54 [log_collector] {"stage_name":"log_collector","events_processed":35603,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7120.6,"last_update":"2026-03-21T17:26:49.068866174Z"} +2026/03/21 17:26:54 [metric_collector] {"stage_name":"metric_collector","events_processed":22079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4415.8,"last_update":"2026-03-21T17:26:49.069129599Z"} +2026/03/21 17:26:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:26:49.078675294Z"} +2026/03/21 17:26:54 [detection_layer] {"stage_name":"detection_layer","events_processed":732,"events_dropped":0,"avg_latency_ms":19.13564735921738,"throughput_eps":0,"last_update":"2026-03-21T17:26:49.210034337Z"} +2026/03/21 17:26:54 [transform_engine] {"stage_name":"transform_engine","events_processed":736,"events_dropped":0,"avg_latency_ms":785.595948028131,"throughput_eps":0,"last_update":"2026-03-21T17:26:51.511071927Z"} +2026/03/21 17:26:54 ───────────────────────────────────────────────── +2026/03/21 17:26:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:26:59 [log_collector] {"stage_name":"log_collector","events_processed":35603,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7120.6,"last_update":"2026-03-21T17:26:54.069117524Z"} +2026/03/21 17:26:59 [metric_collector] {"stage_name":"metric_collector","events_processed":22084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4416.8,"last_update":"2026-03-21T17:26:54.069828245Z"} +2026/03/21 17:26:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:26:54.091216385Z"} +2026/03/21 17:26:59 [detection_layer] {"stage_name":"detection_layer","events_processed":733,"events_dropped":0,"avg_latency_ms":19.342156487373906,"throughput_eps":0,"last_update":"2026-03-21T17:26:54.210379295Z"} +2026/03/21 17:26:59 [transform_engine] {"stage_name":"transform_engine","events_processed":736,"events_dropped":0,"avg_latency_ms":785.595948028131,"throughput_eps":0,"last_update":"2026-03-21T17:26:54.210462796Z"} +2026/03/21 17:26:59 ───────────────────────────────────────────────── +2026/03/21 17:27:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:27:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:26:59.09226338Z"} +2026/03/21 17:27:04 [detection_layer] {"stage_name":"detection_layer","events_processed":733,"events_dropped":0,"avg_latency_ms":19.342156487373906,"throughput_eps":0,"last_update":"2026-03-21T17:26:59.210860277Z"} +2026/03/21 17:27:04 [transform_engine] {"stage_name":"transform_engine","events_processed":736,"events_dropped":0,"avg_latency_ms":785.595948028131,"throughput_eps":0,"last_update":"2026-03-21T17:26:59.210721741Z"} +2026/03/21 17:27:04 [log_collector] {"stage_name":"log_collector","events_processed":35603,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7120.6,"last_update":"2026-03-21T17:26:59.069195133Z"} +2026/03/21 17:27:04 [metric_collector] {"stage_name":"metric_collector","events_processed":22089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4417.8,"last_update":"2026-03-21T17:26:59.069614246Z"} +2026/03/21 17:27:04 ───────────────────────────────────────────────── +2026/03/21 17:27:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:27:09 [metric_collector] {"stage_name":"metric_collector","events_processed":22094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4418.8,"last_update":"2026-03-21T17:27:04.069756368Z"} +2026/03/21 17:27:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:27:04.089828667Z"} +2026/03/21 17:27:09 [detection_layer] {"stage_name":"detection_layer","events_processed":733,"events_dropped":0,"avg_latency_ms":19.342156487373906,"throughput_eps":0,"last_update":"2026-03-21T17:27:04.210071625Z"} +2026/03/21 17:27:09 [transform_engine] {"stage_name":"transform_engine","events_processed":736,"events_dropped":0,"avg_latency_ms":785.595948028131,"throughput_eps":0,"last_update":"2026-03-21T17:27:04.210107354Z"} +2026/03/21 17:27:09 [log_collector] {"stage_name":"log_collector","events_processed":35603,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7120.6,"last_update":"2026-03-21T17:27:04.069177188Z"} +2026/03/21 17:27:09 ───────────────────────────────────────────────── +2026/03/21 17:27:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:27:14 [transform_engine] {"stage_name":"transform_engine","events_processed":736,"events_dropped":0,"avg_latency_ms":785.595948028131,"throughput_eps":0,"last_update":"2026-03-21T17:27:09.21070043Z"} +2026/03/21 17:27:14 [log_collector] {"stage_name":"log_collector","events_processed":35603,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7120.6,"last_update":"2026-03-21T17:27:09.06857295Z"} +2026/03/21 17:27:14 [metric_collector] {"stage_name":"metric_collector","events_processed":22099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4419.8,"last_update":"2026-03-21T17:27:09.069300243Z"} +2026/03/21 17:27:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:27:09.093389287Z"} +2026/03/21 17:27:14 [detection_layer] {"stage_name":"detection_layer","events_processed":733,"events_dropped":0,"avg_latency_ms":19.342156487373906,"throughput_eps":0,"last_update":"2026-03-21T17:27:09.210682606Z"} +2026/03/21 17:27:14 ───────────────────────────────────────────────── +2026/03/21 17:27:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:27:19 [transform_engine] {"stage_name":"transform_engine","events_processed":736,"events_dropped":0,"avg_latency_ms":785.595948028131,"throughput_eps":0,"last_update":"2026-03-21T17:27:14.210584529Z"} +2026/03/21 17:27:19 [log_collector] {"stage_name":"log_collector","events_processed":35603,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7120.6,"last_update":"2026-03-21T17:27:14.069578827Z"} +2026/03/21 17:27:19 [metric_collector] {"stage_name":"metric_collector","events_processed":22104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4420.8,"last_update":"2026-03-21T17:27:14.070345656Z"} +2026/03/21 17:27:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:27:14.095326418Z"} +2026/03/21 17:27:19 [detection_layer] {"stage_name":"detection_layer","events_processed":733,"events_dropped":0,"avg_latency_ms":19.342156487373906,"throughput_eps":0,"last_update":"2026-03-21T17:27:14.210612131Z"} +2026/03/21 17:27:19 ───────────────────────────────────────────────── +2026/03/21 17:27:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:27:24 [detection_layer] {"stage_name":"detection_layer","events_processed":733,"events_dropped":0,"avg_latency_ms":19.342156487373906,"throughput_eps":0,"last_update":"2026-03-21T17:27:19.210613494Z"} +2026/03/21 17:27:24 [transform_engine] {"stage_name":"transform_engine","events_processed":737,"events_dropped":0,"avg_latency_ms":646.6883592225049,"throughput_eps":0,"last_update":"2026-03-21T17:27:19.30424593Z"} +2026/03/21 17:27:24 [log_collector] {"stage_name":"log_collector","events_processed":35603,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7120.6,"last_update":"2026-03-21T17:27:19.069124047Z"} +2026/03/21 17:27:24 [metric_collector] {"stage_name":"metric_collector","events_processed":22109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4421.8,"last_update":"2026-03-21T17:27:19.069650605Z"} +2026/03/21 17:27:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:27:19.093237016Z"} +2026/03/21 17:27:24 ───────────────────────────────────────────────── +2026/03/21 17:27:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:27:29 [detection_layer] {"stage_name":"detection_layer","events_processed":734,"events_dropped":0,"avg_latency_ms":25.18433018989913,"throughput_eps":0,"last_update":"2026-03-21T17:27:24.210336024Z"} +2026/03/21 17:27:29 [transform_engine] {"stage_name":"transform_engine","events_processed":737,"events_dropped":0,"avg_latency_ms":646.6883592225049,"throughput_eps":0,"last_update":"2026-03-21T17:27:24.210309152Z"} +2026/03/21 17:27:29 [log_collector] {"stage_name":"log_collector","events_processed":35603,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7120.6,"last_update":"2026-03-21T17:27:24.068758077Z"} +2026/03/21 17:27:29 [metric_collector] {"stage_name":"metric_collector","events_processed":22114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4422.8,"last_update":"2026-03-21T17:27:24.069310956Z"} +2026/03/21 17:27:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8848,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:27:24.089111995Z"} +2026/03/21 17:27:29 ───────────────────────────────────────────────── +2026/03/21 17:27:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:27:34 [log_collector] {"stage_name":"log_collector","events_processed":35603,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7120.6,"last_update":"2026-03-21T17:27:29.068815328Z"} +2026/03/21 17:27:34 [metric_collector] {"stage_name":"metric_collector","events_processed":22119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4423.8,"last_update":"2026-03-21T17:27:29.069012055Z"} +2026/03/21 17:27:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:27:29.075688463Z"} +2026/03/21 17:27:34 [detection_layer] {"stage_name":"detection_layer","events_processed":734,"events_dropped":0,"avg_latency_ms":25.18433018989913,"throughput_eps":0,"last_update":"2026-03-21T17:27:29.210122156Z"} +2026/03/21 17:27:34 [transform_engine] {"stage_name":"transform_engine","events_processed":737,"events_dropped":0,"avg_latency_ms":646.6883592225049,"throughput_eps":0,"last_update":"2026-03-21T17:27:29.210017234Z"} +2026/03/21 17:27:34 ───────────────────────────────────────────────── +2026/03/21 17:27:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:27:39 [log_collector] {"stage_name":"log_collector","events_processed":35603,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7120.6,"last_update":"2026-03-21T17:27:34.068068879Z"} +2026/03/21 17:27:39 [metric_collector] {"stage_name":"metric_collector","events_processed":22124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4424.8,"last_update":"2026-03-21T17:27:34.068638229Z"} +2026/03/21 17:27:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:27:34.078934031Z"} +2026/03/21 17:27:39 [detection_layer] {"stage_name":"detection_layer","events_processed":734,"events_dropped":0,"avg_latency_ms":25.18433018989913,"throughput_eps":0,"last_update":"2026-03-21T17:27:34.209897667Z"} +2026/03/21 17:27:39 [transform_engine] {"stage_name":"transform_engine","events_processed":737,"events_dropped":0,"avg_latency_ms":646.6883592225049,"throughput_eps":0,"last_update":"2026-03-21T17:27:34.209798707Z"} +2026/03/21 17:27:39 ───────────────────────────────────────────────── +Saved state: 27 clusters, 35604 messages, reason: none +2026/03/21 17:27:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:27:44 [metric_collector] {"stage_name":"metric_collector","events_processed":22129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4425.8,"last_update":"2026-03-21T17:27:39.069196099Z"} +2026/03/21 17:27:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:27:39.079025658Z"} +2026/03/21 17:27:44 [detection_layer] {"stage_name":"detection_layer","events_processed":734,"events_dropped":0,"avg_latency_ms":25.18433018989913,"throughput_eps":0,"last_update":"2026-03-21T17:27:39.210423384Z"} +2026/03/21 17:27:44 [transform_engine] {"stage_name":"transform_engine","events_processed":737,"events_dropped":0,"avg_latency_ms":646.6883592225049,"throughput_eps":0,"last_update":"2026-03-21T17:27:39.210545478Z"} +2026/03/21 17:27:44 [log_collector] {"stage_name":"log_collector","events_processed":35603,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7120.6,"last_update":"2026-03-21T17:27:39.068882368Z"} +2026/03/21 17:27:44 ───────────────────────────────────────────────── +2026/03/21 17:27:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:27:49 [metric_collector] {"stage_name":"metric_collector","events_processed":22134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4426.8,"last_update":"2026-03-21T17:27:44.068874575Z"} +2026/03/21 17:27:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:27:44.075166969Z"} +2026/03/21 17:27:49 [detection_layer] {"stage_name":"detection_layer","events_processed":734,"events_dropped":0,"avg_latency_ms":25.18433018989913,"throughput_eps":0,"last_update":"2026-03-21T17:27:44.21050333Z"} +2026/03/21 17:27:49 [transform_engine] {"stage_name":"transform_engine","events_processed":737,"events_dropped":0,"avg_latency_ms":646.6883592225049,"throughput_eps":0,"last_update":"2026-03-21T17:27:44.210533007Z"} +2026/03/21 17:27:49 [log_collector] {"stage_name":"log_collector","events_processed":35608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7121.6,"last_update":"2026-03-21T17:27:44.068625347Z"} +2026/03/21 17:27:49 ───────────────────────────────────────────────── +2026/03/21 17:27:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:27:54 [metric_collector] {"stage_name":"metric_collector","events_processed":22139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4427.8,"last_update":"2026-03-21T17:27:49.068711825Z"} +2026/03/21 17:27:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:27:49.077843006Z"} +2026/03/21 17:27:54 [detection_layer] {"stage_name":"detection_layer","events_processed":734,"events_dropped":0,"avg_latency_ms":25.18433018989913,"throughput_eps":0,"last_update":"2026-03-21T17:27:49.210469597Z"} +2026/03/21 17:27:54 [transform_engine] {"stage_name":"transform_engine","events_processed":738,"events_dropped":0,"avg_latency_ms":758.128813778004,"throughput_eps":0,"last_update":"2026-03-21T17:27:50.414396809Z"} +2026/03/21 17:27:54 [log_collector] {"stage_name":"log_collector","events_processed":35608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7121.6,"last_update":"2026-03-21T17:27:49.068506372Z"} +2026/03/21 17:27:54 ───────────────────────────────────────────────── +2026/03/21 17:27:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:27:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8860,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:27:54.074969676Z"} +2026/03/21 17:27:59 [detection_layer] {"stage_name":"detection_layer","events_processed":735,"events_dropped":0,"avg_latency_ms":23.237649551919304,"throughput_eps":0,"last_update":"2026-03-21T17:27:54.210170938Z"} +2026/03/21 17:27:59 [transform_engine] {"stage_name":"transform_engine","events_processed":738,"events_dropped":0,"avg_latency_ms":758.128813778004,"throughput_eps":0,"last_update":"2026-03-21T17:27:54.210183242Z"} +2026/03/21 17:27:59 [log_collector] {"stage_name":"log_collector","events_processed":35608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7121.6,"last_update":"2026-03-21T17:27:54.068086019Z"} +2026/03/21 17:27:59 [metric_collector] {"stage_name":"metric_collector","events_processed":22144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4428.8,"last_update":"2026-03-21T17:27:54.068325759Z"} +2026/03/21 17:27:59 ───────────────────────────────────────────────── +2026/03/21 17:28:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:28:04 [detection_layer] {"stage_name":"detection_layer","events_processed":735,"events_dropped":0,"avg_latency_ms":23.237649551919304,"throughput_eps":0,"last_update":"2026-03-21T17:27:59.209953996Z"} +2026/03/21 17:28:04 [transform_engine] {"stage_name":"transform_engine","events_processed":738,"events_dropped":0,"avg_latency_ms":758.128813778004,"throughput_eps":0,"last_update":"2026-03-21T17:27:59.20970067Z"} +2026/03/21 17:28:04 [log_collector] {"stage_name":"log_collector","events_processed":35608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7121.6,"last_update":"2026-03-21T17:27:59.068931492Z"} +2026/03/21 17:28:04 [metric_collector] {"stage_name":"metric_collector","events_processed":22149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4429.8,"last_update":"2026-03-21T17:27:59.069225385Z"} +2026/03/21 17:28:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8862,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:27:59.080604402Z"} +2026/03/21 17:28:04 ───────────────────────────────────────────────── +2026/03/21 17:28:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:28:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:28:04.075093106Z"} +2026/03/21 17:28:09 [detection_layer] {"stage_name":"detection_layer","events_processed":735,"events_dropped":0,"avg_latency_ms":23.237649551919304,"throughput_eps":0,"last_update":"2026-03-21T17:28:04.21036827Z"} +2026/03/21 17:28:09 [transform_engine] {"stage_name":"transform_engine","events_processed":738,"events_dropped":0,"avg_latency_ms":758.128813778004,"throughput_eps":0,"last_update":"2026-03-21T17:28:04.210380703Z"} +2026/03/21 17:28:09 [log_collector] {"stage_name":"log_collector","events_processed":35608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7121.6,"last_update":"2026-03-21T17:28:04.068743223Z"} +2026/03/21 17:28:09 [metric_collector] {"stage_name":"metric_collector","events_processed":22154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4430.8,"last_update":"2026-03-21T17:28:04.068888882Z"} +2026/03/21 17:28:09 ───────────────────────────────────────────────── +2026/03/21 17:28:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:28:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:28:09.078166606Z"} +2026/03/21 17:28:14 [detection_layer] {"stage_name":"detection_layer","events_processed":735,"events_dropped":0,"avg_latency_ms":23.237649551919304,"throughput_eps":0,"last_update":"2026-03-21T17:28:09.210389483Z"} +2026/03/21 17:28:14 [transform_engine] {"stage_name":"transform_engine","events_processed":738,"events_dropped":0,"avg_latency_ms":758.128813778004,"throughput_eps":0,"last_update":"2026-03-21T17:28:09.210402399Z"} +2026/03/21 17:28:14 [log_collector] {"stage_name":"log_collector","events_processed":35608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7121.6,"last_update":"2026-03-21T17:28:09.073036129Z"} +2026/03/21 17:28:14 [metric_collector] {"stage_name":"metric_collector","events_processed":22159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4431.8,"last_update":"2026-03-21T17:28:09.073433039Z"} +2026/03/21 17:28:14 ───────────────────────────────────────────────── +2026/03/21 17:28:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:28:19 [log_collector] {"stage_name":"log_collector","events_processed":35608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7121.6,"last_update":"2026-03-21T17:28:14.06806039Z"} +2026/03/21 17:28:19 [metric_collector] {"stage_name":"metric_collector","events_processed":22164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4432.8,"last_update":"2026-03-21T17:28:14.068391274Z"} +2026/03/21 17:28:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8868,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:28:14.079050331Z"} +2026/03/21 17:28:19 [detection_layer] {"stage_name":"detection_layer","events_processed":735,"events_dropped":0,"avg_latency_ms":23.237649551919304,"throughput_eps":0,"last_update":"2026-03-21T17:28:14.210257694Z"} +2026/03/21 17:28:19 [transform_engine] {"stage_name":"transform_engine","events_processed":738,"events_dropped":0,"avg_latency_ms":758.128813778004,"throughput_eps":0,"last_update":"2026-03-21T17:28:14.210272622Z"} +2026/03/21 17:28:19 ───────────────────────────────────────────────── +2026/03/21 17:28:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:28:24 [metric_collector] {"stage_name":"metric_collector","events_processed":22169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4433.8,"last_update":"2026-03-21T17:28:19.069440145Z"} +2026/03/21 17:28:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:28:19.07593217Z"} +2026/03/21 17:28:24 [detection_layer] {"stage_name":"detection_layer","events_processed":735,"events_dropped":0,"avg_latency_ms":23.237649551919304,"throughput_eps":0,"last_update":"2026-03-21T17:28:19.210318522Z"} +2026/03/21 17:28:24 [transform_engine] {"stage_name":"transform_engine","events_processed":739,"events_dropped":0,"avg_latency_ms":627.2962548224032,"throughput_eps":0,"last_update":"2026-03-21T17:28:19.314297006Z"} +2026/03/21 17:28:24 [log_collector] {"stage_name":"log_collector","events_processed":35608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7121.6,"last_update":"2026-03-21T17:28:19.068857459Z"} +2026/03/21 17:28:24 ───────────────────────────────────────────────── +2026/03/21 17:28:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:28:29 [transform_engine] {"stage_name":"transform_engine","events_processed":739,"events_dropped":0,"avg_latency_ms":627.2962548224032,"throughput_eps":0,"last_update":"2026-03-21T17:28:24.209667959Z"} +2026/03/21 17:28:29 [log_collector] {"stage_name":"log_collector","events_processed":35611,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7122.2,"last_update":"2026-03-21T17:28:24.070560884Z"} +2026/03/21 17:28:29 [metric_collector] {"stage_name":"metric_collector","events_processed":22174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4434.8,"last_update":"2026-03-21T17:28:24.114478591Z"} +2026/03/21 17:28:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:28:24.149630536Z"} +2026/03/21 17:28:29 [detection_layer] {"stage_name":"detection_layer","events_processed":736,"events_dropped":0,"avg_latency_ms":21.418094641535447,"throughput_eps":0,"last_update":"2026-03-21T17:28:24.210751144Z"} +2026/03/21 17:28:29 ───────────────────────────────────────────────── +2026/03/21 17:28:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:28:34 [transform_engine] {"stage_name":"transform_engine","events_processed":739,"events_dropped":0,"avg_latency_ms":627.2962548224032,"throughput_eps":0,"last_update":"2026-03-21T17:28:29.209793654Z"} +2026/03/21 17:28:34 [log_collector] {"stage_name":"log_collector","events_processed":35748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7149.6,"last_update":"2026-03-21T17:28:34.068269553Z"} +2026/03/21 17:28:34 [metric_collector] {"stage_name":"metric_collector","events_processed":22184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4436.8,"last_update":"2026-03-21T17:28:34.068871557Z"} +2026/03/21 17:28:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:28:29.089630557Z"} +2026/03/21 17:28:34 [detection_layer] {"stage_name":"detection_layer","events_processed":736,"events_dropped":0,"avg_latency_ms":21.418094641535447,"throughput_eps":0,"last_update":"2026-03-21T17:28:29.209867194Z"} +2026/03/21 17:28:34 ───────────────────────────────────────────────── +2026/03/21 17:28:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:28:39 [log_collector] {"stage_name":"log_collector","events_processed":35748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7149.6,"last_update":"2026-03-21T17:28:34.068269553Z"} +2026/03/21 17:28:39 [metric_collector] {"stage_name":"metric_collector","events_processed":22184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4436.8,"last_update":"2026-03-21T17:28:34.068871557Z"} +2026/03/21 17:28:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8876,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:28:34.090955409Z"} +2026/03/21 17:28:39 [detection_layer] {"stage_name":"detection_layer","events_processed":736,"events_dropped":0,"avg_latency_ms":21.418094641535447,"throughput_eps":0,"last_update":"2026-03-21T17:28:34.217543703Z"} +2026/03/21 17:28:39 [transform_engine] {"stage_name":"transform_engine","events_processed":739,"events_dropped":0,"avg_latency_ms":627.2962548224032,"throughput_eps":0,"last_update":"2026-03-21T17:28:34.216725867Z"} +2026/03/21 17:28:39 ───────────────────────────────────────────────── +2026/03/21 17:28:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:28:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:28:39.094500845Z"} +2026/03/21 17:28:44 [detection_layer] {"stage_name":"detection_layer","events_processed":736,"events_dropped":0,"avg_latency_ms":21.418094641535447,"throughput_eps":0,"last_update":"2026-03-21T17:28:39.210760274Z"} +2026/03/21 17:28:44 [transform_engine] {"stage_name":"transform_engine","events_processed":739,"events_dropped":0,"avg_latency_ms":627.2962548224032,"throughput_eps":0,"last_update":"2026-03-21T17:28:39.20964144Z"} +2026/03/21 17:28:44 [log_collector] {"stage_name":"log_collector","events_processed":35977,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7195.4,"last_update":"2026-03-21T17:28:39.068724369Z"} +2026/03/21 17:28:44 [metric_collector] {"stage_name":"metric_collector","events_processed":22189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4437.8,"last_update":"2026-03-21T17:28:39.069129915Z"} +2026/03/21 17:28:44 ───────────────────────────────────────────────── +Saved state: 27 clusters, 35978 messages, reason: none +2026/03/21 17:28:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:28:49 [transform_engine] {"stage_name":"transform_engine","events_processed":739,"events_dropped":0,"avg_latency_ms":627.2962548224032,"throughput_eps":0,"last_update":"2026-03-21T17:28:44.21046445Z"} +2026/03/21 17:28:49 [log_collector] {"stage_name":"log_collector","events_processed":35977,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7195.4,"last_update":"2026-03-21T17:28:44.069179866Z"} +2026/03/21 17:28:49 [metric_collector] {"stage_name":"metric_collector","events_processed":22194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4438.8,"last_update":"2026-03-21T17:28:44.070034533Z"} +2026/03/21 17:28:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:28:44.092278562Z"} +2026/03/21 17:28:49 [detection_layer] {"stage_name":"detection_layer","events_processed":736,"events_dropped":0,"avg_latency_ms":21.418094641535447,"throughput_eps":0,"last_update":"2026-03-21T17:28:44.210450785Z"} +2026/03/21 17:28:49 ───────────────────────────────────────────────── +2026/03/21 17:28:50 [ANOMALY] time=2026-03-21T17:28:50Z score=0.8422 method=SEAD details=MAD!:w=0.33,s=0.58 RRCF-fast!:w=0.16,s=0.95 RRCF-mid!:w=0.13,s=0.97 RRCF-slow!:w=0.11,s=0.97 COPOD!:w=0.27,s=0.98 +2026/03/21 17:28:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:28:54 [log_collector] {"stage_name":"log_collector","events_processed":35980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7196,"last_update":"2026-03-21T17:28:49.069249934Z"} +2026/03/21 17:28:54 [metric_collector] {"stage_name":"metric_collector","events_processed":22199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4439.8,"last_update":"2026-03-21T17:28:49.069793876Z"} +2026/03/21 17:28:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:28:49.095326074Z"} +2026/03/21 17:28:54 [detection_layer] {"stage_name":"detection_layer","events_processed":736,"events_dropped":0,"avg_latency_ms":21.418094641535447,"throughput_eps":0,"last_update":"2026-03-21T17:28:49.210470247Z"} +2026/03/21 17:28:54 [transform_engine] {"stage_name":"transform_engine","events_processed":740,"events_dropped":0,"avg_latency_ms":780.2295140579226,"throughput_eps":0,"last_update":"2026-03-21T17:28:50.602451673Z"} +2026/03/21 17:28:54 ───────────────────────────────────────────────── +2026/03/21 17:28:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:28:59 [log_collector] {"stage_name":"log_collector","events_processed":35980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7196,"last_update":"2026-03-21T17:28:54.086883607Z"} +2026/03/21 17:28:59 [metric_collector] {"stage_name":"metric_collector","events_processed":22204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4440.8,"last_update":"2026-03-21T17:28:54.087975238Z"} +2026/03/21 17:28:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:28:54.119476009Z"} +2026/03/21 17:28:59 [detection_layer] {"stage_name":"detection_layer","events_processed":737,"events_dropped":0,"avg_latency_ms":19.28003971322836,"throughput_eps":0,"last_update":"2026-03-21T17:28:54.210397352Z"} +2026/03/21 17:28:59 [transform_engine] {"stage_name":"transform_engine","events_processed":740,"events_dropped":0,"avg_latency_ms":780.2295140579226,"throughput_eps":0,"last_update":"2026-03-21T17:28:54.210378686Z"} +2026/03/21 17:28:59 ───────────────────────────────────────────────── +2026/03/21 17:29:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:29:04 [detection_layer] {"stage_name":"detection_layer","events_processed":737,"events_dropped":0,"avg_latency_ms":19.28003971322836,"throughput_eps":0,"last_update":"2026-03-21T17:28:59.210491548Z"} +2026/03/21 17:29:04 [transform_engine] {"stage_name":"transform_engine","events_processed":740,"events_dropped":0,"avg_latency_ms":780.2295140579226,"throughput_eps":0,"last_update":"2026-03-21T17:28:59.210540762Z"} +2026/03/21 17:29:04 [log_collector] {"stage_name":"log_collector","events_processed":35999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7199.8,"last_update":"2026-03-21T17:28:59.068509958Z"} +2026/03/21 17:29:04 [metric_collector] {"stage_name":"metric_collector","events_processed":22209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4441.8,"last_update":"2026-03-21T17:28:59.068766319Z"} +2026/03/21 17:29:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8886,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:28:59.075387312Z"} +2026/03/21 17:29:04 ───────────────────────────────────────────────── +2026/03/21 17:29:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:29:09 [log_collector] {"stage_name":"log_collector","events_processed":36007,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7201.4,"last_update":"2026-03-21T17:29:09.068092509Z"} +2026/03/21 17:29:09 [metric_collector] {"stage_name":"metric_collector","events_processed":22214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4442.8,"last_update":"2026-03-21T17:29:04.068763949Z"} +2026/03/21 17:29:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:29:04.076880607Z"} +2026/03/21 17:29:09 [detection_layer] {"stage_name":"detection_layer","events_processed":737,"events_dropped":0,"avg_latency_ms":19.28003971322836,"throughput_eps":0,"last_update":"2026-03-21T17:29:04.210239952Z"} +2026/03/21 17:29:09 [transform_engine] {"stage_name":"transform_engine","events_processed":740,"events_dropped":0,"avg_latency_ms":780.2295140579226,"throughput_eps":0,"last_update":"2026-03-21T17:29:04.210272604Z"} +2026/03/21 17:29:09 ───────────────────────────────────────────────── +2026/03/21 17:29:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:29:14 [detection_layer] {"stage_name":"detection_layer","events_processed":737,"events_dropped":0,"avg_latency_ms":19.28003971322836,"throughput_eps":0,"last_update":"2026-03-21T17:29:09.210668969Z"} +2026/03/21 17:29:14 [transform_engine] {"stage_name":"transform_engine","events_processed":740,"events_dropped":0,"avg_latency_ms":780.2295140579226,"throughput_eps":0,"last_update":"2026-03-21T17:29:09.210653158Z"} +2026/03/21 17:29:14 [log_collector] {"stage_name":"log_collector","events_processed":36007,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7201.4,"last_update":"2026-03-21T17:29:09.068092509Z"} +2026/03/21 17:29:14 [metric_collector] {"stage_name":"metric_collector","events_processed":22219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4443.8,"last_update":"2026-03-21T17:29:09.068588489Z"} +2026/03/21 17:29:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:29:09.077253808Z"} +2026/03/21 17:29:14 ───────────────────────────────────────────────── +2026/03/21 17:29:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:29:19 [log_collector] {"stage_name":"log_collector","events_processed":36007,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7201.4,"last_update":"2026-03-21T17:29:14.068877189Z"} +2026/03/21 17:29:19 [metric_collector] {"stage_name":"metric_collector","events_processed":22224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4444.8,"last_update":"2026-03-21T17:29:14.068858403Z"} +2026/03/21 17:29:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8892,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:29:14.077659902Z"} +2026/03/21 17:29:19 [detection_layer] {"stage_name":"detection_layer","events_processed":737,"events_dropped":0,"avg_latency_ms":19.28003971322836,"throughput_eps":0,"last_update":"2026-03-21T17:29:14.210169529Z"} +2026/03/21 17:29:19 [transform_engine] {"stage_name":"transform_engine","events_processed":740,"events_dropped":0,"avg_latency_ms":780.2295140579226,"throughput_eps":0,"last_update":"2026-03-21T17:29:14.21004993Z"} +2026/03/21 17:29:19 ───────────────────────────────────────────────── +2026/03/21 17:29:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:29:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:29:19.078841071Z"} +2026/03/21 17:29:24 [detection_layer] {"stage_name":"detection_layer","events_processed":737,"events_dropped":0,"avg_latency_ms":19.28003971322836,"throughput_eps":0,"last_update":"2026-03-21T17:29:19.210406769Z"} +2026/03/21 17:29:24 [transform_engine] {"stage_name":"transform_engine","events_processed":740,"events_dropped":0,"avg_latency_ms":780.2295140579226,"throughput_eps":0,"last_update":"2026-03-21T17:29:19.210288593Z"} +2026/03/21 17:29:24 [log_collector] {"stage_name":"log_collector","events_processed":36007,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7201.4,"last_update":"2026-03-21T17:29:19.068763677Z"} +2026/03/21 17:29:24 [metric_collector] {"stage_name":"metric_collector","events_processed":22229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4445.8,"last_update":"2026-03-21T17:29:19.069190574Z"} +2026/03/21 17:29:24 ───────────────────────────────────────────────── +2026/03/21 17:29:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:29:29 [log_collector] {"stage_name":"log_collector","events_processed":36007,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7201.4,"last_update":"2026-03-21T17:29:24.068834948Z"} +2026/03/21 17:29:29 [metric_collector] {"stage_name":"metric_collector","events_processed":22234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4446.8,"last_update":"2026-03-21T17:29:24.069378359Z"} +2026/03/21 17:29:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8896,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:29:24.078106668Z"} +2026/03/21 17:29:29 [detection_layer] {"stage_name":"detection_layer","events_processed":738,"events_dropped":0,"avg_latency_ms":19.163630970582687,"throughput_eps":0,"last_update":"2026-03-21T17:29:24.210391494Z"} +2026/03/21 17:29:29 [transform_engine] {"stage_name":"transform_engine","events_processed":741,"events_dropped":0,"avg_latency_ms":652.4341198463381,"throughput_eps":0,"last_update":"2026-03-21T17:29:24.210376687Z"} +2026/03/21 17:29:29 ───────────────────────────────────────────────── +2026/03/21 17:29:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:29:34 [log_collector] {"stage_name":"log_collector","events_processed":36007,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7201.4,"last_update":"2026-03-21T17:29:29.068095407Z"} +2026/03/21 17:29:34 [metric_collector] {"stage_name":"metric_collector","events_processed":22239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4447.8,"last_update":"2026-03-21T17:29:29.068408917Z"} +2026/03/21 17:29:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8898,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:29:29.07849056Z"} +2026/03/21 17:29:34 [detection_layer] {"stage_name":"detection_layer","events_processed":738,"events_dropped":0,"avg_latency_ms":19.163630970582687,"throughput_eps":0,"last_update":"2026-03-21T17:29:29.211067395Z"} +2026/03/21 17:29:34 [transform_engine] {"stage_name":"transform_engine","events_processed":741,"events_dropped":0,"avg_latency_ms":652.4341198463381,"throughput_eps":0,"last_update":"2026-03-21T17:29:29.209690297Z"} +2026/03/21 17:29:34 ───────────────────────────────────────────────── +2026/03/21 17:29:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:29:39 [log_collector] {"stage_name":"log_collector","events_processed":36007,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7201.4,"last_update":"2026-03-21T17:29:34.068653413Z"} +2026/03/21 17:29:39 [metric_collector] {"stage_name":"metric_collector","events_processed":22244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4448.8,"last_update":"2026-03-21T17:29:34.069077244Z"} +2026/03/21 17:29:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8900,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:29:34.077578519Z"} +2026/03/21 17:29:39 [detection_layer] {"stage_name":"detection_layer","events_processed":738,"events_dropped":0,"avg_latency_ms":19.163630970582687,"throughput_eps":0,"last_update":"2026-03-21T17:29:34.210891434Z"} +2026/03/21 17:29:39 [transform_engine] {"stage_name":"transform_engine","events_processed":741,"events_dropped":0,"avg_latency_ms":652.4341198463381,"throughput_eps":0,"last_update":"2026-03-21T17:29:34.209744006Z"} +2026/03/21 17:29:39 ───────────────────────────────────────────────── +2026/03/21 17:29:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:29:44 [log_collector] {"stage_name":"log_collector","events_processed":36007,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7201.4,"last_update":"2026-03-21T17:29:39.068407105Z"} +2026/03/21 17:29:44 [metric_collector] {"stage_name":"metric_collector","events_processed":22249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4449.8,"last_update":"2026-03-21T17:29:39.068661723Z"} +2026/03/21 17:29:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:29:39.077316702Z"} +2026/03/21 17:29:44 [detection_layer] {"stage_name":"detection_layer","events_processed":738,"events_dropped":0,"avg_latency_ms":19.163630970582687,"throughput_eps":0,"last_update":"2026-03-21T17:29:39.21081345Z"} +2026/03/21 17:29:44 [transform_engine] {"stage_name":"transform_engine","events_processed":741,"events_dropped":0,"avg_latency_ms":652.4341198463381,"throughput_eps":0,"last_update":"2026-03-21T17:29:39.210757182Z"} +2026/03/21 17:29:44 ───────────────────────────────────────────────── +2026/03/21 17:29:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:29:49 [transform_engine] {"stage_name":"transform_engine","events_processed":741,"events_dropped":0,"avg_latency_ms":652.4341198463381,"throughput_eps":0,"last_update":"2026-03-21T17:29:44.209645509Z"} +2026/03/21 17:29:49 [log_collector] {"stage_name":"log_collector","events_processed":36007,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7201.4,"last_update":"2026-03-21T17:29:44.068095185Z"} +2026/03/21 17:29:49 [metric_collector] {"stage_name":"metric_collector","events_processed":22254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4450.8,"last_update":"2026-03-21T17:29:44.06842147Z"} +2026/03/21 17:29:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:29:44.077480243Z"} +2026/03/21 17:29:49 [detection_layer] {"stage_name":"detection_layer","events_processed":738,"events_dropped":0,"avg_latency_ms":19.163630970582687,"throughput_eps":0,"last_update":"2026-03-21T17:29:44.21077856Z"} +2026/03/21 17:29:49 ───────────────────────────────────────────────── +2026/03/21 17:29:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:29:54 [log_collector] {"stage_name":"log_collector","events_processed":36007,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7201.4,"last_update":"2026-03-21T17:29:54.069362017Z"} +2026/03/21 17:29:54 [metric_collector] {"stage_name":"metric_collector","events_processed":22259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4451.8,"last_update":"2026-03-21T17:29:49.069326041Z"} +2026/03/21 17:29:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8906,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:29:49.079192149Z"} +2026/03/21 17:29:54 [detection_layer] {"stage_name":"detection_layer","events_processed":738,"events_dropped":0,"avg_latency_ms":19.163630970582687,"throughput_eps":0,"last_update":"2026-03-21T17:29:49.210502018Z"} +2026/03/21 17:29:54 [transform_engine] {"stage_name":"transform_engine","events_processed":742,"events_dropped":0,"avg_latency_ms":537.1168074770706,"throughput_eps":0,"last_update":"2026-03-21T17:29:49.28637797Z"} +2026/03/21 17:29:54 ───────────────────────────────────────────────── +2026/03/21 17:29:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:29:59 [log_collector] {"stage_name":"log_collector","events_processed":36007,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7201.4,"last_update":"2026-03-21T17:29:54.069362017Z"} +2026/03/21 17:29:59 [metric_collector] {"stage_name":"metric_collector","events_processed":22264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4452.8,"last_update":"2026-03-21T17:29:54.070684861Z"} +2026/03/21 17:29:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8908,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:29:54.092644215Z"} +2026/03/21 17:29:59 [detection_layer] {"stage_name":"detection_layer","events_processed":739,"events_dropped":0,"avg_latency_ms":19.29551097646615,"throughput_eps":0,"last_update":"2026-03-21T17:29:54.209987911Z"} +2026/03/21 17:29:59 [transform_engine] {"stage_name":"transform_engine","events_processed":742,"events_dropped":0,"avg_latency_ms":537.1168074770706,"throughput_eps":0,"last_update":"2026-03-21T17:29:54.209995445Z"} +2026/03/21 17:29:59 ───────────────────────────────────────────────── +2026/03/21 17:30:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:30:04 [log_collector] {"stage_name":"log_collector","events_processed":36007,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7201.4,"last_update":"2026-03-21T17:29:59.069394667Z"} +2026/03/21 17:30:04 [metric_collector] {"stage_name":"metric_collector","events_processed":22269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4453.8,"last_update":"2026-03-21T17:29:59.069990448Z"} +2026/03/21 17:30:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:29:59.090722251Z"} +2026/03/21 17:30:04 [detection_layer] {"stage_name":"detection_layer","events_processed":739,"events_dropped":0,"avg_latency_ms":19.29551097646615,"throughput_eps":0,"last_update":"2026-03-21T17:29:59.209857739Z"} +2026/03/21 17:30:04 [transform_engine] {"stage_name":"transform_engine","events_processed":742,"events_dropped":0,"avg_latency_ms":537.1168074770706,"throughput_eps":0,"last_update":"2026-03-21T17:29:59.209795981Z"} +2026/03/21 17:30:04 ───────────────────────────────────────────────── +2026/03/21 17:30:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:30:09 [transform_engine] {"stage_name":"transform_engine","events_processed":742,"events_dropped":0,"avg_latency_ms":537.1168074770706,"throughput_eps":0,"last_update":"2026-03-21T17:30:04.210613754Z"} +2026/03/21 17:30:09 [log_collector] {"stage_name":"log_collector","events_processed":36007,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7201.4,"last_update":"2026-03-21T17:30:04.068334474Z"} +2026/03/21 17:30:09 [metric_collector] {"stage_name":"metric_collector","events_processed":22274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4454.8,"last_update":"2026-03-21T17:30:04.069032561Z"} +2026/03/21 17:30:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8912,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:30:04.095263688Z"} +2026/03/21 17:30:09 [detection_layer] {"stage_name":"detection_layer","events_processed":739,"events_dropped":0,"avg_latency_ms":19.29551097646615,"throughput_eps":0,"last_update":"2026-03-21T17:30:04.210610398Z"} +2026/03/21 17:30:09 ───────────────────────────────────────────────── +2026/03/21 17:30:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:30:14 [log_collector] {"stage_name":"log_collector","events_processed":36007,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7201.4,"last_update":"2026-03-21T17:30:09.069430801Z"} +2026/03/21 17:30:14 [metric_collector] {"stage_name":"metric_collector","events_processed":22279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4455.8,"last_update":"2026-03-21T17:30:09.070100203Z"} +2026/03/21 17:30:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8912,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:30:09.069438576Z"} +2026/03/21 17:30:14 [detection_layer] {"stage_name":"detection_layer","events_processed":739,"events_dropped":0,"avg_latency_ms":19.29551097646615,"throughput_eps":0,"last_update":"2026-03-21T17:30:09.210438887Z"} +2026/03/21 17:30:14 [transform_engine] {"stage_name":"transform_engine","events_processed":742,"events_dropped":0,"avg_latency_ms":537.1168074770706,"throughput_eps":0,"last_update":"2026-03-21T17:30:09.210491848Z"} +2026/03/21 17:30:14 ───────────────────────────────────────────────── +Saved state: 27 clusters, 36008 messages, reason: none +2026/03/21 17:30:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:30:19 [log_collector] {"stage_name":"log_collector","events_processed":36007,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7201.4,"last_update":"2026-03-21T17:30:14.068945999Z"} +2026/03/21 17:30:19 [metric_collector] {"stage_name":"metric_collector","events_processed":22284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4456.8,"last_update":"2026-03-21T17:30:14.069653525Z"} +2026/03/21 17:30:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:30:14.093745514Z"} +2026/03/21 17:30:19 [detection_layer] {"stage_name":"detection_layer","events_processed":739,"events_dropped":0,"avg_latency_ms":19.29551097646615,"throughput_eps":0,"last_update":"2026-03-21T17:30:14.210147105Z"} +2026/03/21 17:30:19 [transform_engine] {"stage_name":"transform_engine","events_processed":742,"events_dropped":0,"avg_latency_ms":537.1168074770706,"throughput_eps":0,"last_update":"2026-03-21T17:30:14.21007146Z"} +2026/03/21 17:30:19 ───────────────────────────────────────────────── +2026/03/21 17:30:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:30:24 [detection_layer] {"stage_name":"detection_layer","events_processed":739,"events_dropped":0,"avg_latency_ms":19.29551097646615,"throughput_eps":0,"last_update":"2026-03-21T17:30:19.210035779Z"} +2026/03/21 17:30:24 [transform_engine] {"stage_name":"transform_engine","events_processed":743,"events_dropped":0,"avg_latency_ms":647.9429821816565,"throughput_eps":0,"last_update":"2026-03-21T17:30:20.301736909Z"} +2026/03/21 17:30:24 [log_collector] {"stage_name":"log_collector","events_processed":36010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7202,"last_update":"2026-03-21T17:30:19.068896091Z"} +2026/03/21 17:30:24 [metric_collector] {"stage_name":"metric_collector","events_processed":22289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4457.8,"last_update":"2026-03-21T17:30:19.072814969Z"} +2026/03/21 17:30:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8918,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:30:19.204945058Z"} +2026/03/21 17:30:24 ───────────────────────────────────────────────── +2026/03/21 17:30:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:30:29 [detection_layer] {"stage_name":"detection_layer","events_processed":740,"events_dropped":0,"avg_latency_ms":18.977106981172923,"throughput_eps":0,"last_update":"2026-03-21T17:30:24.210154043Z"} +2026/03/21 17:30:29 [transform_engine] {"stage_name":"transform_engine","events_processed":743,"events_dropped":0,"avg_latency_ms":647.9429821816565,"throughput_eps":0,"last_update":"2026-03-21T17:30:24.21007907Z"} +2026/03/21 17:30:29 [log_collector] {"stage_name":"log_collector","events_processed":36021,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7204.2,"last_update":"2026-03-21T17:30:24.06961157Z"} +2026/03/21 17:30:29 [metric_collector] {"stage_name":"metric_collector","events_processed":22294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4458.8,"last_update":"2026-03-21T17:30:24.070503178Z"} +2026/03/21 17:30:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8920,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:30:24.085818234Z"} +2026/03/21 17:30:29 ───────────────────────────────────────────────── +2026/03/21 17:30:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:30:34 [transform_engine] {"stage_name":"transform_engine","events_processed":743,"events_dropped":0,"avg_latency_ms":647.9429821816565,"throughput_eps":0,"last_update":"2026-03-21T17:30:29.210333435Z"} +2026/03/21 17:30:34 [log_collector] {"stage_name":"log_collector","events_processed":36021,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7204.2,"last_update":"2026-03-21T17:30:29.068718287Z"} +2026/03/21 17:30:34 [metric_collector] {"stage_name":"metric_collector","events_processed":22299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4459.8,"last_update":"2026-03-21T17:30:29.069296103Z"} +2026/03/21 17:30:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:30:29.077049325Z"} +2026/03/21 17:30:34 [detection_layer] {"stage_name":"detection_layer","events_processed":740,"events_dropped":0,"avg_latency_ms":18.977106981172923,"throughput_eps":0,"last_update":"2026-03-21T17:30:29.210441632Z"} +2026/03/21 17:30:34 ───────────────────────────────────────────────── +2026/03/21 17:30:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:30:39 [detection_layer] {"stage_name":"detection_layer","events_processed":740,"events_dropped":0,"avg_latency_ms":18.977106981172923,"throughput_eps":0,"last_update":"2026-03-21T17:30:34.210217872Z"} +2026/03/21 17:30:39 [transform_engine] {"stage_name":"transform_engine","events_processed":743,"events_dropped":0,"avg_latency_ms":647.9429821816565,"throughput_eps":0,"last_update":"2026-03-21T17:30:34.210317102Z"} +2026/03/21 17:30:39 [log_collector] {"stage_name":"log_collector","events_processed":36021,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7204.2,"last_update":"2026-03-21T17:30:34.069013371Z"} +2026/03/21 17:30:39 [metric_collector] {"stage_name":"metric_collector","events_processed":22304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4460.8,"last_update":"2026-03-21T17:30:34.069546432Z"} +2026/03/21 17:30:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:30:34.078976735Z"} +2026/03/21 17:30:39 ───────────────────────────────────────────────── +2026/03/21 17:30:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:30:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:30:39.078165099Z"} +2026/03/21 17:30:44 [detection_layer] {"stage_name":"detection_layer","events_processed":740,"events_dropped":0,"avg_latency_ms":18.977106981172923,"throughput_eps":0,"last_update":"2026-03-21T17:30:39.21041643Z"} +2026/03/21 17:30:44 [transform_engine] {"stage_name":"transform_engine","events_processed":743,"events_dropped":0,"avg_latency_ms":647.9429821816565,"throughput_eps":0,"last_update":"2026-03-21T17:30:39.210470924Z"} +2026/03/21 17:30:44 [log_collector] {"stage_name":"log_collector","events_processed":36021,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7204.2,"last_update":"2026-03-21T17:30:39.068185181Z"} +2026/03/21 17:30:44 [metric_collector] {"stage_name":"metric_collector","events_processed":22309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4461.8,"last_update":"2026-03-21T17:30:39.068600637Z"} +2026/03/21 17:30:44 ───────────────────────────────────────────────── +2026/03/21 17:30:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:30:49 [metric_collector] {"stage_name":"metric_collector","events_processed":22314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4462.8,"last_update":"2026-03-21T17:30:44.069379529Z"} +2026/03/21 17:30:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:30:44.0788186Z"} +2026/03/21 17:30:49 [detection_layer] {"stage_name":"detection_layer","events_processed":740,"events_dropped":0,"avg_latency_ms":18.977106981172923,"throughput_eps":0,"last_update":"2026-03-21T17:30:44.209889491Z"} +2026/03/21 17:30:49 [transform_engine] {"stage_name":"transform_engine","events_processed":743,"events_dropped":0,"avg_latency_ms":647.9429821816565,"throughput_eps":0,"last_update":"2026-03-21T17:30:44.209742799Z"} +2026/03/21 17:30:49 [log_collector] {"stage_name":"log_collector","events_processed":36021,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7204.2,"last_update":"2026-03-21T17:30:44.068869923Z"} +2026/03/21 17:30:49 ───────────────────────────────────────────────── +2026/03/21 17:30:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:30:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8930,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:30:49.075128471Z"} +2026/03/21 17:30:54 [detection_layer] {"stage_name":"detection_layer","events_processed":740,"events_dropped":0,"avg_latency_ms":18.977106981172923,"throughput_eps":0,"last_update":"2026-03-21T17:30:49.210486464Z"} +2026/03/21 17:30:54 [transform_engine] {"stage_name":"transform_engine","events_processed":744,"events_dropped":0,"avg_latency_ms":544.3068203453251,"throughput_eps":0,"last_update":"2026-03-21T17:30:49.34028106Z"} +2026/03/21 17:30:54 [log_collector] {"stage_name":"log_collector","events_processed":36021,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7204.2,"last_update":"2026-03-21T17:30:49.068665771Z"} +2026/03/21 17:30:54 [metric_collector] {"stage_name":"metric_collector","events_processed":22319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4463.8,"last_update":"2026-03-21T17:30:49.069059986Z"} +2026/03/21 17:30:54 ───────────────────────────────────────────────── +2026/03/21 17:30:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:30:59 [transform_engine] {"stage_name":"transform_engine","events_processed":744,"events_dropped":0,"avg_latency_ms":544.3068203453251,"throughput_eps":0,"last_update":"2026-03-21T17:30:54.209778115Z"} +2026/03/21 17:30:59 [log_collector] {"stage_name":"log_collector","events_processed":36021,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7204.2,"last_update":"2026-03-21T17:30:54.068922191Z"} +2026/03/21 17:30:59 [metric_collector] {"stage_name":"metric_collector","events_processed":22324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4464.8,"last_update":"2026-03-21T17:30:54.069439532Z"} +2026/03/21 17:30:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:30:54.077649649Z"} +2026/03/21 17:30:59 [detection_layer] {"stage_name":"detection_layer","events_processed":741,"events_dropped":0,"avg_latency_ms":18.38959038493834,"throughput_eps":0,"last_update":"2026-03-21T17:30:54.210919461Z"} +2026/03/21 17:30:59 ───────────────────────────────────────────────── +2026/03/21 17:31:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:31:04 [metric_collector] {"stage_name":"metric_collector","events_processed":22329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4465.8,"last_update":"2026-03-21T17:30:59.069047469Z"} +2026/03/21 17:31:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:30:59.078898259Z"} +2026/03/21 17:31:04 [detection_layer] {"stage_name":"detection_layer","events_processed":741,"events_dropped":0,"avg_latency_ms":18.38959038493834,"throughput_eps":0,"last_update":"2026-03-21T17:30:59.210106462Z"} +2026/03/21 17:31:04 [transform_engine] {"stage_name":"transform_engine","events_processed":744,"events_dropped":0,"avg_latency_ms":544.3068203453251,"throughput_eps":0,"last_update":"2026-03-21T17:30:59.21012057Z"} +2026/03/21 17:31:04 [log_collector] {"stage_name":"log_collector","events_processed":36021,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7204.2,"last_update":"2026-03-21T17:30:59.068677731Z"} +2026/03/21 17:31:04 ───────────────────────────────────────────────── +2026/03/21 17:31:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:31:09 [log_collector] {"stage_name":"log_collector","events_processed":36021,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7204.2,"last_update":"2026-03-21T17:31:04.068586317Z"} +2026/03/21 17:31:09 [metric_collector] {"stage_name":"metric_collector","events_processed":22334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4466.8,"last_update":"2026-03-21T17:31:04.06902706Z"} +2026/03/21 17:31:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:31:04.077534978Z"} +2026/03/21 17:31:09 [detection_layer] {"stage_name":"detection_layer","events_processed":741,"events_dropped":0,"avg_latency_ms":18.38959038493834,"throughput_eps":0,"last_update":"2026-03-21T17:31:04.210824589Z"} +2026/03/21 17:31:09 [transform_engine] {"stage_name":"transform_engine","events_processed":744,"events_dropped":0,"avg_latency_ms":544.3068203453251,"throughput_eps":0,"last_update":"2026-03-21T17:31:04.209700676Z"} +2026/03/21 17:31:09 ───────────────────────────────────────────────── +2026/03/21 17:31:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:31:14 [detection_layer] {"stage_name":"detection_layer","events_processed":741,"events_dropped":0,"avg_latency_ms":18.38959038493834,"throughput_eps":0,"last_update":"2026-03-21T17:31:09.21040205Z"} +2026/03/21 17:31:14 [transform_engine] {"stage_name":"transform_engine","events_processed":744,"events_dropped":0,"avg_latency_ms":544.3068203453251,"throughput_eps":0,"last_update":"2026-03-21T17:31:09.210387712Z"} +2026/03/21 17:31:14 [log_collector] {"stage_name":"log_collector","events_processed":36021,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7204.2,"last_update":"2026-03-21T17:31:09.068747886Z"} +2026/03/21 17:31:14 [metric_collector] {"stage_name":"metric_collector","events_processed":22339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4467.8,"last_update":"2026-03-21T17:31:09.068726084Z"} +2026/03/21 17:31:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:31:09.078101313Z"} +2026/03/21 17:31:14 ───────────────────────────────────────────────── +2026/03/21 17:31:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:31:19 [log_collector] {"stage_name":"log_collector","events_processed":36021,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7204.2,"last_update":"2026-03-21T17:31:14.068851924Z"} +2026/03/21 17:31:19 [metric_collector] {"stage_name":"metric_collector","events_processed":22344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4468.8,"last_update":"2026-03-21T17:31:14.069003565Z"} +2026/03/21 17:31:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8940,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:31:14.078406106Z"} +2026/03/21 17:31:19 [detection_layer] {"stage_name":"detection_layer","events_processed":741,"events_dropped":0,"avg_latency_ms":18.38959038493834,"throughput_eps":0,"last_update":"2026-03-21T17:31:14.210794801Z"} +2026/03/21 17:31:19 [transform_engine] {"stage_name":"transform_engine","events_processed":744,"events_dropped":0,"avg_latency_ms":544.3068203453251,"throughput_eps":0,"last_update":"2026-03-21T17:31:14.209646982Z"} +2026/03/21 17:31:19 ───────────────────────────────────────────────── +Saved state: 27 clusters, 36022 messages, reason: none +2026/03/21 17:31:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:31:24 [log_collector] {"stage_name":"log_collector","events_processed":36021,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7204.2,"last_update":"2026-03-21T17:31:19.068860891Z"} +2026/03/21 17:31:24 [metric_collector] {"stage_name":"metric_collector","events_processed":22349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4469.8,"last_update":"2026-03-21T17:31:19.069095931Z"} +2026/03/21 17:31:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:31:19.077717436Z"} +2026/03/21 17:31:24 [detection_layer] {"stage_name":"detection_layer","events_processed":741,"events_dropped":0,"avg_latency_ms":18.38959038493834,"throughput_eps":0,"last_update":"2026-03-21T17:31:19.209959821Z"} +2026/03/21 17:31:24 [transform_engine] {"stage_name":"transform_engine","events_processed":745,"events_dropped":0,"avg_latency_ms":449.90421467626015,"throughput_eps":0,"last_update":"2026-03-21T17:31:19.282226821Z"} +2026/03/21 17:31:24 ───────────────────────────────────────────────── +2026/03/21 17:31:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:31:29 [log_collector] {"stage_name":"log_collector","events_processed":36026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7205.2,"last_update":"2026-03-21T17:31:24.068225795Z"} +2026/03/21 17:31:29 [metric_collector] {"stage_name":"metric_collector","events_processed":22354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4470.8,"last_update":"2026-03-21T17:31:24.06884968Z"} +2026/03/21 17:31:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:31:24.096097414Z"} +2026/03/21 17:31:29 [detection_layer] {"stage_name":"detection_layer","events_processed":742,"events_dropped":0,"avg_latency_ms":18.453514107950674,"throughput_eps":0,"last_update":"2026-03-21T17:31:24.210374656Z"} +2026/03/21 17:31:29 [transform_engine] {"stage_name":"transform_engine","events_processed":745,"events_dropped":0,"avg_latency_ms":449.90421467626015,"throughput_eps":0,"last_update":"2026-03-21T17:31:24.21024122Z"} +2026/03/21 17:31:29 ───────────────────────────────────────────────── +2026/03/21 17:31:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:31:34 [transform_engine] {"stage_name":"transform_engine","events_processed":745,"events_dropped":0,"avg_latency_ms":449.90421467626015,"throughput_eps":0,"last_update":"2026-03-21T17:31:29.210017432Z"} +2026/03/21 17:31:34 [log_collector] {"stage_name":"log_collector","events_processed":36026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7205.2,"last_update":"2026-03-21T17:31:29.068770569Z"} +2026/03/21 17:31:34 [metric_collector] {"stage_name":"metric_collector","events_processed":22359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4471.8,"last_update":"2026-03-21T17:31:29.069489376Z"} +2026/03/21 17:31:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:31:29.134838855Z"} +2026/03/21 17:31:34 [detection_layer] {"stage_name":"detection_layer","events_processed":742,"events_dropped":0,"avg_latency_ms":18.453514107950674,"throughput_eps":0,"last_update":"2026-03-21T17:31:29.20999047Z"} +2026/03/21 17:31:34 ───────────────────────────────────────────────── +2026/03/21 17:31:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:31:39 [log_collector] {"stage_name":"log_collector","events_processed":36026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7205.2,"last_update":"2026-03-21T17:31:34.068454343Z"} +2026/03/21 17:31:39 [metric_collector] {"stage_name":"metric_collector","events_processed":22364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4472.8,"last_update":"2026-03-21T17:31:34.069139576Z"} +2026/03/21 17:31:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:31:34.095278485Z"} +2026/03/21 17:31:39 [detection_layer] {"stage_name":"detection_layer","events_processed":742,"events_dropped":0,"avg_latency_ms":18.453514107950674,"throughput_eps":0,"last_update":"2026-03-21T17:31:34.211145253Z"} +2026/03/21 17:31:39 [transform_engine] {"stage_name":"transform_engine","events_processed":745,"events_dropped":0,"avg_latency_ms":449.90421467626015,"throughput_eps":0,"last_update":"2026-03-21T17:31:34.210970167Z"} +2026/03/21 17:31:39 ───────────────────────────────────────────────── +2026/03/21 17:31:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:31:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:31:39.110922854Z"} +2026/03/21 17:31:44 [detection_layer] {"stage_name":"detection_layer","events_processed":742,"events_dropped":0,"avg_latency_ms":18.453514107950674,"throughput_eps":0,"last_update":"2026-03-21T17:31:39.213671041Z"} +2026/03/21 17:31:44 [transform_engine] {"stage_name":"transform_engine","events_processed":745,"events_dropped":0,"avg_latency_ms":449.90421467626015,"throughput_eps":0,"last_update":"2026-03-21T17:31:39.211830355Z"} +2026/03/21 17:31:44 [log_collector] {"stage_name":"log_collector","events_processed":36026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7205.2,"last_update":"2026-03-21T17:31:39.068958039Z"} +2026/03/21 17:31:44 [metric_collector] {"stage_name":"metric_collector","events_processed":22369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4473.8,"last_update":"2026-03-21T17:31:39.069614155Z"} +2026/03/21 17:31:44 ───────────────────────────────────────────────── +2026/03/21 17:31:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:31:49 [detection_layer] {"stage_name":"detection_layer","events_processed":742,"events_dropped":0,"avg_latency_ms":18.453514107950674,"throughput_eps":0,"last_update":"2026-03-21T17:31:44.210378134Z"} +2026/03/21 17:31:49 [transform_engine] {"stage_name":"transform_engine","events_processed":745,"events_dropped":0,"avg_latency_ms":449.90421467626015,"throughput_eps":0,"last_update":"2026-03-21T17:31:44.210994164Z"} +2026/03/21 17:31:49 [log_collector] {"stage_name":"log_collector","events_processed":36026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7205.2,"last_update":"2026-03-21T17:31:44.106191381Z"} +2026/03/21 17:31:49 [metric_collector] {"stage_name":"metric_collector","events_processed":22374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4474.8,"last_update":"2026-03-21T17:31:44.106770279Z"} +2026/03/21 17:31:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:31:44.142225996Z"} +2026/03/21 17:31:49 ───────────────────────────────────────────────── +2026/03/21 17:31:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:31:54 [detection_layer] {"stage_name":"detection_layer","events_processed":742,"events_dropped":0,"avg_latency_ms":18.453514107950674,"throughput_eps":0,"last_update":"2026-03-21T17:31:49.210819531Z"} +2026/03/21 17:31:54 [transform_engine] {"stage_name":"transform_engine","events_processed":746,"events_dropped":0,"avg_latency_ms":446.0712969410082,"throughput_eps":0,"last_update":"2026-03-21T17:31:49.640534534Z"} +2026/03/21 17:31:54 [log_collector] {"stage_name":"log_collector","events_processed":36026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7205.2,"last_update":"2026-03-21T17:31:49.070642867Z"} +2026/03/21 17:31:54 [metric_collector] {"stage_name":"metric_collector","events_processed":22379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4475.8,"last_update":"2026-03-21T17:31:49.071423753Z"} +2026/03/21 17:31:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:31:49.102580074Z"} +2026/03/21 17:31:54 ───────────────────────────────────────────────── +2026/03/21 17:31:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:31:59 [metric_collector] {"stage_name":"metric_collector","events_processed":22384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4476.8,"last_update":"2026-03-21T17:31:54.068831909Z"} +2026/03/21 17:31:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:31:54.089689623Z"} +2026/03/21 17:31:59 [detection_layer] {"stage_name":"detection_layer","events_processed":743,"events_dropped":0,"avg_latency_ms":19.869946086360542,"throughput_eps":0,"last_update":"2026-03-21T17:31:54.209945257Z"} +2026/03/21 17:31:59 [transform_engine] {"stage_name":"transform_engine","events_processed":746,"events_dropped":0,"avg_latency_ms":446.0712969410082,"throughput_eps":0,"last_update":"2026-03-21T17:31:54.209956529Z"} +2026/03/21 17:31:59 [log_collector] {"stage_name":"log_collector","events_processed":36026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7205.2,"last_update":"2026-03-21T17:31:54.068297125Z"} +2026/03/21 17:31:59 ───────────────────────────────────────────────── +2026/03/21 17:32:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:32:04 [log_collector] {"stage_name":"log_collector","events_processed":36026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7205.2,"last_update":"2026-03-21T17:31:59.06859645Z"} +2026/03/21 17:32:04 [metric_collector] {"stage_name":"metric_collector","events_processed":22389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4477.8,"last_update":"2026-03-21T17:31:59.068933787Z"} +2026/03/21 17:32:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8958,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:31:59.077565771Z"} +2026/03/21 17:32:04 [detection_layer] {"stage_name":"detection_layer","events_processed":743,"events_dropped":0,"avg_latency_ms":19.869946086360542,"throughput_eps":0,"last_update":"2026-03-21T17:31:59.210812881Z"} +2026/03/21 17:32:04 [transform_engine] {"stage_name":"transform_engine","events_processed":746,"events_dropped":0,"avg_latency_ms":446.0712969410082,"throughput_eps":0,"last_update":"2026-03-21T17:31:59.209717002Z"} +2026/03/21 17:32:04 ───────────────────────────────────────────────── +2026/03/21 17:32:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:32:09 [log_collector] {"stage_name":"log_collector","events_processed":36029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7205.8,"last_update":"2026-03-21T17:32:04.06851716Z"} +2026/03/21 17:32:09 [metric_collector] {"stage_name":"metric_collector","events_processed":22393,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4478.6,"last_update":"2026-03-21T17:32:04.068505759Z"} +2026/03/21 17:32:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:32:04.074794184Z"} +2026/03/21 17:32:09 [detection_layer] {"stage_name":"detection_layer","events_processed":743,"events_dropped":0,"avg_latency_ms":19.869946086360542,"throughput_eps":0,"last_update":"2026-03-21T17:32:04.210003211Z"} +2026/03/21 17:32:09 [transform_engine] {"stage_name":"transform_engine","events_processed":746,"events_dropped":0,"avg_latency_ms":446.0712969410082,"throughput_eps":0,"last_update":"2026-03-21T17:32:04.210014924Z"} +2026/03/21 17:32:09 ───────────────────────────────────────────────── +2026/03/21 17:32:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:32:14 [transform_engine] {"stage_name":"transform_engine","events_processed":746,"events_dropped":0,"avg_latency_ms":446.0712969410082,"throughput_eps":0,"last_update":"2026-03-21T17:32:09.210589346Z"} +2026/03/21 17:32:14 [log_collector] {"stage_name":"log_collector","events_processed":36037,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7207.4,"last_update":"2026-03-21T17:32:14.068265551Z"} +2026/03/21 17:32:14 [metric_collector] {"stage_name":"metric_collector","events_processed":22399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4479.8,"last_update":"2026-03-21T17:32:09.068997913Z"} +2026/03/21 17:32:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8962,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:32:09.078167458Z"} +2026/03/21 17:32:14 [detection_layer] {"stage_name":"detection_layer","events_processed":743,"events_dropped":0,"avg_latency_ms":19.869946086360542,"throughput_eps":0,"last_update":"2026-03-21T17:32:09.210572794Z"} +2026/03/21 17:32:14 ───────────────────────────────────────────────── +2026/03/21 17:32:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:32:19 [log_collector] {"stage_name":"log_collector","events_processed":36037,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7207.4,"last_update":"2026-03-21T17:32:14.068265551Z"} +2026/03/21 17:32:19 [metric_collector] {"stage_name":"metric_collector","events_processed":22404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4480.8,"last_update":"2026-03-21T17:32:14.068709121Z"} +2026/03/21 17:32:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:32:14.075226325Z"} +2026/03/21 17:32:19 [detection_layer] {"stage_name":"detection_layer","events_processed":743,"events_dropped":0,"avg_latency_ms":19.869946086360542,"throughput_eps":0,"last_update":"2026-03-21T17:32:14.210546155Z"} +2026/03/21 17:32:19 [transform_engine] {"stage_name":"transform_engine","events_processed":746,"events_dropped":0,"avg_latency_ms":446.0712969410082,"throughput_eps":0,"last_update":"2026-03-21T17:32:14.210555412Z"} +2026/03/21 17:32:19 ───────────────────────────────────────────────── +2026/03/21 17:32:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:32:24 [detection_layer] {"stage_name":"detection_layer","events_processed":743,"events_dropped":0,"avg_latency_ms":19.869946086360542,"throughput_eps":0,"last_update":"2026-03-21T17:32:19.210045777Z"} +2026/03/21 17:32:24 [transform_engine] {"stage_name":"transform_engine","events_processed":747,"events_dropped":0,"avg_latency_ms":393.5112859528066,"throughput_eps":0,"last_update":"2026-03-21T17:32:19.393330845Z"} +2026/03/21 17:32:24 [log_collector] {"stage_name":"log_collector","events_processed":36260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7252,"last_update":"2026-03-21T17:32:19.068437812Z"} +2026/03/21 17:32:24 [metric_collector] {"stage_name":"metric_collector","events_processed":22409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4481.8,"last_update":"2026-03-21T17:32:19.068649277Z"} +2026/03/21 17:32:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:32:19.080675965Z"} +2026/03/21 17:32:24 ───────────────────────────────────────────────── +Saved state: 27 clusters, 36348 messages, reason: none +2026/03/21 17:32:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:32:29 [detection_layer] {"stage_name":"detection_layer","events_processed":744,"events_dropped":0,"avg_latency_ms":19.047111069088434,"throughput_eps":0,"last_update":"2026-03-21T17:32:24.210379216Z"} +2026/03/21 17:32:29 [transform_engine] {"stage_name":"transform_engine","events_processed":747,"events_dropped":0,"avg_latency_ms":393.5112859528066,"throughput_eps":0,"last_update":"2026-03-21T17:32:24.210387833Z"} +2026/03/21 17:32:29 [log_collector] {"stage_name":"log_collector","events_processed":36347,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7269.4,"last_update":"2026-03-21T17:32:24.06877016Z"} +2026/03/21 17:32:29 [metric_collector] {"stage_name":"metric_collector","events_processed":22414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4482.8,"last_update":"2026-03-21T17:32:24.069188071Z"} +2026/03/21 17:32:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:32:24.079095138Z"} +2026/03/21 17:32:29 ───────────────────────────────────────────────── +2026/03/21 17:32:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:32:34 [log_collector] {"stage_name":"log_collector","events_processed":36389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7277.8,"last_update":"2026-03-21T17:32:29.068695437Z"} +2026/03/21 17:32:34 [metric_collector] {"stage_name":"metric_collector","events_processed":22419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4483.8,"last_update":"2026-03-21T17:32:29.069132664Z"} +2026/03/21 17:32:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8970,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:32:29.078721492Z"} +2026/03/21 17:32:34 [detection_layer] {"stage_name":"detection_layer","events_processed":744,"events_dropped":0,"avg_latency_ms":19.047111069088434,"throughput_eps":0,"last_update":"2026-03-21T17:32:29.209945957Z"} +2026/03/21 17:32:34 [transform_engine] {"stage_name":"transform_engine","events_processed":747,"events_dropped":0,"avg_latency_ms":393.5112859528066,"throughput_eps":0,"last_update":"2026-03-21T17:32:29.209961257Z"} +2026/03/21 17:32:34 ───────────────────────────────────────────────── +2026/03/21 17:32:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:32:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:32:34.077877298Z"} +2026/03/21 17:32:39 [detection_layer] {"stage_name":"detection_layer","events_processed":744,"events_dropped":0,"avg_latency_ms":19.047111069088434,"throughput_eps":0,"last_update":"2026-03-21T17:32:34.210099845Z"} +2026/03/21 17:32:39 [transform_engine] {"stage_name":"transform_engine","events_processed":747,"events_dropped":0,"avg_latency_ms":393.5112859528066,"throughput_eps":0,"last_update":"2026-03-21T17:32:34.210108952Z"} +2026/03/21 17:32:39 [log_collector] {"stage_name":"log_collector","events_processed":36389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7277.8,"last_update":"2026-03-21T17:32:34.068438638Z"} +2026/03/21 17:32:39 [metric_collector] {"stage_name":"metric_collector","events_processed":22424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4484.8,"last_update":"2026-03-21T17:32:34.068825539Z"} +2026/03/21 17:32:39 ───────────────────────────────────────────────── +2026/03/21 17:32:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:32:44 [transform_engine] {"stage_name":"transform_engine","events_processed":747,"events_dropped":0,"avg_latency_ms":393.5112859528066,"throughput_eps":0,"last_update":"2026-03-21T17:32:39.210672174Z"} +2026/03/21 17:32:44 [log_collector] {"stage_name":"log_collector","events_processed":36392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7278.4,"last_update":"2026-03-21T17:32:39.068168944Z"} +2026/03/21 17:32:44 [metric_collector] {"stage_name":"metric_collector","events_processed":22429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4485.8,"last_update":"2026-03-21T17:32:39.06865725Z"} +2026/03/21 17:32:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:32:39.079377785Z"} +2026/03/21 17:32:44 [detection_layer] {"stage_name":"detection_layer","events_processed":744,"events_dropped":0,"avg_latency_ms":19.047111069088434,"throughput_eps":0,"last_update":"2026-03-21T17:32:39.210660812Z"} +2026/03/21 17:32:44 ───────────────────────────────────────────────── +2026/03/21 17:32:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:32:49 [log_collector] {"stage_name":"log_collector","events_processed":36392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7278.4,"last_update":"2026-03-21T17:32:44.071364509Z"} +2026/03/21 17:32:49 [metric_collector] {"stage_name":"metric_collector","events_processed":22433,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4486.6,"last_update":"2026-03-21T17:32:44.071368566Z"} +2026/03/21 17:32:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:32:44.079000696Z"} +2026/03/21 17:32:49 [detection_layer] {"stage_name":"detection_layer","events_processed":744,"events_dropped":0,"avg_latency_ms":19.047111069088434,"throughput_eps":0,"last_update":"2026-03-21T17:32:44.210226954Z"} +2026/03/21 17:32:49 [transform_engine] {"stage_name":"transform_engine","events_processed":747,"events_dropped":0,"avg_latency_ms":393.5112859528066,"throughput_eps":0,"last_update":"2026-03-21T17:32:44.210302809Z"} +2026/03/21 17:32:49 ───────────────────────────────────────────────── +2026/03/21 17:32:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:32:54 [log_collector] {"stage_name":"log_collector","events_processed":36402,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7280.4,"last_update":"2026-03-21T17:32:49.068112001Z"} +2026/03/21 17:32:54 [metric_collector] {"stage_name":"metric_collector","events_processed":22439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4487.8,"last_update":"2026-03-21T17:32:49.068613932Z"} +2026/03/21 17:32:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:32:49.075554778Z"} +2026/03/21 17:32:54 [detection_layer] {"stage_name":"detection_layer","events_processed":744,"events_dropped":0,"avg_latency_ms":19.047111069088434,"throughput_eps":0,"last_update":"2026-03-21T17:32:49.210485171Z"} +2026/03/21 17:32:54 [transform_engine] {"stage_name":"transform_engine","events_processed":748,"events_dropped":0,"avg_latency_ms":467.84179216224527,"throughput_eps":0,"last_update":"2026-03-21T17:32:49.974983715Z"} +2026/03/21 17:32:54 ───────────────────────────────────────────────── +2026/03/21 17:32:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:32:59 [transform_engine] {"stage_name":"transform_engine","events_processed":748,"events_dropped":0,"avg_latency_ms":467.84179216224527,"throughput_eps":0,"last_update":"2026-03-21T17:32:54.212086171Z"} +2026/03/21 17:32:59 [log_collector] {"stage_name":"log_collector","events_processed":36412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7282.4,"last_update":"2026-03-21T17:32:54.069000435Z"} +2026/03/21 17:32:59 [metric_collector] {"stage_name":"metric_collector","events_processed":22444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4488.8,"last_update":"2026-03-21T17:32:54.069432574Z"} +2026/03/21 17:32:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:32:54.094442Z"} +2026/03/21 17:32:59 [detection_layer] {"stage_name":"detection_layer","events_processed":745,"events_dropped":0,"avg_latency_ms":18.77317725527075,"throughput_eps":0,"last_update":"2026-03-21T17:32:54.212207463Z"} +2026/03/21 17:32:59 ───────────────────────────────────────────────── +2026/03/21 17:33:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:33:04 [log_collector] {"stage_name":"log_collector","events_processed":36419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7283.8,"last_update":"2026-03-21T17:32:59.069206654Z"} +2026/03/21 17:33:04 [metric_collector] {"stage_name":"metric_collector","events_processed":22449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4489.8,"last_update":"2026-03-21T17:32:59.07030149Z"} +2026/03/21 17:33:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:32:59.092827069Z"} +2026/03/21 17:33:04 [detection_layer] {"stage_name":"detection_layer","events_processed":745,"events_dropped":0,"avg_latency_ms":18.77317725527075,"throughput_eps":0,"last_update":"2026-03-21T17:32:59.21011071Z"} +2026/03/21 17:33:04 [transform_engine] {"stage_name":"transform_engine","events_processed":748,"events_dropped":0,"avg_latency_ms":467.84179216224527,"throughput_eps":0,"last_update":"2026-03-21T17:32:59.210062237Z"} +2026/03/21 17:33:04 ───────────────────────────────────────────────── +2026/03/21 17:33:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:33:09 [transform_engine] {"stage_name":"transform_engine","events_processed":748,"events_dropped":0,"avg_latency_ms":467.84179216224527,"throughput_eps":0,"last_update":"2026-03-21T17:33:04.210469709Z"} +2026/03/21 17:33:09 [log_collector] {"stage_name":"log_collector","events_processed":36419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7283.8,"last_update":"2026-03-21T17:33:04.082962375Z"} +2026/03/21 17:33:09 [metric_collector] {"stage_name":"metric_collector","events_processed":22454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4490.8,"last_update":"2026-03-21T17:33:04.083599075Z"} +2026/03/21 17:33:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:33:04.106232509Z"} +2026/03/21 17:33:09 [detection_layer] {"stage_name":"detection_layer","events_processed":745,"events_dropped":0,"avg_latency_ms":18.77317725527075,"throughput_eps":0,"last_update":"2026-03-21T17:33:04.210493174Z"} +2026/03/21 17:33:09 ───────────────────────────────────────────────── +2026/03/21 17:33:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:33:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:33:09.094423924Z"} +2026/03/21 17:33:14 [detection_layer] {"stage_name":"detection_layer","events_processed":745,"events_dropped":0,"avg_latency_ms":18.77317725527075,"throughput_eps":0,"last_update":"2026-03-21T17:33:09.21061975Z"} +2026/03/21 17:33:14 [transform_engine] {"stage_name":"transform_engine","events_processed":748,"events_dropped":0,"avg_latency_ms":467.84179216224527,"throughput_eps":0,"last_update":"2026-03-21T17:33:09.210601776Z"} +2026/03/21 17:33:14 [log_collector] {"stage_name":"log_collector","events_processed":36419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7283.8,"last_update":"2026-03-21T17:33:14.07650921Z"} +2026/03/21 17:33:14 [metric_collector] {"stage_name":"metric_collector","events_processed":22459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4491.8,"last_update":"2026-03-21T17:33:09.07217777Z"} +2026/03/21 17:33:14 ───────────────────────────────────────────────── +2026/03/21 17:33:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:33:19 [transform_engine] {"stage_name":"transform_engine","events_processed":748,"events_dropped":0,"avg_latency_ms":467.84179216224527,"throughput_eps":0,"last_update":"2026-03-21T17:33:14.210324608Z"} +2026/03/21 17:33:19 [log_collector] {"stage_name":"log_collector","events_processed":36419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7283.8,"last_update":"2026-03-21T17:33:14.07650921Z"} +2026/03/21 17:33:19 [metric_collector] {"stage_name":"metric_collector","events_processed":22464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4492.8,"last_update":"2026-03-21T17:33:14.077142033Z"} +2026/03/21 17:33:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:33:14.097037202Z"} +2026/03/21 17:33:19 [detection_layer] {"stage_name":"detection_layer","events_processed":745,"events_dropped":0,"avg_latency_ms":18.77317725527075,"throughput_eps":0,"last_update":"2026-03-21T17:33:14.210392778Z"} +2026/03/21 17:33:19 ───────────────────────────────────────────────── +2026/03/21 17:33:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:33:24 [log_collector] {"stage_name":"log_collector","events_processed":36419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7283.8,"last_update":"2026-03-21T17:33:19.068836947Z"} +2026/03/21 17:33:24 [metric_collector] {"stage_name":"metric_collector","events_processed":22469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4493.8,"last_update":"2026-03-21T17:33:19.069500668Z"} +2026/03/21 17:33:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8990,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:33:19.091745399Z"} +2026/03/21 17:33:24 [detection_layer] {"stage_name":"detection_layer","events_processed":745,"events_dropped":0,"avg_latency_ms":18.77317725527075,"throughput_eps":0,"last_update":"2026-03-21T17:33:19.210674301Z"} +2026/03/21 17:33:24 [transform_engine] {"stage_name":"transform_engine","events_processed":749,"events_dropped":0,"avg_latency_ms":403.41634992979624,"throughput_eps":0,"last_update":"2026-03-21T17:33:19.356202455Z"} +2026/03/21 17:33:24 ───────────────────────────────────────────────── +2026/03/21 17:33:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:33:29 [log_collector] {"stage_name":"log_collector","events_processed":36419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7283.8,"last_update":"2026-03-21T17:33:24.068970005Z"} +2026/03/21 17:33:29 [metric_collector] {"stage_name":"metric_collector","events_processed":22474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4494.8,"last_update":"2026-03-21T17:33:24.070155425Z"} +2026/03/21 17:33:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8992,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:33:24.089146283Z"} +2026/03/21 17:33:29 [detection_layer] {"stage_name":"detection_layer","events_processed":746,"events_dropped":0,"avg_latency_ms":18.0724816042166,"throughput_eps":0,"last_update":"2026-03-21T17:33:24.210601935Z"} +2026/03/21 17:33:29 [transform_engine] {"stage_name":"transform_engine","events_processed":749,"events_dropped":0,"avg_latency_ms":403.41634992979624,"throughput_eps":0,"last_update":"2026-03-21T17:33:24.210504118Z"} +2026/03/21 17:33:29 ───────────────────────────────────────────────── +2026/03/21 17:33:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:33:34 [log_collector] {"stage_name":"log_collector","events_processed":36419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7283.8,"last_update":"2026-03-21T17:33:29.068626258Z"} +2026/03/21 17:33:34 [metric_collector] {"stage_name":"metric_collector","events_processed":22479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4495.8,"last_update":"2026-03-21T17:33:29.068922054Z"} +2026/03/21 17:33:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:33:29.078427442Z"} +2026/03/21 17:33:34 [detection_layer] {"stage_name":"detection_layer","events_processed":746,"events_dropped":0,"avg_latency_ms":18.0724816042166,"throughput_eps":0,"last_update":"2026-03-21T17:33:29.210797352Z"} +2026/03/21 17:33:34 [transform_engine] {"stage_name":"transform_engine","events_processed":749,"events_dropped":0,"avg_latency_ms":403.41634992979624,"throughput_eps":0,"last_update":"2026-03-21T17:33:29.20963763Z"} +2026/03/21 17:33:34 ───────────────────────────────────────────────── +2026/03/21 17:33:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:33:39 [detection_layer] {"stage_name":"detection_layer","events_processed":746,"events_dropped":0,"avg_latency_ms":18.0724816042166,"throughput_eps":0,"last_update":"2026-03-21T17:33:34.210218082Z"} +2026/03/21 17:33:39 [transform_engine] {"stage_name":"transform_engine","events_processed":749,"events_dropped":0,"avg_latency_ms":403.41634992979624,"throughput_eps":0,"last_update":"2026-03-21T17:33:34.210307394Z"} +2026/03/21 17:33:39 [log_collector] {"stage_name":"log_collector","events_processed":36419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7283.8,"last_update":"2026-03-21T17:33:39.068172953Z"} +2026/03/21 17:33:39 [metric_collector] {"stage_name":"metric_collector","events_processed":22484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4496.8,"last_update":"2026-03-21T17:33:34.069298726Z"} +2026/03/21 17:33:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8996,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:33:34.07782578Z"} +2026/03/21 17:33:39 ───────────────────────────────────────────────── +2026/03/21 17:33:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:33:44 [log_collector] {"stage_name":"log_collector","events_processed":36419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7283.8,"last_update":"2026-03-21T17:33:39.068172953Z"} +2026/03/21 17:33:44 [metric_collector] {"stage_name":"metric_collector","events_processed":22489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4497.8,"last_update":"2026-03-21T17:33:39.068608658Z"} +2026/03/21 17:33:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:33:39.077557589Z"} +2026/03/21 17:33:44 [detection_layer] {"stage_name":"detection_layer","events_processed":746,"events_dropped":0,"avg_latency_ms":18.0724816042166,"throughput_eps":0,"last_update":"2026-03-21T17:33:39.209872983Z"} +2026/03/21 17:33:44 [transform_engine] {"stage_name":"transform_engine","events_processed":749,"events_dropped":0,"avg_latency_ms":403.41634992979624,"throughput_eps":0,"last_update":"2026-03-21T17:33:39.209808631Z"} +2026/03/21 17:33:44 ───────────────────────────────────────────────── +2026/03/21 17:33:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:33:49 [transform_engine] {"stage_name":"transform_engine","events_processed":749,"events_dropped":0,"avg_latency_ms":403.41634992979624,"throughput_eps":0,"last_update":"2026-03-21T17:33:44.209810629Z"} +2026/03/21 17:33:49 [log_collector] {"stage_name":"log_collector","events_processed":36419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7283.8,"last_update":"2026-03-21T17:33:44.068686972Z"} +2026/03/21 17:33:49 [metric_collector] {"stage_name":"metric_collector","events_processed":22494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4498.8,"last_update":"2026-03-21T17:33:44.069043275Z"} +2026/03/21 17:33:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:33:44.077563685Z"} +2026/03/21 17:33:49 [detection_layer] {"stage_name":"detection_layer","events_processed":746,"events_dropped":0,"avg_latency_ms":18.0724816042166,"throughput_eps":0,"last_update":"2026-03-21T17:33:44.210927519Z"} +2026/03/21 17:33:49 ───────────────────────────────────────────────── +2026/03/21 17:33:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:33:54 [metric_collector] {"stage_name":"metric_collector","events_processed":22499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4499.8,"last_update":"2026-03-21T17:33:49.069433927Z"} +2026/03/21 17:33:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:33:49.078108744Z"} +2026/03/21 17:33:54 [detection_layer] {"stage_name":"detection_layer","events_processed":746,"events_dropped":0,"avg_latency_ms":18.0724816042166,"throughput_eps":0,"last_update":"2026-03-21T17:33:49.21044567Z"} +2026/03/21 17:33:54 [transform_engine] {"stage_name":"transform_engine","events_processed":750,"events_dropped":0,"avg_latency_ms":344.16710134383703,"throughput_eps":0,"last_update":"2026-03-21T17:33:49.317717303Z"} +2026/03/21 17:33:54 [log_collector] {"stage_name":"log_collector","events_processed":36419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7283.8,"last_update":"2026-03-21T17:33:49.068726401Z"} +2026/03/21 17:33:54 ───────────────────────────────────────────────── +Saved state: 27 clusters, 36420 messages, reason: none +2026/03/21 17:33:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:33:59 [log_collector] {"stage_name":"log_collector","events_processed":36419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7283.8,"last_update":"2026-03-21T17:33:54.06892362Z"} +2026/03/21 17:33:59 [metric_collector] {"stage_name":"metric_collector","events_processed":22504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4500.8,"last_update":"2026-03-21T17:33:54.069162659Z"} +2026/03/21 17:33:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:33:54.078923505Z"} +2026/03/21 17:33:59 [detection_layer] {"stage_name":"detection_layer","events_processed":747,"events_dropped":0,"avg_latency_ms":19.41270008337328,"throughput_eps":0,"last_update":"2026-03-21T17:33:54.210202345Z"} +2026/03/21 17:33:59 [transform_engine] {"stage_name":"transform_engine","events_processed":750,"events_dropped":0,"avg_latency_ms":344.16710134383703,"throughput_eps":0,"last_update":"2026-03-21T17:33:54.210238534Z"} +2026/03/21 17:33:59 ───────────────────────────────────────────────── +2026/03/21 17:34:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:34:04 [detection_layer] {"stage_name":"detection_layer","events_processed":747,"events_dropped":0,"avg_latency_ms":19.41270008337328,"throughput_eps":0,"last_update":"2026-03-21T17:33:59.210798692Z"} +2026/03/21 17:34:04 [transform_engine] {"stage_name":"transform_engine","events_processed":750,"events_dropped":0,"avg_latency_ms":344.16710134383703,"throughput_eps":0,"last_update":"2026-03-21T17:33:59.209702652Z"} +2026/03/21 17:34:04 [log_collector] {"stage_name":"log_collector","events_processed":36422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7284.4,"last_update":"2026-03-21T17:33:59.068624051Z"} +2026/03/21 17:34:04 [metric_collector] {"stage_name":"metric_collector","events_processed":22509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4501.8,"last_update":"2026-03-21T17:33:59.068841288Z"} +2026/03/21 17:34:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9006,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:33:59.075815357Z"} +2026/03/21 17:34:04 ───────────────────────────────────────────────── +2026/03/21 17:34:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:34:09 [metric_collector] {"stage_name":"metric_collector","events_processed":22514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4502.8,"last_update":"2026-03-21T17:34:04.069638578Z"} +2026/03/21 17:34:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9008,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:34:04.078464334Z"} +2026/03/21 17:34:09 [detection_layer] {"stage_name":"detection_layer","events_processed":747,"events_dropped":0,"avg_latency_ms":19.41270008337328,"throughput_eps":0,"last_update":"2026-03-21T17:34:04.210838642Z"} +2026/03/21 17:34:09 [transform_engine] {"stage_name":"transform_engine","events_processed":750,"events_dropped":0,"avg_latency_ms":344.16710134383703,"throughput_eps":0,"last_update":"2026-03-21T17:34:04.209724799Z"} +2026/03/21 17:34:09 [log_collector] {"stage_name":"log_collector","events_processed":36433,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7286.6,"last_update":"2026-03-21T17:34:04.068794683Z"} +2026/03/21 17:34:09 ───────────────────────────────────────────────── +2026/03/21 17:34:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:34:14 [metric_collector] {"stage_name":"metric_collector","events_processed":22519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4503.8,"last_update":"2026-03-21T17:34:09.068305671Z"} +2026/03/21 17:34:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:34:09.078240171Z"} +2026/03/21 17:34:14 [detection_layer] {"stage_name":"detection_layer","events_processed":747,"events_dropped":0,"avg_latency_ms":19.41270008337328,"throughput_eps":0,"last_update":"2026-03-21T17:34:09.21046903Z"} +2026/03/21 17:34:14 [transform_engine] {"stage_name":"transform_engine","events_processed":750,"events_dropped":0,"avg_latency_ms":344.16710134383703,"throughput_eps":0,"last_update":"2026-03-21T17:34:09.21047974Z"} +2026/03/21 17:34:14 [log_collector] {"stage_name":"log_collector","events_processed":36433,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7286.6,"last_update":"2026-03-21T17:34:09.068101559Z"} +2026/03/21 17:34:14 ───────────────────────────────────────────────── +2026/03/21 17:34:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:34:19 [log_collector] {"stage_name":"log_collector","events_processed":36433,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7286.6,"last_update":"2026-03-21T17:34:14.068628063Z"} +2026/03/21 17:34:19 [metric_collector] {"stage_name":"metric_collector","events_processed":22524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4504.8,"last_update":"2026-03-21T17:34:14.069004565Z"} +2026/03/21 17:34:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9012,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:34:14.077118968Z"} +2026/03/21 17:34:19 [detection_layer] {"stage_name":"detection_layer","events_processed":747,"events_dropped":0,"avg_latency_ms":19.41270008337328,"throughput_eps":0,"last_update":"2026-03-21T17:34:14.21049744Z"} +2026/03/21 17:34:19 [transform_engine] {"stage_name":"transform_engine","events_processed":750,"events_dropped":0,"avg_latency_ms":344.16710134383703,"throughput_eps":0,"last_update":"2026-03-21T17:34:14.210387599Z"} +2026/03/21 17:34:19 ───────────────────────────────────────────────── +2026/03/21 17:34:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:34:24 [transform_engine] {"stage_name":"transform_engine","events_processed":751,"events_dropped":0,"avg_latency_ms":295.8957966750697,"throughput_eps":0,"last_update":"2026-03-21T17:34:19.313513623Z"} +2026/03/21 17:34:24 [log_collector] {"stage_name":"log_collector","events_processed":36433,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7286.6,"last_update":"2026-03-21T17:34:19.068632545Z"} +2026/03/21 17:34:24 [metric_collector] {"stage_name":"metric_collector","events_processed":22529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4505.8,"last_update":"2026-03-21T17:34:19.069149706Z"} +2026/03/21 17:34:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:34:19.080434532Z"} +2026/03/21 17:34:24 [detection_layer] {"stage_name":"detection_layer","events_processed":747,"events_dropped":0,"avg_latency_ms":19.41270008337328,"throughput_eps":0,"last_update":"2026-03-21T17:34:19.210740979Z"} +2026/03/21 17:34:24 ───────────────────────────────────────────────── +2026/03/21 17:34:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:34:29 [log_collector] {"stage_name":"log_collector","events_processed":36433,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7286.6,"last_update":"2026-03-21T17:34:24.068878038Z"} +2026/03/21 17:34:29 [metric_collector] {"stage_name":"metric_collector","events_processed":22534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4506.8,"last_update":"2026-03-21T17:34:24.069192852Z"} +2026/03/21 17:34:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:34:24.07833826Z"} +2026/03/21 17:34:29 [detection_layer] {"stage_name":"detection_layer","events_processed":748,"events_dropped":0,"avg_latency_ms":19.330872666698625,"throughput_eps":0,"last_update":"2026-03-21T17:34:24.210743197Z"} +2026/03/21 17:34:29 [transform_engine] {"stage_name":"transform_engine","events_processed":751,"events_dropped":0,"avg_latency_ms":295.8957966750697,"throughput_eps":0,"last_update":"2026-03-21T17:34:24.210711156Z"} +2026/03/21 17:34:29 ───────────────────────────────────────────────── +2026/03/21 17:34:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:34:34 [log_collector] {"stage_name":"log_collector","events_processed":36453,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7290.6,"last_update":"2026-03-21T17:34:29.068652381Z"} +2026/03/21 17:34:34 [metric_collector] {"stage_name":"metric_collector","events_processed":22539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4507.8,"last_update":"2026-03-21T17:34:29.068917399Z"} +2026/03/21 17:34:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9018,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:34:29.077603809Z"} +2026/03/21 17:34:34 [detection_layer] {"stage_name":"detection_layer","events_processed":748,"events_dropped":0,"avg_latency_ms":19.330872666698625,"throughput_eps":0,"last_update":"2026-03-21T17:34:29.209886391Z"} +2026/03/21 17:34:34 [transform_engine] {"stage_name":"transform_engine","events_processed":751,"events_dropped":0,"avg_latency_ms":295.8957966750697,"throughput_eps":0,"last_update":"2026-03-21T17:34:29.209783843Z"} +2026/03/21 17:34:34 ───────────────────────────────────────────────── +2026/03/21 17:34:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:34:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9020,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:34:34.077145906Z"} +2026/03/21 17:34:39 [detection_layer] {"stage_name":"detection_layer","events_processed":748,"events_dropped":0,"avg_latency_ms":19.330872666698625,"throughput_eps":0,"last_update":"2026-03-21T17:34:34.21067164Z"} +2026/03/21 17:34:39 [transform_engine] {"stage_name":"transform_engine","events_processed":751,"events_dropped":0,"avg_latency_ms":295.8957966750697,"throughput_eps":0,"last_update":"2026-03-21T17:34:34.210569043Z"} +2026/03/21 17:34:39 [log_collector] {"stage_name":"log_collector","events_processed":36453,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7290.6,"last_update":"2026-03-21T17:34:34.068272699Z"} +2026/03/21 17:34:39 [metric_collector] {"stage_name":"metric_collector","events_processed":22544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4508.8,"last_update":"2026-03-21T17:34:34.068454347Z"} +2026/03/21 17:34:39 ───────────────────────────────────────────────── +2026/03/21 17:34:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:34:44 [transform_engine] {"stage_name":"transform_engine","events_processed":751,"events_dropped":0,"avg_latency_ms":295.8957966750697,"throughput_eps":0,"last_update":"2026-03-21T17:34:39.209786239Z"} +2026/03/21 17:34:44 [log_collector] {"stage_name":"log_collector","events_processed":36453,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7290.6,"last_update":"2026-03-21T17:34:39.068063173Z"} +2026/03/21 17:34:44 [metric_collector] {"stage_name":"metric_collector","events_processed":22549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4509.8,"last_update":"2026-03-21T17:34:39.06867204Z"} +2026/03/21 17:34:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9022,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:34:39.077623647Z"} +2026/03/21 17:34:44 [detection_layer] {"stage_name":"detection_layer","events_processed":748,"events_dropped":0,"avg_latency_ms":19.330872666698625,"throughput_eps":0,"last_update":"2026-03-21T17:34:39.210957252Z"} +2026/03/21 17:34:44 ───────────────────────────────────────────────── +2026/03/21 17:34:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:34:49 [log_collector] {"stage_name":"log_collector","events_processed":36453,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7290.6,"last_update":"2026-03-21T17:34:44.068482643Z"} +2026/03/21 17:34:49 [metric_collector] {"stage_name":"metric_collector","events_processed":22554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4510.8,"last_update":"2026-03-21T17:34:44.068723264Z"} +2026/03/21 17:34:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:34:44.079087167Z"} +2026/03/21 17:34:49 [detection_layer] {"stage_name":"detection_layer","events_processed":748,"events_dropped":0,"avg_latency_ms":19.330872666698625,"throughput_eps":0,"last_update":"2026-03-21T17:34:44.210426382Z"} +2026/03/21 17:34:49 [transform_engine] {"stage_name":"transform_engine","events_processed":751,"events_dropped":0,"avg_latency_ms":295.8957966750697,"throughput_eps":0,"last_update":"2026-03-21T17:34:44.210446651Z"} +2026/03/21 17:34:49 ───────────────────────────────────────────────── +2026/03/21 17:34:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:34:54 [log_collector] {"stage_name":"log_collector","events_processed":36453,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7290.6,"last_update":"2026-03-21T17:34:49.068102259Z"} +2026/03/21 17:34:54 [metric_collector] {"stage_name":"metric_collector","events_processed":22559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4511.8,"last_update":"2026-03-21T17:34:49.069048412Z"} +2026/03/21 17:34:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:34:49.078202587Z"} +2026/03/21 17:34:54 [detection_layer] {"stage_name":"detection_layer","events_processed":748,"events_dropped":0,"avg_latency_ms":19.330872666698625,"throughput_eps":0,"last_update":"2026-03-21T17:34:49.211550029Z"} +2026/03/21 17:34:54 [transform_engine] {"stage_name":"transform_engine","events_processed":752,"events_dropped":0,"avg_latency_ms":260.84125494005576,"throughput_eps":0,"last_update":"2026-03-21T17:34:49.331152441Z"} +2026/03/21 17:34:54 ───────────────────────────────────────────────── +2026/03/21 17:34:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:34:59 [metric_collector] {"stage_name":"metric_collector","events_processed":22564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4512.8,"last_update":"2026-03-21T17:34:54.069430609Z"} +2026/03/21 17:34:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:34:54.077538852Z"} +2026/03/21 17:34:59 [detection_layer] {"stage_name":"detection_layer","events_processed":749,"events_dropped":0,"avg_latency_ms":19.973005933358902,"throughput_eps":0,"last_update":"2026-03-21T17:34:54.210863088Z"} +2026/03/21 17:34:59 [transform_engine] {"stage_name":"transform_engine","events_processed":752,"events_dropped":0,"avg_latency_ms":260.84125494005576,"throughput_eps":0,"last_update":"2026-03-21T17:34:54.209740137Z"} +2026/03/21 17:34:59 [log_collector] {"stage_name":"log_collector","events_processed":36453,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7290.6,"last_update":"2026-03-21T17:34:54.069240886Z"} +2026/03/21 17:34:59 ───────────────────────────────────────────────── +2026/03/21 17:35:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:35:04 [log_collector] {"stage_name":"log_collector","events_processed":36453,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7290.6,"last_update":"2026-03-21T17:34:59.068103283Z"} +2026/03/21 17:35:04 [metric_collector] {"stage_name":"metric_collector","events_processed":22569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4513.8,"last_update":"2026-03-21T17:34:59.06844108Z"} +2026/03/21 17:35:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:34:59.077168277Z"} +2026/03/21 17:35:04 [detection_layer] {"stage_name":"detection_layer","events_processed":749,"events_dropped":0,"avg_latency_ms":19.973005933358902,"throughput_eps":0,"last_update":"2026-03-21T17:34:59.210445213Z"} +2026/03/21 17:35:04 [transform_engine] {"stage_name":"transform_engine","events_processed":752,"events_dropped":0,"avg_latency_ms":260.84125494005576,"throughput_eps":0,"last_update":"2026-03-21T17:34:59.21041726Z"} +2026/03/21 17:35:04 ───────────────────────────────────────────────── +Saved state: 27 clusters, 36454 messages, reason: none +2026/03/21 17:35:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:35:09 [log_collector] {"stage_name":"log_collector","events_processed":36453,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7290.6,"last_update":"2026-03-21T17:35:04.068789434Z"} +2026/03/21 17:35:09 [metric_collector] {"stage_name":"metric_collector","events_processed":22574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4514.8,"last_update":"2026-03-21T17:35:04.069153841Z"} +2026/03/21 17:35:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:35:04.078164181Z"} +2026/03/21 17:35:09 [detection_layer] {"stage_name":"detection_layer","events_processed":749,"events_dropped":0,"avg_latency_ms":19.973005933358902,"throughput_eps":0,"last_update":"2026-03-21T17:35:04.210551574Z"} +2026/03/21 17:35:09 [transform_engine] {"stage_name":"transform_engine","events_processed":752,"events_dropped":0,"avg_latency_ms":260.84125494005576,"throughput_eps":0,"last_update":"2026-03-21T17:35:04.210698005Z"} +2026/03/21 17:35:09 ───────────────────────────────────────────────── +2026/03/21 17:35:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:35:14 [log_collector] {"stage_name":"log_collector","events_processed":36458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7291.6,"last_update":"2026-03-21T17:35:09.069371915Z"} +2026/03/21 17:35:14 [metric_collector] {"stage_name":"metric_collector","events_processed":22579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4515.8,"last_update":"2026-03-21T17:35:09.069660468Z"} +2026/03/21 17:35:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:35:09.077544049Z"} +2026/03/21 17:35:14 [detection_layer] {"stage_name":"detection_layer","events_processed":749,"events_dropped":0,"avg_latency_ms":19.973005933358902,"throughput_eps":0,"last_update":"2026-03-21T17:35:09.210875711Z"} +2026/03/21 17:35:14 [transform_engine] {"stage_name":"transform_engine","events_processed":752,"events_dropped":0,"avg_latency_ms":260.84125494005576,"throughput_eps":0,"last_update":"2026-03-21T17:35:09.209724055Z"} +2026/03/21 17:35:14 ───────────────────────────────────────────────── +2026/03/21 17:35:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:35:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9036,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:35:14.07617913Z"} +2026/03/21 17:35:19 [detection_layer] {"stage_name":"detection_layer","events_processed":749,"events_dropped":0,"avg_latency_ms":19.973005933358902,"throughput_eps":0,"last_update":"2026-03-21T17:35:14.210421677Z"} +2026/03/21 17:35:19 [transform_engine] {"stage_name":"transform_engine","events_processed":752,"events_dropped":0,"avg_latency_ms":260.84125494005576,"throughput_eps":0,"last_update":"2026-03-21T17:35:14.2104496Z"} +2026/03/21 17:35:19 [log_collector] {"stage_name":"log_collector","events_processed":36458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7291.6,"last_update":"2026-03-21T17:35:14.068609921Z"} +2026/03/21 17:35:19 [metric_collector] {"stage_name":"metric_collector","events_processed":22584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4516.8,"last_update":"2026-03-21T17:35:14.068921548Z"} +2026/03/21 17:35:19 ───────────────────────────────────────────────── +2026/03/21 17:35:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:35:24 [log_collector] {"stage_name":"log_collector","events_processed":36458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7291.6,"last_update":"2026-03-21T17:35:19.06868943Z"} +2026/03/21 17:35:24 [metric_collector] {"stage_name":"metric_collector","events_processed":22589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4517.8,"last_update":"2026-03-21T17:35:19.069021948Z"} +2026/03/21 17:35:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:35:19.077436255Z"} +2026/03/21 17:35:24 [detection_layer] {"stage_name":"detection_layer","events_processed":749,"events_dropped":0,"avg_latency_ms":19.973005933358902,"throughput_eps":0,"last_update":"2026-03-21T17:35:19.211395949Z"} +2026/03/21 17:35:24 [transform_engine] {"stage_name":"transform_engine","events_processed":753,"events_dropped":0,"avg_latency_ms":287.68997575204463,"throughput_eps":0,"last_update":"2026-03-21T17:35:19.606080001Z"} +2026/03/21 17:35:24 ───────────────────────────────────────────────── +2026/03/21 17:35:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:35:29 [log_collector] {"stage_name":"log_collector","events_processed":36458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7291.6,"last_update":"2026-03-21T17:35:24.068489634Z"} +2026/03/21 17:35:29 [metric_collector] {"stage_name":"metric_collector","events_processed":22594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4518.8,"last_update":"2026-03-21T17:35:24.068803855Z"} +2026/03/21 17:35:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:35:24.078421018Z"} +2026/03/21 17:35:29 [detection_layer] {"stage_name":"detection_layer","events_processed":750,"events_dropped":0,"avg_latency_ms":18.610867346687122,"throughput_eps":0,"last_update":"2026-03-21T17:35:24.210637382Z"} +2026/03/21 17:35:29 [transform_engine] {"stage_name":"transform_engine","events_processed":753,"events_dropped":0,"avg_latency_ms":287.68997575204463,"throughput_eps":0,"last_update":"2026-03-21T17:35:24.210666689Z"} +2026/03/21 17:35:29 ───────────────────────────────────────────────── +2026/03/21 17:35:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:35:34 [detection_layer] {"stage_name":"detection_layer","events_processed":750,"events_dropped":0,"avg_latency_ms":18.610867346687122,"throughput_eps":0,"last_update":"2026-03-21T17:35:29.210783579Z"} +2026/03/21 17:35:34 [transform_engine] {"stage_name":"transform_engine","events_processed":753,"events_dropped":0,"avg_latency_ms":287.68997575204463,"throughput_eps":0,"last_update":"2026-03-21T17:35:29.209695635Z"} +2026/03/21 17:35:34 [log_collector] {"stage_name":"log_collector","events_processed":36458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7291.6,"last_update":"2026-03-21T17:35:29.068635821Z"} +2026/03/21 17:35:34 [metric_collector] {"stage_name":"metric_collector","events_processed":22599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4519.8,"last_update":"2026-03-21T17:35:29.06885512Z"} +2026/03/21 17:35:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:35:29.074515723Z"} +2026/03/21 17:35:34 ───────────────────────────────────────────────── +2026/03/21 17:35:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:35:39 [metric_collector] {"stage_name":"metric_collector","events_processed":22604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4520.8,"last_update":"2026-03-21T17:35:34.068190102Z"} +2026/03/21 17:35:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:35:34.077078568Z"} +2026/03/21 17:35:39 [detection_layer] {"stage_name":"detection_layer","events_processed":750,"events_dropped":0,"avg_latency_ms":18.610867346687122,"throughput_eps":0,"last_update":"2026-03-21T17:35:34.210381575Z"} +2026/03/21 17:35:39 [transform_engine] {"stage_name":"transform_engine","events_processed":753,"events_dropped":0,"avg_latency_ms":287.68997575204463,"throughput_eps":0,"last_update":"2026-03-21T17:35:34.210330968Z"} +2026/03/21 17:35:39 [log_collector] {"stage_name":"log_collector","events_processed":36458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7291.6,"last_update":"2026-03-21T17:35:34.068075162Z"} +2026/03/21 17:35:39 ───────────────────────────────────────────────── +2026/03/21 17:35:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:35:44 [log_collector] {"stage_name":"log_collector","events_processed":36458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7291.6,"last_update":"2026-03-21T17:35:39.068440498Z"} +2026/03/21 17:35:44 [metric_collector] {"stage_name":"metric_collector","events_processed":22609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4521.8,"last_update":"2026-03-21T17:35:39.068469594Z"} +2026/03/21 17:35:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:35:39.075943811Z"} +2026/03/21 17:35:44 [detection_layer] {"stage_name":"detection_layer","events_processed":750,"events_dropped":0,"avg_latency_ms":18.610867346687122,"throughput_eps":0,"last_update":"2026-03-21T17:35:39.210109961Z"} +2026/03/21 17:35:44 [transform_engine] {"stage_name":"transform_engine","events_processed":753,"events_dropped":0,"avg_latency_ms":287.68997575204463,"throughput_eps":0,"last_update":"2026-03-21T17:35:39.210089472Z"} +2026/03/21 17:35:44 ───────────────────────────────────────────────── +2026/03/21 17:35:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:35:49 [metric_collector] {"stage_name":"metric_collector","events_processed":22614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4522.8,"last_update":"2026-03-21T17:35:44.068859507Z"} +2026/03/21 17:35:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9048,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:35:44.075050627Z"} +2026/03/21 17:35:49 [detection_layer] {"stage_name":"detection_layer","events_processed":750,"events_dropped":0,"avg_latency_ms":18.610867346687122,"throughput_eps":0,"last_update":"2026-03-21T17:35:44.210335299Z"} +2026/03/21 17:35:49 [transform_engine] {"stage_name":"transform_engine","events_processed":753,"events_dropped":0,"avg_latency_ms":287.68997575204463,"throughput_eps":0,"last_update":"2026-03-21T17:35:44.210307917Z"} +2026/03/21 17:35:49 [log_collector] {"stage_name":"log_collector","events_processed":36458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7291.6,"last_update":"2026-03-21T17:35:44.068632773Z"} +2026/03/21 17:35:49 ───────────────────────────────────────────────── +2026/03/21 17:35:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:35:54 [log_collector] {"stage_name":"log_collector","events_processed":36467,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7293.4,"last_update":"2026-03-21T17:35:49.068811722Z"} +2026/03/21 17:35:54 [metric_collector] {"stage_name":"metric_collector","events_processed":22619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4523.8,"last_update":"2026-03-21T17:35:49.069157625Z"} +2026/03/21 17:35:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9050,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:35:49.075004113Z"} +2026/03/21 17:35:54 [detection_layer] {"stage_name":"detection_layer","events_processed":750,"events_dropped":0,"avg_latency_ms":18.610867346687122,"throughput_eps":0,"last_update":"2026-03-21T17:35:49.210215927Z"} +2026/03/21 17:35:54 [transform_engine] {"stage_name":"transform_engine","events_processed":754,"events_dropped":0,"avg_latency_ms":690.1318964016357,"throughput_eps":0,"last_update":"2026-03-21T17:35:51.510144612Z"} +2026/03/21 17:35:54 ───────────────────────────────────────────────── +2026/03/21 17:35:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:35:59 [log_collector] {"stage_name":"log_collector","events_processed":36469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7293.8,"last_update":"2026-03-21T17:35:54.068626964Z"} +2026/03/21 17:35:59 [metric_collector] {"stage_name":"metric_collector","events_processed":22624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4524.8,"last_update":"2026-03-21T17:35:54.068915587Z"} +2026/03/21 17:35:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:35:54.078556504Z"} +2026/03/21 17:35:59 [detection_layer] {"stage_name":"detection_layer","events_processed":751,"events_dropped":0,"avg_latency_ms":18.8756490773497,"throughput_eps":0,"last_update":"2026-03-21T17:35:54.210810622Z"} +2026/03/21 17:35:59 [transform_engine] {"stage_name":"transform_engine","events_processed":754,"events_dropped":0,"avg_latency_ms":690.1318964016357,"throughput_eps":0,"last_update":"2026-03-21T17:35:54.209722347Z"} +2026/03/21 17:35:59 ───────────────────────────────────────────────── +2026/03/21 17:36:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:36:04 [log_collector] {"stage_name":"log_collector","events_processed":36708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7341.6,"last_update":"2026-03-21T17:35:59.068804411Z"} +2026/03/21 17:36:04 [metric_collector] {"stage_name":"metric_collector","events_processed":22629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4525.8,"last_update":"2026-03-21T17:35:59.069036446Z"} +2026/03/21 17:36:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:35:59.077040718Z"} +2026/03/21 17:36:04 [detection_layer] {"stage_name":"detection_layer","events_processed":751,"events_dropped":0,"avg_latency_ms":18.8756490773497,"throughput_eps":0,"last_update":"2026-03-21T17:35:59.210368031Z"} +2026/03/21 17:36:04 [transform_engine] {"stage_name":"transform_engine","events_processed":754,"events_dropped":0,"avg_latency_ms":690.1318964016357,"throughput_eps":0,"last_update":"2026-03-21T17:35:59.21037775Z"} +2026/03/21 17:36:04 ───────────────────────────────────────────────── +2026/03/21 17:36:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:36:09 [log_collector] {"stage_name":"log_collector","events_processed":36815,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7363,"last_update":"2026-03-21T17:36:04.068178558Z"} +2026/03/21 17:36:09 [metric_collector] {"stage_name":"metric_collector","events_processed":22634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4526.8,"last_update":"2026-03-21T17:36:04.068646966Z"} +2026/03/21 17:36:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9056,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:36:04.076713778Z"} +2026/03/21 17:36:09 [detection_layer] {"stage_name":"detection_layer","events_processed":751,"events_dropped":0,"avg_latency_ms":18.8756490773497,"throughput_eps":0,"last_update":"2026-03-21T17:36:04.209905842Z"} +2026/03/21 17:36:09 [transform_engine] {"stage_name":"transform_engine","events_processed":754,"events_dropped":0,"avg_latency_ms":690.1318964016357,"throughput_eps":0,"last_update":"2026-03-21T17:36:04.209918697Z"} +2026/03/21 17:36:09 ───────────────────────────────────────────────── +Saved state: 27 clusters, 36816 messages, reason: none +2026/03/21 17:36:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:36:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:36:09.079227199Z"} +2026/03/21 17:36:14 [detection_layer] {"stage_name":"detection_layer","events_processed":751,"events_dropped":0,"avg_latency_ms":18.8756490773497,"throughput_eps":0,"last_update":"2026-03-21T17:36:09.210430724Z"} +2026/03/21 17:36:14 [transform_engine] {"stage_name":"transform_engine","events_processed":754,"events_dropped":0,"avg_latency_ms":690.1318964016357,"throughput_eps":0,"last_update":"2026-03-21T17:36:09.210440964Z"} +2026/03/21 17:36:14 [log_collector] {"stage_name":"log_collector","events_processed":36815,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7363,"last_update":"2026-03-21T17:36:09.069106442Z"} +2026/03/21 17:36:14 [metric_collector] {"stage_name":"metric_collector","events_processed":22639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4527.8,"last_update":"2026-03-21T17:36:09.069308519Z"} +2026/03/21 17:36:14 ───────────────────────────────────────────────── +2026/03/21 17:36:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:36:19 [metric_collector] {"stage_name":"metric_collector","events_processed":22644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4528.8,"last_update":"2026-03-21T17:36:14.068746721Z"} +2026/03/21 17:36:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:36:14.07579873Z"} +2026/03/21 17:36:19 [detection_layer] {"stage_name":"detection_layer","events_processed":751,"events_dropped":0,"avg_latency_ms":18.8756490773497,"throughput_eps":0,"last_update":"2026-03-21T17:36:14.21003798Z"} +2026/03/21 17:36:19 [transform_engine] {"stage_name":"transform_engine","events_processed":754,"events_dropped":0,"avg_latency_ms":690.1318964016357,"throughput_eps":0,"last_update":"2026-03-21T17:36:14.210050413Z"} +2026/03/21 17:36:19 [log_collector] {"stage_name":"log_collector","events_processed":36818,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7363.6,"last_update":"2026-03-21T17:36:14.068556147Z"} +2026/03/21 17:36:19 ───────────────────────────────────────────────── +2026/03/21 17:36:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:36:24 [log_collector] {"stage_name":"log_collector","events_processed":36818,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7363.6,"last_update":"2026-03-21T17:36:19.068602732Z"} +2026/03/21 17:36:24 [metric_collector] {"stage_name":"metric_collector","events_processed":22649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4529.8,"last_update":"2026-03-21T17:36:19.06897265Z"} +2026/03/21 17:36:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9062,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:36:19.076895237Z"} +2026/03/21 17:36:24 [detection_layer] {"stage_name":"detection_layer","events_processed":751,"events_dropped":0,"avg_latency_ms":18.8756490773497,"throughput_eps":0,"last_update":"2026-03-21T17:36:19.210129872Z"} +2026/03/21 17:36:24 [transform_engine] {"stage_name":"transform_engine","events_processed":755,"events_dropped":0,"avg_latency_ms":1188.8758849213086,"throughput_eps":0,"last_update":"2026-03-21T17:36:22.394000439Z"} +2026/03/21 17:36:24 ───────────────────────────────────────────────── +2026/03/21 17:36:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:36:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:36:24.077460787Z"} +2026/03/21 17:36:29 [detection_layer] {"stage_name":"detection_layer","events_processed":752,"events_dropped":0,"avg_latency_ms":18.10134946187976,"throughput_eps":0,"last_update":"2026-03-21T17:36:24.210770325Z"} +2026/03/21 17:36:29 [transform_engine] {"stage_name":"transform_engine","events_processed":755,"events_dropped":0,"avg_latency_ms":1188.8758849213086,"throughput_eps":0,"last_update":"2026-03-21T17:36:24.209642655Z"} +2026/03/21 17:36:29 [log_collector] {"stage_name":"log_collector","events_processed":36829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7365.8,"last_update":"2026-03-21T17:36:24.068641042Z"} +2026/03/21 17:36:29 [metric_collector] {"stage_name":"metric_collector","events_processed":22654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4530.8,"last_update":"2026-03-21T17:36:24.068632315Z"} +2026/03/21 17:36:29 ───────────────────────────────────────────────── +2026/03/21 17:36:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:36:34 [log_collector] {"stage_name":"log_collector","events_processed":36829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7365.8,"last_update":"2026-03-21T17:36:29.068644483Z"} +2026/03/21 17:36:34 [metric_collector] {"stage_name":"metric_collector","events_processed":22659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4531.8,"last_update":"2026-03-21T17:36:29.069020333Z"} +2026/03/21 17:36:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:36:29.078218783Z"} +2026/03/21 17:36:34 [detection_layer] {"stage_name":"detection_layer","events_processed":752,"events_dropped":0,"avg_latency_ms":18.10134946187976,"throughput_eps":0,"last_update":"2026-03-21T17:36:29.210458282Z"} +2026/03/21 17:36:34 [transform_engine] {"stage_name":"transform_engine","events_processed":755,"events_dropped":0,"avg_latency_ms":1188.8758849213086,"throughput_eps":0,"last_update":"2026-03-21T17:36:29.210471517Z"} +2026/03/21 17:36:34 ───────────────────────────────────────────────── +2026/03/21 17:36:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:36:39 [log_collector] {"stage_name":"log_collector","events_processed":36843,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7368.6,"last_update":"2026-03-21T17:36:34.068598702Z"} +2026/03/21 17:36:39 [metric_collector] {"stage_name":"metric_collector","events_processed":22664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4532.8,"last_update":"2026-03-21T17:36:34.068789857Z"} +2026/03/21 17:36:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:36:34.07595319Z"} +2026/03/21 17:36:39 [detection_layer] {"stage_name":"detection_layer","events_processed":752,"events_dropped":0,"avg_latency_ms":18.10134946187976,"throughput_eps":0,"last_update":"2026-03-21T17:36:34.21022934Z"} +2026/03/21 17:36:39 [transform_engine] {"stage_name":"transform_engine","events_processed":755,"events_dropped":0,"avg_latency_ms":1188.8758849213086,"throughput_eps":0,"last_update":"2026-03-21T17:36:34.210210734Z"} +2026/03/21 17:36:39 ───────────────────────────────────────────────── +2026/03/21 17:36:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:36:44 [detection_layer] {"stage_name":"detection_layer","events_processed":752,"events_dropped":0,"avg_latency_ms":18.10134946187976,"throughput_eps":0,"last_update":"2026-03-21T17:36:39.210809619Z"} +2026/03/21 17:36:44 [transform_engine] {"stage_name":"transform_engine","events_processed":755,"events_dropped":0,"avg_latency_ms":1188.8758849213086,"throughput_eps":0,"last_update":"2026-03-21T17:36:39.210682726Z"} +2026/03/21 17:36:44 [log_collector] {"stage_name":"log_collector","events_processed":36845,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7369,"last_update":"2026-03-21T17:36:39.068756511Z"} +2026/03/21 17:36:44 [metric_collector] {"stage_name":"metric_collector","events_processed":22669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4533.8,"last_update":"2026-03-21T17:36:39.069122202Z"} +2026/03/21 17:36:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:36:39.077289997Z"} +2026/03/21 17:36:44 ───────────────────────────────────────────────── +2026/03/21 17:36:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:36:49 [log_collector] {"stage_name":"log_collector","events_processed":36845,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7369,"last_update":"2026-03-21T17:36:44.068796757Z"} +2026/03/21 17:36:49 [metric_collector] {"stage_name":"metric_collector","events_processed":22674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4534.8,"last_update":"2026-03-21T17:36:44.070084184Z"} +2026/03/21 17:36:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9072,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:36:44.078196864Z"} +2026/03/21 17:36:49 [detection_layer] {"stage_name":"detection_layer","events_processed":752,"events_dropped":0,"avg_latency_ms":18.10134946187976,"throughput_eps":0,"last_update":"2026-03-21T17:36:44.210563526Z"} +2026/03/21 17:36:49 [transform_engine] {"stage_name":"transform_engine","events_processed":755,"events_dropped":0,"avg_latency_ms":1188.8758849213086,"throughput_eps":0,"last_update":"2026-03-21T17:36:44.210620585Z"} +2026/03/21 17:36:49 ───────────────────────────────────────────────── +2026/03/21 17:36:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:36:54 [log_collector] {"stage_name":"log_collector","events_processed":36845,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7369,"last_update":"2026-03-21T17:36:49.068102715Z"} +2026/03/21 17:36:54 [metric_collector] {"stage_name":"metric_collector","events_processed":22679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4535.8,"last_update":"2026-03-21T17:36:49.068599236Z"} +2026/03/21 17:36:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:36:49.077285174Z"} +2026/03/21 17:36:54 [detection_layer] {"stage_name":"detection_layer","events_processed":752,"events_dropped":0,"avg_latency_ms":18.10134946187976,"throughput_eps":0,"last_update":"2026-03-21T17:36:49.210541662Z"} +2026/03/21 17:36:54 [transform_engine] {"stage_name":"transform_engine","events_processed":755,"events_dropped":0,"avg_latency_ms":1188.8758849213086,"throughput_eps":0,"last_update":"2026-03-21T17:36:49.210508829Z"} +2026/03/21 17:36:54 ───────────────────────────────────────────────── +2026/03/21 17:36:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:36:59 [metric_collector] {"stage_name":"metric_collector","events_processed":22684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4536.8,"last_update":"2026-03-21T17:36:54.068591551Z"} +2026/03/21 17:36:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9076,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:36:54.077297737Z"} +2026/03/21 17:36:59 [detection_layer] {"stage_name":"detection_layer","events_processed":753,"events_dropped":0,"avg_latency_ms":18.32139376950381,"throughput_eps":0,"last_update":"2026-03-21T17:36:54.210632535Z"} +2026/03/21 17:36:59 [transform_engine] {"stage_name":"transform_engine","events_processed":756,"events_dropped":0,"avg_latency_ms":975.045397137047,"throughput_eps":0,"last_update":"2026-03-21T17:36:54.210566418Z"} +2026/03/21 17:36:59 [log_collector] {"stage_name":"log_collector","events_processed":36845,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7369,"last_update":"2026-03-21T17:36:54.068089148Z"} +2026/03/21 17:36:59 ───────────────────────────────────────────────── +2026/03/21 17:37:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:37:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:36:59.079638669Z"} +2026/03/21 17:37:04 [detection_layer] {"stage_name":"detection_layer","events_processed":753,"events_dropped":0,"avg_latency_ms":18.32139376950381,"throughput_eps":0,"last_update":"2026-03-21T17:36:59.209902985Z"} +2026/03/21 17:37:04 [transform_engine] {"stage_name":"transform_engine","events_processed":756,"events_dropped":0,"avg_latency_ms":975.045397137047,"throughput_eps":0,"last_update":"2026-03-21T17:36:59.209878077Z"} +2026/03/21 17:37:04 [log_collector] {"stage_name":"log_collector","events_processed":36845,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7369,"last_update":"2026-03-21T17:36:59.068902684Z"} +2026/03/21 17:37:04 [metric_collector] {"stage_name":"metric_collector","events_processed":22689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4537.8,"last_update":"2026-03-21T17:36:59.069333168Z"} +2026/03/21 17:37:04 ───────────────────────────────────────────────── +2026/03/21 17:37:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:37:09 [log_collector] {"stage_name":"log_collector","events_processed":36845,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7369,"last_update":"2026-03-21T17:37:04.068421469Z"} +2026/03/21 17:37:09 [metric_collector] {"stage_name":"metric_collector","events_processed":22694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4538.8,"last_update":"2026-03-21T17:37:04.068870018Z"} +2026/03/21 17:37:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:37:04.078943123Z"} +2026/03/21 17:37:09 [detection_layer] {"stage_name":"detection_layer","events_processed":753,"events_dropped":0,"avg_latency_ms":18.32139376950381,"throughput_eps":0,"last_update":"2026-03-21T17:37:04.210337764Z"} +2026/03/21 17:37:09 [transform_engine] {"stage_name":"transform_engine","events_processed":756,"events_dropped":0,"avg_latency_ms":975.045397137047,"throughput_eps":0,"last_update":"2026-03-21T17:37:04.210270015Z"} +2026/03/21 17:37:09 ───────────────────────────────────────────────── +2026/03/21 17:37:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:37:14 [metric_collector] {"stage_name":"metric_collector","events_processed":22699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4539.8,"last_update":"2026-03-21T17:37:09.069459134Z"} +2026/03/21 17:37:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9082,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:37:09.079739045Z"} +2026/03/21 17:37:14 [detection_layer] {"stage_name":"detection_layer","events_processed":753,"events_dropped":0,"avg_latency_ms":18.32139376950381,"throughput_eps":0,"last_update":"2026-03-21T17:37:09.210037767Z"} +2026/03/21 17:37:14 [transform_engine] {"stage_name":"transform_engine","events_processed":756,"events_dropped":0,"avg_latency_ms":975.045397137047,"throughput_eps":0,"last_update":"2026-03-21T17:37:09.209993021Z"} +2026/03/21 17:37:14 [log_collector] {"stage_name":"log_collector","events_processed":36845,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7369,"last_update":"2026-03-21T17:37:09.068879172Z"} +2026/03/21 17:37:14 ───────────────────────────────────────────────── +2026/03/21 17:37:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:37:19 [log_collector] {"stage_name":"log_collector","events_processed":36845,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7369,"last_update":"2026-03-21T17:37:14.068813223Z"} +2026/03/21 17:37:19 [metric_collector] {"stage_name":"metric_collector","events_processed":22704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4540.8,"last_update":"2026-03-21T17:37:14.069116203Z"} +2026/03/21 17:37:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:37:14.078943338Z"} +2026/03/21 17:37:19 [detection_layer] {"stage_name":"detection_layer","events_processed":753,"events_dropped":0,"avg_latency_ms":18.32139376950381,"throughput_eps":0,"last_update":"2026-03-21T17:37:14.210238358Z"} +2026/03/21 17:37:19 [transform_engine] {"stage_name":"transform_engine","events_processed":756,"events_dropped":0,"avg_latency_ms":975.045397137047,"throughput_eps":0,"last_update":"2026-03-21T17:37:14.210289536Z"} +2026/03/21 17:37:19 ───────────────────────────────────────────────── +2026/03/21 17:37:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:37:24 [log_collector] {"stage_name":"log_collector","events_processed":36845,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7369,"last_update":"2026-03-21T17:37:19.068701207Z"} +2026/03/21 17:37:24 [metric_collector] {"stage_name":"metric_collector","events_processed":22709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4541.8,"last_update":"2026-03-21T17:37:19.068972918Z"} +2026/03/21 17:37:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:37:19.078770936Z"} +2026/03/21 17:37:24 [detection_layer] {"stage_name":"detection_layer","events_processed":753,"events_dropped":0,"avg_latency_ms":18.32139376950381,"throughput_eps":0,"last_update":"2026-03-21T17:37:19.210183962Z"} +2026/03/21 17:37:24 [transform_engine] {"stage_name":"transform_engine","events_processed":757,"events_dropped":0,"avg_latency_ms":796.1054487096376,"throughput_eps":0,"last_update":"2026-03-21T17:37:19.290396642Z"} +2026/03/21 17:37:24 ───────────────────────────────────────────────── +2026/03/21 17:37:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:37:29 [transform_engine] {"stage_name":"transform_engine","events_processed":757,"events_dropped":0,"avg_latency_ms":796.1054487096376,"throughput_eps":0,"last_update":"2026-03-21T17:37:24.210342655Z"} +2026/03/21 17:37:29 [log_collector] {"stage_name":"log_collector","events_processed":36845,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7369,"last_update":"2026-03-21T17:37:24.068755359Z"} +2026/03/21 17:37:29 [metric_collector] {"stage_name":"metric_collector","events_processed":22714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4542.8,"last_update":"2026-03-21T17:37:24.069404864Z"} +2026/03/21 17:37:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:37:24.079905708Z"} +2026/03/21 17:37:29 [detection_layer] {"stage_name":"detection_layer","events_processed":754,"events_dropped":0,"avg_latency_ms":19.102185615603048,"throughput_eps":0,"last_update":"2026-03-21T17:37:24.210305172Z"} +2026/03/21 17:37:29 ───────────────────────────────────────────────── +2026/03/21 17:37:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:37:34 [log_collector] {"stage_name":"log_collector","events_processed":36845,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7369,"last_update":"2026-03-21T17:37:29.068590391Z"} +2026/03/21 17:37:34 [metric_collector] {"stage_name":"metric_collector","events_processed":22719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4543.8,"last_update":"2026-03-21T17:37:29.068662639Z"} +2026/03/21 17:37:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:37:29.077342406Z"} +2026/03/21 17:37:34 [detection_layer] {"stage_name":"detection_layer","events_processed":754,"events_dropped":0,"avg_latency_ms":19.102185615603048,"throughput_eps":0,"last_update":"2026-03-21T17:37:29.210598302Z"} +2026/03/21 17:37:34 [transform_engine] {"stage_name":"transform_engine","events_processed":757,"events_dropped":0,"avg_latency_ms":796.1054487096376,"throughput_eps":0,"last_update":"2026-03-21T17:37:29.210701971Z"} +2026/03/21 17:37:34 ───────────────────────────────────────────────── +2026/03/21 17:37:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:37:39 [log_collector] {"stage_name":"log_collector","events_processed":36845,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7369,"last_update":"2026-03-21T17:37:34.068192798Z"} +2026/03/21 17:37:39 [metric_collector] {"stage_name":"metric_collector","events_processed":22724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4544.8,"last_update":"2026-03-21T17:37:34.068617541Z"} +2026/03/21 17:37:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:37:34.07753351Z"} +2026/03/21 17:37:39 [detection_layer] {"stage_name":"detection_layer","events_processed":754,"events_dropped":0,"avg_latency_ms":19.102185615603048,"throughput_eps":0,"last_update":"2026-03-21T17:37:34.210772223Z"} +2026/03/21 17:37:39 [transform_engine] {"stage_name":"transform_engine","events_processed":757,"events_dropped":0,"avg_latency_ms":796.1054487096376,"throughput_eps":0,"last_update":"2026-03-21T17:37:34.209677677Z"} +2026/03/21 17:37:39 ───────────────────────────────────────────────── +Saved state: 27 clusters, 36846 messages, reason: none +2026/03/21 17:37:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:37:44 [log_collector] {"stage_name":"log_collector","events_processed":36845,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7369,"last_update":"2026-03-21T17:37:39.068089328Z"} +2026/03/21 17:37:44 [metric_collector] {"stage_name":"metric_collector","events_processed":22729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4545.8,"last_update":"2026-03-21T17:37:39.068491478Z"} +2026/03/21 17:37:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:37:39.077062126Z"} +2026/03/21 17:37:44 [detection_layer] {"stage_name":"detection_layer","events_processed":754,"events_dropped":0,"avg_latency_ms":19.102185615603048,"throughput_eps":0,"last_update":"2026-03-21T17:37:39.210304536Z"} +2026/03/21 17:37:44 [transform_engine] {"stage_name":"transform_engine","events_processed":757,"events_dropped":0,"avg_latency_ms":796.1054487096376,"throughput_eps":0,"last_update":"2026-03-21T17:37:39.21031697Z"} +2026/03/21 17:37:44 ───────────────────────────────────────────────── +2026/03/21 17:37:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:37:49 [log_collector] {"stage_name":"log_collector","events_processed":36858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7371.6,"last_update":"2026-03-21T17:37:44.068704144Z"} +2026/03/21 17:37:49 [metric_collector] {"stage_name":"metric_collector","events_processed":22734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4546.8,"last_update":"2026-03-21T17:37:44.068991343Z"} +2026/03/21 17:37:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:37:44.076402249Z"} +2026/03/21 17:37:49 [detection_layer] {"stage_name":"detection_layer","events_processed":754,"events_dropped":0,"avg_latency_ms":19.102185615603048,"throughput_eps":0,"last_update":"2026-03-21T17:37:44.209877988Z"} +2026/03/21 17:37:49 [transform_engine] {"stage_name":"transform_engine","events_processed":757,"events_dropped":0,"avg_latency_ms":796.1054487096376,"throughput_eps":0,"last_update":"2026-03-21T17:37:44.209679347Z"} +2026/03/21 17:37:49 ───────────────────────────────────────────────── +2026/03/21 17:37:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:37:54 [transform_engine] {"stage_name":"transform_engine","events_processed":758,"events_dropped":0,"avg_latency_ms":659.9106145677101,"throughput_eps":0,"last_update":"2026-03-21T17:37:49.32531504Z"} +2026/03/21 17:37:54 [log_collector] {"stage_name":"log_collector","events_processed":36859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7371.8,"last_update":"2026-03-21T17:37:49.068679605Z"} +2026/03/21 17:37:54 [metric_collector] {"stage_name":"metric_collector","events_processed":22739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4547.8,"last_update":"2026-03-21T17:37:49.068999648Z"} +2026/03/21 17:37:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:37:49.077943501Z"} +2026/03/21 17:37:54 [detection_layer] {"stage_name":"detection_layer","events_processed":754,"events_dropped":0,"avg_latency_ms":19.102185615603048,"throughput_eps":0,"last_update":"2026-03-21T17:37:49.210168031Z"} +2026/03/21 17:37:54 ───────────────────────────────────────────────── +2026/03/21 17:37:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:37:59 [detection_layer] {"stage_name":"detection_layer","events_processed":755,"events_dropped":0,"avg_latency_ms":19.77688109248244,"throughput_eps":0,"last_update":"2026-03-21T17:37:54.210807596Z"} +2026/03/21 17:37:59 [transform_engine] {"stage_name":"transform_engine","events_processed":758,"events_dropped":0,"avg_latency_ms":659.9106145677101,"throughput_eps":0,"last_update":"2026-03-21T17:37:54.20969786Z"} +2026/03/21 17:37:59 [log_collector] {"stage_name":"log_collector","events_processed":36859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7371.8,"last_update":"2026-03-21T17:37:54.068670597Z"} +2026/03/21 17:37:59 [metric_collector] {"stage_name":"metric_collector","events_processed":22744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4548.8,"last_update":"2026-03-21T17:37:54.06903203Z"} +2026/03/21 17:37:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:37:54.077389789Z"} +2026/03/21 17:37:59 ───────────────────────────────────────────────── +2026/03/21 17:38:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:38:04 [log_collector] {"stage_name":"log_collector","events_processed":36859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7371.8,"last_update":"2026-03-21T17:37:59.069149894Z"} +2026/03/21 17:38:04 [metric_collector] {"stage_name":"metric_collector","events_processed":22748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4549.6,"last_update":"2026-03-21T17:37:59.068972594Z"} +2026/03/21 17:38:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:37:59.079068393Z"} +2026/03/21 17:38:04 [detection_layer] {"stage_name":"detection_layer","events_processed":755,"events_dropped":0,"avg_latency_ms":19.77688109248244,"throughput_eps":0,"last_update":"2026-03-21T17:37:59.210400354Z"} +2026/03/21 17:38:04 [transform_engine] {"stage_name":"transform_engine","events_processed":758,"events_dropped":0,"avg_latency_ms":659.9106145677101,"throughput_eps":0,"last_update":"2026-03-21T17:37:59.210423228Z"} +2026/03/21 17:38:04 ───────────────────────────────────────────────── +2026/03/21 17:38:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:38:09 [log_collector] {"stage_name":"log_collector","events_processed":36859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7371.8,"last_update":"2026-03-21T17:38:04.068904503Z"} +2026/03/21 17:38:09 [metric_collector] {"stage_name":"metric_collector","events_processed":22754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4550.8,"last_update":"2026-03-21T17:38:04.069256958Z"} +2026/03/21 17:38:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:38:04.078416955Z"} +2026/03/21 17:38:09 [detection_layer] {"stage_name":"detection_layer","events_processed":755,"events_dropped":0,"avg_latency_ms":19.77688109248244,"throughput_eps":0,"last_update":"2026-03-21T17:38:04.210678807Z"} +2026/03/21 17:38:09 [transform_engine] {"stage_name":"transform_engine","events_processed":758,"events_dropped":0,"avg_latency_ms":659.9106145677101,"throughput_eps":0,"last_update":"2026-03-21T17:38:04.210719846Z"} +2026/03/21 17:38:09 ───────────────────────────────────────────────── +2026/03/21 17:38:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:38:14 [metric_collector] {"stage_name":"metric_collector","events_processed":22759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4551.8,"last_update":"2026-03-21T17:38:09.069385894Z"} +2026/03/21 17:38:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:38:09.079174885Z"} +2026/03/21 17:38:14 [detection_layer] {"stage_name":"detection_layer","events_processed":755,"events_dropped":0,"avg_latency_ms":19.77688109248244,"throughput_eps":0,"last_update":"2026-03-21T17:38:09.210492108Z"} +2026/03/21 17:38:14 [transform_engine] {"stage_name":"transform_engine","events_processed":758,"events_dropped":0,"avg_latency_ms":659.9106145677101,"throughput_eps":0,"last_update":"2026-03-21T17:38:09.210433355Z"} +2026/03/21 17:38:14 [log_collector] {"stage_name":"log_collector","events_processed":36859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7371.8,"last_update":"2026-03-21T17:38:09.06871027Z"} +2026/03/21 17:38:14 ───────────────────────────────────────────────── +2026/03/21 17:38:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:38:19 [log_collector] {"stage_name":"log_collector","events_processed":36859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7371.8,"last_update":"2026-03-21T17:38:14.068207706Z"} +2026/03/21 17:38:19 [metric_collector] {"stage_name":"metric_collector","events_processed":22763,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4552.6,"last_update":"2026-03-21T17:38:14.06816274Z"} +2026/03/21 17:38:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:38:14.077340431Z"} +2026/03/21 17:38:19 [detection_layer] {"stage_name":"detection_layer","events_processed":755,"events_dropped":0,"avg_latency_ms":19.77688109248244,"throughput_eps":0,"last_update":"2026-03-21T17:38:14.210538135Z"} +2026/03/21 17:38:19 [transform_engine] {"stage_name":"transform_engine","events_processed":758,"events_dropped":0,"avg_latency_ms":659.9106145677101,"throughput_eps":0,"last_update":"2026-03-21T17:38:14.210645542Z"} +2026/03/21 17:38:19 ───────────────────────────────────────────────── +2026/03/21 17:38:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:38:24 [transform_engine] {"stage_name":"transform_engine","events_processed":758,"events_dropped":0,"avg_latency_ms":659.9106145677101,"throughput_eps":0,"last_update":"2026-03-21T17:38:19.210386293Z"} +2026/03/21 17:38:24 [log_collector] {"stage_name":"log_collector","events_processed":36859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7371.8,"last_update":"2026-03-21T17:38:19.06883678Z"} +2026/03/21 17:38:24 [metric_collector] {"stage_name":"metric_collector","events_processed":22769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4553.8,"last_update":"2026-03-21T17:38:19.069173635Z"} +2026/03/21 17:38:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:38:19.07813932Z"} +2026/03/21 17:38:24 [detection_layer] {"stage_name":"detection_layer","events_processed":755,"events_dropped":0,"avg_latency_ms":19.77688109248244,"throughput_eps":0,"last_update":"2026-03-21T17:38:19.210470614Z"} +2026/03/21 17:38:24 ───────────────────────────────────────────────── +2026/03/21 17:38:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:38:29 [metric_collector] {"stage_name":"metric_collector","events_processed":22774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4554.8,"last_update":"2026-03-21T17:38:24.069622954Z"} +2026/03/21 17:38:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:38:24.077781522Z"} +2026/03/21 17:38:29 [detection_layer] {"stage_name":"detection_layer","events_processed":756,"events_dropped":0,"avg_latency_ms":20.135560473985954,"throughput_eps":0,"last_update":"2026-03-21T17:38:24.210045118Z"} +2026/03/21 17:38:29 [transform_engine] {"stage_name":"transform_engine","events_processed":759,"events_dropped":0,"avg_latency_ms":547.9988210541682,"throughput_eps":0,"last_update":"2026-03-21T17:38:24.210008357Z"} +2026/03/21 17:38:29 [log_collector] {"stage_name":"log_collector","events_processed":36859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7371.8,"last_update":"2026-03-21T17:38:24.069058954Z"} +2026/03/21 17:38:29 ───────────────────────────────────────────────── +2026/03/21 17:38:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:38:34 [transform_engine] {"stage_name":"transform_engine","events_processed":759,"events_dropped":0,"avg_latency_ms":547.9988210541682,"throughput_eps":0,"last_update":"2026-03-21T17:38:29.210632862Z"} +2026/03/21 17:38:34 [log_collector] {"stage_name":"log_collector","events_processed":36859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7371.8,"last_update":"2026-03-21T17:38:29.069052199Z"} +2026/03/21 17:38:34 [metric_collector] {"stage_name":"metric_collector","events_processed":22779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4555.8,"last_update":"2026-03-21T17:38:29.069202617Z"} +2026/03/21 17:38:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:38:29.078405285Z"} +2026/03/21 17:38:34 [detection_layer] {"stage_name":"detection_layer","events_processed":756,"events_dropped":0,"avg_latency_ms":20.135560473985954,"throughput_eps":0,"last_update":"2026-03-21T17:38:29.210667808Z"} +2026/03/21 17:38:34 ───────────────────────────────────────────────── +2026/03/21 17:38:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:38:39 [metric_collector] {"stage_name":"metric_collector","events_processed":22784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4556.8,"last_update":"2026-03-21T17:38:34.069216372Z"} +2026/03/21 17:38:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:38:34.079616714Z"} +2026/03/21 17:38:39 [detection_layer] {"stage_name":"detection_layer","events_processed":756,"events_dropped":0,"avg_latency_ms":20.135560473985954,"throughput_eps":0,"last_update":"2026-03-21T17:38:34.20990731Z"} +2026/03/21 17:38:39 [transform_engine] {"stage_name":"transform_engine","events_processed":759,"events_dropped":0,"avg_latency_ms":547.9988210541682,"throughput_eps":0,"last_update":"2026-03-21T17:38:34.20979265Z"} +2026/03/21 17:38:39 [log_collector] {"stage_name":"log_collector","events_processed":36859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7371.8,"last_update":"2026-03-21T17:38:39.068436328Z"} +2026/03/21 17:38:39 ───────────────────────────────────────────────── +2026/03/21 17:38:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:38:44 [log_collector] {"stage_name":"log_collector","events_processed":36859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7371.8,"last_update":"2026-03-21T17:38:44.068072952Z"} +2026/03/21 17:38:44 [metric_collector] {"stage_name":"metric_collector","events_processed":22789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4557.8,"last_update":"2026-03-21T17:38:39.069286406Z"} +2026/03/21 17:38:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:38:39.079154018Z"} +2026/03/21 17:38:44 [detection_layer] {"stage_name":"detection_layer","events_processed":756,"events_dropped":0,"avg_latency_ms":20.135560473985954,"throughput_eps":0,"last_update":"2026-03-21T17:38:39.210595399Z"} +2026/03/21 17:38:44 [transform_engine] {"stage_name":"transform_engine","events_processed":759,"events_dropped":0,"avg_latency_ms":547.9988210541682,"throughput_eps":0,"last_update":"2026-03-21T17:38:39.210647339Z"} +2026/03/21 17:38:44 ───────────────────────────────────────────────── +2026/03/21 17:38:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:38:49 [log_collector] {"stage_name":"log_collector","events_processed":36859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7371.8,"last_update":"2026-03-21T17:38:44.068072952Z"} +2026/03/21 17:38:49 [metric_collector] {"stage_name":"metric_collector","events_processed":22794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4558.8,"last_update":"2026-03-21T17:38:44.068697158Z"} +2026/03/21 17:38:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:38:44.078681072Z"} +2026/03/21 17:38:49 [detection_layer] {"stage_name":"detection_layer","events_processed":756,"events_dropped":0,"avg_latency_ms":20.135560473985954,"throughput_eps":0,"last_update":"2026-03-21T17:38:44.210101082Z"} +2026/03/21 17:38:49 [transform_engine] {"stage_name":"transform_engine","events_processed":759,"events_dropped":0,"avg_latency_ms":547.9988210541682,"throughput_eps":0,"last_update":"2026-03-21T17:38:44.210064361Z"} +2026/03/21 17:38:49 ───────────────────────────────────────────────── +Saved state: 27 clusters, 36860 messages, reason: none +2026/03/21 17:38:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:38:54 [transform_engine] {"stage_name":"transform_engine","events_processed":760,"events_dropped":0,"avg_latency_ms":453.12925524333457,"throughput_eps":0,"last_update":"2026-03-21T17:38:49.284184681Z"} +2026/03/21 17:38:54 [log_collector] {"stage_name":"log_collector","events_processed":36859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7371.8,"last_update":"2026-03-21T17:38:49.068669634Z"} +2026/03/21 17:38:54 [metric_collector] {"stage_name":"metric_collector","events_processed":22799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4559.8,"last_update":"2026-03-21T17:38:49.068998042Z"} +2026/03/21 17:38:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9122,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:38:49.077169996Z"} +2026/03/21 17:38:54 [detection_layer] {"stage_name":"detection_layer","events_processed":756,"events_dropped":0,"avg_latency_ms":20.135560473985954,"throughput_eps":0,"last_update":"2026-03-21T17:38:49.21042429Z"} +2026/03/21 17:38:54 ───────────────────────────────────────────────── +2026/03/21 17:38:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:38:59 [log_collector] {"stage_name":"log_collector","events_processed":36864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7372.8,"last_update":"2026-03-21T17:38:54.068466835Z"} +2026/03/21 17:38:59 [metric_collector] {"stage_name":"metric_collector","events_processed":22804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4560.8,"last_update":"2026-03-21T17:38:54.068920794Z"} +2026/03/21 17:38:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:38:54.075686313Z"} +2026/03/21 17:38:59 [detection_layer] {"stage_name":"detection_layer","events_processed":757,"events_dropped":0,"avg_latency_ms":20.574974179188764,"throughput_eps":0,"last_update":"2026-03-21T17:38:54.209920945Z"} +2026/03/21 17:38:59 [transform_engine] {"stage_name":"transform_engine","events_processed":760,"events_dropped":0,"avg_latency_ms":453.12925524333457,"throughput_eps":0,"last_update":"2026-03-21T17:38:54.210975936Z"} +2026/03/21 17:38:59 ───────────────────────────────────────────────── +2026/03/21 17:39:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:39:04 [metric_collector] {"stage_name":"metric_collector","events_processed":22809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4561.8,"last_update":"2026-03-21T17:38:59.068540965Z"} +2026/03/21 17:39:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9126,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:38:59.076731254Z"} +2026/03/21 17:39:04 [detection_layer] {"stage_name":"detection_layer","events_processed":757,"events_dropped":0,"avg_latency_ms":20.574974179188764,"throughput_eps":0,"last_update":"2026-03-21T17:38:59.210035873Z"} +2026/03/21 17:39:04 [transform_engine] {"stage_name":"transform_engine","events_processed":760,"events_dropped":0,"avg_latency_ms":453.12925524333457,"throughput_eps":0,"last_update":"2026-03-21T17:38:59.210052856Z"} +2026/03/21 17:39:04 [log_collector] {"stage_name":"log_collector","events_processed":36864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7372.8,"last_update":"2026-03-21T17:38:59.068109498Z"} +2026/03/21 17:39:04 ───────────────────────────────────────────────── +2026/03/21 17:39:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:39:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9128,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:39:04.075934658Z"} +2026/03/21 17:39:09 [detection_layer] {"stage_name":"detection_layer","events_processed":757,"events_dropped":0,"avg_latency_ms":20.574974179188764,"throughput_eps":0,"last_update":"2026-03-21T17:39:04.21238306Z"} +2026/03/21 17:39:09 [transform_engine] {"stage_name":"transform_engine","events_processed":760,"events_dropped":0,"avg_latency_ms":453.12925524333457,"throughput_eps":0,"last_update":"2026-03-21T17:39:04.212395214Z"} +2026/03/21 17:39:09 [log_collector] {"stage_name":"log_collector","events_processed":36864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7372.8,"last_update":"2026-03-21T17:39:04.068897769Z"} +2026/03/21 17:39:09 [metric_collector] {"stage_name":"metric_collector","events_processed":22814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4562.8,"last_update":"2026-03-21T17:39:04.069137858Z"} +2026/03/21 17:39:09 ───────────────────────────────────────────────── +2026/03/21 17:39:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:39:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9130,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:39:09.077854525Z"} +2026/03/21 17:39:14 [detection_layer] {"stage_name":"detection_layer","events_processed":757,"events_dropped":0,"avg_latency_ms":20.574974179188764,"throughput_eps":0,"last_update":"2026-03-21T17:39:09.210108032Z"} +2026/03/21 17:39:14 [transform_engine] {"stage_name":"transform_engine","events_processed":760,"events_dropped":0,"avg_latency_ms":453.12925524333457,"throughput_eps":0,"last_update":"2026-03-21T17:39:09.210144813Z"} +2026/03/21 17:39:14 [log_collector] {"stage_name":"log_collector","events_processed":36864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7372.8,"last_update":"2026-03-21T17:39:09.068971841Z"} +2026/03/21 17:39:14 [metric_collector] {"stage_name":"metric_collector","events_processed":22819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4563.8,"last_update":"2026-03-21T17:39:09.069374091Z"} +2026/03/21 17:39:14 ───────────────────────────────────────────────── +2026/03/21 17:39:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:39:19 [metric_collector] {"stage_name":"metric_collector","events_processed":22824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4564.8,"last_update":"2026-03-21T17:39:14.069151634Z"} +2026/03/21 17:39:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:39:14.076770479Z"} +2026/03/21 17:39:19 [detection_layer] {"stage_name":"detection_layer","events_processed":757,"events_dropped":0,"avg_latency_ms":20.574974179188764,"throughput_eps":0,"last_update":"2026-03-21T17:39:14.210038658Z"} +2026/03/21 17:39:19 [transform_engine] {"stage_name":"transform_engine","events_processed":760,"events_dropped":0,"avg_latency_ms":453.12925524333457,"throughput_eps":0,"last_update":"2026-03-21T17:39:14.210009392Z"} +2026/03/21 17:39:19 [log_collector] {"stage_name":"log_collector","events_processed":36864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7372.8,"last_update":"2026-03-21T17:39:14.068109247Z"} +2026/03/21 17:39:19 ───────────────────────────────────────────────── +2026/03/21 17:39:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:39:24 [log_collector] {"stage_name":"log_collector","events_processed":36864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7372.8,"last_update":"2026-03-21T17:39:19.068866198Z"} +2026/03/21 17:39:24 [metric_collector] {"stage_name":"metric_collector","events_processed":22829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4565.8,"last_update":"2026-03-21T17:39:19.068863432Z"} +2026/03/21 17:39:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:39:19.068646206Z"} +2026/03/21 17:39:24 [detection_layer] {"stage_name":"detection_layer","events_processed":757,"events_dropped":0,"avg_latency_ms":20.574974179188764,"throughput_eps":0,"last_update":"2026-03-21T17:39:19.210508017Z"} +2026/03/21 17:39:24 [transform_engine] {"stage_name":"transform_engine","events_processed":760,"events_dropped":0,"avg_latency_ms":453.12925524333457,"throughput_eps":0,"last_update":"2026-03-21T17:39:14.210009392Z"} +2026/03/21 17:39:24 ───────────────────────────────────────────────── +2026/03/21 17:39:24 [ANOMALY] time=2026-03-21T17:39:24Z score=0.8888 method=SEAD details=MAD!:w=0.34,s=0.85 RRCF-fast!:w=0.16,s=0.98 RRCF-mid!:w=0.12,s=0.98 RRCF-slow!:w=0.11,s=0.98 COPOD!:w=0.27,s=0.81 +2026/03/21 17:39:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:39:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:39:24.07956987Z"} +2026/03/21 17:39:29 [detection_layer] {"stage_name":"detection_layer","events_processed":757,"events_dropped":0,"avg_latency_ms":20.574974179188764,"throughput_eps":0,"last_update":"2026-03-21T17:39:24.210813041Z"} +2026/03/21 17:39:29 [transform_engine] {"stage_name":"transform_engine","events_processed":761,"events_dropped":0,"avg_latency_ms":1498.0429067946677,"throughput_eps":0,"last_update":"2026-03-21T17:39:24.888187656Z"} +2026/03/21 17:39:29 [log_collector] {"stage_name":"log_collector","events_processed":36864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7372.8,"last_update":"2026-03-21T17:39:24.069186931Z"} +2026/03/21 17:39:29 [metric_collector] {"stage_name":"metric_collector","events_processed":22834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4566.8,"last_update":"2026-03-21T17:39:24.069141243Z"} +2026/03/21 17:39:29 ───────────────────────────────────────────────── +2026/03/21 17:39:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:39:34 [log_collector] {"stage_name":"log_collector","events_processed":36864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7372.8,"last_update":"2026-03-21T17:39:29.068169171Z"} +2026/03/21 17:39:34 [metric_collector] {"stage_name":"metric_collector","events_processed":22839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4567.8,"last_update":"2026-03-21T17:39:29.068571691Z"} +2026/03/21 17:39:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:39:29.077659158Z"} +2026/03/21 17:39:34 [detection_layer] {"stage_name":"detection_layer","events_processed":758,"events_dropped":0,"avg_latency_ms":19.277714743351012,"throughput_eps":0,"last_update":"2026-03-21T17:39:29.209886485Z"} +2026/03/21 17:39:34 [transform_engine] {"stage_name":"transform_engine","events_processed":761,"events_dropped":0,"avg_latency_ms":1498.0429067946677,"throughput_eps":0,"last_update":"2026-03-21T17:39:29.20986872Z"} +2026/03/21 17:39:34 ───────────────────────────────────────────────── +2026/03/21 17:39:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:39:39 [metric_collector] {"stage_name":"metric_collector","events_processed":22844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4568.8,"last_update":"2026-03-21T17:39:34.068709404Z"} +2026/03/21 17:39:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:39:34.075344975Z"} +2026/03/21 17:39:39 [detection_layer] {"stage_name":"detection_layer","events_processed":758,"events_dropped":0,"avg_latency_ms":19.277714743351012,"throughput_eps":0,"last_update":"2026-03-21T17:39:34.210362155Z"} +2026/03/21 17:39:39 [transform_engine] {"stage_name":"transform_engine","events_processed":761,"events_dropped":0,"avg_latency_ms":1498.0429067946677,"throughput_eps":0,"last_update":"2026-03-21T17:39:34.210381533Z"} +2026/03/21 17:39:39 [log_collector] {"stage_name":"log_collector","events_processed":36867,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7373.4,"last_update":"2026-03-21T17:39:34.068733621Z"} +2026/03/21 17:39:39 ───────────────────────────────────────────────── +2026/03/21 17:39:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:39:44 [log_collector] {"stage_name":"log_collector","events_processed":36875,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7375,"last_update":"2026-03-21T17:39:39.068657946Z"} +2026/03/21 17:39:44 [metric_collector] {"stage_name":"metric_collector","events_processed":22849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4569.8,"last_update":"2026-03-21T17:39:39.069032895Z"} +2026/03/21 17:39:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:39:39.077110428Z"} +2026/03/21 17:39:44 [detection_layer] {"stage_name":"detection_layer","events_processed":758,"events_dropped":0,"avg_latency_ms":19.277714743351012,"throughput_eps":0,"last_update":"2026-03-21T17:39:39.209854684Z"} +2026/03/21 17:39:44 [transform_engine] {"stage_name":"transform_engine","events_processed":761,"events_dropped":0,"avg_latency_ms":1498.0429067946677,"throughput_eps":0,"last_update":"2026-03-21T17:39:39.209820619Z"} +2026/03/21 17:39:44 ───────────────────────────────────────────────── +2026/03/21 17:39:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:39:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:39:44.075903627Z"} +2026/03/21 17:39:49 [detection_layer] {"stage_name":"detection_layer","events_processed":758,"events_dropped":0,"avg_latency_ms":19.277714743351012,"throughput_eps":0,"last_update":"2026-03-21T17:39:44.210393596Z"} +2026/03/21 17:39:49 [transform_engine] {"stage_name":"transform_engine","events_processed":761,"events_dropped":0,"avg_latency_ms":1498.0429067946677,"throughput_eps":0,"last_update":"2026-03-21T17:39:44.2104057Z"} +2026/03/21 17:39:49 [log_collector] {"stage_name":"log_collector","events_processed":37035,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7407,"last_update":"2026-03-21T17:39:44.068182987Z"} +2026/03/21 17:39:49 [metric_collector] {"stage_name":"metric_collector","events_processed":22854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4570.8,"last_update":"2026-03-21T17:39:44.06836167Z"} +2026/03/21 17:39:49 ───────────────────────────────────────────────── +2026/03/21 17:39:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:39:54 [detection_layer] {"stage_name":"detection_layer","events_processed":758,"events_dropped":0,"avg_latency_ms":19.277714743351012,"throughput_eps":0,"last_update":"2026-03-21T17:39:49.210211048Z"} +2026/03/21 17:39:54 [transform_engine] {"stage_name":"transform_engine","events_processed":762,"events_dropped":0,"avg_latency_ms":1222.8475918357344,"throughput_eps":0,"last_update":"2026-03-21T17:39:49.332292408Z"} +2026/03/21 17:39:54 [log_collector] {"stage_name":"log_collector","events_processed":37219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7443.8,"last_update":"2026-03-21T17:39:49.068080642Z"} +2026/03/21 17:39:54 [metric_collector] {"stage_name":"metric_collector","events_processed":22859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4571.8,"last_update":"2026-03-21T17:39:49.06846083Z"} +2026/03/21 17:39:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:39:49.078479942Z"} +2026/03/21 17:39:54 ───────────────────────────────────────────────── +2026/03/21 17:39:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:39:59 [log_collector] {"stage_name":"log_collector","events_processed":37223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7444.6,"last_update":"2026-03-21T17:39:54.068889781Z"} +2026/03/21 17:39:59 [metric_collector] {"stage_name":"metric_collector","events_processed":22864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4572.8,"last_update":"2026-03-21T17:39:54.069155791Z"} +2026/03/21 17:39:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:39:54.07852666Z"} +2026/03/21 17:39:59 [detection_layer] {"stage_name":"detection_layer","events_processed":759,"events_dropped":0,"avg_latency_ms":18.885624194680812,"throughput_eps":0,"last_update":"2026-03-21T17:39:54.210809013Z"} +2026/03/21 17:39:59 [transform_engine] {"stage_name":"transform_engine","events_processed":762,"events_dropped":0,"avg_latency_ms":1222.8475918357344,"throughput_eps":0,"last_update":"2026-03-21T17:39:54.209682214Z"} +2026/03/21 17:39:59 ───────────────────────────────────────────────── +2026/03/21 17:40:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:40:04 [metric_collector] {"stage_name":"metric_collector","events_processed":22869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4573.8,"last_update":"2026-03-21T17:39:59.069268356Z"} +2026/03/21 17:40:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:39:59.078672439Z"} +2026/03/21 17:40:04 [detection_layer] {"stage_name":"detection_layer","events_processed":759,"events_dropped":0,"avg_latency_ms":18.885624194680812,"throughput_eps":0,"last_update":"2026-03-21T17:39:59.210059977Z"} +2026/03/21 17:40:04 [transform_engine] {"stage_name":"transform_engine","events_processed":762,"events_dropped":0,"avg_latency_ms":1222.8475918357344,"throughput_eps":0,"last_update":"2026-03-21T17:39:59.210076308Z"} +2026/03/21 17:40:04 [log_collector] {"stage_name":"log_collector","events_processed":37223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7444.6,"last_update":"2026-03-21T17:39:59.069190776Z"} +2026/03/21 17:40:04 ───────────────────────────────────────────────── +2026/03/21 17:40:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:40:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:40:04.087196348Z"} +2026/03/21 17:40:09 [detection_layer] {"stage_name":"detection_layer","events_processed":759,"events_dropped":0,"avg_latency_ms":18.885624194680812,"throughput_eps":0,"last_update":"2026-03-21T17:40:04.210392875Z"} +2026/03/21 17:40:09 [transform_engine] {"stage_name":"transform_engine","events_processed":762,"events_dropped":0,"avg_latency_ms":1222.8475918357344,"throughput_eps":0,"last_update":"2026-03-21T17:40:04.210404668Z"} +2026/03/21 17:40:09 [log_collector] {"stage_name":"log_collector","events_processed":37223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7444.6,"last_update":"2026-03-21T17:40:04.068588745Z"} +2026/03/21 17:40:09 [metric_collector] {"stage_name":"metric_collector","events_processed":22874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4574.8,"last_update":"2026-03-21T17:40:04.06891031Z"} +2026/03/21 17:40:09 ───────────────────────────────────────────────── +2026/03/21 17:40:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:40:14 [transform_engine] {"stage_name":"transform_engine","events_processed":762,"events_dropped":0,"avg_latency_ms":1222.8475918357344,"throughput_eps":0,"last_update":"2026-03-21T17:40:09.210513454Z"} +2026/03/21 17:40:14 [log_collector] {"stage_name":"log_collector","events_processed":37223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7444.6,"last_update":"2026-03-21T17:40:09.068931349Z"} +2026/03/21 17:40:14 [metric_collector] {"stage_name":"metric_collector","events_processed":22879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4575.8,"last_update":"2026-03-21T17:40:09.069454902Z"} +2026/03/21 17:40:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:40:09.078232115Z"} +2026/03/21 17:40:14 [detection_layer] {"stage_name":"detection_layer","events_processed":759,"events_dropped":0,"avg_latency_ms":18.885624194680812,"throughput_eps":0,"last_update":"2026-03-21T17:40:09.2105006Z"} +2026/03/21 17:40:14 ───────────────────────────────────────────────── +2026/03/21 17:40:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:40:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:40:14.078006473Z"} +2026/03/21 17:40:19 [detection_layer] {"stage_name":"detection_layer","events_processed":759,"events_dropped":0,"avg_latency_ms":18.885624194680812,"throughput_eps":0,"last_update":"2026-03-21T17:40:14.210251944Z"} +2026/03/21 17:40:19 [transform_engine] {"stage_name":"transform_engine","events_processed":762,"events_dropped":0,"avg_latency_ms":1222.8475918357344,"throughput_eps":0,"last_update":"2026-03-21T17:40:14.21026566Z"} +2026/03/21 17:40:19 [log_collector] {"stage_name":"log_collector","events_processed":37223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7444.6,"last_update":"2026-03-21T17:40:14.068065842Z"} +2026/03/21 17:40:19 [metric_collector] {"stage_name":"metric_collector","events_processed":22884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4576.8,"last_update":"2026-03-21T17:40:14.068535601Z"} +2026/03/21 17:40:19 ───────────────────────────────────────────────── +2026/03/21 17:40:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:40:24 [detection_layer] {"stage_name":"detection_layer","events_processed":759,"events_dropped":0,"avg_latency_ms":18.885624194680812,"throughput_eps":0,"last_update":"2026-03-21T17:40:19.210391902Z"} +2026/03/21 17:40:24 [transform_engine] {"stage_name":"transform_engine","events_processed":763,"events_dropped":0,"avg_latency_ms":1001.9017374685875,"throughput_eps":0,"last_update":"2026-03-21T17:40:19.328523267Z"} +2026/03/21 17:40:24 [log_collector] {"stage_name":"log_collector","events_processed":37223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7444.6,"last_update":"2026-03-21T17:40:19.068145233Z"} +2026/03/21 17:40:24 [metric_collector] {"stage_name":"metric_collector","events_processed":22889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4577.8,"last_update":"2026-03-21T17:40:19.06874368Z"} +2026/03/21 17:40:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:40:19.078158705Z"} +2026/03/21 17:40:24 ───────────────────────────────────────────────── +2026/03/21 17:40:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:40:29 [log_collector] {"stage_name":"log_collector","events_processed":37223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7444.6,"last_update":"2026-03-21T17:40:24.06874905Z"} +2026/03/21 17:40:29 [metric_collector] {"stage_name":"metric_collector","events_processed":22894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4578.8,"last_update":"2026-03-21T17:40:24.069066038Z"} +2026/03/21 17:40:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:40:24.077778426Z"} +2026/03/21 17:40:29 [detection_layer] {"stage_name":"detection_layer","events_processed":760,"events_dropped":0,"avg_latency_ms":19.82486775574465,"throughput_eps":0,"last_update":"2026-03-21T17:40:24.210826315Z"} +2026/03/21 17:40:29 [transform_engine] {"stage_name":"transform_engine","events_processed":763,"events_dropped":0,"avg_latency_ms":1001.9017374685875,"throughput_eps":0,"last_update":"2026-03-21T17:40:24.209703083Z"} +2026/03/21 17:40:29 ───────────────────────────────────────────────── +2026/03/21 17:40:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:40:34 [transform_engine] {"stage_name":"transform_engine","events_processed":763,"events_dropped":0,"avg_latency_ms":1001.9017374685875,"throughput_eps":0,"last_update":"2026-03-21T17:40:29.210477847Z"} +2026/03/21 17:40:34 [log_collector] {"stage_name":"log_collector","events_processed":37223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7444.6,"last_update":"2026-03-21T17:40:29.068753939Z"} +2026/03/21 17:40:34 [metric_collector] {"stage_name":"metric_collector","events_processed":22899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4579.8,"last_update":"2026-03-21T17:40:29.069309093Z"} +2026/03/21 17:40:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:40:29.078092598Z"} +2026/03/21 17:40:34 [detection_layer] {"stage_name":"detection_layer","events_processed":760,"events_dropped":0,"avg_latency_ms":19.82486775574465,"throughput_eps":0,"last_update":"2026-03-21T17:40:29.21046365Z"} +2026/03/21 17:40:34 ───────────────────────────────────────────────── +2026/03/21 17:40:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:40:39 [transform_engine] {"stage_name":"transform_engine","events_processed":763,"events_dropped":0,"avg_latency_ms":1001.9017374685875,"throughput_eps":0,"last_update":"2026-03-21T17:40:34.210295269Z"} +2026/03/21 17:40:39 [log_collector] {"stage_name":"log_collector","events_processed":37223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7444.6,"last_update":"2026-03-21T17:40:34.068375466Z"} +2026/03/21 17:40:39 [metric_collector] {"stage_name":"metric_collector","events_processed":22904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4580.8,"last_update":"2026-03-21T17:40:34.068803006Z"} +2026/03/21 17:40:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:40:34.077036076Z"} +2026/03/21 17:40:39 [detection_layer] {"stage_name":"detection_layer","events_processed":760,"events_dropped":0,"avg_latency_ms":19.82486775574465,"throughput_eps":0,"last_update":"2026-03-21T17:40:34.210284729Z"} +2026/03/21 17:40:39 ───────────────────────────────────────────────── +2026/03/21 17:40:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:40:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:40:39.077930491Z"} +2026/03/21 17:40:44 [detection_layer] {"stage_name":"detection_layer","events_processed":760,"events_dropped":0,"avg_latency_ms":19.82486775574465,"throughput_eps":0,"last_update":"2026-03-21T17:40:39.210346398Z"} +2026/03/21 17:40:44 [transform_engine] {"stage_name":"transform_engine","events_processed":763,"events_dropped":0,"avg_latency_ms":1001.9017374685875,"throughput_eps":0,"last_update":"2026-03-21T17:40:39.210402517Z"} +2026/03/21 17:40:44 [log_collector] {"stage_name":"log_collector","events_processed":37223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7444.6,"last_update":"2026-03-21T17:40:39.068769793Z"} +2026/03/21 17:40:44 [metric_collector] {"stage_name":"metric_collector","events_processed":22909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4581.8,"last_update":"2026-03-21T17:40:39.069078866Z"} +2026/03/21 17:40:44 ───────────────────────────────────────────────── +2026/03/21 17:40:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:40:49 [log_collector] {"stage_name":"log_collector","events_processed":37223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7444.6,"last_update":"2026-03-21T17:40:44.06866884Z"} +2026/03/21 17:40:49 [metric_collector] {"stage_name":"metric_collector","events_processed":22914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4582.8,"last_update":"2026-03-21T17:40:44.068940952Z"} +2026/03/21 17:40:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:40:44.078338483Z"} +2026/03/21 17:40:49 [detection_layer] {"stage_name":"detection_layer","events_processed":760,"events_dropped":0,"avg_latency_ms":19.82486775574465,"throughput_eps":0,"last_update":"2026-03-21T17:40:44.210835035Z"} +2026/03/21 17:40:49 [transform_engine] {"stage_name":"transform_engine","events_processed":763,"events_dropped":0,"avg_latency_ms":1001.9017374685875,"throughput_eps":0,"last_update":"2026-03-21T17:40:44.209669533Z"} +2026/03/21 17:40:49 ───────────────────────────────────────────────── +2026/03/21 17:40:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:40:54 [transform_engine] {"stage_name":"transform_engine","events_processed":764,"events_dropped":0,"avg_latency_ms":816.2229373748701,"throughput_eps":0,"last_update":"2026-03-21T17:40:49.283492282Z"} +2026/03/21 17:40:54 [log_collector] {"stage_name":"log_collector","events_processed":37223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7444.6,"last_update":"2026-03-21T17:40:49.068139346Z"} +2026/03/21 17:40:54 [metric_collector] {"stage_name":"metric_collector","events_processed":22919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4583.8,"last_update":"2026-03-21T17:40:49.068457786Z"} +2026/03/21 17:40:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9170,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:40:49.07867135Z"} +2026/03/21 17:40:54 [detection_layer] {"stage_name":"detection_layer","events_processed":760,"events_dropped":0,"avg_latency_ms":19.82486775574465,"throughput_eps":0,"last_update":"2026-03-21T17:40:49.209972112Z"} +2026/03/21 17:40:54 ───────────────────────────────────────────────── +2026/03/21 17:40:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:40:59 [log_collector] {"stage_name":"log_collector","events_processed":37223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7444.6,"last_update":"2026-03-21T17:40:54.068153181Z"} +2026/03/21 17:40:59 [metric_collector] {"stage_name":"metric_collector","events_processed":22924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4584.8,"last_update":"2026-03-21T17:40:54.068737461Z"} +2026/03/21 17:40:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:40:54.07905268Z"} +2026/03/21 17:40:59 [detection_layer] {"stage_name":"detection_layer","events_processed":761,"events_dropped":0,"avg_latency_ms":20.01493560459572,"throughput_eps":0,"last_update":"2026-03-21T17:40:54.210199457Z"} +2026/03/21 17:40:59 [transform_engine] {"stage_name":"transform_engine","events_processed":764,"events_dropped":0,"avg_latency_ms":816.2229373748701,"throughput_eps":0,"last_update":"2026-03-21T17:40:54.210171293Z"} +2026/03/21 17:40:59 ───────────────────────────────────────────────── +2026/03/21 17:41:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:41:04 [log_collector] {"stage_name":"log_collector","events_processed":37223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7444.6,"last_update":"2026-03-21T17:41:04.068152861Z"} +2026/03/21 17:41:04 [metric_collector] {"stage_name":"metric_collector","events_processed":22929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4585.8,"last_update":"2026-03-21T17:40:59.068982369Z"} +2026/03/21 17:41:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:40:59.078747084Z"} +2026/03/21 17:41:04 [detection_layer] {"stage_name":"detection_layer","events_processed":761,"events_dropped":0,"avg_latency_ms":20.01493560459572,"throughput_eps":0,"last_update":"2026-03-21T17:40:59.210178987Z"} +2026/03/21 17:41:04 [transform_engine] {"stage_name":"transform_engine","events_processed":764,"events_dropped":0,"avg_latency_ms":816.2229373748701,"throughput_eps":0,"last_update":"2026-03-21T17:40:59.210138338Z"} +2026/03/21 17:41:04 ───────────────────────────────────────────────── +2026/03/21 17:41:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:41:09 [transform_engine] {"stage_name":"transform_engine","events_processed":764,"events_dropped":0,"avg_latency_ms":816.2229373748701,"throughput_eps":0,"last_update":"2026-03-21T17:41:04.21073907Z"} +2026/03/21 17:41:09 [log_collector] {"stage_name":"log_collector","events_processed":37223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7444.6,"last_update":"2026-03-21T17:41:04.068152861Z"} +2026/03/21 17:41:09 [metric_collector] {"stage_name":"metric_collector","events_processed":22934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4586.8,"last_update":"2026-03-21T17:41:04.068941461Z"} +2026/03/21 17:41:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:41:04.077336814Z"} +2026/03/21 17:41:09 [detection_layer] {"stage_name":"detection_layer","events_processed":761,"events_dropped":0,"avg_latency_ms":20.01493560459572,"throughput_eps":0,"last_update":"2026-03-21T17:41:04.210705696Z"} +2026/03/21 17:41:09 ───────────────────────────────────────────────── +2026/03/21 17:41:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:41:14 [log_collector] {"stage_name":"log_collector","events_processed":37223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7444.6,"last_update":"2026-03-21T17:41:09.068622101Z"} +2026/03/21 17:41:14 [metric_collector] {"stage_name":"metric_collector","events_processed":22939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4587.8,"last_update":"2026-03-21T17:41:09.068945029Z"} +2026/03/21 17:41:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:41:09.078431752Z"} +2026/03/21 17:41:14 [detection_layer] {"stage_name":"detection_layer","events_processed":761,"events_dropped":0,"avg_latency_ms":20.01493560459572,"throughput_eps":0,"last_update":"2026-03-21T17:41:09.210877006Z"} +2026/03/21 17:41:14 [transform_engine] {"stage_name":"transform_engine","events_processed":764,"events_dropped":0,"avg_latency_ms":816.2229373748701,"throughput_eps":0,"last_update":"2026-03-21T17:41:09.209769273Z"} +2026/03/21 17:41:14 ───────────────────────────────────────────────── +Saved state: 27 clusters, 37224 messages, reason: none +2026/03/21 17:41:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:41:19 [transform_engine] {"stage_name":"transform_engine","events_processed":764,"events_dropped":0,"avg_latency_ms":816.2229373748701,"throughput_eps":0,"last_update":"2026-03-21T17:41:14.210155666Z"} +2026/03/21 17:41:19 [log_collector] {"stage_name":"log_collector","events_processed":37223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7444.6,"last_update":"2026-03-21T17:41:14.068076217Z"} +2026/03/21 17:41:19 [metric_collector] {"stage_name":"metric_collector","events_processed":22944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4588.8,"last_update":"2026-03-21T17:41:14.068340102Z"} +2026/03/21 17:41:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:41:14.075838636Z"} +2026/03/21 17:41:19 [detection_layer] {"stage_name":"detection_layer","events_processed":761,"events_dropped":0,"avg_latency_ms":20.01493560459572,"throughput_eps":0,"last_update":"2026-03-21T17:41:14.210226972Z"} +2026/03/21 17:41:19 ───────────────────────────────────────────────── +2026/03/21 17:41:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:41:24 [log_collector] {"stage_name":"log_collector","events_processed":37226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7445.2,"last_update":"2026-03-21T17:41:24.068064116Z"} +2026/03/21 17:41:24 [metric_collector] {"stage_name":"metric_collector","events_processed":22949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4589.8,"last_update":"2026-03-21T17:41:19.068692499Z"} +2026/03/21 17:41:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:41:19.077400409Z"} +2026/03/21 17:41:24 [detection_layer] {"stage_name":"detection_layer","events_processed":761,"events_dropped":0,"avg_latency_ms":20.01493560459572,"throughput_eps":0,"last_update":"2026-03-21T17:41:19.210619425Z"} +2026/03/21 17:41:24 [transform_engine] {"stage_name":"transform_engine","events_processed":765,"events_dropped":0,"avg_latency_ms":679.0190056998961,"throughput_eps":0,"last_update":"2026-03-21T17:41:19.340843924Z"} +2026/03/21 17:41:24 ───────────────────────────────────────────────── +2026/03/21 17:41:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:41:29 [log_collector] {"stage_name":"log_collector","events_processed":37226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7445.2,"last_update":"2026-03-21T17:41:24.068064116Z"} +2026/03/21 17:41:29 [metric_collector] {"stage_name":"metric_collector","events_processed":22954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4590.8,"last_update":"2026-03-21T17:41:24.068318433Z"} +2026/03/21 17:41:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:41:24.075210995Z"} +2026/03/21 17:41:29 [detection_layer] {"stage_name":"detection_layer","events_processed":762,"events_dropped":0,"avg_latency_ms":19.206882483676576,"throughput_eps":0,"last_update":"2026-03-21T17:41:24.210437287Z"} +2026/03/21 17:41:29 [transform_engine] {"stage_name":"transform_engine","events_processed":765,"events_dropped":0,"avg_latency_ms":679.0190056998961,"throughput_eps":0,"last_update":"2026-03-21T17:41:24.210448308Z"} +2026/03/21 17:41:29 ───────────────────────────────────────────────── +2026/03/21 17:41:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:41:34 [metric_collector] {"stage_name":"metric_collector","events_processed":22959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4591.8,"last_update":"2026-03-21T17:41:29.068517094Z"} +2026/03/21 17:41:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:41:29.0772022Z"} +2026/03/21 17:41:34 [detection_layer] {"stage_name":"detection_layer","events_processed":762,"events_dropped":0,"avg_latency_ms":19.206882483676576,"throughput_eps":0,"last_update":"2026-03-21T17:41:29.210499116Z"} +2026/03/21 17:41:34 [transform_engine] {"stage_name":"transform_engine","events_processed":765,"events_dropped":0,"avg_latency_ms":679.0190056998961,"throughput_eps":0,"last_update":"2026-03-21T17:41:29.210511981Z"} +2026/03/21 17:41:34 [log_collector] {"stage_name":"log_collector","events_processed":37237,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7447.4,"last_update":"2026-03-21T17:41:29.068168476Z"} +2026/03/21 17:41:34 ───────────────────────────────────────────────── +2026/03/21 17:41:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:41:39 [log_collector] {"stage_name":"log_collector","events_processed":37251,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7450.2,"last_update":"2026-03-21T17:41:34.068852748Z"} +2026/03/21 17:41:39 [metric_collector] {"stage_name":"metric_collector","events_processed":22964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4592.8,"last_update":"2026-03-21T17:41:34.069205053Z"} +2026/03/21 17:41:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:41:34.076627892Z"} +2026/03/21 17:41:39 [detection_layer] {"stage_name":"detection_layer","events_processed":762,"events_dropped":0,"avg_latency_ms":19.206882483676576,"throughput_eps":0,"last_update":"2026-03-21T17:41:34.209904407Z"} +2026/03/21 17:41:39 [transform_engine] {"stage_name":"transform_engine","events_processed":765,"events_dropped":0,"avg_latency_ms":679.0190056998961,"throughput_eps":0,"last_update":"2026-03-21T17:41:34.209799125Z"} +2026/03/21 17:41:39 ───────────────────────────────────────────────── +2026/03/21 17:41:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:41:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:41:39.076831952Z"} +2026/03/21 17:41:44 [detection_layer] {"stage_name":"detection_layer","events_processed":762,"events_dropped":0,"avg_latency_ms":19.206882483676576,"throughput_eps":0,"last_update":"2026-03-21T17:41:39.210097107Z"} +2026/03/21 17:41:44 [transform_engine] {"stage_name":"transform_engine","events_processed":765,"events_dropped":0,"avg_latency_ms":679.0190056998961,"throughput_eps":0,"last_update":"2026-03-21T17:41:39.210279566Z"} +2026/03/21 17:41:44 [log_collector] {"stage_name":"log_collector","events_processed":37253,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7450.6,"last_update":"2026-03-21T17:41:39.068429727Z"} +2026/03/21 17:41:44 [metric_collector] {"stage_name":"metric_collector","events_processed":22969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4593.8,"last_update":"2026-03-21T17:41:39.068838901Z"} +2026/03/21 17:41:44 ───────────────────────────────────────────────── +2026/03/21 17:41:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:41:49 [log_collector] {"stage_name":"log_collector","events_processed":37266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7453.2,"last_update":"2026-03-21T17:41:44.068639459Z"} +2026/03/21 17:41:49 [metric_collector] {"stage_name":"metric_collector","events_processed":22973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4594.6,"last_update":"2026-03-21T17:41:44.06863474Z"} +2026/03/21 17:41:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:41:44.078248315Z"} +2026/03/21 17:41:49 [detection_layer] {"stage_name":"detection_layer","events_processed":762,"events_dropped":0,"avg_latency_ms":19.206882483676576,"throughput_eps":0,"last_update":"2026-03-21T17:41:44.210491762Z"} +2026/03/21 17:41:49 [transform_engine] {"stage_name":"transform_engine","events_processed":765,"events_dropped":0,"avg_latency_ms":679.0190056998961,"throughput_eps":0,"last_update":"2026-03-21T17:41:44.210461864Z"} +2026/03/21 17:41:49 ───────────────────────────────────────────────── +2026/03/21 17:41:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:41:54 [transform_engine] {"stage_name":"transform_engine","events_processed":766,"events_dropped":0,"avg_latency_ms":567.4406273599169,"throughput_eps":0,"last_update":"2026-03-21T17:41:49.331537221Z"} +2026/03/21 17:41:54 [log_collector] {"stage_name":"log_collector","events_processed":37267,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7453.4,"last_update":"2026-03-21T17:41:49.068660961Z"} +2026/03/21 17:41:54 [metric_collector] {"stage_name":"metric_collector","events_processed":22979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4595.8,"last_update":"2026-03-21T17:41:49.068954043Z"} +2026/03/21 17:41:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:41:49.077134603Z"} +2026/03/21 17:41:54 [detection_layer] {"stage_name":"detection_layer","events_processed":762,"events_dropped":0,"avg_latency_ms":19.206882483676576,"throughput_eps":0,"last_update":"2026-03-21T17:41:49.210383025Z"} +2026/03/21 17:41:54 ───────────────────────────────────────────────── +2026/03/21 17:41:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:41:59 [transform_engine] {"stage_name":"transform_engine","events_processed":766,"events_dropped":0,"avg_latency_ms":567.4406273599169,"throughput_eps":0,"last_update":"2026-03-21T17:41:54.2100605Z"} +2026/03/21 17:41:59 [log_collector] {"stage_name":"log_collector","events_processed":37267,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7453.4,"last_update":"2026-03-21T17:41:54.068876085Z"} +2026/03/21 17:41:59 [metric_collector] {"stage_name":"metric_collector","events_processed":22983,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4596.6,"last_update":"2026-03-21T17:41:54.068882238Z"} +2026/03/21 17:41:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:41:54.078694334Z"} +2026/03/21 17:41:59 [detection_layer] {"stage_name":"detection_layer","events_processed":763,"events_dropped":0,"avg_latency_ms":19.35797758694126,"throughput_eps":0,"last_update":"2026-03-21T17:41:54.210048887Z"} +2026/03/21 17:41:59 ───────────────────────────────────────────────── +2026/03/21 17:42:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:42:04 [log_collector] {"stage_name":"log_collector","events_processed":37267,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7453.4,"last_update":"2026-03-21T17:41:59.06899898Z"} +2026/03/21 17:42:04 [metric_collector] {"stage_name":"metric_collector","events_processed":22989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4597.8,"last_update":"2026-03-21T17:41:59.069669505Z"} +2026/03/21 17:42:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:41:59.078627334Z"} +2026/03/21 17:42:04 [detection_layer] {"stage_name":"detection_layer","events_processed":763,"events_dropped":0,"avg_latency_ms":19.35797758694126,"throughput_eps":0,"last_update":"2026-03-21T17:41:59.210870791Z"} +2026/03/21 17:42:04 [transform_engine] {"stage_name":"transform_engine","events_processed":766,"events_dropped":0,"avg_latency_ms":567.4406273599169,"throughput_eps":0,"last_update":"2026-03-21T17:41:59.209717903Z"} +2026/03/21 17:42:04 ───────────────────────────────────────────────── +2026/03/21 17:42:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:42:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:42:04.079067047Z"} +2026/03/21 17:42:09 [detection_layer] {"stage_name":"detection_layer","events_processed":763,"events_dropped":0,"avg_latency_ms":19.35797758694126,"throughput_eps":0,"last_update":"2026-03-21T17:42:04.210388568Z"} +2026/03/21 17:42:09 [transform_engine] {"stage_name":"transform_engine","events_processed":766,"events_dropped":0,"avg_latency_ms":567.4406273599169,"throughput_eps":0,"last_update":"2026-03-21T17:42:04.210371265Z"} +2026/03/21 17:42:09 [log_collector] {"stage_name":"log_collector","events_processed":37267,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7453.4,"last_update":"2026-03-21T17:42:04.068278992Z"} +2026/03/21 17:42:09 [metric_collector] {"stage_name":"metric_collector","events_processed":22994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4598.8,"last_update":"2026-03-21T17:42:04.068941431Z"} +2026/03/21 17:42:09 ───────────────────────────────────────────────── +2026/03/21 17:42:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:42:14 [log_collector] {"stage_name":"log_collector","events_processed":37267,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7453.4,"last_update":"2026-03-21T17:42:09.06903908Z"} +2026/03/21 17:42:14 [metric_collector] {"stage_name":"metric_collector","events_processed":22999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4599.8,"last_update":"2026-03-21T17:42:09.069136506Z"} +2026/03/21 17:42:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:42:09.077505346Z"} +2026/03/21 17:42:14 [detection_layer] {"stage_name":"detection_layer","events_processed":763,"events_dropped":0,"avg_latency_ms":19.35797758694126,"throughput_eps":0,"last_update":"2026-03-21T17:42:09.21084826Z"} +2026/03/21 17:42:14 [transform_engine] {"stage_name":"transform_engine","events_processed":766,"events_dropped":0,"avg_latency_ms":567.4406273599169,"throughput_eps":0,"last_update":"2026-03-21T17:42:09.209670274Z"} +2026/03/21 17:42:14 ───────────────────────────────────────────────── +2026/03/21 17:42:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:42:19 [log_collector] {"stage_name":"log_collector","events_processed":37267,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7453.4,"last_update":"2026-03-21T17:42:14.068620098Z"} +2026/03/21 17:42:19 [metric_collector] {"stage_name":"metric_collector","events_processed":23004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4600.8,"last_update":"2026-03-21T17:42:14.069099917Z"} +2026/03/21 17:42:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:42:14.078581058Z"} +2026/03/21 17:42:19 [detection_layer] {"stage_name":"detection_layer","events_processed":763,"events_dropped":0,"avg_latency_ms":19.35797758694126,"throughput_eps":0,"last_update":"2026-03-21T17:42:14.210269513Z"} +2026/03/21 17:42:19 [transform_engine] {"stage_name":"transform_engine","events_processed":766,"events_dropped":0,"avg_latency_ms":567.4406273599169,"throughput_eps":0,"last_update":"2026-03-21T17:42:14.210282317Z"} +2026/03/21 17:42:19 ───────────────────────────────────────────────── +2026/03/21 17:42:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:42:24 [transform_engine] {"stage_name":"transform_engine","events_processed":767,"events_dropped":0,"avg_latency_ms":473.9176578879335,"throughput_eps":0,"last_update":"2026-03-21T17:42:19.309987367Z"} +2026/03/21 17:42:24 [log_collector] {"stage_name":"log_collector","events_processed":37267,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7453.4,"last_update":"2026-03-21T17:42:19.069057877Z"} +2026/03/21 17:42:24 [metric_collector] {"stage_name":"metric_collector","events_processed":23009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4601.8,"last_update":"2026-03-21T17:42:19.06924706Z"} +2026/03/21 17:42:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9206,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:42:19.079908653Z"} +2026/03/21 17:42:24 [detection_layer] {"stage_name":"detection_layer","events_processed":763,"events_dropped":0,"avg_latency_ms":19.35797758694126,"throughput_eps":0,"last_update":"2026-03-21T17:42:19.210146548Z"} +2026/03/21 17:42:24 ───────────────────────────────────────────────── +2026/03/21 17:42:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:42:29 [log_collector] {"stage_name":"log_collector","events_processed":37267,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7453.4,"last_update":"2026-03-21T17:42:24.068928291Z"} +2026/03/21 17:42:29 [metric_collector] {"stage_name":"metric_collector","events_processed":23014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4602.8,"last_update":"2026-03-21T17:42:24.069223296Z"} +2026/03/21 17:42:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:42:24.07848163Z"} +2026/03/21 17:42:29 [detection_layer] {"stage_name":"detection_layer","events_processed":764,"events_dropped":0,"avg_latency_ms":19.85501426955301,"throughput_eps":0,"last_update":"2026-03-21T17:42:24.209865862Z"} +2026/03/21 17:42:29 [transform_engine] {"stage_name":"transform_engine","events_processed":767,"events_dropped":0,"avg_latency_ms":473.9176578879335,"throughput_eps":0,"last_update":"2026-03-21T17:42:24.209635671Z"} +2026/03/21 17:42:29 ───────────────────────────────────────────────── +2026/03/21 17:42:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:42:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9210,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:42:29.079030152Z"} +2026/03/21 17:42:34 [detection_layer] {"stage_name":"detection_layer","events_processed":764,"events_dropped":0,"avg_latency_ms":19.85501426955301,"throughput_eps":0,"last_update":"2026-03-21T17:42:29.210312278Z"} +2026/03/21 17:42:34 [transform_engine] {"stage_name":"transform_engine","events_processed":767,"events_dropped":0,"avg_latency_ms":473.9176578879335,"throughput_eps":0,"last_update":"2026-03-21T17:42:29.210324312Z"} +2026/03/21 17:42:34 [log_collector] {"stage_name":"log_collector","events_processed":37267,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7453.4,"last_update":"2026-03-21T17:42:29.069119088Z"} +2026/03/21 17:42:34 [metric_collector] {"stage_name":"metric_collector","events_processed":23019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4603.8,"last_update":"2026-03-21T17:42:29.069735057Z"} +2026/03/21 17:42:34 ───────────────────────────────────────────────── +2026/03/21 17:42:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:42:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:42:34.07960795Z"} +2026/03/21 17:42:39 [detection_layer] {"stage_name":"detection_layer","events_processed":764,"events_dropped":0,"avg_latency_ms":19.85501426955301,"throughput_eps":0,"last_update":"2026-03-21T17:42:34.20985855Z"} +2026/03/21 17:42:39 [transform_engine] {"stage_name":"transform_engine","events_processed":767,"events_dropped":0,"avg_latency_ms":473.9176578879335,"throughput_eps":0,"last_update":"2026-03-21T17:42:34.20977559Z"} +2026/03/21 17:42:39 [log_collector] {"stage_name":"log_collector","events_processed":37267,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7453.4,"last_update":"2026-03-21T17:42:34.068874269Z"} +2026/03/21 17:42:39 [metric_collector] {"stage_name":"metric_collector","events_processed":23024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4604.8,"last_update":"2026-03-21T17:42:34.069655806Z"} +2026/03/21 17:42:39 ───────────────────────────────────────────────── +2026/03/21 17:42:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:42:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:42:39.078312388Z"} +2026/03/21 17:42:44 [detection_layer] {"stage_name":"detection_layer","events_processed":764,"events_dropped":0,"avg_latency_ms":19.85501426955301,"throughput_eps":0,"last_update":"2026-03-21T17:42:39.210671578Z"} +2026/03/21 17:42:44 [transform_engine] {"stage_name":"transform_engine","events_processed":767,"events_dropped":0,"avg_latency_ms":473.9176578879335,"throughput_eps":0,"last_update":"2026-03-21T17:42:39.210629437Z"} +2026/03/21 17:42:44 [log_collector] {"stage_name":"log_collector","events_processed":37267,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7453.4,"last_update":"2026-03-21T17:42:39.068254412Z"} +2026/03/21 17:42:44 [metric_collector] {"stage_name":"metric_collector","events_processed":23029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4605.8,"last_update":"2026-03-21T17:42:39.06848822Z"} +2026/03/21 17:42:44 ───────────────────────────────────────────────── +Saved state: 27 clusters, 37268 messages, reason: none +2026/03/21 17:42:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:42:49 [log_collector] {"stage_name":"log_collector","events_processed":37267,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7453.4,"last_update":"2026-03-21T17:42:44.068286135Z"} +2026/03/21 17:42:49 [metric_collector] {"stage_name":"metric_collector","events_processed":23034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4606.8,"last_update":"2026-03-21T17:42:44.068608273Z"} +2026/03/21 17:42:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:42:44.079424642Z"} +2026/03/21 17:42:49 [detection_layer] {"stage_name":"detection_layer","events_processed":764,"events_dropped":0,"avg_latency_ms":19.85501426955301,"throughput_eps":0,"last_update":"2026-03-21T17:42:44.210880701Z"} +2026/03/21 17:42:49 [transform_engine] {"stage_name":"transform_engine","events_processed":767,"events_dropped":0,"avg_latency_ms":473.9176578879335,"throughput_eps":0,"last_update":"2026-03-21T17:42:44.209673859Z"} +2026/03/21 17:42:49 ───────────────────────────────────────────────── +2026/03/21 17:42:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:42:54 [log_collector] {"stage_name":"log_collector","events_processed":37272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7454.4,"last_update":"2026-03-21T17:42:49.068890595Z"} +2026/03/21 17:42:54 [metric_collector] {"stage_name":"metric_collector","events_processed":23039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4607.8,"last_update":"2026-03-21T17:42:49.069158588Z"} +2026/03/21 17:42:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:42:49.080183366Z"} +2026/03/21 17:42:54 [detection_layer] {"stage_name":"detection_layer","events_processed":764,"events_dropped":0,"avg_latency_ms":19.85501426955301,"throughput_eps":0,"last_update":"2026-03-21T17:42:49.210332983Z"} +2026/03/21 17:42:54 [transform_engine] {"stage_name":"transform_engine","events_processed":768,"events_dropped":0,"avg_latency_ms":679.2606797103467,"throughput_eps":0,"last_update":"2026-03-21T17:42:50.711015856Z"} +2026/03/21 17:42:54 ───────────────────────────────────────────────── +2026/03/21 17:42:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:42:59 [transform_engine] {"stage_name":"transform_engine","events_processed":768,"events_dropped":0,"avg_latency_ms":679.2606797103467,"throughput_eps":0,"last_update":"2026-03-21T17:42:54.210122271Z"} +2026/03/21 17:42:59 [log_collector] {"stage_name":"log_collector","events_processed":37272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7454.4,"last_update":"2026-03-21T17:42:54.068138907Z"} +2026/03/21 17:42:59 [metric_collector] {"stage_name":"metric_collector","events_processed":23044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4608.8,"last_update":"2026-03-21T17:42:54.068670526Z"} +2026/03/21 17:42:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:42:54.075880296Z"} +2026/03/21 17:42:59 [detection_layer] {"stage_name":"detection_layer","events_processed":765,"events_dropped":0,"avg_latency_ms":19.594945815642408,"throughput_eps":0,"last_update":"2026-03-21T17:42:54.210100921Z"} +2026/03/21 17:42:59 ───────────────────────────────────────────────── +2026/03/21 17:43:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:43:04 [log_collector] {"stage_name":"log_collector","events_processed":37272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7454.4,"last_update":"2026-03-21T17:42:59.068973987Z"} +2026/03/21 17:43:04 [metric_collector] {"stage_name":"metric_collector","events_processed":23049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4609.8,"last_update":"2026-03-21T17:42:59.069236641Z"} +2026/03/21 17:43:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9222,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:42:59.079627325Z"} +2026/03/21 17:43:04 [detection_layer] {"stage_name":"detection_layer","events_processed":765,"events_dropped":0,"avg_latency_ms":19.594945815642408,"throughput_eps":0,"last_update":"2026-03-21T17:42:59.209963368Z"} +2026/03/21 17:43:04 [transform_engine] {"stage_name":"transform_engine","events_processed":768,"events_dropped":0,"avg_latency_ms":679.2606797103467,"throughput_eps":0,"last_update":"2026-03-21T17:42:59.209978517Z"} +2026/03/21 17:43:04 ───────────────────────────────────────────────── +2026/03/21 17:43:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:43:09 [detection_layer] {"stage_name":"detection_layer","events_processed":765,"events_dropped":0,"avg_latency_ms":19.594945815642408,"throughput_eps":0,"last_update":"2026-03-21T17:43:04.210071168Z"} +2026/03/21 17:43:09 [transform_engine] {"stage_name":"transform_engine","events_processed":768,"events_dropped":0,"avg_latency_ms":679.2606797103467,"throughput_eps":0,"last_update":"2026-03-21T17:43:04.210026242Z"} +2026/03/21 17:43:09 [log_collector] {"stage_name":"log_collector","events_processed":37272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7454.4,"last_update":"2026-03-21T17:43:04.068543827Z"} +2026/03/21 17:43:09 [metric_collector] {"stage_name":"metric_collector","events_processed":23054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4610.8,"last_update":"2026-03-21T17:43:04.068974001Z"} +2026/03/21 17:43:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:43:04.076733825Z"} +2026/03/21 17:43:09 ───────────────────────────────────────────────── +2026/03/21 17:43:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:43:14 [log_collector] {"stage_name":"log_collector","events_processed":37272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7454.4,"last_update":"2026-03-21T17:43:09.068301924Z"} +2026/03/21 17:43:14 [metric_collector] {"stage_name":"metric_collector","events_processed":23059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4611.8,"last_update":"2026-03-21T17:43:09.068647196Z"} +2026/03/21 17:43:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:43:09.079507578Z"} +2026/03/21 17:43:14 [detection_layer] {"stage_name":"detection_layer","events_processed":765,"events_dropped":0,"avg_latency_ms":19.594945815642408,"throughput_eps":0,"last_update":"2026-03-21T17:43:09.210548091Z"} +2026/03/21 17:43:14 [transform_engine] {"stage_name":"transform_engine","events_processed":768,"events_dropped":0,"avg_latency_ms":679.2606797103467,"throughput_eps":0,"last_update":"2026-03-21T17:43:09.210505139Z"} +2026/03/21 17:43:14 ───────────────────────────────────────────────── +2026/03/21 17:43:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:43:19 [log_collector] {"stage_name":"log_collector","events_processed":37272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7454.4,"last_update":"2026-03-21T17:43:14.068073787Z"} +2026/03/21 17:43:19 [metric_collector] {"stage_name":"metric_collector","events_processed":23064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4612.8,"last_update":"2026-03-21T17:43:14.068421463Z"} +2026/03/21 17:43:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:43:14.0758488Z"} +2026/03/21 17:43:19 [detection_layer] {"stage_name":"detection_layer","events_processed":765,"events_dropped":0,"avg_latency_ms":19.594945815642408,"throughput_eps":0,"last_update":"2026-03-21T17:43:14.210286391Z"} +2026/03/21 17:43:19 [transform_engine] {"stage_name":"transform_engine","events_processed":768,"events_dropped":0,"avg_latency_ms":679.2606797103467,"throughput_eps":0,"last_update":"2026-03-21T17:43:14.210243077Z"} +2026/03/21 17:43:19 ───────────────────────────────────────────────── +2026/03/21 17:43:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:43:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:43:19.075002161Z"} +2026/03/21 17:43:24 [detection_layer] {"stage_name":"detection_layer","events_processed":765,"events_dropped":0,"avg_latency_ms":19.594945815642408,"throughput_eps":0,"last_update":"2026-03-21T17:43:19.210251215Z"} +2026/03/21 17:43:24 [transform_engine] {"stage_name":"transform_engine","events_processed":769,"events_dropped":0,"avg_latency_ms":735.4179447682774,"throughput_eps":0,"last_update":"2026-03-21T17:43:20.17028301Z"} +2026/03/21 17:43:24 [log_collector] {"stage_name":"log_collector","events_processed":37272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7454.4,"last_update":"2026-03-21T17:43:19.068406506Z"} +2026/03/21 17:43:24 [metric_collector] {"stage_name":"metric_collector","events_processed":23069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4613.8,"last_update":"2026-03-21T17:43:19.068906444Z"} +2026/03/21 17:43:24 ───────────────────────────────────────────────── +2026/03/21 17:43:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:43:29 [detection_layer] {"stage_name":"detection_layer","events_processed":766,"events_dropped":0,"avg_latency_ms":18.010963452513927,"throughput_eps":0,"last_update":"2026-03-21T17:43:24.210468923Z"} +2026/03/21 17:43:29 [transform_engine] {"stage_name":"transform_engine","events_processed":769,"events_dropped":0,"avg_latency_ms":735.4179447682774,"throughput_eps":0,"last_update":"2026-03-21T17:43:24.210482218Z"} +2026/03/21 17:43:29 [log_collector] {"stage_name":"log_collector","events_processed":37272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7454.4,"last_update":"2026-03-21T17:43:24.068649923Z"} +2026/03/21 17:43:29 [metric_collector] {"stage_name":"metric_collector","events_processed":23074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4614.8,"last_update":"2026-03-21T17:43:24.068877599Z"} +2026/03/21 17:43:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:43:24.080213935Z"} +2026/03/21 17:43:29 ───────────────────────────────────────────────── +2026/03/21 17:43:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:43:34 [log_collector] {"stage_name":"log_collector","events_processed":37281,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7456.2,"last_update":"2026-03-21T17:43:29.068321176Z"} +2026/03/21 17:43:34 [metric_collector] {"stage_name":"metric_collector","events_processed":23079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4615.8,"last_update":"2026-03-21T17:43:29.068946815Z"} +2026/03/21 17:43:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:43:29.07630522Z"} +2026/03/21 17:43:34 [detection_layer] {"stage_name":"detection_layer","events_processed":766,"events_dropped":0,"avg_latency_ms":18.010963452513927,"throughput_eps":0,"last_update":"2026-03-21T17:43:29.210537246Z"} +2026/03/21 17:43:34 [transform_engine] {"stage_name":"transform_engine","events_processed":769,"events_dropped":0,"avg_latency_ms":735.4179447682774,"throughput_eps":0,"last_update":"2026-03-21T17:43:29.210556583Z"} +2026/03/21 17:43:34 ───────────────────────────────────────────────── +2026/03/21 17:43:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:43:39 [metric_collector] {"stage_name":"metric_collector","events_processed":23084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4616.8,"last_update":"2026-03-21T17:43:34.068324166Z"} +2026/03/21 17:43:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:43:34.078554231Z"} +2026/03/21 17:43:39 [detection_layer] {"stage_name":"detection_layer","events_processed":766,"events_dropped":0,"avg_latency_ms":18.010963452513927,"throughput_eps":0,"last_update":"2026-03-21T17:43:34.209862377Z"} +2026/03/21 17:43:39 [transform_engine] {"stage_name":"transform_engine","events_processed":769,"events_dropped":0,"avg_latency_ms":735.4179447682774,"throughput_eps":0,"last_update":"2026-03-21T17:43:34.209783887Z"} +2026/03/21 17:43:39 [log_collector] {"stage_name":"log_collector","events_processed":37283,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7456.6,"last_update":"2026-03-21T17:43:34.068127409Z"} +2026/03/21 17:43:39 ───────────────────────────────────────────────── +2026/03/21 17:43:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:43:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:43:39.076111144Z"} +2026/03/21 17:43:44 [detection_layer] {"stage_name":"detection_layer","events_processed":766,"events_dropped":0,"avg_latency_ms":18.010963452513927,"throughput_eps":0,"last_update":"2026-03-21T17:43:39.209875053Z"} +2026/03/21 17:43:44 [transform_engine] {"stage_name":"transform_engine","events_processed":769,"events_dropped":0,"avg_latency_ms":735.4179447682774,"throughput_eps":0,"last_update":"2026-03-21T17:43:39.209680862Z"} +2026/03/21 17:43:44 [log_collector] {"stage_name":"log_collector","events_processed":37611,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7522.2,"last_update":"2026-03-21T17:43:44.068068732Z"} +2026/03/21 17:43:44 [metric_collector] {"stage_name":"metric_collector","events_processed":23089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4617.8,"last_update":"2026-03-21T17:43:39.068298068Z"} +2026/03/21 17:43:44 ───────────────────────────────────────────────── +Saved state: 27 clusters, 37624 messages, reason: none +2026/03/21 17:43:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:43:49 [transform_engine] {"stage_name":"transform_engine","events_processed":769,"events_dropped":0,"avg_latency_ms":735.4179447682774,"throughput_eps":0,"last_update":"2026-03-21T17:43:44.209846803Z"} +2026/03/21 17:43:49 [log_collector] {"stage_name":"log_collector","events_processed":37611,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7522.2,"last_update":"2026-03-21T17:43:44.068068732Z"} +2026/03/21 17:43:49 [metric_collector] {"stage_name":"metric_collector","events_processed":23094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4618.8,"last_update":"2026-03-21T17:43:44.068318791Z"} +2026/03/21 17:43:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:43:44.074917851Z"} +2026/03/21 17:43:49 [detection_layer] {"stage_name":"detection_layer","events_processed":766,"events_dropped":0,"avg_latency_ms":18.010963452513927,"throughput_eps":0,"last_update":"2026-03-21T17:43:44.209869106Z"} +2026/03/21 17:43:49 ───────────────────────────────────────────────── +2026/03/21 17:43:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:43:54 [log_collector] {"stage_name":"log_collector","events_processed":37625,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7525,"last_update":"2026-03-21T17:43:49.068796206Z"} +2026/03/21 17:43:54 [metric_collector] {"stage_name":"metric_collector","events_processed":23099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4619.8,"last_update":"2026-03-21T17:43:49.06917989Z"} +2026/03/21 17:43:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:43:49.078050713Z"} +2026/03/21 17:43:54 [detection_layer] {"stage_name":"detection_layer","events_processed":766,"events_dropped":0,"avg_latency_ms":18.010963452513927,"throughput_eps":0,"last_update":"2026-03-21T17:43:49.210438396Z"} +2026/03/21 17:43:54 [transform_engine] {"stage_name":"transform_engine","events_processed":769,"events_dropped":0,"avg_latency_ms":735.4179447682774,"throughput_eps":0,"last_update":"2026-03-21T17:43:49.210386466Z"} +2026/03/21 17:43:54 ───────────────────────────────────────────────── +2026/03/21 17:43:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:43:59 [log_collector] {"stage_name":"log_collector","events_processed":37625,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7525,"last_update":"2026-03-21T17:43:54.068778194Z"} +2026/03/21 17:43:59 [metric_collector] {"stage_name":"metric_collector","events_processed":23104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4620.8,"last_update":"2026-03-21T17:43:54.069122844Z"} +2026/03/21 17:43:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:43:54.07876851Z"} +2026/03/21 17:43:59 [detection_layer] {"stage_name":"detection_layer","events_processed":767,"events_dropped":0,"avg_latency_ms":18.199941162011143,"throughput_eps":0,"last_update":"2026-03-21T17:43:54.210051698Z"} +2026/03/21 17:43:59 [transform_engine] {"stage_name":"transform_engine","events_processed":770,"events_dropped":0,"avg_latency_ms":611.950152614622,"throughput_eps":0,"last_update":"2026-03-21T17:43:54.210019747Z"} +2026/03/21 17:43:59 ───────────────────────────────────────────────── +2026/03/21 17:44:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:44:04 [transform_engine] {"stage_name":"transform_engine","events_processed":770,"events_dropped":0,"avg_latency_ms":611.950152614622,"throughput_eps":0,"last_update":"2026-03-21T17:43:59.210158446Z"} +2026/03/21 17:44:04 [log_collector] {"stage_name":"log_collector","events_processed":37625,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7525,"last_update":"2026-03-21T17:43:59.068663879Z"} +2026/03/21 17:44:04 [metric_collector] {"stage_name":"metric_collector","events_processed":23109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4621.8,"last_update":"2026-03-21T17:43:59.068849484Z"} +2026/03/21 17:44:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9246,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:43:59.075877697Z"} +2026/03/21 17:44:04 [detection_layer] {"stage_name":"detection_layer","events_processed":767,"events_dropped":0,"avg_latency_ms":18.199941162011143,"throughput_eps":0,"last_update":"2026-03-21T17:43:59.210128268Z"} +2026/03/21 17:44:04 ───────────────────────────────────────────────── +2026/03/21 17:44:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:44:09 [transform_engine] {"stage_name":"transform_engine","events_processed":770,"events_dropped":0,"avg_latency_ms":611.950152614622,"throughput_eps":0,"last_update":"2026-03-21T17:44:04.210213843Z"} +2026/03/21 17:44:09 [log_collector] {"stage_name":"log_collector","events_processed":37625,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7525,"last_update":"2026-03-21T17:44:04.068103346Z"} +2026/03/21 17:44:09 [metric_collector] {"stage_name":"metric_collector","events_processed":23114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4622.8,"last_update":"2026-03-21T17:44:04.068565812Z"} +2026/03/21 17:44:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:44:04.077933235Z"} +2026/03/21 17:44:09 [detection_layer] {"stage_name":"detection_layer","events_processed":767,"events_dropped":0,"avg_latency_ms":18.199941162011143,"throughput_eps":0,"last_update":"2026-03-21T17:44:04.210248279Z"} +2026/03/21 17:44:09 ───────────────────────────────────────────────── +2026/03/21 17:44:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:44:14 [log_collector] {"stage_name":"log_collector","events_processed":37625,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7525,"last_update":"2026-03-21T17:44:09.068910003Z"} +2026/03/21 17:44:14 [metric_collector] {"stage_name":"metric_collector","events_processed":23119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4623.8,"last_update":"2026-03-21T17:44:09.069286975Z"} +2026/03/21 17:44:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:44:09.078996946Z"} +2026/03/21 17:44:14 [detection_layer] {"stage_name":"detection_layer","events_processed":767,"events_dropped":0,"avg_latency_ms":18.199941162011143,"throughput_eps":0,"last_update":"2026-03-21T17:44:09.210242531Z"} +2026/03/21 17:44:14 [transform_engine] {"stage_name":"transform_engine","events_processed":770,"events_dropped":0,"avg_latency_ms":611.950152614622,"throughput_eps":0,"last_update":"2026-03-21T17:44:09.210304199Z"} +2026/03/21 17:44:14 ───────────────────────────────────────────────── +2026/03/21 17:44:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:44:19 [detection_layer] {"stage_name":"detection_layer","events_processed":767,"events_dropped":0,"avg_latency_ms":18.199941162011143,"throughput_eps":0,"last_update":"2026-03-21T17:44:14.210639061Z"} +2026/03/21 17:44:19 [transform_engine] {"stage_name":"transform_engine","events_processed":770,"events_dropped":0,"avg_latency_ms":611.950152614622,"throughput_eps":0,"last_update":"2026-03-21T17:44:14.210724033Z"} +2026/03/21 17:44:19 [log_collector] {"stage_name":"log_collector","events_processed":37625,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7525,"last_update":"2026-03-21T17:44:14.068836192Z"} +2026/03/21 17:44:19 [metric_collector] {"stage_name":"metric_collector","events_processed":23124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4624.8,"last_update":"2026-03-21T17:44:14.068972112Z"} +2026/03/21 17:44:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:44:14.080279703Z"} +2026/03/21 17:44:19 ───────────────────────────────────────────────── +2026/03/21 17:44:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:44:24 [detection_layer] {"stage_name":"detection_layer","events_processed":767,"events_dropped":0,"avg_latency_ms":18.199941162011143,"throughput_eps":0,"last_update":"2026-03-21T17:44:19.210948475Z"} +2026/03/21 17:44:24 [transform_engine] {"stage_name":"transform_engine","events_processed":771,"events_dropped":0,"avg_latency_ms":504.61564549169765,"throughput_eps":0,"last_update":"2026-03-21T17:44:19.285024862Z"} +2026/03/21 17:44:24 [log_collector] {"stage_name":"log_collector","events_processed":37625,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7525,"last_update":"2026-03-21T17:44:19.068274237Z"} +2026/03/21 17:44:24 [metric_collector] {"stage_name":"metric_collector","events_processed":23129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4625.8,"last_update":"2026-03-21T17:44:19.068851433Z"} +2026/03/21 17:44:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:44:19.077511362Z"} +2026/03/21 17:44:24 ───────────────────────────────────────────────── +2026/03/21 17:44:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:44:29 [log_collector] {"stage_name":"log_collector","events_processed":37625,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7525,"last_update":"2026-03-21T17:44:24.068574947Z"} +2026/03/21 17:44:29 [metric_collector] {"stage_name":"metric_collector","events_processed":23134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4626.8,"last_update":"2026-03-21T17:44:24.068853861Z"} +2026/03/21 17:44:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:44:24.078390339Z"} +2026/03/21 17:44:29 [detection_layer] {"stage_name":"detection_layer","events_processed":768,"events_dropped":0,"avg_latency_ms":18.983440329608914,"throughput_eps":0,"last_update":"2026-03-21T17:44:24.210860641Z"} +2026/03/21 17:44:29 [transform_engine] {"stage_name":"transform_engine","events_processed":771,"events_dropped":0,"avg_latency_ms":504.61564549169765,"throughput_eps":0,"last_update":"2026-03-21T17:44:24.209695118Z"} +2026/03/21 17:44:29 ───────────────────────────────────────────────── +2026/03/21 17:44:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:44:34 [log_collector] {"stage_name":"log_collector","events_processed":37625,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7525,"last_update":"2026-03-21T17:44:29.068738252Z"} +2026/03/21 17:44:34 [metric_collector] {"stage_name":"metric_collector","events_processed":23139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4627.8,"last_update":"2026-03-21T17:44:29.069004112Z"} +2026/03/21 17:44:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:44:29.077400967Z"} +2026/03/21 17:44:34 [detection_layer] {"stage_name":"detection_layer","events_processed":768,"events_dropped":0,"avg_latency_ms":18.983440329608914,"throughput_eps":0,"last_update":"2026-03-21T17:44:29.210636264Z"} +2026/03/21 17:44:34 [transform_engine] {"stage_name":"transform_engine","events_processed":771,"events_dropped":0,"avg_latency_ms":504.61564549169765,"throughput_eps":0,"last_update":"2026-03-21T17:44:29.210647785Z"} +2026/03/21 17:44:34 ───────────────────────────────────────────────── +2026/03/21 17:44:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:44:39 [transform_engine] {"stage_name":"transform_engine","events_processed":771,"events_dropped":0,"avg_latency_ms":504.61564549169765,"throughput_eps":0,"last_update":"2026-03-21T17:44:34.210390574Z"} +2026/03/21 17:44:39 [log_collector] {"stage_name":"log_collector","events_processed":37625,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7525,"last_update":"2026-03-21T17:44:34.068621912Z"} +2026/03/21 17:44:39 [metric_collector] {"stage_name":"metric_collector","events_processed":23144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4628.8,"last_update":"2026-03-21T17:44:34.068966783Z"} +2026/03/21 17:44:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:44:34.0778141Z"} +2026/03/21 17:44:39 [detection_layer] {"stage_name":"detection_layer","events_processed":768,"events_dropped":0,"avg_latency_ms":18.983440329608914,"throughput_eps":0,"last_update":"2026-03-21T17:44:34.210382058Z"} +2026/03/21 17:44:39 ───────────────────────────────────────────────── +2026/03/21 17:44:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:44:44 [log_collector] {"stage_name":"log_collector","events_processed":37625,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7525,"last_update":"2026-03-21T17:44:44.068103322Z"} +2026/03/21 17:44:44 [metric_collector] {"stage_name":"metric_collector","events_processed":23149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4629.8,"last_update":"2026-03-21T17:44:39.068796679Z"} +2026/03/21 17:44:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:44:39.07794861Z"} +2026/03/21 17:44:44 [detection_layer] {"stage_name":"detection_layer","events_processed":768,"events_dropped":0,"avg_latency_ms":18.983440329608914,"throughput_eps":0,"last_update":"2026-03-21T17:44:39.210248535Z"} +2026/03/21 17:44:44 [transform_engine] {"stage_name":"transform_engine","events_processed":771,"events_dropped":0,"avg_latency_ms":504.61564549169765,"throughput_eps":0,"last_update":"2026-03-21T17:44:39.210265288Z"} +2026/03/21 17:44:44 ───────────────────────────────────────────────── +2026/03/21 17:44:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:44:49 [log_collector] {"stage_name":"log_collector","events_processed":37625,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7525,"last_update":"2026-03-21T17:44:44.068103322Z"} +2026/03/21 17:44:49 [metric_collector] {"stage_name":"metric_collector","events_processed":23154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4630.8,"last_update":"2026-03-21T17:44:44.068960464Z"} +2026/03/21 17:44:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:44:44.077924295Z"} +2026/03/21 17:44:49 [detection_layer] {"stage_name":"detection_layer","events_processed":768,"events_dropped":0,"avg_latency_ms":18.983440329608914,"throughput_eps":0,"last_update":"2026-03-21T17:44:44.210172191Z"} +2026/03/21 17:44:49 [transform_engine] {"stage_name":"transform_engine","events_processed":771,"events_dropped":0,"avg_latency_ms":504.61564549169765,"throughput_eps":0,"last_update":"2026-03-21T17:44:44.210184514Z"} +2026/03/21 17:44:49 ───────────────────────────────────────────────── +2026/03/21 17:44:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:44:54 [log_collector] {"stage_name":"log_collector","events_processed":37625,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7525,"last_update":"2026-03-21T17:44:49.068153501Z"} +2026/03/21 17:44:54 [metric_collector] {"stage_name":"metric_collector","events_processed":23159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4631.8,"last_update":"2026-03-21T17:44:49.068472913Z"} +2026/03/21 17:44:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:44:49.078483789Z"} +2026/03/21 17:44:54 [detection_layer] {"stage_name":"detection_layer","events_processed":768,"events_dropped":0,"avg_latency_ms":18.983440329608914,"throughput_eps":0,"last_update":"2026-03-21T17:44:49.210867444Z"} +2026/03/21 17:44:54 [transform_engine] {"stage_name":"transform_engine","events_processed":772,"events_dropped":0,"avg_latency_ms":420.53202919335814,"throughput_eps":0,"last_update":"2026-03-21T17:44:49.29392812Z"} +2026/03/21 17:44:54 ───────────────────────────────────────────────── +2026/03/21 17:44:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:44:59 [detection_layer] {"stage_name":"detection_layer","events_processed":769,"events_dropped":0,"avg_latency_ms":20.188106863687132,"throughput_eps":0,"last_update":"2026-03-21T17:44:54.210284532Z"} +2026/03/21 17:44:59 [transform_engine] {"stage_name":"transform_engine","events_processed":772,"events_dropped":0,"avg_latency_ms":420.53202919335814,"throughput_eps":0,"last_update":"2026-03-21T17:44:54.210291655Z"} +2026/03/21 17:44:59 [log_collector] {"stage_name":"log_collector","events_processed":37625,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7525,"last_update":"2026-03-21T17:44:54.068088891Z"} +2026/03/21 17:44:59 [metric_collector] {"stage_name":"metric_collector","events_processed":23164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4632.8,"last_update":"2026-03-21T17:44:54.068682728Z"} +2026/03/21 17:44:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:44:54.078974182Z"} +2026/03/21 17:44:59 ───────────────────────────────────────────────── +2026/03/21 17:45:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:45:04 [log_collector] {"stage_name":"log_collector","events_processed":37625,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7525,"last_update":"2026-03-21T17:44:59.068919735Z"} +2026/03/21 17:45:04 [metric_collector] {"stage_name":"metric_collector","events_processed":23169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4633.8,"last_update":"2026-03-21T17:44:59.069185033Z"} +2026/03/21 17:45:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:44:59.078067308Z"} +2026/03/21 17:45:04 [detection_layer] {"stage_name":"detection_layer","events_processed":769,"events_dropped":0,"avg_latency_ms":20.188106863687132,"throughput_eps":0,"last_update":"2026-03-21T17:44:59.210333628Z"} +2026/03/21 17:45:04 [transform_engine] {"stage_name":"transform_engine","events_processed":772,"events_dropped":0,"avg_latency_ms":420.53202919335814,"throughput_eps":0,"last_update":"2026-03-21T17:44:59.210346494Z"} +2026/03/21 17:45:04 ───────────────────────────────────────────────── +Saved state: 27 clusters, 37626 messages, reason: none +2026/03/21 17:45:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:45:09 [log_collector] {"stage_name":"log_collector","events_processed":37625,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7525,"last_update":"2026-03-21T17:45:04.068965514Z"} +2026/03/21 17:45:09 [metric_collector] {"stage_name":"metric_collector","events_processed":23174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4634.8,"last_update":"2026-03-21T17:45:04.069185845Z"} +2026/03/21 17:45:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:45:04.077877765Z"} +2026/03/21 17:45:09 [detection_layer] {"stage_name":"detection_layer","events_processed":769,"events_dropped":0,"avg_latency_ms":20.188106863687132,"throughput_eps":0,"last_update":"2026-03-21T17:45:04.210254217Z"} +2026/03/21 17:45:09 [transform_engine] {"stage_name":"transform_engine","events_processed":772,"events_dropped":0,"avg_latency_ms":420.53202919335814,"throughput_eps":0,"last_update":"2026-03-21T17:45:04.210270347Z"} +2026/03/21 17:45:09 ───────────────────────────────────────────────── +2026/03/21 17:45:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:45:14 [detection_layer] {"stage_name":"detection_layer","events_processed":769,"events_dropped":0,"avg_latency_ms":20.188106863687132,"throughput_eps":0,"last_update":"2026-03-21T17:45:09.210803511Z"} +2026/03/21 17:45:14 [transform_engine] {"stage_name":"transform_engine","events_processed":772,"events_dropped":0,"avg_latency_ms":420.53202919335814,"throughput_eps":0,"last_update":"2026-03-21T17:45:09.209691131Z"} +2026/03/21 17:45:14 [log_collector] {"stage_name":"log_collector","events_processed":37628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7525.6,"last_update":"2026-03-21T17:45:09.068885813Z"} +2026/03/21 17:45:14 [metric_collector] {"stage_name":"metric_collector","events_processed":23179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4635.8,"last_update":"2026-03-21T17:45:09.068877386Z"} +2026/03/21 17:45:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:45:09.080561638Z"} +2026/03/21 17:45:14 ───────────────────────────────────────────────── +2026/03/21 17:45:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:45:19 [metric_collector] {"stage_name":"metric_collector","events_processed":23184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4636.8,"last_update":"2026-03-21T17:45:14.068597113Z"} +2026/03/21 17:45:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9276,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:45:14.074819132Z"} +2026/03/21 17:45:19 [detection_layer] {"stage_name":"detection_layer","events_processed":769,"events_dropped":0,"avg_latency_ms":20.188106863687132,"throughput_eps":0,"last_update":"2026-03-21T17:45:14.210029542Z"} +2026/03/21 17:45:19 [transform_engine] {"stage_name":"transform_engine","events_processed":772,"events_dropped":0,"avg_latency_ms":420.53202919335814,"throughput_eps":0,"last_update":"2026-03-21T17:45:14.210039241Z"} +2026/03/21 17:45:19 [log_collector] {"stage_name":"log_collector","events_processed":37628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7525.6,"last_update":"2026-03-21T17:45:14.068609587Z"} +2026/03/21 17:45:19 ───────────────────────────────────────────────── +2026/03/21 17:45:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:45:24 [log_collector] {"stage_name":"log_collector","events_processed":37644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7528.8,"last_update":"2026-03-21T17:45:19.068245682Z"} +2026/03/21 17:45:24 [metric_collector] {"stage_name":"metric_collector","events_processed":23189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4637.8,"last_update":"2026-03-21T17:45:19.068241083Z"} +2026/03/21 17:45:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:45:19.085052126Z"} +2026/03/21 17:45:24 [detection_layer] {"stage_name":"detection_layer","events_processed":769,"events_dropped":0,"avg_latency_ms":20.188106863687132,"throughput_eps":0,"last_update":"2026-03-21T17:45:19.210773129Z"} +2026/03/21 17:45:24 [transform_engine] {"stage_name":"transform_engine","events_processed":773,"events_dropped":0,"avg_latency_ms":355.4172143546865,"throughput_eps":0,"last_update":"2026-03-21T17:45:19.304658619Z"} +2026/03/21 17:45:24 ───────────────────────────────────────────────── +2026/03/21 17:45:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:45:29 [log_collector] {"stage_name":"log_collector","events_processed":37655,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7531,"last_update":"2026-03-21T17:45:24.06894856Z"} +2026/03/21 17:45:29 [metric_collector] {"stage_name":"metric_collector","events_processed":23194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4638.8,"last_update":"2026-03-21T17:45:24.069221062Z"} +2026/03/21 17:45:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:45:24.075630621Z"} +2026/03/21 17:45:29 [detection_layer] {"stage_name":"detection_layer","events_processed":770,"events_dropped":0,"avg_latency_ms":19.372657690949705,"throughput_eps":0,"last_update":"2026-03-21T17:45:24.209992716Z"} +2026/03/21 17:45:29 [transform_engine] {"stage_name":"transform_engine","events_processed":773,"events_dropped":0,"avg_latency_ms":355.4172143546865,"throughput_eps":0,"last_update":"2026-03-21T17:45:24.209950374Z"} +2026/03/21 17:45:29 ───────────────────────────────────────────────── +2026/03/21 17:45:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:45:34 [detection_layer] {"stage_name":"detection_layer","events_processed":770,"events_dropped":0,"avg_latency_ms":19.372657690949705,"throughput_eps":0,"last_update":"2026-03-21T17:45:29.210093553Z"} +2026/03/21 17:45:34 [transform_engine] {"stage_name":"transform_engine","events_processed":773,"events_dropped":0,"avg_latency_ms":355.4172143546865,"throughput_eps":0,"last_update":"2026-03-21T17:45:29.210061971Z"} +2026/03/21 17:45:34 [log_collector] {"stage_name":"log_collector","events_processed":37668,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7533.6,"last_update":"2026-03-21T17:45:29.068740424Z"} +2026/03/21 17:45:34 [metric_collector] {"stage_name":"metric_collector","events_processed":23199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4639.8,"last_update":"2026-03-21T17:45:29.068844364Z"} +2026/03/21 17:45:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:45:29.075792082Z"} +2026/03/21 17:45:34 ───────────────────────────────────────────────── +2026/03/21 17:45:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:45:39 [log_collector] {"stage_name":"log_collector","events_processed":37669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7533.8,"last_update":"2026-03-21T17:45:34.068074551Z"} +2026/03/21 17:45:39 [metric_collector] {"stage_name":"metric_collector","events_processed":23204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4640.8,"last_update":"2026-03-21T17:45:34.068271198Z"} +2026/03/21 17:45:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:45:34.077620919Z"} +2026/03/21 17:45:39 [detection_layer] {"stage_name":"detection_layer","events_processed":770,"events_dropped":0,"avg_latency_ms":19.372657690949705,"throughput_eps":0,"last_update":"2026-03-21T17:45:34.210920078Z"} +2026/03/21 17:45:39 [transform_engine] {"stage_name":"transform_engine","events_processed":773,"events_dropped":0,"avg_latency_ms":355.4172143546865,"throughput_eps":0,"last_update":"2026-03-21T17:45:34.209780575Z"} +2026/03/21 17:45:39 ───────────────────────────────────────────────── +2026/03/21 17:45:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:45:44 [log_collector] {"stage_name":"log_collector","events_processed":37669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7533.8,"last_update":"2026-03-21T17:45:39.068418823Z"} +2026/03/21 17:45:44 [metric_collector] {"stage_name":"metric_collector","events_processed":23209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4641.8,"last_update":"2026-03-21T17:45:39.06854239Z"} +2026/03/21 17:45:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9286,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:45:39.076940708Z"} +2026/03/21 17:45:44 [detection_layer] {"stage_name":"detection_layer","events_processed":770,"events_dropped":0,"avg_latency_ms":19.372657690949705,"throughput_eps":0,"last_update":"2026-03-21T17:45:39.210141398Z"} +2026/03/21 17:45:44 [transform_engine] {"stage_name":"transform_engine","events_processed":773,"events_dropped":0,"avg_latency_ms":355.4172143546865,"throughput_eps":0,"last_update":"2026-03-21T17:45:39.210169262Z"} +2026/03/21 17:45:44 ───────────────────────────────────────────────── +2026/03/21 17:45:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:45:49 [log_collector] {"stage_name":"log_collector","events_processed":37669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7533.8,"last_update":"2026-03-21T17:45:44.069129707Z"} +2026/03/21 17:45:49 [metric_collector] {"stage_name":"metric_collector","events_processed":23214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4642.8,"last_update":"2026-03-21T17:45:44.069118857Z"} +2026/03/21 17:45:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:45:44.086676539Z"} +2026/03/21 17:45:49 [detection_layer] {"stage_name":"detection_layer","events_processed":770,"events_dropped":0,"avg_latency_ms":19.372657690949705,"throughput_eps":0,"last_update":"2026-03-21T17:45:44.210633313Z"} +2026/03/21 17:45:49 [transform_engine] {"stage_name":"transform_engine","events_processed":773,"events_dropped":0,"avg_latency_ms":355.4172143546865,"throughput_eps":0,"last_update":"2026-03-21T17:45:44.210599077Z"} +2026/03/21 17:45:49 ───────────────────────────────────────────────── +2026/03/21 17:45:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:45:54 [transform_engine] {"stage_name":"transform_engine","events_processed":774,"events_dropped":0,"avg_latency_ms":305.9567330837492,"throughput_eps":0,"last_update":"2026-03-21T17:45:49.318318319Z"} +2026/03/21 17:45:54 [log_collector] {"stage_name":"log_collector","events_processed":37669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7533.8,"last_update":"2026-03-21T17:45:49.068655021Z"} +2026/03/21 17:45:54 [metric_collector] {"stage_name":"metric_collector","events_processed":23219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4643.8,"last_update":"2026-03-21T17:45:49.068741606Z"} +2026/03/21 17:45:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:45:49.076829518Z"} +2026/03/21 17:45:54 [detection_layer] {"stage_name":"detection_layer","events_processed":770,"events_dropped":0,"avg_latency_ms":19.372657690949705,"throughput_eps":0,"last_update":"2026-03-21T17:45:49.210169977Z"} +2026/03/21 17:45:54 ───────────────────────────────────────────────── +2026/03/21 17:45:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:45:59 [metric_collector] {"stage_name":"metric_collector","events_processed":23224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4644.8,"last_update":"2026-03-21T17:45:54.068437516Z"} +2026/03/21 17:45:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:45:54.074203392Z"} +2026/03/21 17:45:59 [detection_layer] {"stage_name":"detection_layer","events_processed":771,"events_dropped":0,"avg_latency_ms":19.226143352759763,"throughput_eps":0,"last_update":"2026-03-21T17:45:54.210725875Z"} +2026/03/21 17:45:59 [transform_engine] {"stage_name":"transform_engine","events_processed":774,"events_dropped":0,"avg_latency_ms":305.9567330837492,"throughput_eps":0,"last_update":"2026-03-21T17:45:54.210617046Z"} +2026/03/21 17:45:59 [log_collector] {"stage_name":"log_collector","events_processed":37669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7533.8,"last_update":"2026-03-21T17:45:54.068073279Z"} +2026/03/21 17:45:59 ───────────────────────────────────────────────── +2026/03/21 17:46:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:46:04 [log_collector] {"stage_name":"log_collector","events_processed":37669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7533.8,"last_update":"2026-03-21T17:45:59.068775698Z"} +2026/03/21 17:46:04 [metric_collector] {"stage_name":"metric_collector","events_processed":23229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4645.8,"last_update":"2026-03-21T17:45:59.068893723Z"} +2026/03/21 17:46:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:45:59.074891743Z"} +2026/03/21 17:46:04 [detection_layer] {"stage_name":"detection_layer","events_processed":771,"events_dropped":0,"avg_latency_ms":19.226143352759763,"throughput_eps":0,"last_update":"2026-03-21T17:45:59.210167288Z"} +2026/03/21 17:46:04 [transform_engine] {"stage_name":"transform_engine","events_processed":774,"events_dropped":0,"avg_latency_ms":305.9567330837492,"throughput_eps":0,"last_update":"2026-03-21T17:45:59.210130487Z"} +2026/03/21 17:46:04 ───────────────────────────────────────────────── +2026/03/21 17:46:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:46:09 [log_collector] {"stage_name":"log_collector","events_processed":37669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7533.8,"last_update":"2026-03-21T17:46:04.068840455Z"} +2026/03/21 17:46:09 [metric_collector] {"stage_name":"metric_collector","events_processed":23234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4646.8,"last_update":"2026-03-21T17:46:04.069134288Z"} +2026/03/21 17:46:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:46:04.078026582Z"} +2026/03/21 17:46:09 [detection_layer] {"stage_name":"detection_layer","events_processed":771,"events_dropped":0,"avg_latency_ms":19.226143352759763,"throughput_eps":0,"last_update":"2026-03-21T17:46:04.210214042Z"} +2026/03/21 17:46:09 [transform_engine] {"stage_name":"transform_engine","events_processed":774,"events_dropped":0,"avg_latency_ms":305.9567330837492,"throughput_eps":0,"last_update":"2026-03-21T17:46:04.210185727Z"} +2026/03/21 17:46:09 ───────────────────────────────────────────────── +2026/03/21 17:46:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:46:14 [log_collector] {"stage_name":"log_collector","events_processed":37669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7533.8,"last_update":"2026-03-21T17:46:09.068835747Z"} +2026/03/21 17:46:14 [metric_collector] {"stage_name":"metric_collector","events_processed":23239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4647.8,"last_update":"2026-03-21T17:46:09.069146733Z"} +2026/03/21 17:46:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:46:09.07806687Z"} +2026/03/21 17:46:14 [detection_layer] {"stage_name":"detection_layer","events_processed":771,"events_dropped":0,"avg_latency_ms":19.226143352759763,"throughput_eps":0,"last_update":"2026-03-21T17:46:09.210401121Z"} +2026/03/21 17:46:14 [transform_engine] {"stage_name":"transform_engine","events_processed":774,"events_dropped":0,"avg_latency_ms":305.9567330837492,"throughput_eps":0,"last_update":"2026-03-21T17:46:09.210383707Z"} +2026/03/21 17:46:14 ───────────────────────────────────────────────── +2026/03/21 17:46:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:46:19 [log_collector] {"stage_name":"log_collector","events_processed":37669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7533.8,"last_update":"2026-03-21T17:46:14.068599096Z"} +2026/03/21 17:46:19 [metric_collector] {"stage_name":"metric_collector","events_processed":23244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4648.8,"last_update":"2026-03-21T17:46:14.068918077Z"} +2026/03/21 17:46:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:46:14.078476427Z"} +2026/03/21 17:46:19 [detection_layer] {"stage_name":"detection_layer","events_processed":771,"events_dropped":0,"avg_latency_ms":19.226143352759763,"throughput_eps":0,"last_update":"2026-03-21T17:46:14.210810137Z"} +2026/03/21 17:46:19 [transform_engine] {"stage_name":"transform_engine","events_processed":774,"events_dropped":0,"avg_latency_ms":305.9567330837492,"throughput_eps":0,"last_update":"2026-03-21T17:46:14.209664602Z"} +2026/03/21 17:46:19 ───────────────────────────────────────────────── +2026/03/21 17:46:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:46:24 [detection_layer] {"stage_name":"detection_layer","events_processed":771,"events_dropped":0,"avg_latency_ms":19.226143352759763,"throughput_eps":0,"last_update":"2026-03-21T17:46:19.210971217Z"} +2026/03/21 17:46:24 [transform_engine] {"stage_name":"transform_engine","events_processed":775,"events_dropped":0,"avg_latency_ms":260.2063742669994,"throughput_eps":0,"last_update":"2026-03-21T17:46:19.286922395Z"} +2026/03/21 17:46:24 [log_collector] {"stage_name":"log_collector","events_processed":37669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7533.8,"last_update":"2026-03-21T17:46:19.068930694Z"} +2026/03/21 17:46:24 [metric_collector] {"stage_name":"metric_collector","events_processed":23249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4649.8,"last_update":"2026-03-21T17:46:19.069228715Z"} +2026/03/21 17:46:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:46:19.078551984Z"} +2026/03/21 17:46:24 ───────────────────────────────────────────────── +2026/03/21 17:46:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:46:29 [metric_collector] {"stage_name":"metric_collector","events_processed":23254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4650.8,"last_update":"2026-03-21T17:46:24.068896102Z"} +2026/03/21 17:46:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:46:24.078116604Z"} +2026/03/21 17:46:29 [detection_layer] {"stage_name":"detection_layer","events_processed":772,"events_dropped":0,"avg_latency_ms":19.94363488220781,"throughput_eps":0,"last_update":"2026-03-21T17:46:24.210376302Z"} +2026/03/21 17:46:29 [transform_engine] {"stage_name":"transform_engine","events_processed":775,"events_dropped":0,"avg_latency_ms":260.2063742669994,"throughput_eps":0,"last_update":"2026-03-21T17:46:24.210400489Z"} +2026/03/21 17:46:29 [log_collector] {"stage_name":"log_collector","events_processed":37669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7533.8,"last_update":"2026-03-21T17:46:24.068701809Z"} +2026/03/21 17:46:29 ───────────────────────────────────────────────── +2026/03/21 17:46:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:46:34 [log_collector] {"stage_name":"log_collector","events_processed":37669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7533.8,"last_update":"2026-03-21T17:46:29.068385305Z"} +2026/03/21 17:46:34 [metric_collector] {"stage_name":"metric_collector","events_processed":23259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4651.8,"last_update":"2026-03-21T17:46:29.068731799Z"} +2026/03/21 17:46:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:46:29.079496889Z"} +2026/03/21 17:46:34 [detection_layer] {"stage_name":"detection_layer","events_processed":772,"events_dropped":0,"avg_latency_ms":19.94363488220781,"throughput_eps":0,"last_update":"2026-03-21T17:46:29.209857981Z"} +2026/03/21 17:46:34 [transform_engine] {"stage_name":"transform_engine","events_processed":775,"events_dropped":0,"avg_latency_ms":260.2063742669994,"throughput_eps":0,"last_update":"2026-03-21T17:46:29.209660623Z"} +2026/03/21 17:46:34 ───────────────────────────────────────────────── +Saved state: 27 clusters, 37670 messages, reason: none +2026/03/21 17:46:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:46:39 [metric_collector] {"stage_name":"metric_collector","events_processed":23264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4652.8,"last_update":"2026-03-21T17:46:34.069479703Z"} +2026/03/21 17:46:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:46:34.078774126Z"} +2026/03/21 17:46:39 [detection_layer] {"stage_name":"detection_layer","events_processed":772,"events_dropped":0,"avg_latency_ms":19.94363488220781,"throughput_eps":0,"last_update":"2026-03-21T17:46:34.210032246Z"} +2026/03/21 17:46:39 [transform_engine] {"stage_name":"transform_engine","events_processed":775,"events_dropped":0,"avg_latency_ms":260.2063742669994,"throughput_eps":0,"last_update":"2026-03-21T17:46:34.210082082Z"} +2026/03/21 17:46:39 [log_collector] {"stage_name":"log_collector","events_processed":37669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7533.8,"last_update":"2026-03-21T17:46:34.068853974Z"} +2026/03/21 17:46:39 ───────────────────────────────────────────────── +2026/03/21 17:46:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:46:44 [log_collector] {"stage_name":"log_collector","events_processed":37674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7534.8,"last_update":"2026-03-21T17:46:39.068460524Z"} +2026/03/21 17:46:44 [metric_collector] {"stage_name":"metric_collector","events_processed":23269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4653.8,"last_update":"2026-03-21T17:46:39.068789203Z"} +2026/03/21 17:46:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:46:39.076589645Z"} +2026/03/21 17:46:44 [detection_layer] {"stage_name":"detection_layer","events_processed":772,"events_dropped":0,"avg_latency_ms":19.94363488220781,"throughput_eps":0,"last_update":"2026-03-21T17:46:39.210826691Z"} +2026/03/21 17:46:44 [transform_engine] {"stage_name":"transform_engine","events_processed":775,"events_dropped":0,"avg_latency_ms":260.2063742669994,"throughput_eps":0,"last_update":"2026-03-21T17:46:39.209719761Z"} +2026/03/21 17:46:44 ───────────────────────────────────────────────── +2026/03/21 17:46:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:46:49 [metric_collector] {"stage_name":"metric_collector","events_processed":23274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4654.8,"last_update":"2026-03-21T17:46:44.068595806Z"} +2026/03/21 17:46:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:46:44.076290394Z"} +2026/03/21 17:46:49 [detection_layer] {"stage_name":"detection_layer","events_processed":772,"events_dropped":0,"avg_latency_ms":19.94363488220781,"throughput_eps":0,"last_update":"2026-03-21T17:46:44.210680474Z"} +2026/03/21 17:46:49 [transform_engine] {"stage_name":"transform_engine","events_processed":775,"events_dropped":0,"avg_latency_ms":260.2063742669994,"throughput_eps":0,"last_update":"2026-03-21T17:46:44.210660505Z"} +2026/03/21 17:46:49 [log_collector] {"stage_name":"log_collector","events_processed":37674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7534.8,"last_update":"2026-03-21T17:46:44.068379822Z"} +2026/03/21 17:46:49 ───────────────────────────────────────────────── +2026/03/21 17:46:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:46:54 [log_collector] {"stage_name":"log_collector","events_processed":37674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7534.8,"last_update":"2026-03-21T17:46:49.068917164Z"} +2026/03/21 17:46:54 [metric_collector] {"stage_name":"metric_collector","events_processed":23279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4655.8,"last_update":"2026-03-21T17:46:49.069154729Z"} +2026/03/21 17:46:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:46:49.077736126Z"} +2026/03/21 17:46:54 [detection_layer] {"stage_name":"detection_layer","events_processed":772,"events_dropped":0,"avg_latency_ms":19.94363488220781,"throughput_eps":0,"last_update":"2026-03-21T17:46:49.209919559Z"} +2026/03/21 17:46:54 [transform_engine] {"stage_name":"transform_engine","events_processed":776,"events_dropped":0,"avg_latency_ms":685.3786954135995,"throughput_eps":0,"last_update":"2026-03-21T17:46:51.596023818Z"} +2026/03/21 17:46:54 ───────────────────────────────────────────────── +2026/03/21 17:46:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:46:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:46:54.076164799Z"} +2026/03/21 17:46:59 [detection_layer] {"stage_name":"detection_layer","events_processed":773,"events_dropped":0,"avg_latency_ms":19.100050505766248,"throughput_eps":0,"last_update":"2026-03-21T17:46:54.210426643Z"} +2026/03/21 17:46:59 [transform_engine] {"stage_name":"transform_engine","events_processed":776,"events_dropped":0,"avg_latency_ms":685.3786954135995,"throughput_eps":0,"last_update":"2026-03-21T17:46:54.210404661Z"} +2026/03/21 17:46:59 [log_collector] {"stage_name":"log_collector","events_processed":37674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7534.8,"last_update":"2026-03-21T17:46:54.068449591Z"} +2026/03/21 17:46:59 [metric_collector] {"stage_name":"metric_collector","events_processed":23284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4656.8,"last_update":"2026-03-21T17:46:54.068758582Z"} +2026/03/21 17:46:59 ───────────────────────────────────────────────── +2026/03/21 17:47:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:47:04 [log_collector] {"stage_name":"log_collector","events_processed":37674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7534.8,"last_update":"2026-03-21T17:46:59.06894383Z"} +2026/03/21 17:47:04 [metric_collector] {"stage_name":"metric_collector","events_processed":23289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4657.8,"last_update":"2026-03-21T17:46:59.069285144Z"} +2026/03/21 17:47:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:46:59.077860611Z"} +2026/03/21 17:47:04 [detection_layer] {"stage_name":"detection_layer","events_processed":773,"events_dropped":0,"avg_latency_ms":19.100050505766248,"throughput_eps":0,"last_update":"2026-03-21T17:46:59.210111142Z"} +2026/03/21 17:47:04 [transform_engine] {"stage_name":"transform_engine","events_processed":776,"events_dropped":0,"avg_latency_ms":685.3786954135995,"throughput_eps":0,"last_update":"2026-03-21T17:46:59.210086194Z"} +2026/03/21 17:47:04 ───────────────────────────────────────────────── +2026/03/21 17:47:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:47:09 [transform_engine] {"stage_name":"transform_engine","events_processed":776,"events_dropped":0,"avg_latency_ms":685.3786954135995,"throughput_eps":0,"last_update":"2026-03-21T17:47:04.209721449Z"} +2026/03/21 17:47:09 [log_collector] {"stage_name":"log_collector","events_processed":37674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7534.8,"last_update":"2026-03-21T17:47:04.068487871Z"} +2026/03/21 17:47:09 [metric_collector] {"stage_name":"metric_collector","events_processed":23294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4658.8,"last_update":"2026-03-21T17:47:04.06890029Z"} +2026/03/21 17:47:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9320,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:47:04.074327717Z"} +2026/03/21 17:47:09 [detection_layer] {"stage_name":"detection_layer","events_processed":773,"events_dropped":0,"avg_latency_ms":19.100050505766248,"throughput_eps":0,"last_update":"2026-03-21T17:47:04.210794634Z"} +2026/03/21 17:47:09 ───────────────────────────────────────────────── +2026/03/21 17:47:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:47:14 [detection_layer] {"stage_name":"detection_layer","events_processed":773,"events_dropped":0,"avg_latency_ms":19.100050505766248,"throughput_eps":0,"last_update":"2026-03-21T17:47:09.210193386Z"} +2026/03/21 17:47:14 [transform_engine] {"stage_name":"transform_engine","events_processed":776,"events_dropped":0,"avg_latency_ms":685.3786954135995,"throughput_eps":0,"last_update":"2026-03-21T17:47:09.210161354Z"} +2026/03/21 17:47:14 [log_collector] {"stage_name":"log_collector","events_processed":37674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7534.8,"last_update":"2026-03-21T17:47:14.068408454Z"} +2026/03/21 17:47:14 [metric_collector] {"stage_name":"metric_collector","events_processed":23299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4659.8,"last_update":"2026-03-21T17:47:09.068684109Z"} +2026/03/21 17:47:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:47:09.076953189Z"} +2026/03/21 17:47:14 ───────────────────────────────────────────────── +2026/03/21 17:47:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:47:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:47:14.075398623Z"} +2026/03/21 17:47:19 [detection_layer] {"stage_name":"detection_layer","events_processed":773,"events_dropped":0,"avg_latency_ms":19.100050505766248,"throughput_eps":0,"last_update":"2026-03-21T17:47:14.210609225Z"} +2026/03/21 17:47:19 [transform_engine] {"stage_name":"transform_engine","events_processed":776,"events_dropped":0,"avg_latency_ms":685.3786954135995,"throughput_eps":0,"last_update":"2026-03-21T17:47:14.210639062Z"} +2026/03/21 17:47:19 [log_collector] {"stage_name":"log_collector","events_processed":37674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7534.8,"last_update":"2026-03-21T17:47:14.068408454Z"} +2026/03/21 17:47:19 [metric_collector] {"stage_name":"metric_collector","events_processed":23304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4660.8,"last_update":"2026-03-21T17:47:14.068623375Z"} +2026/03/21 17:47:19 ───────────────────────────────────────────────── +2026/03/21 17:47:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:47:24 [detection_layer] {"stage_name":"detection_layer","events_processed":773,"events_dropped":0,"avg_latency_ms":19.100050505766248,"throughput_eps":0,"last_update":"2026-03-21T17:47:19.210446656Z"} +2026/03/21 17:47:24 [transform_engine] {"stage_name":"transform_engine","events_processed":777,"events_dropped":0,"avg_latency_ms":579.5426931308796,"throughput_eps":0,"last_update":"2026-03-21T17:47:19.366689666Z"} +2026/03/21 17:47:24 [log_collector] {"stage_name":"log_collector","events_processed":37683,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7536.6,"last_update":"2026-03-21T17:47:19.068082092Z"} +2026/03/21 17:47:24 [metric_collector] {"stage_name":"metric_collector","events_processed":23309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4661.8,"last_update":"2026-03-21T17:47:19.068422585Z"} +2026/03/21 17:47:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:47:19.075178576Z"} +2026/03/21 17:47:24 ───────────────────────────────────────────────── +2026/03/21 17:47:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:47:29 [metric_collector] {"stage_name":"metric_collector","events_processed":23314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4662.8,"last_update":"2026-03-21T17:47:24.068883019Z"} +2026/03/21 17:47:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:47:24.080609792Z"} +2026/03/21 17:47:29 [detection_layer] {"stage_name":"detection_layer","events_processed":774,"events_dropped":0,"avg_latency_ms":18.727640404613,"throughput_eps":0,"last_update":"2026-03-21T17:47:24.210829292Z"} +2026/03/21 17:47:29 [transform_engine] {"stage_name":"transform_engine","events_processed":777,"events_dropped":0,"avg_latency_ms":579.5426931308796,"throughput_eps":0,"last_update":"2026-03-21T17:47:24.20971589Z"} +2026/03/21 17:47:29 [log_collector] {"stage_name":"log_collector","events_processed":37685,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7537,"last_update":"2026-03-21T17:47:24.06851845Z"} +2026/03/21 17:47:29 ───────────────────────────────────────────────── +2026/03/21 17:47:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:47:34 [log_collector] {"stage_name":"log_collector","events_processed":37899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7579.8,"last_update":"2026-03-21T17:47:29.068088791Z"} +2026/03/21 17:47:34 [metric_collector] {"stage_name":"metric_collector","events_processed":23319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4663.8,"last_update":"2026-03-21T17:47:29.068318983Z"} +2026/03/21 17:47:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9330,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:47:29.077908221Z"} +2026/03/21 17:47:34 [detection_layer] {"stage_name":"detection_layer","events_processed":774,"events_dropped":0,"avg_latency_ms":18.727640404613,"throughput_eps":0,"last_update":"2026-03-21T17:47:29.210108395Z"} +2026/03/21 17:47:34 [transform_engine] {"stage_name":"transform_engine","events_processed":777,"events_dropped":0,"avg_latency_ms":579.5426931308796,"throughput_eps":0,"last_update":"2026-03-21T17:47:29.210118084Z"} +2026/03/21 17:47:34 ───────────────────────────────────────────────── +Saved state: 27 clusters, 38009 messages, reason: none +2026/03/21 17:47:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:47:39 [detection_layer] {"stage_name":"detection_layer","events_processed":774,"events_dropped":0,"avg_latency_ms":18.727640404613,"throughput_eps":0,"last_update":"2026-03-21T17:47:34.210381361Z"} +2026/03/21 17:47:39 [transform_engine] {"stage_name":"transform_engine","events_processed":777,"events_dropped":0,"avg_latency_ms":579.5426931308796,"throughput_eps":0,"last_update":"2026-03-21T17:47:34.210361923Z"} +2026/03/21 17:47:39 [log_collector] {"stage_name":"log_collector","events_processed":37973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7594.6,"last_update":"2026-03-21T17:47:34.068534748Z"} +2026/03/21 17:47:39 [metric_collector] {"stage_name":"metric_collector","events_processed":23324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4664.8,"last_update":"2026-03-21T17:47:34.068831507Z"} +2026/03/21 17:47:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:47:34.078338188Z"} +2026/03/21 17:47:39 ───────────────────────────────────────────────── +2026/03/21 17:47:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:47:44 [log_collector] {"stage_name":"log_collector","events_processed":38030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7606,"last_update":"2026-03-21T17:47:44.068126193Z"} +2026/03/21 17:47:44 [metric_collector] {"stage_name":"metric_collector","events_processed":23329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4665.8,"last_update":"2026-03-21T17:47:39.068448598Z"} +2026/03/21 17:47:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:47:39.07796155Z"} +2026/03/21 17:47:44 [detection_layer] {"stage_name":"detection_layer","events_processed":774,"events_dropped":0,"avg_latency_ms":18.727640404613,"throughput_eps":0,"last_update":"2026-03-21T17:47:39.210393448Z"} +2026/03/21 17:47:44 [transform_engine] {"stage_name":"transform_engine","events_processed":777,"events_dropped":0,"avg_latency_ms":579.5426931308796,"throughput_eps":0,"last_update":"2026-03-21T17:47:39.210463422Z"} +2026/03/21 17:47:44 ───────────────────────────────────────────────── +2026/03/21 17:47:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:47:49 [log_collector] {"stage_name":"log_collector","events_processed":38030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7606,"last_update":"2026-03-21T17:47:44.068126193Z"} +2026/03/21 17:47:49 [metric_collector] {"stage_name":"metric_collector","events_processed":23334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4666.8,"last_update":"2026-03-21T17:47:44.068869337Z"} +2026/03/21 17:47:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:47:44.078051074Z"} +2026/03/21 17:47:49 [detection_layer] {"stage_name":"detection_layer","events_processed":774,"events_dropped":0,"avg_latency_ms":18.727640404613,"throughput_eps":0,"last_update":"2026-03-21T17:47:44.210239025Z"} +2026/03/21 17:47:49 [transform_engine] {"stage_name":"transform_engine","events_processed":777,"events_dropped":0,"avg_latency_ms":579.5426931308796,"throughput_eps":0,"last_update":"2026-03-21T17:47:44.210201393Z"} +2026/03/21 17:47:49 ───────────────────────────────────────────────── +2026/03/21 17:47:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:47:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:47:49.078064953Z"} +2026/03/21 17:47:54 [detection_layer] {"stage_name":"detection_layer","events_processed":774,"events_dropped":0,"avg_latency_ms":18.727640404613,"throughput_eps":0,"last_update":"2026-03-21T17:47:49.210409533Z"} +2026/03/21 17:47:54 [transform_engine] {"stage_name":"transform_engine","events_processed":778,"events_dropped":0,"avg_latency_ms":488.4792221047037,"throughput_eps":0,"last_update":"2026-03-21T17:47:49.334520632Z"} +2026/03/21 17:47:54 [log_collector] {"stage_name":"log_collector","events_processed":38030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7606,"last_update":"2026-03-21T17:47:49.06858861Z"} +2026/03/21 17:47:54 [metric_collector] {"stage_name":"metric_collector","events_processed":23339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4667.8,"last_update":"2026-03-21T17:47:49.068887803Z"} +2026/03/21 17:47:54 ───────────────────────────────────────────────── +2026/03/21 17:47:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:47:59 [log_collector] {"stage_name":"log_collector","events_processed":38030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7606,"last_update":"2026-03-21T17:47:54.06878436Z"} +2026/03/21 17:47:59 [metric_collector] {"stage_name":"metric_collector","events_processed":23344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4668.8,"last_update":"2026-03-21T17:47:54.069088442Z"} +2026/03/21 17:47:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:47:54.078084945Z"} +2026/03/21 17:47:59 [detection_layer] {"stage_name":"detection_layer","events_processed":775,"events_dropped":0,"avg_latency_ms":19.1814103236904,"throughput_eps":0,"last_update":"2026-03-21T17:47:54.210544927Z"} +2026/03/21 17:47:59 [transform_engine] {"stage_name":"transform_engine","events_processed":778,"events_dropped":0,"avg_latency_ms":488.4792221047037,"throughput_eps":0,"last_update":"2026-03-21T17:47:54.21042135Z"} +2026/03/21 17:47:59 ───────────────────────────────────────────────── +2026/03/21 17:48:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:48:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9342,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:47:59.078920086Z"} +2026/03/21 17:48:04 [detection_layer] {"stage_name":"detection_layer","events_processed":775,"events_dropped":0,"avg_latency_ms":19.1814103236904,"throughput_eps":0,"last_update":"2026-03-21T17:47:59.210125875Z"} +2026/03/21 17:48:04 [transform_engine] {"stage_name":"transform_engine","events_processed":778,"events_dropped":0,"avg_latency_ms":488.4792221047037,"throughput_eps":0,"last_update":"2026-03-21T17:47:59.21016449Z"} +2026/03/21 17:48:04 [log_collector] {"stage_name":"log_collector","events_processed":38030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7606,"last_update":"2026-03-21T17:47:59.069320417Z"} +2026/03/21 17:48:04 [metric_collector] {"stage_name":"metric_collector","events_processed":23349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4669.8,"last_update":"2026-03-21T17:47:59.069304627Z"} +2026/03/21 17:48:04 ───────────────────────────────────────────────── +2026/03/21 17:48:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:48:09 [log_collector] {"stage_name":"log_collector","events_processed":38030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7606,"last_update":"2026-03-21T17:48:09.068185129Z"} +2026/03/21 17:48:09 [metric_collector] {"stage_name":"metric_collector","events_processed":23354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4670.8,"last_update":"2026-03-21T17:48:04.069008043Z"} +2026/03/21 17:48:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:48:04.078318387Z"} +2026/03/21 17:48:09 [detection_layer] {"stage_name":"detection_layer","events_processed":775,"events_dropped":0,"avg_latency_ms":19.1814103236904,"throughput_eps":0,"last_update":"2026-03-21T17:48:04.210590119Z"} +2026/03/21 17:48:09 [transform_engine] {"stage_name":"transform_engine","events_processed":778,"events_dropped":0,"avg_latency_ms":488.4792221047037,"throughput_eps":0,"last_update":"2026-03-21T17:48:04.210694849Z"} +2026/03/21 17:48:09 ───────────────────────────────────────────────── +2026/03/21 17:48:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:48:14 [log_collector] {"stage_name":"log_collector","events_processed":38030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7606,"last_update":"2026-03-21T17:48:09.068185129Z"} +2026/03/21 17:48:14 [metric_collector] {"stage_name":"metric_collector","events_processed":23359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4671.8,"last_update":"2026-03-21T17:48:09.068951157Z"} +2026/03/21 17:48:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:48:09.078282251Z"} +2026/03/21 17:48:14 [detection_layer] {"stage_name":"detection_layer","events_processed":775,"events_dropped":0,"avg_latency_ms":19.1814103236904,"throughput_eps":0,"last_update":"2026-03-21T17:48:09.210416098Z"} +2026/03/21 17:48:14 [transform_engine] {"stage_name":"transform_engine","events_processed":778,"events_dropped":0,"avg_latency_ms":488.4792221047037,"throughput_eps":0,"last_update":"2026-03-21T17:48:09.210439593Z"} +2026/03/21 17:48:14 ───────────────────────────────────────────────── +2026/03/21 17:48:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:48:19 [log_collector] {"stage_name":"log_collector","events_processed":38030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7606,"last_update":"2026-03-21T17:48:14.068579999Z"} +2026/03/21 17:48:19 [metric_collector] {"stage_name":"metric_collector","events_processed":23364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4672.8,"last_update":"2026-03-21T17:48:14.068835898Z"} +2026/03/21 17:48:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:48:14.077426474Z"} +2026/03/21 17:48:19 [detection_layer] {"stage_name":"detection_layer","events_processed":775,"events_dropped":0,"avg_latency_ms":19.1814103236904,"throughput_eps":0,"last_update":"2026-03-21T17:48:14.210672602Z"} +2026/03/21 17:48:19 [transform_engine] {"stage_name":"transform_engine","events_processed":778,"events_dropped":0,"avg_latency_ms":488.4792221047037,"throughput_eps":0,"last_update":"2026-03-21T17:48:14.210642615Z"} +2026/03/21 17:48:19 ───────────────────────────────────────────────── +2026/03/21 17:48:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:48:24 [detection_layer] {"stage_name":"detection_layer","events_processed":775,"events_dropped":0,"avg_latency_ms":19.1814103236904,"throughput_eps":0,"last_update":"2026-03-21T17:48:19.210459498Z"} +2026/03/21 17:48:24 [transform_engine] {"stage_name":"transform_engine","events_processed":779,"events_dropped":0,"avg_latency_ms":487.184703883763,"throughput_eps":0,"last_update":"2026-03-21T17:48:19.692435793Z"} +2026/03/21 17:48:24 [log_collector] {"stage_name":"log_collector","events_processed":38030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7606,"last_update":"2026-03-21T17:48:19.068235083Z"} +2026/03/21 17:48:24 [metric_collector] {"stage_name":"metric_collector","events_processed":23369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4673.8,"last_update":"2026-03-21T17:48:19.068630601Z"} +2026/03/21 17:48:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9350,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:48:19.078163591Z"} +2026/03/21 17:48:24 ───────────────────────────────────────────────── +2026/03/21 17:48:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:48:29 [log_collector] {"stage_name":"log_collector","events_processed":38033,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7606.6,"last_update":"2026-03-21T17:48:24.069366424Z"} +2026/03/21 17:48:29 [metric_collector] {"stage_name":"metric_collector","events_processed":23374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4674.8,"last_update":"2026-03-21T17:48:24.068802945Z"} +2026/03/21 17:48:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:48:24.07829713Z"} +2026/03/21 17:48:29 [detection_layer] {"stage_name":"detection_layer","events_processed":776,"events_dropped":0,"avg_latency_ms":20.17358125895232,"throughput_eps":0,"last_update":"2026-03-21T17:48:24.210551268Z"} +2026/03/21 17:48:29 [transform_engine] {"stage_name":"transform_engine","events_processed":779,"events_dropped":0,"avg_latency_ms":487.184703883763,"throughput_eps":0,"last_update":"2026-03-21T17:48:24.210523635Z"} +2026/03/21 17:48:29 ───────────────────────────────────────────────── +2026/03/21 17:48:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:48:34 [log_collector] {"stage_name":"log_collector","events_processed":38044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7608.8,"last_update":"2026-03-21T17:48:34.068176321Z"} +2026/03/21 17:48:34 [metric_collector] {"stage_name":"metric_collector","events_processed":23379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4675.8,"last_update":"2026-03-21T17:48:29.068745708Z"} +2026/03/21 17:48:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:48:29.078570548Z"} +2026/03/21 17:48:34 [detection_layer] {"stage_name":"detection_layer","events_processed":776,"events_dropped":0,"avg_latency_ms":20.17358125895232,"throughput_eps":0,"last_update":"2026-03-21T17:48:29.210802493Z"} +2026/03/21 17:48:34 [transform_engine] {"stage_name":"transform_engine","events_processed":779,"events_dropped":0,"avg_latency_ms":487.184703883763,"throughput_eps":0,"last_update":"2026-03-21T17:48:29.209702716Z"} +2026/03/21 17:48:34 ───────────────────────────────────────────────── +Saved state: 27 clusters, 38052 messages, reason: none +2026/03/21 17:48:39 ── Pipeline Health ────────────────────────────── +2026/03/21 17:48:39 [log_collector] {"stage_name":"log_collector","events_processed":38060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7612,"last_update":"2026-03-21T17:48:39.068140155Z"} +2026/03/21 17:48:39 [metric_collector] {"stage_name":"metric_collector","events_processed":23384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4676.8,"last_update":"2026-03-21T17:48:34.068816336Z"} +2026/03/21 17:48:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:48:34.077680196Z"} +2026/03/21 17:48:39 [detection_layer] {"stage_name":"detection_layer","events_processed":776,"events_dropped":0,"avg_latency_ms":20.17358125895232,"throughput_eps":0,"last_update":"2026-03-21T17:48:34.209933592Z"} +2026/03/21 17:48:39 [transform_engine] {"stage_name":"transform_engine","events_processed":779,"events_dropped":0,"avg_latency_ms":487.184703883763,"throughput_eps":0,"last_update":"2026-03-21T17:48:34.210024196Z"} +2026/03/21 17:48:39 ───────────────────────────────────────────────── +2026/03/21 17:48:44 ── Pipeline Health ────────────────────────────── +2026/03/21 17:48:44 [detection_layer] {"stage_name":"detection_layer","events_processed":776,"events_dropped":0,"avg_latency_ms":20.17358125895232,"throughput_eps":0,"last_update":"2026-03-21T17:48:39.210370842Z"} +2026/03/21 17:48:44 [transform_engine] {"stage_name":"transform_engine","events_processed":779,"events_dropped":0,"avg_latency_ms":487.184703883763,"throughput_eps":0,"last_update":"2026-03-21T17:48:39.210470794Z"} +2026/03/21 17:48:44 [log_collector] {"stage_name":"log_collector","events_processed":38060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7612,"last_update":"2026-03-21T17:48:39.068140155Z"} +2026/03/21 17:48:44 [metric_collector] {"stage_name":"metric_collector","events_processed":23389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4677.8,"last_update":"2026-03-21T17:48:39.068551181Z"} +2026/03/21 17:48:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:48:39.077016037Z"} +2026/03/21 17:48:44 ───────────────────────────────────────────────── +2026/03/21 17:48:49 ── Pipeline Health ────────────────────────────── +2026/03/21 17:48:49 [detection_layer] {"stage_name":"detection_layer","events_processed":776,"events_dropped":0,"avg_latency_ms":20.17358125895232,"throughput_eps":0,"last_update":"2026-03-21T17:48:44.21090586Z"} +2026/03/21 17:48:49 [transform_engine] {"stage_name":"transform_engine","events_processed":779,"events_dropped":0,"avg_latency_ms":487.184703883763,"throughput_eps":0,"last_update":"2026-03-21T17:48:44.209747993Z"} +2026/03/21 17:48:49 [log_collector] {"stage_name":"log_collector","events_processed":38060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7612,"last_update":"2026-03-21T17:48:44.068753172Z"} +2026/03/21 17:48:49 [metric_collector] {"stage_name":"metric_collector","events_processed":23394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4678.8,"last_update":"2026-03-21T17:48:44.069004383Z"} +2026/03/21 17:48:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9360,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:48:44.078508198Z"} +2026/03/21 17:48:49 ───────────────────────────────────────────────── +2026/03/21 17:48:54 ── Pipeline Health ────────────────────────────── +2026/03/21 17:48:54 [metric_collector] {"stage_name":"metric_collector","events_processed":23399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4679.8,"last_update":"2026-03-21T17:48:49.069050395Z"} +2026/03/21 17:48:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:48:49.078313389Z"} +2026/03/21 17:48:54 [detection_layer] {"stage_name":"detection_layer","events_processed":776,"events_dropped":0,"avg_latency_ms":20.17358125895232,"throughput_eps":0,"last_update":"2026-03-21T17:48:49.210551045Z"} +2026/03/21 17:48:54 [transform_engine] {"stage_name":"transform_engine","events_processed":780,"events_dropped":0,"avg_latency_ms":413.36406890701045,"throughput_eps":0,"last_update":"2026-03-21T17:48:49.328748235Z"} +2026/03/21 17:48:54 [log_collector] {"stage_name":"log_collector","events_processed":38060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7612,"last_update":"2026-03-21T17:48:49.068428253Z"} +2026/03/21 17:48:54 ───────────────────────────────────────────────── +2026/03/21 17:48:59 ── Pipeline Health ────────────────────────────── +2026/03/21 17:48:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:48:54.077909768Z"} +2026/03/21 17:48:59 [detection_layer] {"stage_name":"detection_layer","events_processed":777,"events_dropped":0,"avg_latency_ms":20.32158300716186,"throughput_eps":0,"last_update":"2026-03-21T17:48:54.210565565Z"} +2026/03/21 17:48:59 [transform_engine] {"stage_name":"transform_engine","events_processed":780,"events_dropped":0,"avg_latency_ms":413.36406890701045,"throughput_eps":0,"last_update":"2026-03-21T17:48:54.210609229Z"} +2026/03/21 17:48:59 [log_collector] {"stage_name":"log_collector","events_processed":38060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7612,"last_update":"2026-03-21T17:48:54.068611127Z"} +2026/03/21 17:48:59 [metric_collector] {"stage_name":"metric_collector","events_processed":23404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4680.8,"last_update":"2026-03-21T17:48:54.068866005Z"} +2026/03/21 17:48:59 ───────────────────────────────────────────────── +2026/03/21 17:49:04 ── Pipeline Health ────────────────────────────── +2026/03/21 17:49:04 [log_collector] {"stage_name":"log_collector","events_processed":38060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7612,"last_update":"2026-03-21T17:48:59.068659092Z"} +2026/03/21 17:49:04 [metric_collector] {"stage_name":"metric_collector","events_processed":23409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4681.8,"last_update":"2026-03-21T17:48:59.068947815Z"} +2026/03/21 17:49:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:48:59.077858023Z"} +2026/03/21 17:49:04 [detection_layer] {"stage_name":"detection_layer","events_processed":777,"events_dropped":0,"avg_latency_ms":20.32158300716186,"throughput_eps":0,"last_update":"2026-03-21T17:48:59.210108253Z"} +2026/03/21 17:49:04 [transform_engine] {"stage_name":"transform_engine","events_processed":780,"events_dropped":0,"avg_latency_ms":413.36406890701045,"throughput_eps":0,"last_update":"2026-03-21T17:48:59.210133562Z"} +2026/03/21 17:49:04 ───────────────────────────────────────────────── +2026/03/21 17:49:09 ── Pipeline Health ────────────────────────────── +2026/03/21 17:49:09 [log_collector] {"stage_name":"log_collector","events_processed":38060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7612,"last_update":"2026-03-21T17:49:04.068237871Z"} +2026/03/21 17:49:09 [metric_collector] {"stage_name":"metric_collector","events_processed":23414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4682.8,"last_update":"2026-03-21T17:49:04.06884792Z"} +2026/03/21 17:49:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:49:04.078426798Z"} +2026/03/21 17:49:09 [detection_layer] {"stage_name":"detection_layer","events_processed":777,"events_dropped":0,"avg_latency_ms":20.32158300716186,"throughput_eps":0,"last_update":"2026-03-21T17:49:04.210856312Z"} +2026/03/21 17:49:09 [transform_engine] {"stage_name":"transform_engine","events_processed":780,"events_dropped":0,"avg_latency_ms":413.36406890701045,"throughput_eps":0,"last_update":"2026-03-21T17:49:04.209676371Z"} +2026/03/21 17:49:09 ───────────────────────────────────────────────── +2026/03/21 17:49:14 ── Pipeline Health ────────────────────────────── +2026/03/21 17:49:14 [log_collector] {"stage_name":"log_collector","events_processed":38060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7612,"last_update":"2026-03-21T17:49:09.068813658Z"} +2026/03/21 17:49:14 [metric_collector] {"stage_name":"metric_collector","events_processed":23419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4683.8,"last_update":"2026-03-21T17:49:09.070094232Z"} +2026/03/21 17:49:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:49:09.078207843Z"} +2026/03/21 17:49:14 [detection_layer] {"stage_name":"detection_layer","events_processed":777,"events_dropped":0,"avg_latency_ms":20.32158300716186,"throughput_eps":0,"last_update":"2026-03-21T17:49:09.210455559Z"} +2026/03/21 17:49:14 [transform_engine] {"stage_name":"transform_engine","events_processed":780,"events_dropped":0,"avg_latency_ms":413.36406890701045,"throughput_eps":0,"last_update":"2026-03-21T17:49:09.210573295Z"} +2026/03/21 17:49:14 ───────────────────────────────────────────────── +2026/03/21 17:49:19 ── Pipeline Health ────────────────────────────── +2026/03/21 17:49:19 [log_collector] {"stage_name":"log_collector","events_processed":38063,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7612.6,"last_update":"2026-03-21T17:49:14.068589812Z"} +2026/03/21 17:49:19 [metric_collector] {"stage_name":"metric_collector","events_processed":23424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4684.8,"last_update":"2026-03-21T17:49:14.06893315Z"} +2026/03/21 17:49:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:49:14.075215243Z"} +2026/03/21 17:49:19 [detection_layer] {"stage_name":"detection_layer","events_processed":777,"events_dropped":0,"avg_latency_ms":20.32158300716186,"throughput_eps":0,"last_update":"2026-03-21T17:49:14.210470289Z"} +2026/03/21 17:49:19 [transform_engine] {"stage_name":"transform_engine","events_processed":780,"events_dropped":0,"avg_latency_ms":413.36406890701045,"throughput_eps":0,"last_update":"2026-03-21T17:49:14.210490708Z"} +2026/03/21 17:49:19 ───────────────────────────────────────────────── +2026/03/21 17:49:24 ── Pipeline Health ────────────────────────────── +2026/03/21 17:49:24 [detection_layer] {"stage_name":"detection_layer","events_processed":777,"events_dropped":0,"avg_latency_ms":20.32158300716186,"throughput_eps":0,"last_update":"2026-03-21T17:49:19.21022831Z"} +2026/03/21 17:49:24 [transform_engine] {"stage_name":"transform_engine","events_processed":781,"events_dropped":0,"avg_latency_ms":354.49990552560837,"throughput_eps":0,"last_update":"2026-03-21T17:49:19.329174305Z"} +2026/03/21 17:49:24 [log_collector] {"stage_name":"log_collector","events_processed":38074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7614.8,"last_update":"2026-03-21T17:49:19.068553687Z"} +2026/03/21 17:49:24 [metric_collector] {"stage_name":"metric_collector","events_processed":23429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4685.8,"last_update":"2026-03-21T17:49:19.068814757Z"} +2026/03/21 17:49:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:49:19.077885563Z"} +2026/03/21 17:49:24 ───────────────────────────────────────────────── +2026/03/21 17:49:29 ── Pipeline Health ────────────────────────────── +2026/03/21 17:49:29 [log_collector] {"stage_name":"log_collector","events_processed":38074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7614.8,"last_update":"2026-03-21T17:49:24.06875187Z"} +2026/03/21 17:49:29 [metric_collector] {"stage_name":"metric_collector","events_processed":23434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4686.8,"last_update":"2026-03-21T17:49:24.069331882Z"} +2026/03/21 17:49:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:49:24.078091491Z"} +2026/03/21 17:49:29 [detection_layer] {"stage_name":"detection_layer","events_processed":778,"events_dropped":0,"avg_latency_ms":20.50294340572949,"throughput_eps":0,"last_update":"2026-03-21T17:49:24.210331561Z"} +2026/03/21 17:49:29 [transform_engine] {"stage_name":"transform_engine","events_processed":781,"events_dropped":0,"avg_latency_ms":354.49990552560837,"throughput_eps":0,"last_update":"2026-03-21T17:49:24.210343825Z"} +2026/03/21 17:49:29 ───────────────────────────────────────────────── +2026/03/21 17:49:34 ── Pipeline Health ────────────────────────────── +2026/03/21 17:49:34 [log_collector] {"stage_name":"log_collector","events_processed":38074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7614.8,"last_update":"2026-03-21T17:49:29.068616295Z"} +2026/03/21 17:49:34 [metric_collector] {"stage_name":"metric_collector","events_processed":23439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4687.8,"last_update":"2026-03-21T17:49:29.069080825Z"} +2026/03/21 17:49:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T17:49:29.079094697Z"} +2026/03/21 17:49:34 [detection_layer] {"stage_name":"detection_layer","events_processed":778,"events_dropped":0,"avg_latency_ms":20.50294340572949,"throughput_eps":0,"last_update":"2026-03-21T17:49:29.210491371Z"} +2026/03/21 17:49:34 [transform_engine] {"stage_name":"transform_engine","events_processed":781,"events_dropped":0,"avg_latency_ms":354.49990552560837,"throughput_eps":0,"last_update":"2026-03-21T17:49:29.210521469Z"} +2026/03/21 17:49:34 ───────────────────────────────────────────────── +2026/03/21 17:49:36 shutting down… +2026/03/21 17:49:36 pipeline stopped diff --git a/evaluation/data/pipeline_full_cycle_run2/anomalies.jsonl b/evaluation/data/pipeline_full_cycle_run2/anomalies.jsonl new file mode 100644 index 0000000..4ac2fa2 --- /dev/null +++ b/evaluation/data/pipeline_full_cycle_run2/anomalies.jsonl @@ -0,0 +1,780 @@ +{"timestamp":"2026-03-21T18:06:19.019138202Z","score":0.5,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=0.50 RRCF-fast:w=0.20,s=0.50 RRCF-mid:w=0.20,s=0.50 RRCF-slow:w=0.20,s=0.50 COPOD:w=0.20,s=0.50"} +{"timestamp":"2026-03-21T18:06:49.065190001Z","score":1,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=1.00 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-21T18:07:19.062696289Z","score":0.8999999999999999,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=0.50 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-21T18:07:49.066010268Z","score":0.6659979995709293,"is_anomaly":false,"confidence":0.7399977773010327,"method":"SEAD","details":"MAD!:w=0.20,s=0.33 RRCF-fast:w=0.20,s=0.67 RRCF-mid:w=0.20,s=0.67 RRCF-slow:w=0.20,s=0.67 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-21T18:08:19.017742779Z","score":0.7978846382553487,"is_anomaly":false,"confidence":0.8865384869503875,"method":"SEAD","details":"MAD!:w=0.20,s=0.25 RRCF-fast:w=0.20,s=0.75 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-21T18:08:49.020841291Z","score":0.5969002866084491,"is_anomaly":false,"confidence":0.6632225406760546,"method":"SEAD","details":"MAD!:w=0.21,s=0.20 RRCF-fast:w=0.20,s=0.60 RRCF-mid:w=0.20,s=0.60 RRCF-slow:w=0.20,s=0.60 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-21T18:09:21.228757064Z","score":0.8965627441667541,"is_anomaly":false,"confidence":0.9961808268519491,"method":"SEAD","details":"MAD!:w=0.21,s=0.50 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-21T18:09:49.059316253Z","score":0.7677596746547578,"is_anomaly":false,"confidence":0.8563368036983257,"method":"SEAD","details":"MAD!:w=0.21,s=0.43 RRCF-fast:w=0.20,s=0.86 RRCF-mid:w=0.20,s=0.86 RRCF-slow:w=0.20,s=0.86 COPOD!:w=0.20,s=0.86"} +{"timestamp":"2026-03-21T18:10:19.068045629Z","score":0.5455673824963071,"is_anomaly":false,"confidence":0.6085099855485804,"method":"SEAD","details":"MAD!:w=0.21,s=0.12 RRCF-fast:w=0.20,s=0.75 RRCF-mid:w=0.20,s=0.75 RRCF-slow:w=0.20,s=0.75 COPOD!:w=0.20,s=0.38"} +{"timestamp":"2026-03-21T18:10:51.411596378Z","score":0.9347510652919573,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.21,s=1.00 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=0.67"} +{"timestamp":"2026-03-21T18:11:19.056305315Z","score":0.8576857763784238,"is_anomaly":false,"confidence":0.9529841959760266,"method":"SEAD","details":"MAD!:w=0.21,s=0.70 RRCF-fast:w=0.20,s=0.90 RRCF-mid:w=0.20,s=0.90 RRCF-slow:w=0.20,s=0.90 COPOD!:w=0.20,s=0.90"} +{"timestamp":"2026-03-21T18:11:49.064864102Z","score":0.8153353734093824,"is_anomaly":false,"confidence":0.9059281926770917,"method":"SEAD","details":"MAD!:w=0.21,s=0.64 RRCF-fast:w=0.20,s=0.82 RRCF-mid:w=0.20,s=0.82 RRCF-slow:w=0.20,s=0.82 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-21T18:12:19.017540141Z","score":0.5793237733521941,"is_anomaly":false,"confidence":0.643693081502438,"method":"SEAD","details":"MAD!:w=0.21,s=0.33 RRCF-fast:w=0.20,s=0.67 RRCF-mid:w=0.20,s=0.67 RRCF-slow:w=0.20,s=0.67 COPOD!:w=0.20,s=0.58"} +{"timestamp":"2026-03-21T18:12:49.017602982Z","score":0.4384745845960817,"is_anomaly":false,"confidence":0.48719398288453525,"method":"SEAD","details":"MAD!:w=0.21,s=0.00 RRCF-fast:w=0.20,s=0.62 RRCF-mid:w=0.20,s=0.69 RRCF-slow:w=0.20,s=0.69 COPOD!:w=0.20,s=0.23"} +{"timestamp":"2026-03-21T18:13:21.151850874Z","score":0.7629338897315234,"is_anomaly":false,"confidence":0.8509542635976667,"method":"SEAD","details":"MAD!:w=0.22,s=0.36 RRCF-fast:w=0.20,s=0.93 RRCF-mid:w=0.20,s=0.93 RRCF-slow:w=0.20,s=0.93 COPOD!:w=0.20,s=0.71"} +{"timestamp":"2026-03-21T18:13:49.072826789Z","score":0.5376238736814303,"is_anomaly":false,"confidence":0.5996500269271017,"method":"SEAD","details":"MAD!:w=0.22,s=0.13 RRCF-fast:w=0.20,s=0.60 RRCF-mid:w=0.19,s=0.60 RRCF-slow:w=0.19,s=0.60 COPOD!:w=0.20,s=0.80"} +{"timestamp":"2026-03-21T18:14:26.845615264Z","score":0.8977782909880657,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.22,s=0.81 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.19,s=0.94 RRCF-slow:w=0.19,s=0.94 COPOD!:w=0.20,s=0.81"} +{"timestamp":"2026-03-21T18:14:49.157888142Z","score":0.7744460243238167,"is_anomaly":false,"confidence":0.8626250290274746,"method":"SEAD","details":"MAD!:w=0.22,s=0.71 RRCF-fast:w=0.20,s=0.82 RRCF-mid:w=0.19,s=0.82 RRCF-slow:w=0.19,s=0.88 COPOD!:w=0.20,s=0.65"} +{"timestamp":"2026-03-21T18:15:19.063330549Z","score":0.6512848313687425,"is_anomaly":false,"confidence":0.7254406103448542,"method":"SEAD","details":"MAD!:w=0.22,s=0.50 RRCF-fast:w=0.20,s=0.78 RRCF-mid:w=0.19,s=0.72 RRCF-slow:w=0.19,s=0.72 COPOD!:w=0.20,s=0.56"} +{"timestamp":"2026-03-21T18:15:49.011434534Z","score":0.5008105546027567,"is_anomaly":false,"confidence":0.5578332196600352,"method":"SEAD","details":"MAD!:w=0.22,s=0.37 RRCF-fast:w=0.19,s=0.63 RRCF-mid:w=0.19,s=0.63 RRCF-slow:w=0.19,s=0.63 COPOD!:w=0.20,s=0.26"} +{"timestamp":"2026-03-21T18:16:19.012262709Z","score":0.43875558111328505,"is_anomaly":false,"confidence":0.48871262038471086,"method":"SEAD","details":"MAD!:w=0.22,s=0.10 RRCF-fast:w=0.19,s=0.70 RRCF-mid:w=0.19,s=0.65 RRCF-slow:w=0.19,s=0.65 COPOD!:w=0.20,s=0.15"} +{"timestamp":"2026-03-21T18:16:50.850110953Z","score":0.8471094223935669,"is_anomaly":false,"confidence":0.9448412037027615,"method":"SEAD","details":"MAD!:w=0.22,s=0.52 RRCF-fast!:w=0.19,s=0.95 RRCF-mid!:w=0.19,s=0.95 RRCF-slow!:w=0.19,s=0.95 COPOD!:w=0.20,s=0.90"} +{"timestamp":"2026-03-21T18:17:19.054657292Z","score":0.6072210551161403,"is_anomaly":false,"confidence":0.6772766982197976,"method":"SEAD","details":"MAD!:w=0.23,s=0.32 RRCF-fast:w=0.19,s=0.77 RRCF-mid:w=0.19,s=0.77 RRCF-slow:w=0.19,s=0.77 COPOD!:w=0.20,s=0.45"} +{"timestamp":"2026-03-21T18:17:49.494478573Z","score":0.5371897096467879,"is_anomaly":false,"confidence":0.5991657729945497,"method":"SEAD","details":"MAD!:w=0.23,s=0.17 RRCF-fast:w=0.19,s=0.57 RRCF-mid:w=0.19,s=0.57 RRCF-slow:w=0.19,s=0.57 COPOD!:w=0.20,s=0.87"} +{"timestamp":"2026-03-21T18:18:24.103972285Z","score":1,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.23,s=1.00 RRCF-fast!:w=0.19,s=1.00 RRCF-mid!:w=0.19,s=1.00 RRCF-slow!:w=0.19,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-21T18:18:52.715504141Z","score":0.8967110516971184,"is_anomaly":false,"confidence":0.9988112440435903,"method":"SEAD","details":"MAD!:w=0.23,s=0.96 RRCF-fast!:w=0.19,s=0.96 RRCF-mid!:w=0.19,s=0.96 RRCF-slow!:w=0.19,s=0.96 COPOD!:w=0.20,s=0.64"} +{"timestamp":"2026-03-21T18:19:19.069054989Z","score":0.7470108868958776,"is_anomaly":false,"confidence":0.8320661062919461,"method":"SEAD","details":"MAD!:w=0.23,s=0.65 RRCF-fast!:w=0.19,s=0.92 RRCF-mid!:w=0.19,s=0.92 RRCF-slow!:w=0.19,s=0.92 COPOD!:w=0.20,s=0.35"} +{"timestamp":"2026-03-21T18:19:49.01803269Z","score":0.598442136403522,"is_anomaly":false,"confidence":0.6673745520041359,"method":"SEAD","details":"MAD!:w=0.23,s=0.30 RRCF-fast:w=0.19,s=0.89 RRCF-mid:w=0.19,s=0.81 RRCF-slow:w=0.19,s=0.89 COPOD!:w=0.20,s=0.19"} +{"timestamp":"2026-03-21T18:20:19.001116447Z","score":0.5709592004643285,"is_anomaly":false,"confidence":0.636725954680417,"method":"SEAD","details":"MAD!:w=0.23,s=0.21 RRCF-fast:w=0.19,s=0.89 RRCF-mid:w=0.19,s=0.89 RRCF-slow:w=0.19,s=0.89 COPOD!:w=0.20,s=0.07"} +{"timestamp":"2026-03-21T18:20:49.063239547Z","score":0.7398788039459433,"is_anomaly":false,"confidence":0.8251028049064926,"method":"SEAD","details":"MAD!:w=0.23,s=0.55 RRCF-fast:w=0.19,s=0.72 RRCF-mid:w=0.19,s=0.72 RRCF-slow:w=0.19,s=0.76 COPOD!:w=0.20,s=0.97"} +{"timestamp":"2026-03-21T18:21:19.87090884Z","score":0.6186530955087306,"is_anomaly":false,"confidence":0.6899135394148044,"method":"SEAD","details":"MAD!:w=0.23,s=0.47 RRCF-fast:w=0.19,s=0.70 RRCF-mid:w=0.19,s=0.70 RRCF-slow:w=0.19,s=0.70 COPOD!:w=0.20,s=0.57"} +{"timestamp":"2026-03-21T18:21:49.021083462Z","score":0.5826577120426895,"is_anomaly":false,"confidence":0.6497719760896774,"method":"SEAD","details":"MAD!:w=0.23,s=0.16 RRCF-fast:w=0.19,s=0.71 RRCF-mid:w=0.19,s=0.68 RRCF-slow:w=0.19,s=0.68 COPOD!:w=0.20,s=0.77"} +{"timestamp":"2026-03-21T18:22:19.058804995Z","score":0.9185403285477807,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.24,s=0.94 RRCF-fast!:w=0.19,s=0.94 RRCF-mid!:w=0.19,s=0.94 RRCF-slow!:w=0.19,s=0.94 COPOD!:w=0.20,s=0.84"} +{"timestamp":"2026-03-21T18:22:50.648031682Z","score":0.7834652193880393,"is_anomaly":false,"confidence":0.8726711564007443,"method":"SEAD","details":"MAD!:w=0.24,s=0.70 RRCF-fast:w=0.19,s=0.76 RRCF-mid:w=0.19,s=0.85 RRCF-slow:w=0.19,s=0.85 COPOD!:w=0.20,s=0.79"} +{"timestamp":"2026-03-21T18:23:19.062728639Z","score":0.6475614210925482,"is_anomaly":false,"confidence":0.7221517119332602,"method":"SEAD","details":"MAD!:w=0.24,s=0.68 RRCF-fast:w=0.19,s=0.62 RRCF-mid:w=0.19,s=0.68 RRCF-slow:w=0.19,s=0.68 COPOD!:w=0.20,s=0.59"} +{"timestamp":"2026-03-21T18:23:49.016440921Z","score":0.535458746161285,"is_anomaly":false,"confidence":0.597136329643617,"method":"SEAD","details":"MAD!:w=0.24,s=0.63 RRCF-fast:w=0.19,s=0.66 RRCF-mid:w=0.19,s=0.63 RRCF-slow:w=0.19,s=0.63 COPOD!:w=0.20,s=0.14"} +{"timestamp":"2026-03-21T18:24:19.023999892Z","score":0.4312238557231568,"is_anomaly":false,"confidence":0.48089499388573503,"method":"SEAD","details":"MAD!:w=0.24,s=0.17 RRCF-fast:w=0.19,s=0.58 RRCF-mid:w=0.19,s=0.67 RRCF-slow:w=0.19,s=0.67 COPOD!:w=0.20,s=0.17"} +{"timestamp":"2026-03-21T18:24:49.063005242Z","score":0.48938709759177657,"is_anomaly":false,"confidence":0.5457578521705079,"method":"SEAD","details":"MAD!:w=0.24,s=0.22 RRCF-fast:w=0.19,s=0.54 RRCF-mid:w=0.19,s=0.57 RRCF-slow:w=0.19,s=0.62 COPOD!:w=0.21,s=0.57"} +{"timestamp":"2026-03-21T18:25:19.021268704Z","score":0.4263557525755413,"is_anomaly":false,"confidence":0.4754661512965843,"method":"SEAD","details":"MAD!:w=0.24,s=0.24 RRCF-fast:w=0.19,s=0.58 RRCF-mid:w=0.19,s=0.66 RRCF-slow:w=0.18,s=0.55 COPOD!:w=0.20,s=0.18"} +{"timestamp":"2026-03-21T18:25:50.491638299Z","score":0.8844123312289331,"is_anomaly":false,"confidence":0.9862846337792885,"method":"SEAD","details":"MAD!:w=0.24,s=0.87 RRCF-fast!:w=0.19,s=0.92 RRCF-mid!:w=0.18,s=0.92 RRCF-slow!:w=0.18,s=0.92 COPOD!:w=0.21,s=0.79"} +{"timestamp":"2026-03-21T18:26:19.115490527Z","score":0.7726921097576552,"is_anomaly":false,"confidence":0.8616957583998274,"method":"SEAD","details":"MAD!:w=0.24,s=0.78 RRCF-fast:w=0.19,s=0.70 RRCF-mid:w=0.18,s=0.85 RRCF-slow:w=0.18,s=0.88 COPOD!:w=0.21,s=0.68"} +{"timestamp":"2026-03-21T18:26:49.533573168Z","score":0.6313631372537342,"is_anomaly":false,"confidence":0.7042040742396778,"method":"SEAD","details":"MAD!:w=0.24,s=0.59 RRCF-fast:w=0.19,s=0.59 RRCF-mid:w=0.18,s=0.68 RRCF-slow:w=0.18,s=0.68 COPOD!:w=0.21,s=0.63"} +{"timestamp":"2026-03-21T18:27:19.064248906Z","score":0.5546166912754731,"is_anomaly":false,"confidence":0.6186033212777783,"method":"SEAD","details":"MAD!:w=0.24,s=0.48 RRCF-fast:w=0.19,s=0.55 RRCF-mid:w=0.18,s=0.67 RRCF-slow:w=0.18,s=0.67 COPOD!:w=0.21,s=0.45"} +{"timestamp":"2026-03-21T18:27:49.019713139Z","score":0.4415711034252329,"is_anomaly":false,"confidence":0.4925155615691119,"method":"SEAD","details":"MAD!:w=0.24,s=0.40 RRCF-fast:w=0.19,s=0.53 RRCF-mid:w=0.18,s=0.49 RRCF-slow:w=0.18,s=0.47 COPOD!:w=0.21,s=0.35"} +{"timestamp":"2026-03-21T18:28:19.062784535Z","score":0.46985600026867985,"is_anomaly":false,"confidence":0.5240637125797077,"method":"SEAD","details":"MAD!:w=0.24,s=0.32 RRCF-fast:w=0.19,s=0.55 RRCF-mid:w=0.18,s=0.59 RRCF-slow:w=0.18,s=0.59 COPOD!:w=0.21,s=0.36"} +{"timestamp":"2026-03-21T18:28:49.030489377Z","score":0.361864850152148,"is_anomaly":false,"confidence":0.4036135256640151,"method":"SEAD","details":"MAD!:w=0.24,s=0.24 RRCF-fast:w=0.19,s=0.36 RRCF-mid:w=0.18,s=0.42 RRCF-slow:w=0.18,s=0.44 COPOD!:w=0.21,s=0.38"} +{"timestamp":"2026-03-21T18:29:21.445314753Z","score":0.8175029880093602,"is_anomaly":false,"confidence":0.9118190481683797,"method":"SEAD","details":"MAD!:w=0.24,s=0.85 RRCF-fast:w=0.19,s=0.87 RRCF-mid!:w=0.18,s=0.89 RRCF-slow!:w=0.18,s=0.91 COPOD!:w=0.21,s=0.59"} +{"timestamp":"2026-03-21T18:29:50.365951751Z","score":0.706271218468832,"is_anomaly":false,"confidence":0.7985768555346062,"method":"SEAD","details":"MAD!:w=0.24,s=0.79 RRCF-fast:w=0.19,s=0.64 RRCF-mid:w=0.18,s=0.87 RRCF-slow:w=0.18,s=0.87 COPOD!:w=0.21,s=0.38"} +{"timestamp":"2026-03-21T18:30:19.063695053Z","score":0.5476041674645816,"is_anomaly":false,"confidence":0.6191729220958051,"method":"SEAD","details":"MAD!:w=0.24,s=0.62 RRCF-fast:w=0.19,s=0.35 RRCF-mid:w=0.18,s=0.50 RRCF-slow:w=0.18,s=0.62 COPOD!:w=0.21,s=0.60"} +{"timestamp":"2026-03-21T18:30:49.019419099Z","score":0.31511938459797206,"is_anomaly":false,"confidence":0.3563036984797562,"method":"SEAD","details":"MAD!:w=0.24,s=0.41 RRCF-fast:w=0.19,s=0.22 RRCF-mid:w=0.18,s=0.39 RRCF-slow:w=0.18,s=0.39 COPOD!:w=0.21,s=0.16"} +{"timestamp":"2026-03-21T18:31:19.062181433Z","score":0.6464241637300474,"is_anomaly":false,"confidence":0.7309081306360916,"method":"SEAD","details":"MAD!:w=0.24,s=0.46 RRCF-fast:w=0.19,s=0.48 RRCF-mid:w=0.18,s=0.64 RRCF-slow:w=0.18,s=0.66 COPOD!:w=0.21,s=1.00"} +{"timestamp":"2026-03-21T18:31:50.355923103Z","score":0.3735635226081607,"is_anomaly":false,"confidence":0.42238615340095537,"method":"SEAD","details":"MAD!:w=0.24,s=0.27 RRCF-fast:w=0.19,s=0.39 RRCF-mid:w=0.18,s=0.63 RRCF-slow:w=0.18,s=0.55 COPOD!:w=0.21,s=0.10"} +{"timestamp":"2026-03-21T18:32:19.080319188Z","score":0.3560887919701176,"is_anomaly":false,"confidence":0.40262757471429106,"method":"SEAD","details":"MAD!:w=0.24,s=0.17 RRCF-fast:w=0.19,s=0.29 RRCF-mid:w=0.18,s=0.46 RRCF-slow:w=0.18,s=0.44 COPOD!:w=0.21,s=0.46"} +{"timestamp":"2026-03-21T18:32:49.021261625Z","score":0.38380960212434667,"is_anomaly":false,"confidence":0.4339713373184484,"method":"SEAD","details":"MAD!:w=0.24,s=0.15 RRCF-fast:w=0.19,s=0.26 RRCF-mid:w=0.18,s=0.38 RRCF-slow:w=0.18,s=0.40 COPOD!:w=0.21,s=0.75"} +{"timestamp":"2026-03-21T18:33:19.058724101Z","score":0.788207891512949,"is_anomaly":false,"confidence":0.918993777466096,"method":"SEAD","details":"MAD!:w=0.24,s=0.80 RRCF-fast:w=0.19,s=0.78 RRCF-mid:w=0.18,s=0.87 RRCF-slow!:w=0.18,s=0.89 COPOD!:w=0.21,s=0.63"} +{"timestamp":"2026-03-21T18:33:49.217942452Z","score":0.6695229525448518,"is_anomaly":false,"confidence":0.7806156648323014,"method":"SEAD","details":"MAD!:w=0.24,s=0.67 RRCF-fast:w=0.19,s=0.64 RRCF-mid:w=0.18,s=0.58 RRCF-slow:w=0.18,s=0.64 COPOD!:w=0.21,s=0.80"} +{"timestamp":"2026-03-21T18:34:19.063956698Z","score":0.7211030665191642,"is_anomaly":false,"confidence":0.840754372264421,"method":"SEAD","details":"MAD!:w=0.24,s=0.50 RRCF-fast:w=0.19,s=0.79 RRCF-mid:w=0.18,s=0.70 RRCF-slow:w=0.18,s=0.70 COPOD!:w=0.21,s=0.96"} +{"timestamp":"2026-03-21T18:34:49.061699253Z","score":0.3891205353591762,"is_anomaly":false,"confidence":0.45368659021283614,"method":"SEAD","details":"MAD!:w=0.24,s=0.35 RRCF-fast:w=0.19,s=0.44 RRCF-mid:w=0.18,s=0.35 RRCF-slow:w=0.18,s=0.35 COPOD!:w=0.21,s=0.46"} +{"timestamp":"2026-03-21T18:35:19.019461402Z","score":0.3016608581405871,"is_anomaly":false,"confidence":0.35171488958852665,"method":"SEAD","details":"MAD!:w=0.25,s=0.28 RRCF-fast:w=0.19,s=0.29 RRCF-mid:w=0.18,s=0.47 RRCF-slow:w=0.18,s=0.45 COPOD!:w=0.21,s=0.07"} +{"timestamp":"2026-03-21T18:35:49.065841891Z","score":0.29351366948683955,"is_anomaly":false,"confidence":0.3422158529038459,"method":"SEAD","details":"MAD!:w=0.25,s=0.14 RRCF-fast:w=0.19,s=0.17 RRCF-mid:w=0.18,s=0.32 RRCF-slow:w=0.18,s=0.32 COPOD!:w=0.21,s=0.54"} +{"timestamp":"2026-03-21T18:36:19.021712277Z","score":0.3509283547148924,"is_anomaly":false,"confidence":0.4091572512682752,"method":"SEAD","details":"MAD!:w=0.25,s=0.20 RRCF-fast:w=0.19,s=0.22 RRCF-mid:w=0.18,s=0.33 RRCF-slow:w=0.18,s=0.33 COPOD!:w=0.21,s=0.68"} +{"timestamp":"2026-03-21T18:36:55.201230653Z","score":0.9228218956733003,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.92 RRCF-fast!:w=0.19,s=0.93 RRCF-mid!:w=0.18,s=0.95 RRCF-slow!:w=0.18,s=0.95 COPOD!:w=0.21,s=0.87"} +{"timestamp":"2026-03-21T18:37:19.065643931Z","score":0.7959332193603194,"is_anomaly":false,"confidence":0.9280009547565841,"method":"SEAD","details":"MAD!:w=0.25,s=0.82 RRCF-fast!:w=0.19,s=0.90 RRCF-mid:w=0.18,s=0.85 RRCF-slow:w=0.18,s=0.87 COPOD!:w=0.21,s=0.55"} +{"timestamp":"2026-03-21T18:37:51.266371923Z","score":0.698500857649204,"is_anomaly":false,"confidence":0.8144018204413069,"method":"SEAD","details":"MAD!:w=0.25,s=0.52 RRCF-fast:w=0.19,s=0.73 RRCF-mid:w=0.18,s=0.76 RRCF-slow:w=0.18,s=0.71 COPOD!:w=0.21,s=0.81"} +{"timestamp":"2026-03-21T18:38:21.263392021Z","score":0.2793076668944875,"is_anomaly":false,"confidence":0.3256526744256661,"method":"SEAD","details":"MAD!:w=0.25,s=0.36 RRCF-fast:w=0.19,s=0.39 RRCF-mid:w=0.18,s=0.28 RRCF-slow:w=0.18,s=0.28 COPOD!:w=0.21,s=0.08"} +{"timestamp":"2026-03-21T18:38:49.020623644Z","score":0.35710580445440077,"is_anomaly":false,"confidence":0.4163597138829551,"method":"SEAD","details":"MAD!:w=0.25,s=0.17 RRCF-fast:w=0.19,s=0.52 RRCF-mid:w=0.18,s=0.45 RRCF-slow:w=0.18,s=0.45 COPOD!:w=0.21,s=0.28"} +{"timestamp":"2026-03-21T18:39:19.058701631Z","score":0.4378547874772123,"is_anomaly":false,"confidence":0.5105072271643039,"method":"SEAD","details":"MAD!:w=0.25,s=0.35 RRCF-fast:w=0.19,s=0.61 RRCF-mid:w=0.18,s=0.53 RRCF-slow:w=0.18,s=0.48 COPOD!:w=0.21,s=0.27"} +{"timestamp":"2026-03-21T18:39:50.707840065Z","score":0.38882769167859876,"is_anomaly":false,"confidence":0.45900527299051747,"method":"SEAD","details":"MAD!:w=0.25,s=0.22 RRCF-fast:w=0.19,s=0.34 RRCF-mid:w=0.18,s=0.31 RRCF-slow:w=0.18,s=0.34 COPOD!:w=0.21,s=0.73"} +{"timestamp":"2026-03-21T18:40:19.057169052Z","score":0.8404800686646601,"is_anomaly":false,"confidence":0.9921741471011205,"method":"SEAD","details":"MAD!:w=0.25,s=0.90 RRCF-fast!:w=0.19,s=0.90 RRCF-mid!:w=0.18,s=0.94 RRCF-slow!:w=0.18,s=0.93 COPOD!:w=0.21,s=0.56"} +{"timestamp":"2026-03-21T18:40:55.260050769Z","score":0.9339425956654094,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.94 RRCF-fast!:w=0.19,s=1.00 RRCF-mid!:w=0.18,s=0.96 RRCF-slow!:w=0.18,s=0.96 COPOD!:w=0.21,s=0.83"} +{"timestamp":"2026-03-21T18:41:20.168250755Z","score":0.7654459728253982,"is_anomaly":false,"confidence":0.8924550154690591,"method":"SEAD","details":"MAD!:w=0.25,s=0.80 RRCF-fast:w=0.19,s=0.77 RRCF-mid:w=0.18,s=0.83 RRCF-slow:w=0.18,s=0.76 COPOD!:w=0.21,s=0.67"} +{"timestamp":"2026-03-21T18:41:49.122715418Z","score":0.6194547364042235,"is_anomaly":false,"confidence":0.722239721661084,"method":"SEAD","details":"MAD!:w=0.25,s=0.62 RRCF-fast:w=0.19,s=0.52 RRCF-mid:w=0.18,s=0.62 RRCF-slow:w=0.18,s=0.51 COPOD!:w=0.21,s=0.80"} +{"timestamp":"2026-03-21T18:42:19.020868049Z","score":0.37279254711981386,"is_anomaly":false,"confidence":0.43464932891149194,"method":"SEAD","details":"MAD!:w=0.25,s=0.47 RRCF-fast:w=0.19,s=0.51 RRCF-mid:w=0.18,s=0.38 RRCF-slow:w=0.18,s=0.39 COPOD!:w=0.21,s=0.11"} +{"timestamp":"2026-03-21T18:42:49.017451343Z","score":0.2726348385562973,"is_anomaly":false,"confidence":0.31787263595240817,"method":"SEAD","details":"MAD!:w=0.25,s=0.11 RRCF-fast:w=0.19,s=0.21 RRCF-mid:w=0.18,s=0.42 RRCF-slow:w=0.18,s=0.38 COPOD!:w=0.21,s=0.30"} +{"timestamp":"2026-03-21T18:43:19.060726481Z","score":0.3801469036534248,"is_anomaly":false,"confidence":0.4487577325952687,"method":"SEAD","details":"MAD!:w=0.25,s=0.24 RRCF-fast:w=0.19,s=0.32 RRCF-mid:w=0.18,s=0.30 RRCF-slow:w=0.18,s=0.35 COPOD!:w=0.21,s=0.69"} +{"timestamp":"2026-03-21T18:43:49.02195946Z","score":0.39734787322225024,"is_anomaly":false,"confidence":0.4690632198370738,"method":"SEAD","details":"MAD!:w=0.25,s=0.11 RRCF-fast:w=0.19,s=0.35 RRCF-mid:w=0.18,s=0.29 RRCF-slow:w=0.18,s=0.29 COPOD!:w=0.21,s=0.97"} +{"timestamp":"2026-03-21T18:44:26.656434377Z","score":0.9776152850360771,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.96 RRCF-fast!:w=0.19,s=1.00 RRCF-mid!:w=0.18,s=0.97 RRCF-slow!:w=0.18,s=0.99 COPOD!:w=0.20,s=0.97"} +{"timestamp":"2026-03-21T18:44:49.064458507Z","score":0.8883539379752889,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.94 RRCF-fast!:w=0.19,s=1.00 RRCF-mid!:w=0.18,s=0.94 RRCF-slow!:w=0.18,s=0.95 COPOD!:w=0.20,s=0.64"} +{"timestamp":"2026-03-21T18:45:26.320897811Z","score":0.6935928615756829,"is_anomaly":false,"confidence":0.7842415094008273,"method":"SEAD","details":"MAD!:w=0.25,s=0.58 RRCF-fast:w=0.19,s=0.88 RRCF-mid:w=0.18,s=0.86 RRCF-slow:w=0.18,s=0.82 COPOD!:w=0.21,s=0.41"} +{"timestamp":"2026-03-21T18:45:49.064519241Z","score":0.5573017066694254,"is_anomaly":false,"confidence":0.6301378745986367,"method":"SEAD","details":"MAD!:w=0.25,s=0.49 RRCF-fast:w=0.18,s=0.86 RRCF-mid:w=0.18,s=0.63 RRCF-slow:w=0.18,s=0.68 COPOD!:w=0.21,s=0.19"} +{"timestamp":"2026-03-21T18:46:19.019038008Z","score":0.47278848660610845,"is_anomaly":false,"confidence":0.5345792566563904,"method":"SEAD","details":"MAD!:w=0.25,s=0.39 RRCF-fast:w=0.18,s=0.82 RRCF-mid:w=0.18,s=0.51 RRCF-slow:w=0.18,s=0.61 COPOD!:w=0.21,s=0.11"} +{"timestamp":"2026-03-21T18:46:49.071339131Z","score":0.5074897184778265,"is_anomaly":false,"confidence":0.5916965542097488,"method":"SEAD","details":"MAD!:w=0.25,s=0.36 RRCF-fast:w=0.18,s=0.72 RRCF-mid:w=0.18,s=0.56 RRCF-slow:w=0.18,s=0.68 COPOD!:w=0.21,s=0.32"} +{"timestamp":"2026-03-21T18:47:19.02042968Z","score":0.43851527523514877,"is_anomaly":false,"confidence":0.5112773084413018,"method":"SEAD","details":"MAD!:w=0.25,s=0.18 RRCF-fast:w=0.18,s=0.59 RRCF-mid:w=0.18,s=0.50 RRCF-slow:w=0.18,s=0.62 COPOD!:w=0.21,s=0.41"} +{"timestamp":"2026-03-21T18:47:49.054719602Z","score":0.7229127522298803,"is_anomaly":false,"confidence":0.84286433579717,"method":"SEAD","details":"MAD!:w=0.26,s=0.75 RRCF-fast:w=0.18,s=0.86 RRCF-mid:w=0.18,s=0.87 RRCF-slow:w=0.18,s=0.87 COPOD!:w=0.21,s=0.34"} +{"timestamp":"2026-03-21T18:48:22.107055602Z","score":0.786760364313777,"is_anomaly":false,"confidence":0.9173060647407153,"method":"SEAD","details":"MAD!:w=0.26,s=0.81 RRCF-fast:w=0.18,s=0.82 RRCF-mid:w=0.18,s=0.82 RRCF-slow:w=0.18,s=0.86 COPOD!:w=0.21,s=0.64"} +{"timestamp":"2026-03-21T18:48:49.071138596Z","score":0.7549303399738558,"is_anomaly":false,"confidence":0.880194542996326,"method":"SEAD","details":"MAD!:w=0.26,s=0.73 RRCF-fast:w=0.18,s=0.65 RRCF-mid:w=0.18,s=0.66 RRCF-slow:w=0.17,s=0.79 COPOD!:w=0.21,s=0.93"} +{"timestamp":"2026-03-21T18:49:19.021590975Z","score":0.5150876108052939,"is_anomaly":false,"confidence":0.6005551508388656,"method":"SEAD","details":"MAD!:w=0.26,s=0.67 RRCF-fast:w=0.18,s=0.58 RRCF-mid:w=0.18,s=0.51 RRCF-slow:w=0.17,s=0.62 COPOD!:w=0.21,s=0.19"} +{"timestamp":"2026-03-21T18:49:49.019757353Z","score":0.344593622553713,"is_anomaly":false,"confidence":0.406787616150036,"method":"SEAD","details":"MAD!:w=0.25,s=0.21 RRCF-fast:w=0.18,s=0.51 RRCF-mid:w=0.18,s=0.43 RRCF-slow:w=0.17,s=0.44 COPOD!:w=0.21,s=0.23"} +{"timestamp":"2026-03-21T18:50:19.066965657Z","score":0.629379550639805,"is_anomaly":false,"confidence":0.7429731437308879,"method":"SEAD","details":"MAD!:w=0.26,s=0.53 RRCF-fast:w=0.18,s=0.60 RRCF-mid:w=0.18,s=0.69 RRCF-slow:w=0.17,s=0.68 COPOD!:w=0.21,s=0.67"} +{"timestamp":"2026-03-21T18:50:49.065540047Z","score":0.5576590621102012,"is_anomaly":false,"confidence":0.6583081799922571,"method":"SEAD","details":"MAD!:w=0.26,s=0.42 RRCF-fast:w=0.18,s=0.51 RRCF-mid:w=0.18,s=0.31 RRCF-slow:w=0.17,s=0.55 COPOD!:w=0.21,s=0.98"} +{"timestamp":"2026-03-21T18:51:19.020160441Z","score":0.45397158793886433,"is_anomaly":false,"confidence":0.5359066679439545,"method":"SEAD","details":"MAD!:w=0.26,s=0.08 RRCF-fast:w=0.18,s=0.56 RRCF-mid:w=0.18,s=0.36 RRCF-slow:w=0.17,s=0.43 COPOD!:w=0.21,s=0.92"} +{"timestamp":"2026-03-21T18:51:50.611049825Z","score":0.6517503578722484,"is_anomaly":false,"confidence":0.7693815469915117,"method":"SEAD","details":"MAD!:w=0.26,s=0.82 RRCF-fast:w=0.18,s=0.63 RRCF-mid:w=0.18,s=0.78 RRCF-slow:w=0.17,s=0.82 COPOD!:w=0.21,s=0.21"} +{"timestamp":"2026-03-21T18:52:21.255217371Z","score":0.5785882647273716,"is_anomaly":false,"confidence":0.6830147905716005,"method":"SEAD","details":"MAD!:w=0.26,s=0.66 RRCF-fast:w=0.18,s=0.58 RRCF-mid:w=0.18,s=0.62 RRCF-slow:w=0.17,s=0.58 COPOD!:w=0.21,s=0.45"} +{"timestamp":"2026-03-21T18:52:49.066141361Z","score":0.417027497319862,"is_anomaly":false,"confidence":0.4922947216683314,"method":"SEAD","details":"MAD!:w=0.26,s=0.59 RRCF-fast:w=0.18,s=0.35 RRCF-mid:w=0.18,s=0.32 RRCF-slow:w=0.17,s=0.41 COPOD!:w=0.21,s=0.34"} +{"timestamp":"2026-03-21T18:53:19.021206105Z","score":0.2566922225973491,"is_anomaly":false,"confidence":0.30541143349797356,"method":"SEAD","details":"MAD!:w=0.26,s=0.26 RRCF-fast:w=0.18,s=0.38 RRCF-mid:w=0.18,s=0.18 RRCF-slow:w=0.17,s=0.41 COPOD!:w=0.21,s=0.09"} +{"timestamp":"2026-03-21T18:53:49.021680362Z","score":0.25005777756111164,"is_anomaly":false,"confidence":0.2975177959405974,"method":"SEAD","details":"MAD!:w=0.26,s=0.26 RRCF-fast:w=0.18,s=0.15 RRCF-mid:w=0.18,s=0.20 RRCF-slow:w=0.17,s=0.29 COPOD!:w=0.21,s=0.33"} +{"timestamp":"2026-03-21T18:54:19.061381469Z","score":0.8008056017659436,"is_anomaly":false,"confidence":0.9527954696632479,"method":"SEAD","details":"MAD!:w=0.26,s=0.59 RRCF-fast:w=0.18,s=0.72 RRCF-mid:w=0.18,s=0.82 RRCF-slow!:w=0.17,s=0.94 COPOD!:w=0.21,s=0.99"} +{"timestamp":"2026-03-21T18:54:49.088606271Z","score":0.4278121271545372,"is_anomaly":false,"confidence":0.509009247339128,"method":"SEAD","details":"MAD!:w=0.26,s=0.36 RRCF-fast:w=0.18,s=0.21 RRCF-mid:w=0.18,s=0.24 RRCF-slow:w=0.17,s=0.39 COPOD!:w=0.21,s=0.89"} +{"timestamp":"2026-03-21T18:55:19.017540868Z","score":0.35236605488060574,"is_anomaly":false,"confidence":0.4192437965131508,"method":"SEAD","details":"MAD!:w=0.26,s=0.23 RRCF-fast:w=0.18,s=0.29 RRCF-mid:w=0.18,s=0.29 RRCF-slow:w=0.17,s=0.39 COPOD!:w=0.21,s=0.58"} +{"timestamp":"2026-03-21T18:55:49.762086807Z","score":0.9030991292920086,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.26,s=1.00 RRCF-fast!:w=0.18,s=0.89 RRCF-mid!:w=0.18,s=0.89 RRCF-slow!:w=0.17,s=0.94 COPOD!:w=0.21,s=0.78"} +{"timestamp":"2026-03-21T18:56:19.064565141Z","score":0.6916878741056185,"is_anomaly":false,"confidence":0.8165271874219107,"method":"SEAD","details":"MAD!:w=0.26,s=0.77 RRCF-fast:w=0.18,s=0.54 RRCF-mid:w=0.18,s=0.72 RRCF-slow:w=0.17,s=0.78 COPOD!:w=0.21,s=0.63"} +{"timestamp":"2026-03-21T18:56:49.851949104Z","score":0.8588491132454973,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.26,s=0.96 RRCF-fast:w=0.18,s=0.71 RRCF-mid:w=0.18,s=0.68 RRCF-slow!:w=0.17,s=0.87 COPOD!:w=0.21,s=1.00"} +{"timestamp":"2026-03-21T18:57:19.110918172Z","score":0.2580753406326331,"is_anomaly":false,"confidence":0.3046540786943712,"method":"SEAD","details":"MAD!:w=0.26,s=0.31 RRCF-fast:w=0.18,s=0.34 RRCF-mid:w=0.18,s=0.16 RRCF-slow:w=0.17,s=0.37 COPOD!:w=0.21,s=0.11"} +{"timestamp":"2026-03-21T18:57:49.021024276Z","score":0.3297801371429361,"is_anomaly":false,"confidence":0.38930051823897704,"method":"SEAD","details":"MAD!:w=0.26,s=0.76 RRCF-fast:w=0.18,s=0.21 RRCF-mid:w=0.18,s=0.18 RRCF-slow:w=0.17,s=0.31 COPOD!:w=0.21,s=0.05"} +{"timestamp":"2026-03-21T18:58:19.066251632Z","score":0.5467695923489131,"is_anomaly":false,"confidence":0.6454533238503916,"method":"SEAD","details":"MAD!:w=0.25,s=0.88 RRCF-fast:w=0.18,s=0.53 RRCF-mid:w=0.18,s=0.37 RRCF-slow:w=0.17,s=0.58 COPOD!:w=0.21,s=0.30"} +{"timestamp":"2026-03-21T18:58:49.03186467Z","score":0.33797382694127776,"is_anomaly":false,"confidence":0.39897304646465753,"method":"SEAD","details":"MAD!:w=0.25,s=0.00 RRCF-fast:w=0.18,s=0.45 RRCF-mid:w=0.18,s=0.15 RRCF-slow:w=0.17,s=0.26 COPOD!:w=0.21,s=0.87"} +{"timestamp":"2026-03-21T18:59:19.065303476Z","score":0.7764335610919763,"is_anomaly":false,"confidence":0.9165682030759484,"method":"SEAD","details":"MAD!:w=0.25,s=0.99 RRCF-fast:w=0.18,s=0.81 RRCF-mid:w=0.18,s=0.83 RRCF-slow!:w=0.17,s=0.88 COPOD!:w=0.21,s=0.36"} +{"timestamp":"2026-03-21T18:59:50.197512674Z","score":0.7676657542384282,"is_anomaly":false,"confidence":0.9133658046859838,"method":"SEAD","details":"MAD!:w=0.25,s=0.74 RRCF-fast!:w=0.18,s=0.89 RRCF-mid:w=0.18,s=0.85 RRCF-slow!:w=0.17,s=0.90 COPOD!:w=0.21,s=0.52"} +{"timestamp":"2026-03-21T19:00:26.130834674Z","score":0.8017308697610142,"is_anomaly":false,"confidence":0.9538963500167114,"method":"SEAD","details":"MAD!:w=0.25,s=0.93 RRCF-fast:w=0.18,s=0.68 RRCF-mid:w=0.18,s=0.67 RRCF-slow:w=0.17,s=0.69 COPOD!:w=0.21,s=0.96"} +{"timestamp":"2026-03-21T19:00:49.065865554Z","score":0.5579485601308347,"is_anomaly":false,"confidence":0.6638450820342398,"method":"SEAD","details":"MAD!:w=0.25,s=0.85 RRCF-fast:w=0.18,s=0.51 RRCF-mid:w=0.18,s=0.61 RRCF-slow:w=0.17,s=0.73 COPOD!:w=0.21,s=0.06"} +{"timestamp":"2026-03-21T19:01:19.020017239Z","score":0.2233886715412455,"is_anomaly":false,"confidence":0.2657869946828858,"method":"SEAD","details":"MAD!:w=0.25,s=0.00 RRCF-fast:w=0.18,s=0.19 RRCF-mid:w=0.18,s=0.43 RRCF-slow:w=0.17,s=0.41 COPOD!:w=0.21,s=0.19"} +{"timestamp":"2026-03-21T19:01:49.021508904Z","score":0.19663653764184494,"is_anomaly":false,"confidence":0.23395740716880722,"method":"SEAD","details":"MAD!:w=0.25,s=0.01 RRCF-fast:w=0.18,s=0.35 RRCF-mid:w=0.18,s=0.29 RRCF-slow:w=0.17,s=0.42 COPOD!:w=0.21,s=0.03"} +{"timestamp":"2026-03-21T19:02:19.064660582Z","score":0.2355743559642634,"is_anomaly":false,"confidence":0.28028547582162155,"method":"SEAD","details":"MAD!:w=0.25,s=0.01 RRCF-fast:w=0.18,s=0.20 RRCF-mid:w=0.18,s=0.29 RRCF-slow:w=0.17,s=0.38 COPOD!:w=0.22,s=0.38"} +{"timestamp":"2026-03-21T19:02:49.02244247Z","score":0.28127727679016545,"is_anomaly":false,"confidence":0.3346626377911065,"method":"SEAD","details":"MAD!:w=0.25,s=0.00 RRCF-fast:w=0.18,s=0.19 RRCF-mid:w=0.18,s=0.19 RRCF-slow:w=0.17,s=0.35 COPOD!:w=0.21,s=0.72"} +{"timestamp":"2026-03-21T19:03:19.928901427Z","score":0.8845346854260089,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.26,s=0.72 RRCF-fast!:w=0.18,s=1.00 RRCF-mid!:w=0.18,s=0.95 RRCF-slow!:w=0.17,s=0.97 COPOD!:w=0.21,s=0.86"} +{"timestamp":"2026-03-21T19:03:49.065889523Z","score":0.9133424447645478,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.26,s=0.87 RRCF-fast!:w=0.18,s=0.95 RRCF-mid!:w=0.18,s=0.95 RRCF-slow!:w=0.17,s=0.94 COPOD!:w=0.21,s=0.89"} +{"timestamp":"2026-03-21T19:04:19.451869827Z","score":0.8209461696170739,"is_anomaly":false,"confidence":0.9691146715113061,"method":"SEAD","details":"MAD!:w=0.26,s=0.91 RRCF-fast!:w=0.18,s=0.91 RRCF-mid:w=0.18,s=0.66 RRCF-slow:w=0.17,s=0.68 COPOD!:w=0.21,s=0.89"} +{"timestamp":"2026-03-21T19:04:49.064904032Z","score":0.4724878877306279,"is_anomaly":false,"confidence":0.5577648828360099,"method":"SEAD","details":"MAD!:w=0.26,s=0.32 RRCF-fast:w=0.18,s=0.79 RRCF-mid:w=0.18,s=0.57 RRCF-slow:w=0.17,s=0.47 COPOD!:w=0.21,s=0.30"} +{"timestamp":"2026-03-21T19:05:19.022678601Z","score":0.46475615467781484,"is_anomaly":false,"confidence":0.5486376876373465,"method":"SEAD","details":"MAD!:w=0.26,s=0.74 RRCF-fast:w=0.18,s=0.72 RRCF-mid:w=0.18,s=0.25 RRCF-slow:w=0.17,s=0.53 COPOD!:w=0.21,s=0.04"} +{"timestamp":"2026-03-21T19:05:49.070411333Z","score":0.6870902348332352,"is_anomaly":false,"confidence":0.8110997430436008,"method":"SEAD","details":"MAD!:w=0.26,s=0.84 RRCF-fast:w=0.18,s=0.72 RRCF-mid:w=0.18,s=0.59 RRCF-slow:w=0.17,s=0.64 COPOD!:w=0.22,s=0.60"} +{"timestamp":"2026-03-21T19:06:19.03399798Z","score":0.3987322304981644,"is_anomaly":false,"confidence":0.47069743289068683,"method":"SEAD","details":"MAD!:w=0.25,s=0.03 RRCF-fast:w=0.18,s=0.63 RRCF-mid:w=0.18,s=0.30 RRCF-slow:w=0.17,s=0.48 COPOD!:w=0.22,s=0.65"} +{"timestamp":"2026-03-21T19:06:49.080086145Z","score":0.835460463967679,"is_anomaly":false,"confidence":0.9940276933574926,"method":"SEAD","details":"MAD!:w=0.26,s=0.98 RRCF-fast:w=0.18,s=0.83 RRCF-mid!:w=0.18,s=0.88 RRCF-slow!:w=0.17,s=0.93 COPOD!:w=0.21,s=0.55"} +{"timestamp":"2026-03-21T19:07:20.549502226Z","score":0.9020391854319199,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.26,s=0.94 RRCF-fast!:w=0.18,s=0.92 RRCF-mid:w=0.18,s=0.87 RRCF-slow!:w=0.17,s=0.90 COPOD!:w=0.22,s=0.87"} +{"timestamp":"2026-03-21T19:07:49.068565646Z","score":0.7935407443308046,"is_anomaly":false,"confidence":0.9367629769582774,"method":"SEAD","details":"MAD!:w=0.26,s=0.90 RRCF-fast:w=0.18,s=0.67 RRCF-mid:w=0.18,s=0.72 RRCF-slow:w=0.17,s=0.80 COPOD!:w=0.22,s=0.81"} +{"timestamp":"2026-03-21T19:08:19.021869235Z","score":0.326051548660017,"is_anomaly":false,"confidence":0.3848989753162414,"method":"SEAD","details":"MAD!:w=0.25,s=0.00 RRCF-fast:w=0.18,s=0.64 RRCF-mid:w=0.18,s=0.35 RRCF-slow:w=0.17,s=0.42 COPOD!:w=0.22,s=0.35"} +{"timestamp":"2026-03-21T19:08:49.021535447Z","score":0.435916397657426,"is_anomaly":false,"confidence":0.5145927859304336,"method":"SEAD","details":"MAD!:w=0.26,s=0.74 RRCF-fast:w=0.18,s=0.57 RRCF-mid:w=0.18,s=0.26 RRCF-slow:w=0.17,s=0.30 COPOD!:w=0.22,s=0.22"} +{"timestamp":"2026-03-21T19:09:19.019866975Z","score":0.32142101827097214,"is_anomaly":false,"confidence":0.3794327034667783,"method":"SEAD","details":"MAD!:w=0.25,s=0.02 RRCF-fast:w=0.18,s=0.56 RRCF-mid:w=0.18,s=0.34 RRCF-slow:w=0.17,s=0.55 COPOD!:w=0.22,s=0.29"} +{"timestamp":"2026-03-21T19:09:49.063516368Z","score":0.8938691228049683,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.26,s=0.87 RRCF-fast:w=0.18,s=0.85 RRCF-mid:w=0.18,s=0.87 RRCF-slow!:w=0.17,s=0.91 COPOD!:w=0.22,s=0.98"} +{"timestamp":"2026-03-21T19:10:19.028627842Z","score":0.46763463199289845,"is_anomaly":false,"confidence":0.5520356870444955,"method":"SEAD","details":"MAD!:w=0.26,s=0.06 RRCF-fast:w=0.18,s=0.56 RRCF-mid:w=0.18,s=0.67 RRCF-slow:w=0.17,s=0.77 COPOD!:w=0.22,s=0.46"} +{"timestamp":"2026-03-21T19:10:49.020365205Z","score":0.3663088356297688,"is_anomaly":false,"confidence":0.4324221003170258,"method":"SEAD","details":"MAD!:w=0.26,s=0.03 RRCF-fast:w=0.18,s=0.26 RRCF-mid:w=0.18,s=0.21 RRCF-slow:w=0.17,s=0.40 COPOD!:w=0.22,s=0.96"} +{"timestamp":"2026-03-21T19:11:23.206917796Z","score":0.7458396759184611,"is_anomaly":false,"confidence":0.8804525793268111,"method":"SEAD","details":"MAD!:w=0.26,s=0.69 RRCF-fast:w=0.18,s=0.65 RRCF-mid:w=0.18,s=0.84 RRCF-slow:w=0.17,s=0.85 COPOD!:w=0.21,s=0.73"} +{"timestamp":"2026-03-21T19:11:49.140507396Z","score":0.737925597595208,"is_anomaly":false,"confidence":0.8711101282643601,"method":"SEAD","details":"MAD!:w=0.26,s=0.81 RRCF-fast:w=0.18,s=0.59 RRCF-mid:w=0.18,s=0.65 RRCF-slow:w=0.17,s=0.73 COPOD!:w=0.21,s=0.85"} +{"timestamp":"2026-03-21T19:12:19.06514781Z","score":0.765426140365259,"is_anomaly":false,"confidence":0.903574107583993,"method":"SEAD","details":"MAD!:w=0.26,s=0.89 RRCF-fast:w=0.18,s=0.65 RRCF-mid:w=0.18,s=0.58 RRCF-slow:w=0.17,s=0.68 COPOD!:w=0.21,s=0.94"} +{"timestamp":"2026-03-21T19:12:49.02414768Z","score":0.3210294840202589,"is_anomaly":false,"confidence":0.37897050314133873,"method":"SEAD","details":"MAD!:w=0.26,s=0.29 RRCF-fast:w=0.18,s=0.45 RRCF-mid:w=0.18,s=0.35 RRCF-slow:w=0.17,s=0.47 COPOD!:w=0.21,s=0.10"} +{"timestamp":"2026-03-21T19:13:19.022485187Z","score":0.34643190006242025,"is_anomaly":false,"confidence":0.4121833616028815,"method":"SEAD","details":"MAD!:w=0.26,s=0.68 RRCF-fast:w=0.18,s=0.34 RRCF-mid:w=0.18,s=0.18 RRCF-slow:w=0.17,s=0.43 COPOD!:w=0.21,s=0.03"} +{"timestamp":"2026-03-21T19:13:49.0643711Z","score":0.5630407589112335,"is_anomaly":false,"confidence":0.6699037608420421,"method":"SEAD","details":"MAD!:w=0.26,s=0.81 RRCF-fast:w=0.18,s=0.52 RRCF-mid:w=0.18,s=0.54 RRCF-slow:w=0.17,s=0.54 COPOD!:w=0.21,s=0.33"} +{"timestamp":"2026-03-21T19:14:19.036654921Z","score":0.21753033581186265,"is_anomaly":false,"confidence":0.2588167690370945,"method":"SEAD","details":"MAD!:w=0.26,s=0.06 RRCF-fast:w=0.18,s=0.24 RRCF-mid:w=0.18,s=0.18 RRCF-slow:w=0.17,s=0.32 COPOD!:w=0.22,s=0.34"} +{"timestamp":"2026-03-21T19:14:49.720758834Z","score":0.8773868899185964,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.26,s=0.98 RRCF-fast:w=0.18,s=0.85 RRCF-mid!:w=0.18,s=0.86 RRCF-slow!:w=0.17,s=0.93 COPOD!:w=0.22,s=0.75"} +{"timestamp":"2026-03-21T19:15:20.673461818Z","score":0.6836404208890702,"is_anomaly":false,"confidence":0.8070272892932726,"method":"SEAD","details":"MAD!:w=0.26,s=0.72 RRCF-fast:w=0.18,s=0.49 RRCF-mid:w=0.18,s=0.76 RRCF-slow:w=0.17,s=0.78 COPOD!:w=0.22,s=0.66"} +{"timestamp":"2026-03-21T19:15:49.069694876Z","score":0.6226652533779167,"is_anomaly":false,"confidence":0.735047016262117,"method":"SEAD","details":"MAD!:w=0.26,s=0.78 RRCF-fast:w=0.18,s=0.40 RRCF-mid:w=0.18,s=0.56 RRCF-slow:w=0.17,s=0.62 COPOD!:w=0.22,s=0.68"} +{"timestamp":"2026-03-21T19:16:19.022054385Z","score":0.2286393706264034,"is_anomaly":false,"confidence":0.26990535647728586,"method":"SEAD","details":"MAD!:w=0.26,s=0.04 RRCF-fast:w=0.18,s=0.27 RRCF-mid:w=0.18,s=0.36 RRCF-slow:w=0.17,s=0.33 COPOD!:w=0.22,s=0.22"} +{"timestamp":"2026-03-21T19:16:50.714127707Z","score":0.6733098743112115,"is_anomaly":false,"confidence":0.801101536388548,"method":"SEAD","details":"MAD!:w=0.26,s=0.97 RRCF-fast:w=0.18,s=0.57 RRCF-mid:w=0.18,s=0.67 RRCF-slow:w=0.17,s=0.67 COPOD!:w=0.22,s=0.41"} +{"timestamp":"2026-03-21T19:17:19.063741574Z","score":0.6309600534252799,"is_anomaly":false,"confidence":0.7507138800182831,"method":"SEAD","details":"MAD!:w=0.26,s=0.87 RRCF-fast:w=0.18,s=0.40 RRCF-mid:w=0.18,s=0.51 RRCF-slow:w=0.17,s=0.55 COPOD!:w=0.22,s=0.71"} +{"timestamp":"2026-03-21T19:17:49.026467185Z","score":0.4110363995367017,"is_anomaly":false,"confidence":0.48904955020497876,"method":"SEAD","details":"MAD!:w=0.25,s=0.08 RRCF-fast:w=0.18,s=0.36 RRCF-mid:w=0.18,s=0.58 RRCF-slow:w=0.17,s=0.55 COPOD!:w=0.22,s=0.60"} +{"timestamp":"2026-03-21T19:18:19.508556888Z","score":0.7987824249065909,"is_anomaly":false,"confidence":0.9503883015044989,"method":"SEAD","details":"MAD!:w=0.26,s=0.97 RRCF-fast:w=0.18,s=0.51 RRCF-mid:w=0.18,s=0.80 RRCF-slow:w=0.17,s=0.83 COPOD!:w=0.22,s=0.81"} +{"timestamp":"2026-03-21T19:18:56.154070916Z","score":0.9543684179296537,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.97 RRCF-fast!:w=0.18,s=0.88 RRCF-mid!:w=0.18,s=0.98 RRCF-slow!:w=0.17,s=0.97 COPOD!:w=0.22,s=0.97"} +{"timestamp":"2026-03-21T19:19:19.071619802Z","score":0.8436449463464059,"is_anomaly":false,"confidence":0.9959102378564366,"method":"SEAD","details":"MAD!:w=0.25,s=0.90 RRCF-fast!:w=0.18,s=0.86 RRCF-mid!:w=0.18,s=0.98 RRCF-slow!:w=0.17,s=0.97 COPOD!:w=0.22,s=0.55"} +{"timestamp":"2026-03-21T19:19:49.063430174Z","score":0.8105330147696509,"is_anomaly":false,"confidence":0.9607513424691825,"method":"SEAD","details":"MAD!:w=0.25,s=0.86 RRCF-fast:w=0.18,s=0.45 RRCF-mid:w=0.18,s=0.85 RRCF-slow!:w=0.17,s=0.90 COPOD!:w=0.22,s=0.96"} +{"timestamp":"2026-03-21T19:20:19.019218524Z","score":0.4402305557200522,"is_anomaly":false,"confidence":0.5218197034505684,"method":"SEAD","details":"MAD!:w=0.25,s=0.09 RRCF-fast:w=0.18,s=0.45 RRCF-mid:w=0.18,s=0.71 RRCF-slow:w=0.17,s=0.80 COPOD!:w=0.22,s=0.34"} +{"timestamp":"2026-03-21T19:20:49.028836738Z","score":0.521335593606558,"is_anomaly":false,"confidence":0.617956162559047,"method":"SEAD","details":"MAD!:w=0.26,s=0.68 RRCF-fast:w=0.18,s=0.25 RRCF-mid:w=0.18,s=0.67 RRCF-slow:w=0.16,s=0.73 COPOD!:w=0.22,s=0.28"} +{"timestamp":"2026-03-21T19:21:19.063049087Z","score":0.4347401580931277,"is_anomaly":false,"confidence":0.5153117552305241,"method":"SEAD","details":"MAD!:w=0.25,s=0.04 RRCF-fast:w=0.18,s=0.19 RRCF-mid:w=0.18,s=0.54 RRCF-slow:w=0.16,s=0.54 COPOD!:w=0.22,s=0.94"} +{"timestamp":"2026-03-21T19:21:49.027461878Z","score":0.38094781067672334,"is_anomaly":false,"confidence":0.45154992313591574,"method":"SEAD","details":"MAD!:w=0.26,s=0.03 RRCF-fast:w=0.18,s=0.13 RRCF-mid:w=0.18,s=0.24 RRCF-slow:w=0.16,s=0.62 COPOD!:w=0.22,s=0.95"} +{"timestamp":"2026-03-21T19:22:21.286557022Z","score":0.9619730523441108,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.26,s=0.95 RRCF-fast!:w=0.19,s=0.95 RRCF-mid!:w=0.18,s=0.96 RRCF-slow!:w=0.16,s=0.96 COPOD!:w=0.21,s=0.99"} +{"timestamp":"2026-03-21T19:22:49.107730629Z","score":0.9178077764820451,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.26,s=0.96 RRCF-fast:w=0.19,s=0.80 RRCF-mid!:w=0.18,s=0.92 RRCF-slow!:w=0.16,s=0.93 COPOD!:w=0.21,s=0.95"} +{"timestamp":"2026-03-21T19:23:19.143775079Z","score":0.8565472451721444,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.26,s=0.90 RRCF-fast:w=0.19,s=0.61 RRCF-mid!:w=0.18,s=0.87 RRCF-slow:w=0.16,s=0.89 COPOD!:w=0.21,s=0.99"} +{"timestamp":"2026-03-21T19:23:49.118586406Z","score":0.38610434037998326,"is_anomaly":false,"confidence":0.450768293933846,"method":"SEAD","details":"MAD!:w=0.26,s=0.32 RRCF-fast:w=0.19,s=0.40 RRCF-mid:w=0.18,s=0.57 RRCF-slow:w=0.16,s=0.60 COPOD!:w=0.21,s=0.14"} +{"timestamp":"2026-03-21T19:24:19.023369541Z","score":0.512580797069308,"is_anomaly":false,"confidence":0.5984267650832176,"method":"SEAD","details":"MAD!:w=0.26,s=0.67 RRCF-fast:w=0.19,s=0.43 RRCF-mid:w=0.18,s=0.60 RRCF-slow:w=0.16,s=0.65 COPOD!:w=0.21,s=0.21"} +{"timestamp":"2026-03-21T19:24:49.065683762Z","score":0.5600756355150391,"is_anomaly":false,"confidence":0.6538759404946519,"method":"SEAD","details":"MAD!:w=0.26,s=0.77 RRCF-fast:w=0.19,s=0.46 RRCF-mid:w=0.18,s=0.64 RRCF-slow:w=0.16,s=0.69 COPOD!:w=0.21,s=0.23"} +{"timestamp":"2026-03-21T19:25:19.02026007Z","score":0.3875590299485414,"is_anomaly":false,"confidence":0.45246661189208753,"method":"SEAD","details":"MAD!:w=0.26,s=0.08 RRCF-fast:w=0.19,s=0.40 RRCF-mid:w=0.18,s=0.51 RRCF-slow:w=0.16,s=0.54 COPOD!:w=0.22,s=0.53"} +{"timestamp":"2026-03-21T19:25:55.340267128Z","score":0.8958950729266573,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.26,s=0.97 RRCF-fast:w=0.19,s=0.85 RRCF-mid!:w=0.18,s=0.89 RRCF-slow!:w=0.16,s=0.92 COPOD!:w=0.21,s=0.83"} +{"timestamp":"2026-03-21T19:26:19.473187927Z","score":0.9457850399129206,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.26,s=0.96 RRCF-fast!:w=0.19,s=0.96 RRCF-mid!:w=0.18,s=1.00 RRCF-slow!:w=0.16,s=1.00 COPOD!:w=0.22,s=0.83"} +{"timestamp":"2026-03-21T19:26:49.069718567Z","score":0.7573675759421498,"is_anomaly":false,"confidence":0.8830361850468509,"method":"SEAD","details":"MAD!:w=0.26,s=0.88 RRCF-fast:w=0.19,s=0.68 RRCF-mid:w=0.18,s=0.84 RRCF-slow:w=0.16,s=0.86 COPOD!:w=0.22,s=0.52"} +{"timestamp":"2026-03-21T19:27:19.06314072Z","score":0.7702404867886856,"is_anomaly":false,"confidence":0.8980450743173383,"method":"SEAD","details":"MAD!:w=0.26,s=0.83 RRCF-fast:w=0.19,s=0.55 RRCF-mid:w=0.18,s=0.80 RRCF-slow:w=0.16,s=0.81 COPOD!:w=0.22,s=0.84"} +{"timestamp":"2026-03-21T19:27:49.021454818Z","score":0.48946837782511093,"is_anomaly":false,"confidence":0.570684965643117,"method":"SEAD","details":"MAD!:w=0.26,s=0.29 RRCF-fast:w=0.19,s=0.37 RRCF-mid:w=0.18,s=0.70 RRCF-slow:w=0.16,s=0.74 COPOD!:w=0.22,s=0.47"} +{"timestamp":"2026-03-21T19:28:19.779516465Z","score":0.6514849107574914,"is_anomaly":false,"confidence":0.7595846039424659,"method":"SEAD","details":"MAD!:w=0.26,s=0.75 RRCF-fast:w=0.19,s=0.45 RRCF-mid:w=0.18,s=0.77 RRCF-slow:w=0.16,s=0.74 COPOD!:w=0.22,s=0.55"} +{"timestamp":"2026-03-21T19:28:49.085764524Z","score":0.33670337100715386,"is_anomaly":false,"confidence":0.39257194217313834,"method":"SEAD","details":"MAD!:w=0.26,s=0.06 RRCF-fast:w=0.19,s=0.15 RRCF-mid:w=0.18,s=0.39 RRCF-slow:w=0.16,s=0.50 COPOD!:w=0.22,s=0.67"} +{"timestamp":"2026-03-21T19:29:19.020706803Z","score":0.428952601702958,"is_anomaly":false,"confidence":0.5001279180753229,"method":"SEAD","details":"MAD!:w=0.26,s=0.01 RRCF-fast:w=0.19,s=0.28 RRCF-mid:w=0.18,s=0.61 RRCF-slow:w=0.16,s=0.46 COPOD!:w=0.22,s=0.89"} +{"timestamp":"2026-03-21T19:29:50.274316416Z","score":0.7322275720010432,"is_anomaly":false,"confidence":0.8548595259960049,"method":"SEAD","details":"MAD!:w=0.26,s=0.62 RRCF-fast:w=0.19,s=0.70 RRCF-mid:w=0.18,s=0.86 RRCF-slow:w=0.16,s=0.90 COPOD!:w=0.21,s=0.66"} +{"timestamp":"2026-03-21T19:30:19.060535583Z","score":0.7585971759809891,"is_anomaly":false,"confidence":0.8856454565194827,"method":"SEAD","details":"MAD!:w=0.26,s=0.79 RRCF-fast:w=0.19,s=0.55 RRCF-mid:w=0.18,s=0.82 RRCF-slow:w=0.16,s=0.85 COPOD!:w=0.21,s=0.79"} +{"timestamp":"2026-03-21T19:30:49.065974139Z","score":0.7101174346339292,"is_anomaly":false,"confidence":0.8290464287130052,"method":"SEAD","details":"MAD!:w=0.26,s=0.85 RRCF-fast:w=0.19,s=0.36 RRCF-mid:w=0.18,s=0.67 RRCF-slow:w=0.16,s=0.63 COPOD!:w=0.21,s=0.95"} +{"timestamp":"2026-03-21T19:31:19.02051774Z","score":0.33859404092344997,"is_anomaly":false,"confidence":0.39530106813361016,"method":"SEAD","details":"MAD!:w=0.26,s=0.29 RRCF-fast:w=0.19,s=0.19 RRCF-mid:w=0.18,s=0.46 RRCF-slow:w=0.16,s=0.41 COPOD!:w=0.21,s=0.37"} +{"timestamp":"2026-03-21T19:31:49.02112905Z","score":0.3764374869080921,"is_anomaly":false,"confidence":0.43948245590637286,"method":"SEAD","details":"MAD!:w=0.26,s=0.67 RRCF-fast:w=0.19,s=0.19 RRCF-mid:w=0.18,s=0.37 RRCF-slow:w=0.16,s=0.39 COPOD!:w=0.21,s=0.18"} +{"timestamp":"2026-03-21T19:32:19.066000721Z","score":0.5215255962195589,"is_anomaly":false,"confidence":0.6088696206299109,"method":"SEAD","details":"MAD!:w=0.26,s=0.74 RRCF-fast:w=0.19,s=0.51 RRCF-mid:w=0.18,s=0.55 RRCF-slow:w=0.16,s=0.48 COPOD!:w=0.21,s=0.27"} +{"timestamp":"2026-03-21T19:32:49.031326643Z","score":0.2396983167325673,"is_anomaly":false,"confidence":0.279842493316751,"method":"SEAD","details":"MAD!:w=0.26,s=0.09 RRCF-fast:w=0.19,s=0.06 RRCF-mid:w=0.18,s=0.23 RRCF-slow:w=0.16,s=0.43 COPOD!:w=0.21,s=0.46"} +{"timestamp":"2026-03-21T19:33:24.248064095Z","score":0.9051851714539588,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.26,s=0.97 RRCF-fast!:w=0.19,s=0.96 RRCF-mid!:w=0.18,s=0.98 RRCF-slow!:w=0.16,s=0.98 COPOD!:w=0.21,s=0.66"} +{"timestamp":"2026-03-21T19:33:50.128196827Z","score":0.7329588051258337,"is_anomaly":false,"confidence":0.8557132245268355,"method":"SEAD","details":"MAD!:w=0.26,s=0.61 RRCF-fast!:w=0.19,s=0.95 RRCF-mid!:w=0.18,s=0.93 RRCF-slow!:w=0.16,s=0.95 COPOD!:w=0.21,s=0.35"} +{"timestamp":"2026-03-21T19:34:19.060917207Z","score":0.7179203704505652,"is_anomaly":false,"confidence":0.838156184024947,"method":"SEAD","details":"MAD!:w=0.26,s=0.85 RRCF-fast:w=0.19,s=0.75 RRCF-mid:w=0.17,s=0.68 RRCF-slow:w=0.16,s=0.76 COPOD!:w=0.22,s=0.53"} +{"timestamp":"2026-03-21T19:34:49.066904281Z","score":0.6705358555694962,"is_anomaly":false,"confidence":0.782835808939804,"method":"SEAD","details":"MAD!:w=0.26,s=0.92 RRCF-fast:w=0.19,s=0.68 RRCF-mid:w=0.17,s=0.73 RRCF-slow:w=0.16,s=0.71 COPOD!:w=0.22,s=0.30"} +{"timestamp":"2026-03-21T19:35:19.011224845Z","score":0.2888512828803444,"is_anomaly":false,"confidence":0.33722749621626835,"method":"SEAD","details":"MAD!:w=0.26,s=0.01 RRCF-fast:w=0.19,s=0.49 RRCF-mid:w=0.17,s=0.37 RRCF-slow:w=0.16,s=0.41 COPOD!:w=0.22,s=0.29"} +{"timestamp":"2026-03-21T19:35:51.055019605Z","score":0.5217435871736529,"is_anomaly":false,"confidence":0.6091241202565488,"method":"SEAD","details":"MAD!:w=0.26,s=0.73 RRCF-fast:w=0.19,s=0.65 RRCF-mid:w=0.17,s=0.63 RRCF-slow:w=0.16,s=0.53 COPOD!:w=0.22,s=0.07"} +{"timestamp":"2026-03-21T19:36:19.069389975Z","score":0.4559937630710955,"is_anomaly":false,"confidence":0.5323626520793401,"method":"SEAD","details":"MAD!:w=0.26,s=0.07 RRCF-fast:w=0.19,s=0.48 RRCF-mid:w=0.17,s=0.37 RRCF-slow:w=0.16,s=0.45 COPOD!:w=0.22,s=0.96"} +{"timestamp":"2026-03-21T19:36:49.023336074Z","score":0.3660108126981884,"is_anomaly":false,"confidence":0.4320702887048515,"method":"SEAD","details":"MAD!:w=0.26,s=0.02 RRCF-fast:w=0.19,s=0.37 RRCF-mid:w=0.17,s=0.16 RRCF-slow:w=0.16,s=0.39 COPOD!:w=0.22,s=0.92"} +{"timestamp":"2026-03-21T19:37:21.194908079Z","score":0.8844031813214683,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.26,s=0.94 RRCF-fast:w=0.19,s=0.79 RRCF-mid:w=0.17,s=0.84 RRCF-slow:w=0.16,s=0.90 COPOD!:w=0.22,s=0.93"} +{"timestamp":"2026-03-21T19:37:49.156623156Z","score":0.7849184123639885,"is_anomaly":false,"confidence":0.916374918941266,"method":"SEAD","details":"MAD!:w=0.26,s=0.93 RRCF-fast:w=0.19,s=0.60 RRCF-mid:w=0.17,s=0.73 RRCF-slow:w=0.16,s=0.79 COPOD!:w=0.22,s=0.81"} +{"timestamp":"2026-03-21T19:38:19.06514739Z","score":0.3576806042030841,"is_anomaly":false,"confidence":0.41758420941649205,"method":"SEAD","details":"MAD!:w=0.26,s=0.12 RRCF-fast:w=0.19,s=0.38 RRCF-mid:w=0.17,s=0.52 RRCF-slow:w=0.16,s=0.59 COPOD!:w=0.22,s=0.33"} +{"timestamp":"2026-03-21T19:38:49.023435147Z","score":0.4613425203871731,"is_anomaly":false,"confidence":0.5386072081691826,"method":"SEAD","details":"MAD!:w=0.26,s=0.63 RRCF-fast:w=0.19,s=0.45 RRCF-mid:w=0.17,s=0.34 RRCF-slow:w=0.16,s=0.48 COPOD!:w=0.22,s=0.35"} +{"timestamp":"2026-03-21T19:39:25.32411619Z","score":0.7585915118586803,"is_anomaly":false,"confidence":0.8856388437817257,"method":"SEAD","details":"MAD!:w=0.26,s=0.94 RRCF-fast:w=0.19,s=0.74 RRCF-mid:w=0.17,s=0.79 RRCF-slow:w=0.16,s=0.77 COPOD!:w=0.22,s=0.52"} +{"timestamp":"2026-03-21T19:39:49.077885355Z","score":0.46218182155874676,"is_anomaly":false,"confidence":0.5455987259034608,"method":"SEAD","details":"MAD!:w=0.26,s=0.72 RRCF-fast:w=0.19,s=0.44 RRCF-mid:w=0.17,s=0.41 RRCF-slow:w=0.16,s=0.59 COPOD!:w=0.22,s=0.12"} +{"timestamp":"2026-03-21T19:40:20.764789132Z","score":0.3367033957705504,"is_anomaly":false,"confidence":0.3974733214738321,"method":"SEAD","details":"MAD!:w=0.26,s=0.09 RRCF-fast:w=0.19,s=0.45 RRCF-mid:w=0.17,s=0.35 RRCF-slow:w=0.16,s=0.28 COPOD!:w=0.22,s=0.56"} +{"timestamp":"2026-03-21T19:40:53.920359687Z","score":0.9012094086410367,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.26,s=0.96 RRCF-fast!:w=0.19,s=0.89 RRCF-mid!:w=0.17,s=0.96 RRCF-slow!:w=0.16,s=0.95 COPOD!:w=0.22,s=0.75"} +{"timestamp":"2026-03-21T19:41:19.044587098Z","score":0.7672759492665859,"is_anomaly":false,"confidence":0.8957777327418557,"method":"SEAD","details":"MAD!:w=0.26,s=0.68 RRCF-fast!:w=0.19,s=0.92 RRCF-mid!:w=0.17,s=0.98 RRCF-slow!:w=0.16,s=0.99 COPOD!:w=0.22,s=0.41"} +{"timestamp":"2026-03-21T19:41:49.067629539Z","score":0.6967265187585074,"is_anomaly":false,"confidence":0.813412830040079,"method":"SEAD","details":"MAD!:w=0.26,s=0.84 RRCF-fast:w=0.19,s=0.65 RRCF-mid:w=0.17,s=0.64 RRCF-slow:w=0.15,s=0.75 COPOD!:w=0.22,s=0.57"} +{"timestamp":"2026-03-21T19:42:19.023704314Z","score":0.3503464532594189,"is_anomaly":false,"confidence":0.4090217500950669,"method":"SEAD","details":"MAD!:w=0.26,s=0.01 RRCF-fast:w=0.19,s=0.40 RRCF-mid:w=0.17,s=0.49 RRCF-slow:w=0.15,s=0.68 COPOD!:w=0.22,s=0.36"} +{"timestamp":"2026-03-21T19:42:49.089587952Z","score":0.6160494835356447,"is_anomaly":false,"confidence":0.7192241724060817,"method":"SEAD","details":"MAD!:w=0.26,s=0.93 RRCF-fast:w=0.19,s=0.68 RRCF-mid:w=0.17,s=0.61 RRCF-slow:w=0.15,s=0.61 COPOD!:w=0.22,s=0.20"} +{"timestamp":"2026-03-21T19:43:19.066705165Z","score":0.588586955856819,"is_anomaly":false,"confidence":0.6948180958650246,"method":"SEAD","details":"MAD!:w=0.26,s=0.78 RRCF-fast:w=0.19,s=0.62 RRCF-mid:w=0.17,s=0.51 RRCF-slow:w=0.15,s=0.68 COPOD!:w=0.22,s=0.34"} +{"timestamp":"2026-03-21T19:43:49.075461425Z","score":0.36246297804711447,"is_anomaly":false,"confidence":0.4278821229764509,"method":"SEAD","details":"MAD!:w=0.26,s=0.04 RRCF-fast:w=0.19,s=0.17 RRCF-mid:w=0.17,s=0.35 RRCF-slow:w=0.15,s=0.41 COPOD!:w=0.22,s=0.87"} +{"timestamp":"2026-03-21T19:44:19.024446427Z","score":0.3060179454964109,"is_anomaly":false,"confidence":0.3612496064932625,"method":"SEAD","details":"MAD!:w=0.26,s=0.05 RRCF-fast:w=0.19,s=0.27 RRCF-mid:w=0.17,s=0.27 RRCF-slow:w=0.15,s=0.38 COPOD!:w=0.22,s=0.62"} +{"timestamp":"2026-03-21T19:44:53.748446021Z","score":0.8669532840233137,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.26,s=0.78 RRCF-fast!:w=0.19,s=0.94 RRCF-mid!:w=0.17,s=0.96 RRCF-slow!:w=0.15,s=1.00 COPOD!:w=0.22,s=0.74"} +{"timestamp":"2026-03-21T19:45:19.059292288Z","score":0.7937367629902343,"is_anomaly":false,"confidence":0.9266701486276022,"method":"SEAD","details":"MAD!:w=0.26,s=0.78 RRCF-fast:w=0.19,s=0.67 RRCF-mid:w=0.17,s=0.76 RRCF-slow:w=0.15,s=0.83 COPOD!:w=0.22,s=0.92"} +{"timestamp":"2026-03-21T19:45:50.026827239Z","score":0.7901054361416194,"is_anomaly":false,"confidence":0.9224306546953264,"method":"SEAD","details":"MAD!:w=0.26,s=0.81 RRCF-fast:w=0.19,s=0.56 RRCF-mid:w=0.17,s=0.73 RRCF-slow:w=0.15,s=0.80 COPOD!:w=0.22,s=1.00"} +{"timestamp":"2026-03-21T19:46:19.06458914Z","score":0.47852974931130793,"is_anomaly":false,"confidence":0.5586729185208407,"method":"SEAD","details":"MAD!:w=0.26,s=0.33 RRCF-fast:w=0.19,s=0.57 RRCF-mid:w=0.17,s=0.57 RRCF-slow:w=0.15,s=0.81 COPOD!:w=0.22,s=0.27"} +{"timestamp":"2026-03-21T19:46:49.021416055Z","score":0.3979950735503735,"is_anomaly":false,"confidence":0.46982723014201705,"method":"SEAD","details":"MAD!:w=0.26,s=0.64 RRCF-fast:w=0.19,s=0.29 RRCF-mid:w=0.17,s=0.26 RRCF-slow:w=0.15,s=0.59 COPOD!:w=0.22,s=0.18"} +{"timestamp":"2026-03-21T19:47:19.066268885Z","score":0.4424134069433246,"is_anomaly":false,"confidence":0.5222624081942738,"method":"SEAD","details":"MAD!:w=0.26,s=0.70 RRCF-fast:w=0.19,s=0.43 RRCF-mid:w=0.17,s=0.47 RRCF-slow:w=0.15,s=0.52 COPOD!:w=0.22,s=0.07"} +{"timestamp":"2026-03-21T19:47:49.019876033Z","score":0.2643544220985812,"is_anomaly":false,"confidence":0.31206644042705756,"method":"SEAD","details":"MAD!:w=0.26,s=0.09 RRCF-fast:w=0.19,s=0.21 RRCF-mid:w=0.17,s=0.18 RRCF-slow:w=0.15,s=0.53 COPOD!:w=0.22,s=0.40"} +{"timestamp":"2026-03-21T19:48:21.385769417Z","score":0.8176213512863468,"is_anomaly":false,"confidence":0.9651897732126512,"method":"SEAD","details":"MAD!:w=0.26,s=0.96 RRCF-fast:w=0.19,s=0.80 RRCF-mid:w=0.17,s=0.86 RRCF-slow:w=0.15,s=0.89 COPOD!:w=0.22,s=0.58"} +{"timestamp":"2026-03-21T19:48:49.828466219Z","score":0.6713596851770833,"is_anomaly":false,"confidence":0.7925300645105677,"method":"SEAD","details":"MAD!:w=0.26,s=0.62 RRCF-fast:w=0.19,s=0.59 RRCF-mid:w=0.17,s=0.70 RRCF-slow:w=0.15,s=0.80 COPOD!:w=0.22,s=0.70"} +{"timestamp":"2026-03-21T19:49:20.162654788Z","score":0.5915200138582357,"is_anomaly":false,"confidence":0.6982805269558383,"method":"SEAD","details":"MAD!:w=0.26,s=0.75 RRCF-fast:w=0.19,s=0.55 RRCF-mid:w=0.17,s=0.55 RRCF-slow:w=0.15,s=0.55 COPOD!:w=0.22,s=0.50"} +{"timestamp":"2026-03-21T19:49:49.066563981Z","score":0.612956799516652,"is_anomaly":false,"confidence":0.7265577802263847,"method":"SEAD","details":"MAD!:w=0.26,s=0.82 RRCF-fast:w=0.19,s=0.40 RRCF-mid:w=0.17,s=0.36 RRCF-slow:w=0.15,s=0.55 COPOD!:w=0.22,s=0.81"} +{"timestamp":"2026-03-21T19:50:19.022925327Z","score":0.19190166711814052,"is_anomaly":false,"confidence":0.22746733439133826,"method":"SEAD","details":"MAD!:w=0.26,s=0.13 RRCF-fast:w=0.20,s=0.21 RRCF-mid:w=0.17,s=0.12 RRCF-slow:w=0.15,s=0.26 COPOD!:w=0.22,s=0.26"} +{"timestamp":"2026-03-21T19:50:49.063815738Z","score":0.4788032533832598,"is_anomaly":false,"confidence":0.5675411859655237,"method":"SEAD","details":"MAD!:w=0.26,s=0.69 RRCF-fast:w=0.20,s=0.42 RRCF-mid:w=0.18,s=0.39 RRCF-slow:w=0.15,s=0.53 COPOD!:w=0.22,s=0.32"} +{"timestamp":"2026-03-21T19:51:19.028958888Z","score":0.24544735857109284,"is_anomaly":false,"confidence":0.29093679708988696,"method":"SEAD","details":"MAD!:w=0.26,s=0.12 RRCF-fast:w=0.20,s=0.14 RRCF-mid:w=0.18,s=0.12 RRCF-slow:w=0.15,s=0.27 COPOD!:w=0.22,s=0.56"} +{"timestamp":"2026-03-21T19:51:49.02314078Z","score":0.29928904676582896,"is_anomaly":false,"confidence":0.354757114425882,"method":"SEAD","details":"MAD!:w=0.26,s=0.04 RRCF-fast:w=0.20,s=0.13 RRCF-mid:w=0.18,s=0.15 RRCF-slow:w=0.15,s=0.22 COPOD!:w=0.22,s=0.92"} +{"timestamp":"2026-03-21T19:52:19.412993455Z","score":0.758913686774966,"is_anomaly":false,"confidence":0.8995652615020244,"method":"SEAD","details":"MAD!:w=0.26,s=0.68 RRCF-fast:w=0.20,s=0.62 RRCF-mid:w=0.18,s=0.81 RRCF-slow:w=0.15,s=0.85 COPOD!:w=0.22,s=0.87"} +{"timestamp":"2026-03-21T19:52:49.079229031Z","score":0.6681433312012817,"is_anomaly":false,"confidence":0.7919721846196396,"method":"SEAD","details":"MAD!:w=0.26,s=0.87 RRCF-fast:w=0.20,s=0.53 RRCF-mid:w=0.18,s=0.51 RRCF-slow:w=0.15,s=0.58 COPOD!:w=0.22,s=0.74"} +{"timestamp":"2026-03-21T19:53:19.067281454Z","score":0.2735019796551793,"is_anomaly":false,"confidence":0.3254116187308456,"method":"SEAD","details":"MAD!:w=0.26,s=0.08 RRCF-fast:w=0.20,s=0.24 RRCF-mid:w=0.18,s=0.36 RRCF-slow:w=0.15,s=0.43 COPOD!:w=0.22,s=0.36"} +{"timestamp":"2026-03-21T19:53:49.028476366Z","score":0.2839747919098141,"is_anomaly":false,"confidence":0.33787213105599073,"method":"SEAD","details":"MAD!:w=0.26,s=0.52 RRCF-fast:w=0.20,s=0.17 RRCF-mid:w=0.18,s=0.33 RRCF-slow:w=0.15,s=0.37 COPOD!:w=0.22,s=0.01"} +{"timestamp":"2026-03-21T19:54:19.081625533Z","score":0.5315276889393291,"is_anomaly":false,"confidence":0.6324096296344195,"method":"SEAD","details":"MAD!:w=0.26,s=0.93 RRCF-fast:w=0.20,s=0.35 RRCF-mid:w=0.18,s=0.54 RRCF-slow:w=0.15,s=0.46 COPOD!:w=0.22,s=0.27"} +{"timestamp":"2026-03-21T19:54:49.07164083Z","score":0.6519486304872423,"is_anomaly":false,"confidence":0.7756860094529627,"method":"SEAD","details":"MAD!:w=0.26,s=0.80 RRCF-fast:w=0.20,s=0.45 RRCF-mid:w=0.18,s=0.53 RRCF-slow:w=0.15,s=0.64 COPOD!:w=0.22,s=0.77"} +{"timestamp":"2026-03-21T19:55:19.038159129Z","score":0.19800361384355328,"is_anomaly":false,"confidence":0.23558394925192924,"method":"SEAD","details":"MAD!:w=0.25,s=0.12 RRCF-fast:w=0.20,s=0.11 RRCF-mid:w=0.18,s=0.09 RRCF-slow:w=0.15,s=0.12 COPOD!:w=0.22,s=0.51"} +{"timestamp":"2026-03-21T19:55:50.967577648Z","score":0.7036410648114355,"is_anomaly":false,"confidence":0.837189471880479,"method":"SEAD","details":"MAD!:w=0.25,s=0.96 RRCF-fast:w=0.20,s=0.60 RRCF-mid!:w=0.18,s=0.87 RRCF-slow:w=0.15,s=0.83 COPOD!:w=0.22,s=0.28"} +{"timestamp":"2026-03-21T19:56:20.945118685Z","score":0.6846673545462989,"is_anomaly":false,"confidence":0.8146146233236516,"method":"SEAD","details":"MAD!:w=0.25,s=0.81 RRCF-fast:w=0.20,s=0.67 RRCF-mid:w=0.18,s=0.62 RRCF-slow:w=0.15,s=0.79 COPOD!:w=0.22,s=0.54"} +{"timestamp":"2026-03-21T19:56:49.07547476Z","score":0.65281845029585,"is_anomaly":false,"confidence":0.7813876041429354,"method":"SEAD","details":"MAD!:w=0.25,s=0.87 RRCF-fast:w=0.20,s=0.59 RRCF-mid:w=0.18,s=0.52 RRCF-slow:w=0.15,s=0.48 COPOD!:w=0.22,s=0.68"} +{"timestamp":"2026-03-21T19:57:20.927126428Z","score":0.6145968477902095,"is_anomaly":false,"confidence":0.735638458427383,"method":"SEAD","details":"MAD!:w=0.25,s=0.80 RRCF-fast:w=0.20,s=0.41 RRCF-mid:w=0.18,s=0.35 RRCF-slow:w=0.15,s=0.48 COPOD!:w=0.22,s=0.89"} +{"timestamp":"2026-03-21T19:57:49.020756607Z","score":0.2102601596276133,"is_anomaly":false,"confidence":0.2516697901287493,"method":"SEAD","details":"MAD!:w=0.25,s=0.33 RRCF-fast:w=0.20,s=0.04 RRCF-mid:w=0.18,s=0.09 RRCF-slow:w=0.15,s=0.17 COPOD!:w=0.22,s=0.35"} +{"timestamp":"2026-03-21T19:58:19.022927342Z","score":0.28614213000460026,"is_anomaly":false,"confidence":0.3424963147216863,"method":"SEAD","details":"MAD!:w=0.25,s=0.49 RRCF-fast:w=0.20,s=0.12 RRCF-mid:w=0.18,s=0.25 RRCF-slow:w=0.15,s=0.33 COPOD!:w=0.22,s=0.21"} +{"timestamp":"2026-03-21T19:58:51.647714359Z","score":0.16495461932066383,"is_anomaly":false,"confidence":0.19744156238977376,"method":"SEAD","details":"MAD!:w=0.25,s=0.07 RRCF-fast:w=0.20,s=0.25 RRCF-mid:w=0.18,s=0.09 RRCF-slow:w=0.15,s=0.23 COPOD!:w=0.22,s=0.21"} +{"timestamp":"2026-03-21T19:59:19.021523055Z","score":0.24217942114047822,"is_anomaly":false,"confidence":0.2898753820023341,"method":"SEAD","details":"MAD!:w=0.25,s=0.00 RRCF-fast:w=0.20,s=0.23 RRCF-mid:w=0.18,s=0.10 RRCF-slow:w=0.15,s=0.27 COPOD!:w=0.22,s=0.63"} +{"timestamp":"2026-03-21T19:59:50.988040212Z","score":0.9462789996228379,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.96 RRCF-fast!:w=0.20,s=0.97 RRCF-mid!:w=0.18,s=0.93 RRCF-slow!:w=0.15,s=0.89 COPOD!:w=0.22,s=0.97"} +{"timestamp":"2026-03-21T20:00:19.116420432Z","score":0.9134554250202953,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.94 RRCF-fast!:w=0.20,s=0.94 RRCF-mid!:w=0.18,s=0.91 RRCF-slow:w=0.15,s=0.76 COPOD!:w=0.22,s=0.96"} +{"timestamp":"2026-03-21T20:00:49.0685456Z","score":0.6657559121829534,"is_anomaly":false,"confidence":0.7921138608803593,"method":"SEAD","details":"MAD!:w=0.25,s=0.66 RRCF-fast!:w=0.20,s=0.90 RRCF-mid:w=0.18,s=0.74 RRCF-slow:w=0.15,s=0.64 COPOD!:w=0.22,s=0.40"} +{"timestamp":"2026-03-21T20:01:19.065145442Z","score":0.8212017485266414,"is_anomaly":false,"confidence":0.9770627277709896,"method":"SEAD","details":"MAD!:w=0.25,s=0.88 RRCF-fast!:w=0.20,s=0.87 RRCF-mid:w=0.18,s=0.78 RRCF-slow!:w=0.15,s=0.91 COPOD!:w=0.22,s=0.67"} +{"timestamp":"2026-03-21T20:01:49.065695724Z","score":0.34409962945783507,"is_anomaly":false,"confidence":0.40940843487762235,"method":"SEAD","details":"MAD!:w=0.25,s=0.31 RRCF-fast:w=0.20,s=0.71 RRCF-mid:w=0.18,s=0.39 RRCF-slow:w=0.15,s=0.29 COPOD!:w=0.22,s=0.05"} +{"timestamp":"2026-03-21T20:02:19.927978452Z","score":0.5429005086551904,"is_anomaly":false,"confidence":0.645940967425606,"method":"SEAD","details":"MAD!:w=0.25,s=0.68 RRCF-fast:w=0.20,s=0.72 RRCF-mid:w=0.18,s=0.67 RRCF-slow:w=0.15,s=0.45 COPOD!:w=0.22,s=0.19"} +{"timestamp":"2026-03-21T20:02:49.032493544Z","score":0.3153878021796549,"is_anomaly":false,"confidence":0.37524721160935737,"method":"SEAD","details":"MAD!:w=0.25,s=0.12 RRCF-fast:w=0.20,s=0.45 RRCF-mid:w=0.18,s=0.31 RRCF-slow:w=0.15,s=0.30 COPOD!:w=0.22,s=0.42"} +{"timestamp":"2026-03-21T20:03:19.056889512Z","score":0.8477892436827883,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.95 RRCF-fast!:w=0.20,s=0.87 RRCF-mid!:w=0.18,s=0.91 RRCF-slow!:w=0.15,s=0.90 COPOD!:w=0.22,s=0.62"} +{"timestamp":"2026-03-21T20:03:50.614319644Z","score":0.6485413373147705,"is_anomaly":false,"confidence":0.7716320249511229,"method":"SEAD","details":"MAD!:w=0.25,s=0.55 RRCF-fast:w=0.20,s=0.76 RRCF-mid:w=0.18,s=0.75 RRCF-slow:w=0.15,s=0.71 COPOD!:w=0.22,s=0.54"} +{"timestamp":"2026-03-21T20:04:21.285082076Z","score":0.6682877939024539,"is_anomaly":false,"confidence":0.7951262841535526,"method":"SEAD","details":"MAD!:w=0.25,s=0.85 RRCF-fast:w=0.20,s=0.51 RRCF-mid:w=0.18,s=0.59 RRCF-slow:w=0.15,s=0.62 COPOD!:w=0.22,s=0.69"} +{"timestamp":"2026-03-21T20:04:49.067669516Z","score":0.34321732080864475,"is_anomaly":false,"confidence":0.4083586673910571,"method":"SEAD","details":"MAD!:w=0.25,s=0.14 RRCF-fast:w=0.20,s=0.50 RRCF-mid:w=0.18,s=0.58 RRCF-slow:w=0.15,s=0.59 COPOD!:w=0.22,s=0.07"} +{"timestamp":"2026-03-21T20:05:19.023033535Z","score":0.3616961479840679,"is_anomaly":false,"confidence":0.43034470592351387,"method":"SEAD","details":"MAD!:w=0.25,s=0.49 RRCF-fast:w=0.20,s=0.45 RRCF-mid:w=0.18,s=0.37 RRCF-slow:w=0.15,s=0.21 COPOD!:w=0.22,s=0.24"} +{"timestamp":"2026-03-21T20:05:49.069472189Z","score":0.3927982890897474,"is_anomaly":false,"confidence":0.4673499155236583,"method":"SEAD","details":"MAD!:w=0.25,s=0.67 RRCF-fast:w=0.20,s=0.57 RRCF-mid:w=0.18,s=0.38 RRCF-slow:w=0.15,s=0.23 COPOD!:w=0.22,s=0.04"} +{"timestamp":"2026-03-21T20:06:19.066164971Z","score":0.7731508180438451,"is_anomaly":false,"confidence":0.9198919128114644,"method":"SEAD","details":"MAD!:w=0.25,s=0.91 RRCF-fast:w=0.20,s=0.73 RRCF-mid:w=0.18,s=0.80 RRCF-slow!:w=0.15,s=0.89 COPOD!:w=0.23,s=0.56"} +{"timestamp":"2026-03-21T20:06:49.061509313Z","score":0.93766672615654,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.95 RRCF-fast!:w=0.20,s=1.00 RRCF-mid!:w=0.18,s=0.95 RRCF-slow!:w=0.15,s=0.95 COPOD!:w=0.23,s=0.85"} +{"timestamp":"2026-03-21T20:07:19.024247384Z","score":0.7205754109283248,"is_anomaly":false,"confidence":0.8573378927035858,"method":"SEAD","details":"MAD!:w=0.25,s=0.78 RRCF-fast!:w=0.20,s=0.97 RRCF-mid!:w=0.18,s=0.97 RRCF-slow!:w=0.15,s=0.95 COPOD!:w=0.23,s=0.09"} +{"timestamp":"2026-03-21T20:07:49.354002664Z","score":0.6453133039160697,"is_anomaly":false,"confidence":0.767791323048662,"method":"SEAD","details":"MAD!:w=0.25,s=0.77 RRCF-fast!:w=0.20,s=0.91 RRCF-mid!:w=0.18,s=0.86 RRCF-slow:w=0.15,s=0.59 COPOD!:w=0.23,s=0.16"} +{"timestamp":"2026-03-21T20:08:19.022110476Z","score":0.635755381410276,"is_anomaly":false,"confidence":0.7564193430789536,"method":"SEAD","details":"MAD!:w=0.25,s=0.78 RRCF-fast!:w=0.20,s=0.89 RRCF-mid:w=0.18,s=0.82 RRCF-slow:w=0.15,s=0.65 COPOD!:w=0.23,s=0.13"} +{"timestamp":"2026-03-21T20:08:49.020871187Z","score":0.6555347477971827,"is_anomaly":false,"confidence":0.7799527582357602,"method":"SEAD","details":"MAD!:w=0.24,s=0.87 RRCF-fast:w=0.19,s=0.80 RRCF-mid!:w=0.18,s=0.88 RRCF-slow:w=0.15,s=0.73 COPOD!:w=0.24,s=0.11"} +{"timestamp":"2026-03-21T20:09:19.021381057Z","score":0.5973369234864365,"is_anomaly":false,"confidence":0.710709207459821,"method":"SEAD","details":"MAD!:w=0.24,s=0.76 RRCF-fast:w=0.19,s=0.82 RRCF-mid:w=0.17,s=0.70 RRCF-slow:w=0.15,s=0.69 COPOD!:w=0.24,s=0.11"} +{"timestamp":"2026-03-21T20:09:49.023379425Z","score":0.5619911088600753,"is_anomaly":false,"confidence":0.6726722964137974,"method":"SEAD","details":"MAD!:w=0.24,s=0.74 RRCF-fast:w=0.19,s=0.71 RRCF-mid:w=0.17,s=0.72 RRCF-slow:w=0.15,s=0.55 COPOD!:w=0.24,s=0.15"} +{"timestamp":"2026-03-21T20:10:19.021085147Z","score":0.5520144864542095,"is_anomaly":false,"confidence":0.660730830795561,"method":"SEAD","details":"MAD!:w=0.24,s=0.75 RRCF-fast:w=0.19,s=0.59 RRCF-mid:w=0.17,s=0.65 RRCF-slow:w=0.15,s=0.73 COPOD!:w=0.24,s=0.15"} +{"timestamp":"2026-03-21T20:10:49.020712361Z","score":0.5064025381967651,"is_anomaly":false,"confidence":0.6061358496748159,"method":"SEAD","details":"MAD!:w=0.24,s=0.74 RRCF-fast:w=0.19,s=0.53 RRCF-mid:w=0.17,s=0.65 RRCF-slow:w=0.15,s=0.64 COPOD!:w=0.25,s=0.08"} +{"timestamp":"2026-03-21T20:11:19.020387587Z","score":0.523633653530332,"is_anomaly":false,"confidence":0.6267605423762931,"method":"SEAD","details":"MAD!:w=0.24,s=0.81 RRCF-fast:w=0.19,s=0.54 RRCF-mid:w=0.17,s=0.62 RRCF-slow:w=0.15,s=0.70 COPOD!:w=0.25,s=0.06"} +{"timestamp":"2026-03-21T20:11:49.065456685Z","score":0.632159702003455,"is_anomaly":false,"confidence":0.7566602242328381,"method":"SEAD","details":"MAD!:w=0.24,s=0.74 RRCF-fast:w=0.19,s=0.47 RRCF-mid:w=0.17,s=0.62 RRCF-slow:w=0.15,s=0.51 COPOD!:w=0.25,s=0.74"} +{"timestamp":"2026-03-21T20:12:19.057602867Z","score":0.7418778868941849,"is_anomaly":false,"confidence":0.8879868274926358,"method":"SEAD","details":"MAD!:w=0.24,s=0.62 RRCF-fast:w=0.19,s=0.79 RRCF-mid!:w=0.17,s=0.90 RRCF-slow!:w=0.15,s=0.92 COPOD!:w=0.25,s=0.60"} +{"timestamp":"2026-03-21T20:12:49.052675301Z","score":0.7523266996606084,"is_anomaly":false,"confidence":0.9004934788747984,"method":"SEAD","details":"MAD!:w=0.24,s=0.64 RRCF-fast:w=0.19,s=0.77 RRCF-mid:w=0.17,s=0.81 RRCF-slow:w=0.15,s=0.79 COPOD!:w=0.25,s=0.78"} +{"timestamp":"2026-03-21T20:13:19.08452351Z","score":0.6081399109297007,"is_anomaly":false,"confidence":0.7405487287634184,"method":"SEAD","details":"MAD!:w=0.24,s=0.71 RRCF-fast:w=0.19,s=0.52 RRCF-mid:w=0.17,s=0.75 RRCF-slow:w=0.15,s=0.77 COPOD!:w=0.25,s=0.38"} +{"timestamp":"2026-03-21T20:13:49.072300658Z","score":0.7301979488610395,"is_anomaly":false,"confidence":0.8891821652488243,"method":"SEAD","details":"MAD!:w=0.24,s=0.87 RRCF-fast:w=0.19,s=0.73 RRCF-mid!:w=0.17,s=0.87 RRCF-slow:w=0.15,s=0.85 COPOD!:w=0.25,s=0.44"} +{"timestamp":"2026-03-21T20:14:19.023294858Z","score":0.8044319320519179,"is_anomaly":false,"confidence":0.9795789323332408,"method":"SEAD","details":"MAD!:w=0.24,s=0.90 RRCF-fast:w=0.19,s=0.79 RRCF-mid!:w=0.17,s=0.93 RRCF-slow!:w=0.15,s=0.95 COPOD!:w=0.25,s=0.56"} +{"timestamp":"2026-03-21T20:14:49.022956818Z","score":0.6670391895490759,"is_anomaly":false,"confidence":0.812272003494688,"method":"SEAD","details":"MAD!:w=0.23,s=0.75 RRCF-fast:w=0.19,s=0.58 RRCF-mid!:w=0.17,s=0.91 RRCF-slow!:w=0.15,s=0.90 COPOD!:w=0.26,s=0.35"} +{"timestamp":"2026-03-21T20:15:19.020539148Z","score":0.7285746046539336,"is_anomaly":false,"confidence":0.8872053742714324,"method":"SEAD","details":"MAD!:w=0.23,s=0.90 RRCF-fast:w=0.19,s=0.50 RRCF-mid!:w=0.17,s=0.90 RRCF-slow!:w=0.15,s=0.91 COPOD!:w=0.26,s=0.52"} +{"timestamp":"2026-03-21T20:15:49.020948526Z","score":0.7441859520400976,"is_anomaly":false,"confidence":0.9062157422037622,"method":"SEAD","details":"MAD!:w=0.23,s=0.94 RRCF-fast:w=0.19,s=0.53 RRCF-mid!:w=0.17,s=0.92 RRCF-slow!:w=0.15,s=0.92 COPOD!:w=0.26,s=0.52"} +{"timestamp":"2026-03-21T20:16:19.024595307Z","score":0.7085214189749803,"is_anomaly":false,"confidence":0.8627860574410291,"method":"SEAD","details":"MAD!:w=0.23,s=0.93 RRCF-fast:w=0.19,s=0.54 RRCF-mid:w=0.17,s=0.83 RRCF-slow!:w=0.15,s=0.91 COPOD!:w=0.26,s=0.44"} +{"timestamp":"2026-03-21T20:16:50.093791831Z","score":0.705835431384761,"is_anomaly":false,"confidence":0.8597828426606757,"method":"SEAD","details":"MAD!:w=0.23,s=0.93 RRCF-fast:w=0.19,s=0.33 RRCF-mid:w=0.17,s=0.85 RRCF-slow:w=0.15,s=0.87 COPOD!:w=0.26,s=0.61"} +{"timestamp":"2026-03-21T20:17:19.024066233Z","score":0.6440835438935283,"is_anomaly":false,"confidence":0.7845624569927133,"method":"SEAD","details":"MAD!:w=0.23,s=0.90 RRCF-fast:w=0.20,s=0.32 RRCF-mid:w=0.17,s=0.82 RRCF-slow:w=0.15,s=0.85 COPOD!:w=0.26,s=0.43"} +{"timestamp":"2026-03-21T20:17:49.023025883Z","score":0.559074815798768,"is_anomaly":false,"confidence":0.6810127588018903,"method":"SEAD","details":"MAD!:w=0.23,s=0.92 RRCF-fast:w=0.20,s=0.22 RRCF-mid:w=0.17,s=0.65 RRCF-slow:w=0.14,s=0.87 COPOD!:w=0.26,s=0.26"} +{"timestamp":"2026-03-21T20:18:19.021504458Z","score":0.512927242726012,"is_anomaly":false,"confidence":0.6248000925143049,"method":"SEAD","details":"MAD!:w=0.23,s=0.88 RRCF-fast:w=0.20,s=0.29 RRCF-mid:w=0.17,s=0.52 RRCF-slow:w=0.14,s=0.81 COPOD!:w=0.27,s=0.20"} +{"timestamp":"2026-03-21T20:18:49.054900646Z","score":0.8217855491909271,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.22,s=0.94 RRCF-fast:w=0.20,s=0.57 RRCF-mid:w=0.17,s=0.73 RRCF-slow!:w=0.14,s=0.89 COPOD!:w=0.27,s=0.93"} +{"timestamp":"2026-03-21T20:19:19.054720964Z","score":0.6580274493027443,"is_anomaly":false,"confidence":0.8012981590496413,"method":"SEAD","details":"MAD!:w=0.22,s=0.84 RRCF-fast:w=0.20,s=0.55 RRCF-mid:w=0.17,s=0.82 RRCF-slow:w=0.14,s=0.80 COPOD!:w=0.27,s=0.41"} +{"timestamp":"2026-03-21T20:19:49.062385289Z","score":0.4897077747087467,"is_anomaly":false,"confidence":0.5965163037878213,"method":"SEAD","details":"MAD!:w=0.22,s=0.85 RRCF-fast:w=0.20,s=0.30 RRCF-mid:w=0.17,s=0.55 RRCF-slow:w=0.14,s=0.74 COPOD!:w=0.27,s=0.17"} +{"timestamp":"2026-03-21T20:20:20.655098486Z","score":0.5260626162523393,"is_anomaly":false,"confidence":0.6408003785409201,"method":"SEAD","details":"MAD!:w=0.22,s=0.84 RRCF-fast:w=0.20,s=0.41 RRCF-mid:w=0.17,s=0.56 RRCF-slow:w=0.14,s=0.75 COPOD!:w=0.27,s=0.22"} +{"timestamp":"2026-03-21T20:20:49.023370489Z","score":0.44159245326407826,"is_anomaly":false,"confidence":0.5379067100953242,"method":"SEAD","details":"MAD!:w=0.22,s=0.87 RRCF-fast:w=0.20,s=0.33 RRCF-mid:w=0.17,s=0.41 RRCF-slow:w=0.14,s=0.67 COPOD!:w=0.27,s=0.08"} +{"timestamp":"2026-03-21T20:21:25.585403232Z","score":0.9467942418811106,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.22,s=0.95 RRCF-fast!:w=0.20,s=0.92 RRCF-mid!:w=0.17,s=0.93 RRCF-slow!:w=0.14,s=0.92 COPOD!:w=0.28,s=0.98"} +{"timestamp":"2026-03-21T20:21:49.069935801Z","score":0.8085341262370287,"is_anomaly":false,"confidence":0.9845742872414235,"method":"SEAD","details":"MAD!:w=0.22,s=0.30 RRCF-fast!:w=0.20,s=0.91 RRCF-mid!:w=0.17,s=0.96 RRCF-slow!:w=0.14,s=0.94 COPOD!:w=0.28,s=0.98"} +{"timestamp":"2026-03-21T20:22:19.144128834Z","score":0.8636523822088552,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.22,s=0.95 RRCF-fast:w=0.20,s=0.85 RRCF-mid!:w=0.17,s=0.92 RRCF-slow!:w=0.14,s=0.92 COPOD!:w=0.27,s=0.74"} +{"timestamp":"2026-03-21T20:22:49.036707812Z","score":0.8012217024081907,"is_anomaly":false,"confidence":0.9749766264410683,"method":"SEAD","details":"MAD!:w=0.22,s=0.83 RRCF-fast:w=0.20,s=0.73 RRCF-mid:w=0.17,s=0.87 RRCF-slow:w=0.14,s=0.86 COPOD!:w=0.27,s=0.75"} +{"timestamp":"2026-03-21T20:23:19.069599446Z","score":0.819249080060009,"is_anomaly":false,"confidence":0.997622181796208,"method":"SEAD","details":"MAD!:w=0.22,s=0.78 RRCF-fast:w=0.20,s=0.84 RRCF-mid:w=0.17,s=0.62 RRCF-slow:w=0.14,s=0.84 COPOD!:w=0.27,s=0.94"} +{"timestamp":"2026-03-21T20:23:49.023661363Z","score":0.4767252011762072,"is_anomaly":false,"confidence":0.5805214151474025,"method":"SEAD","details":"MAD!:w=0.22,s=0.00 RRCF-fast:w=0.20,s=0.71 RRCF-mid:w=0.17,s=0.42 RRCF-slow:w=0.14,s=0.52 COPOD!:w=0.27,s=0.70"} +{"timestamp":"2026-03-21T20:24:19.025880075Z","score":0.5526398355988287,"is_anomaly":false,"confidence":0.6729647575523884,"method":"SEAD","details":"MAD!:w=0.22,s=0.43 RRCF-fast:w=0.20,s=0.61 RRCF-mid:w=0.17,s=0.43 RRCF-slow:w=0.14,s=0.52 COPOD!:w=0.27,s=0.69"} +{"timestamp":"2026-03-21T20:24:49.022377724Z","score":0.42605441114300635,"is_anomaly":false,"confidence":0.518818197729622,"method":"SEAD","details":"MAD!:w=0.22,s=0.00 RRCF-fast:w=0.20,s=0.40 RRCF-mid:w=0.17,s=0.38 RRCF-slow:w=0.14,s=0.42 COPOD!:w=0.27,s=0.82"} +{"timestamp":"2026-03-21T20:25:19.064505016Z","score":0.6638643514986209,"is_anomaly":false,"confidence":0.8084059157079155,"method":"SEAD","details":"MAD!:w=0.22,s=0.67 RRCF-fast:w=0.20,s=0.45 RRCF-mid:w=0.17,s=0.42 RRCF-slow:w=0.14,s=0.62 COPOD!:w=0.27,s=0.99"} +{"timestamp":"2026-03-21T20:25:49.028811338Z","score":0.4209395584736356,"is_anomaly":false,"confidence":0.5125897006781391,"method":"SEAD","details":"MAD!:w=0.22,s=0.13 RRCF-fast:w=0.20,s=0.28 RRCF-mid:w=0.17,s=0.09 RRCF-slow:w=0.14,s=0.42 COPOD!:w=0.27,s=0.98"} +{"timestamp":"2026-03-21T20:26:19.022759457Z","score":0.39979367463082705,"is_anomaly":false,"confidence":0.48683977518084515,"method":"SEAD","details":"MAD!:w=0.23,s=0.03 RRCF-fast:w=0.20,s=0.43 RRCF-mid:w=0.17,s=0.23 RRCF-slow:w=0.14,s=0.47 COPOD!:w=0.26,s=0.77"} +{"timestamp":"2026-03-21T20:26:50.400660057Z","score":0.7442815763296928,"is_anomaly":false,"confidence":0.9066143480234022,"method":"SEAD","details":"MAD!:w=0.23,s=0.49 RRCF-fast:w=0.20,s=0.86 RRCF-mid:w=0.17,s=0.85 RRCF-slow:w=0.14,s=0.68 COPOD!:w=0.26,s=0.83"} +{"timestamp":"2026-03-21T20:27:19.068041749Z","score":0.6539850667239447,"is_anomaly":false,"confidence":0.796623567936242,"method":"SEAD","details":"MAD!:w=0.23,s=0.82 RRCF-fast:w=0.20,s=0.41 RRCF-mid:w=0.17,s=0.39 RRCF-slow:w=0.14,s=0.54 COPOD!:w=0.26,s=0.93"} +{"timestamp":"2026-03-21T20:27:49.075242499Z","score":0.63799489337998,"is_anomaly":false,"confidence":0.7771458312273622,"method":"SEAD","details":"MAD!:w=0.23,s=0.81 RRCF-fast:w=0.20,s=0.30 RRCF-mid:w=0.17,s=0.39 RRCF-slow:w=0.14,s=0.49 COPOD!:w=0.26,s=1.00"} +{"timestamp":"2026-03-21T20:28:19.0678042Z","score":0.3814217530789757,"is_anomaly":false,"confidence":0.46461237922199927,"method":"SEAD","details":"MAD!:w=0.23,s=0.27 RRCF-fast:w=0.20,s=0.21 RRCF-mid:w=0.17,s=0.25 RRCF-slow:w=0.14,s=0.50 COPOD!:w=0.26,s=0.64"} +{"timestamp":"2026-03-21T20:28:49.020337173Z","score":0.3632895776429649,"is_anomaly":false,"confidence":0.4425254554904854,"method":"SEAD","details":"MAD!:w=0.23,s=0.44 RRCF-fast:w=0.20,s=0.09 RRCF-mid:w=0.17,s=0.18 RRCF-slow:w=0.14,s=0.26 COPOD!:w=0.25,s=0.70"} +{"timestamp":"2026-03-21T20:29:19.066414887Z","score":0.15481270884584158,"is_anomaly":false,"confidence":0.18857839231779738,"method":"SEAD","details":"MAD!:w=0.23,s=0.03 RRCF-fast:w=0.21,s=0.07 RRCF-mid:w=0.17,s=0.09 RRCF-slow:w=0.14,s=0.19 COPOD!:w=0.25,s=0.36"} +{"timestamp":"2026-03-21T20:29:49.021506396Z","score":0.33301169321089147,"is_anomaly":false,"confidence":0.40648406121676545,"method":"SEAD","details":"MAD!:w=0.23,s=0.01 RRCF-fast:w=0.21,s=0.03 RRCF-mid:w=0.17,s=0.19 RRCF-slow:w=0.14,s=0.34 COPOD!:w=0.25,s=0.97"} +{"timestamp":"2026-03-21T20:30:19.10925379Z","score":0.9711635849559455,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.23,s=0.95 RRCF-fast!:w=0.21,s=0.96 RRCF-mid!:w=0.17,s=0.97 RRCF-slow!:w=0.14,s=0.98 COPOD!:w=0.25,s=1.00"} +{"timestamp":"2026-03-21T20:30:49.419098188Z","score":0.8171207866608488,"is_anomaly":false,"confidence":0.9953402755286507,"method":"SEAD","details":"MAD!:w=0.23,s=0.51 RRCF-fast!:w=0.21,s=0.96 RRCF-mid!:w=0.17,s=0.96 RRCF-slow!:w=0.14,s=0.96 COPOD!:w=0.25,s=0.81"} +{"timestamp":"2026-03-21T20:31:19.074526258Z","score":0.7012351721873493,"is_anomaly":false,"confidence":0.8541792362761579,"method":"SEAD","details":"MAD!:w=0.23,s=0.86 RRCF-fast:w=0.21,s=0.73 RRCF-mid:w=0.17,s=0.40 RRCF-slow:w=0.14,s=0.67 COPOD!:w=0.25,s=0.76"} +{"timestamp":"2026-03-21T20:31:49.069616683Z","score":0.7545056272326106,"is_anomaly":false,"confidence":0.9190683325613735,"method":"SEAD","details":"MAD!:w=0.23,s=0.86 RRCF-fast:w=0.21,s=0.82 RRCF-mid:w=0.17,s=0.61 RRCF-slow:w=0.14,s=0.78 COPOD!:w=0.25,s=0.68"} +{"timestamp":"2026-03-21T20:32:19.022046784Z","score":0.34055544721530073,"is_anomaly":false,"confidence":0.41483285971618705,"method":"SEAD","details":"MAD!:w=0.23,s=0.02 RRCF-fast:w=0.21,s=0.50 RRCF-mid:w=0.17,s=0.29 RRCF-slow:w=0.14,s=0.47 COPOD!:w=0.25,s=0.47"} +{"timestamp":"2026-03-21T20:32:49.067043249Z","score":0.5317406566418021,"is_anomaly":false,"confidence":0.6477168373778147,"method":"SEAD","details":"MAD!:w=0.23,s=0.60 RRCF-fast:w=0.21,s=0.55 RRCF-mid:w=0.17,s=0.34 RRCF-slow:w=0.14,s=0.68 COPOD!:w=0.25,s=0.50"} +{"timestamp":"2026-03-21T20:33:19.023547025Z","score":0.40638449741852,"is_anomaly":false,"confidence":0.4960451068053111,"method":"SEAD","details":"MAD!:w=0.23,s=0.12 RRCF-fast:w=0.21,s=0.48 RRCF-mid:w=0.17,s=0.14 RRCF-slow:w=0.14,s=0.38 COPOD!:w=0.25,s=0.82"} +{"timestamp":"2026-03-21T20:33:49.023931734Z","score":0.4219705966324151,"is_anomaly":false,"confidence":0.5150699670013743,"method":"SEAD","details":"MAD!:w=0.23,s=0.01 RRCF-fast:w=0.21,s=0.34 RRCF-mid:w=0.18,s=0.28 RRCF-slow:w=0.14,s=0.44 COPOD!:w=0.24,s=0.98"} +{"timestamp":"2026-03-21T20:34:19.113512722Z","score":0.8474692505225643,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.24,s=0.66 RRCF-fast!:w=0.21,s=0.94 RRCF-mid!:w=0.18,s=0.98 RRCF-slow!:w=0.14,s=0.95 COPOD!:w=0.24,s=0.79"} +{"timestamp":"2026-03-21T20:34:49.066626731Z","score":0.6542417461157685,"is_anomaly":false,"confidence":0.7969362308139353,"method":"SEAD","details":"MAD!:w=0.24,s=0.81 RRCF-fast:w=0.21,s=0.53 RRCF-mid:w=0.18,s=0.54 RRCF-slow:w=0.14,s=0.66 COPOD!:w=0.24,s=0.69"} +{"timestamp":"2026-03-21T20:35:19.028338051Z","score":0.24071344358652932,"is_anomaly":false,"confidence":0.29321464974836153,"method":"SEAD","details":"MAD!:w=0.24,s=0.01 RRCF-fast:w=0.21,s=0.13 RRCF-mid:w=0.18,s=0.11 RRCF-slow:w=0.14,s=0.39 COPOD!:w=0.24,s=0.56"} +{"timestamp":"2026-03-21T20:35:49.024337691Z","score":0.3820596834079518,"is_anomaly":false,"confidence":0.46538944640689606,"method":"SEAD","details":"MAD!:w=0.24,s=0.42 RRCF-fast:w=0.21,s=0.26 RRCF-mid:w=0.18,s=0.30 RRCF-slow:w=0.14,s=0.39 COPOD!:w=0.24,s=0.50"} +{"timestamp":"2026-03-21T20:36:19.02337292Z","score":0.7673384039151112,"is_anomaly":false,"confidence":0.9347000233560164,"method":"SEAD","details":"MAD!:w=0.24,s=0.94 RRCF-fast:w=0.21,s=0.74 RRCF-mid:w=0.18,s=0.68 RRCF-slow:w=0.14,s=0.91 COPOD!:w=0.24,s=0.60"} +{"timestamp":"2026-03-21T20:36:49.057675141Z","score":0.5385336413179406,"is_anomaly":false,"confidence":0.6573503155822813,"method":"SEAD","details":"MAD!:w=0.24,s=0.90 RRCF-fast:w=0.21,s=0.63 RRCF-mid:w=0.18,s=0.57 RRCF-slow:w=0.14,s=0.59 COPOD!:w=0.24,s=0.05"} +{"timestamp":"2026-03-21T20:37:20.352624127Z","score":0.40526839589624647,"is_anomaly":false,"confidence":0.49468275981043647,"method":"SEAD","details":"MAD!:w=0.23,s=0.15 RRCF-fast:w=0.21,s=0.74 RRCF-mid:w=0.18,s=0.56 RRCF-slow:w=0.14,s=0.73 COPOD!:w=0.24,s=0.06"} +{"timestamp":"2026-03-21T20:37:49.015916634Z","score":0.3063827426025521,"is_anomaly":false,"confidence":0.3739799653850206,"method":"SEAD","details":"MAD!:w=0.24,s=0.14 RRCF-fast:w=0.21,s=0.60 RRCF-mid:w=0.18,s=0.42 RRCF-slow:w=0.14,s=0.42 COPOD!:w=0.24,s=0.07"} +{"timestamp":"2026-03-21T20:38:19.02168119Z","score":0.30645204845281293,"is_anomaly":false,"confidence":0.37406456218463585,"method":"SEAD","details":"MAD!:w=0.24,s=0.14 RRCF-fast:w=0.20,s=0.63 RRCF-mid:w=0.18,s=0.39 RRCF-slow:w=0.14,s=0.52 COPOD!:w=0.25,s=0.01"} +{"timestamp":"2026-03-21T20:38:49.022073468Z","score":0.253551001846155,"is_anomaly":false,"confidence":0.3094919579617748,"method":"SEAD","details":"MAD!:w=0.24,s=0.14 RRCF-fast:w=0.20,s=0.54 RRCF-mid:w=0.17,s=0.29 RRCF-slow:w=0.14,s=0.39 COPOD!:w=0.25,s=0.01"} +{"timestamp":"2026-03-21T20:39:19.067802837Z","score":0.24715712145746954,"is_anomaly":false,"confidence":0.3016873957787851,"method":"SEAD","details":"MAD!:w=0.24,s=0.17 RRCF-fast:w=0.20,s=0.31 RRCF-mid:w=0.17,s=0.19 RRCF-slow:w=0.14,s=0.39 COPOD!:w=0.25,s=0.23"} +{"timestamp":"2026-03-21T20:39:49.06641127Z","score":0.44317841937646213,"is_anomaly":false,"confidence":0.542033813915474,"method":"SEAD","details":"MAD!:w=0.24,s=0.60 RRCF-fast:w=0.20,s=0.62 RRCF-mid:w=0.17,s=0.09 RRCF-slow:w=0.14,s=0.32 COPOD!:w=0.25,s=0.46"} +{"timestamp":"2026-03-21T20:40:19.018147967Z","score":0.65412675938257,"is_anomaly":false,"confidence":0.8000362984081151,"method":"SEAD","details":"MAD!:w=0.24,s=0.93 RRCF-fast!:w=0.20,s=0.92 RRCF-mid:w=0.18,s=0.66 RRCF-slow:w=0.14,s=0.77 COPOD!:w=0.25,s=0.11"} +{"timestamp":"2026-03-21T20:40:49.064950727Z","score":0.44891027062255157,"is_anomaly":false,"confidence":0.5490442121114991,"method":"SEAD","details":"MAD!:w=0.23,s=0.59 RRCF-fast:w=0.20,s=0.45 RRCF-mid:w=0.18,s=0.58 RRCF-slow:w=0.14,s=0.47 COPOD!:w=0.25,s=0.21"} +{"timestamp":"2026-03-21T20:41:19.066185423Z","score":0.46081584378639795,"is_anomaly":false,"confidence":0.5636054428635039,"method":"SEAD","details":"MAD!:w=0.23,s=0.59 RRCF-fast:w=0.20,s=0.72 RRCF-mid:w=0.18,s=0.28 RRCF-slow:w=0.14,s=0.48 COPOD!:w=0.25,s=0.25"} +{"timestamp":"2026-03-21T20:41:49.067398103Z","score":0.3924591324650074,"is_anomaly":false,"confidence":0.4800010809986304,"method":"SEAD","details":"MAD!:w=0.23,s=0.09 RRCF-fast:w=0.20,s=0.32 RRCF-mid:w=0.18,s=0.06 RRCF-slow:w=0.14,s=0.32 COPOD!:w=0.25,s=0.99"} +{"timestamp":"2026-03-21T20:42:19.024941296Z","score":0.2992439358697903,"is_anomaly":false,"confidence":0.36599329921973783,"method":"SEAD","details":"MAD!:w=0.24,s=0.09 RRCF-fast:w=0.20,s=0.35 RRCF-mid:w=0.18,s=0.19 RRCF-slow:w=0.14,s=0.29 COPOD!:w=0.25,s=0.53"} +{"timestamp":"2026-03-21T20:42:49.054772208Z","score":0.8643228757002589,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.24,s=0.95 RRCF-fast!:w=0.20,s=0.90 RRCF-mid!:w=0.18,s=0.90 RRCF-slow:w=0.14,s=0.78 COPOD!:w=0.25,s=0.78"} +{"timestamp":"2026-03-21T20:43:19.012962006Z","score":0.47306566820186385,"is_anomaly":false,"confidence":0.5785877135639858,"method":"SEAD","details":"MAD!:w=0.24,s=0.86 RRCF-fast:w=0.20,s=0.49 RRCF-mid:w=0.18,s=0.45 RRCF-slow:w=0.14,s=0.59 COPOD!:w=0.25,s=0.04"} +{"timestamp":"2026-03-21T20:43:49.02394555Z","score":0.623398552037772,"is_anomaly":false,"confidence":0.7624538560019156,"method":"SEAD","details":"MAD!:w=0.23,s=0.93 RRCF-fast:w=0.20,s=0.74 RRCF-mid:w=0.18,s=0.56 RRCF-slow:w=0.14,s=0.60 COPOD!:w=0.25,s=0.30"} +{"timestamp":"2026-03-21T20:44:19.718686125Z","score":0.5486820882870055,"is_anomaly":false,"confidence":0.6710711350966744,"method":"SEAD","details":"MAD!:w=0.23,s=0.92 RRCF-fast:w=0.20,s=0.66 RRCF-mid:w=0.18,s=0.43 RRCF-slow:w=0.14,s=0.51 COPOD!:w=0.25,s=0.23"} +{"timestamp":"2026-03-21T20:44:49.023927052Z","score":0.44780316804966214,"is_anomaly":false,"confidence":0.5476901591979498,"method":"SEAD","details":"MAD!:w=0.23,s=0.91 RRCF-fast:w=0.20,s=0.52 RRCF-mid:w=0.18,s=0.30 RRCF-slow:w=0.14,s=0.55 COPOD!:w=0.26,s=0.03"} +{"timestamp":"2026-03-21T20:45:19.024743077Z","score":0.4041916707923056,"is_anomaly":false,"confidence":0.49435067975707725,"method":"SEAD","details":"MAD!:w=0.23,s=0.91 RRCF-fast:w=0.20,s=0.39 RRCF-mid:w=0.18,s=0.30 RRCF-slow:w=0.14,s=0.33 COPOD!:w=0.26,s=0.07"} +{"timestamp":"2026-03-21T20:45:49.025296928Z","score":0.41851946667498724,"is_anomaly":false,"confidence":0.5118744343167398,"method":"SEAD","details":"MAD!:w=0.22,s=0.90 RRCF-fast:w=0.20,s=0.31 RRCF-mid:w=0.18,s=0.35 RRCF-slow:w=0.14,s=0.61 COPOD!:w=0.26,s=0.04"} +{"timestamp":"2026-03-21T20:46:19.017450072Z","score":0.48752623011067486,"is_anomaly":false,"confidence":0.5962738489444532,"method":"SEAD","details":"MAD!:w=0.22,s=0.94 RRCF-fast:w=0.20,s=0.25 RRCF-mid:w=0.18,s=0.44 RRCF-slow:w=0.14,s=0.65 COPOD!:w=0.26,s=0.24"} +{"timestamp":"2026-03-21T20:46:49.020682997Z","score":0.4177660517525692,"is_anomaly":false,"confidence":0.5110269416505007,"method":"SEAD","details":"MAD!:w=0.22,s=0.90 RRCF-fast:w=0.20,s=0.26 RRCF-mid:w=0.18,s=0.33 RRCF-slow:w=0.14,s=0.42 COPOD!:w=0.27,s=0.19"} +{"timestamp":"2026-03-21T20:47:19.020515955Z","score":0.31941020295666445,"is_anomaly":false,"confidence":0.39071441651171956,"method":"SEAD","details":"MAD!:w=0.22,s=0.91 RRCF-fast:w=0.20,s=0.19 RRCF-mid:w=0.18,s=0.19 RRCF-slow:w=0.14,s=0.26 COPOD!:w=0.27,s=0.05"} +{"timestamp":"2026-03-21T20:47:49.067570018Z","score":0.6629124978112001,"is_anomaly":false,"confidence":0.8108991741123887,"method":"SEAD","details":"MAD!:w=0.21,s=0.92 RRCF-fast:w=0.20,s=0.66 RRCF-mid:w=0.18,s=0.31 RRCF-slow:w=0.14,s=0.38 COPOD!:w=0.27,s=0.84"} +{"timestamp":"2026-03-21T20:48:19.057014743Z","score":0.9068175432515734,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.21,s=0.95 RRCF-fast!:w=0.20,s=0.93 RRCF-mid:w=0.18,s=0.80 RRCF-slow!:w=0.14,s=0.88 COPOD!:w=0.27,s=0.95"} +{"timestamp":"2026-03-21T20:48:49.05409226Z","score":0.7738700183809211,"is_anomaly":false,"confidence":0.9464894931662527,"method":"SEAD","details":"MAD!:w=0.21,s=0.93 RRCF-fast:w=0.20,s=0.80 RRCF-mid:w=0.18,s=0.49 RRCF-slow:w=0.14,s=0.64 COPOD!:w=0.27,s=0.89"} +{"timestamp":"2026-03-21T20:49:20.398864302Z","score":0.613008854040008,"is_anomaly":false,"confidence":0.7497466315863374,"method":"SEAD","details":"MAD!:w=0.21,s=0.92 RRCF-fast:w=0.20,s=0.36 RRCF-mid:w=0.18,s=0.34 RRCF-slow:w=0.14,s=0.48 COPOD!:w=0.27,s=0.81"} +{"timestamp":"2026-03-21T20:49:49.059689253Z","score":0.6235681858608856,"is_anomaly":false,"confidence":0.7627717513048966,"method":"SEAD","details":"MAD!:w=0.21,s=0.92 RRCF-fast:w=0.20,s=0.65 RRCF-mid:w=0.18,s=0.36 RRCF-slow:w=0.14,s=0.41 COPOD!:w=0.27,s=0.66"} +{"timestamp":"2026-03-21T20:50:19.055671153Z","score":0.7668619711041759,"is_anomaly":false,"confidence":0.9380540283669221,"method":"SEAD","details":"MAD!:w=0.21,s=0.94 RRCF-fast:w=0.20,s=0.76 RRCF-mid:w=0.18,s=0.62 RRCF-slow:w=0.14,s=0.72 COPOD!:w=0.26,s=0.76"} +{"timestamp":"2026-03-21T20:50:49.051618131Z","score":0.5376650337921667,"is_anomaly":false,"confidence":0.6576918270371026,"method":"SEAD","details":"MAD!:w=0.21,s=0.90 RRCF-fast:w=0.20,s=0.43 RRCF-mid:w=0.18,s=0.36 RRCF-slow:w=0.14,s=0.54 COPOD!:w=0.27,s=0.45"} +{"timestamp":"2026-03-21T20:51:25.562903901Z","score":0.8609964171824414,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.21,s=0.89 RRCF-fast!:w=0.20,s=0.91 RRCF-mid:w=0.19,s=0.66 RRCF-slow:w=0.14,s=0.74 COPOD!:w=0.27,s=1.00"} +{"timestamp":"2026-03-21T20:51:49.069869379Z","score":0.6550175842985364,"is_anomaly":false,"confidence":0.8011258307626271,"method":"SEAD","details":"MAD!:w=0.21,s=0.53 RRCF-fast!:w=0.20,s=0.97 RRCF-mid:w=0.19,s=0.55 RRCF-slow:w=0.14,s=0.73 COPOD!:w=0.26,s=0.55"} +{"timestamp":"2026-03-21T20:52:19.033987298Z","score":0.5492185951992831,"is_anomaly":false,"confidence":0.6717273152605527,"method":"SEAD","details":"MAD!:w=0.21,s=0.14 RRCF-fast:w=0.20,s=0.86 RRCF-mid:w=0.19,s=0.32 RRCF-slow:w=0.14,s=0.58 COPOD!:w=0.27,s=0.79"} +{"timestamp":"2026-03-21T20:52:55.183756071Z","score":0.8909582000408494,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.21,s=0.95 RRCF-fast!:w=0.20,s=0.99 RRCF-mid!:w=0.19,s=0.93 RRCF-slow!:w=0.14,s=0.95 COPOD!:w=0.26,s=0.71"} +{"timestamp":"2026-03-21T20:53:20.509588035Z","score":0.7048891352946234,"is_anomaly":false,"confidence":0.8621217317596169,"method":"SEAD","details":"MAD!:w=0.21,s=0.43 RRCF-fast!:w=0.20,s=0.94 RRCF-mid!:w=0.19,s=0.83 RRCF-slow!:w=0.14,s=0.82 COPOD!:w=0.26,s=0.60"} +{"timestamp":"2026-03-21T20:53:49.065640552Z","score":0.6877363732971074,"is_anomaly":false,"confidence":0.8411428740395611,"method":"SEAD","details":"MAD!:w=0.21,s=0.72 RRCF-fast:w=0.20,s=0.83 RRCF-mid:w=0.19,s=0.38 RRCF-slow:w=0.14,s=0.35 COPOD!:w=0.27,s=0.95"} +{"timestamp":"2026-03-21T20:54:19.069627584Z","score":0.5983701018840775,"is_anomaly":false,"confidence":0.731842558835669,"method":"SEAD","details":"MAD!:w=0.21,s=0.77 RRCF-fast:w=0.20,s=0.83 RRCF-mid:w=0.19,s=0.18 RRCF-slow:w=0.14,s=0.55 COPOD!:w=0.26,s=0.62"} +{"timestamp":"2026-03-21T20:54:49.024528214Z","score":0.27287607718606266,"is_anomaly":false,"confidence":0.3337438250074467,"method":"SEAD","details":"MAD!:w=0.21,s=0.04 RRCF-fast:w=0.20,s=0.71 RRCF-mid:w=0.19,s=0.22 RRCF-slow:w=0.14,s=0.08 COPOD!:w=0.26,s=0.27"} +{"timestamp":"2026-03-21T20:55:19.025475565Z","score":0.19997233555067004,"is_anomaly":false,"confidence":0.24457817207935884,"method":"SEAD","details":"MAD!:w=0.21,s=0.01 RRCF-fast:w=0.19,s=0.44 RRCF-mid:w=0.19,s=0.04 RRCF-slow:w=0.14,s=0.04 COPOD!:w=0.26,s=0.37"} +{"timestamp":"2026-03-21T20:55:49.065774189Z","score":0.2923226507712102,"is_anomaly":false,"confidence":0.35752815201230376,"method":"SEAD","details":"MAD!:w=0.21,s=0.01 RRCF-fast:w=0.19,s=0.27 RRCF-mid:w=0.19,s=0.02 RRCF-slow:w=0.14,s=0.19 COPOD!:w=0.26,s=0.79"} +{"timestamp":"2026-03-21T20:56:19.023662037Z","score":0.26451313476017463,"is_anomaly":false,"confidence":0.3235154443362096,"method":"SEAD","details":"MAD!:w=0.21,s=0.03 RRCF-fast:w=0.19,s=0.38 RRCF-mid:w=0.19,s=0.01 RRCF-slow:w=0.14,s=0.11 COPOD!:w=0.26,s=0.64"} +{"timestamp":"2026-03-21T20:56:52.685667558Z","score":0.8040764718912067,"is_anomaly":false,"confidence":0.9835761871025727,"method":"SEAD","details":"MAD!:w=0.22,s=0.41 RRCF-fast!:w=0.19,s=0.92 RRCF-mid!:w=0.19,s=0.92 RRCF-slow!:w=0.14,s=0.87 COPOD!:w=0.26,s=0.92"} +{"timestamp":"2026-03-21T20:57:19.199423439Z","score":0.7203289897370734,"is_anomaly":false,"confidence":0.881133158291069,"method":"SEAD","details":"MAD!:w=0.22,s=0.44 RRCF-fast:w=0.19,s=0.79 RRCF-mid!:w=0.19,s=0.69 RRCF-slow!:w=0.14,s=0.82 COPOD!:w=0.26,s=0.87"} +{"timestamp":"2026-03-21T20:57:49.341986712Z","score":0.8859124700528059,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.22,s=0.78 RRCF-fast:w=0.19,s=0.85 RRCF-mid!:w=0.19,s=0.93 RRCF-slow!:w=0.14,s=0.85 COPOD!:w=0.26,s=0.99"} +{"timestamp":"2026-03-21T20:58:19.065190116Z","score":0.3414098643871178,"is_anomaly":false,"confidence":0.4175647613042207,"method":"SEAD","details":"MAD!:w=0.22,s=0.27 RRCF-fast:w=0.19,s=0.17 RRCF-mid:w=0.19,s=0.46 RRCF-slow:w=0.14,s=0.40 COPOD!:w=0.25,s=0.41"} +{"timestamp":"2026-03-21T20:58:49.023609124Z","score":0.21340203936973043,"is_anomaly":false,"confidence":0.2610035061266311,"method":"SEAD","details":"MAD!:w=0.22,s=0.36 RRCF-fast:w=0.19,s=0.12 RRCF-mid:w=0.19,s=0.15 RRCF-slow:w=0.14,s=0.06 COPOD!:w=0.25,s=0.29"} +{"timestamp":"2026-03-21T20:59:19.065277862Z","score":0.4461489687846886,"is_anomaly":false,"confidence":0.5456669741840421,"method":"SEAD","details":"MAD!:w=0.22,s=0.52 RRCF-fast:w=0.19,s=0.47 RRCF-mid:w=0.19,s=0.45 RRCF-slow:w=0.14,s=0.33 COPOD!:w=0.25,s=0.42"} +{"timestamp":"2026-03-21T20:59:49.034914767Z","score":0.28237537575482907,"is_anomaly":false,"confidence":0.34541204117482194,"method":"SEAD","details":"MAD!:w=0.22,s=0.11 RRCF-fast:w=0.19,s=0.05 RRCF-mid:w=0.19,s=0.15 RRCF-slow:w=0.14,s=0.11 COPOD!:w=0.25,s=0.80"} +{"timestamp":"2026-03-21T21:00:19.083574872Z","score":0.9098078154150762,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.22,s=0.94 RRCF-fast:w=0.19,s=0.88 RRCF-mid!:w=0.19,s=0.91 RRCF-slow!:w=0.14,s=0.95 COPOD!:w=0.25,s=0.88"} +{"timestamp":"2026-03-21T21:00:49.197622079Z","score":0.8008937730021105,"is_anomaly":false,"confidence":0.9795411674879586,"method":"SEAD","details":"MAD!:w=0.22,s=0.92 RRCF-fast:w=0.19,s=0.76 RRCF-mid:w=0.19,s=0.62 RRCF-slow:w=0.14,s=0.79 COPOD!:w=0.25,s=0.87"} +{"timestamp":"2026-03-21T21:01:19.066065972Z","score":0.7131661630621442,"is_anomaly":false,"confidence":0.872245033645629,"method":"SEAD","details":"MAD!:w=0.22,s=0.70 RRCF-fast:w=0.20,s=0.66 RRCF-mid!:w=0.19,s=0.71 RRCF-slow:w=0.14,s=0.66 COPOD!:w=0.25,s=0.80"} +{"timestamp":"2026-03-21T21:01:49.06681386Z","score":0.6535237896076743,"is_anomaly":false,"confidence":0.7992988301730365,"method":"SEAD","details":"MAD!:w=0.22,s=0.77 RRCF-fast:w=0.20,s=0.32 RRCF-mid:w=0.19,s=0.60 RRCF-slow:w=0.14,s=0.68 COPOD!:w=0.25,s=0.84"} +{"timestamp":"2026-03-21T21:02:19.067881807Z","score":0.27446330383981105,"is_anomaly":false,"confidence":0.33568509849700423,"method":"SEAD","details":"MAD!:w=0.22,s=0.28 RRCF-fast:w=0.20,s=0.09 RRCF-mid:w=0.19,s=0.09 RRCF-slow:w=0.14,s=0.32 COPOD!:w=0.25,s=0.53"} +{"timestamp":"2026-03-21T21:02:49.030486177Z","score":0.23619829233881912,"is_anomaly":false,"confidence":0.2888846921221091,"method":"SEAD","details":"MAD!:w=0.22,s=0.36 RRCF-fast:w=0.20,s=0.10 RRCF-mid:w=0.19,s=0.23 RRCF-slow:w=0.14,s=0.16 COPOD!:w=0.25,s=0.29"} +{"timestamp":"2026-03-21T21:03:19.065418739Z","score":0.1253082653246163,"is_anomaly":false,"confidence":0.15328172148917157,"method":"SEAD","details":"MAD!:w=0.22,s=0.08 RRCF-fast:w=0.20,s=0.09 RRCF-mid:w=0.19,s=0.00 RRCF-slow:w=0.14,s=0.03 COPOD!:w=0.25,s=0.34"} +{"timestamp":"2026-03-21T21:03:49.042449558Z","score":0.2502183808939468,"is_anomaly":false,"confidence":0.30607641141867226,"method":"SEAD","details":"MAD!:w=0.22,s=0.01 RRCF-fast:w=0.20,s=0.16 RRCF-mid:w=0.19,s=0.00 RRCF-slow:w=0.14,s=0.03 COPOD!:w=0.25,s=0.87"} +{"timestamp":"2026-03-21T21:04:24.719331883Z","score":0.7450901904504896,"is_anomaly":false,"confidence":0.9114219781199853,"method":"SEAD","details":"MAD!:w=0.22,s=0.94 RRCF-fast:w=0.20,s=0.66 RRCF-mid!:w=0.20,s=0.87 RRCF-slow:w=0.14,s=0.69 COPOD!:w=0.24,s=0.57"} +{"timestamp":"2026-03-21T21:04:49.79678821Z","score":0.4333408651212806,"is_anomaly":false,"confidence":0.530078631487912,"method":"SEAD","details":"MAD!:w=0.22,s=0.43 RRCF-fast:w=0.20,s=0.44 RRCF-mid:w=0.20,s=0.40 RRCF-slow:w=0.14,s=0.35 COPOD!:w=0.24,s=0.50"} +{"timestamp":"2026-03-21T21:05:19.044096555Z","score":0.21818047179927852,"is_anomaly":false,"confidence":0.26688645179212533,"method":"SEAD","details":"MAD!:w=0.22,s=0.48 RRCF-fast:w=0.20,s=0.23 RRCF-mid:w=0.20,s=0.03 RRCF-slow:w=0.14,s=0.20 COPOD!:w=0.24,s=0.14"} +{"timestamp":"2026-03-21T21:05:49.022427784Z","score":0.10520524805331491,"is_anomaly":false,"confidence":0.12869096455475015,"method":"SEAD","details":"MAD!:w=0.22,s=0.00 RRCF-fast:w=0.20,s=0.06 RRCF-mid:w=0.20,s=0.01 RRCF-slow:w=0.14,s=0.05 COPOD!:w=0.24,s=0.34"} +{"timestamp":"2026-03-21T21:06:19.011045745Z","score":0.07143181505592115,"is_anomaly":false,"confidence":0.0873780476691093,"method":"SEAD","details":"MAD!:w=0.22,s=0.05 RRCF-fast:w=0.20,s=0.07 RRCF-mid:w=0.20,s=0.00 RRCF-slow:w=0.14,s=0.10 COPOD!:w=0.24,s=0.12"} +{"timestamp":"2026-03-21T21:06:50.486385958Z","score":0.7007895860207001,"is_anomaly":false,"confidence":0.8576327973303258,"method":"SEAD","details":"MAD!:w=0.22,s=0.61 RRCF-fast:w=0.20,s=0.62 RRCF-mid:w=0.20,s=0.63 RRCF-slow:w=0.14,s=0.56 COPOD!:w=0.24,s=1.00"} +{"timestamp":"2026-03-21T21:07:19.0785677Z","score":0.283725194912256,"is_anomaly":false,"confidence":0.34722552594910056,"method":"SEAD","details":"MAD!:w=0.22,s=0.26 RRCF-fast:w=0.20,s=0.02 RRCF-mid:w=0.20,s=0.05 RRCF-slow:w=0.14,s=0.02 COPOD!:w=0.24,s=0.87"} +{"timestamp":"2026-03-21T21:07:49.020375001Z","score":0.21857899083873134,"is_anomaly":false,"confidence":0.2674989969744264,"method":"SEAD","details":"MAD!:w=0.22,s=0.03 RRCF-fast:w=0.20,s=0.16 RRCF-mid:w=0.20,s=0.02 RRCF-slow:w=0.15,s=0.06 COPOD!:w=0.24,s=0.70"} +{"timestamp":"2026-03-21T21:08:19.113094265Z","score":0.7755230334118841,"is_anomaly":false,"confidence":0.9490922836280384,"method":"SEAD","details":"MAD!:w=0.22,s=0.87 RRCF-fast:w=0.20,s=0.83 RRCF-mid:w=0.20,s=0.66 RRCF-slow:w=0.15,s=0.64 COPOD!:w=0.23,s=0.83"} +{"timestamp":"2026-03-21T21:08:49.089526359Z","score":0.5623045331621863,"is_anomaly":false,"confidence":0.6881535047713508,"method":"SEAD","details":"MAD!:w=0.22,s=0.79 RRCF-fast:w=0.20,s=0.55 RRCF-mid:w=0.20,s=0.35 RRCF-slow:w=0.15,s=0.27 COPOD!:w=0.23,s=0.73"} +{"timestamp":"2026-03-21T21:09:19.067125288Z","score":0.5123965059628653,"is_anomaly":false,"confidence":0.627075598035837,"method":"SEAD","details":"MAD!:w=0.22,s=0.62 RRCF-fast:w=0.20,s=0.36 RRCF-mid:w=0.20,s=0.24 RRCF-slow:w=0.15,s=0.37 COPOD!:w=0.23,s=0.86"} +{"timestamp":"2026-03-21T21:09:49.024574933Z","score":0.19215117881525948,"is_anomaly":false,"confidence":0.23567133854596023,"method":"SEAD","details":"MAD!:w=0.22,s=0.21 RRCF-fast:w=0.20,s=0.21 RRCF-mid:w=0.20,s=0.01 RRCF-slow:w=0.15,s=0.02 COPOD!:w=0.23,s=0.42"} +{"timestamp":"2026-03-21T21:10:19.024249195Z","score":0.06849218721525828,"is_anomaly":false,"confidence":0.08400492539512099,"method":"SEAD","details":"MAD!:w=0.22,s=0.04 RRCF-fast:w=0.20,s=0.16 RRCF-mid:w=0.20,s=0.01 RRCF-slow:w=0.15,s=0.03 COPOD!:w=0.23,s=0.09"} +{"timestamp":"2026-03-21T21:10:49.067416101Z","score":0.3350248344832161,"is_anomaly":false,"confidence":0.4109043289539691,"method":"SEAD","details":"MAD!:w=0.22,s=0.50 RRCF-fast:w=0.20,s=0.35 RRCF-mid:w=0.20,s=0.20 RRCF-slow:w=0.15,s=0.37 COPOD!:w=0.23,s=0.27"} +{"timestamp":"2026-03-21T21:11:19.038818456Z","score":0.21651905929349327,"is_anomaly":false,"confidence":0.26555827988684405,"method":"SEAD","details":"MAD!:w=0.22,s=0.13 RRCF-fast:w=0.20,s=0.05 RRCF-mid:w=0.20,s=0.01 RRCF-slow:w=0.15,s=0.06 COPOD!:w=0.23,s=0.72"} +{"timestamp":"2026-03-21T21:11:49.878914976Z","score":0.8070318732514636,"is_anomaly":false,"confidence":0.9898158470382596,"method":"SEAD","details":"MAD!:w=0.22,s=0.94 RRCF-fast:w=0.20,s=0.73 RRCF-mid!:w=0.20,s=0.75 RRCF-slow!:w=0.15,s=0.81 COPOD!:w=0.23,s=0.81"} +{"timestamp":"2026-03-21T21:12:21.072915144Z","score":0.7279422736130856,"is_anomaly":false,"confidence":0.8928133101464046,"method":"SEAD","details":"MAD!:w=0.22,s=0.92 RRCF-fast:w=0.20,s=0.83 RRCF-mid:w=0.20,s=0.46 RRCF-slow:w=0.15,s=0.47 COPOD!:w=0.23,s=0.85"} +{"timestamp":"2026-03-21T21:12:49.072416568Z","score":0.45376353487402643,"is_anomaly":false,"confidence":0.5565360582561041,"method":"SEAD","details":"MAD!:w=0.22,s=0.47 RRCF-fast:w=0.20,s=0.44 RRCF-mid:w=0.21,s=0.61 RRCF-slow:w=0.15,s=0.37 COPOD!:w=0.23,s=0.37"} +{"timestamp":"2026-03-21T21:13:19.023503139Z","score":0.1990004003516589,"is_anomaly":false,"confidence":0.24551794526002588,"method":"SEAD","details":"MAD!:w=0.22,s=0.00 RRCF-fast:w=0.20,s=0.36 RRCF-mid:w=0.21,s=0.04 RRCF-slow:w=0.15,s=0.05 COPOD!:w=0.23,s=0.48"} +{"timestamp":"2026-03-21T21:13:49.022486476Z","score":0.08556369832355837,"is_anomaly":false,"confidence":0.10556472933786061,"method":"SEAD","details":"MAD!:w=0.22,s=0.00 RRCF-fast:w=0.20,s=0.20 RRCF-mid:w=0.21,s=0.01 RRCF-slow:w=0.15,s=0.00 COPOD!:w=0.23,s=0.18"} +{"timestamp":"2026-03-21T21:14:19.106455316Z","score":0.6449901843215886,"is_anomaly":false,"confidence":0.7957605335852869,"method":"SEAD","details":"MAD!:w=0.22,s=0.81 RRCF-fast:w=0.20,s=0.65 RRCF-mid:w=0.21,s=0.53 RRCF-slow:w=0.15,s=0.73 COPOD!:w=0.23,s=0.53"} +{"timestamp":"2026-03-21T21:14:49.079570188Z","score":0.27004286157088714,"is_anomaly":false,"confidence":0.3331670106585749,"method":"SEAD","details":"MAD!:w=0.22,s=0.49 RRCF-fast:w=0.20,s=0.26 RRCF-mid:w=0.21,s=0.22 RRCF-slow:w=0.15,s=0.28 COPOD!:w=0.23,s=0.10"} +{"timestamp":"2026-03-21T21:15:19.025148593Z","score":0.18280909152719704,"is_anomaly":false,"confidence":0.2255418202541082,"method":"SEAD","details":"MAD!:w=0.22,s=0.16 RRCF-fast:w=0.20,s=0.19 RRCF-mid:w=0.21,s=0.03 RRCF-slow:w=0.15,s=0.07 COPOD!:w=0.23,s=0.41"} +{"timestamp":"2026-03-21T21:15:49.582837157Z","score":0.8049935749709775,"is_anomaly":false,"confidence":0.9931656827078812,"method":"SEAD","details":"MAD!:w=0.22,s=0.93 RRCF-fast:w=0.20,s=0.70 RRCF-mid!:w=0.21,s=0.81 RRCF-slow:w=0.15,s=0.76 COPOD!:w=0.23,s=0.80"} +{"timestamp":"2026-03-21T21:16:19.361370843Z","score":0.7410285066622095,"is_anomaly":false,"confidence":0.9142483935374376,"method":"SEAD","details":"MAD!:w=0.21,s=0.87 RRCF-fast:w=0.20,s=0.72 RRCF-mid:w=0.21,s=0.62 RRCF-slow:w=0.15,s=0.69 COPOD!:w=0.23,s=0.78"} +{"timestamp":"2026-03-21T21:16:49.047777854Z","score":0.44566017756715715,"is_anomaly":false,"confidence":0.5511952595511201,"method":"SEAD","details":"MAD!:w=0.21,s=0.66 RRCF-fast:w=0.20,s=0.42 RRCF-mid:w=0.21,s=0.31 RRCF-slow:w=0.15,s=0.28 COPOD!:w=0.23,s=0.50"} +{"timestamp":"2026-03-21T21:17:19.02311397Z","score":0.14037318049723235,"is_anomaly":false,"confidence":0.17361441643847295,"method":"SEAD","details":"MAD!:w=0.21,s=0.12 RRCF-fast:w=0.20,s=0.38 RRCF-mid:w=0.21,s=0.04 RRCF-slow:w=0.15,s=0.05 COPOD!:w=0.23,s=0.09"} +{"timestamp":"2026-03-21T21:17:49.024079444Z","score":0.08073361162018311,"is_anomaly":false,"confidence":0.09985182937907974,"method":"SEAD","details":"MAD!:w=0.21,s=0.05 RRCF-fast:w=0.20,s=0.16 RRCF-mid:w=0.21,s=0.06 RRCF-slow:w=0.15,s=0.04 COPOD!:w=0.23,s=0.09"} +{"timestamp":"2026-03-21T21:18:19.066028145Z","score":0.6500487823701718,"is_anomaly":false,"confidence":0.8039843480639981,"method":"SEAD","details":"MAD!:w=0.21,s=0.74 RRCF-fast:w=0.20,s=0.52 RRCF-mid:w=0.21,s=0.45 RRCF-slow:w=0.15,s=0.48 COPOD!:w=0.23,s=0.97"} +{"timestamp":"2026-03-21T21:18:49.068427896Z","score":0.2900173065811844,"is_anomaly":false,"confidence":0.3586951956263666,"method":"SEAD","details":"MAD!:w=0.21,s=0.47 RRCF-fast:w=0.20,s=0.31 RRCF-mid:w=0.21,s=0.34 RRCF-slow:w=0.15,s=0.19 COPOD!:w=0.22,s=0.12"} +{"timestamp":"2026-03-21T21:19:19.025108997Z","score":0.2184205890411403,"is_anomaly":false,"confidence":0.2701439332656052,"method":"SEAD","details":"MAD!:w=0.21,s=0.14 RRCF-fast:w=0.20,s=0.03 RRCF-mid:w=0.21,s=0.08 RRCF-slow:w=0.15,s=0.00 COPOD!:w=0.23,s=0.73"} +{"timestamp":"2026-03-21T21:19:52.321311603Z","score":0.9486096101563174,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.21,s=0.93 RRCF-fast!:w=0.20,s=0.99 RRCF-mid!:w=0.21,s=1.00 RRCF-slow!:w=0.15,s=0.88 COPOD!:w=0.22,s=0.93"} +{"timestamp":"2026-03-21T21:20:21.773545309Z","score":0.9127809809668821,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.21,s=0.89 RRCF-fast!:w=0.20,s=0.96 RRCF-mid!:w=0.21,s=0.99 RRCF-slow!:w=0.15,s=0.92 COPOD!:w=0.22,s=0.81"} +{"timestamp":"2026-03-21T21:20:51.820771043Z","score":0.6410071867482292,"is_anomaly":false,"confidence":0.790846486284584,"method":"SEAD","details":"MAD!:w=0.21,s=0.43 RRCF-fast:w=0.20,s=0.78 RRCF-mid!:w=0.21,s=0.89 RRCF-slow:w=0.15,s=0.43 COPOD!:w=0.22,s=0.62"} +{"timestamp":"2026-03-21T21:21:19.065279318Z","score":0.3953225356592437,"is_anomaly":false,"confidence":0.4877315648537675,"method":"SEAD","details":"MAD!:w=0.21,s=0.25 RRCF-fast:w=0.20,s=0.52 RRCF-mid!:w=0.21,s=0.87 RRCF-slow:w=0.15,s=0.21 COPOD!:w=0.22,s=0.10"} +{"timestamp":"2026-03-21T21:21:49.026112592Z","score":0.3930165214425684,"is_anomaly":false,"confidence":0.48488650589299137,"method":"SEAD","details":"MAD!:w=0.21,s=0.33 RRCF-fast:w=0.20,s=0.52 RRCF-mid:w=0.21,s=0.74 RRCF-slow:w=0.15,s=0.21 COPOD!:w=0.23,s=0.15"} +{"timestamp":"2026-03-21T21:22:19.067287523Z","score":0.5107015095557836,"is_anomaly":false,"confidence":0.6300810704187321,"method":"SEAD","details":"MAD!:w=0.21,s=0.46 RRCF-fast:w=0.20,s=0.62 RRCF-mid:w=0.21,s=0.79 RRCF-slow:w=0.15,s=0.30 COPOD!:w=0.23,s=0.34"} +{"timestamp":"2026-03-21T21:22:49.030475142Z","score":0.39120364398571494,"is_anomaly":false,"confidence":0.4826498573866148,"method":"SEAD","details":"MAD!:w=0.22,s=0.15 RRCF-fast:w=0.20,s=0.48 RRCF-mid:w=0.20,s=0.71 RRCF-slow:w=0.15,s=0.08 COPOD!:w=0.23,s=0.46"} +{"timestamp":"2026-03-21T21:23:19.029481418Z","score":0.5001468223212854,"is_anomaly":false,"confidence":0.6185846782361578,"method":"SEAD","details":"MAD!:w=0.22,s=0.04 RRCF-fast:w=0.20,s=0.54 RRCF-mid:w=0.20,s=0.79 RRCF-slow!:w=0.15,s=0.85 COPOD!:w=0.23,s=0.40"} +{"timestamp":"2026-03-21T21:23:50.306199611Z","score":0.8880899802884452,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.22,s=0.91 RRCF-fast!:w=0.20,s=0.95 RRCF-mid!:w=0.20,s=0.99 RRCF-slow!:w=0.15,s=0.92 COPOD!:w=0.23,s=0.70"} +{"timestamp":"2026-03-21T21:24:19.069841914Z","score":0.6722249372634623,"is_anomaly":false,"confidence":0.8293615744381554,"method":"SEAD","details":"MAD!:w=0.22,s=0.70 RRCF-fast:w=0.20,s=0.51 RRCF-mid!:w=0.20,s=0.89 RRCF-slow:w=0.15,s=0.61 COPOD!:w=0.23,s=0.65"} +{"timestamp":"2026-03-21T21:24:51.749973002Z","score":0.6731701971342966,"is_anomaly":false,"confidence":0.8305277945101446,"method":"SEAD","details":"MAD!:w=0.22,s=0.73 RRCF-fast:w=0.20,s=0.67 RRCF-mid:w=0.20,s=0.82 RRCF-slow:w=0.15,s=0.79 COPOD!:w=0.23,s=0.41"} +{"timestamp":"2026-03-21T21:25:19.067310675Z","score":0.3381309643331597,"is_anomaly":false,"confidence":0.4171711184759756,"method":"SEAD","details":"MAD!:w=0.22,s=0.28 RRCF-fast:w=0.20,s=0.43 RRCF-mid:w=0.20,s=0.52 RRCF-slow:w=0.15,s=0.44 COPOD!:w=0.23,s=0.08"} +{"timestamp":"2026-03-21T21:25:49.023531265Z","score":0.36175840976161355,"is_anomaly":false,"confidence":0.44632162190755836,"method":"SEAD","details":"MAD!:w=0.22,s=0.33 RRCF-fast:w=0.20,s=0.06 RRCF-mid:w=0.20,s=0.69 RRCF-slow:w=0.15,s=0.32 COPOD!:w=0.23,s=0.39"} +{"timestamp":"2026-03-21T21:26:19.06694319Z","score":0.2075722109380831,"is_anomaly":false,"confidence":0.2560934683173566,"method":"SEAD","details":"MAD!:w=0.22,s=0.08 RRCF-fast:w=0.20,s=0.23 RRCF-mid:w=0.20,s=0.31 RRCF-slow:w=0.15,s=0.13 COPOD!:w=0.23,s=0.27"} +{"timestamp":"2026-03-21T21:26:49.031053278Z","score":0.3888875829890917,"is_anomaly":false,"confidence":0.4809785640081764,"method":"SEAD","details":"MAD!:w=0.22,s=0.02 RRCF-fast:w=0.20,s=0.18 RRCF-mid:w=0.20,s=0.61 RRCF-slow:w=0.15,s=0.29 COPOD!:w=0.23,s=0.79"} +{"timestamp":"2026-03-21T21:27:21.082922773Z","score":0.8475696301939422,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.22,s=0.93 RRCF-fast!:w=0.20,s=0.84 RRCF-mid!:w=0.20,s=0.90 RRCF-slow!:w=0.15,s=0.88 COPOD!:w=0.23,s=0.71"} +{"timestamp":"2026-03-21T21:27:49.063658006Z","score":0.8015258794515965,"is_anomaly":false,"confidence":0.988887392427051,"method":"SEAD","details":"MAD!:w=0.22,s=0.89 RRCF-fast:w=0.20,s=0.73 RRCF-mid:w=0.20,s=0.85 RRCF-slow:w=0.15,s=0.66 COPOD!:w=0.23,s=0.83"} +{"timestamp":"2026-03-21T21:28:19.128510152Z","score":0.5102869945794526,"is_anomaly":false,"confidence":0.6295696600643386,"method":"SEAD","details":"MAD!:w=0.22,s=0.43 RRCF-fast:w=0.20,s=0.39 RRCF-mid:w=0.20,s=0.52 RRCF-slow:w=0.15,s=0.61 COPOD!:w=0.23,s=0.61"} +{"timestamp":"2026-03-21T21:28:49.07154508Z","score":0.5212179326755129,"is_anomaly":false,"confidence":0.6430557709282702,"method":"SEAD","details":"MAD!:w=0.22,s=0.75 RRCF-fast:w=0.20,s=0.58 RRCF-mid:w=0.20,s=0.70 RRCF-slow:w=0.15,s=0.31 COPOD!:w=0.23,s=0.24"} +{"timestamp":"2026-03-21T21:29:19.022796598Z","score":0.172330828689858,"is_anomaly":false,"confidence":0.21261420022333513,"method":"SEAD","details":"MAD!:w=0.22,s=0.11 RRCF-fast:w=0.20,s=0.17 RRCF-mid:w=0.20,s=0.32 RRCF-slow:w=0.15,s=0.10 COPOD!:w=0.23,s=0.16"} +{"timestamp":"2026-03-21T21:29:49.069549914Z","score":0.2895434311873595,"is_anomaly":false,"confidence":0.35810910361311993,"method":"SEAD","details":"MAD!:w=0.22,s=0.45 RRCF-fast:w=0.20,s=0.21 RRCF-mid:w=0.19,s=0.33 RRCF-slow:w=0.15,s=0.25 COPOD!:w=0.23,s=0.19"} +{"timestamp":"2026-03-21T21:30:19.02483967Z","score":0.253330344910038,"is_anomaly":false,"confidence":0.3133205348907833,"method":"SEAD","details":"MAD!:w=0.22,s=0.18 RRCF-fast:w=0.20,s=0.01 RRCF-mid:w=0.19,s=0.27 RRCF-slow:w=0.15,s=0.13 COPOD!:w=0.23,s=0.61"} +{"timestamp":"2026-03-21T21:30:49.030438233Z","score":0.17366826208851927,"is_anomaly":false,"confidence":0.2147939789465447,"method":"SEAD","details":"MAD!:w=0.22,s=0.09 RRCF-fast:w=0.20,s=0.06 RRCF-mid:w=0.19,s=0.23 RRCF-slow:w=0.16,s=0.02 COPOD!:w=0.23,s=0.41"} +{"timestamp":"2026-03-21T21:31:19.141161907Z","score":0.7093695088874653,"is_anomaly":false,"confidence":0.8773525889240049,"method":"SEAD","details":"MAD!:w=0.22,s=0.37 RRCF-fast!:w=0.20,s=0.83 RRCF-mid!:w=0.19,s=0.92 RRCF-slow!:w=0.16,s=0.88 COPOD!:w=0.23,s=0.63"} +{"timestamp":"2026-03-21T21:31:50.646489531Z","score":0.6095632811791245,"is_anomaly":false,"confidence":0.7539116301943523,"method":"SEAD","details":"MAD!:w=0.22,s=0.69 RRCF-fast:w=0.20,s=0.49 RRCF-mid:w=0.19,s=0.76 RRCF-slow:w=0.16,s=0.67 COPOD!:w=0.23,s=0.48"} +{"timestamp":"2026-03-21T21:32:19.025567478Z","score":0.42290486909868363,"is_anomaly":false,"confidence":0.5230513535240756,"method":"SEAD","details":"MAD!:w=0.22,s=0.06 RRCF-fast:w=0.20,s=0.48 RRCF-mid:w=0.19,s=0.78 RRCF-slow:w=0.15,s=0.39 COPOD!:w=0.23,s=0.44"} +{"timestamp":"2026-03-21T21:32:49.034843643Z","score":0.23658160258883182,"is_anomaly":false,"confidence":0.2926055869650156,"method":"SEAD","details":"MAD!:w=0.22,s=0.32 RRCF-fast:w=0.20,s=0.14 RRCF-mid:w=0.19,s=0.43 RRCF-slow:w=0.16,s=0.09 COPOD!:w=0.23,s=0.18"} +{"timestamp":"2026-03-21T21:33:19.026020119Z","score":0.12447453499825059,"is_anomaly":false,"confidence":0.15423744603388853,"method":"SEAD","details":"MAD!:w=0.22,s=0.06 RRCF-fast:w=0.20,s=0.03 RRCF-mid:w=0.19,s=0.21 RRCF-slow:w=0.16,s=0.03 COPOD!:w=0.23,s=0.26"} +{"timestamp":"2026-03-21T21:33:49.077581824Z","score":0.6148441845874231,"is_anomaly":false,"confidence":0.7618586142208579,"method":"SEAD","details":"MAD!:w=0.22,s=0.60 RRCF-fast:w=0.20,s=0.55 RRCF-mid:w=0.19,s=0.72 RRCF-slow:w=0.16,s=0.55 COPOD!:w=0.23,s=0.65"} +{"timestamp":"2026-03-21T21:34:19.045362384Z","score":0.35349661730747506,"is_anomaly":false,"confidence":0.43802063961026333,"method":"SEAD","details":"MAD!:w=0.22,s=0.22 RRCF-fast:w=0.20,s=0.15 RRCF-mid:w=0.19,s=0.25 RRCF-slow:w=0.16,s=0.21 COPOD!:w=0.23,s=0.84"} +{"timestamp":"2026-03-21T21:34:49.067029582Z","score":0.7089850213751773,"is_anomaly":false,"confidence":0.8785093189922427,"method":"SEAD","details":"MAD!:w=0.22,s=0.93 RRCF-fast!:w=0.20,s=0.82 RRCF-mid:w=0.19,s=0.82 RRCF-slow!:w=0.16,s=0.89 COPOD!:w=0.23,s=0.17"} +{"timestamp":"2026-03-21T21:35:19.476818174Z","score":0.5969354313364169,"is_anomaly":false,"confidence":0.7396677270395954,"method":"SEAD","details":"MAD!:w=0.22,s=0.38 RRCF-fast:w=0.20,s=0.73 RRCF-mid:w=0.19,s=0.72 RRCF-slow:w=0.16,s=0.60 COPOD!:w=0.23,s=0.59"} +{"timestamp":"2026-03-21T21:35:49.071476224Z","score":0.4593925634411677,"is_anomaly":false,"confidence":0.5692371995052855,"method":"SEAD","details":"MAD!:w=0.22,s=0.64 RRCF-fast:w=0.20,s=0.32 RRCF-mid:w=0.19,s=0.48 RRCF-slow:w=0.16,s=0.28 COPOD!:w=0.23,s=0.52"} +{"timestamp":"2026-03-21T21:36:19.027969487Z","score":0.3447969152048841,"is_anomaly":false,"confidence":0.42724076536869143,"method":"SEAD","details":"MAD!:w=0.22,s=0.70 RRCF-fast:w=0.20,s=0.07 RRCF-mid:w=0.19,s=0.33 RRCF-slow:w=0.16,s=0.13 COPOD!:w=0.23,s=0.40"} +{"timestamp":"2026-03-21T21:36:49.022697352Z","score":0.15867849914487797,"is_anomaly":false,"confidence":0.1971177212819355,"method":"SEAD","details":"MAD!:w=0.22,s=0.07 RRCF-fast:w=0.21,s=0.04 RRCF-mid:w=0.19,s=0.28 RRCF-slow:w=0.16,s=0.07 COPOD!:w=0.23,s=0.31"} +{"timestamp":"2026-03-21T21:37:19.065626379Z","score":0.3403412168579829,"is_anomaly":false,"confidence":0.42278749475764854,"method":"SEAD","details":"MAD!:w=0.22,s=0.17 RRCF-fast:w=0.21,s=0.51 RRCF-mid:w=0.19,s=0.66 RRCF-slow:w=0.16,s=0.44 COPOD!:w=0.23,s=0.02"} +{"timestamp":"2026-03-21T21:37:49.029234814Z","score":0.2683260687890516,"is_anomaly":false,"confidence":0.3333269694714341,"method":"SEAD","details":"MAD!:w=0.22,s=0.17 RRCF-fast:w=0.21,s=0.41 RRCF-mid:w=0.19,s=0.52 RRCF-slow:w=0.16,s=0.32 COPOD!:w=0.23,s=0.00"} +{"timestamp":"2026-03-21T21:38:19.025681405Z","score":0.2706163961099992,"is_anomaly":false,"confidence":0.3361721192864872,"method":"SEAD","details":"MAD!:w=0.22,s=0.17 RRCF-fast:w=0.20,s=0.42 RRCF-mid:w=0.19,s=0.60 RRCF-slow:w=0.16,s=0.18 COPOD!:w=0.23,s=0.03"} +{"timestamp":"2026-03-21T21:38:49.999481583Z","score":0.2047633703828655,"is_anomaly":false,"confidence":0.25436646545936453,"method":"SEAD","details":"MAD!:w=0.22,s=0.17 RRCF-fast:w=0.20,s=0.31 RRCF-mid:w=0.19,s=0.36 RRCF-slow:w=0.16,s=0.23 COPOD!:w=0.23,s=0.00"} +{"timestamp":"2026-03-21T21:39:19.024729482Z","score":0.18368825424382054,"is_anomaly":false,"confidence":0.22818598800672799,"method":"SEAD","details":"MAD!:w=0.22,s=0.17 RRCF-fast:w=0.20,s=0.15 RRCF-mid:w=0.19,s=0.40 RRCF-slow:w=0.16,s=0.24 COPOD!:w=0.23,s=0.01"} +{"timestamp":"2026-03-21T21:39:49.024489321Z","score":0.19660976493410406,"is_anomaly":false,"confidence":0.24440820546817243,"method":"SEAD","details":"MAD!:w=0.22,s=0.17 RRCF-fast:w=0.20,s=0.29 RRCF-mid:w=0.18,s=0.39 RRCF-slow:w=0.16,s=0.15 COPOD!:w=0.23,s=0.02"} +{"timestamp":"2026-03-21T21:40:19.02212615Z","score":0.16632656160536727,"is_anomaly":false,"confidence":0.20676275391145535,"method":"SEAD","details":"MAD!:w=0.22,s=0.17 RRCF-fast:w=0.20,s=0.20 RRCF-mid:w=0.18,s=0.29 RRCF-slow:w=0.16,s=0.16 COPOD!:w=0.23,s=0.03"} +{"timestamp":"2026-03-21T21:40:49.06642322Z","score":0.2681713168748719,"is_anomaly":false,"confidence":0.33336731945837794,"method":"SEAD","details":"MAD!:w=0.22,s=0.43 RRCF-fast:w=0.20,s=0.11 RRCF-mid:w=0.18,s=0.23 RRCF-slow:w=0.16,s=0.05 COPOD!:w=0.23,s=0.42"} +{"timestamp":"2026-03-21T21:41:19.058036099Z","score":0.16038380552495557,"is_anomaly":false,"confidence":0.19937523503803978,"method":"SEAD","details":"MAD!:w=0.22,s=0.16 RRCF-fast:w=0.20,s=0.09 RRCF-mid:w=0.18,s=0.34 RRCF-slow:w=0.16,s=0.23 COPOD!:w=0.23,s=0.03"} +{"timestamp":"2026-03-21T21:41:49.069708164Z","score":0.22571415687218388,"is_anomaly":false,"confidence":0.28058826095632455,"method":"SEAD","details":"MAD!:w=0.22,s=0.46 RRCF-fast:w=0.20,s=0.17 RRCF-mid:w=0.18,s=0.12 RRCF-slow:w=0.16,s=0.14 COPOD!:w=0.23,s=0.18"} +{"timestamp":"2026-03-21T21:42:19.022998841Z","score":0.22360167480117532,"is_anomaly":false,"confidence":0.27796220648628367,"method":"SEAD","details":"MAD!:w=0.22,s=0.13 RRCF-fast:w=0.20,s=0.10 RRCF-mid:w=0.18,s=0.19 RRCF-slow:w=0.16,s=0.07 COPOD!:w=0.23,s=0.55"} +{"timestamp":"2026-03-21T21:42:49.055076277Z","score":0.8871452529058661,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.22,s=0.93 RRCF-fast!:w=0.20,s=0.92 RRCF-mid!:w=0.18,s=0.92 RRCF-slow!:w=0.16,s=0.95 COPOD!:w=0.23,s=0.75"} +{"timestamp":"2026-03-21T21:43:19.022476971Z","score":0.4448259800970762,"is_anomaly":false,"confidence":0.5529690734210775,"method":"SEAD","details":"MAD!:w=0.22,s=0.46 RRCF-fast:w=0.20,s=0.49 RRCF-mid:w=0.18,s=0.59 RRCF-slow:w=0.16,s=0.56 COPOD!:w=0.23,s=0.20"} +{"timestamp":"2026-03-21T21:43:49.013366158Z","score":0.4142949313037491,"is_anomaly":false,"confidence":0.5150155218813599,"method":"SEAD","details":"MAD!:w=0.22,s=0.57 RRCF-fast:w=0.20,s=0.56 RRCF-mid:w=0.18,s=0.65 RRCF-slow:w=0.16,s=0.27 COPOD!:w=0.23,s=0.05"} +{"timestamp":"2026-03-21T21:44:19.019077713Z","score":0.42080495572661597,"is_anomaly":false,"confidence":0.5231082195522011,"method":"SEAD","details":"MAD!:w=0.22,s=0.53 RRCF-fast:w=0.20,s=0.67 RRCF-mid:w=0.18,s=0.44 RRCF-slow:w=0.16,s=0.32 COPOD!:w=0.24,s=0.16"} +{"timestamp":"2026-03-21T21:44:49.016168759Z","score":0.37758746979730434,"is_anomaly":false,"confidence":0.469383989810259,"method":"SEAD","details":"MAD!:w=0.22,s=0.54 RRCF-fast:w=0.20,s=0.51 RRCF-mid:w=0.18,s=0.55 RRCF-slow:w=0.16,s=0.29 COPOD!:w=0.24,s=0.04"} +{"timestamp":"2026-03-21T21:45:19.015953185Z","score":0.3102726548005633,"is_anomaly":false,"confidence":0.3857040508189801,"method":"SEAD","details":"MAD!:w=0.22,s=0.43 RRCF-fast:w=0.20,s=0.40 RRCF-mid:w=0.18,s=0.47 RRCF-slow:w=0.16,s=0.20 COPOD!:w=0.24,s=0.07"} +{"timestamp":"2026-03-21T21:45:49.015099331Z","score":0.2876288017508083,"is_anomaly":false,"confidence":0.35755517687759414,"method":"SEAD","details":"MAD!:w=0.22,s=0.46 RRCF-fast:w=0.20,s=0.35 RRCF-mid:w=0.18,s=0.38 RRCF-slow:w=0.16,s=0.15 COPOD!:w=0.24,s=0.10"} +{"timestamp":"2026-03-21T21:46:19.015776656Z","score":0.2207061085216617,"is_anomaly":false,"confidence":0.27436268965441485,"method":"SEAD","details":"MAD!:w=0.22,s=0.45 RRCF-fast:w=0.20,s=0.22 RRCF-mid:w=0.18,s=0.26 RRCF-slow:w=0.16,s=0.07 COPOD!:w=0.24,s=0.08"} +{"timestamp":"2026-03-21T21:46:49.017778379Z","score":0.2871706303880126,"is_anomaly":false,"confidence":0.3571434315352874,"method":"SEAD","details":"MAD!:w=0.22,s=0.45 RRCF-fast:w=0.20,s=0.35 RRCF-mid:w=0.18,s=0.29 RRCF-slow:w=0.16,s=0.23 COPOD!:w=0.24,s=0.12"} +{"timestamp":"2026-03-21T21:47:19.015999942Z","score":0.19981487649772722,"is_anomaly":false,"confidence":0.24850232966991057,"method":"SEAD","details":"MAD!:w=0.22,s=0.44 RRCF-fast:w=0.20,s=0.20 RRCF-mid:w=0.18,s=0.14 RRCF-slow:w=0.16,s=0.18 COPOD!:w=0.24,s=0.04"} +{"timestamp":"2026-03-21T21:47:49.065940572Z","score":0.6585370434146913,"is_anomaly":false,"confidence":0.8189980262272776,"method":"SEAD","details":"MAD!:w=0.21,s=0.57 RRCF-fast!:w=0.20,s=0.84 RRCF-mid:w=0.18,s=0.64 RRCF-slow:w=0.16,s=0.44 COPOD!:w=0.25,s=0.75"} +{"timestamp":"2026-03-21T21:48:19.061569959Z","score":0.6257772985043268,"is_anomaly":false,"confidence":0.7782559499999845,"method":"SEAD","details":"MAD!:w=0.21,s=0.58 RRCF-fast!:w=0.20,s=0.81 RRCF-mid:w=0.18,s=0.46 RRCF-slow:w=0.16,s=0.56 COPOD!:w=0.24,s=0.68"} +{"timestamp":"2026-03-21T21:48:49.234032139Z","score":0.774933770347678,"is_anomaly":false,"confidence":0.963756306070013,"method":"SEAD","details":"MAD!:w=0.21,s=0.70 RRCF-fast!:w=0.20,s=0.96 RRCF-mid!:w=0.18,s=0.95 RRCF-slow:w=0.16,s=0.75 COPOD!:w=0.24,s=0.57"} +{"timestamp":"2026-03-21T21:49:19.03119813Z","score":0.7841300092115145,"is_anomaly":false,"confidence":0.9751933262855241,"method":"SEAD","details":"MAD!:w=0.21,s=0.72 RRCF-fast!:w=0.20,s=0.95 RRCF-mid!:w=0.18,s=0.94 RRCF-slow!:w=0.16,s=0.84 COPOD!:w=0.25,s=0.56"} +{"timestamp":"2026-03-21T21:49:49.018071744Z","score":0.6203940091977086,"is_anomaly":false,"confidence":0.7738182881527815,"method":"SEAD","details":"MAD!:w=0.22,s=0.46 RRCF-fast!:w=0.20,s=0.91 RRCF-mid:w=0.18,s=0.84 RRCF-slow!:w=0.16,s=0.84 COPOD!:w=0.25,s=0.22"} +{"timestamp":"2026-03-21T21:50:19.01519609Z","score":0.6492527559106613,"is_anomaly":false,"confidence":0.8098138420243135,"method":"SEAD","details":"MAD!:w=0.22,s=0.62 RRCF-fast:w=0.20,s=0.81 RRCF-mid:w=0.18,s=0.74 RRCF-slow:w=0.16,s=0.77 COPOD!:w=0.25,s=0.40"} +{"timestamp":"2026-03-21T21:50:49.015071971Z","score":0.619902391913879,"is_anomaly":false,"confidence":0.773205093248641,"method":"SEAD","details":"MAD!:w=0.22,s=0.71 RRCF-fast:w=0.20,s=0.68 RRCF-mid:w=0.18,s=0.78 RRCF-slow:w=0.16,s=0.70 COPOD!:w=0.25,s=0.33"} +{"timestamp":"2026-03-21T21:51:20.492484611Z","score":0.7215045992389589,"is_anomaly":false,"confidence":0.8999336640910812,"method":"SEAD","details":"MAD!:w=0.22,s=0.77 RRCF-fast:w=0.20,s=0.66 RRCF-mid:w=0.18,s=0.57 RRCF-slow:w=0.16,s=0.46 COPOD!:w=0.25,s=1.00"} +{"timestamp":"2026-03-21T21:51:49.068884041Z","score":0.7226105425025493,"is_anomaly":false,"confidence":0.9013131086220372,"method":"SEAD","details":"MAD!:w=0.22,s=0.39 RRCF-fast!:w=0.20,s=0.98 RRCF-mid:w=0.18,s=0.71 RRCF-slow:w=0.16,s=0.66 COPOD!:w=0.25,s=0.85"} +{"timestamp":"2026-03-21T21:52:19.036698513Z","score":0.41810105264363695,"is_anomaly":false,"confidence":0.5214980093859521,"method":"SEAD","details":"MAD!:w=0.22,s=0.23 RRCF-fast:w=0.20,s=0.71 RRCF-mid:w=0.18,s=0.20 RRCF-slow:w=0.16,s=0.00 COPOD!:w=0.25,s=0.78"} +{"timestamp":"2026-03-21T21:52:50.415507673Z","score":0.7511151981532038,"is_anomaly":false,"confidence":0.9368670042318588,"method":"SEAD","details":"MAD!:w=0.22,s=0.93 RRCF-fast!:w=0.19,s=0.92 RRCF-mid:w=0.18,s=0.67 RRCF-slow:w=0.16,s=0.80 COPOD!:w=0.25,s=0.48"} +{"timestamp":"2026-03-21T21:53:19.791300625Z","score":0.6942123168480611,"is_anomaly":false,"confidence":0.8661134152312595,"method":"SEAD","details":"MAD!:w=0.22,s=0.36 RRCF-fast!:w=0.19,s=0.93 RRCF-mid:w=0.18,s=0.73 RRCF-slow:w=0.16,s=0.75 COPOD!:w=0.25,s=0.75"} +{"timestamp":"2026-03-21T21:53:49.040536793Z","score":0.6009243307201351,"is_anomaly":false,"confidence":0.7497254251244977,"method":"SEAD","details":"MAD!:w=0.22,s=0.67 RRCF-fast:w=0.19,s=0.78 RRCF-mid:w=0.18,s=0.46 RRCF-slow:w=0.16,s=0.25 COPOD!:w=0.25,s=0.73"} +{"timestamp":"2026-03-21T21:54:19.028191493Z","score":0.276525284824211,"is_anomaly":false,"confidence":0.34499857323809613,"method":"SEAD","details":"MAD!:w=0.22,s=0.00 RRCF-fast:w=0.19,s=0.41 RRCF-mid:w=0.18,s=0.02 RRCF-slow:w=0.16,s=0.00 COPOD!:w=0.25,s=0.78"} +{"timestamp":"2026-03-21T21:54:49.025090765Z","score":0.29047647614193783,"is_anomaly":false,"confidence":0.36240436346320054,"method":"SEAD","details":"MAD!:w=0.22,s=0.34 RRCF-fast:w=0.19,s=0.49 RRCF-mid:w=0.18,s=0.09 RRCF-slow:w=0.16,s=0.02 COPOD!:w=0.25,s=0.42"} +{"timestamp":"2026-03-21T21:55:19.011184628Z","score":0.26445717162351934,"is_anomaly":false,"confidence":0.329942149596543,"method":"SEAD","details":"MAD!:w=0.22,s=0.01 RRCF-fast:w=0.19,s=0.27 RRCF-mid:w=0.18,s=0.06 RRCF-slow:w=0.16,s=0.06 COPOD!:w=0.24,s=0.78"} +{"timestamp":"2026-03-21T21:55:49.06896901Z","score":0.5740473105382721,"is_anomaly":false,"confidence":0.7161931077397462,"method":"SEAD","details":"MAD!:w=0.22,s=0.56 RRCF-fast:w=0.19,s=0.44 RRCF-mid:w=0.18,s=0.30 RRCF-slow:w=0.16,s=0.45 COPOD!:w=0.24,s=0.98"} +{"timestamp":"2026-03-21T21:56:19.033429516Z","score":0.2776674718632837,"is_anomaly":false,"confidence":0.3464235890340355,"method":"SEAD","details":"MAD!:w=0.22,s=0.27 RRCF-fast:w=0.19,s=0.06 RRCF-mid:w=0.18,s=0.03 RRCF-slow:w=0.16,s=0.00 COPOD!:w=0.24,s=0.84"} +{"timestamp":"2026-03-21T21:56:49.056616484Z","score":0.8820568103288952,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.22,s=0.93 RRCF-fast!:w=0.19,s=1.00 RRCF-mid!:w=0.19,s=1.00 RRCF-slow!:w=0.16,s=1.00 COPOD!:w=0.24,s=0.57"} +{"timestamp":"2026-03-21T21:57:19.439593494Z","score":0.7820282991111088,"is_anomaly":false,"confidence":0.9756744219490107,"method":"SEAD","details":"MAD!:w=0.22,s=0.46 RRCF-fast!:w=0.19,s=0.99 RRCF-mid!:w=0.18,s=1.00 RRCF-slow!:w=0.16,s=1.00 COPOD!:w=0.24,s=0.59"} +{"timestamp":"2026-03-21T21:57:49.069387062Z","score":0.8503876257843839,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.22,s=0.70 RRCF-fast!:w=0.19,s=0.90 RRCF-mid!:w=0.18,s=0.95 RRCF-slow!:w=0.16,s=0.91 COPOD!:w=0.24,s=0.83"} +{"timestamp":"2026-03-21T21:58:19.073490649Z","score":0.7505975707847824,"is_anomaly":false,"confidence":0.9362213669139696,"method":"SEAD","details":"MAD!:w=0.22,s=0.76 RRCF-fast:w=0.19,s=0.87 RRCF-mid!:w=0.18,s=0.93 RRCF-slow!:w=0.16,s=0.93 COPOD!:w=0.24,s=0.38"} +{"timestamp":"2026-03-21T21:58:49.023810446Z","score":0.5069006557560704,"is_anomaly":false,"confidence":0.6322578746495954,"method":"SEAD","details":"MAD!:w=0.22,s=0.14 RRCF-fast:w=0.19,s=0.67 RRCF-mid!:w=0.18,s=0.86 RRCF-slow!:w=0.16,s=0.90 COPOD!:w=0.24,s=0.18"} +{"timestamp":"2026-03-21T21:59:19.022561546Z","score":0.5665346991820703,"is_anomaly":false,"confidence":0.7066394978042284,"method":"SEAD","details":"MAD!:w=0.22,s=0.33 RRCF-fast:w=0.19,s=0.76 RRCF-mid:w=0.18,s=0.76 RRCF-slow:w=0.16,s=0.65 COPOD!:w=0.24,s=0.43"} +{"timestamp":"2026-03-21T21:59:49.066296239Z","score":0.5910397325288567,"is_anomaly":false,"confidence":0.7373931992479715,"method":"SEAD","details":"MAD!:w=0.23,s=0.06 RRCF-fast:w=0.19,s=0.57 RRCF-mid:w=0.18,s=0.74 RRCF-slow:w=0.16,s=0.67 COPOD!:w=0.24,s=0.94"} +{"timestamp":"2026-03-21T22:00:19.023041907Z","score":0.47163370437308144,"is_anomaly":false,"confidence":0.5884198083482631,"method":"SEAD","details":"MAD!:w=0.23,s=0.15 RRCF-fast:w=0.19,s=0.71 RRCF-mid:w=0.18,s=0.81 RRCF-slow:w=0.16,s=0.71 COPOD!:w=0.24,s=0.18"} +{"timestamp":"2026-03-21T22:00:50.935171425Z","score":0.9610626084531292,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.23,s=0.93 RRCF-fast!:w=0.19,s=0.94 RRCF-mid!:w=0.18,s=0.99 RRCF-slow!:w=0.16,s=0.98 COPOD!:w=0.24,s=0.97"} +{"timestamp":"2026-03-21T22:01:19.06690882Z","score":0.7389211390724859,"is_anomaly":false,"confidence":0.9216573378205444,"method":"SEAD","details":"MAD!:w=0.23,s=0.39 RRCF-fast:w=0.19,s=0.68 RRCF-mid!:w=0.18,s=0.95 RRCF-slow!:w=0.16,s=0.97 COPOD!:w=0.24,s=0.81"} +{"timestamp":"2026-03-21T22:01:49.065155255Z","score":0.41310708502285054,"is_anomaly":false,"confidence":0.515269026806954,"method":"SEAD","details":"MAD!:w=0.23,s=0.15 RRCF-fast:w=0.19,s=0.23 RRCF-mid:w=0.18,s=0.80 RRCF-slow:w=0.16,s=0.71 COPOD!:w=0.24,s=0.33"} +{"timestamp":"2026-03-21T22:02:19.024384088Z","score":0.3658545751048626,"is_anomaly":false,"confidence":0.4563309071707806,"method":"SEAD","details":"MAD!:w=0.23,s=0.06 RRCF-fast:w=0.19,s=0.24 RRCF-mid:w=0.18,s=0.74 RRCF-slow:w=0.16,s=0.59 COPOD!:w=0.24,s=0.34"} +{"timestamp":"2026-03-21T22:02:49.022923925Z","score":0.3792000835083751,"is_anomaly":false,"confidence":0.47297677788234577,"method":"SEAD","details":"MAD!:w=0.23,s=0.07 RRCF-fast:w=0.19,s=0.26 RRCF-mid:w=0.18,s=0.72 RRCF-slow:w=0.16,s=0.66 COPOD!:w=0.24,s=0.34"} +{"timestamp":"2026-03-21T22:03:19.037473312Z","score":0.7645737284823876,"is_anomaly":false,"confidence":0.9538977443941155,"method":"SEAD","details":"MAD!:w=0.24,s=0.65 RRCF-fast:w=0.19,s=0.44 RRCF-mid:w=0.17,s=0.85 RRCF-slow:w=0.16,s=0.87 COPOD!:w=0.24,s=1.00"} +{"timestamp":"2026-03-21T22:03:49.068326764Z","score":0.5805467072547544,"is_anomaly":false,"confidence":0.7243018873600989,"method":"SEAD","details":"MAD!:w=0.24,s=0.28 RRCF-fast:w=0.19,s=0.31 RRCF-mid:w=0.17,s=0.75 RRCF-slow:w=0.16,s=0.64 COPOD!:w=0.24,s=0.92"} +{"timestamp":"2026-03-21T22:04:19.015787963Z","score":0.4190913721562871,"is_anomaly":false,"confidence":0.5228669253237702,"method":"SEAD","details":"MAD!:w=0.24,s=0.10 RRCF-fast:w=0.19,s=0.08 RRCF-mid:w=0.17,s=0.57 RRCF-slow:w=0.16,s=0.56 COPOD!:w=0.24,s=0.81"} +{"timestamp":"2026-03-21T22:04:50.660258339Z","score":0.8015657339891887,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.24,s=0.56 RRCF-fast:w=0.19,s=0.85 RRCF-mid!:w=0.17,s=0.95 RRCF-slow!:w=0.16,s=0.96 COPOD!:w=0.24,s=0.80"} +{"timestamp":"2026-03-21T22:05:19.071281449Z","score":0.5749081578389093,"is_anomaly":false,"confidence":0.7172314552142064,"method":"SEAD","details":"MAD!:w=0.24,s=0.43 RRCF-fast:w=0.19,s=0.42 RRCF-mid:w=0.17,s=0.72 RRCF-slow:w=0.16,s=0.69 COPOD!:w=0.24,s=0.67"} +{"timestamp":"2026-03-21T22:05:49.430818923Z","score":0.6764246065766867,"is_anomaly":false,"confidence":0.8438791453949678,"method":"SEAD","details":"MAD!:w=0.24,s=0.61 RRCF-fast:w=0.19,s=0.39 RRCF-mid:w=0.17,s=0.64 RRCF-slow:w=0.16,s=0.73 COPOD!:w=0.24,s=0.98"} +{"timestamp":"2026-03-21T22:06:19.303030002Z","score":0.43771262316304227,"is_anomaly":false,"confidence":0.5460720245420895,"method":"SEAD","details":"MAD!:w=0.24,s=0.69 RRCF-fast:w=0.19,s=0.34 RRCF-mid:w=0.17,s=0.23 RRCF-slow:w=0.16,s=0.51 COPOD!:w=0.23,s=0.37"} +{"timestamp":"2026-03-21T22:06:49.022613397Z","score":0.2998191940676066,"is_anomaly":false,"confidence":0.37406052849190935,"method":"SEAD","details":"MAD!:w=0.24,s=0.35 RRCF-fast:w=0.19,s=0.14 RRCF-mid:w=0.17,s=0.25 RRCF-slow:w=0.16,s=0.33 COPOD!:w=0.24,s=0.39"} +{"timestamp":"2026-03-21T22:07:19.068947792Z","score":0.6275139012868545,"is_anomaly":false,"confidence":0.7828991145191707,"method":"SEAD","details":"MAD!:w=0.24,s=0.47 RRCF-fast:w=0.20,s=0.65 RRCF-mid:w=0.17,s=0.84 RRCF-slow:w=0.16,s=0.77 COPOD!:w=0.23,s=0.51"} +{"timestamp":"2026-03-21T22:07:49.034979864Z","score":0.2965500620378252,"is_anomaly":false,"confidence":0.3699818928376019,"method":"SEAD","details":"MAD!:w=0.24,s=0.22 RRCF-fast:w=0.20,s=0.20 RRCF-mid:w=0.17,s=0.26 RRCF-slow:w=0.16,s=0.31 COPOD!:w=0.24,s=0.47"} +{"timestamp":"2026-03-21T22:08:21.494459684Z","score":0.9068984659401886,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.24,s=0.93 RRCF-fast!:w=0.20,s=0.92 RRCF-mid!:w=0.17,s=0.99 RRCF-slow!:w=0.16,s=0.99 COPOD!:w=0.23,s=0.76"} +{"timestamp":"2026-03-21T22:08:50.637867733Z","score":0.6964470344955203,"is_anomaly":false,"confidence":0.8688582919200907,"method":"SEAD","details":"MAD!:w=0.24,s=0.37 RRCF-fast!:w=0.20,s=0.93 RRCF-mid!:w=0.17,s=0.97 RRCF-slow!:w=0.16,s=0.99 COPOD!:w=0.23,s=0.43"} +{"timestamp":"2026-03-21T22:09:19.06637222Z","score":0.6523738160517488,"is_anomaly":false,"confidence":0.8138743815869602,"method":"SEAD","details":"MAD!:w=0.24,s=0.71 RRCF-fast:w=0.19,s=0.53 RRCF-mid:w=0.17,s=0.84 RRCF-slow:w=0.15,s=0.87 COPOD!:w=0.24,s=0.41"} +{"timestamp":"2026-03-21T22:09:49.025462169Z","score":0.4073931986603606,"is_anomaly":false,"confidence":0.5082720459869603,"method":"SEAD","details":"MAD!:w=0.24,s=0.14 RRCF-fast:w=0.19,s=0.40 RRCF-mid:w=0.17,s=0.61 RRCF-slow:w=0.15,s=0.86 COPOD!:w=0.24,s=0.25"} +{"timestamp":"2026-03-21T22:10:19.025022212Z","score":0.35684097756387456,"is_anomaly":false,"confidence":0.4452020660992568,"method":"SEAD","details":"MAD!:w=0.24,s=0.05 RRCF-fast:w=0.19,s=0.37 RRCF-mid:w=0.17,s=0.67 RRCF-slow:w=0.15,s=0.64 COPOD!:w=0.24,s=0.26"} +{"timestamp":"2026-03-21T22:10:49.066340169Z","score":0.6982191367371479,"is_anomaly":false,"confidence":0.8711124052723899,"method":"SEAD","details":"MAD!:w=0.25,s=0.81 RRCF-fast:w=0.19,s=0.83 RRCF-mid:w=0.17,s=0.84 RRCF-slow:w=0.15,s=0.83 COPOD!:w=0.24,s=0.30"} +{"timestamp":"2026-03-21T22:11:19.070530193Z","score":0.5966039367830454,"is_anomaly":false,"confidence":0.7443352137191646,"method":"SEAD","details":"MAD!:w=0.25,s=0.53 RRCF-fast:w=0.19,s=0.38 RRCF-mid:w=0.17,s=0.66 RRCF-slow:w=0.15,s=0.77 COPOD!:w=0.24,s=0.69"} +{"timestamp":"2026-03-21T22:11:50.527889512Z","score":0.40685608509831456,"is_anomaly":false,"confidence":0.5076019321755215,"method":"SEAD","details":"MAD!:w=0.25,s=0.24 RRCF-fast:w=0.19,s=0.16 RRCF-mid:w=0.17,s=0.46 RRCF-slow:w=0.15,s=0.59 COPOD!:w=0.24,s=0.62"} +{"timestamp":"2026-03-21T22:12:19.854138239Z","score":0.7132691993080583,"is_anomaly":false,"confidence":0.889889169637388,"method":"SEAD","details":"MAD!:w=0.25,s=0.93 RRCF-fast:w=0.20,s=0.77 RRCF-mid:w=0.17,s=0.88 RRCF-slow:w=0.15,s=0.86 COPOD!:w=0.24,s=0.23"} +{"timestamp":"2026-03-21T22:12:49.025154688Z","score":0.8550652982395947,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.89 RRCF-fast:w=0.20,s=0.89 RRCF-mid:w=0.17,s=0.94 RRCF-slow:w=0.15,s=0.87 COPOD!:w=0.24,s=0.73"} +{"timestamp":"2026-03-21T22:13:19.068245146Z","score":0.7654469241854345,"is_anomaly":false,"confidence":0.9549871611246699,"method":"SEAD","details":"MAD!:w=0.25,s=0.70 RRCF-fast:w=0.20,s=0.89 RRCF-mid:w=0.17,s=0.93 RRCF-slow:w=0.15,s=0.80 COPOD!:w=0.24,s=0.60"} +{"timestamp":"2026-03-21T22:13:49.026171446Z","score":0.4275384225036617,"is_anomaly":false,"confidence":0.5334056372530145,"method":"SEAD","details":"MAD!:w=0.25,s=0.13 RRCF-fast:w=0.19,s=0.77 RRCF-mid:w=0.17,s=0.67 RRCF-slow:w=0.15,s=0.41 COPOD!:w=0.24,s=0.30"} +{"timestamp":"2026-03-21T22:14:19.04402662Z","score":0.7770560000609341,"is_anomaly":false,"confidence":0.9694708804569048,"method":"SEAD","details":"MAD!:w=0.25,s=0.74 RRCF-fast:w=0.19,s=0.73 RRCF-mid:w=0.17,s=0.90 RRCF-slow:w=0.15,s=0.75 COPOD!:w=0.24,s=0.79"} +{"timestamp":"2026-03-21T22:14:49.069453868Z","score":0.5062380751763615,"is_anomaly":false,"confidence":0.6315929256366986,"method":"SEAD","details":"MAD!:w=0.25,s=0.30 RRCF-fast:w=0.19,s=0.63 RRCF-mid:w=0.17,s=0.57 RRCF-slow:w=0.15,s=0.63 COPOD!:w=0.24,s=0.49"} +{"timestamp":"2026-03-21T22:15:19.064964739Z","score":0.3036717782563501,"is_anomaly":false,"confidence":0.37886709093425924,"method":"SEAD","details":"MAD!:w=0.25,s=0.13 RRCF-fast:w=0.19,s=0.39 RRCF-mid:w=0.17,s=0.34 RRCF-slow:w=0.15,s=0.53 COPOD!:w=0.24,s=0.25"} +{"timestamp":"2026-03-21T22:15:49.031738864Z","score":0.3800727414334477,"is_anomaly":false,"confidence":0.4741864875198955,"method":"SEAD","details":"MAD!:w=0.25,s=0.11 RRCF-fast:w=0.19,s=0.19 RRCF-mid:w=0.17,s=0.39 RRCF-slow:w=0.15,s=0.51 COPOD!:w=0.24,s=0.72"} +{"timestamp":"2026-03-21T22:16:20.024321872Z","score":0.8075924237633236,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.93 RRCF-fast:w=0.19,s=0.82 RRCF-mid:w=0.17,s=0.88 RRCF-slow!:w=0.15,s=0.92 COPOD!:w=0.24,s=0.56"} +{"timestamp":"2026-03-21T22:16:49.069807692Z","score":0.6306597581800407,"is_anomaly":false,"confidence":0.7868239496041447,"method":"SEAD","details":"MAD!:w=0.25,s=0.40 RRCF-fast:w=0.19,s=0.70 RRCF-mid:w=0.17,s=0.71 RRCF-slow:w=0.15,s=0.75 COPOD!:w=0.24,s=0.69"} +{"timestamp":"2026-03-21T22:17:19.055634971Z","score":0.3155200700933461,"is_anomaly":false,"confidence":0.3936492609686224,"method":"SEAD","details":"MAD!:w=0.25,s=0.32 RRCF-fast:w=0.19,s=0.29 RRCF-mid:w=0.16,s=0.43 RRCF-slow:w=0.15,s=0.50 COPOD!:w=0.24,s=0.14"} +{"timestamp":"2026-03-21T22:17:49.016944106Z","score":0.2546490608323337,"is_anomaly":false,"confidence":0.3177053509570576,"method":"SEAD","details":"MAD!:w=0.25,s=0.07 RRCF-fast:w=0.19,s=0.19 RRCF-mid:w=0.16,s=0.36 RRCF-slow:w=0.15,s=0.53 COPOD!:w=0.24,s=0.26"} +{"timestamp":"2026-03-21T22:18:19.06499938Z","score":0.44011765107429524,"is_anomaly":false,"confidence":0.5490997388324174,"method":"SEAD","details":"MAD!:w=0.25,s=0.80 RRCF-fast:w=0.19,s=0.32 RRCF-mid:w=0.16,s=0.43 RRCF-slow:w=0.15,s=0.58 COPOD!:w=0.24,s=0.08"} +{"timestamp":"2026-03-21T22:18:49.991503724Z","score":0.6631476285790587,"is_anomaly":false,"confidence":0.8273564779128328,"method":"SEAD","details":"MAD!:w=0.25,s=0.54 RRCF-fast:w=0.19,s=0.64 RRCF-mid:w=0.16,s=0.72 RRCF-slow:w=0.15,s=0.55 COPOD!:w=0.25,s=0.84"} +{"timestamp":"2026-03-21T22:19:19.028988147Z","score":0.2859084320872123,"is_anomaly":false,"confidence":0.356705178730886,"method":"SEAD","details":"MAD!:w=0.25,s=0.23 RRCF-fast:w=0.19,s=0.12 RRCF-mid:w=0.16,s=0.29 RRCF-slow:w=0.15,s=0.19 COPOD!:w=0.24,s=0.53"} +{"timestamp":"2026-03-21T22:19:49.07903312Z","score":0.7669126503810076,"is_anomaly":false,"confidence":0.9571790779954386,"method":"SEAD","details":"MAD!:w=0.25,s=0.93 RRCF-fast:w=0.19,s=0.67 RRCF-mid:w=0.16,s=0.87 RRCF-slow:w=0.15,s=0.83 COPOD!:w=0.24,s=0.58"} +{"timestamp":"2026-03-21T22:20:19.050564825Z","score":0.5744250053507106,"is_anomaly":false,"confidence":0.7169364030257681,"method":"SEAD","details":"MAD!:w=0.25,s=0.38 RRCF-fast:w=0.19,s=0.41 RRCF-mid:w=0.16,s=0.62 RRCF-slow:w=0.15,s=0.69 COPOD!:w=0.24,s=0.81"} +{"timestamp":"2026-03-21T22:20:49.066078794Z","score":0.5254476776595842,"is_anomaly":false,"confidence":0.6558080941645406,"method":"SEAD","details":"MAD!:w=0.25,s=0.70 RRCF-fast:w=0.20,s=0.29 RRCF-mid:w=0.16,s=0.42 RRCF-slow:w=0.15,s=0.47 COPOD!:w=0.24,s=0.64"} +{"timestamp":"2026-03-21T22:21:19.028652375Z","score":0.18311377601479623,"is_anomaly":false,"confidence":0.2285432052881501,"method":"SEAD","details":"MAD!:w=0.25,s=0.14 RRCF-fast:w=0.20,s=0.21 RRCF-mid:w=0.16,s=0.11 RRCF-slow:w=0.15,s=0.21 COPOD!:w=0.24,s=0.23"} +{"timestamp":"2026-03-21T22:21:49.024676991Z","score":0.2828357261987184,"is_anomaly":false,"confidence":0.35300557305002306,"method":"SEAD","details":"MAD!:w=0.25,s=0.34 RRCF-fast:w=0.20,s=0.01 RRCF-mid:w=0.16,s=0.29 RRCF-slow:w=0.15,s=0.32 COPOD!:w=0.24,s=0.42"} +{"timestamp":"2026-03-21T22:22:19.022860804Z","score":0.1931903301881972,"is_anomaly":false,"confidence":0.2411196920996211,"method":"SEAD","details":"MAD!:w=0.25,s=0.02 RRCF-fast:w=0.20,s=0.08 RRCF-mid:w=0.16,s=0.21 RRCF-slow:w=0.15,s=0.18 COPOD!:w=0.24,s=0.46"} +{"timestamp":"2026-03-21T22:22:49.066687273Z","score":0.5209015330185457,"is_anomaly":false,"confidence":0.6501340783117817,"method":"SEAD","details":"MAD!:w=0.25,s=0.59 RRCF-fast:w=0.20,s=0.25 RRCF-mid:w=0.16,s=0.46 RRCF-slow:w=0.15,s=0.44 COPOD!:w=0.24,s=0.76"} +{"timestamp":"2026-03-21T22:23:19.034921487Z","score":0.24928760240406062,"is_anomaly":false,"confidence":0.3112617563120992,"method":"SEAD","details":"MAD!:w=0.25,s=0.25 RRCF-fast:w=0.20,s=0.11 RRCF-mid:w=0.16,s=0.17 RRCF-slow:w=0.15,s=0.13 COPOD!:w=0.24,s=0.49"} +{"timestamp":"2026-03-21T22:23:49.026613148Z","score":0.1461826858290569,"is_anomaly":false,"confidence":0.18252443801766416,"method":"SEAD","details":"MAD!:w=0.25,s=0.15 RRCF-fast:w=0.20,s=0.06 RRCF-mid:w=0.16,s=0.15 RRCF-slow:w=0.15,s=0.30 COPOD!:w=0.24,s=0.11"} +{"timestamp":"2026-03-21T22:24:20.173266552Z","score":0.893033165296683,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.77 RRCF-fast!:w=0.20,s=0.96 RRCF-mid:w=0.16,s=0.92 RRCF-slow!:w=0.15,s=0.98 COPOD!:w=0.24,s=0.89"} +{"timestamp":"2026-03-21T22:24:50.51324509Z","score":0.5633102178351244,"is_anomaly":false,"confidence":0.703064103408597,"method":"SEAD","details":"MAD!:w=0.25,s=0.62 RRCF-fast:w=0.20,s=0.30 RRCF-mid:w=0.16,s=0.75 RRCF-slow:w=0.15,s=0.59 COPOD!:w=0.24,s=0.58"} +{"timestamp":"2026-03-21T22:25:19.122602386Z","score":0.7427893369627886,"is_anomaly":false,"confidence":0.9270709152413433,"method":"SEAD","details":"MAD!:w=0.25,s=0.73 RRCF-fast:w=0.20,s=0.59 RRCF-mid:w=0.16,s=0.73 RRCF-slow:w=0.15,s=0.83 COPOD!:w=0.24,s=0.84"} +{"timestamp":"2026-03-21T22:25:49.070230403Z","score":0.2502659165979581,"is_anomaly":false,"confidence":0.31235538908362914,"method":"SEAD","details":"MAD!:w=0.25,s=0.31 RRCF-fast:w=0.20,s=0.28 RRCF-mid:w=0.16,s=0.23 RRCF-slow:w=0.15,s=0.14 COPOD!:w=0.24,s=0.23"} +{"timestamp":"2026-03-21T22:26:19.024519241Z","score":0.3181806534047421,"is_anomaly":false,"confidence":0.3971193646507614,"method":"SEAD","details":"MAD!:w=0.25,s=0.37 RRCF-fast:w=0.20,s=0.28 RRCF-mid:w=0.16,s=0.26 RRCF-slow:w=0.15,s=0.13 COPOD!:w=0.24,s=0.45"} +{"timestamp":"2026-03-21T22:26:49.070740019Z","score":0.36537708108306616,"is_anomaly":false,"confidence":0.4562116642678695,"method":"SEAD","details":"MAD!:w=0.25,s=0.48 RRCF-fast:w=0.20,s=0.36 RRCF-mid:w=0.16,s=0.47 RRCF-slow:w=0.15,s=0.40 COPOD!:w=0.24,s=0.15"} +{"timestamp":"2026-03-21T22:27:19.031660729Z","score":0.33585780998156517,"is_anomaly":false,"confidence":0.4193537536477764,"method":"SEAD","details":"MAD!:w=0.25,s=0.22 RRCF-fast:w=0.20,s=0.02 RRCF-mid:w=0.16,s=0.20 RRCF-slow:w=0.15,s=0.26 COPOD!:w=0.24,s=0.87"} +{"timestamp":"2026-03-21T22:27:54.132052626Z","score":0.8126764762618475,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.93 RRCF-fast!:w=0.20,s=0.86 RRCF-mid:w=0.16,s=0.88 RRCF-slow:w=0.15,s=0.82 COPOD!:w=0.23,s=0.60"} +{"timestamp":"2026-03-21T22:28:20.545476876Z","score":0.5071061538496813,"is_anomaly":false,"confidence":0.6329161483338488,"method":"SEAD","details":"MAD!:w=0.25,s=0.39 RRCF-fast:w=0.20,s=0.57 RRCF-mid:w=0.16,s=0.69 RRCF-slow:w=0.15,s=0.64 COPOD!:w=0.24,s=0.36"} +{"timestamp":"2026-03-21T22:28:49.079258034Z","score":0.47511937327729736,"is_anomaly":false,"confidence":0.5929936394000008,"method":"SEAD","details":"MAD!:w=0.25,s=0.56 RRCF-fast:w=0.20,s=0.57 RRCF-mid:w=0.16,s=0.40 RRCF-slow:w=0.15,s=0.27 COPOD!:w=0.24,s=0.48"} +{"timestamp":"2026-03-21T22:29:19.025995377Z","score":0.14465182200840448,"is_anomaly":false,"confidence":0.18053907123787583,"method":"SEAD","details":"MAD!:w=0.25,s=0.01 RRCF-fast:w=0.20,s=0.03 RRCF-mid:w=0.16,s=0.12 RRCF-slow:w=0.15,s=0.05 COPOD!:w=0.24,s=0.46"} +{"timestamp":"2026-03-21T22:29:49.302892523Z","score":0.7544965497252345,"is_anomaly":false,"confidence":0.9420681932599396,"method":"SEAD","details":"MAD!:w=0.25,s=0.73 RRCF-fast:w=0.20,s=0.62 RRCF-mid:w=0.16,s=0.69 RRCF-slow:w=0.15,s=0.79 COPOD!:w=0.23,s=0.93"} +{"timestamp":"2026-03-21T22:30:19.087450049Z","score":0.3050518417611804,"is_anomaly":false,"confidence":0.3808892665224612,"method":"SEAD","details":"MAD!:w=0.25,s=0.48 RRCF-fast:w=0.20,s=0.27 RRCF-mid:w=0.16,s=0.44 RRCF-slow:w=0.15,s=0.30 COPOD!:w=0.23,s=0.05"} +{"timestamp":"2026-03-21T22:30:49.022376602Z","score":0.24723239200689395,"is_anomaly":false,"confidence":0.3086956102557217,"method":"SEAD","details":"MAD!:w=0.25,s=0.23 RRCF-fast:w=0.20,s=0.08 RRCF-mid:w=0.16,s=0.12 RRCF-slow:w=0.15,s=0.26 COPOD!:w=0.23,s=0.49"} +{"timestamp":"2026-03-21T22:31:19.024326388Z","score":0.2916625458788238,"is_anomaly":false,"confidence":0.3641713242263593,"method":"SEAD","details":"MAD!:w=0.25,s=0.13 RRCF-fast:w=0.20,s=0.01 RRCF-mid:w=0.16,s=0.10 RRCF-slow:w=0.15,s=0.19 COPOD!:w=0.23,s=0.91"} +{"timestamp":"2026-03-21T22:31:49.064107228Z","score":0.7754053698474315,"is_anomaly":false,"confidence":0.9681750514064593,"method":"SEAD","details":"MAD!:w=0.25,s=0.79 RRCF-fast!:w=0.20,s=0.85 RRCF-mid:w=0.17,s=0.82 RRCF-slow:w=0.15,s=0.71 COPOD!:w=0.23,s=0.70"} +{"timestamp":"2026-03-21T22:32:19.071639917Z","score":0.6618866498172016,"is_anomaly":false,"confidence":0.8264350056514391,"method":"SEAD","details":"MAD!:w=0.25,s=0.63 RRCF-fast:w=0.20,s=0.81 RRCF-mid:w=0.16,s=0.64 RRCF-slow:w=0.15,s=0.40 COPOD!:w=0.23,s=0.75"} +{"timestamp":"2026-03-21T22:32:49.077727959Z","score":0.37481778566236235,"is_anomaly":false,"confidence":0.46799937556934235,"method":"SEAD","details":"MAD!:w=0.25,s=0.17 RRCF-fast:w=0.20,s=0.64 RRCF-mid:w=0.17,s=0.60 RRCF-slow:w=0.15,s=0.33 COPOD!:w=0.23,s=0.23"} +{"timestamp":"2026-03-21T22:33:19.01647121Z","score":0.23069746767294472,"is_anomaly":false,"confidence":0.28808173564746375,"method":"SEAD","details":"MAD!:w=0.25,s=0.34 RRCF-fast:w=0.20,s=0.20 RRCF-mid:w=0.16,s=0.16 RRCF-slow:w=0.15,s=0.21 COPOD!:w=0.23,s=0.19"} +{"timestamp":"2026-03-21T22:33:49.086339629Z","score":0.6998336346548322,"is_anomaly":false,"confidence":0.8739120119933638,"method":"SEAD","details":"MAD!:w=0.25,s=0.64 RRCF-fast:w=0.20,s=0.74 RRCF-mid:w=0.16,s=0.56 RRCF-slow:w=0.15,s=0.55 COPOD!:w=0.23,s=0.93"} +{"timestamp":"2026-03-21T22:34:19.073745168Z","score":0.327052166683789,"is_anomaly":false,"confidence":0.4084039446809196,"method":"SEAD","details":"MAD!:w=0.25,s=0.32 RRCF-fast:w=0.20,s=0.23 RRCF-mid:w=0.17,s=0.16 RRCF-slow:w=0.15,s=0.16 COPOD!:w=0.23,s=0.64"} +{"timestamp":"2026-03-21T22:34:49.02457803Z","score":0.18377664880189984,"is_anomaly":false,"confidence":0.2294897143534385,"method":"SEAD","details":"MAD!:w=0.25,s=0.13 RRCF-fast:w=0.20,s=0.05 RRCF-mid:w=0.17,s=0.14 RRCF-slow:w=0.15,s=0.15 COPOD!:w=0.23,s=0.41"} +{"timestamp":"2026-03-21T22:35:24.279946915Z","score":0.8941365274417771,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.93 RRCF-fast!:w=0.20,s=1.00 RRCF-mid!:w=0.17,s=0.97 RRCF-slow!:w=0.15,s=0.99 COPOD!:w=0.23,s=0.64"} +{"timestamp":"2026-03-21T22:35:49.337616991Z","score":0.759347618688203,"is_anomaly":false,"confidence":0.9481252624075552,"method":"SEAD","details":"MAD!:w=0.25,s=0.43 RRCF-fast!:w=0.20,s=1.00 RRCF-mid!:w=0.17,s=0.99 RRCF-slow!:w=0.15,s=1.00 COPOD!:w=0.23,s=0.58"} +{"timestamp":"2026-03-21T22:36:19.07550121Z","score":0.6092282968301319,"is_anomaly":false,"confidence":0.7606855208106688,"method":"SEAD","details":"MAD!:w=0.25,s=0.47 RRCF-fast!:w=0.20,s=0.87 RRCF-mid:w=0.16,s=0.70 RRCF-slow!:w=0.15,s=0.87 COPOD!:w=0.23,s=0.30"} +{"timestamp":"2026-03-21T22:36:49.024018038Z","score":0.8560480563970733,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.26,s=0.90 RRCF-fast!:w=0.20,s=0.93 RRCF-mid:w=0.16,s=0.76 RRCF-slow!:w=0.15,s=0.97 COPOD!:w=0.23,s=0.75"} +{"timestamp":"2026-03-21T22:37:19.027187468Z","score":0.8217357695893092,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.86 RRCF-fast:w=0.20,s=0.80 RRCF-mid:w=0.16,s=0.86 RRCF-slow!:w=0.15,s=0.90 COPOD!:w=0.23,s=0.73"} +{"timestamp":"2026-03-21T22:37:49.299793559Z","score":0.8109732973650969,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.65 RRCF-fast:w=0.20,s=0.85 RRCF-mid:w=0.16,s=0.84 RRCF-slow:w=0.15,s=0.78 COPOD!:w=0.23,s=0.96"} +{"timestamp":"2026-03-21T22:38:19.025986377Z","score":0.8580939811664758,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.26,s=0.93 RRCF-fast!:w=0.20,s=0.94 RRCF-mid!:w=0.16,s=0.96 RRCF-slow!:w=0.15,s=0.99 COPOD!:w=0.23,s=0.56"} +{"timestamp":"2026-03-21T22:38:49.070503614Z","score":0.4821056398536427,"is_anomaly":false,"confidence":0.6014549018385873,"method":"SEAD","details":"MAD!:w=0.26,s=0.49 RRCF-fast:w=0.20,s=0.66 RRCF-mid:w=0.16,s=0.56 RRCF-slow:w=0.15,s=0.59 COPOD!:w=0.23,s=0.20"} +{"timestamp":"2026-03-21T22:39:19.027488592Z","score":0.7119174433365182,"is_anomaly":false,"confidence":0.8881585291745022,"method":"SEAD","details":"MAD!:w=0.25,s=0.81 RRCF-fast:w=0.20,s=0.41 RRCF-mid:w=0.16,s=0.56 RRCF-slow:w=0.15,s=0.84 COPOD!:w=0.23,s=0.89"} +{"timestamp":"2026-03-21T22:39:49.026462899Z","score":0.5670946104047457,"is_anomaly":false,"confidence":0.7075187775505783,"method":"SEAD","details":"MAD!:w=0.25,s=0.15 RRCF-fast:w=0.20,s=0.69 RRCF-mid:w=0.16,s=0.66 RRCF-slow:w=0.15,s=0.67 COPOD!:w=0.23,s=0.79"} +{"timestamp":"2026-03-21T22:40:20.825325962Z","score":0.8185680074907958,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.26,s=0.93 RRCF-fast!:w=0.20,s=0.88 RRCF-mid:w=0.16,s=0.83 RRCF-slow!:w=0.15,s=0.91 COPOD!:w=0.23,s=0.58"} +{"timestamp":"2026-03-21T22:40:49.048913631Z","score":0.7407025017465421,"is_anomaly":false,"confidence":0.9240695682689106,"method":"SEAD","details":"MAD!:w=0.26,s=0.77 RRCF-fast:w=0.20,s=0.76 RRCF-mid:w=0.16,s=0.79 RRCF-slow:w=0.15,s=0.79 COPOD!:w=0.23,s=0.63"} +{"timestamp":"2026-03-21T22:41:19.022897129Z","score":0.6681763478525368,"is_anomaly":false,"confidence":0.8335889616029282,"method":"SEAD","details":"MAD!:w=0.26,s=0.91 RRCF-fast:w=0.20,s=0.75 RRCF-mid:w=0.16,s=0.77 RRCF-slow:w=0.15,s=0.83 COPOD!:w=0.23,s=0.16"} +{"timestamp":"2026-03-21T22:41:49.075238676Z","score":0.9183405058603573,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.92 RRCF-fast!:w=0.20,s=0.93 RRCF-mid!:w=0.16,s=0.99 RRCF-slow!:w=0.15,s=0.99 COPOD!:w=0.24,s=0.82"} +{"timestamp":"2026-03-21T22:42:20.519428604Z","score":0.7993933503042344,"is_anomaly":false,"confidence":0.9970844088147978,"method":"SEAD","details":"MAD!:w=0.25,s=0.65 RRCF-fast!:w=0.20,s=0.91 RRCF-mid!:w=0.16,s=0.89 RRCF-slow!:w=0.15,s=0.97 COPOD!:w=0.24,s=0.71"} +{"timestamp":"2026-03-21T22:42:49.024938262Z","score":0.7464091002595216,"is_anomaly":false,"confidence":0.9309970819534699,"method":"SEAD","details":"MAD!:w=0.26,s=0.86 RRCF-fast:w=0.20,s=0.64 RRCF-mid:w=0.16,s=0.84 RRCF-slow!:w=0.15,s=0.90 COPOD!:w=0.24,s=0.55"} +{"timestamp":"2026-03-21T22:43:19.009934554Z","score":0.8320271849966787,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.92 RRCF-fast:w=0.20,s=0.63 RRCF-mid:w=0.16,s=0.84 RRCF-slow!:w=0.15,s=0.93 COPOD!:w=0.24,s=0.84"} +{"timestamp":"2026-03-21T22:43:49.021153924Z","score":0.6926440236440716,"is_anomaly":false,"confidence":0.8639358290526347,"method":"SEAD","details":"MAD!:w=0.25,s=0.85 RRCF-fast:w=0.20,s=0.63 RRCF-mid:w=0.16,s=0.61 RRCF-slow:w=0.15,s=0.74 COPOD!:w=0.24,s=0.61"} +{"timestamp":"2026-03-21T22:44:19.025122746Z","score":0.7290640009041398,"is_anomaly":false,"confidence":0.9093625160291814,"method":"SEAD","details":"MAD!:w=0.25,s=0.92 RRCF-fast:w=0.20,s=0.74 RRCF-mid:w=0.16,s=0.72 RRCF-slow:w=0.15,s=0.85 COPOD!:w=0.24,s=0.45"} +{"timestamp":"2026-03-21T22:44:51.227139732Z","score":0.7194424240000099,"is_anomaly":false,"confidence":0.8973615101218027,"method":"SEAD","details":"MAD!:w=0.25,s=0.77 RRCF-fast:w=0.20,s=0.66 RRCF-mid:w=0.16,s=0.71 RRCF-slow:w=0.15,s=0.72 COPOD!:w=0.24,s=0.72"} +{"timestamp":"2026-03-21T22:45:19.026110261Z","score":0.48382332508312936,"is_anomaly":false,"confidence":0.6034734888371592,"method":"SEAD","details":"MAD!:w=0.25,s=0.77 RRCF-fast:w=0.20,s=0.22 RRCF-mid:w=0.16,s=0.48 RRCF-slow:w=0.15,s=0.74 COPOD!:w=0.24,s=0.26"} +{"timestamp":"2026-03-21T22:45:49.116826774Z","score":0.582144807905395,"is_anomaly":false,"confidence":0.7261100075626687,"method":"SEAD","details":"MAD!:w=0.25,s=0.59 RRCF-fast:w=0.20,s=0.43 RRCF-mid:w=0.16,s=0.58 RRCF-slow:w=0.14,s=0.56 COPOD!:w=0.24,s=0.72"} +{"timestamp":"2026-03-21T22:46:19.025059328Z","score":0.3278271098036091,"is_anomaly":false,"confidence":0.4088991981827146,"method":"SEAD","details":"MAD!:w=0.25,s=0.27 RRCF-fast:w=0.20,s=0.05 RRCF-mid:w=0.16,s=0.37 RRCF-slow:w=0.14,s=0.68 COPOD!:w=0.24,s=0.37"} +{"timestamp":"2026-03-21T22:46:49.112420411Z","score":0.3972472479041951,"is_anomaly":false,"confidence":0.4955891089894731,"method":"SEAD","details":"MAD!:w=0.25,s=0.17 RRCF-fast:w=0.20,s=0.33 RRCF-mid:w=0.16,s=0.30 RRCF-slow:w=0.14,s=0.49 COPOD!:w=0.24,s=0.71"} +{"timestamp":"2026-03-21T22:47:19.022885166Z","score":0.46334801200484543,"is_anomaly":false,"confidence":0.5780536671632409,"method":"SEAD","details":"MAD!:w=0.25,s=0.70 RRCF-fast:w=0.20,s=0.25 RRCF-mid:w=0.16,s=0.40 RRCF-slow:w=0.14,s=0.42 COPOD!:w=0.24,s=0.46"} +{"timestamp":"2026-03-21T22:47:49.069549413Z","score":0.5469343915261715,"is_anomaly":false,"confidence":0.6823325503252468,"method":"SEAD","details":"MAD!:w=0.25,s=0.34 RRCF-fast:w=0.20,s=0.57 RRCF-mid:w=0.16,s=0.75 RRCF-slow:w=0.14,s=0.80 COPOD!:w=0.24,s=0.46"} +{"timestamp":"2026-03-21T22:48:19.011622023Z","score":0.5779055224500469,"is_anomaly":false,"confidence":0.7209708423711654,"method":"SEAD","details":"MAD!:w=0.25,s=0.85 RRCF-fast:w=0.20,s=0.53 RRCF-mid:w=0.16,s=0.53 RRCF-slow:w=0.14,s=0.69 COPOD!:w=0.24,s=0.30"} +{"timestamp":"2026-03-21T22:48:49.037151162Z","score":0.8936335477691344,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.92 RRCF-fast!:w=0.20,s=0.87 RRCF-mid!:w=0.16,s=0.90 RRCF-slow!:w=0.14,s=0.95 COPOD!:w=0.24,s=0.86"} +{"timestamp":"2026-03-21T22:49:19.899828795Z","score":0.6867359422928776,"is_anomaly":false,"confidence":0.856566671179301,"method":"SEAD","details":"MAD!:w=0.25,s=0.92 RRCF-fast:w=0.20,s=0.58 RRCF-mid!:w=0.16,s=0.89 RRCF-slow!:w=0.14,s=0.95 COPOD!:w=0.24,s=0.25"} +{"timestamp":"2026-03-21T22:49:49.068312339Z","score":0.7295504251875883,"is_anomaly":false,"confidence":0.9101567023789819,"method":"SEAD","details":"MAD!:w=0.25,s=0.90 RRCF-fast:w=0.20,s=0.73 RRCF-mid:w=0.16,s=0.77 RRCF-slow:w=0.14,s=0.88 COPOD!:w=0.24,s=0.44"} +{"timestamp":"2026-03-21T22:50:19.027830767Z","score":0.38747985479958047,"is_anomaly":false,"confidence":0.4834037164627682,"method":"SEAD","details":"MAD!:w=0.25,s=0.49 RRCF-fast:w=0.20,s=0.16 RRCF-mid:w=0.16,s=0.56 RRCF-slow:w=0.14,s=0.57 COPOD!:w=0.24,s=0.26"} +{"timestamp":"2026-03-21T22:50:50.512616623Z","score":0.25284321467695603,"is_anomaly":false,"confidence":0.31543665597906695,"method":"SEAD","details":"MAD!:w=0.25,s=0.34 RRCF-fast:w=0.21,s=0.08 RRCF-mid:w=0.16,s=0.41 RRCF-slow:w=0.14,s=0.59 COPOD!:w=0.25,s=0.01"} +{"timestamp":"2026-03-21T22:51:19.074261941Z","score":0.6996984138363089,"is_anomaly":false,"confidence":0.872914577266281,"method":"SEAD","details":"MAD!:w=0.24,s=0.93 RRCF-fast:w=0.21,s=0.40 RRCF-mid:w=0.16,s=0.77 RRCF-slow:w=0.14,s=0.75 COPOD!:w=0.25,s=0.65"} +{"timestamp":"2026-03-21T22:51:49.02377442Z","score":0.5634719139341272,"is_anomaly":false,"confidence":0.7029640739878823,"method":"SEAD","details":"MAD!:w=0.24,s=0.79 RRCF-fast:w=0.21,s=0.50 RRCF-mid:w=0.16,s=0.58 RRCF-slow:w=0.14,s=0.66 COPOD!:w=0.25,s=0.32"} +{"timestamp":"2026-03-21T22:52:21.930794931Z","score":0.6396224355110821,"is_anomaly":false,"confidence":0.7979662907093645,"method":"SEAD","details":"MAD!:w=0.24,s=0.39 RRCF-fast!:w=0.21,s=0.94 RRCF-mid:w=0.16,s=0.81 RRCF-slow:w=0.14,s=0.80 COPOD!:w=0.25,s=0.43"} +{"timestamp":"2026-03-21T22:52:55.672840574Z","score":0.5613998085625599,"is_anomaly":false,"confidence":0.7003790016928692,"method":"SEAD","details":"MAD!:w=0.24,s=0.57 RRCF-fast:w=0.21,s=0.54 RRCF-mid:w=0.16,s=0.39 RRCF-slow:w=0.14,s=0.55 COPOD!:w=0.25,s=0.69"} +{"timestamp":"2026-03-21T22:53:19.057582175Z","score":0.2781897586819729,"is_anomaly":false,"confidence":0.3470752046987056,"method":"SEAD","details":"MAD!:w=0.24,s=0.50 RRCF-fast:w=0.21,s=0.17 RRCF-mid:w=0.16,s=0.24 RRCF-slow:w=0.14,s=0.39 COPOD!:w=0.25,s=0.11"} +{"timestamp":"2026-03-21T22:53:49.025237393Z","score":0.14110645363957808,"is_anomaly":false,"confidence":0.17604728338419096,"method":"SEAD","details":"MAD!:w=0.24,s=0.03 RRCF-fast:w=0.21,s=0.04 RRCF-mid:w=0.16,s=0.13 RRCF-slow:w=0.14,s=0.32 COPOD!:w=0.25,s=0.24"} +{"timestamp":"2026-03-21T22:54:19.073305004Z","score":0.40841568710847687,"is_anomaly":false,"confidence":0.5095477233846955,"method":"SEAD","details":"MAD!:w=0.24,s=0.50 RRCF-fast:w=0.21,s=0.36 RRCF-mid:w=0.16,s=0.38 RRCF-slow:w=0.14,s=0.56 COPOD!:w=0.25,s=0.29"} +{"timestamp":"2026-03-21T22:54:49.039700329Z","score":0.22499249648745862,"is_anomaly":false,"confidence":0.28070521770475876,"method":"SEAD","details":"MAD!:w=0.24,s=0.23 RRCF-fast:w=0.21,s=0.12 RRCF-mid:w=0.16,s=0.07 RRCF-slow:w=0.14,s=0.25 COPOD!:w=0.25,s=0.39"} +{"timestamp":"2026-03-21T22:55:19.027107123Z","score":0.11947043822895453,"is_anomaly":false,"confidence":0.14905375021789208,"method":"SEAD","details":"MAD!:w=0.24,s=0.10 RRCF-fast:w=0.21,s=0.02 RRCF-mid:w=0.16,s=0.17 RRCF-slow:w=0.14,s=0.24 COPOD!:w=0.25,s=0.12"} +{"timestamp":"2026-03-21T22:55:57.746461944Z","score":0.7153821310116881,"is_anomaly":false,"confidence":0.8925253062335955,"method":"SEAD","details":"MAD!:w=0.24,s=0.47 RRCF-fast!:w=0.21,s=0.95 RRCF-mid!:w=0.16,s=0.88 RRCF-slow:w=0.14,s=0.91 COPOD!:w=0.25,s=0.55"} +{"timestamp":"2026-03-21T22:56:19.069862626Z","score":0.5974483716605337,"is_anomaly":false,"confidence":0.7453887478584066,"method":"SEAD","details":"MAD!:w=0.24,s=0.69 RRCF-fast:w=0.21,s=0.61 RRCF-mid:w=0.16,s=0.35 RRCF-slow:w=0.14,s=0.53 COPOD!:w=0.25,s=0.69"} +{"timestamp":"2026-03-21T22:56:49.076988222Z","score":0.680127931218109,"is_anomaly":false,"confidence":0.8488635906564732,"method":"SEAD","details":"MAD!:w=0.24,s=0.60 RRCF-fast:w=0.21,s=0.81 RRCF-mid:w=0.16,s=0.41 RRCF-slow:w=0.14,s=0.51 COPOD!:w=0.25,s=0.93"} +{"timestamp":"2026-03-21T22:57:19.023617465Z","score":0.23214205399069987,"is_anomaly":false,"confidence":0.28973510489414167,"method":"SEAD","details":"MAD!:w=0.24,s=0.30 RRCF-fast:w=0.21,s=0.29 RRCF-mid:w=0.16,s=0.12 RRCF-slow:w=0.14,s=0.38 COPOD!:w=0.25,s=0.10"} +{"timestamp":"2026-03-21T22:57:49.031185118Z","score":0.18238862654175447,"is_anomaly":false,"confidence":0.22763815058124162,"method":"SEAD","details":"MAD!:w=0.24,s=0.36 RRCF-fast:w=0.21,s=0.08 RRCF-mid:w=0.16,s=0.05 RRCF-slow:w=0.14,s=0.27 COPOD!:w=0.25,s=0.13"} +{"timestamp":"2026-03-21T22:58:19.05489293Z","score":0.2396743107173306,"is_anomaly":false,"confidence":0.2991360693263224,"method":"SEAD","details":"MAD!:w=0.24,s=0.07 RRCF-fast:w=0.21,s=0.13 RRCF-mid:w=0.16,s=0.06 RRCF-slow:w=0.14,s=0.16 COPOD!:w=0.25,s=0.66"} +{"timestamp":"2026-03-21T22:58:49.028804346Z","score":0.22023012012558166,"is_anomaly":false,"confidence":0.2748678917004462,"method":"SEAD","details":"MAD!:w=0.24,s=0.07 RRCF-fast:w=0.21,s=0.09 RRCF-mid:w=0.16,s=0.08 RRCF-slow:w=0.14,s=0.20 COPOD!:w=0.25,s=0.58"} +{"timestamp":"2026-03-21T22:59:19.108238981Z","score":0.9529461263812609,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.24,s=0.93 RRCF-fast!:w=0.21,s=0.99 RRCF-mid!:w=0.16,s=0.94 RRCF-slow!:w=0.14,s=0.95 COPOD!:w=0.24,s=0.96"} +{"timestamp":"2026-03-21T22:59:49.059759164Z","score":0.9128320262541273,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.24,s=0.83 RRCF-fast!:w=0.21,s=0.95 RRCF-mid!:w=0.16,s=0.93 RRCF-slow:w=0.14,s=0.92 COPOD!:w=0.24,s=0.95"} +{"timestamp":"2026-03-21T23:00:19.07603657Z","score":0.6504342024317618,"is_anomaly":false,"confidence":0.8114949487055719,"method":"SEAD","details":"MAD!:w=0.24,s=0.58 RRCF-fast:w=0.21,s=0.86 RRCF-mid:w=0.16,s=0.61 RRCF-slow:w=0.14,s=0.76 COPOD!:w=0.24,s=0.51"} +{"timestamp":"2026-03-21T23:00:49.027864851Z","score":0.3641357181906768,"is_anomaly":false,"confidence":0.4543031329691042,"method":"SEAD","details":"MAD!:w=0.25,s=0.10 RRCF-fast:w=0.21,s=0.82 RRCF-mid:w=0.16,s=0.51 RRCF-slow:w=0.14,s=0.29 COPOD!:w=0.25,s=0.19"} +{"timestamp":"2026-03-21T23:01:19.06910959Z","score":0.6926046606911405,"is_anomaly":false,"confidence":0.8641076706905835,"method":"SEAD","details":"MAD!:w=0.25,s=0.65 RRCF-fast:w=0.21,s=0.75 RRCF-mid:w=0.16,s=0.48 RRCF-slow:w=0.14,s=0.44 COPOD!:w=0.25,s=0.98"} +{"timestamp":"2026-03-21T23:01:49.072138198Z","score":0.47263364571195665,"is_anomaly":false,"confidence":0.5896673555136265,"method":"SEAD","details":"MAD!:w=0.25,s=0.49 RRCF-fast:w=0.20,s=0.60 RRCF-mid:w=0.16,s=0.48 RRCF-slow:w=0.14,s=0.56 COPOD!:w=0.24,s=0.29"} +{"timestamp":"2026-03-21T23:02:19.035705672Z","score":0.286284145522168,"is_anomaly":false,"confidence":0.3571739264589229,"method":"SEAD","details":"MAD!:w=0.25,s=0.24 RRCF-fast:w=0.20,s=0.29 RRCF-mid:w=0.16,s=0.37 RRCF-slow:w=0.14,s=0.17 COPOD!:w=0.25,s=0.34"} +{"timestamp":"2026-03-21T23:02:49.071534733Z","score":0.7193862601205075,"is_anomaly":false,"confidence":0.8975209392025011,"method":"SEAD","details":"MAD!:w=0.25,s=0.93 RRCF-fast:w=0.20,s=0.87 RRCF-mid:w=0.16,s=0.79 RRCF-slow:w=0.14,s=0.69 COPOD!:w=0.24,s=0.35"} +{"timestamp":"2026-03-21T23:03:19.027645011Z","score":0.7731545610789419,"is_anomaly":false,"confidence":0.9649695692903864,"method":"SEAD","details":"MAD!:w=0.25,s=0.71 RRCF-fast:w=0.20,s=0.78 RRCF-mid:w=0.16,s=0.66 RRCF-slow:w=0.14,s=0.75 COPOD!:w=0.25,s=0.92"} +{"timestamp":"2026-03-21T23:03:49.069687509Z","score":0.6417804765457896,"is_anomaly":false,"confidence":0.801002362538138,"method":"SEAD","details":"MAD!:w=0.25,s=0.66 RRCF-fast:w=0.20,s=0.66 RRCF-mid:w=0.16,s=0.58 RRCF-slow:w=0.14,s=0.56 COPOD!:w=0.25,s=0.71"} +{"timestamp":"2026-03-21T23:04:19.025101529Z","score":0.17972928259617887,"is_anomaly":false,"confidence":0.22431903935699177,"method":"SEAD","details":"MAD!:w=0.25,s=0.10 RRCF-fast:w=0.20,s=0.19 RRCF-mid:w=0.16,s=0.26 RRCF-slow:w=0.14,s=0.23 COPOD!:w=0.25,s=0.17"} +{"timestamp":"2026-03-21T23:04:49.025514967Z","score":0.25940624574256177,"is_anomaly":false,"confidence":0.3237633790533604,"method":"SEAD","details":"MAD!:w=0.25,s=0.38 RRCF-fast:w=0.20,s=0.29 RRCF-mid:w=0.16,s=0.15 RRCF-slow:w=0.14,s=0.46 COPOD!:w=0.25,s=0.08"} +{"timestamp":"2026-03-21T23:05:19.023922872Z","score":0.23421743072715984,"is_anomaly":false,"confidence":0.29232537014809334,"method":"SEAD","details":"MAD!:w=0.25,s=0.08 RRCF-fast:w=0.20,s=0.46 RRCF-mid:w=0.16,s=0.39 RRCF-slow:w=0.14,s=0.27 COPOD!:w=0.25,s=0.07"} +{"timestamp":"2026-03-21T23:05:49.068758172Z","score":0.6264182574422333,"is_anomaly":false,"confidence":0.7818288690376712,"method":"SEAD","details":"MAD!:w=0.25,s=0.60 RRCF-fast:w=0.20,s=0.66 RRCF-mid:w=0.16,s=0.35 RRCF-slow:w=0.14,s=0.40 COPOD!:w=0.25,s=0.94"} +{"timestamp":"2026-03-21T23:06:19.050496154Z","score":0.28189438574186026,"is_anomaly":false,"confidence":0.35183069167320963,"method":"SEAD","details":"MAD!:w=0.25,s=0.27 RRCF-fast:w=0.20,s=0.44 RRCF-mid:w=0.16,s=0.10 RRCF-slow:w=0.14,s=0.16 COPOD!:w=0.25,s=0.36"} +{"timestamp":"2026-03-21T23:06:50.191684605Z","score":0.7314837600833297,"is_anomaly":false,"confidence":0.9133343081709815,"method":"SEAD","details":"MAD!:w=0.25,s=0.92 RRCF-fast:w=0.20,s=0.74 RRCF-mid:w=0.17,s=0.70 RRCF-slow:w=0.14,s=0.72 COPOD!:w=0.25,s=0.56"} +{"timestamp":"2026-03-21T23:07:24.16840596Z","score":0.8177122571863185,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.80 RRCF-fast:w=0.20,s=0.82 RRCF-mid:w=0.17,s=0.71 RRCF-slow:w=0.14,s=0.77 COPOD!:w=0.25,s=0.93"} +{"timestamp":"2026-03-21T23:07:49.07005613Z","score":0.591082741361637,"is_anomaly":false,"confidence":0.7377268234061185,"method":"SEAD","details":"MAD!:w=0.25,s=0.66 RRCF-fast:w=0.20,s=0.48 RRCF-mid:w=0.17,s=0.57 RRCF-slow:w=0.14,s=0.60 COPOD!:w=0.25,s=0.62"} +{"timestamp":"2026-03-21T23:08:19.059515694Z","score":0.6125549653597545,"is_anomaly":false,"confidence":0.7645261773596868,"method":"SEAD","details":"MAD!:w=0.25,s=0.60 RRCF-fast:w=0.20,s=0.51 RRCF-mid:w=0.17,s=0.42 RRCF-slow:w=0.14,s=0.47 COPOD!:w=0.25,s=0.92"} +{"timestamp":"2026-03-21T23:08:49.028859163Z","score":0.24186034517515523,"is_anomaly":false,"confidence":0.30186444581843963,"method":"SEAD","details":"MAD!:w=0.25,s=0.27 RRCF-fast:w=0.20,s=0.13 RRCF-mid:w=0.17,s=0.09 RRCF-slow:w=0.14,s=0.19 COPOD!:w=0.24,s=0.43"} +{"timestamp":"2026-03-21T23:09:19.021988424Z","score":0.2514240566339663,"is_anomaly":false,"confidence":0.3138008567145323,"method":"SEAD","details":"MAD!:w=0.25,s=0.34 RRCF-fast:w=0.20,s=0.36 RRCF-mid:w=0.17,s=0.10 RRCF-slow:w=0.14,s=0.18 COPOD!:w=0.24,s=0.22"} +{"timestamp":"2026-03-21T23:09:49.069504303Z","score":0.270872643131685,"is_anomaly":false,"confidence":0.33821294691346193,"method":"SEAD","details":"MAD!:w=0.25,s=0.06 RRCF-fast:w=0.20,s=0.12 RRCF-mid:w=0.17,s=0.05 RRCF-slow:w=0.14,s=0.14 COPOD!:w=0.24,s=0.83"} +{"timestamp":"2026-03-21T23:10:19.029727342Z","score":0.18981731664991314,"is_anomaly":false,"confidence":0.23700685789876022,"method":"SEAD","details":"MAD!:w=0.25,s=0.11 RRCF-fast:w=0.20,s=0.24 RRCF-mid:w=0.17,s=0.23 RRCF-slow:w=0.14,s=0.25 COPOD!:w=0.24,s=0.16"} +{"timestamp":"2026-03-21T23:10:53.774284314Z","score":0.613802712450516,"is_anomaly":false,"confidence":0.76639715920091,"method":"SEAD","details":"MAD!:w=0.25,s=0.39 RRCF-fast:w=0.20,s=0.81 RRCF-mid:w=0.17,s=0.59 RRCF-slow:w=0.14,s=0.69 COPOD!:w=0.24,s=0.66"} +{"timestamp":"2026-03-21T23:11:19.22059485Z","score":0.5469631055615849,"is_anomaly":false,"confidence":0.6829408892908743,"method":"SEAD","details":"MAD!:w=0.25,s=0.57 RRCF-fast:w=0.20,s=0.41 RRCF-mid:w=0.17,s=0.45 RRCF-slow:w=0.14,s=0.51 COPOD!:w=0.24,s=0.74"} +{"timestamp":"2026-03-21T23:11:49.06992854Z","score":0.216913574991349,"is_anomaly":false,"confidence":0.2708393825791144,"method":"SEAD","details":"MAD!:w=0.25,s=0.05 RRCF-fast:w=0.20,s=0.22 RRCF-mid:w=0.17,s=0.33 RRCF-slow:w=0.14,s=0.19 COPOD!:w=0.24,s=0.33"} +{"timestamp":"2026-03-21T23:12:19.012579322Z","score":0.20743132066717646,"is_anomaly":false,"confidence":0.25899979205685475,"method":"SEAD","details":"MAD!:w=0.25,s=0.37 RRCF-fast:w=0.20,s=0.13 RRCF-mid:w=0.17,s=0.14 RRCF-slow:w=0.14,s=0.16 COPOD!:w=0.24,s=0.18"} +{"timestamp":"2026-03-21T23:12:53.513629367Z","score":0.6605456978877949,"is_anomaly":false,"confidence":0.8247606863164539,"method":"SEAD","details":"MAD!:w=0.25,s=0.72 RRCF-fast:w=0.20,s=0.59 RRCF-mid:w=0.17,s=0.57 RRCF-slow:w=0.14,s=0.53 COPOD!:w=0.24,s=0.80"} +{"timestamp":"2026-03-21T23:13:19.055118282Z","score":0.4110017488304682,"is_anomaly":false,"confidence":0.5132353569007553,"method":"SEAD","details":"MAD!:w=0.25,s=0.49 RRCF-fast:w=0.20,s=0.58 RRCF-mid:w=0.17,s=0.44 RRCF-slow:w=0.14,s=0.38 COPOD!:w=0.24,s=0.18"} +{"timestamp":"2026-03-21T23:13:50.817754139Z","score":0.25605061931008744,"is_anomaly":false,"confidence":0.31974129394879647,"method":"SEAD","details":"MAD!:w=0.25,s=0.26 RRCF-fast:w=0.20,s=0.13 RRCF-mid:w=0.17,s=0.18 RRCF-slow:w=0.14,s=0.17 COPOD!:w=0.24,s=0.46"} +{"timestamp":"2026-03-21T23:14:19.079119507Z","score":0.8273569257441635,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.92 RRCF-fast:w=0.20,s=0.77 RRCF-mid!:w=0.17,s=0.94 RRCF-slow!:w=0.14,s=0.93 COPOD!:w=0.24,s=0.64"} +{"timestamp":"2026-03-21T23:14:53.875070992Z","score":0.5572402517506304,"is_anomaly":false,"confidence":0.6957729858004053,"method":"SEAD","details":"MAD!:w=0.25,s=0.42 RRCF-fast:w=0.20,s=0.50 RRCF-mid:w=0.17,s=0.62 RRCF-slow:w=0.14,s=0.68 COPOD!:w=0.24,s=0.64"} +{"timestamp":"2026-03-21T23:15:19.072523598Z","score":0.5627340803870468,"is_anomaly":false,"confidence":0.7026326079146127,"method":"SEAD","details":"MAD!:w=0.25,s=0.68 RRCF-fast:w=0.20,s=0.49 RRCF-mid:w=0.17,s=0.57 RRCF-slow:w=0.14,s=0.42 COPOD!:w=0.24,s=0.59"} +{"timestamp":"2026-03-21T23:15:49.073753675Z","score":0.5395259203038726,"is_anomaly":false,"confidence":0.6736547823083784,"method":"SEAD","details":"MAD!:w=0.25,s=0.77 RRCF-fast:w=0.20,s=0.44 RRCF-mid:w=0.17,s=0.59 RRCF-slow:w=0.14,s=0.67 COPOD!:w=0.24,s=0.28"} +{"timestamp":"2026-03-21T23:16:19.027628073Z","score":0.1074347628561104,"is_anomaly":false,"confidence":0.1341435861754756,"method":"SEAD","details":"MAD!:w=0.25,s=0.06 RRCF-fast:w=0.21,s=0.01 RRCF-mid:w=0.17,s=0.09 RRCF-slow:w=0.14,s=0.16 COPOD!:w=0.24,s=0.22"} +{"timestamp":"2026-03-21T23:16:49.168903148Z","score":0.33325845238488755,"is_anomaly":false,"confidence":0.4161539974870094,"method":"SEAD","details":"MAD!:w=0.25,s=0.51 RRCF-fast:w=0.21,s=0.45 RRCF-mid:w=0.17,s=0.37 RRCF-slow:w=0.14,s=0.24 COPOD!:w=0.24,s=0.08"} +{"timestamp":"2026-03-21T23:17:19.068791207Z","score":0.22261224093250406,"is_anomaly":false,"confidence":0.27798536928512685,"method":"SEAD","details":"MAD!:w=0.24,s=0.20 RRCF-fast:w=0.20,s=0.03 RRCF-mid:w=0.17,s=0.34 RRCF-slow:w=0.14,s=0.16 COPOD!:w=0.24,s=0.36"} +{"timestamp":"2026-03-21T23:17:49.024935523Z","score":0.2525116128470277,"is_anomaly":false,"confidence":0.315321986122708,"method":"SEAD","details":"MAD!:w=0.24,s=0.11 RRCF-fast:w=0.21,s=0.02 RRCF-mid:w=0.17,s=0.18 RRCF-slow:w=0.14,s=0.18 COPOD!:w=0.24,s=0.69"} +{"timestamp":"2026-03-21T23:18:20.267534479Z","score":0.8767841397708269,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.82 RRCF-fast!:w=0.21,s=0.84 RRCF-mid!:w=0.17,s=0.87 RRCF-slow!:w=0.14,s=0.91 COPOD!:w=0.24,s=0.96"} +{"timestamp":"2026-03-21T23:18:51.225930062Z","score":0.5655689215928554,"is_anomaly":false,"confidence":0.7061722049265641,"method":"SEAD","details":"MAD!:w=0.25,s=0.63 RRCF-fast:w=0.21,s=0.56 RRCF-mid:w=0.17,s=0.49 RRCF-slow:w=0.14,s=0.54 COPOD!:w=0.24,s=0.58"} +{"timestamp":"2026-03-21T23:19:19.071409651Z","score":0.2166993988977942,"is_anomaly":false,"confidence":0.27057196122964877,"method":"SEAD","details":"MAD!:w=0.25,s=0.17 RRCF-fast:w=0.21,s=0.19 RRCF-mid:w=0.17,s=0.19 RRCF-slow:w=0.14,s=0.36 COPOD!:w=0.24,s=0.22"} +{"timestamp":"2026-03-21T23:19:49.027805075Z","score":0.21288952773863382,"is_anomaly":false,"confidence":0.2658442039730591,"method":"SEAD","details":"MAD!:w=0.25,s=0.39 RRCF-fast:w=0.21,s=0.23 RRCF-mid:w=0.17,s=0.11 RRCF-slow:w=0.14,s=0.25 COPOD!:w=0.24,s=0.06"} +{"timestamp":"2026-03-21T23:20:20.62461145Z","score":0.6516072572497407,"is_anomaly":false,"confidence":0.8136896842539695,"method":"SEAD","details":"MAD!:w=0.25,s=0.81 RRCF-fast:w=0.21,s=0.69 RRCF-mid!:w=0.17,s=0.72 RRCF-slow:w=0.14,s=0.62 COPOD!:w=0.24,s=0.42"} +{"timestamp":"2026-03-21T23:20:49.075461393Z","score":0.4940370808290555,"is_anomaly":false,"confidence":0.6169251060926654,"method":"SEAD","details":"MAD!:w=0.24,s=0.65 RRCF-fast:w=0.21,s=0.38 RRCF-mid:w=0.17,s=0.38 RRCF-slow:w=0.14,s=0.39 COPOD!:w=0.24,s=0.57"} +{"timestamp":"2026-03-21T23:21:19.028832719Z","score":0.3018946094166166,"is_anomaly":false,"confidence":0.37698863338477645,"method":"SEAD","details":"MAD!:w=0.24,s=0.28 RRCF-fast:w=0.21,s=0.03 RRCF-mid:w=0.17,s=0.05 RRCF-slow:w=0.14,s=0.02 COPOD!:w=0.24,s=0.90"} +{"timestamp":"2026-03-21T23:21:54.087061185Z","score":0.6703986577747636,"is_anomaly":false,"confidence":0.83715530497838,"method":"SEAD","details":"MAD!:w=0.24,s=0.92 RRCF-fast:w=0.21,s=0.75 RRCF-mid:w=0.17,s=0.70 RRCF-slow:w=0.14,s=0.73 COPOD!:w=0.24,s=0.29"} +{"timestamp":"2026-03-21T23:22:19.016470219Z","score":0.7054792976470794,"is_anomaly":false,"confidence":0.8809619913888591,"method":"SEAD","details":"MAD!:w=0.24,s=0.51 RRCF-fast!:w=0.21,s=0.97 RRCF-mid!:w=0.17,s=0.97 RRCF-slow!:w=0.14,s=0.97 COPOD!:w=0.24,s=0.32"} +{"timestamp":"2026-03-21T23:22:49.074948768Z","score":0.5731164591772187,"is_anomaly":false,"confidence":0.7156748877797272,"method":"SEAD","details":"MAD!:w=0.24,s=0.68 RRCF-fast:w=0.21,s=0.44 RRCF-mid:w=0.17,s=0.53 RRCF-slow:w=0.14,s=0.46 COPOD!:w=0.24,s=0.67"} +{"timestamp":"2026-03-21T23:23:19.025852476Z","score":0.12983449295247657,"is_anomaly":false,"confidence":0.16241627842296155,"method":"SEAD","details":"MAD!:w=0.24,s=0.10 RRCF-fast:w=0.21,s=0.00 RRCF-mid:w=0.17,s=0.19 RRCF-slow:w=0.14,s=0.10 COPOD!:w=0.24,s=0.25"} +{"timestamp":"2026-03-21T23:23:49.050729094Z","score":0.694055107743008,"is_anomaly":false,"confidence":0.8682272719417337,"method":"SEAD","details":"MAD!:w=0.24,s=0.65 RRCF-fast:w=0.21,s=0.60 RRCF-mid:w=0.17,s=0.49 RRCF-slow:w=0.14,s=0.68 COPOD!:w=0.24,s=0.97"} +{"timestamp":"2026-03-21T23:24:19.030529632Z","score":0.23621076263397045,"is_anomaly":false,"confidence":0.29548752506394127,"method":"SEAD","details":"MAD!:w=0.24,s=0.32 RRCF-fast:w=0.21,s=0.02 RRCF-mid:w=0.17,s=0.06 RRCF-slow:w=0.14,s=0.05 COPOD!:w=0.24,s=0.58"} +{"timestamp":"2026-03-21T23:24:49.075292854Z","score":0.32186103618102213,"is_anomaly":false,"confidence":0.40263161566021,"method":"SEAD","details":"MAD!:w=0.24,s=0.06 RRCF-fast:w=0.21,s=0.08 RRCF-mid:w=0.17,s=0.30 RRCF-slow:w=0.14,s=0.19 COPOD!:w=0.24,s=0.90"} +{"timestamp":"2026-03-21T23:25:19.026374314Z","score":0.30014741916555565,"is_anomaly":false,"confidence":0.3754689966476767,"method":"SEAD","details":"MAD!:w=0.24,s=0.20 RRCF-fast:w=0.21,s=0.35 RRCF-mid:w=0.17,s=0.47 RRCF-slow:w=0.14,s=0.23 COPOD!:w=0.23,s=0.28"} +{"timestamp":"2026-03-21T23:25:50.654713755Z","score":0.5802845896487835,"is_anomaly":false,"confidence":0.7259062005306122,"method":"SEAD","details":"MAD!:w=0.24,s=0.42 RRCF-fast:w=0.21,s=0.67 RRCF-mid!:w=0.17,s=0.75 RRCF-slow:w=0.14,s=0.67 COPOD!:w=0.23,s=0.50"} +{"timestamp":"2026-03-21T23:26:21.21954379Z","score":0.5397564304366289,"is_anomaly":false,"confidence":0.6752075561189088,"method":"SEAD","details":"MAD!:w=0.25,s=0.45 RRCF-fast:w=0.21,s=0.71 RRCF-mid:w=0.17,s=0.40 RRCF-slow:w=0.14,s=0.48 COPOD!:w=0.23,s=0.61"} +{"timestamp":"2026-03-21T23:26:51.152641881Z","score":0.09534374878468745,"is_anomaly":false,"confidence":0.1193613502398189,"method":"SEAD","details":"MAD!:w=0.25,s=0.04 RRCF-fast:w=0.21,s=0.01 RRCF-mid:w=0.17,s=0.09 RRCF-slow:w=0.14,s=0.17 COPOD!:w=0.23,s=0.19"} +{"timestamp":"2026-03-21T23:27:19.02794381Z","score":0.21439111531725824,"is_anomaly":false,"confidence":0.2683973866129178,"method":"SEAD","details":"MAD!:w=0.25,s=0.40 RRCF-fast:w=0.21,s=0.11 RRCF-mid:w=0.17,s=0.12 RRCF-slow:w=0.14,s=0.06 COPOD!:w=0.23,s=0.27"} +{"timestamp":"2026-03-21T23:27:49.026181999Z","score":0.1978539566236378,"is_anomaly":false,"confidence":0.24769442898893865,"method":"SEAD","details":"MAD!:w=0.25,s=0.02 RRCF-fast:w=0.21,s=0.34 RRCF-mid:w=0.17,s=0.22 RRCF-slow:w=0.14,s=0.23 COPOD!:w=0.23,s=0.22"} +{"timestamp":"2026-03-21T23:28:20.222044073Z","score":0.8182864871546511,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.76 RRCF-fast:w=0.21,s=0.82 RRCF-mid!:w=0.17,s=0.83 RRCF-slow!:w=0.14,s=0.74 COPOD!:w=0.23,s=0.91"} +{"timestamp":"2026-03-21T23:28:49.092551511Z","score":0.31080234657728406,"is_anomaly":false,"confidence":0.38879776327761345,"method":"SEAD","details":"MAD!:w=0.25,s=0.52 RRCF-fast:w=0.21,s=0.41 RRCF-mid:w=0.17,s=0.32 RRCF-slow:w=0.14,s=0.23 COPOD!:w=0.23,s=0.03"} +{"timestamp":"2026-03-21T23:29:19.028138009Z","score":0.24308879053658095,"is_anomaly":false,"confidence":0.30409158450475704,"method":"SEAD","details":"MAD!:w=0.25,s=0.20 RRCF-fast:w=0.21,s=0.17 RRCF-mid:w=0.17,s=0.27 RRCF-slow:w=0.14,s=0.04 COPOD!:w=0.23,s=0.46"} +{"timestamp":"2026-03-21T23:29:49.194146443Z","score":0.9020844721910937,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.92 RRCF-fast!:w=0.21,s=0.94 RRCF-mid!:w=0.17,s=0.92 RRCF-slow!:w=0.14,s=0.97 COPOD!:w=0.23,s=0.79"} +{"timestamp":"2026-03-21T23:30:20.871027439Z","score":0.8797585164770568,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.86 RRCF-fast!:w=0.21,s=0.98 RRCF-mid!:w=0.17,s=0.90 RRCF-slow!:w=0.14,s=0.88 COPOD!:w=0.23,s=0.80"} +{"timestamp":"2026-03-21T23:30:49.814703299Z","score":0.6697755851546034,"is_anomaly":false,"confidence":0.8363772477085679,"method":"SEAD","details":"MAD!:w=0.25,s=0.44 RRCF-fast!:w=0.21,s=0.93 RRCF-mid:w=0.17,s=0.69 RRCF-slow!:w=0.14,s=0.74 COPOD!:w=0.23,s=0.63"} +{"timestamp":"2026-03-21T23:31:19.075001785Z","score":0.42472786163942483,"is_anomaly":false,"confidence":0.5303757375108406,"method":"SEAD","details":"MAD!:w=0.25,s=0.53 RRCF-fast!:w=0.21,s=0.81 RRCF-mid:w=0.17,s=0.35 RRCF-slow:w=0.14,s=0.42 COPOD!:w=0.23,s=0.03"} +{"timestamp":"2026-03-21T23:31:49.027320235Z","score":0.3889246210994664,"is_anomaly":false,"confidence":0.4856667089263691,"method":"SEAD","details":"MAD!:w=0.25,s=0.40 RRCF-fast:w=0.21,s=0.70 RRCF-mid:w=0.17,s=0.31 RRCF-slow:w=0.14,s=0.32 COPOD!:w=0.23,s=0.20"} +{"timestamp":"2026-03-21T23:32:19.076169403Z","score":0.4990926327325863,"is_anomaly":false,"confidence":0.6232381886839737,"method":"SEAD","details":"MAD!:w=0.25,s=0.53 RRCF-fast:w=0.20,s=0.78 RRCF-mid:w=0.17,s=0.49 RRCF-slow:w=0.14,s=0.42 COPOD!:w=0.24,s=0.28"} +{"timestamp":"2026-03-21T23:32:49.043613356Z","score":0.3278393360655042,"is_anomaly":false,"confidence":0.4093869165532184,"method":"SEAD","details":"MAD!:w=0.25,s=0.25 RRCF-fast:w=0.20,s=0.57 RRCF-mid:w=0.17,s=0.13 RRCF-slow:w=0.14,s=0.23 COPOD!:w=0.24,s=0.40"} +{"timestamp":"2026-03-21T23:33:19.064630074Z","score":0.6744773337706577,"is_anomaly":false,"confidence":0.843736482814079,"method":"SEAD","details":"MAD!:w=0.25,s=0.92 RRCF-fast!:w=0.20,s=0.87 RRCF-mid!:w=0.17,s=0.86 RRCF-slow!:w=0.14,s=0.80 COPOD!:w=0.24,s=0.04"} +{"timestamp":"2026-03-21T23:33:49.056896245Z","score":0.5857088211973176,"is_anomaly":false,"confidence":0.732691635443812,"method":"SEAD","details":"MAD!:w=0.24,s=0.43 RRCF-fast!:w=0.20,s=0.85 RRCF-mid:w=0.17,s=0.67 RRCF-slow:w=0.14,s=0.72 COPOD!:w=0.24,s=0.38"} +{"timestamp":"2026-03-21T23:34:19.089739233Z","score":0.6328905483110335,"is_anomaly":false,"confidence":0.7917135513701321,"method":"SEAD","details":"MAD!:w=0.25,s=0.72 RRCF-fast:w=0.20,s=0.70 RRCF-mid:w=0.17,s=0.56 RRCF-slow:w=0.14,s=0.47 COPOD!:w=0.24,s=0.64"} +{"timestamp":"2026-03-21T23:34:49.071172445Z","score":0.5175227381883499,"is_anomaly":false,"confidence":0.6473943497170577,"method":"SEAD","details":"MAD!:w=0.25,s=0.65 RRCF-fast:w=0.20,s=0.46 RRCF-mid:w=0.17,s=0.54 RRCF-slow:w=0.14,s=0.38 COPOD!:w=0.24,s=0.49"} +{"timestamp":"2026-03-21T23:35:19.027708979Z","score":0.2249567462623989,"is_anomaly":false,"confidence":0.2814093289327269,"method":"SEAD","details":"MAD!:w=0.24,s=0.20 RRCF-fast:w=0.20,s=0.47 RRCF-mid:w=0.17,s=0.26 RRCF-slow:w=0.14,s=0.08 COPOD!:w=0.24,s=0.10"} +{"timestamp":"2026-03-21T23:35:49.025830361Z","score":0.16544213297887098,"is_anomaly":false,"confidence":0.20695960620126092,"method":"SEAD","details":"MAD!:w=0.24,s=0.06 RRCF-fast:w=0.20,s=0.19 RRCF-mid:w=0.17,s=0.24 RRCF-slow:w=0.14,s=0.11 COPOD!:w=0.24,s=0.23"} +{"timestamp":"2026-03-21T23:36:47.121837716Z","score":0.726243787161506,"is_anomaly":false,"confidence":0.908493655701678,"method":"SEAD","details":"MAD!:w=0.25,s=0.34 RRCF-fast!:w=0.20,s=0.95 RRCF-mid!:w=0.17,s=0.99 RRCF-slow!:w=0.14,s=0.99 COPOD!:w=0.24,s=0.59"} +{"timestamp":"2026-03-21T23:36:49.457210033Z","score":0.838290469643673,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.68 RRCF-fast!:w=0.20,s=1.00 RRCF-mid!:w=0.17,s=1.00 RRCF-slow!:w=0.14,s=1.00 COPOD!:w=0.24,s=0.67"} +{"timestamp":"2026-03-21T23:37:23.14750355Z","score":0.9149368053033557,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.92 RRCF-fast!:w=0.20,s=0.93 RRCF-mid!:w=0.17,s=0.96 RRCF-slow!:w=0.14,s=0.96 COPOD!:w=0.24,s=0.84"} +{"timestamp":"2026-03-21T23:38:22.930455414Z","score":0.7230155554702825,"is_anomaly":false,"confidence":0.9028602620609574,"method":"SEAD","details":"MAD!:w=0.25,s=0.45 RRCF-fast:w=0.20,s=0.81 RRCF-mid!:w=0.17,s=0.87 RRCF-slow!:w=0.14,s=0.93 COPOD!:w=0.24,s=0.71"} +{"timestamp":"2026-03-21T23:38:49.080187766Z","score":0.8007994508453723,"is_anomaly":false,"confidence":0.9999923190839852,"method":"SEAD","details":"MAD!:w=0.25,s=0.76 RRCF-fast:w=0.20,s=0.84 RRCF-mid!:w=0.17,s=0.87 RRCF-slow!:w=0.14,s=0.92 COPOD!:w=0.24,s=0.70"} +{"timestamp":"2026-03-21T23:39:19.025286274Z","score":0.27904921827177054,"is_anomaly":false,"confidence":0.3484606222239314,"method":"SEAD","details":"MAD!:w=0.25,s=0.07 RRCF-fast:w=0.20,s=0.22 RRCF-mid:w=0.17,s=0.35 RRCF-slow:w=0.14,s=0.67 COPOD!:w=0.24,s=0.26"} +{"timestamp":"2026-03-21T23:39:55.830615719Z","score":0.7835455989908737,"is_anomaly":false,"confidence":0.9784467007510836,"method":"SEAD","details":"MAD!:w=0.25,s=0.59 RRCF-fast!:w=0.20,s=0.96 RRCF-mid!:w=0.17,s=0.99 RRCF-slow!:w=0.14,s=0.99 COPOD!:w=0.24,s=0.58"} +{"timestamp":"2026-03-21T23:40:19.060423366Z","score":0.848656826973593,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.67 RRCF-fast:w=0.20,s=0.85 RRCF-mid!:w=0.17,s=0.91 RRCF-slow:w=0.14,s=0.90 COPOD!:w=0.24,s=0.97"} +{"timestamp":"2026-03-21T23:40:49.067107914Z","score":0.3935750387438092,"is_anomaly":false,"confidence":0.491473883144541,"method":"SEAD","details":"MAD!:w=0.25,s=0.33 RRCF-fast:w=0.20,s=0.25 RRCF-mid:w=0.17,s=0.43 RRCF-slow:w=0.14,s=0.74 COPOD!:w=0.24,s=0.35"} +{"timestamp":"2026-03-21T23:41:31.797582916Z","score":0.8217761873703227,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.63 RRCF-fast!:w=0.20,s=0.94 RRCF-mid!:w=0.17,s=0.96 RRCF-slow!:w=0.14,s=0.99 COPOD!:w=0.24,s=0.73"} +{"timestamp":"2026-03-21T23:41:49.026203455Z","score":0.44401598128136727,"is_anomaly":false,"confidence":0.5544005912506916,"method":"SEAD","details":"MAD!:w=0.25,s=0.29 RRCF-fast:w=0.20,s=0.59 RRCF-mid:w=0.17,s=0.82 RRCF-slow:w=0.14,s=0.82 COPOD!:w=0.24,s=0.01"} +{"timestamp":"2026-03-21T23:42:19.027391375Z","score":0.39025204299974287,"is_anomaly":false,"confidence":0.4872706670410265,"method":"SEAD","details":"MAD!:w=0.26,s=0.00 RRCF-fast:w=0.20,s=0.45 RRCF-mid:w=0.16,s=0.62 RRCF-slow:w=0.14,s=0.57 COPOD!:w=0.25,s=0.49"} +{"timestamp":"2026-03-21T23:43:07.37770725Z","score":0.7182177814401396,"is_anomaly":false,"confidence":0.8967703404009947,"method":"SEAD","details":"MAD!:w=0.26,s=0.49 RRCF-fast!:w=0.19,s=0.92 RRCF-mid!:w=0.16,s=0.96 RRCF-slow!:w=0.14,s=0.99 COPOD!:w=0.25,s=0.49"} +{"timestamp":"2026-03-21T23:43:19.059019803Z","score":0.5679372100423883,"is_anomaly":false,"confidence":0.7091292618164627,"method":"SEAD","details":"MAD!:w=0.26,s=0.33 RRCF-fast:w=0.19,s=0.60 RRCF-mid:w=0.16,s=0.88 RRCF-slow!:w=0.14,s=0.93 COPOD!:w=0.25,s=0.38"} +{"timestamp":"2026-03-21T23:43:49.025232731Z","score":0.475281588646538,"is_anomaly":false,"confidence":0.593504325642132,"method":"SEAD","details":"MAD!:w=0.26,s=0.03 RRCF-fast:w=0.19,s=0.33 RRCF-mid:w=0.16,s=0.57 RRCF-slow:w=0.14,s=0.65 COPOD!:w=0.25,s=0.90"} +{"timestamp":"2026-03-21T23:44:46.568665474Z","score":0.6479611031273111,"is_anomaly":false,"confidence":0.8091365765904004,"method":"SEAD","details":"MAD!:w=0.26,s=0.40 RRCF-fast:w=0.19,s=0.79 RRCF-mid!:w=0.16,s=0.94 RRCF-slow!:w=0.14,s=0.95 COPOD!:w=0.24,s=0.44"} +{"timestamp":"2026-03-21T23:44:49.125164586Z","score":0.872775127102403,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.26,s=0.92 RRCF-fast:w=0.19,s=0.82 RRCF-mid!:w=0.16,s=0.91 RRCF-slow:w=0.14,s=0.92 COPOD!:w=0.25,s=0.82"} +{"timestamp":"2026-03-21T23:45:19.044485194Z","score":0.760105061914041,"is_anomaly":false,"confidence":0.9490710098354554,"method":"SEAD","details":"MAD!:w=0.26,s=0.66 RRCF-fast:w=0.19,s=0.84 RRCF-mid:w=0.16,s=0.88 RRCF-slow:w=0.14,s=0.89 COPOD!:w=0.25,s=0.66"} +{"timestamp":"2026-03-21T23:46:17.704268798Z","score":0.7066659674575839,"is_anomaly":false,"confidence":0.8823466872625088,"method":"SEAD","details":"MAD!:w=0.26,s=0.48 RRCF-fast:w=0.19,s=0.53 RRCF-mid:w=0.16,s=0.83 RRCF-slow:w=0.14,s=0.88 COPOD!:w=0.25,s=0.91"} +{"timestamp":"2026-03-21T23:46:19.167214347Z","score":0.74194208170875,"is_anomaly":false,"confidence":0.9263926212431606,"method":"SEAD","details":"MAD!:w=0.27,s=0.49 RRCF-fast:w=0.19,s=0.69 RRCF-mid:w=0.16,s=0.84 RRCF-slow:w=0.14,s=0.91 COPOD!:w=0.25,s=0.90"} +{"timestamp":"2026-03-21T23:46:49.434548155Z","score":0.7307978704906742,"is_anomaly":false,"confidence":0.9124779029699716,"method":"SEAD","details":"MAD!:w=0.27,s=0.68 RRCF-fast:w=0.19,s=0.65 RRCF-mid:w=0.16,s=0.73 RRCF-slow:w=0.14,s=0.76 COPOD!:w=0.24,s=0.84"} +{"timestamp":"2026-03-21T23:47:35.631327709Z","score":0.3941293340704804,"is_anomaly":false,"confidence":0.49216605528400764,"method":"SEAD","details":"MAD!:w=0.27,s=0.32 RRCF-fast:w=0.19,s=0.44 RRCF-mid:w=0.16,s=0.73 RRCF-slow:w=0.14,s=0.77 COPOD!:w=0.24,s=0.01"} +{"timestamp":"2026-03-21T23:47:56.619998246Z","score":0.7418927526864328,"is_anomaly":false,"confidence":0.926433020761099,"method":"SEAD","details":"MAD!:w=0.27,s=0.61 RRCF-fast:w=0.19,s=0.84 RRCF-mid!:w=0.16,s=0.92 RRCF-slow!:w=0.13,s=0.94 COPOD!:w=0.25,s=0.59"} +{"timestamp":"2026-03-21T23:48:19.06906292Z","score":0.39480529913791135,"is_anomaly":false,"confidence":0.4930101616013714,"method":"SEAD","details":"MAD!:w=0.27,s=0.52 RRCF-fast:w=0.19,s=0.18 RRCF-mid:w=0.16,s=0.71 RRCF-slow:w=0.13,s=0.67 COPOD!:w=0.25,s=0.08"} +{"timestamp":"2026-03-21T23:48:49.068030783Z","score":0.3490305102176803,"is_anomaly":false,"confidence":0.4358492366287088,"method":"SEAD","details":"MAD!:w=0.27,s=0.18 RRCF-fast:w=0.19,s=0.02 RRCF-mid:w=0.16,s=0.43 RRCF-slow:w=0.13,s=0.65 COPOD!:w=0.25,s=0.58"} +{"timestamp":"2026-03-21T23:49:38.09770673Z","score":0.6818222948312592,"is_anomaly":false,"confidence":0.8514204862299897,"method":"SEAD","details":"MAD!:w=0.27,s=0.62 RRCF-fast:w=0.20,s=0.84 RRCF-mid!:w=0.16,s=0.94 RRCF-slow!:w=0.13,s=0.97 COPOD!:w=0.25,s=0.30"} +{"timestamp":"2026-03-21T23:49:49.694597958Z","score":0.8664154065364117,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.27,s=0.92 RRCF-fast:w=0.19,s=0.83 RRCF-mid:w=0.16,s=0.84 RRCF-slow:w=0.13,s=0.87 COPOD!:w=0.25,s=0.85"} +{"timestamp":"2026-03-21T23:50:20.075904136Z","score":0.5791153397487752,"is_anomaly":false,"confidence":0.7231659449830332,"method":"SEAD","details":"MAD!:w=0.27,s=0.42 RRCF-fast:w=0.19,s=0.65 RRCF-mid:w=0.16,s=0.83 RRCF-slow:w=0.13,s=0.84 COPOD!:w=0.25,s=0.40"} +{"timestamp":"2026-03-21T23:51:03.398292539Z","score":0.8283440752109246,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.27,s=0.81 RRCF-fast!:w=0.19,s=0.98 RRCF-mid!:w=0.16,s=0.99 RRCF-slow!:w=0.13,s=1.00 COPOD!:w=0.25,s=0.54"} +{"timestamp":"2026-03-21T23:51:19.117933029Z","score":0.8957989442150472,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.27,s=0.83 RRCF-fast:w=0.19,s=0.83 RRCF-mid:w=0.15,s=0.93 RRCF-slow!:w=0.13,s=0.96 COPOD!:w=0.25,s=0.97"} +{"timestamp":"2026-03-21T23:51:49.078315699Z","score":0.7160718838502168,"is_anomaly":false,"confidence":0.8937250222977692,"method":"SEAD","details":"MAD!:w=0.27,s=0.63 RRCF-fast:w=0.19,s=0.92 RRCF-mid:w=0.15,s=0.93 RRCF-slow:w=0.13,s=0.90 COPOD!:w=0.25,s=0.42"} +{"timestamp":"2026-03-21T23:52:19.027773537Z","score":0.475482173790209,"is_anomaly":false,"confidence":0.5934464485436138,"method":"SEAD","details":"MAD!:w=0.27,s=0.18 RRCF-fast:w=0.19,s=0.45 RRCF-mid:w=0.15,s=0.81 RRCF-slow:w=0.13,s=0.82 COPOD!:w=0.25,s=0.42"} +{"timestamp":"2026-03-21T23:52:49.028377141Z","score":0.3810627491834259,"is_anomaly":false,"confidence":0.47560213114308475,"method":"SEAD","details":"MAD!:w=0.27,s=0.00 RRCF-fast:w=0.19,s=0.56 RRCF-mid:w=0.15,s=0.74 RRCF-slow:w=0.13,s=0.72 COPOD!:w=0.25,s=0.27"} +{"timestamp":"2026-03-21T23:53:19.018651766Z","score":0.35520674889132003,"is_anomaly":false,"confidence":0.4433314122966134,"method":"SEAD","details":"MAD!:w=0.27,s=0.00 RRCF-fast:w=0.19,s=0.41 RRCF-mid:w=0.15,s=0.75 RRCF-slow:w=0.13,s=0.63 COPOD!:w=0.25,s=0.32"} +{"timestamp":"2026-03-21T23:53:49.026882787Z","score":0.30249703018953683,"is_anomaly":false,"confidence":0.37769931592256206,"method":"SEAD","details":"MAD!:w=0.28,s=0.03 RRCF-fast:w=0.19,s=0.44 RRCF-mid:w=0.15,s=0.65 RRCF-slow:w=0.13,s=0.72 COPOD!:w=0.25,s=0.09"} +{"timestamp":"2026-03-21T23:54:19.018793143Z","score":0.31125944902721847,"is_anomaly":false,"confidence":0.38864011622974404,"method":"SEAD","details":"MAD!:w=0.28,s=0.16 RRCF-fast:w=0.19,s=0.37 RRCF-mid:w=0.15,s=0.68 RRCF-slow:w=0.13,s=0.57 COPOD!:w=0.25,s=0.09"} +{"timestamp":"2026-03-21T23:54:49.082082504Z","score":0.5702566914743799,"is_anomaly":false,"confidence":0.7120253780183619,"method":"SEAD","details":"MAD!:w=0.28,s=0.53 RRCF-fast:w=0.19,s=0.70 RRCF-mid:w=0.15,s=0.73 RRCF-slow:w=0.13,s=0.82 COPOD!:w=0.25,s=0.31"} +{"timestamp":"2026-03-21T23:55:19.027403601Z","score":0.43951893432431377,"is_anomaly":false,"confidence":0.5487855557632805,"method":"SEAD","details":"MAD!:w=0.28,s=0.25 RRCF-fast:w=0.19,s=0.24 RRCF-mid:w=0.15,s=0.69 RRCF-slow:w=0.13,s=0.74 COPOD!:w=0.26,s=0.50"} +{"timestamp":"2026-03-21T23:55:49.113183032Z","score":0.8010015264784165,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=0.92 RRCF-fast:w=0.19,s=0.91 RRCF-mid:w=0.15,s=0.90 RRCF-slow:w=0.13,s=0.92 COPOD!:w=0.26,s=0.48"} +{"timestamp":"2026-03-21T23:56:21.219059679Z","score":0.7620998171120269,"is_anomaly":false,"confidence":0.951433663881491,"method":"SEAD","details":"MAD!:w=0.28,s=0.82 RRCF-fast:w=0.19,s=0.89 RRCF-mid:w=0.15,s=0.87 RRCF-slow:w=0.13,s=0.86 COPOD!:w=0.26,s=0.50"} +{"timestamp":"2026-03-21T23:56:49.077821695Z","score":0.6617324622988391,"is_anomaly":false,"confidence":0.8261313373622764,"method":"SEAD","details":"MAD!:w=0.28,s=0.71 RRCF-fast:w=0.19,s=0.77 RRCF-mid:w=0.15,s=0.78 RRCF-slow:w=0.13,s=0.81 COPOD!:w=0.26,s=0.39"} +{"timestamp":"2026-03-21T23:57:19.072875329Z","score":0.590984295845064,"is_anomaly":false,"confidence":0.7379059692645489,"method":"SEAD","details":"MAD!:w=0.28,s=0.64 RRCF-fast:w=0.19,s=0.53 RRCF-mid:w=0.15,s=0.51 RRCF-slow:w=0.13,s=0.75 COPOD!:w=0.26,s=0.56"} +{"timestamp":"2026-03-21T23:57:49.027280973Z","score":0.40624528599563864,"is_anomaly":false,"confidence":0.507239910822191,"method":"SEAD","details":"MAD!:w=0.28,s=0.29 RRCF-fast:w=0.19,s=0.25 RRCF-mid:w=0.15,s=0.48 RRCF-slow:w=0.13,s=0.70 COPOD!:w=0.26,s=0.45"} +{"timestamp":"2026-03-21T23:58:19.044450839Z","score":0.4228907842173013,"is_anomaly":false,"confidence":0.5280235637644132,"method":"SEAD","details":"MAD!:w=0.28,s=0.52 RRCF-fast:w=0.19,s=0.53 RRCF-mid:w=0.15,s=0.46 RRCF-slow:w=0.12,s=0.59 COPOD!:w=0.26,s=0.14"} +{"timestamp":"2026-03-21T23:58:49.0425527Z","score":0.4139173141854182,"is_anomaly":false,"confidence":0.5168192438728418,"method":"SEAD","details":"MAD!:w=0.28,s=0.11 RRCF-fast:w=0.19,s=0.31 RRCF-mid:w=0.15,s=0.32 RRCF-slow:w=0.12,s=0.51 COPOD!:w=0.26,s=0.83"} +{"timestamp":"2026-03-21T23:59:19.012550077Z","score":0.28264005807537684,"is_anomaly":false,"confidence":0.35290580049825415,"method":"SEAD","details":"MAD!:w=0.28,s=0.08 RRCF-fast:w=0.19,s=0.35 RRCF-mid:w=0.15,s=0.41 RRCF-slow:w=0.12,s=0.57 COPOD!:w=0.26,s=0.24"} +{"timestamp":"2026-03-21T23:59:49.114972156Z","score":0.5320823319649391,"is_anomaly":false,"confidence":0.6643606804064102,"method":"SEAD","details":"MAD!:w=0.28,s=0.41 RRCF-fast:w=0.19,s=0.82 RRCF-mid:w=0.15,s=0.82 RRCF-slow:w=0.12,s=0.86 COPOD!:w=0.26,s=0.14"} +{"timestamp":"2026-03-22T00:00:19.051631516Z","score":0.6019705178638248,"is_anomaly":false,"confidence":0.7517061775496501,"method":"SEAD","details":"MAD!:w=0.28,s=0.47 RRCF-fast:w=0.19,s=0.64 RRCF-mid:w=0.15,s=0.74 RRCF-slow:w=0.12,s=0.80 COPOD!:w=0.26,s=0.55"} +{"timestamp":"2026-03-22T00:00:49.160200616Z","score":0.7256532379930346,"is_anomaly":false,"confidence":0.9061540483643192,"method":"SEAD","details":"MAD!:w=0.28,s=0.69 RRCF-fast:w=0.19,s=0.56 RRCF-mid:w=0.15,s=0.76 RRCF-slow:w=0.12,s=0.76 COPOD!:w=0.26,s=0.85"} +{"timestamp":"2026-03-22T00:01:19.047138385Z","score":0.3582151506639074,"is_anomaly":false,"confidence":0.4473184876254214,"method":"SEAD","details":"MAD!:w=0.28,s=0.32 RRCF-fast:w=0.19,s=0.47 RRCF-mid:w=0.15,s=0.21 RRCF-slow:w=0.12,s=0.38 COPOD!:w=0.26,s=0.39"} +{"timestamp":"2026-03-22T00:01:49.027635775Z","score":0.32136089634952364,"is_anomaly":false,"confidence":0.4012970134585169,"method":"SEAD","details":"MAD!:w=0.28,s=0.34 RRCF-fast:w=0.19,s=0.41 RRCF-mid:w=0.15,s=0.30 RRCF-slow:w=0.12,s=0.61 COPOD!:w=0.26,s=0.11"} +{"timestamp":"2026-03-22T00:02:19.068959951Z","score":0.46321745122166386,"is_anomaly":false,"confidence":0.5784393243505948,"method":"SEAD","details":"MAD!:w=0.28,s=0.52 RRCF-fast:w=0.19,s=0.59 RRCF-mid:w=0.15,s=0.52 RRCF-slow:w=0.12,s=0.73 COPOD!:w=0.26,s=0.16"} +{"timestamp":"2026-03-22T00:02:49.026853391Z","score":0.2970842752634206,"is_anomaly":false,"confidence":0.37098176462338395,"method":"SEAD","details":"MAD!:w=0.28,s=0.24 RRCF-fast:w=0.19,s=0.46 RRCF-mid:w=0.15,s=0.25 RRCF-slow:w=0.12,s=0.56 COPOD!:w=0.26,s=0.14"} +{"timestamp":"2026-03-22T00:03:25.424179569Z","score":0.8019310731001967,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=0.92 RRCF-fast:w=0.19,s=0.87 RRCF-mid:w=0.15,s=0.82 RRCF-slow:w=0.12,s=0.89 COPOD!:w=0.26,s=0.58"} +{"timestamp":"2026-03-22T00:03:50.487061734Z","score":0.6219913168433149,"is_anomaly":false,"confidence":0.7767070003902247,"method":"SEAD","details":"MAD!:w=0.28,s=0.63 RRCF-fast:w=0.19,s=0.70 RRCF-mid:w=0.15,s=0.84 RRCF-slow:w=0.12,s=0.84 COPOD!:w=0.27,s=0.34"} +{"timestamp":"2026-03-22T00:04:19.07420133Z","score":0.6103118994010911,"is_anomaly":false,"confidence":0.7621224152968284,"method":"SEAD","details":"MAD!:w=0.28,s=0.72 RRCF-fast:w=0.18,s=0.71 RRCF-mid:w=0.14,s=0.59 RRCF-slow:w=0.12,s=0.53 COPOD!:w=0.27,s=0.47"} +{"timestamp":"2026-03-22T00:04:49.211233087Z","score":0.7424773610352837,"is_anomaly":false,"confidence":0.927163046060075,"method":"SEAD","details":"MAD!:w=0.28,s=0.70 RRCF-fast:w=0.18,s=0.75 RRCF-mid:w=0.14,s=0.57 RRCF-slow:w=0.12,s=0.62 COPOD!:w=0.27,s=0.93"} +{"timestamp":"2026-03-22T00:05:19.069981231Z","score":0.3167892341212777,"is_anomaly":false,"confidence":0.39558818447659616,"method":"SEAD","details":"MAD!:w=0.28,s=0.31 RRCF-fast:w=0.18,s=0.34 RRCF-mid:w=0.15,s=0.21 RRCF-slow:w=0.12,s=0.34 COPOD!:w=0.27,s=0.36"} +{"timestamp":"2026-03-22T00:05:49.023521219Z","score":0.31278199140654117,"is_anomaly":false,"confidence":0.3905841701366618,"method":"SEAD","details":"MAD!:w=0.28,s=0.34 RRCF-fast:w=0.18,s=0.46 RRCF-mid:w=0.15,s=0.39 RRCF-slow:w=0.12,s=0.36 COPOD!:w=0.27,s=0.12"} +{"timestamp":"2026-03-22T00:06:19.070851058Z","score":0.3438176106426848,"is_anomaly":false,"confidence":0.4293396673106371,"method":"SEAD","details":"MAD!:w=0.28,s=0.04 RRCF-fast:w=0.18,s=0.47 RRCF-mid:w=0.15,s=0.44 RRCF-slow:w=0.12,s=0.29 COPOD!:w=0.27,s=0.55"} +{"timestamp":"2026-03-22T00:06:49.090480349Z","score":0.5645710056166956,"is_anomaly":false,"confidence":0.7050038166212856,"method":"SEAD","details":"MAD!:w=0.28,s=0.45 RRCF-fast:w=0.18,s=0.89 RRCF-mid:w=0.15,s=0.75 RRCF-slow:w=0.12,s=0.82 COPOD!:w=0.27,s=0.24"} +{"timestamp":"2026-03-22T00:07:25.27105335Z","score":0.5955250443159275,"is_anomaly":false,"confidence":0.7436631527247618,"method":"SEAD","details":"MAD!:w=0.28,s=0.43 RRCF-fast:w=0.18,s=0.84 RRCF-mid:w=0.14,s=0.76 RRCF-slow:w=0.12,s=0.78 COPOD!:w=0.27,s=0.43"} +{"timestamp":"2026-03-22T00:07:50.828535993Z","score":0.6870419353744618,"is_anomaly":false,"confidence":0.8579450630856188,"method":"SEAD","details":"MAD!:w=0.28,s=0.69 RRCF-fast:w=0.18,s=0.76 RRCF-mid:w=0.14,s=0.68 RRCF-slow:w=0.12,s=0.69 COPOD!:w=0.27,s=0.64"} +{"timestamp":"2026-03-22T00:08:22.014580798Z","score":0.9381472538879034,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=0.84 RRCF-fast!:w=0.18,s=0.99 RRCF-mid!:w=0.14,s=1.00 RRCF-slow!:w=0.12,s=1.00 COPOD!:w=0.27,s=0.95"} +{"timestamp":"2026-03-22T00:08:49.104909826Z","score":0.6502991256280048,"is_anomaly":false,"confidence":0.812056164684612,"method":"SEAD","details":"MAD!:w=0.29,s=0.29 RRCF-fast!:w=0.18,s=1.00 RRCF-mid!:w=0.14,s=0.99 RRCF-slow!:w=0.12,s=1.00 COPOD!:w=0.27,s=0.46"} +{"timestamp":"2026-03-22T00:09:19.029030759Z","score":0.575914990920638,"is_anomaly":false,"confidence":0.7191695333432049,"method":"SEAD","details":"MAD!:w=0.29,s=0.32 RRCF-fast!:w=0.18,s=0.94 RRCF-mid!:w=0.14,s=0.94 RRCF-slow!:w=0.12,s=0.97 COPOD!:w=0.27,s=0.24"} +{"timestamp":"2026-03-22T00:09:49.097197509Z","score":0.6541253666064342,"is_anomaly":false,"confidence":0.8168341544613963,"method":"SEAD","details":"MAD!:w=0.29,s=0.51 RRCF-fast!:w=0.18,s=0.92 RRCF-mid:w=0.14,s=0.91 RRCF-slow!:w=0.12,s=0.94 COPOD!:w=0.27,s=0.37"} +{"timestamp":"2026-03-22T00:10:19.029118793Z","score":0.6850696557503271,"is_anomaly":false,"confidence":0.8554821747531497,"method":"SEAD","details":"MAD!:w=0.29,s=0.15 RRCF-fast!:w=0.18,s=0.90 RRCF-mid:w=0.14,s=0.91 RRCF-slow!:w=0.12,s=0.96 COPOD!:w=0.27,s=0.88"} +{"timestamp":"2026-03-22T00:10:49.021761637Z","score":0.4900939783145033,"is_anomaly":false,"confidence":0.6120058871133471,"method":"SEAD","details":"MAD!:w=0.29,s=0.31 RRCF-fast:w=0.18,s=0.84 RRCF-mid:w=0.14,s=0.89 RRCF-slow:w=0.12,s=0.91 COPOD!:w=0.27,s=0.07"} +{"timestamp":"2026-03-22T00:11:19.100471557Z","score":0.7668187315634509,"is_anomaly":false,"confidence":0.9575665052641467,"method":"SEAD","details":"MAD!:w=0.29,s=0.58 RRCF-fast!:w=0.17,s=0.92 RRCF-mid!:w=0.14,s=0.96 RRCF-slow!:w=0.12,s=0.98 COPOD!:w=0.28,s=0.69"} +{"timestamp":"2026-03-22T00:11:50.916403719Z","score":0.7762666528793545,"is_anomaly":false,"confidence":0.9693646168961286,"method":"SEAD","details":"MAD!:w=0.30,s=0.63 RRCF-fast:w=0.17,s=0.79 RRCF-mid:w=0.14,s=0.90 RRCF-slow:w=0.12,s=0.92 COPOD!:w=0.28,s=0.81"} +{"timestamp":"2026-03-22T00:12:19.074404217Z","score":0.7877172548964736,"is_anomaly":false,"confidence":0.9836635802695815,"method":"SEAD","details":"MAD!:w=0.30,s=0.79 RRCF-fast:w=0.17,s=0.85 RRCF-mid:w=0.14,s=0.88 RRCF-slow:w=0.12,s=0.90 COPOD!:w=0.28,s=0.66"} +{"timestamp":"2026-03-22T00:12:49.11511612Z","score":0.661424759297795,"is_anomaly":false,"confidence":0.8259555605333583,"method":"SEAD","details":"MAD!:w=0.30,s=0.81 RRCF-fast:w=0.17,s=0.81 RRCF-mid:w=0.14,s=0.83 RRCF-slow:w=0.12,s=0.90 COPOD!:w=0.28,s=0.23"} +{"timestamp":"2026-03-22T00:13:19.031976729Z","score":0.38897575366184944,"is_anomaly":false,"confidence":0.485734291215139,"method":"SEAD","details":"MAD!:w=0.30,s=0.12 RRCF-fast:w=0.17,s=0.62 RRCF-mid:w=0.14,s=0.74 RRCF-slow:w=0.12,s=0.86 COPOD!:w=0.28,s=0.17"} +{"timestamp":"2026-03-22T00:13:49.073861886Z","score":0.5357455524333936,"is_anomaly":false,"confidence":0.6701901538579208,"method":"SEAD","details":"MAD!:w=0.30,s=0.50 RRCF-fast:w=0.17,s=0.54 RRCF-mid:w=0.14,s=0.76 RRCF-slow:w=0.11,s=0.83 COPOD!:w=0.28,s=0.34"} +{"timestamp":"2026-03-22T00:14:19.098926991Z","score":0.494897036611214,"is_anomaly":false,"confidence":0.6190907597903651,"method":"SEAD","details":"MAD!:w=0.30,s=0.45 RRCF-fast:w=0.17,s=0.68 RRCF-mid:w=0.14,s=0.82 RRCF-slow:w=0.11,s=0.86 COPOD!:w=0.28,s=0.13"} +{"timestamp":"2026-03-22T00:14:53.488284846Z","score":0.7360886220652246,"is_anomaly":false,"confidence":0.9208090382351602,"method":"SEAD","details":"MAD!:w=0.30,s=0.92 RRCF-fast:w=0.17,s=0.62 RRCF-mid:w=0.14,s=0.76 RRCF-slow:w=0.11,s=0.87 COPOD!:w=0.28,s=0.55"} +{"timestamp":"2026-03-22T00:15:19.060122355Z","score":0.7993822624267217,"is_anomaly":false,"confidence":0.9999861296350433,"method":"SEAD","details":"MAD!:w=0.30,s=0.83 RRCF-fast:w=0.17,s=0.80 RRCF-mid:w=0.14,s=0.81 RRCF-slow:w=0.11,s=0.84 COPOD!:w=0.29,s=0.75"} +{"timestamp":"2026-03-22T00:15:49.125217397Z","score":0.8810064036652316,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=0.86 RRCF-fast!:w=0.17,s=0.97 RRCF-mid!:w=0.14,s=0.98 RRCF-slow!:w=0.11,s=0.98 COPOD!:w=0.29,s=0.76"} +{"timestamp":"2026-03-22T00:16:19.095976339Z","score":0.6527134019198424,"is_anomaly":false,"confidence":0.8150772346694277,"method":"SEAD","details":"MAD!:w=0.29,s=0.45 RRCF-fast!:w=0.17,s=0.89 RRCF-mid!:w=0.14,s=0.96 RRCF-slow!:w=0.11,s=0.98 COPOD!:w=0.29,s=0.45"} +{"timestamp":"2026-03-22T00:16:49.070581798Z","score":0.6530930248357613,"is_anomaly":false,"confidence":0.8155512895848228,"method":"SEAD","details":"MAD!:w=0.30,s=0.83 RRCF-fast:w=0.17,s=0.64 RRCF-mid:w=0.13,s=0.88 RRCF-slow:w=0.11,s=0.91 COPOD!:w=0.29,s=0.27"} +{"timestamp":"2026-03-22T00:17:19.089218042Z","score":0.7983229503131226,"is_anomaly":false,"confidence":0.9986609846195188,"method":"SEAD","details":"MAD!:w=0.29,s=0.61 RRCF-fast:w=0.17,s=0.63 RRCF-mid:w=0.13,s=0.91 RRCF-slow:w=0.11,s=0.94 COPOD!:w=0.29,s=0.99"} +{"timestamp":"2026-03-22T00:17:49.058092726Z","score":0.6292017090348279,"is_anomaly":false,"confidence":0.7870990030069243,"method":"SEAD","details":"MAD!:w=0.30,s=0.25 RRCF-fast:w=0.17,s=0.57 RRCF-mid:w=0.13,s=0.86 RRCF-slow:w=0.11,s=0.90 COPOD!:w=0.29,s=0.84"} +{"timestamp":"2026-03-22T00:18:19.074839604Z","score":0.5885400838117167,"is_anomaly":false,"confidence":0.7362333994744005,"method":"SEAD","details":"MAD!:w=0.30,s=0.92 RRCF-fast:w=0.17,s=0.60 RRCF-mid:w=0.13,s=0.83 RRCF-slow:w=0.11,s=0.89 COPOD!:w=0.29,s=0.01"} +{"timestamp":"2026-03-22T00:18:51.303711544Z","score":0.6171516817415379,"is_anomaly":false,"confidence":0.7720250381200461,"method":"SEAD","details":"MAD!:w=0.30,s=0.56 RRCF-fast:w=0.17,s=0.43 RRCF-mid:w=0.13,s=0.85 RRCF-slow:w=0.11,s=0.90 COPOD!:w=0.29,s=0.57"} +{"timestamp":"2026-03-22T00:19:19.251409243Z","score":0.6137443506795001,"is_anomaly":false,"confidence":0.7677626420659119,"method":"SEAD","details":"MAD!:w=0.30,s=0.58 RRCF-fast:w=0.17,s=0.43 RRCF-mid:w=0.13,s=0.74 RRCF-slow:w=0.11,s=0.86 COPOD!:w=0.29,s=0.61"} +{"timestamp":"2026-03-22T00:19:49.076896822Z","score":0.3251118346524627,"is_anomaly":false,"confidence":0.40669819748779634,"method":"SEAD","details":"MAD!:w=0.30,s=0.12 RRCF-fast:w=0.17,s=0.20 RRCF-mid:w=0.13,s=0.63 RRCF-slow:w=0.11,s=0.83 COPOD!:w=0.29,s=0.28"} +{"timestamp":"2026-03-22T00:20:23.542967883Z","score":0.7762157778886616,"is_anomaly":false,"confidence":0.9710195164104185,"method":"SEAD","details":"MAD!:w=0.30,s=0.76 RRCF-fast:w=0.17,s=0.84 RRCF-mid:w=0.13,s=0.85 RRCF-slow:w=0.11,s=0.92 COPOD!:w=0.29,s=0.67"} +{"timestamp":"2026-03-22T00:20:49.084017694Z","score":0.5346179760590739,"is_anomaly":false,"confidence":0.6687888901063546,"method":"SEAD","details":"MAD!:w=0.30,s=0.77 RRCF-fast:w=0.17,s=0.16 RRCF-mid:w=0.13,s=0.72 RRCF-slow:w=0.11,s=0.81 COPOD!:w=0.29,s=0.33"} +{"timestamp":"2026-03-22T00:21:19.026890354Z","score":0.33704594638796337,"is_anomaly":false,"confidence":0.421633006172513,"method":"SEAD","details":"MAD!:w=0.30,s=0.16 RRCF-fast:w=0.17,s=0.16 RRCF-mid:w=0.13,s=0.59 RRCF-slow:w=0.11,s=0.77 COPOD!:w=0.29,s=0.34"} +{"timestamp":"2026-03-22T00:21:49.075340369Z","score":0.3569274357772294,"is_anomaly":false,"confidence":0.4465040726494084,"method":"SEAD","details":"MAD!:w=0.30,s=0.50 RRCF-fast:w=0.17,s=0.16 RRCF-mid:w=0.13,s=0.61 RRCF-slow:w=0.11,s=0.74 COPOD!:w=0.29,s=0.08"} +{"timestamp":"2026-03-22T00:22:19.027097643Z","score":0.49734649533593694,"is_anomaly":false,"confidence":0.6221635364113774,"method":"SEAD","details":"MAD!:w=0.29,s=0.21 RRCF-fast:w=0.17,s=0.11 RRCF-mid:w=0.13,s=0.58 RRCF-slow:w=0.11,s=0.71 COPOD!:w=0.30,s=0.90"} +{"timestamp":"2026-03-22T00:22:49.031605236Z","score":0.5276928269971426,"is_anomaly":false,"confidence":0.660125764356093,"method":"SEAD","details":"MAD!:w=0.30,s=0.92 RRCF-fast:w=0.17,s=0.43 RRCF-mid:w=0.13,s=0.70 RRCF-slow:w=0.11,s=0.80 COPOD!:w=0.29,s=0.01"} +{"timestamp":"2026-03-22T00:23:19.519995301Z","score":0.7572577654304905,"is_anomaly":false,"confidence":0.9473036881399496,"method":"SEAD","details":"MAD!:w=0.29,s=0.80 RRCF-fast:w=0.17,s=0.76 RRCF-mid:w=0.13,s=0.74 RRCF-slow:w=0.11,s=0.78 COPOD!:w=0.30,s=0.72"} +{"timestamp":"2026-03-22T00:23:49.076428464Z","score":0.6143613805414041,"is_anomaly":false,"confidence":0.7691223058810378,"method":"SEAD","details":"MAD!:w=0.29,s=0.73 RRCF-fast:w=0.17,s=0.39 RRCF-mid:w=0.13,s=0.67 RRCF-slow:w=0.11,s=0.72 COPOD!:w=0.30,s=0.57"} +{"timestamp":"2026-03-22T00:24:19.027604147Z","score":0.29808534031454614,"is_anomaly":false,"confidence":0.3731746355703858,"method":"SEAD","details":"MAD!:w=0.29,s=0.07 RRCF-fast:w=0.17,s=0.00 RRCF-mid:w=0.13,s=0.48 RRCF-slow:w=0.11,s=0.69 COPOD!:w=0.30,s=0.47"} +{"timestamp":"2026-03-22T00:24:49.02983149Z","score":0.27720534685603326,"is_anomaly":false,"confidence":0.34703485982237214,"method":"SEAD","details":"MAD!:w=0.29,s=0.34 RRCF-fast:w=0.18,s=0.02 RRCF-mid:w=0.13,s=0.46 RRCF-slow:w=0.11,s=0.57 COPOD!:w=0.30,s=0.18"} +{"timestamp":"2026-03-22T00:25:19.030233843Z","score":0.22511833498693595,"is_anomaly":false,"confidence":0.2818268504258355,"method":"SEAD","details":"MAD!:w=0.29,s=0.10 RRCF-fast:w=0.18,s=0.06 RRCF-mid:w=0.13,s=0.44 RRCF-slow:w=0.11,s=0.60 COPOD!:w=0.30,s=0.22"} +{"timestamp":"2026-03-22T00:25:49.072259418Z","score":0.5895684828638069,"is_anomaly":false,"confidence":0.7380839443641373,"method":"SEAD","details":"MAD!:w=0.29,s=0.58 RRCF-fast:w=0.18,s=0.20 RRCF-mid:w=0.13,s=0.45 RRCF-slow:w=0.11,s=0.65 COPOD!:w=0.30,s=0.87"} +{"timestamp":"2026-03-22T00:26:19.036338494Z","score":0.45105391085279084,"is_anomaly":false,"confidence":0.5646768090892045,"method":"SEAD","details":"MAD!:w=0.29,s=0.27 RRCF-fast:w=0.18,s=0.01 RRCF-mid:w=0.13,s=0.40 RRCF-slow:w=0.11,s=0.62 COPOD!:w=0.29,s=0.87"} +{"timestamp":"2026-03-22T00:26:49.065894455Z","score":0.4609719085099129,"is_anomaly":false,"confidence":0.5770932035263778,"method":"SEAD","details":"MAD!:w=0.30,s=0.92 RRCF-fast:w=0.18,s=0.19 RRCF-mid:w=0.13,s=0.55 RRCF-slow:w=0.11,s=0.62 COPOD!:w=0.29,s=0.07"} +{"timestamp":"2026-03-22T00:27:19.253023493Z","score":0.5214258890869862,"is_anomaly":false,"confidence":0.6531515709055711,"method":"SEAD","details":"MAD!:w=0.29,s=0.58 RRCF-fast:w=0.18,s=0.26 RRCF-mid:w=0.13,s=0.63 RRCF-slow:w=0.11,s=0.67 COPOD!:w=0.29,s=0.53"} +{"timestamp":"2026-03-22T00:27:49.68767066Z","score":0.5735280795203943,"is_anomaly":false,"confidence":0.7184161238198676,"method":"SEAD","details":"MAD!:w=0.29,s=0.73 RRCF-fast:w=0.18,s=0.04 RRCF-mid:w=0.13,s=0.36 RRCF-slow:w=0.11,s=0.64 COPOD!:w=0.29,s=0.82"} +{"timestamp":"2026-03-22T00:28:19.068042345Z","score":0.5958289610348544,"is_anomaly":false,"confidence":0.7463507854824355,"method":"SEAD","details":"MAD!:w=0.29,s=0.69 RRCF-fast:w=0.18,s=0.22 RRCF-mid:w=0.13,s=0.41 RRCF-slow:w=0.11,s=0.60 COPOD!:w=0.29,s=0.82"} +{"timestamp":"2026-03-22T00:28:49.029779558Z","score":0.27569411720588544,"is_anomaly":false,"confidence":0.34534159026463057,"method":"SEAD","details":"MAD!:w=0.29,s=0.28 RRCF-fast:w=0.18,s=0.02 RRCF-mid:w=0.13,s=0.25 RRCF-slow:w=0.11,s=0.38 COPOD!:w=0.29,s=0.41"} +{"timestamp":"2026-03-22T00:29:19.026627251Z","score":0.297935269173719,"is_anomaly":false,"confidence":0.3732014331504076,"method":"SEAD","details":"MAD!:w=0.29,s=0.33 RRCF-fast:w=0.19,s=0.01 RRCF-mid:w=0.13,s=0.26 RRCF-slow:w=0.11,s=0.46 COPOD!:w=0.29,s=0.40"} +{"timestamp":"2026-03-22T00:29:49.071124174Z","score":0.35228096146261023,"is_anomaly":false,"confidence":0.4412762545839834,"method":"SEAD","details":"MAD!:w=0.29,s=0.03 RRCF-fast:w=0.19,s=0.04 RRCF-mid:w=0.13,s=0.23 RRCF-slow:w=0.11,s=0.49 COPOD!:w=0.29,s=0.89"} +{"timestamp":"2026-03-22T00:30:19.028522163Z","score":0.2441829938005261,"is_anomaly":false,"confidence":0.30603796851441534,"method":"SEAD","details":"MAD!:w=0.29,s=0.17 RRCF-fast:w=0.19,s=0.03 RRCF-mid:w=0.13,s=0.20 RRCF-slow:w=0.11,s=0.49 COPOD!:w=0.28,s=0.38"} +{"timestamp":"2026-03-22T00:30:50.505762457Z","score":0.7022254507434499,"is_anomaly":false,"confidence":0.8801089995653171,"method":"SEAD","details":"MAD!:w=0.29,s=0.92 RRCF-fast:w=0.19,s=0.44 RRCF-mid:w=0.13,s=0.59 RRCF-slow:w=0.10,s=0.73 COPOD!:w=0.28,s=0.70"} +{"timestamp":"2026-03-22T00:31:19.071333652Z","score":0.43360990419543444,"is_anomaly":false,"confidence":0.5434493702542814,"method":"SEAD","details":"MAD!:w=0.29,s=0.43 RRCF-fast:w=0.19,s=0.49 RRCF-mid:w=0.13,s=0.35 RRCF-slow:w=0.10,s=0.53 COPOD!:w=0.28,s=0.40"} +{"timestamp":"2026-03-22T00:31:52.248065951Z","score":0.5011826071366394,"is_anomaly":false,"confidence":0.6281391859260798,"method":"SEAD","details":"MAD!:w=0.29,s=0.47 RRCF-fast:w=0.19,s=0.14 RRCF-mid:w=0.13,s=0.27 RRCF-slow:w=0.10,s=0.45 COPOD!:w=0.28,s=0.89"} +{"timestamp":"2026-03-22T00:32:19.071474001Z","score":0.2578783614652238,"is_anomaly":false,"confidence":0.3232025647581079,"method":"SEAD","details":"MAD!:w=0.29,s=0.28 RRCF-fast:w=0.19,s=0.07 RRCF-mid:w=0.13,s=0.12 RRCF-slow:w=0.10,s=0.37 COPOD!:w=0.28,s=0.38"} +{"timestamp":"2026-03-22T00:32:49.031033184Z","score":0.261715686856405,"is_anomaly":false,"confidence":0.3280119384534981,"method":"SEAD","details":"MAD!:w=0.29,s=0.33 RRCF-fast:w=0.19,s=0.02 RRCF-mid:w=0.13,s=0.12 RRCF-slow:w=0.10,s=0.38 COPOD!:w=0.28,s=0.37"} +{"timestamp":"2026-03-22T00:33:19.060669327Z","score":0.2766362839094044,"is_anomaly":false,"confidence":0.34671213186193955,"method":"SEAD","details":"MAD!:w=0.29,s=0.49 RRCF-fast:w=0.19,s=0.24 RRCF-mid:w=0.13,s=0.16 RRCF-slow:w=0.10,s=0.40 COPOD!:w=0.28,s=0.08"} +{"timestamp":"2026-03-22T00:33:49.040880004Z","score":0.2637530962924953,"is_anomaly":false,"confidence":0.33137591179379355,"method":"SEAD","details":"MAD!:w=0.29,s=0.19 RRCF-fast:w=0.19,s=0.03 RRCF-mid:w=0.13,s=0.15 RRCF-slow:w=0.10,s=0.24 COPOD!:w=0.28,s=0.56"} +{"timestamp":"2026-03-22T00:34:19.027013437Z","score":0.29573959019304313,"is_anomaly":false,"confidence":0.37156332089107297,"method":"SEAD","details":"MAD!:w=0.29,s=0.10 RRCF-fast:w=0.19,s=0.05 RRCF-mid:w=0.13,s=0.10 RRCF-slow:w=0.10,s=0.40 COPOD!:w=0.28,s=0.73"} +{"timestamp":"2026-03-22T00:34:49.614075281Z","score":0.5825544815017237,"is_anomaly":false,"confidence":0.7319137678031767,"method":"SEAD","details":"MAD!:w=0.29,s=0.40 RRCF-fast:w=0.19,s=0.88 RRCF-mid:w=0.13,s=0.60 RRCF-slow:w=0.10,s=0.76 COPOD!:w=0.28,s=0.49"} +{"timestamp":"2026-03-22T00:35:19.072627259Z","score":0.5538400505218397,"is_anomaly":false,"confidence":0.6958373354073014,"method":"SEAD","details":"MAD!:w=0.29,s=0.73 RRCF-fast:w=0.19,s=0.25 RRCF-mid:w=0.13,s=0.30 RRCF-slow:w=0.10,s=0.40 COPOD!:w=0.28,s=0.76"} +{"timestamp":"2026-03-22T00:35:50.965895875Z","score":0.7622716270642517,"is_anomaly":false,"confidence":0.9577080193698649,"method":"SEAD","details":"MAD!:w=0.29,s=0.77 RRCF-fast:w=0.19,s=0.85 RRCF-mid:w=0.13,s=0.52 RRCF-slow:w=0.10,s=0.86 COPOD!:w=0.27,s=0.77"} +{"timestamp":"2026-03-22T00:36:19.083902933Z","score":0.22486127287511215,"is_anomaly":false,"confidence":0.2825127377593689,"method":"SEAD","details":"MAD!:w=0.29,s=0.29 RRCF-fast:w=0.19,s=0.02 RRCF-mid:w=0.13,s=0.07 RRCF-slow:w=0.10,s=0.24 COPOD!:w=0.27,s=0.37"} diff --git a/evaluation/data/pipeline_full_cycle_run2/baseline_metrics.csv b/evaluation/data/pipeline_full_cycle_run2/baseline_metrics.csv new file mode 100644 index 0000000..d05bf16 --- /dev/null +++ b/evaluation/data/pipeline_full_cycle_run2/baseline_metrics.csv @@ -0,0 +1,4688 @@ +timestamp,cpu_percent,cpu_count,cpu_freq_current,memory_percent,memory_available_mb,memory_used_mb,swap_percent,disk_io_read_mb_s,disk_io_write_mb_s,disk_io_read_count,disk_io_write_count,network_sent_mb_s,network_recv_mb_s,network_packets_sent,network_packets_recv,network_errin,network_errout,network_dropin,network_dropout,tixstream_active,transfer_job_manager_active +1774116364.316836,0.85,4,3992.50,48.12,1781.22,1884.07,0.00,82280.225337,111519.012985,6896033,1957320,0.000000,0.000020,54567976,36293084,0,0,48639,0,1,1 +1774116369.314541,0.70,4,3992.50,48.17,1779.25,1886.04,0.00,3520052831323.910645,3520052801991.639648,70,0,0.000000,0.000030,54567976,36293087,0,0,48642,0,1,1 +1774116374.317483,0.50,4,3992.50,48.14,1780.56,1884.72,0.00,3516368104749.860840,0.000000,21,0,0.000000,0.000020,54567976,36293089,0,0,48644,0,1,1 +1774116379.317292,0.70,4,3992.50,48.59,1762.84,1902.45,0.00,2.006913,0.000195,238,2,0.000000,0.000030,54567976,36293092,0,0,48647,0,1,1 +1774116384.317066,0.50,4,3992.50,48.61,1762.15,1903.13,0.00,3518595910927.615234,3518595910929.447266,199,0,0.000000,0.000020,54567976,36293094,0,0,48649,0,1,1 +1774116389.317704,0.55,4,3992.50,48.66,1760.19,1905.09,0.00,82506.332483,111817.528917,6896807,1957762,0.000062,0.000080,54567980,36293101,0,0,48652,0,1,1 +1774116394.317097,34.37,4,3992.50,55.08,1514.51,2156.55,0.00,3518864641676.756836,3518864612358.433594,21,0,76.124479,0.036692,54576141,36295592,0,0,48654,0,1,1 +1774116399.317978,28.99,4,3992.50,55.02,1523.20,2154.20,0.00,0.000000,0.000000,21,0,119.659295,0.093311,54588835,36302785,0,0,48657,0,1,1 +1774116404.316524,28.21,4,3992.50,54.93,1526.47,2150.78,0.00,0.048061,0.000000,70,0,118.743427,0.102880,54601509,36310753,0,0,48659,0,1,1 +1774116409.313553,29.41,4,3992.50,55.53,1502.89,2174.28,0.00,0.127029,0.000000,199,0,119.667405,0.099785,54614270,36318448,0,0,48662,0,1,1 +1774116414.317337,28.99,4,3992.50,55.23,1514.81,2162.46,0.00,1.362348,0.028299,237,378,118.708910,0.110567,54627058,36327028,0,0,48664,0,1,1 +1774116419.312799,28.64,4,3992.50,55.19,1516.50,2160.77,0.00,82590.586713,111933.670315,6896841,1958003,120.311968,0.113866,54639981,36335824,0,0,48667,0,1,1 +1774116424.314298,28.45,4,3992.50,55.30,1511.86,2165.27,0.00,3517382219822.770020,3517382190516.617676,21,0,118.760683,0.109261,54652713,36344306,0,0,48669,0,1,1 +1774116429.316504,29.10,4,3992.50,55.27,1513.35,2163.88,0.00,82480.772422,111782.795438,6896841,1958026,119.542428,0.111196,54665488,36353037,0,0,48672,0,1,1 +1774116434.317726,16.54,4,3992.50,48.94,1761.23,1916.14,0.00,3517577806027.551270,3517577776719.759277,21,0,114.162631,0.111445,54677751,36361644,0,0,48674,0,1,1 +1774116439.312976,0.90,4,3992.50,49.41,1742.85,1934.50,0.00,82591.648802,111938.692293,6896086,1957713,0.003120,0.001456,54677809,36361685,0,0,48677,0,1,1 +1774116444.317562,18.45,4,3992.50,50.30,1708.00,1969.32,0.00,3515212480649.976562,3515212451357.686035,21,0,25.738233,0.117140,54686170,36367893,0,0,48679,0,1,1 +1774116449.316931,9.30,4,3992.50,50.04,1718.28,1959.03,0.00,2.007089,0.000195,238,2,14.500892,0.066976,54691078,36371433,0,0,48682,0,1,1 +1774116454.316917,2.51,4,3992.50,49.63,1734.13,1943.18,0.00,3518447133716.867676,3518447133718.874512,21,0,0.002301,0.002191,54691125,36371478,0,0,48684,0,1,1 +1774116459.317334,0.50,4,3992.50,49.45,1741.11,1936.20,0.00,82506.332534,111823.918786,6896091,1958951,0.001990,0.002504,54691168,36371525,0,0,48687,0,1,1 +1774116464.315574,0.60,4,3992.50,49.45,1741.12,1936.19,0.00,3519676299508.740234,3519676270178.335449,70,0,0.001590,0.000786,54691198,36371545,0,0,48689,0,1,1 +1774116469.315877,0.70,4,3992.50,49.85,1725.80,1951.63,0.00,3518223754026.126953,0.000000,21,0,0.001589,0.000796,54691228,36371566,0,0,48692,0,1,1 +1774116474.312820,0.60,4,3992.50,49.87,1724.60,1952.71,0.00,0.048076,0.000000,70,0,0.001590,0.000787,54691258,36371586,0,0,48694,0,1,1 +1774116479.317281,1.30,4,3992.50,49.38,1744.05,1933.27,0.00,3515300654454.869629,0.000000,21,0,0.001644,0.000839,54691292,36371610,0,0,48697,0,1,1 +1774116484.313485,0.60,4,3992.50,49.53,1738.30,1939.02,0.00,82575.911506,111918.808054,6896091,1959397,0.001699,0.000919,54691331,36371639,0,0,48699,0,1,1 +1774116489.312914,0.50,4,3992.50,49.54,1737.80,1939.52,0.00,3518839318443.801270,3518839289119.833496,21,0,0.001589,0.000796,54691361,36371660,0,0,48702,0,1,1 +1774116494.314418,0.65,4,3992.50,49.61,1735.12,1942.21,0.00,0.000000,0.000000,21,0,0.003886,0.001908,54691443,36371715,0,0,48704,0,1,1 +1774116499.313045,0.75,4,3992.50,49.78,1728.74,1948.84,0.00,0.000000,0.000000,21,0,0.001664,0.000836,54691478,36371739,0,0,48707,0,1,1 +1774116504.315930,0.35,4,3992.50,49.79,1727.79,1949.54,0.00,2.005679,0.000195,238,2,0.001650,0.000836,54691512,36371763,0,0,48709,0,1,1 +1774116509.314240,0.60,4,3992.50,49.80,1727.55,1949.79,0.00,3519626833599.919922,3519626833601.927734,21,0,0.001590,0.000796,54691542,36371784,0,0,48712,0,1,1 +1774116514.317121,0.55,4,3992.50,49.90,1723.75,1953.58,0.00,2.005680,0.000195,238,2,0.001596,0.000794,54691573,36371805,0,0,48714,0,1,1 +1774116519.316880,0.45,4,3992.50,49.89,1724.00,1953.33,0.00,3518606272988.100098,0.028126,237,378,0.001589,0.000796,54691603,36371826,0,0,48717,0,1,1 +1774116524.317182,0.55,4,3992.50,49.90,1723.55,1953.79,0.00,82506.693001,111827.334470,6896091,1959712,0.001589,0.001430,54691633,36371850,0,0,48719,0,1,1 +1774116529.317672,0.60,4,3992.50,50.10,1723.58,1961.36,0.00,3518092596043.965820,3518092566725.936035,21,0,0.001589,0.000783,54691663,36371870,0,0,48722,0,1,1 +1774116534.317711,0.60,4,3992.50,50.10,1723.38,1961.60,0.00,0.048046,0.000000,70,0,0.001589,0.000786,54691693,36371890,0,0,48724,0,1,1 +1774116539.317551,0.60,4,3992.50,50.10,1723.39,1961.58,0.00,0.126957,0.000000,199,0,0.003527,0.022561,54691761,36371960,0,0,48727,0,1,1 +1774116544.316936,27.00,4,3992.50,50.42,1704.00,1974.20,0.00,1.832061,0.000195,238,2,0.041607,107.951377,54694895,36383475,0,0,48729,0,1,1 +1774116549.317116,25.15,4,3992.50,51.45,1657.08,2014.20,0.00,3518310647507.093262,3518310647508.925293,199,0,0.053778,97.146068,54699088,36393756,0,0,48732,0,1,1 +1774116554.317399,13.59,4,3992.50,50.30,1706.10,1969.44,0.00,0.000000,0.000000,199,0,40.062102,0.023649,54703505,36395181,0,0,48734,0,1,1 +1774116559.312851,11.31,4,3992.50,50.13,1711.25,1962.65,0.00,0.000000,0.000000,199,0,0.027074,40.100054,54705259,36399583,0,0,48737,0,1,1 +1774116564.317223,1.05,4,3992.50,50.15,1714.77,1963.51,0.00,82459.059912,111977.799058,6897063,1961662,0.001023,0.002244,54705286,36399627,0,0,48739,0,1,1 +1774116569.317274,0.55,4,3992.50,50.15,1714.88,1963.41,0.00,4.109235,0.089452,6897837,1962102,0.000000,0.000030,54705286,36399630,0,0,48742,0,1,1 +1774116574.317104,0.55,4,3992.50,50.15,1714.63,1963.66,0.00,0.000000,0.003906,6897837,1962106,0.000000,0.000020,54705286,36399632,0,0,48744,0,1,1 +1774116579.312841,0.55,4,3992.50,50.14,1715.27,1963.01,0.00,3521439893359.222656,3521439863793.653809,21,0,0.000000,0.000030,54705286,36399635,0,0,48747,0,1,1 +1774116584.312949,0.60,4,3992.50,50.17,1714.07,1964.21,0.00,0.174996,0.000000,199,0,0.000025,0.000051,54705288,36399639,0,0,48749,0,1,1 +1774116589.315728,0.70,4,3992.50,50.27,1710.15,1968.09,0.00,1.362621,0.028305,237,378,0.000000,0.000673,54705288,36399646,0,0,48752,0,1,1 +1774116594.317488,0.60,4,3992.50,50.29,1709.20,1969.07,0.00,3517199194861.189453,3517199194862.651367,70,0,0.000008,0.000028,54705289,36399649,0,0,48754,0,1,1 +1774116599.312824,0.50,4,3992.50,50.33,1707.73,1970.54,0.00,0.000000,0.000000,70,0,0.000056,0.000086,54705293,36399656,0,0,48757,0,1,1 +1774116604.312817,0.60,4,3992.50,50.31,1708.50,1969.77,0.00,82535.540135,112080.223893,6897849,1962290,0.000165,0.000208,54705306,36399671,0,0,48759,0,1,1 +1774116609.315080,0.55,4,3992.50,50.33,1707.90,1970.38,0.00,3516845214404.336914,3516845184872.938477,199,0,0.000124,0.000130,54705314,36399682,0,0,48762,0,1,1 +1774116614.317123,0.50,4,3992.50,50.33,1707.66,1970.62,0.00,82497.467676,112034.281391,6897075,1961945,0.000000,0.000020,54705314,36399684,0,0,48764,0,1,1 +1774116619.316912,0.65,4,3992.50,50.56,1707.45,1979.45,0.00,3518585866828.476562,3518585837278.519043,21,0,0.000000,0.000030,54705314,36399687,0,0,48767,0,1,1 +1774116624.313230,26.55,4,3992.50,56.64,1475.53,2217.69,0.00,82592.178921,112162.751669,6897078,1962030,30.469930,0.022180,54708670,36401253,0,0,48769,0,1,1 +1774116629.316726,32.93,4,3992.50,56.88,1472.57,2226.80,0.00,4.106406,0.099637,6897852,1962494,119.081080,0.052398,54720793,36405314,0,0,48772,0,1,1 +1774116634.313703,29.22,4,3992.50,56.89,1473.05,2227.21,0.00,3520565641324.962891,3520565611760.791504,237,378,119.234164,0.038428,54732784,36408279,0,0,48774,0,1,1 +1774116639.313063,29.39,4,3992.50,56.55,1486.15,2214.20,0.00,3518887438565.208984,3518887438566.719238,21,0,120.179688,0.025836,54745055,36410303,0,0,48777,0,1,1 +1774116644.317406,31.17,4,3992.50,56.50,1488.27,2212.14,0.00,0.174848,0.000000,199,0,119.660646,0.037807,54757295,36413243,0,0,48779,0,1,1 +1774116649.313760,30.28,4,3992.50,56.83,1475.37,2225.01,0.00,1.833173,0.000195,238,2,118.647399,0.046114,54769237,36416829,0,0,48782,0,1,1 +1774116654.313958,31.36,4,3992.50,56.98,1477.18,2231.06,0.00,0.000000,0.000000,238,2,120.158059,0.036890,54781346,36419673,0,0,48784,0,1,1 +1774116659.317464,29.65,4,3992.50,56.69,1488.71,2219.72,0.00,0.000000,0.000000,238,2,119.082115,0.029982,54793608,36421958,0,0,48787,0,1,1 +1774116664.317451,27.82,4,3992.50,56.88,1481.56,2226.93,0.00,3518446295622.134766,0.028125,237,378,119.164852,0.032496,54805856,36424500,0,0,48789,0,1,1 +1774116669.317774,1.50,4,3992.50,50.37,1736.25,1972.24,0.00,3518209969810.637695,3518209969812.147949,21,0,39.655850,0.014380,54809959,36425510,0,0,48792,0,1,1 +1774116674.314390,9.69,4,3992.50,50.58,1728.26,1980.21,0.00,0.000000,0.000000,21,0,10.074028,0.049542,54813227,36427996,0,0,48794,0,1,1 +1774116679.313244,20.32,4,3992.50,51.03,1703.94,1997.85,0.00,0.175040,0.000000,199,0,30.190422,0.129726,54822752,36434981,0,0,48797,0,1,1 +1774116684.316447,0.95,4,3992.50,51.04,1703.25,1998.51,0.00,82482.595084,112010.032927,6897870,1964071,0.001706,0.001940,54822789,36435018,0,0,48799,0,1,1 +1774116689.312867,18.12,4,3992.50,50.92,1703.72,1993.68,0.00,3520958615792.191406,3520958586224.662109,199,0,0.031780,71.757285,54825052,36442727,0,0,48802,0,1,1 +1774116694.317388,31.40,4,3992.50,50.94,1694.62,1994.48,0.00,82456.778159,112124.933700,6897100,1964631,0.026761,120.862014,54826935,36455350,0,0,48804,0,1,1 +1774116699.317724,4.67,4,3992.50,50.80,1699.04,1989.11,0.00,0.003906,60.681849,6897105,1964982,0.005807,12.419884,54827229,36456722,0,0,48807,0,1,1 +1774116704.320373,7.52,4,3992.50,55.52,1515.34,2173.89,0.00,3516574145943.188965,3516574116203.457520,21,0,3.011184,0.008709,54827876,36457167,0,0,48809,0,1,1 +1774116709.317715,8.54,4,3992.50,51.81,1655.58,2028.45,0.00,0.000000,0.000000,21,0,37.074552,0.018015,54831664,36458310,0,0,48812,0,1,1 +1774116714.317514,0.50,4,3992.50,51.22,1678.48,2005.53,0.00,2.006917,0.000195,238,2,0.001698,0.000919,54831703,36458339,0,0,48814,0,1,1 +1774116719.317642,0.60,4,3992.50,50.81,1694.56,1989.45,0.00,82544.626926,112284.428902,6897223,1965232,0.001589,0.000796,54831733,36458360,0,0,48817,0,1,1 +1774116724.317073,0.50,4,3992.50,50.76,1696.84,1987.18,0.00,3518837685481.112793,3518837655738.995605,199,0,0.001714,0.001531,54831771,36458392,0,0,48819,0,1,1 +1774116729.317570,0.50,4,3992.50,50.78,1695.87,1988.16,0.00,3518087190166.770996,0.000000,21,0,0.001413,0.000650,54831798,36458411,0,0,48822,0,1,1 +1774116734.317673,0.85,4,3992.50,50.86,1692.70,1991.28,0.00,82551.163552,112285.093668,6897997,1965688,0.002222,0.001927,54831843,36458455,0,0,48824,0,1,1 +1774116739.313776,0.70,4,3992.50,50.92,1690.92,1993.70,0.00,3521181202008.554688,0.117963,6897223,1965416,0.001598,0.000805,54831874,36458477,0,0,48827,0,1,1 +1774116744.312899,0.60,4,3992.50,50.95,1689.58,1994.91,0.00,4.109998,0.063292,6897997,1965840,0.002290,0.001734,54831909,36458501,0,0,48829,0,1,1 +1774116749.316932,0.40,4,3992.50,50.75,1697.50,1987.02,0.00,3515601733768.369629,3515601704056.102051,237,378,0.001650,0.000846,54831943,36458526,0,0,48832,0,1,1 +1774116754.315574,0.55,4,3992.50,50.74,1698.02,1986.51,0.00,3519392854963.246582,3519392854964.709473,70,0,0.001664,0.000826,54831978,36458549,0,0,48834,0,1,1 +1774116759.317211,0.55,4,3992.50,50.77,1696.83,1987.69,0.00,82521.683354,112250.887325,6897223,1965564,0.001998,0.001860,54832022,36458592,0,0,48837,0,1,1 +1774116764.313416,0.45,4,3992.50,50.79,1695.82,1988.71,0.00,4.112398,0.066066,6897997,1965987,0.001590,0.000787,54832052,36458612,0,0,48839,0,1,1 +1774116769.312886,0.70,4,3992.50,50.89,1701.97,1992.36,0.00,3518809909755.994141,3518809880017.950684,70,0,0.001597,0.000804,54832083,36458634,0,0,48842,0,1,1 +1774116774.315652,0.55,4,3992.50,50.89,1701.72,1992.34,0.00,1.957706,0.000195,238,2,0.001588,0.000786,54832113,36458654,0,0,48844,0,1,1 +1774116779.317749,0.55,4,3992.50,50.89,1701.74,1992.33,0.00,0.000000,0.000000,238,2,0.001032,0.000609,54832135,36458672,0,0,48847,0,1,1 +1774116784.316865,11.56,4,3992.50,51.09,1691.87,2000.15,0.00,3519059187108.653809,3519059187110.661133,21,0,0.023100,40.071408,54833652,36463119,0,0,48849,0,1,1 +1774116789.317442,0.55,4,3992.50,51.00,1695.24,1996.78,0.00,82543.339120,112310.955858,6898005,1966373,0.000000,0.000674,54833652,36463126,0,0,48852,0,1,1 +1774116794.317621,0.65,4,3992.50,50.76,1704.83,1987.19,0.00,3518311253819.644043,3518311224049.609375,70,0,0.002174,0.001028,54833696,36463154,0,0,48854,0,1,1 +1774116799.317062,0.45,4,3992.50,50.75,1704.96,1987.05,0.00,0.000000,0.000000,70,0,0.000008,0.000038,54833697,36463158,0,0,48857,0,1,1 +1774116804.317181,0.80,4,3992.50,50.87,1697.24,1991.56,0.00,1.490297,0.028320,237,378,0.000031,0.000045,54833699,36463162,0,0,48859,0,1,1 +1774116809.314466,0.45,4,3992.50,50.67,1704.91,1983.94,0.00,0.000000,0.000000,237,378,0.000000,0.000030,54833699,36463165,0,0,48862,0,1,1 +1774116814.317596,0.50,4,3992.50,50.68,1704.70,1984.15,0.00,3516235972025.640137,3516235972026.974609,199,0,0.000000,0.000020,54833699,36463167,0,0,48864,0,1,1 +1774116819.317691,0.50,4,3992.50,50.70,1703.75,1985.10,0.00,1.363353,0.028320,237,378,0.000000,0.000030,54833699,36463170,0,0,48867,0,1,1 +1774116824.316445,0.55,4,3992.50,50.66,1705.42,1983.43,0.00,82567.782833,112355.960016,6897231,1966075,0.000050,0.000082,54833703,36463176,0,0,48869,0,1,1 +1774116829.312862,0.75,4,3992.50,51.02,1696.90,1997.60,0.00,3520960244334.498047,3520960214532.384766,237,378,0.000206,0.000218,54833717,36463193,0,0,48872,0,1,1 +1774116834.312845,0.50,4,3992.50,50.83,1704.33,1990.20,0.00,0.468459,3518449776785.774414,238,2,0.000000,0.000020,54833717,36463195,0,0,48874,0,1,1 +1774116839.312922,0.45,4,3992.50,50.87,1702.88,1991.65,0.00,82549.581354,112326.394333,6898005,1966533,0.000101,0.000154,54833725,36463206,0,0,48877,0,1,1 +1774116844.316480,7.82,4,3992.50,57.27,1457.12,2242.22,0.00,0.000000,0.012003,6898005,1966567,2.807682,0.007342,54834301,36463623,0,0,48879,0,1,1 +1774116849.312799,39.57,4,3992.50,56.95,1475.10,2229.69,0.00,0.000000,0.107990,6898005,1966658,115.244580,0.057526,54846071,36468077,0,0,48882,0,1,1 +1774116854.313401,30.72,4,3992.50,56.80,1483.75,2223.81,0.00,3518013848051.023438,3518013818279.171387,70,0,119.349355,0.060238,54858139,36472701,0,0,48884,0,1,1 +1774116859.316680,30.25,4,3992.50,56.92,1478.82,2228.67,0.00,82498.707074,112254.693330,6898005,1966691,118.884617,0.052821,54870172,36476823,0,0,48887,0,1,1 +1774116864.313986,30.63,4,3992.50,57.13,1470.67,2236.89,0.00,3520334129659.788574,0.009087,6897231,1966323,119.624958,0.047479,54882198,36480593,0,0,48889,0,1,1 +1774116869.316143,30.51,4,3992.50,56.61,1482.27,2216.26,0.00,3516919612099.327148,3516919582331.089844,237,378,118.909288,0.051362,54894223,36484649,0,0,48892,0,1,1 +1774116874.313586,30.77,4,3992.50,57.05,1464.89,2233.59,0.00,0.468697,3520237935907.858887,238,2,119.424221,0.053757,54906309,36488849,0,0,48894,0,1,1 +1774116879.317621,30.55,4,3992.50,56.74,1477.11,2221.39,0.00,3515599479559.012207,3515599479560.969238,70,0,119.466362,0.055806,54918393,36493211,0,0,48897,0,1,1 +1774116884.313653,30.85,4,3992.50,56.70,1478.55,2219.96,0.00,0.127054,0.000000,199,0,118.855875,0.047189,54930410,36496926,0,0,48899,0,1,1 +1774116889.317560,7.48,4,3992.50,52.18,1655.09,2042.84,0.00,82488.376702,112241.005372,6898022,1966864,72.844442,0.033349,54937813,36499478,0,0,48902,0,1,1 +1774116894.312906,1.25,4,3992.50,51.47,1682.62,2015.32,0.00,3521715259477.136230,0.126876,6897248,1966574,0.006132,0.002752,54937915,36499547,0,0,48904,0,1,1 +1774116899.312816,18.76,4,3992.50,51.01,1700.80,1997.09,0.00,3518500455120.464844,3518500425339.814941,199,0,26.161760,0.115819,54946223,36505672,0,0,48907,0,1,1 +1774116904.312863,10.20,4,3992.50,51.23,1692.14,2005.73,0.00,1.831819,0.000195,238,2,14.088596,0.063630,54950851,36509115,0,0,48909,0,1,1 +1774116909.312892,1.05,4,3992.50,51.02,1700.24,1997.64,0.00,3518416766879.825684,3518416766881.784180,70,0,0.002293,0.002193,54950897,36509160,0,0,48912,0,1,1 +1774116914.312837,0.75,4,3992.50,50.65,1715.00,1982.88,0.00,1.958811,0.000195,238,2,0.001589,0.000786,54950927,36509180,0,0,48914,0,1,1 +1774116919.312915,1.05,4,3992.50,51.06,1699.65,1999.02,0.00,82549.795939,112328.201502,6898029,1968219,0.001589,0.001440,54950957,36509205,0,0,48917,0,1,1 +1774116924.313077,0.50,4,3992.50,51.06,1698.59,1998.94,0.00,3518322935157.486328,0.162788,6897255,1968069,0.001589,0.000786,54950987,36509225,0,0,48919,0,1,1 +1774116929.312953,0.55,4,3992.50,51.06,1698.59,1998.94,0.00,0.000000,0.069924,6897255,1968143,0.001413,0.000650,54951014,36509244,0,0,48922,0,1,1 +1774116934.316809,0.45,4,3992.50,51.05,1698.61,1998.92,0.00,0.000000,0.068209,6897255,1968181,0.001689,0.000910,54951052,36509272,0,0,48924,0,1,1 +1774116939.317618,0.55,4,3992.50,51.05,1698.62,1998.91,0.00,3517867857218.306641,3517867827441.804688,70,0,0.001614,0.000827,54951084,36509295,0,0,48927,0,1,1 +1774116944.313507,0.45,4,3992.50,51.05,1698.64,1998.90,0.00,1.491558,0.028344,237,378,0.001591,0.000787,54951114,36509315,0,0,48929,0,1,1 +1774116949.312851,0.65,4,3992.50,51.07,1699.86,1999.58,0.00,3518898763830.634766,3518898763831.970215,199,0,0.001745,0.000922,54951154,36509346,0,0,48932,0,1,1 +1774116954.317259,0.40,4,3992.50,51.12,1698.16,2001.27,0.00,82476.101476,112231.506761,6897255,1968327,0.001671,0.000834,54951190,36509370,0,0,48934,0,1,1 +1774116959.316924,0.35,4,3992.50,51.11,1698.18,2001.26,0.00,3518672391809.221680,3518672362024.261719,237,378,0.001589,0.000796,54951220,36509391,0,0,48937,0,1,1 +1774116964.316339,0.45,4,3992.50,51.01,1702.16,1997.28,0.00,3518849713076.976562,3518849713078.486816,21,0,0.001589,0.000786,54951250,36509411,0,0,48939,0,1,1 +1774116969.317230,0.65,4,3992.50,50.82,1709.76,1989.67,0.00,0.000000,0.000000,21,0,0.001589,0.000796,54951280,36509432,0,0,48942,0,1,1 +1774116974.312826,0.45,4,3992.50,50.84,1709.12,1990.32,0.00,2.008605,0.000195,238,2,0.001591,0.000787,54951310,36509452,0,0,48944,0,1,1 +1774116979.317141,0.60,4,3992.50,50.84,1712.81,1990.40,0.00,82475.804101,112233.714244,6897255,1968444,0.001588,0.000795,54951340,36509473,0,0,48947,0,1,1 +1774116984.313569,0.40,4,3992.50,50.86,1712.06,1991.24,0.00,4.112215,0.071535,6898029,1968876,0.001590,0.001431,54951370,36509497,0,0,48949,0,1,1 +1774116989.317430,0.55,4,3992.50,50.71,1717.79,1985.51,0.00,3515722058640.786133,3515722028886.221680,21,0,0.001588,0.000796,54951400,36509518,0,0,48952,0,1,1 +1774116994.317731,0.55,4,3992.50,50.74,1716.84,1986.46,0.00,0.174989,0.000000,199,0,0.001589,0.000786,54951430,36509538,0,0,48954,0,1,1 +1774116999.317655,0.45,4,3992.50,50.72,1717.58,1985.71,0.00,82550.048933,112332.366583,6897255,1968583,0.000978,0.000567,54951449,36509553,0,0,48957,0,1,1 +1774117004.316858,23.53,4,3992.50,51.11,1696.37,2001.23,0.00,3518997841340.870605,3518997811552.424316,238,2,0.038734,91.348492,54954241,36519318,0,0,48959,0,1,1 +1774117009.316766,30.37,4,3992.50,50.98,1693.31,1996.17,0.00,82552.605456,112509.835952,6898035,1970060,0.030738,113.761861,54956633,36531175,0,0,48962,0,1,1 +1774117014.317243,9.77,4,3992.50,55.90,1503.81,2188.50,0.00,3518101633825.772461,3518101603873.908203,70,0,13.625402,0.015023,54958344,36532012,0,0,48964,0,1,1 +1774117019.317174,8.70,4,3992.50,51.82,1663.05,2028.93,0.00,0.000000,0.000000,70,0,26.455562,14.438589,54962082,36534572,0,0,48967,0,1,1 +1774117024.316966,8.85,4,3992.50,51.01,1693.13,1997.16,0.00,3518583057669.475586,0.000000,21,0,0.011033,25.642351,54962804,36537376,0,0,48969,0,1,1 +1774117029.313337,0.50,4,3992.50,50.96,1695.06,1995.24,0.00,82625.812164,112653.988731,6897389,1970437,0.000000,0.000030,54962804,36537379,0,0,48972,0,1,1 +1774117034.315619,0.55,4,3992.50,50.96,1695.27,1995.03,0.00,3516832248055.616211,3516832218062.921387,21,0,0.000607,0.001129,54962817,36537403,0,0,48974,0,1,1 +1774117039.315958,0.60,4,3992.50,51.12,1687.88,2001.36,0.00,0.000000,0.000000,21,0,0.000000,0.000030,54962817,36537406,0,0,48977,0,1,1 +1774117044.317144,0.50,4,3992.50,51.11,1687.95,2001.21,0.00,0.048035,0.000000,70,0,0.000000,0.000020,54962817,36537408,0,0,48979,0,1,1 +1774117049.317189,0.40,4,3992.50,50.94,1694.61,1994.55,0.00,82569.166237,112571.335024,6898163,1970867,0.000025,0.000383,54962819,36537415,0,0,48982,0,1,1 +1774117054.317572,0.45,4,3992.50,50.94,1694.61,1994.55,0.00,3518167638190.506348,3518167608190.241211,199,0,0.000008,0.000350,54962820,36537420,0,0,48984,0,1,1 +1774117059.317770,0.40,4,3992.50,50.94,1694.61,1994.55,0.00,1.363325,0.028319,237,378,0.000432,0.001119,54962835,36537447,0,0,48987,0,1,1 +1774117064.317616,0.40,4,3992.50,50.94,1694.61,1994.55,0.00,82566.848763,112579.825148,6897389,1970585,0.000182,0.000232,54962849,36537463,0,0,48989,0,1,1 +1774117069.317121,0.55,4,3992.50,50.66,1701.88,1983.38,0.00,3518785763388.299805,3518785733374.737793,70,0,0.000118,0.000136,54962857,36537474,0,0,48992,0,1,1 +1774117074.315847,0.75,4,3992.50,50.89,1692.86,1992.62,0.00,3519333516966.453125,0.000000,21,0,0.000000,0.000020,54962857,36537476,0,0,48994,0,1,1 +1774117079.317318,0.55,4,3992.50,50.89,1692.86,1992.62,0.00,82541.565388,112543.324033,6897389,1970609,0.000062,0.000080,54962861,36537483,0,0,48997,0,1,1 +1774117084.317402,0.65,4,3992.50,50.84,1694.77,1990.70,0.00,3518378002791.262207,3518377972779.674316,237,378,0.002040,0.001634,54962886,36537502,0,0,48999,0,1,1 +1774117089.313733,48.86,4,3992.50,56.95,1465.49,2229.53,0.00,82624.931650,112659.154707,6897389,1970730,85.990289,0.033040,54972165,36539894,0,0,49002,0,1,1 +1774117094.315194,31.27,4,3992.50,57.37,1452.49,2246.07,0.00,4.108077,0.063263,6898163,1971123,122.135786,0.023822,54984771,36541631,0,0,49004,0,1,1 +1774117099.313028,30.95,4,3992.50,57.27,1456.32,2242.18,0.00,3519961370259.473633,3519961340237.838379,238,2,120.238584,0.076807,54997487,36547641,0,0,49007,0,1,1 +1774117104.313681,28.29,4,3992.50,58.52,1405.11,2291.23,0.00,3517977907315.916992,0.028121,237,378,104.584532,0.030773,55007353,36550063,0,0,49009,0,1,1 +1774117109.315852,31.60,4,3992.50,57.62,1440.09,2255.98,0.00,0.468254,3516910385145.767578,238,2,124.787054,0.027620,55018511,36552238,0,0,49012,0,1,1 +1774117114.312819,23.31,4,3992.50,57.97,1426.48,2269.56,0.00,3520572683359.391602,0.028142,237,378,91.162057,0.021172,55026809,36553871,0,0,49014,0,1,1 +1774117119.316889,32.85,4,3992.50,57.75,1435.16,2260.97,0.00,82501.259432,112485.225638,6898163,1971225,127.885027,0.028648,55038312,36556119,0,0,49017,0,1,1 +1774117124.313375,27.92,4,3992.50,57.76,1434.58,2261.45,0.00,3520911937992.846191,3520911907964.829590,70,0,111.823737,0.025668,55048328,36558099,0,0,49019,0,1,1 +1774117129.312941,21.47,4,3992.50,57.76,1434.88,2261.25,0.00,1.490461,0.028323,237,378,126.147408,0.029093,55059676,36560349,0,0,49022,0,1,1 +1774117134.316405,1.85,4,3992.50,50.99,1699.40,1996.28,0.00,3516001542411.575195,3516001542413.084473,21,0,10.654562,0.007580,55060833,36560686,0,0,49024,0,1,1 +1774117139.316918,18.84,4,3992.50,51.13,1693.87,2001.87,0.00,0.000000,0.000000,21,0,28.173041,0.126874,55070059,36567612,0,0,49027,0,1,1 +1774117144.316849,7.80,4,3992.50,50.96,1700.35,1995.37,0.00,0.000000,0.000000,21,0,12.077639,0.054990,55074053,36570520,0,0,49029,0,1,1 +1774117149.315227,0.65,4,3992.50,50.97,1700.27,1995.45,0.00,0.000000,0.000000,21,0,0.002294,0.002194,55074099,36570565,0,0,49032,0,1,1 +1774117154.312909,0.45,4,3992.50,50.94,1701.44,1994.29,0.00,2.007767,0.000195,238,2,0.001598,0.000795,55074130,36570586,0,0,49034,0,1,1 +1774117159.316972,0.95,4,3992.50,51.39,1686.58,2011.91,0.00,3515580576072.209473,3515580576074.214844,21,0,0.001588,0.000795,55074160,36570607,0,0,49037,0,1,1 +1774117164.312850,0.55,4,3992.50,51.41,1685.55,2012.89,0.00,0.048087,0.000000,70,0,0.002061,0.002071,55074205,36570651,0,0,49039,0,1,1 +1774117169.312910,0.60,4,3992.50,51.41,1685.57,2012.87,0.00,1.958766,0.000195,238,2,0.002047,0.002055,55074249,36570696,0,0,49042,0,1,1 +1774117174.315963,0.60,4,3992.50,51.41,1685.58,2012.86,0.00,82513.595461,112509.766790,6897407,1972510,0.002740,0.003947,55074315,36570776,0,0,49044,0,1,1 +1774117179.317442,0.55,4,3992.50,51.23,1692.52,2005.91,0.00,3517396545351.067383,3517396515347.461426,21,0,0.002859,0.004118,55074390,36570867,0,0,49047,0,1,1 +1774117184.317670,0.55,4,3992.50,51.24,1692.17,2006.26,0.00,0.174992,0.000000,199,0,0.002733,0.004598,55074455,36570951,0,0,49049,0,1,1 +1774117189.317332,0.80,4,3992.50,51.36,1688.52,2011.05,0.00,82571.405017,112586.200670,6897407,1972584,0.002734,0.003965,55074520,36571032,0,0,49052,0,1,1 +1774117194.315660,0.70,4,3992.50,51.36,1688.52,2011.04,0.00,4.110652,0.060079,6898181,1973005,0.002809,0.003996,55074590,36571115,0,0,49054,0,1,1 +1774117199.316276,0.55,4,3992.50,51.36,1688.54,2011.02,0.00,3518003333283.459473,3518003303278.444824,199,0,0.003434,0.004008,55074651,36571188,0,0,49057,0,1,1 +1774117204.316964,0.65,4,3992.50,51.36,1688.55,2011.02,0.00,3517953456510.449707,0.000000,70,0,0.002733,0.003954,55074716,36571268,0,0,49059,0,1,1 +1774117209.317099,0.55,4,3992.50,51.36,1688.68,2010.88,0.00,82567.827709,112575.768316,6898192,1973177,0.002734,0.003964,55074781,36571349,0,0,49062,0,1,1 +1774117214.316787,0.45,4,3992.50,51.36,1688.69,2010.87,0.00,0.000000,0.011231,6898192,1973194,0.002734,0.003955,55074846,36571429,0,0,49064,0,1,1 +1774117219.316785,0.75,4,3992.50,51.36,1690.16,2010.81,0.00,3518437896850.984375,3518437866842.260742,21,0,0.002742,0.003972,55074912,36571511,0,0,49067,0,1,1 +1774117224.317105,1.45,4,3992.50,51.38,1689.14,2011.79,0.00,0.000000,0.000000,21,0,0.008208,2.010513,55075296,36572034,0,0,49069,0,1,1 +1774117229.317473,30.20,4,3992.50,51.91,1661.05,2032.27,0.00,2.006688,0.000195,238,2,0.041812,117.161498,55078397,36584373,0,0,49072,0,1,1 +1774117234.316206,23.34,4,3992.50,51.94,1653.65,2033.56,0.00,82589.042701,112779.520199,6898196,1974354,0.016271,85.948755,55079461,36593540,0,0,49074,0,1,1 +1774117239.317084,12.81,4,3992.50,56.27,1486.66,2203.13,0.00,12.170615,33.084419,6897544,1974242,38.256553,0.022750,55083776,36594863,0,0,49077,0,1,1 +1774117244.317405,1.25,4,3992.50,51.35,1679.14,2010.66,0.00,3518211873489.351562,3518211843289.548340,21,0,1.809625,0.028518,55084130,36595086,0,0,49079,0,1,1 +1774117249.314622,10.86,4,3992.50,51.42,1673.27,2013.25,0.00,2.007953,0.000195,238,2,0.023322,40.066175,55085821,36599473,0,0,49082,0,1,1 +1774117254.315535,0.55,4,3992.50,51.26,1679.60,2006.90,0.00,3517794798341.386230,3517794798343.393066,21,0,0.001144,0.003509,55085856,36599537,0,0,49084,0,1,1 +1774117259.317313,0.45,4,3992.50,51.26,1679.56,2006.95,0.00,1.537832,0.028310,237,378,0.001131,0.003197,55085890,36599600,0,0,49087,0,1,1 +1774117264.313591,0.60,4,3992.50,51.26,1679.56,2006.95,0.00,3521058153587.829590,3521058153589.340820,21,0,0.001153,0.003198,55085926,36599663,0,0,49089,0,1,1 +1774117269.317469,0.80,4,3992.50,50.88,1694.36,1992.15,0.00,0.000000,0.000000,21,0,0.001169,0.003226,55085963,36599728,0,0,49092,0,1,1 +1774117274.317291,0.60,4,3992.50,50.88,1694.36,1992.14,0.00,82585.228051,112824.528651,6897544,1974823,0.001144,0.003188,55085998,36599790,0,0,49094,0,1,1 +1774117279.317559,0.50,4,3992.50,50.88,1694.61,1991.89,0.00,0.000000,4.045095,6897544,1974860,0.000915,0.002564,55086026,36599841,0,0,49097,0,1,1 +1774117284.312982,0.80,4,3992.50,51.02,1685.51,1997.48,0.00,4.113825,0.059038,6898319,1975273,0.001145,0.003191,55086061,36599903,0,0,49099,0,1,1 +1774117289.317708,0.50,4,3992.50,51.02,1685.52,1997.48,0.00,3515114214311.596191,3515114184099.930176,238,2,0.001302,0.003377,55086109,36599978,0,0,49102,0,1,1 +1774117294.316117,0.50,4,3992.50,51.02,1685.52,1997.48,0.00,3519557436147.137207,3519557436149.145020,21,0,0.001071,0.002694,55086147,36600039,0,0,49104,0,1,1 +1774117299.317473,0.55,4,3992.50,51.03,1684.86,1998.11,0.00,0.048034,0.000000,70,0,0.001144,0.003197,55086182,36600102,0,0,49107,0,1,1 +1774117304.314619,0.50,4,3992.50,51.03,1684.89,1998.11,0.00,0.000000,0.000000,70,0,0.001145,0.003190,55086217,36600164,0,0,49109,0,1,1 +1774117309.315161,1.10,4,3992.50,50.70,1699.55,1984.89,0.00,0.126939,0.000000,199,0,0.002535,0.003921,55086276,36600245,0,0,49112,0,1,1 +1774117314.317388,38.71,4,3992.50,57.60,1439.06,2254.99,0.00,0.000000,0.000000,199,0,82.685482,0.042377,55095054,36603109,0,0,49114,0,1,1 +1774117319.316376,28.37,4,3992.50,57.07,1462.76,2234.32,0.00,3519149320713.178711,0.000000,21,0,118.788021,0.023021,55107151,36604698,0,0,49117,0,1,1 +1774117324.317690,28.43,4,3992.50,57.32,1452.85,2244.38,0.00,0.048034,0.000000,70,0,119.535319,0.018203,55119523,36605993,0,0,49119,0,1,1 +1774117329.316731,28.37,4,3992.50,57.64,1440.38,2256.84,0.00,3519112200644.666016,0.000000,21,0,119.597203,0.046003,55131937,36609529,0,0,49122,0,1,1 +1774117334.313702,28.46,4,3992.50,57.03,1464.14,2232.99,0.00,82632.354625,112893.134802,6897546,1975077,118.854003,0.070460,55144353,36614813,0,0,49124,0,1,1 +1774117339.317406,28.21,4,3992.50,57.61,1442.04,2255.53,0.00,3515832863112.877441,3515832832892.815430,21,0,119.696421,0.075183,55156990,36620618,0,0,49127,0,1,1 +1774117344.317554,28.49,4,3992.50,57.09,1461.92,2235.31,0.00,2.006777,0.000195,238,2,118.567675,0.036797,55169305,36623350,0,0,49129,0,1,1 +1774117349.314672,28.80,4,3992.50,57.05,1463.50,2233.67,0.00,3520466275385.072754,3520466275387.081055,21,0,120.240663,0.033710,55181704,36625784,0,0,49132,0,1,1 +1774117354.312918,14.52,4,3992.50,52.61,1637.66,2059.61,0.00,0.000000,0.000000,21,0,107.585701,0.020182,55192664,36627206,0,0,49134,0,1,1 +1774117359.316414,0.95,4,3992.50,51.72,1672.15,2025.10,0.00,82524.713841,112746.269316,6897557,1975209,0.004765,0.004541,55192767,36627313,0,0,49137,0,1,1 +1774117364.314984,12.20,4,3992.50,51.22,1691.79,2005.46,0.00,3519443876595.558594,3519443846344.214355,21,0,14.103788,0.070964,55197543,36630801,0,0,49139,0,1,1 +1774117369.317672,14.78,4,3992.50,52.34,1647.91,2049.30,0.00,2.005758,0.000195,238,2,26.146682,0.114533,55206071,36637124,0,0,49142,0,1,1 +1774117374.312840,5.27,4,3992.50,51.48,1681.15,2015.45,0.00,3521840670627.265625,0.028152,237,378,0.018585,17.652138,55207199,36639343,0,0,49144,0,1,1 +1774117379.312824,28.89,4,3992.50,51.74,1663.02,2025.58,0.00,3518448666357.898926,3518448666359.408691,21,0,0.039679,119.170254,55210183,36651770,0,0,49147,0,1,1 +1774117384.315937,17.87,4,3992.50,51.59,1663.71,2020.00,0.00,2.005587,0.000195,238,2,0.022450,68.257461,55211751,36658940,0,0,49149,0,1,1 +1774117389.316854,15.49,4,3992.50,52.58,1626.70,2058.82,0.00,3517791599142.425293,3517791599144.383301,70,0,40.058254,0.036325,55216154,36661216,0,0,49152,0,1,1 +1774117394.317673,1.15,4,3992.50,51.89,1653.91,2031.61,0.00,3517860754630.594238,0.000000,21,0,0.009420,0.010179,55216329,36661378,0,0,49154,0,1,1 +1774117399.316768,0.75,4,3992.50,51.79,1656.45,2027.72,0.00,0.000000,0.000000,21,0,0.002734,0.003965,55216394,36661459,0,0,49157,0,1,1 +1774117404.312908,0.55,4,3992.50,51.65,1660.02,2022.05,0.00,82666.651561,113116.006271,6898453,1978535,0.002774,0.004007,55216462,36661542,0,0,49159,0,1,1 +1774117409.312903,0.55,4,3992.50,51.66,1659.55,2022.52,0.00,3518440879316.615723,0.007129,6897679,1978192,0.002505,0.003343,55216520,36661612,0,0,49162,0,1,1 +1774117414.316996,0.60,4,3992.50,51.63,1660.57,2021.50,0.00,3515559069556.195801,3515559039151.078125,70,0,0.002731,0.003964,55216585,36661693,0,0,49164,0,1,1 +1774117419.317561,0.75,4,3992.50,51.96,1647.50,2034.54,0.00,0.000000,0.000000,70,0,0.002766,0.003990,55216653,36661776,0,0,49167,0,1,1 +1774117424.317129,0.50,4,3992.50,51.78,1654.71,2027.36,0.00,1.958958,0.000195,238,2,0.002734,0.003942,55216718,36661855,0,0,49169,0,1,1 +1774117429.317433,0.75,4,3992.50,51.78,1655.66,2027.30,0.00,3518223523947.846680,0.028123,237,378,0.002733,0.003951,55216783,36661935,0,0,49172,0,1,1 +1774117434.317532,0.60,4,3992.50,51.78,1655.67,2027.29,0.00,3518367503688.526855,3518367503689.862305,199,0,0.002585,0.003396,55216846,36662009,0,0,49174,0,1,1 +1774117439.317022,0.50,4,3992.50,51.78,1655.70,2027.27,0.00,0.000000,0.000000,199,0,0.002248,0.003838,55216909,36662091,0,0,49177,0,1,1 +1774117444.314936,0.55,4,3992.50,51.78,1655.71,2027.26,0.00,82633.012012,113079.384517,6897679,1978539,0.002735,0.004600,55216974,36662175,0,0,49179,0,1,1 +1774117449.317457,0.55,4,3992.50,51.78,1655.71,2027.25,0.00,4.107207,0.039531,6898453,1978929,0.002720,0.003950,55217038,36662255,0,0,49182,0,1,1 +1774117454.313991,0.50,4,3992.50,51.81,1654.39,2028.58,0.00,3520877971413.354492,3520877940962.643066,199,0,0.002723,0.003957,55217102,36662335,0,0,49184,0,1,1 +1774117459.317482,0.80,4,3992.50,51.91,1647.63,2032.44,0.00,3515982446979.659668,0.000000,21,0,0.002732,0.003949,55217167,36662415,0,0,49187,0,1,1 +1774117464.316431,0.55,4,3992.50,51.89,1648.00,2031.58,0.00,82620.192709,113056.141547,6898453,1979060,0.002734,0.003955,55217232,36662495,0,0,49189,0,1,1 +1774117469.312866,11.48,4,3992.50,51.60,1657.43,2020.37,0.00,3520947376559.568359,3520947346106.796387,237,378,0.023709,40.094357,55218767,36666996,0,0,49192,0,1,1 +1774117474.312826,0.60,4,3992.50,51.60,1657.60,2020.21,0.00,82601.938986,113067.330255,6898454,1979330,0.001393,0.003807,55218809,36667070,0,0,49194,0,1,1 +1774117479.317639,0.60,4,3992.50,51.60,1657.60,2020.21,0.00,3515053962064.217285,3515053931629.694336,199,0,0.001143,0.003195,55218844,36667133,0,0,49197,0,1,1 +1774117484.317054,0.60,4,3992.50,51.60,1657.38,2020.42,0.00,3518848569318.475586,0.000000,21,0,0.001153,0.003196,55218880,36667196,0,0,49199,0,1,1 +1774117489.316852,0.70,4,3992.50,51.80,1650.13,2027.96,0.00,1.538441,0.028321,237,378,0.001144,0.003198,55218915,36667259,0,0,49202,0,1,1 +1774117494.316855,0.60,4,3992.50,51.65,1655.69,2022.11,0.00,3518435477107.767578,3518435477109.229980,70,0,0.001144,0.003188,55218950,36667321,0,0,49204,0,1,1 +1774117499.315496,0.55,4,3992.50,51.65,1655.57,2022.23,0.00,82621.119113,113097.297457,6897680,1979020,0.001609,0.002601,55218973,36667363,0,0,49207,0,1,1 +1774117504.317323,0.55,4,3992.50,51.63,1656.30,2021.46,0.00,3517151949817.425293,3517151919360.705566,21,0,0.001144,0.003218,55219008,36667427,0,0,49209,0,1,1 +1774117509.317023,0.60,4,3992.50,51.64,1655.90,2021.91,0.00,82603.688695,113079.453047,6897682,1979113,0.001182,0.003260,55219046,36667494,0,0,49212,0,1,1 +1774117514.313662,0.55,4,3992.50,51.64,1655.91,2021.91,0.00,3520803373732.727051,3520803343238.251465,70,0,0.001345,0.004029,55219095,36667574,0,0,49214,0,1,1 +1774117519.312840,0.90,4,3992.50,51.69,1656.83,2023.87,0.00,0.126974,0.000000,199,0,0.001176,0.003224,55219132,36667639,0,0,49217,0,1,1 +1774117524.317288,0.60,4,3992.50,51.62,1658.75,2021.04,0.00,1.362167,0.028295,237,378,0.001151,0.003193,55219168,36667702,0,0,49219,0,1,1 +1774117529.317663,0.55,4,3992.50,51.62,1658.63,2021.16,0.00,82595.100248,113064.265312,6898456,1979569,0.000915,0.002564,55219196,36667753,0,0,49222,0,1,1 +1774117534.315809,26.32,4,3992.50,57.74,1424.75,2260.59,0.00,0.000000,0.086262,6898456,1979675,42.481508,0.027842,55223826,36669549,0,0,49224,0,1,1 +1774117539.312864,31.37,4,3992.50,58.03,1420.15,2272.15,0.00,3520510941691.049316,3520510911203.062988,21,0,118.233154,0.042685,55235848,36672697,0,0,49227,0,1,1 +1774117544.316897,28.61,4,3992.50,57.77,1430.36,2261.96,0.00,1.537139,0.028297,237,378,118.468920,0.033603,55247920,36675071,0,0,49229,0,1,1 +1774117549.317118,28.14,4,3992.50,57.98,1422.42,2269.88,0.00,0.468436,3518282114563.685059,238,2,119.756753,0.040593,55259990,36678191,0,0,49232,0,1,1 +1774117554.313941,28.38,4,3992.50,58.21,1421.54,2279.11,0.00,3520674383395.013184,3520674383396.846191,199,0,118.444000,0.031449,55272329,36680569,0,0,49234,0,1,1 +1774117559.316861,28.36,4,3992.50,58.08,1426.70,2273.97,0.00,82550.328364,113007.056690,6897682,1979417,119.894784,0.028324,55284598,36682668,0,0,49237,0,1,1 +1774117564.316782,29.48,4,3992.50,57.97,1431.03,2269.68,0.00,3518492422911.393066,3518492392436.569336,21,0,118.968328,0.030606,55296689,36684860,0,0,49239,0,1,1 +1774117569.312922,28.45,4,3992.50,57.95,1431.67,2268.98,0.00,1.539568,0.028342,237,378,119.464989,0.040185,55309029,36687830,0,0,49242,0,1,1 +1774117574.316818,23.70,4,3992.50,58.06,1427.64,2273.14,0.00,3515698318169.684570,3515698318171.193848,21,0,119.070259,0.030959,55321137,36690187,0,0,49244,0,1,1 +1774117579.313707,1.40,4,3992.50,52.05,1662.79,2037.98,0.00,2.008085,0.000195,238,2,30.665137,0.010089,55324333,36690737,0,0,49247,0,1,1 +1774117584.317270,6.84,4,3992.50,51.87,1669.76,2031.01,0.00,3515932134659.693848,3515932134661.524414,199,0,4.037262,0.028264,55325847,36691914,0,0,49249,0,1,1 +1774117589.317743,4.57,4,3992.50,51.99,1665.25,2035.52,0.00,0.000000,0.000000,199,0,4.027979,0.019429,55327170,36692854,0,0,49252,0,1,1 +1774117594.317166,18.43,4,3992.50,52.93,1628.43,2072.29,0.00,1.832048,0.000195,238,2,32.184504,0.132113,55337327,36700215,0,0,49254,0,1,1 +1774117599.312918,1.31,4,3992.50,52.79,1633.88,2066.82,0.00,3521429084755.897461,3521429084757.906250,21,0,0.011303,0.009633,55337553,36700424,0,0,49257,0,1,1 +1774117604.316895,0.65,4,3992.50,52.32,1652.31,2048.41,0.00,1.537156,0.028298,237,378,0.003337,0.004204,55337629,36700511,0,0,49259,0,1,1 +1774117609.318429,8.98,4,3992.50,52.12,1658.66,2040.61,0.00,82572.012968,113039.340130,6897698,1980450,0.021548,31.641861,55339045,36704080,0,0,49262,0,1,1 +1774117614.312812,29.25,4,3992.50,52.23,1650.12,2044.91,0.00,3522393665536.364258,3522393635026.883789,70,0,0.043145,118.302296,55342191,36716424,0,0,49264,0,1,1 +1774117619.312926,14.12,4,3992.50,51.95,1656.95,2034.10,0.00,3518357415351.657715,0.000000,21,0,0.019292,55.278260,55343564,36722189,0,0,49267,0,1,1 +1774117624.313937,1.20,4,3992.50,51.82,1663.32,2029.02,0.00,0.174965,0.000000,199,0,0.004978,0.005120,55343659,36722301,0,0,49269,0,1,1 +1774117629.317607,14.61,4,3992.50,52.97,1620.41,2073.85,0.00,0.000000,0.000000,199,0,40.035520,0.025141,55348148,36723871,0,0,49272,0,1,1 +1774117634.316156,0.80,4,3992.50,52.36,1644.16,2050.11,0.00,82638.979475,113312.699554,6897814,1982266,0.004035,0.007300,55348240,36723997,0,0,49274,0,1,1 +1774117639.316654,1.00,4,3992.50,51.82,1668.93,2028.90,0.00,3518086348434.496582,3518086317770.905273,238,2,0.002721,0.003964,55348304,36724078,0,0,49277,0,1,1 +1774117644.314949,0.50,4,3992.50,51.84,1668.21,2029.62,0.00,3519638093209.799805,0.028135,237,378,0.002735,0.004426,55348369,36724160,0,0,49279,0,1,1 +1774117649.316801,0.50,4,3992.50,51.86,1667.26,2030.58,0.00,0.000000,0.000000,237,378,0.002733,0.004124,55348434,36724242,0,0,49282,0,1,1 +1774117654.315445,0.65,4,3992.50,51.86,1667.27,2030.57,0.00,82640.143119,113310.814606,6898588,1982840,0.002760,0.003974,55348501,36724323,0,0,49284,0,1,1 +1774117659.314317,0.50,4,3992.50,51.86,1667.53,2030.31,0.00,3519230838808.077148,3519230808138.803711,237,378,0.003110,0.005012,55348577,36724425,0,0,49287,0,1,1 +1774117664.312819,0.55,4,3992.50,51.86,1667.30,2030.53,0.00,3519491664774.089844,3519491664775.600098,21,0,0.002722,0.003943,55348641,36724504,0,0,49289,0,1,1 +1774117669.312928,0.70,4,3992.50,51.91,1657.48,2032.20,0.00,0.048046,0.000000,70,0,0.002536,0.003343,55348701,36724574,0,0,49292,0,1,1 +1774117674.312932,0.55,4,3992.50,51.79,1661.92,2027.76,0.00,1.958788,0.000195,238,2,0.002734,0.003954,55348766,36724654,0,0,49294,0,1,1 +1774117679.317367,0.50,4,3992.50,51.79,1661.93,2027.75,0.00,82544.060725,113179.982322,6898588,1983034,0.002850,0.004038,55348839,36724741,0,0,49297,0,1,1 +1774117684.313406,0.60,4,3992.50,51.79,1661.93,2027.74,0.00,3521226525013.857422,3521226494326.951660,237,378,0.002736,0.003957,55348904,36724821,0,0,49299,0,1,1 +1774117689.313498,11.24,4,3992.50,51.78,1660.15,2027.43,0.00,82616.213785,113312.317486,6898588,1983307,0.031336,40.066413,55351043,36729351,0,0,49302,0,1,1 +1774117694.315734,0.80,4,3992.50,51.58,1668.08,2019.51,0.00,3516864049154.318359,3516864018470.876465,238,2,0.004908,0.006656,55351135,36729455,0,0,49304,0,1,1 +1774117699.312910,0.75,4,3992.50,51.83,1647.63,2029.27,0.00,0.000000,0.000000,238,2,0.000916,0.002566,55351163,36729506,0,0,49307,0,1,1 +1774117704.314601,0.60,4,3992.50,51.83,1647.46,2029.43,0.00,3517247997085.094238,3517247997087.052246,70,0,0.001152,0.003195,55351199,36729569,0,0,49309,0,1,1 +1774117709.313065,0.50,4,3992.50,51.84,1647.22,2029.67,0.00,0.126992,0.000000,199,0,0.001145,0.003199,55351234,36729632,0,0,49312,0,1,1 +1774117714.312827,0.55,4,3992.50,51.34,1666.92,2009.95,0.00,3518604398185.936523,0.000000,70,0,0.001144,0.003832,55351269,36729698,0,0,49314,0,1,1 +1774117719.317732,0.60,4,3992.50,51.39,1664.98,2011.90,0.00,82538.261868,113209.567617,6898588,1983455,0.001143,0.003195,55351304,36729761,0,0,49317,0,1,1 +1774117724.316868,0.60,4,3992.50,51.39,1664.74,2012.15,0.00,3519045188685.867676,3519045188689.956543,6897814,1983081,0.001145,0.003188,55351339,36729823,0,0,49319,0,1,1 +1774117729.312907,0.65,4,3992.50,51.70,1653.34,2024.19,0.00,0.000000,0.044567,6897814,1983097,0.001171,0.003232,55351376,36729888,0,0,49322,0,1,1 +1774117734.312846,0.60,4,3992.50,51.70,1653.49,2024.16,0.00,3518480047502.436523,3518480016796.584473,21,0,0.001115,0.002748,55351418,36729952,0,0,49324,0,1,1 +1774117739.312914,0.50,4,3992.50,51.70,1653.50,2024.16,0.00,0.000000,0.000000,21,0,0.001276,0.003347,55351463,36730025,0,0,49327,0,1,1 +1774117744.315562,0.50,4,3992.50,51.67,1654.74,2022.88,0.00,2.005774,0.000195,238,2,0.001144,0.003186,55351498,36730087,0,0,49329,0,1,1 +1774117749.316454,0.70,4,3992.50,51.67,1654.77,2022.88,0.00,3517808833242.737305,3517808833244.744141,21,0,0.001152,0.003205,55351534,36730151,0,0,49332,0,1,1 +1774117754.316373,34.74,4,3992.50,57.93,1418.79,2268.01,0.00,1.538404,0.028321,237,378,75.312488,0.041025,55359537,36733014,0,0,49334,0,1,1 +1774117759.316379,29.57,4,3992.50,58.19,1411.84,2278.22,0.00,3518433355493.498535,3518433355494.960938,70,0,119.563520,0.047897,55371606,36736580,0,0,49337,0,1,1 +1774117764.313442,28.64,4,3992.50,57.94,1423.39,2268.37,0.00,82667.773730,113387.558971,6898588,1983724,118.229618,0.037403,55383527,36739418,0,0,49339,0,1,1 +1774117769.314470,28.26,4,3992.50,58.15,1414.95,2276.73,0.00,3517714580250.813965,3517714580254.900879,6897814,1983360,120.141515,0.051409,55395800,36743281,0,0,49342,0,1,1 +1774117774.316889,28.04,4,3992.50,57.93,1423.45,2268.26,0.00,0.000000,0.005368,6897814,1983375,118.106063,0.051946,55407860,36747235,0,0,49344,0,1,1 +1774117779.317019,28.51,4,3992.50,57.86,1426.24,2265.51,0.00,3518345602136.594238,3518345571431.554688,70,0,120.161198,0.049907,55419990,36750999,0,0,49347,0,1,1 +1774117784.315619,28.30,4,3992.50,57.88,1425.59,2266.08,0.00,3519422188163.184082,0.000000,21,0,118.394461,0.041382,55431947,36754075,0,0,49349,0,1,1 +1774117789.314824,28.25,4,3992.50,58.17,1414.13,2277.51,0.00,2.007155,0.000195,238,2,119.982638,0.045448,55444072,36757504,0,0,49352,0,1,1 +1774117794.313839,16.41,4,3992.50,57.85,1431.04,2264.78,0.00,82633.551915,113343.512972,6898589,1983843,115.583202,0.046729,55455908,36760976,0,0,49354,0,1,1 +1774117799.313874,11.87,4,3992.50,53.22,1611.98,2083.84,0.00,0.282811,0.276463,6898611,1984223,14.198708,0.082717,55461194,36764931,0,0,49357,0,1,1 +1774117804.317375,13.56,4,3992.50,52.29,1648.65,2047.14,0.00,3515975754779.042480,3515975724098.575195,70,0,22.031086,0.090766,55468122,36769973,0,0,49359,0,1,1 +1774117809.315201,3.61,4,3992.50,51.91,1663.32,2032.45,0.00,3519967562652.574219,0.000000,21,0,4.028457,0.020876,55469493,36771042,0,0,49362,0,1,1 +1774117814.317631,0.80,4,3992.50,51.53,1678.14,2017.66,0.00,0.000000,0.000000,21,0,0.002732,0.003952,55469558,36771122,0,0,49364,0,1,1 +1774117819.317575,0.95,4,3992.50,51.59,1678.43,2019.96,0.00,82616.408689,113323.372766,6897849,1984574,0.002734,0.003964,55469623,36771203,0,0,49367,0,1,1 +1774117824.313581,0.75,4,3992.50,51.63,1674.34,2021.43,0.00,3521249912671.751465,3521249881939.073730,237,378,0.002723,0.003957,55469687,36771283,0,0,49369,0,1,1 +1774117829.317339,0.85,4,3992.50,51.63,1674.36,2021.41,0.00,82551.887299,113237.359142,6897849,1984813,0.002719,0.003961,55469751,36771364,0,0,49372,0,1,1 +1774117834.315510,0.65,4,3992.50,51.67,1672.79,2022.97,0.00,3519725139412.853027,3519725108694.584473,21,0,0.002330,0.003176,55469806,36771430,0,0,49374,0,1,1 +1774117839.312858,0.50,4,3992.50,51.67,1672.81,2022.96,0.00,1.539195,0.028335,237,378,0.002760,0.003997,55469873,36771513,0,0,49377,0,1,1 +1774117844.315773,0.50,4,3992.50,51.67,1672.82,2022.95,0.00,82569.912373,113256.804583,6898623,1985452,0.002833,0.004720,55469946,36771605,0,0,49379,0,1,1 +1774117849.316948,0.85,4,3992.50,51.69,1672.24,2023.68,0.00,3517609972238.513672,3517609941542.459961,21,0,0.002741,0.003971,55470012,36771687,0,0,49382,0,1,1 +1774117854.317745,0.50,4,3992.50,51.71,1671.06,2024.57,0.00,82606.416658,113304.877612,6898623,1985509,0.002189,0.003756,55470070,36771763,0,0,49384,0,1,1 +1774117859.316769,23.94,4,3992.50,52.04,1652.16,2037.53,0.00,3519124576693.833984,3519124545982.968750,237,378,0.056038,97.162523,55474159,36782086,0,0,49387,0,1,1 +1774117864.317424,27.54,4,3992.50,56.76,1461.39,2222.17,0.00,0.000000,0.000000,237,378,0.039256,107.934019,55477229,36793142,0,0,49389,0,1,1 +1774117869.316848,1.35,4,3992.50,52.57,1625.29,2058.26,0.00,3518842823078.851562,3518842823080.313965,70,0,0.004319,0.007709,55477345,36793299,0,0,49392,0,1,1 +1774117874.317225,14.44,4,3992.50,53.89,1576.12,2109.77,0.00,1.958642,0.000195,238,2,40.062952,0.023455,55481718,36794744,0,0,49394,0,1,1 +1774117879.313740,1.00,4,3992.50,53.16,1615.07,2081.46,0.00,3520890913533.814453,3520890913535.774414,70,0,0.003437,0.006202,55481798,36794849,0,0,49397,0,1,1 +1774117884.316016,0.50,4,3992.50,52.90,1625.45,2071.08,0.00,0.126895,0.000000,199,0,0.002720,0.003953,55481862,36794929,0,0,49399,0,1,1 +1774117889.315862,0.50,4,3992.50,52.72,1632.53,2063.99,0.00,3518545456934.007324,0.000000,21,0,0.002734,0.003964,55481927,36795010,0,0,49402,0,1,1 +1774117894.316705,0.55,4,3992.50,52.71,1632.80,2063.73,0.00,0.000000,0.000000,21,0,0.002733,0.003954,55481992,36795090,0,0,49404,0,1,1 +1774117899.312900,0.70,4,3992.50,52.86,1627.07,2069.46,0.00,0.175133,0.000000,199,0,0.002731,0.003975,55482057,36795172,0,0,49407,0,1,1 +1774117904.316895,0.55,4,3992.50,52.86,1627.09,2069.44,0.00,82569.727505,113437.806637,6898736,1987164,0.002528,0.003349,55482117,36795242,0,0,49409,0,1,1 +1774117909.316858,11.11,4,3992.50,52.85,1625.03,2069.23,0.00,3518463598465.283203,3518463567570.972168,237,378,0.027251,40.064181,55483992,36799642,0,0,49412,0,1,1 +1774117914.316852,0.95,4,3992.50,52.90,1623.98,2071.34,0.00,82630.322439,113562.705379,6897962,1987097,0.002316,0.006283,55484056,36799752,0,0,49414,0,1,1 +1774117919.316658,0.60,4,3992.50,52.65,1633.98,2061.35,0.00,3518573857327.860352,3518573826395.771973,70,0,0.001144,0.003198,55484091,36799815,0,0,49417,0,1,1 +1774117924.317085,0.50,4,3992.50,52.53,1638.56,2056.76,0.00,3518136992181.061035,0.000000,21,0,0.001144,0.003188,55484126,36799877,0,0,49419,0,1,1 +1774117929.317109,0.55,4,3992.50,52.51,1639.43,2055.89,0.00,0.000000,0.000000,21,0,0.001158,0.003198,55484162,36799940,0,0,49422,0,1,1 +1774117934.317570,0.75,4,3992.50,52.39,1644.21,2051.11,0.00,82628.252697,113552.209665,6898736,1987522,0.002653,0.004966,55484210,36800027,0,0,49424,0,1,1 +1774117939.317626,0.70,4,3992.50,52.25,1646.41,2045.62,0.00,3518398165617.250000,3518398134690.606934,199,0,0.001144,0.003198,55484245,36800090,0,0,49427,0,1,1 +1774117944.315171,0.60,4,3992.50,52.07,1653.22,2038.82,0.00,3520164960056.009277,0.000000,70,0,0.001170,0.003221,55484282,36800154,0,0,49429,0,1,1 +1774117949.316781,0.60,4,3992.50,52.09,1652.74,2039.30,0.00,3517304851276.636719,0.000000,21,0,0.001202,0.003267,55484322,36800222,0,0,49432,0,1,1 +1774117954.317540,0.50,4,3992.50,52.11,1651.76,2040.28,0.00,0.048040,0.000000,70,0,0.000991,0.002647,55484356,36800278,0,0,49434,0,1,1 +1774117959.312908,0.60,4,3992.50,52.12,1651.55,2040.50,0.00,3521699514802.832520,0.000000,21,0,0.001672,0.004367,55484412,36800371,0,0,49437,0,1,1 +1774117964.317011,0.55,4,3992.50,52.15,1650.34,2041.71,0.00,1.537117,0.028297,237,378,0.001143,0.003185,55484447,36800433,0,0,49439,0,1,1 +1774117969.317283,0.75,4,3992.50,52.15,1651.89,2041.66,0.00,3518245878930.625000,3518245878932.134766,21,0,0.001144,0.003198,55484482,36800496,0,0,49442,0,1,1 +1774117974.314510,0.65,4,3992.50,52.11,1653.47,2040.10,0.00,0.175097,0.000000,199,0,0.001145,0.003190,55484517,36800558,0,0,49444,0,1,1 +1774117979.314009,37.15,4,3992.50,57.96,1433.23,2269.29,0.00,3518789731090.896973,0.000000,21,0,82.930191,0.036822,55493306,36802993,0,0,49447,0,1,1 +1774117984.316427,28.49,4,3992.50,58.25,1425.00,2280.43,0.00,1.537635,0.028307,237,378,118.506682,0.018900,55505420,36804303,0,0,49449,0,1,1 +1774117989.314473,28.01,4,3992.50,57.93,1437.47,2267.96,0.00,0.468640,3519813131290.735840,238,2,119.812459,0.022612,55517688,36806027,0,0,49452,0,1,1 +1774117994.316535,28.10,4,3992.50,58.27,1423.90,2281.39,0.00,3516986428064.157227,3516986428066.114746,70,0,118.719701,0.029037,55529902,36808101,0,0,49454,0,1,1 +1774117999.317939,28.61,4,3992.50,58.47,1424.27,2289.38,0.00,1.958239,0.000195,238,2,119.535225,0.030526,55542078,36810204,0,0,49457,0,1,1 +1774118004.317367,27.55,4,3992.50,58.43,1426.02,2287.61,0.00,3518839795823.568359,3518839795825.400879,199,0,119.176045,0.017449,55554188,36811485,0,0,49459,0,1,1 +1774118009.314562,27.92,4,3992.50,58.24,1433.22,2280.39,0.00,0.000000,0.000000,199,0,119.234460,0.034906,55566270,36814058,0,0,49462,0,1,1 +1774118014.316259,27.85,4,3992.50,58.37,1428.50,2285.16,0.00,82607.671024,113530.609929,6898736,1987918,119.736681,0.051772,55578680,36817938,0,0,49464,0,1,1 +1774118019.312928,14.60,4,3992.50,53.58,1615.92,2097.82,0.00,3520782315828.651855,3520782284873.264648,237,378,107.822286,0.028068,55589719,36820091,0,0,49467,0,1,1 +1774118024.313786,0.95,4,3992.50,52.67,1651.67,2062.06,0.00,3517833704106.461426,3517833704107.796387,199,0,0.004261,0.004600,55589812,36820190,0,0,49469,0,1,1 +1774118029.317473,13.34,4,3992.50,53.24,1621.91,2084.48,0.00,0.000000,0.000000,199,0,16.102417,0.084315,55595315,36824372,0,0,49472,0,1,1 +1774118034.312919,10.88,4,3992.50,52.72,1642.37,2063.97,0.00,3521644448662.977539,0.000000,70,0,18.118147,0.074920,55601064,36828616,0,0,49474,0,1,1 +1774118039.314776,5.62,4,3992.50,52.51,1650.52,2055.82,0.00,3517131251623.291992,0.000000,21,0,6.047298,0.035467,55603209,36830250,0,0,49477,0,1,1 +1774118044.315274,0.55,4,3992.50,52.27,1659.78,2046.54,0.00,1.538226,0.028317,237,378,0.001921,0.004130,55603258,36830322,0,0,49479,0,1,1 +1774118049.317374,19.64,4,3992.50,52.63,1640.87,2060.62,0.00,82595.699338,113567.712338,6897980,1989217,0.042312,81.488202,55606248,36839052,0,0,49482,0,1,1 +1774118054.315477,29.05,4,3992.50,52.49,1637.91,2055.18,0.00,3519772140626.543945,3519772109631.230469,70,0,0.039506,122.217577,55609235,36851660,0,0,49484,0,1,1 +1774118059.315422,2.61,4,3992.50,51.94,1660.05,2033.64,0.00,82636.895746,113748.312029,6898756,1990478,0.007133,1.409016,55609423,36851964,0,0,49487,0,1,1 +1774118064.316984,14.26,4,3992.50,52.91,1624.16,2071.45,0.00,3517337930005.336426,3517337898904.030273,21,0,40.049935,0.021748,55613815,36853325,0,0,49489,0,1,1 +1774118069.314940,0.80,4,3992.50,52.53,1638.76,2056.84,0.00,2.007657,0.000195,238,2,0.005290,0.005226,55613931,36853442,0,0,49492,0,1,1 +1774118074.316905,0.85,4,3992.50,52.29,1648.34,2047.27,0.00,3517055141968.727539,3517055141970.733887,21,0,0.003446,0.006198,55614012,36853547,0,0,49494,0,1,1 +1774118079.314129,0.50,4,3992.50,52.21,1651.63,2043.97,0.00,82698.219040,113839.232726,6898888,1990839,0.002735,0.003966,55614077,36853628,0,0,49497,0,1,1 +1774118084.317771,0.50,4,3992.50,52.21,1651.65,2043.96,0.00,3515876249867.562988,3515876218766.313965,199,0,0.002732,0.003951,55614142,36853708,0,0,49499,0,1,1 +1774118089.317391,0.75,4,3992.50,52.41,1650.43,2051.82,0.00,82654.309173,113784.791077,6898114,1990536,0.002734,0.003952,55614207,36853788,0,0,49502,0,1,1 +1774118094.314042,0.55,4,3992.50,52.41,1650.32,2051.84,0.00,3520795745330.923828,3520795714180.604004,237,378,0.002781,0.003996,55614276,36853871,0,0,49504,0,1,1 +1774118099.317486,0.70,4,3992.50,52.14,1660.80,2041.38,0.00,0.000000,0.000000,237,378,0.002503,0.003328,55614334,36853940,0,0,49507,0,1,1 +1774118104.317461,0.55,4,3992.50,52.17,1659.59,2042.59,0.00,3518454175571.387207,3518454175572.897461,21,0,0.003749,0.004700,55614407,36854029,0,0,49509,0,1,1 +1774118109.317739,0.55,4,3992.50,52.19,1658.87,2043.29,0.00,1.538294,0.028319,237,378,0.003971,0.005113,55614496,36854128,0,0,49512,0,1,1 +1774118114.317588,0.55,4,3992.50,52.19,1658.89,2043.27,0.00,3518543757423.724121,3518543757425.234375,21,0,0.002734,0.003954,55614561,36854208,0,0,49514,0,1,1 +1774118119.314992,0.80,4,3992.50,52.30,1654.36,2047.65,0.00,0.000000,0.000000,21,0,0.002818,0.004027,55614632,36854294,0,0,49517,0,1,1 +1774118124.317389,5.81,4,3992.50,52.83,1633.00,2068.58,0.00,82612.715664,113722.118263,6898888,1991362,0.018395,19.625545,55615797,36856585,0,0,49519,0,1,1 +1774118129.317092,5.97,4,3992.50,52.56,1643.29,2057.68,0.00,0.000000,21.681367,6898888,1991557,0.008245,20.435629,55616304,36858798,0,0,49522,0,1,1 +1774118134.312988,0.65,4,3992.50,52.82,1633.06,2068.07,0.00,3521327272492.329102,3521327241320.575684,199,0,0.001145,0.003191,55616339,36858860,0,0,49524,0,1,1 +1774118139.317171,0.60,4,3992.50,52.55,1643.50,2057.64,0.00,3515496357669.278320,0.000000,21,0,0.001143,0.003195,55616374,36858923,0,0,49527,0,1,1 +1774118144.316263,0.60,4,3992.50,52.56,1643.26,2057.88,0.00,2.007200,0.000195,238,2,0.001165,0.003197,55616411,36858986,0,0,49529,0,1,1 +1774118149.316936,0.80,4,3992.50,52.96,1627.68,2073.55,0.00,0.000000,0.000000,238,2,0.001144,0.003197,55616446,36859049,0,0,49532,0,1,1 +1774118154.316393,0.55,4,3992.50,52.68,1638.48,2062.69,0.00,3518819392078.124512,3518819392079.957031,199,0,0.001145,0.003188,55616481,36859111,0,0,49534,0,1,1 +1774118159.316801,0.65,4,3992.50,52.47,1646.67,2054.50,0.00,3518150049032.462891,0.000000,21,0,0.000941,0.002595,55616511,36859164,0,0,49537,0,1,1 +1774118164.313537,0.50,4,3992.50,52.40,1649.45,2051.72,0.00,0.048078,0.000000,70,0,0.001196,0.003252,55616550,36859230,0,0,49539,0,1,1 +1774118169.317191,0.85,4,3992.50,52.41,1649.24,2051.93,0.00,3515867459247.667480,0.000000,21,0,0.001219,0.003289,55616591,36859299,0,0,49542,0,1,1 +1774118174.316032,0.65,4,3992.50,52.45,1647.52,2053.64,0.00,2.007301,0.000195,238,2,0.001296,0.003967,55616636,36859376,0,0,49544,0,1,1 +1774118179.317333,0.75,4,3992.50,52.55,1656.47,2057.57,0.00,82628.817478,113787.374904,6898888,1991798,0.001144,0.003197,55616671,36859439,0,0,49547,0,1,1 +1774118184.312841,0.50,4,3992.50,52.55,1656.52,2057.53,0.00,3521600765434.850586,3521600734241.999023,199,0,0.001133,0.003191,55616705,36859501,0,0,49549,0,1,1 +1774118189.312849,0.50,4,3992.50,52.48,1659.40,2054.66,0.00,3518431542800.868652,0.000000,21,0,0.001119,0.003185,55616738,36859563,0,0,49552,0,1,1 +1774118194.318207,39.28,4,3992.50,58.82,1420.18,2303.12,0.00,1.536732,0.028290,237,378,91.236596,0.034993,55626422,36861921,0,0,49554,0,1,1 +1774118199.312857,28.66,4,3992.50,58.92,1418.48,2306.99,0.00,3522205975615.541016,3522205975617.052734,21,0,119.493095,0.017253,55638702,36863157,0,0,49557,0,1,1 +1774118204.312814,28.21,4,3992.50,58.64,1429.54,2295.99,0.00,0.175002,0.000000,199,0,118.966307,0.023197,55650892,36864850,0,0,49559,0,1,1 +1774118209.316830,27.79,4,3992.50,58.49,1435.35,2290.19,0.00,3515613585472.666992,0.000000,21,0,119.280727,0.053939,55663228,36868959,0,0,49562,0,1,1 +1774118214.315202,28.33,4,3992.50,58.53,1433.87,2291.71,0.00,1.538880,0.028330,237,378,119.014192,0.054130,55675530,36873123,0,0,49564,0,1,1 +1774118219.313432,28.35,4,3992.50,58.91,1419.21,2306.61,0.00,0.000000,0.000000,237,378,119.818864,0.049045,55688008,36876814,0,0,49567,0,1,1 +1774118224.317420,28.02,4,3992.50,59.12,1411.36,2314.59,0.00,0.000000,0.000000,237,378,119.075991,0.043024,55700187,36879973,0,0,49569,0,1,1 +1774118229.316797,28.17,4,3992.50,58.61,1431.04,2294.86,0.00,3518875527758.925293,3518875527760.435547,21,0,119.578321,0.021428,55712258,36881576,0,0,49572,0,1,1 +1774118234.316196,12.66,4,3992.50,52.25,1680.25,2045.69,0.00,2.007077,0.000195,238,2,98.949137,0.021943,55722314,36883114,0,0,49574,0,1,1 +1774118239.317051,1.05,4,3992.50,52.39,1663.10,2051.06,0.00,3517836004375.940430,3517836004377.947266,21,0,0.003839,0.003716,55722397,36883200,0,0,49577,0,1,1 +1774118244.317166,19.11,4,3992.50,52.93,1640.79,2072.34,0.00,1.538343,0.028320,237,378,26.162842,0.121044,55730798,36889528,0,0,49579,0,1,1 +1774118249.317020,9.36,4,3992.50,51.83,1684.01,2029.10,0.00,82649.211741,113821.335585,6898129,1992676,14.097827,0.070204,55735655,36893204,0,0,49582,0,1,1 +1774118254.313858,0.50,4,3992.50,51.83,1683.80,2029.32,0.00,3520663429022.330566,3520663397830.894531,238,2,0.002723,0.003944,55735719,36893283,0,0,49584,0,1,1 +1774118259.312820,1.91,4,3992.50,52.22,1668.41,2044.67,0.00,3519168087305.580078,3519168087307.412598,199,0,0.009541,3.213785,55736201,36893971,0,0,49587,0,1,1 +1774118264.317416,28.33,4,3992.50,52.46,1651.73,2053.98,0.00,1.362127,0.028294,237,378,0.047458,118.457695,55739748,36906128,0,0,49589,0,1,1 +1774118269.317010,20.82,4,3992.50,52.37,1649.16,2050.60,0.00,3518722760974.904785,3518722760976.415039,21,0,0.040639,83.326443,55742823,36914817,0,0,49592,0,1,1 +1774118274.317499,1.50,4,3992.50,51.91,1657.93,2032.33,0.00,2.006640,0.000195,238,2,0.006116,0.007120,55742941,36914956,0,0,49594,0,1,1 +1774118279.317378,14.26,4,3992.50,53.45,1599.84,2092.58,0.00,82668.728630,114001.620166,6899034,1994681,40.064763,0.030421,55747314,36916805,0,0,49597,0,1,1 +1774118284.317300,0.50,4,3992.50,52.58,1633.89,2058.54,0.00,3518491923207.854492,3518491891877.065430,199,0,0.003150,0.004079,55747388,36916893,0,0,49599,0,1,1 +1774118289.317021,0.50,4,3992.50,52.13,1651.25,2041.18,0.00,3518633711205.036133,0.000000,70,0,0.002746,0.003964,55747454,36916974,0,0,49602,0,1,1 +1774118294.317801,0.65,4,3992.50,52.03,1655.24,2037.20,0.00,3517888048265.799805,0.000000,21,0,0.004919,0.004962,55747564,36917080,0,0,49604,0,1,1 +1774118299.313592,1.00,4,3992.50,52.01,1655.93,2036.49,0.00,0.000000,0.000000,21,0,0.002515,0.003341,55747623,36917150,0,0,49607,0,1,1 +1774118304.317093,0.80,4,3992.50,52.33,1644.67,2048.68,0.00,1.537303,0.028300,237,378,0.001910,0.003112,55747671,36917213,0,0,49609,0,1,1 +1774118309.314260,0.65,4,3992.50,52.32,1644.93,2048.42,0.00,3520431257891.581055,3520431257893.043945,70,0,0.002735,0.004611,55747736,36917298,0,0,49612,0,1,1 +1774118314.317112,0.50,4,3992.50,52.32,1644.94,2048.41,0.00,3516431617736.266602,0.000000,21,0,0.002732,0.003952,55747801,36917378,0,0,49614,0,1,1 +1774118319.317125,0.55,4,3992.50,52.32,1644.96,2048.39,0.00,0.048047,0.000000,70,0,0.002827,0.004040,55747872,36917465,0,0,49617,0,1,1 +1774118324.312840,0.50,4,3992.50,52.13,1652.38,2040.97,0.00,82735.477115,114122.466816,6898260,1995037,0.002767,0.003983,55747939,36917547,0,0,49619,0,1,1 +1774118329.312819,0.80,4,3992.50,52.57,1635.73,2058.19,0.00,4.109294,0.098926,6899034,1995471,0.002785,0.003987,55748008,36917630,0,0,49622,0,1,1 +1774118334.316496,0.50,4,3992.50,52.32,1644.85,2048.52,0.00,3515852138822.793945,3515852107489.797363,21,0,0.003172,0.004239,55748069,36917700,0,0,49624,0,1,1 +1774118339.312826,0.60,4,3992.50,52.30,1645.76,2047.62,0.00,0.048082,0.000000,70,0,0.002786,0.004029,55748138,36917785,0,0,49627,0,1,1 +1774118344.317389,0.55,4,3992.50,52.29,1646.13,2047.24,0.00,3515229535918.927246,0.000000,21,0,0.002731,0.003951,55748203,36917865,0,0,49629,0,1,1 +1774118349.313783,10.80,4,3992.50,52.22,1647.02,2044.45,0.00,0.175126,0.000000,199,0,0.025204,40.093953,55749827,36922296,0,0,49632,0,1,1 +1774118354.317476,0.70,4,3992.50,52.23,1646.62,2044.92,0.00,0.000000,0.000000,199,0,0.002575,0.006276,55749902,36922415,0,0,49634,0,1,1 +1774118359.312915,0.95,4,3992.50,52.37,1643.85,2050.29,0.00,0.000000,0.000000,199,0,0.001145,0.003201,55749937,36922478,0,0,49637,0,1,1 +1774118364.317483,0.55,4,3992.50,52.33,1643.11,2049.00,0.00,3515225640385.223633,0.000000,21,0,0.001143,0.003185,55749972,36922540,0,0,49639,0,1,1 +1774118369.317440,0.55,4,3992.50,52.33,1643.11,2049.00,0.00,0.048047,0.000000,70,0,0.001132,0.003198,55750006,36922603,0,0,49642,0,1,1 +1774118374.314173,0.45,4,3992.50,52.33,1643.11,2049.00,0.00,3520737860387.334473,0.000000,21,0,0.000916,0.003200,55750034,36922657,0,0,49644,0,1,1 +1774118379.317120,0.55,4,3992.50,52.31,1643.86,2048.25,0.00,2.005654,0.000195,238,2,0.001144,0.003196,55750069,36922720,0,0,49647,0,1,1 +1774118384.312838,0.65,4,3992.50,52.31,1643.87,2048.24,0.00,3521453009410.075684,3521453009412.084473,21,0,0.001171,0.003222,55750106,36922784,0,0,49649,0,1,1 +1774118389.317135,0.50,4,3992.50,52.31,1643.87,2048.24,0.00,82597.739134,113967.184144,6899034,1995989,0.001194,0.003257,55750145,36922851,0,0,49652,0,1,1 +1774118394.317466,0.75,4,3992.50,52.22,1644.42,2044.44,0.00,3518204333670.165039,3518204302275.787109,70,0,0.001126,0.003294,55750187,36922920,0,0,49654,0,1,1 +1774118399.314436,0.55,4,3992.50,52.22,1644.18,2044.68,0.00,0.127030,0.000000,199,0,0.001174,0.002687,55750225,36922981,0,0,49657,0,1,1 +1774118404.313507,0.60,4,3992.50,52.23,1643.80,2045.05,0.00,3519090798355.961426,0.000000,70,0,0.002067,0.003858,55750262,36923046,0,0,49659,0,1,1 +1774118409.317761,0.55,4,3992.50,52.28,1642.08,2046.78,0.00,1.489065,0.028296,237,378,0.001143,0.003195,55750297,36923109,0,0,49662,0,1,1 +1774118414.317168,0.50,4,3992.50,52.28,1641.85,2047.01,0.00,3518855236919.875000,3518855236921.210449,199,0,0.001132,0.003188,55750331,36923171,0,0,49664,0,1,1 +1774118419.313579,36.03,4,3992.50,58.64,1401.03,2296.00,0.00,82723.838343,114147.266358,6898272,1995798,70.756327,0.038523,55757893,36925786,0,0,49667,0,1,1 +1774118424.316617,28.89,4,3992.50,58.65,1405.59,2296.36,0.00,3516301143462.877930,3516301112081.239746,21,0,119.093518,0.053936,55770104,36929815,0,0,49669,0,1,1 +1774118429.317369,28.04,4,3992.50,58.30,1419.44,2282.63,0.00,0.048040,0.000000,70,0,119.146652,0.024563,55782322,36931633,0,0,49672,0,1,1 +1774118434.316485,27.47,4,3992.50,58.49,1411.89,2290.16,0.00,1.490596,0.028325,237,378,118.781236,0.036474,55794346,36934492,0,0,49674,0,1,1 +1774118439.317329,27.95,4,3992.50,58.44,1414.04,2288.04,0.00,3517843031825.957520,3517843031827.292480,199,0,119.544624,0.020475,55806613,36936014,0,0,49677,0,1,1 +1774118444.316290,28.08,4,3992.50,58.59,1408.00,2294.00,0.00,1.363662,0.028326,237,378,119.188023,0.041362,55818731,36939145,0,0,49679,0,1,1 +1774118449.316695,28.43,4,3992.50,58.77,1401.25,2300.80,0.00,3518152446104.521484,3518152446106.031250,21,0,119.151620,0.045248,55830713,36942718,0,0,49682,0,1,1 +1774118454.314144,28.00,4,3992.50,58.30,1419.49,2282.51,0.00,2.007860,0.000195,238,2,120.227385,0.044500,55843012,36946132,0,0,49684,0,1,1 +1774118459.316823,17.78,4,3992.50,58.52,1412.53,2291.09,0.00,3516552723442.402832,3516552723444.233887,199,0,118.096781,0.046453,55854948,36949737,0,0,49687,0,1,1 +1774118464.317597,0.85,4,3992.50,53.35,1615.02,2088.60,0.00,82651.836666,114048.253322,6898287,1996029,1.406002,0.004749,55855198,36949886,0,0,49689,0,1,1 +1774118469.316414,19.60,4,3992.50,53.42,1612.42,2091.33,0.00,3519269476386.665527,3519269444976.132812,238,2,27.900251,0.124928,55864111,36956517,0,0,49692,0,1,1 +1774118474.317262,9.15,4,3992.50,52.36,1653.51,2050.05,0.00,3517840462125.104492,3517840462127.110840,21,0,12.361196,0.061623,55868298,36959611,0,0,49694,0,1,1 +1774118479.317557,0.50,4,3992.50,52.31,1655.56,2048.01,0.00,0.000000,0.000000,21,0,0.002721,0.003964,55868362,36959692,0,0,49697,0,1,1 +1774118484.317414,1.61,4,3992.50,52.82,1636.98,2068.02,0.00,0.048048,0.000000,70,0,0.010412,4.213952,55868932,36960471,0,0,49699,0,1,1 +1774118489.317219,28.59,4,3992.50,52.74,1632.66,2064.89,0.00,0.126958,0.000000,199,0,0.041578,116.770213,55871980,36972512,0,0,49702,0,1,1 +1774118494.316189,21.34,4,3992.50,52.82,1623.69,2067.96,0.00,3519162511091.938965,0.000000,70,0,0.038800,84.137826,55874891,36981245,0,0,49704,0,1,1 +1774118499.314992,1.25,4,3992.50,52.42,1640.26,2052.48,0.00,1.959258,0.000195,238,2,0.006088,0.006999,55875007,36981385,0,0,49707,0,1,1 +1774118504.313581,15.39,4,3992.50,53.74,1590.98,2104.18,0.00,3519430417484.906250,3519430417486.914062,21,0,40.077028,0.025601,55879455,36982822,0,0,49709,0,1,1 +1774118509.316840,0.85,4,3992.50,53.20,1622.06,2082.80,0.00,0.000000,0.000000,21,0,0.002832,0.004086,55879528,36982911,0,0,49712,0,1,1 +1774118514.317098,0.55,4,3992.50,52.88,1634.42,2070.50,0.00,1.538300,0.028319,237,378,0.002721,0.003942,55879592,36982990,0,0,49714,0,1,1 +1774118519.317562,0.55,4,3992.50,52.86,1635.22,2069.68,0.00,3518110598048.118652,3518110598049.580566,70,0,0.002733,0.004608,55879657,36983075,0,0,49717,0,1,1 +1774118524.314342,1.00,4,3992.50,52.90,1633.59,2071.32,0.00,1.960051,0.000195,238,2,0.002735,0.003957,55879722,36983155,0,0,49719,0,1,1 +1774118529.312828,0.60,4,3992.50,52.91,1633.45,2071.46,0.00,82704.117530,114307.364428,6898424,1999146,0.002747,0.003997,55879788,36983238,0,0,49722,0,1,1 +1774118534.317123,0.55,4,3992.50,52.90,1633.95,2070.97,0.00,0.000000,0.076106,6898424,1999204,0.002881,0.003801,55879852,36983317,0,0,49724,0,1,1 +1774118539.316948,0.90,4,3992.50,52.89,1634.70,2070.95,0.00,3518559984464.860840,3518559952871.964844,70,0,0.002128,0.003727,55879906,36983391,0,0,49727,0,1,1 +1774118544.313525,0.55,4,3992.50,52.89,1635.07,2070.62,0.00,82741.792937,114351.279368,6899198,1999700,0.002608,0.003769,55879971,36983469,0,0,49729,0,1,1 +1774118549.317458,0.60,4,3992.50,52.89,1634.93,2070.76,0.00,0.000000,0.005757,6899198,1999710,0.002767,0.003606,55880038,36983547,0,0,49732,0,1,1 +1774118554.317403,0.55,4,3992.50,52.90,1634.38,2071.32,0.00,3518476348409.990723,3518476348414.092773,6898424,1999358,0.002721,0.003954,55880102,36983627,0,0,49734,0,1,1 +1774118559.314043,0.50,4,3992.50,52.89,1635.11,2070.58,0.00,3520803189036.110840,3520803157422.963867,21,0,0.004059,0.005702,55880182,36983733,0,0,49737,0,1,1 +1774118564.317140,0.55,4,3992.50,52.73,1641.20,2064.51,0.00,0.000000,0.000000,21,0,0.002732,0.003952,55880247,36983813,0,0,49739,0,1,1 +1774118569.316891,0.85,4,3992.50,52.73,1640.51,2064.50,0.00,2.006936,0.000195,238,2,0.002746,0.003952,55880313,36983893,0,0,49742,0,1,1 +1774118574.316399,10.74,4,3992.50,53.05,1623.76,2077.15,0.00,82691.318097,114318.455917,6899198,2000095,0.024408,40.067001,55881925,36988224,0,0,49744,0,1,1 +1774118579.315152,0.80,4,3992.50,52.70,1637.47,2063.43,0.00,3519315089733.498047,3519315058103.541016,70,0,0.002562,0.006292,55881998,36988344,0,0,49747,0,1,1 +1774118584.312830,0.50,4,3992.50,52.70,1637.59,2063.32,0.00,0.127012,0.000000,199,0,0.000916,0.003200,55882026,36988398,0,0,49749,0,1,1 +1774118589.316824,0.55,4,3992.50,52.70,1637.61,2063.31,0.00,82614.909534,114216.030071,6898424,1999813,0.001118,0.003195,55882059,36988461,0,0,49752,0,1,1 +1774118594.317869,0.60,4,3992.50,52.70,1637.61,2063.31,0.00,3517701643736.908691,3517701612115.821777,237,378,0.003317,0.004196,55882138,36988549,0,0,49754,0,1,1 +1774118599.317302,0.85,4,3992.50,52.75,1633.94,2065.09,0.00,3518836311073.508301,3518836311074.970215,70,0,0.001145,0.003198,55882173,36988612,0,0,49757,0,1,1 +1774118604.317757,0.55,4,3992.50,52.79,1631.84,2066.98,0.00,0.000000,0.000000,70,0,0.001132,0.003188,55882207,36988674,0,0,49759,0,1,1 +1774118609.312913,0.55,4,3992.50,52.81,1631.12,2067.70,0.00,82761.205623,114424.276186,6898425,1999939,0.000916,0.002567,55882235,36988725,0,0,49762,0,1,1 +1774118614.312910,0.50,4,3992.50,52.81,1631.12,2067.70,0.00,3518439291449.837402,3518439259817.294434,199,0,0.000941,0.002585,55882265,36988777,0,0,49764,0,1,1 +1774118619.317778,0.55,4,3992.50,52.81,1631.13,2067.69,0.00,1.830054,0.000195,238,2,0.001237,0.003313,55882307,36988848,0,0,49767,0,1,1 +1774118624.317441,0.60,4,3992.50,52.81,1631.13,2067.69,0.00,82684.639733,114321.140472,6898425,1999954,0.001269,0.003289,55882350,36988918,0,0,49769,0,1,1 +1774118629.315638,0.80,4,3992.50,53.12,1619.08,2079.71,0.00,3519706237241.210449,3519706205595.430176,238,2,0.001153,0.003207,55882386,36988982,0,0,49772,0,1,1 +1774118634.317089,0.55,4,3992.50,52.81,1631.22,2067.60,0.00,82655.088681,114280.331125,6898425,1999979,0.001144,0.003187,55882421,36989044,0,0,49774,0,1,1 +1774118639.317470,0.85,4,3992.50,52.58,1640.12,2058.70,0.00,3518168779989.330566,3518168748359.331543,21,0,0.002616,0.003710,55882486,36989130,0,0,49777,0,1,1 +1774118644.317668,38.96,4,3992.50,59.15,1390.15,2315.85,0.00,82677.798162,114308.982993,6898425,2000032,75.307264,0.034190,55890491,36991419,0,0,49779,0,1,1 +1774118649.313341,28.31,4,3992.50,59.47,1381.68,2328.51,0.00,3521484710629.303711,3521484678969.465332,21,0,118.469223,0.024286,55902751,36993010,0,0,49782,0,1,1 +1774118654.312820,27.65,4,3992.50,58.89,1404.48,2305.77,0.00,0.048052,0.000000,70,0,120.179664,0.018108,55915116,36994274,0,0,49784,0,1,1 +1774118659.317103,27.93,4,3992.50,59.32,1387.57,2322.67,0.00,1.957113,0.000195,238,2,120.061992,0.024744,55927288,36996168,0,0,49787,0,1,1 +1774118664.313328,27.69,4,3992.50,58.93,1402.87,2307.34,0.00,0.000000,0.000000,238,2,118.254198,0.024998,55939385,36998037,0,0,49789,0,1,1 +1774118669.317364,28.34,4,3992.50,59.18,1397.16,2317.10,0.00,82616.485051,114221.543186,6899199,2000597,120.068927,0.019620,55951691,36999425,0,0,49792,0,1,1 +1774118674.317690,27.94,4,3992.50,59.00,1404.04,2310.17,0.00,3518208537989.671875,0.117375,6898425,2000236,119.759887,0.025806,55963992,37001249,0,0,49794,0,1,1 +1774118679.316375,27.96,4,3992.50,59.00,1404.33,2309.91,0.00,3519362075088.531738,3519362043447.375488,70,0,118.595052,0.034215,55976106,37003856,0,0,49797,0,1,1 +1774118684.313807,15.97,4,3992.50,52.64,1653.49,2060.85,0.00,82727.699342,114372.746627,6899205,2000640,114.818800,0.036779,55987910,37006584,0,0,49799,0,1,1 +1774118689.315682,1.91,4,3992.50,52.87,1639.33,2070.07,0.00,3517118088739.549805,3517118057122.614258,70,0,0.004043,0.004111,55987997,37006674,0,0,49802,0,1,1 +1774118694.313044,20.19,4,3992.50,54.02,1594.43,2114.97,0.00,1.959823,0.000195,238,2,30.090011,0.136005,55997669,37013923,0,0,49804,0,1,1 +1774118699.314070,7.69,4,3992.50,55.12,1551.09,2158.26,0.00,3517715067708.088379,3517715067710.095215,21,0,10.183026,0.054673,56001201,37016616,0,0,49807,0,1,1 +1774118704.315298,0.85,4,3992.50,53.72,1606.03,2103.37,0.00,2.006343,0.000195,238,2,0.003438,0.003977,56001262,37016686,0,0,49809,0,1,1 +1774118709.316306,0.75,4,3992.50,53.10,1630.57,2078.82,0.00,3517728418266.006836,0.028119,237,378,0.002504,0.003317,56001320,37016754,0,0,49812,0,1,1 +1774118714.316666,2.11,4,3992.50,52.78,1642.62,2066.64,0.00,3518183747666.291992,3518183747667.802246,21,0,0.011028,5.015614,56001928,37017635,0,0,49814,0,1,1 +1774118719.317395,28.34,4,3992.50,52.75,1636.57,2065.46,0.00,2.006543,0.000195,238,2,0.032719,117.149443,56004262,37029708,0,0,49817,0,1,1 +1774118724.316524,21.35,4,3992.50,53.10,1617.12,2079.01,0.00,3519050311198.849609,3519050311200.808594,70,0,0.012768,82.932174,56005157,37038376,0,0,49819,0,1,1 +1774118729.317443,1.61,4,3992.50,53.13,1616.64,2079.97,0.00,3517790439893.360840,0.000000,21,0,0.005454,0.006733,56005260,37038507,0,0,49822,0,1,1 +1774118734.316525,14.48,4,3992.50,53.55,1602.06,2096.75,0.00,0.000000,0.000000,21,0,40.072150,0.031930,56009677,37040435,0,0,49824,0,1,1 +1774118739.316799,0.70,4,3992.50,53.03,1622.46,2076.39,0.00,2.006726,0.000195,238,2,0.002733,0.003951,56009742,37040515,0,0,49827,0,1,1 +1774118744.312905,0.75,4,3992.50,52.88,1628.43,2070.42,0.00,0.000000,0.000000,238,2,0.002744,0.003965,56009808,37040596,0,0,49829,0,1,1 +1774118749.316757,1.05,4,3992.50,52.92,1630.86,2071.85,0.00,3515728494065.423340,3515728494067.428711,21,0,0.002503,0.003328,56009866,37040665,0,0,49832,0,1,1 +1774118754.315214,0.65,4,3992.50,52.65,1641.41,2061.18,0.00,0.000000,0.000000,21,0,0.002734,0.003956,56009931,37040745,0,0,49834,0,1,1 +1774118759.314718,0.55,4,3992.50,52.64,1641.44,2061.16,0.00,0.000000,0.000000,21,0,0.002759,0.003983,56009998,37040827,0,0,49837,0,1,1 +1774118764.317716,0.70,4,3992.50,52.59,1643.47,2059.09,0.00,0.000000,0.000000,21,0,0.002491,0.003306,56010055,37040894,0,0,49839,0,1,1 +1774118769.315795,0.80,4,3992.50,52.59,1643.52,2059.07,0.00,0.000000,0.000000,21,0,0.002743,0.003974,56010121,37040976,0,0,49842,0,1,1 +1774118774.315507,0.50,4,3992.50,52.59,1643.53,2059.06,0.00,82702.287106,114527.733255,6898566,2003637,0.002814,0.004030,56010191,37041062,0,0,49844,0,1,1 +1774118779.313695,0.85,4,3992.50,52.68,1641.11,2062.49,0.00,4.110767,0.075711,6899340,2004035,0.002809,0.004650,56010261,37041150,0,0,49847,0,1,1 +1774118784.317152,0.45,4,3992.50,52.68,1640.64,2062.68,0.00,0.000000,0.051137,6899340,2004083,0.002503,0.003318,56010319,37041218,0,0,49849,0,1,1 +1774118789.315038,0.50,4,3992.50,52.68,1640.64,2062.67,0.00,3519925055527.338379,3519925023692.246582,238,2,0.002722,0.003953,56010383,37041298,0,0,49852,0,1,1 +1774118794.314445,0.75,4,3992.50,52.68,1640.89,2062.42,0.00,82711.860442,114534.920246,6899559,2004160,0.002721,0.003955,56010447,37041378,0,0,49854,0,1,1 +1774118799.316622,11.21,4,3992.50,53.04,1625.26,2076.76,0.00,3516906392673.263184,3516906360868.314453,237,378,0.029899,40.046746,56012497,37045812,0,0,49857,0,1,1 +1774118804.315511,1.35,4,3992.50,52.85,1632.80,2069.29,0.00,3519219318775.378906,3519219318776.889160,21,0,0.002570,0.006287,56012571,37045931,0,0,49859,0,1,1 +1774118809.317680,0.80,4,3992.50,52.93,1627.69,2072.48,0.00,0.000000,0.000000,21,0,0.001144,0.003196,56012606,37045994,0,0,49862,0,1,1 +1774118814.312831,0.60,4,3992.50,52.93,1627.57,2072.41,0.00,0.048094,0.000000,70,0,0.001133,0.003178,56012640,37046055,0,0,49864,0,1,1 +1774118819.317399,0.50,4,3992.50,52.74,1634.97,2065.00,0.00,3515225573657.028320,0.000000,21,0,0.001143,0.003195,56012675,37046118,0,0,49867,0,1,1 +1774118824.315160,0.45,4,3992.50,52.75,1634.73,2065.25,0.00,1.539068,0.028333,237,378,0.000911,0.002563,56012703,37046169,0,0,49869,0,1,1 +1774118829.317013,0.65,4,3992.50,52.73,1635.48,2064.50,0.00,3517134420086.896484,3517134420088.357910,70,0,0.001131,0.003197,56012737,37046232,0,0,49872,0,1,1 +1774118834.312845,0.65,4,3992.50,52.74,1635.27,2064.71,0.00,82773.013010,114657.186813,6899560,2004574,0.001758,0.004332,56012785,37046318,0,0,49874,0,1,1 +1774118839.316762,0.75,4,3992.50,52.75,1632.57,2065.39,0.00,3515682618379.542969,3515682586546.760254,199,0,0.001194,0.003257,56012824,37046385,0,0,49877,0,1,1 +1774118844.312916,0.70,4,3992.50,52.75,1632.57,2065.39,0.00,82767.560087,114649.914964,6899560,2004659,0.001221,0.003928,56012865,37046457,0,0,49879,0,1,1 +1774118849.312843,0.55,4,3992.50,52.55,1640.45,2057.52,0.00,3518488568593.148926,3518488536734.980469,70,0,0.001269,0.003299,56012908,37046528,0,0,49882,0,1,1 +1774118854.316764,0.50,4,3992.50,52.56,1640.23,2057.73,0.00,0.000000,0.000000,70,0,0.001139,0.003193,56012943,37046591,0,0,49884,0,1,1 +1774118859.316360,0.45,4,3992.50,52.49,1642.98,2054.98,0.00,82706.588366,114570.974669,6898786,2004313,0.001408,0.004250,56012989,37046675,0,0,49887,0,1,1 +1774118864.313511,0.85,4,3992.50,52.54,1640.82,2057.14,0.00,0.000000,0.007524,6898786,2004323,0.002438,0.003272,56013042,37046742,0,0,49889,0,1,1 +1774118869.313009,27.50,4,3992.50,58.92,1396.34,2307.00,0.00,4.109690,0.101866,6899560,2004763,48.879094,0.027275,56018318,37048484,0,0,49892,0,1,1 +1774118874.315206,30.92,4,3992.50,58.80,1404.82,2302.32,0.00,3516891744161.597168,3516891712315.819824,238,2,119.112981,0.035982,56030468,37051085,0,0,49894,0,1,1 +1774118879.318664,27.69,4,3992.50,58.71,1408.51,2298.62,0.00,0.000000,0.000000,238,2,119.082889,0.019530,56042732,37052466,0,0,49897,0,1,1 +1774118884.313743,27.94,4,3992.50,58.60,1412.69,2294.42,0.00,82783.536402,114674.717930,6899560,2004802,119.479945,0.042704,56054855,37055750,0,0,49899,0,1,1 +1774118889.312797,28.15,4,3992.50,58.79,1405.39,2301.78,0.00,3519102829936.268066,3519102798070.943359,237,378,118.989308,0.024247,56067123,37057499,0,0,49902,0,1,1 +1774118894.317319,27.90,4,3992.50,58.75,1407.04,2300.12,0.00,0.468034,3515257956858.120117,238,2,119.859647,0.027799,56079468,37059436,0,0,49904,0,1,1 +1774118899.317080,27.88,4,3992.50,58.90,1401.12,2306.01,0.00,3518605331362.705566,3518605331364.537598,199,0,118.368519,0.024835,56091573,37061285,0,0,49907,0,1,1 +1774118904.316863,28.44,4,3992.50,58.74,1409.20,2299.63,0.00,1.831916,0.000195,238,2,120.192000,0.081452,56104215,37067582,0,0,49909,0,1,1 +1774118909.316861,22.34,4,3992.50,58.84,1405.04,2303.90,0.00,3518438656366.904297,3518438656368.862793,70,0,118.770194,0.050898,56116423,37071422,0,0,49912,0,1,1 +1774118914.317139,1.50,4,3992.50,53.59,1610.58,2098.36,0.00,0.000000,0.000000,70,0,22.637270,0.008393,56118891,37071814,0,0,49914,0,1,1 +1774118919.314977,12.08,4,3992.50,53.25,1624.07,2084.83,0.00,0.127008,0.000000,199,0,14.113109,0.076213,56123801,37075488,0,0,49917,0,1,1 +1774118924.317154,15.72,4,3992.50,52.23,1664.00,2044.91,0.00,1.362785,0.028308,237,378,26.135111,0.108836,56131928,37081596,0,0,49919,0,1,1 +1774118929.317444,1.31,4,3992.50,52.71,1643.18,2063.70,0.00,82693.758230,114556.128383,6898797,2005463,0.003427,0.005335,56132008,37081699,0,0,49922,0,1,1 +1774118934.314122,0.85,4,3992.50,52.54,1648.89,2057.18,0.00,0.000000,0.053747,6898797,2005475,0.002743,0.003965,56132074,37081780,0,0,49924,0,1,1 +1774118939.316381,0.65,4,3992.50,52.55,1648.72,2057.34,0.00,3516848458822.065430,3516848426973.691406,21,0,0.002732,0.003950,56132139,37081860,0,0,49927,0,1,1 +1774118944.313992,0.50,4,3992.50,52.55,1648.76,2057.29,0.00,82739.615195,114618.272608,6898797,2005997,0.002722,0.003956,56132203,37081940,0,0,49929,0,1,1 +1774118949.312816,0.60,4,3992.50,52.55,1648.54,2057.52,0.00,0.000000,0.028522,6898797,2006005,0.002505,0.003294,56132261,37082006,0,0,49932,0,1,1 +1774118954.315578,0.55,4,3992.50,52.54,1648.83,2057.23,0.00,3516494156261.889648,3516494124414.518555,237,378,0.002478,0.003319,56132317,37082074,0,0,49934,0,1,1 +1774118959.312844,0.75,4,3992.50,52.59,1640.55,2059.12,0.00,0.000000,0.000000,237,378,0.002856,0.004130,56132392,37082166,0,0,49937,0,1,1 +1774118964.316153,0.65,4,3992.50,52.55,1642.25,2057.29,0.00,3516110120624.043457,3516110120625.377930,199,0,0.002719,0.003952,56132456,37082246,0,0,49939,0,1,1 +1774118969.312796,0.55,4,3992.50,52.55,1642.29,2057.28,0.00,1.364295,0.028339,237,378,0.002735,0.003967,56132521,37082327,0,0,49942,0,1,1 +1774118974.317229,0.55,4,3992.50,52.34,1650.17,2049.40,0.00,0.468042,3515320938038.185547,238,2,0.002806,0.003991,56132591,37082410,0,0,49944,0,1,1 +1774118979.317767,0.65,4,3992.50,52.37,1649.24,2050.32,0.00,0.000000,0.000000,238,2,0.002733,0.004447,56132656,37082494,0,0,49947,0,1,1 +1774118984.317018,0.55,4,3992.50,52.37,1649.26,2050.30,0.00,3518964123789.439941,3518964123791.447266,21,0,0.002734,0.004103,56132721,37082574,0,0,49949,0,1,1 +1774118989.313800,0.80,4,3992.50,52.23,1648.77,2045.11,0.00,0.000000,0.000000,21,0,0.001719,0.002945,56132765,37082634,0,0,49952,0,1,1 +1774118994.317502,23.07,4,3992.50,52.48,1632.90,2054.59,0.00,82638.903453,114543.982686,6898798,2006681,0.050260,96.474398,56136279,37092965,0,0,49954,0,1,1 +1774118999.315200,26.83,4,3992.50,52.07,1641.02,2038.80,0.00,3520058048849.546875,3520058016906.134766,21,0,0.043678,108.605243,56139517,37104232,0,0,49957,0,1,1 +1774119004.316876,1.35,4,3992.50,52.14,1639.67,2041.29,0.00,0.048031,0.000000,70,0,0.006124,0.006802,56139634,37104371,0,0,49959,0,1,1 +1774119009.317391,14.48,4,3992.50,52.56,1625.66,2057.76,0.00,1.958587,0.000195,238,2,40.058687,0.024984,56143902,37105834,0,0,49962,0,1,1 +1774119014.316582,0.80,4,3992.50,52.57,1625.05,2058.35,0.00,3519006784762.354004,3519006784764.361328,21,0,0.003907,0.005337,56143987,37105926,0,0,49964,0,1,1 +1774119019.317211,0.95,4,3992.50,52.74,1618.84,2064.92,0.00,0.174978,0.000000,199,0,0.002733,0.003964,56144052,37106007,0,0,49967,0,1,1 +1774119024.317333,10.95,4,3992.50,52.67,1619.78,2062.03,0.00,3518351502544.093262,0.000000,21,0,0.024256,40.063771,56145653,37110486,0,0,49969,0,1,1 +1774119029.317546,0.75,4,3992.50,52.53,1625.01,2056.80,0.00,0.000000,0.000000,21,0,0.002545,0.006283,56145724,37110605,0,0,49972,0,1,1 +1774119034.312909,0.45,4,3992.50,52.53,1625.01,2056.80,0.00,0.048091,0.000000,70,0,0.001145,0.003191,56145759,37110667,0,0,49974,0,1,1 +1774119039.313007,0.55,4,3992.50,52.53,1625.02,2056.79,0.00,1.958751,0.000195,238,2,0.001178,0.003237,56145797,37110733,0,0,49977,0,1,1 +1774119044.317819,0.55,4,3992.50,52.54,1624.79,2057.03,0.00,3515054595918.361816,3515054595920.366699,21,0,0.000902,0.002552,56145824,37110783,0,0,49979,0,1,1 +1774119049.317289,0.85,4,3992.50,52.82,1616.89,2068.10,0.00,1.538542,0.028323,237,378,0.001145,0.003842,56145859,37110850,0,0,49982,0,1,1 +1774119054.317203,0.60,4,3992.50,52.72,1617.66,2064.16,0.00,0.468465,3518497721414.383789,238,2,0.001144,0.003188,56145894,37110912,0,0,49984,0,1,1 +1774119059.317160,0.50,4,3992.50,52.63,1621.33,2060.50,0.00,3518466902630.770996,3518466902632.777832,21,0,0.001170,0.003229,56145931,37110977,0,0,49987,0,1,1 +1774119064.315098,0.55,4,3992.50,52.63,1621.11,2060.71,0.00,0.175072,0.000000,199,0,0.001195,0.003251,56145970,37111043,0,0,49989,0,1,1 +1774119069.314018,0.85,4,3992.50,52.65,1620.40,2061.43,0.00,82734.119282,114834.490385,6898927,2008404,0.001259,0.003325,56146014,37111115,0,0,49992,0,1,1 +1774119074.317597,0.45,4,3992.50,52.68,1619.42,2062.40,0.00,3515920166817.536621,3515920134747.059570,199,0,0.001268,0.003286,56146057,37111185,0,0,49994,0,1,1 +1774119079.317725,0.75,4,3992.50,52.85,1612.54,2069.26,0.00,82718.240319,114806.820791,6899701,2008803,0.001144,0.003198,56146092,37111248,0,0,49997,0,1,1 +1774119084.312844,0.55,4,3992.50,52.77,1615.90,2065.91,0.00,3521875563563.509277,3521875531442.925293,21,0,0.000916,0.002557,56146120,37111298,0,0,49999,0,1,1 +1774119089.313365,15.02,4,3992.50,58.82,1384.17,2302.87,0.00,82711.894343,114797.797328,6899701,2008850,8.217409,0.014726,56147287,37112110,0,0,50002,0,1,1 +1774119094.313638,33.92,4,3992.50,58.59,1398.43,2294.05,0.00,3518245033502.136719,3518245001414.588379,70,0,120.160070,0.038283,56159541,37114885,0,0,50004,0,1,1 +1774119099.316914,27.55,4,3992.50,58.84,1389.39,2303.72,0.00,0.000000,0.000000,70,0,118.087840,0.018789,56171753,37116178,0,0,50007,0,1,1 +1774119104.316782,27.79,4,3992.50,58.82,1390.18,2302.92,0.00,82718.550434,114812.992693,6898927,2008627,120.171107,0.019552,56184159,37117492,0,0,50009,0,1,1 +1774119109.317066,27.56,4,3992.50,58.94,1385.50,2307.61,0.00,3518237037693.669922,3518237005601.898926,70,0,118.755379,0.025990,56196199,37119432,0,0,50012,0,1,1 +1774119114.313750,27.67,4,3992.50,58.61,1401.08,2294.53,0.00,0.000000,0.000000,70,0,119.641657,0.021769,56208280,37121008,0,0,50014,0,1,1 +1774119119.315473,27.67,4,3992.50,58.91,1389.30,2306.42,0.00,1.489819,0.028311,237,378,119.123064,0.026916,56220435,37122965,0,0,50017,0,1,1 +1774119124.317225,27.92,4,3992.50,58.80,1393.77,2301.97,0.00,3517204897760.305176,3517204897761.639648,199,0,119.121310,0.031107,56232518,37125312,0,0,50019,0,1,1 +1774119129.318091,28.07,4,3992.50,58.80,1393.55,2302.23,0.00,82701.911010,114790.209240,6898927,2008718,119.740755,0.045624,56244535,37128785,0,0,50022,0,1,1 +1774119134.313000,5.01,4,3992.50,52.39,1644.68,2051.15,0.00,3522023330626.164551,3522023298497.759766,238,2,62.353347,0.027869,56250928,37130683,0,0,50024,0,1,1 +1774119139.316414,3.26,4,3992.50,52.41,1645.37,2052.07,0.00,3516036064958.332031,0.028106,237,378,2.019252,0.014494,56251711,37131242,0,0,50027,0,1,1 +1774119144.317211,17.07,4,3992.50,53.32,1609.32,2087.73,0.00,3517876771008.419922,3517876771009.754883,199,0,24.137696,0.107326,56259323,37137069,0,0,50029,0,1,1 +1774119149.315394,8.71,4,3992.50,53.74,1592.96,2104.07,0.00,3519716195610.810059,0.000000,21,0,14.103890,0.069894,56264264,37140745,0,0,50032,0,1,1 +1774119154.317502,0.55,4,3992.50,53.24,1612.61,2084.43,0.00,2.005991,0.000195,238,2,0.002720,0.003953,56264328,37140825,0,0,50034,0,1,1 +1774119159.312917,0.75,4,3992.50,53.05,1619.93,2077.09,0.00,3521666286680.777344,3521666286682.786133,21,0,0.003138,0.005021,56264406,37140927,0,0,50037,0,1,1 +1774119164.313681,0.50,4,3992.50,53.07,1619.19,2077.86,0.00,82703.889383,114793.557729,6898942,2010103,0.002733,0.003941,56264471,37141006,0,0,50039,0,1,1 +1774119169.317427,0.85,4,3992.50,53.24,1614.16,2084.64,0.00,3515802762579.977051,3515802730509.385742,70,0,0.002719,0.003949,56264535,37141086,0,0,50042,0,1,1 +1774119174.317572,0.50,4,3992.50,53.19,1615.88,2082.43,0.00,3518335441734.166992,0.000000,21,0,0.002513,0.003316,56264594,37141154,0,0,50044,0,1,1 +1774119179.317503,0.55,4,3992.50,53.17,1616.52,2081.79,0.00,2.006864,0.000195,238,2,0.002662,0.004143,56264664,37141238,0,0,50047,0,1,1 +1774119184.313447,0.65,4,3992.50,53.18,1616.29,2082.02,0.00,3521293683022.658691,0.028148,237,378,0.002736,0.003945,56264729,37141317,0,0,50049,0,1,1 +1774119189.316966,0.55,4,3992.50,53.18,1616.30,2082.01,0.00,0.468128,3515962604083.166016,238,2,0.002732,0.003961,56264794,37141398,0,0,50052,0,1,1 +1774119194.317187,0.70,4,3992.50,53.22,1614.77,2083.52,0.00,3518281839444.368652,3518281839446.200684,199,0,0.004806,0.004857,56264905,37141505,0,0,50054,0,1,1 +1774119199.317660,0.80,4,3992.50,53.19,1618.02,2082.60,0.00,3518104384950.274902,0.000000,21,0,0.002741,0.003972,56264971,37141587,0,0,50057,0,1,1 +1774119204.313366,0.50,4,3992.50,53.19,1617.93,2082.55,0.00,1.539701,0.028345,237,378,0.002767,0.003983,56265038,37141669,0,0,50059,0,1,1 +1774119209.312901,0.65,4,3992.50,53.20,1617.71,2082.76,0.00,0.468501,3518764826297.335938,238,2,0.002734,0.003965,56265103,37141750,0,0,50062,0,1,1 +1774119214.317296,0.55,4,3992.50,53.20,1617.72,2082.74,0.00,3515347105581.210449,3515347105583.215820,21,0,0.002503,0.003318,56265161,37141818,0,0,50064,0,1,1 +1774119219.312868,0.45,4,3992.50,53.00,1625.38,2075.09,0.00,82793.970158,114913.949718,6899717,2011065,0.002736,0.003968,56265226,37141899,0,0,50067,0,1,1 +1774119224.312891,1.35,4,3992.50,52.96,1626.95,2073.52,0.00,3518420525550.834961,3518420493459.455078,21,0,0.002742,0.003950,56265292,37141979,0,0,50069,0,1,1 +1774119229.317472,0.75,4,3992.50,52.96,1630.68,2073.59,0.00,0.000000,0.000000,21,0,0.002731,0.003961,56265357,37142060,0,0,50072,0,1,1 +1774119234.316710,0.45,4,3992.50,52.94,1631.16,2072.86,0.00,82729.131977,114829.741367,6898943,2010782,0.002734,0.003942,56265422,37142139,0,0,50074,0,1,1 +1774119239.312917,0.55,4,3992.50,52.94,1631.16,2072.85,0.00,3521108646930.658691,3521108614810.520508,70,0,0.002786,0.004029,56265491,37142224,0,0,50077,0,1,1 +1774119244.312815,0.50,4,3992.50,52.94,1631.18,2072.84,0.00,0.126956,0.000000,199,0,0.002115,0.004361,56265544,37142301,0,0,50079,0,1,1 +1774119249.317259,22.31,4,3992.50,53.15,1617.61,2080.96,0.00,3515312847335.678223,0.000000,70,0,0.039332,93.456084,56268315,37152283,0,0,50082,0,1,1 +1774119254.315547,27.30,4,3992.50,53.10,1611.65,2078.98,0.00,1.959460,0.000195,238,2,0.022687,111.594701,56270035,37163815,0,0,50084,0,1,1 +1774119259.316386,1.55,4,3992.50,52.95,1618.88,2073.05,0.00,82704.759571,114998.142972,6899720,2012549,0.002209,0.005028,56270093,37163911,0,0,50087,0,1,1 +1774119264.317447,14.05,4,3992.50,52.86,1624.53,2069.77,0.00,3517690057441.683594,3517690025150.235840,237,378,40.055270,0.027156,56274376,37165606,0,0,50089,0,1,1 +1774119269.313921,10.81,4,3992.50,52.84,1623.82,2068.91,0.00,3520920298487.862793,3520920298489.374023,21,0,0.024798,40.094742,56275962,37170023,0,0,50092,0,1,1 +1774119274.317600,0.70,4,3992.50,52.84,1623.73,2069.00,0.00,0.048012,0.000000,70,0,0.001144,0.003198,56275997,37170086,0,0,50094,0,1,1 +1774119279.315433,0.55,4,3992.50,52.64,1631.68,2061.05,0.00,1.959638,0.000195,238,2,0.001153,0.003207,56276033,37170150,0,0,50097,0,1,1 +1774119284.317384,0.60,4,3992.50,52.65,1631.44,2061.29,0.00,3517064307355.272461,0.028114,237,378,0.001144,0.003187,56276068,37170212,0,0,50099,0,1,1 +1774119289.317202,0.80,4,3992.50,52.86,1623.21,2069.41,0.00,3518565090426.334961,3518565090427.670410,199,0,0.001144,0.003198,56276103,37170275,0,0,50102,0,1,1 +1774119294.316307,0.65,4,3992.50,52.85,1618.43,2069.32,0.00,82751.585027,115072.511097,6899832,2013130,0.001157,0.003220,56276139,37170339,0,0,50104,0,1,1 +1774119299.317894,0.60,4,3992.50,52.78,1621.29,2066.46,0.00,3517320260190.627930,3517320227883.918945,238,2,0.001144,0.003184,56276174,37170401,0,0,50107,0,1,1 +1774119304.317184,0.60,4,3992.50,52.80,1620.46,2067.29,0.00,3518937323774.124023,0.028129,237,378,0.000911,0.002575,56276202,37170453,0,0,50109,0,1,1 +1774119309.317238,0.60,4,3992.50,52.80,1620.46,2067.29,0.00,82730.418605,115056.736573,6899059,2012901,0.002217,0.004667,56276251,37170533,0,0,50112,0,1,1 +1774119314.316175,0.50,4,3992.50,52.80,1620.47,2067.29,0.00,3519185070518.615234,3519185038186.585938,21,0,0.001376,0.003395,56276302,37170610,0,0,50114,0,1,1 +1774119319.312852,0.80,4,3992.50,52.92,1616.66,2071.96,0.00,0.000000,0.000000,21,0,0.001145,0.003213,56276337,37170674,0,0,50117,0,1,1 +1774119324.317037,0.50,4,3992.50,52.93,1616.36,2072.16,0.00,82663.668026,114961.857508,6899059,2012941,0.001143,0.003185,56276372,37170736,0,0,50119,0,1,1 +1774119329.312842,0.55,4,3992.50,52.94,1615.63,2072.89,0.00,0.000000,0.003910,6899059,2012945,0.001145,0.003201,56276407,37170799,0,0,50122,0,1,1 +1774119334.317929,36.34,4,3992.50,58.77,1397.75,2300.84,0.00,3514860827664.508301,3514860795371.965332,199,0,77.234391,0.035147,56284529,37173129,0,0,50124,0,1,1 +1774119339.313714,29.67,4,3992.50,58.82,1397.59,2302.81,0.00,3521405826535.802734,0.000000,70,0,120.066876,0.028707,56296775,37175225,0,0,50127,0,1,1 +1774119344.316812,27.87,4,3992.50,59.08,1387.47,2313.17,0.00,82681.573964,114986.978746,6899059,2013087,119.092072,0.019403,56309039,37176537,0,0,50129,0,1,1 +1774119349.317382,28.34,4,3992.50,58.99,1390.89,2309.76,0.00,3518036039083.351074,3518036006761.487793,199,0,119.150572,0.025197,56321199,37178367,0,0,50132,0,1,1 +1774119354.317278,27.79,4,3992.50,58.91,1394.02,2306.60,0.00,1.363407,0.028321,237,378,120.168353,0.021521,56333485,37179840,0,0,50134,0,1,1 +1774119359.317294,27.80,4,3992.50,58.84,1396.93,2303.73,0.00,3518425877439.328613,3518425877440.791016,70,0,118.167404,0.030387,56345735,37182007,0,0,50137,0,1,1 +1774119364.317014,27.80,4,3992.50,59.20,1382.82,2317.78,0.00,82737.442374,115064.910197,6899059,2013202,120.174419,0.028165,56358066,37184195,0,0,50139,0,1,1 +1774119369.315767,28.15,4,3992.50,58.98,1391.39,2309.27,0.00,3519314811590.525879,3519314779256.854980,21,0,118.194139,0.027487,56370218,37186232,0,0,50142,0,1,1 +1774119374.317048,15.72,4,3992.50,52.61,1640.95,2059.76,0.00,82711.728577,115029.121351,6899069,2013229,113.129662,0.027771,56381868,37188234,0,0,50144,0,1,1 +1774119379.317590,0.95,4,3992.50,53.02,1624.71,2075.85,0.00,3518056090420.397949,3518056058098.223145,21,0,0.004261,0.005266,56381961,37188339,0,0,50147,0,1,1 +1774119384.312885,15.60,4,3992.50,53.08,1621.66,2078.21,0.00,0.175165,0.000000,199,0,20.147564,0.096063,56388420,37193294,0,0,50149,0,1,1 +1774119389.316500,12.66,4,3992.50,52.90,1628.59,2071.25,0.00,82673.052166,114976.192078,6899078,2014328,20.111294,0.089335,56395021,37198129,0,0,50152,0,1,1 +1774119394.312910,1.10,4,3992.50,52.91,1628.37,2071.45,0.00,0.000000,0.017004,6899078,2014374,0.006190,0.007327,56395156,37198279,0,0,50154,0,1,1 +1774119399.312773,2.26,4,3992.50,53.12,1620.04,2079.83,0.00,3518533636714.567383,3518533604385.833496,237,378,0.010802,4.014217,56395746,37199065,0,0,50157,0,1,1 +1774119404.317451,28.26,4,3992.50,52.98,1618.33,2074.30,0.00,3515148182448.512207,3515148182449.973145,70,0,0.038905,118.057261,56398631,37211273,0,0,50159,0,1,1 +1774119409.317513,20.93,4,3992.50,52.97,1614.29,2073.95,0.00,82731.930210,115263.218677,6899080,2015720,0.017523,82.915761,56399952,37219879,0,0,50162,0,1,1 +1774119414.318371,7.42,4,3992.50,57.64,1433.91,2256.64,0.00,3517833173999.393066,3517833141471.327637,238,2,2.413663,0.013919,56400579,37220394,0,0,50164,0,1,1 +1774119419.314586,9.67,4,3992.50,53.15,1609.83,2080.85,0.00,3521102642032.375488,3521102642034.208984,199,0,37.686865,0.022136,56404531,37221643,0,0,50167,0,1,1 +1774119424.317271,0.60,4,3992.50,53.00,1615.85,2074.88,0.00,3516549375373.321289,0.000000,21,0,0.002833,0.004064,56404604,37221730,0,0,50169,0,1,1 +1774119429.312887,0.50,4,3992.50,52.99,1615.86,2074.85,0.00,0.175154,0.000000,199,0,0.002723,0.003968,56404668,37221811,0,0,50172,0,1,1 +1774119434.317058,0.55,4,3992.50,52.81,1623.06,2067.62,0.00,3515504567238.923828,0.000000,21,0,0.003330,0.005059,56404745,37221913,0,0,50174,0,1,1 +1774119439.317154,1.25,4,3992.50,52.93,1626.73,2072.36,0.00,2.006797,0.000195,238,2,0.002505,0.003318,56404803,37221981,0,0,50177,0,1,1 +1774119444.317607,0.50,4,3992.50,52.95,1625.89,2073.00,0.00,82743.898787,115255.104584,6899969,2016750,0.002759,0.003985,56404870,37222063,0,0,50179,0,1,1 +1774119449.317198,0.55,4,3992.50,52.97,1625.17,2073.73,0.00,3518724760062.894043,3518724727548.045410,70,0,0.002734,0.004609,56404935,37222148,0,0,50182,0,1,1 +1774119454.316396,0.55,4,3992.50,52.97,1625.18,2073.72,0.00,1.959103,0.000195,238,2,0.002742,0.003963,56405001,37222229,0,0,50184,0,1,1 +1774119459.313249,0.55,4,3992.50,52.97,1624.95,2073.95,0.00,3520652905031.551270,0.028143,237,378,0.003199,0.005057,56405083,37222334,0,0,50187,0,1,1 +1774119464.317222,0.50,4,3992.50,52.97,1624.96,2073.93,0.00,82686.157530,115174.125284,6899969,2016908,0.002577,0.003358,56405146,37222405,0,0,50189,0,1,1 +1774119469.314713,0.85,4,3992.50,53.17,1621.05,2081.73,0.00,0.006253,0.090964,6899970,2016979,0.002722,0.003966,56405210,37222486,0,0,50192,0,1,1 +1774119474.317415,0.60,4,3992.50,52.96,1628.77,2073.61,0.00,3516536690535.896973,3516536658041.102051,21,0,0.002745,0.003952,56405276,37222566,0,0,50194,0,1,1 +1774119479.312896,0.60,4,3992.50,52.96,1628.78,2073.61,0.00,1.539771,0.028346,237,378,0.002767,0.003993,56405343,37222649,0,0,50197,0,1,1 +1774119484.317149,0.50,4,3992.50,52.96,1628.79,2073.59,0.00,3515447600527.090820,3515447600528.551758,70,0,0.002731,0.003951,56405408,37222729,0,0,50199,0,1,1 +1774119489.317477,0.50,4,3992.50,52.96,1628.80,2073.58,0.00,82747.919450,115258.311016,6899970,2017116,0.002115,0.003727,56405461,37222803,0,0,50202,0,1,1 +1774119494.312842,11.55,4,3992.50,52.90,1628.79,2071.12,0.00,3521701695001.755859,3521701662458.935547,199,0,0.027430,40.104504,56407138,37227299,0,0,50204,0,1,1 +1774119499.312933,0.85,4,3992.50,53.05,1617.07,2077.20,0.00,3518372843066.559082,0.000000,21,0,0.001091,0.002710,56407169,37227352,0,0,50207,0,1,1 +1774119504.316539,0.75,4,3992.50,52.58,1635.63,2058.48,0.00,0.048012,0.000000,70,0,0.001139,0.003194,56407204,37227415,0,0,50209,0,1,1 +1774119509.312860,0.50,4,3992.50,52.58,1635.66,2058.48,0.00,3521028340681.115723,0.000000,21,0,0.001145,0.003200,56407239,37227478,0,0,50212,0,1,1 +1774119514.312919,0.45,4,3992.50,52.58,1635.66,2058.47,0.00,82752.529757,115298.799662,6899984,2017485,0.001144,0.003832,56407274,37227544,0,0,50214,0,1,1 +1774119519.317055,0.60,4,3992.50,52.58,1635.67,2058.47,0.00,3515528947699.173828,3515528915177.418457,238,2,0.001118,0.003195,56407307,37227607,0,0,50217,0,1,1 +1774119524.317517,0.55,4,3992.50,52.58,1635.67,2058.46,0.00,82743.855274,115295.521928,6899984,2017527,0.001144,0.003188,56407342,37227669,0,0,50219,0,1,1 +1774119529.316874,0.75,4,3992.50,52.77,1628.61,2066.09,0.00,0.000000,0.078916,6899984,2017586,0.001157,0.003198,56407378,37227732,0,0,50222,0,1,1 +1774119534.313624,0.45,4,3992.50,52.79,1627.34,2066.79,0.00,3520725507579.050781,3520725475005.133789,21,0,0.001170,0.003221,56407415,37227796,0,0,50224,0,1,1 +1774119539.317379,0.50,4,3992.50,52.40,1642.71,2051.42,0.00,2.005330,0.000195,238,2,0.001196,0.002875,56407463,37227869,0,0,50227,0,1,1 +1774119544.317737,0.65,4,3992.50,52.40,1642.71,2051.42,0.00,0.000000,0.000000,238,2,0.001170,0.003219,56407500,37227933,0,0,50229,0,1,1 +1774119549.317116,0.45,4,3992.50,52.40,1642.50,2051.66,0.00,82761.778215,115320.597379,6899984,2017608,0.001132,0.003198,56407534,37227996,0,0,50232,0,1,1 +1774119554.317304,0.85,4,3992.50,52.36,1644.01,2050.15,0.00,3518304740483.645508,3518304740487.749023,6899210,2017256,0.002523,0.003899,56407592,37228075,0,0,50234,0,1,1 +1774119559.313017,38.20,4,3992.50,59.60,1374.23,2333.45,0.00,3521456907134.162598,3521456874549.349121,21,0,90.206860,0.040465,56416970,37230872,0,0,50237,0,1,1 +1774119564.316577,29.94,4,3992.50,59.65,1374.54,2335.45,0.00,0.174875,0.000000,199,0,122.681721,0.025888,56429473,37232738,0,0,50239,0,1,1 +1774119569.317432,29.07,4,3992.50,58.90,1403.84,2306.15,0.00,1.831523,0.000195,238,2,121.346210,0.022777,56441884,37234479,0,0,50242,0,1,1 +1774119574.312833,28.77,4,3992.50,59.12,1395.25,2314.76,0.00,3521676615369.690918,0.028151,237,378,120.475512,0.040323,56454136,37237465,0,0,50244,0,1,1 +1774119579.312835,28.66,4,3992.50,59.30,1388.23,2321.77,0.00,82751.919166,115306.481795,6899984,2017843,120.162556,0.042751,56466238,37240715,0,0,50247,0,1,1 +1774119584.317311,28.57,4,3992.50,59.26,1389.96,2319.99,0.00,3515290720879.318359,3515290688353.354492,238,2,119.455915,0.040541,56478373,37243798,0,0,50249,0,1,1 +1774119589.316098,28.79,4,3992.50,59.29,1388.72,2321.26,0.00,82767.461515,115334.566714,6899210,2017495,119.393822,0.044031,56490563,37247109,0,0,50252,0,1,1 +1774119594.317725,28.98,4,3992.50,59.34,1379.80,2323.23,0.00,3517292538644.475586,3517292506097.692383,199,0,119.522151,0.040301,56502567,37250236,0,0,50254,0,1,1 +1774119599.317185,11.15,4,3992.50,52.60,1643.63,2059.50,0.00,1.363526,0.028323,237,378,92.137355,0.032356,56511976,37252596,0,0,50257,0,1,1 +1774119604.317299,1.51,4,3992.50,52.65,1641.67,2061.36,0.00,82746.141809,115304.282009,6899238,2017589,0.005645,0.005014,56512092,37252712,0,0,50259,0,1,1 +1774119609.316386,14.50,4,3992.50,53.38,1613.11,2089.94,0.00,3519080328154.057129,3519080295588.722168,238,2,16.108671,0.077563,56517332,37256622,0,0,50262,0,1,1 +1774119614.312849,14.79,4,3992.50,53.69,1600.84,2102.14,0.00,3520927837182.713379,0.028145,237,378,24.172112,0.112858,56525447,37262726,0,0,50264,0,1,1 +1774119619.317557,26.06,4,3992.50,53.26,1611.28,2085.17,0.00,3515127317896.424316,3515127317897.933105,21,0,0.050773,107.055060,56529142,37274021,0,0,50267,0,1,1 +1774119624.313720,24.61,4,3992.50,53.80,1585.64,2106.47,0.00,82817.245994,115570.153171,6900015,2020441,0.035393,98.011986,56531784,37284018,0,0,50269,0,1,1 +1774119629.316413,2.31,4,3992.50,54.55,1557.86,2135.86,0.00,3516543097030.112793,3516543064317.949219,238,2,0.007177,0.008864,56531926,37284182,0,0,50272,0,1,1 +1774119634.312823,14.12,4,3992.50,53.00,1621.62,2075.09,0.00,0.000000,0.000000,238,2,40.091797,0.024674,56536311,37285739,0,0,50274,0,1,1 +1774119639.312915,0.90,4,3992.50,52.65,1635.41,2061.31,0.00,3518371856532.845215,0.028124,237,378,0.002734,0.004286,56536376,37285822,0,0,50277,0,1,1 +1774119644.317210,0.75,4,3992.50,52.69,1633.95,2062.76,0.00,82692.965358,115414.350804,6899366,2020468,0.002731,0.004273,56536441,37285904,0,0,50279,0,1,1 +1774119649.317677,1.05,4,3992.50,52.97,1629.98,2073.95,0.00,4.108893,0.168734,6900140,2020915,0.002842,0.004096,56536515,37285994,0,0,50282,0,1,1 +1774119654.317702,0.65,4,3992.50,52.97,1630.08,2073.92,0.00,3518419902042.308594,3518419869296.917969,237,378,0.002734,0.004586,56536580,37286077,0,0,50284,0,1,1 +1774119659.317706,0.80,4,3992.50,52.98,1629.87,2074.16,0.00,0.000000,0.000000,237,378,0.002734,0.003952,56536645,37286157,0,0,50287,0,1,1 +1774119664.317375,0.75,4,3992.50,52.98,1629.89,2074.14,0.00,3518670303899.725586,3518670303901.187988,70,0,0.002530,0.003352,56536705,37286227,0,0,50289,0,1,1 +1774119669.317245,0.65,4,3992.50,52.98,1629.90,2074.13,0.00,1.490371,0.028321,237,378,0.002721,0.004596,56536769,37286311,0,0,50292,0,1,1 +1774119674.317472,0.85,4,3992.50,52.86,1634.27,2069.76,0.00,3518277625437.815918,3518277625439.326172,21,0,0.002814,0.004030,56536839,37286397,0,0,50294,0,1,1 +1774119679.317018,0.80,4,3992.50,53.45,1611.59,2092.88,0.00,1.538519,0.028323,237,378,0.002809,0.003992,56536909,37286480,0,0,50297,0,1,1 +1774119684.317216,0.65,4,3992.50,53.30,1617.24,2086.82,0.00,3518297497991.723633,3518297497993.186035,70,0,0.003403,0.004876,56536977,37286562,0,0,50299,0,1,1 +1774119689.313601,0.55,4,3992.50,53.30,1617.15,2086.91,0.00,1.960206,0.000195,238,2,0.002731,0.003975,56537042,37286644,0,0,50302,0,1,1 +1774119694.313594,0.60,4,3992.50,53.30,1617.17,2086.89,0.00,3518442787724.077637,3518442787726.084473,21,0,0.002517,0.003321,56537101,37286712,0,0,50304,0,1,1 +1774119699.315407,0.60,4,3992.50,53.30,1617.18,2086.88,0.00,2.006108,0.000195,238,2,0.002733,0.004581,56537166,37286795,0,0,50307,0,1,1 +1774119704.313612,0.50,4,3992.50,53.36,1614.76,2089.30,0.00,82793.239989,115555.546976,6899366,2020967,0.002506,0.003334,56537224,37286864,0,0,50309,0,1,1 +1774119709.317243,0.85,4,3992.50,53.46,1624.16,2092.93,0.00,3515884592497.208984,3515884559772.377441,70,0,0.002732,0.004007,56537289,37286947,0,0,50312,0,1,1 +1774119714.316388,8.64,4,3992.50,53.54,1619.37,2096.09,0.00,82779.654625,115533.909314,6899369,2021069,0.022176,31.657302,56538704,37290440,0,0,50314,0,1,1 +1774119719.317536,3.31,4,3992.50,53.12,1634.92,2079.87,0.00,3517629730897.242676,3517629698156.147949,21,0,0.004353,8.416099,56538920,37291440,0,0,50317,0,1,1 +1774119724.317274,0.50,4,3992.50,53.18,1632.54,2082.25,0.00,2.006941,0.000195,238,2,0.001152,0.003196,56538956,37291503,0,0,50319,0,1,1 +1774119729.315232,0.55,4,3992.50,53.18,1632.54,2082.25,0.00,0.000000,0.000000,238,2,0.001145,0.003199,56538991,37291566,0,0,50322,0,1,1 +1774119734.314039,0.65,4,3992.50,52.94,1641.95,2072.84,0.00,82783.351357,115575.856399,6899375,2021341,0.001732,0.004298,56539037,37291650,0,0,50324,0,1,1 +1774119739.312835,0.80,4,3992.50,53.41,1623.62,2091.14,0.00,3519284905662.653320,3519284872872.078613,21,0,0.000916,0.002565,56539065,37291701,0,0,50327,0,1,1 +1774119744.317496,0.55,4,3992.50,53.16,1633.48,2081.32,0.00,0.000000,0.000000,21,0,0.001131,0.003185,56539099,37291763,0,0,50329,0,1,1 +1774119749.316604,0.60,4,3992.50,53.11,1635.49,2079.30,0.00,0.048055,0.000000,70,0,0.001170,0.003230,56539136,37291828,0,0,50332,0,1,1 +1774119754.316761,0.55,4,3992.50,53.13,1634.76,2080.04,0.00,1.490285,0.028319,237,378,0.001195,0.003250,56539175,37291894,0,0,50334,0,1,1 +1774119759.317020,0.55,4,3992.50,53.13,1634.76,2080.04,0.00,3518254948498.658691,3518254948500.168945,21,0,0.001621,0.005007,56539229,37291990,0,0,50337,0,1,1 +1774119764.316859,0.50,4,3992.50,53.13,1634.76,2080.04,0.00,82768.266973,115558.134766,6899376,2021440,0.001238,0.003264,56539270,37292058,0,0,50339,0,1,1 +1774119769.316808,0.85,4,3992.50,53.02,1629.50,2075.90,0.00,3518473141912.539062,3518473109123.212891,199,0,0.001132,0.003198,56539304,37292121,0,0,50342,0,1,1 +1774119774.317674,0.50,4,3992.50,53.02,1629.37,2075.84,0.00,1.831519,0.000195,238,2,0.001144,0.003187,56539339,37292183,0,0,50344,0,1,1 +1774119779.317393,0.55,4,3992.50,53.04,1628.63,2076.58,0.00,3518634987132.996582,0.028127,237,378,0.000947,0.002590,56539369,37292236,0,0,50347,0,1,1 +1774119784.313390,42.92,4,3992.50,59.31,1390.95,2322.32,0.00,82834.505604,115647.163173,6900150,2021952,81.986567,0.036147,56548088,37294662,0,0,50349,0,1,1 +1774119789.316818,28.17,4,3992.50,59.34,1392.72,2323.14,0.00,3516026409507.942383,0.011906,6899376,2021591,120.886163,0.021407,56560592,37296172,0,0,50352,0,1,1 +1774119794.314717,27.95,4,3992.50,59.23,1396.75,2319.08,0.00,3519915905445.508301,3519915872641.220215,237,378,120.219894,0.019604,56573061,37297532,0,0,50354,0,1,1 +1774119799.312875,28.20,4,3992.50,59.27,1395.27,2320.59,0.00,3519733950671.662109,3519733950673.172852,21,0,119.409715,0.023144,56585305,37299268,0,0,50357,0,1,1 +1774119804.317057,28.25,4,3992.50,59.36,1392.10,2323.89,0.00,1.537093,0.028297,237,378,120.067672,0.028687,56597675,37301334,0,0,50359,0,1,1 +1774119809.317388,27.96,4,3992.50,59.62,1381.70,2334.26,0.00,0.000000,0.000000,237,378,120.165001,0.047401,56610133,37304972,0,0,50362,0,1,1 +1774119814.312820,27.99,4,3992.50,59.45,1388.50,2327.42,0.00,3521654796960.190918,3521654796961.654297,70,0,118.480684,0.043653,56622450,37308296,0,0,50364,0,1,1 +1774119819.313082,28.64,4,3992.50,59.36,1392.01,2323.96,0.00,82765.332071,115548.910349,6900150,2022176,119.964230,0.036639,56634860,37310968,0,0,50367,0,1,1 +1774119824.313406,13.93,4,3992.50,53.51,1620.80,2095.22,0.00,3518209341057.151367,3518209308273.850098,199,0,104.339076,0.031603,56645561,37313254,0,0,50369,0,1,1 +1774119829.317097,1.60,4,3992.50,53.69,1613.78,2102.23,0.00,3515841570636.224121,0.000000,70,0,0.004259,0.005263,56645654,37313359,0,0,50372,0,1,1 +1774119834.317677,17.50,4,3992.50,54.40,1586.18,2129.79,0.00,82756.128276,115541.984374,6899392,2022367,22.232391,0.111159,56653218,37318920,0,0,50374,0,1,1 +1774119839.315654,7.78,4,3992.50,53.74,1611.86,2104.13,0.00,3519861195079.776855,3519861162276.724121,199,0,14.001202,0.053707,56657508,37322099,0,0,50377,0,1,1 +1774119844.315782,4.36,4,3992.50,53.76,1611.26,2104.73,0.00,3518346786666.986328,0.000000,70,0,4.030567,0.023089,56658901,37323116,0,0,50379,0,1,1 +1774119849.312839,1.91,4,3992.50,53.63,1616.36,2099.61,0.00,82814.491344,115623.747639,6899396,2022642,0.010317,4.416901,56659452,37323915,0,0,50382,0,1,1 +1774119854.315896,28.44,4,3992.50,53.97,1595.46,2113.02,0.00,3516287493689.420898,3516287460919.557617,21,0,0.032795,118.494997,56661824,37336124,0,0,50384,0,1,1 +1774119859.316460,20.56,4,3992.50,53.32,1615.56,2087.54,0.00,82756.464129,115716.059615,6899398,2024005,0.016348,82.110828,56662824,37344726,0,0,50387,0,1,1 +1774119864.315221,1.60,4,3992.50,53.28,1609.87,2086.16,0.00,3519308754724.409668,3519308721752.931641,21,0,0.005194,0.006013,56662924,37344846,0,0,50389,0,1,1 +1774119869.313898,14.45,4,3992.50,54.23,1575.46,2123.33,0.00,0.000000,0.000000,21,0,40.075050,0.026344,56667325,37346371,0,0,50392,0,1,1 +1774119874.317574,0.60,4,3992.50,53.55,1602.04,2096.72,0.00,0.174871,0.000000,199,0,0.002832,0.004063,56667398,37346458,0,0,50394,0,1,1 +1774119879.316409,0.60,4,3992.50,53.22,1615.26,2083.55,0.00,82800.850739,115788.501509,6899505,2024424,0.002734,0.003978,56667463,37346540,0,0,50397,0,1,1 +1774119884.317162,0.65,4,3992.50,53.08,1620.76,2078.08,0.00,3517907367247.362793,3517907334270.531250,238,2,0.002504,0.003333,56667521,37346609,0,0,50399,0,1,1 +1774119889.316859,1.20,4,3992.50,53.47,1616.45,2093.51,0.00,82784.740080,115768.680004,6899505,2024500,0.002734,0.003964,56667586,37346690,0,0,50402,0,1,1 +1774119894.317233,0.60,4,3992.50,53.45,1616.88,2092.57,0.00,3518173882962.528320,3518173849985.010742,70,0,0.002759,0.004629,56667653,37346776,0,0,50404,0,1,1 +1774119899.312841,0.55,4,3992.50,53.47,1615.91,2093.54,0.00,3521530521997.981445,0.000000,21,0,0.002736,0.003968,56667718,37346857,0,0,50407,0,1,1 +1774119904.312903,0.50,4,3992.50,53.46,1616.50,2092.92,0.00,0.000000,0.000000,21,0,0.002729,0.003962,56667783,37346938,0,0,50409,0,1,1 +1774119909.316264,0.70,4,3992.50,53.46,1616.54,2092.91,0.00,0.048015,0.000000,70,0,0.003734,0.004694,56667855,37347027,0,0,50412,0,1,1 +1774119914.317127,0.55,4,3992.50,53.46,1616.55,2092.89,0.00,1.958451,0.000195,238,2,0.002795,0.003981,56667924,37347109,0,0,50414,0,1,1 +1774119919.313365,0.90,4,3992.50,53.04,1621.46,2076.69,0.00,82846.180175,115849.382617,6900280,2025384,0.002507,0.003321,56667982,37347177,0,0,50417,0,1,1 +1774119924.317381,0.55,4,3992.50,53.06,1620.17,2077.61,0.00,3515613905319.451660,3515613872369.547852,21,0,0.002719,0.003951,56668046,37347257,0,0,50419,0,1,1 +1774119929.312904,0.50,4,3992.50,53.06,1620.18,2077.59,0.00,0.000000,0.000000,21,0,0.002736,0.003968,56668111,37347338,0,0,50422,0,1,1 +1774119934.317644,0.65,4,3992.50,53.07,1619.94,2077.83,0.00,82707.459049,115652.818448,6900280,2025505,0.002731,0.003951,56668176,37347418,0,0,50424,0,1,1 +1774119939.316916,10.71,4,3992.50,52.90,1624.51,2071.16,0.00,3518949381670.253906,3518949348688.817383,70,0,0.022027,40.069657,56669655,37351816,0,0,50427,0,1,1 +1774119944.315667,0.85,4,3992.50,52.91,1624.02,2071.64,0.00,1.490704,0.028327,237,378,0.002701,0.006295,56669731,37351936,0,0,50429,0,1,1 +1774119949.316717,0.70,4,3992.50,53.30,1606.02,2086.81,0.00,0.000000,0.000000,237,378,0.001144,0.003197,56669766,37351999,0,0,50432,0,1,1 +1774119954.316453,0.60,4,3992.50,53.35,1604.09,2088.73,0.00,0.468482,3518622570623.916504,238,2,0.001144,0.003188,56669801,37352061,0,0,50434,0,1,1 +1774119959.312930,0.50,4,3992.50,52.80,1625.60,2067.19,0.00,82842.283575,115878.405559,6900286,2025935,0.000891,0.003210,56669827,37352116,0,0,50437,0,1,1 +1774119964.312910,0.60,4,3992.50,52.64,1631.79,2061.00,0.00,3518450739686.945312,3518450706675.937012,70,0,0.001152,0.003196,56669863,37352179,0,0,50439,0,1,1 +1774119969.312831,0.60,4,3992.50,52.65,1631.59,2061.23,0.00,3518492528030.074707,0.000000,21,0,0.001144,0.003198,56669898,37352242,0,0,50442,0,1,1 +1774119974.317341,0.90,4,3992.50,52.67,1630.86,2061.96,0.00,0.174842,0.000000,199,0,0.001169,0.003216,56669935,37352306,0,0,50444,0,1,1 +1774119979.317033,0.75,4,3992.50,53.26,1607.86,2085.06,0.00,3518654119131.122070,0.000000,21,0,0.001195,0.003260,56669974,37352373,0,0,50447,0,1,1 +1774119984.317027,0.65,4,3992.50,53.25,1607.76,2085.05,0.00,0.000000,0.000000,21,0,0.001220,0.003281,56670015,37352441,0,0,50449,0,1,1 +1774119989.316959,0.55,4,3992.50,53.00,1617.72,2075.05,0.00,82782.927771,115804.383719,6899512,2025642,0.001308,0.003332,56670061,37352515,0,0,50452,0,1,1 +1774119994.314845,0.45,4,3992.50,53.00,1617.76,2075.05,0.00,3519924898391.625000,3519924865355.146973,237,378,0.001132,0.003189,56670095,37352577,0,0,50454,0,1,1 +1774119999.317143,0.50,4,3992.50,52.98,1618.47,2074.34,0.00,82742.239197,115749.592991,6899512,2025647,0.000903,0.002563,56670122,37352628,0,0,50457,0,1,1 +1774120004.313426,0.80,4,3992.50,52.92,1620.94,2071.86,0.00,3521054444882.100098,3521054411836.351074,199,0,0.002504,0.003883,56670178,37352705,0,0,50459,0,1,1 +1774120009.317317,40.04,4,3992.50,59.82,1360.36,2342.17,0.00,1.362319,0.028298,237,378,101.268078,0.043902,56680888,37355790,0,0,50462,0,1,1 +1774120014.313881,27.66,4,3992.50,59.51,1373.81,2329.89,0.00,82837.182385,115882.564427,6899512,2025797,119.448591,0.023078,56693192,37357468,0,0,50464,0,1,1 +1774120019.317383,28.32,4,3992.50,59.23,1384.70,2318.97,0.00,3515974893805.636719,3515974860807.582031,21,0,118.886131,0.031234,56705534,37359714,0,0,50467,0,1,1 +1774120024.316404,28.18,4,3992.50,59.23,1384.48,2319.16,0.00,0.000000,0.000000,21,0,119.393987,0.040114,56717887,37362617,0,0,50469,0,1,1 +1774120029.315420,28.11,4,3992.50,59.03,1392.56,2311.11,0.00,2.007231,0.000195,238,2,118.988840,0.026958,56729944,37364511,0,0,50472,0,1,1 +1774120034.316406,28.89,4,3992.50,59.37,1379.00,2324.54,0.00,3517743181368.662598,3517743181370.620605,70,0,119.751419,0.052970,56742201,37368381,0,0,50474,0,1,1 +1774120039.316478,28.24,4,3992.50,59.21,1385.39,2318.30,0.00,0.126951,0.000000,199,0,118.771935,0.051751,56754479,37372297,0,0,50477,0,1,1 +1774120044.315393,28.61,4,3992.50,59.26,1387.73,2320.14,0.00,82799.582975,115828.331991,6899512,2025913,120.000083,0.050166,56766841,37376096,0,0,50479,0,1,1 +1774120049.316424,10.53,4,3992.50,53.02,1632.11,2075.85,0.00,3517711755646.826660,3517711722630.716309,237,378,88.907381,0.024607,56775916,37377786,0,0,50482,0,1,1 +1774120054.316445,0.95,4,3992.50,53.04,1631.18,2076.77,0.00,3518422519467.691406,3518422519469.153320,70,0,0.005060,0.004741,56776012,37377880,0,0,50484,0,1,1 +1774120059.312910,11.62,4,3992.50,53.48,1614.20,2093.74,0.00,1.491386,0.028340,237,378,12.100025,0.062992,56780067,37380849,0,0,50487,0,1,1 +1774120064.313717,16.65,4,3992.50,54.13,1588.68,2119.23,0.00,82767.030665,115785.242704,6899524,2027025,28.159877,0.121083,56789098,37387572,0,0,50489,0,1,1 +1774120069.315688,1.15,4,3992.50,54.15,1587.95,2119.99,0.00,3517050782058.098633,3517050749049.077637,21,0,0.003273,0.005200,56789177,37387674,0,0,50492,0,1,1 +1774120074.316066,0.55,4,3992.50,53.75,1603.64,2104.29,0.00,2.006684,0.000195,238,2,0.002492,0.003308,56789234,37387741,0,0,50494,0,1,1 +1774120079.315874,0.90,4,3992.50,53.72,1604.65,2103.24,0.00,0.000000,0.000000,238,2,0.002765,0.003990,56789301,37387824,0,0,50497,0,1,1 +1774120084.316636,0.55,4,3992.50,53.71,1604.90,2103.03,0.00,3517900584106.151367,0.028121,237,378,0.002741,0.003962,56789367,37387905,0,0,50499,0,1,1 +1774120089.317755,0.50,4,3992.50,53.71,1604.91,2103.02,0.00,3517650474393.052246,3517650474394.562012,21,0,0.002733,0.004607,56789432,37387990,0,0,50502,0,1,1 +1774120094.312844,0.70,4,3992.50,53.41,1616.91,2091.03,0.00,82863.312338,115918.714193,6899524,2027565,0.004887,0.004964,56789539,37388095,0,0,50504,0,1,1 +1774120099.312845,0.80,4,3992.50,53.41,1616.46,2091.00,0.00,3518436347823.196777,3518436314800.218262,70,0,0.002834,0.004058,56789612,37388182,0,0,50507,0,1,1 +1774120104.316060,0.60,4,3992.50,53.41,1616.27,2091.20,0.00,1.489375,0.028302,237,378,0.002771,0.003985,56789680,37388265,0,0,50509,0,1,1 +1774120109.314578,0.60,4,3992.50,53.41,1616.28,2091.18,0.00,82809.045575,115839.342357,6900298,2028041,0.002493,0.003332,56789737,37388334,0,0,50512,0,1,1 +1774120114.314676,0.50,4,3992.50,53.42,1615.83,2091.60,0.00,3518367942317.463867,3518367909298.941406,199,0,0.002808,0.003982,56789807,37388416,0,0,50514,0,1,1 +1774120119.314749,0.55,4,3992.50,53.42,1615.84,2091.58,0.00,3518386386495.349121,0.000000,21,0,0.002734,0.003964,56789872,37388497,0,0,50517,0,1,1 +1774120124.316338,0.55,4,3992.50,53.42,1615.89,2091.57,0.00,1.537890,0.028311,237,378,0.002733,0.003928,56789937,37388575,0,0,50519,0,1,1 +1774120129.313730,0.80,4,3992.50,53.42,1616.05,2091.56,0.00,3520273754004.549805,3520273754006.060547,21,0,0.002743,0.003974,56790003,37388657,0,0,50522,0,1,1 +1774120134.315519,0.55,4,3992.50,53.22,1623.87,2083.52,0.00,82752.323331,115763.762026,6899524,2027835,0.002733,0.003953,56790068,37388737,0,0,50524,0,1,1 +1774120139.315167,0.60,4,3992.50,53.22,1623.88,2083.51,0.00,3518684165176.938965,3518684132149.860352,237,378,0.002772,0.004027,56790136,37388822,0,0,50527,0,1,1 +1774120144.314990,0.60,4,3992.50,53.31,1620.19,2087.21,0.00,0.468474,3518562486596.794922,238,2,0.002289,0.002687,56790188,37388878,0,0,50529,0,1,1 +1774120149.315497,0.55,4,3992.50,53.31,1620.18,2087.21,0.00,3518080153297.506348,3518080153299.513184,21,0,0.002733,0.003964,56790253,37388959,0,0,50532,0,1,1 +1774120154.315563,0.65,4,3992.50,53.31,1620.20,2087.20,0.00,1.538358,0.028320,237,378,0.002729,0.004594,56790318,37389043,0,0,50534,0,1,1 +1774120159.317459,0.80,4,3992.50,53.35,1624.01,2088.88,0.00,82749.022685,115761.437197,6899524,2027993,0.002733,0.003950,56790383,37389123,0,0,50537,0,1,1 +1774120164.316696,15.98,4,3992.50,53.67,1607.63,2101.46,0.00,3518974283449.788574,3518974250421.279297,70,0,0.030723,64.910609,56792484,37396269,0,0,50539,0,1,1 +1774120169.317372,29.02,4,3992.50,53.54,1604.65,2096.11,0.00,3517961375056.300293,0.000000,21,0,0.046629,118.150781,56796070,37408524,0,0,50542,0,1,1 +1774120174.317636,6.27,4,3992.50,53.13,1619.14,2080.35,0.00,0.000000,0.000000,21,0,0.008383,22.036101,56796594,37410928,0,0,50544,0,1,1 +1774120179.313952,1.41,4,3992.50,53.42,1608.73,2091.61,0.00,82843.000664,116096.015024,6899532,2029357,0.003853,0.004257,56796650,37410999,0,0,50547,0,1,1 +1774120184.316716,17.43,4,3992.50,54.76,1559.63,2143.82,0.00,3516492819243.413086,3516492786033.217285,70,0,40.042567,0.025431,56801101,37412563,0,0,50549,0,1,1 +1774120189.313717,11.15,4,3992.50,53.62,1606.76,2099.16,0.00,1.491227,0.028337,237,378,0.029308,40.090033,56803160,37417026,0,0,50552,0,1,1 +1774120194.316098,0.65,4,3992.50,53.30,1619.20,2086.72,0.00,3516762591947.335449,3516762591948.669922,199,0,0.001144,0.003186,56803195,37417088,0,0,50554,0,1,1 +1774120199.317068,0.60,4,3992.50,53.32,1618.46,2087.45,0.00,82785.777185,116022.468260,6900416,2030326,0.001152,0.003205,56803231,37417152,0,0,50557,0,1,1 +1774120204.316813,0.50,4,3992.50,53.15,1624.83,2081.09,0.00,3518616463628.888672,3518616430384.186523,70,0,0.001094,0.003176,56803262,37417213,0,0,50559,0,1,1 +1774120209.312831,0.60,4,3992.50,53.14,1625.23,2080.69,0.00,0.127054,0.000000,199,0,0.002093,0.003902,56803301,37417281,0,0,50562,0,1,1 +1774120214.317545,0.65,4,3992.50,53.34,1617.43,2088.45,0.00,3515122827689.827148,0.000000,70,0,0.000915,0.002552,56803329,37417331,0,0,50564,0,1,1 +1774120219.312910,0.75,4,3992.50,53.52,1614.94,2095.31,0.00,3521701882875.808105,0.000000,21,0,0.001120,0.003845,56803362,37417398,0,0,50567,0,1,1 +1774120224.315386,0.60,4,3992.50,53.52,1614.73,2095.55,0.00,0.174913,0.000000,199,0,0.001127,0.003194,56803396,37417461,0,0,50569,0,1,1 +1774120229.317566,0.55,4,3992.50,53.52,1614.73,2095.55,0.00,82765.765597,116000.573502,6900426,2030482,0.001257,0.003352,56803440,37417534,0,0,50572,0,1,1 +1774120234.312874,0.60,4,3992.50,53.46,1617.12,2093.16,0.00,0.000000,0.006256,6900426,2030488,0.001326,0.003348,56803487,37417608,0,0,50574,0,1,1 +1774120239.317254,0.55,4,3992.50,53.50,1615.55,2094.73,0.00,3515357926346.595703,3515357893126.520508,70,0,0.001143,0.003195,56803522,37417671,0,0,50577,0,1,1 +1774120244.312819,0.55,4,3992.50,53.50,1615.46,2094.82,0.00,82875.473569,116154.174108,6900426,2030500,0.001145,0.003191,56803557,37417733,0,0,50579,0,1,1 +1774120249.315519,0.90,4,3992.50,53.71,1610.51,2102.80,0.00,3516537894603.993164,3516537861371.295410,237,378,0.001131,0.003196,56803591,37417796,0,0,50582,0,1,1 +1774120254.316313,2.05,4,3992.50,53.52,1619.05,2095.46,0.00,82783.227625,116032.722504,6899652,2030164,0.002406,0.003875,56803649,37417873,0,0,50584,0,1,1 +1774120259.315469,43.07,4,3992.50,59.86,1380.09,2343.58,0.00,3519030862602.881836,3519030829344.007812,21,0,106.370135,0.042062,56814735,37420829,0,0,50587,0,1,1 +1774120264.315100,28.30,4,3992.50,59.87,1380.56,2344.24,0.00,82804.019358,116059.856386,6899652,2030275,118.773951,0.032600,56826934,37423243,0,0,50589,0,1,1 +1774120269.316596,28.05,4,3992.50,59.72,1386.81,2338.05,0.00,3517384989709.208008,3517384956463.763672,238,2,119.528668,0.023537,56839186,37425008,0,0,50592,0,1,1 +1774120274.314413,28.38,4,3992.50,59.81,1383.01,2341.84,0.00,82832.065619,116102.037333,6899652,2030297,118.817285,0.023589,56851417,37426770,0,0,50594,0,1,1 +1774120279.316757,27.81,4,3992.50,59.63,1390.18,2334.62,0.00,0.000781,0.075551,6899653,2030313,119.508911,0.027173,56863696,37428760,0,0,50597,0,1,1 +1774120284.312808,28.21,4,3992.50,59.58,1391.86,2332.82,0.00,3521218184911.979980,3521218151632.182129,21,0,118.861618,0.035642,56875878,37431505,0,0,50599,0,1,1 +1774120289.312852,28.11,4,3992.50,59.99,1375.47,2348.90,0.00,0.174998,0.000000,199,0,120.177303,0.054631,56888387,37435552,0,0,50602,0,1,1 +1774120294.313458,28.18,4,3992.50,59.90,1379.53,2345.10,0.00,3518010382051.810059,0.000000,21,0,118.153176,0.039611,56900572,37438504,0,0,50604,0,1,1 +1774120299.317069,9.37,4,3992.50,55.13,1566.46,2158.29,0.00,0.048012,0.000000,70,0,85.256351,0.012225,56909356,37439418,0,0,50607,0,1,1 +1774120304.316385,1.86,4,3992.50,54.18,1603.58,2121.14,0.00,3518918373113.385254,0.000000,21,0,0.011171,0.009203,56909573,37439610,0,0,50609,0,1,1 +1774120309.317247,16.32,4,3992.50,54.95,1556.48,2151.34,0.00,0.000000,0.000000,21,0,24.148793,0.112302,56917492,37445615,0,0,50612,0,1,1 +1774120314.317068,9.76,4,3992.50,54.27,1582.96,2124.74,0.00,0.000000,0.000000,21,0,16.100757,0.073905,56922790,37449652,0,0,50614,0,1,1 +1774120319.316843,10.11,4,3992.50,53.66,1605.25,2100.84,0.00,82805.913717,116077.232197,6900445,2032322,0.025702,40.668188,56924422,37454178,0,0,50617,0,1,1 +1774120324.313751,28.65,4,3992.50,53.89,1588.08,2109.90,0.00,3520614548023.329590,3520614514730.911621,238,2,0.028228,118.641954,56926444,37466474,0,0,50619,0,1,1 +1774120329.312830,12.34,4,3992.50,52.86,1625.55,2069.52,0.00,3519085467357.122559,3519085467359.129883,21,0,0.015362,45.880317,56927401,37471400,0,0,50622,0,1,1 +1774120334.312812,15.46,4,3992.50,54.34,1570.18,2127.60,0.00,0.048047,0.000000,70,0,40.066722,0.027915,56931800,37473013,0,0,50624,0,1,1 +1774120339.317565,1.10,4,3992.50,53.89,1588.12,2109.94,0.00,3515095849458.129883,0.000000,21,0,0.004136,0.005979,56931892,37473118,0,0,50627,0,1,1 +1774120344.313129,0.55,4,3992.50,53.41,1606.97,2090.94,0.00,0.000000,0.000000,21,0,0.002736,0.003958,56931957,37473198,0,0,50629,0,1,1 +1774120349.317080,0.55,4,3992.50,53.29,1611.32,2086.59,0.00,82752.750763,116159.690084,6900561,2033812,0.002828,0.004551,56932030,37473289,0,0,50632,0,1,1 +1774120354.317216,0.55,4,3992.50,53.30,1611.10,2086.82,0.00,3518341828258.283203,3518341794825.845703,21,0,0.002721,0.004103,56932094,37473369,0,0,50634,0,1,1 +1774120359.316985,0.70,4,3992.50,53.28,1611.75,2086.16,0.00,2.006929,0.000195,238,2,0.003392,0.005171,56932164,37473460,0,0,50637,0,1,1 +1774120364.317549,0.75,4,3992.50,53.10,1619.02,2078.90,0.00,3518040611016.207520,3518040611018.213867,21,0,0.002758,0.003985,56932231,37473542,0,0,50639,0,1,1 +1774120369.317597,0.75,4,3992.50,53.66,1605.29,2100.75,0.00,2.006817,0.000195,238,2,0.002734,0.003964,56932296,37473623,0,0,50642,0,1,1 +1774120374.312828,0.65,4,3992.50,53.61,1606.62,2098.78,0.00,3521795997143.428711,0.028152,237,378,0.002736,0.003958,56932361,37473703,0,0,50644,0,1,1 +1774120379.312887,0.60,4,3992.50,53.61,1606.39,2099.01,0.00,0.000000,0.000000,237,378,0.002791,0.004023,56932430,37473789,0,0,50647,0,1,1 +1774120384.312826,0.45,4,3992.50,53.61,1606.44,2098.96,0.00,3518480356710.020020,3518480356711.482422,70,0,0.002808,0.004018,56932500,37473872,0,0,50649,0,1,1 +1774120389.317640,0.65,4,3992.50,53.61,1606.45,2098.96,0.00,82734.335378,116146.961614,6899787,2033751,0.002731,0.003960,56932565,37473953,0,0,50652,0,1,1 +1774120394.316844,0.70,4,3992.50,53.63,1605.68,2099.73,0.00,3518997409577.452637,3518997376125.866211,237,378,0.004654,0.004317,56932665,37474046,0,0,50654,0,1,1 +1774120399.317441,0.90,4,3992.50,53.33,1601.96,2088.17,0.00,3518016773511.472656,3518016773512.982910,21,0,0.002758,0.003976,56932732,37474128,0,0,50657,0,1,1 +1774120404.317232,0.55,4,3992.50,53.33,1602.25,2087.91,0.00,0.175007,0.000000,199,0,0.002752,0.003980,56932798,37474210,0,0,50659,0,1,1 +1774120409.312883,0.55,4,3992.50,53.32,1602.39,2087.77,0.00,1.833431,0.000195,238,2,0.002125,0.003738,56932852,37474285,0,0,50662,0,1,1 +1774120414.317436,11.28,4,3992.50,53.00,1613.60,2075.12,0.00,3515236243897.162598,3515236243899.119629,70,0,0.024391,40.031550,56934461,37478843,0,0,50664,0,1,1 +1774120419.317121,0.65,4,3992.50,52.84,1619.79,2068.93,0.00,3518659025148.097656,0.000000,21,0,0.001397,0.003978,56934503,37478919,0,0,50667,0,1,1 +1774120424.312931,0.70,4,3992.50,53.08,1610.52,2078.16,0.00,82883.501428,116390.659905,6899787,2034237,0.001145,0.003191,56934538,37478981,0,0,50669,0,1,1 +1774120429.316893,0.80,4,3992.50,53.12,1608.56,2079.80,0.00,3515650754172.994141,3515650720720.427246,21,0,0.001144,0.003195,56934573,37479044,0,0,50672,0,1,1 +1774120434.317694,0.45,4,3992.50,53.12,1608.45,2079.80,0.00,0.000000,0.000000,21,0,0.001144,0.003187,56934608,37479106,0,0,50674,0,1,1 +1774120439.312841,0.65,4,3992.50,53.13,1608.23,2080.02,0.00,82894.494558,116406.173845,6899787,2034292,0.001183,0.003263,56934646,37479173,0,0,50677,0,1,1 +1774120444.313830,0.55,4,3992.50,53.13,1608.24,2080.01,0.00,3517741802892.458008,3517741769419.917480,21,0,0.000936,0.002562,56934676,37479224,0,0,50679,0,1,1 +1774120449.317185,0.50,4,3992.50,53.13,1608.24,2080.01,0.00,82762.618233,116221.289438,6900561,2034739,0.001194,0.003258,56934715,37479291,0,0,50682,0,1,1 +1774120454.316226,1.40,4,3992.50,52.94,1615.65,2072.61,0.00,3519112020427.501953,3519112020431.588379,6899787,2034364,0.001195,0.003251,56934754,37479357,0,0,50684,0,1,1 +1774120459.317680,0.75,4,3992.50,53.16,1608.44,2081.25,0.00,3517414246529.639648,3517414213054.165527,21,0,0.001319,0.003360,56934801,37479432,0,0,50687,0,1,1 +1774120464.312900,0.50,4,3992.50,53.10,1610.84,2078.81,0.00,0.175167,0.000000,199,0,0.001177,0.003216,56934838,37479496,0,0,50689,0,1,1 +1774120469.317021,0.60,4,3992.50,53.10,1610.88,2078.81,0.00,1.362256,0.028297,237,378,0.001131,0.003195,56934872,37479559,0,0,50692,0,1,1 +1774120474.313137,0.60,4,3992.50,53.05,1612.50,2077.18,0.00,0.468821,3521172107484.461914,238,2,0.001166,0.003198,56934909,37479622,0,0,50694,0,1,1 +1774120479.313469,31.32,4,3992.50,59.38,1371.37,2324.96,0.00,0.000000,0.000000,238,2,65.494535,0.035457,56941947,37481921,0,0,50697,0,1,1 +1774120484.317623,29.91,4,3992.50,59.38,1376.35,2324.90,0.00,0.000000,0.000000,238,2,118.465801,0.037761,56954079,37484711,0,0,50699,0,1,1 +1774120489.315370,28.28,4,3992.50,59.39,1376.03,2325.14,0.00,3520023439155.593750,3520023439157.601562,21,0,119.821879,0.023910,56966430,37486330,0,0,50702,0,1,1 +1774120494.312834,27.95,4,3992.50,59.28,1378.16,2321.14,0.00,82860.288586,116358.558929,6900598,2034945,118.223111,0.031948,56978583,37488735,0,0,50704,0,1,1 +1774120499.314535,28.36,4,3992.50,59.34,1375.93,2323.34,0.00,3517240901882.482422,3517240868412.584961,21,0,120.124054,0.023975,56990826,37490486,0,0,50707,0,1,1 +1774120504.316870,27.99,4,3992.50,59.25,1379.56,2319.70,0.00,2.005899,0.000195,238,2,118.109106,0.041388,57002976,37493622,0,0,50709,0,1,1 +1774120509.317269,28.28,4,3992.50,59.53,1368.57,2330.70,0.00,3518156334055.913086,3518156334057.745117,199,0,120.155506,0.030952,57015276,37495929,0,0,50712,0,1,1 +1774120514.314499,28.61,4,3992.50,59.13,1384.10,2315.23,0.00,82859.906364,116364.260291,6899825,2034733,119.031035,0.036358,57027446,37498555,0,0,50714,0,1,1 +1774120519.314371,19.02,4,3992.50,59.19,1381.94,2317.45,0.00,3518527719011.154785,3518527685523.165527,237,378,119.364144,0.047414,57039399,37502235,0,0,50717,0,1,1 +1774120524.316901,1.45,4,3992.50,53.74,1595.41,2104.04,0.00,3516657366695.207520,3516657366696.717285,21,0,6.610269,0.005985,57040194,37502464,0,0,50719,0,1,1 +1774120529.317337,12.74,4,3992.50,53.25,1614.80,2084.71,0.00,82807.089565,116289.992506,6899836,2035171,14.149208,0.077993,57045222,37506150,0,0,50722,0,1,1 +1774120534.312811,14.85,4,3992.50,54.02,1584.43,2115.06,0.00,3521624886124.984863,3521624852608.823730,21,0,26.128230,0.106979,57053338,37512239,0,0,50724,0,1,1 +1774120539.317542,1.40,4,3992.50,53.76,1594.55,2104.91,0.00,82736.027533,116190.315791,6899836,2035578,0.011338,0.008493,57053565,37512434,0,0,50727,0,1,1 +1774120544.317586,1.00,4,3992.50,53.64,1599.39,2100.09,0.00,3518405807331.435547,3518405773845.791504,21,0,0.003437,0.005351,57053646,37512538,0,0,50729,0,1,1 +1774120549.313617,0.95,4,3992.50,53.67,1597.94,2101.48,0.00,0.175139,0.000000,199,0,0.002723,0.004612,57053710,37512623,0,0,50732,0,1,1 +1774120554.317511,1.05,4,3992.50,53.73,1595.55,2103.63,0.00,3515699525225.053223,0.000000,21,0,0.002731,0.003951,57053775,37512703,0,0,50734,0,1,1 +1774120559.312981,1.56,4,3992.50,53.49,1604.95,2094.25,0.00,82893.524967,116406.710445,6900610,2036547,0.002507,0.003334,57053833,37512772,0,0,50737,0,1,1 +1774120564.317011,0.65,4,3992.50,53.51,1604.29,2094.91,0.00,3515603269989.154785,3515603236531.296875,238,2,0.002731,0.003939,57053898,37512851,0,0,50739,0,1,1 +1774120569.317325,0.85,4,3992.50,53.51,1604.29,2094.91,0.00,82811.221647,116294.119008,6900610,2036569,0.002855,0.004127,57053973,37512943,0,0,50742,0,1,1 +1774120574.312924,0.95,4,3992.50,53.32,1611.71,2087.48,0.00,3521536687281.479492,3521536687285.570312,6899836,2036200,0.002723,0.003958,57054037,37513023,0,0,50744,0,1,1 +1774120579.313767,1.05,4,3992.50,53.32,1613.45,2087.63,0.00,0.000000,0.050382,6899836,2036221,0.002733,0.003951,57054102,37513103,0,0,50747,0,1,1 +1774120584.316976,0.70,4,3992.50,53.32,1613.46,2087.62,0.00,4.106642,0.038940,6900610,2036614,0.002719,0.003952,57054166,37513183,0,0,50749,0,1,1 +1774120589.317691,0.75,4,3992.50,53.51,1605.86,2095.20,0.00,3517934024209.391602,3517933990730.947754,199,0,0.002816,0.004012,57054237,37513268,0,0,50752,0,1,1 +1774120594.312989,0.55,4,3992.50,53.51,1605.92,2095.17,0.00,3521749210458.356445,0.000000,21,0,0.002507,0.003324,57054295,37513336,0,0,50754,0,1,1 +1774120599.317627,0.55,4,3992.50,53.50,1606.57,2094.52,0.00,82741.654545,116193.772146,6900610,2036711,0.002719,0.003961,57054359,37513417,0,0,50757,0,1,1 +1774120604.312927,0.55,4,3992.50,53.50,1606.36,2094.73,0.00,3521747818054.558594,3521747818058.650879,6899836,2036342,0.002117,0.003721,57054412,37513490,0,0,50759,0,1,1 +1774120609.317897,21.87,4,3992.50,53.38,1606.19,2089.82,0.00,3514943493677.661621,3514943460223.623535,70,0,0.043327,89.845104,57057393,37523111,0,0,50762,0,1,1 +1774120614.317238,29.17,4,3992.50,53.62,1588.97,2099.27,0.00,1.490528,0.028324,237,378,0.039028,115.179087,57060315,37535079,0,0,50764,0,1,1 +1774120619.316081,0.80,4,3992.50,53.85,1579.73,2108.49,0.00,0.000000,0.000000,237,378,0.003327,0.006668,57060400,37535207,0,0,50767,0,1,1 +1774120624.313251,14.24,4,3992.50,53.14,1610.68,2080.61,0.00,0.000000,0.000000,237,378,40.087242,0.024689,57064793,37536755,0,0,50769,0,1,1 +1774120629.314399,11.53,4,3992.50,53.27,1603.39,2085.78,0.00,82809.701400,116514.157796,6899978,2038139,0.028820,40.058048,57066713,37541225,0,0,50772,0,1,1 +1774120634.317396,0.80,4,3992.50,53.30,1602.41,2086.75,0.00,3516329334871.551758,3516329301179.057129,238,2,0.002415,0.005834,57066779,37541339,0,0,50774,0,1,1 +1774120639.312938,0.70,4,3992.50,53.20,1610.58,2082.71,0.00,82906.260707,116645.137846,6900752,2038633,0.001153,0.003209,57066815,37541403,0,0,50777,0,1,1 +1774120644.317301,0.60,4,3992.50,53.20,1610.27,2082.95,0.00,3515370132939.517090,3515370099262.057129,70,0,0.001156,0.003185,57066851,37541465,0,0,50779,0,1,1 +1774120649.313927,0.60,4,3992.50,53.19,1610.56,2082.66,0.00,82886.137916,116619.931702,6899978,2038340,0.001133,0.003200,57066885,37541528,0,0,50782,0,1,1 +1774120654.317316,0.55,4,3992.50,53.35,1604.43,2088.75,0.00,3516053797817.739746,3516053764129.594727,21,0,0.000940,0.002584,57066915,37541580,0,0,50784,0,1,1 +1774120659.317527,0.65,4,3992.50,53.35,1604.47,2088.74,0.00,1.538314,0.028319,237,378,0.001284,0.003628,57066953,37541653,0,0,50787,0,1,1 +1774120664.313583,0.65,4,3992.50,53.35,1604.47,2088.75,0.00,3521215127186.435059,3521215127187.946289,21,0,0.001153,0.003198,57066989,37541716,0,0,50789,0,1,1 +1774120669.312924,0.80,4,3992.50,53.43,1604.18,2091.90,0.00,0.048053,0.000000,70,0,0.001233,0.003323,57067031,37541787,0,0,50792,0,1,1 +1774120674.316502,0.55,4,3992.50,53.24,1611.13,2084.48,0.00,3515921541705.426758,0.000000,21,0,0.001200,0.003260,57067070,37541854,0,0,50794,0,1,1 +1774120679.315483,0.60,4,3992.50,53.25,1610.89,2084.71,0.00,0.048057,0.000000,70,0,0.001238,0.003931,57067111,37541928,0,0,50797,0,1,1 +1774120684.316758,0.65,4,3992.50,53.38,1605.45,2090.13,0.00,3517539781069.331543,0.000000,21,0,0.001144,0.003187,57067146,37541990,0,0,50799,0,1,1 +1774120689.317044,0.50,4,3992.50,53.24,1611.23,2084.38,0.00,0.000000,0.000000,21,0,0.001152,0.003206,57067182,37542054,0,0,50802,0,1,1 +1774120694.316721,18.94,4,3992.50,59.43,1375.04,2327.00,0.00,0.175011,0.000000,199,0,27.048026,0.023348,57070244,37543436,0,0,50804,0,1,1 +1774120699.315109,33.22,4,3992.50,59.73,1367.72,2338.38,0.00,82860.904736,116585.130022,6900752,2038969,118.816519,0.052848,57082655,37547303,0,0,50807,0,1,1 +1774120704.316526,28.19,4,3992.50,59.68,1370.36,2336.52,0.00,3517440026772.130859,3517439993068.509766,21,0,119.558238,0.092645,57095347,37554454,0,0,50809,0,1,1 +1774120709.316996,28.29,4,3992.50,59.75,1367.49,2339.43,0.00,0.000000,0.000000,21,0,119.381297,0.099105,57108022,37562073,0,0,50812,0,1,1 +1774120714.314538,28.26,4,3992.50,59.66,1370.99,2335.95,0.00,82870.995551,116605.002418,6899978,2038678,119.054661,0.108628,57120736,37570473,0,0,50814,0,1,1 +1774120719.317383,27.69,4,3992.50,59.46,1379.12,2327.85,0.00,3516435946269.229980,3516435912569.477539,237,378,120.128738,0.110938,57133586,37579154,0,0,50817,0,1,1 +1774120724.316391,28.31,4,3992.50,59.65,1371.53,2335.43,0.00,3519135239209.937988,3519135239211.448242,21,0,118.618405,0.113105,57146232,37587934,0,0,50819,0,1,1 +1774120729.312826,27.99,4,3992.50,59.79,1366.17,2340.78,0.00,82893.467280,116630.945425,6900752,2039090,119.882816,0.110446,57159041,37596437,0,0,50822,0,1,1 +1774120734.316150,26.94,4,3992.50,59.56,1375.14,2331.88,0.00,3516099710160.797852,3516099676469.773438,21,0,118.517615,0.108980,57171803,37604939,0,0,50824,0,1,1 +1774120739.313414,1.21,4,3992.50,53.74,1602.94,2103.91,0.00,0.175096,0.000000,199,0,44.703877,0.044951,57176701,37608304,0,0,50827,0,1,1 +1774120744.316789,7.79,4,3992.50,53.70,1604.16,2102.66,0.00,1.362459,0.028301,237,378,8.060328,0.046826,57179591,37610442,0,0,50829,0,1,1 +1774120749.317021,19.90,4,3992.50,53.38,1616.93,2089.86,0.00,82829.104854,116542.857537,6900767,2040080,32.194726,0.141352,57190097,37618152,0,0,50832,0,1,1 +1774120754.316909,0.90,4,3992.50,53.40,1616.01,2090.79,0.00,3518515814840.139160,3518515781125.526855,70,0,0.003425,0.005339,57190177,37618255,0,0,50834,0,1,1 +1774120759.316776,1.10,4,3992.50,53.98,1597.45,2113.48,0.00,3518531072032.854004,0.000000,21,0,0.002525,0.003351,57190237,37618326,0,0,50837,0,1,1 +1774120764.317309,0.55,4,3992.50,53.72,1603.65,2103.14,0.00,2.006622,0.000195,238,2,0.002733,0.003941,57190302,37618405,0,0,50839,0,1,1 +1774120769.316908,15.62,4,3992.50,53.99,1589.68,2113.64,0.00,3518719532639.199219,3518719532641.157715,70,0,0.031633,65.506965,57192485,37625560,0,0,50842,0,1,1 +1774120774.316756,29.51,4,3992.50,53.67,1593.61,2101.41,0.00,3518544529417.261719,0.000000,21,0,0.039686,119.575146,57195408,37638055,0,0,50844,0,1,1 +1774120779.312910,6.28,4,3992.50,53.46,1600.90,2093.25,0.00,0.048084,0.000000,70,0,0.007976,20.050744,57195736,37640290,0,0,50847,0,1,1 +1774120784.317583,13.22,4,3992.50,58.18,1420.07,2278.02,0.00,3515152244274.502441,0.000000,21,0,15.815693,0.016424,57197678,37641252,0,0,50849,0,1,1 +1774120789.317638,4.12,4,3992.50,53.22,1612.61,2083.61,0.00,0.174998,0.000000,199,0,24.239649,0.016678,57200261,37642086,0,0,50852,0,1,1 +1774120794.317410,0.55,4,3992.50,53.22,1612.51,2083.59,0.00,1.363441,0.028322,237,378,0.002734,0.003954,57200326,37642166,0,0,50854,0,1,1 +1774120799.317334,0.50,4,3992.50,53.02,1620.34,2075.77,0.00,3518491115684.220215,3518491115685.555664,199,0,0.002734,0.003952,57200391,37642246,0,0,50857,0,1,1 +1774120804.312942,0.55,4,3992.50,53.05,1618.96,2077.14,0.00,1.364578,0.028345,237,378,0.002723,0.003958,57200455,37642326,0,0,50859,0,1,1 +1774120809.315413,0.65,4,3992.50,52.98,1621.95,2074.17,0.00,3516699186513.042969,3516699186514.552246,21,0,0.002740,0.003970,57200521,37642408,0,0,50862,0,1,1 +1774120814.317716,0.55,4,3992.50,53.01,1620.73,2075.38,0.00,0.000000,0.000000,21,0,0.003450,0.004663,57200583,37642485,0,0,50864,0,1,1 +1774120819.317042,0.70,4,3992.50,53.12,1612.09,2079.80,0.00,0.175024,0.000000,199,0,0.002734,0.003965,57200648,37642566,0,0,50867,0,1,1 +1774120824.317397,0.65,4,3992.50,53.14,1611.27,2080.48,0.00,1.831706,0.000195,238,2,0.002827,0.004030,57200719,37642652,0,0,50869,0,1,1 +1774120829.312845,0.50,4,3992.50,53.14,1611.27,2080.46,0.00,3521642998536.504883,3521642998538.513672,21,0,0.002744,0.003976,57200785,37642734,0,0,50872,0,1,1 +1774120834.316995,0.50,4,3992.50,53.14,1611.29,2080.45,0.00,1.537103,0.028297,237,378,0.002806,0.003978,57200855,37642816,0,0,50874,0,1,1 +1774120839.317167,0.45,4,3992.50,53.14,1611.31,2080.43,0.00,82841.943323,116750.983494,6900118,2042157,0.002721,0.003964,57200919,37642897,0,0,50877,0,1,1 +1774120844.317324,0.60,4,3992.50,53.14,1611.32,2080.42,0.00,3518326611176.185547,3518326577268.375488,199,0,0.002721,0.003942,57200983,37642976,0,0,50879,0,1,1 +1774120849.317637,1.61,4,3992.50,53.38,1603.64,2089.85,0.00,82845.085206,116747.892124,6900892,2042642,0.008435,2.411084,57201396,37643558,0,0,50882,0,1,1 +1774120854.317011,10.40,4,3992.50,53.29,1603.14,2086.43,0.00,3518877761313.572754,3518877727404.571289,21,0,0.022683,37.663661,57203010,37647523,0,0,50884,0,1,1 +1774120859.317425,0.75,4,3992.50,53.23,1605.51,2084.07,0.00,2.006670,0.000195,238,2,0.001132,0.003198,57203044,37647586,0,0,50887,0,1,1 +1774120864.317344,0.50,4,3992.50,53.12,1609.95,2079.62,0.00,3518494090967.764160,3518494090969.770996,21,0,0.001144,0.003188,57203079,37647648,0,0,50889,0,1,1 +1774120869.317124,0.50,4,3992.50,53.12,1609.71,2079.86,0.00,0.000000,0.000000,21,0,0.001132,0.003198,57203113,37647711,0,0,50892,0,1,1 +1774120874.317739,0.80,4,3992.50,53.12,1609.71,2079.86,0.00,82836.133741,116774.907487,6900118,2042567,0.001144,0.003188,57203148,37647773,0,0,50894,0,1,1 +1774120879.317179,0.85,4,3992.50,53.15,1608.78,2080.79,0.00,3518831287219.730957,3518831253272.973145,21,0,0.001127,0.003689,57203182,37647840,0,0,50897,0,1,1 +1774120884.313144,0.65,4,3992.50,53.11,1609.99,2079.51,0.00,0.175141,0.000000,199,0,0.000941,0.002749,57203212,37647893,0,0,50899,0,1,1 +1774120889.317793,0.60,4,3992.50,53.11,1609.99,2079.50,0.00,82769.200335,116686.945470,6900118,2042684,0.001181,0.003257,57203250,37647960,0,0,50902,0,1,1 +1774120894.317389,0.55,4,3992.50,53.11,1610.00,2079.50,0.00,3518721294451.885254,3518721260498.026855,238,2,0.001220,0.003281,57203291,37648028,0,0,50904,0,1,1 +1774120899.312833,0.55,4,3992.50,53.13,1609.26,2080.24,0.00,3521646416236.039551,3521646416238.048340,21,0,0.001288,0.003327,57203335,37648101,0,0,50907,0,1,1 +1774120904.312814,0.65,4,3992.50,52.94,1616.66,2072.84,0.00,1.538385,0.028320,237,378,0.001140,0.003196,57203370,37648164,0,0,50909,0,1,1 +1774120909.317740,0.90,4,3992.50,52.99,1615.05,2074.64,0.00,0.000000,0.000000,237,378,0.001143,0.003195,57203405,37648227,0,0,50912,0,1,1 +1774120914.316809,0.50,4,3992.50,52.80,1622.35,2067.36,0.00,0.468544,3519092133043.684082,238,2,0.000916,0.002555,57203433,37648277,0,0,50914,0,1,1 +1774120919.312836,0.75,4,3992.50,52.75,1624.39,2065.32,0.00,3521235437497.449219,3521235437499.282715,199,0,0.002323,0.003330,57203486,37648348,0,0,50917,0,1,1 +1774120924.315075,43.70,4,3992.50,59.01,1388.23,2310.29,0.00,3516862139268.235352,0.000000,21,0,99.699376,0.038105,57213965,37650945,0,0,50919,0,1,1 +1774120929.314571,27.84,4,3992.50,58.93,1393.04,2307.16,0.00,82858.802900,116807.433408,6900892,2043251,118.991482,0.054500,57226419,37654928,0,0,50922,0,1,1 +1774120934.315817,27.76,4,3992.50,58.97,1391.21,2308.88,0.00,3517561160975.461914,3517561160979.548340,6900118,2042883,119.356088,0.073285,57238992,37660504,0,0,50924,0,1,1 +1774120939.316494,27.92,4,3992.50,58.90,1393.98,2306.18,0.00,3517960718871.165039,3517960684926.466309,21,0,119.171247,0.084395,57251545,37667035,0,0,50927,0,1,1 +1774120944.312905,28.52,4,3992.50,59.21,1380.81,2318.23,0.00,0.000000,0.000000,21,0,119.285411,0.110951,57264377,37675547,0,0,50929,0,1,1 +1774120949.317273,27.71,4,3992.50,59.21,1380.99,2318.05,0.00,0.000000,0.000000,21,0,119.693849,0.112456,57277190,37684220,0,0,50932,0,1,1 +1774120954.312869,27.92,4,3992.50,59.00,1389.25,2309.82,0.00,2.008605,0.000195,238,2,118.701763,0.111184,57289925,37692797,0,0,50934,0,1,1 +1774120959.312863,28.15,4,3992.50,59.09,1385.51,2313.46,0.00,82848.546016,116796.010994,6900892,2043377,120.200728,0.109543,57302862,37701192,0,0,50937,0,1,1 +1774120964.317648,10.88,4,3992.50,52.91,1627.73,2071.40,0.00,3515073235394.243652,3515073201481.233398,70,0,90.464819,0.084052,57312653,37707574,0,0,50939,0,1,1 +1774120969.319518,2.81,4,3992.50,53.14,1623.86,2080.71,0.00,82815.469288,116752.556534,6900135,2043106,0.116253,0.008918,57312900,37707781,0,0,50942,0,1,1 +1774120974.317243,22.40,4,3992.50,54.91,1554.73,2149.83,0.00,3520038785222.448242,3520038751255.253418,238,2,36.121920,0.151134,57324278,37716039,0,0,50944,0,1,1 +1774120979.316952,4.96,4,3992.50,54.26,1580.21,2124.34,0.00,3518641645479.437012,3518641645481.443848,21,0,4.042182,0.029498,57325922,37717317,0,0,50947,0,1,1 +1774120984.315435,7.24,4,3992.50,54.04,1587.90,2115.88,0.00,0.048061,0.000000,70,0,0.022321,28.857556,57327370,37720629,0,0,50949,0,1,1 +1774120989.316526,29.18,4,3992.50,53.77,1590.32,2105.14,0.00,3517669926276.424805,0.000000,21,0,0.060866,120.143479,57331979,37733023,0,0,50952,0,1,1 +1774120994.312937,14.97,4,3992.50,53.46,1599.11,2093.19,0.00,0.175126,0.000000,199,0,0.032755,56.125759,57334189,37738872,0,0,50954,0,1,1 +1774120999.316850,12.64,4,3992.50,58.42,1409.32,2287.18,0.00,3515685723546.382812,0.000000,21,0,18.620833,0.017946,57336369,37739896,0,0,50957,0,1,1 +1774121004.317636,3.06,4,3992.50,53.62,1597.08,2099.33,0.00,2.006520,0.000195,238,2,21.431736,0.013880,57338682,37740540,0,0,50959,0,1,1 +1774121009.315732,0.45,4,3992.50,53.23,1612.15,2084.25,0.00,0.000000,0.000000,238,2,0.002735,0.003978,57338747,37740622,0,0,50962,0,1,1 +1774121014.312931,0.55,4,3992.50,53.03,1619.98,2076.42,0.00,3520408903305.875488,3520408903307.883789,21,0,0.002557,0.003385,57338809,37740694,0,0,50964,0,1,1 +1774121019.316937,0.60,4,3992.50,53.03,1620.00,2076.41,0.00,0.000000,0.000000,21,0,0.002744,0.004592,57338875,37740778,0,0,50967,0,1,1 +1774121024.317332,0.95,4,3992.50,53.24,1611.88,2084.54,0.00,0.000000,0.000000,21,0,0.002566,0.003816,57338938,37740857,0,0,50969,0,1,1 +1774121029.317536,0.80,4,3992.50,53.26,1611.62,2085.24,0.00,1.538316,0.028319,237,378,0.002759,0.003995,57339005,37740940,0,0,50972,0,1,1 +1774121034.317730,0.80,4,3992.50,53.23,1610.00,2084.26,0.00,0.000000,0.000000,237,378,0.002492,0.003308,57339062,37741007,0,0,50974,0,1,1 +1774121039.317298,0.55,4,3992.50,53.03,1617.96,2076.32,0.00,0.468498,3518741733460.255859,238,2,0.002852,0.004071,57339135,37741096,0,0,50977,0,1,1 +1774121044.312964,0.50,4,3992.50,53.05,1617.25,2077.02,0.00,3521489166628.469727,3521489166630.478516,21,0,0.002532,0.003342,57339195,37741165,0,0,50979,0,1,1 +1774121049.316784,0.60,4,3992.50,53.05,1617.25,2077.02,0.00,82799.205951,116913.899403,6900268,2046395,0.002814,0.003997,57339266,37741249,0,0,50982,0,1,1 +1774121054.314013,0.55,4,3992.50,53.03,1617.92,2076.32,0.00,3520387866579.938477,3520387832420.258301,21,0,0.002735,0.003944,57339331,37741328,0,0,50984,0,1,1 +1774121059.312942,0.85,4,3992.50,53.08,1615.82,2078.25,0.00,82880.202197,117028.386171,6900268,2046492,0.002722,0.003965,57339395,37741409,0,0,50987,0,1,1 +1774121064.312839,0.45,4,3992.50,53.05,1617.14,2076.94,0.00,3518509745952.337891,3518509711809.253418,237,378,0.002734,0.003967,57339460,37741490,0,0,50989,0,1,1 +1774121069.313784,0.55,4,3992.50,53.03,1617.74,2076.34,0.00,3517772549679.252930,3517772549680.762695,21,0,0.002733,0.003963,57339525,37741571,0,0,50992,0,1,1 +1774121074.313506,0.55,4,3992.50,53.04,1617.50,2076.59,0.00,0.175010,0.000000,199,0,0.002123,0.003725,57339579,37741645,0,0,50994,0,1,1 +1774121079.312863,11.50,4,3992.50,52.87,1622.04,2069.93,0.00,1.832072,0.000195,238,2,0.022859,40.069246,57341083,37745997,0,0,50997,0,1,1 +1774121084.313267,0.65,4,3992.50,52.87,1621.80,2070.16,0.00,82853.754865,117029.094441,6900268,2046930,0.001144,0.003510,57341118,37746061,0,0,50999,0,1,1 +1774121089.317707,0.90,4,3992.50,52.90,1621.71,2071.12,0.00,3515315733053.600586,3515315698907.653320,199,0,0.001143,0.003517,57341153,37746126,0,0,51002,0,1,1 +1774121094.316523,0.55,4,3992.50,52.90,1621.65,2071.04,0.00,1.363702,0.028327,237,378,0.001145,0.003189,57341188,37746188,0,0,51004,0,1,1 +1774121099.317332,0.80,4,3992.50,52.81,1625.07,2067.62,0.00,3517867996029.297363,3517867996030.632324,199,0,0.001152,0.003205,57341224,37746252,0,0,51007,0,1,1 +1774121104.313048,0.60,4,3992.50,52.79,1625.64,2067.04,0.00,1.833407,0.000195,238,2,0.001145,0.003191,57341259,37746314,0,0,51009,0,1,1 +1774121109.312920,0.50,4,3992.50,52.82,1624.79,2067.89,0.00,82862.565245,117046.764041,6900268,2047102,0.001144,0.003198,57341294,37746377,0,0,51012,0,1,1 +1774121114.317246,0.60,4,3992.50,52.84,1624.06,2068.63,0.00,3515395444878.735840,3515395410724.963379,238,2,0.002115,0.003916,57341335,37746446,0,0,51014,0,1,1 +1774121119.317455,0.80,4,3992.50,52.93,1622.39,2072.32,0.00,82856.990120,117038.945977,6900268,2047127,0.000966,0.002626,57341367,37746501,0,0,51017,0,1,1 +1774121124.317538,0.55,4,3992.50,52.93,1622.05,2072.50,0.00,3518378775821.786621,3518378741638.972656,238,2,0.001346,0.003384,57341416,37746578,0,0,51019,0,1,1 +1774121129.317325,0.55,4,3992.50,52.93,1622.09,2072.49,0.00,82863.967091,117048.835616,6900268,2047160,0.001132,0.003198,57341450,37746641,0,0,51022,0,1,1 +1774121134.312816,0.60,4,3992.50,52.75,1629.48,2065.09,0.00,3521613444562.750000,3521613410350.484375,21,0,0.001145,0.003191,57341485,37746703,0,0,51024,0,1,1 +1774121139.316832,0.80,4,3992.50,52.64,1633.77,2060.81,0.00,82800.047891,116949.956393,6901042,2047561,0.002284,0.003254,57341535,37746769,0,0,51027,0,1,1 +1774121144.315557,39.61,4,3992.50,59.35,1378.54,2323.73,0.00,3519334666161.291504,3519334631973.721680,237,378,86.750063,0.037804,57350684,37749295,0,0,51029,0,1,1 +1774121149.313242,27.34,4,3992.50,59.67,1368.44,2336.25,0.00,3520066790009.503418,3520066790010.965820,70,0,119.038569,0.071248,57363165,37754761,0,0,51032,0,1,1 +1774121154.316565,29.29,4,3992.50,59.32,1378.52,2322.61,0.00,82807.371044,116966.327716,6900268,2047325,119.318205,0.113786,57375976,37763558,0,0,51034,0,1,1 +1774121159.316385,28.56,4,3992.50,59.22,1382.45,2318.71,0.00,0.000000,0.102054,6900268,2047389,119.404187,0.115896,57388882,37772444,0,0,51037,0,1,1 +1774121164.317128,28.30,4,3992.50,59.35,1377.40,2323.73,0.00,3517914771963.749023,3517914737787.111816,21,0,119.381757,0.112171,57401779,37781068,0,0,51039,0,1,1 +1774121169.315914,28.60,4,3992.50,59.50,1371.59,2329.56,0.00,0.175042,0.000000,199,0,119.426205,0.114320,57414629,37789897,0,0,51042,0,1,1 +1774121174.313928,29.04,4,3992.50,59.67,1365.08,2336.06,0.00,82895.207579,117090.699012,6900268,2047432,119.445486,0.113719,57427433,37798640,0,0,51044,0,1,1 +1774121179.317929,28.82,4,3992.50,59.30,1379.29,2321.88,0.00,3515624456299.485840,3515624422145.080078,21,0,119.303273,0.113385,57440249,37807319,0,0,51047,0,1,1 +1774121184.317318,14.24,4,3992.50,53.18,1623.80,2082.20,0.00,0.048053,0.000000,70,0,103.585457,0.098030,57451462,37814784,0,0,51049,0,1,1 +1774121189.317713,0.90,4,3992.50,53.21,1622.77,2083.24,0.00,0.000000,0.000000,70,0,0.005852,0.004275,57451575,37814883,0,0,51052,0,1,1 +1774121194.316520,20.83,4,3992.50,53.88,1596.64,2109.36,0.00,82882.237294,117072.970918,6900279,2048342,30.196147,0.134883,57461443,37822108,0,0,51054,0,1,1 +1774121199.317317,7.89,4,3992.50,53.86,1597.37,2108.55,0.00,3517876297738.391113,3517876263561.307617,21,0,10.069828,0.053384,57464852,37824784,0,0,51057,0,1,1 +1774121204.315259,0.50,4,3992.50,53.43,1613.94,2092.02,0.00,0.000000,0.000000,21,0,0.002735,0.003969,57464917,37824865,0,0,51059,0,1,1 +1774121209.312939,0.90,4,3992.50,53.79,1601.10,2105.91,0.00,2.007768,0.000195,238,2,0.002735,0.003966,57464982,37824946,0,0,51062,0,1,1 +1774121214.312845,0.55,4,3992.50,53.79,1601.16,2105.84,0.00,82862.095630,117050.110400,6900296,2049395,0.002505,0.003321,57465040,37825014,0,0,51064,0,1,1 +1774121219.317244,2.46,4,3992.50,53.52,1611.37,2095.61,0.00,0.000000,0.216411,6900296,2049659,0.013057,7.212415,57465810,37826103,0,0,51067,0,1,1 +1774121224.316970,28.53,4,3992.50,53.98,1586.20,2113.42,0.00,3518629809005.898926,3518629774816.434570,238,2,0.038159,119.778223,57468571,37838476,0,0,51069,0,1,1 +1774121229.315459,20.32,4,3992.50,53.15,1613.72,2081.05,0.00,0.000000,0.000000,238,2,0.019726,78.141694,57469869,37846783,0,0,51072,0,1,1 +1774121234.317471,1.00,4,3992.50,53.18,1614.02,2081.93,0.00,3517022009166.591797,3517022009168.423340,199,0,0.005602,0.005406,57469974,37846901,0,0,51074,0,1,1 +1774121239.317520,14.84,4,3992.50,54.53,1563.39,2134.95,0.00,3518403105705.402344,0.000000,21,0,40.065200,0.028555,57474448,37848564,0,0,51077,0,1,1 +1774121244.312828,0.55,4,3992.50,53.99,1583.86,2113.90,0.00,0.000000,0.000000,21,0,0.002736,0.003958,57474513,37848644,0,0,51079,0,1,1 +1774121249.317033,0.65,4,3992.50,53.64,1597.46,2100.30,0.00,1.537086,0.028297,237,378,0.002727,0.003969,57474578,37848726,0,0,51082,0,1,1 +1774121254.316384,0.45,4,3992.50,53.66,1597.02,2100.75,0.00,82887.708880,117266.629495,6900437,2051296,0.002505,0.003321,57474636,37848794,0,0,51084,0,1,1 +1774121259.317286,0.60,4,3992.50,53.66,1596.95,2100.81,0.00,3517802197887.558594,3517802163519.306641,237,378,0.002344,0.004645,57474699,37848888,0,0,51087,0,1,1 +1774121264.312819,0.65,4,3992.50,53.66,1596.96,2100.80,0.00,3521583546572.020508,3521583546573.356934,199,0,0.002749,0.003976,57474765,37848969,0,0,51089,0,1,1 +1774121269.312922,0.80,4,3992.50,53.68,1605.21,2101.51,0.00,3518364606022.034180,0.000000,21,0,0.002734,0.003964,57474830,37849050,0,0,51092,0,1,1 +1774121274.314258,0.45,4,3992.50,53.51,1610.89,2094.95,0.00,1.537968,0.028313,237,378,0.002764,0.003953,57474897,37849130,0,0,51094,0,1,1 +1774121279.313553,0.55,4,3992.50,53.51,1610.91,2094.93,0.00,3518933071593.840820,3518933071595.303223,70,0,0.002765,0.004003,57474964,37849214,0,0,51097,0,1,1 +1774121284.312841,0.55,4,3992.50,53.51,1610.93,2094.92,0.00,0.000000,0.000000,70,0,0.002796,0.004652,57475033,37849302,0,0,51099,0,1,1 +1774121289.317184,0.60,4,3992.50,53.51,1610.93,2094.91,0.00,0.126843,0.000000,199,0,0.002731,0.003948,57475098,37849382,0,0,51102,0,1,1 +1774121294.315659,0.75,4,3992.50,53.51,1610.72,2095.12,0.00,3519510868756.941406,0.000000,21,0,0.004285,0.004864,57475181,37849466,0,0,51104,0,1,1 +1774121299.317333,11.29,4,3992.50,53.71,1601.52,2102.84,0.00,82854.847533,117248.699288,6901211,2052263,0.027827,40.051473,57476991,37853878,0,0,51107,0,1,1 +1774121304.313496,1.15,4,3992.50,53.57,1607.11,2097.22,0.00,0.000000,0.115616,6901211,2052351,0.002563,0.006277,57477064,37853996,0,0,51109,0,1,1 +1774121309.313601,0.55,4,3992.50,53.60,1605.92,2098.44,0.00,3518362957502.293457,3518362923097.359863,199,0,0.001144,0.003198,57477099,37854059,0,0,51112,0,1,1 +1774121314.316285,0.45,4,3992.50,53.60,1605.78,2098.59,0.00,3516549845635.233887,0.000000,21,0,0.000902,0.002553,57477126,37854109,0,0,51114,0,1,1 +1774121319.313792,0.60,4,3992.50,53.61,1605.53,2098.83,0.00,0.175087,0.000000,199,0,0.001145,0.003199,57477161,37854172,0,0,51117,0,1,1 +1774121324.317624,0.60,4,3992.50,53.60,1605.65,2098.71,0.00,3515742795637.441895,0.000000,21,0,0.001131,0.003186,57477195,37854234,0,0,51119,0,1,1 +1774121329.312944,0.85,4,3992.50,53.62,1603.48,2099.44,0.00,0.000000,0.000000,21,0,0.001145,0.003201,57477230,37854297,0,0,51122,0,1,1 +1774121334.312838,0.65,4,3992.50,53.40,1611.33,2090.62,0.00,82880.234107,117296.917050,6900437,2052157,0.001144,0.003188,57477265,37854359,0,0,51124,0,1,1 +1774121339.315393,0.55,4,3992.50,53.42,1610.35,2091.60,0.00,0.000000,0.004685,6900437,2052163,0.001244,0.003321,57477308,37854430,0,0,51127,0,1,1 +1774121344.317546,0.55,4,3992.50,53.30,1615.18,2086.76,0.00,4.107509,0.032408,6901211,2052547,0.001284,0.003344,57477354,37854503,0,0,51129,0,1,1 +1774121349.316416,0.50,4,3992.50,53.33,1613.96,2087.99,0.00,3519232390876.292969,3519232356455.121094,237,378,0.001269,0.003931,57477397,37854577,0,0,51132,0,1,1 +1774121354.312927,0.55,4,3992.50,53.35,1613.22,2088.72,0.00,0.468784,3520893841438.980469,238,2,0.000916,0.002569,57477425,37854628,0,0,51134,0,1,1 +1774121359.312907,0.85,4,3992.50,53.54,1610.54,2096.34,0.00,0.000000,0.000000,238,2,0.001132,0.003198,57477459,37854691,0,0,51137,0,1,1 +1774121364.317569,0.80,4,3992.50,53.31,1619.38,2087.36,0.00,3515159655037.022461,3515159655038.979492,70,0,0.002513,0.003862,57477516,37854767,0,0,51139,0,1,1 +1774121369.317028,40.83,4,3992.50,60.30,1354.09,2361.00,0.00,3518818074491.317383,0.000000,21,0,96.749268,0.040663,57487656,37857641,0,0,51142,0,1,1 +1774121374.314343,28.33,4,3992.50,59.80,1375.39,2341.12,0.00,0.000000,0.000000,21,0,119.627659,0.025293,57499822,37859497,0,0,51144,0,1,1 +1774121379.316105,27.88,4,3992.50,59.99,1367.69,2348.79,0.00,0.000000,0.000000,21,0,118.725019,0.037955,57512037,37862353,0,0,51147,0,1,1 +1774121384.316716,28.39,4,3992.50,59.98,1368.09,2348.38,0.00,0.000000,0.000000,21,0,119.549939,0.044360,57524266,37865770,0,0,51149,0,1,1 +1774121389.316716,28.30,4,3992.50,60.05,1365.64,2350.90,0.00,82878.483063,117294.681645,6900437,2052355,119.364200,0.037000,57536434,37868499,0,0,51152,0,1,1 +1774121394.316722,28.46,4,3992.50,60.18,1366.75,2356.02,0.00,3518432774408.600098,3518432739990.934570,237,378,118.962620,0.045757,57548491,37871915,0,0,51154,0,1,1 +1774121399.317092,27.92,4,3992.50,60.18,1366.56,2356.24,0.00,3518177115676.631348,3518177115678.093262,70,0,119.556182,0.042221,57560733,37875118,0,0,51157,0,1,1 +1774121404.313246,23.74,4,3992.50,61.15,1328.63,2394.27,0.00,3521145235768.037598,0.000000,21,0,90.687862,0.023455,57569950,37876973,0,0,51159,0,1,1 +1774121409.314104,16.63,4,3992.50,54.19,1601.27,2121.66,0.00,2.006492,0.000195,238,2,121.550523,0.029076,57580890,37879131,0,0,51162,0,1,1 +1774121414.313475,2.36,4,3992.50,53.76,1618.14,2104.77,0.00,3518880090202.914062,3518880090204.921387,21,0,0.696506,0.007454,57581142,37879320,0,0,51164,0,1,1 +1774121419.312811,19.68,4,3992.50,54.87,1574.78,2148.12,0.00,0.175023,0.000000,199,0,28.185112,0.131783,57590471,37886296,0,0,51167,0,1,1 +1774121424.312859,7.74,4,3992.50,54.60,1585.20,2137.69,0.00,82877.678818,117294.702206,6900463,2053644,12.077275,0.057936,57594572,37889347,0,0,51169,0,1,1 +1774121429.313407,8.34,4,3992.50,54.62,1583.22,2138.64,0.00,3518052035105.045410,3518052000690.120117,237,378,0.024812,30.446958,57596247,37892822,0,0,51172,0,1,1 +1774121434.316608,30.57,4,3992.50,54.23,1590.25,2123.29,0.00,0.468157,3516185680564.253906,238,2,0.055773,123.496298,57600434,37905593,0,0,51174,0,1,1 +1774121439.312828,13.71,4,3992.50,54.12,1591.68,2118.87,0.00,82939.365023,117558.726668,6900466,2055039,0.026919,51.114522,57602339,37910919,0,0,51177,0,1,1 +1774121444.317385,3.46,4,3992.50,58.76,1414.20,2300.71,0.00,3515233221523.956543,3515233186962.768066,237,378,0.610404,0.007953,57602615,37911150,0,0,51179,0,1,1 +1774121449.317096,12.39,4,3992.50,54.59,1572.11,2137.19,0.00,3518640993789.729980,3518640993791.240234,21,0,39.461167,0.020685,57606861,37912515,0,0,51182,0,1,1 +1774121454.317557,1.05,4,3992.50,54.11,1590.79,2118.55,0.00,82886.944033,117490.993666,6900589,2055616,0.004344,0.006845,57606942,37912621,0,0,51184,0,1,1 +1774121459.317245,0.70,4,3992.50,53.87,1600.28,2109.07,0.00,0.000000,0.034279,6900589,2055654,0.002834,0.004102,57607015,37912711,0,0,51187,0,1,1 +1774121464.316926,0.70,4,3992.50,53.82,1602.21,2107.14,0.00,0.000000,0.014454,6900589,2055664,0.002734,0.003942,57607080,37912790,0,0,51189,0,1,1 +1774121469.317701,0.80,4,3992.50,53.86,1600.74,2108.60,0.00,4.108641,0.036615,6901363,2056055,0.002733,0.003964,57607145,37912871,0,0,51192,0,1,1 +1774121474.316782,1.15,4,3992.50,53.80,1603.04,2106.31,0.00,3519083871666.246582,3519083837054.662109,238,2,0.002747,0.003974,57607211,37912952,0,0,51194,0,1,1 +1774121479.313145,1.00,4,3992.50,53.98,1595.89,2113.46,0.00,82957.046222,117587.596579,6901363,2056157,0.002507,0.003320,57607269,37913020,0,0,51197,0,1,1 +1774121484.313786,0.80,4,3992.50,53.88,1599.85,2109.50,0.00,0.000000,0.008202,6901363,2056167,0.002827,0.004029,57607340,37913106,0,0,51199,0,1,1 +1774121489.316026,0.75,4,3992.50,53.88,1599.84,2109.51,0.00,3516861478495.160645,3516861443905.791504,237,378,0.002732,0.004606,57607405,37913191,0,0,51202,0,1,1 +1774121494.317616,1.50,4,3992.50,53.78,1603.88,2105.48,0.00,3517318771858.634277,3517318771860.095703,70,0,0.002728,0.003961,57607470,37913272,0,0,51204,0,1,1 +1774121499.316853,0.65,4,3992.50,53.78,1603.89,2105.47,0.00,0.126973,0.000000,199,0,0.002809,0.004005,57607540,37913356,0,0,51207,0,1,1 +1774121504.314883,0.80,4,3992.50,53.58,1611.61,2097.74,0.00,1.832558,0.000195,238,2,0.002722,0.003956,57607604,37913436,0,0,51209,0,1,1 +1774121509.312832,1.25,4,3992.50,53.68,1616.47,2101.53,0.00,0.000000,0.000000,238,2,0.002722,0.003966,57607668,37913517,0,0,51212,0,1,1 +1774121514.317336,0.55,4,3992.50,53.70,1614.82,2102.42,0.00,82817.983311,117396.489697,6900589,2056006,0.002510,0.003326,57607727,37913586,0,0,51214,0,1,1 +1774121519.315042,0.60,4,3992.50,53.70,1614.84,2102.41,0.00,3520052196338.875000,3520052161713.832520,237,378,0.002116,0.003729,57607780,37913660,0,0,51217,0,1,1 +1774121524.312877,11.01,4,3992.50,54.11,1596.42,2118.50,0.00,82928.954109,117587.226914,6900589,2056306,0.027027,40.083935,57609607,37918167,0,0,51219,0,1,1 +1774121529.317717,0.75,4,3992.50,54.02,1599.91,2115.03,0.00,3515034561989.509766,3515034527379.249023,238,2,0.001483,0.003416,57609648,37918236,0,0,51222,0,1,1 +1774121534.312841,0.70,4,3992.50,53.81,1608.33,2106.61,0.00,3521871337020.097168,3521871337022.105957,21,0,0.001745,0.004301,57609695,37918320,0,0,51224,0,1,1 +1774121539.312924,1.00,4,3992.50,54.28,1589.73,2125.31,0.00,1.538353,0.028320,237,378,0.001152,0.003206,57609731,37918384,0,0,51227,0,1,1 +1774121544.317247,0.55,4,3992.50,53.75,1610.58,2104.36,0.00,3515397626651.541504,3515397626653.002441,70,0,0.001131,0.003185,57609765,37918446,0,0,51229,0,1,1 +1774121549.317384,0.60,4,3992.50,53.77,1609.60,2105.34,0.00,82892.277142,117533.346401,6900589,2056465,0.001144,0.003198,57609800,37918509,0,0,51232,0,1,1 +1774121554.317728,0.55,4,3992.50,53.80,1608.62,2106.32,0.00,3518195368268.408203,3518195333628.822266,21,0,0.001144,0.003832,57609835,37918575,0,0,51234,0,1,1 +1774121559.317111,0.65,4,3992.50,53.82,1607.88,2107.05,0.00,0.000000,0.000000,21,0,0.001596,0.004333,57609887,37918665,0,0,51237,0,1,1 +1774121564.313630,0.60,4,3992.50,53.63,1615.30,2099.64,0.00,0.000000,0.000000,21,0,0.000967,0.002618,57609919,37918719,0,0,51239,0,1,1 +1774121569.316906,0.85,4,3992.50,53.59,1604.96,2098.27,0.00,0.000000,0.000000,21,0,0.001225,0.003283,57609960,37918788,0,0,51242,0,1,1 +1774121574.317324,0.55,4,3992.50,53.59,1604.78,2098.31,0.00,2.006668,0.000195,238,2,0.001206,0.003238,57609999,37918854,0,0,51244,0,1,1 +1774121579.313199,0.55,4,3992.50,53.42,1611.69,2091.41,0.00,3521342519993.833984,3521342519995.794434,70,0,0.001184,0.003234,57610037,37918920,0,0,51247,0,1,1 +1774121584.313016,0.55,4,3992.50,53.20,1620.29,2082.81,0.00,3518566081291.872070,0.000000,21,0,0.001144,0.003188,57610072,37918982,0,0,51249,0,1,1 +1774121589.313004,0.80,4,3992.50,53.20,1620.32,2082.77,0.00,0.000000,0.000000,21,0,0.002528,0.003913,57610130,37919062,0,0,51252,0,1,1 +1774121594.317332,47.22,4,3992.50,59.52,1380.86,2330.50,0.00,0.048005,0.000000,70,0,95.054185,0.052462,57620035,37922833,0,0,51254,0,1,1 +1774121599.316860,28.56,4,3992.50,59.66,1377.20,2335.84,0.00,82906.481206,117553.921704,6901363,2057076,121.579322,0.062276,57632312,37927451,0,0,51257,0,1,1 +1774121604.313985,28.83,4,3992.50,59.84,1360.49,2342.97,0.00,3520461069329.273926,3520461034665.178223,70,0,119.832003,0.053478,57644413,37931563,0,0,51259,0,1,1 +1774121609.313732,28.36,4,3992.50,59.35,1380.06,2323.52,0.00,3518615380306.441406,0.000000,21,0,118.968766,0.055342,57656395,37935728,0,0,51262,0,1,1 +1774121614.316487,28.59,4,3992.50,59.74,1364.68,2338.99,0.00,2.005731,0.000195,238,2,120.096012,0.048237,57668451,37939345,0,0,51264,0,1,1 +1774121619.316967,28.36,4,3992.50,59.37,1379.20,2324.34,0.00,82888.735128,117531.693109,6901363,2057150,120.151125,0.056369,57680450,37943567,0,0,51267,0,1,1 +1774121624.312781,28.12,4,3992.50,59.37,1378.93,2324.62,0.00,3521384914623.214355,3521384879949.913086,21,0,119.663306,0.054568,57692478,37947656,0,0,51269,0,1,1 +1774121629.312888,28.56,4,3992.50,59.63,1369.00,2334.51,0.00,2.006793,0.000195,238,2,118.758712,0.051804,57704479,37951640,0,0,51272,0,1,1 +1774121634.317291,11.16,4,3992.50,54.76,1559.75,2143.89,0.00,3515340839018.644043,3515340839020.601074,70,0,91.245009,0.044251,57713701,37954975,0,0,51274,0,1,1 +1774121639.317508,1.60,4,3992.50,53.87,1594.47,2109.12,0.00,1.490267,0.028319,237,378,0.010484,0.008126,57713891,37955146,0,0,51277,0,1,1 +1774121644.312936,17.70,4,3992.50,54.35,1575.89,2127.75,0.00,82969.068908,117650.949342,6900606,2057347,26.183164,0.118698,57722359,37961518,0,0,51279,0,1,1 +1774121649.317588,10.71,4,3992.50,54.24,1579.99,2123.59,0.00,3515166655707.974609,3515166621091.478027,70,0,14.080501,0.064318,57726938,37964889,0,0,51282,0,1,1 +1774121654.312840,1.05,4,3992.50,53.89,1593.76,2109.80,0.00,3521781288836.072266,0.000000,21,0,0.003453,0.005356,57727020,37964993,0,0,51284,0,1,1 +1774121659.317750,6.11,4,3992.50,53.96,1597.07,2112.84,0.00,0.000000,0.000000,21,0,0.019678,24.018084,57728278,37967784,0,0,51287,0,1,1 +1774121664.315406,29.01,4,3992.50,53.99,1587.84,2113.97,0.00,0.048069,0.000000,70,0,0.035320,118.229310,57730825,37980189,0,0,51289,0,1,1 +1774121669.317166,17.00,4,3992.50,53.26,1613.22,2085.38,0.00,0.000000,0.000000,70,0,0.047453,62.880688,57734416,37986872,0,0,51292,0,1,1 +1774121674.317378,8.08,4,3992.50,58.28,1420.30,2281.95,0.00,0.000000,0.000000,70,0,2.813941,0.012445,57735091,37987372,0,0,51294,0,1,1 +1774121679.312878,8.10,4,3992.50,54.27,1577.53,2124.94,0.00,82989.419877,117855.845328,6901492,2059978,37.289093,0.017247,57738929,37988454,0,0,51297,0,1,1 +1774121684.312927,0.80,4,3992.50,53.96,1589.66,2112.79,0.00,3518402636351.105469,3518402636355.197754,6900718,2059623,0.003319,0.005679,57739011,37988554,0,0,51299,0,1,1 +1774121689.317427,0.90,4,3992.50,53.63,1594.75,2099.86,0.00,0.000000,0.102837,6900718,2059659,0.002731,0.004604,57739076,37988639,0,0,51302,0,1,1 +1774121694.316083,0.60,4,3992.50,53.40,1604.00,2090.62,0.00,3519383005203.283691,3519382970354.725586,21,0,0.002747,0.003955,57739142,37988719,0,0,51304,0,1,1 +1774121699.313099,0.50,4,3992.50,53.40,1604.02,2090.60,0.00,1.539298,0.028337,237,378,0.002710,0.003967,57739205,37988800,0,0,51307,0,1,1 +1774121704.316972,0.50,4,3992.50,53.41,1603.46,2091.14,0.00,0.468094,3515713980428.785156,238,2,0.002765,0.003978,57739273,37988882,0,0,51309,0,1,1 +1774121709.317517,0.65,4,3992.50,53.25,1609.59,2085.00,0.00,3518053731175.482910,0.028122,237,378,0.002115,0.003727,57739326,37988956,0,0,51312,0,1,1 +1774121714.317589,0.65,4,3992.50,53.07,1616.95,2077.62,0.00,3518386254204.574219,3518386254206.083984,21,0,0.003655,0.004611,57739393,37989038,0,0,51314,0,1,1 +1774121719.312817,0.75,4,3992.50,53.25,1607.65,2084.94,0.00,0.000000,0.000000,21,0,0.002830,0.004018,57739464,37989123,0,0,51317,0,1,1 +1774121724.315851,0.50,4,3992.50,53.26,1607.30,2085.11,0.00,0.174894,0.000000,199,0,0.002511,0.003339,57739523,37989193,0,0,51319,0,1,1 +1774121729.317256,0.55,4,3992.50,53.26,1607.32,2085.09,0.00,0.000000,0.000000,199,0,0.002808,0.004003,57739593,37989277,0,0,51322,0,1,1 +1774121734.316986,0.50,4,3992.50,53.26,1607.32,2085.09,0.00,82919.102416,117756.577379,6901493,2060275,0.002721,0.003955,57739657,37989357,0,0,51324,0,1,1 +1774121739.316866,0.50,4,3992.50,53.26,1607.34,2085.09,0.00,3518521391037.250977,3518521356200.953613,70,0,0.002734,0.003964,57739722,37989438,0,0,51327,0,1,1 +1774121744.312827,0.55,4,3992.50,53.27,1606.91,2085.48,0.00,0.000000,0.000000,70,0,0.002744,0.003966,57739788,37989519,0,0,51329,0,1,1 +1774121749.312879,12.44,4,3992.50,53.46,1597.00,2093.08,0.00,0.126952,0.000000,199,0,0.021965,40.064537,57741217,37993982,0,0,51332,0,1,1 +1774121754.316885,1.15,4,3992.50,53.48,1595.29,2093.73,0.00,1.830370,0.000195,238,2,0.002067,0.005397,57741281,37994085,0,0,51334,0,1,1 +1774121759.316752,0.55,4,3992.50,53.42,1597.32,2091.69,0.00,3518530642760.244141,0.028126,237,378,0.001144,0.003198,57741316,37994148,0,0,51337,0,1,1 +1774121764.312817,0.55,4,3992.50,53.25,1604.20,2084.82,0.00,0.000000,0.000000,237,378,0.001016,0.003186,57741350,37994210,0,0,51339,0,1,1 +1774121769.312915,0.60,4,3992.50,53.24,1604.36,2084.66,0.00,3518368734389.353027,3518368734390.863281,21,0,0.001040,0.002577,57741379,37994262,0,0,51342,0,1,1 +1774121774.312897,0.95,4,3992.50,53.17,1607.23,2081.78,0.00,0.175001,0.000000,199,0,0.001144,0.003188,57741414,37994324,0,0,51344,0,1,1 +1774121779.312832,0.85,4,3992.50,53.17,1607.24,2081.78,0.00,1.831860,0.000195,238,2,0.001144,0.003198,57741449,37994387,0,0,51347,0,1,1 +1774121784.312904,0.60,4,3992.50,52.99,1614.47,2074.52,0.00,82911.585755,117789.000492,6901493,2060898,0.001157,0.003219,57741485,37994451,0,0,51349,0,1,1 +1774121789.312894,0.50,4,3992.50,52.99,1614.47,2074.52,0.00,3518444018600.289551,3518443983724.260742,70,0,0.001195,0.003260,57741524,37994518,0,0,51352,0,1,1 +1774121794.313473,0.55,4,3992.50,52.99,1614.48,2074.51,0.00,3518030199526.096191,0.000000,21,0,0.001282,0.003331,57741569,37994590,0,0,51354,0,1,1 +1774121799.312844,0.60,4,3992.50,52.99,1614.48,2074.51,0.00,82925.212920,117805.529156,6901493,2060915,0.001238,0.003274,57741610,37994659,0,0,51357,0,1,1 +1774121804.316457,0.50,4,3992.50,52.82,1620.94,2068.05,0.00,3515897127968.145996,3515897093117.342773,70,0,0.000910,0.002560,57741638,37994710,0,0,51359,0,1,1 +1774121809.317344,0.85,4,3992.50,53.04,1612.67,2076.60,0.00,82895.917341,117769.829775,6900719,2060555,0.001132,0.003197,57741672,37994773,0,0,51362,0,1,1 +1774121814.317566,3.06,4,3992.50,59.59,1359.68,2332.98,0.00,3518281261187.053711,3518281226308.543457,21,0,0.205541,0.007582,57741812,37994920,0,0,51364,0,1,1 +1774121819.317372,42.97,4,3992.50,59.68,1361.73,2336.46,0.00,0.048049,0.000000,70,0,107.156846,0.032638,57753028,37997246,0,0,51367,0,1,1 +1774121824.313434,28.39,4,3992.50,59.53,1368.57,2330.56,0.00,82975.986836,117883.682342,6900719,2060698,118.265391,0.043162,57765346,38000420,0,0,51369,0,1,1 +1774121829.316453,27.63,4,3992.50,59.59,1366.23,2332.95,0.00,3516313667049.551758,3516313632188.939941,237,378,120.096374,0.024916,57777805,38002326,0,0,51372,0,1,1 +1774121834.316902,27.87,4,3992.50,59.42,1372.77,2326.50,0.00,3518121461702.219727,3518121461703.729980,21,0,118.776697,0.085250,57790294,38008847,0,0,51374,0,1,1 +1774121839.314489,28.57,4,3992.50,59.17,1382.61,2316.60,0.00,0.048070,0.000000,70,0,119.656342,0.108965,57803174,38017177,0,0,51377,0,1,1 +1774121844.315692,28.14,4,3992.50,59.21,1381.41,2318.11,0.00,3517591036881.829590,0.000000,21,0,119.369750,0.110298,57815970,38025741,0,0,51379,0,1,1 +1774121849.312852,27.85,4,3992.50,59.19,1382.02,2317.47,0.00,1.539253,0.028336,237,378,119.064833,0.110036,57828703,38034277,0,0,51382,0,1,1 +1774121854.317300,28.02,4,3992.50,59.30,1377.61,2321.91,0.00,3515310134519.880859,3515310134521.341309,70,0,120.090796,0.109912,57841514,38042732,0,0,51384,0,1,1 +1774121859.315611,9.25,4,3992.50,52.92,1627.71,2071.82,0.00,82942.904086,117831.204705,6901509,2061251,82.968932,0.081510,57850427,38048907,0,0,51387,0,1,1 +1774121864.314190,4.42,4,3992.50,53.41,1608.29,2091.24,0.00,3519437933049.287598,3519437898161.384766,237,378,4.026770,0.020797,57851702,38049899,0,0,51389,0,1,1 +1774121869.316984,16.50,4,3992.50,54.00,1593.52,2114.04,0.00,3516472041843.670898,3516472041845.180176,21,0,24.144031,0.116043,57859746,38056089,0,0,51392,0,1,1 +1774121874.315385,8.07,4,3992.50,54.21,1584.91,2122.41,0.00,2.007478,0.000195,238,2,12.083955,0.057684,57863768,38059152,0,0,51394,0,1,1 +1774121879.316956,1.51,4,3992.50,53.58,1609.49,2097.88,0.00,0.000000,0.000000,238,2,0.003251,0.004738,57863845,38059246,0,0,51397,0,1,1 +1774121884.316979,0.55,4,3992.50,53.25,1622.46,2084.89,0.00,82908.453525,117791.835821,6900737,2062270,0.002734,0.004598,57863910,38059330,0,0,51399,0,1,1 +1774121889.316712,0.50,4,3992.50,53.16,1625.84,2081.52,0.00,3518624830532.567871,3518624795649.171387,21,0,0.002729,0.003960,57863975,38059411,0,0,51402,0,1,1 +1774121894.314178,0.90,4,3992.50,53.17,1625.51,2081.86,0.00,0.000000,0.000000,21,0,0.003845,0.004543,57864062,38059502,0,0,51404,0,1,1 +1774121899.313438,1.00,4,3992.50,53.65,1606.75,2100.70,0.00,0.000000,0.000000,21,0,0.003798,0.004358,57864149,38059595,0,0,51407,0,1,1 +1774121904.317510,0.55,4,3992.50,53.35,1618.62,2088.80,0.00,0.174858,0.000000,199,0,0.002813,0.004026,57864220,38059680,0,0,51409,0,1,1 +1774121909.313104,0.60,4,3992.50,53.36,1618.38,2089.04,0.00,1.833451,0.000195,238,2,0.002761,0.003986,57864287,38059762,0,0,51412,0,1,1 +1774121914.314144,0.50,4,3992.50,53.36,1618.18,2089.23,0.00,82895.710726,117768.631182,6901511,2062982,0.002492,0.003320,57864344,38059830,0,0,51414,0,1,1 +1774121919.316176,0.60,4,3992.50,53.36,1618.18,2089.22,0.00,3517007732433.216309,3517007697567.216309,238,2,0.002733,0.003950,57864409,38059910,0,0,51417,0,1,1 +1774121924.314965,0.55,4,3992.50,53.18,1625.21,2082.15,0.00,82928.920869,117821.659035,6900737,2062651,0.002809,0.003995,57864479,38059993,0,0,51419,0,1,1 +1774121929.312955,0.75,4,3992.50,53.38,1608.20,2089.97,0.00,4.110930,0.088317,6901511,2063053,0.002730,0.003961,57864544,38060074,0,0,51422,0,1,1 +1774121934.317488,0.55,4,3992.50,53.20,1615.41,2082.72,0.00,3515250646871.677734,3515250612025.006348,21,0,0.002731,0.003951,57864609,38060154,0,0,51424,0,1,1 +1774121939.312911,0.55,4,3992.50,53.17,1616.29,2081.79,0.00,2.008675,0.000195,238,2,0.002761,0.003999,57864676,38060237,0,0,51427,0,1,1 +1774121944.313387,0.50,4,3992.50,53.13,1617.94,2080.18,0.00,3518102196895.873535,3518102196897.880371,21,0,0.003428,0.005229,57864746,38060323,0,0,51429,0,1,1 +1774121949.312834,0.50,4,3992.50,53.18,1615.99,2082.13,0.00,82920.011582,117806.301555,6900737,2062758,0.002505,0.003640,57864804,38060393,0,0,51432,0,1,1 +1774121954.316385,4.07,4,3992.50,53.28,1611.97,2086.06,0.00,3515940223362.855957,3515940188503.669922,237,378,0.017858,16.421378,57865866,38062473,0,0,51434,0,1,1 +1774121959.314770,29.07,4,3992.50,53.54,1593.99,2096.25,0.00,0.468608,3519573486993.409668,238,2,0.033377,119.810634,57868251,38074957,0,0,51437,0,1,1 +1774121964.313850,17.45,4,3992.50,53.16,1604.59,2081.23,0.00,3519085016831.296875,3519085016833.255859,70,0,0.013313,68.910130,57869229,38082166,0,0,51439,0,1,1 +1774121969.317577,12.66,4,3992.50,57.95,1420.24,2269.02,0.00,1.489222,0.028299,237,378,9.816948,0.019817,57870643,38083199,0,0,51442,0,1,1 +1774121974.313441,5.12,4,3992.50,54.22,1566.54,2122.74,0.00,82998.001840,118096.392170,6901629,2064782,30.277022,1.632589,57874067,38085135,0,0,51444,0,1,1 +1774121979.312820,10.34,4,3992.50,53.46,1594.82,2092.91,0.00,3518873805525.180176,3518873770451.472656,237,378,0.023692,38.465418,57875759,38089230,0,0,51447,0,1,1 +1774121984.317194,0.60,4,3992.50,53.24,1603.30,2084.43,0.00,82856.874803,117929.660178,6901629,2065057,0.001143,0.003185,57875794,38089292,0,0,51449,0,1,1 +1774121989.317127,0.90,4,3992.50,53.63,1587.97,2099.87,0.00,3518483840158.618652,3518483805056.154785,70,0,0.001132,0.003198,57875828,38089355,0,0,51452,0,1,1 +1774121994.317405,0.65,4,3992.50,53.43,1595.89,2091.82,0.00,82922.107667,118026.460934,6900855,2064785,0.001132,0.003188,57875862,38089417,0,0,51454,0,1,1 +1774121999.316889,0.55,4,3992.50,53.43,1595.94,2091.82,0.00,3518800659587.952148,3518800624476.556152,237,378,0.000953,0.002596,57875893,38089470,0,0,51457,0,1,1 +1774122004.317185,0.55,4,3992.50,53.38,1597.72,2089.89,0.00,0.000000,0.000000,237,378,0.001144,0.003188,57875928,38089532,0,0,51459,0,1,1 +1774122009.314099,0.55,4,3992.50,53.41,1596.54,2091.22,0.00,82980.569603,118112.028096,6901638,2065254,0.001153,0.003530,57875964,38089598,0,0,51462,0,1,1 +1774122014.316417,0.55,4,3992.50,53.41,1596.54,2091.21,0.00,0.000000,0.006247,6901638,2065257,0.001131,0.003508,57875998,38089662,0,0,51464,0,1,1 +1774122019.316763,0.50,4,3992.50,53.41,1596.54,2091.21,0.00,3518193487536.641113,3518193452429.290527,237,378,0.002217,0.004054,57876047,38089740,0,0,51467,0,1,1 +1774122024.312916,0.85,4,3992.50,53.30,1601.06,2086.88,0.00,82989.106312,118130.050106,6900864,2064897,0.001072,0.002682,57876085,38089800,0,0,51469,0,1,1 +1774122029.312984,0.65,4,3992.50,53.37,1598.41,2089.49,0.00,4.109221,0.032421,6901638,2065281,0.001144,0.003198,57876120,38089863,0,0,51472,0,1,1 +1774122034.312858,0.65,4,3992.50,53.37,1598.23,2089.70,0.00,3518526076402.810059,3518526041293.432617,199,0,0.001144,0.003188,57876155,38089925,0,0,51474,0,1,1 +1774122039.317389,9.12,4,3992.50,59.77,1353.77,2339.98,0.00,3515251586655.951172,0.000000,21,0,2.808451,0.010700,57876783,38090418,0,0,51477,0,1,1 +1774122044.316715,41.13,4,3992.50,59.34,1374.78,2323.36,0.00,1.538586,0.028324,237,378,107.164578,0.058085,57887746,38094745,0,0,51479,0,1,1 +1774122049.312740,28.26,4,3992.50,59.29,1377.80,2321.21,0.00,82991.236212,118133.195067,6900864,2065052,120.458922,0.058838,57899877,38099246,0,0,51482,0,1,1 +1774122054.317511,28.84,4,3992.50,59.84,1358.10,2343.03,0.00,3515082404423.397461,3515082369344.322754,70,0,119.647947,0.048775,57911910,38103008,0,0,51484,0,1,1 +1774122059.317683,28.26,4,3992.50,59.50,1369.68,2329.40,0.00,82923.884458,118035.424012,6900864,2065108,119.157856,0.048100,57923843,38106590,0,0,51487,0,1,1 +1774122064.318010,28.56,4,3992.50,59.52,1368.71,2330.28,0.00,3518207617793.395020,3518207582682.986816,21,0,120.155199,0.049596,57935925,38110358,0,0,51489,0,1,1 +1774122069.317086,28.48,4,3992.50,59.45,1371.55,2327.43,0.00,82942.109106,118061.309322,6900864,2065128,119.586212,0.055666,57948070,38114708,0,0,51492,0,1,1 +1774122074.313473,28.69,4,3992.50,59.34,1375.68,2323.34,0.00,4.112249,0.039970,6901638,2065519,118.847512,0.051977,57960060,38118709,0,0,51494,0,1,1 +1774122079.315806,28.69,4,3992.50,59.77,1358.72,2340.27,0.00,3516796235884.105469,0.017960,6900864,2065162,120.106232,0.052961,57972130,38122719,0,0,51497,0,1,1 +1774122084.313391,7.93,4,3992.50,54.65,1559.18,2139.79,0.00,3520136965601.302246,3520136930470.059082,237,378,77.546167,0.037759,57979985,38125406,0,0,51499,0,1,1 +1774122089.312736,1.70,4,3992.50,53.95,1586.80,2112.17,0.00,82940.317049,118055.230819,6901647,2065687,0.009822,0.005786,57980162,38125554,0,0,51502,0,1,1 +1774122094.316375,11.65,4,3992.50,54.27,1574.27,2124.68,0.00,3515877832690.383789,3515877797607.121582,21,0,14.075634,0.065461,57984677,38128908,0,0,51504,0,1,1 +1774122099.316877,16.70,4,3992.50,53.69,1596.82,2102.14,0.00,0.000000,0.000000,21,0,20.130733,0.086391,57990859,38133672,0,0,51507,0,1,1 +1774122104.313653,5.93,4,3992.50,53.51,1603.93,2095.02,0.00,0.000000,0.000000,21,0,6.030614,0.032758,57992918,38135267,0,0,51509,0,1,1 +1774122109.317698,0.85,4,3992.50,53.46,1608.87,2092.90,0.00,0.000000,0.000000,21,0,0.002731,0.003961,57992983,38135348,0,0,51512,0,1,1 +1774122114.317475,0.90,4,3992.50,53.81,1594.87,2106.79,0.00,0.048049,0.000000,70,0,0.002734,0.003954,57993048,38135428,0,0,51514,0,1,1 +1774122119.317712,0.60,4,3992.50,53.72,1598.40,2103.25,0.00,3518270625805.561035,0.000000,21,0,0.002721,0.003964,57993112,38135509,0,0,51517,0,1,1 +1774122124.312830,0.55,4,3992.50,53.61,1602.75,2098.88,0.00,0.000000,0.000000,21,0,0.002507,0.003324,57993170,38135577,0,0,51519,0,1,1 +1774122129.317743,0.55,4,3992.50,53.43,1609.61,2092.04,0.00,0.048000,0.000000,70,0,0.002840,0.004723,57993244,38135670,0,0,51522,0,1,1 +1774122134.317405,0.60,4,3992.50,53.46,1608.71,2092.94,0.00,82936.537479,118049.115267,6901647,2067061,0.004276,0.005765,57993325,38135777,0,0,51524,0,1,1 +1774122139.317366,0.90,4,3992.50,53.45,1620.75,2092.65,0.00,3518464657236.474609,3518464622124.036133,238,2,0.002734,0.004608,57993390,38135862,0,0,51527,0,1,1 +1774122144.316834,0.55,4,3992.50,53.47,1619.82,2093.32,0.00,3518811528087.766602,3518811528089.598633,199,0,0.002734,0.003955,57993455,38135942,0,0,51529,0,1,1 +1774122149.313015,0.50,4,3992.50,53.46,1619.92,2093.22,0.00,82990.083509,118131.636333,6900873,2066997,0.002823,0.004007,57993526,38136026,0,0,51532,0,1,1 +1774122154.315573,0.60,4,3992.50,53.47,1619.70,2093.44,0.00,3516638517275.531738,3516638482176.939453,238,2,0.002720,0.003952,57993590,38136106,0,0,51534,0,1,1 +1774122159.317684,0.45,4,3992.50,53.47,1619.72,2093.42,0.00,82889.868576,117991.663292,6900873,2067074,0.002905,0.005037,57993661,38136201,0,0,51537,0,1,1 +1774122164.314890,0.70,4,3992.50,53.47,1619.73,2093.41,0.00,0.000000,0.004299,6900873,2067081,0.002735,0.003957,57993726,38136281,0,0,51539,0,1,1 +1774122169.318409,14.57,4,3992.50,54.12,1591.98,2119.00,0.00,3515962429161.219238,3515962394071.304688,21,0,0.030735,58.648022,57995871,38142604,0,0,51542,0,1,1 +1774122174.315557,28.88,4,3992.50,53.86,1593.86,2108.56,0.00,2.007981,0.000195,238,2,0.029124,119.236195,57997950,38154913,0,0,51544,0,1,1 +1774122179.312973,8.14,4,3992.50,54.82,1555.80,2146.31,0.00,0.000000,0.000000,238,2,0.009795,27.258492,57998358,38157842,0,0,51547,0,1,1 +1774122184.313656,13.96,4,3992.50,53.24,1620.10,2084.49,0.00,82929.467131,118230.581922,6900988,2068609,40.056903,0.022350,58002740,38159265,0,0,51549,0,1,1 +1774122189.312895,0.95,4,3992.50,53.28,1618.67,2085.90,0.00,3518972522126.207520,3518972486816.856934,70,0,0.005589,0.006726,58002856,38159388,0,0,51552,0,1,1 +1774122194.312909,0.65,4,3992.50,53.28,1618.70,2085.89,0.00,1.490328,0.028320,237,378,0.003818,0.005047,58002941,38159482,0,0,51554,0,1,1 +1774122199.315031,0.75,4,3992.50,53.28,1612.93,2085.88,0.00,82910.187771,118196.774062,6901762,2069142,0.003015,0.004127,58003014,38159569,0,0,51557,0,1,1 +1774122204.312911,10.95,4,3992.50,53.18,1614.23,2082.14,0.00,3519929599318.108398,3519929564002.908691,199,0,0.026326,40.085555,58004789,38164157,0,0,51559,0,1,1 +1774122209.314399,0.65,4,3992.50,53.22,1612.52,2083.86,0.00,82922.059584,118245.981608,6901762,2069532,0.001380,0.002813,58004824,38164215,0,0,51562,0,1,1 +1774122214.312835,0.40,4,3992.50,53.22,1612.52,2083.85,0.00,3519538408391.477539,3519538408395.561035,6900988,2069154,0.001170,0.003220,58004861,38164279,0,0,51564,0,1,1 +1774122219.312920,0.50,4,3992.50,53.24,1611.79,2084.59,0.00,3518377566846.483887,3518377531507.230469,237,378,0.001144,0.003198,58004896,38164342,0,0,51567,0,1,1 +1774122224.316843,0.55,4,3992.50,53.13,1616.02,2080.35,0.00,3515678372389.750000,3515678372391.211426,70,0,0.001131,0.003185,58004930,38164404,0,0,51569,0,1,1 +1774122229.317686,1.05,4,3992.50,53.59,1598.35,2098.32,0.00,82932.887661,118261.348342,6901762,2069575,0.001132,0.003197,58004964,38164467,0,0,51572,0,1,1 +1774122234.315598,0.45,4,3992.50,53.40,1605.63,2090.71,0.00,0.000000,6.011104,6901762,2069611,0.001145,0.003189,58004999,38164529,0,0,51574,0,1,1 +1774122239.317592,0.55,4,3992.50,53.41,1605.19,2091.16,0.00,3517034292097.460449,3517034256769.170410,238,2,0.000965,0.002625,58005031,38164584,0,0,51577,0,1,1 +1774122244.317152,0.60,4,3992.50,53.36,1607.29,2089.05,0.00,3518746959251.308594,0.028127,237,378,0.001241,0.003321,58005074,38164655,0,0,51579,0,1,1 +1774122249.312833,0.55,4,3992.50,53.40,1605.61,2090.73,0.00,3521478699470.132812,3521478699471.469238,199,0,0.001277,0.003983,58005118,38164732,0,0,51582,0,1,1 +1774122254.317216,0.60,4,3992.50,53.15,1615.54,2080.82,0.00,3515355893981.321289,0.000000,70,0,0.001206,0.003235,58005157,38164798,0,0,51584,0,1,1 +1774122259.316939,0.90,4,3992.50,53.23,1614.02,2084.21,0.00,3518632253002.474121,0.000000,21,0,0.001144,0.003198,58005192,38164861,0,0,51587,0,1,1 +1774122264.312903,0.85,4,3992.50,53.22,1614.50,2083.73,0.00,83009.798260,118382.957349,6900988,2069349,0.003212,0.004842,58005254,38164943,0,0,51589,0,1,1 +1774122269.317679,38.00,4,3992.50,59.44,1378.95,2327.15,0.00,3515079658940.290527,3515079623627.402832,238,2,80.039439,0.035000,58013671,38167323,0,0,51592,0,1,1 +1774122274.313610,28.16,4,3992.50,59.55,1376.63,2331.66,0.00,83008.346391,118383.822386,6900988,2069453,118.856867,0.038102,58025596,38170263,0,0,51594,0,1,1 +1774122279.313286,28.08,4,3992.50,59.50,1378.85,2329.42,0.00,3518665669609.411133,3518665634262.258301,199,0,119.574011,0.037864,58037923,38173162,0,0,51597,0,1,1 +1774122284.316281,28.54,4,3992.50,59.48,1379.59,2328.72,0.00,82892.969866,118216.676200,6900988,2069472,118.890287,0.048979,58049936,38176949,0,0,51599,0,1,1 +1774122289.312839,28.36,4,3992.50,59.35,1384.56,2323.80,0.00,3520860685042.749023,3520860649673.710938,21,0,119.441660,0.045423,58061867,38180529,0,0,51602,0,1,1 +1774122294.317406,28.57,4,3992.50,59.93,1361.81,2346.48,0.00,1.536975,0.028294,237,378,119.854327,0.036014,58074064,38183249,0,0,51604,0,1,1 +1774122299.312836,28.14,4,3992.50,59.50,1378.80,2329.48,0.00,3521655435667.667969,3521655435669.179688,21,0,118.467837,0.047492,58085891,38186864,0,0,51607,0,1,1 +1774122304.312794,28.64,4,3992.50,59.34,1385.05,2323.28,0.00,82943.498210,118288.785664,6900988,2069569,120.163746,0.046890,58097999,38190466,0,0,51609,0,1,1 +1774122309.312856,15.76,4,3992.50,54.28,1583.38,2125.00,0.00,3518393794106.107910,3518393758761.551758,21,0,110.147304,0.044824,58109075,38193913,0,0,51612,0,1,1 +1774122314.314368,1.55,4,3992.50,52.72,1644.04,2064.28,0.00,0.000000,0.000000,21,0,0.006973,0.006642,58109205,38194041,0,0,51614,0,1,1 +1774122319.316451,20.76,4,3992.50,54.27,1583.52,2124.84,0.00,0.000000,0.000000,21,0,28.166997,0.131289,58118436,38201030,0,0,51617,0,1,1 +1774122324.317082,8.75,4,3992.50,53.35,1619.72,2088.63,0.00,0.000000,0.000000,21,0,12.078652,0.058307,58122480,38204008,0,0,51619,0,1,1 +1774122329.316833,0.85,4,3992.50,53.22,1624.80,2083.56,0.00,82951.193488,118294.556063,6901775,2071173,0.002820,0.003343,58122539,38204078,0,0,51622,0,1,1 +1774122334.317472,4.67,4,3992.50,53.52,1612.70,2095.51,0.00,0.000000,0.483141,6901775,2071454,0.017647,16.028721,58123634,38206051,0,0,51624,0,1,1 +1774122339.313432,28.46,4,3992.50,53.70,1597.85,2102.30,0.00,0.000000,77.723632,6901775,2071898,0.038236,120.266419,58126473,38218420,0,0,51627,0,1,1 +1774122344.312903,18.46,4,3992.50,53.56,1600.47,2096.82,0.00,0.007032,98.641108,6901778,2072540,0.014239,68.907132,58127422,38225598,0,0,51629,0,1,1 +1774122349.316993,15.78,4,3992.50,55.11,1542.65,2157.83,0.00,11.806845,28.943608,6901117,2072341,40.032608,0.027617,58131901,38227365,0,0,51632,0,1,1 +1774122354.312835,1.30,4,3992.50,54.65,1561.00,2139.49,0.00,0.011729,0.131555,6901118,2072465,0.005223,0.005226,58132012,38227475,0,0,51634,0,1,1 +1774122359.317395,1.05,4,3992.50,53.98,1586.99,2113.46,0.00,3515231714078.717285,3515231678575.402832,70,0,0.003545,0.006317,58132101,38227588,0,0,51637,0,1,1 +1774122364.312851,0.65,4,3992.50,53.54,1604.08,2096.40,0.00,83034.306007,118602.396120,6901118,2072572,0.002736,0.003945,58132166,38227667,0,0,51639,0,1,1 +1774122369.315131,0.90,4,3992.50,53.50,1605.75,2094.74,0.00,4.107405,0.062374,6901892,2072993,0.002504,0.003342,58132224,38227737,0,0,51642,0,1,1 +1774122374.315500,1.05,4,3992.50,53.51,1605.63,2094.86,0.00,3518177715830.761719,3518177715834.850586,6901118,2072625,0.002721,0.003954,58132288,38227817,0,0,51644,0,1,1 +1774122379.316006,1.25,4,3992.50,53.66,1612.11,2100.96,0.00,3518080643737.986328,3518080608205.825195,21,0,0.002759,0.004639,58132355,38227904,0,0,51647,0,1,1 +1774122384.316767,0.75,4,3992.50,53.66,1612.18,2100.95,0.00,2.006531,0.000195,238,2,0.002517,0.003308,58132414,38227971,0,0,51649,0,1,1 +1774122389.315077,0.90,4,3992.50,53.66,1612.19,2100.93,0.00,82989.055046,118535.085546,6901892,2073289,0.002792,0.004024,58132483,38228057,0,0,51652,0,1,1 +1774122394.314088,0.75,4,3992.50,53.66,1612.19,2100.92,0.00,3519132845814.981934,3519132810275.900879,70,0,0.002159,0.003756,58132539,38228133,0,0,51654,0,1,1 +1774122399.314021,0.80,4,3992.50,53.66,1612.21,2100.91,0.00,3518484508574.097168,0.000000,21,0,0.002734,0.003964,58132604,38228214,0,0,51657,0,1,1 +1774122404.316970,0.85,4,3992.50,53.46,1619.86,2093.26,0.00,2.005653,0.000195,238,2,0.002794,0.003979,58132673,38228296,0,0,51659,0,1,1 +1774122409.317540,1.05,4,3992.50,53.49,1618.68,2094.30,0.00,3518036083814.306152,3518036083816.137695,199,0,0.002733,0.003964,58132738,38228377,0,0,51662,0,1,1 +1774122414.312888,0.80,4,3992.50,53.49,1618.80,2094.11,0.00,3521714259792.437988,0.000000,70,0,0.002744,0.003966,58132804,38228458,0,0,51664,0,1,1 +1774122419.312893,0.85,4,3992.50,53.48,1619.07,2093.85,0.00,0.126953,0.000000,199,0,0.002492,0.003331,58132861,38228527,0,0,51667,0,1,1 +1774122424.316887,11.18,4,3992.50,53.58,1612.68,2097.90,0.00,82892.512908,118434.649963,6901118,2073359,0.028012,40.031616,58134762,38232914,0,0,51669,0,1,1 +1774122429.317086,1.15,4,3992.50,53.20,1627.76,2082.89,0.00,0.000000,0.075192,6901118,2073450,0.002569,0.006282,58134836,38233033,0,0,51672,0,1,1 +1774122434.316897,0.65,4,3992.50,53.21,1627.27,2083.38,0.00,0.000000,0.003125,6901118,2073454,0.001752,0.004305,58134884,38233118,0,0,51674,0,1,1 +1774122439.316936,1.05,4,3992.50,53.63,1609.13,2099.56,0.00,3518409390303.079590,3518409354732.931152,21,0,0.001119,0.003198,58134917,38233181,0,0,51677,0,1,1 +1774122444.314100,0.60,4,3992.50,53.69,1606.46,2102.19,0.00,83010.089577,118596.750002,6901892,2073898,0.001158,0.003834,58134953,38233247,0,0,51679,0,1,1 +1774122449.312837,0.65,4,3992.50,53.69,1606.75,2101.94,0.00,3519326231606.581055,3519326196031.118164,21,0,0.001132,0.003199,58134987,38233310,0,0,51682,0,1,1 +1774122454.314427,0.60,4,3992.50,53.69,1606.53,2102.16,0.00,82936.632023,118491.812702,6901892,2073910,0.001152,0.003195,58135023,38233373,0,0,51684,0,1,1 +1774122459.312907,1.35,4,3992.50,53.70,1606.30,2102.39,0.00,3519506903272.188965,3519506867694.887695,21,0,0.002244,0.004318,58135066,38233450,0,0,51687,0,1,1 +1774122464.317126,0.60,4,3992.50,53.70,1606.30,2102.38,0.00,82893.071044,118435.585214,6901892,2073948,0.001194,0.003247,58135105,38233516,0,0,51689,0,1,1 +1774122469.317675,1.05,4,3992.50,53.74,1602.87,2104.23,0.00,3518050441518.283203,3518050405948.182617,237,378,0.000991,0.002657,58135139,38233573,0,0,51692,0,1,1 +1774122474.315997,0.65,4,3992.50,53.75,1602.61,2104.40,0.00,0.468614,3519618860378.099609,238,2,0.001213,0.003265,58135178,38233641,0,0,51694,0,1,1 +1774122479.316162,0.70,4,3992.50,53.75,1602.62,2104.40,0.00,3518320646216.058594,0.028124,237,378,0.001171,0.003231,58135215,38233707,0,0,51697,0,1,1 +1774122484.312905,0.65,4,3992.50,53.75,1602.62,2104.39,0.00,83011.432942,118612.831891,6901118,2073652,0.001145,0.003190,58135250,38233769,0,0,51699,0,1,1 +1774122489.317535,25.06,4,3992.50,59.54,1382.32,2331.29,0.00,3515182090508.694336,3515182054964.909668,21,0,47.427949,0.028726,58140328,38235638,0,0,51702,0,1,1 +1774122494.312871,33.27,4,3992.50,59.74,1378.00,2338.77,0.00,83040.475295,118646.393953,6901892,2074149,123.484781,0.039803,58152779,38238523,0,0,51704,0,1,1 +1774122499.316705,28.84,4,3992.50,59.70,1379.24,2337.50,0.00,3515741350377.740723,3515741314832.294434,21,0,121.473953,0.026524,58165177,38240529,0,0,51707,0,1,1 +1774122504.316998,29.18,4,3992.50,59.72,1375.79,2338.23,0.00,0.000000,0.000000,21,0,120.757213,0.047335,58177367,38244135,0,0,51709,0,1,1 +1774122509.316384,28.07,4,3992.50,59.81,1372.62,2341.52,0.00,0.175021,0.000000,199,0,120.177018,0.050290,58189440,38248007,0,0,51712,0,1,1 +1774122514.315437,28.52,4,3992.50,59.61,1380.30,2333.85,0.00,1.363637,0.028326,237,378,119.583923,0.045319,58201456,38251504,0,0,51714,0,1,1 +1774122519.316500,28.69,4,3992.50,59.41,1387.92,2326.22,0.00,3517689279194.369629,3517689279195.704590,199,0,119.136888,0.048586,58213414,38255114,0,0,51717,0,1,1 +1774122524.317379,28.33,4,3992.50,59.58,1381.27,2332.87,0.00,3517819039428.805176,0.000000,70,0,119.741585,0.044428,58225539,38258577,0,0,51719,0,1,1 +1774122529.312878,20.75,4,3992.50,59.43,1387.49,2326.71,0.00,0.127067,0.000000,199,0,120.069459,0.050820,58237504,38262456,0,0,51722,0,1,1 +1774122534.312823,1.30,4,3992.50,53.43,1621.90,2092.03,0.00,3518476044414.212891,0.000000,21,0,13.623809,0.010529,58239000,38262997,0,0,51724,0,1,1 +1774122539.317143,11.87,4,3992.50,54.27,1589.31,2124.62,0.00,82887.432266,118434.063043,6901133,2074345,14.088186,0.072081,58243861,38266597,0,0,51727,0,1,1 +1774122544.317384,12.96,4,3992.50,55.11,1556.04,2157.88,0.00,3518267640419.112793,3518267604841.474609,238,2,20.136936,0.089705,58250342,38271525,0,0,51729,0,1,1 +1774122549.313429,3.87,4,3992.50,54.35,1586.04,2127.87,0.00,3521222749604.342773,3521222749606.176270,199,0,6.028471,0.030550,58252484,38273127,0,0,51732,0,1,1 +1774122554.317442,0.85,4,3992.50,53.82,1606.71,2107.20,0.00,3515615339059.421875,0.000000,21,0,0.003435,0.005347,58252565,38273231,0,0,51734,0,1,1 +1774122559.317188,0.45,4,3992.50,53.81,1607.05,2106.84,0.00,2.006938,0.000195,238,2,0.001886,0.003093,58252611,38273293,0,0,51737,0,1,1 +1774122564.315578,0.90,4,3992.50,53.68,1611.39,2101.64,0.00,82987.872235,118575.837031,6901907,2075940,0.002338,0.003171,58252667,38273359,0,0,51739,0,1,1 +1774122569.317679,18.69,4,3992.50,54.08,1591.88,2117.45,0.00,3516959586487.237305,3516959550926.166504,237,378,0.030916,76.485745,58254745,38281684,0,0,51742,0,1,1 +1774122574.317461,28.84,4,3992.50,53.56,1604.32,2096.99,0.00,0.000000,0.000000,237,378,0.052316,119.386104,58258639,38294238,0,0,51744,0,1,1 +1774122579.317189,3.61,4,3992.50,53.38,1611.42,2089.75,0.00,3518629000200.202148,3518629000201.537598,199,0,0.009335,9.222591,58259132,38295377,0,0,51747,0,1,1 +1774122584.317592,14.40,4,3992.50,58.12,1429.52,2275.71,0.00,3518153666806.450684,0.000000,70,0,26.243129,0.019035,58262143,38296524,0,0,51749,0,1,1 +1774122589.315631,1.96,4,3992.50,53.65,1607.06,2100.59,0.00,3519817740533.927246,0.000000,21,0,13.830936,0.008255,58263720,38296854,0,0,51752,0,1,1 +1774122594.316878,0.70,4,3992.50,53.47,1614.11,2093.51,0.00,0.048035,0.000000,70,0,0.003434,0.006174,58263800,38296957,0,0,51754,0,1,1 +1774122599.312898,0.55,4,3992.50,53.49,1613.43,2094.21,0.00,83045.135916,118837.721812,6902025,2077588,0.002494,0.003346,58263857,38297027,0,0,51757,0,1,1 +1774122604.316468,0.60,4,3992.50,53.30,1620.92,2086.72,0.00,0.013272,0.029178,6902034,2077599,0.002732,0.003951,58263922,38297107,0,0,51759,0,1,1 +1774122609.317139,0.65,4,3992.50,53.27,1622.00,2085.64,0.00,3517965310468.689453,3517965274709.242676,199,0,0.002741,0.003972,58263988,38297189,0,0,51762,0,1,1 +1774122614.317662,0.60,4,3992.50,53.27,1622.01,2085.62,0.00,1.363236,0.028317,237,378,0.002759,0.003985,58264055,38297271,0,0,51764,0,1,1 +1774122619.317003,0.95,4,3992.50,53.86,1600.95,2108.69,0.00,3518900322204.101074,3518900322205.436523,199,0,0.004313,0.005544,58264124,38297356,0,0,51767,0,1,1 +1774122624.312839,0.50,4,3992.50,53.36,1618.64,2088.99,0.00,83043.989083,118842.450626,6901260,2077483,0.002817,0.004021,58264194,38297441,0,0,51769,0,1,1 +1774122629.312903,0.70,4,3992.50,53.36,1618.66,2088.97,0.00,3518391904722.268555,3518391868952.748535,237,378,0.002729,0.003972,58264259,38297523,0,0,51772,0,1,1 +1774122634.312831,0.45,4,3992.50,53.35,1618.66,2088.96,0.00,3518488328998.642090,3518488329000.104004,70,0,0.002505,0.003321,58264317,38297591,0,0,51774,0,1,1 +1774122639.317516,1.35,4,3992.50,52.98,1633.53,2074.11,0.00,3515143109923.467285,0.000000,21,0,0.002793,0.004001,58264386,38297675,0,0,51777,0,1,1 +1774122644.317368,4.76,4,3992.50,53.77,1601.96,2105.02,0.00,82977.462751,118747.115619,6901260,2077639,0.016631,15.229452,58265439,38299533,0,0,51779,0,1,1 +1774122649.312904,7.29,4,3992.50,53.32,1615.30,2087.61,0.00,3521580891176.205078,3521580855375.655762,21,0,0.010302,24.863942,58266080,38302228,0,0,51782,0,1,1 +1774122654.312909,0.60,4,3992.50,52.99,1628.14,2074.77,0.00,0.175000,0.000000,199,0,0.001140,0.003196,58266115,38302291,0,0,51784,0,1,1 +1774122659.316619,0.55,4,3992.50,52.99,1628.14,2074.77,0.00,3515828300446.495117,0.000000,21,0,0.001144,0.003195,58266150,38302354,0,0,51787,0,1,1 +1774122664.312846,0.60,4,3992.50,52.94,1630.18,2072.72,0.00,0.000000,0.000000,21,0,0.001145,0.003190,58266185,38302416,0,0,51789,0,1,1 +1774122669.313200,0.50,4,3992.50,52.94,1630.18,2072.72,0.00,0.174988,0.000000,199,0,0.001144,0.003198,58266220,38302479,0,0,51792,0,1,1 +1774122674.316919,0.90,4,3992.50,53.16,1621.41,2081.46,0.00,82917.255781,118689.524727,6902035,2078333,0.000923,0.002560,58266249,38302530,0,0,51794,0,1,1 +1774122679.312851,0.85,4,3992.50,53.63,1602.55,2099.64,0.00,3521302042456.540039,3521302006628.512207,199,0,0.001171,0.003232,58266286,38302595,0,0,51797,0,1,1 +1774122684.317544,0.50,4,3992.50,53.54,1605.77,2096.29,0.00,3515138212301.232422,0.000000,21,0,0.001194,0.003247,58266325,38302661,0,0,51799,0,1,1 +1774122689.317719,0.55,4,3992.50,53.54,1605.78,2096.28,0.00,0.048045,0.000000,70,0,0.001220,0.003291,58266366,38302730,0,0,51802,0,1,1 +1774122694.317554,0.55,4,3992.50,53.54,1605.78,2096.28,0.00,0.000000,0.000000,70,0,0.001308,0.003322,58266412,38302803,0,0,51804,0,1,1 +1774122699.312886,0.55,4,3992.50,53.54,1605.78,2096.27,0.00,83056.597606,118894.924938,6902035,2078450,0.001145,0.003201,58266447,38302866,0,0,51807,0,1,1 +1774122704.317045,0.50,4,3992.50,53.54,1605.79,2096.27,0.00,3515512996722.292969,3515512960947.227051,21,0,0.001143,0.003185,58266482,38302928,0,0,51809,0,1,1 +1774122709.313131,0.95,4,3992.50,53.43,1610.04,2091.96,0.00,1.539584,0.028342,237,378,0.001145,0.003684,58266517,38302994,0,0,51812,0,1,1 +1774122714.313431,35.58,4,3992.50,59.65,1373.69,2335.46,0.00,3518226311620.040527,3518226311621.502441,70,0,70.099630,0.032227,58273961,38305137,0,0,51814,0,1,1 +1774122719.317608,28.74,4,3992.50,59.85,1368.52,2343.44,0.00,3515500442779.064453,0.000000,21,0,119.466703,0.020964,58286318,38306594,0,0,51817,0,1,1 +1774122724.316325,28.04,4,3992.50,59.56,1379.78,2332.08,0.00,0.048059,0.000000,70,0,118.796957,0.022738,58298583,38308373,0,0,51819,0,1,1 +1774122729.317250,28.08,4,3992.50,59.56,1380.08,2331.79,0.00,3517786916422.241211,0.000000,21,0,119.544919,0.021718,58310933,38309877,0,0,51822,0,1,1 +1774122734.312828,27.78,4,3992.50,59.56,1379.91,2331.78,0.00,0.000000,0.000000,21,0,118.870806,0.031603,58322945,38312200,0,0,51824,0,1,1 +1774122739.317437,27.86,4,3992.50,59.78,1371.16,2340.64,0.00,0.048003,0.000000,70,0,119.858054,0.030855,58335234,38314444,0,0,51827,0,1,1 +1774122744.314831,28.10,4,3992.50,59.68,1372.50,2336.67,0.00,1.959810,0.000195,238,2,118.631217,0.034731,58347419,38316958,0,0,51829,0,1,1 +1774122749.316555,28.56,4,3992.50,59.69,1372.46,2336.80,0.00,82944.406078,118743.360753,6901261,2078340,119.932142,0.047117,58359713,38320564,0,0,51832,0,1,1 +1774122754.317111,17.31,4,3992.50,59.81,1367.52,2341.80,0.00,3518045516783.864746,3518045480977.054688,237,378,119.160681,0.046112,58372055,38323961,0,0,51834,0,1,1 +1774122759.315479,1.00,4,3992.50,54.13,1590.10,2119.20,0.00,83004.830949,118823.231801,6902052,2078757,1.006915,0.006434,58372293,38324134,0,0,51837,0,1,1 +1774122764.316365,10.83,4,3992.50,54.24,1585.68,2123.64,0.00,3517813005370.447266,3517812969571.555664,70,0,6.056198,0.040533,58374485,38325798,0,0,51839,0,1,1 +1774122769.315657,19.39,4,3992.50,53.84,1599.86,2108.08,0.00,3518936035660.886719,0.000000,21,0,34.207786,0.148428,58385506,38334086,0,0,51842,0,1,1 +1774122774.315601,0.80,4,3992.50,53.36,1618.70,2089.23,0.00,0.000000,0.000000,21,0,0.002963,0.004603,58385578,38334178,0,0,51844,0,1,1 +1774122779.313014,0.55,4,3992.50,53.41,1616.79,2091.16,0.00,83022.218036,118846.769069,6902052,2079934,0.002766,0.004636,58385645,38334265,0,0,51847,0,1,1 +1774122784.315062,0.55,4,3992.50,53.41,1616.80,2091.15,0.00,3516996430520.304688,3516996394728.774902,199,0,0.003864,0.007111,58385744,38334405,0,0,51849,0,1,1 +1774122789.313419,0.60,4,3992.50,53.42,1616.58,2091.38,0.00,3519593741755.215820,0.000000,21,0,0.003879,0.007135,58385844,38334546,0,0,51852,0,1,1 +1774122794.317465,0.75,4,3992.50,53.43,1616.13,2091.83,0.00,1.537135,0.028297,237,378,0.004979,0.007711,58385966,38334698,0,0,51854,0,1,1 +1774122799.315399,0.95,4,3992.50,53.53,1610.61,2095.75,0.00,3519891975307.207520,3519891975308.718262,21,0,0.004461,0.006248,58386072,38334826,0,0,51857,0,1,1 +1774122804.312757,0.65,4,3992.50,53.53,1610.55,2095.68,0.00,0.000000,0.000000,21,0,0.003974,0.007245,58386179,38334974,0,0,51859,0,1,1 +1774122809.317350,0.60,4,3992.50,53.58,1608.46,2097.73,0.00,0.000000,0.000000,21,0,0.003874,0.007126,58386279,38335115,0,0,51862,0,1,1 +1774122814.312831,0.55,4,3992.50,53.58,1608.52,2097.71,0.00,0.000000,0.000000,21,0,0.003498,0.005901,58386370,38335234,0,0,51864,0,1,1 +1774122819.312901,0.60,4,3992.50,53.58,1608.52,2097.70,0.00,0.174998,0.000000,199,0,0.003428,0.005873,58386457,38335352,0,0,51867,0,1,1 +1774122824.312828,0.70,4,3992.50,53.58,1608.55,2097.68,0.00,3518488668187.192871,0.000000,21,0,0.003878,0.007110,58386557,38335491,0,0,51869,0,1,1 +1774122829.313843,1.05,4,3992.50,53.59,1598.82,2098.17,0.00,0.048037,0.000000,70,0,0.003865,0.007131,58386656,38335632,0,0,51872,0,1,1 +1774122834.316424,0.65,4,3992.50,53.60,1598.49,2098.39,0.00,82936.393373,118724.989647,6902052,2080632,0.003258,0.006882,58386744,38335765,0,0,51874,0,1,1 +1774122839.317800,0.50,4,3992.50,53.60,1598.25,2098.62,0.00,3517469754889.415039,3517469719092.232910,21,0,0.003269,0.005749,58386829,38335882,0,0,51877,0,1,1 +1774122844.317772,0.70,4,3992.50,53.60,1598.29,2098.60,0.00,2.006847,0.000195,238,2,0.003903,0.007797,58386931,38336028,0,0,51879,0,1,1 +1774122849.315233,1.40,4,3992.50,53.01,1621.59,2075.31,0.00,83015.298906,118846.707551,6901278,2080372,0.003888,0.007131,58387032,38336169,0,0,51882,0,1,1 +1774122854.316527,0.60,4,3992.50,53.03,1620.52,2076.38,0.00,4.108214,0.070197,6902052,2080792,0.003864,0.007121,58387131,38336309,0,0,51884,0,1,1 +1774122859.317070,17.49,4,3992.50,53.88,1591.91,2109.72,0.00,3518054637376.410645,3518054601571.623535,237,378,0.039975,69.502387,58389924,38343960,0,0,51887,0,1,1 +1774122864.314456,28.93,4,3992.50,53.23,1609.18,2084.21,0.00,0.000000,0.000000,237,378,0.060844,120.232307,58394526,38356295,0,0,51889,0,1,1 +1774122869.317422,5.17,4,3992.50,53.30,1605.96,2086.95,0.00,3516350901630.285156,3516350901631.619629,199,0,0.011087,15.418876,58395219,38358025,0,0,51892,0,1,1 +1774122874.312909,15.38,4,3992.50,53.15,1616.00,2080.88,0.00,1.364611,0.028346,237,378,40.098949,0.023254,58399588,38359406,0,0,51894,0,1,1 +1774122879.312814,0.90,4,3992.50,53.17,1615.28,2081.59,0.00,3518503885234.035645,3518503885235.497559,70,0,0.005374,0.007779,58399714,38359566,0,0,51897,0,1,1 +1774122884.316786,11.21,4,3992.50,53.17,1613.37,2081.60,0.00,0.000000,0.000000,70,0,0.030170,40.037214,58401746,38364071,0,0,51899,0,1,1 +1774122889.312887,1.21,4,3992.50,53.26,1616.10,2085.06,0.00,83059.976437,119118.983820,6902189,2082760,0.002735,0.007266,58401828,38364211,0,0,51902,0,1,1 +1774122894.315887,0.60,4,3992.50,53.08,1623.04,2078.13,0.00,3516327564942.967773,3516327528933.679199,70,0,0.002287,0.006352,58401898,38364333,0,0,51904,0,1,1 +1774122899.313524,0.80,4,3992.50,53.07,1623.34,2077.83,0.00,0.000000,0.000000,70,0,0.002285,0.006377,58401968,38364457,0,0,51907,0,1,1 +1774122904.316847,0.70,4,3992.50,53.11,1621.68,2079.46,0.00,82935.981529,118947.047677,6901415,2082391,0.001855,0.005116,58402026,38364557,0,0,51909,0,1,1 +1774122909.317622,0.55,4,3992.50,53.13,1620.98,2080.20,0.00,3517892131228.764160,3517892095199.393066,21,0,0.002288,0.007009,58402096,38364684,0,0,51912,0,1,1 +1774122914.317039,0.65,4,3992.50,53.15,1620.24,2080.93,0.00,2.007070,0.000195,238,2,0.002276,0.006357,58402165,38364806,0,0,51914,0,1,1 +1774122919.313906,1.00,4,3992.50,53.59,1609.34,2098.11,0.00,3520642502730.221191,3520642502732.229492,21,0,0.003238,0.007071,58402239,38364934,0,0,51917,0,1,1 +1774122924.316419,0.50,4,3992.50,53.33,1619.38,2088.07,0.00,0.174912,0.000000,199,0,0.001939,0.005219,58402304,38365041,0,0,51919,0,1,1 +1774122929.317204,0.65,4,3992.50,53.33,1619.39,2088.07,0.00,1.831548,0.000195,238,2,0.002407,0.006472,58402382,38365172,0,0,51922,0,1,1 +1774122934.317673,0.55,4,3992.50,53.33,1619.39,2088.07,0.00,3518107444005.328125,3518107444007.286621,70,0,0.002351,0.006406,58402456,38365298,0,0,51924,0,1,1 +1774122939.312896,0.70,4,3992.50,53.33,1619.57,2087.89,0.00,0.127075,0.000000,199,0,0.002291,0.006372,58402526,38365421,0,0,51927,0,1,1 +1774122944.317157,0.65,4,3992.50,53.35,1618.59,2088.87,0.00,0.000000,0.000000,199,0,0.001933,0.005705,58402588,38365530,0,0,51929,0,1,1 +1774122949.313045,35.97,4,3992.50,59.54,1385.48,2331.01,0.00,3521333270272.761719,0.000000,21,0,83.391619,0.033802,58411413,38367617,0,0,51932,0,1,1 +1774122954.316652,29.18,4,3992.50,59.63,1376.66,2334.66,0.00,1.537270,0.028300,237,378,120.081288,0.030504,58423795,38369735,0,0,51934,0,1,1 +1774122959.312834,27.80,4,3992.50,59.69,1374.25,2337.11,0.00,0.000000,0.000000,237,378,118.252484,0.024522,58435803,38371471,0,0,51937,0,1,1 +1774122964.317826,27.68,4,3992.50,59.83,1369.05,2342.32,0.00,0.467990,3514927373233.730957,238,2,120.048790,0.029944,58448091,38373546,0,0,51939,0,1,1 +1774122969.313214,27.71,4,3992.50,59.53,1380.40,2330.91,0.00,3521685736472.238770,3521685736474.199219,70,0,118.278147,0.042569,58460100,38376586,0,0,51942,0,1,1 +1774122974.316839,27.97,4,3992.50,59.85,1368.00,2343.38,0.00,0.000000,0.000000,70,0,120.087187,0.040391,58472574,38379427,0,0,51944,0,1,1 +1774122979.315209,28.08,4,3992.50,59.83,1368.82,2342.40,0.00,0.000000,0.000000,70,0,119.203483,0.027292,58484638,38381392,0,0,51947,0,1,1 +1774122984.312806,28.26,4,3992.50,59.80,1368.14,2341.40,0.00,1.959731,0.000195,238,2,119.223547,0.025112,58496819,38383131,0,0,51949,0,1,1 +1774122989.314864,14.39,4,3992.50,53.37,1620.14,2089.50,0.00,82959.181040,118983.924186,6902197,2083256,106.916504,0.051772,58507952,38386858,0,0,51952,0,1,1 +1774122994.317719,1.00,4,3992.50,53.20,1626.70,2082.93,0.00,3516429630672.719238,3516429594655.714844,21,0,0.004488,0.005256,58508052,38386971,0,0,51954,0,1,1 +1774122999.316397,13.09,4,3992.50,53.77,1604.36,2105.27,0.00,2.007366,0.000195,238,2,16.112900,0.077876,58513411,38390909,0,0,51957,0,1,1 +1774123004.317292,15.29,4,3992.50,53.97,1596.61,2112.99,0.00,3517807941989.455078,3517807941991.413086,70,0,24.149871,0.111908,58521386,38396876,0,0,51959,0,1,1 +1774123009.316966,0.95,4,3992.50,53.85,1601.80,2108.25,0.00,3518666077703.243164,0.000000,21,0,0.003878,0.007133,58521486,38397017,0,0,51962,0,1,1 +1774123014.316927,0.60,4,3992.50,53.49,1615.53,2094.08,0.00,82991.965426,119034.953997,6901431,2084360,0.003865,0.007122,58521585,38397157,0,0,51964,0,1,1 +1774123019.312893,0.80,4,3992.50,53.48,1615.66,2093.95,0.00,3521278210763.028320,3521278174691.221680,21,0,0.003856,0.007151,58521683,38397299,0,0,51967,0,1,1 +1774123024.313488,18.27,4,3992.50,53.99,1592.59,2113.70,0.00,82985.538958,119056.085014,6902205,2084973,0.043272,70.500072,58524769,38404897,0,0,51969,0,1,1 +1774123029.317862,29.35,4,3992.50,53.81,1591.15,2106.81,0.00,3515361830411.684082,3515361794366.371094,238,2,0.057872,119.488594,58529123,38417146,0,0,51972,0,1,1 +1774123034.312908,5.33,4,3992.50,53.39,1607.38,2090.48,0.00,3521926797346.686523,3521926797348.695312,21,0,0.015346,15.023840,58529855,38418939,0,0,51974,0,1,1 +1774123039.316313,12.95,4,3992.50,53.71,1598.61,2102.69,0.00,82950.780093,119158.395419,6901551,2085833,40.038143,0.027011,58534344,38420493,0,0,51977,0,1,1 +1774123044.313086,1.05,4,3992.50,53.82,1594.16,2107.00,0.00,4.111931,0.137980,6902325,2086306,0.003759,0.006202,58534433,38420613,0,0,51979,0,1,1 +1774123049.316932,0.65,4,3992.50,53.82,1594.16,2106.98,0.00,3515732499615.416504,0.002635,6901551,2085964,0.003862,0.007139,58534532,38420755,0,0,51982,0,1,1 +1774123054.312826,0.80,4,3992.50,53.87,1591.94,2109.21,0.00,3521328639534.897949,3521328603272.535156,199,0,0.003410,0.005860,58534617,38420871,0,0,51984,0,1,1 +1774123059.314527,0.65,4,3992.50,53.87,1591.95,2109.20,0.00,3517240859501.211426,0.000000,21,0,0.004270,0.008181,58534729,38421033,0,0,51987,0,1,1 +1774123064.317230,0.75,4,3992.50,53.87,1591.97,2109.18,0.00,0.048021,0.000000,70,0,0.003876,0.007119,58534829,38421173,0,0,51989,0,1,1 +1774123069.312831,0.90,4,3992.50,53.62,1609.89,2099.25,0.00,0.000000,0.000000,70,0,0.003894,0.007170,58534930,38421316,0,0,51992,0,1,1 +1774123074.316791,0.70,4,3992.50,53.58,1608.81,2097.91,0.00,0.000000,0.000000,70,0,0.003418,0.005851,58535016,38421432,0,0,51994,0,1,1 +1774123079.315479,0.65,4,3992.50,53.58,1608.82,2097.89,0.00,3519360651108.907715,0.000000,21,0,0.003941,0.007185,58535120,38421577,0,0,51997,0,1,1 +1774123084.312830,0.60,4,3992.50,53.58,1608.84,2097.88,0.00,83055.370928,119303.248388,6902325,2086658,0.003899,0.007139,58535221,38421718,0,0,51999,0,1,1 +1774123089.312992,0.65,4,3992.50,53.58,1609.11,2097.62,0.00,0.000000,0.041698,6902325,2086698,0.003930,0.007155,58535325,38421861,0,0,52002,0,1,1 +1774123094.316984,0.75,4,3992.50,53.58,1608.90,2097.83,0.00,3515630278298.304688,3515630242098.489258,21,0,0.004526,0.006457,58535433,38421990,0,0,52004,0,1,1 +1774123099.314980,0.95,4,3992.50,53.58,1606.74,2097.81,0.00,1.538996,0.028332,237,378,0.004932,0.007537,58535554,38422144,0,0,52007,0,1,1 +1774123104.319137,4.26,4,3992.50,53.86,1594.77,2108.69,0.00,82940.883754,119148.734900,6902326,2086865,0.016232,14.619403,58536520,38424011,0,0,52009,0,1,1 +1774123109.315107,7.34,4,3992.50,53.44,1609.32,2092.23,0.00,3521275728258.528809,0.032155,6901552,2086571,0.013306,25.467502,58537261,38426857,0,0,52012,0,1,1 +1774123114.317108,0.80,4,3992.50,53.30,1614.55,2087.00,0.00,3517029581799.194336,3517029545571.599121,237,378,0.002288,0.006328,58537331,38426977,0,0,52014,0,1,1 +1774123119.317380,0.55,4,3992.50,53.50,1606.88,2094.64,0.00,0.000000,0.000000,237,378,0.001806,0.005124,58537385,38427078,0,0,52017,0,1,1 +1774123124.317561,0.65,4,3992.50,53.50,1606.91,2094.64,0.00,83006.826714,119243.579031,6902326,2086991,0.002276,0.006356,58537454,38427200,0,0,52019,0,1,1 +1774123129.317429,0.80,4,3992.50,53.50,1606.93,2094.62,0.00,3518530191699.101562,3518530155461.587402,21,0,0.002289,0.006366,58537524,38427323,0,0,52022,0,1,1 +1774123134.314487,0.95,4,3992.50,53.71,1597.98,2102.90,0.00,0.175103,0.000000,199,0,0.001395,0.003819,58537568,38427397,0,0,52024,0,1,1 +1774123139.316941,0.65,4,3992.50,53.71,1597.99,2102.90,0.00,1.830937,0.000195,238,2,0.001855,0.005140,58537626,38427499,0,0,52027,0,1,1 +1774123144.317077,0.65,4,3992.50,53.71,1598.00,2102.89,0.00,0.000000,0.000000,238,2,0.002402,0.006480,58537705,38427629,0,0,52029,0,1,1 +1774123149.317514,0.60,4,3992.50,53.72,1597.75,2103.14,0.00,0.000000,0.000000,238,2,0.002364,0.006459,58537781,38427758,0,0,52032,0,1,1 +1774123154.317691,0.60,4,3992.50,53.75,1596.39,2104.49,0.00,3518312229986.834473,3518312229988.841309,21,0,0.002432,0.006482,58537860,38427890,0,0,52034,0,1,1 +1774123159.317403,0.80,4,3992.50,53.79,1589.34,2106.18,0.00,0.000000,0.000000,21,0,0.001831,0.005099,58537916,38427989,0,0,52037,0,1,1 +1774123164.312844,0.60,4,3992.50,53.79,1589.35,2106.17,0.00,83083.020376,119389.338626,6901552,2086843,0.002304,0.006362,58537987,38428111,0,0,52039,0,1,1 +1774123169.317233,0.70,4,3992.50,53.77,1590.29,2105.23,0.00,3515351721356.245117,3515351685114.665039,199,0,0.002287,0.006360,58538057,38428234,0,0,52042,0,1,1 +1774123174.319394,24.01,4,3992.50,59.59,1369.66,2333.07,0.00,1.362790,0.028308,237,378,39.119615,0.029692,58542356,38429940,0,0,52044,0,1,1 +1774123179.313296,31.48,4,3992.50,59.56,1373.19,2332.02,0.00,0.469029,3522733548810.234863,238,2,118.853667,0.072451,58554890,38435244,0,0,52047,0,1,1 +1774123184.313565,28.12,4,3992.50,59.65,1369.71,2335.55,0.00,3518247725911.307617,0.028123,237,378,119.594036,0.113174,58567767,38443754,0,0,52049,0,1,1 +1774123189.313246,28.20,4,3992.50,59.77,1365.06,2340.16,0.00,3518661483438.664551,3518661483440.000000,199,0,118.803130,0.105896,58580574,38451953,0,0,52052,0,1,1 +1774123194.317717,29.21,4,3992.50,59.84,1370.35,2342.70,0.00,1.362161,0.028295,237,378,120.092861,0.109977,58593441,38460457,0,0,52054,0,1,1 +1774123199.312772,28.12,4,3992.50,59.77,1372.93,2340.11,0.00,83092.006210,119398.951501,6902326,2087532,118.912744,0.111319,58606132,38469044,0,0,52057,0,1,1 +1774123204.317304,28.89,4,3992.50,59.70,1375.45,2337.57,0.00,3515251373070.957520,3515251336834.266602,21,0,119.490524,0.110994,58619011,38477648,0,0,52059,0,1,1 +1774123209.316824,28.87,4,3992.50,60.08,1360.92,2352.08,0.00,0.000000,0.000000,21,0,119.411099,0.111663,58631921,38486241,0,0,52062,0,1,1 +1774123214.317253,24.87,4,3992.50,59.90,1367.69,2345.41,0.00,0.000000,0.000000,21,0,118.986176,0.111787,58644742,38494922,0,0,52064,0,1,1 +1774123219.316413,1.61,4,3992.50,54.18,1599.40,2121.08,0.00,83025.475525,119301.253782,6902353,2087669,32.464108,0.035073,58648343,38497404,0,0,52067,0,1,1 +1774123224.316762,10.42,4,3992.50,53.88,1609.52,2109.61,0.00,3518191045977.070801,0.285820,6901579,2087684,12.084227,0.063896,58652457,38500486,0,0,52069,0,1,1 +1774123229.317438,6.29,4,3992.50,53.75,1614.62,2104.49,0.00,3517962001187.390625,3517961964916.204590,238,2,8.056968,0.040915,58655215,38502598,0,0,52072,0,1,1 +1774123234.312813,13.77,4,3992.50,54.25,1595.17,2123.89,0.00,3521694966192.285156,3521694966194.118652,199,0,20.136930,0.085354,58661494,38507247,0,0,52074,0,1,1 +1774123239.317750,1.35,4,3992.50,54.46,1587.01,2132.06,0.00,1.830029,0.000195,238,2,0.004565,0.009164,58661609,38507416,0,0,52077,0,1,1 +1774123244.312893,0.85,4,3992.50,54.23,1595.87,2123.23,0.00,3521858784850.259766,3521858784852.268555,21,0,0.003882,0.007117,58661709,38507555,0,0,52079,0,1,1 +1774123249.314505,1.20,4,3992.50,54.24,1595.98,2123.68,0.00,0.000000,0.000000,21,0,0.003407,0.005863,58661794,38507672,0,0,52082,0,1,1 +1774123254.316701,0.75,4,3992.50,54.24,1595.88,2123.56,0.00,2.005955,0.000195,238,2,0.003876,0.007119,58661894,38507812,0,0,52084,0,1,1 +1774123259.312890,0.85,4,3992.50,54.24,1595.67,2123.77,0.00,83072.829084,119373.438200,6902354,2088968,0.003894,0.007138,58661995,38507953,0,0,52087,0,1,1 +1774123264.312903,0.75,4,3992.50,54.06,1602.87,2116.58,0.00,3518427989921.604492,3518427953650.713379,70,0,0.003991,0.007278,58662104,38508103,0,0,52089,0,1,1 +1774123269.316805,15.95,4,3992.50,54.25,1592.38,2123.82,0.00,82946.744952,119220.886637,6902354,2089399,0.037468,65.452366,58664720,38515285,0,0,52092,0,1,1 +1774123274.317245,28.73,4,3992.50,54.31,1581.45,2126.48,0.00,3518128109681.910156,3518128073382.696289,21,0,0.021636,118.161655,58666167,38527724,0,0,52094,0,1,1 +1774123279.317294,6.83,4,3992.50,55.00,1565.24,2153.33,0.00,0.000000,0.000000,21,0,0.008391,21.438141,58666529,38530111,0,0,52097,0,1,1 +1774123284.317653,16.11,4,3992.50,53.70,1618.80,2102.46,0.00,0.048043,0.000000,70,0,40.064802,0.030592,58670965,38531846,0,0,52099,0,1,1 +1774123289.314101,1.10,4,3992.50,53.73,1617.42,2103.84,0.00,1.491392,0.028340,237,378,0.004132,0.007799,58671065,38531982,0,0,52102,0,1,1 +1774123294.316809,0.90,4,3992.50,53.73,1617.45,2103.84,0.00,0.000000,0.000000,237,378,0.003647,0.006498,58671158,38532111,0,0,52104,0,1,1 +1774123299.312844,0.85,4,3992.50,53.70,1618.98,2102.30,0.00,3521229846271.275391,3521229846272.787109,21,0,0.004551,0.008061,58671261,38532254,0,0,52107,0,1,1 +1774123304.314710,1.50,4,3992.50,53.67,1620.06,2101.22,0.00,82996.475631,119432.933001,6902500,2090790,0.003419,0.006497,58671347,38532374,0,0,52109,0,1,1 +1774123309.315565,1.40,4,3992.50,53.49,1612.07,2094.08,0.00,3517835447944.932617,3517835411501.106934,21,0,0.003865,0.007164,58671446,38532516,0,0,52112,0,1,1 +1774123314.314268,0.80,4,3992.50,53.50,1608.32,2094.80,0.00,0.048059,0.000000,70,0,0.003904,0.007143,58671548,38532657,0,0,52114,0,1,1 +1774123319.316730,0.85,4,3992.50,53.50,1608.34,2094.79,0.00,0.126891,0.000000,199,0,0.003859,0.007137,58671647,38532799,0,0,52117,0,1,1 +1774123324.316964,1.00,4,3992.50,53.32,1615.43,2087.69,0.00,0.000000,0.000000,199,0,0.007633,0.811317,58671928,38533192,0,0,52119,0,1,1 +1774123329.312910,11.32,4,3992.50,53.77,1595.99,2105.09,0.00,83090.538562,119615.337033,6901726,2090870,0.019785,39.296237,58673277,38537464,0,0,52122,0,1,1 +1774123334.313661,1.00,4,3992.50,53.48,1607.09,2093.98,0.00,0.000000,4.064233,6901726,2090939,0.002888,0.007464,58673359,38537608,0,0,52124,0,1,1 +1774123339.317536,0.80,4,3992.50,53.39,1610.76,2090.31,0.00,0.000000,0.091335,6901726,2090978,0.002274,0.006361,58673428,38537731,0,0,52127,0,1,1 +1774123344.316684,1.20,4,3992.50,53.35,1606.60,2088.64,0.00,0.000000,0.028130,6901726,2091002,0.001819,0.005090,58673483,38537829,0,0,52129,0,1,1 +1774123349.317209,0.80,4,3992.50,53.35,1606.39,2088.86,0.00,4.108846,0.033981,6902500,2091387,0.002284,0.006373,58673553,38537953,0,0,52132,0,1,1 +1774123354.317393,0.65,4,3992.50,53.35,1606.39,2088.85,0.00,3518307588104.839355,3518307551609.552246,237,378,0.002276,0.006331,58673622,38538073,0,0,52134,0,1,1 +1774123359.312972,0.65,4,3992.50,53.36,1606.16,2089.08,0.00,3521551302612.356445,3521551302613.867676,21,0,0.002252,0.006225,58673692,38538198,0,0,52137,0,1,1 +1774123364.312902,0.60,4,3992.50,53.36,1606.17,2089.08,0.00,83024.505437,119530.260547,6901726,2091081,0.002339,0.006418,58673766,38538324,0,0,52139,0,1,1 +1774123369.317566,0.90,4,3992.50,53.28,1603.55,2086.08,0.00,3515158293064.892090,3515158256593.665039,21,0,0.002362,0.007097,58673842,38538457,0,0,52142,0,1,1 +1774123374.314502,0.70,4,3992.50,53.24,1605.36,2084.27,0.00,0.175107,0.000000,199,0,0.002358,0.006423,58673916,38538584,0,0,52144,0,1,1 +1774123379.317205,0.60,4,3992.50,53.23,1605.37,2084.27,0.00,0.000000,0.000000,199,0,0.001849,0.005134,58673973,38538686,0,0,52147,0,1,1 +1774123384.314066,0.60,4,3992.50,53.23,1605.38,2084.26,0.00,1.364235,0.028338,237,378,0.002286,0.006368,58674043,38538809,0,0,52149,0,1,1 +1774123389.317451,0.70,4,3992.50,53.24,1605.36,2084.28,0.00,3516056195399.267578,3516056195400.602051,199,0,0.002287,0.006362,58674113,38538932,0,0,52152,0,1,1 +1774123394.316391,27.34,4,3992.50,59.35,1372.33,2323.64,0.00,3519183503124.989746,0.000000,70,0,43.679383,0.032506,58678960,38540872,0,0,52154,0,1,1 +1774123399.315489,31.37,4,3992.50,59.49,1370.03,2329.07,0.00,3519072559134.526855,0.000000,21,0,119.387701,0.059022,58691214,38545225,0,0,52157,0,1,1 +1774123404.317311,28.07,4,3992.50,59.17,1382.20,2316.69,0.00,1.537818,0.028310,237,378,118.720623,0.049735,58703216,38548947,0,0,52159,0,1,1 +1774123409.313043,27.75,4,3992.50,59.23,1379.89,2319.14,0.00,3521443212112.219238,3521443212113.730469,21,0,119.264741,0.054656,58715342,38553141,0,0,52162,0,1,1 +1774123414.314509,28.41,4,3992.50,59.23,1379.96,2319.01,0.00,83003.120340,119494.006959,6902500,2091773,119.129922,0.046885,58727543,38556609,0,0,52164,0,1,1 +1774123419.317582,27.97,4,3992.50,59.54,1367.78,2331.17,0.00,3516275974820.438477,3516275938341.098145,199,0,119.489280,0.050067,58739641,38560445,0,0,52167,0,1,1 +1774123424.316769,28.40,4,3992.50,59.29,1377.52,2321.41,0.00,3519009537779.041992,0.000000,21,0,118.783925,0.039579,58751818,38563322,0,0,52169,0,1,1 +1774123429.313079,28.29,4,3992.50,59.46,1370.79,2328.17,0.00,83084.665604,119617.403230,6901726,2091438,120.254273,0.040003,58764110,38566352,0,0,52172,0,1,1 +1774123434.313233,25.71,4,3992.50,59.12,1382.95,2314.84,0.00,3518328864066.215820,3518328827561.387207,199,0,118.159224,0.051348,58776190,38570259,0,0,52174,0,1,1 +1774123439.317672,1.30,4,3992.50,52.73,1633.16,2064.64,0.00,3515316544974.479004,0.000000,21,0,28.619101,0.021311,58779240,38571563,0,0,52177,0,1,1 +1774123444.317423,11.24,4,3992.50,52.88,1627.30,2070.50,0.00,0.000000,0.000000,21,0,12.093993,0.067210,58783505,38574730,0,0,52179,0,1,1 +1774123449.317404,17.72,4,3992.50,54.73,1555.04,2142.68,0.00,0.000000,0.000000,21,0,28.169739,0.123821,58792757,38581549,0,0,52182,0,1,1 +1774123454.317658,0.90,4,3992.50,54.21,1575.41,2122.35,0.00,2.006734,0.000195,238,2,0.003965,0.006412,58792835,38581661,0,0,52184,0,1,1 +1774123459.316920,19.66,4,3992.50,53.56,1596.64,2097.14,0.00,83037.902638,119607.075263,6902523,2093472,0.044666,80.534308,58795996,38590305,0,0,52187,0,1,1 +1774123464.317104,29.65,4,3992.50,53.81,1571.44,2106.73,0.00,0.000000,128.747997,6902523,2094567,0.066814,120.167038,58801100,38602780,0,0,52189,0,1,1 +1774123469.312823,14.88,4,3992.50,58.06,1409.18,2273.07,0.00,3521452505491.488281,3521452468769.474121,70,0,36.896026,4.438508,58805453,38604851,0,0,52192,0,1,1 +1774123474.317332,1.00,4,3992.50,53.94,1570.17,2112.06,0.00,1.957024,0.000195,238,2,3.208485,0.010074,58805958,38605087,0,0,52194,0,1,1 +1774123479.312907,0.65,4,3992.50,53.31,1595.21,2087.04,0.00,0.000000,0.000000,238,2,0.003423,0.005883,58806044,38605205,0,0,52197,0,1,1 +1774123484.317020,0.65,4,3992.50,53.00,1607.27,2074.98,0.00,82973.331382,119637.683611,6902635,2094932,0.003975,0.007228,58806152,38605352,0,0,52199,0,1,1 +1774123489.316846,0.95,4,3992.50,53.05,1606.84,2077.00,0.00,3518559661790.972656,3518559625097.192383,21,0,0.003886,0.007141,58806253,38605494,0,0,52202,0,1,1 +1774123494.317755,0.55,4,3992.50,53.07,1606.18,2077.64,0.00,1.538099,0.028315,237,378,0.003865,0.007121,58806352,38605634,0,0,52204,0,1,1 +1774123499.312902,0.90,4,3992.50,53.18,1601.91,2081.92,0.00,83118.607288,119852.501308,6901861,2094669,0.003436,0.005871,58806439,38605751,0,0,52207,0,1,1 +1774123504.317775,0.65,4,3992.50,52.73,1619.27,2064.59,0.00,3515011630313.136230,3515011593650.623047,237,378,0.003899,0.007790,58806541,38605897,0,0,52209,0,1,1 +1774123509.317423,0.60,4,3992.50,52.74,1619.07,2064.79,0.00,0.000000,0.000000,237,378,0.003878,0.007133,58806641,38606038,0,0,52212,0,1,1 +1774123514.314422,0.60,4,3992.50,52.74,1619.09,2064.77,0.00,3520549826054.160156,3520549826055.671387,21,0,0.003974,0.007190,58806747,38606183,0,0,52214,0,1,1 +1774123519.317148,0.90,4,3992.50,53.05,1606.81,2077.05,0.00,0.048021,0.000000,70,0,0.003493,0.005902,58806838,38606303,0,0,52217,0,1,1 +1774123524.313681,0.55,4,3992.50,53.07,1606.02,2077.73,0.00,1.960148,0.000195,238,2,0.004811,0.007806,58806941,38606447,0,0,52219,0,1,1 +1774123529.312909,0.70,4,3992.50,52.99,1608.95,2074.80,0.00,3518980944221.964355,3518980944223.796875,199,0,0.003879,0.007133,58807041,38606588,0,0,52222,0,1,1 +1774123534.316785,0.60,4,3992.50,53.06,1606.25,2077.46,0.00,82979.092794,119643.869132,6902636,2095415,0.003875,0.007104,58807141,38606727,0,0,52224,0,1,1 +1774123539.312831,0.55,4,3992.50,53.08,1605.55,2078.19,0.00,0.000000,0.030786,6902636,2095455,0.003410,0.005870,58807226,38606844,0,0,52227,0,1,1 +1774123544.312907,0.60,4,3992.50,53.08,1605.57,2078.17,0.00,3518384295892.041016,3518384259199.533691,21,0,0.003878,0.007122,58807326,38606984,0,0,52229,0,1,1 +1774123549.317526,2.76,4,3992.50,53.69,1586.36,2101.97,0.00,0.000000,0.000000,21,0,0.013837,6.015334,58808052,38608032,0,0,52232,0,1,1 +1774123554.317662,9.90,4,3992.50,53.44,1594.21,2092.43,0.00,0.174995,0.000000,199,0,0.013755,34.055068,58808930,38611647,0,0,52234,0,1,1 +1774123559.317423,0.60,4,3992.50,53.44,1594.21,2092.43,0.00,3518605757136.003418,0.000000,21,0,0.001827,0.005094,58808986,38611746,0,0,52237,0,1,1 +1774123564.317482,0.60,4,3992.50,53.72,1583.25,2103.36,0.00,83038.505477,119769.287566,6901862,2095465,0.000903,0.002554,58809013,38611796,0,0,52239,0,1,1 +1774123569.316552,0.60,4,3992.50,53.72,1583.28,2103.36,0.00,3519092118271.856934,3519092081533.800293,21,0,0.002302,0.007011,58809084,38611923,0,0,52242,0,1,1 +1774123574.314723,0.85,4,3992.50,53.72,1583.29,2103.36,0.00,0.000000,0.000000,21,0,0.000953,0.002479,58809123,38611978,0,0,52244,0,1,1 +1774123579.317166,0.90,4,3992.50,54.10,1573.94,2118.12,0.00,83003.050792,119712.347425,6902636,2095886,0.000887,0.002211,58809151,38612026,0,0,52247,0,1,1 +1774123584.312983,0.80,4,3992.50,53.85,1578.20,2108.48,0.00,3521382872481.581543,3521382835721.592773,238,2,0.000730,0.001997,58809175,38612069,0,0,52249,0,1,1 +1774123589.317028,0.55,4,3992.50,53.84,1578.54,2108.13,0.00,3515592965501.448242,3515592965503.405273,70,0,0.001007,0.002694,58809210,38612129,0,0,52252,0,1,1 +1774123594.317712,0.60,4,3992.50,53.84,1578.54,2108.13,0.00,83032.217288,119760.732663,6902637,2096005,0.000863,0.002471,58809242,38612183,0,0,52254,0,1,1 +1774123599.315471,0.65,4,3992.50,53.86,1578.12,2108.56,0.00,3520014797175.845703,3520014760425.706543,199,0,0.000817,0.002057,58809271,38612232,0,0,52257,0,1,1 +1774123604.317659,26.18,4,3992.50,60.45,1325.28,2366.72,0.00,3516898445535.176758,0.000000,21,0,2.872052,0.041111,58811743,38615121,0,0,52259,0,1,1 +1774123609.313028,2.29,4,3992.50,60.88,1307.09,2383.56,0.00,0.000000,0.000000,21,0,3.555123,0.049325,58814945,38618665,0,0,52262,0,1,1 +1774123614.313673,1.92,4,3992.50,60.61,1317.75,2372.88,0.00,83028.822330,119761.833996,6901863,2095776,3.493075,0.044631,58818117,38621967,0,0,52264,0,1,1 +1774123619.317212,2.02,4,3992.50,60.42,1325.16,2365.68,0.00,3515948141150.600586,3515948104438.671875,199,0,3.457506,0.047861,58821482,38625415,0,0,52267,0,1,1 +1774123624.312836,1.72,4,3992.50,60.16,1335.77,2355.27,0.00,83116.202913,119882.239664,6902637,2096182,3.489967,0.046277,58824790,38628804,0,0,52269,0,1,1 +1774123629.317042,2.17,4,3992.50,60.23,1332.96,2358.24,0.00,3515479554296.735352,3515479517593.932617,21,0,3.511729,0.044856,58828091,38632123,0,0,52272,0,1,1 +1774123634.314328,1.93,4,3992.50,60.16,1335.98,2355.31,0.00,0.175095,0.000000,199,0,3.459828,0.047427,58831386,38635471,0,0,52274,0,1,1 +1774123639.317327,2.23,4,3992.50,60.94,1305.46,2386.13,0.00,1.362562,0.028303,237,378,3.495070,0.043957,58834636,38638725,0,0,52277,0,1,1 +1774123644.317213,2.03,4,3992.50,60.52,1321.84,2369.58,0.00,83043.975578,119780.090961,6902637,2096266,3.447370,0.047193,58838028,38642190,0,0,52279,0,1,1 +1774123649.317384,1.98,4,3992.50,60.30,1330.50,2360.98,0.00,3518316814181.458984,3518316777448.944824,21,0,3.517728,0.044798,58841331,38645509,0,0,52282,0,1,1 +1774123654.314535,1.82,4,3992.50,60.22,1333.78,2357.69,0.00,0.000000,0.000000,21,0,3.471140,0.045633,58844681,38648839,0,0,52284,0,1,1 +1774123659.312830,1.83,4,3992.50,60.34,1328.86,2362.60,0.00,0.000000,0.000000,21,0,3.509712,0.043877,58847880,38652055,0,0,52287,0,1,1 +1774123664.317694,2.23,4,3992.50,60.03,1341.54,2350.14,0.00,2.004885,0.000195,238,2,3.451580,0.044100,58851180,38655319,0,0,52289,0,1,1 +1774123669.313137,2.23,4,3992.50,60.31,1330.22,2361.25,0.00,0.000000,0.000000,238,2,3.510010,0.045271,58854468,38658648,0,0,52292,0,1,1 +1774123674.317187,1.97,4,3992.50,60.42,1326.11,2365.58,0.00,82974.414122,119680.527924,6902637,2096338,3.472474,0.041711,58857592,38661743,0,0,52294,0,1,1 +1774123679.316771,1.78,4,3992.50,60.26,1332.39,2359.29,0.00,3518729917950.092773,3518729881211.687988,237,378,3.475545,0.045214,58860907,38665037,0,0,52297,0,1,1 +1774123684.316107,2.03,4,3992.50,60.27,1332.18,2359.54,0.00,3518904122416.733398,3518904122418.244141,21,0,3.494188,0.045458,58864288,38668413,0,0,52299,0,1,1 +1774123689.313684,1.83,4,3992.50,60.28,1331.62,2360.20,0.00,0.000000,0.000000,21,0,3.479767,0.044708,58867541,38671666,0,0,52302,0,1,1 +1774123694.317124,1.87,4,3992.50,60.19,1335.73,2356.43,0.00,0.048014,0.000000,70,0,3.513352,0.046715,58870880,38675003,0,0,52304,0,1,1 +1774123699.312835,2.28,4,3992.50,60.51,1325.32,2369.08,0.00,0.000000,0.000000,70,0,3.469197,0.048013,58874344,38678454,0,0,52307,0,1,1 +1774123704.312725,1.93,4,3992.50,60.43,1326.12,2365.87,0.00,0.126956,0.000000,199,0,3.503704,0.044190,58877577,38681735,0,0,52309,0,1,1 +1774123709.317774,2.07,4,3992.50,60.23,1334.38,2357.99,0.00,3514888128625.709473,0.000000,70,0,3.501487,0.044720,58880860,38684998,0,0,52312,0,1,1 +1774123714.312948,1.87,4,3992.50,60.29,1331.68,2360.65,0.00,3521836876760.494629,0.000000,21,0,3.503621,0.048621,58884280,38688466,0,0,52314,0,1,1 +1774123719.312902,2.33,4,3992.50,60.25,1333.44,2359.11,0.00,0.175002,0.000000,199,0,3.475223,0.045166,58887584,38691749,0,0,52317,0,1,1 +1774123724.312817,1.88,4,3992.50,60.23,1334.74,2357.95,0.00,3518496561697.825195,0.000000,21,0,3.483785,0.044125,58890902,38695019,0,0,52319,0,1,1 +1774123729.312900,2.28,4,3992.50,60.50,1339.59,2368.79,0.00,0.174997,0.000000,199,0,3.469739,0.043740,58894038,38698165,0,0,52322,0,1,1 +1774123734.312910,1.98,4,3992.50,60.38,1343.44,2364.13,0.00,83043.288602,119777.394436,6902637,2096505,3.517093,0.043228,58897225,38701362,0,0,52324,0,1,1 +1774123739.317563,1.67,4,3992.50,60.34,1345.34,2362.44,0.00,3515166127369.610352,3515166090669.758301,21,0,3.465136,0.045396,58900544,38704625,0,0,52327,0,1,1 +1774123744.312860,2.08,4,3992.50,60.54,1337.80,2370.18,0.00,83117.690741,119890.382355,6901863,2096151,3.515455,0.044703,58903850,38707940,0,0,52329,0,1,1 +1774123749.314791,1.78,4,3992.50,60.51,1339.09,2369.07,0.00,0.000000,0.003417,6901863,2096159,3.454904,0.044997,58907189,38711247,0,0,52332,0,1,1 +1774123754.312911,2.08,4,3992.50,60.35,1345.35,2362.80,0.00,3519760821302.458496,3519760784550.527344,21,0,3.501303,0.046037,58910606,38714650,0,0,52334,0,1,1 +1774123759.317099,2.84,4,3992.50,60.63,1334.87,2373.94,0.00,0.174854,0.000000,199,0,3.511011,0.044984,58913938,38717939,0,0,52337,0,1,1 +1774123764.313606,1.98,4,3992.50,60.45,1342.01,2366.80,0.00,3520897261912.461426,0.000000,21,0,3.477195,0.044253,58917157,38721153,0,0,52339,0,1,1 +1774123769.317402,1.82,4,3992.50,60.33,1346.92,2361.90,0.00,0.048010,0.000000,70,0,3.491554,0.044031,58920447,38724409,0,0,52342,0,1,1 +1774123774.316916,2.08,4,3992.50,60.33,1346.73,2362.08,0.00,0.126965,0.000000,199,0,3.423880,0.045748,58923813,38727740,0,0,52344,0,1,1 +1774123779.316581,1.72,4,3992.50,60.64,1334.75,2374.04,0.00,1.363470,0.028322,237,378,3.521920,0.043399,58927062,38730965,0,0,52347,0,1,1 +1774123784.313329,1.93,4,3992.50,60.68,1333.15,2375.64,0.00,83092.015276,119855.650626,6901863,2096268,3.456224,0.045515,58930399,38734295,0,0,52349,0,1,1 +1774123789.313808,2.38,4,3992.50,60.66,1314.50,2375.00,0.00,3518100331064.796387,3518100294328.089355,238,2,3.528646,0.045320,58933739,38737637,0,0,52352,0,1,1 +1774123794.312814,1.87,4,3992.50,60.55,1318.32,2370.82,0.00,3519137180750.822754,3519137180752.655273,199,0,3.458790,0.046725,58937169,38741038,0,0,52354,0,1,1 +1774123799.317127,2.12,4,3992.50,60.18,1332.89,2356.36,0.00,3515404470852.230469,0.000000,70,0,3.471511,0.043814,58940383,38744219,0,0,52357,0,1,1 +1774123804.317374,2.03,4,3992.50,60.13,1334.78,2354.32,0.00,0.126947,0.000000,199,0,3.529279,0.044972,58943689,38747542,0,0,52359,0,1,1 +1774123809.317427,1.88,4,3992.50,60.25,1330.52,2358.87,0.00,1.831817,0.000195,238,2,3.438615,0.047092,58947166,38750971,0,0,52362,0,1,1 +1774123814.312873,1.83,4,3992.50,60.16,1333.88,2355.46,0.00,83117.356346,119887.078925,6902647,2096778,3.520216,0.044403,58950398,38754247,0,0,52364,0,1,1 +1774123819.312742,2.28,4,3992.50,60.42,1327.07,2365.45,0.00,3518529513278.385254,3518529476541.186035,238,2,3.434959,0.044238,58953696,38757526,0,0,52367,0,1,1 +1774123824.316549,1.82,4,3992.50,60.25,1330.79,2358.93,0.00,82978.466440,119686.791831,6902647,2096811,3.514531,0.044040,58956953,38760753,0,0,52369,0,1,1 +1774123829.313231,1.83,4,3992.50,60.23,1331.84,2358.17,0.00,3520773789467.355957,3520773752708.687012,21,0,3.459593,0.043644,58960189,38763934,0,0,52372,0,1,1 +1774123834.312751,2.13,4,3992.50,60.24,1331.46,2358.39,0.00,83051.646077,119789.581406,6902647,2096854,3.513938,0.046139,58963589,38767341,0,0,52374,0,1,1 +1774123839.317083,1.72,4,3992.50,60.56,1319.00,2370.92,0.00,3515391131528.852539,3515391094824.741211,237,378,3.472384,0.042914,58966819,38770502,0,0,52377,0,1,1 +1774123844.313258,1.98,4,3992.50,60.25,1331.10,2358.80,0.00,0.468816,3521130936725.897949,238,2,3.499973,0.043274,58970049,38773688,0,0,52379,0,1,1 +1774123849.313361,2.13,4,3992.50,60.84,1308.02,2381.85,0.00,83039.939466,119775.640187,6902647,2096897,3.471917,0.042961,58973305,38776894,0,0,52382,0,1,1 +1774123854.314698,1.78,4,3992.50,60.55,1319.18,2370.68,0.00,3517496876412.491211,3517496839687.854004,21,0,3.467319,0.046371,58976640,38780216,0,0,52384,0,1,1 +1774123859.317577,2.07,4,3992.50,60.36,1326.43,2363.41,0.00,0.000000,0.000000,21,0,3.509251,0.044295,58979875,38783467,0,0,52387,0,1,1 +1774123864.313702,1.77,4,3992.50,60.45,1323.09,2366.76,0.00,83108.069230,119871.056995,6902647,2096952,3.472109,0.046593,58983253,38786814,0,0,52389,0,1,1 +1774123869.317421,1.98,4,3992.50,60.26,1330.67,2359.21,0.00,3515822360233.420410,3515822323524.712891,237,378,3.530361,0.046977,58986730,38790288,0,0,52392,0,1,1 +1774123874.317432,2.18,4,3992.50,60.21,1332.48,2357.35,0.00,0.468456,3518429319860.950684,238,2,3.443634,0.044667,58990025,38793558,0,0,52394,0,1,1 +1774123879.316532,2.43,4,3992.50,60.85,1309.76,2382.28,0.00,83056.607038,119799.775805,6902647,2096998,3.527848,0.043828,58993266,38796793,0,0,52397,0,1,1 +1774123884.317215,1.77,4,3992.50,60.78,1310.27,2379.64,0.00,3517956726333.631836,3517956689604.099121,21,0,3.441148,0.044289,58996530,38800031,0,0,52399,0,1,1 +1774123889.312816,2.08,4,3992.50,60.55,1319.33,2370.59,0.00,83116.790917,119883.699778,6902647,2097021,3.515490,0.043150,58999754,38803275,0,0,52402,0,1,1 +1774123894.312840,1.82,4,3992.50,60.32,1328.07,2361.85,0.00,3518420547041.918457,3518420510307.530762,21,0,3.475126,0.047686,59003146,38806674,0,0,52404,0,1,1 +1774123899.314986,1.77,4,3992.50,60.44,1323.80,2366.26,0.00,83008.025998,119726.838839,6902647,2097044,3.473112,0.044701,59006434,38809973,0,0,52407,0,1,1 +1774123904.316993,5.23,4,3992.50,60.38,1326.01,2363.91,0.00,0.000000,0.060718,6902647,2097115,3.534344,0.079685,59012957,38815432,0,0,52409,0,1,1 +1774123909.313480,4.47,4,3992.50,60.96,1303.16,2386.73,0.00,3520911006641.297852,3520910969879.319824,237,378,3.536215,0.090023,59020134,38821583,0,0,52412,0,1,1 +1774123914.314317,4.63,4,3992.50,61.16,1295.24,2394.61,0.00,3517848394935.166016,3517848394936.675781,21,0,5.213356,0.117486,59030332,38830274,0,0,52414,0,1,1 +1774123919.316540,3.00,4,3992.50,61.53,1280.85,2408.98,0.00,83006.751131,119725.524062,6902648,2097642,6.837436,0.160971,59043671,38842313,0,0,52417,0,1,1 +1774123924.313484,3.86,4,3992.50,61.07,1298.59,2391.22,0.00,3520589060556.097656,3520589023797.016602,237,378,6.883471,0.153696,59056899,38854114,0,0,52419,0,1,1 +1774123929.315814,2.59,4,3992.50,60.45,1323.04,2366.73,0.00,3516798172738.761719,3516798172740.223145,70,0,5.374888,0.139092,59067852,38864208,0,0,52422,0,1,1 +1774123934.316898,4.27,4,3992.50,61.21,1293.13,2396.66,0.00,1.958365,0.000195,238,2,3.643215,0.079288,59074941,38870112,0,0,52424,0,1,1 +1774123939.315610,3.46,4,3992.50,61.60,1284.18,2411.80,0.00,3519343859430.784180,3519343859432.791992,21,0,6.645620,0.154880,59087981,38881491,0,0,52427,0,1,1 +1774123944.313518,3.72,4,3992.50,61.69,1279.64,2415.36,0.00,0.048067,0.000000,70,0,6.984251,0.160837,59101714,38893515,0,0,52429,0,1,1 +1774123949.312842,2.59,4,3992.50,61.26,1296.39,2398.65,0.00,1.959054,0.000195,238,2,6.769877,0.161294,59114992,38905640,0,0,52432,0,1,1 +1774123954.313623,3.14,4,3992.50,60.95,1308.70,2386.39,0.00,3517887637438.696777,3517887637440.703613,21,0,3.875667,0.096258,59122838,38912485,0,0,52434,0,1,1 +1774123959.312901,3.41,4,3992.50,61.23,1297.65,2397.43,0.00,0.000000,0.000000,21,0,5.304468,0.112120,59132979,38921094,0,0,52437,0,1,1 +1774123964.316486,3.15,4,3992.50,61.39,1291.59,2403.57,0.00,1.537277,0.028300,237,378,5.811578,0.151774,59144706,38931974,0,0,52439,0,1,1 +1774123969.313523,3.92,4,3992.50,61.53,1286.01,2409.03,0.00,3520523182236.729492,3520523182238.065430,199,0,6.171822,0.135977,59156641,38942201,0,0,52442,0,1,1 +1774123974.313256,3.56,4,3992.50,61.49,1287.53,2407.49,0.00,3518625372300.884277,0.000000,21,0,6.735078,0.155210,59169890,38953729,0,0,52444,0,1,1 +1774123979.313909,2.39,4,3992.50,61.17,1299.93,2395.05,0.00,83032.826855,119764.086345,6902648,2098753,6.928537,0.161178,59183335,38965895,0,0,52447,0,1,1 +1774123984.313521,2.64,4,3992.50,60.73,1317.48,2377.54,0.00,3518709853297.105469,3518709853301.204102,6901874,2098450,4.624494,0.110655,59192295,38974250,0,0,52449,0,1,1 +1774123989.313688,4.12,4,3992.50,61.42,1290.35,2404.65,0.00,3518319910201.180176,3518319873462.251953,21,0,5.325902,0.132609,59203141,38983562,0,0,52452,0,1,1 +1774123994.313714,2.19,4,3992.50,61.30,1295.07,2399.96,0.00,0.000000,0.000000,21,0,6.957192,0.154200,59216454,38995457,0,0,52454,0,1,1 +1774123999.312875,2.64,4,3992.50,60.98,1309.58,2387.57,0.00,83057.601398,119800.146443,6902648,2099128,4.451101,0.111427,59225527,39003370,0,0,52457,0,1,1 +1774124004.313070,2.13,4,3992.50,61.05,1306.44,2390.40,0.00,3518299910033.602539,3518299873297.145508,237,378,3.496331,0.082460,59232509,39009361,0,0,52459,0,1,1 +1774124009.314506,2.13,4,3992.50,60.95,1310.56,2386.29,0.00,83018.283585,119745.854250,6902648,2099380,3.531262,0.080510,59239344,39015322,0,0,52462,0,1,1 +1774124014.316511,2.28,4,3992.50,60.86,1313.98,2382.86,0.00,3517026587156.489746,3517026550434.608887,21,0,3.495662,0.138683,59246699,39021644,0,0,52464,0,1,1 +1774124019.316122,1.63,4,3992.50,61.04,1307.15,2389.72,0.00,83046.008760,119789.637494,6901874,2099126,3.443547,1.575428,59255806,39030093,0,0,52467,0,1,1 +1774124024.312823,3.33,4,3992.50,61.15,1302.64,2394.21,0.00,3520760346033.549316,3520760309267.005371,237,378,3.583851,3.283128,59267712,39041941,0,0,52469,0,1,1 +1774124029.317378,3.77,4,3992.50,61.54,1285.65,2409.40,0.00,3515234695089.598145,3515234695090.932129,199,0,3.560001,3.507927,59280374,39054727,0,0,52472,0,1,1 +1774124034.317024,3.47,4,3992.50,60.90,1310.41,2384.55,0.00,3518686276276.190430,0.000000,70,0,3.439443,3.506071,59292455,39067020,0,0,52474,0,1,1 +1774124039.313827,3.52,4,3992.50,60.60,1322.68,2372.52,0.00,3520688710437.608887,0.000000,21,0,3.664658,3.505835,59304592,39079540,0,0,52477,0,1,1 +1774124044.316380,3.27,4,3992.50,60.62,1321.81,2373.26,0.00,0.048022,0.000000,70,0,3.464362,3.507639,59316920,39092092,0,0,52479,0,1,1 +1774124049.316697,3.32,4,3992.50,60.79,1314.97,2380.10,0.00,83038.347121,119772.919617,6902648,2099652,3.632035,3.508032,59329200,39104833,0,0,52482,0,1,1 +1774124054.317320,3.52,4,3992.50,60.75,1316.36,2378.54,0.00,3517998468017.806152,3517998431285.482422,70,0,3.658151,3.506587,59341607,39117287,0,0,52484,0,1,1 +1774124059.313249,3.98,4,3992.50,61.07,1304.12,2390.95,0.00,0.000000,0.000000,70,0,3.517496,3.507029,59353938,39129813,0,0,52487,0,1,1 +1774124064.314596,3.47,4,3992.50,60.85,1312.43,2382.37,0.00,83021.245365,119770.183376,6902648,2099893,3.586740,3.507396,59366310,39142324,0,0,52489,0,1,1 +1774124069.316840,3.47,4,3992.50,60.76,1315.82,2378.86,0.00,3516858805326.868652,3516858768584.565918,21,0,3.572568,3.506810,59378831,39154711,0,0,52492,0,1,1 +1774124074.313513,3.37,4,3992.50,60.52,1325.04,2369.40,0.00,1.539403,0.028339,237,378,3.521016,3.507472,59391060,39167152,0,0,52494,0,1,1 +1774124079.316434,3.63,4,3992.50,60.60,1321.57,2372.53,0.00,82993.652416,119732.529314,6902648,2099949,3.546111,3.507093,59403563,39179571,0,0,52497,0,1,1 +1774124084.313329,3.37,4,3992.50,60.58,1321.97,2371.95,0.00,3520623380149.305176,3520623343367.591309,70,0,3.423330,3.508494,59415652,39191875,0,0,52499,0,1,1 +1774124089.317688,3.93,4,3992.50,61.07,1296.71,2390.88,0.00,1.489034,0.028296,237,378,3.642719,3.505665,59428017,39204343,0,0,52502,0,1,1 +1774124094.313336,3.27,4,3992.50,60.64,1313.22,2374.02,0.00,83110.356629,119927.099748,6901874,2099750,3.517519,3.507398,59440377,39216687,0,0,52504,0,1,1 +1774124099.317038,3.52,4,3992.50,60.61,1313.85,2373.16,0.00,3515834047317.686523,3515834010561.712891,21,0,3.406890,3.508590,59452472,39229121,0,0,52507,0,1,1 +1774124104.313428,3.68,4,3992.50,60.91,1302.05,2384.77,0.00,0.048082,0.000000,70,0,3.602726,3.505147,59464870,39241381,0,0,52509,0,1,1 +1774124109.312822,3.63,4,3992.50,60.42,1321.06,2365.52,0.00,3518863697274.579590,0.000000,21,0,3.564547,3.508304,59477395,39253940,0,0,52512,0,1,1 +1774124114.317676,3.82,4,3992.50,60.47,1319.12,2367.38,0.00,82963.123467,119727.075344,6902648,2100388,3.683116,3.507685,59489641,39266613,0,0,52514,0,1,1 +1774124119.313594,3.53,4,3992.50,60.81,1310.16,2380.74,0.00,0.000000,0.053755,6902648,2100420,3.646047,3.508968,59502352,39279394,0,0,52517,0,1,1 +1774124124.317376,3.83,4,3992.50,61.05,1300.58,2390.22,0.00,3515778041654.231445,3515778004880.341309,238,2,3.461703,3.504271,59514753,39291386,0,0,52519,0,1,1 +1774124129.316834,4.29,4,3992.50,60.62,1317.28,2373.47,0.00,83046.544004,119856.363802,6901874,2100103,3.687234,3.508146,59527031,39303872,0,0,52522,0,1,1 +1774124134.317593,3.78,4,3992.50,60.53,1320.79,2369.98,0.00,3517903178501.218750,3517903141700.971191,238,2,3.651086,3.510017,59539830,39316827,0,0,52524,0,1,1 +1774124139.313787,3.63,4,3992.50,60.63,1317.02,2373.72,0.00,3521117735108.964355,3521117735110.973145,21,0,3.575257,3.507274,59552127,39329301,0,0,52527,0,1,1 +1774124144.312772,3.68,4,3992.50,60.66,1315.69,2374.91,0.00,83056.411886,119888.148844,6901875,2100285,3.552664,3.509444,59564642,39341959,0,0,52529,0,1,1 +1774124149.313717,3.93,4,3992.50,61.02,1302.36,2388.90,0.00,3517772485650.842773,3517772448832.027344,237,378,3.643101,3.508914,59576943,39354430,0,0,52532,0,1,1 +1774124154.314448,3.68,4,3992.50,60.85,1309.02,2382.25,0.00,83025.878361,119846.336159,6901875,2100335,3.534341,3.507558,59589302,39366660,0,0,52534,0,1,1 +1774124159.313914,3.78,4,3992.50,60.83,1309.50,2381.73,0.00,4.109716,0.048540,6902649,2100735,3.625345,3.508410,59601852,39379219,0,0,52537,0,1,1 +1774124164.312795,3.38,4,3992.50,60.83,1309.79,2381.50,0.00,3519224912782.400391,3519224875953.885742,21,0,3.518641,3.507902,59614082,39391680,0,0,52539,0,1,1 +1774124169.315471,3.78,4,3992.50,61.03,1301.76,2389.62,0.00,82999.238626,119799.830306,6902649,2100772,3.389989,3.505728,59626263,39403733,0,0,52542,0,1,1 +1774124174.313035,3.93,4,3992.50,61.07,1300.23,2391.07,0.00,3520151981959.692383,3520151945119.945801,237,378,3.645354,3.504789,59638635,39415835,0,0,52544,0,1,1 +1774124179.316391,4.08,4,3992.50,61.19,1295.83,2395.79,0.00,3516077580469.032227,3516077580470.366211,199,0,3.925509,3.510539,59651608,39429046,0,0,52547,0,1,1 +1774124184.313211,3.63,4,3992.50,60.91,1306.41,2384.78,0.00,3520676552807.821289,0.000000,21,0,3.767093,3.509171,59664500,39442027,0,0,52549,0,1,1 +1774124189.317684,3.31,4,3992.50,61.18,1296.09,2395.32,0.00,1.537004,0.028295,237,378,3.324376,3.505533,59676799,39453977,0,0,52552,0,1,1 +1774124194.316950,3.83,4,3992.50,61.01,1302.61,2388.66,0.00,83050.208830,119902.433068,6901875,2100638,3.706542,3.506733,59689050,39466534,0,0,52554,0,1,1 +1774124199.317386,3.37,4,3992.50,60.85,1309.08,2382.27,0.00,3518130488406.785645,3518130451562.686035,238,2,3.718130,3.510601,59701867,39479537,0,0,52557,0,1,1 +1774124204.315605,3.78,4,3992.50,60.99,1303.07,2388.03,0.00,3519690690405.578613,3519690690407.538086,70,0,3.641161,3.507646,59714265,39492095,0,0,52559,0,1,1 +1774124209.313372,3.73,4,3992.50,61.10,1298.97,2392.38,0.00,3520009593648.625488,0.000000,21,0,3.552834,3.507765,59726681,39504463,0,0,52562,0,1,1 +1774124214.317040,4.18,4,3992.50,60.89,1303.80,2383.89,0.00,0.174872,0.000000,199,0,3.458961,3.506350,59738980,39516613,0,0,52564,0,1,1 +1774124219.313561,3.68,4,3992.50,60.59,1315.22,2372.21,0.00,1.833111,0.000195,238,2,3.505626,3.508272,59751174,39529120,0,0,52567,0,1,1 +1774124224.312864,3.22,4,3992.50,60.84,1305.54,2381.84,0.00,3518927973355.902832,3518927973357.861816,70,0,3.400614,3.507695,59762904,39541327,0,0,52569,0,1,1 +1774124229.313422,3.73,4,3992.50,61.03,1298.03,2389.32,0.00,3518044702746.493652,0.000000,21,0,3.720285,3.508228,59775561,39553993,0,0,52572,0,1,1 +1774124234.312823,3.99,4,3992.50,61.01,1298.71,2388.64,0.00,83049.523368,119920.041176,6901876,2100963,3.617524,3.507519,59788295,39566519,0,0,52574,0,1,1 +1774124239.313452,4.29,4,3992.50,61.14,1301.44,2393.59,0.00,0.001562,20.665757,6901878,2101113,3.559401,3.505884,59800413,39578806,0,0,52577,0,1,1 +1774124244.317242,3.57,4,3992.50,60.71,1317.89,2377.12,0.00,4.106165,0.064892,6902652,2101537,3.814595,3.510491,59813347,39591794,0,0,52579,0,1,1 +1774124249.316828,3.37,4,3992.50,60.77,1315.81,2379.19,0.00,3518728922065.347168,3518728885179.567383,21,0,3.416034,3.505020,59825732,39603907,0,0,52582,0,1,1 +1774124254.312806,3.58,4,3992.50,60.73,1317.11,2377.84,0.00,2.008451,0.000195,238,2,3.521225,3.507549,59837623,39616214,0,0,52584,0,1,1 +1774124259.313761,3.68,4,3992.50,60.64,1320.52,2374.38,0.00,3517765222854.801270,3517765222856.632812,199,0,3.810924,3.508437,59850598,39628954,0,0,52587,0,1,1 +1774124264.317304,3.32,4,3992.50,60.71,1318.14,2376.77,0.00,3515945903140.220703,0.000000,21,0,3.507263,3.504942,59863039,39641340,0,0,52589,0,1,1 +1774124269.316055,3.73,4,3992.50,60.60,1320.40,2372.75,0.00,2.007338,0.000195,238,2,3.517199,3.510749,59875463,39653958,0,0,52592,0,1,1 +1774124274.312807,3.68,4,3992.50,60.71,1315.66,2377.07,0.00,3520724310121.015137,3520724310123.023438,21,0,3.716859,3.508190,59887725,39666730,0,0,52594,0,1,1 +1774124279.314762,3.47,4,3992.50,60.76,1313.81,2379.00,0.00,2.006052,0.000195,238,2,3.621682,3.508257,59900420,39679333,0,0,52597,0,1,1 +1774124284.316943,3.42,4,3992.50,60.69,1316.57,2376.23,0.00,3516902737090.678711,3516902737092.509766,199,0,3.516535,3.508534,59912614,39691898,0,0,52599,0,1,1 +1774124289.315670,3.32,4,3992.50,60.77,1313.32,2379.46,0.00,1.363726,0.028328,237,378,3.485097,3.507999,59924769,39704212,0,0,52602,0,1,1 +1774124294.315385,3.58,4,3992.50,60.59,1320.70,2372.11,0.00,3518638030221.143555,3518638030222.653809,21,0,3.530514,3.506421,59937352,39716544,0,0,52604,0,1,1 +1774124299.317160,3.89,4,3992.50,60.90,1305.05,2384.33,0.00,83010.104785,119925.491298,6901879,2101648,3.538974,3.507362,59949468,39728869,0,0,52607,0,1,1 +1774124304.312823,3.42,4,3992.50,60.63,1315.34,2373.80,0.00,3521491628241.257812,3521491591280.707520,21,0,3.633687,3.507950,59961908,39741554,0,0,52609,0,1,1 +1774124309.313382,4.03,4,3992.50,60.59,1319.86,2372.06,0.00,0.174980,0.000000,199,0,3.764951,3.509221,59974776,39754329,0,0,52612,0,1,1 +1774124314.317142,3.83,4,3992.50,60.58,1320.08,2371.84,0.00,82976.989984,119878.043962,6901879,2101795,3.519256,3.504615,59986979,39766466,0,0,52614,0,1,1 +1774124319.317306,3.32,4,3992.50,60.62,1318.26,2373.60,0.00,3518322092897.009277,3518322055968.074707,237,378,3.606957,3.508919,59999489,39779128,0,0,52617,0,1,1 +1774124324.316933,4.70,4,3992.50,60.90,1307.68,2384.21,0.00,0.468492,3518699844639.576172,238,2,3.998671,3.066904,60012208,39791654,0,0,52619,0,1,1 +1774124329.313577,14.55,4,3992.50,66.68,1082.73,2610.62,0.00,3520800505380.682617,0.028144,237,378,6.416122,0.149739,60024556,39801673,0,0,52622,0,1,1 +1774124334.313041,1.42,4,3992.50,65.82,1115.76,2577.19,0.00,3518814262497.667480,3518814262499.129883,70,0,7.123662,0.143384,60038100,39812443,0,0,52624,0,1,1 +1774124339.313643,1.42,4,3992.50,66.02,1108.21,2584.89,0.00,3518014056523.610840,0.000000,21,0,7.016015,0.164083,60052251,39824082,0,0,52627,0,1,1 +1774124344.317616,1.42,4,3992.50,66.34,1095.88,2597.45,0.00,0.174861,0.000000,199,0,7.114780,0.149862,60065677,39835853,0,0,52629,0,1,1 +1774124349.316010,1.57,4,3992.50,66.13,1104.00,2589.32,0.00,83082.038512,120025.726797,6902040,2102191,7.063734,0.153895,60079620,39847056,0,0,52632,0,1,1 +1774124354.316389,1.37,4,3992.50,66.02,1108.57,2584.84,0.00,3518170077019.082520,3518170040088.232422,238,2,7.010818,0.152727,60093441,39858219,0,0,52634,0,1,1 +1774124359.317110,1.53,4,3992.50,66.87,1075.62,2618.18,0.00,83045.665331,119970.011139,6902814,2102623,7.111900,0.150389,60106858,39870013,0,0,52637,0,1,1 +1774124364.316955,1.52,4,3992.50,66.18,1102.59,2591.20,0.00,3518545965007.906738,3518545928077.099121,238,2,6.962916,0.161712,60120894,39881512,0,0,52639,0,1,1 +1774124369.316391,1.47,4,3992.50,66.13,1104.61,2589.18,0.00,83062.922572,120000.830790,6902043,2102270,7.061721,0.144824,60134568,39892477,0,0,52642,0,1,1 +1774124374.312779,1.53,4,3992.50,66.20,1102.10,2591.91,0.00,3520980840832.732422,3520980803872.785156,237,378,7.121764,0.157509,60148320,39904407,0,0,52644,0,1,1 +1774124379.315254,1.32,4,3992.50,65.78,1118.59,2575.39,0.00,3516696018129.178223,3516696018130.639648,70,0,6.993585,0.155623,60162182,39915806,0,0,52647,0,1,1 +1774124384.316836,1.42,4,3992.50,60.46,1326.75,2367.29,0.00,1.958170,0.000195,238,2,6.484230,0.145917,60174774,39926921,0,0,52649,0,1,1 +1774124389.314220,2.59,4,3992.50,60.73,1313.58,2377.73,0.00,3520278809649.889160,3520278809651.848633,70,0,3.612157,0.091331,60182198,39933356,0,0,52652,0,1,1 +1774124394.317060,2.58,4,3992.50,60.92,1305.52,2385.18,0.00,0.126881,0.000000,199,0,3.546538,0.078006,60189030,39939221,0,0,52654,0,1,1 +1774124399.313507,2.09,4,3992.50,60.80,1310.09,2380.63,0.00,3520938799282.151367,0.000000,21,0,3.582907,0.087246,60196253,39945323,0,0,52657,0,1,1 +1774124404.317546,2.13,4,3992.50,61.09,1299.05,2391.64,0.00,1.537137,0.028297,237,378,3.483416,0.832716,60204471,39952717,0,0,52659,0,1,1 +1774124409.313182,2.55,4,3992.50,60.73,1313.02,2377.70,0.00,3521510620657.581055,3521510620659.092773,21,0,3.208237,2.607953,60214809,39963028,0,0,52662,0,1,1 +1774124414.315017,3.27,4,3992.50,60.67,1315.43,2375.27,0.00,2.006100,0.000195,238,2,3.474194,3.506520,60226781,39975248,0,0,52664,0,1,1 +1774124419.317209,3.37,4,3992.50,60.75,1312.36,2378.35,0.00,83017.170767,119935.068204,6902054,2102662,3.754323,3.505313,60239640,39987977,0,0,52667,0,1,1 +1774124424.313313,3.62,4,3992.50,60.50,1322.04,2368.66,0.00,3521181479742.678711,3521181442781.619629,199,0,3.561985,3.503950,60251816,39999953,0,0,52669,0,1,1 +1774124429.317239,3.31,4,3992.50,60.72,1313.74,2377.21,0.00,3515676571668.323730,0.000000,21,0,3.424279,3.509130,60263630,40012653,0,0,52672,0,1,1 +1774124434.312824,3.27,4,3992.50,60.72,1313.68,2377.24,0.00,1.539738,0.028345,237,378,3.670658,3.507337,60276221,40025211,0,0,52674,0,1,1 +1774124439.317115,3.47,4,3992.50,60.65,1316.23,2374.66,0.00,3515420739541.783691,3515420739543.117676,199,0,3.481130,3.505925,60288467,40037532,0,0,52677,0,1,1 +1774124444.313250,3.52,4,3992.50,60.77,1311.55,2379.45,0.00,1.364434,0.028342,237,378,3.505696,3.506145,60300699,40049908,0,0,52679,0,1,1 +1774124449.317369,3.62,4,3992.50,60.87,1320.78,2383.30,0.00,3515540948751.893555,3515540948753.354492,70,0,3.810660,3.506663,60313281,40062556,0,0,52682,0,1,1 +1774124454.316792,3.72,4,3992.50,60.73,1326.01,2377.90,0.00,0.126968,0.000000,199,0,3.420107,3.503643,60325451,40074481,0,0,52684,0,1,1 +1774124459.315133,3.11,4,3992.50,60.79,1323.84,2379.93,0.00,3519605375057.980469,0.000000,21,0,3.571683,3.508817,60337918,40087285,0,0,52687,0,1,1 +1774124464.313324,3.73,4,3992.50,60.59,1331.40,2372.14,0.00,0.000000,0.000000,21,0,4.034735,3.280315,60351351,40100357,0,0,52689,0,1,1 +1774124469.316553,2.33,4,3992.50,60.39,1338.93,2364.53,0.00,83001.992619,119934.485847,6902056,2103063,3.483600,0.348133,60358665,40106859,0,0,52692,0,1,1 +1774124474.317188,37.44,4,3992.50,59.95,1357.01,2347.18,0.00,3517990436733.011230,3517990399779.846191,237,378,157.014722,0.137928,60377691,40117172,0,0,52694,0,1,1 +1774124479.317257,33.64,4,3992.50,59.54,1372.96,2331.07,0.00,3518389049172.531738,3518389049173.867188,199,0,142.985437,0.077228,60391677,40123169,0,0,52697,0,1,1 +1774124484.313903,21.05,4,3992.50,59.50,1374.72,2329.67,0.00,3520798611328.281738,0.000000,21,0,132.170048,0.067759,60404205,40128429,0,0,52699,0,1,1 +1774124489.312816,1.20,4,3992.50,54.25,1576.59,2124.02,0.00,1.538714,0.028326,237,378,3.698431,0.008324,60404690,40128715,0,0,52702,0,1,1 +1774124494.316447,0.60,4,3992.50,53.81,1593.76,2106.86,0.00,3515883660550.722168,3515883660552.056641,199,0,0.002033,0.006053,60404751,40128828,0,0,52704,0,1,1 +1774124499.315469,0.80,4,3992.50,53.72,1597.21,2103.40,0.00,1.363646,0.028326,237,378,0.002289,0.006367,60404821,40128951,0,0,52707,0,1,1 +1774124504.315793,0.60,4,3992.50,53.75,1596.27,2104.35,0.00,0.000000,0.000000,237,378,0.002289,0.006356,60404891,40129073,0,0,52709,0,1,1 +1774124509.314626,1.25,4,3992.50,53.93,1592.15,2111.46,0.00,0.000000,0.000000,237,378,0.002277,0.006355,60404960,40129195,0,0,52712,0,1,1 +1774124514.317414,0.55,4,3992.50,53.97,1588.51,2113.17,0.00,0.468196,3516476771676.371582,238,2,0.001880,0.005149,60405019,40129298,0,0,52714,0,1,1 +1774124519.317238,0.80,4,3992.50,53.98,1588.04,2113.63,0.00,83060.784559,120032.877495,6902857,2103863,0.002403,0.006450,60405097,40129428,0,0,52717,0,1,1 +1774124524.313226,0.55,4,3992.50,53.98,1588.06,2113.62,0.00,3521262911844.414062,3521262874845.764160,199,0,0.002278,0.006361,60405166,40129550,0,0,52719,0,1,1 +1774124529.317611,0.55,4,3992.50,53.79,1595.70,2105.97,0.00,82982.796709,119923.462939,6902083,2103498,0.002287,0.006360,60405236,40129673,0,0,52722,0,1,1 +1774124534.313760,22.47,4,3992.50,59.75,1362.61,2339.27,0.00,3521149136020.439453,3521149099017.538086,237,378,24.661409,0.024779,60408140,40131136,0,0,52724,0,1,1 +1774124539.316634,32.31,4,3992.50,60.01,1353.77,2349.58,0.00,0.000000,0.000000,237,378,118.096316,0.046593,60420162,40134428,0,0,52727,0,1,1 +1774124544.316517,27.89,4,3992.50,59.93,1356.96,2346.41,0.00,3518519942656.064453,3518519942657.399902,199,0,119.368577,0.025733,60432336,40136119,0,0,52729,0,1,1 +1774124549.316945,27.65,4,3992.50,59.89,1358.71,2344.65,0.00,83052.566380,120018.622669,6902857,2104057,118.953138,0.019953,60444451,40137512,0,0,52732,0,1,1 +1774124554.317841,27.89,4,3992.50,59.87,1359.29,2344.00,0.00,3517806983204.628418,0.048722,6902083,2103725,119.955532,0.048526,60456914,40140976,0,0,52734,0,1,1 +1774124559.316708,27.94,4,3992.50,59.73,1364.96,2338.40,0.00,3519234395710.548340,3519234358728.959961,21,0,118.406714,0.070449,60469240,40146131,0,0,52737,0,1,1 +1774124564.312854,28.33,4,3992.50,59.92,1357.53,2345.81,0.00,1.539566,0.028342,237,378,119.856562,0.030646,60481400,40148353,0,0,52739,0,1,1 +1774124569.313188,28.19,4,3992.50,59.93,1352.22,2346.22,0.00,83052.772133,120021.027958,6902857,2104153,118.557523,0.032155,60493613,40150734,0,0,52742,0,1,1 +1774124574.317482,28.48,4,3992.50,60.12,1344.51,2353.97,0.00,3515418243532.741699,3515418206595.195801,70,0,120.064219,0.033026,60505915,40153127,0,0,52744,0,1,1 +1774124579.317424,1.25,4,3992.50,53.92,1587.36,2111.12,0.00,1.490349,0.028321,237,378,47.471532,0.014467,60510890,40153855,0,0,52747,0,1,1 +1774124584.317646,3.16,4,3992.50,53.50,1603.68,2094.77,0.00,3518280682685.232910,3518280682686.567871,199,0,0.008226,0.005777,60511042,40154003,0,0,52749,0,1,1 +1774124589.317625,11.01,4,3992.50,54.75,1554.79,2143.67,0.00,1.831844,0.000195,238,2,12.086422,0.062111,60515107,40156981,0,0,52752,0,1,1 +1774124594.317141,16.22,4,3992.50,54.19,1576.65,2121.79,0.00,3518778330514.182129,0.028128,237,378,28.169814,0.123397,60524312,40163722,0,0,52754,0,1,1 +1774124599.312907,1.26,4,3992.50,53.90,1591.06,2110.21,0.00,3521418643330.426758,3521418643331.762695,199,0,0.006190,0.009913,60524450,40163899,0,0,52757,0,1,1 +1774124604.314439,0.60,4,3992.50,53.79,1595.34,2105.99,0.00,3517359625663.851074,0.000000,70,0,0.004496,0.006234,60524559,40164026,0,0,52759,0,1,1 +1774124609.317073,0.60,4,3992.50,53.80,1595.11,2106.21,0.00,1.489547,0.028305,237,378,0.003863,0.007129,60524658,40164167,0,0,52762,0,1,1 +1774124614.313405,0.50,4,3992.50,53.80,1595.12,2106.20,0.00,3521020392112.632324,3521020392113.968750,199,0,0.003454,0.005885,60524746,40164285,0,0,52764,0,1,1 +1774124619.317238,0.65,4,3992.50,53.79,1595.12,2106.19,0.00,1.830433,0.000195,238,2,0.003900,0.007770,60524848,40164430,0,0,52767,0,1,1 +1774124624.313123,0.60,4,3992.50,53.92,1590.16,2111.11,0.00,3521335265692.056641,3521335265694.065430,21,0,0.003486,0.005953,60524939,40164552,0,0,52769,0,1,1 +1774124629.313913,1.05,4,3992.50,54.05,1585.64,2116.27,0.00,83046.892598,120011.836850,6902873,2105813,0.003877,0.007131,60525039,40164693,0,0,52772,0,1,1 +1774124634.317590,0.70,4,3992.50,53.93,1590.02,2111.30,0.00,3515851660627.265137,3515851623683.644531,21,0,0.003875,0.007117,60525139,40164833,0,0,52774,0,1,1 +1774124639.314685,0.60,4,3992.50,53.93,1590.04,2111.29,0.00,0.048075,0.000000,70,0,0.003880,0.007136,60525239,40164974,0,0,52777,0,1,1 +1774124644.316922,0.65,4,3992.50,53.91,1590.62,2110.71,0.00,3516864184463.979004,0.000000,21,0,0.003519,0.005936,60525332,40165096,0,0,52779,0,1,1 +1774124649.317277,0.55,4,3992.50,53.87,1592.05,2109.28,0.00,0.174988,0.000000,199,0,0.003911,0.007171,60525435,40165240,0,0,52782,0,1,1 +1774124654.317658,0.70,4,3992.50,53.91,1590.55,2110.78,0.00,3518169260890.312500,0.000000,21,0,0.003865,0.007109,60525534,40165379,0,0,52784,0,1,1 +1774124659.312845,0.90,4,3992.50,53.91,1590.65,2110.73,0.00,0.175169,0.000000,199,0,0.003882,0.007139,60525634,40165520,0,0,52787,0,1,1 +1774124664.316426,0.60,4,3992.50,53.61,1602.27,2099.08,0.00,3515919032431.378906,0.000000,70,0,0.003418,0.005851,60525720,40165636,0,0,52789,0,1,1 +1774124669.316384,0.60,4,3992.50,53.61,1602.28,2099.06,0.00,1.958806,0.000195,238,2,0.003878,0.007132,60525820,40165777,0,0,52792,0,1,1 +1774124674.317401,0.55,4,3992.50,53.61,1602.30,2099.04,0.00,83041.125608,120006.739663,6902873,2106164,0.003271,0.006884,60525909,40165910,0,0,52794,0,1,1 +1774124679.317338,0.65,4,3992.50,53.58,1603.58,2097.76,0.00,3518481177209.522949,3518481140235.927246,238,2,0.003878,0.007120,60526009,40166050,0,0,52797,0,1,1 +1774124684.315762,0.75,4,3992.50,53.58,1603.64,2097.70,0.00,83084.212393,120069.045043,6902873,2106210,0.003867,0.007744,60526108,40166192,0,0,52799,0,1,1 +1774124689.317524,0.75,4,3992.50,53.66,1595.50,2101.08,0.00,3517197267360.967285,3517197230401.321289,237,378,0.003419,0.005888,60526194,40166311,0,0,52802,0,1,1 +1774124694.317607,12.27,4,3992.50,54.10,1576.93,2118.00,0.00,3518378591990.643555,3518378591992.153320,21,0,0.032696,49.480057,60528448,40171835,0,0,52804,0,1,1 +1774124699.316768,28.84,4,3992.50,53.74,1583.16,2104.09,0.00,2.007173,0.000195,238,2,0.038440,120.194573,60531307,40184439,0,0,52807,0,1,1 +1774124704.317383,10.25,4,3992.50,54.08,1568.77,2117.19,0.00,0.000000,0.000000,238,2,0.013094,35.458117,60531882,40188392,0,0,52809,0,1,1 +1774124709.312867,13.50,4,3992.50,54.10,1571.39,2118.14,0.00,83149.038372,120345.185894,6903008,2107793,40.097753,0.021300,60536256,40189838,0,0,52812,0,1,1 +1774124714.317019,1.90,4,3992.50,54.03,1574.30,2115.24,0.00,3515518101938.688477,0.029565,6902236,2107499,0.011478,4.215818,60536852,40190711,0,0,52814,0,1,1 +1774124719.312757,10.56,4,3992.50,54.18,1566.47,2121.25,0.00,3521438779099.541504,3521438741901.660156,237,378,0.018223,35.889314,60538075,40194554,0,0,52817,0,1,1 +1774124724.312820,0.65,4,3992.50,53.85,1579.42,2108.32,0.00,83073.392427,120269.297018,6903010,2108279,0.001831,0.005089,60538131,40194652,0,0,52819,0,1,1 +1774124729.312853,0.70,4,3992.50,53.46,1594.50,2093.24,0.00,0.000000,0.003906,6903010,2108283,0.003211,0.007036,60538203,40194778,0,0,52822,0,1,1 +1774124734.317409,0.65,4,3992.50,53.47,1594.26,2093.48,0.00,0.000000,0.003903,6903010,2108286,0.002274,0.006350,60538272,40194900,0,0,52824,0,1,1 +1774124739.313812,0.60,4,3992.50,53.51,1592.82,2094.92,0.00,3520969853785.216797,3520969816563.395996,199,0,0.002316,0.006402,60538344,40195025,0,0,52827,0,1,1 +1774124744.317166,0.55,4,3992.50,53.51,1592.82,2094.92,0.00,1.830608,0.000195,238,2,0.001817,0.005085,60538399,40195123,0,0,52829,0,1,1 +1774124749.312903,0.95,4,3992.50,53.75,1585.07,2104.26,0.00,3521439665811.937012,3521439665813.945801,21,0,0.002299,0.007024,60538470,40195251,0,0,52832,0,1,1 +1774124754.315914,0.65,4,3992.50,53.79,1583.21,2106.05,0.00,0.000000,0.000000,21,0,0.002376,0.006477,60538547,40195381,0,0,52834,0,1,1 +1774124759.314817,0.70,4,3992.50,53.80,1583.02,2106.27,0.00,1.538717,0.028327,237,378,0.002340,0.006430,60538621,40195508,0,0,52837,0,1,1 +1774124764.317328,0.60,4,3992.50,53.80,1583.02,2106.27,0.00,83032.739064,120216.538151,6903010,2108376,0.001998,0.005212,60538688,40195616,0,0,52839,0,1,1 +1774124769.317580,1.35,4,3992.50,53.66,1588.36,2100.94,0.00,3518259524066.447266,3518259486867.361816,21,0,0.002289,0.006366,60538758,40195739,0,0,52842,0,1,1 +1774124774.312911,0.90,4,3992.50,53.70,1586.89,2102.41,0.00,0.048092,0.000000,70,0,0.002278,0.006362,60538827,40195861,0,0,52844,0,1,1 +1774124779.312798,1.40,4,3992.50,53.89,1581.78,2110.07,0.00,1.958833,0.000195,238,2,0.004541,0.009320,60538933,40196015,0,0,52847,0,1,1 +1774124784.313388,45.03,4,3992.50,59.77,1357.57,2340.05,0.00,3518022251824.149902,3518022251826.156738,21,0,101.332282,0.047996,60549468,40199488,0,0,52849,0,1,1 +1774124789.316882,28.26,4,3992.50,60.13,1343.99,2354.14,0.00,0.000000,0.000000,21,0,119.880973,0.027427,60561734,40201478,0,0,52852,0,1,1 +1774124794.317374,28.15,4,3992.50,59.94,1351.57,2346.61,0.00,83063.700002,120265.237232,6902236,2108162,119.356494,0.027879,60574088,40203374,0,0,52854,0,1,1 +1774124799.313591,28.20,4,3992.50,59.83,1355.63,2342.52,0.00,0.000000,0.077207,6902236,2108176,119.258780,0.035309,60586398,40205904,0,0,52857,0,1,1 +1774124804.315798,27.84,4,3992.50,59.88,1353.67,2344.44,0.00,3516884831930.230957,3516884794741.324707,70,0,119.511146,0.031265,60598634,40208339,0,0,52859,0,1,1 +1774124809.317018,28.07,4,3992.50,59.90,1353.12,2345.05,0.00,1.958311,0.000195,238,2,118.736494,0.025291,60610882,40210100,0,0,52862,0,1,1 +1774124814.316373,28.82,4,3992.50,60.26,1338.35,2359.34,0.00,83080.575638,120292.781835,6902236,2108237,120.185367,0.029382,60623340,40211983,0,0,52864,0,1,1 +1774124819.313282,28.38,4,3992.50,60.15,1342.48,2355.14,0.00,3520613413412.389648,3520613376183.976074,21,0,118.235239,0.036186,60635400,40214627,0,0,52867,0,1,1 +1774124824.312856,10.39,4,3992.50,53.74,1593.53,2104.21,0.00,83079.007272,120287.647559,6902243,2108286,88.929745,0.026101,60644422,40216516,0,0,52869,0,1,1 +1774124829.312906,1.91,4,3992.50,53.82,1590.61,2107.12,0.00,3518401972051.349121,3518401934844.742188,237,378,0.011864,0.009846,60644651,40216731,0,0,52872,0,1,1 +1774124834.314311,15.12,4,3992.50,53.91,1587.00,2110.73,0.00,3517448606735.752441,3517448606737.087402,199,0,22.128566,0.098852,60651829,40221955,0,0,52874,0,1,1 +1774124839.312914,12.52,4,3992.50,53.57,1600.38,2097.38,0.00,3519420247715.592285,0.000000,70,0,18.119720,0.081528,60657666,40226196,0,0,52877,0,1,1 +1774124844.314853,1.20,4,3992.50,53.59,1599.29,2098.20,0.00,0.000000,0.000000,70,0,0.006109,0.010294,60657797,40226385,0,0,52879,0,1,1 +1774124849.312924,0.65,4,3992.50,53.40,1606.77,2090.79,0.00,3519794894440.071777,0.000000,21,0,0.003888,0.007143,60657898,40226527,0,0,52882,0,1,1 +1774124854.315261,7.43,4,3992.50,54.45,1565.21,2131.77,0.00,0.000000,0.000000,21,0,0.023013,30.639227,60659364,40230029,0,0,52884,0,1,1 +1774124859.312799,29.50,4,3992.50,54.26,1564.13,2124.56,0.00,0.175086,0.000000,199,0,0.036321,119.028097,60661990,40242322,0,0,52887,0,1,1 +1774124864.317098,14.37,4,3992.50,54.10,1569.45,2117.95,0.00,1.362208,0.028296,237,378,0.014468,55.434732,60662928,40248154,0,0,52889,0,1,1 +1774124869.312805,12.42,4,3992.50,58.92,1383.15,2306.72,0.00,3521460720971.019531,3521460720972.355469,199,0,13.640805,0.020842,60664698,40249192,0,0,52892,0,1,1 +1774124874.312829,4.46,4,3992.50,54.09,1571.89,2117.63,0.00,0.000000,0.000000,199,0,26.443823,0.020922,60667528,40250228,0,0,52894,0,1,1 +1774124879.317266,0.65,4,3992.50,54.14,1569.94,2119.59,0.00,3515318361484.558594,0.000000,21,0,0.003417,0.005885,60667614,40250347,0,0,52897,0,1,1 +1774124884.313920,0.60,4,3992.50,54.14,1569.72,2119.80,0.00,1.539409,0.028339,237,378,0.003881,0.007772,60667714,40250491,0,0,52899,0,1,1 +1774124889.315739,0.75,4,3992.50,54.14,1569.74,2119.79,0.00,3517157463704.664551,3517157463706.173828,21,0,0.003877,0.007142,60667814,40250633,0,0,52902,0,1,1 +1774124894.317774,1.40,4,3992.50,53.88,1580.03,2109.50,0.00,0.000000,0.000000,21,0,0.003902,0.007120,60667916,40250773,0,0,52904,0,1,1 +1774124899.315841,1.15,4,3992.50,53.94,1587.00,2111.90,0.00,0.175068,0.000000,199,0,0.005222,0.007436,60668029,40250908,0,0,52907,0,1,1 +1774124904.312840,0.65,4,3992.50,53.94,1587.02,2111.88,0.00,83141.763630,120556.898840,6903139,2111976,0.004945,0.007528,60668151,40251061,0,0,52909,0,1,1 +1774124909.315516,0.55,4,3992.50,53.74,1594.68,2104.23,0.00,3516555007879.629883,3516554970506.958984,199,0,0.003125,0.006771,60668239,40251195,0,0,52912,0,1,1 +1774124914.315689,0.55,4,3992.50,53.77,1593.70,2105.19,0.00,83088.978067,120480.453060,6903139,2112084,0.003953,0.007173,60668344,40251339,0,0,52914,0,1,1 +1774124919.316204,0.65,4,3992.50,53.57,1601.52,2097.39,0.00,3518074818263.245605,3518074780874.503418,21,0,0.003495,0.005879,60668435,40251457,0,0,52917,0,1,1 +1774124924.316787,0.60,4,3992.50,53.58,1601.11,2097.80,0.00,83078.224669,120470.603902,6902365,2111784,0.003878,0.007122,60668535,40251597,0,0,52919,0,1,1 +1774124929.317034,0.95,4,3992.50,53.83,1590.91,2107.63,0.00,0.000000,0.045701,6902365,2111804,0.003865,0.007119,60668634,40251737,0,0,52922,0,1,1 +1774124934.316774,0.60,4,3992.50,53.83,1590.83,2107.71,0.00,3518619946250.625977,3518619908851.721191,199,0,0.003886,0.007118,60668735,40251877,0,0,52924,0,1,1 +1774124939.317278,10.84,4,3992.50,54.05,1579.89,2116.37,0.00,3518082801443.307129,0.000000,21,0,0.024360,40.061630,60670358,40256364,0,0,52927,0,1,1 +1774124944.313761,1.10,4,3992.50,53.63,1597.09,2099.89,0.00,83150.511976,120603.720357,6903139,2112536,0.003512,0.008845,60670462,40256532,0,0,52929,0,1,1 +1774124949.317179,0.55,4,3992.50,53.67,1595.87,2101.11,0.00,3516033526596.072754,3516033489194.728027,70,0,0.002312,0.007036,60670534,40256661,0,0,52932,0,1,1 +1774124954.312810,0.70,4,3992.50,53.66,1595.87,2101.10,0.00,1.491635,0.028345,237,378,0.002291,0.006362,60670604,40256783,0,0,52934,0,1,1 +1774124959.312843,0.95,4,3992.50,53.90,1596.24,2110.37,0.00,3518413986645.841797,3518413986647.177246,199,0,0.001831,0.005099,60670660,40256882,0,0,52937,0,1,1 +1774124964.317248,0.70,4,3992.50,54.13,1585.38,2119.23,0.00,3515339999593.546875,0.000000,21,0,0.002274,0.006350,60670729,40257004,0,0,52939,0,1,1 +1774124969.317734,0.70,4,3992.50,54.13,1585.42,2119.23,0.00,0.000000,0.000000,21,0,0.002289,0.006365,60670799,40257127,0,0,52942,0,1,1 +1774124974.317202,0.65,4,3992.50,54.13,1585.18,2119.46,0.00,83096.751139,120537.892029,6902365,2112318,0.002310,0.006396,60670871,40257252,0,0,52944,0,1,1 +1774124979.317638,0.55,4,3992.50,54.13,1585.18,2119.46,0.00,0.000000,0.004687,6902365,2112323,0.001881,0.005160,60670931,40257355,0,0,52947,0,1,1 +1774124984.317165,0.55,4,3992.50,54.14,1584.95,2119.69,0.00,3518770189357.700195,3518770151916.816406,199,0,0.002396,0.006475,60671009,40257485,0,0,52949,0,1,1 +1774124989.317044,0.90,4,3992.50,54.15,1578.77,2119.96,0.00,3518521913075.904297,0.000000,70,0,0.002401,0.006467,60671086,40257616,0,0,52952,0,1,1 +1774124994.317157,0.55,4,3992.50,54.15,1578.67,2119.98,0.00,83090.112581,120522.454541,6903139,2112730,0.002289,0.006356,60671156,40257738,0,0,52954,0,1,1 +1774124999.313221,0.70,4,3992.50,54.16,1578.34,2120.32,0.00,3521208787540.462891,3521208750077.840820,21,0,0.001832,0.005103,60671212,40257837,0,0,52957,0,1,1 +1774125004.318326,5.61,4,3992.50,60.20,1346.27,2356.87,0.00,83003.191616,120402.381420,6902375,2112514,0.606293,0.010358,60671473,40258111,0,0,52959,0,1,1 +1774125009.317504,45.93,4,3992.50,60.10,1353.60,2353.23,0.00,3519015471061.316895,3519015433617.791992,21,0,99.959134,0.058845,60681898,40262374,0,0,52962,0,1,1 +1774125014.313259,29.16,4,3992.50,60.22,1349.83,2357.59,0.00,83158.526954,120627.745147,6902375,2112545,122.272089,0.054248,60694339,40266319,0,0,52964,0,1,1 +1774125019.314860,29.14,4,3992.50,60.23,1342.34,2358.05,0.00,3517311017872.138184,3517310980446.663086,70,0,122.128007,0.055104,60706730,40270505,0,0,52967,0,1,1 +1774125024.316458,28.79,4,3992.50,60.00,1351.49,2348.94,0.00,1.489856,0.028311,237,378,120.124911,0.052399,60718746,40274353,0,0,52969,0,1,1 +1774125029.314399,28.21,4,3992.50,59.81,1358.77,2341.68,0.00,0.468650,3519886777103.446777,238,2,120.213480,0.054689,60730793,40278379,0,0,52972,0,1,1 +1774125034.313108,28.11,4,3992.50,59.82,1358.46,2341.96,0.00,3519345749102.397949,3519345749104.405762,21,0,119.390550,0.048052,60742706,40282155,0,0,52974,0,1,1 +1774125039.312767,28.48,4,3992.50,59.90,1355.14,2345.27,0.00,0.000000,0.000000,21,0,118.969788,0.053725,60754664,40286174,0,0,52977,0,1,1 +1774125044.317410,28.37,4,3992.50,60.02,1350.52,2349.95,0.00,83010.853233,120413.710208,6902375,2112679,120.051789,0.055485,60766764,40290414,0,0,52979,0,1,1 +1774125049.317291,8.70,4,3992.50,55.31,1535.07,2165.41,0.00,0.035157,0.120804,6902382,2112696,81.714545,0.043278,60775038,40293556,0,0,52982,0,1,1 +1774125054.315408,3.06,4,3992.50,54.70,1559.46,2141.62,0.00,3519763313479.904785,3519763276027.946777,199,0,0.035577,0.014047,60775352,40293845,0,0,52984,0,1,1 +1774125059.312871,20.95,4,3992.50,54.27,1576.12,2124.94,0.00,0.000000,0.000000,199,0,32.192665,0.144856,60785745,40301684,0,0,52987,0,1,1 +1774125064.316400,7.03,4,3992.50,54.05,1584.93,2116.11,0.00,83033.312910,120441.232328,6903162,2114053,8.048985,0.041625,60788440,40303777,0,0,52989,0,1,1 +1774125069.313526,0.95,4,3992.50,53.81,1594.18,2106.87,0.00,3520460883153.567871,0.305547,6902388,2113970,0.003738,0.005906,60788527,40303897,0,0,52992,0,1,1 +1774125074.317798,1.00,4,3992.50,53.84,1592.96,2108.08,0.00,3515434000210.409180,3515433962803.747559,70,0,0.003862,0.007116,60788626,40304037,0,0,52994,0,1,1 +1774125079.316536,8.75,4,3992.50,54.42,1567.14,2130.58,0.00,1.490708,0.028327,237,378,0.024201,33.466442,60790185,40307829,0,0,52997,0,1,1 +1774125084.315110,29.19,4,3992.50,54.01,1575.25,2114.56,0.00,0.468591,3519441339283.906250,238,2,0.052792,118.804463,60794098,40320109,0,0,52999,0,1,1 +1774125089.313720,13.78,4,3992.50,54.03,1572.20,2115.23,0.00,3519415005136.586426,3519415005138.545898,70,0,0.018774,52.892731,60795398,40325654,0,0,53002,0,1,1 +1774125094.317161,1.00,4,3992.50,53.70,1584.98,2102.48,0.00,3516018052041.846680,0.000000,21,0,0.004480,0.008459,60795514,40325817,0,0,53004,0,1,1 +1774125099.313498,15.60,4,3992.50,54.17,1569.94,2120.82,0.00,83168.964041,120820.853901,6903291,2116102,40.094564,0.023110,60799926,40327139,0,0,53007,0,1,1 +1774125104.314982,0.90,4,3992.50,53.93,1579.45,2111.29,0.00,3517393172628.284180,3517393135013.628906,237,378,0.006355,0.008268,60800071,40327308,0,0,53009,0,1,1 +1774125109.317215,1.35,4,3992.50,53.72,1583.97,2103.17,0.00,3516866757658.016113,3516866757659.525391,21,0,0.004107,0.008095,60800171,40327449,0,0,53012,0,1,1 +1774125114.317346,0.80,4,3992.50,53.70,1579.07,2102.48,0.00,2.006783,0.000195,238,2,0.003865,0.007122,60800270,40327589,0,0,53014,0,1,1 +1774125119.317025,0.85,4,3992.50,53.70,1579.09,2102.47,0.00,3518662881843.831055,3518662881845.790039,70,0,0.003874,0.007141,60800370,40327731,0,0,53017,0,1,1 +1774125124.312804,0.90,4,3992.50,53.84,1573.50,2108.05,0.00,3521409990239.732422,0.000000,21,0,0.003894,0.007147,60800471,40327872,0,0,53019,0,1,1 +1774125129.316813,0.90,4,3992.50,53.63,1581.75,2099.80,0.00,2.005228,0.000195,238,2,0.003220,0.005676,60800553,40327986,0,0,53022,0,1,1 +1774125134.315441,0.75,4,3992.50,53.64,1581.32,2100.24,0.00,83128.845862,120765.908036,6903291,2116427,0.003295,0.006939,60800643,40328121,0,0,53024,0,1,1 +1774125139.316964,1.15,4,3992.50,53.69,1589.30,2101.91,0.00,3517366142655.632812,3517366105042.358398,21,0,0.003970,0.007206,60800749,40328268,0,0,53027,0,1,1 +1774125144.314885,0.90,4,3992.50,53.69,1588.48,2101.89,0.00,0.175073,0.000000,199,0,0.004487,0.008879,60800862,40328434,0,0,53029,0,1,1 +1774125149.312881,0.75,4,3992.50,53.68,1588.50,2101.88,0.00,83137.091715,120781.261619,6902517,2116118,0.003422,0.005867,60800948,40328551,0,0,53032,0,1,1 +1774125154.312872,0.75,4,3992.50,53.68,1588.75,2101.62,0.00,3518443036059.929199,3518442998430.916992,70,0,0.003961,0.007158,60801054,40328694,0,0,53034,0,1,1 +1774125159.312840,0.85,4,3992.50,53.68,1588.77,2101.61,0.00,1.958802,0.000195,238,2,0.003853,0.007132,60801152,40328835,0,0,53037,0,1,1 +1774125164.317086,11.95,4,3992.50,53.29,1601.50,2086.39,0.00,3515451410145.570801,3515451410147.400879,199,0,0.025068,40.033536,60802683,40333292,0,0,53039,0,1,1 +1774125169.317440,1.35,4,3992.50,53.59,1590.41,2098.28,0.00,1.831706,0.000195,238,2,0.003368,0.009054,60802786,40333466,0,0,53042,0,1,1 +1774125174.317449,0.85,4,3992.50,53.57,1590.63,2097.21,0.00,83105.885582,120766.896828,6903291,2116886,0.002289,0.006356,60802856,40333588,0,0,53044,0,1,1 +1774125179.312983,0.65,4,3992.50,53.57,1590.39,2097.45,0.00,3521582721787.439453,3521582684094.699707,21,0,0.002278,0.006372,60802925,40333711,0,0,53047,0,1,1 +1774125184.312920,0.55,4,3992.50,53.58,1590.16,2097.68,0.00,83104.986968,120768.665568,6902517,2116544,0.002289,0.006356,60802995,40333833,0,0,53049,0,1,1 +1774125189.316385,0.70,4,3992.50,53.75,1583.38,2104.46,0.00,4.106431,0.034742,6903291,2116930,0.002046,0.005716,60803057,40333943,0,0,53052,0,1,1 +1774125194.312919,0.60,4,3992.50,53.75,1583.39,2104.46,0.00,3520877550223.242676,3520877512537.948242,70,0,0.002069,0.005747,60803121,40334055,0,0,53054,0,1,1 +1774125199.314996,1.10,4,3992.50,53.70,1580.28,2102.65,0.00,0.000000,0.000000,70,0,0.003422,0.007009,60803215,40334194,0,0,53057,0,1,1 +1774125204.317565,1.35,4,3992.50,53.64,1582.68,2100.06,0.00,1.489567,0.028306,237,378,0.004033,0.007745,60803311,40334336,0,0,53059,0,1,1 +1774125209.316901,0.60,4,3992.50,53.64,1582.68,2100.06,0.00,3518904514474.717773,3518904514476.228027,21,0,0.002365,0.007104,60803387,40334469,0,0,53062,0,1,1 +1774125214.316961,0.55,4,3992.50,53.64,1582.44,2100.30,0.00,0.174998,0.000000,199,0,0.001986,0.005215,60803453,40334577,0,0,53064,0,1,1 +1774125219.312841,0.65,4,3992.50,53.77,1577.61,2105.09,0.00,0.000000,0.000000,199,0,0.002299,0.006379,60803524,40334701,0,0,53067,0,1,1 +1774125224.317163,0.65,4,3992.50,53.77,1577.65,2105.09,0.00,3515398133837.809570,0.000000,21,0,0.002287,0.006351,60803594,40334823,0,0,53069,0,1,1 +1774125229.312826,1.00,4,3992.50,53.82,1575.24,2106.98,0.00,1.539715,0.028345,237,378,0.002291,0.006371,60803664,40334946,0,0,53072,0,1,1 +1774125234.315108,33.63,4,3992.50,59.81,1347.16,2341.80,0.00,3516831760412.388184,3516831760413.849609,70,0,76.891806,0.063751,60812080,40339418,0,0,53074,0,1,1 +1774125239.317541,30.63,4,3992.50,59.96,1343.30,2347.65,0.00,1.489607,0.028307,237,378,122.616625,0.052932,60824607,40343183,0,0,53077,0,1,1 +1774125244.313553,28.52,4,3992.50,59.76,1351.17,2339.79,0.00,3521246014570.839355,3521246014572.350586,21,0,121.584862,0.024661,60836534,40344940,0,0,53079,0,1,1 +1774125249.312871,28.07,4,3992.50,59.76,1351.12,2339.80,0.00,0.000000,0.000000,21,0,119.889317,0.028681,60848287,40347016,0,0,53082,0,1,1 +1774125254.317692,28.23,4,3992.50,60.00,1341.75,2349.25,0.00,0.000000,0.000000,21,0,119.573342,0.036163,60859899,40349580,0,0,53084,0,1,1 +1774125259.314482,21.64,4,3992.50,60.14,1334.55,2354.70,0.00,1.539367,0.028339,237,378,88.489064,0.027953,60868645,40351690,0,0,53087,0,1,1 +1774125264.312809,29.76,4,3992.50,60.21,1331.67,2357.41,0.00,0.000000,0.000000,237,378,122.456540,0.034781,60879904,40354132,0,0,53089,0,1,1 +1774125269.314725,29.00,4,3992.50,60.30,1328.21,2360.94,0.00,0.468278,3517090003032.706543,238,2,122.022129,0.034903,60891215,40356591,0,0,53092,0,1,1 +1774125274.312805,18.86,4,3992.50,60.17,1333.45,2355.84,0.00,83133.845601,120819.999562,6902518,2116956,120.492306,0.032392,60902205,40358927,0,0,53094,0,1,1 +1774125279.316897,0.90,4,3992.50,53.51,1594.10,2095.18,0.00,3515560084218.667969,3515560046578.284668,237,378,11.410815,0.008390,60903348,40359281,0,0,53097,0,1,1 +1774125284.317486,18.67,4,3992.50,54.65,1549.38,2139.82,0.00,0.000000,0.000000,237,378,24.357549,0.117101,60911488,40365394,0,0,53099,0,1,1 +1774125289.317142,9.42,4,3992.50,54.23,1566.38,2123.11,0.00,83112.287463,120782.741529,6903302,2118336,15.905720,0.077017,60916876,40369456,0,0,53102,0,1,1 +1774125294.317254,0.95,4,3992.50,53.65,1588.97,2100.50,0.00,3518357655223.393066,3518357617557.893066,21,0,0.003878,0.007122,60916976,40369596,0,0,53104,0,1,1 +1774125299.314449,0.55,4,3992.50,53.64,1589.23,2100.27,0.00,83150.646203,120842.754709,6902528,2118481,0.003880,0.007136,60917076,40369737,0,0,53107,0,1,1 +1774125304.317403,0.60,4,3992.50,53.64,1589.39,2100.11,0.00,4.106851,0.055436,6903302,2118873,0.003634,0.006472,60917168,40369864,0,0,53109,0,1,1 +1774125309.317706,0.60,4,3992.50,53.41,1598.45,2091.05,0.00,3518224138818.708984,3518224101153.906250,199,0,0.003657,0.006519,60917262,40369995,0,0,53112,0,1,1 +1774125314.317455,0.55,4,3992.50,53.44,1597.01,2092.48,0.00,83107.988513,120781.319762,6902528,2118584,0.003866,0.007123,60917361,40370135,0,0,53114,0,1,1 +1774125319.316813,0.90,4,3992.50,53.44,1592.12,2092.45,0.00,3518888624527.735840,3518888586849.627441,238,2,0.003421,0.005866,60917447,40370252,0,0,53117,0,1,1 +1774125324.316784,1.60,4,3992.50,53.21,1601.13,2083.41,0.00,83102.476373,120776.121660,6902528,2118645,0.003815,0.007119,60917553,40370399,0,0,53119,0,1,1 +1774125329.312857,0.60,4,3992.50,53.26,1599.26,2085.27,0.00,3521202705849.759277,3521202668148.730957,21,0,0.003881,0.007138,60917653,40370540,0,0,53122,0,1,1 +1774125334.312911,0.60,4,3992.50,53.30,1597.81,2086.73,0.00,83107.202314,120774.140914,6903302,2119040,0.004857,0.007815,60917759,40370685,0,0,53124,0,1,1 +1774125339.316920,0.55,4,3992.50,53.30,1597.58,2086.95,0.00,0.000000,0.001952,6903302,2119046,0.003418,0.006504,60917845,40370806,0,0,53127,0,1,1 +1774125344.312826,0.60,4,3992.50,53.33,1596.67,2087.87,0.00,3521320629600.594238,3521320591900.863281,237,378,0.003881,0.007116,60917945,40370945,0,0,53129,0,1,1 +1774125349.312819,0.95,4,3992.50,53.32,1607.24,2087.75,0.00,83102.567994,120775.702211,6902528,2118779,0.003853,0.007132,60918043,40371086,0,0,53132,0,1,1 +1774125354.312895,0.60,4,3992.50,53.36,1605.23,2089.12,0.00,3518383682939.951660,3518383645267.439941,237,378,0.003865,0.007122,60918142,40371226,0,0,53134,0,1,1 +1774125359.313000,0.65,4,3992.50,53.36,1605.27,2089.12,0.00,3518363285254.522949,3518363285255.858398,199,0,0.003878,0.007107,60918242,40371365,0,0,53137,0,1,1 +1774125364.317188,0.65,4,3992.50,53.36,1605.28,2089.10,0.00,3515493079753.242188,0.000000,21,0,0.003413,0.005883,60918328,40371484,0,0,53139,0,1,1 +1774125369.316447,0.60,4,3992.50,53.36,1605.29,2089.09,0.00,0.000000,0.000000,21,0,0.003891,0.007121,60918429,40371624,0,0,53142,0,1,1 +1774125374.316939,0.75,4,3992.50,53.36,1605.07,2089.30,0.00,0.174983,0.000000,199,0,0.001745,0.002009,60918484,40371676,0,0,53144,0,1,1 +1774125379.314336,0.85,4,3992.50,53.41,1604.03,2091.23,0.00,3520269821220.924805,0.000000,70,0,0.001828,0.002253,60918545,40371743,0,0,53147,0,1,1 +1774125384.312961,0.40,4,3992.50,53.38,1605.14,2089.91,0.00,3519404996689.452637,0.000000,21,0,0.001353,0.001698,60918592,40371790,0,0,53149,0,1,1 +1774125389.316638,0.55,4,3992.50,53.36,1606.00,2089.01,0.00,83047.027390,120687.011334,6903302,2119331,0.001885,0.002116,60918647,40371849,0,0,53152,0,1,1 +1774125394.312844,0.40,4,3992.50,53.40,1604.49,2090.57,0.00,3521109348476.292969,3521109310780.018555,21,0,0.001335,0.002017,60918690,40371896,0,0,53154,0,1,1 +1774125399.314799,0.60,4,3992.50,53.40,1604.49,2090.56,0.00,1.537778,0.028309,237,378,0.001441,0.001852,60918731,40371945,0,0,53157,0,1,1 +1774125404.316778,0.75,4,3992.50,53.50,1600.59,2094.47,0.00,0.000000,0.000000,237,378,0.003232,0.004652,60918800,40372030,0,0,53159,0,1,1 +1774125409.316864,0.85,4,3992.50,53.42,1601.14,2091.32,0.00,0.000000,0.000000,237,378,0.038024,1.203232,60921023,40374382,0,0,53162,0,1,1 +1774125414.317639,2.42,4,3992.50,53.77,1587.04,2105.39,0.00,83093.690879,120758.026957,6903302,2119538,0.219086,8.568967,60933515,40390300,0,0,53164,0,1,1 +1774125419.317433,2.68,4,3992.50,53.62,1592.89,2099.48,0.00,3518582272989.041016,12.584113,6902528,2119239,0.222666,8.435114,60946370,40406131,0,0,53167,0,1,1 +1774125424.313572,2.33,4,3992.50,54.11,1573.69,2118.55,0.00,3521155682616.091309,3521155644901.442871,199,0,0.247168,9.210371,60960535,40423425,0,0,53169,0,1,1 +1774125429.315310,2.68,4,3992.50,53.75,1587.25,2104.27,0.00,83074.944278,120747.396172,6902528,2119268,0.247886,8.986929,60974756,40440364,0,0,53172,0,1,1 +1774125434.317016,2.47,4,3992.50,53.89,1581.20,2109.76,0.00,3517237543073.965332,3517237505401.267090,199,0,0.240697,9.180552,60988666,40457350,0,0,53174,0,1,1 +1774125439.315824,2.88,4,3992.50,53.81,1583.50,2106.82,0.00,1.363704,0.028327,237,378,0.244342,9.265197,61002710,40474658,0,0,53177,0,1,1 +1774125444.312831,2.68,4,3992.50,53.61,1592.23,2098.84,0.00,3520544626610.375488,3520544626611.711426,199,0,0.213009,7.706333,61014989,40489375,0,0,53179,0,1,1 +1774125449.315711,2.63,4,3992.50,53.73,1586.87,2103.56,0.00,0.000000,0.000000,199,0,0.230366,9.407658,61028352,40505862,0,0,53182,0,1,1 +1774125454.312801,2.63,4,3992.50,54.03,1574.55,2115.32,0.00,83156.337091,120896.149677,6903302,2119944,0.214882,10.640850,61040738,40521679,0,0,53184,0,1,1 +1774125459.316139,3.03,4,3992.50,53.64,1589.16,2100.12,0.00,3516089257876.365234,3516089220183.866211,21,0,0.158828,6.305527,61050026,40533185,0,0,53187,0,1,1 +1774125464.314387,2.53,4,3992.50,53.65,1588.58,2100.43,0.00,0.175061,0.000000,199,0,0.148891,5.461770,61058935,40543424,0,0,53189,0,1,1 +1774125469.314054,2.83,4,3992.50,53.88,1575.29,2109.61,0.00,1.831958,0.000195,238,2,0.215458,8.052511,61071387,40558491,0,0,53192,0,1,1 +1774125474.314341,2.32,4,3992.50,53.43,1592.31,2092.09,0.00,3518235139046.029785,3518235139047.988281,70,0,0.203817,7.392178,61083038,40572689,0,0,53194,0,1,1 +1774125479.314609,2.83,4,3992.50,53.24,1599.43,2084.51,0.00,83103.609222,120854.813447,6903302,2120252,0.163109,5.828168,61092812,40583668,0,0,53197,0,1,1 +1774125484.312807,2.98,4,3992.50,53.32,1596.09,2087.44,0.00,3519705708704.684570,0.799312,6902528,2119906,0.207494,7.418095,61104971,40597537,0,0,53199,0,1,1 +1774125489.313471,2.57,4,3992.50,53.39,1592.50,2090.47,0.00,3517969841586.686523,3517969803831.609375,238,2,0.215813,7.874918,61117162,40612681,0,0,53202,0,1,1 +1774125494.316662,2.17,4,3992.50,53.25,1597.63,2085.00,0.00,3516193132932.676758,3516193132934.682129,21,0,0.135754,4.823794,61125337,40621893,0,0,53204,0,1,1 +1774125499.317227,3.03,4,3992.50,53.75,1577.04,2104.31,0.00,0.000000,0.000000,21,0,0.154250,5.487988,61134571,40632239,0,0,53207,0,1,1 +1774125504.317566,2.42,4,3992.50,53.78,1575.09,2105.70,0.00,2.006700,0.000195,238,2,0.227959,8.604483,61147553,40648388,0,0,53209,0,1,1 +1774125509.317077,2.62,4,3992.50,53.47,1586.71,2093.62,0.00,83110.120671,120907.995287,6902528,2120173,0.154302,5.378262,61156591,40658751,0,0,53212,0,1,1 +1774125514.317230,2.48,4,3992.50,53.44,1587.75,2092.23,0.00,3518329338946.780273,3518329301154.258301,237,378,0.159547,5.707669,61166166,40669438,0,0,53214,0,1,1 +1774125519.313385,2.94,4,3992.50,54.03,1564.20,2115.31,0.00,3521145511332.230469,3521145511333.566895,199,0,0.225827,8.319502,61179210,40685001,0,0,53217,0,1,1 +1774125524.315976,2.52,4,3992.50,53.77,1573.73,2105.33,0.00,3516614293794.999023,0.000000,21,0,0.182453,6.310747,61189640,40697357,0,0,53219,0,1,1 +1774125529.314762,2.58,4,3992.50,53.64,1578.64,2100.13,0.00,1.538753,0.028327,237,378,0.139564,4.951903,61198166,40706707,0,0,53222,0,1,1 +1774125534.317008,2.88,4,3992.50,53.41,1586.87,2091.00,0.00,0.000000,0.000000,237,378,0.175705,6.257039,61208630,40718492,0,0,53224,0,1,1 +1774125539.312902,2.37,4,3992.50,53.84,1569.90,2107.78,0.00,0.468842,3521328611244.745117,238,2,0.224567,8.388802,61221314,40734380,0,0,53227,0,1,1 +1774125544.313390,2.37,4,3992.50,53.40,1586.72,2090.77,0.00,3518093934383.639648,3518093934385.646484,21,0,0.131875,4.709988,61229241,40743396,0,0,53229,0,1,1 +1774125549.312801,2.93,4,3992.50,53.41,1586.26,2091.17,0.00,0.000000,0.000000,21,0,0.143158,5.187641,61237948,40753135,0,0,53232,0,1,1 +1774125554.312830,2.99,4,3992.50,53.69,1575.26,2102.12,0.00,83107.627687,120972.095544,6903302,2121207,0.174500,6.263484,61248147,40764932,0,0,53234,0,1,1 +1774125559.317345,1.15,4,3992.50,53.77,1582.17,2105.16,0.00,3515262671336.545410,3515262633504.513672,237,378,0.010812,0.342741,61248733,40765638,0,0,53237,0,1,1 +1774125564.316326,1.30,4,3992.50,53.35,1597.19,2088.58,0.00,83119.415241,120997.537531,6902533,2120897,0.001916,0.004115,61248812,40765719,0,0,53239,0,1,1 +1774125569.316855,0.65,4,3992.50,53.41,1594.79,2091.04,0.00,3518064527565.083496,3518064489700.207031,21,0,0.003012,0.002288,61248865,40765776,0,0,53242,0,1,1 +1774125574.317421,0.70,4,3992.50,53.41,1594.79,2091.04,0.00,0.048041,0.000000,70,0,0.000689,0.001919,61248894,40765814,0,0,53244,0,1,1 +1774125579.315838,0.90,4,3992.50,53.50,1591.13,2094.71,0.00,1.490804,0.028329,237,378,0.001590,0.001624,61248923,40765838,0,0,53247,0,1,1 +1774125584.312815,11.34,4,3992.50,59.31,1367.09,2322.16,0.00,3520565733066.289062,3520565733067.800293,21,0,0.084515,0.002887,61249155,40765952,0,0,53249,0,1,1 +1774125589.312819,3.17,4,3992.50,59.37,1364.96,2324.47,0.00,83119.875828,120981.666567,6902645,2121159,3.576213,0.093822,61255963,40771350,0,0,53252,0,1,1 +1774125594.312804,0.60,4,3992.50,59.51,1359.39,2330.08,0.00,3518447258187.861816,3518447220325.764160,199,0,5.914266,0.160767,61267134,40780488,0,0,53254,0,1,1 +1774125599.317264,0.60,4,3992.50,59.11,1375.23,2314.24,0.00,1.830203,0.000195,238,2,5.123760,0.163248,61277213,40789619,0,0,53257,0,1,1 +1774125604.316784,0.81,4,3992.50,59.24,1370.10,2319.37,0.00,3518774928935.037109,3518774928937.044434,21,0,4.442155,0.127412,61285680,40796888,0,0,53259,0,1,1 +1774125609.317443,0.55,4,3992.50,59.18,1372.27,2317.20,0.00,0.174977,0.000000,199,0,6.369103,0.161424,61297441,40806103,0,0,53262,0,1,1 +1774125614.312818,0.61,4,3992.50,59.25,1369.77,2319.70,0.00,3521694635553.126465,0.000000,21,0,5.196109,0.147316,61307456,40814409,0,0,53264,0,1,1 +1774125619.317123,0.86,4,3992.50,59.89,1339.46,2344.79,0.00,0.174849,0.000000,199,0,5.955828,0.154279,61318612,40823222,0,0,53267,0,1,1 +1774125624.316781,0.55,4,3992.50,58.54,1392.38,2291.91,0.00,0.000000,0.000000,199,0,3.741793,0.119529,61325752,40830035,0,0,53269,0,1,1 +1774125629.314507,0.75,4,3992.50,53.00,1609.05,2075.23,0.00,0.000000,0.000000,199,0,1.240301,0.043645,61328174,40832514,0,0,53272,0,1,1 +1774125634.317342,0.60,4,3992.50,53.01,1608.81,2075.48,0.00,83072.664556,120913.450894,6902654,2121368,0.181260,0.013751,61328578,40833200,0,0,53274,0,1,1 +1774125639.314299,0.65,4,3992.50,53.07,1606.62,2077.65,0.00,3520579757645.096680,3520579719759.798340,199,0,0.003114,0.002985,61328653,40833281,0,0,53277,0,1,1 +1774125644.317309,0.90,4,3992.50,52.92,1612.53,2071.74,0.00,83069.751988,120909.254747,6902654,2121457,0.002769,0.004140,61328711,40833347,0,0,53279,0,1,1 +1774125649.317407,0.95,4,3992.50,53.18,1599.42,2082.23,0.00,3518368184042.541504,3518368146180.999023,199,0,0.002056,0.003098,61328769,40833422,0,0,53282,0,1,1 +1774125654.312816,1.01,4,3992.50,53.61,1582.68,2098.89,0.00,83200.268209,121093.414329,6903428,2121976,0.078659,2.681621,61333253,40838541,0,0,53284,0,1,1 +1774125659.317030,2.88,4,3992.50,53.53,1585.34,2095.97,0.00,3515474825662.348145,3515474787835.995605,70,0,0.244360,9.085638,61347307,40855608,0,0,53287,0,1,1 +1774125664.317235,2.78,4,3992.50,53.47,1587.39,2093.31,0.00,83116.471157,120982.260730,6902654,2121681,0.259807,9.688963,61362231,40873648,0,0,53289,0,1,1 +1774125669.314876,2.68,4,3992.50,53.47,1586.61,2093.48,0.00,3520098170679.557617,3520098132794.332520,70,0,0.265609,9.665854,61377383,40891720,0,0,53292,0,1,1 +1774125674.312834,2.73,4,3992.50,53.29,1593.12,2086.41,0.00,0.000000,0.000000,70,0,0.226806,8.323579,61390340,40907521,0,0,53294,0,1,1 +1774125679.316761,2.11,4,3992.50,53.03,1604.28,2076.11,0.00,3515675456668.599609,0.000000,21,0,0.053237,1.830553,61393535,40911027,0,0,53297,0,1,1 +1774125684.316605,0.75,4,3992.50,53.19,1598.02,2082.33,0.00,0.048048,0.000000,70,0,0.001957,0.004010,61393610,40911112,0,0,53299,0,1,1 +1774125689.316402,0.75,4,3992.50,53.20,1597.63,2082.75,0.00,3518580110384.606934,0.000000,21,0,0.001147,0.002109,61393647,40911162,0,0,53302,0,1,1 +1774125694.317376,0.55,4,3992.50,53.20,1597.40,2082.98,0.00,83103.764712,120998.920896,6902654,2122059,0.000691,0.001457,61393678,40911200,0,0,53304,0,1,1 +1774125699.317422,0.50,4,3992.50,53.20,1597.40,2082.98,0.00,3518404346197.375977,3518404308295.148926,70,0,0.000582,0.001330,61393701,40911230,0,0,53307,0,1,1 +1774125704.317119,0.50,4,3992.50,53.20,1597.41,2082.98,0.00,1.958908,0.000195,238,2,0.000589,0.001312,61393724,40911258,0,0,53309,0,1,1 +1774125709.312916,0.90,4,3992.50,53.20,1596.97,2082.93,0.00,3521397439946.682129,3521397439948.515625,199,0,0.000664,0.001725,61393751,40911294,0,0,53312,0,1,1 +1774125714.317188,0.50,4,3992.50,53.20,1597.02,2082.93,0.00,0.000000,0.000000,199,0,0.000599,0.001324,61393775,40911323,0,0,53314,0,1,1 +1774125719.312858,0.50,4,3992.50,53.17,1598.10,2081.80,0.00,0.000000,0.000000,199,0,0.000738,0.001562,61393801,40911358,0,0,53317,0,1,1 +1774125724.312914,0.55,4,3992.50,53.17,1598.14,2081.80,0.00,0.000000,0.000000,199,0,0.000588,0.001340,61393824,40911388,0,0,53319,0,1,1 +1774125729.312838,0.55,4,3992.50,53.18,1597.91,2082.03,0.00,3518490156530.296875,0.000000,21,0,0.000693,0.001720,61393855,40911425,0,0,53322,0,1,1 +1774125734.317134,0.55,4,3992.50,53.18,1597.91,2082.03,0.00,2.005113,0.000195,238,2,0.000619,0.001675,61393880,40911458,0,0,53324,0,1,1 +1774125739.317382,1.00,4,3992.50,53.59,1592.22,2097.98,0.00,3518263049936.191406,0.028124,237,378,0.000546,0.001335,61393900,40911488,0,0,53327,0,1,1 +1774125744.315742,0.55,4,3992.50,53.58,1591.15,2097.94,0.00,3519591293425.597656,3519591293427.060547,70,0,0.000606,0.001358,61393925,40911519,0,0,53329,0,1,1 +1774125749.312831,1.00,4,3992.50,53.51,1594.62,2095.20,0.00,83168.312723,121093.295907,6902654,2122223,0.002659,0.003193,61393990,40911590,0,0,53332,0,1,1 +1774125754.317008,0.80,4,3992.50,53.52,1594.41,2095.41,0.00,4.105848,0.091720,6903428,2122692,0.002007,0.003179,61394036,40911641,0,0,53334,0,1,1 +1774125759.318031,7.34,4,3992.50,60.25,1327.06,2359.09,0.00,3517717231964.601562,3517717194072.007812,237,378,0.027872,0.002671,61394167,40911709,0,0,53337,0,1,1 +1774125764.312897,10.94,4,3992.50,60.49,1325.83,2368.50,0.00,0.468939,3522053495624.482422,238,2,4.769240,0.111036,61403298,40918091,0,0,53339,0,1,1 +1774125769.316875,2.84,4,3992.50,61.01,1298.89,2388.65,0.00,0.000000,0.000000,238,2,7.689389,0.204996,61417686,40930027,0,0,53342,0,1,1 +1774125774.313896,2.49,4,3992.50,60.64,1313.29,2374.30,0.00,3520534589191.557129,0.028142,237,378,8.880748,0.237010,61434259,40943644,0,0,53344,0,1,1 +1774125779.313004,2.84,4,3992.50,60.71,1310.97,2376.77,0.00,0.000000,0.000000,237,378,8.943609,0.250265,61451387,40957829,0,0,53347,0,1,1 +1774125784.312887,2.58,4,3992.50,60.66,1312.69,2375.00,0.00,0.468468,3518519313531.353027,238,2,5.303587,0.155704,61461535,40966918,0,0,53349,0,1,1 +1774125789.312813,2.79,4,3992.50,60.81,1306.92,2380.84,0.00,3518489267041.166992,3518489267042.999023,199,0,5.644882,0.156589,61472197,40976273,0,0,53352,0,1,1 +1774125794.316367,2.38,4,3992.50,60.65,1313.23,2374.67,0.00,83060.737202,120937.127116,6902654,2122499,8.433268,0.221884,61488149,40989029,0,0,53354,0,1,1 +1774125799.316179,2.59,4,3992.50,61.16,1293.75,2394.37,0.00,3518569122069.066406,3518569084164.464355,70,0,8.944914,0.231954,61504748,41002214,0,0,53357,0,1,1 +1774125804.312819,2.89,4,3992.50,60.43,1322.36,2365.83,0.00,0.000000,0.000000,70,0,6.747339,0.172825,61517322,41012121,0,0,53359,0,1,1 +1774125809.317377,2.99,4,3992.50,61.16,1294.23,2394.49,0.00,0.000000,0.000000,70,0,7.629435,0.194221,61531611,41023523,0,0,53362,0,1,1 +1774125814.313774,2.44,4,3992.50,60.72,1311.54,2377.34,0.00,3520974246172.036133,0.000000,21,0,7.053455,0.189370,61544878,41034310,0,0,53364,0,1,1 +1774125819.312767,2.69,4,3992.50,60.62,1316.09,2373.34,0.00,0.000000,0.000000,21,0,6.921569,0.185711,61557797,41045222,0,0,53367,0,1,1 +1774125824.313556,2.68,4,3992.50,60.39,1325.24,2364.56,0.00,0.000000,0.000000,21,0,8.501812,0.222204,61573678,41058114,0,0,53369,0,1,1 +1774125829.316347,3.40,4,3992.50,60.81,1309.31,2380.93,0.00,0.048020,0.000000,70,0,7.293800,0.210486,61587680,41070013,0,0,53372,0,1,1 +1774125834.317006,2.84,4,3992.50,60.71,1313.34,2376.92,0.00,0.000000,0.000000,70,0,5.897858,0.167113,61598743,41079925,0,0,53374,0,1,1 +1774125839.317415,2.99,4,3992.50,60.72,1312.82,2377.46,0.00,1.490210,0.028318,237,378,7.034440,0.188895,61611953,41091053,0,0,53377,0,1,1 +1774125844.312919,2.34,4,3992.50,60.57,1318.79,2371.46,0.00,83197.325090,121132.157993,6903428,2123032,8.421824,0.234729,61628127,41104230,0,0,53379,0,1,1 +1774125849.316804,2.28,4,3992.50,60.62,1316.95,2373.34,0.00,3515705205543.860840,3515705167674.077148,21,0,3.865618,0.118821,61635688,41111285,0,0,53382,0,1,1 +1774125854.316859,1.98,4,3992.50,60.84,1308.15,2382.10,0.00,0.174998,0.000000,199,0,3.762171,0.104791,61642868,41117882,0,0,53384,0,1,1 +1774125859.313701,2.64,4,3992.50,60.86,1307.43,2382.83,0.00,3520661403623.987305,0.000000,70,0,7.066550,0.179696,61656206,41128501,0,0,53387,0,1,1 +1774125864.316714,2.39,4,3992.50,60.53,1320.52,2369.74,0.00,0.000000,0.000000,70,0,6.924624,0.206315,61669609,41140077,0,0,53389,0,1,1 +1774125869.317486,2.18,4,3992.50,60.46,1322.98,2367.27,0.00,0.000000,0.000000,70,0,4.143689,0.119800,61677541,41147378,0,0,53392,0,1,1 +1774125874.312814,2.48,4,3992.50,60.56,1319.20,2371.04,0.00,0.127072,0.000000,199,0,5.015651,0.135420,61687022,41155633,0,0,53394,0,1,1 +1774125879.313609,2.19,4,3992.50,60.31,1328.77,2361.45,0.00,3517878165274.390625,0.000000,21,0,8.559748,0.227095,61703349,41168574,0,0,53397,0,1,1 +1774125884.312827,2.33,4,3992.50,60.32,1328.43,2361.81,0.00,1.538619,0.028325,237,378,4.926904,0.148053,61712877,41177238,0,0,53399,0,1,1 +1774125889.313816,3.15,4,3992.50,61.12,1297.56,2393.14,0.00,3517742005971.650391,3517742005973.111816,70,0,5.069022,0.142380,61722455,41185900,0,0,53402,0,1,1 +1774125894.313651,2.54,4,3992.50,60.75,1312.27,2378.45,0.00,0.000000,0.000000,70,0,8.338238,0.212633,61738115,41198287,0,0,53404,0,1,1 +1774125899.317118,2.54,4,3992.50,60.47,1323.05,2367.68,0.00,0.126865,0.000000,199,0,5.910274,0.186410,61749741,41208864,0,0,53407,0,1,1 +1774125904.313487,2.64,4,3992.50,60.60,1317.94,2372.78,0.00,1.364370,0.028341,237,378,4.400813,0.125746,61758132,41216554,0,0,53409,0,1,1 +1774125909.316782,2.63,4,3992.50,60.78,1311.00,2379.72,0.00,0.468148,3516119437098.476074,238,2,5.776740,0.154526,61769079,41225838,0,0,53412,0,1,1 +1774125914.314171,2.69,4,3992.50,60.50,1321.97,2368.71,0.00,83165.478285,121086.764710,6903428,2123297,8.656228,0.236749,61785630,41239227,0,0,53414,0,1,1 +1774125919.315133,2.89,4,3992.50,60.80,1320.23,2380.41,0.00,3517760163068.504883,3517760125176.322754,21,0,5.535322,0.159938,61796122,41248693,0,0,53417,0,1,1 +1774125924.313013,2.84,4,3992.50,60.97,1313.25,2386.92,0.00,0.048067,0.000000,70,0,6.188094,0.171062,61807735,41258853,0,0,53419,0,1,1 +1774125929.315538,2.53,4,3992.50,60.65,1325.66,2374.61,0.00,1.489580,0.028306,237,378,9.057138,0.238591,61824913,41272403,0,0,53422,0,1,1 +1774125934.317194,2.49,4,3992.50,60.46,1333.04,2367.11,0.00,3517272011933.776855,3517272011935.238770,70,0,5.898357,0.176490,61836263,41282582,0,0,53424,0,1,1 +1774125939.317666,3.04,4,3992.50,60.73,1322.39,2377.72,0.00,3518104790901.290039,0.000000,21,0,5.769456,0.161862,61847154,41292265,0,0,53427,0,1,1 +1774125944.312834,2.33,4,3992.50,60.91,1315.46,2384.66,0.00,2.008777,0.000196,238,2,8.176134,0.213441,61862507,41304612,0,0,53429,0,1,1 +1774125949.317330,2.94,4,3992.50,61.02,1311.07,2389.11,0.00,3515276172713.021484,3515276172714.851562,199,0,5.980274,0.176941,61874124,41314683,0,0,53432,0,1,1 +1774125954.317476,2.79,4,3992.50,60.79,1319.95,2380.21,0.00,3518334982252.830078,0.000000,70,0,5.112680,0.143489,61883767,41323308,0,0,53434,0,1,1 +1774125959.312800,2.64,4,3992.50,60.88,1316.70,2383.55,0.00,83197.700351,121136.943871,6902654,2123067,6.667527,0.177599,61896321,41333798,0,0,53437,0,1,1 +1774125964.313582,2.63,4,3992.50,60.65,1325.44,2374.69,0.00,3517886660930.278320,3517886623032.319336,199,0,8.127946,0.225816,61911943,41346550,0,0,53439,0,1,1 +1774125969.316921,2.99,4,3992.50,60.82,1318.86,2381.31,0.00,83068.409894,120942.940248,6903428,2123468,6.048799,0.169138,61923344,41356482,0,0,53442,0,1,1 +1774125974.313681,3.09,4,3992.50,60.54,1330.16,2370.09,0.00,3520718341409.745605,3520718303485.353516,199,0,6.623068,0.181257,61935739,41367136,0,0,53444,0,1,1 +1774125979.317316,2.79,4,3992.50,60.69,1321.67,2375.97,0.00,3515880972152.393066,0.000000,70,0,8.669670,0.232879,61952266,41380377,0,0,53447,0,1,1 +1774125984.316975,2.54,4,3992.50,60.50,1328.96,2368.64,0.00,3518677572563.076172,0.000000,21,0,5.203897,0.153921,61962269,41389342,0,0,53449,0,1,1 +1774125989.316967,2.69,4,3992.50,60.48,1329.57,2367.91,0.00,0.175000,0.000000,199,0,5.183363,0.142266,61972027,41397939,0,0,53452,0,1,1 +1774125994.313889,2.59,4,3992.50,60.42,1332.06,2365.45,0.00,1.364219,0.028338,237,378,8.394018,0.210574,61987754,41410157,0,0,53454,0,1,1 +1774125999.312813,2.79,4,3992.50,60.32,1335.75,2361.70,0.00,83136.291748,121049.771021,6902654,2123180,6.060632,0.182321,61999469,41420476,0,0,53457,0,1,1 +1774126004.317426,2.53,4,3992.50,60.45,1330.67,2366.80,0.00,3515194238859.806152,3515194200989.422363,237,378,4.699211,0.130382,62008371,41428423,0,0,53459,0,1,1 +1774126009.313245,3.04,4,3992.50,60.56,1328.62,2370.97,0.00,3521381882080.390625,3521381882081.727051,199,0,6.209124,0.165575,62020081,41438314,0,0,53462,0,1,1 +1774126014.317224,2.43,4,3992.50,60.29,1339.04,2360.48,0.00,83053.674752,120927.574896,6902654,2123228,8.640089,0.237528,62036570,41451714,0,0,53464,0,1,1 +1774126019.312827,2.44,4,3992.50,60.45,1332.56,2366.90,0.00,3521533988813.912598,3521533950875.175293,237,378,4.292430,0.129558,62044837,41459372,0,0,53467,0,1,1 +1774126024.312809,2.23,4,3992.50,60.44,1333.20,2366.29,0.00,83122.797983,121024.255110,6903428,2123646,4.319363,0.120004,62053011,41466733,0,0,53469,0,1,1 +1774126029.313514,2.99,4,3992.50,60.32,1337.66,2361.83,0.00,3517941473840.259766,3517941435943.776367,238,2,7.642442,0.194065,62067413,41478103,0,0,53472,0,1,1 +1774126034.312806,3.04,4,3992.50,60.43,1333.59,2365.92,0.00,83133.807184,121041.009300,6903428,2123668,7.050308,0.201900,62080898,41489559,0,0,53474,0,1,1 +1774126039.312832,3.14,4,3992.50,60.73,1321.88,2377.77,0.00,3518418931311.172363,3518418893411.537109,21,0,5.706705,0.159309,62091639,41499006,0,0,53477,0,1,1 +1774126044.313120,2.94,4,3992.50,60.57,1328.00,2371.57,0.00,0.048044,0.000000,70,0,6.890728,0.185107,62104578,41509917,0,0,53479,0,1,1 +1774126049.312811,2.69,4,3992.50,60.60,1326.85,2372.70,0.00,1.958910,0.000195,238,2,8.335982,0.233711,62120573,41523118,0,0,53482,0,1,1 +1774126054.317228,4.82,4,3992.50,60.53,1329.62,2369.88,0.00,3515332047885.902344,3515332047887.859375,70,0,5.185994,0.153168,62130592,41532074,0,0,53484,0,1,1 +1774126059.312797,3.35,4,3992.50,60.53,1329.55,2370.00,0.00,83197.725875,121131.447559,6903428,2123918,5.782767,0.163680,62141614,41541673,0,0,53487,0,1,1 +1774126064.312819,3.20,4,3992.50,60.37,1335.86,2363.79,0.00,3518421752367.145020,3518421714467.251465,21,0,8.824837,0.234106,62158452,41554843,0,0,53489,0,1,1 +1774126069.317132,3.75,4,3992.50,60.89,1323.00,2383.86,0.00,0.174849,0.000000,199,0,5.249534,0.164196,62168721,41564261,0,0,53492,0,1,1 +1774126074.316319,4.93,4,3992.50,61.32,1298.70,2400.84,0.00,3519008888768.248047,0.000000,21,0,6.167685,0.164702,62180443,41574152,0,0,53494,0,1,1 +1774126079.317021,3.86,4,3992.50,61.18,1302.34,2395.21,0.00,2.006554,0.000195,238,2,9.010237,0.249629,62197587,41588703,0,0,53497,0,1,1 +1774126084.317159,3.81,4,3992.50,61.02,1310.37,2389.15,0.00,83115.643207,121021.191812,6902655,2124015,8.901078,0.258610,62214941,41603342,0,0,53499,0,1,1 +1774126089.316962,3.30,4,3992.50,60.91,1314.85,2384.68,0.00,3518575187616.470703,3518575149710.396484,21,0,7.222854,0.206524,62228777,41615584,0,0,53502,0,1,1 +1774126094.315537,2.79,4,3992.50,60.97,1312.42,2387.11,0.00,83143.640406,121059.121684,6902655,2124164,8.319707,0.234527,62244618,41629378,0,0,53504,0,1,1 +1774126099.314482,4.43,4,3992.50,61.06,1309.88,2390.55,0.00,3519180000029.012207,3519179962114.328125,238,2,8.856516,0.246290,62261636,41643208,0,0,53507,0,1,1 +1774126104.316221,3.30,4,3992.50,61.02,1311.60,2389.03,0.00,3517213964072.594727,0.028115,237,378,6.177769,0.192875,62273846,41654475,0,0,53509,0,1,1 +1774126109.312798,2.95,4,3992.50,61.43,1295.09,2405.28,0.00,83175.347667,121107.809934,6902655,2124490,6.664983,0.191695,62286761,41666166,0,0,53512,0,1,1 +1774126114.313441,3.66,4,3992.50,61.17,1305.23,2395.11,0.00,3517984658055.671875,3517984620155.563965,21,0,9.811108,0.260363,62305484,41681251,0,0,53514,0,1,1 +1774126119.313667,3.61,4,3992.50,60.75,1321.82,2378.50,0.00,0.174992,0.000000,199,0,8.807305,0.251827,62322495,41695690,0,0,53517,0,1,1 +1774126124.317025,2.64,4,3992.50,60.49,1332.11,2368.22,0.00,83068.078010,120943.862774,6903429,2125062,6.702683,0.200491,62335330,41707605,0,0,53519,0,1,1 +1774126129.317412,3.55,4,3992.50,61.19,1303.41,2395.90,0.00,3518165229376.070312,0.128701,6902655,2124793,6.583295,0.179873,62347794,41718183,0,0,53522,0,1,1 +1774126134.313207,3.05,4,3992.50,60.86,1316.51,2382.85,0.00,3521398529666.241699,3521398491728.873535,199,0,8.438292,0.232689,62363920,41731229,0,0,53524,0,1,1 +1774126139.316696,3.97,4,3992.50,61.10,1306.98,2392.29,0.00,3515983927581.570801,0.000000,21,0,6.692460,0.178932,62376757,41741692,0,0,53527,0,1,1 +1774126144.317619,4.01,4,3992.50,61.36,1297.12,2402.23,0.00,0.000000,0.000000,21,0,7.000063,0.202494,62390147,41753736,0,0,53529,0,1,1 +1774126149.312832,3.66,4,3992.50,60.91,1314.65,2384.68,0.00,0.000000,0.000000,21,0,10.588049,0.281871,62410306,41769983,0,0,53532,0,1,1 +1774126154.312840,3.51,4,3992.50,61.14,1305.67,2393.68,0.00,83119.938037,121025.347131,6902692,2125226,8.290579,0.253400,62426557,41784695,0,0,53534,0,1,1 +1774126159.316374,3.14,4,3992.50,61.40,1295.57,2403.79,0.00,3515951850587.885254,3515951812707.184570,238,2,7.748386,0.224119,62441425,41798126,0,0,53537,0,1,1 +1774126164.313409,2.79,4,3992.50,61.08,1307.68,2391.47,0.00,3520525174625.699219,3520525174627.659180,70,0,7.970832,0.225270,62456592,41811364,0,0,53539,0,1,1 +1774126169.317641,2.79,4,3992.50,60.73,1321.42,2377.72,0.00,1.489072,0.028296,237,378,7.615801,0.221472,62471308,41823756,0,0,53542,0,1,1 +1774126174.316278,2.85,4,3992.50,60.66,1324.06,2375.11,0.00,0.000000,0.000000,237,378,4.340241,0.125303,62479657,41831235,0,0,53544,0,1,1 +1774126179.312812,3.82,4,3992.50,61.42,1294.55,2404.62,0.00,0.468782,3520878366944.176270,238,2,6.472763,0.167624,62492008,41841329,0,0,53547,0,1,1 +1774126184.312800,3.41,4,3992.50,61.13,1305.91,2393.23,0.00,3518445042347.410156,3518445042349.242188,199,0,11.239921,0.292002,62513324,41858107,0,0,53549,0,1,1 +1774126189.317317,3.81,4,3992.50,61.39,1293.89,2403.50,0.00,3515262023150.727539,0.000000,21,0,6.225035,0.197704,62525605,41869482,0,0,53552,0,1,1 +1774126194.313461,2.85,4,3992.50,61.43,1292.04,2405.23,0.00,0.048084,0.000000,70,0,7.373672,0.210179,62539841,41882189,0,0,53554,0,1,1 +1774126199.316931,2.95,4,3992.50,61.40,1293.42,2403.84,0.00,0.000000,0.000000,70,0,9.237253,0.249820,62557477,41896931,0,0,53557,0,1,1 +1774126204.317384,3.05,4,3992.50,60.79,1317.34,2379.95,0.00,1.958612,0.000195,238,2,8.907970,0.258383,62574642,41911602,0,0,53559,0,1,1 +1774126209.316842,2.69,4,3992.50,60.85,1314.78,2382.48,0.00,3518819069016.810059,0.028128,237,378,5.030133,0.146943,62584297,41920263,0,0,53562,0,1,1 +1774126214.314992,4.48,4,3992.50,61.20,1301.06,2396.23,0.00,83153.423156,121071.383238,6903475,2126740,6.516347,0.168612,62596715,41930303,0,0,53564,0,1,1 +1774126219.317144,2.64,4,3992.50,60.81,1308.27,2380.71,0.00,3516923253483.668945,3516923215597.509277,70,0,10.144192,0.269781,62616039,41945670,0,0,53567,0,1,1 +1774126224.317524,2.49,4,3992.50,60.60,1316.38,2372.71,0.00,83117.816053,121017.560929,6903475,2126879,4.825961,0.148129,62625399,41954281,0,0,53569,0,1,1 +1774126229.317379,2.54,4,3992.50,60.53,1319.06,2369.89,0.00,3518539659605.775391,0.018458,6902701,2126580,4.604962,0.131458,62634180,41962163,0,0,53572,0,1,1 +1774126234.317041,2.69,4,3992.50,60.74,1310.82,2378.15,0.00,3518675297152.894531,3518675259243.617676,21,0,7.581787,0.194945,62648438,41973480,0,0,53574,0,1,1 +1774126239.313565,2.39,4,3992.50,60.66,1313.80,2375.15,0.00,0.000000,0.000000,21,0,7.221289,0.315925,62662482,41985359,0,0,53577,0,1,1 +1774126244.317746,2.28,4,3992.50,60.99,1301.15,2387.80,0.00,0.000000,0.000000,21,0,4.223665,4.572305,62678070,42001022,0,0,53579,0,1,1 +1774126249.316857,2.94,4,3992.50,61.37,1286.41,2402.96,0.00,83134.860501,121048.519316,6902701,2126777,3.399706,5.316613,62693044,42016673,0,0,53582,0,1,1 +1774126254.313109,2.95,4,3992.50,61.07,1298.45,2391.07,0.00,3521076558553.917969,3521076520618.386230,199,0,5.075207,5.479280,62711293,42034744,0,0,53584,0,1,1 +1774126259.312859,3.15,4,3992.50,61.06,1298.79,2390.80,0.00,1.831927,0.000195,238,2,4.356754,5.580170,62728593,42052469,0,0,53587,0,1,1 +1774126264.312972,2.69,4,3992.50,61.00,1301.03,2388.39,0.00,3518358021197.384766,3518358021199.216797,199,0,3.514682,6.383537,62745006,42070267,0,0,53589,0,1,1 +1774126269.317384,3.04,4,3992.50,60.99,1301.00,2388.08,0.00,83046.630508,120950.182790,6902701,2127074,4.669248,5.623724,62762749,42088200,0,0,53592,0,1,1 +1774126274.316379,65.40,4,3992.50,62.15,1253.76,2433.50,0.00,3519144205589.650391,3519144167645.204102,21,0,124.289714,134.153003,62786764,42113146,0,0,53594,0,1,1 +1774126279.317255,42.45,4,3992.50,59.55,1357.23,2331.52,0.00,0.174969,0.000000,199,0,133.451777,39.716878,62801761,42122588,0,0,53597,0,1,1 +1774126284.317650,24.38,4,3992.50,59.63,1354.89,2334.58,0.00,83113.364781,121222.662323,6902715,2128273,127.284310,0.062828,62814271,42127508,0,0,53599,0,1,1 +1774126289.320377,4.66,4,3992.50,58.01,1424.29,2271.16,0.00,20.184985,0.248595,6903677,2128759,19.626182,0.024945,62816449,42128716,0,0,53602,0,1,1 +1774126294.314622,12.91,4,3992.50,54.99,1542.64,2152.94,0.00,3522491290596.981445,3522491252460.858398,70,0,39.719845,3.241271,62821335,42131065,0,0,53604,0,1,1 +1774126299.312910,9.90,4,3992.50,53.71,1591.76,2102.77,0.00,1.959460,0.000195,238,2,0.016737,36.870450,62822464,42134907,0,0,53607,0,1,1 +1774126304.317628,0.80,4,3992.50,53.58,1596.93,2097.61,0.00,3515119678298.155273,3515119678300.160645,21,0,0.002274,0.006363,62822533,42135030,0,0,53609,0,1,1 +1774126309.317601,0.95,4,3992.50,53.53,1591.49,2095.64,0.00,83136.634761,121267.625297,6902903,2128914,0.001831,0.005099,62822589,42135129,0,0,53612,0,1,1 +1774126314.317487,0.70,4,3992.50,53.53,1591.54,2095.64,0.00,3518517649134.525879,3518517611002.868652,21,0,0.002289,0.006356,62822659,42135251,0,0,53614,0,1,1 +1774126319.314052,0.75,4,3992.50,53.54,1590.81,2096.37,0.00,0.000000,0.000000,21,0,0.002290,0.007015,62822729,42135378,0,0,53617,0,1,1 +1774126324.316759,0.65,4,3992.50,53.78,1581.50,2105.64,0.00,0.000000,0.000000,21,0,0.002296,0.006361,62822800,42135501,0,0,53619,0,1,1 +1774126329.317750,0.75,4,3992.50,53.78,1581.54,2105.64,0.00,1.538074,0.028315,237,378,0.001831,0.005098,62822856,42135600,0,0,53622,0,1,1 +1774126334.317405,0.70,4,3992.50,53.78,1581.55,2105.63,0.00,83144.492012,121281.458493,6903677,2129415,0.002390,0.006481,62822934,42135730,0,0,53624,0,1,1 +1774126339.317441,0.85,4,3992.50,53.92,1575.69,2111.28,0.00,3518412136574.553711,3518412098439.992188,238,2,0.002440,0.006552,62823016,42135865,0,0,53627,0,1,1 +1774126344.314246,0.65,4,3992.50,53.94,1575.22,2111.74,0.00,83187.331434,121350.690729,6902903,2129075,0.002446,0.006473,62823096,42135996,0,0,53629,0,1,1 +1774126349.312909,0.70,4,3992.50,53.94,1575.23,2111.74,0.00,3519378706661.076172,3519378668513.902344,21,0,0.002139,0.005667,62823159,42136107,0,0,53632,0,1,1 +1774126354.313525,0.70,4,3992.50,53.90,1576.53,2110.43,0.00,0.000000,0.000000,21,0,0.002588,0.006910,62823235,42136240,0,0,53634,0,1,1 +1774126359.317304,0.65,4,3992.50,53.66,1585.92,2101.04,0.00,0.174868,0.000000,199,0,0.002287,0.006361,62823305,42136363,0,0,53637,0,1,1 +1774126364.313476,0.90,4,3992.50,53.50,1592.19,2094.79,0.00,3521132869898.154297,0.000000,21,0,0.003662,0.007054,62823397,42136500,0,0,53639,0,1,1 +1774126369.313638,45.93,4,3992.50,59.51,1357.02,2329.90,0.00,0.174994,0.000000,199,0,89.127088,0.039252,62832843,42139121,0,0,53642,0,1,1 +1774126374.315472,28.59,4,3992.50,59.57,1355.45,2332.42,0.00,1.362879,0.028310,237,378,120.123403,0.029168,62845237,42141291,0,0,53644,0,1,1 +1774126379.312907,29.10,4,3992.50,59.55,1353.80,2331.61,0.00,0.000000,0.000000,237,378,120.229421,0.046958,62857520,42144639,0,0,53647,0,1,1 +1774126384.313482,28.54,4,3992.50,59.45,1357.72,2327.66,0.00,83129.190148,121259.504971,6903677,2129684,120.152579,0.058094,62869761,42148869,0,0,53649,0,1,1 +1774126389.317788,28.27,4,3992.50,59.88,1340.97,2344.46,0.00,3515409537634.416016,3515409499534.037109,21,0,120.060079,0.047341,62881920,42152425,0,0,53652,0,1,1 +1774126394.312824,28.16,4,3992.50,59.56,1353.52,2331.90,0.00,83218.809703,121394.041179,6902903,2129333,120.059039,0.030688,62894194,42154706,0,0,53654,0,1,1 +1774126399.312927,28.30,4,3992.50,59.52,1355.00,2330.39,0.00,3518364494741.578613,3518364456604.862305,199,0,118.387543,0.026900,62906307,42156489,0,0,53657,0,1,1 +1774126404.315201,29.11,4,3992.50,59.86,1343.69,2343.50,0.00,3516837823487.761719,0.000000,21,0,120.113471,0.045078,62918651,42159737,0,0,53659,0,1,1 +1774126409.313793,12.42,4,3992.50,55.21,1525.88,2161.42,0.00,2.007401,0.000195,238,2,97.160137,0.033166,62928468,42162187,0,0,53662,0,1,1 +1774126414.314384,1.60,4,3992.50,55.02,1533.14,2154.12,0.00,3518021172622.723145,3518021172624.554688,199,0,0.009448,0.009032,62928653,42162368,0,0,53664,0,1,1 +1774126419.314842,16.85,4,3992.50,54.51,1553.04,2134.20,0.00,1.831668,0.000195,238,2,24.158574,0.115889,62936773,42168479,0,0,53667,0,1,1 +1774126424.312932,11.27,4,3992.50,53.72,1584.03,2103.21,0.00,3519781454952.435059,3519781454954.268066,199,0,16.094298,0.065947,62941646,42172066,0,0,53669,0,1,1 +1774126429.315094,5.02,4,3992.50,54.32,1564.92,2126.68,0.00,3516916210850.006836,0.000000,21,0,0.024181,13.028579,62942774,42173900,0,0,53672,0,1,1 +1774126434.317634,29.00,4,3992.50,54.26,1560.00,2124.21,0.00,2.005817,0.000195,238,2,0.047055,119.711730,62946232,42186333,0,0,53674,0,1,1 +1774126439.316827,18.18,4,3992.50,54.68,1540.02,2140.99,0.00,3519004732148.103516,0.028130,237,378,0.011775,72.316085,62947037,42193967,0,0,53677,0,1,1 +1774126444.317407,1.10,4,3992.50,53.61,1581.94,2099.11,0.00,83129.282376,121443.548690,6903695,2132553,0.006421,0.009329,62947172,42194150,0,0,53679,0,1,1 +1774126449.317752,14.62,4,3992.50,53.64,1583.94,2099.97,0.00,3518194601812.421387,3518194563497.864746,21,0,40.068785,0.037188,62951811,42196343,0,0,53682,0,1,1 +1774126454.312953,0.75,4,3992.50,53.65,1583.23,2100.68,0.00,0.175168,0.000000,199,0,0.003920,0.007774,62951914,42196487,0,0,53684,0,1,1 +1774126459.316535,0.95,4,3992.50,53.92,1575.23,2110.93,0.00,1.362403,0.028300,237,378,0.003971,0.007260,62952022,42196637,0,0,53687,0,1,1 +1774126464.316890,0.60,4,3992.50,53.85,1575.55,2108.40,0.00,83148.955928,121449.314496,6903809,2132801,0.003420,0.005855,62952108,42196753,0,0,53689,0,1,1 +1774126469.315838,0.70,4,3992.50,53.40,1593.13,2090.83,0.00,3519177049593.717285,3519177011283.926270,199,0,0.003650,0.006487,62952201,42196881,0,0,53692,0,1,1 +1774126474.317198,0.80,4,3992.50,53.74,1580.00,2103.96,0.00,3517480736928.032227,0.000000,21,0,0.003216,0.005239,62952282,42196986,0,0,53694,0,1,1 +1774126479.314011,0.75,4,3992.50,53.74,1580.02,2103.95,0.00,2.008116,0.000195,238,2,0.003880,0.007137,62952382,42197127,0,0,53697,0,1,1 +1774126484.313635,0.60,4,3992.50,53.74,1580.04,2103.93,0.00,3518701670276.289062,3518701670278.295898,21,0,0.003447,0.005926,62952470,42197248,0,0,53699,0,1,1 +1774126489.317216,0.85,4,3992.50,53.78,1575.61,2105.74,0.00,2.005400,0.000195,238,2,0.003942,0.007132,62952574,42197390,0,0,53702,0,1,1 +1774126494.317387,0.65,4,3992.50,53.78,1575.37,2105.69,0.00,3518316496145.921875,3518316496147.880371,70,0,0.003973,0.007158,62952681,42197533,0,0,53704,0,1,1 +1774126499.317772,0.60,4,3992.50,53.78,1575.38,2105.68,0.00,83149.939275,121471.567010,6903809,2133257,0.003878,0.007107,62952781,42197672,0,0,53707,0,1,1 +1774126504.317270,0.70,4,3992.50,53.80,1574.70,2106.37,0.00,0.000000,0.046489,6903809,2133280,0.003866,0.007098,62952880,42197810,0,0,53709,0,1,1 +1774126509.312845,0.45,4,3992.50,53.82,1573.71,2107.33,0.00,3521552873865.889648,3521552835505.369141,238,2,0.003411,0.005870,62952965,42197927,0,0,53712,0,1,1 +1774126514.312828,0.75,4,3992.50,53.82,1573.74,2107.32,0.00,3518449416493.463379,3518449416495.295410,199,0,0.003878,0.007122,62953065,42198067,0,0,53714,0,1,1 +1774126519.312934,0.90,4,3992.50,53.83,1574.53,2107.68,0.00,83150.346977,121478.494141,6903035,2133019,0.003878,0.007764,62953165,42198211,0,0,53717,0,1,1 +1774126524.312799,7.18,4,3992.50,54.15,1560.72,2119.97,0.00,3518532274585.938965,3518532236254.612793,237,378,0.020518,25.847059,62954442,42201179,0,0,53719,0,1,1 +1774126529.316944,4.66,4,3992.50,53.59,1581.35,2098.34,0.00,3515522519394.373535,3515522519395.834473,70,0,0.006361,14.213658,62954829,42202771,0,0,53722,0,1,1 +1774126534.312923,0.50,4,3992.50,53.59,1581.36,2098.34,0.00,0.000000,0.000000,70,0,0.002751,0.005771,62954887,42202873,0,0,53724,0,1,1 +1774126539.314316,0.75,4,3992.50,53.94,1567.62,2112.06,0.00,1.489917,0.028312,237,378,0.001831,0.005097,62954943,42202972,0,0,53727,0,1,1 +1774126544.317092,0.60,4,3992.50,53.76,1575.02,2104.66,0.00,3516484309627.997559,3516484309629.506836,21,0,0.002288,0.006353,62955013,42203094,0,0,53729,0,1,1 +1774126549.316492,0.90,4,3992.50,54.04,1564.71,2115.73,0.00,0.000000,0.000000,21,0,0.002289,0.006367,62955083,42203217,0,0,53732,0,1,1 +1774126554.317236,0.55,4,3992.50,53.85,1571.96,2108.33,0.00,1.538150,0.028316,237,378,0.002288,0.006355,62955153,42203339,0,0,53734,0,1,1 +1774126559.316393,0.80,4,3992.50,53.85,1571.96,2108.32,0.00,3519030364675.402832,3519030364676.738281,199,0,0.002060,0.005752,62955216,42203451,0,0,53737,0,1,1 +1774126564.315178,0.55,4,3992.50,53.87,1571.24,2109.05,0.00,3519292435657.106445,0.000000,21,0,0.002098,0.005799,62955282,42203566,0,0,53739,0,1,1 +1774126569.313967,0.70,4,3992.50,53.82,1573.11,2107.14,0.00,0.000000,0.000000,21,0,0.002404,0.006494,62955361,42203698,0,0,53742,0,1,1 +1774126574.312905,1.00,4,3992.50,53.82,1573.29,2106.99,0.00,2.007262,0.000195,238,2,0.002401,0.006458,62955438,42203828,0,0,53744,0,1,1 +1774126579.317472,0.90,4,3992.50,53.93,1578.01,2111.38,0.00,83074.386974,121410.523630,6903035,2133514,0.002287,0.006348,62955508,42203950,0,0,53747,0,1,1 +1774126584.317179,0.55,4,3992.50,53.88,1579.88,2109.52,0.00,3518643226740.826172,3518643188367.921875,237,378,0.001831,0.005746,62955564,42204053,0,0,53749,0,1,1 +1774126589.317570,0.95,4,3992.50,53.85,1581.04,2108.33,0.00,3518162370740.891602,3518162370742.401855,21,0,0.003684,0.007068,62955658,42204192,0,0,53752,0,1,1 +1774126594.317310,43.20,4,3992.50,59.80,1355.77,2341.34,0.00,0.175009,0.000000,199,0,94.143887,0.036803,62965699,42206577,0,0,53754,0,1,1 +1774126599.312997,27.88,4,3992.50,60.02,1348.31,2349.83,0.00,83227.998988,121626.481326,6903809,2134053,118.264709,0.041000,62977755,42209621,0,0,53757,0,1,1 +1774126604.317719,27.90,4,3992.50,59.71,1360.49,2337.66,0.00,3515117700957.489746,3515117662626.494141,238,2,120.056105,0.037882,62990127,42212517,0,0,53759,0,1,1 +1774126609.316891,26.92,4,3992.50,59.82,1355.91,2342.25,0.00,83168.148592,121541.817861,6903809,2134082,118.182383,0.042656,63002158,42215618,0,0,53762,0,1,1 +1774126614.316374,30.41,4,3992.50,59.70,1350.83,2337.54,0.00,3518800781121.869141,3518800742750.588379,238,2,120.179584,0.020411,63014604,42217133,0,0,53764,0,1,1 +1774126619.314378,28.18,4,3992.50,59.84,1345.66,2342.78,0.00,3519842094015.703613,3519842094017.711426,21,0,118.210079,0.037753,63026677,42219900,0,0,53767,0,1,1 +1774126624.317601,29.67,4,3992.50,59.57,1356.22,2332.22,0.00,0.174887,0.000000,199,0,120.087040,0.033107,63038890,42222294,0,0,53769,0,1,1 +1774126629.313471,29.30,4,3992.50,59.85,1345.30,2343.15,0.00,1.833350,0.000195,238,2,118.860182,0.039363,63050980,42225340,0,0,53772,0,1,1 +1774126634.317566,13.68,4,3992.50,55.88,1500.73,2187.74,0.00,3515557850285.463379,3515557850287.293945,199,0,97.455171,0.032097,63061006,42227701,0,0,53774,0,1,1 +1774126639.312827,2.01,4,3992.50,54.70,1546.68,2141.75,0.00,3521775750162.682617,0.000000,21,0,0.010466,0.009032,63061210,42227900,0,0,53777,0,1,1 +1774126644.317490,14.21,4,3992.50,54.62,1549.82,2138.52,0.00,83074.953988,121409.191835,6903049,2134383,18.101717,0.086801,63067104,42232333,0,0,53779,0,1,1 +1774126649.312916,14.78,4,3992.50,53.80,1581.97,2106.35,0.00,3521658450811.917969,3521658412404.791016,238,2,22.154755,0.100511,63074299,42237778,0,0,53782,0,1,1 +1774126654.316861,1.20,4,3992.50,53.72,1585.07,2103.24,0.00,83088.970912,121426.813641,6903823,2135179,0.004408,0.008110,63074406,42237930,0,0,53784,0,1,1 +1774126659.314272,7.74,4,3992.50,53.95,1575.84,2112.08,0.00,3520259861366.822266,3520259822980.859863,21,0,0.024287,29.267872,63075971,42241375,0,0,53787,0,1,1 +1774126664.315280,31.26,4,3992.50,54.19,1557.96,2121.71,0.00,0.048037,0.000000,70,0,0.036751,118.746529,63078690,42253783,0,0,53789,0,1,1 +1774126669.315984,16.06,4,3992.50,53.35,1589.98,2088.62,0.00,83144.798880,121707.998504,6903825,2136761,0.010588,57.074257,63079441,42259795,0,0,53792,0,1,1 +1774126674.314569,7.89,4,3992.50,58.46,1391.56,2288.98,0.00,11.822974,3.205301,6903192,2136446,4.218968,0.018207,63080326,42260535,0,0,53794,0,1,1 +1774126679.316147,7.53,4,3992.50,54.63,1541.63,2138.93,0.00,0.000000,0.266908,6903192,2136770,35.844370,0.023200,63084111,42261830,0,0,53797,0,1,1 +1774126684.316985,0.60,4,3992.50,53.89,1570.61,2109.98,0.00,3517847393074.292480,3517847354520.527344,21,0,0.003725,0.006544,63084212,42261968,0,0,53799,0,1,1 +1774126689.317270,0.65,4,3992.50,53.69,1578.35,2102.24,0.00,83163.615539,121721.693144,6903192,2136836,0.003865,0.007132,63084311,42262109,0,0,53802,0,1,1 +1774126694.316926,0.70,4,3992.50,53.71,1577.67,2102.93,0.00,3518679312189.654297,3518679273626.545898,199,0,0.003866,0.007123,63084410,42262249,0,0,53804,0,1,1 +1774126699.317209,1.00,4,3992.50,54.29,1555.98,2125.76,0.00,3518238392527.815918,0.000000,21,0,0.003096,0.006749,63084496,42262381,0,0,53807,0,1,1 +1774126704.317396,0.95,4,3992.50,54.44,1549.90,2131.32,0.00,0.000000,0.000000,21,0,0.004555,0.006493,63084606,42262512,0,0,53809,0,1,1 +1774126709.316893,0.55,4,3992.50,54.40,1551.21,2130.00,0.00,0.175018,0.000000,199,0,0.003891,0.007133,63084707,42262653,0,0,53812,0,1,1 +1774126714.316188,0.80,4,3992.50,54.41,1550.98,2130.23,0.00,0.000000,0.000000,199,0,0.006283,0.009864,63084835,42262814,0,0,53814,0,1,1 +1774126719.312849,0.70,4,3992.50,54.41,1551.02,2130.18,0.00,83223.768745,121810.236857,6903192,2137022,0.003943,0.007336,63084939,42262959,0,0,53817,0,1,1 +1774126724.313306,0.55,4,3992.50,54.41,1551.05,2130.16,0.00,3518115335666.723633,3518115297109.678711,70,0,0.003526,0.005907,63085032,42263079,0,0,53819,0,1,1 +1774126729.312907,0.90,4,3992.50,54.41,1563.35,2130.38,0.00,1.958946,0.000195,238,2,0.003891,0.007133,63085133,42263220,0,0,53822,0,1,1 +1774126734.312879,0.70,4,3992.50,54.41,1562.80,2130.10,0.00,3518456607539.853027,3518456607541.859863,21,0,0.003886,0.007130,63085234,42263361,0,0,53824,0,1,1 +1774126739.314285,0.60,4,3992.50,54.41,1562.81,2130.09,0.00,0.048033,0.000000,70,0,0.003432,0.005863,63085321,42263478,0,0,53827,0,1,1 +1774126744.313612,0.55,4,3992.50,54.40,1562.82,2130.07,0.00,83183.616304,121745.512501,6903966,2137610,0.003408,0.005856,63085406,42263594,0,0,53829,0,1,1 +1774126749.315465,0.60,4,3992.50,54.40,1562.84,2130.06,0.00,0.000000,0.032410,6903966,2137651,0.003902,0.007161,63085508,42263737,0,0,53832,0,1,1 +1774126754.312857,11.29,4,3992.50,54.09,1573.02,2117.55,0.00,3520273007931.011230,3520272969352.192871,238,2,0.029243,40.090147,63087391,42268281,0,0,53834,0,1,1 +1774126759.314610,1.00,4,3992.50,54.43,1560.27,2131.01,0.00,3517204205816.307617,3517204205818.313965,21,0,0.002326,0.006395,63087464,42268406,0,0,53837,0,1,1 +1774126764.316841,0.65,4,3992.50,54.19,1569.03,2121.80,0.00,83131.273235,121709.068839,6903192,2137629,0.002288,0.006353,63087534,42268528,0,0,53839,0,1,1 +1774126769.317590,0.70,4,3992.50,54.49,1557.58,2133.26,0.00,3517909680591.352051,3517909642002.130371,21,0,0.002288,0.006365,63087604,42268651,0,0,53842,0,1,1 +1774126774.312884,0.50,4,3992.50,54.47,1558.02,2132.81,0.00,2.008727,0.000195,238,2,0.002291,0.006337,63087674,42268771,0,0,53844,0,1,1 +1774126779.316767,0.65,4,3992.50,54.47,1558.03,2132.80,0.00,3515706397999.372559,3515706398001.377930,21,0,0.001830,0.005120,63087730,42268872,0,0,53847,0,1,1 +1774126784.317101,0.70,4,3992.50,54.47,1558.03,2132.80,0.00,0.000000,0.000000,21,0,0.002297,0.007008,63087801,42268999,0,0,53849,0,1,1 +1774126789.316427,0.95,4,3992.50,54.48,1557.80,2133.03,0.00,0.048053,0.000000,70,0,0.002314,0.006398,63087873,42269124,0,0,53852,0,1,1 +1774126794.317551,0.70,4,3992.50,53.91,1580.10,2110.69,0.00,3517646536214.737793,0.000000,21,0,0.002339,0.006417,63087947,42269250,0,0,53854,0,1,1 +1774126799.312987,0.70,4,3992.50,53.75,1586.28,2104.47,0.00,0.000000,0.000000,21,0,0.002051,0.005323,63088018,42269365,0,0,53857,0,1,1 +1774126804.317681,1.15,4,3992.50,53.77,1585.69,2105.04,0.00,83090.382883,121655.355171,6903202,2137831,0.002287,0.006350,63088088,42269487,0,0,53859,0,1,1 +1774126809.317270,0.70,4,3992.50,53.79,1584.86,2105.87,0.00,3518726909767.256836,3518726871161.390137,237,378,0.001373,0.003832,63088130,42269562,0,0,53862,0,1,1 +1774126814.317097,1.50,4,3992.50,53.59,1592.41,2098.32,0.00,0.000000,0.000000,237,378,0.004597,0.008658,63088234,42269715,0,0,53864,0,1,1 +1774126819.317405,46.72,4,3992.50,60.21,1348.21,2357.20,0.00,0.000000,0.000000,237,378,103.753157,0.057366,63099443,42273740,0,0,53867,0,1,1 +1774126824.312815,30.89,4,3992.50,60.28,1345.33,2360.12,0.00,0.468887,3521669769990.731445,238,2,119.500507,0.083946,63112177,42280021,0,0,53869,0,1,1 +1774126829.312962,31.09,4,3992.50,59.97,1357.57,2347.87,0.00,3518333650952.352539,3518333650954.184570,199,0,119.594625,0.105686,63125098,42288098,0,0,53872,0,1,1 +1774126834.314268,30.51,4,3992.50,59.98,1357.07,2348.41,0.00,83150.627023,121738.078509,6903977,2138480,119.079908,0.110092,63138005,42296646,0,0,53874,0,1,1 +1774126839.316271,31.00,4,3992.50,59.91,1359.64,2345.79,0.00,3517028130384.235840,3517028091802.164551,199,0,119.841250,0.112206,63150955,42305124,0,0,53877,0,1,1 +1774126844.316584,31.22,4,3992.50,60.09,1352.60,2352.85,0.00,3518216859442.901367,0.000000,21,0,119.392553,0.111931,63163892,42313795,0,0,53879,0,1,1 +1774126849.317629,30.61,4,3992.50,60.04,1349.59,2350.75,0.00,0.174963,0.000000,199,0,118.974738,0.111962,63176780,42322358,0,0,53882,0,1,1 +1774126854.317231,31.02,4,3992.50,59.88,1355.70,2344.53,0.00,3518717429686.716309,0.000000,21,0,119.811727,0.113327,63189754,42331015,0,0,53884,0,1,1 +1774126859.317502,10.26,4,3992.50,54.63,1561.38,2138.90,0.00,1.538296,0.028319,237,378,85.740338,0.087837,63199063,42337567,0,0,53887,0,1,1 +1774126864.313957,1.81,4,3992.50,53.92,1589.13,2111.15,0.00,0.468789,3520933070879.340820,238,2,0.010921,0.010303,63199281,42337790,0,0,53889,0,1,1 +1774126869.312852,9.15,4,3992.50,53.75,1595.62,2104.63,0.00,3519215232057.794434,3519215232059.802246,21,0,10.073655,0.051942,63202716,42340365,0,0,53892,0,1,1 +1774126874.317601,18.76,4,3992.50,54.68,1559.27,2140.93,0.00,1.536919,0.028293,237,378,30.141545,0.126774,63212124,42347324,0,0,53894,0,1,1 +1774126879.313750,2.46,4,3992.50,54.29,1585.44,2125.46,0.00,83231.116990,121865.056563,6903214,2139405,0.015750,0.014267,63212453,42347636,0,0,53897,0,1,1 +1774126884.313411,0.85,4,3992.50,54.60,1571.59,2137.58,0.00,3518675719374.149902,3518675680768.814941,70,0,0.003420,0.005881,63212539,42347754,0,0,53899,0,1,1 +1774126889.312893,1.65,4,3992.50,54.06,1594.27,2116.64,0.00,1.958992,0.000195,238,2,0.003886,0.007141,63212640,42347896,0,0,53902,0,1,1 +1774126894.314314,1.60,4,3992.50,53.68,1609.14,2101.78,0.00,3517437573523.935547,3517437573525.941895,21,0,0.003419,0.005854,63212726,42348012,0,0,53904,0,1,1 +1774126899.314006,12.41,4,3992.50,54.18,1587.99,2121.15,0.00,1.538474,0.028322,237,378,0.032904,50.084622,63214948,42353566,0,0,53907,0,1,1 +1774126904.316565,30.92,4,3992.50,54.10,1582.32,2118.21,0.00,3516637308101.473145,3516637308102.934570,70,0,0.053540,122.913813,63218954,42366447,0,0,53909,0,1,1 +1774126909.312911,9.44,4,3992.50,53.99,1587.41,2113.77,0.00,3521010039086.792969,0.000000,21,0,0.017619,32.076360,63220085,42369908,0,0,53912,0,1,1 +1774126914.314505,13.81,4,3992.50,55.70,1523.36,2180.95,0.00,83162.082885,121938.081591,6904109,2141598,40.053815,0.026017,63224573,42371274,0,0,53914,0,1,1 +1774126919.317651,1.40,4,3992.50,55.76,1521.07,2183.23,0.00,3516224483772.168945,3516224445008.157715,70,0,0.006603,0.009256,63224719,42371445,0,0,53917,0,1,1 +1774126924.314763,0.70,4,3992.50,54.63,1565.29,2139.02,0.00,3520470780665.837402,0.000000,21,0,0.003422,0.005859,63224805,42371561,0,0,53919,0,1,1 +1774126929.312838,0.90,4,3992.50,54.19,1582.62,2121.67,0.00,0.048065,0.000000,70,0,0.003880,0.007135,63224905,42371702,0,0,53922,0,1,1 +1774126934.317320,0.85,4,3992.50,54.16,1583.77,2120.54,0.00,0.126839,0.000000,199,0,0.003646,0.006470,63224998,42371829,0,0,53924,0,1,1 +1774126939.314558,1.16,4,3992.50,54.35,1576.33,2127.98,0.00,3520382173564.875000,0.000000,21,0,0.003659,0.006523,63225092,42371960,0,0,53927,0,1,1 +1774126944.312895,0.85,4,3992.50,54.18,1582.84,2121.46,0.00,0.000000,0.000000,21,0,0.003904,0.007156,63225194,42372102,0,0,53929,0,1,1 +1774126949.312830,1.00,4,3992.50,54.27,1579.59,2124.68,0.00,0.048047,0.000000,70,0,0.004178,0.007687,63225300,42372254,0,0,53932,0,1,1 +1774126954.312806,0.80,4,3992.50,54.12,1585.48,2118.82,0.00,83188.923527,121977.972324,6904109,2142031,0.004227,0.007702,63225409,42372407,0,0,53934,0,1,1 +1774126959.317596,0.80,4,3992.50,54.09,1586.43,2117.86,0.00,0.000000,0.005854,6904109,2142040,0.003417,0.005885,63225495,42372526,0,0,53937,0,1,1 +1774126964.317544,0.75,4,3992.50,54.11,1585.97,2118.34,0.00,3518473865600.258789,3518473826809.517578,237,378,0.003953,0.007163,63225600,42372669,0,0,53939,0,1,1 +1774126969.315459,1.05,4,3992.50,54.21,1580.57,2122.43,0.00,3519904394439.010254,3519904394440.346191,199,0,0.003704,0.006989,63225697,42372808,0,0,53942,0,1,1 +1774126974.315878,1.20,4,3992.50,54.07,1585.74,2116.89,0.00,0.000000,0.000000,199,0,0.003259,0.006885,63225785,42372941,0,0,53944,0,1,1 +1774126979.314102,11.51,4,3992.50,54.96,1549.19,2151.72,0.00,83217.973497,122054.789944,6904109,2142442,0.024255,40.084618,63227327,42377516,0,0,53947,0,1,1 +1774126984.316541,0.85,4,3992.50,54.31,1574.61,2126.30,0.00,3516721739869.225098,3516721701063.799316,237,378,0.002268,0.006264,63227397,42377638,0,0,53949,0,1,1 +1774126989.314373,0.85,4,3992.50,54.15,1580.83,2120.09,0.00,3519963125568.462891,3519963125569.974121,21,0,0.002290,0.006369,63227467,42377761,0,0,53952,0,1,1 +1774126994.316527,0.80,4,3992.50,54.15,1580.91,2120.00,0.00,0.000000,0.000000,21,0,0.001851,0.005095,63227525,42377860,0,0,53954,0,1,1 +1774126999.317318,1.05,4,3992.50,54.43,1565.03,2131.22,0.00,83171.321957,121992.250675,6903335,2142135,0.002263,0.006365,63227593,42377983,0,0,53957,0,1,1 +1774127004.317111,0.70,4,3992.50,54.44,1564.74,2131.43,0.00,3518582731690.866211,3518582692860.681641,237,378,0.003398,0.006964,63227685,42378118,0,0,53959,0,1,1 +1774127009.316065,0.80,4,3992.50,54.44,1564.75,2131.43,0.00,3519173196798.851562,3519173196800.361816,21,0,0.002289,0.006367,63227755,42378241,0,0,53962,0,1,1 +1774127014.316408,0.85,4,3992.50,54.05,1579.80,2116.38,0.00,2.006698,0.000195,238,2,0.003378,0.006771,63227849,42378377,0,0,53964,0,1,1 +1774127019.316336,0.50,4,3992.50,54.05,1579.81,2116.37,0.00,3518488120700.776855,3518488120702.608887,199,0,0.001881,0.005186,63227909,42378482,0,0,53967,0,1,1 +1774127024.316959,0.60,4,3992.50,54.05,1579.81,2116.37,0.00,83178.040089,122002.660802,6904109,2142646,0.002494,0.006531,63227993,42378617,0,0,53969,0,1,1 +1774127029.317503,1.00,4,3992.50,54.00,1575.05,2114.34,0.00,3518054242482.848145,3518054203657.739746,70,0,0.002289,0.006378,63228063,42378741,0,0,53972,0,1,1 +1774127034.313027,0.65,4,3992.50,53.98,1575.69,2113.50,0.00,3521590111752.698730,0.000000,21,0,0.002291,0.006362,63228133,42378863,0,0,53974,0,1,1 +1774127039.316659,0.60,4,3992.50,54.01,1574.57,2114.61,0.00,83128.200171,121929.375789,6904109,2142690,0.001830,0.005095,63228189,42378962,0,0,53977,0,1,1 +1774127044.317445,21.90,4,3992.50,59.89,1349.66,2344.83,0.00,3517883541690.470215,3517883502867.170410,70,0,33.649203,0.027959,63231926,42380487,0,0,53979,0,1,1 +1774127049.313991,34.06,4,3992.50,59.72,1359.59,2338.04,0.00,83241.936762,122102.366359,6903335,2142432,118.445388,0.058319,63243944,42384781,0,0,53982,0,1,1 +1774127054.317613,29.47,4,3992.50,59.69,1360.72,2336.87,0.00,3515890523300.372559,3515890484493.437012,237,378,118.680247,0.033779,63256151,42387065,0,0,53984,0,1,1 +1774127059.317734,29.36,4,3992.50,59.96,1350.07,2347.55,0.00,83185.031841,122015.173479,6904109,2142847,119.561327,0.052488,63268296,42390968,0,0,53987,0,1,1 +1774127064.316424,28.92,4,3992.50,59.78,1357.03,2340.62,0.00,0.000000,0.014945,6904109,2142857,118.993608,0.033302,63280388,42393570,0,0,53989,0,1,1 +1774127069.313523,29.90,4,3992.50,59.93,1353.98,2346.43,0.00,3520480137064.621582,3520480098212.488281,21,0,119.434233,0.042622,63292574,42396667,0,0,53992,0,1,1 +1774127074.316216,29.76,4,3992.50,60.00,1351.15,2349.29,0.00,1.537551,0.028305,237,378,119.100342,0.044172,63304691,42399862,0,0,53994,0,1,1 +1774127079.313492,28.90,4,3992.50,60.01,1351.09,2349.39,0.00,3520355524534.446777,3520355524535.957520,21,0,119.227141,0.044219,63316738,42403165,0,0,53997,0,1,1 +1774127084.312864,26.61,4,3992.50,59.77,1360.25,2340.27,0.00,0.000000,0.000000,21,0,119.579133,0.044098,63328925,42406522,0,0,53999,0,1,1 +1774127089.314479,1.21,4,3992.50,53.48,1606.78,2093.68,0.00,83161.880822,121979.159861,6904124,2143010,38.844728,0.019733,63332969,42407799,0,0,54002,0,1,1 +1774127094.314504,8.69,4,3992.50,53.41,1603.95,2091.30,0.00,3518419727814.595215,3518419688982.963867,238,2,8.070862,0.052331,63335955,42410049,0,0,54004,0,1,1 +1774127099.316154,16.36,4,3992.50,54.47,1562.56,2132.67,0.00,3517276472474.050293,0.028116,237,378,28.148707,0.120944,63344966,42416980,0,0,54007,0,1,1 +1774127104.317248,4.52,4,3992.50,53.92,1584.00,2111.21,0.00,3517667093763.866699,3517667093765.201660,199,0,4.033660,0.024171,63346396,42418054,0,0,54009,0,1,1 +1774127109.313453,1.36,4,3992.50,53.85,1586.93,2108.23,0.00,83251.755326,122112.370155,6904124,2144253,0.005516,0.009858,63346515,42418227,0,0,54012,0,1,1 +1774127114.313546,0.60,4,3992.50,53.26,1609.97,2085.26,0.00,3518371643168.784668,3518371604338.563477,21,0,0.003878,0.007122,63346615,42418367,0,0,54014,0,1,1 +1774127119.313077,0.90,4,3992.50,53.47,1612.43,2093.31,0.00,0.175016,0.000000,199,0,0.003878,0.007133,63346715,42418508,0,0,54017,0,1,1 +1774127124.316981,0.60,4,3992.50,53.47,1612.21,2093.48,0.00,1.362315,0.028298,237,378,0.003405,0.005851,63346800,42418624,0,0,54019,0,1,1 +1774127129.317260,0.60,4,3992.50,53.28,1619.78,2085.91,0.00,83182.558700,122013.296811,6904124,2144600,0.003878,0.007119,63346900,42418764,0,0,54022,0,1,1 +1774127134.312844,0.55,4,3992.50,53.28,1619.62,2086.08,0.00,3521547615029.647949,3521547576163.922852,21,0,0.003970,0.007253,63347007,42418912,0,0,54024,0,1,1 +1774127139.312838,0.70,4,3992.50,53.28,1619.63,2086.07,0.00,0.048047,0.000000,70,0,0.004825,0.007821,63347111,42419057,0,0,54027,0,1,1 +1774127144.317461,0.60,4,3992.50,53.41,1614.61,2091.08,0.00,3515187169469.725586,0.000000,21,0,0.003425,0.005858,63347198,42419174,0,0,54029,0,1,1 +1774127149.312845,1.00,4,3992.50,53.63,1605.32,2099.89,0.00,0.048091,0.000000,70,0,0.003882,0.007139,63347298,42419315,0,0,54032,0,1,1 +1774127154.315884,0.65,4,3992.50,53.66,1604.23,2100.84,0.00,83138.162338,121946.238814,6904124,2144811,0.003950,0.007158,63347403,42419458,0,0,54034,0,1,1 +1774127159.316114,0.70,4,3992.50,53.66,1604.24,2100.82,0.00,3518275645286.201172,3518275606456.367676,21,0,0.003878,0.007132,63347503,42419599,0,0,54037,0,1,1 +1774127164.314894,0.65,4,3992.50,53.66,1604.27,2100.80,0.00,1.538754,0.028327,237,378,0.003421,0.005857,63347589,42419715,0,0,54039,0,1,1 +1774127169.312858,0.55,4,3992.50,53.66,1604.29,2100.79,0.00,3519871024823.800781,3519871024825.263184,70,0,0.003422,0.005867,63347675,42419832,0,0,54042,0,1,1 +1774127174.313383,0.70,4,3992.50,53.71,1602.14,2102.88,0.00,1.958583,0.000195,238,2,0.003898,0.007774,63347777,42419977,0,0,54044,0,1,1 +1774127179.312912,1.20,4,3992.50,53.72,1590.83,2103.12,0.00,0.000000,0.000000,238,2,0.003878,0.007120,63347877,42420117,0,0,54047,0,1,1 +1774127184.314699,0.60,4,3992.50,53.72,1590.60,2103.31,0.00,3517180467542.481934,3517180467544.439453,70,0,0.003877,0.007107,63347977,42420256,0,0,54049,0,1,1 +1774127189.317456,7.58,4,3992.50,54.54,1558.51,2135.19,0.00,83142.852236,121953.398518,6904124,2145121,0.025018,28.388635,63349613,42423543,0,0,54052,0,1,1 +1774127194.317075,32.49,4,3992.50,54.03,1570.37,2115.59,0.00,3518704918141.274414,3518704879304.912109,237,378,0.058432,122.118169,63353945,42436324,0,0,54054,0,1,1 +1774127199.315087,15.25,4,3992.50,53.50,1590.00,2094.55,0.00,0.468643,3519837023428.530273,238,2,0.026170,54.616928,63355905,42442286,0,0,54057,0,1,1 +1774127204.317723,13.01,4,3992.50,54.65,1548.10,2139.68,0.00,0.000000,0.000000,238,2,40.044126,0.029267,63360297,42443974,0,0,54059,0,1,1 +1774127209.317285,11.63,4,3992.50,53.39,1594.91,2090.30,0.00,83209.963903,122270.658562,6904252,2146802,0.026851,40.071552,63361989,42448458,0,0,54062,0,1,1 +1774127214.312905,1.16,4,3992.50,53.81,1582.74,2106.70,0.00,3521521669564.115234,0.077314,6903478,2146520,0.003476,0.008815,63362089,42448624,0,0,54064,0,1,1 +1774127219.315993,0.65,4,3992.50,53.81,1582.50,2106.94,0.00,0.000000,0.117115,6903478,2146634,0.001830,0.005096,63362145,42448723,0,0,54067,0,1,1 +1774127224.312829,0.70,4,3992.50,53.81,1582.51,2106.93,0.00,0.000000,0.008599,6903478,2146639,0.002278,0.006360,63362214,42448845,0,0,54069,0,1,1 +1774127229.316867,0.60,4,3992.50,53.81,1582.51,2106.93,0.00,3515598426202.372559,3515598387174.311035,21,0,0.002287,0.006361,63362284,42448968,0,0,54072,0,1,1 +1774127234.317599,0.65,4,3992.50,53.81,1582.52,2106.92,0.00,0.174974,0.000000,199,0,0.002322,0.006394,63362357,42449093,0,0,54074,0,1,1 +1774127239.317092,1.00,4,3992.50,53.82,1582.87,2107.30,0.00,1.363517,0.028323,237,378,0.001806,0.005743,63362411,42449196,0,0,54077,0,1,1 +1774127244.313044,0.65,4,3992.50,53.80,1583.84,2106.25,0.00,0.468837,3521288144473.778809,238,2,0.002291,0.006361,63362481,42449318,0,0,54079,0,1,1 +1774127249.317268,0.70,4,3992.50,53.61,1591.05,2099.04,0.00,3515467166445.621582,3515467166447.626465,21,0,0.002611,0.006946,63362559,42449454,0,0,54082,0,1,1 +1774127254.317306,0.75,4,3992.50,53.61,1591.05,2099.04,0.00,0.048047,0.000000,70,0,0.002702,0.007066,63362644,42449597,0,0,54084,0,1,1 +1774127259.316930,0.60,4,3992.50,53.61,1591.06,2099.04,0.00,3518702134781.840820,0.000000,21,0,0.001943,0.005200,63362707,42449704,0,0,54087,0,1,1 +1774127264.315826,0.65,4,3992.50,53.62,1590.83,2099.27,0.00,0.175039,0.000000,199,0,0.002289,0.006357,63362777,42449826,0,0,54089,0,1,1 +1774127269.317408,1.05,4,3992.50,53.61,1585.69,2098.77,0.00,3517324269799.942383,0.000000,21,0,0.002296,0.006372,63362848,42449950,0,0,54092,0,1,1 +1774127274.313407,23.87,4,3992.50,59.77,1350.92,2340.30,0.00,83267.194190,122364.255256,6903478,2146827,40.133634,0.031053,63367312,42451812,0,0,54094,0,1,1 +1774127279.313417,32.54,4,3992.50,59.57,1361.58,2332.42,0.00,3518429901642.409668,3518429862576.666016,70,0,118.962504,0.059908,63379698,42456122,0,0,54097,0,1,1 +1774127284.314896,29.51,4,3992.50,59.79,1353.31,2340.76,0.00,0.126916,0.000000,199,0,119.344654,0.062517,63392447,42460736,0,0,54099,0,1,1 +1774127289.317125,29.31,4,3992.50,59.87,1349.82,2344.23,0.00,0.000000,0.000000,199,0,118.575659,0.058318,63405369,42465247,0,0,54102,0,1,1 +1774127294.312790,28.94,4,3992.50,59.70,1356.45,2337.58,0.00,83276.689755,122372.630068,6904252,2147345,119.436328,0.060173,63418317,42469861,0,0,54104,0,1,1 +1774127299.315441,29.83,4,3992.50,60.44,1327.73,2366.29,0.00,0.000000,0.133913,6904252,2147387,119.059230,0.059493,63431381,42474320,0,0,54107,0,1,1 +1774127304.316493,29.88,4,3992.50,59.78,1353.54,2340.47,0.00,3517696810203.588867,3517696771149.625488,199,0,120.021757,0.065366,63444467,42479190,0,0,54109,0,1,1 +1774127309.313468,29.82,4,3992.50,59.75,1354.69,2339.32,0.00,1.364205,0.028337,237,378,119.123250,0.065110,63457899,42484139,0,0,54112,0,1,1 +1774127314.316969,25.89,4,3992.50,59.72,1355.86,2338.25,0.00,3515974739014.450195,3515974739015.911133,70,0,119.618913,0.069515,63471606,42489317,0,0,54114,0,1,1 +1774127319.317609,1.20,4,3992.50,54.54,1558.62,2135.49,0.00,0.000000,0.000000,70,0,32.051556,0.024605,63475361,42490850,0,0,54117,0,1,1 +1774127324.317560,8.75,4,3992.50,53.84,1585.94,2108.12,0.00,0.000000,0.000000,70,0,8.068749,0.048102,63478325,42493043,0,0,54119,0,1,1 +1774127329.316433,14.70,4,3992.50,54.77,1555.94,2144.22,0.00,83223.646914,122295.245325,6904279,2148347,20.163668,0.092245,63484747,42497981,0,0,54122,0,1,1 +1774127334.314848,8.01,4,3992.50,54.27,1571.48,2124.89,0.00,3519552288783.405762,3519552249706.774414,237,378,12.040220,0.054301,63488703,42500812,0,0,54124,0,1,1 +1774127339.315414,24.05,4,3992.50,54.91,1541.63,2149.82,0.00,3518039503662.723633,3518039503664.185547,70,0,0.077452,101.407627,63494397,42512604,0,0,54127,0,1,1 +1774127344.316955,27.22,4,3992.50,53.93,1574.94,2111.68,0.00,0.000000,0.000000,70,0,0.034969,103.682729,63497027,42523844,0,0,54129,0,1,1 +1774127349.313490,2.36,4,3992.50,53.69,1584.72,2101.96,0.00,3520877406487.054199,0.000000,21,0,0.007629,0.011557,63497194,42524068,0,0,54132,0,1,1 +1774127354.316852,14.72,4,3992.50,53.93,1577.48,2111.45,0.00,83160.842129,122391.035628,6903629,2149969,40.038312,0.026058,63501634,42525534,0,0,54134,0,1,1 +1774127359.316850,0.95,4,3992.50,53.86,1585.24,2108.69,0.00,3518438497858.996094,3518438458600.900391,237,378,0.003865,0.007132,63501733,42525675,0,0,54137,0,1,1 +1774127364.315158,0.60,4,3992.50,53.86,1585.12,2108.60,0.00,3519627830696.005859,3519627830697.516602,21,0,0.003980,0.007249,63501841,42525823,0,0,54139,0,1,1 +1774127369.315369,0.65,4,3992.50,53.74,1589.77,2103.95,0.00,83217.360597,122468.585790,6904403,2150626,0.003428,0.005873,63501928,42525941,0,0,54142,0,1,1 +1774127374.316989,0.65,4,3992.50,53.74,1589.55,2104.15,0.00,3517297203404.764160,3517297164164.603027,21,0,0.003877,0.007764,63502028,42526085,0,0,54144,0,1,1 +1774127379.317043,0.80,4,3992.50,53.59,1595.37,2098.34,0.00,1.538362,0.028320,237,378,0.003878,0.007132,63502128,42526226,0,0,54147,0,1,1 +1774127384.317266,0.70,4,3992.50,53.60,1595.14,2098.57,0.00,83211.501365,122468.301488,6903629,2150318,0.003890,0.007153,63502229,42526368,0,0,54149,0,1,1 +1774127389.317589,0.85,4,3992.50,53.66,1588.80,2100.99,0.00,3518209899969.128418,3518209860714.620117,21,0,0.003441,0.005873,63502317,42526486,0,0,54152,0,1,1 +1774127394.313442,0.70,4,3992.50,53.67,1588.56,2101.21,0.00,83289.953030,122575.610127,6904403,2150796,0.004645,0.008114,63502426,42526633,0,0,54154,0,1,1 +1774127399.316877,0.65,4,3992.50,53.67,1588.57,2101.20,0.00,3516021456720.026367,0.005465,6903629,2150459,0.003990,0.007155,63502534,42526776,0,0,54157,0,1,1 +1774127404.316849,0.70,4,3992.50,53.67,1588.44,2101.34,0.00,3518457070392.193359,3518457031134.785645,21,0,0.003878,0.007110,63502634,42526915,0,0,54159,0,1,1 +1774127409.317621,0.80,4,3992.50,53.62,1590.24,2099.54,0.00,0.000000,0.000000,21,0,0.003428,0.005872,63502721,42527033,0,0,54162,0,1,1 +1774127414.317721,0.70,4,3992.50,53.63,1590.02,2099.75,0.00,0.000000,0.000000,21,0,0.003910,0.007122,63502823,42527173,0,0,54164,0,1,1 +1774127419.317160,0.95,4,3992.50,53.65,1582.31,2100.45,0.00,0.000000,0.000000,21,0,0.003878,0.007133,63502923,42527314,0,0,54167,0,1,1 +1774127424.313403,0.65,4,3992.50,53.62,1583.43,2099.32,0.00,0.048083,0.000000,70,0,0.003868,0.007128,63503022,42527454,0,0,54169,0,1,1 +1774127429.314679,0.65,4,3992.50,53.62,1583.46,2099.30,0.00,83195.592592,122443.055586,6903674,2150784,0.002396,0.004834,63503086,42527549,0,0,54172,0,1,1 +1774127434.317235,11.69,4,3992.50,53.29,1594.09,2086.54,0.00,3516639054754.573242,3516639015517.027344,199,0,0.024738,40.050688,63504533,42532096,0,0,54174,0,1,1 +1774127439.317728,0.65,4,3992.50,53.35,1592.01,2088.68,0.00,3518090325880.510742,0.000000,21,0,0.003210,0.007679,63504605,42532226,0,0,54177,0,1,1 +1774127444.312829,0.75,4,3992.50,53.34,1592.38,2088.30,0.00,0.048094,0.000000,70,0,0.002308,0.006362,63504676,42532348,0,0,54179,0,1,1 +1774127449.312825,1.00,4,3992.50,53.40,1589.92,2090.76,0.00,1.958791,0.000195,238,2,0.001831,0.005099,63504732,42532447,0,0,54182,0,1,1 +1774127454.316957,0.65,4,3992.50,53.37,1591.09,2089.57,0.00,83150.254107,122407.277984,6904448,2151578,0.002295,0.006359,63504803,42532570,0,0,54184,0,1,1 +1774127459.315100,0.65,4,3992.50,53.42,1589.13,2091.54,0.00,3519744595333.764648,3519744556029.693359,238,2,0.002290,0.006368,63504873,42532693,0,0,54187,0,1,1 +1774127464.317551,0.60,4,3992.50,53.40,1589.88,2090.79,0.00,3516713424275.435059,3516713424277.392578,70,0,0.002313,0.006384,63504945,42532817,0,0,54189,0,1,1 +1774127469.315321,0.70,4,3992.50,53.40,1589.88,2090.79,0.00,0.127010,0.000000,199,0,0.002340,0.006418,63505019,42532943,0,0,54192,0,1,1 +1774127474.316910,0.55,4,3992.50,53.41,1589.50,2091.12,0.00,1.831254,0.000195,238,2,0.001864,0.005139,63505078,42533045,0,0,54194,0,1,1 +1774127479.313790,1.21,4,3992.50,53.42,1590.09,2091.33,0.00,3520633601922.164062,3520633601923.997070,199,0,0.002484,0.006558,63505161,42533182,0,0,54197,0,1,1 +1774127484.317428,0.65,4,3992.50,53.43,1589.42,2092.00,0.00,0.000000,0.000000,199,0,0.002287,0.006351,63505231,42533304,0,0,54199,0,1,1 +1774127489.317169,0.60,4,3992.50,53.44,1589.19,2092.23,0.00,0.000000,0.000000,199,0,0.002289,0.006366,63505301,42533427,0,0,54202,0,1,1 +1774127494.316408,0.70,4,3992.50,53.39,1591.09,2090.33,0.00,1.832115,0.000195,238,2,0.001839,0.005098,63505358,42533526,0,0,54204,0,1,1 +1774127499.317381,40.05,4,3992.50,59.79,1348.16,2340.80,0.00,3517753084002.011719,0.028120,237,378,92.714407,0.054247,63515431,42537252,0,0,54207,0,1,1 +1774127504.316847,30.96,4,3992.50,59.89,1345.17,2344.64,0.00,3518812951951.246582,3518812951952.757324,21,0,118.322030,0.052144,63527840,42541035,0,0,54209,0,1,1 +1774127509.317054,30.00,4,3992.50,60.08,1337.42,2352.32,0.00,0.048045,0.000000,70,0,119.171635,0.048881,63540364,42544814,0,0,54212,0,1,1 +1774127514.312884,31.30,4,3992.50,60.30,1328.76,2361.04,0.00,3521374003814.241699,0.000000,21,0,119.339373,0.056687,63553288,42549097,0,0,54214,0,1,1 +1774127519.316128,29.23,4,3992.50,59.94,1342.95,2346.86,0.00,0.000000,0.000000,21,0,119.511761,0.063465,63567229,42553831,0,0,54217,0,1,1 +1774127524.316372,28.26,4,3992.50,59.92,1343.72,2346.01,0.00,1.538304,0.028319,237,378,119.139767,0.073735,63581091,42559532,0,0,54219,0,1,1 +1774127529.317378,29.01,4,3992.50,59.92,1343.89,2345.91,0.00,3517729384039.006348,3517729384040.341309,199,0,119.299756,0.077499,63594644,42565431,0,0,54222,0,1,1 +1774127534.312854,30.45,4,3992.50,59.81,1348.12,2341.78,0.00,3521623594336.597168,0.000000,21,0,119.510638,0.085101,63608587,42571803,0,0,54224,0,1,1 +1774127539.317394,12.90,4,3992.50,54.23,1566.72,2123.13,0.00,0.000000,0.000000,21,0,99.593126,0.063637,63620964,42576563,0,0,54227,0,1,1 +1774127544.312911,1.45,4,3992.50,54.26,1565.80,2124.51,0.00,83291.718596,122625.337659,6903690,2151635,0.005200,0.007179,63621086,42576713,0,0,54229,0,1,1 +1774127549.316385,16.38,4,3992.50,54.45,1558.24,2132.02,0.00,3515994470079.149902,3515994430808.082520,21,0,22.132214,0.106117,63628469,42582179,0,0,54232,0,1,1 +1774127554.313017,5.08,4,3992.50,53.86,1581.54,2108.69,0.00,83277.245220,122598.333228,6904464,2152701,8.056014,0.037736,63631111,42584187,0,0,54234,0,1,1 +1774127559.312823,8.66,4,3992.50,53.72,1587.07,2103.15,0.00,3518572980579.695312,3518572941283.579590,21,0,10.065665,0.047939,63634334,42586521,0,0,54237,0,1,1 +1774127564.314322,0.65,4,3992.50,53.65,1589.76,2100.45,0.00,0.048032,0.000000,70,0,0.003864,0.007120,63634433,42586661,0,0,54239,0,1,1 +1774127569.316194,0.95,4,3992.50,53.65,1581.98,2100.53,0.00,0.126906,0.000000,199,0,0.003877,0.007773,63634533,42586806,0,0,54242,0,1,1 +1774127574.317781,0.90,4,3992.50,53.76,1577.48,2104.91,0.00,1.831255,0.000195,238,2,0.003419,0.005853,63634619,42586922,0,0,54244,0,1,1 +1774127579.317144,0.75,4,3992.50,53.77,1577.02,2105.36,0.00,0.000000,0.000000,238,2,0.003874,0.007141,63634719,42587064,0,0,54247,0,1,1 +1774127584.313427,0.65,4,3992.50,53.63,1582.55,2099.83,0.00,83276.931298,122607.971324,6903690,2153228,0.004320,0.008261,63634835,42587229,0,0,54249,0,1,1 +1774127589.317155,0.65,4,3992.50,53.63,1582.55,2099.82,0.00,3515816147310.048340,3515816108039.352539,199,0,0.003963,0.007251,63634942,42587378,0,0,54252,0,1,1 +1774127594.316811,0.55,4,3992.50,53.63,1582.57,2099.80,0.00,0.000000,0.000000,199,0,0.003452,0.005881,63635030,42587496,0,0,54254,0,1,1 +1774127599.317420,0.90,4,3992.50,53.72,1578.92,2103.43,0.00,83210.844974,122502.089535,6904464,2153712,0.003873,0.007139,63635130,42587638,0,0,54257,0,1,1 +1774127604.313609,0.70,4,3992.50,53.79,1576.45,2105.92,0.00,3521120480032.763672,3521120440704.937012,238,2,0.005015,0.007632,63635255,42587792,0,0,54259,0,1,1 +1774127609.312820,0.65,4,3992.50,53.67,1580.95,2101.43,0.00,3518992290502.480957,3518992290504.312988,199,0,0.003853,0.007121,63635353,42587932,0,0,54262,0,1,1 +1774127614.317271,0.70,4,3992.50,53.72,1579.28,2103.11,0.00,0.000000,0.000000,199,0,0.004481,0.006263,63635461,42588062,0,0,54264,0,1,1 +1774127619.316304,0.60,4,3992.50,53.72,1579.28,2103.10,0.00,1.832190,0.000195,238,2,0.003887,0.007142,63635562,42588204,0,0,54267,0,1,1 +1774127624.317428,0.60,4,3992.50,53.72,1579.30,2103.08,0.00,3517646234466.556641,3517646234468.563477,21,0,0.003865,0.007108,63635661,42588343,0,0,54269,0,1,1 +1774127629.314642,0.90,4,3992.50,53.85,1573.84,2108.46,0.00,0.175098,0.000000,199,0,0.003453,0.005894,63635749,42588462,0,0,54272,0,1,1 +1774127634.312834,0.60,4,3992.50,53.74,1578.10,2104.09,0.00,0.000000,0.000000,199,0,0.003409,0.006501,63635834,42588582,0,0,54274,0,1,1 +1774127639.312978,0.65,4,3992.50,53.78,1576.47,2105.71,0.00,83214.454646,122513.717949,6903690,2153641,0.003878,0.007120,63635934,42588722,0,0,54277,0,1,1 +1774127644.312906,0.70,4,3992.50,53.73,1578.38,2103.81,0.00,3518487778519.970703,3518487739219.132812,70,0,0.003908,0.007123,63636036,42588862,0,0,54279,0,1,1 +1774127649.315045,0.45,4,3992.50,53.74,1578.14,2104.04,0.00,3516932802893.839844,0.000000,21,0,0.003283,0.006923,63636126,42588998,0,0,54282,0,1,1 +1774127654.316400,23.11,4,3992.50,53.96,1564.82,2112.61,0.00,0.174953,0.000000,199,0,0.044239,94.809337,63639292,42599203,0,0,54284,0,1,1 +1774127659.312821,28.49,4,3992.50,53.99,1571.23,2113.65,0.00,0.000000,0.000000,199,0,0.044496,110.345643,63642640,42610557,0,0,54287,0,1,1 +1774127664.316913,1.15,4,3992.50,53.65,1583.09,2100.34,0.00,1.362264,0.028297,237,378,0.004734,0.007337,63642739,42610701,0,0,54289,0,1,1 +1774127669.314200,14.62,4,3992.50,54.71,1544.61,2142.05,0.00,3520347556462.234863,3520347556463.745605,21,0,40.082977,0.023238,63647008,42612117,0,0,54292,0,1,1 +1774127674.317011,1.00,4,3992.50,53.97,1573.64,2113.02,0.00,0.000000,0.000000,21,0,0.003398,0.007887,63647098,42612252,0,0,54294,0,1,1 +1774127679.314562,11.32,4,3992.50,53.72,1581.01,2103.33,0.00,0.175086,0.000000,199,0,0.029358,40.086941,63649087,42616721,0,0,54297,0,1,1 +1774127684.317576,0.75,4,3992.50,53.76,1579.55,2104.79,0.00,1.362557,0.028303,237,378,0.002777,0.006764,63649166,42616852,0,0,54299,0,1,1 +1774127689.317018,0.95,4,3992.50,53.90,1577.25,2110.17,0.00,83244.840615,122764.590665,6904582,2155971,0.001831,0.005099,63649222,42616951,0,0,54302,0,1,1 +1774127694.317590,0.60,4,3992.50,53.94,1574.41,2111.83,0.00,3518034357853.983398,3518034318344.507812,199,0,0.002297,0.006363,63649293,42617074,0,0,54304,0,1,1 +1774127699.316860,0.75,4,3992.50,53.94,1574.42,2111.83,0.00,1.832104,0.000195,238,2,0.002302,0.007042,63649364,42617203,0,0,54307,0,1,1 +1774127704.314752,1.05,4,3992.50,54.20,1564.32,2121.92,0.00,0.000000,0.000000,238,2,0.002290,0.006359,63649434,42617325,0,0,54309,0,1,1 +1774127709.317643,0.90,4,3992.50,54.23,1563.15,2123.08,0.00,3516404489377.437500,3516404489379.395020,70,0,0.002287,0.006337,63649504,42617446,0,0,54312,0,1,1 +1774127714.317326,0.85,4,3992.50,54.24,1562.70,2123.54,0.00,3518659886570.341797,0.000000,21,0,0.001907,0.005208,63649566,42617552,0,0,54314,0,1,1 +1774127719.317004,1.00,4,3992.50,54.35,1567.04,2127.95,0.00,0.000000,0.000000,21,0,0.002339,0.006429,63649640,42617679,0,0,54317,0,1,1 +1774127724.316468,1.00,4,3992.50,54.35,1567.03,2127.93,0.00,83245.995625,122776.309377,6904582,2156231,0.002439,0.006497,63649720,42617811,0,0,54319,0,1,1 +1774127729.317374,0.75,4,3992.50,54.15,1574.69,2120.27,0.00,3517800158978.456543,3517800119459.533691,21,0,0.002359,0.006423,63649795,42617939,0,0,54322,0,1,1 +1774127734.316965,0.80,4,3992.50,54.06,1578.19,2116.73,0.00,2.007000,0.000195,238,2,0.001844,0.005102,63649852,42618038,0,0,54324,0,1,1 +1774127739.312848,1.05,4,3992.50,53.93,1583.37,2111.60,0.00,0.000000,0.000000,238,2,0.004320,0.007672,63649946,42618177,0,0,54327,0,1,1 +1774127744.316399,43.53,4,3992.50,60.04,1352.38,2350.62,0.00,83176.003223,122676.088634,6904582,2156295,93.449343,0.041886,63659839,42620899,0,0,54329,0,1,1 +1774127749.313502,29.23,4,3992.50,60.39,1339.01,2364.21,0.00,3520476479230.631348,3520476439681.591797,21,0,119.029308,0.040253,63672183,42623979,0,0,54332,0,1,1 +1774127754.313904,31.28,4,3992.50,59.93,1355.37,2346.22,0.00,1.538255,0.028318,237,378,118.689553,0.040877,63685331,42627045,0,0,54334,0,1,1 +1774127759.312917,29.13,4,3992.50,60.16,1346.12,2355.50,0.00,3519131220972.882324,3519131220974.217773,199,0,119.326314,0.040421,63698443,42630138,0,0,54337,0,1,1 +1774127764.315820,29.00,4,3992.50,60.20,1344.59,2357.05,0.00,1.362588,0.028304,237,378,119.064567,0.047656,63711582,42633715,0,0,54339,0,1,1 +1774127769.316421,28.98,4,3992.50,59.99,1353.01,2348.60,0.00,83225.535826,122748.597529,6904582,2156449,119.535478,0.057434,63725080,42637951,0,0,54342,0,1,1 +1774127774.316756,28.36,4,3992.50,60.02,1351.91,2349.75,0.00,3518201035358.364746,3518200995834.715332,21,0,119.412835,0.057766,63738488,42642207,0,0,54344,0,1,1 +1774127779.317055,29.09,4,3992.50,60.21,1344.21,2357.32,0.00,1.538287,0.028319,237,378,119.381583,0.055356,63751882,42646476,0,0,54347,0,1,1 +1774127784.316114,13.05,4,3992.50,54.66,1560.68,2139.89,0.00,0.468545,3519099599147.240234,238,2,98.468350,0.068214,63763862,42651723,0,0,54349,0,1,1 +1774127789.317041,1.20,4,3992.50,54.20,1578.31,2122.25,0.00,3517784806139.501953,3517784806141.508789,21,0,0.004960,0.006646,63763977,42651861,0,0,54352,0,1,1 +1774127794.313069,19.81,4,3992.50,54.73,1557.89,2142.62,0.00,1.539602,0.028343,237,378,26.324821,0.125883,63772536,42658385,0,0,54354,0,1,1 +1774127799.317641,9.50,4,3992.50,54.37,1571.82,2128.63,0.00,3515222941049.840332,3515222941051.174316,199,0,13.947866,0.068261,63777356,42661974,0,0,54357,0,1,1 +1774127804.317315,1.41,4,3992.50,54.32,1573.48,2126.93,0.00,3518666445075.789062,0.000000,21,0,0.004582,0.008520,63777472,42662138,0,0,54359,0,1,1 +1774127809.316877,1.20,4,3992.50,54.71,1558.76,2141.98,0.00,83244.505877,122775.665269,6904593,2157762,0.003866,0.007133,63777571,42662279,0,0,54362,0,1,1 +1774127814.314572,0.75,4,3992.50,54.67,1560.24,2140.27,0.00,3520059810561.769531,3520059771015.670410,199,0,0.003422,0.005858,63777657,42662395,0,0,54364,0,1,1 +1774127819.312912,0.90,4,3992.50,54.49,1567.20,2133.31,0.00,83264.677686,122805.926789,6904593,2158051,0.003879,0.007135,63777757,42662536,0,0,54367,0,1,1 +1774127824.316992,0.70,4,3992.50,54.49,1567.30,2133.21,0.00,3515568697209.828613,3515568657713.932617,199,0,0.003875,0.007091,63777857,42662674,0,0,54369,0,1,1 +1774127829.312840,1.61,4,3992.50,54.28,1575.30,2125.21,0.00,3521361424880.244629,0.000000,70,0,0.003881,0.007138,63777957,42662815,0,0,54372,0,1,1 +1774127834.317077,0.75,4,3992.50,54.27,1575.68,2124.84,0.00,0.000000,0.000000,70,0,0.002905,0.005245,63778036,42662920,0,0,54374,0,1,1 +1774127839.312896,1.20,4,3992.50,54.29,1579.93,2125.67,0.00,3521382360685.652344,0.000000,21,0,0.003881,0.007138,63778136,42663061,0,0,54377,0,1,1 +1774127844.312828,0.65,4,3992.50,54.27,1580.95,2124.66,0.00,2.006863,0.000195,238,2,0.003878,0.007123,63778236,42663201,0,0,54379,0,1,1 +1774127849.317372,0.85,4,3992.50,54.32,1579.01,2126.61,0.00,0.000000,0.000000,238,2,0.004257,0.007707,63778348,42663355,0,0,54382,0,1,1 +1774127854.313490,0.85,4,3992.50,54.32,1579.02,2126.61,0.00,3521171157436.835449,3521171157438.843750,21,0,0.003723,0.006415,63778440,42663482,0,0,54384,0,1,1 +1774127859.312908,0.90,4,3992.50,54.32,1579.03,2126.59,0.00,0.048052,0.000000,70,0,0.003866,0.007146,63778539,42663624,0,0,54387,0,1,1 +1774127864.312830,0.75,4,3992.50,54.32,1579.05,2126.58,0.00,3518492288065.127441,0.000000,21,0,0.003878,0.007123,63778639,42663764,0,0,54389,0,1,1 +1774127869.313040,1.30,4,3992.50,54.73,1563.01,2142.62,0.00,83233.722968,122760.471020,6904593,2158449,0.003873,0.007140,63778739,42663906,0,0,54392,0,1,1 +1774127874.316236,0.75,4,3992.50,54.44,1574.12,2131.48,0.00,3516189062126.169922,3516189022621.017090,238,2,0.003418,0.005864,63778825,42664023,0,0,54394,0,1,1 +1774127879.312906,0.80,4,3992.50,54.40,1575.69,2129.92,0.00,3520782370331.204590,3520782370333.037598,199,0,0.003881,0.007137,63778925,42664164,0,0,54397,0,1,1 +1774127884.312998,0.90,4,3992.50,54.38,1576.57,2129.03,0.00,3518372040892.408691,0.000000,21,0,0.003648,0.007937,63779025,42664318,0,0,54399,0,1,1 +1774127889.312797,25.88,4,3992.50,54.51,1566.43,2134.01,0.00,0.175007,0.000000,199,0,0.060947,101.058748,63783421,42675014,0,0,54402,0,1,1 +1774127894.317033,26.56,4,3992.50,54.90,1546.00,2149.34,0.00,83166.575158,122808.796473,6904593,2159493,0.056366,103.959434,63787783,42685884,0,0,54404,0,1,1 +1774127899.315718,2.01,4,3992.50,53.48,1601.86,2093.79,0.00,3519362481477.460449,3519362441791.394043,21,0,0.006282,0.009420,63787918,42686066,0,0,54407,0,1,1 +1774127904.316919,15.26,4,3992.50,55.37,1530.88,2167.95,0.00,0.048035,0.000000,70,0,40.056117,0.026772,63792492,42687741,0,0,54409,0,1,1 +1774127909.318416,2.01,4,3992.50,54.61,1560.77,2137.98,0.00,1.489886,0.028312,237,378,0.012830,2.617217,63793043,42688457,0,0,54412,0,1,1 +1774127914.313118,10.82,4,3992.50,53.55,1599.83,2096.45,0.00,83335.794990,123135.311753,6903938,2159992,0.027702,37.500164,63794949,42692390,0,0,54414,0,1,1 +1774127919.312876,0.70,4,3992.50,53.60,1597.89,2098.39,0.00,3518607311521.444824,3518607271763.685059,21,0,0.001856,0.005099,63795007,42692489,0,0,54417,0,1,1 +1774127924.314582,0.65,4,3992.50,53.58,1598.62,2097.66,0.00,83220.652639,122963.026505,6903938,2160091,0.002288,0.006354,63795077,42692611,0,0,54419,0,1,1 +1774127929.315129,1.05,4,3992.50,53.71,1588.98,2102.95,0.00,3518051758244.567383,3518051718492.994141,21,0,0.002289,0.006365,63795147,42692734,0,0,54422,0,1,1 +1774127934.317656,0.65,4,3992.50,53.63,1592.45,2099.62,0.00,2.005822,0.000195,238,2,0.002313,0.006384,63795219,42692858,0,0,54424,0,1,1 +1774127939.317648,0.65,4,3992.50,53.66,1590.94,2101.09,0.00,0.000000,0.000000,238,2,0.001839,0.005107,63795276,42692958,0,0,54427,0,1,1 +1774127944.317476,0.60,4,3992.50,53.66,1590.99,2101.08,0.00,0.000000,0.000000,238,2,0.002289,0.006356,63795346,42693080,0,0,54429,0,1,1 +1774127949.312831,0.70,4,3992.50,53.65,1591.50,2100.57,0.00,3521708215142.137207,0.028151,237,378,0.002304,0.006403,63795417,42693205,0,0,54432,0,1,1 +1774127954.314435,0.70,4,3992.50,53.44,1599.88,2092.18,0.00,0.000000,0.000000,237,378,0.002401,0.006509,63795496,42693337,0,0,54434,0,1,1 +1774127959.317438,0.90,4,3992.50,53.55,1589.50,2096.64,0.00,83201.626142,122937.652794,6904712,2160649,0.002023,0.005284,63795565,42693450,0,0,54437,0,1,1 +1774127964.317341,0.70,4,3992.50,53.55,1589.30,2096.71,0.00,3518505921570.945801,3518505881809.775391,238,2,0.002289,0.007000,63795635,42693576,0,0,54439,0,1,1 +1774127969.315591,0.65,4,3992.50,53.74,1581.75,2104.22,0.00,3519668568449.708496,3519668568451.541504,199,0,0.002277,0.006368,63795704,42693699,0,0,54442,0,1,1 +1774127974.317097,1.10,4,3992.50,53.70,1584.29,2102.58,0.00,3517377711403.551270,0.000000,21,0,0.003770,0.007680,63795803,42693848,0,0,54444,0,1,1 +1774127979.316753,45.73,4,3992.50,60.09,1342.30,2352.78,0.00,0.175012,0.000000,199,0,98.675268,0.044344,63806273,42696862,0,0,54447,0,1,1 +1774127984.317859,30.69,4,3992.50,60.18,1339.10,2356.11,0.00,3517658599072.247070,0.000000,70,0,119.754528,0.046351,63819389,42700394,0,0,54449,0,1,1 +1774127989.313275,30.56,4,3992.50,59.62,1360.77,2334.43,0.00,3521665986361.426270,0.000000,21,0,118.996744,0.060265,63832801,42705019,0,0,54452,0,1,1 +1774127994.317391,30.83,4,3992.50,59.89,1350.40,2344.80,0.00,1.537114,0.028297,237,378,119.642406,0.071424,63846901,42710488,0,0,54454,0,1,1 +1774127999.312746,28.94,4,3992.50,60.16,1339.84,2355.34,0.00,0.000000,0.000000,237,378,119.210902,0.075892,63861175,42716230,0,0,54457,0,1,1 +1774128004.312840,28.82,4,3992.50,59.70,1358.03,2337.21,0.00,3518371086022.867676,3518371086024.329590,70,0,119.735024,0.070864,63875247,42721739,0,0,54459,0,1,1 +1774128009.312832,29.44,4,3992.50,60.03,1344.69,2350.43,0.00,0.126953,0.000000,199,0,119.050859,0.073144,63889445,42727340,0,0,54462,0,1,1 +1774128014.312823,30.76,4,3992.50,59.74,1356.26,2338.94,0.00,3518443377418.001953,0.000000,70,0,119.473808,0.065610,63903576,42732364,0,0,54464,0,1,1 +1774128019.317245,11.36,4,3992.50,55.42,1525.28,2169.99,0.00,83179.632527,122903.452527,6904730,2160977,92.257310,0.064165,63914776,42737218,0,0,54467,0,1,1 +1774128024.315835,1.56,4,3992.50,54.30,1560.37,2126.16,0.00,3519429419605.842773,3519429379834.218750,237,378,0.006578,0.006576,63914911,42737362,0,0,54469,0,1,1 +1774128029.316582,17.93,4,3992.50,54.19,1564.96,2121.57,0.00,0.000000,0.000000,237,378,24.162651,0.120499,63923098,42743532,0,0,54472,0,1,1 +1774128034.317153,11.33,4,3992.50,54.06,1569.84,2116.65,0.00,83238.169664,122998.422676,6903963,2161434,16.087360,0.064221,63927951,42747080,0,0,54474,0,1,1 +1774128039.317751,0.95,4,3992.50,53.83,1578.94,2107.55,0.00,3518016040222.074707,3518016000463.553711,21,0,0.004598,0.008528,63928068,42747245,0,0,54477,0,1,1 +1774128044.317708,4.77,4,3992.50,54.00,1572.15,2114.28,0.00,83249.921534,123014.141573,6903963,2161812,0.020567,18.437884,63929188,42749479,0,0,54479,0,1,1 +1774128049.316396,29.73,4,3992.50,54.16,1558.86,2120.55,0.00,3519360238339.324219,3519360198565.013184,21,0,0.037722,122.209159,63931888,42762195,0,0,54482,0,1,1 +1774128054.322377,21.52,4,3992.50,58.60,1386.39,2294.50,0.00,0.000000,0.000000,21,0,1.630681,64.427134,63933935,42769320,0,0,54484,0,1,1 +1774128059.314266,7.59,4,3992.50,55.02,1526.89,2154.05,0.00,0.000000,0.000000,21,0,38.520765,0.019875,63937984,42770610,0,0,54487,0,1,1 +1774128064.316918,0.80,4,3992.50,54.37,1552.11,2128.84,0.00,0.000000,0.000000,21,0,0.004592,0.009485,63938100,42770775,0,0,54489,0,1,1 +1774128069.312910,0.80,4,3992.50,53.87,1571.97,2108.98,0.00,83336.052799,123301.218384,6904868,2163898,0.003969,0.007263,63938207,42770924,0,0,54492,0,1,1 +1774128074.312831,0.65,4,3992.50,53.72,1577.68,2103.26,0.00,3518492926098.969727,3518492886163.200684,238,2,0.003865,0.007123,63938306,42771064,0,0,54494,0,1,1 +1774128079.312910,1.30,4,3992.50,53.92,1577.12,2110.91,0.00,3518381279988.738281,3518381279990.696777,70,0,0.003428,0.005873,63938393,42771182,0,0,54497,0,1,1 +1774128084.312830,0.75,4,3992.50,53.90,1577.65,2110.41,0.00,83270.535634,123221.173258,6904868,2164156,0.003878,0.007123,63938493,42771322,0,0,54499,0,1,1 +1774128089.312930,0.55,4,3992.50,53.88,1578.41,2109.65,0.00,3518366906047.286621,3518366866098.085449,70,0,0.003903,0.007163,63938595,42771465,0,0,54502,0,1,1 +1774128094.317221,0.70,4,3992.50,53.91,1577.48,2110.59,0.00,1.489054,0.028296,237,378,0.004531,0.008532,63938697,42771611,0,0,54504,0,1,1 +1774128099.317441,0.55,4,3992.50,53.90,1577.76,2110.29,0.00,3518282516332.327148,3518282516333.837402,21,0,0.003513,0.006101,63938789,42771735,0,0,54507,0,1,1 +1774128104.317529,0.55,4,3992.50,53.90,1577.79,2110.28,0.00,83267.784257,123217.154780,6904868,2164291,0.003878,0.007122,63938889,42771875,0,0,54509,0,1,1 +1774128109.313985,1.05,4,3992.50,53.93,1583.11,2111.32,0.00,3520932463264.700195,3520932423286.244629,70,0,0.003956,0.007177,63938994,42772019,0,0,54512,0,1,1 +1774128114.316925,0.60,4,3992.50,53.92,1583.15,2111.28,0.00,3516369703054.326172,0.000000,21,0,0.003863,0.007093,63939093,42772157,0,0,54514,0,1,1 +1774128119.317488,0.55,4,3992.50,53.92,1583.17,2111.27,0.00,83255.775400,123205.622234,6904094,2164074,0.003420,0.005864,63939179,42772274,0,0,54517,0,1,1 +1774128124.317717,0.60,4,3992.50,53.92,1583.18,2111.25,0.00,0.000000,0.009668,6904094,2164084,0.003886,0.007130,63939280,42772415,0,0,54519,0,1,1 +1774128129.316857,0.55,4,3992.50,53.92,1583.20,2111.23,0.00,0.000000,0.033209,6904094,2164124,0.003247,0.006896,63939367,42772549,0,0,54522,0,1,1 +1774128134.312821,11.40,4,3992.50,54.41,1561.93,2130.17,0.00,0.000000,34.092163,6904094,2164365,0.022103,40.097124,63940822,42776974,0,0,54524,0,1,1 +1774128139.314496,1.25,4,3992.50,54.69,1546.59,2141.07,0.00,3517259054168.541992,3517259014191.973145,237,378,0.003172,0.007724,63940912,42777120,0,0,54527,0,1,1 +1774128144.312913,0.70,4,3992.50,54.25,1563.75,2123.91,0.00,3519551095417.915527,3519551095419.425781,21,0,0.002290,0.006358,63940982,42777242,0,0,54529,0,1,1 +1774128149.317694,0.70,4,3992.50,54.08,1570.46,2117.20,0.00,0.048001,0.000000,70,0,0.002129,0.005648,63941044,42777352,0,0,54532,0,1,1 +1774128154.314018,0.70,4,3992.50,54.08,1570.47,2117.20,0.00,83330.461161,123344.482871,6904868,2164901,0.002590,0.006916,63941120,42777485,0,0,54534,0,1,1 +1774128159.315147,0.70,4,3992.50,54.09,1570.00,2117.67,0.00,3517643385813.857422,3517643385817.942871,6904094,2164526,0.002288,0.007008,63941190,42777612,0,0,54537,0,1,1 +1774128164.315482,0.75,4,3992.50,53.90,1577.28,2110.39,0.00,4.109002,6.040611,6904868,2164944,0.002297,0.006364,63941261,42777735,0,0,54539,0,1,1 +1774128169.312907,0.95,4,3992.50,53.96,1574.21,2112.81,0.00,3520249557781.018555,3520249517769.842773,21,0,0.001895,0.005164,63941322,42777838,0,0,54542,0,1,1 +1774128174.312838,1.45,4,3992.50,53.75,1582.48,2104.55,0.00,83266.289984,123261.593192,6904094,2164635,0.002352,0.006418,63941397,42777964,0,0,54544,0,1,1 +1774128179.316320,0.60,4,3992.50,53.75,1582.48,2104.54,0.00,0.000000,0.007807,6904094,2164641,0.002338,0.006424,63941471,42778091,0,0,54547,0,1,1 +1774128184.313626,0.70,4,3992.50,53.77,1581.75,2105.28,0.00,3520333749079.051758,3520333709061.222656,237,378,0.002777,0.007500,63941559,42778241,0,0,54549,0,1,1 +1774128189.312914,0.55,4,3992.50,53.77,1581.75,2105.27,0.00,83275.466586,123277.447216,6904094,2164651,0.001844,0.005099,63941616,42778340,0,0,54552,0,1,1 +1774128194.317696,0.60,4,3992.50,53.77,1581.76,2105.27,0.00,3515075063178.584961,3515075023221.855957,199,0,0.002318,0.006375,63941688,42778464,0,0,54554,0,1,1 +1774128199.316615,4.17,4,3992.50,60.04,1340.36,2350.78,0.00,0.000000,0.000000,199,0,0.406431,0.009877,63941905,42778699,0,0,54557,0,1,1 +1774128204.313904,45.26,4,3992.50,59.94,1347.38,2346.98,0.00,0.000000,0.000000,199,0,102.002476,0.034071,63952617,42780958,0,0,54559,0,1,1 +1774128209.317749,28.75,4,3992.50,59.98,1346.11,2348.23,0.00,83200.986514,123165.348126,6904094,2164800,120.288952,0.067611,63965048,42785968,0,0,54562,0,1,1 +1774128214.313669,29.18,4,3992.50,59.80,1353.21,2341.17,0.00,4.112633,0.094706,6904868,2165208,120.299088,0.114916,63977994,42794754,0,0,54564,0,1,1 +1774128219.317366,29.79,4,3992.50,60.21,1337.22,2357.17,0.00,0.000000,0.028592,6904868,2165224,119.109454,0.114527,63990780,42803634,0,0,54567,0,1,1 +1774128224.312821,29.64,4,3992.50,60.17,1338.42,2355.89,0.00,3521638022001.340820,3521637981973.851562,199,0,119.306414,0.112629,64003570,42812220,0,0,54569,0,1,1 +1774128229.317481,30.14,4,3992.50,59.93,1348.01,2346.36,0.00,3515161011329.422363,0.000000,70,0,119.490041,0.114133,64016536,42820884,0,0,54572,0,1,1 +1774128234.316859,30.20,4,3992.50,59.89,1353.25,2344.95,0.00,3518875316601.594238,0.000000,21,0,119.212888,0.110537,64029417,42829229,0,0,54574,0,1,1 +1774128239.313080,29.30,4,3992.50,59.99,1349.38,2348.82,0.00,83328.120619,123353.486790,6904094,2164921,119.883996,0.102766,64042174,42837240,0,0,54577,0,1,1 +1774128244.317184,9.61,4,3992.50,55.44,1527.46,2170.80,0.00,3515550912459.951172,3515550872496.136230,237,378,85.671167,0.079464,64051348,42843347,0,0,54579,0,1,1 +1774128249.317580,1.50,4,3992.50,54.50,1564.43,2133.81,0.00,3518159141323.129883,3518159141324.591797,70,0,0.009079,0.007830,64051530,42843530,0,0,54582,0,1,1 +1774128254.312821,19.06,4,3992.50,54.99,1545.19,2153.06,0.00,1.960655,0.000195,238,2,26.180999,0.119606,64059850,42849875,0,0,54584,0,1,1 +1774128259.314269,10.03,4,3992.50,55.36,1533.36,2167.57,0.00,3517418221967.750977,3517418221969.582520,199,0,14.094193,0.069764,64064683,42853370,0,0,54587,0,1,1 +1774128264.317548,0.65,4,3992.50,54.79,1555.59,2145.23,0.00,0.000000,0.000000,199,0,0.003888,0.007105,64064784,42853509,0,0,54589,0,1,1 +1774128269.317799,0.70,4,3992.50,54.33,1573.72,2127.09,0.00,1.831744,0.000195,238,2,0.003878,0.007119,64064884,42853649,0,0,54592,0,1,1 +1774128274.317100,0.55,4,3992.50,53.93,1589.18,2111.63,0.00,3518929433915.313965,3518929433917.272949,70,0,0.003408,0.005869,64064969,42853766,0,0,54594,0,1,1 +1774128279.314829,0.80,4,3992.50,54.10,1582.87,2117.95,0.00,3520035949370.745117,0.000000,21,0,0.006876,0.610886,64065191,42854103,0,0,54597,0,1,1 +1774128284.316844,27.51,4,3992.50,54.62,1556.48,2138.58,0.00,0.048028,0.000000,70,0,0.045970,109.314862,64068593,42865553,0,0,54599,0,1,1 +1774128289.314096,24.50,4,3992.50,54.48,1557.96,2132.87,0.00,0.000000,0.000000,70,0,0.025529,95.188050,64070430,42875423,0,0,54602,0,1,1 +1774128294.312838,1.76,4,3992.50,53.87,1581.02,2109.17,0.00,1.490707,0.028327,237,378,0.006310,0.009561,64070565,42875604,0,0,54604,0,1,1 +1774128299.312848,17.33,4,3992.50,55.12,1535.40,2157.93,0.00,3518430238167.849121,3518430238169.184082,199,0,40.064370,0.026009,64074926,42877189,0,0,54607,0,1,1 +1774128304.312881,1.71,4,3992.50,54.30,1567.36,2125.98,0.00,3518413973277.193359,0.000000,70,0,0.004600,0.009364,64075043,42877354,0,0,54609,0,1,1 +1774128309.316951,0.55,4,3992.50,53.91,1582.79,2110.54,0.00,0.126850,0.000000,199,0,0.003405,0.005860,64075128,42877471,0,0,54612,0,1,1 +1774128314.316962,0.60,4,3992.50,53.89,1583.48,2109.85,0.00,83284.890544,123467.124802,6905006,2168558,0.003878,0.007122,64075228,42877611,0,0,54614,0,1,1 +1774128319.317542,0.90,4,3992.50,54.17,1573.18,2120.84,0.00,3518029288905.932129,3518029248728.266113,199,0,0.003878,0.007132,64075328,42877752,0,0,54617,0,1,1 +1774128324.312823,0.85,4,3992.50,54.28,1568.68,2125.20,0.00,3521760636638.946289,0.000000,21,0,0.003907,0.007160,64075430,42877894,0,0,54619,0,1,1 +1774128329.317329,0.55,4,3992.50,54.27,1569.08,2124.80,0.00,0.000000,0.000000,21,0,0.003521,0.006480,64075522,42878022,0,0,54622,0,1,1 +1774128334.314915,0.55,4,3992.50,54.28,1568.73,2125.14,0.00,0.000000,0.000000,21,0,0.003776,0.006505,64075616,42878151,0,0,54624,0,1,1 +1774128339.317740,0.60,4,3992.50,54.28,1568.74,2125.13,0.00,1.537510,0.028304,237,378,0.003969,0.007204,64075722,42878298,0,0,54627,0,1,1 +1774128344.317367,0.60,4,3992.50,54.15,1573.59,2120.29,0.00,3518699791149.836426,3518699791151.346680,21,0,0.004342,0.006525,64075810,42878417,0,0,54629,0,1,1 +1774128349.317151,1.00,4,3992.50,54.16,1572.87,2120.48,0.00,0.000000,0.000000,21,0,0.003763,0.006922,64075911,42878554,0,0,54632,0,1,1 +1774128354.312779,0.60,4,3992.50,54.06,1576.59,2116.76,0.00,83354.025785,123575.888223,6904232,2168581,0.003621,0.006107,64076002,42878677,0,0,54634,0,1,1 +1774128359.316567,9.48,4,3992.50,54.52,1556.89,2134.48,0.00,3515773579758.968750,3515773539600.693359,238,2,0.023138,35.035388,64077368,42882658,0,0,54637,0,1,1 +1774128364.317181,2.86,4,3992.50,53.78,1585.38,2105.42,0.00,83268.907918,123486.434284,6904232,2168886,0.005803,5.016778,64077614,42883382,0,0,54639,0,1,1 +1774128369.312827,0.65,4,3992.50,53.80,1584.42,2106.39,0.00,3521503530441.121094,3521503490185.434082,199,0,0.002303,0.006359,64077685,42883504,0,0,54642,0,1,1 +1774128374.314908,0.60,4,3992.50,53.80,1584.42,2106.39,0.00,3516973827726.120605,0.000000,70,0,0.001830,0.005099,64077741,42883603,0,0,54644,0,1,1 +1774128379.316171,1.40,4,3992.50,54.00,1575.97,2114.26,0.00,0.126921,0.000000,199,0,0.002276,0.006364,64077810,42883726,0,0,54647,0,1,1 +1774128384.317054,0.75,4,3992.50,53.98,1576.80,2113.27,0.00,3517815975245.934082,0.000000,21,0,0.002288,0.006355,64077880,42883848,0,0,54649,0,1,1 +1774128389.312828,0.60,4,3992.50,53.98,1576.84,2113.27,0.00,1.539680,0.028344,237,378,0.002303,0.006371,64077951,42883971,0,0,54652,0,1,1 +1774128394.312836,0.70,4,3992.50,53.98,1576.85,2113.26,0.00,83283.576188,123507.894088,6905006,2169361,0.001856,0.005120,64078009,42884071,0,0,54654,0,1,1 +1774128399.312849,0.60,4,3992.50,53.98,1576.86,2113.26,0.00,0.000000,0.041406,6905006,2169408,0.002347,0.006436,64078084,42884199,0,0,54657,0,1,1 +1774128404.312885,0.60,4,3992.50,53.99,1576.12,2114.00,0.00,3518412016802.480957,3518411976579.804688,70,0,0.002377,0.006449,64078161,42884327,0,0,54659,0,1,1 +1774128409.317103,0.90,4,3992.50,54.04,1578.08,2115.68,0.00,83214.991671,123404.095182,6905006,2169432,0.002442,0.006486,64078241,42884460,0,0,54662,0,1,1 +1774128414.313235,0.70,4,3992.50,54.01,1579.15,2114.61,0.00,3521161543355.404785,3521161503101.294922,21,0,0.001832,0.005093,64078297,42884558,0,0,54664,0,1,1 +1774128419.312912,0.65,4,3992.50,54.09,1575.86,2117.87,0.00,0.175011,0.000000,199,0,0.001831,0.005099,64078353,42884657,0,0,54667,0,1,1 +1774128424.317558,9.42,4,3992.50,60.52,1328.98,2369.33,0.00,83207.770425,123393.607174,6905006,2169483,1.207749,0.011785,64078766,42885009,0,0,54669,0,1,1 +1774128429.315161,40.91,4,3992.50,60.46,1334.54,2367.27,0.00,3520124225391.800781,3520124185149.516602,21,0,113.019492,0.036929,64090750,42887484,0,0,54672,0,1,1 +1774128434.313235,30.24,4,3992.50,60.69,1325.47,2376.20,0.00,0.048065,0.000000,70,0,119.426708,0.060273,64103269,42891905,0,0,54674,0,1,1 +1774128439.316792,30.20,4,3992.50,60.47,1334.35,2367.54,0.00,83221.887763,123420.577606,6904232,2169224,119.090789,0.055314,64115580,42896063,0,0,54677,0,1,1 +1774128444.313776,30.11,4,3992.50,60.17,1346.21,2355.64,0.00,3520561152669.023438,3520561112417.499023,21,0,119.264050,0.099951,64128275,42903808,0,0,54679,0,1,1 +1774128449.316543,30.36,4,3992.50,60.24,1343.36,2358.43,0.00,0.174903,0.000000,199,0,119.684815,0.116879,64141257,42912596,0,0,54682,0,1,1 +1774128454.312736,30.44,4,3992.50,60.33,1339.69,2362.17,0.00,0.000000,0.000000,199,0,118.739194,0.116507,64154105,42921408,0,0,54684,0,1,1 +1774128459.317600,30.36,4,3992.50,60.20,1344.89,2356.97,0.00,3515017805186.168457,0.000000,21,0,120.083479,0.112591,64167146,42930055,0,0,54687,0,1,1 +1774128464.316476,30.68,4,3992.50,60.22,1344.09,2357.77,0.00,1.538724,0.028327,237,378,118.824251,0.111165,64180020,42938738,0,0,54689,0,1,1 +1774128469.313697,8.45,4,3992.50,54.02,1590.09,2115.09,0.00,83326.086336,123577.425967,6904247,2169365,76.375211,0.076436,64188405,42944270,0,0,54692,0,1,1 +1774128474.316871,1.50,4,3992.50,54.04,1587.59,2115.71,0.00,3516204971879.397461,3516204931675.959473,237,378,0.009411,0.009229,64188579,42944449,0,0,54694,0,1,1 +1774128479.316475,13.33,4,3992.50,54.60,1565.58,2137.79,0.00,3518715370369.120605,3518715370370.630859,21,0,18.122065,0.086422,64194626,42948861,0,0,54697,0,1,1 +1774128484.315583,13.65,4,3992.50,54.58,1566.16,2137.06,0.00,83300.273021,123531.525340,6905021,2170764,22.121835,0.088989,64201375,42953918,0,0,54699,0,1,1 +1774128489.312840,2.66,4,3992.50,55.44,1532.49,2170.72,0.00,3520368120737.213379,3520368080489.554688,237,378,0.018715,0.014793,64201767,42954267,0,0,54702,0,1,1 +1774128494.317683,6.37,4,3992.50,54.58,1566.12,2136.96,0.00,3515032610862.360840,3515032610863.869629,21,0,0.020446,22.821444,64203029,42956975,0,0,54704,0,1,1 +1774128499.315787,30.46,4,3992.50,54.74,1554.68,2143.27,0.00,0.175066,0.000000,199,0,0.027017,120.220481,64204872,42969540,0,0,54707,0,1,1 +1774128504.312835,17.00,4,3992.50,54.29,1570.23,2125.72,0.00,83330.325122,123765.488096,6904250,2172050,0.039007,62.137042,64207733,42976209,0,0,54709,0,1,1 +1774128509.317257,1.15,4,3992.50,53.49,1602.87,2094.18,0.00,4.109549,0.114254,6905026,2172524,0.007453,0.010764,64207891,42976419,0,0,54712,0,1,1 +1774128514.316941,15.26,4,3992.50,54.69,1558.80,2141.40,0.00,11.817250,0.048831,6904374,2172247,40.067949,0.023576,64212416,42977813,0,0,54714,0,1,1 +1774128519.313652,0.95,4,3992.50,54.16,1579.79,2120.39,0.00,3520753226338.366211,3520753185916.251465,199,0,0.007075,0.010534,64212577,42978008,0,0,54717,0,1,1 +1774128524.315038,0.95,4,3992.50,54.60,1562.51,2137.65,0.00,83278.084725,123658.394113,6905148,2172716,0.003419,0.005854,64212663,42978124,0,0,54719,0,1,1 +1774128529.317089,0.95,4,3992.50,54.59,1566.39,2137.43,0.00,3516994279678.186523,0.125632,6904374,2172400,0.003826,0.007129,64212759,42978265,0,0,54722,0,1,1 +1774128534.313089,0.65,4,3992.50,54.27,1578.80,2124.77,0.00,3521254059817.418457,3521254019389.340820,199,0,0.003877,0.007124,64212859,42978405,0,0,54724,0,1,1 +1774128539.316275,0.65,4,3992.50,54.31,1577.13,2126.45,0.00,83248.114553,123636.914091,6905148,2172986,0.003901,0.007159,64212961,42978548,0,0,54727,0,1,1 +1774128544.312816,0.60,4,3992.50,54.29,1577.85,2125.73,0.00,3520873416680.740234,3520873416684.830566,6904374,2172614,0.003194,0.005225,64213040,42978652,0,0,54729,0,1,1 +1774128549.317433,0.55,4,3992.50,54.28,1578.34,2125.23,0.00,3515190711982.136719,3515190671598.975098,238,2,0.003053,0.006287,64213123,42978776,0,0,54732,0,1,1 +1774128554.317030,0.60,4,3992.50,54.04,1587.95,2115.62,0.00,3518721128155.374023,3518721128157.332520,70,0,0.003514,0.005931,64213215,42978898,0,0,54734,0,1,1 +1774128559.313801,0.95,4,3992.50,54.35,1570.52,2127.85,0.00,3520710900177.757324,0.000000,21,0,0.003881,0.007812,64213315,42979045,0,0,54737,0,1,1 +1774128564.316271,0.65,4,3992.50,54.28,1573.02,2125.18,0.00,1.537619,0.028306,237,378,0.003938,0.007146,64213419,42979187,0,0,54739,0,1,1 +1774128569.317514,0.60,4,3992.50,54.23,1575.12,2123.07,0.00,3517562580312.852539,3517562580314.314453,70,0,0.003877,0.007131,64213519,42979328,0,0,54742,0,1,1 +1774128574.316813,0.65,4,3992.50,54.23,1575.14,2123.06,0.00,83312.984094,123733.333722,6905148,2173223,0.003879,0.007098,64213619,42979466,0,0,54744,0,1,1 +1774128579.312819,0.60,4,3992.50,54.23,1575.16,2123.04,0.00,3521249475001.342773,3521249434552.897949,237,378,0.003418,0.005890,64213705,42979585,0,0,54747,0,1,1 +1774128584.314034,10.11,4,3992.50,53.95,1583.03,2112.43,0.00,83275.461883,123719.513089,6904374,2173081,0.023855,40.058237,64215218,42984128,0,0,54749,0,1,1 +1774128589.313302,1.15,4,3992.50,53.95,1581.46,2112.13,0.00,3518952553606.407227,3518952513146.107910,238,2,0.002756,0.007313,64215303,42984268,0,0,54752,0,1,1 +1774128594.312935,0.70,4,3992.50,53.98,1579.94,2113.29,0.00,83301.339468,123758.814236,6904374,2173175,0.001831,0.005089,64215359,42984366,0,0,54754,0,1,1 +1774128599.314612,0.55,4,3992.50,53.98,1579.95,2113.29,0.00,3517257160376.521484,3517257119935.583984,238,2,0.002275,0.006364,64215428,42984489,0,0,54757,0,1,1 +1774128604.317253,1.00,4,3992.50,53.81,1586.40,2106.83,0.00,83251.262932,123684.426671,6904383,2173185,0.002288,0.006353,64215498,42984611,0,0,54759,0,1,1 +1774128609.317650,0.85,4,3992.50,53.82,1586.24,2106.99,0.00,4.108951,0.112100,6905157,2173647,0.002289,0.006365,64215568,42984734,0,0,54762,0,1,1 +1774128614.316549,0.85,4,3992.50,53.46,1600.25,2092.97,0.00,3519212158860.222168,3519212118402.794922,21,0,0.001831,0.005090,64215624,42984832,0,0,54764,0,1,1 +1774128619.313029,1.35,4,3992.50,53.74,1590.15,2104.08,0.00,1.539463,0.028340,237,378,0.002324,0.006410,64215697,42984958,0,0,54767,0,1,1 +1774128624.312996,0.85,4,3992.50,53.77,1589.33,2105.02,0.00,0.468460,3518460263242.200684,238,2,0.002339,0.007062,64215771,42985088,0,0,54769,0,1,1 +1774128629.316833,0.90,4,3992.50,53.73,1590.64,2103.71,0.00,3515739848188.806641,3515739848190.763672,70,0,0.002425,0.006505,64215851,42985221,0,0,54772,0,1,1 +1774128634.313543,0.95,4,3992.50,53.78,1588.94,2105.42,0.00,0.127037,0.000000,199,0,0.002155,0.005789,64215920,42985336,0,0,54774,0,1,1 +1774128639.316218,0.75,4,3992.50,53.77,1588.95,2105.41,0.00,83252.524221,123690.194323,6904383,2173395,0.002071,0.005742,64215984,42985448,0,0,54777,0,1,1 +1774128644.317569,0.85,4,3992.50,53.77,1588.96,2105.40,0.00,3517486425686.471680,3517486385238.097168,199,0,0.003210,0.007024,64216056,42985573,0,0,54779,0,1,1 +1774128649.317736,1.45,4,3992.50,53.76,1587.80,2105.02,0.00,3518320251473.897461,0.000000,21,0,0.003634,0.006744,64216146,42985710,0,0,54782,0,1,1 +1774128654.313472,42.55,4,3992.50,59.96,1353.11,2347.59,0.00,1.539692,0.028344,237,378,100.029799,0.053253,64226628,42989375,0,0,54784,0,1,1 +1774128659.316833,29.05,4,3992.50,60.20,1343.70,2357.03,0.00,83243.844119,123673.408761,6905157,2173947,119.483780,0.033922,64238727,42991743,0,0,54787,0,1,1 +1774128664.312833,28.67,4,3992.50,59.99,1351.98,2348.74,0.00,3521254360064.231934,3521254319576.552246,70,0,118.858430,0.030722,64250830,42993980,0,0,54789,0,1,1 +1774128669.317651,29.50,4,3992.50,59.90,1355.38,2345.39,0.00,83221.118405,123637.515638,6905157,2173967,119.452291,0.024307,64263184,42995840,0,0,54792,0,1,1 +1774128674.313506,29.67,4,3992.50,60.12,1346.91,2353.87,0.00,3521356291212.342285,3521356250723.484863,21,0,118.868048,0.042875,64275454,42998932,0,0,54794,0,1,1 +1774128679.312864,29.78,4,3992.50,60.49,1332.41,2368.34,0.00,1.538576,0.028324,237,378,119.583095,0.031932,64287803,43001076,0,0,54797,0,1,1 +1774128684.316908,29.78,4,3992.50,60.27,1340.91,2359.84,0.00,83228.389435,123656.664342,6904383,2173650,119.067205,0.032138,64299905,43003403,0,0,54799,0,1,1 +1774128689.317385,29.88,4,3992.50,60.08,1348.50,2352.19,0.00,0.000000,0.004980,6904383,2173657,119.750514,0.022931,64311800,43004988,0,0,54802,0,1,1 +1774128694.317596,11.45,4,3992.50,54.91,1550.94,2149.88,0.00,3518288886705.835449,3518288846247.896484,199,0,90.320016,0.017595,64320752,43006082,0,0,54804,0,1,1 +1774128699.317449,1.10,4,3992.50,54.21,1578.31,2122.51,0.00,3518540397820.979980,0.000000,21,0,0.004491,0.005257,64320852,43006195,0,0,54807,0,1,1 +1774128704.316509,20.75,4,3992.50,54.69,1559.70,2141.09,0.00,0.048056,0.000000,70,0,26.167576,0.120930,64329123,43012400,0,0,54809,0,1,1 +1774128709.317031,11.43,4,3992.50,54.59,1563.43,2137.31,0.00,83292.663899,123744.459829,6905168,2175007,14.093851,0.068983,64333757,43015907,0,0,54812,0,1,1 +1774128714.314158,1.30,4,3992.50,54.35,1572.14,2127.95,0.00,3520460303844.452148,3520460263363.206543,238,2,0.003509,0.005237,64333837,43016012,0,0,54814,0,1,1 +1774128719.317654,0.85,4,3992.50,54.37,1571.20,2128.89,0.00,0.000000,0.000000,238,2,0.003889,0.007127,64333938,43016153,0,0,54817,0,1,1 +1774128724.313998,0.70,4,3992.50,54.34,1572.64,2127.45,0.00,3521012341398.154297,0.028146,237,378,0.003868,0.007128,64334037,43016293,0,0,54819,0,1,1 +1774128729.317568,0.80,4,3992.50,54.29,1574.38,2125.70,0.00,83236.337811,123669.659034,6904394,2174989,0.003883,0.007135,64334138,43016435,0,0,54822,0,1,1 +1774128734.316818,0.70,4,3992.50,54.35,1572.23,2127.85,0.00,0.000000,0.134004,6904394,2175044,0.003879,0.007098,64334238,43016573,0,0,54824,0,1,1 +1774128739.312847,1.06,4,3992.50,54.23,1574.80,2123.11,0.00,3521233258042.018066,3521233217547.538086,237,378,0.003448,0.005926,64334326,43016694,0,0,54827,0,1,1 +1774128744.313207,0.80,4,3992.50,54.23,1574.30,2123.11,0.00,83293.875461,123749.372329,6905168,2175514,0.003966,0.007234,64334433,43016841,0,0,54829,0,1,1 +1774128749.313653,1.70,4,3992.50,54.03,1582.20,2115.22,0.00,3518123357528.395508,3518123317075.101562,21,0,0.004185,0.007686,64334540,43016993,0,0,54832,0,1,1 +1774128754.315574,0.85,4,3992.50,54.03,1581.96,2115.45,0.00,0.048028,0.000000,70,0,0.004195,0.008330,64334647,43017149,0,0,54834,0,1,1 +1774128759.316969,0.75,4,3992.50,54.03,1581.98,2115.43,0.00,1.489916,0.028312,237,378,0.003463,0.005891,64334736,43017268,0,0,54837,0,1,1 +1774128764.317005,0.80,4,3992.50,54.06,1581.01,2116.41,0.00,3518411914314.727539,3518411914316.237793,21,0,0.003861,0.007130,64334835,43017409,0,0,54839,0,1,1 +1774128769.313628,1.25,4,3992.50,54.05,1579.75,2116.36,0.00,83357.718233,123842.310152,6905168,2175878,0.003868,0.007137,64334934,43017550,0,0,54842,0,1,1 +1774128774.317104,0.90,4,3992.50,53.89,1585.96,2109.81,0.00,3515992345701.658203,3515992305272.522949,21,0,0.003888,0.007117,64335035,43017690,0,0,54844,0,1,1 +1774128779.312838,0.80,4,3992.50,53.70,1593.36,2102.41,0.00,83368.449870,123864.398808,6904394,2175579,0.004093,0.006793,64335124,43017809,0,0,54847,0,1,1 +1774128784.312806,0.75,4,3992.50,53.70,1593.38,2102.39,0.00,3518459209547.016113,3518459169085.323242,70,0,0.004279,0.008174,64335237,43017970,0,0,54849,0,1,1 +1774128789.312958,0.75,4,3992.50,53.54,1599.37,2096.41,0.00,0.000000,0.000000,70,0,0.003878,0.007132,64335337,43018111,0,0,54852,0,1,1 +1774128794.316924,0.75,4,3992.50,53.55,1599.13,2096.64,0.00,0.000000,0.000000,70,0,0.003893,0.007129,64335438,43018252,0,0,54854,0,1,1 +1774128799.315846,1.95,4,3992.50,53.68,1594.11,2101.59,0.00,1.490654,0.028326,237,378,0.008742,1.813051,64335831,43018822,0,0,54857,0,1,1 +1774128804.317511,28.59,4,3992.50,53.69,1587.90,2101.96,0.00,83268.039899,123792.942461,6904394,2176230,0.040035,114.131307,64338685,43030805,0,0,54859,0,1,1 +1774128809.312909,24.08,4,3992.50,53.96,1573.82,2112.84,0.00,4.118537,104.017813,6905172,2177301,0.036951,89.218619,64341510,43040315,0,0,54862,0,1,1 +1774128814.314403,15.66,4,3992.50,54.99,1536.10,2152.89,0.00,11.817659,25.805666,6904555,2177089,40.053218,0.030201,64345970,43042079,0,0,54864,0,1,1 +1774128819.317387,1.05,4,3992.50,54.21,1566.71,2122.28,0.00,4.106826,0.118777,6905329,2177571,0.006233,0.007037,64346108,43042229,0,0,54867,0,1,1 +1774128824.313209,11.72,4,3992.50,54.25,1562.87,2123.98,0.00,3521380030187.300293,3521379989506.606445,21,0,0.023021,40.101161,64347619,43046657,0,0,54869,0,1,1 +1774128829.312840,1.31,4,3992.50,53.72,1576.11,2103.15,0.00,0.000000,0.000000,21,0,0.002744,0.007313,64347702,43046797,0,0,54872,0,1,1 +1774128834.316799,0.95,4,3992.50,53.49,1584.30,2094.21,0.00,2.005248,0.000195,238,2,0.002262,0.006338,64347770,43046918,0,0,54874,0,1,1 +1774128839.315771,0.65,4,3992.50,53.49,1584.31,2094.20,0.00,3519160423093.757812,3519160423095.765137,21,0,0.001839,0.005108,64347827,43047018,0,0,54877,0,1,1 +1774128844.317037,0.60,4,3992.50,53.49,1584.32,2094.19,0.00,0.048035,0.000000,70,0,0.002288,0.006386,64347897,43047142,0,0,54879,0,1,1 +1774128849.317118,0.50,4,3992.50,53.43,1586.70,2091.81,0.00,3518380525661.854980,0.000000,21,0,0.002314,0.006397,64347969,43047267,0,0,54882,0,1,1 +1774128854.317717,0.75,4,3992.50,53.45,1586.00,2092.52,0.00,0.048041,0.000000,70,0,0.002289,0.006355,64348039,43047389,0,0,54884,0,1,1 +1774128859.317384,1.15,4,3992.50,53.72,1575.50,2103.26,0.00,1.490431,0.028322,237,378,0.001831,0.005099,64348095,43047488,0,0,54887,0,1,1 +1774128864.313676,0.70,4,3992.50,53.60,1579.88,2098.64,0.00,3521048222473.341797,3521048222474.677734,199,0,0.002442,0.006547,64348177,43047622,0,0,54889,0,1,1 +1774128869.313586,0.70,4,3992.50,53.60,1579.88,2098.63,0.00,1.831869,0.000195,238,2,0.002376,0.006448,64348253,43047751,0,0,54892,0,1,1 +1774128874.317626,0.70,4,3992.50,53.60,1579.77,2098.75,0.00,3515596812670.528809,3515596812672.534180,21,0,0.002380,0.006426,64348329,43047879,0,0,54894,0,1,1 +1774128879.314544,0.60,4,3992.50,53.60,1579.77,2098.74,0.00,2.008074,0.000195,238,2,0.001832,0.005102,64348385,43047978,0,0,54897,0,1,1 +1774128884.313739,0.70,4,3992.50,53.61,1579.54,2098.97,0.00,3519004150009.442871,3519004150011.401855,70,0,0.002297,0.006365,64348456,43048101,0,0,54899,0,1,1 +1774128889.317297,27.79,4,3992.50,59.98,1340.06,2348.37,0.00,1.957396,0.000195,238,2,66.653312,0.037000,64355663,43050389,0,0,54902,0,1,1 +1774128894.312776,32.59,4,3992.50,59.71,1348.66,2337.68,0.00,83386.634933,124116.905864,6904555,2177958,122.281134,0.042855,64368172,43053454,0,0,54904,0,1,1 +1774128899.313388,29.42,4,3992.50,59.67,1350.28,2336.05,0.00,3518006632727.122070,3518006592040.665527,21,0,120.151194,0.043717,64380470,43056717,0,0,54907,0,1,1 +1774128904.317887,29.53,4,3992.50,59.85,1343.15,2343.24,0.00,83238.357112,123893.226667,6904556,2177985,120.456377,0.039272,64392730,43059649,0,0,54909,0,1,1 +1774128909.312825,29.71,4,3992.50,59.68,1349.90,2336.49,0.00,0.000000,0.034019,6904556,2178028,119.885393,0.051777,64404859,43063471,0,0,54912,0,1,1 +1774128914.317214,29.50,4,3992.50,59.66,1350.63,2335.77,0.00,3515351346642.508789,3515351305986.710938,21,0,120.059448,0.048263,64417057,43067080,0,0,54914,0,1,1 +1774128919.316565,29.14,4,3992.50,59.78,1346.17,2340.65,0.00,0.000000,0.000000,21,0,119.580317,0.040119,64429287,43070074,0,0,54917,0,1,1 +1774128924.317217,29.66,4,3992.50,59.61,1355.07,2333.70,0.00,0.048041,0.000000,70,0,119.350360,0.040439,64441512,43072971,0,0,54919,0,1,1 +1774128929.312816,18.48,4,3992.50,55.40,1521.88,2169.05,0.00,1.960515,0.000195,238,2,117.065321,0.039071,64453460,43075756,0,0,54922,0,1,1 +1774128934.317261,9.50,4,3992.50,54.69,1549.54,2141.32,0.00,3515312227783.370605,3515312227785.375977,21,0,12.076159,0.065123,64457563,43078870,0,0,54924,0,1,1 +1774128939.317289,17.61,4,3992.50,54.90,1541.19,2149.64,0.00,2.006825,0.000195,238,2,28.166390,0.120760,64466620,43085590,0,0,54927,0,1,1 +1774128944.312849,1.61,4,3992.50,54.01,1576.15,2114.68,0.00,83385.443964,124115.936410,6904567,2179218,0.014966,0.012126,64466914,43085856,0,0,54929,0,1,1 +1774128949.314503,1.05,4,3992.50,53.79,1582.58,2106.02,0.00,3517273097405.395508,3517273056725.037109,237,378,0.003877,0.007130,64467014,43085997,0,0,54932,0,1,1 +1774128954.316871,0.70,4,3992.50,53.68,1584.77,2101.88,0.00,83276.523507,123947.470593,6905341,2179846,0.003419,0.006174,64467100,43086115,0,0,54934,0,1,1 +1774128959.313659,0.95,4,3992.50,54.06,1570.13,2116.48,0.00,3520699267791.762207,3520699227076.854492,70,0,0.003881,0.007459,64467200,43086258,0,0,54937,0,1,1 +1774128964.316818,0.70,4,3992.50,53.87,1577.60,2109.06,0.00,83260.746095,123928.139170,6904567,2179525,0.003876,0.007118,64467300,43086398,0,0,54939,0,1,1 +1774128969.312907,0.65,4,3992.50,53.87,1577.38,2109.28,0.00,3521191302110.729980,3521191261383.831543,238,2,0.003881,0.007151,64467400,43086540,0,0,54942,0,1,1 +1774128974.317532,0.55,4,3992.50,53.87,1577.40,2109.26,0.00,3515185268806.796387,3515185268808.801758,21,0,0.002649,0.004355,64467490,43086633,0,0,54944,0,1,1 +1774128979.317255,1.30,4,3992.50,53.87,1578.01,2109.22,0.00,0.048050,0.000000,70,0,0.004145,0.006151,64467627,43086769,0,0,54947,0,1,1 +1774128984.315947,0.75,4,3992.50,53.79,1580.73,2106.09,0.00,0.000000,0.000000,70,0,0.003719,0.005671,64467744,43086882,0,0,54949,0,1,1 +1774128989.312850,0.70,4,3992.50,53.79,1580.75,2106.07,0.00,0.127032,0.000000,199,0,0.003048,0.004714,64467843,43086983,0,0,54952,0,1,1 +1774128994.312907,0.65,4,3992.50,53.42,1595.29,2091.53,0.00,1.363363,0.028320,237,378,0.003846,0.005855,64467958,43087099,0,0,54954,0,1,1 +1774128999.316729,0.75,4,3992.50,53.45,1594.08,2092.74,0.00,3515750430213.887207,3515750430215.395996,21,0,0.003570,0.005285,64468064,43087208,0,0,54957,0,1,1 +1774129004.317455,0.65,4,3992.50,53.46,1593.85,2092.97,0.00,83305.404419,123988.949431,6905341,2180434,0.003587,0.005163,64468170,43087308,0,0,54959,0,1,1 +1774129009.314055,1.10,4,3992.50,53.66,1586.31,2100.80,0.00,3520831198052.206055,0.040653,6904567,2180106,0.003814,0.005869,64468283,43087425,0,0,54962,0,1,1 +1774129014.312858,0.70,4,3992.50,53.47,1593.71,2093.37,0.00,4.110261,0.073260,6905341,2180547,0.002325,0.002986,64468347,43087488,0,0,54964,0,1,1 +1774129019.313442,1.51,4,3992.50,53.61,1587.90,2099.13,0.00,3518026248245.650391,3518026207559.324219,237,378,0.084400,2.710811,64473618,43093016,0,0,54967,0,1,1 +1774129024.315119,2.33,4,3992.50,53.76,1582.11,2104.94,0.00,83288.031228,123965.524951,6905341,2180634,0.127717,4.676098,64482260,43102313,0,0,54969,0,1,1 +1774129029.315273,2.38,4,3992.50,53.66,1586.10,2100.98,0.00,3518328681530.084961,3518328640839.706055,238,2,0.125137,4.673315,64490849,43111460,0,0,54972,0,1,1 +1774129034.312814,2.48,4,3992.50,53.74,1583.05,2104.02,0.00,3520168038193.330566,0.028139,237,378,0.125239,4.672535,64499365,43120614,0,0,54974,0,1,1 +1774129039.312809,2.53,4,3992.50,54.10,1574.27,2118.00,0.00,0.468458,3518441647749.154297,238,2,0.126629,4.675442,64507928,43129852,0,0,54977,0,1,1 +1774129044.312878,2.53,4,3992.50,54.07,1575.30,2116.97,0.00,3518388383501.965820,3518388383503.924316,70,0,0.124456,4.671813,64516492,43138962,0,0,54979,0,1,1 +1774129049.312826,2.63,4,3992.50,54.35,1564.28,2127.85,0.00,3518473878417.913086,0.000000,21,0,0.125353,4.674677,64525077,43148190,0,0,54982,0,1,1 +1774129054.317372,2.62,4,3992.50,54.25,1567.96,2123.96,0.00,0.000000,0.000000,21,0,0.123514,4.672788,64533636,43157326,0,0,54984,0,1,1 +1774129059.316404,2.63,4,3992.50,54.04,1575.98,2115.61,0.00,1.538677,0.028326,237,378,0.125243,4.674258,64542221,43166566,0,0,54987,0,1,1 +1774129064.317621,2.48,4,3992.50,54.18,1569.84,2121.44,0.00,0.468343,3517580624533.872070,238,2,0.123128,4.673279,64550753,43175702,0,0,54989,0,1,1 +1774129069.314479,2.88,4,3992.50,54.18,1567.85,2121.45,0.00,3520650005710.440430,3520650005712.400391,70,0,0.122515,4.672250,64559250,43184767,0,0,54992,0,1,1 +1774129074.317060,2.73,4,3992.50,54.06,1572.69,2116.41,0.00,0.126888,0.000000,199,0,0.123966,4.674498,64567762,43193979,0,0,54994,0,1,1 +1774129079.312817,2.58,4,3992.50,54.13,1569.25,2119.50,0.00,83388.088744,124148.119444,6905341,2181253,0.124216,4.672899,64576323,43203119,0,0,54997,0,1,1 +1774129084.316386,2.52,4,3992.50,54.10,1570.37,2118.11,0.00,3515927859186.680664,3515927818488.947754,237,378,0.124460,4.675133,64584878,43212412,0,0,54999,0,1,1 +1774129089.312813,2.43,4,3992.50,54.07,1571.34,2116.86,0.00,3520952858575.866699,3520952858577.377930,21,0,0.124466,4.674069,64593483,43221584,0,0,55002,0,1,1 +1774129094.317310,2.48,4,3992.50,54.02,1572.77,2115.11,0.00,0.000000,0.000000,21,0,0.123149,4.673547,64602002,43230744,0,0,55004,0,1,1 +1774129099.312813,2.89,4,3992.50,54.40,1557.88,2129.72,0.00,0.000000,0.000000,21,0,0.122175,4.672910,64610531,43239829,0,0,55007,0,1,1 +1774129104.312820,2.68,4,3992.50,53.91,1576.77,2110.82,0.00,83313.279330,124070.679555,6904567,2181140,0.124987,4.672884,64619112,43248966,0,0,55009,0,1,1 +1774129109.312812,2.53,4,3992.50,53.96,1574.70,2112.47,0.00,3518442716375.457520,3518442675617.761719,199,0,0.123266,4.673692,64627638,43258109,0,0,55012,0,1,1 +1774129114.312817,2.38,4,3992.50,53.97,1573.77,2113.09,0.00,3518433912814.183105,0.000000,70,0,0.124656,4.672749,64636203,43267260,0,0,55014,0,1,1 +1774129119.312835,2.63,4,3992.50,53.87,1577.18,2109.23,0.00,1.490326,0.028320,237,378,0.125003,4.674596,64644817,43276479,0,0,55017,0,1,1 +1774129124.316915,2.58,4,3992.50,53.90,1575.73,2110.44,0.00,83243.931688,123997.703501,6904567,2181405,0.124227,4.673974,64653423,43285679,0,0,55019,0,1,1 +1774129129.317030,2.48,4,3992.50,53.88,1576.45,2109.43,0.00,3518356036612.895020,3518355995826.312988,238,2,0.123641,4.672931,64661939,43294830,0,0,55022,0,1,1 +1774129134.316865,2.68,4,3992.50,53.95,1573.41,2112.38,0.00,3518553753233.499023,3518553753235.458008,70,0,0.124756,4.674220,64670449,43303997,0,0,55024,0,1,1 +1774129139.317719,2.58,4,3992.50,53.96,1572.72,2112.79,0.00,1.958454,0.000195,238,2,0.124055,4.673601,64679029,43313197,0,0,55027,0,1,1 +1774129144.312807,2.33,4,3992.50,54.13,1565.83,2119.41,0.00,3521897744602.930176,0.028153,237,378,0.123752,4.673960,64687597,43322400,0,0,55029,0,1,1 +1774129149.316419,2.73,4,3992.50,53.95,1572.74,2112.19,0.00,3515896763922.280762,3515896763923.790039,21,0,0.122649,4.673232,64696168,43331491,0,0,55032,0,1,1 +1774129154.316796,2.53,4,3992.50,54.02,1569.48,2115.11,0.00,0.174987,0.000000,199,0,0.124516,4.675258,64704801,43340754,0,0,55034,0,1,1 +1774129159.317743,2.89,4,3992.50,54.42,1554.05,2130.48,0.00,3517770762287.230469,0.000000,21,0,0.123696,4.672876,64713367,43349888,0,0,55037,0,1,1 +1774129164.316897,2.33,4,3992.50,53.94,1572.39,2111.69,0.00,0.000000,0.000000,21,0,0.123193,4.673617,64721924,43359074,0,0,55039,0,1,1 +1774129169.312809,3.29,4,3992.50,54.04,1567.93,2115.81,0.00,83385.679161,124228.743984,6905341,2182189,0.124066,4.674602,64730438,43368257,0,0,55042,0,1,1 +1774129174.315001,2.53,4,3992.50,53.96,1570.64,2112.81,0.00,3516895444119.133789,3516895444123.226074,6904567,2181830,0.123746,4.672652,64738979,43377375,0,0,55044,0,1,1 +1774129179.317290,2.38,4,3992.50,53.97,1570.18,2113.01,0.00,3516827091179.385742,3516827050384.296875,21,0,0.124386,4.674343,64747530,43386633,0,0,55047,0,1,1 +1774129184.316546,2.38,4,3992.50,53.89,1572.92,2109.96,0.00,1.538608,0.028325,237,378,0.122768,4.673716,64756051,43395761,0,0,55049,0,1,1 +1774129189.317106,2.68,4,3992.50,54.34,1559.55,2127.64,0.00,83302.518577,124141.123637,6904567,2182098,0.125381,4.674220,64764633,43404986,0,0,55052,0,1,1 +1774129194.316758,2.58,4,3992.50,53.91,1575.79,2110.79,0.00,3518682591683.886230,3518682550837.854980,237,378,0.122676,4.673425,64773169,43414109,0,0,55054,0,1,1 +1774129199.317562,2.68,4,3992.50,53.77,1580.96,2105.33,0.00,3517871274154.729004,3517871274156.238770,21,0,0.125335,4.673633,64781791,43423337,0,0,55057,0,1,1 +1774129204.312814,2.33,4,3992.50,53.80,1579.68,2106.36,0.00,83392.586057,124273.125698,6904577,2182168,0.123052,4.674816,64790321,43432543,0,0,55059,0,1,1 +1774129209.312833,2.58,4,3992.50,53.80,1579.70,2106.32,0.00,3518424185509.322754,3518424144667.748047,21,0,0.123480,4.673194,64798857,43441693,0,0,55062,0,1,1 +1774129214.312828,2.48,4,3992.50,53.93,1574.51,2111.34,0.00,2.006838,0.000195,238,2,0.123124,4.672522,64807407,43450799,0,0,55064,0,1,1 +1774129219.317538,2.98,4,3992.50,54.14,1576.73,2119.55,0.00,3515126189197.196777,3515126189199.202148,21,0,0.125435,4.674792,64816067,43460001,0,0,55067,0,1,1 +1774129224.317473,2.88,4,3992.50,53.84,1588.51,2107.79,0.00,83318.596785,124184.912439,6905351,2182850,0.122975,4.673852,64824592,43469180,0,0,55069,0,1,1 +1774129229.312815,2.64,4,3992.50,53.83,1588.72,2107.68,0.00,3521718101835.451172,3521718060931.557617,21,0,0.122573,4.672771,64833146,43478294,0,0,55072,0,1,1 +1774129234.314426,2.48,4,3992.50,53.83,1588.92,2107.38,0.00,2.006189,0.000195,238,2,0.123559,4.674624,64841667,43487484,0,0,55074,0,1,1 +1774129239.313475,2.38,4,3992.50,53.83,1588.80,2107.54,0.00,0.000000,0.000000,238,2,0.124053,4.672871,64850236,43496627,0,0,55077,0,1,1 +1774129244.312836,2.87,4,3992.50,53.62,1599.38,2099.24,0.00,3518887406186.881348,3518887406188.840332,70,0,0.059826,2.053361,64854080,43500715,0,0,55079,0,1,1 +1774129249.317206,15.26,4,3992.50,54.15,1581.26,2120.20,0.00,83256.524214,124103.138299,6904713,2182878,40.048465,0.032973,64859959,43502736,0,0,55082,0,1,1 +1774129254.316389,1.20,4,3992.50,53.85,1592.93,2108.45,0.00,3519011701338.825684,3519011660449.882812,21,0,0.002992,0.007306,64860069,43502857,0,0,55084,0,1,1 +1774129259.315516,1.56,4,3992.50,53.88,1592.03,2109.36,0.00,1.538648,0.028325,237,378,0.082677,2.689423,64865178,43508317,0,0,55087,0,1,1 +1774129264.317755,2.13,4,3992.50,53.85,1593.01,2108.22,0.00,83294.624737,124156.160195,6905487,2183444,0.124391,4.674214,64873692,43517504,0,0,55089,0,1,1 +1774129269.316960,2.43,4,3992.50,53.96,1588.64,2112.57,0.00,3518996507627.023438,0.042390,6904713,2183121,0.124707,4.673974,64882299,43526682,0,0,55092,0,1,1 +1774129274.317183,2.33,4,3992.50,54.22,1577.66,2122.97,0.00,3518280464265.177246,3518280423384.354004,199,0,0.124407,4.672652,64890857,43535849,0,0,55094,0,1,1 +1774129279.317291,2.48,4,3992.50,54.32,1574.62,2126.62,0.00,83331.462079,124211.055825,6905487,2183579,0.124063,4.673806,64899429,43545018,0,0,55097,0,1,1 +1774129284.312815,1.97,4,3992.50,54.30,1575.04,2126.02,0.00,3521589618769.211914,3521589577852.275391,21,0,0.125513,4.675735,64907972,43554265,0,0,55099,0,1,1 +1774129289.317677,2.27,4,3992.50,54.11,1582.14,2118.48,0.00,0.000000,0.000000,21,0,0.122869,4.671577,64916424,43563287,0,0,55102,0,1,1 +1774129294.317198,2.27,4,3992.50,54.03,1584.86,2115.51,0.00,2.007028,0.000195,238,2,0.123990,4.674349,64924991,43572523,0,0,55104,0,1,1 +1774129299.316711,1.92,4,3992.50,54.16,1579.51,2120.56,0.00,83335.449329,124237.913196,6904714,2183387,0.122912,4.673062,64933512,43581583,0,0,55107,0,1,1 +1774129304.316398,1.51,4,3992.50,53.85,1591.72,2108.21,0.00,4.109535,4.084533,6905488,2183823,0.031471,1.020464,64935488,43583717,0,0,55109,0,1,1 +1774129309.316480,1.00,4,3992.50,53.90,1589.23,2110.42,0.00,3518379435385.998047,3518379394490.043945,199,0,0.002595,0.005768,64935587,43583831,0,0,55112,0,1,1 +1774129314.317396,0.70,4,3992.50,53.90,1588.37,2110.35,0.00,3517792621930.594238,0.000000,21,0,0.001716,0.003874,64935653,43583909,0,0,55114,0,1,1 +1774129319.313010,0.70,4,3992.50,54.02,1583.79,2114.89,0.00,0.000000,0.000000,21,0,0.002269,0.005117,64935739,43584009,0,0,55117,0,1,1 +1774129324.312987,0.60,4,3992.50,53.83,1591.24,2107.48,0.00,0.048047,0.000000,70,0,0.002258,0.005108,64935825,43584108,0,0,55119,0,1,1 +1774129329.313761,0.70,4,3992.50,53.83,1591.25,2107.48,0.00,83320.519754,124234.892418,6905488,2184102,0.001662,0.003843,64935887,43584184,0,0,55122,0,1,1 +1774129334.316951,0.65,4,3992.50,53.83,1591.25,2107.47,0.00,3516193443563.826172,3516193443567.912109,6904714,2183730,0.002256,0.005091,64935972,43584282,0,0,55124,0,1,1 +1774129339.313085,1.00,4,3992.50,53.89,1589.51,2110.03,0.00,3521159818721.478027,3521159777764.895020,199,0,0.002181,0.004985,64936060,43584383,0,0,55127,0,1,1 +1774129344.317703,0.90,4,3992.50,53.93,1588.10,2111.47,0.00,3515190148299.791504,0.000000,70,0,0.001842,0.004017,64936127,43584461,0,0,55129,0,1,1 +1774129349.313639,0.60,4,3992.50,54.09,1581.77,2117.80,0.00,1.491544,0.028343,237,378,0.002427,0.005840,64936224,43584571,0,0,55132,0,1,1 +1774129354.312928,0.80,4,3992.50,53.90,1589.40,2110.17,0.00,0.000000,0.000000,237,378,0.003735,0.006709,64936328,43584694,0,0,55134,0,1,1 +1774129359.312963,0.55,4,3992.50,53.93,1588.18,2111.39,0.00,3518412168342.307617,3518412168343.769531,70,0,0.001909,0.004078,64936400,43584776,0,0,55137,0,1,1 +1774129364.312911,0.80,4,3992.50,53.69,1597.52,2102.05,0.00,0.126954,0.000000,199,0,0.003626,0.006542,64936509,43584892,0,0,55139,0,1,1 +1774129369.317524,16.42,4,3992.50,61.48,1304.71,2406.96,0.00,83252.351811,124139.788285,6904714,2183934,2.400794,0.068607,64941450,43588891,0,0,55142,0,1,1 +1774129374.317380,2.03,4,3992.50,61.36,1309.09,2402.57,0.00,3518538151230.209961,3518538110302.538086,237,378,4.676003,0.128573,64950731,43597604,0,0,55144,0,1,1 +1774129379.313012,1.73,4,3992.50,61.44,1306.14,2405.54,0.00,3521514105772.550781,3521514105773.887207,199,0,4.673220,0.128523,64960006,43606251,0,0,55147,0,1,1 +1774129384.317326,2.03,4,3992.50,61.46,1305.43,2406.34,0.00,0.000000,0.000000,199,0,4.684358,0.126560,64969186,43614844,0,0,55149,0,1,1 +1774129389.313384,2.13,4,3992.50,61.94,1286.93,2424.92,0.00,83399.021436,124352.437151,6905488,2184398,4.699253,0.126935,64978467,43623470,0,0,55152,0,1,1 +1774129394.317042,1.88,4,3992.50,61.64,1298.74,2413.23,0.00,3515865077228.103516,3515865077232.187500,6904714,2184036,4.685571,0.126618,64987722,43632066,0,0,55154,0,1,1 +1774129399.313192,1.98,4,3992.50,61.70,1296.79,2415.68,0.00,3521148776311.139160,3521148735354.507324,70,0,4.686252,0.127791,64997007,43640686,0,0,55157,0,1,1 +1774129404.316959,2.33,4,3992.50,61.60,1300.39,2411.91,0.00,3515787745692.717773,0.000000,21,0,4.670288,0.125520,65006211,43649194,0,0,55159,0,1,1 +1774129409.313215,1.98,4,3992.50,61.46,1306.06,2406.38,0.00,0.175131,0.000000,199,0,4.688186,0.128425,65015469,43657801,0,0,55162,0,1,1 +1774129414.317094,2.03,4,3992.50,61.48,1305.59,2406.98,0.00,3515709322908.922852,0.000000,70,0,4.703871,0.127544,65024744,43666406,0,0,55164,0,1,1 +1774129419.317155,1.93,4,3992.50,61.62,1300.46,2412.58,0.00,0.126952,0.000000,199,0,4.699049,0.128058,65034062,43675020,0,0,55167,0,1,1 +1774129424.317393,2.03,4,3992.50,61.32,1312.40,2400.82,0.00,1.363314,0.028319,237,378,4.668075,0.127647,65043256,43683617,0,0,55169,0,1,1 +1774129429.317643,2.13,4,3992.50,61.57,1301.18,2410.77,0.00,0.468434,3518261060106.675781,238,2,4.667678,0.129262,65052566,43692265,0,0,55172,0,1,1 +1774129434.317384,1.98,4,3992.50,61.55,1302.18,2409.86,0.00,3518619537412.281738,3518619537414.113770,199,0,4.713540,0.125374,65061764,43700815,0,0,55174,0,1,1 +1774129439.313796,2.13,4,3992.50,61.59,1300.89,2411.34,0.00,1.364358,0.028341,237,378,4.689667,0.126799,65070976,43709396,0,0,55177,0,1,1 +1774129444.315468,1.82,4,3992.50,61.47,1305.83,2406.80,0.00,3517260536100.489258,3517260536101.998535,21,0,4.686031,0.125469,65080235,43717938,0,0,55179,0,1,1 +1774129449.316778,1.93,4,3992.50,61.59,1301.52,2411.30,0.00,0.000000,0.000000,21,0,4.694487,0.126996,65089494,43726528,0,0,55182,0,1,1 +1774129454.313157,1.93,4,3992.50,61.37,1310.11,2402.69,0.00,0.000000,0.000000,21,0,4.667032,0.125398,65098760,43735088,0,0,55184,0,1,1 +1774129459.313794,2.18,4,3992.50,61.41,1300.16,2404.18,0.00,0.000000,0.000000,21,0,4.693998,0.127664,65108017,43743697,0,0,55187,0,1,1 +1774129464.312853,2.03,4,3992.50,61.12,1311.21,2392.83,0.00,0.048056,0.000000,70,0,4.660498,0.126337,65117179,43752214,0,0,55189,0,1,1 +1774129469.316131,2.84,4,3992.50,61.26,1305.50,2398.57,0.00,3516132577365.980469,0.000000,21,0,4.724759,0.126207,65126514,43760819,0,0,55192,0,1,1 +1774129474.316759,1.93,4,3992.50,60.86,1321.36,2382.69,0.00,83318.865978,124239.041373,6904714,2184369,4.671553,0.127212,65135726,43769379,0,0,55194,0,1,1 +1774129479.313112,2.03,4,3992.50,61.31,1303.72,2400.35,0.00,3521005269336.734863,3521005228380.031738,237,378,4.687466,0.128772,65144960,43777961,0,0,55197,0,1,1 +1774129484.317376,1.93,4,3992.50,61.02,1314.88,2389.18,0.00,3515439191014.152832,3515439191015.661621,21,0,4.693296,0.124883,65154176,43786422,0,0,55199,0,1,1 +1774129489.317689,2.13,4,3992.50,61.33,1303.27,2401.10,0.00,0.174989,0.000000,199,0,4.667368,0.127719,65163378,43795032,0,0,55202,0,1,1 +1774129494.316882,1.88,4,3992.50,61.38,1301.33,2403.03,0.00,0.000000,0.000000,199,0,4.685363,0.127891,65172663,43803666,0,0,55204,0,1,1 +1774129499.313375,1.93,4,3992.50,61.43,1299.79,2404.96,0.00,3520906603771.393555,0.000000,21,0,4.709603,0.124825,65181940,43812237,0,0,55207,0,1,1 +1774129504.315293,1.98,4,3992.50,61.21,1307.84,2396.69,0.00,0.000000,0.000000,21,0,4.682839,0.128474,65191260,43820906,0,0,55209,0,1,1 +1774129509.313004,2.13,4,3992.50,61.28,1305.24,2399.27,0.00,0.175080,0.000000,199,0,4.683445,0.128097,65200492,43829502,0,0,55212,0,1,1 +1774129514.313305,2.08,4,3992.50,61.23,1307.20,2397.33,0.00,0.000000,0.000000,199,0,4.691796,0.126717,65209701,43838049,0,0,55214,0,1,1 +1774129519.313433,2.23,4,3992.50,61.81,1284.83,2420.20,0.00,1.363344,0.028320,237,378,4.673221,0.126576,65218861,43846622,0,0,55217,0,1,1 +1774129524.313433,2.28,4,3992.50,61.30,1305.20,2399.92,0.00,83331.899741,124254.870083,6905488,2185018,4.709053,0.126439,65228154,43855180,0,0,55219,0,1,1 +1774129529.317128,2.08,4,3992.50,61.40,1301.06,2403.93,0.00,3515839237482.124023,3515839196590.697754,199,0,4.652356,0.126470,65237301,43863753,0,0,55222,0,1,1 +1774129534.317557,2.23,4,3992.50,61.34,1303.45,2401.69,0.00,83322.010964,124244.241364,6904714,2184672,4.712931,0.126037,65246576,43872382,0,0,55224,0,1,1 +1774129539.316986,2.08,4,3992.50,61.25,1307.13,2397.90,0.00,3518838741879.801270,3518838700949.512207,70,0,4.675380,0.127261,65255824,43881027,0,0,55227,0,1,1 +1774129544.317492,2.13,4,3992.50,61.17,1309.98,2395.02,0.00,0.126940,0.000000,199,0,4.684476,0.127522,65265090,43889571,0,0,55229,0,1,1 +1774129549.317062,2.33,4,3992.50,61.47,1298.25,2406.61,0.00,1.363496,0.028323,237,378,4.688692,0.127043,65274369,43898176,0,0,55232,0,1,1 +1774129554.317316,2.13,4,3992.50,60.83,1322.83,2381.62,0.00,0.468433,3518258860601.358887,238,2,4.711501,0.127001,65283654,43906735,0,0,55234,0,1,1 +1774129559.312919,2.08,4,3992.50,61.01,1315.79,2388.67,0.00,3521533731523.886719,3521533731525.895508,21,0,4.682843,0.126993,65292884,43915310,0,0,55237,0,1,1 +1774129564.315226,1.98,4,3992.50,61.10,1312.23,2392.26,0.00,0.048025,0.000000,70,0,4.680403,0.126912,65302132,43923887,0,0,55239,0,1,1 +1774129569.312984,2.29,4,3992.50,60.97,1317.38,2387.10,0.00,3520015700787.906738,0.000000,21,0,4.688285,0.127093,65311341,43932503,0,0,55242,0,1,1 +1774129574.316506,2.13,4,3992.50,61.06,1313.71,2390.75,0.00,0.174877,0.000000,199,0,4.684609,0.126894,65320587,43941125,0,0,55244,0,1,1 +1774129579.313065,2.49,4,3992.50,61.39,1310.68,2403.69,0.00,83390.663323,124340.674257,6905488,2185246,4.679553,0.128088,65329868,43949685,0,0,55247,0,1,1 +1774129584.312951,2.28,4,3992.50,61.35,1312.13,2402.07,0.00,3518517299892.351074,3518517258969.764160,21,0,4.672174,0.125947,65339045,43958207,0,0,55249,0,1,1 +1774129589.312937,2.69,4,3992.50,61.09,1322.46,2391.74,0.00,0.175000,0.000000,199,0,4.714564,0.127036,65348373,43966773,0,0,55252,0,1,1 +1774129594.317261,2.03,4,3992.50,61.24,1316.71,2397.61,0.00,3515397022526.972168,0.000000,70,0,4.683445,0.126204,65357556,43975347,0,0,55254,0,1,1 +1774129599.313607,2.39,4,3992.50,61.28,1314.83,2399.33,0.00,3521010633867.999023,0.000000,21,0,4.679198,0.126542,65366812,43983886,0,0,55257,0,1,1 +1774129604.316527,1.98,4,3992.50,61.25,1316.09,2398.09,0.00,83280.704594,124182.723876,6904714,2184987,4.692526,0.127747,65376042,43992439,0,0,55259,0,1,1 +1774129609.313357,3.15,4,3992.50,61.78,1295.25,2418.92,0.00,3520669170660.815430,3520669129708.946289,21,0,4.679312,0.128319,65385275,44000995,0,0,55262,0,1,1 +1774129614.312890,1.93,4,3992.50,61.65,1300.30,2413.91,0.00,0.000000,0.000000,21,0,4.683315,0.125526,65394488,44009409,0,0,55264,0,1,1 +1774129619.313311,2.43,4,3992.50,61.27,1315.23,2398.97,0.00,83326.436600,124244.898058,6905488,2185443,4.698720,0.126918,65403787,44018013,0,0,55267,0,1,1 +1774129624.312799,1.93,4,3992.50,61.32,1313.20,2400.96,0.00,3518798016993.344727,3518797976067.066895,199,0,4.670802,0.127046,65413006,44026568,0,0,55269,0,1,1 +1774129629.313130,1.98,4,3992.50,61.21,1317.56,2396.63,0.00,3518203600867.567871,0.000000,21,0,4.699653,0.127184,65422256,44035152,0,0,55272,0,1,1 +1774129634.313630,2.13,4,3992.50,61.02,1325.21,2388.98,0.00,1.538225,0.028317,237,378,4.687450,0.126873,65431529,44043717,0,0,55274,0,1,1 +1774129639.313698,2.44,4,3992.50,61.23,1302.38,2397.17,0.00,83330.787291,124253.708196,6905488,2185520,4.693933,0.127085,65440805,44052291,0,0,55277,0,1,1 +1774129644.316479,1.93,4,3992.50,60.83,1317.86,2381.56,0.00,3516480895974.628418,3516480855075.369141,70,0,4.675344,0.127317,65450085,44060903,0,0,55279,0,1,1 +1774129649.316840,2.18,4,3992.50,60.84,1317.22,2382.22,0.00,1.958648,0.000195,238,2,4.697063,0.126508,65459325,44069476,0,0,55282,0,1,1 +1774129654.317157,1.98,4,3992.50,60.65,1324.91,2374.54,0.00,0.000000,0.000000,238,2,4.670999,0.128845,65468584,44078036,0,0,55284,0,1,1 +1774129659.313275,2.13,4,3992.50,60.82,1318.34,2381.11,0.00,3521171236372.359375,3521171236374.367676,21,0,4.679970,0.128374,65477839,44086549,0,0,55287,0,1,1 +1774129664.317497,2.23,4,3992.50,60.87,1316.13,2383.32,0.00,0.174852,0.000000,199,0,4.707321,0.126955,65487115,44095130,0,0,55289,0,1,1 +1774129669.317119,10.12,4,3992.50,60.96,1313.84,2386.88,0.00,83335.476185,124265.022405,6904715,2185468,10.800100,0.193941,65501951,44107507,0,0,55292,0,1,1 +1774129674.315412,11.81,4,3992.50,61.49,1292.36,2407.62,0.00,3519638780214.300781,3519638739272.043457,238,2,18.854346,0.256725,65523608,44124668,0,0,55294,0,1,1 +1774129679.317671,13.63,4,3992.50,60.59,1327.64,2372.14,0.00,3516848563278.963379,0.028112,237,378,22.922107,0.279521,65548470,44144079,0,0,55297,0,1,1 +1774129684.313393,3.46,4,3992.50,61.69,1284.78,2415.16,0.00,0.000000,0.000000,237,378,4.846331,0.137417,65558359,44152974,0,0,55299,0,1,1 +1774129689.317120,2.53,4,3992.50,61.45,1294.25,2405.80,0.00,3515816071666.873535,3515816071668.382812,21,0,6.557875,0.143566,65569060,44162655,0,0,55302,0,1,1 +1774129694.313198,2.39,4,3992.50,61.38,1296.61,2403.31,0.00,0.000000,0.000000,21,0,4.700046,0.139214,65578309,44171287,0,0,55304,0,1,1 +1774129699.314934,3.16,4,3992.50,61.21,1303.86,2396.32,0.00,83304.532982,124213.678827,6905489,2187178,4.616722,4.455636,65595352,44188116,0,0,55307,0,1,1 +1774129704.316864,3.21,4,3992.50,61.21,1303.78,2396.39,0.00,3517079644650.046387,3517079603742.488281,21,0,4.477559,4.602613,65612139,44204773,0,0,55309,0,1,1 +1774129709.313004,3.26,4,3992.50,61.19,1304.56,2395.59,0.00,0.175135,0.000000,199,0,4.699753,4.675619,65629419,44221886,0,0,55312,0,1,1 +1774129714.312988,3.42,4,3992.50,61.16,1305.59,2394.55,0.00,0.000000,0.000000,199,0,4.614915,4.618510,65646428,44238891,0,0,55314,0,1,1 +1774129719.313956,3.16,4,3992.50,61.33,1298.93,2401.20,0.00,83313.034137,124246.011871,6904715,2187193,4.680325,4.617138,65663642,44255975,0,0,55317,0,1,1 +1774129724.316344,5.44,4,3992.50,61.09,1308.50,2391.75,0.00,3516757459592.873535,3516757418671.688965,21,0,4.554865,4.627343,65680469,44272815,0,0,55319,0,1,1 +1774129729.317204,4.25,4,3992.50,61.38,1301.55,2403.05,0.00,83319.126493,124248.826161,6905489,2187637,4.715231,4.492166,65697513,44289895,0,0,55322,0,1,1 +1774129734.312827,3.27,4,3992.50,61.09,1312.59,2391.91,0.00,3521519684988.787598,3521519644016.186035,21,0,4.682790,4.530305,65714405,44306744,0,0,55324,0,1,1 +1774129739.313014,3.62,4,3992.50,61.18,1308.79,2395.34,0.00,0.000000,0.000000,21,0,4.661130,4.296390,65731041,44323366,0,0,55327,0,1,1 +1774129744.315690,4.04,4,3992.50,61.20,1307.70,2396.12,0.00,83288.883752,124229.788026,6905489,2187898,4.634938,4.581642,65748025,44340224,0,0,55329,0,1,1 +1774129749.315029,3.22,4,3992.50,61.17,1308.49,2395.08,0.00,0.000000,0.009669,6905489,2187921,4.753478,4.390362,65764950,44357097,0,0,55332,0,1,1 +1774129754.313501,3.58,4,3992.50,61.33,1302.02,2401.21,0.00,3519512973795.091309,3519512932819.744629,21,0,4.713079,4.585986,65782047,44374007,0,0,55334,0,1,1 +1774129759.313279,4.15,4,3992.50,61.44,1296.74,2405.33,0.00,0.000000,0.000000,21,0,4.651366,4.674609,65799124,44391006,0,0,55337,0,1,1 +1774129764.316482,3.32,4,3992.50,61.28,1302.75,2399.25,0.00,0.048016,0.000000,70,0,4.705981,4.442563,65816081,44407929,0,0,55339,0,1,1 +1774129769.317270,3.31,4,3992.50,61.29,1301.97,2399.82,0.00,83320.279160,124276.852999,6905489,2188075,4.661020,4.417891,65832942,44424664,0,0,55342,0,1,1 +1774129774.317190,3.52,4,3992.50,61.30,1301.93,2399.86,0.00,3518493075922.942871,3518493034959.314941,21,0,4.609255,4.420447,65849602,44441306,0,0,55344,0,1,1 +1774129779.316886,3.26,4,3992.50,61.32,1301.03,2400.70,0.00,0.000000,0.000000,21,0,4.631005,4.488531,65866490,44458109,0,0,55347,0,1,1 +1774129784.313465,3.28,4,3992.50,61.29,1302.15,2399.62,0.00,83390.501044,124408.171511,6905489,2188285,4.611108,4.654973,65883571,44475107,0,0,55349,0,1,1 +1774129789.312973,3.43,4,3992.50,61.50,1293.75,2407.88,0.00,3518783269667.498535,3518783228673.856934,21,0,4.491156,4.364808,65899897,44491286,0,0,55352,0,1,1 +1774129794.313405,3.22,4,3992.50,61.27,1302.87,2399.00,0.00,2.006663,0.000195,238,2,4.571314,4.676379,65916827,44508239,0,0,55354,0,1,1 +1774129799.312835,3.42,4,3992.50,61.46,1295.40,2406.49,0.00,3518838584500.741211,3518838584502.573730,199,0,4.668340,4.617232,65933851,44525309,0,0,55357,0,1,1 +1774129804.314223,3.77,4,3992.50,61.55,1291.94,2409.98,0.00,0.000000,0.000000,199,0,4.535069,4.675618,65950730,44542250,0,0,55359,0,1,1 +1774129809.316540,3.37,4,3992.50,61.47,1294.98,2406.88,0.00,83290.575005,124293.239033,6904725,2188272,4.520067,4.674578,65967621,44559117,0,0,55362,0,1,1 +1774129814.317521,3.37,4,3992.50,61.53,1292.92,2408.91,0.00,3517746714994.873535,3517746673981.380859,70,0,4.686369,4.580944,65984798,44576227,0,0,55364,0,1,1 +1774129819.317084,4.02,4,3992.50,61.75,1288.26,2417.66,0.00,1.958960,0.000195,238,2,4.699101,4.122355,66001011,44592342,0,0,55367,0,1,1 +1774129824.316724,3.32,4,3992.50,61.40,1302.10,2403.88,0.00,83333.354135,124368.512112,6904725,2188426,4.307711,4.648723,66017605,44608914,0,0,55369,0,1,1 +1774129829.316840,3.22,4,3992.50,61.26,1307.12,2398.59,0.00,3518355288611.368652,3518355247580.618652,237,378,4.634683,4.648669,66034751,44625923,0,0,55372,0,1,1 +1774129834.316533,3.16,4,3992.50,61.33,1304.57,2401.10,0.00,3518653112733.103027,3518653112734.438477,199,0,4.342063,4.571426,66051183,44642247,0,0,55374,0,1,1 +1774129839.316982,3.17,4,3992.50,61.37,1302.71,2402.92,0.00,1.831672,0.000195,238,2,4.631402,4.626885,66068430,44659438,0,0,55377,0,1,1 +1774129844.313704,3.16,4,3992.50,61.41,1301.33,2404.24,0.00,3520745075587.653809,0.028143,237,378,3.670043,4.673491,66083669,44674672,0,0,55379,0,1,1 +1774129849.315392,3.88,4,3992.50,61.85,1281.80,2421.41,0.00,3517250090548.575195,3517250090549.910156,199,0,4.678828,4.522022,66100693,44691664,0,0,55382,0,1,1 +1774129854.317556,3.12,4,3992.50,61.61,1290.87,2412.32,0.00,1.362789,0.028308,237,378,4.669764,4.634566,66117839,44708661,0,0,55384,0,1,1 +1774129859.315988,3.27,4,3992.50,61.39,1299.67,2403.38,0.00,0.468604,3519541290393.784668,238,2,4.697184,4.531966,66134904,44725698,0,0,55387,0,1,1 +1774129864.315786,3.22,4,3992.50,61.27,1304.29,2398.80,0.00,83330.710211,124391.733374,6904725,2188783,4.610694,4.561419,66151888,44742601,0,0,55389,0,1,1 +1774129869.312803,3.22,4,3992.50,61.30,1303.14,2399.90,0.00,0.000000,0.008110,6904725,2188805,4.694996,4.497129,66168867,44759373,0,0,55392,0,1,1 +1774129874.315123,44.01,4,3992.50,60.73,1326.34,2377.70,0.00,3516805512076.849121,3516805471038.520508,21,0,114.467820,54.009123,66191889,44777863,0,0,55394,0,1,1 +1774129879.316606,32.64,4,3992.50,60.65,1330.79,2374.67,0.00,0.000000,0.000000,21,0,124.697649,0.047317,66205172,44781456,0,0,55397,0,1,1 +1774129884.312918,41.73,4,3992.50,62.33,1269.81,2440.31,0.00,0.000000,0.000000,21,0,157.333394,0.084782,66222245,44787684,0,0,55399,0,1,1 +1774129889.313442,27.74,4,3992.50,60.24,1351.48,2358.62,0.00,83340.685359,124450.189759,6905627,2189984,106.130973,0.053265,66232483,44791564,0,0,55402,0,1,1 +1774129894.316314,17.37,4,3992.50,60.32,1348.52,2361.68,0.00,3516417400873.245605,3516417359781.027344,238,2,110.880515,0.049826,66243243,44795460,0,0,55404,0,1,1 +1774129899.317751,11.39,4,3992.50,55.67,1529.98,2179.56,0.00,3517426542491.875488,3517426542493.833496,70,0,1.627978,40.060613,66244954,44800201,0,0,55407,0,1,1 +1774129904.317412,0.85,4,3992.50,54.85,1562.14,2147.41,0.00,83355.113520,124503.859275,6905645,2190361,0.002842,0.007316,66245036,44800341,0,0,55409,0,1,1 +1774129909.316396,1.10,4,3992.50,54.45,1577.18,2132.02,0.00,3519152290477.475098,3519152249323.200684,21,0,0.002068,0.005729,66245100,44800452,0,0,55412,0,1,1 +1774129914.317099,0.65,4,3992.50,54.48,1576.24,2132.95,0.00,0.000000,0.000000,21,0,0.002060,0.005734,66245163,44800563,0,0,55414,0,1,1 +1774129919.313959,0.70,4,3992.50,54.48,1576.00,2133.20,0.00,2.008097,0.000195,238,2,0.002278,0.006370,66245232,44800686,0,0,55417,0,1,1 +1774129924.317601,0.75,4,3992.50,54.56,1572.97,2136.18,0.00,3515876502502.154297,3515876502504.111328,70,0,0.002275,0.006351,66245301,44800808,0,0,55419,0,1,1 +1774129929.317264,0.65,4,3992.50,54.38,1580.10,2129.05,0.00,1.490432,0.028322,237,378,0.002297,0.006362,66245372,44800931,0,0,55422,0,1,1 +1774129934.315786,0.65,4,3992.50,54.42,1578.68,2130.51,0.00,3519477968493.707520,3519477968495.042969,199,0,0.001958,0.005580,66245438,44801042,0,0,55424,0,1,1 +1774129939.316912,0.95,4,3992.50,54.31,1578.57,2126.29,0.00,83326.463229,124475.862783,6904871,2190216,0.002288,0.006686,66245508,44801167,0,0,55427,0,1,1 +1774129944.317675,0.75,4,3992.50,54.28,1579.42,2125.29,0.00,3517900375557.777832,3517900334403.556641,238,2,0.002445,0.006536,66245590,44801301,0,0,55429,0,1,1 +1774129949.317596,0.65,4,3992.50,54.31,1578.21,2126.50,0.00,3518492751104.063477,3518492751106.070312,21,0,0.002421,0.006475,66245669,44801433,0,0,55432,0,1,1 +1774129954.317317,0.65,4,3992.50,54.31,1578.21,2126.50,0.00,83354.175474,124510.911864,6905645,2190617,0.002438,0.006198,66245738,44801553,0,0,55434,0,1,1 +1774129959.315907,0.60,4,3992.50,53.94,1592.66,2112.05,0.00,0.000000,0.002344,6905645,2190620,0.002289,0.006368,66245808,44801676,0,0,55437,0,1,1 +1774129964.316938,0.70,4,3992.50,53.97,1591.68,2113.04,0.00,3517711908418.304199,3517711867272.348633,21,0,0.002288,0.006355,66245878,44801798,0,0,55439,0,1,1 +1774129969.317579,31.99,4,3992.50,60.57,1333.23,2371.59,0.00,2.006579,0.000195,238,2,69.095156,0.045783,66253242,44804823,0,0,55442,0,1,1 +1774129974.313982,31.39,4,3992.50,60.53,1338.18,2369.89,0.00,3520970559874.517090,3520970559876.525391,21,0,118.848260,0.053695,66265211,44808732,0,0,55444,0,1,1 +1774129979.313199,29.41,4,3992.50,60.64,1333.91,2374.38,0.00,1.538620,0.028325,237,378,119.379644,0.051769,66277180,44812721,0,0,55447,0,1,1 +1774129984.313498,29.75,4,3992.50,60.61,1335.23,2373.01,0.00,3518227094026.797852,3518227094028.308105,21,0,118.554598,0.049481,66289204,44816484,0,0,55449,0,1,1 +1774129989.316366,29.04,4,3992.50,60.38,1344.36,2363.90,0.00,83301.728706,124432.901546,6905645,2190858,119.694766,0.054924,66301321,44820657,0,0,55452,0,1,1 +1774129994.316712,28.76,4,3992.50,60.48,1340.33,2367.75,0.00,0.000000,0.031834,6905645,2190876,119.356108,0.056561,66313425,44824835,0,0,55454,0,1,1 +1774129999.312877,28.81,4,3992.50,60.36,1345.24,2363.04,0.00,3521137528157.676758,3521137486971.290039,21,0,119.051474,0.052049,66325374,44828900,0,0,55457,0,1,1 +1774130004.316451,29.32,4,3992.50,60.29,1347.78,2360.35,0.00,83285.885192,124415.470112,6904871,2190535,119.879836,0.056291,66337566,44833059,0,0,55459,0,1,1 +1774130009.313257,18.89,4,3992.50,60.39,1343.96,2364.24,0.00,4.112686,0.071335,6905646,2190946,118.839710,0.056508,66349611,44837167,0,0,55462,0,1,1 +1774130014.317752,0.95,4,3992.50,54.36,1580.05,2128.15,0.00,0.159232,0.096593,6905662,2190971,2.807282,0.008517,66350044,44837434,0,0,55464,0,1,1 +1774130019.316387,6.07,4,3992.50,54.25,1584.06,2124.12,0.00,3519398150695.429199,3519398109527.303223,238,2,2.036801,0.022589,66351080,44838172,0,0,55467,0,1,1 +1774130024.316385,17.61,4,3992.50,54.71,1565.95,2142.16,0.00,3518439002582.935059,0.028125,237,378,30.164369,0.126406,66360674,44845377,0,0,55469,0,1,1 +1774130029.312836,7.18,4,3992.50,54.39,1567.04,2129.54,0.00,3520936146130.833496,3520936146132.344727,21,0,8.069424,0.046960,66363501,44847547,0,0,55472,0,1,1 +1774130034.317476,0.60,4,3992.50,54.20,1574.64,2121.94,0.00,0.048002,0.000000,70,0,0.003753,0.005870,66363590,44847665,0,0,55474,0,1,1 +1774130039.314394,0.70,4,3992.50,54.19,1575.07,2121.50,0.00,3520606701084.620117,0.000000,21,0,0.003880,0.007137,66363690,44847806,0,0,55477,0,1,1 +1774130044.312851,0.60,4,3992.50,54.19,1575.04,2121.53,0.00,0.175054,0.000000,199,0,0.003421,0.005901,66363776,44847925,0,0,55479,0,1,1 +1774130049.313010,0.55,4,3992.50,54.16,1575.98,2120.59,0.00,83347.028049,124502.075612,6905697,2192431,0.003878,0.007101,66363876,44848064,0,0,55482,0,1,1 +1774130054.312939,0.55,4,3992.50,54.25,1572.73,2123.84,0.00,0.000000,0.007324,6905697,2192441,0.003878,0.007123,66363976,44848204,0,0,55484,0,1,1 +1774130059.312872,1.05,4,3992.50,54.12,1575.81,2118.89,0.00,3518484131073.982422,3518484089917.191406,70,0,0.003962,0.007265,66364083,44848354,0,0,55487,0,1,1 +1774130064.317270,0.60,4,3992.50,54.14,1574.79,2119.90,0.00,83272.465114,124396.749946,6904923,2192168,0.003684,0.006502,66364179,44848483,0,0,55489,0,1,1 +1774130069.316984,0.70,4,3992.50,54.14,1574.80,2119.89,0.00,3518638134778.171387,3518638093615.413574,21,0,0.003649,0.007156,66364272,44848617,0,0,55492,0,1,1 +1774130074.312833,0.65,4,3992.50,54.15,1574.60,2120.09,0.00,1.539657,0.028344,237,378,0.003912,0.007154,66364374,44848759,0,0,55494,0,1,1 +1774130079.316625,0.60,4,3992.50,54.15,1574.62,2120.07,0.00,0.468102,3515771301462.640625,238,2,0.003952,0.007137,66364480,44848901,0,0,55497,0,1,1 +1774130084.316298,0.70,4,3992.50,54.15,1574.64,2120.06,0.00,83353.298637,124514.441347,6905697,2192688,0.003878,0.007098,66364580,44849039,0,0,55499,0,1,1 +1774130089.313918,1.00,4,3992.50,54.16,1574.23,2120.34,0.00,3520112865408.605957,3520112824230.547852,238,2,0.003409,0.005868,66364665,44849156,0,0,55502,0,1,1 +1774130094.312998,0.65,4,3992.50,54.16,1574.12,2120.32,0.00,83363.189108,124529.305648,6905697,2192761,0.003879,0.007124,66364765,44849296,0,0,55504,0,1,1 +1774130099.313798,0.65,4,3992.50,54.16,1573.88,2120.56,0.00,3517874217113.940918,3517874175961.980957,238,2,0.003873,0.007139,66364865,44849438,0,0,55507,0,1,1 +1774130104.317075,0.65,4,3992.50,54.16,1574.02,2120.41,0.00,83289.246031,124424.974126,6904933,2192495,0.003418,0.005851,66364951,44849554,0,0,55509,0,1,1 +1774130109.317779,0.65,4,3992.50,54.16,1574.04,2120.39,0.00,3517941532006.109863,3517941490851.232422,21,0,0.003865,0.007131,66365050,44849695,0,0,55512,0,1,1 +1774130114.314026,0.55,4,3992.50,54.16,1573.82,2120.61,0.00,0.048083,0.000000,70,0,0.003868,0.007128,66365149,44849835,0,0,55514,0,1,1 +1774130119.317124,1.05,4,3992.50,54.17,1577.95,2120.69,0.00,1.957576,0.000195,238,2,0.003850,0.007128,66365247,44849976,0,0,55517,0,1,1 +1774130124.316816,1.35,4,3992.50,53.71,1595.88,2102.72,0.00,3518654504093.872559,3518654504095.831055,70,0,0.008987,2.214480,66365674,44850612,0,0,55519,0,1,1 +1774130129.317217,27.49,4,3992.50,53.76,1588.56,2104.75,0.00,0.000000,0.000000,70,0,0.049412,110.548755,66369447,44862066,0,0,55522,0,1,1 +1774130134.316800,23.38,4,3992.50,53.63,1590.13,2099.70,0.00,1.490456,0.028323,237,378,0.032482,92.344473,66371809,44871715,0,0,55524,0,1,1 +1774130139.312940,13.29,4,3992.50,55.08,1536.46,2156.55,0.00,83428.816111,124808.063812,6905846,2194394,40.097246,0.023544,66376250,44873043,0,0,55527,0,1,1 +1774130144.314546,5.62,4,3992.50,54.94,1540.81,2150.87,0.00,3517307379049.456543,3517307337716.891602,70,0,0.018138,21.835280,66377356,44875638,0,0,55529,0,1,1 +1774130149.312917,6.13,4,3992.50,53.81,1579.00,2106.97,0.00,83393.064321,124786.516993,6905846,2194821,0.007960,18.241583,66377730,44877736,0,0,55532,0,1,1 +1774130154.317622,0.75,4,3992.50,53.54,1589.83,2096.25,0.00,3515129363478.826172,3515129322136.298828,237,378,0.002274,0.006350,66377799,44877858,0,0,55534,0,1,1 +1774130159.316216,0.65,4,3992.50,53.56,1589.09,2096.98,0.00,83387.848255,124781.068963,6905846,2194974,0.001858,0.005171,66377857,44877962,0,0,55537,0,1,1 +1774130164.312908,0.70,4,3992.50,53.56,1589.10,2096.98,0.00,3520766954320.837891,3520766912913.361328,21,0,0.002264,0.006290,66377925,44878079,0,0,55539,0,1,1 +1774130169.312828,0.60,4,3992.50,53.57,1588.86,2097.21,0.00,2.006868,0.000195,238,2,0.001856,0.005130,66377983,44878180,0,0,55542,0,1,1 +1774130174.312926,0.60,4,3992.50,53.58,1588.12,2097.95,0.00,0.000000,0.000000,238,2,0.001818,0.005089,66378038,44878278,0,0,55544,0,1,1 +1774130179.312866,1.15,4,3992.50,53.78,1580.43,2105.54,0.00,3518479464412.168945,3518479464414.175781,21,0,0.001818,0.005099,66378093,44878377,0,0,55547,0,1,1 +1774130184.316408,0.70,4,3992.50,53.92,1574.79,2111.20,0.00,1.537290,0.028300,237,378,0.002363,0.006445,66378169,44878505,0,0,55549,0,1,1 +1774130189.317294,0.65,4,3992.50,53.92,1574.79,2111.20,0.00,3517813858598.031250,3517813858599.493164,70,0,0.002395,0.006471,66378247,44878635,0,0,55552,0,1,1 +1774130194.317790,0.75,4,3992.50,53.92,1574.79,2111.20,0.00,1.958595,0.000195,238,2,0.002413,0.006469,66378325,44878766,0,0,55554,0,1,1 +1774130199.312940,0.60,4,3992.50,53.92,1574.80,2111.19,0.00,83444.873090,124873.452946,6905846,2195096,0.001841,0.005756,66378382,44878870,0,0,55557,0,1,1 +1774130204.317422,0.65,4,3992.50,53.92,1574.80,2111.18,0.00,3515285910739.254883,3515285869388.421387,237,378,0.002287,0.006350,66378452,44878992,0,0,55559,0,1,1 +1774130209.316405,32.35,4,3992.50,60.12,1342.03,2353.64,0.00,0.468552,3519153301681.272949,238,2,38.670086,0.032090,66382757,44880896,0,0,55562,0,1,1 +1774130214.316401,32.02,4,3992.50,60.35,1335.35,2363.01,0.00,83363.996579,124752.573871,6905846,2195248,123.571116,0.035930,66395338,44883358,0,0,55564,0,1,1 +1774130219.312938,29.62,4,3992.50,59.93,1352.05,2346.30,0.00,0.000000,0.075052,6905846,2195287,120.852308,0.038092,66407707,44886063,0,0,55567,0,1,1 +1774130224.313370,29.08,4,3992.50,60.23,1340.22,2358.01,0.00,3518133155998.242188,3518133114615.025391,199,0,121.359179,0.020455,66420315,44887516,0,0,55569,0,1,1 +1774130229.316529,29.01,4,3992.50,59.90,1353.38,2345.03,0.00,3516215769246.487793,0.000000,21,0,119.889831,0.039378,66432593,44890483,0,0,55572,0,1,1 +1774130234.312818,29.74,4,3992.50,60.22,1340.70,2357.64,0.00,0.000000,0.000000,21,0,119.254942,0.046574,66444819,44893702,0,0,55574,0,1,1 +1774130239.316876,29.20,4,3992.50,60.11,1344.81,2353.52,0.00,83294.239727,124651.429701,6905072,2194959,120.070544,0.028061,66457272,44895693,0,0,55577,0,1,1 +1774130244.316051,29.16,4,3992.50,60.12,1342.45,2353.75,0.00,3519017505115.358887,3519017463716.267578,237,378,120.190530,0.028879,66469768,44897630,0,0,55579,0,1,1 +1774130249.317743,23.53,4,3992.50,60.43,1330.32,2365.98,0.00,3517247172218.222656,3517247172219.732422,21,0,118.323243,0.035730,66481840,44900174,0,0,55582,0,1,1 +1774130254.317211,1.30,4,3992.50,54.04,1580.48,2115.81,0.00,0.000000,0.000000,21,0,23.239866,0.015836,66484322,44901032,0,0,55584,0,1,1 +1774130259.312883,12.59,4,3992.50,54.19,1574.70,2121.57,0.00,1.539712,0.028345,237,378,16.128646,0.080959,66489801,44905176,0,0,55587,0,1,1 +1774130264.316775,15.13,4,3992.50,53.98,1582.96,2113.33,0.00,83295.631424,124656.137832,6905087,2195866,24.120286,0.102912,66497455,44910896,0,0,55589,0,1,1 +1774130269.312907,1.76,4,3992.50,53.99,1580.02,2113.88,0.00,3521161099270.767090,3521161057845.527832,238,2,0.010556,0.009834,66497678,44911115,0,0,55592,0,1,1 +1774130274.316603,22.37,4,3992.50,53.99,1576.20,2113.70,0.00,3515838499355.935059,3515838499357.765625,199,0,0.052023,89.474812,66501223,44920841,0,0,55594,0,1,1 +1774130279.313882,29.76,4,3992.50,54.09,1566.32,2117.84,0.00,1.832833,0.000195,238,2,0.052593,115.625734,66505206,44932706,0,0,55597,0,1,1 +1774130284.315405,0.95,4,3992.50,53.90,1573.99,2110.12,0.00,83334.603569,124903.192025,6905092,2197701,0.006282,0.012266,66505374,44932949,0,0,55599,0,1,1 +1774130289.312901,16.48,4,3992.50,53.91,1576.50,2110.67,0.00,20.045099,0.209382,6905982,2198206,40.084787,0.032408,66509781,44935110,0,0,55602,0,1,1 +1774130294.316379,0.90,4,3992.50,53.74,1583.16,2103.99,0.00,0.000000,0.033766,6905982,2198261,0.006352,0.008388,66509926,44935280,0,0,55604,0,1,1 +1774130299.317338,1.25,4,3992.50,53.99,1571.97,2113.76,0.00,3517762434144.621582,3517762392592.959961,199,0,0.004229,0.008230,66510036,44935430,0,0,55607,0,1,1 +1774130304.312813,0.60,4,3992.50,53.94,1573.48,2111.82,0.00,0.000000,0.000000,199,0,0.003882,0.007129,66510136,44935570,0,0,55609,0,1,1 +1774130309.313473,0.70,4,3992.50,53.93,1573.98,2111.33,0.00,83366.740710,124925.140026,6905208,2198024,0.004987,0.007739,66510258,44935724,0,0,55612,0,1,1 +1774130314.317419,1.05,4,3992.50,54.03,1569.89,2115.43,0.00,4.106037,18.050503,6905982,2198536,0.003888,0.007129,66510359,44935865,0,0,55614,0,1,1 +1774130319.316922,0.65,4,3992.50,54.03,1569.87,2115.45,0.00,3518786608572.094727,3518786566990.294922,21,0,0.004510,0.006298,66510469,44935997,0,0,55617,0,1,1 +1774130324.317255,0.60,4,3992.50,53.85,1576.82,2108.50,0.00,0.048044,0.000000,70,0,0.003632,0.005509,66510544,44936091,0,0,55619,0,1,1 +1774130329.317795,1.00,4,3992.50,54.05,1573.53,2116.34,0.00,1.490171,0.028317,237,378,0.003971,0.007207,66510650,44936238,0,0,55622,0,1,1 +1774130334.317488,0.70,4,3992.50,54.07,1570.67,2117.05,0.00,3518653216187.855957,3518653216189.191406,199,0,0.003878,0.007767,66510750,44936382,0,0,55624,0,1,1 +1774130339.312919,0.65,4,3992.50,54.07,1570.67,2117.04,0.00,0.000000,0.000000,199,0,0.003882,0.007126,66510850,44936522,0,0,55627,0,1,1 +1774130344.313519,0.65,4,3992.50,54.07,1570.69,2117.02,0.00,0.000000,0.000000,199,0,0.003503,0.005915,66510942,44936643,0,0,55629,0,1,1 +1774130349.312812,1.35,4,3992.50,53.88,1578.12,2109.56,0.00,1.832095,0.000195,238,2,0.003891,0.007133,66511043,44936784,0,0,55632,0,1,1 +1774130354.313541,0.60,4,3992.50,53.89,1577.93,2109.79,0.00,3517924268786.627930,3517924268788.585938,70,0,0.003903,0.007152,66511145,44936926,0,0,55634,0,1,1 +1774130359.315879,0.85,4,3992.50,54.08,1577.95,2117.37,0.00,1.489635,0.028307,237,378,0.003876,0.007116,66511245,44937066,0,0,55637,0,1,1 +1774130364.317327,8.92,4,3992.50,54.83,1547.11,2146.57,0.00,0.468321,3517418426624.019043,238,2,0.020383,31.844676,66512535,44940673,0,0,55639,0,1,1 +1774130369.312816,3.61,4,3992.50,54.49,1560.39,2133.35,0.00,3521614718878.337402,3521614718880.346191,21,0,0.005696,8.229580,66512772,44941756,0,0,55642,0,1,1 +1774130374.317777,0.65,4,3992.50,54.06,1577.36,2116.38,0.00,83295.282961,124866.317687,6905208,2198843,0.002287,0.006350,66512842,44941878,0,0,55644,0,1,1 +1774130379.312831,0.65,4,3992.50,54.04,1577.80,2115.93,0.00,0.000000,0.034409,6905208,2198872,0.002291,0.006372,66512912,44942001,0,0,55647,0,1,1 +1774130384.312826,0.60,4,3992.50,54.05,1577.56,2116.18,0.00,3518440665760.268066,3518440624147.909668,21,0,0.001831,0.005089,66512968,44942099,0,0,55649,0,1,1 +1774130389.317720,1.10,4,3992.50,54.26,1569.20,2124.54,0.00,0.174829,0.000000,199,0,0.002287,0.006360,66513038,44942222,0,0,55652,0,1,1 +1774130394.312816,0.65,4,3992.50,54.26,1569.22,2124.51,0.00,3521891800148.386230,0.000000,21,0,0.002299,0.006854,66513109,44942348,0,0,55654,0,1,1 +1774130399.312850,0.60,4,3992.50,53.94,1581.71,2112.01,0.00,83381.462868,124999.519609,6905982,2199359,0.002314,0.006558,66513181,44942474,0,0,55657,0,1,1 +1774130404.312887,1.05,4,3992.50,53.95,1581.31,2112.24,0.00,3518411544538.185547,3518411502920.144043,21,0,0.001881,0.005151,66513241,44942576,0,0,55659,0,1,1 +1774130409.312831,0.75,4,3992.50,53.95,1581.33,2112.20,0.00,0.000000,0.000000,21,0,0.001894,0.005192,66513302,44942681,0,0,55662,0,1,1 +1774130414.312913,0.90,4,3992.50,53.67,1592.42,2101.12,0.00,0.000000,0.000000,21,0,0.001986,0.005215,66513368,44942789,0,0,55664,0,1,1 +1774130419.312997,1.15,4,3992.50,53.97,1583.81,2112.88,0.00,83376.538227,124998.381555,6905217,2199064,0.002289,0.006366,66513438,44942912,0,0,55667,0,1,1 +1774130424.317132,0.95,4,3992.50,53.98,1581.16,2113.60,0.00,3515529432518.008301,3515529390929.686035,199,0,0.002287,0.006351,66513508,44943034,0,0,55669,0,1,1 +1774130429.315397,0.80,4,3992.50,53.98,1581.16,2113.59,0.00,3519658607148.263184,0.000000,21,0,0.002290,0.006368,66513578,44943157,0,0,55672,0,1,1 +1774130434.313769,38.57,4,3992.50,60.18,1344.34,2356.24,0.00,0.000000,0.000000,21,0,77.140717,0.048551,66521859,44946390,0,0,55674,0,1,1 +1774130439.315990,31.72,4,3992.50,60.31,1340.47,2361.27,0.00,1.537696,0.028308,237,378,118.913075,0.031134,66534090,44948575,0,0,55677,0,1,1 +1774130444.312788,30.95,4,3992.50,60.62,1328.20,2373.51,0.00,83429.820652,125080.751929,6905217,2199264,120.044773,0.024479,66546419,44950209,0,0,55679,0,1,1 +1774130449.313501,30.87,4,3992.50,60.37,1338.01,2363.74,0.00,3517935594535.157227,3517935552918.336426,21,0,119.151618,0.039898,66558684,44953202,0,0,55682,0,1,1 +1774130454.316896,31.57,4,3992.50,60.40,1336.99,2364.79,0.00,83325.471420,124916.061393,6905991,2199731,119.088075,0.038161,66571005,44955884,0,0,55684,0,1,1 +1774130459.317613,29.95,4,3992.50,60.33,1339.63,2362.08,0.00,3517933277950.501465,3517933236337.581543,70,0,120.154164,0.028883,66583552,44957859,0,0,55687,0,1,1 +1774130464.312816,30.01,4,3992.50,60.56,1330.73,2370.88,0.00,3521816052586.904785,0.000000,21,0,118.279472,0.027569,66595761,44959808,0,0,55689,0,1,1 +1774130469.313976,31.59,4,3992.50,60.54,1331.40,2370.38,0.00,83358.598141,124971.942938,6905217,2199396,120.138714,0.026663,66608191,44961798,0,0,55692,0,1,1 +1774130474.312984,17.58,4,3992.50,54.15,1581.55,2120.29,0.00,3519135271973.033691,3519135230340.262695,237,378,112.580522,0.029195,66619828,44963800,0,0,55694,0,1,1 +1774130479.320176,1.65,4,3992.50,54.18,1578.01,2121.12,0.00,0.000000,0.000000,237,378,0.005410,0.007903,66619957,44963962,0,0,55697,0,1,1 +1774130484.313502,17.66,4,3992.50,55.16,1539.57,2159.50,0.00,3523140076640.733887,3523140076642.246094,21,0,22.173520,0.106111,66627274,44969515,0,0,55699,0,1,1 +1774130489.317241,12.92,4,3992.50,54.42,1568.29,2130.73,0.00,0.174869,0.000000,199,0,18.097525,0.081769,66633203,44974048,0,0,55702,0,1,1 +1774130494.315049,1.55,4,3992.50,54.12,1580.24,2118.77,0.00,0.000000,0.000000,199,0,0.009210,0.010792,66633407,44974268,0,0,55704,0,1,1 +1774130499.317703,1.05,4,3992.50,53.89,1589.20,2109.79,0.00,1.362656,0.028305,237,378,0.003696,0.005875,66633491,44974386,0,0,55707,0,1,1 +1774130504.314655,0.80,4,3992.50,53.91,1588.51,2110.51,0.00,83431.533705,125078.085366,6906008,2201088,0.003880,0.007127,66633591,44974526,0,0,55709,0,1,1 +1774130509.317302,1.20,4,3992.50,54.50,1565.61,2133.85,0.00,3516575664855.128418,3516575623257.494141,21,0,0.003426,0.005903,66633678,44974645,0,0,55712,0,1,1 +1774130514.312855,0.75,4,3992.50,54.33,1571.72,2127.32,0.00,1.539748,0.028346,237,378,0.003881,0.007129,66633778,44974785,0,0,55714,0,1,1 +1774130519.317445,0.70,4,3992.50,54.35,1571.24,2127.79,0.00,3515210355449.921875,3515210355451.430664,21,0,0.003874,0.007126,66633878,44974926,0,0,55717,0,1,1 +1774130524.317749,0.80,4,3992.50,54.34,1571.48,2127.55,0.00,0.174989,0.000000,199,0,0.004004,0.007277,66633988,44975076,0,0,55719,0,1,1 +1774130529.317266,0.80,4,3992.50,54.15,1578.92,2120.13,0.00,1.363511,0.028323,237,378,0.003766,0.007739,66634088,44975218,0,0,55722,0,1,1 +1774130534.316856,0.70,4,3992.50,54.17,1578.25,2120.79,0.00,0.468495,3518726036472.423828,238,2,0.003541,0.005889,66634175,44975337,0,0,55724,0,1,1 +1774130539.315248,1.15,4,3992.50,54.19,1583.37,2121.75,0.00,3519568756571.654785,3519568756573.662598,21,0,0.003898,0.007135,66634276,44975478,0,0,55727,0,1,1 +1774130544.313201,0.90,4,3992.50,54.21,1582.51,2122.46,0.00,1.539009,0.028332,237,378,0.003923,0.007019,66634379,44975619,0,0,55729,0,1,1 +1774130549.314448,0.85,4,3992.50,54.23,1581.79,2123.18,0.00,0.000000,0.000000,237,378,0.003095,0.006868,66634465,44975751,0,0,55732,0,1,1 +1774130554.312880,0.85,4,3992.50,54.23,1581.80,2123.17,0.00,83402.721510,125042.008110,6905234,2201198,0.004029,0.006979,66634564,44975890,0,0,55734,0,1,1 +1774130559.317131,0.90,4,3992.50,54.23,1581.81,2123.16,0.00,3515448823154.777344,3515448781565.237793,199,0,0.003883,0.007122,66634665,44976031,0,0,55737,0,1,1 +1774130564.317715,0.85,4,3992.50,54.31,1578.62,2126.36,0.00,83372.289917,124988.280675,6906008,2201631,0.003878,0.007122,66634765,44976171,0,0,55739,0,1,1 +1774130569.317435,1.10,4,3992.50,54.28,1568.33,2125.08,0.00,3518634104267.958496,3518634062644.947266,21,0,0.003866,0.007133,66634864,44976312,0,0,55742,0,1,1 +1774130574.317226,0.80,4,3992.50,54.27,1568.46,2124.90,0.00,1.538443,0.028321,237,378,0.003420,0.005868,66634950,44976429,0,0,55744,0,1,1 +1774130579.312873,18.51,4,3992.50,54.40,1560.44,2129.85,0.00,3521503276844.060059,3521503276845.523438,70,0,0.034219,73.380418,66637162,44984459,0,0,55747,0,1,1 +1774130584.317337,30.69,4,3992.50,55.07,1527.76,2156.31,0.00,3515298836558.224121,0.000000,21,0,0.039957,118.060430,66640192,44996652,0,0,55749,0,1,1 +1774130589.317133,4.57,4,3992.50,54.25,1560.24,2123.96,0.00,83381.505710,125213.158488,6905241,2202724,0.008835,13.627456,66640692,44998223,0,0,55752,0,1,1 +1774130594.312825,13.94,4,3992.50,54.25,1563.99,2124.12,0.00,15.939515,0.175444,6905380,2202841,40.098556,0.023247,66645080,44999638,0,0,55754,0,1,1 +1774130599.312838,1.56,4,3992.50,54.99,1529.98,2152.79,0.00,4.109267,0.128613,6906154,2203263,0.004523,0.007868,66645193,44999791,0,0,55757,0,1,1 +1774130604.315956,11.25,4,3992.50,54.32,1553.57,2126.66,0.00,3516244467871.062012,3516244426085.388672,237,378,0.026969,40.044532,66646975,45004267,0,0,55759,0,1,1 +1774130609.312833,1.00,4,3992.50,54.15,1560.25,2119.99,0.00,0.000000,0.000000,237,378,0.003388,0.006978,66647066,45004403,0,0,55762,0,1,1 +1774130614.315140,0.85,4,3992.50,54.18,1558.79,2121.45,0.00,3516814537993.347656,3516814537994.809082,70,0,0.002300,0.006353,66647137,45004525,0,0,55764,0,1,1 +1774130619.317017,0.90,4,3992.50,54.18,1558.80,2121.43,0.00,83362.703978,125193.580074,6905380,2203281,0.003352,0.006765,66647229,45004661,0,0,55767,0,1,1 +1774130624.317755,1.05,4,3992.50,54.18,1558.80,2121.43,0.00,3517917558616.260742,3517917516775.913086,21,0,0.001648,0.004494,66647282,45004750,0,0,55769,0,1,1 +1774130629.317094,1.05,4,3992.50,54.54,1544.81,2135.48,0.00,83405.076459,125257.242644,6905380,2203317,0.002060,0.005733,66647345,45004861,0,0,55772,0,1,1 +1774130634.317648,1.00,4,3992.50,54.20,1558.31,2121.91,0.00,3518046865737.914062,3518046823893.921387,238,2,0.002289,0.006355,66647415,45004983,0,0,55774,0,1,1 +1774130639.315265,0.85,4,3992.50,54.17,1559.21,2121.01,0.00,83431.792751,125308.401117,6905380,2203367,0.002265,0.006369,66647483,45005106,0,0,55777,0,1,1 +1774130644.315972,0.85,4,3992.50,54.15,1560.23,2119.99,0.00,4.108697,0.031636,6906154,2203750,0.001914,0.005189,66647546,45005211,0,0,55779,0,1,1 +1774130649.317306,0.75,4,3992.50,54.16,1559.68,2120.54,0.00,3517498127249.483398,3517498085410.085449,21,0,0.002469,0.006521,66647628,45005346,0,0,55782,0,1,1 +1774130654.316882,0.95,4,3992.50,54.16,1559.70,2120.53,0.00,0.048051,0.000000,70,0,0.002339,0.006419,66647702,45005472,0,0,55784,0,1,1 +1774130659.313530,1.20,4,3992.50,54.28,1564.66,2125.24,0.00,83449.926185,125332.749532,6905380,2203396,0.002290,0.006370,66647772,45005595,0,0,55787,0,1,1 +1774130664.315550,0.65,4,3992.50,54.08,1572.35,2117.38,0.00,4.107618,0.074579,6906154,2203822,0.001868,0.005632,66647831,45005700,0,0,55789,0,1,1 +1774130669.317436,38.83,4,3992.50,60.40,1331.90,2364.63,0.00,3517110273828.166016,3517110231993.281250,21,0,80.892047,0.045654,66656567,45008679,0,0,55792,0,1,1 +1774130674.313557,29.82,4,3992.50,60.40,1332.16,2364.91,0.00,83462.899127,125346.181717,6906154,2203949,119.459447,0.041062,66668825,45011621,0,0,55794,0,1,1 +1774130679.316844,28.76,4,3992.50,60.13,1342.66,2354.39,0.00,3516125977990.932129,3516125936166.124023,237,378,118.891523,0.037607,66681157,45014488,0,0,55797,0,1,1 +1774130684.312938,29.58,4,3992.50,60.29,1336.79,2360.31,0.00,0.000000,0.000000,237,378,119.463681,0.046904,66693551,45018074,0,0,55799,0,1,1 +1774130689.312858,28.92,4,3992.50,60.44,1330.60,2366.51,0.00,83393.836605,125250.945560,6905380,2203603,119.171678,0.029312,66705909,45020173,0,0,55802,0,1,1 +1774130694.312839,29.91,4,3992.50,60.20,1331.11,2356.84,0.00,3518450804522.373535,3518450762667.107910,199,0,119.166152,0.023499,66718155,45021735,0,0,55804,0,1,1 +1774130699.313393,29.25,4,3992.50,60.16,1332.49,2355.48,0.00,1.831633,0.000195,238,2,119.154448,0.031601,66730368,45024049,0,0,55807,0,1,1 +1774130704.313926,28.69,4,3992.50,60.21,1330.70,2357.25,0.00,3518062096213.971191,3518062096215.803223,199,0,119.160588,0.040123,66742788,45026892,0,0,55809,0,1,1 +1774130709.316209,15.90,4,3992.50,55.65,1509.43,2178.64,0.00,1.362757,0.028307,237,378,110.106398,0.028073,66754202,45028809,0,0,55812,0,1,1 +1774130714.317345,0.90,4,3992.50,54.46,1555.70,2132.35,0.00,3517637915013.478027,3517637915014.987793,21,0,0.004096,0.006107,66754303,45028934,0,0,55814,0,1,1 +1774130719.312887,16.06,4,3992.50,55.03,1537.33,2154.40,0.00,83468.618159,125361.471092,6905393,2204219,18.148382,0.094741,66760428,45033506,0,0,55817,0,1,1 +1774130724.317264,13.59,4,3992.50,54.47,1558.93,2132.78,0.00,3515360010646.374023,3515359968827.479980,21,0,22.113427,0.097962,66767696,45039038,0,0,55819,0,1,1 +1774130729.317046,1.80,4,3992.50,54.61,1553.64,2138.09,0.00,83397.824474,125255.806184,6905393,2205034,0.011129,3.417169,66768256,45039832,0,0,55822,0,1,1 +1774130734.313496,29.10,4,3992.50,54.31,1559.33,2126.23,0.00,3520936907599.337891,3520936865713.392090,70,0,0.041640,119.859874,66771368,45052391,0,0,55824,0,1,1 +1774130739.312836,20.93,4,3992.50,54.53,1547.56,2135.12,0.00,3518901775703.141113,0.000000,21,0,0.068040,81.949058,66776540,45061304,0,0,55827,0,1,1 +1774130744.312947,1.20,4,3992.50,54.26,1558.21,2124.48,0.00,0.000000,0.000000,21,0,0.007303,0.010322,66776695,45061507,0,0,55829,0,1,1 +1774130749.315942,14.10,4,3992.50,54.70,1543.88,2141.66,0.00,83360.194664,125369.374697,6905512,2206488,40.040736,0.028021,66781129,45063109,0,0,55832,0,1,1 +1774130754.317319,1.00,4,3992.50,54.61,1547.32,2138.22,0.00,4.108145,0.078885,6906286,2206902,0.005351,0.008131,66781238,45063260,0,0,55834,0,1,1 +1774130759.317606,0.55,4,3992.50,54.41,1555.36,2130.18,0.00,3518235730073.536133,0.017089,6905512,2206579,0.003979,0.007244,66781346,45063408,0,0,55837,0,1,1 +1774130764.312830,0.55,4,3992.50,54.14,1565.77,2119.77,0.00,3521801230305.373535,3521801188230.693848,70,0,0.003424,0.005873,66781432,45063525,0,0,55839,0,1,1 +1774130769.312908,0.70,4,3992.50,54.14,1565.80,2119.75,0.00,3518381767630.610352,0.000000,21,0,0.003878,0.007132,66781532,45063666,0,0,55842,0,1,1 +1774130774.316767,0.95,4,3992.50,54.16,1565.14,2120.40,0.00,0.000000,0.000000,21,0,0.003976,0.007251,66781639,45063816,0,0,55844,0,1,1 +1774130779.312814,0.90,4,3992.50,54.37,1557.28,2128.84,0.00,83480.229367,125555.431197,6906286,2207143,0.002371,0.004379,66781701,45063903,0,0,55847,0,1,1 +1774130784.317571,0.65,4,3992.50,54.37,1557.02,2128.54,0.00,3515092864009.261230,3515092822007.104980,199,0,0.003862,0.007145,66781800,45064045,0,0,55849,0,1,1 +1774130789.312907,0.60,4,3992.50,54.35,1557.55,2128.00,0.00,83491.935523,125573.497535,6906286,2207353,0.003466,0.005934,66781888,45064167,0,0,55852,0,1,1 +1774130794.312982,0.80,4,3992.50,54.35,1557.44,2128.12,0.00,3518385058295.884766,3518385016254.320312,70,0,0.003896,0.007618,66781989,45064311,0,0,55854,0,1,1 +1774130799.317021,0.60,4,3992.50,54.29,1559.81,2125.75,0.00,83346.847998,125355.130439,6906286,2207400,0.003436,0.006023,66782076,45064429,0,0,55857,0,1,1 +1774130804.314327,0.75,4,3992.50,54.33,1558.20,2127.32,0.00,3520334522036.484863,0.009282,6905512,2207064,0.003830,0.007114,66782172,45064568,0,0,55859,0,1,1 +1774130809.317556,1.00,4,3992.50,54.33,1564.76,2127.30,0.00,3516165883437.058105,3516165841417.904785,21,0,0.003413,0.005832,66782258,45064683,0,0,55862,0,1,1 +1774130814.312862,0.60,4,3992.50,54.34,1564.52,2127.51,0.00,0.175164,0.000000,199,0,0.003869,0.007104,66782357,45064821,0,0,55864,0,1,1 +1774130819.312851,0.65,4,3992.50,54.34,1564.54,2127.50,0.00,3518444979720.606934,0.000000,21,0,0.003395,0.005865,66782441,45064938,0,0,55867,0,1,1 +1774130824.315323,3.76,4,3992.50,54.29,1565.61,2125.75,0.00,2.005844,0.000195,238,2,0.014880,14.022126,66783322,45066734,0,0,55869,0,1,1 +1774130829.317169,8.22,4,3992.50,54.20,1567.88,2122.06,0.00,83381.442214,125442.370168,6906286,2207867,0.009947,26.035522,66783920,45069608,0,0,55872,0,1,1 +1774130834.317565,0.75,4,3992.50,54.21,1567.39,2122.54,0.00,3518159014295.248535,3518158972224.121094,21,0,0.002263,0.006356,66783988,45069730,0,0,55874,0,1,1 +1774130839.317034,1.05,4,3992.50,54.33,1555.88,2127.05,0.00,83418.993522,125502.127785,6905512,2207545,0.001801,0.005107,66784042,45069830,0,0,55877,0,1,1 +1774130844.315486,0.65,4,3992.50,54.33,1555.52,2127.27,0.00,3519525977414.521484,3519525935322.836426,21,0,0.002252,0.006358,66784109,45069952,0,0,55879,0,1,1 +1774130849.317762,0.60,4,3992.50,54.34,1555.30,2127.49,0.00,2.005923,0.000195,238,2,0.001818,0.005096,66784164,45070051,0,0,55882,0,1,1 +1774130854.317278,0.75,4,3992.50,54.34,1555.30,2127.49,0.00,3518777546452.997070,3518777546455.004395,21,0,0.002863,0.007466,66784244,45070195,0,0,55884,0,1,1 +1774130859.316958,0.65,4,3992.50,54.16,1562.49,2120.30,0.00,0.175011,0.000000,199,0,0.001831,0.005118,66784300,45070295,0,0,55887,0,1,1 +1774130864.317011,0.75,4,3992.50,54.19,1561.26,2121.53,0.00,1.831817,0.000195,238,2,0.002301,0.007062,66784371,45070425,0,0,55889,0,1,1 +1774130869.317533,0.90,4,3992.50,54.20,1564.86,2122.09,0.00,83403.531205,125483.804779,6906286,2208006,0.001881,0.005191,66784431,45070530,0,0,55892,0,1,1 +1774130874.317248,0.65,4,3992.50,54.20,1561.72,2122.07,0.00,3518637486539.803711,3518637444454.575195,199,0,0.002409,0.006465,66784509,45070661,0,0,55894,0,1,1 +1774130879.316931,0.80,4,3992.50,54.14,1563.96,2119.83,0.00,83419.361995,125504.937859,6906286,2208072,0.001819,0.005099,66784564,45070760,0,0,55897,0,1,1 +1774130884.317663,0.55,4,3992.50,54.14,1564.00,2119.80,0.00,3517922073536.024902,3517922031457.450684,238,2,0.003611,0.008089,66784649,45070907,0,0,55899,0,1,1 +1774130889.317327,0.60,4,3992.50,54.17,1562.77,2121.02,0.00,3518673164771.549316,0.028127,237,378,0.001819,0.005099,66784704,45071006,0,0,55902,0,1,1 +1774130894.317437,43.98,4,3992.50,60.04,1340.16,2350.84,0.00,3518360526213.993164,3518360526215.502930,21,0,80.720190,0.040526,66793435,45073596,0,0,55904,0,1,1 +1774130899.317423,28.75,4,3992.50,60.23,1333.66,2358.20,0.00,83414.464634,125497.480582,6906286,2208208,121.768792,0.025555,66805869,45075439,0,0,55907,0,1,1 +1774130904.317191,29.25,4,3992.50,60.14,1337.15,2354.79,0.00,3518600146807.248535,0.014063,6905512,2207857,120.181803,0.060988,66818398,45080127,0,0,55909,0,1,1 +1774130909.317051,29.23,4,3992.50,60.01,1342.39,2349.53,0.00,3518535861219.040527,3518535819130.785645,70,0,120.169272,0.038788,66830672,45082965,0,0,55912,0,1,1 +1774130914.316340,28.92,4,3992.50,60.04,1341.20,2350.71,0.00,3518937571542.962402,0.000000,21,0,119.382271,0.038846,66842898,45085763,0,0,55914,0,1,1 +1774130919.316799,29.41,4,3992.50,59.92,1345.99,2345.98,0.00,83402.475008,125485.649867,6905512,2207892,118.956256,0.032460,66855178,45088025,0,0,55917,0,1,1 +1774130924.312817,30.26,4,3992.50,60.06,1340.36,2351.61,0.00,3521241726195.895020,3521241684075.309570,21,0,120.262745,0.020801,66867548,45089448,0,0,55919,0,1,1 +1774130929.316426,29.71,4,3992.50,60.09,1339.25,2352.69,0.00,0.174874,0.000000,199,0,119.483176,0.031823,66879886,45091763,0,0,55922,0,1,1 +1774130934.318126,14.78,4,3992.50,53.86,1584.03,2108.66,0.00,3517240765271.210449,0.000000,21,0,104.511967,0.029040,66890669,45093687,0,0,55924,0,1,1 +1774130939.312844,0.95,4,3992.50,53.87,1583.54,2109.14,0.00,83498.484045,125630.238371,6905523,2208001,0.004231,0.006176,66890769,45093816,0,0,55927,0,1,1 +1774130944.312848,15.43,4,3992.50,54.24,1568.93,2123.68,0.00,3518434165768.124512,3518434123678.913574,238,2,20.151232,0.113041,66898770,45099989,0,0,55929,0,1,1 +1774130949.317317,11.83,4,3992.50,54.66,1552.48,2140.10,0.00,3515295344767.066895,3515295344769.023926,70,0,20.118433,0.103668,66906539,45106074,0,0,55932,0,1,1 +1774130954.317386,0.90,4,3992.50,54.16,1571.92,2120.62,0.00,83409.053919,125496.411929,6905523,2209121,0.004014,0.007501,66906641,45106218,0,0,55934,0,1,1 +1774130959.317375,0.90,4,3992.50,54.42,1562.19,2130.55,0.00,3518444847757.228027,3518444805667.729980,237,378,0.003799,0.006724,66906737,45106352,0,0,55937,0,1,1 +1774130964.313424,0.95,4,3992.50,54.20,1570.57,2122.00,0.00,83474.682178,125597.964647,6905523,2209556,0.003412,0.005880,66906822,45106469,0,0,55939,0,1,1 +1774130969.315580,0.70,4,3992.50,54.20,1570.36,2122.22,0.00,3516920684841.028809,3516920642770.632812,70,0,0.003858,0.007092,66906921,45106608,0,0,55942,0,1,1 +1774130974.317156,0.60,4,3992.50,54.20,1570.36,2122.22,0.00,83383.940343,125459.368838,6905523,2209581,0.003394,0.005841,66907005,45106723,0,0,55944,0,1,1 +1774130979.317152,0.70,4,3992.50,54.15,1572.55,2120.02,0.00,3518439626379.824219,3518439584291.155762,21,0,0.003916,0.007195,66907108,45106868,0,0,55947,0,1,1 +1774130984.312850,0.65,4,3992.50,54.12,1573.73,2118.84,0.00,0.000000,0.000000,21,0,0.003028,0.004673,66907185,45106965,0,0,55949,0,1,1 +1774130989.313230,0.90,4,3992.50,54.51,1557.66,2134.05,0.00,0.174987,0.000000,199,0,0.002638,0.005481,66907257,45107073,0,0,55952,0,1,1 +1774130994.316930,0.75,4,3992.50,54.51,1557.21,2134.24,0.00,0.000000,0.000000,199,0,0.003444,0.006527,66907345,45107195,0,0,55954,0,1,1 +1774130999.317775,0.65,4,3992.50,54.35,1563.48,2127.98,0.00,83395.988977,125477.990374,6905523,2209765,0.003896,0.007121,66907446,45107336,0,0,55957,0,1,1 +1774131004.317332,0.65,4,3992.50,54.34,1564.07,2127.39,0.00,3518748450964.634766,3518748408871.969727,21,0,0.003395,0.005856,66907530,45107452,0,0,55959,0,1,1 +1774131009.317182,0.65,4,3992.50,54.33,1564.18,2127.29,0.00,0.175005,0.000000,199,0,0.003853,0.007133,66907628,45107593,0,0,55962,0,1,1 +1774131014.317610,0.60,4,3992.50,53.58,1593.70,2097.76,0.00,1.831679,0.000195,238,2,0.003395,0.005842,66907712,45107708,0,0,55964,0,1,1 +1774131019.316858,1.05,4,3992.50,53.95,1579.38,2112.22,0.00,3518966609255.822754,3518966609257.830078,21,0,0.004561,0.008055,66907816,45107851,0,0,55967,0,1,1 +1774131024.313673,0.60,4,3992.50,53.95,1579.42,2112.18,0.00,2.008115,0.000195,238,2,0.003397,0.005846,66907900,45107966,0,0,55969,0,1,1 +1774131029.317762,0.75,4,3992.50,54.03,1576.38,2115.21,0.00,0.000000,0.000000,238,2,0.003845,0.007109,66907998,45108106,0,0,55972,0,1,1 +1774131034.317791,0.60,4,3992.50,54.03,1576.39,2115.20,0.00,83411.895137,125498.775167,6906306,2210399,0.002776,0.005605,66908070,45108214,0,0,55974,0,1,1 +1774131039.316962,0.80,4,3992.50,54.03,1576.18,2115.42,0.00,3519020229936.131836,3519020187844.040039,21,0,0.003841,0.007121,66908167,45108354,0,0,55977,0,1,1 +1774131044.316858,0.60,4,3992.50,54.03,1576.19,2115.40,0.00,0.048048,0.000000,70,0,0.003383,0.005843,66908250,45108469,0,0,55979,0,1,1 +1774131049.315409,13.20,4,3992.50,55.26,1527.15,2163.39,0.00,3519457279230.375488,0.000000,21,0,0.038112,52.505399,66910920,45114408,0,0,55982,0,1,1 +1774131054.313306,29.49,4,3992.50,55.40,1514.61,2168.95,0.00,1.539026,0.028332,237,378,0.039235,122.893261,66913788,45126915,0,0,55984,0,1,1 +1774131059.312886,10.09,4,3992.50,53.82,1576.37,2107.31,0.00,83419.850812,125689.813460,6906312,2211743,0.011706,29.792206,66914358,45130034,0,0,55987,0,1,1 +1774131064.316637,14.47,4,3992.50,54.96,1534.93,2151.65,0.00,11.807647,25.431119,6905656,2211594,40.037552,0.029597,66918991,45131959,0,0,55989,0,1,1 +1774131069.317493,1.00,4,3992.50,54.36,1558.11,2128.46,0.00,3517835221741.386230,3517835179468.567383,237,378,0.003830,0.007506,66919084,45132091,0,0,55992,0,1,1 +1774131074.317572,11.30,4,3992.50,53.81,1577.68,2106.94,0.00,3518381253953.551758,3518381253955.061523,21,0,0.026943,40.071703,66920848,45136726,0,0,55994,0,1,1 +1774131079.317245,1.30,4,3992.50,54.30,1570.80,2126.05,0.00,0.000000,0.000000,21,0,0.001806,0.005086,66920902,45136824,0,0,55997,0,1,1 +1774131084.312891,0.65,4,3992.50,54.11,1577.96,2118.61,0.00,1.539720,0.028345,237,378,0.002266,0.006362,66920970,45136946,0,0,55999,0,1,1 +1774131089.316266,0.80,4,3992.50,54.26,1572.11,2124.45,0.00,3516063762469.895020,3516063762471.229492,199,0,0.001817,0.005095,66921025,45137045,0,0,56002,0,1,1 +1774131094.317706,0.65,4,3992.50,54.27,1571.88,2124.69,0.00,1.831308,0.000195,238,2,0.002284,0.006368,66921095,45137168,0,0,56004,0,1,1 +1774131099.312839,1.40,4,3992.50,54.27,1571.88,2124.68,0.00,3521865762812.158203,0.028152,237,378,0.001820,0.005104,66921150,45137267,0,0,56007,0,1,1 +1774131104.317569,0.70,4,3992.50,54.29,1571.15,2125.41,0.00,83349.934967,125626.250632,6906430,2212443,0.002224,0.006350,66921215,45137389,0,0,56009,0,1,1 +1774131109.315292,0.65,4,3992.50,54.29,1570.91,2125.64,0.00,3520039764710.627441,0.011333,6905656,2212070,0.001870,0.005163,66921274,45137492,0,0,56012,0,1,1 +1774131114.317147,0.95,4,3992.50,54.44,1565.23,2131.33,0.00,3517132470490.414062,3517132428187.187988,21,0,0.001419,0.003921,66921320,45137573,0,0,56014,0,1,1 +1774131119.317295,0.75,4,3992.50,54.41,1566.11,2130.45,0.00,83423.750123,125741.542224,6905656,2212175,0.002444,0.006523,66921400,45137708,0,0,56017,0,1,1 +1774131124.316575,0.65,4,3992.50,54.46,1564.45,2132.07,0.00,3518943393731.679688,3518943351406.549805,21,0,0.001819,0.005734,66921455,45137810,0,0,56019,0,1,1 +1774131129.317619,0.55,4,3992.50,54.46,1564.49,2132.07,0.00,0.048037,0.000000,70,0,0.002276,0.006365,66921524,45137933,0,0,56022,0,1,1 +1774131134.316985,0.85,4,3992.50,54.25,1572.38,2124.18,0.00,1.490521,0.028324,237,378,0.003185,0.005486,66921601,45138047,0,0,56024,0,1,1 +1774131139.312827,41.04,4,3992.50,60.86,1320.79,2382.80,0.00,0.468847,3521365488389.178711,238,2,100.030016,0.037264,66932246,45140366,0,0,56027,0,1,1 +1774131144.316387,29.40,4,3992.50,60.59,1331.38,2372.24,0.00,0.000000,0.000000,238,2,118.685997,0.041815,66944426,45143455,0,0,56029,0,1,1 +1774131149.312793,29.22,4,3992.50,60.51,1334.58,2369.03,0.00,0.000000,0.000000,238,2,119.672118,0.082798,66956962,45149676,0,0,56032,0,1,1 +1774131154.317400,29.79,4,3992.50,60.68,1327.88,2375.66,0.00,3515198685157.187012,3515198685159.192383,21,0,118.885173,0.104470,66969702,45157620,0,0,56034,0,1,1 +1774131159.317602,30.35,4,3992.50,60.50,1334.87,2368.59,0.00,0.048045,0.000000,70,0,119.790974,0.104368,66982537,45165671,0,0,56037,0,1,1 +1774131164.312833,29.85,4,3992.50,60.47,1335.93,2367.61,0.00,0.000000,0.000000,70,0,118.508341,0.109073,66995294,45174073,0,0,56039,0,1,1 +1774131169.312862,30.58,4,3992.50,60.69,1331.51,2376.04,0.00,3518416950542.034180,0.000000,21,0,119.995210,0.100196,67008215,45181737,0,0,56042,0,1,1 +1774131174.317375,29.36,4,3992.50,60.92,1322.29,2385.27,0.00,0.174842,0.000000,199,0,119.285295,0.095376,67021014,45188986,0,0,56044,0,1,1 +1774131179.317774,11.26,4,3992.50,56.06,1512.66,2194.98,0.00,1.831690,0.000195,238,2,90.736901,0.064484,67030657,45193829,0,0,56047,0,1,1 +1774131184.314825,0.90,4,3992.50,54.95,1556.26,2151.38,0.00,83477.689456,125820.018188,6906445,2212875,0.004666,0.005841,67030763,45193953,0,0,56049,0,1,1 +1774131189.312830,9.09,4,3992.50,54.75,1563.96,2143.63,0.00,0.000000,0.338514,6906445,2213292,8.081576,0.057281,67034256,45196729,0,0,56052,0,1,1 +1774131194.317255,13.31,4,3992.50,55.66,1528.38,2179.16,0.00,0.000000,0.224118,6906445,2213744,22.120538,0.110537,67042588,45203263,0,0,56054,0,1,1 +1774131199.316004,6.80,4,3992.50,55.02,1545.42,2154.05,0.00,3519317605223.943848,3519317562897.446289,21,0,10.073198,0.055468,67046564,45206452,0,0,56057,0,1,1 +1774131204.315901,1.15,4,3992.50,54.61,1561.23,2138.18,0.00,83432.171707,125749.626084,6906445,2214439,0.005315,0.009031,67046678,45206616,0,0,56059,0,1,1 +1774131209.312910,0.75,4,3992.50,54.57,1562.82,2136.62,0.00,3520543097435.198242,3520543055093.110840,199,0,0.005190,0.007403,67046788,45206748,0,0,56062,0,1,1 +1774131214.313700,0.50,4,3992.50,54.60,1561.56,2137.87,0.00,1.363164,0.028316,237,378,0.003702,0.006871,67046883,45206881,0,0,56064,0,1,1 +1774131219.317763,0.65,4,3992.50,54.57,1562.94,2136.49,0.00,83357.069612,125645.035937,6905671,2214090,0.004639,0.006499,67046995,45207017,0,0,56067,0,1,1 +1774131224.317243,0.65,4,3992.50,54.59,1561.97,2137.47,0.00,3518803368141.495605,3518803325816.269531,21,0,0.003650,0.006452,67047088,45207142,0,0,56069,0,1,1 +1774131229.313265,0.90,4,3992.50,54.84,1562.42,2147.00,0.00,2.008434,0.000195,238,2,0.003288,0.005354,67047174,45207255,0,0,56072,0,1,1 +1774131234.317396,0.65,4,3992.50,54.86,1561.56,2147.72,0.00,0.000000,0.000000,238,2,0.003405,0.005825,67047259,45207369,0,0,56074,0,1,1 +1774131239.312912,0.70,4,3992.50,54.89,1560.14,2149.14,0.00,83499.232394,125860.364316,6905671,2214223,0.003877,0.007122,67047359,45207509,0,0,56077,0,1,1 +1774131244.312930,0.55,4,3992.50,54.89,1560.16,2149.12,0.00,3518423998920.599121,3518423956599.626465,21,0,0.002776,0.006262,67047431,45207622,0,0,56079,0,1,1 +1774131249.317384,19.57,4,3992.50,54.67,1565.52,2140.51,0.00,83356.205200,125680.410015,6906445,2214889,0.036031,77.251213,67049923,45216036,0,0,56082,0,1,1 +1774131254.316951,29.81,4,3992.50,54.78,1555.30,2144.82,0.00,3518741804862.186035,3518741762495.102051,237,378,0.055265,119.180375,67054064,45228388,0,0,56084,0,1,1 +1774131259.317500,3.67,4,3992.50,54.86,1552.27,2147.89,0.00,83415.662471,125907.776865,6905676,2215430,0.007986,8.620836,67054409,45229473,0,0,56087,0,1,1 +1774131264.314547,13.56,4,3992.50,59.23,1385.46,2318.92,0.00,3520516229687.584961,3520516187165.197266,238,2,22.657221,0.023037,67057237,45230719,0,0,56089,0,1,1 +1774131269.317416,1.60,4,3992.50,54.34,1576.79,2127.59,0.00,0.000000,0.000000,238,2,17.420855,0.014220,67059118,45231242,0,0,56092,0,1,1 +1774131274.317508,0.60,4,3992.50,54.35,1576.57,2127.82,0.00,0.000000,0.000000,238,2,0.003853,0.007097,67059216,45231380,0,0,56094,0,1,1 +1774131279.317241,0.65,4,3992.50,54.35,1576.57,2127.81,0.00,3518625299107.780273,3518625299109.739258,70,0,0.003378,0.005836,67059299,45231495,0,0,56097,0,1,1 +1774131284.316957,0.70,4,3992.50,54.35,1576.59,2127.79,0.00,0.000000,0.000000,70,0,0.003878,0.007110,67059399,45231634,0,0,56099,0,1,1 +1774131289.312827,1.00,4,3992.50,54.41,1574.16,2130.24,0.00,83511.240649,126057.053887,6905794,2215838,0.003423,0.005845,67059485,45231749,0,0,56102,0,1,1 +1774131294.313994,2.71,4,3992.50,54.81,1558.22,2145.77,0.00,4.108318,0.132293,6906568,2216310,0.014989,10.022701,67060352,45233173,0,0,56104,0,1,1 +1774131299.316664,8.92,4,3992.50,54.60,1564.45,2137.75,0.00,3516559400873.290039,3516559358389.156250,199,0,0.017451,30.030802,67061604,45236306,0,0,56107,0,1,1 +1774131304.317762,1.35,4,3992.50,54.30,1576.37,2125.80,0.00,3517664898519.272949,0.000000,70,0,0.002627,0.006628,67061680,45236434,0,0,56109,0,1,1 +1774131309.317399,0.75,4,3992.50,54.13,1582.83,2119.38,0.00,1.958931,0.000195,238,2,0.002264,0.006366,67061748,45236557,0,0,56112,0,1,1 +1774131314.312822,0.85,4,3992.50,54.13,1582.83,2119.37,0.00,3521660728630.040527,3521660728631.874512,199,0,0.001820,0.005093,67061803,45236655,0,0,56114,0,1,1 +1774131319.315523,1.15,4,3992.50,54.38,1585.82,2128.96,0.00,83401.214061,125917.347941,6906569,2216693,0.002262,0.006363,67061871,45236778,0,0,56117,0,1,1 +1774131324.315201,0.95,4,3992.50,54.37,1585.61,2128.89,0.00,3518663145357.983887,3518663102814.820801,237,378,0.001789,0.005072,67061924,45236875,0,0,56119,0,1,1 +1774131329.317440,0.85,4,3992.50,54.37,1585.62,2128.88,0.00,3516862693276.313477,3516862693277.823242,21,0,0.002288,0.006394,67061994,45237000,0,0,56122,0,1,1 +1774131334.317255,0.85,4,3992.50,54.57,1578.03,2136.42,0.00,2.006910,0.000195,238,2,0.001869,0.005151,67062053,45237102,0,0,56124,0,1,1 +1774131339.317287,0.80,4,3992.50,54.26,1590.28,2124.23,0.00,3518414182971.588867,3518414182973.420898,199,0,0.002339,0.006447,67062127,45237230,0,0,56127,0,1,1 +1774131344.317183,0.80,4,3992.50,54.30,1588.34,2126.16,0.00,3518511017392.338867,0.000000,21,0,0.001881,0.005139,67062186,45237332,0,0,56129,0,1,1 +1774131349.317695,1.40,4,3992.50,54.29,1579.86,2125.68,0.00,0.048042,0.000000,70,0,0.002344,0.006416,67062259,45237459,0,0,56132,0,1,1 +1774131354.316004,0.80,4,3992.50,54.30,1579.41,2126.06,0.00,3519627770139.413574,0.000000,21,0,0.002729,0.006442,67062315,45237567,0,0,56134,0,1,1 +1774131359.312844,0.85,4,3992.50,54.30,1579.41,2126.05,0.00,0.175111,0.000000,199,0,0.002140,0.006119,67062382,45237683,0,0,56137,0,1,1 +1774131364.316992,21.78,4,3992.50,60.65,1335.61,2374.75,0.00,3515520975252.902832,0.000000,21,0,33.625967,0.028979,67066132,45239473,0,0,56139,0,1,1 +1774131369.316057,33.64,4,3992.50,60.51,1344.11,2369.08,0.00,0.000000,0.000000,21,0,118.788180,0.044195,67078314,45242648,0,0,56142,0,1,1 +1774131374.316412,30.69,4,3992.50,60.49,1345.21,2368.13,0.00,83436.392654,125984.632291,6905795,2216595,118.756387,0.022189,67090539,45244201,0,0,56144,0,1,1 +1774131379.315179,30.67,4,3992.50,60.89,1329.23,2383.97,0.00,3519305241616.559570,3519305199053.287109,237,378,119.393439,0.025044,67102760,45246085,0,0,56147,0,1,1 +1774131384.312850,30.64,4,3992.50,60.66,1336.91,2375.00,0.00,83479.676697,126052.487698,6905795,2216681,119.019844,0.034678,67115000,45248648,0,0,56149,0,1,1 +1774131389.313119,30.18,4,3992.50,60.27,1352.07,2359.80,0.00,4.109056,0.032030,6906569,2217070,119.357839,0.034181,67127235,45251241,0,0,56152,0,1,1 +1774131394.317593,30.90,4,3992.50,60.43,1346.11,2365.82,0.00,3515292200685.422852,0.027124,6905795,2216703,119.258928,0.027159,67139499,45253317,0,0,56154,0,1,1 +1774131399.314405,29.03,4,3992.50,60.40,1347.02,2364.88,0.00,3520681531047.380371,3520681488468.663574,70,0,119.442859,0.024272,67151816,45255031,0,0,56157,0,1,1 +1774131404.317667,27.00,4,3992.50,60.55,1341.29,2370.73,0.00,3516142995901.186523,0.000000,21,0,119.486476,0.021377,67164012,45256511,0,0,56159,0,1,1 +1774131409.312762,1.81,4,3992.50,54.45,1580.31,2131.93,0.00,0.000000,0.000000,21,0,38.295172,0.012670,67168034,45257183,0,0,56162,0,1,1 +1774131414.317380,6.27,4,3992.50,54.01,1597.27,2114.73,0.00,0.048003,0.000000,70,0,4.038567,0.032682,67169857,45258679,0,0,56164,0,1,1 +1774131419.319304,17.56,4,3992.50,56.07,1516.73,2195.20,0.00,1.489759,0.028309,237,378,26.258595,0.137504,67180118,45266477,0,0,56167,0,1,1 +1774131424.312837,5.53,4,3992.50,55.33,1545.65,2166.26,0.00,0.469064,3522994286544.680664,238,2,9.992534,0.053423,67183943,45269560,0,0,56169,0,1,1 +1774131429.317451,1.10,4,3992.50,54.62,1573.32,2138.58,0.00,3515193463579.680176,0.028099,237,378,0.004120,0.007243,67184045,45269700,0,0,56172,0,1,1 +1774131434.317613,1.15,4,3992.50,54.24,1588.46,2123.44,0.00,3518323104034.128906,3518323104035.590820,70,0,0.003865,0.007097,67184144,45269838,0,0,56174,0,1,1 +1774131439.316387,1.30,4,3992.50,54.61,1559.08,2137.97,0.00,1.490697,0.028327,237,378,0.003637,0.006475,67184236,45269965,0,0,56177,0,1,1 +1774131444.317385,0.80,4,3992.50,54.18,1575.04,2121.14,0.00,0.000000,0.000000,237,378,0.003648,0.006500,67184329,45270094,0,0,56179,0,1,1 +1774131449.316489,0.80,4,3992.50,53.92,1584.96,2111.22,0.00,83459.990294,126017.989409,6906587,2218633,0.003650,0.006487,67184422,45270222,0,0,56182,0,1,1 +1774131454.314250,0.85,4,3992.50,53.80,1589.66,2106.53,0.00,3520013481105.812500,3520013438537.880859,21,0,0.004372,0.007757,67184537,45270382,0,0,56184,0,1,1 +1774131459.314524,0.90,4,3992.50,53.61,1597.30,2098.88,0.00,0.174990,0.000000,199,0,0.003407,0.005840,67184622,45270497,0,0,56187,0,1,1 +1774131464.317720,0.85,4,3992.50,53.62,1596.85,2099.33,0.00,0.000000,0.000000,199,0,0.003884,0.007113,67184723,45270637,0,0,56189,0,1,1 +1774131469.315239,0.95,4,3992.50,53.93,1584.52,2111.66,0.00,83487.841838,126058.196517,6906587,2218786,0.003422,0.005855,67184809,45270753,0,0,56192,0,1,1 +1774131474.317100,0.80,4,3992.50,53.95,1583.41,2112.37,0.00,3517127837319.156250,3517127794784.426758,237,378,0.003951,0.007160,67184914,45270896,0,0,56194,0,1,1 +1774131479.317208,0.75,4,3992.50,53.95,1583.43,2112.36,0.00,0.000000,0.000000,237,378,0.002721,0.003952,67184978,45270976,0,0,56197,0,1,1 +1774131484.317558,0.85,4,3992.50,53.95,1583.68,2112.11,0.00,3518190943959.291016,3518190943960.752930,70,0,0.004038,0.008171,67185083,45271128,0,0,56199,0,1,1 +1774131489.317606,0.80,4,3992.50,53.96,1582.95,2112.84,0.00,3518403373101.593262,0.000000,21,0,0.003395,0.005865,67185167,45271245,0,0,56202,0,1,1 +1774131494.312852,0.95,4,3992.50,53.96,1582.97,2112.82,0.00,0.000000,0.000000,21,0,0.003869,0.007117,67185266,45271384,0,0,56204,0,1,1 +1774131499.316859,1.71,4,3992.50,53.81,1590.48,2106.70,0.00,83375.653916,125895.174514,6905813,2218874,0.011045,4.012611,67185842,45272192,0,0,56207,0,1,1 +1774131504.314410,31.72,4,3992.50,54.54,1555.88,2135.19,0.00,3520161261706.472656,3520161219130.511719,237,378,0.082084,121.457841,67191928,45285209,0,0,56209,0,1,1 +1774131509.317167,22.05,4,3992.50,54.15,1567.97,2119.93,0.00,0.000000,0.000000,237,378,0.017223,79.679479,67192922,45293409,0,0,56212,0,1,1 +1774131514.317032,14.42,4,3992.50,53.73,1587.30,2103.69,0.00,83463.234922,126204.603450,6906703,2220611,40.065953,0.022283,67197402,45294683,0,0,56214,0,1,1 +1774131519.317249,1.40,4,3992.50,53.45,1598.25,2092.70,0.00,0.000000,0.083200,6906703,2220729,0.009364,0.011544,67197602,45294896,0,0,56217,0,1,1 +1774131524.317163,10.96,4,3992.50,53.75,1584.33,2104.48,0.00,3518497563357.027344,3518497520617.506836,21,0,0.021492,40.067238,67198987,45299415,0,0,56219,0,1,1 +1774131529.317759,1.05,4,3992.50,53.59,1590.55,2098.33,0.00,0.000000,0.000000,21,0,0.002761,0.006903,67199064,45299545,0,0,56222,0,1,1 +1774131534.317487,1.30,4,3992.50,53.80,1582.40,2106.48,0.00,83462.945041,126242.478288,6905929,2220809,0.001819,0.005102,67199119,45299644,0,0,56224,0,1,1 +1774131539.314730,0.75,4,3992.50,53.61,1589.86,2099.02,0.00,3520378647340.406738,3520378604539.545898,70,0,0.002265,0.006357,67199187,45299766,0,0,56227,0,1,1 +1774131544.317331,0.90,4,3992.50,53.56,1591.85,2097.02,0.00,0.126887,0.000000,199,0,0.001805,0.005130,67199241,45299867,0,0,56229,0,1,1 +1774131549.316382,0.85,4,3992.50,53.73,1585.21,2103.62,0.00,3519104992838.872070,0.000000,70,0,0.002023,0.006365,67199301,45299981,0,0,56232,0,1,1 +1774131554.317636,0.90,4,3992.50,53.77,1583.79,2105.08,0.00,1.489958,0.028313,237,378,0.002042,0.005773,67199363,45300095,0,0,56234,0,1,1 +1774131559.316998,1.20,4,3992.50,53.87,1580.71,2109.00,0.00,0.000000,0.000000,237,378,0.001858,0.005145,67199421,45300197,0,0,56237,0,1,1 +1774131564.316810,0.85,4,3992.50,53.75,1584.20,2104.49,0.00,0.000000,0.000000,237,378,0.002350,0.006435,67199496,45300324,0,0,56239,0,1,1 +1774131569.317666,0.85,4,3992.50,53.83,1581.09,2107.60,0.00,0.468377,3517834784601.277344,238,2,0.001925,0.005216,67199559,45300431,0,0,56242,0,1,1 +1774131574.313982,1.10,4,3992.50,53.83,1581.28,2107.41,0.00,3521031485866.409668,3521031485868.417969,21,0,0.002415,0.006462,67199637,45300561,0,0,56244,0,1,1 +1774131579.312848,0.80,4,3992.50,53.77,1583.23,2105.41,0.00,2.007291,0.000195,238,2,0.001819,0.005100,67199692,45300660,0,0,56247,0,1,1 +1774131584.316818,0.70,4,3992.50,53.79,1582.69,2105.99,0.00,3515646445139.025391,3515646445141.030762,21,0,0.002262,0.006351,67199760,45300782,0,0,56249,0,1,1 +1774131589.316863,17.64,4,3992.50,60.94,1307.43,2385.82,0.00,83457.751635,126240.809737,6905965,2221135,18.833692,0.021331,67201998,45301975,0,0,56252,0,1,1 +1774131594.314912,35.79,4,3992.50,60.70,1319.21,2376.71,0.00,3519810645645.942383,3519810602845.615234,199,0,118.210310,0.050596,67214073,45305601,0,0,56254,0,1,1 +1774131599.316108,30.66,4,3992.50,60.05,1344.88,2350.98,0.00,1.831398,0.000195,238,2,120.138794,0.032645,67226454,45307956,0,0,56257,0,1,1 +1774131604.317565,30.70,4,3992.50,60.26,1336.76,2359.14,0.00,83432.209988,126205.316084,6905975,2221242,118.128172,0.030878,67238553,45310287,0,0,56259,0,1,1 +1774131609.312814,30.98,4,3992.50,60.00,1346.84,2349.11,0.00,3521783541049.936035,3521783498225.680176,21,0,119.880557,0.028600,67250945,45312450,0,0,56262,0,1,1 +1774131614.312963,30.00,4,3992.50,60.07,1343.91,2351.91,0.00,0.048045,0.000000,70,0,118.558000,0.039317,67262981,45315433,0,0,56264,0,1,1 +1774131619.315954,29.44,4,3992.50,60.34,1333.15,2362.61,0.00,0.000000,0.000000,70,0,119.893687,0.046625,67275235,45318858,0,0,56267,0,1,1 +1774131624.316448,29.06,4,3992.50,60.12,1341.82,2353.91,0.00,83454.335548,126229.816214,6906749,2221726,119.154602,0.033466,67287444,45321181,0,0,56269,0,1,1 +1774131629.313605,29.22,4,3992.50,59.90,1350.63,2345.11,0.00,3520439221738.781250,3520439178932.766113,238,2,119.431075,0.035300,67299582,45323814,0,0,56272,0,1,1 +1774131634.312904,2.06,4,3992.50,54.53,1560.93,2134.88,0.00,3518930707947.931641,0.028129,237,378,53.280799,0.027341,67304995,45325794,0,0,56274,0,1,1 +1774131639.315638,7.18,4,3992.50,54.21,1573.27,2122.49,0.00,0.468201,3516513911380.079102,238,2,6.050668,0.040307,67307547,45327808,0,0,56277,0,1,1 +1774131644.314372,9.51,4,3992.50,54.58,1558.61,2137.12,0.00,3519328728051.584473,0.028132,237,378,14.104492,0.078444,67313094,45332186,0,0,56279,0,1,1 +1774131649.317385,13.84,4,3992.50,54.87,1547.88,2148.13,0.00,83410.939575,126167.130495,6906763,2222763,20.126655,0.108317,67320935,45338549,0,0,56282,0,1,1 +1774131654.312844,1.46,4,3992.50,53.92,1584.43,2111.29,0.00,3521635753222.755371,3521635710401.403809,238,2,0.004444,0.007717,67321028,45338687,0,0,56284,0,1,1 +1774131659.313043,0.65,4,3992.50,53.83,1588.32,2107.39,0.00,83457.425423,126238.402614,6906763,2223015,0.003815,0.007107,67321123,45338826,0,0,56287,0,1,1 +1774131664.313645,0.65,4,3992.50,53.83,1588.34,2107.37,0.00,3518013400407.291016,3518013357631.722168,70,0,0.003407,0.005842,67321208,45338941,0,0,56289,0,1,1 +1774131669.313304,0.55,4,3992.50,53.83,1588.12,2107.59,0.00,3518677379726.382324,0.000000,21,0,0.003866,0.007120,67321307,45339081,0,0,56292,0,1,1 +1774131674.312819,0.65,4,3992.50,53.83,1588.14,2107.57,0.00,0.000000,0.000000,21,0,0.003590,0.005493,67321392,45339185,0,0,56294,0,1,1 +1774131679.317093,1.15,4,3992.50,53.83,1586.76,2107.40,0.00,2.005122,0.000195,238,2,0.003887,0.007157,67321493,45339328,0,0,56297,0,1,1 +1774131684.317703,0.55,4,3992.50,53.83,1586.70,2107.47,0.00,3518007635524.380859,0.028122,237,378,0.003966,0.007890,67321600,45339480,0,0,56299,0,1,1 +1774131689.312831,0.65,4,3992.50,53.83,1586.66,2107.50,0.00,3521869421368.845215,3521869421370.308594,70,0,0.003869,0.007127,67321699,45339620,0,0,56302,0,1,1 +1774131694.317003,0.60,4,3992.50,53.86,1585.48,2108.68,0.00,83389.000097,126138.790457,6905989,2223073,0.003417,0.005850,67321785,45339736,0,0,56304,0,1,1 +1774131699.317545,0.65,4,3992.50,53.86,1585.50,2108.67,0.00,3518056202260.414551,3518056159479.578125,70,0,0.003960,0.007180,67321891,45339881,0,0,56307,0,1,1 +1774131704.312910,0.70,4,3992.50,53.84,1586.37,2107.80,0.00,3521702064764.248047,0.000000,21,0,0.003882,0.007774,67321991,45340025,0,0,56309,0,1,1 +1774131709.316870,0.85,4,3992.50,53.81,1587.46,2106.67,0.00,0.048009,0.000000,70,0,0.003875,0.007127,67322091,45340166,0,0,56312,0,1,1 +1774131714.317014,0.65,4,3992.50,53.79,1587.96,2106.18,0.00,1.958733,0.000195,238,2,0.003420,0.005855,67322177,45340282,0,0,56314,0,1,1 +1774131719.317113,0.90,4,3992.50,53.80,1587.58,2106.56,0.00,3518368079985.206055,3518368079987.164551,70,0,0.004548,0.008054,67322280,45340425,0,0,56317,0,1,1 +1774131724.317394,0.60,4,3992.50,53.80,1587.95,2106.20,0.00,3518238942749.419922,0.000000,21,0,0.003886,0.007117,67322381,45340565,0,0,56319,0,1,1 +1774131729.317769,0.65,4,3992.50,53.80,1587.74,2106.40,0.00,2.006686,0.000195,238,2,0.003878,0.007132,67322481,45340706,0,0,56322,0,1,1 +1774131734.313906,0.60,4,3992.50,53.80,1587.75,2106.39,0.00,83521.157545,126341.975625,6905989,2223385,0.003423,0.006504,67322567,45340826,0,0,56324,0,1,1 +1774131739.316427,1.55,4,3992.50,53.94,1576.43,2112.02,0.00,3516664306021.318359,3516664263257.096680,70,0,0.008176,2.012241,67322930,45341377,0,0,56327,0,1,1 +1774131744.317509,28.22,4,3992.50,54.29,1557.01,2125.60,0.00,3517675462593.542969,0.000000,21,0,0.034380,113.140403,67325468,45353271,0,0,56329,0,1,1 +1774131749.316970,23.94,4,3992.50,54.20,1557.06,2122.21,0.00,83471.770345,126418.308001,6906766,2224903,0.025788,89.936886,67327417,45362607,0,0,56332,0,1,1 +1774131754.317708,1.15,4,3992.50,53.82,1572.01,2107.30,0.00,3517917475537.007324,3517917432601.400391,70,0,0.004057,0.009961,67327528,45362795,0,0,56334,0,1,1 +1774131759.313396,15.86,4,3992.50,59.44,1355.50,2327.22,0.00,0.000000,0.000000,70,0,33.082971,0.022060,67331272,45364043,0,0,56337,0,1,1 +1774131764.312824,11.11,4,3992.50,53.85,1571.99,2108.20,0.00,83488.190717,126497.920495,6906899,2225545,7.044088,40.075916,67334112,45368684,0,0,56339,0,1,1 +1774131769.314855,1.20,4,3992.50,54.16,1559.38,2120.62,0.00,3517008965836.508789,3517008922849.028320,199,0,0.003367,0.007910,67334208,45368840,0,0,56342,0,1,1 +1774131774.317528,0.70,4,3992.50,54.10,1561.73,2118.22,0.00,3516557228552.871094,0.000000,21,0,0.002296,0.006361,67334279,45368963,0,0,56344,0,1,1 +1774131779.317239,0.55,4,3992.50,53.96,1567.12,2112.84,0.00,0.000000,0.000000,21,0,0.002289,0.006366,67334349,45369086,0,0,56347,0,1,1 +1774131784.317750,0.65,4,3992.50,53.96,1567.19,2112.76,0.00,0.174982,0.000000,199,0,0.002707,0.007451,67334433,45369232,0,0,56349,0,1,1 +1774131789.313507,0.65,4,3992.50,53.96,1567.31,2112.64,0.00,3521425771097.917969,0.000000,70,0,0.002049,0.006369,67334495,45369346,0,0,56352,0,1,1 +1774131794.317341,0.65,4,3992.50,53.95,1567.71,2112.23,0.00,0.000000,0.000000,70,0,0.002058,0.005731,67334558,45369457,0,0,56354,0,1,1 +1774131799.317606,0.90,4,3992.50,54.19,1558.38,2121.54,0.00,3518251013892.044434,0.000000,21,0,0.002284,0.006374,67334628,45369581,0,0,56357,0,1,1 +1774131804.314891,0.55,4,3992.50,54.12,1561.01,2118.94,0.00,0.000000,0.000000,21,0,0.002277,0.006360,67334697,45369703,0,0,56359,0,1,1 +1774131809.314392,0.75,4,3992.50,54.13,1560.66,2119.29,0.00,1.538532,0.028323,237,378,0.003550,0.007143,67334801,45369850,0,0,56362,0,1,1 +1774131814.316797,0.70,4,3992.50,53.69,1577.91,2102.04,0.00,83437.015215,126429.292090,6906899,2225883,0.001954,0.005212,67334865,45369958,0,0,56364,0,1,1 +1774131819.317428,0.75,4,3992.50,53.66,1579.03,2100.87,0.00,3517993386123.147461,3517993343117.125000,21,0,0.003099,0.006128,67334948,45370082,0,0,56367,0,1,1 +1774131824.312907,0.70,4,3992.50,53.87,1570.68,2109.22,0.00,83554.236552,126604.745650,6906899,2225917,0.002070,0.005748,67335012,45370194,0,0,56369,0,1,1 +1774131829.317460,0.90,4,3992.50,53.88,1570.80,2109.43,0.00,3515236371921.083496,3515236328948.627930,21,0,0.002330,0.006385,67335085,45370319,0,0,56372,0,1,1 +1774131834.315499,18.73,4,3992.50,59.98,1336.19,2348.52,0.00,2.007623,0.000195,238,2,23.653066,0.026040,67337931,45371687,0,0,56374,0,1,1 +1774131839.316667,33.03,4,3992.50,60.14,1332.81,2354.62,0.00,0.000000,0.000000,238,2,120.138340,0.032535,67350181,45373939,0,0,56377,0,1,1 +1774131844.316743,28.34,4,3992.50,60.34,1324.85,2362.42,0.00,3518383469795.800293,3518383469797.758789,70,0,118.560461,0.020943,67362193,45375354,0,0,56379,0,1,1 +1774131849.312935,28.64,4,3992.50,60.08,1335.11,2352.17,0.00,0.000000,0.000000,70,0,119.856414,0.026849,67374358,45377335,0,0,56382,0,1,1 +1774131854.315505,28.05,4,3992.50,60.20,1330.47,2356.83,0.00,83435.762981,126425.509217,6906899,2226134,119.922537,0.075119,67386885,45383034,0,0,56384,0,1,1 +1774131859.317036,27.80,4,3992.50,60.07,1335.47,2351.83,0.00,3517360201627.017090,0.015718,6906125,2225771,118.340472,0.064855,67399178,45387976,0,0,56387,0,1,1 +1774131864.313173,28.61,4,3992.50,60.04,1337.95,2350.86,0.00,3521157811372.417480,3521157768323.239258,21,0,120.262610,0.034005,67411562,45390364,0,0,56389,0,1,1 +1774131869.318587,28.17,4,3992.50,60.41,1323.55,2365.30,0.00,1.536715,0.028290,237,378,119.044650,0.040488,67423948,45393172,0,0,56392,0,1,1 +1774131874.317315,27.63,4,3992.50,60.24,1330.38,2358.57,0.00,83498.400611,126522.885177,6906900,2226222,119.198930,0.035050,67436183,45395640,0,0,56394,0,1,1 +1774131879.317398,1.35,4,3992.50,54.07,1572.03,2116.93,0.00,3518378485294.020020,3518378442282.663086,70,0,46.466178,0.010437,67440980,45396243,0,0,56397,0,1,1 +1774131884.316034,7.58,4,3992.50,54.38,1559.86,2129.04,0.00,0.126988,0.000000,199,0,8.064827,0.045409,67443810,45398328,0,0,56399,0,1,1 +1774131889.317541,17.13,4,3992.50,55.35,1521.73,2167.16,0.00,3517376762701.066895,0.000000,21,0,28.155551,0.122381,67452808,45404991,0,0,56402,0,1,1 +1774131894.317033,4.76,4,3992.50,54.82,1542.62,2146.28,0.00,0.048052,0.000000,70,0,4.035672,0.023807,67454284,45406026,0,0,56404,0,1,1 +1774131899.315449,1.05,4,3992.50,54.40,1558.96,2129.94,0.00,1.959410,0.000195,238,2,0.004604,0.008540,67454402,45406192,0,0,56407,0,1,1 +1774131904.316952,0.65,4,3992.50,54.21,1566.27,2122.64,0.00,3517380043425.765137,3517380043427.723145,70,0,0.003419,0.005853,67454488,45406308,0,0,56409,0,1,1 +1774131909.315969,14.07,4,3992.50,54.03,1572.12,2115.33,0.00,1.490625,0.028326,237,378,0.034621,56.701016,67456846,45412484,0,0,56412,0,1,1 +1774131914.314924,30.19,4,3992.50,54.15,1560.37,2120.20,0.00,83494.756943,126670.026925,6906913,2228784,0.042922,122.799447,67460037,45425187,0,0,56414,0,1,1 +1774131919.312844,7.78,4,3992.50,54.87,1531.78,2148.27,0.00,0.010160,24.195515,6906922,2229006,0.010216,25.652131,67460634,45427949,0,0,56417,0,1,1 +1774131924.316992,1.35,4,3992.50,54.46,1548.72,2132.27,0.00,3515520595381.409668,3515520552226.295410,238,2,0.006217,0.006981,67460749,45428078,0,0,56419,0,1,1 +1774131929.316497,15.28,4,3992.50,54.91,1534.03,2150.02,0.00,0.000000,0.000000,238,2,40.068669,0.024658,67465175,45429505,0,0,56422,0,1,1 +1774131934.313560,0.80,4,3992.50,54.32,1557.12,2126.94,0.00,3520505366371.924316,3520505366373.932617,21,0,0.004569,0.009362,67465289,45429669,0,0,56424,0,1,1 +1774131939.312903,0.55,4,3992.50,54.02,1569.12,2114.94,0.00,0.048053,0.000000,70,0,0.003879,0.007133,67465389,45429810,0,0,56427,0,1,1 +1774131944.317739,0.65,4,3992.50,53.95,1571.78,2112.29,0.00,83409.956610,126575.366194,6906286,2229052,0.003392,0.005837,67465473,45429925,0,0,56429,0,1,1 +1774131949.312903,1.26,4,3992.50,54.51,1556.50,2134.24,0.00,3521843199971.572266,3521843156722.639648,21,0,0.003877,0.007147,67465573,45430067,0,0,56432,0,1,1 +1774131954.315210,0.65,4,3992.50,54.32,1561.66,2126.77,0.00,1.537669,0.028307,237,378,0.003901,0.007150,67465675,45430209,0,0,56434,0,1,1 +1774131959.317805,0.70,4,3992.50,54.15,1568.32,2120.11,0.00,83449.926058,126632.357685,6907060,2229641,0.003721,0.006282,67465751,45430321,0,0,56437,0,1,1 +1774131964.317738,0.55,4,3992.50,54.15,1568.34,2120.09,0.00,3518485037053.593262,3518485037057.690430,6906286,2229282,0.003783,0.007052,67465853,45430465,0,0,56439,0,1,1 +1774131969.317077,0.55,4,3992.50,54.15,1568.35,2120.07,0.00,3518901601401.849609,3518901558188.714355,21,0,0.003421,0.005866,67465939,45430582,0,0,56442,0,1,1 +1774131974.312907,0.60,4,3992.50,54.15,1568.37,2120.06,0.00,0.000000,0.000000,21,0,0.003881,0.007116,67466039,45430721,0,0,56444,0,1,1 +1774131979.315850,1.20,4,3992.50,54.26,1564.28,2124.43,0.00,0.174897,0.000000,199,0,0.003938,0.007168,67466143,45430865,0,0,56447,0,1,1 +1774131984.312900,0.65,4,3992.50,54.09,1570.54,2117.84,0.00,83539.789638,126773.053326,6906286,2229415,0.003868,0.007101,67466242,45431003,0,0,56449,0,1,1 +1774131989.317551,0.60,4,3992.50,54.12,1569.33,2119.05,0.00,3515167329397.329590,3515167286229.907715,21,0,0.003425,0.005868,67466329,45431121,0,0,56452,0,1,1 +1774131994.317086,11.86,4,3992.50,54.09,1568.38,2117.84,0.00,2.007023,0.000195,238,2,0.029409,40.074040,67468246,45435626,0,0,56454,0,1,1 +1774131999.312940,0.70,4,3992.50,53.90,1575.80,2110.41,0.00,3521356760136.851562,3521356760138.860352,21,0,0.002291,0.006371,67468316,45435749,0,0,56457,0,1,1 +1774132004.313092,0.65,4,3992.50,53.87,1577.16,2109.06,0.00,2.006775,0.000195,238,2,0.002276,0.006356,67468385,45435871,0,0,56459,0,1,1 +1774132009.313647,1.05,4,3992.50,53.87,1576.48,2109.30,0.00,83479.393273,126716.434384,6906286,2229784,0.001831,0.005098,67468441,45435970,0,0,56462,0,1,1 +1774132014.317611,0.70,4,3992.50,54.09,1567.75,2117.91,0.00,3515650109939.868164,3515650066734.285156,21,0,0.002287,0.006351,67468511,45436092,0,0,56464,0,1,1 +1774132019.317566,0.65,4,3992.50,53.90,1575.16,2110.50,0.00,2.006854,0.000195,238,2,0.002289,0.006366,67468581,45436215,0,0,56467,0,1,1 +1774132024.317093,0.75,4,3992.50,53.90,1575.16,2110.49,0.00,3518770106349.803711,3518770106351.635742,199,0,0.002276,0.006357,67468650,45436337,0,0,56469,0,1,1 +1774132029.317291,0.70,4,3992.50,53.91,1574.94,2110.72,0.00,3518297817441.843750,0.000000,70,0,0.002314,0.006372,67468722,45436460,0,0,56472,0,1,1 +1774132034.317383,0.55,4,3992.50,53.91,1574.94,2110.71,0.00,83493.192513,126736.237611,6907060,2230236,0.001869,0.005176,67468781,45436564,0,0,56474,0,1,1 +1774132039.313494,0.90,4,3992.50,54.27,1556.41,2124.91,0.00,3521175842123.236328,0.009773,6906286,2229875,0.002072,0.005330,67468854,45436680,0,0,56477,0,1,1 +1774132044.317776,0.55,4,3992.50,54.19,1559.57,2121.76,0.00,3515426702391.523926,3515426659180.568359,70,0,0.002287,0.006351,67468924,45436802,0,0,56479,0,1,1 +1774132049.317028,0.65,4,3992.50,54.25,1557.48,2123.85,0.00,83507.214703,126757.618324,6907060,2230314,0.002289,0.006367,67468994,45436925,0,0,56482,0,1,1 +1774132054.313221,0.70,4,3992.50,54.25,1557.49,2123.85,0.00,3521118361246.092773,3521118317969.250488,21,0,0.002886,0.007458,67469076,45437068,0,0,56484,0,1,1 +1774132059.313544,21.24,4,3992.50,60.12,1331.43,2353.93,0.00,0.000000,0.000000,21,0,30.246780,0.024799,67472448,45438490,0,0,56487,0,1,1 +1774132064.318073,32.44,4,3992.50,59.95,1341.12,2347.09,0.00,83419.211242,126624.049616,6907060,2230439,118.457174,0.047294,67484490,45441830,0,0,56489,0,1,1 +1774132069.317974,27.53,4,3992.50,60.11,1335.05,2353.36,0.00,3518507091607.648438,3518507048360.806641,238,2,119.768137,0.033317,67496725,45444171,0,0,56492,0,1,1 +1774132074.312891,28.54,4,3992.50,60.26,1333.76,2359.32,0.00,3522017135021.997559,3522017135023.958008,70,0,118.282647,0.036232,67508741,45446954,0,0,56494,0,1,1 +1774132079.312824,31.27,4,3992.50,60.07,1341.13,2351.98,0.00,3518484483240.668945,0.000000,21,0,120.172724,0.033035,67521187,45449356,0,0,56497,0,1,1 +1774132084.316722,28.13,4,3992.50,59.97,1345.19,2347.91,0.00,0.000000,0.000000,21,0,118.471776,0.026104,67533266,45451202,0,0,56499,0,1,1 +1774132089.317608,28.04,4,3992.50,60.20,1336.01,2357.13,0.00,0.048038,0.000000,70,0,119.744432,0.028588,67545405,45453116,0,0,56502,0,1,1 +1774132094.316020,28.38,4,3992.50,60.21,1335.56,2357.50,0.00,0.000000,0.000000,70,0,119.401884,0.024848,67557557,45454870,0,0,56504,0,1,1 +1774132099.315671,26.63,4,3992.50,60.32,1331.41,2361.77,0.00,3518682843910.065918,0.000000,21,0,118.969785,0.026131,67569555,45456773,0,0,56507,0,1,1 +1774132104.317270,1.51,4,3992.50,54.13,1574.62,2119.30,0.00,0.000000,0.000000,21,0,41.850408,0.018922,67573970,45457854,0,0,56509,0,1,1 +1774132109.313781,11.31,4,3992.50,54.13,1574.51,2119.35,0.00,1.539453,0.028340,237,378,14.099647,0.069014,67578504,45461282,0,0,56512,0,1,1 +1774132114.317082,13.15,4,3992.50,54.12,1574.82,2118.97,0.00,3516116147477.496094,3516116147479.005371,21,0,20.112418,0.092781,67585029,45466240,0,0,56514,0,1,1 +1774132119.317169,4.58,4,3992.50,54.01,1579.20,2114.59,0.00,83489.370190,126737.659170,6906303,2231361,6.050674,0.038124,67587330,45468036,0,0,56517,0,1,1 +1774132124.312905,1.30,4,3992.50,54.19,1571.97,2121.82,0.00,3521440317451.344238,3521440274165.209473,199,0,0.003803,0.008762,67587432,45468193,0,0,56519,0,1,1 +1774132129.312899,0.95,4,3992.50,54.22,1571.01,2122.96,0.00,83494.865591,126740.502403,6907077,2231998,0.003917,0.007166,67587535,45468337,0,0,56522,0,1,1 +1774132134.313647,0.60,4,3992.50,54.18,1572.64,2121.15,0.00,3517910772060.811523,3517910728821.698242,199,0,0.003191,0.005208,67587614,45468440,0,0,56524,0,1,1 +1774132139.312906,0.55,4,3992.50,54.18,1572.41,2121.38,0.00,3518958962817.114746,0.000000,70,0,0.003650,0.006500,67587707,45468569,0,0,56527,0,1,1 +1774132144.312943,0.65,4,3992.50,54.16,1573.11,2120.68,0.00,83490.143873,126739.807631,6906303,2231911,0.003865,0.007097,67587806,45468707,0,0,56529,0,1,1 +1774132149.316916,0.60,4,3992.50,54.16,1573.11,2120.67,0.00,4.106015,0.034348,6907077,2232301,0.003950,0.007220,67587912,45468854,0,0,56532,0,1,1 +1774132154.317343,0.60,4,3992.50,54.16,1573.13,2120.65,0.00,3518137070513.793457,3518137027271.611816,21,0,0.003445,0.005886,67588000,45468972,0,0,56534,0,1,1 +1774132159.312823,0.95,4,3992.50,54.57,1557.05,2136.73,0.00,83570.479808,126855.528585,6907077,2232327,0.003882,0.007139,67588100,45469113,0,0,56537,0,1,1 +1774132164.316113,0.60,4,3992.50,54.32,1566.88,2126.90,0.00,3516123755054.027832,3516123711836.366211,199,0,0.003901,0.007149,67588202,45469255,0,0,56539,0,1,1 +1774132169.312840,0.60,4,3992.50,54.32,1566.91,2126.89,0.00,3520741937253.834961,0.000000,21,0,0.003955,0.007177,67588307,45469399,0,0,56542,0,1,1 +1774132174.316960,1.40,4,3992.50,54.24,1570.14,2123.64,0.00,83422.082495,126636.573531,6906303,2232048,0.003425,0.005858,67588394,45469516,0,0,56544,0,1,1 +1774132179.317364,15.14,4,3992.50,54.05,1575.66,2116.01,0.00,3518152653197.879395,3518152609951.273926,21,0,0.035034,62.295513,67590673,45476343,0,0,56547,0,1,1 +1774132184.313382,28.49,4,3992.50,54.41,1554.24,2130.33,0.00,0.175139,0.000000,199,0,0.036497,120.272166,67593327,45488929,0,0,56549,0,1,1 +1774132189.312997,7.09,4,3992.50,53.85,1570.80,2108.46,0.00,3518708194453.462402,0.000000,21,0,0.013506,22.641259,67594202,45491419,0,0,56552,0,1,1 +1774132194.315479,14.84,4,3992.50,53.76,1576.54,2104.66,0.00,0.048023,0.000000,70,0,40.047069,0.024640,67598712,45492792,0,0,56554,0,1,1 +1774132199.317661,1.00,4,3992.50,53.52,1585.55,2095.62,0.00,3516902861536.526855,0.000000,21,0,0.006849,0.010237,67598868,45492983,0,0,56557,0,1,1 +1774132204.313691,0.95,4,3992.50,53.34,1592.77,2088.44,0.00,0.048085,0.000000,70,0,0.003423,0.005860,67598954,45493099,0,0,56559,0,1,1 +1774132209.316981,0.65,4,3992.50,53.22,1597.50,2083.71,0.00,1.489352,0.028302,237,378,0.003875,0.007128,67599054,45493240,0,0,56562,0,1,1 +1774132214.314046,1.00,4,3992.50,53.37,1591.67,2089.54,0.00,3520503710763.044434,3520503710764.555176,21,0,0.006840,0.640315,67599273,45493583,0,0,56564,0,1,1 +1774132219.315170,11.90,4,3992.50,54.05,1562.76,2116.03,0.00,83492.119322,126950.139126,6907247,2234447,0.021211,39.428413,67600713,45497946,0,0,56567,0,1,1 +1774132224.317514,0.95,4,3992.50,54.27,1553.95,2124.78,0.00,3516788865513.149902,3516788822065.677246,70,0,0.001855,0.005117,67600771,45498046,0,0,56569,0,1,1 +1774132229.315700,0.80,4,3992.50,54.18,1557.55,2121.18,0.00,0.126999,0.000000,199,0,0.002290,0.006368,67600841,45498169,0,0,56572,0,1,1 +1774132234.316416,0.90,4,3992.50,54.04,1562.78,2115.95,0.00,3517933267053.279785,0.000000,21,0,0.002288,0.006355,67600911,45498291,0,0,56574,0,1,1 +1774132239.316839,0.75,4,3992.50,54.04,1562.97,2115.77,0.00,1.538249,0.028318,237,378,0.002289,0.006365,67600981,45498414,0,0,56577,0,1,1 +1774132244.313473,0.85,4,3992.50,54.02,1563.85,2114.89,0.00,83565.604384,127064.278967,6907247,2234542,0.002278,0.006335,67601050,45498534,0,0,56579,0,1,1 +1774132249.314516,1.20,4,3992.50,54.41,1548.79,2130.38,0.00,3517703181227.474121,3517703137768.660645,21,0,0.001398,0.003887,67601094,45498613,0,0,56582,0,1,1 +1774132254.313314,0.90,4,3992.50,54.31,1552.58,2126.24,0.00,83530.968195,127017.411861,6907247,2234660,0.002340,0.006420,67601168,45498739,0,0,56584,0,1,1 +1774132259.316650,0.85,4,3992.50,54.31,1552.58,2126.24,0.00,3516091015753.714844,3516090972304.711426,238,2,0.003284,0.007742,67601246,45498873,0,0,56587,0,1,1 +1774132264.314764,0.80,4,3992.50,54.31,1552.59,2126.23,0.00,3519765143058.602051,3519765143060.561523,70,0,0.001995,0.005250,67601313,45498984,0,0,56589,0,1,1 +1774132269.315874,0.95,4,3992.50,54.31,1552.59,2126.23,0.00,0.126925,0.000000,199,0,0.002288,0.006365,67601383,45499107,0,0,56592,0,1,1 +1774132274.316972,0.85,4,3992.50,54.29,1553.21,2125.61,0.00,83488.250567,126958.958812,6906473,2234299,0.002288,0.006355,67601453,45499229,0,0,56594,0,1,1 +1774132279.316916,1.36,4,3992.50,53.98,1569.26,2113.57,0.00,3518476888387.483398,3518476844906.856445,70,0,0.002289,0.006366,67601523,45499352,0,0,56597,0,1,1 +1774132284.316794,30.23,4,3992.50,59.84,1345.21,2342.89,0.00,1.490368,0.028321,237,378,60.092393,0.032953,67608012,45501440,0,0,56599,0,1,1 +1774132289.314458,29.56,4,3992.50,60.13,1335.50,2354.14,0.00,3520081703051.332520,3520081703052.795410,70,0,118.219895,0.022033,67620212,45502962,0,0,56602,0,1,1 +1774132294.313040,28.28,4,3992.50,60.17,1333.93,2355.72,0.00,3519435738263.602539,0.000000,21,0,120.224331,0.088960,67632970,45509666,0,0,56604,0,1,1 +1774132299.316605,27.94,4,3992.50,60.02,1339.97,2349.73,0.00,0.048013,0.000000,70,0,118.092742,0.056594,67645426,45513918,0,0,56607,0,1,1 +1774132304.312818,28.19,4,3992.50,60.18,1333.61,2356.06,0.00,0.000000,0.000000,70,0,120.256998,0.023711,67657679,45515604,0,0,56609,0,1,1 +1774132309.317055,28.94,4,3992.50,60.27,1325.18,2359.69,0.00,3515458283358.458008,0.000000,21,0,118.072204,0.050965,67669740,45519214,0,0,56612,0,1,1 +1774132314.317286,28.31,4,3992.50,59.91,1339.25,2345.57,0.00,0.000000,0.000000,21,0,120.167379,0.040951,67682114,45522329,0,0,56614,0,1,1 +1774132319.312804,28.15,4,3992.50,60.08,1332.55,2352.12,0.00,0.000000,0.000000,21,0,119.080109,0.047718,67694399,45525885,0,0,56617,0,1,1 +1774132324.312843,20.04,4,3992.50,60.13,1330.49,2354.40,0.00,83510.246772,126986.266073,6907248,2234946,119.373161,0.048028,67706716,45529517,0,0,56619,0,1,1 +1774132329.316947,1.20,4,3992.50,53.65,1584.40,2100.49,0.00,3515550843364.598145,3515550799923.911621,21,0,12.012998,0.011983,67708082,45530076,0,0,56622,0,1,1 +1774132334.317534,10.45,4,3992.50,54.01,1570.08,2114.75,0.00,0.174979,0.000000,199,0,10.083255,0.056199,67711722,45532763,0,0,56624,0,1,1 +1774132339.317512,18.79,4,3992.50,54.07,1568.82,2116.93,0.00,3518453008848.106445,0.000000,21,0,30.159528,0.124164,67720976,45539720,0,0,56627,0,1,1 +1774132344.317095,2.21,4,3992.50,53.71,1582.70,2103.02,0.00,0.000000,0.000000,21,0,0.016821,0.013740,67721317,45540027,0,0,56629,0,1,1 +1774132349.312846,0.80,4,3992.50,53.73,1582.08,2103.63,0.00,1.539687,0.028344,237,378,0.003881,0.007138,67721417,45540168,0,0,56632,0,1,1 +1774132354.312916,1.05,4,3992.50,54.06,1569.09,2116.57,0.00,0.468450,3518387657318.761230,238,2,0.004485,0.008232,67721530,45540330,0,0,56634,0,1,1 +1774132359.312841,0.85,4,3992.50,54.07,1568.91,2116.80,0.00,0.000000,0.000000,238,2,0.003408,0.005865,67721615,45540447,0,0,56637,0,1,1 +1774132364.312896,0.85,4,3992.50,54.07,1568.92,2116.79,0.00,3518398259508.828613,3518398259510.787109,70,0,0.003420,0.005855,67721701,45540563,0,0,56639,0,1,1 +1774132369.312893,1.15,4,3992.50,54.45,1557.54,2131.80,0.00,3518439480387.680176,0.000000,21,0,0.003878,0.007132,67721801,45540704,0,0,56642,0,1,1 +1774132374.317527,0.80,4,3992.50,54.26,1564.99,2124.32,0.00,83433.678220,126871.487502,6907262,2236675,0.004000,0.007246,67721911,45540852,0,0,56644,0,1,1 +1774132379.317382,0.95,4,3992.50,54.26,1565.01,2124.30,0.00,3518538956815.624512,3518538913336.258789,70,0,0.003420,0.005878,67721997,45540970,0,0,56647,0,1,1 +1774132384.317617,0.75,4,3992.50,54.20,1567.41,2121.90,0.00,1.958697,0.000195,238,2,0.004262,0.008194,67722109,45541133,0,0,56649,0,1,1 +1774132389.317823,1.60,4,3992.50,54.20,1567.30,2122.01,0.00,3518291786624.656250,0.028124,237,378,0.003953,0.007816,67722214,45541281,0,0,56652,0,1,1 +1774132394.314920,0.85,4,3992.50,53.90,1579.11,2110.21,0.00,3520481445434.389648,3520481445435.900879,21,0,0.003880,0.007114,67722314,45541420,0,0,56654,0,1,1 +1774132399.317062,0.95,4,3992.50,54.03,1571.18,2115.25,0.00,2.005977,0.000195,238,2,0.003450,0.005888,67722402,45541539,0,0,56657,0,1,1 +1774132404.317455,0.85,4,3992.50,53.83,1578.62,2107.57,0.00,83498.304109,126979.226814,6906488,2236480,0.003865,0.007122,67722501,45541679,0,0,56659,0,1,1 +1774132409.312937,0.90,4,3992.50,53.84,1578.42,2107.78,0.00,3521619912629.104004,3521619869107.384766,70,0,0.005030,0.008432,67722613,45541828,0,0,56662,0,1,1 +1774132414.317371,22.13,4,3992.50,54.27,1557.88,2124.68,0.00,1.957053,0.000195,238,2,0.045936,87.856719,67725891,45551291,0,0,56664,0,1,1 +1774132419.317728,29.21,4,3992.50,54.66,1537.53,2140.07,0.00,3518185723336.591797,3518185723338.598633,21,0,0.043853,117.159418,67729063,45563456,0,0,56667,0,1,1 +1774132424.312813,1.61,4,3992.50,53.93,1567.40,2111.30,0.00,83589.060376,127319.443555,6906499,2237850,0.006623,0.008379,67729197,45563619,0,0,56669,0,1,1 +1774132429.314764,14.99,4,3992.50,54.86,1533.23,2147.74,0.00,3517064383495.392578,3517064339823.534180,237,378,40.053646,0.030801,67733851,45565468,0,0,56672,0,1,1 +1774132434.316608,1.10,4,3992.50,54.40,1551.23,2129.71,0.00,0.468284,3517140205048.033203,238,2,0.004577,0.009328,67733966,45565630,0,0,56674,0,1,1 +1774132439.316984,10.10,4,3992.50,54.41,1548.44,2130.34,0.00,3518172925841.907715,3518172925843.914551,21,0,0.022794,38.058759,67735446,45569813,0,0,56677,0,1,1 +1774132444.316260,2.35,4,3992.50,53.97,1565.82,2113.05,0.00,83534.907117,127245.278830,6906620,2238475,0.004359,2.012758,67735605,45570218,0,0,56679,0,1,1 +1774132449.315121,0.70,4,3992.50,53.98,1565.45,2113.42,0.00,3519239014237.243164,3519238970521.231934,238,2,0.002277,0.006367,67735674,45570341,0,0,56682,0,1,1 +1774132454.317666,0.95,4,3992.50,53.99,1564.91,2113.96,0.00,3516647396420.404297,0.028111,237,378,0.002313,0.007027,67735746,45570469,0,0,56684,0,1,1 +1774132459.317087,1.30,4,3992.50,53.99,1565.49,2113.96,0.00,0.000000,0.000000,237,378,0.001856,0.005130,67735804,45570570,0,0,56687,0,1,1 +1774132464.313786,0.80,4,3992.50,53.87,1569.88,2109.00,0.00,83576.464490,127311.009032,6906620,2238552,0.002316,0.006391,67735876,45570694,0,0,56689,0,1,1 +1774132469.316889,0.75,4,3992.50,53.87,1569.88,2108.99,0.00,4.106728,0.034744,6907394,2238938,0.002295,0.006383,67735947,45570819,0,0,56692,0,1,1 +1774132474.316850,0.85,4,3992.50,53.87,1569.83,2109.04,0.00,3518464855787.198730,3518464812084.767578,238,2,0.002314,0.006387,67736019,45570943,0,0,56694,0,1,1 +1774132479.317200,0.70,4,3992.50,53.89,1569.11,2109.76,0.00,83519.070860,127226.151053,6907394,2239034,0.001195,0.003260,67736058,45571010,0,0,56697,0,1,1 +1774132484.312849,1.00,4,3992.50,53.70,1576.53,2102.34,0.00,0.000000,0.007037,6907394,2239040,0.002168,0.005846,67736129,45571128,0,0,56699,0,1,1 +1774132489.317301,1.05,4,3992.50,53.83,1581.82,2107.60,0.00,3515306922417.933105,3515306878747.170410,237,378,0.002411,0.006461,67736207,45571259,0,0,56702,0,1,1 +1774132494.316308,0.95,4,3992.50,53.84,1581.52,2108.04,0.00,0.468550,3519136206461.934570,238,2,0.002277,0.006357,67736276,45571381,0,0,56704,0,1,1 +1774132499.312848,0.80,4,3992.50,53.81,1582.96,2106.60,0.00,0.000000,0.000000,238,2,0.001832,0.005102,67736332,45571480,0,0,56707,0,1,1 +1774132504.313333,0.95,4,3992.50,53.65,1589.07,2100.49,0.00,3518095610241.042969,3518095610242.875000,199,0,0.004316,0.007982,67736426,45571620,0,0,56709,0,1,1 +1774132509.313433,47.60,4,3992.50,60.61,1322.51,2373.15,0.00,3518367154674.656250,0.000000,70,0,75.313250,0.047850,67744607,45574748,0,0,56712,0,1,1 +1774132514.316381,29.36,4,3992.50,60.15,1341.07,2355.16,0.00,3516363527028.356445,0.000000,21,0,123.097165,0.054669,67757187,45578883,0,0,56714,0,1,1 +1774132519.317670,28.89,4,3992.50,60.21,1338.89,2357.33,0.00,0.000000,0.000000,21,0,120.335136,0.057778,67769452,45583120,0,0,56717,0,1,1 +1774132524.317379,28.67,4,3992.50,60.49,1327.79,2368.47,0.00,1.538469,0.028322,237,378,120.774268,0.056251,67781827,45587369,0,0,56719,0,1,1 +1774132529.316617,29.28,4,3992.50,60.72,1318.85,2377.36,0.00,83538.099734,127254.848948,6907394,2239364,119.781037,0.057796,67793946,45591837,0,0,56722,0,1,1 +1774132534.313669,28.44,4,3992.50,60.54,1325.88,2370.38,0.00,0.000000,0.008501,6907394,2239378,119.836969,0.059736,67806180,45596187,0,0,56724,0,1,1 +1774132539.316746,28.01,4,3992.50,60.20,1339.36,2356.86,0.00,3516273663441.850098,3516273619758.127441,238,2,120.090723,0.054958,67818334,45600343,0,0,56727,0,1,1 +1774132544.317422,28.57,4,3992.50,60.38,1332.08,2364.18,0.00,3517961035266.803223,0.028121,237,378,119.344375,0.052638,67830287,45604420,0,0,56729,0,1,1 +1774132549.317589,14.62,4,3992.50,55.86,1513.16,2187.06,0.00,83518.539034,127231.390441,6906627,2239058,106.741750,0.051511,67841083,45608322,0,0,56732,0,1,1 +1774132554.317127,1.55,4,3992.50,55.46,1528.99,2171.24,0.00,3518762035883.125977,3518761992166.121582,199,0,0.007704,0.007912,67841242,45608489,0,0,56734,0,1,1 +1774132559.313164,15.33,4,3992.50,55.05,1544.83,2155.41,0.00,3521227636005.735352,0.000000,21,0,20.147386,0.095247,67847876,45613397,0,0,56737,0,1,1 +1774132564.316372,12.32,4,3992.50,55.57,1524.46,2175.73,0.00,2.005549,0.000195,238,2,20.112573,0.089940,67854527,45618244,0,0,56739,0,1,1 +1774132569.313054,1.05,4,3992.50,55.46,1528.94,2171.22,0.00,3520774034628.865723,0.028144,237,378,0.004595,0.008217,67854642,45618403,0,0,56742,0,1,1 +1774132574.313490,0.75,4,3992.50,54.83,1553.40,2146.80,0.00,3518130482082.833008,3518130482084.343262,21,0,0.003420,0.005855,67854728,45618519,0,0,56744,0,1,1 +1774132579.313005,1.20,4,3992.50,54.90,1549.50,2149.59,0.00,0.000000,0.000000,21,0,0.003878,0.007133,67854828,45618660,0,0,56747,0,1,1 +1774132584.312892,0.55,4,3992.50,54.90,1549.59,2149.44,0.00,0.175004,0.000000,199,0,0.003420,0.006499,67854914,45618780,0,0,56749,0,1,1 +1774132589.315527,0.60,4,3992.50,54.91,1549.37,2149.67,0.00,1.362661,0.028305,237,378,0.003897,0.007124,67855016,45618921,0,0,56752,0,1,1 +1774132594.316263,0.65,4,3992.50,54.95,1547.50,2151.49,0.00,83509.052692,127218.338828,6906633,2240497,0.003903,0.007152,67855118,45619063,0,0,56754,0,1,1 +1774132599.315931,0.65,4,3992.50,54.57,1562.61,2136.43,0.00,3518670773544.659180,3518670729827.368652,199,0,0.003966,0.007257,67855225,45619212,0,0,56757,0,1,1 +1774132604.316590,0.55,4,3992.50,54.57,1562.61,2136.43,0.00,3517973938152.626465,0.000000,21,0,0.000142,0.000020,67855234,45619214,0,0,56759,0,1,1 +1774132609.317743,0.85,4,3992.50,54.63,1555.77,2138.94,0.00,0.048036,0.000000,70,0,0.000093,0.000030,67855240,45619217,0,0,56762,0,1,1 +1774132614.317006,0.50,4,3992.50,54.65,1554.84,2139.64,0.00,3518955831185.969727,0.000000,21,0,0.000204,0.000020,67855253,45619219,0,0,56764,0,1,1 +1774132619.317280,0.40,4,3992.50,54.65,1554.84,2139.64,0.00,2.006726,0.000195,238,2,0.000149,0.000030,67855262,45619222,0,0,56767,0,1,1 +1774132624.312881,0.45,4,3992.50,54.78,1549.81,2144.67,0.00,83594.431486,127349.463877,6906633,2240828,0.000051,0.000020,67855265,45619224,0,0,56769,0,1,1 +1774132629.316959,0.35,4,3992.50,54.76,1550.67,2143.81,0.00,3515569630600.807617,3515569586921.906250,21,0,0.000112,0.000030,67855272,45619227,0,0,56772,0,1,1 +1774132634.312937,0.60,4,3992.50,54.76,1550.46,2144.01,0.00,0.175141,0.000000,199,0,0.003643,0.006499,67855365,45619356,0,0,56774,0,1,1 +1774132639.317785,1.10,4,3992.50,54.49,1562.27,2133.57,0.00,1.362058,0.028293,237,378,0.003859,0.007127,67855464,45619497,0,0,56777,0,1,1 +1774132644.316788,7.93,4,3992.50,54.20,1573.73,2121.88,0.00,3519138835075.421387,3519138835076.932129,21,0,0.023731,31.610985,67856984,45623087,0,0,56779,0,1,1 +1774132649.317413,30.18,4,3992.50,54.03,1571.89,2115.45,0.00,1.538187,0.028317,237,378,0.049415,122.409792,67860672,45635774,0,0,56782,0,1,1 +1774132654.317643,12.96,4,3992.50,54.15,1566.52,2120.21,0.00,83521.630620,127409.314539,6907410,2242525,0.016168,51.073649,67861721,45641097,0,0,56784,0,1,1 +1774132659.317436,9.05,4,3992.50,59.24,1370.98,2319.50,0.00,3518582560336.595703,3518582516446.593262,21,0,4.817798,0.016558,67862618,45641765,0,0,56787,0,1,1 +1774132664.313785,6.18,4,3992.50,59.58,1357.59,2332.85,0.00,0.000000,0.000000,21,0,10.764545,0.004253,67863703,45642103,0,0,56789,0,1,1 +1774132669.317458,0.75,4,3992.50,59.76,1351.64,2339.84,0.00,0.000000,0.000000,21,0,0.000597,0.000030,67863715,45642106,0,0,56792,0,1,1 +1774132674.316687,0.45,4,3992.50,59.76,1350.69,2339.79,0.00,0.048054,0.000000,70,0,0.000487,0.000020,67863729,45642108,0,0,56794,0,1,1 +1774132679.317602,0.35,4,3992.50,59.77,1350.44,2340.03,0.00,83527.609956,127419.567830,6907527,2242839,0.000056,0.000030,67863733,45642111,0,0,56797,0,1,1 +1774132684.314474,0.55,4,3992.50,59.66,1354.68,2335.79,0.00,3520639457832.649414,3520639413905.059082,199,0,0.000042,0.000020,67863736,45642113,0,0,56799,0,1,1 +1774132689.313843,0.40,4,3992.50,59.68,1353.71,2336.77,0.00,3518881711205.727051,0.000000,70,0,0.000503,0.000030,67863751,45642116,0,0,56802,0,1,1 +1774132694.316843,0.60,4,3992.50,59.68,1354.01,2336.46,0.00,3516326982998.195801,0.000000,21,0,0.003679,0.008044,67863860,45642274,0,0,56804,0,1,1 +1774132699.317399,1.10,4,3992.50,59.88,1346.19,2344.56,0.00,0.048042,0.000000,70,0,0.004486,0.008355,67863983,45642435,0,0,56807,0,1,1 +1774132704.313497,0.85,4,3992.50,59.89,1345.73,2344.73,0.00,3521185726741.131836,0.000000,21,0,0.008219,0.008991,67864172,45642616,0,0,56809,0,1,1 +1774132709.317552,0.90,4,3992.50,59.89,1345.53,2344.94,0.00,0.000000,0.000000,21,0,0.008111,0.009382,67864356,45642802,0,0,56812,0,1,1 +1774132714.312832,1.86,4,3992.50,54.96,1538.62,2151.85,0.00,0.175165,0.000000,199,0,24.522746,0.016659,67866769,45643421,0,0,56814,0,1,1 +1774132719.312826,1.70,4,3992.50,54.33,1563.30,2127.15,0.00,1.363380,0.028320,237,378,0.002975,0.006594,67866856,45643549,0,0,56817,0,1,1 +1774132724.312940,0.50,4,3992.50,54.12,1571.58,2118.89,0.00,83539.494346,127440.297476,6907527,2243219,0.000056,0.000045,67866860,45643553,0,0,56819,0,1,1 +1774132729.312816,1.20,4,3992.50,54.38,1555.96,2129.20,0.00,0.000000,0.071877,6907527,2243249,0.000230,0.000030,67866874,45643556,0,0,56822,0,1,1 +1774132734.312944,0.60,4,3992.50,54.38,1555.30,2129.14,0.00,3518347121097.229492,3518347077195.982422,238,2,0.000079,0.000020,67866879,45643558,0,0,56824,0,1,1 +1774132739.317056,0.55,4,3992.50,54.38,1555.32,2129.12,0.00,3515545814476.836914,3515545814478.842285,21,0,0.000014,0.000030,67866880,45643561,0,0,56827,0,1,1 +1774132744.315633,0.45,4,3992.50,54.38,1555.32,2129.12,0.00,0.048061,0.000000,70,0,0.000031,0.000020,67866882,45643563,0,0,56829,0,1,1 +1774132749.316983,0.50,4,3992.50,54.38,1555.32,2129.11,0.00,83516.229498,127408.963138,6906753,2242958,0.000000,0.000030,67866882,45643566,0,0,56832,0,1,1 +1774132754.312829,0.70,4,3992.50,54.20,1562.48,2121.96,0.00,3521362345694.528809,3521362301753.443359,70,0,0.002460,0.006798,67866962,45643698,0,0,56834,0,1,1 +1774132759.312817,0.90,4,3992.50,54.79,1539.34,2145.05,0.00,1.958794,0.000195,238,2,0.002364,0.006459,67867038,45643827,0,0,56837,0,1,1 +1774132764.317566,0.65,4,3992.50,54.93,1533.67,2150.62,0.00,3515098035177.038574,0.028098,237,378,0.002312,0.006381,67867110,45643951,0,0,56839,0,1,1 +1774132769.317181,0.60,4,3992.50,54.93,1533.73,2150.61,0.00,3518708079029.760742,3518708079031.095703,199,0,0.002289,0.006366,67867180,45644074,0,0,56842,0,1,1 +1774132774.313198,0.60,4,3992.50,54.93,1533.73,2150.61,0.00,3521242595535.361328,0.000000,21,0,0.001362,0.003825,67867221,45644148,0,0,56844,0,1,1 +1774132779.313330,0.60,4,3992.50,54.93,1533.73,2150.61,0.00,0.174995,0.000000,199,0,0.002264,0.007010,67867289,45644275,0,0,56847,0,1,1 +1774132784.317182,0.55,4,3992.50,54.93,1533.74,2150.60,0.00,3515729212831.722656,0.000000,70,0,0.000000,0.000020,67867289,45644277,0,0,56849,0,1,1 +1774132789.317446,0.80,4,3992.50,54.93,1535.91,2150.60,0.00,83538.462742,127436.829734,6907527,2243479,0.000000,0.000030,67867289,45644280,0,0,56852,0,1,1 +1774132794.317024,0.50,4,3992.50,54.93,1533.51,2150.83,0.00,3518734381480.037598,3518734381484.135254,6906753,2243119,0.000000,0.000020,67867289,45644282,0,0,56854,0,1,1 +1774132799.315485,0.45,4,3992.50,54.93,1533.52,2150.82,0.00,3519520570334.861328,3519520526415.091309,237,378,0.000000,0.000030,67867289,45644285,0,0,56857,0,1,1 +1774132804.314794,0.55,4,3992.50,54.90,1534.96,2149.38,0.00,3518923264380.310547,3518923264381.772949,70,0,0.000000,0.000020,67867289,45644287,0,0,56859,0,1,1 +1774132809.312927,0.50,4,3992.50,54.90,1534.71,2149.62,0.00,0.127001,0.000000,199,0,0.000000,0.000030,67867289,45644290,0,0,56862,0,1,1 +1774132814.316571,32.53,4,3992.50,60.64,1314.66,2374.38,0.00,3515875277761.826660,0.000000,21,0,71.655679,0.032287,67874895,45646216,0,0,56864,0,1,1 +1774132819.312824,28.85,4,3992.50,60.58,1317.52,2371.89,0.00,1.539532,0.028342,237,378,118.261648,0.045133,67887119,45649495,0,0,56867,0,1,1 +1774132824.314900,28.29,4,3992.50,61.23,1297.38,2397.11,0.00,3516977218789.943359,3516977218791.452637,21,0,120.121789,0.038280,67899497,45652254,0,0,56869,0,1,1 +1774132829.312945,27.73,4,3992.50,60.82,1313.15,2381.30,0.00,1.538981,0.028331,237,378,118.218592,0.048482,67911639,45655946,0,0,56872,0,1,1 +1774132834.316020,28.05,4,3992.50,60.82,1313.11,2381.20,0.00,83490.067199,127365.615989,6907537,2243780,120.105944,0.060805,67924104,45660612,0,0,56874,0,1,1 +1774132839.314863,28.15,4,3992.50,61.07,1303.57,2390.94,0.00,3519251145728.053711,3519251101815.366211,237,378,118.816247,0.080568,67936696,45666737,0,0,56877,0,1,1 +1774132844.315604,4.40,4,3992.50,61.96,1268.51,2425.98,0.00,3517915516785.767578,3517915516787.277344,21,0,12.229206,0.008532,67938035,45667408,0,0,56879,0,1,1 +1774132849.315087,1.06,4,3992.50,61.98,1262.54,2426.80,0.00,1.538538,0.028323,237,378,0.000861,0.000513,67938049,45667414,0,0,56882,0,1,1 +1774132854.312918,0.61,4,3992.50,61.94,1264.36,2424.94,0.00,83573.552156,127499.314673,6906763,2243453,0.001504,0.000181,67938065,45667417,0,0,56884,0,1,1 +1774132859.313469,0.61,4,3992.50,61.94,1264.36,2424.94,0.00,3518049000810.054199,3518048956909.650879,70,0,0.000454,0.000030,67938074,45667420,0,0,56887,0,1,1 +1774132864.314327,0.61,4,3992.50,61.94,1264.36,2424.94,0.00,1.958453,0.000195,238,2,0.000018,0.000020,67938075,45667422,0,0,56889,0,1,1 +1774132869.312809,0.61,4,3992.50,61.94,1264.36,2424.94,0.00,83566.313179,127482.827757,6907537,2243879,0.001006,0.000030,67938088,45667425,0,0,56892,0,1,1 +1774132874.317434,0.81,4,3992.50,61.93,1264.67,2424.59,0.00,3515186109684.981445,3515186065824.323730,70,0,0.004282,0.006442,67938172,45667545,0,0,56894,0,1,1 +1774132879.317335,1.52,4,3992.50,61.59,1277.83,2411.47,0.00,3518506765539.698730,0.000000,21,0,1.912959,0.010383,67938548,45667855,0,0,56897,0,1,1 +1774132884.316271,16.94,4,3992.50,61.02,1299.94,2389.12,0.00,0.000000,0.000000,21,0,64.804509,0.040020,67945181,45670540,0,0,56899,0,1,1 +1774132889.312887,18.99,4,3992.50,61.11,1296.71,2392.50,0.00,0.000000,0.000000,21,0,78.962163,0.044107,67953122,45673773,0,0,56902,0,1,1 +1774132894.317444,28.12,4,3992.50,60.80,1308.72,2380.47,0.00,1.536978,0.028295,237,378,121.115297,0.063885,67965856,45678520,0,0,56904,0,1,1 +1774132899.316084,8.33,4,3992.50,54.51,1555.24,2134.02,0.00,3519394482773.218262,3519394482774.728516,21,0,80.478623,0.034845,67974002,45681078,0,0,56907,0,1,1 +1774132904.317500,0.55,4,3992.50,54.55,1553.48,2135.78,0.00,83519.383216,127408.292971,6907546,2244005,0.000188,0.000020,67974014,45681080,0,0,56909,0,1,1 +1774132909.316839,1.05,4,3992.50,54.80,1558.98,2145.58,0.00,3518902545245.273438,3518902501336.622070,237,378,0.000047,0.000030,67974017,45681083,0,0,56912,0,1,1 +1774132914.313501,0.65,4,3992.50,54.80,1558.99,2145.57,0.00,3520787300605.305664,3520787300606.769043,70,0,0.000089,0.000503,67974023,45681088,0,0,56914,0,1,1 +1774132919.313497,0.50,4,3992.50,54.80,1559.00,2145.57,0.00,3518440169298.710449,0.000000,21,0,0.000028,0.000191,67974025,45681092,0,0,56917,0,1,1 +1774132924.317333,0.50,4,3992.50,54.79,1559.36,2145.19,0.00,2.005297,0.000195,238,2,0.000230,0.000020,67974040,45681094,0,0,56919,0,1,1 +1774132929.317751,4.21,4,3992.50,54.81,1558.61,2145.93,0.00,83530.010132,127433.972296,6906779,2243817,0.000579,0.000030,67974080,45681097,0,0,56922,0,1,1 +1774132934.313463,20.53,4,3992.50,56.23,1502.92,2201.63,0.00,3521457190417.110840,3521457146473.625977,199,0,30.290268,0.135529,67983662,45688093,0,0,56924,0,1,1 +1774132939.317006,6.32,4,3992.50,56.16,1505.77,2198.73,0.00,1.830539,0.000195,238,2,9.985678,0.049014,67987095,45690638,0,0,56927,0,1,1 +1774132944.317919,1.20,4,3992.50,55.51,1525.70,2173.44,0.00,3517795259791.904297,3517795259793.862305,70,0,0.004186,0.007300,67987202,45690781,0,0,56929,0,1,1 +1774132949.316996,0.65,4,3992.50,55.12,1541.13,2158.01,0.00,0.126977,0.000000,199,0,0.004396,0.008241,67987316,45690944,0,0,56932,0,1,1 +1774132954.317711,1.45,4,3992.50,54.82,1552.67,2146.46,0.00,3517933905115.087891,0.000000,21,0,0.004497,0.008231,67987430,45691106,0,0,56934,0,1,1 +1774132959.317548,0.70,4,3992.50,54.85,1551.60,2147.54,0.00,1.538429,0.028321,237,378,0.003420,0.005865,67987516,45691223,0,0,56937,0,1,1 +1774132964.312791,0.45,4,3992.50,54.88,1550.62,2148.52,0.00,83621.143854,127567.288810,6907558,2245708,0.000647,0.001288,67987542,45691249,0,0,56939,0,1,1 +1774132969.315794,0.75,4,3992.50,54.88,1550.78,2148.51,0.00,3516325467110.620117,3516325423234.094238,70,0,0.000047,0.000030,67987545,45691252,0,0,56942,0,1,1 +1774132974.313166,0.55,4,3992.50,54.98,1546.57,2152.52,0.00,1.491116,0.028335,237,378,0.000089,0.000020,67987551,45691254,0,0,56944,0,1,1 +1774132979.312910,0.45,4,3992.50,54.98,1546.62,2152.52,0.00,3518617635149.310059,3518617635150.820312,21,0,0.000028,0.000513,67987553,45691260,0,0,56947,0,1,1 +1774132984.316766,0.40,4,3992.50,54.98,1546.63,2152.51,0.00,83478.756085,127347.871499,6907558,2245773,0.000028,0.000181,67987555,45691263,0,0,56949,0,1,1 +1774132989.312914,0.45,4,3992.50,54.98,1546.63,2152.51,0.00,0.000000,0.025019,6907558,2245803,0.000311,0.000030,67987574,45691266,0,0,56952,0,1,1 +1774132994.312833,0.65,4,3992.50,54.98,1546.64,2152.50,0.00,3518494271318.634277,3518494227412.945312,238,2,0.003508,0.005933,67987666,45691389,0,0,56954,0,1,1 +1774132999.317547,0.70,4,3992.50,54.91,1554.74,2150.03,0.00,0.000000,0.000000,238,2,0.004112,0.007697,67987775,45691544,0,0,56957,0,1,1 +1774133004.317074,0.65,4,3992.50,54.92,1554.28,2150.25,0.00,3518769929690.839844,3518769929692.671875,199,0,0.003638,0.006432,67987869,45691674,0,0,56959,0,1,1 +1774133009.317301,0.55,4,3992.50,54.92,1554.30,2150.25,0.00,3518277184970.854980,0.000000,21,0,0.003878,0.007132,67987969,45691815,0,0,56962,0,1,1 +1774133014.312907,0.70,4,3992.50,54.73,1561.71,2142.82,0.00,0.000000,0.000000,21,0,0.004552,0.008051,67988072,45691957,0,0,56964,0,1,1 +1774133019.317031,0.60,4,3992.50,54.73,1561.74,2142.80,0.00,83474.283693,127341.277235,6907558,2246016,0.004940,0.007713,67988191,45692109,0,0,56967,0,1,1 +1774133024.317687,0.55,4,3992.50,54.73,1561.92,2142.63,0.00,3517975730863.389160,3517975686964.463379,237,378,0.000174,0.000020,67988202,45692111,0,0,56969,0,1,1 +1774133029.317200,0.75,4,3992.50,54.92,1555.45,2150.25,0.00,0.000000,0.000000,237,378,0.000061,0.000030,67988206,45692114,0,0,56972,0,1,1 +1774133034.316834,0.40,4,3992.50,54.92,1555.41,2150.18,0.00,0.000000,0.000000,237,378,0.000075,0.000020,67988211,45692116,0,0,56974,0,1,1 +1774133039.312816,0.50,4,3992.50,54.90,1555.97,2149.60,0.00,0.468834,3521267159746.513672,238,2,0.000128,0.000030,67988220,45692119,0,0,56977,0,1,1 +1774133044.316184,0.50,4,3992.50,54.90,1555.99,2149.59,0.00,3516068695699.799805,3516068695701.630371,199,0,0.000056,0.000663,67988224,45692125,0,0,56979,0,1,1 +1774133049.315846,0.45,4,3992.50,54.90,1556.00,2149.59,0.00,83544.503751,127455.096015,6906784,2245801,0.000344,0.000030,67988246,45692128,0,0,56982,0,1,1 +1774133054.317583,0.55,4,3992.50,54.90,1556.02,2149.57,0.00,0.000000,0.031630,6906784,2245840,0.003897,0.006106,67988339,45692253,0,0,56984,0,1,1 +1774133059.313634,0.95,4,3992.50,54.88,1548.19,2148.58,0.00,3521218694445.763672,3521218650503.577148,21,0,0.003891,0.007140,67988440,45692394,0,0,56987,0,1,1 +1774133064.316604,0.70,4,3992.50,54.71,1554.65,2142.08,0.00,0.048018,0.000000,70,0,0.003888,0.007180,67988541,45692538,0,0,56989,0,1,1 +1774133069.316561,0.75,4,3992.50,54.70,1555.11,2141.63,0.00,1.958806,0.000195,238,2,0.003865,0.007132,67988640,45692679,0,0,56992,0,1,1 +1774133074.318414,4.27,4,3992.50,54.59,1559.30,2137.39,0.00,3517133388541.540527,3517133388543.546875,21,0,0.018346,13.825606,67989757,45694547,0,0,56994,0,1,1 +1774133079.318880,30.72,4,3992.50,54.76,1546.23,2143.99,0.00,0.174984,0.000000,199,0,0.068681,126.172257,67994872,45707704,0,0,56997,0,1,1 +1774133084.316390,3.46,4,3992.50,54.74,1545.91,2143.38,0.00,1.364058,0.028334,237,378,0.005204,10.018624,67995230,45708727,0,0,56999,0,1,1 +1774133089.317436,0.65,4,3992.50,54.53,1554.46,2134.82,0.00,3517701919127.394531,3517701919128.904785,21,0,0.000217,0.000030,67995237,45708730,0,0,57002,0,1,1 +1774133094.312933,0.85,4,3992.50,55.05,1533.75,2155.42,0.00,2.008645,0.000195,238,2,0.000166,0.000020,67995241,45708732,0,0,57004,0,1,1 +1774133099.317210,0.50,4,3992.50,54.77,1544.97,2144.20,0.00,3515429951907.521973,0.028101,237,378,0.000075,0.000030,67995246,45708735,0,0,57007,0,1,1 +1774133104.315475,0.85,4,3992.50,54.60,1551.44,2137.73,0.00,3519659251468.135742,3519659251469.645996,21,0,0.000000,0.000020,67995246,45708737,0,0,57009,0,1,1 +1774133109.317632,0.65,4,3992.50,54.65,1549.53,2139.64,0.00,83502.991764,127541.878211,6906784,2247219,0.000213,0.000030,67995253,45708740,0,0,57012,0,1,1 +1774133114.312977,1.30,4,3992.50,54.53,1554.24,2134.92,0.00,3521715560089.083008,3521715515990.094727,70,0,0.005275,0.010038,67995374,45708912,0,0,57014,0,1,1 +1774133119.312828,1.15,4,3992.50,54.77,1547.52,2144.48,0.00,1.490376,0.028321,237,378,0.001917,0.005206,67995437,45709018,0,0,57017,0,1,1 +1774133124.317153,1.10,4,3992.50,54.77,1547.41,2144.31,0.00,0.000000,0.000000,237,378,0.002524,0.006559,67995523,45709156,0,0,57019,0,1,1 +1774133129.312835,0.90,4,3992.50,54.77,1547.41,2144.30,0.00,0.000000,0.000000,237,378,0.005356,0.009649,67995626,45709320,0,0,57022,0,1,1 +1774133134.317576,14.12,4,3992.50,55.77,1508.80,2183.34,0.00,0.000000,0.000000,237,378,0.056531,54.048316,67999786,45715468,0,0,57024,0,1,1 +1774133139.312907,13.46,4,3992.50,56.00,1503.22,2192.58,0.00,83631.518814,127740.437173,6906934,2247582,40.103539,1.029812,68004260,45716999,0,0,57027,0,1,1 +1774133144.316648,1.00,4,3992.50,54.67,1555.27,2140.53,0.00,3515806064829.553223,3515806020794.779785,237,378,0.000685,0.000136,68004272,45717008,0,0,57029,0,1,1 +1774133149.317216,1.10,4,3992.50,54.55,1565.11,2135.87,0.00,0.468404,3518037996003.537598,238,2,0.000000,0.000030,68004272,45717011,0,0,57032,0,1,1 +1774133154.317084,0.85,4,3992.50,54.52,1565.51,2134.68,0.00,0.000000,0.000000,238,2,0.000000,0.000020,68004272,45717013,0,0,57034,0,1,1 +1774133159.317090,0.75,4,3992.50,54.52,1565.72,2134.47,0.00,0.000000,0.000000,238,2,0.000000,0.000030,68004272,45717016,0,0,57037,0,1,1 +1774133164.317295,0.65,4,3992.50,54.52,1565.73,2134.46,0.00,83553.644817,127647.275356,6907708,2248307,0.000000,0.000020,68004272,45717018,0,0,57039,0,1,1 +1774133169.315480,1.10,4,3992.50,54.76,1556.23,2143.96,0.00,0.000000,0.010160,6907708,2248315,0.000000,0.000030,68004272,45717021,0,0,57042,0,1,1 +1774133174.312855,0.75,4,3992.50,54.79,1555.00,2145.19,0.00,3520285023613.227539,3520284979496.584473,70,0,0.002088,0.003852,68004311,45717086,0,0,57044,0,1,1 +1774133179.317125,1.45,4,3992.50,54.60,1565.31,2137.77,0.00,83483.611725,127543.601010,6906934,2247963,0.001817,0.005738,68004366,45717189,0,0,57047,0,1,1 +1774133184.313506,10.76,4,3992.50,54.77,1555.91,2144.39,0.00,3520985861363.707520,3520985817234.193848,21,0,0.024843,38.692916,68005959,45721466,0,0,57049,0,1,1 +1774133189.313090,1.91,4,3992.50,54.12,1581.24,2119.02,0.00,83561.915815,127690.472964,6906934,2248263,0.004668,1.412758,68006114,45721834,0,0,57052,0,1,1 +1774133194.317121,0.85,4,3992.50,54.13,1581.03,2119.24,0.00,3515602926404.721680,3515602882315.382812,21,0,0.002287,0.006351,68006184,45721956,0,0,57054,0,1,1 +1774133199.312947,0.90,4,3992.50,54.29,1574.73,2125.53,0.00,0.000000,0.000000,21,0,0.002291,0.006371,68006254,45722079,0,0,57057,0,1,1 +1774133204.317703,0.70,4,3992.50,54.29,1574.73,2125.53,0.00,83479.651581,127565.382787,6907708,2248742,0.000000,0.000020,68006254,45722081,0,0,57059,0,1,1 +1774133209.317384,1.20,4,3992.50,54.37,1571.14,2128.69,0.00,3518661772173.955078,3518661728043.292480,199,0,0.000000,0.000030,68006254,45722084,0,0,57062,0,1,1 +1774133214.316801,0.65,4,3992.50,54.31,1573.49,2126.27,0.00,83564.534495,127701.763134,6906934,2248450,0.000000,0.000020,68006254,45722086,0,0,57064,0,1,1 +1774133219.312830,1.55,4,3992.50,54.16,1579.47,2120.30,0.00,3521232939916.539062,3521232895748.057129,237,378,0.000000,0.000030,68006254,45722089,0,0,57067,0,1,1 +1774133224.316958,0.65,4,3992.50,54.14,1579.99,2119.78,0.00,3515534800225.162598,3515534800226.671387,21,0,0.000000,0.000020,68006254,45722091,0,0,57069,0,1,1 +1774133229.317149,0.70,4,3992.50,54.26,1575.26,2124.51,0.00,83555.876144,127688.030953,6907708,2248873,0.000000,0.000030,68006254,45722094,0,0,57072,0,1,1 +1774133234.316982,0.80,4,3992.50,54.23,1576.62,2123.15,0.00,0.000000,0.006739,6907708,2248885,0.001822,0.004596,68006318,45722190,0,0,57074,0,1,1 +1774133239.316916,1.25,4,3992.50,54.23,1580.84,2123.27,0.00,3518483598864.907227,3518483554728.470703,238,2,0.002518,0.006966,68006395,45722323,0,0,57077,0,1,1 +1774133244.312821,0.75,4,3992.50,54.24,1578.70,2123.63,0.00,83621.444736,127797.608774,6906934,2248525,0.001864,0.005771,68006453,45722428,0,0,57079,0,1,1 +1774133249.318111,23.93,4,3992.50,60.45,1339.86,2366.77,0.00,3514718112119.032227,3514718068025.708984,238,2,43.422077,0.029021,68011201,45724130,0,0,57082,0,1,1 +1774133254.317456,31.69,4,3992.50,60.58,1336.92,2371.96,0.00,3518898638540.941406,3518898638542.773438,199,0,119.384194,0.027086,68023523,45725897,0,0,57084,0,1,1 +1774133259.317481,28.19,4,3992.50,60.61,1335.89,2373.07,0.00,0.000000,0.000000,199,0,118.964445,0.019218,68035746,45727184,0,0,57087,0,1,1 +1774133264.316385,4.55,4,3992.50,61.81,1288.99,2419.95,0.00,83573.097893,127721.098096,6906934,2248690,12.070651,0.001493,68037034,45727303,0,0,57089,0,1,1 +1774133269.313154,1.16,4,3992.50,61.80,1291.30,2419.70,0.00,0.000000,0.070358,6906934,2248718,0.000279,0.000030,68037044,45727306,0,0,57092,0,1,1 +1774133274.312729,0.71,4,3992.50,61.78,1292.31,2418.65,0.00,3518736503654.463867,3518736459510.480469,238,2,0.000278,0.000020,68037054,45727308,0,0,57094,0,1,1 +1774133279.313648,0.76,4,3992.50,61.78,1292.31,2418.64,0.00,3517790534150.858398,3517790534152.865234,21,0,0.000000,0.000030,68037054,45727311,0,0,57097,0,1,1 +1774133284.317145,0.86,4,3992.50,61.81,1291.09,2419.87,0.00,0.000000,0.000000,21,0,0.000000,0.000020,68037054,45727313,0,0,57099,0,1,1 +1774133289.312804,0.81,4,3992.50,61.81,1291.09,2419.87,0.00,83627.562345,127804.161445,6906934,2248738,0.000279,0.000030,68037064,45727316,0,0,57102,0,1,1 +1774133294.312930,1.01,4,3992.50,61.67,1296.52,2414.43,0.00,3518347964057.806641,3518347919920.679688,21,0,0.002544,0.007160,68037143,45727454,0,0,57104,0,1,1 +1774133299.317187,1.11,4,3992.50,61.79,1292.05,2419.34,0.00,83483.886546,127584.636817,6906934,2248771,0.002133,0.005770,68037213,45727574,0,0,57107,0,1,1 +1774133304.312861,17.25,4,3992.50,60.72,1333.89,2377.34,0.00,3521484000618.555664,3521483956441.864258,199,0,75.180485,0.048731,68045558,45730943,0,0,57109,0,1,1 +1774133309.317322,23.24,4,3992.50,60.84,1329.32,2381.95,0.00,3515300858160.482422,0.000000,70,0,96.045158,0.045911,68055249,45734165,0,0,57112,0,1,1 +1774133314.313302,24.85,4,3992.50,60.72,1333.75,2377.43,0.00,1.960365,0.000195,238,2,104.627152,0.048157,68065836,45737792,0,0,57114,0,1,1 +1774133319.312802,38.38,4,3992.50,60.75,1332.59,2378.62,0.00,0.000000,0.000000,238,2,165.453880,0.078496,68083425,45743658,0,0,57117,0,1,1 +1774133324.313377,5.45,4,3992.50,61.62,1298.66,2412.60,0.00,3518032625982.495117,3518032625984.327148,199,0,15.256901,0.005181,68084982,45744070,0,0,57119,0,1,1 +1774133329.316373,1.26,4,3992.50,61.69,1289.32,2415.48,0.00,1.362563,0.028303,237,378,0.000278,0.000030,68084992,45744073,0,0,57122,0,1,1 +1774133334.317148,0.91,4,3992.50,61.74,1287.17,2417.39,0.00,3517892088987.963867,3517892088989.473633,21,0,0.000278,0.000020,68085002,45744075,0,0,57124,0,1,1 +1774133339.313588,0.71,4,3992.50,61.75,1286.95,2417.61,0.00,0.048081,0.000000,70,0,0.000000,0.000030,68085002,45744078,0,0,57127,0,1,1 +1774133344.312841,0.86,4,3992.50,61.76,1286.48,2418.07,0.00,83567.407460,127712.620250,6906936,2248979,0.000000,0.000020,68085002,45744080,0,0,57129,0,1,1 +1774133349.317379,0.76,4,3992.50,61.76,1286.48,2418.07,0.00,0.000000,0.003122,6906936,2248983,0.000377,0.000030,68085018,45744083,0,0,57132,0,1,1 +1774133354.317371,1.01,4,3992.50,61.76,1286.49,2418.07,0.00,3518442253105.963867,3518442208967.324707,21,0,0.002761,0.004868,68085095,45744184,0,0,57134,0,1,1 +1774133359.312827,0.86,4,3992.50,61.81,1284.57,2419.98,0.00,1.539778,0.028346,237,378,0.001864,0.005124,68085153,45744285,0,0,57137,0,1,1 +1774133364.312981,1.16,4,3992.50,61.87,1279.83,2422.45,0.00,83550.869268,127689.687023,6906936,2249066,0.001398,0.003853,68085197,45744361,0,0,57139,0,1,1 +1774133369.317236,0.91,4,3992.50,61.87,1279.83,2422.45,0.00,0.000000,0.007025,6906936,2249074,0.002287,0.006361,68085267,45744484,0,0,57142,0,1,1 +1774133374.317019,0.96,4,3992.50,61.65,1288.45,2413.84,0.00,3518590284637.462891,3518590240496.695801,199,0,0.002567,0.007000,68085347,45744610,0,0,57144,0,1,1 +1774133379.313465,1.77,4,3992.50,61.66,1288.20,2414.08,0.00,1.833139,0.000195,238,2,0.002214,0.005110,68085409,45744710,0,0,57147,0,1,1 +1774133384.317388,0.90,4,3992.50,53.71,1599.40,2102.89,0.00,3515678647099.732422,3515678647101.737793,21,0,0.000961,0.001286,68085426,45744736,0,0,57149,0,1,1 +1774133389.317704,1.35,4,3992.50,54.31,1576.11,2126.39,0.00,0.000000,0.000000,21,0,0.000168,0.000030,68085427,45744739,0,0,57152,0,1,1 +1774133394.312836,0.80,4,3992.50,54.34,1574.61,2127.55,0.00,83640.628116,127818.220820,6907716,2249514,0.000168,0.000020,68085428,45744741,0,0,57154,0,1,1 +1774133399.317081,0.80,4,3992.50,54.34,1574.61,2127.55,0.00,3515452117667.111328,3515452073569.979004,21,0,0.000000,0.000030,68085428,45744744,0,0,57157,0,1,1 +1774133404.317032,0.80,4,3992.50,54.30,1576.05,2126.15,0.00,83560.020803,127695.055634,6907726,2249546,0.000000,0.000020,68085428,45744746,0,0,57159,0,1,1 +1774133409.317515,0.55,4,3992.50,54.34,1574.83,2127.37,0.00,0.000000,0.029685,6907726,2249581,0.000168,0.000030,68085429,45744749,0,0,57162,0,1,1 +1774133414.317603,0.80,4,3992.50,54.34,1574.83,2127.37,0.00,3518375063299.083984,3518375019165.057129,199,0,0.002309,0.006450,68085501,45744871,0,0,57164,0,1,1 +1774133419.317307,1.00,4,3992.50,54.21,1564.74,2122.43,0.00,1.363460,0.028322,237,378,0.002289,0.006366,68085571,45744994,0,0,57167,0,1,1 +1774133424.313560,0.85,4,3992.50,53.95,1574.19,2112.40,0.00,3521075820003.783203,3521075820005.294434,21,0,0.005135,0.008032,68085664,45745123,0,0,57169,0,1,1 +1774133429.312832,0.95,4,3992.50,53.95,1574.24,2112.39,0.00,83571.369973,127712.516944,6907726,2249664,0.006634,0.008846,68085809,45745301,0,0,57172,0,1,1 +1774133434.313440,0.90,4,3992.50,53.97,1573.76,2112.88,0.00,0.000000,0.038472,6907726,2249708,0.006632,0.008793,68085954,45745474,0,0,57174,0,1,1 +1774133439.317784,0.75,4,3992.50,53.97,1573.77,2112.87,0.00,3515382918348.920410,3515382918353.003906,6906952,2249348,0.004113,0.008045,68086062,45745629,0,0,57177,0,1,1 +1774133444.317290,0.65,4,3992.50,53.97,1573.78,2112.87,0.00,3518784697510.686523,3518784653365.972168,237,378,0.000000,0.000020,68086062,45745631,0,0,57179,0,1,1 +1774133449.317418,0.50,4,3992.50,53.97,1573.78,2112.86,0.00,3518347061793.244141,3518347061794.754395,21,0,0.000000,0.000030,68086062,45745634,0,0,57182,0,1,1 +1774133454.317010,0.90,4,3992.50,53.99,1578.98,2113.80,0.00,0.000000,0.000000,21,0,0.000000,0.000020,68086062,45745636,0,0,57184,0,1,1 +1774133459.317322,0.50,4,3992.50,54.02,1577.81,2115.03,0.00,83549.886259,127686.121341,6906952,2249457,0.000000,0.000030,68086062,45745639,0,0,57187,0,1,1 +1774133464.313281,0.55,4,3992.50,54.02,1577.82,2115.02,0.00,4.112601,0.033230,6907726,2249842,0.000000,0.000020,68086062,45745641,0,0,57189,0,1,1 +1774133469.317048,0.50,4,3992.50,54.02,1577.82,2115.02,0.00,3515787788669.588867,3515787744567.865723,70,0,0.000000,0.000030,68086062,45745644,0,0,57192,0,1,1 +1774133474.312906,1.20,4,3992.50,53.90,1582.54,2110.30,0.00,83628.445105,127800.009709,6907726,2249862,0.003933,0.006998,68086130,45745755,0,0,57194,0,1,1 +1774133479.312837,18.44,4,3992.50,61.26,1294.45,2398.42,0.00,3518485335610.244629,3518485291474.548828,199,0,0.034528,0.066607,68086348,45745948,0,0,57197,0,1,1 +1774133484.312834,1.01,4,3992.50,61.27,1293.94,2398.89,0.00,3518439618310.475586,0.000000,21,0,0.002581,0.005120,68086418,45746048,0,0,57199,0,1,1 +1774133489.314053,0.76,4,3992.50,61.55,1283.11,2409.67,0.00,83534.711395,127663.191197,6906954,2249621,0.002690,0.006364,68086499,45746171,0,0,57202,0,1,1 +1774133494.313360,0.76,4,3992.50,61.55,1283.16,2409.67,0.00,3518924747656.934082,3518924703511.522949,70,0,0.002465,0.006365,68086571,45746294,0,0,57204,0,1,1 +1774133499.313261,0.76,4,3992.50,61.55,1283.16,2409.66,0.00,3518507023803.219727,0.000000,21,0,0.002289,0.006366,68086641,45746417,0,0,57207,0,1,1 +1774133504.313004,0.76,4,3992.50,61.51,1284.74,2408.08,0.00,0.048049,0.000000,70,0,0.002233,0.005733,68086708,45746519,0,0,57209,0,1,1 +1774133509.314604,1.11,4,3992.50,61.72,1288.70,2416.39,0.00,1.489855,0.028311,237,378,0.003198,0.008264,68086803,45746677,0,0,57212,0,1,1 +1774133514.312902,0.66,4,3992.50,61.72,1288.45,2416.62,0.00,3519635174435.297852,3519635174436.808594,21,0,0.002290,0.006358,68086873,45746799,0,0,57214,0,1,1 +1774133519.312830,0.86,4,3992.50,61.72,1288.46,2416.62,0.00,1.538401,0.028321,237,378,0.003037,0.008294,68086967,45746960,0,0,57217,0,1,1 +1774133524.312827,0.91,4,3992.50,61.52,1296.30,2408.79,0.00,83557.713829,127694.529280,6907728,2250114,0.005879,0.008061,68087085,45747108,0,0,57219,0,1,1 +1774133529.316937,12.42,4,3992.50,60.77,1325.80,2379.21,0.00,0.000000,0.003025,6907728,2250125,45.492118,0.024825,68092102,45748579,0,0,57222,0,1,1 +1774133534.315054,29.09,4,3992.50,61.08,1313.41,2391.59,0.00,3519762570058.532715,3519762525906.576660,70,0,120.953499,0.037883,68103381,45751060,0,0,57224,0,1,1 +1774133539.315599,14.49,4,3992.50,54.11,1586.63,2118.45,0.00,0.126939,0.000000,199,0,112.502578,0.031750,68113864,45753374,0,0,57227,0,1,1 +1774133544.312857,1.30,4,3992.50,54.13,1570.59,2119.12,0.00,3520367994841.991211,0.000000,21,0,0.004600,0.005474,68113973,45753495,0,0,57229,0,1,1 +1774133549.316392,10.84,4,3992.50,54.44,1558.35,2131.37,0.00,83500.183395,127604.567838,6907732,2250502,10.086180,0.056238,68117413,45756056,0,0,57232,0,1,1 +1774133554.313433,20.02,4,3992.50,54.86,1541.75,2147.86,0.00,3520520861773.379395,3520520817611.496094,199,0,30.183782,0.133604,68127225,45763282,0,0,57234,0,1,1 +1774133559.312832,1.05,4,3992.50,54.54,1554.18,2135.40,0.00,1.363543,0.028324,237,378,0.003201,0.004728,68127298,45763375,0,0,57237,0,1,1 +1774133564.317410,0.75,4,3992.50,54.28,1564.27,2125.35,0.00,3515218349451.685059,3515218349453.193848,21,0,0.003293,0.006929,68127388,45763512,0,0,57239,0,1,1 +1774133569.317371,21.02,4,3992.50,54.69,1545.02,2141.34,0.00,83555.774498,127748.117166,6906958,2251495,0.047686,87.535056,68130789,45773021,0,0,57242,0,1,1 +1774133574.312869,29.41,4,3992.50,55.57,1506.57,2175.51,0.00,3521607834523.451660,3521607790291.584961,70,0,0.030576,117.671190,68133123,45785225,0,0,57244,0,1,1 +1774133579.317471,3.76,4,3992.50,58.75,1385.77,2300.39,0.00,1.956988,0.000195,238,2,0.209738,0.013057,68133389,45785518,0,0,57247,0,1,1 +1774133584.317799,13.15,4,3992.50,55.44,1515.50,2170.57,0.00,83567.669306,127892.899544,6907879,2253174,39.857682,0.019234,68137695,45786838,0,0,57249,0,1,1 +1774133589.317696,1.05,4,3992.50,54.69,1544.74,2141.31,0.00,3518509998406.533691,0.014551,6907105,2252862,0.006299,0.010262,68137849,45787031,0,0,57252,0,1,1 +1774133594.317655,0.85,4,3992.50,54.98,1533.29,2152.76,0.00,3518465509477.280273,3518465465146.490723,199,0,0.003420,0.005855,68137935,45787147,0,0,57254,0,1,1 +1774133599.312906,0.90,4,3992.50,54.54,1548.25,2135.30,0.00,0.000000,0.000000,199,0,0.004079,0.007672,68138041,45787299,0,0,57257,0,1,1 +1774133604.317738,0.70,4,3992.50,54.52,1548.91,2134.64,0.00,0.000000,0.000000,199,0,0.004071,0.007647,68138147,45787450,0,0,57259,0,1,1 +1774133609.316995,0.65,4,3992.50,54.32,1556.79,2126.77,0.00,83583.298109,127920.533701,6907105,2253001,0.003879,0.007121,68138247,45787590,0,0,57262,0,1,1 +1774133614.312843,0.60,4,3992.50,54.12,1564.45,2119.11,0.00,3521361676754.119629,3521361632384.791992,238,2,0.003889,0.007155,68138348,45787732,0,0,57264,0,1,1 +1774133619.317744,0.80,4,3992.50,54.14,1563.98,2119.59,0.00,3514991773873.584473,3514991773875.541016,70,0,0.005182,0.007400,68138458,45787865,0,0,57267,0,1,1 +1774133624.316263,0.80,4,3992.50,54.10,1565.32,2118.24,0.00,0.000000,0.000000,70,0,0.003941,0.007175,68138562,45788009,0,0,57269,0,1,1 +1774133629.312900,1.05,4,3992.50,54.25,1559.74,2123.82,0.00,3520805341284.559082,0.000000,21,0,0.003423,0.005869,68138648,45788126,0,0,57272,0,1,1 +1774133634.316455,0.70,4,3992.50,54.27,1558.78,2124.79,0.00,0.000000,0.000000,21,0,0.003937,0.007801,68138752,45788273,0,0,57274,0,1,1 +1774133639.317554,0.70,4,3992.50,54.27,1558.84,2124.73,0.00,2.006395,0.000195,238,2,0.003877,0.007131,68138852,45788414,0,0,57277,0,1,1 +1774133644.315559,0.55,4,3992.50,54.29,1557.88,2125.69,0.00,3519841050319.781738,0.028136,237,378,0.003409,0.005858,68138937,45788530,0,0,57279,0,1,1 +1774133649.314005,0.55,4,3992.50,54.28,1558.48,2125.09,0.00,3519531179126.819824,3519531179128.330078,21,0,0.003910,0.007160,68139039,45788673,0,0,57282,0,1,1 +1774133654.317098,0.65,4,3992.50,54.28,1558.49,2125.07,0.00,0.174892,0.000000,199,0,0.004153,0.007144,68139147,45788818,0,0,57284,0,1,1 +1774133659.317528,11.41,4,3992.50,54.17,1570.68,2120.94,0.00,1.363262,0.028318,237,378,0.025351,40.068964,68140749,45793456,0,0,57287,0,1,1 +1774133664.315783,0.65,4,3992.50,54.15,1571.55,2120.11,0.00,0.000000,0.000000,237,378,0.001844,0.005122,68140806,45793556,0,0,57289,0,1,1 +1774133669.316418,0.60,4,3992.50,54.15,1571.56,2120.10,0.00,3517990035761.067871,3517990035762.529785,70,0,0.002289,0.006365,68140876,45793679,0,0,57292,0,1,1 +1774133674.317043,0.65,4,3992.50,54.16,1571.07,2120.59,0.00,0.000000,0.000000,70,0,0.002289,0.006355,68140946,45793801,0,0,57294,0,1,1 +1774133679.317159,0.65,4,3992.50,54.16,1571.07,2120.58,0.00,83569.073018,127931.293368,6907105,2253807,0.002301,0.006366,68141017,45793924,0,0,57297,0,1,1 +1774133684.316390,0.55,4,3992.50,54.16,1571.08,2120.58,0.00,3518977914096.282715,3518977869726.218750,70,0,0.002277,0.006332,68141086,45794044,0,0,57299,0,1,1 +1774133689.316656,1.05,4,3992.50,54.18,1566.39,2121.32,0.00,1.490253,0.028319,237,378,0.001831,0.005124,68141142,45794145,0,0,57302,0,1,1 +1774133694.316904,0.80,4,3992.50,54.18,1565.39,2121.24,0.00,3518262697422.824219,3518262697424.159668,199,0,0.002334,0.006426,68141216,45794272,0,0,57304,0,1,1 +1774133699.317250,0.55,4,3992.50,54.19,1565.16,2121.47,0.00,83565.098001,127933.492631,6907105,2253903,0.002377,0.007103,68141293,45794405,0,0,57307,0,1,1 +1774133704.316858,0.70,4,3992.50,54.18,1565.50,2121.14,0.00,3518712765084.133301,3518712720709.321289,70,0,0.002037,0.005277,68141363,45794517,0,0,57309,0,1,1 +1774133709.313437,0.50,4,3992.50,54.20,1564.77,2121.86,0.00,1.960130,0.000195,238,2,0.001832,0.005102,68141419,45794616,0,0,57312,0,1,1 +1774133714.313880,0.70,4,3992.50,54.20,1564.77,2121.86,0.00,0.000000,0.000000,238,2,0.002276,0.006355,68141488,45794738,0,0,57314,0,1,1 +1774133719.315609,1.45,4,3992.50,54.03,1568.56,2115.43,0.00,3517221382124.818359,3517221382126.824707,21,0,0.004633,0.008675,68141595,45794893,0,0,57317,0,1,1 +1774133724.312825,44.76,4,3992.50,60.04,1339.88,2350.66,0.00,0.000000,0.000000,21,0,102.607044,0.054356,68152471,45798625,0,0,57319,0,1,1 +1774133729.316694,27.82,4,3992.50,60.40,1325.62,2364.84,0.00,0.000000,0.000000,21,0,120.074989,0.050647,68164798,45802316,0,0,57322,0,1,1 +1774133734.312986,27.86,4,3992.50,60.24,1331.84,2358.68,0.00,0.048083,0.000000,70,0,118.248865,0.039141,68176809,45805318,0,0,57324,0,1,1 +1774133739.313940,28.43,4,3992.50,60.12,1336.50,2354.00,0.00,83559.169902,127918.190124,6907879,2254513,119.940563,0.044525,68188914,45808637,0,0,57327,0,1,1 +1774133744.313855,28.09,4,3992.50,60.31,1329.25,2361.30,0.00,3518496723716.690918,3518496679348.455078,70,0,118.364807,0.046218,68200977,45812098,0,0,57329,0,1,1 +1774133749.313517,27.06,4,3992.50,60.30,1329.75,2360.80,0.00,3518675430247.130371,0.000000,21,0,119.973511,0.053519,68213148,45816004,0,0,57332,0,1,1 +1774133754.317035,28.13,4,3992.50,60.32,1328.78,2361.75,0.00,0.048013,0.000000,70,0,118.480985,0.020125,68225390,45817434,0,0,57334,0,1,1 +1774133759.312798,30.41,4,3992.50,60.35,1322.90,2362.85,0.00,83646.426252,128051.434764,6907934,2254623,120.068531,0.032522,68237775,45819832,0,0,57337,0,1,1 +1774133764.316850,10.34,4,3992.50,54.07,1567.95,2117.01,0.00,3515587528571.285156,3515587484239.719727,199,0,87.651363,0.026612,68246746,45821658,0,0,57339,0,1,1 +1774133769.317540,2.26,4,3992.50,54.05,1568.86,2116.08,0.00,0.000000,0.000000,199,0,0.011456,0.009413,68246965,45821856,0,0,57342,0,1,1 +1774133774.316404,19.74,4,3992.50,54.72,1542.55,2142.38,0.00,1.832253,0.000195,238,2,30.202466,0.139126,68256934,45829202,0,0,57344,0,1,1 +1774133779.312833,7.34,4,3992.50,55.23,1531.79,2162.30,0.00,3520951833245.836426,3520951833247.844727,21,0,10.067237,0.044733,68260116,45831589,0,0,57347,0,1,1 +1774133784.315326,1.30,4,3992.50,54.76,1548.85,2144.11,0.00,1.537612,0.028306,237,378,0.005513,0.009184,68260235,45831756,0,0,57349,0,1,1 +1774133789.316893,3.56,4,3992.50,54.63,1554.11,2138.76,0.00,0.468310,3517335236898.523438,238,2,0.016888,10.622432,68261253,45833236,0,0,57352,0,1,1 +1774133794.315388,28.74,4,3992.50,54.53,1553.26,2135.03,0.00,3519496582279.754883,3519496582281.762207,21,0,0.054274,118.206581,68265283,45845535,0,0,57354,0,1,1 +1774133799.312907,19.53,4,3992.50,54.25,1559.47,2123.95,0.00,2.007832,0.000195,238,2,0.044679,76.350384,68268576,45853498,0,0,57357,0,1,1 +1774133804.317358,15.52,4,3992.50,59.46,1355.73,2328.05,0.00,83512.013721,128035.482900,6907386,2257254,26.822676,0.023168,68271660,45854768,0,0,57359,0,1,1 +1774133809.317046,1.66,4,3992.50,54.49,1549.43,2133.31,0.00,3518656548717.386719,3518656504153.333496,199,0,13.226511,0.012415,68273188,45855140,0,0,57362,0,1,1 +1774133814.314432,0.75,4,3992.50,54.21,1560.18,2122.56,0.00,83636.034956,128216.921100,6908160,2257908,0.003523,0.005983,68273282,45855264,0,0,57364,0,1,1 +1774133819.312896,0.65,4,3992.50,54.21,1560.20,2122.55,0.00,3519517833364.137207,3519517788792.876953,199,0,0.003887,0.007143,68273383,45855406,0,0,57367,0,1,1 +1774133824.317652,0.60,4,3992.50,54.11,1564.20,2118.55,0.00,3515094091472.996094,0.000000,21,0,0.003874,0.007116,68273483,45855546,0,0,57369,0,1,1 +1774133829.317231,0.90,4,3992.50,54.25,1558.79,2123.94,0.00,0.000000,0.000000,21,0,0.003421,0.005866,68273569,45855663,0,0,57372,0,1,1 +1774133834.317388,2.41,4,3992.50,54.20,1560.70,2122.04,0.00,0.048045,0.000000,70,0,0.003433,0.005873,68273656,45855780,0,0,57374,0,1,1 +1774133839.316855,1.46,4,3992.50,54.39,1558.12,2129.40,0.00,1.490491,0.028323,237,378,0.003866,0.007777,68273755,45855925,0,0,57377,0,1,1 +1774133844.315569,0.65,4,3992.50,54.29,1562.06,2125.42,0.00,83612.447546,128182.962496,6908160,2258012,0.003941,0.007175,68273859,45856069,0,0,57379,0,1,1 +1774133849.316899,0.65,4,3992.50,54.32,1560.84,2126.63,0.00,3517501178599.957520,0.022748,6907386,2257694,0.003908,0.007118,68273961,45856209,0,0,57382,0,1,1 +1774133854.317054,0.65,4,3992.50,54.12,1568.75,2118.73,0.00,3518328627078.638672,3518328582516.335449,238,2,0.004098,0.007038,68274065,45856353,0,0,57384,0,1,1 +1774133859.317478,0.65,4,3992.50,54.16,1567.07,2120.42,0.00,83579.258980,128139.182562,6907386,2257728,0.003865,0.007132,68274164,45856494,0,0,57387,0,1,1 +1774133864.316093,0.70,4,3992.50,54.16,1566.83,2120.65,0.00,3519412386847.361328,3519412342271.796387,237,378,0.003879,0.007112,68274264,45856633,0,0,57389,0,1,1 +1774133869.316761,1.00,4,3992.50,54.31,1558.72,2126.45,0.00,0.468394,3517966605565.192383,238,2,0.003878,0.007119,68274364,45856773,0,0,57392,0,1,1 +1774133874.313630,0.55,4,3992.50,54.22,1562.07,2123.02,0.00,3520642125785.399414,3520642125787.407715,21,0,0.003435,0.005859,68274451,45856889,0,0,57394,0,1,1 +1774133879.317443,11.30,4,3992.50,54.23,1561.78,2123.32,0.00,0.174867,0.000000,199,0,0.025489,40.038701,68276088,45861388,0,0,57397,0,1,1 +1774133884.316988,0.75,4,3992.50,54.21,1562.81,2122.29,0.00,83599.911450,128193.934996,6908161,2258439,0.002276,0.006357,68276157,45861510,0,0,57399,0,1,1 +1774133889.317032,0.55,4,3992.50,54.21,1562.70,2122.41,0.00,3518406270980.309570,3518406226389.401367,237,378,0.002297,0.006374,68276228,45861634,0,0,57402,0,1,1 +1774133894.317175,0.60,4,3992.50,54.55,1549.30,2135.80,0.00,83588.540034,128178.597571,6908161,2258471,0.001818,0.005089,68276283,45861732,0,0,57404,0,1,1 +1774133899.317291,0.80,4,3992.50,54.45,1545.79,2131.79,0.00,0.000000,0.079686,6908161,2258498,0.002028,0.005631,68276345,45861842,0,0,57407,0,1,1 +1774133904.312896,0.70,4,3992.50,53.98,1563.79,2113.62,0.00,3521532846358.511719,3521532801729.372559,21,0,0.002462,0.007539,68276419,45861979,0,0,57409,0,1,1 +1774133909.317580,0.65,4,3992.50,54.02,1562.39,2115.02,0.00,0.000000,0.000000,21,0,0.001829,0.005094,68276475,45862078,0,0,57412,0,1,1 +1774133914.317138,0.65,4,3992.50,54.03,1562.17,2115.23,0.00,0.000000,0.000000,21,0,0.002314,0.006388,68276547,45862202,0,0,57414,0,1,1 +1774133919.314433,0.85,4,3992.50,53.82,1570.06,2107.34,0.00,0.000000,0.000000,21,0,0.003450,0.007047,68276643,45862343,0,0,57417,0,1,1 +1774133924.317576,0.80,4,3992.50,54.20,1555.43,2121.96,0.00,0.000000,0.000000,21,0,0.002475,0.006546,68276726,45862479,0,0,57419,0,1,1 +1774133929.317118,1.05,4,3992.50,54.51,1541.10,2134.17,0.00,83596.032612,128202.227172,6907387,2258233,0.001839,0.005107,68276783,45862579,0,0,57422,0,1,1 +1774133934.317605,0.75,4,3992.50,54.40,1545.23,2129.96,0.00,3518094313741.475098,3518094269143.716797,21,0,0.002276,0.006355,68276852,45862701,0,0,57424,0,1,1 +1774133939.312913,0.65,4,3992.50,54.40,1545.23,2129.96,0.00,1.539824,0.028347,237,378,0.002278,0.006372,68276921,45862824,0,0,57427,0,1,1 +1774133944.317405,5.66,4,3992.50,60.41,1312.73,2365.33,0.00,83515.908198,128075.449727,6908161,2258667,2.008902,0.012487,68277475,45863267,0,0,57429,0,1,1 +1774133949.314707,41.17,4,3992.50,60.26,1324.24,2359.33,0.00,3520336552448.424316,3520336507826.284668,21,0,104.603780,0.033504,68288231,45865553,0,0,57432,0,1,1 +1774133954.316073,28.40,4,3992.50,60.02,1333.98,2349.90,0.00,83565.533092,128155.506162,6907387,2258315,119.742643,0.042694,68300699,45868558,0,0,57434,0,1,1 +1774133959.316963,29.46,4,3992.50,60.45,1323.39,2366.77,0.00,3517811324954.280762,3517811280358.546875,237,378,118.949979,0.037875,68312984,45871234,0,0,57437,0,1,1 +1774133964.312804,28.16,4,3992.50,60.22,1332.04,2357.88,0.00,83656.406581,128297.384636,6907387,2258468,119.471838,0.041624,68325256,45874301,0,0,57439,0,1,1 +1774133969.318075,27.95,4,3992.50,60.28,1329.92,2359.93,0.00,3514731856309.908691,3514731811754.492188,70,0,120.061253,0.083419,68337959,45880556,0,0,57442,0,1,1 +1774133974.313218,27.94,4,3992.50,60.34,1327.49,2362.34,0.00,83673.721692,128315.417542,6908161,2258871,118.300115,0.079444,68350456,45886672,0,0,57444,0,1,1 +1774133979.313146,27.79,4,3992.50,60.07,1337.97,2351.92,0.00,3518487552254.322266,3518487507655.407227,21,0,120.193247,0.093864,68363151,45893869,0,0,57447,0,1,1 +1774133984.313438,27.86,4,3992.50,60.23,1331.52,2358.31,0.00,0.174990,0.000000,199,0,118.191782,0.109239,68375953,45902264,0,0,57449,0,1,1 +1774133989.313597,9.75,4,3992.50,55.27,1528.04,2163.88,0.00,1.831778,0.000195,238,2,84.141609,0.083419,68385095,45908399,0,0,57452,0,1,1 +1774133994.313480,3.71,4,3992.50,54.93,1541.30,2150.55,0.00,83592.559392,128194.133254,6908172,2259058,2.020467,0.017236,68385883,45909039,0,0,57454,0,1,1 +1774133999.317683,9.53,4,3992.50,54.69,1550.62,2141.27,0.00,3515481810897.934082,3515481766336.822754,70,0,12.078390,0.060803,68390146,45912137,0,0,57457,0,1,1 +1774134004.313112,16.72,4,3992.50,55.38,1523.54,2168.11,0.00,1.960582,0.000195,238,2,26.167021,0.105946,68398282,45917935,0,0,57459,0,1,1 +1774134009.312924,1.86,4,3992.50,54.37,1562.73,2128.89,0.00,0.000000,0.000000,238,2,0.014681,0.013711,68398582,45918225,0,0,57462,0,1,1 +1774134014.314933,0.80,4,3992.50,54.28,1566.57,2125.08,0.00,3517024487671.365723,3517024487673.372070,21,0,0.003419,0.005878,68398668,45918343,0,0,57464,0,1,1 +1774134019.317670,1.15,4,3992.50,54.57,1552.50,2136.54,0.00,2.005738,0.000195,238,2,0.003876,0.007128,68398768,45918484,0,0,57467,0,1,1 +1774134024.317105,0.90,4,3992.50,54.61,1550.60,2138.25,0.00,83596.009780,128206.472578,6907431,2259739,0.003878,0.007123,68398868,45918624,0,0,57469,0,1,1 +1774134029.316826,0.80,4,3992.50,54.61,1550.74,2138.12,0.00,3518633416483.661621,3518633371876.244629,237,378,0.003878,0.007133,68398968,45918765,0,0,57472,0,1,1 +1774134034.317186,0.85,4,3992.50,54.41,1558.62,2130.23,0.00,83585.126413,128183.309959,6908205,2260505,0.003071,0.005364,68399049,45918870,0,0,57474,0,1,1 +1774134039.317049,0.80,4,3992.50,54.42,1558.18,2130.68,0.00,3518533747745.810059,3518533703144.651367,70,0,0.003891,0.007164,68399150,45919013,0,0,57477,0,1,1 +1774134044.312805,0.80,4,3992.50,54.42,1558.20,2130.67,0.00,1.491598,0.028344,237,378,0.003881,0.007128,68399250,45919153,0,0,57479,0,1,1 +1774134049.317234,1.25,4,3992.50,54.50,1555.13,2133.73,0.00,3515323523023.291992,3515323523024.752441,70,0,0.003405,0.005835,68399335,45919268,0,0,57482,0,1,1 +1774134054.315402,1.61,4,3992.50,54.50,1555.08,2133.68,0.00,1.959507,0.000195,238,2,0.003979,0.007165,68399442,45919411,0,0,57484,0,1,1 +1774134059.312819,1.10,4,3992.50,54.50,1555.01,2133.75,0.00,3520255677213.261719,3520255677215.094727,199,0,0.009310,1.614765,68399807,45919935,0,0,57487,0,1,1 +1774134064.318444,29.30,4,3992.50,54.52,1549.84,2134.74,0.00,3514483417147.472168,0.000000,70,0,0.034073,117.637094,68402277,45932215,0,0,57489,0,1,1 +1774134069.314449,22.05,4,3992.50,55.00,1526.29,2153.20,0.00,1.960356,0.000195,238,2,0.022579,85.797859,68403769,45941215,0,0,57492,0,1,1 +1774134074.314495,12.42,4,3992.50,55.76,1496.62,2182.98,0.00,83605.600624,128396.763072,6908339,2262203,40.065047,0.025446,68408218,45942616,0,0,57494,0,1,1 +1774134079.317113,1.30,4,3992.50,55.16,1516.00,2159.69,0.00,3516595856082.366699,3516595811314.725586,237,378,0.005754,0.006175,68408326,45942734,0,0,57497,0,1,1 +1774134084.316970,1.20,4,3992.50,54.64,1536.20,2139.46,0.00,3518537810211.071777,3518537810212.533691,70,0,0.004567,0.009357,68408440,45942898,0,0,57499,0,1,1 +1774134089.312816,1.00,4,3992.50,54.36,1547.38,2128.24,0.00,1.960418,0.000195,238,2,0.003881,0.007126,68408540,45943038,0,0,57502,0,1,1 +1774134094.314267,0.60,4,3992.50,54.33,1548.47,2127.18,0.00,0.000000,0.000000,238,2,0.003648,0.006474,68408633,45943165,0,0,57504,0,1,1 +1774134099.317209,0.80,4,3992.50,54.33,1548.49,2127.16,0.00,83553.093871,128322.632643,6907565,2262035,0.003634,0.007151,68408725,45943299,0,0,57507,0,1,1 +1774134104.317077,11.09,4,3992.50,54.50,1542.14,2133.69,0.00,4.109386,32.062956,6908339,2262609,0.029274,40.068972,68410596,45947787,0,0,57509,0,1,1 +1774134109.316160,1.56,4,3992.50,54.51,1541.63,2134.35,0.00,3519082467286.413086,3519082422456.311523,70,0,0.003374,0.008402,68410690,45947947,0,0,57512,0,1,1 +1774134114.312988,0.75,4,3992.50,54.11,1557.23,2118.61,0.00,3520671142319.839844,0.000000,21,0,0.002290,0.006360,68410760,45948069,0,0,57514,0,1,1 +1774134119.316846,0.85,4,3992.50,54.03,1560.48,2115.36,0.00,0.000000,0.000000,21,0,0.002162,0.006336,68410829,45948190,0,0,57517,0,1,1 +1774134124.317609,0.90,4,3992.50,54.31,1549.28,2126.50,0.00,0.000000,0.000000,21,0,0.001956,0.005113,68410886,45948290,0,0,57519,0,1,1 +1774134129.314874,0.85,4,3992.50,54.34,1548.37,2127.47,0.00,0.000000,0.000000,21,0,0.002277,0.006369,68410955,45948413,0,0,57522,0,1,1 +1774134134.317206,0.85,4,3992.50,54.34,1548.37,2127.47,0.00,0.000000,0.000000,21,0,0.002288,0.006353,68411025,45948535,0,0,57524,0,1,1 +1774134139.312872,1.26,4,3992.50,54.50,1551.77,2133.63,0.00,0.000000,0.000000,21,0,0.002316,0.006390,68411097,45948659,0,0,57527,0,1,1 +1774134144.313296,0.80,4,3992.50,54.51,1551.04,2134.36,0.00,0.000000,0.000000,21,0,0.001889,0.005171,68411158,45948763,0,0,57529,0,1,1 +1774134149.314729,0.85,4,3992.50,54.51,1551.04,2134.36,0.00,0.000000,0.000000,21,0,0.002395,0.006483,68411236,45948894,0,0,57532,0,1,1 +1774134154.317701,0.90,4,3992.50,54.51,1551.07,2134.32,0.00,0.000000,0.000000,21,0,0.003019,0.007562,68411327,45949046,0,0,57534,0,1,1 +1774134159.317170,0.85,4,3992.50,54.51,1551.08,2134.32,0.00,2.007049,0.000195,238,2,0.002289,0.006367,68411397,45949169,0,0,57537,0,1,1 +1774134164.312855,0.75,4,3992.50,54.51,1551.09,2134.31,0.00,3521475888312.332520,3521475888314.340820,21,0,0.001820,0.005577,68411452,45949270,0,0,57539,0,1,1 +1774134169.317082,25.79,4,3992.50,60.75,1324.62,2378.59,0.00,0.174852,0.000000,199,0,42.431487,0.032030,68416153,45951199,0,0,57542,0,1,1 +1774134174.316394,32.16,4,3992.50,60.59,1332.35,2372.34,0.00,83619.707903,128456.421304,6908339,2263093,119.379317,0.044157,68428183,45954402,0,0,57544,0,1,1 +1774134179.315457,28.19,4,3992.50,60.62,1331.53,2373.22,0.00,3519096551031.808105,3519096551035.890137,6907565,2262717,118.984461,0.029946,68440269,45956676,0,0,57547,0,1,1 +1774134184.312800,28.06,4,3992.50,60.66,1327.66,2374.98,0.00,4.111462,0.107772,6908339,2263113,119.225604,0.039243,68452295,45959599,0,0,57549,0,1,1 +1774134189.317156,28.42,4,3992.50,60.58,1332.98,2371.70,0.00,0.000000,0.008294,6908339,2263124,119.058762,0.036986,68464389,45962417,0,0,57552,0,1,1 +1774134194.313189,28.40,4,3992.50,60.91,1320.00,2384.69,0.00,3521230778928.604004,3521230734061.037109,237,378,119.281606,0.080916,68476978,45968596,0,0,57554,0,1,1 +1774134199.312758,29.18,4,3992.50,60.61,1317.54,2373.07,0.00,3518740553171.065430,3518740553172.527832,70,0,119.187507,0.050388,68489515,45972167,0,0,57557,0,1,1 +1774134204.317413,28.54,4,3992.50,60.32,1328.95,2361.59,0.00,83530.565392,128319.440465,6908339,2263175,120.052099,0.043288,68501707,45975455,0,0,57559,0,1,1 +1774134209.317629,23.60,4,3992.50,60.26,1331.16,2359.45,0.00,0.000781,0.023632,6908340,2263207,118.156792,0.046659,68513735,45979055,0,0,57562,0,1,1 +1774134214.313974,1.31,4,3992.50,55.08,1533.96,2156.64,0.00,3521011477608.562500,3521011432743.203125,238,2,29.667308,0.017932,68516899,45980088,0,0,57564,0,1,1 +1774134219.314501,8.54,4,3992.50,54.91,1540.88,2149.72,0.00,3518065993111.797363,3518065993113.804199,21,0,10.067826,0.051113,68520267,45982580,0,0,57567,0,1,1 +1774134224.316327,6.07,4,3992.50,54.46,1558.21,2132.38,0.00,83577.928001,128392.606489,6908348,2263738,4.033168,0.023289,68521683,45983621,0,0,57569,0,1,1 +1774134229.317253,17.07,4,3992.50,54.84,1549.39,2147.00,0.00,3517785712854.398438,0.274949,6907574,2263863,26.151775,0.114374,68530074,45989798,0,0,57572,0,1,1 +1774134234.317039,1.10,4,3992.50,53.91,1585.59,2110.78,0.00,3518588270461.859375,3518588225622.993164,237,378,0.004112,0.007896,68530175,45989942,0,0,57574,0,1,1 +1774134239.316747,0.80,4,3992.50,54.01,1581.72,2114.65,0.00,3518642319690.994629,3518642319692.456543,70,0,0.003420,0.005865,68530261,45990059,0,0,57577,0,1,1 +1774134244.317125,0.90,4,3992.50,53.99,1582.68,2113.69,0.00,3518171591149.825684,0.000000,21,0,0.004492,0.007383,68530373,45990207,0,0,57579,0,1,1 +1774134249.317008,0.75,4,3992.50,54.03,1581.12,2115.25,0.00,83606.292035,128443.500926,6907574,2264379,0.003909,0.007158,68530475,45990350,0,0,57582,0,1,1 +1774134254.317404,1.60,4,3992.50,54.15,1576.43,2119.95,0.00,3518158842434.117676,3518158797599.990234,237,378,0.005141,0.007170,68530585,45990480,0,0,57584,0,1,1 +1774134259.317331,1.15,4,3992.50,54.55,1560.14,2135.91,0.00,3518488653407.960938,3518488653409.471191,21,0,0.003954,0.007226,68530691,45990627,0,0,57587,0,1,1 +1774134264.317772,0.80,4,3992.50,54.50,1562.10,2133.95,0.00,0.048043,0.000000,70,0,0.003903,0.007153,68530793,45990769,0,0,57589,0,1,1 +1774134269.317566,0.80,4,3992.50,54.50,1562.10,2133.96,0.00,83611.851368,128446.030518,6908348,2264939,0.003878,0.007133,68530893,45990910,0,0,57592,0,1,1 +1774134274.317250,0.80,4,3992.50,54.47,1563.42,2132.64,0.00,3518659431364.232422,3518659386527.606934,237,378,0.003416,0.005864,68530979,45991027,0,0,57594,0,1,1 +1774134279.316424,0.70,4,3992.50,54.48,1562.95,2133.11,0.00,3519018212864.678711,3519018212866.188965,21,0,0.003941,0.007174,68531083,45991171,0,0,57597,0,1,1 +1774134284.312883,1.00,4,3992.50,54.49,1562.70,2133.35,0.00,0.000000,0.000000,21,0,0.003893,0.007127,68531184,45991311,0,0,57599,0,1,1 +1774134289.312841,1.05,4,3992.50,54.36,1560.94,2128.23,0.00,2.006853,0.000195,238,2,0.003865,0.007120,68531283,45991451,0,0,57602,0,1,1 +1774134294.312899,0.95,4,3992.50,54.34,1560.89,2127.66,0.00,83605.463784,128439.443488,6908348,2265141,0.003420,0.006499,68531369,45991571,0,0,57604,0,1,1 +1774134299.312894,1.00,4,3992.50,54.34,1560.91,2127.64,0.00,3518440823156.052734,3518440778323.506348,21,0,0.003878,0.007163,68531469,45991714,0,0,57607,0,1,1 +1774134304.312912,0.90,4,3992.50,54.34,1560.95,2127.60,0.00,0.174999,0.000000,199,0,0.003891,0.007122,68531570,45991854,0,0,57609,0,1,1 +1774134309.317426,0.70,4,3992.50,54.34,1560.95,2127.59,0.00,3515264025042.998535,0.000000,21,0,0.003883,0.007134,68531671,45991996,0,0,57612,0,1,1 +1774134314.316426,0.65,4,3992.50,54.35,1560.74,2127.81,0.00,0.000000,0.000000,21,0,0.003421,0.005856,68531757,45992112,0,0,57614,0,1,1 +1774134319.317079,1.15,4,3992.50,54.46,1556.22,2132.04,0.00,0.174977,0.000000,199,0,0.003246,0.006894,68531844,45992246,0,0,57617,0,1,1 +1774134324.316369,21.14,4,3992.50,54.51,1551.16,2134.33,0.00,83620.138605,128512.326980,6908350,2265749,0.039662,86.543336,68534682,46001541,0,0,57619,0,1,1 +1774134329.313156,29.05,4,3992.50,54.61,1539.59,2138.00,0.00,3520700084828.325684,3520700039913.635254,199,0,0.052423,118.245614,68538680,46013869,0,0,57622,0,1,1 +1774134334.312960,11.75,4,3992.50,56.05,1484.33,2194.66,0.00,83623.371189,128625.004705,6907698,2266420,40.069259,0.435609,68543165,46015925,0,0,57624,0,1,1 +1774134339.313051,5.01,4,3992.50,55.36,1511.36,2167.60,0.00,4.109203,26.453620,6908472,2266984,0.015484,16.433392,68544138,46017950,0,0,57627,0,1,1 +1774134344.312840,7.13,4,3992.50,54.75,1535.65,2143.72,0.00,3518585882625.500488,3518585837601.378418,199,0,0.016500,23.643606,68545225,46020592,0,0,57629,0,1,1 +1774134349.312909,1.05,4,3992.50,54.95,1532.38,2151.25,0.00,83623.044447,128676.931086,6908473,2267355,0.002262,0.006321,68545293,46020712,0,0,57632,0,1,1 +1774134354.312889,0.60,4,3992.50,54.95,1532.38,2151.25,0.00,3518451191324.524902,3518451146268.494141,237,378,0.001373,0.003822,68545335,46020786,0,0,57634,0,1,1 +1774134359.317533,0.65,4,3992.50,54.81,1537.63,2145.99,0.00,0.468022,3515172269775.695801,238,2,0.002287,0.006360,68545405,46020909,0,0,57637,0,1,1 +1774134364.317202,0.60,4,3992.50,54.85,1535.97,2147.66,0.00,0.000000,0.000000,238,2,0.001806,0.005733,68545459,46021011,0,0,57639,0,1,1 +1774134369.316950,0.60,4,3992.50,54.85,1535.98,2147.65,0.00,3518614133948.419434,3518614133950.251953,199,0,0.002314,0.006397,68545531,46021136,0,0,57642,0,1,1 +1774134374.315835,0.65,4,3992.50,54.86,1535.64,2147.98,0.00,83640.463188,128715.426163,6907849,2267043,0.002297,0.006365,68545602,46021259,0,0,57644,0,1,1 +1774134379.314451,0.95,4,3992.50,54.78,1533.58,2144.68,0.00,3519411465878.953613,3519411420801.737305,21,0,0.003337,0.007193,68545684,46021395,0,0,57647,0,1,1 +1774134384.312819,0.90,4,3992.50,54.58,1541.21,2136.96,0.00,0.048063,0.000000,70,0,0.001844,0.005122,68545741,46021495,0,0,57649,0,1,1 +1774134389.317198,0.65,4,3992.50,54.59,1540.97,2137.20,0.00,3515359076107.494141,0.000000,21,0,0.002430,0.006486,68545820,46021628,0,0,57652,0,1,1 +1774134394.318017,0.70,4,3992.50,54.55,1542.52,2135.65,0.00,0.048039,0.000000,70,0,0.002288,0.006355,68545890,46021750,0,0,57654,0,1,1 +1774134399.316847,0.60,4,3992.50,54.55,1542.35,2135.82,0.00,83645.623365,128717.050854,6908623,2267547,0.002277,0.006367,68545959,46021873,0,0,57657,0,1,1 +1774134404.316657,12.59,4,3992.50,60.31,1322.08,2361.45,0.00,3518570828837.456055,3518570783774.912109,21,0,3.614329,0.014357,68546681,46022419,0,0,57659,0,1,1 +1774134409.316882,34.38,4,3992.50,60.71,1310.30,2376.78,0.00,2.006745,0.000195,238,2,118.162579,0.039752,68558805,46025158,0,0,57662,0,1,1 +1774134414.317257,28.17,4,3992.50,60.61,1314.83,2373.05,0.00,3518173836980.487305,3518173836982.494141,21,0,118.581509,0.093538,68571321,46032198,0,0,57664,0,1,1 +1774134419.316427,28.06,4,3992.50,60.51,1318.75,2369.16,0.00,0.175029,0.000000,199,0,119.810895,0.096208,68583987,46039362,0,0,57667,0,1,1 +1774134424.317279,27.85,4,3992.50,60.44,1321.68,2366.33,0.00,83611.774094,128665.319652,6908634,2267776,118.973650,0.098898,68596689,46046974,0,0,57669,0,1,1 +1774134429.316381,27.94,4,3992.50,60.49,1319.64,2368.28,0.00,3519069462625.869141,3519069417556.728516,21,0,119.418605,0.107110,68609497,46055277,0,0,57672,0,1,1 +1774134434.316368,28.14,4,3992.50,60.48,1320.09,2367.76,0.00,0.000000,0.000000,21,0,119.385254,0.074185,68622143,46060867,0,0,57674,0,1,1 +1774134439.315715,28.21,4,3992.50,60.45,1321.27,2366.69,0.00,0.000000,0.000000,21,0,118.992506,0.047473,68634727,46064257,0,0,57677,0,1,1 +1774134444.312821,28.34,4,3992.50,60.46,1317.10,2367.04,0.00,0.175101,0.000000,199,0,119.434414,0.038312,68646946,46067207,0,0,57679,0,1,1 +1774134449.317239,6.87,4,3992.50,53.69,1582.19,2102.02,0.00,83548.146827,128573.862419,6907868,2267477,69.236392,0.017202,68654052,46068258,0,0,57682,0,1,1 +1774134454.316389,3.21,4,3992.50,54.14,1564.62,2119.59,0.00,3519035274689.650879,3519035229616.484375,199,0,0.035383,0.014963,68654368,46068569,0,0,57684,0,1,1 +1774134459.315153,20.42,4,3992.50,54.36,1555.64,2128.47,0.00,3519307199219.255859,0.000000,70,0,32.183756,0.143516,68664793,46076396,0,0,57687,0,1,1 +1774134464.314248,6.58,4,3992.50,54.47,1551.43,2132.67,0.00,0.000000,0.000000,70,0,8.053960,0.036692,68667425,46078298,0,0,57689,0,1,1 +1774134469.317441,1.40,4,3992.50,54.49,1554.16,2133.27,0.00,83568.807967,128606.548422,6907876,2268718,0.004129,0.007265,68667528,46078440,0,0,57692,0,1,1 +1774134474.317396,7.78,4,3992.50,54.54,1549.86,2135.50,0.00,3518468557851.854004,3518468512784.819336,199,0,0.024592,30.636497,68669118,46081992,0,0,57694,0,1,1 +1774134479.317205,28.59,4,3992.50,55.05,1523.77,2155.36,0.00,83629.357873,128811.598628,6908650,2270151,0.026329,119.797365,68670927,46094559,0,0,57697,0,1,1 +1774134484.314464,14.58,4,3992.50,55.65,1498.04,2178.88,0.00,3520367511036.904785,3520367465831.601562,199,0,0.018701,54.711667,68672200,46100218,0,0,57699,0,1,1 +1774134489.318445,14.11,4,3992.50,59.67,1341.64,2336.26,0.00,83575.357826,128791.537210,6908803,2270870,19.621721,0.021628,68674545,46101315,0,0,57702,0,1,1 +1774134494.317413,2.16,4,3992.50,53.85,1569.45,2108.46,0.00,3519163693184.876953,3519163647923.522949,21,0,20.438065,0.008959,68676762,46101739,0,0,57704,0,1,1 +1774134499.312913,1.05,4,3992.50,54.08,1556.54,2117.47,0.00,83713.319357,129010.339800,6908029,2270602,0.004856,0.010645,68676889,46101925,0,0,57707,0,1,1 +1774134504.317569,0.55,4,3992.50,53.87,1564.75,2109.27,0.00,0.000000,0.041173,6908029,2270653,0.004058,0.007647,68676994,46102076,0,0,57709,0,1,1 +1774134509.315405,0.95,4,3992.50,53.87,1564.70,2109.32,0.00,3519960833923.195801,3519960788647.256348,70,0,0.003880,0.007135,68677094,46102217,0,0,57712,0,1,1 +1774134514.317108,0.60,4,3992.50,53.88,1564.50,2109.52,0.00,3517238894736.536133,0.000000,21,0,0.003407,0.005853,68677179,46102333,0,0,57714,0,1,1 +1774134519.317606,0.85,4,3992.50,53.88,1564.52,2109.51,0.00,0.174983,0.000000,199,0,0.005020,0.007753,68677304,46102488,0,0,57717,0,1,1 +1774134524.317576,0.70,4,3992.50,53.88,1564.53,2109.49,0.00,83642.408296,128895.177874,6908803,2271138,0.003878,0.007122,68677404,46102628,0,0,57719,0,1,1 +1774134529.316214,1.05,4,3992.50,54.04,1551.55,2115.64,0.00,3519395836822.233398,3519395791557.579102,21,0,0.003941,0.007185,68677508,46102773,0,0,57722,0,1,1 +1774134534.317592,0.75,4,3992.50,53.97,1553.84,2113.04,0.00,0.000000,0.000000,21,0,0.003419,0.005854,68677594,46102889,0,0,57724,0,1,1 +1774134539.312958,0.75,4,3992.50,53.97,1553.86,2113.02,0.00,1.539806,0.028347,237,378,0.003882,0.007139,68677694,46103030,0,0,57727,0,1,1 +1774134544.312827,0.70,4,3992.50,53.86,1558.00,2108.88,0.00,0.000000,0.000000,237,378,0.003961,0.007171,68677800,46103174,0,0,57729,0,1,1 +1774134549.312851,0.70,4,3992.50,53.85,1558.50,2108.38,0.00,3518420411238.934570,3518420411240.444824,21,0,0.003909,0.007145,68677902,46103316,0,0,57732,0,1,1 +1774134554.312908,0.60,4,3992.50,53.86,1558.27,2108.61,0.00,0.048046,0.000000,70,0,0.005193,0.007249,68678016,46103452,0,0,57734,0,1,1 +1774134559.316541,0.95,4,3992.50,53.97,1554.35,2112.98,0.00,0.126861,0.000000,199,0,0.003218,0.006820,68678101,46103581,0,0,57737,0,1,1 +1774134564.312898,10.66,4,3992.50,54.01,1551.51,2114.78,0.00,83698.768702,129021.678477,6908029,2271201,0.023163,40.097014,68679617,46108119,0,0,57739,0,1,1 +1774134569.317114,0.95,4,3992.50,53.97,1553.27,2113.02,0.00,0.000000,0.064106,6908029,2271275,0.002513,0.006629,68679694,46108248,0,0,57742,0,1,1 +1774134574.317185,0.80,4,3992.50,53.99,1552.35,2113.93,0.00,3518387231699.570312,3518387186410.429199,21,0,0.002276,0.006356,68679763,46108370,0,0,57744,0,1,1 +1774134579.317072,0.70,4,3992.50,53.98,1552.75,2113.54,0.00,0.000000,0.000000,21,0,0.002289,0.006366,68679833,46108493,0,0,57747,0,1,1 +1774134584.314639,0.65,4,3992.50,53.99,1552.52,2113.77,0.00,83682.799130,128990.566208,6908803,2271670,0.002290,0.006359,68679903,46108615,0,0,57749,0,1,1 +1774134589.316759,1.10,4,3992.50,54.38,1537.02,2129.27,0.00,3516945697597.620605,3516945652329.584473,237,378,0.001830,0.005097,68679959,46108714,0,0,57752,0,1,1 +1774134594.316771,0.65,4,3992.50,54.07,1549.42,2116.84,0.00,0.000000,0.000000,237,378,0.002289,0.006356,68680029,46108836,0,0,57754,0,1,1 +1774134599.312889,0.60,4,3992.50,54.07,1549.42,2116.83,0.00,83701.417371,129035.099889,6908029,2271435,0.002349,0.006472,68680104,46108966,0,0,57757,0,1,1 +1774134604.317486,1.55,4,3992.50,53.74,1562.27,2103.98,0.00,3515205330534.308594,3515205285276.932617,238,2,0.002337,0.006412,68680178,46109092,0,0,57759,0,1,1 +1774134609.312832,0.60,4,3992.50,53.74,1562.07,2104.16,0.00,3521714992286.077148,0.028151,237,378,0.001977,0.005241,68680244,46109201,0,0,57762,0,1,1 +1774134614.316635,0.55,4,3992.50,53.74,1562.09,2104.16,0.00,3515763512216.805176,3515763512218.139160,199,0,0.002349,0.006402,68680318,46109327,0,0,57764,0,1,1 +1774134619.314190,1.05,4,3992.50,53.93,1554.71,2111.54,0.00,1.832732,0.000195,238,2,0.002290,0.006369,68680388,46109450,0,0,57767,0,1,1 +1774134624.312824,0.75,4,3992.50,53.93,1554.73,2111.50,0.00,3519398976859.873535,3519398976861.880859,21,0,0.002297,0.006366,68680459,46109573,0,0,57769,0,1,1 +1774134629.319381,15.32,4,3992.50,60.41,1304.67,2365.03,0.00,1.536364,0.028283,237,378,6.408545,0.016764,68681490,46110348,0,0,57772,0,1,1 +1774134634.313336,33.84,4,3992.50,60.17,1318.25,2355.81,0.00,3522696126658.075195,3522696126659.586914,21,0,118.307868,0.066316,68693574,46115228,0,0,57774,0,1,1 +1774134639.317497,28.51,4,3992.50,59.92,1328.19,2346.07,0.00,0.000000,0.000000,21,0,119.864603,0.059737,68705752,46119776,0,0,57777,0,1,1 +1774134644.316684,28.23,4,3992.50,59.93,1327.74,2346.42,0.00,2.007162,0.000195,238,2,118.380923,0.054206,68717787,46123929,0,0,57779,0,1,1 +1774134649.317497,28.41,4,3992.50,59.92,1328.40,2345.83,0.00,83622.393607,128914.280321,6908040,2271623,119.945685,0.048863,68729999,46127545,0,0,57782,0,1,1 +1774134654.312963,32.38,4,3992.50,60.26,1315.46,2359.12,0.00,3521630616661.954102,3521630571321.591797,238,2,118.469459,0.051038,68741996,46131402,0,0,57784,0,1,1 +1774134659.317445,28.59,4,3992.50,60.09,1321.75,2352.77,0.00,3515285700412.316406,3515285700414.321289,21,0,119.658912,0.060135,68754225,46135829,0,0,57787,0,1,1 +1774134664.317185,28.58,4,3992.50,60.44,1308.25,2366.30,0.00,0.048049,0.000000,70,0,118.571538,0.055104,68766403,46139852,0,0,57789,0,1,1 +1774134669.317214,29.00,4,3992.50,60.00,1325.48,2348.98,0.00,1.490324,0.028320,237,378,120.164718,0.045851,68778662,46143293,0,0,57792,0,1,1 +1774134674.312828,5.99,4,3992.50,53.72,1571.55,2103.07,0.00,3521525743314.339355,3521525743315.802734,70,0,65.759762,0.038326,68785541,46145775,0,0,57794,0,1,1 +1774134679.317394,18.67,4,3992.50,55.55,1506.54,2175.00,0.00,3515227251699.490234,0.000000,21,0,28.171404,0.130751,68794896,46152746,0,0,57797,0,1,1 +1774134684.313492,8.70,4,3992.50,54.93,1531.00,2150.47,0.00,0.000000,0.000000,21,0,12.065476,0.055459,68798742,46155602,0,0,57799,0,1,1 +1774134689.316053,1.95,4,3992.50,54.93,1531.02,2150.45,0.00,0.048022,0.000000,70,0,0.004383,0.007586,68798852,46155750,0,0,57802,0,1,1 +1774134694.312749,0.60,4,3992.50,54.59,1544.02,2137.46,0.00,83693.388992,129021.346640,6908059,2272785,0.003881,0.007771,68798952,46155894,0,0,57804,0,1,1 +1774134699.316715,0.65,4,3992.50,54.58,1544.62,2136.85,0.00,3515648466476.899902,3515648421212.837891,238,2,0.003883,0.007135,68799053,46156036,0,0,57807,0,1,1 +1774134704.317405,0.95,4,3992.50,54.80,1535.92,2145.53,0.00,3517951826515.372070,0.028121,237,378,0.003865,0.007121,68799152,46156176,0,0,57809,0,1,1 +1774134709.317208,1.00,4,3992.50,54.78,1536.73,2144.74,0.00,3518576018816.749512,3518576018818.259766,21,0,0.003420,0.005853,68799238,46156292,0,0,57812,0,1,1 +1774134714.317539,0.65,4,3992.50,54.79,1536.49,2144.98,0.00,0.000000,0.000000,21,0,0.003878,0.007122,68799338,46156432,0,0,57814,0,1,1 +1774134719.313254,0.65,4,3992.50,54.79,1536.51,2144.96,0.00,1.539698,0.028345,237,378,0.003549,0.006013,68799434,46156558,0,0,57817,0,1,1 +1774134724.317075,0.70,4,3992.50,54.78,1536.53,2144.95,0.00,3515750577060.039551,3515750577061.548340,21,0,0.003883,0.007112,68799535,46156698,0,0,57819,0,1,1 +1774134729.315130,0.55,4,3992.50,54.78,1536.54,2144.93,0.00,0.175068,0.000000,199,0,0.003409,0.005867,68799620,46156815,0,0,57822,0,1,1 +1774134734.312908,0.60,4,3992.50,54.78,1536.56,2144.91,0.00,3520001287663.233887,0.000000,70,0,0.003955,0.007166,68799725,46156958,0,0,57824,0,1,1 +1774134739.313457,0.95,4,3992.50,54.69,1541.63,2141.41,0.00,83633.019742,128923.147497,6908833,2273810,0.003865,0.007132,68799824,46157099,0,0,57827,0,1,1 +1774134744.317330,0.60,4,3992.50,54.73,1539.73,2142.79,0.00,3515713308776.460449,3515713263516.427734,70,0,0.003674,0.006959,68799919,46157236,0,0,57829,0,1,1 +1774134749.315418,0.65,4,3992.50,54.73,1539.75,2142.76,0.00,1.490902,0.028331,237,378,0.003888,0.007143,68800020,46157378,0,0,57832,0,1,1 +1774134754.317374,0.65,4,3992.50,54.73,1539.52,2142.99,0.00,83603.887999,128886.825292,6908059,2273454,0.004973,0.007619,68800123,46157518,0,0,57834,0,1,1 +1774134759.315307,0.45,4,3992.50,54.73,1539.54,2142.98,0.00,3519891935300.733398,3519891889982.858398,21,0,0.003261,0.007542,68800211,46157656,0,0,57837,0,1,1 +1774134764.316770,25.06,4,3992.50,54.80,1528.98,2145.66,0.00,83617.792640,128968.544452,6908833,2274379,0.059166,100.922507,68804456,46168408,0,0,57839,0,1,1 +1774134769.317401,25.98,4,3992.50,54.62,1533.92,2138.43,0.00,3517992840739.539062,3517992795381.204102,70,0,0.041979,104.136265,68807579,46179223,0,0,57842,0,1,1 +1774134774.313646,2.71,4,3992.50,54.09,1559.50,2117.56,0.00,83705.064825,129239.584080,6908836,2275331,0.006425,0.007302,68807701,46179366,0,0,57844,0,1,1 +1774134779.317531,15.03,4,3992.50,55.74,1496.62,2182.21,0.00,3515705309712.780762,3515705264247.785645,70,0,40.038262,0.033293,68812372,46181186,0,0,57847,0,1,1 +1774134784.316414,0.70,4,3992.50,54.96,1527.20,2151.65,0.00,3519223827200.697266,0.000000,21,0,0.004131,0.005640,68812458,46181303,0,0,57849,0,1,1 +1774134789.312838,11.41,4,3992.50,54.69,1537.43,2141.06,0.00,0.000000,0.000000,21,0,0.022815,40.098080,68813986,46185849,0,0,57852,0,1,1 +1774134794.312896,0.60,4,3992.50,54.34,1550.76,2127.72,0.00,0.000000,0.000000,21,0,0.002297,0.006364,68814057,46185972,0,0,57854,0,1,1 +1774134799.315168,1.65,4,3992.50,54.74,1532.29,2143.10,0.00,1.537680,0.028307,237,378,0.002282,0.006294,68814128,46186096,0,0,57857,0,1,1 +1774134804.317450,0.70,4,3992.50,54.73,1532.60,2142.79,0.00,3516832310194.110840,3516832310195.445312,199,0,0.002229,0.006219,68814195,46186215,0,0,57859,0,1,1 +1774134809.316897,0.60,4,3992.50,54.65,1535.57,2139.82,0.00,0.000000,0.000000,199,0,0.002289,0.006398,68814265,46186340,0,0,57862,0,1,1 +1774134814.315488,0.65,4,3992.50,54.65,1535.82,2139.57,0.00,83680.316111,129211.449097,6908950,2275970,0.002297,0.006366,68814336,46186463,0,0,57864,0,1,1 +1774134819.317233,0.85,4,3992.50,54.62,1536.81,2138.58,0.00,3517209550859.355469,3517209505356.937500,199,0,0.003384,0.006958,68814427,46186598,0,0,57867,0,1,1 +1774134824.315410,0.70,4,3992.50,54.62,1536.81,2138.58,0.00,3519720246873.113770,0.000000,70,0,0.001882,0.005810,68814487,46186705,0,0,57869,0,1,1 +1774134829.317203,0.60,4,3992.50,54.63,1536.57,2138.82,0.00,3517176263207.288574,0.000000,21,0,0.002313,0.006395,68814559,46186830,0,0,57872,0,1,1 +1774134834.317086,1.05,4,3992.50,54.78,1530.45,2144.93,0.00,2.006883,0.000195,238,2,0.002014,0.005260,68814628,46186941,0,0,57874,0,1,1 +1774134839.317386,0.70,4,3992.50,54.78,1530.46,2144.93,0.00,83649.879450,129175.410553,6908950,2276112,0.001818,0.005098,68814683,46187040,0,0,57877,0,1,1 +1774134844.317128,0.60,4,3992.50,54.78,1530.47,2144.93,0.00,3518618554347.414062,3518618508818.762695,70,0,0.002302,0.006356,68814754,46187162,0,0,57879,0,1,1 +1774134849.320383,1.80,4,3992.50,58.29,1395.27,2282.21,0.00,83598.321501,129099.104045,6908176,2275766,0.025534,0.009141,68814896,46187339,0,0,57882,0,1,1 +1774134854.316373,40.88,4,3992.50,61.01,1294.12,2388.69,0.00,3521261211232.179688,3521261165663.268555,238,2,116.842452,0.046596,68827196,46190597,0,0,57884,0,1,1 +1774134859.316828,29.25,4,3992.50,61.15,1288.88,2394.28,0.00,83643.178004,129171.549222,6908176,2275893,121.557323,0.025915,68839664,46192369,0,0,57887,0,1,1 +1774134864.316756,28.77,4,3992.50,60.70,1306.45,2376.42,0.00,3518487329118.883789,3518487283587.552246,199,0,121.370020,0.021243,68852161,46193931,0,0,57889,0,1,1 +1774134869.313793,28.70,4,3992.50,60.50,1314.05,2368.84,0.00,83706.344369,129260.038560,6908950,2276328,120.241186,0.042599,68864564,46197193,0,0,57892,0,1,1 +1774134874.312831,28.41,4,3992.50,60.69,1306.74,2376.22,0.00,3519114453408.080566,3519114407872.798340,21,0,118.786276,0.028795,68876712,46199272,0,0,57894,0,1,1 +1774134879.314981,28.61,4,3992.50,60.85,1300.54,2382.38,0.00,83620.945011,129127.973688,6908950,2276354,120.115002,0.041305,68888976,46202442,0,0,57897,0,1,1 +1774134884.317381,28.42,4,3992.50,60.70,1306.45,2376.48,0.00,3516748706695.747070,3516748706699.834961,6908176,2275989,120.108195,0.042403,68901270,46205618,0,0,57899,0,1,1 +1774134889.318403,28.39,4,3992.50,60.53,1313.05,2369.86,0.00,0.000000,0.067076,6908176,2276007,119.342536,0.031348,68913509,46207790,0,0,57902,0,1,1 +1774134894.316929,5.58,4,3992.50,54.54,1549.14,2135.44,0.00,3519474269248.457031,3519474223704.105957,199,0,67.114268,0.034140,68920393,46210266,0,0,57904,0,1,1 +1774134899.316386,1.35,4,3992.50,54.75,1539.40,2143.52,0.00,83661.864140,129197.840839,6908191,2276068,0.004939,0.006526,68920507,46210403,0,0,57907,0,1,1 +1774134904.316466,22.86,4,3992.50,55.84,1496.66,2186.25,0.00,3518380612297.178711,3518380566767.055176,21,0,30.531874,0.142552,68930511,46217754,0,0,57909,0,1,1 +1774134909.317474,7.67,4,3992.50,53.95,1570.77,2112.14,0.00,0.000000,0.000000,21,0,9.730368,0.051493,68933886,46220281,0,0,57912,0,1,1 +1774134914.317310,0.80,4,3992.50,53.95,1570.64,2112.27,0.00,2.006902,0.000195,238,2,0.003420,0.005855,68933972,46220397,0,0,57914,0,1,1 +1774134919.316610,3.76,4,3992.50,54.98,1538.63,2152.52,0.00,0.000000,0.000000,238,2,0.017476,11.830752,68934997,46222068,0,0,57917,0,1,1 +1774134924.312927,29.40,4,3992.50,54.66,1546.09,2140.16,0.00,3521030210313.652344,3521030210315.661133,21,0,0.049800,118.257679,68938689,46234377,0,0,57919,0,1,1 +1774134929.317126,18.48,4,3992.50,54.63,1543.26,2138.87,0.00,1.537088,0.028297,237,378,0.015701,75.046389,68939755,46242265,0,0,57922,0,1,1 +1774134934.316392,8.58,4,3992.50,59.03,1373.27,2311.00,0.00,83682.224628,129409.411682,6909082,2279456,1.411929,0.012603,68940208,46242624,0,0,57924,0,1,1 +1774134939.317582,7.43,4,3992.50,54.97,1532.35,2152.11,0.00,3517599954714.011230,3517599909005.920898,21,0,38.651188,0.020590,68944384,46243880,0,0,57927,0,1,1 +1774134944.317545,1.00,4,3992.50,54.60,1546.66,2137.82,0.00,83667.987253,129391.442488,6908308,2279183,0.004680,0.009481,68944507,46244052,0,0,57929,0,1,1 +1774134949.312904,1.20,4,3992.50,54.69,1540.46,2141.16,0.00,3521706144013.790039,3521706098248.010742,199,0,0.003894,0.007126,68944608,46244192,0,0,57932,0,1,1 +1774134954.317784,0.70,4,3992.50,54.67,1541.23,2140.37,0.00,1.362050,0.028293,237,378,0.003404,0.005849,68944693,46244308,0,0,57934,0,1,1 +1774134959.316986,1.05,4,3992.50,54.71,1539.32,2142.13,0.00,3518998936828.750977,3518998936830.261230,21,0,0.003879,0.007765,68944793,46244452,0,0,57937,0,1,1 +1774134964.312858,0.70,4,3992.50,54.55,1545.80,2135.80,0.00,0.000000,0.000000,21,0,0.003927,0.007167,68944897,46244595,0,0,57939,0,1,1 +1774134969.316995,0.70,4,3992.50,54.51,1547.39,2134.21,0.00,83598.209241,129283.794287,6908308,2279353,0.003887,0.007126,68944998,46244736,0,0,57942,0,1,1 +1774134974.312849,0.75,4,3992.50,54.51,1547.31,2134.27,0.00,3521357261432.410156,3521357215671.077637,21,0,0.003423,0.005860,68945084,46244852,0,0,57944,0,1,1 +1774134979.314267,1.30,4,3992.50,54.90,1532.09,2149.50,0.00,2.006267,0.000195,238,2,0.004929,0.007875,68945195,46245002,0,0,57947,0,1,1 +1774134984.317295,1.00,4,3992.50,54.71,1539.74,2141.86,0.00,3516307415939.220215,3516307415941.177246,70,0,0.003871,0.007114,68945295,46245142,0,0,57949,0,1,1 +1774134989.315664,1.00,4,3992.50,54.71,1539.75,2141.85,0.00,0.000000,0.000000,70,0,0.003929,0.007162,68945398,46245285,0,0,57952,0,1,1 +1774134994.313225,0.90,4,3992.50,54.77,1537.30,2144.29,0.00,3520154152806.689941,0.000000,21,0,0.003422,0.005845,68945484,46245400,0,0,57954,0,1,1 +1774134999.317299,0.75,4,3992.50,54.77,1537.33,2144.28,0.00,0.048008,0.000000,70,0,0.003875,0.007127,68945584,46245541,0,0,57957,0,1,1 +1774135004.317059,0.70,4,3992.50,54.77,1537.35,2144.26,0.00,83671.349223,129397.211765,6908308,2279587,0.003886,0.007118,68945685,46245681,0,0,57959,0,1,1 +1774135009.317320,11.00,4,3992.50,54.94,1528.71,2151.04,0.00,3518253452683.373535,3518253406962.142578,21,0,0.024211,40.064401,68947249,46250185,0,0,57962,0,1,1 +1774135014.316431,1.35,4,3992.50,54.73,1536.75,2142.93,0.00,1.538653,0.028325,237,378,0.003842,0.009735,68947368,46250385,0,0,57964,0,1,1 +1774135019.317705,0.95,4,3992.50,54.74,1536.51,2143.17,0.00,3517540549806.078125,3517540549807.587891,21,0,0.001843,0.005085,68947425,46250483,0,0,57967,0,1,1 +1774135024.317561,1.00,4,3992.50,54.82,1533.46,2146.22,0.00,0.000000,0.000000,21,0,0.002297,0.007008,68947496,46250610,0,0,57969,0,1,1 +1774135029.317596,0.90,4,3992.50,54.56,1543.42,2136.26,0.00,0.000000,0.000000,21,0,0.002314,0.006366,68947568,46250733,0,0,57972,0,1,1 +1774135034.317294,1.55,4,3992.50,54.60,1541.86,2137.83,0.00,0.048050,0.000000,70,0,0.002276,0.006356,68947637,46250855,0,0,57974,0,1,1 +1774135039.317495,1.30,4,3992.50,54.33,1553.59,2127.29,0.00,1.958710,0.000195,238,2,0.002060,0.005720,68947700,46250965,0,0,57977,0,1,1 +1774135044.312817,0.85,4,3992.50,54.41,1548.83,2130.44,0.00,3521731812939.974609,3521731812941.983398,21,0,0.002087,0.005772,68947765,46251078,0,0,57979,0,1,1 +1774135049.317620,0.85,4,3992.50,54.39,1549.59,2129.67,0.00,2.004910,0.000195,238,2,0.002337,0.006422,68947839,46251205,0,0,57982,0,1,1 +1774135054.317159,0.85,4,3992.50,54.43,1548.37,2130.89,0.00,0.000000,0.000000,238,2,0.002939,0.007559,68947925,46251355,0,0,57984,0,1,1 +1774135059.317299,0.90,4,3992.50,54.55,1543.48,2135.78,0.00,3518338577184.855957,3518338577186.862793,21,0,0.001955,0.005199,68947989,46251462,0,0,57987,0,1,1 +1774135064.317209,0.75,4,3992.50,54.57,1542.79,2136.47,0.00,1.538407,0.028321,237,378,0.002297,0.006364,68948060,46251585,0,0,57989,0,1,1 +1774135069.317670,1.25,4,3992.50,54.76,1535.34,2144.06,0.00,3518112837470.801758,3518112837472.312012,21,0,0.002289,0.006365,68948130,46251708,0,0,57992,0,1,1 +1774135074.316563,1.50,4,3992.50,54.68,1538.32,2140.99,0.00,0.175039,0.000000,199,0,0.006784,0.010641,68948263,46251882,0,0,57994,0,1,1 +1774135079.313670,43.59,4,3992.50,61.05,1296.04,2390.33,0.00,0.000000,0.000000,199,0,104.612081,0.040503,68959322,46254676,0,0,57997,0,1,1 +1774135084.312849,28.24,4,3992.50,60.88,1303.05,2383.76,0.00,0.000000,0.000000,199,0,118.594382,0.045439,68971742,46257972,0,0,57999,0,1,1 +1774135089.316368,28.50,4,3992.50,60.69,1310.58,2376.30,0.00,3515962605488.463379,0.000000,70,0,119.698398,0.062800,68984350,46262812,0,0,58002,0,1,1 +1774135094.313275,28.10,4,3992.50,60.92,1301.77,2384.99,0.00,1.491255,0.028338,237,378,118.861234,0.087308,68996926,46269454,0,0,58004,0,1,1 +1774135099.316997,28.78,4,3992.50,60.70,1310.09,2376.64,0.00,83603.608222,129335.479196,6908310,2280386,119.504240,0.096180,69009650,46276751,0,0,58007,0,1,1 +1774135104.316819,28.64,4,3992.50,61.13,1292.98,2393.39,0.00,4.109424,0.146197,6909084,2280834,119.386770,0.072312,69022142,46282155,0,0,58009,0,1,1 +1774135109.313491,28.37,4,3992.50,60.78,1306.58,2379.80,0.00,3520780081833.020996,3520780036042.106934,21,0,119.059207,0.063106,69034580,46286956,0,0,58012,0,1,1 +1774135114.312830,28.33,4,3992.50,61.05,1296.19,2390.20,0.00,2.007101,0.000195,238,2,119.586221,0.037407,69046951,46289664,0,0,58014,0,1,1 +1774135119.317616,9.93,4,3992.50,55.50,1513.33,2173.12,0.00,83585.463380,129308.341092,6908319,2280508,86.242379,0.024509,69055946,46291294,0,0,58017,0,1,1 +1774135124.313136,3.26,4,3992.50,54.86,1538.62,2147.82,0.00,3521592345179.870117,3521592299374.026855,199,0,2.019946,0.014542,69056693,46291874,0,0,58019,0,1,1 +1774135129.314922,21.12,4,3992.50,54.86,1538.59,2147.79,0.00,83637.487545,129386.622850,6908327,2281375,32.184890,0.144777,69067225,46299730,0,0,58022,0,1,1 +1774135134.316419,6.98,4,3992.50,55.08,1543.58,2156.55,0.00,3517384168125.858398,3517384122374.251465,21,0,6.049084,0.039027,69069469,46301496,0,0,58024,0,1,1 +1774135139.316068,1.20,4,3992.50,55.05,1544.64,2155.51,0.00,83673.404499,129442.023990,6908327,2281569,0.004366,0.007896,69069579,46301649,0,0,58027,0,1,1 +1774135144.313507,1.30,4,3992.50,55.06,1544.73,2155.55,0.00,3520240504296.808105,3520240458506.428711,237,378,0.003651,0.006505,69069672,46301778,0,0,58029,0,1,1 +1774135149.313543,0.85,4,3992.50,54.61,1562.03,2138.13,0.00,0.468454,3518411953018.491211,238,2,0.003917,0.007165,69069775,46301922,0,0,58032,0,1,1 +1774135154.317208,0.95,4,3992.50,54.62,1561.81,2138.34,0.00,83604.241370,129338.540107,6908327,2281968,0.004939,0.008141,69069897,46302077,0,0,58034,0,1,1 +1774135159.316479,1.15,4,3992.50,54.64,1550.69,2139.21,0.00,4.109877,0.278166,6909101,2282422,0.003879,0.007108,69069997,46302216,0,0,58037,0,1,1 +1774135164.317477,0.90,4,3992.50,54.65,1549.98,2139.73,0.00,3517735320778.912109,0.024604,6908327,2282084,0.003420,0.005867,69070083,46302333,0,0,58039,0,1,1 +1774135169.315999,0.75,4,3992.50,54.65,1549.99,2139.71,0.00,3519477220130.468262,3519477174349.305664,237,378,0.003980,0.007259,69070191,46302482,0,0,58042,0,1,1 +1774135174.317851,0.85,4,3992.50,54.65,1550.00,2139.70,0.00,3517134573377.310547,3517134573378.645020,199,0,0.003877,0.007120,69070291,46302622,0,0,58044,0,1,1 +1774135179.317074,0.75,4,3992.50,54.65,1549.93,2139.78,0.00,1.832121,0.000195,238,2,0.003866,0.007133,69070390,46302763,0,0,58047,0,1,1 +1774135184.313015,0.90,4,3992.50,54.46,1557.32,2132.38,0.00,0.000000,0.000000,238,2,0.003460,0.005887,69070478,46302881,0,0,58049,0,1,1 +1774135189.312986,1.10,4,3992.50,54.58,1552.72,2136.98,0.00,3518457175422.020508,3518457175423.979492,70,0,0.003886,0.007128,69070579,46303022,0,0,58052,0,1,1 +1774135194.316864,0.90,4,3992.50,54.59,1552.49,2137.21,0.00,0.000000,0.000000,70,0,0.003418,0.005838,69070665,46303137,0,0,58054,0,1,1 +1774135199.312823,0.75,4,3992.50,54.59,1552.50,2137.20,0.00,0.000000,0.000000,70,0,0.003906,0.007157,69070767,46303279,0,0,58057,0,1,1 +1774135204.317377,0.90,4,3992.50,54.58,1552.61,2137.09,0.00,3515235732546.385254,0.000000,21,0,0.004086,0.006771,69070856,46303397,0,0,58059,0,1,1 +1774135209.312950,0.75,4,3992.50,54.58,1552.62,2137.07,0.00,0.175155,0.000000,199,0,0.003869,0.007139,69070955,46303538,0,0,58062,0,1,1 +1774135214.317403,1.40,4,3992.50,54.64,1550.60,2139.09,0.00,3515306429169.087402,0.000000,70,0,0.010014,2.968517,69071427,46304244,0,0,58064,0,1,1 +1774135219.312800,27.38,4,3992.50,55.01,1531.60,2153.75,0.00,83748.726891,129635.281214,6909112,2283482,0.046708,112.110351,69074872,46315880,0,0,58067,0,1,1 +1774135224.317320,23.09,4,3992.50,55.33,1513.48,2166.20,0.00,3515258910731.443848,3515258864928.424316,199,0,0.039162,90.050422,69077714,46325283,0,0,58069,0,1,1 +1774135229.316889,1.50,4,3992.50,54.49,1546.48,2133.55,0.00,0.000000,0.000000,199,0,0.006490,0.009082,69077853,46325463,0,0,58072,0,1,1 +1774135234.314077,16.29,4,3992.50,55.89,1493.23,2188.10,0.00,83728.405142,129712.436352,6908450,2284141,40.085460,0.026082,69082147,46327073,0,0,58074,0,1,1 +1774135239.318382,4.96,4,3992.50,55.17,1521.14,2160.11,0.00,3515410611883.688965,3515410565965.227539,21,0,0.015388,12.219023,69083091,46328723,0,0,58077,0,1,1 +1774135244.313014,8.14,4,3992.50,54.45,1549.10,2132.01,0.00,1.540032,0.028351,237,378,0.012834,27.873249,69083960,46331599,0,0,58079,0,1,1 +1774135249.317865,1.15,4,3992.50,54.75,1539.75,2143.44,0.00,3515027207874.911621,3515027207876.245605,199,0,0.002287,0.006360,69084030,46331722,0,0,58082,0,1,1 +1774135254.313422,0.65,4,3992.50,54.75,1539.22,2143.63,0.00,1.833465,0.000195,238,2,0.002291,0.006362,69084100,46331844,0,0,58084,0,1,1 +1774135259.312933,0.60,4,3992.50,54.75,1539.23,2143.63,0.00,3518781247161.290527,3518781247163.297363,21,0,0.001844,0.005130,69084157,46331945,0,0,58087,0,1,1 +1774135264.315942,0.65,4,3992.50,54.76,1538.99,2143.86,0.00,83635.277066,129593.865171,6909224,2284967,0.002287,0.006352,69084227,46332067,0,0,58089,0,1,1 +1774135269.317082,0.70,4,3992.50,54.76,1538.99,2143.86,0.00,3517634850478.455566,3517634804502.700684,21,0,0.002296,0.006373,69084298,46332191,0,0,58092,0,1,1 +1774135274.312896,0.70,4,3992.50,54.99,1529.90,2152.95,0.00,0.175147,0.000000,199,0,0.002291,0.006361,69084368,46332313,0,0,58094,0,1,1 +1774135279.312903,0.95,4,3992.50,54.99,1529.94,2152.90,0.00,3518432466739.746582,0.000000,21,0,0.001957,0.005254,69084434,46332422,0,0,58097,0,1,1 +1774135284.316768,0.95,4,3992.50,54.89,1533.93,2148.93,0.00,0.000000,0.000000,21,0,0.003233,0.007695,69084508,46332553,0,0,58099,0,1,1 +1774135289.315656,0.70,4,3992.50,54.89,1533.93,2148.93,0.00,0.175039,0.000000,199,0,0.002445,0.006493,69084588,46332686,0,0,58102,0,1,1 +1774135294.315911,0.50,4,3992.50,54.89,1533.71,2149.14,0.00,3518258035259.714844,0.000000,21,0,0.002289,0.006356,69084658,46332808,0,0,58104,0,1,1 +1774135299.313553,0.65,4,3992.50,54.89,1533.72,2149.13,0.00,83720.977783,129741.176261,6908450,2284743,0.001832,0.005101,69084714,46332907,0,0,58107,0,1,1 +1774135304.319372,14.54,4,3992.50,61.08,1296.66,2391.25,0.00,3514346826131.631348,3514346780186.613770,21,0,11.010538,0.019689,69086218,46333923,0,0,58109,0,1,1 +1774135309.312837,34.33,4,3992.50,60.89,1306.57,2383.80,0.00,83791.006771,129849.817087,6908450,2284859,118.319209,0.035768,69098292,46336427,0,0,58112,0,1,1 +1774135314.313559,28.73,4,3992.50,61.34,1288.24,2401.68,0.00,4.108685,0.160914,6909224,2285305,118.745944,0.026022,69110432,46338304,0,0,58114,0,1,1 +1774135319.313577,28.43,4,3992.50,61.05,1299.66,2390.32,0.00,3518424058474.332520,3518424012479.841797,21,0,119.565987,0.021969,69122776,46339839,0,0,58117,0,1,1 +1774135324.315473,28.49,4,3992.50,60.93,1304.47,2385.40,0.00,2.006075,0.000195,238,2,118.717230,0.025712,69134834,46341683,0,0,58119,0,1,1 +1774135329.316747,28.44,4,3992.50,61.07,1299.01,2390.84,0.00,3517540954219.905273,3517540954221.736816,199,0,119.532576,0.030828,69146917,46343940,0,0,58122,0,1,1 +1774135334.313253,28.28,4,3992.50,60.98,1302.56,2387.40,0.00,3520897506433.595703,0.000000,21,0,118.845039,0.036835,69158891,46346577,0,0,58124,0,1,1 +1774135339.312843,28.90,4,3992.50,61.23,1293.36,2397.48,0.00,2.007000,0.000195,238,2,119.973859,0.028083,69171071,46348683,0,0,58127,0,1,1 +1774135344.312847,28.79,4,3992.50,61.27,1292.00,2398.80,0.00,3518434855752.010254,3518434855753.968750,70,0,118.362791,0.041170,69183091,46351844,0,0,58129,0,1,1 +1774135349.312972,4.55,4,3992.50,55.80,1506.31,2184.51,0.00,83683.525346,129677.204987,6909234,2285416,62.487465,0.015122,69189577,46352868,0,0,58132,0,1,1 +1774135354.316406,4.26,4,3992.50,55.74,1508.37,2182.46,0.00,0.000000,0.166487,6909234,2285584,2.099362,0.021208,69190467,46353601,0,0,58134,0,1,1 +1774135359.312821,16.78,4,3992.50,56.37,1483.68,2207.09,0.00,3520961839334.907715,3520961793306.777832,199,0,28.115329,0.126654,69199595,46360403,0,0,58137,0,1,1 +1774135364.312828,4.11,4,3992.50,55.89,1502.47,2188.27,0.00,1.831833,0.000195,238,2,4.032649,0.019525,69201042,46361416,0,0,58139,0,1,1 +1774135369.315065,5.82,4,3992.50,55.51,1516.55,2173.43,0.00,0.000000,0.000000,238,2,6.034978,0.028144,69202965,46362819,0,0,58142,0,1,1 +1774135374.314869,0.85,4,3992.50,55.32,1521.74,2165.71,0.00,3518575353077.098633,0.028126,237,378,0.004582,0.008520,69203081,46362983,0,0,58144,0,1,1 +1774135379.314007,0.95,4,3992.50,55.29,1522.71,2164.76,0.00,83698.559897,129703.557927,6909234,2286502,0.003879,0.007134,69203181,46363124,0,0,58147,0,1,1 +1774135384.315959,0.60,4,3992.50,55.29,1522.73,2164.75,0.00,3517063863695.915527,3517063817718.310547,21,0,0.003419,0.005853,69203267,46363240,0,0,58149,0,1,1 +1774135389.312885,1.40,4,3992.50,54.74,1544.41,2143.08,0.00,83733.036444,129761.685198,6908460,2286493,0.003863,0.007145,69203366,46363382,0,0,58152,0,1,1 +1774135394.312903,0.65,4,3992.50,54.76,1543.46,2144.02,0.00,3518424673496.719238,3518424627496.529785,21,0,0.003954,0.007216,69203472,46363528,0,0,58154,0,1,1 +1774135399.315090,1.00,4,3992.50,54.76,1547.80,2144.01,0.00,0.048026,0.000000,70,0,0.004154,0.007748,69203584,46363686,0,0,58157,0,1,1 +1774135404.312840,0.50,4,3992.50,54.76,1547.89,2143.96,0.00,1.959671,0.000195,238,2,0.004091,0.005792,69203665,46363792,0,0,58159,0,1,1 +1774135409.313015,1.95,4,3992.50,54.70,1550.13,2141.69,0.00,83676.636551,129677.553005,6908460,2286614,0.013132,4.618693,69204334,46364689,0,0,58162,0,1,1 +1774135414.317936,28.54,4,3992.50,55.08,1530.94,2156.50,0.00,3514977361104.970215,3514977315149.642090,70,0,0.049820,118.254712,69208022,46376973,0,0,58164,0,1,1 +1774135419.312893,20.54,4,3992.50,54.79,1537.80,2145.14,0.00,1.491837,0.028349,237,378,0.020683,82.200480,69209509,46385619,0,0,58167,0,1,1 +1774135424.316708,1.45,4,3992.50,54.78,1539.43,2144.65,0.00,3515755185506.229492,3515755185507.563477,199,0,0.007057,0.009643,69209656,46385807,0,0,58169,0,1,1 +1774135429.317575,15.59,4,3992.50,55.46,1516.30,2171.30,0.00,1.363142,0.028315,237,378,40.059436,0.032064,69214144,46387557,0,0,58172,0,1,1 +1774135434.315242,0.55,4,3992.50,55.22,1525.62,2161.93,0.00,3520080105596.657715,3520080105598.168457,21,0,0.003409,0.005858,69214229,46387673,0,0,58174,0,1,1 +1774135439.317640,0.65,4,3992.50,55.07,1531.40,2156.16,0.00,0.048024,0.000000,70,0,0.003876,0.007129,69214329,46387814,0,0,58177,0,1,1 +1774135444.316812,0.90,4,3992.50,55.05,1532.40,2155.14,0.00,1.490579,0.028325,237,378,0.003879,0.007124,69214429,46387954,0,0,58179,0,1,1 +1774135449.317773,0.60,4,3992.50,55.04,1532.65,2154.90,0.00,3517760839155.386719,3517760839156.896973,21,0,0.003865,0.007131,69214528,46388095,0,0,58182,0,1,1 +1774135454.316882,0.55,4,3992.50,54.85,1540.07,2147.48,0.00,0.000000,0.000000,21,0,0.004511,0.006289,69214638,46388226,0,0,58184,0,1,1 +1774135459.313551,1.05,4,3992.50,54.85,1538.50,2147.47,0.00,0.000000,0.000000,21,0,0.003881,0.007137,69214738,46388367,0,0,58187,0,1,1 +1774135464.317381,10.64,4,3992.50,54.85,1537.82,2147.42,0.00,0.048010,0.000000,70,0,0.022280,40.034147,69216138,46392680,0,0,58189,0,1,1 +1774135469.312950,1.25,4,3992.50,54.29,1559.96,2125.55,0.00,3521557592747.868164,0.000000,21,0,0.004175,0.010430,69216271,46392893,0,0,58192,0,1,1 +1774135474.312829,0.55,4,3992.50,54.49,1552.26,2133.25,0.00,0.175004,0.000000,199,0,0.002047,0.005697,69216333,46393001,0,0,58194,0,1,1 +1774135479.317556,0.70,4,3992.50,54.32,1558.94,2126.57,0.00,3515114190059.269531,0.000000,21,0,0.002058,0.005740,69216396,46393113,0,0,58197,0,1,1 +1774135484.312823,0.75,4,3992.50,54.13,1566.35,2119.16,0.00,0.000000,0.000000,21,0,0.002278,0.007007,69216465,46393239,0,0,58199,0,1,1 +1774135489.312908,0.95,4,3992.50,54.41,1561.31,2130.40,0.00,0.000000,0.000000,21,0,0.002289,0.006366,69216535,46393362,0,0,58202,0,1,1 +1774135494.317574,0.75,4,3992.50,54.42,1561.07,2130.64,0.00,0.000000,0.000000,21,0,0.002287,0.006325,69216605,46393482,0,0,58204,0,1,1 +1774135499.312914,0.65,4,3992.50,54.42,1561.08,2130.63,0.00,83777.690614,130049.374413,6909363,2289294,0.001891,0.005199,69216666,46393588,0,0,58207,0,1,1 +1774135504.315884,0.75,4,3992.50,54.35,1563.78,2127.94,0.00,0.000000,0.025766,6909363,2289302,0.001880,0.005148,69216726,46393690,0,0,58209,0,1,1 +1774135509.317698,0.75,4,3992.50,54.35,1563.79,2127.91,0.00,3517161459163.540527,3517161412951.717773,21,0,0.002363,0.006432,69216802,46393817,0,0,58212,0,1,1 +1774135514.317540,0.50,4,3992.50,54.28,1566.59,2125.12,0.00,0.175006,0.000000,199,0,0.001974,0.005240,69216867,46393927,0,0,58214,0,1,1 +1774135519.316900,1.00,4,3992.50,54.57,1555.03,2136.68,0.00,83710.153974,129944.921252,6909363,2289368,0.002289,0.006367,69216937,46394050,0,0,58217,0,1,1 +1774135524.317255,0.70,4,3992.50,54.49,1558.38,2133.31,0.00,3518187627982.490234,3518187581757.097656,21,0,0.002289,0.006356,69217007,46394172,0,0,58219,0,1,1 +1774135529.316634,3.71,4,3992.50,60.87,1313.30,2383.05,0.00,0.000000,0.000000,21,0,1.208933,0.011299,69217413,46394520,0,0,58222,0,1,1 +1774135534.316279,40.30,4,3992.50,60.68,1323.47,2375.82,0.00,83705.545181,129937.723203,6909363,2289560,109.964177,0.035145,69228864,46396892,0,0,58224,0,1,1 +1774135539.316954,28.07,4,3992.50,60.87,1316.02,2383.38,0.00,3517962768712.598633,3517962722489.932617,21,0,119.948932,0.034762,69241177,46399549,0,0,58227,0,1,1 +1774135544.313729,28.32,4,3992.50,60.66,1324.45,2374.88,0.00,0.048078,0.000000,70,0,118.241957,0.023103,69253459,46401155,0,0,58229,0,1,1 +1774135549.315158,27.98,4,3992.50,60.79,1319.41,2380.04,0.00,1.958229,0.000195,238,2,120.132020,0.027045,69265832,46403197,0,0,58232,0,1,1 +1774135554.313190,28.49,4,3992.50,60.66,1324.40,2375.09,0.00,3519823025156.621582,0.028136,237,378,118.211599,0.023169,69278072,46404791,0,0,58234,0,1,1 +1774135559.317911,27.98,4,3992.50,60.74,1321.45,2378.03,0.00,0.468015,3515117984206.083984,238,2,120.054509,0.022424,69290527,46406352,0,0,58237,0,1,1 +1774135564.315082,28.46,4,3992.50,60.72,1322.05,2377.43,0.00,3520428811919.845703,3520428811921.854004,21,0,118.829093,0.045672,69302590,46409873,0,0,58239,0,1,1 +1774135569.312844,28.23,4,3992.50,60.84,1317.32,2382.07,0.00,0.175078,0.000000,199,0,119.620539,0.021429,69314968,46411326,0,0,58242,0,1,1 +1774135574.316979,8.03,4,3992.50,54.55,1563.74,2135.80,0.00,1.362252,0.028297,237,378,79.247114,0.020759,69323207,46412855,0,0,58244,0,1,1 +1774135579.312876,1.56,4,3992.50,54.16,1579.04,2120.50,0.00,83766.956108,130035.587885,6909380,2289745,0.009948,0.009548,69323396,46413050,0,0,58247,0,1,1 +1774135584.316489,16.07,4,3992.50,55.20,1535.85,2161.11,0.00,3515896685203.189453,3515896639007.410645,21,0,20.154431,0.096676,69330114,46418007,0,0,58249,0,1,1 +1774135589.314945,12.23,4,3992.50,55.10,1539.57,2157.28,0.00,2.007456,0.000195,238,2,20.097070,0.092003,69336794,46422953,0,0,58252,0,1,1 +1774135594.317290,0.85,4,3992.50,54.48,1563.79,2133.09,0.00,3516787755944.300293,3516787755946.258301,70,0,0.004122,0.007249,69336896,46423093,0,0,58254,0,1,1 +1774135599.315161,0.70,4,3992.50,54.49,1563.48,2133.41,0.00,83735.370140,129985.097538,6909380,2290948,0.003892,0.007135,69336997,46423234,0,0,58257,0,1,1 +1774135604.312914,0.70,4,3992.50,54.49,1563.48,2133.40,0.00,3520019584485.372070,3520019538233.082520,237,378,0.003880,0.007126,69337097,46423374,0,0,58259,0,1,1 +1774135609.312911,0.65,4,3992.50,54.50,1563.28,2133.61,0.00,3518439118690.590332,3518439118691.925293,199,0,0.003416,0.005873,69337183,46423492,0,0,58262,0,1,1 +1774135614.313281,0.90,4,3992.50,54.93,1546.00,2150.73,0.00,83689.287537,129920.809997,6908606,2290952,0.003420,0.005855,69337269,46423608,0,0,58264,0,1,1 +1774135619.312821,0.70,4,3992.50,55.20,1535.56,2161.17,0.00,3518760831480.987793,3518760785239.958984,238,2,0.003904,0.007795,69337371,46423754,0,0,58267,0,1,1 +1774135624.312892,0.70,4,3992.50,55.20,1535.59,2161.15,0.00,83692.451889,129928.680389,6908606,2291045,0.003521,0.005979,69337465,46423878,0,0,58269,0,1,1 +1774135629.316052,0.60,4,3992.50,55.00,1543.17,2153.57,0.00,3516214755800.848145,3516214709595.169434,21,0,0.003888,0.007115,69337566,46424018,0,0,58272,0,1,1 +1774135634.315987,0.65,4,3992.50,55.01,1542.77,2153.96,0.00,0.000000,0.000000,21,0,0.003878,0.007123,69337666,46424158,0,0,58274,0,1,1 +1774135639.315073,1.00,4,3992.50,55.02,1543.86,2154.19,0.00,83715.068823,129954.442418,6909380,2291534,0.003954,0.007174,69337771,46424302,0,0,58277,0,1,1 +1774135644.317160,0.60,4,3992.50,55.03,1543.07,2154.38,0.00,3516968592439.238770,3516968546227.439941,199,0,0.003406,0.005840,69337856,46424417,0,0,58279,0,1,1 +1774135649.317040,0.55,4,3992.50,55.17,1537.46,2159.98,0.00,1.363412,0.028321,237,378,0.003874,0.007141,69337956,46424559,0,0,58282,0,1,1 +1774135654.312931,0.75,4,3992.50,54.83,1550.75,2146.71,0.00,3521331275557.376465,3521331275558.887695,21,0,0.004489,0.008226,69338069,46424720,0,0,58284,0,1,1 +1774135659.316999,0.55,4,3992.50,54.84,1550.52,2146.94,0.00,0.048008,0.000000,70,0,0.003862,0.007127,69338168,46424861,0,0,58287,0,1,1 +1774135664.316863,0.70,4,3992.50,54.84,1550.53,2146.93,0.00,1.958842,0.000195,238,2,0.003408,0.005855,69338253,46424977,0,0,58289,0,1,1 +1774135669.317504,1.05,4,3992.50,55.01,1544.93,2153.64,0.00,3517986317018.283203,3517986317020.114746,199,0,0.003865,0.007131,69338352,46425118,0,0,58292,0,1,1 +1774135674.315508,0.50,4,3992.50,55.01,1544.98,2153.59,0.00,0.000000,0.000000,199,0,0.003110,0.006742,69338439,46425249,0,0,58294,0,1,1 +1774135679.317513,0.70,4,3992.50,54.98,1545.80,2152.77,0.00,3517027487196.197754,0.000000,21,0,0.003876,0.007129,69338539,46425390,0,0,58297,0,1,1 +1774135684.314403,0.65,4,3992.50,54.99,1545.48,2153.09,0.00,0.000000,0.000000,21,0,0.003763,0.007754,69338639,46425533,0,0,58299,0,1,1 +1774135689.317758,17.45,4,3992.50,55.25,1534.23,2163.09,0.00,2.005490,0.000195,238,2,0.044499,71.662363,69341855,46433309,0,0,58302,0,1,1 +1774135694.315193,28.84,4,3992.50,55.26,1526.61,2163.39,0.00,3520242854793.411621,3520242854795.244629,199,0,0.034420,120.232599,69344455,46445806,0,0,58304,0,1,1 +1774135699.313452,4.37,4,3992.50,54.68,1548.84,2140.98,0.00,3519662591381.067383,0.000000,21,0,0.004532,13.228665,69344708,46447314,0,0,58307,0,1,1 +1774135704.317591,10.08,4,3992.50,59.30,1366.49,2321.66,0.00,0.000000,0.000000,21,0,9.213816,0.016627,69345986,46448107,0,0,58309,0,1,1 +1774135709.313376,6.98,4,3992.50,55.46,1516.96,2171.24,0.00,0.000000,0.000000,21,0,30.884815,7.036745,69349880,46449886,0,0,58312,0,1,1 +1774135714.317014,9.08,4,3992.50,54.45,1555.80,2131.71,0.00,0.048012,0.000000,70,0,0.017650,33.030495,69351067,46453391,0,0,58314,0,1,1 +1774135719.312917,0.80,4,3992.50,54.48,1554.64,2132.88,0.00,83778.199394,130274.944599,6908733,2293419,0.003613,0.006633,69351148,46453505,0,0,58317,0,1,1 +1774135724.313911,0.65,4,3992.50,54.50,1553.89,2133.63,0.00,3517737636414.015625,3517737589962.650879,238,2,0.002288,0.006355,69351218,46453627,0,0,58319,0,1,1 +1774135729.312862,1.10,4,3992.50,54.69,1545.11,2141.26,0.00,3519175847292.110840,3519175847294.118164,21,0,0.002289,0.006367,69351288,46453750,0,0,58322,0,1,1 +1774135734.312904,0.65,4,3992.50,54.69,1544.96,2141.18,0.00,2.006819,0.000195,238,2,0.002314,0.006387,69351360,46453874,0,0,58324,0,1,1 +1774135739.317378,0.60,4,3992.50,54.69,1544.97,2141.18,0.00,0.000000,0.000000,238,2,0.001829,0.005094,69351416,46453973,0,0,58327,0,1,1 +1774135744.316924,0.75,4,3992.50,54.69,1544.97,2141.17,0.00,0.000000,0.000000,238,2,0.001831,0.005089,69351472,46454071,0,0,58329,0,1,1 +1774135749.312992,0.70,4,3992.50,54.68,1545.42,2140.73,0.00,3521206718248.783691,3521206718250.617188,199,0,0.001841,0.005755,69351529,46454175,0,0,58332,0,1,1 +1774135754.312861,0.65,4,3992.50,54.51,1551.98,2134.16,0.00,83711.610055,130179.954531,6908733,2293528,0.003454,0.006882,69351629,46454318,0,0,58334,0,1,1 +1774135759.317106,0.95,4,3992.50,54.26,1554.46,2124.49,0.00,3515452114708.391602,3515452068279.352051,237,378,0.002430,0.006486,69351708,46454451,0,0,58337,0,1,1 +1774135764.313493,0.70,4,3992.50,54.26,1554.46,2124.46,0.00,83768.587812,130270.776008,6908733,2293619,0.002341,0.006423,69351782,46454577,0,0,58339,0,1,1 +1774135769.315421,0.65,4,3992.50,54.26,1554.46,2124.46,0.00,3517081160254.500000,3517081113805.158203,199,0,0.001830,0.005097,69351838,46454676,0,0,58342,0,1,1 +1774135774.317566,1.00,4,3992.50,54.07,1561.86,2117.05,0.00,1.831051,0.000195,238,2,0.003795,0.007677,69351939,46454825,0,0,58344,0,1,1 +1774135779.313772,43.25,4,3992.50,60.97,1298.95,2387.27,0.00,3521108853745.129395,3521108853747.089844,70,0,104.631309,0.041324,69362985,46457606,0,0,58347,0,1,1 +1774135784.313157,28.36,4,3992.50,60.50,1317.46,2368.80,0.00,0.126969,0.000000,199,0,119.780843,0.019695,69375320,46458960,0,0,58349,0,1,1 +1774135789.313601,28.49,4,3992.50,60.96,1300.91,2386.55,0.00,1.831673,0.000195,238,2,119.552894,0.020166,69387445,46460370,0,0,58352,0,1,1 +1774135794.312847,27.89,4,3992.50,60.25,1328.43,2359.02,0.00,3518967610200.843750,3518967610202.802734,70,0,119.186385,0.036393,69399552,46463069,0,0,58354,0,1,1 +1774135799.318983,28.05,4,3992.50,60.40,1322.81,2364.72,0.00,1.956388,0.000195,238,2,120.036120,0.072749,69412044,46468551,0,0,58357,0,1,1 +1774135804.315907,28.61,4,3992.50,60.58,1315.61,2371.82,0.00,3520602916214.597656,3520602916216.557617,70,0,120.267689,0.100770,69424753,46476257,0,0,58359,0,1,1 +1774135809.313479,28.43,4,3992.50,60.27,1327.82,2359.71,0.00,1.491056,0.028334,237,378,118.653868,0.103102,69437503,46484044,0,0,58362,0,1,1 +1774135814.313469,29.23,4,3992.50,60.31,1325.98,2361.47,0.00,3518444523024.311523,3518444523025.646484,199,0,119.795568,0.100217,69450286,46491795,0,0,58364,0,1,1 +1774135819.317558,8.99,4,3992.50,54.22,1564.68,2122.88,0.00,3515561921488.936523,0.000000,21,0,83.667631,0.072899,69459239,46497340,0,0,58367,0,1,1 +1774135824.312848,3.41,4,3992.50,54.31,1567.52,2126.40,0.00,0.175165,0.000000,199,0,0.011709,0.009222,69459466,46497543,0,0,58369,0,1,1 +1774135829.317590,21.13,4,3992.50,55.10,1536.64,2157.24,0.00,0.000000,0.000000,199,0,32.171808,0.146606,69470054,46505430,0,0,58372,0,1,1 +1774135834.317324,6.13,4,3992.50,54.74,1550.55,2143.29,0.00,3518624286395.358887,0.000000,21,0,8.053042,0.038743,69472683,46507410,0,0,58374,0,1,1 +1774135839.317747,1.10,4,3992.50,54.71,1551.91,2141.95,0.00,83702.690535,130167.186537,6908761,2295250,0.004627,0.008536,69472803,46507576,0,0,58377,0,1,1 +1774135844.317664,7.84,4,3992.50,54.74,1550.39,2143.28,0.00,4.109345,0.053028,6909535,2295663,0.022271,28.652259,69474209,46510947,0,0,58379,0,1,1 +1774135849.312817,30.04,4,3992.50,54.66,1546.57,2140.21,0.00,3521851528529.572266,3521851482020.115723,21,0,0.030898,122.298204,69476396,46523860,0,0,58382,0,1,1 +1774135854.312927,15.19,4,3992.50,54.43,1552.75,2131.24,0.00,83712.029540,130380.758131,6909542,2297244,0.015165,54.283110,69477352,46529667,0,0,58384,0,1,1 +1774135859.317480,12.54,4,3992.50,59.38,1361.43,2324.70,0.00,9.811476,0.198745,6908900,2297073,15.816635,0.018825,69479280,46530674,0,0,58387,0,1,1 +1774135864.316396,3.91,4,3992.50,54.57,1549.49,2136.65,0.00,3519199845566.605957,3519199798894.840820,237,378,24.246410,0.025032,69481898,46531962,0,0,58389,0,1,1 +1774135869.316766,0.95,4,3992.50,54.57,1549.54,2136.62,0.00,0.000000,0.000000,237,378,0.003508,0.005989,69481991,46532087,0,0,58392,0,1,1 +1774135874.317538,0.90,4,3992.50,54.90,1536.61,2149.56,0.00,83709.232867,130363.738988,6908900,2297176,0.002809,0.005492,69482066,46532196,0,0,58394,0,1,1 +1774135879.317549,2.06,4,3992.50,55.06,1526.90,2155.57,0.00,3518429567572.834961,3518429520912.684082,70,0,0.003715,0.007120,69482164,46532336,0,0,58397,0,1,1 +1774135884.317503,1.05,4,3992.50,55.05,1526.99,2155.48,0.00,83724.422890,130385.296801,6908900,2297290,0.005444,0.009345,69482267,46532484,0,0,58399,0,1,1 +1774135889.317493,1.65,4,3992.50,55.07,1526.27,2156.20,0.00,3518444031865.180664,3518443985204.643555,70,0,0.003903,0.007151,69482369,46532626,0,0,58402,0,1,1 +1774135894.317786,0.75,4,3992.50,55.07,1526.29,2156.19,0.00,3518231758925.003906,0.000000,21,0,0.003420,0.005855,69482455,46532742,0,0,58404,0,1,1 +1774135899.312914,0.90,4,3992.50,54.88,1533.71,2148.76,0.00,83805.350967,130511.592095,6908900,2297434,0.003900,0.007164,69482556,46532885,0,0,58407,0,1,1 +1774135904.317739,0.70,4,3992.50,54.88,1533.72,2148.75,0.00,3515045339805.643555,3515045293189.839844,70,0,0.003944,0.007174,69482661,46533030,0,0,58409,0,1,1 +1774135909.317060,1.20,4,3992.50,54.74,1534.93,2143.21,0.00,3518915328835.362305,0.000000,21,0,0.003953,0.007173,69482766,46533174,0,0,58412,0,1,1 +1774135914.317334,0.75,4,3992.50,54.76,1534.21,2144.02,0.00,0.000000,0.000000,21,0,0.003420,0.005842,69482852,46533289,0,0,58414,0,1,1 +1774135919.312908,0.80,4,3992.50,54.56,1542.28,2135.95,0.00,0.048089,0.000000,70,0,0.003881,0.007139,69482952,46533430,0,0,58417,0,1,1 +1774135924.317460,0.80,4,3992.50,54.54,1542.84,2135.39,0.00,83647.504105,130266.052890,6908900,2297632,0.003874,0.007103,69483052,46533569,0,0,58419,0,1,1 +1774135929.314145,0.90,4,3992.50,54.58,1541.39,2136.84,0.00,4.112004,0.060098,6909674,2298053,0.003868,0.007137,69483151,46533710,0,0,58422,0,1,1 +1774135934.316989,11.23,4,3992.50,55.04,1523.35,2154.93,0.00,3516436399435.994629,3516436352805.459473,199,0,0.021580,40.043356,69484544,46538189,0,0,58424,0,1,1 +1774135939.314667,1.51,4,3992.50,55.49,1511.79,2172.41,0.00,83762.432702,130477.447203,6908900,2297983,0.002896,0.007440,69484630,46538332,0,0,58427,0,1,1 +1774135944.317495,0.75,4,3992.50,54.47,1551.50,2132.78,0.00,3516448253677.259277,3516448207008.506348,238,2,0.002300,0.006352,69484701,46538454,0,0,58429,0,1,1 +1774135949.317399,0.90,4,3992.50,54.43,1553.14,2131.15,0.00,0.000000,0.000000,238,2,0.002289,0.007010,69484771,46538581,0,0,58432,0,1,1 +1774135954.317545,0.80,4,3992.50,54.47,1551.67,2132.62,0.00,83719.239824,130413.077074,6908900,2298024,0.002418,0.006198,69484838,46538701,0,0,58434,0,1,1 +1774135959.317431,0.95,4,3992.50,54.49,1550.70,2133.59,0.00,3518517247428.387207,3518517200732.613770,237,378,0.002276,0.006366,69484907,46538824,0,0,58437,0,1,1 +1774135964.317806,0.75,4,3992.50,54.49,1550.70,2133.58,0.00,3518173509815.311035,3518173509816.820801,21,0,0.002297,0.006364,69484978,46538947,0,0,58439,0,1,1 +1774135969.316989,1.20,4,3992.50,54.69,1540.77,2141.21,0.00,0.048055,0.000000,70,0,0.002314,0.006398,69485050,46539072,0,0,58442,0,1,1 +1774135974.316889,0.75,4,3992.50,54.70,1540.18,2141.75,0.00,1.490362,0.028321,237,378,0.001895,0.005151,69485111,46539174,0,0,58444,0,1,1 +1774135979.316881,0.90,4,3992.50,54.70,1540.18,2141.75,0.00,3518442722985.145020,3518442722986.607422,70,0,0.002427,0.006510,69485191,46539307,0,0,58447,0,1,1 +1774135984.317090,1.00,4,3992.50,54.51,1547.59,2134.35,0.00,83724.272878,130419.613867,6909674,2298537,0.002351,0.006406,69485265,46539433,0,0,58449,0,1,1 +1774135989.317528,0.80,4,3992.50,54.34,1554.38,2127.55,0.00,0.000000,0.003906,6909674,2298541,0.002289,0.006365,69485335,46539556,0,0,58452,0,1,1 +1774135994.317338,0.85,4,3992.50,54.34,1554.38,2127.55,0.00,0.000000,0.003125,6909674,2298544,0.001831,0.005089,69485391,46539654,0,0,58454,0,1,1 +1774135999.312885,10.50,4,3992.50,61.54,1275.59,2409.34,0.00,3521573506840.645020,3521573460100.260254,237,378,6.824706,0.018984,69486535,46540580,0,0,58457,0,1,1 +1774136004.316294,35.08,4,3992.50,61.11,1296.59,2392.59,0.00,0.468138,3516039837203.028809,238,2,123.691065,0.047641,69499255,46543908,0,0,58459,0,1,1 +1774136009.316740,28.68,4,3992.50,60.91,1304.59,2384.61,0.00,3518123179800.453125,0.028122,237,378,120.757774,0.029187,69511731,46546024,0,0,58462,0,1,1 +1774136014.312841,28.58,4,3992.50,60.99,1301.16,2388.01,0.00,83791.612872,130527.065523,6909674,2298727,120.862366,0.022900,69524141,46547517,0,0,58464,0,1,1 +1774136019.316931,29.31,4,3992.50,61.12,1296.30,2392.93,0.00,3515561563840.009766,3515561517180.676270,21,0,119.670534,0.031172,69536522,46549658,0,0,58467,0,1,1 +1774136024.315404,28.72,4,3992.50,60.82,1307.98,2381.09,0.00,2.007449,0.000195,238,2,119.802866,0.037971,69548829,46552407,0,0,58469,0,1,1 +1774136029.317001,28.77,4,3992.50,60.97,1310.73,2386.96,0.00,3517313795034.702148,3517313795036.708496,21,0,120.128055,0.031724,69561170,46554697,0,0,58472,0,1,1 +1774136034.317408,28.98,4,3992.50,60.89,1313.54,2384.16,0.00,0.048043,0.000000,70,0,119.757732,0.025701,69573520,46556423,0,0,58474,0,1,1 +1774136039.316371,28.25,4,3992.50,60.97,1310.52,2387.11,0.00,3519166866606.773926,0.000000,21,0,118.900498,0.034957,69585663,46558960,0,0,58477,0,1,1 +1774136044.313010,2.61,4,3992.50,54.45,1565.88,2131.93,0.00,83780.102936,130513.327935,6908907,2298469,55.001384,0.019730,69591276,46560317,0,0,58479,0,1,1 +1774136049.313043,4.72,4,3992.50,54.93,1547.00,2150.82,0.00,3518413566566.035645,3518413519864.365723,199,0,4.031128,0.025148,69592665,46561363,0,0,58482,0,1,1 +1774136054.312868,19.88,4,3992.50,54.84,1550.80,2146.96,0.00,83730.735077,130430.531137,6909688,2299645,30.189944,0.136802,69602528,46568729,0,0,58484,0,1,1 +1774136059.312831,5.94,4,3992.50,54.89,1550.43,2149.08,0.00,3518462969675.137695,3518462922974.808105,238,2,6.047783,0.037631,69604629,46570378,0,0,58487,0,1,1 +1774136064.316492,11.55,4,3992.50,55.03,1544.94,2154.51,0.00,3515862861045.225098,3515862861047.230469,21,0,0.033657,46.042914,69606913,46575566,0,0,58489,0,1,1 +1774136069.315310,29.61,4,3992.50,55.15,1532.57,2159.18,0.00,0.000000,0.000000,21,0,0.061607,118.195850,69611557,46587755,0,0,58492,0,1,1 +1774136074.316563,10.85,4,3992.50,54.81,1544.29,2145.93,0.00,83702.893884,130574.887910,6908919,2301207,0.026233,40.854172,69613374,46592107,0,0,58494,0,1,1 +1774136079.317732,1.30,4,3992.50,54.63,1551.83,2138.75,0.00,0.000000,24.429251,6908919,2301387,0.005412,0.006259,69613476,46592230,0,0,58497,0,1,1 +1774136084.317146,15.66,4,3992.50,54.41,1559.95,2130.09,0.00,18.041076,0.114174,6909839,2301891,40.069224,0.024417,69617891,46593616,0,0,58499,0,1,1 +1774136089.317607,1.35,4,3992.50,54.48,1542.71,2133.02,0.00,3518112783991.313477,3518112737105.214844,199,0,0.004350,0.008719,69617999,46593768,0,0,58502,0,1,1 +1774136094.312925,0.80,4,3992.50,54.48,1542.68,2132.84,0.00,3521735163838.089355,0.000000,70,0,0.003728,0.006588,69618098,46593902,0,0,58504,0,1,1 +1774136099.312876,1.10,4,3992.50,54.47,1542.74,2132.78,0.00,1.490347,0.028321,237,378,0.003903,0.007163,69618200,46594045,0,0,58507,0,1,1 +1774136104.312997,0.90,4,3992.50,54.28,1550.46,2125.07,0.00,3518351988767.130371,3518351988768.640625,21,0,0.003473,0.006318,69618290,46594169,0,0,58509,0,1,1 +1774136109.317567,0.85,4,3992.50,54.28,1550.23,2125.32,0.00,0.048003,0.000000,70,0,0.003679,0.006544,69618386,46594302,0,0,58512,0,1,1 +1774136114.314063,0.65,4,3992.50,54.31,1549.04,2126.50,0.00,83796.488443,130724.152431,6909079,2301819,0.003893,0.007127,69618487,46594442,0,0,58514,0,1,1 +1774136119.316837,1.20,4,3992.50,54.18,1543.68,2121.35,0.00,3516485877067.835938,3516485830197.601562,237,378,0.003512,0.005937,69618579,46594565,0,0,58517,0,1,1 +1774136124.316802,0.75,4,3992.50,54.18,1543.70,2121.33,0.00,0.000000,0.000000,237,378,0.003865,0.007122,69618678,46594705,0,0,58519,0,1,1 +1774136129.317403,0.85,4,3992.50,54.19,1543.48,2121.57,0.00,3518014774814.340332,3518014774815.850098,21,0,0.003878,0.007119,69618778,46594845,0,0,58522,0,1,1 +1774136134.312916,0.70,4,3992.50,54.26,1540.47,2124.57,0.00,0.048090,0.000000,70,0,0.003956,0.007169,69618883,46594988,0,0,58524,0,1,1 +1774136139.317591,0.85,4,3992.50,54.10,1547.07,2117.97,0.00,1.488940,0.028294,237,378,0.003404,0.005860,69618968,46595105,0,0,58527,0,1,1 +1774136144.316483,0.70,4,3992.50,54.10,1546.86,2118.19,0.00,3519217153975.899902,3519217153977.235352,199,0,0.003874,0.007776,69619068,46595250,0,0,58529,0,1,1 +1774136149.317039,1.25,4,3992.50,54.12,1548.87,2118.92,0.00,83728.316447,130618.426258,6909079,2302197,0.003878,0.007132,69619168,46595391,0,0,58532,0,1,1 +1774136154.317308,0.80,4,3992.50,54.12,1548.82,2118.86,0.00,3518248228990.716797,3518248182098.029297,70,0,0.003259,0.006885,69619256,46595524,0,0,58534,0,1,1 +1774136159.317528,11.28,4,3992.50,54.12,1548.08,2118.89,0.00,3518282749233.895020,0.000000,21,0,0.029171,40.066039,69621217,46600017,0,0,58537,0,1,1 +1774136164.317563,0.90,4,3992.50,54.20,1545.06,2121.90,0.00,0.000000,0.000000,21,0,0.002276,0.006356,69621286,46600139,0,0,58539,0,1,1 +1774136169.317451,0.80,4,3992.50,53.84,1559.04,2107.93,0.00,0.000000,0.000000,21,0,0.002301,0.006366,69621357,46600262,0,0,58542,0,1,1 +1774136174.317104,6.37,4,3992.50,54.38,1527.05,2128.93,0.00,1.538485,0.028322,237,378,0.000903,0.002554,69621384,46600312,0,0,58544,0,1,1 +1774136179.317467,3.71,4,3992.50,54.16,1532.73,2120.49,0.00,83734.440884,131022.546344,6909870,2305339,0.000008,0.000038,69621385,46600316,0,0,58547,0,1,1 +1774136184.317307,5.97,4,3992.50,54.50,1519.58,2133.64,0.00,3518549707472.474609,3518549660180.887207,70,0,0.001380,0.001957,69621401,46600345,0,0,58549,0,1,1 +1774136189.315575,3.46,4,3992.50,55.14,1497.79,2158.99,0.00,1.959468,0.000195,238,2,0.000229,0.000664,69621408,46600360,0,0,58552,0,1,1 +1774136194.317219,6.28,4,3992.50,55.53,1481.29,2174.19,0.00,3517280295901.511230,3517280295903.342773,199,0,0.000495,0.001349,69621425,46600390,0,0,58554,0,1,1 +1774136199.316870,4.97,4,3992.50,54.98,1502.81,2152.60,0.00,3518683389343.988770,0.000000,70,0,0.000496,0.001359,69621442,46600421,0,0,58557,0,1,1 +1774136204.312907,0.60,4,3992.50,54.77,1510.95,2144.46,0.00,83804.320848,131865.058983,6909096,2309477,0.000206,0.000208,69621456,46600437,0,0,58559,0,1,1 +1774136209.317023,2.00,4,3992.50,54.14,1558.35,2119.79,0.00,3515543382951.708008,3515543334968.433105,199,0,0.000457,0.001296,69621470,46600464,0,0,58562,0,1,1 +1774136214.316525,0.90,4,3992.50,54.18,1566.04,2121.18,0.00,83746.125887,131813.262255,6909097,2309749,0.002068,0.005731,69621534,46600575,0,0,58564,0,1,1 +1774136219.312824,0.80,4,3992.50,54.19,1565.60,2121.61,0.00,3521043405699.388184,3521043357601.610840,21,0,0.002291,0.007015,69621604,46600702,0,0,58567,0,1,1 +1774136224.316395,33.13,4,3992.50,60.38,1323.44,2364.02,0.00,83682.304567,131706.117122,6909872,2310179,89.069321,0.037768,69631178,46603070,0,0,58569,0,1,1 +1774136229.314901,30.13,4,3992.50,60.63,1314.88,2373.98,0.00,0.000000,0.106966,6909872,2310271,120.806100,0.020771,69643729,46604404,0,0,58572,0,1,1 +1774136234.313713,28.70,4,3992.50,60.40,1324.05,2364.83,0.00,3519272821519.289062,3519272773449.655273,21,0,121.197849,0.024769,69656104,46606135,0,0,58574,0,1,1 +1774136239.315171,28.59,4,3992.50,60.78,1309.38,2379.53,0.00,83717.667371,131761.922611,6909872,2310295,119.927286,0.024157,69668083,46607982,0,0,58577,0,1,1 +1774136244.317504,28.23,4,3992.50,60.20,1325.58,2356.89,0.00,3516795956039.506348,3516795908003.662109,21,0,119.312157,0.034601,69680243,46610645,0,0,58579,0,1,1 +1774136249.312885,28.28,4,3992.50,60.24,1324.07,2358.35,0.00,83819.525693,131922.300151,6909878,2310372,119.881235,0.034710,69692653,46613177,0,0,58582,0,1,1 +1774136254.315482,28.25,4,3992.50,60.04,1331.73,2350.68,0.00,3516610059834.750488,3516610011801.328613,70,0,120.103484,0.019631,69704960,46614463,0,0,58584,0,1,1 +1774136259.313195,27.57,4,3992.50,60.10,1329.19,2353.20,0.00,0.127011,0.000000,199,0,118.615246,0.020882,69716915,46616014,0,0,58587,0,1,1 +1774136264.313179,12.19,4,3992.50,53.91,1571.90,2110.56,0.00,0.000000,0.000000,199,0,96.536558,0.022726,69726744,46617371,0,0,58589,0,1,1 +1774136269.317287,12.27,4,3992.50,54.48,1532.59,2132.90,0.00,83669.207973,132101.972142,6909118,2312295,0.007598,0.002927,69726863,46617452,0,0,58592,0,1,1 +1774136274.314853,0.50,4,3992.50,54.48,1532.35,2133.14,0.00,3520151140241.554199,3520151091745.558594,21,0,0.000000,0.000020,69726863,46617454,0,0,58594,0,1,1 +1774136279.317590,5.52,4,3992.50,53.90,1554.20,2110.37,0.00,0.000000,0.000000,21,0,0.000229,0.000663,69726870,46617469,0,0,58597,0,1,1 +1774136284.312849,0.70,4,3992.50,54.26,1539.48,2124.42,0.00,0.175166,0.000000,199,0,0.000008,0.000028,69726871,46617472,0,0,58599,0,1,1 +1774136289.317450,7.98,4,3992.50,56.37,1464.30,2207.09,0.00,3515202532870.095215,0.000000,70,0,0.009491,0.005269,69727055,46617612,0,0,58602,0,1,1 +1774136294.316895,0.55,4,3992.50,55.54,1496.60,2174.69,0.00,1.490498,0.028323,237,387,0.000000,0.000020,69727055,46617614,0,0,58604,0,1,1 +1774136299.317094,5.11,4,3992.50,55.57,1496.59,2175.53,0.00,3518296524869.547852,3518296524871.009766,70,0,0.000457,0.001221,69727070,46617642,0,0,58607,0,1,1 +1774136304.317603,7.23,4,3992.50,54.48,1556.43,2133.14,0.00,3518079114867.902832,0.000000,21,0,2.050835,0.033756,69728343,46618636,0,0,58609,0,1,1 +1774136309.317183,14.03,4,3992.50,54.26,1565.03,2124.45,0.00,0.048051,0.000000,70,0,26.147285,0.108699,69736739,46624856,0,0,58612,0,1,1 +1774136314.315439,22.54,4,3992.50,55.43,1519.09,2170.34,0.00,1.490852,0.028330,237,390,38.220576,0.153300,69748602,46633644,0,0,58614,0,1,1 +1774136319.315013,9.46,4,3992.50,55.50,1516.58,2172.80,0.00,3518736967972.769043,3518736967974.231445,70,0,14.096169,0.066644,69753356,46637176,0,0,58617,0,1,1 +1774136324.316402,0.90,4,3992.50,54.79,1544.19,2145.20,0.00,0.126918,0.000000,199,0,0.007039,0.010462,69753527,46637384,0,0,58619,0,1,1 +1774136329.317533,1.00,4,3992.50,54.46,1557.18,2132.24,0.00,0.000000,0.000000,199,0,0.004192,0.007156,69753628,46637527,0,0,58622,0,1,1 +1774136334.312826,0.60,4,3992.50,54.44,1557.57,2131.47,0.00,3521752868068.903809,0.000000,21,0,0.003882,0.007129,69753728,46637667,0,0,58624,0,1,1 +1774136339.314082,0.50,4,3992.50,54.47,1556.61,2132.43,0.00,0.000000,0.000000,21,0,0.003427,0.005872,69753815,46637785,0,0,58627,0,1,1 +1774136344.317207,0.65,4,3992.50,54.46,1556.62,2132.42,0.00,0.000000,0.000000,21,0,0.003863,0.007118,69753914,46637925,0,0,58629,0,1,1 +1774136349.317619,0.65,4,3992.50,54.43,1558.09,2130.95,0.00,0.048043,0.000000,70,0,0.003909,0.007157,69754016,46638068,0,0,58632,0,1,1 +1774136354.314036,0.65,4,3992.50,54.48,1556.16,2132.88,0.00,1.960194,0.000195,238,2,0.004700,0.005915,69754113,46638175,0,0,58634,0,1,1 +1774136359.316684,1.50,4,3992.50,54.40,1567.84,2129.84,0.00,3516575219578.123535,3516575219580.129395,21,0,0.003876,0.007772,69754213,46638320,0,0,58637,0,1,1 +1774136364.312830,5.32,4,3992.50,56.52,1468.27,2212.96,0.00,0.175135,0.000000,199,0,0.001516,0.002345,69754252,46638370,0,0,58639,0,1,1 +1774136369.316207,5.59,4,3992.50,55.77,1496.68,2183.66,0.00,83681.434709,133235.866083,6909119,2321130,0.000260,0.001319,69754261,46638390,0,0,58642,0,1,1 +1774136374.312820,3.46,4,3992.50,56.68,1460.82,2219.16,0.00,3520821719251.419434,3520821669628.575684,237,399,0.001310,0.001699,69754294,46638427,0,0,58644,0,1,1 +1774136379.315524,5.56,4,3992.50,56.62,1464.02,2216.65,0.00,3516535523438.509766,3516535523439.971191,70,0,0.001023,0.001046,69754316,46638451,0,0,58647,0,1,1 +1774136384.317301,6.27,4,3992.50,54.70,1538.98,2141.71,0.00,0.000000,0.000000,70,0,0.001023,0.001024,69754338,46638473,0,0,58649,0,1,1 +1774136389.312843,4.21,4,3992.50,57.01,1448.00,2232.15,0.00,83816.912075,134157.714538,6909893,2324965,0.000795,0.000413,69754353,46638485,0,0,58652,0,1,1 +1774136394.312834,0.50,4,3992.50,56.14,1482.29,2197.86,0.00,3518443302823.714355,3518443252527.750977,21,0,0.000008,0.000028,69754354,46638488,0,0,58654,0,1,1 +1774136399.312842,1.05,4,3992.50,55.60,1520.98,2176.73,0.00,1.538377,0.028320,237,402,0.002638,0.005513,69754426,46638598,0,0,58657,0,1,1 +1774136404.316956,11.32,4,3992.50,55.36,1530.37,2167.28,0.00,3515544431193.777832,3515544431195.111816,199,0,0.027338,43.835292,69756170,46643450,0,0,58659,0,1,1 +1774136409.316425,28.71,4,3992.50,55.17,1530.86,2160.00,0.00,3518810862259.580078,0.000000,21,0,0.042344,119.984941,69759285,46655921,0,0,58662,0,1,1 +1774136414.312816,11.31,4,3992.50,54.76,1545.48,2143.93,0.00,0.175126,0.000000,199,0,0.012933,41.294385,69760075,46660362,0,0,58664,0,1,1 +1774136419.313002,15.64,4,3992.50,54.76,1540.12,2144.08,0.00,1.363328,0.028319,237,402,40.062273,0.027375,69764439,46662039,0,0,58667,0,1,1 +1774136424.312813,0.90,4,3992.50,54.79,1538.82,2145.24,0.00,83753.701151,134268.065221,6909274,2326349,0.006345,0.008271,69764583,46662208,0,0,58669,0,1,1 +1774136429.317677,0.85,4,3992.50,54.79,1538.86,2145.20,0.00,3515017720815.347168,3515017670351.485840,238,2,0.004105,0.008091,69764683,46662349,0,0,58672,0,1,1 +1774136434.312832,0.60,4,3992.50,54.78,1539.34,2144.71,0.00,3521850109148.649902,3521850109150.483398,199,0,0.003869,0.007129,69764782,46662489,0,0,58674,0,1,1 +1774136439.317017,0.65,4,3992.50,54.77,1539.57,2144.48,0.00,3515494931571.322754,0.000000,21,0,0.002799,0.006266,69764856,46662603,0,0,58677,0,1,1 +1774136444.317186,0.60,4,3992.50,54.77,1539.60,2144.46,0.00,0.174994,0.000000,199,0,0.003710,0.006984,69764954,46662742,0,0,58679,0,1,1 +1774136449.317166,1.00,4,3992.50,54.87,1536.46,2148.17,0.00,1.363384,0.028320,237,402,0.003458,0.005896,69765043,46662861,0,0,58682,0,1,1 +1774136454.312816,0.65,4,3992.50,55.00,1531.05,2153.55,0.00,3521500878021.931641,3521500878023.442871,21,0,0.003869,0.007116,69765142,46663000,0,0,58684,0,1,1 +1774136459.312838,6.48,4,3992.50,55.06,1514.43,2155.88,0.00,0.174999,0.000000,199,0,0.002369,0.002773,69765199,46663063,0,0,58687,0,1,1 +1774136464.312892,5.58,4,3992.50,54.63,1528.81,2139.05,0.00,83750.994163,134625.201411,6909274,2328863,0.001657,0.002450,69765238,46663112,0,0,58689,0,1,1 +1774136469.316774,7.79,4,3992.50,54.53,1536.18,2134.95,0.00,3515707659785.298340,3515707608950.134277,70,0,0.002045,0.002062,69765282,46663157,0,0,58692,0,1,1 +1774136474.314834,8.38,4,3992.50,54.88,1524.30,2148.76,0.00,1.959549,0.000195,238,2,0.000878,0.000451,69765303,46663172,0,0,58694,0,1,1 +1774136479.316387,1.05,4,3992.50,54.97,1519.74,2152.01,0.00,3517344910786.597168,0.028116,237,417,0.000000,0.000030,69765303,46663175,0,0,58697,0,1,1 +1774136484.316890,0.75,4,3992.50,54.97,1519.76,2152.01,0.00,3518083322769.422363,3518083322770.884277,70,0,0.000000,0.000020,69765303,46663177,0,0,58699,0,1,1 +1774136489.316865,4.52,4,3992.50,55.01,1515.02,2153.71,0.00,0.000000,0.000000,70,0,0.002174,0.002350,69765334,46663216,0,0,58702,0,1,1 +1774136494.317106,2.51,4,3992.50,55.61,1513.58,2177.42,0.00,83752.117147,135551.285291,6910048,2334609,0.002962,0.004588,69765406,46663308,0,0,58704,0,1,1 +1774136499.316920,0.65,4,3992.50,55.62,1513.37,2177.64,0.00,0.000000,0.034572,6910048,2334650,0.003441,0.005873,69765494,46663426,0,0,58707,0,1,1 +1774136504.317469,0.65,4,3992.50,55.28,1526.50,2164.51,0.00,0.000000,0.005566,6910048,2334658,0.003878,0.007765,69765594,46663570,0,0,58709,0,1,1 +1774136509.316857,1.05,4,3992.50,55.46,1522.88,2171.32,0.00,3518868339922.854004,3518868288113.348145,237,426,0.003878,0.007133,69765694,46663711,0,0,58712,0,1,1 +1774136514.317303,0.65,4,3992.50,55.43,1524.02,2170.16,0.00,3518123039087.021973,3518123039088.532227,21,0,0.003865,0.007122,69765793,46663851,0,0,58714,0,1,1 +1774136519.317498,0.45,4,3992.50,55.43,1524.03,2170.15,0.00,0.000000,0.000000,21,0,0.003420,0.005865,69765879,46663968,0,0,58717,0,1,1 +1774136524.317555,0.80,4,3992.50,55.43,1524.05,2170.14,0.00,2.006813,0.000195,238,2,0.003878,0.007110,69765979,46664107,0,0,58719,0,1,1 +1774136529.317302,0.55,4,3992.50,55.43,1524.05,2170.13,0.00,3518615273333.209473,3518615273335.168457,70,0,0.003886,0.007141,69766080,46664249,0,0,58722,0,1,1 +1774136534.312905,0.60,4,3992.50,55.43,1524.07,2170.11,0.00,0.127065,0.000000,199,0,0.003881,0.007129,69766180,46664389,0,0,58724,0,1,1 +1774136539.312829,1.00,4,3992.50,55.31,1531.28,2165.49,0.00,0.000000,0.000000,199,0,0.003420,0.005853,69766266,46664505,0,0,58727,0,1,1 +1774136544.317502,0.65,4,3992.50,55.31,1530.93,2165.68,0.00,1.362106,0.028294,237,426,0.003862,0.007103,69766365,46664644,0,0,58729,0,1,1 +1774136549.317580,0.60,4,3992.50,55.30,1531.48,2165.14,0.00,3518382530402.608398,3518382530403.943359,199,0,0.003878,0.007120,69766465,46664784,0,0,58732,0,1,1 +1774136554.317345,4.56,4,3992.50,55.32,1514.08,2165.80,0.00,3518602127875.919434,0.000000,21,0,0.001868,0.002788,69766508,46664842,0,0,58734,0,1,1 +1774136559.315615,7.00,4,3992.50,56.25,1476.01,2202.17,0.00,1.538911,0.028330,237,429,0.000445,0.001297,69766521,46664869,0,0,58737,0,1,1 +1774136564.317250,8.94,4,3992.50,55.59,1503.84,2176.46,0.00,83723.171482,136230.791709,6909274,2338617,0.000458,0.001287,69766535,46664895,0,0,58739,0,1,1 +1774136569.314151,3.36,4,3992.50,55.46,1508.66,2171.36,0.00,3520618858975.193359,3520618806419.303223,70,0,0.000229,0.001308,69766542,46664914,0,0,58742,0,1,1 +1774136574.317124,17.08,4,3992.50,57.04,1445.50,2233.39,0.00,0.000000,0.000000,70,0,0.024027,40.038809,69768208,46669423,0,0,58744,0,1,1 +1774136579.317324,3.91,4,3992.50,55.25,1512.75,2163.30,0.00,0.000000,0.000000,70,0,0.000704,0.002740,69768240,46669476,0,0,58747,0,1,1 +1774136584.318556,5.06,4,3992.50,55.67,1498.69,2179.67,0.00,83731.389708,136998.572835,6909274,2342696,0.000458,0.001287,69768254,46669502,0,0,58749,0,1,1 +1774136589.312918,2.26,4,3992.50,56.17,1499.79,2199.27,0.00,3522408710698.135742,3522408657355.720215,238,2,0.003584,0.007191,69768350,46669643,0,0,58752,0,1,1 +1774136594.315459,0.80,4,3992.50,55.46,1527.81,2171.25,0.00,0.000000,0.000000,238,2,0.002325,0.006428,69768423,46669770,0,0,58754,0,1,1 +1774136599.317281,0.95,4,3992.50,55.41,1533.65,2169.27,0.00,83719.550660,137047.051875,6909274,2343362,0.002052,0.005660,69768487,46669882,0,0,58757,0,1,1 +1774136604.315822,0.60,4,3992.50,55.11,1541.32,2157.77,0.00,3519464047020.834473,3519463993660.330566,21,0,0.002486,0.006890,69768563,46670015,0,0,58759,0,1,1 +1774136609.317125,0.65,4,3992.50,54.92,1548.88,2150.21,0.00,0.000000,0.000000,21,0,0.002276,0.006364,69768632,46670138,0,0,58762,0,1,1 +1774136614.317703,0.65,4,3992.50,54.91,1549.07,2150.02,0.00,83742.405261,137081.244616,6909274,2343416,0.002297,0.006363,69768703,46670261,0,0,58764,0,1,1 +1774136619.317068,0.65,4,3992.50,54.92,1548.96,2150.12,0.00,3518884224707.839355,3518884171356.062012,21,0,0.003449,0.007044,69768799,46670402,0,0,58767,0,1,1 +1774136624.317065,0.70,4,3992.50,54.92,1548.97,2150.12,0.00,0.048047,0.000000,70,0,0.001831,0.005089,69768855,46670500,0,0,58769,0,1,1 +1774136629.315501,0.95,4,3992.50,55.14,1540.55,2158.97,0.00,83778.224468,137140.004051,6909274,2343448,0.002290,0.006368,69768925,46670623,0,0,58772,0,1,1 +1774136634.315329,0.70,4,3992.50,54.91,1549.16,2149.93,0.00,3518558426729.173828,3518558373382.289062,21,0,0.002438,0.006475,69769005,46670754,0,0,58774,0,1,1 +1774136639.312823,0.55,4,3992.50,54.85,1551.52,2147.57,0.00,2.007842,0.000195,238,2,0.002290,0.007026,69769075,46670882,0,0,58777,0,1,1 +1774136644.313467,0.65,4,3992.50,54.86,1551.28,2147.82,0.00,3517984013737.381836,3517984013739.388672,21,0,0.001839,0.005096,69769132,46670981,0,0,58779,0,1,1 +1774136649.317404,7.67,4,3992.50,56.69,1460.97,2219.41,0.00,0.174862,0.000000,199,0,0.000705,0.001954,69769154,46671022,0,0,58782,0,1,1 +1774136654.316440,3.26,4,3992.50,55.29,1516.57,2164.82,0.00,83768.049941,137468.876992,6909274,2345397,0.002652,0.001441,69769204,46671064,0,0,58784,0,1,1 +1774136659.314440,16.55,4,3992.50,55.24,1517.12,2162.91,0.00,3519845432888.049805,3519845379176.260254,21,0,0.000471,0.001612,69769219,46671092,0,0,58787,0,1,1 +1774136664.314721,0.50,4,3992.50,55.46,1508.75,2171.28,0.00,1.538292,0.028319,237,441,0.000050,0.000095,69769223,46671099,0,0,58789,0,1,1 +1774136669.313519,0.70,4,3992.50,55.67,1500.40,2179.63,0.00,0.468570,3519283521961.393066,238,2,0.000244,0.000676,69769231,46671115,0,0,58792,0,1,1 +1774136674.316444,9.69,4,3992.50,57.13,1446.66,2236.67,0.00,3516380007020.166016,3516380007022.171875,21,0,0.000798,0.002540,69769259,46671164,0,0,58794,0,1,1 +1774136679.317552,4.27,4,3992.50,55.07,1524.16,2156.25,0.00,0.048036,0.000000,70,0,0.000008,0.000038,69769260,46671168,0,0,58797,0,1,1 +1774136684.313033,1.15,4,3992.50,55.92,1494.30,2189.38,0.00,1.491680,0.028346,237,444,0.000216,0.000641,69769266,46671181,0,0,58799,0,1,1 +1774136689.316853,28.67,4,3992.50,61.71,1293.26,2416.14,0.00,0.000000,0.000000,237,450,47.636133,0.028116,69774441,46673009,0,0,58802,0,1,1 +1774136694.316465,30.56,4,3992.50,61.42,1306.36,2404.88,0.00,3518710351587.847168,3518710351589.182129,199,0,119.379110,0.030201,69786882,46674910,0,0,58804,0,1,1 +1774136699.318301,28.01,4,3992.50,61.15,1317.23,2394.06,0.00,83721.196150,138372.389316,6909282,2350908,118.925914,0.023917,69799324,46676398,0,0,58807,0,1,1 +1774136704.312801,28.18,4,3992.50,61.32,1310.22,2401.01,0.00,3522311928905.969238,3522311874172.663086,238,2,119.697945,0.023091,69811580,46677829,0,0,58809,0,1,1 +1774136709.313126,27.96,4,3992.50,61.16,1316.88,2394.39,0.00,83748.799115,138414.351822,6910057,2351465,118.752416,0.021535,69823421,46679368,0,0,58812,0,1,1 +1774136714.317067,28.48,4,3992.50,61.20,1315.17,2396.09,0.00,3515665869864.090332,3515665815240.003418,70,0,120.078227,0.043740,69835756,46682673,0,0,58814,0,1,1 +1774136719.314466,28.40,4,3992.50,61.65,1297.70,2413.61,0.00,0.127019,0.000000,199,0,118.433882,0.046897,69847961,46686186,0,0,58817,0,1,1 +1774136724.317627,28.90,4,3992.50,61.01,1322.37,2388.82,0.00,1.362517,0.028302,237,450,119.906148,0.069227,69860484,46691334,0,0,58819,0,1,1 +1774136729.314451,22.32,4,3992.50,61.17,1316.29,2395.04,0.00,83803.836607,138511.482141,6909284,2351091,119.050848,0.048294,69872977,46695051,0,0,58822,0,1,1 +1774136734.315527,1.45,4,3992.50,55.29,1546.74,2164.58,0.00,3517680447445.061523,3517680392783.432129,238,2,23.634117,0.013511,69875555,46695799,0,0,58824,0,1,1 +1774136739.316712,10.25,4,3992.50,55.69,1530.88,2180.45,0.00,83730.357552,138391.032185,6909291,2351488,10.209376,0.063691,69879414,46698727,0,0,58827,0,1,1 +1774136744.316391,11.87,4,3992.50,55.64,1512.48,2178.25,0.00,0.000781,247.180333,6909292,2353359,9.925090,0.038542,69882416,46701010,0,0,58829,0,1,1 +1774136749.316862,4.10,4,3992.50,56.75,1471.61,2221.86,0.00,0.038278,142.536562,6909298,2354166,0.000000,0.000030,69882416,46701013,0,0,58832,0,1,1 +1774136754.317698,3.16,4,3992.50,55.52,1519.79,2173.55,0.00,3517849060375.094727,3517849005322.820312,199,0,0.000000,0.000020,69882416,46701015,0,0,58834,0,1,1 +1774136759.317676,7.57,4,3992.50,56.86,1468.64,2226.07,0.00,83752.439514,139142.210683,6909298,2355940,0.000000,0.000030,69882416,46701018,0,0,58837,0,1,1 +1774136764.317304,2.96,4,3992.50,55.72,1513.69,2181.54,0.00,3518699356904.434082,3518699301510.773438,199,0,0.000795,0.000403,69882431,46701029,0,0,58839,0,1,1 +1774136769.316385,8.08,4,3992.50,56.82,1470.59,2224.64,0.00,3519084132676.387207,0.000000,21,0,0.000795,0.000426,69882446,46701042,0,0,58842,0,1,1 +1774136774.316604,1.86,4,3992.50,55.57,1519.20,2175.53,0.00,1.538311,0.028319,237,453,0.000033,0.000059,69882449,46701047,0,0,58844,0,1,1 +1774136779.317104,9.60,4,3992.50,55.36,1543.25,2167.28,0.00,3518085695831.325195,3518085695832.787109,70,0,10.064727,0.044945,69885761,46703582,0,0,58847,0,1,1 +1774136784.312902,6.79,4,3992.50,55.73,1528.04,2181.94,0.00,83826.806381,139733.396291,6910098,2359814,10.075865,0.051417,69889188,46706176,0,0,58849,0,1,1 +1774136789.312916,1.91,4,3992.50,55.23,1547.57,2162.40,0.00,3518426856246.346680,3518426800386.777832,199,0,0.004715,0.006951,69889265,46706290,0,0,58852,0,1,1 +1774136794.312859,18.41,4,3992.50,55.40,1539.82,2168.93,0.00,83753.108453,139658.441032,6909329,2359754,0.049387,74.513720,69892839,46714229,0,0,58854,0,1,1 +1774136799.317724,29.24,4,3992.50,55.43,1524.39,2170.25,0.00,0.000000,123.551862,6909329,2360389,0.043960,120.054149,69896085,46726647,0,0,58857,0,1,1 +1774136804.317016,4.16,4,3992.50,55.22,1530.05,2162.14,0.00,3518935353592.917480,3518935297556.796875,21,0,0.007423,10.427207,69896353,46727947,0,0,58859,0,1,1 +1774136809.315670,14.15,4,3992.50,57.13,1448.80,2236.84,0.00,1.538793,0.028328,237,456,40.074404,0.020903,69900716,46729177,0,0,58862,0,1,1 +1774136814.313384,1.81,4,3992.50,56.09,1479.22,2196.12,0.00,3520046114247.248047,3520046114248.583984,199,0,0.006807,0.009875,69900867,46729358,0,0,58864,0,1,1 +1774136819.317375,1.20,4,3992.50,55.34,1508.59,2166.75,0.00,3515630938049.413086,0.000000,70,0,0.003875,0.007127,69900967,46729499,0,0,58867,0,1,1 +1774136824.317392,2.56,4,3992.50,54.98,1522.91,2152.43,0.00,0.000000,0.000000,70,0,0.003865,0.007122,69901066,46729639,0,0,58869,0,1,1 +1774136829.317224,0.90,4,3992.50,54.96,1523.50,2151.84,0.00,1.490382,0.028321,237,456,0.003420,0.005865,69901152,46729756,0,0,58872,0,1,1 +1774136834.316710,0.95,4,3992.50,54.99,1522.51,2152.83,0.00,3518798908332.729004,3518798908334.239258,21,0,0.003878,0.007767,69901252,46729900,0,0,58874,0,1,1 +1774136839.317123,9.10,4,3992.50,55.23,1498.79,2162.29,0.00,2.006670,0.000195,238,2,0.001502,0.002353,69901290,46729951,0,0,58877,0,1,1 +1774136844.317650,0.70,4,3992.50,55.23,1498.82,2162.28,0.00,83758.470278,140133.281429,6909681,2362820,0.000000,0.000664,69901290,46729957,0,0,58879,0,1,1 +1774136849.314644,7.19,4,3992.50,55.21,1500.98,2161.41,0.00,3520553883485.862793,3520553827071.684082,237,459,0.000888,0.000489,69901311,46729975,0,0,58882,0,1,1 +1774136854.317163,2.20,4,3992.50,56.12,1463.30,2197.25,0.00,3516665351814.145020,3516665351815.654297,21,0,0.001630,0.002132,69901346,46730019,0,0,58884,0,1,1 +1774136859.317167,8.98,4,3992.50,56.03,1472.74,2193.77,0.00,83769.248404,140846.123193,6909682,2366341,0.002404,0.003237,69901406,46730090,0,0,58887,0,1,1 +1774136864.315282,3.51,4,3992.50,55.71,1485.54,2181.19,0.00,3519764081100.134277,3519764024001.691406,21,0,0.000405,0.001444,69901416,46730110,0,0,58889,0,1,1 +1774136869.316970,8.09,4,3992.50,55.33,1500.91,2166.20,0.00,0.048031,0.000000,70,0,0.001023,0.001046,69901438,46730134,0,0,58892,0,1,1 +1774136874.312829,1.10,4,3992.50,56.68,1448.17,2218.96,0.00,83842.807823,141413.031367,6910456,2369272,0.001480,0.001658,69901457,46730150,0,0,58894,0,1,1 +1774136879.317426,1.40,4,3992.50,55.70,1502.53,2180.81,0.00,3515205581152.123047,3515205523682.458008,21,0,0.002153,0.004532,69901513,46730236,0,0,58897,0,1,1 +1774136884.314495,1.05,4,3992.50,55.31,1518.02,2165.33,0.00,0.000000,0.000000,21,0,0.003893,0.007114,69901614,46730375,0,0,58899,0,1,1 +1774136889.317584,0.90,4,3992.50,54.97,1531.20,2152.14,0.00,83717.590386,141231.057143,6909682,2369088,0.003876,0.007141,69901714,46730517,0,0,58902,0,1,1 +1774136894.317136,0.80,4,3992.50,54.98,1530.76,2152.59,0.00,4.109646,0.058501,6910456,2369602,0.003408,0.005856,69901799,46730633,0,0,58904,0,1,1 +1774136899.317655,7.79,4,3992.50,55.36,1523.04,2167.53,0.00,3518071809941.803223,3518071752401.320801,237,474,0.022744,31.051290,69903243,46734139,0,0,58907,0,1,1 +1774136904.312758,4.06,4,3992.50,54.72,1548.22,2142.39,0.00,0.468916,3521886148316.830566,238,2,0.006574,9.029778,69903592,46735220,0,0,58909,0,1,1 +1774136909.317766,0.90,4,3992.50,54.55,1553.05,2135.57,0.00,3514917195758.532227,3514917195760.488770,70,0,0.001829,0.005094,69903648,46735319,0,0,58912,0,1,1 +1774136914.317431,1.00,4,3992.50,54.55,1553.05,2135.57,0.00,0.126962,0.000000,199,0,0.002276,0.006356,69903717,46735441,0,0,58914,0,1,1 +1774136919.312835,0.90,4,3992.50,54.54,1553.25,2135.37,0.00,83850.349058,141480.678818,6910475,2370031,0.003401,0.006980,69903809,46735577,0,0,58917,0,1,1 +1774136924.313658,0.85,4,3992.50,54.54,1553.23,2135.39,0.00,3517857784589.787598,3517857727022.092285,21,0,0.002263,0.006355,69903877,46735699,0,0,58919,0,1,1 +1774136929.314574,1.20,4,3992.50,54.92,1536.50,2150.35,0.00,0.000000,0.000000,21,0,0.001839,0.005106,69903934,46735799,0,0,58922,0,1,1 +1774136934.312892,7.87,4,3992.50,55.87,1481.10,2187.29,0.00,0.000000,0.000000,21,0,0.000916,0.002555,69903962,46735849,0,0,58924,0,1,1 +1774136939.312908,2.81,4,3992.50,54.95,1518.84,2151.29,0.00,0.000000,0.000000,21,0,0.000737,0.001993,69903987,46735892,0,0,58927,0,1,1 +1774136944.317018,6.63,4,3992.50,55.04,1514.80,2154.79,0.00,1.537115,0.028297,237,483,0.000774,0.002012,69904015,46735936,0,0,58929,0,1,1 +1774136949.317649,6.72,4,3992.50,55.79,1490.38,2184.12,0.00,0.000000,0.000000,237,483,0.000621,0.001431,69904040,46735974,0,0,58932,0,1,1 +1774136954.312824,4.52,4,3992.50,56.35,1465.61,2206.04,0.00,3521835716955.528809,3521835716956.992676,70,0,0.001065,0.000430,69904062,46735990,0,0,58934,0,1,1 +1774136959.312863,7.91,4,3992.50,58.02,1402.61,2271.45,0.00,83772.751463,142684.267399,6910477,2377098,0.000000,0.000030,69904062,46735993,0,0,58937,0,1,1 +1774136964.313275,6.93,4,3992.50,55.22,1507.54,2162.09,0.00,3518146985640.277344,3518146926731.704590,237,483,0.000050,0.000082,69904066,46735999,0,0,58939,0,1,1 +1774136969.316912,1.30,4,3992.50,56.15,1476.29,2198.22,0.00,3515879922369.358887,3515879922370.819824,70,0,0.001382,0.000418,69904089,46736017,0,0,58942,0,1,1 +1774136974.312915,0.85,4,3992.50,55.58,1498.57,2175.94,0.00,83836.309755,143111.914556,6909703,2378335,0.000237,0.000662,69904097,46736032,0,0,58944,0,1,1 +1774136979.312782,11.48,4,3992.50,61.08,1299.18,2391.55,0.00,3518530696920.757812,3518530637689.504395,237,486,10.421157,0.015780,69905529,46736908,0,0,58947,0,1,1 +1774136984.315689,34.71,4,3992.50,61.67,1277.01,2414.62,0.00,3516392653009.671387,3516392653011.132812,70,0,123.508377,0.040436,69918485,46739752,0,0,58949,0,1,1 +1774136989.313830,28.94,4,3992.50,60.96,1304.95,2386.77,0.00,0.127000,0.000000,199,0,120.817733,0.045635,69930978,46743177,0,0,58952,0,1,1 +1774136994.316004,29.04,4,3992.50,60.93,1306.27,2385.42,0.00,83736.847548,142935.740535,6910477,2379037,121.115971,0.034281,69943431,46745570,0,0,58954,0,1,1 +1774136999.317006,28.90,4,3992.50,61.27,1292.93,2398.76,0.00,3517732659793.323730,3517732659797.409180,6909703,2378566,119.741619,0.039397,69955628,46748393,0,0,58957,0,1,1 +1774137004.312836,28.85,4,3992.50,60.97,1304.62,2387.05,0.00,0.057079,0.185897,6909720,2378641,119.664445,0.033782,69967773,46750777,0,0,58959,0,1,1 +1774137009.317374,28.43,4,3992.50,60.87,1308.29,2383.37,0.00,3515247041938.496582,3515246982763.516113,21,0,120.055185,0.031526,69980030,46753229,0,0,58962,0,1,1 +1774137014.317629,28.94,4,3992.50,61.00,1303.44,2388.25,0.00,0.000000,0.000000,21,0,119.959726,0.029720,69992319,46755321,0,0,58964,0,1,1 +1774137019.315222,28.41,4,3992.50,60.81,1310.75,2380.93,0.00,1.539120,0.028334,237,486,118.821932,0.027788,70004502,46757261,0,0,58967,0,1,1 +1774137024.317377,1.96,4,3992.50,54.56,1555.59,2136.04,0.00,0.000000,0.000000,237,486,51.251015,0.018969,70009844,46758557,0,0,58969,0,1,1 +1774137029.316451,8.07,4,3992.50,56.65,1456.91,2218.04,0.00,3519088787173.861328,3519088787175.196777,199,0,0.003102,0.001960,70009904,46758610,0,0,58972,0,1,1 +1774137034.315204,8.27,4,3992.50,57.69,1415.08,2258.85,0.00,3519315469543.485840,0.000000,70,0,0.008724,0.004067,70010050,46758713,0,0,58974,0,1,1 +1774137039.312844,2.01,4,3992.50,56.05,1480.98,2194.30,0.00,1.959714,0.000195,238,2,0.000237,0.000672,70010058,46758729,0,0,58977,0,1,1 +1774137044.312872,10.98,4,3992.50,56.51,1462.11,2212.68,0.00,3518417293937.164062,0.028125,237,489,0.000236,0.000336,70010064,46758737,0,0,58979,0,1,1 +1774137049.312834,0.70,4,3992.50,55.79,1490.39,2184.46,0.00,3518463923170.845215,3518463923172.355469,21,0,0.000000,0.000030,70010064,46758740,0,0,58982,0,1,1 +1774137054.312893,5.77,4,3992.50,55.54,1499.23,2174.42,0.00,83768.540421,144148.341305,6909742,2385546,0.011280,0.006625,70010267,46758887,0,0,58984,0,1,1 +1774137059.317409,2.86,4,3992.50,55.22,1513.14,2161.82,0.00,3515262570930.834961,3515262510604.745117,70,0,0.000237,0.000671,70010275,46758903,0,0,58987,0,1,1 +1774137064.317400,15.43,4,3992.50,55.54,1520.01,2174.39,0.00,1.958793,0.000195,238,2,8.071009,0.048909,70013075,46760870,0,0,58989,0,1,1 +1774137069.316369,13.49,4,3992.50,55.21,1532.64,2161.74,0.00,83784.818673,144408.303272,6909758,2387870,20.179158,0.085517,70019492,46765565,0,0,58992,0,1,1 +1774137074.316839,22.33,4,3992.50,54.78,1549.55,2144.75,0.00,3518106367531.025879,3518106306925.737305,238,2,34.125724,0.139140,70030040,46773527,0,0,58994,0,1,1 +1774137079.317595,12.60,4,3992.50,55.26,1528.66,2163.52,0.00,3517905314262.135254,3517905314264.142090,21,0,18.120839,0.093247,70036131,46778025,0,0,58997,0,1,1 +1774137084.317639,13.37,4,3992.50,55.09,1535.02,2156.82,0.00,0.048046,0.000000,70,0,0.029150,53.084170,70038055,46783795,0,0,58999,0,1,1 +1774137089.317709,29.55,4,3992.50,55.26,1521.31,2163.57,0.00,83774.312570,144531.410098,6911001,2391082,0.038069,118.170601,70040623,46796020,0,0,59002,0,1,1 +1774137094.315678,8.89,4,3992.50,54.92,1533.10,2150.06,0.00,3519866659819.789551,3519866599035.189941,238,2,0.012036,33.868204,70041320,46799640,0,0,59004,0,1,1 +1774137099.312896,14.36,4,3992.50,55.95,1492.73,2190.45,0.00,3520396762402.493652,3520396762404.501953,21,0,40.090744,0.031618,70045873,46801467,0,0,59007,0,1,1 +1774137104.313225,0.85,4,3992.50,55.07,1527.18,2156.00,0.00,0.174988,0.000000,199,0,0.005214,0.010801,70046009,46801659,0,0,59009,0,1,1 +1774137109.317554,1.35,4,3992.50,55.15,1523.96,2159.35,0.00,1.362199,0.028296,237,492,0.005006,0.010292,70046143,46801860,0,0,59012,0,1,1 +1774137114.312893,0.70,4,3992.50,54.87,1534.96,2148.16,0.00,83870.473878,144720.684946,6911342,2391832,0.004352,0.008397,70046258,46802024,0,0,59014,0,1,1 +1774137119.315725,1.05,4,3992.50,54.76,1539.22,2143.90,0.00,3516445416032.037109,3516445355274.468750,21,0,0.005007,0.010295,70046392,46802225,0,0,59017,0,1,1 +1774137124.312833,0.75,4,3992.50,54.77,1538.74,2144.38,0.00,0.048075,0.000000,70,0,0.005071,0.010304,70046531,46802426,0,0,59019,0,1,1 +1774137129.312904,0.55,4,3992.50,54.74,1539.92,2143.19,0.00,83788.470530,144583.752684,6910568,2391395,0.004361,0.009074,70046647,46802597,0,0,59022,0,1,1 +1774137134.312910,0.70,4,3992.50,54.52,1548.32,2134.76,0.00,3518433394850.563965,3518433334054.343750,199,0,0.005010,0.010278,70046781,46802796,0,0,59024,0,1,1 +1774137139.312826,1.00,4,3992.50,54.71,1538.57,2142.13,0.00,83790.953143,144588.385688,6910568,2391497,0.005128,0.010364,70046923,46803002,0,0,59027,0,1,1 +1774137144.313583,0.70,4,3992.50,54.46,1548.62,2132.07,0.00,4.108655,0.034370,6911342,2391999,0.004343,0.008384,70047038,46803166,0,0,59029,0,1,1 +1774137149.312907,0.65,4,3992.50,54.36,1552.23,2128.49,0.00,3518913200967.671387,3518913140167.280762,21,0,0.005098,0.010342,70047178,46803370,0,0,59032,0,1,1 +1774137154.317714,0.70,4,3992.50,54.36,1552.24,2128.49,0.00,2.004908,0.000195,238,2,0.005612,0.011389,70047325,46803592,0,0,59034,0,1,1 +1774137159.317440,0.70,4,3992.50,54.35,1552.63,2128.09,0.00,83796.429437,144594.021971,6911342,2392104,0.004323,0.008387,70047438,46803756,0,0,59037,0,1,1 +1774137164.314943,0.65,4,3992.50,54.44,1549.03,2131.41,0.00,3520195219012.832520,0.002247,6910568,2391648,0.005046,0.010291,70047575,46803956,0,0,59039,0,1,1 +1774137169.316207,1.10,4,3992.50,54.83,1534.11,2146.89,0.00,3517547519034.711426,3517547458253.676270,70,0,0.004996,0.010298,70047708,46804157,0,0,59042,0,1,1 +1774137174.317386,0.75,4,3992.50,54.44,1549.50,2131.30,0.00,83769.936146,144552.101577,6910568,2391709,0.005004,0.009309,70047825,46804323,0,0,59044,0,1,1 +1774137179.316975,0.75,4,3992.50,54.37,1552.01,2128.79,0.00,4.109615,0.071783,6911342,2392258,0.005023,0.010289,70047960,46804523,0,0,59047,0,1,1 +1774137184.312813,0.65,4,3992.50,54.34,1553.34,2127.45,0.00,3521368901316.847168,3521368901320.936523,6910568,2391772,0.004846,0.010644,70048092,46804725,0,0,59049,0,1,1 +1774137189.313598,0.65,4,3992.50,54.34,1553.40,2127.41,0.00,0.000000,0.036225,6910568,2391813,0.004335,0.008559,70048206,46804891,0,0,59052,0,1,1 +1774137194.317410,0.80,4,3992.50,54.34,1553.32,2127.48,0.00,3515757133042.994629,3515757072292.729492,70,0,0.005019,0.010283,70048341,46805091,0,0,59054,0,1,1 +1774137199.314475,0.85,4,3992.50,54.49,1543.80,2133.34,0.00,0.127028,0.000000,199,0,0.005253,0.010826,70048484,46805302,0,0,59057,0,1,1 +1774137204.317342,0.75,4,3992.50,54.43,1546.22,2130.94,0.00,3516420224000.172852,0.000000,21,0,0.004558,0.008950,70048607,46805480,0,0,59059,0,1,1 +1774137209.312913,0.55,4,3992.50,54.21,1554.88,2122.29,0.00,0.000000,0.000000,21,0,0.005039,0.010310,70048743,46805681,0,0,59062,0,1,1 +1774137214.312821,0.55,4,3992.50,54.21,1554.89,2122.27,0.00,1.538407,0.028321,237,492,0.002925,0.004575,70048812,46805772,0,0,59064,0,1,1 +1774137219.313664,0.80,4,3992.50,53.82,1569.79,2107.34,0.00,3517844135538.851074,3517844135540.361328,21,0,0.006143,0.010906,70048970,46805986,0,0,59067,0,1,1 +1774137224.312834,0.65,4,3992.50,53.82,1569.84,2107.32,0.00,0.000000,0.000000,21,0,0.005023,0.010280,70049105,46806185,0,0,59069,0,1,1 +1774137229.317604,1.05,4,3992.50,54.02,1561.44,2115.07,0.00,83709.864882,144448.721861,6910576,2392103,0.004332,0.008392,70049219,46806350,0,0,59072,0,1,1 +1774137234.316921,0.80,4,3992.50,53.93,1565.07,2111.44,0.00,4.109838,0.065634,6911350,2392634,0.005056,0.010300,70049357,46806551,0,0,59074,0,1,1 +1774137239.315652,0.55,4,3992.50,53.89,1566.50,2110.02,0.00,3519330249458.208496,3519330188650.012695,21,0,0.003489,0.007518,70049452,46806696,0,0,59077,0,1,1 +1774137244.312917,0.55,4,3992.50,53.89,1566.52,2110.00,0.00,83839.702595,144665.788733,6911350,2392694,0.003017,0.005078,70049528,46806798,0,0,59079,0,1,1 +1774137249.316907,0.65,4,3992.50,53.82,1569.28,2107.24,0.00,3515631981237.911133,3515631920493.390625,199,0,0.005049,0.010305,70049665,46807000,0,0,59082,0,1,1 +1774137254.316527,0.80,4,3992.50,53.60,1578.02,2098.50,0.00,3518704844388.500977,0.000000,70,0,0.006087,0.011311,70049822,46807215,0,0,59084,0,1,1 +1774137259.313417,1.00,4,3992.50,53.92,1562.71,2110.92,0.00,0.127032,0.000000,199,0,0.004326,0.008430,70049935,46807382,0,0,59087,0,1,1 +1774137264.316786,0.75,4,3992.50,53.74,1569.19,2103.91,0.00,1.830603,0.000195,238,2,0.005032,0.010315,70050071,46807584,0,0,59089,0,1,1 +1774137269.317683,0.75,4,3992.50,53.75,1568.71,2104.38,0.00,3517806127831.062012,0.028120,237,492,0.005017,0.010307,70050206,46807786,0,0,59092,0,1,1 +1774137274.316934,11.02,4,3992.50,53.96,1557.76,2112.64,0.00,3518964574988.727539,3518964574990.237793,21,0,0.028783,40.075117,70052125,46812355,0,0,59094,0,1,1 +1774137279.315997,1.00,4,3992.50,53.96,1557.63,2112.75,0.00,0.000000,0.000000,21,0,0.004388,0.011341,70052254,46812569,0,0,59097,0,1,1 +1774137284.312903,0.75,4,3992.50,53.93,1558.71,2111.67,0.00,0.175108,0.000000,199,0,0.003219,0.008909,70052353,46812740,0,0,59099,0,1,1 +1774137289.312831,1.20,4,3992.50,54.34,1542.80,2127.59,0.00,83794.888229,144621.159699,6911351,2393194,0.003433,0.009534,70052458,46812923,0,0,59102,0,1,1 +1774137294.317642,0.80,4,3992.50,54.26,1546.05,2124.33,0.00,3515054315554.822266,3515054254786.583984,237,492,0.002731,0.007616,70052541,46813069,0,0,59104,0,1,1 +1774137299.316782,0.70,4,3992.50,54.21,1547.95,2122.43,0.00,3519042666506.758789,3519042666508.221191,70,0,0.003480,0.009575,70052650,46813255,0,0,59107,0,1,1 +1774137304.317598,0.80,4,3992.50,54.18,1549.01,2121.37,0.00,83776.044444,144603.514769,6910583,2392807,0.003420,0.009523,70052754,46813437,0,0,59109,0,1,1 +1774137309.313222,0.70,4,3992.50,54.07,1553.47,2116.91,0.00,3521519288366.531250,3521519227475.893555,21,0,0.002774,0.007671,70052840,46813586,0,0,59112,0,1,1 +1774137314.317645,0.75,4,3992.50,54.08,1553.01,2117.36,0.00,0.000000,0.000000,21,0,0.003481,0.009578,70052949,46813772,0,0,59114,0,1,1 +1774137319.315178,1.15,4,3992.50,54.26,1545.49,2124.46,0.00,0.000000,0.000000,21,0,0.003554,0.010302,70053063,46813967,0,0,59117,0,1,1 +1774137324.317188,0.65,4,3992.50,54.17,1548.93,2120.87,0.00,0.048028,0.000000,70,0,0.002870,0.007721,70053155,46814121,0,0,59119,0,1,1 +1774137329.317494,0.70,4,3992.50,54.11,1551.25,2118.58,0.00,1.958669,0.000195,238,2,0.003433,0.009533,70053260,46814304,0,0,59122,0,1,1 +1774137334.316919,0.65,4,3992.50,54.12,1550.82,2119.02,0.00,3518841834169.789062,3518841834171.795898,21,0,0.003442,0.009533,70053366,46814487,0,0,59124,0,1,1 +1774137339.316998,0.65,4,3992.50,54.12,1550.82,2119.01,0.00,0.000000,0.000000,21,0,0.002518,0.006999,70053443,46814622,0,0,59127,0,1,1 +1774137344.316468,37.37,4,3992.50,60.95,1291.81,2386.38,0.00,0.175019,0.000000,199,0,86.738734,0.050459,70062677,46817809,0,0,59129,0,1,1 +1774137349.312807,28.92,4,3992.50,61.04,1291.42,2389.69,0.00,83850.974162,144733.385986,6910583,2393059,118.251023,0.048748,70074704,46821228,0,0,59132,0,1,1 +1774137354.317294,28.36,4,3992.50,60.59,1308.89,2372.20,0.00,3515282051183.825195,3515281990398.713867,238,2,118.657974,0.034764,70086875,46823705,0,0,59134,0,1,1 +1774137359.317214,28.14,4,3992.50,60.74,1303.09,2378.00,0.00,3518493780631.644043,3518493780633.602539,70,0,119.566049,0.042824,70099079,46826887,0,0,59137,0,1,1 +1774137364.312865,28.23,4,3992.50,60.58,1309.22,2371.85,0.00,3521500401502.000000,0.000000,21,0,119.068075,0.050237,70111200,46830425,0,0,59139,0,1,1 +1774137369.316807,28.18,4,3992.50,60.39,1316.53,2364.54,0.00,2.005255,0.000195,238,2,119.269225,0.046499,70123282,46833882,0,0,59142,0,1,1 +1774137374.314511,28.92,4,3992.50,60.53,1311.11,2369.94,0.00,3520053868949.660645,3520053868951.668457,21,0,120.040407,0.078347,70135919,46839901,0,0,59144,0,1,1 +1774137379.317082,28.59,4,3992.50,60.38,1317.07,2364.01,0.00,1.537588,0.028306,237,492,118.321748,0.084707,70148338,46846228,0,0,59147,0,1,1 +1774137384.316925,14.97,4,3992.50,55.90,1502.41,2188.69,0.00,83795.040057,144632.305156,6911365,2393685,105.559254,0.059606,70159268,46850536,0,0,59149,0,1,1 +1774137389.314435,0.95,4,3992.50,54.82,1544.82,2146.27,0.00,3520190306590.329102,3520190245724.665039,237,492,0.004078,0.006795,70159367,46850668,0,0,59152,0,1,1 +1774137394.316762,15.10,4,3992.50,55.86,1489.96,2187.14,0.00,3516800295193.590332,3516800295195.051758,70,0,18.274401,0.092360,70165503,46855306,0,0,59154,0,1,1 +1774137399.313119,12.38,4,3992.50,54.92,1526.58,2150.43,0.00,0.000000,0.000000,70,0,21.996205,0.102742,70172770,46860753,0,0,59157,0,1,1 +1774137404.316180,0.70,4,3992.50,54.72,1534.46,2142.58,0.00,3516284773529.363281,0.000000,21,0,0.004321,0.008410,70172883,46860919,0,0,59159,0,1,1 +1774137409.314506,1.05,4,3992.50,55.23,1514.91,2162.22,0.00,0.000000,0.000000,21,0,0.004242,0.009921,70173004,46861111,0,0,59162,0,1,1 +1774137414.313069,0.80,4,3992.50,54.81,1530.97,2146.08,0.00,83814.051104,144670.359938,6910635,2394340,0.004795,0.009622,70173132,46861296,0,0,59164,0,1,1 +1774137419.315404,19.88,4,3992.50,55.57,1514.02,2175.64,0.00,3516794573131.991211,3516794512319.566895,238,2,0.064378,84.106531,70177824,46870746,0,0,59167,0,1,1 +1774137424.315090,28.43,4,3992.50,56.09,1486.15,2196.07,0.00,83793.224140,144808.222593,6910635,2395769,0.034834,120.985288,70180326,46883008,0,0,59169,0,1,1 +1774137429.316407,3.11,4,3992.50,54.95,1530.42,2151.30,0.00,3517510825199.578613,3517510764206.434570,70,0,0.009164,0.014422,70180544,46883291,0,0,59172,0,1,1 +1774137434.316535,13.46,4,3992.50,54.68,1541.03,2140.71,0.00,0.126950,0.000000,199,0,40.065656,0.032938,70185089,46885223,0,0,59174,0,1,1 +1774137439.317073,1.15,4,3992.50,54.76,1533.05,2143.95,0.00,3518058692504.957520,0.000000,21,0,0.005022,0.010287,70185224,46885423,0,0,59177,0,1,1 +1774137444.317510,0.75,4,3992.50,54.71,1534.81,2142.20,0.00,0.000000,0.000000,21,0,0.004310,0.008376,70185336,46885586,0,0,59179,0,1,1 +1774137449.312825,0.70,4,3992.50,54.62,1538.60,2138.40,0.00,0.000000,0.000000,21,0,0.005027,0.010310,70185471,46885787,0,0,59182,0,1,1 +1774137454.312848,0.75,4,3992.50,54.64,1537.88,2139.13,0.00,0.174999,0.000000,199,0,0.005609,0.012044,70185617,46886013,0,0,59184,0,1,1 +1774137459.315567,0.80,4,3992.50,54.79,1531.71,2145.29,0.00,1.362638,0.028305,237,492,0.004354,0.008390,70185733,46886178,0,0,59187,0,1,1 +1774137464.312860,0.70,4,3992.50,54.80,1531.52,2145.49,0.00,83850.895706,144913.328213,6910968,2396436,0.005038,0.010327,70185869,46886380,0,0,59189,0,1,1 +1774137469.312908,1.05,4,3992.50,55.17,1527.18,2159.96,0.00,3518402788279.854980,3518402727252.418457,199,0,0.005022,0.010300,70186004,46886581,0,0,59192,0,1,1 +1774137474.312907,1.50,4,3992.50,54.95,1535.85,2151.36,0.00,1.831837,0.000195,238,2,0.004398,0.008440,70186122,46886749,0,0,59194,0,1,1 +1774137479.313612,0.70,4,3992.50,54.95,1535.63,2151.58,0.00,3517940883709.555664,3517940883711.562500,21,0,0.005080,0.009360,70186244,46886919,0,0,59197,0,1,1 +1774137484.316832,0.55,4,3992.50,54.95,1535.65,2151.56,0.00,0.048016,0.000000,70,0,0.004333,0.008372,70186358,46887082,0,0,59199,0,1,1 +1774137489.313564,0.60,4,3992.50,54.95,1535.67,2151.54,0.00,1.960070,0.000195,238,2,0.005034,0.010315,70186494,46887284,0,0,59202,0,1,1 +1774137494.317156,2.46,4,3992.50,55.08,1530.82,2156.38,0.00,3515911588950.386230,3515911588952.391602,21,0,0.005019,0.010283,70186629,46887484,0,0,59204,0,1,1 +1774137499.317194,4.91,4,3992.50,55.32,1518.31,2165.92,0.00,83806.377600,144834.106319,6910968,2396744,0.019490,19.241767,70187786,46889941,0,0,59207,0,1,1 +1774137504.315585,6.58,4,3992.50,54.55,1547.59,2135.88,0.00,3519570138055.921875,3519570077008.018555,70,0,0.014155,20.848076,70188662,46892344,0,0,59209,0,1,1 +1774137509.314312,0.80,4,3992.50,54.52,1549.08,2134.39,0.00,0.000000,0.000000,70,0,0.002760,0.007635,70188747,46892491,0,0,59212,0,1,1 +1774137514.315195,0.65,4,3992.50,54.55,1547.62,2135.85,0.00,83796.288899,144841.793102,6911742,2397520,0.003433,0.009510,70188852,46892672,0,0,59214,0,1,1 +1774137519.315247,0.75,4,3992.50,54.56,1547.41,2136.06,0.00,3518400840509.412598,3518400779452.293457,237,492,0.003856,0.008897,70188958,46892837,0,0,59217,0,1,1 +1774137524.312836,0.70,4,3992.50,55.00,1529.90,2153.55,0.00,83850.021337,144937.228668,6911742,2397526,0.003435,0.009529,70189063,46893019,0,0,59219,0,1,1 +1774137529.313807,1.00,4,3992.50,55.20,1527.34,2161.16,0.00,3517754188273.950195,3517754127229.552734,21,0,0.003445,0.009532,70189169,46893202,0,0,59222,0,1,1 +1774137534.314862,0.70,4,3992.50,55.02,1533.50,2153.99,0.00,1.538054,0.028314,237,492,0.002746,0.007622,70189253,46893348,0,0,59224,0,1,1 +1774137539.313775,0.65,4,3992.50,55.03,1532.77,2154.72,0.00,3519201843462.199707,3519201843463.710449,21,0,0.003492,0.009606,70189363,46893536,0,0,59227,0,1,1 +1774137544.313504,0.70,4,3992.50,55.04,1532.55,2154.94,0.00,83815.695095,144883.437675,6911742,2397650,0.002784,0.007717,70189450,46893688,0,0,59229,0,1,1 +1774137549.316883,0.60,4,3992.50,54.98,1534.76,2152.73,0.00,3516060785547.186035,3516060724522.001465,238,2,0.003574,0.009653,70189564,46893881,0,0,59232,0,1,1 +1774137554.317618,0.90,4,3992.50,55.03,1533.07,2154.42,0.00,3517919668018.480957,3517919668020.487793,21,0,0.004497,0.009932,70189691,46894077,0,0,59234,0,1,1 +1774137559.312898,1.01,4,3992.50,55.20,1526.30,2161.19,0.00,2.008732,0.000195,238,2,0.002749,0.007640,70189775,46894224,0,0,59237,0,1,1 +1774137564.312911,0.65,4,3992.50,55.14,1528.68,2158.80,0.00,3518428286850.743164,3518428286852.750000,21,0,0.003484,0.009586,70189884,46894410,0,0,59239,0,1,1 +1774137569.317396,39.22,4,3992.50,60.79,1314.24,2380.08,0.00,83731.915185,144745.791160,6910968,2397273,91.055436,0.058295,70199656,46898248,0,0,59242,0,1,1 +1774137574.316415,28.81,4,3992.50,61.06,1305.52,2390.67,0.00,3519128022110.072754,3519127961027.463867,238,2,119.391505,0.027867,70212074,46900096,0,0,59244,0,1,1 +1774137579.316703,27.79,4,3992.50,60.72,1318.75,2377.50,0.00,83800.189702,144867.425926,6910968,2397378,118.958057,0.047776,70224226,46903564,0,0,59247,0,1,1 +1774137584.316933,28.39,4,3992.50,61.11,1303.51,2392.75,0.00,3518275583452.805176,3518275522386.810059,70,0,119.358172,0.021580,70236416,46905135,0,0,59249,0,1,1 +1774137589.314337,28.79,4,3992.50,60.92,1310.56,2385.22,0.00,1.959806,0.000195,238,2,119.829387,0.023756,70248785,46906602,0,0,59252,0,1,1 +1774137594.313307,28.01,4,3992.50,60.48,1327.79,2367.99,0.00,3519162757482.408203,3519162757484.240723,199,0,118.588800,0.022275,70260916,46908054,0,0,59254,0,1,1 +1774137599.317211,27.97,4,3992.50,60.66,1320.70,2375.06,0.00,1.830407,0.000195,238,2,120.073361,0.031718,70273092,46910192,0,0,59257,0,1,1 +1774137604.316506,30.51,4,3992.50,60.91,1311.03,2384.57,0.00,83832.413980,144896.661299,6915197,2398005,118.384775,0.032892,70285238,46912363,0,0,59259,0,1,1 +1774137609.313921,30.94,4,3992.50,54.86,1547.98,2147.70,0.00,3520256758453.517578,3520256697366.809082,237,492,99.793045,0.026653,70295470,46913910,0,0,59262,0,1,1 +1774137614.316955,17.50,4,3992.50,54.64,1556.29,2139.39,0.00,83918.095027,144801.702959,6920592,2397770,0.004981,0.006871,70295588,46914055,0,0,59264,0,1,1 +1774137619.316609,12.21,4,3992.50,55.36,1520.38,2167.52,0.00,3518680486707.462402,3518680425784.161621,70,0,14.100183,0.072444,70300300,46917539,0,0,59267,0,1,1 +1774137624.312953,17.08,4,3992.50,54.75,1544.33,2143.52,0.00,3521012129278.508301,0.000000,21,0,26.184284,0.119464,70308930,46924016,0,0,59269,0,1,1 +1774137629.317603,0.75,4,3992.50,54.66,1547.84,2140.03,0.00,0.174837,0.000000,199,0,0.003714,0.008155,70309032,46924174,0,0,59272,0,1,1 +1774137634.316559,18.67,4,3992.50,55.16,1526.14,2159.80,0.00,3519171663528.375000,0.000000,21,0,0.050800,74.334236,70312650,46932349,0,0,59274,0,1,1 +1774137639.313777,29.25,4,3992.50,54.86,1531.20,2148.02,0.00,0.048074,0.000000,70,0,0.065213,119.637532,70317576,46944733,0,0,59277,0,1,1 +1774137644.312848,4.52,4,3992.50,54.17,1557.62,2120.71,0.00,1.490609,0.028326,237,492,0.012713,11.228084,70318151,46946109,0,0,59279,0,1,1 +1774137649.312816,14.82,4,3992.50,55.67,1496.99,2179.59,0.00,83985.992161,145097.086230,6920987,2400646,40.064208,0.032474,70322595,46948116,0,0,59282,0,1,1 +1774137654.317215,1.15,4,3992.50,55.00,1520.98,2153.37,0.00,3515344119143.030762,3515344058085.555664,238,2,0.007509,0.012392,70322769,46948336,0,0,59284,0,1,1 +1774137659.315206,1.00,4,3992.50,54.80,1528.98,2145.40,0.00,0.000000,0.000000,238,2,0.005150,0.010429,70322914,46948545,0,0,59287,0,1,1 +1774137664.312909,0.85,4,3992.50,54.74,1531.32,2143.04,0.00,3520054094336.812012,3520054094338.645020,199,0,0.005012,0.010295,70323048,46948745,0,0,59289,0,1,1 +1774137669.312835,0.90,4,3992.50,54.74,1531.35,2143.03,0.00,3518489233968.536621,0.000000,21,0,0.004348,0.008387,70323163,46948909,0,0,59292,0,1,1 +1774137674.312904,1.20,4,3992.50,54.53,1539.56,2134.82,0.00,2.006808,0.000195,238,2,0.005010,0.010290,70323297,46949109,0,0,59294,0,1,1 +1774137679.315150,1.35,4,3992.50,54.94,1523.43,2150.95,0.00,83947.270497,145031.406330,6920987,2401022,0.005058,0.010327,70323435,46949312,0,0,59297,0,1,1 +1774137684.317732,1.10,4,3992.50,54.60,1536.84,2137.53,0.00,3516621304122.841309,3516621243044.634277,199,0,0.004321,0.008385,70323548,46949476,0,0,59299,0,1,1 +1774137689.312979,0.95,4,3992.50,54.62,1535.91,2138.45,0.00,1.364676,0.028347,237,492,0.005129,0.010381,70323690,46949683,0,0,59302,0,1,1 +1774137694.316180,0.80,4,3992.50,54.61,1536.34,2138.03,0.00,0.000000,0.000000,237,492,0.005978,0.010953,70323830,46949886,0,0,59304,0,1,1 +1774137699.317594,0.85,4,3992.50,54.57,1537.88,2136.48,0.00,83961.698308,145055.616951,6920987,2401133,0.004397,0.008437,70323948,46950054,0,0,59307,0,1,1 +1774137704.312907,0.85,4,3992.50,54.65,1534.75,2139.62,0.00,3521738905145.862793,3521738843978.824219,21,0,0.005052,0.010300,70324085,46950254,0,0,59309,0,1,1 +1774137709.312916,1.30,4,3992.50,54.99,1528.90,2152.95,0.00,0.175000,0.000000,199,0,0.005022,0.010333,70324220,46950456,0,0,59312,0,1,1 +1774137714.313785,1.60,4,3992.50,54.78,1536.83,2144.89,0.00,1.363142,0.028315,237,492,0.004335,0.008388,70324334,46950620,0,0,59314,0,1,1 +1774137719.316926,0.90,4,3992.50,54.79,1536.38,2145.34,0.00,0.468163,3516227800506.389160,238,2,0.005007,0.010937,70324468,46950825,0,0,59317,0,1,1 +1774137724.316644,0.90,4,3992.50,54.80,1536.32,2145.39,0.00,83989.721131,145105.014105,6920987,2401289,0.004845,0.009028,70324582,46950988,0,0,59319,0,1,1 +1774137729.317340,11.69,4,3992.50,54.58,1544.79,2136.87,0.00,3517947335162.063965,3517947274059.223633,237,492,0.026943,40.063384,70326323,46955487,0,0,59322,0,1,1 +1774137734.313696,0.80,4,3992.50,54.61,1543.40,2138.26,0.00,3521003876346.407227,3521003876347.870117,70,0,0.003436,0.009531,70326428,46955669,0,0,59324,0,1,1 +1774137739.317489,1.55,4,3992.50,55.13,1533.45,2158.59,0.00,0.000000,0.000000,70,0,0.003464,0.009535,70326536,46955853,0,0,59327,0,1,1 +1774137744.313732,0.80,4,3992.50,54.99,1539.19,2152.99,0.00,0.000000,0.000000,70,0,0.002749,0.007629,70326620,46955999,0,0,59329,0,1,1 +1774137749.317726,0.95,4,3992.50,55.01,1538.46,2153.72,0.00,1.957225,0.000195,238,2,0.003430,0.009526,70326725,46956182,0,0,59332,0,1,1 +1774137754.316758,1.00,4,3992.50,55.00,1538.63,2153.55,0.00,84001.248526,145157.272953,6920990,2401677,0.004071,0.010636,70326845,46956386,0,0,59334,0,1,1 +1774137759.314596,0.85,4,3992.50,55.01,1538.40,2153.78,0.00,3519959348212.322754,3519959287043.518066,199,0,0.002773,0.007668,70326931,46956535,0,0,59337,0,1,1 +1774137764.317346,0.90,4,3992.50,54.95,1540.77,2151.41,0.00,3516503276257.717773,0.000000,21,0,0.003494,0.009581,70327041,46956721,0,0,59339,0,1,1 +1774137769.317728,1.61,4,3992.50,54.91,1535.66,2149.71,0.00,2.006683,0.000195,238,2,0.004566,0.010081,70327170,46956920,0,0,59342,0,1,1 +1774137774.317759,0.75,4,3992.50,54.61,1547.18,2138.21,0.00,3518414947166.139160,3518414947168.145996,21,0,0.002921,0.007786,70327266,46957078,0,0,59344,0,1,1 +1774137779.317621,1.05,4,3992.50,54.49,1552.10,2133.29,0.00,83989.307448,145141.295375,6920990,2401816,0.003458,0.009534,70327373,46957261,0,0,59347,0,1,1 +1774137784.317420,0.80,4,3992.50,54.49,1551.87,2133.52,0.00,3518579245941.854004,3518579184788.907227,199,0,0.003433,0.010168,70327478,46957447,0,0,59349,0,1,1 +1774137789.317568,1.25,4,3992.50,54.42,1554.79,2130.60,0.00,3518333035967.543945,0.000000,70,0,0.004138,0.008344,70327586,46957611,0,0,59352,0,1,1 +1774137794.312822,41.26,4,3992.50,60.88,1310.41,2383.61,0.00,0.127074,0.000000,199,0,92.222067,0.053769,70337334,46961206,0,0,59354,0,1,1 +1774137799.313255,29.04,4,3992.50,61.09,1302.29,2391.80,0.00,3518133054318.875000,0.000000,70,0,120.158656,0.037075,70349773,46963728,0,0,59357,0,1,1 +1774137804.316488,27.98,4,3992.50,60.90,1309.70,2384.40,0.00,3516163265311.980957,0.000000,21,0,119.487259,0.020883,70362048,46965296,0,0,59359,0,1,1 +1774137809.313393,28.59,4,3992.50,60.84,1309.86,2381.87,0.00,84043.125886,145227.535991,6921764,2402533,118.839419,0.026200,70374244,46967102,0,0,59362,0,1,1 +1774137814.317207,28.18,4,3992.50,60.71,1314.86,2376.88,0.00,3515755132495.751465,3515755071395.651855,199,0,120.081901,0.043117,70386615,46970191,0,0,59364,0,1,1 +1774137819.317009,28.16,4,3992.50,60.94,1305.97,2385.81,0.00,0.000000,0.000000,199,0,119.178042,0.042548,70398949,46972902,0,0,59367,0,1,1 +1774137824.316819,28.22,4,3992.50,60.90,1307.52,2384.21,0.00,83994.148588,145143.246925,6921773,2402579,119.167278,0.018051,70411048,46974192,0,0,59369,0,1,1 +1774137829.318057,28.36,4,3992.50,60.85,1309.43,2382.25,0.00,3517566119241.425293,3517566058108.453125,237,492,119.739348,0.035420,70423325,46976791,0,0,59372,0,1,1 +1774137834.315894,13.35,4,3992.50,54.90,1537.47,2149.49,0.00,3519960096385.674316,3519960096387.136719,70,0,96.584107,0.040359,70433346,46979440,0,0,59374,0,1,1 +1774137839.315320,1.25,4,3992.50,54.41,1556.70,2130.26,0.00,3518840807959.766113,0.000000,21,0,0.005699,0.010401,70433494,46979653,0,0,59377,0,1,1 +1774137844.312828,11.97,4,3992.50,55.11,1529.21,2157.70,0.00,0.000000,0.000000,21,0,12.142611,0.072406,70437862,46982947,0,0,59379,0,1,1 +1774137849.312887,16.67,4,3992.50,54.35,1558.79,2128.11,0.00,83986.182598,145136.717704,6921019,2403202,28.126084,0.122407,70446959,46989726,0,0,59382,0,1,1 +1774137854.317427,0.90,4,3992.50,54.37,1558.22,2128.68,0.00,3515244904282.581055,3515244843186.802246,21,0,0.006094,0.010674,70447117,46989938,0,0,59384,0,1,1 +1774137859.317734,1.20,4,3992.50,54.87,1545.32,2148.23,0.00,2.006713,0.000195,238,2,0.004577,0.009020,70447239,46990114,0,0,59387,0,1,1 +1774137864.312840,1.05,4,3992.50,54.68,1552.85,2140.71,0.00,3521884511148.425781,3521884511150.434570,21,0,0.004798,0.009679,70447367,46990303,0,0,59389,0,1,1 +1774137869.316997,1.15,4,3992.50,54.55,1557.65,2135.90,0.00,0.048007,0.000000,70,0,0.005018,0.010292,70447502,46990504,0,0,59392,0,1,1 +1774137874.312838,15.60,4,3992.50,55.18,1532.75,2160.34,0.00,1.491573,0.028344,237,492,0.028390,63.153778,70449359,46997426,0,0,59394,0,1,1 +1774137879.312827,29.15,4,3992.50,55.12,1527.59,2158.03,0.00,3518445079643.353027,3518445079644.814941,70,0,0.023883,120.169900,70451066,47009871,0,0,59397,0,1,1 +1774137884.312842,7.43,4,3992.50,54.54,1548.88,2135.24,0.00,83986.869639,145313.485656,6921022,2404796,0.012000,21.839682,70451614,47012293,0,0,59399,0,1,1 +1774137889.317600,13.70,4,3992.50,55.60,1509.38,2177.03,0.00,3515091941252.918457,3515091879982.460449,238,2,40.027598,0.032513,70456056,47014127,0,0,59402,0,1,1 +1774137894.312726,1.71,4,3992.50,55.06,1530.54,2155.76,0.00,3521870797647.930664,3521870797649.939453,21,0,0.004656,0.008423,70456171,47014293,0,0,59404,0,1,1 +1774137899.314976,1.00,4,3992.50,54.55,1550.37,2135.89,0.00,0.000000,0.000000,21,0,0.005045,0.010314,70456308,47014495,0,0,59407,0,1,1 +1774137904.312865,0.85,4,3992.50,54.52,1551.60,2134.70,0.00,84038.295304,145406.102883,6921354,2405230,0.005037,0.010295,70456444,47014695,0,0,59409,0,1,1 +1774137909.317151,0.85,4,3992.50,54.54,1551.05,2135.24,0.00,3515423170498.936523,3515423109208.077637,237,492,0.004332,0.008380,70456558,47014859,0,0,59412,0,1,1 +1774137914.317707,0.85,4,3992.50,54.50,1552.48,2133.82,0.00,3518046135133.578613,3518046135135.088867,21,0,0.004335,0.009033,70456672,47015027,0,0,59414,0,1,1 +1774137919.317760,1.35,4,3992.50,54.37,1546.76,2128.88,0.00,1.538363,0.028320,237,492,0.005010,0.010319,70456806,47015229,0,0,59417,0,1,1 +1774137924.317432,0.95,4,3992.50,54.35,1547.55,2128.04,0.00,0.000000,0.000000,237,492,0.004323,0.008378,70456919,47015392,0,0,59419,0,1,1 +1774137929.313409,0.80,4,3992.50,54.36,1547.24,2128.34,0.00,3521270480859.444824,3521270480860.908203,70,0,0.005107,0.010384,70457059,47015599,0,0,59422,0,1,1 +1774137934.317186,0.85,4,3992.50,54.40,1545.53,2130.04,0.00,3515781122030.517578,0.000000,21,0,0.004950,0.010258,70457197,47015797,0,0,59424,0,1,1 +1774137939.315613,0.80,4,3992.50,54.43,1544.57,2131.01,0.00,0.175055,0.000000,199,0,0.004493,0.008455,70457314,47015966,0,0,59427,0,1,1 +1774137944.314886,0.85,4,3992.50,54.43,1544.58,2130.99,0.00,84014.903212,145366.103513,6921380,2405443,0.005044,0.010300,70457451,47016167,0,0,59429,0,1,1 +1774137949.317268,1.30,4,3992.50,54.32,1547.36,2126.76,0.00,3516761734666.479980,3516761673353.587891,21,0,0.003715,0.008158,70457553,47016325,0,0,59432,0,1,1 +1774137954.312836,11.27,4,3992.50,54.37,1545.07,2128.65,0.00,0.048089,0.000000,70,0,0.025362,40.108814,70459130,47020960,0,0,59434,0,1,1 +1774137959.317212,0.95,4,3992.50,54.25,1549.54,2124.19,0.00,0.126842,0.000000,199,0,0.003443,0.009526,70459236,47021143,0,0,59437,0,1,1 +1774137964.312826,0.95,4,3992.50,54.37,1544.80,2128.88,0.00,84076.429926,145504.757579,6921380,2405749,0.002749,0.007630,70459320,47021289,0,0,59439,0,1,1 +1774137969.315641,0.85,4,3992.50,54.37,1544.85,2128.87,0.00,3516457757930.474609,3516457696589.221191,237,492,0.003431,0.009529,70459425,47021472,0,0,59442,0,1,1 +1774137974.316980,0.75,4,3992.50,54.39,1544.12,2129.61,0.00,3517494999304.714844,3517494999306.176270,70,0,0.003432,0.009522,70459530,47021654,0,0,59444,0,1,1 +1774137979.317634,1.45,4,3992.50,54.72,1531.29,2142.58,0.00,0.126937,0.000000,199,0,0.002721,0.008115,70459612,47021804,0,0,59447,0,1,1 +1774137984.316831,12.89,4,3992.50,92.91,82.01,3637.71,0.00,84031.929838,145408.687616,6922403,2405938,0.003016,0.008432,70459706,47021964,0,0,59449,0,1,1 +1774137989.316962,30.20,4,3992.50,61.75,1315.90,2417.63,0.00,3518344938597.844238,3518344877232.724121,21,0,0.003267,0.008937,70459809,47022137,0,0,59452,0,1,1 +1774137994.323581,29.12,4,3992.50,95.45,16.51,3736.95,0.00,0.000000,0.000000,21,0,0.003716,0.008382,70459899,47022293,0,0,59454,0,1,1 +1774137999.313921,29.31,4,3992.50,78.47,659.78,3072.32,0.00,0.175339,0.000000,199,0,0.003669,0.009762,70460020,47022492,0,0,59457,0,1,1 +1774138004.317810,28.83,4,3992.50,65.36,1173.83,2559.12,0.00,1.362320,0.028298,237,492,0.003229,0.008871,70460120,47022661,0,0,59459,0,1,1 +1774138009.313729,29.06,4,3992.50,64.03,1232.27,2506.84,0.00,3521311235502.951660,3521311235504.415039,70,0,0.002993,0.008311,70460212,47022823,0,0,59462,0,1,1 +1774138014.313750,23.36,4,3992.50,54.53,1595.09,2135.09,0.00,1.958781,0.000195,238,2,0.003476,0.009549,70460320,47023007,0,0,59464,0,1,1 +1774138019.316455,32.86,4,3992.50,61.81,1258.42,2420.09,0.00,3516535032796.572266,0.028110,237,492,85.480051,0.056687,70469365,47026810,0,0,59467,0,1,1 +1774138024.317067,29.23,4,3992.50,60.85,1306.11,2382.38,0.00,3518006241859.588867,3518006241860.923828,199,0,122.154486,0.044325,70481805,47029938,0,0,59469,0,1,1 +1774138029.312838,28.18,4,3992.50,60.90,1304.27,2384.19,0.00,1.833387,0.000195,238,2,120.267191,0.040395,70494060,47032865,0,0,59472,0,1,1 +1774138034.313015,28.29,4,3992.50,60.83,1307.01,2381.46,0.00,3518312440374.493164,3518312440376.451660,70,0,120.160360,0.045177,70506269,47036270,0,0,59474,0,1,1 +1774138039.315481,28.71,4,3992.50,60.76,1309.40,2378.82,0.00,1.489597,0.028306,237,492,120.104996,0.042796,70518465,47039425,0,0,59477,0,1,1 +1774138044.317184,28.40,4,3992.50,60.98,1301.07,2387.43,0.00,84855.438478,145353.180421,6978735,2420910,119.321027,0.046682,70530455,47042989,0,0,59479,0,1,1 +1774138049.317464,29.20,4,3992.50,60.96,1301.63,2386.78,0.00,5.398037,0.218738,6979589,2421565,118.956446,0.053919,70542484,47046815,0,0,59482,0,1,1 +1774138054.312829,29.29,4,3992.50,60.79,1307.79,2379.96,0.00,3521702161344.475586,3521702161348.474121,6978821,2421085,120.277476,0.061013,70554571,47051110,0,0,59484,0,1,1 +1774138059.312833,13.25,4,3992.50,55.38,1519.34,2168.19,0.00,3518434236066.639648,3518434175549.529785,237,492,98.737301,0.047072,70564612,47054418,0,0,59487,0,1,1 +1774138064.317065,17.26,4,3992.50,55.50,1514.49,2172.86,0.00,3515461299176.498047,3515461299178.007324,21,0,26.149801,0.126698,70573458,47061070,0,0,59489,0,1,1 +1774138069.313504,6.99,4,3992.50,55.35,1520.41,2166.91,0.00,0.000000,0.000000,21,0,10.073186,0.047474,70576858,47063553,0,0,59492,0,1,1 +1774138074.316886,13.54,4,3992.50,86.59,334.33,3390.09,0.00,1.537339,0.028301,237,492,4.029450,0.025839,70578274,47064654,0,0,59494,0,1,1 +1774138079.318268,30.22,4,3992.50,65.83,1157.72,2577.43,0.00,3517464938659.543945,3517464938661.053711,21,0,0.004367,0.008473,70578390,47064825,0,0,59497,0,1,1 +1774138084.313508,30.32,4,3992.50,71.95,935.05,2817.06,0.00,85443.266454,145550.180363,7009469,2429156,0.005059,0.010363,70578527,47065030,0,0,59499,0,1,1 +1774138089.318031,29.77,4,3992.50,93.28,81.57,3651.93,0.00,3515256828485.471680,3515256768490.064453,21,0,0.003733,0.008205,70578630,47065192,0,0,59502,0,1,1 +1774138094.316742,55.25,4,3992.50,95.29,16.43,3730.68,0.00,85837.161180,145527.300572,7040897,2435863,1.519711,80.414042,70698963,47192332,0,0,59504,0,1,1 +1774138099.313559,71.63,4,3992.50,79.14,611.88,3098.37,0.00,3520678398202.681152,3520678338489.866699,70,0,2.335515,123.061691,70884067,47387954,0,0,59507,0,1,1 +1774138104.318392,24.82,4,3992.50,54.68,1562.83,2140.92,0.00,1.956898,0.000195,238,2,0.113950,5.670106,70892667,47397096,0,0,59509,0,1,1 +1774138109.317407,11.30,4,3992.50,55.89,1500.23,2188.25,0.00,3519129911599.227051,0.028131,237,492,40.074104,0.033359,70897119,47398834,0,0,59512,0,1,1 +1774138114.317643,0.75,4,3992.50,54.90,1538.95,2149.54,0.00,3518271140150.958496,3518271140152.468750,21,0,0.004997,0.010438,70897252,47399034,0,0,59514,0,1,1 +1774138119.316403,0.75,4,3992.50,54.43,1557.63,2130.89,0.00,2.007334,0.000195,238,2,0.006385,0.010948,70897401,47399231,0,0,59517,0,1,1 +1774138124.314018,0.70,4,3992.50,54.38,1559.50,2129.02,0.00,3520116318445.557129,3520116318447.564941,21,0,0.004757,0.009279,70897526,47399414,0,0,59519,0,1,1 +1774138129.314706,1.15,4,3992.50,54.88,1540.27,2148.67,0.00,2.006560,0.000195,238,2,0.005034,0.010299,70897662,47399615,0,0,59522,0,1,1 +1774138134.317255,0.65,4,3992.50,54.38,1559.34,2129.20,0.00,3516643852742.278320,3516643852744.109375,199,0,0.004321,0.008385,70897775,47399779,0,0,59524,0,1,1 +1774138139.315854,0.60,4,3992.50,54.31,1562.07,2126.48,0.00,3519423840643.087402,0.000000,21,0,0.004350,0.008433,70897890,47399946,0,0,59527,0,1,1 +1774138144.316926,0.70,4,3992.50,54.25,1564.70,2123.84,0.00,86251.102952,145597.342134,7080279,2441474,0.004322,0.008388,70898003,47400110,0,0,59529,0,1,1 +1774138149.314501,0.75,4,3992.50,54.23,1565.16,2123.39,0.00,3520144181332.895996,3520144121945.130859,21,0,0.005118,0.010381,70898144,47400317,0,0,59532,0,1,1 +1774138154.317055,0.75,4,3992.50,54.23,1565.25,2123.30,0.00,0.048022,0.000000,70,0,0.006158,0.010726,70898306,47400533,0,0,59534,0,1,1 +1774138159.317539,1.00,4,3992.50,54.55,1553.16,2135.65,0.00,0.000000,0.000000,70,0,0.004331,0.008394,70898420,47400698,0,0,59537,0,1,1 +1774138164.316944,9.83,4,3992.50,56.31,1534.00,2204.50,0.00,1.959022,0.000195,238,2,0.005063,0.010335,70898558,47400901,0,0,59539,0,1,1 +1774138169.315208,33.18,4,3992.50,57.25,1490.59,2241.44,0.00,3519658842342.798340,0.028135,237,492,0.096974,15.057142,70905912,47409413,0,0,59542,0,1,1 +1774138174.317941,38.39,4,3992.50,67.12,1104.62,2627.85,0.00,3516515380478.500000,3516515380480.009277,21,0,0.284046,25.368572,70928251,47433838,0,0,59544,0,1,1 +1774138179.317686,28.90,4,3992.50,68.27,1064.08,2672.96,0.00,86824.799780,145685.137017,7127283,2450731,0.002786,0.008177,70928338,47433991,0,0,59547,0,1,1 +1774138184.318265,29.02,4,3992.50,89.35,219.97,3498.21,0.00,3518029489393.105957,3518029430542.590820,21,0,0.004671,0.013089,70928500,47434248,0,0,59549,0,1,0 +1774138189.316384,25.79,4,3992.50,89.97,180.34,3522.52,0.00,0.000000,0.000000,21,0,0.001736,0.005756,70928563,47434359,0,0,59552,0,1,0 +1774138194.317502,18.89,4,3992.50,38.79,2196.93,1518.54,0.00,2.006387,0.000195,238,2,0.001157,0.003835,70928605,47434433,0,0,59554,0,1,0 +1774138199.317253,0.45,4,3992.50,38.54,2204.81,1508.87,0.00,3518612628611.608398,0.028126,237,492,0.002314,0.007662,70928689,47434580,0,0,59557,0,1,0 +1774138204.317317,0.40,4,3992.50,38.45,2207.30,1505.21,0.00,3518391824442.014648,3518391824443.349609,199,0,0.001152,0.003844,70928731,47434655,0,0,59559,0,1,0 +1774138209.317421,0.40,4,3992.50,38.44,2207.48,1504.89,0.00,1.831798,0.000195,238,2,0.000578,0.001938,70928752,47434694,0,0,59562,0,1,0 +1774138214.316939,0.45,4,3992.50,38.42,2208.01,1504.35,0.00,3518776362623.666992,0.028128,237,492,0.002893,0.009561,70928857,47434876,0,0,59564,0,1,0 +1774138219.317209,0.70,4,3992.50,38.72,2197.46,1515.91,0.00,0.000000,0.000000,237,492,0.001903,0.005880,70928931,47434997,0,0,59567,0,1,0 +1774138224.317225,0.35,4,3992.50,38.39,2210.27,1503.02,0.00,3518426218021.890137,3518426218023.352051,70,0,0.001157,0.003836,70928973,47435071,0,0,59569,0,1,0 +1774138229.317277,0.50,4,3992.50,38.39,2210.18,1503.11,0.00,1.490316,0.028320,237,492,0.002586,0.008683,70929068,47435236,0,0,59572,0,1,0 +1774138234.316802,0.35,4,3992.50,38.31,2212.64,1499.86,0.00,3518771623084.333984,3518771623085.669434,199,0,0.002043,0.006632,70929141,47435364,0,0,59574,0,1,0 +1774138239.317555,0.60,4,3992.50,38.35,2205.77,1501.48,0.00,3517907542873.229004,0.000000,21,0,0.002326,0.007661,70929226,47435511,0,0,59577,0,1,0 +1774138244.317383,43.72,4,3992.50,43.86,1957.76,1717.07,0.00,2.006905,0.000195,238,2,0.001144,0.004480,70929267,47435589,0,0,59579,0,1,1 +1774138249.313468,58.27,4,3992.50,47.01,1842.73,1840.62,0.00,87056.100046,145795.356217,7142162,2453750,0.001158,0.003849,70929309,47435664,0,0,59582,0,1,1 +1774138254.319099,57.90,4,3992.50,54.87,1591.88,2148.26,0.00,3514478587530.581543,3514478528905.186523,199,0,0.005716,0.010084,70929417,47435806,0,0,59584,0,1,1 +1774138259.318557,59.35,4,3992.50,73.45,844.35,2875.88,0.00,3518818643897.725098,0.000000,70,0,20.038977,0.026529,70931860,47437258,0,0,59587,0,1,1 +1774138264.316881,68.44,4,3992.50,72.08,915.54,2822.07,0.00,3519616785219.247559,0.000000,21,0,118.205019,0.055290,70943998,47441162,0,0,59589,0,1,1 +1774138269.317692,60.32,4,3992.50,66.56,1117.74,2605.84,0.00,87646.947583,145665.987258,7188918,2461132,118.946065,0.050070,70956348,47445053,0,0,59592,0,1,1 +1774138274.317169,62.24,4,3992.50,59.57,1401.04,2332.30,0.00,3518804731456.280273,3518804673421.601074,199,0,118.175700,0.041433,70968509,47448183,0,0,59594,0,1,1 +1774138279.317731,61.44,4,3992.50,64.18,1216.23,2512.90,0.00,3518042255165.640625,0.000000,21,0,120.151979,0.054722,70980845,47452405,0,0,59597,0,1,1 +1774138284.317820,54.36,4,3992.50,57.34,1448.91,2244.88,0.00,0.000000,0.000000,21,0,120.162675,0.050318,70993074,47456239,0,0,59599,0,1,1 +1774138289.317186,29.46,4,3992.50,57.42,1445.34,2248.21,0.00,88273.367189,145714.558286,7231727,2466938,118.777218,0.060402,71005104,47460752,0,0,59602,0,1,1 +1774138294.313487,29.00,4,3992.50,57.54,1440.19,2252.74,0.00,0.031273,0.022478,7231731,2466971,119.651924,0.057160,71017142,47465000,0,0,59604,0,1,1 +1774138299.314737,28.86,4,3992.50,57.27,1450.11,2242.20,0.00,3517557327473.534668,3517557270053.990723,21,0,120.132914,0.053296,71029201,47469041,0,0,59607,0,1,1 +1774138304.316496,20.13,4,3992.50,51.63,1636.61,2021.53,0.00,0.000000,0.000000,21,0,59.306791,0.068238,71037168,47473033,0,0,59609,0,1,1 +1774138309.317280,36.73,4,3992.50,53.10,1612.51,2079.01,0.00,0.000000,0.000000,21,0,22.134257,0.103632,71044132,47478405,0,0,59612,0,1,1 +1774138314.316868,13.21,4,3992.50,52.55,1634.22,2057.30,0.00,2.007001,0.000195,238,2,10.063646,0.047008,71047424,47480808,0,0,59614,0,1,1 +1774138319.313080,3.51,4,3992.50,51.96,1656.98,2034.54,0.00,3521105115720.719727,3521105115722.552734,199,0,0.005056,0.009804,71047555,47480997,0,0,59617,0,1,1 +1774138324.317579,1.70,4,3992.50,51.72,1666.53,2024.99,0.00,0.000000,0.000000,199,0,0.005018,0.010281,71047690,47481197,0,0,59619,0,1,1 +1774138329.317562,11.99,4,3992.50,52.40,1638.34,2051.43,0.00,3518449148388.413086,0.000000,70,0,0.032563,36.465008,71049838,47485319,0,0,59622,0,1,1 +1774138334.312830,31.54,4,3992.50,51.88,1653.23,2031.36,0.00,1.960645,0.000195,238,2,0.056994,126.698687,71054132,47498373,0,0,59624,0,1,1 +1774138339.316582,13.00,4,3992.50,51.71,1658.04,2024.71,0.00,3515798709533.177246,3515798709535.134277,70,0,0.025837,42.036485,71055885,47502891,0,0,59627,0,1,1 +1774138344.314191,10.87,4,3992.50,73.70,851.20,2885.56,0.00,1.491045,0.028334,237,493,0.005861,0.007181,71056000,47503033,0,0,59629,0,1,1 +1774138349.319086,43.47,4,3992.50,95.65,4.10,3744.94,0.00,88493.301851,145763.346777,7259234,2472779,40.025561,0.029502,71060473,47504804,0,0,59632,0,1,1 +1774138354.317340,32.48,4,3992.50,53.99,1625.79,2114.02,0.00,3519666370116.875000,3519666312772.237305,21,0,0.009754,0.015565,71060684,47505091,0,0,59634,0,1,1 +1774138359.313701,30.61,4,3992.50,66.89,1122.69,2618.96,0.00,0.048082,0.000000,70,0,0.004354,0.008443,71060799,47505259,0,0,59637,0,1,1 +1774138364.318021,30.28,4,3992.50,71.75,933.53,2809.04,0.00,0.000000,0.000000,70,0,0.004349,0.008433,71060914,47505427,0,0,59639,0,1,1 +1774138369.317925,30.22,4,3992.50,84.69,408.71,3315.83,0.00,1.958826,0.000195,238,2,0.004381,0.008463,71061031,47505597,0,0,59642,0,1,1 +1774138374.318607,23.78,4,3992.50,51.66,1705.03,2022.77,0.00,3517957531151.810547,0.028121,237,493,0.005077,0.011014,71061170,47505807,0,0,59644,0,1,1 +1774138379.316383,1.15,4,3992.50,51.34,1712.86,2010.20,0.00,3520003251992.515137,3520003251993.978027,70,0,0.005037,0.010305,71061306,47506008,0,0,59647,0,1,1 +1774138384.312816,1.30,4,3992.50,51.34,1712.33,2010.26,0.00,0.127044,0.000000,199,0,0.004389,0.008483,71061423,47506177,0,0,59649,0,1,1 +1774138389.317128,1.60,4,3992.50,51.25,1714.64,2006.66,0.00,89339.947524,145794.647665,7312748,2486698,0.005020,0.010311,71061558,47506379,0,0,59652,0,1,1 +1774138394.317552,1.15,4,3992.50,51.17,1717.50,2003.39,0.00,0.158580,0.337862,7312765,2487049,0.005035,0.010277,71061694,47506578,0,0,59654,0,1,1 +1774138399.313022,1.51,4,3992.50,51.59,1689.10,2020.04,0.00,4.684713,0.047015,7313027,2487069,0.004642,0.009018,71061821,47506760,0,0,59657,0,1,1 +1774138404.313651,1.65,4,3992.50,51.46,1693.77,2014.86,0.00,3517994545896.972656,3517994489405.269043,70,0,0.005247,0.010829,71061965,47506972,0,0,59659,0,1,1 +1774138409.318424,2.80,4,3992.50,52.16,1663.61,2042.27,0.00,89342.068711,145781.670949,7313923,2487608,0.006117,0.009805,71062105,47507171,0,0,59662,0,1,1 +1774138414.317288,12.85,4,3992.50,51.81,1662.00,2028.40,0.00,3519236582318.700195,3519236525812.378906,70,0,0.021895,40.075397,71063654,47511643,0,0,59664,0,1,1 +1774138419.317012,1.26,4,3992.50,51.78,1663.05,2027.35,0.00,3518631625947.559570,0.000000,21,0,0.003686,0.010153,71063766,47511838,0,0,59667,0,1,1 +1774138424.313396,1.00,4,3992.50,51.74,1664.79,2025.62,0.00,2.008289,0.000195,238,2,0.003181,0.008872,71063862,47512006,0,0,59669,0,1,1 +1774138429.312834,1.25,4,3992.50,52.10,1650.58,2039.82,0.00,3518832647554.231934,0.028128,237,493,0.002976,0.008293,71063953,47512167,0,0,59672,0,1,1 +1774138434.313477,8.17,4,3992.50,62.02,1316.67,2428.30,0.00,89452.120962,145942.633514,7327040,2488410,0.003445,0.009523,71064059,47512349,0,0,59674,0,1,1 +1774138439.315380,29.45,4,3992.50,75.15,793.11,2942.29,0.00,137.418124,2.725135,7335357,2490588,0.002760,0.008287,71064144,47512501,0,0,59677,0,1,1 +1774138444.315931,29.99,4,3992.50,79.69,628.71,3119.89,0.00,3518049115754.406738,3518049059399.091309,21,0,0.003458,0.009554,71064251,47512685,0,0,59679,0,1,1 +1774138449.318696,30.13,4,3992.50,79.55,627.33,3114.44,0.00,0.000000,0.000000,21,0,0.002846,0.007724,71064343,47512839,0,0,59682,0,1,1 +1774138454.313894,30.16,4,3992.50,72.95,879.28,2856.27,0.00,2.008765,0.000196,238,2,0.003527,0.009639,71064455,47513028,0,0,59684,0,1,1 +1774138459.317670,30.62,4,3992.50,74.01,817.80,2897.67,0.00,90188.620028,145865.865032,7377049,2502083,0.003625,0.009640,71064573,47513220,0,0,59687,0,1,1 +1774138464.314925,23.33,4,3992.50,51.68,1707.61,2023.27,0.00,3520369894634.552734,3520369838886.481934,199,0,0.002809,0.007703,71064661,47513372,0,0,59689,0,1,1 +1774138469.316947,1.00,4,3992.50,51.42,1713.98,2013.33,0.00,90361.503610,145919.249597,7386313,2504734,0.003407,0.009530,71064764,47513555,0,0,59692,0,1,1 +1774138474.316789,1.15,4,3992.50,51.23,1715.91,2005.72,0.00,3518548662812.514160,3518548607229.201660,237,493,0.002747,0.007624,71064848,47513701,0,0,59694,0,1,1 +1774138479.315301,40.19,4,3992.50,58.27,1402.32,2281.30,0.00,90425.776423,146021.681746,7386985,2504275,98.773475,0.043697,71075226,47516460,0,0,59697,0,1,1 +1774138484.313226,28.68,4,3992.50,58.69,1395.87,2297.82,0.00,3519897276766.143066,3519897221165.231934,21,0,119.218008,0.031418,71087519,47518518,0,0,59699,0,1,1 +1774138489.313188,28.98,4,3992.50,58.49,1403.64,2290.09,0.00,90403.453041,145979.407384,7387116,2504298,118.365275,0.021494,71099674,47519938,0,0,59702,0,1,1 +1774138494.316637,28.72,4,3992.50,58.57,1400.59,2293.09,0.00,3516011812912.762695,3516011757374.034180,237,493,119.887024,0.034037,71112085,47522488,0,0,59704,0,1,1 +1774138499.318383,28.53,4,3992.50,58.17,1415.68,2277.66,0.00,90375.851664,145927.781577,7388021,2505161,119.339423,0.065364,71124557,47527320,0,0,59707,0,1,1 +1774138504.316736,29.24,4,3992.50,58.11,1417.48,2275.22,0.00,3519596917169.510254,3519596861579.859863,237,493,119.023437,0.079181,71137033,47533243,0,0,59709,0,1,1 +1774138509.314442,28.84,4,3992.50,57.93,1423.79,2268.26,0.00,3520051890476.496582,3520051890477.832031,199,0,119.636878,0.067596,71149529,47538369,0,0,59712,0,1,1 +1774138514.313506,29.50,4,3992.50,57.84,1427.00,2264.41,0.00,3519096471489.258789,0.000000,21,0,118.805951,0.071416,71162103,47543702,0,0,59714,0,1,1 +1774138519.317280,12.47,4,3992.50,52.35,1643.28,2049.79,0.00,2.005322,0.000195,238,2,92.466585,0.039190,71171756,47546500,0,0,59717,0,1,1 +1774138524.317410,12.94,4,3992.50,73.31,858.04,2870.32,0.00,3518346194896.023438,0.028124,237,493,0.006550,0.010949,71171919,47546720,0,0,59719,0,1,1 +1774138529.318087,38.79,4,3992.50,89.77,199.23,3514.79,0.00,90556.371840,145961.490196,7399128,2507400,2.033557,0.043688,71173103,47547906,0,0,59722,0,1,0 +1774138534.316857,46.65,4,3992.50,91.95,87.89,3599.93,0.00,3519302554228.834961,3519302498802.581055,237,493,0.004226,0.014012,71173256,47548173,0,0,59724,0,1,1 +1774138539.317537,80.00,4,3992.50,95.78,3.56,3749.95,0.00,90673.816557,145962.244343,7418475,2507586,0.006675,0.022307,71173495,47548597,0,0,59727,0,1,1 +1774138544.317154,86.20,4,3992.50,95.69,4.12,3746.59,0.00,3518706427320.138672,3518706372019.471680,238,2,0.006532,0.021310,71173735,47549019,0,0,59729,0,1,1 +1774138549.317416,74.25,4,3992.50,96.38,0.00,3773.42,0.00,3518252987525.561035,3518252987527.567871,21,0,0.005960,0.019460,71173954,47549409,0,0,59732,0,1,1 +1774138554.317669,68.29,4,3992.50,45.25,1949.62,1771.73,0.00,97819.426961,145977.798848,8066667,2511239,0.004820,0.015509,71174134,47549717,0,0,59734,0,1,1 +1774138559.315162,64.63,4,3992.50,51.03,1682.07,1997.86,0.00,3520202220008.495605,3520202171823.521484,21,0,2.017638,0.024397,71174863,47550427,0,0,59737,0,1,1 +1774138564.312854,29.76,4,3992.50,51.75,1653.65,2026.14,0.00,0.000000,0.000000,21,0,16.105603,0.078572,71180042,47554389,0,0,59739,0,1,1 +1774138569.312899,6.08,4,3992.50,51.28,1672.27,2007.55,0.00,97860.735233,145984.493887,8070207,2512124,2.016273,0.013463,71180770,47554935,0,0,59742,0,1,1 +1774138574.314517,3.21,4,3992.50,51.33,1670.20,2009.60,0.00,3517298743616.358398,3517298695505.731934,238,2,0.005770,0.012366,71180925,47555166,0,0,59744,0,1,1 +1774138579.314278,1.91,4,3992.50,51.80,1651.73,2028.20,0.00,3518605612864.430176,3518605612866.437500,21,0,0.004540,0.009021,71181044,47555342,0,0,59747,0,1,1 +1774138584.317630,2.56,4,3992.50,51.78,1652.41,2027.39,0.00,0.000000,0.000000,21,0,0.004197,0.009426,71181162,47555524,0,0,59749,0,1,1 +1774138589.317089,1.45,4,3992.50,51.78,1652.51,2027.32,0.00,97874.811156,146001.931231,8069797,2511821,0.004835,0.010156,71181293,47555723,0,0,59752,0,1,1 +1774138594.317763,2.51,4,3992.50,51.78,1652.54,2027.29,0.00,4.109504,0.105357,8070572,2512386,0.004348,0.008389,71181408,47555887,0,0,59754,0,1,1 +1774138599.312962,1.56,4,3992.50,51.69,1656.22,2023.61,0.00,3521819095580.905762,3521819047414.738770,238,2,0.005950,0.010981,71181545,47556091,0,0,59757,0,1,1 +1774138604.317545,1.55,4,3992.50,51.34,1669.84,2009.98,0.00,3515215100852.014160,3515215100853.971191,70,0,0.004650,0.009460,71181673,47556276,0,0,59759,0,1,1 +1774138609.316934,18.79,4,3992.50,52.49,1621.17,2055.05,0.00,0.126969,0.000000,199,0,0.035856,70.721657,71184094,47564014,0,0,59762,0,1,1 +1774138614.450752,41.86,4,3992.50,78.06,619.63,3056.04,0.00,0.000000,0.000000,199,0,0.024988,111.238832,71185922,47576255,0,0,59764,0,1,1 +1774138619.314610,44.46,4,3992.50,96.17,0.00,3765.11,0.00,0.000000,0.000000,199,0,0.252991,21.009979,71205188,47597138,0,0,59767,0,1,1 +1774138624.327457,43.20,4,3992.50,94.94,40.35,3717.22,0.00,3509419408280.926270,0.000000,21,0,25.976806,0.023350,71208168,47598427,0,0,59769,0,1,1 +1774138629.452194,47.63,4,3992.50,91.04,169.49,3564.46,0.00,0.000000,0.000000,21,0,14.378383,36.871749,71266005,47658282,0,0,59772,0,1,1 +1774138634.314168,38.37,4,3992.50,67.05,1117.05,2625.28,0.00,2.063808,0.000201,238,2,0.065851,3.139987,71270833,47663445,0,0,59774,0,1,1 +1774138639.316690,30.73,4,3992.50,93.96,37.62,3678.63,0.00,3516663491029.747070,3516663491031.578125,199,0,0.002773,0.008286,71270919,47663597,0,0,59777,0,1,1 +1774138644.318916,26.13,4,3992.50,52.11,1688.86,2040.26,0.00,0.000000,0.000000,199,0,0.003447,0.009532,71271025,47663780,0,0,59779,0,1,1 +1774138649.316586,1.25,4,3992.50,52.17,1684.51,2042.58,0.00,1.364014,0.028334,237,493,0.002735,0.007637,71271108,47663927,0,0,59782,0,1,1 +1774138654.317016,1.15,4,3992.50,51.84,1697.40,2029.52,0.00,99036.215659,146235.775518,8166012,2529500,0.004057,0.010664,71271227,47664133,0,0,59784,0,1,1 +1774138659.317168,1.00,4,3992.50,51.61,1705.80,2020.74,0.00,3518329776854.104980,3518329729653.442383,21,0,0.002323,0.006432,71271300,47664261,0,0,59787,0,1,1 +1774138664.317702,1.10,4,3992.50,51.49,1710.66,2015.88,0.00,2.006622,0.000195,238,2,0.003177,0.008832,71271396,47664427,0,0,59789,0,1,1 +1774138669.313724,2.91,4,3992.50,51.82,1686.41,2028.90,0.00,0.000000,0.000000,238,2,0.003449,0.009542,71271502,47664610,0,0,59792,0,1,1 +1774138674.313656,0.95,4,3992.50,51.66,1692.52,2022.47,0.00,99050.363647,146250.698538,8166272,2529820,0.002885,0.007810,71271597,47664768,0,0,59794,0,1,1 +1774138679.317525,1.35,4,3992.50,51.57,1694.28,2019.23,0.00,3515716500041.249512,3515716452880.007324,70,0,0.003567,0.009658,71271711,47664961,0,0,59797,0,1,1 +1774138684.313497,1.41,4,3992.50,51.55,1695.24,2018.11,0.00,0.000000,0.000000,70,0,0.003436,0.009532,71271816,47665143,0,0,59799,0,1,1 +1774138689.312904,1.60,4,3992.50,51.59,1693.49,2019.86,0.00,99067.478666,146266.095373,8167086,2530322,0.002734,0.007634,71271899,47665290,0,0,59802,0,1,1 +1774138694.312896,1.40,4,3992.50,51.58,1693.85,2019.40,0.00,3518443589928.427246,3518443589932.473145,8166314,2529831,0.003433,0.009524,71272004,47665472,0,0,59804,0,1,1 +1774138699.312812,20.08,4,3992.50,58.73,1382.92,2299.30,0.00,9.705533,0.108303,8168510,2530381,36.261598,0.031743,71276155,47667143,0,0,59807,0,1,1 +1774138704.314948,39.67,4,3992.50,79.60,601.46,3116.35,0.00,3516934972031.035156,3516934924863.757324,21,0,121.720748,0.038608,71288774,47669821,0,0,59809,0,1,1 +1774138709.318751,61.42,4,3992.50,85.83,374.23,3360.40,0.00,0.000000,0.000000,21,0,120.877943,0.039832,71301336,47672661,0,0,59812,0,1,1 +1774138714.313793,61.17,4,3992.50,84.06,428.45,3291.31,0.00,0.048095,0.000000,70,0,119.484924,0.036413,71313742,47675445,0,0,59814,0,1,1 +1774138719.318877,61.40,4,3992.50,95.58,12.28,3742.17,0.00,3514863451785.313477,0.000000,21,0,118.845295,0.035835,71326095,47677988,0,0,59817,0,1,0 +1774138724.317786,58.69,4,3992.50,95.50,16.20,3739.16,0.00,2.007274,0.000195,238,2,120.194314,0.031023,71338643,47680104,0,0,59819,0,1,0 +1774138729.315268,58.14,4,3992.50,95.63,12.05,3744.05,0.00,3520210524085.423340,3520210524087.256348,199,0,119.621929,0.034930,71350762,47682878,0,0,59822,0,1,0 +1774138734.317247,71.84,4,3992.50,45.38,1908.14,1776.83,0.00,1.831111,0.000195,238,2,118.717042,0.051521,71362999,47686626,0,0,59824,0,1,1 +1774138739.316376,83.05,4,3992.50,51.08,1684.40,1999.78,0.00,100892.618648,146282.595881,8306968,2538201,119.983761,0.034974,71375153,47689136,0,0,59827,0,1,1 +1774138744.319124,57.13,4,3992.50,49.21,1757.61,1926.52,0.00,3.111669,0.179198,8307872,2537836,29.624909,0.013712,71378177,47689917,0,0,59829,0,1,1 +1774138749.316130,41.58,4,3992.50,50.51,1706.42,1977.65,0.00,4.445630,0.017491,8308886,2537846,0.004183,0.005632,71378240,47689971,0,0,59832,0,1,1 +1774138754.316392,25.58,4,3992.50,51.52,1666.71,2017.24,0.00,6.634028,0.051950,8309202,2537965,4.034050,0.030734,71379659,47691112,0,0,59834,0,1,1 +1774138759.316576,37.94,4,3992.50,53.15,1602.73,2081.04,0.00,3518307729965.506836,3518307684601.001953,70,0,26.162445,0.118140,71388280,47697555,0,0,59837,0,1,1 +1774138764.312904,12.62,4,3992.50,52.41,1631.68,2052.07,0.00,100992.131651,146365.575826,8310587,2539305,10.076922,0.049253,71391789,47700191,0,0,59839,0,1,1 +1774138769.317087,5.46,4,3992.50,52.32,1635.19,2048.55,0.00,3515496313739.267090,3515496268437.035156,70,0,0.005734,0.012331,71391941,47700420,0,0,59842,0,1,1 +1774138774.317494,1.55,4,3992.50,52.32,1635.21,2048.53,0.00,0.000000,0.000000,70,0,0.004348,0.008389,71392056,47700584,0,0,59844,0,1,1 +1774138779.316028,1.21,4,3992.50,52.16,1641.71,2042.00,0.00,1.490769,0.028329,237,493,0.005036,0.010303,71392192,47700785,0,0,59847,0,1,1 +1774138784.316770,1.55,4,3992.50,52.16,1641.50,2042.24,0.00,3517915075001.324219,3517915075002.659180,199,0,0.005497,0.011384,71392338,47701006,0,0,59849,0,1,1 +1774138789.317535,2.46,4,3992.50,52.63,1623.84,2060.39,0.00,0.000000,0.000000,199,0,0.010365,2.015433,71392816,47701666,0,0,59852,0,1,1 +1774138794.428770,38.06,4,3992.50,86.71,334.76,3394.99,0.00,3441865588029.209473,0.000000,21,0,0.062255,114.310049,71397562,47715411,0,0,59854,0,1,1 +1774138799.317562,52.12,4,3992.50,89.25,181.25,3494.25,0.00,0.178981,0.000000,199,0,0.308643,88.527506,71421345,47745642,0,0,59857,0,1,0 +1774138804.315191,25.93,4,3992.50,89.21,182.64,3492.84,0.00,101002.379116,146534.093758,8323578,2541229,0.003189,0.009453,71421453,47745820,0,0,59859,0,1,0 +1774138809.317597,39.55,4,3992.50,91.97,91.29,3600.66,0.00,3516744524109.639648,3516744478621.580078,21,0,0.001722,0.005751,71421515,47745931,0,0,59862,0,1,1 +1774138814.318319,81.44,4,3992.50,95.90,2.89,3754.85,0.00,2.006547,0.000195,238,2,0.000578,0.001928,71421536,47745969,0,0,59864,0,1,1 +1774138819.316787,72.26,4,3992.50,96.06,0.00,3760.96,0.00,3519515177252.178711,3519515177254.137695,70,0,0.001830,0.005857,71421605,47746088,0,0,59867,0,1,1 +1774138824.315216,71.33,4,3992.50,45.43,1945.28,1778.50,0.00,3519543295050.578613,0.000000,21,0,0.001828,0.005834,71421674,47746205,0,0,59869,0,1,1 +1774138829.316448,67.89,4,3992.50,50.11,1733.34,1961.89,0.00,1.538000,0.028313,237,493,0.007019,0.009517,71421784,47746308,0,0,59872,0,1,1 +1774138834.316663,21.25,4,3992.50,52.13,1654.18,2041.01,0.00,3518285498300.003906,3518285498301.513672,21,0,40.064347,0.029286,71426194,47748077,0,0,59874,0,1,1 +1774138839.312912,5.63,4,3992.50,51.58,1675.63,2019.50,0.00,0.175131,0.000000,199,0,0.005514,0.011578,71426337,47748284,0,0,59877,0,1,1 +1774138844.312820,2.61,4,3992.50,51.06,1696.14,1999.02,0.00,105216.262957,146468.842176,8647452,2542723,0.004336,0.008402,71426451,47748449,0,0,59879,0,1,1 +1774138849.317726,3.01,4,3992.50,51.11,1694.65,2001.24,0.00,3514988008330.099609,3514987967117.381836,237,493,0.005098,0.010366,71426591,47748656,0,0,59882,0,1,1 +1774138854.317643,1.51,4,3992.50,51.06,1696.01,1999.16,0.00,105219.111777,146468.697621,8648250,2543293,0.004298,0.008377,71426702,47748819,0,0,59884,0,1,1 +1774138859.317191,1.40,4,3992.50,51.08,1695.48,1999.73,0.00,3518755223064.039551,3518755181812.869141,70,0,0.004253,0.009918,71426824,47749011,0,0,59887,0,1,1 +1774138864.316381,2.56,4,3992.50,51.08,1695.45,1999.73,0.00,105236.135812,146490.163907,8648268,2543376,0.004898,0.010267,71426958,47749209,0,0,59889,0,1,1 +1774138869.316013,1.91,4,3992.50,51.08,1695.50,1999.71,0.00,0.000000,0.036233,8648268,2543420,0.004461,0.008425,71427073,47749376,0,0,59892,0,1,1 +1774138874.317023,2.11,4,3992.50,51.08,1695.27,1999.94,0.00,3517726729707.005371,3517726688468.004395,21,0,0.005047,0.010320,71427210,47749578,0,0,59894,0,1,1 +1774138879.314045,1.71,4,3992.50,51.08,1695.65,1999.88,0.00,105277.766714,146553.781258,8647496,2542985,0.004351,0.008436,71427325,47749745,0,0,59897,0,1,1 +1774138884.314334,1.81,4,3992.50,51.11,1693.91,2001.07,0.00,3518233668842.875000,3518233627593.653320,199,0,0.005084,0.010330,71427464,47749948,0,0,59899,0,1,1 +1774138889.316877,3.68,4,3992.50,50.10,1726.16,1961.54,0.00,105181.774492,146392.154017,8659264,2543569,0.005045,0.010295,71427601,47750149,0,0,59902,0,1,1 +1774138894.317230,1.25,4,3992.50,50.11,1725.82,1961.86,0.00,3518188725856.493652,3518188684628.190430,70,0,0.004343,0.008397,71427716,47750314,0,0,59904,0,1,1 +1774138899.317648,1.40,4,3992.50,50.11,1725.71,1961.97,0.00,0.000000,0.000000,70,0,0.005956,0.011613,71427854,47750522,0,0,59907,0,1,1 +1774138904.316933,14.25,4,3992.50,50.81,1695.62,1989.45,0.00,1.490545,0.028324,237,493,0.023702,40.076138,71429326,47755059,0,0,59909,0,1,1 +1774138909.312920,1.86,4,3992.50,51.10,1687.92,2000.81,0.00,3521263694149.076172,3521263694150.587891,21,0,0.003411,0.009542,71429429,47755242,0,0,59912,0,1,1 +1774138914.316859,1.45,4,3992.50,50.73,1702.73,1986.00,0.00,0.000000,0.000000,21,0,0.003405,0.009517,71429532,47755424,0,0,59914,0,1,1 +1774138919.313581,1.36,4,3992.50,50.73,1702.55,1986.18,0.00,0.048078,0.000000,70,0,0.002751,0.007657,71429616,47755572,0,0,59917,0,1,1 +1774138924.317039,1.30,4,3992.50,50.70,1703.77,1984.94,0.00,3516005650481.057617,0.000000,21,0,0.002071,0.005718,71429680,47755682,0,0,59919,0,1,1 +1774138929.317487,1.60,4,3992.50,50.71,1703.46,1985.24,0.00,105227.901957,146493.971768,8660326,2544185,0.003420,0.009533,71429784,47755865,0,0,59922,0,1,1 +1774138934.317271,1.15,4,3992.50,50.73,1702.36,1986.34,0.00,3518588357205.126465,3518588315932.077637,237,493,0.002747,0.007624,71429868,47756011,0,0,59924,0,1,1 +1774138939.312819,1.31,4,3992.50,50.90,1702.60,1993.02,0.00,3521573254382.447754,3521573254383.958984,21,0,0.003449,0.009574,71429974,47756196,0,0,59927,0,1,1 +1774138944.317278,1.15,4,3992.50,50.89,1703.04,1992.55,0.00,0.000000,0.000000,21,0,0.003480,0.009553,71430083,47756380,0,0,59929,0,1,1 +1774138949.317448,1.15,4,3992.50,50.90,1702.86,1992.77,0.00,105233.905217,146502.192195,8660336,2544244,0.002973,0.007885,71430183,47756546,0,0,59932,0,1,1 +1774138954.312999,2.01,4,3992.50,50.90,1702.87,1992.76,0.00,0.000000,0.009383,8660336,2544250,0.004044,0.010643,71430301,47756750,0,0,59934,0,1,1 +1774138959.317382,0.90,4,3992.50,50.90,1702.87,1992.76,0.00,0.000000,0.006245,8660336,2544254,0.002744,0.007627,71430385,47756897,0,0,59937,0,1,1 +1774138964.313597,1.40,4,3992.50,50.90,1702.88,1992.76,0.00,3521102743210.096191,3521102701908.943359,199,0,0.003436,0.010015,71430490,47757082,0,0,59939,0,1,1 +1774138969.315568,25.06,4,3992.50,57.06,1462.36,2233.93,0.00,3517051201607.982422,0.000000,21,0,34.642842,0.031777,71434375,47758825,0,0,59942,0,1,1 +1774138974.317669,32.46,4,3992.50,56.76,1473.94,2222.43,0.00,0.000000,0.000000,21,0,118.121665,0.041137,71446689,47761555,0,0,59944,0,1,1 +1774138979.316486,29.15,4,3992.50,57.31,1454.85,2243.96,0.00,105258.445815,146542.080655,8659583,2543967,120.200492,0.033730,71459159,47763781,0,0,59947,0,1,1 +1774138984.313369,28.31,4,3992.50,57.30,1455.14,2243.50,0.00,3520631922624.459961,3520631881324.846191,21,0,118.638444,0.021000,71471393,47765181,0,0,59949,0,1,1 +1774138989.316592,28.29,4,3992.50,56.84,1472.72,2225.27,0.00,105169.840123,146413.050334,8660357,2544486,119.688895,0.027519,71483494,47767119,0,0,59952,0,1,1 +1774138994.313473,27.76,4,3992.50,56.91,1469.24,2228.08,0.00,3520633855244.910156,3520633813949.340820,21,0,119.451517,0.065332,71495724,47772191,0,0,59954,0,1,1 +1774138999.313051,28.96,4,3992.50,56.57,1481.96,2214.71,0.00,0.175015,0.000000,199,0,118.988384,0.058916,71508250,47776710,0,0,59957,0,1,1 +1774139004.317552,29.47,4,3992.50,57.41,1448.16,2247.77,0.00,105138.715117,146375.864591,8659583,2544036,120.072337,0.063583,71520753,47781316,0,0,59959,0,1,1 +1774139009.316833,25.37,4,3992.50,57.36,1449.48,2245.94,0.00,3518943109370.329590,3518943068090.247559,70,0,118.185637,0.037003,71532906,47784075,0,0,59962,0,1,1 +1774139014.317424,2.61,4,3992.50,51.26,1688.39,2007.03,0.00,0.000000,0.000000,70,0,37.452910,0.015546,71536852,47785001,0,0,59964,0,1,1 +1774139019.312805,23.56,4,3992.50,51.04,1697.20,1998.20,0.00,1.960600,0.000195,238,2,10.083843,0.057819,71540317,47787613,0,0,59967,0,1,1 +1774139024.317614,22.78,4,3992.50,52.28,1648.62,2046.71,0.00,3515056516103.428711,3515056516105.434082,21,0,18.092330,0.079250,71546132,47791865,0,0,59969,0,1,1 +1774139029.317382,15.12,4,3992.50,52.98,1620.83,2074.33,0.00,0.175008,0.000000,199,0,12.079294,0.059747,71550221,47795025,0,0,59972,0,1,1 +1774139034.317724,2.41,4,3992.50,52.36,1644.69,2049.95,0.00,3518195888087.078125,0.000000,70,0,0.005537,0.012184,71550368,47795251,0,0,59974,0,1,1 +1774139039.317380,2.61,4,3992.50,52.31,1646.62,2048.01,0.00,105263.234938,146519.074051,8659878,2545584,0.004361,0.008400,71550484,47795416,0,0,59977,0,1,1 +1774139044.317432,1.15,4,3992.50,52.24,1649.18,2045.46,0.00,4.134234,0.274216,8660653,2546143,0.005022,0.010278,71550619,47795615,0,0,59979,0,1,1 +1774139049.312903,1.15,4,3992.50,52.06,1656.50,2038.13,0.00,0.060211,0.007331,8660656,2546152,0.005058,0.010335,71550756,47795818,0,0,59982,0,1,1 +1774139054.315088,0.90,4,3992.50,51.92,1661.66,2032.96,0.00,3516900099860.649414,0.003514,8659884,2545670,0.004342,0.008394,71550871,47795983,0,0,59984,0,1,1 +1774139059.317692,1.25,4,3992.50,52.03,1652.82,2037.05,0.00,3516605874020.736328,3516605832789.103516,21,0,0.004447,0.008520,71550994,47796156,0,0,59987,0,1,1 +1774139064.313767,1.46,4,3992.50,51.85,1660.23,2030.08,0.00,1.539588,0.028343,237,493,0.004402,0.008427,71551113,47796322,0,0,59989,0,1,1 +1774139069.317619,1.30,4,3992.50,51.56,1671.48,2018.85,0.00,3515728721007.119141,3515728721008.627930,21,0,0.005019,0.010293,71551248,47796523,0,0,59992,0,1,1 +1774139074.317672,1.65,4,3992.50,51.56,1671.50,2018.83,0.00,105255.126699,146507.939729,8659889,2545868,0.005010,0.010290,71551382,47796723,0,0,59994,0,1,1 +1774139079.317739,1.45,4,3992.50,51.58,1670.77,2019.55,0.00,3518389915685.255371,3518389874432.381348,199,0,0.004398,0.008427,71551500,47796890,0,0,59997,0,1,1 +1774139084.317641,1.25,4,3992.50,51.55,1672.23,2018.11,0.00,105262.261147,146512.466209,8660663,2546412,0.004997,0.010291,71551633,47797090,0,0,59999,0,1,1 +1774139089.315207,1.51,4,3992.50,51.74,1664.51,2025.79,0.00,3520150553097.303223,3520150511827.951660,70,0,0.005012,0.010305,71551767,47797291,0,0,60002,0,1,1 +1774139094.317223,1.05,4,3992.50,51.71,1665.21,2024.56,0.00,1.489731,0.028309,237,493,0.004334,0.008869,71551881,47797458,0,0,60004,0,1,1 +1774139099.312832,1.20,4,3992.50,51.71,1665.12,2024.66,0.00,0.468869,3521529748695.104980,238,2,0.005027,0.010471,71552016,47797660,0,0,60007,0,1,1 +1774139104.317045,0.95,4,3992.50,51.67,1666.57,2023.18,0.00,3515474511800.197754,3515474511802.203125,21,0,0.004790,0.009624,71552144,47797846,0,0,60009,0,1,1 +1774139109.316819,1.20,4,3992.50,51.62,1668.85,2020.93,0.00,2.006927,0.000195,238,2,0.003954,0.008830,71552254,47798019,0,0,60012,0,1,1 +1774139114.313094,1.10,4,3992.50,51.62,1668.88,2020.91,0.00,0.000000,0.000000,238,2,0.005026,0.010298,71552389,47798219,0,0,60014,0,1,1 +1774139119.317046,1.80,4,3992.50,51.68,1679.90,2023.29,0.00,3515658764072.432617,3515658764074.263184,199,0,0.004358,0.008393,71552505,47798384,0,0,60017,0,1,1 +1774139124.317915,14.76,4,3992.50,51.79,1671.59,2027.82,0.00,1.363142,0.028315,237,493,0.042849,55.681793,71555510,47804523,0,0,60019,0,1,1 +1774139129.317253,29.89,4,3992.50,51.68,1668.31,2023.20,0.00,3518902753381.909180,3518902753383.419434,21,0,0.058783,118.384787,71559847,47816668,0,0,60022,0,1,1 +1774139134.316754,8.24,4,3992.50,51.28,1681.72,2007.55,0.00,2.007036,0.000195,238,2,0.016099,31.050064,71561029,47819918,0,0,60024,0,1,1 +1774139139.317705,15.41,4,3992.50,53.05,1612.27,2077.02,0.00,3517767880372.555176,3517767880374.387207,199,0,40.062849,0.031690,71565626,47821576,0,0,60027,0,1,1 +1774139144.316142,11.77,4,3992.50,52.51,1631.34,2055.87,0.00,1.832409,0.000195,238,2,0.024925,40.082508,71567206,47826094,0,0,60029,0,1,1 +1774139149.315100,2.01,4,3992.50,52.36,1634.86,2050.02,0.00,0.000000,0.000000,238,2,0.005134,0.011594,71567346,47826317,0,0,60032,0,1,1 +1774139154.312834,0.80,4,3992.50,52.11,1644.56,2040.07,0.00,3520032355191.349121,3520032355193.356934,21,0,0.002748,0.007627,71567430,47826463,0,0,60034,0,1,1 +1774139159.316573,1.30,4,3992.50,52.04,1647.27,2037.36,0.00,2.005336,0.000195,238,2,0.003393,0.009514,71567532,47826645,0,0,60037,0,1,1 +1774139164.317436,0.90,4,3992.50,52.05,1646.81,2037.81,0.00,3517829985693.920898,3517829985695.879395,70,0,0.003420,0.010166,71567636,47826831,0,0,60039,0,1,1 +1774139169.317232,0.90,4,3992.50,52.05,1646.81,2037.81,0.00,3518580994288.051270,0.000000,21,0,0.002759,0.007634,71567721,47826978,0,0,60042,0,1,1 +1774139174.317156,1.15,4,3992.50,52.05,1646.82,2037.80,0.00,105283.405247,146751.721795,8660897,2548527,0.003471,0.009586,71567829,47827164,0,0,60044,0,1,1 +1774139179.316993,1.05,4,3992.50,52.04,1648.24,2037.54,0.00,3518551990659.281250,3518551949188.230957,238,2,0.002996,0.008263,71567922,47827323,0,0,60047,0,1,1 +1774139184.316770,1.30,4,3992.50,51.92,1653.25,2032.63,0.00,105280.394670,146762.074801,8660123,2548088,0.003318,0.009059,71568029,47827504,0,0,60049,0,1,1 +1774139189.315618,1.75,4,3992.50,51.93,1652.78,2033.11,0.00,3519247915098.097656,3519247873610.716797,21,0,0.002073,0.005796,71568093,47827619,0,0,60052,0,1,1 +1774139194.315727,0.85,4,3992.50,51.92,1653.24,2032.65,0.00,0.174996,0.000000,199,0,0.003614,0.009681,71568210,47827813,0,0,60054,0,1,1 +1774139199.317134,0.95,4,3992.50,51.92,1653.25,2032.65,0.00,3517447350657.776367,0.000000,21,0,0.003680,0.008301,71568297,47827963,0,0,60057,0,1,1 +1774139204.316902,2.46,4,3992.50,51.90,1653.98,2031.92,0.00,105286.687441,146762.365006,8660897,2548598,0.003446,0.009525,71568403,47828145,0,0,60059,0,1,1 +1774139209.317391,25.88,4,3992.50,58.04,1421.65,2272.46,0.00,3518093122046.552734,3518093080576.674805,199,0,41.462416,0.030678,71573017,47829874,0,0,60062,0,1,1 +1774139214.317330,32.71,4,3992.50,57.95,1431.31,2269.04,0.00,1.831858,0.000195,238,2,118.365777,0.031083,71585091,47831947,0,0,60064,0,1,1 +1774139219.317551,27.98,4,3992.50,58.34,1416.74,2283.98,0.00,105275.268983,146749.356773,8660903,2548813,119.160018,0.031250,71597378,47834163,0,0,60067,0,1,1 +1774139224.312833,28.57,4,3992.50,57.81,1437.32,2263.35,0.00,3521759974296.088867,3521759932781.000000,238,2,119.274694,0.021541,71609452,47835767,0,0,60069,0,1,1 +1774139229.314251,28.36,4,3992.50,57.87,1434.77,2265.81,0.00,105250.149559,146714.272745,8660907,2548836,119.938702,0.034208,71621960,47838224,0,0,60072,0,1,1 +1774139234.316385,28.52,4,3992.50,57.83,1436.32,2264.32,0.00,3516936422610.874512,3516936381153.175781,237,493,118.323358,0.042089,71634350,47841175,0,0,60074,0,1,1 +1774139239.313400,28.77,4,3992.50,58.59,1408.65,2294.12,0.00,3520539139029.433105,3520539139030.944336,21,0,120.240994,0.027092,71646833,47842977,0,0,60077,0,1,1 +1774139244.317064,28.60,4,3992.50,58.08,1426.60,2274.04,0.00,0.000000,0.000000,21,0,118.079701,0.030049,71659094,47845050,0,0,60079,0,1,1 +1774139249.313516,25.30,4,3992.50,57.83,1436.67,2264.09,0.00,0.000000,0.000000,21,0,120.252354,0.038378,71671413,47847677,0,0,60082,0,1,1 +1774139254.317475,2.45,4,3992.50,52.65,1639.46,2061.27,0.00,105194.768059,146640.033274,8660150,2548452,30.423384,0.010411,71674702,47848136,0,0,60084,0,1,1 +1774139259.315707,14.30,4,3992.50,53.07,1622.93,2077.81,0.00,3519681601779.088867,3519681560284.333984,238,2,6.049928,0.035684,71676831,47849769,0,0,60087,0,1,1 +1774139264.316558,32.39,4,3992.50,52.73,1636.18,2064.48,0.00,0.000000,0.000000,238,2,32.183116,0.141465,71687079,47857297,0,0,60089,0,1,1 +1774139269.316890,6.82,4,3992.50,52.49,1645.70,2054.97,0.00,3518203315910.237305,3518203315912.195801,70,0,2.029263,0.022273,71688108,47858106,0,0,60092,0,1,1 +1774139274.312964,1.36,4,3992.50,51.95,1660.13,2033.85,0.00,3521201813584.252930,0.000000,21,0,0.004568,0.009030,71688229,47858282,0,0,60094,0,1,1 +1774139279.317157,12.31,4,3992.50,52.48,1636.43,2054.63,0.00,0.000000,0.000000,21,0,0.030404,45.840110,71690199,47863480,0,0,60097,0,1,1 +1774139284.315051,29.54,4,3992.50,52.23,1637.96,2044.83,0.00,2.007682,0.000195,238,2,0.051885,119.223341,71694016,47875859,0,0,60099,0,1,1 +1774139289.313915,10.90,4,3992.50,52.02,1643.02,2036.79,0.00,3519236677397.973145,0.028131,237,493,0.011036,40.071193,71694669,47880133,0,0,60102,0,1,1 +1774139294.317378,5.02,4,3992.50,56.84,1455.01,2225.56,0.00,0.468133,3516001886040.025879,238,2,0.408838,0.010804,71694941,47880400,0,0,60104,0,1,1 +1774139299.316838,13.32,4,3992.50,53.60,1582.07,2098.60,0.00,0.000000,0.000000,238,2,39.667775,0.027157,71699243,47881855,0,0,60107,0,1,1 +1774139304.313679,1.71,4,3992.50,52.80,1613.21,2067.33,0.00,0.000000,0.000000,238,2,0.005974,0.013096,71699403,47882092,0,0,60109,0,1,1 +1774139309.317127,1.10,4,3992.50,52.62,1620.41,2060.18,0.00,3516012906028.042969,3516012906030.048828,21,0,0.004333,0.008394,71699517,47882257,0,0,60112,0,1,1 +1774139314.316763,0.90,4,3992.50,52.49,1625.66,2054.92,0.00,1.538491,0.028322,237,493,0.005010,0.010291,71699651,47882457,0,0,60114,0,1,1 +1774139319.317754,1.35,4,3992.50,52.49,1625.66,2054.92,0.00,3517739807818.637695,3517739807820.147949,21,0,0.005009,0.010298,71699785,47882658,0,0,60117,0,1,1 +1774139324.316290,0.80,4,3992.50,52.48,1625.68,2054.90,0.00,1.538830,0.028329,237,493,0.002881,0.006139,71699865,47882779,0,0,60119,0,1,1 +1774139329.316772,1.25,4,3992.50,52.11,1648.80,2040.32,0.00,0.000000,0.000000,237,493,0.005030,0.010295,71700001,47882980,0,0,60122,0,1,1 +1774139334.317111,1.15,4,3992.50,52.09,1649.75,2039.46,0.00,3518198152946.333984,3518198152947.795898,70,0,0.004379,0.008427,71700118,47883147,0,0,60124,0,1,1 +1774139339.314300,1.96,4,3992.50,52.09,1649.69,2039.50,0.00,0.127025,0.000000,199,0,0.005069,0.010331,71700256,47883350,0,0,60127,0,1,1 +1774139344.312862,0.80,4,3992.50,52.09,1649.73,2039.49,0.00,1.832363,0.000195,238,2,0.004337,0.008392,71700370,47883514,0,0,60129,0,1,1 +1774139349.314895,1.05,4,3992.50,52.09,1649.75,2039.47,0.00,3517007839919.522461,3517007839921.528809,21,0,0.005126,0.010361,71700512,47883720,0,0,60132,0,1,1 +1774139354.317087,1.05,4,3992.50,52.09,1649.89,2039.33,0.00,105252.257304,146898.934671,8660440,2551797,0.004995,0.010286,71700645,47883920,0,0,60134,0,1,1 +1774139359.317671,1.10,4,3992.50,52.18,1651.27,2043.00,0.00,3518026772201.296387,3518026730539.703613,237,493,0.004323,0.008881,71700758,47884088,0,0,60137,0,1,1 +1774139364.313696,0.85,4,3992.50,52.18,1651.21,2042.95,0.00,105380.653487,147080.362012,8660440,2551880,0.005026,0.010447,71700893,47884288,0,0,60139,0,1,1 +1774139369.316869,11.75,4,3992.50,52.24,1646.11,2045.42,0.00,3516205657589.304688,3516205615950.632812,70,0,0.025924,40.048026,71702437,47888901,0,0,60142,0,1,1 +1774139374.312901,0.95,4,3992.50,52.09,1652.02,2039.50,0.00,3521231648459.921387,0.000000,21,0,0.002749,0.007629,71702521,47889047,0,0,60144,0,1,1 +1774139379.313211,0.85,4,3992.50,51.84,1661.72,2029.81,0.00,1.538283,0.028319,237,493,0.003420,0.009533,71702625,47889230,0,0,60147,0,1,1 +1774139384.314496,0.85,4,3992.50,51.85,1661.47,2030.05,0.00,0.000000,0.000000,237,493,0.003432,0.009522,71702730,47889412,0,0,60149,0,1,1 +1774139389.312814,1.10,4,3992.50,51.95,1650.17,2033.98,0.00,0.000000,0.000000,237,493,0.002748,0.007636,71702814,47889559,0,0,60152,0,1,1 +1774139394.312815,0.90,4,3992.50,51.93,1650.57,2033.36,0.00,3518436388382.471191,3518436388383.806152,199,0,0.002721,0.007623,71702896,47889705,0,0,60154,0,1,1 +1774139399.312843,0.80,4,3992.50,51.93,1650.57,2033.35,0.00,105297.686171,147002.951528,8660446,2552338,0.002734,0.007633,71702979,47889852,0,0,60157,0,1,1 +1774139404.312905,2.16,4,3992.50,51.94,1650.52,2033.39,0.00,3518393718975.484863,3518393677270.677734,21,0,0.003466,0.009563,71703087,47890037,0,0,60159,0,1,1 +1774139409.312912,1.05,4,3992.50,51.94,1650.28,2033.64,0.00,0.000000,0.000000,21,0,0.003484,0.009596,71703196,47890224,0,0,60162,0,1,1 +1774139414.317718,3.00,4,3992.50,51.94,1650.29,2033.64,0.00,1.536902,0.028293,237,493,0.002975,0.007835,71703296,47890386,0,0,60164,0,1,1 +1774139419.317780,2.71,4,3992.50,51.94,1643.91,2033.62,0.00,3518394096591.613281,3518394096592.948242,199,0,0.003446,0.009534,71703402,47890569,0,0,60167,0,1,1 +1774139424.317534,1.50,4,3992.50,51.95,1643.71,2033.82,0.00,105307.673336,147011.170425,8661244,2552965,0.003433,0.010008,71703507,47890754,0,0,60169,0,1,1 +1774139429.317468,2.31,4,3992.50,51.91,1645.21,2032.32,0.00,3518483856234.359863,3518483856238.447754,8660470,2552474,0.004920,0.008819,71703635,47890930,0,0,60172,0,1,1 +1774139434.312918,26.17,4,3992.50,57.61,1430.63,2255.62,0.00,3521641388034.547852,3521641346289.690918,237,493,43.709459,0.032386,71708458,47892702,0,0,60174,0,1,1 +1774139439.312886,31.69,4,3992.50,57.59,1437.88,2254.81,0.00,0.468460,3518459729840.210938,238,2,118.163840,0.056726,71720435,47896778,0,0,60177,0,1,1 +1774139444.316829,28.41,4,3992.50,57.81,1429.89,2263.37,0.00,105213.623512,146888.224818,8660483,2552617,119.072725,0.039439,71732723,47899564,0,0,60179,0,1,1 +1774139449.315384,28.55,4,3992.50,57.81,1429.68,2263.56,0.00,4.110465,0.169385,8661257,2553126,119.195977,0.048173,71744731,47903208,0,0,60182,0,1,1 +1774139454.317309,29.31,4,3992.50,57.40,1441.41,2247.43,0.00,3517082542147.803223,3517082500462.345215,21,0,119.117988,0.034182,71756877,47905714,0,0,60184,0,1,1 +1774139459.313606,28.98,4,3992.50,57.44,1439.58,2249.09,0.00,0.000000,0.000000,21,0,119.253075,0.043218,71769063,47908837,0,0,60187,0,1,1 +1774139464.314879,28.85,4,3992.50,57.45,1439.27,2249.43,0.00,0.000000,0.000000,21,0,119.132727,0.050872,71781061,47912572,0,0,60189,0,1,1 +1774139469.316775,28.49,4,3992.50,57.50,1437.40,2251.30,0.00,0.174934,0.000000,199,0,119.114441,0.043865,71792973,47915917,0,0,60192,0,1,1 +1774139474.313156,26.48,4,3992.50,57.91,1421.60,2267.18,0.00,3520985750479.811523,0.000000,21,0,119.650586,0.041371,71805124,47918978,0,0,60194,0,1,1 +1774139479.313588,2.21,4,3992.50,53.01,1612.81,2075.65,0.00,1.538246,0.028318,237,493,29.043144,0.018671,71808226,47920004,0,0,60197,0,1,1 +1774139484.317110,19.56,4,3992.50,51.68,1664.70,2023.50,0.00,3515960748257.530762,3515960748258.865234,199,0,12.076406,0.065660,71812373,47923234,0,0,60199,0,1,1 +1774139489.317438,10.18,4,3992.50,52.22,1643.75,2044.45,0.00,105296.148581,146995.258184,8661306,2553793,4.115698,0.029334,71813974,47924483,0,0,60202,0,1,1 +1774139494.317174,19.94,4,3992.50,51.77,1661.41,2026.78,0.00,3518623106442.112793,3518623064738.187500,70,0,24.067596,0.105420,71821793,47930306,0,0,60204,0,1,1 +1774139499.312836,2.96,4,3992.50,50.93,1694.30,1993.89,0.00,105390.738711,147133.005725,8660572,2554042,0.005719,0.011707,71821943,47930531,0,0,60207,0,1,1 +1774139504.317034,14.49,4,3992.50,51.87,1654.18,2030.84,0.00,3515485740106.390625,3515485698435.371582,21,0,0.037115,53.045528,71824375,47936502,0,0,60209,0,1,1 +1774139509.315560,26.97,4,3992.50,56.36,1472.80,2206.46,0.00,0.000000,0.000000,21,0,0.045230,123.806008,71827862,47949095,0,0,60212,0,1,1 +1774139514.313492,18.64,4,3992.50,56.14,1476.51,2198.17,0.00,0.175072,0.000000,199,0,4.626394,28.269643,71829277,47952788,0,0,60214,0,1,1 +1774139519.314235,6.57,4,3992.50,51.26,1667.71,2006.97,0.00,1.363176,0.028316,237,493,35.448522,0.017833,71832965,47953841,0,0,60217,0,1,1 +1774139524.314716,1.60,4,3992.50,51.10,1673.87,2000.79,0.00,105306.244306,147197.057898,8660697,2555657,0.005836,0.012648,71833124,47954073,0,0,60219,0,1,1 +1774139529.312904,1.30,4,3992.50,51.06,1675.62,1999.02,0.00,0.000000,0.007620,8660697,2555666,0.005024,0.010304,71833259,47954274,0,0,60222,0,1,1 +1774139534.317491,0.95,4,3992.50,51.11,1673.76,2000.91,0.00,3515212556203.909668,3515212514346.963867,238,2,0.004332,0.008382,71833373,47954438,0,0,60224,0,1,1 +1774139539.316842,1.65,4,3992.50,51.34,1664.91,2010.15,0.00,105329.568563,147230.434547,8660699,2555705,0.005036,0.010302,71833509,47954639,0,0,60227,0,1,1 +1774139544.316433,1.56,4,3992.50,51.49,1658.64,2016.03,0.00,3518724555915.462402,3518724514018.618652,21,0,0.004664,0.009641,71833636,47954826,0,0,60229,0,1,1 +1774139549.312857,1.00,4,3992.50,51.52,1657.69,2017.00,0.00,0.048081,0.000000,70,0,0.004731,0.009096,71833761,47955007,0,0,60232,0,1,1 +1774139554.316803,1.10,4,3992.50,51.57,1655.73,2018.96,0.00,1.489157,0.028298,237,493,0.005617,0.011391,71833908,47955229,0,0,60234,0,1,1 +1774139559.314026,0.95,4,3992.50,51.56,1655.86,2018.82,0.00,3520392381300.319824,3520392381301.782715,70,0,0.004400,0.009099,71834026,47955402,0,0,60237,0,1,1 +1774139564.317716,1.05,4,3992.50,51.56,1655.89,2018.80,0.00,3515842323876.802734,0.000000,21,0,0.005019,0.010283,71834161,47955602,0,0,60239,0,1,1 +1774139569.312934,1.40,4,3992.50,51.70,1650.76,2024.07,0.00,1.539852,0.028347,237,493,0.005127,0.010350,71834303,47955806,0,0,60242,0,1,1 +1774139574.312858,1.05,4,3992.50,51.63,1653.26,2021.46,0.00,3518491241647.961426,3518491241649.471680,21,0,0.004323,0.008390,71834416,47955970,0,0,60244,0,1,1 +1774139579.316732,1.10,4,3992.50,51.64,1652.80,2021.93,0.00,0.048010,0.000000,70,0,0.005039,0.010300,71834553,47956172,0,0,60247,0,1,1 +1774139584.313648,1.46,4,3992.50,51.62,1653.77,2020.96,0.00,1.491252,0.028338,237,493,0.005038,0.010297,71834689,47956372,0,0,60249,0,1,1 +1774139589.315263,0.80,4,3992.50,51.62,1653.69,2021.04,0.00,3517300889959.314941,3517300889960.776367,70,0,0.004118,0.007763,71834797,47956525,0,0,60252,0,1,1 +1774139594.315078,11.75,4,3992.50,51.99,1637.51,2035.38,0.00,1.958862,0.000195,238,2,0.028122,40.069340,71836652,47960956,0,0,60254,0,1,1 +1774139599.312832,1.55,4,3992.50,52.09,1633.59,2039.29,0.00,105363.299697,147312.017071,8660707,2556302,0.004374,0.011255,71836781,47961170,0,0,60257,0,1,1 +1774139604.314759,1.00,4,3992.50,51.86,1642.44,2030.43,0.00,3517081701873.669922,3517081659961.909180,70,0,0.003628,0.010052,71836892,47961363,0,0,60259,0,1,1 +1774139609.312908,2.11,4,3992.50,51.46,1658.07,2014.75,0.00,1.959514,0.000195,238,2,0.003434,0.009538,71836997,47961546,0,0,60262,0,1,1 +1774139614.317150,1.00,4,3992.50,51.50,1656.66,2016.20,0.00,3515454967576.908203,3515454967578.738770,199,0,0.002765,0.007625,71837083,47961693,0,0,60264,0,1,1 +1774139619.312897,0.95,4,3992.50,51.31,1663.98,2008.88,0.00,1.833395,0.000195,238,2,0.003436,0.009542,71837188,47961876,0,0,60267,0,1,1 +1774139624.312903,1.10,4,3992.50,51.31,1663.77,2009.09,0.00,3518433050797.188477,3518433050799.020508,199,0,0.003433,0.010168,71837293,47962062,0,0,60269,0,1,1 +1774139629.316953,1.35,4,3992.50,51.71,1652.63,2024.59,0.00,3515589922058.379883,0.000000,21,0,0.002757,0.007658,71837378,47962211,0,0,60272,0,1,1 +1774139634.312818,1.05,4,3992.50,51.71,1648.54,2024.76,0.00,0.000000,0.000000,21,0,0.003486,0.009594,71837487,47962397,0,0,60274,0,1,1 +1774139639.316451,1.10,4,3992.50,51.63,1651.85,2021.45,0.00,105245.621036,147145.127850,8661482,2556952,0.003506,0.009620,71837598,47962586,0,0,60277,0,1,1 +1774139644.312903,1.05,4,3992.50,51.50,1657.02,2016.28,0.00,3520935387490.603516,3520935345530.707031,199,0,0.002873,0.007729,71837690,47962740,0,0,60279,0,1,1 +1774139649.312933,1.35,4,3992.50,51.52,1656.29,2017.01,0.00,1.831825,0.000195,238,2,0.003472,0.009567,71837798,47962926,0,0,60282,0,1,1 +1774139654.317578,0.95,4,3992.50,51.52,1656.29,2017.01,0.00,3515171642546.688477,3515171642548.645508,70,0,0.003405,0.009490,71837901,47963106,0,0,60284,0,1,1 +1774139659.316776,2.01,4,3992.50,51.52,1663.18,2017.20,0.00,105334.816774,147275.705486,8660708,2556513,0.004130,0.008340,71838008,47963269,0,0,60287,0,1,1 +1774139664.313432,27.00,4,3992.50,58.00,1416.78,2270.88,0.00,3520792157918.910156,3520792115956.676758,70,0,48.908860,0.033531,71843433,47965288,0,0,60289,0,1,1 +1774139669.316466,31.80,4,3992.50,58.40,1408.07,2286.49,0.00,3516303111077.231934,0.000000,21,0,118.895274,0.034510,71855696,47967581,0,0,60292,0,1,1 +1774139674.316890,28.29,4,3992.50,57.76,1433.03,2261.59,0.00,0.000000,0.000000,21,0,119.155467,0.024223,71867944,47969357,0,0,60294,0,1,1 +1774139679.317198,29.11,4,3992.50,57.92,1426.87,2267.71,0.00,0.000000,0.000000,21,0,119.157878,0.029848,71880164,47971441,0,0,60297,0,1,1 +1774139684.316490,28.78,4,3992.50,58.00,1423.67,2270.91,0.00,2.007120,0.000195,238,2,119.382097,0.021231,71892454,47972872,0,0,60299,0,1,1 +1774139689.316732,28.69,4,3992.50,57.81,1431.13,2263.35,0.00,0.000000,0.000000,238,2,118.960094,0.020854,71904681,47974178,0,0,60302,0,1,1 +1774139694.317129,28.91,4,3992.50,58.32,1411.15,2283.21,0.00,3518158341356.809082,3518158341358.640625,199,0,119.354198,0.029952,71916705,47976056,0,0,60304,0,1,1 +1774139699.313058,28.92,4,3992.50,57.95,1425.55,2268.85,0.00,1.364490,0.028343,237,493,119.064272,0.038813,71928843,47978923,0,0,60307,0,1,1 +1774139704.316784,23.04,4,3992.50,57.90,1427.53,2266.93,0.00,3515816907105.291992,3515816907106.800781,21,0,119.483798,0.046560,71941191,47982407,0,0,60309,0,1,1 +1774139709.312822,4.21,4,3992.50,52.38,1643.48,2050.96,0.00,0.175139,0.000000,199,0,23.060614,0.018401,71943792,47983296,0,0,60312,0,1,1 +1774139714.316402,31.05,4,3992.50,52.19,1651.10,2043.35,0.00,3515919461066.555176,0.000000,70,0,30.165397,0.136537,71953556,47990587,0,0,60314,0,1,1 +1774139719.315392,10.66,4,3992.50,52.64,1634.79,2061.16,0.00,1.959185,0.000195,238,2,10.069666,0.049096,71956881,47993107,0,0,60317,0,1,1 +1774139724.316372,3.11,4,3992.50,52.57,1637.68,2058.30,0.00,105300.345500,147224.540156,8661602,2558188,0.007341,0.012128,71957045,47993333,0,0,60319,0,1,1 +1774139729.315338,2.01,4,3992.50,51.97,1661.31,2034.70,0.00,3519164750698.378418,3519164708759.121582,199,0,0.007210,0.011295,71957225,47993558,0,0,60322,0,1,1 +1774139734.312912,2.41,4,3992.50,51.92,1663.28,2032.68,0.00,3520145598904.842285,0.000000,70,0,0.012129,4.420730,71957842,47994429,0,0,60324,0,1,1 +1774139739.317578,28.41,4,3992.50,52.09,1648.29,2039.61,0.00,1.956963,0.000195,238,2,0.034260,118.063303,71960221,48006784,0,0,60327,0,1,1 +1774139744.317487,21.12,4,3992.50,52.44,1628.96,2053.06,0.00,105322.915965,147435.531797,8661613,2559833,0.021448,82.525379,71961694,48015503,0,0,60329,0,1,1 +1774139749.312824,2.16,4,3992.50,51.92,1650.67,2032.61,0.00,3521721499769.808594,3521721457620.654297,21,0,0.006854,0.009956,71961842,48015698,0,0,60332,0,1,1 +1774139754.315579,14.44,4,3992.50,52.36,1634.11,2050.09,0.00,0.000000,0.000000,21,0,40.044068,0.027878,71966358,48017119,0,0,60334,0,1,1 +1774139759.316966,2.26,4,3992.50,52.35,1634.55,2049.69,0.00,105312.322596,147418.692018,8661817,2560174,0.004551,0.009043,71966478,48017297,0,0,60337,0,1,1 +1774139764.317589,1.00,4,3992.50,52.35,1634.56,2049.67,0.00,3517998988132.481445,3517998946017.668457,238,2,0.005022,0.010289,71966613,48017497,0,0,60339,0,1,1 +1774139769.317254,1.60,4,3992.50,52.16,1641.96,2042.26,0.00,3518672830473.722656,3518672830475.681641,70,0,0.004565,0.009021,71966734,48017673,0,0,60342,0,1,1 +1774139774.317402,1.15,4,3992.50,52.16,1642.04,2042.19,0.00,105338.373394,147455.351870,8661817,2560304,0.004844,0.009731,71966866,48017866,0,0,60344,0,1,1 +1774139779.315497,1.96,4,3992.50,52.49,1635.18,2055.27,0.00,3519777609438.311523,3519777567302.080078,238,2,0.005045,0.010343,71967003,48018070,0,0,60347,0,1,1 +1774139784.312824,0.80,4,3992.50,52.35,1640.60,2049.78,0.00,3520319580790.218750,3520319580792.226562,21,0,0.004338,0.008394,71967117,48018234,0,0,60349,0,1,1 +1774139789.317073,1.50,4,3992.50,52.18,1647.31,2043.05,0.00,0.000000,0.000000,21,0,0.005687,0.011213,71967255,48018437,0,0,60352,0,1,1 +1774139794.316886,1.00,4,3992.50,52.21,1646.18,2044.19,0.00,105341.405614,147465.440574,8661045,2559955,0.005116,0.010366,71967396,48018643,0,0,60354,0,1,1 diff --git a/evaluation/data/pipeline_full_cycle_run2/pipeline.duckdb b/evaluation/data/pipeline_full_cycle_run2/pipeline.duckdb new file mode 100644 index 0000000..c1ce632 Binary files /dev/null and b/evaluation/data/pipeline_full_cycle_run2/pipeline.duckdb differ diff --git a/evaluation/data/pipeline_full_cycle_run2/pipeline.log b/evaluation/data/pipeline_full_cycle_run2/pipeline.log new file mode 100644 index 0000000..bbfc33a --- /dev/null +++ b/evaluation/data/pipeline_full_cycle_run2/pipeline.log @@ -0,0 +1,33203 @@ +2026/03/21 18:05:48 detector: Ensemble method=sead contamination=0.15 +2026/03/21 18:05:48 detector: SEAD η=0.100 λ=0.010 quantile_window=300 +2026/03/21 18:05:48 detector: auto-scaling enabled +2026/03/21 18:05:48 pipeline started – waiting for SIGINT / SIGTERM +2026/03/21 18:05:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:05:53 ───────────────────────────────────────────────── +2026/03/21 18:05:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:05:58 [metric_collector] {"stage_name":"metric_collector","events_processed":4,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0.8,"last_update":"2026-03-21T18:05:53.869874932Z"} +2026/03/21 18:05:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:05:53.879053046Z"} +2026/03/21 18:05:58 [transform_engine] {"stage_name":"transform_engine","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:05:53.965167454Z"} +2026/03/21 18:05:58 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:05:53.966272241Z"} +2026/03/21 18:05:58 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:05:53.869426754Z"} +2026/03/21 18:05:58 ───────────────────────────────────────────────── +2026/03/21 18:06:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:06:03 [metric_collector] {"stage_name":"metric_collector","events_processed":9,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1.8,"last_update":"2026-03-21T18:05:58.869716781Z"} +2026/03/21 18:06:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:05:58.878723076Z"} +2026/03/21 18:06:03 [transform_engine] {"stage_name":"transform_engine","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:05:58.966009829Z"} +2026/03/21 18:06:03 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:05:58.96599983Z"} +2026/03/21 18:06:03 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:05:58.869413109Z"} +2026/03/21 18:06:03 ───────────────────────────────────────────────── +2026/03/21 18:06:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:06:08 [metric_collector] {"stage_name":"metric_collector","events_processed":14,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2.8,"last_update":"2026-03-21T18:06:03.870134143Z"} +2026/03/21 18:06:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:06:03.878395941Z"} +2026/03/21 18:06:08 [transform_engine] {"stage_name":"transform_engine","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:06:03.965735626Z"} +2026/03/21 18:06:08 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:06:03.965725677Z"} +2026/03/21 18:06:08 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:06:03.869413662Z"} +2026/03/21 18:06:08 ───────────────────────────────────────────────── +2026/03/21 18:06:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:06:13 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:06:08.869896874Z"} +2026/03/21 18:06:13 [metric_collector] {"stage_name":"metric_collector","events_processed":19,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3.8,"last_update":"2026-03-21T18:06:08.869772305Z"} +2026/03/21 18:06:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":10,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:06:08.879061932Z"} +2026/03/21 18:06:13 [transform_engine] {"stage_name":"transform_engine","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:06:08.965305328Z"} +2026/03/21 18:06:13 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:06:08.96529618Z"} +2026/03/21 18:06:13 ───────────────────────────────────────────────── +2026/03/21 18:06:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:06:18 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:06:13.965281191Z"} +2026/03/21 18:06:18 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:06:13.870345173Z"} +2026/03/21 18:06:18 [metric_collector] {"stage_name":"metric_collector","events_processed":24,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4.8,"last_update":"2026-03-21T18:06:13.87085556Z"} +2026/03/21 18:06:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":12,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:06:13.879705145Z"} +2026/03/21 18:06:18 [transform_engine] {"stage_name":"transform_engine","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:06:13.965292223Z"} +2026/03/21 18:06:18 ───────────────────────────────────────────────── +2026/03/21 18:06:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:06:23 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:06:18.870280781Z"} +2026/03/21 18:06:23 [metric_collector] {"stage_name":"metric_collector","events_processed":29,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5.8,"last_update":"2026-03-21T18:06:18.870644447Z"} +2026/03/21 18:06:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":14,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:06:18.878948647Z"} +2026/03/21 18:06:23 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":66.42073900000001,"throughput_eps":0,"last_update":"2026-03-21T18:06:19.031495366Z"} +2026/03/21 18:06:23 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:06:18.966261791Z"} +2026/03/21 18:06:23 ───────────────────────────────────────────────── +2026/03/21 18:06:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:06:28 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:06:23.869450063Z"} +2026/03/21 18:06:28 [metric_collector] {"stage_name":"metric_collector","events_processed":34,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6.8,"last_update":"2026-03-21T18:06:23.869793371Z"} +2026/03/21 18:06:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":16,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:06:23.879008996Z"} +2026/03/21 18:06:28 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":66.42073900000001,"throughput_eps":0,"last_update":"2026-03-21T18:06:23.965168641Z"} +2026/03/21 18:06:28 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.225371,"throughput_eps":0,"last_update":"2026-03-21T18:06:23.965341522Z"} +2026/03/21 18:06:28 ───────────────────────────────────────────────── +Saved state: 1 clusters, 1 messages, reason: cluster_created +Saved state: 2 clusters, 2 messages, reason: cluster_created +Saved state: 2 clusters, 3 messages, reason: cluster_template_changed +Saved state: 3 clusters, 4 messages, reason: cluster_created +Saved state: 4 clusters, 5 messages, reason: cluster_created +2026/03/21 18:06:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:06:33 [metric_collector] {"stage_name":"metric_collector","events_processed":39,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7.8,"last_update":"2026-03-21T18:06:28.869739095Z"} +2026/03/21 18:06:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":18,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:06:28.879577574Z"} +2026/03/21 18:06:33 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":66.42073900000001,"throughput_eps":0,"last_update":"2026-03-21T18:06:28.965893387Z"} +2026/03/21 18:06:33 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.225371,"throughput_eps":0,"last_update":"2026-03-21T18:06:28.966023176Z"} +2026/03/21 18:06:33 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:06:28.869623884Z"} +2026/03/21 18:06:33 ───────────────────────────────────────────────── +2026/03/21 18:06:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:06:38 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":66.42073900000001,"throughput_eps":0,"last_update":"2026-03-21T18:06:33.965582333Z"} +2026/03/21 18:06:38 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.225371,"throughput_eps":0,"last_update":"2026-03-21T18:06:33.965563226Z"} +2026/03/21 18:06:38 [log_collector] {"stage_name":"log_collector","events_processed":5,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1,"last_update":"2026-03-21T18:06:33.869872443Z"} +2026/03/21 18:06:38 [metric_collector] {"stage_name":"metric_collector","events_processed":44,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":8.8,"last_update":"2026-03-21T18:06:33.873743639Z"} +2026/03/21 18:06:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":20,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:06:33.882333095Z"} +2026/03/21 18:06:38 ───────────────────────────────────────────────── +2026/03/21 18:06:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:06:43 [metric_collector] {"stage_name":"metric_collector","events_processed":49,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":9.8,"last_update":"2026-03-21T18:06:38.869940015Z"} +2026/03/21 18:06:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":22,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:06:38.876196561Z"} +2026/03/21 18:06:43 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":66.42073900000001,"throughput_eps":0,"last_update":"2026-03-21T18:06:38.965392653Z"} +2026/03/21 18:06:43 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.225371,"throughput_eps":0,"last_update":"2026-03-21T18:06:38.965381101Z"} +2026/03/21 18:06:43 [log_collector] {"stage_name":"log_collector","events_processed":5,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1,"last_update":"2026-03-21T18:06:38.869671922Z"} +2026/03/21 18:06:43 ───────────────────────────────────────────────── +2026/03/21 18:06:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:06:48 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":66.42073900000001,"throughput_eps":0,"last_update":"2026-03-21T18:06:43.966037024Z"} +2026/03/21 18:06:48 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.225371,"throughput_eps":0,"last_update":"2026-03-21T18:06:43.966051192Z"} +2026/03/21 18:06:48 [log_collector] {"stage_name":"log_collector","events_processed":5,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1,"last_update":"2026-03-21T18:06:43.869409446Z"} +2026/03/21 18:06:48 [metric_collector] {"stage_name":"metric_collector","events_processed":54,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":10.8,"last_update":"2026-03-21T18:06:43.869780246Z"} +2026/03/21 18:06:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":24,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:06:43.87685499Z"} +2026/03/21 18:06:48 ───────────────────────────────────────────────── +2026/03/21 18:06:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:06:53 [log_collector] {"stage_name":"log_collector","events_processed":5,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1,"last_update":"2026-03-21T18:06:48.870053601Z"} +2026/03/21 18:06:53 [metric_collector] {"stage_name":"metric_collector","events_processed":59,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":11.8,"last_update":"2026-03-21T18:06:48.87042401Z"} +2026/03/21 18:06:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":26,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:06:48.879491372Z"} +2026/03/21 18:06:53 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":75.51919960000001,"throughput_eps":0,"last_update":"2026-03-21T18:06:49.077606128Z"} +2026/03/21 18:06:53 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.225371,"throughput_eps":0,"last_update":"2026-03-21T18:06:48.9656693Z"} +2026/03/21 18:06:53 ───────────────────────────────────────────────── +2026/03/21 18:06:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:06:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":28,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:06:53.877574112Z"} +2026/03/21 18:06:58 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":75.51919960000001,"throughput_eps":0,"last_update":"2026-03-21T18:06:53.965790156Z"} +2026/03/21 18:06:58 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.562523,"throughput_eps":0,"last_update":"2026-03-21T18:06:53.965780978Z"} +2026/03/21 18:06:58 [log_collector] {"stage_name":"log_collector","events_processed":5,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1,"last_update":"2026-03-21T18:06:53.870075987Z"} +2026/03/21 18:06:58 [metric_collector] {"stage_name":"metric_collector","events_processed":64,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":12.8,"last_update":"2026-03-21T18:06:53.870493116Z"} +2026/03/21 18:06:58 ───────────────────────────────────────────────── +2026/03/21 18:07:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:07:03 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.562523,"throughput_eps":0,"last_update":"2026-03-21T18:06:58.965366362Z"} +2026/03/21 18:07:03 [log_collector] {"stage_name":"log_collector","events_processed":5,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1,"last_update":"2026-03-21T18:06:58.86974417Z"} +2026/03/21 18:07:03 [metric_collector] {"stage_name":"metric_collector","events_processed":69,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":13.8,"last_update":"2026-03-21T18:06:58.869940887Z"} +2026/03/21 18:07:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":30,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:06:58.876228954Z"} +2026/03/21 18:07:03 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":75.51919960000001,"throughput_eps":0,"last_update":"2026-03-21T18:06:58.965375389Z"} +2026/03/21 18:07:03 ───────────────────────────────────────────────── +2026/03/21 18:07:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:07:08 [metric_collector] {"stage_name":"metric_collector","events_processed":74,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":14.8,"last_update":"2026-03-21T18:07:03.869661601Z"} +2026/03/21 18:07:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":32,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:07:03.876961607Z"} +2026/03/21 18:07:08 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":75.51919960000001,"throughput_eps":0,"last_update":"2026-03-21T18:07:03.96519894Z"} +2026/03/21 18:07:08 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.562523,"throughput_eps":0,"last_update":"2026-03-21T18:07:03.966280452Z"} +2026/03/21 18:07:08 [log_collector] {"stage_name":"log_collector","events_processed":5,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1,"last_update":"2026-03-21T18:07:03.869451159Z"} +2026/03/21 18:07:08 ───────────────────────────────────────────────── +Saved state: 5 clusters, 6 messages, reason: cluster_created +2026/03/21 18:07:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:07:13 [log_collector] {"stage_name":"log_collector","events_processed":5,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1,"last_update":"2026-03-21T18:07:08.869436484Z"} +2026/03/21 18:07:13 [metric_collector] {"stage_name":"metric_collector","events_processed":79,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":15.8,"last_update":"2026-03-21T18:07:08.869662137Z"} +2026/03/21 18:07:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":34,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:07:08.882079907Z"} +2026/03/21 18:07:13 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":75.51919960000001,"throughput_eps":0,"last_update":"2026-03-21T18:07:08.965254021Z"} +2026/03/21 18:07:13 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.562523,"throughput_eps":0,"last_update":"2026-03-21T18:07:08.965271895Z"} +2026/03/21 18:07:13 ───────────────────────────────────────────────── +Saved state: 6 clusters, 9 messages, reason: cluster_created +Saved state: 6 clusters, 10 messages, reason: cluster_template_changed +Saved state: 7 clusters, 11 messages, reason: cluster_created +Saved state: 7 clusters, 12 messages, reason: cluster_template_changed +Saved state: 7 clusters, 13 messages, reason: cluster_template_changed +Saved state: 7 clusters, 14 messages, reason: cluster_template_changed +Saved state: 8 clusters, 15 messages, reason: cluster_created +Saved state: 8 clusters, 16 messages, reason: cluster_template_changed +2026/03/21 18:07:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:07:18 [log_collector] {"stage_name":"log_collector","events_processed":8,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1.6,"last_update":"2026-03-21T18:07:13.869465878Z"} +2026/03/21 18:07:18 [metric_collector] {"stage_name":"metric_collector","events_processed":84,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":16.8,"last_update":"2026-03-21T18:07:13.869735294Z"} +2026/03/21 18:07:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":36,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:07:13.876154882Z"} +2026/03/21 18:07:18 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":75.51919960000001,"throughput_eps":0,"last_update":"2026-03-21T18:07:13.965398865Z"} +2026/03/21 18:07:18 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.562523,"throughput_eps":0,"last_update":"2026-03-21T18:07:13.965439523Z"} +2026/03/21 18:07:18 ───────────────────────────────────────────────── +Saved state: 9 clusters, 49 messages, reason: cluster_created +2026/03/21 18:07:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:07:23 [log_collector] {"stage_name":"log_collector","events_processed":180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":36,"last_update":"2026-03-21T18:07:23.869809433Z"} +2026/03/21 18:07:23 [metric_collector] {"stage_name":"metric_collector","events_processed":89,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":17.8,"last_update":"2026-03-21T18:07:18.870751604Z"} +2026/03/21 18:07:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":38,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:07:18.878663581Z"} +2026/03/21 18:07:23 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":82.49808728000001,"throughput_eps":0,"last_update":"2026-03-21T18:07:19.076298788Z"} +2026/03/21 18:07:23 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.562523,"throughput_eps":0,"last_update":"2026-03-21T18:07:18.965872645Z"} +2026/03/21 18:07:23 ───────────────────────────────────────────────── +2026/03/21 18:07:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:07:28 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.4438812,"throughput_eps":0,"last_update":"2026-03-21T18:07:23.965909922Z"} +2026/03/21 18:07:28 [log_collector] {"stage_name":"log_collector","events_processed":180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":36,"last_update":"2026-03-21T18:07:23.869809433Z"} +2026/03/21 18:07:28 [metric_collector] {"stage_name":"metric_collector","events_processed":94,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":18.8,"last_update":"2026-03-21T18:07:23.870239958Z"} +2026/03/21 18:07:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":40,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:07:23.876930937Z"} +2026/03/21 18:07:28 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":82.49808728000001,"throughput_eps":0,"last_update":"2026-03-21T18:07:23.965891897Z"} +2026/03/21 18:07:28 ───────────────────────────────────────────────── +2026/03/21 18:07:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:07:33 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":82.49808728000001,"throughput_eps":0,"last_update":"2026-03-21T18:07:28.965520264Z"} +2026/03/21 18:07:33 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.4438812,"throughput_eps":0,"last_update":"2026-03-21T18:07:28.965512188Z"} +2026/03/21 18:07:33 [log_collector] {"stage_name":"log_collector","events_processed":368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":73.6,"last_update":"2026-03-21T18:07:28.869777913Z"} +2026/03/21 18:07:33 [metric_collector] {"stage_name":"metric_collector","events_processed":99,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":19.8,"last_update":"2026-03-21T18:07:28.870194771Z"} +2026/03/21 18:07:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":42,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:07:28.877393061Z"} +2026/03/21 18:07:33 ───────────────────────────────────────────────── +2026/03/21 18:07:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:07:38 [metric_collector] {"stage_name":"metric_collector","events_processed":104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":20.8,"last_update":"2026-03-21T18:07:33.870100033Z"} +2026/03/21 18:07:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":44,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:07:33.878878871Z"} +2026/03/21 18:07:38 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":82.49808728000001,"throughput_eps":0,"last_update":"2026-03-21T18:07:33.965056068Z"} +2026/03/21 18:07:38 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.4438812,"throughput_eps":0,"last_update":"2026-03-21T18:07:33.966211251Z"} +2026/03/21 18:07:38 [log_collector] {"stage_name":"log_collector","events_processed":368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":73.6,"last_update":"2026-03-21T18:07:33.869726658Z"} +2026/03/21 18:07:38 ───────────────────────────────────────────────── +2026/03/21 18:07:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:07:43 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":82.49808728000001,"throughput_eps":0,"last_update":"2026-03-21T18:07:38.965832252Z"} +2026/03/21 18:07:43 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.4438812,"throughput_eps":0,"last_update":"2026-03-21T18:07:38.965821922Z"} +2026/03/21 18:07:43 [log_collector] {"stage_name":"log_collector","events_processed":368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":73.6,"last_update":"2026-03-21T18:07:38.86958847Z"} +2026/03/21 18:07:43 [metric_collector] {"stage_name":"metric_collector","events_processed":109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":21.8,"last_update":"2026-03-21T18:07:38.869804514Z"} +2026/03/21 18:07:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":46,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:07:38.878610784Z"} +2026/03/21 18:07:43 ───────────────────────────────────────────────── +2026/03/21 18:07:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:07:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":48,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:07:43.879605021Z"} +2026/03/21 18:07:48 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":82.49808728000001,"throughput_eps":0,"last_update":"2026-03-21T18:07:43.965800452Z"} +2026/03/21 18:07:48 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.4438812,"throughput_eps":0,"last_update":"2026-03-21T18:07:43.96578859Z"} +2026/03/21 18:07:48 [log_collector] {"stage_name":"log_collector","events_processed":368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":73.6,"last_update":"2026-03-21T18:07:43.869900189Z"} +2026/03/21 18:07:48 [metric_collector] {"stage_name":"metric_collector","events_processed":114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":22.8,"last_update":"2026-03-21T18:07:43.870136542Z"} +2026/03/21 18:07:48 ───────────────────────────────────────────────── +2026/03/21 18:07:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:07:53 [log_collector] {"stage_name":"log_collector","events_processed":368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":73.6,"last_update":"2026-03-21T18:07:53.869961102Z"} +2026/03/21 18:07:53 [metric_collector] {"stage_name":"metric_collector","events_processed":119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":23.8,"last_update":"2026-03-21T18:07:48.870317725Z"} +2026/03/21 18:07:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":50,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:07:48.879076895Z"} +2026/03/21 18:07:53 [transform_engine] {"stage_name":"transform_engine","events_processed":4,"events_dropped":0,"avg_latency_ms":88.77362782400002,"throughput_eps":0,"last_update":"2026-03-21T18:07:49.07904559Z"} +2026/03/21 18:07:53 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.4438812,"throughput_eps":0,"last_update":"2026-03-21T18:07:48.965294941Z"} +2026/03/21 18:07:53 ───────────────────────────────────────────────── +2026/03/21 18:07:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:07:58 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.78433596,"throughput_eps":0,"last_update":"2026-03-21T18:07:53.965790189Z"} +2026/03/21 18:07:58 [log_collector] {"stage_name":"log_collector","events_processed":368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":73.6,"last_update":"2026-03-21T18:07:53.869961102Z"} +2026/03/21 18:07:58 [metric_collector] {"stage_name":"metric_collector","events_processed":124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":24.8,"last_update":"2026-03-21T18:07:53.870464275Z"} +2026/03/21 18:07:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":52,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:07:53.879421606Z"} +2026/03/21 18:07:58 [transform_engine] {"stage_name":"transform_engine","events_processed":4,"events_dropped":0,"avg_latency_ms":88.77362782400002,"throughput_eps":0,"last_update":"2026-03-21T18:07:53.96575443Z"} +2026/03/21 18:07:58 ───────────────────────────────────────────────── +2026/03/21 18:08:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:08:03 [log_collector] {"stage_name":"log_collector","events_processed":368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":73.6,"last_update":"2026-03-21T18:07:58.869645841Z"} +2026/03/21 18:08:03 [metric_collector] {"stage_name":"metric_collector","events_processed":129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":25.8,"last_update":"2026-03-21T18:07:58.870011582Z"} +2026/03/21 18:08:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":54,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:07:58.878621296Z"} +2026/03/21 18:08:03 [transform_engine] {"stage_name":"transform_engine","events_processed":4,"events_dropped":0,"avg_latency_ms":88.77362782400002,"throughput_eps":0,"last_update":"2026-03-21T18:07:58.965919159Z"} +2026/03/21 18:08:03 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.78433596,"throughput_eps":0,"last_update":"2026-03-21T18:07:58.965807264Z"} +2026/03/21 18:08:03 ───────────────────────────────────────────────── +2026/03/21 18:08:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:08:08 [log_collector] {"stage_name":"log_collector","events_processed":368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":73.6,"last_update":"2026-03-21T18:08:03.870037669Z"} +2026/03/21 18:08:08 [metric_collector] {"stage_name":"metric_collector","events_processed":134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":26.8,"last_update":"2026-03-21T18:08:03.870491548Z"} +2026/03/21 18:08:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":56,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:08:03.879989825Z"} +2026/03/21 18:08:08 [transform_engine] {"stage_name":"transform_engine","events_processed":4,"events_dropped":0,"avg_latency_ms":88.77362782400002,"throughput_eps":0,"last_update":"2026-03-21T18:08:03.965112851Z"} +2026/03/21 18:08:08 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.78433596,"throughput_eps":0,"last_update":"2026-03-21T18:08:03.96527402Z"} +2026/03/21 18:08:08 ───────────────────────────────────────────────── +2026/03/21 18:08:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:08:13 [log_collector] {"stage_name":"log_collector","events_processed":368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":73.6,"last_update":"2026-03-21T18:08:13.869666776Z"} +2026/03/21 18:08:13 [metric_collector] {"stage_name":"metric_collector","events_processed":139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":27.8,"last_update":"2026-03-21T18:08:08.869929565Z"} +2026/03/21 18:08:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":58,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:08:08.878644319Z"} +2026/03/21 18:08:13 [transform_engine] {"stage_name":"transform_engine","events_processed":4,"events_dropped":0,"avg_latency_ms":88.77362782400002,"throughput_eps":0,"last_update":"2026-03-21T18:08:08.965826581Z"} +2026/03/21 18:08:13 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.78433596,"throughput_eps":0,"last_update":"2026-03-21T18:08:08.965869504Z"} +2026/03/21 18:08:13 ───────────────────────────────────────────────── +2026/03/21 18:08:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:08:18 [log_collector] {"stage_name":"log_collector","events_processed":368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":73.6,"last_update":"2026-03-21T18:08:18.869769725Z"} +2026/03/21 18:08:18 [metric_collector] {"stage_name":"metric_collector","events_processed":144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":28.8,"last_update":"2026-03-21T18:08:13.869905252Z"} +2026/03/21 18:08:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":60,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:08:13.878931235Z"} +2026/03/21 18:08:18 [transform_engine] {"stage_name":"transform_engine","events_processed":4,"events_dropped":0,"avg_latency_ms":88.77362782400002,"throughput_eps":0,"last_update":"2026-03-21T18:08:13.965065909Z"} +2026/03/21 18:08:18 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.78433596,"throughput_eps":0,"last_update":"2026-03-21T18:08:13.966401297Z"} +2026/03/21 18:08:18 ───────────────────────────────────────────────── +2026/03/21 18:08:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:08:23 [log_collector] {"stage_name":"log_collector","events_processed":368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":73.6,"last_update":"2026-03-21T18:08:18.869769725Z"} +2026/03/21 18:08:23 [metric_collector] {"stage_name":"metric_collector","events_processed":149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":29.8,"last_update":"2026-03-21T18:08:18.870169843Z"} +2026/03/21 18:08:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":62,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:08:18.878532954Z"} +2026/03/21 18:08:23 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":83.94812965920002,"throughput_eps":0,"last_update":"2026-03-21T18:08:19.030492794Z"} +2026/03/21 18:08:23 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.78433596,"throughput_eps":0,"last_update":"2026-03-21T18:08:18.965826189Z"} +2026/03/21 18:08:23 ───────────────────────────────────────────────── +2026/03/21 18:08:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:08:28 [log_collector] {"stage_name":"log_collector","events_processed":368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":73.6,"last_update":"2026-03-21T18:08:23.869681943Z"} +2026/03/21 18:08:28 [metric_collector] {"stage_name":"metric_collector","events_processed":154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":30.8,"last_update":"2026-03-21T18:08:23.86983179Z"} +2026/03/21 18:08:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":64,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:08:23.878012522Z"} +2026/03/21 18:08:28 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":83.94812965920002,"throughput_eps":0,"last_update":"2026-03-21T18:08:23.965123006Z"} +2026/03/21 18:08:28 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":5.028846368,"throughput_eps":0,"last_update":"2026-03-21T18:08:23.966296043Z"} +2026/03/21 18:08:28 ───────────────────────────────────────────────── +2026/03/21 18:08:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:08:33 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":5.028846368,"throughput_eps":0,"last_update":"2026-03-21T18:08:28.965911637Z"} +2026/03/21 18:08:33 [log_collector] {"stage_name":"log_collector","events_processed":368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":73.6,"last_update":"2026-03-21T18:08:28.86942383Z"} +2026/03/21 18:08:33 [metric_collector] {"stage_name":"metric_collector","events_processed":159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":31.8,"last_update":"2026-03-21T18:08:28.869894551Z"} +2026/03/21 18:08:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":66,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:08:28.878714918Z"} +2026/03/21 18:08:33 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":83.94812965920002,"throughput_eps":0,"last_update":"2026-03-21T18:08:28.965932988Z"} +2026/03/21 18:08:33 ───────────────────────────────────────────────── +2026/03/21 18:08:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:08:38 [log_collector] {"stage_name":"log_collector","events_processed":368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":73.6,"last_update":"2026-03-21T18:08:38.869509164Z"} +2026/03/21 18:08:38 [metric_collector] {"stage_name":"metric_collector","events_processed":164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":32.8,"last_update":"2026-03-21T18:08:33.869958377Z"} +2026/03/21 18:08:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":68,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:08:33.878384379Z"} +2026/03/21 18:08:38 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":83.94812965920002,"throughput_eps":0,"last_update":"2026-03-21T18:08:33.965654488Z"} +2026/03/21 18:08:38 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":5.028846368,"throughput_eps":0,"last_update":"2026-03-21T18:08:33.965712751Z"} +2026/03/21 18:08:38 ───────────────────────────────────────────────── +2026/03/21 18:08:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:08:43 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":5.028846368,"throughput_eps":0,"last_update":"2026-03-21T18:08:38.965559985Z"} +2026/03/21 18:08:43 [log_collector] {"stage_name":"log_collector","events_processed":368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":73.6,"last_update":"2026-03-21T18:08:43.869430098Z"} +2026/03/21 18:08:43 [metric_collector] {"stage_name":"metric_collector","events_processed":169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":33.8,"last_update":"2026-03-21T18:08:38.869839126Z"} +2026/03/21 18:08:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":70,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:08:38.87923694Z"} +2026/03/21 18:08:43 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":83.94812965920002,"throughput_eps":0,"last_update":"2026-03-21T18:08:38.965660117Z"} +2026/03/21 18:08:43 ───────────────────────────────────────────────── +2026/03/21 18:08:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:08:48 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":5.028846368,"throughput_eps":0,"last_update":"2026-03-21T18:08:43.965325018Z"} +2026/03/21 18:08:48 [log_collector] {"stage_name":"log_collector","events_processed":368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":73.6,"last_update":"2026-03-21T18:08:43.869430098Z"} +2026/03/21 18:08:48 [metric_collector] {"stage_name":"metric_collector","events_processed":174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":34.8,"last_update":"2026-03-21T18:08:43.87033447Z"} +2026/03/21 18:08:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":72,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:08:43.878929315Z"} +2026/03/21 18:08:48 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":83.94812965920002,"throughput_eps":0,"last_update":"2026-03-21T18:08:43.965131988Z"} +2026/03/21 18:08:48 ───────────────────────────────────────────────── +2026/03/21 18:08:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:08:53 [log_collector] {"stage_name":"log_collector","events_processed":368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":73.6,"last_update":"2026-03-21T18:08:48.869524073Z"} +2026/03/21 18:08:53 [metric_collector] {"stage_name":"metric_collector","events_processed":179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":35.8,"last_update":"2026-03-21T18:08:48.869783391Z"} +2026/03/21 18:08:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":74,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:08:48.877895591Z"} +2026/03/21 18:08:53 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":80.63971052736002,"throughput_eps":0,"last_update":"2026-03-21T18:08:49.033493791Z"} +2026/03/21 18:08:53 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":5.028846368,"throughput_eps":0,"last_update":"2026-03-21T18:08:48.966192177Z"} +2026/03/21 18:08:53 ───────────────────────────────────────────────── +2026/03/21 18:08:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:08:58 [log_collector] {"stage_name":"log_collector","events_processed":368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":73.6,"last_update":"2026-03-21T18:08:53.869927039Z"} +2026/03/21 18:08:58 [metric_collector] {"stage_name":"metric_collector","events_processed":184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":36.8,"last_update":"2026-03-21T18:08:53.870387131Z"} +2026/03/21 18:08:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":76,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:08:53.879103048Z"} +2026/03/21 18:08:58 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":80.63971052736002,"throughput_eps":0,"last_update":"2026-03-21T18:08:53.965616317Z"} +2026/03/21 18:08:58 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":5.285327494400001,"throughput_eps":0,"last_update":"2026-03-21T18:08:53.965602642Z"} +2026/03/21 18:08:58 ───────────────────────────────────────────────── +Saved state: 9 clusters, 369 messages, reason: cluster_template_changed +Saved state: 10 clusters, 370 messages, reason: cluster_created +2026/03/21 18:09:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:09:03 [log_collector] {"stage_name":"log_collector","events_processed":371,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":74.2,"last_update":"2026-03-21T18:09:03.869968251Z"} +2026/03/21 18:09:03 [metric_collector] {"stage_name":"metric_collector","events_processed":189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":37.8,"last_update":"2026-03-21T18:08:58.869997824Z"} +2026/03/21 18:09:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":78,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:08:58.879490219Z"} +2026/03/21 18:09:03 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":80.63971052736002,"throughput_eps":0,"last_update":"2026-03-21T18:08:58.965858449Z"} +2026/03/21 18:09:03 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":5.285327494400001,"throughput_eps":0,"last_update":"2026-03-21T18:08:58.965896182Z"} +2026/03/21 18:09:03 ───────────────────────────────────────────────── +Saved state: 10 clusters, 375 messages, reason: cluster_template_changed +2026/03/21 18:09:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:09:08 [metric_collector] {"stage_name":"metric_collector","events_processed":194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":38.8,"last_update":"2026-03-21T18:09:03.870313272Z"} +2026/03/21 18:09:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":80,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:09:03.878099789Z"} +2026/03/21 18:09:08 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":80.63971052736002,"throughput_eps":0,"last_update":"2026-03-21T18:09:03.965305343Z"} +2026/03/21 18:09:08 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":5.285327494400001,"throughput_eps":0,"last_update":"2026-03-21T18:09:03.965385877Z"} +2026/03/21 18:09:08 [log_collector] {"stage_name":"log_collector","events_processed":371,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":74.2,"last_update":"2026-03-21T18:09:03.869968251Z"} +2026/03/21 18:09:08 ───────────────────────────────────────────────── +Saved state: 11 clusters, 381 messages, reason: cluster_created +2026/03/21 18:09:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:09:13 [metric_collector] {"stage_name":"metric_collector","events_processed":198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":39.6,"last_update":"2026-03-21T18:09:08.869420226Z"} +2026/03/21 18:09:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":82,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:09:08.876644377Z"} +2026/03/21 18:09:13 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":80.63971052736002,"throughput_eps":0,"last_update":"2026-03-21T18:09:08.965212351Z"} +2026/03/21 18:09:13 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":5.285327494400001,"throughput_eps":0,"last_update":"2026-03-21T18:09:08.966287482Z"} +2026/03/21 18:09:13 [log_collector] {"stage_name":"log_collector","events_processed":391,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":78.2,"last_update":"2026-03-21T18:09:13.869567943Z"} +2026/03/21 18:09:13 ───────────────────────────────────────────────── +2026/03/21 18:09:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:09:18 [log_collector] {"stage_name":"log_collector","events_processed":391,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":78.2,"last_update":"2026-03-21T18:09:13.869567943Z"} +2026/03/21 18:09:18 [metric_collector] {"stage_name":"metric_collector","events_processed":204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":40.8,"last_update":"2026-03-21T18:09:13.869960705Z"} +2026/03/21 18:09:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":84,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:09:13.876575116Z"} +2026/03/21 18:09:18 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":80.63971052736002,"throughput_eps":0,"last_update":"2026-03-21T18:09:13.965107884Z"} +2026/03/21 18:09:18 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":5.285327494400001,"throughput_eps":0,"last_update":"2026-03-21T18:09:13.966268267Z"} +2026/03/21 18:09:18 ───────────────────────────────────────────────── +2026/03/21 18:09:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:09:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":86,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:09:18.876320627Z"} +2026/03/21 18:09:23 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":80.63971052736002,"throughput_eps":0,"last_update":"2026-03-21T18:09:18.96510171Z"} +2026/03/21 18:09:23 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":5.285327494400001,"throughput_eps":0,"last_update":"2026-03-21T18:09:18.965512867Z"} +2026/03/21 18:09:23 [log_collector] {"stage_name":"log_collector","events_processed":401,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":80.2,"last_update":"2026-03-21T18:09:18.869667962Z"} +2026/03/21 18:09:23 [metric_collector] {"stage_name":"metric_collector","events_processed":209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":41.8,"last_update":"2026-03-21T18:09:18.869878426Z"} +2026/03/21 18:09:23 ───────────────────────────────────────────────── +2026/03/21 18:09:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:09:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":88,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:09:23.879174617Z"} +2026/03/21 18:09:28 [transform_engine] {"stage_name":"transform_engine","events_processed":7,"events_dropped":0,"avg_latency_ms":520.0484942218881,"throughput_eps":0,"last_update":"2026-03-21T18:09:23.96569516Z"} +2026/03/21 18:09:28 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.496413595520001,"throughput_eps":0,"last_update":"2026-03-21T18:09:23.965672417Z"} +2026/03/21 18:09:28 [log_collector] {"stage_name":"log_collector","events_processed":412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":82.4,"last_update":"2026-03-21T18:09:23.869917313Z"} +2026/03/21 18:09:28 [metric_collector] {"stage_name":"metric_collector","events_processed":214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":42.8,"last_update":"2026-03-21T18:09:23.870231606Z"} +2026/03/21 18:09:28 ───────────────────────────────────────────────── +2026/03/21 18:09:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:09:33 [transform_engine] {"stage_name":"transform_engine","events_processed":7,"events_dropped":0,"avg_latency_ms":520.0484942218881,"throughput_eps":0,"last_update":"2026-03-21T18:09:28.966002417Z"} +2026/03/21 18:09:33 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.496413595520001,"throughput_eps":0,"last_update":"2026-03-21T18:09:28.965947973Z"} +2026/03/21 18:09:33 [log_collector] {"stage_name":"log_collector","events_processed":412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":82.4,"last_update":"2026-03-21T18:09:28.869573101Z"} +2026/03/21 18:09:33 [metric_collector] {"stage_name":"metric_collector","events_processed":219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":43.8,"last_update":"2026-03-21T18:09:28.870046308Z"} +2026/03/21 18:09:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":90,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:09:28.878581248Z"} +2026/03/21 18:09:33 ───────────────────────────────────────────────── +2026/03/21 18:09:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:09:38 [log_collector] {"stage_name":"log_collector","events_processed":412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":82.4,"last_update":"2026-03-21T18:09:33.869903054Z"} +2026/03/21 18:09:38 [metric_collector] {"stage_name":"metric_collector","events_processed":224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":44.8,"last_update":"2026-03-21T18:09:33.870510658Z"} +2026/03/21 18:09:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":92,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:09:33.879199875Z"} +2026/03/21 18:09:38 [transform_engine] {"stage_name":"transform_engine","events_processed":7,"events_dropped":0,"avg_latency_ms":520.0484942218881,"throughput_eps":0,"last_update":"2026-03-21T18:09:33.965655192Z"} +2026/03/21 18:09:38 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.496413595520001,"throughput_eps":0,"last_update":"2026-03-21T18:09:33.965542045Z"} +2026/03/21 18:09:38 ───────────────────────────────────────────────── +2026/03/21 18:09:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:09:43 [transform_engine] {"stage_name":"transform_engine","events_processed":7,"events_dropped":0,"avg_latency_ms":520.0484942218881,"throughput_eps":0,"last_update":"2026-03-21T18:09:38.965842901Z"} +2026/03/21 18:09:43 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.496413595520001,"throughput_eps":0,"last_update":"2026-03-21T18:09:38.96595693Z"} +2026/03/21 18:09:43 [log_collector] {"stage_name":"log_collector","events_processed":412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":82.4,"last_update":"2026-03-21T18:09:38.870264606Z"} +2026/03/21 18:09:43 [metric_collector] {"stage_name":"metric_collector","events_processed":229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":45.8,"last_update":"2026-03-21T18:09:38.870821083Z"} +2026/03/21 18:09:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":94,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:09:38.879542931Z"} +2026/03/21 18:09:43 ───────────────────────────────────────────────── +2026/03/21 18:09:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:09:48 [log_collector] {"stage_name":"log_collector","events_processed":412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":82.4,"last_update":"2026-03-21T18:09:43.869918255Z"} +2026/03/21 18:09:48 [metric_collector] {"stage_name":"metric_collector","events_processed":234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":46.8,"last_update":"2026-03-21T18:09:43.870506251Z"} +2026/03/21 18:09:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":96,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:09:43.879053055Z"} +2026/03/21 18:09:48 [transform_engine] {"stage_name":"transform_engine","events_processed":7,"events_dropped":0,"avg_latency_ms":520.0484942218881,"throughput_eps":0,"last_update":"2026-03-21T18:09:43.965517309Z"} +2026/03/21 18:09:48 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.496413595520001,"throughput_eps":0,"last_update":"2026-03-21T18:09:43.965489896Z"} +2026/03/21 18:09:48 ───────────────────────────────────────────────── +2026/03/21 18:09:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:09:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":98,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:09:48.879051841Z"} +2026/03/21 18:09:53 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":437.2967583775105,"throughput_eps":0,"last_update":"2026-03-21T18:09:49.071536514Z"} +2026/03/21 18:09:53 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.496413595520001,"throughput_eps":0,"last_update":"2026-03-21T18:09:48.965344226Z"} +2026/03/21 18:09:53 [log_collector] {"stage_name":"log_collector","events_processed":412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":82.4,"last_update":"2026-03-21T18:09:53.869948855Z"} +2026/03/21 18:09:53 [metric_collector] {"stage_name":"metric_collector","events_processed":239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":47.8,"last_update":"2026-03-21T18:09:48.870779514Z"} +2026/03/21 18:09:53 ───────────────────────────────────────────────── +2026/03/21 18:09:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:09:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:09:53.878574468Z"} +2026/03/21 18:09:58 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":437.2967583775105,"throughput_eps":0,"last_update":"2026-03-21T18:09:53.966024601Z"} +2026/03/21 18:09:58 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":6.008838476416001,"throughput_eps":0,"last_update":"2026-03-21T18:09:53.965910142Z"} +2026/03/21 18:09:58 [log_collector] {"stage_name":"log_collector","events_processed":412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":82.4,"last_update":"2026-03-21T18:09:53.869948855Z"} +2026/03/21 18:09:58 [metric_collector] {"stage_name":"metric_collector","events_processed":244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":48.8,"last_update":"2026-03-21T18:09:53.870507144Z"} +2026/03/21 18:09:58 ───────────────────────────────────────────────── +2026/03/21 18:10:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:10:03 [log_collector] {"stage_name":"log_collector","events_processed":412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":82.4,"last_update":"2026-03-21T18:10:03.870298118Z"} +2026/03/21 18:10:03 [metric_collector] {"stage_name":"metric_collector","events_processed":249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":49.8,"last_update":"2026-03-21T18:09:58.870575043Z"} +2026/03/21 18:10:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:09:58.878533189Z"} +2026/03/21 18:10:03 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":437.2967583775105,"throughput_eps":0,"last_update":"2026-03-21T18:09:58.965899411Z"} +2026/03/21 18:10:03 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":6.008838476416001,"throughput_eps":0,"last_update":"2026-03-21T18:09:58.965874844Z"} +2026/03/21 18:10:03 ───────────────────────────────────────────────── +2026/03/21 18:10:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:10:08 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":6.008838476416001,"throughput_eps":0,"last_update":"2026-03-21T18:10:03.966245899Z"} +2026/03/21 18:10:08 [log_collector] {"stage_name":"log_collector","events_processed":412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":82.4,"last_update":"2026-03-21T18:10:03.870298118Z"} +2026/03/21 18:10:08 [metric_collector] {"stage_name":"metric_collector","events_processed":254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":50.8,"last_update":"2026-03-21T18:10:03.870818384Z"} +2026/03/21 18:10:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:10:03.888878122Z"} +2026/03/21 18:10:08 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":437.2967583775105,"throughput_eps":0,"last_update":"2026-03-21T18:10:03.966211583Z"} +2026/03/21 18:10:08 ───────────────────────────────────────────────── +2026/03/21 18:10:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:10:13 [log_collector] {"stage_name":"log_collector","events_processed":412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":82.4,"last_update":"2026-03-21T18:10:13.86961273Z"} +2026/03/21 18:10:13 [metric_collector] {"stage_name":"metric_collector","events_processed":259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":51.8,"last_update":"2026-03-21T18:10:08.869940414Z"} +2026/03/21 18:10:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:10:08.879425054Z"} +2026/03/21 18:10:13 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":437.2967583775105,"throughput_eps":0,"last_update":"2026-03-21T18:10:08.965657614Z"} +2026/03/21 18:10:13 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":6.008838476416001,"throughput_eps":0,"last_update":"2026-03-21T18:10:08.965639238Z"} +2026/03/21 18:10:13 ───────────────────────────────────────────────── +2026/03/21 18:10:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:10:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:10:13.879171734Z"} +2026/03/21 18:10:18 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":437.2967583775105,"throughput_eps":0,"last_update":"2026-03-21T18:10:13.965655965Z"} +2026/03/21 18:10:18 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":6.008838476416001,"throughput_eps":0,"last_update":"2026-03-21T18:10:13.965705039Z"} +2026/03/21 18:10:18 [log_collector] {"stage_name":"log_collector","events_processed":412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":82.4,"last_update":"2026-03-21T18:10:13.86961273Z"} +2026/03/21 18:10:18 [metric_collector] {"stage_name":"metric_collector","events_processed":264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":52.8,"last_update":"2026-03-21T18:10:13.87000942Z"} +2026/03/21 18:10:18 ───────────────────────────────────────────────── +Saved state: 11 clusters, 413 messages, reason: none +2026/03/21 18:10:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:10:23 [log_collector] {"stage_name":"log_collector","events_processed":417,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":83.4,"last_update":"2026-03-21T18:10:23.869413688Z"} +2026/03/21 18:10:23 [metric_collector] {"stage_name":"metric_collector","events_processed":269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":53.8,"last_update":"2026-03-21T18:10:18.870891431Z"} +2026/03/21 18:10:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:10:18.880566025Z"} +2026/03/21 18:10:23 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":373.2400321020084,"throughput_eps":0,"last_update":"2026-03-21T18:10:19.082815404Z"} +2026/03/21 18:10:23 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":6.008838476416001,"throughput_eps":0,"last_update":"2026-03-21T18:10:18.965747602Z"} +2026/03/21 18:10:23 ───────────────────────────────────────────────── +2026/03/21 18:10:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:10:28 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":6.683561581132801,"throughput_eps":0,"last_update":"2026-03-21T18:10:23.965750555Z"} +2026/03/21 18:10:28 [log_collector] {"stage_name":"log_collector","events_processed":417,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":83.4,"last_update":"2026-03-21T18:10:23.869413688Z"} +2026/03/21 18:10:28 [metric_collector] {"stage_name":"metric_collector","events_processed":274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":54.8,"last_update":"2026-03-21T18:10:23.870104151Z"} +2026/03/21 18:10:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:10:23.87656598Z"} +2026/03/21 18:10:28 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":373.2400321020084,"throughput_eps":0,"last_update":"2026-03-21T18:10:23.965764823Z"} +2026/03/21 18:10:28 ───────────────────────────────────────────────── +2026/03/21 18:10:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:10:33 [metric_collector] {"stage_name":"metric_collector","events_processed":279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":55.8,"last_update":"2026-03-21T18:10:28.870432432Z"} +2026/03/21 18:10:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:10:28.876855667Z"} +2026/03/21 18:10:33 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":373.2400321020084,"throughput_eps":0,"last_update":"2026-03-21T18:10:28.966032957Z"} +2026/03/21 18:10:33 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":6.683561581132801,"throughput_eps":0,"last_update":"2026-03-21T18:10:28.96602384Z"} +2026/03/21 18:10:33 [log_collector] {"stage_name":"log_collector","events_processed":417,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":83.4,"last_update":"2026-03-21T18:10:28.870054428Z"} +2026/03/21 18:10:33 ───────────────────────────────────────────────── +2026/03/21 18:10:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:10:38 [log_collector] {"stage_name":"log_collector","events_processed":417,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":83.4,"last_update":"2026-03-21T18:10:33.869872135Z"} +2026/03/21 18:10:38 [metric_collector] {"stage_name":"metric_collector","events_processed":284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":56.8,"last_update":"2026-03-21T18:10:33.870122546Z"} +2026/03/21 18:10:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:10:33.877825332Z"} +2026/03/21 18:10:38 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":373.2400321020084,"throughput_eps":0,"last_update":"2026-03-21T18:10:33.966030822Z"} +2026/03/21 18:10:38 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":6.683561581132801,"throughput_eps":0,"last_update":"2026-03-21T18:10:33.966052352Z"} +2026/03/21 18:10:38 ───────────────────────────────────────────────── +2026/03/21 18:10:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:10:43 [metric_collector] {"stage_name":"metric_collector","events_processed":289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":57.8,"last_update":"2026-03-21T18:10:38.870154949Z"} +2026/03/21 18:10:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:10:38.879940487Z"} +2026/03/21 18:10:43 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":373.2400321020084,"throughput_eps":0,"last_update":"2026-03-21T18:10:38.965063009Z"} +2026/03/21 18:10:43 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":6.683561581132801,"throughput_eps":0,"last_update":"2026-03-21T18:10:38.966192934Z"} +2026/03/21 18:10:43 [log_collector] {"stage_name":"log_collector","events_processed":417,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":83.4,"last_update":"2026-03-21T18:10:38.870067653Z"} +2026/03/21 18:10:43 ───────────────────────────────────────────────── +2026/03/21 18:10:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:10:48 [metric_collector] {"stage_name":"metric_collector","events_processed":294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":58.8,"last_update":"2026-03-21T18:10:43.870604131Z"} +2026/03/21 18:10:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:10:43.881490526Z"} +2026/03/21 18:10:48 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":373.2400321020084,"throughput_eps":0,"last_update":"2026-03-21T18:10:43.965756257Z"} +2026/03/21 18:10:48 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":6.683561581132801,"throughput_eps":0,"last_update":"2026-03-21T18:10:43.965770485Z"} +2026/03/21 18:10:48 [log_collector] {"stage_name":"log_collector","events_processed":417,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":83.4,"last_update":"2026-03-21T18:10:43.87044186Z"} +2026/03/21 18:10:48 ───────────────────────────────────────────────── +2026/03/21 18:10:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:10:53 [log_collector] {"stage_name":"log_collector","events_processed":417,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":83.4,"last_update":"2026-03-21T18:10:48.869766382Z"} +2026/03/21 18:10:53 [metric_collector] {"stage_name":"metric_collector","events_processed":299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":59.8,"last_update":"2026-03-21T18:10:48.869988017Z"} +2026/03/21 18:10:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":122,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:10:48.876419688Z"} +2026/03/21 18:10:53 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":974.7005338816068,"throughput_eps":0,"last_update":"2026-03-21T18:10:52.346260592Z"} +2026/03/21 18:10:53 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":6.683561581132801,"throughput_eps":0,"last_update":"2026-03-21T18:10:48.965726367Z"} +2026/03/21 18:10:53 ───────────────────────────────────────────────── +2026/03/21 18:10:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:10:58 [log_collector] {"stage_name":"log_collector","events_processed":417,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":83.4,"last_update":"2026-03-21T18:10:53.869666662Z"} +2026/03/21 18:10:58 [metric_collector] {"stage_name":"metric_collector","events_processed":304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":60.8,"last_update":"2026-03-21T18:10:53.869656182Z"} +2026/03/21 18:10:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:10:53.880757499Z"} +2026/03/21 18:10:58 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":974.7005338816068,"throughput_eps":0,"last_update":"2026-03-21T18:10:53.965947631Z"} +2026/03/21 18:10:58 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":6.278486064906241,"throughput_eps":0,"last_update":"2026-03-21T18:10:53.965937091Z"} +2026/03/21 18:10:58 ───────────────────────────────────────────────── +2026/03/21 18:11:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:11:03 [log_collector] {"stage_name":"log_collector","events_processed":417,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":83.4,"last_update":"2026-03-21T18:10:58.869413023Z"} +2026/03/21 18:11:03 [metric_collector] {"stage_name":"metric_collector","events_processed":309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":61.8,"last_update":"2026-03-21T18:10:58.869757281Z"} +2026/03/21 18:11:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":126,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:10:58.877477752Z"} +2026/03/21 18:11:03 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":974.7005338816068,"throughput_eps":0,"last_update":"2026-03-21T18:10:58.965662652Z"} +2026/03/21 18:11:03 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":6.278486064906241,"throughput_eps":0,"last_update":"2026-03-21T18:10:58.965650538Z"} +2026/03/21 18:11:03 ───────────────────────────────────────────────── +2026/03/21 18:11:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:11:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":128,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:11:03.878440419Z"} +2026/03/21 18:11:08 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":974.7005338816068,"throughput_eps":0,"last_update":"2026-03-21T18:11:03.965759529Z"} +2026/03/21 18:11:08 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":6.278486064906241,"throughput_eps":0,"last_update":"2026-03-21T18:11:03.965746604Z"} +2026/03/21 18:11:08 [log_collector] {"stage_name":"log_collector","events_processed":428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":85.6,"last_update":"2026-03-21T18:11:08.870026198Z"} +2026/03/21 18:11:08 [metric_collector] {"stage_name":"metric_collector","events_processed":319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":63.8,"last_update":"2026-03-21T18:11:08.870446683Z"} +2026/03/21 18:11:08 ───────────────────────────────────────────────── +2026/03/21 18:11:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:11:13 [log_collector] {"stage_name":"log_collector","events_processed":428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":85.6,"last_update":"2026-03-21T18:11:08.870026198Z"} +2026/03/21 18:11:13 [metric_collector] {"stage_name":"metric_collector","events_processed":319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":63.8,"last_update":"2026-03-21T18:11:08.870446683Z"} +2026/03/21 18:11:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":130,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:11:08.880150333Z"} +2026/03/21 18:11:13 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":974.7005338816068,"throughput_eps":0,"last_update":"2026-03-21T18:11:08.965406812Z"} +2026/03/21 18:11:13 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":6.278486064906241,"throughput_eps":0,"last_update":"2026-03-21T18:11:08.965394418Z"} +2026/03/21 18:11:13 ───────────────────────────────────────────────── +2026/03/21 18:11:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:11:18 [log_collector] {"stage_name":"log_collector","events_processed":470,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":94,"last_update":"2026-03-21T18:11:13.869528589Z"} +2026/03/21 18:11:18 [metric_collector] {"stage_name":"metric_collector","events_processed":324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":64.8,"last_update":"2026-03-21T18:11:13.869807774Z"} +2026/03/21 18:11:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:11:13.880595451Z"} +2026/03/21 18:11:18 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":974.7005338816068,"throughput_eps":0,"last_update":"2026-03-21T18:11:13.965756988Z"} +2026/03/21 18:11:18 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":6.278486064906241,"throughput_eps":0,"last_update":"2026-03-21T18:11:13.96582639Z"} +2026/03/21 18:11:18 ───────────────────────────────────────────────── +2026/03/21 18:11:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:11:23 [log_collector] {"stage_name":"log_collector","events_processed":771,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":154.2,"last_update":"2026-03-21T18:11:18.870256965Z"} +2026/03/21 18:11:23 [metric_collector] {"stage_name":"metric_collector","events_processed":329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":65.8,"last_update":"2026-03-21T18:11:18.870249471Z"} +2026/03/21 18:11:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:11:18.878143674Z"} +2026/03/21 18:11:23 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":974.7005338816068,"throughput_eps":0,"last_update":"2026-03-21T18:11:18.965478415Z"} +2026/03/21 18:11:23 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":6.278486064906241,"throughput_eps":0,"last_update":"2026-03-21T18:11:18.965560582Z"} +2026/03/21 18:11:23 ───────────────────────────────────────────────── +Saved state: 11 clusters, 774 messages, reason: none +2026/03/21 18:11:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:11:28 [log_collector] {"stage_name":"log_collector","events_processed":773,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":154.6,"last_update":"2026-03-21T18:11:23.869871463Z"} +2026/03/21 18:11:28 [metric_collector] {"stage_name":"metric_collector","events_processed":334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":66.8,"last_update":"2026-03-21T18:11:23.870622271Z"} +2026/03/21 18:11:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:11:23.879247475Z"} +2026/03/21 18:11:28 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":800.1864383052855,"throughput_eps":0,"last_update":"2026-03-21T18:11:23.965473832Z"} +2026/03/21 18:11:28 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":6.061516651924993,"throughput_eps":0,"last_update":"2026-03-21T18:11:23.965454755Z"} +2026/03/21 18:11:28 ───────────────────────────────────────────────── +2026/03/21 18:11:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:11:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:11:28.88120068Z"} +2026/03/21 18:11:33 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":800.1864383052855,"throughput_eps":0,"last_update":"2026-03-21T18:11:28.966389018Z"} +2026/03/21 18:11:33 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":6.061516651924993,"throughput_eps":0,"last_update":"2026-03-21T18:11:28.965415363Z"} +2026/03/21 18:11:33 [log_collector] {"stage_name":"log_collector","events_processed":776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":155.2,"last_update":"2026-03-21T18:11:28.870010813Z"} +2026/03/21 18:11:33 [metric_collector] {"stage_name":"metric_collector","events_processed":339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":67.8,"last_update":"2026-03-21T18:11:28.870486214Z"} +2026/03/21 18:11:33 ───────────────────────────────────────────────── +2026/03/21 18:11:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:11:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:11:33.878521225Z"} +2026/03/21 18:11:38 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":800.1864383052855,"throughput_eps":0,"last_update":"2026-03-21T18:11:33.965765342Z"} +2026/03/21 18:11:38 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":6.061516651924993,"throughput_eps":0,"last_update":"2026-03-21T18:11:33.965723062Z"} +2026/03/21 18:11:38 [log_collector] {"stage_name":"log_collector","events_processed":776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":155.2,"last_update":"2026-03-21T18:11:33.869420431Z"} +2026/03/21 18:11:38 [metric_collector] {"stage_name":"metric_collector","events_processed":344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":68.8,"last_update":"2026-03-21T18:11:33.87003078Z"} +2026/03/21 18:11:38 ───────────────────────────────────────────────── +2026/03/21 18:11:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:11:43 [log_collector] {"stage_name":"log_collector","events_processed":787,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":157.4,"last_update":"2026-03-21T18:11:43.869405871Z"} +2026/03/21 18:11:43 [metric_collector] {"stage_name":"metric_collector","events_processed":349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":69.8,"last_update":"2026-03-21T18:11:38.870628681Z"} +2026/03/21 18:11:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:11:38.879306465Z"} +2026/03/21 18:11:43 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":800.1864383052855,"throughput_eps":0,"last_update":"2026-03-21T18:11:38.965459722Z"} +2026/03/21 18:11:43 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":6.061516651924993,"throughput_eps":0,"last_update":"2026-03-21T18:11:38.965481924Z"} +2026/03/21 18:11:43 ───────────────────────────────────────────────── +2026/03/21 18:11:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:11:48 [log_collector] {"stage_name":"log_collector","events_processed":787,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":157.4,"last_update":"2026-03-21T18:11:43.869405871Z"} +2026/03/21 18:11:48 [metric_collector] {"stage_name":"metric_collector","events_processed":354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":70.8,"last_update":"2026-03-21T18:11:43.869830825Z"} +2026/03/21 18:11:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:11:43.879414304Z"} +2026/03/21 18:11:48 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":800.1864383052855,"throughput_eps":0,"last_update":"2026-03-21T18:11:43.965871573Z"} +2026/03/21 18:11:48 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":6.061516651924993,"throughput_eps":0,"last_update":"2026-03-21T18:11:43.965901029Z"} +2026/03/21 18:11:48 ───────────────────────────────────────────────── +2026/03/21 18:11:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:11:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:11:48.87859922Z"} +2026/03/21 18:11:53 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":800.1864383052855,"throughput_eps":0,"last_update":"2026-03-21T18:11:48.965925092Z"} +2026/03/21 18:11:53 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":6.061516651924993,"throughput_eps":0,"last_update":"2026-03-21T18:11:48.966041595Z"} +2026/03/21 18:11:53 [log_collector] {"stage_name":"log_collector","events_processed":803,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":160.6,"last_update":"2026-03-21T18:11:48.869428741Z"} +2026/03/21 18:11:53 [metric_collector] {"stage_name":"metric_collector","events_processed":359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":71.8,"last_update":"2026-03-21T18:11:48.870070751Z"} +2026/03/21 18:11:53 ───────────────────────────────────────────────── +2026/03/21 18:11:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:11:58 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":6.661008121539995,"throughput_eps":0,"last_update":"2026-03-21T18:11:53.965419638Z"} +2026/03/21 18:11:58 [log_collector] {"stage_name":"log_collector","events_processed":803,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":160.6,"last_update":"2026-03-21T18:11:53.869665408Z"} +2026/03/21 18:11:58 [metric_collector] {"stage_name":"metric_collector","events_processed":364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":72.8,"last_update":"2026-03-21T18:11:53.870122434Z"} +2026/03/21 18:11:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:11:53.878067805Z"} +2026/03/21 18:11:58 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":662.5203078442285,"throughput_eps":0,"last_update":"2026-03-21T18:11:53.965434546Z"} +2026/03/21 18:11:58 ───────────────────────────────────────────────── +2026/03/21 18:12:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:12:03 [log_collector] {"stage_name":"log_collector","events_processed":803,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":160.6,"last_update":"2026-03-21T18:11:58.869943202Z"} +2026/03/21 18:12:03 [metric_collector] {"stage_name":"metric_collector","events_processed":369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":73.8,"last_update":"2026-03-21T18:11:58.87032897Z"} +2026/03/21 18:12:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:11:58.879075877Z"} +2026/03/21 18:12:03 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":662.5203078442285,"throughput_eps":0,"last_update":"2026-03-21T18:11:58.965434738Z"} +2026/03/21 18:12:03 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":6.661008121539995,"throughput_eps":0,"last_update":"2026-03-21T18:11:58.96542026Z"} +2026/03/21 18:12:03 ───────────────────────────────────────────────── +2026/03/21 18:12:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:12:08 [log_collector] {"stage_name":"log_collector","events_processed":803,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":160.6,"last_update":"2026-03-21T18:12:03.869415888Z"} +2026/03/21 18:12:08 [metric_collector] {"stage_name":"metric_collector","events_processed":374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":74.8,"last_update":"2026-03-21T18:12:03.869906819Z"} +2026/03/21 18:12:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:12:03.877768149Z"} +2026/03/21 18:12:08 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":662.5203078442285,"throughput_eps":0,"last_update":"2026-03-21T18:12:03.966133112Z"} +2026/03/21 18:12:08 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":6.661008121539995,"throughput_eps":0,"last_update":"2026-03-21T18:12:03.966117923Z"} +2026/03/21 18:12:08 ───────────────────────────────────────────────── +2026/03/21 18:12:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:12:13 [metric_collector] {"stage_name":"metric_collector","events_processed":379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":75.8,"last_update":"2026-03-21T18:12:08.870392151Z"} +2026/03/21 18:12:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:12:08.879188171Z"} +2026/03/21 18:12:13 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":662.5203078442285,"throughput_eps":0,"last_update":"2026-03-21T18:12:08.965317322Z"} +2026/03/21 18:12:13 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":6.661008121539995,"throughput_eps":0,"last_update":"2026-03-21T18:12:08.965306942Z"} +2026/03/21 18:12:13 [log_collector] {"stage_name":"log_collector","events_processed":803,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":160.6,"last_update":"2026-03-21T18:12:08.870077869Z"} +2026/03/21 18:12:13 ───────────────────────────────────────────────── +2026/03/21 18:12:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:12:18 [log_collector] {"stage_name":"log_collector","events_processed":803,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":160.6,"last_update":"2026-03-21T18:12:13.86952031Z"} +2026/03/21 18:12:18 [metric_collector] {"stage_name":"metric_collector","events_processed":384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":76.8,"last_update":"2026-03-21T18:12:13.869936958Z"} +2026/03/21 18:12:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:12:13.87748613Z"} +2026/03/21 18:12:18 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":662.5203078442285,"throughput_eps":0,"last_update":"2026-03-21T18:12:13.965772362Z"} +2026/03/21 18:12:18 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":6.661008121539995,"throughput_eps":0,"last_update":"2026-03-21T18:12:13.965756452Z"} +2026/03/21 18:12:18 ───────────────────────────────────────────────── +2026/03/21 18:12:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:12:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:12:18.878319812Z"} +2026/03/21 18:12:23 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":662.5203078442285,"throughput_eps":0,"last_update":"2026-03-21T18:12:18.965588215Z"} +2026/03/21 18:12:23 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":6.661008121539995,"throughput_eps":0,"last_update":"2026-03-21T18:12:18.96556986Z"} +2026/03/21 18:12:23 [log_collector] {"stage_name":"log_collector","events_processed":803,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":160.6,"last_update":"2026-03-21T18:12:18.869446815Z"} +2026/03/21 18:12:23 [metric_collector] {"stage_name":"metric_collector","events_processed":389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":77.8,"last_update":"2026-03-21T18:12:18.869688378Z"} +2026/03/21 18:12:23 ───────────────────────────────────────────────── +2026/03/21 18:12:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:12:28 [metric_collector] {"stage_name":"metric_collector","events_processed":394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":78.8,"last_update":"2026-03-21T18:12:23.870402979Z"} +2026/03/21 18:12:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:12:23.878780387Z"} +2026/03/21 18:12:28 [transform_engine] {"stage_name":"transform_engine","events_processed":13,"events_dropped":0,"avg_latency_ms":542.9945630753828,"throughput_eps":0,"last_update":"2026-03-21T18:12:23.966136648Z"} +2026/03/21 18:12:28 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":7.197113497231996,"throughput_eps":0,"last_update":"2026-03-21T18:12:23.96612206Z"} +2026/03/21 18:12:28 [log_collector] {"stage_name":"log_collector","events_processed":803,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":160.6,"last_update":"2026-03-21T18:12:23.870432124Z"} +2026/03/21 18:12:28 ───────────────────────────────────────────────── +2026/03/21 18:12:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:12:33 [log_collector] {"stage_name":"log_collector","events_processed":803,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":160.6,"last_update":"2026-03-21T18:12:28.869418231Z"} +2026/03/21 18:12:33 [metric_collector] {"stage_name":"metric_collector","events_processed":399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":79.8,"last_update":"2026-03-21T18:12:28.869929901Z"} +2026/03/21 18:12:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:12:28.878461004Z"} +2026/03/21 18:12:33 [transform_engine] {"stage_name":"transform_engine","events_processed":13,"events_dropped":0,"avg_latency_ms":542.9945630753828,"throughput_eps":0,"last_update":"2026-03-21T18:12:28.965644364Z"} +2026/03/21 18:12:33 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":7.197113497231996,"throughput_eps":0,"last_update":"2026-03-21T18:12:28.965632822Z"} +2026/03/21 18:12:33 ───────────────────────────────────────────────── +2026/03/21 18:12:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:12:38 [metric_collector] {"stage_name":"metric_collector","events_processed":404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":80.8,"last_update":"2026-03-21T18:12:33.869790158Z"} +2026/03/21 18:12:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:12:33.878804808Z"} +2026/03/21 18:12:38 [transform_engine] {"stage_name":"transform_engine","events_processed":13,"events_dropped":0,"avg_latency_ms":542.9945630753828,"throughput_eps":0,"last_update":"2026-03-21T18:12:33.966117835Z"} +2026/03/21 18:12:38 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":7.197113497231996,"throughput_eps":0,"last_update":"2026-03-21T18:12:33.966102707Z"} +2026/03/21 18:12:38 [log_collector] {"stage_name":"log_collector","events_processed":803,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":160.6,"last_update":"2026-03-21T18:12:33.869406373Z"} +2026/03/21 18:12:38 ───────────────────────────────────────────────── +2026/03/21 18:12:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:12:43 [log_collector] {"stage_name":"log_collector","events_processed":803,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":160.6,"last_update":"2026-03-21T18:12:38.869671263Z"} +2026/03/21 18:12:43 [metric_collector] {"stage_name":"metric_collector","events_processed":409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":81.8,"last_update":"2026-03-21T18:12:38.870035401Z"} +2026/03/21 18:12:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:12:38.87872644Z"} +2026/03/21 18:12:43 [transform_engine] {"stage_name":"transform_engine","events_processed":13,"events_dropped":0,"avg_latency_ms":542.9945630753828,"throughput_eps":0,"last_update":"2026-03-21T18:12:38.966052173Z"} +2026/03/21 18:12:43 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":7.197113497231996,"throughput_eps":0,"last_update":"2026-03-21T18:12:38.966036833Z"} +2026/03/21 18:12:43 ───────────────────────────────────────────────── +2026/03/21 18:12:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:12:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:12:43.878913257Z"} +2026/03/21 18:12:48 [transform_engine] {"stage_name":"transform_engine","events_processed":13,"events_dropped":0,"avg_latency_ms":542.9945630753828,"throughput_eps":0,"last_update":"2026-03-21T18:12:43.966134519Z"} +2026/03/21 18:12:48 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":7.197113497231996,"throughput_eps":0,"last_update":"2026-03-21T18:12:43.96612469Z"} +2026/03/21 18:12:48 [log_collector] {"stage_name":"log_collector","events_processed":803,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":160.6,"last_update":"2026-03-21T18:12:43.869658658Z"} +2026/03/21 18:12:48 [metric_collector] {"stage_name":"metric_collector","events_processed":414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":82.8,"last_update":"2026-03-21T18:12:43.86973792Z"} +2026/03/21 18:12:48 ───────────────────────────────────────────────── +2026/03/21 18:12:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:12:53 [log_collector] {"stage_name":"log_collector","events_processed":803,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":160.6,"last_update":"2026-03-21T18:12:48.869581195Z"} +2026/03/21 18:12:53 [metric_collector] {"stage_name":"metric_collector","events_processed":419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":83.8,"last_update":"2026-03-21T18:12:48.86979319Z"} +2026/03/21 18:12:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":170,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:12:48.878282243Z"} +2026/03/21 18:12:53 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":447.4153106603062,"throughput_eps":0,"last_update":"2026-03-21T18:12:49.030596655Z"} +2026/03/21 18:12:53 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":7.197113497231996,"throughput_eps":0,"last_update":"2026-03-21T18:12:48.96548547Z"} +2026/03/21 18:12:53 ───────────────────────────────────────────────── +2026/03/21 18:12:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:12:58 [log_collector] {"stage_name":"log_collector","events_processed":803,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":160.6,"last_update":"2026-03-21T18:12:53.869440647Z"} +2026/03/21 18:12:58 [metric_collector] {"stage_name":"metric_collector","events_processed":424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":84.8,"last_update":"2026-03-21T18:12:53.869693812Z"} +2026/03/21 18:12:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:12:53.878596838Z"} +2026/03/21 18:12:58 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":447.4153106603062,"throughput_eps":0,"last_update":"2026-03-21T18:12:53.965907531Z"} +2026/03/21 18:12:58 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":7.740238997785597,"throughput_eps":0,"last_update":"2026-03-21T18:12:53.965898173Z"} +2026/03/21 18:12:58 ───────────────────────────────────────────────── +Saved state: 11 clusters, 804 messages, reason: none +2026/03/21 18:13:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:13:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:12:58.879763151Z"} +2026/03/21 18:13:03 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":447.4153106603062,"throughput_eps":0,"last_update":"2026-03-21T18:12:58.965973606Z"} +2026/03/21 18:13:03 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":7.740238997785597,"throughput_eps":0,"last_update":"2026-03-21T18:12:58.96596047Z"} +2026/03/21 18:13:03 [log_collector] {"stage_name":"log_collector","events_processed":803,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":160.6,"last_update":"2026-03-21T18:12:58.87008509Z"} +2026/03/21 18:13:03 [metric_collector] {"stage_name":"metric_collector","events_processed":429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":85.8,"last_update":"2026-03-21T18:12:58.870414762Z"} +2026/03/21 18:13:03 ───────────────────────────────────────────────── +2026/03/21 18:13:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:13:08 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":7.740238997785597,"throughput_eps":0,"last_update":"2026-03-21T18:13:03.965594826Z"} +2026/03/21 18:13:08 [log_collector] {"stage_name":"log_collector","events_processed":817,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":163.4,"last_update":"2026-03-21T18:13:03.86982646Z"} +2026/03/21 18:13:08 [metric_collector] {"stage_name":"metric_collector","events_processed":434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":86.8,"last_update":"2026-03-21T18:13:03.870187492Z"} +2026/03/21 18:13:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:13:03.879314516Z"} +2026/03/21 18:13:08 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":447.4153106603062,"throughput_eps":0,"last_update":"2026-03-21T18:13:03.965605597Z"} +2026/03/21 18:13:08 ───────────────────────────────────────────────── +2026/03/21 18:13:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:13:13 [log_collector] {"stage_name":"log_collector","events_processed":817,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":163.4,"last_update":"2026-03-21T18:13:08.870119233Z"} +2026/03/21 18:13:13 [metric_collector] {"stage_name":"metric_collector","events_processed":439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":87.8,"last_update":"2026-03-21T18:13:08.870302304Z"} +2026/03/21 18:13:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:13:08.879093375Z"} +2026/03/21 18:13:13 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":447.4153106603062,"throughput_eps":0,"last_update":"2026-03-21T18:13:08.965463647Z"} +2026/03/21 18:13:13 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":7.740238997785597,"throughput_eps":0,"last_update":"2026-03-21T18:13:08.96529832Z"} +2026/03/21 18:13:13 ───────────────────────────────────────────────── +2026/03/21 18:13:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:13:18 [log_collector] {"stage_name":"log_collector","events_processed":817,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":163.4,"last_update":"2026-03-21T18:13:13.870089976Z"} +2026/03/21 18:13:18 [metric_collector] {"stage_name":"metric_collector","events_processed":444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":88.8,"last_update":"2026-03-21T18:13:13.870470425Z"} +2026/03/21 18:13:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:13:13.878920152Z"} +2026/03/21 18:13:18 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":447.4153106603062,"throughput_eps":0,"last_update":"2026-03-21T18:13:13.965061416Z"} +2026/03/21 18:13:18 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":7.740238997785597,"throughput_eps":0,"last_update":"2026-03-21T18:13:13.96625362Z"} +2026/03/21 18:13:18 ───────────────────────────────────────────────── +2026/03/21 18:13:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:13:23 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":7.740238997785597,"throughput_eps":0,"last_update":"2026-03-21T18:13:18.965272566Z"} +2026/03/21 18:13:23 [log_collector] {"stage_name":"log_collector","events_processed":817,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":163.4,"last_update":"2026-03-21T18:13:18.869420881Z"} +2026/03/21 18:13:23 [metric_collector] {"stage_name":"metric_collector","events_processed":449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":89.8,"last_update":"2026-03-21T18:13:18.869894398Z"} +2026/03/21 18:13:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:13:18.878949184Z"} +2026/03/21 18:13:23 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":447.4153106603062,"throughput_eps":0,"last_update":"2026-03-21T18:13:18.965108831Z"} +2026/03/21 18:13:23 ───────────────────────────────────────────────── +2026/03/21 18:13:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:13:28 [metric_collector] {"stage_name":"metric_collector","events_processed":454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":90.8,"last_update":"2026-03-21T18:13:23.869844064Z"} +2026/03/21 18:13:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:13:23.878456002Z"} +2026/03/21 18:13:28 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":798.850209328245,"throughput_eps":0,"last_update":"2026-03-21T18:13:23.965831048Z"} +2026/03/21 18:13:28 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":7.8626913982284785,"throughput_eps":0,"last_update":"2026-03-21T18:13:23.965804006Z"} +2026/03/21 18:13:28 [log_collector] {"stage_name":"log_collector","events_processed":817,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":163.4,"last_update":"2026-03-21T18:13:23.869416374Z"} +2026/03/21 18:13:28 ───────────────────────────────────────────────── +2026/03/21 18:13:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:13:33 [log_collector] {"stage_name":"log_collector","events_processed":817,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":163.4,"last_update":"2026-03-21T18:13:28.869673006Z"} +2026/03/21 18:13:33 [metric_collector] {"stage_name":"metric_collector","events_processed":459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":91.8,"last_update":"2026-03-21T18:13:28.869848192Z"} +2026/03/21 18:13:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:13:28.878336002Z"} +2026/03/21 18:13:33 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":798.850209328245,"throughput_eps":0,"last_update":"2026-03-21T18:13:28.965544178Z"} +2026/03/21 18:13:33 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":7.8626913982284785,"throughput_eps":0,"last_update":"2026-03-21T18:13:28.965571269Z"} +2026/03/21 18:13:33 ───────────────────────────────────────────────── +2026/03/21 18:13:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:13:38 [log_collector] {"stage_name":"log_collector","events_processed":817,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":163.4,"last_update":"2026-03-21T18:13:33.869421541Z"} +2026/03/21 18:13:38 [metric_collector] {"stage_name":"metric_collector","events_processed":469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":93.8,"last_update":"2026-03-21T18:13:38.870103972Z"} +2026/03/21 18:13:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:13:33.878857277Z"} +2026/03/21 18:13:38 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":798.850209328245,"throughput_eps":0,"last_update":"2026-03-21T18:13:33.966134776Z"} +2026/03/21 18:13:38 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":7.8626913982284785,"throughput_eps":0,"last_update":"2026-03-21T18:13:33.966245207Z"} +2026/03/21 18:13:38 ───────────────────────────────────────────────── +2026/03/21 18:13:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:13:43 [log_collector] {"stage_name":"log_collector","events_processed":817,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":163.4,"last_update":"2026-03-21T18:13:38.870375041Z"} +2026/03/21 18:13:43 [metric_collector] {"stage_name":"metric_collector","events_processed":469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":93.8,"last_update":"2026-03-21T18:13:38.870103972Z"} +2026/03/21 18:13:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:13:38.879146484Z"} +2026/03/21 18:13:43 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":798.850209328245,"throughput_eps":0,"last_update":"2026-03-21T18:13:38.965449796Z"} +2026/03/21 18:13:43 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":7.8626913982284785,"throughput_eps":0,"last_update":"2026-03-21T18:13:38.96550352Z"} +2026/03/21 18:13:43 ───────────────────────────────────────────────── +2026/03/21 18:13:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:13:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:13:43.87728549Z"} +2026/03/21 18:13:48 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":798.850209328245,"throughput_eps":0,"last_update":"2026-03-21T18:13:43.96562813Z"} +2026/03/21 18:13:48 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":7.8626913982284785,"throughput_eps":0,"last_update":"2026-03-21T18:13:43.965653138Z"} +2026/03/21 18:13:48 [log_collector] {"stage_name":"log_collector","events_processed":817,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":163.4,"last_update":"2026-03-21T18:13:43.869921293Z"} +2026/03/21 18:13:48 [metric_collector] {"stage_name":"metric_collector","events_processed":474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":94.8,"last_update":"2026-03-21T18:13:43.869950268Z"} +2026/03/21 18:13:48 ───────────────────────────────────────────────── +2026/03/21 18:13:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:13:53 [metric_collector] {"stage_name":"metric_collector","events_processed":479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":95.8,"last_update":"2026-03-21T18:13:48.870340904Z"} +2026/03/21 18:13:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:13:48.87871724Z"} +2026/03/21 18:13:53 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":798.850209328245,"throughput_eps":0,"last_update":"2026-03-21T18:13:48.965928823Z"} +2026/03/21 18:13:53 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":7.8626913982284785,"throughput_eps":0,"last_update":"2026-03-21T18:13:48.966044785Z"} +2026/03/21 18:13:53 [log_collector] {"stage_name":"log_collector","events_processed":817,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":163.4,"last_update":"2026-03-21T18:13:48.870035739Z"} +2026/03/21 18:13:53 ───────────────────────────────────────────────── +2026/03/21 18:13:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:13:58 [log_collector] {"stage_name":"log_collector","events_processed":817,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":163.4,"last_update":"2026-03-21T18:13:53.869968315Z"} +2026/03/21 18:13:58 [metric_collector] {"stage_name":"metric_collector","events_processed":484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":96.8,"last_update":"2026-03-21T18:13:53.870447953Z"} +2026/03/21 18:13:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:13:53.87895459Z"} +2026/03/21 18:13:58 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":662.7969300625961,"throughput_eps":0,"last_update":"2026-03-21T18:13:53.965068118Z"} +2026/03/21 18:13:58 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":8.410366718582782,"throughput_eps":0,"last_update":"2026-03-21T18:13:53.966216529Z"} +2026/03/21 18:13:58 ───────────────────────────────────────────────── +Saved state: 11 clusters, 818 messages, reason: none +2026/03/21 18:14:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:14:03 [metric_collector] {"stage_name":"metric_collector","events_processed":489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":97.8,"last_update":"2026-03-21T18:13:58.869805314Z"} +2026/03/21 18:14:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:13:58.878110805Z"} +2026/03/21 18:14:03 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":662.7969300625961,"throughput_eps":0,"last_update":"2026-03-21T18:13:58.965315865Z"} +2026/03/21 18:14:03 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":8.410366718582782,"throughput_eps":0,"last_update":"2026-03-21T18:13:58.965373234Z"} +2026/03/21 18:14:03 [log_collector] {"stage_name":"log_collector","events_processed":817,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":163.4,"last_update":"2026-03-21T18:13:58.869418193Z"} +2026/03/21 18:14:03 ───────────────────────────────────────────────── +2026/03/21 18:14:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:14:08 [log_collector] {"stage_name":"log_collector","events_processed":818,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":163.6,"last_update":"2026-03-21T18:14:03.869821574Z"} +2026/03/21 18:14:08 [metric_collector] {"stage_name":"metric_collector","events_processed":494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":98.8,"last_update":"2026-03-21T18:14:03.870209116Z"} +2026/03/21 18:14:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:14:03.879016849Z"} +2026/03/21 18:14:08 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":662.7969300625961,"throughput_eps":0,"last_update":"2026-03-21T18:14:03.965665954Z"} +2026/03/21 18:14:08 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":8.410366718582782,"throughput_eps":0,"last_update":"2026-03-21T18:14:03.965649193Z"} +2026/03/21 18:14:08 ───────────────────────────────────────────────── +2026/03/21 18:14:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:14:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:14:08.87629934Z"} +2026/03/21 18:14:13 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":662.7969300625961,"throughput_eps":0,"last_update":"2026-03-21T18:14:08.965511876Z"} +2026/03/21 18:14:13 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":8.410366718582782,"throughput_eps":0,"last_update":"2026-03-21T18:14:08.965529209Z"} +2026/03/21 18:14:13 [log_collector] {"stage_name":"log_collector","events_processed":822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":164.4,"last_update":"2026-03-21T18:14:08.869416114Z"} +2026/03/21 18:14:13 [metric_collector] {"stage_name":"metric_collector","events_processed":499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":99.8,"last_update":"2026-03-21T18:14:08.870176371Z"} +2026/03/21 18:14:13 ───────────────────────────────────────────────── +2026/03/21 18:14:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:14:18 [log_collector] {"stage_name":"log_collector","events_processed":822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":164.4,"last_update":"2026-03-21T18:14:13.869764755Z"} +2026/03/21 18:14:18 [metric_collector] {"stage_name":"metric_collector","events_processed":504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":100.8,"last_update":"2026-03-21T18:14:13.870254603Z"} +2026/03/21 18:14:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:14:13.878981562Z"} +2026/03/21 18:14:18 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":662.7969300625961,"throughput_eps":0,"last_update":"2026-03-21T18:14:13.96510032Z"} +2026/03/21 18:14:18 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":8.410366718582782,"throughput_eps":0,"last_update":"2026-03-21T18:14:13.966276243Z"} +2026/03/21 18:14:18 ───────────────────────────────────────────────── +2026/03/21 18:14:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:14:23 [log_collector] {"stage_name":"log_collector","events_processed":822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":164.4,"last_update":"2026-03-21T18:14:18.869417881Z"} +2026/03/21 18:14:23 [metric_collector] {"stage_name":"metric_collector","events_processed":509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":101.8,"last_update":"2026-03-21T18:14:18.869910325Z"} +2026/03/21 18:14:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":206,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:14:18.876633104Z"} +2026/03/21 18:14:23 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":662.7969300625961,"throughput_eps":0,"last_update":"2026-03-21T18:14:18.96584593Z"} +2026/03/21 18:14:23 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":8.410366718582782,"throughput_eps":0,"last_update":"2026-03-21T18:14:18.965895705Z"} +2026/03/21 18:14:23 ───────────────────────────────────────────────── +2026/03/21 18:14:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:14:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:14:23.877564245Z"} +2026/03/21 18:14:28 [transform_engine] {"stage_name":"transform_engine","events_processed":17,"events_dropped":0,"avg_latency_ms":2109.260903050077,"throughput_eps":0,"last_update":"2026-03-21T18:14:26.861022559Z"} +2026/03/21 18:14:28 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":8.410366718582782,"throughput_eps":0,"last_update":"2026-03-21T18:14:23.965754222Z"} +2026/03/21 18:14:28 [log_collector] {"stage_name":"log_collector","events_processed":822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":164.4,"last_update":"2026-03-21T18:14:23.869401758Z"} +2026/03/21 18:14:28 [metric_collector] {"stage_name":"metric_collector","events_processed":514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":102.8,"last_update":"2026-03-21T18:14:23.870609211Z"} +2026/03/21 18:14:28 ───────────────────────────────────────────────── +2026/03/21 18:14:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:14:33 [log_collector] {"stage_name":"log_collector","events_processed":822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":164.4,"last_update":"2026-03-21T18:14:28.869997936Z"} +2026/03/21 18:14:33 [metric_collector] {"stage_name":"metric_collector","events_processed":519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":103.8,"last_update":"2026-03-21T18:14:28.870317739Z"} +2026/03/21 18:14:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":210,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:14:28.878293297Z"} +2026/03/21 18:14:33 [transform_engine] {"stage_name":"transform_engine","events_processed":17,"events_dropped":0,"avg_latency_ms":2109.260903050077,"throughput_eps":0,"last_update":"2026-03-21T18:14:28.965831706Z"} +2026/03/21 18:14:33 [detection_layer] {"stage_name":"detection_layer","events_processed":17,"events_dropped":0,"avg_latency_ms":8.046342174866226,"throughput_eps":0,"last_update":"2026-03-21T18:14:28.965849499Z"} +2026/03/21 18:14:33 ───────────────────────────────────────────────── +2026/03/21 18:14:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:14:38 [metric_collector] {"stage_name":"metric_collector","events_processed":529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":105.8,"last_update":"2026-03-21T18:14:38.869882406Z"} +2026/03/21 18:14:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:14:33.880021741Z"} +2026/03/21 18:14:38 [transform_engine] {"stage_name":"transform_engine","events_processed":17,"events_dropped":0,"avg_latency_ms":2109.260903050077,"throughput_eps":0,"last_update":"2026-03-21T18:14:33.965087071Z"} +2026/03/21 18:14:38 [detection_layer] {"stage_name":"detection_layer","events_processed":17,"events_dropped":0,"avg_latency_ms":8.046342174866226,"throughput_eps":0,"last_update":"2026-03-21T18:14:33.966186657Z"} +2026/03/21 18:14:38 [log_collector] {"stage_name":"log_collector","events_processed":822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":164.4,"last_update":"2026-03-21T18:14:33.869483051Z"} +2026/03/21 18:14:38 ───────────────────────────────────────────────── +2026/03/21 18:14:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:14:43 [log_collector] {"stage_name":"log_collector","events_processed":822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":164.4,"last_update":"2026-03-21T18:14:38.869892846Z"} +2026/03/21 18:14:43 [metric_collector] {"stage_name":"metric_collector","events_processed":529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":105.8,"last_update":"2026-03-21T18:14:38.869882406Z"} +2026/03/21 18:14:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:14:38.875946823Z"} +2026/03/21 18:14:43 [transform_engine] {"stage_name":"transform_engine","events_processed":17,"events_dropped":0,"avg_latency_ms":2109.260903050077,"throughput_eps":0,"last_update":"2026-03-21T18:14:38.965122118Z"} +2026/03/21 18:14:43 [detection_layer] {"stage_name":"detection_layer","events_processed":17,"events_dropped":0,"avg_latency_ms":8.046342174866226,"throughput_eps":0,"last_update":"2026-03-21T18:14:38.968362285Z"} +2026/03/21 18:14:43 ───────────────────────────────────────────────── +2026/03/21 18:14:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:14:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:14:43.877934458Z"} +2026/03/21 18:14:48 [transform_engine] {"stage_name":"transform_engine","events_processed":17,"events_dropped":0,"avg_latency_ms":2109.260903050077,"throughput_eps":0,"last_update":"2026-03-21T18:14:43.96610129Z"} +2026/03/21 18:14:48 [detection_layer] {"stage_name":"detection_layer","events_processed":17,"events_dropped":0,"avg_latency_ms":8.046342174866226,"throughput_eps":0,"last_update":"2026-03-21T18:14:43.966077024Z"} +2026/03/21 18:14:48 [log_collector] {"stage_name":"log_collector","events_processed":822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":164.4,"last_update":"2026-03-21T18:14:43.869634949Z"} +2026/03/21 18:14:48 [metric_collector] {"stage_name":"metric_collector","events_processed":534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":106.8,"last_update":"2026-03-21T18:14:43.869987103Z"} +2026/03/21 18:14:48 ───────────────────────────────────────────────── +2026/03/21 18:14:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:14:53 [metric_collector] {"stage_name":"metric_collector","events_processed":538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":107.6,"last_update":"2026-03-21T18:14:48.869395814Z"} +2026/03/21 18:14:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:14:48.876943564Z"} +2026/03/21 18:14:53 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":1731.2142210400618,"throughput_eps":0,"last_update":"2026-03-21T18:14:49.184157527Z"} +2026/03/21 18:14:53 [detection_layer] {"stage_name":"detection_layer","events_processed":17,"events_dropped":0,"avg_latency_ms":8.046342174866226,"throughput_eps":0,"last_update":"2026-03-21T18:14:48.966232556Z"} +2026/03/21 18:14:53 [log_collector] {"stage_name":"log_collector","events_processed":831,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":166.2,"last_update":"2026-03-21T18:14:48.869402107Z"} +2026/03/21 18:14:53 ───────────────────────────────────────────────── +2026/03/21 18:14:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:14:58 [log_collector] {"stage_name":"log_collector","events_processed":833,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":166.6,"last_update":"2026-03-21T18:14:53.869500216Z"} +2026/03/21 18:14:58 [metric_collector] {"stage_name":"metric_collector","events_processed":543,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":108.6,"last_update":"2026-03-21T18:14:53.869557998Z"} +2026/03/21 18:14:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:14:53.879245416Z"} +2026/03/21 18:14:58 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":1731.2142210400618,"throughput_eps":0,"last_update":"2026-03-21T18:14:53.965453585Z"} +2026/03/21 18:14:58 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":7.83719393989298,"throughput_eps":0,"last_update":"2026-03-21T18:14:53.965567955Z"} +2026/03/21 18:14:58 ───────────────────────────────────────────────── +2026/03/21 18:15:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:15:03 [log_collector] {"stage_name":"log_collector","events_processed":1039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":207.8,"last_update":"2026-03-21T18:14:58.869788258Z"} +2026/03/21 18:15:03 [metric_collector] {"stage_name":"metric_collector","events_processed":548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":109.6,"last_update":"2026-03-21T18:14:58.869804459Z"} +2026/03/21 18:15:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":222,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:14:58.87708673Z"} +2026/03/21 18:15:03 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":1731.2142210400618,"throughput_eps":0,"last_update":"2026-03-21T18:14:58.966137064Z"} +2026/03/21 18:15:03 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":7.83719393989298,"throughput_eps":0,"last_update":"2026-03-21T18:14:58.966117166Z"} +2026/03/21 18:15:03 ───────────────────────────────────────────────── +Saved state: 11 clusters, 1170 messages, reason: none +2026/03/21 18:15:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:15:08 [metric_collector] {"stage_name":"metric_collector","events_processed":554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":110.8,"last_update":"2026-03-21T18:15:03.869747036Z"} +2026/03/21 18:15:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:15:03.87651925Z"} +2026/03/21 18:15:08 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":1731.2142210400618,"throughput_eps":0,"last_update":"2026-03-21T18:15:03.966020538Z"} +2026/03/21 18:15:08 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":7.83719393989298,"throughput_eps":0,"last_update":"2026-03-21T18:15:03.966065193Z"} +2026/03/21 18:15:08 [log_collector] {"stage_name":"log_collector","events_processed":1169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":233.8,"last_update":"2026-03-21T18:15:03.869431491Z"} +2026/03/21 18:15:08 ───────────────────────────────────────────────── +2026/03/21 18:15:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:15:13 [log_collector] {"stage_name":"log_collector","events_processed":1175,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":235,"last_update":"2026-03-21T18:15:08.870417975Z"} +2026/03/21 18:15:13 [metric_collector] {"stage_name":"metric_collector","events_processed":559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":111.8,"last_update":"2026-03-21T18:15:08.870782594Z"} +2026/03/21 18:15:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:15:08.879996054Z"} +2026/03/21 18:15:13 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":1731.2142210400618,"throughput_eps":0,"last_update":"2026-03-21T18:15:08.965141558Z"} +2026/03/21 18:15:13 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":7.83719393989298,"throughput_eps":0,"last_update":"2026-03-21T18:15:08.966272815Z"} +2026/03/21 18:15:13 ───────────────────────────────────────────────── +2026/03/21 18:15:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:15:18 [log_collector] {"stage_name":"log_collector","events_processed":1175,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":235,"last_update":"2026-03-21T18:15:13.869545535Z"} +2026/03/21 18:15:18 [metric_collector] {"stage_name":"metric_collector","events_processed":564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":112.8,"last_update":"2026-03-21T18:15:13.869836873Z"} +2026/03/21 18:15:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:15:13.879033682Z"} +2026/03/21 18:15:18 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":1731.2142210400618,"throughput_eps":0,"last_update":"2026-03-21T18:15:13.965224749Z"} +2026/03/21 18:15:18 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":7.83719393989298,"throughput_eps":0,"last_update":"2026-03-21T18:15:13.965286928Z"} +2026/03/21 18:15:18 ───────────────────────────────────────────────── +2026/03/21 18:15:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:15:23 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":7.83719393989298,"throughput_eps":0,"last_update":"2026-03-21T18:15:18.966140421Z"} +2026/03/21 18:15:23 [log_collector] {"stage_name":"log_collector","events_processed":1175,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":235,"last_update":"2026-03-21T18:15:18.869885935Z"} +2026/03/21 18:15:23 [metric_collector] {"stage_name":"metric_collector","events_processed":569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":113.8,"last_update":"2026-03-21T18:15:18.870325307Z"} +2026/03/21 18:15:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:15:18.878900795Z"} +2026/03/21 18:15:23 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":1731.2142210400618,"throughput_eps":0,"last_update":"2026-03-21T18:15:18.966094273Z"} +2026/03/21 18:15:23 ───────────────────────────────────────────────── +2026/03/21 18:15:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:15:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:15:23.879833218Z"} +2026/03/21 18:15:28 [transform_engine] {"stage_name":"transform_engine","events_processed":19,"events_dropped":0,"avg_latency_ms":1406.8416700320497,"throughput_eps":0,"last_update":"2026-03-21T18:15:23.966003915Z"} +2026/03/21 18:15:28 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":8.326585351914385,"throughput_eps":0,"last_update":"2026-03-21T18:15:23.966055464Z"} +2026/03/21 18:15:28 [log_collector] {"stage_name":"log_collector","events_processed":1175,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":235,"last_update":"2026-03-21T18:15:23.869964393Z"} +2026/03/21 18:15:28 [metric_collector] {"stage_name":"metric_collector","events_processed":574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":114.8,"last_update":"2026-03-21T18:15:23.870549493Z"} +2026/03/21 18:15:28 ───────────────────────────────────────────────── +2026/03/21 18:15:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:15:33 [log_collector] {"stage_name":"log_collector","events_processed":1175,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":235,"last_update":"2026-03-21T18:15:28.87024306Z"} +2026/03/21 18:15:33 [metric_collector] {"stage_name":"metric_collector","events_processed":579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":115.8,"last_update":"2026-03-21T18:15:28.870528708Z"} +2026/03/21 18:15:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:15:28.879611338Z"} +2026/03/21 18:15:33 [transform_engine] {"stage_name":"transform_engine","events_processed":19,"events_dropped":0,"avg_latency_ms":1406.8416700320497,"throughput_eps":0,"last_update":"2026-03-21T18:15:28.965802053Z"} +2026/03/21 18:15:33 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":8.326585351914385,"throughput_eps":0,"last_update":"2026-03-21T18:15:28.96587852Z"} +2026/03/21 18:15:33 ───────────────────────────────────────────────── +2026/03/21 18:15:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:15:38 [log_collector] {"stage_name":"log_collector","events_processed":1175,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":235,"last_update":"2026-03-21T18:15:33.869404396Z"} +2026/03/21 18:15:38 [metric_collector] {"stage_name":"metric_collector","events_processed":584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":116.8,"last_update":"2026-03-21T18:15:33.869779004Z"} +2026/03/21 18:15:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:15:33.878637484Z"} +2026/03/21 18:15:38 [transform_engine] {"stage_name":"transform_engine","events_processed":19,"events_dropped":0,"avg_latency_ms":1406.8416700320497,"throughput_eps":0,"last_update":"2026-03-21T18:15:33.965878892Z"} +2026/03/21 18:15:38 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":8.326585351914385,"throughput_eps":0,"last_update":"2026-03-21T18:15:33.965847642Z"} +2026/03/21 18:15:38 ───────────────────────────────────────────────── +2026/03/21 18:15:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:15:43 [transform_engine] {"stage_name":"transform_engine","events_processed":19,"events_dropped":0,"avg_latency_ms":1406.8416700320497,"throughput_eps":0,"last_update":"2026-03-21T18:15:38.965481301Z"} +2026/03/21 18:15:43 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":8.326585351914385,"throughput_eps":0,"last_update":"2026-03-21T18:15:38.96540742Z"} +2026/03/21 18:15:43 [log_collector] {"stage_name":"log_collector","events_processed":1175,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":235,"last_update":"2026-03-21T18:15:38.869563421Z"} +2026/03/21 18:15:43 [metric_collector] {"stage_name":"metric_collector","events_processed":589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":117.8,"last_update":"2026-03-21T18:15:38.869844129Z"} +2026/03/21 18:15:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:15:38.878184687Z"} +2026/03/21 18:15:43 ───────────────────────────────────────────────── +2026/03/21 18:15:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:15:48 [log_collector] {"stage_name":"log_collector","events_processed":1175,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":235,"last_update":"2026-03-21T18:15:43.870249622Z"} +2026/03/21 18:15:48 [metric_collector] {"stage_name":"metric_collector","events_processed":594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":118.8,"last_update":"2026-03-21T18:15:43.870497608Z"} +2026/03/21 18:15:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:15:43.879264973Z"} +2026/03/21 18:15:48 [transform_engine] {"stage_name":"transform_engine","events_processed":19,"events_dropped":0,"avg_latency_ms":1406.8416700320497,"throughput_eps":0,"last_update":"2026-03-21T18:15:43.965468173Z"} +2026/03/21 18:15:48 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":8.326585351914385,"throughput_eps":0,"last_update":"2026-03-21T18:15:43.965501817Z"} +2026/03/21 18:15:48 ───────────────────────────────────────────────── +2026/03/21 18:15:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:15:53 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":1136.9869386256398,"throughput_eps":0,"last_update":"2026-03-21T18:15:49.022961125Z"} +2026/03/21 18:15:53 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":8.326585351914385,"throughput_eps":0,"last_update":"2026-03-21T18:15:48.965377192Z"} +2026/03/21 18:15:53 [log_collector] {"stage_name":"log_collector","events_processed":1175,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":235,"last_update":"2026-03-21T18:15:48.869963658Z"} +2026/03/21 18:15:53 [metric_collector] {"stage_name":"metric_collector","events_processed":599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":119.8,"last_update":"2026-03-21T18:15:48.870173019Z"} +2026/03/21 18:15:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:15:48.877145666Z"} +2026/03/21 18:15:53 ───────────────────────────────────────────────── +2026/03/21 18:15:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:15:58 [log_collector] {"stage_name":"log_collector","events_processed":1175,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":235,"last_update":"2026-03-21T18:15:53.869612488Z"} +2026/03/21 18:15:58 [metric_collector] {"stage_name":"metric_collector","events_processed":604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":120.8,"last_update":"2026-03-21T18:15:53.869912943Z"} +2026/03/21 18:15:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:15:53.876872877Z"} +2026/03/21 18:15:58 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":1136.9869386256398,"throughput_eps":0,"last_update":"2026-03-21T18:15:53.966156778Z"} +2026/03/21 18:15:58 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":8.471916681531509,"throughput_eps":0,"last_update":"2026-03-21T18:15:53.966132331Z"} +2026/03/21 18:15:58 ───────────────────────────────────────────────── +2026/03/21 18:16:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:16:03 [log_collector] {"stage_name":"log_collector","events_processed":1175,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":235,"last_update":"2026-03-21T18:15:58.869425921Z"} +2026/03/21 18:16:03 [metric_collector] {"stage_name":"metric_collector","events_processed":609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":121.8,"last_update":"2026-03-21T18:15:58.869852077Z"} +2026/03/21 18:16:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":246,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:15:58.877222657Z"} +2026/03/21 18:16:03 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":1136.9869386256398,"throughput_eps":0,"last_update":"2026-03-21T18:15:58.965408023Z"} +2026/03/21 18:16:03 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":8.471916681531509,"throughput_eps":0,"last_update":"2026-03-21T18:15:58.96542727Z"} +2026/03/21 18:16:03 ───────────────────────────────────────────────── +2026/03/21 18:16:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:16:08 [log_collector] {"stage_name":"log_collector","events_processed":1175,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":235,"last_update":"2026-03-21T18:16:03.869845351Z"} +2026/03/21 18:16:08 [metric_collector] {"stage_name":"metric_collector","events_processed":614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":122.8,"last_update":"2026-03-21T18:16:03.870026628Z"} +2026/03/21 18:16:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:16:03.878557872Z"} +2026/03/21 18:16:08 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":1136.9869386256398,"throughput_eps":0,"last_update":"2026-03-21T18:16:03.965760155Z"} +2026/03/21 18:16:08 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":8.471916681531509,"throughput_eps":0,"last_update":"2026-03-21T18:16:03.96578333Z"} +2026/03/21 18:16:08 ───────────────────────────────────────────────── +2026/03/21 18:16:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:16:13 [log_collector] {"stage_name":"log_collector","events_processed":1175,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":235,"last_update":"2026-03-21T18:16:08.869944187Z"} +2026/03/21 18:16:13 [metric_collector] {"stage_name":"metric_collector","events_processed":619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":123.8,"last_update":"2026-03-21T18:16:08.87021276Z"} +2026/03/21 18:16:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:16:08.877618168Z"} +2026/03/21 18:16:13 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":1136.9869386256398,"throughput_eps":0,"last_update":"2026-03-21T18:16:08.965815818Z"} +2026/03/21 18:16:13 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":8.471916681531509,"throughput_eps":0,"last_update":"2026-03-21T18:16:08.965880742Z"} +2026/03/21 18:16:13 ───────────────────────────────────────────────── +2026/03/21 18:16:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:16:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:16:13.876870157Z"} +2026/03/21 18:16:18 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":1136.9869386256398,"throughput_eps":0,"last_update":"2026-03-21T18:16:13.966122458Z"} +2026/03/21 18:16:18 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":8.471916681531509,"throughput_eps":0,"last_update":"2026-03-21T18:16:13.966101958Z"} +2026/03/21 18:16:18 [log_collector] {"stage_name":"log_collector","events_processed":1175,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":235,"last_update":"2026-03-21T18:16:13.869436296Z"} +2026/03/21 18:16:18 [metric_collector] {"stage_name":"metric_collector","events_processed":624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":124.8,"last_update":"2026-03-21T18:16:13.869863725Z"} +2026/03/21 18:16:18 ───────────────────────────────────────────────── +2026/03/21 18:16:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:16:23 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":1136.9869386256398,"throughput_eps":0,"last_update":"2026-03-21T18:16:18.966011786Z"} +2026/03/21 18:16:23 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":8.471916681531509,"throughput_eps":0,"last_update":"2026-03-21T18:16:18.966042936Z"} +2026/03/21 18:16:23 [log_collector] {"stage_name":"log_collector","events_processed":1175,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":235,"last_update":"2026-03-21T18:16:18.869838638Z"} +2026/03/21 18:16:23 [metric_collector] {"stage_name":"metric_collector","events_processed":629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":125.8,"last_update":"2026-03-21T18:16:18.870277468Z"} +2026/03/21 18:16:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:16:18.877828303Z"} +2026/03/21 18:16:23 ───────────────────────────────────────────────── +2026/03/21 18:16:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:16:28 [log_collector] {"stage_name":"log_collector","events_processed":1175,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":235,"last_update":"2026-03-21T18:16:23.870248222Z"} +2026/03/21 18:16:28 [metric_collector] {"stage_name":"metric_collector","events_processed":633,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":126.6,"last_update":"2026-03-21T18:16:23.870330229Z"} +2026/03/21 18:16:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:16:23.877773749Z"} +2026/03/21 18:16:28 [transform_engine] {"stage_name":"transform_engine","events_processed":21,"events_dropped":0,"avg_latency_ms":921.1961517005119,"throughput_eps":0,"last_update":"2026-03-21T18:16:23.966001847Z"} +2026/03/21 18:16:28 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":8.559619345225208,"throughput_eps":0,"last_update":"2026-03-21T18:16:23.965991838Z"} +2026/03/21 18:16:28 ───────────────────────────────────────────────── +2026/03/21 18:16:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:16:33 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":8.559619345225208,"throughput_eps":0,"last_update":"2026-03-21T18:16:28.965886724Z"} +2026/03/21 18:16:33 [log_collector] {"stage_name":"log_collector","events_processed":1175,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":235,"last_update":"2026-03-21T18:16:28.87038455Z"} +2026/03/21 18:16:33 [metric_collector] {"stage_name":"metric_collector","events_processed":639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":127.8,"last_update":"2026-03-21T18:16:28.871004127Z"} +2026/03/21 18:16:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:16:28.879469324Z"} +2026/03/21 18:16:33 [transform_engine] {"stage_name":"transform_engine","events_processed":21,"events_dropped":0,"avg_latency_ms":921.1961517005119,"throughput_eps":0,"last_update":"2026-03-21T18:16:28.965902134Z"} +2026/03/21 18:16:33 ───────────────────────────────────────────────── +2026/03/21 18:16:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:16:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:16:33.880958162Z"} +2026/03/21 18:16:38 [transform_engine] {"stage_name":"transform_engine","events_processed":21,"events_dropped":0,"avg_latency_ms":921.1961517005119,"throughput_eps":0,"last_update":"2026-03-21T18:16:33.965061639Z"} +2026/03/21 18:16:38 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":8.559619345225208,"throughput_eps":0,"last_update":"2026-03-21T18:16:33.966194979Z"} +2026/03/21 18:16:38 [log_collector] {"stage_name":"log_collector","events_processed":1175,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":235,"last_update":"2026-03-21T18:16:33.869920827Z"} +2026/03/21 18:16:38 [metric_collector] {"stage_name":"metric_collector","events_processed":644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":128.8,"last_update":"2026-03-21T18:16:33.870555413Z"} +2026/03/21 18:16:38 ───────────────────────────────────────────────── +Saved state: 11 clusters, 1176 messages, reason: none +2026/03/21 18:16:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:16:43 [transform_engine] {"stage_name":"transform_engine","events_processed":21,"events_dropped":0,"avg_latency_ms":921.1961517005119,"throughput_eps":0,"last_update":"2026-03-21T18:16:38.965851464Z"} +2026/03/21 18:16:43 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":8.559619345225208,"throughput_eps":0,"last_update":"2026-03-21T18:16:38.965839241Z"} +2026/03/21 18:16:43 [log_collector] {"stage_name":"log_collector","events_processed":1175,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":235,"last_update":"2026-03-21T18:16:38.869997868Z"} +2026/03/21 18:16:43 [metric_collector] {"stage_name":"metric_collector","events_processed":649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":129.8,"last_update":"2026-03-21T18:16:38.870496543Z"} +2026/03/21 18:16:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:16:38.878605947Z"} +2026/03/21 18:16:43 ───────────────────────────────────────────────── +2026/03/21 18:16:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:16:48 [transform_engine] {"stage_name":"transform_engine","events_processed":21,"events_dropped":0,"avg_latency_ms":921.1961517005119,"throughput_eps":0,"last_update":"2026-03-21T18:16:43.965621995Z"} +2026/03/21 18:16:48 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":8.559619345225208,"throughput_eps":0,"last_update":"2026-03-21T18:16:43.965610442Z"} +2026/03/21 18:16:48 [log_collector] {"stage_name":"log_collector","events_processed":1178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":235.6,"last_update":"2026-03-21T18:16:43.869806391Z"} +2026/03/21 18:16:48 [metric_collector] {"stage_name":"metric_collector","events_processed":654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":130.8,"last_update":"2026-03-21T18:16:43.870181048Z"} +2026/03/21 18:16:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:16:43.87644087Z"} +2026/03/21 18:16:48 ───────────────────────────────────────────────── +2026/03/21 18:16:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:16:53 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":1117.9147013604095,"throughput_eps":0,"last_update":"2026-03-21T18:16:50.870188916Z"} +2026/03/21 18:16:53 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":8.559619345225208,"throughput_eps":0,"last_update":"2026-03-21T18:16:48.965365271Z"} +2026/03/21 18:16:53 [log_collector] {"stage_name":"log_collector","events_processed":1178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":235.6,"last_update":"2026-03-21T18:16:48.870108117Z"} +2026/03/21 18:16:53 [metric_collector] {"stage_name":"metric_collector","events_processed":659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":131.8,"last_update":"2026-03-21T18:16:48.870520737Z"} +2026/03/21 18:16:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:16:48.878257659Z"} +2026/03/21 18:16:53 ───────────────────────────────────────────────── +2026/03/21 18:16:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:16:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:16:53.880384851Z"} +2026/03/21 18:16:58 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":1117.9147013604095,"throughput_eps":0,"last_update":"2026-03-21T18:16:53.965580249Z"} +2026/03/21 18:16:58 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":8.500341276180167,"throughput_eps":0,"last_update":"2026-03-21T18:16:53.965537076Z"} +2026/03/21 18:16:58 [log_collector] {"stage_name":"log_collector","events_processed":1208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":241.6,"last_update":"2026-03-21T18:16:58.870284796Z"} +2026/03/21 18:16:58 [metric_collector] {"stage_name":"metric_collector","events_processed":664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":132.8,"last_update":"2026-03-21T18:16:53.869893663Z"} +2026/03/21 18:16:58 ───────────────────────────────────────────────── +2026/03/21 18:17:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:17:03 [log_collector] {"stage_name":"log_collector","events_processed":1208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":241.6,"last_update":"2026-03-21T18:16:58.870284796Z"} +2026/03/21 18:17:03 [metric_collector] {"stage_name":"metric_collector","events_processed":669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":133.8,"last_update":"2026-03-21T18:16:58.870503986Z"} +2026/03/21 18:17:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:16:58.877900967Z"} +2026/03/21 18:17:03 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":1117.9147013604095,"throughput_eps":0,"last_update":"2026-03-21T18:16:58.966224277Z"} +2026/03/21 18:17:03 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":8.500341276180167,"throughput_eps":0,"last_update":"2026-03-21T18:16:58.966308448Z"} +2026/03/21 18:17:03 ───────────────────────────────────────────────── +2026/03/21 18:17:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:17:08 [log_collector] {"stage_name":"log_collector","events_processed":1219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":243.8,"last_update":"2026-03-21T18:17:08.869610676Z"} +2026/03/21 18:17:08 [metric_collector] {"stage_name":"metric_collector","events_processed":674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":134.8,"last_update":"2026-03-21T18:17:03.869813083Z"} +2026/03/21 18:17:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:17:03.876166725Z"} +2026/03/21 18:17:08 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":1117.9147013604095,"throughput_eps":0,"last_update":"2026-03-21T18:17:03.965406462Z"} +2026/03/21 18:17:08 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":8.500341276180167,"throughput_eps":0,"last_update":"2026-03-21T18:17:03.965375252Z"} +2026/03/21 18:17:08 ───────────────────────────────────────────────── +2026/03/21 18:17:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:17:13 [log_collector] {"stage_name":"log_collector","events_processed":1219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":243.8,"last_update":"2026-03-21T18:17:08.869610676Z"} +2026/03/21 18:17:13 [metric_collector] {"stage_name":"metric_collector","events_processed":679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":135.8,"last_update":"2026-03-21T18:17:08.870063694Z"} +2026/03/21 18:17:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:17:08.876739513Z"} +2026/03/21 18:17:13 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":1117.9147013604095,"throughput_eps":0,"last_update":"2026-03-21T18:17:08.966026448Z"} +2026/03/21 18:17:13 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":8.500341276180167,"throughput_eps":0,"last_update":"2026-03-21T18:17:08.96600652Z"} +2026/03/21 18:17:13 ───────────────────────────────────────────────── +2026/03/21 18:17:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:17:18 [log_collector] {"stage_name":"log_collector","events_processed":1219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":243.8,"last_update":"2026-03-21T18:17:13.869795539Z"} +2026/03/21 18:17:18 [metric_collector] {"stage_name":"metric_collector","events_processed":684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":136.8,"last_update":"2026-03-21T18:17:13.869784006Z"} +2026/03/21 18:17:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":276,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:17:13.878408719Z"} +2026/03/21 18:17:18 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":1117.9147013604095,"throughput_eps":0,"last_update":"2026-03-21T18:17:13.965726693Z"} +2026/03/21 18:17:18 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":8.500341276180167,"throughput_eps":0,"last_update":"2026-03-21T18:17:13.965691096Z"} +2026/03/21 18:17:18 ───────────────────────────────────────────────── +2026/03/21 18:17:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:17:23 [log_collector] {"stage_name":"log_collector","events_processed":1219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":243.8,"last_update":"2026-03-21T18:17:23.869704253Z"} +2026/03/21 18:17:23 [metric_collector] {"stage_name":"metric_collector","events_processed":689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":137.8,"last_update":"2026-03-21T18:17:18.870032406Z"} +2026/03/21 18:17:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:17:18.876062748Z"} +2026/03/21 18:17:23 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":914.4175472883277,"throughput_eps":0,"last_update":"2026-03-21T18:17:19.065716699Z"} +2026/03/21 18:17:23 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":8.500341276180167,"throughput_eps":0,"last_update":"2026-03-21T18:17:18.96532563Z"} +2026/03/21 18:17:23 ───────────────────────────────────────────────── +2026/03/21 18:17:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:17:28 [metric_collector] {"stage_name":"metric_collector","events_processed":694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":138.8,"last_update":"2026-03-21T18:17:23.870191967Z"} +2026/03/21 18:17:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:17:23.876132728Z"} +2026/03/21 18:17:28 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":914.4175472883277,"throughput_eps":0,"last_update":"2026-03-21T18:17:23.965324783Z"} +2026/03/21 18:17:28 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":8.589943420944135,"throughput_eps":0,"last_update":"2026-03-21T18:17:23.965389768Z"} +2026/03/21 18:17:28 [log_collector] {"stage_name":"log_collector","events_processed":1219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":243.8,"last_update":"2026-03-21T18:17:28.870292482Z"} +2026/03/21 18:17:28 ───────────────────────────────────────────────── +2026/03/21 18:17:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:17:33 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":8.589943420944135,"throughput_eps":0,"last_update":"2026-03-21T18:17:28.965790788Z"} +2026/03/21 18:17:33 [log_collector] {"stage_name":"log_collector","events_processed":1219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":243.8,"last_update":"2026-03-21T18:17:33.869840067Z"} +2026/03/21 18:17:33 [metric_collector] {"stage_name":"metric_collector","events_processed":699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":139.8,"last_update":"2026-03-21T18:17:28.870606042Z"} +2026/03/21 18:17:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:17:28.878578655Z"} +2026/03/21 18:17:33 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":914.4175472883277,"throughput_eps":0,"last_update":"2026-03-21T18:17:28.9657657Z"} +2026/03/21 18:17:33 ───────────────────────────────────────────────── +2026/03/21 18:17:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:17:38 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":914.4175472883277,"throughput_eps":0,"last_update":"2026-03-21T18:17:33.965073475Z"} +2026/03/21 18:17:38 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":8.589943420944135,"throughput_eps":0,"last_update":"2026-03-21T18:17:33.966325513Z"} +2026/03/21 18:17:38 [log_collector] {"stage_name":"log_collector","events_processed":1219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":243.8,"last_update":"2026-03-21T18:17:38.869791792Z"} +2026/03/21 18:17:38 [metric_collector] {"stage_name":"metric_collector","events_processed":704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":140.8,"last_update":"2026-03-21T18:17:33.870493408Z"} +2026/03/21 18:17:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:17:33.877873836Z"} +2026/03/21 18:17:38 ───────────────────────────────────────────────── +2026/03/21 18:17:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:17:43 [log_collector] {"stage_name":"log_collector","events_processed":1219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":243.8,"last_update":"2026-03-21T18:17:43.869539426Z"} +2026/03/21 18:17:43 [metric_collector] {"stage_name":"metric_collector","events_processed":709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":141.8,"last_update":"2026-03-21T18:17:38.870061539Z"} +2026/03/21 18:17:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":286,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:17:38.876386105Z"} +2026/03/21 18:17:43 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":914.4175472883277,"throughput_eps":0,"last_update":"2026-03-21T18:17:38.965646821Z"} +2026/03/21 18:17:43 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":8.589943420944135,"throughput_eps":0,"last_update":"2026-03-21T18:17:38.965660356Z"} +2026/03/21 18:17:43 ───────────────────────────────────────────────── +2026/03/21 18:17:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:17:48 [log_collector] {"stage_name":"log_collector","events_processed":1219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":243.8,"last_update":"2026-03-21T18:17:43.869539426Z"} +2026/03/21 18:17:48 [metric_collector] {"stage_name":"metric_collector","events_processed":714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":142.8,"last_update":"2026-03-21T18:17:43.869874578Z"} +2026/03/21 18:17:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:17:43.876505662Z"} +2026/03/21 18:17:48 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":914.4175472883277,"throughput_eps":0,"last_update":"2026-03-21T18:17:43.9657156Z"} +2026/03/21 18:17:48 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":8.589943420944135,"throughput_eps":0,"last_update":"2026-03-21T18:17:43.965739907Z"} +2026/03/21 18:17:48 ───────────────────────────────────────────────── +2026/03/21 18:17:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:17:53 [metric_collector] {"stage_name":"metric_collector","events_processed":719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":143.8,"last_update":"2026-03-21T18:17:48.869947433Z"} +2026/03/21 18:17:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:17:48.877641793Z"} +2026/03/21 18:17:53 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":876.5839066306622,"throughput_eps":0,"last_update":"2026-03-21T18:17:49.691134395Z"} +2026/03/21 18:17:53 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":8.589943420944135,"throughput_eps":0,"last_update":"2026-03-21T18:17:48.965965103Z"} +2026/03/21 18:17:53 [log_collector] {"stage_name":"log_collector","events_processed":1219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":243.8,"last_update":"2026-03-21T18:17:48.869701893Z"} +2026/03/21 18:17:53 ───────────────────────────────────────────────── +2026/03/21 18:17:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:17:58 [log_collector] {"stage_name":"log_collector","events_processed":1219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":243.8,"last_update":"2026-03-21T18:17:53.869833949Z"} +2026/03/21 18:17:58 [metric_collector] {"stage_name":"metric_collector","events_processed":724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":144.8,"last_update":"2026-03-21T18:17:53.870024414Z"} +2026/03/21 18:17:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:17:53.877216662Z"} +2026/03/21 18:17:58 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":876.5839066306622,"throughput_eps":0,"last_update":"2026-03-21T18:17:53.965443717Z"} +2026/03/21 18:17:58 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":9.110839936755308,"throughput_eps":0,"last_update":"2026-03-21T18:17:53.965427597Z"} +2026/03/21 18:17:58 ───────────────────────────────────────────────── +2026/03/21 18:18:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:18:03 [log_collector] {"stage_name":"log_collector","events_processed":1219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":243.8,"last_update":"2026-03-21T18:17:58.869627083Z"} +2026/03/21 18:18:03 [metric_collector] {"stage_name":"metric_collector","events_processed":729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":145.8,"last_update":"2026-03-21T18:17:58.869782571Z"} +2026/03/21 18:18:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:17:58.87680827Z"} +2026/03/21 18:18:03 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":876.5839066306622,"throughput_eps":0,"last_update":"2026-03-21T18:17:58.966055882Z"} +2026/03/21 18:18:03 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":9.110839936755308,"throughput_eps":0,"last_update":"2026-03-21T18:17:58.966020203Z"} +2026/03/21 18:18:03 ───────────────────────────────────────────────── +Saved state: 11 clusters, 1220 messages, reason: none +2026/03/21 18:18:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:18:08 [log_collector] {"stage_name":"log_collector","events_processed":1219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":243.8,"last_update":"2026-03-21T18:18:03.869799373Z"} +2026/03/21 18:18:08 [metric_collector] {"stage_name":"metric_collector","events_processed":734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":146.8,"last_update":"2026-03-21T18:18:03.870138112Z"} +2026/03/21 18:18:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:18:03.87757035Z"} +2026/03/21 18:18:08 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":876.5839066306622,"throughput_eps":0,"last_update":"2026-03-21T18:18:03.96573201Z"} +2026/03/21 18:18:08 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":9.110839936755308,"throughput_eps":0,"last_update":"2026-03-21T18:18:03.965768761Z"} +2026/03/21 18:18:08 ───────────────────────────────────────────────── +2026/03/21 18:18:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:18:13 [metric_collector] {"stage_name":"metric_collector","events_processed":739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":147.8,"last_update":"2026-03-21T18:18:08.869922115Z"} +2026/03/21 18:18:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:18:08.881634603Z"} +2026/03/21 18:18:13 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":876.5839066306622,"throughput_eps":0,"last_update":"2026-03-21T18:18:08.965783245Z"} +2026/03/21 18:18:13 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":9.110839936755308,"throughput_eps":0,"last_update":"2026-03-21T18:18:08.965967668Z"} +2026/03/21 18:18:13 [log_collector] {"stage_name":"log_collector","events_processed":1224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":244.8,"last_update":"2026-03-21T18:18:13.869410811Z"} +2026/03/21 18:18:13 ───────────────────────────────────────────────── +2026/03/21 18:18:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:18:18 [log_collector] {"stage_name":"log_collector","events_processed":1224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":244.8,"last_update":"2026-03-21T18:18:13.869410811Z"} +2026/03/21 18:18:18 [metric_collector] {"stage_name":"metric_collector","events_processed":744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":148.8,"last_update":"2026-03-21T18:18:13.869674687Z"} +2026/03/21 18:18:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:18:13.882435313Z"} +2026/03/21 18:18:18 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":876.5839066306622,"throughput_eps":0,"last_update":"2026-03-21T18:18:13.965617634Z"} +2026/03/21 18:18:18 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":9.110839936755308,"throughput_eps":0,"last_update":"2026-03-21T18:18:13.965638755Z"} +2026/03/21 18:18:18 ───────────────────────────────────────────────── +2026/03/21 18:18:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:18:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:18:18.876568708Z"} +2026/03/21 18:18:23 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":876.5839066306622,"throughput_eps":0,"last_update":"2026-03-21T18:18:13.965617634Z"} +2026/03/21 18:18:23 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":9.110839936755308,"throughput_eps":0,"last_update":"2026-03-21T18:18:18.9662083Z"} +2026/03/21 18:18:23 [log_collector] {"stage_name":"log_collector","events_processed":1224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":244.8,"last_update":"2026-03-21T18:18:18.869687155Z"} +2026/03/21 18:18:23 [metric_collector] {"stage_name":"metric_collector","events_processed":749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":149.8,"last_update":"2026-03-21T18:18:18.869677697Z"} +2026/03/21 18:18:23 ───────────────────────────────────────────────── +2026/03/21 18:18:24 [ANOMALY] time=2026-03-21T18:18:24Z score=1.0000 method=SEAD details=MAD!:w=0.23,s=1.00 RRCF-fast!:w=0.19,s=1.00 RRCF-mid!:w=0.19,s=1.00 RRCF-slow!:w=0.19,s=1.00 COPOD!:w=0.20,s=1.00 +2026/03/21 18:18:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:18:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:18:23.878026803Z"} +2026/03/21 18:18:28 [transform_engine] {"stage_name":"transform_engine","events_processed":25,"events_dropped":0,"avg_latency_ms":1732.1426033045298,"throughput_eps":0,"last_update":"2026-03-21T18:18:24.120163943Z"} +2026/03/21 18:18:28 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":9.110839936755308,"throughput_eps":0,"last_update":"2026-03-21T18:18:23.966386042Z"} +2026/03/21 18:18:28 [log_collector] {"stage_name":"log_collector","events_processed":1224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":244.8,"last_update":"2026-03-21T18:18:23.869414324Z"} +2026/03/21 18:18:28 [metric_collector] {"stage_name":"metric_collector","events_processed":754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":150.8,"last_update":"2026-03-21T18:18:23.870117892Z"} +2026/03/21 18:18:28 ───────────────────────────────────────────────── +2026/03/21 18:18:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:18:33 [detection_layer] {"stage_name":"detection_layer","events_processed":25,"events_dropped":0,"avg_latency_ms":8.084009549404247,"throughput_eps":0,"last_update":"2026-03-21T18:18:28.966197422Z"} +2026/03/21 18:18:33 [log_collector] {"stage_name":"log_collector","events_processed":1224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":244.8,"last_update":"2026-03-21T18:18:28.869436888Z"} +2026/03/21 18:18:33 [metric_collector] {"stage_name":"metric_collector","events_processed":759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":151.8,"last_update":"2026-03-21T18:18:28.869890808Z"} +2026/03/21 18:18:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:18:28.878023527Z"} +2026/03/21 18:18:33 [transform_engine] {"stage_name":"transform_engine","events_processed":25,"events_dropped":0,"avg_latency_ms":1732.1426033045298,"throughput_eps":0,"last_update":"2026-03-21T18:18:28.965124295Z"} +2026/03/21 18:18:33 ───────────────────────────────────────────────── +2026/03/21 18:18:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:18:38 [log_collector] {"stage_name":"log_collector","events_processed":1224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":244.8,"last_update":"2026-03-21T18:18:33.869553209Z"} +2026/03/21 18:18:38 [metric_collector] {"stage_name":"metric_collector","events_processed":764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":152.8,"last_update":"2026-03-21T18:18:33.869821032Z"} +2026/03/21 18:18:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:18:33.875793514Z"} +2026/03/21 18:18:38 [transform_engine] {"stage_name":"transform_engine","events_processed":25,"events_dropped":0,"avg_latency_ms":1732.1426033045298,"throughput_eps":0,"last_update":"2026-03-21T18:18:33.966026322Z"} +2026/03/21 18:18:38 [detection_layer] {"stage_name":"detection_layer","events_processed":25,"events_dropped":0,"avg_latency_ms":8.084009549404247,"throughput_eps":0,"last_update":"2026-03-21T18:18:33.966007997Z"} +2026/03/21 18:18:38 ───────────────────────────────────────────────── +2026/03/21 18:18:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:18:43 [log_collector] {"stage_name":"log_collector","events_processed":1224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":244.8,"last_update":"2026-03-21T18:18:43.869415369Z"} +2026/03/21 18:18:43 [metric_collector] {"stage_name":"metric_collector","events_processed":769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":153.8,"last_update":"2026-03-21T18:18:38.869881305Z"} +2026/03/21 18:18:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:18:38.878142411Z"} +2026/03/21 18:18:43 [transform_engine] {"stage_name":"transform_engine","events_processed":25,"events_dropped":0,"avg_latency_ms":1732.1426033045298,"throughput_eps":0,"last_update":"2026-03-21T18:18:38.965383979Z"} +2026/03/21 18:18:43 [detection_layer] {"stage_name":"detection_layer","events_processed":25,"events_dropped":0,"avg_latency_ms":8.084009549404247,"throughput_eps":0,"last_update":"2026-03-21T18:18:38.965386033Z"} +2026/03/21 18:18:43 ───────────────────────────────────────────────── +2026/03/21 18:18:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:18:48 [detection_layer] {"stage_name":"detection_layer","events_processed":25,"events_dropped":0,"avg_latency_ms":8.084009549404247,"throughput_eps":0,"last_update":"2026-03-21T18:18:43.965292108Z"} +2026/03/21 18:18:48 [log_collector] {"stage_name":"log_collector","events_processed":1224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":244.8,"last_update":"2026-03-21T18:18:43.869415369Z"} +2026/03/21 18:18:48 [metric_collector] {"stage_name":"metric_collector","events_processed":774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":154.8,"last_update":"2026-03-21T18:18:43.87011034Z"} +2026/03/21 18:18:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:18:43.883218792Z"} +2026/03/21 18:18:48 [transform_engine] {"stage_name":"transform_engine","events_processed":25,"events_dropped":0,"avg_latency_ms":1732.1426033045298,"throughput_eps":0,"last_update":"2026-03-21T18:18:43.965267431Z"} +2026/03/21 18:18:48 ───────────────────────────────────────────────── +2026/03/21 18:18:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:18:53 [log_collector] {"stage_name":"log_collector","events_processed":1227,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":245.4,"last_update":"2026-03-21T18:18:48.870318772Z"} +2026/03/21 18:18:53 [metric_collector] {"stage_name":"metric_collector","events_processed":779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":155.8,"last_update":"2026-03-21T18:18:48.870589651Z"} +2026/03/21 18:18:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:18:48.877783122Z"} +2026/03/21 18:18:53 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":2153.532643843624,"throughput_eps":0,"last_update":"2026-03-21T18:18:52.805093897Z"} +2026/03/21 18:18:53 [detection_layer] {"stage_name":"detection_layer","events_processed":25,"events_dropped":0,"avg_latency_ms":8.084009549404247,"throughput_eps":0,"last_update":"2026-03-21T18:18:48.965960623Z"} +2026/03/21 18:18:53 ───────────────────────────────────────────────── +2026/03/21 18:18:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:18:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:18:53.879480867Z"} +2026/03/21 18:18:58 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":2153.532643843624,"throughput_eps":0,"last_update":"2026-03-21T18:18:53.965734162Z"} +2026/03/21 18:18:58 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":8.205475639523398,"throughput_eps":0,"last_update":"2026-03-21T18:18:53.965683805Z"} +2026/03/21 18:18:58 [log_collector] {"stage_name":"log_collector","events_processed":1235,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":247,"last_update":"2026-03-21T18:18:53.870548515Z"} +2026/03/21 18:18:58 [metric_collector] {"stage_name":"metric_collector","events_processed":784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":156.8,"last_update":"2026-03-21T18:18:53.870808955Z"} +2026/03/21 18:18:58 ───────────────────────────────────────────────── +2026/03/21 18:19:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:19:03 [log_collector] {"stage_name":"log_collector","events_processed":1437,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":287.4,"last_update":"2026-03-21T18:18:58.871608699Z"} +2026/03/21 18:19:03 [metric_collector] {"stage_name":"metric_collector","events_processed":789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":157.8,"last_update":"2026-03-21T18:18:58.871848127Z"} +2026/03/21 18:19:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:18:58.878142285Z"} +2026/03/21 18:19:03 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":2153.532643843624,"throughput_eps":0,"last_update":"2026-03-21T18:18:58.965447234Z"} +2026/03/21 18:19:03 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":8.205475639523398,"throughput_eps":0,"last_update":"2026-03-21T18:18:58.965440541Z"} +2026/03/21 18:19:03 ───────────────────────────────────────────────── +2026/03/21 18:19:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:19:08 [metric_collector] {"stage_name":"metric_collector","events_processed":794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":158.8,"last_update":"2026-03-21T18:19:03.870762785Z"} +2026/03/21 18:19:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":320,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:19:03.878856801Z"} +2026/03/21 18:19:08 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":2153.532643843624,"throughput_eps":0,"last_update":"2026-03-21T18:19:03.966073241Z"} +2026/03/21 18:19:08 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":8.205475639523398,"throughput_eps":0,"last_update":"2026-03-21T18:19:03.966060857Z"} +2026/03/21 18:19:08 [log_collector] {"stage_name":"log_collector","events_processed":1577,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":315.4,"last_update":"2026-03-21T18:19:03.870040872Z"} +2026/03/21 18:19:08 ───────────────────────────────────────────────── +2026/03/21 18:19:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:19:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:19:08.878893349Z"} +2026/03/21 18:19:13 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":2153.532643843624,"throughput_eps":0,"last_update":"2026-03-21T18:19:08.96511873Z"} +2026/03/21 18:19:13 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":8.205475639523398,"throughput_eps":0,"last_update":"2026-03-21T18:19:08.966304211Z"} +2026/03/21 18:19:13 [log_collector] {"stage_name":"log_collector","events_processed":1577,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":315.4,"last_update":"2026-03-21T18:19:08.869714716Z"} +2026/03/21 18:19:13 [metric_collector] {"stage_name":"metric_collector","events_processed":799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":159.8,"last_update":"2026-03-21T18:19:08.869875944Z"} +2026/03/21 18:19:13 ───────────────────────────────────────────────── +2026/03/21 18:19:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:19:18 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":2153.532643843624,"throughput_eps":0,"last_update":"2026-03-21T18:19:13.965901776Z"} +2026/03/21 18:19:18 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":8.205475639523398,"throughput_eps":0,"last_update":"2026-03-21T18:19:13.965889241Z"} +2026/03/21 18:19:18 [log_collector] {"stage_name":"log_collector","events_processed":1577,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":315.4,"last_update":"2026-03-21T18:19:13.869412202Z"} +2026/03/21 18:19:18 [metric_collector] {"stage_name":"metric_collector","events_processed":804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":160.8,"last_update":"2026-03-21T18:19:13.869897751Z"} +2026/03/21 18:19:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:19:13.878651561Z"} +2026/03/21 18:19:18 ───────────────────────────────────────────────── +2026/03/21 18:19:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:19:23 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":1745.8459240748994,"throughput_eps":0,"last_update":"2026-03-21T18:19:19.081142856Z"} +2026/03/21 18:19:23 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":8.205475639523398,"throughput_eps":0,"last_update":"2026-03-21T18:19:18.966028422Z"} +2026/03/21 18:19:23 [log_collector] {"stage_name":"log_collector","events_processed":1577,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":315.4,"last_update":"2026-03-21T18:19:18.870064205Z"} +2026/03/21 18:19:23 [metric_collector] {"stage_name":"metric_collector","events_processed":809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":161.8,"last_update":"2026-03-21T18:19:18.870537972Z"} +2026/03/21 18:19:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:19:18.878812063Z"} +2026/03/21 18:19:23 ───────────────────────────────────────────────── +2026/03/21 18:19:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:19:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:19:23.878885217Z"} +2026/03/21 18:19:28 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":1745.8459240748994,"throughput_eps":0,"last_update":"2026-03-21T18:19:23.966102037Z"} +2026/03/21 18:19:28 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":8.57508031161872,"throughput_eps":0,"last_update":"2026-03-21T18:19:23.966086788Z"} +2026/03/21 18:19:28 [log_collector] {"stage_name":"log_collector","events_processed":1577,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":315.4,"last_update":"2026-03-21T18:19:23.86999194Z"} +2026/03/21 18:19:28 [metric_collector] {"stage_name":"metric_collector","events_processed":814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":162.8,"last_update":"2026-03-21T18:19:23.870448856Z"} +2026/03/21 18:19:28 ───────────────────────────────────────────────── +2026/03/21 18:19:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:19:33 [log_collector] {"stage_name":"log_collector","events_processed":1577,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":315.4,"last_update":"2026-03-21T18:19:28.870290114Z"} +2026/03/21 18:19:33 [metric_collector] {"stage_name":"metric_collector","events_processed":819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":163.8,"last_update":"2026-03-21T18:19:28.870657396Z"} +2026/03/21 18:19:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":330,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:19:28.87954348Z"} +2026/03/21 18:19:33 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":1745.8459240748994,"throughput_eps":0,"last_update":"2026-03-21T18:19:28.965770013Z"} +2026/03/21 18:19:33 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":8.57508031161872,"throughput_eps":0,"last_update":"2026-03-21T18:19:28.96575827Z"} +2026/03/21 18:19:33 ───────────────────────────────────────────────── +2026/03/21 18:19:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:19:38 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":8.57508031161872,"throughput_eps":0,"last_update":"2026-03-21T18:19:33.965443488Z"} +2026/03/21 18:19:38 [log_collector] {"stage_name":"log_collector","events_processed":1577,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":315.4,"last_update":"2026-03-21T18:19:33.869841555Z"} +2026/03/21 18:19:38 [metric_collector] {"stage_name":"metric_collector","events_processed":824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":164.8,"last_update":"2026-03-21T18:19:33.87038253Z"} +2026/03/21 18:19:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:19:33.879101845Z"} +2026/03/21 18:19:38 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":1745.8459240748994,"throughput_eps":0,"last_update":"2026-03-21T18:19:33.965418269Z"} +2026/03/21 18:19:38 ───────────────────────────────────────────────── +2026/03/21 18:19:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:19:43 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":8.57508031161872,"throughput_eps":0,"last_update":"2026-03-21T18:19:38.966421259Z"} +2026/03/21 18:19:43 [log_collector] {"stage_name":"log_collector","events_processed":1577,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":315.4,"last_update":"2026-03-21T18:19:38.869506611Z"} +2026/03/21 18:19:43 [metric_collector] {"stage_name":"metric_collector","events_processed":829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":165.8,"last_update":"2026-03-21T18:19:38.869689812Z"} +2026/03/21 18:19:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:19:38.877934797Z"} +2026/03/21 18:19:43 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":1745.8459240748994,"throughput_eps":0,"last_update":"2026-03-21T18:19:38.965194088Z"} +2026/03/21 18:19:43 ───────────────────────────────────────────────── +2026/03/21 18:19:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:19:48 [log_collector] {"stage_name":"log_collector","events_processed":1577,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":315.4,"last_update":"2026-03-21T18:19:43.869437344Z"} +2026/03/21 18:19:48 [metric_collector] {"stage_name":"metric_collector","events_processed":834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":166.8,"last_update":"2026-03-21T18:19:43.8697902Z"} +2026/03/21 18:19:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:19:43.878112533Z"} +2026/03/21 18:19:48 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":1745.8459240748994,"throughput_eps":0,"last_update":"2026-03-21T18:19:43.965404787Z"} +2026/03/21 18:19:48 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":8.57508031161872,"throughput_eps":0,"last_update":"2026-03-21T18:19:43.965391962Z"} +2026/03/21 18:19:48 ───────────────────────────────────────────────── +2026/03/21 18:19:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:19:53 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":8.57508031161872,"throughput_eps":0,"last_update":"2026-03-21T18:19:48.966231456Z"} +2026/03/21 18:19:53 [log_collector] {"stage_name":"log_collector","events_processed":1577,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":315.4,"last_update":"2026-03-21T18:19:53.870178631Z"} +2026/03/21 18:19:53 [metric_collector] {"stage_name":"metric_collector","events_processed":839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":167.8,"last_update":"2026-03-21T18:19:48.870123092Z"} +2026/03/21 18:19:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:19:48.878853507Z"} +2026/03/21 18:19:53 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":1409.7925710599195,"throughput_eps":0,"last_update":"2026-03-21T18:19:49.030671112Z"} +2026/03/21 18:19:53 ───────────────────────────────────────────────── +2026/03/21 18:19:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:19:58 [log_collector] {"stage_name":"log_collector","events_processed":1577,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":315.4,"last_update":"2026-03-21T18:19:53.870178631Z"} +2026/03/21 18:19:58 [metric_collector] {"stage_name":"metric_collector","events_processed":844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":168.8,"last_update":"2026-03-21T18:19:53.870669642Z"} +2026/03/21 18:19:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:19:53.879423793Z"} +2026/03/21 18:19:58 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":1409.7925710599195,"throughput_eps":0,"last_update":"2026-03-21T18:19:53.965654925Z"} +2026/03/21 18:19:58 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":8.996450849294977,"throughput_eps":0,"last_update":"2026-03-21T18:19:53.965766498Z"} +2026/03/21 18:19:58 ───────────────────────────────────────────────── +2026/03/21 18:20:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:20:03 [log_collector] {"stage_name":"log_collector","events_processed":1577,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":315.4,"last_update":"2026-03-21T18:20:03.869693716Z"} +2026/03/21 18:20:03 [metric_collector] {"stage_name":"metric_collector","events_processed":849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":169.8,"last_update":"2026-03-21T18:19:58.870196769Z"} +2026/03/21 18:20:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":342,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:19:58.878450611Z"} +2026/03/21 18:20:03 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":1409.7925710599195,"throughput_eps":0,"last_update":"2026-03-21T18:19:58.965715473Z"} +2026/03/21 18:20:03 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":8.996450849294977,"throughput_eps":0,"last_update":"2026-03-21T18:19:58.965674554Z"} +2026/03/21 18:20:03 ───────────────────────────────────────────────── +2026/03/21 18:20:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:20:08 [metric_collector] {"stage_name":"metric_collector","events_processed":854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":170.8,"last_update":"2026-03-21T18:20:03.870075457Z"} +2026/03/21 18:20:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:20:03.880989947Z"} +2026/03/21 18:20:08 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":1409.7925710599195,"throughput_eps":0,"last_update":"2026-03-21T18:20:03.965166742Z"} +2026/03/21 18:20:08 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":8.996450849294977,"throughput_eps":0,"last_update":"2026-03-21T18:20:03.965285389Z"} +2026/03/21 18:20:08 [log_collector] {"stage_name":"log_collector","events_processed":1577,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":315.4,"last_update":"2026-03-21T18:20:08.86943017Z"} +2026/03/21 18:20:08 ───────────────────────────────────────────────── +2026/03/21 18:20:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:20:13 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":1409.7925710599195,"throughput_eps":0,"last_update":"2026-03-21T18:20:08.966046737Z"} +2026/03/21 18:20:13 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":8.996450849294977,"throughput_eps":0,"last_update":"2026-03-21T18:20:08.966008914Z"} +2026/03/21 18:20:13 [log_collector] {"stage_name":"log_collector","events_processed":1577,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":315.4,"last_update":"2026-03-21T18:20:13.86984736Z"} +2026/03/21 18:20:13 [metric_collector] {"stage_name":"metric_collector","events_processed":859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":171.8,"last_update":"2026-03-21T18:20:08.869817893Z"} +2026/03/21 18:20:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:20:08.878681664Z"} +2026/03/21 18:20:13 ───────────────────────────────────────────────── +2026/03/21 18:20:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:20:18 [log_collector] {"stage_name":"log_collector","events_processed":1577,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":315.4,"last_update":"2026-03-21T18:20:13.86984736Z"} +2026/03/21 18:20:18 [metric_collector] {"stage_name":"metric_collector","events_processed":864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":172.8,"last_update":"2026-03-21T18:20:13.870219443Z"} +2026/03/21 18:20:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:20:13.879441168Z"} +2026/03/21 18:20:18 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":1409.7925710599195,"throughput_eps":0,"last_update":"2026-03-21T18:20:13.965660207Z"} +2026/03/21 18:20:18 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":8.996450849294977,"throughput_eps":0,"last_update":"2026-03-21T18:20:13.965631442Z"} +2026/03/21 18:20:18 ───────────────────────────────────────────────── +Saved state: 11 clusters, 1578 messages, reason: none +2026/03/21 18:20:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:20:23 [log_collector] {"stage_name":"log_collector","events_processed":1577,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":315.4,"last_update":"2026-03-21T18:20:18.869867215Z"} +2026/03/21 18:20:23 [metric_collector] {"stage_name":"metric_collector","events_processed":869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":173.8,"last_update":"2026-03-21T18:20:18.870129348Z"} +2026/03/21 18:20:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":350,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:20:18.878689947Z"} +2026/03/21 18:20:23 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":1136.6688636479357,"throughput_eps":0,"last_update":"2026-03-21T18:20:19.010102582Z"} +2026/03/21 18:20:23 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":8.996450849294977,"throughput_eps":0,"last_update":"2026-03-21T18:20:18.965874204Z"} +2026/03/21 18:20:23 ───────────────────────────────────────────────── +2026/03/21 18:20:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:20:28 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":1136.6688636479357,"throughput_eps":0,"last_update":"2026-03-21T18:20:23.965682241Z"} +2026/03/21 18:20:28 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":9.314799479435981,"throughput_eps":0,"last_update":"2026-03-21T18:20:23.965639359Z"} +2026/03/21 18:20:28 [log_collector] {"stage_name":"log_collector","events_processed":1580,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":316,"last_update":"2026-03-21T18:20:23.869406297Z"} +2026/03/21 18:20:28 [metric_collector] {"stage_name":"metric_collector","events_processed":874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":174.8,"last_update":"2026-03-21T18:20:23.869662599Z"} +2026/03/21 18:20:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:20:23.878401279Z"} +2026/03/21 18:20:28 ───────────────────────────────────────────────── +2026/03/21 18:20:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:20:33 [metric_collector] {"stage_name":"metric_collector","events_processed":879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":175.8,"last_update":"2026-03-21T18:20:28.871236738Z"} +2026/03/21 18:20:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:20:28.880497339Z"} +2026/03/21 18:20:33 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":1136.6688636479357,"throughput_eps":0,"last_update":"2026-03-21T18:20:28.965728274Z"} +2026/03/21 18:20:33 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":9.314799479435981,"throughput_eps":0,"last_update":"2026-03-21T18:20:28.965692214Z"} +2026/03/21 18:20:33 [log_collector] {"stage_name":"log_collector","events_processed":1590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":318,"last_update":"2026-03-21T18:20:33.869413147Z"} +2026/03/21 18:20:33 ───────────────────────────────────────────────── +2026/03/21 18:20:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:20:38 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":1136.6688636479357,"throughput_eps":0,"last_update":"2026-03-21T18:20:33.965873244Z"} +2026/03/21 18:20:38 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":9.314799479435981,"throughput_eps":0,"last_update":"2026-03-21T18:20:33.965773232Z"} +2026/03/21 18:20:38 [log_collector] {"stage_name":"log_collector","events_processed":1598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":319.6,"last_update":"2026-03-21T18:20:38.869419781Z"} +2026/03/21 18:20:38 [metric_collector] {"stage_name":"metric_collector","events_processed":884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":176.8,"last_update":"2026-03-21T18:20:33.869875973Z"} +2026/03/21 18:20:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:20:33.876550941Z"} +2026/03/21 18:20:38 ───────────────────────────────────────────────── +2026/03/21 18:20:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:20:43 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":9.314799479435981,"throughput_eps":0,"last_update":"2026-03-21T18:20:38.965368639Z"} +2026/03/21 18:20:43 [log_collector] {"stage_name":"log_collector","events_processed":1598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":319.6,"last_update":"2026-03-21T18:20:38.869419781Z"} +2026/03/21 18:20:43 [metric_collector] {"stage_name":"metric_collector","events_processed":889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":177.8,"last_update":"2026-03-21T18:20:38.869692544Z"} +2026/03/21 18:20:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:20:38.876015706Z"} +2026/03/21 18:20:43 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":1136.6688636479357,"throughput_eps":0,"last_update":"2026-03-21T18:20:38.965413223Z"} +2026/03/21 18:20:43 ───────────────────────────────────────────────── +2026/03/21 18:20:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:20:48 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":1136.6688636479357,"throughput_eps":0,"last_update":"2026-03-21T18:20:43.966207176Z"} +2026/03/21 18:20:48 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":9.314799479435981,"throughput_eps":0,"last_update":"2026-03-21T18:20:43.966191074Z"} +2026/03/21 18:20:48 [log_collector] {"stage_name":"log_collector","events_processed":1607,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":321.4,"last_update":"2026-03-21T18:20:43.869482241Z"} +2026/03/21 18:20:48 [metric_collector] {"stage_name":"metric_collector","events_processed":894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":178.8,"last_update":"2026-03-21T18:20:43.869723103Z"} +2026/03/21 18:20:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":360,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:20:43.877831506Z"} +2026/03/21 18:20:48 ───────────────────────────────────────────────── +2026/03/21 18:20:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:20:53 [log_collector] {"stage_name":"log_collector","events_processed":1621,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":324.2,"last_update":"2026-03-21T18:20:48.869688785Z"} +2026/03/21 18:20:53 [metric_collector] {"stage_name":"metric_collector","events_processed":899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":179.8,"last_update":"2026-03-21T18:20:48.869782715Z"} +2026/03/21 18:20:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:20:48.87905648Z"} +2026/03/21 18:20:53 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":931.6105617183487,"throughput_eps":0,"last_update":"2026-03-21T18:20:49.076684763Z"} +2026/03/21 18:20:53 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":9.314799479435981,"throughput_eps":0,"last_update":"2026-03-21T18:20:48.965293073Z"} +2026/03/21 18:20:53 ───────────────────────────────────────────────── +2026/03/21 18:20:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:20:58 [log_collector] {"stage_name":"log_collector","events_processed":1621,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":324.2,"last_update":"2026-03-21T18:20:53.869823841Z"} +2026/03/21 18:20:58 [metric_collector] {"stage_name":"metric_collector","events_processed":904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":180.8,"last_update":"2026-03-21T18:20:53.870129036Z"} +2026/03/21 18:20:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:20:53.879406439Z"} +2026/03/21 18:20:58 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":931.6105617183487,"throughput_eps":0,"last_update":"2026-03-21T18:20:53.96564309Z"} +2026/03/21 18:20:58 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":9.433816383548786,"throughput_eps":0,"last_update":"2026-03-21T18:20:53.965637319Z"} +2026/03/21 18:20:58 ───────────────────────────────────────────────── +2026/03/21 18:21:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:21:03 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":9.433816383548786,"throughput_eps":0,"last_update":"2026-03-21T18:20:58.966067689Z"} +2026/03/21 18:21:03 [log_collector] {"stage_name":"log_collector","events_processed":1621,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":324.2,"last_update":"2026-03-21T18:20:58.870573173Z"} +2026/03/21 18:21:03 [metric_collector] {"stage_name":"metric_collector","events_processed":909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":181.8,"last_update":"2026-03-21T18:20:58.870795729Z"} +2026/03/21 18:21:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:20:58.87963902Z"} +2026/03/21 18:21:03 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":931.6105617183487,"throughput_eps":0,"last_update":"2026-03-21T18:20:58.966082908Z"} +2026/03/21 18:21:03 ───────────────────────────────────────────────── +2026/03/21 18:21:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:21:08 [log_collector] {"stage_name":"log_collector","events_processed":1621,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":324.2,"last_update":"2026-03-21T18:21:03.869573904Z"} +2026/03/21 18:21:08 [metric_collector] {"stage_name":"metric_collector","events_processed":914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":182.8,"last_update":"2026-03-21T18:21:03.869685018Z"} +2026/03/21 18:21:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:21:03.87822096Z"} +2026/03/21 18:21:08 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":931.6105617183487,"throughput_eps":0,"last_update":"2026-03-21T18:21:03.965511952Z"} +2026/03/21 18:21:08 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":9.433816383548786,"throughput_eps":0,"last_update":"2026-03-21T18:21:03.965500229Z"} +2026/03/21 18:21:08 ───────────────────────────────────────────────── +2026/03/21 18:21:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:21:13 [log_collector] {"stage_name":"log_collector","events_processed":1621,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":324.2,"last_update":"2026-03-21T18:21:08.870005024Z"} +2026/03/21 18:21:13 [metric_collector] {"stage_name":"metric_collector","events_processed":918,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":183.6,"last_update":"2026-03-21T18:21:08.869950089Z"} +2026/03/21 18:21:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:21:08.878753002Z"} +2026/03/21 18:21:13 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":931.6105617183487,"throughput_eps":0,"last_update":"2026-03-21T18:21:08.966043172Z"} +2026/03/21 18:21:13 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":9.433816383548786,"throughput_eps":0,"last_update":"2026-03-21T18:21:08.966029837Z"} +2026/03/21 18:21:13 ───────────────────────────────────────────────── +2026/03/21 18:21:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:21:18 [log_collector] {"stage_name":"log_collector","events_processed":1621,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":324.2,"last_update":"2026-03-21T18:21:13.86998622Z"} +2026/03/21 18:21:18 [metric_collector] {"stage_name":"metric_collector","events_processed":923,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":184.6,"last_update":"2026-03-21T18:21:13.869937867Z"} +2026/03/21 18:21:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:21:13.879084138Z"} +2026/03/21 18:21:18 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":931.6105617183487,"throughput_eps":0,"last_update":"2026-03-21T18:21:13.965405883Z"} +2026/03/21 18:21:18 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":9.433816383548786,"throughput_eps":0,"last_update":"2026-03-21T18:21:13.965392178Z"} +2026/03/21 18:21:18 ───────────────────────────────────────────────── +2026/03/21 18:21:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:21:23 [log_collector] {"stage_name":"log_collector","events_processed":1621,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":324.2,"last_update":"2026-03-21T18:21:18.869650749Z"} +2026/03/21 18:21:23 [metric_collector] {"stage_name":"metric_collector","events_processed":928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":185.6,"last_update":"2026-03-21T18:21:18.869415327Z"} +2026/03/21 18:21:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:21:18.878002748Z"} +2026/03/21 18:21:23 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":1005.5512435746789,"throughput_eps":0,"last_update":"2026-03-21T18:21:20.26641914Z"} +2026/03/21 18:21:23 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":9.433816383548786,"throughput_eps":0,"last_update":"2026-03-21T18:21:18.965436784Z"} +2026/03/21 18:21:23 ───────────────────────────────────────────────── +2026/03/21 18:21:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:21:28 [metric_collector] {"stage_name":"metric_collector","events_processed":933,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":186.6,"last_update":"2026-03-21T18:21:23.869409167Z"} +2026/03/21 18:21:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:21:23.878671541Z"} +2026/03/21 18:21:28 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":1005.5512435746789,"throughput_eps":0,"last_update":"2026-03-21T18:21:23.96603952Z"} +2026/03/21 18:21:28 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":9.888095906839029,"throughput_eps":0,"last_update":"2026-03-21T18:21:23.966014692Z"} +2026/03/21 18:21:28 [log_collector] {"stage_name":"log_collector","events_processed":1621,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":324.2,"last_update":"2026-03-21T18:21:23.86942129Z"} +2026/03/21 18:21:28 ───────────────────────────────────────────────── +2026/03/21 18:21:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:21:33 [log_collector] {"stage_name":"log_collector","events_processed":1621,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":324.2,"last_update":"2026-03-21T18:21:28.870541778Z"} +2026/03/21 18:21:33 [metric_collector] {"stage_name":"metric_collector","events_processed":938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":187.6,"last_update":"2026-03-21T18:21:28.870534745Z"} +2026/03/21 18:21:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:21:28.878898617Z"} +2026/03/21 18:21:33 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":1005.5512435746789,"throughput_eps":0,"last_update":"2026-03-21T18:21:28.966147188Z"} +2026/03/21 18:21:33 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":9.888095906839029,"throughput_eps":0,"last_update":"2026-03-21T18:21:28.966250235Z"} +2026/03/21 18:21:33 ───────────────────────────────────────────────── +2026/03/21 18:21:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:21:38 [log_collector] {"stage_name":"log_collector","events_processed":1621,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":324.2,"last_update":"2026-03-21T18:21:38.870056353Z"} +2026/03/21 18:21:38 [metric_collector] {"stage_name":"metric_collector","events_processed":943,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":188.6,"last_update":"2026-03-21T18:21:33.87002696Z"} +2026/03/21 18:21:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":380,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:21:33.879703166Z"} +2026/03/21 18:21:38 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":1005.5512435746789,"throughput_eps":0,"last_update":"2026-03-21T18:21:33.965878711Z"} +2026/03/21 18:21:38 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":9.888095906839029,"throughput_eps":0,"last_update":"2026-03-21T18:21:33.965862069Z"} +2026/03/21 18:21:38 ───────────────────────────────────────────────── +2026/03/21 18:21:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:21:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:21:38.878936303Z"} +2026/03/21 18:21:43 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":1005.5512435746789,"throughput_eps":0,"last_update":"2026-03-21T18:21:38.965052955Z"} +2026/03/21 18:21:43 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":9.888095906839029,"throughput_eps":0,"last_update":"2026-03-21T18:21:38.96527433Z"} +2026/03/21 18:21:43 [log_collector] {"stage_name":"log_collector","events_processed":1621,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":324.2,"last_update":"2026-03-21T18:21:43.869454766Z"} +2026/03/21 18:21:43 [metric_collector] {"stage_name":"metric_collector","events_processed":949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":189.8,"last_update":"2026-03-21T18:21:38.870467219Z"} +2026/03/21 18:21:43 ───────────────────────────────────────────────── +2026/03/21 18:21:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:21:48 [log_collector] {"stage_name":"log_collector","events_processed":1621,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":324.2,"last_update":"2026-03-21T18:21:43.869454766Z"} +2026/03/21 18:21:48 [metric_collector] {"stage_name":"metric_collector","events_processed":954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":190.8,"last_update":"2026-03-21T18:21:43.870015679Z"} +2026/03/21 18:21:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:21:43.878474134Z"} +2026/03/21 18:21:48 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":1005.5512435746789,"throughput_eps":0,"last_update":"2026-03-21T18:21:43.965667288Z"} +2026/03/21 18:21:48 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":9.888095906839029,"throughput_eps":0,"last_update":"2026-03-21T18:21:43.965766748Z"} +2026/03/21 18:21:48 ───────────────────────────────────────────────── +Saved state: 11 clusters, 1622 messages, reason: none +2026/03/21 18:21:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:21:53 [metric_collector] {"stage_name":"metric_collector","events_processed":958,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":191.6,"last_update":"2026-03-21T18:21:48.86941345Z"} +2026/03/21 18:21:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:21:48.878467786Z"} +2026/03/21 18:21:53 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":817.9361392597431,"throughput_eps":0,"last_update":"2026-03-21T18:21:49.033221254Z"} +2026/03/21 18:21:53 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":9.888095906839029,"throughput_eps":0,"last_update":"2026-03-21T18:21:48.965847717Z"} +2026/03/21 18:21:53 [log_collector] {"stage_name":"log_collector","events_processed":1626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":325.2,"last_update":"2026-03-21T18:21:53.869449612Z"} +2026/03/21 18:21:53 ───────────────────────────────────────────────── +2026/03/21 18:21:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:21:58 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":817.9361392597431,"throughput_eps":0,"last_update":"2026-03-21T18:21:53.966086868Z"} +2026/03/21 18:21:58 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":10.377314525471224,"throughput_eps":0,"last_update":"2026-03-21T18:21:53.966076649Z"} +2026/03/21 18:21:58 [log_collector] {"stage_name":"log_collector","events_processed":1626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":325.2,"last_update":"2026-03-21T18:21:53.869449612Z"} +2026/03/21 18:21:58 [metric_collector] {"stage_name":"metric_collector","events_processed":964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":192.8,"last_update":"2026-03-21T18:21:53.869739147Z"} +2026/03/21 18:21:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":388,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:21:53.882838882Z"} +2026/03/21 18:21:58 ───────────────────────────────────────────────── +2026/03/21 18:22:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:22:03 [log_collector] {"stage_name":"log_collector","events_processed":1626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":325.2,"last_update":"2026-03-21T18:22:03.869493791Z"} +2026/03/21 18:22:03 [metric_collector] {"stage_name":"metric_collector","events_processed":969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":193.8,"last_update":"2026-03-21T18:21:58.870233646Z"} +2026/03/21 18:22:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":390,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:21:58.878668675Z"} +2026/03/21 18:22:03 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":817.9361392597431,"throughput_eps":0,"last_update":"2026-03-21T18:21:58.965829517Z"} +2026/03/21 18:22:03 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":10.377314525471224,"throughput_eps":0,"last_update":"2026-03-21T18:21:58.965817925Z"} +2026/03/21 18:22:03 ───────────────────────────────────────────────── +2026/03/21 18:22:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:22:08 [log_collector] {"stage_name":"log_collector","events_processed":1626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":325.2,"last_update":"2026-03-21T18:22:08.869405873Z"} +2026/03/21 18:22:08 [metric_collector] {"stage_name":"metric_collector","events_processed":974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":194.8,"last_update":"2026-03-21T18:22:03.869930538Z"} +2026/03/21 18:22:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:22:03.878603863Z"} +2026/03/21 18:22:08 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":817.9361392597431,"throughput_eps":0,"last_update":"2026-03-21T18:22:03.965831974Z"} +2026/03/21 18:22:08 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":10.377314525471224,"throughput_eps":0,"last_update":"2026-03-21T18:22:03.965821875Z"} +2026/03/21 18:22:08 ───────────────────────────────────────────────── +2026/03/21 18:22:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:22:13 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":10.377314525471224,"throughput_eps":0,"last_update":"2026-03-21T18:22:08.966290483Z"} +2026/03/21 18:22:13 [log_collector] {"stage_name":"log_collector","events_processed":1626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":325.2,"last_update":"2026-03-21T18:22:13.869803121Z"} +2026/03/21 18:22:13 [metric_collector] {"stage_name":"metric_collector","events_processed":984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":196.8,"last_update":"2026-03-21T18:22:13.870235279Z"} +2026/03/21 18:22:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:22:08.877013226Z"} +2026/03/21 18:22:13 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":817.9361392597431,"throughput_eps":0,"last_update":"2026-03-21T18:22:08.965137864Z"} +2026/03/21 18:22:13 ───────────────────────────────────────────────── +2026/03/21 18:22:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:22:18 [log_collector] {"stage_name":"log_collector","events_processed":1626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":325.2,"last_update":"2026-03-21T18:22:13.869803121Z"} +2026/03/21 18:22:18 [metric_collector] {"stage_name":"metric_collector","events_processed":984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":196.8,"last_update":"2026-03-21T18:22:13.870235279Z"} +2026/03/21 18:22:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:22:13.876577449Z"} +2026/03/21 18:22:18 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":817.9361392597431,"throughput_eps":0,"last_update":"2026-03-21T18:22:13.965764783Z"} +2026/03/21 18:22:18 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":10.377314525471224,"throughput_eps":0,"last_update":"2026-03-21T18:22:13.965752078Z"} +2026/03/21 18:22:18 ───────────────────────────────────────────────── +2026/03/21 18:22:19 [ANOMALY] time=2026-03-21T18:22:19Z score=0.9185 method=SEAD details=MAD!:w=0.24,s=0.94 RRCF-fast!:w=0.19,s=0.94 RRCF-mid!:w=0.19,s=0.94 RRCF-slow!:w=0.19,s=0.94 COPOD!:w=0.20,s=0.84 +2026/03/21 18:22:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:22:23 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":675.5280318077945,"throughput_eps":0,"last_update":"2026-03-21T18:22:19.071010587Z"} +2026/03/21 18:22:23 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":10.377314525471224,"throughput_eps":0,"last_update":"2026-03-21T18:22:18.965483902Z"} +2026/03/21 18:22:23 [log_collector] {"stage_name":"log_collector","events_processed":1626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":325.2,"last_update":"2026-03-21T18:22:18.870269132Z"} +2026/03/21 18:22:23 [metric_collector] {"stage_name":"metric_collector","events_processed":989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":197.8,"last_update":"2026-03-21T18:22:18.870730885Z"} +2026/03/21 18:22:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:22:18.877709064Z"} +2026/03/21 18:22:23 ───────────────────────────────────────────────── +2026/03/21 18:22:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:22:28 [log_collector] {"stage_name":"log_collector","events_processed":1626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":325.2,"last_update":"2026-03-21T18:22:23.870381574Z"} +2026/03/21 18:22:28 [metric_collector] {"stage_name":"metric_collector","events_processed":993,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":198.6,"last_update":"2026-03-21T18:22:23.870486855Z"} +2026/03/21 18:22:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":400,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:22:23.878198759Z"} +2026/03/21 18:22:28 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":675.5280318077945,"throughput_eps":0,"last_update":"2026-03-21T18:22:23.965377866Z"} +2026/03/21 18:22:28 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":9.28265862037698,"throughput_eps":0,"last_update":"2026-03-21T18:22:23.965414386Z"} +2026/03/21 18:22:28 ───────────────────────────────────────────────── +2026/03/21 18:22:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:22:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":402,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:22:28.881934622Z"} +2026/03/21 18:22:33 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":675.5280318077945,"throughput_eps":0,"last_update":"2026-03-21T18:22:28.965607151Z"} +2026/03/21 18:22:33 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":9.28265862037698,"throughput_eps":0,"last_update":"2026-03-21T18:22:28.965635175Z"} +2026/03/21 18:22:33 [log_collector] {"stage_name":"log_collector","events_processed":1626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":325.2,"last_update":"2026-03-21T18:22:28.86993274Z"} +2026/03/21 18:22:33 [metric_collector] {"stage_name":"metric_collector","events_processed":999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":199.8,"last_update":"2026-03-21T18:22:28.869920246Z"} +2026/03/21 18:22:33 ───────────────────────────────────────────────── +2026/03/21 18:22:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:22:38 [log_collector] {"stage_name":"log_collector","events_processed":1629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":325.8,"last_update":"2026-03-21T18:22:33.869911854Z"} +2026/03/21 18:22:38 [metric_collector] {"stage_name":"metric_collector","events_processed":1004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":200.8,"last_update":"2026-03-21T18:22:33.870189586Z"} +2026/03/21 18:22:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:22:33.877370743Z"} +2026/03/21 18:22:38 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":675.5280318077945,"throughput_eps":0,"last_update":"2026-03-21T18:22:33.965587698Z"} +2026/03/21 18:22:38 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":9.28265862037698,"throughput_eps":0,"last_update":"2026-03-21T18:22:33.965627404Z"} +2026/03/21 18:22:38 ───────────────────────────────────────────────── +2026/03/21 18:22:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:22:43 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":9.28265862037698,"throughput_eps":0,"last_update":"2026-03-21T18:22:38.965740102Z"} +2026/03/21 18:22:43 [log_collector] {"stage_name":"log_collector","events_processed":1637,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":327.4,"last_update":"2026-03-21T18:22:38.869858054Z"} +2026/03/21 18:22:43 [metric_collector] {"stage_name":"metric_collector","events_processed":1009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":201.8,"last_update":"2026-03-21T18:22:38.870215738Z"} +2026/03/21 18:22:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:22:38.879554258Z"} +2026/03/21 18:22:43 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":675.5280318077945,"throughput_eps":0,"last_update":"2026-03-21T18:22:38.965854682Z"} +2026/03/21 18:22:43 ───────────────────────────────────────────────── +2026/03/21 18:22:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:22:48 [log_collector] {"stage_name":"log_collector","events_processed":1699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":339.8,"last_update":"2026-03-21T18:22:43.869844029Z"} +2026/03/21 18:22:48 [metric_collector] {"stage_name":"metric_collector","events_processed":1014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":202.8,"last_update":"2026-03-21T18:22:43.870005848Z"} +2026/03/21 18:22:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":408,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:22:43.877065633Z"} +2026/03/21 18:22:48 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":675.5280318077945,"throughput_eps":0,"last_update":"2026-03-21T18:22:43.966396702Z"} +2026/03/21 18:22:48 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":9.28265862037698,"throughput_eps":0,"last_update":"2026-03-21T18:22:43.965742078Z"} +2026/03/21 18:22:48 ───────────────────────────────────────────────── +Saved state: 11 clusters, 1986 messages, reason: none +2026/03/21 18:22:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:22:53 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":9.28265862037698,"throughput_eps":0,"last_update":"2026-03-21T18:22:48.966547552Z"} +2026/03/21 18:22:53 [log_collector] {"stage_name":"log_collector","events_processed":1988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":397.6,"last_update":"2026-03-21T18:22:53.870406638Z"} +2026/03/21 18:22:53 [metric_collector] {"stage_name":"metric_collector","events_processed":1019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":203.8,"last_update":"2026-03-21T18:22:48.870224428Z"} +2026/03/21 18:22:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:22:48.875830328Z"} +2026/03/21 18:22:53 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":675.5280318077945,"throughput_eps":0,"last_update":"2026-03-21T18:22:48.966161513Z"} +2026/03/21 18:22:53 ───────────────────────────────────────────────── +2026/03/21 18:22:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:22:58 [log_collector] {"stage_name":"log_collector","events_processed":1988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":397.6,"last_update":"2026-03-21T18:22:53.870406638Z"} +2026/03/21 18:22:58 [metric_collector] {"stage_name":"metric_collector","events_processed":1024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":204.8,"last_update":"2026-03-21T18:22:53.870792117Z"} +2026/03/21 18:22:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:22:53.877952574Z"} +2026/03/21 18:22:58 [transform_engine] {"stage_name":"transform_engine","events_processed":34,"events_dropped":0,"avg_latency_ms":878.8013100462356,"throughput_eps":0,"last_update":"2026-03-21T18:22:53.965079972Z"} +2026/03/21 18:22:58 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":9.758342896301585,"throughput_eps":0,"last_update":"2026-03-21T18:22:53.965432497Z"} +2026/03/21 18:22:58 ───────────────────────────────────────────────── +2026/03/21 18:23:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:23:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:22:58.876920957Z"} +2026/03/21 18:23:03 [transform_engine] {"stage_name":"transform_engine","events_processed":34,"events_dropped":0,"avg_latency_ms":878.8013100462356,"throughput_eps":0,"last_update":"2026-03-21T18:22:58.965077957Z"} +2026/03/21 18:23:03 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":9.758342896301585,"throughput_eps":0,"last_update":"2026-03-21T18:22:58.966311451Z"} +2026/03/21 18:23:03 [log_collector] {"stage_name":"log_collector","events_processed":1988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":397.6,"last_update":"2026-03-21T18:22:58.86966626Z"} +2026/03/21 18:23:03 [metric_collector] {"stage_name":"metric_collector","events_processed":1029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":205.8,"last_update":"2026-03-21T18:22:58.870010499Z"} +2026/03/21 18:23:03 ───────────────────────────────────────────────── +2026/03/21 18:23:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:23:08 [transform_engine] {"stage_name":"transform_engine","events_processed":34,"events_dropped":0,"avg_latency_ms":878.8013100462356,"throughput_eps":0,"last_update":"2026-03-21T18:23:03.965113493Z"} +2026/03/21 18:23:08 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":9.758342896301585,"throughput_eps":0,"last_update":"2026-03-21T18:23:03.966257795Z"} +2026/03/21 18:23:08 [log_collector] {"stage_name":"log_collector","events_processed":1998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":399.6,"last_update":"2026-03-21T18:23:03.869602616Z"} +2026/03/21 18:23:08 [metric_collector] {"stage_name":"metric_collector","events_processed":1034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":206.8,"last_update":"2026-03-21T18:23:03.870122031Z"} +2026/03/21 18:23:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:23:03.879103045Z"} +2026/03/21 18:23:08 ───────────────────────────────────────────────── +2026/03/21 18:23:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:23:13 [metric_collector] {"stage_name":"metric_collector","events_processed":1039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":207.8,"last_update":"2026-03-21T18:23:08.870554817Z"} +2026/03/21 18:23:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:23:08.877862075Z"} +2026/03/21 18:23:13 [transform_engine] {"stage_name":"transform_engine","events_processed":34,"events_dropped":0,"avg_latency_ms":878.8013100462356,"throughput_eps":0,"last_update":"2026-03-21T18:23:08.966211013Z"} +2026/03/21 18:23:13 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":9.758342896301585,"throughput_eps":0,"last_update":"2026-03-21T18:23:08.966199762Z"} +2026/03/21 18:23:13 [log_collector] {"stage_name":"log_collector","events_processed":2013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":402.6,"last_update":"2026-03-21T18:23:08.870370213Z"} +2026/03/21 18:23:13 ───────────────────────────────────────────────── +2026/03/21 18:23:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:23:18 [transform_engine] {"stage_name":"transform_engine","events_processed":34,"events_dropped":0,"avg_latency_ms":878.8013100462356,"throughput_eps":0,"last_update":"2026-03-21T18:23:13.965573217Z"} +2026/03/21 18:23:18 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":9.758342896301585,"throughput_eps":0,"last_update":"2026-03-21T18:23:13.965565753Z"} +2026/03/21 18:23:18 [log_collector] {"stage_name":"log_collector","events_processed":2015,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":403,"last_update":"2026-03-21T18:23:18.869427316Z"} +2026/03/21 18:23:18 [metric_collector] {"stage_name":"metric_collector","events_processed":1044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":208.8,"last_update":"2026-03-21T18:23:13.869939473Z"} +2026/03/21 18:23:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":420,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:23:13.878392646Z"} +2026/03/21 18:23:18 ───────────────────────────────────────────────── +2026/03/21 18:23:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:23:23 [log_collector] {"stage_name":"log_collector","events_processed":2015,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":403,"last_update":"2026-03-21T18:23:18.869427316Z"} +2026/03/21 18:23:23 [metric_collector] {"stage_name":"metric_collector","events_processed":1049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":209.8,"last_update":"2026-03-21T18:23:18.869726218Z"} +2026/03/21 18:23:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:23:18.878012813Z"} +2026/03/21 18:23:23 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":725.0371372369885,"throughput_eps":0,"last_update":"2026-03-21T18:23:19.075190501Z"} +2026/03/21 18:23:23 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":9.758342896301585,"throughput_eps":0,"last_update":"2026-03-21T18:23:18.966315843Z"} +2026/03/21 18:23:23 ───────────────────────────────────────────────── +2026/03/21 18:23:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:23:28 [log_collector] {"stage_name":"log_collector","events_processed":2015,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":403,"last_update":"2026-03-21T18:23:28.869862258Z"} +2026/03/21 18:23:28 [metric_collector] {"stage_name":"metric_collector","events_processed":1054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":210.8,"last_update":"2026-03-21T18:23:23.870301185Z"} +2026/03/21 18:23:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:23:23.878270662Z"} +2026/03/21 18:23:28 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":725.0371372369885,"throughput_eps":0,"last_update":"2026-03-21T18:23:23.965634252Z"} +2026/03/21 18:23:28 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":10.167935717041267,"throughput_eps":0,"last_update":"2026-03-21T18:23:23.965619955Z"} +2026/03/21 18:23:28 ───────────────────────────────────────────────── +2026/03/21 18:23:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:23:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:23:28.878888701Z"} +2026/03/21 18:23:33 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":725.0371372369885,"throughput_eps":0,"last_update":"2026-03-21T18:23:28.965064815Z"} +2026/03/21 18:23:33 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":10.167935717041267,"throughput_eps":0,"last_update":"2026-03-21T18:23:28.966267329Z"} +2026/03/21 18:23:33 [log_collector] {"stage_name":"log_collector","events_processed":2015,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":403,"last_update":"2026-03-21T18:23:33.869845739Z"} +2026/03/21 18:23:33 [metric_collector] {"stage_name":"metric_collector","events_processed":1059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":211.8,"last_update":"2026-03-21T18:23:28.870217278Z"} +2026/03/21 18:23:33 ───────────────────────────────────────────────── +2026/03/21 18:23:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:23:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:23:33.878416969Z"} +2026/03/21 18:23:38 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":725.0371372369885,"throughput_eps":0,"last_update":"2026-03-21T18:23:33.965581097Z"} +2026/03/21 18:23:38 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":10.167935717041267,"throughput_eps":0,"last_update":"2026-03-21T18:23:33.965572841Z"} +2026/03/21 18:23:38 [log_collector] {"stage_name":"log_collector","events_processed":2015,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":403,"last_update":"2026-03-21T18:23:38.869508877Z"} +2026/03/21 18:23:38 [metric_collector] {"stage_name":"metric_collector","events_processed":1064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":212.8,"last_update":"2026-03-21T18:23:33.87029525Z"} +2026/03/21 18:23:38 ───────────────────────────────────────────────── +2026/03/21 18:23:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:23:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:23:38.881154356Z"} +2026/03/21 18:23:43 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":725.0371372369885,"throughput_eps":0,"last_update":"2026-03-21T18:23:38.965486338Z"} +2026/03/21 18:23:43 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":10.167935717041267,"throughput_eps":0,"last_update":"2026-03-21T18:23:38.965469967Z"} +2026/03/21 18:23:43 [log_collector] {"stage_name":"log_collector","events_processed":2015,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":403,"last_update":"2026-03-21T18:23:38.869508877Z"} +2026/03/21 18:23:43 [metric_collector] {"stage_name":"metric_collector","events_processed":1069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":213.8,"last_update":"2026-03-21T18:23:38.869811867Z"} +2026/03/21 18:23:43 ───────────────────────────────────────────────── +2026/03/21 18:23:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:23:48 [log_collector] {"stage_name":"log_collector","events_processed":2015,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":403,"last_update":"2026-03-21T18:23:43.869731293Z"} +2026/03/21 18:23:48 [metric_collector] {"stage_name":"metric_collector","events_processed":1074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":214.8,"last_update":"2026-03-21T18:23:43.870129276Z"} +2026/03/21 18:23:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:23:43.879518462Z"} +2026/03/21 18:23:48 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":725.0371372369885,"throughput_eps":0,"last_update":"2026-03-21T18:23:43.96575311Z"} +2026/03/21 18:23:48 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":10.167935717041267,"throughput_eps":0,"last_update":"2026-03-21T18:23:43.96574279Z"} +2026/03/21 18:23:48 ───────────────────────────────────────────────── +2026/03/21 18:23:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:23:53 [log_collector] {"stage_name":"log_collector","events_processed":2015,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":403,"last_update":"2026-03-21T18:23:48.86988551Z"} +2026/03/21 18:23:53 [metric_collector] {"stage_name":"metric_collector","events_processed":1079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":215.8,"last_update":"2026-03-21T18:23:48.86982333Z"} +2026/03/21 18:23:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:23:48.878822369Z"} +2026/03/21 18:23:53 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":592.7366603895908,"throughput_eps":0,"last_update":"2026-03-21T18:23:49.028781142Z"} +2026/03/21 18:23:53 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":10.167935717041267,"throughput_eps":0,"last_update":"2026-03-21T18:23:48.965400936Z"} +2026/03/21 18:23:53 ───────────────────────────────────────────────── +2026/03/21 18:23:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:23:58 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":10.708563773633013,"throughput_eps":0,"last_update":"2026-03-21T18:23:53.965411004Z"} +2026/03/21 18:23:58 [log_collector] {"stage_name":"log_collector","events_processed":2015,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":403,"last_update":"2026-03-21T18:23:53.869695896Z"} +2026/03/21 18:23:58 [metric_collector] {"stage_name":"metric_collector","events_processed":1084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":216.8,"last_update":"2026-03-21T18:23:53.870153663Z"} +2026/03/21 18:23:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:23:53.878199756Z"} +2026/03/21 18:23:58 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":592.7366603895908,"throughput_eps":0,"last_update":"2026-03-21T18:23:53.965433297Z"} +2026/03/21 18:23:58 ───────────────────────────────────────────────── +2026/03/21 18:24:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:24:03 [log_collector] {"stage_name":"log_collector","events_processed":2015,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":403,"last_update":"2026-03-21T18:23:58.869532189Z"} +2026/03/21 18:24:03 [metric_collector] {"stage_name":"metric_collector","events_processed":1089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":217.8,"last_update":"2026-03-21T18:23:58.870184368Z"} +2026/03/21 18:24:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:23:58.879630745Z"} +2026/03/21 18:24:03 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":592.7366603895908,"throughput_eps":0,"last_update":"2026-03-21T18:23:58.965946978Z"} +2026/03/21 18:24:03 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":10.708563773633013,"throughput_eps":0,"last_update":"2026-03-21T18:23:58.965976585Z"} +2026/03/21 18:24:03 ───────────────────────────────────────────────── +2026/03/21 18:24:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:24:08 [log_collector] {"stage_name":"log_collector","events_processed":2015,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":403,"last_update":"2026-03-21T18:24:03.869453236Z"} +2026/03/21 18:24:08 [metric_collector] {"stage_name":"metric_collector","events_processed":1094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":218.8,"last_update":"2026-03-21T18:24:03.869881556Z"} +2026/03/21 18:24:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:24:03.87809961Z"} +2026/03/21 18:24:08 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":592.7366603895908,"throughput_eps":0,"last_update":"2026-03-21T18:24:03.965242186Z"} +2026/03/21 18:24:08 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":10.708563773633013,"throughput_eps":0,"last_update":"2026-03-21T18:24:03.965304405Z"} +2026/03/21 18:24:08 ───────────────────────────────────────────────── +2026/03/21 18:24:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:24:13 [metric_collector] {"stage_name":"metric_collector","events_processed":1099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":219.8,"last_update":"2026-03-21T18:24:08.870775856Z"} +2026/03/21 18:24:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":442,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:24:08.87914579Z"} +2026/03/21 18:24:13 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":592.7366603895908,"throughput_eps":0,"last_update":"2026-03-21T18:24:08.965586953Z"} +2026/03/21 18:24:13 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":10.708563773633013,"throughput_eps":0,"last_update":"2026-03-21T18:24:08.965548589Z"} +2026/03/21 18:24:13 [log_collector] {"stage_name":"log_collector","events_processed":2015,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":403,"last_update":"2026-03-21T18:24:08.870296618Z"} +2026/03/21 18:24:13 ───────────────────────────────────────────────── +2026/03/21 18:24:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:24:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:24:13.879626025Z"} +2026/03/21 18:24:18 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":592.7366603895908,"throughput_eps":0,"last_update":"2026-03-21T18:24:13.965857656Z"} +2026/03/21 18:24:18 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":10.708563773633013,"throughput_eps":0,"last_update":"2026-03-21T18:24:13.965822449Z"} +2026/03/21 18:24:18 [log_collector] {"stage_name":"log_collector","events_processed":2015,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":403,"last_update":"2026-03-21T18:24:13.869599597Z"} +2026/03/21 18:24:18 [metric_collector] {"stage_name":"metric_collector","events_processed":1104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":220.8,"last_update":"2026-03-21T18:24:13.87006031Z"} +2026/03/21 18:24:18 ───────────────────────────────────────────────── +2026/03/21 18:24:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:24:23 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":488.47506911167267,"throughput_eps":0,"last_update":"2026-03-21T18:24:19.036649255Z"} +2026/03/21 18:24:23 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":10.708563773633013,"throughput_eps":0,"last_update":"2026-03-21T18:24:18.966336588Z"} +2026/03/21 18:24:23 [log_collector] {"stage_name":"log_collector","events_processed":2015,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":403,"last_update":"2026-03-21T18:24:18.869485904Z"} +2026/03/21 18:24:23 [metric_collector] {"stage_name":"metric_collector","events_processed":1109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":221.8,"last_update":"2026-03-21T18:24:18.869810526Z"} +2026/03/21 18:24:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":446,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:24:18.878988088Z"} +2026/03/21 18:24:23 ───────────────────────────────────────────────── +Saved state: 11 clusters, 2016 messages, reason: none +2026/03/21 18:24:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:24:28 [log_collector] {"stage_name":"log_collector","events_processed":2015,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":403,"last_update":"2026-03-21T18:24:23.869653601Z"} +2026/03/21 18:24:28 [metric_collector] {"stage_name":"metric_collector","events_processed":1114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":222.8,"last_update":"2026-03-21T18:24:23.870028479Z"} +2026/03/21 18:24:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:24:23.87839146Z"} +2026/03/21 18:24:28 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":488.47506911167267,"throughput_eps":0,"last_update":"2026-03-21T18:24:23.965768545Z"} +2026/03/21 18:24:28 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.04752901890641,"throughput_eps":0,"last_update":"2026-03-21T18:24:23.965736344Z"} +2026/03/21 18:24:28 ───────────────────────────────────────────────── +2026/03/21 18:24:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:24:33 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":488.47506911167267,"throughput_eps":0,"last_update":"2026-03-21T18:24:28.965389371Z"} +2026/03/21 18:24:33 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.04752901890641,"throughput_eps":0,"last_update":"2026-03-21T18:24:28.965536402Z"} +2026/03/21 18:24:33 [log_collector] {"stage_name":"log_collector","events_processed":2028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":405.6,"last_update":"2026-03-21T18:24:28.869594914Z"} +2026/03/21 18:24:33 [metric_collector] {"stage_name":"metric_collector","events_processed":1119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":223.8,"last_update":"2026-03-21T18:24:28.869925648Z"} +2026/03/21 18:24:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:24:28.877506706Z"} +2026/03/21 18:24:33 ───────────────────────────────────────────────── +2026/03/21 18:24:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:24:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":452,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:24:33.878439684Z"} +2026/03/21 18:24:38 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":488.47506911167267,"throughput_eps":0,"last_update":"2026-03-21T18:24:33.965793284Z"} +2026/03/21 18:24:38 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.04752901890641,"throughput_eps":0,"last_update":"2026-03-21T18:24:33.965867055Z"} +2026/03/21 18:24:38 [log_collector] {"stage_name":"log_collector","events_processed":2029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":405.8,"last_update":"2026-03-21T18:24:38.86995083Z"} +2026/03/21 18:24:38 [metric_collector] {"stage_name":"metric_collector","events_processed":1124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":224.8,"last_update":"2026-03-21T18:24:33.869786632Z"} +2026/03/21 18:24:38 ───────────────────────────────────────────────── +2026/03/21 18:24:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:24:43 [metric_collector] {"stage_name":"metric_collector","events_processed":1129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":225.8,"last_update":"2026-03-21T18:24:38.870724021Z"} +2026/03/21 18:24:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:24:38.878626135Z"} +2026/03/21 18:24:43 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":488.47506911167267,"throughput_eps":0,"last_update":"2026-03-21T18:24:38.965864225Z"} +2026/03/21 18:24:43 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.04752901890641,"throughput_eps":0,"last_update":"2026-03-21T18:24:38.965849216Z"} +2026/03/21 18:24:43 [log_collector] {"stage_name":"log_collector","events_processed":2029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":405.8,"last_update":"2026-03-21T18:24:38.86995083Z"} +2026/03/21 18:24:43 ───────────────────────────────────────────────── +2026/03/21 18:24:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:24:48 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":488.47506911167267,"throughput_eps":0,"last_update":"2026-03-21T18:24:43.965872879Z"} +2026/03/21 18:24:48 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.04752901890641,"throughput_eps":0,"last_update":"2026-03-21T18:24:43.965849254Z"} +2026/03/21 18:24:48 [log_collector] {"stage_name":"log_collector","events_processed":2029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":405.8,"last_update":"2026-03-21T18:24:43.869681903Z"} +2026/03/21 18:24:48 [metric_collector] {"stage_name":"metric_collector","events_processed":1139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":227.8,"last_update":"2026-03-21T18:24:48.869774392Z"} +2026/03/21 18:24:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:24:43.878515221Z"} +2026/03/21 18:24:48 ───────────────────────────────────────────────── +2026/03/21 18:24:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:24:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:24:48.878594605Z"} +2026/03/21 18:24:53 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":412.6222234893382,"throughput_eps":0,"last_update":"2026-03-21T18:24:49.075005985Z"} +2026/03/21 18:24:53 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.04752901890641,"throughput_eps":0,"last_update":"2026-03-21T18:24:48.966528488Z"} +2026/03/21 18:24:53 [log_collector] {"stage_name":"log_collector","events_processed":2029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":405.8,"last_update":"2026-03-21T18:24:53.869407986Z"} +2026/03/21 18:24:53 [metric_collector] {"stage_name":"metric_collector","events_processed":1139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":227.8,"last_update":"2026-03-21T18:24:48.869774392Z"} +2026/03/21 18:24:53 ───────────────────────────────────────────────── +2026/03/21 18:24:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:24:58 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":412.6222234893382,"throughput_eps":0,"last_update":"2026-03-21T18:24:53.96556085Z"} +2026/03/21 18:24:58 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":11.359257615125129,"throughput_eps":0,"last_update":"2026-03-21T18:24:53.965589796Z"} +2026/03/21 18:24:58 [log_collector] {"stage_name":"log_collector","events_processed":2029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":405.8,"last_update":"2026-03-21T18:24:58.869584241Z"} +2026/03/21 18:24:58 [metric_collector] {"stage_name":"metric_collector","events_processed":1144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":228.8,"last_update":"2026-03-21T18:24:53.869862396Z"} +2026/03/21 18:24:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:24:53.8782081Z"} +2026/03/21 18:24:58 ───────────────────────────────────────────────── +2026/03/21 18:25:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:25:03 [log_collector] {"stage_name":"log_collector","events_processed":2029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":405.8,"last_update":"2026-03-21T18:25:03.870246049Z"} +2026/03/21 18:25:03 [metric_collector] {"stage_name":"metric_collector","events_processed":1149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":229.8,"last_update":"2026-03-21T18:24:58.870324549Z"} +2026/03/21 18:25:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:24:58.879099704Z"} +2026/03/21 18:25:03 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":412.6222234893382,"throughput_eps":0,"last_update":"2026-03-21T18:24:58.965386144Z"} +2026/03/21 18:25:03 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":11.359257615125129,"throughput_eps":0,"last_update":"2026-03-21T18:24:58.965341238Z"} +2026/03/21 18:25:03 ───────────────────────────────────────────────── +2026/03/21 18:25:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:25:08 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":11.359257615125129,"throughput_eps":0,"last_update":"2026-03-21T18:25:03.966243297Z"} +2026/03/21 18:25:08 [log_collector] {"stage_name":"log_collector","events_processed":2029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":405.8,"last_update":"2026-03-21T18:25:03.870246049Z"} +2026/03/21 18:25:08 [metric_collector] {"stage_name":"metric_collector","events_processed":1154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":230.8,"last_update":"2026-03-21T18:25:03.870739725Z"} +2026/03/21 18:25:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:25:03.879880852Z"} +2026/03/21 18:25:08 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":412.6222234893382,"throughput_eps":0,"last_update":"2026-03-21T18:25:03.965074919Z"} +2026/03/21 18:25:08 ───────────────────────────────────────────────── +2026/03/21 18:25:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:25:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:25:08.878535618Z"} +2026/03/21 18:25:13 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":412.6222234893382,"throughput_eps":0,"last_update":"2026-03-21T18:25:08.965768781Z"} +2026/03/21 18:25:13 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":11.359257615125129,"throughput_eps":0,"last_update":"2026-03-21T18:25:08.965808698Z"} +2026/03/21 18:25:13 [log_collector] {"stage_name":"log_collector","events_processed":2029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":405.8,"last_update":"2026-03-21T18:25:08.870187822Z"} +2026/03/21 18:25:13 [metric_collector] {"stage_name":"metric_collector","events_processed":1159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":231.8,"last_update":"2026-03-21T18:25:08.870792259Z"} +2026/03/21 18:25:13 ───────────────────────────────────────────────── +2026/03/21 18:25:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:25:18 [metric_collector] {"stage_name":"metric_collector","events_processed":1164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":232.8,"last_update":"2026-03-21T18:25:13.869932306Z"} +2026/03/21 18:25:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:25:13.877737975Z"} +2026/03/21 18:25:18 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":412.6222234893382,"throughput_eps":0,"last_update":"2026-03-21T18:25:13.965931328Z"} +2026/03/21 18:25:18 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":11.359257615125129,"throughput_eps":0,"last_update":"2026-03-21T18:25:13.965968989Z"} +2026/03/21 18:25:18 [log_collector] {"stage_name":"log_collector","events_processed":2029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":405.8,"last_update":"2026-03-21T18:25:18.869452143Z"} +2026/03/21 18:25:18 ───────────────────────────────────────────────── +2026/03/21 18:25:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:25:23 [metric_collector] {"stage_name":"metric_collector","events_processed":1169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":233.8,"last_update":"2026-03-21T18:25:18.869933836Z"} +2026/03/21 18:25:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":470,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:25:18.878317321Z"} +2026/03/21 18:25:23 [transform_engine] {"stage_name":"transform_engine","events_processed":39,"events_dropped":0,"avg_latency_ms":343.6677149914705,"throughput_eps":0,"last_update":"2026-03-21T18:25:19.033498957Z"} +2026/03/21 18:25:23 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":11.359257615125129,"throughput_eps":0,"last_update":"2026-03-21T18:25:18.966543398Z"} +2026/03/21 18:25:23 [log_collector] {"stage_name":"log_collector","events_processed":2029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":405.8,"last_update":"2026-03-21T18:25:18.869452143Z"} +2026/03/21 18:25:23 ───────────────────────────────────────────────── +2026/03/21 18:25:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:25:28 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":11.658291692100104,"throughput_eps":0,"last_update":"2026-03-21T18:25:23.965465153Z"} +2026/03/21 18:25:28 [log_collector] {"stage_name":"log_collector","events_processed":2029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":405.8,"last_update":"2026-03-21T18:25:23.870337009Z"} +2026/03/21 18:25:28 [metric_collector] {"stage_name":"metric_collector","events_processed":1174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":234.8,"last_update":"2026-03-21T18:25:23.870707368Z"} +2026/03/21 18:25:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:25:23.879250209Z"} +2026/03/21 18:25:28 [transform_engine] {"stage_name":"transform_engine","events_processed":39,"events_dropped":0,"avg_latency_ms":343.6677149914705,"throughput_eps":0,"last_update":"2026-03-21T18:25:23.965509618Z"} +2026/03/21 18:25:28 ───────────────────────────────────────────────── +Saved state: 11 clusters, 2030 messages, reason: none +2026/03/21 18:25:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:25:33 [log_collector] {"stage_name":"log_collector","events_processed":2029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":405.8,"last_update":"2026-03-21T18:25:28.869654424Z"} +2026/03/21 18:25:33 [metric_collector] {"stage_name":"metric_collector","events_processed":1179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":235.8,"last_update":"2026-03-21T18:25:28.869959328Z"} +2026/03/21 18:25:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:25:28.878992368Z"} +2026/03/21 18:25:33 [transform_engine] {"stage_name":"transform_engine","events_processed":39,"events_dropped":0,"avg_latency_ms":343.6677149914705,"throughput_eps":0,"last_update":"2026-03-21T18:25:28.965192263Z"} +2026/03/21 18:25:33 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":11.658291692100104,"throughput_eps":0,"last_update":"2026-03-21T18:25:28.965333414Z"} +2026/03/21 18:25:33 ───────────────────────────────────────────────── +2026/03/21 18:25:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:25:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":476,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:25:33.885389963Z"} +2026/03/21 18:25:38 [transform_engine] {"stage_name":"transform_engine","events_processed":39,"events_dropped":0,"avg_latency_ms":343.6677149914705,"throughput_eps":0,"last_update":"2026-03-21T18:25:33.96546569Z"} +2026/03/21 18:25:38 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":11.658291692100104,"throughput_eps":0,"last_update":"2026-03-21T18:25:33.965482613Z"} +2026/03/21 18:25:38 [log_collector] {"stage_name":"log_collector","events_processed":2034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":406.8,"last_update":"2026-03-21T18:25:33.87022019Z"} +2026/03/21 18:25:38 [metric_collector] {"stage_name":"metric_collector","events_processed":1184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":236.8,"last_update":"2026-03-21T18:25:33.870692696Z"} +2026/03/21 18:25:38 ───────────────────────────────────────────────── +2026/03/21 18:25:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:25:43 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":11.658291692100104,"throughput_eps":0,"last_update":"2026-03-21T18:25:38.9659688Z"} +2026/03/21 18:25:43 [log_collector] {"stage_name":"log_collector","events_processed":2034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":406.8,"last_update":"2026-03-21T18:25:38.869401046Z"} +2026/03/21 18:25:43 [metric_collector] {"stage_name":"metric_collector","events_processed":1189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":237.8,"last_update":"2026-03-21T18:25:38.869694689Z"} +2026/03/21 18:25:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:25:38.877762591Z"} +2026/03/21 18:25:43 [transform_engine] {"stage_name":"transform_engine","events_processed":39,"events_dropped":0,"avg_latency_ms":343.6677149914705,"throughput_eps":0,"last_update":"2026-03-21T18:25:38.965934243Z"} +2026/03/21 18:25:43 ───────────────────────────────────────────────── +2026/03/21 18:25:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:25:48 [log_collector] {"stage_name":"log_collector","events_processed":2034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":406.8,"last_update":"2026-03-21T18:25:43.86940018Z"} +2026/03/21 18:25:48 [metric_collector] {"stage_name":"metric_collector","events_processed":1194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":238.8,"last_update":"2026-03-21T18:25:43.869704743Z"} +2026/03/21 18:25:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":480,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:25:43.876816373Z"} +2026/03/21 18:25:48 [transform_engine] {"stage_name":"transform_engine","events_processed":39,"events_dropped":0,"avg_latency_ms":343.6677149914705,"throughput_eps":0,"last_update":"2026-03-21T18:25:43.966098984Z"} +2026/03/21 18:25:48 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":11.658291692100104,"throughput_eps":0,"last_update":"2026-03-21T18:25:43.966065771Z"} +2026/03/21 18:25:48 ───────────────────────────────────────────────── +2026/03/21 18:25:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:25:53 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":640.2541479931765,"throughput_eps":0,"last_update":"2026-03-21T18:25:50.791717472Z"} +2026/03/21 18:25:53 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":11.658291692100104,"throughput_eps":0,"last_update":"2026-03-21T18:25:48.966059646Z"} +2026/03/21 18:25:53 [log_collector] {"stage_name":"log_collector","events_processed":2034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":406.8,"last_update":"2026-03-21T18:25:48.869969888Z"} +2026/03/21 18:25:53 [metric_collector] {"stage_name":"metric_collector","events_processed":1199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":239.8,"last_update":"2026-03-21T18:25:48.870184759Z"} +2026/03/21 18:25:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":482,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:25:48.87893084Z"} +2026/03/21 18:25:53 ───────────────────────────────────────────────── +2026/03/21 18:25:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:25:58 [log_collector] {"stage_name":"log_collector","events_processed":2034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":406.8,"last_update":"2026-03-21T18:25:58.869433025Z"} +2026/03/21 18:25:58 [metric_collector] {"stage_name":"metric_collector","events_processed":1209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":241.8,"last_update":"2026-03-21T18:25:58.869694907Z"} +2026/03/21 18:25:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:25:53.877648231Z"} +2026/03/21 18:25:58 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":640.2541479931765,"throughput_eps":0,"last_update":"2026-03-21T18:25:53.965846046Z"} +2026/03/21 18:25:58 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":10.751437953680083,"throughput_eps":0,"last_update":"2026-03-21T18:25:53.965891733Z"} +2026/03/21 18:25:58 ───────────────────────────────────────────────── +2026/03/21 18:26:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:26:03 [log_collector] {"stage_name":"log_collector","events_processed":2034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":406.8,"last_update":"2026-03-21T18:25:58.869433025Z"} +2026/03/21 18:26:03 [metric_collector] {"stage_name":"metric_collector","events_processed":1209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":241.8,"last_update":"2026-03-21T18:25:58.869694907Z"} +2026/03/21 18:26:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":486,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:25:58.879070543Z"} +2026/03/21 18:26:03 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":640.2541479931765,"throughput_eps":0,"last_update":"2026-03-21T18:25:58.965122408Z"} +2026/03/21 18:26:03 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":10.751437953680083,"throughput_eps":0,"last_update":"2026-03-21T18:25:58.966205993Z"} +2026/03/21 18:26:03 ───────────────────────────────────────────────── +2026/03/21 18:26:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:26:08 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":10.751437953680083,"throughput_eps":0,"last_update":"2026-03-21T18:26:03.965961072Z"} +2026/03/21 18:26:08 [log_collector] {"stage_name":"log_collector","events_processed":2034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":406.8,"last_update":"2026-03-21T18:26:03.870403342Z"} +2026/03/21 18:26:08 [metric_collector] {"stage_name":"metric_collector","events_processed":1214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":242.8,"last_update":"2026-03-21T18:26:03.870747281Z"} +2026/03/21 18:26:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:26:03.876706254Z"} +2026/03/21 18:26:08 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":640.2541479931765,"throughput_eps":0,"last_update":"2026-03-21T18:26:03.965910826Z"} +2026/03/21 18:26:08 ───────────────────────────────────────────────── +2026/03/21 18:26:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:26:13 [metric_collector] {"stage_name":"metric_collector","events_processed":1219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":243.8,"last_update":"2026-03-21T18:26:08.869851775Z"} +2026/03/21 18:26:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":490,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:26:08.876706191Z"} +2026/03/21 18:26:13 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":640.2541479931765,"throughput_eps":0,"last_update":"2026-03-21T18:26:08.965948969Z"} +2026/03/21 18:26:13 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":10.751437953680083,"throughput_eps":0,"last_update":"2026-03-21T18:26:08.965937396Z"} +2026/03/21 18:26:13 [log_collector] {"stage_name":"log_collector","events_processed":2034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":406.8,"last_update":"2026-03-21T18:26:08.869640409Z"} +2026/03/21 18:26:13 ───────────────────────────────────────────────── +2026/03/21 18:26:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:26:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:26:13.875826786Z"} +2026/03/21 18:26:18 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":640.2541479931765,"throughput_eps":0,"last_update":"2026-03-21T18:26:13.966074909Z"} +2026/03/21 18:26:18 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":10.751437953680083,"throughput_eps":0,"last_update":"2026-03-21T18:26:13.966150483Z"} +2026/03/21 18:26:18 [log_collector] {"stage_name":"log_collector","events_processed":2037,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":407.4,"last_update":"2026-03-21T18:26:13.869444994Z"} +2026/03/21 18:26:18 [metric_collector] {"stage_name":"metric_collector","events_processed":1224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":244.8,"last_update":"2026-03-21T18:26:13.870089278Z"} +2026/03/21 18:26:18 ───────────────────────────────────────────────── +2026/03/21 18:26:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:26:23 [log_collector] {"stage_name":"log_collector","events_processed":2075,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":415,"last_update":"2026-03-21T18:26:23.869405703Z"} +2026/03/21 18:26:23 [metric_collector] {"stage_name":"metric_collector","events_processed":1229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":245.8,"last_update":"2026-03-21T18:26:18.869932415Z"} +2026/03/21 18:26:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:26:18.879090334Z"} +2026/03/21 18:26:23 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":546.1387935945413,"throughput_eps":0,"last_update":"2026-03-21T18:26:19.135163995Z"} +2026/03/21 18:26:23 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":10.751437953680083,"throughput_eps":0,"last_update":"2026-03-21T18:26:18.965591721Z"} +2026/03/21 18:26:23 ───────────────────────────────────────────────── +2026/03/21 18:26:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:26:28 [log_collector] {"stage_name":"log_collector","events_processed":2098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":419.6,"last_update":"2026-03-21T18:26:28.870343818Z"} +2026/03/21 18:26:28 [metric_collector] {"stage_name":"metric_collector","events_processed":1234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":246.8,"last_update":"2026-03-21T18:26:23.869721569Z"} +2026/03/21 18:26:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":496,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:26:23.878724441Z"} +2026/03/21 18:26:28 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":546.1387935945413,"throughput_eps":0,"last_update":"2026-03-21T18:26:23.966002566Z"} +2026/03/21 18:26:28 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":10.821919562944068,"throughput_eps":0,"last_update":"2026-03-21T18:26:23.966116254Z"} +2026/03/21 18:26:28 ───────────────────────────────────────────────── +Saved state: 11 clusters, 2177 messages, reason: none +Saved state: 12 clusters, 2313 messages, reason: cluster_created +2026/03/21 18:26:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:26:33 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":10.821919562944068,"throughput_eps":0,"last_update":"2026-03-21T18:26:28.966124576Z"} +2026/03/21 18:26:33 [log_collector] {"stage_name":"log_collector","events_processed":2098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":419.6,"last_update":"2026-03-21T18:26:28.870343818Z"} +2026/03/21 18:26:33 [metric_collector] {"stage_name":"metric_collector","events_processed":1239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":247.8,"last_update":"2026-03-21T18:26:28.870780614Z"} +2026/03/21 18:26:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":498,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:26:28.879379482Z"} +2026/03/21 18:26:33 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":546.1387935945413,"throughput_eps":0,"last_update":"2026-03-21T18:26:28.96608989Z"} +2026/03/21 18:26:33 ───────────────────────────────────────────────── +2026/03/21 18:26:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:26:38 [log_collector] {"stage_name":"log_collector","events_processed":2364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":472.8,"last_update":"2026-03-21T18:26:33.870189737Z"} +2026/03/21 18:26:38 [metric_collector] {"stage_name":"metric_collector","events_processed":1244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":248.8,"last_update":"2026-03-21T18:26:33.870261003Z"} +2026/03/21 18:26:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:26:33.876313014Z"} +2026/03/21 18:26:38 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":546.1387935945413,"throughput_eps":0,"last_update":"2026-03-21T18:26:33.966136705Z"} +2026/03/21 18:26:38 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":10.821919562944068,"throughput_eps":0,"last_update":"2026-03-21T18:26:33.966020302Z"} +2026/03/21 18:26:38 ───────────────────────────────────────────────── +2026/03/21 18:26:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:26:43 [log_collector] {"stage_name":"log_collector","events_processed":2391,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":478.2,"last_update":"2026-03-21T18:26:38.869499641Z"} +2026/03/21 18:26:43 [metric_collector] {"stage_name":"metric_collector","events_processed":1249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":249.8,"last_update":"2026-03-21T18:26:38.869902562Z"} +2026/03/21 18:26:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:26:38.877804506Z"} +2026/03/21 18:26:43 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":546.1387935945413,"throughput_eps":0,"last_update":"2026-03-21T18:26:38.965155972Z"} +2026/03/21 18:26:43 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":10.821919562944068,"throughput_eps":0,"last_update":"2026-03-21T18:26:38.966247142Z"} +2026/03/21 18:26:43 ───────────────────────────────────────────────── +2026/03/21 18:26:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:26:48 [metric_collector] {"stage_name":"metric_collector","events_processed":1254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":250.8,"last_update":"2026-03-21T18:26:43.870679944Z"} +2026/03/21 18:26:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:26:43.878887584Z"} +2026/03/21 18:26:48 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":546.1387935945413,"throughput_eps":0,"last_update":"2026-03-21T18:26:43.965145365Z"} +2026/03/21 18:26:48 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":10.821919562944068,"throughput_eps":0,"last_update":"2026-03-21T18:26:43.965263772Z"} +2026/03/21 18:26:48 [log_collector] {"stage_name":"log_collector","events_processed":2391,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":478.2,"last_update":"2026-03-21T18:26:43.870434535Z"} +2026/03/21 18:26:48 ───────────────────────────────────────────────── +2026/03/21 18:26:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:26:53 [log_collector] {"stage_name":"log_collector","events_processed":2394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":478.8,"last_update":"2026-03-21T18:26:48.869521846Z"} +2026/03/21 18:26:53 [metric_collector] {"stage_name":"metric_collector","events_processed":1259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":251.8,"last_update":"2026-03-21T18:26:48.869684959Z"} +2026/03/21 18:26:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":506,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:26:48.878888255Z"} +2026/03/21 18:26:53 [transform_engine] {"stage_name":"transform_engine","events_processed":42,"events_dropped":0,"avg_latency_ms":891.2710110756332,"throughput_eps":0,"last_update":"2026-03-21T18:26:51.237763894Z"} +2026/03/21 18:26:53 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":10.821919562944068,"throughput_eps":0,"last_update":"2026-03-21T18:26:48.966004341Z"} +2026/03/21 18:26:53 ───────────────────────────────────────────────── +2026/03/21 18:26:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:26:58 [log_collector] {"stage_name":"log_collector","events_processed":2404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":480.8,"last_update":"2026-03-21T18:26:58.869918353Z"} +2026/03/21 18:26:58 [metric_collector] {"stage_name":"metric_collector","events_processed":1264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":252.8,"last_update":"2026-03-21T18:26:53.86975313Z"} +2026/03/21 18:26:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:26:53.879385748Z"} +2026/03/21 18:26:58 [transform_engine] {"stage_name":"transform_engine","events_processed":42,"events_dropped":0,"avg_latency_ms":891.2710110756332,"throughput_eps":0,"last_update":"2026-03-21T18:26:53.965552006Z"} +2026/03/21 18:26:58 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":11.369686050355256,"throughput_eps":0,"last_update":"2026-03-21T18:26:53.965569109Z"} +2026/03/21 18:26:58 ───────────────────────────────────────────────── +2026/03/21 18:27:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:27:03 [log_collector] {"stage_name":"log_collector","events_processed":2404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":480.8,"last_update":"2026-03-21T18:26:58.869918353Z"} +2026/03/21 18:27:03 [metric_collector] {"stage_name":"metric_collector","events_processed":1269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":253.8,"last_update":"2026-03-21T18:26:58.870286128Z"} +2026/03/21 18:27:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:26:58.878906328Z"} +2026/03/21 18:27:03 [transform_engine] {"stage_name":"transform_engine","events_processed":42,"events_dropped":0,"avg_latency_ms":891.2710110756332,"throughput_eps":0,"last_update":"2026-03-21T18:26:58.965091101Z"} +2026/03/21 18:27:03 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":11.369686050355256,"throughput_eps":0,"last_update":"2026-03-21T18:26:58.966272553Z"} +2026/03/21 18:27:03 ───────────────────────────────────────────────── +2026/03/21 18:27:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:27:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":512,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:27:03.878610466Z"} +2026/03/21 18:27:08 [transform_engine] {"stage_name":"transform_engine","events_processed":42,"events_dropped":0,"avg_latency_ms":891.2710110756332,"throughput_eps":0,"last_update":"2026-03-21T18:27:03.965930795Z"} +2026/03/21 18:27:08 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":11.369686050355256,"throughput_eps":0,"last_update":"2026-03-21T18:27:03.965957887Z"} +2026/03/21 18:27:08 [log_collector] {"stage_name":"log_collector","events_processed":2405,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":481,"last_update":"2026-03-21T18:27:03.869775656Z"} +2026/03/21 18:27:08 [metric_collector] {"stage_name":"metric_collector","events_processed":1274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":254.8,"last_update":"2026-03-21T18:27:03.870074588Z"} +2026/03/21 18:27:08 ───────────────────────────────────────────────── +2026/03/21 18:27:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:27:13 [transform_engine] {"stage_name":"transform_engine","events_processed":42,"events_dropped":0,"avg_latency_ms":891.2710110756332,"throughput_eps":0,"last_update":"2026-03-21T18:27:08.965945659Z"} +2026/03/21 18:27:13 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":11.369686050355256,"throughput_eps":0,"last_update":"2026-03-21T18:27:08.965910132Z"} +2026/03/21 18:27:13 [log_collector] {"stage_name":"log_collector","events_processed":2421,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":484.2,"last_update":"2026-03-21T18:27:08.870038414Z"} +2026/03/21 18:27:13 [metric_collector] {"stage_name":"metric_collector","events_processed":1278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":255.6,"last_update":"2026-03-21T18:27:08.870126113Z"} +2026/03/21 18:27:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:27:08.87663559Z"} +2026/03/21 18:27:13 ───────────────────────────────────────────────── +2026/03/21 18:27:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:27:18 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":11.369686050355256,"throughput_eps":0,"last_update":"2026-03-21T18:27:13.965897809Z"} +2026/03/21 18:27:18 [log_collector] {"stage_name":"log_collector","events_processed":2421,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":484.2,"last_update":"2026-03-21T18:27:13.869653479Z"} +2026/03/21 18:27:18 [metric_collector] {"stage_name":"metric_collector","events_processed":1284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":256.8,"last_update":"2026-03-21T18:27:13.870107368Z"} +2026/03/21 18:27:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:27:13.87849883Z"} +2026/03/21 18:27:18 [transform_engine] {"stage_name":"transform_engine","events_processed":42,"events_dropped":0,"avg_latency_ms":891.2710110756332,"throughput_eps":0,"last_update":"2026-03-21T18:27:13.96590863Z"} +2026/03/21 18:27:18 ───────────────────────────────────────────────── +2026/03/21 18:27:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:27:23 [log_collector] {"stage_name":"log_collector","events_processed":2421,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":484.2,"last_update":"2026-03-21T18:27:18.870369841Z"} +2026/03/21 18:27:23 [metric_collector] {"stage_name":"metric_collector","events_processed":1289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":257.8,"last_update":"2026-03-21T18:27:18.870926437Z"} +2026/03/21 18:27:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:27:18.881321816Z"} +2026/03/21 18:27:23 [transform_engine] {"stage_name":"transform_engine","events_processed":42,"events_dropped":0,"avg_latency_ms":891.2710110756332,"throughput_eps":0,"last_update":"2026-03-21T18:27:18.965679531Z"} +2026/03/21 18:27:23 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":11.369686050355256,"throughput_eps":0,"last_update":"2026-03-21T18:27:18.965666807Z"} +2026/03/21 18:27:23 ───────────────────────────────────────────────── +2026/03/21 18:27:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:27:28 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":11.628720040284206,"throughput_eps":0,"last_update":"2026-03-21T18:27:23.965676604Z"} +2026/03/21 18:27:28 [log_collector] {"stage_name":"log_collector","events_processed":2421,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":484.2,"last_update":"2026-03-21T18:27:23.869746225Z"} +2026/03/21 18:27:28 [metric_collector] {"stage_name":"metric_collector","events_processed":1294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":258.8,"last_update":"2026-03-21T18:27:23.869881744Z"} +2026/03/21 18:27:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":520,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:27:23.879333948Z"} +2026/03/21 18:27:28 [transform_engine] {"stage_name":"transform_engine","events_processed":43,"events_dropped":0,"avg_latency_ms":735.1639320605066,"throughput_eps":0,"last_update":"2026-03-21T18:27:23.965689349Z"} +2026/03/21 18:27:28 ───────────────────────────────────────────────── +2026/03/21 18:27:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:27:33 [transform_engine] {"stage_name":"transform_engine","events_processed":43,"events_dropped":0,"avg_latency_ms":735.1639320605066,"throughput_eps":0,"last_update":"2026-03-21T18:27:28.965383618Z"} +2026/03/21 18:27:33 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":11.628720040284206,"throughput_eps":0,"last_update":"2026-03-21T18:27:28.96537451Z"} +2026/03/21 18:27:33 [log_collector] {"stage_name":"log_collector","events_processed":2421,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":484.2,"last_update":"2026-03-21T18:27:28.869500848Z"} +2026/03/21 18:27:33 [metric_collector] {"stage_name":"metric_collector","events_processed":1299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":259.8,"last_update":"2026-03-21T18:27:28.869858443Z"} +2026/03/21 18:27:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":522,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:27:28.879191748Z"} +2026/03/21 18:27:33 ───────────────────────────────────────────────── +2026/03/21 18:27:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:27:38 [log_collector] {"stage_name":"log_collector","events_processed":2421,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":484.2,"last_update":"2026-03-21T18:27:33.869992572Z"} +2026/03/21 18:27:38 [metric_collector] {"stage_name":"metric_collector","events_processed":1304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":260.8,"last_update":"2026-03-21T18:27:33.870316543Z"} +2026/03/21 18:27:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:27:33.879933351Z"} +2026/03/21 18:27:38 [transform_engine] {"stage_name":"transform_engine","events_processed":43,"events_dropped":0,"avg_latency_ms":735.1639320605066,"throughput_eps":0,"last_update":"2026-03-21T18:27:33.965108552Z"} +2026/03/21 18:27:38 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":11.628720040284206,"throughput_eps":0,"last_update":"2026-03-21T18:27:33.966281007Z"} +2026/03/21 18:27:38 ───────────────────────────────────────────────── +2026/03/21 18:27:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:27:43 [log_collector] {"stage_name":"log_collector","events_processed":2421,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":484.2,"last_update":"2026-03-21T18:27:38.8698414Z"} +2026/03/21 18:27:43 [metric_collector] {"stage_name":"metric_collector","events_processed":1309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":261.8,"last_update":"2026-03-21T18:27:38.869823886Z"} +2026/03/21 18:27:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":526,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:27:38.878568474Z"} +2026/03/21 18:27:43 [transform_engine] {"stage_name":"transform_engine","events_processed":43,"events_dropped":0,"avg_latency_ms":735.1639320605066,"throughput_eps":0,"last_update":"2026-03-21T18:27:38.965949361Z"} +2026/03/21 18:27:43 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":11.628720040284206,"throughput_eps":0,"last_update":"2026-03-21T18:27:38.96593828Z"} +2026/03/21 18:27:43 ───────────────────────────────────────────────── +2026/03/21 18:27:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:27:48 [log_collector] {"stage_name":"log_collector","events_processed":2421,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":484.2,"last_update":"2026-03-21T18:27:43.869644186Z"} +2026/03/21 18:27:48 [metric_collector] {"stage_name":"metric_collector","events_processed":1314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":262.8,"last_update":"2026-03-21T18:27:43.869833699Z"} +2026/03/21 18:27:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:27:43.878524584Z"} +2026/03/21 18:27:48 [transform_engine] {"stage_name":"transform_engine","events_processed":43,"events_dropped":0,"avg_latency_ms":735.1639320605066,"throughput_eps":0,"last_update":"2026-03-21T18:27:43.96577932Z"} +2026/03/21 18:27:48 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":11.628720040284206,"throughput_eps":0,"last_update":"2026-03-21T18:27:43.965813144Z"} +2026/03/21 18:27:48 ───────────────────────────────────────────────── +2026/03/21 18:27:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:27:53 [log_collector] {"stage_name":"log_collector","events_processed":2421,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":484.2,"last_update":"2026-03-21T18:27:48.869404068Z"} +2026/03/21 18:27:53 [metric_collector] {"stage_name":"metric_collector","events_processed":1319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":263.8,"last_update":"2026-03-21T18:27:48.869986034Z"} +2026/03/21 18:27:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:27:48.878642773Z"} +2026/03/21 18:27:53 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":601.3182242484053,"throughput_eps":0,"last_update":"2026-03-21T18:27:49.032017304Z"} +2026/03/21 18:27:53 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":11.628720040284206,"throughput_eps":0,"last_update":"2026-03-21T18:27:48.965997109Z"} +2026/03/21 18:27:53 ───────────────────────────────────────────────── +2026/03/21 18:27:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:27:58 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":12.112440632227365,"throughput_eps":0,"last_update":"2026-03-21T18:27:53.965933356Z"} +2026/03/21 18:27:58 [log_collector] {"stage_name":"log_collector","events_processed":2421,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":484.2,"last_update":"2026-03-21T18:27:53.870135107Z"} +2026/03/21 18:27:58 [metric_collector] {"stage_name":"metric_collector","events_processed":1324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":264.8,"last_update":"2026-03-21T18:27:53.870619315Z"} +2026/03/21 18:27:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":532,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:27:53.879708683Z"} +2026/03/21 18:27:58 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":601.3182242484053,"throughput_eps":0,"last_update":"2026-03-21T18:27:53.965919319Z"} +2026/03/21 18:27:58 ───────────────────────────────────────────────── +2026/03/21 18:28:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:28:03 [log_collector] {"stage_name":"log_collector","events_processed":2421,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":484.2,"last_update":"2026-03-21T18:27:58.869888469Z"} +2026/03/21 18:28:03 [metric_collector] {"stage_name":"metric_collector","events_processed":1329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":265.8,"last_update":"2026-03-21T18:27:58.87040539Z"} +2026/03/21 18:28:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:27:58.878335308Z"} +2026/03/21 18:28:03 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":601.3182242484053,"throughput_eps":0,"last_update":"2026-03-21T18:27:58.965648325Z"} +2026/03/21 18:28:03 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":12.112440632227365,"throughput_eps":0,"last_update":"2026-03-21T18:27:58.965618297Z"} +2026/03/21 18:28:03 ───────────────────────────────────────────────── +Saved state: 12 clusters, 2422 messages, reason: none +2026/03/21 18:28:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:28:08 [metric_collector] {"stage_name":"metric_collector","events_processed":1334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":266.8,"last_update":"2026-03-21T18:28:03.870543554Z"} +2026/03/21 18:28:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":536,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:28:03.879170857Z"} +2026/03/21 18:28:08 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":601.3182242484053,"throughput_eps":0,"last_update":"2026-03-21T18:28:03.965452008Z"} +2026/03/21 18:28:08 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":12.112440632227365,"throughput_eps":0,"last_update":"2026-03-21T18:28:03.965565566Z"} +2026/03/21 18:28:08 [log_collector] {"stage_name":"log_collector","events_processed":2421,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":484.2,"last_update":"2026-03-21T18:28:03.86989416Z"} +2026/03/21 18:28:08 ───────────────────────────────────────────────── +2026/03/21 18:28:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:28:13 [log_collector] {"stage_name":"log_collector","events_processed":2434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":486.8,"last_update":"2026-03-21T18:28:08.869922372Z"} +2026/03/21 18:28:13 [metric_collector] {"stage_name":"metric_collector","events_processed":1339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":267.8,"last_update":"2026-03-21T18:28:08.870677438Z"} +2026/03/21 18:28:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:28:08.876525298Z"} +2026/03/21 18:28:13 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":601.3182242484053,"throughput_eps":0,"last_update":"2026-03-21T18:28:08.965817316Z"} +2026/03/21 18:28:13 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":12.112440632227365,"throughput_eps":0,"last_update":"2026-03-21T18:28:08.965837885Z"} +2026/03/21 18:28:13 ───────────────────────────────────────────────── +2026/03/21 18:28:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:28:18 [log_collector] {"stage_name":"log_collector","events_processed":2435,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":487,"last_update":"2026-03-21T18:28:13.870390311Z"} +2026/03/21 18:28:18 [metric_collector] {"stage_name":"metric_collector","events_processed":1344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":268.8,"last_update":"2026-03-21T18:28:13.870734771Z"} +2026/03/21 18:28:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":540,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:28:13.878555209Z"} +2026/03/21 18:28:18 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":601.3182242484053,"throughput_eps":0,"last_update":"2026-03-21T18:28:13.965938473Z"} +2026/03/21 18:28:18 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":12.112440632227365,"throughput_eps":0,"last_update":"2026-03-21T18:28:13.965901401Z"} +2026/03/21 18:28:18 ───────────────────────────────────────────────── +2026/03/21 18:28:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:28:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":542,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:28:18.879040776Z"} +2026/03/21 18:28:23 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":503.1547111987242,"throughput_eps":0,"last_update":"2026-03-21T18:28:19.075663283Z"} +2026/03/21 18:28:23 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":12.112440632227365,"throughput_eps":0,"last_update":"2026-03-21T18:28:18.966265736Z"} +2026/03/21 18:28:23 [log_collector] {"stage_name":"log_collector","events_processed":2435,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":487,"last_update":"2026-03-21T18:28:18.869529228Z"} +2026/03/21 18:28:23 [metric_collector] {"stage_name":"metric_collector","events_processed":1349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":269.8,"last_update":"2026-03-21T18:28:18.869923864Z"} +2026/03/21 18:28:23 ───────────────────────────────────────────────── +2026/03/21 18:28:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:28:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:28:23.879318521Z"} +2026/03/21 18:28:28 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":503.1547111987242,"throughput_eps":0,"last_update":"2026-03-21T18:28:23.965553525Z"} +2026/03/21 18:28:28 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":12.371337905781893,"throughput_eps":0,"last_update":"2026-03-21T18:28:23.965543867Z"} +2026/03/21 18:28:28 [log_collector] {"stage_name":"log_collector","events_processed":2435,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":487,"last_update":"2026-03-21T18:28:23.870178064Z"} +2026/03/21 18:28:28 [metric_collector] {"stage_name":"metric_collector","events_processed":1354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":270.8,"last_update":"2026-03-21T18:28:23.870580435Z"} +2026/03/21 18:28:28 ───────────────────────────────────────────────── +2026/03/21 18:28:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:28:33 [log_collector] {"stage_name":"log_collector","events_processed":2435,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":487,"last_update":"2026-03-21T18:28:28.870237205Z"} +2026/03/21 18:28:33 [metric_collector] {"stage_name":"metric_collector","events_processed":1359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":271.8,"last_update":"2026-03-21T18:28:28.870555625Z"} +2026/03/21 18:28:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:28:28.879385867Z"} +2026/03/21 18:28:33 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":503.1547111987242,"throughput_eps":0,"last_update":"2026-03-21T18:28:28.965788433Z"} +2026/03/21 18:28:33 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":12.371337905781893,"throughput_eps":0,"last_update":"2026-03-21T18:28:28.965732175Z"} +2026/03/21 18:28:33 ───────────────────────────────────────────────── +2026/03/21 18:28:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:28:38 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":503.1547111987242,"throughput_eps":0,"last_update":"2026-03-21T18:28:33.966027355Z"} +2026/03/21 18:28:38 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":12.371337905781893,"throughput_eps":0,"last_update":"2026-03-21T18:28:33.96617615Z"} +2026/03/21 18:28:38 [log_collector] {"stage_name":"log_collector","events_processed":2435,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":487,"last_update":"2026-03-21T18:28:33.869468517Z"} +2026/03/21 18:28:38 [metric_collector] {"stage_name":"metric_collector","events_processed":1364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":272.8,"last_update":"2026-03-21T18:28:33.869892699Z"} +2026/03/21 18:28:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:28:33.878835458Z"} +2026/03/21 18:28:38 ───────────────────────────────────────────────── +2026/03/21 18:28:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:28:43 [log_collector] {"stage_name":"log_collector","events_processed":2435,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":487,"last_update":"2026-03-21T18:28:38.869422225Z"} +2026/03/21 18:28:43 [metric_collector] {"stage_name":"metric_collector","events_processed":1369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":273.8,"last_update":"2026-03-21T18:28:38.869899108Z"} +2026/03/21 18:28:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:28:38.879399044Z"} +2026/03/21 18:28:43 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":503.1547111987242,"throughput_eps":0,"last_update":"2026-03-21T18:28:38.965769778Z"} +2026/03/21 18:28:43 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":12.371337905781893,"throughput_eps":0,"last_update":"2026-03-21T18:28:38.965587049Z"} +2026/03/21 18:28:43 ───────────────────────────────────────────────── +2026/03/21 18:28:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:28:48 [log_collector] {"stage_name":"log_collector","events_processed":2435,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":487,"last_update":"2026-03-21T18:28:43.869402941Z"} +2026/03/21 18:28:48 [metric_collector] {"stage_name":"metric_collector","events_processed":1374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":274.8,"last_update":"2026-03-21T18:28:43.870026114Z"} +2026/03/21 18:28:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:28:43.878637347Z"} +2026/03/21 18:28:48 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":503.1547111987242,"throughput_eps":0,"last_update":"2026-03-21T18:28:43.965945438Z"} +2026/03/21 18:28:48 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":12.371337905781893,"throughput_eps":0,"last_update":"2026-03-21T18:28:43.9659256Z"} +2026/03/21 18:28:48 ───────────────────────────────────────────────── +2026/03/21 18:28:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:28:53 [log_collector] {"stage_name":"log_collector","events_processed":2435,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":487,"last_update":"2026-03-21T18:28:48.869753039Z"} +2026/03/21 18:28:53 [metric_collector] {"stage_name":"metric_collector","events_processed":1379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":275.8,"last_update":"2026-03-21T18:28:48.870052573Z"} +2026/03/21 18:28:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:28:48.878562252Z"} +2026/03/21 18:28:53 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":417.89844595897944,"throughput_eps":0,"last_update":"2026-03-21T18:28:49.042685055Z"} +2026/03/21 18:28:53 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":12.371337905781893,"throughput_eps":0,"last_update":"2026-03-21T18:28:48.965773788Z"} +2026/03/21 18:28:53 ───────────────────────────────────────────────── +2026/03/21 18:28:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:28:58 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":417.89844595897944,"throughput_eps":0,"last_update":"2026-03-21T18:28:53.965959775Z"} +2026/03/21 18:28:58 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":12.725774124625515,"throughput_eps":0,"last_update":"2026-03-21T18:28:53.965948493Z"} +2026/03/21 18:28:58 [log_collector] {"stage_name":"log_collector","events_processed":2435,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":487,"last_update":"2026-03-21T18:28:53.870038688Z"} +2026/03/21 18:28:58 [metric_collector] {"stage_name":"metric_collector","events_processed":1384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":276.8,"last_update":"2026-03-21T18:28:53.870249141Z"} +2026/03/21 18:28:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:28:53.879733587Z"} +2026/03/21 18:28:58 ───────────────────────────────────────────────── +2026/03/21 18:29:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:29:03 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":12.725774124625515,"throughput_eps":0,"last_update":"2026-03-21T18:28:58.965325158Z"} +2026/03/21 18:29:03 [log_collector] {"stage_name":"log_collector","events_processed":2435,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":487,"last_update":"2026-03-21T18:28:58.869493672Z"} +2026/03/21 18:29:03 [metric_collector] {"stage_name":"metric_collector","events_processed":1389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":277.8,"last_update":"2026-03-21T18:28:58.869934476Z"} +2026/03/21 18:29:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:28:58.879091394Z"} +2026/03/21 18:29:03 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":417.89844595897944,"throughput_eps":0,"last_update":"2026-03-21T18:28:58.965336189Z"} +2026/03/21 18:29:03 ───────────────────────────────────────────────── +2026/03/21 18:29:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:29:08 [log_collector] {"stage_name":"log_collector","events_processed":2435,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":487,"last_update":"2026-03-21T18:29:03.870288826Z"} +2026/03/21 18:29:08 [metric_collector] {"stage_name":"metric_collector","events_processed":1393,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":278.6,"last_update":"2026-03-21T18:29:03.869688787Z"} +2026/03/21 18:29:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":560,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:29:03.878423157Z"} +2026/03/21 18:29:08 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":417.89844595897944,"throughput_eps":0,"last_update":"2026-03-21T18:29:03.965746507Z"} +2026/03/21 18:29:08 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":12.725774124625515,"throughput_eps":0,"last_update":"2026-03-21T18:29:03.965735216Z"} +2026/03/21 18:29:08 ───────────────────────────────────────────────── +Saved state: 12 clusters, 2436 messages, reason: none +2026/03/21 18:29:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:29:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:29:08.878769613Z"} +2026/03/21 18:29:13 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":417.89844595897944,"throughput_eps":0,"last_update":"2026-03-21T18:29:08.966056172Z"} +2026/03/21 18:29:13 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":12.725774124625515,"throughput_eps":0,"last_update":"2026-03-21T18:29:08.966050422Z"} +2026/03/21 18:29:13 [log_collector] {"stage_name":"log_collector","events_processed":2435,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":487,"last_update":"2026-03-21T18:29:08.869942365Z"} +2026/03/21 18:29:13 [metric_collector] {"stage_name":"metric_collector","events_processed":1398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":279.6,"last_update":"2026-03-21T18:29:08.869936965Z"} +2026/03/21 18:29:13 ───────────────────────────────────────────────── +2026/03/21 18:29:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:29:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:29:13.876482272Z"} +2026/03/21 18:29:18 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":417.89844595897944,"throughput_eps":0,"last_update":"2026-03-21T18:29:13.965683379Z"} +2026/03/21 18:29:18 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":12.725774124625515,"throughput_eps":0,"last_update":"2026-03-21T18:29:13.965671457Z"} +2026/03/21 18:29:18 [log_collector] {"stage_name":"log_collector","events_processed":2440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":488,"last_update":"2026-03-21T18:29:13.869397262Z"} +2026/03/21 18:29:18 [metric_collector] {"stage_name":"metric_collector","events_processed":1403,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":280.6,"last_update":"2026-03-21T18:29:13.869402612Z"} +2026/03/21 18:29:18 ───────────────────────────────────────────────── +2026/03/21 18:29:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:29:23 [log_collector] {"stage_name":"log_collector","events_processed":2440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":488,"last_update":"2026-03-21T18:29:18.869541001Z"} +2026/03/21 18:29:23 [metric_collector] {"stage_name":"metric_collector","events_processed":1408,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":281.6,"last_update":"2026-03-21T18:29:18.869553204Z"} +2026/03/21 18:29:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":566,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:29:18.881725668Z"} +2026/03/21 18:29:23 [transform_engine] {"stage_name":"transform_engine","events_processed":47,"events_dropped":0,"avg_latency_ms":1100.9776627671836,"throughput_eps":0,"last_update":"2026-03-21T18:29:22.799124654Z"} +2026/03/21 18:29:23 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":12.725774124625515,"throughput_eps":0,"last_update":"2026-03-21T18:29:18.965849501Z"} +2026/03/21 18:29:23 ───────────────────────────────────────────────── +2026/03/21 18:29:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:29:28 [log_collector] {"stage_name":"log_collector","events_processed":2440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":488,"last_update":"2026-03-21T18:29:28.87005335Z"} +2026/03/21 18:29:28 [metric_collector] {"stage_name":"metric_collector","events_processed":1414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":282.8,"last_update":"2026-03-21T18:29:23.870061014Z"} +2026/03/21 18:29:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:29:23.87750966Z"} +2026/03/21 18:29:28 [transform_engine] {"stage_name":"transform_engine","events_processed":47,"events_dropped":0,"avg_latency_ms":1100.9776627671836,"throughput_eps":0,"last_update":"2026-03-21T18:29:23.965163495Z"} +2026/03/21 18:29:28 [detection_layer] {"stage_name":"detection_layer","events_processed":47,"events_dropped":0,"avg_latency_ms":11.578678899700412,"throughput_eps":0,"last_update":"2026-03-21T18:29:23.96570868Z"} +2026/03/21 18:29:28 ───────────────────────────────────────────────── +2026/03/21 18:29:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:29:33 [detection_layer] {"stage_name":"detection_layer","events_processed":47,"events_dropped":0,"avg_latency_ms":11.578678899700412,"throughput_eps":0,"last_update":"2026-03-21T18:29:28.966302056Z"} +2026/03/21 18:29:33 [log_collector] {"stage_name":"log_collector","events_processed":2440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":488,"last_update":"2026-03-21T18:29:28.87005335Z"} +2026/03/21 18:29:33 [metric_collector] {"stage_name":"metric_collector","events_processed":1419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":283.8,"last_update":"2026-03-21T18:29:28.872096242Z"} +2026/03/21 18:29:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":570,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:29:28.878818107Z"} +2026/03/21 18:29:33 [transform_engine] {"stage_name":"transform_engine","events_processed":47,"events_dropped":0,"avg_latency_ms":1100.9776627671836,"throughput_eps":0,"last_update":"2026-03-21T18:29:28.965230313Z"} +2026/03/21 18:29:33 ───────────────────────────────────────────────── +2026/03/21 18:29:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:29:38 [detection_layer] {"stage_name":"detection_layer","events_processed":47,"events_dropped":0,"avg_latency_ms":11.578678899700412,"throughput_eps":0,"last_update":"2026-03-21T18:29:33.966234261Z"} +2026/03/21 18:29:38 [log_collector] {"stage_name":"log_collector","events_processed":2440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":488,"last_update":"2026-03-21T18:29:33.869465918Z"} +2026/03/21 18:29:38 [metric_collector] {"stage_name":"metric_collector","events_processed":1424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":284.8,"last_update":"2026-03-21T18:29:33.869629621Z"} +2026/03/21 18:29:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":572,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:29:33.875967039Z"} +2026/03/21 18:29:38 [transform_engine] {"stage_name":"transform_engine","events_processed":47,"events_dropped":0,"avg_latency_ms":1100.9776627671836,"throughput_eps":0,"last_update":"2026-03-21T18:29:33.965088225Z"} +2026/03/21 18:29:38 ───────────────────────────────────────────────── +2026/03/21 18:29:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:29:43 [log_collector] {"stage_name":"log_collector","events_processed":2440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":488,"last_update":"2026-03-21T18:29:38.869806998Z"} +2026/03/21 18:29:43 [metric_collector] {"stage_name":"metric_collector","events_processed":1429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":285.8,"last_update":"2026-03-21T18:29:38.869688711Z"} +2026/03/21 18:29:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:29:38.879651564Z"} +2026/03/21 18:29:43 [transform_engine] {"stage_name":"transform_engine","events_processed":47,"events_dropped":0,"avg_latency_ms":1100.9776627671836,"throughput_eps":0,"last_update":"2026-03-21T18:29:38.965790568Z"} +2026/03/21 18:29:43 [detection_layer] {"stage_name":"detection_layer","events_processed":47,"events_dropped":0,"avg_latency_ms":11.578678899700412,"throughput_eps":0,"last_update":"2026-03-21T18:29:38.965806659Z"} +2026/03/21 18:29:43 ───────────────────────────────────────────────── +2026/03/21 18:29:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:29:48 [transform_engine] {"stage_name":"transform_engine","events_processed":47,"events_dropped":0,"avg_latency_ms":1100.9776627671836,"throughput_eps":0,"last_update":"2026-03-21T18:29:43.965931889Z"} +2026/03/21 18:29:48 [detection_layer] {"stage_name":"detection_layer","events_processed":47,"events_dropped":0,"avg_latency_ms":11.578678899700412,"throughput_eps":0,"last_update":"2026-03-21T18:29:43.965972176Z"} +2026/03/21 18:29:48 [log_collector] {"stage_name":"log_collector","events_processed":2440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":488,"last_update":"2026-03-21T18:29:43.869928331Z"} +2026/03/21 18:29:48 [metric_collector] {"stage_name":"metric_collector","events_processed":1434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":286.8,"last_update":"2026-03-21T18:29:43.870393994Z"} +2026/03/21 18:29:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":576,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:29:43.87676189Z"} +2026/03/21 18:29:48 ───────────────────────────────────────────────── +2026/03/21 18:29:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:29:53 [detection_layer] {"stage_name":"detection_layer","events_processed":47,"events_dropped":0,"avg_latency_ms":11.578678899700412,"throughput_eps":0,"last_update":"2026-03-21T18:29:48.966216097Z"} +2026/03/21 18:29:53 [log_collector] {"stage_name":"log_collector","events_processed":2440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":488,"last_update":"2026-03-21T18:29:48.869399242Z"} +2026/03/21 18:29:53 [metric_collector] {"stage_name":"metric_collector","events_processed":1439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":287.8,"last_update":"2026-03-21T18:29:48.86967514Z"} +2026/03/21 18:29:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:29:48.877962542Z"} +2026/03/21 18:29:53 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":1164.626333013747,"throughput_eps":0,"last_update":"2026-03-21T18:29:50.384317497Z"} +2026/03/21 18:29:53 ───────────────────────────────────────────────── +2026/03/21 18:29:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:29:58 [metric_collector] {"stage_name":"metric_collector","events_processed":1444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":288.8,"last_update":"2026-03-21T18:29:53.870280906Z"} +2026/03/21 18:29:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":580,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:29:53.876860669Z"} +2026/03/21 18:29:58 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":1164.626333013747,"throughput_eps":0,"last_update":"2026-03-21T18:29:53.96607343Z"} +2026/03/21 18:29:58 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":10.95402391976033,"throughput_eps":0,"last_update":"2026-03-21T18:29:53.966061166Z"} +2026/03/21 18:29:58 [log_collector] {"stage_name":"log_collector","events_processed":2569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":513.8,"last_update":"2026-03-21T18:29:58.869608155Z"} +2026/03/21 18:29:58 ───────────────────────────────────────────────── +2026/03/21 18:30:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:30:03 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":10.95402391976033,"throughput_eps":0,"last_update":"2026-03-21T18:29:58.965939051Z"} +2026/03/21 18:30:03 [log_collector] {"stage_name":"log_collector","events_processed":2569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":513.8,"last_update":"2026-03-21T18:29:58.869608155Z"} +2026/03/21 18:30:03 [metric_collector] {"stage_name":"metric_collector","events_processed":1449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":289.8,"last_update":"2026-03-21T18:29:58.869878292Z"} +2026/03/21 18:30:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:29:58.876787526Z"} +2026/03/21 18:30:03 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":1164.626333013747,"throughput_eps":0,"last_update":"2026-03-21T18:29:58.965983166Z"} +2026/03/21 18:30:03 ───────────────────────────────────────────────── +2026/03/21 18:30:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:30:08 [log_collector] {"stage_name":"log_collector","events_processed":2757,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":551.4,"last_update":"2026-03-21T18:30:03.86970298Z"} +2026/03/21 18:30:08 [metric_collector] {"stage_name":"metric_collector","events_processed":1454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":290.8,"last_update":"2026-03-21T18:30:03.870018515Z"} +2026/03/21 18:30:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:30:03.881391698Z"} +2026/03/21 18:30:08 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":1164.626333013747,"throughput_eps":0,"last_update":"2026-03-21T18:30:03.965447192Z"} +2026/03/21 18:30:08 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":10.95402391976033,"throughput_eps":0,"last_update":"2026-03-21T18:30:03.965475276Z"} +2026/03/21 18:30:08 ───────────────────────────────────────────────── +2026/03/21 18:30:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:30:13 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":10.95402391976033,"throughput_eps":0,"last_update":"2026-03-21T18:30:08.965847693Z"} +2026/03/21 18:30:13 [log_collector] {"stage_name":"log_collector","events_processed":2798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":559.6,"last_update":"2026-03-21T18:30:13.869450547Z"} +2026/03/21 18:30:13 [metric_collector] {"stage_name":"metric_collector","events_processed":1459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":291.8,"last_update":"2026-03-21T18:30:08.870561027Z"} +2026/03/21 18:30:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":586,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:30:08.879644816Z"} +2026/03/21 18:30:13 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":1164.626333013747,"throughput_eps":0,"last_update":"2026-03-21T18:30:08.96586675Z"} +2026/03/21 18:30:13 ───────────────────────────────────────────────── +2026/03/21 18:30:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:30:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":588,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:30:13.878210084Z"} +2026/03/21 18:30:18 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":1164.626333013747,"throughput_eps":0,"last_update":"2026-03-21T18:30:13.96541905Z"} +2026/03/21 18:30:18 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":10.95402391976033,"throughput_eps":0,"last_update":"2026-03-21T18:30:13.965545382Z"} +2026/03/21 18:30:18 [log_collector] {"stage_name":"log_collector","events_processed":2798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":559.6,"last_update":"2026-03-21T18:30:18.870204451Z"} +2026/03/21 18:30:18 [metric_collector] {"stage_name":"metric_collector","events_processed":1464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":292.8,"last_update":"2026-03-21T18:30:13.869864269Z"} +2026/03/21 18:30:18 ───────────────────────────────────────────────── +2026/03/21 18:30:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:30:23 [log_collector] {"stage_name":"log_collector","events_processed":2798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":559.6,"last_update":"2026-03-21T18:30:18.870204451Z"} +2026/03/21 18:30:23 [metric_collector] {"stage_name":"metric_collector","events_processed":1469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":293.8,"last_update":"2026-03-21T18:30:18.870846431Z"} +2026/03/21 18:30:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:30:18.879630455Z"} +2026/03/21 18:30:23 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":953.7494946109975,"throughput_eps":0,"last_update":"2026-03-21T18:30:19.076072169Z"} +2026/03/21 18:30:23 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":10.95402391976033,"throughput_eps":0,"last_update":"2026-03-21T18:30:18.96657804Z"} +2026/03/21 18:30:23 ───────────────────────────────────────────────── +2026/03/21 18:30:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:30:28 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":11.537240335808264,"throughput_eps":0,"last_update":"2026-03-21T18:30:23.965741149Z"} +2026/03/21 18:30:28 [log_collector] {"stage_name":"log_collector","events_processed":2798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":559.6,"last_update":"2026-03-21T18:30:28.869878551Z"} +2026/03/21 18:30:28 [metric_collector] {"stage_name":"metric_collector","events_processed":1474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":294.8,"last_update":"2026-03-21T18:30:23.869835807Z"} +2026/03/21 18:30:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":592,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:30:23.878472259Z"} +2026/03/21 18:30:28 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":953.7494946109975,"throughput_eps":0,"last_update":"2026-03-21T18:30:23.965677847Z"} +2026/03/21 18:30:28 ───────────────────────────────────────────────── +2026/03/21 18:30:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:30:33 [metric_collector] {"stage_name":"metric_collector","events_processed":1479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":295.8,"last_update":"2026-03-21T18:30:28.870274249Z"} +2026/03/21 18:30:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:30:28.879587608Z"} +2026/03/21 18:30:33 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":953.7494946109975,"throughput_eps":0,"last_update":"2026-03-21T18:30:28.965781379Z"} +2026/03/21 18:30:33 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":11.537240335808264,"throughput_eps":0,"last_update":"2026-03-21T18:30:28.965820354Z"} +2026/03/21 18:30:33 [log_collector] {"stage_name":"log_collector","events_processed":2798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":559.6,"last_update":"2026-03-21T18:30:28.869878551Z"} +2026/03/21 18:30:33 ───────────────────────────────────────────────── +2026/03/21 18:30:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:30:38 [log_collector] {"stage_name":"log_collector","events_processed":2798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":559.6,"last_update":"2026-03-21T18:30:33.870208149Z"} +2026/03/21 18:30:38 [metric_collector] {"stage_name":"metric_collector","events_processed":1484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":296.8,"last_update":"2026-03-21T18:30:33.870613184Z"} +2026/03/21 18:30:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:30:33.87909507Z"} +2026/03/21 18:30:38 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":953.7494946109975,"throughput_eps":0,"last_update":"2026-03-21T18:30:33.965442666Z"} +2026/03/21 18:30:38 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":11.537240335808264,"throughput_eps":0,"last_update":"2026-03-21T18:30:33.965331443Z"} +2026/03/21 18:30:38 ───────────────────────────────────────────────── +2026/03/21 18:30:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:30:43 [log_collector] {"stage_name":"log_collector","events_processed":2798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":559.6,"last_update":"2026-03-21T18:30:43.870075603Z"} +2026/03/21 18:30:43 [metric_collector] {"stage_name":"metric_collector","events_processed":1489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":297.8,"last_update":"2026-03-21T18:30:38.869951855Z"} +2026/03/21 18:30:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:30:38.877820127Z"} +2026/03/21 18:30:43 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":953.7494946109975,"throughput_eps":0,"last_update":"2026-03-21T18:30:38.966169656Z"} +2026/03/21 18:30:43 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":11.537240335808264,"throughput_eps":0,"last_update":"2026-03-21T18:30:38.966238458Z"} +2026/03/21 18:30:43 ───────────────────────────────────────────────── +2026/03/21 18:30:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:30:48 [log_collector] {"stage_name":"log_collector","events_processed":2798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":559.6,"last_update":"2026-03-21T18:30:43.870075603Z"} +2026/03/21 18:30:48 [metric_collector] {"stage_name":"metric_collector","events_processed":1494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":298.8,"last_update":"2026-03-21T18:30:43.870498863Z"} +2026/03/21 18:30:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:30:43.879690438Z"} +2026/03/21 18:30:48 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":953.7494946109975,"throughput_eps":0,"last_update":"2026-03-21T18:30:43.965948814Z"} +2026/03/21 18:30:48 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":11.537240335808264,"throughput_eps":0,"last_update":"2026-03-21T18:30:43.965879972Z"} +2026/03/21 18:30:48 ───────────────────────────────────────────────── +2026/03/21 18:30:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:30:53 [log_collector] {"stage_name":"log_collector","events_processed":2798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":559.6,"last_update":"2026-03-21T18:30:53.870130832Z"} +2026/03/21 18:30:53 [metric_collector] {"stage_name":"metric_collector","events_processed":1499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":299.8,"last_update":"2026-03-21T18:30:48.870118175Z"} +2026/03/21 18:30:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":602,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:30:48.880248238Z"} +2026/03/21 18:30:53 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":776.4264848887981,"throughput_eps":0,"last_update":"2026-03-21T18:30:49.032755803Z"} +2026/03/21 18:30:53 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":11.537240335808264,"throughput_eps":0,"last_update":"2026-03-21T18:30:48.966443722Z"} +2026/03/21 18:30:53 ───────────────────────────────────────────────── +Saved state: 12 clusters, 2799 messages, reason: none +2026/03/21 18:30:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:30:58 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":12.118459068646612,"throughput_eps":0,"last_update":"2026-03-21T18:30:53.966053458Z"} +2026/03/21 18:30:58 [log_collector] {"stage_name":"log_collector","events_processed":2798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":559.6,"last_update":"2026-03-21T18:30:53.870130832Z"} +2026/03/21 18:30:58 [metric_collector] {"stage_name":"metric_collector","events_processed":1504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":300.8,"last_update":"2026-03-21T18:30:53.87052111Z"} +2026/03/21 18:30:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:30:53.879853754Z"} +2026/03/21 18:30:58 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":776.4264848887981,"throughput_eps":0,"last_update":"2026-03-21T18:30:53.966065411Z"} +2026/03/21 18:30:58 ───────────────────────────────────────────────── +2026/03/21 18:31:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:31:03 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":776.4264848887981,"throughput_eps":0,"last_update":"2026-03-21T18:30:58.965883426Z"} +2026/03/21 18:31:03 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":12.118459068646612,"throughput_eps":0,"last_update":"2026-03-21T18:30:58.965870762Z"} +2026/03/21 18:31:03 [log_collector] {"stage_name":"log_collector","events_processed":2801,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":560.2,"last_update":"2026-03-21T18:31:03.869740141Z"} +2026/03/21 18:31:03 [metric_collector] {"stage_name":"metric_collector","events_processed":1509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":301.8,"last_update":"2026-03-21T18:30:58.869870978Z"} +2026/03/21 18:31:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:30:58.876641665Z"} +2026/03/21 18:31:03 ───────────────────────────────────────────────── +2026/03/21 18:31:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:31:08 [log_collector] {"stage_name":"log_collector","events_processed":2812,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":562.4,"last_update":"2026-03-21T18:31:08.869418102Z"} +2026/03/21 18:31:08 [metric_collector] {"stage_name":"metric_collector","events_processed":1514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":302.8,"last_update":"2026-03-21T18:31:03.870390958Z"} +2026/03/21 18:31:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:31:03.877521736Z"} +2026/03/21 18:31:08 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":776.4264848887981,"throughput_eps":0,"last_update":"2026-03-21T18:31:03.965694318Z"} +2026/03/21 18:31:08 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":12.118459068646612,"throughput_eps":0,"last_update":"2026-03-21T18:31:03.965681644Z"} +2026/03/21 18:31:08 ───────────────────────────────────────────────── +2026/03/21 18:31:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:31:13 [log_collector] {"stage_name":"log_collector","events_processed":2812,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":562.4,"last_update":"2026-03-21T18:31:08.869418102Z"} +2026/03/21 18:31:13 [metric_collector] {"stage_name":"metric_collector","events_processed":1519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":303.8,"last_update":"2026-03-21T18:31:08.870075912Z"} +2026/03/21 18:31:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:31:08.878509856Z"} +2026/03/21 18:31:13 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":776.4264848887981,"throughput_eps":0,"last_update":"2026-03-21T18:31:08.965800329Z"} +2026/03/21 18:31:13 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":12.118459068646612,"throughput_eps":0,"last_update":"2026-03-21T18:31:08.965793496Z"} +2026/03/21 18:31:13 ───────────────────────────────────────────────── +2026/03/21 18:31:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:31:18 [log_collector] {"stage_name":"log_collector","events_processed":2826,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":565.2,"last_update":"2026-03-21T18:31:13.869845228Z"} +2026/03/21 18:31:18 [metric_collector] {"stage_name":"metric_collector","events_processed":1524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":304.8,"last_update":"2026-03-21T18:31:13.870470986Z"} +2026/03/21 18:31:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:31:13.878227904Z"} +2026/03/21 18:31:18 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":776.4264848887981,"throughput_eps":0,"last_update":"2026-03-21T18:31:13.965731747Z"} +2026/03/21 18:31:18 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":12.118459068646612,"throughput_eps":0,"last_update":"2026-03-21T18:31:13.965598751Z"} +2026/03/21 18:31:18 ───────────────────────────────────────────────── +2026/03/21 18:31:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:31:23 [log_collector] {"stage_name":"log_collector","events_processed":2828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":565.6,"last_update":"2026-03-21T18:31:18.869416969Z"} +2026/03/21 18:31:23 [metric_collector] {"stage_name":"metric_collector","events_processed":1529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":305.8,"last_update":"2026-03-21T18:31:18.869965519Z"} +2026/03/21 18:31:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:31:18.87808999Z"} +2026/03/21 18:31:23 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":643.1351203110385,"throughput_eps":0,"last_update":"2026-03-21T18:31:19.075312804Z"} +2026/03/21 18:31:23 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":12.118459068646612,"throughput_eps":0,"last_update":"2026-03-21T18:31:18.965302825Z"} +2026/03/21 18:31:23 ───────────────────────────────────────────────── +2026/03/21 18:31:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:31:28 [log_collector] {"stage_name":"log_collector","events_processed":2828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":565.6,"last_update":"2026-03-21T18:31:23.8694082Z"} +2026/03/21 18:31:28 [metric_collector] {"stage_name":"metric_collector","events_processed":1534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":306.8,"last_update":"2026-03-21T18:31:23.869852511Z"} +2026/03/21 18:31:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:31:23.878667114Z"} +2026/03/21 18:31:28 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":643.1351203110385,"throughput_eps":0,"last_update":"2026-03-21T18:31:23.965170811Z"} +2026/03/21 18:31:28 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":12.46137225491729,"throughput_eps":0,"last_update":"2026-03-21T18:31:23.965268739Z"} +2026/03/21 18:31:28 ───────────────────────────────────────────────── +2026/03/21 18:31:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:31:33 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":643.1351203110385,"throughput_eps":0,"last_update":"2026-03-21T18:31:28.965786741Z"} +2026/03/21 18:31:33 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":12.46137225491729,"throughput_eps":0,"last_update":"2026-03-21T18:31:28.965760772Z"} +2026/03/21 18:31:33 [log_collector] {"stage_name":"log_collector","events_processed":2828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":565.6,"last_update":"2026-03-21T18:31:28.869895333Z"} +2026/03/21 18:31:33 [metric_collector] {"stage_name":"metric_collector","events_processed":1539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":307.8,"last_update":"2026-03-21T18:31:28.870465766Z"} +2026/03/21 18:31:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:31:28.878588013Z"} +2026/03/21 18:31:33 ───────────────────────────────────────────────── +2026/03/21 18:31:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:31:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":620,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:31:33.878437975Z"} +2026/03/21 18:31:38 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":643.1351203110385,"throughput_eps":0,"last_update":"2026-03-21T18:31:33.965798013Z"} +2026/03/21 18:31:38 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":12.46137225491729,"throughput_eps":0,"last_update":"2026-03-21T18:31:33.965823793Z"} +2026/03/21 18:31:38 [log_collector] {"stage_name":"log_collector","events_processed":2828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":565.6,"last_update":"2026-03-21T18:31:33.869435703Z"} +2026/03/21 18:31:38 [metric_collector] {"stage_name":"metric_collector","events_processed":1544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":308.8,"last_update":"2026-03-21T18:31:33.869977791Z"} +2026/03/21 18:31:38 ───────────────────────────────────────────────── +2026/03/21 18:31:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:31:43 [log_collector] {"stage_name":"log_collector","events_processed":2828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":565.6,"last_update":"2026-03-21T18:31:38.870289612Z"} +2026/03/21 18:31:43 [metric_collector] {"stage_name":"metric_collector","events_processed":1549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":309.8,"last_update":"2026-03-21T18:31:38.870595347Z"} +2026/03/21 18:31:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":622,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:31:38.878592965Z"} +2026/03/21 18:31:43 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":643.1351203110385,"throughput_eps":0,"last_update":"2026-03-21T18:31:38.965938295Z"} +2026/03/21 18:31:43 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":12.46137225491729,"throughput_eps":0,"last_update":"2026-03-21T18:31:38.966061471Z"} +2026/03/21 18:31:43 ───────────────────────────────────────────────── +2026/03/21 18:31:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:31:48 [log_collector] {"stage_name":"log_collector","events_processed":2828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":565.6,"last_update":"2026-03-21T18:31:43.869467498Z"} +2026/03/21 18:31:48 [metric_collector] {"stage_name":"metric_collector","events_processed":1554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":310.8,"last_update":"2026-03-21T18:31:43.869985581Z"} +2026/03/21 18:31:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:31:43.878725771Z"} +2026/03/21 18:31:48 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":643.1351203110385,"throughput_eps":0,"last_update":"2026-03-21T18:31:43.966056783Z"} +2026/03/21 18:31:48 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":12.46137225491729,"throughput_eps":0,"last_update":"2026-03-21T18:31:43.96608692Z"} +2026/03/21 18:31:48 ───────────────────────────────────────────────── +2026/03/21 18:31:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:31:53 [metric_collector] {"stage_name":"metric_collector","events_processed":1559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":311.8,"last_update":"2026-03-21T18:31:48.870375358Z"} +2026/03/21 18:31:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:31:48.878828599Z"} +2026/03/21 18:31:53 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":795.0994986488308,"throughput_eps":0,"last_update":"2026-03-21T18:31:50.368955615Z"} +2026/03/21 18:31:53 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":12.46137225491729,"throughput_eps":0,"last_update":"2026-03-21T18:31:48.966170021Z"} +2026/03/21 18:31:53 [log_collector] {"stage_name":"log_collector","events_processed":2841,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":568.2,"last_update":"2026-03-21T18:31:48.870036789Z"} +2026/03/21 18:31:53 ───────────────────────────────────────────────── +2026/03/21 18:31:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:31:58 [log_collector] {"stage_name":"log_collector","events_processed":2842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":568.4,"last_update":"2026-03-21T18:31:53.869480276Z"} +2026/03/21 18:31:58 [metric_collector] {"stage_name":"metric_collector","events_processed":1564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":312.8,"last_update":"2026-03-21T18:31:53.870161841Z"} +2026/03/21 18:31:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:31:53.878278568Z"} +2026/03/21 18:31:58 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":795.0994986488308,"throughput_eps":0,"last_update":"2026-03-21T18:31:53.965636433Z"} +2026/03/21 18:31:58 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":12.708208203933832,"throughput_eps":0,"last_update":"2026-03-21T18:31:53.965662132Z"} +2026/03/21 18:31:58 ───────────────────────────────────────────────── +2026/03/21 18:32:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:32:03 [log_collector] {"stage_name":"log_collector","events_processed":2842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":568.4,"last_update":"2026-03-21T18:31:58.869985997Z"} +2026/03/21 18:32:03 [metric_collector] {"stage_name":"metric_collector","events_processed":1569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":313.8,"last_update":"2026-03-21T18:31:58.869935952Z"} +2026/03/21 18:32:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:31:58.878593043Z"} +2026/03/21 18:32:03 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":795.0994986488308,"throughput_eps":0,"last_update":"2026-03-21T18:31:58.965865745Z"} +2026/03/21 18:32:03 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":12.708208203933832,"throughput_eps":0,"last_update":"2026-03-21T18:31:58.965761305Z"} +2026/03/21 18:32:03 ───────────────────────────────────────────────── +2026/03/21 18:32:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:32:08 [metric_collector] {"stage_name":"metric_collector","events_processed":1574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":314.8,"last_update":"2026-03-21T18:32:03.87056576Z"} +2026/03/21 18:32:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":632,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:32:03.879525221Z"} +2026/03/21 18:32:08 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":795.0994986488308,"throughput_eps":0,"last_update":"2026-03-21T18:32:03.965687525Z"} +2026/03/21 18:32:08 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":12.708208203933832,"throughput_eps":0,"last_update":"2026-03-21T18:32:03.965707624Z"} +2026/03/21 18:32:08 [log_collector] {"stage_name":"log_collector","events_processed":2842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":568.4,"last_update":"2026-03-21T18:32:03.870186814Z"} +2026/03/21 18:32:08 ───────────────────────────────────────────────── +2026/03/21 18:32:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:32:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:32:08.879033292Z"} +2026/03/21 18:32:13 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":795.0994986488308,"throughput_eps":0,"last_update":"2026-03-21T18:32:08.965221055Z"} +2026/03/21 18:32:13 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":12.708208203933832,"throughput_eps":0,"last_update":"2026-03-21T18:32:08.96533792Z"} +2026/03/21 18:32:13 [log_collector] {"stage_name":"log_collector","events_processed":2842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":568.4,"last_update":"2026-03-21T18:32:08.869470666Z"} +2026/03/21 18:32:13 [metric_collector] {"stage_name":"metric_collector","events_processed":1578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":315.6,"last_update":"2026-03-21T18:32:08.869625163Z"} +2026/03/21 18:32:13 ───────────────────────────────────────────────── +2026/03/21 18:32:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:32:18 [log_collector] {"stage_name":"log_collector","events_processed":2842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":568.4,"last_update":"2026-03-21T18:32:13.869876667Z"} +2026/03/21 18:32:18 [metric_collector] {"stage_name":"metric_collector","events_processed":1584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":316.8,"last_update":"2026-03-21T18:32:13.870554706Z"} +2026/03/21 18:32:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:32:13.878950117Z"} +2026/03/21 18:32:18 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":795.0994986488308,"throughput_eps":0,"last_update":"2026-03-21T18:32:13.965105178Z"} +2026/03/21 18:32:18 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":12.708208203933832,"throughput_eps":0,"last_update":"2026-03-21T18:32:13.966242506Z"} +2026/03/21 18:32:18 ───────────────────────────────────────────────── +2026/03/21 18:32:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:32:23 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":12.708208203933832,"throughput_eps":0,"last_update":"2026-03-21T18:32:18.965647818Z"} +2026/03/21 18:32:23 [log_collector] {"stage_name":"log_collector","events_processed":2842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":568.4,"last_update":"2026-03-21T18:32:23.870074559Z"} +2026/03/21 18:32:23 [metric_collector] {"stage_name":"metric_collector","events_processed":1589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":317.8,"last_update":"2026-03-21T18:32:18.869926013Z"} +2026/03/21 18:32:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:32:18.879455656Z"} +2026/03/21 18:32:23 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":661.5026041190647,"throughput_eps":0,"last_update":"2026-03-21T18:32:19.09278694Z"} +2026/03/21 18:32:23 ───────────────────────────────────────────────── +2026/03/21 18:32:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:32:28 [log_collector] {"stage_name":"log_collector","events_processed":2842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":568.4,"last_update":"2026-03-21T18:32:23.870074559Z"} +2026/03/21 18:32:28 [metric_collector] {"stage_name":"metric_collector","events_processed":1594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":318.8,"last_update":"2026-03-21T18:32:23.870699616Z"} +2026/03/21 18:32:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":640,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:32:23.879928824Z"} +2026/03/21 18:32:28 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":661.5026041190647,"throughput_eps":0,"last_update":"2026-03-21T18:32:23.96611233Z"} +2026/03/21 18:32:28 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":13.020875763147066,"throughput_eps":0,"last_update":"2026-03-21T18:32:23.966218383Z"} +2026/03/21 18:32:28 ───────────────────────────────────────────────── +2026/03/21 18:32:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:32:33 [log_collector] {"stage_name":"log_collector","events_processed":2842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":568.4,"last_update":"2026-03-21T18:32:28.869417562Z"} +2026/03/21 18:32:33 [metric_collector] {"stage_name":"metric_collector","events_processed":1599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":319.8,"last_update":"2026-03-21T18:32:28.869779264Z"} +2026/03/21 18:32:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:32:28.879227582Z"} +2026/03/21 18:32:33 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":661.5026041190647,"throughput_eps":0,"last_update":"2026-03-21T18:32:28.965406309Z"} +2026/03/21 18:32:33 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":13.020875763147066,"throughput_eps":0,"last_update":"2026-03-21T18:32:28.965492093Z"} +2026/03/21 18:32:33 ───────────────────────────────────────────────── +2026/03/21 18:32:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:32:38 [metric_collector] {"stage_name":"metric_collector","events_processed":1604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":320.8,"last_update":"2026-03-21T18:32:33.869800366Z"} +2026/03/21 18:32:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:32:33.878627553Z"} +2026/03/21 18:32:38 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":661.5026041190647,"throughput_eps":0,"last_update":"2026-03-21T18:32:33.965858485Z"} +2026/03/21 18:32:38 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":13.020875763147066,"throughput_eps":0,"last_update":"2026-03-21T18:32:33.965873494Z"} +2026/03/21 18:32:38 [log_collector] {"stage_name":"log_collector","events_processed":2842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":568.4,"last_update":"2026-03-21T18:32:33.869728678Z"} +2026/03/21 18:32:38 ───────────────────────────────────────────────── +2026/03/21 18:32:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:32:43 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":13.020875763147066,"throughput_eps":0,"last_update":"2026-03-21T18:32:38.965525448Z"} +2026/03/21 18:32:43 [log_collector] {"stage_name":"log_collector","events_processed":2842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":568.4,"last_update":"2026-03-21T18:32:43.870245559Z"} +2026/03/21 18:32:43 [metric_collector] {"stage_name":"metric_collector","events_processed":1609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":321.8,"last_update":"2026-03-21T18:32:38.869896089Z"} +2026/03/21 18:32:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":646,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:32:38.878196588Z"} +2026/03/21 18:32:43 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":661.5026041190647,"throughput_eps":0,"last_update":"2026-03-21T18:32:38.965413193Z"} +2026/03/21 18:32:43 ───────────────────────────────────────────────── +2026/03/21 18:32:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:32:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:32:43.87978472Z"} +2026/03/21 18:32:48 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":661.5026041190647,"throughput_eps":0,"last_update":"2026-03-21T18:32:43.966119497Z"} +2026/03/21 18:32:48 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":13.020875763147066,"throughput_eps":0,"last_update":"2026-03-21T18:32:43.966155465Z"} +2026/03/21 18:32:48 [log_collector] {"stage_name":"log_collector","events_processed":2842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":568.4,"last_update":"2026-03-21T18:32:48.869402483Z"} +2026/03/21 18:32:48 [metric_collector] {"stage_name":"metric_collector","events_processed":1614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":322.8,"last_update":"2026-03-21T18:32:43.870850868Z"} +2026/03/21 18:32:48 ───────────────────────────────────────────────── +2026/03/21 18:32:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:32:53 [metric_collector] {"stage_name":"metric_collector","events_processed":1619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":323.8,"last_update":"2026-03-21T18:32:48.869964109Z"} +2026/03/21 18:32:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":650,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:32:48.878551938Z"} +2026/03/21 18:32:53 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":542.8444138952518,"throughput_eps":0,"last_update":"2026-03-21T18:32:49.033949758Z"} +2026/03/21 18:32:53 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":13.020875763147066,"throughput_eps":0,"last_update":"2026-03-21T18:32:48.965843286Z"} +2026/03/21 18:32:53 [log_collector] {"stage_name":"log_collector","events_processed":2842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":568.4,"last_update":"2026-03-21T18:32:53.869790083Z"} +2026/03/21 18:32:53 ───────────────────────────────────────────────── +Saved state: 12 clusters, 2843 messages, reason: none +2026/03/21 18:32:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:32:58 [log_collector] {"stage_name":"log_collector","events_processed":2847,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":569.4,"last_update":"2026-03-21T18:32:58.869399691Z"} +2026/03/21 18:32:58 [metric_collector] {"stage_name":"metric_collector","events_processed":1624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":324.8,"last_update":"2026-03-21T18:32:53.870170993Z"} +2026/03/21 18:32:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:32:53.87838743Z"} +2026/03/21 18:32:58 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":542.8444138952518,"throughput_eps":0,"last_update":"2026-03-21T18:32:53.965792878Z"} +2026/03/21 18:32:58 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":13.380673810517653,"throughput_eps":0,"last_update":"2026-03-21T18:32:53.965777117Z"} +2026/03/21 18:32:58 ───────────────────────────────────────────────── +2026/03/21 18:33:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:33:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:32:58.881758444Z"} +2026/03/21 18:33:03 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":542.8444138952518,"throughput_eps":0,"last_update":"2026-03-21T18:32:58.965111348Z"} +2026/03/21 18:33:03 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":13.380673810517653,"throughput_eps":0,"last_update":"2026-03-21T18:32:58.966190586Z"} +2026/03/21 18:33:03 [log_collector] {"stage_name":"log_collector","events_processed":2847,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":569.4,"last_update":"2026-03-21T18:32:58.869399691Z"} +2026/03/21 18:33:03 [metric_collector] {"stage_name":"metric_collector","events_processed":1629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":325.8,"last_update":"2026-03-21T18:32:58.871195661Z"} +2026/03/21 18:33:03 ───────────────────────────────────────────────── +2026/03/21 18:33:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:33:08 [log_collector] {"stage_name":"log_collector","events_processed":2847,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":569.4,"last_update":"2026-03-21T18:33:08.869493491Z"} +2026/03/21 18:33:08 [metric_collector] {"stage_name":"metric_collector","events_processed":1634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":326.8,"last_update":"2026-03-21T18:33:03.869732986Z"} +2026/03/21 18:33:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:33:03.876663601Z"} +2026/03/21 18:33:08 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":542.8444138952518,"throughput_eps":0,"last_update":"2026-03-21T18:33:03.965867723Z"} +2026/03/21 18:33:08 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":13.380673810517653,"throughput_eps":0,"last_update":"2026-03-21T18:33:03.965854397Z"} +2026/03/21 18:33:08 ───────────────────────────────────────────────── +2026/03/21 18:33:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:33:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:33:08.878510913Z"} +2026/03/21 18:33:13 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":542.8444138952518,"throughput_eps":0,"last_update":"2026-03-21T18:33:08.965689155Z"} +2026/03/21 18:33:13 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":13.380673810517653,"throughput_eps":0,"last_update":"2026-03-21T18:33:08.965677864Z"} +2026/03/21 18:33:13 [log_collector] {"stage_name":"log_collector","events_processed":2847,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":569.4,"last_update":"2026-03-21T18:33:13.869506679Z"} +2026/03/21 18:33:13 [metric_collector] {"stage_name":"metric_collector","events_processed":1639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":327.8,"last_update":"2026-03-21T18:33:08.869876144Z"} +2026/03/21 18:33:13 ───────────────────────────────────────────────── +2026/03/21 18:33:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:33:18 [log_collector] {"stage_name":"log_collector","events_processed":2847,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":569.4,"last_update":"2026-03-21T18:33:13.869506679Z"} +2026/03/21 18:33:18 [metric_collector] {"stage_name":"metric_collector","events_processed":1644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":328.8,"last_update":"2026-03-21T18:33:13.869794531Z"} +2026/03/21 18:33:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":660,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:33:13.876240949Z"} +2026/03/21 18:33:18 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":542.8444138952518,"throughput_eps":0,"last_update":"2026-03-21T18:33:13.965453036Z"} +2026/03/21 18:33:18 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":13.380673810517653,"throughput_eps":0,"last_update":"2026-03-21T18:33:13.965429651Z"} +2026/03/21 18:33:18 ───────────────────────────────────────────────── +2026/03/21 18:33:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:33:23 [log_collector] {"stage_name":"log_collector","events_processed":2847,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":569.4,"last_update":"2026-03-21T18:33:18.869441145Z"} +2026/03/21 18:33:23 [metric_collector] {"stage_name":"metric_collector","events_processed":1649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":329.8,"last_update":"2026-03-21T18:33:18.869778081Z"} +2026/03/21 18:33:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":662,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:33:18.876398451Z"} +2026/03/21 18:33:23 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":455.2576205162015,"throughput_eps":0,"last_update":"2026-03-21T18:33:19.070517611Z"} +2026/03/21 18:33:23 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":13.380673810517653,"throughput_eps":0,"last_update":"2026-03-21T18:33:18.965581604Z"} +2026/03/21 18:33:23 ───────────────────────────────────────────────── +2026/03/21 18:33:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:33:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:33:23.87523829Z"} +2026/03/21 18:33:28 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":455.2576205162015,"throughput_eps":0,"last_update":"2026-03-21T18:33:23.965435425Z"} +2026/03/21 18:33:28 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":12.507947448414123,"throughput_eps":0,"last_update":"2026-03-21T18:33:23.965423442Z"} +2026/03/21 18:33:28 [log_collector] {"stage_name":"log_collector","events_processed":2847,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":569.4,"last_update":"2026-03-21T18:33:23.869530877Z"} +2026/03/21 18:33:28 [metric_collector] {"stage_name":"metric_collector","events_processed":1654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":330.8,"last_update":"2026-03-21T18:33:23.869823147Z"} +2026/03/21 18:33:28 ───────────────────────────────────────────────── +2026/03/21 18:33:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:33:33 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":12.507947448414123,"throughput_eps":0,"last_update":"2026-03-21T18:33:28.966214967Z"} +2026/03/21 18:33:33 [log_collector] {"stage_name":"log_collector","events_processed":2847,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":569.4,"last_update":"2026-03-21T18:33:28.869398123Z"} +2026/03/21 18:33:33 [metric_collector] {"stage_name":"metric_collector","events_processed":1659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":331.8,"last_update":"2026-03-21T18:33:28.869646177Z"} +2026/03/21 18:33:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:33:28.877042354Z"} +2026/03/21 18:33:33 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":455.2576205162015,"throughput_eps":0,"last_update":"2026-03-21T18:33:28.965139597Z"} +2026/03/21 18:33:33 ───────────────────────────────────────────────── +2026/03/21 18:33:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:33:38 [log_collector] {"stage_name":"log_collector","events_processed":2847,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":569.4,"last_update":"2026-03-21T18:33:33.869852349Z"} +2026/03/21 18:33:38 [metric_collector] {"stage_name":"metric_collector","events_processed":1664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":332.8,"last_update":"2026-03-21T18:33:33.869791573Z"} +2026/03/21 18:33:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":668,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:33:33.876334826Z"} +2026/03/21 18:33:38 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":455.2576205162015,"throughput_eps":0,"last_update":"2026-03-21T18:33:33.965563637Z"} +2026/03/21 18:33:38 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":12.507947448414123,"throughput_eps":0,"last_update":"2026-03-21T18:33:33.965552515Z"} +2026/03/21 18:33:38 ───────────────────────────────────────────────── +2026/03/21 18:33:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:33:43 [metric_collector] {"stage_name":"metric_collector","events_processed":1669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":333.8,"last_update":"2026-03-21T18:33:38.869637212Z"} +2026/03/21 18:33:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":670,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:33:38.876307669Z"} +2026/03/21 18:33:43 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":455.2576205162015,"throughput_eps":0,"last_update":"2026-03-21T18:33:38.965491544Z"} +2026/03/21 18:33:43 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":12.507947448414123,"throughput_eps":0,"last_update":"2026-03-21T18:33:38.965479631Z"} +2026/03/21 18:33:43 [log_collector] {"stage_name":"log_collector","events_processed":2850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":570,"last_update":"2026-03-21T18:33:38.869459011Z"} +2026/03/21 18:33:43 ───────────────────────────────────────────────── +2026/03/21 18:33:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:33:48 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":12.507947448414123,"throughput_eps":0,"last_update":"2026-03-21T18:33:43.965815348Z"} +2026/03/21 18:33:48 [log_collector] {"stage_name":"log_collector","events_processed":2959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":591.8,"last_update":"2026-03-21T18:33:48.870124272Z"} +2026/03/21 18:33:48 [metric_collector] {"stage_name":"metric_collector","events_processed":1674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":334.8,"last_update":"2026-03-21T18:33:43.870023106Z"} +2026/03/21 18:33:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:33:43.878599793Z"} +2026/03/21 18:33:48 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":455.2576205162015,"throughput_eps":0,"last_update":"2026-03-21T18:33:43.965826309Z"} +2026/03/21 18:33:48 ───────────────────────────────────────────────── +2026/03/21 18:33:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:33:53 [log_collector] {"stage_name":"log_collector","events_processed":3131,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":626.2,"last_update":"2026-03-21T18:33:53.869800292Z"} +2026/03/21 18:33:53 [metric_collector] {"stage_name":"metric_collector","events_processed":1679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":335.8,"last_update":"2026-03-21T18:33:48.870407344Z"} +2026/03/21 18:33:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:33:48.877159116Z"} +2026/03/21 18:33:53 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":425.9450468129612,"throughput_eps":0,"last_update":"2026-03-21T18:33:49.273749336Z"} +2026/03/21 18:33:53 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":12.507947448414123,"throughput_eps":0,"last_update":"2026-03-21T18:33:48.966162966Z"} +2026/03/21 18:33:53 ───────────────────────────────────────────────── +Saved state: 12 clusters, 3180 messages, reason: none +2026/03/21 18:33:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:33:58 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":425.9450468129612,"throughput_eps":0,"last_update":"2026-03-21T18:33:53.965100944Z"} +2026/03/21 18:33:58 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":12.0253151587313,"throughput_eps":0,"last_update":"2026-03-21T18:33:53.965260018Z"} +2026/03/21 18:33:58 [log_collector] {"stage_name":"log_collector","events_processed":3195,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":639,"last_update":"2026-03-21T18:33:58.869470129Z"} +2026/03/21 18:33:58 [metric_collector] {"stage_name":"metric_collector","events_processed":1684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":336.8,"last_update":"2026-03-21T18:33:53.869941984Z"} +2026/03/21 18:33:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":676,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:33:53.878950829Z"} +2026/03/21 18:33:58 ───────────────────────────────────────────────── +2026/03/21 18:34:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:34:03 [log_collector] {"stage_name":"log_collector","events_processed":3195,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":639,"last_update":"2026-03-21T18:34:03.869895992Z"} +2026/03/21 18:34:03 [metric_collector] {"stage_name":"metric_collector","events_processed":1689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":337.8,"last_update":"2026-03-21T18:33:58.870336249Z"} +2026/03/21 18:34:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:33:58.878568046Z"} +2026/03/21 18:34:03 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":425.9450468129612,"throughput_eps":0,"last_update":"2026-03-21T18:33:58.965792989Z"} +2026/03/21 18:34:03 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":12.0253151587313,"throughput_eps":0,"last_update":"2026-03-21T18:33:58.965978765Z"} +2026/03/21 18:34:03 ───────────────────────────────────────────────── +2026/03/21 18:34:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:34:08 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":425.9450468129612,"throughput_eps":0,"last_update":"2026-03-21T18:34:03.965181995Z"} +2026/03/21 18:34:08 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":12.0253151587313,"throughput_eps":0,"last_update":"2026-03-21T18:34:03.966345394Z"} +2026/03/21 18:34:08 [log_collector] {"stage_name":"log_collector","events_processed":3195,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":639,"last_update":"2026-03-21T18:34:03.869895992Z"} +2026/03/21 18:34:08 [metric_collector] {"stage_name":"metric_collector","events_processed":1694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":338.8,"last_update":"2026-03-21T18:34:03.870446607Z"} +2026/03/21 18:34:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:34:03.879989195Z"} +2026/03/21 18:34:08 ───────────────────────────────────────────────── +2026/03/21 18:34:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:34:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:34:08.879677532Z"} +2026/03/21 18:34:13 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":425.9450468129612,"throughput_eps":0,"last_update":"2026-03-21T18:34:08.96584534Z"} +2026/03/21 18:34:13 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":12.0253151587313,"throughput_eps":0,"last_update":"2026-03-21T18:34:08.965873434Z"} +2026/03/21 18:34:13 [log_collector] {"stage_name":"log_collector","events_processed":3198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":639.6,"last_update":"2026-03-21T18:34:13.870389343Z"} +2026/03/21 18:34:13 [metric_collector] {"stage_name":"metric_collector","events_processed":1699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":339.8,"last_update":"2026-03-21T18:34:08.86965795Z"} +2026/03/21 18:34:13 ───────────────────────────────────────────────── +2026/03/21 18:34:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:34:18 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":12.0253151587313,"throughput_eps":0,"last_update":"2026-03-21T18:34:13.965342098Z"} +2026/03/21 18:34:18 [log_collector] {"stage_name":"log_collector","events_processed":3198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":639.6,"last_update":"2026-03-21T18:34:13.870389343Z"} +2026/03/21 18:34:18 [metric_collector] {"stage_name":"metric_collector","events_processed":1709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":341.8,"last_update":"2026-03-21T18:34:18.86978747Z"} +2026/03/21 18:34:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:34:13.877146405Z"} +2026/03/21 18:34:18 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":425.9450468129612,"throughput_eps":0,"last_update":"2026-03-21T18:34:13.965328292Z"} +2026/03/21 18:34:18 ───────────────────────────────────────────────── +2026/03/21 18:34:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:34:23 [log_collector] {"stage_name":"log_collector","events_processed":3209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":641.8,"last_update":"2026-03-21T18:34:18.869817717Z"} +2026/03/21 18:34:23 [metric_collector] {"stage_name":"metric_collector","events_processed":1714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":342.8,"last_update":"2026-03-21T18:34:23.869792947Z"} +2026/03/21 18:34:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:34:18.879143881Z"} +2026/03/21 18:34:23 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":362.97575385036896,"throughput_eps":0,"last_update":"2026-03-21T18:34:19.076430621Z"} +2026/03/21 18:34:23 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":12.0253151587313,"throughput_eps":0,"last_update":"2026-03-21T18:34:18.965496996Z"} +2026/03/21 18:34:23 ───────────────────────────────────────────────── +2026/03/21 18:34:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:34:28 [log_collector] {"stage_name":"log_collector","events_processed":3223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":644.6,"last_update":"2026-03-21T18:34:23.869923297Z"} +2026/03/21 18:34:28 [metric_collector] {"stage_name":"metric_collector","events_processed":1714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":342.8,"last_update":"2026-03-21T18:34:23.869792947Z"} +2026/03/21 18:34:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":688,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:34:23.878818997Z"} +2026/03/21 18:34:28 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":362.97575385036896,"throughput_eps":0,"last_update":"2026-03-21T18:34:23.96600724Z"} +2026/03/21 18:34:28 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":12.22677492698504,"throughput_eps":0,"last_update":"2026-03-21T18:34:23.96600195Z"} +2026/03/21 18:34:28 ───────────────────────────────────────────────── +2026/03/21 18:34:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:34:33 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":362.97575385036896,"throughput_eps":0,"last_update":"2026-03-21T18:34:28.965542164Z"} +2026/03/21 18:34:33 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":12.22677492698504,"throughput_eps":0,"last_update":"2026-03-21T18:34:28.965531072Z"} +2026/03/21 18:34:33 [log_collector] {"stage_name":"log_collector","events_processed":3225,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":645,"last_update":"2026-03-21T18:34:28.869424437Z"} +2026/03/21 18:34:33 [metric_collector] {"stage_name":"metric_collector","events_processed":1719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":343.8,"last_update":"2026-03-21T18:34:28.869876372Z"} +2026/03/21 18:34:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:34:28.879242843Z"} +2026/03/21 18:34:33 ───────────────────────────────────────────────── +2026/03/21 18:34:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:34:38 [log_collector] {"stage_name":"log_collector","events_processed":3225,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":645,"last_update":"2026-03-21T18:34:33.869655361Z"} +2026/03/21 18:34:38 [metric_collector] {"stage_name":"metric_collector","events_processed":1724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":344.8,"last_update":"2026-03-21T18:34:33.870032524Z"} +2026/03/21 18:34:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:34:33.878435299Z"} +2026/03/21 18:34:38 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":362.97575385036896,"throughput_eps":0,"last_update":"2026-03-21T18:34:33.965680723Z"} +2026/03/21 18:34:38 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":12.22677492698504,"throughput_eps":0,"last_update":"2026-03-21T18:34:33.965697916Z"} +2026/03/21 18:34:38 ───────────────────────────────────────────────── +2026/03/21 18:34:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:34:43 [log_collector] {"stage_name":"log_collector","events_processed":3225,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":645,"last_update":"2026-03-21T18:34:38.869844645Z"} +2026/03/21 18:34:43 [metric_collector] {"stage_name":"metric_collector","events_processed":1729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":345.8,"last_update":"2026-03-21T18:34:38.870052312Z"} +2026/03/21 18:34:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:34:38.878055933Z"} +2026/03/21 18:34:43 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":362.97575385036896,"throughput_eps":0,"last_update":"2026-03-21T18:34:38.965237754Z"} +2026/03/21 18:34:43 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":12.22677492698504,"throughput_eps":0,"last_update":"2026-03-21T18:34:38.965283131Z"} +2026/03/21 18:34:43 ───────────────────────────────────────────────── +2026/03/21 18:34:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:34:48 [log_collector] {"stage_name":"log_collector","events_processed":3225,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":645,"last_update":"2026-03-21T18:34:43.870072589Z"} +2026/03/21 18:34:48 [metric_collector] {"stage_name":"metric_collector","events_processed":1734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":346.8,"last_update":"2026-03-21T18:34:43.870311136Z"} +2026/03/21 18:34:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:34:43.879492823Z"} +2026/03/21 18:34:48 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":362.97575385036896,"throughput_eps":0,"last_update":"2026-03-21T18:34:43.965858822Z"} +2026/03/21 18:34:48 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":12.22677492698504,"throughput_eps":0,"last_update":"2026-03-21T18:34:43.965845386Z"} +2026/03/21 18:34:48 ───────────────────────────────────────────────── +2026/03/21 18:34:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:34:53 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":12.22677492698504,"throughput_eps":0,"last_update":"2026-03-21T18:34:48.966090521Z"} +2026/03/21 18:34:53 [log_collector] {"stage_name":"log_collector","events_processed":3225,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":645,"last_update":"2026-03-21T18:34:53.869874654Z"} +2026/03/21 18:34:53 [metric_collector] {"stage_name":"metric_collector","events_processed":1739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":347.8,"last_update":"2026-03-21T18:34:48.870751624Z"} +2026/03/21 18:34:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:34:48.878897687Z"} +2026/03/21 18:34:53 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":312.0727652802952,"throughput_eps":0,"last_update":"2026-03-21T18:34:49.074564757Z"} +2026/03/21 18:34:53 ───────────────────────────────────────────────── +2026/03/21 18:34:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:34:58 [metric_collector] {"stage_name":"metric_collector","events_processed":1744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":348.8,"last_update":"2026-03-21T18:34:53.870299478Z"} +2026/03/21 18:34:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":700,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:34:53.879541161Z"} +2026/03/21 18:34:58 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":312.0727652802952,"throughput_eps":0,"last_update":"2026-03-21T18:34:53.965753285Z"} +2026/03/21 18:34:58 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":12.857157341588035,"throughput_eps":0,"last_update":"2026-03-21T18:34:53.965741011Z"} +2026/03/21 18:34:58 [log_collector] {"stage_name":"log_collector","events_processed":3225,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":645,"last_update":"2026-03-21T18:34:58.869652849Z"} +2026/03/21 18:34:58 ───────────────────────────────────────────────── +2026/03/21 18:35:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:35:03 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":12.857157341588035,"throughput_eps":0,"last_update":"2026-03-21T18:34:58.96622116Z"} +2026/03/21 18:35:03 [log_collector] {"stage_name":"log_collector","events_processed":3225,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":645,"last_update":"2026-03-21T18:35:03.869633387Z"} +2026/03/21 18:35:03 [metric_collector] {"stage_name":"metric_collector","events_processed":1749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":349.8,"last_update":"2026-03-21T18:34:58.86992478Z"} +2026/03/21 18:35:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":702,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:34:58.878944537Z"} +2026/03/21 18:35:03 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":312.0727652802952,"throughput_eps":0,"last_update":"2026-03-21T18:34:58.965079343Z"} +2026/03/21 18:35:03 ───────────────────────────────────────────────── +2026/03/21 18:35:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:35:08 [log_collector] {"stage_name":"log_collector","events_processed":3225,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":645,"last_update":"2026-03-21T18:35:03.869633387Z"} +2026/03/21 18:35:08 [metric_collector] {"stage_name":"metric_collector","events_processed":1754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":350.8,"last_update":"2026-03-21T18:35:03.870133795Z"} +2026/03/21 18:35:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:35:03.878784084Z"} +2026/03/21 18:35:08 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":312.0727652802952,"throughput_eps":0,"last_update":"2026-03-21T18:35:03.96598361Z"} +2026/03/21 18:35:08 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":12.857157341588035,"throughput_eps":0,"last_update":"2026-03-21T18:35:03.965977419Z"} +2026/03/21 18:35:08 ───────────────────────────────────────────────── +2026/03/21 18:35:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:35:13 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":12.857157341588035,"throughput_eps":0,"last_update":"2026-03-21T18:35:08.965874764Z"} +2026/03/21 18:35:13 [log_collector] {"stage_name":"log_collector","events_processed":3225,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":645,"last_update":"2026-03-21T18:35:13.870055728Z"} +2026/03/21 18:35:13 [metric_collector] {"stage_name":"metric_collector","events_processed":1759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":351.8,"last_update":"2026-03-21T18:35:08.870044686Z"} +2026/03/21 18:35:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:35:08.878607769Z"} +2026/03/21 18:35:13 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":312.0727652802952,"throughput_eps":0,"last_update":"2026-03-21T18:35:08.965883571Z"} +2026/03/21 18:35:13 ───────────────────────────────────────────────── +2026/03/21 18:35:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:35:18 [log_collector] {"stage_name":"log_collector","events_processed":3225,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":645,"last_update":"2026-03-21T18:35:13.870055728Z"} +2026/03/21 18:35:18 [metric_collector] {"stage_name":"metric_collector","events_processed":1764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":352.8,"last_update":"2026-03-21T18:35:13.870835161Z"} +2026/03/21 18:35:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:35:13.879152513Z"} +2026/03/21 18:35:18 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":312.0727652802952,"throughput_eps":0,"last_update":"2026-03-21T18:35:13.965377933Z"} +2026/03/21 18:35:18 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":12.857157341588035,"throughput_eps":0,"last_update":"2026-03-21T18:35:13.965370538Z"} +2026/03/21 18:35:18 ───────────────────────────────────────────────── +Saved state: 12 clusters, 3226 messages, reason: none +2026/03/21 18:35:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:35:23 [log_collector] {"stage_name":"log_collector","events_processed":3225,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":645,"last_update":"2026-03-21T18:35:18.870401445Z"} +2026/03/21 18:35:23 [metric_collector] {"stage_name":"metric_collector","events_processed":1769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":353.8,"last_update":"2026-03-21T18:35:18.870722921Z"} +2026/03/21 18:35:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:35:18.87939949Z"} +2026/03/21 18:35:23 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":262.81829782423614,"throughput_eps":0,"last_update":"2026-03-21T18:35:19.031578111Z"} +2026/03/21 18:35:23 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":12.857157341588035,"throughput_eps":0,"last_update":"2026-03-21T18:35:18.965763877Z"} +2026/03/21 18:35:23 ───────────────────────────────────────────────── +2026/03/21 18:35:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:35:28 [metric_collector] {"stage_name":"metric_collector","events_processed":1774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":354.8,"last_update":"2026-03-21T18:35:23.8711125Z"} +2026/03/21 18:35:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":712,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:35:23.881075132Z"} +2026/03/21 18:35:28 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":262.81829782423614,"throughput_eps":0,"last_update":"2026-03-21T18:35:23.965358974Z"} +2026/03/21 18:35:28 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.36716027327043,"throughput_eps":0,"last_update":"2026-03-21T18:35:23.965330249Z"} +2026/03/21 18:35:28 [log_collector] {"stage_name":"log_collector","events_processed":3239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":647.8,"last_update":"2026-03-21T18:35:28.869702177Z"} +2026/03/21 18:35:28 ───────────────────────────────────────────────── +2026/03/21 18:35:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:35:33 [metric_collector] {"stage_name":"metric_collector","events_processed":1779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":355.8,"last_update":"2026-03-21T18:35:28.870255547Z"} +2026/03/21 18:35:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:35:28.878985178Z"} +2026/03/21 18:35:33 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":262.81829782423614,"throughput_eps":0,"last_update":"2026-03-21T18:35:28.965172987Z"} +2026/03/21 18:35:33 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.36716027327043,"throughput_eps":0,"last_update":"2026-03-21T18:35:28.966331215Z"} +2026/03/21 18:35:33 [log_collector] {"stage_name":"log_collector","events_processed":3239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":647.8,"last_update":"2026-03-21T18:35:28.869702177Z"} +2026/03/21 18:35:33 ───────────────────────────────────────────────── +2026/03/21 18:35:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:35:38 [log_collector] {"stage_name":"log_collector","events_processed":3239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":647.8,"last_update":"2026-03-21T18:35:33.870314948Z"} +2026/03/21 18:35:38 [metric_collector] {"stage_name":"metric_collector","events_processed":1783,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":356.6,"last_update":"2026-03-21T18:35:33.870242619Z"} +2026/03/21 18:35:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:35:33.879646211Z"} +2026/03/21 18:35:38 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":262.81829782423614,"throughput_eps":0,"last_update":"2026-03-21T18:35:33.965893815Z"} +2026/03/21 18:35:38 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.36716027327043,"throughput_eps":0,"last_update":"2026-03-21T18:35:33.966000219Z"} +2026/03/21 18:35:38 ───────────────────────────────────────────────── +2026/03/21 18:35:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:35:43 [metric_collector] {"stage_name":"metric_collector","events_processed":1788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":357.6,"last_update":"2026-03-21T18:35:38.87012637Z"} +2026/03/21 18:35:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":718,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:35:38.878738306Z"} +2026/03/21 18:35:43 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":262.81829782423614,"throughput_eps":0,"last_update":"2026-03-21T18:35:38.966019539Z"} +2026/03/21 18:35:43 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.36716027327043,"throughput_eps":0,"last_update":"2026-03-21T18:35:38.966060457Z"} +2026/03/21 18:35:43 [log_collector] {"stage_name":"log_collector","events_processed":3239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":647.8,"last_update":"2026-03-21T18:35:38.870008794Z"} +2026/03/21 18:35:43 ───────────────────────────────────────────────── +2026/03/21 18:35:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:35:48 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.36716027327043,"throughput_eps":0,"last_update":"2026-03-21T18:35:43.96589482Z"} +2026/03/21 18:35:48 [log_collector] {"stage_name":"log_collector","events_processed":3239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":647.8,"last_update":"2026-03-21T18:35:48.86990435Z"} +2026/03/21 18:35:48 [metric_collector] {"stage_name":"metric_collector","events_processed":1794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":358.8,"last_update":"2026-03-21T18:35:43.870033383Z"} +2026/03/21 18:35:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:35:43.878543823Z"} +2026/03/21 18:35:48 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":262.81829782423614,"throughput_eps":0,"last_update":"2026-03-21T18:35:43.965871726Z"} +2026/03/21 18:35:48 ───────────────────────────────────────────────── +2026/03/21 18:35:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:35:53 [metric_collector] {"stage_name":"metric_collector","events_processed":1799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":359.8,"last_update":"2026-03-21T18:35:48.870451578Z"} +2026/03/21 18:35:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":722,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:35:48.878851118Z"} +2026/03/21 18:35:53 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":232.7358862593889,"throughput_eps":0,"last_update":"2026-03-21T18:35:49.078614006Z"} +2026/03/21 18:35:53 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.36716027327043,"throughput_eps":0,"last_update":"2026-03-21T18:35:48.96623647Z"} +2026/03/21 18:35:53 [log_collector] {"stage_name":"log_collector","events_processed":3239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":647.8,"last_update":"2026-03-21T18:35:48.86990435Z"} +2026/03/21 18:35:53 ───────────────────────────────────────────────── +2026/03/21 18:35:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:35:58 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":232.7358862593889,"throughput_eps":0,"last_update":"2026-03-21T18:35:53.965594214Z"} +2026/03/21 18:35:58 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":13.903322018616345,"throughput_eps":0,"last_update":"2026-03-21T18:35:53.965687183Z"} +2026/03/21 18:35:58 [log_collector] {"stage_name":"log_collector","events_processed":3239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":647.8,"last_update":"2026-03-21T18:35:58.869833397Z"} +2026/03/21 18:35:58 [metric_collector] {"stage_name":"metric_collector","events_processed":1804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":360.8,"last_update":"2026-03-21T18:35:53.869789844Z"} +2026/03/21 18:35:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:35:53.878261803Z"} +2026/03/21 18:35:58 ───────────────────────────────────────────────── +2026/03/21 18:36:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:36:03 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":232.7358862593889,"throughput_eps":0,"last_update":"2026-03-21T18:35:58.966138084Z"} +2026/03/21 18:36:03 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":13.903322018616345,"throughput_eps":0,"last_update":"2026-03-21T18:35:58.966027573Z"} +2026/03/21 18:36:03 [log_collector] {"stage_name":"log_collector","events_processed":3239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":647.8,"last_update":"2026-03-21T18:35:58.869833397Z"} +2026/03/21 18:36:03 [metric_collector] {"stage_name":"metric_collector","events_processed":1809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":361.8,"last_update":"2026-03-21T18:35:58.870523418Z"} +2026/03/21 18:36:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:35:58.878752902Z"} +2026/03/21 18:36:03 ───────────────────────────────────────────────── +2026/03/21 18:36:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:36:08 [metric_collector] {"stage_name":"metric_collector","events_processed":1814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":362.8,"last_update":"2026-03-21T18:36:03.870647813Z"} +2026/03/21 18:36:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":728,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:36:03.878873058Z"} +2026/03/21 18:36:08 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":232.7358862593889,"throughput_eps":0,"last_update":"2026-03-21T18:36:03.966204709Z"} +2026/03/21 18:36:08 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":13.903322018616345,"throughput_eps":0,"last_update":"2026-03-21T18:36:03.966147579Z"} +2026/03/21 18:36:08 [log_collector] {"stage_name":"log_collector","events_processed":3239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":647.8,"last_update":"2026-03-21T18:36:03.870205135Z"} +2026/03/21 18:36:08 ───────────────────────────────────────────────── +2026/03/21 18:36:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:36:13 [log_collector] {"stage_name":"log_collector","events_processed":3239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":647.8,"last_update":"2026-03-21T18:36:13.870112328Z"} +2026/03/21 18:36:13 [metric_collector] {"stage_name":"metric_collector","events_processed":1819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":363.8,"last_update":"2026-03-21T18:36:08.870929094Z"} +2026/03/21 18:36:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":730,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:36:08.879232359Z"} +2026/03/21 18:36:13 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":232.7358862593889,"throughput_eps":0,"last_update":"2026-03-21T18:36:08.965617406Z"} +2026/03/21 18:36:13 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":13.903322018616345,"throughput_eps":0,"last_update":"2026-03-21T18:36:08.965589643Z"} +2026/03/21 18:36:13 ───────────────────────────────────────────────── +2026/03/21 18:36:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:36:18 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":232.7358862593889,"throughput_eps":0,"last_update":"2026-03-21T18:36:13.965635219Z"} +2026/03/21 18:36:18 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":13.903322018616345,"throughput_eps":0,"last_update":"2026-03-21T18:36:13.965615Z"} +2026/03/21 18:36:18 [log_collector] {"stage_name":"log_collector","events_processed":3239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":647.8,"last_update":"2026-03-21T18:36:13.870112328Z"} +2026/03/21 18:36:18 [metric_collector] {"stage_name":"metric_collector","events_processed":1824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":364.8,"last_update":"2026-03-21T18:36:13.870728008Z"} +2026/03/21 18:36:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:36:13.879235384Z"} +2026/03/21 18:36:18 ───────────────────────────────────────────────── +2026/03/21 18:36:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:36:23 [log_collector] {"stage_name":"log_collector","events_processed":3239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":647.8,"last_update":"2026-03-21T18:36:18.869910976Z"} +2026/03/21 18:36:23 [metric_collector] {"stage_name":"metric_collector","events_processed":1828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":365.6,"last_update":"2026-03-21T18:36:18.870009014Z"} +2026/03/21 18:36:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:36:18.879299659Z"} +2026/03/21 18:36:23 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":199.73605840751114,"throughput_eps":0,"last_update":"2026-03-21T18:36:19.033627219Z"} +2026/03/21 18:36:23 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":13.903322018616345,"throughput_eps":0,"last_update":"2026-03-21T18:36:18.965765222Z"} +2026/03/21 18:36:23 ───────────────────────────────────────────────── +2026/03/21 18:36:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:36:28 [metric_collector] {"stage_name":"metric_collector","events_processed":1834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":366.8,"last_update":"2026-03-21T18:36:23.869937425Z"} +2026/03/21 18:36:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":736,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:36:23.879055902Z"} +2026/03/21 18:36:28 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":199.73605840751114,"throughput_eps":0,"last_update":"2026-03-21T18:36:23.965173296Z"} +2026/03/21 18:36:28 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.350199814893077,"throughput_eps":0,"last_update":"2026-03-21T18:36:23.966310665Z"} +2026/03/21 18:36:28 [log_collector] {"stage_name":"log_collector","events_processed":3239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":647.8,"last_update":"2026-03-21T18:36:23.86977255Z"} +2026/03/21 18:36:28 ───────────────────────────────────────────────── +Saved state: 12 clusters, 3240 messages, reason: none +2026/03/21 18:36:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:36:33 [log_collector] {"stage_name":"log_collector","events_processed":3239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":647.8,"last_update":"2026-03-21T18:36:28.869960557Z"} +2026/03/21 18:36:33 [metric_collector] {"stage_name":"metric_collector","events_processed":1844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":368.8,"last_update":"2026-03-21T18:36:33.872072063Z"} +2026/03/21 18:36:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":738,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:36:28.879050368Z"} +2026/03/21 18:36:33 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":199.73605840751114,"throughput_eps":0,"last_update":"2026-03-21T18:36:28.965155951Z"} +2026/03/21 18:36:33 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.350199814893077,"throughput_eps":0,"last_update":"2026-03-21T18:36:28.966250157Z"} +2026/03/21 18:36:33 ───────────────────────────────────────────────── +2026/03/21 18:36:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:36:38 [log_collector] {"stage_name":"log_collector","events_processed":3244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":648.8,"last_update":"2026-03-21T18:36:33.872082934Z"} +2026/03/21 18:36:38 [metric_collector] {"stage_name":"metric_collector","events_processed":1844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":368.8,"last_update":"2026-03-21T18:36:33.872072063Z"} +2026/03/21 18:36:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":740,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:36:33.879375122Z"} +2026/03/21 18:36:38 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":199.73605840751114,"throughput_eps":0,"last_update":"2026-03-21T18:36:33.96582757Z"} +2026/03/21 18:36:38 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.350199814893077,"throughput_eps":0,"last_update":"2026-03-21T18:36:33.965816137Z"} +2026/03/21 18:36:38 ───────────────────────────────────────────────── +2026/03/21 18:36:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:36:43 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.350199814893077,"throughput_eps":0,"last_update":"2026-03-21T18:36:38.965339893Z"} +2026/03/21 18:36:43 [log_collector] {"stage_name":"log_collector","events_processed":3244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":648.8,"last_update":"2026-03-21T18:36:38.869614324Z"} +2026/03/21 18:36:43 [metric_collector] {"stage_name":"metric_collector","events_processed":1849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":369.8,"last_update":"2026-03-21T18:36:38.869882377Z"} +2026/03/21 18:36:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:36:38.877142213Z"} +2026/03/21 18:36:43 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":199.73605840751114,"throughput_eps":0,"last_update":"2026-03-21T18:36:38.96535919Z"} +2026/03/21 18:36:43 ───────────────────────────────────────────────── +2026/03/21 18:36:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:36:48 [metric_collector] {"stage_name":"metric_collector","events_processed":1854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":370.8,"last_update":"2026-03-21T18:36:43.869657771Z"} +2026/03/21 18:36:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:36:43.878749816Z"} +2026/03/21 18:36:48 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":199.73605840751114,"throughput_eps":0,"last_update":"2026-03-21T18:36:43.965114696Z"} +2026/03/21 18:36:48 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.350199814893077,"throughput_eps":0,"last_update":"2026-03-21T18:36:43.96622374Z"} +2026/03/21 18:36:48 [log_collector] {"stage_name":"log_collector","events_processed":3244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":648.8,"last_update":"2026-03-21T18:36:43.869405376Z"} +2026/03/21 18:36:48 ───────────────────────────────────────────────── +2026/03/21 18:36:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:36:53 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":199.73605840751114,"throughput_eps":0,"last_update":"2026-03-21T18:36:43.965114696Z"} +2026/03/21 18:36:53 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.350199814893077,"throughput_eps":0,"last_update":"2026-03-21T18:36:48.965297896Z"} +2026/03/21 18:36:53 [log_collector] {"stage_name":"log_collector","events_processed":3244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":648.8,"last_update":"2026-03-21T18:36:48.869690051Z"} +2026/03/21 18:36:53 [metric_collector] {"stage_name":"metric_collector","events_processed":1859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":371.8,"last_update":"2026-03-21T18:36:48.869978074Z"} +2026/03/21 18:36:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:36:48.878069162Z"} +2026/03/21 18:36:53 ───────────────────────────────────────────────── +2026/03/21 18:36:55 [ANOMALY] time=2026-03-21T18:36:55Z score=0.9228 method=SEAD details=MAD!:w=0.25,s=0.92 RRCF-fast!:w=0.19,s=0.93 RRCF-mid!:w=0.18,s=0.95 RRCF-slow!:w=0.18,s=0.95 COPOD!:w=0.21,s=0.87 +2026/03/21 18:36:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:36:58 [metric_collector] {"stage_name":"metric_collector","events_processed":1864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":372.8,"last_update":"2026-03-21T18:36:53.869619902Z"} +2026/03/21 18:36:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:36:53.875934477Z"} +2026/03/21 18:36:58 [transform_engine] {"stage_name":"transform_engine","events_processed":62,"events_dropped":0,"avg_latency_ms":1410.6314993260091,"throughput_eps":0,"last_update":"2026-03-21T18:36:55.219533301Z"} +2026/03/21 18:36:58 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.350199814893077,"throughput_eps":0,"last_update":"2026-03-21T18:36:53.96605431Z"} +2026/03/21 18:36:58 [log_collector] {"stage_name":"log_collector","events_processed":3244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":648.8,"last_update":"2026-03-21T18:36:53.869459535Z"} +2026/03/21 18:36:58 ───────────────────────────────────────────────── +2026/03/21 18:37:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:37:03 [metric_collector] {"stage_name":"metric_collector","events_processed":1869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":373.8,"last_update":"2026-03-21T18:36:58.870079894Z"} +2026/03/21 18:37:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":750,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:36:58.875693116Z"} +2026/03/21 18:37:03 [transform_engine] {"stage_name":"transform_engine","events_processed":62,"events_dropped":0,"avg_latency_ms":1410.6314993260091,"throughput_eps":0,"last_update":"2026-03-21T18:36:58.965814781Z"} +2026/03/21 18:37:03 [detection_layer] {"stage_name":"detection_layer","events_processed":62,"events_dropped":0,"avg_latency_ms":13.150747851914463,"throughput_eps":0,"last_update":"2026-03-21T18:36:58.965846904Z"} +2026/03/21 18:37:03 [log_collector] {"stage_name":"log_collector","events_processed":3244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":648.8,"last_update":"2026-03-21T18:36:58.869814034Z"} +2026/03/21 18:37:03 ───────────────────────────────────────────────── +2026/03/21 18:37:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:37:08 [log_collector] {"stage_name":"log_collector","events_processed":3244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":648.8,"last_update":"2026-03-21T18:37:03.869901919Z"} +2026/03/21 18:37:08 [metric_collector] {"stage_name":"metric_collector","events_processed":1879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":375.8,"last_update":"2026-03-21T18:37:08.870213718Z"} +2026/03/21 18:37:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":752,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:37:03.876237143Z"} +2026/03/21 18:37:08 [transform_engine] {"stage_name":"transform_engine","events_processed":62,"events_dropped":0,"avg_latency_ms":1410.6314993260091,"throughput_eps":0,"last_update":"2026-03-21T18:37:03.965542988Z"} +2026/03/21 18:37:08 [detection_layer] {"stage_name":"detection_layer","events_processed":62,"events_dropped":0,"avg_latency_ms":13.150747851914463,"throughput_eps":0,"last_update":"2026-03-21T18:37:03.965589776Z"} +2026/03/21 18:37:08 ───────────────────────────────────────────────── +2026/03/21 18:37:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:37:13 [log_collector] {"stage_name":"log_collector","events_processed":3244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":648.8,"last_update":"2026-03-21T18:37:08.870312908Z"} +2026/03/21 18:37:13 [metric_collector] {"stage_name":"metric_collector","events_processed":1879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":375.8,"last_update":"2026-03-21T18:37:08.870213718Z"} +2026/03/21 18:37:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:37:08.877025976Z"} +2026/03/21 18:37:13 [transform_engine] {"stage_name":"transform_engine","events_processed":62,"events_dropped":0,"avg_latency_ms":1410.6314993260091,"throughput_eps":0,"last_update":"2026-03-21T18:37:08.965144375Z"} +2026/03/21 18:37:13 [detection_layer] {"stage_name":"detection_layer","events_processed":62,"events_dropped":0,"avg_latency_ms":13.150747851914463,"throughput_eps":0,"last_update":"2026-03-21T18:37:08.966247969Z"} +2026/03/21 18:37:13 ───────────────────────────────────────────────── +2026/03/21 18:37:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:37:18 [log_collector] {"stage_name":"log_collector","events_processed":3253,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":650.6,"last_update":"2026-03-21T18:37:13.869414634Z"} +2026/03/21 18:37:18 [metric_collector] {"stage_name":"metric_collector","events_processed":1884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":376.8,"last_update":"2026-03-21T18:37:13.869795353Z"} +2026/03/21 18:37:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:37:13.87904969Z"} +2026/03/21 18:37:18 [transform_engine] {"stage_name":"transform_engine","events_processed":62,"events_dropped":0,"avg_latency_ms":1410.6314993260091,"throughput_eps":0,"last_update":"2026-03-21T18:37:13.965180672Z"} +2026/03/21 18:37:18 [detection_layer] {"stage_name":"detection_layer","events_processed":62,"events_dropped":0,"avg_latency_ms":13.150747851914463,"throughput_eps":0,"last_update":"2026-03-21T18:37:13.965260816Z"} +2026/03/21 18:37:18 ───────────────────────────────────────────────── +2026/03/21 18:37:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:37:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":758,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:37:18.878817588Z"} +2026/03/21 18:37:23 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":1150.9025672608072,"throughput_eps":0,"last_update":"2026-03-21T18:37:19.078071135Z"} +2026/03/21 18:37:23 [detection_layer] {"stage_name":"detection_layer","events_processed":62,"events_dropped":0,"avg_latency_ms":13.150747851914463,"throughput_eps":0,"last_update":"2026-03-21T18:37:18.966438494Z"} +2026/03/21 18:37:23 [log_collector] {"stage_name":"log_collector","events_processed":3255,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":651,"last_update":"2026-03-21T18:37:18.870107624Z"} +2026/03/21 18:37:23 [metric_collector] {"stage_name":"metric_collector","events_processed":1889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":377.8,"last_update":"2026-03-21T18:37:18.870472483Z"} +2026/03/21 18:37:23 ───────────────────────────────────────────────── +2026/03/21 18:37:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:37:28 [log_collector] {"stage_name":"log_collector","events_processed":3426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":685.2,"last_update":"2026-03-21T18:37:23.870329117Z"} +2026/03/21 18:37:28 [metric_collector] {"stage_name":"metric_collector","events_processed":1894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":378.8,"last_update":"2026-03-21T18:37:23.870540431Z"} +2026/03/21 18:37:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:37:23.878996368Z"} +2026/03/21 18:37:28 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":1150.9025672608072,"throughput_eps":0,"last_update":"2026-03-21T18:37:23.965671233Z"} +2026/03/21 18:37:28 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":12.990655681531571,"throughput_eps":0,"last_update":"2026-03-21T18:37:23.965662556Z"} +2026/03/21 18:37:28 ───────────────────────────────────────────────── +2026/03/21 18:37:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:37:33 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":12.990655681531571,"throughput_eps":0,"last_update":"2026-03-21T18:37:28.966254033Z"} +2026/03/21 18:37:33 [log_collector] {"stage_name":"log_collector","events_processed":3604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":720.8,"last_update":"2026-03-21T18:37:33.869398426Z"} +2026/03/21 18:37:33 [metric_collector] {"stage_name":"metric_collector","events_processed":1903,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":380.6,"last_update":"2026-03-21T18:37:33.869392375Z"} +2026/03/21 18:37:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:37:28.878858418Z"} +2026/03/21 18:37:33 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":1150.9025672608072,"throughput_eps":0,"last_update":"2026-03-21T18:37:28.966203125Z"} +2026/03/21 18:37:33 ───────────────────────────────────────────────── +Saved state: 12 clusters, 3605 messages, reason: none +2026/03/21 18:37:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:37:38 [metric_collector] {"stage_name":"metric_collector","events_processed":1908,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":381.6,"last_update":"2026-03-21T18:37:38.869430823Z"} +2026/03/21 18:37:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:37:33.878251053Z"} +2026/03/21 18:37:38 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":1150.9025672608072,"throughput_eps":0,"last_update":"2026-03-21T18:37:33.96558529Z"} +2026/03/21 18:37:38 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":12.990655681531571,"throughput_eps":0,"last_update":"2026-03-21T18:37:33.965463798Z"} +2026/03/21 18:37:38 [log_collector] {"stage_name":"log_collector","events_processed":3604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":720.8,"last_update":"2026-03-21T18:37:33.869398426Z"} +2026/03/21 18:37:38 ───────────────────────────────────────────────── +2026/03/21 18:37:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:37:43 [log_collector] {"stage_name":"log_collector","events_processed":3607,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":721.4,"last_update":"2026-03-21T18:37:38.8696278Z"} +2026/03/21 18:37:43 [metric_collector] {"stage_name":"metric_collector","events_processed":1908,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":381.6,"last_update":"2026-03-21T18:37:38.869430823Z"} +2026/03/21 18:37:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":766,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:37:38.87945863Z"} +2026/03/21 18:37:43 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":1150.9025672608072,"throughput_eps":0,"last_update":"2026-03-21T18:37:38.965670889Z"} +2026/03/21 18:37:43 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":12.990655681531571,"throughput_eps":0,"last_update":"2026-03-21T18:37:38.96562999Z"} +2026/03/21 18:37:43 ───────────────────────────────────────────────── +2026/03/21 18:37:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:37:48 [metric_collector] {"stage_name":"metric_collector","events_processed":1914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":382.8,"last_update":"2026-03-21T18:37:43.869771465Z"} +2026/03/21 18:37:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":768,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:37:43.878991505Z"} +2026/03/21 18:37:48 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":1150.9025672608072,"throughput_eps":0,"last_update":"2026-03-21T18:37:43.965124763Z"} +2026/03/21 18:37:48 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":12.990655681531571,"throughput_eps":0,"last_update":"2026-03-21T18:37:43.966233005Z"} +2026/03/21 18:37:48 [log_collector] {"stage_name":"log_collector","events_processed":3607,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":721.4,"last_update":"2026-03-21T18:37:43.869432295Z"} +2026/03/21 18:37:48 ───────────────────────────────────────────────── +2026/03/21 18:37:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:37:53 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":12.990655681531571,"throughput_eps":0,"last_update":"2026-03-21T18:37:48.965984845Z"} +2026/03/21 18:37:53 [log_collector] {"stage_name":"log_collector","events_processed":3617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":723.4,"last_update":"2026-03-21T18:37:48.869982744Z"} +2026/03/21 18:37:53 [metric_collector] {"stage_name":"metric_collector","events_processed":1919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":383.8,"last_update":"2026-03-21T18:37:48.870270446Z"} +2026/03/21 18:37:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":770,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:37:48.876718998Z"} +2026/03/21 18:37:53 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":1384.9120932086457,"throughput_eps":0,"last_update":"2026-03-21T18:37:51.286979117Z"} +2026/03/21 18:37:53 ───────────────────────────────────────────────── +2026/03/21 18:37:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:37:58 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":1384.9120932086457,"throughput_eps":0,"last_update":"2026-03-21T18:37:53.966140363Z"} +2026/03/21 18:37:58 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":12.989228545225258,"throughput_eps":0,"last_update":"2026-03-21T18:37:53.966112419Z"} +2026/03/21 18:37:58 [log_collector] {"stage_name":"log_collector","events_processed":3618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":723.6,"last_update":"2026-03-21T18:37:53.869476625Z"} +2026/03/21 18:37:58 [metric_collector] {"stage_name":"metric_collector","events_processed":1924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":384.8,"last_update":"2026-03-21T18:37:53.869971273Z"} +2026/03/21 18:37:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:37:53.878943128Z"} +2026/03/21 18:37:58 ───────────────────────────────────────────────── +2026/03/21 18:38:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:38:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:37:58.879365711Z"} +2026/03/21 18:38:03 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":1384.9120932086457,"throughput_eps":0,"last_update":"2026-03-21T18:37:58.96558351Z"} +2026/03/21 18:38:03 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":12.989228545225258,"throughput_eps":0,"last_update":"2026-03-21T18:37:58.965538415Z"} +2026/03/21 18:38:03 [log_collector] {"stage_name":"log_collector","events_processed":3634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":726.8,"last_update":"2026-03-21T18:37:58.869402136Z"} +2026/03/21 18:38:03 [metric_collector] {"stage_name":"metric_collector","events_processed":1929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":385.8,"last_update":"2026-03-21T18:37:58.869896203Z"} +2026/03/21 18:38:03 ───────────────────────────────────────────────── +2026/03/21 18:38:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:38:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:38:03.879164856Z"} +2026/03/21 18:38:08 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":1384.9120932086457,"throughput_eps":0,"last_update":"2026-03-21T18:38:03.965443022Z"} +2026/03/21 18:38:08 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":12.989228545225258,"throughput_eps":0,"last_update":"2026-03-21T18:38:03.965392986Z"} +2026/03/21 18:38:08 [log_collector] {"stage_name":"log_collector","events_processed":3634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":726.8,"last_update":"2026-03-21T18:38:03.869870282Z"} +2026/03/21 18:38:08 [metric_collector] {"stage_name":"metric_collector","events_processed":1933,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":386.6,"last_update":"2026-03-21T18:38:03.869947731Z"} +2026/03/21 18:38:08 ───────────────────────────────────────────────── +2026/03/21 18:38:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:38:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:38:08.879699794Z"} +2026/03/21 18:38:13 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":1384.9120932086457,"throughput_eps":0,"last_update":"2026-03-21T18:38:08.965892255Z"} +2026/03/21 18:38:13 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":12.989228545225258,"throughput_eps":0,"last_update":"2026-03-21T18:38:08.965931932Z"} +2026/03/21 18:38:13 [log_collector] {"stage_name":"log_collector","events_processed":3634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":726.8,"last_update":"2026-03-21T18:38:08.870084055Z"} +2026/03/21 18:38:13 [metric_collector] {"stage_name":"metric_collector","events_processed":1938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":387.6,"last_update":"2026-03-21T18:38:08.870172936Z"} +2026/03/21 18:38:13 ───────────────────────────────────────────────── +2026/03/21 18:38:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:38:18 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":1384.9120932086457,"throughput_eps":0,"last_update":"2026-03-21T18:38:13.96513272Z"} +2026/03/21 18:38:18 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":12.989228545225258,"throughput_eps":0,"last_update":"2026-03-21T18:38:13.966272093Z"} +2026/03/21 18:38:18 [log_collector] {"stage_name":"log_collector","events_processed":3634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":726.8,"last_update":"2026-03-21T18:38:13.870120094Z"} +2026/03/21 18:38:18 [metric_collector] {"stage_name":"metric_collector","events_processed":1944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":388.8,"last_update":"2026-03-21T18:38:13.870399819Z"} +2026/03/21 18:38:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":780,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:38:13.880040116Z"} +2026/03/21 18:38:18 ───────────────────────────────────────────────── +2026/03/21 18:38:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:38:23 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":12.989228545225258,"throughput_eps":0,"last_update":"2026-03-21T18:38:18.96529702Z"} +2026/03/21 18:38:23 [log_collector] {"stage_name":"log_collector","events_processed":3634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":726.8,"last_update":"2026-03-21T18:38:18.869407694Z"} +2026/03/21 18:38:23 [metric_collector] {"stage_name":"metric_collector","events_processed":1949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":389.8,"last_update":"2026-03-21T18:38:18.87001616Z"} +2026/03/21 18:38:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":782,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:38:18.878077391Z"} +2026/03/21 18:38:23 [transform_engine] {"stage_name":"transform_engine","events_processed":65,"events_dropped":0,"avg_latency_ms":1569.6111153669167,"throughput_eps":0,"last_update":"2026-03-21T18:38:21.273659618Z"} +2026/03/21 18:38:23 ───────────────────────────────────────────────── +2026/03/21 18:38:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:38:28 [log_collector] {"stage_name":"log_collector","events_processed":3634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":726.8,"last_update":"2026-03-21T18:38:23.870102815Z"} +2026/03/21 18:38:28 [metric_collector] {"stage_name":"metric_collector","events_processed":1954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":390.8,"last_update":"2026-03-21T18:38:23.870574669Z"} +2026/03/21 18:38:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:38:23.879098516Z"} +2026/03/21 18:38:28 [transform_engine] {"stage_name":"transform_engine","events_processed":65,"events_dropped":0,"avg_latency_ms":1569.6111153669167,"throughput_eps":0,"last_update":"2026-03-21T18:38:23.965401991Z"} +2026/03/21 18:38:28 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":13.948971436180207,"throughput_eps":0,"last_update":"2026-03-21T18:38:23.965433741Z"} +2026/03/21 18:38:28 ───────────────────────────────────────────────── +2026/03/21 18:38:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:38:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:38:28.879088441Z"} +2026/03/21 18:38:33 [transform_engine] {"stage_name":"transform_engine","events_processed":65,"events_dropped":0,"avg_latency_ms":1569.6111153669167,"throughput_eps":0,"last_update":"2026-03-21T18:38:28.965411834Z"} +2026/03/21 18:38:33 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":13.948971436180207,"throughput_eps":0,"last_update":"2026-03-21T18:38:28.965385493Z"} +2026/03/21 18:38:33 [log_collector] {"stage_name":"log_collector","events_processed":3634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":726.8,"last_update":"2026-03-21T18:38:28.869536073Z"} +2026/03/21 18:38:33 [metric_collector] {"stage_name":"metric_collector","events_processed":1959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":391.8,"last_update":"2026-03-21T18:38:28.870289196Z"} +2026/03/21 18:38:33 ───────────────────────────────────────────────── +2026/03/21 18:38:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:38:38 [metric_collector] {"stage_name":"metric_collector","events_processed":1964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":392.8,"last_update":"2026-03-21T18:38:33.87012444Z"} +2026/03/21 18:38:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:38:33.877505118Z"} +2026/03/21 18:38:38 [transform_engine] {"stage_name":"transform_engine","events_processed":65,"events_dropped":0,"avg_latency_ms":1569.6111153669167,"throughput_eps":0,"last_update":"2026-03-21T18:38:33.965792452Z"} +2026/03/21 18:38:38 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":13.948971436180207,"throughput_eps":0,"last_update":"2026-03-21T18:38:33.965687641Z"} +2026/03/21 18:38:38 [log_collector] {"stage_name":"log_collector","events_processed":3634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":726.8,"last_update":"2026-03-21T18:38:33.869712732Z"} +2026/03/21 18:38:38 ───────────────────────────────────────────────── +2026/03/21 18:38:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:38:43 [log_collector] {"stage_name":"log_collector","events_processed":3634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":726.8,"last_update":"2026-03-21T18:38:38.870303265Z"} +2026/03/21 18:38:43 [metric_collector] {"stage_name":"metric_collector","events_processed":1969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":393.8,"last_update":"2026-03-21T18:38:38.870779778Z"} +2026/03/21 18:38:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:38:38.878848454Z"} +2026/03/21 18:38:43 [transform_engine] {"stage_name":"transform_engine","events_processed":65,"events_dropped":0,"avg_latency_ms":1569.6111153669167,"throughput_eps":0,"last_update":"2026-03-21T18:38:38.966050279Z"} +2026/03/21 18:38:43 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":13.948971436180207,"throughput_eps":0,"last_update":"2026-03-21T18:38:38.966157575Z"} +2026/03/21 18:38:43 ───────────────────────────────────────────────── +2026/03/21 18:38:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:38:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:38:43.878223084Z"} +2026/03/21 18:38:48 [transform_engine] {"stage_name":"transform_engine","events_processed":65,"events_dropped":0,"avg_latency_ms":1569.6111153669167,"throughput_eps":0,"last_update":"2026-03-21T18:38:43.965679256Z"} +2026/03/21 18:38:48 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":13.948971436180207,"throughput_eps":0,"last_update":"2026-03-21T18:38:43.965622046Z"} +2026/03/21 18:38:48 [log_collector] {"stage_name":"log_collector","events_processed":3634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":726.8,"last_update":"2026-03-21T18:38:43.869571221Z"} +2026/03/21 18:38:48 [metric_collector] {"stage_name":"metric_collector","events_processed":1974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":394.8,"last_update":"2026-03-21T18:38:43.870095726Z"} +2026/03/21 18:38:48 ───────────────────────────────────────────────── +2026/03/21 18:38:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:38:53 [log_collector] {"stage_name":"log_collector","events_processed":3634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":726.8,"last_update":"2026-03-21T18:38:48.869857382Z"} +2026/03/21 18:38:53 [metric_collector] {"stage_name":"metric_collector","events_processed":1979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":395.8,"last_update":"2026-03-21T18:38:48.870382768Z"} +2026/03/21 18:38:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:38:48.879014863Z"} +2026/03/21 18:38:53 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":1269.4729258935333,"throughput_eps":0,"last_update":"2026-03-21T18:38:49.034082796Z"} +2026/03/21 18:38:53 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":13.948971436180207,"throughput_eps":0,"last_update":"2026-03-21T18:38:48.966266003Z"} +2026/03/21 18:38:53 ───────────────────────────────────────────────── +2026/03/21 18:38:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:38:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":796,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:38:53.879194995Z"} +2026/03/21 18:38:58 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":1269.4729258935333,"throughput_eps":0,"last_update":"2026-03-21T18:38:53.965582911Z"} +2026/03/21 18:38:58 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":14.299786948944167,"throughput_eps":0,"last_update":"2026-03-21T18:38:53.965700947Z"} +2026/03/21 18:38:58 [log_collector] {"stage_name":"log_collector","events_processed":3634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":726.8,"last_update":"2026-03-21T18:38:53.869766334Z"} +2026/03/21 18:38:58 [metric_collector] {"stage_name":"metric_collector","events_processed":1984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":396.8,"last_update":"2026-03-21T18:38:53.870100233Z"} +2026/03/21 18:38:58 ───────────────────────────────────────────────── +2026/03/21 18:39:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:39:03 [log_collector] {"stage_name":"log_collector","events_processed":3634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":726.8,"last_update":"2026-03-21T18:39:03.870113055Z"} +2026/03/21 18:39:03 [metric_collector] {"stage_name":"metric_collector","events_processed":1989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":397.8,"last_update":"2026-03-21T18:38:58.870150991Z"} +2026/03/21 18:39:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:38:58.878629071Z"} +2026/03/21 18:39:03 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":1269.4729258935333,"throughput_eps":0,"last_update":"2026-03-21T18:38:58.96608336Z"} +2026/03/21 18:39:03 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":14.299786948944167,"throughput_eps":0,"last_update":"2026-03-21T18:38:58.965969282Z"} +2026/03/21 18:39:03 ───────────────────────────────────────────────── +Saved state: 12 clusters, 3635 messages, reason: none +2026/03/21 18:39:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:39:08 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":14.299786948944167,"throughput_eps":0,"last_update":"2026-03-21T18:39:03.965412722Z"} +2026/03/21 18:39:08 [log_collector] {"stage_name":"log_collector","events_processed":3637,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":727.4,"last_update":"2026-03-21T18:39:08.86972375Z"} +2026/03/21 18:39:08 [metric_collector] {"stage_name":"metric_collector","events_processed":1994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":398.8,"last_update":"2026-03-21T18:39:03.870993071Z"} +2026/03/21 18:39:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":800,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:39:03.878925565Z"} +2026/03/21 18:39:08 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":1269.4729258935333,"throughput_eps":0,"last_update":"2026-03-21T18:39:03.965110393Z"} +2026/03/21 18:39:08 ───────────────────────────────────────────────── +2026/03/21 18:39:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:39:13 [log_collector] {"stage_name":"log_collector","events_processed":3648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":729.6,"last_update":"2026-03-21T18:39:13.869406365Z"} +2026/03/21 18:39:13 [metric_collector] {"stage_name":"metric_collector","events_processed":1999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":399.8,"last_update":"2026-03-21T18:39:08.870267201Z"} +2026/03/21 18:39:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":802,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:39:08.877593714Z"} +2026/03/21 18:39:13 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":1269.4729258935333,"throughput_eps":0,"last_update":"2026-03-21T18:39:08.965804733Z"} +2026/03/21 18:39:13 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":14.299786948944167,"throughput_eps":0,"last_update":"2026-03-21T18:39:08.968393792Z"} +2026/03/21 18:39:13 ───────────────────────────────────────────────── +2026/03/21 18:39:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:39:18 [log_collector] {"stage_name":"log_collector","events_processed":3648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":729.6,"last_update":"2026-03-21T18:39:18.869634402Z"} +2026/03/21 18:39:18 [metric_collector] {"stage_name":"metric_collector","events_processed":2004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":400.8,"last_update":"2026-03-21T18:39:13.869911893Z"} +2026/03/21 18:39:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:39:13.878464997Z"} +2026/03/21 18:39:18 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":1269.4729258935333,"throughput_eps":0,"last_update":"2026-03-21T18:39:13.965840706Z"} +2026/03/21 18:39:18 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":14.299786948944167,"throughput_eps":0,"last_update":"2026-03-21T18:39:13.96573867Z"} +2026/03/21 18:39:18 ───────────────────────────────────────────────── +2026/03/21 18:39:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:39:23 [log_collector] {"stage_name":"log_collector","events_processed":3648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":729.6,"last_update":"2026-03-21T18:39:23.869448569Z"} +2026/03/21 18:39:23 [metric_collector] {"stage_name":"metric_collector","events_processed":2009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":401.8,"last_update":"2026-03-21T18:39:18.870141965Z"} +2026/03/21 18:39:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:39:18.878916381Z"} +2026/03/21 18:39:23 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":1036.7507383148268,"throughput_eps":0,"last_update":"2026-03-21T18:39:19.070991633Z"} +2026/03/21 18:39:23 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":14.299786948944167,"throughput_eps":0,"last_update":"2026-03-21T18:39:18.966248106Z"} +2026/03/21 18:39:23 ───────────────────────────────────────────────── +2026/03/21 18:39:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:39:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:39:23.878326224Z"} +2026/03/21 18:39:28 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":1036.7507383148268,"throughput_eps":0,"last_update":"2026-03-21T18:39:23.965542769Z"} +2026/03/21 18:39:28 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.581411359155336,"throughput_eps":0,"last_update":"2026-03-21T18:39:23.965534273Z"} +2026/03/21 18:39:28 [log_collector] {"stage_name":"log_collector","events_processed":3648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":729.6,"last_update":"2026-03-21T18:39:28.869761365Z"} +2026/03/21 18:39:28 [metric_collector] {"stage_name":"metric_collector","events_processed":2014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":402.8,"last_update":"2026-03-21T18:39:23.869917227Z"} +2026/03/21 18:39:28 ───────────────────────────────────────────────── +2026/03/21 18:39:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:39:33 [log_collector] {"stage_name":"log_collector","events_processed":3648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":729.6,"last_update":"2026-03-21T18:39:33.869866549Z"} +2026/03/21 18:39:33 [metric_collector] {"stage_name":"metric_collector","events_processed":2024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":404.8,"last_update":"2026-03-21T18:39:33.869859756Z"} +2026/03/21 18:39:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:39:28.880017029Z"} +2026/03/21 18:39:33 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":1036.7507383148268,"throughput_eps":0,"last_update":"2026-03-21T18:39:28.965207012Z"} +2026/03/21 18:39:33 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.581411359155336,"throughput_eps":0,"last_update":"2026-03-21T18:39:28.965268609Z"} +2026/03/21 18:39:33 ───────────────────────────────────────────────── +2026/03/21 18:39:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:39:38 [log_collector] {"stage_name":"log_collector","events_processed":3648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":729.6,"last_update":"2026-03-21T18:39:33.869866549Z"} +2026/03/21 18:39:38 [metric_collector] {"stage_name":"metric_collector","events_processed":2024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":404.8,"last_update":"2026-03-21T18:39:33.869859756Z"} +2026/03/21 18:39:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":812,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:39:33.879132437Z"} +2026/03/21 18:39:38 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":1036.7507383148268,"throughput_eps":0,"last_update":"2026-03-21T18:39:33.965323407Z"} +2026/03/21 18:39:38 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.581411359155336,"throughput_eps":0,"last_update":"2026-03-21T18:39:33.965315903Z"} +2026/03/21 18:39:38 ───────────────────────────────────────────────── +2026/03/21 18:39:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:39:43 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.581411359155336,"throughput_eps":0,"last_update":"2026-03-21T18:39:38.966020076Z"} +2026/03/21 18:39:43 [log_collector] {"stage_name":"log_collector","events_processed":3648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":729.6,"last_update":"2026-03-21T18:39:38.870067609Z"} +2026/03/21 18:39:43 [metric_collector] {"stage_name":"metric_collector","events_processed":2029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":405.8,"last_update":"2026-03-21T18:39:38.870340521Z"} +2026/03/21 18:39:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:39:38.878796729Z"} +2026/03/21 18:39:43 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":1036.7507383148268,"throughput_eps":0,"last_update":"2026-03-21T18:39:38.966027701Z"} +2026/03/21 18:39:43 ───────────────────────────────────────────────── +2026/03/21 18:39:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:39:48 [log_collector] {"stage_name":"log_collector","events_processed":3648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":729.6,"last_update":"2026-03-21T18:39:43.869609132Z"} +2026/03/21 18:39:48 [metric_collector] {"stage_name":"metric_collector","events_processed":2034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":406.8,"last_update":"2026-03-21T18:39:43.870062279Z"} +2026/03/21 18:39:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":816,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:39:43.877966019Z"} +2026/03/21 18:39:48 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":1036.7507383148268,"throughput_eps":0,"last_update":"2026-03-21T18:39:43.96517034Z"} +2026/03/21 18:39:48 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.581411359155336,"throughput_eps":0,"last_update":"2026-03-21T18:39:43.965396293Z"} +2026/03/21 18:39:48 ───────────────────────────────────────────────── +2026/03/21 18:39:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:39:53 [log_collector] {"stage_name":"log_collector","events_processed":3648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":729.6,"last_update":"2026-03-21T18:39:48.870263798Z"} +2026/03/21 18:39:53 [metric_collector] {"stage_name":"metric_collector","events_processed":2039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":407.8,"last_update":"2026-03-21T18:39:48.870768895Z"} +2026/03/21 18:39:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":818,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:39:48.879430156Z"} +2026/03/21 18:39:53 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":1036.7507383148268,"throughput_eps":0,"last_update":"2026-03-21T18:39:48.965776072Z"} +2026/03/21 18:39:53 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.581411359155336,"throughput_eps":0,"last_update":"2026-03-21T18:39:48.965893017Z"} +2026/03/21 18:39:53 ───────────────────────────────────────────────── +2026/03/21 18:39:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:39:58 [log_collector] {"stage_name":"log_collector","events_processed":3648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":729.6,"last_update":"2026-03-21T18:39:58.869497899Z"} +2026/03/21 18:39:58 [metric_collector] {"stage_name":"metric_collector","events_processed":2044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":408.8,"last_update":"2026-03-21T18:39:53.870492012Z"} +2026/03/21 18:39:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":820,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:39:53.87867191Z"} +2026/03/21 18:39:58 [transform_engine] {"stage_name":"transform_engine","events_processed":68,"events_dropped":0,"avg_latency_ms":1252.3862182518615,"throughput_eps":0,"last_update":"2026-03-21T18:39:53.965883836Z"} +2026/03/21 18:39:58 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":15.011853687324269,"throughput_eps":0,"last_update":"2026-03-21T18:39:53.965874297Z"} +2026/03/21 18:39:58 ───────────────────────────────────────────────── +2026/03/21 18:40:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:40:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:39:58.878684516Z"} +2026/03/21 18:40:03 [transform_engine] {"stage_name":"transform_engine","events_processed":68,"events_dropped":0,"avg_latency_ms":1252.3862182518615,"throughput_eps":0,"last_update":"2026-03-21T18:39:58.96596843Z"} +2026/03/21 18:40:03 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":15.011853687324269,"throughput_eps":0,"last_update":"2026-03-21T18:39:58.966007234Z"} +2026/03/21 18:40:03 [log_collector] {"stage_name":"log_collector","events_processed":3648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":729.6,"last_update":"2026-03-21T18:40:03.869467094Z"} +2026/03/21 18:40:03 [metric_collector] {"stage_name":"metric_collector","events_processed":2049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":409.8,"last_update":"2026-03-21T18:39:58.870108028Z"} +2026/03/21 18:40:03 ───────────────────────────────────────────────── +2026/03/21 18:40:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:40:08 [metric_collector] {"stage_name":"metric_collector","events_processed":2054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":410.8,"last_update":"2026-03-21T18:40:03.870172385Z"} +2026/03/21 18:40:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:40:03.883884692Z"} +2026/03/21 18:40:08 [transform_engine] {"stage_name":"transform_engine","events_processed":68,"events_dropped":0,"avg_latency_ms":1252.3862182518615,"throughput_eps":0,"last_update":"2026-03-21T18:40:03.966083605Z"} +2026/03/21 18:40:08 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":15.011853687324269,"throughput_eps":0,"last_update":"2026-03-21T18:40:03.966061132Z"} +2026/03/21 18:40:08 [log_collector] {"stage_name":"log_collector","events_processed":3648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":729.6,"last_update":"2026-03-21T18:40:03.869467094Z"} +2026/03/21 18:40:08 ───────────────────────────────────────────────── +2026/03/21 18:40:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:40:13 [log_collector] {"stage_name":"log_collector","events_processed":3648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":729.6,"last_update":"2026-03-21T18:40:08.870227091Z"} +2026/03/21 18:40:13 [metric_collector] {"stage_name":"metric_collector","events_processed":2059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":411.8,"last_update":"2026-03-21T18:40:08.870770361Z"} +2026/03/21 18:40:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":826,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:40:08.879370485Z"} +2026/03/21 18:40:13 [transform_engine] {"stage_name":"transform_engine","events_processed":68,"events_dropped":0,"avg_latency_ms":1252.3862182518615,"throughput_eps":0,"last_update":"2026-03-21T18:40:08.965575292Z"} +2026/03/21 18:40:13 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":15.011853687324269,"throughput_eps":0,"last_update":"2026-03-21T18:40:08.965613895Z"} +2026/03/21 18:40:13 ───────────────────────────────────────────────── +Saved state: 12 clusters, 3649 messages, reason: none +2026/03/21 18:40:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:40:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:40:13.879368565Z"} +2026/03/21 18:40:18 [transform_engine] {"stage_name":"transform_engine","events_processed":68,"events_dropped":0,"avg_latency_ms":1252.3862182518615,"throughput_eps":0,"last_update":"2026-03-21T18:40:13.965550248Z"} +2026/03/21 18:40:18 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":15.011853687324269,"throughput_eps":0,"last_update":"2026-03-21T18:40:13.965534607Z"} +2026/03/21 18:40:18 [log_collector] {"stage_name":"log_collector","events_processed":3653,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":730.6,"last_update":"2026-03-21T18:40:18.869957586Z"} +2026/03/21 18:40:18 [metric_collector] {"stage_name":"metric_collector","events_processed":2069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":413.8,"last_update":"2026-03-21T18:40:18.869758284Z"} +2026/03/21 18:40:18 ───────────────────────────────────────────────── +2026/03/21 18:40:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:40:23 [log_collector] {"stage_name":"log_collector","events_processed":3653,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":730.6,"last_update":"2026-03-21T18:40:18.869957586Z"} +2026/03/21 18:40:23 [metric_collector] {"stage_name":"metric_collector","events_processed":2069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":413.8,"last_update":"2026-03-21T18:40:18.869758284Z"} +2026/03/21 18:40:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":830,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:40:18.876536928Z"} +2026/03/21 18:40:23 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":1022.5273092014893,"throughput_eps":0,"last_update":"2026-03-21T18:40:19.068796133Z"} +2026/03/21 18:40:23 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":15.011853687324269,"throughput_eps":0,"last_update":"2026-03-21T18:40:18.965732143Z"} +2026/03/21 18:40:23 ───────────────────────────────────────────────── +2026/03/21 18:40:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:40:28 [log_collector] {"stage_name":"log_collector","events_processed":3653,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":730.6,"last_update":"2026-03-21T18:40:23.86941724Z"} +2026/03/21 18:40:28 [metric_collector] {"stage_name":"metric_collector","events_processed":2074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":414.8,"last_update":"2026-03-21T18:40:23.869898563Z"} +2026/03/21 18:40:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":832,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:40:28.869437263Z"} +2026/03/21 18:40:28 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":1022.5273092014893,"throughput_eps":0,"last_update":"2026-03-21T18:40:23.96511462Z"} +2026/03/21 18:40:28 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":13.668406549859416,"throughput_eps":0,"last_update":"2026-03-21T18:40:23.966201432Z"} +2026/03/21 18:40:28 ───────────────────────────────────────────────── +2026/03/21 18:40:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:40:33 [log_collector] {"stage_name":"log_collector","events_processed":3653,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":730.6,"last_update":"2026-03-21T18:40:28.869448575Z"} +2026/03/21 18:40:33 [metric_collector] {"stage_name":"metric_collector","events_processed":2079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":415.8,"last_update":"2026-03-21T18:40:28.870008037Z"} +2026/03/21 18:40:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":832,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:40:28.869437263Z"} +2026/03/21 18:40:33 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":1022.5273092014893,"throughput_eps":0,"last_update":"2026-03-21T18:40:28.965744311Z"} +2026/03/21 18:40:33 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":13.668406549859416,"throughput_eps":0,"last_update":"2026-03-21T18:40:28.965770531Z"} +2026/03/21 18:40:33 ───────────────────────────────────────────────── +2026/03/21 18:40:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:40:38 [log_collector] {"stage_name":"log_collector","events_processed":3653,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":730.6,"last_update":"2026-03-21T18:40:33.869498809Z"} +2026/03/21 18:40:38 [metric_collector] {"stage_name":"metric_collector","events_processed":2084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":416.8,"last_update":"2026-03-21T18:40:33.869663253Z"} +2026/03/21 18:40:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:40:33.875928555Z"} +2026/03/21 18:40:38 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":1022.5273092014893,"throughput_eps":0,"last_update":"2026-03-21T18:40:33.965063043Z"} +2026/03/21 18:40:38 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":13.668406549859416,"throughput_eps":0,"last_update":"2026-03-21T18:40:33.966171327Z"} +2026/03/21 18:40:38 ───────────────────────────────────────────────── +2026/03/21 18:40:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:40:43 [log_collector] {"stage_name":"log_collector","events_processed":3653,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":730.6,"last_update":"2026-03-21T18:40:38.869889628Z"} +2026/03/21 18:40:43 [metric_collector] {"stage_name":"metric_collector","events_processed":2089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":417.8,"last_update":"2026-03-21T18:40:38.870007053Z"} +2026/03/21 18:40:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:40:38.877270126Z"} +2026/03/21 18:40:43 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":1022.5273092014893,"throughput_eps":0,"last_update":"2026-03-21T18:40:38.96547261Z"} +2026/03/21 18:40:43 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":13.668406549859416,"throughput_eps":0,"last_update":"2026-03-21T18:40:38.965495163Z"} +2026/03/21 18:40:43 ───────────────────────────────────────────────── +2026/03/21 18:40:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:40:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:40:43.876640235Z"} +2026/03/21 18:40:48 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":1022.5273092014893,"throughput_eps":0,"last_update":"2026-03-21T18:40:43.965816705Z"} +2026/03/21 18:40:48 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":13.668406549859416,"throughput_eps":0,"last_update":"2026-03-21T18:40:43.965856701Z"} +2026/03/21 18:40:48 [log_collector] {"stage_name":"log_collector","events_processed":3653,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":730.6,"last_update":"2026-03-21T18:40:43.870420451Z"} +2026/03/21 18:40:48 [metric_collector] {"stage_name":"metric_collector","events_processed":2094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":418.8,"last_update":"2026-03-21T18:40:43.870484624Z"} +2026/03/21 18:40:48 ───────────────────────────────────────────────── +2026/03/21 18:40:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:40:53 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":13.668406549859416,"throughput_eps":0,"last_update":"2026-03-21T18:40:48.965769965Z"} +2026/03/21 18:40:53 [log_collector] {"stage_name":"log_collector","events_processed":3653,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":730.6,"last_update":"2026-03-21T18:40:48.870184629Z"} +2026/03/21 18:40:53 [metric_collector] {"stage_name":"metric_collector","events_processed":2099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":419.8,"last_update":"2026-03-21T18:40:48.870533187Z"} +2026/03/21 18:40:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:40:48.876592443Z"} +2026/03/21 18:40:53 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":1022.5273092014893,"throughput_eps":0,"last_update":"2026-03-21T18:40:43.965816705Z"} +2026/03/21 18:40:53 ───────────────────────────────────────────────── +2026/03/21 18:40:57 [ANOMALY] time=2026-03-21T18:40:55Z score=0.9339 method=SEAD details=MAD!:w=0.25,s=0.94 RRCF-fast!:w=0.19,s=1.00 RRCF-mid!:w=0.18,s=0.96 RRCF-slow!:w=0.18,s=0.96 COPOD!:w=0.21,s=0.83 +2026/03/21 18:40:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:40:58 [metric_collector] {"stage_name":"metric_collector","events_processed":2104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":420.8,"last_update":"2026-03-21T18:40:53.869783513Z"} +2026/03/21 18:40:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:40:53.880876361Z"} +2026/03/21 18:40:58 [transform_engine] {"stage_name":"transform_engine","events_processed":70,"events_dropped":0,"avg_latency_ms":2515.1736389611915,"throughput_eps":0,"last_update":"2026-03-21T18:40:57.451594458Z"} +2026/03/21 18:40:58 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":13.668406549859416,"throughput_eps":0,"last_update":"2026-03-21T18:40:53.966021769Z"} +2026/03/21 18:40:58 [log_collector] {"stage_name":"log_collector","events_processed":3653,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":730.6,"last_update":"2026-03-21T18:40:53.869413885Z"} +2026/03/21 18:40:58 ───────────────────────────────────────────────── +2026/03/21 18:41:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:41:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:40:58.877820243Z"} +2026/03/21 18:41:03 [transform_engine] {"stage_name":"transform_engine","events_processed":70,"events_dropped":0,"avg_latency_ms":2515.1736389611915,"throughput_eps":0,"last_update":"2026-03-21T18:40:58.966045692Z"} +2026/03/21 18:41:03 [detection_layer] {"stage_name":"detection_layer","events_processed":70,"events_dropped":0,"avg_latency_ms":12.694492039887534,"throughput_eps":0,"last_update":"2026-03-21T18:40:58.966036854Z"} +2026/03/21 18:41:03 [log_collector] {"stage_name":"log_collector","events_processed":3656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":731.2,"last_update":"2026-03-21T18:40:58.869425995Z"} +2026/03/21 18:41:03 [metric_collector] {"stage_name":"metric_collector","events_processed":2109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":421.8,"last_update":"2026-03-21T18:40:58.869915432Z"} +2026/03/21 18:41:03 ───────────────────────────────────────────────── +2026/03/21 18:41:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:41:08 [log_collector] {"stage_name":"log_collector","events_processed":3664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":732.8,"last_update":"2026-03-21T18:41:03.869782777Z"} +2026/03/21 18:41:08 [metric_collector] {"stage_name":"metric_collector","events_processed":2114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":422.8,"last_update":"2026-03-21T18:41:03.870131095Z"} +2026/03/21 18:41:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":848,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:41:03.87779232Z"} +2026/03/21 18:41:08 [transform_engine] {"stage_name":"transform_engine","events_processed":70,"events_dropped":0,"avg_latency_ms":2515.1736389611915,"throughput_eps":0,"last_update":"2026-03-21T18:41:03.966003049Z"} +2026/03/21 18:41:08 [detection_layer] {"stage_name":"detection_layer","events_processed":70,"events_dropped":0,"avg_latency_ms":12.694492039887534,"throughput_eps":0,"last_update":"2026-03-21T18:41:03.96601897Z"} +2026/03/21 18:41:08 ───────────────────────────────────────────────── +2026/03/21 18:41:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:41:13 [log_collector] {"stage_name":"log_collector","events_processed":3844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":768.8,"last_update":"2026-03-21T18:41:08.870331372Z"} +2026/03/21 18:41:13 [metric_collector] {"stage_name":"metric_collector","events_processed":2119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":423.8,"last_update":"2026-03-21T18:41:08.870709376Z"} +2026/03/21 18:41:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:41:08.878217969Z"} +2026/03/21 18:41:13 [transform_engine] {"stage_name":"transform_engine","events_processed":70,"events_dropped":0,"avg_latency_ms":2515.1736389611915,"throughput_eps":0,"last_update":"2026-03-21T18:41:08.965377655Z"} +2026/03/21 18:41:13 [detection_layer] {"stage_name":"detection_layer","events_processed":70,"events_dropped":0,"avg_latency_ms":12.694492039887534,"throughput_eps":0,"last_update":"2026-03-21T18:41:08.965394998Z"} +2026/03/21 18:41:13 ───────────────────────────────────────────────── +2026/03/21 18:41:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:41:18 [transform_engine] {"stage_name":"transform_engine","events_processed":70,"events_dropped":0,"avg_latency_ms":2515.1736389611915,"throughput_eps":0,"last_update":"2026-03-21T18:41:13.965840859Z"} +2026/03/21 18:41:18 [detection_layer] {"stage_name":"detection_layer","events_processed":70,"events_dropped":0,"avg_latency_ms":12.694492039887534,"throughput_eps":0,"last_update":"2026-03-21T18:41:13.965856479Z"} +2026/03/21 18:41:18 [log_collector] {"stage_name":"log_collector","events_processed":4016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":803.2,"last_update":"2026-03-21T18:41:13.87005043Z"} +2026/03/21 18:41:18 [metric_collector] {"stage_name":"metric_collector","events_processed":2124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":424.8,"last_update":"2026-03-21T18:41:13.869829436Z"} +2026/03/21 18:41:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:41:13.878655723Z"} +2026/03/21 18:41:18 ───────────────────────────────────────────────── +Saved state: 12 clusters, 4017 messages, reason: none +2026/03/21 18:41:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:41:23 [log_collector] {"stage_name":"log_collector","events_processed":4016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":803.2,"last_update":"2026-03-21T18:41:18.869610297Z"} +2026/03/21 18:41:23 [metric_collector] {"stage_name":"metric_collector","events_processed":2129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":425.8,"last_update":"2026-03-21T18:41:18.869753261Z"} +2026/03/21 18:41:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:41:18.8778025Z"} +2026/03/21 18:41:23 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":2290.944526368953,"throughput_eps":0,"last_update":"2026-03-21T18:41:20.360025736Z"} +2026/03/21 18:41:23 [detection_layer] {"stage_name":"detection_layer","events_processed":70,"events_dropped":0,"avg_latency_ms":12.694492039887534,"throughput_eps":0,"last_update":"2026-03-21T18:41:18.966101679Z"} +2026/03/21 18:41:23 ───────────────────────────────────────────────── +2026/03/21 18:41:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:41:28 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":2290.944526368953,"throughput_eps":0,"last_update":"2026-03-21T18:41:23.965884697Z"} +2026/03/21 18:41:28 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.005288231910027,"throughput_eps":0,"last_update":"2026-03-21T18:41:23.96586009Z"} +2026/03/21 18:41:28 [log_collector] {"stage_name":"log_collector","events_processed":4019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":803.8,"last_update":"2026-03-21T18:41:23.869916588Z"} +2026/03/21 18:41:28 [metric_collector] {"stage_name":"metric_collector","events_processed":2134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":426.8,"last_update":"2026-03-21T18:41:23.870295093Z"} +2026/03/21 18:41:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:41:23.879671684Z"} +2026/03/21 18:41:28 ───────────────────────────────────────────────── +2026/03/21 18:41:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:41:33 [log_collector] {"stage_name":"log_collector","events_processed":4019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":803.8,"last_update":"2026-03-21T18:41:28.869423049Z"} +2026/03/21 18:41:33 [metric_collector] {"stage_name":"metric_collector","events_processed":2139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":427.8,"last_update":"2026-03-21T18:41:28.870414549Z"} +2026/03/21 18:41:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:41:28.876143763Z"} +2026/03/21 18:41:33 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":2290.944526368953,"throughput_eps":0,"last_update":"2026-03-21T18:41:28.965399755Z"} +2026/03/21 18:41:33 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.005288231910027,"throughput_eps":0,"last_update":"2026-03-21T18:41:28.965423351Z"} +2026/03/21 18:41:33 ───────────────────────────────────────────────── +2026/03/21 18:41:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:41:38 [log_collector] {"stage_name":"log_collector","events_processed":4029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":805.8,"last_update":"2026-03-21T18:41:33.869588074Z"} +2026/03/21 18:41:38 [metric_collector] {"stage_name":"metric_collector","events_processed":2144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":428.8,"last_update":"2026-03-21T18:41:33.869934248Z"} +2026/03/21 18:41:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":860,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:41:33.876393721Z"} +2026/03/21 18:41:38 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":2290.944526368953,"throughput_eps":0,"last_update":"2026-03-21T18:41:33.965645415Z"} +2026/03/21 18:41:38 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.005288231910027,"throughput_eps":0,"last_update":"2026-03-21T18:41:33.965623833Z"} +2026/03/21 18:41:38 ───────────────────────────────────────────────── +2026/03/21 18:41:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:41:43 [metric_collector] {"stage_name":"metric_collector","events_processed":2149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":429.8,"last_update":"2026-03-21T18:41:38.869725954Z"} +2026/03/21 18:41:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":862,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:41:38.878412994Z"} +2026/03/21 18:41:43 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":2290.944526368953,"throughput_eps":0,"last_update":"2026-03-21T18:41:38.965635362Z"} +2026/03/21 18:41:43 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.005288231910027,"throughput_eps":0,"last_update":"2026-03-21T18:41:38.96562442Z"} +2026/03/21 18:41:43 [log_collector] {"stage_name":"log_collector","events_processed":4046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":809.2,"last_update":"2026-03-21T18:41:43.870542834Z"} +2026/03/21 18:41:43 ───────────────────────────────────────────────── +2026/03/21 18:41:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:41:48 [log_collector] {"stage_name":"log_collector","events_processed":4046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":809.2,"last_update":"2026-03-21T18:41:43.870542834Z"} +2026/03/21 18:41:48 [metric_collector] {"stage_name":"metric_collector","events_processed":2154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":430.8,"last_update":"2026-03-21T18:41:43.870772024Z"} +2026/03/21 18:41:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:41:43.879865693Z"} +2026/03/21 18:41:48 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":2290.944526368953,"throughput_eps":0,"last_update":"2026-03-21T18:41:43.966090941Z"} +2026/03/21 18:41:48 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.005288231910027,"throughput_eps":0,"last_update":"2026-03-21T18:41:43.966072425Z"} +2026/03/21 18:41:48 ───────────────────────────────────────────────── +2026/03/21 18:41:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:41:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:41:48.878488785Z"} +2026/03/21 18:41:53 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":2290.944526368953,"throughput_eps":0,"last_update":"2026-03-21T18:41:48.965853274Z"} +2026/03/21 18:41:53 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.005288231910027,"throughput_eps":0,"last_update":"2026-03-21T18:41:48.965884765Z"} +2026/03/21 18:41:53 [log_collector] {"stage_name":"log_collector","events_processed":4046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":809.2,"last_update":"2026-03-21T18:41:48.869609355Z"} +2026/03/21 18:41:53 [metric_collector] {"stage_name":"metric_collector","events_processed":2159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":431.8,"last_update":"2026-03-21T18:41:48.869845939Z"} +2026/03/21 18:41:53 ───────────────────────────────────────────────── +2026/03/21 18:41:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:41:58 [log_collector] {"stage_name":"log_collector","events_processed":4046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":809.2,"last_update":"2026-03-21T18:41:53.870478793Z"} +2026/03/21 18:41:58 [metric_collector] {"stage_name":"metric_collector","events_processed":2164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":432.8,"last_update":"2026-03-21T18:41:53.870752176Z"} +2026/03/21 18:41:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":868,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:41:53.879042547Z"} +2026/03/21 18:41:58 [transform_engine] {"stage_name":"transform_engine","events_processed":72,"events_dropped":0,"avg_latency_ms":1867.8586358951625,"throughput_eps":0,"last_update":"2026-03-21T18:41:53.965222417Z"} +2026/03/21 18:41:58 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":13.358579785528022,"throughput_eps":0,"last_update":"2026-03-21T18:41:53.965274427Z"} +2026/03/21 18:41:58 ───────────────────────────────────────────────── +2026/03/21 18:42:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:42:03 [log_collector] {"stage_name":"log_collector","events_processed":4046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":809.2,"last_update":"2026-03-21T18:41:58.869475386Z"} +2026/03/21 18:42:03 [metric_collector] {"stage_name":"metric_collector","events_processed":2169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":433.8,"last_update":"2026-03-21T18:41:58.869827901Z"} +2026/03/21 18:42:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:41:58.877973827Z"} +2026/03/21 18:42:03 [transform_engine] {"stage_name":"transform_engine","events_processed":72,"events_dropped":0,"avg_latency_ms":1867.8586358951625,"throughput_eps":0,"last_update":"2026-03-21T18:41:58.965076554Z"} +2026/03/21 18:42:03 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":13.358579785528022,"throughput_eps":0,"last_update":"2026-03-21T18:41:58.966211398Z"} +2026/03/21 18:42:03 ───────────────────────────────────────────────── +2026/03/21 18:42:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:42:08 [log_collector] {"stage_name":"log_collector","events_processed":4046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":809.2,"last_update":"2026-03-21T18:42:08.870176061Z"} +2026/03/21 18:42:08 [metric_collector] {"stage_name":"metric_collector","events_processed":2174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":434.8,"last_update":"2026-03-21T18:42:03.870204813Z"} +2026/03/21 18:42:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:42:03.877947555Z"} +2026/03/21 18:42:08 [transform_engine] {"stage_name":"transform_engine","events_processed":72,"events_dropped":0,"avg_latency_ms":1867.8586358951625,"throughput_eps":0,"last_update":"2026-03-21T18:42:03.965138492Z"} +2026/03/21 18:42:08 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":13.358579785528022,"throughput_eps":0,"last_update":"2026-03-21T18:42:03.966389147Z"} +2026/03/21 18:42:08 ───────────────────────────────────────────────── +2026/03/21 18:42:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:42:13 [log_collector] {"stage_name":"log_collector","events_processed":4046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":809.2,"last_update":"2026-03-21T18:42:08.870176061Z"} +2026/03/21 18:42:13 [metric_collector] {"stage_name":"metric_collector","events_processed":2179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":435.8,"last_update":"2026-03-21T18:42:08.870780017Z"} +2026/03/21 18:42:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:42:08.880270808Z"} +2026/03/21 18:42:13 [transform_engine] {"stage_name":"transform_engine","events_processed":72,"events_dropped":0,"avg_latency_ms":1867.8586358951625,"throughput_eps":0,"last_update":"2026-03-21T18:42:08.96567409Z"} +2026/03/21 18:42:13 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":13.358579785528022,"throughput_eps":0,"last_update":"2026-03-21T18:42:08.96572089Z"} +2026/03/21 18:42:13 ───────────────────────────────────────────────── +2026/03/21 18:42:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:42:18 [log_collector] {"stage_name":"log_collector","events_processed":4046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":809.2,"last_update":"2026-03-21T18:42:13.869960162Z"} +2026/03/21 18:42:18 [metric_collector] {"stage_name":"metric_collector","events_processed":2184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":436.8,"last_update":"2026-03-21T18:42:13.870027672Z"} +2026/03/21 18:42:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":876,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:42:13.878402334Z"} +2026/03/21 18:42:18 [transform_engine] {"stage_name":"transform_engine","events_processed":72,"events_dropped":0,"avg_latency_ms":1867.8586358951625,"throughput_eps":0,"last_update":"2026-03-21T18:42:13.965586578Z"} +2026/03/21 18:42:18 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":13.358579785528022,"throughput_eps":0,"last_update":"2026-03-21T18:42:13.965630682Z"} +2026/03/21 18:42:18 ───────────────────────────────────────────────── +2026/03/21 18:42:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:42:23 [log_collector] {"stage_name":"log_collector","events_processed":4046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":809.2,"last_update":"2026-03-21T18:42:18.869638284Z"} +2026/03/21 18:42:23 [metric_collector] {"stage_name":"metric_collector","events_processed":2189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":437.8,"last_update":"2026-03-21T18:42:18.870034904Z"} +2026/03/21 18:42:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:42:18.878644125Z"} +2026/03/21 18:42:23 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":1507.85946951613,"throughput_eps":0,"last_update":"2026-03-21T18:42:19.033794611Z"} +2026/03/21 18:42:23 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":13.358579785528022,"throughput_eps":0,"last_update":"2026-03-21T18:42:18.965921287Z"} +2026/03/21 18:42:23 ───────────────────────────────────────────────── +2026/03/21 18:42:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:42:28 [log_collector] {"stage_name":"log_collector","events_processed":4046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":809.2,"last_update":"2026-03-21T18:42:23.869701716Z"} +2026/03/21 18:42:28 [metric_collector] {"stage_name":"metric_collector","events_processed":2194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":438.8,"last_update":"2026-03-21T18:42:23.870138193Z"} +2026/03/21 18:42:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:42:23.878311548Z"} +2026/03/21 18:42:28 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":1507.85946951613,"throughput_eps":0,"last_update":"2026-03-21T18:42:23.965679474Z"} +2026/03/21 18:42:28 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.139377228422418,"throughput_eps":0,"last_update":"2026-03-21T18:42:23.96566663Z"} +2026/03/21 18:42:28 ───────────────────────────────────────────────── +2026/03/21 18:42:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:42:33 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":1507.85946951613,"throughput_eps":0,"last_update":"2026-03-21T18:42:28.966021314Z"} +2026/03/21 18:42:33 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.139377228422418,"throughput_eps":0,"last_update":"2026-03-21T18:42:28.96601392Z"} +2026/03/21 18:42:33 [log_collector] {"stage_name":"log_collector","events_processed":4046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":809.2,"last_update":"2026-03-21T18:42:28.869401866Z"} +2026/03/21 18:42:33 [metric_collector] {"stage_name":"metric_collector","events_processed":2199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":439.8,"last_update":"2026-03-21T18:42:28.86991029Z"} +2026/03/21 18:42:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:42:28.879805915Z"} +2026/03/21 18:42:33 ───────────────────────────────────────────────── +2026/03/21 18:42:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:42:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:42:33.879101192Z"} +2026/03/21 18:42:38 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":1507.85946951613,"throughput_eps":0,"last_update":"2026-03-21T18:42:33.96559309Z"} +2026/03/21 18:42:38 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.139377228422418,"throughput_eps":0,"last_update":"2026-03-21T18:42:33.96558213Z"} +2026/03/21 18:42:38 [log_collector] {"stage_name":"log_collector","events_processed":4046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":809.2,"last_update":"2026-03-21T18:42:33.870338598Z"} +2026/03/21 18:42:38 [metric_collector] {"stage_name":"metric_collector","events_processed":2204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":440.8,"last_update":"2026-03-21T18:42:33.870702023Z"} +2026/03/21 18:42:38 ───────────────────────────────────────────────── +2026/03/21 18:42:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:42:43 [log_collector] {"stage_name":"log_collector","events_processed":4046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":809.2,"last_update":"2026-03-21T18:42:43.869414769Z"} +2026/03/21 18:42:43 [metric_collector] {"stage_name":"metric_collector","events_processed":2209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":441.8,"last_update":"2026-03-21T18:42:38.870655723Z"} +2026/03/21 18:42:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":886,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:42:38.879669128Z"} +2026/03/21 18:42:43 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":1507.85946951613,"throughput_eps":0,"last_update":"2026-03-21T18:42:38.966019666Z"} +2026/03/21 18:42:43 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.139377228422418,"throughput_eps":0,"last_update":"2026-03-21T18:42:38.966008675Z"} +2026/03/21 18:42:43 ───────────────────────────────────────────────── +2026/03/21 18:42:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:42:48 [log_collector] {"stage_name":"log_collector","events_processed":4046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":809.2,"last_update":"2026-03-21T18:42:43.869414769Z"} +2026/03/21 18:42:48 [metric_collector] {"stage_name":"metric_collector","events_processed":2214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":442.8,"last_update":"2026-03-21T18:42:43.870152321Z"} +2026/03/21 18:42:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:42:43.878996713Z"} +2026/03/21 18:42:48 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":1507.85946951613,"throughput_eps":0,"last_update":"2026-03-21T18:42:43.965073266Z"} +2026/03/21 18:42:48 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.139377228422418,"throughput_eps":0,"last_update":"2026-03-21T18:42:43.965334557Z"} +2026/03/21 18:42:48 ───────────────────────────────────────────────── +Saved state: 12 clusters, 4047 messages, reason: none +2026/03/21 18:42:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:42:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:42:48.879387246Z"} +2026/03/21 18:42:53 [transform_engine] {"stage_name":"transform_engine","events_processed":74,"events_dropped":0,"avg_latency_ms":1219.232121412904,"throughput_eps":0,"last_update":"2026-03-21T18:42:49.03033898Z"} +2026/03/21 18:42:53 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.139377228422418,"throughput_eps":0,"last_update":"2026-03-21T18:42:48.965603106Z"} +2026/03/21 18:42:53 [log_collector] {"stage_name":"log_collector","events_processed":4046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":809.2,"last_update":"2026-03-21T18:42:48.869423381Z"} +2026/03/21 18:42:53 [metric_collector] {"stage_name":"metric_collector","events_processed":2219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":443.8,"last_update":"2026-03-21T18:42:48.870113051Z"} +2026/03/21 18:42:53 ───────────────────────────────────────────────── +2026/03/21 18:42:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:42:58 [log_collector] {"stage_name":"log_collector","events_processed":4049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":809.8,"last_update":"2026-03-21T18:42:53.869779122Z"} +2026/03/21 18:42:58 [metric_collector] {"stage_name":"metric_collector","events_processed":2224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":444.8,"last_update":"2026-03-21T18:42:53.870000015Z"} +2026/03/21 18:42:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":892,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:42:53.876137712Z"} +2026/03/21 18:42:58 [transform_engine] {"stage_name":"transform_engine","events_processed":74,"events_dropped":0,"avg_latency_ms":1219.232121412904,"throughput_eps":0,"last_update":"2026-03-21T18:42:53.965720571Z"} +2026/03/21 18:42:58 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":14.505004782737934,"throughput_eps":0,"last_update":"2026-03-21T18:42:53.96570959Z"} +2026/03/21 18:42:58 ───────────────────────────────────────────────── +2026/03/21 18:43:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:43:03 [log_collector] {"stage_name":"log_collector","events_processed":4060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":812,"last_update":"2026-03-21T18:42:58.870219735Z"} +2026/03/21 18:43:03 [metric_collector] {"stage_name":"metric_collector","events_processed":2229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":445.8,"last_update":"2026-03-21T18:42:58.870662483Z"} +2026/03/21 18:43:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:42:58.879168707Z"} +2026/03/21 18:43:03 [transform_engine] {"stage_name":"transform_engine","events_processed":74,"events_dropped":0,"avg_latency_ms":1219.232121412904,"throughput_eps":0,"last_update":"2026-03-21T18:42:58.965566626Z"} +2026/03/21 18:43:03 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":14.505004782737934,"throughput_eps":0,"last_update":"2026-03-21T18:42:58.965555514Z"} +2026/03/21 18:43:03 ───────────────────────────────────────────────── +2026/03/21 18:43:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:43:08 [log_collector] {"stage_name":"log_collector","events_processed":4060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":812,"last_update":"2026-03-21T18:43:03.869565826Z"} +2026/03/21 18:43:08 [metric_collector] {"stage_name":"metric_collector","events_processed":2234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":446.8,"last_update":"2026-03-21T18:43:03.870277309Z"} +2026/03/21 18:43:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":896,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:43:03.878576497Z"} +2026/03/21 18:43:08 [transform_engine] {"stage_name":"transform_engine","events_processed":74,"events_dropped":0,"avg_latency_ms":1219.232121412904,"throughput_eps":0,"last_update":"2026-03-21T18:43:03.965862657Z"} +2026/03/21 18:43:08 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":14.505004782737934,"throughput_eps":0,"last_update":"2026-03-21T18:43:03.965856435Z"} +2026/03/21 18:43:08 ───────────────────────────────────────────────── +2026/03/21 18:43:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:43:13 [log_collector] {"stage_name":"log_collector","events_processed":4060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":812,"last_update":"2026-03-21T18:43:13.86983013Z"} +2026/03/21 18:43:13 [metric_collector] {"stage_name":"metric_collector","events_processed":2239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":447.8,"last_update":"2026-03-21T18:43:08.87046215Z"} +2026/03/21 18:43:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":898,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:43:08.879214526Z"} +2026/03/21 18:43:13 [transform_engine] {"stage_name":"transform_engine","events_processed":74,"events_dropped":0,"avg_latency_ms":1219.232121412904,"throughput_eps":0,"last_update":"2026-03-21T18:43:08.965387083Z"} +2026/03/21 18:43:13 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":14.505004782737934,"throughput_eps":0,"last_update":"2026-03-21T18:43:08.965377454Z"} +2026/03/21 18:43:13 ───────────────────────────────────────────────── +2026/03/21 18:43:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:43:18 [metric_collector] {"stage_name":"metric_collector","events_processed":2244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":448.8,"last_update":"2026-03-21T18:43:13.87037917Z"} +2026/03/21 18:43:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":900,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:43:13.879140153Z"} +2026/03/21 18:43:18 [transform_engine] {"stage_name":"transform_engine","events_processed":74,"events_dropped":0,"avg_latency_ms":1219.232121412904,"throughput_eps":0,"last_update":"2026-03-21T18:43:13.965332607Z"} +2026/03/21 18:43:18 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":14.505004782737934,"throughput_eps":0,"last_update":"2026-03-21T18:43:13.965326776Z"} +2026/03/21 18:43:18 [log_collector] {"stage_name":"log_collector","events_processed":4060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":812,"last_update":"2026-03-21T18:43:13.86983013Z"} +2026/03/21 18:43:18 ───────────────────────────────────────────────── +2026/03/21 18:43:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:43:23 [log_collector] {"stage_name":"log_collector","events_processed":4060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":812,"last_update":"2026-03-21T18:43:23.869878118Z"} +2026/03/21 18:43:23 [metric_collector] {"stage_name":"metric_collector","events_processed":2249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":449.8,"last_update":"2026-03-21T18:43:18.870657155Z"} +2026/03/21 18:43:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:43:18.879123944Z"} +2026/03/21 18:43:23 [transform_engine] {"stage_name":"transform_engine","events_processed":75,"events_dropped":0,"avg_latency_ms":996.8172161303232,"throughput_eps":0,"last_update":"2026-03-21T18:43:19.072621326Z"} +2026/03/21 18:43:23 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":14.505004782737934,"throughput_eps":0,"last_update":"2026-03-21T18:43:18.96548946Z"} +2026/03/21 18:43:23 ───────────────────────────────────────────────── +2026/03/21 18:43:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:43:28 [transform_engine] {"stage_name":"transform_engine","events_processed":75,"events_dropped":0,"avg_latency_ms":996.8172161303232,"throughput_eps":0,"last_update":"2026-03-21T18:43:23.965871146Z"} +2026/03/21 18:43:28 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":15.026355626190348,"throughput_eps":0,"last_update":"2026-03-21T18:43:23.965856197Z"} +2026/03/21 18:43:28 [log_collector] {"stage_name":"log_collector","events_processed":4060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":812,"last_update":"2026-03-21T18:43:23.869878118Z"} +2026/03/21 18:43:28 [metric_collector] {"stage_name":"metric_collector","events_processed":2254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":450.8,"last_update":"2026-03-21T18:43:23.870266893Z"} +2026/03/21 18:43:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:43:23.878496627Z"} +2026/03/21 18:43:28 ───────────────────────────────────────────────── +2026/03/21 18:43:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:43:33 [log_collector] {"stage_name":"log_collector","events_processed":4060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":812,"last_update":"2026-03-21T18:43:33.869464011Z"} +2026/03/21 18:43:33 [metric_collector] {"stage_name":"metric_collector","events_processed":2259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":451.8,"last_update":"2026-03-21T18:43:28.869920746Z"} +2026/03/21 18:43:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":906,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:43:28.878399307Z"} +2026/03/21 18:43:33 [transform_engine] {"stage_name":"transform_engine","events_processed":75,"events_dropped":0,"avg_latency_ms":996.8172161303232,"throughput_eps":0,"last_update":"2026-03-21T18:43:28.965626654Z"} +2026/03/21 18:43:33 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":15.026355626190348,"throughput_eps":0,"last_update":"2026-03-21T18:43:28.96561426Z"} +2026/03/21 18:43:33 ───────────────────────────────────────────────── +2026/03/21 18:43:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:43:38 [log_collector] {"stage_name":"log_collector","events_processed":4060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":812,"last_update":"2026-03-21T18:43:38.869710757Z"} +2026/03/21 18:43:38 [metric_collector] {"stage_name":"metric_collector","events_processed":2269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":453.8,"last_update":"2026-03-21T18:43:38.869699145Z"} +2026/03/21 18:43:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":908,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:43:33.879517329Z"} +2026/03/21 18:43:38 [transform_engine] {"stage_name":"transform_engine","events_processed":75,"events_dropped":0,"avg_latency_ms":996.8172161303232,"throughput_eps":0,"last_update":"2026-03-21T18:43:33.965724603Z"} +2026/03/21 18:43:38 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":15.026355626190348,"throughput_eps":0,"last_update":"2026-03-21T18:43:33.965718672Z"} +2026/03/21 18:43:38 ───────────────────────────────────────────────── +2026/03/21 18:43:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:43:43 [metric_collector] {"stage_name":"metric_collector","events_processed":2269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":453.8,"last_update":"2026-03-21T18:43:38.869699145Z"} +2026/03/21 18:43:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:43:38.878209487Z"} +2026/03/21 18:43:43 [transform_engine] {"stage_name":"transform_engine","events_processed":75,"events_dropped":0,"avg_latency_ms":996.8172161303232,"throughput_eps":0,"last_update":"2026-03-21T18:43:38.965598936Z"} +2026/03/21 18:43:43 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":15.026355626190348,"throughput_eps":0,"last_update":"2026-03-21T18:43:38.965587703Z"} +2026/03/21 18:43:43 [log_collector] {"stage_name":"log_collector","events_processed":4060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":812,"last_update":"2026-03-21T18:43:43.869973214Z"} +2026/03/21 18:43:43 ───────────────────────────────────────────────── +2026/03/21 18:43:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:43:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":912,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:43:43.878521268Z"} +2026/03/21 18:43:48 [transform_engine] {"stage_name":"transform_engine","events_processed":75,"events_dropped":0,"avg_latency_ms":996.8172161303232,"throughput_eps":0,"last_update":"2026-03-21T18:43:43.96521802Z"} +2026/03/21 18:43:48 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":15.026355626190348,"throughput_eps":0,"last_update":"2026-03-21T18:43:43.965267715Z"} +2026/03/21 18:43:48 [log_collector] {"stage_name":"log_collector","events_processed":4060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":812,"last_update":"2026-03-21T18:43:48.869707735Z"} +2026/03/21 18:43:48 [metric_collector] {"stage_name":"metric_collector","events_processed":2274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":454.8,"last_update":"2026-03-21T18:43:43.870307385Z"} +2026/03/21 18:43:48 ───────────────────────────────────────────────── +2026/03/21 18:43:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:43:53 [log_collector] {"stage_name":"log_collector","events_processed":4060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":812,"last_update":"2026-03-21T18:43:48.869707735Z"} +2026/03/21 18:43:53 [metric_collector] {"stage_name":"metric_collector","events_processed":2279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":455.8,"last_update":"2026-03-21T18:43:48.87012309Z"} +2026/03/21 18:43:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:43:48.879324956Z"} +2026/03/21 18:43:53 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":811.4978049042586,"throughput_eps":0,"last_update":"2026-03-21T18:43:49.035911505Z"} +2026/03/21 18:43:53 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":15.026355626190348,"throughput_eps":0,"last_update":"2026-03-21T18:43:48.96644576Z"} +2026/03/21 18:43:53 ───────────────────────────────────────────────── +2026/03/21 18:43:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:43:58 [log_collector] {"stage_name":"log_collector","events_processed":4060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":812,"last_update":"2026-03-21T18:43:58.870205972Z"} +2026/03/21 18:43:58 [metric_collector] {"stage_name":"metric_collector","events_processed":2284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":456.8,"last_update":"2026-03-21T18:43:53.870420771Z"} +2026/03/21 18:43:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:43:53.879502768Z"} +2026/03/21 18:43:58 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":811.4978049042586,"throughput_eps":0,"last_update":"2026-03-21T18:43:53.965775738Z"} +2026/03/21 18:43:58 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.523036700952279,"throughput_eps":0,"last_update":"2026-03-21T18:43:53.965723146Z"} +2026/03/21 18:43:58 ───────────────────────────────────────────────── +Saved state: 12 clusters, 4061 messages, reason: none +2026/03/21 18:44:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:44:03 [metric_collector] {"stage_name":"metric_collector","events_processed":2289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":457.8,"last_update":"2026-03-21T18:43:58.870587122Z"} +2026/03/21 18:44:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":918,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:43:58.879251019Z"} +2026/03/21 18:44:03 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":811.4978049042586,"throughput_eps":0,"last_update":"2026-03-21T18:43:58.965756994Z"} +2026/03/21 18:44:03 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.523036700952279,"throughput_eps":0,"last_update":"2026-03-21T18:43:58.965674667Z"} +2026/03/21 18:44:03 [log_collector] {"stage_name":"log_collector","events_processed":4065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":813,"last_update":"2026-03-21T18:44:03.869403901Z"} +2026/03/21 18:44:03 ───────────────────────────────────────────────── +2026/03/21 18:44:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:44:08 [log_collector] {"stage_name":"log_collector","events_processed":4065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":813,"last_update":"2026-03-21T18:44:03.869403901Z"} +2026/03/21 18:44:08 [metric_collector] {"stage_name":"metric_collector","events_processed":2294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":458.8,"last_update":"2026-03-21T18:44:03.869829015Z"} +2026/03/21 18:44:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":920,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:44:03.875962343Z"} +2026/03/21 18:44:08 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":811.4978049042586,"throughput_eps":0,"last_update":"2026-03-21T18:44:03.965080302Z"} +2026/03/21 18:44:08 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.523036700952279,"throughput_eps":0,"last_update":"2026-03-21T18:44:03.967027482Z"} +2026/03/21 18:44:08 ───────────────────────────────────────────────── +2026/03/21 18:44:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:44:13 [log_collector] {"stage_name":"log_collector","events_processed":4065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":813,"last_update":"2026-03-21T18:44:08.869742267Z"} +2026/03/21 18:44:13 [metric_collector] {"stage_name":"metric_collector","events_processed":2298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":459.6,"last_update":"2026-03-21T18:44:08.869383018Z"} +2026/03/21 18:44:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:44:08.875712873Z"} +2026/03/21 18:44:13 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":811.4978049042586,"throughput_eps":0,"last_update":"2026-03-21T18:44:08.966004812Z"} +2026/03/21 18:44:13 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.523036700952279,"throughput_eps":0,"last_update":"2026-03-21T18:44:08.965953934Z"} +2026/03/21 18:44:13 ───────────────────────────────────────────────── +2026/03/21 18:44:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:44:18 [metric_collector] {"stage_name":"metric_collector","events_processed":2303,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":460.6,"last_update":"2026-03-21T18:44:13.870283223Z"} +2026/03/21 18:44:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:44:13.878659488Z"} +2026/03/21 18:44:18 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":811.4978049042586,"throughput_eps":0,"last_update":"2026-03-21T18:44:13.965840337Z"} +2026/03/21 18:44:18 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.523036700952279,"throughput_eps":0,"last_update":"2026-03-21T18:44:13.965877999Z"} +2026/03/21 18:44:18 [log_collector] {"stage_name":"log_collector","events_processed":4065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":813,"last_update":"2026-03-21T18:44:13.87027147Z"} +2026/03/21 18:44:18 ───────────────────────────────────────────────── +2026/03/21 18:44:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:44:23 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":811.4978049042586,"throughput_eps":0,"last_update":"2026-03-21T18:44:13.965840337Z"} +2026/03/21 18:44:23 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.523036700952279,"throughput_eps":0,"last_update":"2026-03-21T18:44:18.965327075Z"} +2026/03/21 18:44:23 [log_collector] {"stage_name":"log_collector","events_processed":4065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":813,"last_update":"2026-03-21T18:44:18.869454587Z"} +2026/03/21 18:44:23 [metric_collector] {"stage_name":"metric_collector","events_processed":2308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":461.6,"last_update":"2026-03-21T18:44:18.869413198Z"} +2026/03/21 18:44:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:44:18.880703234Z"} +2026/03/21 18:44:23 ───────────────────────────────────────────────── +2026/03/21 18:44:27 [ANOMALY] time=2026-03-21T18:44:26Z score=0.9776 method=SEAD details=MAD!:w=0.25,s=0.96 RRCF-fast!:w=0.19,s=1.00 RRCF-mid!:w=0.18,s=0.97 RRCF-slow!:w=0.18,s=0.99 COPOD!:w=0.20,s=0.97 +2026/03/21 18:44:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:44:28 [log_collector] {"stage_name":"log_collector","events_processed":4065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":813,"last_update":"2026-03-21T18:44:28.869613101Z"} +2026/03/21 18:44:28 [metric_collector] {"stage_name":"metric_collector","events_processed":2319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":463.8,"last_update":"2026-03-21T18:44:28.869609154Z"} +2026/03/21 18:44:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:44:23.876693037Z"} +2026/03/21 18:44:28 [transform_engine] {"stage_name":"transform_engine","events_processed":77,"events_dropped":0,"avg_latency_ms":2385.203327923407,"throughput_eps":0,"last_update":"2026-03-21T18:44:27.645156579Z"} +2026/03/21 18:44:28 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.523036700952279,"throughput_eps":0,"last_update":"2026-03-21T18:44:23.965895077Z"} +2026/03/21 18:44:28 ───────────────────────────────────────────────── +2026/03/21 18:44:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:44:33 [log_collector] {"stage_name":"log_collector","events_processed":4065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":813,"last_update":"2026-03-21T18:44:33.870311569Z"} +2026/03/21 18:44:33 [metric_collector] {"stage_name":"metric_collector","events_processed":2319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":463.8,"last_update":"2026-03-21T18:44:28.869609154Z"} +2026/03/21 18:44:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":930,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:44:28.881694914Z"} +2026/03/21 18:44:33 [transform_engine] {"stage_name":"transform_engine","events_processed":77,"events_dropped":0,"avg_latency_ms":2385.203327923407,"throughput_eps":0,"last_update":"2026-03-21T18:44:28.965918238Z"} +2026/03/21 18:44:33 [detection_layer] {"stage_name":"detection_layer","events_processed":77,"events_dropped":0,"avg_latency_ms":13.797679560761823,"throughput_eps":0,"last_update":"2026-03-21T18:44:28.965902979Z"} +2026/03/21 18:44:33 ───────────────────────────────────────────────── +2026/03/21 18:44:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:44:38 [transform_engine] {"stage_name":"transform_engine","events_processed":77,"events_dropped":0,"avg_latency_ms":2385.203327923407,"throughput_eps":0,"last_update":"2026-03-21T18:44:33.965664411Z"} +2026/03/21 18:44:38 [detection_layer] {"stage_name":"detection_layer","events_processed":77,"events_dropped":0,"avg_latency_ms":13.797679560761823,"throughput_eps":0,"last_update":"2026-03-21T18:44:33.965648631Z"} +2026/03/21 18:44:38 [log_collector] {"stage_name":"log_collector","events_processed":4065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":813,"last_update":"2026-03-21T18:44:33.870311569Z"} +2026/03/21 18:44:38 [metric_collector] {"stage_name":"metric_collector","events_processed":2324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":464.8,"last_update":"2026-03-21T18:44:33.870619609Z"} +2026/03/21 18:44:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:44:33.876271766Z"} +2026/03/21 18:44:38 ───────────────────────────────────────────────── +2026/03/21 18:44:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:44:43 [detection_layer] {"stage_name":"detection_layer","events_processed":77,"events_dropped":0,"avg_latency_ms":13.797679560761823,"throughput_eps":0,"last_update":"2026-03-21T18:44:38.965922296Z"} +2026/03/21 18:44:43 [log_collector] {"stage_name":"log_collector","events_processed":4065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":813,"last_update":"2026-03-21T18:44:38.869692523Z"} +2026/03/21 18:44:43 [metric_collector] {"stage_name":"metric_collector","events_processed":2329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":465.8,"last_update":"2026-03-21T18:44:38.870092389Z"} +2026/03/21 18:44:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:44:38.876736316Z"} +2026/03/21 18:44:43 [transform_engine] {"stage_name":"transform_engine","events_processed":77,"events_dropped":0,"avg_latency_ms":2385.203327923407,"throughput_eps":0,"last_update":"2026-03-21T18:44:38.965935461Z"} +2026/03/21 18:44:43 ───────────────────────────────────────────────── +2026/03/21 18:44:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:44:48 [detection_layer] {"stage_name":"detection_layer","events_processed":77,"events_dropped":0,"avg_latency_ms":13.797679560761823,"throughput_eps":0,"last_update":"2026-03-21T18:44:43.965500483Z"} +2026/03/21 18:44:48 [log_collector] {"stage_name":"log_collector","events_processed":4068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":813.6,"last_update":"2026-03-21T18:44:43.869467718Z"} +2026/03/21 18:44:48 [metric_collector] {"stage_name":"metric_collector","events_processed":2334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":466.8,"last_update":"2026-03-21T18:44:43.869879837Z"} +2026/03/21 18:44:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:44:43.876230883Z"} +2026/03/21 18:44:48 [transform_engine] {"stage_name":"transform_engine","events_processed":77,"events_dropped":0,"avg_latency_ms":2385.203327923407,"throughput_eps":0,"last_update":"2026-03-21T18:44:43.965476938Z"} +2026/03/21 18:44:48 ───────────────────────────────────────────────── +2026/03/21 18:44:49 [ANOMALY] time=2026-03-21T18:44:49Z score=0.8884 method=SEAD details=MAD!:w=0.25,s=0.94 RRCF-fast!:w=0.19,s=1.00 RRCF-mid!:w=0.18,s=0.94 RRCF-slow!:w=0.18,s=0.95 COPOD!:w=0.20,s=0.64 +2026/03/21 18:44:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:44:53 [log_collector] {"stage_name":"log_collector","events_processed":4076,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":815.2,"last_update":"2026-03-21T18:44:48.869972049Z"} +2026/03/21 18:44:53 [metric_collector] {"stage_name":"metric_collector","events_processed":2339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":467.8,"last_update":"2026-03-21T18:44:48.869781082Z"} +2026/03/21 18:44:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:44:48.879157825Z"} +2026/03/21 18:44:53 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":1930.4547261387256,"throughput_eps":0,"last_update":"2026-03-21T18:44:49.076911862Z"} +2026/03/21 18:44:53 [detection_layer] {"stage_name":"detection_layer","events_processed":77,"events_dropped":0,"avg_latency_ms":13.797679560761823,"throughput_eps":0,"last_update":"2026-03-21T18:44:48.965435804Z"} +2026/03/21 18:44:53 ───────────────────────────────────────────────── +2026/03/21 18:44:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:44:58 [log_collector] {"stage_name":"log_collector","events_processed":4276,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":855.2,"last_update":"2026-03-21T18:44:53.87014507Z"} +2026/03/21 18:44:58 [metric_collector] {"stage_name":"metric_collector","events_processed":2344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":468.8,"last_update":"2026-03-21T18:44:53.870484189Z"} +2026/03/21 18:44:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":940,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:44:53.876849182Z"} +2026/03/21 18:44:58 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":1930.4547261387256,"throughput_eps":0,"last_update":"2026-03-21T18:44:53.965479357Z"} +2026/03/21 18:44:58 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":13.74896844860946,"throughput_eps":0,"last_update":"2026-03-21T18:44:53.965468896Z"} +2026/03/21 18:44:58 ───────────────────────────────────────────────── +2026/03/21 18:45:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:45:03 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":1930.4547261387256,"throughput_eps":0,"last_update":"2026-03-21T18:44:58.965415243Z"} +2026/03/21 18:45:03 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":13.74896844860946,"throughput_eps":0,"last_update":"2026-03-21T18:44:58.965402078Z"} +2026/03/21 18:45:03 [log_collector] {"stage_name":"log_collector","events_processed":4429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":885.8,"last_update":"2026-03-21T18:45:03.86985746Z"} +2026/03/21 18:45:03 [metric_collector] {"stage_name":"metric_collector","events_processed":2349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":469.8,"last_update":"2026-03-21T18:44:58.870227186Z"} +2026/03/21 18:45:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:44:58.880171685Z"} +2026/03/21 18:45:03 ───────────────────────────────────────────────── +2026/03/21 18:45:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:45:08 [metric_collector] {"stage_name":"metric_collector","events_processed":2354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":470.8,"last_update":"2026-03-21T18:45:03.870243279Z"} +2026/03/21 18:45:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:45:03.878523289Z"} +2026/03/21 18:45:08 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":1930.4547261387256,"throughput_eps":0,"last_update":"2026-03-21T18:45:03.965865207Z"} +2026/03/21 18:45:08 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":13.74896844860946,"throughput_eps":0,"last_update":"2026-03-21T18:45:03.965852713Z"} +2026/03/21 18:45:08 [log_collector] {"stage_name":"log_collector","events_processed":4429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":885.8,"last_update":"2026-03-21T18:45:03.86985746Z"} +2026/03/21 18:45:08 ───────────────────────────────────────────────── +Saved state: 12 clusters, 4430 messages, reason: none +2026/03/21 18:45:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:45:13 [metric_collector] {"stage_name":"metric_collector","events_processed":2359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":471.8,"last_update":"2026-03-21T18:45:08.87053315Z"} +2026/03/21 18:45:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:45:08.878189235Z"} +2026/03/21 18:45:13 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":1930.4547261387256,"throughput_eps":0,"last_update":"2026-03-21T18:45:08.965398368Z"} +2026/03/21 18:45:13 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":13.74896844860946,"throughput_eps":0,"last_update":"2026-03-21T18:45:08.965391065Z"} +2026/03/21 18:45:13 [log_collector] {"stage_name":"log_collector","events_processed":4429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":885.8,"last_update":"2026-03-21T18:45:08.869876732Z"} +2026/03/21 18:45:13 ───────────────────────────────────────────────── +2026/03/21 18:45:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:45:18 [log_collector] {"stage_name":"log_collector","events_processed":4432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":886.4,"last_update":"2026-03-21T18:45:13.869469016Z"} +2026/03/21 18:45:18 [metric_collector] {"stage_name":"metric_collector","events_processed":2364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":472.8,"last_update":"2026-03-21T18:45:13.869782327Z"} +2026/03/21 18:45:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:45:13.880156559Z"} +2026/03/21 18:45:18 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":1930.4547261387256,"throughput_eps":0,"last_update":"2026-03-21T18:45:13.965398194Z"} +2026/03/21 18:45:18 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":13.74896844860946,"throughput_eps":0,"last_update":"2026-03-21T18:45:13.96536421Z"} +2026/03/21 18:45:18 ───────────────────────────────────────────────── +2026/03/21 18:45:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:45:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:45:18.876162577Z"} +2026/03/21 18:45:23 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":1930.4547261387256,"throughput_eps":0,"last_update":"2026-03-21T18:45:13.965398194Z"} +2026/03/21 18:45:23 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":13.74896844860946,"throughput_eps":0,"last_update":"2026-03-21T18:45:18.965371953Z"} +2026/03/21 18:45:23 [log_collector] {"stage_name":"log_collector","events_processed":4432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":886.4,"last_update":"2026-03-21T18:45:18.86987844Z"} +2026/03/21 18:45:23 [metric_collector] {"stage_name":"metric_collector","events_processed":2369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":473.8,"last_update":"2026-03-21T18:45:18.870158516Z"} +2026/03/21 18:45:23 ───────────────────────────────────────────────── +2026/03/21 18:45:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:45:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:45:23.878872639Z"} +2026/03/21 18:45:28 [transform_engine] {"stage_name":"transform_engine","events_processed":79,"events_dropped":0,"avg_latency_ms":3042.690063910981,"throughput_eps":0,"last_update":"2026-03-21T18:45:26.457031922Z"} +2026/03/21 18:45:28 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":13.74896844860946,"throughput_eps":0,"last_update":"2026-03-21T18:45:23.966087152Z"} +2026/03/21 18:45:28 [log_collector] {"stage_name":"log_collector","events_processed":4442,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":888.4,"last_update":"2026-03-21T18:45:23.870205857Z"} +2026/03/21 18:45:28 [metric_collector] {"stage_name":"metric_collector","events_processed":2373,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":474.6,"last_update":"2026-03-21T18:45:23.870274789Z"} +2026/03/21 18:45:28 ───────────────────────────────────────────────── +2026/03/21 18:45:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:45:33 [log_collector] {"stage_name":"log_collector","events_processed":4443,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":888.6,"last_update":"2026-03-21T18:45:28.869607213Z"} +2026/03/21 18:45:33 [metric_collector] {"stage_name":"metric_collector","events_processed":2379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":475.8,"last_update":"2026-03-21T18:45:28.870321851Z"} +2026/03/21 18:45:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:45:28.878386881Z"} +2026/03/21 18:45:33 [transform_engine] {"stage_name":"transform_engine","events_processed":79,"events_dropped":0,"avg_latency_ms":3042.690063910981,"throughput_eps":0,"last_update":"2026-03-21T18:45:28.96522322Z"} +2026/03/21 18:45:33 [detection_layer] {"stage_name":"detection_layer","events_processed":79,"events_dropped":0,"avg_latency_ms":13.98088415888757,"throughput_eps":0,"last_update":"2026-03-21T18:45:28.965339032Z"} +2026/03/21 18:45:33 ───────────────────────────────────────────────── +2026/03/21 18:45:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:45:38 [detection_layer] {"stage_name":"detection_layer","events_processed":79,"events_dropped":0,"avg_latency_ms":13.98088415888757,"throughput_eps":0,"last_update":"2026-03-21T18:45:33.966240693Z"} +2026/03/21 18:45:38 [log_collector] {"stage_name":"log_collector","events_processed":4459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":891.8,"last_update":"2026-03-21T18:45:33.869407685Z"} +2026/03/21 18:45:38 [metric_collector] {"stage_name":"metric_collector","events_processed":2384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":476.8,"last_update":"2026-03-21T18:45:33.86989584Z"} +2026/03/21 18:45:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:45:33.878842738Z"} +2026/03/21 18:45:38 [transform_engine] {"stage_name":"transform_engine","events_processed":79,"events_dropped":0,"avg_latency_ms":3042.690063910981,"throughput_eps":0,"last_update":"2026-03-21T18:45:33.966206478Z"} +2026/03/21 18:45:38 ───────────────────────────────────────────────── +2026/03/21 18:45:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:45:43 [log_collector] {"stage_name":"log_collector","events_processed":4459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":891.8,"last_update":"2026-03-21T18:45:38.869493487Z"} +2026/03/21 18:45:43 [metric_collector] {"stage_name":"metric_collector","events_processed":2389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":477.8,"last_update":"2026-03-21T18:45:38.869950341Z"} +2026/03/21 18:45:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":958,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:45:38.878240241Z"} +2026/03/21 18:45:43 [transform_engine] {"stage_name":"transform_engine","events_processed":79,"events_dropped":0,"avg_latency_ms":3042.690063910981,"throughput_eps":0,"last_update":"2026-03-21T18:45:38.965743849Z"} +2026/03/21 18:45:43 [detection_layer] {"stage_name":"detection_layer","events_processed":79,"events_dropped":0,"avg_latency_ms":13.98088415888757,"throughput_eps":0,"last_update":"2026-03-21T18:45:38.965632756Z"} +2026/03/21 18:45:43 ───────────────────────────────────────────────── +2026/03/21 18:45:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:45:48 [log_collector] {"stage_name":"log_collector","events_processed":4459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":891.8,"last_update":"2026-03-21T18:45:43.869402393Z"} +2026/03/21 18:45:48 [metric_collector] {"stage_name":"metric_collector","events_processed":2394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":478.8,"last_update":"2026-03-21T18:45:43.870113676Z"} +2026/03/21 18:45:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:45:43.877976317Z"} +2026/03/21 18:45:48 [transform_engine] {"stage_name":"transform_engine","events_processed":79,"events_dropped":0,"avg_latency_ms":3042.690063910981,"throughput_eps":0,"last_update":"2026-03-21T18:45:43.965079057Z"} +2026/03/21 18:45:48 [detection_layer] {"stage_name":"detection_layer","events_processed":79,"events_dropped":0,"avg_latency_ms":13.98088415888757,"throughput_eps":0,"last_update":"2026-03-21T18:45:43.96618181Z"} +2026/03/21 18:45:48 ───────────────────────────────────────────────── +2026/03/21 18:45:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:45:53 [transform_engine] {"stage_name":"transform_engine","events_processed":79,"events_dropped":0,"avg_latency_ms":3042.690063910981,"throughput_eps":0,"last_update":"2026-03-21T18:45:48.96537766Z"} +2026/03/21 18:45:53 [detection_layer] {"stage_name":"detection_layer","events_processed":79,"events_dropped":0,"avg_latency_ms":13.98088415888757,"throughput_eps":0,"last_update":"2026-03-21T18:45:48.965408779Z"} +2026/03/21 18:45:53 [log_collector] {"stage_name":"log_collector","events_processed":4459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":891.8,"last_update":"2026-03-21T18:45:48.869459213Z"} +2026/03/21 18:45:53 [metric_collector] {"stage_name":"metric_collector","events_processed":2399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":479.8,"last_update":"2026-03-21T18:45:48.870054684Z"} +2026/03/21 18:45:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":962,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:45:48.878158166Z"} +2026/03/21 18:45:53 ───────────────────────────────────────────────── +2026/03/21 18:45:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:45:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:45:53.877976111Z"} +2026/03/21 18:45:58 [transform_engine] {"stage_name":"transform_engine","events_processed":80,"events_dropped":0,"avg_latency_ms":2456.502153928785,"throughput_eps":0,"last_update":"2026-03-21T18:45:53.965168102Z"} +2026/03/21 18:45:58 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":14.218206127110056,"throughput_eps":0,"last_update":"2026-03-21T18:45:53.966385333Z"} +2026/03/21 18:45:58 [log_collector] {"stage_name":"log_collector","events_processed":4459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":891.8,"last_update":"2026-03-21T18:45:53.869871707Z"} +2026/03/21 18:45:58 [metric_collector] {"stage_name":"metric_collector","events_processed":2404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":480.8,"last_update":"2026-03-21T18:45:53.870027175Z"} +2026/03/21 18:45:58 ───────────────────────────────────────────────── +2026/03/21 18:46:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:46:03 [log_collector] {"stage_name":"log_collector","events_processed":4459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":891.8,"last_update":"2026-03-21T18:45:58.86941681Z"} +2026/03/21 18:46:03 [metric_collector] {"stage_name":"metric_collector","events_processed":2409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":481.8,"last_update":"2026-03-21T18:45:58.870137792Z"} +2026/03/21 18:46:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:45:58.877961739Z"} +2026/03/21 18:46:03 [transform_engine] {"stage_name":"transform_engine","events_processed":80,"events_dropped":0,"avg_latency_ms":2456.502153928785,"throughput_eps":0,"last_update":"2026-03-21T18:45:58.965082412Z"} +2026/03/21 18:46:03 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":14.218206127110056,"throughput_eps":0,"last_update":"2026-03-21T18:45:58.966257854Z"} +2026/03/21 18:46:03 ───────────────────────────────────────────────── +2026/03/21 18:46:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:46:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:46:03.878522982Z"} +2026/03/21 18:46:08 [transform_engine] {"stage_name":"transform_engine","events_processed":80,"events_dropped":0,"avg_latency_ms":2456.502153928785,"throughput_eps":0,"last_update":"2026-03-21T18:46:03.965968558Z"} +2026/03/21 18:46:08 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":14.218206127110056,"throughput_eps":0,"last_update":"2026-03-21T18:46:03.965928432Z"} +2026/03/21 18:46:08 [log_collector] {"stage_name":"log_collector","events_processed":4459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":891.8,"last_update":"2026-03-21T18:46:03.869958245Z"} +2026/03/21 18:46:08 [metric_collector] {"stage_name":"metric_collector","events_processed":2414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":482.8,"last_update":"2026-03-21T18:46:03.870373671Z"} +2026/03/21 18:46:08 ───────────────────────────────────────────────── +2026/03/21 18:46:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:46:13 [metric_collector] {"stage_name":"metric_collector","events_processed":2419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":483.8,"last_update":"2026-03-21T18:46:08.869846519Z"} +2026/03/21 18:46:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":970,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:46:08.878699808Z"} +2026/03/21 18:46:13 [transform_engine] {"stage_name":"transform_engine","events_processed":80,"events_dropped":0,"avg_latency_ms":2456.502153928785,"throughput_eps":0,"last_update":"2026-03-21T18:46:08.966034903Z"} +2026/03/21 18:46:13 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":14.218206127110056,"throughput_eps":0,"last_update":"2026-03-21T18:46:08.965972514Z"} +2026/03/21 18:46:13 [log_collector] {"stage_name":"log_collector","events_processed":4459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":891.8,"last_update":"2026-03-21T18:46:08.869448607Z"} +2026/03/21 18:46:13 ───────────────────────────────────────────────── +2026/03/21 18:46:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:46:18 [log_collector] {"stage_name":"log_collector","events_processed":4459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":891.8,"last_update":"2026-03-21T18:46:13.870058124Z"} +2026/03/21 18:46:18 [metric_collector] {"stage_name":"metric_collector","events_processed":2424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":484.8,"last_update":"2026-03-21T18:46:13.870299878Z"} +2026/03/21 18:46:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:46:13.878428268Z"} +2026/03/21 18:46:18 [transform_engine] {"stage_name":"transform_engine","events_processed":80,"events_dropped":0,"avg_latency_ms":2456.502153928785,"throughput_eps":0,"last_update":"2026-03-21T18:46:13.965663532Z"} +2026/03/21 18:46:18 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":14.218206127110056,"throughput_eps":0,"last_update":"2026-03-21T18:46:13.96560994Z"} +2026/03/21 18:46:18 ───────────────────────────────────────────────── +2026/03/21 18:46:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:46:23 [log_collector] {"stage_name":"log_collector","events_processed":4459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":891.8,"last_update":"2026-03-21T18:46:18.870130267Z"} +2026/03/21 18:46:23 [metric_collector] {"stage_name":"metric_collector","events_processed":2429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":485.8,"last_update":"2026-03-21T18:46:18.870474136Z"} +2026/03/21 18:46:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:46:18.87926226Z"} +2026/03/21 18:46:23 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":1978.3632407430282,"throughput_eps":0,"last_update":"2026-03-21T18:46:19.031426449Z"} +2026/03/21 18:46:23 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":14.218206127110056,"throughput_eps":0,"last_update":"2026-03-21T18:46:18.965602319Z"} +2026/03/21 18:46:23 ───────────────────────────────────────────────── +2026/03/21 18:46:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:46:28 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":1978.3632407430282,"throughput_eps":0,"last_update":"2026-03-21T18:46:23.966104947Z"} +2026/03/21 18:46:28 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":14.653387501688046,"throughput_eps":0,"last_update":"2026-03-21T18:46:23.966169801Z"} +2026/03/21 18:46:28 [log_collector] {"stage_name":"log_collector","events_processed":4459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":891.8,"last_update":"2026-03-21T18:46:23.869426885Z"} +2026/03/21 18:46:28 [metric_collector] {"stage_name":"metric_collector","events_processed":2434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":486.8,"last_update":"2026-03-21T18:46:23.869891635Z"} +2026/03/21 18:46:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:46:23.878936251Z"} +2026/03/21 18:46:28 ───────────────────────────────────────────────── +2026/03/21 18:46:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:46:33 [log_collector] {"stage_name":"log_collector","events_processed":4459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":891.8,"last_update":"2026-03-21T18:46:28.869501235Z"} +2026/03/21 18:46:33 [metric_collector] {"stage_name":"metric_collector","events_processed":2439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":487.8,"last_update":"2026-03-21T18:46:28.869792574Z"} +2026/03/21 18:46:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:46:28.878314668Z"} +2026/03/21 18:46:33 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":1978.3632407430282,"throughput_eps":0,"last_update":"2026-03-21T18:46:28.96552294Z"} +2026/03/21 18:46:33 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":14.653387501688046,"throughput_eps":0,"last_update":"2026-03-21T18:46:28.965651907Z"} +2026/03/21 18:46:33 ───────────────────────────────────────────────── +Saved state: 12 clusters, 4460 messages, reason: none +2026/03/21 18:46:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:46:38 [metric_collector] {"stage_name":"metric_collector","events_processed":2444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":488.8,"last_update":"2026-03-21T18:46:33.869856865Z"} +2026/03/21 18:46:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:46:33.896114984Z"} +2026/03/21 18:46:38 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":1978.3632407430282,"throughput_eps":0,"last_update":"2026-03-21T18:46:33.965321022Z"} +2026/03/21 18:46:38 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":14.653387501688046,"throughput_eps":0,"last_update":"2026-03-21T18:46:33.96527811Z"} +2026/03/21 18:46:38 [log_collector] {"stage_name":"log_collector","events_processed":4459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":891.8,"last_update":"2026-03-21T18:46:33.869566509Z"} +2026/03/21 18:46:38 ───────────────────────────────────────────────── +2026/03/21 18:46:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:46:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:46:38.879234639Z"} +2026/03/21 18:46:43 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":1978.3632407430282,"throughput_eps":0,"last_update":"2026-03-21T18:46:38.965775072Z"} +2026/03/21 18:46:43 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":14.653387501688046,"throughput_eps":0,"last_update":"2026-03-21T18:46:38.965794689Z"} +2026/03/21 18:46:43 [log_collector] {"stage_name":"log_collector","events_processed":4462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":892.4,"last_update":"2026-03-21T18:46:38.869986924Z"} +2026/03/21 18:46:43 [metric_collector] {"stage_name":"metric_collector","events_processed":2449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":489.8,"last_update":"2026-03-21T18:46:38.870210723Z"} +2026/03/21 18:46:43 ───────────────────────────────────────────────── +2026/03/21 18:46:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:46:48 [log_collector] {"stage_name":"log_collector","events_processed":4473,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":894.6,"last_update":"2026-03-21T18:46:43.869635553Z"} +2026/03/21 18:46:48 [metric_collector] {"stage_name":"metric_collector","events_processed":2454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":490.8,"last_update":"2026-03-21T18:46:43.869884871Z"} +2026/03/21 18:46:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:46:43.878722129Z"} +2026/03/21 18:46:48 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":1978.3632407430282,"throughput_eps":0,"last_update":"2026-03-21T18:46:43.965994904Z"} +2026/03/21 18:46:48 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":14.653387501688046,"throughput_eps":0,"last_update":"2026-03-21T18:46:43.966110636Z"} +2026/03/21 18:46:48 ───────────────────────────────────────────────── +2026/03/21 18:46:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:46:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:46:48.879136756Z"} +2026/03/21 18:46:53 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":1606.3793575944228,"throughput_eps":0,"last_update":"2026-03-21T18:46:49.083930481Z"} +2026/03/21 18:46:53 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":14.653387501688046,"throughput_eps":0,"last_update":"2026-03-21T18:46:48.96546835Z"} +2026/03/21 18:46:53 [log_collector] {"stage_name":"log_collector","events_processed":4473,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":894.6,"last_update":"2026-03-21T18:46:48.869421476Z"} +2026/03/21 18:46:53 [metric_collector] {"stage_name":"metric_collector","events_processed":2459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":491.8,"last_update":"2026-03-21T18:46:48.86987264Z"} +2026/03/21 18:46:53 ───────────────────────────────────────────────── +2026/03/21 18:46:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:46:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:46:53.878902593Z"} +2026/03/21 18:46:58 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":1606.3793575944228,"throughput_eps":0,"last_update":"2026-03-21T18:46:53.966136965Z"} +2026/03/21 18:46:58 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":14.777668001350438,"throughput_eps":0,"last_update":"2026-03-21T18:46:53.966105083Z"} +2026/03/21 18:46:58 [log_collector] {"stage_name":"log_collector","events_processed":4473,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":894.6,"last_update":"2026-03-21T18:46:53.869414658Z"} +2026/03/21 18:46:58 [metric_collector] {"stage_name":"metric_collector","events_processed":2463,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":492.6,"last_update":"2026-03-21T18:46:53.86953568Z"} +2026/03/21 18:46:58 ───────────────────────────────────────────────── +2026/03/21 18:47:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:47:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":990,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:46:58.879207915Z"} +2026/03/21 18:47:03 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":1606.3793575944228,"throughput_eps":0,"last_update":"2026-03-21T18:46:58.965520401Z"} +2026/03/21 18:47:03 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":14.777668001350438,"throughput_eps":0,"last_update":"2026-03-21T18:46:58.965496836Z"} +2026/03/21 18:47:03 [log_collector] {"stage_name":"log_collector","events_processed":4473,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":894.6,"last_update":"2026-03-21T18:46:58.869877982Z"} +2026/03/21 18:47:03 [metric_collector] {"stage_name":"metric_collector","events_processed":2468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":493.6,"last_update":"2026-03-21T18:46:58.869946403Z"} +2026/03/21 18:47:03 ───────────────────────────────────────────────── +2026/03/21 18:47:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:47:08 [log_collector] {"stage_name":"log_collector","events_processed":4473,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":894.6,"last_update":"2026-03-21T18:47:03.870084908Z"} +2026/03/21 18:47:08 [metric_collector] {"stage_name":"metric_collector","events_processed":2474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":494.8,"last_update":"2026-03-21T18:47:03.870397286Z"} +2026/03/21 18:47:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":992,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:47:03.879525321Z"} +2026/03/21 18:47:08 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":1606.3793575944228,"throughput_eps":0,"last_update":"2026-03-21T18:47:03.96574534Z"} +2026/03/21 18:47:08 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":14.777668001350438,"throughput_eps":0,"last_update":"2026-03-21T18:47:03.965726063Z"} +2026/03/21 18:47:08 ───────────────────────────────────────────────── +2026/03/21 18:47:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:47:13 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":1606.3793575944228,"throughput_eps":0,"last_update":"2026-03-21T18:47:08.965904788Z"} +2026/03/21 18:47:13 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":14.777668001350438,"throughput_eps":0,"last_update":"2026-03-21T18:47:08.965803564Z"} +2026/03/21 18:47:13 [log_collector] {"stage_name":"log_collector","events_processed":4473,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":894.6,"last_update":"2026-03-21T18:47:08.870172437Z"} +2026/03/21 18:47:13 [metric_collector] {"stage_name":"metric_collector","events_processed":2479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":495.8,"last_update":"2026-03-21T18:47:08.870663196Z"} +2026/03/21 18:47:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:47:08.879558776Z"} +2026/03/21 18:47:13 ───────────────────────────────────────────────── +2026/03/21 18:47:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:47:18 [log_collector] {"stage_name":"log_collector","events_processed":4473,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":894.6,"last_update":"2026-03-21T18:47:13.870310143Z"} +2026/03/21 18:47:18 [metric_collector] {"stage_name":"metric_collector","events_processed":2484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":496.8,"last_update":"2026-03-21T18:47:13.87078878Z"} +2026/03/21 18:47:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":996,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:47:13.879193991Z"} +2026/03/21 18:47:18 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":1606.3793575944228,"throughput_eps":0,"last_update":"2026-03-21T18:47:13.965679138Z"} +2026/03/21 18:47:18 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":14.777668001350438,"throughput_eps":0,"last_update":"2026-03-21T18:47:13.965553137Z"} +2026/03/21 18:47:18 ───────────────────────────────────────────────── +2026/03/21 18:47:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:47:23 [metric_collector] {"stage_name":"metric_collector","events_processed":2489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":497.8,"last_update":"2026-03-21T18:47:18.870372847Z"} +2026/03/21 18:47:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:47:18.878692894Z"} +2026/03/21 18:47:23 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":1298.5059812755383,"throughput_eps":0,"last_update":"2026-03-21T18:47:19.032930756Z"} +2026/03/21 18:47:23 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":14.777668001350438,"throughput_eps":0,"last_update":"2026-03-21T18:47:18.965903802Z"} +2026/03/21 18:47:23 [log_collector] {"stage_name":"log_collector","events_processed":4473,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":894.6,"last_update":"2026-03-21T18:47:18.869846178Z"} +2026/03/21 18:47:23 ───────────────────────────────────────────────── +2026/03/21 18:47:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:47:28 [log_collector] {"stage_name":"log_collector","events_processed":4473,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":894.6,"last_update":"2026-03-21T18:47:23.870324049Z"} +2026/03/21 18:47:28 [metric_collector] {"stage_name":"metric_collector","events_processed":2494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":498.8,"last_update":"2026-03-21T18:47:23.870802485Z"} +2026/03/21 18:47:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:47:23.878828469Z"} +2026/03/21 18:47:28 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":1298.5059812755383,"throughput_eps":0,"last_update":"2026-03-21T18:47:23.966031892Z"} +2026/03/21 18:47:28 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":15.149570401080352,"throughput_eps":0,"last_update":"2026-03-21T18:47:23.966142986Z"} +2026/03/21 18:47:28 ───────────────────────────────────────────────── +2026/03/21 18:47:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:47:33 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":1298.5059812755383,"throughput_eps":0,"last_update":"2026-03-21T18:47:28.965218943Z"} +2026/03/21 18:47:33 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":15.149570401080352,"throughput_eps":0,"last_update":"2026-03-21T18:47:28.965279058Z"} +2026/03/21 18:47:33 [log_collector] {"stage_name":"log_collector","events_processed":4473,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":894.6,"last_update":"2026-03-21T18:47:28.870092923Z"} +2026/03/21 18:47:33 [metric_collector] {"stage_name":"metric_collector","events_processed":2499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":499.8,"last_update":"2026-03-21T18:47:28.870592791Z"} +2026/03/21 18:47:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:47:28.880460894Z"} +2026/03/21 18:47:33 ───────────────────────────────────────────────── +2026/03/21 18:47:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:47:38 [log_collector] {"stage_name":"log_collector","events_processed":4473,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":894.6,"last_update":"2026-03-21T18:47:33.869557437Z"} +2026/03/21 18:47:38 [metric_collector] {"stage_name":"metric_collector","events_processed":2508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":501.6,"last_update":"2026-03-21T18:47:38.869693127Z"} +2026/03/21 18:47:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:47:33.877982275Z"} +2026/03/21 18:47:38 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":1298.5059812755383,"throughput_eps":0,"last_update":"2026-03-21T18:47:33.965166Z"} +2026/03/21 18:47:38 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":15.149570401080352,"throughput_eps":0,"last_update":"2026-03-21T18:47:33.965415959Z"} +2026/03/21 18:47:38 ───────────────────────────────────────────────── +2026/03/21 18:47:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:47:43 [log_collector] {"stage_name":"log_collector","events_processed":4473,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":894.6,"last_update":"2026-03-21T18:47:38.869802587Z"} +2026/03/21 18:47:43 [metric_collector] {"stage_name":"metric_collector","events_processed":2508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":501.6,"last_update":"2026-03-21T18:47:38.869693127Z"} +2026/03/21 18:47:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1006,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:47:38.879276775Z"} +2026/03/21 18:47:43 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":1298.5059812755383,"throughput_eps":0,"last_update":"2026-03-21T18:47:38.965631593Z"} +2026/03/21 18:47:43 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":15.149570401080352,"throughput_eps":0,"last_update":"2026-03-21T18:47:38.965579162Z"} +2026/03/21 18:47:43 ───────────────────────────────────────────────── +Saved state: 12 clusters, 4474 messages, reason: none +2026/03/21 18:47:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:47:48 [log_collector] {"stage_name":"log_collector","events_processed":4473,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":894.6,"last_update":"2026-03-21T18:47:43.869410839Z"} +2026/03/21 18:47:48 [metric_collector] {"stage_name":"metric_collector","events_processed":2514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":502.8,"last_update":"2026-03-21T18:47:43.870013494Z"} +2026/03/21 18:47:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1008,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:47:43.878513706Z"} +2026/03/21 18:47:48 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":1298.5059812755383,"throughput_eps":0,"last_update":"2026-03-21T18:47:43.965737868Z"} +2026/03/21 18:47:48 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":15.149570401080352,"throughput_eps":0,"last_update":"2026-03-21T18:47:43.965709143Z"} +2026/03/21 18:47:48 ───────────────────────────────────────────────── +2026/03/21 18:47:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:47:53 [metric_collector] {"stage_name":"metric_collector","events_processed":2518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":503.6,"last_update":"2026-03-21T18:47:48.869462592Z"} +2026/03/21 18:47:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:47:48.878099405Z"} +2026/03/21 18:47:53 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":1298.5059812755383,"throughput_eps":0,"last_update":"2026-03-21T18:47:48.965278633Z"} +2026/03/21 18:47:53 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":15.149570401080352,"throughput_eps":0,"last_update":"2026-03-21T18:47:48.965306036Z"} +2026/03/21 18:47:53 [log_collector] {"stage_name":"log_collector","events_processed":4478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":895.6,"last_update":"2026-03-21T18:47:48.869394731Z"} +2026/03/21 18:47:53 ───────────────────────────────────────────────── +2026/03/21 18:47:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:47:58 [log_collector] {"stage_name":"log_collector","events_processed":4478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":895.6,"last_update":"2026-03-21T18:47:53.86952153Z"} +2026/03/21 18:47:58 [metric_collector] {"stage_name":"metric_collector","events_processed":2524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":504.8,"last_update":"2026-03-21T18:47:53.86994453Z"} +2026/03/21 18:47:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1012,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:47:53.879396366Z"} +2026/03/21 18:47:58 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":1059.3492492204307,"throughput_eps":0,"last_update":"2026-03-21T18:47:53.96567042Z"} +2026/03/21 18:47:58 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":14.020729920864282,"throughput_eps":0,"last_update":"2026-03-21T18:47:53.965659157Z"} +2026/03/21 18:47:58 ───────────────────────────────────────────────── +2026/03/21 18:48:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:48:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:47:58.876219548Z"} +2026/03/21 18:48:03 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":1059.3492492204307,"throughput_eps":0,"last_update":"2026-03-21T18:47:58.965147063Z"} +2026/03/21 18:48:03 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":14.020729920864282,"throughput_eps":0,"last_update":"2026-03-21T18:47:58.966315111Z"} +2026/03/21 18:48:03 [log_collector] {"stage_name":"log_collector","events_processed":4478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":895.6,"last_update":"2026-03-21T18:47:58.869545463Z"} +2026/03/21 18:48:03 [metric_collector] {"stage_name":"metric_collector","events_processed":2529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":505.8,"last_update":"2026-03-21T18:47:58.869799008Z"} +2026/03/21 18:48:03 ───────────────────────────────────────────────── +2026/03/21 18:48:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:48:08 [log_collector] {"stage_name":"log_collector","events_processed":4478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":895.6,"last_update":"2026-03-21T18:48:03.869593544Z"} +2026/03/21 18:48:08 [metric_collector] {"stage_name":"metric_collector","events_processed":2534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":506.8,"last_update":"2026-03-21T18:48:03.870039288Z"} +2026/03/21 18:48:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:48:03.876592632Z"} +2026/03/21 18:48:08 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":1059.3492492204307,"throughput_eps":0,"last_update":"2026-03-21T18:48:03.96602756Z"} +2026/03/21 18:48:08 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":14.020729920864282,"throughput_eps":0,"last_update":"2026-03-21T18:48:03.966015267Z"} +2026/03/21 18:48:08 ───────────────────────────────────────────────── +2026/03/21 18:48:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:48:13 [log_collector] {"stage_name":"log_collector","events_processed":4478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":895.6,"last_update":"2026-03-21T18:48:08.870088542Z"} +2026/03/21 18:48:13 [metric_collector] {"stage_name":"metric_collector","events_processed":2539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":507.8,"last_update":"2026-03-21T18:48:08.870154318Z"} +2026/03/21 18:48:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1018,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:48:08.876729443Z"} +2026/03/21 18:48:13 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":1059.3492492204307,"throughput_eps":0,"last_update":"2026-03-21T18:48:08.965978355Z"} +2026/03/21 18:48:13 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":14.020729920864282,"throughput_eps":0,"last_update":"2026-03-21T18:48:08.965968056Z"} +2026/03/21 18:48:13 ───────────────────────────────────────────────── +2026/03/21 18:48:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:48:18 [log_collector] {"stage_name":"log_collector","events_processed":4478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":895.6,"last_update":"2026-03-21T18:48:13.86980419Z"} +2026/03/21 18:48:18 [metric_collector] {"stage_name":"metric_collector","events_processed":2544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":508.8,"last_update":"2026-03-21T18:48:13.869597785Z"} +2026/03/21 18:48:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1020,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:48:13.879392247Z"} +2026/03/21 18:48:18 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":1059.3492492204307,"throughput_eps":0,"last_update":"2026-03-21T18:48:13.965523136Z"} +2026/03/21 18:48:18 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":14.020729920864282,"throughput_eps":0,"last_update":"2026-03-21T18:48:13.965509751Z"} +2026/03/21 18:48:18 ───────────────────────────────────────────────── +2026/03/21 18:48:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:48:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1022,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:48:18.875923535Z"} +2026/03/21 18:48:23 [transform_engine] {"stage_name":"transform_engine","events_processed":85,"events_dropped":0,"avg_latency_ms":1479.1592095763447,"throughput_eps":0,"last_update":"2026-03-21T18:48:22.124521699Z"} +2026/03/21 18:48:23 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":14.020729920864282,"throughput_eps":0,"last_update":"2026-03-21T18:48:18.966107137Z"} +2026/03/21 18:48:23 [log_collector] {"stage_name":"log_collector","events_processed":4478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":895.6,"last_update":"2026-03-21T18:48:18.869402424Z"} +2026/03/21 18:48:23 [metric_collector] {"stage_name":"metric_collector","events_processed":2549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":509.8,"last_update":"2026-03-21T18:48:18.869825504Z"} +2026/03/21 18:48:23 ───────────────────────────────────────────────── +2026/03/21 18:48:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:48:28 [log_collector] {"stage_name":"log_collector","events_processed":4478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":895.6,"last_update":"2026-03-21T18:48:23.869420182Z"} +2026/03/21 18:48:28 [metric_collector] {"stage_name":"metric_collector","events_processed":2553,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":510.6,"last_update":"2026-03-21T18:48:23.869395414Z"} +2026/03/21 18:48:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:48:23.878425602Z"} +2026/03/21 18:48:28 [transform_engine] {"stage_name":"transform_engine","events_processed":85,"events_dropped":0,"avg_latency_ms":1479.1592095763447,"throughput_eps":0,"last_update":"2026-03-21T18:48:23.965072119Z"} +2026/03/21 18:48:28 [detection_layer] {"stage_name":"detection_layer","events_processed":85,"events_dropped":0,"avg_latency_ms":13.483750736691427,"throughput_eps":0,"last_update":"2026-03-21T18:48:23.96614765Z"} +2026/03/21 18:48:28 ───────────────────────────────────────────────── +2026/03/21 18:48:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:48:33 [log_collector] {"stage_name":"log_collector","events_processed":4481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":896.2,"last_update":"2026-03-21T18:48:28.87002651Z"} +2026/03/21 18:48:33 [metric_collector] {"stage_name":"metric_collector","events_processed":2559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":511.8,"last_update":"2026-03-21T18:48:28.87044918Z"} +2026/03/21 18:48:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:48:28.876423964Z"} +2026/03/21 18:48:33 [transform_engine] {"stage_name":"transform_engine","events_processed":85,"events_dropped":0,"avg_latency_ms":1479.1592095763447,"throughput_eps":0,"last_update":"2026-03-21T18:48:28.965670071Z"} +2026/03/21 18:48:33 [detection_layer] {"stage_name":"detection_layer","events_processed":85,"events_dropped":0,"avg_latency_ms":13.483750736691427,"throughput_eps":0,"last_update":"2026-03-21T18:48:28.965657927Z"} +2026/03/21 18:48:33 ───────────────────────────────────────────────── +2026/03/21 18:48:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:48:38 [log_collector] {"stage_name":"log_collector","events_processed":4605,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":921,"last_update":"2026-03-21T18:48:38.869404802Z"} +2026/03/21 18:48:38 [metric_collector] {"stage_name":"metric_collector","events_processed":2564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":512.8,"last_update":"2026-03-21T18:48:33.870444506Z"} +2026/03/21 18:48:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:48:33.878585611Z"} +2026/03/21 18:48:38 [transform_engine] {"stage_name":"transform_engine","events_processed":85,"events_dropped":0,"avg_latency_ms":1479.1592095763447,"throughput_eps":0,"last_update":"2026-03-21T18:48:33.965817669Z"} +2026/03/21 18:48:38 [detection_layer] {"stage_name":"detection_layer","events_processed":85,"events_dropped":0,"avg_latency_ms":13.483750736691427,"throughput_eps":0,"last_update":"2026-03-21T18:48:33.965809995Z"} +2026/03/21 18:48:38 ───────────────────────────────────────────────── +2026/03/21 18:48:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:48:43 [transform_engine] {"stage_name":"transform_engine","events_processed":85,"events_dropped":0,"avg_latency_ms":1479.1592095763447,"throughput_eps":0,"last_update":"2026-03-21T18:48:38.965575903Z"} +2026/03/21 18:48:43 [detection_layer] {"stage_name":"detection_layer","events_processed":85,"events_dropped":0,"avg_latency_ms":13.483750736691427,"throughput_eps":0,"last_update":"2026-03-21T18:48:38.965561937Z"} +2026/03/21 18:48:43 [log_collector] {"stage_name":"log_collector","events_processed":4605,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":921,"last_update":"2026-03-21T18:48:38.869404802Z"} +2026/03/21 18:48:43 [metric_collector] {"stage_name":"metric_collector","events_processed":2569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":513.8,"last_update":"2026-03-21T18:48:38.869848772Z"} +2026/03/21 18:48:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:48:38.87895232Z"} +2026/03/21 18:48:43 ───────────────────────────────────────────────── +2026/03/21 18:48:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:48:48 [detection_layer] {"stage_name":"detection_layer","events_processed":85,"events_dropped":0,"avg_latency_ms":13.483750736691427,"throughput_eps":0,"last_update":"2026-03-21T18:48:43.966187475Z"} +2026/03/21 18:48:48 [log_collector] {"stage_name":"log_collector","events_processed":4834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":966.8,"last_update":"2026-03-21T18:48:43.870220394Z"} +2026/03/21 18:48:48 [metric_collector] {"stage_name":"metric_collector","events_processed":2574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":514.8,"last_update":"2026-03-21T18:48:43.870570063Z"} +2026/03/21 18:48:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:48:43.875877991Z"} +2026/03/21 18:48:48 [transform_engine] {"stage_name":"transform_engine","events_processed":85,"events_dropped":0,"avg_latency_ms":1479.1592095763447,"throughput_eps":0,"last_update":"2026-03-21T18:48:43.966199608Z"} +2026/03/21 18:48:48 ───────────────────────────────────────────────── +2026/03/21 18:48:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:48:53 [log_collector] {"stage_name":"log_collector","events_processed":4834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":966.8,"last_update":"2026-03-21T18:48:48.869988501Z"} +2026/03/21 18:48:53 [metric_collector] {"stage_name":"metric_collector","events_processed":2579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":515.8,"last_update":"2026-03-21T18:48:48.870154608Z"} +2026/03/21 18:48:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:48:48.878895072Z"} +2026/03/21 18:48:53 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":1207.141092461076,"throughput_eps":0,"last_update":"2026-03-21T18:48:49.084150321Z"} +2026/03/21 18:48:53 [detection_layer] {"stage_name":"detection_layer","events_processed":85,"events_dropped":0,"avg_latency_ms":13.483750736691427,"throughput_eps":0,"last_update":"2026-03-21T18:48:48.966177818Z"} +2026/03/21 18:48:53 ───────────────────────────────────────────────── +2026/03/21 18:48:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:48:58 [log_collector] {"stage_name":"log_collector","events_processed":4834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":966.8,"last_update":"2026-03-21T18:48:53.869432788Z"} +2026/03/21 18:48:58 [metric_collector] {"stage_name":"metric_collector","events_processed":2584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":516.8,"last_update":"2026-03-21T18:48:53.869828466Z"} +2026/03/21 18:48:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1036,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:48:53.878210302Z"} +2026/03/21 18:48:58 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":1207.141092461076,"throughput_eps":0,"last_update":"2026-03-21T18:48:53.965579283Z"} +2026/03/21 18:48:58 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":13.717866789353142,"throughput_eps":0,"last_update":"2026-03-21T18:48:53.965568502Z"} +2026/03/21 18:48:58 ───────────────────────────────────────────────── +2026/03/21 18:49:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:49:03 [log_collector] {"stage_name":"log_collector","events_processed":4834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":966.8,"last_update":"2026-03-21T18:49:03.869949827Z"} +2026/03/21 18:49:03 [metric_collector] {"stage_name":"metric_collector","events_processed":2589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":517.8,"last_update":"2026-03-21T18:48:58.870723876Z"} +2026/03/21 18:49:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:48:58.879833226Z"} +2026/03/21 18:49:03 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":1207.141092461076,"throughput_eps":0,"last_update":"2026-03-21T18:48:58.965066535Z"} +2026/03/21 18:49:03 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":13.717866789353142,"throughput_eps":0,"last_update":"2026-03-21T18:48:58.966305669Z"} +2026/03/21 18:49:03 ───────────────────────────────────────────────── +2026/03/21 18:49:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:49:08 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":1207.141092461076,"throughput_eps":0,"last_update":"2026-03-21T18:49:03.965404848Z"} +2026/03/21 18:49:08 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":13.717866789353142,"throughput_eps":0,"last_update":"2026-03-21T18:49:03.965394408Z"} +2026/03/21 18:49:08 [log_collector] {"stage_name":"log_collector","events_processed":4834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":966.8,"last_update":"2026-03-21T18:49:03.869949827Z"} +2026/03/21 18:49:08 [metric_collector] {"stage_name":"metric_collector","events_processed":2594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":518.8,"last_update":"2026-03-21T18:49:03.870381305Z"} +2026/03/21 18:49:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:49:03.878184462Z"} +2026/03/21 18:49:08 ───────────────────────────────────────────────── +2026/03/21 18:49:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:49:13 [log_collector] {"stage_name":"log_collector","events_processed":4834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":966.8,"last_update":"2026-03-21T18:49:08.870325907Z"} +2026/03/21 18:49:13 [metric_collector] {"stage_name":"metric_collector","events_processed":2599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":519.8,"last_update":"2026-03-21T18:49:08.870779836Z"} +2026/03/21 18:49:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:49:08.87923887Z"} +2026/03/21 18:49:13 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":1207.141092461076,"throughput_eps":0,"last_update":"2026-03-21T18:49:08.965468559Z"} +2026/03/21 18:49:13 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":13.717866789353142,"throughput_eps":0,"last_update":"2026-03-21T18:49:08.965456706Z"} +2026/03/21 18:49:13 ───────────────────────────────────────────────── +2026/03/21 18:49:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:49:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:49:13.879396572Z"} +2026/03/21 18:49:18 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":1207.141092461076,"throughput_eps":0,"last_update":"2026-03-21T18:49:13.96560001Z"} +2026/03/21 18:49:18 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":13.717866789353142,"throughput_eps":0,"last_update":"2026-03-21T18:49:13.965590993Z"} +2026/03/21 18:49:18 [log_collector] {"stage_name":"log_collector","events_processed":4834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":966.8,"last_update":"2026-03-21T18:49:18.870088521Z"} +2026/03/21 18:49:18 [metric_collector] {"stage_name":"metric_collector","events_processed":2604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":520.8,"last_update":"2026-03-21T18:49:13.870196017Z"} +2026/03/21 18:49:18 ───────────────────────────────────────────────── +2026/03/21 18:49:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:49:23 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":979.3168511688608,"throughput_eps":0,"last_update":"2026-03-21T18:49:19.03386216Z"} +2026/03/21 18:49:23 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":13.717866789353142,"throughput_eps":0,"last_update":"2026-03-21T18:49:18.965830923Z"} +2026/03/21 18:49:23 [log_collector] {"stage_name":"log_collector","events_processed":4834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":966.8,"last_update":"2026-03-21T18:49:18.870088521Z"} +2026/03/21 18:49:23 [metric_collector] {"stage_name":"metric_collector","events_processed":2609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":521.8,"last_update":"2026-03-21T18:49:18.870414506Z"} +2026/03/21 18:49:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:49:18.878538608Z"} +2026/03/21 18:49:23 ───────────────────────────────────────────────── +2026/03/21 18:49:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:49:28 [log_collector] {"stage_name":"log_collector","events_processed":4834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":966.8,"last_update":"2026-03-21T18:49:23.869902065Z"} +2026/03/21 18:49:28 [metric_collector] {"stage_name":"metric_collector","events_processed":2614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":522.8,"last_update":"2026-03-21T18:49:23.870227388Z"} +2026/03/21 18:49:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1048,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:49:23.879815345Z"} +2026/03/21 18:49:28 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":979.3168511688608,"throughput_eps":0,"last_update":"2026-03-21T18:49:23.966069721Z"} +2026/03/21 18:49:28 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":14.350805231482514,"throughput_eps":0,"last_update":"2026-03-21T18:49:23.966063288Z"} +2026/03/21 18:49:28 ───────────────────────────────────────────────── +2026/03/21 18:49:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:49:33 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":14.350805231482514,"throughput_eps":0,"last_update":"2026-03-21T18:49:28.96541572Z"} +2026/03/21 18:49:33 [log_collector] {"stage_name":"log_collector","events_processed":4834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":966.8,"last_update":"2026-03-21T18:49:28.86940774Z"} +2026/03/21 18:49:33 [metric_collector] {"stage_name":"metric_collector","events_processed":2619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":523.8,"last_update":"2026-03-21T18:49:28.869715038Z"} +2026/03/21 18:49:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1050,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:49:28.877973128Z"} +2026/03/21 18:49:33 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":979.3168511688608,"throughput_eps":0,"last_update":"2026-03-21T18:49:28.965136083Z"} +2026/03/21 18:49:33 ───────────────────────────────────────────────── +2026/03/21 18:49:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:49:38 [log_collector] {"stage_name":"log_collector","events_processed":4834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":966.8,"last_update":"2026-03-21T18:49:33.870269322Z"} +2026/03/21 18:49:38 [metric_collector] {"stage_name":"metric_collector","events_processed":2624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":524.8,"last_update":"2026-03-21T18:49:33.870722831Z"} +2026/03/21 18:49:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:49:33.879901824Z"} +2026/03/21 18:49:38 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":979.3168511688608,"throughput_eps":0,"last_update":"2026-03-21T18:49:33.965077784Z"} +2026/03/21 18:49:38 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":14.350805231482514,"throughput_eps":0,"last_update":"2026-03-21T18:49:33.96632841Z"} +2026/03/21 18:49:38 ───────────────────────────────────────────────── +2026/03/21 18:49:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:49:43 [log_collector] {"stage_name":"log_collector","events_processed":4834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":966.8,"last_update":"2026-03-21T18:49:38.869522518Z"} +2026/03/21 18:49:43 [metric_collector] {"stage_name":"metric_collector","events_processed":2629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":525.8,"last_update":"2026-03-21T18:49:38.869808485Z"} +2026/03/21 18:49:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:49:38.878083476Z"} +2026/03/21 18:49:43 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":979.3168511688608,"throughput_eps":0,"last_update":"2026-03-21T18:49:38.965456785Z"} +2026/03/21 18:49:43 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":14.350805231482514,"throughput_eps":0,"last_update":"2026-03-21T18:49:38.965441417Z"} +2026/03/21 18:49:43 ───────────────────────────────────────────────── +2026/03/21 18:49:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:49:48 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":979.3168511688608,"throughput_eps":0,"last_update":"2026-03-21T18:49:43.965225657Z"} +2026/03/21 18:49:48 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":14.350805231482514,"throughput_eps":0,"last_update":"2026-03-21T18:49:43.965269001Z"} +2026/03/21 18:49:48 [log_collector] {"stage_name":"log_collector","events_processed":4834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":966.8,"last_update":"2026-03-21T18:49:48.869501208Z"} +2026/03/21 18:49:48 [metric_collector] {"stage_name":"metric_collector","events_processed":2634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":526.8,"last_update":"2026-03-21T18:49:43.870679187Z"} +2026/03/21 18:49:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1056,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:49:43.879034302Z"} +2026/03/21 18:49:48 ───────────────────────────────────────────────── +Saved state: 12 clusters, 4835 messages, reason: none +2026/03/21 18:49:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:49:53 [log_collector] {"stage_name":"log_collector","events_processed":4834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":966.8,"last_update":"2026-03-21T18:49:48.869501208Z"} +2026/03/21 18:49:53 [metric_collector] {"stage_name":"metric_collector","events_processed":2639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":527.8,"last_update":"2026-03-21T18:49:48.869862129Z"} +2026/03/21 18:49:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:49:48.878882938Z"} +2026/03/21 18:49:53 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":796.7876693350887,"throughput_eps":0,"last_update":"2026-03-21T18:49:49.031786105Z"} +2026/03/21 18:49:53 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":14.350805231482514,"throughput_eps":0,"last_update":"2026-03-21T18:49:48.965269778Z"} +2026/03/21 18:49:53 ───────────────────────────────────────────────── +2026/03/21 18:49:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:49:58 [metric_collector] {"stage_name":"metric_collector","events_processed":2644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":528.8,"last_update":"2026-03-21T18:49:53.870264719Z"} +2026/03/21 18:49:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:49:53.878895792Z"} +2026/03/21 18:49:58 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":796.7876693350887,"throughput_eps":0,"last_update":"2026-03-21T18:49:53.966042136Z"} +2026/03/21 18:49:58 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":15.012647985186012,"throughput_eps":0,"last_update":"2026-03-21T18:49:53.966032177Z"} +2026/03/21 18:49:58 [log_collector] {"stage_name":"log_collector","events_processed":4837,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":967.4,"last_update":"2026-03-21T18:49:58.869403901Z"} +2026/03/21 18:49:58 ───────────────────────────────────────────────── +2026/03/21 18:50:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:50:03 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":15.012647985186012,"throughput_eps":0,"last_update":"2026-03-21T18:49:58.96526559Z"} +2026/03/21 18:50:03 [log_collector] {"stage_name":"log_collector","events_processed":4837,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":967.4,"last_update":"2026-03-21T18:49:58.869403901Z"} +2026/03/21 18:50:03 [metric_collector] {"stage_name":"metric_collector","events_processed":2649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":529.8,"last_update":"2026-03-21T18:49:58.869989292Z"} +2026/03/21 18:50:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1062,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:49:58.877946374Z"} +2026/03/21 18:50:03 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":796.7876693350887,"throughput_eps":0,"last_update":"2026-03-21T18:49:58.965236785Z"} +2026/03/21 18:50:03 ───────────────────────────────────────────────── +2026/03/21 18:50:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:50:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:50:03.887362093Z"} +2026/03/21 18:50:08 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":796.7876693350887,"throughput_eps":0,"last_update":"2026-03-21T18:50:03.965561489Z"} +2026/03/21 18:50:08 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":15.012647985186012,"throughput_eps":0,"last_update":"2026-03-21T18:50:03.965541972Z"} +2026/03/21 18:50:08 [log_collector] {"stage_name":"log_collector","events_processed":4862,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":972.4,"last_update":"2026-03-21T18:50:08.869513344Z"} +2026/03/21 18:50:08 [metric_collector] {"stage_name":"metric_collector","events_processed":2654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":530.8,"last_update":"2026-03-21T18:50:03.869877039Z"} +2026/03/21 18:50:08 ───────────────────────────────────────────────── +2026/03/21 18:50:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:50:13 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":15.012647985186012,"throughput_eps":0,"last_update":"2026-03-21T18:50:08.965445639Z"} +2026/03/21 18:50:13 [log_collector] {"stage_name":"log_collector","events_processed":4864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":972.8,"last_update":"2026-03-21T18:50:13.87010893Z"} +2026/03/21 18:50:13 [metric_collector] {"stage_name":"metric_collector","events_processed":2659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":531.8,"last_update":"2026-03-21T18:50:08.869817527Z"} +2026/03/21 18:50:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:50:08.87608311Z"} +2026/03/21 18:50:13 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":796.7876693350887,"throughput_eps":0,"last_update":"2026-03-21T18:50:08.96546165Z"} +2026/03/21 18:50:13 ───────────────────────────────────────────────── +2026/03/21 18:50:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:50:18 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":15.012647985186012,"throughput_eps":0,"last_update":"2026-03-21T18:50:13.965855299Z"} +2026/03/21 18:50:18 [log_collector] {"stage_name":"log_collector","events_processed":4864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":972.8,"last_update":"2026-03-21T18:50:18.870030294Z"} +2026/03/21 18:50:18 [metric_collector] {"stage_name":"metric_collector","events_processed":2664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":532.8,"last_update":"2026-03-21T18:50:13.870510399Z"} +2026/03/21 18:50:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:50:13.878528578Z"} +2026/03/21 18:50:18 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":796.7876693350887,"throughput_eps":0,"last_update":"2026-03-21T18:50:13.96574137Z"} +2026/03/21 18:50:18 ───────────────────────────────────────────────── +2026/03/21 18:50:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:50:23 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":15.012647985186012,"throughput_eps":0,"last_update":"2026-03-21T18:50:18.965408115Z"} +2026/03/21 18:50:23 [log_collector] {"stage_name":"log_collector","events_processed":4864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":972.8,"last_update":"2026-03-21T18:50:18.870030294Z"} +2026/03/21 18:50:23 [metric_collector] {"stage_name":"metric_collector","events_processed":2669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":533.8,"last_update":"2026-03-21T18:50:18.870498551Z"} +2026/03/21 18:50:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:50:18.879060242Z"} +2026/03/21 18:50:23 [transform_engine] {"stage_name":"transform_engine","events_processed":89,"events_dropped":0,"avg_latency_ms":660.408241668071,"throughput_eps":0,"last_update":"2026-03-21T18:50:19.080341209Z"} +2026/03/21 18:50:23 ───────────────────────────────────────────────── +2026/03/21 18:50:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:50:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1072,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:50:23.876210378Z"} +2026/03/21 18:50:28 [transform_engine] {"stage_name":"transform_engine","events_processed":89,"events_dropped":0,"avg_latency_ms":660.408241668071,"throughput_eps":0,"last_update":"2026-03-21T18:50:23.96540173Z"} +2026/03/21 18:50:28 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":14.97113638814881,"throughput_eps":0,"last_update":"2026-03-21T18:50:23.965496582Z"} +2026/03/21 18:50:28 [log_collector] {"stage_name":"log_collector","events_processed":4878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":975.6,"last_update":"2026-03-21T18:50:28.869865009Z"} +2026/03/21 18:50:28 [metric_collector] {"stage_name":"metric_collector","events_processed":2674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":534.8,"last_update":"2026-03-21T18:50:23.870623717Z"} +2026/03/21 18:50:28 ───────────────────────────────────────────────── +2026/03/21 18:50:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:50:33 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":14.97113638814881,"throughput_eps":0,"last_update":"2026-03-21T18:50:28.965802454Z"} +2026/03/21 18:50:33 [log_collector] {"stage_name":"log_collector","events_processed":4878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":975.6,"last_update":"2026-03-21T18:50:28.869865009Z"} +2026/03/21 18:50:33 [metric_collector] {"stage_name":"metric_collector","events_processed":2679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":535.8,"last_update":"2026-03-21T18:50:28.870232373Z"} +2026/03/21 18:50:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:50:28.878401301Z"} +2026/03/21 18:50:33 [transform_engine] {"stage_name":"transform_engine","events_processed":89,"events_dropped":0,"avg_latency_ms":660.408241668071,"throughput_eps":0,"last_update":"2026-03-21T18:50:28.965762918Z"} +2026/03/21 18:50:33 ───────────────────────────────────────────────── +2026/03/21 18:50:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:50:38 [log_collector] {"stage_name":"log_collector","events_processed":4878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":975.6,"last_update":"2026-03-21T18:50:38.870228531Z"} +2026/03/21 18:50:38 [metric_collector] {"stage_name":"metric_collector","events_processed":2684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":536.8,"last_update":"2026-03-21T18:50:33.870183808Z"} +2026/03/21 18:50:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1076,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:50:33.87808866Z"} +2026/03/21 18:50:38 [transform_engine] {"stage_name":"transform_engine","events_processed":89,"events_dropped":0,"avg_latency_ms":660.408241668071,"throughput_eps":0,"last_update":"2026-03-21T18:50:33.965390142Z"} +2026/03/21 18:50:38 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":14.97113638814881,"throughput_eps":0,"last_update":"2026-03-21T18:50:33.965291252Z"} +2026/03/21 18:50:38 ───────────────────────────────────────────────── +2026/03/21 18:50:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:50:43 [log_collector] {"stage_name":"log_collector","events_processed":4878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":975.6,"last_update":"2026-03-21T18:50:38.870228531Z"} +2026/03/21 18:50:43 [metric_collector] {"stage_name":"metric_collector","events_processed":2689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":537.8,"last_update":"2026-03-21T18:50:38.870825325Z"} +2026/03/21 18:50:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:50:38.879241046Z"} +2026/03/21 18:50:43 [transform_engine] {"stage_name":"transform_engine","events_processed":89,"events_dropped":0,"avg_latency_ms":660.408241668071,"throughput_eps":0,"last_update":"2026-03-21T18:50:38.965636472Z"} +2026/03/21 18:50:43 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":14.97113638814881,"throughput_eps":0,"last_update":"2026-03-21T18:50:38.96553113Z"} +2026/03/21 18:50:43 ───────────────────────────────────────────────── +2026/03/21 18:50:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:50:48 [log_collector] {"stage_name":"log_collector","events_processed":4878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":975.6,"last_update":"2026-03-21T18:50:48.869413963Z"} +2026/03/21 18:50:48 [metric_collector] {"stage_name":"metric_collector","events_processed":2694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":538.8,"last_update":"2026-03-21T18:50:43.870197873Z"} +2026/03/21 18:50:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:50:43.879454324Z"} +2026/03/21 18:50:48 [transform_engine] {"stage_name":"transform_engine","events_processed":89,"events_dropped":0,"avg_latency_ms":660.408241668071,"throughput_eps":0,"last_update":"2026-03-21T18:50:43.965728699Z"} +2026/03/21 18:50:48 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":14.97113638814881,"throughput_eps":0,"last_update":"2026-03-21T18:50:43.965757634Z"} +2026/03/21 18:50:48 ───────────────────────────────────────────────── +2026/03/21 18:50:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:50:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1082,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:50:48.87877246Z"} +2026/03/21 18:50:53 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":550.6444827344568,"throughput_eps":0,"last_update":"2026-03-21T18:50:49.077875296Z"} +2026/03/21 18:50:53 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":14.97113638814881,"throughput_eps":0,"last_update":"2026-03-21T18:50:48.966184604Z"} +2026/03/21 18:50:53 [log_collector] {"stage_name":"log_collector","events_processed":4878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":975.6,"last_update":"2026-03-21T18:50:53.869791908Z"} +2026/03/21 18:50:53 [metric_collector] {"stage_name":"metric_collector","events_processed":2699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":539.8,"last_update":"2026-03-21T18:50:48.870259643Z"} +2026/03/21 18:50:53 ───────────────────────────────────────────────── +2026/03/21 18:50:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:50:58 [log_collector] {"stage_name":"log_collector","events_processed":4878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":975.6,"last_update":"2026-03-21T18:50:53.869791908Z"} +2026/03/21 18:50:58 [metric_collector] {"stage_name":"metric_collector","events_processed":2704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":540.8,"last_update":"2026-03-21T18:50:53.87024713Z"} +2026/03/21 18:50:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:50:53.879220891Z"} +2026/03/21 18:50:58 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":550.6444827344568,"throughput_eps":0,"last_update":"2026-03-21T18:50:53.965556472Z"} +2026/03/21 18:50:58 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":15.43005391051905,"throughput_eps":0,"last_update":"2026-03-21T18:50:53.965603472Z"} +2026/03/21 18:50:58 ───────────────────────────────────────────────── +2026/03/21 18:51:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:51:03 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":550.6444827344568,"throughput_eps":0,"last_update":"2026-03-21T18:50:58.966004634Z"} +2026/03/21 18:51:03 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":15.43005391051905,"throughput_eps":0,"last_update":"2026-03-21T18:50:58.966061313Z"} +2026/03/21 18:51:03 [log_collector] {"stage_name":"log_collector","events_processed":4878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":975.6,"last_update":"2026-03-21T18:50:58.870539314Z"} +2026/03/21 18:51:03 [metric_collector] {"stage_name":"metric_collector","events_processed":2709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":541.8,"last_update":"2026-03-21T18:50:58.871139223Z"} +2026/03/21 18:51:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:50:58.879660426Z"} +2026/03/21 18:51:03 ───────────────────────────────────────────────── +2026/03/21 18:51:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:51:08 [log_collector] {"stage_name":"log_collector","events_processed":4878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":975.6,"last_update":"2026-03-21T18:51:08.869404812Z"} +2026/03/21 18:51:08 [metric_collector] {"stage_name":"metric_collector","events_processed":2713,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":542.6,"last_update":"2026-03-21T18:51:03.869601584Z"} +2026/03/21 18:51:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:51:03.87994124Z"} +2026/03/21 18:51:08 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":550.6444827344568,"throughput_eps":0,"last_update":"2026-03-21T18:51:03.966298634Z"} +2026/03/21 18:51:08 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":15.43005391051905,"throughput_eps":0,"last_update":"2026-03-21T18:51:03.966186639Z"} +2026/03/21 18:51:08 ───────────────────────────────────────────────── +2026/03/21 18:51:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:51:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:51:08.878017781Z"} +2026/03/21 18:51:13 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":550.6444827344568,"throughput_eps":0,"last_update":"2026-03-21T18:51:08.965210204Z"} +2026/03/21 18:51:13 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":15.43005391051905,"throughput_eps":0,"last_update":"2026-03-21T18:51:08.96532267Z"} +2026/03/21 18:51:13 [log_collector] {"stage_name":"log_collector","events_processed":4878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":975.6,"last_update":"2026-03-21T18:51:08.869404812Z"} +2026/03/21 18:51:13 [metric_collector] {"stage_name":"metric_collector","events_processed":2719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":543.8,"last_update":"2026-03-21T18:51:08.869860344Z"} +2026/03/21 18:51:13 ───────────────────────────────────────────────── +2026/03/21 18:51:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:51:18 [log_collector] {"stage_name":"log_collector","events_processed":4878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":975.6,"last_update":"2026-03-21T18:51:13.869592659Z"} +2026/03/21 18:51:18 [metric_collector] {"stage_name":"metric_collector","events_processed":2724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":544.8,"last_update":"2026-03-21T18:51:13.870321414Z"} +2026/03/21 18:51:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:51:13.878683553Z"} +2026/03/21 18:51:18 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":550.6444827344568,"throughput_eps":0,"last_update":"2026-03-21T18:51:13.965960097Z"} +2026/03/21 18:51:18 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":15.43005391051905,"throughput_eps":0,"last_update":"2026-03-21T18:51:13.965821272Z"} +2026/03/21 18:51:18 ───────────────────────────────────────────────── +2026/03/21 18:51:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:51:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:51:18.879392279Z"} +2026/03/21 18:51:23 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":453.79174938756546,"throughput_eps":0,"last_update":"2026-03-21T18:51:19.032138306Z"} +2026/03/21 18:51:23 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":15.43005391051905,"throughput_eps":0,"last_update":"2026-03-21T18:51:18.965864433Z"} +2026/03/21 18:51:23 [log_collector] {"stage_name":"log_collector","events_processed":4878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":975.6,"last_update":"2026-03-21T18:51:23.869884445Z"} +2026/03/21 18:51:23 [metric_collector] {"stage_name":"metric_collector","events_processed":2729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":545.8,"last_update":"2026-03-21T18:51:18.870905804Z"} +2026/03/21 18:51:23 ───────────────────────────────────────────────── +Saved state: 12 clusters, 4879 messages, reason: none +2026/03/21 18:51:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:51:28 [log_collector] {"stage_name":"log_collector","events_processed":4878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":975.6,"last_update":"2026-03-21T18:51:23.869884445Z"} +2026/03/21 18:51:28 [metric_collector] {"stage_name":"metric_collector","events_processed":2734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":546.8,"last_update":"2026-03-21T18:51:23.870331412Z"} +2026/03/21 18:51:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:51:23.879504072Z"} +2026/03/21 18:51:28 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":453.79174938756546,"throughput_eps":0,"last_update":"2026-03-21T18:51:23.965833062Z"} +2026/03/21 18:51:28 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":15.77698312841524,"throughput_eps":0,"last_update":"2026-03-21T18:51:23.965821129Z"} +2026/03/21 18:51:28 ───────────────────────────────────────────────── +2026/03/21 18:51:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:51:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:51:28.881763019Z"} +2026/03/21 18:51:33 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":453.79174938756546,"throughput_eps":0,"last_update":"2026-03-21T18:51:28.965918315Z"} +2026/03/21 18:51:33 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":15.77698312841524,"throughput_eps":0,"last_update":"2026-03-21T18:51:28.965903417Z"} +2026/03/21 18:51:33 [log_collector] {"stage_name":"log_collector","events_processed":4883,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":976.6,"last_update":"2026-03-21T18:51:33.869785526Z"} +2026/03/21 18:51:33 [metric_collector] {"stage_name":"metric_collector","events_processed":2739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":547.8,"last_update":"2026-03-21T18:51:28.870647817Z"} +2026/03/21 18:51:33 ───────────────────────────────────────────────── +2026/03/21 18:51:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:51:38 [log_collector] {"stage_name":"log_collector","events_processed":4883,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":976.6,"last_update":"2026-03-21T18:51:33.869785526Z"} +2026/03/21 18:51:38 [metric_collector] {"stage_name":"metric_collector","events_processed":2744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":548.8,"last_update":"2026-03-21T18:51:33.870091663Z"} +2026/03/21 18:51:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:51:33.876975219Z"} +2026/03/21 18:51:38 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":453.79174938756546,"throughput_eps":0,"last_update":"2026-03-21T18:51:33.965093256Z"} +2026/03/21 18:51:38 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":15.77698312841524,"throughput_eps":0,"last_update":"2026-03-21T18:51:33.966765689Z"} +2026/03/21 18:51:38 ───────────────────────────────────────────────── +2026/03/21 18:51:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:51:43 [log_collector] {"stage_name":"log_collector","events_processed":4883,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":976.6,"last_update":"2026-03-21T18:51:38.869412985Z"} +2026/03/21 18:51:43 [metric_collector] {"stage_name":"metric_collector","events_processed":2749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":549.8,"last_update":"2026-03-21T18:51:38.869847197Z"} +2026/03/21 18:51:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:51:38.876105665Z"} +2026/03/21 18:51:43 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":453.79174938756546,"throughput_eps":0,"last_update":"2026-03-21T18:51:38.965295666Z"} +2026/03/21 18:51:43 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":15.77698312841524,"throughput_eps":0,"last_update":"2026-03-21T18:51:38.965283752Z"} +2026/03/21 18:51:43 ───────────────────────────────────────────────── +2026/03/21 18:51:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:51:48 [log_collector] {"stage_name":"log_collector","events_processed":4883,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":976.6,"last_update":"2026-03-21T18:51:43.869769753Z"} +2026/03/21 18:51:48 [metric_collector] {"stage_name":"metric_collector","events_processed":2754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":550.8,"last_update":"2026-03-21T18:51:43.870075048Z"} +2026/03/21 18:51:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:51:43.877584764Z"} +2026/03/21 18:51:48 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":453.79174938756546,"throughput_eps":0,"last_update":"2026-03-21T18:51:43.965805747Z"} +2026/03/21 18:51:48 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":15.77698312841524,"throughput_eps":0,"last_update":"2026-03-21T18:51:43.965788424Z"} +2026/03/21 18:51:48 ───────────────────────────────────────────────── +2026/03/21 18:51:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:51:53 [log_collector] {"stage_name":"log_collector","events_processed":4883,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":976.6,"last_update":"2026-03-21T18:51:48.86975084Z"} +2026/03/21 18:51:53 [metric_collector] {"stage_name":"metric_collector","events_processed":2759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":551.8,"last_update":"2026-03-21T18:51:48.870019555Z"} +2026/03/21 18:51:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:51:48.876124159Z"} +2026/03/21 18:51:53 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":453.79174938756546,"throughput_eps":0,"last_update":"2026-03-21T18:51:43.965805747Z"} +2026/03/21 18:51:53 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":15.77698312841524,"throughput_eps":0,"last_update":"2026-03-21T18:51:48.965273621Z"} +2026/03/21 18:51:53 ───────────────────────────────────────────────── +2026/03/21 18:51:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:51:58 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":14.596032702732193,"throughput_eps":0,"last_update":"2026-03-21T18:51:53.966228484Z"} +2026/03/21 18:51:58 [log_collector] {"stage_name":"log_collector","events_processed":4883,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":976.6,"last_update":"2026-03-21T18:51:53.869468663Z"} +2026/03/21 18:51:58 [metric_collector] {"stage_name":"metric_collector","events_processed":2764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":552.8,"last_update":"2026-03-21T18:51:53.869623129Z"} +2026/03/21 18:51:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:51:53.877858695Z"} +2026/03/21 18:51:58 [transform_engine] {"stage_name":"transform_engine","events_processed":92,"events_dropped":0,"avg_latency_ms":1352.7507651100523,"throughput_eps":0,"last_update":"2026-03-21T18:51:53.965139978Z"} +2026/03/21 18:51:58 ───────────────────────────────────────────────── +2026/03/21 18:52:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:52:03 [transform_engine] {"stage_name":"transform_engine","events_processed":92,"events_dropped":0,"avg_latency_ms":1352.7507651100523,"throughput_eps":0,"last_update":"2026-03-21T18:51:58.965794548Z"} +2026/03/21 18:52:03 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":14.596032702732193,"throughput_eps":0,"last_update":"2026-03-21T18:51:58.965684437Z"} +2026/03/21 18:52:03 [log_collector] {"stage_name":"log_collector","events_processed":4883,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":976.6,"last_update":"2026-03-21T18:51:58.869431928Z"} +2026/03/21 18:52:03 [metric_collector] {"stage_name":"metric_collector","events_processed":2769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":553.8,"last_update":"2026-03-21T18:51:58.8697825Z"} +2026/03/21 18:52:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:51:58.87546797Z"} +2026/03/21 18:52:03 ───────────────────────────────────────────────── +2026/03/21 18:52:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:52:08 [metric_collector] {"stage_name":"metric_collector","events_processed":2774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":554.8,"last_update":"2026-03-21T18:52:03.870001235Z"} +2026/03/21 18:52:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:52:03.876560741Z"} +2026/03/21 18:52:08 [transform_engine] {"stage_name":"transform_engine","events_processed":92,"events_dropped":0,"avg_latency_ms":1352.7507651100523,"throughput_eps":0,"last_update":"2026-03-21T18:52:03.965778294Z"} +2026/03/21 18:52:08 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":14.596032702732193,"throughput_eps":0,"last_update":"2026-03-21T18:52:03.965750421Z"} +2026/03/21 18:52:08 [log_collector] {"stage_name":"log_collector","events_processed":4883,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":976.6,"last_update":"2026-03-21T18:52:03.869646446Z"} +2026/03/21 18:52:08 ───────────────────────────────────────────────── +2026/03/21 18:52:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:52:13 [log_collector] {"stage_name":"log_collector","events_processed":4883,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":976.6,"last_update":"2026-03-21T18:52:08.869460157Z"} +2026/03/21 18:52:13 [metric_collector] {"stage_name":"metric_collector","events_processed":2779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":555.8,"last_update":"2026-03-21T18:52:08.870151902Z"} +2026/03/21 18:52:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:52:08.876883617Z"} +2026/03/21 18:52:13 [transform_engine] {"stage_name":"transform_engine","events_processed":92,"events_dropped":0,"avg_latency_ms":1352.7507651100523,"throughput_eps":0,"last_update":"2026-03-21T18:52:08.965075154Z"} +2026/03/21 18:52:13 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":14.596032702732193,"throughput_eps":0,"last_update":"2026-03-21T18:52:08.966863379Z"} +2026/03/21 18:52:13 ───────────────────────────────────────────────── +2026/03/21 18:52:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:52:18 [metric_collector] {"stage_name":"metric_collector","events_processed":2784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":556.8,"last_update":"2026-03-21T18:52:13.869853919Z"} +2026/03/21 18:52:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:52:13.878553314Z"} +2026/03/21 18:52:18 [transform_engine] {"stage_name":"transform_engine","events_processed":92,"events_dropped":0,"avg_latency_ms":1352.7507651100523,"throughput_eps":0,"last_update":"2026-03-21T18:52:13.96554362Z"} +2026/03/21 18:52:18 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":14.596032702732193,"throughput_eps":0,"last_update":"2026-03-21T18:52:13.965532349Z"} +2026/03/21 18:52:18 [log_collector] {"stage_name":"log_collector","events_processed":4892,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":978.4,"last_update":"2026-03-21T18:52:13.869518317Z"} +2026/03/21 18:52:18 ───────────────────────────────────────────────── +2026/03/21 18:52:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:52:23 [log_collector] {"stage_name":"log_collector","events_processed":4894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":978.8,"last_update":"2026-03-21T18:52:18.869477218Z"} +2026/03/21 18:52:23 [metric_collector] {"stage_name":"metric_collector","events_processed":2789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":557.8,"last_update":"2026-03-21T18:52:18.870117184Z"} +2026/03/21 18:52:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:52:18.878562692Z"} +2026/03/21 18:52:23 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":1544.681925488042,"throughput_eps":0,"last_update":"2026-03-21T18:52:21.278507905Z"} +2026/03/21 18:52:23 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":14.596032702732193,"throughput_eps":0,"last_update":"2026-03-21T18:52:18.966598611Z"} +2026/03/21 18:52:23 ───────────────────────────────────────────────── +2026/03/21 18:52:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:52:28 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":15.239210162185755,"throughput_eps":0,"last_update":"2026-03-21T18:52:23.965779864Z"} +2026/03/21 18:52:28 [log_collector] {"stage_name":"log_collector","events_processed":5061,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1012.2,"last_update":"2026-03-21T18:52:23.870647742Z"} +2026/03/21 18:52:28 [metric_collector] {"stage_name":"metric_collector","events_processed":2793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":558.6,"last_update":"2026-03-21T18:52:23.870382193Z"} +2026/03/21 18:52:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:52:23.87715141Z"} +2026/03/21 18:52:28 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":1544.681925488042,"throughput_eps":0,"last_update":"2026-03-21T18:52:23.965790154Z"} +2026/03/21 18:52:28 ───────────────────────────────────────────────── +2026/03/21 18:52:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:52:33 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":1544.681925488042,"throughput_eps":0,"last_update":"2026-03-21T18:52:28.965191818Z"} +2026/03/21 18:52:33 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":15.239210162185755,"throughput_eps":0,"last_update":"2026-03-21T18:52:28.966373031Z"} +2026/03/21 18:52:33 [log_collector] {"stage_name":"log_collector","events_processed":5249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1049.8,"last_update":"2026-03-21T18:52:28.869893077Z"} +2026/03/21 18:52:33 [metric_collector] {"stage_name":"metric_collector","events_processed":2799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":559.8,"last_update":"2026-03-21T18:52:28.870163595Z"} +2026/03/21 18:52:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1122,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:52:28.879004811Z"} +2026/03/21 18:52:33 ───────────────────────────────────────────────── +2026/03/21 18:52:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:52:38 [log_collector] {"stage_name":"log_collector","events_processed":5249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1049.8,"last_update":"2026-03-21T18:52:33.869406045Z"} +2026/03/21 18:52:38 [metric_collector] {"stage_name":"metric_collector","events_processed":2804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":560.8,"last_update":"2026-03-21T18:52:33.869847902Z"} +2026/03/21 18:52:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:52:33.878406507Z"} +2026/03/21 18:52:38 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":1544.681925488042,"throughput_eps":0,"last_update":"2026-03-21T18:52:33.96557731Z"} +2026/03/21 18:52:38 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":15.239210162185755,"throughput_eps":0,"last_update":"2026-03-21T18:52:33.965695005Z"} +2026/03/21 18:52:38 ───────────────────────────────────────────────── +2026/03/21 18:52:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:52:43 [log_collector] {"stage_name":"log_collector","events_processed":5249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1049.8,"last_update":"2026-03-21T18:52:43.869408219Z"} +2026/03/21 18:52:43 [metric_collector] {"stage_name":"metric_collector","events_processed":2809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":561.8,"last_update":"2026-03-21T18:52:38.869903183Z"} +2026/03/21 18:52:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1126,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:52:38.877842171Z"} +2026/03/21 18:52:43 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":1544.681925488042,"throughput_eps":0,"last_update":"2026-03-21T18:52:38.96590461Z"} +2026/03/21 18:52:43 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":15.239210162185755,"throughput_eps":0,"last_update":"2026-03-21T18:52:38.965948344Z"} +2026/03/21 18:52:43 ───────────────────────────────────────────────── +2026/03/21 18:52:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:52:48 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":15.239210162185755,"throughput_eps":0,"last_update":"2026-03-21T18:52:43.965802239Z"} +2026/03/21 18:52:48 [log_collector] {"stage_name":"log_collector","events_processed":5249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1049.8,"last_update":"2026-03-21T18:52:43.869408219Z"} +2026/03/21 18:52:48 [metric_collector] {"stage_name":"metric_collector","events_processed":2814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":562.8,"last_update":"2026-03-21T18:52:43.869827111Z"} +2026/03/21 18:52:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1128,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:52:43.879258027Z"} +2026/03/21 18:52:48 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":1544.681925488042,"throughput_eps":0,"last_update":"2026-03-21T18:52:43.965662181Z"} +2026/03/21 18:52:48 ───────────────────────────────────────────────── +2026/03/21 18:52:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:52:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1130,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:52:48.878504749Z"} +2026/03/21 18:52:53 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":1258.2457615904336,"throughput_eps":0,"last_update":"2026-03-21T18:52:49.078244015Z"} +2026/03/21 18:52:53 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":15.239210162185755,"throughput_eps":0,"last_update":"2026-03-21T18:52:48.965717622Z"} +2026/03/21 18:52:53 [log_collector] {"stage_name":"log_collector","events_processed":5249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1049.8,"last_update":"2026-03-21T18:52:48.86949001Z"} +2026/03/21 18:52:53 [metric_collector] {"stage_name":"metric_collector","events_processed":2819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":563.8,"last_update":"2026-03-21T18:52:48.869966503Z"} +2026/03/21 18:52:53 ───────────────────────────────────────────────── +2026/03/21 18:52:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:52:58 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":1258.2457615904336,"throughput_eps":0,"last_update":"2026-03-21T18:52:53.965117449Z"} +2026/03/21 18:52:58 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":15.565000529748604,"throughput_eps":0,"last_update":"2026-03-21T18:52:53.965341538Z"} +2026/03/21 18:52:58 [log_collector] {"stage_name":"log_collector","events_processed":5249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1049.8,"last_update":"2026-03-21T18:52:53.870120485Z"} +2026/03/21 18:52:58 [metric_collector] {"stage_name":"metric_collector","events_processed":2824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":564.8,"last_update":"2026-03-21T18:52:53.870557162Z"} +2026/03/21 18:52:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:52:53.879935897Z"} +2026/03/21 18:52:58 ───────────────────────────────────────────────── +2026/03/21 18:53:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:53:03 [log_collector] {"stage_name":"log_collector","events_processed":5249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1049.8,"last_update":"2026-03-21T18:53:03.870012933Z"} +2026/03/21 18:53:03 [metric_collector] {"stage_name":"metric_collector","events_processed":2829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":565.8,"last_update":"2026-03-21T18:52:58.870170938Z"} +2026/03/21 18:53:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:52:58.878099536Z"} +2026/03/21 18:53:03 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":1258.2457615904336,"throughput_eps":0,"last_update":"2026-03-21T18:52:58.965449381Z"} +2026/03/21 18:53:03 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":15.565000529748604,"throughput_eps":0,"last_update":"2026-03-21T18:52:58.965483416Z"} +2026/03/21 18:53:03 ───────────────────────────────────────────────── +2026/03/21 18:53:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:53:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:53:03.879214049Z"} +2026/03/21 18:53:08 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":1258.2457615904336,"throughput_eps":0,"last_update":"2026-03-21T18:53:03.965672967Z"} +2026/03/21 18:53:08 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":15.565000529748604,"throughput_eps":0,"last_update":"2026-03-21T18:53:03.965557166Z"} +2026/03/21 18:53:08 [log_collector] {"stage_name":"log_collector","events_processed":5249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1049.8,"last_update":"2026-03-21T18:53:03.870012933Z"} +2026/03/21 18:53:08 [metric_collector] {"stage_name":"metric_collector","events_processed":2834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":566.8,"last_update":"2026-03-21T18:53:03.870442926Z"} +2026/03/21 18:53:08 ───────────────────────────────────────────────── +2026/03/21 18:53:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:53:13 [metric_collector] {"stage_name":"metric_collector","events_processed":2839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":567.8,"last_update":"2026-03-21T18:53:08.870080682Z"} +2026/03/21 18:53:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:53:08.878288505Z"} +2026/03/21 18:53:13 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":1258.2457615904336,"throughput_eps":0,"last_update":"2026-03-21T18:53:08.965691071Z"} +2026/03/21 18:53:13 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":15.565000529748604,"throughput_eps":0,"last_update":"2026-03-21T18:53:08.965765203Z"} +2026/03/21 18:53:13 [log_collector] {"stage_name":"log_collector","events_processed":5249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1049.8,"last_update":"2026-03-21T18:53:13.869989096Z"} +2026/03/21 18:53:13 ───────────────────────────────────────────────── +2026/03/21 18:53:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:53:18 [log_collector] {"stage_name":"log_collector","events_processed":5249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1049.8,"last_update":"2026-03-21T18:53:18.869418073Z"} +2026/03/21 18:53:18 [metric_collector] {"stage_name":"metric_collector","events_processed":2844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":568.8,"last_update":"2026-03-21T18:53:13.870301706Z"} +2026/03/21 18:53:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:53:13.878750289Z"} +2026/03/21 18:53:18 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":1258.2457615904336,"throughput_eps":0,"last_update":"2026-03-21T18:53:13.966115042Z"} +2026/03/21 18:53:18 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":15.565000529748604,"throughput_eps":0,"last_update":"2026-03-21T18:53:13.966231686Z"} +2026/03/21 18:53:18 ───────────────────────────────────────────────── +2026/03/21 18:53:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:53:23 [transform_engine] {"stage_name":"transform_engine","events_processed":95,"events_dropped":0,"avg_latency_ms":1020.223943672347,"throughput_eps":0,"last_update":"2026-03-21T18:53:19.034327851Z"} +2026/03/21 18:53:23 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":15.565000529748604,"throughput_eps":0,"last_update":"2026-03-21T18:53:18.966146664Z"} +2026/03/21 18:53:23 [log_collector] {"stage_name":"log_collector","events_processed":5249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1049.8,"last_update":"2026-03-21T18:53:18.869418073Z"} +2026/03/21 18:53:23 [metric_collector] {"stage_name":"metric_collector","events_processed":2849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":569.8,"last_update":"2026-03-21T18:53:18.869847055Z"} +2026/03/21 18:53:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:53:18.878796789Z"} +2026/03/21 18:53:23 ───────────────────────────────────────────────── +2026/03/21 18:53:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:53:28 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":16.151302823798883,"throughput_eps":0,"last_update":"2026-03-21T18:53:23.966096309Z"} +2026/03/21 18:53:28 [log_collector] {"stage_name":"log_collector","events_processed":5249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1049.8,"last_update":"2026-03-21T18:53:28.870317409Z"} +2026/03/21 18:53:28 [metric_collector] {"stage_name":"metric_collector","events_processed":2854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":570.8,"last_update":"2026-03-21T18:53:23.869914545Z"} +2026/03/21 18:53:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:53:23.878694694Z"} +2026/03/21 18:53:28 [transform_engine] {"stage_name":"transform_engine","events_processed":95,"events_dropped":0,"avg_latency_ms":1020.223943672347,"throughput_eps":0,"last_update":"2026-03-21T18:53:23.96605518Z"} +2026/03/21 18:53:28 ───────────────────────────────────────────────── +2026/03/21 18:53:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:53:33 [metric_collector] {"stage_name":"metric_collector","events_processed":2859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":571.8,"last_update":"2026-03-21T18:53:28.870892741Z"} +2026/03/21 18:53:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:53:28.879116886Z"} +2026/03/21 18:53:33 [transform_engine] {"stage_name":"transform_engine","events_processed":95,"events_dropped":0,"avg_latency_ms":1020.223943672347,"throughput_eps":0,"last_update":"2026-03-21T18:53:28.965497714Z"} +2026/03/21 18:53:33 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":16.151302823798883,"throughput_eps":0,"last_update":"2026-03-21T18:53:28.965450213Z"} +2026/03/21 18:53:33 [log_collector] {"stage_name":"log_collector","events_processed":5249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1049.8,"last_update":"2026-03-21T18:53:33.869567835Z"} +2026/03/21 18:53:33 ───────────────────────────────────────────────── +2026/03/21 18:53:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:53:38 [metric_collector] {"stage_name":"metric_collector","events_processed":2864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":572.8,"last_update":"2026-03-21T18:53:33.869952181Z"} +2026/03/21 18:53:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:53:33.878745084Z"} +2026/03/21 18:53:38 [transform_engine] {"stage_name":"transform_engine","events_processed":95,"events_dropped":0,"avg_latency_ms":1020.223943672347,"throughput_eps":0,"last_update":"2026-03-21T18:53:33.966029695Z"} +2026/03/21 18:53:38 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":16.151302823798883,"throughput_eps":0,"last_update":"2026-03-21T18:53:33.965925105Z"} +2026/03/21 18:53:38 [log_collector] {"stage_name":"log_collector","events_processed":5249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1049.8,"last_update":"2026-03-21T18:53:33.869567835Z"} +2026/03/21 18:53:38 ───────────────────────────────────────────────── +2026/03/21 18:53:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:53:43 [log_collector] {"stage_name":"log_collector","events_processed":5249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1049.8,"last_update":"2026-03-21T18:53:38.869711605Z"} +2026/03/21 18:53:43 [metric_collector] {"stage_name":"metric_collector","events_processed":2869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":573.8,"last_update":"2026-03-21T18:53:38.870303078Z"} +2026/03/21 18:53:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:53:38.877812623Z"} +2026/03/21 18:53:43 [transform_engine] {"stage_name":"transform_engine","events_processed":95,"events_dropped":0,"avg_latency_ms":1020.223943672347,"throughput_eps":0,"last_update":"2026-03-21T18:53:38.966323531Z"} +2026/03/21 18:53:43 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":16.151302823798883,"throughput_eps":0,"last_update":"2026-03-21T18:53:38.96620777Z"} +2026/03/21 18:53:43 ───────────────────────────────────────────────── +2026/03/21 18:53:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:53:48 [log_collector] {"stage_name":"log_collector","events_processed":5249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1049.8,"last_update":"2026-03-21T18:53:43.869626467Z"} +2026/03/21 18:53:48 [metric_collector] {"stage_name":"metric_collector","events_processed":2874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":574.8,"last_update":"2026-03-21T18:53:43.870054346Z"} +2026/03/21 18:53:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:53:43.878004265Z"} +2026/03/21 18:53:48 [transform_engine] {"stage_name":"transform_engine","events_processed":95,"events_dropped":0,"avg_latency_ms":1020.223943672347,"throughput_eps":0,"last_update":"2026-03-21T18:53:43.965139359Z"} +2026/03/21 18:53:48 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":16.151302823798883,"throughput_eps":0,"last_update":"2026-03-21T18:53:43.96528062Z"} +2026/03/21 18:53:48 ───────────────────────────────────────────────── +2026/03/21 18:53:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:53:53 [log_collector] {"stage_name":"log_collector","events_processed":5249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1049.8,"last_update":"2026-03-21T18:53:53.869424559Z"} +2026/03/21 18:53:53 [metric_collector] {"stage_name":"metric_collector","events_processed":2879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":575.8,"last_update":"2026-03-21T18:53:48.870018091Z"} +2026/03/21 18:53:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:53:48.878620761Z"} +2026/03/21 18:53:53 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":829.8936461378777,"throughput_eps":0,"last_update":"2026-03-21T18:53:49.034556387Z"} +2026/03/21 18:53:53 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":16.151302823798883,"throughput_eps":0,"last_update":"2026-03-21T18:53:48.966007696Z"} +2026/03/21 18:53:53 ───────────────────────────────────────────────── +2026/03/21 18:53:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:53:58 [log_collector] {"stage_name":"log_collector","events_processed":5249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1049.8,"last_update":"2026-03-21T18:53:53.869424559Z"} +2026/03/21 18:53:58 [metric_collector] {"stage_name":"metric_collector","events_processed":2884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":576.8,"last_update":"2026-03-21T18:53:53.869819787Z"} +2026/03/21 18:53:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:53:53.879163396Z"} +2026/03/21 18:53:58 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":829.8936461378777,"throughput_eps":0,"last_update":"2026-03-21T18:53:53.965537611Z"} +2026/03/21 18:53:58 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":16.537992859039107,"throughput_eps":0,"last_update":"2026-03-21T18:53:53.965496944Z"} +2026/03/21 18:53:58 ───────────────────────────────────────────────── +2026/03/21 18:54:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:54:03 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":829.8936461378777,"throughput_eps":0,"last_update":"2026-03-21T18:53:58.965990395Z"} +2026/03/21 18:54:03 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":16.537992859039107,"throughput_eps":0,"last_update":"2026-03-21T18:53:58.966115936Z"} +2026/03/21 18:54:03 [log_collector] {"stage_name":"log_collector","events_processed":5249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1049.8,"last_update":"2026-03-21T18:53:58.870296086Z"} +2026/03/21 18:54:03 [metric_collector] {"stage_name":"metric_collector","events_processed":2888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":577.6,"last_update":"2026-03-21T18:53:58.870314351Z"} +2026/03/21 18:54:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:53:58.878720294Z"} +2026/03/21 18:54:03 ───────────────────────────────────────────────── +Saved state: 12 clusters, 5250 messages, reason: none +2026/03/21 18:54:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:54:08 [log_collector] {"stage_name":"log_collector","events_processed":5249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1049.8,"last_update":"2026-03-21T18:54:03.869493275Z"} +2026/03/21 18:54:08 [metric_collector] {"stage_name":"metric_collector","events_processed":2894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":578.8,"last_update":"2026-03-21T18:54:03.869937365Z"} +2026/03/21 18:54:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:54:03.877885961Z"} +2026/03/21 18:54:08 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":829.8936461378777,"throughput_eps":0,"last_update":"2026-03-21T18:54:03.966232056Z"} +2026/03/21 18:54:08 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":16.537992859039107,"throughput_eps":0,"last_update":"2026-03-21T18:54:03.966193862Z"} +2026/03/21 18:54:08 ───────────────────────────────────────────────── +2026/03/21 18:54:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:54:13 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":829.8936461378777,"throughput_eps":0,"last_update":"2026-03-21T18:54:08.965137307Z"} +2026/03/21 18:54:13 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":16.537992859039107,"throughput_eps":0,"last_update":"2026-03-21T18:54:08.9663032Z"} +2026/03/21 18:54:13 [log_collector] {"stage_name":"log_collector","events_processed":5252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1050.4,"last_update":"2026-03-21T18:54:08.869664421Z"} +2026/03/21 18:54:13 [metric_collector] {"stage_name":"metric_collector","events_processed":2899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":579.8,"last_update":"2026-03-21T18:54:08.869899602Z"} +2026/03/21 18:54:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:54:08.878938507Z"} +2026/03/21 18:54:13 ───────────────────────────────────────────────── +2026/03/21 18:54:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:54:18 [metric_collector] {"stage_name":"metric_collector","events_processed":2904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":580.8,"last_update":"2026-03-21T18:54:13.870424095Z"} +2026/03/21 18:54:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:54:13.876000326Z"} +2026/03/21 18:54:18 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":829.8936461378777,"throughput_eps":0,"last_update":"2026-03-21T18:54:13.965182452Z"} +2026/03/21 18:54:18 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":16.537992859039107,"throughput_eps":0,"last_update":"2026-03-21T18:54:13.965284086Z"} +2026/03/21 18:54:18 [log_collector] {"stage_name":"log_collector","events_processed":5252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1050.4,"last_update":"2026-03-21T18:54:13.870124902Z"} +2026/03/21 18:54:18 ───────────────────────────────────────────────── +2026/03/21 18:54:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:54:23 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":16.537992859039107,"throughput_eps":0,"last_update":"2026-03-21T18:54:18.965896811Z"} +2026/03/21 18:54:23 [log_collector] {"stage_name":"log_collector","events_processed":5262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1052.4,"last_update":"2026-03-21T18:54:18.869586169Z"} +2026/03/21 18:54:23 [metric_collector] {"stage_name":"metric_collector","events_processed":2909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":581.8,"last_update":"2026-03-21T18:54:18.870007276Z"} +2026/03/21 18:54:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:54:18.878550832Z"} +2026/03/21 18:54:23 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":701.6097943103022,"throughput_eps":0,"last_update":"2026-03-21T18:54:19.154487271Z"} +2026/03/21 18:54:23 ───────────────────────────────────────────────── +2026/03/21 18:54:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:54:28 [metric_collector] {"stage_name":"metric_collector","events_processed":2914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":582.8,"last_update":"2026-03-21T18:54:23.870465204Z"} +2026/03/21 18:54:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:54:23.879569133Z"} +2026/03/21 18:54:28 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":701.6097943103022,"throughput_eps":0,"last_update":"2026-03-21T18:54:23.965874859Z"} +2026/03/21 18:54:28 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":15.982087287231286,"throughput_eps":0,"last_update":"2026-03-21T18:54:23.96599011Z"} +2026/03/21 18:54:28 [log_collector] {"stage_name":"log_collector","events_processed":5279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1055.8,"last_update":"2026-03-21T18:54:23.870065268Z"} +2026/03/21 18:54:28 ───────────────────────────────────────────────── +2026/03/21 18:54:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:54:33 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":15.982087287231286,"throughput_eps":0,"last_update":"2026-03-21T18:54:28.966105791Z"} +2026/03/21 18:54:33 [log_collector] {"stage_name":"log_collector","events_processed":5292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1058.4,"last_update":"2026-03-21T18:54:28.869703264Z"} +2026/03/21 18:54:33 [metric_collector] {"stage_name":"metric_collector","events_processed":2919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":583.8,"last_update":"2026-03-21T18:54:28.870308935Z"} +2026/03/21 18:54:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1170,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:54:28.877780427Z"} +2026/03/21 18:54:33 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":701.6097943103022,"throughput_eps":0,"last_update":"2026-03-21T18:54:28.96608963Z"} +2026/03/21 18:54:33 ───────────────────────────────────────────────── +2026/03/21 18:54:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:54:38 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":15.982087287231286,"throughput_eps":0,"last_update":"2026-03-21T18:54:33.965334986Z"} +2026/03/21 18:54:38 [log_collector] {"stage_name":"log_collector","events_processed":5293,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1058.6,"last_update":"2026-03-21T18:54:38.869862253Z"} +2026/03/21 18:54:38 [metric_collector] {"stage_name":"metric_collector","events_processed":2924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":584.8,"last_update":"2026-03-21T18:54:33.870176402Z"} +2026/03/21 18:54:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:54:33.878058912Z"} +2026/03/21 18:54:38 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":701.6097943103022,"throughput_eps":0,"last_update":"2026-03-21T18:54:33.965220456Z"} +2026/03/21 18:54:38 ───────────────────────────────────────────────── +2026/03/21 18:54:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:54:43 [log_collector] {"stage_name":"log_collector","events_processed":5293,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1058.6,"last_update":"2026-03-21T18:54:38.869862253Z"} +2026/03/21 18:54:43 [metric_collector] {"stage_name":"metric_collector","events_processed":2929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":585.8,"last_update":"2026-03-21T18:54:38.870345289Z"} +2026/03/21 18:54:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:54:38.878879536Z"} +2026/03/21 18:54:43 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":701.6097943103022,"throughput_eps":0,"last_update":"2026-03-21T18:54:38.965304069Z"} +2026/03/21 18:54:43 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":15.982087287231286,"throughput_eps":0,"last_update":"2026-03-21T18:54:38.965341812Z"} +2026/03/21 18:54:43 ───────────────────────────────────────────────── +2026/03/21 18:54:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:54:48 [log_collector] {"stage_name":"log_collector","events_processed":5293,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1058.6,"last_update":"2026-03-21T18:54:48.869871316Z"} +2026/03/21 18:54:48 [metric_collector] {"stage_name":"metric_collector","events_processed":2934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":586.8,"last_update":"2026-03-21T18:54:43.869784657Z"} +2026/03/21 18:54:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:54:43.8779771Z"} +2026/03/21 18:54:48 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":701.6097943103022,"throughput_eps":0,"last_update":"2026-03-21T18:54:43.965185214Z"} +2026/03/21 18:54:48 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":15.982087287231286,"throughput_eps":0,"last_update":"2026-03-21T18:54:43.966398098Z"} +2026/03/21 18:54:48 ───────────────────────────────────────────────── +2026/03/21 18:54:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:54:53 [log_collector] {"stage_name":"log_collector","events_processed":5293,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1058.6,"last_update":"2026-03-21T18:54:53.869419125Z"} +2026/03/21 18:54:53 [metric_collector] {"stage_name":"metric_collector","events_processed":2939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":587.8,"last_update":"2026-03-21T18:54:48.870314906Z"} +2026/03/21 18:54:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:54:48.878530133Z"} +2026/03/21 18:54:53 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":588.3861324482417,"throughput_eps":0,"last_update":"2026-03-21T18:54:49.10157292Z"} +2026/03/21 18:54:53 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":15.982087287231286,"throughput_eps":0,"last_update":"2026-03-21T18:54:48.965962288Z"} +2026/03/21 18:54:53 ───────────────────────────────────────────────── +2026/03/21 18:54:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:54:58 [metric_collector] {"stage_name":"metric_collector","events_processed":2944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":588.8,"last_update":"2026-03-21T18:54:53.869946405Z"} +2026/03/21 18:54:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:54:53.878236305Z"} +2026/03/21 18:54:58 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":588.3861324482417,"throughput_eps":0,"last_update":"2026-03-21T18:54:53.965432738Z"} +2026/03/21 18:54:58 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":16.495460229785028,"throughput_eps":0,"last_update":"2026-03-21T18:54:53.965369276Z"} +2026/03/21 18:54:58 [log_collector] {"stage_name":"log_collector","events_processed":5293,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1058.6,"last_update":"2026-03-21T18:54:53.869419125Z"} +2026/03/21 18:54:58 ───────────────────────────────────────────────── +2026/03/21 18:55:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:55:03 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":588.3861324482417,"throughput_eps":0,"last_update":"2026-03-21T18:54:58.965834102Z"} +2026/03/21 18:55:03 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":16.495460229785028,"throughput_eps":0,"last_update":"2026-03-21T18:54:58.965815135Z"} +2026/03/21 18:55:03 [log_collector] {"stage_name":"log_collector","events_processed":5293,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1058.6,"last_update":"2026-03-21T18:54:58.869739314Z"} +2026/03/21 18:55:03 [metric_collector] {"stage_name":"metric_collector","events_processed":2949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":589.8,"last_update":"2026-03-21T18:54:58.870277134Z"} +2026/03/21 18:55:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:54:58.878474227Z"} +2026/03/21 18:55:03 ───────────────────────────────────────────────── +2026/03/21 18:55:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:55:08 [log_collector] {"stage_name":"log_collector","events_processed":5293,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1058.6,"last_update":"2026-03-21T18:55:03.87004711Z"} +2026/03/21 18:55:08 [metric_collector] {"stage_name":"metric_collector","events_processed":2954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":590.8,"last_update":"2026-03-21T18:55:03.870443891Z"} +2026/03/21 18:55:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:55:03.878686821Z"} +2026/03/21 18:55:08 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":588.3861324482417,"throughput_eps":0,"last_update":"2026-03-21T18:55:03.966126107Z"} +2026/03/21 18:55:08 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":16.495460229785028,"throughput_eps":0,"last_update":"2026-03-21T18:55:03.96606518Z"} +2026/03/21 18:55:08 ───────────────────────────────────────────────── +2026/03/21 18:55:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:55:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:55:08.879496448Z"} +2026/03/21 18:55:13 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":588.3861324482417,"throughput_eps":0,"last_update":"2026-03-21T18:55:08.965748029Z"} +2026/03/21 18:55:13 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":16.495460229785028,"throughput_eps":0,"last_update":"2026-03-21T18:55:08.965709345Z"} +2026/03/21 18:55:13 [log_collector] {"stage_name":"log_collector","events_processed":5293,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1058.6,"last_update":"2026-03-21T18:55:08.870050092Z"} +2026/03/21 18:55:13 [metric_collector] {"stage_name":"metric_collector","events_processed":2959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":591.8,"last_update":"2026-03-21T18:55:08.870487731Z"} +2026/03/21 18:55:13 ───────────────────────────────────────────────── +2026/03/21 18:55:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:55:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:55:13.878818467Z"} +2026/03/21 18:55:18 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":588.3861324482417,"throughput_eps":0,"last_update":"2026-03-21T18:55:13.966112746Z"} +2026/03/21 18:55:18 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":16.495460229785028,"throughput_eps":0,"last_update":"2026-03-21T18:55:13.966136171Z"} +2026/03/21 18:55:18 [log_collector] {"stage_name":"log_collector","events_processed":5293,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1058.6,"last_update":"2026-03-21T18:55:13.869935721Z"} +2026/03/21 18:55:18 [metric_collector] {"stage_name":"metric_collector","events_processed":2964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":592.8,"last_update":"2026-03-21T18:55:13.870437522Z"} +2026/03/21 18:55:18 ───────────────────────────────────────────────── +2026/03/21 18:55:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:55:23 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":16.495460229785028,"throughput_eps":0,"last_update":"2026-03-21T18:55:18.965435696Z"} +2026/03/21 18:55:23 [log_collector] {"stage_name":"log_collector","events_processed":5293,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1058.6,"last_update":"2026-03-21T18:55:18.870315505Z"} +2026/03/21 18:55:23 [metric_collector] {"stage_name":"metric_collector","events_processed":2969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":593.8,"last_update":"2026-03-21T18:55:18.870714049Z"} +2026/03/21 18:55:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:55:18.880108075Z"} +2026/03/21 18:55:23 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":483.64579355859337,"throughput_eps":0,"last_update":"2026-03-21T18:55:19.030163156Z"} +2026/03/21 18:55:23 ───────────────────────────────────────────────── +2026/03/21 18:55:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:55:28 [metric_collector] {"stage_name":"metric_collector","events_processed":2974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":594.8,"last_update":"2026-03-21T18:55:23.869873607Z"} +2026/03/21 18:55:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:55:23.878806108Z"} +2026/03/21 18:55:28 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":483.64579355859337,"throughput_eps":0,"last_update":"2026-03-21T18:55:23.966113973Z"} +2026/03/21 18:55:28 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":16.663920583828023,"throughput_eps":0,"last_update":"2026-03-21T18:55:23.966224905Z"} +2026/03/21 18:55:28 [log_collector] {"stage_name":"log_collector","events_processed":5293,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1058.6,"last_update":"2026-03-21T18:55:28.869441457Z"} +2026/03/21 18:55:28 ───────────────────────────────────────────────── +Saved state: 12 clusters, 5294 messages, reason: none +2026/03/21 18:55:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:55:33 [log_collector] {"stage_name":"log_collector","events_processed":5298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1059.6,"last_update":"2026-03-21T18:55:33.869403856Z"} +2026/03/21 18:55:33 [metric_collector] {"stage_name":"metric_collector","events_processed":2979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":595.8,"last_update":"2026-03-21T18:55:28.870005127Z"} +2026/03/21 18:55:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:55:28.878318802Z"} +2026/03/21 18:55:33 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":483.64579355859337,"throughput_eps":0,"last_update":"2026-03-21T18:55:28.965722972Z"} +2026/03/21 18:55:33 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":16.663920583828023,"throughput_eps":0,"last_update":"2026-03-21T18:55:28.965612351Z"} +2026/03/21 18:55:33 ───────────────────────────────────────────────── +2026/03/21 18:55:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:55:38 [log_collector] {"stage_name":"log_collector","events_processed":5298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1059.6,"last_update":"2026-03-21T18:55:33.869403856Z"} +2026/03/21 18:55:38 [metric_collector] {"stage_name":"metric_collector","events_processed":2984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":596.8,"last_update":"2026-03-21T18:55:33.869621313Z"} +2026/03/21 18:55:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:55:33.876345714Z"} +2026/03/21 18:55:38 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":483.64579355859337,"throughput_eps":0,"last_update":"2026-03-21T18:55:33.965835699Z"} +2026/03/21 18:55:38 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":16.663920583828023,"throughput_eps":0,"last_update":"2026-03-21T18:55:33.965442986Z"} +2026/03/21 18:55:38 ───────────────────────────────────────────────── +2026/03/21 18:55:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:55:43 [metric_collector] {"stage_name":"metric_collector","events_processed":2994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":598.8,"last_update":"2026-03-21T18:55:43.87008775Z"} +2026/03/21 18:55:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:55:38.878944393Z"} +2026/03/21 18:55:43 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":483.64579355859337,"throughput_eps":0,"last_update":"2026-03-21T18:55:38.966090158Z"} +2026/03/21 18:55:43 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":16.663920583828023,"throughput_eps":0,"last_update":"2026-03-21T18:55:38.966072264Z"} +2026/03/21 18:55:43 [log_collector] {"stage_name":"log_collector","events_processed":5298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1059.6,"last_update":"2026-03-21T18:55:38.869509961Z"} +2026/03/21 18:55:43 ───────────────────────────────────────────────── +2026/03/21 18:55:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:55:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:55:43.87703131Z"} +2026/03/21 18:55:48 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":483.64579355859337,"throughput_eps":0,"last_update":"2026-03-21T18:55:43.965139839Z"} +2026/03/21 18:55:48 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":16.663920583828023,"throughput_eps":0,"last_update":"2026-03-21T18:55:43.966196323Z"} +2026/03/21 18:55:48 [log_collector] {"stage_name":"log_collector","events_processed":5298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1059.6,"last_update":"2026-03-21T18:55:43.870205655Z"} +2026/03/21 18:55:48 [metric_collector] {"stage_name":"metric_collector","events_processed":2994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":598.8,"last_update":"2026-03-21T18:55:43.87008775Z"} +2026/03/21 18:55:48 ───────────────────────────────────────────────── +2026/03/21 18:55:49 mad: auto-calibrated on 100 vectors (51 features) +2026/03/21 18:55:49 [ANOMALY] time=2026-03-21T18:55:49Z score=0.9031 method=SEAD details=MAD!:w=0.26,s=1.00 RRCF-fast!:w=0.18,s=0.89 RRCF-mid!:w=0.18,s=0.89 RRCF-slow!:w=0.17,s=0.94 COPOD!:w=0.21,s=0.78 +2026/03/21 18:55:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:55:53 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":550.1740094468747,"throughput_eps":0,"last_update":"2026-03-21T18:55:49.781603543Z"} +2026/03/21 18:55:53 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":16.663920583828023,"throughput_eps":0,"last_update":"2026-03-21T18:55:48.965300039Z"} +2026/03/21 18:55:53 [log_collector] {"stage_name":"log_collector","events_processed":5298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1059.6,"last_update":"2026-03-21T18:55:48.869400585Z"} +2026/03/21 18:55:53 [metric_collector] {"stage_name":"metric_collector","events_processed":2998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":599.6,"last_update":"2026-03-21T18:55:48.869394463Z"} +2026/03/21 18:55:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:55:48.876118533Z"} +2026/03/21 18:55:53 ───────────────────────────────────────────────── +2026/03/21 18:55:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:55:58 [log_collector] {"stage_name":"log_collector","events_processed":5298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1059.6,"last_update":"2026-03-21T18:55:53.870267298Z"} +2026/03/21 18:55:58 [metric_collector] {"stage_name":"metric_collector","events_processed":3004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":600.8,"last_update":"2026-03-21T18:55:53.870513329Z"} +2026/03/21 18:55:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:55:53.87903853Z"} +2026/03/21 18:55:58 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":550.1740094468747,"throughput_eps":0,"last_update":"2026-03-21T18:55:53.966066419Z"} +2026/03/21 18:55:58 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":15.83689646706242,"throughput_eps":0,"last_update":"2026-03-21T18:55:53.966084433Z"} +2026/03/21 18:55:58 ───────────────────────────────────────────────── +2026/03/21 18:56:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:56:03 [metric_collector] {"stage_name":"metric_collector","events_processed":3009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":601.8,"last_update":"2026-03-21T18:55:58.869622015Z"} +2026/03/21 18:56:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1206,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:55:58.878738268Z"} +2026/03/21 18:56:03 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":550.1740094468747,"throughput_eps":0,"last_update":"2026-03-21T18:55:58.966033389Z"} +2026/03/21 18:56:03 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":15.83689646706242,"throughput_eps":0,"last_update":"2026-03-21T18:55:58.966006578Z"} +2026/03/21 18:56:03 [log_collector] {"stage_name":"log_collector","events_processed":5298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1059.6,"last_update":"2026-03-21T18:55:58.869459023Z"} +2026/03/21 18:56:03 ───────────────────────────────────────────────── +2026/03/21 18:56:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:56:08 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":15.83689646706242,"throughput_eps":0,"last_update":"2026-03-21T18:56:03.966101623Z"} +2026/03/21 18:56:08 [log_collector] {"stage_name":"log_collector","events_processed":5298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1059.6,"last_update":"2026-03-21T18:56:03.86941952Z"} +2026/03/21 18:56:08 [metric_collector] {"stage_name":"metric_collector","events_processed":3014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":602.8,"last_update":"2026-03-21T18:56:03.86961785Z"} +2026/03/21 18:56:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:56:03.877804803Z"} +2026/03/21 18:56:08 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":550.1740094468747,"throughput_eps":0,"last_update":"2026-03-21T18:56:03.966127603Z"} +2026/03/21 18:56:08 ───────────────────────────────────────────────── +2026/03/21 18:56:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:56:13 [log_collector] {"stage_name":"log_collector","events_processed":5298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1059.6,"last_update":"2026-03-21T18:56:08.869640269Z"} +2026/03/21 18:56:13 [metric_collector] {"stage_name":"metric_collector","events_processed":3019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":603.8,"last_update":"2026-03-21T18:56:08.86995981Z"} +2026/03/21 18:56:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1210,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:56:08.876469019Z"} +2026/03/21 18:56:13 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":550.1740094468747,"throughput_eps":0,"last_update":"2026-03-21T18:56:08.965722862Z"} +2026/03/21 18:56:13 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":15.83689646706242,"throughput_eps":0,"last_update":"2026-03-21T18:56:08.96567992Z"} +2026/03/21 18:56:13 ───────────────────────────────────────────────── +2026/03/21 18:56:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:56:18 [log_collector] {"stage_name":"log_collector","events_processed":5309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1061.8,"last_update":"2026-03-21T18:56:18.869410286Z"} +2026/03/21 18:56:18 [metric_collector] {"stage_name":"metric_collector","events_processed":3023,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":604.6,"last_update":"2026-03-21T18:56:13.870024397Z"} +2026/03/21 18:56:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:56:13.876985412Z"} +2026/03/21 18:56:18 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":550.1740094468747,"throughput_eps":0,"last_update":"2026-03-21T18:56:13.965122726Z"} +2026/03/21 18:56:18 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":15.83689646706242,"throughput_eps":0,"last_update":"2026-03-21T18:56:13.966203816Z"} +2026/03/21 18:56:18 ───────────────────────────────────────────────── +2026/03/21 18:56:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:56:23 [metric_collector] {"stage_name":"metric_collector","events_processed":3029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":605.8,"last_update":"2026-03-21T18:56:18.869854968Z"} +2026/03/21 18:56:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:56:18.878769063Z"} +2026/03/21 18:56:23 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":462.4430163574998,"throughput_eps":0,"last_update":"2026-03-21T18:56:19.077487354Z"} +2026/03/21 18:56:23 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":15.83689646706242,"throughput_eps":0,"last_update":"2026-03-21T18:56:18.966070166Z"} +2026/03/21 18:56:23 [log_collector] {"stage_name":"log_collector","events_processed":5309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1061.8,"last_update":"2026-03-21T18:56:18.869410286Z"} +2026/03/21 18:56:23 ───────────────────────────────────────────────── +2026/03/21 18:56:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:56:28 [log_collector] {"stage_name":"log_collector","events_processed":5473,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1094.6,"last_update":"2026-03-21T18:56:23.870096306Z"} +2026/03/21 18:56:28 [metric_collector] {"stage_name":"metric_collector","events_processed":3034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":606.8,"last_update":"2026-03-21T18:56:23.870336988Z"} +2026/03/21 18:56:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:56:23.875862923Z"} +2026/03/21 18:56:28 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":462.4430163574998,"throughput_eps":0,"last_update":"2026-03-21T18:56:23.966166266Z"} +2026/03/21 18:56:28 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":15.661773173649937,"throughput_eps":0,"last_update":"2026-03-21T18:56:23.966281536Z"} +2026/03/21 18:56:28 ───────────────────────────────────────────────── +2026/03/21 18:56:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:56:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:56:28.876136092Z"} +2026/03/21 18:56:33 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":462.4430163574998,"throughput_eps":0,"last_update":"2026-03-21T18:56:28.965311835Z"} +2026/03/21 18:56:33 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":15.661773173649937,"throughput_eps":0,"last_update":"2026-03-21T18:56:28.965321643Z"} +2026/03/21 18:56:33 [log_collector] {"stage_name":"log_collector","events_processed":5649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1129.8,"last_update":"2026-03-21T18:56:28.869779866Z"} +2026/03/21 18:56:33 [metric_collector] {"stage_name":"metric_collector","events_processed":3039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":607.8,"last_update":"2026-03-21T18:56:28.869976513Z"} +2026/03/21 18:56:33 ───────────────────────────────────────────────── +Saved state: 12 clusters, 5658 messages, reason: none +2026/03/21 18:56:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:56:38 [log_collector] {"stage_name":"log_collector","events_processed":5657,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1131.4,"last_update":"2026-03-21T18:56:33.869429693Z"} +2026/03/21 18:56:38 [metric_collector] {"stage_name":"metric_collector","events_processed":3044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":608.8,"last_update":"2026-03-21T18:56:33.86999191Z"} +2026/03/21 18:56:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:56:33.877960114Z"} +2026/03/21 18:56:38 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":462.4430163574998,"throughput_eps":0,"last_update":"2026-03-21T18:56:33.965150064Z"} +2026/03/21 18:56:38 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":15.661773173649937,"throughput_eps":0,"last_update":"2026-03-21T18:56:33.966332478Z"} +2026/03/21 18:56:38 ───────────────────────────────────────────────── +2026/03/21 18:56:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:56:43 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":15.661773173649937,"throughput_eps":0,"last_update":"2026-03-21T18:56:38.965464002Z"} +2026/03/21 18:56:43 [log_collector] {"stage_name":"log_collector","events_processed":5660,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1132,"last_update":"2026-03-21T18:56:38.869942974Z"} +2026/03/21 18:56:43 [metric_collector] {"stage_name":"metric_collector","events_processed":3054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":610.8,"last_update":"2026-03-21T18:56:43.869752427Z"} +2026/03/21 18:56:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1222,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:56:38.880193048Z"} +2026/03/21 18:56:43 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":462.4430163574998,"throughput_eps":0,"last_update":"2026-03-21T18:56:38.965449164Z"} +2026/03/21 18:56:43 ───────────────────────────────────────────────── +2026/03/21 18:56:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:56:48 [log_collector] {"stage_name":"log_collector","events_processed":5660,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1132,"last_update":"2026-03-21T18:56:43.869795259Z"} +2026/03/21 18:56:48 [metric_collector] {"stage_name":"metric_collector","events_processed":3054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":610.8,"last_update":"2026-03-21T18:56:43.869752427Z"} +2026/03/21 18:56:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:56:43.877548761Z"} +2026/03/21 18:56:48 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":462.4430163574998,"throughput_eps":0,"last_update":"2026-03-21T18:56:43.96569862Z"} +2026/03/21 18:56:48 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":15.661773173649937,"throughput_eps":0,"last_update":"2026-03-21T18:56:43.965726653Z"} +2026/03/21 18:56:48 ───────────────────────────────────────────────── +2026/03/21 18:56:49 [ANOMALY] time=2026-03-21T18:56:49Z score=0.8588 method=SEAD details=MAD!:w=0.26,s=0.96 RRCF-fast:w=0.18,s=0.71 RRCF-mid:w=0.18,s=0.68 RRCF-slow!:w=0.17,s=0.87 COPOD!:w=0.21,s=1.00 +2026/03/21 18:56:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:56:53 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":550.7191066859999,"throughput_eps":0,"last_update":"2026-03-21T18:56:49.86958129Z"} +2026/03/21 18:56:53 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":15.661773173649937,"throughput_eps":0,"last_update":"2026-03-21T18:56:48.965800122Z"} +2026/03/21 18:56:53 [log_collector] {"stage_name":"log_collector","events_processed":5670,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1134,"last_update":"2026-03-21T18:56:48.869639979Z"} +2026/03/21 18:56:53 [metric_collector] {"stage_name":"metric_collector","events_processed":3059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":611.8,"last_update":"2026-03-21T18:56:48.870140338Z"} +2026/03/21 18:56:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:56:48.879472755Z"} +2026/03/21 18:56:53 ───────────────────────────────────────────────── +2026/03/21 18:56:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:56:58 [metric_collector] {"stage_name":"metric_collector","events_processed":3064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":612.8,"last_update":"2026-03-21T18:56:53.87026626Z"} +2026/03/21 18:56:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:56:53.87889036Z"} +2026/03/21 18:56:58 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":550.7191066859999,"throughput_eps":0,"last_update":"2026-03-21T18:56:53.966188116Z"} +2026/03/21 18:56:58 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":14.62412533891995,"throughput_eps":0,"last_update":"2026-03-21T18:56:53.966153129Z"} +2026/03/21 18:56:58 [log_collector] {"stage_name":"log_collector","events_processed":5671,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1134.2,"last_update":"2026-03-21T18:56:53.869893957Z"} +2026/03/21 18:56:58 ───────────────────────────────────────────────── +2026/03/21 18:57:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:57:03 [log_collector] {"stage_name":"log_collector","events_processed":5687,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1137.4,"last_update":"2026-03-21T18:56:58.869422584Z"} +2026/03/21 18:57:03 [metric_collector] {"stage_name":"metric_collector","events_processed":3069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":613.8,"last_update":"2026-03-21T18:56:58.869756805Z"} +2026/03/21 18:57:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:56:58.879063332Z"} +2026/03/21 18:57:03 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":550.7191066859999,"throughput_eps":0,"last_update":"2026-03-21T18:56:58.965175426Z"} +2026/03/21 18:57:03 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":14.62412533891995,"throughput_eps":0,"last_update":"2026-03-21T18:56:58.966290993Z"} +2026/03/21 18:57:03 ───────────────────────────────────────────────── +2026/03/21 18:57:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:57:08 [log_collector] {"stage_name":"log_collector","events_processed":5687,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1137.4,"last_update":"2026-03-21T18:57:03.8703292Z"} +2026/03/21 18:57:08 [metric_collector] {"stage_name":"metric_collector","events_processed":3074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":614.8,"last_update":"2026-03-21T18:57:03.87069962Z"} +2026/03/21 18:57:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:57:03.880469977Z"} +2026/03/21 18:57:08 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":550.7191066859999,"throughput_eps":0,"last_update":"2026-03-21T18:57:03.965704941Z"} +2026/03/21 18:57:08 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":14.62412533891995,"throughput_eps":0,"last_update":"2026-03-21T18:57:03.965678019Z"} +2026/03/21 18:57:08 ───────────────────────────────────────────────── +2026/03/21 18:57:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:57:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:57:08.87917703Z"} +2026/03/21 18:57:13 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":550.7191066859999,"throughput_eps":0,"last_update":"2026-03-21T18:57:08.965370381Z"} +2026/03/21 18:57:13 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":14.62412533891995,"throughput_eps":0,"last_update":"2026-03-21T18:57:08.965461115Z"} +2026/03/21 18:57:13 [log_collector] {"stage_name":"log_collector","events_processed":5687,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1137.4,"last_update":"2026-03-21T18:57:13.870303012Z"} +2026/03/21 18:57:13 [metric_collector] {"stage_name":"metric_collector","events_processed":3079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":615.8,"last_update":"2026-03-21T18:57:08.870089111Z"} +2026/03/21 18:57:13 ───────────────────────────────────────────────── +2026/03/21 18:57:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:57:18 [log_collector] {"stage_name":"log_collector","events_processed":5687,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1137.4,"last_update":"2026-03-21T18:57:13.870303012Z"} +2026/03/21 18:57:18 [metric_collector] {"stage_name":"metric_collector","events_processed":3084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":616.8,"last_update":"2026-03-21T18:57:13.870592788Z"} +2026/03/21 18:57:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:57:13.878739694Z"} +2026/03/21 18:57:18 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":550.7191066859999,"throughput_eps":0,"last_update":"2026-03-21T18:57:13.966154574Z"} +2026/03/21 18:57:18 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":14.62412533891995,"throughput_eps":0,"last_update":"2026-03-21T18:57:13.966036798Z"} +2026/03/21 18:57:18 ───────────────────────────────────────────────── +2026/03/21 18:57:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:57:23 [metric_collector] {"stage_name":"metric_collector","events_processed":3089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":617.8,"last_update":"2026-03-21T18:57:18.86985705Z"} +2026/03/21 18:57:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:57:18.878800161Z"} +2026/03/21 18:57:23 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":473.5363531488,"throughput_eps":0,"last_update":"2026-03-21T18:57:19.130974402Z"} +2026/03/21 18:57:23 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":14.62412533891995,"throughput_eps":0,"last_update":"2026-03-21T18:57:18.966142873Z"} +2026/03/21 18:57:23 [log_collector] {"stage_name":"log_collector","events_processed":5687,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1137.4,"last_update":"2026-03-21T18:57:18.869414592Z"} +2026/03/21 18:57:23 ───────────────────────────────────────────────── +2026/03/21 18:57:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:57:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:57:23.878244338Z"} +2026/03/21 18:57:28 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":473.5363531488,"throughput_eps":0,"last_update":"2026-03-21T18:57:23.965616968Z"} +2026/03/21 18:57:28 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":15.39762667113596,"throughput_eps":0,"last_update":"2026-03-21T18:57:23.965588193Z"} +2026/03/21 18:57:28 [log_collector] {"stage_name":"log_collector","events_processed":5687,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1137.4,"last_update":"2026-03-21T18:57:23.869857914Z"} +2026/03/21 18:57:28 [metric_collector] {"stage_name":"metric_collector","events_processed":3094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":618.8,"last_update":"2026-03-21T18:57:23.870292887Z"} +2026/03/21 18:57:28 ───────────────────────────────────────────────── +2026/03/21 18:57:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:57:33 [log_collector] {"stage_name":"log_collector","events_processed":5687,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1137.4,"last_update":"2026-03-21T18:57:28.869926818Z"} +2026/03/21 18:57:33 [metric_collector] {"stage_name":"metric_collector","events_processed":3099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":619.8,"last_update":"2026-03-21T18:57:28.870544532Z"} +2026/03/21 18:57:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:57:28.878115014Z"} +2026/03/21 18:57:33 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":473.5363531488,"throughput_eps":0,"last_update":"2026-03-21T18:57:28.96533946Z"} +2026/03/21 18:57:33 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":15.39762667113596,"throughput_eps":0,"last_update":"2026-03-21T18:57:28.96530856Z"} +2026/03/21 18:57:33 ───────────────────────────────────────────────── +2026/03/21 18:57:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:57:38 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":473.5363531488,"throughput_eps":0,"last_update":"2026-03-21T18:57:33.965907581Z"} +2026/03/21 18:57:38 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":15.39762667113596,"throughput_eps":0,"last_update":"2026-03-21T18:57:33.96603243Z"} +2026/03/21 18:57:38 [log_collector] {"stage_name":"log_collector","events_processed":5687,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1137.4,"last_update":"2026-03-21T18:57:33.86954435Z"} +2026/03/21 18:57:38 [metric_collector] {"stage_name":"metric_collector","events_processed":3104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":620.8,"last_update":"2026-03-21T18:57:33.869888238Z"} +2026/03/21 18:57:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:57:33.878648529Z"} +2026/03/21 18:57:38 ───────────────────────────────────────────────── +2026/03/21 18:57:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:57:43 [log_collector] {"stage_name":"log_collector","events_processed":5687,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1137.4,"last_update":"2026-03-21T18:57:38.869903403Z"} +2026/03/21 18:57:43 [metric_collector] {"stage_name":"metric_collector","events_processed":3109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":621.8,"last_update":"2026-03-21T18:57:38.870268182Z"} +2026/03/21 18:57:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1246,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:57:38.878878916Z"} +2026/03/21 18:57:43 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":473.5363531488,"throughput_eps":0,"last_update":"2026-03-21T18:57:38.966169679Z"} +2026/03/21 18:57:43 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":15.39762667113596,"throughput_eps":0,"last_update":"2026-03-21T18:57:38.966136134Z"} +2026/03/21 18:57:43 ───────────────────────────────────────────────── +2026/03/21 18:57:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:57:48 [log_collector] {"stage_name":"log_collector","events_processed":5687,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1137.4,"last_update":"2026-03-21T18:57:43.870031541Z"} +2026/03/21 18:57:48 [metric_collector] {"stage_name":"metric_collector","events_processed":3114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":622.8,"last_update":"2026-03-21T18:57:43.870256372Z"} +2026/03/21 18:57:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:57:43.879015881Z"} +2026/03/21 18:57:48 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":473.5363531488,"throughput_eps":0,"last_update":"2026-03-21T18:57:43.96519289Z"} +2026/03/21 18:57:48 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":15.39762667113596,"throughput_eps":0,"last_update":"2026-03-21T18:57:43.966275174Z"} +2026/03/21 18:57:48 ───────────────────────────────────────────────── +2026/03/21 18:57:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:57:53 [log_collector] {"stage_name":"log_collector","events_processed":5687,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1137.4,"last_update":"2026-03-21T18:57:48.869634736Z"} +2026/03/21 18:57:53 [metric_collector] {"stage_name":"metric_collector","events_processed":3119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":623.8,"last_update":"2026-03-21T18:57:48.869812066Z"} +2026/03/21 18:57:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:57:48.878515969Z"} +2026/03/21 18:57:53 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":473.5363531488,"throughput_eps":0,"last_update":"2026-03-21T18:57:48.966128969Z"} +2026/03/21 18:57:53 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":15.39762667113596,"throughput_eps":0,"last_update":"2026-03-21T18:57:48.966091287Z"} +2026/03/21 18:57:53 ───────────────────────────────────────────────── +2026/03/21 18:57:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:57:58 [log_collector] {"stage_name":"log_collector","events_processed":5687,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1137.4,"last_update":"2026-03-21T18:57:53.870269197Z"} +2026/03/21 18:57:58 [metric_collector] {"stage_name":"metric_collector","events_processed":3124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":624.8,"last_update":"2026-03-21T18:57:53.870921597Z"} +2026/03/21 18:57:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:57:53.879063824Z"} +2026/03/21 18:57:58 [transform_engine] {"stage_name":"transform_engine","events_processed":104,"events_dropped":0,"avg_latency_ms":392.50390771904,"throughput_eps":0,"last_update":"2026-03-21T18:57:53.96538591Z"} +2026/03/21 18:57:58 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":15.795909536908768,"throughput_eps":0,"last_update":"2026-03-21T18:57:53.965274256Z"} +2026/03/21 18:57:58 ───────────────────────────────────────────────── +2026/03/21 18:58:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:58:03 [log_collector] {"stage_name":"log_collector","events_processed":5687,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1137.4,"last_update":"2026-03-21T18:57:58.870148902Z"} +2026/03/21 18:58:03 [metric_collector] {"stage_name":"metric_collector","events_processed":3129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":625.8,"last_update":"2026-03-21T18:57:58.870469847Z"} +2026/03/21 18:58:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:57:58.879399723Z"} +2026/03/21 18:58:03 [transform_engine] {"stage_name":"transform_engine","events_processed":104,"events_dropped":0,"avg_latency_ms":392.50390771904,"throughput_eps":0,"last_update":"2026-03-21T18:57:58.965541494Z"} +2026/03/21 18:58:03 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":15.795909536908768,"throughput_eps":0,"last_update":"2026-03-21T18:57:58.96564375Z"} +2026/03/21 18:58:03 ───────────────────────────────────────────────── +2026/03/21 18:58:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:58:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:58:03.878603884Z"} +2026/03/21 18:58:08 [transform_engine] {"stage_name":"transform_engine","events_processed":104,"events_dropped":0,"avg_latency_ms":392.50390771904,"throughput_eps":0,"last_update":"2026-03-21T18:58:03.96580202Z"} +2026/03/21 18:58:08 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":15.795909536908768,"throughput_eps":0,"last_update":"2026-03-21T18:58:03.965928412Z"} +2026/03/21 18:58:08 [log_collector] {"stage_name":"log_collector","events_processed":5687,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1137.4,"last_update":"2026-03-21T18:58:03.869583495Z"} +2026/03/21 18:58:08 [metric_collector] {"stage_name":"metric_collector","events_processed":3134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":626.8,"last_update":"2026-03-21T18:58:03.870082882Z"} +2026/03/21 18:58:08 ───────────────────────────────────────────────── +Saved state: 12 clusters, 5688 messages, reason: none +2026/03/21 18:58:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:58:13 [metric_collector] {"stage_name":"metric_collector","events_processed":3139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":627.8,"last_update":"2026-03-21T18:58:08.869640912Z"} +2026/03/21 18:58:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:58:08.879230792Z"} +2026/03/21 18:58:13 [transform_engine] {"stage_name":"transform_engine","events_processed":104,"events_dropped":0,"avg_latency_ms":392.50390771904,"throughput_eps":0,"last_update":"2026-03-21T18:58:08.965577697Z"} +2026/03/21 18:58:13 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":15.795909536908768,"throughput_eps":0,"last_update":"2026-03-21T18:58:08.965549253Z"} +2026/03/21 18:58:13 [log_collector] {"stage_name":"log_collector","events_processed":5687,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1137.4,"last_update":"2026-03-21T18:58:08.869834443Z"} +2026/03/21 18:58:13 ───────────────────────────────────────────────── +2026/03/21 18:58:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:58:18 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":15.795909536908768,"throughput_eps":0,"last_update":"2026-03-21T18:58:13.965427357Z"} +2026/03/21 18:58:18 [log_collector] {"stage_name":"log_collector","events_processed":5701,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1140.2,"last_update":"2026-03-21T18:58:13.870029715Z"} +2026/03/21 18:58:18 [metric_collector] {"stage_name":"metric_collector","events_processed":3144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":628.8,"last_update":"2026-03-21T18:58:13.870424822Z"} +2026/03/21 18:58:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:58:13.879170705Z"} +2026/03/21 18:58:18 [transform_engine] {"stage_name":"transform_engine","events_processed":104,"events_dropped":0,"avg_latency_ms":392.50390771904,"throughput_eps":0,"last_update":"2026-03-21T18:58:13.965318167Z"} +2026/03/21 18:58:18 ───────────────────────────────────────────────── +2026/03/21 18:58:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:58:23 [log_collector] {"stage_name":"log_collector","events_processed":5701,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1140.2,"last_update":"2026-03-21T18:58:18.869902919Z"} +2026/03/21 18:58:23 [metric_collector] {"stage_name":"metric_collector","events_processed":3148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":629.6,"last_update":"2026-03-21T18:58:18.870004914Z"} +2026/03/21 18:58:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:58:18.878745417Z"} +2026/03/21 18:58:23 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":336.576365175232,"throughput_eps":0,"last_update":"2026-03-21T18:58:19.079001666Z"} +2026/03/21 18:58:23 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":15.795909536908768,"throughput_eps":0,"last_update":"2026-03-21T18:58:18.966028405Z"} +2026/03/21 18:58:23 ───────────────────────────────────────────────── +2026/03/21 18:58:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:58:28 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":15.887803429527017,"throughput_eps":0,"last_update":"2026-03-21T18:58:23.96553565Z"} +2026/03/21 18:58:28 [log_collector] {"stage_name":"log_collector","events_processed":5701,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1140.2,"last_update":"2026-03-21T18:58:23.870387425Z"} +2026/03/21 18:58:28 [metric_collector] {"stage_name":"metric_collector","events_processed":3154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":630.8,"last_update":"2026-03-21T18:58:23.870292743Z"} +2026/03/21 18:58:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:58:23.879263097Z"} +2026/03/21 18:58:28 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":336.576365175232,"throughput_eps":0,"last_update":"2026-03-21T18:58:23.96549387Z"} +2026/03/21 18:58:28 ───────────────────────────────────────────────── +2026/03/21 18:58:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:58:33 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":15.887803429527017,"throughput_eps":0,"last_update":"2026-03-21T18:58:28.965972875Z"} +2026/03/21 18:58:33 [log_collector] {"stage_name":"log_collector","events_processed":5701,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1140.2,"last_update":"2026-03-21T18:58:28.869617248Z"} +2026/03/21 18:58:33 [metric_collector] {"stage_name":"metric_collector","events_processed":3159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":631.8,"last_update":"2026-03-21T18:58:28.869819375Z"} +2026/03/21 18:58:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:58:28.878694657Z"} +2026/03/21 18:58:33 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":336.576365175232,"throughput_eps":0,"last_update":"2026-03-21T18:58:28.965858006Z"} +2026/03/21 18:58:33 ───────────────────────────────────────────────── +2026/03/21 18:58:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:58:38 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":15.887803429527017,"throughput_eps":0,"last_update":"2026-03-21T18:58:33.966253251Z"} +2026/03/21 18:58:38 [log_collector] {"stage_name":"log_collector","events_processed":5701,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1140.2,"last_update":"2026-03-21T18:58:33.87029145Z"} +2026/03/21 18:58:38 [metric_collector] {"stage_name":"metric_collector","events_processed":3164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":632.8,"last_update":"2026-03-21T18:58:33.870621162Z"} +2026/03/21 18:58:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:58:33.87901571Z"} +2026/03/21 18:58:38 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":336.576365175232,"throughput_eps":0,"last_update":"2026-03-21T18:58:33.965146341Z"} +2026/03/21 18:58:38 ───────────────────────────────────────────────── +2026/03/21 18:58:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:58:43 [metric_collector] {"stage_name":"metric_collector","events_processed":3169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":633.8,"last_update":"2026-03-21T18:58:38.869763803Z"} +2026/03/21 18:58:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:58:38.878188172Z"} +2026/03/21 18:58:43 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":336.576365175232,"throughput_eps":0,"last_update":"2026-03-21T18:58:38.965570954Z"} +2026/03/21 18:58:43 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":15.887803429527017,"throughput_eps":0,"last_update":"2026-03-21T18:58:38.965622242Z"} +2026/03/21 18:58:43 [log_collector] {"stage_name":"log_collector","events_processed":5701,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1140.2,"last_update":"2026-03-21T18:58:38.869412471Z"} +2026/03/21 18:58:43 ───────────────────────────────────────────────── +2026/03/21 18:58:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:58:48 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":15.887803429527017,"throughput_eps":0,"last_update":"2026-03-21T18:58:43.965431997Z"} +2026/03/21 18:58:48 [log_collector] {"stage_name":"log_collector","events_processed":5701,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1140.2,"last_update":"2026-03-21T18:58:43.8696387Z"} +2026/03/21 18:58:48 [metric_collector] {"stage_name":"metric_collector","events_processed":3174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":634.8,"last_update":"2026-03-21T18:58:43.870027585Z"} +2026/03/21 18:58:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:58:43.878149215Z"} +2026/03/21 18:58:48 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":336.576365175232,"throughput_eps":0,"last_update":"2026-03-21T18:58:43.965453548Z"} +2026/03/21 18:58:48 ───────────────────────────────────────────────── +2026/03/21 18:58:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:58:53 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":284.9793587401856,"throughput_eps":0,"last_update":"2026-03-21T18:58:49.044285176Z"} +2026/03/21 18:58:53 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":15.887803429527017,"throughput_eps":0,"last_update":"2026-03-21T18:58:48.965667273Z"} +2026/03/21 18:58:53 [log_collector] {"stage_name":"log_collector","events_processed":5701,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1140.2,"last_update":"2026-03-21T18:58:48.869590001Z"} +2026/03/21 18:58:53 [metric_collector] {"stage_name":"metric_collector","events_processed":3179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":635.8,"last_update":"2026-03-21T18:58:48.869883923Z"} +2026/03/21 18:58:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:58:48.878260852Z"} +2026/03/21 18:58:53 ───────────────────────────────────────────────── +2026/03/21 18:58:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:58:58 [metric_collector] {"stage_name":"metric_collector","events_processed":3184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":636.8,"last_update":"2026-03-21T18:58:53.869701203Z"} +2026/03/21 18:58:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1276,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:58:53.878073744Z"} +2026/03/21 18:58:58 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":284.9793587401856,"throughput_eps":0,"last_update":"2026-03-21T18:58:53.965526154Z"} +2026/03/21 18:58:58 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":16.186003543621613,"throughput_eps":0,"last_update":"2026-03-21T18:58:53.965416403Z"} +2026/03/21 18:58:58 [log_collector] {"stage_name":"log_collector","events_processed":5701,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1140.2,"last_update":"2026-03-21T18:58:53.869711544Z"} +2026/03/21 18:58:58 ───────────────────────────────────────────────── +2026/03/21 18:59:03 ── Pipeline Health ────────────────────────────── +2026/03/21 18:59:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:58:58.878779232Z"} +2026/03/21 18:59:03 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":284.9793587401856,"throughput_eps":0,"last_update":"2026-03-21T18:58:58.96524747Z"} +2026/03/21 18:59:03 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":16.186003543621613,"throughput_eps":0,"last_update":"2026-03-21T18:58:58.965289681Z"} +2026/03/21 18:59:03 [log_collector] {"stage_name":"log_collector","events_processed":5701,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1140.2,"last_update":"2026-03-21T18:58:58.870435035Z"} +2026/03/21 18:59:03 [metric_collector] {"stage_name":"metric_collector","events_processed":3189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":637.8,"last_update":"2026-03-21T18:58:58.870622313Z"} +2026/03/21 18:59:03 ───────────────────────────────────────────────── +2026/03/21 18:59:08 ── Pipeline Health ────────────────────────────── +2026/03/21 18:59:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:59:03.878550515Z"} +2026/03/21 18:59:08 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":284.9793587401856,"throughput_eps":0,"last_update":"2026-03-21T18:59:03.966045348Z"} +2026/03/21 18:59:08 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":16.186003543621613,"throughput_eps":0,"last_update":"2026-03-21T18:59:03.96607783Z"} +2026/03/21 18:59:08 [log_collector] {"stage_name":"log_collector","events_processed":5701,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1140.2,"last_update":"2026-03-21T18:59:08.86943091Z"} +2026/03/21 18:59:08 [metric_collector] {"stage_name":"metric_collector","events_processed":3194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":638.8,"last_update":"2026-03-21T18:59:03.869942693Z"} +2026/03/21 18:59:08 ───────────────────────────────────────────────── +2026/03/21 18:59:13 ── Pipeline Health ────────────────────────────── +2026/03/21 18:59:13 [log_collector] {"stage_name":"log_collector","events_processed":5701,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1140.2,"last_update":"2026-03-21T18:59:08.86943091Z"} +2026/03/21 18:59:13 [metric_collector] {"stage_name":"metric_collector","events_processed":3199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":639.8,"last_update":"2026-03-21T18:59:08.870000851Z"} +2026/03/21 18:59:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:59:08.878928945Z"} +2026/03/21 18:59:13 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":284.9793587401856,"throughput_eps":0,"last_update":"2026-03-21T18:59:08.96511212Z"} +2026/03/21 18:59:13 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":16.186003543621613,"throughput_eps":0,"last_update":"2026-03-21T18:59:08.966278802Z"} +2026/03/21 18:59:13 ───────────────────────────────────────────────── +Saved state: 12 clusters, 5702 messages, reason: none +2026/03/21 18:59:18 ── Pipeline Health ────────────────────────────── +2026/03/21 18:59:18 [log_collector] {"stage_name":"log_collector","events_processed":5701,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1140.2,"last_update":"2026-03-21T18:59:13.869970811Z"} +2026/03/21 18:59:18 [metric_collector] {"stage_name":"metric_collector","events_processed":3204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":640.8,"last_update":"2026-03-21T18:59:13.870500694Z"} +2026/03/21 18:59:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:59:13.878860532Z"} +2026/03/21 18:59:18 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":284.9793587401856,"throughput_eps":0,"last_update":"2026-03-21T18:59:13.966163882Z"} +2026/03/21 18:59:18 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":16.186003543621613,"throughput_eps":0,"last_update":"2026-03-21T18:59:13.966053721Z"} +2026/03/21 18:59:18 ───────────────────────────────────────────────── +2026/03/21 18:59:23 ── Pipeline Health ────────────────────────────── +2026/03/21 18:59:23 [metric_collector] {"stage_name":"metric_collector","events_processed":3209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":641.8,"last_update":"2026-03-21T18:59:18.869776861Z"} +2026/03/21 18:59:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1286,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:59:18.876284694Z"} +2026/03/21 18:59:23 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":284.9793587401856,"throughput_eps":0,"last_update":"2026-03-21T18:59:18.965431433Z"} +2026/03/21 18:59:23 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":16.186003543621613,"throughput_eps":0,"last_update":"2026-03-21T18:59:18.965449066Z"} +2026/03/21 18:59:23 [log_collector] {"stage_name":"log_collector","events_processed":5706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1141.2,"last_update":"2026-03-21T18:59:18.869796257Z"} +2026/03/21 18:59:23 ───────────────────────────────────────────────── +2026/03/21 18:59:28 ── Pipeline Health ────────────────────────────── +2026/03/21 18:59:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:59:23.876971571Z"} +2026/03/21 18:59:28 [transform_engine] {"stage_name":"transform_engine","events_processed":107,"events_dropped":0,"avg_latency_ms":250.2415655921485,"throughput_eps":0,"last_update":"2026-03-21T18:59:23.965071038Z"} +2026/03/21 18:59:28 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":15.081331634897293,"throughput_eps":0,"last_update":"2026-03-21T18:59:23.966167947Z"} +2026/03/21 18:59:28 [log_collector] {"stage_name":"log_collector","events_processed":5706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1141.2,"last_update":"2026-03-21T18:59:23.869405323Z"} +2026/03/21 18:59:28 [metric_collector] {"stage_name":"metric_collector","events_processed":3214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":642.8,"last_update":"2026-03-21T18:59:23.869615866Z"} +2026/03/21 18:59:28 ───────────────────────────────────────────────── +2026/03/21 18:59:33 ── Pipeline Health ────────────────────────────── +2026/03/21 18:59:33 [transform_engine] {"stage_name":"transform_engine","events_processed":107,"events_dropped":0,"avg_latency_ms":250.2415655921485,"throughput_eps":0,"last_update":"2026-03-21T18:59:28.965934758Z"} +2026/03/21 18:59:33 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":15.081331634897293,"throughput_eps":0,"last_update":"2026-03-21T18:59:28.96591973Z"} +2026/03/21 18:59:33 [log_collector] {"stage_name":"log_collector","events_processed":5706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1141.2,"last_update":"2026-03-21T18:59:28.869413735Z"} +2026/03/21 18:59:33 [metric_collector] {"stage_name":"metric_collector","events_processed":3219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":643.8,"last_update":"2026-03-21T18:59:28.869697277Z"} +2026/03/21 18:59:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:59:28.87570837Z"} +2026/03/21 18:59:33 ───────────────────────────────────────────────── +2026/03/21 18:59:38 ── Pipeline Health ────────────────────────────── +2026/03/21 18:59:38 [log_collector] {"stage_name":"log_collector","events_processed":5706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1141.2,"last_update":"2026-03-21T18:59:33.869425251Z"} +2026/03/21 18:59:38 [metric_collector] {"stage_name":"metric_collector","events_processed":3223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":644.6,"last_update":"2026-03-21T18:59:33.869513731Z"} +2026/03/21 18:59:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:59:33.881616471Z"} +2026/03/21 18:59:38 [transform_engine] {"stage_name":"transform_engine","events_processed":107,"events_dropped":0,"avg_latency_ms":250.2415655921485,"throughput_eps":0,"last_update":"2026-03-21T18:59:33.965115727Z"} +2026/03/21 18:59:38 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":15.081331634897293,"throughput_eps":0,"last_update":"2026-03-21T18:59:33.966381479Z"} +2026/03/21 18:59:38 ───────────────────────────────────────────────── +2026/03/21 18:59:43 ── Pipeline Health ────────────────────────────── +2026/03/21 18:59:43 [log_collector] {"stage_name":"log_collector","events_processed":5706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1141.2,"last_update":"2026-03-21T18:59:43.869443953Z"} +2026/03/21 18:59:43 [metric_collector] {"stage_name":"metric_collector","events_processed":3229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":645.8,"last_update":"2026-03-21T18:59:38.869847602Z"} +2026/03/21 18:59:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:59:38.877590178Z"} +2026/03/21 18:59:43 [transform_engine] {"stage_name":"transform_engine","events_processed":107,"events_dropped":0,"avg_latency_ms":250.2415655921485,"throughput_eps":0,"last_update":"2026-03-21T18:59:38.965708966Z"} +2026/03/21 18:59:43 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":15.081331634897293,"throughput_eps":0,"last_update":"2026-03-21T18:59:38.965732892Z"} +2026/03/21 18:59:43 ───────────────────────────────────────────────── +2026/03/21 18:59:48 ── Pipeline Health ────────────────────────────── +2026/03/21 18:59:48 [log_collector] {"stage_name":"log_collector","events_processed":5706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1141.2,"last_update":"2026-03-21T18:59:43.869443953Z"} +2026/03/21 18:59:48 [metric_collector] {"stage_name":"metric_collector","events_processed":3234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":646.8,"last_update":"2026-03-21T18:59:43.869769966Z"} +2026/03/21 18:59:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:59:43.875442441Z"} +2026/03/21 18:59:48 [transform_engine] {"stage_name":"transform_engine","events_processed":107,"events_dropped":0,"avg_latency_ms":250.2415655921485,"throughput_eps":0,"last_update":"2026-03-21T18:59:43.966208286Z"} +2026/03/21 18:59:48 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":15.081331634897293,"throughput_eps":0,"last_update":"2026-03-21T18:59:43.966182487Z"} +2026/03/21 18:59:48 ───────────────────────────────────────────────── +2026/03/21 18:59:53 ── Pipeline Health ────────────────────────────── +2026/03/21 18:59:53 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":15.081331634897293,"throughput_eps":0,"last_update":"2026-03-21T18:59:48.965569755Z"} +2026/03/21 18:59:53 [log_collector] {"stage_name":"log_collector","events_processed":5706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1141.2,"last_update":"2026-03-21T18:59:48.869398454Z"} +2026/03/21 18:59:53 [metric_collector] {"stage_name":"metric_collector","events_processed":3239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":647.8,"last_update":"2026-03-21T18:59:48.869772441Z"} +2026/03/21 18:59:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:59:48.876409581Z"} +2026/03/21 18:59:53 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":450.5923652737188,"throughput_eps":0,"last_update":"2026-03-21T18:59:50.217598972Z"} +2026/03/21 18:59:53 ───────────────────────────────────────────────── +2026/03/21 18:59:58 ── Pipeline Health ────────────────────────────── +2026/03/21 18:59:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:59:53.880376638Z"} +2026/03/21 18:59:58 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":450.5923652737188,"throughput_eps":0,"last_update":"2026-03-21T18:59:53.965530237Z"} +2026/03/21 18:59:58 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":14.080085307917834,"throughput_eps":0,"last_update":"2026-03-21T18:59:53.965520047Z"} +2026/03/21 18:59:58 [log_collector] {"stage_name":"log_collector","events_processed":5706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1141.2,"last_update":"2026-03-21T18:59:53.869563115Z"} +2026/03/21 18:59:58 [metric_collector] {"stage_name":"metric_collector","events_processed":3244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":648.8,"last_update":"2026-03-21T18:59:53.869813213Z"} +2026/03/21 18:59:58 ───────────────────────────────────────────────── +2026/03/21 19:00:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:00:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T18:59:58.877102206Z"} +2026/03/21 19:00:03 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":450.5923652737188,"throughput_eps":0,"last_update":"2026-03-21T18:59:58.965328696Z"} +2026/03/21 19:00:03 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":14.080085307917834,"throughput_eps":0,"last_update":"2026-03-21T18:59:58.965317975Z"} +2026/03/21 19:00:03 [log_collector] {"stage_name":"log_collector","events_processed":5715,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1143,"last_update":"2026-03-21T18:59:58.870151354Z"} +2026/03/21 19:00:03 [metric_collector] {"stage_name":"metric_collector","events_processed":3249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":649.8,"last_update":"2026-03-21T18:59:58.870500553Z"} +2026/03/21 19:00:03 ───────────────────────────────────────────────── +2026/03/21 19:00:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:00:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:00:03.884873919Z"} +2026/03/21 19:00:08 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":450.5923652737188,"throughput_eps":0,"last_update":"2026-03-21T19:00:03.966224852Z"} +2026/03/21 19:00:08 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":14.080085307917834,"throughput_eps":0,"last_update":"2026-03-21T19:00:03.966210153Z"} +2026/03/21 19:00:08 [log_collector] {"stage_name":"log_collector","events_processed":5717,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1143.4,"last_update":"2026-03-21T19:00:03.869937425Z"} +2026/03/21 19:00:08 [metric_collector] {"stage_name":"metric_collector","events_processed":3254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":650.8,"last_update":"2026-03-21T19:00:03.870380503Z"} +2026/03/21 19:00:08 ───────────────────────────────────────────────── +2026/03/21 19:00:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:00:13 [metric_collector] {"stage_name":"metric_collector","events_processed":3259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":651.8,"last_update":"2026-03-21T19:00:08.869802099Z"} +2026/03/21 19:00:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:00:08.87604651Z"} +2026/03/21 19:00:13 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":450.5923652737188,"throughput_eps":0,"last_update":"2026-03-21T19:00:08.965880939Z"} +2026/03/21 19:00:13 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":14.080085307917834,"throughput_eps":0,"last_update":"2026-03-21T19:00:08.965869186Z"} +2026/03/21 19:00:13 [log_collector] {"stage_name":"log_collector","events_processed":5795,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1159,"last_update":"2026-03-21T19:00:08.869414478Z"} +2026/03/21 19:00:13 ───────────────────────────────────────────────── +2026/03/21 19:00:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:00:18 [metric_collector] {"stage_name":"metric_collector","events_processed":3264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":652.8,"last_update":"2026-03-21T19:00:13.870137752Z"} +2026/03/21 19:00:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:00:13.876428871Z"} +2026/03/21 19:00:18 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":450.5923652737188,"throughput_eps":0,"last_update":"2026-03-21T19:00:13.965741292Z"} +2026/03/21 19:00:18 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":14.080085307917834,"throughput_eps":0,"last_update":"2026-03-21T19:00:13.965735551Z"} +2026/03/21 19:00:18 [log_collector] {"stage_name":"log_collector","events_processed":6064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1212.8,"last_update":"2026-03-21T19:00:13.869441449Z"} +2026/03/21 19:00:18 ───────────────────────────────────────────────── +Saved state: 12 clusters, 6068 messages, reason: none +2026/03/21 19:00:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:00:23 [log_collector] {"stage_name":"log_collector","events_processed":6067,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1213.4,"last_update":"2026-03-21T19:00:18.869934382Z"} +2026/03/21 19:00:23 [metric_collector] {"stage_name":"metric_collector","events_processed":3269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":653.8,"last_update":"2026-03-21T19:00:18.869747355Z"} +2026/03/21 19:00:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:00:18.877266616Z"} +2026/03/21 19:00:23 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":450.5923652737188,"throughput_eps":0,"last_update":"2026-03-21T19:00:13.965741292Z"} +2026/03/21 19:00:23 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":14.080085307917834,"throughput_eps":0,"last_update":"2026-03-21T19:00:18.965402506Z"} +2026/03/21 19:00:23 ───────────────────────────────────────────────── +2026/03/21 19:00:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:00:28 [log_collector] {"stage_name":"log_collector","events_processed":6073,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1214.6,"last_update":"2026-03-21T19:00:23.870059555Z"} +2026/03/21 19:00:28 [metric_collector] {"stage_name":"metric_collector","events_processed":3274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":654.8,"last_update":"2026-03-21T19:00:23.870440263Z"} +2026/03/21 19:00:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:00:23.876505902Z"} +2026/03/21 19:00:28 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":1797.5591884189753,"throughput_eps":0,"last_update":"2026-03-21T19:00:26.150842955Z"} +2026/03/21 19:00:28 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":14.080085307917834,"throughput_eps":0,"last_update":"2026-03-21T19:00:23.965869454Z"} +2026/03/21 19:00:28 ───────────────────────────────────────────────── +2026/03/21 19:00:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:00:33 [metric_collector] {"stage_name":"metric_collector","events_processed":3279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":655.8,"last_update":"2026-03-21T19:00:28.870228976Z"} +2026/03/21 19:00:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:00:28.879344661Z"} +2026/03/21 19:00:33 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":1797.5591884189753,"throughput_eps":0,"last_update":"2026-03-21T19:00:28.965818553Z"} +2026/03/21 19:00:33 [detection_layer] {"stage_name":"detection_layer","events_processed":109,"events_dropped":0,"avg_latency_ms":14.32122104633427,"throughput_eps":0,"last_update":"2026-03-21T19:00:28.965698343Z"} +2026/03/21 19:00:33 [log_collector] {"stage_name":"log_collector","events_processed":6078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1215.6,"last_update":"2026-03-21T19:00:28.870089999Z"} +2026/03/21 19:00:33 ───────────────────────────────────────────────── +2026/03/21 19:00:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:00:38 [metric_collector] {"stage_name":"metric_collector","events_processed":3284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":656.8,"last_update":"2026-03-21T19:00:33.869998802Z"} +2026/03/21 19:00:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:00:33.877678719Z"} +2026/03/21 19:00:38 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":1797.5591884189753,"throughput_eps":0,"last_update":"2026-03-21T19:00:33.965970242Z"} +2026/03/21 19:00:38 [detection_layer] {"stage_name":"detection_layer","events_processed":109,"events_dropped":0,"avg_latency_ms":14.32122104633427,"throughput_eps":0,"last_update":"2026-03-21T19:00:33.965919735Z"} +2026/03/21 19:00:38 [log_collector] {"stage_name":"log_collector","events_processed":6094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1218.8,"last_update":"2026-03-21T19:00:33.869633854Z"} +2026/03/21 19:00:38 ───────────────────────────────────────────────── +2026/03/21 19:00:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:00:43 [log_collector] {"stage_name":"log_collector","events_processed":6094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1218.8,"last_update":"2026-03-21T19:00:43.869424729Z"} +2026/03/21 19:00:43 [metric_collector] {"stage_name":"metric_collector","events_processed":3289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":657.8,"last_update":"2026-03-21T19:00:38.870191819Z"} +2026/03/21 19:00:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:00:38.87843753Z"} +2026/03/21 19:00:43 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":1797.5591884189753,"throughput_eps":0,"last_update":"2026-03-21T19:00:38.965662093Z"} +2026/03/21 19:00:43 [detection_layer] {"stage_name":"detection_layer","events_processed":109,"events_dropped":0,"avg_latency_ms":14.32122104633427,"throughput_eps":0,"last_update":"2026-03-21T19:00:38.965645871Z"} +2026/03/21 19:00:43 ───────────────────────────────────────────────── +2026/03/21 19:00:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:00:48 [log_collector] {"stage_name":"log_collector","events_processed":6094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1218.8,"last_update":"2026-03-21T19:00:43.869424729Z"} +2026/03/21 19:00:48 [metric_collector] {"stage_name":"metric_collector","events_processed":3294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":658.8,"last_update":"2026-03-21T19:00:43.869899367Z"} +2026/03/21 19:00:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1320,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:00:43.87796279Z"} +2026/03/21 19:00:48 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":1797.5591884189753,"throughput_eps":0,"last_update":"2026-03-21T19:00:43.965161544Z"} +2026/03/21 19:00:48 [detection_layer] {"stage_name":"detection_layer","events_processed":109,"events_dropped":0,"avg_latency_ms":14.32122104633427,"throughput_eps":0,"last_update":"2026-03-21T19:00:43.966338546Z"} +2026/03/21 19:00:48 ───────────────────────────────────────────────── +2026/03/21 19:00:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:00:53 [log_collector] {"stage_name":"log_collector","events_processed":6094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1218.8,"last_update":"2026-03-21T19:00:48.869474302Z"} +2026/03/21 19:00:53 [metric_collector] {"stage_name":"metric_collector","events_processed":3299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":659.8,"last_update":"2026-03-21T19:00:48.869860059Z"} +2026/03/21 19:00:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:00:48.879285197Z"} +2026/03/21 19:00:53 [transform_engine] {"stage_name":"transform_engine","events_processed":110,"events_dropped":0,"avg_latency_ms":1460.6317017351803,"throughput_eps":0,"last_update":"2026-03-21T19:00:49.078584385Z"} +2026/03/21 19:00:53 [detection_layer] {"stage_name":"detection_layer","events_processed":109,"events_dropped":0,"avg_latency_ms":14.32122104633427,"throughput_eps":0,"last_update":"2026-03-21T19:00:48.965639256Z"} +2026/03/21 19:00:53 ───────────────────────────────────────────────── +2026/03/21 19:00:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:00:58 [log_collector] {"stage_name":"log_collector","events_processed":6094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1218.8,"last_update":"2026-03-21T19:00:58.869404607Z"} +2026/03/21 19:00:58 [metric_collector] {"stage_name":"metric_collector","events_processed":3304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":660.8,"last_update":"2026-03-21T19:00:53.870433513Z"} +2026/03/21 19:00:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:00:53.879123994Z"} +2026/03/21 19:00:58 [transform_engine] {"stage_name":"transform_engine","events_processed":110,"events_dropped":0,"avg_latency_ms":1460.6317017351803,"throughput_eps":0,"last_update":"2026-03-21T19:00:53.965460149Z"} +2026/03/21 19:00:58 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":14.818253837067415,"throughput_eps":0,"last_update":"2026-03-21T19:00:53.965484596Z"} +2026/03/21 19:00:58 ───────────────────────────────────────────────── +2026/03/21 19:01:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:01:03 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":14.818253837067415,"throughput_eps":0,"last_update":"2026-03-21T19:00:58.965712288Z"} +2026/03/21 19:01:03 [log_collector] {"stage_name":"log_collector","events_processed":6094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1218.8,"last_update":"2026-03-21T19:00:58.869404607Z"} +2026/03/21 19:01:03 [metric_collector] {"stage_name":"metric_collector","events_processed":3309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":661.8,"last_update":"2026-03-21T19:00:58.86988666Z"} +2026/03/21 19:01:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:00:58.87833583Z"} +2026/03/21 19:01:03 [transform_engine] {"stage_name":"transform_engine","events_processed":110,"events_dropped":0,"avg_latency_ms":1460.6317017351803,"throughput_eps":0,"last_update":"2026-03-21T19:00:58.965644048Z"} +2026/03/21 19:01:03 ───────────────────────────────────────────────── +2026/03/21 19:01:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:01:08 [log_collector] {"stage_name":"log_collector","events_processed":6094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1218.8,"last_update":"2026-03-21T19:01:03.869933151Z"} +2026/03/21 19:01:08 [metric_collector] {"stage_name":"metric_collector","events_processed":3314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":662.8,"last_update":"2026-03-21T19:01:03.870253143Z"} +2026/03/21 19:01:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:01:03.878292078Z"} +2026/03/21 19:01:08 [transform_engine] {"stage_name":"transform_engine","events_processed":110,"events_dropped":0,"avg_latency_ms":1460.6317017351803,"throughput_eps":0,"last_update":"2026-03-21T19:01:03.96551326Z"} +2026/03/21 19:01:08 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":14.818253837067415,"throughput_eps":0,"last_update":"2026-03-21T19:01:03.965549499Z"} +2026/03/21 19:01:08 ───────────────────────────────────────────────── +2026/03/21 19:01:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:01:13 [metric_collector] {"stage_name":"metric_collector","events_processed":3319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":663.8,"last_update":"2026-03-21T19:01:08.869860317Z"} +2026/03/21 19:01:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1330,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:01:08.877696495Z"} +2026/03/21 19:01:13 [transform_engine] {"stage_name":"transform_engine","events_processed":110,"events_dropped":0,"avg_latency_ms":1460.6317017351803,"throughput_eps":0,"last_update":"2026-03-21T19:01:08.965931779Z"} +2026/03/21 19:01:13 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":14.818253837067415,"throughput_eps":0,"last_update":"2026-03-21T19:01:08.965889799Z"} +2026/03/21 19:01:13 [log_collector] {"stage_name":"log_collector","events_processed":6094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1218.8,"last_update":"2026-03-21T19:01:08.869485861Z"} +2026/03/21 19:01:13 ───────────────────────────────────────────────── +2026/03/21 19:01:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:01:18 [log_collector] {"stage_name":"log_collector","events_processed":6094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1218.8,"last_update":"2026-03-21T19:01:13.869436609Z"} +2026/03/21 19:01:18 [metric_collector] {"stage_name":"metric_collector","events_processed":3324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":664.8,"last_update":"2026-03-21T19:01:13.869876161Z"} +2026/03/21 19:01:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:01:13.87905566Z"} +2026/03/21 19:01:18 [transform_engine] {"stage_name":"transform_engine","events_processed":110,"events_dropped":0,"avg_latency_ms":1460.6317017351803,"throughput_eps":0,"last_update":"2026-03-21T19:01:13.965241773Z"} +2026/03/21 19:01:18 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":14.818253837067415,"throughput_eps":0,"last_update":"2026-03-21T19:01:13.965272201Z"} +2026/03/21 19:01:18 ───────────────────────────────────────────────── +2026/03/21 19:01:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:01:23 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":1181.9772975881444,"throughput_eps":0,"last_update":"2026-03-21T19:01:19.03312153Z"} +2026/03/21 19:01:23 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":14.818253837067415,"throughput_eps":0,"last_update":"2026-03-21T19:01:18.965784883Z"} +2026/03/21 19:01:23 [log_collector] {"stage_name":"log_collector","events_processed":6094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1218.8,"last_update":"2026-03-21T19:01:18.870223546Z"} +2026/03/21 19:01:23 [metric_collector] {"stage_name":"metric_collector","events_processed":3334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":666.8,"last_update":"2026-03-21T19:01:23.869788807Z"} +2026/03/21 19:01:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:01:18.879416089Z"} +2026/03/21 19:01:23 ───────────────────────────────────────────────── +2026/03/21 19:01:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:01:28 [log_collector] {"stage_name":"log_collector","events_processed":6094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1218.8,"last_update":"2026-03-21T19:01:28.869514779Z"} +2026/03/21 19:01:28 [metric_collector] {"stage_name":"metric_collector","events_processed":3339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":667.8,"last_update":"2026-03-21T19:01:28.87008492Z"} +2026/03/21 19:01:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:01:23.878237197Z"} +2026/03/21 19:01:28 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":1181.9772975881444,"throughput_eps":0,"last_update":"2026-03-21T19:01:23.965596096Z"} +2026/03/21 19:01:28 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":15.422670269653933,"throughput_eps":0,"last_update":"2026-03-21T19:01:23.965705606Z"} +2026/03/21 19:01:28 ───────────────────────────────────────────────── +2026/03/21 19:01:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:01:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:01:28.879255722Z"} +2026/03/21 19:01:33 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":1181.9772975881444,"throughput_eps":0,"last_update":"2026-03-21T19:01:28.965597667Z"} +2026/03/21 19:01:33 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":15.422670269653933,"throughput_eps":0,"last_update":"2026-03-21T19:01:28.965630119Z"} +2026/03/21 19:01:33 [log_collector] {"stage_name":"log_collector","events_processed":6094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1218.8,"last_update":"2026-03-21T19:01:33.869406454Z"} +2026/03/21 19:01:33 [metric_collector] {"stage_name":"metric_collector","events_processed":3339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":667.8,"last_update":"2026-03-21T19:01:28.87008492Z"} +2026/03/21 19:01:33 ───────────────────────────────────────────────── +2026/03/21 19:01:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:01:38 [log_collector] {"stage_name":"log_collector","events_processed":6094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1218.8,"last_update":"2026-03-21T19:01:38.870205376Z"} +2026/03/21 19:01:38 [metric_collector] {"stage_name":"metric_collector","events_processed":3344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":668.8,"last_update":"2026-03-21T19:01:33.869844873Z"} +2026/03/21 19:01:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:01:33.879673094Z"} +2026/03/21 19:01:38 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":1181.9772975881444,"throughput_eps":0,"last_update":"2026-03-21T19:01:33.965243443Z"} +2026/03/21 19:01:38 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":15.422670269653933,"throughput_eps":0,"last_update":"2026-03-21T19:01:33.965293248Z"} +2026/03/21 19:01:38 ───────────────────────────────────────────────── +2026/03/21 19:01:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:01:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1342,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:01:38.878815856Z"} +2026/03/21 19:01:43 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":1181.9772975881444,"throughput_eps":0,"last_update":"2026-03-21T19:01:38.966046053Z"} +2026/03/21 19:01:43 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":15.422670269653933,"throughput_eps":0,"last_update":"2026-03-21T19:01:38.96601313Z"} +2026/03/21 19:01:43 [log_collector] {"stage_name":"log_collector","events_processed":6094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1218.8,"last_update":"2026-03-21T19:01:38.870205376Z"} +2026/03/21 19:01:43 [metric_collector] {"stage_name":"metric_collector","events_processed":3349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":669.8,"last_update":"2026-03-21T19:01:38.870735581Z"} +2026/03/21 19:01:43 ───────────────────────────────────────────────── +2026/03/21 19:01:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:01:48 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":1181.9772975881444,"throughput_eps":0,"last_update":"2026-03-21T19:01:43.965688164Z"} +2026/03/21 19:01:48 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":15.422670269653933,"throughput_eps":0,"last_update":"2026-03-21T19:01:43.965760062Z"} +2026/03/21 19:01:48 [log_collector] {"stage_name":"log_collector","events_processed":6094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1218.8,"last_update":"2026-03-21T19:01:48.869663983Z"} +2026/03/21 19:01:48 [metric_collector] {"stage_name":"metric_collector","events_processed":3354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":670.8,"last_update":"2026-03-21T19:01:43.869908543Z"} +2026/03/21 19:01:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:01:43.878336665Z"} +2026/03/21 19:01:48 ───────────────────────────────────────────────── +Saved state: 12 clusters, 6095 messages, reason: none +2026/03/21 19:01:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:01:53 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":15.422670269653933,"throughput_eps":0,"last_update":"2026-03-21T19:01:48.96633468Z"} +2026/03/21 19:01:53 [log_collector] {"stage_name":"log_collector","events_processed":6094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1218.8,"last_update":"2026-03-21T19:01:48.869663983Z"} +2026/03/21 19:01:53 [metric_collector] {"stage_name":"metric_collector","events_processed":3359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":671.8,"last_update":"2026-03-21T19:01:48.870041886Z"} +2026/03/21 19:01:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:01:48.879032213Z"} +2026/03/21 19:01:53 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":959.1550572705156,"throughput_eps":0,"last_update":"2026-03-21T19:01:49.03308443Z"} +2026/03/21 19:01:53 ───────────────────────────────────────────────── +2026/03/21 19:01:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:01:58 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":15.851450815723146,"throughput_eps":0,"last_update":"2026-03-21T19:01:53.966430703Z"} +2026/03/21 19:01:58 [log_collector] {"stage_name":"log_collector","events_processed":6097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1219.4,"last_update":"2026-03-21T19:01:53.870177392Z"} +2026/03/21 19:01:58 [metric_collector] {"stage_name":"metric_collector","events_processed":3364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":672.8,"last_update":"2026-03-21T19:01:53.870399969Z"} +2026/03/21 19:01:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:01:53.877251102Z"} +2026/03/21 19:01:58 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":959.1550572705156,"throughput_eps":0,"last_update":"2026-03-21T19:01:53.966498583Z"} +2026/03/21 19:01:58 ───────────────────────────────────────────────── +2026/03/21 19:02:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:02:03 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":959.1550572705156,"throughput_eps":0,"last_update":"2026-03-21T19:01:58.966200562Z"} +2026/03/21 19:02:03 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":15.851450815723146,"throughput_eps":0,"last_update":"2026-03-21T19:01:58.96607442Z"} +2026/03/21 19:02:03 [log_collector] {"stage_name":"log_collector","events_processed":6108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1221.6,"last_update":"2026-03-21T19:01:58.869521545Z"} +2026/03/21 19:02:03 [metric_collector] {"stage_name":"metric_collector","events_processed":3369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":673.8,"last_update":"2026-03-21T19:01:58.870120441Z"} +2026/03/21 19:02:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1350,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:01:58.878737044Z"} +2026/03/21 19:02:03 ───────────────────────────────────────────────── +2026/03/21 19:02:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:02:08 [log_collector] {"stage_name":"log_collector","events_processed":6108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1221.6,"last_update":"2026-03-21T19:02:03.869453403Z"} +2026/03/21 19:02:08 [metric_collector] {"stage_name":"metric_collector","events_processed":3374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":674.8,"last_update":"2026-03-21T19:02:03.869990141Z"} +2026/03/21 19:02:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:02:03.878945582Z"} +2026/03/21 19:02:08 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":959.1550572705156,"throughput_eps":0,"last_update":"2026-03-21T19:02:03.965086689Z"} +2026/03/21 19:02:08 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":15.851450815723146,"throughput_eps":0,"last_update":"2026-03-21T19:02:03.966283911Z"} +2026/03/21 19:02:08 ───────────────────────────────────────────────── +2026/03/21 19:02:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:02:13 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":15.851450815723146,"throughput_eps":0,"last_update":"2026-03-21T19:02:08.966154451Z"} +2026/03/21 19:02:13 [log_collector] {"stage_name":"log_collector","events_processed":6108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1221.6,"last_update":"2026-03-21T19:02:08.870125507Z"} +2026/03/21 19:02:13 [metric_collector] {"stage_name":"metric_collector","events_processed":3379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":675.8,"last_update":"2026-03-21T19:02:08.870447474Z"} +2026/03/21 19:02:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:02:08.879540098Z"} +2026/03/21 19:02:13 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":959.1550572705156,"throughput_eps":0,"last_update":"2026-03-21T19:02:08.966109655Z"} +2026/03/21 19:02:13 ───────────────────────────────────────────────── +2026/03/21 19:02:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:02:18 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":15.851450815723146,"throughput_eps":0,"last_update":"2026-03-21T19:02:13.965527499Z"} +2026/03/21 19:02:18 [log_collector] {"stage_name":"log_collector","events_processed":6108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1221.6,"last_update":"2026-03-21T19:02:13.869868181Z"} +2026/03/21 19:02:18 [metric_collector] {"stage_name":"metric_collector","events_processed":3384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":676.8,"last_update":"2026-03-21T19:02:13.870169047Z"} +2026/03/21 19:02:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:02:13.878312975Z"} +2026/03/21 19:02:18 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":959.1550572705156,"throughput_eps":0,"last_update":"2026-03-21T19:02:13.965559771Z"} +2026/03/21 19:02:18 ───────────────────────────────────────────────── +2026/03/21 19:02:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:02:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:02:18.878975158Z"} +2026/03/21 19:02:23 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":789.9867580164125,"throughput_eps":0,"last_update":"2026-03-21T19:02:19.078492879Z"} +2026/03/21 19:02:23 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":15.851450815723146,"throughput_eps":0,"last_update":"2026-03-21T19:02:18.965451379Z"} +2026/03/21 19:02:23 [log_collector] {"stage_name":"log_collector","events_processed":6108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1221.6,"last_update":"2026-03-21T19:02:18.870037249Z"} +2026/03/21 19:02:23 [metric_collector] {"stage_name":"metric_collector","events_processed":3389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":677.8,"last_update":"2026-03-21T19:02:18.869900578Z"} +2026/03/21 19:02:23 ───────────────────────────────────────────────── +2026/03/21 19:02:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:02:28 [log_collector] {"stage_name":"log_collector","events_processed":6108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1221.6,"last_update":"2026-03-21T19:02:23.869601598Z"} +2026/03/21 19:02:28 [metric_collector] {"stage_name":"metric_collector","events_processed":3394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":678.8,"last_update":"2026-03-21T19:02:23.869797141Z"} +2026/03/21 19:02:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1360,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:02:23.878845922Z"} +2026/03/21 19:02:28 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":789.9867580164125,"throughput_eps":0,"last_update":"2026-03-21T19:02:23.966065979Z"} +2026/03/21 19:02:28 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.396261652578517,"throughput_eps":0,"last_update":"2026-03-21T19:02:23.966058485Z"} +2026/03/21 19:02:28 ───────────────────────────────────────────────── +2026/03/21 19:02:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:02:33 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":789.9867580164125,"throughput_eps":0,"last_update":"2026-03-21T19:02:28.965206223Z"} +2026/03/21 19:02:33 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.396261652578517,"throughput_eps":0,"last_update":"2026-03-21T19:02:28.966376593Z"} +2026/03/21 19:02:33 [log_collector] {"stage_name":"log_collector","events_processed":6108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1221.6,"last_update":"2026-03-21T19:02:28.869481878Z"} +2026/03/21 19:02:33 [metric_collector] {"stage_name":"metric_collector","events_processed":3398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":679.6,"last_update":"2026-03-21T19:02:28.869456149Z"} +2026/03/21 19:02:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:02:28.878929732Z"} +2026/03/21 19:02:33 ───────────────────────────────────────────────── +2026/03/21 19:02:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:02:38 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":789.9867580164125,"throughput_eps":0,"last_update":"2026-03-21T19:02:33.965666331Z"} +2026/03/21 19:02:38 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.396261652578517,"throughput_eps":0,"last_update":"2026-03-21T19:02:33.96565536Z"} +2026/03/21 19:02:38 [log_collector] {"stage_name":"log_collector","events_processed":6108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1221.6,"last_update":"2026-03-21T19:02:33.869415106Z"} +2026/03/21 19:02:38 [metric_collector] {"stage_name":"metric_collector","events_processed":3403,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":680.6,"last_update":"2026-03-21T19:02:33.869490481Z"} +2026/03/21 19:02:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:02:33.878320872Z"} +2026/03/21 19:02:38 ───────────────────────────────────────────────── +2026/03/21 19:02:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:02:43 [log_collector] {"stage_name":"log_collector","events_processed":6108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1221.6,"last_update":"2026-03-21T19:02:38.86966272Z"} +2026/03/21 19:02:43 [metric_collector] {"stage_name":"metric_collector","events_processed":3413,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":682.6,"last_update":"2026-03-21T19:02:43.869421675Z"} +2026/03/21 19:02:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:02:38.879206658Z"} +2026/03/21 19:02:43 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":789.9867580164125,"throughput_eps":0,"last_update":"2026-03-21T19:02:38.965477321Z"} +2026/03/21 19:02:43 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.396261652578517,"throughput_eps":0,"last_update":"2026-03-21T19:02:38.965466459Z"} +2026/03/21 19:02:43 ───────────────────────────────────────────────── +2026/03/21 19:02:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:02:48 [log_collector] {"stage_name":"log_collector","events_processed":6108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1221.6,"last_update":"2026-03-21T19:02:43.86961698Z"} +2026/03/21 19:02:48 [metric_collector] {"stage_name":"metric_collector","events_processed":3418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":683.6,"last_update":"2026-03-21T19:02:48.86941815Z"} +2026/03/21 19:02:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:02:43.8783575Z"} +2026/03/21 19:02:48 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":789.9867580164125,"throughput_eps":0,"last_update":"2026-03-21T19:02:43.965578602Z"} +2026/03/21 19:02:48 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.396261652578517,"throughput_eps":0,"last_update":"2026-03-21T19:02:43.965564305Z"} +2026/03/21 19:02:48 ───────────────────────────────────────────────── +2026/03/21 19:02:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:02:53 [log_collector] {"stage_name":"log_collector","events_processed":6108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1221.6,"last_update":"2026-03-21T19:02:53.869418496Z"} +2026/03/21 19:02:53 [metric_collector] {"stage_name":"metric_collector","events_processed":3418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":683.6,"last_update":"2026-03-21T19:02:48.86941815Z"} +2026/03/21 19:02:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:02:48.878345448Z"} +2026/03/21 19:02:53 [transform_engine] {"stage_name":"transform_engine","events_processed":114,"events_dropped":0,"avg_latency_ms":645.7096608131301,"throughput_eps":0,"last_update":"2026-03-21T19:02:49.03423919Z"} +2026/03/21 19:02:53 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.396261652578517,"throughput_eps":0,"last_update":"2026-03-21T19:02:48.96562879Z"} +2026/03/21 19:02:53 ───────────────────────────────────────────────── +2026/03/21 19:02:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:02:58 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":16.747147722062813,"throughput_eps":0,"last_update":"2026-03-21T19:02:53.965308143Z"} +2026/03/21 19:02:58 [log_collector] {"stage_name":"log_collector","events_processed":6108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1221.6,"last_update":"2026-03-21T19:02:53.869418496Z"} +2026/03/21 19:02:58 [metric_collector] {"stage_name":"metric_collector","events_processed":3424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":684.8,"last_update":"2026-03-21T19:02:53.869916288Z"} +2026/03/21 19:02:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:02:53.878106095Z"} +2026/03/21 19:02:58 [transform_engine] {"stage_name":"transform_engine","events_processed":114,"events_dropped":0,"avg_latency_ms":645.7096608131301,"throughput_eps":0,"last_update":"2026-03-21T19:02:53.965318532Z"} +2026/03/21 19:02:58 ───────────────────────────────────────────────── +Saved state: 12 clusters, 6109 messages, reason: none +2026/03/21 19:03:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:03:03 [metric_collector] {"stage_name":"metric_collector","events_processed":3429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":685.8,"last_update":"2026-03-21T19:02:58.870566041Z"} +2026/03/21 19:03:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:02:58.879440468Z"} +2026/03/21 19:03:03 [transform_engine] {"stage_name":"transform_engine","events_processed":114,"events_dropped":0,"avg_latency_ms":645.7096608131301,"throughput_eps":0,"last_update":"2026-03-21T19:02:58.965748475Z"} +2026/03/21 19:03:03 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":16.747147722062813,"throughput_eps":0,"last_update":"2026-03-21T19:02:58.96573497Z"} +2026/03/21 19:03:03 [log_collector] {"stage_name":"log_collector","events_processed":6108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1221.6,"last_update":"2026-03-21T19:02:58.870302807Z"} +2026/03/21 19:03:03 ───────────────────────────────────────────────── +2026/03/21 19:03:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:03:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:03:03.876439316Z"} +2026/03/21 19:03:08 [transform_engine] {"stage_name":"transform_engine","events_processed":114,"events_dropped":0,"avg_latency_ms":645.7096608131301,"throughput_eps":0,"last_update":"2026-03-21T19:03:03.965658998Z"} +2026/03/21 19:03:08 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":16.747147722062813,"throughput_eps":0,"last_update":"2026-03-21T19:03:03.965648968Z"} +2026/03/21 19:03:08 [log_collector] {"stage_name":"log_collector","events_processed":6113,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1222.6,"last_update":"2026-03-21T19:03:03.870437657Z"} +2026/03/21 19:03:08 [metric_collector] {"stage_name":"metric_collector","events_processed":3434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":686.8,"last_update":"2026-03-21T19:03:03.870581663Z"} +2026/03/21 19:03:08 ───────────────────────────────────────────────── +2026/03/21 19:03:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:03:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:03:08.876760896Z"} +2026/03/21 19:03:13 [transform_engine] {"stage_name":"transform_engine","events_processed":114,"events_dropped":0,"avg_latency_ms":645.7096608131301,"throughput_eps":0,"last_update":"2026-03-21T19:03:08.966072575Z"} +2026/03/21 19:03:13 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":16.747147722062813,"throughput_eps":0,"last_update":"2026-03-21T19:03:08.966053568Z"} +2026/03/21 19:03:13 [log_collector] {"stage_name":"log_collector","events_processed":6113,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1222.6,"last_update":"2026-03-21T19:03:13.869620715Z"} +2026/03/21 19:03:13 [metric_collector] {"stage_name":"metric_collector","events_processed":3439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":687.8,"last_update":"2026-03-21T19:03:08.870273377Z"} +2026/03/21 19:03:13 ───────────────────────────────────────────────── +2026/03/21 19:03:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:03:18 [log_collector] {"stage_name":"log_collector","events_processed":6113,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1222.6,"last_update":"2026-03-21T19:03:13.869620715Z"} +2026/03/21 19:03:18 [metric_collector] {"stage_name":"metric_collector","events_processed":3444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":688.8,"last_update":"2026-03-21T19:03:13.870037022Z"} +2026/03/21 19:03:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1380,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:03:13.875622084Z"} +2026/03/21 19:03:18 [transform_engine] {"stage_name":"transform_engine","events_processed":114,"events_dropped":0,"avg_latency_ms":645.7096608131301,"throughput_eps":0,"last_update":"2026-03-21T19:03:13.965925772Z"} +2026/03/21 19:03:18 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":16.747147722062813,"throughput_eps":0,"last_update":"2026-03-21T19:03:13.965912627Z"} +2026/03/21 19:03:18 ───────────────────────────────────────────────── +2026/03/21 19:03:19 [ANOMALY] time=2026-03-21T19:03:19Z score=0.8845 method=SEAD details=MAD!:w=0.26,s=0.72 RRCF-fast!:w=0.18,s=1.00 RRCF-mid!:w=0.18,s=0.95 RRCF-slow!:w=0.17,s=0.97 COPOD!:w=0.21,s=0.86 +2026/03/21 19:03:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:03:23 [log_collector] {"stage_name":"log_collector","events_processed":6113,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1222.6,"last_update":"2026-03-21T19:03:18.869938163Z"} +2026/03/21 19:03:23 [metric_collector] {"stage_name":"metric_collector","events_processed":3449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":689.8,"last_update":"2026-03-21T19:03:18.870159717Z"} +2026/03/21 19:03:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:03:18.877000412Z"} +2026/03/21 19:03:23 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":715.7209910505042,"throughput_eps":0,"last_update":"2026-03-21T19:03:19.960897293Z"} +2026/03/21 19:03:23 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":16.747147722062813,"throughput_eps":0,"last_update":"2026-03-21T19:03:18.96621688Z"} +2026/03/21 19:03:23 ───────────────────────────────────────────────── +2026/03/21 19:03:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:03:28 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":14.91622897765025,"throughput_eps":0,"last_update":"2026-03-21T19:03:23.965466165Z"} +2026/03/21 19:03:28 [log_collector] {"stage_name":"log_collector","events_processed":6113,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1222.6,"last_update":"2026-03-21T19:03:23.869567985Z"} +2026/03/21 19:03:28 [metric_collector] {"stage_name":"metric_collector","events_processed":3454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":690.8,"last_update":"2026-03-21T19:03:23.869979813Z"} +2026/03/21 19:03:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:03:23.878272427Z"} +2026/03/21 19:03:28 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":715.7209910505042,"throughput_eps":0,"last_update":"2026-03-21T19:03:23.965477606Z"} +2026/03/21 19:03:28 ───────────────────────────────────────────────── +2026/03/21 19:03:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:03:33 [log_collector] {"stage_name":"log_collector","events_processed":6113,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1222.6,"last_update":"2026-03-21T19:03:28.870247287Z"} +2026/03/21 19:03:33 [metric_collector] {"stage_name":"metric_collector","events_processed":3459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":691.8,"last_update":"2026-03-21T19:03:28.870700814Z"} +2026/03/21 19:03:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:03:28.879866189Z"} +2026/03/21 19:03:33 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":715.7209910505042,"throughput_eps":0,"last_update":"2026-03-21T19:03:28.966365408Z"} +2026/03/21 19:03:33 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":14.91622897765025,"throughput_eps":0,"last_update":"2026-03-21T19:03:28.966384134Z"} +2026/03/21 19:03:33 ───────────────────────────────────────────────── +2026/03/21 19:03:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:03:38 [log_collector] {"stage_name":"log_collector","events_processed":6113,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1222.6,"last_update":"2026-03-21T19:03:33.869430554Z"} +2026/03/21 19:03:38 [metric_collector] {"stage_name":"metric_collector","events_processed":3464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":692.8,"last_update":"2026-03-21T19:03:33.870145602Z"} +2026/03/21 19:03:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1388,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:03:33.875667473Z"} +2026/03/21 19:03:38 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":715.7209910505042,"throughput_eps":0,"last_update":"2026-03-21T19:03:33.965178838Z"} +2026/03/21 19:03:38 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":14.91622897765025,"throughput_eps":0,"last_update":"2026-03-21T19:03:33.965270043Z"} +2026/03/21 19:03:38 ───────────────────────────────────────────────── +2026/03/21 19:03:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:03:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1390,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:03:38.87523785Z"} +2026/03/21 19:03:43 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":715.7209910505042,"throughput_eps":0,"last_update":"2026-03-21T19:03:38.965424118Z"} +2026/03/21 19:03:43 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":14.91622897765025,"throughput_eps":0,"last_update":"2026-03-21T19:03:38.965447493Z"} +2026/03/21 19:03:43 [log_collector] {"stage_name":"log_collector","events_processed":6113,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1222.6,"last_update":"2026-03-21T19:03:38.869633702Z"} +2026/03/21 19:03:43 [metric_collector] {"stage_name":"metric_collector","events_processed":3469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":693.8,"last_update":"2026-03-21T19:03:38.869626128Z"} +2026/03/21 19:03:43 ───────────────────────────────────────────────── +2026/03/21 19:03:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:03:48 [log_collector] {"stage_name":"log_collector","events_processed":6117,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1223.4,"last_update":"2026-03-21T19:03:43.870766249Z"} +2026/03/21 19:03:48 [metric_collector] {"stage_name":"metric_collector","events_processed":3474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":694.8,"last_update":"2026-03-21T19:03:43.870747553Z"} +2026/03/21 19:03:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:03:43.875939803Z"} +2026/03/21 19:03:48 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":715.7209910505042,"throughput_eps":0,"last_update":"2026-03-21T19:03:43.965172798Z"} +2026/03/21 19:03:48 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":14.91622897765025,"throughput_eps":0,"last_update":"2026-03-21T19:03:43.966255641Z"} +2026/03/21 19:03:48 ───────────────────────────────────────────────── +2026/03/21 19:03:49 [ANOMALY] time=2026-03-21T19:03:49Z score=0.9133 method=SEAD details=MAD!:w=0.26,s=0.87 RRCF-fast!:w=0.18,s=0.95 RRCF-mid!:w=0.18,s=0.95 RRCF-slow!:w=0.17,s=0.94 COPOD!:w=0.21,s=0.89 +2026/03/21 19:03:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:03:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:03:48.879623953Z"} +2026/03/21 19:03:53 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":594.9933600404033,"throughput_eps":0,"last_update":"2026-03-21T19:03:49.077989185Z"} +2026/03/21 19:03:53 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":14.91622897765025,"throughput_eps":0,"last_update":"2026-03-21T19:03:48.966584668Z"} +2026/03/21 19:03:53 [log_collector] {"stage_name":"log_collector","events_processed":6124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1224.8,"last_update":"2026-03-21T19:03:48.869939613Z"} +2026/03/21 19:03:53 [metric_collector] {"stage_name":"metric_collector","events_processed":3479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":695.8,"last_update":"2026-03-21T19:03:48.870290015Z"} +2026/03/21 19:03:53 ───────────────────────────────────────────────── +2026/03/21 19:03:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:03:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:03:53.875822809Z"} +2026/03/21 19:03:58 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":594.9933600404033,"throughput_eps":0,"last_update":"2026-03-21T19:03:53.965214911Z"} +2026/03/21 19:03:58 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":14.750121782120202,"throughput_eps":0,"last_update":"2026-03-21T19:03:53.966302544Z"} +2026/03/21 19:03:58 [log_collector] {"stage_name":"log_collector","events_processed":6310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1262,"last_update":"2026-03-21T19:03:53.869412558Z"} +2026/03/21 19:03:58 [metric_collector] {"stage_name":"metric_collector","events_processed":3484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":696.8,"last_update":"2026-03-21T19:03:53.869633943Z"} +2026/03/21 19:03:58 ───────────────────────────────────────────────── +Saved state: 12 clusters, 6447 messages, reason: none +2026/03/21 19:04:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:04:03 [log_collector] {"stage_name":"log_collector","events_processed":6473,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1294.6,"last_update":"2026-03-21T19:04:03.869402375Z"} +2026/03/21 19:04:03 [metric_collector] {"stage_name":"metric_collector","events_processed":3489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":697.8,"last_update":"2026-03-21T19:03:58.870015948Z"} +2026/03/21 19:04:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:03:58.877777115Z"} +2026/03/21 19:04:03 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":594.9933600404033,"throughput_eps":0,"last_update":"2026-03-21T19:03:58.965999106Z"} +2026/03/21 19:04:03 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":14.750121782120202,"throughput_eps":0,"last_update":"2026-03-21T19:03:58.965991221Z"} +2026/03/21 19:04:03 ───────────────────────────────────────────────── +2026/03/21 19:04:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:04:08 [log_collector] {"stage_name":"log_collector","events_processed":6473,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1294.6,"last_update":"2026-03-21T19:04:03.869402375Z"} +2026/03/21 19:04:08 [metric_collector] {"stage_name":"metric_collector","events_processed":3494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":698.8,"last_update":"2026-03-21T19:04:03.869773295Z"} +2026/03/21 19:04:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1400,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:04:03.87816033Z"} +2026/03/21 19:04:08 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":594.9933600404033,"throughput_eps":0,"last_update":"2026-03-21T19:04:03.965572031Z"} +2026/03/21 19:04:08 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":14.750121782120202,"throughput_eps":0,"last_update":"2026-03-21T19:04:03.965557423Z"} +2026/03/21 19:04:08 ───────────────────────────────────────────────── +2026/03/21 19:04:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:04:13 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":594.9933600404033,"throughput_eps":0,"last_update":"2026-03-21T19:04:08.965153418Z"} +2026/03/21 19:04:13 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":14.750121782120202,"throughput_eps":0,"last_update":"2026-03-21T19:04:08.966230911Z"} +2026/03/21 19:04:13 [log_collector] {"stage_name":"log_collector","events_processed":6476,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1295.2,"last_update":"2026-03-21T19:04:08.870538677Z"} +2026/03/21 19:04:13 [metric_collector] {"stage_name":"metric_collector","events_processed":3499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":699.8,"last_update":"2026-03-21T19:04:08.870530031Z"} +2026/03/21 19:04:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1402,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:04:08.878875877Z"} +2026/03/21 19:04:13 ───────────────────────────────────────────────── +2026/03/21 19:04:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:04:18 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":14.750121782120202,"throughput_eps":0,"last_update":"2026-03-21T19:04:13.96580433Z"} +2026/03/21 19:04:18 [log_collector] {"stage_name":"log_collector","events_processed":6486,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1297.2,"last_update":"2026-03-21T19:04:18.869644721Z"} +2026/03/21 19:04:18 [metric_collector] {"stage_name":"metric_collector","events_processed":3504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":700.8,"last_update":"2026-03-21T19:04:13.870136482Z"} +2026/03/21 19:04:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:04:13.875528585Z"} +2026/03/21 19:04:18 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":594.9933600404033,"throughput_eps":0,"last_update":"2026-03-21T19:04:13.965820791Z"} +2026/03/21 19:04:18 ───────────────────────────────────────────────── +2026/03/21 19:04:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:04:23 [log_collector] {"stage_name":"log_collector","events_processed":6486,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1297.2,"last_update":"2026-03-21T19:04:18.869644721Z"} +2026/03/21 19:04:23 [metric_collector] {"stage_name":"metric_collector","events_processed":3509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":701.8,"last_update":"2026-03-21T19:04:18.8698533Z"} +2026/03/21 19:04:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:04:18.876186475Z"} +2026/03/21 19:04:23 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":594.9933600404033,"throughput_eps":0,"last_update":"2026-03-21T19:04:18.965414665Z"} +2026/03/21 19:04:23 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":14.750121782120202,"throughput_eps":0,"last_update":"2026-03-21T19:04:18.965404747Z"} +2026/03/21 19:04:23 ───────────────────────────────────────────────── +2026/03/21 19:04:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:04:28 [transform_engine] {"stage_name":"transform_engine","events_processed":117,"events_dropped":0,"avg_latency_ms":575.8029792323227,"throughput_eps":0,"last_update":"2026-03-21T19:04:23.965374555Z"} +2026/03/21 19:04:28 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":15.060847625696162,"throughput_eps":0,"last_update":"2026-03-21T19:04:23.965364105Z"} +2026/03/21 19:04:28 [log_collector] {"stage_name":"log_collector","events_processed":6501,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1300.2,"last_update":"2026-03-21T19:04:28.869700935Z"} +2026/03/21 19:04:28 [metric_collector] {"stage_name":"metric_collector","events_processed":3514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":702.8,"last_update":"2026-03-21T19:04:23.869799843Z"} +2026/03/21 19:04:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1408,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:04:23.879157216Z"} +2026/03/21 19:04:28 ───────────────────────────────────────────────── +2026/03/21 19:04:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:04:33 [log_collector] {"stage_name":"log_collector","events_processed":6501,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1300.2,"last_update":"2026-03-21T19:04:28.869700935Z"} +2026/03/21 19:04:33 [metric_collector] {"stage_name":"metric_collector","events_processed":3519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":703.8,"last_update":"2026-03-21T19:04:28.869930515Z"} +2026/03/21 19:04:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:04:28.878821856Z"} +2026/03/21 19:04:33 [transform_engine] {"stage_name":"transform_engine","events_processed":117,"events_dropped":0,"avg_latency_ms":575.8029792323227,"throughput_eps":0,"last_update":"2026-03-21T19:04:28.966035723Z"} +2026/03/21 19:04:33 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":15.060847625696162,"throughput_eps":0,"last_update":"2026-03-21T19:04:28.966025424Z"} +2026/03/21 19:04:33 ───────────────────────────────────────────────── +2026/03/21 19:04:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:04:38 [log_collector] {"stage_name":"log_collector","events_processed":6503,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1300.6,"last_update":"2026-03-21T19:04:33.869813547Z"} +2026/03/21 19:04:38 [metric_collector] {"stage_name":"metric_collector","events_processed":3524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":704.8,"last_update":"2026-03-21T19:04:33.870005034Z"} +2026/03/21 19:04:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:04:33.878975557Z"} +2026/03/21 19:04:38 [transform_engine] {"stage_name":"transform_engine","events_processed":117,"events_dropped":0,"avg_latency_ms":575.8029792323227,"throughput_eps":0,"last_update":"2026-03-21T19:04:33.965162147Z"} +2026/03/21 19:04:38 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":15.060847625696162,"throughput_eps":0,"last_update":"2026-03-21T19:04:33.965304541Z"} +2026/03/21 19:04:38 ───────────────────────────────────────────────── +2026/03/21 19:04:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:04:43 [log_collector] {"stage_name":"log_collector","events_processed":6503,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1300.6,"last_update":"2026-03-21T19:04:38.870499519Z"} +2026/03/21 19:04:43 [metric_collector] {"stage_name":"metric_collector","events_processed":3529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":705.8,"last_update":"2026-03-21T19:04:38.870714662Z"} +2026/03/21 19:04:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:04:38.87929619Z"} +2026/03/21 19:04:43 [transform_engine] {"stage_name":"transform_engine","events_processed":117,"events_dropped":0,"avg_latency_ms":575.8029792323227,"throughput_eps":0,"last_update":"2026-03-21T19:04:38.965585458Z"} +2026/03/21 19:04:43 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":15.060847625696162,"throughput_eps":0,"last_update":"2026-03-21T19:04:38.965574717Z"} +2026/03/21 19:04:43 ───────────────────────────────────────────────── +2026/03/21 19:04:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:04:48 [log_collector] {"stage_name":"log_collector","events_processed":6503,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1300.6,"last_update":"2026-03-21T19:04:48.869535263Z"} +2026/03/21 19:04:48 [metric_collector] {"stage_name":"metric_collector","events_processed":3534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":706.8,"last_update":"2026-03-21T19:04:43.870797333Z"} +2026/03/21 19:04:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:04:43.87959315Z"} +2026/03/21 19:04:48 [transform_engine] {"stage_name":"transform_engine","events_processed":117,"events_dropped":0,"avg_latency_ms":575.8029792323227,"throughput_eps":0,"last_update":"2026-03-21T19:04:43.965961922Z"} +2026/03/21 19:04:48 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":15.060847625696162,"throughput_eps":0,"last_update":"2026-03-21T19:04:43.965943416Z"} +2026/03/21 19:04:48 ───────────────────────────────────────────────── +2026/03/21 19:04:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:04:53 [log_collector] {"stage_name":"log_collector","events_processed":6503,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1300.6,"last_update":"2026-03-21T19:04:48.869535263Z"} +2026/03/21 19:04:53 [metric_collector] {"stage_name":"metric_collector","events_processed":3539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":707.8,"last_update":"2026-03-21T19:04:48.870158226Z"} +2026/03/21 19:04:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:04:48.879600131Z"} +2026/03/21 19:04:53 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":483.10568638585823,"throughput_eps":0,"last_update":"2026-03-21T19:04:49.077425503Z"} +2026/03/21 19:04:53 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":15.060847625696162,"throughput_eps":0,"last_update":"2026-03-21T19:04:48.966267505Z"} +2026/03/21 19:04:53 ───────────────────────────────────────────────── +2026/03/21 19:04:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:04:58 [log_collector] {"stage_name":"log_collector","events_processed":6503,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1300.6,"last_update":"2026-03-21T19:04:53.870407463Z"} +2026/03/21 19:04:58 [metric_collector] {"stage_name":"metric_collector","events_processed":3544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":708.8,"last_update":"2026-03-21T19:04:53.870797249Z"} +2026/03/21 19:04:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1420,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:04:53.87875861Z"} +2026/03/21 19:04:58 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":483.10568638585823,"throughput_eps":0,"last_update":"2026-03-21T19:04:53.966089133Z"} +2026/03/21 19:04:58 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":15.54279330055693,"throughput_eps":0,"last_update":"2026-03-21T19:04:53.966108591Z"} +2026/03/21 19:04:58 ───────────────────────────────────────────────── +2026/03/21 19:05:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:05:03 [metric_collector] {"stage_name":"metric_collector","events_processed":3549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":709.8,"last_update":"2026-03-21T19:04:58.869828076Z"} +2026/03/21 19:05:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:04:58.877997476Z"} +2026/03/21 19:05:03 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":483.10568638585823,"throughput_eps":0,"last_update":"2026-03-21T19:04:58.965183865Z"} +2026/03/21 19:05:03 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":15.54279330055693,"throughput_eps":0,"last_update":"2026-03-21T19:04:58.966324739Z"} +2026/03/21 19:05:03 [log_collector] {"stage_name":"log_collector","events_processed":6503,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1300.6,"last_update":"2026-03-21T19:05:03.870303149Z"} +2026/03/21 19:05:03 ───────────────────────────────────────────────── +2026/03/21 19:05:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:05:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:05:03.879249516Z"} +2026/03/21 19:05:08 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":483.10568638585823,"throughput_eps":0,"last_update":"2026-03-21T19:05:03.965599434Z"} +2026/03/21 19:05:08 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":15.54279330055693,"throughput_eps":0,"last_update":"2026-03-21T19:05:03.965578593Z"} +2026/03/21 19:05:08 [log_collector] {"stage_name":"log_collector","events_processed":6503,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1300.6,"last_update":"2026-03-21T19:05:08.869944499Z"} +2026/03/21 19:05:08 [metric_collector] {"stage_name":"metric_collector","events_processed":3559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":711.8,"last_update":"2026-03-21T19:05:08.869755937Z"} +2026/03/21 19:05:08 ───────────────────────────────────────────────── +2026/03/21 19:05:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:05:13 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":483.10568638585823,"throughput_eps":0,"last_update":"2026-03-21T19:05:08.966134315Z"} +2026/03/21 19:05:13 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":15.54279330055693,"throughput_eps":0,"last_update":"2026-03-21T19:05:08.966187386Z"} +2026/03/21 19:05:13 [log_collector] {"stage_name":"log_collector","events_processed":6503,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1300.6,"last_update":"2026-03-21T19:05:13.870372566Z"} +2026/03/21 19:05:13 [metric_collector] {"stage_name":"metric_collector","events_processed":3559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":711.8,"last_update":"2026-03-21T19:05:08.869755937Z"} +2026/03/21 19:05:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:05:08.878848014Z"} +2026/03/21 19:05:13 ───────────────────────────────────────────────── +2026/03/21 19:05:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:05:18 [log_collector] {"stage_name":"log_collector","events_processed":6503,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1300.6,"last_update":"2026-03-21T19:05:13.870372566Z"} +2026/03/21 19:05:18 [metric_collector] {"stage_name":"metric_collector","events_processed":3569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":713.8,"last_update":"2026-03-21T19:05:18.869760541Z"} +2026/03/21 19:05:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:05:13.879533153Z"} +2026/03/21 19:05:18 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":483.10568638585823,"throughput_eps":0,"last_update":"2026-03-21T19:05:13.965708047Z"} +2026/03/21 19:05:18 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":15.54279330055693,"throughput_eps":0,"last_update":"2026-03-21T19:05:13.965741922Z"} +2026/03/21 19:05:18 ───────────────────────────────────────────────── +2026/03/21 19:05:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:05:23 [log_collector] {"stage_name":"log_collector","events_processed":6503,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1300.6,"last_update":"2026-03-21T19:05:23.869878377Z"} +2026/03/21 19:05:23 [metric_collector] {"stage_name":"metric_collector","events_processed":3569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":713.8,"last_update":"2026-03-21T19:05:18.869760541Z"} +2026/03/21 19:05:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:05:18.878392657Z"} +2026/03/21 19:05:23 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":400.4756159086866,"throughput_eps":0,"last_update":"2026-03-21T19:05:19.03559042Z"} +2026/03/21 19:05:23 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":15.54279330055693,"throughput_eps":0,"last_update":"2026-03-21T19:05:18.965581053Z"} +2026/03/21 19:05:23 ───────────────────────────────────────────────── +2026/03/21 19:05:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:05:28 [log_collector] {"stage_name":"log_collector","events_processed":6503,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1300.6,"last_update":"2026-03-21T19:05:23.869878377Z"} +2026/03/21 19:05:28 [metric_collector] {"stage_name":"metric_collector","events_processed":3574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":714.8,"last_update":"2026-03-21T19:05:23.870339179Z"} +2026/03/21 19:05:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:05:23.87916205Z"} +2026/03/21 19:05:28 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":400.4756159086866,"throughput_eps":0,"last_update":"2026-03-21T19:05:23.965390688Z"} +2026/03/21 19:05:28 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":16.013108040445545,"throughput_eps":0,"last_update":"2026-03-21T19:05:23.965379057Z"} +2026/03/21 19:05:28 ───────────────────────────────────────────────── +2026/03/21 19:05:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:05:33 [log_collector] {"stage_name":"log_collector","events_processed":6503,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1300.6,"last_update":"2026-03-21T19:05:28.869480825Z"} +2026/03/21 19:05:33 [metric_collector] {"stage_name":"metric_collector","events_processed":3579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":715.8,"last_update":"2026-03-21T19:05:28.870093227Z"} +2026/03/21 19:05:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:05:28.878809173Z"} +2026/03/21 19:05:33 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":400.4756159086866,"throughput_eps":0,"last_update":"2026-03-21T19:05:28.966168517Z"} +2026/03/21 19:05:33 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":16.013108040445545,"throughput_eps":0,"last_update":"2026-03-21T19:05:28.966152997Z"} +2026/03/21 19:05:33 ───────────────────────────────────────────────── +Saved state: 12 clusters, 6504 messages, reason: none +2026/03/21 19:05:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:05:38 [metric_collector] {"stage_name":"metric_collector","events_processed":3584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":716.8,"last_update":"2026-03-21T19:05:33.870020044Z"} +2026/03/21 19:05:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:05:33.879113142Z"} +2026/03/21 19:05:38 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":400.4756159086866,"throughput_eps":0,"last_update":"2026-03-21T19:05:33.965316635Z"} +2026/03/21 19:05:38 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":16.013108040445545,"throughput_eps":0,"last_update":"2026-03-21T19:05:33.965304472Z"} +2026/03/21 19:05:38 [log_collector] {"stage_name":"log_collector","events_processed":6503,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1300.6,"last_update":"2026-03-21T19:05:33.869581594Z"} +2026/03/21 19:05:38 ───────────────────────────────────────────────── +2026/03/21 19:05:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:05:43 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":16.013108040445545,"throughput_eps":0,"last_update":"2026-03-21T19:05:38.965554737Z"} +2026/03/21 19:05:43 [log_collector] {"stage_name":"log_collector","events_processed":6516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1303.2,"last_update":"2026-03-21T19:05:38.869404793Z"} +2026/03/21 19:05:43 [metric_collector] {"stage_name":"metric_collector","events_processed":3588,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":717.6,"last_update":"2026-03-21T19:05:38.869395585Z"} +2026/03/21 19:05:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:05:38.876328568Z"} +2026/03/21 19:05:43 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":400.4756159086866,"throughput_eps":0,"last_update":"2026-03-21T19:05:38.96556669Z"} +2026/03/21 19:05:43 ───────────────────────────────────────────────── +2026/03/21 19:05:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:05:48 [log_collector] {"stage_name":"log_collector","events_processed":6517,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1303.4,"last_update":"2026-03-21T19:05:43.87027276Z"} +2026/03/21 19:05:48 [metric_collector] {"stage_name":"metric_collector","events_processed":3593,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":718.6,"last_update":"2026-03-21T19:05:43.870118835Z"} +2026/03/21 19:05:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:05:43.879141519Z"} +2026/03/21 19:05:48 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":400.4756159086866,"throughput_eps":0,"last_update":"2026-03-21T19:05:43.965408604Z"} +2026/03/21 19:05:48 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":16.013108040445545,"throughput_eps":0,"last_update":"2026-03-21T19:05:43.965374049Z"} +2026/03/21 19:05:48 ───────────────────────────────────────────────── +2026/03/21 19:05:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:05:53 [log_collector] {"stage_name":"log_collector","events_processed":6517,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1303.4,"last_update":"2026-03-21T19:05:48.86942533Z"} +2026/03/21 19:05:53 [metric_collector] {"stage_name":"metric_collector","events_processed":3599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":719.8,"last_update":"2026-03-21T19:05:48.869871826Z"} +2026/03/21 19:05:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1442,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:05:48.878106711Z"} +2026/03/21 19:05:53 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":400.4756159086866,"throughput_eps":0,"last_update":"2026-03-21T19:05:48.965313896Z"} +2026/03/21 19:05:53 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":16.013108040445545,"throughput_eps":0,"last_update":"2026-03-21T19:05:48.965417394Z"} +2026/03/21 19:05:53 ───────────────────────────────────────────────── +2026/03/21 19:05:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:05:58 [log_collector] {"stage_name":"log_collector","events_processed":6517,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1303.4,"last_update":"2026-03-21T19:05:53.870475122Z"} +2026/03/21 19:05:58 [metric_collector] {"stage_name":"metric_collector","events_processed":3604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":720.8,"last_update":"2026-03-21T19:05:53.870909032Z"} +2026/03/21 19:05:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:05:53.879639306Z"} +2026/03/21 19:05:58 [transform_engine] {"stage_name":"transform_engine","events_processed":120,"events_dropped":0,"avg_latency_ms":344.57859732694936,"throughput_eps":0,"last_update":"2026-03-21T19:05:53.966027043Z"} +2026/03/21 19:05:58 [detection_layer] {"stage_name":"detection_layer","events_processed":120,"events_dropped":0,"avg_latency_ms":16.152264032356435,"throughput_eps":0,"last_update":"2026-03-21T19:05:53.965917444Z"} +2026/03/21 19:05:58 ───────────────────────────────────────────────── +2026/03/21 19:06:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:06:03 [metric_collector] {"stage_name":"metric_collector","events_processed":3609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":721.8,"last_update":"2026-03-21T19:05:58.870337167Z"} +2026/03/21 19:06:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1446,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:05:58.8793225Z"} +2026/03/21 19:06:03 [transform_engine] {"stage_name":"transform_engine","events_processed":120,"events_dropped":0,"avg_latency_ms":344.57859732694936,"throughput_eps":0,"last_update":"2026-03-21T19:05:58.965650123Z"} +2026/03/21 19:06:03 [detection_layer] {"stage_name":"detection_layer","events_processed":120,"events_dropped":0,"avg_latency_ms":16.152264032356435,"throughput_eps":0,"last_update":"2026-03-21T19:05:58.965682174Z"} +2026/03/21 19:06:03 [log_collector] {"stage_name":"log_collector","events_processed":6517,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1303.4,"last_update":"2026-03-21T19:05:58.869859894Z"} +2026/03/21 19:06:03 ───────────────────────────────────────────────── +2026/03/21 19:06:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:06:08 [log_collector] {"stage_name":"log_collector","events_processed":6517,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1303.4,"last_update":"2026-03-21T19:06:03.869399601Z"} +2026/03/21 19:06:08 [metric_collector] {"stage_name":"metric_collector","events_processed":3614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":722.8,"last_update":"2026-03-21T19:06:03.869825505Z"} +2026/03/21 19:06:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:06:03.878285943Z"} +2026/03/21 19:06:08 [transform_engine] {"stage_name":"transform_engine","events_processed":120,"events_dropped":0,"avg_latency_ms":344.57859732694936,"throughput_eps":0,"last_update":"2026-03-21T19:06:03.965566622Z"} +2026/03/21 19:06:08 [detection_layer] {"stage_name":"detection_layer","events_processed":120,"events_dropped":0,"avg_latency_ms":16.152264032356435,"throughput_eps":0,"last_update":"2026-03-21T19:06:03.965640623Z"} +2026/03/21 19:06:08 ───────────────────────────────────────────────── +2026/03/21 19:06:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:06:13 [log_collector] {"stage_name":"log_collector","events_processed":6517,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1303.4,"last_update":"2026-03-21T19:06:08.869837964Z"} +2026/03/21 19:06:13 [metric_collector] {"stage_name":"metric_collector","events_processed":3619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":723.8,"last_update":"2026-03-21T19:06:08.870293807Z"} +2026/03/21 19:06:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:06:08.878687046Z"} +2026/03/21 19:06:13 [transform_engine] {"stage_name":"transform_engine","events_processed":120,"events_dropped":0,"avg_latency_ms":344.57859732694936,"throughput_eps":0,"last_update":"2026-03-21T19:06:08.965991871Z"} +2026/03/21 19:06:13 [detection_layer] {"stage_name":"detection_layer","events_processed":120,"events_dropped":0,"avg_latency_ms":16.152264032356435,"throughput_eps":0,"last_update":"2026-03-21T19:06:08.965942917Z"} +2026/03/21 19:06:13 ───────────────────────────────────────────────── +2026/03/21 19:06:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:06:18 [transform_engine] {"stage_name":"transform_engine","events_processed":120,"events_dropped":0,"avg_latency_ms":344.57859732694936,"throughput_eps":0,"last_update":"2026-03-21T19:06:13.966143262Z"} +2026/03/21 19:06:18 [detection_layer] {"stage_name":"detection_layer","events_processed":120,"events_dropped":0,"avg_latency_ms":16.152264032356435,"throughput_eps":0,"last_update":"2026-03-21T19:06:13.966114577Z"} +2026/03/21 19:06:18 [log_collector] {"stage_name":"log_collector","events_processed":6517,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1303.4,"last_update":"2026-03-21T19:06:13.869844197Z"} +2026/03/21 19:06:18 [metric_collector] {"stage_name":"metric_collector","events_processed":3624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":724.8,"last_update":"2026-03-21T19:06:13.870565428Z"} +2026/03/21 19:06:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1452,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:06:13.878928319Z"} +2026/03/21 19:06:18 ───────────────────────────────────────────────── +2026/03/21 19:06:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:06:23 [transform_engine] {"stage_name":"transform_engine","events_processed":121,"events_dropped":0,"avg_latency_ms":291.9180988615595,"throughput_eps":0,"last_update":"2026-03-21T19:06:19.046532477Z"} +2026/03/21 19:06:23 [detection_layer] {"stage_name":"detection_layer","events_processed":120,"events_dropped":0,"avg_latency_ms":16.152264032356435,"throughput_eps":0,"last_update":"2026-03-21T19:06:18.965541329Z"} +2026/03/21 19:06:23 [log_collector] {"stage_name":"log_collector","events_processed":6517,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1303.4,"last_update":"2026-03-21T19:06:18.869941852Z"} +2026/03/21 19:06:23 [metric_collector] {"stage_name":"metric_collector","events_processed":3629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":725.8,"last_update":"2026-03-21T19:06:18.869920441Z"} +2026/03/21 19:06:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:06:18.879041825Z"} +2026/03/21 19:06:23 ───────────────────────────────────────────────── +2026/03/21 19:06:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:06:28 [metric_collector] {"stage_name":"metric_collector","events_processed":3634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":726.8,"last_update":"2026-03-21T19:06:23.870814085Z"} +2026/03/21 19:06:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:06:23.879879091Z"} +2026/03/21 19:06:28 [transform_engine] {"stage_name":"transform_engine","events_processed":121,"events_dropped":0,"avg_latency_ms":291.9180988615595,"throughput_eps":0,"last_update":"2026-03-21T19:06:23.96518423Z"} +2026/03/21 19:06:28 [detection_layer] {"stage_name":"detection_layer","events_processed":121,"events_dropped":0,"avg_latency_ms":16.563597625885148,"throughput_eps":0,"last_update":"2026-03-21T19:06:23.965305712Z"} +2026/03/21 19:06:28 [log_collector] {"stage_name":"log_collector","events_processed":6517,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1303.4,"last_update":"2026-03-21T19:06:23.870470137Z"} +2026/03/21 19:06:28 ───────────────────────────────────────────────── +2026/03/21 19:06:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:06:33 [log_collector] {"stage_name":"log_collector","events_processed":6517,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1303.4,"last_update":"2026-03-21T19:06:28.870198407Z"} +2026/03/21 19:06:33 [metric_collector] {"stage_name":"metric_collector","events_processed":3639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":727.8,"last_update":"2026-03-21T19:06:28.870788907Z"} +2026/03/21 19:06:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:06:28.879121721Z"} +2026/03/21 19:06:33 [transform_engine] {"stage_name":"transform_engine","events_processed":121,"events_dropped":0,"avg_latency_ms":291.9180988615595,"throughput_eps":0,"last_update":"2026-03-21T19:06:28.965325941Z"} +2026/03/21 19:06:33 [detection_layer] {"stage_name":"detection_layer","events_processed":121,"events_dropped":0,"avg_latency_ms":16.563597625885148,"throughput_eps":0,"last_update":"2026-03-21T19:06:28.965385695Z"} +2026/03/21 19:06:33 ───────────────────────────────────────────────── +2026/03/21 19:06:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:06:38 [transform_engine] {"stage_name":"transform_engine","events_processed":121,"events_dropped":0,"avg_latency_ms":291.9180988615595,"throughput_eps":0,"last_update":"2026-03-21T19:06:33.965381222Z"} +2026/03/21 19:06:38 [detection_layer] {"stage_name":"detection_layer","events_processed":121,"events_dropped":0,"avg_latency_ms":16.563597625885148,"throughput_eps":0,"last_update":"2026-03-21T19:06:33.965422782Z"} +2026/03/21 19:06:38 [log_collector] {"stage_name":"log_collector","events_processed":6517,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1303.4,"last_update":"2026-03-21T19:06:33.869412837Z"} +2026/03/21 19:06:38 [metric_collector] {"stage_name":"metric_collector","events_processed":3644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":728.8,"last_update":"2026-03-21T19:06:33.869844484Z"} +2026/03/21 19:06:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:06:33.878077045Z"} +2026/03/21 19:06:38 ───────────────────────────────────────────────── +2026/03/21 19:06:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:06:43 [metric_collector] {"stage_name":"metric_collector","events_processed":3649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":729.8,"last_update":"2026-03-21T19:06:38.869812833Z"} +2026/03/21 19:06:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:06:38.878143672Z"} +2026/03/21 19:06:43 [transform_engine] {"stage_name":"transform_engine","events_processed":121,"events_dropped":0,"avg_latency_ms":291.9180988615595,"throughput_eps":0,"last_update":"2026-03-21T19:06:38.965567259Z"} +2026/03/21 19:06:43 [detection_layer] {"stage_name":"detection_layer","events_processed":121,"events_dropped":0,"avg_latency_ms":16.563597625885148,"throughput_eps":0,"last_update":"2026-03-21T19:06:38.965604109Z"} +2026/03/21 19:06:43 [log_collector] {"stage_name":"log_collector","events_processed":6517,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1303.4,"last_update":"2026-03-21T19:06:38.869420522Z"} +2026/03/21 19:06:43 ───────────────────────────────────────────────── +Saved state: 12 clusters, 6518 messages, reason: none +2026/03/21 19:06:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:06:48 [transform_engine] {"stage_name":"transform_engine","events_processed":121,"events_dropped":0,"avg_latency_ms":291.9180988615595,"throughput_eps":0,"last_update":"2026-03-21T19:06:43.965778697Z"} +2026/03/21 19:06:48 [detection_layer] {"stage_name":"detection_layer","events_processed":121,"events_dropped":0,"avg_latency_ms":16.563597625885148,"throughput_eps":0,"last_update":"2026-03-21T19:06:43.965825337Z"} +2026/03/21 19:06:48 [log_collector] {"stage_name":"log_collector","events_processed":6517,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1303.4,"last_update":"2026-03-21T19:06:43.869406779Z"} +2026/03/21 19:06:48 [metric_collector] {"stage_name":"metric_collector","events_processed":3654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":730.8,"last_update":"2026-03-21T19:06:43.869849166Z"} +2026/03/21 19:06:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:06:43.878422961Z"} +2026/03/21 19:06:48 ───────────────────────────────────────────────── +2026/03/21 19:06:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:06:53 [log_collector] {"stage_name":"log_collector","events_processed":6522,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1304.4,"last_update":"2026-03-21T19:06:48.869412548Z"} +2026/03/21 19:06:53 [metric_collector] {"stage_name":"metric_collector","events_processed":3659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":731.8,"last_update":"2026-03-21T19:06:48.869802244Z"} +2026/03/21 19:06:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:06:48.881320267Z"} +2026/03/21 19:06:53 [transform_engine] {"stage_name":"transform_engine","events_processed":122,"events_dropped":0,"avg_latency_ms":259.1107104892476,"throughput_eps":0,"last_update":"2026-03-21T19:06:49.093316035Z"} +2026/03/21 19:06:53 [detection_layer] {"stage_name":"detection_layer","events_processed":121,"events_dropped":0,"avg_latency_ms":16.563597625885148,"throughput_eps":0,"last_update":"2026-03-21T19:06:48.965455117Z"} +2026/03/21 19:06:53 ───────────────────────────────────────────────── +2026/03/21 19:06:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:06:58 [log_collector] {"stage_name":"log_collector","events_processed":6522,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1304.4,"last_update":"2026-03-21T19:06:53.869974406Z"} +2026/03/21 19:06:58 [metric_collector] {"stage_name":"metric_collector","events_processed":3663,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":732.6,"last_update":"2026-03-21T19:06:53.870052706Z"} +2026/03/21 19:06:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:06:53.877876977Z"} +2026/03/21 19:06:58 [transform_engine] {"stage_name":"transform_engine","events_processed":122,"events_dropped":0,"avg_latency_ms":259.1107104892476,"throughput_eps":0,"last_update":"2026-03-21T19:06:53.965070183Z"} +2026/03/21 19:06:58 [detection_layer] {"stage_name":"detection_layer","events_processed":122,"events_dropped":0,"avg_latency_ms":15.91415310070812,"throughput_eps":0,"last_update":"2026-03-21T19:06:53.966212751Z"} +2026/03/21 19:06:58 ───────────────────────────────────────────────── +2026/03/21 19:07:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:07:03 [log_collector] {"stage_name":"log_collector","events_processed":6522,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1304.4,"last_update":"2026-03-21T19:06:58.870004771Z"} +2026/03/21 19:07:03 [metric_collector] {"stage_name":"metric_collector","events_processed":3668,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":733.6,"last_update":"2026-03-21T19:06:58.870062492Z"} +2026/03/21 19:07:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1470,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:06:58.877141174Z"} +2026/03/21 19:07:03 [transform_engine] {"stage_name":"transform_engine","events_processed":122,"events_dropped":0,"avg_latency_ms":259.1107104892476,"throughput_eps":0,"last_update":"2026-03-21T19:06:58.965328345Z"} +2026/03/21 19:07:03 [detection_layer] {"stage_name":"detection_layer","events_processed":122,"events_dropped":0,"avg_latency_ms":15.91415310070812,"throughput_eps":0,"last_update":"2026-03-21T19:06:58.965316492Z"} +2026/03/21 19:07:03 ───────────────────────────────────────────────── +2026/03/21 19:07:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:07:08 [metric_collector] {"stage_name":"metric_collector","events_processed":3674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":734.8,"last_update":"2026-03-21T19:07:03.870164256Z"} +2026/03/21 19:07:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:07:03.876375428Z"} +2026/03/21 19:07:08 [transform_engine] {"stage_name":"transform_engine","events_processed":122,"events_dropped":0,"avg_latency_ms":259.1107104892476,"throughput_eps":0,"last_update":"2026-03-21T19:07:03.965610075Z"} +2026/03/21 19:07:08 [detection_layer] {"stage_name":"detection_layer","events_processed":122,"events_dropped":0,"avg_latency_ms":15.91415310070812,"throughput_eps":0,"last_update":"2026-03-21T19:07:03.965597981Z"} +2026/03/21 19:07:08 [log_collector] {"stage_name":"log_collector","events_processed":6522,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1304.4,"last_update":"2026-03-21T19:07:03.869712952Z"} +2026/03/21 19:07:08 ───────────────────────────────────────────────── +2026/03/21 19:07:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:07:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:07:08.876013026Z"} +2026/03/21 19:07:13 [transform_engine] {"stage_name":"transform_engine","events_processed":122,"events_dropped":0,"avg_latency_ms":259.1107104892476,"throughput_eps":0,"last_update":"2026-03-21T19:07:08.96512566Z"} +2026/03/21 19:07:13 [detection_layer] {"stage_name":"detection_layer","events_processed":122,"events_dropped":0,"avg_latency_ms":15.91415310070812,"throughput_eps":0,"last_update":"2026-03-21T19:07:08.966220405Z"} +2026/03/21 19:07:13 [log_collector] {"stage_name":"log_collector","events_processed":6522,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1304.4,"last_update":"2026-03-21T19:07:08.869415535Z"} +2026/03/21 19:07:13 [metric_collector] {"stage_name":"metric_collector","events_processed":3679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":735.8,"last_update":"2026-03-21T19:07:08.87011867Z"} +2026/03/21 19:07:13 ───────────────────────────────────────────────── +2026/03/21 19:07:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:07:18 [log_collector] {"stage_name":"log_collector","events_processed":6522,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1304.4,"last_update":"2026-03-21T19:07:13.869679455Z"} +2026/03/21 19:07:18 [metric_collector] {"stage_name":"metric_collector","events_processed":3684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":736.8,"last_update":"2026-03-21T19:07:13.869598631Z"} +2026/03/21 19:07:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1476,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:07:13.878164471Z"} +2026/03/21 19:07:18 [transform_engine] {"stage_name":"transform_engine","events_processed":122,"events_dropped":0,"avg_latency_ms":259.1107104892476,"throughput_eps":0,"last_update":"2026-03-21T19:07:13.965428235Z"} +2026/03/21 19:07:18 [detection_layer] {"stage_name":"detection_layer","events_processed":122,"events_dropped":0,"avg_latency_ms":15.91415310070812,"throughput_eps":0,"last_update":"2026-03-21T19:07:13.965460326Z"} +2026/03/21 19:07:18 ───────────────────────────────────────────────── +2026/03/21 19:07:20 [ANOMALY] time=2026-03-21T19:07:20Z score=0.9020 method=SEAD details=MAD!:w=0.26,s=0.94 RRCF-fast!:w=0.18,s=0.92 RRCF-mid:w=0.18,s=0.87 RRCF-slow!:w=0.17,s=0.90 COPOD!:w=0.22,s=0.87 +2026/03/21 19:07:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:07:23 [transform_engine] {"stage_name":"transform_engine","events_processed":123,"events_dropped":0,"avg_latency_ms":530.2503561913982,"throughput_eps":0,"last_update":"2026-03-21T19:07:20.580324829Z"} +2026/03/21 19:07:23 [detection_layer] {"stage_name":"detection_layer","events_processed":122,"events_dropped":0,"avg_latency_ms":15.91415310070812,"throughput_eps":0,"last_update":"2026-03-21T19:07:18.965482777Z"} +2026/03/21 19:07:23 [log_collector] {"stage_name":"log_collector","events_processed":6522,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1304.4,"last_update":"2026-03-21T19:07:18.869409635Z"} +2026/03/21 19:07:23 [metric_collector] {"stage_name":"metric_collector","events_processed":3689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":737.8,"last_update":"2026-03-21T19:07:18.869600731Z"} +2026/03/21 19:07:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:07:18.877143883Z"} +2026/03/21 19:07:23 ───────────────────────────────────────────────── +2026/03/21 19:07:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:07:28 [log_collector] {"stage_name":"log_collector","events_processed":6522,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1304.4,"last_update":"2026-03-21T19:07:23.869416126Z"} +2026/03/21 19:07:28 [metric_collector] {"stage_name":"metric_collector","events_processed":3694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":738.8,"last_update":"2026-03-21T19:07:23.869725649Z"} +2026/03/21 19:07:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1480,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:07:23.876757242Z"} +2026/03/21 19:07:28 [transform_engine] {"stage_name":"transform_engine","events_processed":123,"events_dropped":0,"avg_latency_ms":530.2503561913982,"throughput_eps":0,"last_update":"2026-03-21T19:07:23.965962414Z"} +2026/03/21 19:07:28 [detection_layer] {"stage_name":"detection_layer","events_processed":123,"events_dropped":0,"avg_latency_ms":14.881000280566498,"throughput_eps":0,"last_update":"2026-03-21T19:07:23.965932867Z"} +2026/03/21 19:07:28 ───────────────────────────────────────────────── +2026/03/21 19:07:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:07:33 [transform_engine] {"stage_name":"transform_engine","events_processed":123,"events_dropped":0,"avg_latency_ms":530.2503561913982,"throughput_eps":0,"last_update":"2026-03-21T19:07:28.965169135Z"} +2026/03/21 19:07:33 [detection_layer] {"stage_name":"detection_layer","events_processed":123,"events_dropped":0,"avg_latency_ms":14.881000280566498,"throughput_eps":0,"last_update":"2026-03-21T19:07:28.966240286Z"} +2026/03/21 19:07:33 [log_collector] {"stage_name":"log_collector","events_processed":6531,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1306.2,"last_update":"2026-03-21T19:07:28.869417127Z"} +2026/03/21 19:07:33 [metric_collector] {"stage_name":"metric_collector","events_processed":3699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":739.8,"last_update":"2026-03-21T19:07:28.870043487Z"} +2026/03/21 19:07:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1482,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:07:28.87607273Z"} +2026/03/21 19:07:33 ───────────────────────────────────────────────── +2026/03/21 19:07:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:07:38 [log_collector] {"stage_name":"log_collector","events_processed":6533,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1306.6,"last_update":"2026-03-21T19:07:33.869851842Z"} +2026/03/21 19:07:38 [metric_collector] {"stage_name":"metric_collector","events_processed":3704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":740.8,"last_update":"2026-03-21T19:07:33.870316401Z"} +2026/03/21 19:07:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:07:33.878539094Z"} +2026/03/21 19:07:38 [transform_engine] {"stage_name":"transform_engine","events_processed":123,"events_dropped":0,"avg_latency_ms":530.2503561913982,"throughput_eps":0,"last_update":"2026-03-21T19:07:33.965167294Z"} +2026/03/21 19:07:38 [detection_layer] {"stage_name":"detection_layer","events_processed":123,"events_dropped":0,"avg_latency_ms":14.881000280566498,"throughput_eps":0,"last_update":"2026-03-21T19:07:33.966247903Z"} +2026/03/21 19:07:38 ───────────────────────────────────────────────── +2026/03/21 19:07:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:07:43 [log_collector] {"stage_name":"log_collector","events_processed":6633,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1326.6,"last_update":"2026-03-21T19:07:38.870030315Z"} +2026/03/21 19:07:43 [metric_collector] {"stage_name":"metric_collector","events_processed":3709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":741.8,"last_update":"2026-03-21T19:07:38.870048079Z"} +2026/03/21 19:07:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1486,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:07:38.877081175Z"} +2026/03/21 19:07:43 [transform_engine] {"stage_name":"transform_engine","events_processed":123,"events_dropped":0,"avg_latency_ms":530.2503561913982,"throughput_eps":0,"last_update":"2026-03-21T19:07:38.965515303Z"} +2026/03/21 19:07:43 [detection_layer] {"stage_name":"detection_layer","events_processed":123,"events_dropped":0,"avg_latency_ms":14.881000280566498,"throughput_eps":0,"last_update":"2026-03-21T19:07:38.965387538Z"} +2026/03/21 19:07:43 ───────────────────────────────────────────────── +2026/03/21 19:07:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:07:48 [metric_collector] {"stage_name":"metric_collector","events_processed":3714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":742.8,"last_update":"2026-03-21T19:07:43.869780721Z"} +2026/03/21 19:07:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:07:43.878698766Z"} +2026/03/21 19:07:48 [transform_engine] {"stage_name":"transform_engine","events_processed":123,"events_dropped":0,"avg_latency_ms":530.2503561913982,"throughput_eps":0,"last_update":"2026-03-21T19:07:43.966008993Z"} +2026/03/21 19:07:48 [detection_layer] {"stage_name":"detection_layer","events_processed":123,"events_dropped":0,"avg_latency_ms":14.881000280566498,"throughput_eps":0,"last_update":"2026-03-21T19:07:43.966050181Z"} +2026/03/21 19:07:48 [log_collector] {"stage_name":"log_collector","events_processed":6878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1375.6,"last_update":"2026-03-21T19:07:43.869732769Z"} +2026/03/21 19:07:48 ───────────────────────────────────────────────── +2026/03/21 19:07:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:07:53 [transform_engine] {"stage_name":"transform_engine","events_processed":124,"events_dropped":0,"avg_latency_ms":447.4943467531186,"throughput_eps":0,"last_update":"2026-03-21T19:07:49.081636403Z"} +2026/03/21 19:07:53 [detection_layer] {"stage_name":"detection_layer","events_processed":123,"events_dropped":0,"avg_latency_ms":14.881000280566498,"throughput_eps":0,"last_update":"2026-03-21T19:07:48.966263686Z"} +2026/03/21 19:07:53 [log_collector] {"stage_name":"log_collector","events_processed":6878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1375.6,"last_update":"2026-03-21T19:07:48.870403137Z"} +2026/03/21 19:07:53 [metric_collector] {"stage_name":"metric_collector","events_processed":3718,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":743.6,"last_update":"2026-03-21T19:07:48.870319838Z"} +2026/03/21 19:07:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1490,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:07:48.879034373Z"} +2026/03/21 19:07:53 ───────────────────────────────────────────────── +2026/03/21 19:07:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:07:58 [transform_engine] {"stage_name":"transform_engine","events_processed":124,"events_dropped":0,"avg_latency_ms":447.4943467531186,"throughput_eps":0,"last_update":"2026-03-21T19:07:53.965799342Z"} +2026/03/21 19:07:58 [detection_layer] {"stage_name":"detection_layer","events_processed":124,"events_dropped":0,"avg_latency_ms":15.0351858244532,"throughput_eps":0,"last_update":"2026-03-21T19:07:53.965775125Z"} +2026/03/21 19:07:58 [log_collector] {"stage_name":"log_collector","events_processed":6878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1375.6,"last_update":"2026-03-21T19:07:53.869696709Z"} +2026/03/21 19:07:58 [metric_collector] {"stage_name":"metric_collector","events_processed":3723,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":744.6,"last_update":"2026-03-21T19:07:53.869685659Z"} +2026/03/21 19:07:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:07:53.878545993Z"} +2026/03/21 19:07:58 ───────────────────────────────────────────────── +2026/03/21 19:08:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:08:03 [log_collector] {"stage_name":"log_collector","events_processed":6878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1375.6,"last_update":"2026-03-21T19:07:58.869734056Z"} +2026/03/21 19:08:03 [metric_collector] {"stage_name":"metric_collector","events_processed":3729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":745.8,"last_update":"2026-03-21T19:07:58.870100027Z"} +2026/03/21 19:08:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:07:58.878583881Z"} +2026/03/21 19:08:03 [transform_engine] {"stage_name":"transform_engine","events_processed":124,"events_dropped":0,"avg_latency_ms":447.4943467531186,"throughput_eps":0,"last_update":"2026-03-21T19:07:58.965737859Z"} +2026/03/21 19:08:03 [detection_layer] {"stage_name":"detection_layer","events_processed":124,"events_dropped":0,"avg_latency_ms":15.0351858244532,"throughput_eps":0,"last_update":"2026-03-21T19:07:58.965850024Z"} +2026/03/21 19:08:03 ───────────────────────────────────────────────── +2026/03/21 19:08:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:08:08 [log_collector] {"stage_name":"log_collector","events_processed":6878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1375.6,"last_update":"2026-03-21T19:08:03.869692019Z"} +2026/03/21 19:08:08 [metric_collector] {"stage_name":"metric_collector","events_processed":3734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":746.8,"last_update":"2026-03-21T19:08:03.870046148Z"} +2026/03/21 19:08:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1496,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:08:03.879037884Z"} +2026/03/21 19:08:08 [transform_engine] {"stage_name":"transform_engine","events_processed":124,"events_dropped":0,"avg_latency_ms":447.4943467531186,"throughput_eps":0,"last_update":"2026-03-21T19:08:03.965120081Z"} +2026/03/21 19:08:08 [detection_layer] {"stage_name":"detection_layer","events_processed":124,"events_dropped":0,"avg_latency_ms":15.0351858244532,"throughput_eps":0,"last_update":"2026-03-21T19:08:03.96620608Z"} +2026/03/21 19:08:08 ───────────────────────────────────────────────── +2026/03/21 19:08:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:08:13 [log_collector] {"stage_name":"log_collector","events_processed":6878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1375.6,"last_update":"2026-03-21T19:08:13.869793149Z"} +2026/03/21 19:08:13 [metric_collector] {"stage_name":"metric_collector","events_processed":3739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":747.8,"last_update":"2026-03-21T19:08:08.870733177Z"} +2026/03/21 19:08:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1498,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:08:08.879244493Z"} +2026/03/21 19:08:13 [transform_engine] {"stage_name":"transform_engine","events_processed":124,"events_dropped":0,"avg_latency_ms":447.4943467531186,"throughput_eps":0,"last_update":"2026-03-21T19:08:08.965625573Z"} +2026/03/21 19:08:13 [detection_layer] {"stage_name":"detection_layer","events_processed":124,"events_dropped":0,"avg_latency_ms":15.0351858244532,"throughput_eps":0,"last_update":"2026-03-21T19:08:08.965590546Z"} +2026/03/21 19:08:13 ───────────────────────────────────────────────── +2026/03/21 19:08:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:08:18 [log_collector] {"stage_name":"log_collector","events_processed":6878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1375.6,"last_update":"2026-03-21T19:08:13.869793149Z"} +2026/03/21 19:08:18 [metric_collector] {"stage_name":"metric_collector","events_processed":3744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":748.8,"last_update":"2026-03-21T19:08:13.870266135Z"} +2026/03/21 19:08:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:08:13.879049491Z"} +2026/03/21 19:08:18 [transform_engine] {"stage_name":"transform_engine","events_processed":124,"events_dropped":0,"avg_latency_ms":447.4943467531186,"throughput_eps":0,"last_update":"2026-03-21T19:08:13.965327534Z"} +2026/03/21 19:08:18 [detection_layer] {"stage_name":"detection_layer","events_processed":124,"events_dropped":0,"avg_latency_ms":15.0351858244532,"throughput_eps":0,"last_update":"2026-03-21T19:08:13.965372601Z"} +2026/03/21 19:08:18 ───────────────────────────────────────────────── +2026/03/21 19:08:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:08:23 [metric_collector] {"stage_name":"metric_collector","events_processed":3749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":749.8,"last_update":"2026-03-21T19:08:18.869891678Z"} +2026/03/21 19:08:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:08:18.878267746Z"} +2026/03/21 19:08:23 [transform_engine] {"stage_name":"transform_engine","events_processed":125,"events_dropped":0,"avg_latency_ms":371.9342056024949,"throughput_eps":0,"last_update":"2026-03-21T19:08:19.035297626Z"} +2026/03/21 19:08:23 [detection_layer] {"stage_name":"detection_layer","events_processed":124,"events_dropped":0,"avg_latency_ms":15.0351858244532,"throughput_eps":0,"last_update":"2026-03-21T19:08:18.965661696Z"} +2026/03/21 19:08:23 [log_collector] {"stage_name":"log_collector","events_processed":6878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1375.6,"last_update":"2026-03-21T19:08:18.869531849Z"} +2026/03/21 19:08:23 ───────────────────────────────────────────────── +2026/03/21 19:08:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:08:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:08:23.878644307Z"} +2026/03/21 19:08:28 [transform_engine] {"stage_name":"transform_engine","events_processed":125,"events_dropped":0,"avg_latency_ms":371.9342056024949,"throughput_eps":0,"last_update":"2026-03-21T19:08:23.965979656Z"} +2026/03/21 19:08:28 [detection_layer] {"stage_name":"detection_layer","events_processed":125,"events_dropped":0,"avg_latency_ms":15.86546985956256,"throughput_eps":0,"last_update":"2026-03-21T19:08:23.965921104Z"} +2026/03/21 19:08:28 [log_collector] {"stage_name":"log_collector","events_processed":6878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1375.6,"last_update":"2026-03-21T19:08:28.869952814Z"} +2026/03/21 19:08:28 [metric_collector] {"stage_name":"metric_collector","events_processed":3754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":750.8,"last_update":"2026-03-21T19:08:23.870752146Z"} +2026/03/21 19:08:28 ───────────────────────────────────────────────── +2026/03/21 19:08:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:08:33 [detection_layer] {"stage_name":"detection_layer","events_processed":125,"events_dropped":0,"avg_latency_ms":15.86546985956256,"throughput_eps":0,"last_update":"2026-03-21T19:08:28.96611273Z"} +2026/03/21 19:08:33 [log_collector] {"stage_name":"log_collector","events_processed":6878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1375.6,"last_update":"2026-03-21T19:08:28.869952814Z"} +2026/03/21 19:08:33 [metric_collector] {"stage_name":"metric_collector","events_processed":3759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":751.8,"last_update":"2026-03-21T19:08:28.870380704Z"} +2026/03/21 19:08:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1506,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:08:28.879857499Z"} +2026/03/21 19:08:33 [transform_engine] {"stage_name":"transform_engine","events_processed":125,"events_dropped":0,"avg_latency_ms":371.9342056024949,"throughput_eps":0,"last_update":"2026-03-21T19:08:28.966080829Z"} +2026/03/21 19:08:33 ───────────────────────────────────────────────── +2026/03/21 19:08:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:08:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:08:33.878344128Z"} +2026/03/21 19:08:38 [transform_engine] {"stage_name":"transform_engine","events_processed":125,"events_dropped":0,"avg_latency_ms":371.9342056024949,"throughput_eps":0,"last_update":"2026-03-21T19:08:33.965583314Z"} +2026/03/21 19:08:38 [detection_layer] {"stage_name":"detection_layer","events_processed":125,"events_dropped":0,"avg_latency_ms":15.86546985956256,"throughput_eps":0,"last_update":"2026-03-21T19:08:33.965681472Z"} +2026/03/21 19:08:38 [log_collector] {"stage_name":"log_collector","events_processed":6878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1375.6,"last_update":"2026-03-21T19:08:33.869491088Z"} +2026/03/21 19:08:38 [metric_collector] {"stage_name":"metric_collector","events_processed":3764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":752.8,"last_update":"2026-03-21T19:08:33.869965826Z"} +2026/03/21 19:08:38 ───────────────────────────────────────────────── +2026/03/21 19:08:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:08:43 [log_collector] {"stage_name":"log_collector","events_processed":6878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1375.6,"last_update":"2026-03-21T19:08:38.869588358Z"} +2026/03/21 19:08:43 [metric_collector] {"stage_name":"metric_collector","events_processed":3769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":753.8,"last_update":"2026-03-21T19:08:38.869666227Z"} +2026/03/21 19:08:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:08:38.877853143Z"} +2026/03/21 19:08:43 [transform_engine] {"stage_name":"transform_engine","events_processed":125,"events_dropped":0,"avg_latency_ms":371.9342056024949,"throughput_eps":0,"last_update":"2026-03-21T19:08:38.96616887Z"} +2026/03/21 19:08:43 [detection_layer] {"stage_name":"detection_layer","events_processed":125,"events_dropped":0,"avg_latency_ms":15.86546985956256,"throughput_eps":0,"last_update":"2026-03-21T19:08:38.966054471Z"} +2026/03/21 19:08:43 ───────────────────────────────────────────────── +2026/03/21 19:08:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:08:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1512,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:08:43.878523756Z"} +2026/03/21 19:08:48 [transform_engine] {"stage_name":"transform_engine","events_processed":125,"events_dropped":0,"avg_latency_ms":371.9342056024949,"throughput_eps":0,"last_update":"2026-03-21T19:08:43.965951083Z"} +2026/03/21 19:08:48 [detection_layer] {"stage_name":"detection_layer","events_processed":125,"events_dropped":0,"avg_latency_ms":15.86546985956256,"throughput_eps":0,"last_update":"2026-03-21T19:08:43.965988915Z"} +2026/03/21 19:08:48 [log_collector] {"stage_name":"log_collector","events_processed":6878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1375.6,"last_update":"2026-03-21T19:08:43.869759545Z"} +2026/03/21 19:08:48 [metric_collector] {"stage_name":"metric_collector","events_processed":3774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":754.8,"last_update":"2026-03-21T19:08:43.870142629Z"} +2026/03/21 19:08:48 ───────────────────────────────────────────────── +2026/03/21 19:08:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:08:53 [transform_engine] {"stage_name":"transform_engine","events_processed":126,"events_dropped":0,"avg_latency_ms":311.47014248199594,"throughput_eps":0,"last_update":"2026-03-21T19:08:49.034819522Z"} +2026/03/21 19:08:53 [detection_layer] {"stage_name":"detection_layer","events_processed":125,"events_dropped":0,"avg_latency_ms":15.86546985956256,"throughput_eps":0,"last_update":"2026-03-21T19:08:48.96641578Z"} +2026/03/21 19:08:53 [log_collector] {"stage_name":"log_collector","events_processed":6878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1375.6,"last_update":"2026-03-21T19:08:53.869803629Z"} +2026/03/21 19:08:53 [metric_collector] {"stage_name":"metric_collector","events_processed":3779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":755.8,"last_update":"2026-03-21T19:08:48.870191448Z"} +2026/03/21 19:08:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:08:48.877954923Z"} +2026/03/21 19:08:53 ───────────────────────────────────────────────── +2026/03/21 19:08:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:08:58 [log_collector] {"stage_name":"log_collector","events_processed":6878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1375.6,"last_update":"2026-03-21T19:08:53.869803629Z"} +2026/03/21 19:08:58 [metric_collector] {"stage_name":"metric_collector","events_processed":3784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":756.8,"last_update":"2026-03-21T19:08:53.870309097Z"} +2026/03/21 19:08:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:08:53.879392299Z"} +2026/03/21 19:08:58 [transform_engine] {"stage_name":"transform_engine","events_processed":126,"events_dropped":0,"avg_latency_ms":311.47014248199594,"throughput_eps":0,"last_update":"2026-03-21T19:08:53.965849799Z"} +2026/03/21 19:08:58 [detection_layer] {"stage_name":"detection_layer","events_processed":126,"events_dropped":0,"avg_latency_ms":16.14327708765005,"throughput_eps":0,"last_update":"2026-03-21T19:08:53.965731873Z"} +2026/03/21 19:08:58 ───────────────────────────────────────────────── +2026/03/21 19:09:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:09:03 [detection_layer] {"stage_name":"detection_layer","events_processed":126,"events_dropped":0,"avg_latency_ms":16.14327708765005,"throughput_eps":0,"last_update":"2026-03-21T19:08:58.965694904Z"} +2026/03/21 19:09:03 [log_collector] {"stage_name":"log_collector","events_processed":6878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1375.6,"last_update":"2026-03-21T19:09:03.869436683Z"} +2026/03/21 19:09:03 [metric_collector] {"stage_name":"metric_collector","events_processed":3789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":757.8,"last_update":"2026-03-21T19:08:58.870556642Z"} +2026/03/21 19:09:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:08:58.878422052Z"} +2026/03/21 19:09:03 [transform_engine] {"stage_name":"transform_engine","events_processed":126,"events_dropped":0,"avg_latency_ms":311.47014248199594,"throughput_eps":0,"last_update":"2026-03-21T19:08:58.965711797Z"} +2026/03/21 19:09:03 ───────────────────────────────────────────────── +2026/03/21 19:09:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:09:08 [log_collector] {"stage_name":"log_collector","events_processed":6878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1375.6,"last_update":"2026-03-21T19:09:08.86940144Z"} +2026/03/21 19:09:08 [metric_collector] {"stage_name":"metric_collector","events_processed":3794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":758.8,"last_update":"2026-03-21T19:09:03.869991045Z"} +2026/03/21 19:09:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1520,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:09:03.879266134Z"} +2026/03/21 19:09:08 [transform_engine] {"stage_name":"transform_engine","events_processed":126,"events_dropped":0,"avg_latency_ms":311.47014248199594,"throughput_eps":0,"last_update":"2026-03-21T19:09:03.965584289Z"} +2026/03/21 19:09:08 [detection_layer] {"stage_name":"detection_layer","events_processed":126,"events_dropped":0,"avg_latency_ms":16.14327708765005,"throughput_eps":0,"last_update":"2026-03-21T19:09:03.965547298Z"} +2026/03/21 19:09:08 ───────────────────────────────────────────────── +2026/03/21 19:09:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:09:13 [transform_engine] {"stage_name":"transform_engine","events_processed":126,"events_dropped":0,"avg_latency_ms":311.47014248199594,"throughput_eps":0,"last_update":"2026-03-21T19:09:08.965835975Z"} +2026/03/21 19:09:13 [detection_layer] {"stage_name":"detection_layer","events_processed":126,"events_dropped":0,"avg_latency_ms":16.14327708765005,"throughput_eps":0,"last_update":"2026-03-21T19:09:08.965875521Z"} +2026/03/21 19:09:13 [log_collector] {"stage_name":"log_collector","events_processed":6878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1375.6,"last_update":"2026-03-21T19:09:13.869411718Z"} +2026/03/21 19:09:13 [metric_collector] {"stage_name":"metric_collector","events_processed":3799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":759.8,"last_update":"2026-03-21T19:09:08.869856671Z"} +2026/03/21 19:09:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1522,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:09:08.879477533Z"} +2026/03/21 19:09:13 ───────────────────────────────────────────────── +2026/03/21 19:09:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:09:18 [log_collector] {"stage_name":"log_collector","events_processed":6878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1375.6,"last_update":"2026-03-21T19:09:13.869411718Z"} +2026/03/21 19:09:18 [metric_collector] {"stage_name":"metric_collector","events_processed":3804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":760.8,"last_update":"2026-03-21T19:09:13.869723706Z"} +2026/03/21 19:09:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:09:13.878409667Z"} +2026/03/21 19:09:18 [transform_engine] {"stage_name":"transform_engine","events_processed":126,"events_dropped":0,"avg_latency_ms":311.47014248199594,"throughput_eps":0,"last_update":"2026-03-21T19:09:13.965593771Z"} +2026/03/21 19:09:18 [detection_layer] {"stage_name":"detection_layer","events_processed":126,"events_dropped":0,"avg_latency_ms":16.14327708765005,"throughput_eps":0,"last_update":"2026-03-21T19:09:13.965648085Z"} +2026/03/21 19:09:18 ───────────────────────────────────────────────── +Saved state: 12 clusters, 6879 messages, reason: none +2026/03/21 19:09:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:09:23 [detection_layer] {"stage_name":"detection_layer","events_processed":126,"events_dropped":0,"avg_latency_ms":16.14327708765005,"throughput_eps":0,"last_update":"2026-03-21T19:09:18.965649333Z"} +2026/03/21 19:09:23 [log_collector] {"stage_name":"log_collector","events_processed":6878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1375.6,"last_update":"2026-03-21T19:09:18.869922591Z"} +2026/03/21 19:09:23 [metric_collector] {"stage_name":"metric_collector","events_processed":3809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":761.8,"last_update":"2026-03-21T19:09:18.870292209Z"} +2026/03/21 19:09:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1526,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:09:18.879389107Z"} +2026/03/21 19:09:23 [transform_engine] {"stage_name":"transform_engine","events_processed":127,"events_dropped":0,"avg_latency_ms":262.50452838559676,"throughput_eps":0,"last_update":"2026-03-21T19:09:19.032304469Z"} +2026/03/21 19:09:23 ───────────────────────────────────────────────── +2026/03/21 19:09:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:09:28 [metric_collector] {"stage_name":"metric_collector","events_processed":3814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":762.8,"last_update":"2026-03-21T19:09:23.870533892Z"} +2026/03/21 19:09:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:09:23.877292693Z"} +2026/03/21 19:09:28 [transform_engine] {"stage_name":"transform_engine","events_processed":127,"events_dropped":0,"avg_latency_ms":262.50452838559676,"throughput_eps":0,"last_update":"2026-03-21T19:09:23.965426626Z"} +2026/03/21 19:09:28 [detection_layer] {"stage_name":"detection_layer","events_processed":127,"events_dropped":0,"avg_latency_ms":16.58178947012004,"throughput_eps":0,"last_update":"2026-03-21T19:09:23.965404814Z"} +2026/03/21 19:09:28 [log_collector] {"stage_name":"log_collector","events_processed":6881,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1376.2,"last_update":"2026-03-21T19:09:23.870138335Z"} +2026/03/21 19:09:28 ───────────────────────────────────────────────── +2026/03/21 19:09:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:09:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:09:28.87901251Z"} +2026/03/21 19:09:33 [transform_engine] {"stage_name":"transform_engine","events_processed":127,"events_dropped":0,"avg_latency_ms":262.50452838559676,"throughput_eps":0,"last_update":"2026-03-21T19:09:28.965136526Z"} +2026/03/21 19:09:33 [detection_layer] {"stage_name":"detection_layer","events_processed":127,"events_dropped":0,"avg_latency_ms":16.58178947012004,"throughput_eps":0,"last_update":"2026-03-21T19:09:28.966266539Z"} +2026/03/21 19:09:33 [log_collector] {"stage_name":"log_collector","events_processed":6881,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1376.2,"last_update":"2026-03-21T19:09:28.869698516Z"} +2026/03/21 19:09:33 [metric_collector] {"stage_name":"metric_collector","events_processed":3819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":763.8,"last_update":"2026-03-21T19:09:28.870043237Z"} +2026/03/21 19:09:33 ───────────────────────────────────────────────── +2026/03/21 19:09:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:09:38 [log_collector] {"stage_name":"log_collector","events_processed":6892,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1378.4,"last_update":"2026-03-21T19:09:33.86994064Z"} +2026/03/21 19:09:38 [metric_collector] {"stage_name":"metric_collector","events_processed":3824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":764.8,"last_update":"2026-03-21T19:09:33.870496765Z"} +2026/03/21 19:09:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1532,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:09:33.879942501Z"} +2026/03/21 19:09:38 [transform_engine] {"stage_name":"transform_engine","events_processed":127,"events_dropped":0,"avg_latency_ms":262.50452838559676,"throughput_eps":0,"last_update":"2026-03-21T19:09:33.965046685Z"} +2026/03/21 19:09:38 [detection_layer] {"stage_name":"detection_layer","events_processed":127,"events_dropped":0,"avg_latency_ms":16.58178947012004,"throughput_eps":0,"last_update":"2026-03-21T19:09:33.966257132Z"} +2026/03/21 19:09:38 ───────────────────────────────────────────────── +2026/03/21 19:09:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:09:43 [log_collector] {"stage_name":"log_collector","events_processed":6892,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1378.4,"last_update":"2026-03-21T19:09:38.869490763Z"} +2026/03/21 19:09:43 [metric_collector] {"stage_name":"metric_collector","events_processed":3828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":765.6,"last_update":"2026-03-21T19:09:38.869381845Z"} +2026/03/21 19:09:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:09:38.878131619Z"} +2026/03/21 19:09:43 [transform_engine] {"stage_name":"transform_engine","events_processed":127,"events_dropped":0,"avg_latency_ms":262.50452838559676,"throughput_eps":0,"last_update":"2026-03-21T19:09:38.965322527Z"} +2026/03/21 19:09:43 [detection_layer] {"stage_name":"detection_layer","events_processed":127,"events_dropped":0,"avg_latency_ms":16.58178947012004,"throughput_eps":0,"last_update":"2026-03-21T19:09:38.965403071Z"} +2026/03/21 19:09:43 ───────────────────────────────────────────────── +2026/03/21 19:09:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:09:48 [log_collector] {"stage_name":"log_collector","events_processed":6908,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1381.6,"last_update":"2026-03-21T19:09:43.86946343Z"} +2026/03/21 19:09:48 [metric_collector] {"stage_name":"metric_collector","events_processed":3833,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":766.6,"last_update":"2026-03-21T19:09:43.86956298Z"} +2026/03/21 19:09:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1536,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:09:43.878855032Z"} +2026/03/21 19:09:48 [transform_engine] {"stage_name":"transform_engine","events_processed":127,"events_dropped":0,"avg_latency_ms":262.50452838559676,"throughput_eps":0,"last_update":"2026-03-21T19:09:43.966040421Z"} +2026/03/21 19:09:48 [detection_layer] {"stage_name":"detection_layer","events_processed":127,"events_dropped":0,"avg_latency_ms":16.58178947012004,"throughput_eps":0,"last_update":"2026-03-21T19:09:43.966070168Z"} +2026/03/21 19:09:48 ───────────────────────────────────────────────── +2026/03/21 19:09:49 [ANOMALY] time=2026-03-21T19:09:49Z score=0.8939 method=SEAD details=MAD!:w=0.26,s=0.87 RRCF-fast:w=0.18,s=0.85 RRCF-mid:w=0.18,s=0.87 RRCF-slow!:w=0.17,s=0.91 COPOD!:w=0.22,s=0.98 +2026/03/21 19:09:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:09:53 [transform_engine] {"stage_name":"transform_engine","events_processed":127,"events_dropped":0,"avg_latency_ms":262.50452838559676,"throughput_eps":0,"last_update":"2026-03-21T19:09:48.965723327Z"} +2026/03/21 19:09:53 [detection_layer] {"stage_name":"detection_layer","events_processed":127,"events_dropped":0,"avg_latency_ms":16.58178947012004,"throughput_eps":0,"last_update":"2026-03-21T19:09:48.965773393Z"} +2026/03/21 19:09:53 [log_collector] {"stage_name":"log_collector","events_processed":6922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1384.4,"last_update":"2026-03-21T19:09:48.869418106Z"} +2026/03/21 19:09:53 [metric_collector] {"stage_name":"metric_collector","events_processed":3838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":767.6,"last_update":"2026-03-21T19:09:48.869549087Z"} +2026/03/21 19:09:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:09:48.879459623Z"} +2026/03/21 19:09:53 ───────────────────────────────────────────────── +2026/03/21 19:09:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:09:58 [log_collector] {"stage_name":"log_collector","events_processed":6922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1384.4,"last_update":"2026-03-21T19:09:53.870159162Z"} +2026/03/21 19:09:58 [metric_collector] {"stage_name":"metric_collector","events_processed":3844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":768.8,"last_update":"2026-03-21T19:09:53.870554629Z"} +2026/03/21 19:09:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1540,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:09:53.878863259Z"} +2026/03/21 19:09:58 [transform_engine] {"stage_name":"transform_engine","events_processed":128,"events_dropped":0,"avg_latency_ms":232.70070030847742,"throughput_eps":0,"last_update":"2026-03-21T19:09:53.965084862Z"} +2026/03/21 19:09:58 [detection_layer] {"stage_name":"detection_layer","events_processed":128,"events_dropped":0,"avg_latency_ms":15.972717176096033,"throughput_eps":0,"last_update":"2026-03-21T19:09:53.966224865Z"} +2026/03/21 19:09:58 ───────────────────────────────────────────────── +2026/03/21 19:10:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:10:03 [log_collector] {"stage_name":"log_collector","events_processed":6922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1384.4,"last_update":"2026-03-21T19:09:58.869904514Z"} +2026/03/21 19:10:03 [metric_collector] {"stage_name":"metric_collector","events_processed":3849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":769.8,"last_update":"2026-03-21T19:09:58.87032029Z"} +2026/03/21 19:10:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1542,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:09:58.879563278Z"} +2026/03/21 19:10:03 [transform_engine] {"stage_name":"transform_engine","events_processed":128,"events_dropped":0,"avg_latency_ms":232.70070030847742,"throughput_eps":0,"last_update":"2026-03-21T19:09:58.965728895Z"} +2026/03/21 19:10:03 [detection_layer] {"stage_name":"detection_layer","events_processed":128,"events_dropped":0,"avg_latency_ms":15.972717176096033,"throughput_eps":0,"last_update":"2026-03-21T19:09:58.965901847Z"} +2026/03/21 19:10:03 ───────────────────────────────────────────────── +2026/03/21 19:10:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:10:08 [log_collector] {"stage_name":"log_collector","events_processed":6922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1384.4,"last_update":"2026-03-21T19:10:03.869508451Z"} +2026/03/21 19:10:08 [metric_collector] {"stage_name":"metric_collector","events_processed":3854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":770.8,"last_update":"2026-03-21T19:10:03.869821881Z"} +2026/03/21 19:10:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:10:03.885162173Z"} +2026/03/21 19:10:08 [transform_engine] {"stage_name":"transform_engine","events_processed":128,"events_dropped":0,"avg_latency_ms":232.70070030847742,"throughput_eps":0,"last_update":"2026-03-21T19:10:03.965320289Z"} +2026/03/21 19:10:08 [detection_layer] {"stage_name":"detection_layer","events_processed":128,"events_dropped":0,"avg_latency_ms":15.972717176096033,"throughput_eps":0,"last_update":"2026-03-21T19:10:03.96544072Z"} +2026/03/21 19:10:08 ───────────────────────────────────────────────── +2026/03/21 19:10:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:10:13 [transform_engine] {"stage_name":"transform_engine","events_processed":128,"events_dropped":0,"avg_latency_ms":232.70070030847742,"throughput_eps":0,"last_update":"2026-03-21T19:10:08.965562441Z"} +2026/03/21 19:10:13 [detection_layer] {"stage_name":"detection_layer","events_processed":128,"events_dropped":0,"avg_latency_ms":15.972717176096033,"throughput_eps":0,"last_update":"2026-03-21T19:10:08.965494701Z"} +2026/03/21 19:10:13 [log_collector] {"stage_name":"log_collector","events_processed":6922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1384.4,"last_update":"2026-03-21T19:10:08.869764809Z"} +2026/03/21 19:10:13 [metric_collector] {"stage_name":"metric_collector","events_processed":3859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":771.8,"last_update":"2026-03-21T19:10:08.870135179Z"} +2026/03/21 19:10:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:10:08.879137456Z"} +2026/03/21 19:10:13 ───────────────────────────────────────────────── +2026/03/21 19:10:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:10:18 [log_collector] {"stage_name":"log_collector","events_processed":6922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1384.4,"last_update":"2026-03-21T19:10:13.869986594Z"} +2026/03/21 19:10:18 [metric_collector] {"stage_name":"metric_collector","events_processed":3864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":772.8,"last_update":"2026-03-21T19:10:13.870233066Z"} +2026/03/21 19:10:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:10:13.8786383Z"} +2026/03/21 19:10:18 [transform_engine] {"stage_name":"transform_engine","events_processed":128,"events_dropped":0,"avg_latency_ms":232.70070030847742,"throughput_eps":0,"last_update":"2026-03-21T19:10:13.965831747Z"} +2026/03/21 19:10:18 [detection_layer] {"stage_name":"detection_layer","events_processed":128,"events_dropped":0,"avg_latency_ms":15.972717176096033,"throughput_eps":0,"last_update":"2026-03-21T19:10:13.96593789Z"} +2026/03/21 19:10:18 ───────────────────────────────────────────────── +2026/03/21 19:10:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:10:23 [log_collector] {"stage_name":"log_collector","events_processed":6922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1384.4,"last_update":"2026-03-21T19:10:18.869954977Z"} +2026/03/21 19:10:23 [metric_collector] {"stage_name":"metric_collector","events_processed":3869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":773.8,"last_update":"2026-03-21T19:10:18.870572439Z"} +2026/03/21 19:10:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:10:18.879243853Z"} +2026/03/21 19:10:23 [transform_engine] {"stage_name":"transform_engine","events_processed":129,"events_dropped":0,"avg_latency_ms":201.30838924678196,"throughput_eps":0,"last_update":"2026-03-21T19:10:19.041179857Z"} +2026/03/21 19:10:23 [detection_layer] {"stage_name":"detection_layer","events_processed":128,"events_dropped":0,"avg_latency_ms":15.972717176096033,"throughput_eps":0,"last_update":"2026-03-21T19:10:18.965427126Z"} +2026/03/21 19:10:23 ───────────────────────────────────────────────── +2026/03/21 19:10:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:10:28 [log_collector] {"stage_name":"log_collector","events_processed":6922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1384.4,"last_update":"2026-03-21T19:10:23.869407975Z"} +2026/03/21 19:10:28 [metric_collector] {"stage_name":"metric_collector","events_processed":3874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":774.8,"last_update":"2026-03-21T19:10:23.869747845Z"} +2026/03/21 19:10:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:10:23.879412921Z"} +2026/03/21 19:10:28 [transform_engine] {"stage_name":"transform_engine","events_processed":129,"events_dropped":0,"avg_latency_ms":201.30838924678196,"throughput_eps":0,"last_update":"2026-03-21T19:10:23.965608098Z"} +2026/03/21 19:10:28 [detection_layer] {"stage_name":"detection_layer","events_processed":129,"events_dropped":0,"avg_latency_ms":16.59833254087683,"throughput_eps":0,"last_update":"2026-03-21T19:10:23.965586366Z"} +2026/03/21 19:10:28 ───────────────────────────────────────────────── +2026/03/21 19:10:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:10:33 [log_collector] {"stage_name":"log_collector","events_processed":6922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1384.4,"last_update":"2026-03-21T19:10:28.869644195Z"} +2026/03/21 19:10:33 [metric_collector] {"stage_name":"metric_collector","events_processed":3878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":775.6,"last_update":"2026-03-21T19:10:28.869522853Z"} +2026/03/21 19:10:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:10:28.878961325Z"} +2026/03/21 19:10:33 [transform_engine] {"stage_name":"transform_engine","events_processed":129,"events_dropped":0,"avg_latency_ms":201.30838924678196,"throughput_eps":0,"last_update":"2026-03-21T19:10:28.965386522Z"} +2026/03/21 19:10:33 [detection_layer] {"stage_name":"detection_layer","events_processed":129,"events_dropped":0,"avg_latency_ms":16.59833254087683,"throughput_eps":0,"last_update":"2026-03-21T19:10:28.965494348Z"} +2026/03/21 19:10:33 ───────────────────────────────────────────────── +2026/03/21 19:10:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:10:38 [log_collector] {"stage_name":"log_collector","events_processed":6922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1384.4,"last_update":"2026-03-21T19:10:33.87014402Z"} +2026/03/21 19:10:38 [metric_collector] {"stage_name":"metric_collector","events_processed":3883,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":776.6,"last_update":"2026-03-21T19:10:33.870261736Z"} +2026/03/21 19:10:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:10:33.879635645Z"} +2026/03/21 19:10:38 [transform_engine] {"stage_name":"transform_engine","events_processed":129,"events_dropped":0,"avg_latency_ms":201.30838924678196,"throughput_eps":0,"last_update":"2026-03-21T19:10:33.965837214Z"} +2026/03/21 19:10:38 [detection_layer] {"stage_name":"detection_layer","events_processed":129,"events_dropped":0,"avg_latency_ms":16.59833254087683,"throughput_eps":0,"last_update":"2026-03-21T19:10:33.965816785Z"} +2026/03/21 19:10:38 ───────────────────────────────────────────────── +2026/03/21 19:10:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:10:43 [log_collector] {"stage_name":"log_collector","events_processed":6922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1384.4,"last_update":"2026-03-21T19:10:38.86939622Z"} +2026/03/21 19:10:43 [metric_collector] {"stage_name":"metric_collector","events_processed":3888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":777.6,"last_update":"2026-03-21T19:10:38.869390169Z"} +2026/03/21 19:10:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:10:38.878621354Z"} +2026/03/21 19:10:43 [transform_engine] {"stage_name":"transform_engine","events_processed":129,"events_dropped":0,"avg_latency_ms":201.30838924678196,"throughput_eps":0,"last_update":"2026-03-21T19:10:38.965861633Z"} +2026/03/21 19:10:43 [detection_layer] {"stage_name":"detection_layer","events_processed":129,"events_dropped":0,"avg_latency_ms":16.59833254087683,"throughput_eps":0,"last_update":"2026-03-21T19:10:38.965832246Z"} +2026/03/21 19:10:43 ───────────────────────────────────────────────── +2026/03/21 19:10:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:10:48 [transform_engine] {"stage_name":"transform_engine","events_processed":129,"events_dropped":0,"avg_latency_ms":201.30838924678196,"throughput_eps":0,"last_update":"2026-03-21T19:10:43.96566601Z"} +2026/03/21 19:10:48 [detection_layer] {"stage_name":"detection_layer","events_processed":129,"events_dropped":0,"avg_latency_ms":16.59833254087683,"throughput_eps":0,"last_update":"2026-03-21T19:10:43.965714884Z"} +2026/03/21 19:10:48 [log_collector] {"stage_name":"log_collector","events_processed":6922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1384.4,"last_update":"2026-03-21T19:10:43.86957843Z"} +2026/03/21 19:10:48 [metric_collector] {"stage_name":"metric_collector","events_processed":3894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":778.8,"last_update":"2026-03-21T19:10:43.870172899Z"} +2026/03/21 19:10:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1560,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:10:43.879327509Z"} +2026/03/21 19:10:48 ───────────────────────────────────────────────── +2026/03/21 19:10:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:10:53 [transform_engine] {"stage_name":"transform_engine","events_processed":129,"events_dropped":0,"avg_latency_ms":201.30838924678196,"throughput_eps":0,"last_update":"2026-03-21T19:10:48.965175407Z"} +2026/03/21 19:10:53 [detection_layer] {"stage_name":"detection_layer","events_processed":129,"events_dropped":0,"avg_latency_ms":16.59833254087683,"throughput_eps":0,"last_update":"2026-03-21T19:10:48.9653341Z"} +2026/03/21 19:10:53 [log_collector] {"stage_name":"log_collector","events_processed":6922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1384.4,"last_update":"2026-03-21T19:10:53.86960894Z"} +2026/03/21 19:10:53 [metric_collector] {"stage_name":"metric_collector","events_processed":3898,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":779.6,"last_update":"2026-03-21T19:10:48.870168767Z"} +2026/03/21 19:10:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:10:48.878863265Z"} +2026/03/21 19:10:53 ───────────────────────────────────────────────── +Saved state: 12 clusters, 6923 messages, reason: none +2026/03/21 19:10:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:10:58 [log_collector] {"stage_name":"log_collector","events_processed":6922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1384.4,"last_update":"2026-03-21T19:10:53.86960894Z"} +2026/03/21 19:10:58 [metric_collector] {"stage_name":"metric_collector","events_processed":3904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":780.8,"last_update":"2026-03-21T19:10:53.869831396Z"} +2026/03/21 19:10:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:10:53.879028909Z"} +2026/03/21 19:10:58 [transform_engine] {"stage_name":"transform_engine","events_processed":130,"events_dropped":0,"avg_latency_ms":174.6569623974256,"throughput_eps":0,"last_update":"2026-03-21T19:10:53.965134044Z"} +2026/03/21 19:10:58 [detection_layer] {"stage_name":"detection_layer","events_processed":130,"events_dropped":0,"avg_latency_ms":17.095921432701463,"throughput_eps":0,"last_update":"2026-03-21T19:10:53.966300879Z"} +2026/03/21 19:10:58 ───────────────────────────────────────────────── +2026/03/21 19:11:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:11:03 [metric_collector] {"stage_name":"metric_collector","events_processed":3909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":781.8,"last_update":"2026-03-21T19:10:58.869899203Z"} +2026/03/21 19:11:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1566,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:10:58.877370549Z"} +2026/03/21 19:11:03 [transform_engine] {"stage_name":"transform_engine","events_processed":130,"events_dropped":0,"avg_latency_ms":174.6569623974256,"throughput_eps":0,"last_update":"2026-03-21T19:10:58.965479743Z"} +2026/03/21 19:11:03 [detection_layer] {"stage_name":"detection_layer","events_processed":130,"events_dropped":0,"avg_latency_ms":17.095921432701463,"throughput_eps":0,"last_update":"2026-03-21T19:10:58.965451459Z"} +2026/03/21 19:11:03 [log_collector] {"stage_name":"log_collector","events_processed":6927,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1385.4,"last_update":"2026-03-21T19:10:58.869561547Z"} +2026/03/21 19:11:03 ───────────────────────────────────────────────── +2026/03/21 19:11:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:11:08 [log_collector] {"stage_name":"log_collector","events_processed":6927,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1385.4,"last_update":"2026-03-21T19:11:03.869407619Z"} +2026/03/21 19:11:08 [metric_collector] {"stage_name":"metric_collector","events_processed":3914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":782.8,"last_update":"2026-03-21T19:11:03.869654883Z"} +2026/03/21 19:11:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:11:03.876317159Z"} +2026/03/21 19:11:08 [transform_engine] {"stage_name":"transform_engine","events_processed":130,"events_dropped":0,"avg_latency_ms":174.6569623974256,"throughput_eps":0,"last_update":"2026-03-21T19:11:03.965497084Z"} +2026/03/21 19:11:08 [detection_layer] {"stage_name":"detection_layer","events_processed":130,"events_dropped":0,"avg_latency_ms":17.095921432701463,"throughput_eps":0,"last_update":"2026-03-21T19:11:03.965509889Z"} +2026/03/21 19:11:08 ───────────────────────────────────────────────── +2026/03/21 19:11:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:11:13 [log_collector] {"stage_name":"log_collector","events_processed":6927,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1385.4,"last_update":"2026-03-21T19:11:08.87029728Z"} +2026/03/21 19:11:13 [metric_collector] {"stage_name":"metric_collector","events_processed":3919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":783.8,"last_update":"2026-03-21T19:11:08.870686436Z"} +2026/03/21 19:11:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1570,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:11:08.876891467Z"} +2026/03/21 19:11:13 [transform_engine] {"stage_name":"transform_engine","events_processed":130,"events_dropped":0,"avg_latency_ms":174.6569623974256,"throughput_eps":0,"last_update":"2026-03-21T19:11:08.965077979Z"} +2026/03/21 19:11:13 [detection_layer] {"stage_name":"detection_layer","events_processed":130,"events_dropped":0,"avg_latency_ms":17.095921432701463,"throughput_eps":0,"last_update":"2026-03-21T19:11:08.966173738Z"} +2026/03/21 19:11:13 ───────────────────────────────────────────────── +2026/03/21 19:11:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:11:18 [log_collector] {"stage_name":"log_collector","events_processed":6927,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1385.4,"last_update":"2026-03-21T19:11:13.86949897Z"} +2026/03/21 19:11:18 [metric_collector] {"stage_name":"metric_collector","events_processed":3924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":784.8,"last_update":"2026-03-21T19:11:13.869935395Z"} +2026/03/21 19:11:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1572,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:11:13.875558102Z"} +2026/03/21 19:11:18 [transform_engine] {"stage_name":"transform_engine","events_processed":130,"events_dropped":0,"avg_latency_ms":174.6569623974256,"throughput_eps":0,"last_update":"2026-03-21T19:11:13.965777587Z"} +2026/03/21 19:11:18 [detection_layer] {"stage_name":"detection_layer","events_processed":130,"events_dropped":0,"avg_latency_ms":17.095921432701463,"throughput_eps":0,"last_update":"2026-03-21T19:11:13.965800832Z"} +2026/03/21 19:11:18 ───────────────────────────────────────────────── +2026/03/21 19:11:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:11:23 [transform_engine] {"stage_name":"transform_engine","events_processed":130,"events_dropped":0,"avg_latency_ms":174.6569623974256,"throughput_eps":0,"last_update":"2026-03-21T19:11:18.965404822Z"} +2026/03/21 19:11:23 [detection_layer] {"stage_name":"detection_layer","events_processed":130,"events_dropped":0,"avg_latency_ms":17.095921432701463,"throughput_eps":0,"last_update":"2026-03-21T19:11:18.965449107Z"} +2026/03/21 19:11:23 [log_collector] {"stage_name":"log_collector","events_processed":6927,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1385.4,"last_update":"2026-03-21T19:11:18.869901789Z"} +2026/03/21 19:11:23 [metric_collector] {"stage_name":"metric_collector","events_processed":3934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":786.8,"last_update":"2026-03-21T19:11:23.869894935Z"} +2026/03/21 19:11:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:11:18.876159953Z"} +2026/03/21 19:11:23 ───────────────────────────────────────────────── +2026/03/21 19:11:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:11:28 [transform_engine] {"stage_name":"transform_engine","events_processed":131,"events_dropped":0,"avg_latency_ms":991.7111631179405,"throughput_eps":0,"last_update":"2026-03-21T19:11:23.965362741Z"} +2026/03/21 19:11:28 [detection_layer] {"stage_name":"detection_layer","events_processed":131,"events_dropped":0,"avg_latency_ms":15.82626494616117,"throughput_eps":0,"last_update":"2026-03-21T19:11:23.965387749Z"} +2026/03/21 19:11:28 [log_collector] {"stage_name":"log_collector","events_processed":6927,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1385.4,"last_update":"2026-03-21T19:11:23.869910244Z"} +2026/03/21 19:11:28 [metric_collector] {"stage_name":"metric_collector","events_processed":3934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":786.8,"last_update":"2026-03-21T19:11:23.869894935Z"} +2026/03/21 19:11:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1576,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:11:23.880166854Z"} +2026/03/21 19:11:28 ───────────────────────────────────────────────── +2026/03/21 19:11:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:11:33 [metric_collector] {"stage_name":"metric_collector","events_processed":3939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":787.8,"last_update":"2026-03-21T19:11:28.869766548Z"} +2026/03/21 19:11:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:11:28.87750188Z"} +2026/03/21 19:11:33 [transform_engine] {"stage_name":"transform_engine","events_processed":131,"events_dropped":0,"avg_latency_ms":991.7111631179405,"throughput_eps":0,"last_update":"2026-03-21T19:11:28.965671672Z"} +2026/03/21 19:11:33 [detection_layer] {"stage_name":"detection_layer","events_processed":131,"events_dropped":0,"avg_latency_ms":15.82626494616117,"throughput_eps":0,"last_update":"2026-03-21T19:11:28.965652685Z"} +2026/03/21 19:11:33 [log_collector] {"stage_name":"log_collector","events_processed":6927,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1385.4,"last_update":"2026-03-21T19:11:28.86979363Z"} +2026/03/21 19:11:33 ───────────────────────────────────────────────── +2026/03/21 19:11:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:11:38 [log_collector] {"stage_name":"log_collector","events_processed":6927,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1385.4,"last_update":"2026-03-21T19:11:33.869426684Z"} +2026/03/21 19:11:38 [metric_collector] {"stage_name":"metric_collector","events_processed":3944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":788.8,"last_update":"2026-03-21T19:11:33.870110984Z"} +2026/03/21 19:11:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1580,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:11:33.875656623Z"} +2026/03/21 19:11:38 [transform_engine] {"stage_name":"transform_engine","events_processed":131,"events_dropped":0,"avg_latency_ms":991.7111631179405,"throughput_eps":0,"last_update":"2026-03-21T19:11:33.965832346Z"} +2026/03/21 19:11:38 [detection_layer] {"stage_name":"detection_layer","events_processed":131,"events_dropped":0,"avg_latency_ms":15.82626494616117,"throughput_eps":0,"last_update":"2026-03-21T19:11:33.965806938Z"} +2026/03/21 19:11:38 ───────────────────────────────────────────────── +2026/03/21 19:11:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:11:43 [log_collector] {"stage_name":"log_collector","events_processed":6936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1387.2,"last_update":"2026-03-21T19:11:38.869676039Z"} +2026/03/21 19:11:43 [metric_collector] {"stage_name":"metric_collector","events_processed":3948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":789.6,"last_update":"2026-03-21T19:11:38.869381996Z"} +2026/03/21 19:11:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:11:38.876719416Z"} +2026/03/21 19:11:43 [transform_engine] {"stage_name":"transform_engine","events_processed":131,"events_dropped":0,"avg_latency_ms":991.7111631179405,"throughput_eps":0,"last_update":"2026-03-21T19:11:38.966013933Z"} +2026/03/21 19:11:43 [detection_layer] {"stage_name":"detection_layer","events_processed":131,"events_dropped":0,"avg_latency_ms":15.82626494616117,"throughput_eps":0,"last_update":"2026-03-21T19:11:38.966000777Z"} +2026/03/21 19:11:43 ───────────────────────────────────────────────── +2026/03/21 19:11:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:11:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:11:43.878395482Z"} +2026/03/21 19:11:48 [transform_engine] {"stage_name":"transform_engine","events_processed":131,"events_dropped":0,"avg_latency_ms":991.7111631179405,"throughput_eps":0,"last_update":"2026-03-21T19:11:43.965585618Z"} +2026/03/21 19:11:48 [detection_layer] {"stage_name":"detection_layer","events_processed":131,"events_dropped":0,"avg_latency_ms":15.82626494616117,"throughput_eps":0,"last_update":"2026-03-21T19:11:43.965572925Z"} +2026/03/21 19:11:48 [log_collector] {"stage_name":"log_collector","events_processed":7101,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1420.2,"last_update":"2026-03-21T19:11:48.870408062Z"} +2026/03/21 19:11:48 [metric_collector] {"stage_name":"metric_collector","events_processed":3958,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":791.6,"last_update":"2026-03-21T19:11:48.870332447Z"} +2026/03/21 19:11:48 ───────────────────────────────────────────────── +2026/03/21 19:11:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:11:53 [log_collector] {"stage_name":"log_collector","events_processed":7101,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1420.2,"last_update":"2026-03-21T19:11:48.870408062Z"} +2026/03/21 19:11:53 [metric_collector] {"stage_name":"metric_collector","events_processed":3958,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":791.6,"last_update":"2026-03-21T19:11:48.870332447Z"} +2026/03/21 19:11:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1586,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:11:48.87779136Z"} +2026/03/21 19:11:53 [transform_engine] {"stage_name":"transform_engine","events_processed":132,"events_dropped":0,"avg_latency_ms":832.0181146943524,"throughput_eps":0,"last_update":"2026-03-21T19:11:49.159279181Z"} +2026/03/21 19:11:53 [detection_layer] {"stage_name":"detection_layer","events_processed":131,"events_dropped":0,"avg_latency_ms":15.82626494616117,"throughput_eps":0,"last_update":"2026-03-21T19:11:48.966024054Z"} +2026/03/21 19:11:53 ───────────────────────────────────────────────── +Saved state: 12 clusters, 7286 messages, reason: none +2026/03/21 19:11:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:11:58 [log_collector] {"stage_name":"log_collector","events_processed":7285,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1457,"last_update":"2026-03-21T19:11:53.870079907Z"} +2026/03/21 19:11:58 [metric_collector] {"stage_name":"metric_collector","events_processed":3964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":792.8,"last_update":"2026-03-21T19:11:53.870108101Z"} +2026/03/21 19:11:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1588,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:11:53.878636713Z"} +2026/03/21 19:11:58 [transform_engine] {"stage_name":"transform_engine","events_processed":132,"events_dropped":0,"avg_latency_ms":832.0181146943524,"throughput_eps":0,"last_update":"2026-03-21T19:11:53.965912835Z"} +2026/03/21 19:11:58 [detection_layer] {"stage_name":"detection_layer","events_processed":132,"events_dropped":0,"avg_latency_ms":15.458851556928938,"throughput_eps":0,"last_update":"2026-03-21T19:11:53.96585806Z"} +2026/03/21 19:11:58 ───────────────────────────────────────────────── +2026/03/21 19:12:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:12:03 [log_collector] {"stage_name":"log_collector","events_processed":7288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1457.6,"last_update":"2026-03-21T19:11:58.869409066Z"} +2026/03/21 19:12:03 [metric_collector] {"stage_name":"metric_collector","events_processed":3969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":793.8,"last_update":"2026-03-21T19:11:58.869794624Z"} +2026/03/21 19:12:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:11:58.875373226Z"} +2026/03/21 19:12:03 [transform_engine] {"stage_name":"transform_engine","events_processed":132,"events_dropped":0,"avg_latency_ms":832.0181146943524,"throughput_eps":0,"last_update":"2026-03-21T19:11:58.96554854Z"} +2026/03/21 19:12:03 [detection_layer] {"stage_name":"detection_layer","events_processed":132,"events_dropped":0,"avg_latency_ms":15.458851556928938,"throughput_eps":0,"last_update":"2026-03-21T19:11:58.9655321Z"} +2026/03/21 19:12:03 ───────────────────────────────────────────────── +2026/03/21 19:12:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:12:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1592,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:12:03.875573301Z"} +2026/03/21 19:12:08 [transform_engine] {"stage_name":"transform_engine","events_processed":132,"events_dropped":0,"avg_latency_ms":832.0181146943524,"throughput_eps":0,"last_update":"2026-03-21T19:12:03.965112107Z"} +2026/03/21 19:12:08 [detection_layer] {"stage_name":"detection_layer","events_processed":132,"events_dropped":0,"avg_latency_ms":15.458851556928938,"throughput_eps":0,"last_update":"2026-03-21T19:12:03.966194189Z"} +2026/03/21 19:12:08 [log_collector] {"stage_name":"log_collector","events_processed":7288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1457.6,"last_update":"2026-03-21T19:12:03.869403527Z"} +2026/03/21 19:12:08 [metric_collector] {"stage_name":"metric_collector","events_processed":3974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":794.8,"last_update":"2026-03-21T19:12:03.869761543Z"} +2026/03/21 19:12:08 ───────────────────────────────────────────────── +2026/03/21 19:12:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:12:13 [metric_collector] {"stage_name":"metric_collector","events_processed":3979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":795.8,"last_update":"2026-03-21T19:12:08.87054888Z"} +2026/03/21 19:12:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:12:08.881405419Z"} +2026/03/21 19:12:13 [transform_engine] {"stage_name":"transform_engine","events_processed":132,"events_dropped":0,"avg_latency_ms":832.0181146943524,"throughput_eps":0,"last_update":"2026-03-21T19:12:08.965471005Z"} +2026/03/21 19:12:13 [detection_layer] {"stage_name":"detection_layer","events_processed":132,"events_dropped":0,"avg_latency_ms":15.458851556928938,"throughput_eps":0,"last_update":"2026-03-21T19:12:08.9654893Z"} +2026/03/21 19:12:13 [log_collector] {"stage_name":"log_collector","events_processed":7298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1459.6,"last_update":"2026-03-21T19:12:08.87021427Z"} +2026/03/21 19:12:13 ───────────────────────────────────────────────── +2026/03/21 19:12:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:12:18 [transform_engine] {"stage_name":"transform_engine","events_processed":132,"events_dropped":0,"avg_latency_ms":832.0181146943524,"throughput_eps":0,"last_update":"2026-03-21T19:12:13.965142797Z"} +2026/03/21 19:12:18 [detection_layer] {"stage_name":"detection_layer","events_processed":132,"events_dropped":0,"avg_latency_ms":15.458851556928938,"throughput_eps":0,"last_update":"2026-03-21T19:12:13.96631988Z"} +2026/03/21 19:12:18 [log_collector] {"stage_name":"log_collector","events_processed":7315,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1463,"last_update":"2026-03-21T19:12:18.869709008Z"} +2026/03/21 19:12:18 [metric_collector] {"stage_name":"metric_collector","events_processed":3984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":796.8,"last_update":"2026-03-21T19:12:13.870620988Z"} +2026/03/21 19:12:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:12:13.876927274Z"} +2026/03/21 19:12:18 ───────────────────────────────────────────────── +2026/03/21 19:12:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:12:23 [log_collector] {"stage_name":"log_collector","events_processed":7315,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1463,"last_update":"2026-03-21T19:12:18.869709008Z"} +2026/03/21 19:12:23 [metric_collector] {"stage_name":"metric_collector","events_processed":3989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":797.8,"last_update":"2026-03-21T19:12:18.870124955Z"} +2026/03/21 19:12:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:12:18.87790381Z"} +2026/03/21 19:12:23 [transform_engine] {"stage_name":"transform_engine","events_processed":133,"events_dropped":0,"avg_latency_ms":687.970713155482,"throughput_eps":0,"last_update":"2026-03-21T19:12:19.077998608Z"} +2026/03/21 19:12:23 [detection_layer] {"stage_name":"detection_layer","events_processed":132,"events_dropped":0,"avg_latency_ms":15.458851556928938,"throughput_eps":0,"last_update":"2026-03-21T19:12:18.966102621Z"} +2026/03/21 19:12:23 ───────────────────────────────────────────────── +2026/03/21 19:12:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:12:28 [transform_engine] {"stage_name":"transform_engine","events_processed":133,"events_dropped":0,"avg_latency_ms":687.970713155482,"throughput_eps":0,"last_update":"2026-03-21T19:12:23.965790518Z"} +2026/03/21 19:12:28 [detection_layer] {"stage_name":"detection_layer","events_processed":133,"events_dropped":0,"avg_latency_ms":15.80923464554315,"throughput_eps":0,"last_update":"2026-03-21T19:12:23.965892022Z"} +2026/03/21 19:12:28 [log_collector] {"stage_name":"log_collector","events_processed":7315,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1463,"last_update":"2026-03-21T19:12:28.870297671Z"} +2026/03/21 19:12:28 [metric_collector] {"stage_name":"metric_collector","events_processed":3994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":798.8,"last_update":"2026-03-21T19:12:23.870477844Z"} +2026/03/21 19:12:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:12:23.879680175Z"} +2026/03/21 19:12:28 ───────────────────────────────────────────────── +2026/03/21 19:12:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:12:33 [metric_collector] {"stage_name":"metric_collector","events_processed":3999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":799.8,"last_update":"2026-03-21T19:12:28.870697216Z"} +2026/03/21 19:12:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1602,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:12:28.8801463Z"} +2026/03/21 19:12:33 [transform_engine] {"stage_name":"transform_engine","events_processed":133,"events_dropped":0,"avg_latency_ms":687.970713155482,"throughput_eps":0,"last_update":"2026-03-21T19:12:28.965364544Z"} +2026/03/21 19:12:33 [detection_layer] {"stage_name":"detection_layer","events_processed":133,"events_dropped":0,"avg_latency_ms":15.80923464554315,"throughput_eps":0,"last_update":"2026-03-21T19:12:28.965454236Z"} +2026/03/21 19:12:33 [log_collector] {"stage_name":"log_collector","events_processed":7315,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1463,"last_update":"2026-03-21T19:12:28.870297671Z"} +2026/03/21 19:12:33 ───────────────────────────────────────────────── +2026/03/21 19:12:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:12:38 [log_collector] {"stage_name":"log_collector","events_processed":7315,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1463,"last_update":"2026-03-21T19:12:33.86942038Z"} +2026/03/21 19:12:38 [metric_collector] {"stage_name":"metric_collector","events_processed":4004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":800.8,"last_update":"2026-03-21T19:12:33.869876123Z"} +2026/03/21 19:12:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:12:33.879165692Z"} +2026/03/21 19:12:38 [transform_engine] {"stage_name":"transform_engine","events_processed":133,"events_dropped":0,"avg_latency_ms":687.970713155482,"throughput_eps":0,"last_update":"2026-03-21T19:12:33.965369823Z"} +2026/03/21 19:12:38 [detection_layer] {"stage_name":"detection_layer","events_processed":133,"events_dropped":0,"avg_latency_ms":15.80923464554315,"throughput_eps":0,"last_update":"2026-03-21T19:12:33.965405271Z"} +2026/03/21 19:12:38 ───────────────────────────────────────────────── +2026/03/21 19:12:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:12:43 [metric_collector] {"stage_name":"metric_collector","events_processed":4009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":801.8,"last_update":"2026-03-21T19:12:38.869833909Z"} +2026/03/21 19:12:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:12:38.878125067Z"} +2026/03/21 19:12:43 [transform_engine] {"stage_name":"transform_engine","events_processed":133,"events_dropped":0,"avg_latency_ms":687.970713155482,"throughput_eps":0,"last_update":"2026-03-21T19:12:38.965463721Z"} +2026/03/21 19:12:43 [detection_layer] {"stage_name":"detection_layer","events_processed":133,"events_dropped":0,"avg_latency_ms":15.80923464554315,"throughput_eps":0,"last_update":"2026-03-21T19:12:38.965485252Z"} +2026/03/21 19:12:43 [log_collector] {"stage_name":"log_collector","events_processed":7315,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1463,"last_update":"2026-03-21T19:12:38.869464653Z"} +2026/03/21 19:12:43 ───────────────────────────────────────────────── +2026/03/21 19:12:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:12:48 [log_collector] {"stage_name":"log_collector","events_processed":7315,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1463,"last_update":"2026-03-21T19:12:43.869640131Z"} +2026/03/21 19:12:48 [metric_collector] {"stage_name":"metric_collector","events_processed":4014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":802.8,"last_update":"2026-03-21T19:12:43.87016678Z"} +2026/03/21 19:12:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:12:43.878998892Z"} +2026/03/21 19:12:48 [transform_engine] {"stage_name":"transform_engine","events_processed":133,"events_dropped":0,"avg_latency_ms":687.970713155482,"throughput_eps":0,"last_update":"2026-03-21T19:12:43.96520534Z"} +2026/03/21 19:12:48 [detection_layer] {"stage_name":"detection_layer","events_processed":133,"events_dropped":0,"avg_latency_ms":15.80923464554315,"throughput_eps":0,"last_update":"2026-03-21T19:12:43.965320289Z"} +2026/03/21 19:12:48 ───────────────────────────────────────────────── +2026/03/21 19:12:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:12:53 [detection_layer] {"stage_name":"detection_layer","events_processed":133,"events_dropped":0,"avg_latency_ms":15.80923464554315,"throughput_eps":0,"last_update":"2026-03-21T19:12:48.96577918Z"} +2026/03/21 19:12:53 [log_collector] {"stage_name":"log_collector","events_processed":7315,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1463,"last_update":"2026-03-21T19:12:48.86967558Z"} +2026/03/21 19:12:53 [metric_collector] {"stage_name":"metric_collector","events_processed":4019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":803.8,"last_update":"2026-03-21T19:12:48.870080916Z"} +2026/03/21 19:12:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:12:48.878145931Z"} +2026/03/21 19:12:53 [transform_engine] {"stage_name":"transform_engine","events_processed":133,"events_dropped":0,"avg_latency_ms":687.970713155482,"throughput_eps":0,"last_update":"2026-03-21T19:12:48.965478775Z"} +2026/03/21 19:12:53 ───────────────────────────────────────────────── +2026/03/21 19:12:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:12:58 [log_collector] {"stage_name":"log_collector","events_processed":7315,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1463,"last_update":"2026-03-21T19:12:58.869945228Z"} +2026/03/21 19:12:58 [metric_collector] {"stage_name":"metric_collector","events_processed":4024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":804.8,"last_update":"2026-03-21T19:12:53.870503003Z"} +2026/03/21 19:12:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:12:53.878593285Z"} +2026/03/21 19:12:58 [transform_engine] {"stage_name":"transform_engine","events_processed":134,"events_dropped":0,"avg_latency_ms":564.6579479243857,"throughput_eps":0,"last_update":"2026-03-21T19:12:53.965874541Z"} +2026/03/21 19:12:58 [detection_layer] {"stage_name":"detection_layer","events_processed":134,"events_dropped":0,"avg_latency_ms":16.76324311643452,"throughput_eps":0,"last_update":"2026-03-21T19:12:53.965915869Z"} +2026/03/21 19:12:58 ───────────────────────────────────────────────── +2026/03/21 19:13:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:13:03 [metric_collector] {"stage_name":"metric_collector","events_processed":4029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":805.8,"last_update":"2026-03-21T19:12:58.870535799Z"} +2026/03/21 19:13:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:12:58.879307246Z"} +2026/03/21 19:13:03 [transform_engine] {"stage_name":"transform_engine","events_processed":134,"events_dropped":0,"avg_latency_ms":564.6579479243857,"throughput_eps":0,"last_update":"2026-03-21T19:12:58.965639534Z"} +2026/03/21 19:13:03 [detection_layer] {"stage_name":"detection_layer","events_processed":134,"events_dropped":0,"avg_latency_ms":16.76324311643452,"throughput_eps":0,"last_update":"2026-03-21T19:12:58.965664021Z"} +2026/03/21 19:13:03 [log_collector] {"stage_name":"log_collector","events_processed":7315,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1463,"last_update":"2026-03-21T19:13:03.869865506Z"} +2026/03/21 19:13:03 ───────────────────────────────────────────────── +2026/03/21 19:13:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:13:08 [log_collector] {"stage_name":"log_collector","events_processed":7315,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1463,"last_update":"2026-03-21T19:13:08.869432423Z"} +2026/03/21 19:13:08 [metric_collector] {"stage_name":"metric_collector","events_processed":4034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":806.8,"last_update":"2026-03-21T19:13:03.870312722Z"} +2026/03/21 19:13:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:13:03.879790521Z"} +2026/03/21 19:13:08 [transform_engine] {"stage_name":"transform_engine","events_processed":134,"events_dropped":0,"avg_latency_ms":564.6579479243857,"throughput_eps":0,"last_update":"2026-03-21T19:13:03.966076673Z"} +2026/03/21 19:13:08 [detection_layer] {"stage_name":"detection_layer","events_processed":134,"events_dropped":0,"avg_latency_ms":16.76324311643452,"throughput_eps":0,"last_update":"2026-03-21T19:13:03.966188106Z"} +2026/03/21 19:13:08 ───────────────────────────────────────────────── +2026/03/21 19:13:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:13:13 [metric_collector] {"stage_name":"metric_collector","events_processed":4039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":807.8,"last_update":"2026-03-21T19:13:08.869669497Z"} +2026/03/21 19:13:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:13:08.879503148Z"} +2026/03/21 19:13:13 [transform_engine] {"stage_name":"transform_engine","events_processed":134,"events_dropped":0,"avg_latency_ms":564.6579479243857,"throughput_eps":0,"last_update":"2026-03-21T19:13:08.965822803Z"} +2026/03/21 19:13:13 [detection_layer] {"stage_name":"detection_layer","events_processed":134,"events_dropped":0,"avg_latency_ms":16.76324311643452,"throughput_eps":0,"last_update":"2026-03-21T19:13:08.965961037Z"} +2026/03/21 19:13:13 [log_collector] {"stage_name":"log_collector","events_processed":7315,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1463,"last_update":"2026-03-21T19:13:13.869412485Z"} +2026/03/21 19:13:13 ───────────────────────────────────────────────── +2026/03/21 19:13:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:13:18 [transform_engine] {"stage_name":"transform_engine","events_processed":134,"events_dropped":0,"avg_latency_ms":564.6579479243857,"throughput_eps":0,"last_update":"2026-03-21T19:13:13.96550248Z"} +2026/03/21 19:13:18 [detection_layer] {"stage_name":"detection_layer","events_processed":134,"events_dropped":0,"avg_latency_ms":16.76324311643452,"throughput_eps":0,"last_update":"2026-03-21T19:13:13.965525023Z"} +2026/03/21 19:13:18 [log_collector] {"stage_name":"log_collector","events_processed":7315,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1463,"last_update":"2026-03-21T19:13:13.869412485Z"} +2026/03/21 19:13:18 [metric_collector] {"stage_name":"metric_collector","events_processed":4044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":808.8,"last_update":"2026-03-21T19:13:13.869653756Z"} +2026/03/21 19:13:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1620,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:13:13.878255679Z"} +2026/03/21 19:13:18 ───────────────────────────────────────────────── +2026/03/21 19:13:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:13:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1622,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:13:18.878529382Z"} +2026/03/21 19:13:23 [transform_engine] {"stage_name":"transform_engine","events_processed":135,"events_dropped":0,"avg_latency_ms":465.7807635395086,"throughput_eps":0,"last_update":"2026-03-21T19:13:19.036070692Z"} +2026/03/21 19:13:23 [detection_layer] {"stage_name":"detection_layer","events_processed":134,"events_dropped":0,"avg_latency_ms":16.76324311643452,"throughput_eps":0,"last_update":"2026-03-21T19:13:18.965812512Z"} +2026/03/21 19:13:23 [log_collector] {"stage_name":"log_collector","events_processed":7315,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1463,"last_update":"2026-03-21T19:13:18.869846455Z"} +2026/03/21 19:13:23 [metric_collector] {"stage_name":"metric_collector","events_processed":4049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":809.8,"last_update":"2026-03-21T19:13:18.86964517Z"} +2026/03/21 19:13:23 ───────────────────────────────────────────────── +2026/03/21 19:13:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:13:28 [transform_engine] {"stage_name":"transform_engine","events_processed":135,"events_dropped":0,"avg_latency_ms":465.7807635395086,"throughput_eps":0,"last_update":"2026-03-21T19:13:23.965926004Z"} +2026/03/21 19:13:28 [detection_layer] {"stage_name":"detection_layer","events_processed":135,"events_dropped":0,"avg_latency_ms":17.338965093147618,"throughput_eps":0,"last_update":"2026-03-21T19:13:23.966060301Z"} +2026/03/21 19:13:28 [log_collector] {"stage_name":"log_collector","events_processed":7315,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1463,"last_update":"2026-03-21T19:13:23.869754984Z"} +2026/03/21 19:13:28 [metric_collector] {"stage_name":"metric_collector","events_processed":4054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":810.8,"last_update":"2026-03-21T19:13:23.869646526Z"} +2026/03/21 19:13:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:13:23.878592367Z"} +2026/03/21 19:13:28 ───────────────────────────────────────────────── +Saved state: 12 clusters, 7316 messages, reason: none +2026/03/21 19:13:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:13:33 [log_collector] {"stage_name":"log_collector","events_processed":7328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1465.6,"last_update":"2026-03-21T19:13:33.870138777Z"} +2026/03/21 19:13:33 [metric_collector] {"stage_name":"metric_collector","events_processed":4059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":811.8,"last_update":"2026-03-21T19:13:28.870677642Z"} +2026/03/21 19:13:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:13:28.878734761Z"} +2026/03/21 19:13:33 [transform_engine] {"stage_name":"transform_engine","events_processed":135,"events_dropped":0,"avg_latency_ms":465.7807635395086,"throughput_eps":0,"last_update":"2026-03-21T19:13:28.966012903Z"} +2026/03/21 19:13:33 [detection_layer] {"stage_name":"detection_layer","events_processed":135,"events_dropped":0,"avg_latency_ms":17.338965093147618,"throughput_eps":0,"last_update":"2026-03-21T19:13:28.965989648Z"} +2026/03/21 19:13:33 ───────────────────────────────────────────────── +2026/03/21 19:13:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:13:38 [log_collector] {"stage_name":"log_collector","events_processed":7328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1465.6,"last_update":"2026-03-21T19:13:33.870138777Z"} +2026/03/21 19:13:38 [metric_collector] {"stage_name":"metric_collector","events_processed":4064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":812.8,"last_update":"2026-03-21T19:13:33.870463408Z"} +2026/03/21 19:13:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:13:33.879004815Z"} +2026/03/21 19:13:38 [transform_engine] {"stage_name":"transform_engine","events_processed":135,"events_dropped":0,"avg_latency_ms":465.7807635395086,"throughput_eps":0,"last_update":"2026-03-21T19:13:33.965205232Z"} +2026/03/21 19:13:38 [detection_layer] {"stage_name":"detection_layer","events_processed":135,"events_dropped":0,"avg_latency_ms":17.338965093147618,"throughput_eps":0,"last_update":"2026-03-21T19:13:33.965278262Z"} +2026/03/21 19:13:38 ───────────────────────────────────────────────── +2026/03/21 19:13:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:13:43 [log_collector] {"stage_name":"log_collector","events_processed":7329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1465.8,"last_update":"2026-03-21T19:13:38.869517188Z"} +2026/03/21 19:13:43 [metric_collector] {"stage_name":"metric_collector","events_processed":4069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":813.8,"last_update":"2026-03-21T19:13:38.869780492Z"} +2026/03/21 19:13:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:13:38.878290669Z"} +2026/03/21 19:13:43 [transform_engine] {"stage_name":"transform_engine","events_processed":135,"events_dropped":0,"avg_latency_ms":465.7807635395086,"throughput_eps":0,"last_update":"2026-03-21T19:13:38.965416069Z"} +2026/03/21 19:13:43 [detection_layer] {"stage_name":"detection_layer","events_processed":135,"events_dropped":0,"avg_latency_ms":17.338965093147618,"throughput_eps":0,"last_update":"2026-03-21T19:13:38.965399206Z"} +2026/03/21 19:13:43 ───────────────────────────────────────────────── +2026/03/21 19:13:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:13:48 [transform_engine] {"stage_name":"transform_engine","events_processed":135,"events_dropped":0,"avg_latency_ms":465.7807635395086,"throughput_eps":0,"last_update":"2026-03-21T19:13:43.96567998Z"} +2026/03/21 19:13:48 [detection_layer] {"stage_name":"detection_layer","events_processed":135,"events_dropped":0,"avg_latency_ms":17.338965093147618,"throughput_eps":0,"last_update":"2026-03-21T19:13:43.965570891Z"} +2026/03/21 19:13:48 [log_collector] {"stage_name":"log_collector","events_processed":7329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1465.8,"last_update":"2026-03-21T19:13:48.869465296Z"} +2026/03/21 19:13:48 [metric_collector] {"stage_name":"metric_collector","events_processed":4074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":814.8,"last_update":"2026-03-21T19:13:43.870482963Z"} +2026/03/21 19:13:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1632,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:13:43.880366129Z"} +2026/03/21 19:13:48 ───────────────────────────────────────────────── +2026/03/21 19:13:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:13:53 [log_collector] {"stage_name":"log_collector","events_processed":7329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1465.8,"last_update":"2026-03-21T19:13:53.869628504Z"} +2026/03/21 19:13:53 [metric_collector] {"stage_name":"metric_collector","events_processed":4079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":815.8,"last_update":"2026-03-21T19:13:48.869920608Z"} +2026/03/21 19:13:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:13:48.878343838Z"} +2026/03/21 19:13:53 [transform_engine] {"stage_name":"transform_engine","events_processed":136,"events_dropped":0,"avg_latency_ms":394.8575236316069,"throughput_eps":0,"last_update":"2026-03-21T19:13:49.076724387Z"} +2026/03/21 19:13:53 [detection_layer] {"stage_name":"detection_layer","events_processed":135,"events_dropped":0,"avg_latency_ms":17.338965093147618,"throughput_eps":0,"last_update":"2026-03-21T19:13:48.965523472Z"} +2026/03/21 19:13:53 ───────────────────────────────────────────────── +2026/03/21 19:13:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:13:58 [log_collector] {"stage_name":"log_collector","events_processed":7329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1465.8,"last_update":"2026-03-21T19:13:58.869858114Z"} +2026/03/21 19:13:58 [metric_collector] {"stage_name":"metric_collector","events_processed":4084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":816.8,"last_update":"2026-03-21T19:13:53.870031686Z"} +2026/03/21 19:13:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:13:53.878849442Z"} +2026/03/21 19:13:58 [transform_engine] {"stage_name":"transform_engine","events_processed":136,"events_dropped":0,"avg_latency_ms":394.8575236316069,"throughput_eps":0,"last_update":"2026-03-21T19:13:53.966128907Z"} +2026/03/21 19:13:58 [detection_layer] {"stage_name":"detection_layer","events_processed":136,"events_dropped":0,"avg_latency_ms":17.508411074518094,"throughput_eps":0,"last_update":"2026-03-21T19:13:53.966122265Z"} +2026/03/21 19:13:58 ───────────────────────────────────────────────── +2026/03/21 19:14:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:14:03 [detection_layer] {"stage_name":"detection_layer","events_processed":136,"events_dropped":0,"avg_latency_ms":17.508411074518094,"throughput_eps":0,"last_update":"2026-03-21T19:13:58.965443085Z"} +2026/03/21 19:14:03 [log_collector] {"stage_name":"log_collector","events_processed":7329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1465.8,"last_update":"2026-03-21T19:13:58.869858114Z"} +2026/03/21 19:14:03 [metric_collector] {"stage_name":"metric_collector","events_processed":4089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":817.8,"last_update":"2026-03-21T19:13:58.870225688Z"} +2026/03/21 19:14:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:13:58.879103549Z"} +2026/03/21 19:14:03 [transform_engine] {"stage_name":"transform_engine","events_processed":136,"events_dropped":0,"avg_latency_ms":394.8575236316069,"throughput_eps":0,"last_update":"2026-03-21T19:13:58.965455498Z"} +2026/03/21 19:14:03 ───────────────────────────────────────────────── +2026/03/21 19:14:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:14:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1640,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:14:03.877662375Z"} +2026/03/21 19:14:08 [transform_engine] {"stage_name":"transform_engine","events_processed":136,"events_dropped":0,"avg_latency_ms":394.8575236316069,"throughput_eps":0,"last_update":"2026-03-21T19:14:03.965913041Z"} +2026/03/21 19:14:08 [detection_layer] {"stage_name":"detection_layer","events_processed":136,"events_dropped":0,"avg_latency_ms":17.508411074518094,"throughput_eps":0,"last_update":"2026-03-21T19:14:03.965903623Z"} +2026/03/21 19:14:08 [log_collector] {"stage_name":"log_collector","events_processed":7329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1465.8,"last_update":"2026-03-21T19:14:03.869624132Z"} +2026/03/21 19:14:08 [metric_collector] {"stage_name":"metric_collector","events_processed":4094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":818.8,"last_update":"2026-03-21T19:14:03.870017976Z"} +2026/03/21 19:14:08 ───────────────────────────────────────────────── +2026/03/21 19:14:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:14:13 [log_collector] {"stage_name":"log_collector","events_processed":7329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1465.8,"last_update":"2026-03-21T19:14:13.869560064Z"} +2026/03/21 19:14:13 [metric_collector] {"stage_name":"metric_collector","events_processed":4099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":819.8,"last_update":"2026-03-21T19:14:08.869887798Z"} +2026/03/21 19:14:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:14:08.878278306Z"} +2026/03/21 19:14:13 [transform_engine] {"stage_name":"transform_engine","events_processed":136,"events_dropped":0,"avg_latency_ms":394.8575236316069,"throughput_eps":0,"last_update":"2026-03-21T19:14:08.965485433Z"} +2026/03/21 19:14:13 [detection_layer] {"stage_name":"detection_layer","events_processed":136,"events_dropped":0,"avg_latency_ms":17.508411074518094,"throughput_eps":0,"last_update":"2026-03-21T19:14:08.965475834Z"} +2026/03/21 19:14:13 ───────────────────────────────────────────────── +2026/03/21 19:14:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:14:18 [transform_engine] {"stage_name":"transform_engine","events_processed":136,"events_dropped":0,"avg_latency_ms":394.8575236316069,"throughput_eps":0,"last_update":"2026-03-21T19:14:13.965304902Z"} +2026/03/21 19:14:18 [detection_layer] {"stage_name":"detection_layer","events_processed":136,"events_dropped":0,"avg_latency_ms":17.508411074518094,"throughput_eps":0,"last_update":"2026-03-21T19:14:13.965498332Z"} +2026/03/21 19:14:18 [log_collector] {"stage_name":"log_collector","events_processed":7329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1465.8,"last_update":"2026-03-21T19:14:13.869560064Z"} +2026/03/21 19:14:18 [metric_collector] {"stage_name":"metric_collector","events_processed":4104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":820.8,"last_update":"2026-03-21T19:14:13.870149562Z"} +2026/03/21 19:14:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:14:13.878131037Z"} +2026/03/21 19:14:18 ───────────────────────────────────────────────── +2026/03/21 19:14:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:14:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1646,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:14:18.879585029Z"} +2026/03/21 19:14:23 [transform_engine] {"stage_name":"transform_engine","events_processed":136,"events_dropped":0,"avg_latency_ms":394.8575236316069,"throughput_eps":0,"last_update":"2026-03-21T19:14:18.965850755Z"} +2026/03/21 19:14:23 [detection_layer] {"stage_name":"detection_layer","events_processed":136,"events_dropped":0,"avg_latency_ms":17.508411074518094,"throughput_eps":0,"last_update":"2026-03-21T19:14:18.965877876Z"} +2026/03/21 19:14:23 [log_collector] {"stage_name":"log_collector","events_processed":7329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1465.8,"last_update":"2026-03-21T19:14:18.869440933Z"} +2026/03/21 19:14:23 [metric_collector] {"stage_name":"metric_collector","events_processed":4109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":821.8,"last_update":"2026-03-21T19:14:18.869784971Z"} +2026/03/21 19:14:23 ───────────────────────────────────────────────── +2026/03/21 19:14:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:14:28 [metric_collector] {"stage_name":"metric_collector","events_processed":4114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":822.8,"last_update":"2026-03-21T19:14:23.869778021Z"} +2026/03/21 19:14:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:14:23.878528498Z"} +2026/03/21 19:14:28 [transform_engine] {"stage_name":"transform_engine","events_processed":137,"events_dropped":0,"avg_latency_ms":332.49658770528555,"throughput_eps":0,"last_update":"2026-03-21T19:14:23.965786143Z"} +2026/03/21 19:14:28 [detection_layer] {"stage_name":"detection_layer","events_processed":137,"events_dropped":0,"avg_latency_ms":18.030341859614477,"throughput_eps":0,"last_update":"2026-03-21T19:14:23.965838343Z"} +2026/03/21 19:14:28 [log_collector] {"stage_name":"log_collector","events_processed":7329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1465.8,"last_update":"2026-03-21T19:14:23.869588538Z"} +2026/03/21 19:14:28 ───────────────────────────────────────────────── +2026/03/21 19:14:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:14:33 [metric_collector] {"stage_name":"metric_collector","events_processed":4119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":823.8,"last_update":"2026-03-21T19:14:28.870444416Z"} +2026/03/21 19:14:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1650,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:14:28.878774748Z"} +2026/03/21 19:14:33 [transform_engine] {"stage_name":"transform_engine","events_processed":137,"events_dropped":0,"avg_latency_ms":332.49658770528555,"throughput_eps":0,"last_update":"2026-03-21T19:14:28.965935597Z"} +2026/03/21 19:14:33 [detection_layer] {"stage_name":"detection_layer","events_processed":137,"events_dropped":0,"avg_latency_ms":18.030341859614477,"throughput_eps":0,"last_update":"2026-03-21T19:14:28.966052151Z"} +2026/03/21 19:14:33 [log_collector] {"stage_name":"log_collector","events_processed":7329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1465.8,"last_update":"2026-03-21T19:14:33.870434607Z"} +2026/03/21 19:14:33 ───────────────────────────────────────────────── +Saved state: 12 clusters, 7330 messages, reason: none +2026/03/21 19:14:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:14:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:14:33.879408392Z"} +2026/03/21 19:14:38 [transform_engine] {"stage_name":"transform_engine","events_processed":137,"events_dropped":0,"avg_latency_ms":332.49658770528555,"throughput_eps":0,"last_update":"2026-03-21T19:14:33.965793828Z"} +2026/03/21 19:14:38 [detection_layer] {"stage_name":"detection_layer","events_processed":137,"events_dropped":0,"avg_latency_ms":18.030341859614477,"throughput_eps":0,"last_update":"2026-03-21T19:14:33.965738171Z"} +2026/03/21 19:14:38 [log_collector] {"stage_name":"log_collector","events_processed":7329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1465.8,"last_update":"2026-03-21T19:14:33.870434607Z"} +2026/03/21 19:14:38 [metric_collector] {"stage_name":"metric_collector","events_processed":4124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":824.8,"last_update":"2026-03-21T19:14:33.870751834Z"} +2026/03/21 19:14:38 ───────────────────────────────────────────────── +2026/03/21 19:14:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:14:43 [metric_collector] {"stage_name":"metric_collector","events_processed":4129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":825.8,"last_update":"2026-03-21T19:14:38.870598656Z"} +2026/03/21 19:14:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:14:38.882468616Z"} +2026/03/21 19:14:43 [transform_engine] {"stage_name":"transform_engine","events_processed":137,"events_dropped":0,"avg_latency_ms":332.49658770528555,"throughput_eps":0,"last_update":"2026-03-21T19:14:38.965633645Z"} +2026/03/21 19:14:43 [detection_layer] {"stage_name":"detection_layer","events_processed":137,"events_dropped":0,"avg_latency_ms":18.030341859614477,"throughput_eps":0,"last_update":"2026-03-21T19:14:38.965684232Z"} +2026/03/21 19:14:43 [log_collector] {"stage_name":"log_collector","events_processed":7334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1466.8,"last_update":"2026-03-21T19:14:38.869717188Z"} +2026/03/21 19:14:43 ───────────────────────────────────────────────── +2026/03/21 19:14:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:14:48 [log_collector] {"stage_name":"log_collector","events_processed":7334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1466.8,"last_update":"2026-03-21T19:14:43.86945306Z"} +2026/03/21 19:14:48 [metric_collector] {"stage_name":"metric_collector","events_processed":4139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":827.8,"last_update":"2026-03-21T19:14:48.869620961Z"} +2026/03/21 19:14:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:14:43.876248564Z"} +2026/03/21 19:14:48 [transform_engine] {"stage_name":"transform_engine","events_processed":137,"events_dropped":0,"avg_latency_ms":332.49658770528555,"throughput_eps":0,"last_update":"2026-03-21T19:14:43.965427589Z"} +2026/03/21 19:14:48 [detection_layer] {"stage_name":"detection_layer","events_processed":137,"events_dropped":0,"avg_latency_ms":18.030341859614477,"throughput_eps":0,"last_update":"2026-03-21T19:14:43.965536848Z"} +2026/03/21 19:14:48 ───────────────────────────────────────────────── +2026/03/21 19:14:49 [ANOMALY] time=2026-03-21T19:14:49Z score=0.8774 method=SEAD details=MAD!:w=0.26,s=0.98 RRCF-fast:w=0.18,s=0.85 RRCF-mid!:w=0.18,s=0.86 RRCF-slow!:w=0.17,s=0.93 COPOD!:w=0.22,s=0.75 +2026/03/21 19:14:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:14:53 [log_collector] {"stage_name":"log_collector","events_processed":7334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1466.8,"last_update":"2026-03-21T19:14:48.869631081Z"} +2026/03/21 19:14:53 [metric_collector] {"stage_name":"metric_collector","events_processed":4139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":827.8,"last_update":"2026-03-21T19:14:48.869620961Z"} +2026/03/21 19:14:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:14:48.879237257Z"} +2026/03/21 19:14:53 [transform_engine] {"stage_name":"transform_engine","events_processed":137,"events_dropped":0,"avg_latency_ms":332.49658770528555,"throughput_eps":0,"last_update":"2026-03-21T19:14:48.96542803Z"} +2026/03/21 19:14:53 [detection_layer] {"stage_name":"detection_layer","events_processed":137,"events_dropped":0,"avg_latency_ms":18.030341859614477,"throughput_eps":0,"last_update":"2026-03-21T19:14:48.965433931Z"} +2026/03/21 19:14:53 ───────────────────────────────────────────────── +2026/03/21 19:14:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:14:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1660,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:14:53.876531851Z"} +2026/03/21 19:14:58 [transform_engine] {"stage_name":"transform_engine","events_processed":138,"events_dropped":0,"avg_latency_ms":422.1324999642285,"throughput_eps":0,"last_update":"2026-03-21T19:14:53.965717329Z"} +2026/03/21 19:14:58 [detection_layer] {"stage_name":"detection_layer","events_processed":138,"events_dropped":0,"avg_latency_ms":16.51247028769158,"throughput_eps":0,"last_update":"2026-03-21T19:14:53.965742838Z"} +2026/03/21 19:14:58 [log_collector] {"stage_name":"log_collector","events_processed":7334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1466.8,"last_update":"2026-03-21T19:14:53.869392699Z"} +2026/03/21 19:14:58 [metric_collector] {"stage_name":"metric_collector","events_processed":4144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":828.8,"last_update":"2026-03-21T19:14:53.869736808Z"} +2026/03/21 19:14:58 ───────────────────────────────────────────────── +2026/03/21 19:15:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:15:03 [log_collector] {"stage_name":"log_collector","events_processed":7334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1466.8,"last_update":"2026-03-21T19:14:58.869633497Z"} +2026/03/21 19:15:03 [metric_collector] {"stage_name":"metric_collector","events_processed":4149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":829.8,"last_update":"2026-03-21T19:14:58.869973448Z"} +2026/03/21 19:15:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1662,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:14:58.879163106Z"} +2026/03/21 19:15:03 [transform_engine] {"stage_name":"transform_engine","events_processed":138,"events_dropped":0,"avg_latency_ms":422.1324999642285,"throughput_eps":0,"last_update":"2026-03-21T19:14:58.965323031Z"} +2026/03/21 19:15:03 [detection_layer] {"stage_name":"detection_layer","events_processed":138,"events_dropped":0,"avg_latency_ms":16.51247028769158,"throughput_eps":0,"last_update":"2026-03-21T19:14:58.965340534Z"} +2026/03/21 19:15:03 ───────────────────────────────────────────────── +2026/03/21 19:15:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:15:08 [log_collector] {"stage_name":"log_collector","events_processed":7334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1466.8,"last_update":"2026-03-21T19:15:03.870249858Z"} +2026/03/21 19:15:08 [metric_collector] {"stage_name":"metric_collector","events_processed":4154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":830.8,"last_update":"2026-03-21T19:15:03.870496911Z"} +2026/03/21 19:15:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:15:03.877063586Z"} +2026/03/21 19:15:08 [transform_engine] {"stage_name":"transform_engine","events_processed":138,"events_dropped":0,"avg_latency_ms":422.1324999642285,"throughput_eps":0,"last_update":"2026-03-21T19:15:03.965237388Z"} +2026/03/21 19:15:08 [detection_layer] {"stage_name":"detection_layer","events_processed":138,"events_dropped":0,"avg_latency_ms":16.51247028769158,"throughput_eps":0,"last_update":"2026-03-21T19:15:03.96528551Z"} +2026/03/21 19:15:08 ───────────────────────────────────────────────── +2026/03/21 19:15:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:15:13 [log_collector] {"stage_name":"log_collector","events_processed":7334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1466.8,"last_update":"2026-03-21T19:15:08.870393507Z"} +2026/03/21 19:15:13 [metric_collector] {"stage_name":"metric_collector","events_processed":4164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":832.8,"last_update":"2026-03-21T19:15:13.870502421Z"} +2026/03/21 19:15:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:15:08.878756793Z"} +2026/03/21 19:15:13 [transform_engine] {"stage_name":"transform_engine","events_processed":138,"events_dropped":0,"avg_latency_ms":422.1324999642285,"throughput_eps":0,"last_update":"2026-03-21T19:15:08.965963643Z"} +2026/03/21 19:15:13 [detection_layer] {"stage_name":"detection_layer","events_processed":138,"events_dropped":0,"avg_latency_ms":16.51247028769158,"throughput_eps":0,"last_update":"2026-03-21T19:15:08.965987649Z"} +2026/03/21 19:15:13 ───────────────────────────────────────────────── +2026/03/21 19:15:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:15:18 [log_collector] {"stage_name":"log_collector","events_processed":7334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1466.8,"last_update":"2026-03-21T19:15:13.870521497Z"} +2026/03/21 19:15:18 [metric_collector] {"stage_name":"metric_collector","events_processed":4164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":832.8,"last_update":"2026-03-21T19:15:13.870502421Z"} +2026/03/21 19:15:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1668,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:15:13.875778584Z"} +2026/03/21 19:15:18 [transform_engine] {"stage_name":"transform_engine","events_processed":138,"events_dropped":0,"avg_latency_ms":422.1324999642285,"throughput_eps":0,"last_update":"2026-03-21T19:15:13.965977945Z"} +2026/03/21 19:15:18 [detection_layer] {"stage_name":"detection_layer","events_processed":138,"events_dropped":0,"avg_latency_ms":16.51247028769158,"throughput_eps":0,"last_update":"2026-03-21T19:15:13.966020296Z"} +2026/03/21 19:15:18 ───────────────────────────────────────────────── +2026/03/21 19:15:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:15:23 [metric_collector] {"stage_name":"metric_collector","events_processed":4169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":833.8,"last_update":"2026-03-21T19:15:18.870339307Z"} +2026/03/21 19:15:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1670,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:15:18.876395545Z"} +2026/03/21 19:15:23 [transform_engine] {"stage_name":"transform_engine","events_processed":139,"events_dropped":0,"avg_latency_ms":681.5288273713829,"throughput_eps":0,"last_update":"2026-03-21T19:15:20.684738413Z"} +2026/03/21 19:15:23 [detection_layer] {"stage_name":"detection_layer","events_processed":138,"events_dropped":0,"avg_latency_ms":16.51247028769158,"throughput_eps":0,"last_update":"2026-03-21T19:15:18.965596203Z"} +2026/03/21 19:15:23 [log_collector] {"stage_name":"log_collector","events_processed":7337,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1467.4,"last_update":"2026-03-21T19:15:18.869850521Z"} +2026/03/21 19:15:23 ───────────────────────────────────────────────── +2026/03/21 19:15:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:15:28 [log_collector] {"stage_name":"log_collector","events_processed":7345,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1469,"last_update":"2026-03-21T19:15:23.869782351Z"} +2026/03/21 19:15:28 [metric_collector] {"stage_name":"metric_collector","events_processed":4174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":834.8,"last_update":"2026-03-21T19:15:23.869951295Z"} +2026/03/21 19:15:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:15:23.878562906Z"} +2026/03/21 19:15:28 [transform_engine] {"stage_name":"transform_engine","events_processed":139,"events_dropped":0,"avg_latency_ms":681.5288273713829,"throughput_eps":0,"last_update":"2026-03-21T19:15:23.966149253Z"} +2026/03/21 19:15:28 [detection_layer] {"stage_name":"detection_layer","events_processed":139,"events_dropped":0,"avg_latency_ms":15.644570430153266,"throughput_eps":0,"last_update":"2026-03-21T19:15:23.965911036Z"} +2026/03/21 19:15:28 ───────────────────────────────────────────────── +2026/03/21 19:15:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:15:33 [log_collector] {"stage_name":"log_collector","events_processed":7462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1492.4,"last_update":"2026-03-21T19:15:28.870146522Z"} +2026/03/21 19:15:33 [metric_collector] {"stage_name":"metric_collector","events_processed":4179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":835.8,"last_update":"2026-03-21T19:15:28.870665896Z"} +2026/03/21 19:15:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:15:28.877192304Z"} +2026/03/21 19:15:33 [transform_engine] {"stage_name":"transform_engine","events_processed":139,"events_dropped":0,"avg_latency_ms":681.5288273713829,"throughput_eps":0,"last_update":"2026-03-21T19:15:28.965403118Z"} +2026/03/21 19:15:33 [detection_layer] {"stage_name":"detection_layer","events_processed":139,"events_dropped":0,"avg_latency_ms":15.644570430153266,"throughput_eps":0,"last_update":"2026-03-21T19:15:28.965478723Z"} +2026/03/21 19:15:33 ───────────────────────────────────────────────── +2026/03/21 19:15:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:15:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1676,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:15:33.876996385Z"} +2026/03/21 19:15:38 [transform_engine] {"stage_name":"transform_engine","events_processed":139,"events_dropped":0,"avg_latency_ms":681.5288273713829,"throughput_eps":0,"last_update":"2026-03-21T19:15:33.965950854Z"} +2026/03/21 19:15:38 [detection_layer] {"stage_name":"detection_layer","events_processed":139,"events_dropped":0,"avg_latency_ms":15.644570430153266,"throughput_eps":0,"last_update":"2026-03-21T19:15:33.966055845Z"} +2026/03/21 19:15:38 [log_collector] {"stage_name":"log_collector","events_processed":7674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1534.8,"last_update":"2026-03-21T19:15:33.870013974Z"} +2026/03/21 19:15:38 [metric_collector] {"stage_name":"metric_collector","events_processed":4184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":836.8,"last_update":"2026-03-21T19:15:33.870430341Z"} +2026/03/21 19:15:38 ───────────────────────────────────────────────── +2026/03/21 19:15:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:15:43 [detection_layer] {"stage_name":"detection_layer","events_processed":139,"events_dropped":0,"avg_latency_ms":15.644570430153266,"throughput_eps":0,"last_update":"2026-03-21T19:15:38.965520879Z"} +2026/03/21 19:15:43 [log_collector] {"stage_name":"log_collector","events_processed":7690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1538,"last_update":"2026-03-21T19:15:38.869708147Z"} +2026/03/21 19:15:43 [metric_collector] {"stage_name":"metric_collector","events_processed":4189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":837.8,"last_update":"2026-03-21T19:15:38.869920995Z"} +2026/03/21 19:15:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:15:38.878285643Z"} +2026/03/21 19:15:43 [transform_engine] {"stage_name":"transform_engine","events_processed":139,"events_dropped":0,"avg_latency_ms":681.5288273713829,"throughput_eps":0,"last_update":"2026-03-21T19:15:38.965174155Z"} +2026/03/21 19:15:43 ───────────────────────────────────────────────── +2026/03/21 19:15:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:15:48 [transform_engine] {"stage_name":"transform_engine","events_processed":139,"events_dropped":0,"avg_latency_ms":681.5288273713829,"throughput_eps":0,"last_update":"2026-03-21T19:15:43.965591674Z"} +2026/03/21 19:15:48 [detection_layer] {"stage_name":"detection_layer","events_processed":139,"events_dropped":0,"avg_latency_ms":15.644570430153266,"throughput_eps":0,"last_update":"2026-03-21T19:15:43.96563616Z"} +2026/03/21 19:15:48 [log_collector] {"stage_name":"log_collector","events_processed":7690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1538,"last_update":"2026-03-21T19:15:43.869725571Z"} +2026/03/21 19:15:48 [metric_collector] {"stage_name":"metric_collector","events_processed":4194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":838.8,"last_update":"2026-03-21T19:15:43.869708788Z"} +2026/03/21 19:15:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:15:43.878399801Z"} +2026/03/21 19:15:48 ───────────────────────────────────────────────── +2026/03/21 19:15:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:15:53 [log_collector] {"stage_name":"log_collector","events_processed":7690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1538,"last_update":"2026-03-21T19:15:48.87071076Z"} +2026/03/21 19:15:53 [metric_collector] {"stage_name":"metric_collector","events_processed":4199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":839.8,"last_update":"2026-03-21T19:15:48.870733243Z"} +2026/03/21 19:15:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:15:48.878670102Z"} +2026/03/21 19:15:53 [transform_engine] {"stage_name":"transform_engine","events_processed":140,"events_dropped":0,"avg_latency_ms":568.4643768971064,"throughput_eps":0,"last_update":"2026-03-21T19:15:49.082145409Z"} +2026/03/21 19:15:53 [detection_layer] {"stage_name":"detection_layer","events_processed":139,"events_dropped":0,"avg_latency_ms":15.644570430153266,"throughput_eps":0,"last_update":"2026-03-21T19:15:48.965892604Z"} +2026/03/21 19:15:53 ───────────────────────────────────────────────── +2026/03/21 19:15:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:15:58 [log_collector] {"stage_name":"log_collector","events_processed":7690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1538,"last_update":"2026-03-21T19:15:58.86940566Z"} +2026/03/21 19:15:58 [metric_collector] {"stage_name":"metric_collector","events_processed":4204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":840.8,"last_update":"2026-03-21T19:15:53.869746617Z"} +2026/03/21 19:15:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:15:53.878573652Z"} +2026/03/21 19:15:58 [transform_engine] {"stage_name":"transform_engine","events_processed":140,"events_dropped":0,"avg_latency_ms":568.4643768971064,"throughput_eps":0,"last_update":"2026-03-21T19:15:53.965853333Z"} +2026/03/21 19:15:58 [detection_layer] {"stage_name":"detection_layer","events_processed":140,"events_dropped":0,"avg_latency_ms":16.260469744122613,"throughput_eps":0,"last_update":"2026-03-21T19:15:53.965839867Z"} +2026/03/21 19:15:58 ───────────────────────────────────────────────── +2026/03/21 19:16:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:16:03 [metric_collector] {"stage_name":"metric_collector","events_processed":4209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":841.8,"last_update":"2026-03-21T19:15:58.870007333Z"} +2026/03/21 19:16:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:15:58.87877869Z"} +2026/03/21 19:16:03 [transform_engine] {"stage_name":"transform_engine","events_processed":140,"events_dropped":0,"avg_latency_ms":568.4643768971064,"throughput_eps":0,"last_update":"2026-03-21T19:15:58.966154876Z"} +2026/03/21 19:16:03 [detection_layer] {"stage_name":"detection_layer","events_processed":140,"events_dropped":0,"avg_latency_ms":16.260469744122613,"throughput_eps":0,"last_update":"2026-03-21T19:15:58.966144126Z"} +2026/03/21 19:16:03 [log_collector] {"stage_name":"log_collector","events_processed":7690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1538,"last_update":"2026-03-21T19:15:58.86940566Z"} +2026/03/21 19:16:03 ───────────────────────────────────────────────── +2026/03/21 19:16:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:16:08 [metric_collector] {"stage_name":"metric_collector","events_processed":4214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":842.8,"last_update":"2026-03-21T19:16:03.870209066Z"} +2026/03/21 19:16:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1688,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:16:03.878027619Z"} +2026/03/21 19:16:08 [transform_engine] {"stage_name":"transform_engine","events_processed":140,"events_dropped":0,"avg_latency_ms":568.4643768971064,"throughput_eps":0,"last_update":"2026-03-21T19:16:03.965142074Z"} +2026/03/21 19:16:08 [detection_layer] {"stage_name":"detection_layer","events_processed":140,"events_dropped":0,"avg_latency_ms":16.260469744122613,"throughput_eps":0,"last_update":"2026-03-21T19:16:03.966321393Z"} +2026/03/21 19:16:08 [log_collector] {"stage_name":"log_collector","events_processed":7690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1538,"last_update":"2026-03-21T19:16:03.869482284Z"} +2026/03/21 19:16:08 ───────────────────────────────────────────────── +2026/03/21 19:16:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:16:13 [detection_layer] {"stage_name":"detection_layer","events_processed":140,"events_dropped":0,"avg_latency_ms":16.260469744122613,"throughput_eps":0,"last_update":"2026-03-21T19:16:08.966196875Z"} +2026/03/21 19:16:13 [log_collector] {"stage_name":"log_collector","events_processed":7690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1538,"last_update":"2026-03-21T19:16:08.870159682Z"} +2026/03/21 19:16:13 [metric_collector] {"stage_name":"metric_collector","events_processed":4219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":843.8,"last_update":"2026-03-21T19:16:08.870543397Z"} +2026/03/21 19:16:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:16:08.878731597Z"} +2026/03/21 19:16:13 [transform_engine] {"stage_name":"transform_engine","events_processed":140,"events_dropped":0,"avg_latency_ms":568.4643768971064,"throughput_eps":0,"last_update":"2026-03-21T19:16:08.966212064Z"} +2026/03/21 19:16:13 ───────────────────────────────────────────────── +2026/03/21 19:16:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:16:18 [log_collector] {"stage_name":"log_collector","events_processed":7690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1538,"last_update":"2026-03-21T19:16:13.87002766Z"} +2026/03/21 19:16:18 [metric_collector] {"stage_name":"metric_collector","events_processed":4224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":844.8,"last_update":"2026-03-21T19:16:13.870241579Z"} +2026/03/21 19:16:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:16:13.87901481Z"} +2026/03/21 19:16:18 [transform_engine] {"stage_name":"transform_engine","events_processed":140,"events_dropped":0,"avg_latency_ms":568.4643768971064,"throughput_eps":0,"last_update":"2026-03-21T19:16:13.965194176Z"} +2026/03/21 19:16:18 [detection_layer] {"stage_name":"detection_layer","events_processed":140,"events_dropped":0,"avg_latency_ms":16.260469744122613,"throughput_eps":0,"last_update":"2026-03-21T19:16:13.966317277Z"} +2026/03/21 19:16:18 ───────────────────────────────────────────────── +2026/03/21 19:16:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:16:23 [log_collector] {"stage_name":"log_collector","events_processed":7690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1538,"last_update":"2026-03-21T19:16:18.86963561Z"} +2026/03/21 19:16:23 [metric_collector] {"stage_name":"metric_collector","events_processed":4229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":845.8,"last_update":"2026-03-21T19:16:18.870029204Z"} +2026/03/21 19:16:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:16:18.878205932Z"} +2026/03/21 19:16:23 [transform_engine] {"stage_name":"transform_engine","events_processed":141,"events_dropped":0,"avg_latency_ms":468.69088971768514,"throughput_eps":0,"last_update":"2026-03-21T19:16:19.035009015Z"} +2026/03/21 19:16:23 [detection_layer] {"stage_name":"detection_layer","events_processed":140,"events_dropped":0,"avg_latency_ms":16.260469744122613,"throughput_eps":0,"last_update":"2026-03-21T19:16:18.965434026Z"} +2026/03/21 19:16:23 ───────────────────────────────────────────────── +2026/03/21 19:16:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:16:28 [metric_collector] {"stage_name":"metric_collector","events_processed":4234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":846.8,"last_update":"2026-03-21T19:16:23.869941408Z"} +2026/03/21 19:16:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:16:23.878326486Z"} +2026/03/21 19:16:28 [transform_engine] {"stage_name":"transform_engine","events_processed":141,"events_dropped":0,"avg_latency_ms":468.69088971768514,"throughput_eps":0,"last_update":"2026-03-21T19:16:23.965662116Z"} +2026/03/21 19:16:28 [detection_layer] {"stage_name":"detection_layer","events_processed":141,"events_dropped":0,"avg_latency_ms":17.06604839529809,"throughput_eps":0,"last_update":"2026-03-21T19:16:23.965709406Z"} +2026/03/21 19:16:28 [log_collector] {"stage_name":"log_collector","events_processed":7690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1538,"last_update":"2026-03-21T19:16:23.869596467Z"} +2026/03/21 19:16:28 ───────────────────────────────────────────────── +2026/03/21 19:16:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:16:33 [log_collector] {"stage_name":"log_collector","events_processed":7690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1538,"last_update":"2026-03-21T19:16:28.870090206Z"} +2026/03/21 19:16:33 [metric_collector] {"stage_name":"metric_collector","events_processed":4239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":847.8,"last_update":"2026-03-21T19:16:28.870566328Z"} +2026/03/21 19:16:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:16:28.879149956Z"} +2026/03/21 19:16:33 [transform_engine] {"stage_name":"transform_engine","events_processed":141,"events_dropped":0,"avg_latency_ms":468.69088971768514,"throughput_eps":0,"last_update":"2026-03-21T19:16:28.965371964Z"} +2026/03/21 19:16:33 [detection_layer] {"stage_name":"detection_layer","events_processed":141,"events_dropped":0,"avg_latency_ms":17.06604839529809,"throughput_eps":0,"last_update":"2026-03-21T19:16:28.965398385Z"} +2026/03/21 19:16:33 ───────────────────────────────────────────────── +2026/03/21 19:16:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:16:38 [log_collector] {"stage_name":"log_collector","events_processed":7690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1538,"last_update":"2026-03-21T19:16:38.8694194Z"} +2026/03/21 19:16:38 [metric_collector] {"stage_name":"metric_collector","events_processed":4244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":848.8,"last_update":"2026-03-21T19:16:33.8701476Z"} +2026/03/21 19:16:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1700,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:16:33.878809719Z"} +2026/03/21 19:16:38 [transform_engine] {"stage_name":"transform_engine","events_processed":141,"events_dropped":0,"avg_latency_ms":468.69088971768514,"throughput_eps":0,"last_update":"2026-03-21T19:16:33.965997775Z"} +2026/03/21 19:16:38 [detection_layer] {"stage_name":"detection_layer","events_processed":141,"events_dropped":0,"avg_latency_ms":17.06604839529809,"throughput_eps":0,"last_update":"2026-03-21T19:16:33.966019146Z"} +2026/03/21 19:16:38 ───────────────────────────────────────────────── +2026/03/21 19:16:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:16:43 [log_collector] {"stage_name":"log_collector","events_processed":7690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1538,"last_update":"2026-03-21T19:16:43.87003251Z"} +2026/03/21 19:16:43 [metric_collector] {"stage_name":"metric_collector","events_processed":4249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":849.8,"last_update":"2026-03-21T19:16:38.869659751Z"} +2026/03/21 19:16:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1702,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:16:38.878939431Z"} +2026/03/21 19:16:43 [transform_engine] {"stage_name":"transform_engine","events_processed":141,"events_dropped":0,"avg_latency_ms":468.69088971768514,"throughput_eps":0,"last_update":"2026-03-21T19:16:38.965087799Z"} +2026/03/21 19:16:43 [detection_layer] {"stage_name":"detection_layer","events_processed":141,"events_dropped":0,"avg_latency_ms":17.06604839529809,"throughput_eps":0,"last_update":"2026-03-21T19:16:38.966215187Z"} +2026/03/21 19:16:43 ───────────────────────────────────────────────── +Saved state: 12 clusters, 7691 messages, reason: none +2026/03/21 19:16:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:16:48 [detection_layer] {"stage_name":"detection_layer","events_processed":141,"events_dropped":0,"avg_latency_ms":17.06604839529809,"throughput_eps":0,"last_update":"2026-03-21T19:16:43.966131112Z"} +2026/03/21 19:16:48 [log_collector] {"stage_name":"log_collector","events_processed":7690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1538,"last_update":"2026-03-21T19:16:43.87003251Z"} +2026/03/21 19:16:48 [metric_collector] {"stage_name":"metric_collector","events_processed":4254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":850.8,"last_update":"2026-03-21T19:16:43.870407347Z"} +2026/03/21 19:16:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:16:43.878744743Z"} +2026/03/21 19:16:48 [transform_engine] {"stage_name":"transform_engine","events_processed":141,"events_dropped":0,"avg_latency_ms":468.69088971768514,"throughput_eps":0,"last_update":"2026-03-21T19:16:43.966168633Z"} +2026/03/21 19:16:48 ───────────────────────────────────────────────── +2026/03/21 19:16:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:16:53 [log_collector] {"stage_name":"log_collector","events_processed":7693,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1538.6,"last_update":"2026-03-21T19:16:48.869923588Z"} +2026/03/21 19:16:53 [metric_collector] {"stage_name":"metric_collector","events_processed":4259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":851.8,"last_update":"2026-03-21T19:16:48.869953646Z"} +2026/03/21 19:16:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:16:48.876778175Z"} +2026/03/21 19:16:53 [transform_engine] {"stage_name":"transform_engine","events_processed":142,"events_dropped":0,"avg_latency_ms":748.7853789741482,"throughput_eps":0,"last_update":"2026-03-21T19:16:50.83528127Z"} +2026/03/21 19:16:53 [detection_layer] {"stage_name":"detection_layer","events_processed":141,"events_dropped":0,"avg_latency_ms":17.06604839529809,"throughput_eps":0,"last_update":"2026-03-21T19:16:48.966086263Z"} +2026/03/21 19:16:53 ───────────────────────────────────────────────── +2026/03/21 19:16:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:16:58 [log_collector] {"stage_name":"log_collector","events_processed":7693,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1538.6,"last_update":"2026-03-21T19:16:53.869531315Z"} +2026/03/21 19:16:58 [metric_collector] {"stage_name":"metric_collector","events_processed":4264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":852.8,"last_update":"2026-03-21T19:16:53.869769521Z"} +2026/03/21 19:16:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:16:53.876328932Z"} +2026/03/21 19:16:58 [transform_engine] {"stage_name":"transform_engine","events_processed":142,"events_dropped":0,"avg_latency_ms":748.7853789741482,"throughput_eps":0,"last_update":"2026-03-21T19:16:53.965413232Z"} +2026/03/21 19:16:58 [detection_layer] {"stage_name":"detection_layer","events_processed":142,"events_dropped":0,"avg_latency_ms":16.286568316238473,"throughput_eps":0,"last_update":"2026-03-21T19:16:53.965431067Z"} +2026/03/21 19:16:58 ───────────────────────────────────────────────── +2026/03/21 19:17:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:17:03 [log_collector] {"stage_name":"log_collector","events_processed":7704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1540.8,"last_update":"2026-03-21T19:16:58.869408629Z"} +2026/03/21 19:17:03 [metric_collector] {"stage_name":"metric_collector","events_processed":4269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":853.8,"last_update":"2026-03-21T19:16:58.870142725Z"} +2026/03/21 19:17:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:16:58.869505224Z"} +2026/03/21 19:17:03 [transform_engine] {"stage_name":"transform_engine","events_processed":142,"events_dropped":0,"avg_latency_ms":748.7853789741482,"throughput_eps":0,"last_update":"2026-03-21T19:16:58.96629475Z"} +2026/03/21 19:17:03 [detection_layer] {"stage_name":"detection_layer","events_processed":142,"events_dropped":0,"avg_latency_ms":16.286568316238473,"throughput_eps":0,"last_update":"2026-03-21T19:16:58.96619032Z"} +2026/03/21 19:17:03 ───────────────────────────────────────────────── +2026/03/21 19:17:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:17:08 [transform_engine] {"stage_name":"transform_engine","events_processed":142,"events_dropped":0,"avg_latency_ms":748.7853789741482,"throughput_eps":0,"last_update":"2026-03-21T19:17:03.965602131Z"} +2026/03/21 19:17:08 [detection_layer] {"stage_name":"detection_layer","events_processed":142,"events_dropped":0,"avg_latency_ms":16.286568316238473,"throughput_eps":0,"last_update":"2026-03-21T19:17:03.965491108Z"} +2026/03/21 19:17:08 [log_collector] {"stage_name":"log_collector","events_processed":7718,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1543.6,"last_update":"2026-03-21T19:17:03.869461828Z"} +2026/03/21 19:17:08 [metric_collector] {"stage_name":"metric_collector","events_processed":4274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":854.8,"last_update":"2026-03-21T19:17:03.869817689Z"} +2026/03/21 19:17:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1712,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:17:03.875174117Z"} +2026/03/21 19:17:08 ───────────────────────────────────────────────── +2026/03/21 19:17:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:17:13 [log_collector] {"stage_name":"log_collector","events_processed":7723,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1544.6,"last_update":"2026-03-21T19:17:08.869399796Z"} +2026/03/21 19:17:13 [metric_collector] {"stage_name":"metric_collector","events_processed":4279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":855.8,"last_update":"2026-03-21T19:17:08.869967183Z"} +2026/03/21 19:17:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:17:08.877806335Z"} +2026/03/21 19:17:13 [transform_engine] {"stage_name":"transform_engine","events_processed":142,"events_dropped":0,"avg_latency_ms":748.7853789741482,"throughput_eps":0,"last_update":"2026-03-21T19:17:08.966059845Z"} +2026/03/21 19:17:13 [detection_layer] {"stage_name":"detection_layer","events_processed":142,"events_dropped":0,"avg_latency_ms":16.286568316238473,"throughput_eps":0,"last_update":"2026-03-21T19:17:08.965990411Z"} +2026/03/21 19:17:13 ───────────────────────────────────────────────── +2026/03/21 19:17:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:17:18 [log_collector] {"stage_name":"log_collector","events_processed":7734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1546.8,"last_update":"2026-03-21T19:17:13.870072611Z"} +2026/03/21 19:17:18 [metric_collector] {"stage_name":"metric_collector","events_processed":4284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":856.8,"last_update":"2026-03-21T19:17:13.87054712Z"} +2026/03/21 19:17:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:17:13.878911689Z"} +2026/03/21 19:17:18 [transform_engine] {"stage_name":"transform_engine","events_processed":142,"events_dropped":0,"avg_latency_ms":748.7853789741482,"throughput_eps":0,"last_update":"2026-03-21T19:17:13.965047422Z"} +2026/03/21 19:17:18 [detection_layer] {"stage_name":"detection_layer","events_processed":142,"events_dropped":0,"avg_latency_ms":16.286568316238473,"throughput_eps":0,"last_update":"2026-03-21T19:17:13.965424925Z"} +2026/03/21 19:17:18 ───────────────────────────────────────────────── +2026/03/21 19:17:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:17:23 [transform_engine] {"stage_name":"transform_engine","events_processed":143,"events_dropped":0,"avg_latency_ms":621.2563689793186,"throughput_eps":0,"last_update":"2026-03-21T19:17:19.076667998Z"} +2026/03/21 19:17:23 [detection_layer] {"stage_name":"detection_layer","events_processed":142,"events_dropped":0,"avg_latency_ms":16.286568316238473,"throughput_eps":0,"last_update":"2026-03-21T19:17:18.965518081Z"} +2026/03/21 19:17:23 [log_collector] {"stage_name":"log_collector","events_processed":7734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1546.8,"last_update":"2026-03-21T19:17:18.869415631Z"} +2026/03/21 19:17:23 [metric_collector] {"stage_name":"metric_collector","events_processed":4289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":857.8,"last_update":"2026-03-21T19:17:18.869889838Z"} +2026/03/21 19:17:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1718,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:17:18.87832341Z"} +2026/03/21 19:17:23 ───────────────────────────────────────────────── +2026/03/21 19:17:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:17:28 [metric_collector] {"stage_name":"metric_collector","events_processed":4294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":858.8,"last_update":"2026-03-21T19:17:23.869758856Z"} +2026/03/21 19:17:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:17:23.878789158Z"} +2026/03/21 19:17:28 [transform_engine] {"stage_name":"transform_engine","events_processed":143,"events_dropped":0,"avg_latency_ms":621.2563689793186,"throughput_eps":0,"last_update":"2026-03-21T19:17:23.966055448Z"} +2026/03/21 19:17:28 [detection_layer] {"stage_name":"detection_layer","events_processed":143,"events_dropped":0,"avg_latency_ms":16.60289225299078,"throughput_eps":0,"last_update":"2026-03-21T19:17:23.966044147Z"} +2026/03/21 19:17:28 [log_collector] {"stage_name":"log_collector","events_processed":7734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1546.8,"last_update":"2026-03-21T19:17:23.869541249Z"} +2026/03/21 19:17:28 ───────────────────────────────────────────────── +2026/03/21 19:17:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:17:33 [transform_engine] {"stage_name":"transform_engine","events_processed":143,"events_dropped":0,"avg_latency_ms":621.2563689793186,"throughput_eps":0,"last_update":"2026-03-21T19:17:28.965522313Z"} +2026/03/21 19:17:33 [detection_layer] {"stage_name":"detection_layer","events_processed":143,"events_dropped":0,"avg_latency_ms":16.60289225299078,"throughput_eps":0,"last_update":"2026-03-21T19:17:28.965514418Z"} +2026/03/21 19:17:33 [log_collector] {"stage_name":"log_collector","events_processed":7734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1546.8,"last_update":"2026-03-21T19:17:28.869638782Z"} +2026/03/21 19:17:33 [metric_collector] {"stage_name":"metric_collector","events_processed":4298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":859.6,"last_update":"2026-03-21T19:17:28.869389444Z"} +2026/03/21 19:17:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1722,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:17:28.878318464Z"} +2026/03/21 19:17:33 ───────────────────────────────────────────────── +2026/03/21 19:17:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:17:38 [log_collector] {"stage_name":"log_collector","events_processed":7734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1546.8,"last_update":"2026-03-21T19:17:38.869921015Z"} +2026/03/21 19:17:38 [metric_collector] {"stage_name":"metric_collector","events_processed":4304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":860.8,"last_update":"2026-03-21T19:17:33.86979091Z"} +2026/03/21 19:17:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:17:33.877703212Z"} +2026/03/21 19:17:38 [transform_engine] {"stage_name":"transform_engine","events_processed":143,"events_dropped":0,"avg_latency_ms":621.2563689793186,"throughput_eps":0,"last_update":"2026-03-21T19:17:33.96616968Z"} +2026/03/21 19:17:38 [detection_layer] {"stage_name":"detection_layer","events_processed":143,"events_dropped":0,"avg_latency_ms":16.60289225299078,"throughput_eps":0,"last_update":"2026-03-21T19:17:33.966157848Z"} +2026/03/21 19:17:38 ───────────────────────────────────────────────── +2026/03/21 19:17:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:17:43 [log_collector] {"stage_name":"log_collector","events_processed":7734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1546.8,"last_update":"2026-03-21T19:17:38.869921015Z"} +2026/03/21 19:17:43 [metric_collector] {"stage_name":"metric_collector","events_processed":4309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":861.8,"last_update":"2026-03-21T19:17:38.870385044Z"} +2026/03/21 19:17:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:17:38.879120443Z"} +2026/03/21 19:17:43 [transform_engine] {"stage_name":"transform_engine","events_processed":143,"events_dropped":0,"avg_latency_ms":621.2563689793186,"throughput_eps":0,"last_update":"2026-03-21T19:17:38.965177668Z"} +2026/03/21 19:17:43 [detection_layer] {"stage_name":"detection_layer","events_processed":143,"events_dropped":0,"avg_latency_ms":16.60289225299078,"throughput_eps":0,"last_update":"2026-03-21T19:17:38.965257541Z"} +2026/03/21 19:17:43 ───────────────────────────────────────────────── +2026/03/21 19:17:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:17:48 [log_collector] {"stage_name":"log_collector","events_processed":7734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1546.8,"last_update":"2026-03-21T19:17:43.869960248Z"} +2026/03/21 19:17:48 [metric_collector] {"stage_name":"metric_collector","events_processed":4314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":862.8,"last_update":"2026-03-21T19:17:43.870083925Z"} +2026/03/21 19:17:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1728,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:17:43.879309463Z"} +2026/03/21 19:17:48 [transform_engine] {"stage_name":"transform_engine","events_processed":143,"events_dropped":0,"avg_latency_ms":621.2563689793186,"throughput_eps":0,"last_update":"2026-03-21T19:17:43.965545059Z"} +2026/03/21 19:17:48 [detection_layer] {"stage_name":"detection_layer","events_processed":143,"events_dropped":0,"avg_latency_ms":16.60289225299078,"throughput_eps":0,"last_update":"2026-03-21T19:17:43.965532876Z"} +2026/03/21 19:17:48 ───────────────────────────────────────────────── +2026/03/21 19:17:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:17:53 [log_collector] {"stage_name":"log_collector","events_processed":7734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1546.8,"last_update":"2026-03-21T19:17:53.870142969Z"} +2026/03/21 19:17:53 [metric_collector] {"stage_name":"metric_collector","events_processed":4318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":863.6,"last_update":"2026-03-21T19:17:48.86971752Z"} +2026/03/21 19:17:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1730,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:17:48.879780301Z"} +2026/03/21 19:17:53 [transform_engine] {"stage_name":"transform_engine","events_processed":144,"events_dropped":0,"avg_latency_ms":512.2419827834549,"throughput_eps":0,"last_update":"2026-03-21T19:17:49.042204774Z"} +2026/03/21 19:17:53 [detection_layer] {"stage_name":"detection_layer","events_processed":143,"events_dropped":0,"avg_latency_ms":16.60289225299078,"throughput_eps":0,"last_update":"2026-03-21T19:17:48.966003484Z"} +2026/03/21 19:17:53 ───────────────────────────────────────────────── +2026/03/21 19:17:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:17:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:17:53.879206536Z"} +2026/03/21 19:17:58 [transform_engine] {"stage_name":"transform_engine","events_processed":144,"events_dropped":0,"avg_latency_ms":512.2419827834549,"throughput_eps":0,"last_update":"2026-03-21T19:17:53.965486046Z"} +2026/03/21 19:17:58 [detection_layer] {"stage_name":"detection_layer","events_processed":144,"events_dropped":0,"avg_latency_ms":17.250861802392627,"throughput_eps":0,"last_update":"2026-03-21T19:17:53.96552479Z"} +2026/03/21 19:17:58 [log_collector] {"stage_name":"log_collector","events_processed":7734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1546.8,"last_update":"2026-03-21T19:17:58.870399875Z"} +2026/03/21 19:17:58 [metric_collector] {"stage_name":"metric_collector","events_processed":4324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":864.8,"last_update":"2026-03-21T19:17:53.870616436Z"} +2026/03/21 19:17:58 ───────────────────────────────────────────────── +2026/03/21 19:18:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:18:03 [transform_engine] {"stage_name":"transform_engine","events_processed":144,"events_dropped":0,"avg_latency_ms":512.2419827834549,"throughput_eps":0,"last_update":"2026-03-21T19:17:58.9659451Z"} +2026/03/21 19:18:03 [detection_layer] {"stage_name":"detection_layer","events_processed":144,"events_dropped":0,"avg_latency_ms":17.250861802392627,"throughput_eps":0,"last_update":"2026-03-21T19:17:58.965972944Z"} +2026/03/21 19:18:03 [log_collector] {"stage_name":"log_collector","events_processed":7734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1546.8,"last_update":"2026-03-21T19:18:03.869830569Z"} +2026/03/21 19:18:03 [metric_collector] {"stage_name":"metric_collector","events_processed":4329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":865.8,"last_update":"2026-03-21T19:17:58.870820851Z"} +2026/03/21 19:18:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:17:58.879212342Z"} +2026/03/21 19:18:03 ───────────────────────────────────────────────── +2026/03/21 19:18:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:18:08 [log_collector] {"stage_name":"log_collector","events_processed":7734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1546.8,"last_update":"2026-03-21T19:18:03.869830569Z"} +2026/03/21 19:18:08 [metric_collector] {"stage_name":"metric_collector","events_processed":4334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":866.8,"last_update":"2026-03-21T19:18:03.870213512Z"} +2026/03/21 19:18:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1736,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:18:03.878406462Z"} +2026/03/21 19:18:08 [transform_engine] {"stage_name":"transform_engine","events_processed":144,"events_dropped":0,"avg_latency_ms":512.2419827834549,"throughput_eps":0,"last_update":"2026-03-21T19:18:03.965594463Z"} +2026/03/21 19:18:08 [detection_layer] {"stage_name":"detection_layer","events_processed":144,"events_dropped":0,"avg_latency_ms":17.250861802392627,"throughput_eps":0,"last_update":"2026-03-21T19:18:03.965699504Z"} +2026/03/21 19:18:08 ───────────────────────────────────────────────── +Saved state: 12 clusters, 7735 messages, reason: none +2026/03/21 19:18:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:18:13 [log_collector] {"stage_name":"log_collector","events_processed":7734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1546.8,"last_update":"2026-03-21T19:18:08.870279581Z"} +2026/03/21 19:18:13 [metric_collector] {"stage_name":"metric_collector","events_processed":4339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":867.8,"last_update":"2026-03-21T19:18:08.870706879Z"} +2026/03/21 19:18:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1738,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:18:08.879297771Z"} +2026/03/21 19:18:13 [transform_engine] {"stage_name":"transform_engine","events_processed":144,"events_dropped":0,"avg_latency_ms":512.2419827834549,"throughput_eps":0,"last_update":"2026-03-21T19:18:08.965746225Z"} +2026/03/21 19:18:13 [detection_layer] {"stage_name":"detection_layer","events_processed":144,"events_dropped":0,"avg_latency_ms":17.250861802392627,"throughput_eps":0,"last_update":"2026-03-21T19:18:08.965629762Z"} +2026/03/21 19:18:13 ───────────────────────────────────────────────── +2026/03/21 19:18:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:18:18 [metric_collector] {"stage_name":"metric_collector","events_processed":4344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":868.8,"last_update":"2026-03-21T19:18:13.870069469Z"} +2026/03/21 19:18:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1740,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:18:13.876745204Z"} +2026/03/21 19:18:18 [transform_engine] {"stage_name":"transform_engine","events_processed":144,"events_dropped":0,"avg_latency_ms":512.2419827834549,"throughput_eps":0,"last_update":"2026-03-21T19:18:13.965963623Z"} +2026/03/21 19:18:18 [detection_layer] {"stage_name":"detection_layer","events_processed":144,"events_dropped":0,"avg_latency_ms":17.250861802392627,"throughput_eps":0,"last_update":"2026-03-21T19:18:13.965943645Z"} +2026/03/21 19:18:18 [log_collector] {"stage_name":"log_collector","events_processed":7739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1547.8,"last_update":"2026-03-21T19:18:13.869945551Z"} +2026/03/21 19:18:18 ───────────────────────────────────────────────── +2026/03/21 19:18:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:18:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:18:18.876329578Z"} +2026/03/21 19:18:23 [transform_engine] {"stage_name":"transform_engine","events_processed":145,"events_dropped":0,"avg_latency_ms":521.8457902267639,"throughput_eps":0,"last_update":"2026-03-21T19:18:19.525707363Z"} +2026/03/21 19:18:23 [detection_layer] {"stage_name":"detection_layer","events_processed":144,"events_dropped":0,"avg_latency_ms":17.250861802392627,"throughput_eps":0,"last_update":"2026-03-21T19:18:18.966142455Z"} +2026/03/21 19:18:23 [log_collector] {"stage_name":"log_collector","events_processed":7739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1547.8,"last_update":"2026-03-21T19:18:18.869577237Z"} +2026/03/21 19:18:23 [metric_collector] {"stage_name":"metric_collector","events_processed":4349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":869.8,"last_update":"2026-03-21T19:18:18.869625359Z"} +2026/03/21 19:18:23 ───────────────────────────────────────────────── +2026/03/21 19:18:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:18:28 [detection_layer] {"stage_name":"detection_layer","events_processed":145,"events_dropped":0,"avg_latency_ms":16.1895462419141,"throughput_eps":0,"last_update":"2026-03-21T19:18:23.965536275Z"} +2026/03/21 19:18:28 [log_collector] {"stage_name":"log_collector","events_processed":7739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1547.8,"last_update":"2026-03-21T19:18:23.869414114Z"} +2026/03/21 19:18:28 [metric_collector] {"stage_name":"metric_collector","events_processed":4354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":870.8,"last_update":"2026-03-21T19:18:23.870386465Z"} +2026/03/21 19:18:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:18:23.87633129Z"} +2026/03/21 19:18:28 [transform_engine] {"stage_name":"transform_engine","events_processed":145,"events_dropped":0,"avg_latency_ms":521.8457902267639,"throughput_eps":0,"last_update":"2026-03-21T19:18:23.965552665Z"} +2026/03/21 19:18:28 ───────────────────────────────────────────────── +2026/03/21 19:18:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:18:33 [log_collector] {"stage_name":"log_collector","events_processed":7739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1547.8,"last_update":"2026-03-21T19:18:28.869476742Z"} +2026/03/21 19:18:33 [metric_collector] {"stage_name":"metric_collector","events_processed":4359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":871.8,"last_update":"2026-03-21T19:18:28.869952984Z"} +2026/03/21 19:18:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:18:28.877514505Z"} +2026/03/21 19:18:33 [transform_engine] {"stage_name":"transform_engine","events_processed":145,"events_dropped":0,"avg_latency_ms":521.8457902267639,"throughput_eps":0,"last_update":"2026-03-21T19:18:28.965711689Z"} +2026/03/21 19:18:33 [detection_layer] {"stage_name":"detection_layer","events_processed":145,"events_dropped":0,"avg_latency_ms":16.1895462419141,"throughput_eps":0,"last_update":"2026-03-21T19:18:28.965687253Z"} +2026/03/21 19:18:33 ───────────────────────────────────────────────── +2026/03/21 19:18:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:18:38 [detection_layer] {"stage_name":"detection_layer","events_processed":145,"events_dropped":0,"avg_latency_ms":16.1895462419141,"throughput_eps":0,"last_update":"2026-03-21T19:18:33.965680466Z"} +2026/03/21 19:18:38 [log_collector] {"stage_name":"log_collector","events_processed":7739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1547.8,"last_update":"2026-03-21T19:18:33.86942547Z"} +2026/03/21 19:18:38 [metric_collector] {"stage_name":"metric_collector","events_processed":4364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":872.8,"last_update":"2026-03-21T19:18:33.86964469Z"} +2026/03/21 19:18:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:18:33.875406945Z"} +2026/03/21 19:18:38 [transform_engine] {"stage_name":"transform_engine","events_processed":145,"events_dropped":0,"avg_latency_ms":521.8457902267639,"throughput_eps":0,"last_update":"2026-03-21T19:18:33.96566738Z"} +2026/03/21 19:18:38 ───────────────────────────────────────────────── +2026/03/21 19:18:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:18:43 [metric_collector] {"stage_name":"metric_collector","events_processed":4369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":873.8,"last_update":"2026-03-21T19:18:38.869676876Z"} +2026/03/21 19:18:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1750,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:18:38.875836884Z"} +2026/03/21 19:18:43 [transform_engine] {"stage_name":"transform_engine","events_processed":145,"events_dropped":0,"avg_latency_ms":521.8457902267639,"throughput_eps":0,"last_update":"2026-03-21T19:18:38.966163746Z"} +2026/03/21 19:18:43 [detection_layer] {"stage_name":"detection_layer","events_processed":145,"events_dropped":0,"avg_latency_ms":16.1895462419141,"throughput_eps":0,"last_update":"2026-03-21T19:18:38.966181791Z"} +2026/03/21 19:18:43 [log_collector] {"stage_name":"log_collector","events_processed":7739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1547.8,"last_update":"2026-03-21T19:18:38.869425715Z"} +2026/03/21 19:18:43 ───────────────────────────────────────────────── +2026/03/21 19:18:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:18:48 [log_collector] {"stage_name":"log_collector","events_processed":7739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1547.8,"last_update":"2026-03-21T19:18:48.869458754Z"} +2026/03/21 19:18:48 [metric_collector] {"stage_name":"metric_collector","events_processed":4374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":874.8,"last_update":"2026-03-21T19:18:43.869615052Z"} +2026/03/21 19:18:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1752,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:18:43.878764504Z"} +2026/03/21 19:18:48 [transform_engine] {"stage_name":"transform_engine","events_processed":145,"events_dropped":0,"avg_latency_ms":521.8457902267639,"throughput_eps":0,"last_update":"2026-03-21T19:18:43.966056365Z"} +2026/03/21 19:18:48 [detection_layer] {"stage_name":"detection_layer","events_processed":145,"events_dropped":0,"avg_latency_ms":16.1895462419141,"throughput_eps":0,"last_update":"2026-03-21T19:18:43.96602775Z"} +2026/03/21 19:18:48 ───────────────────────────────────────────────── +2026/03/21 19:18:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:18:53 [detection_layer] {"stage_name":"detection_layer","events_processed":145,"events_dropped":0,"avg_latency_ms":16.1895462419141,"throughput_eps":0,"last_update":"2026-03-21T19:18:48.966399323Z"} +2026/03/21 19:18:53 [log_collector] {"stage_name":"log_collector","events_processed":7739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1547.8,"last_update":"2026-03-21T19:18:53.869484001Z"} +2026/03/21 19:18:53 [metric_collector] {"stage_name":"metric_collector","events_processed":4379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":875.8,"last_update":"2026-03-21T19:18:48.869714554Z"} +2026/03/21 19:18:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:18:48.877024122Z"} +2026/03/21 19:18:53 [transform_engine] {"stage_name":"transform_engine","events_processed":145,"events_dropped":0,"avg_latency_ms":521.8457902267639,"throughput_eps":0,"last_update":"2026-03-21T19:18:43.966056365Z"} +2026/03/21 19:18:53 ───────────────────────────────────────────────── +2026/03/21 19:18:56 [ANOMALY] time=2026-03-21T19:18:56Z score=0.9544 method=SEAD details=MAD!:w=0.25,s=0.97 RRCF-fast!:w=0.18,s=0.88 RRCF-mid!:w=0.18,s=0.98 RRCF-slow!:w=0.17,s=0.97 COPOD!:w=0.22,s=0.97 +2026/03/21 19:18:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:18:58 [log_collector] {"stage_name":"log_collector","events_processed":7739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1547.8,"last_update":"2026-03-21T19:18:53.869484001Z"} +2026/03/21 19:18:58 [metric_collector] {"stage_name":"metric_collector","events_processed":4384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":876.8,"last_update":"2026-03-21T19:18:53.87001107Z"} +2026/03/21 19:18:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:18:53.876296838Z"} +2026/03/21 19:18:58 [transform_engine] {"stage_name":"transform_engine","events_processed":146,"events_dropped":0,"avg_latency_ms":1863.9350333814111,"throughput_eps":0,"last_update":"2026-03-21T19:18:56.197719216Z"} +2026/03/21 19:18:58 [detection_layer] {"stage_name":"detection_layer","events_processed":145,"events_dropped":0,"avg_latency_ms":16.1895462419141,"throughput_eps":0,"last_update":"2026-03-21T19:18:53.965579532Z"} +2026/03/21 19:18:58 ───────────────────────────────────────────────── +2026/03/21 19:19:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:19:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1758,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:18:58.878327346Z"} +2026/03/21 19:19:03 [transform_engine] {"stage_name":"transform_engine","events_processed":146,"events_dropped":0,"avg_latency_ms":1863.9350333814111,"throughput_eps":0,"last_update":"2026-03-21T19:18:58.965634466Z"} +2026/03/21 19:19:03 [detection_layer] {"stage_name":"detection_layer","events_processed":146,"events_dropped":0,"avg_latency_ms":15.156371193531282,"throughput_eps":0,"last_update":"2026-03-21T19:18:58.965604008Z"} +2026/03/21 19:19:03 [log_collector] {"stage_name":"log_collector","events_processed":7748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1549.6,"last_update":"2026-03-21T19:18:58.869439184Z"} +2026/03/21 19:19:03 [metric_collector] {"stage_name":"metric_collector","events_processed":4389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":877.8,"last_update":"2026-03-21T19:18:58.869777802Z"} +2026/03/21 19:19:03 ───────────────────────────────────────────────── +2026/03/21 19:19:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:19:08 [transform_engine] {"stage_name":"transform_engine","events_processed":146,"events_dropped":0,"avg_latency_ms":1863.9350333814111,"throughput_eps":0,"last_update":"2026-03-21T19:19:03.965551905Z"} +2026/03/21 19:19:08 [detection_layer] {"stage_name":"detection_layer","events_processed":146,"events_dropped":0,"avg_latency_ms":15.156371193531282,"throughput_eps":0,"last_update":"2026-03-21T19:19:03.965537607Z"} +2026/03/21 19:19:08 [log_collector] {"stage_name":"log_collector","events_processed":7815,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1563,"last_update":"2026-03-21T19:19:03.869944007Z"} +2026/03/21 19:19:08 [metric_collector] {"stage_name":"metric_collector","events_processed":4394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":878.8,"last_update":"2026-03-21T19:19:03.870066392Z"} +2026/03/21 19:19:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:19:03.876288097Z"} +2026/03/21 19:19:08 ───────────────────────────────────────────────── +2026/03/21 19:19:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:19:13 [log_collector] {"stage_name":"log_collector","events_processed":8103,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1620.6,"last_update":"2026-03-21T19:19:13.870111454Z"} +2026/03/21 19:19:13 [metric_collector] {"stage_name":"metric_collector","events_processed":4399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":879.8,"last_update":"2026-03-21T19:19:08.870382661Z"} +2026/03/21 19:19:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:19:08.877042907Z"} +2026/03/21 19:19:13 [transform_engine] {"stage_name":"transform_engine","events_processed":146,"events_dropped":0,"avg_latency_ms":1863.9350333814111,"throughput_eps":0,"last_update":"2026-03-21T19:19:08.965185237Z"} +2026/03/21 19:19:13 [detection_layer] {"stage_name":"detection_layer","events_processed":146,"events_dropped":0,"avg_latency_ms":15.156371193531282,"throughput_eps":0,"last_update":"2026-03-21T19:19:08.966327354Z"} +2026/03/21 19:19:13 ───────────────────────────────────────────────── +2026/03/21 19:19:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:19:18 [log_collector] {"stage_name":"log_collector","events_processed":8103,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1620.6,"last_update":"2026-03-21T19:19:18.869420781Z"} +2026/03/21 19:19:18 [metric_collector] {"stage_name":"metric_collector","events_processed":4404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":880.8,"last_update":"2026-03-21T19:19:13.87055301Z"} +2026/03/21 19:19:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:19:13.878558972Z"} +2026/03/21 19:19:18 [transform_engine] {"stage_name":"transform_engine","events_processed":146,"events_dropped":0,"avg_latency_ms":1863.9350333814111,"throughput_eps":0,"last_update":"2026-03-21T19:19:13.965861895Z"} +2026/03/21 19:19:18 [detection_layer] {"stage_name":"detection_layer","events_processed":146,"events_dropped":0,"avg_latency_ms":15.156371193531282,"throughput_eps":0,"last_update":"2026-03-21T19:19:13.96588609Z"} +2026/03/21 19:19:18 ───────────────────────────────────────────────── +2026/03/21 19:19:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:19:23 [log_collector] {"stage_name":"log_collector","events_processed":8103,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1620.6,"last_update":"2026-03-21T19:19:23.869424779Z"} +2026/03/21 19:19:23 [metric_collector] {"stage_name":"metric_collector","events_processed":4414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":882.8,"last_update":"2026-03-21T19:19:23.869779478Z"} +2026/03/21 19:19:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1766,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:19:18.878734959Z"} +2026/03/21 19:19:23 [transform_engine] {"stage_name":"transform_engine","events_processed":147,"events_dropped":0,"avg_latency_ms":1514.811229905129,"throughput_eps":0,"last_update":"2026-03-21T19:19:19.084522581Z"} +2026/03/21 19:19:23 [detection_layer] {"stage_name":"detection_layer","events_processed":146,"events_dropped":0,"avg_latency_ms":15.156371193531282,"throughput_eps":0,"last_update":"2026-03-21T19:19:18.966086516Z"} +2026/03/21 19:19:23 ───────────────────────────────────────────────── +Saved state: 12 clusters, 8104 messages, reason: none +2026/03/21 19:19:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:19:28 [detection_layer] {"stage_name":"detection_layer","events_processed":147,"events_dropped":0,"avg_latency_ms":15.343788954825026,"throughput_eps":0,"last_update":"2026-03-21T19:19:23.966113075Z"} +2026/03/21 19:19:28 [log_collector] {"stage_name":"log_collector","events_processed":8106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1621.2,"last_update":"2026-03-21T19:19:28.8699032Z"} +2026/03/21 19:19:28 [metric_collector] {"stage_name":"metric_collector","events_processed":4414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":882.8,"last_update":"2026-03-21T19:19:23.869779478Z"} +2026/03/21 19:19:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1768,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:19:23.87883989Z"} +2026/03/21 19:19:28 [transform_engine] {"stage_name":"transform_engine","events_processed":147,"events_dropped":0,"avg_latency_ms":1514.811229905129,"throughput_eps":0,"last_update":"2026-03-21T19:19:23.96607851Z"} +2026/03/21 19:19:28 ───────────────────────────────────────────────── +2026/03/21 19:19:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:19:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1770,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:19:28.875763413Z"} +2026/03/21 19:19:33 [transform_engine] {"stage_name":"transform_engine","events_processed":147,"events_dropped":0,"avg_latency_ms":1514.811229905129,"throughput_eps":0,"last_update":"2026-03-21T19:19:28.965930601Z"} +2026/03/21 19:19:33 [detection_layer] {"stage_name":"detection_layer","events_processed":147,"events_dropped":0,"avg_latency_ms":15.343788954825026,"throughput_eps":0,"last_update":"2026-03-21T19:19:28.965959968Z"} +2026/03/21 19:19:33 [log_collector] {"stage_name":"log_collector","events_processed":8106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1621.2,"last_update":"2026-03-21T19:19:28.8699032Z"} +2026/03/21 19:19:33 [metric_collector] {"stage_name":"metric_collector","events_processed":4419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":883.8,"last_update":"2026-03-21T19:19:28.870162547Z"} +2026/03/21 19:19:33 ───────────────────────────────────────────────── +2026/03/21 19:19:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:19:38 [metric_collector] {"stage_name":"metric_collector","events_processed":4424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":884.8,"last_update":"2026-03-21T19:19:33.86970316Z"} +2026/03/21 19:19:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:19:33.877743799Z"} +2026/03/21 19:19:38 [transform_engine] {"stage_name":"transform_engine","events_processed":147,"events_dropped":0,"avg_latency_ms":1514.811229905129,"throughput_eps":0,"last_update":"2026-03-21T19:19:33.965988817Z"} +2026/03/21 19:19:38 [detection_layer] {"stage_name":"detection_layer","events_processed":147,"events_dropped":0,"avg_latency_ms":15.343788954825026,"throughput_eps":0,"last_update":"2026-03-21T19:19:33.96596965Z"} +2026/03/21 19:19:38 [log_collector] {"stage_name":"log_collector","events_processed":8116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1623.2,"last_update":"2026-03-21T19:19:38.869843429Z"} +2026/03/21 19:19:38 ───────────────────────────────────────────────── +2026/03/21 19:19:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:19:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:19:38.880969367Z"} +2026/03/21 19:19:43 [transform_engine] {"stage_name":"transform_engine","events_processed":147,"events_dropped":0,"avg_latency_ms":1514.811229905129,"throughput_eps":0,"last_update":"2026-03-21T19:19:38.965522464Z"} +2026/03/21 19:19:43 [detection_layer] {"stage_name":"detection_layer","events_processed":147,"events_dropped":0,"avg_latency_ms":15.343788954825026,"throughput_eps":0,"last_update":"2026-03-21T19:19:38.965490443Z"} +2026/03/21 19:19:43 [log_collector] {"stage_name":"log_collector","events_processed":8124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1624.8,"last_update":"2026-03-21T19:19:43.870107334Z"} +2026/03/21 19:19:43 [metric_collector] {"stage_name":"metric_collector","events_processed":4429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":885.8,"last_update":"2026-03-21T19:19:38.870182158Z"} +2026/03/21 19:19:43 ───────────────────────────────────────────────── +2026/03/21 19:19:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:19:48 [log_collector] {"stage_name":"log_collector","events_processed":8124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1624.8,"last_update":"2026-03-21T19:19:43.870107334Z"} +2026/03/21 19:19:48 [metric_collector] {"stage_name":"metric_collector","events_processed":4434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":886.8,"last_update":"2026-03-21T19:19:43.87042395Z"} +2026/03/21 19:19:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:19:43.879634669Z"} +2026/03/21 19:19:48 [transform_engine] {"stage_name":"transform_engine","events_processed":147,"events_dropped":0,"avg_latency_ms":1514.811229905129,"throughput_eps":0,"last_update":"2026-03-21T19:19:43.96596484Z"} +2026/03/21 19:19:48 [detection_layer] {"stage_name":"detection_layer","events_processed":147,"events_dropped":0,"avg_latency_ms":15.343788954825026,"throughput_eps":0,"last_update":"2026-03-21T19:19:43.9659174Z"} +2026/03/21 19:19:48 ───────────────────────────────────────────────── +2026/03/21 19:19:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:19:53 [transform_engine] {"stage_name":"transform_engine","events_processed":148,"events_dropped":0,"avg_latency_ms":1233.8176621241032,"throughput_eps":0,"last_update":"2026-03-21T19:19:49.075622052Z"} +2026/03/21 19:19:53 [detection_layer] {"stage_name":"detection_layer","events_processed":147,"events_dropped":0,"avg_latency_ms":15.343788954825026,"throughput_eps":0,"last_update":"2026-03-21T19:19:48.965810982Z"} +2026/03/21 19:19:53 [log_collector] {"stage_name":"log_collector","events_processed":8133,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1626.6,"last_update":"2026-03-21T19:19:53.870020689Z"} +2026/03/21 19:19:53 [metric_collector] {"stage_name":"metric_collector","events_processed":4439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":887.8,"last_update":"2026-03-21T19:19:48.869740418Z"} +2026/03/21 19:19:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:19:48.877591303Z"} +2026/03/21 19:19:53 ───────────────────────────────────────────────── +2026/03/21 19:19:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:19:58 [log_collector] {"stage_name":"log_collector","events_processed":8133,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1626.6,"last_update":"2026-03-21T19:19:53.870020689Z"} +2026/03/21 19:19:58 [metric_collector] {"stage_name":"metric_collector","events_processed":4444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":888.8,"last_update":"2026-03-21T19:19:53.870460642Z"} +2026/03/21 19:19:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1780,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:19:53.879219797Z"} +2026/03/21 19:19:58 [transform_engine] {"stage_name":"transform_engine","events_processed":148,"events_dropped":0,"avg_latency_ms":1233.8176621241032,"throughput_eps":0,"last_update":"2026-03-21T19:19:53.965576278Z"} +2026/03/21 19:19:58 [detection_layer] {"stage_name":"detection_layer","events_processed":148,"events_dropped":0,"avg_latency_ms":15.51659496386002,"throughput_eps":0,"last_update":"2026-03-21T19:19:53.965564776Z"} +2026/03/21 19:19:58 ───────────────────────────────────────────────── +2026/03/21 19:20:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:20:03 [log_collector] {"stage_name":"log_collector","events_processed":8133,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1626.6,"last_update":"2026-03-21T19:19:58.869975774Z"} +2026/03/21 19:20:03 [metric_collector] {"stage_name":"metric_collector","events_processed":4449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":889.8,"last_update":"2026-03-21T19:19:58.870264356Z"} +2026/03/21 19:20:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1782,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:19:58.878512984Z"} +2026/03/21 19:20:03 [transform_engine] {"stage_name":"transform_engine","events_processed":148,"events_dropped":0,"avg_latency_ms":1233.8176621241032,"throughput_eps":0,"last_update":"2026-03-21T19:19:58.965889519Z"} +2026/03/21 19:20:03 [detection_layer] {"stage_name":"detection_layer","events_processed":148,"events_dropped":0,"avg_latency_ms":15.51659496386002,"throughput_eps":0,"last_update":"2026-03-21T19:19:58.96588017Z"} +2026/03/21 19:20:03 ───────────────────────────────────────────────── +2026/03/21 19:20:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:20:08 [transform_engine] {"stage_name":"transform_engine","events_processed":148,"events_dropped":0,"avg_latency_ms":1233.8176621241032,"throughput_eps":0,"last_update":"2026-03-21T19:20:03.96608488Z"} +2026/03/21 19:20:08 [detection_layer] {"stage_name":"detection_layer","events_processed":148,"events_dropped":0,"avg_latency_ms":15.51659496386002,"throughput_eps":0,"last_update":"2026-03-21T19:20:03.966073548Z"} +2026/03/21 19:20:08 [log_collector] {"stage_name":"log_collector","events_processed":8133,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1626.6,"last_update":"2026-03-21T19:20:03.869847456Z"} +2026/03/21 19:20:08 [metric_collector] {"stage_name":"metric_collector","events_processed":4454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":890.8,"last_update":"2026-03-21T19:20:03.870208457Z"} +2026/03/21 19:20:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:20:03.889836477Z"} +2026/03/21 19:20:08 ───────────────────────────────────────────────── +2026/03/21 19:20:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:20:13 [log_collector] {"stage_name":"log_collector","events_processed":8133,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1626.6,"last_update":"2026-03-21T19:20:13.86942824Z"} +2026/03/21 19:20:13 [metric_collector] {"stage_name":"metric_collector","events_processed":4459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":891.8,"last_update":"2026-03-21T19:20:08.870112489Z"} +2026/03/21 19:20:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:20:08.878054679Z"} +2026/03/21 19:20:13 [transform_engine] {"stage_name":"transform_engine","events_processed":148,"events_dropped":0,"avg_latency_ms":1233.8176621241032,"throughput_eps":0,"last_update":"2026-03-21T19:20:08.965249636Z"} +2026/03/21 19:20:13 [detection_layer] {"stage_name":"detection_layer","events_processed":148,"events_dropped":0,"avg_latency_ms":15.51659496386002,"throughput_eps":0,"last_update":"2026-03-21T19:20:08.96531921Z"} +2026/03/21 19:20:13 ───────────────────────────────────────────────── +2026/03/21 19:20:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:20:18 [transform_engine] {"stage_name":"transform_engine","events_processed":148,"events_dropped":0,"avg_latency_ms":1233.8176621241032,"throughput_eps":0,"last_update":"2026-03-21T19:20:13.965426847Z"} +2026/03/21 19:20:18 [detection_layer] {"stage_name":"detection_layer","events_processed":148,"events_dropped":0,"avg_latency_ms":15.51659496386002,"throughput_eps":0,"last_update":"2026-03-21T19:20:13.965372032Z"} +2026/03/21 19:20:18 [log_collector] {"stage_name":"log_collector","events_processed":8133,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1626.6,"last_update":"2026-03-21T19:20:18.870178035Z"} +2026/03/21 19:20:18 [metric_collector] {"stage_name":"metric_collector","events_processed":4464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":892.8,"last_update":"2026-03-21T19:20:13.870175882Z"} +2026/03/21 19:20:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:20:13.878159621Z"} +2026/03/21 19:20:18 ───────────────────────────────────────────────── +2026/03/21 19:20:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:20:23 [log_collector] {"stage_name":"log_collector","events_processed":8133,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1626.6,"last_update":"2026-03-21T19:20:18.870178035Z"} +2026/03/21 19:20:23 [metric_collector] {"stage_name":"metric_collector","events_processed":4469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":893.8,"last_update":"2026-03-21T19:20:18.870497607Z"} +2026/03/21 19:20:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:20:18.87899466Z"} +2026/03/21 19:20:23 [transform_engine] {"stage_name":"transform_engine","events_processed":148,"events_dropped":0,"avg_latency_ms":1233.8176621241032,"throughput_eps":0,"last_update":"2026-03-21T19:20:18.965103248Z"} +2026/03/21 19:20:23 [detection_layer] {"stage_name":"detection_layer","events_processed":148,"events_dropped":0,"avg_latency_ms":15.51659496386002,"throughput_eps":0,"last_update":"2026-03-21T19:20:18.966197022Z"} +2026/03/21 19:20:23 ───────────────────────────────────────────────── +2026/03/21 19:20:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:20:28 [log_collector] {"stage_name":"log_collector","events_processed":8133,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1626.6,"last_update":"2026-03-21T19:20:23.869674127Z"} +2026/03/21 19:20:28 [metric_collector] {"stage_name":"metric_collector","events_processed":4474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":894.8,"last_update":"2026-03-21T19:20:23.87001517Z"} +2026/03/21 19:20:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:20:23.878282653Z"} +2026/03/21 19:20:28 [transform_engine] {"stage_name":"transform_engine","events_processed":149,"events_dropped":0,"avg_latency_ms":1000.4208444992826,"throughput_eps":0,"last_update":"2026-03-21T19:20:23.965470749Z"} +2026/03/21 19:20:28 [detection_layer] {"stage_name":"detection_layer","events_processed":149,"events_dropped":0,"avg_latency_ms":16.228937171088017,"throughput_eps":0,"last_update":"2026-03-21T19:20:23.965511337Z"} +2026/03/21 19:20:28 ───────────────────────────────────────────────── +2026/03/21 19:20:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:20:33 [detection_layer] {"stage_name":"detection_layer","events_processed":149,"events_dropped":0,"avg_latency_ms":16.228937171088017,"throughput_eps":0,"last_update":"2026-03-21T19:20:28.965316847Z"} +2026/03/21 19:20:33 [log_collector] {"stage_name":"log_collector","events_processed":8133,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1626.6,"last_update":"2026-03-21T19:20:33.86941212Z"} +2026/03/21 19:20:33 [metric_collector] {"stage_name":"metric_collector","events_processed":4479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":895.8,"last_update":"2026-03-21T19:20:28.870219215Z"} +2026/03/21 19:20:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:20:28.878978399Z"} +2026/03/21 19:20:33 [transform_engine] {"stage_name":"transform_engine","events_processed":149,"events_dropped":0,"avg_latency_ms":1000.4208444992826,"throughput_eps":0,"last_update":"2026-03-21T19:20:28.965158103Z"} +2026/03/21 19:20:33 ───────────────────────────────────────────────── +2026/03/21 19:20:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:20:38 [transform_engine] {"stage_name":"transform_engine","events_processed":149,"events_dropped":0,"avg_latency_ms":1000.4208444992826,"throughput_eps":0,"last_update":"2026-03-21T19:20:33.965689311Z"} +2026/03/21 19:20:38 [detection_layer] {"stage_name":"detection_layer","events_processed":149,"events_dropped":0,"avg_latency_ms":16.228937171088017,"throughput_eps":0,"last_update":"2026-03-21T19:20:33.965705292Z"} +2026/03/21 19:20:38 [log_collector] {"stage_name":"log_collector","events_processed":8133,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1626.6,"last_update":"2026-03-21T19:20:38.869987658Z"} +2026/03/21 19:20:38 [metric_collector] {"stage_name":"metric_collector","events_processed":4484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":896.8,"last_update":"2026-03-21T19:20:33.869888412Z"} +2026/03/21 19:20:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1796,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:20:33.878479004Z"} +2026/03/21 19:20:38 ───────────────────────────────────────────────── +2026/03/21 19:20:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:20:43 [log_collector] {"stage_name":"log_collector","events_processed":8133,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1626.6,"last_update":"2026-03-21T19:20:43.870119023Z"} +2026/03/21 19:20:43 [metric_collector] {"stage_name":"metric_collector","events_processed":4489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":897.8,"last_update":"2026-03-21T19:20:38.870385921Z"} +2026/03/21 19:20:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:20:38.878933962Z"} +2026/03/21 19:20:43 [transform_engine] {"stage_name":"transform_engine","events_processed":149,"events_dropped":0,"avg_latency_ms":1000.4208444992826,"throughput_eps":0,"last_update":"2026-03-21T19:20:38.965141519Z"} +2026/03/21 19:20:43 [detection_layer] {"stage_name":"detection_layer","events_processed":149,"events_dropped":0,"avg_latency_ms":16.228937171088017,"throughput_eps":0,"last_update":"2026-03-21T19:20:38.966270141Z"} +2026/03/21 19:20:43 ───────────────────────────────────────────────── +2026/03/21 19:20:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:20:48 [transform_engine] {"stage_name":"transform_engine","events_processed":149,"events_dropped":0,"avg_latency_ms":1000.4208444992826,"throughput_eps":0,"last_update":"2026-03-21T19:20:43.965420286Z"} +2026/03/21 19:20:48 [detection_layer] {"stage_name":"detection_layer","events_processed":149,"events_dropped":0,"avg_latency_ms":16.228937171088017,"throughput_eps":0,"last_update":"2026-03-21T19:20:43.965405088Z"} +2026/03/21 19:20:48 [log_collector] {"stage_name":"log_collector","events_processed":8133,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1626.6,"last_update":"2026-03-21T19:20:43.870119023Z"} +2026/03/21 19:20:48 [metric_collector] {"stage_name":"metric_collector","events_processed":4494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":898.8,"last_update":"2026-03-21T19:20:43.870770521Z"} +2026/03/21 19:20:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1800,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:20:43.87922916Z"} +2026/03/21 19:20:48 ───────────────────────────────────────────────── +Saved state: 12 clusters, 8134 messages, reason: none +2026/03/21 19:20:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:20:53 [log_collector] {"stage_name":"log_collector","events_processed":8133,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1626.6,"last_update":"2026-03-21T19:20:48.869510199Z"} +2026/03/21 19:20:53 [metric_collector] {"stage_name":"metric_collector","events_processed":4499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":899.8,"last_update":"2026-03-21T19:20:48.869787399Z"} +2026/03/21 19:20:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1802,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:20:48.878293148Z"} +2026/03/21 19:20:53 [transform_engine] {"stage_name":"transform_engine","events_processed":150,"events_dropped":0,"avg_latency_ms":815.6690649994262,"throughput_eps":0,"last_update":"2026-03-21T19:20:49.042161316Z"} +2026/03/21 19:20:53 [detection_layer] {"stage_name":"detection_layer","events_processed":149,"events_dropped":0,"avg_latency_ms":16.228937171088017,"throughput_eps":0,"last_update":"2026-03-21T19:20:48.966438788Z"} +2026/03/21 19:20:53 ───────────────────────────────────────────────── +2026/03/21 19:20:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:20:58 [log_collector] {"stage_name":"log_collector","events_processed":8147,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1629.4,"last_update":"2026-03-21T19:20:53.870151895Z"} +2026/03/21 19:20:58 [metric_collector] {"stage_name":"metric_collector","events_processed":4503,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":900.6,"last_update":"2026-03-21T19:20:53.870270341Z"} +2026/03/21 19:20:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:20:53.880877354Z"} +2026/03/21 19:20:58 [transform_engine] {"stage_name":"transform_engine","events_processed":150,"events_dropped":0,"avg_latency_ms":815.6690649994262,"throughput_eps":0,"last_update":"2026-03-21T19:20:53.965169805Z"} +2026/03/21 19:20:58 [detection_layer] {"stage_name":"detection_layer","events_processed":150,"events_dropped":0,"avg_latency_ms":17.330136736870415,"throughput_eps":0,"last_update":"2026-03-21T19:20:53.966298947Z"} +2026/03/21 19:20:58 ───────────────────────────────────────────────── +2026/03/21 19:21:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:21:03 [metric_collector] {"stage_name":"metric_collector","events_processed":4509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":901.8,"last_update":"2026-03-21T19:20:58.869906077Z"} +2026/03/21 19:21:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:20:58.878001641Z"} +2026/03/21 19:21:03 [transform_engine] {"stage_name":"transform_engine","events_processed":150,"events_dropped":0,"avg_latency_ms":815.6690649994262,"throughput_eps":0,"last_update":"2026-03-21T19:20:58.965220615Z"} +2026/03/21 19:21:03 [detection_layer] {"stage_name":"detection_layer","events_processed":150,"events_dropped":0,"avg_latency_ms":17.330136736870415,"throughput_eps":0,"last_update":"2026-03-21T19:20:58.965276512Z"} +2026/03/21 19:21:03 [log_collector] {"stage_name":"log_collector","events_processed":8147,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1629.4,"last_update":"2026-03-21T19:20:58.869415647Z"} +2026/03/21 19:21:03 ───────────────────────────────────────────────── +2026/03/21 19:21:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:21:08 [log_collector] {"stage_name":"log_collector","events_processed":8147,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1629.4,"last_update":"2026-03-21T19:21:03.869619879Z"} +2026/03/21 19:21:08 [metric_collector] {"stage_name":"metric_collector","events_processed":4514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":902.8,"last_update":"2026-03-21T19:21:03.869801857Z"} +2026/03/21 19:21:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:21:03.879497956Z"} +2026/03/21 19:21:08 [transform_engine] {"stage_name":"transform_engine","events_processed":150,"events_dropped":0,"avg_latency_ms":815.6690649994262,"throughput_eps":0,"last_update":"2026-03-21T19:21:03.965820896Z"} +2026/03/21 19:21:08 [detection_layer] {"stage_name":"detection_layer","events_processed":150,"events_dropped":0,"avg_latency_ms":17.330136736870415,"throughput_eps":0,"last_update":"2026-03-21T19:21:03.965895709Z"} +2026/03/21 19:21:08 ───────────────────────────────────────────────── +2026/03/21 19:21:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:21:13 [log_collector] {"stage_name":"log_collector","events_processed":8147,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1629.4,"last_update":"2026-03-21T19:21:08.869720379Z"} +2026/03/21 19:21:13 [metric_collector] {"stage_name":"metric_collector","events_processed":4519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":903.8,"last_update":"2026-03-21T19:21:08.869770054Z"} +2026/03/21 19:21:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:21:08.878314067Z"} +2026/03/21 19:21:13 [transform_engine] {"stage_name":"transform_engine","events_processed":150,"events_dropped":0,"avg_latency_ms":815.6690649994262,"throughput_eps":0,"last_update":"2026-03-21T19:21:08.96565217Z"} +2026/03/21 19:21:13 [detection_layer] {"stage_name":"detection_layer","events_processed":150,"events_dropped":0,"avg_latency_ms":17.330136736870415,"throughput_eps":0,"last_update":"2026-03-21T19:21:08.965680023Z"} +2026/03/21 19:21:13 ───────────────────────────────────────────────── +2026/03/21 19:21:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:21:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1812,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:21:13.879088883Z"} +2026/03/21 19:21:18 [transform_engine] {"stage_name":"transform_engine","events_processed":150,"events_dropped":0,"avg_latency_ms":815.6690649994262,"throughput_eps":0,"last_update":"2026-03-21T19:21:13.96531736Z"} +2026/03/21 19:21:18 [detection_layer] {"stage_name":"detection_layer","events_processed":150,"events_dropped":0,"avg_latency_ms":17.330136736870415,"throughput_eps":0,"last_update":"2026-03-21T19:21:13.965295569Z"} +2026/03/21 19:21:18 [log_collector] {"stage_name":"log_collector","events_processed":8147,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1629.4,"last_update":"2026-03-21T19:21:13.870309028Z"} +2026/03/21 19:21:18 [metric_collector] {"stage_name":"metric_collector","events_processed":4524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":904.8,"last_update":"2026-03-21T19:21:13.870868329Z"} +2026/03/21 19:21:18 ───────────────────────────────────────────────── +2026/03/21 19:21:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:21:23 [detection_layer] {"stage_name":"detection_layer","events_processed":150,"events_dropped":0,"avg_latency_ms":17.330136736870415,"throughput_eps":0,"last_update":"2026-03-21T19:21:18.966051204Z"} +2026/03/21 19:21:23 [log_collector] {"stage_name":"log_collector","events_processed":8147,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1629.4,"last_update":"2026-03-21T19:21:18.870451308Z"} +2026/03/21 19:21:23 [metric_collector] {"stage_name":"metric_collector","events_processed":4529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":905.8,"last_update":"2026-03-21T19:21:18.871004428Z"} +2026/03/21 19:21:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:21:18.879831483Z"} +2026/03/21 19:21:23 [transform_engine] {"stage_name":"transform_engine","events_processed":151,"events_dropped":0,"avg_latency_ms":674.421653199541,"throughput_eps":0,"last_update":"2026-03-21T19:21:19.075601266Z"} +2026/03/21 19:21:23 ───────────────────────────────────────────────── +2026/03/21 19:21:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:21:28 [metric_collector] {"stage_name":"metric_collector","events_processed":4534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":906.8,"last_update":"2026-03-21T19:21:23.870406819Z"} +2026/03/21 19:21:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1816,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:21:23.879416604Z"} +2026/03/21 19:21:28 [transform_engine] {"stage_name":"transform_engine","events_processed":151,"events_dropped":0,"avg_latency_ms":674.421653199541,"throughput_eps":0,"last_update":"2026-03-21T19:21:23.965574457Z"} +2026/03/21 19:21:28 [detection_layer] {"stage_name":"detection_layer","events_processed":151,"events_dropped":0,"avg_latency_ms":17.72899098949633,"throughput_eps":0,"last_update":"2026-03-21T19:21:23.965545121Z"} +2026/03/21 19:21:28 [log_collector] {"stage_name":"log_collector","events_processed":8147,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1629.4,"last_update":"2026-03-21T19:21:28.869594605Z"} +2026/03/21 19:21:28 ───────────────────────────────────────────────── +2026/03/21 19:21:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:21:33 [log_collector] {"stage_name":"log_collector","events_processed":8147,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1629.4,"last_update":"2026-03-21T19:21:28.869594605Z"} +2026/03/21 19:21:33 [metric_collector] {"stage_name":"metric_collector","events_processed":4539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":907.8,"last_update":"2026-03-21T19:21:28.870235633Z"} +2026/03/21 19:21:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1818,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:21:28.879383282Z"} +2026/03/21 19:21:33 [transform_engine] {"stage_name":"transform_engine","events_processed":151,"events_dropped":0,"avg_latency_ms":674.421653199541,"throughput_eps":0,"last_update":"2026-03-21T19:21:28.965886506Z"} +2026/03/21 19:21:33 [detection_layer] {"stage_name":"detection_layer","events_processed":151,"events_dropped":0,"avg_latency_ms":17.72899098949633,"throughput_eps":0,"last_update":"2026-03-21T19:21:28.965736749Z"} +2026/03/21 19:21:33 ───────────────────────────────────────────────── +2026/03/21 19:21:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:21:38 [log_collector] {"stage_name":"log_collector","events_processed":8147,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1629.4,"last_update":"2026-03-21T19:21:38.869917093Z"} +2026/03/21 19:21:38 [metric_collector] {"stage_name":"metric_collector","events_processed":4544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":908.8,"last_update":"2026-03-21T19:21:33.87001632Z"} +2026/03/21 19:21:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1820,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:21:33.878489627Z"} +2026/03/21 19:21:38 [transform_engine] {"stage_name":"transform_engine","events_processed":151,"events_dropped":0,"avg_latency_ms":674.421653199541,"throughput_eps":0,"last_update":"2026-03-21T19:21:33.965908666Z"} +2026/03/21 19:21:38 [detection_layer] {"stage_name":"detection_layer","events_processed":151,"events_dropped":0,"avg_latency_ms":17.72899098949633,"throughput_eps":0,"last_update":"2026-03-21T19:21:33.965882386Z"} +2026/03/21 19:21:38 ───────────────────────────────────────────────── +2026/03/21 19:21:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:21:43 [detection_layer] {"stage_name":"detection_layer","events_processed":151,"events_dropped":0,"avg_latency_ms":17.72899098949633,"throughput_eps":0,"last_update":"2026-03-21T19:21:38.966272826Z"} +2026/03/21 19:21:43 [log_collector] {"stage_name":"log_collector","events_processed":8147,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1629.4,"last_update":"2026-03-21T19:21:38.869917093Z"} +2026/03/21 19:21:43 [metric_collector] {"stage_name":"metric_collector","events_processed":4549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":909.8,"last_update":"2026-03-21T19:21:38.870253708Z"} +2026/03/21 19:21:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:21:38.878941426Z"} +2026/03/21 19:21:43 [transform_engine] {"stage_name":"transform_engine","events_processed":151,"events_dropped":0,"avg_latency_ms":674.421653199541,"throughput_eps":0,"last_update":"2026-03-21T19:21:38.965117463Z"} +2026/03/21 19:21:43 ───────────────────────────────────────────────── +2026/03/21 19:21:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:21:48 [log_collector] {"stage_name":"log_collector","events_processed":8147,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1629.4,"last_update":"2026-03-21T19:21:43.86943013Z"} +2026/03/21 19:21:48 [metric_collector] {"stage_name":"metric_collector","events_processed":4554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":910.8,"last_update":"2026-03-21T19:21:43.869794758Z"} +2026/03/21 19:21:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:21:43.878678853Z"} +2026/03/21 19:21:48 [transform_engine] {"stage_name":"transform_engine","events_processed":151,"events_dropped":0,"avg_latency_ms":674.421653199541,"throughput_eps":0,"last_update":"2026-03-21T19:21:43.965967402Z"} +2026/03/21 19:21:48 [detection_layer] {"stage_name":"detection_layer","events_processed":151,"events_dropped":0,"avg_latency_ms":17.72899098949633,"throughput_eps":0,"last_update":"2026-03-21T19:21:43.966026364Z"} +2026/03/21 19:21:48 ───────────────────────────────────────────────── +2026/03/21 19:21:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:21:53 [log_collector] {"stage_name":"log_collector","events_processed":8147,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1629.4,"last_update":"2026-03-21T19:21:48.869647533Z"} +2026/03/21 19:21:53 [metric_collector] {"stage_name":"metric_collector","events_processed":4559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":911.8,"last_update":"2026-03-21T19:21:48.870032219Z"} +2026/03/21 19:21:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1826,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:21:48.878558959Z"} +2026/03/21 19:21:53 [transform_engine] {"stage_name":"transform_engine","events_processed":152,"events_dropped":0,"avg_latency_ms":554.2091989596328,"throughput_eps":0,"last_update":"2026-03-21T19:21:49.03925869Z"} +2026/03/21 19:21:53 [detection_layer] {"stage_name":"detection_layer","events_processed":151,"events_dropped":0,"avg_latency_ms":17.72899098949633,"throughput_eps":0,"last_update":"2026-03-21T19:21:48.966499517Z"} +2026/03/21 19:21:53 ───────────────────────────────────────────────── +2026/03/21 19:21:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:21:58 [log_collector] {"stage_name":"log_collector","events_processed":8147,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1629.4,"last_update":"2026-03-21T19:21:53.869973808Z"} +2026/03/21 19:21:58 [metric_collector] {"stage_name":"metric_collector","events_processed":4564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":912.8,"last_update":"2026-03-21T19:21:53.870421926Z"} +2026/03/21 19:21:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:21:53.879296742Z"} +2026/03/21 19:21:58 [transform_engine] {"stage_name":"transform_engine","events_processed":152,"events_dropped":0,"avg_latency_ms":554.2091989596328,"throughput_eps":0,"last_update":"2026-03-21T19:21:53.965646123Z"} +2026/03/21 19:21:58 [detection_layer] {"stage_name":"detection_layer","events_processed":152,"events_dropped":0,"avg_latency_ms":18.191601591597063,"throughput_eps":0,"last_update":"2026-03-21T19:21:53.965635603Z"} +2026/03/21 19:21:58 ───────────────────────────────────────────────── +Saved state: 12 clusters, 8148 messages, reason: none +2026/03/21 19:22:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:22:03 [log_collector] {"stage_name":"log_collector","events_processed":8147,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1629.4,"last_update":"2026-03-21T19:21:58.870234454Z"} +2026/03/21 19:22:03 [metric_collector] {"stage_name":"metric_collector","events_processed":4569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":913.8,"last_update":"2026-03-21T19:21:58.87075961Z"} +2026/03/21 19:22:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1830,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:21:58.878338334Z"} +2026/03/21 19:22:03 [transform_engine] {"stage_name":"transform_engine","events_processed":152,"events_dropped":0,"avg_latency_ms":554.2091989596328,"throughput_eps":0,"last_update":"2026-03-21T19:21:58.965540047Z"} +2026/03/21 19:22:03 [detection_layer] {"stage_name":"detection_layer","events_processed":152,"events_dropped":0,"avg_latency_ms":18.191601591597063,"throughput_eps":0,"last_update":"2026-03-21T19:21:58.965533534Z"} +2026/03/21 19:22:03 ───────────────────────────────────────────────── +2026/03/21 19:22:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:22:08 [log_collector] {"stage_name":"log_collector","events_processed":8152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1630.4,"last_update":"2026-03-21T19:22:03.869456457Z"} +2026/03/21 19:22:08 [metric_collector] {"stage_name":"metric_collector","events_processed":4574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":914.8,"last_update":"2026-03-21T19:22:03.869620391Z"} +2026/03/21 19:22:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1832,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:22:03.879089004Z"} +2026/03/21 19:22:08 [transform_engine] {"stage_name":"transform_engine","events_processed":152,"events_dropped":0,"avg_latency_ms":554.2091989596328,"throughput_eps":0,"last_update":"2026-03-21T19:22:03.965326061Z"} +2026/03/21 19:22:08 [detection_layer] {"stage_name":"detection_layer","events_processed":152,"events_dropped":0,"avg_latency_ms":18.191601591597063,"throughput_eps":0,"last_update":"2026-03-21T19:22:03.965284771Z"} +2026/03/21 19:22:08 ───────────────────────────────────────────────── +2026/03/21 19:22:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:22:13 [log_collector] {"stage_name":"log_collector","events_processed":8152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1630.4,"last_update":"2026-03-21T19:22:08.869615239Z"} +2026/03/21 19:22:13 [metric_collector] {"stage_name":"metric_collector","events_processed":4579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":915.8,"last_update":"2026-03-21T19:22:08.869791427Z"} +2026/03/21 19:22:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:22:08.875947727Z"} +2026/03/21 19:22:13 [transform_engine] {"stage_name":"transform_engine","events_processed":152,"events_dropped":0,"avg_latency_ms":554.2091989596328,"throughput_eps":0,"last_update":"2026-03-21T19:22:08.965082111Z"} +2026/03/21 19:22:13 [detection_layer] {"stage_name":"detection_layer","events_processed":152,"events_dropped":0,"avg_latency_ms":18.191601591597063,"throughput_eps":0,"last_update":"2026-03-21T19:22:08.966268073Z"} +2026/03/21 19:22:13 ───────────────────────────────────────────────── +2026/03/21 19:22:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:22:18 [log_collector] {"stage_name":"log_collector","events_processed":8152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1630.4,"last_update":"2026-03-21T19:22:13.86967089Z"} +2026/03/21 19:22:18 [metric_collector] {"stage_name":"metric_collector","events_processed":4584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":916.8,"last_update":"2026-03-21T19:22:13.869662583Z"} +2026/03/21 19:22:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:22:13.876517592Z"} +2026/03/21 19:22:18 [transform_engine] {"stage_name":"transform_engine","events_processed":152,"events_dropped":0,"avg_latency_ms":554.2091989596328,"throughput_eps":0,"last_update":"2026-03-21T19:22:13.96570629Z"} +2026/03/21 19:22:18 [detection_layer] {"stage_name":"detection_layer","events_processed":152,"events_dropped":0,"avg_latency_ms":18.191601591597063,"throughput_eps":0,"last_update":"2026-03-21T19:22:13.965696642Z"} +2026/03/21 19:22:18 ───────────────────────────────────────────────── +2026/03/21 19:22:21 [ANOMALY] time=2026-03-21T19:22:21Z score=0.9620 method=SEAD details=MAD!:w=0.26,s=0.95 RRCF-fast!:w=0.19,s=0.95 RRCF-mid!:w=0.18,s=0.96 RRCF-slow!:w=0.16,s=0.96 COPOD!:w=0.21,s=0.99 +2026/03/21 19:22:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:22:23 [log_collector] {"stage_name":"log_collector","events_processed":8152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1630.4,"last_update":"2026-03-21T19:22:18.870258104Z"} +2026/03/21 19:22:23 [metric_collector] {"stage_name":"metric_collector","events_processed":4589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":917.8,"last_update":"2026-03-21T19:22:18.870477184Z"} +2026/03/21 19:22:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:22:18.876293883Z"} +2026/03/21 19:22:23 [transform_engine] {"stage_name":"transform_engine","events_processed":153,"events_dropped":0,"avg_latency_ms":911.1677759677063,"throughput_eps":0,"last_update":"2026-03-21T19:22:21.304496659Z"} +2026/03/21 19:22:23 [detection_layer] {"stage_name":"detection_layer","events_processed":152,"events_dropped":0,"avg_latency_ms":18.191601591597063,"throughput_eps":0,"last_update":"2026-03-21T19:22:18.96551827Z"} +2026/03/21 19:22:23 ───────────────────────────────────────────────── +2026/03/21 19:22:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:22:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:22:23.875830361Z"} +2026/03/21 19:22:28 [transform_engine] {"stage_name":"transform_engine","events_processed":153,"events_dropped":0,"avg_latency_ms":911.1677759677063,"throughput_eps":0,"last_update":"2026-03-21T19:22:23.966040806Z"} +2026/03/21 19:22:28 [detection_layer] {"stage_name":"detection_layer","events_processed":153,"events_dropped":0,"avg_latency_ms":16.23462527327765,"throughput_eps":0,"last_update":"2026-03-21T19:22:23.966027311Z"} +2026/03/21 19:22:28 [log_collector] {"stage_name":"log_collector","events_processed":8152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1630.4,"last_update":"2026-03-21T19:22:23.869828376Z"} +2026/03/21 19:22:28 [metric_collector] {"stage_name":"metric_collector","events_processed":4594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":918.8,"last_update":"2026-03-21T19:22:23.870186011Z"} +2026/03/21 19:22:28 ───────────────────────────────────────────────── +2026/03/21 19:22:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:22:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:22:28.87633049Z"} +2026/03/21 19:22:33 [transform_engine] {"stage_name":"transform_engine","events_processed":153,"events_dropped":0,"avg_latency_ms":911.1677759677063,"throughput_eps":0,"last_update":"2026-03-21T19:22:28.96585442Z"} +2026/03/21 19:22:33 [detection_layer] {"stage_name":"detection_layer","events_processed":153,"events_dropped":0,"avg_latency_ms":16.23462527327765,"throughput_eps":0,"last_update":"2026-03-21T19:22:28.965835414Z"} +2026/03/21 19:22:33 [log_collector] {"stage_name":"log_collector","events_processed":8152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1630.4,"last_update":"2026-03-21T19:22:33.869411764Z"} +2026/03/21 19:22:33 [metric_collector] {"stage_name":"metric_collector","events_processed":4599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":919.8,"last_update":"2026-03-21T19:22:28.869895996Z"} +2026/03/21 19:22:33 ───────────────────────────────────────────────── +2026/03/21 19:22:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:22:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:22:33.881919469Z"} +2026/03/21 19:22:38 [transform_engine] {"stage_name":"transform_engine","events_processed":153,"events_dropped":0,"avg_latency_ms":911.1677759677063,"throughput_eps":0,"last_update":"2026-03-21T19:22:33.966074047Z"} +2026/03/21 19:22:38 [detection_layer] {"stage_name":"detection_layer","events_processed":153,"events_dropped":0,"avg_latency_ms":16.23462527327765,"throughput_eps":0,"last_update":"2026-03-21T19:22:33.966064578Z"} +2026/03/21 19:22:38 [log_collector] {"stage_name":"log_collector","events_processed":8152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1630.4,"last_update":"2026-03-21T19:22:33.869411764Z"} +2026/03/21 19:22:38 [metric_collector] {"stage_name":"metric_collector","events_processed":4604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":920.8,"last_update":"2026-03-21T19:22:33.869889038Z"} +2026/03/21 19:22:38 ───────────────────────────────────────────────── +2026/03/21 19:22:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:22:43 [log_collector] {"stage_name":"log_collector","events_processed":8152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1630.4,"last_update":"2026-03-21T19:22:38.869399072Z"} +2026/03/21 19:22:43 [metric_collector] {"stage_name":"metric_collector","events_processed":4609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":921.8,"last_update":"2026-03-21T19:22:38.86974258Z"} +2026/03/21 19:22:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:22:38.878131957Z"} +2026/03/21 19:22:43 [transform_engine] {"stage_name":"transform_engine","events_processed":153,"events_dropped":0,"avg_latency_ms":911.1677759677063,"throughput_eps":0,"last_update":"2026-03-21T19:22:38.96524982Z"} +2026/03/21 19:22:43 [detection_layer] {"stage_name":"detection_layer","events_processed":153,"events_dropped":0,"avg_latency_ms":16.23462527327765,"throughput_eps":0,"last_update":"2026-03-21T19:22:38.965257996Z"} +2026/03/21 19:22:43 ───────────────────────────────────────────────── +2026/03/21 19:22:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:22:48 [detection_layer] {"stage_name":"detection_layer","events_processed":153,"events_dropped":0,"avg_latency_ms":16.23462527327765,"throughput_eps":0,"last_update":"2026-03-21T19:22:43.965471021Z"} +2026/03/21 19:22:48 [log_collector] {"stage_name":"log_collector","events_processed":8161,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1632.2,"last_update":"2026-03-21T19:22:43.869605414Z"} +2026/03/21 19:22:48 [metric_collector] {"stage_name":"metric_collector","events_processed":4614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":922.8,"last_update":"2026-03-21T19:22:43.870044836Z"} +2026/03/21 19:22:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1848,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:22:43.876299875Z"} +2026/03/21 19:22:48 [transform_engine] {"stage_name":"transform_engine","events_processed":153,"events_dropped":0,"avg_latency_ms":911.1677759677063,"throughput_eps":0,"last_update":"2026-03-21T19:22:43.965576202Z"} +2026/03/21 19:22:48 ───────────────────────────────────────────────── +2026/03/21 19:22:49 [ANOMALY] time=2026-03-21T19:22:49Z score=0.9178 method=SEAD details=MAD!:w=0.26,s=0.96 RRCF-fast:w=0.19,s=0.80 RRCF-mid!:w=0.18,s=0.92 RRCF-slow!:w=0.16,s=0.93 COPOD!:w=0.21,s=0.95 +2026/03/21 19:22:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:22:53 [detection_layer] {"stage_name":"detection_layer","events_processed":153,"events_dropped":0,"avg_latency_ms":16.23462527327765,"throughput_eps":0,"last_update":"2026-03-21T19:22:48.966376867Z"} +2026/03/21 19:22:53 [log_collector] {"stage_name":"log_collector","events_processed":8163,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1632.6,"last_update":"2026-03-21T19:22:48.86941424Z"} +2026/03/21 19:22:53 [metric_collector] {"stage_name":"metric_collector","events_processed":4619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":923.8,"last_update":"2026-03-21T19:22:48.869760332Z"} +2026/03/21 19:22:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:22:48.877973422Z"} +2026/03/21 19:22:53 [transform_engine] {"stage_name":"transform_engine","events_processed":154,"events_dropped":0,"avg_latency_ms":760.7242131741651,"throughput_eps":0,"last_update":"2026-03-21T19:22:49.124106472Z"} +2026/03/21 19:22:53 ───────────────────────────────────────────────── +2026/03/21 19:22:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:22:58 [log_collector] {"stage_name":"log_collector","events_processed":8415,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1683,"last_update":"2026-03-21T19:22:53.869505001Z"} +2026/03/21 19:22:58 [metric_collector] {"stage_name":"metric_collector","events_processed":4624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":924.8,"last_update":"2026-03-21T19:22:53.869807521Z"} +2026/03/21 19:22:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:22:53.876137304Z"} +2026/03/21 19:22:58 [transform_engine] {"stage_name":"transform_engine","events_processed":154,"events_dropped":0,"avg_latency_ms":760.7242131741651,"throughput_eps":0,"last_update":"2026-03-21T19:22:53.965603494Z"} +2026/03/21 19:22:58 [detection_layer] {"stage_name":"detection_layer","events_processed":154,"events_dropped":0,"avg_latency_ms":16.54862401862212,"throughput_eps":0,"last_update":"2026-03-21T19:22:53.965639593Z"} +2026/03/21 19:22:58 ───────────────────────────────────────────────── +Saved state: 12 clusters, 8515 messages, reason: none +2026/03/21 19:23:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:23:03 [metric_collector] {"stage_name":"metric_collector","events_processed":4629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":925.8,"last_update":"2026-03-21T19:22:58.870258196Z"} +2026/03/21 19:23:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:22:58.879412086Z"} +2026/03/21 19:23:03 [transform_engine] {"stage_name":"transform_engine","events_processed":154,"events_dropped":0,"avg_latency_ms":760.7242131741651,"throughput_eps":0,"last_update":"2026-03-21T19:22:58.96576202Z"} +2026/03/21 19:23:03 [detection_layer] {"stage_name":"detection_layer","events_processed":154,"events_dropped":0,"avg_latency_ms":16.54862401862212,"throughput_eps":0,"last_update":"2026-03-21T19:22:58.965747412Z"} +2026/03/21 19:23:03 [log_collector] {"stage_name":"log_collector","events_processed":8514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1702.8,"last_update":"2026-03-21T19:22:58.869514561Z"} +2026/03/21 19:23:03 ───────────────────────────────────────────────── +2026/03/21 19:23:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:23:08 [log_collector] {"stage_name":"log_collector","events_processed":8517,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1703.4,"last_update":"2026-03-21T19:23:03.86945817Z"} +2026/03/21 19:23:08 [metric_collector] {"stage_name":"metric_collector","events_processed":4634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":926.8,"last_update":"2026-03-21T19:23:03.869687619Z"} +2026/03/21 19:23:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:23:03.875675717Z"} +2026/03/21 19:23:08 [transform_engine] {"stage_name":"transform_engine","events_processed":154,"events_dropped":0,"avg_latency_ms":760.7242131741651,"throughput_eps":0,"last_update":"2026-03-21T19:23:03.965819887Z"} +2026/03/21 19:23:08 [detection_layer] {"stage_name":"detection_layer","events_processed":154,"events_dropped":0,"avg_latency_ms":16.54862401862212,"throughput_eps":0,"last_update":"2026-03-21T19:23:03.965810669Z"} +2026/03/21 19:23:08 ───────────────────────────────────────────────── +2026/03/21 19:23:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:23:13 [log_collector] {"stage_name":"log_collector","events_processed":8517,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1703.4,"last_update":"2026-03-21T19:23:08.869624151Z"} +2026/03/21 19:23:13 [metric_collector] {"stage_name":"metric_collector","events_processed":4639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":927.8,"last_update":"2026-03-21T19:23:08.869620393Z"} +2026/03/21 19:23:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:23:08.877033Z"} +2026/03/21 19:23:13 [transform_engine] {"stage_name":"transform_engine","events_processed":154,"events_dropped":0,"avg_latency_ms":760.7242131741651,"throughput_eps":0,"last_update":"2026-03-21T19:23:08.965157803Z"} +2026/03/21 19:23:13 [detection_layer] {"stage_name":"detection_layer","events_processed":154,"events_dropped":0,"avg_latency_ms":16.54862401862212,"throughput_eps":0,"last_update":"2026-03-21T19:23:08.966277336Z"} +2026/03/21 19:23:13 ───────────────────────────────────────────────── +2026/03/21 19:23:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:23:18 [log_collector] {"stage_name":"log_collector","events_processed":8528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1705.6,"last_update":"2026-03-21T19:23:13.870411856Z"} +2026/03/21 19:23:18 [metric_collector] {"stage_name":"metric_collector","events_processed":4644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":928.8,"last_update":"2026-03-21T19:23:13.870728703Z"} +2026/03/21 19:23:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1860,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:23:13.879654727Z"} +2026/03/21 19:23:18 [transform_engine] {"stage_name":"transform_engine","events_processed":154,"events_dropped":0,"avg_latency_ms":760.7242131741651,"throughput_eps":0,"last_update":"2026-03-21T19:23:13.965794588Z"} +2026/03/21 19:23:18 [detection_layer] {"stage_name":"detection_layer","events_processed":154,"events_dropped":0,"avg_latency_ms":16.54862401862212,"throughput_eps":0,"last_update":"2026-03-21T19:23:13.965781283Z"} +2026/03/21 19:23:18 ───────────────────────────────────────────────── +2026/03/21 19:23:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:23:23 [log_collector] {"stage_name":"log_collector","events_processed":8544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1708.8,"last_update":"2026-03-21T19:23:23.869860831Z"} +2026/03/21 19:23:23 [metric_collector] {"stage_name":"metric_collector","events_processed":4649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":929.8,"last_update":"2026-03-21T19:23:18.870555743Z"} +2026/03/21 19:23:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1862,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:23:18.877343633Z"} +2026/03/21 19:23:23 [transform_engine] {"stage_name":"transform_engine","events_processed":155,"events_dropped":0,"avg_latency_ms":647.8797547393322,"throughput_eps":0,"last_update":"2026-03-21T19:23:19.162068745Z"} +2026/03/21 19:23:23 [detection_layer] {"stage_name":"detection_layer","events_processed":154,"events_dropped":0,"avg_latency_ms":16.54862401862212,"throughput_eps":0,"last_update":"2026-03-21T19:23:18.965551234Z"} +2026/03/21 19:23:23 ───────────────────────────────────────────────── +2026/03/21 19:23:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:23:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:23:23.879145713Z"} +2026/03/21 19:23:28 [transform_engine] {"stage_name":"transform_engine","events_processed":155,"events_dropped":0,"avg_latency_ms":647.8797547393322,"throughput_eps":0,"last_update":"2026-03-21T19:23:23.965345037Z"} +2026/03/21 19:23:28 [detection_layer] {"stage_name":"detection_layer","events_processed":155,"events_dropped":0,"avg_latency_ms":15.907133414897698,"throughput_eps":0,"last_update":"2026-03-21T19:23:23.965333485Z"} +2026/03/21 19:23:28 [log_collector] {"stage_name":"log_collector","events_processed":8544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1708.8,"last_update":"2026-03-21T19:23:23.869860831Z"} +2026/03/21 19:23:28 [metric_collector] {"stage_name":"metric_collector","events_processed":4654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":930.8,"last_update":"2026-03-21T19:23:23.870338105Z"} +2026/03/21 19:23:28 ───────────────────────────────────────────────── +2026/03/21 19:23:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:23:33 [log_collector] {"stage_name":"log_collector","events_processed":8544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1708.8,"last_update":"2026-03-21T19:23:28.869508075Z"} +2026/03/21 19:23:33 [metric_collector] {"stage_name":"metric_collector","events_processed":4659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":931.8,"last_update":"2026-03-21T19:23:28.869997123Z"} +2026/03/21 19:23:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:23:28.878784422Z"} +2026/03/21 19:23:33 [transform_engine] {"stage_name":"transform_engine","events_processed":155,"events_dropped":0,"avg_latency_ms":647.8797547393322,"throughput_eps":0,"last_update":"2026-03-21T19:23:28.965961849Z"} +2026/03/21 19:23:33 [detection_layer] {"stage_name":"detection_layer","events_processed":155,"events_dropped":0,"avg_latency_ms":15.907133414897698,"throughput_eps":0,"last_update":"2026-03-21T19:23:28.965954455Z"} +2026/03/21 19:23:33 ───────────────────────────────────────────────── +2026/03/21 19:23:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:23:38 [transform_engine] {"stage_name":"transform_engine","events_processed":155,"events_dropped":0,"avg_latency_ms":647.8797547393322,"throughput_eps":0,"last_update":"2026-03-21T19:23:33.965585906Z"} +2026/03/21 19:23:38 [detection_layer] {"stage_name":"detection_layer","events_processed":155,"events_dropped":0,"avg_latency_ms":15.907133414897698,"throughput_eps":0,"last_update":"2026-03-21T19:23:33.965570677Z"} +2026/03/21 19:23:38 [log_collector] {"stage_name":"log_collector","events_processed":8544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1708.8,"last_update":"2026-03-21T19:23:33.87020109Z"} +2026/03/21 19:23:38 [metric_collector] {"stage_name":"metric_collector","events_processed":4664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":932.8,"last_update":"2026-03-21T19:23:33.87062358Z"} +2026/03/21 19:23:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1868,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:23:33.879200285Z"} +2026/03/21 19:23:38 ───────────────────────────────────────────────── +2026/03/21 19:23:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:23:43 [log_collector] {"stage_name":"log_collector","events_processed":8544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1708.8,"last_update":"2026-03-21T19:23:38.869745069Z"} +2026/03/21 19:23:43 [metric_collector] {"stage_name":"metric_collector","events_processed":4669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":933.8,"last_update":"2026-03-21T19:23:38.870376498Z"} +2026/03/21 19:23:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:23:38.878452625Z"} +2026/03/21 19:23:43 [transform_engine] {"stage_name":"transform_engine","events_processed":155,"events_dropped":0,"avg_latency_ms":647.8797547393322,"throughput_eps":0,"last_update":"2026-03-21T19:23:38.965738361Z"} +2026/03/21 19:23:43 [detection_layer] {"stage_name":"detection_layer","events_processed":155,"events_dropped":0,"avg_latency_ms":15.907133414897698,"throughput_eps":0,"last_update":"2026-03-21T19:23:38.965730595Z"} +2026/03/21 19:23:43 ───────────────────────────────────────────────── +2026/03/21 19:23:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:23:48 [detection_layer] {"stage_name":"detection_layer","events_processed":155,"events_dropped":0,"avg_latency_ms":15.907133414897698,"throughput_eps":0,"last_update":"2026-03-21T19:23:43.965271122Z"} +2026/03/21 19:23:48 [log_collector] {"stage_name":"log_collector","events_processed":8544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1708.8,"last_update":"2026-03-21T19:23:43.870272114Z"} +2026/03/21 19:23:48 [metric_collector] {"stage_name":"metric_collector","events_processed":4674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":934.8,"last_update":"2026-03-21T19:23:43.871025447Z"} +2026/03/21 19:23:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:23:43.879928347Z"} +2026/03/21 19:23:48 [transform_engine] {"stage_name":"transform_engine","events_processed":155,"events_dropped":0,"avg_latency_ms":647.8797547393322,"throughput_eps":0,"last_update":"2026-03-21T19:23:43.965116395Z"} +2026/03/21 19:23:48 ───────────────────────────────────────────────── +2026/03/21 19:23:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:23:53 [detection_layer] {"stage_name":"detection_layer","events_processed":155,"events_dropped":0,"avg_latency_ms":15.907133414897698,"throughput_eps":0,"last_update":"2026-03-21T19:23:48.965314005Z"} +2026/03/21 19:23:53 [log_collector] {"stage_name":"log_collector","events_processed":8544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1708.8,"last_update":"2026-03-21T19:23:48.869609707Z"} +2026/03/21 19:23:53 [metric_collector] {"stage_name":"metric_collector","events_processed":4679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":935.8,"last_update":"2026-03-21T19:23:48.869999753Z"} +2026/03/21 19:23:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:23:48.8781541Z"} +2026/03/21 19:23:53 [transform_engine] {"stage_name":"transform_engine","events_processed":156,"events_dropped":0,"avg_latency_ms":552.7966911914657,"throughput_eps":0,"last_update":"2026-03-21T19:23:49.137789262Z"} +2026/03/21 19:23:53 ───────────────────────────────────────────────── +2026/03/21 19:23:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:23:58 [log_collector] {"stage_name":"log_collector","events_processed":8544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1708.8,"last_update":"2026-03-21T19:23:53.869645381Z"} +2026/03/21 19:23:58 [metric_collector] {"stage_name":"metric_collector","events_processed":4684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":936.8,"last_update":"2026-03-21T19:23:53.870147022Z"} +2026/03/21 19:23:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1876,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:23:53.879835947Z"} +2026/03/21 19:23:58 [transform_engine] {"stage_name":"transform_engine","events_processed":156,"events_dropped":0,"avg_latency_ms":552.7966911914657,"throughput_eps":0,"last_update":"2026-03-21T19:23:53.965075325Z"} +2026/03/21 19:23:58 [detection_layer] {"stage_name":"detection_layer","events_processed":156,"events_dropped":0,"avg_latency_ms":16.50947293191816,"throughput_eps":0,"last_update":"2026-03-21T19:23:53.965424354Z"} +2026/03/21 19:23:58 ───────────────────────────────────────────────── +2026/03/21 19:24:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:24:03 [transform_engine] {"stage_name":"transform_engine","events_processed":156,"events_dropped":0,"avg_latency_ms":552.7966911914657,"throughput_eps":0,"last_update":"2026-03-21T19:23:58.965807969Z"} +2026/03/21 19:24:03 [detection_layer] {"stage_name":"detection_layer","events_processed":156,"events_dropped":0,"avg_latency_ms":16.50947293191816,"throughput_eps":0,"last_update":"2026-03-21T19:23:58.965796477Z"} +2026/03/21 19:24:03 [log_collector] {"stage_name":"log_collector","events_processed":8544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1708.8,"last_update":"2026-03-21T19:23:58.869640413Z"} +2026/03/21 19:24:03 [metric_collector] {"stage_name":"metric_collector","events_processed":4689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":937.8,"last_update":"2026-03-21T19:23:58.869820517Z"} +2026/03/21 19:24:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:23:58.879471982Z"} +2026/03/21 19:24:03 ───────────────────────────────────────────────── +2026/03/21 19:24:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:24:08 [log_collector] {"stage_name":"log_collector","events_processed":8544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1708.8,"last_update":"2026-03-21T19:24:03.869919312Z"} +2026/03/21 19:24:08 [metric_collector] {"stage_name":"metric_collector","events_processed":4694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":938.8,"last_update":"2026-03-21T19:24:03.870489173Z"} +2026/03/21 19:24:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:24:03.878740876Z"} +2026/03/21 19:24:08 [transform_engine] {"stage_name":"transform_engine","events_processed":156,"events_dropped":0,"avg_latency_ms":552.7966911914657,"throughput_eps":0,"last_update":"2026-03-21T19:24:03.966125793Z"} +2026/03/21 19:24:08 [detection_layer] {"stage_name":"detection_layer","events_processed":156,"events_dropped":0,"avg_latency_ms":16.50947293191816,"throughput_eps":0,"last_update":"2026-03-21T19:24:03.966111635Z"} +2026/03/21 19:24:08 ───────────────────────────────────────────────── +2026/03/21 19:24:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:24:13 [transform_engine] {"stage_name":"transform_engine","events_processed":156,"events_dropped":0,"avg_latency_ms":552.7966911914657,"throughput_eps":0,"last_update":"2026-03-21T19:24:08.965576719Z"} +2026/03/21 19:24:13 [detection_layer] {"stage_name":"detection_layer","events_processed":156,"events_dropped":0,"avg_latency_ms":16.50947293191816,"throughput_eps":0,"last_update":"2026-03-21T19:24:08.965563153Z"} +2026/03/21 19:24:13 [log_collector] {"stage_name":"log_collector","events_processed":8544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1708.8,"last_update":"2026-03-21T19:24:08.869501289Z"} +2026/03/21 19:24:13 [metric_collector] {"stage_name":"metric_collector","events_processed":4699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":939.8,"last_update":"2026-03-21T19:24:08.869913167Z"} +2026/03/21 19:24:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:24:08.879148094Z"} +2026/03/21 19:24:13 ───────────────────────────────────────────────── +2026/03/21 19:24:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:24:18 [log_collector] {"stage_name":"log_collector","events_processed":8544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1708.8,"last_update":"2026-03-21T19:24:13.870029564Z"} +2026/03/21 19:24:18 [metric_collector] {"stage_name":"metric_collector","events_processed":4704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":940.8,"last_update":"2026-03-21T19:24:13.870271687Z"} +2026/03/21 19:24:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:24:13.878707814Z"} +2026/03/21 19:24:18 [transform_engine] {"stage_name":"transform_engine","events_processed":156,"events_dropped":0,"avg_latency_ms":552.7966911914657,"throughput_eps":0,"last_update":"2026-03-21T19:24:13.966074856Z"} +2026/03/21 19:24:18 [detection_layer] {"stage_name":"detection_layer","events_processed":156,"events_dropped":0,"avg_latency_ms":16.50947293191816,"throughput_eps":0,"last_update":"2026-03-21T19:24:13.966059977Z"} +2026/03/21 19:24:18 ───────────────────────────────────────────────── +2026/03/21 19:24:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:24:23 [detection_layer] {"stage_name":"detection_layer","events_processed":156,"events_dropped":0,"avg_latency_ms":16.50947293191816,"throughput_eps":0,"last_update":"2026-03-21T19:24:18.966010158Z"} +2026/03/21 19:24:23 [log_collector] {"stage_name":"log_collector","events_processed":8544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1708.8,"last_update":"2026-03-21T19:24:18.86943948Z"} +2026/03/21 19:24:23 [metric_collector] {"stage_name":"metric_collector","events_processed":4709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":941.8,"last_update":"2026-03-21T19:24:18.869785714Z"} +2026/03/21 19:24:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1886,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:24:18.878710275Z"} +2026/03/21 19:24:23 [transform_engine] {"stage_name":"transform_engine","events_processed":157,"events_dropped":0,"avg_latency_ms":456.41091935317263,"throughput_eps":0,"last_update":"2026-03-21T19:24:19.036886999Z"} +2026/03/21 19:24:23 ───────────────────────────────────────────────── +2026/03/21 19:24:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:24:28 [metric_collector] {"stage_name":"metric_collector","events_processed":4714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":942.8,"last_update":"2026-03-21T19:24:23.869815059Z"} +2026/03/21 19:24:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:24:23.879242775Z"} +2026/03/21 19:24:28 [transform_engine] {"stage_name":"transform_engine","events_processed":157,"events_dropped":0,"avg_latency_ms":456.41091935317263,"throughput_eps":0,"last_update":"2026-03-21T19:24:23.96559332Z"} +2026/03/21 19:24:28 [detection_layer] {"stage_name":"detection_layer","events_processed":157,"events_dropped":0,"avg_latency_ms":16.88657234553453,"throughput_eps":0,"last_update":"2026-03-21T19:24:23.965698601Z"} +2026/03/21 19:24:28 [log_collector] {"stage_name":"log_collector","events_processed":8544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1708.8,"last_update":"2026-03-21T19:24:23.869471771Z"} +2026/03/21 19:24:28 ───────────────────────────────────────────────── +2026/03/21 19:24:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:24:33 [log_collector] {"stage_name":"log_collector","events_processed":8544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1708.8,"last_update":"2026-03-21T19:24:28.869694855Z"} +2026/03/21 19:24:33 [metric_collector] {"stage_name":"metric_collector","events_processed":4719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":943.8,"last_update":"2026-03-21T19:24:28.869978028Z"} +2026/03/21 19:24:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:24:28.878864307Z"} +2026/03/21 19:24:33 [transform_engine] {"stage_name":"transform_engine","events_processed":157,"events_dropped":0,"avg_latency_ms":456.41091935317263,"throughput_eps":0,"last_update":"2026-03-21T19:24:28.966131989Z"} +2026/03/21 19:24:33 [detection_layer] {"stage_name":"detection_layer","events_processed":157,"events_dropped":0,"avg_latency_ms":16.88657234553453,"throughput_eps":0,"last_update":"2026-03-21T19:24:28.966027279Z"} +2026/03/21 19:24:33 ───────────────────────────────────────────────── +Saved state: 12 clusters, 8545 messages, reason: none +2026/03/21 19:24:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:24:38 [log_collector] {"stage_name":"log_collector","events_processed":8558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1711.6,"last_update":"2026-03-21T19:24:38.869415244Z"} +2026/03/21 19:24:38 [metric_collector] {"stage_name":"metric_collector","events_processed":4724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":944.8,"last_update":"2026-03-21T19:24:33.870697506Z"} +2026/03/21 19:24:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1892,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:24:33.878795305Z"} +2026/03/21 19:24:38 [transform_engine] {"stage_name":"transform_engine","events_processed":157,"events_dropped":0,"avg_latency_ms":456.41091935317263,"throughput_eps":0,"last_update":"2026-03-21T19:24:33.966192344Z"} +2026/03/21 19:24:38 [detection_layer] {"stage_name":"detection_layer","events_processed":157,"events_dropped":0,"avg_latency_ms":16.88657234553453,"throughput_eps":0,"last_update":"2026-03-21T19:24:33.96614316Z"} +2026/03/21 19:24:38 ───────────────────────────────────────────────── +2026/03/21 19:24:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:24:43 [log_collector] {"stage_name":"log_collector","events_processed":8558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1711.6,"last_update":"2026-03-21T19:24:38.869415244Z"} +2026/03/21 19:24:43 [metric_collector] {"stage_name":"metric_collector","events_processed":4729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":945.8,"last_update":"2026-03-21T19:24:38.869894994Z"} +2026/03/21 19:24:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:24:38.877608035Z"} +2026/03/21 19:24:43 [transform_engine] {"stage_name":"transform_engine","events_processed":157,"events_dropped":0,"avg_latency_ms":456.41091935317263,"throughput_eps":0,"last_update":"2026-03-21T19:24:38.965888737Z"} +2026/03/21 19:24:43 [detection_layer] {"stage_name":"detection_layer","events_processed":157,"events_dropped":0,"avg_latency_ms":16.88657234553453,"throughput_eps":0,"last_update":"2026-03-21T19:24:38.966001243Z"} +2026/03/21 19:24:43 ───────────────────────────────────────────────── +2026/03/21 19:24:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:24:48 [log_collector] {"stage_name":"log_collector","events_processed":8558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1711.6,"last_update":"2026-03-21T19:24:43.86974328Z"} +2026/03/21 19:24:48 [metric_collector] {"stage_name":"metric_collector","events_processed":4734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":946.8,"last_update":"2026-03-21T19:24:43.870176129Z"} +2026/03/21 19:24:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1896,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:24:43.878631162Z"} +2026/03/21 19:24:48 [transform_engine] {"stage_name":"transform_engine","events_processed":157,"events_dropped":0,"avg_latency_ms":456.41091935317263,"throughput_eps":0,"last_update":"2026-03-21T19:24:43.965827037Z"} +2026/03/21 19:24:48 [detection_layer] {"stage_name":"detection_layer","events_processed":157,"events_dropped":0,"avg_latency_ms":16.88657234553453,"throughput_eps":0,"last_update":"2026-03-21T19:24:43.965868045Z"} +2026/03/21 19:24:48 ───────────────────────────────────────────────── +2026/03/21 19:24:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:24:53 [transform_engine] {"stage_name":"transform_engine","events_processed":158,"events_dropped":0,"avg_latency_ms":387.6001760825381,"throughput_eps":0,"last_update":"2026-03-21T19:24:49.078272942Z"} +2026/03/21 19:24:53 [detection_layer] {"stage_name":"detection_layer","events_processed":157,"events_dropped":0,"avg_latency_ms":16.88657234553453,"throughput_eps":0,"last_update":"2026-03-21T19:24:48.965958963Z"} +2026/03/21 19:24:53 [log_collector] {"stage_name":"log_collector","events_processed":8558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1711.6,"last_update":"2026-03-21T19:24:48.870310689Z"} +2026/03/21 19:24:53 [metric_collector] {"stage_name":"metric_collector","events_processed":4739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":947.8,"last_update":"2026-03-21T19:24:48.870659558Z"} +2026/03/21 19:24:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1898,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:24:48.879759766Z"} +2026/03/21 19:24:53 ───────────────────────────────────────────────── +2026/03/21 19:24:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:24:58 [log_collector] {"stage_name":"log_collector","events_processed":8558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1711.6,"last_update":"2026-03-21T19:24:58.869960839Z"} +2026/03/21 19:24:58 [metric_collector] {"stage_name":"metric_collector","events_processed":4744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":948.8,"last_update":"2026-03-21T19:24:53.870027796Z"} +2026/03/21 19:24:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1900,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:24:53.879260638Z"} +2026/03/21 19:24:58 [transform_engine] {"stage_name":"transform_engine","events_processed":158,"events_dropped":0,"avg_latency_ms":387.6001760825381,"throughput_eps":0,"last_update":"2026-03-21T19:24:53.965606135Z"} +2026/03/21 19:24:58 [detection_layer] {"stage_name":"detection_layer","events_processed":158,"events_dropped":0,"avg_latency_ms":17.041286476427622,"throughput_eps":0,"last_update":"2026-03-21T19:24:53.965582289Z"} +2026/03/21 19:24:58 ───────────────────────────────────────────────── +2026/03/21 19:25:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:25:03 [log_collector] {"stage_name":"log_collector","events_processed":8558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1711.6,"last_update":"2026-03-21T19:24:58.869960839Z"} +2026/03/21 19:25:03 [metric_collector] {"stage_name":"metric_collector","events_processed":4749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":949.8,"last_update":"2026-03-21T19:24:58.870434316Z"} +2026/03/21 19:25:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:24:58.879713056Z"} +2026/03/21 19:25:03 [transform_engine] {"stage_name":"transform_engine","events_processed":158,"events_dropped":0,"avg_latency_ms":387.6001760825381,"throughput_eps":0,"last_update":"2026-03-21T19:24:58.96601541Z"} +2026/03/21 19:25:03 [detection_layer] {"stage_name":"detection_layer","events_processed":158,"events_dropped":0,"avg_latency_ms":17.041286476427622,"throughput_eps":0,"last_update":"2026-03-21T19:24:58.965976045Z"} +2026/03/21 19:25:03 ───────────────────────────────────────────────── +2026/03/21 19:25:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:25:08 [log_collector] {"stage_name":"log_collector","events_processed":8558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1711.6,"last_update":"2026-03-21T19:25:03.86948408Z"} +2026/03/21 19:25:08 [metric_collector] {"stage_name":"metric_collector","events_processed":4754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":950.8,"last_update":"2026-03-21T19:25:03.869925486Z"} +2026/03/21 19:25:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:25:03.87844358Z"} +2026/03/21 19:25:08 [transform_engine] {"stage_name":"transform_engine","events_processed":158,"events_dropped":0,"avg_latency_ms":387.6001760825381,"throughput_eps":0,"last_update":"2026-03-21T19:25:03.965705251Z"} +2026/03/21 19:25:08 [detection_layer] {"stage_name":"detection_layer","events_processed":158,"events_dropped":0,"avg_latency_ms":17.041286476427622,"throughput_eps":0,"last_update":"2026-03-21T19:25:03.96564727Z"} +2026/03/21 19:25:08 ───────────────────────────────────────────────── +2026/03/21 19:25:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:25:13 [log_collector] {"stage_name":"log_collector","events_processed":8558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1711.6,"last_update":"2026-03-21T19:25:08.869746902Z"} +2026/03/21 19:25:13 [metric_collector] {"stage_name":"metric_collector","events_processed":4759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":951.8,"last_update":"2026-03-21T19:25:08.870389764Z"} +2026/03/21 19:25:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1906,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:25:08.879014231Z"} +2026/03/21 19:25:13 [transform_engine] {"stage_name":"transform_engine","events_processed":158,"events_dropped":0,"avg_latency_ms":387.6001760825381,"throughput_eps":0,"last_update":"2026-03-21T19:25:08.965118245Z"} +2026/03/21 19:25:13 [detection_layer] {"stage_name":"detection_layer","events_processed":158,"events_dropped":0,"avg_latency_ms":17.041286476427622,"throughput_eps":0,"last_update":"2026-03-21T19:25:08.966225135Z"} +2026/03/21 19:25:13 ───────────────────────────────────────────────── +2026/03/21 19:25:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:25:18 [log_collector] {"stage_name":"log_collector","events_processed":8558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1711.6,"last_update":"2026-03-21T19:25:13.869489884Z"} +2026/03/21 19:25:18 [metric_collector] {"stage_name":"metric_collector","events_processed":4764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":952.8,"last_update":"2026-03-21T19:25:13.869958952Z"} +2026/03/21 19:25:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1908,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:25:13.878058113Z"} +2026/03/21 19:25:18 [transform_engine] {"stage_name":"transform_engine","events_processed":158,"events_dropped":0,"avg_latency_ms":387.6001760825381,"throughput_eps":0,"last_update":"2026-03-21T19:25:13.965392124Z"} +2026/03/21 19:25:18 [detection_layer] {"stage_name":"detection_layer","events_processed":158,"events_dropped":0,"avg_latency_ms":17.041286476427622,"throughput_eps":0,"last_update":"2026-03-21T19:25:13.965326027Z"} +2026/03/21 19:25:18 ───────────────────────────────────────────────── +2026/03/21 19:25:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:25:23 [detection_layer] {"stage_name":"detection_layer","events_processed":158,"events_dropped":0,"avg_latency_ms":17.041286476427622,"throughput_eps":0,"last_update":"2026-03-21T19:25:18.966502986Z"} +2026/03/21 19:25:23 [log_collector] {"stage_name":"log_collector","events_processed":8558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1711.6,"last_update":"2026-03-21T19:25:23.870070624Z"} +2026/03/21 19:25:23 [metric_collector] {"stage_name":"metric_collector","events_processed":4769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":953.8,"last_update":"2026-03-21T19:25:18.869967003Z"} +2026/03/21 19:25:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:25:18.879091388Z"} +2026/03/21 19:25:23 [transform_engine] {"stage_name":"transform_engine","events_processed":159,"events_dropped":0,"avg_latency_ms":323.5044988660305,"throughput_eps":0,"last_update":"2026-03-21T19:25:19.032550438Z"} +2026/03/21 19:25:23 ───────────────────────────────────────────────── +2026/03/21 19:25:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:25:28 [metric_collector] {"stage_name":"metric_collector","events_processed":4774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":954.8,"last_update":"2026-03-21T19:25:23.870530946Z"} +2026/03/21 19:25:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1912,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:25:23.879092933Z"} +2026/03/21 19:25:28 [transform_engine] {"stage_name":"transform_engine","events_processed":159,"events_dropped":0,"avg_latency_ms":323.5044988660305,"throughput_eps":0,"last_update":"2026-03-21T19:25:23.965431457Z"} +2026/03/21 19:25:28 [detection_layer] {"stage_name":"detection_layer","events_processed":159,"events_dropped":0,"avg_latency_ms":17.689504181142098,"throughput_eps":0,"last_update":"2026-03-21T19:25:23.965546677Z"} +2026/03/21 19:25:28 [log_collector] {"stage_name":"log_collector","events_processed":8558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1711.6,"last_update":"2026-03-21T19:25:23.870070624Z"} +2026/03/21 19:25:28 ───────────────────────────────────────────────── +2026/03/21 19:25:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:25:33 [detection_layer] {"stage_name":"detection_layer","events_processed":159,"events_dropped":0,"avg_latency_ms":17.689504181142098,"throughput_eps":0,"last_update":"2026-03-21T19:25:28.96537889Z"} +2026/03/21 19:25:33 [log_collector] {"stage_name":"log_collector","events_processed":8558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1711.6,"last_update":"2026-03-21T19:25:33.870086908Z"} +2026/03/21 19:25:33 [metric_collector] {"stage_name":"metric_collector","events_processed":4779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":955.8,"last_update":"2026-03-21T19:25:28.870116917Z"} +2026/03/21 19:25:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:25:28.878098764Z"} +2026/03/21 19:25:33 [transform_engine] {"stage_name":"transform_engine","events_processed":159,"events_dropped":0,"avg_latency_ms":323.5044988660305,"throughput_eps":0,"last_update":"2026-03-21T19:25:28.965402475Z"} +2026/03/21 19:25:33 ───────────────────────────────────────────────── +2026/03/21 19:25:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:25:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:25:33.878889306Z"} +2026/03/21 19:25:38 [transform_engine] {"stage_name":"transform_engine","events_processed":159,"events_dropped":0,"avg_latency_ms":323.5044988660305,"throughput_eps":0,"last_update":"2026-03-21T19:25:33.966155917Z"} +2026/03/21 19:25:38 [detection_layer] {"stage_name":"detection_layer","events_processed":159,"events_dropped":0,"avg_latency_ms":17.689504181142098,"throughput_eps":0,"last_update":"2026-03-21T19:25:33.966051246Z"} +2026/03/21 19:25:38 [log_collector] {"stage_name":"log_collector","events_processed":8558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1711.6,"last_update":"2026-03-21T19:25:33.870086908Z"} +2026/03/21 19:25:38 [metric_collector] {"stage_name":"metric_collector","events_processed":4784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":956.8,"last_update":"2026-03-21T19:25:33.870465954Z"} +2026/03/21 19:25:38 ───────────────────────────────────────────────── +Saved state: 12 clusters, 8559 messages, reason: none +2026/03/21 19:25:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:25:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1918,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:25:38.879049267Z"} +2026/03/21 19:25:43 [transform_engine] {"stage_name":"transform_engine","events_processed":159,"events_dropped":0,"avg_latency_ms":323.5044988660305,"throughput_eps":0,"last_update":"2026-03-21T19:25:38.965167238Z"} +2026/03/21 19:25:43 [detection_layer] {"stage_name":"detection_layer","events_processed":159,"events_dropped":0,"avg_latency_ms":17.689504181142098,"throughput_eps":0,"last_update":"2026-03-21T19:25:38.96629049Z"} +2026/03/21 19:25:43 [log_collector] {"stage_name":"log_collector","events_processed":8563,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1712.6,"last_update":"2026-03-21T19:25:43.869401836Z"} +2026/03/21 19:25:43 [metric_collector] {"stage_name":"metric_collector","events_processed":4789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":957.8,"last_update":"2026-03-21T19:25:38.87014813Z"} +2026/03/21 19:25:43 ───────────────────────────────────────────────── +2026/03/21 19:25:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:25:48 [log_collector] {"stage_name":"log_collector","events_processed":8563,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1712.6,"last_update":"2026-03-21T19:25:43.869401836Z"} +2026/03/21 19:25:48 [metric_collector] {"stage_name":"metric_collector","events_processed":4794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":958.8,"last_update":"2026-03-21T19:25:43.869653097Z"} +2026/03/21 19:25:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1920,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:25:43.876036763Z"} +2026/03/21 19:25:48 [transform_engine] {"stage_name":"transform_engine","events_processed":159,"events_dropped":0,"avg_latency_ms":323.5044988660305,"throughput_eps":0,"last_update":"2026-03-21T19:25:43.965143899Z"} +2026/03/21 19:25:48 [detection_layer] {"stage_name":"detection_layer","events_processed":159,"events_dropped":0,"avg_latency_ms":17.689504181142098,"throughput_eps":0,"last_update":"2026-03-21T19:25:43.965519769Z"} +2026/03/21 19:25:48 ───────────────────────────────────────────────── +2026/03/21 19:25:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:25:53 [log_collector] {"stage_name":"log_collector","events_processed":8563,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1712.6,"last_update":"2026-03-21T19:25:48.870026152Z"} +2026/03/21 19:25:53 [metric_collector] {"stage_name":"metric_collector","events_processed":4799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":959.8,"last_update":"2026-03-21T19:25:48.87041669Z"} +2026/03/21 19:25:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:25:48.879107424Z"} +2026/03/21 19:25:53 [transform_engine] {"stage_name":"transform_engine","events_processed":159,"events_dropped":0,"avg_latency_ms":323.5044988660305,"throughput_eps":0,"last_update":"2026-03-21T19:25:43.965143899Z"} +2026/03/21 19:25:53 [detection_layer] {"stage_name":"detection_layer","events_processed":159,"events_dropped":0,"avg_latency_ms":17.689504181142098,"throughput_eps":0,"last_update":"2026-03-21T19:25:48.96536329Z"} +2026/03/21 19:25:53 ───────────────────────────────────────────────── +2026/03/21 19:25:55 [ANOMALY] time=2026-03-21T19:25:55Z score=0.8959 method=SEAD details=MAD!:w=0.26,s=0.97 RRCF-fast:w=0.19,s=0.85 RRCF-mid!:w=0.18,s=0.89 RRCF-slow!:w=0.16,s=0.92 COPOD!:w=0.21,s=0.83 +2026/03/21 19:25:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:25:58 [detection_layer] {"stage_name":"detection_layer","events_processed":159,"events_dropped":0,"avg_latency_ms":17.689504181142098,"throughput_eps":0,"last_update":"2026-03-21T19:25:53.96590423Z"} +2026/03/21 19:25:58 [log_collector] {"stage_name":"log_collector","events_processed":8563,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1712.6,"last_update":"2026-03-21T19:25:53.870108163Z"} +2026/03/21 19:25:58 [metric_collector] {"stage_name":"metric_collector","events_processed":4804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":960.8,"last_update":"2026-03-21T19:25:53.870495014Z"} +2026/03/21 19:25:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:25:53.876692513Z"} +2026/03/21 19:25:58 [transform_engine] {"stage_name":"transform_engine","events_processed":160,"events_dropped":0,"avg_latency_ms":1536.6549604928246,"throughput_eps":0,"last_update":"2026-03-21T19:25:55.354552978Z"} +2026/03/21 19:25:58 ───────────────────────────────────────────────── +2026/03/21 19:26:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:26:03 [detection_layer] {"stage_name":"detection_layer","events_processed":160,"events_dropped":0,"avg_latency_ms":16.19731314491368,"throughput_eps":0,"last_update":"2026-03-21T19:25:58.965596228Z"} +2026/03/21 19:26:03 [log_collector] {"stage_name":"log_collector","events_processed":8563,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1712.6,"last_update":"2026-03-21T19:25:58.870361386Z"} +2026/03/21 19:26:03 [metric_collector] {"stage_name":"metric_collector","events_processed":4809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":961.8,"last_update":"2026-03-21T19:25:58.870731536Z"} +2026/03/21 19:26:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:25:58.87842027Z"} +2026/03/21 19:26:03 [transform_engine] {"stage_name":"transform_engine","events_processed":160,"events_dropped":0,"avg_latency_ms":1536.6549604928246,"throughput_eps":0,"last_update":"2026-03-21T19:25:58.96566471Z"} +2026/03/21 19:26:03 ───────────────────────────────────────────────── +2026/03/21 19:26:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:26:08 [log_collector] {"stage_name":"log_collector","events_processed":8563,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1712.6,"last_update":"2026-03-21T19:26:08.870431832Z"} +2026/03/21 19:26:08 [metric_collector] {"stage_name":"metric_collector","events_processed":4819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":963.8,"last_update":"2026-03-21T19:26:08.870425801Z"} +2026/03/21 19:26:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:26:03.877077268Z"} +2026/03/21 19:26:08 [transform_engine] {"stage_name":"transform_engine","events_processed":160,"events_dropped":0,"avg_latency_ms":1536.6549604928246,"throughput_eps":0,"last_update":"2026-03-21T19:26:03.965184137Z"} +2026/03/21 19:26:08 [detection_layer] {"stage_name":"detection_layer","events_processed":160,"events_dropped":0,"avg_latency_ms":16.19731314491368,"throughput_eps":0,"last_update":"2026-03-21T19:26:03.966270047Z"} +2026/03/21 19:26:08 ───────────────────────────────────────────────── +2026/03/21 19:26:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:26:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1930,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:26:08.877860671Z"} +2026/03/21 19:26:13 [transform_engine] {"stage_name":"transform_engine","events_processed":160,"events_dropped":0,"avg_latency_ms":1536.6549604928246,"throughput_eps":0,"last_update":"2026-03-21T19:26:08.965130518Z"} +2026/03/21 19:26:13 [detection_layer] {"stage_name":"detection_layer","events_processed":160,"events_dropped":0,"avg_latency_ms":16.19731314491368,"throughput_eps":0,"last_update":"2026-03-21T19:26:08.966225495Z"} +2026/03/21 19:26:13 [log_collector] {"stage_name":"log_collector","events_processed":8563,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1712.6,"last_update":"2026-03-21T19:26:08.870431832Z"} +2026/03/21 19:26:13 [metric_collector] {"stage_name":"metric_collector","events_processed":4819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":963.8,"last_update":"2026-03-21T19:26:08.870425801Z"} +2026/03/21 19:26:13 ───────────────────────────────────────────────── +2026/03/21 19:26:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:26:18 [log_collector] {"stage_name":"log_collector","events_processed":8563,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1712.6,"last_update":"2026-03-21T19:26:13.869733151Z"} +2026/03/21 19:26:18 [metric_collector] {"stage_name":"metric_collector","events_processed":4824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":964.8,"last_update":"2026-03-21T19:26:13.869947802Z"} +2026/03/21 19:26:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:26:13.875680822Z"} +2026/03/21 19:26:18 [transform_engine] {"stage_name":"transform_engine","events_processed":160,"events_dropped":0,"avg_latency_ms":1536.6549604928246,"throughput_eps":0,"last_update":"2026-03-21T19:26:13.965862666Z"} +2026/03/21 19:26:18 [detection_layer] {"stage_name":"detection_layer","events_processed":160,"events_dropped":0,"avg_latency_ms":16.19731314491368,"throughput_eps":0,"last_update":"2026-03-21T19:26:13.965846485Z"} +2026/03/21 19:26:18 ───────────────────────────────────────────────── +2026/03/21 19:26:19 [ANOMALY] time=2026-03-21T19:26:19Z score=0.9458 method=SEAD details=MAD!:w=0.26,s=0.96 RRCF-fast!:w=0.19,s=0.96 RRCF-mid!:w=0.18,s=1.00 RRCF-slow!:w=0.16,s=1.00 COPOD!:w=0.22,s=0.83 +2026/03/21 19:26:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:26:23 [metric_collector] {"stage_name":"metric_collector","events_processed":4829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":965.8,"last_update":"2026-03-21T19:26:18.870109312Z"} +2026/03/21 19:26:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:26:18.877576033Z"} +2026/03/21 19:26:23 [transform_engine] {"stage_name":"transform_engine","events_processed":160,"events_dropped":0,"avg_latency_ms":1536.6549604928246,"throughput_eps":0,"last_update":"2026-03-21T19:26:18.96577003Z"} +2026/03/21 19:26:23 [detection_layer] {"stage_name":"detection_layer","events_processed":160,"events_dropped":0,"avg_latency_ms":16.19731314491368,"throughput_eps":0,"last_update":"2026-03-21T19:26:18.965834935Z"} +2026/03/21 19:26:23 [log_collector] {"stage_name":"log_collector","events_processed":8563,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1712.6,"last_update":"2026-03-21T19:26:18.869651205Z"} +2026/03/21 19:26:23 ───────────────────────────────────────────────── +2026/03/21 19:26:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:26:28 [detection_layer] {"stage_name":"detection_layer","events_processed":161,"events_dropped":0,"avg_latency_ms":14.779757915930944,"throughput_eps":0,"last_update":"2026-03-21T19:26:23.965693456Z"} +2026/03/21 19:26:28 [log_collector] {"stage_name":"log_collector","events_processed":8574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1714.8,"last_update":"2026-03-21T19:26:28.869515467Z"} +2026/03/21 19:26:28 [metric_collector] {"stage_name":"metric_collector","events_processed":4834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":966.8,"last_update":"2026-03-21T19:26:23.870300873Z"} +2026/03/21 19:26:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:26:23.876315472Z"} +2026/03/21 19:26:28 [transform_engine] {"stage_name":"transform_engine","events_processed":161,"events_dropped":0,"avg_latency_ms":1334.3323463942597,"throughput_eps":0,"last_update":"2026-03-21T19:26:23.965626297Z"} +2026/03/21 19:26:28 ───────────────────────────────────────────────── +2026/03/21 19:26:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:26:33 [detection_layer] {"stage_name":"detection_layer","events_processed":161,"events_dropped":0,"avg_latency_ms":14.779757915930944,"throughput_eps":0,"last_update":"2026-03-21T19:26:28.965830177Z"} +2026/03/21 19:26:33 [log_collector] {"stage_name":"log_collector","events_processed":8574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1714.8,"last_update":"2026-03-21T19:26:28.869515467Z"} +2026/03/21 19:26:33 [metric_collector] {"stage_name":"metric_collector","events_processed":4839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":967.8,"last_update":"2026-03-21T19:26:28.869927826Z"} +2026/03/21 19:26:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:26:28.87855582Z"} +2026/03/21 19:26:33 [transform_engine] {"stage_name":"transform_engine","events_processed":161,"events_dropped":0,"avg_latency_ms":1334.3323463942597,"throughput_eps":0,"last_update":"2026-03-21T19:26:28.9657016Z"} +2026/03/21 19:26:33 ───────────────────────────────────────────────── +2026/03/21 19:26:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:26:38 [log_collector] {"stage_name":"log_collector","events_processed":8803,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1760.6,"last_update":"2026-03-21T19:26:33.869783741Z"} +2026/03/21 19:26:38 [metric_collector] {"stage_name":"metric_collector","events_processed":4844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":968.8,"last_update":"2026-03-21T19:26:33.869928077Z"} +2026/03/21 19:26:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1940,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:26:33.876341821Z"} +2026/03/21 19:26:38 [transform_engine] {"stage_name":"transform_engine","events_processed":161,"events_dropped":0,"avg_latency_ms":1334.3323463942597,"throughput_eps":0,"last_update":"2026-03-21T19:26:33.965618241Z"} +2026/03/21 19:26:38 [detection_layer] {"stage_name":"detection_layer","events_processed":161,"events_dropped":0,"avg_latency_ms":14.779757915930944,"throughput_eps":0,"last_update":"2026-03-21T19:26:33.965630455Z"} +2026/03/21 19:26:38 ───────────────────────────────────────────────── +2026/03/21 19:26:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:26:43 [log_collector] {"stage_name":"log_collector","events_processed":8929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1785.8,"last_update":"2026-03-21T19:26:38.869705666Z"} +2026/03/21 19:26:43 [metric_collector] {"stage_name":"metric_collector","events_processed":4849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":969.8,"last_update":"2026-03-21T19:26:38.869858439Z"} +2026/03/21 19:26:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:26:38.878210154Z"} +2026/03/21 19:26:43 [transform_engine] {"stage_name":"transform_engine","events_processed":161,"events_dropped":0,"avg_latency_ms":1334.3323463942597,"throughput_eps":0,"last_update":"2026-03-21T19:26:38.965499168Z"} +2026/03/21 19:26:43 [detection_layer] {"stage_name":"detection_layer","events_processed":161,"events_dropped":0,"avg_latency_ms":14.779757915930944,"throughput_eps":0,"last_update":"2026-03-21T19:26:38.965528003Z"} +2026/03/21 19:26:43 ───────────────────────────────────────────────── +2026/03/21 19:26:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:26:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:26:43.87868988Z"} +2026/03/21 19:26:48 [transform_engine] {"stage_name":"transform_engine","events_processed":161,"events_dropped":0,"avg_latency_ms":1334.3323463942597,"throughput_eps":0,"last_update":"2026-03-21T19:26:43.965921755Z"} +2026/03/21 19:26:48 [detection_layer] {"stage_name":"detection_layer","events_processed":161,"events_dropped":0,"avg_latency_ms":14.779757915930944,"throughput_eps":0,"last_update":"2026-03-21T19:26:43.966085188Z"} +2026/03/21 19:26:48 [log_collector] {"stage_name":"log_collector","events_processed":8929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1785.8,"last_update":"2026-03-21T19:26:48.869643206Z"} +2026/03/21 19:26:48 [metric_collector] {"stage_name":"metric_collector","events_processed":4854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":970.8,"last_update":"2026-03-21T19:26:43.870463886Z"} +2026/03/21 19:26:48 ───────────────────────────────────────────────── +2026/03/21 19:26:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:26:53 [log_collector] {"stage_name":"log_collector","events_processed":8929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1785.8,"last_update":"2026-03-21T19:26:53.870143267Z"} +2026/03/21 19:26:53 [metric_collector] {"stage_name":"metric_collector","events_processed":4859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":971.8,"last_update":"2026-03-21T19:26:48.870186507Z"} +2026/03/21 19:26:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:26:48.878831883Z"} +2026/03/21 19:26:53 [transform_engine] {"stage_name":"transform_engine","events_processed":162,"events_dropped":0,"avg_latency_ms":1090.794209315408,"throughput_eps":0,"last_update":"2026-03-21T19:26:49.082737381Z"} +2026/03/21 19:26:53 [detection_layer] {"stage_name":"detection_layer","events_processed":161,"events_dropped":0,"avg_latency_ms":14.779757915930944,"throughput_eps":0,"last_update":"2026-03-21T19:26:48.966044552Z"} +2026/03/21 19:26:53 ───────────────────────────────────────────────── +Saved state: 12 clusters, 8930 messages, reason: none +2026/03/21 19:26:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:26:58 [log_collector] {"stage_name":"log_collector","events_processed":8932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1786.4,"last_update":"2026-03-21T19:26:58.87022499Z"} +2026/03/21 19:26:58 [metric_collector] {"stage_name":"metric_collector","events_processed":4864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":972.8,"last_update":"2026-03-21T19:26:53.870706456Z"} +2026/03/21 19:26:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:26:53.879823337Z"} +2026/03/21 19:26:58 [transform_engine] {"stage_name":"transform_engine","events_processed":162,"events_dropped":0,"avg_latency_ms":1090.794209315408,"throughput_eps":0,"last_update":"2026-03-21T19:26:53.966199823Z"} +2026/03/21 19:26:58 [detection_layer] {"stage_name":"detection_layer","events_processed":162,"events_dropped":0,"avg_latency_ms":15.143287732744756,"throughput_eps":0,"last_update":"2026-03-21T19:26:53.966164265Z"} +2026/03/21 19:26:58 ───────────────────────────────────────────────── +2026/03/21 19:27:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:27:03 [log_collector] {"stage_name":"log_collector","events_processed":8932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1786.4,"last_update":"2026-03-21T19:26:58.87022499Z"} +2026/03/21 19:27:03 [metric_collector] {"stage_name":"metric_collector","events_processed":4869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":973.8,"last_update":"2026-03-21T19:26:58.870796685Z"} +2026/03/21 19:27:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:26:58.879034472Z"} +2026/03/21 19:27:03 [transform_engine] {"stage_name":"transform_engine","events_processed":162,"events_dropped":0,"avg_latency_ms":1090.794209315408,"throughput_eps":0,"last_update":"2026-03-21T19:26:58.965143206Z"} +2026/03/21 19:27:03 [detection_layer] {"stage_name":"detection_layer","events_processed":162,"events_dropped":0,"avg_latency_ms":15.143287732744756,"throughput_eps":0,"last_update":"2026-03-21T19:26:58.966237311Z"} +2026/03/21 19:27:03 ───────────────────────────────────────────────── +2026/03/21 19:27:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:27:08 [detection_layer] {"stage_name":"detection_layer","events_processed":162,"events_dropped":0,"avg_latency_ms":15.143287732744756,"throughput_eps":0,"last_update":"2026-03-21T19:27:03.965518585Z"} +2026/03/21 19:27:08 [log_collector] {"stage_name":"log_collector","events_processed":8932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1786.4,"last_update":"2026-03-21T19:27:03.869496275Z"} +2026/03/21 19:27:08 [metric_collector] {"stage_name":"metric_collector","events_processed":4874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":974.8,"last_update":"2026-03-21T19:27:03.869831608Z"} +2026/03/21 19:27:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:27:03.878345172Z"} +2026/03/21 19:27:08 [transform_engine] {"stage_name":"transform_engine","events_processed":162,"events_dropped":0,"avg_latency_ms":1090.794209315408,"throughput_eps":0,"last_update":"2026-03-21T19:27:03.965529667Z"} +2026/03/21 19:27:08 ───────────────────────────────────────────────── +2026/03/21 19:27:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:27:13 [log_collector] {"stage_name":"log_collector","events_processed":8942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1788.4,"last_update":"2026-03-21T19:27:08.870289087Z"} +2026/03/21 19:27:13 [metric_collector] {"stage_name":"metric_collector","events_processed":4879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":975.8,"last_update":"2026-03-21T19:27:08.870568572Z"} +2026/03/21 19:27:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:27:08.876926238Z"} +2026/03/21 19:27:13 [transform_engine] {"stage_name":"transform_engine","events_processed":162,"events_dropped":0,"avg_latency_ms":1090.794209315408,"throughput_eps":0,"last_update":"2026-03-21T19:27:08.96508588Z"} +2026/03/21 19:27:13 [detection_layer] {"stage_name":"detection_layer","events_processed":162,"events_dropped":0,"avg_latency_ms":15.143287732744756,"throughput_eps":0,"last_update":"2026-03-21T19:27:08.966273985Z"} +2026/03/21 19:27:13 ───────────────────────────────────────────────── +2026/03/21 19:27:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:27:18 [log_collector] {"stage_name":"log_collector","events_processed":8943,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1788.6,"last_update":"2026-03-21T19:27:13.86991172Z"} +2026/03/21 19:27:18 [metric_collector] {"stage_name":"metric_collector","events_processed":4884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":976.8,"last_update":"2026-03-21T19:27:13.870253774Z"} +2026/03/21 19:27:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:27:13.879181593Z"} +2026/03/21 19:27:18 [transform_engine] {"stage_name":"transform_engine","events_processed":162,"events_dropped":0,"avg_latency_ms":1090.794209315408,"throughput_eps":0,"last_update":"2026-03-21T19:27:13.965530558Z"} +2026/03/21 19:27:18 [detection_layer] {"stage_name":"detection_layer","events_processed":162,"events_dropped":0,"avg_latency_ms":15.143287732744756,"throughput_eps":0,"last_update":"2026-03-21T19:27:13.965519506Z"} +2026/03/21 19:27:18 ───────────────────────────────────────────────── +2026/03/21 19:27:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:27:23 [transform_engine] {"stage_name":"transform_engine","events_processed":163,"events_dropped":0,"avg_latency_ms":894.7087920523263,"throughput_eps":0,"last_update":"2026-03-21T19:27:19.076426845Z"} +2026/03/21 19:27:23 [detection_layer] {"stage_name":"detection_layer","events_processed":162,"events_dropped":0,"avg_latency_ms":15.143287732744756,"throughput_eps":0,"last_update":"2026-03-21T19:27:18.966042789Z"} +2026/03/21 19:27:23 [log_collector] {"stage_name":"log_collector","events_processed":8959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1791.8,"last_update":"2026-03-21T19:27:18.869448373Z"} +2026/03/21 19:27:23 [metric_collector] {"stage_name":"metric_collector","events_processed":4889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":977.8,"last_update":"2026-03-21T19:27:18.869755901Z"} +2026/03/21 19:27:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1958,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:27:18.877779689Z"} +2026/03/21 19:27:23 ───────────────────────────────────────────────── +2026/03/21 19:27:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:27:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:27:23.878561179Z"} +2026/03/21 19:27:28 [transform_engine] {"stage_name":"transform_engine","events_processed":163,"events_dropped":0,"avg_latency_ms":894.7087920523263,"throughput_eps":0,"last_update":"2026-03-21T19:27:23.965768067Z"} +2026/03/21 19:27:28 [detection_layer] {"stage_name":"detection_layer","events_processed":163,"events_dropped":0,"avg_latency_ms":15.525143986195806,"throughput_eps":0,"last_update":"2026-03-21T19:27:23.965786542Z"} +2026/03/21 19:27:28 [log_collector] {"stage_name":"log_collector","events_processed":8959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1791.8,"last_update":"2026-03-21T19:27:23.870157144Z"} +2026/03/21 19:27:28 [metric_collector] {"stage_name":"metric_collector","events_processed":4894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":978.8,"last_update":"2026-03-21T19:27:23.870641952Z"} +2026/03/21 19:27:28 ───────────────────────────────────────────────── +2026/03/21 19:27:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:27:33 [metric_collector] {"stage_name":"metric_collector","events_processed":4899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":979.8,"last_update":"2026-03-21T19:27:28.870629835Z"} +2026/03/21 19:27:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1962,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:27:28.878323039Z"} +2026/03/21 19:27:33 [transform_engine] {"stage_name":"transform_engine","events_processed":163,"events_dropped":0,"avg_latency_ms":894.7087920523263,"throughput_eps":0,"last_update":"2026-03-21T19:27:28.965498416Z"} +2026/03/21 19:27:33 [detection_layer] {"stage_name":"detection_layer","events_processed":163,"events_dropped":0,"avg_latency_ms":15.525143986195806,"throughput_eps":0,"last_update":"2026-03-21T19:27:28.96559989Z"} +2026/03/21 19:27:33 [log_collector] {"stage_name":"log_collector","events_processed":8959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1791.8,"last_update":"2026-03-21T19:27:28.870177639Z"} +2026/03/21 19:27:33 ───────────────────────────────────────────────── +2026/03/21 19:27:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:27:38 [log_collector] {"stage_name":"log_collector","events_processed":8959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1791.8,"last_update":"2026-03-21T19:27:33.869744068Z"} +2026/03/21 19:27:38 [metric_collector] {"stage_name":"metric_collector","events_processed":4904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":980.8,"last_update":"2026-03-21T19:27:33.869856574Z"} +2026/03/21 19:27:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:27:33.878719367Z"} +2026/03/21 19:27:38 [transform_engine] {"stage_name":"transform_engine","events_processed":163,"events_dropped":0,"avg_latency_ms":894.7087920523263,"throughput_eps":0,"last_update":"2026-03-21T19:27:33.965915624Z"} +2026/03/21 19:27:38 [detection_layer] {"stage_name":"detection_layer","events_processed":163,"events_dropped":0,"avg_latency_ms":15.525143986195806,"throughput_eps":0,"last_update":"2026-03-21T19:27:33.965956733Z"} +2026/03/21 19:27:38 ───────────────────────────────────────────────── +2026/03/21 19:27:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:27:43 [log_collector] {"stage_name":"log_collector","events_processed":8959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1791.8,"last_update":"2026-03-21T19:27:43.869633703Z"} +2026/03/21 19:27:43 [metric_collector] {"stage_name":"metric_collector","events_processed":4909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":981.8,"last_update":"2026-03-21T19:27:38.870612502Z"} +2026/03/21 19:27:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:27:38.878758293Z"} +2026/03/21 19:27:43 [transform_engine] {"stage_name":"transform_engine","events_processed":163,"events_dropped":0,"avg_latency_ms":894.7087920523263,"throughput_eps":0,"last_update":"2026-03-21T19:27:38.966153341Z"} +2026/03/21 19:27:43 [detection_layer] {"stage_name":"detection_layer","events_processed":163,"events_dropped":0,"avg_latency_ms":15.525143986195806,"throughput_eps":0,"last_update":"2026-03-21T19:27:38.966165504Z"} +2026/03/21 19:27:43 ───────────────────────────────────────────────── +2026/03/21 19:27:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:27:48 [metric_collector] {"stage_name":"metric_collector","events_processed":4914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":982.8,"last_update":"2026-03-21T19:27:43.870144491Z"} +2026/03/21 19:27:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:27:43.878076362Z"} +2026/03/21 19:27:48 [transform_engine] {"stage_name":"transform_engine","events_processed":163,"events_dropped":0,"avg_latency_ms":894.7087920523263,"throughput_eps":0,"last_update":"2026-03-21T19:27:43.96518427Z"} +2026/03/21 19:27:48 [detection_layer] {"stage_name":"detection_layer","events_processed":163,"events_dropped":0,"avg_latency_ms":15.525143986195806,"throughput_eps":0,"last_update":"2026-03-21T19:27:43.965322285Z"} +2026/03/21 19:27:48 [log_collector] {"stage_name":"log_collector","events_processed":8959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1791.8,"last_update":"2026-03-21T19:27:43.869633703Z"} +2026/03/21 19:27:48 ───────────────────────────────────────────────── +2026/03/21 19:27:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:27:53 [detection_layer] {"stage_name":"detection_layer","events_processed":163,"events_dropped":0,"avg_latency_ms":15.525143986195806,"throughput_eps":0,"last_update":"2026-03-21T19:27:48.966005422Z"} +2026/03/21 19:27:53 [log_collector] {"stage_name":"log_collector","events_processed":8959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1791.8,"last_update":"2026-03-21T19:27:48.87062495Z"} +2026/03/21 19:27:53 [metric_collector] {"stage_name":"metric_collector","events_processed":4919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":983.8,"last_update":"2026-03-21T19:27:48.870971885Z"} +2026/03/21 19:27:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1970,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:27:48.879589829Z"} +2026/03/21 19:27:53 [transform_engine] {"stage_name":"transform_engine","events_processed":163,"events_dropped":0,"avg_latency_ms":894.7087920523263,"throughput_eps":0,"last_update":"2026-03-21T19:27:48.965924517Z"} +2026/03/21 19:27:53 ───────────────────────────────────────────────── +2026/03/21 19:27:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:27:58 [log_collector] {"stage_name":"log_collector","events_processed":8959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1791.8,"last_update":"2026-03-21T19:27:58.869406391Z"} +2026/03/21 19:27:58 [metric_collector] {"stage_name":"metric_collector","events_processed":4924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":984.8,"last_update":"2026-03-21T19:27:53.869848303Z"} +2026/03/21 19:27:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:27:53.87894225Z"} +2026/03/21 19:27:58 [transform_engine] {"stage_name":"transform_engine","events_processed":164,"events_dropped":0,"avg_latency_ms":729.5047058418611,"throughput_eps":0,"last_update":"2026-03-21T19:27:53.965070482Z"} +2026/03/21 19:27:58 [detection_layer] {"stage_name":"detection_layer","events_processed":164,"events_dropped":0,"avg_latency_ms":16.207071788956647,"throughput_eps":0,"last_update":"2026-03-21T19:27:53.966246465Z"} +2026/03/21 19:27:58 ───────────────────────────────────────────────── +2026/03/21 19:28:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:28:03 [log_collector] {"stage_name":"log_collector","events_processed":8959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1791.8,"last_update":"2026-03-21T19:28:03.869942094Z"} +2026/03/21 19:28:03 [metric_collector] {"stage_name":"metric_collector","events_processed":4929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":985.8,"last_update":"2026-03-21T19:27:58.869976773Z"} +2026/03/21 19:28:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:27:58.87820345Z"} +2026/03/21 19:28:03 [transform_engine] {"stage_name":"transform_engine","events_processed":164,"events_dropped":0,"avg_latency_ms":729.5047058418611,"throughput_eps":0,"last_update":"2026-03-21T19:27:58.965497053Z"} +2026/03/21 19:28:03 [detection_layer] {"stage_name":"detection_layer","events_processed":164,"events_dropped":0,"avg_latency_ms":16.207071788956647,"throughput_eps":0,"last_update":"2026-03-21T19:27:58.965482395Z"} +2026/03/21 19:28:03 ───────────────────────────────────────────────── +2026/03/21 19:28:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:28:08 [log_collector] {"stage_name":"log_collector","events_processed":8959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1791.8,"last_update":"2026-03-21T19:28:03.869942094Z"} +2026/03/21 19:28:08 [metric_collector] {"stage_name":"metric_collector","events_processed":4934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":986.8,"last_update":"2026-03-21T19:28:03.870509792Z"} +2026/03/21 19:28:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:28:03.879277102Z"} +2026/03/21 19:28:08 [transform_engine] {"stage_name":"transform_engine","events_processed":164,"events_dropped":0,"avg_latency_ms":729.5047058418611,"throughput_eps":0,"last_update":"2026-03-21T19:28:03.965721831Z"} +2026/03/21 19:28:08 [detection_layer] {"stage_name":"detection_layer","events_processed":164,"events_dropped":0,"avg_latency_ms":16.207071788956647,"throughput_eps":0,"last_update":"2026-03-21T19:28:03.965709827Z"} +2026/03/21 19:28:08 ───────────────────────────────────────────────── +2026/03/21 19:28:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:28:13 [detection_layer] {"stage_name":"detection_layer","events_processed":164,"events_dropped":0,"avg_latency_ms":16.207071788956647,"throughput_eps":0,"last_update":"2026-03-21T19:28:08.965745325Z"} +2026/03/21 19:28:13 [log_collector] {"stage_name":"log_collector","events_processed":8959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1791.8,"last_update":"2026-03-21T19:28:08.869913709Z"} +2026/03/21 19:28:13 [metric_collector] {"stage_name":"metric_collector","events_processed":4939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":987.8,"last_update":"2026-03-21T19:28:08.870537113Z"} +2026/03/21 19:28:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:28:08.879519366Z"} +2026/03/21 19:28:13 [transform_engine] {"stage_name":"transform_engine","events_processed":164,"events_dropped":0,"avg_latency_ms":729.5047058418611,"throughput_eps":0,"last_update":"2026-03-21T19:28:08.965750926Z"} +2026/03/21 19:28:13 ───────────────────────────────────────────────── +Saved state: 12 clusters, 8960 messages, reason: none +2026/03/21 19:28:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:28:18 [detection_layer] {"stage_name":"detection_layer","events_processed":164,"events_dropped":0,"avg_latency_ms":16.207071788956647,"throughput_eps":0,"last_update":"2026-03-21T19:28:13.966156456Z"} +2026/03/21 19:28:18 [log_collector] {"stage_name":"log_collector","events_processed":8959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1791.8,"last_update":"2026-03-21T19:28:13.869737184Z"} +2026/03/21 19:28:18 [metric_collector] {"stage_name":"metric_collector","events_processed":4944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":988.8,"last_update":"2026-03-21T19:28:13.870160916Z"} +2026/03/21 19:28:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:28:13.879704713Z"} +2026/03/21 19:28:18 [transform_engine] {"stage_name":"transform_engine","events_processed":164,"events_dropped":0,"avg_latency_ms":729.5047058418611,"throughput_eps":0,"last_update":"2026-03-21T19:28:13.966037809Z"} +2026/03/21 19:28:18 ───────────────────────────────────────────────── +2026/03/21 19:28:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:28:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:28:18.877218818Z"} +2026/03/21 19:28:23 [transform_engine] {"stage_name":"transform_engine","events_processed":164,"events_dropped":0,"avg_latency_ms":729.5047058418611,"throughput_eps":0,"last_update":"2026-03-21T19:28:18.965561792Z"} +2026/03/21 19:28:23 [detection_layer] {"stage_name":"detection_layer","events_processed":164,"events_dropped":0,"avg_latency_ms":16.207071788956647,"throughput_eps":0,"last_update":"2026-03-21T19:28:18.965586499Z"} +2026/03/21 19:28:23 [log_collector] {"stage_name":"log_collector","events_processed":8973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1794.6,"last_update":"2026-03-21T19:28:23.870026021Z"} +2026/03/21 19:28:23 [metric_collector] {"stage_name":"metric_collector","events_processed":4949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":989.8,"last_update":"2026-03-21T19:28:18.87069858Z"} +2026/03/21 19:28:23 ───────────────────────────────────────────────── +2026/03/21 19:28:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:28:28 [transform_engine] {"stage_name":"transform_engine","events_processed":165,"events_dropped":0,"avg_latency_ms":748.9292794734888,"throughput_eps":0,"last_update":"2026-03-21T19:28:23.965108554Z"} +2026/03/21 19:28:28 [detection_layer] {"stage_name":"detection_layer","events_processed":165,"events_dropped":0,"avg_latency_ms":16.56317943116532,"throughput_eps":0,"last_update":"2026-03-21T19:28:23.96528407Z"} +2026/03/21 19:28:28 [log_collector] {"stage_name":"log_collector","events_processed":8973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1794.6,"last_update":"2026-03-21T19:28:28.869853Z"} +2026/03/21 19:28:28 [metric_collector] {"stage_name":"metric_collector","events_processed":4954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":990.8,"last_update":"2026-03-21T19:28:23.870334171Z"} +2026/03/21 19:28:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:28:23.879931502Z"} +2026/03/21 19:28:28 ───────────────────────────────────────────────── +2026/03/21 19:28:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:28:33 [log_collector] {"stage_name":"log_collector","events_processed":8973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1794.6,"last_update":"2026-03-21T19:28:28.869853Z"} +2026/03/21 19:28:33 [metric_collector] {"stage_name":"metric_collector","events_processed":4959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":991.8,"last_update":"2026-03-21T19:28:28.870394606Z"} +2026/03/21 19:28:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:28:28.879652908Z"} +2026/03/21 19:28:33 [transform_engine] {"stage_name":"transform_engine","events_processed":165,"events_dropped":0,"avg_latency_ms":748.9292794734888,"throughput_eps":0,"last_update":"2026-03-21T19:28:28.965983859Z"} +2026/03/21 19:28:33 [detection_layer] {"stage_name":"detection_layer","events_processed":165,"events_dropped":0,"avg_latency_ms":16.56317943116532,"throughput_eps":0,"last_update":"2026-03-21T19:28:28.966015249Z"} +2026/03/21 19:28:33 ───────────────────────────────────────────────── +2026/03/21 19:28:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:28:38 [metric_collector] {"stage_name":"metric_collector","events_processed":4964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":992.8,"last_update":"2026-03-21T19:28:33.870376246Z"} +2026/03/21 19:28:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:28:33.878765403Z"} +2026/03/21 19:28:38 [transform_engine] {"stage_name":"transform_engine","events_processed":165,"events_dropped":0,"avg_latency_ms":748.9292794734888,"throughput_eps":0,"last_update":"2026-03-21T19:28:33.966039539Z"} +2026/03/21 19:28:38 [detection_layer] {"stage_name":"detection_layer","events_processed":165,"events_dropped":0,"avg_latency_ms":16.56317943116532,"throughput_eps":0,"last_update":"2026-03-21T19:28:33.965917867Z"} +2026/03/21 19:28:38 [log_collector] {"stage_name":"log_collector","events_processed":8973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1794.6,"last_update":"2026-03-21T19:28:33.869846742Z"} +2026/03/21 19:28:38 ───────────────────────────────────────────────── +2026/03/21 19:28:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:28:43 [detection_layer] {"stage_name":"detection_layer","events_processed":165,"events_dropped":0,"avg_latency_ms":16.56317943116532,"throughput_eps":0,"last_update":"2026-03-21T19:28:38.965423336Z"} +2026/03/21 19:28:43 [log_collector] {"stage_name":"log_collector","events_processed":8973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1794.6,"last_update":"2026-03-21T19:28:38.869421773Z"} +2026/03/21 19:28:43 [metric_collector] {"stage_name":"metric_collector","events_processed":4969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":993.8,"last_update":"2026-03-21T19:28:38.869683696Z"} +2026/03/21 19:28:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1990,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:28:38.878197731Z"} +2026/03/21 19:28:43 [transform_engine] {"stage_name":"transform_engine","events_processed":165,"events_dropped":0,"avg_latency_ms":748.9292794734888,"throughput_eps":0,"last_update":"2026-03-21T19:28:38.965450338Z"} +2026/03/21 19:28:43 ───────────────────────────────────────────────── +2026/03/21 19:28:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:28:48 [transform_engine] {"stage_name":"transform_engine","events_processed":165,"events_dropped":0,"avg_latency_ms":748.9292794734888,"throughput_eps":0,"last_update":"2026-03-21T19:28:43.965143066Z"} +2026/03/21 19:28:48 [detection_layer] {"stage_name":"detection_layer","events_processed":165,"events_dropped":0,"avg_latency_ms":16.56317943116532,"throughput_eps":0,"last_update":"2026-03-21T19:28:43.965271402Z"} +2026/03/21 19:28:48 [log_collector] {"stage_name":"log_collector","events_processed":8973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1794.6,"last_update":"2026-03-21T19:28:43.870208929Z"} +2026/03/21 19:28:48 [metric_collector] {"stage_name":"metric_collector","events_processed":4974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":994.8,"last_update":"2026-03-21T19:28:43.870456613Z"} +2026/03/21 19:28:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1992,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:28:43.878899182Z"} +2026/03/21 19:28:48 ───────────────────────────────────────────────── +2026/03/21 19:28:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:28:53 [log_collector] {"stage_name":"log_collector","events_processed":8973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1794.6,"last_update":"2026-03-21T19:28:48.869881414Z"} +2026/03/21 19:28:53 [metric_collector] {"stage_name":"metric_collector","events_processed":4979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":995.8,"last_update":"2026-03-21T19:28:48.870231615Z"} +2026/03/21 19:28:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:28:48.878177022Z"} +2026/03/21 19:28:53 [transform_engine] {"stage_name":"transform_engine","events_processed":166,"events_dropped":0,"avg_latency_ms":625.618424378791,"throughput_eps":0,"last_update":"2026-03-21T19:28:49.09780339Z"} +2026/03/21 19:28:53 [detection_layer] {"stage_name":"detection_layer","events_processed":165,"events_dropped":0,"avg_latency_ms":16.56317943116532,"throughput_eps":0,"last_update":"2026-03-21T19:28:48.965411843Z"} +2026/03/21 19:28:53 ───────────────────────────────────────────────── +2026/03/21 19:28:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:28:58 [detection_layer] {"stage_name":"detection_layer","events_processed":166,"events_dropped":0,"avg_latency_ms":17.216567144932256,"throughput_eps":0,"last_update":"2026-03-21T19:28:53.965875196Z"} +2026/03/21 19:28:58 [log_collector] {"stage_name":"log_collector","events_processed":8973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1794.6,"last_update":"2026-03-21T19:28:53.869714789Z"} +2026/03/21 19:28:58 [metric_collector] {"stage_name":"metric_collector","events_processed":4984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":996.8,"last_update":"2026-03-21T19:28:53.869963586Z"} +2026/03/21 19:28:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1996,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:28:53.878520644Z"} +2026/03/21 19:28:58 [transform_engine] {"stage_name":"transform_engine","events_processed":166,"events_dropped":0,"avg_latency_ms":625.618424378791,"throughput_eps":0,"last_update":"2026-03-21T19:28:53.965895234Z"} +2026/03/21 19:28:58 ───────────────────────────────────────────────── +2026/03/21 19:29:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:29:03 [transform_engine] {"stage_name":"transform_engine","events_processed":166,"events_dropped":0,"avg_latency_ms":625.618424378791,"throughput_eps":0,"last_update":"2026-03-21T19:28:58.965802522Z"} +2026/03/21 19:29:03 [detection_layer] {"stage_name":"detection_layer","events_processed":166,"events_dropped":0,"avg_latency_ms":17.216567144932256,"throughput_eps":0,"last_update":"2026-03-21T19:28:58.965833091Z"} +2026/03/21 19:29:03 [log_collector] {"stage_name":"log_collector","events_processed":8973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1794.6,"last_update":"2026-03-21T19:29:03.869405132Z"} +2026/03/21 19:29:03 [metric_collector] {"stage_name":"metric_collector","events_processed":4989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":997.8,"last_update":"2026-03-21T19:28:58.869780792Z"} +2026/03/21 19:29:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:28:58.878529327Z"} +2026/03/21 19:29:03 ───────────────────────────────────────────────── +2026/03/21 19:29:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:29:08 [transform_engine] {"stage_name":"transform_engine","events_processed":166,"events_dropped":0,"avg_latency_ms":625.618424378791,"throughput_eps":0,"last_update":"2026-03-21T19:29:03.965118161Z"} +2026/03/21 19:29:08 [detection_layer] {"stage_name":"detection_layer","events_processed":166,"events_dropped":0,"avg_latency_ms":17.216567144932256,"throughput_eps":0,"last_update":"2026-03-21T19:29:03.966376592Z"} +2026/03/21 19:29:08 [log_collector] {"stage_name":"log_collector","events_processed":8973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1794.6,"last_update":"2026-03-21T19:29:03.869405132Z"} +2026/03/21 19:29:08 [metric_collector] {"stage_name":"metric_collector","events_processed":4994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":998.8,"last_update":"2026-03-21T19:29:03.870099963Z"} +2026/03/21 19:29:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:29:03.877957541Z"} +2026/03/21 19:29:08 ───────────────────────────────────────────────── +2026/03/21 19:29:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:29:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:29:08.878309435Z"} +2026/03/21 19:29:13 [transform_engine] {"stage_name":"transform_engine","events_processed":166,"events_dropped":0,"avg_latency_ms":625.618424378791,"throughput_eps":0,"last_update":"2026-03-21T19:29:08.965540561Z"} +2026/03/21 19:29:13 [detection_layer] {"stage_name":"detection_layer","events_processed":166,"events_dropped":0,"avg_latency_ms":17.216567144932256,"throughput_eps":0,"last_update":"2026-03-21T19:29:08.965516314Z"} +2026/03/21 19:29:13 [log_collector] {"stage_name":"log_collector","events_processed":8973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1794.6,"last_update":"2026-03-21T19:29:13.870022486Z"} +2026/03/21 19:29:13 [metric_collector] {"stage_name":"metric_collector","events_processed":4999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":999.8,"last_update":"2026-03-21T19:29:08.870204582Z"} +2026/03/21 19:29:13 ───────────────────────────────────────────────── +2026/03/21 19:29:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:29:18 [log_collector] {"stage_name":"log_collector","events_processed":8973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1794.6,"last_update":"2026-03-21T19:29:13.870022486Z"} +2026/03/21 19:29:18 [metric_collector] {"stage_name":"metric_collector","events_processed":5004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1000.8,"last_update":"2026-03-21T19:29:13.870714783Z"} +2026/03/21 19:29:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:29:13.880037517Z"} +2026/03/21 19:29:18 [transform_engine] {"stage_name":"transform_engine","events_processed":166,"events_dropped":0,"avg_latency_ms":625.618424378791,"throughput_eps":0,"last_update":"2026-03-21T19:29:13.965234136Z"} +2026/03/21 19:29:18 [detection_layer] {"stage_name":"detection_layer","events_processed":166,"events_dropped":0,"avg_latency_ms":17.216567144932256,"throughput_eps":0,"last_update":"2026-03-21T19:29:13.965336882Z"} +2026/03/21 19:29:18 ───────────────────────────────────────────────── +2026/03/21 19:29:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:29:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2006,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:29:18.878926535Z"} +2026/03/21 19:29:23 [transform_engine] {"stage_name":"transform_engine","events_processed":167,"events_dropped":0,"avg_latency_ms":514.2753981030329,"throughput_eps":0,"last_update":"2026-03-21T19:29:19.033954394Z"} +2026/03/21 19:29:23 [detection_layer] {"stage_name":"detection_layer","events_processed":166,"events_dropped":0,"avg_latency_ms":17.216567144932256,"throughput_eps":0,"last_update":"2026-03-21T19:29:18.966245428Z"} +2026/03/21 19:29:23 [log_collector] {"stage_name":"log_collector","events_processed":8973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1794.6,"last_update":"2026-03-21T19:29:18.869715053Z"} +2026/03/21 19:29:23 [metric_collector] {"stage_name":"metric_collector","events_processed":5009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1001.8,"last_update":"2026-03-21T19:29:18.869766572Z"} +2026/03/21 19:29:23 ───────────────────────────────────────────────── +Saved state: 12 clusters, 8974 messages, reason: none +2026/03/21 19:29:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:29:28 [transform_engine] {"stage_name":"transform_engine","events_processed":167,"events_dropped":0,"avg_latency_ms":514.2753981030329,"throughput_eps":0,"last_update":"2026-03-21T19:29:23.965308733Z"} +2026/03/21 19:29:28 [detection_layer] {"stage_name":"detection_layer","events_processed":167,"events_dropped":0,"avg_latency_ms":17.895937515945807,"throughput_eps":0,"last_update":"2026-03-21T19:29:23.965295327Z"} +2026/03/21 19:29:28 [log_collector] {"stage_name":"log_collector","events_processed":8978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1795.6,"last_update":"2026-03-21T19:29:28.869837758Z"} +2026/03/21 19:29:28 [metric_collector] {"stage_name":"metric_collector","events_processed":5014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1002.8,"last_update":"2026-03-21T19:29:23.870735957Z"} +2026/03/21 19:29:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2008,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:29:23.880068711Z"} +2026/03/21 19:29:28 ───────────────────────────────────────────────── +2026/03/21 19:29:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:29:33 [log_collector] {"stage_name":"log_collector","events_processed":8978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1795.6,"last_update":"2026-03-21T19:29:28.869837758Z"} +2026/03/21 19:29:33 [metric_collector] {"stage_name":"metric_collector","events_processed":5019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1003.8,"last_update":"2026-03-21T19:29:28.870120078Z"} +2026/03/21 19:29:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:29:28.877084687Z"} +2026/03/21 19:29:33 [transform_engine] {"stage_name":"transform_engine","events_processed":167,"events_dropped":0,"avg_latency_ms":514.2753981030329,"throughput_eps":0,"last_update":"2026-03-21T19:29:28.965250663Z"} +2026/03/21 19:29:33 [detection_layer] {"stage_name":"detection_layer","events_processed":167,"events_dropped":0,"avg_latency_ms":17.895937515945807,"throughput_eps":0,"last_update":"2026-03-21T19:29:28.965256353Z"} +2026/03/21 19:29:33 ───────────────────────────────────────────────── +2026/03/21 19:29:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:29:38 [log_collector] {"stage_name":"log_collector","events_processed":8978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1795.6,"last_update":"2026-03-21T19:29:33.869719644Z"} +2026/03/21 19:29:38 [metric_collector] {"stage_name":"metric_collector","events_processed":5024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1004.8,"last_update":"2026-03-21T19:29:33.870130972Z"} +2026/03/21 19:29:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2012,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:29:33.876914864Z"} +2026/03/21 19:29:38 [transform_engine] {"stage_name":"transform_engine","events_processed":167,"events_dropped":0,"avg_latency_ms":514.2753981030329,"throughput_eps":0,"last_update":"2026-03-21T19:29:33.966123878Z"} +2026/03/21 19:29:38 [detection_layer] {"stage_name":"detection_layer","events_processed":167,"events_dropped":0,"avg_latency_ms":17.895937515945807,"throughput_eps":0,"last_update":"2026-03-21T19:29:33.966108669Z"} +2026/03/21 19:29:38 ───────────────────────────────────────────────── +2026/03/21 19:29:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:29:43 [log_collector] {"stage_name":"log_collector","events_processed":8978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1795.6,"last_update":"2026-03-21T19:29:38.869444753Z"} +2026/03/21 19:29:43 [metric_collector] {"stage_name":"metric_collector","events_processed":5029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1005.8,"last_update":"2026-03-21T19:29:38.869738436Z"} +2026/03/21 19:29:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:29:38.876405515Z"} +2026/03/21 19:29:43 [transform_engine] {"stage_name":"transform_engine","events_processed":167,"events_dropped":0,"avg_latency_ms":514.2753981030329,"throughput_eps":0,"last_update":"2026-03-21T19:29:38.965593988Z"} +2026/03/21 19:29:43 [detection_layer] {"stage_name":"detection_layer","events_processed":167,"events_dropped":0,"avg_latency_ms":17.895937515945807,"throughput_eps":0,"last_update":"2026-03-21T19:29:38.965581344Z"} +2026/03/21 19:29:43 ───────────────────────────────────────────────── +2026/03/21 19:29:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:29:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:29:43.876392998Z"} +2026/03/21 19:29:48 [transform_engine] {"stage_name":"transform_engine","events_processed":167,"events_dropped":0,"avg_latency_ms":514.2753981030329,"throughput_eps":0,"last_update":"2026-03-21T19:29:43.96517831Z"} +2026/03/21 19:29:48 [detection_layer] {"stage_name":"detection_layer","events_processed":167,"events_dropped":0,"avg_latency_ms":17.895937515945807,"throughput_eps":0,"last_update":"2026-03-21T19:29:43.965284694Z"} +2026/03/21 19:29:48 [log_collector] {"stage_name":"log_collector","events_processed":8978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1795.6,"last_update":"2026-03-21T19:29:43.86940237Z"} +2026/03/21 19:29:48 [metric_collector] {"stage_name":"metric_collector","events_processed":5034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1006.8,"last_update":"2026-03-21T19:29:43.86963232Z"} +2026/03/21 19:29:48 ───────────────────────────────────────────────── +2026/03/21 19:29:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:29:53 [log_collector] {"stage_name":"log_collector","events_processed":8978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1795.6,"last_update":"2026-03-21T19:29:48.869654753Z"} +2026/03/21 19:29:53 [metric_collector] {"stage_name":"metric_collector","events_processed":5039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1007.8,"last_update":"2026-03-21T19:29:48.870041553Z"} +2026/03/21 19:29:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2018,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:29:48.876455547Z"} +2026/03/21 19:29:53 [transform_engine] {"stage_name":"transform_engine","events_processed":168,"events_dropped":0,"avg_latency_ms":675.3824138824264,"throughput_eps":0,"last_update":"2026-03-21T19:29:50.285476791Z"} +2026/03/21 19:29:53 [detection_layer] {"stage_name":"detection_layer","events_processed":167,"events_dropped":0,"avg_latency_ms":17.895937515945807,"throughput_eps":0,"last_update":"2026-03-21T19:29:48.965643651Z"} +2026/03/21 19:29:53 ───────────────────────────────────────────────── +2026/03/21 19:29:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:29:58 [log_collector] {"stage_name":"log_collector","events_processed":8978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1795.6,"last_update":"2026-03-21T19:29:53.869953587Z"} +2026/03/21 19:29:58 [metric_collector] {"stage_name":"metric_collector","events_processed":5044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1008.8,"last_update":"2026-03-21T19:29:53.870094887Z"} +2026/03/21 19:29:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2020,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:29:53.878965957Z"} +2026/03/21 19:29:58 [transform_engine] {"stage_name":"transform_engine","events_processed":168,"events_dropped":0,"avg_latency_ms":675.3824138824264,"throughput_eps":0,"last_update":"2026-03-21T19:29:53.965977262Z"} +2026/03/21 19:29:58 [detection_layer] {"stage_name":"detection_layer","events_processed":168,"events_dropped":0,"avg_latency_ms":16.408590212756646,"throughput_eps":0,"last_update":"2026-03-21T19:29:53.965967943Z"} +2026/03/21 19:29:58 ───────────────────────────────────────────────── +2026/03/21 19:30:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:30:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2022,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:29:58.875777014Z"} +2026/03/21 19:30:03 [transform_engine] {"stage_name":"transform_engine","events_processed":168,"events_dropped":0,"avg_latency_ms":675.3824138824264,"throughput_eps":0,"last_update":"2026-03-21T19:29:58.966014638Z"} +2026/03/21 19:30:03 [detection_layer] {"stage_name":"detection_layer","events_processed":168,"events_dropped":0,"avg_latency_ms":16.408590212756646,"throughput_eps":0,"last_update":"2026-03-21T19:29:58.965998116Z"} +2026/03/21 19:30:03 [log_collector] {"stage_name":"log_collector","events_processed":8978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1795.6,"last_update":"2026-03-21T19:29:58.869791781Z"} +2026/03/21 19:30:03 [metric_collector] {"stage_name":"metric_collector","events_processed":5049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1009.8,"last_update":"2026-03-21T19:29:58.870054303Z"} +2026/03/21 19:30:03 ───────────────────────────────────────────────── +2026/03/21 19:30:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:30:08 [metric_collector] {"stage_name":"metric_collector","events_processed":5054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1010.8,"last_update":"2026-03-21T19:30:03.869879585Z"} +2026/03/21 19:30:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:30:03.87799613Z"} +2026/03/21 19:30:08 [transform_engine] {"stage_name":"transform_engine","events_processed":168,"events_dropped":0,"avg_latency_ms":675.3824138824264,"throughput_eps":0,"last_update":"2026-03-21T19:30:03.966083405Z"} +2026/03/21 19:30:08 [detection_layer] {"stage_name":"detection_layer","events_processed":168,"events_dropped":0,"avg_latency_ms":16.408590212756646,"throughput_eps":0,"last_update":"2026-03-21T19:30:03.966104225Z"} +2026/03/21 19:30:08 [log_collector] {"stage_name":"log_collector","events_processed":8978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1795.6,"last_update":"2026-03-21T19:30:03.869420156Z"} +2026/03/21 19:30:08 ───────────────────────────────────────────────── +2026/03/21 19:30:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:30:13 [log_collector] {"stage_name":"log_collector","events_processed":8981,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1796.2,"last_update":"2026-03-21T19:30:08.870128461Z"} +2026/03/21 19:30:13 [metric_collector] {"stage_name":"metric_collector","events_processed":5059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1011.8,"last_update":"2026-03-21T19:30:08.870399379Z"} +2026/03/21 19:30:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:30:08.876282257Z"} +2026/03/21 19:30:13 [transform_engine] {"stage_name":"transform_engine","events_processed":168,"events_dropped":0,"avg_latency_ms":675.3824138824264,"throughput_eps":0,"last_update":"2026-03-21T19:30:08.965513412Z"} +2026/03/21 19:30:13 [detection_layer] {"stage_name":"detection_layer","events_processed":168,"events_dropped":0,"avg_latency_ms":16.408590212756646,"throughput_eps":0,"last_update":"2026-03-21T19:30:08.965533982Z"} +2026/03/21 19:30:13 ───────────────────────────────────────────────── +2026/03/21 19:30:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:30:18 [log_collector] {"stage_name":"log_collector","events_processed":8989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1797.8,"last_update":"2026-03-21T19:30:13.869512482Z"} +2026/03/21 19:30:18 [metric_collector] {"stage_name":"metric_collector","events_processed":5064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1012.8,"last_update":"2026-03-21T19:30:13.870050292Z"} +2026/03/21 19:30:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:30:13.879091197Z"} +2026/03/21 19:30:18 [transform_engine] {"stage_name":"transform_engine","events_processed":168,"events_dropped":0,"avg_latency_ms":675.3824138824264,"throughput_eps":0,"last_update":"2026-03-21T19:30:13.965312269Z"} +2026/03/21 19:30:18 [detection_layer] {"stage_name":"detection_layer","events_processed":168,"events_dropped":0,"avg_latency_ms":16.408590212756646,"throughput_eps":0,"last_update":"2026-03-21T19:30:13.965301367Z"} +2026/03/21 19:30:18 ───────────────────────────────────────────────── +2026/03/21 19:30:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:30:23 [log_collector] {"stage_name":"log_collector","events_processed":9196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1839.2,"last_update":"2026-03-21T19:30:18.870302828Z"} +2026/03/21 19:30:23 [metric_collector] {"stage_name":"metric_collector","events_processed":5068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1013.6,"last_update":"2026-03-21T19:30:18.870370196Z"} +2026/03/21 19:30:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:30:18.878504506Z"} +2026/03/21 19:30:23 [transform_engine] {"stage_name":"transform_engine","events_processed":169,"events_dropped":0,"avg_latency_ms":561.6392547059411,"throughput_eps":0,"last_update":"2026-03-21T19:30:19.072566034Z"} +2026/03/21 19:30:23 [detection_layer] {"stage_name":"detection_layer","events_processed":168,"events_dropped":0,"avg_latency_ms":16.408590212756646,"throughput_eps":0,"last_update":"2026-03-21T19:30:18.965883394Z"} +2026/03/21 19:30:23 ───────────────────────────────────────────────── +Saved state: 12 clusters, 9336 messages, reason: none +2026/03/21 19:30:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:30:28 [log_collector] {"stage_name":"log_collector","events_processed":9338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1867.6,"last_update":"2026-03-21T19:30:28.869426525Z"} +2026/03/21 19:30:28 [metric_collector] {"stage_name":"metric_collector","events_processed":5074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1014.8,"last_update":"2026-03-21T19:30:23.870630922Z"} +2026/03/21 19:30:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:30:23.882020886Z"} +2026/03/21 19:30:28 [transform_engine] {"stage_name":"transform_engine","events_processed":169,"events_dropped":0,"avg_latency_ms":561.6392547059411,"throughput_eps":0,"last_update":"2026-03-21T19:30:23.965242493Z"} +2026/03/21 19:30:28 [detection_layer] {"stage_name":"detection_layer","events_processed":169,"events_dropped":0,"avg_latency_ms":15.912731570205317,"throughput_eps":0,"last_update":"2026-03-21T19:30:23.965296516Z"} +2026/03/21 19:30:28 ───────────────────────────────────────────────── +2026/03/21 19:30:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:30:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:30:28.875839126Z"} +2026/03/21 19:30:33 [transform_engine] {"stage_name":"transform_engine","events_processed":169,"events_dropped":0,"avg_latency_ms":561.6392547059411,"throughput_eps":0,"last_update":"2026-03-21T19:30:28.965113094Z"} +2026/03/21 19:30:33 [detection_layer] {"stage_name":"detection_layer","events_processed":169,"events_dropped":0,"avg_latency_ms":15.912731570205317,"throughput_eps":0,"last_update":"2026-03-21T19:30:28.966182513Z"} +2026/03/21 19:30:33 [log_collector] {"stage_name":"log_collector","events_processed":9338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1867.6,"last_update":"2026-03-21T19:30:28.869426525Z"} +2026/03/21 19:30:33 [metric_collector] {"stage_name":"metric_collector","events_processed":5079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1015.8,"last_update":"2026-03-21T19:30:28.869810129Z"} +2026/03/21 19:30:33 ───────────────────────────────────────────────── +2026/03/21 19:30:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:30:38 [detection_layer] {"stage_name":"detection_layer","events_processed":169,"events_dropped":0,"avg_latency_ms":15.912731570205317,"throughput_eps":0,"last_update":"2026-03-21T19:30:33.965813697Z"} +2026/03/21 19:30:38 [log_collector] {"stage_name":"log_collector","events_processed":9348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1869.6,"last_update":"2026-03-21T19:30:38.869761369Z"} +2026/03/21 19:30:38 [metric_collector] {"stage_name":"metric_collector","events_processed":5084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1016.8,"last_update":"2026-03-21T19:30:33.869694999Z"} +2026/03/21 19:30:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2036,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:30:33.875648011Z"} +2026/03/21 19:30:38 [transform_engine] {"stage_name":"transform_engine","events_processed":169,"events_dropped":0,"avg_latency_ms":561.6392547059411,"throughput_eps":0,"last_update":"2026-03-21T19:30:33.965840087Z"} +2026/03/21 19:30:38 ───────────────────────────────────────────────── +2026/03/21 19:30:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:30:43 [detection_layer] {"stage_name":"detection_layer","events_processed":169,"events_dropped":0,"avg_latency_ms":15.912731570205317,"throughput_eps":0,"last_update":"2026-03-21T19:30:38.965908892Z"} +2026/03/21 19:30:43 [log_collector] {"stage_name":"log_collector","events_processed":9349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1869.8,"last_update":"2026-03-21T19:30:43.870326776Z"} +2026/03/21 19:30:43 [metric_collector] {"stage_name":"metric_collector","events_processed":5089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1017.8,"last_update":"2026-03-21T19:30:38.87038311Z"} +2026/03/21 19:30:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:30:38.879153938Z"} +2026/03/21 19:30:43 [transform_engine] {"stage_name":"transform_engine","events_processed":169,"events_dropped":0,"avg_latency_ms":561.6392547059411,"throughput_eps":0,"last_update":"2026-03-21T19:30:38.965943939Z"} +2026/03/21 19:30:43 ───────────────────────────────────────────────── +2026/03/21 19:30:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:30:48 [log_collector] {"stage_name":"log_collector","events_processed":9349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1869.8,"last_update":"2026-03-21T19:30:43.870326776Z"} +2026/03/21 19:30:48 [metric_collector] {"stage_name":"metric_collector","events_processed":5094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1018.8,"last_update":"2026-03-21T19:30:43.87063693Z"} +2026/03/21 19:30:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:30:43.878974659Z"} +2026/03/21 19:30:48 [transform_engine] {"stage_name":"transform_engine","events_processed":169,"events_dropped":0,"avg_latency_ms":561.6392547059411,"throughput_eps":0,"last_update":"2026-03-21T19:30:43.965180019Z"} +2026/03/21 19:30:48 [detection_layer] {"stage_name":"detection_layer","events_processed":169,"events_dropped":0,"avg_latency_ms":15.912731570205317,"throughput_eps":0,"last_update":"2026-03-21T19:30:43.965266836Z"} +2026/03/21 19:30:48 ───────────────────────────────────────────────── +2026/03/21 19:30:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:30:53 [log_collector] {"stage_name":"log_collector","events_processed":9365,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1873,"last_update":"2026-03-21T19:30:48.869487836Z"} +2026/03/21 19:30:53 [metric_collector] {"stage_name":"metric_collector","events_processed":5099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1019.8,"last_update":"2026-03-21T19:30:48.869921106Z"} +2026/03/21 19:30:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:30:48.878224989Z"} +2026/03/21 19:30:53 [transform_engine] {"stage_name":"transform_engine","events_processed":170,"events_dropped":0,"avg_latency_ms":471.8800975647529,"throughput_eps":0,"last_update":"2026-03-21T19:30:49.078404225Z"} +2026/03/21 19:30:53 [detection_layer] {"stage_name":"detection_layer","events_processed":169,"events_dropped":0,"avg_latency_ms":15.912731570205317,"throughput_eps":0,"last_update":"2026-03-21T19:30:48.965596143Z"} +2026/03/21 19:30:53 ───────────────────────────────────────────────── +2026/03/21 19:30:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:30:58 [log_collector] {"stage_name":"log_collector","events_processed":9365,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1873,"last_update":"2026-03-21T19:30:53.870000606Z"} +2026/03/21 19:30:58 [metric_collector] {"stage_name":"metric_collector","events_processed":5104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1020.8,"last_update":"2026-03-21T19:30:53.870151986Z"} +2026/03/21 19:30:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:30:53.879438512Z"} +2026/03/21 19:30:58 [transform_engine] {"stage_name":"transform_engine","events_processed":170,"events_dropped":0,"avg_latency_ms":471.8800975647529,"throughput_eps":0,"last_update":"2026-03-21T19:30:53.965632822Z"} +2026/03/21 19:30:58 [detection_layer] {"stage_name":"detection_layer","events_processed":170,"events_dropped":0,"avg_latency_ms":16.310099656164255,"throughput_eps":0,"last_update":"2026-03-21T19:30:53.965749165Z"} +2026/03/21 19:30:58 ───────────────────────────────────────────────── +2026/03/21 19:31:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:31:03 [detection_layer] {"stage_name":"detection_layer","events_processed":170,"events_dropped":0,"avg_latency_ms":16.310099656164255,"throughput_eps":0,"last_update":"2026-03-21T19:30:58.965925472Z"} +2026/03/21 19:31:03 [log_collector] {"stage_name":"log_collector","events_processed":9365,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1873,"last_update":"2026-03-21T19:30:58.870077293Z"} +2026/03/21 19:31:03 [metric_collector] {"stage_name":"metric_collector","events_processed":5109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1021.8,"last_update":"2026-03-21T19:30:58.87015906Z"} +2026/03/21 19:31:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:30:58.879627965Z"} +2026/03/21 19:31:03 [transform_engine] {"stage_name":"transform_engine","events_processed":170,"events_dropped":0,"avg_latency_ms":471.8800975647529,"throughput_eps":0,"last_update":"2026-03-21T19:30:58.966025765Z"} +2026/03/21 19:31:03 ───────────────────────────────────────────────── +2026/03/21 19:31:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:31:08 [detection_layer] {"stage_name":"detection_layer","events_processed":170,"events_dropped":0,"avg_latency_ms":16.310099656164255,"throughput_eps":0,"last_update":"2026-03-21T19:31:03.965323863Z"} +2026/03/21 19:31:08 [log_collector] {"stage_name":"log_collector","events_processed":9365,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1873,"last_update":"2026-03-21T19:31:03.869905357Z"} +2026/03/21 19:31:08 [metric_collector] {"stage_name":"metric_collector","events_processed":5114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1022.8,"last_update":"2026-03-21T19:31:03.870127412Z"} +2026/03/21 19:31:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2048,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:31:03.879146314Z"} +2026/03/21 19:31:08 [transform_engine] {"stage_name":"transform_engine","events_processed":170,"events_dropped":0,"avg_latency_ms":471.8800975647529,"throughput_eps":0,"last_update":"2026-03-21T19:31:03.965402603Z"} +2026/03/21 19:31:08 ───────────────────────────────────────────────── +2026/03/21 19:31:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:31:13 [log_collector] {"stage_name":"log_collector","events_processed":9365,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1873,"last_update":"2026-03-21T19:31:13.869868755Z"} +2026/03/21 19:31:13 [metric_collector] {"stage_name":"metric_collector","events_processed":5119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1023.8,"last_update":"2026-03-21T19:31:08.870677099Z"} +2026/03/21 19:31:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2050,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:31:08.879082657Z"} +2026/03/21 19:31:13 [transform_engine] {"stage_name":"transform_engine","events_processed":170,"events_dropped":0,"avg_latency_ms":471.8800975647529,"throughput_eps":0,"last_update":"2026-03-21T19:31:08.965537586Z"} +2026/03/21 19:31:13 [detection_layer] {"stage_name":"detection_layer","events_processed":170,"events_dropped":0,"avg_latency_ms":16.310099656164255,"throughput_eps":0,"last_update":"2026-03-21T19:31:08.965524741Z"} +2026/03/21 19:31:13 ───────────────────────────────────────────────── +2026/03/21 19:31:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:31:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:31:13.879039159Z"} +2026/03/21 19:31:18 [transform_engine] {"stage_name":"transform_engine","events_processed":170,"events_dropped":0,"avg_latency_ms":471.8800975647529,"throughput_eps":0,"last_update":"2026-03-21T19:31:13.965164497Z"} +2026/03/21 19:31:18 [detection_layer] {"stage_name":"detection_layer","events_processed":170,"events_dropped":0,"avg_latency_ms":16.310099656164255,"throughput_eps":0,"last_update":"2026-03-21T19:31:13.96628821Z"} +2026/03/21 19:31:18 [log_collector] {"stage_name":"log_collector","events_processed":9365,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1873,"last_update":"2026-03-21T19:31:13.869868755Z"} +2026/03/21 19:31:18 [metric_collector] {"stage_name":"metric_collector","events_processed":5129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1025.8,"last_update":"2026-03-21T19:31:18.869790354Z"} +2026/03/21 19:31:18 ───────────────────────────────────────────────── +2026/03/21 19:31:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:31:23 [metric_collector] {"stage_name":"metric_collector","events_processed":5129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1025.8,"last_update":"2026-03-21T19:31:18.869790354Z"} +2026/03/21 19:31:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:31:18.878573346Z"} +2026/03/21 19:31:23 [transform_engine] {"stage_name":"transform_engine","events_processed":171,"events_dropped":0,"avg_latency_ms":391.0213464518023,"throughput_eps":0,"last_update":"2026-03-21T19:31:19.033530952Z"} +2026/03/21 19:31:23 [detection_layer] {"stage_name":"detection_layer","events_processed":170,"events_dropped":0,"avg_latency_ms":16.310099656164255,"throughput_eps":0,"last_update":"2026-03-21T19:31:18.966042157Z"} +2026/03/21 19:31:23 [log_collector] {"stage_name":"log_collector","events_processed":9365,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1873,"last_update":"2026-03-21T19:31:18.869863714Z"} +2026/03/21 19:31:23 ───────────────────────────────────────────────── +2026/03/21 19:31:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:31:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2056,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:31:23.88002229Z"} +2026/03/21 19:31:28 [transform_engine] {"stage_name":"transform_engine","events_processed":171,"events_dropped":0,"avg_latency_ms":391.0213464518023,"throughput_eps":0,"last_update":"2026-03-21T19:31:23.965210012Z"} +2026/03/21 19:31:28 [detection_layer] {"stage_name":"detection_layer","events_processed":171,"events_dropped":0,"avg_latency_ms":16.960250324931405,"throughput_eps":0,"last_update":"2026-03-21T19:31:23.965278523Z"} +2026/03/21 19:31:28 [log_collector] {"stage_name":"log_collector","events_processed":9365,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1873,"last_update":"2026-03-21T19:31:23.870133881Z"} +2026/03/21 19:31:28 [metric_collector] {"stage_name":"metric_collector","events_processed":5134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1026.8,"last_update":"2026-03-21T19:31:23.870620593Z"} +2026/03/21 19:31:28 ───────────────────────────────────────────────── +2026/03/21 19:31:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:31:33 [log_collector] {"stage_name":"log_collector","events_processed":9365,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1873,"last_update":"2026-03-21T19:31:28.869418153Z"} +2026/03/21 19:31:33 [metric_collector] {"stage_name":"metric_collector","events_processed":5139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1027.8,"last_update":"2026-03-21T19:31:28.869867674Z"} +2026/03/21 19:31:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:31:28.878310294Z"} +2026/03/21 19:31:33 [transform_engine] {"stage_name":"transform_engine","events_processed":171,"events_dropped":0,"avg_latency_ms":391.0213464518023,"throughput_eps":0,"last_update":"2026-03-21T19:31:28.965509649Z"} +2026/03/21 19:31:33 [detection_layer] {"stage_name":"detection_layer","events_processed":171,"events_dropped":0,"avg_latency_ms":16.960250324931405,"throughput_eps":0,"last_update":"2026-03-21T19:31:28.965499269Z"} +2026/03/21 19:31:33 ───────────────────────────────────────────────── +2026/03/21 19:31:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:31:38 [detection_layer] {"stage_name":"detection_layer","events_processed":171,"events_dropped":0,"avg_latency_ms":16.960250324931405,"throughput_eps":0,"last_update":"2026-03-21T19:31:33.966051511Z"} +2026/03/21 19:31:38 [log_collector] {"stage_name":"log_collector","events_processed":9365,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1873,"last_update":"2026-03-21T19:31:33.86993589Z"} +2026/03/21 19:31:38 [metric_collector] {"stage_name":"metric_collector","events_processed":5144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1028.8,"last_update":"2026-03-21T19:31:33.870380031Z"} +2026/03/21 19:31:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:31:33.878673825Z"} +2026/03/21 19:31:38 [transform_engine] {"stage_name":"transform_engine","events_processed":171,"events_dropped":0,"avg_latency_ms":391.0213464518023,"throughput_eps":0,"last_update":"2026-03-21T19:31:33.966062823Z"} +2026/03/21 19:31:38 ───────────────────────────────────────────────── +2026/03/21 19:31:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:31:43 [log_collector] {"stage_name":"log_collector","events_processed":9365,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1873,"last_update":"2026-03-21T19:31:38.870047949Z"} +2026/03/21 19:31:43 [metric_collector] {"stage_name":"metric_collector","events_processed":5149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1029.8,"last_update":"2026-03-21T19:31:38.870402318Z"} +2026/03/21 19:31:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2062,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:31:38.879085218Z"} +2026/03/21 19:31:43 [transform_engine] {"stage_name":"transform_engine","events_processed":171,"events_dropped":0,"avg_latency_ms":391.0213464518023,"throughput_eps":0,"last_update":"2026-03-21T19:31:38.965517595Z"} +2026/03/21 19:31:43 [detection_layer] {"stage_name":"detection_layer","events_processed":171,"events_dropped":0,"avg_latency_ms":16.960250324931405,"throughput_eps":0,"last_update":"2026-03-21T19:31:38.965502005Z"} +2026/03/21 19:31:43 ───────────────────────────────────────────────── +2026/03/21 19:31:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:31:48 [log_collector] {"stage_name":"log_collector","events_processed":9365,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1873,"last_update":"2026-03-21T19:31:43.870322674Z"} +2026/03/21 19:31:48 [metric_collector] {"stage_name":"metric_collector","events_processed":5154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1030.8,"last_update":"2026-03-21T19:31:43.870818203Z"} +2026/03/21 19:31:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:31:43.879276092Z"} +2026/03/21 19:31:48 [transform_engine] {"stage_name":"transform_engine","events_processed":171,"events_dropped":0,"avg_latency_ms":391.0213464518023,"throughput_eps":0,"last_update":"2026-03-21T19:31:43.96549566Z"} +2026/03/21 19:31:48 [detection_layer] {"stage_name":"detection_layer","events_processed":171,"events_dropped":0,"avg_latency_ms":16.960250324931405,"throughput_eps":0,"last_update":"2026-03-21T19:31:43.965485601Z"} +2026/03/21 19:31:48 ───────────────────────────────────────────────── +2026/03/21 19:31:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:31:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:31:48.879628586Z"} +2026/03/21 19:31:53 [transform_engine] {"stage_name":"transform_engine","events_processed":172,"events_dropped":0,"avg_latency_ms":326.4992615614418,"throughput_eps":0,"last_update":"2026-03-21T19:31:49.033531995Z"} +2026/03/21 19:31:53 [detection_layer] {"stage_name":"detection_layer","events_processed":171,"events_dropped":0,"avg_latency_ms":16.960250324931405,"throughput_eps":0,"last_update":"2026-03-21T19:31:48.966238853Z"} +2026/03/21 19:31:53 [log_collector] {"stage_name":"log_collector","events_processed":9365,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1873,"last_update":"2026-03-21T19:31:48.870145925Z"} +2026/03/21 19:31:53 [metric_collector] {"stage_name":"metric_collector","events_processed":5159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1031.8,"last_update":"2026-03-21T19:31:48.870625123Z"} +2026/03/21 19:31:53 ───────────────────────────────────────────────── +2026/03/21 19:31:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:31:58 [log_collector] {"stage_name":"log_collector","events_processed":9365,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1873,"last_update":"2026-03-21T19:31:53.869994365Z"} +2026/03/21 19:31:58 [metric_collector] {"stage_name":"metric_collector","events_processed":5164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1032.8,"last_update":"2026-03-21T19:31:53.870261226Z"} +2026/03/21 19:31:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:31:53.879475664Z"} +2026/03/21 19:31:58 [transform_engine] {"stage_name":"transform_engine","events_processed":172,"events_dropped":0,"avg_latency_ms":326.4992615614418,"throughput_eps":0,"last_update":"2026-03-21T19:31:53.96568867Z"} +2026/03/21 19:31:58 [detection_layer] {"stage_name":"detection_layer","events_processed":172,"events_dropped":0,"avg_latency_ms":17.420957259945123,"throughput_eps":0,"last_update":"2026-03-21T19:31:53.965681186Z"} +2026/03/21 19:31:58 ───────────────────────────────────────────────── +Saved state: 12 clusters, 9366 messages, reason: none +2026/03/21 19:32:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:32:03 [metric_collector] {"stage_name":"metric_collector","events_processed":5169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1033.8,"last_update":"2026-03-21T19:31:58.870264015Z"} +2026/03/21 19:32:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:31:58.879503621Z"} +2026/03/21 19:32:03 [transform_engine] {"stage_name":"transform_engine","events_processed":172,"events_dropped":0,"avg_latency_ms":326.4992615614418,"throughput_eps":0,"last_update":"2026-03-21T19:31:58.96568152Z"} +2026/03/21 19:32:03 [detection_layer] {"stage_name":"detection_layer","events_processed":172,"events_dropped":0,"avg_latency_ms":17.420957259945123,"throughput_eps":0,"last_update":"2026-03-21T19:31:58.965672463Z"} +2026/03/21 19:32:03 [log_collector] {"stage_name":"log_collector","events_processed":9365,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1873,"last_update":"2026-03-21T19:31:58.869993537Z"} +2026/03/21 19:32:03 ───────────────────────────────────────────────── +2026/03/21 19:32:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:32:08 [detection_layer] {"stage_name":"detection_layer","events_processed":172,"events_dropped":0,"avg_latency_ms":17.420957259945123,"throughput_eps":0,"last_update":"2026-03-21T19:32:03.965632061Z"} +2026/03/21 19:32:08 [log_collector] {"stage_name":"log_collector","events_processed":9378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1875.6,"last_update":"2026-03-21T19:32:03.86956439Z"} +2026/03/21 19:32:08 [metric_collector] {"stage_name":"metric_collector","events_processed":5174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1034.8,"last_update":"2026-03-21T19:32:03.869827425Z"} +2026/03/21 19:32:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2072,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:32:03.87829942Z"} +2026/03/21 19:32:08 [transform_engine] {"stage_name":"transform_engine","events_processed":172,"events_dropped":0,"avg_latency_ms":326.4992615614418,"throughput_eps":0,"last_update":"2026-03-21T19:32:03.965645628Z"} +2026/03/21 19:32:08 ───────────────────────────────────────────────── +2026/03/21 19:32:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:32:13 [transform_engine] {"stage_name":"transform_engine","events_processed":172,"events_dropped":0,"avg_latency_ms":326.4992615614418,"throughput_eps":0,"last_update":"2026-03-21T19:32:08.965996404Z"} +2026/03/21 19:32:13 [detection_layer] {"stage_name":"detection_layer","events_processed":172,"events_dropped":0,"avg_latency_ms":17.420957259945123,"throughput_eps":0,"last_update":"2026-03-21T19:32:08.965979913Z"} +2026/03/21 19:32:13 [log_collector] {"stage_name":"log_collector","events_processed":9379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1875.8,"last_update":"2026-03-21T19:32:08.869719905Z"} +2026/03/21 19:32:13 [metric_collector] {"stage_name":"metric_collector","events_processed":5179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1035.8,"last_update":"2026-03-21T19:32:08.870194424Z"} +2026/03/21 19:32:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:32:08.878329574Z"} +2026/03/21 19:32:13 ───────────────────────────────────────────────── +2026/03/21 19:32:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:32:18 [log_collector] {"stage_name":"log_collector","events_processed":9379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1875.8,"last_update":"2026-03-21T19:32:13.870276046Z"} +2026/03/21 19:32:18 [metric_collector] {"stage_name":"metric_collector","events_processed":5184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1036.8,"last_update":"2026-03-21T19:32:13.871018548Z"} +2026/03/21 19:32:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2076,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:32:13.879707119Z"} +2026/03/21 19:32:18 [transform_engine] {"stage_name":"transform_engine","events_processed":172,"events_dropped":0,"avg_latency_ms":326.4992615614418,"throughput_eps":0,"last_update":"2026-03-21T19:32:13.965909556Z"} +2026/03/21 19:32:18 [detection_layer] {"stage_name":"detection_layer","events_processed":172,"events_dropped":0,"avg_latency_ms":17.420957259945123,"throughput_eps":0,"last_update":"2026-03-21T19:32:13.965900979Z"} +2026/03/21 19:32:18 ───────────────────────────────────────────────── +2026/03/21 19:32:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:32:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:32:18.880774563Z"} +2026/03/21 19:32:23 [transform_engine] {"stage_name":"transform_engine","events_processed":173,"events_dropped":0,"avg_latency_ms":283.75601404915346,"throughput_eps":0,"last_update":"2026-03-21T19:32:19.078751472Z"} +2026/03/21 19:32:23 [detection_layer] {"stage_name":"detection_layer","events_processed":172,"events_dropped":0,"avg_latency_ms":17.420957259945123,"throughput_eps":0,"last_update":"2026-03-21T19:32:18.966449609Z"} +2026/03/21 19:32:23 [log_collector] {"stage_name":"log_collector","events_processed":9379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1875.8,"last_update":"2026-03-21T19:32:18.870298018Z"} +2026/03/21 19:32:23 [metric_collector] {"stage_name":"metric_collector","events_processed":5189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1037.8,"last_update":"2026-03-21T19:32:18.87062284Z"} +2026/03/21 19:32:23 ───────────────────────────────────────────────── +2026/03/21 19:32:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:32:28 [detection_layer] {"stage_name":"detection_layer","events_processed":173,"events_dropped":0,"avg_latency_ms":17.5492184079561,"throughput_eps":0,"last_update":"2026-03-21T19:32:23.965808342Z"} +2026/03/21 19:32:28 [log_collector] {"stage_name":"log_collector","events_processed":9379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1875.8,"last_update":"2026-03-21T19:32:23.870320373Z"} +2026/03/21 19:32:28 [metric_collector] {"stage_name":"metric_collector","events_processed":5194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1038.8,"last_update":"2026-03-21T19:32:23.870708546Z"} +2026/03/21 19:32:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:32:23.879533758Z"} +2026/03/21 19:32:28 [transform_engine] {"stage_name":"transform_engine","events_processed":173,"events_dropped":0,"avg_latency_ms":283.75601404915346,"throughput_eps":0,"last_update":"2026-03-21T19:32:23.96574936Z"} +2026/03/21 19:32:28 ───────────────────────────────────────────────── +2026/03/21 19:32:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:32:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2082,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:32:28.879737541Z"} +2026/03/21 19:32:33 [transform_engine] {"stage_name":"transform_engine","events_processed":173,"events_dropped":0,"avg_latency_ms":283.75601404915346,"throughput_eps":0,"last_update":"2026-03-21T19:32:28.965989432Z"} +2026/03/21 19:32:33 [detection_layer] {"stage_name":"detection_layer","events_processed":173,"events_dropped":0,"avg_latency_ms":17.5492184079561,"throughput_eps":0,"last_update":"2026-03-21T19:32:28.965937263Z"} +2026/03/21 19:32:33 [log_collector] {"stage_name":"log_collector","events_processed":9379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1875.8,"last_update":"2026-03-21T19:32:28.870470543Z"} +2026/03/21 19:32:33 [metric_collector] {"stage_name":"metric_collector","events_processed":5199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1039.8,"last_update":"2026-03-21T19:32:28.87087643Z"} +2026/03/21 19:32:33 ───────────────────────────────────────────────── +2026/03/21 19:32:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:32:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:32:33.87991145Z"} +2026/03/21 19:32:38 [transform_engine] {"stage_name":"transform_engine","events_processed":173,"events_dropped":0,"avg_latency_ms":283.75601404915346,"throughput_eps":0,"last_update":"2026-03-21T19:32:33.966155146Z"} +2026/03/21 19:32:38 [detection_layer] {"stage_name":"detection_layer","events_processed":173,"events_dropped":0,"avg_latency_ms":17.5492184079561,"throughput_eps":0,"last_update":"2026-03-21T19:32:33.966130599Z"} +2026/03/21 19:32:38 [log_collector] {"stage_name":"log_collector","events_processed":9379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1875.8,"last_update":"2026-03-21T19:32:33.870021709Z"} +2026/03/21 19:32:38 [metric_collector] {"stage_name":"metric_collector","events_processed":5204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1040.8,"last_update":"2026-03-21T19:32:33.870465379Z"} +2026/03/21 19:32:38 ───────────────────────────────────────────────── +2026/03/21 19:32:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:32:43 [transform_engine] {"stage_name":"transform_engine","events_processed":173,"events_dropped":0,"avg_latency_ms":283.75601404915346,"throughput_eps":0,"last_update":"2026-03-21T19:32:38.965180456Z"} +2026/03/21 19:32:43 [detection_layer] {"stage_name":"detection_layer","events_processed":173,"events_dropped":0,"avg_latency_ms":17.5492184079561,"throughput_eps":0,"last_update":"2026-03-21T19:32:38.965299914Z"} +2026/03/21 19:32:43 [log_collector] {"stage_name":"log_collector","events_processed":9379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1875.8,"last_update":"2026-03-21T19:32:43.870275233Z"} +2026/03/21 19:32:43 [metric_collector] {"stage_name":"metric_collector","events_processed":5209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1041.8,"last_update":"2026-03-21T19:32:38.86976248Z"} +2026/03/21 19:32:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:32:38.878008763Z"} +2026/03/21 19:32:43 ───────────────────────────────────────────────── +2026/03/21 19:32:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:32:48 [log_collector] {"stage_name":"log_collector","events_processed":9379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1875.8,"last_update":"2026-03-21T19:32:43.870275233Z"} +2026/03/21 19:32:48 [metric_collector] {"stage_name":"metric_collector","events_processed":5214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1042.8,"last_update":"2026-03-21T19:32:43.870829315Z"} +2026/03/21 19:32:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:32:43.879134842Z"} +2026/03/21 19:32:48 [transform_engine] {"stage_name":"transform_engine","events_processed":173,"events_dropped":0,"avg_latency_ms":283.75601404915346,"throughput_eps":0,"last_update":"2026-03-21T19:32:43.965284527Z"} +2026/03/21 19:32:48 [detection_layer] {"stage_name":"detection_layer","events_processed":173,"events_dropped":0,"avg_latency_ms":17.5492184079561,"throughput_eps":0,"last_update":"2026-03-21T19:32:43.965392473Z"} +2026/03/21 19:32:48 ───────────────────────────────────────────────── +2026/03/21 19:32:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:32:53 [log_collector] {"stage_name":"log_collector","events_processed":9379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1875.8,"last_update":"2026-03-21T19:32:48.86997175Z"} +2026/03/21 19:32:53 [metric_collector] {"stage_name":"metric_collector","events_processed":5219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1043.8,"last_update":"2026-03-21T19:32:48.870474573Z"} +2026/03/21 19:32:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:32:48.878580356Z"} +2026/03/21 19:32:53 [transform_engine] {"stage_name":"transform_engine","events_processed":174,"events_dropped":0,"avg_latency_ms":242.4215932393228,"throughput_eps":0,"last_update":"2026-03-21T19:32:49.042991938Z"} +2026/03/21 19:32:53 [detection_layer] {"stage_name":"detection_layer","events_processed":173,"events_dropped":0,"avg_latency_ms":17.5492184079561,"throughput_eps":0,"last_update":"2026-03-21T19:32:48.966007739Z"} +2026/03/21 19:32:53 ───────────────────────────────────────────────── +2026/03/21 19:32:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:32:58 [log_collector] {"stage_name":"log_collector","events_processed":9379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1875.8,"last_update":"2026-03-21T19:32:53.869768418Z"} +2026/03/21 19:32:58 [metric_collector] {"stage_name":"metric_collector","events_processed":5224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1044.8,"last_update":"2026-03-21T19:32:53.870345013Z"} +2026/03/21 19:32:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:32:53.878715374Z"} +2026/03/21 19:32:58 [transform_engine] {"stage_name":"transform_engine","events_processed":174,"events_dropped":0,"avg_latency_ms":242.4215932393228,"throughput_eps":0,"last_update":"2026-03-21T19:32:53.965989012Z"} +2026/03/21 19:32:58 [detection_layer] {"stage_name":"detection_layer","events_processed":174,"events_dropped":0,"avg_latency_ms":18.04268452636488,"throughput_eps":0,"last_update":"2026-03-21T19:32:53.96604021Z"} +2026/03/21 19:32:58 ───────────────────────────────────────────────── +2026/03/21 19:33:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:33:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:32:58.879361793Z"} +2026/03/21 19:33:03 [transform_engine] {"stage_name":"transform_engine","events_processed":174,"events_dropped":0,"avg_latency_ms":242.4215932393228,"throughput_eps":0,"last_update":"2026-03-21T19:32:58.965869742Z"} +2026/03/21 19:33:03 [detection_layer] {"stage_name":"detection_layer","events_processed":174,"events_dropped":0,"avg_latency_ms":18.04268452636488,"throughput_eps":0,"last_update":"2026-03-21T19:32:58.965746476Z"} +2026/03/21 19:33:03 [log_collector] {"stage_name":"log_collector","events_processed":9379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1875.8,"last_update":"2026-03-21T19:32:58.870268758Z"} +2026/03/21 19:33:03 [metric_collector] {"stage_name":"metric_collector","events_processed":5229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1045.8,"last_update":"2026-03-21T19:32:58.870544066Z"} +2026/03/21 19:33:03 ───────────────────────────────────────────────── +2026/03/21 19:33:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:33:08 [transform_engine] {"stage_name":"transform_engine","events_processed":174,"events_dropped":0,"avg_latency_ms":242.4215932393228,"throughput_eps":0,"last_update":"2026-03-21T19:33:03.965434951Z"} +2026/03/21 19:33:08 [detection_layer] {"stage_name":"detection_layer","events_processed":174,"events_dropped":0,"avg_latency_ms":18.04268452636488,"throughput_eps":0,"last_update":"2026-03-21T19:33:03.965529052Z"} +2026/03/21 19:33:08 [log_collector] {"stage_name":"log_collector","events_processed":9379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1875.8,"last_update":"2026-03-21T19:33:03.869832946Z"} +2026/03/21 19:33:08 [metric_collector] {"stage_name":"metric_collector","events_processed":5234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1046.8,"last_update":"2026-03-21T19:33:03.870011168Z"} +2026/03/21 19:33:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:33:03.878148702Z"} +2026/03/21 19:33:08 ───────────────────────────────────────────────── +Saved state: 12 clusters, 9380 messages, reason: none +2026/03/21 19:33:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:33:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:33:08.879177692Z"} +2026/03/21 19:33:13 [transform_engine] {"stage_name":"transform_engine","events_processed":174,"events_dropped":0,"avg_latency_ms":242.4215932393228,"throughput_eps":0,"last_update":"2026-03-21T19:33:08.965393289Z"} +2026/03/21 19:33:13 [detection_layer] {"stage_name":"detection_layer","events_processed":174,"events_dropped":0,"avg_latency_ms":18.04268452636488,"throughput_eps":0,"last_update":"2026-03-21T19:33:08.965423156Z"} +2026/03/21 19:33:13 [log_collector] {"stage_name":"log_collector","events_processed":9379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1875.8,"last_update":"2026-03-21T19:33:08.870194808Z"} +2026/03/21 19:33:13 [metric_collector] {"stage_name":"metric_collector","events_processed":5239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1047.8,"last_update":"2026-03-21T19:33:08.870276635Z"} +2026/03/21 19:33:13 ───────────────────────────────────────────────── +2026/03/21 19:33:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:33:18 [log_collector] {"stage_name":"log_collector","events_processed":9384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1876.8,"last_update":"2026-03-21T19:33:13.870335689Z"} +2026/03/21 19:33:18 [metric_collector] {"stage_name":"metric_collector","events_processed":5244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1048.8,"last_update":"2026-03-21T19:33:13.870311553Z"} +2026/03/21 19:33:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:33:13.875861489Z"} +2026/03/21 19:33:18 [transform_engine] {"stage_name":"transform_engine","events_processed":174,"events_dropped":0,"avg_latency_ms":242.4215932393228,"throughput_eps":0,"last_update":"2026-03-21T19:33:13.966037223Z"} +2026/03/21 19:33:18 [detection_layer] {"stage_name":"detection_layer","events_processed":174,"events_dropped":0,"avg_latency_ms":18.04268452636488,"throughput_eps":0,"last_update":"2026-03-21T19:33:13.966059847Z"} +2026/03/21 19:33:18 ───────────────────────────────────────────────── +2026/03/21 19:33:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:33:23 [transform_engine] {"stage_name":"transform_engine","events_processed":174,"events_dropped":0,"avg_latency_ms":242.4215932393228,"throughput_eps":0,"last_update":"2026-03-21T19:33:13.966037223Z"} +2026/03/21 19:33:23 [detection_layer] {"stage_name":"detection_layer","events_processed":174,"events_dropped":0,"avg_latency_ms":18.04268452636488,"throughput_eps":0,"last_update":"2026-03-21T19:33:18.966201895Z"} +2026/03/21 19:33:23 [log_collector] {"stage_name":"log_collector","events_processed":9384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1876.8,"last_update":"2026-03-21T19:33:23.869728973Z"} +2026/03/21 19:33:23 [metric_collector] {"stage_name":"metric_collector","events_processed":5249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1049.8,"last_update":"2026-03-21T19:33:18.869903297Z"} +2026/03/21 19:33:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:33:18.877609775Z"} +2026/03/21 19:33:23 ───────────────────────────────────────────────── +2026/03/21 19:33:24 [ANOMALY] time=2026-03-21T19:33:24Z score=0.9052 method=SEAD details=MAD!:w=0.26,s=0.97 RRCF-fast!:w=0.19,s=0.96 RRCF-mid!:w=0.18,s=0.98 RRCF-slow!:w=0.16,s=0.98 COPOD!:w=0.21,s=0.66 +2026/03/21 19:33:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:33:28 [log_collector] {"stage_name":"log_collector","events_processed":9384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1876.8,"last_update":"2026-03-21T19:33:23.869728973Z"} +2026/03/21 19:33:28 [metric_collector] {"stage_name":"metric_collector","events_processed":5254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1050.8,"last_update":"2026-03-21T19:33:23.870111997Z"} +2026/03/21 19:33:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:33:23.875920067Z"} +2026/03/21 19:33:28 [transform_engine] {"stage_name":"transform_engine","events_processed":175,"events_dropped":0,"avg_latency_ms":1256.629082391458,"throughput_eps":0,"last_update":"2026-03-21T19:33:24.278527882Z"} +2026/03/21 19:33:28 [detection_layer] {"stage_name":"detection_layer","events_processed":174,"events_dropped":0,"avg_latency_ms":18.04268452636488,"throughput_eps":0,"last_update":"2026-03-21T19:33:23.966220359Z"} +2026/03/21 19:33:28 ───────────────────────────────────────────────── +2026/03/21 19:33:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:33:33 [detection_layer] {"stage_name":"detection_layer","events_processed":175,"events_dropped":0,"avg_latency_ms":16.106722821091903,"throughput_eps":0,"last_update":"2026-03-21T19:33:28.96573363Z"} +2026/03/21 19:33:33 [log_collector] {"stage_name":"log_collector","events_processed":9384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1876.8,"last_update":"2026-03-21T19:33:33.869966143Z"} +2026/03/21 19:33:33 [metric_collector] {"stage_name":"metric_collector","events_processed":5259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1051.8,"last_update":"2026-03-21T19:33:28.870149103Z"} +2026/03/21 19:33:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:33:28.876552404Z"} +2026/03/21 19:33:33 [transform_engine] {"stage_name":"transform_engine","events_processed":175,"events_dropped":0,"avg_latency_ms":1256.629082391458,"throughput_eps":0,"last_update":"2026-03-21T19:33:28.965766404Z"} +2026/03/21 19:33:33 ───────────────────────────────────────────────── +2026/03/21 19:33:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:33:38 [metric_collector] {"stage_name":"metric_collector","events_processed":5264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1052.8,"last_update":"2026-03-21T19:33:33.87021511Z"} +2026/03/21 19:33:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:33:33.876259473Z"} +2026/03/21 19:33:38 [transform_engine] {"stage_name":"transform_engine","events_processed":175,"events_dropped":0,"avg_latency_ms":1256.629082391458,"throughput_eps":0,"last_update":"2026-03-21T19:33:33.965422625Z"} +2026/03/21 19:33:38 [detection_layer] {"stage_name":"detection_layer","events_processed":175,"events_dropped":0,"avg_latency_ms":16.106722821091903,"throughput_eps":0,"last_update":"2026-03-21T19:33:33.965461119Z"} +2026/03/21 19:33:38 [log_collector] {"stage_name":"log_collector","events_processed":9384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1876.8,"last_update":"2026-03-21T19:33:33.869966143Z"} +2026/03/21 19:33:38 ───────────────────────────────────────────────── +2026/03/21 19:33:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:33:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:33:38.879925505Z"} +2026/03/21 19:33:43 [transform_engine] {"stage_name":"transform_engine","events_processed":175,"events_dropped":0,"avg_latency_ms":1256.629082391458,"throughput_eps":0,"last_update":"2026-03-21T19:33:38.966072716Z"} +2026/03/21 19:33:43 [detection_layer] {"stage_name":"detection_layer","events_processed":175,"events_dropped":0,"avg_latency_ms":16.106722821091903,"throughput_eps":0,"last_update":"2026-03-21T19:33:38.966093486Z"} +2026/03/21 19:33:43 [log_collector] {"stage_name":"log_collector","events_processed":9384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1876.8,"last_update":"2026-03-21T19:33:43.869409485Z"} +2026/03/21 19:33:43 [metric_collector] {"stage_name":"metric_collector","events_processed":5269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1053.8,"last_update":"2026-03-21T19:33:38.869777679Z"} +2026/03/21 19:33:43 ───────────────────────────────────────────────── +2026/03/21 19:33:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:33:48 [log_collector] {"stage_name":"log_collector","events_processed":9384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1876.8,"last_update":"2026-03-21T19:33:43.869409485Z"} +2026/03/21 19:33:48 [metric_collector] {"stage_name":"metric_collector","events_processed":5274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1054.8,"last_update":"2026-03-21T19:33:43.869831172Z"} +2026/03/21 19:33:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:33:43.879339332Z"} +2026/03/21 19:33:48 [transform_engine] {"stage_name":"transform_engine","events_processed":175,"events_dropped":0,"avg_latency_ms":1256.629082391458,"throughput_eps":0,"last_update":"2026-03-21T19:33:43.965517874Z"} +2026/03/21 19:33:48 [detection_layer] {"stage_name":"detection_layer","events_processed":175,"events_dropped":0,"avg_latency_ms":16.106722821091903,"throughput_eps":0,"last_update":"2026-03-21T19:33:43.965447789Z"} +2026/03/21 19:33:48 ───────────────────────────────────────────────── +2026/03/21 19:33:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:33:53 [detection_layer] {"stage_name":"detection_layer","events_processed":175,"events_dropped":0,"avg_latency_ms":16.106722821091903,"throughput_eps":0,"last_update":"2026-03-21T19:33:48.965454461Z"} +2026/03/21 19:33:53 [log_collector] {"stage_name":"log_collector","events_processed":9384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1876.8,"last_update":"2026-03-21T19:33:48.870316604Z"} +2026/03/21 19:33:53 [metric_collector] {"stage_name":"metric_collector","events_processed":5279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1055.8,"last_update":"2026-03-21T19:33:48.870557265Z"} +2026/03/21 19:33:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:33:48.87722926Z"} +2026/03/21 19:33:53 [transform_engine] {"stage_name":"transform_engine","events_processed":176,"events_dropped":0,"avg_latency_ms":1244.6157687131665,"throughput_eps":0,"last_update":"2026-03-21T19:33:50.162046712Z"} +2026/03/21 19:33:53 ───────────────────────────────────────────────── +2026/03/21 19:33:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:33:58 [log_collector] {"stage_name":"log_collector","events_processed":9393,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1878.6,"last_update":"2026-03-21T19:33:53.869538089Z"} +2026/03/21 19:33:58 [metric_collector] {"stage_name":"metric_collector","events_processed":5284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1056.8,"last_update":"2026-03-21T19:33:53.870149731Z"} +2026/03/21 19:33:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:33:53.876686687Z"} +2026/03/21 19:33:58 [transform_engine] {"stage_name":"transform_engine","events_processed":176,"events_dropped":0,"avg_latency_ms":1244.6157687131665,"throughput_eps":0,"last_update":"2026-03-21T19:33:53.965899912Z"} +2026/03/21 19:33:58 [detection_layer] {"stage_name":"detection_layer","events_processed":176,"events_dropped":0,"avg_latency_ms":15.790679656873522,"throughput_eps":0,"last_update":"2026-03-21T19:33:53.965889272Z"} +2026/03/21 19:33:58 ───────────────────────────────────────────────── +2026/03/21 19:34:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:34:03 [log_collector] {"stage_name":"log_collector","events_processed":9609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1921.8,"last_update":"2026-03-21T19:34:03.869407426Z"} +2026/03/21 19:34:03 [metric_collector] {"stage_name":"metric_collector","events_processed":5289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1057.8,"last_update":"2026-03-21T19:33:58.869859389Z"} +2026/03/21 19:34:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:33:58.877977555Z"} +2026/03/21 19:34:03 [transform_engine] {"stage_name":"transform_engine","events_processed":176,"events_dropped":0,"avg_latency_ms":1244.6157687131665,"throughput_eps":0,"last_update":"2026-03-21T19:33:58.965069905Z"} +2026/03/21 19:34:03 [detection_layer] {"stage_name":"detection_layer","events_processed":176,"events_dropped":0,"avg_latency_ms":15.790679656873522,"throughput_eps":0,"last_update":"2026-03-21T19:33:58.966271397Z"} +2026/03/21 19:34:03 ───────────────────────────────────────────────── +2026/03/21 19:34:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:34:08 [transform_engine] {"stage_name":"transform_engine","events_processed":176,"events_dropped":0,"avg_latency_ms":1244.6157687131665,"throughput_eps":0,"last_update":"2026-03-21T19:34:03.966095211Z"} +2026/03/21 19:34:08 [detection_layer] {"stage_name":"detection_layer","events_processed":176,"events_dropped":0,"avg_latency_ms":15.790679656873522,"throughput_eps":0,"last_update":"2026-03-21T19:34:03.966086124Z"} +2026/03/21 19:34:08 [log_collector] {"stage_name":"log_collector","events_processed":9609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1921.8,"last_update":"2026-03-21T19:34:03.869407426Z"} +2026/03/21 19:34:08 [metric_collector] {"stage_name":"metric_collector","events_processed":5294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1058.8,"last_update":"2026-03-21T19:34:03.869782815Z"} +2026/03/21 19:34:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:34:03.87580234Z"} +2026/03/21 19:34:08 ───────────────────────────────────────────────── +2026/03/21 19:34:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:34:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2122,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:34:08.88018609Z"} +2026/03/21 19:34:13 [transform_engine] {"stage_name":"transform_engine","events_processed":176,"events_dropped":0,"avg_latency_ms":1244.6157687131665,"throughput_eps":0,"last_update":"2026-03-21T19:34:08.965587538Z"} +2026/03/21 19:34:13 [detection_layer] {"stage_name":"detection_layer","events_processed":176,"events_dropped":0,"avg_latency_ms":15.790679656873522,"throughput_eps":0,"last_update":"2026-03-21T19:34:08.965574162Z"} +2026/03/21 19:34:13 [log_collector] {"stage_name":"log_collector","events_processed":9739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1947.8,"last_update":"2026-03-21T19:34:08.870384238Z"} +2026/03/21 19:34:13 [metric_collector] {"stage_name":"metric_collector","events_processed":5299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1059.8,"last_update":"2026-03-21T19:34:08.87047935Z"} +2026/03/21 19:34:13 ───────────────────────────────────────────────── +Saved state: 12 clusters, 9740 messages, reason: none +2026/03/21 19:34:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:34:18 [detection_layer] {"stage_name":"detection_layer","events_processed":176,"events_dropped":0,"avg_latency_ms":15.790679656873522,"throughput_eps":0,"last_update":"2026-03-21T19:34:13.966268784Z"} +2026/03/21 19:34:18 [log_collector] {"stage_name":"log_collector","events_processed":9739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1947.8,"last_update":"2026-03-21T19:34:13.87061995Z"} +2026/03/21 19:34:18 [metric_collector] {"stage_name":"metric_collector","events_processed":5304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1060.8,"last_update":"2026-03-21T19:34:13.870775628Z"} +2026/03/21 19:34:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:34:13.879916093Z"} +2026/03/21 19:34:18 [transform_engine] {"stage_name":"transform_engine","events_processed":176,"events_dropped":0,"avg_latency_ms":1244.6157687131665,"throughput_eps":0,"last_update":"2026-03-21T19:34:13.965104262Z"} +2026/03/21 19:34:18 ───────────────────────────────────────────────── +2026/03/21 19:34:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:34:23 [transform_engine] {"stage_name":"transform_engine","events_processed":177,"events_dropped":0,"avg_latency_ms":1017.0851053705333,"throughput_eps":0,"last_update":"2026-03-21T19:34:19.072397105Z"} +2026/03/21 19:34:23 [detection_layer] {"stage_name":"detection_layer","events_processed":176,"events_dropped":0,"avg_latency_ms":15.790679656873522,"throughput_eps":0,"last_update":"2026-03-21T19:34:18.965414384Z"} +2026/03/21 19:34:23 [log_collector] {"stage_name":"log_collector","events_processed":9742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1948.4,"last_update":"2026-03-21T19:34:18.870252525Z"} +2026/03/21 19:34:23 [metric_collector] {"stage_name":"metric_collector","events_processed":5309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1061.8,"last_update":"2026-03-21T19:34:18.870491192Z"} +2026/03/21 19:34:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2126,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:34:18.876216974Z"} +2026/03/21 19:34:23 ───────────────────────────────────────────────── +2026/03/21 19:34:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:34:28 [log_collector] {"stage_name":"log_collector","events_processed":9742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1948.4,"last_update":"2026-03-21T19:34:23.869788504Z"} +2026/03/21 19:34:28 [metric_collector] {"stage_name":"metric_collector","events_processed":5314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1062.8,"last_update":"2026-03-21T19:34:23.869830194Z"} +2026/03/21 19:34:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2128,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:34:23.879372459Z"} +2026/03/21 19:34:28 [transform_engine] {"stage_name":"transform_engine","events_processed":177,"events_dropped":0,"avg_latency_ms":1017.0851053705333,"throughput_eps":0,"last_update":"2026-03-21T19:34:23.965855046Z"} +2026/03/21 19:34:28 [detection_layer] {"stage_name":"detection_layer","events_processed":177,"events_dropped":0,"avg_latency_ms":15.413875325498818,"throughput_eps":0,"last_update":"2026-03-21T19:34:23.965837042Z"} +2026/03/21 19:34:28 ───────────────────────────────────────────────── +2026/03/21 19:34:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:34:33 [transform_engine] {"stage_name":"transform_engine","events_processed":177,"events_dropped":0,"avg_latency_ms":1017.0851053705333,"throughput_eps":0,"last_update":"2026-03-21T19:34:28.966168183Z"} +2026/03/21 19:34:33 [detection_layer] {"stage_name":"detection_layer","events_processed":177,"events_dropped":0,"avg_latency_ms":15.413875325498818,"throughput_eps":0,"last_update":"2026-03-21T19:34:28.966149177Z"} +2026/03/21 19:34:33 [log_collector] {"stage_name":"log_collector","events_processed":9753,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1950.6,"last_update":"2026-03-21T19:34:33.870448746Z"} +2026/03/21 19:34:33 [metric_collector] {"stage_name":"metric_collector","events_processed":5324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1064.8,"last_update":"2026-03-21T19:34:33.869666367Z"} +2026/03/21 19:34:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2130,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:34:28.880882409Z"} +2026/03/21 19:34:33 ───────────────────────────────────────────────── +2026/03/21 19:34:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:34:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:34:33.8783105Z"} +2026/03/21 19:34:38 [transform_engine] {"stage_name":"transform_engine","events_processed":177,"events_dropped":0,"avg_latency_ms":1017.0851053705333,"throughput_eps":0,"last_update":"2026-03-21T19:34:33.965681489Z"} +2026/03/21 19:34:38 [detection_layer] {"stage_name":"detection_layer","events_processed":177,"events_dropped":0,"avg_latency_ms":15.413875325498818,"throughput_eps":0,"last_update":"2026-03-21T19:34:33.965665578Z"} +2026/03/21 19:34:38 [log_collector] {"stage_name":"log_collector","events_processed":9753,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1950.6,"last_update":"2026-03-21T19:34:33.870448746Z"} +2026/03/21 19:34:38 [metric_collector] {"stage_name":"metric_collector","events_processed":5324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1064.8,"last_update":"2026-03-21T19:34:33.869666367Z"} +2026/03/21 19:34:38 ───────────────────────────────────────────────── +2026/03/21 19:34:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:34:43 [detection_layer] {"stage_name":"detection_layer","events_processed":177,"events_dropped":0,"avg_latency_ms":15.413875325498818,"throughput_eps":0,"last_update":"2026-03-21T19:34:38.966028714Z"} +2026/03/21 19:34:43 [log_collector] {"stage_name":"log_collector","events_processed":9769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1953.8,"last_update":"2026-03-21T19:34:43.869442249Z"} +2026/03/21 19:34:43 [metric_collector] {"stage_name":"metric_collector","events_processed":5329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1065.8,"last_update":"2026-03-21T19:34:38.869987272Z"} +2026/03/21 19:34:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:34:38.878819497Z"} +2026/03/21 19:34:43 [transform_engine] {"stage_name":"transform_engine","events_processed":177,"events_dropped":0,"avg_latency_ms":1017.0851053705333,"throughput_eps":0,"last_update":"2026-03-21T19:34:38.966012082Z"} +2026/03/21 19:34:43 ───────────────────────────────────────────────── +2026/03/21 19:34:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:34:48 [log_collector] {"stage_name":"log_collector","events_processed":9769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1953.8,"last_update":"2026-03-21T19:34:43.869442249Z"} +2026/03/21 19:34:48 [metric_collector] {"stage_name":"metric_collector","events_processed":5334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1066.8,"last_update":"2026-03-21T19:34:43.869990259Z"} +2026/03/21 19:34:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:34:43.878376989Z"} +2026/03/21 19:34:48 [transform_engine] {"stage_name":"transform_engine","events_processed":177,"events_dropped":0,"avg_latency_ms":1017.0851053705333,"throughput_eps":0,"last_update":"2026-03-21T19:34:43.965681429Z"} +2026/03/21 19:34:48 [detection_layer] {"stage_name":"detection_layer","events_processed":177,"events_dropped":0,"avg_latency_ms":15.413875325498818,"throughput_eps":0,"last_update":"2026-03-21T19:34:43.965734901Z"} +2026/03/21 19:34:48 ───────────────────────────────────────────────── +2026/03/21 19:34:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:34:53 [log_collector] {"stage_name":"log_collector","events_processed":9769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1953.8,"last_update":"2026-03-21T19:34:48.869640843Z"} +2026/03/21 19:34:53 [metric_collector] {"stage_name":"metric_collector","events_processed":5339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1067.8,"last_update":"2026-03-21T19:34:48.870003078Z"} +2026/03/21 19:34:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:34:48.878817237Z"} +2026/03/21 19:34:53 [transform_engine] {"stage_name":"transform_engine","events_processed":177,"events_dropped":0,"avg_latency_ms":1017.0851053705333,"throughput_eps":0,"last_update":"2026-03-21T19:34:48.966026814Z"} +2026/03/21 19:34:53 [detection_layer] {"stage_name":"detection_layer","events_processed":177,"events_dropped":0,"avg_latency_ms":15.413875325498818,"throughput_eps":0,"last_update":"2026-03-21T19:34:48.966232768Z"} +2026/03/21 19:34:53 ───────────────────────────────────────────────── +2026/03/21 19:34:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:34:58 [detection_layer] {"stage_name":"detection_layer","events_processed":178,"events_dropped":0,"avg_latency_ms":15.996241260399055,"throughput_eps":0,"last_update":"2026-03-21T19:34:53.965689382Z"} +2026/03/21 19:34:58 [log_collector] {"stage_name":"log_collector","events_processed":9769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1953.8,"last_update":"2026-03-21T19:34:53.870151417Z"} +2026/03/21 19:34:58 [metric_collector] {"stage_name":"metric_collector","events_processed":5344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1068.8,"last_update":"2026-03-21T19:34:53.870525162Z"} +2026/03/21 19:34:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:34:53.880498353Z"} +2026/03/21 19:34:58 [transform_engine] {"stage_name":"transform_engine","events_processed":178,"events_dropped":0,"avg_latency_ms":836.2406748964266,"throughput_eps":0,"last_update":"2026-03-21T19:34:53.965696204Z"} +2026/03/21 19:34:58 ───────────────────────────────────────────────── +2026/03/21 19:35:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:35:03 [log_collector] {"stage_name":"log_collector","events_processed":9769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1953.8,"last_update":"2026-03-21T19:35:03.869793117Z"} +2026/03/21 19:35:03 [metric_collector] {"stage_name":"metric_collector","events_processed":5349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1069.8,"last_update":"2026-03-21T19:34:58.870803462Z"} +2026/03/21 19:35:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:34:58.879332205Z"} +2026/03/21 19:35:03 [transform_engine] {"stage_name":"transform_engine","events_processed":178,"events_dropped":0,"avg_latency_ms":836.2406748964266,"throughput_eps":0,"last_update":"2026-03-21T19:34:58.965433787Z"} +2026/03/21 19:35:03 [detection_layer] {"stage_name":"detection_layer","events_processed":178,"events_dropped":0,"avg_latency_ms":15.996241260399055,"throughput_eps":0,"last_update":"2026-03-21T19:34:58.965423568Z"} +2026/03/21 19:35:03 ───────────────────────────────────────────────── +2026/03/21 19:35:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:35:08 [detection_layer] {"stage_name":"detection_layer","events_processed":178,"events_dropped":0,"avg_latency_ms":15.996241260399055,"throughput_eps":0,"last_update":"2026-03-21T19:35:03.965461029Z"} +2026/03/21 19:35:08 [log_collector] {"stage_name":"log_collector","events_processed":9769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1953.8,"last_update":"2026-03-21T19:35:03.869793117Z"} +2026/03/21 19:35:08 [metric_collector] {"stage_name":"metric_collector","events_processed":5354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1070.8,"last_update":"2026-03-21T19:35:03.870135764Z"} +2026/03/21 19:35:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:35:03.879122905Z"} +2026/03/21 19:35:08 [transform_engine] {"stage_name":"transform_engine","events_processed":178,"events_dropped":0,"avg_latency_ms":836.2406748964266,"throughput_eps":0,"last_update":"2026-03-21T19:35:03.965475918Z"} +2026/03/21 19:35:08 ───────────────────────────────────────────────── +2026/03/21 19:35:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:35:13 [detection_layer] {"stage_name":"detection_layer","events_processed":178,"events_dropped":0,"avg_latency_ms":15.996241260399055,"throughput_eps":0,"last_update":"2026-03-21T19:35:08.965395726Z"} +2026/03/21 19:35:13 [log_collector] {"stage_name":"log_collector","events_processed":9769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1953.8,"last_update":"2026-03-21T19:35:13.869517919Z"} +2026/03/21 19:35:13 [metric_collector] {"stage_name":"metric_collector","events_processed":5359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1071.8,"last_update":"2026-03-21T19:35:08.8698456Z"} +2026/03/21 19:35:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:35:08.878139272Z"} +2026/03/21 19:35:13 [transform_engine] {"stage_name":"transform_engine","events_processed":178,"events_dropped":0,"avg_latency_ms":836.2406748964266,"throughput_eps":0,"last_update":"2026-03-21T19:35:08.965404392Z"} +2026/03/21 19:35:13 ───────────────────────────────────────────────── +2026/03/21 19:35:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:35:18 [log_collector] {"stage_name":"log_collector","events_processed":9769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1953.8,"last_update":"2026-03-21T19:35:18.869762978Z"} +2026/03/21 19:35:18 [metric_collector] {"stage_name":"metric_collector","events_processed":5364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1072.8,"last_update":"2026-03-21T19:35:13.87005033Z"} +2026/03/21 19:35:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:35:13.878754597Z"} +2026/03/21 19:35:18 [transform_engine] {"stage_name":"transform_engine","events_processed":178,"events_dropped":0,"avg_latency_ms":836.2406748964266,"throughput_eps":0,"last_update":"2026-03-21T19:35:13.965950706Z"} +2026/03/21 19:35:18 [detection_layer] {"stage_name":"detection_layer","events_processed":178,"events_dropped":0,"avg_latency_ms":15.996241260399055,"throughput_eps":0,"last_update":"2026-03-21T19:35:13.965944434Z"} +2026/03/21 19:35:18 ───────────────────────────────────────────────── +2026/03/21 19:35:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:35:23 [log_collector] {"stage_name":"log_collector","events_processed":9769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1953.8,"last_update":"2026-03-21T19:35:23.869581495Z"} +2026/03/21 19:35:23 [metric_collector] {"stage_name":"metric_collector","events_processed":5369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1073.8,"last_update":"2026-03-21T19:35:18.870680546Z"} +2026/03/21 19:35:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:35:18.878363177Z"} +2026/03/21 19:35:23 [transform_engine] {"stage_name":"transform_engine","events_processed":178,"events_dropped":0,"avg_latency_ms":836.2406748964266,"throughput_eps":0,"last_update":"2026-03-21T19:35:18.965547682Z"} +2026/03/21 19:35:23 [detection_layer] {"stage_name":"detection_layer","events_processed":178,"events_dropped":0,"avg_latency_ms":15.996241260399055,"throughput_eps":0,"last_update":"2026-03-21T19:35:18.965539747Z"} +2026/03/21 19:35:23 ───────────────────────────────────────────────── +2026/03/21 19:35:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:35:28 [log_collector] {"stage_name":"log_collector","events_processed":9769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1953.8,"last_update":"2026-03-21T19:35:23.869581495Z"} +2026/03/21 19:35:28 [metric_collector] {"stage_name":"metric_collector","events_processed":5374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1074.8,"last_update":"2026-03-21T19:35:23.870053649Z"} +2026/03/21 19:35:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:35:23.878220638Z"} +2026/03/21 19:35:28 [transform_engine] {"stage_name":"transform_engine","events_processed":179,"events_dropped":0,"avg_latency_ms":680.5758269171414,"throughput_eps":0,"last_update":"2026-03-21T19:35:23.965606488Z"} +2026/03/21 19:35:28 [detection_layer] {"stage_name":"detection_layer","events_processed":179,"events_dropped":0,"avg_latency_ms":16.762439408319246,"throughput_eps":0,"last_update":"2026-03-21T19:35:23.965637628Z"} +2026/03/21 19:35:28 ───────────────────────────────────────────────── +2026/03/21 19:35:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:35:33 [metric_collector] {"stage_name":"metric_collector","events_processed":5379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1075.8,"last_update":"2026-03-21T19:35:28.870525892Z"} +2026/03/21 19:35:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:35:28.878890601Z"} +2026/03/21 19:35:33 [transform_engine] {"stage_name":"transform_engine","events_processed":179,"events_dropped":0,"avg_latency_ms":680.5758269171414,"throughput_eps":0,"last_update":"2026-03-21T19:35:28.96606775Z"} +2026/03/21 19:35:33 [detection_layer] {"stage_name":"detection_layer","events_processed":179,"events_dropped":0,"avg_latency_ms":16.762439408319246,"throughput_eps":0,"last_update":"2026-03-21T19:35:28.966243847Z"} +2026/03/21 19:35:33 [log_collector] {"stage_name":"log_collector","events_processed":9769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1953.8,"last_update":"2026-03-21T19:35:28.869875306Z"} +2026/03/21 19:35:33 ───────────────────────────────────────────────── +2026/03/21 19:35:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:35:38 [log_collector] {"stage_name":"log_collector","events_processed":9769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1953.8,"last_update":"2026-03-21T19:35:38.869399196Z"} +2026/03/21 19:35:38 [metric_collector] {"stage_name":"metric_collector","events_processed":5384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1076.8,"last_update":"2026-03-21T19:35:33.869995451Z"} +2026/03/21 19:35:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:35:33.878617551Z"} +2026/03/21 19:35:38 [transform_engine] {"stage_name":"transform_engine","events_processed":179,"events_dropped":0,"avg_latency_ms":680.5758269171414,"throughput_eps":0,"last_update":"2026-03-21T19:35:33.965892678Z"} +2026/03/21 19:35:38 [detection_layer] {"stage_name":"detection_layer","events_processed":179,"events_dropped":0,"avg_latency_ms":16.762439408319246,"throughput_eps":0,"last_update":"2026-03-21T19:35:33.966000485Z"} +2026/03/21 19:35:38 ───────────────────────────────────────────────── +2026/03/21 19:35:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:35:43 [transform_engine] {"stage_name":"transform_engine","events_processed":179,"events_dropped":0,"avg_latency_ms":680.5758269171414,"throughput_eps":0,"last_update":"2026-03-21T19:35:38.965224195Z"} +2026/03/21 19:35:43 [detection_layer] {"stage_name":"detection_layer","events_processed":179,"events_dropped":0,"avg_latency_ms":16.762439408319246,"throughput_eps":0,"last_update":"2026-03-21T19:35:38.965315249Z"} +2026/03/21 19:35:43 [log_collector] {"stage_name":"log_collector","events_processed":9769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1953.8,"last_update":"2026-03-21T19:35:38.869399196Z"} +2026/03/21 19:35:43 [metric_collector] {"stage_name":"metric_collector","events_processed":5389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1077.8,"last_update":"2026-03-21T19:35:38.869878615Z"} +2026/03/21 19:35:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:35:38.878045343Z"} +2026/03/21 19:35:43 ───────────────────────────────────────────────── +Saved state: 12 clusters, 9770 messages, reason: none +2026/03/21 19:35:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:35:48 [transform_engine] {"stage_name":"transform_engine","events_processed":179,"events_dropped":0,"avg_latency_ms":680.5758269171414,"throughput_eps":0,"last_update":"2026-03-21T19:35:43.965403682Z"} +2026/03/21 19:35:48 [detection_layer] {"stage_name":"detection_layer","events_processed":179,"events_dropped":0,"avg_latency_ms":16.762439408319246,"throughput_eps":0,"last_update":"2026-03-21T19:35:43.965281878Z"} +2026/03/21 19:35:48 [log_collector] {"stage_name":"log_collector","events_processed":9769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1953.8,"last_update":"2026-03-21T19:35:43.86963955Z"} +2026/03/21 19:35:48 [metric_collector] {"stage_name":"metric_collector","events_processed":5394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1078.8,"last_update":"2026-03-21T19:35:43.86983234Z"} +2026/03/21 19:35:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:35:43.879099377Z"} +2026/03/21 19:35:48 ───────────────────────────────────────────────── +2026/03/21 19:35:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:35:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:35:48.877296902Z"} +2026/03/21 19:35:53 [transform_engine] {"stage_name":"transform_engine","events_processed":180,"events_dropped":0,"avg_latency_ms":964.7322419337132,"throughput_eps":0,"last_update":"2026-03-21T19:35:51.066979851Z"} +2026/03/21 19:35:53 [detection_layer] {"stage_name":"detection_layer","events_processed":179,"events_dropped":0,"avg_latency_ms":16.762439408319246,"throughput_eps":0,"last_update":"2026-03-21T19:35:48.96572196Z"} +2026/03/21 19:35:53 [log_collector] {"stage_name":"log_collector","events_processed":9782,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1956.4,"last_update":"2026-03-21T19:35:48.870073592Z"} +2026/03/21 19:35:53 [metric_collector] {"stage_name":"metric_collector","events_processed":5399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1079.8,"last_update":"2026-03-21T19:35:48.870449502Z"} +2026/03/21 19:35:53 ───────────────────────────────────────────────── +2026/03/21 19:35:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:35:58 [log_collector] {"stage_name":"log_collector","events_processed":9783,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1956.6,"last_update":"2026-03-21T19:35:58.869475864Z"} +2026/03/21 19:35:58 [metric_collector] {"stage_name":"metric_collector","events_processed":5404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1080.8,"last_update":"2026-03-21T19:35:53.870200901Z"} +2026/03/21 19:35:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:35:53.87921313Z"} +2026/03/21 19:35:58 [transform_engine] {"stage_name":"transform_engine","events_processed":180,"events_dropped":0,"avg_latency_ms":964.7322419337132,"throughput_eps":0,"last_update":"2026-03-21T19:35:53.965366876Z"} +2026/03/21 19:35:58 [detection_layer] {"stage_name":"detection_layer","events_processed":180,"events_dropped":0,"avg_latency_ms":17.0253509266554,"throughput_eps":0,"last_update":"2026-03-21T19:35:53.965414838Z"} +2026/03/21 19:35:58 ───────────────────────────────────────────────── +2026/03/21 19:36:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:36:03 [detection_layer] {"stage_name":"detection_layer","events_processed":180,"events_dropped":0,"avg_latency_ms":17.0253509266554,"throughput_eps":0,"last_update":"2026-03-21T19:35:58.965653516Z"} +2026/03/21 19:36:03 [log_collector] {"stage_name":"log_collector","events_processed":9783,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1956.6,"last_update":"2026-03-21T19:35:58.869475864Z"} +2026/03/21 19:36:03 [metric_collector] {"stage_name":"metric_collector","events_processed":5409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1081.8,"last_update":"2026-03-21T19:35:58.87004268Z"} +2026/03/21 19:36:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:35:58.878286736Z"} +2026/03/21 19:36:03 [transform_engine] {"stage_name":"transform_engine","events_processed":180,"events_dropped":0,"avg_latency_ms":964.7322419337132,"throughput_eps":0,"last_update":"2026-03-21T19:35:58.965616135Z"} +2026/03/21 19:36:03 ───────────────────────────────────────────────── +2026/03/21 19:36:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:36:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:36:03.878738752Z"} +2026/03/21 19:36:08 [transform_engine] {"stage_name":"transform_engine","events_processed":180,"events_dropped":0,"avg_latency_ms":964.7322419337132,"throughput_eps":0,"last_update":"2026-03-21T19:36:03.966031088Z"} +2026/03/21 19:36:08 [detection_layer] {"stage_name":"detection_layer","events_processed":180,"events_dropped":0,"avg_latency_ms":17.0253509266554,"throughput_eps":0,"last_update":"2026-03-21T19:36:03.966010158Z"} +2026/03/21 19:36:08 [log_collector] {"stage_name":"log_collector","events_processed":9783,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1956.6,"last_update":"2026-03-21T19:36:03.869771239Z"} +2026/03/21 19:36:08 [metric_collector] {"stage_name":"metric_collector","events_processed":5414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1082.8,"last_update":"2026-03-21T19:36:03.870153311Z"} +2026/03/21 19:36:08 ───────────────────────────────────────────────── +2026/03/21 19:36:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:36:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2170,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:36:08.879309471Z"} +2026/03/21 19:36:13 [transform_engine] {"stage_name":"transform_engine","events_processed":180,"events_dropped":0,"avg_latency_ms":964.7322419337132,"throughput_eps":0,"last_update":"2026-03-21T19:36:08.965702934Z"} +2026/03/21 19:36:13 [detection_layer] {"stage_name":"detection_layer","events_processed":180,"events_dropped":0,"avg_latency_ms":17.0253509266554,"throughput_eps":0,"last_update":"2026-03-21T19:36:08.965602522Z"} +2026/03/21 19:36:13 [log_collector] {"stage_name":"log_collector","events_processed":9783,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1956.6,"last_update":"2026-03-21T19:36:08.870336739Z"} +2026/03/21 19:36:13 [metric_collector] {"stage_name":"metric_collector","events_processed":5419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1083.8,"last_update":"2026-03-21T19:36:08.870919014Z"} +2026/03/21 19:36:13 ───────────────────────────────────────────────── +2026/03/21 19:36:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:36:18 [detection_layer] {"stage_name":"detection_layer","events_processed":180,"events_dropped":0,"avg_latency_ms":17.0253509266554,"throughput_eps":0,"last_update":"2026-03-21T19:36:13.966071844Z"} +2026/03/21 19:36:18 [log_collector] {"stage_name":"log_collector","events_processed":9783,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1956.6,"last_update":"2026-03-21T19:36:18.870375156Z"} +2026/03/21 19:36:18 [metric_collector] {"stage_name":"metric_collector","events_processed":5424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1084.8,"last_update":"2026-03-21T19:36:13.870238454Z"} +2026/03/21 19:36:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:36:13.878654259Z"} +2026/03/21 19:36:18 [transform_engine] {"stage_name":"transform_engine","events_processed":180,"events_dropped":0,"avg_latency_ms":964.7322419337132,"throughput_eps":0,"last_update":"2026-03-21T19:36:13.965964258Z"} +2026/03/21 19:36:18 ───────────────────────────────────────────────── +2026/03/21 19:36:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:36:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:36:18.879171992Z"} +2026/03/21 19:36:23 [transform_engine] {"stage_name":"transform_engine","events_processed":181,"events_dropped":0,"avg_latency_ms":795.0338535469706,"throughput_eps":0,"last_update":"2026-03-21T19:36:19.081732173Z"} +2026/03/21 19:36:23 [detection_layer] {"stage_name":"detection_layer","events_processed":180,"events_dropped":0,"avg_latency_ms":17.0253509266554,"throughput_eps":0,"last_update":"2026-03-21T19:36:18.965588148Z"} +2026/03/21 19:36:23 [log_collector] {"stage_name":"log_collector","events_processed":9783,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1956.6,"last_update":"2026-03-21T19:36:18.870375156Z"} +2026/03/21 19:36:23 [metric_collector] {"stage_name":"metric_collector","events_processed":5429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1085.8,"last_update":"2026-03-21T19:36:18.870722842Z"} +2026/03/21 19:36:23 ───────────────────────────────────────────────── +2026/03/21 19:36:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:36:28 [log_collector] {"stage_name":"log_collector","events_processed":9783,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1956.6,"last_update":"2026-03-21T19:36:28.869688054Z"} +2026/03/21 19:36:28 [metric_collector] {"stage_name":"metric_collector","events_processed":5434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1086.8,"last_update":"2026-03-21T19:36:23.870173268Z"} +2026/03/21 19:36:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:36:23.879404114Z"} +2026/03/21 19:36:28 [transform_engine] {"stage_name":"transform_engine","events_processed":181,"events_dropped":0,"avg_latency_ms":795.0338535469706,"throughput_eps":0,"last_update":"2026-03-21T19:36:23.96590397Z"} +2026/03/21 19:36:28 [detection_layer] {"stage_name":"detection_layer","events_processed":181,"events_dropped":0,"avg_latency_ms":17.784926341324322,"throughput_eps":0,"last_update":"2026-03-21T19:36:23.965790193Z"} +2026/03/21 19:36:28 ───────────────────────────────────────────────── +2026/03/21 19:36:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:36:33 [log_collector] {"stage_name":"log_collector","events_processed":9783,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1956.6,"last_update":"2026-03-21T19:36:33.869412884Z"} +2026/03/21 19:36:33 [metric_collector] {"stage_name":"metric_collector","events_processed":5439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1087.8,"last_update":"2026-03-21T19:36:28.870211127Z"} +2026/03/21 19:36:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:36:28.878502072Z"} +2026/03/21 19:36:33 [transform_engine] {"stage_name":"transform_engine","events_processed":181,"events_dropped":0,"avg_latency_ms":795.0338535469706,"throughput_eps":0,"last_update":"2026-03-21T19:36:28.965759479Z"} +2026/03/21 19:36:33 [detection_layer] {"stage_name":"detection_layer","events_processed":181,"events_dropped":0,"avg_latency_ms":17.784926341324322,"throughput_eps":0,"last_update":"2026-03-21T19:36:28.965731175Z"} +2026/03/21 19:36:33 ───────────────────────────────────────────────── +2026/03/21 19:36:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:36:38 [detection_layer] {"stage_name":"detection_layer","events_processed":181,"events_dropped":0,"avg_latency_ms":17.784926341324322,"throughput_eps":0,"last_update":"2026-03-21T19:36:33.965472366Z"} +2026/03/21 19:36:38 [log_collector] {"stage_name":"log_collector","events_processed":9783,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1956.6,"last_update":"2026-03-21T19:36:33.869412884Z"} +2026/03/21 19:36:38 [metric_collector] {"stage_name":"metric_collector","events_processed":5444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1088.8,"last_update":"2026-03-21T19:36:33.869895278Z"} +2026/03/21 19:36:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:36:33.878125548Z"} +2026/03/21 19:36:38 [transform_engine] {"stage_name":"transform_engine","events_processed":181,"events_dropped":0,"avg_latency_ms":795.0338535469706,"throughput_eps":0,"last_update":"2026-03-21T19:36:33.965442838Z"} +2026/03/21 19:36:38 ───────────────────────────────────────────────── +2026/03/21 19:36:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:36:43 [metric_collector] {"stage_name":"metric_collector","events_processed":5449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1089.8,"last_update":"2026-03-21T19:36:38.869767069Z"} +2026/03/21 19:36:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:36:38.877841359Z"} +2026/03/21 19:36:43 [transform_engine] {"stage_name":"transform_engine","events_processed":181,"events_dropped":0,"avg_latency_ms":795.0338535469706,"throughput_eps":0,"last_update":"2026-03-21T19:36:38.966039968Z"} +2026/03/21 19:36:43 [detection_layer] {"stage_name":"detection_layer","events_processed":181,"events_dropped":0,"avg_latency_ms":17.784926341324322,"throughput_eps":0,"last_update":"2026-03-21T19:36:38.966031321Z"} +2026/03/21 19:36:43 [log_collector] {"stage_name":"log_collector","events_processed":9783,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1956.6,"last_update":"2026-03-21T19:36:43.869410981Z"} +2026/03/21 19:36:43 ───────────────────────────────────────────────── +2026/03/21 19:36:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:36:48 [transform_engine] {"stage_name":"transform_engine","events_processed":181,"events_dropped":0,"avg_latency_ms":795.0338535469706,"throughput_eps":0,"last_update":"2026-03-21T19:36:43.965164455Z"} +2026/03/21 19:36:48 [detection_layer] {"stage_name":"detection_layer","events_processed":181,"events_dropped":0,"avg_latency_ms":17.784926341324322,"throughput_eps":0,"last_update":"2026-03-21T19:36:43.966255204Z"} +2026/03/21 19:36:48 [log_collector] {"stage_name":"log_collector","events_processed":9783,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1956.6,"last_update":"2026-03-21T19:36:48.869879553Z"} +2026/03/21 19:36:48 [metric_collector] {"stage_name":"metric_collector","events_processed":5454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1090.8,"last_update":"2026-03-21T19:36:43.869949233Z"} +2026/03/21 19:36:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:36:43.879056993Z"} +2026/03/21 19:36:48 ───────────────────────────────────────────────── +2026/03/21 19:36:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:36:53 [transform_engine] {"stage_name":"transform_engine","events_processed":181,"events_dropped":0,"avg_latency_ms":795.0338535469706,"throughput_eps":0,"last_update":"2026-03-21T19:36:48.965131215Z"} +2026/03/21 19:36:53 [detection_layer] {"stage_name":"detection_layer","events_processed":181,"events_dropped":0,"avg_latency_ms":17.784926341324322,"throughput_eps":0,"last_update":"2026-03-21T19:36:48.965304406Z"} +2026/03/21 19:36:53 [log_collector] {"stage_name":"log_collector","events_processed":9783,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1956.6,"last_update":"2026-03-21T19:36:48.869879553Z"} +2026/03/21 19:36:53 [metric_collector] {"stage_name":"metric_collector","events_processed":5459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1091.8,"last_update":"2026-03-21T19:36:48.870251556Z"} +2026/03/21 19:36:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:36:48.879992029Z"} +2026/03/21 19:36:53 ───────────────────────────────────────────────── +Saved state: 12 clusters, 9784 messages, reason: none +2026/03/21 19:36:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:36:58 [transform_engine] {"stage_name":"transform_engine","events_processed":182,"events_dropped":0,"avg_latency_ms":650.0306434375765,"throughput_eps":0,"last_update":"2026-03-21T19:36:53.965613512Z"} +2026/03/21 19:36:58 [detection_layer] {"stage_name":"detection_layer","events_processed":182,"events_dropped":0,"avg_latency_ms":18.39092527305946,"throughput_eps":0,"last_update":"2026-03-21T19:36:53.965598845Z"} +2026/03/21 19:36:58 [log_collector] {"stage_name":"log_collector","events_processed":9788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1957.6,"last_update":"2026-03-21T19:36:58.869480228Z"} +2026/03/21 19:36:58 [metric_collector] {"stage_name":"metric_collector","events_processed":5464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1092.8,"last_update":"2026-03-21T19:36:53.870776245Z"} +2026/03/21 19:36:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:36:53.880381469Z"} +2026/03/21 19:36:58 ───────────────────────────────────────────────── +2026/03/21 19:37:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:37:03 [metric_collector] {"stage_name":"metric_collector","events_processed":5469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1093.8,"last_update":"2026-03-21T19:36:58.86989392Z"} +2026/03/21 19:37:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:36:58.878030309Z"} +2026/03/21 19:37:03 [transform_engine] {"stage_name":"transform_engine","events_processed":182,"events_dropped":0,"avg_latency_ms":650.0306434375765,"throughput_eps":0,"last_update":"2026-03-21T19:36:58.965078332Z"} +2026/03/21 19:37:03 [detection_layer] {"stage_name":"detection_layer","events_processed":182,"events_dropped":0,"avg_latency_ms":18.39092527305946,"throughput_eps":0,"last_update":"2026-03-21T19:36:58.966158301Z"} +2026/03/21 19:37:03 [log_collector] {"stage_name":"log_collector","events_processed":9788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1957.6,"last_update":"2026-03-21T19:36:58.869480228Z"} +2026/03/21 19:37:03 ───────────────────────────────────────────────── +2026/03/21 19:37:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:37:08 [log_collector] {"stage_name":"log_collector","events_processed":9788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1957.6,"last_update":"2026-03-21T19:37:03.870232845Z"} +2026/03/21 19:37:08 [metric_collector] {"stage_name":"metric_collector","events_processed":5474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1094.8,"last_update":"2026-03-21T19:37:03.870469328Z"} +2026/03/21 19:37:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:37:03.877165287Z"} +2026/03/21 19:37:08 [transform_engine] {"stage_name":"transform_engine","events_processed":182,"events_dropped":0,"avg_latency_ms":650.0306434375765,"throughput_eps":0,"last_update":"2026-03-21T19:37:03.965420602Z"} +2026/03/21 19:37:08 [detection_layer] {"stage_name":"detection_layer","events_processed":182,"events_dropped":0,"avg_latency_ms":18.39092527305946,"throughput_eps":0,"last_update":"2026-03-21T19:37:03.965371639Z"} +2026/03/21 19:37:08 ───────────────────────────────────────────────── +2026/03/21 19:37:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:37:13 [metric_collector] {"stage_name":"metric_collector","events_processed":5479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1095.8,"last_update":"2026-03-21T19:37:08.870020885Z"} +2026/03/21 19:37:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:37:08.877857781Z"} +2026/03/21 19:37:13 [transform_engine] {"stage_name":"transform_engine","events_processed":182,"events_dropped":0,"avg_latency_ms":650.0306434375765,"throughput_eps":0,"last_update":"2026-03-21T19:37:08.966034374Z"} +2026/03/21 19:37:13 [detection_layer] {"stage_name":"detection_layer","events_processed":182,"events_dropped":0,"avg_latency_ms":18.39092527305946,"throughput_eps":0,"last_update":"2026-03-21T19:37:08.96605364Z"} +2026/03/21 19:37:13 [log_collector] {"stage_name":"log_collector","events_processed":9788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1957.6,"last_update":"2026-03-21T19:37:08.869777619Z"} +2026/03/21 19:37:13 ───────────────────────────────────────────────── +2026/03/21 19:37:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:37:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:37:13.876563377Z"} +2026/03/21 19:37:18 [transform_engine] {"stage_name":"transform_engine","events_processed":182,"events_dropped":0,"avg_latency_ms":650.0306434375765,"throughput_eps":0,"last_update":"2026-03-21T19:37:13.965764152Z"} +2026/03/21 19:37:18 [detection_layer] {"stage_name":"detection_layer","events_processed":182,"events_dropped":0,"avg_latency_ms":18.39092527305946,"throughput_eps":0,"last_update":"2026-03-21T19:37:13.965705339Z"} +2026/03/21 19:37:18 [log_collector] {"stage_name":"log_collector","events_processed":9788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1957.6,"last_update":"2026-03-21T19:37:13.869474765Z"} +2026/03/21 19:37:18 [metric_collector] {"stage_name":"metric_collector","events_processed":5484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1096.8,"last_update":"2026-03-21T19:37:13.869777826Z"} +2026/03/21 19:37:18 ───────────────────────────────────────────────── +2026/03/21 19:37:23 [ANOMALY] time=2026-03-21T19:37:21Z score=0.8844 method=SEAD details=MAD!:w=0.26,s=0.94 RRCF-fast:w=0.19,s=0.79 RRCF-mid:w=0.17,s=0.84 RRCF-slow:w=0.16,s=0.90 COPOD!:w=0.22,s=0.93 +2026/03/21 19:37:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:37:23 [log_collector] {"stage_name":"log_collector","events_processed":9788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1957.6,"last_update":"2026-03-21T19:37:18.869976294Z"} +2026/03/21 19:37:23 [metric_collector] {"stage_name":"metric_collector","events_processed":5489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1097.8,"last_update":"2026-03-21T19:37:18.87020413Z"} +2026/03/21 19:37:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:37:18.877629406Z"} +2026/03/21 19:37:23 [transform_engine] {"stage_name":"transform_engine","events_processed":183,"events_dropped":0,"avg_latency_ms":1437.4196415500612,"throughput_eps":0,"last_update":"2026-03-21T19:37:23.552853781Z"} +2026/03/21 19:37:23 [detection_layer] {"stage_name":"detection_layer","events_processed":182,"events_dropped":0,"avg_latency_ms":18.39092527305946,"throughput_eps":0,"last_update":"2026-03-21T19:37:18.96585875Z"} +2026/03/21 19:37:23 ───────────────────────────────────────────────── +2026/03/21 19:37:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:37:28 [log_collector] {"stage_name":"log_collector","events_processed":9788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1957.6,"last_update":"2026-03-21T19:37:28.869601406Z"} +2026/03/21 19:37:28 [metric_collector] {"stage_name":"metric_collector","events_processed":5494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1098.8,"last_update":"2026-03-21T19:37:23.870889803Z"} +2026/03/21 19:37:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:37:23.876883778Z"} +2026/03/21 19:37:28 [transform_engine] {"stage_name":"transform_engine","events_processed":183,"events_dropped":0,"avg_latency_ms":1437.4196415500612,"throughput_eps":0,"last_update":"2026-03-21T19:37:23.965173416Z"} +2026/03/21 19:37:28 [detection_layer] {"stage_name":"detection_layer","events_processed":183,"events_dropped":0,"avg_latency_ms":17.828159218447567,"throughput_eps":0,"last_update":"2026-03-21T19:37:23.9662874Z"} +2026/03/21 19:37:28 ───────────────────────────────────────────────── +2026/03/21 19:37:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:37:33 [metric_collector] {"stage_name":"metric_collector","events_processed":5499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1099.8,"last_update":"2026-03-21T19:37:28.869955976Z"} +2026/03/21 19:37:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:37:28.877168013Z"} +2026/03/21 19:37:33 [transform_engine] {"stage_name":"transform_engine","events_processed":183,"events_dropped":0,"avg_latency_ms":1437.4196415500612,"throughput_eps":0,"last_update":"2026-03-21T19:37:28.965360115Z"} +2026/03/21 19:37:33 [detection_layer] {"stage_name":"detection_layer","events_processed":183,"events_dropped":0,"avg_latency_ms":17.828159218447567,"throughput_eps":0,"last_update":"2026-03-21T19:37:28.965423887Z"} +2026/03/21 19:37:33 [log_collector] {"stage_name":"log_collector","events_processed":9788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1957.6,"last_update":"2026-03-21T19:37:28.869601406Z"} +2026/03/21 19:37:33 ───────────────────────────────────────────────── +2026/03/21 19:37:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:37:38 [log_collector] {"stage_name":"log_collector","events_processed":9797,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1959.4,"last_update":"2026-03-21T19:37:38.869414256Z"} +2026/03/21 19:37:38 [metric_collector] {"stage_name":"metric_collector","events_processed":5504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1100.8,"last_update":"2026-03-21T19:37:33.8701134Z"} +2026/03/21 19:37:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:37:33.878164705Z"} +2026/03/21 19:37:38 [transform_engine] {"stage_name":"transform_engine","events_processed":183,"events_dropped":0,"avg_latency_ms":1437.4196415500612,"throughput_eps":0,"last_update":"2026-03-21T19:37:33.965420112Z"} +2026/03/21 19:37:38 [detection_layer] {"stage_name":"detection_layer","events_processed":183,"events_dropped":0,"avg_latency_ms":17.828159218447567,"throughput_eps":0,"last_update":"2026-03-21T19:37:33.96544487Z"} +2026/03/21 19:37:38 ───────────────────────────────────────────────── +2026/03/21 19:37:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:37:43 [detection_layer] {"stage_name":"detection_layer","events_processed":183,"events_dropped":0,"avg_latency_ms":17.828159218447567,"throughput_eps":0,"last_update":"2026-03-21T19:37:38.965691047Z"} +2026/03/21 19:37:43 [log_collector] {"stage_name":"log_collector","events_processed":9797,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1959.4,"last_update":"2026-03-21T19:37:38.869414256Z"} +2026/03/21 19:37:43 [metric_collector] {"stage_name":"metric_collector","events_processed":5509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1101.8,"last_update":"2026-03-21T19:37:38.869762644Z"} +2026/03/21 19:37:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2206,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:37:38.876499231Z"} +2026/03/21 19:37:43 [transform_engine] {"stage_name":"transform_engine","events_processed":183,"events_dropped":0,"avg_latency_ms":1437.4196415500612,"throughput_eps":0,"last_update":"2026-03-21T19:37:38.965699443Z"} +2026/03/21 19:37:43 ───────────────────────────────────────────────── +2026/03/21 19:37:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:37:48 [log_collector] {"stage_name":"log_collector","events_processed":9801,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1960.2,"last_update":"2026-03-21T19:37:43.870195752Z"} +2026/03/21 19:37:48 [metric_collector] {"stage_name":"metric_collector","events_processed":5514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1102.8,"last_update":"2026-03-21T19:37:43.870453355Z"} +2026/03/21 19:37:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:37:43.879034496Z"} +2026/03/21 19:37:48 [transform_engine] {"stage_name":"transform_engine","events_processed":183,"events_dropped":0,"avg_latency_ms":1437.4196415500612,"throughput_eps":0,"last_update":"2026-03-21T19:37:43.965384968Z"} +2026/03/21 19:37:48 [detection_layer] {"stage_name":"detection_layer","events_processed":183,"events_dropped":0,"avg_latency_ms":17.828159218447567,"throughput_eps":0,"last_update":"2026-03-21T19:37:43.965369558Z"} +2026/03/21 19:37:48 ───────────────────────────────────────────────── +2026/03/21 19:37:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:37:53 [log_collector] {"stage_name":"log_collector","events_processed":10012,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2002.4,"last_update":"2026-03-21T19:37:48.869997853Z"} +2026/03/21 19:37:53 [metric_collector] {"stage_name":"metric_collector","events_processed":5519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1103.8,"last_update":"2026-03-21T19:37:48.870138122Z"} +2026/03/21 19:37:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2210,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:37:48.878452452Z"} +2026/03/21 19:37:53 [transform_engine] {"stage_name":"transform_engine","events_processed":184,"events_dropped":0,"avg_latency_ms":1192.689051640049,"throughput_eps":0,"last_update":"2026-03-21T19:37:49.1792987Z"} +2026/03/21 19:37:53 [detection_layer] {"stage_name":"detection_layer","events_processed":183,"events_dropped":0,"avg_latency_ms":17.828159218447567,"throughput_eps":0,"last_update":"2026-03-21T19:37:48.965510919Z"} +2026/03/21 19:37:53 ───────────────────────────────────────────────── +2026/03/21 19:37:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:37:58 [transform_engine] {"stage_name":"transform_engine","events_processed":184,"events_dropped":0,"avg_latency_ms":1192.689051640049,"throughput_eps":0,"last_update":"2026-03-21T19:37:53.965537313Z"} +2026/03/21 19:37:58 [detection_layer] {"stage_name":"detection_layer","events_processed":184,"events_dropped":0,"avg_latency_ms":17.008957174758056,"throughput_eps":0,"last_update":"2026-03-21T19:37:53.965495954Z"} +2026/03/21 19:37:58 [log_collector] {"stage_name":"log_collector","events_processed":10154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2030.8,"last_update":"2026-03-21T19:37:58.869550029Z"} +2026/03/21 19:37:58 [metric_collector] {"stage_name":"metric_collector","events_processed":5524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1104.8,"last_update":"2026-03-21T19:37:53.869761955Z"} +2026/03/21 19:37:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:37:53.878231683Z"} +2026/03/21 19:37:58 ───────────────────────────────────────────────── +2026/03/21 19:38:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:38:03 [metric_collector] {"stage_name":"metric_collector","events_processed":5529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1105.8,"last_update":"2026-03-21T19:37:58.870111794Z"} +2026/03/21 19:38:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:37:58.878399974Z"} +2026/03/21 19:38:03 [transform_engine] {"stage_name":"transform_engine","events_processed":184,"events_dropped":0,"avg_latency_ms":1192.689051640049,"throughput_eps":0,"last_update":"2026-03-21T19:37:58.965767412Z"} +2026/03/21 19:38:03 [detection_layer] {"stage_name":"detection_layer","events_processed":184,"events_dropped":0,"avg_latency_ms":17.008957174758056,"throughput_eps":0,"last_update":"2026-03-21T19:37:58.965886761Z"} +2026/03/21 19:38:03 [log_collector] {"stage_name":"log_collector","events_processed":10154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2030.8,"last_update":"2026-03-21T19:37:58.869550029Z"} +2026/03/21 19:38:03 ───────────────────────────────────────────────── +2026/03/21 19:38:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:38:08 [log_collector] {"stage_name":"log_collector","events_processed":10154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2030.8,"last_update":"2026-03-21T19:38:03.869507248Z"} +2026/03/21 19:38:08 [metric_collector] {"stage_name":"metric_collector","events_processed":5533,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1106.6,"last_update":"2026-03-21T19:38:03.869413247Z"} +2026/03/21 19:38:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:38:03.878706562Z"} +2026/03/21 19:38:08 [transform_engine] {"stage_name":"transform_engine","events_processed":184,"events_dropped":0,"avg_latency_ms":1192.689051640049,"throughput_eps":0,"last_update":"2026-03-21T19:38:03.966054733Z"} +2026/03/21 19:38:08 [detection_layer] {"stage_name":"detection_layer","events_processed":184,"events_dropped":0,"avg_latency_ms":17.008957174758056,"throughput_eps":0,"last_update":"2026-03-21T19:38:03.965932278Z"} +2026/03/21 19:38:08 ───────────────────────────────────────────────── +2026/03/21 19:38:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:38:13 [log_collector] {"stage_name":"log_collector","events_processed":10154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2030.8,"last_update":"2026-03-21T19:38:08.870375996Z"} +2026/03/21 19:38:13 [metric_collector] {"stage_name":"metric_collector","events_processed":5539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1107.8,"last_update":"2026-03-21T19:38:08.870508489Z"} +2026/03/21 19:38:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:38:08.879281789Z"} +2026/03/21 19:38:13 [transform_engine] {"stage_name":"transform_engine","events_processed":184,"events_dropped":0,"avg_latency_ms":1192.689051640049,"throughput_eps":0,"last_update":"2026-03-21T19:38:08.965478514Z"} +2026/03/21 19:38:13 [detection_layer] {"stage_name":"detection_layer","events_processed":184,"events_dropped":0,"avg_latency_ms":17.008957174758056,"throughput_eps":0,"last_update":"2026-03-21T19:38:08.965589666Z"} +2026/03/21 19:38:13 ───────────────────────────────────────────────── +2026/03/21 19:38:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:38:18 [transform_engine] {"stage_name":"transform_engine","events_processed":184,"events_dropped":0,"avg_latency_ms":1192.689051640049,"throughput_eps":0,"last_update":"2026-03-21T19:38:13.965674367Z"} +2026/03/21 19:38:18 [detection_layer] {"stage_name":"detection_layer","events_processed":184,"events_dropped":0,"avg_latency_ms":17.008957174758056,"throughput_eps":0,"last_update":"2026-03-21T19:38:13.965699395Z"} +2026/03/21 19:38:18 [log_collector] {"stage_name":"log_collector","events_processed":10154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2030.8,"last_update":"2026-03-21T19:38:13.869773431Z"} +2026/03/21 19:38:18 [metric_collector] {"stage_name":"metric_collector","events_processed":5544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1108.8,"last_update":"2026-03-21T19:38:13.870074588Z"} +2026/03/21 19:38:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:38:13.878451517Z"} +2026/03/21 19:38:18 ───────────────────────────────────────────────── +2026/03/21 19:38:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:38:23 [log_collector] {"stage_name":"log_collector","events_processed":10154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2030.8,"last_update":"2026-03-21T19:38:18.869496153Z"} +2026/03/21 19:38:23 [metric_collector] {"stage_name":"metric_collector","events_processed":5549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1109.8,"last_update":"2026-03-21T19:38:18.869872806Z"} +2026/03/21 19:38:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2222,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:38:18.879640619Z"} +2026/03/21 19:38:23 [transform_engine] {"stage_name":"transform_engine","events_processed":185,"events_dropped":0,"avg_latency_ms":976.5851643120393,"throughput_eps":0,"last_update":"2026-03-21T19:38:19.078151605Z"} +2026/03/21 19:38:23 [detection_layer] {"stage_name":"detection_layer","events_processed":184,"events_dropped":0,"avg_latency_ms":17.008957174758056,"throughput_eps":0,"last_update":"2026-03-21T19:38:18.966048678Z"} +2026/03/21 19:38:23 ───────────────────────────────────────────────── +2026/03/21 19:38:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:38:28 [transform_engine] {"stage_name":"transform_engine","events_processed":185,"events_dropped":0,"avg_latency_ms":976.5851643120393,"throughput_eps":0,"last_update":"2026-03-21T19:38:23.965643331Z"} +2026/03/21 19:38:28 [detection_layer] {"stage_name":"detection_layer","events_processed":185,"events_dropped":0,"avg_latency_ms":17.329130539806446,"throughput_eps":0,"last_update":"2026-03-21T19:38:23.965607602Z"} +2026/03/21 19:38:28 [log_collector] {"stage_name":"log_collector","events_processed":10154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2030.8,"last_update":"2026-03-21T19:38:28.870173045Z"} +2026/03/21 19:38:28 [metric_collector] {"stage_name":"metric_collector","events_processed":5554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1110.8,"last_update":"2026-03-21T19:38:23.870711372Z"} +2026/03/21 19:38:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:38:23.880295093Z"} +2026/03/21 19:38:28 ───────────────────────────────────────────────── +2026/03/21 19:38:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:38:33 [log_collector] {"stage_name":"log_collector","events_processed":10154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2030.8,"last_update":"2026-03-21T19:38:28.870173045Z"} +2026/03/21 19:38:33 [metric_collector] {"stage_name":"metric_collector","events_processed":5559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1111.8,"last_update":"2026-03-21T19:38:28.87088529Z"} +2026/03/21 19:38:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:38:28.878814421Z"} +2026/03/21 19:38:33 [transform_engine] {"stage_name":"transform_engine","events_processed":185,"events_dropped":0,"avg_latency_ms":976.5851643120393,"throughput_eps":0,"last_update":"2026-03-21T19:38:28.966139025Z"} +2026/03/21 19:38:33 [detection_layer] {"stage_name":"detection_layer","events_processed":185,"events_dropped":0,"avg_latency_ms":17.329130539806446,"throughput_eps":0,"last_update":"2026-03-21T19:38:28.966174312Z"} +2026/03/21 19:38:33 ───────────────────────────────────────────────── +2026/03/21 19:38:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:38:38 [log_collector] {"stage_name":"log_collector","events_processed":10154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2030.8,"last_update":"2026-03-21T19:38:38.869508076Z"} +2026/03/21 19:38:38 [metric_collector] {"stage_name":"metric_collector","events_processed":5564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1112.8,"last_update":"2026-03-21T19:38:33.869900623Z"} +2026/03/21 19:38:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:38:33.878326215Z"} +2026/03/21 19:38:38 [transform_engine] {"stage_name":"transform_engine","events_processed":185,"events_dropped":0,"avg_latency_ms":976.5851643120393,"throughput_eps":0,"last_update":"2026-03-21T19:38:33.965502344Z"} +2026/03/21 19:38:38 [detection_layer] {"stage_name":"detection_layer","events_processed":185,"events_dropped":0,"avg_latency_ms":17.329130539806446,"throughput_eps":0,"last_update":"2026-03-21T19:38:33.965486735Z"} +2026/03/21 19:38:38 ───────────────────────────────────────────────── +2026/03/21 19:38:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:38:43 [log_collector] {"stage_name":"log_collector","events_processed":10154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2030.8,"last_update":"2026-03-21T19:38:38.869508076Z"} +2026/03/21 19:38:43 [metric_collector] {"stage_name":"metric_collector","events_processed":5569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1113.8,"last_update":"2026-03-21T19:38:38.869864378Z"} +2026/03/21 19:38:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:38:38.878718031Z"} +2026/03/21 19:38:43 [transform_engine] {"stage_name":"transform_engine","events_processed":185,"events_dropped":0,"avg_latency_ms":976.5851643120393,"throughput_eps":0,"last_update":"2026-03-21T19:38:38.966121725Z"} +2026/03/21 19:38:43 [detection_layer] {"stage_name":"detection_layer","events_processed":185,"events_dropped":0,"avg_latency_ms":17.329130539806446,"throughput_eps":0,"last_update":"2026-03-21T19:38:38.966005893Z"} +2026/03/21 19:38:43 ───────────────────────────────────────────────── +2026/03/21 19:38:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:38:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:38:43.879207912Z"} +2026/03/21 19:38:48 [transform_engine] {"stage_name":"transform_engine","events_processed":185,"events_dropped":0,"avg_latency_ms":976.5851643120393,"throughput_eps":0,"last_update":"2026-03-21T19:38:43.965543128Z"} +2026/03/21 19:38:48 [detection_layer] {"stage_name":"detection_layer","events_processed":185,"events_dropped":0,"avg_latency_ms":17.329130539806446,"throughput_eps":0,"last_update":"2026-03-21T19:38:43.965662537Z"} +2026/03/21 19:38:48 [log_collector] {"stage_name":"log_collector","events_processed":10154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2030.8,"last_update":"2026-03-21T19:38:48.869406119Z"} +2026/03/21 19:38:48 [metric_collector] {"stage_name":"metric_collector","events_processed":5574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1114.8,"last_update":"2026-03-21T19:38:43.870168273Z"} +2026/03/21 19:38:48 ───────────────────────────────────────────────── +2026/03/21 19:38:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:38:53 [log_collector] {"stage_name":"log_collector","events_processed":10154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2030.8,"last_update":"2026-03-21T19:38:48.869406119Z"} +2026/03/21 19:38:53 [metric_collector] {"stage_name":"metric_collector","events_processed":5579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1115.8,"last_update":"2026-03-21T19:38:48.869883524Z"} +2026/03/21 19:38:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:38:48.879275858Z"} +2026/03/21 19:38:53 [transform_engine] {"stage_name":"transform_engine","events_processed":186,"events_dropped":0,"avg_latency_ms":795.5862148496315,"throughput_eps":0,"last_update":"2026-03-21T19:38:49.037292436Z"} +2026/03/21 19:38:53 [detection_layer] {"stage_name":"detection_layer","events_processed":185,"events_dropped":0,"avg_latency_ms":17.329130539806446,"throughput_eps":0,"last_update":"2026-03-21T19:38:48.965586847Z"} +2026/03/21 19:38:53 ───────────────────────────────────────────────── +2026/03/21 19:38:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:38:58 [transform_engine] {"stage_name":"transform_engine","events_processed":186,"events_dropped":0,"avg_latency_ms":795.5862148496315,"throughput_eps":0,"last_update":"2026-03-21T19:38:53.965416023Z"} +2026/03/21 19:38:58 [detection_layer] {"stage_name":"detection_layer","events_processed":186,"events_dropped":0,"avg_latency_ms":17.86696083184516,"throughput_eps":0,"last_update":"2026-03-21T19:38:53.965519872Z"} +2026/03/21 19:38:58 [log_collector] {"stage_name":"log_collector","events_processed":10154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2030.8,"last_update":"2026-03-21T19:38:53.869637776Z"} +2026/03/21 19:38:58 [metric_collector] {"stage_name":"metric_collector","events_processed":5584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1116.8,"last_update":"2026-03-21T19:38:53.869704864Z"} +2026/03/21 19:38:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:38:53.878110268Z"} +2026/03/21 19:38:58 ───────────────────────────────────────────────── +2026/03/21 19:39:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:39:03 [log_collector] {"stage_name":"log_collector","events_processed":10154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2030.8,"last_update":"2026-03-21T19:38:58.869723118Z"} +2026/03/21 19:39:03 [metric_collector] {"stage_name":"metric_collector","events_processed":5589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1117.8,"last_update":"2026-03-21T19:38:58.869836185Z"} +2026/03/21 19:39:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:38:58.878896313Z"} +2026/03/21 19:39:03 [transform_engine] {"stage_name":"transform_engine","events_processed":186,"events_dropped":0,"avg_latency_ms":795.5862148496315,"throughput_eps":0,"last_update":"2026-03-21T19:38:58.965132199Z"} +2026/03/21 19:39:03 [detection_layer] {"stage_name":"detection_layer","events_processed":186,"events_dropped":0,"avg_latency_ms":17.86696083184516,"throughput_eps":0,"last_update":"2026-03-21T19:38:58.965265014Z"} +2026/03/21 19:39:03 ───────────────────────────────────────────────── +2026/03/21 19:39:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:39:08 [log_collector] {"stage_name":"log_collector","events_processed":10154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2030.8,"last_update":"2026-03-21T19:39:03.870063486Z"} +2026/03/21 19:39:08 [metric_collector] {"stage_name":"metric_collector","events_processed":5594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1118.8,"last_update":"2026-03-21T19:39:03.870430319Z"} +2026/03/21 19:39:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:39:03.879031117Z"} +2026/03/21 19:39:08 [transform_engine] {"stage_name":"transform_engine","events_processed":186,"events_dropped":0,"avg_latency_ms":795.5862148496315,"throughput_eps":0,"last_update":"2026-03-21T19:39:03.965196677Z"} +2026/03/21 19:39:08 [detection_layer] {"stage_name":"detection_layer","events_processed":186,"events_dropped":0,"avg_latency_ms":17.86696083184516,"throughput_eps":0,"last_update":"2026-03-21T19:39:03.965319763Z"} +2026/03/21 19:39:08 ───────────────────────────────────────────────── +Saved state: 12 clusters, 10155 messages, reason: none +2026/03/21 19:39:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:39:13 [log_collector] {"stage_name":"log_collector","events_processed":10157,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2031.4,"last_update":"2026-03-21T19:39:13.870008585Z"} +2026/03/21 19:39:13 [metric_collector] {"stage_name":"metric_collector","events_processed":5599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1119.8,"last_update":"2026-03-21T19:39:08.86980813Z"} +2026/03/21 19:39:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:39:08.877991969Z"} +2026/03/21 19:39:13 [transform_engine] {"stage_name":"transform_engine","events_processed":186,"events_dropped":0,"avg_latency_ms":795.5862148496315,"throughput_eps":0,"last_update":"2026-03-21T19:39:08.965147716Z"} +2026/03/21 19:39:13 [detection_layer] {"stage_name":"detection_layer","events_processed":186,"events_dropped":0,"avg_latency_ms":17.86696083184516,"throughput_eps":0,"last_update":"2026-03-21T19:39:08.966245158Z"} +2026/03/21 19:39:13 ───────────────────────────────────────────────── +2026/03/21 19:39:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:39:18 [detection_layer] {"stage_name":"detection_layer","events_processed":186,"events_dropped":0,"avg_latency_ms":17.86696083184516,"throughput_eps":0,"last_update":"2026-03-21T19:39:13.966103858Z"} +2026/03/21 19:39:18 [log_collector] {"stage_name":"log_collector","events_processed":10157,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2031.4,"last_update":"2026-03-21T19:39:13.870008585Z"} +2026/03/21 19:39:18 [metric_collector] {"stage_name":"metric_collector","events_processed":5604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1120.8,"last_update":"2026-03-21T19:39:13.870479447Z"} +2026/03/21 19:39:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:39:13.875725918Z"} +2026/03/21 19:39:18 [transform_engine] {"stage_name":"transform_engine","events_processed":186,"events_dropped":0,"avg_latency_ms":795.5862148496315,"throughput_eps":0,"last_update":"2026-03-21T19:39:13.966011391Z"} +2026/03/21 19:39:18 ───────────────────────────────────────────────── +2026/03/21 19:39:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:39:23 [log_collector] {"stage_name":"log_collector","events_processed":10157,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2031.4,"last_update":"2026-03-21T19:39:18.869883092Z"} +2026/03/21 19:39:23 [metric_collector] {"stage_name":"metric_collector","events_processed":5609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1121.8,"last_update":"2026-03-21T19:39:18.870516095Z"} +2026/03/21 19:39:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2246,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:39:18.876950102Z"} +2026/03/21 19:39:23 [transform_engine] {"stage_name":"transform_engine","events_processed":186,"events_dropped":0,"avg_latency_ms":795.5862148496315,"throughput_eps":0,"last_update":"2026-03-21T19:39:13.966011391Z"} +2026/03/21 19:39:23 [detection_layer] {"stage_name":"detection_layer","events_processed":186,"events_dropped":0,"avg_latency_ms":17.86696083184516,"throughput_eps":0,"last_update":"2026-03-21T19:39:18.9662476Z"} +2026/03/21 19:39:23 ───────────────────────────────────────────────── +2026/03/21 19:39:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:39:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:39:23.879267486Z"} +2026/03/21 19:39:28 [transform_engine] {"stage_name":"transform_engine","events_processed":187,"events_dropped":0,"avg_latency_ms":1911.0776560797053,"throughput_eps":0,"last_update":"2026-03-21T19:39:25.33819897Z"} +2026/03/21 19:39:28 [detection_layer] {"stage_name":"detection_layer","events_processed":186,"events_dropped":0,"avg_latency_ms":17.86696083184516,"throughput_eps":0,"last_update":"2026-03-21T19:39:23.965441449Z"} +2026/03/21 19:39:28 [log_collector] {"stage_name":"log_collector","events_processed":10167,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2033.4,"last_update":"2026-03-21T19:39:23.870063432Z"} +2026/03/21 19:39:28 [metric_collector] {"stage_name":"metric_collector","events_processed":5614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1122.8,"last_update":"2026-03-21T19:39:23.870559452Z"} +2026/03/21 19:39:28 ───────────────────────────────────────────────── +2026/03/21 19:39:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:39:33 [log_collector] {"stage_name":"log_collector","events_processed":10184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2036.8,"last_update":"2026-03-21T19:39:33.869688146Z"} +2026/03/21 19:39:33 [metric_collector] {"stage_name":"metric_collector","events_processed":5618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1123.6,"last_update":"2026-03-21T19:39:28.870339584Z"} +2026/03/21 19:39:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:39:28.880744688Z"} +2026/03/21 19:39:33 [transform_engine] {"stage_name":"transform_engine","events_processed":187,"events_dropped":0,"avg_latency_ms":1911.0776560797053,"throughput_eps":0,"last_update":"2026-03-21T19:39:28.96583698Z"} +2026/03/21 19:39:33 [detection_layer] {"stage_name":"detection_layer","events_processed":187,"events_dropped":0,"avg_latency_ms":17.75018086547613,"throughput_eps":0,"last_update":"2026-03-21T19:39:28.965802494Z"} +2026/03/21 19:39:33 ───────────────────────────────────────────────── +2026/03/21 19:39:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:39:38 [log_collector] {"stage_name":"log_collector","events_processed":10184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2036.8,"last_update":"2026-03-21T19:39:33.869688146Z"} +2026/03/21 19:39:38 [metric_collector] {"stage_name":"metric_collector","events_processed":5624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1124.8,"last_update":"2026-03-21T19:39:33.870006356Z"} +2026/03/21 19:39:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:39:33.878332017Z"} +2026/03/21 19:39:38 [transform_engine] {"stage_name":"transform_engine","events_processed":187,"events_dropped":0,"avg_latency_ms":1911.0776560797053,"throughput_eps":0,"last_update":"2026-03-21T19:39:33.965520725Z"} +2026/03/21 19:39:38 [detection_layer] {"stage_name":"detection_layer","events_processed":187,"events_dropped":0,"avg_latency_ms":17.75018086547613,"throughput_eps":0,"last_update":"2026-03-21T19:39:33.965549129Z"} +2026/03/21 19:39:38 ───────────────────────────────────────────────── +2026/03/21 19:39:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:39:43 [metric_collector] {"stage_name":"metric_collector","events_processed":5629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1125.8,"last_update":"2026-03-21T19:39:38.86980492Z"} +2026/03/21 19:39:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:39:38.878492985Z"} +2026/03/21 19:39:43 [transform_engine] {"stage_name":"transform_engine","events_processed":187,"events_dropped":0,"avg_latency_ms":1911.0776560797053,"throughput_eps":0,"last_update":"2026-03-21T19:39:38.965746836Z"} +2026/03/21 19:39:43 [detection_layer] {"stage_name":"detection_layer","events_processed":187,"events_dropped":0,"avg_latency_ms":17.75018086547613,"throughput_eps":0,"last_update":"2026-03-21T19:39:38.965716688Z"} +2026/03/21 19:39:43 [log_collector] {"stage_name":"log_collector","events_processed":10198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2039.6,"last_update":"2026-03-21T19:39:43.869410562Z"} +2026/03/21 19:39:43 ───────────────────────────────────────────────── +2026/03/21 19:39:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:39:48 [detection_layer] {"stage_name":"detection_layer","events_processed":187,"events_dropped":0,"avg_latency_ms":17.75018086547613,"throughput_eps":0,"last_update":"2026-03-21T19:39:43.966031309Z"} +2026/03/21 19:39:48 [log_collector] {"stage_name":"log_collector","events_processed":10198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2039.6,"last_update":"2026-03-21T19:39:48.870170784Z"} +2026/03/21 19:39:48 [metric_collector] {"stage_name":"metric_collector","events_processed":5634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1126.8,"last_update":"2026-03-21T19:39:43.869792544Z"} +2026/03/21 19:39:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:39:43.878812985Z"} +2026/03/21 19:39:48 [transform_engine] {"stage_name":"transform_engine","events_processed":187,"events_dropped":0,"avg_latency_ms":1911.0776560797053,"throughput_eps":0,"last_update":"2026-03-21T19:39:43.966161909Z"} +2026/03/21 19:39:48 ───────────────────────────────────────────────── +2026/03/21 19:39:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:39:53 [detection_layer] {"stage_name":"detection_layer","events_processed":187,"events_dropped":0,"avg_latency_ms":17.75018086547613,"throughput_eps":0,"last_update":"2026-03-21T19:39:48.965898759Z"} +2026/03/21 19:39:53 [log_collector] {"stage_name":"log_collector","events_processed":10198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2039.6,"last_update":"2026-03-21T19:39:48.870170784Z"} +2026/03/21 19:39:53 [metric_collector] {"stage_name":"metric_collector","events_processed":5639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1127.8,"last_update":"2026-03-21T19:39:48.87057053Z"} +2026/03/21 19:39:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:39:48.880675869Z"} +2026/03/21 19:39:53 [transform_engine] {"stage_name":"transform_engine","events_processed":188,"events_dropped":0,"avg_latency_ms":1553.8977764637643,"throughput_eps":0,"last_update":"2026-03-21T19:39:49.091089913Z"} +2026/03/21 19:39:53 ───────────────────────────────────────────────── +2026/03/21 19:39:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:39:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:39:53.878063159Z"} +2026/03/21 19:39:58 [transform_engine] {"stage_name":"transform_engine","events_processed":188,"events_dropped":0,"avg_latency_ms":1553.8977764637643,"throughput_eps":0,"last_update":"2026-03-21T19:39:53.965127116Z"} +2026/03/21 19:39:58 [detection_layer] {"stage_name":"detection_layer","events_processed":188,"events_dropped":0,"avg_latency_ms":17.953777892380902,"throughput_eps":0,"last_update":"2026-03-21T19:39:53.966244327Z"} +2026/03/21 19:39:58 [log_collector] {"stage_name":"log_collector","events_processed":10198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2039.6,"last_update":"2026-03-21T19:39:53.869466659Z"} +2026/03/21 19:39:58 [metric_collector] {"stage_name":"metric_collector","events_processed":5644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1128.8,"last_update":"2026-03-21T19:39:53.870168455Z"} +2026/03/21 19:39:58 ───────────────────────────────────────────────── +2026/03/21 19:40:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:40:03 [log_collector] {"stage_name":"log_collector","events_processed":10198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2039.6,"last_update":"2026-03-21T19:39:58.869819659Z"} +2026/03/21 19:40:03 [metric_collector] {"stage_name":"metric_collector","events_processed":5649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1129.8,"last_update":"2026-03-21T19:39:58.870484382Z"} +2026/03/21 19:40:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:39:58.879000457Z"} +2026/03/21 19:40:03 [transform_engine] {"stage_name":"transform_engine","events_processed":188,"events_dropped":0,"avg_latency_ms":1553.8977764637643,"throughput_eps":0,"last_update":"2026-03-21T19:39:58.965143609Z"} +2026/03/21 19:40:03 [detection_layer] {"stage_name":"detection_layer","events_processed":188,"events_dropped":0,"avg_latency_ms":17.953777892380902,"throughput_eps":0,"last_update":"2026-03-21T19:39:58.965274751Z"} +2026/03/21 19:40:03 ───────────────────────────────────────────────── +2026/03/21 19:40:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:40:08 [log_collector] {"stage_name":"log_collector","events_processed":10198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2039.6,"last_update":"2026-03-21T19:40:03.869406922Z"} +2026/03/21 19:40:08 [metric_collector] {"stage_name":"metric_collector","events_processed":5654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1130.8,"last_update":"2026-03-21T19:40:03.869848117Z"} +2026/03/21 19:40:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:40:03.888995459Z"} +2026/03/21 19:40:08 [transform_engine] {"stage_name":"transform_engine","events_processed":188,"events_dropped":0,"avg_latency_ms":1553.8977764637643,"throughput_eps":0,"last_update":"2026-03-21T19:40:03.965195132Z"} +2026/03/21 19:40:08 [detection_layer] {"stage_name":"detection_layer","events_processed":188,"events_dropped":0,"avg_latency_ms":17.953777892380902,"throughput_eps":0,"last_update":"2026-03-21T19:40:03.966306582Z"} +2026/03/21 19:40:08 ───────────────────────────────────────────────── +2026/03/21 19:40:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:40:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:40:08.878889721Z"} +2026/03/21 19:40:13 [transform_engine] {"stage_name":"transform_engine","events_processed":188,"events_dropped":0,"avg_latency_ms":1553.8977764637643,"throughput_eps":0,"last_update":"2026-03-21T19:40:08.965115591Z"} +2026/03/21 19:40:13 [detection_layer] {"stage_name":"detection_layer","events_processed":188,"events_dropped":0,"avg_latency_ms":17.953777892380902,"throughput_eps":0,"last_update":"2026-03-21T19:40:08.966240306Z"} +2026/03/21 19:40:13 [log_collector] {"stage_name":"log_collector","events_processed":10198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2039.6,"last_update":"2026-03-21T19:40:08.870189001Z"} +2026/03/21 19:40:13 [metric_collector] {"stage_name":"metric_collector","events_processed":5659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1131.8,"last_update":"2026-03-21T19:40:08.870547609Z"} +2026/03/21 19:40:13 ───────────────────────────────────────────────── +2026/03/21 19:40:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:40:18 [transform_engine] {"stage_name":"transform_engine","events_processed":188,"events_dropped":0,"avg_latency_ms":1553.8977764637643,"throughput_eps":0,"last_update":"2026-03-21T19:40:13.96574011Z"} +2026/03/21 19:40:18 [detection_layer] {"stage_name":"detection_layer","events_processed":188,"events_dropped":0,"avg_latency_ms":17.953777892380902,"throughput_eps":0,"last_update":"2026-03-21T19:40:13.965761472Z"} +2026/03/21 19:40:18 [log_collector] {"stage_name":"log_collector","events_processed":10198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2039.6,"last_update":"2026-03-21T19:40:13.870011164Z"} +2026/03/21 19:40:18 [metric_collector] {"stage_name":"metric_collector","events_processed":5664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1132.8,"last_update":"2026-03-21T19:40:13.870403035Z"} +2026/03/21 19:40:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:40:13.879566731Z"} +2026/03/21 19:40:18 ───────────────────────────────────────────────── +2026/03/21 19:40:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:40:23 [log_collector] {"stage_name":"log_collector","events_processed":10198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2039.6,"last_update":"2026-03-21T19:40:18.86944377Z"} +2026/03/21 19:40:23 [metric_collector] {"stage_name":"metric_collector","events_processed":5669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1133.8,"last_update":"2026-03-21T19:40:18.870103964Z"} +2026/03/21 19:40:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:40:18.869538612Z"} +2026/03/21 19:40:23 [transform_engine] {"stage_name":"transform_engine","events_processed":189,"events_dropped":0,"avg_latency_ms":1665.7702349710116,"throughput_eps":0,"last_update":"2026-03-21T19:40:21.079020631Z"} +2026/03/21 19:40:23 [detection_layer] {"stage_name":"detection_layer","events_processed":188,"events_dropped":0,"avg_latency_ms":17.953777892380902,"throughput_eps":0,"last_update":"2026-03-21T19:40:18.965740274Z"} +2026/03/21 19:40:23 ───────────────────────────────────────────────── +2026/03/21 19:40:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:40:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:40:23.878755691Z"} +2026/03/21 19:40:28 [transform_engine] {"stage_name":"transform_engine","events_processed":189,"events_dropped":0,"avg_latency_ms":1665.7702349710116,"throughput_eps":0,"last_update":"2026-03-21T19:40:23.966142425Z"} +2026/03/21 19:40:28 [detection_layer] {"stage_name":"detection_layer","events_processed":189,"events_dropped":0,"avg_latency_ms":18.361917313904723,"throughput_eps":0,"last_update":"2026-03-21T19:40:23.966131324Z"} +2026/03/21 19:40:28 [log_collector] {"stage_name":"log_collector","events_processed":10198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2039.6,"last_update":"2026-03-21T19:40:28.869417504Z"} +2026/03/21 19:40:28 [metric_collector] {"stage_name":"metric_collector","events_processed":5674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1134.8,"last_update":"2026-03-21T19:40:23.870534922Z"} +2026/03/21 19:40:28 ───────────────────────────────────────────────── +2026/03/21 19:40:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:40:33 [log_collector] {"stage_name":"log_collector","events_processed":10198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2039.6,"last_update":"2026-03-21T19:40:28.869417504Z"} +2026/03/21 19:40:33 [metric_collector] {"stage_name":"metric_collector","events_processed":5679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1135.8,"last_update":"2026-03-21T19:40:28.869876624Z"} +2026/03/21 19:40:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:40:28.878849754Z"} +2026/03/21 19:40:33 [transform_engine] {"stage_name":"transform_engine","events_processed":189,"events_dropped":0,"avg_latency_ms":1665.7702349710116,"throughput_eps":0,"last_update":"2026-03-21T19:40:28.966132779Z"} +2026/03/21 19:40:33 [detection_layer] {"stage_name":"detection_layer","events_processed":189,"events_dropped":0,"avg_latency_ms":18.361917313904723,"throughput_eps":0,"last_update":"2026-03-21T19:40:28.966127018Z"} +2026/03/21 19:40:33 ───────────────────────────────────────────────── +Saved state: 12 clusters, 10199 messages, reason: none +2026/03/21 19:40:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:40:38 [metric_collector] {"stage_name":"metric_collector","events_processed":5684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1136.8,"last_update":"2026-03-21T19:40:33.869953Z"} +2026/03/21 19:40:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2276,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:40:33.87939527Z"} +2026/03/21 19:40:38 [transform_engine] {"stage_name":"transform_engine","events_processed":189,"events_dropped":0,"avg_latency_ms":1665.7702349710116,"throughput_eps":0,"last_update":"2026-03-21T19:40:33.96569963Z"} +2026/03/21 19:40:38 [detection_layer] {"stage_name":"detection_layer","events_processed":189,"events_dropped":0,"avg_latency_ms":18.361917313904723,"throughput_eps":0,"last_update":"2026-03-21T19:40:33.965685953Z"} +2026/03/21 19:40:38 [log_collector] {"stage_name":"log_collector","events_processed":10200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2040,"last_update":"2026-03-21T19:40:38.86967923Z"} +2026/03/21 19:40:38 ───────────────────────────────────────────────── +2026/03/21 19:40:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:40:43 [transform_engine] {"stage_name":"transform_engine","events_processed":189,"events_dropped":0,"avg_latency_ms":1665.7702349710116,"throughput_eps":0,"last_update":"2026-03-21T19:40:38.967051373Z"} +2026/03/21 19:40:43 [detection_layer] {"stage_name":"detection_layer","events_processed":189,"events_dropped":0,"avg_latency_ms":18.361917313904723,"throughput_eps":0,"last_update":"2026-03-21T19:40:38.967041143Z"} +2026/03/21 19:40:43 [log_collector] {"stage_name":"log_collector","events_processed":10200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2040,"last_update":"2026-03-21T19:40:38.86967923Z"} +2026/03/21 19:40:43 [metric_collector] {"stage_name":"metric_collector","events_processed":5689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1137.8,"last_update":"2026-03-21T19:40:38.870096349Z"} +2026/03/21 19:40:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:40:38.878741582Z"} +2026/03/21 19:40:43 ───────────────────────────────────────────────── +2026/03/21 19:40:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:40:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:40:43.876369471Z"} +2026/03/21 19:40:48 [transform_engine] {"stage_name":"transform_engine","events_processed":189,"events_dropped":0,"avg_latency_ms":1665.7702349710116,"throughput_eps":0,"last_update":"2026-03-21T19:40:43.96565444Z"} +2026/03/21 19:40:48 [detection_layer] {"stage_name":"detection_layer","events_processed":189,"events_dropped":0,"avg_latency_ms":18.361917313904723,"throughput_eps":0,"last_update":"2026-03-21T19:40:43.965645383Z"} +2026/03/21 19:40:48 [log_collector] {"stage_name":"log_collector","events_processed":10203,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2040.6,"last_update":"2026-03-21T19:40:48.870167114Z"} +2026/03/21 19:40:48 [metric_collector] {"stage_name":"metric_collector","events_processed":5694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1138.8,"last_update":"2026-03-21T19:40:43.870424743Z"} +2026/03/21 19:40:48 ───────────────────────────────────────────────── +2026/03/21 19:40:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:40:53 [log_collector] {"stage_name":"log_collector","events_processed":10203,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2040.6,"last_update":"2026-03-21T19:40:48.870167114Z"} +2026/03/21 19:40:53 [metric_collector] {"stage_name":"metric_collector","events_processed":5699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1139.8,"last_update":"2026-03-21T19:40:48.870787853Z"} +2026/03/21 19:40:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:40:48.878015649Z"} +2026/03/21 19:40:53 [transform_engine] {"stage_name":"transform_engine","events_processed":189,"events_dropped":0,"avg_latency_ms":1665.7702349710116,"throughput_eps":0,"last_update":"2026-03-21T19:40:43.96565444Z"} +2026/03/21 19:40:53 [detection_layer] {"stage_name":"detection_layer","events_processed":189,"events_dropped":0,"avg_latency_ms":18.361917313904723,"throughput_eps":0,"last_update":"2026-03-21T19:40:48.965496642Z"} +2026/03/21 19:40:53 ───────────────────────────────────────────────── +2026/03/21 19:40:53 [ANOMALY] time=2026-03-21T19:40:53Z score=0.9012 method=SEAD details=MAD!:w=0.26,s=0.96 RRCF-fast!:w=0.19,s=0.89 RRCF-mid!:w=0.17,s=0.96 RRCF-slow!:w=0.16,s=0.95 COPOD!:w=0.22,s=0.75 +2026/03/21 19:40:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:40:58 [log_collector] {"stage_name":"log_collector","events_processed":10203,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2040.6,"last_update":"2026-03-21T19:40:53.870186607Z"} +2026/03/21 19:40:58 [metric_collector] {"stage_name":"metric_collector","events_processed":5704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1140.8,"last_update":"2026-03-21T19:40:53.870549392Z"} +2026/03/21 19:40:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:40:53.876689064Z"} +2026/03/21 19:40:58 [transform_engine] {"stage_name":"transform_engine","events_processed":190,"events_dropped":0,"avg_latency_ms":2327.2083951768095,"throughput_eps":0,"last_update":"2026-03-21T19:40:53.965338124Z"} +2026/03/21 19:40:58 [detection_layer] {"stage_name":"detection_layer","events_processed":190,"events_dropped":0,"avg_latency_ms":16.475988251123777,"throughput_eps":0,"last_update":"2026-03-21T19:40:53.965376748Z"} +2026/03/21 19:40:58 ───────────────────────────────────────────────── +2026/03/21 19:41:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:41:03 [transform_engine] {"stage_name":"transform_engine","events_processed":190,"events_dropped":0,"avg_latency_ms":2327.2083951768095,"throughput_eps":0,"last_update":"2026-03-21T19:40:58.966011954Z"} +2026/03/21 19:41:03 [detection_layer] {"stage_name":"detection_layer","events_processed":190,"events_dropped":0,"avg_latency_ms":16.475988251123777,"throughput_eps":0,"last_update":"2026-03-21T19:40:58.966051119Z"} +2026/03/21 19:41:03 [log_collector] {"stage_name":"log_collector","events_processed":10203,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2040.6,"last_update":"2026-03-21T19:40:58.870014546Z"} +2026/03/21 19:41:03 [metric_collector] {"stage_name":"metric_collector","events_processed":5709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1141.8,"last_update":"2026-03-21T19:40:58.870328227Z"} +2026/03/21 19:41:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2286,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:40:58.877795011Z"} +2026/03/21 19:41:03 ───────────────────────────────────────────────── +2026/03/21 19:41:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:41:08 [log_collector] {"stage_name":"log_collector","events_processed":10203,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2040.6,"last_update":"2026-03-21T19:41:08.869974138Z"} +2026/03/21 19:41:08 [metric_collector] {"stage_name":"metric_collector","events_processed":5714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1142.8,"last_update":"2026-03-21T19:41:03.871074757Z"} +2026/03/21 19:41:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:41:03.87914114Z"} +2026/03/21 19:41:08 [transform_engine] {"stage_name":"transform_engine","events_processed":190,"events_dropped":0,"avg_latency_ms":2327.2083951768095,"throughput_eps":0,"last_update":"2026-03-21T19:41:03.965286893Z"} +2026/03/21 19:41:08 [detection_layer] {"stage_name":"detection_layer","events_processed":190,"events_dropped":0,"avg_latency_ms":16.475988251123777,"throughput_eps":0,"last_update":"2026-03-21T19:41:03.965307734Z"} +2026/03/21 19:41:08 ───────────────────────────────────────────────── +2026/03/21 19:41:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:41:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:41:08.876190267Z"} +2026/03/21 19:41:13 [transform_engine] {"stage_name":"transform_engine","events_processed":190,"events_dropped":0,"avg_latency_ms":2327.2083951768095,"throughput_eps":0,"last_update":"2026-03-21T19:41:08.967376407Z"} +2026/03/21 19:41:13 [detection_layer] {"stage_name":"detection_layer","events_processed":190,"events_dropped":0,"avg_latency_ms":16.475988251123777,"throughput_eps":0,"last_update":"2026-03-21T19:41:08.967365836Z"} +2026/03/21 19:41:13 [log_collector] {"stage_name":"log_collector","events_processed":10203,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2040.6,"last_update":"2026-03-21T19:41:08.869974138Z"} +2026/03/21 19:41:13 [metric_collector] {"stage_name":"metric_collector","events_processed":5719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1143.8,"last_update":"2026-03-21T19:41:08.870496008Z"} +2026/03/21 19:41:13 ───────────────────────────────────────────────── +2026/03/21 19:41:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:41:18 [log_collector] {"stage_name":"log_collector","events_processed":10203,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2040.6,"last_update":"2026-03-21T19:41:13.869843371Z"} +2026/03/21 19:41:18 [metric_collector] {"stage_name":"metric_collector","events_processed":5724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1144.8,"last_update":"2026-03-21T19:41:13.870075506Z"} +2026/03/21 19:41:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:41:13.876212031Z"} +2026/03/21 19:41:18 [transform_engine] {"stage_name":"transform_engine","events_processed":190,"events_dropped":0,"avg_latency_ms":2327.2083951768095,"throughput_eps":0,"last_update":"2026-03-21T19:41:13.965463615Z"} +2026/03/21 19:41:18 [detection_layer] {"stage_name":"detection_layer","events_processed":190,"events_dropped":0,"avg_latency_ms":16.475988251123777,"throughput_eps":0,"last_update":"2026-03-21T19:41:13.965450109Z"} +2026/03/21 19:41:18 ───────────────────────────────────────────────── +2026/03/21 19:41:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:41:23 [detection_layer] {"stage_name":"detection_layer","events_processed":190,"events_dropped":0,"avg_latency_ms":16.475988251123777,"throughput_eps":0,"last_update":"2026-03-21T19:41:18.965994574Z"} +2026/03/21 19:41:23 [log_collector] {"stage_name":"log_collector","events_processed":10212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2042.4,"last_update":"2026-03-21T19:41:23.869506685Z"} +2026/03/21 19:41:23 [metric_collector] {"stage_name":"metric_collector","events_processed":5729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1145.8,"last_update":"2026-03-21T19:41:18.869965378Z"} +2026/03/21 19:41:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:41:18.87780673Z"} +2026/03/21 19:41:23 [transform_engine] {"stage_name":"transform_engine","events_processed":191,"events_dropped":0,"avg_latency_ms":1881.5219559414477,"throughput_eps":0,"last_update":"2026-03-21T19:41:19.064744264Z"} +2026/03/21 19:41:23 ───────────────────────────────────────────────── +2026/03/21 19:41:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:41:28 [log_collector] {"stage_name":"log_collector","events_processed":10214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2042.8,"last_update":"2026-03-21T19:41:28.869421833Z"} +2026/03/21 19:41:28 [metric_collector] {"stage_name":"metric_collector","events_processed":5734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1146.8,"last_update":"2026-03-21T19:41:23.869762175Z"} +2026/03/21 19:41:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:41:23.877528113Z"} +2026/03/21 19:41:28 [transform_engine] {"stage_name":"transform_engine","events_processed":191,"events_dropped":0,"avg_latency_ms":1881.5219559414477,"throughput_eps":0,"last_update":"2026-03-21T19:41:23.965724173Z"} +2026/03/21 19:41:28 [detection_layer] {"stage_name":"detection_layer","events_processed":191,"events_dropped":0,"avg_latency_ms":15.133305000899023,"throughput_eps":0,"last_update":"2026-03-21T19:41:23.965765543Z"} +2026/03/21 19:41:28 ───────────────────────────────────────────────── +2026/03/21 19:41:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:41:33 [transform_engine] {"stage_name":"transform_engine","events_processed":191,"events_dropped":0,"avg_latency_ms":1881.5219559414477,"throughput_eps":0,"last_update":"2026-03-21T19:41:28.965832039Z"} +2026/03/21 19:41:33 [detection_layer] {"stage_name":"detection_layer","events_processed":191,"events_dropped":0,"avg_latency_ms":15.133305000899023,"throughput_eps":0,"last_update":"2026-03-21T19:41:28.965686119Z"} +2026/03/21 19:41:33 [log_collector] {"stage_name":"log_collector","events_processed":10214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2042.8,"last_update":"2026-03-21T19:41:28.869421833Z"} +2026/03/21 19:41:33 [metric_collector] {"stage_name":"metric_collector","events_processed":5739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1147.8,"last_update":"2026-03-21T19:41:28.869674086Z"} +2026/03/21 19:41:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:41:28.878526505Z"} +2026/03/21 19:41:33 ───────────────────────────────────────────────── +Saved state: 12 clusters, 10454 messages, reason: none +2026/03/21 19:41:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:41:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:41:33.877644889Z"} +2026/03/21 19:41:38 [transform_engine] {"stage_name":"transform_engine","events_processed":191,"events_dropped":0,"avg_latency_ms":1881.5219559414477,"throughput_eps":0,"last_update":"2026-03-21T19:41:33.965637168Z"} +2026/03/21 19:41:38 [detection_layer] {"stage_name":"detection_layer","events_processed":191,"events_dropped":0,"avg_latency_ms":15.133305000899023,"throughput_eps":0,"last_update":"2026-03-21T19:41:33.965564038Z"} +2026/03/21 19:41:38 [log_collector] {"stage_name":"log_collector","events_processed":10278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2055.6,"last_update":"2026-03-21T19:41:33.871337745Z"} +2026/03/21 19:41:38 [metric_collector] {"stage_name":"metric_collector","events_processed":5744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1148.8,"last_update":"2026-03-21T19:41:33.871561283Z"} +2026/03/21 19:41:38 ───────────────────────────────────────────────── +2026/03/21 19:41:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:41:43 [detection_layer] {"stage_name":"detection_layer","events_processed":191,"events_dropped":0,"avg_latency_ms":15.133305000899023,"throughput_eps":0,"last_update":"2026-03-21T19:41:38.965471625Z"} +2026/03/21 19:41:43 [log_collector] {"stage_name":"log_collector","events_processed":10462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2092.4,"last_update":"2026-03-21T19:41:38.870230088Z"} +2026/03/21 19:41:43 [metric_collector] {"stage_name":"metric_collector","events_processed":5749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1149.8,"last_update":"2026-03-21T19:41:38.87064373Z"} +2026/03/21 19:41:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:41:38.87655253Z"} +2026/03/21 19:41:43 [transform_engine] {"stage_name":"transform_engine","events_processed":191,"events_dropped":0,"avg_latency_ms":1881.5219559414477,"throughput_eps":0,"last_update":"2026-03-21T19:41:38.965482565Z"} +2026/03/21 19:41:43 ───────────────────────────────────────────────── +2026/03/21 19:41:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:41:48 [log_collector] {"stage_name":"log_collector","events_processed":10561,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2112.2,"last_update":"2026-03-21T19:41:43.869623524Z"} +2026/03/21 19:41:48 [metric_collector] {"stage_name":"metric_collector","events_processed":5754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1150.8,"last_update":"2026-03-21T19:41:43.869796184Z"} +2026/03/21 19:41:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:41:43.877957309Z"} +2026/03/21 19:41:48 [transform_engine] {"stage_name":"transform_engine","events_processed":191,"events_dropped":0,"avg_latency_ms":1881.5219559414477,"throughput_eps":0,"last_update":"2026-03-21T19:41:43.96508983Z"} +2026/03/21 19:41:48 [detection_layer] {"stage_name":"detection_layer","events_processed":191,"events_dropped":0,"avg_latency_ms":15.133305000899023,"throughput_eps":0,"last_update":"2026-03-21T19:41:43.965277811Z"} +2026/03/21 19:41:48 ───────────────────────────────────────────────── +2026/03/21 19:41:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:41:53 [log_collector] {"stage_name":"log_collector","events_processed":10561,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2112.2,"last_update":"2026-03-21T19:41:48.869413232Z"} +2026/03/21 19:41:53 [metric_collector] {"stage_name":"metric_collector","events_processed":5759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1151.8,"last_update":"2026-03-21T19:41:48.870066684Z"} +2026/03/21 19:41:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:41:48.878441498Z"} +2026/03/21 19:41:53 [transform_engine] {"stage_name":"transform_engine","events_processed":192,"events_dropped":0,"avg_latency_ms":1528.2384321531583,"throughput_eps":0,"last_update":"2026-03-21T19:41:49.080911593Z"} +2026/03/21 19:41:53 [detection_layer] {"stage_name":"detection_layer","events_processed":191,"events_dropped":0,"avg_latency_ms":15.133305000899023,"throughput_eps":0,"last_update":"2026-03-21T19:41:48.965785524Z"} +2026/03/21 19:41:53 ───────────────────────────────────────────────── +2026/03/21 19:41:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:41:58 [transform_engine] {"stage_name":"transform_engine","events_processed":192,"events_dropped":0,"avg_latency_ms":1528.2384321531583,"throughput_eps":0,"last_update":"2026-03-21T19:41:53.965659157Z"} +2026/03/21 19:41:58 [detection_layer] {"stage_name":"detection_layer","events_processed":192,"events_dropped":0,"avg_latency_ms":15.620884200719221,"throughput_eps":0,"last_update":"2026-03-21T19:41:53.965685227Z"} +2026/03/21 19:41:58 [log_collector] {"stage_name":"log_collector","events_processed":10561,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2112.2,"last_update":"2026-03-21T19:41:53.869431242Z"} +2026/03/21 19:41:58 [metric_collector] {"stage_name":"metric_collector","events_processed":5764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1152.8,"last_update":"2026-03-21T19:41:53.869845465Z"} +2026/03/21 19:41:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:41:53.879389248Z"} +2026/03/21 19:41:58 ───────────────────────────────────────────────── +2026/03/21 19:42:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:42:03 [log_collector] {"stage_name":"log_collector","events_processed":10561,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2112.2,"last_update":"2026-03-21T19:41:58.87003826Z"} +2026/03/21 19:42:03 [metric_collector] {"stage_name":"metric_collector","events_processed":5769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1153.8,"last_update":"2026-03-21T19:41:58.870304551Z"} +2026/03/21 19:42:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:41:58.878978468Z"} +2026/03/21 19:42:03 [transform_engine] {"stage_name":"transform_engine","events_processed":192,"events_dropped":0,"avg_latency_ms":1528.2384321531583,"throughput_eps":0,"last_update":"2026-03-21T19:41:58.965185245Z"} +2026/03/21 19:42:03 [detection_layer] {"stage_name":"detection_layer","events_processed":192,"events_dropped":0,"avg_latency_ms":15.620884200719221,"throughput_eps":0,"last_update":"2026-03-21T19:41:58.96634198Z"} +2026/03/21 19:42:03 ───────────────────────────────────────────────── +2026/03/21 19:42:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:42:08 [transform_engine] {"stage_name":"transform_engine","events_processed":192,"events_dropped":0,"avg_latency_ms":1528.2384321531583,"throughput_eps":0,"last_update":"2026-03-21T19:42:03.966087954Z"} +2026/03/21 19:42:08 [detection_layer] {"stage_name":"detection_layer","events_processed":192,"events_dropped":0,"avg_latency_ms":15.620884200719221,"throughput_eps":0,"last_update":"2026-03-21T19:42:03.966139202Z"} +2026/03/21 19:42:08 [log_collector] {"stage_name":"log_collector","events_processed":10561,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2112.2,"last_update":"2026-03-21T19:42:03.870043881Z"} +2026/03/21 19:42:08 [metric_collector] {"stage_name":"metric_collector","events_processed":5779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1155.8,"last_update":"2026-03-21T19:42:08.869959665Z"} +2026/03/21 19:42:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:42:03.880246005Z"} +2026/03/21 19:42:08 ───────────────────────────────────────────────── +2026/03/21 19:42:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:42:13 [metric_collector] {"stage_name":"metric_collector","events_processed":5779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1155.8,"last_update":"2026-03-21T19:42:08.869959665Z"} +2026/03/21 19:42:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:42:08.878810721Z"} +2026/03/21 19:42:13 [transform_engine] {"stage_name":"transform_engine","events_processed":192,"events_dropped":0,"avg_latency_ms":1528.2384321531583,"throughput_eps":0,"last_update":"2026-03-21T19:42:08.966326585Z"} +2026/03/21 19:42:13 [detection_layer] {"stage_name":"detection_layer","events_processed":192,"events_dropped":0,"avg_latency_ms":15.620884200719221,"throughput_eps":0,"last_update":"2026-03-21T19:42:08.966185245Z"} +2026/03/21 19:42:13 [log_collector] {"stage_name":"log_collector","events_processed":10561,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2112.2,"last_update":"2026-03-21T19:42:08.870173875Z"} +2026/03/21 19:42:13 ───────────────────────────────────────────────── +2026/03/21 19:42:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:42:18 [metric_collector] {"stage_name":"metric_collector","events_processed":5784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1156.8,"last_update":"2026-03-21T19:42:13.870492083Z"} +2026/03/21 19:42:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:42:13.879107217Z"} +2026/03/21 19:42:18 [transform_engine] {"stage_name":"transform_engine","events_processed":192,"events_dropped":0,"avg_latency_ms":1528.2384321531583,"throughput_eps":0,"last_update":"2026-03-21T19:42:13.965282684Z"} +2026/03/21 19:42:18 [detection_layer] {"stage_name":"detection_layer","events_processed":192,"events_dropped":0,"avg_latency_ms":15.620884200719221,"throughput_eps":0,"last_update":"2026-03-21T19:42:13.965307241Z"} +2026/03/21 19:42:18 [log_collector] {"stage_name":"log_collector","events_processed":10561,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2112.2,"last_update":"2026-03-21T19:42:13.869914577Z"} +2026/03/21 19:42:18 ───────────────────────────────────────────────── +2026/03/21 19:42:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:42:23 [log_collector] {"stage_name":"log_collector","events_processed":10561,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2112.2,"last_update":"2026-03-21T19:42:23.869748147Z"} +2026/03/21 19:42:23 [metric_collector] {"stage_name":"metric_collector","events_processed":5789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1157.8,"last_update":"2026-03-21T19:42:18.870913534Z"} +2026/03/21 19:42:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:42:18.879953662Z"} +2026/03/21 19:42:23 [transform_engine] {"stage_name":"transform_engine","events_processed":192,"events_dropped":0,"avg_latency_ms":1528.2384321531583,"throughput_eps":0,"last_update":"2026-03-21T19:42:18.965120015Z"} +2026/03/21 19:42:23 [detection_layer] {"stage_name":"detection_layer","events_processed":192,"events_dropped":0,"avg_latency_ms":15.620884200719221,"throughput_eps":0,"last_update":"2026-03-21T19:42:18.9652793Z"} +2026/03/21 19:42:23 ───────────────────────────────────────────────── +2026/03/21 19:42:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:42:28 [transform_engine] {"stage_name":"transform_engine","events_processed":193,"events_dropped":0,"avg_latency_ms":1236.8892755225268,"throughput_eps":0,"last_update":"2026-03-21T19:42:23.966127832Z"} +2026/03/21 19:42:28 [detection_layer] {"stage_name":"detection_layer","events_processed":193,"events_dropped":0,"avg_latency_ms":16.41582716057538,"throughput_eps":0,"last_update":"2026-03-21T19:42:23.966094758Z"} +2026/03/21 19:42:28 [log_collector] {"stage_name":"log_collector","events_processed":10561,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2112.2,"last_update":"2026-03-21T19:42:28.869508759Z"} +2026/03/21 19:42:28 [metric_collector] {"stage_name":"metric_collector","events_processed":5794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1158.8,"last_update":"2026-03-21T19:42:23.870442838Z"} +2026/03/21 19:42:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2320,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:42:23.878774078Z"} +2026/03/21 19:42:28 ───────────────────────────────────────────────── +2026/03/21 19:42:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:42:33 [log_collector] {"stage_name":"log_collector","events_processed":10561,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2112.2,"last_update":"2026-03-21T19:42:28.869508759Z"} +2026/03/21 19:42:33 [metric_collector] {"stage_name":"metric_collector","events_processed":5799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1159.8,"last_update":"2026-03-21T19:42:28.870004669Z"} +2026/03/21 19:42:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:42:28.878766394Z"} +2026/03/21 19:42:33 [transform_engine] {"stage_name":"transform_engine","events_processed":193,"events_dropped":0,"avg_latency_ms":1236.8892755225268,"throughput_eps":0,"last_update":"2026-03-21T19:42:28.965963196Z"} +2026/03/21 19:42:33 [detection_layer] {"stage_name":"detection_layer","events_processed":193,"events_dropped":0,"avg_latency_ms":16.41582716057538,"throughput_eps":0,"last_update":"2026-03-21T19:42:28.966002712Z"} +2026/03/21 19:42:33 ───────────────────────────────────────────────── +2026/03/21 19:42:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:42:38 [log_collector] {"stage_name":"log_collector","events_processed":10561,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2112.2,"last_update":"2026-03-21T19:42:33.869496181Z"} +2026/03/21 19:42:38 [metric_collector] {"stage_name":"metric_collector","events_processed":5804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1160.8,"last_update":"2026-03-21T19:42:33.86977718Z"} +2026/03/21 19:42:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:42:33.878858025Z"} +2026/03/21 19:42:38 [transform_engine] {"stage_name":"transform_engine","events_processed":193,"events_dropped":0,"avg_latency_ms":1236.8892755225268,"throughput_eps":0,"last_update":"2026-03-21T19:42:33.966129019Z"} +2026/03/21 19:42:38 [detection_layer] {"stage_name":"detection_layer","events_processed":193,"events_dropped":0,"avg_latency_ms":16.41582716057538,"throughput_eps":0,"last_update":"2026-03-21T19:42:33.966146904Z"} +2026/03/21 19:42:38 ───────────────────────────────────────────────── +2026/03/21 19:42:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:42:43 [detection_layer] {"stage_name":"detection_layer","events_processed":193,"events_dropped":0,"avg_latency_ms":16.41582716057538,"throughput_eps":0,"last_update":"2026-03-21T19:42:38.965582854Z"} +2026/03/21 19:42:43 [log_collector] {"stage_name":"log_collector","events_processed":10561,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2112.2,"last_update":"2026-03-21T19:42:38.870491869Z"} +2026/03/21 19:42:43 [metric_collector] {"stage_name":"metric_collector","events_processed":5809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1161.8,"last_update":"2026-03-21T19:42:38.870975737Z"} +2026/03/21 19:42:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:42:38.879150567Z"} +2026/03/21 19:42:43 [transform_engine] {"stage_name":"transform_engine","events_processed":193,"events_dropped":0,"avg_latency_ms":1236.8892755225268,"throughput_eps":0,"last_update":"2026-03-21T19:42:38.965466611Z"} +2026/03/21 19:42:43 ───────────────────────────────────────────────── +Saved state: 12 clusters, 10562 messages, reason: none +2026/03/21 19:42:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:42:48 [metric_collector] {"stage_name":"metric_collector","events_processed":5814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1162.8,"last_update":"2026-03-21T19:42:43.870576516Z"} +2026/03/21 19:42:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:42:43.879428735Z"} +2026/03/21 19:42:48 [transform_engine] {"stage_name":"transform_engine","events_processed":193,"events_dropped":0,"avg_latency_ms":1236.8892755225268,"throughput_eps":0,"last_update":"2026-03-21T19:42:43.965760389Z"} +2026/03/21 19:42:48 [detection_layer] {"stage_name":"detection_layer","events_processed":193,"events_dropped":0,"avg_latency_ms":16.41582716057538,"throughput_eps":0,"last_update":"2026-03-21T19:42:43.965797219Z"} +2026/03/21 19:42:48 [log_collector] {"stage_name":"log_collector","events_processed":10561,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2112.2,"last_update":"2026-03-21T19:42:43.870005723Z"} +2026/03/21 19:42:48 ───────────────────────────────────────────────── +2026/03/21 19:42:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:42:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2330,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:42:48.876110378Z"} +2026/03/21 19:42:53 [transform_engine] {"stage_name":"transform_engine","events_processed":193,"events_dropped":0,"avg_latency_ms":1236.8892755225268,"throughput_eps":0,"last_update":"2026-03-21T19:42:48.965511381Z"} +2026/03/21 19:42:53 [detection_layer] {"stage_name":"detection_layer","events_processed":193,"events_dropped":0,"avg_latency_ms":16.41582716057538,"throughput_eps":0,"last_update":"2026-03-21T19:42:48.965543783Z"} +2026/03/21 19:42:53 [log_collector] {"stage_name":"log_collector","events_processed":10564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2112.8,"last_update":"2026-03-21T19:42:48.869531915Z"} +2026/03/21 19:42:53 [metric_collector] {"stage_name":"metric_collector","events_processed":5819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1163.8,"last_update":"2026-03-21T19:42:48.869752167Z"} +2026/03/21 19:42:53 ───────────────────────────────────────────────── +2026/03/21 19:42:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:42:58 [log_collector] {"stage_name":"log_collector","events_processed":10564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2112.8,"last_update":"2026-03-21T19:42:53.870291114Z"} +2026/03/21 19:42:58 [metric_collector] {"stage_name":"metric_collector","events_processed":5824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1164.8,"last_update":"2026-03-21T19:42:53.870710247Z"} +2026/03/21 19:42:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:42:53.880605533Z"} +2026/03/21 19:42:58 [transform_engine] {"stage_name":"transform_engine","events_processed":194,"events_dropped":0,"avg_latency_ms":1016.8074690180214,"throughput_eps":0,"last_update":"2026-03-21T19:42:53.965887797Z"} +2026/03/21 19:42:58 [detection_layer] {"stage_name":"detection_layer","events_processed":194,"events_dropped":0,"avg_latency_ms":15.770404728460305,"throughput_eps":0,"last_update":"2026-03-21T19:42:53.965813074Z"} +2026/03/21 19:42:58 ───────────────────────────────────────────────── +2026/03/21 19:43:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:43:03 [metric_collector] {"stage_name":"metric_collector","events_processed":5829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1165.8,"last_update":"2026-03-21T19:42:58.869695234Z"} +2026/03/21 19:43:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:42:58.878116707Z"} +2026/03/21 19:43:03 [transform_engine] {"stage_name":"transform_engine","events_processed":194,"events_dropped":0,"avg_latency_ms":1016.8074690180214,"throughput_eps":0,"last_update":"2026-03-21T19:42:58.965408679Z"} +2026/03/21 19:43:03 [detection_layer] {"stage_name":"detection_layer","events_processed":194,"events_dropped":0,"avg_latency_ms":15.770404728460305,"throughput_eps":0,"last_update":"2026-03-21T19:42:58.965394072Z"} +2026/03/21 19:43:03 [log_collector] {"stage_name":"log_collector","events_processed":10589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2117.8,"last_update":"2026-03-21T19:43:03.869408951Z"} +2026/03/21 19:43:03 ───────────────────────────────────────────────── +2026/03/21 19:43:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:43:08 [log_collector] {"stage_name":"log_collector","events_processed":10591,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2118.2,"last_update":"2026-03-21T19:43:08.87011163Z"} +2026/03/21 19:43:08 [metric_collector] {"stage_name":"metric_collector","events_processed":5834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1166.8,"last_update":"2026-03-21T19:43:03.870102149Z"} +2026/03/21 19:43:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:43:03.878562807Z"} +2026/03/21 19:43:08 [transform_engine] {"stage_name":"transform_engine","events_processed":194,"events_dropped":0,"avg_latency_ms":1016.8074690180214,"throughput_eps":0,"last_update":"2026-03-21T19:43:03.965753034Z"} +2026/03/21 19:43:08 [detection_layer] {"stage_name":"detection_layer","events_processed":194,"events_dropped":0,"avg_latency_ms":15.770404728460305,"throughput_eps":0,"last_update":"2026-03-21T19:43:03.965860902Z"} +2026/03/21 19:43:08 ───────────────────────────────────────────────── +2026/03/21 19:43:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:43:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:43:08.880027004Z"} +2026/03/21 19:43:13 [transform_engine] {"stage_name":"transform_engine","events_processed":194,"events_dropped":0,"avg_latency_ms":1016.8074690180214,"throughput_eps":0,"last_update":"2026-03-21T19:43:08.96530018Z"} +2026/03/21 19:43:13 [detection_layer] {"stage_name":"detection_layer","events_processed":194,"events_dropped":0,"avg_latency_ms":15.770404728460305,"throughput_eps":0,"last_update":"2026-03-21T19:43:08.96534274Z"} +2026/03/21 19:43:13 [log_collector] {"stage_name":"log_collector","events_processed":10591,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2118.2,"last_update":"2026-03-21T19:43:08.87011163Z"} +2026/03/21 19:43:13 [metric_collector] {"stage_name":"metric_collector","events_processed":5839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1167.8,"last_update":"2026-03-21T19:43:08.870529369Z"} +2026/03/21 19:43:13 ───────────────────────────────────────────────── +2026/03/21 19:43:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:43:18 [log_collector] {"stage_name":"log_collector","events_processed":10591,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2118.2,"last_update":"2026-03-21T19:43:13.869504684Z"} +2026/03/21 19:43:18 [metric_collector] {"stage_name":"metric_collector","events_processed":5844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1168.8,"last_update":"2026-03-21T19:43:13.869865404Z"} +2026/03/21 19:43:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:43:13.877954551Z"} +2026/03/21 19:43:18 [transform_engine] {"stage_name":"transform_engine","events_processed":194,"events_dropped":0,"avg_latency_ms":1016.8074690180214,"throughput_eps":0,"last_update":"2026-03-21T19:43:13.965342777Z"} +2026/03/21 19:43:18 [detection_layer] {"stage_name":"detection_layer","events_processed":194,"events_dropped":0,"avg_latency_ms":15.770404728460305,"throughput_eps":0,"last_update":"2026-03-21T19:43:13.965313952Z"} +2026/03/21 19:43:18 ───────────────────────────────────────────────── +2026/03/21 19:43:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:43:23 [metric_collector] {"stage_name":"metric_collector","events_processed":5848,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1169.6,"last_update":"2026-03-21T19:43:18.869933556Z"} +2026/03/21 19:43:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2342,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:43:18.87944621Z"} +2026/03/21 19:43:23 [transform_engine] {"stage_name":"transform_engine","events_processed":195,"events_dropped":0,"avg_latency_ms":836.2162234144171,"throughput_eps":0,"last_update":"2026-03-21T19:43:19.079641938Z"} +2026/03/21 19:43:23 [detection_layer] {"stage_name":"detection_layer","events_processed":194,"events_dropped":0,"avg_latency_ms":15.770404728460305,"throughput_eps":0,"last_update":"2026-03-21T19:43:18.966452013Z"} +2026/03/21 19:43:23 [log_collector] {"stage_name":"log_collector","events_processed":10591,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2118.2,"last_update":"2026-03-21T19:43:18.869984654Z"} +2026/03/21 19:43:23 ───────────────────────────────────────────────── +2026/03/21 19:43:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:43:28 [log_collector] {"stage_name":"log_collector","events_processed":10604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2120.8,"last_update":"2026-03-21T19:43:23.869402818Z"} +2026/03/21 19:43:28 [metric_collector] {"stage_name":"metric_collector","events_processed":5853,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1170.6,"last_update":"2026-03-21T19:43:23.869396005Z"} +2026/03/21 19:43:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:43:23.877930234Z"} +2026/03/21 19:43:28 [transform_engine] {"stage_name":"transform_engine","events_processed":195,"events_dropped":0,"avg_latency_ms":836.2162234144171,"throughput_eps":0,"last_update":"2026-03-21T19:43:23.965127395Z"} +2026/03/21 19:43:28 [detection_layer] {"stage_name":"detection_layer","events_processed":195,"events_dropped":0,"avg_latency_ms":16.255270782768246,"throughput_eps":0,"last_update":"2026-03-21T19:43:23.966319066Z"} +2026/03/21 19:43:28 ───────────────────────────────────────────────── +2026/03/21 19:43:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:43:33 [log_collector] {"stage_name":"log_collector","events_processed":10605,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2121,"last_update":"2026-03-21T19:43:28.869930847Z"} +2026/03/21 19:43:33 [metric_collector] {"stage_name":"metric_collector","events_processed":5859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1171.8,"last_update":"2026-03-21T19:43:28.869856394Z"} +2026/03/21 19:43:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:43:28.87856597Z"} +2026/03/21 19:43:33 [transform_engine] {"stage_name":"transform_engine","events_processed":195,"events_dropped":0,"avg_latency_ms":836.2162234144171,"throughput_eps":0,"last_update":"2026-03-21T19:43:28.965902917Z"} +2026/03/21 19:43:33 [detection_layer] {"stage_name":"detection_layer","events_processed":195,"events_dropped":0,"avg_latency_ms":16.255270782768246,"throughput_eps":0,"last_update":"2026-03-21T19:43:28.966011124Z"} +2026/03/21 19:43:33 ───────────────────────────────────────────────── +2026/03/21 19:43:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:43:38 [metric_collector] {"stage_name":"metric_collector","events_processed":5864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1172.8,"last_update":"2026-03-21T19:43:33.869772393Z"} +2026/03/21 19:43:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:43:33.878047847Z"} +2026/03/21 19:43:38 [transform_engine] {"stage_name":"transform_engine","events_processed":195,"events_dropped":0,"avg_latency_ms":836.2162234144171,"throughput_eps":0,"last_update":"2026-03-21T19:43:33.965242092Z"} +2026/03/21 19:43:38 [detection_layer] {"stage_name":"detection_layer","events_processed":195,"events_dropped":0,"avg_latency_ms":16.255270782768246,"throughput_eps":0,"last_update":"2026-03-21T19:43:33.965264113Z"} +2026/03/21 19:43:38 [log_collector] {"stage_name":"log_collector","events_processed":10605,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2121,"last_update":"2026-03-21T19:43:33.869680238Z"} +2026/03/21 19:43:38 ───────────────────────────────────────────────── +2026/03/21 19:43:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:43:43 [log_collector] {"stage_name":"log_collector","events_processed":10605,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2121,"last_update":"2026-03-21T19:43:38.86942171Z"} +2026/03/21 19:43:43 [metric_collector] {"stage_name":"metric_collector","events_processed":5869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1173.8,"last_update":"2026-03-21T19:43:38.870252571Z"} +2026/03/21 19:43:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2350,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:43:38.878483309Z"} +2026/03/21 19:43:43 [transform_engine] {"stage_name":"transform_engine","events_processed":195,"events_dropped":0,"avg_latency_ms":836.2162234144171,"throughput_eps":0,"last_update":"2026-03-21T19:43:38.965924075Z"} +2026/03/21 19:43:43 [detection_layer] {"stage_name":"detection_layer","events_processed":195,"events_dropped":0,"avg_latency_ms":16.255270782768246,"throughput_eps":0,"last_update":"2026-03-21T19:43:38.965808433Z"} +2026/03/21 19:43:43 ───────────────────────────────────────────────── +2026/03/21 19:43:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:43:48 [metric_collector] {"stage_name":"metric_collector","events_processed":5874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1174.8,"last_update":"2026-03-21T19:43:43.870380872Z"} +2026/03/21 19:43:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:43:43.879445777Z"} +2026/03/21 19:43:48 [transform_engine] {"stage_name":"transform_engine","events_processed":195,"events_dropped":0,"avg_latency_ms":836.2162234144171,"throughput_eps":0,"last_update":"2026-03-21T19:43:43.965810763Z"} +2026/03/21 19:43:48 [detection_layer] {"stage_name":"detection_layer","events_processed":195,"events_dropped":0,"avg_latency_ms":16.255270782768246,"throughput_eps":0,"last_update":"2026-03-21T19:43:43.965703848Z"} +2026/03/21 19:43:48 [log_collector] {"stage_name":"log_collector","events_processed":10605,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2121,"last_update":"2026-03-21T19:43:43.869891795Z"} +2026/03/21 19:43:48 ───────────────────────────────────────────────── +2026/03/21 19:43:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:43:53 [log_collector] {"stage_name":"log_collector","events_processed":10605,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2121,"last_update":"2026-03-21T19:43:48.869659843Z"} +2026/03/21 19:43:53 [metric_collector] {"stage_name":"metric_collector","events_processed":5879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1175.8,"last_update":"2026-03-21T19:43:48.870181362Z"} +2026/03/21 19:43:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:43:48.878491912Z"} +2026/03/21 19:43:53 [transform_engine] {"stage_name":"transform_engine","events_processed":196,"events_dropped":0,"avg_latency_ms":693.6687211315336,"throughput_eps":0,"last_update":"2026-03-21T19:43:49.088730434Z"} +2026/03/21 19:43:53 [detection_layer] {"stage_name":"detection_layer","events_processed":195,"events_dropped":0,"avg_latency_ms":16.255270782768246,"throughput_eps":0,"last_update":"2026-03-21T19:43:48.965297991Z"} +2026/03/21 19:43:53 ───────────────────────────────────────────────── +2026/03/21 19:43:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:43:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:43:53.877924103Z"} +2026/03/21 19:43:58 [transform_engine] {"stage_name":"transform_engine","events_processed":196,"events_dropped":0,"avg_latency_ms":693.6687211315336,"throughput_eps":0,"last_update":"2026-03-21T19:43:53.96609659Z"} +2026/03/21 19:43:58 [detection_layer] {"stage_name":"detection_layer","events_processed":196,"events_dropped":0,"avg_latency_ms":17.0755378262146,"throughput_eps":0,"last_update":"2026-03-21T19:43:53.966231879Z"} +2026/03/21 19:43:58 [log_collector] {"stage_name":"log_collector","events_processed":10605,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2121,"last_update":"2026-03-21T19:43:53.869422838Z"} +2026/03/21 19:43:58 [metric_collector] {"stage_name":"metric_collector","events_processed":5884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1176.8,"last_update":"2026-03-21T19:43:53.869896906Z"} +2026/03/21 19:43:58 ───────────────────────────────────────────────── +2026/03/21 19:44:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:44:03 [metric_collector] {"stage_name":"metric_collector","events_processed":5889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1177.8,"last_update":"2026-03-21T19:43:58.870154282Z"} +2026/03/21 19:44:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:43:58.878435837Z"} +2026/03/21 19:44:03 [transform_engine] {"stage_name":"transform_engine","events_processed":196,"events_dropped":0,"avg_latency_ms":693.6687211315336,"throughput_eps":0,"last_update":"2026-03-21T19:43:58.965587478Z"} +2026/03/21 19:44:03 [detection_layer] {"stage_name":"detection_layer","events_processed":196,"events_dropped":0,"avg_latency_ms":17.0755378262146,"throughput_eps":0,"last_update":"2026-03-21T19:43:58.965607657Z"} +2026/03/21 19:44:03 [log_collector] {"stage_name":"log_collector","events_processed":10605,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2121,"last_update":"2026-03-21T19:43:58.869408684Z"} +2026/03/21 19:44:03 ───────────────────────────────────────────────── +2026/03/21 19:44:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:44:08 [metric_collector] {"stage_name":"metric_collector","events_processed":5894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1178.8,"last_update":"2026-03-21T19:44:03.870568176Z"} +2026/03/21 19:44:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2360,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:44:03.880098063Z"} +2026/03/21 19:44:08 [transform_engine] {"stage_name":"transform_engine","events_processed":196,"events_dropped":0,"avg_latency_ms":693.6687211315336,"throughput_eps":0,"last_update":"2026-03-21T19:44:03.96514477Z"} +2026/03/21 19:44:08 [detection_layer] {"stage_name":"detection_layer","events_processed":196,"events_dropped":0,"avg_latency_ms":17.0755378262146,"throughput_eps":0,"last_update":"2026-03-21T19:44:03.966250259Z"} +2026/03/21 19:44:08 [log_collector] {"stage_name":"log_collector","events_processed":10605,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2121,"last_update":"2026-03-21T19:44:03.870179963Z"} +2026/03/21 19:44:08 ───────────────────────────────────────────────── +2026/03/21 19:44:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:44:13 [metric_collector] {"stage_name":"metric_collector","events_processed":5899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1179.8,"last_update":"2026-03-21T19:44:08.87016401Z"} +2026/03/21 19:44:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:44:08.878247615Z"} +2026/03/21 19:44:13 [transform_engine] {"stage_name":"transform_engine","events_processed":196,"events_dropped":0,"avg_latency_ms":693.6687211315336,"throughput_eps":0,"last_update":"2026-03-21T19:44:08.96555262Z"} +2026/03/21 19:44:13 [detection_layer] {"stage_name":"detection_layer","events_processed":196,"events_dropped":0,"avg_latency_ms":17.0755378262146,"throughput_eps":0,"last_update":"2026-03-21T19:44:08.965665777Z"} +2026/03/21 19:44:13 [log_collector] {"stage_name":"log_collector","events_processed":10605,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2121,"last_update":"2026-03-21T19:44:08.86943851Z"} +2026/03/21 19:44:13 ───────────────────────────────────────────────── +2026/03/21 19:44:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:44:18 [metric_collector] {"stage_name":"metric_collector","events_processed":5904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1180.8,"last_update":"2026-03-21T19:44:13.869932392Z"} +2026/03/21 19:44:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:44:13.87839361Z"} +2026/03/21 19:44:18 [transform_engine] {"stage_name":"transform_engine","events_processed":196,"events_dropped":0,"avg_latency_ms":693.6687211315336,"throughput_eps":0,"last_update":"2026-03-21T19:44:13.965686241Z"} +2026/03/21 19:44:18 [detection_layer] {"stage_name":"detection_layer","events_processed":196,"events_dropped":0,"avg_latency_ms":17.0755378262146,"throughput_eps":0,"last_update":"2026-03-21T19:44:13.965801282Z"} +2026/03/21 19:44:18 [log_collector] {"stage_name":"log_collector","events_processed":10605,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2121,"last_update":"2026-03-21T19:44:13.869432834Z"} +2026/03/21 19:44:18 ───────────────────────────────────────────────── +2026/03/21 19:44:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:44:23 [log_collector] {"stage_name":"log_collector","events_processed":10605,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2121,"last_update":"2026-03-21T19:44:18.869970318Z"} +2026/03/21 19:44:23 [metric_collector] {"stage_name":"metric_collector","events_processed":5909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1181.8,"last_update":"2026-03-21T19:44:18.870204646Z"} +2026/03/21 19:44:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:44:18.878729697Z"} +2026/03/21 19:44:23 [transform_engine] {"stage_name":"transform_engine","events_processed":197,"events_dropped":0,"avg_latency_ms":569.0081261052269,"throughput_eps":0,"last_update":"2026-03-21T19:44:19.03643381Z"} +2026/03/21 19:44:23 [detection_layer] {"stage_name":"detection_layer","events_processed":196,"events_dropped":0,"avg_latency_ms":17.0755378262146,"throughput_eps":0,"last_update":"2026-03-21T19:44:18.966167796Z"} +2026/03/21 19:44:23 ───────────────────────────────────────────────── +Saved state: 12 clusters, 10606 messages, reason: none +2026/03/21 19:44:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:44:28 [log_collector] {"stage_name":"log_collector","events_processed":10605,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2121,"last_update":"2026-03-21T19:44:23.869730038Z"} +2026/03/21 19:44:28 [metric_collector] {"stage_name":"metric_collector","events_processed":5914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1182.8,"last_update":"2026-03-21T19:44:23.870078195Z"} +2026/03/21 19:44:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:44:23.879274521Z"} +2026/03/21 19:44:28 [transform_engine] {"stage_name":"transform_engine","events_processed":197,"events_dropped":0,"avg_latency_ms":569.0081261052269,"throughput_eps":0,"last_update":"2026-03-21T19:44:23.965589349Z"} +2026/03/21 19:44:28 [detection_layer] {"stage_name":"detection_layer","events_processed":197,"events_dropped":0,"avg_latency_ms":17.49115846097168,"throughput_eps":0,"last_update":"2026-03-21T19:44:23.965709538Z"} +2026/03/21 19:44:28 ───────────────────────────────────────────────── +2026/03/21 19:44:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:44:33 [log_collector] {"stage_name":"log_collector","events_processed":10610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2122,"last_update":"2026-03-21T19:44:28.869701842Z"} +2026/03/21 19:44:33 [metric_collector] {"stage_name":"metric_collector","events_processed":5919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1183.8,"last_update":"2026-03-21T19:44:28.870106528Z"} +2026/03/21 19:44:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:44:28.878160707Z"} +2026/03/21 19:44:33 [transform_engine] {"stage_name":"transform_engine","events_processed":197,"events_dropped":0,"avg_latency_ms":569.0081261052269,"throughput_eps":0,"last_update":"2026-03-21T19:44:28.965338646Z"} +2026/03/21 19:44:33 [detection_layer] {"stage_name":"detection_layer","events_processed":197,"events_dropped":0,"avg_latency_ms":17.49115846097168,"throughput_eps":0,"last_update":"2026-03-21T19:44:28.965319018Z"} +2026/03/21 19:44:33 ───────────────────────────────────────────────── +2026/03/21 19:44:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:44:38 [metric_collector] {"stage_name":"metric_collector","events_processed":5924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1184.8,"last_update":"2026-03-21T19:44:33.870629435Z"} +2026/03/21 19:44:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:44:33.877378574Z"} +2026/03/21 19:44:38 [transform_engine] {"stage_name":"transform_engine","events_processed":197,"events_dropped":0,"avg_latency_ms":569.0081261052269,"throughput_eps":0,"last_update":"2026-03-21T19:44:33.965541831Z"} +2026/03/21 19:44:38 [detection_layer] {"stage_name":"detection_layer","events_processed":197,"events_dropped":0,"avg_latency_ms":17.49115846097168,"throughput_eps":0,"last_update":"2026-03-21T19:44:33.965589723Z"} +2026/03/21 19:44:38 [log_collector] {"stage_name":"log_collector","events_processed":10610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2122,"last_update":"2026-03-21T19:44:33.870294022Z"} +2026/03/21 19:44:38 ───────────────────────────────────────────────── +2026/03/21 19:44:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:44:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:44:38.877027495Z"} +2026/03/21 19:44:43 [transform_engine] {"stage_name":"transform_engine","events_processed":197,"events_dropped":0,"avg_latency_ms":569.0081261052269,"throughput_eps":0,"last_update":"2026-03-21T19:44:38.965162038Z"} +2026/03/21 19:44:43 [detection_layer] {"stage_name":"detection_layer","events_processed":197,"events_dropped":0,"avg_latency_ms":17.49115846097168,"throughput_eps":0,"last_update":"2026-03-21T19:44:38.966285029Z"} +2026/03/21 19:44:43 [log_collector] {"stage_name":"log_collector","events_processed":10610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2122,"last_update":"2026-03-21T19:44:38.870034639Z"} +2026/03/21 19:44:43 [metric_collector] {"stage_name":"metric_collector","events_processed":5929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1185.8,"last_update":"2026-03-21T19:44:38.870022516Z"} +2026/03/21 19:44:43 ───────────────────────────────────────────────── +2026/03/21 19:44:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:44:48 [log_collector] {"stage_name":"log_collector","events_processed":10610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2122,"last_update":"2026-03-21T19:44:43.869671074Z"} +2026/03/21 19:44:48 [metric_collector] {"stage_name":"metric_collector","events_processed":5939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1187.8,"last_update":"2026-03-21T19:44:48.87063462Z"} +2026/03/21 19:44:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:44:43.876634353Z"} +2026/03/21 19:44:48 [transform_engine] {"stage_name":"transform_engine","events_processed":197,"events_dropped":0,"avg_latency_ms":569.0081261052269,"throughput_eps":0,"last_update":"2026-03-21T19:44:43.96545491Z"} +2026/03/21 19:44:48 [detection_layer] {"stage_name":"detection_layer","events_processed":197,"events_dropped":0,"avg_latency_ms":17.49115846097168,"throughput_eps":0,"last_update":"2026-03-21T19:44:43.96573214Z"} +2026/03/21 19:44:48 ───────────────────────────────────────────────── +2026/03/21 19:44:53 [ANOMALY] time=2026-03-21T19:44:53Z score=0.8670 method=SEAD details=MAD!:w=0.26,s=0.78 RRCF-fast!:w=0.19,s=0.94 RRCF-mid!:w=0.17,s=0.96 RRCF-slow!:w=0.15,s=1.00 COPOD!:w=0.22,s=0.74 +2026/03/21 19:44:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:44:53 [log_collector] {"stage_name":"log_collector","events_processed":10610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2122,"last_update":"2026-03-21T19:44:48.87064528Z"} +2026/03/21 19:44:53 [metric_collector] {"stage_name":"metric_collector","events_processed":5939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1187.8,"last_update":"2026-03-21T19:44:48.87063462Z"} +2026/03/21 19:44:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:44:48.876448837Z"} +2026/03/21 19:44:53 [transform_engine] {"stage_name":"transform_engine","events_processed":198,"events_dropped":0,"avg_latency_ms":1415.6420840841815,"throughput_eps":0,"last_update":"2026-03-21T19:44:53.767820194Z"} +2026/03/21 19:44:53 [detection_layer] {"stage_name":"detection_layer","events_processed":197,"events_dropped":0,"avg_latency_ms":17.49115846097168,"throughput_eps":0,"last_update":"2026-03-21T19:44:48.965661134Z"} +2026/03/21 19:44:53 ───────────────────────────────────────────────── +2026/03/21 19:44:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:44:58 [log_collector] {"stage_name":"log_collector","events_processed":10610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2122,"last_update":"2026-03-21T19:44:53.86955532Z"} +2026/03/21 19:44:58 [metric_collector] {"stage_name":"metric_collector","events_processed":5944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1188.8,"last_update":"2026-03-21T19:44:53.870180998Z"} +2026/03/21 19:44:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2380,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:44:53.881215246Z"} +2026/03/21 19:44:58 [transform_engine] {"stage_name":"transform_engine","events_processed":198,"events_dropped":0,"avg_latency_ms":1415.6420840841815,"throughput_eps":0,"last_update":"2026-03-21T19:44:53.965122309Z"} +2026/03/21 19:44:58 [detection_layer] {"stage_name":"detection_layer","events_processed":198,"events_dropped":0,"avg_latency_ms":15.796898568777344,"throughput_eps":0,"last_update":"2026-03-21T19:44:53.966217708Z"} +2026/03/21 19:44:58 ───────────────────────────────────────────────── +2026/03/21 19:45:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:45:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:44:58.876785457Z"} +2026/03/21 19:45:03 [transform_engine] {"stage_name":"transform_engine","events_processed":198,"events_dropped":0,"avg_latency_ms":1415.6420840841815,"throughput_eps":0,"last_update":"2026-03-21T19:44:58.96601167Z"} +2026/03/21 19:45:03 [detection_layer] {"stage_name":"detection_layer","events_processed":198,"events_dropped":0,"avg_latency_ms":15.796898568777344,"throughput_eps":0,"last_update":"2026-03-21T19:44:58.965986312Z"} +2026/03/21 19:45:03 [log_collector] {"stage_name":"log_collector","events_processed":10610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2122,"last_update":"2026-03-21T19:44:58.869840483Z"} +2026/03/21 19:45:03 [metric_collector] {"stage_name":"metric_collector","events_processed":5949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1189.8,"last_update":"2026-03-21T19:44:58.870094139Z"} +2026/03/21 19:45:03 ───────────────────────────────────────────────── +2026/03/21 19:45:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:45:08 [log_collector] {"stage_name":"log_collector","events_processed":10610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2122,"last_update":"2026-03-21T19:45:03.869424191Z"} +2026/03/21 19:45:08 [metric_collector] {"stage_name":"metric_collector","events_processed":5954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1190.8,"last_update":"2026-03-21T19:45:03.869656185Z"} +2026/03/21 19:45:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:45:03.879488009Z"} +2026/03/21 19:45:08 [transform_engine] {"stage_name":"transform_engine","events_processed":198,"events_dropped":0,"avg_latency_ms":1415.6420840841815,"throughput_eps":0,"last_update":"2026-03-21T19:45:03.965614373Z"} +2026/03/21 19:45:08 [detection_layer] {"stage_name":"detection_layer","events_processed":198,"events_dropped":0,"avg_latency_ms":15.796898568777344,"throughput_eps":0,"last_update":"2026-03-21T19:45:03.965627489Z"} +2026/03/21 19:45:08 ───────────────────────────────────────────────── +2026/03/21 19:45:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:45:13 [metric_collector] {"stage_name":"metric_collector","events_processed":5959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1191.8,"last_update":"2026-03-21T19:45:08.87069643Z"} +2026/03/21 19:45:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:45:08.876990167Z"} +2026/03/21 19:45:13 [transform_engine] {"stage_name":"transform_engine","events_processed":198,"events_dropped":0,"avg_latency_ms":1415.6420840841815,"throughput_eps":0,"last_update":"2026-03-21T19:45:08.965122273Z"} +2026/03/21 19:45:13 [detection_layer] {"stage_name":"detection_layer","events_processed":198,"events_dropped":0,"avg_latency_ms":15.796898568777344,"throughput_eps":0,"last_update":"2026-03-21T19:45:08.966288167Z"} +2026/03/21 19:45:13 [log_collector] {"stage_name":"log_collector","events_processed":10613,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2122.6,"last_update":"2026-03-21T19:45:08.870223785Z"} +2026/03/21 19:45:13 ───────────────────────────────────────────────── +2026/03/21 19:45:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:45:18 [log_collector] {"stage_name":"log_collector","events_processed":10621,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2124.2,"last_update":"2026-03-21T19:45:13.869827157Z"} +2026/03/21 19:45:18 [metric_collector] {"stage_name":"metric_collector","events_processed":5964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1192.8,"last_update":"2026-03-21T19:45:13.869810004Z"} +2026/03/21 19:45:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2388,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:45:13.878519157Z"} +2026/03/21 19:45:18 [transform_engine] {"stage_name":"transform_engine","events_processed":198,"events_dropped":0,"avg_latency_ms":1415.6420840841815,"throughput_eps":0,"last_update":"2026-03-21T19:45:13.965722506Z"} +2026/03/21 19:45:18 [detection_layer] {"stage_name":"detection_layer","events_processed":198,"events_dropped":0,"avg_latency_ms":15.796898568777344,"throughput_eps":0,"last_update":"2026-03-21T19:45:13.965833057Z"} +2026/03/21 19:45:18 ───────────────────────────────────────────────── +2026/03/21 19:45:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:45:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2390,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:45:18.88096845Z"} +2026/03/21 19:45:23 [transform_engine] {"stage_name":"transform_engine","events_processed":199,"events_dropped":0,"avg_latency_ms":1153.5665142673452,"throughput_eps":0,"last_update":"2026-03-21T19:45:19.070555304Z"} +2026/03/21 19:45:23 [detection_layer] {"stage_name":"detection_layer","events_processed":198,"events_dropped":0,"avg_latency_ms":15.796898568777344,"throughput_eps":0,"last_update":"2026-03-21T19:45:18.965345143Z"} +2026/03/21 19:45:23 [log_collector] {"stage_name":"log_collector","events_processed":10848,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2169.6,"last_update":"2026-03-21T19:45:18.870362713Z"} +2026/03/21 19:45:23 [metric_collector] {"stage_name":"metric_collector","events_processed":5974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1194.8,"last_update":"2026-03-21T19:45:23.869789886Z"} +2026/03/21 19:45:23 ───────────────────────────────────────────────── +2026/03/21 19:45:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:45:28 [detection_layer] {"stage_name":"detection_layer","events_processed":199,"events_dropped":0,"avg_latency_ms":15.080757055021875,"throughput_eps":0,"last_update":"2026-03-21T19:45:23.966203597Z"} +2026/03/21 19:45:28 [log_collector] {"stage_name":"log_collector","events_processed":10972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2194.4,"last_update":"2026-03-21T19:45:23.869980031Z"} +2026/03/21 19:45:28 [metric_collector] {"stage_name":"metric_collector","events_processed":5974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1194.8,"last_update":"2026-03-21T19:45:23.869789886Z"} +2026/03/21 19:45:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:45:23.878884919Z"} +2026/03/21 19:45:28 [transform_engine] {"stage_name":"transform_engine","events_processed":199,"events_dropped":0,"avg_latency_ms":1153.5665142673452,"throughput_eps":0,"last_update":"2026-03-21T19:45:23.965060327Z"} +2026/03/21 19:45:28 ───────────────────────────────────────────────── +Saved state: 12 clusters, 10973 messages, reason: none +2026/03/21 19:45:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:45:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:45:28.878854249Z"} +2026/03/21 19:45:33 [transform_engine] {"stage_name":"transform_engine","events_processed":199,"events_dropped":0,"avg_latency_ms":1153.5665142673452,"throughput_eps":0,"last_update":"2026-03-21T19:45:28.96618496Z"} +2026/03/21 19:45:33 [detection_layer] {"stage_name":"detection_layer","events_processed":199,"events_dropped":0,"avg_latency_ms":15.080757055021875,"throughput_eps":0,"last_update":"2026-03-21T19:45:28.966078696Z"} +2026/03/21 19:45:33 [log_collector] {"stage_name":"log_collector","events_processed":10972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2194.4,"last_update":"2026-03-21T19:45:28.86960482Z"} +2026/03/21 19:45:33 [metric_collector] {"stage_name":"metric_collector","events_processed":5979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1195.8,"last_update":"2026-03-21T19:45:28.869768955Z"} +2026/03/21 19:45:33 ───────────────────────────────────────────────── +2026/03/21 19:45:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:45:38 [log_collector] {"stage_name":"log_collector","events_processed":10975,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2195,"last_update":"2026-03-21T19:45:33.870387478Z"} +2026/03/21 19:45:38 [metric_collector] {"stage_name":"metric_collector","events_processed":5984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1196.8,"last_update":"2026-03-21T19:45:33.870754601Z"} +2026/03/21 19:45:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:45:33.876551426Z"} +2026/03/21 19:45:38 [transform_engine] {"stage_name":"transform_engine","events_processed":199,"events_dropped":0,"avg_latency_ms":1153.5665142673452,"throughput_eps":0,"last_update":"2026-03-21T19:45:33.965747099Z"} +2026/03/21 19:45:38 [detection_layer] {"stage_name":"detection_layer","events_processed":199,"events_dropped":0,"avg_latency_ms":15.080757055021875,"throughput_eps":0,"last_update":"2026-03-21T19:45:33.965718294Z"} +2026/03/21 19:45:38 ───────────────────────────────────────────────── +2026/03/21 19:45:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:45:43 [log_collector] {"stage_name":"log_collector","events_processed":10975,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2195,"last_update":"2026-03-21T19:45:38.869439809Z"} +2026/03/21 19:45:43 [metric_collector] {"stage_name":"metric_collector","events_processed":5989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1197.8,"last_update":"2026-03-21T19:45:38.869667446Z"} +2026/03/21 19:45:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:45:38.875902419Z"} +2026/03/21 19:45:43 [transform_engine] {"stage_name":"transform_engine","events_processed":199,"events_dropped":0,"avg_latency_ms":1153.5665142673452,"throughput_eps":0,"last_update":"2026-03-21T19:45:38.965987645Z"} +2026/03/21 19:45:43 [detection_layer] {"stage_name":"detection_layer","events_processed":199,"events_dropped":0,"avg_latency_ms":15.080757055021875,"throughput_eps":0,"last_update":"2026-03-21T19:45:38.966027341Z"} +2026/03/21 19:45:43 ───────────────────────────────────────────────── +2026/03/21 19:45:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:45:48 [metric_collector] {"stage_name":"metric_collector","events_processed":5994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1198.8,"last_update":"2026-03-21T19:45:43.869913632Z"} +2026/03/21 19:45:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2400,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:45:43.878716805Z"} +2026/03/21 19:45:48 [transform_engine] {"stage_name":"transform_engine","events_processed":199,"events_dropped":0,"avg_latency_ms":1153.5665142673452,"throughput_eps":0,"last_update":"2026-03-21T19:45:43.965941723Z"} +2026/03/21 19:45:48 [detection_layer] {"stage_name":"detection_layer","events_processed":199,"events_dropped":0,"avg_latency_ms":15.080757055021875,"throughput_eps":0,"last_update":"2026-03-21T19:45:43.96589324Z"} +2026/03/21 19:45:48 [log_collector] {"stage_name":"log_collector","events_processed":10985,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2197,"last_update":"2026-03-21T19:45:43.869756921Z"} +2026/03/21 19:45:48 ───────────────────────────────────────────────── +2026/03/21 19:45:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:45:53 [log_collector] {"stage_name":"log_collector","events_processed":11000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2200,"last_update":"2026-03-21T19:45:48.869464427Z"} +2026/03/21 19:45:53 [metric_collector] {"stage_name":"metric_collector","events_processed":5999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1199.8,"last_update":"2026-03-21T19:45:48.869836289Z"} +2026/03/21 19:45:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2402,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:45:48.875431718Z"} +2026/03/21 19:45:53 [transform_engine] {"stage_name":"transform_engine","events_processed":200,"events_dropped":0,"avg_latency_ms":1137.5840074138762,"throughput_eps":0,"last_update":"2026-03-21T19:45:50.039165074Z"} +2026/03/21 19:45:53 [detection_layer] {"stage_name":"detection_layer","events_processed":199,"events_dropped":0,"avg_latency_ms":15.080757055021875,"throughput_eps":0,"last_update":"2026-03-21T19:45:48.965459274Z"} +2026/03/21 19:45:53 ───────────────────────────────────────────────── +2026/03/21 19:45:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:45:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:45:53.878157214Z"} +2026/03/21 19:45:58 [transform_engine] {"stage_name":"transform_engine","events_processed":200,"events_dropped":0,"avg_latency_ms":1137.5840074138762,"throughput_eps":0,"last_update":"2026-03-21T19:45:53.965585268Z"} +2026/03/21 19:45:58 [detection_layer] {"stage_name":"detection_layer","events_processed":200,"events_dropped":0,"avg_latency_ms":14.701857644017501,"throughput_eps":0,"last_update":"2026-03-21T19:45:53.96561188Z"} +2026/03/21 19:45:58 [log_collector] {"stage_name":"log_collector","events_processed":11002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2200.4,"last_update":"2026-03-21T19:45:53.87017339Z"} +2026/03/21 19:45:58 [metric_collector] {"stage_name":"metric_collector","events_processed":6003,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1200.6,"last_update":"2026-03-21T19:45:53.870205441Z"} +2026/03/21 19:45:58 ───────────────────────────────────────────────── +2026/03/21 19:46:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:46:03 [detection_layer] {"stage_name":"detection_layer","events_processed":200,"events_dropped":0,"avg_latency_ms":14.701857644017501,"throughput_eps":0,"last_update":"2026-03-21T19:45:58.966247093Z"} +2026/03/21 19:46:03 [log_collector] {"stage_name":"log_collector","events_processed":11002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2200.4,"last_update":"2026-03-21T19:45:58.869902597Z"} +2026/03/21 19:46:03 [metric_collector] {"stage_name":"metric_collector","events_processed":6009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1201.8,"last_update":"2026-03-21T19:45:58.870328923Z"} +2026/03/21 19:46:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:45:58.878982229Z"} +2026/03/21 19:46:03 [transform_engine] {"stage_name":"transform_engine","events_processed":200,"events_dropped":0,"avg_latency_ms":1137.5840074138762,"throughput_eps":0,"last_update":"2026-03-21T19:45:58.965122669Z"} +2026/03/21 19:46:03 ───────────────────────────────────────────────── +2026/03/21 19:46:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:46:08 [log_collector] {"stage_name":"log_collector","events_processed":11002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2200.4,"last_update":"2026-03-21T19:46:03.869533884Z"} +2026/03/21 19:46:08 [metric_collector] {"stage_name":"metric_collector","events_processed":6014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1202.8,"last_update":"2026-03-21T19:46:03.869806607Z"} +2026/03/21 19:46:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2408,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:46:03.878328471Z"} +2026/03/21 19:46:08 [transform_engine] {"stage_name":"transform_engine","events_processed":200,"events_dropped":0,"avg_latency_ms":1137.5840074138762,"throughput_eps":0,"last_update":"2026-03-21T19:46:03.965572665Z"} +2026/03/21 19:46:08 [detection_layer] {"stage_name":"detection_layer","events_processed":200,"events_dropped":0,"avg_latency_ms":14.701857644017501,"throughput_eps":0,"last_update":"2026-03-21T19:46:03.965561232Z"} +2026/03/21 19:46:08 ───────────────────────────────────────────────── +2026/03/21 19:46:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:46:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:46:08.880609625Z"} +2026/03/21 19:46:13 [transform_engine] {"stage_name":"transform_engine","events_processed":200,"events_dropped":0,"avg_latency_ms":1137.5840074138762,"throughput_eps":0,"last_update":"2026-03-21T19:46:08.96580288Z"} +2026/03/21 19:46:13 [detection_layer] {"stage_name":"detection_layer","events_processed":200,"events_dropped":0,"avg_latency_ms":14.701857644017501,"throughput_eps":0,"last_update":"2026-03-21T19:46:08.965796167Z"} +2026/03/21 19:46:13 [log_collector] {"stage_name":"log_collector","events_processed":11002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2200.4,"last_update":"2026-03-21T19:46:08.86978547Z"} +2026/03/21 19:46:13 [metric_collector] {"stage_name":"metric_collector","events_processed":6019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1203.8,"last_update":"2026-03-21T19:46:08.870239971Z"} +2026/03/21 19:46:13 ───────────────────────────────────────────────── +2026/03/21 19:46:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:46:18 [log_collector] {"stage_name":"log_collector","events_processed":11002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2200.4,"last_update":"2026-03-21T19:46:13.869920954Z"} +2026/03/21 19:46:18 [metric_collector] {"stage_name":"metric_collector","events_processed":6024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1204.8,"last_update":"2026-03-21T19:46:13.870413287Z"} +2026/03/21 19:46:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:46:13.879170262Z"} +2026/03/21 19:46:18 [transform_engine] {"stage_name":"transform_engine","events_processed":200,"events_dropped":0,"avg_latency_ms":1137.5840074138762,"throughput_eps":0,"last_update":"2026-03-21T19:46:13.965430671Z"} +2026/03/21 19:46:18 [detection_layer] {"stage_name":"detection_layer","events_processed":200,"events_dropped":0,"avg_latency_ms":14.701857644017501,"throughput_eps":0,"last_update":"2026-03-21T19:46:13.965420661Z"} +2026/03/21 19:46:18 ───────────────────────────────────────────────── +2026/03/21 19:46:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:46:23 [log_collector] {"stage_name":"log_collector","events_processed":11002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2200.4,"last_update":"2026-03-21T19:46:18.869990541Z"} +2026/03/21 19:46:23 [metric_collector] {"stage_name":"metric_collector","events_processed":6029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1205.8,"last_update":"2026-03-21T19:46:18.87047002Z"} +2026/03/21 19:46:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:46:18.878415159Z"} +2026/03/21 19:46:23 [transform_engine] {"stage_name":"transform_engine","events_processed":201,"events_dropped":0,"avg_latency_ms":932.3047237311009,"throughput_eps":0,"last_update":"2026-03-21T19:46:19.076937083Z"} +2026/03/21 19:46:23 [detection_layer] {"stage_name":"detection_layer","events_processed":200,"events_dropped":0,"avg_latency_ms":14.701857644017501,"throughput_eps":0,"last_update":"2026-03-21T19:46:18.965735598Z"} +2026/03/21 19:46:23 ───────────────────────────────────────────────── +2026/03/21 19:46:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:46:28 [detection_layer] {"stage_name":"detection_layer","events_processed":201,"events_dropped":0,"avg_latency_ms":15.885073315214001,"throughput_eps":0,"last_update":"2026-03-21T19:46:23.965600043Z"} +2026/03/21 19:46:28 [log_collector] {"stage_name":"log_collector","events_processed":11002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2200.4,"last_update":"2026-03-21T19:46:23.869451684Z"} +2026/03/21 19:46:28 [metric_collector] {"stage_name":"metric_collector","events_processed":6034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1206.8,"last_update":"2026-03-21T19:46:23.869917086Z"} +2026/03/21 19:46:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:46:23.88028163Z"} +2026/03/21 19:46:28 [transform_engine] {"stage_name":"transform_engine","events_processed":201,"events_dropped":0,"avg_latency_ms":932.3047237311009,"throughput_eps":0,"last_update":"2026-03-21T19:46:23.965713651Z"} +2026/03/21 19:46:28 ───────────────────────────────────────────────── +2026/03/21 19:46:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:46:33 [log_collector] {"stage_name":"log_collector","events_processed":11002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2200.4,"last_update":"2026-03-21T19:46:28.869847707Z"} +2026/03/21 19:46:33 [metric_collector] {"stage_name":"metric_collector","events_processed":6039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1207.8,"last_update":"2026-03-21T19:46:28.870368575Z"} +2026/03/21 19:46:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:46:28.878585946Z"} +2026/03/21 19:46:33 [transform_engine] {"stage_name":"transform_engine","events_processed":201,"events_dropped":0,"avg_latency_ms":932.3047237311009,"throughput_eps":0,"last_update":"2026-03-21T19:46:28.965780543Z"} +2026/03/21 19:46:33 [detection_layer] {"stage_name":"detection_layer","events_processed":201,"events_dropped":0,"avg_latency_ms":15.885073315214001,"throughput_eps":0,"last_update":"2026-03-21T19:46:28.965811231Z"} +2026/03/21 19:46:33 ───────────────────────────────────────────────── +2026/03/21 19:46:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:46:38 [log_collector] {"stage_name":"log_collector","events_processed":11002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2200.4,"last_update":"2026-03-21T19:46:33.869732971Z"} +2026/03/21 19:46:38 [metric_collector] {"stage_name":"metric_collector","events_processed":6044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1208.8,"last_update":"2026-03-21T19:46:33.869841929Z"} +2026/03/21 19:46:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2420,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:46:33.878702312Z"} +2026/03/21 19:46:38 [transform_engine] {"stage_name":"transform_engine","events_processed":201,"events_dropped":0,"avg_latency_ms":932.3047237311009,"throughput_eps":0,"last_update":"2026-03-21T19:46:33.965919312Z"} +2026/03/21 19:46:38 [detection_layer] {"stage_name":"detection_layer","events_processed":201,"events_dropped":0,"avg_latency_ms":15.885073315214001,"throughput_eps":0,"last_update":"2026-03-21T19:46:33.965892882Z"} +2026/03/21 19:46:38 ───────────────────────────────────────────────── +2026/03/21 19:46:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:46:43 [detection_layer] {"stage_name":"detection_layer","events_processed":201,"events_dropped":0,"avg_latency_ms":15.885073315214001,"throughput_eps":0,"last_update":"2026-03-21T19:46:38.965389963Z"} +2026/03/21 19:46:43 [log_collector] {"stage_name":"log_collector","events_processed":11002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2200.4,"last_update":"2026-03-21T19:46:38.869929381Z"} +2026/03/21 19:46:43 [metric_collector] {"stage_name":"metric_collector","events_processed":6049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1209.8,"last_update":"2026-03-21T19:46:38.87032576Z"} +2026/03/21 19:46:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:46:38.879056184Z"} +2026/03/21 19:46:43 [transform_engine] {"stage_name":"transform_engine","events_processed":201,"events_dropped":0,"avg_latency_ms":932.3047237311009,"throughput_eps":0,"last_update":"2026-03-21T19:46:38.965408618Z"} +2026/03/21 19:46:43 ───────────────────────────────────────────────── +2026/03/21 19:46:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:46:48 [log_collector] {"stage_name":"log_collector","events_processed":11002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2200.4,"last_update":"2026-03-21T19:46:43.869431263Z"} +2026/03/21 19:46:48 [metric_collector] {"stage_name":"metric_collector","events_processed":6054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1210.8,"last_update":"2026-03-21T19:46:43.869955727Z"} +2026/03/21 19:46:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:46:43.878792775Z"} +2026/03/21 19:46:48 [transform_engine] {"stage_name":"transform_engine","events_processed":201,"events_dropped":0,"avg_latency_ms":932.3047237311009,"throughput_eps":0,"last_update":"2026-03-21T19:46:43.966014795Z"} +2026/03/21 19:46:48 [detection_layer] {"stage_name":"detection_layer","events_processed":201,"events_dropped":0,"avg_latency_ms":15.885073315214001,"throughput_eps":0,"last_update":"2026-03-21T19:46:43.965968606Z"} +2026/03/21 19:46:48 ───────────────────────────────────────────────── +2026/03/21 19:46:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:46:53 [log_collector] {"stage_name":"log_collector","events_processed":11002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2200.4,"last_update":"2026-03-21T19:46:48.869415057Z"} +2026/03/21 19:46:53 [metric_collector] {"stage_name":"metric_collector","events_processed":6058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1211.6,"last_update":"2026-03-21T19:46:48.869477217Z"} +2026/03/21 19:46:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:46:48.878621273Z"} +2026/03/21 19:46:53 [transform_engine] {"stage_name":"transform_engine","events_processed":201,"events_dropped":0,"avg_latency_ms":932.3047237311009,"throughput_eps":0,"last_update":"2026-03-21T19:46:48.965818775Z"} +2026/03/21 19:46:53 [detection_layer] {"stage_name":"detection_layer","events_processed":201,"events_dropped":0,"avg_latency_ms":15.885073315214001,"throughput_eps":0,"last_update":"2026-03-21T19:46:48.965903237Z"} +2026/03/21 19:46:53 ───────────────────────────────────────────────── +2026/03/21 19:46:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:46:58 [transform_engine] {"stage_name":"transform_engine","events_processed":202,"events_dropped":0,"avg_latency_ms":760.0359229848808,"throughput_eps":0,"last_update":"2026-03-21T19:46:53.965444375Z"} +2026/03/21 19:46:58 [detection_layer] {"stage_name":"detection_layer","events_processed":202,"events_dropped":0,"avg_latency_ms":16.5651050521712,"throughput_eps":0,"last_update":"2026-03-21T19:46:53.965405691Z"} +2026/03/21 19:46:58 [log_collector] {"stage_name":"log_collector","events_processed":11002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2200.4,"last_update":"2026-03-21T19:46:53.870507336Z"} +2026/03/21 19:46:58 [metric_collector] {"stage_name":"metric_collector","events_processed":6064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1212.8,"last_update":"2026-03-21T19:46:53.870967468Z"} +2026/03/21 19:46:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:46:53.879189278Z"} +2026/03/21 19:46:58 ───────────────────────────────────────────────── +Saved state: 12 clusters, 11003 messages, reason: none +2026/03/21 19:47:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:47:03 [metric_collector] {"stage_name":"metric_collector","events_processed":6069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1213.8,"last_update":"2026-03-21T19:46:58.870629758Z"} +2026/03/21 19:47:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:46:58.879937168Z"} +2026/03/21 19:47:03 [transform_engine] {"stage_name":"transform_engine","events_processed":202,"events_dropped":0,"avg_latency_ms":760.0359229848808,"throughput_eps":0,"last_update":"2026-03-21T19:46:58.966007621Z"} +2026/03/21 19:47:03 [detection_layer] {"stage_name":"detection_layer","events_processed":202,"events_dropped":0,"avg_latency_ms":16.5651050521712,"throughput_eps":0,"last_update":"2026-03-21T19:46:58.966198698Z"} +2026/03/21 19:47:03 [log_collector] {"stage_name":"log_collector","events_processed":11002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2200.4,"last_update":"2026-03-21T19:46:58.870092028Z"} +2026/03/21 19:47:03 ───────────────────────────────────────────────── +2026/03/21 19:47:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:47:08 [metric_collector] {"stage_name":"metric_collector","events_processed":6074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1214.8,"last_update":"2026-03-21T19:47:03.870506181Z"} +2026/03/21 19:47:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:47:03.876876794Z"} +2026/03/21 19:47:08 [transform_engine] {"stage_name":"transform_engine","events_processed":202,"events_dropped":0,"avg_latency_ms":760.0359229848808,"throughput_eps":0,"last_update":"2026-03-21T19:47:03.966093133Z"} +2026/03/21 19:47:08 [detection_layer] {"stage_name":"detection_layer","events_processed":202,"events_dropped":0,"avg_latency_ms":16.5651050521712,"throughput_eps":0,"last_update":"2026-03-21T19:47:03.966118431Z"} +2026/03/21 19:47:08 [log_collector] {"stage_name":"log_collector","events_processed":11015,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2203,"last_update":"2026-03-21T19:47:03.870033355Z"} +2026/03/21 19:47:08 ───────────────────────────────────────────────── +2026/03/21 19:47:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:47:13 [transform_engine] {"stage_name":"transform_engine","events_processed":202,"events_dropped":0,"avg_latency_ms":760.0359229848808,"throughput_eps":0,"last_update":"2026-03-21T19:47:08.965905824Z"} +2026/03/21 19:47:13 [detection_layer] {"stage_name":"detection_layer","events_processed":202,"events_dropped":0,"avg_latency_ms":16.5651050521712,"throughput_eps":0,"last_update":"2026-03-21T19:47:08.966022047Z"} +2026/03/21 19:47:13 [log_collector] {"stage_name":"log_collector","events_processed":11016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2203.2,"last_update":"2026-03-21T19:47:08.869702873Z"} +2026/03/21 19:47:13 [metric_collector] {"stage_name":"metric_collector","events_processed":6079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1215.8,"last_update":"2026-03-21T19:47:08.869755994Z"} +2026/03/21 19:47:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:47:08.878568565Z"} +2026/03/21 19:47:13 ───────────────────────────────────────────────── +2026/03/21 19:47:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:47:18 [detection_layer] {"stage_name":"detection_layer","events_processed":202,"events_dropped":0,"avg_latency_ms":16.5651050521712,"throughput_eps":0,"last_update":"2026-03-21T19:47:13.96561154Z"} +2026/03/21 19:47:18 [log_collector] {"stage_name":"log_collector","events_processed":11016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2203.2,"last_update":"2026-03-21T19:47:13.870131353Z"} +2026/03/21 19:47:18 [metric_collector] {"stage_name":"metric_collector","events_processed":6084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1216.8,"last_update":"2026-03-21T19:47:13.870421118Z"} +2026/03/21 19:47:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:47:13.879246153Z"} +2026/03/21 19:47:18 [transform_engine] {"stage_name":"transform_engine","events_processed":202,"events_dropped":0,"avg_latency_ms":760.0359229848808,"throughput_eps":0,"last_update":"2026-03-21T19:47:13.965581102Z"} +2026/03/21 19:47:18 ───────────────────────────────────────────────── +2026/03/21 19:47:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:47:23 [log_collector] {"stage_name":"log_collector","events_processed":11016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2203.2,"last_update":"2026-03-21T19:47:18.869923836Z"} +2026/03/21 19:47:23 [metric_collector] {"stage_name":"metric_collector","events_processed":6089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1217.8,"last_update":"2026-03-21T19:47:18.870258416Z"} +2026/03/21 19:47:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:47:18.879438091Z"} +2026/03/21 19:47:23 [transform_engine] {"stage_name":"transform_engine","events_processed":203,"events_dropped":0,"avg_latency_ms":630.5752895879046,"throughput_eps":0,"last_update":"2026-03-21T19:47:19.078526435Z"} +2026/03/21 19:47:23 [detection_layer] {"stage_name":"detection_layer","events_processed":202,"events_dropped":0,"avg_latency_ms":16.5651050521712,"throughput_eps":0,"last_update":"2026-03-21T19:47:18.965773751Z"} +2026/03/21 19:47:23 ───────────────────────────────────────────────── +2026/03/21 19:47:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:47:28 [log_collector] {"stage_name":"log_collector","events_processed":11016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2203.2,"last_update":"2026-03-21T19:47:23.869865384Z"} +2026/03/21 19:47:28 [metric_collector] {"stage_name":"metric_collector","events_processed":6094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1218.8,"last_update":"2026-03-21T19:47:23.870240703Z"} +2026/03/21 19:47:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:47:23.878788597Z"} +2026/03/21 19:47:28 [transform_engine] {"stage_name":"transform_engine","events_processed":203,"events_dropped":0,"avg_latency_ms":630.5752895879046,"throughput_eps":0,"last_update":"2026-03-21T19:47:23.965963135Z"} +2026/03/21 19:47:28 [detection_layer] {"stage_name":"detection_layer","events_processed":203,"events_dropped":0,"avg_latency_ms":16.888996641736963,"throughput_eps":0,"last_update":"2026-03-21T19:47:23.966007089Z"} +2026/03/21 19:47:28 ───────────────────────────────────────────────── +2026/03/21 19:47:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:47:33 [transform_engine] {"stage_name":"transform_engine","events_processed":203,"events_dropped":0,"avg_latency_ms":630.5752895879046,"throughput_eps":0,"last_update":"2026-03-21T19:47:28.965816198Z"} +2026/03/21 19:47:33 [detection_layer] {"stage_name":"detection_layer","events_processed":203,"events_dropped":0,"avg_latency_ms":16.888996641736963,"throughput_eps":0,"last_update":"2026-03-21T19:47:28.965711739Z"} +2026/03/21 19:47:33 [log_collector] {"stage_name":"log_collector","events_processed":11016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2203.2,"last_update":"2026-03-21T19:47:28.870030206Z"} +2026/03/21 19:47:33 [metric_collector] {"stage_name":"metric_collector","events_processed":6099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1219.8,"last_update":"2026-03-21T19:47:28.870526226Z"} +2026/03/21 19:47:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2442,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:47:28.878521882Z"} +2026/03/21 19:47:33 ───────────────────────────────────────────────── +2026/03/21 19:47:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:47:38 [log_collector] {"stage_name":"log_collector","events_processed":11016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2203.2,"last_update":"2026-03-21T19:47:33.869702514Z"} +2026/03/21 19:47:38 [metric_collector] {"stage_name":"metric_collector","events_processed":6104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1220.8,"last_update":"2026-03-21T19:47:33.869916234Z"} +2026/03/21 19:47:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:47:33.880051798Z"} +2026/03/21 19:47:38 [transform_engine] {"stage_name":"transform_engine","events_processed":203,"events_dropped":0,"avg_latency_ms":630.5752895879046,"throughput_eps":0,"last_update":"2026-03-21T19:47:33.96526533Z"} +2026/03/21 19:47:38 [detection_layer] {"stage_name":"detection_layer","events_processed":203,"events_dropped":0,"avg_latency_ms":16.888996641736963,"throughput_eps":0,"last_update":"2026-03-21T19:47:33.965301318Z"} +2026/03/21 19:47:38 ───────────────────────────────────────────────── +2026/03/21 19:47:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:47:43 [log_collector] {"stage_name":"log_collector","events_processed":11016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2203.2,"last_update":"2026-03-21T19:47:38.869396016Z"} +2026/03/21 19:47:43 [metric_collector] {"stage_name":"metric_collector","events_processed":6109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1221.8,"last_update":"2026-03-21T19:47:38.869764932Z"} +2026/03/21 19:47:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2446,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:47:38.878705799Z"} +2026/03/21 19:47:43 [transform_engine] {"stage_name":"transform_engine","events_processed":203,"events_dropped":0,"avg_latency_ms":630.5752895879046,"throughput_eps":0,"last_update":"2026-03-21T19:47:38.96588269Z"} +2026/03/21 19:47:43 [detection_layer] {"stage_name":"detection_layer","events_processed":203,"events_dropped":0,"avg_latency_ms":16.888996641736963,"throughput_eps":0,"last_update":"2026-03-21T19:47:38.966009454Z"} +2026/03/21 19:47:43 ───────────────────────────────────────────────── +2026/03/21 19:47:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:47:48 [log_collector] {"stage_name":"log_collector","events_processed":11016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2203.2,"last_update":"2026-03-21T19:47:43.869408236Z"} +2026/03/21 19:47:48 [metric_collector] {"stage_name":"metric_collector","events_processed":6114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1222.8,"last_update":"2026-03-21T19:47:43.869876974Z"} +2026/03/21 19:47:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:47:43.879105742Z"} +2026/03/21 19:47:48 [transform_engine] {"stage_name":"transform_engine","events_processed":203,"events_dropped":0,"avg_latency_ms":630.5752895879046,"throughput_eps":0,"last_update":"2026-03-21T19:47:43.965531124Z"} +2026/03/21 19:47:48 [detection_layer] {"stage_name":"detection_layer","events_processed":203,"events_dropped":0,"avg_latency_ms":16.888996641736963,"throughput_eps":0,"last_update":"2026-03-21T19:47:43.965408319Z"} +2026/03/21 19:47:48 ───────────────────────────────────────────────── +2026/03/21 19:47:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:47:53 [log_collector] {"stage_name":"log_collector","events_processed":11016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2203.2,"last_update":"2026-03-21T19:47:48.870080614Z"} +2026/03/21 19:47:53 [metric_collector] {"stage_name":"metric_collector","events_processed":6119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1223.8,"last_update":"2026-03-21T19:47:48.870547097Z"} +2026/03/21 19:47:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:47:48.878940766Z"} +2026/03/21 19:47:53 [transform_engine] {"stage_name":"transform_engine","events_processed":203,"events_dropped":0,"avg_latency_ms":630.5752895879046,"throughput_eps":0,"last_update":"2026-03-21T19:47:48.965073808Z"} +2026/03/21 19:47:53 [detection_layer] {"stage_name":"detection_layer","events_processed":203,"events_dropped":0,"avg_latency_ms":16.888996641736963,"throughput_eps":0,"last_update":"2026-03-21T19:47:48.965459767Z"} +2026/03/21 19:47:53 ───────────────────────────────────────────────── +2026/03/21 19:47:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:47:58 [transform_engine] {"stage_name":"transform_engine","events_processed":204,"events_dropped":0,"avg_latency_ms":517.9125642703237,"throughput_eps":0,"last_update":"2026-03-21T19:47:53.966077602Z"} +2026/03/21 19:47:58 [detection_layer] {"stage_name":"detection_layer","events_processed":204,"events_dropped":0,"avg_latency_ms":17.56786771338957,"throughput_eps":0,"last_update":"2026-03-21T19:47:53.966098632Z"} +2026/03/21 19:47:58 [log_collector] {"stage_name":"log_collector","events_processed":11016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2203.2,"last_update":"2026-03-21T19:47:53.869631285Z"} +2026/03/21 19:47:58 [metric_collector] {"stage_name":"metric_collector","events_processed":6124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1224.8,"last_update":"2026-03-21T19:47:53.869715656Z"} +2026/03/21 19:47:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2452,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:47:53.877880667Z"} +2026/03/21 19:47:58 ───────────────────────────────────────────────── +2026/03/21 19:48:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:48:03 [detection_layer] {"stage_name":"detection_layer","events_processed":204,"events_dropped":0,"avg_latency_ms":17.56786771338957,"throughput_eps":0,"last_update":"2026-03-21T19:47:58.965889407Z"} +2026/03/21 19:48:03 [log_collector] {"stage_name":"log_collector","events_processed":11016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2203.2,"last_update":"2026-03-21T19:47:58.869894054Z"} +2026/03/21 19:48:03 [metric_collector] {"stage_name":"metric_collector","events_processed":6129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1225.8,"last_update":"2026-03-21T19:47:58.870411664Z"} +2026/03/21 19:48:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:47:58.878541097Z"} +2026/03/21 19:48:03 [transform_engine] {"stage_name":"transform_engine","events_processed":204,"events_dropped":0,"avg_latency_ms":517.9125642703237,"throughput_eps":0,"last_update":"2026-03-21T19:47:58.965940645Z"} +2026/03/21 19:48:03 ───────────────────────────────────────────────── +Saved state: 12 clusters, 11017 messages, reason: none +2026/03/21 19:48:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:48:08 [log_collector] {"stage_name":"log_collector","events_processed":11016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2203.2,"last_update":"2026-03-21T19:48:03.870555907Z"} +2026/03/21 19:48:08 [metric_collector] {"stage_name":"metric_collector","events_processed":6134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1226.8,"last_update":"2026-03-21T19:48:03.870717096Z"} +2026/03/21 19:48:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:48:03.879454273Z"} +2026/03/21 19:48:08 [transform_engine] {"stage_name":"transform_engine","events_processed":204,"events_dropped":0,"avg_latency_ms":517.9125642703237,"throughput_eps":0,"last_update":"2026-03-21T19:48:03.965781736Z"} +2026/03/21 19:48:08 [detection_layer] {"stage_name":"detection_layer","events_processed":204,"events_dropped":0,"avg_latency_ms":17.56786771338957,"throughput_eps":0,"last_update":"2026-03-21T19:48:03.965667427Z"} +2026/03/21 19:48:08 ───────────────────────────────────────────────── +2026/03/21 19:48:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:48:13 [log_collector] {"stage_name":"log_collector","events_processed":11021,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2204.2,"last_update":"2026-03-21T19:48:08.869391696Z"} +2026/03/21 19:48:13 [metric_collector] {"stage_name":"metric_collector","events_processed":6139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1227.8,"last_update":"2026-03-21T19:48:08.869802001Z"} +2026/03/21 19:48:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:48:08.876448423Z"} +2026/03/21 19:48:13 [transform_engine] {"stage_name":"transform_engine","events_processed":204,"events_dropped":0,"avg_latency_ms":517.9125642703237,"throughput_eps":0,"last_update":"2026-03-21T19:48:08.965611407Z"} +2026/03/21 19:48:13 [detection_layer] {"stage_name":"detection_layer","events_processed":204,"events_dropped":0,"avg_latency_ms":17.56786771338957,"throughput_eps":0,"last_update":"2026-03-21T19:48:08.965628811Z"} +2026/03/21 19:48:13 ───────────────────────────────────────────────── +2026/03/21 19:48:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:48:18 [metric_collector] {"stage_name":"metric_collector","events_processed":6149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1229.8,"last_update":"2026-03-21T19:48:18.869686241Z"} +2026/03/21 19:48:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:48:13.875602412Z"} +2026/03/21 19:48:18 [transform_engine] {"stage_name":"transform_engine","events_processed":204,"events_dropped":0,"avg_latency_ms":517.9125642703237,"throughput_eps":0,"last_update":"2026-03-21T19:48:13.965781504Z"} +2026/03/21 19:48:18 [detection_layer] {"stage_name":"detection_layer","events_processed":204,"events_dropped":0,"avg_latency_ms":17.56786771338957,"throughput_eps":0,"last_update":"2026-03-21T19:48:13.965764721Z"} +2026/03/21 19:48:18 [log_collector] {"stage_name":"log_collector","events_processed":11021,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2204.2,"last_update":"2026-03-21T19:48:13.869595495Z"} +2026/03/21 19:48:18 ───────────────────────────────────────────────── +2026/03/21 19:48:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:48:23 [metric_collector] {"stage_name":"metric_collector","events_processed":6149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1229.8,"last_update":"2026-03-21T19:48:18.869686241Z"} +2026/03/21 19:48:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:48:18.879220375Z"} +2026/03/21 19:48:23 [transform_engine] {"stage_name":"transform_engine","events_processed":205,"events_dropped":0,"avg_latency_ms":904.3802978162589,"throughput_eps":0,"last_update":"2026-03-21T19:48:21.41574194Z"} +2026/03/21 19:48:23 [detection_layer] {"stage_name":"detection_layer","events_processed":204,"events_dropped":0,"avg_latency_ms":17.56786771338957,"throughput_eps":0,"last_update":"2026-03-21T19:48:18.96547648Z"} +2026/03/21 19:48:23 [log_collector] {"stage_name":"log_collector","events_processed":11021,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2204.2,"last_update":"2026-03-21T19:48:18.869699657Z"} +2026/03/21 19:48:23 ───────────────────────────────────────────────── +2026/03/21 19:48:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:48:28 [log_collector] {"stage_name":"log_collector","events_processed":11021,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2204.2,"last_update":"2026-03-21T19:48:23.869890826Z"} +2026/03/21 19:48:28 [metric_collector] {"stage_name":"metric_collector","events_processed":6154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1230.8,"last_update":"2026-03-21T19:48:23.870228242Z"} +2026/03/21 19:48:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:48:23.880455474Z"} +2026/03/21 19:48:28 [transform_engine] {"stage_name":"transform_engine","events_processed":205,"events_dropped":0,"avg_latency_ms":904.3802978162589,"throughput_eps":0,"last_update":"2026-03-21T19:48:23.965624989Z"} +2026/03/21 19:48:28 [detection_layer] {"stage_name":"detection_layer","events_processed":205,"events_dropped":0,"avg_latency_ms":16.256821170711657,"throughput_eps":0,"last_update":"2026-03-21T19:48:23.965598899Z"} +2026/03/21 19:48:28 ───────────────────────────────────────────────── +2026/03/21 19:48:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:48:33 [transform_engine] {"stage_name":"transform_engine","events_processed":205,"events_dropped":0,"avg_latency_ms":904.3802978162589,"throughput_eps":0,"last_update":"2026-03-21T19:48:28.965985976Z"} +2026/03/21 19:48:33 [detection_layer] {"stage_name":"detection_layer","events_processed":205,"events_dropped":0,"avg_latency_ms":16.256821170711657,"throughput_eps":0,"last_update":"2026-03-21T19:48:28.965974474Z"} +2026/03/21 19:48:33 [log_collector] {"stage_name":"log_collector","events_processed":11021,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2204.2,"last_update":"2026-03-21T19:48:33.869835675Z"} +2026/03/21 19:48:33 [metric_collector] {"stage_name":"metric_collector","events_processed":6159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1231.8,"last_update":"2026-03-21T19:48:28.869786874Z"} +2026/03/21 19:48:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:48:28.878795791Z"} +2026/03/21 19:48:33 ───────────────────────────────────────────────── +2026/03/21 19:48:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:48:38 [detection_layer] {"stage_name":"detection_layer","events_processed":205,"events_dropped":0,"avg_latency_ms":16.256821170711657,"throughput_eps":0,"last_update":"2026-03-21T19:48:33.965855224Z"} +2026/03/21 19:48:38 [log_collector] {"stage_name":"log_collector","events_processed":11021,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2204.2,"last_update":"2026-03-21T19:48:38.869488892Z"} +2026/03/21 19:48:38 [metric_collector] {"stage_name":"metric_collector","events_processed":6164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1232.8,"last_update":"2026-03-21T19:48:33.870204071Z"} +2026/03/21 19:48:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:48:33.879702856Z"} +2026/03/21 19:48:38 [transform_engine] {"stage_name":"transform_engine","events_processed":205,"events_dropped":0,"avg_latency_ms":904.3802978162589,"throughput_eps":0,"last_update":"2026-03-21T19:48:33.965866575Z"} +2026/03/21 19:48:38 ───────────────────────────────────────────────── +2026/03/21 19:48:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:48:43 [transform_engine] {"stage_name":"transform_engine","events_processed":205,"events_dropped":0,"avg_latency_ms":904.3802978162589,"throughput_eps":0,"last_update":"2026-03-21T19:48:38.965341851Z"} +2026/03/21 19:48:43 [detection_layer] {"stage_name":"detection_layer","events_processed":205,"events_dropped":0,"avg_latency_ms":16.256821170711657,"throughput_eps":0,"last_update":"2026-03-21T19:48:38.965328896Z"} +2026/03/21 19:48:43 [log_collector] {"stage_name":"log_collector","events_processed":11021,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2204.2,"last_update":"2026-03-21T19:48:43.870558114Z"} +2026/03/21 19:48:43 [metric_collector] {"stage_name":"metric_collector","events_processed":6169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1233.8,"last_update":"2026-03-21T19:48:38.869719183Z"} +2026/03/21 19:48:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2470,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:48:38.875138283Z"} +2026/03/21 19:48:43 ───────────────────────────────────────────────── +2026/03/21 19:48:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:48:48 [log_collector] {"stage_name":"log_collector","events_processed":11024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2204.8,"last_update":"2026-03-21T19:48:48.869421664Z"} +2026/03/21 19:48:48 [metric_collector] {"stage_name":"metric_collector","events_processed":6174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1234.8,"last_update":"2026-03-21T19:48:43.870778886Z"} +2026/03/21 19:48:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:48:43.877774407Z"} +2026/03/21 19:48:48 [transform_engine] {"stage_name":"transform_engine","events_processed":205,"events_dropped":0,"avg_latency_ms":904.3802978162589,"throughput_eps":0,"last_update":"2026-03-21T19:48:43.965971451Z"} +2026/03/21 19:48:48 [detection_layer] {"stage_name":"detection_layer","events_processed":205,"events_dropped":0,"avg_latency_ms":16.256821170711657,"throughput_eps":0,"last_update":"2026-03-21T19:48:43.96596014Z"} +2026/03/21 19:48:48 ───────────────────────────────────────────────── +2026/03/21 19:48:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:48:53 [log_collector] {"stage_name":"log_collector","events_processed":11024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2204.8,"last_update":"2026-03-21T19:48:48.869421664Z"} +2026/03/21 19:48:53 [metric_collector] {"stage_name":"metric_collector","events_processed":6179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1235.8,"last_update":"2026-03-21T19:48:48.869864733Z"} +2026/03/21 19:48:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:48:48.877105392Z"} +2026/03/21 19:48:53 [transform_engine] {"stage_name":"transform_engine","events_processed":206,"events_dropped":0,"avg_latency_ms":898.4395736530072,"throughput_eps":0,"last_update":"2026-03-21T19:48:49.839968363Z"} +2026/03/21 19:48:53 [detection_layer] {"stage_name":"detection_layer","events_processed":205,"events_dropped":0,"avg_latency_ms":16.256821170711657,"throughput_eps":0,"last_update":"2026-03-21T19:48:48.965276977Z"} +2026/03/21 19:48:53 ───────────────────────────────────────────────── +2026/03/21 19:48:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:48:58 [log_collector] {"stage_name":"log_collector","events_processed":11118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2223.6,"last_update":"2026-03-21T19:48:58.869632747Z"} +2026/03/21 19:48:58 [metric_collector] {"stage_name":"metric_collector","events_processed":6184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1236.8,"last_update":"2026-03-21T19:48:53.870583839Z"} +2026/03/21 19:48:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2476,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:48:53.879313831Z"} +2026/03/21 19:48:58 [transform_engine] {"stage_name":"transform_engine","events_processed":206,"events_dropped":0,"avg_latency_ms":898.4395736530072,"throughput_eps":0,"last_update":"2026-03-21T19:48:53.965508098Z"} +2026/03/21 19:48:58 [detection_layer] {"stage_name":"detection_layer","events_processed":206,"events_dropped":0,"avg_latency_ms":15.564352536569325,"throughput_eps":0,"last_update":"2026-03-21T19:48:53.96549851Z"} +2026/03/21 19:48:58 ───────────────────────────────────────────────── +2026/03/21 19:49:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:49:03 [log_collector] {"stage_name":"log_collector","events_processed":11118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2223.6,"last_update":"2026-03-21T19:48:58.869632747Z"} +2026/03/21 19:49:03 [metric_collector] {"stage_name":"metric_collector","events_processed":6189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1237.8,"last_update":"2026-03-21T19:48:58.870007595Z"} +2026/03/21 19:49:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:48:58.87668171Z"} +2026/03/21 19:49:03 [transform_engine] {"stage_name":"transform_engine","events_processed":206,"events_dropped":0,"avg_latency_ms":898.4395736530072,"throughput_eps":0,"last_update":"2026-03-21T19:48:58.965521865Z"} +2026/03/21 19:49:03 [detection_layer] {"stage_name":"detection_layer","events_processed":206,"events_dropped":0,"avg_latency_ms":15.564352536569325,"throughput_eps":0,"last_update":"2026-03-21T19:48:58.96550894Z"} +2026/03/21 19:49:03 ───────────────────────────────────────────────── +2026/03/21 19:49:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:49:08 [log_collector] {"stage_name":"log_collector","events_processed":11284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2256.8,"last_update":"2026-03-21T19:49:03.869796175Z"} +2026/03/21 19:49:08 [metric_collector] {"stage_name":"metric_collector","events_processed":6194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1238.8,"last_update":"2026-03-21T19:49:03.870034571Z"} +2026/03/21 19:49:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2480,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:49:03.877257958Z"} +2026/03/21 19:49:08 [transform_engine] {"stage_name":"transform_engine","events_processed":206,"events_dropped":0,"avg_latency_ms":898.4395736530072,"throughput_eps":0,"last_update":"2026-03-21T19:49:03.965261501Z"} +2026/03/21 19:49:08 [detection_layer] {"stage_name":"detection_layer","events_processed":206,"events_dropped":0,"avg_latency_ms":15.564352536569325,"throughput_eps":0,"last_update":"2026-03-21T19:49:03.965268554Z"} +2026/03/21 19:49:08 ───────────────────────────────────────────────── +2026/03/21 19:49:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:49:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2482,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:49:08.878627438Z"} +2026/03/21 19:49:13 [transform_engine] {"stage_name":"transform_engine","events_processed":206,"events_dropped":0,"avg_latency_ms":898.4395736530072,"throughput_eps":0,"last_update":"2026-03-21T19:49:08.965991456Z"} +2026/03/21 19:49:13 [detection_layer] {"stage_name":"detection_layer","events_processed":206,"events_dropped":0,"avg_latency_ms":15.564352536569325,"throughput_eps":0,"last_update":"2026-03-21T19:49:08.965975466Z"} +2026/03/21 19:49:13 [log_collector] {"stage_name":"log_collector","events_processed":11382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2276.4,"last_update":"2026-03-21T19:49:08.869513501Z"} +2026/03/21 19:49:13 [metric_collector] {"stage_name":"metric_collector","events_processed":6199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1239.8,"last_update":"2026-03-21T19:49:08.869898357Z"} +2026/03/21 19:49:13 ───────────────────────────────────────────────── +2026/03/21 19:49:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:49:18 [metric_collector] {"stage_name":"metric_collector","events_processed":6204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1240.8,"last_update":"2026-03-21T19:49:13.869799018Z"} +2026/03/21 19:49:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:49:13.878903017Z"} +2026/03/21 19:49:18 [transform_engine] {"stage_name":"transform_engine","events_processed":206,"events_dropped":0,"avg_latency_ms":898.4395736530072,"throughput_eps":0,"last_update":"2026-03-21T19:49:13.966086619Z"} +2026/03/21 19:49:18 [detection_layer] {"stage_name":"detection_layer","events_processed":206,"events_dropped":0,"avg_latency_ms":15.564352536569325,"throughput_eps":0,"last_update":"2026-03-21T19:49:13.966078743Z"} +2026/03/21 19:49:18 [log_collector] {"stage_name":"log_collector","events_processed":11382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2276.4,"last_update":"2026-03-21T19:49:13.869421184Z"} +2026/03/21 19:49:18 ───────────────────────────────────────────────── +2026/03/21 19:49:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:49:23 [log_collector] {"stage_name":"log_collector","events_processed":11382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2276.4,"last_update":"2026-03-21T19:49:23.870060638Z"} +2026/03/21 19:49:23 [metric_collector] {"stage_name":"metric_collector","events_processed":6209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1241.8,"last_update":"2026-03-21T19:49:18.870322933Z"} +2026/03/21 19:49:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2486,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:49:18.880038915Z"} +2026/03/21 19:49:23 [transform_engine] {"stage_name":"transform_engine","events_processed":207,"events_dropped":0,"avg_latency_ms":1037.4644511224058,"throughput_eps":0,"last_update":"2026-03-21T19:49:20.558701783Z"} +2026/03/21 19:49:23 [detection_layer] {"stage_name":"detection_layer","events_processed":206,"events_dropped":0,"avg_latency_ms":15.564352536569325,"throughput_eps":0,"last_update":"2026-03-21T19:49:18.966416252Z"} +2026/03/21 19:49:23 ───────────────────────────────────────────────── +Saved state: 12 clusters, 11383 messages, reason: none +2026/03/21 19:49:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:49:28 [log_collector] {"stage_name":"log_collector","events_processed":11382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2276.4,"last_update":"2026-03-21T19:49:23.870060638Z"} +2026/03/21 19:49:28 [metric_collector] {"stage_name":"metric_collector","events_processed":6214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1242.8,"last_update":"2026-03-21T19:49:23.87079756Z"} +2026/03/21 19:49:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:49:23.878724414Z"} +2026/03/21 19:49:28 [transform_engine] {"stage_name":"transform_engine","events_processed":207,"events_dropped":0,"avg_latency_ms":1037.4644511224058,"throughput_eps":0,"last_update":"2026-03-21T19:49:23.96620277Z"} +2026/03/21 19:49:28 [detection_layer] {"stage_name":"detection_layer","events_processed":207,"events_dropped":0,"avg_latency_ms":16.04905942925546,"throughput_eps":0,"last_update":"2026-03-21T19:49:23.966191709Z"} +2026/03/21 19:49:28 ───────────────────────────────────────────────── +2026/03/21 19:49:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:49:33 [transform_engine] {"stage_name":"transform_engine","events_processed":207,"events_dropped":0,"avg_latency_ms":1037.4644511224058,"throughput_eps":0,"last_update":"2026-03-21T19:49:28.966033916Z"} +2026/03/21 19:49:33 [detection_layer] {"stage_name":"detection_layer","events_processed":207,"events_dropped":0,"avg_latency_ms":16.04905942925546,"throughput_eps":0,"last_update":"2026-03-21T19:49:28.966021282Z"} +2026/03/21 19:49:33 [log_collector] {"stage_name":"log_collector","events_processed":11385,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2277,"last_update":"2026-03-21T19:49:28.869398419Z"} +2026/03/21 19:49:33 [metric_collector] {"stage_name":"metric_collector","events_processed":6224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1244.8,"last_update":"2026-03-21T19:49:33.871639535Z"} +2026/03/21 19:49:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2490,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:49:28.878781774Z"} +2026/03/21 19:49:33 ───────────────────────────────────────────────── +2026/03/21 19:49:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:49:38 [log_collector] {"stage_name":"log_collector","events_processed":11396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2279.2,"last_update":"2026-03-21T19:49:38.869849661Z"} +2026/03/21 19:49:38 [metric_collector] {"stage_name":"metric_collector","events_processed":6224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1244.8,"last_update":"2026-03-21T19:49:33.871639535Z"} +2026/03/21 19:49:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:49:33.879155822Z"} +2026/03/21 19:49:38 [transform_engine] {"stage_name":"transform_engine","events_processed":207,"events_dropped":0,"avg_latency_ms":1037.4644511224058,"throughput_eps":0,"last_update":"2026-03-21T19:49:33.965336653Z"} +2026/03/21 19:49:38 [detection_layer] {"stage_name":"detection_layer","events_processed":207,"events_dropped":0,"avg_latency_ms":16.04905942925546,"throughput_eps":0,"last_update":"2026-03-21T19:49:33.965323256Z"} +2026/03/21 19:49:38 ───────────────────────────────────────────────── +2026/03/21 19:49:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:49:43 [log_collector] {"stage_name":"log_collector","events_processed":11396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2279.2,"last_update":"2026-03-21T19:49:38.869849661Z"} +2026/03/21 19:49:43 [metric_collector] {"stage_name":"metric_collector","events_processed":6229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1245.8,"last_update":"2026-03-21T19:49:38.870343747Z"} +2026/03/21 19:49:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:49:38.878765309Z"} +2026/03/21 19:49:43 [transform_engine] {"stage_name":"transform_engine","events_processed":207,"events_dropped":0,"avg_latency_ms":1037.4644511224058,"throughput_eps":0,"last_update":"2026-03-21T19:49:38.965998245Z"} +2026/03/21 19:49:43 [detection_layer] {"stage_name":"detection_layer","events_processed":207,"events_dropped":0,"avg_latency_ms":16.04905942925546,"throughput_eps":0,"last_update":"2026-03-21T19:49:38.965953679Z"} +2026/03/21 19:49:43 ───────────────────────────────────────────────── +2026/03/21 19:49:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:49:48 [metric_collector] {"stage_name":"metric_collector","events_processed":6234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1246.8,"last_update":"2026-03-21T19:49:43.869811096Z"} +2026/03/21 19:49:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2496,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:49:43.878842386Z"} +2026/03/21 19:49:48 [transform_engine] {"stage_name":"transform_engine","events_processed":207,"events_dropped":0,"avg_latency_ms":1037.4644511224058,"throughput_eps":0,"last_update":"2026-03-21T19:49:43.966054772Z"} +2026/03/21 19:49:48 [detection_layer] {"stage_name":"detection_layer","events_processed":207,"events_dropped":0,"avg_latency_ms":16.04905942925546,"throughput_eps":0,"last_update":"2026-03-21T19:49:43.96600158Z"} +2026/03/21 19:49:48 [log_collector] {"stage_name":"log_collector","events_processed":11403,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2280.6,"last_update":"2026-03-21T19:49:43.869510941Z"} +2026/03/21 19:49:48 ───────────────────────────────────────────────── +2026/03/21 19:49:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:49:53 [log_collector] {"stage_name":"log_collector","events_processed":11412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2282.4,"last_update":"2026-03-21T19:49:53.870135918Z"} +2026/03/21 19:49:53 [metric_collector] {"stage_name":"metric_collector","events_processed":6239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1247.8,"last_update":"2026-03-21T19:49:48.870744978Z"} +2026/03/21 19:49:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2498,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:49:48.879808359Z"} +2026/03/21 19:49:53 [transform_engine] {"stage_name":"transform_engine","events_processed":208,"events_dropped":0,"avg_latency_ms":852.5295748979246,"throughput_eps":0,"last_update":"2026-03-21T19:49:49.078824176Z"} +2026/03/21 19:49:53 [detection_layer] {"stage_name":"detection_layer","events_processed":207,"events_dropped":0,"avg_latency_ms":16.04905942925546,"throughput_eps":0,"last_update":"2026-03-21T19:49:48.966008547Z"} +2026/03/21 19:49:53 ───────────────────────────────────────────────── +2026/03/21 19:49:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:49:58 [detection_layer] {"stage_name":"detection_layer","events_processed":208,"events_dropped":0,"avg_latency_ms":16.47355294340437,"throughput_eps":0,"last_update":"2026-03-21T19:49:53.96566748Z"} +2026/03/21 19:49:58 [log_collector] {"stage_name":"log_collector","events_processed":11412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2282.4,"last_update":"2026-03-21T19:49:58.869473568Z"} +2026/03/21 19:49:58 [metric_collector] {"stage_name":"metric_collector","events_processed":6244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1248.8,"last_update":"2026-03-21T19:49:53.870548307Z"} +2026/03/21 19:49:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:49:53.879204007Z"} +2026/03/21 19:49:58 [transform_engine] {"stage_name":"transform_engine","events_processed":208,"events_dropped":0,"avg_latency_ms":852.5295748979246,"throughput_eps":0,"last_update":"2026-03-21T19:49:53.965564071Z"} +2026/03/21 19:49:58 ───────────────────────────────────────────────── +2026/03/21 19:50:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:50:03 [log_collector] {"stage_name":"log_collector","events_processed":11412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2282.4,"last_update":"2026-03-21T19:49:58.869473568Z"} +2026/03/21 19:50:03 [metric_collector] {"stage_name":"metric_collector","events_processed":6249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1249.8,"last_update":"2026-03-21T19:49:58.870213054Z"} +2026/03/21 19:50:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:49:58.878832475Z"} +2026/03/21 19:50:03 [transform_engine] {"stage_name":"transform_engine","events_processed":208,"events_dropped":0,"avg_latency_ms":852.5295748979246,"throughput_eps":0,"last_update":"2026-03-21T19:49:58.966110066Z"} +2026/03/21 19:50:03 [detection_layer] {"stage_name":"detection_layer","events_processed":208,"events_dropped":0,"avg_latency_ms":16.47355294340437,"throughput_eps":0,"last_update":"2026-03-21T19:49:58.966005967Z"} +2026/03/21 19:50:03 ───────────────────────────────────────────────── +2026/03/21 19:50:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:50:08 [log_collector] {"stage_name":"log_collector","events_processed":11412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2282.4,"last_update":"2026-03-21T19:50:03.870207707Z"} +2026/03/21 19:50:08 [metric_collector] {"stage_name":"metric_collector","events_processed":6259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1251.8,"last_update":"2026-03-21T19:50:08.869780375Z"} +2026/03/21 19:50:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:50:03.885392114Z"} +2026/03/21 19:50:08 [transform_engine] {"stage_name":"transform_engine","events_processed":208,"events_dropped":0,"avg_latency_ms":852.5295748979246,"throughput_eps":0,"last_update":"2026-03-21T19:50:03.965545388Z"} +2026/03/21 19:50:08 [detection_layer] {"stage_name":"detection_layer","events_processed":208,"events_dropped":0,"avg_latency_ms":16.47355294340437,"throughput_eps":0,"last_update":"2026-03-21T19:50:03.965526672Z"} +2026/03/21 19:50:08 ───────────────────────────────────────────────── +2026/03/21 19:50:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:50:13 [transform_engine] {"stage_name":"transform_engine","events_processed":208,"events_dropped":0,"avg_latency_ms":852.5295748979246,"throughput_eps":0,"last_update":"2026-03-21T19:50:08.96521511Z"} +2026/03/21 19:50:13 [detection_layer] {"stage_name":"detection_layer","events_processed":208,"events_dropped":0,"avg_latency_ms":16.47355294340437,"throughput_eps":0,"last_update":"2026-03-21T19:50:08.965269434Z"} +2026/03/21 19:50:13 [log_collector] {"stage_name":"log_collector","events_processed":11412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2282.4,"last_update":"2026-03-21T19:50:13.869748142Z"} +2026/03/21 19:50:13 [metric_collector] {"stage_name":"metric_collector","events_processed":6264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1252.8,"last_update":"2026-03-21T19:50:13.869742972Z"} +2026/03/21 19:50:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2506,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:50:08.879056193Z"} +2026/03/21 19:50:13 ───────────────────────────────────────────────── +2026/03/21 19:50:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:50:18 [log_collector] {"stage_name":"log_collector","events_processed":11412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2282.4,"last_update":"2026-03-21T19:50:13.869748142Z"} +2026/03/21 19:50:18 [metric_collector] {"stage_name":"metric_collector","events_processed":6264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1252.8,"last_update":"2026-03-21T19:50:13.869742972Z"} +2026/03/21 19:50:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:50:13.87881987Z"} +2026/03/21 19:50:18 [transform_engine] {"stage_name":"transform_engine","events_processed":208,"events_dropped":0,"avg_latency_ms":852.5295748979246,"throughput_eps":0,"last_update":"2026-03-21T19:50:13.966165319Z"} +2026/03/21 19:50:18 [detection_layer] {"stage_name":"detection_layer","events_processed":208,"events_dropped":0,"avg_latency_ms":16.47355294340437,"throughput_eps":0,"last_update":"2026-03-21T19:50:13.966142045Z"} +2026/03/21 19:50:18 ───────────────────────────────────────────────── +2026/03/21 19:50:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:50:23 [log_collector] {"stage_name":"log_collector","events_processed":11412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2282.4,"last_update":"2026-03-21T19:50:23.869957457Z"} +2026/03/21 19:50:23 [metric_collector] {"stage_name":"metric_collector","events_processed":6269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1253.8,"last_update":"2026-03-21T19:50:18.870198119Z"} +2026/03/21 19:50:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:50:18.878652203Z"} +2026/03/21 19:50:23 [transform_engine] {"stage_name":"transform_engine","events_processed":209,"events_dropped":0,"avg_latency_ms":696.1131465183397,"throughput_eps":0,"last_update":"2026-03-21T19:50:19.036309075Z"} +2026/03/21 19:50:23 [detection_layer] {"stage_name":"detection_layer","events_processed":208,"events_dropped":0,"avg_latency_ms":16.47355294340437,"throughput_eps":0,"last_update":"2026-03-21T19:50:18.965829831Z"} +2026/03/21 19:50:23 ───────────────────────────────────────────────── +2026/03/21 19:50:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:50:28 [detection_layer] {"stage_name":"detection_layer","events_processed":209,"events_dropped":0,"avg_latency_ms":17.163843754723498,"throughput_eps":0,"last_update":"2026-03-21T19:50:23.965956152Z"} +2026/03/21 19:50:28 [log_collector] {"stage_name":"log_collector","events_processed":11412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2282.4,"last_update":"2026-03-21T19:50:28.869993096Z"} +2026/03/21 19:50:28 [metric_collector] {"stage_name":"metric_collector","events_processed":6274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1254.8,"last_update":"2026-03-21T19:50:23.87077332Z"} +2026/03/21 19:50:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2512,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:50:23.878575394Z"} +2026/03/21 19:50:28 [transform_engine] {"stage_name":"transform_engine","events_processed":209,"events_dropped":0,"avg_latency_ms":696.1131465183397,"throughput_eps":0,"last_update":"2026-03-21T19:50:23.965913691Z"} +2026/03/21 19:50:28 ───────────────────────────────────────────────── +2026/03/21 19:50:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:50:33 [log_collector] {"stage_name":"log_collector","events_processed":11412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2282.4,"last_update":"2026-03-21T19:50:33.869909962Z"} +2026/03/21 19:50:33 [metric_collector] {"stage_name":"metric_collector","events_processed":6279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1255.8,"last_update":"2026-03-21T19:50:28.870666987Z"} +2026/03/21 19:50:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:50:28.878100556Z"} +2026/03/21 19:50:33 [transform_engine] {"stage_name":"transform_engine","events_processed":209,"events_dropped":0,"avg_latency_ms":696.1131465183397,"throughput_eps":0,"last_update":"2026-03-21T19:50:28.965222238Z"} +2026/03/21 19:50:33 [detection_layer] {"stage_name":"detection_layer","events_processed":209,"events_dropped":0,"avg_latency_ms":17.163843754723498,"throughput_eps":0,"last_update":"2026-03-21T19:50:28.965265661Z"} +2026/03/21 19:50:33 ───────────────────────────────────────────────── +2026/03/21 19:50:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:50:38 [log_collector] {"stage_name":"log_collector","events_processed":11412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2282.4,"last_update":"2026-03-21T19:50:38.869440161Z"} +2026/03/21 19:50:38 [metric_collector] {"stage_name":"metric_collector","events_processed":6284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1256.8,"last_update":"2026-03-21T19:50:33.870491296Z"} +2026/03/21 19:50:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:50:33.878684189Z"} +2026/03/21 19:50:38 [transform_engine] {"stage_name":"transform_engine","events_processed":209,"events_dropped":0,"avg_latency_ms":696.1131465183397,"throughput_eps":0,"last_update":"2026-03-21T19:50:33.965902476Z"} +2026/03/21 19:50:38 [detection_layer] {"stage_name":"detection_layer","events_processed":209,"events_dropped":0,"avg_latency_ms":17.163843754723498,"throughput_eps":0,"last_update":"2026-03-21T19:50:33.966007076Z"} +2026/03/21 19:50:38 ───────────────────────────────────────────────── +Saved state: 12 clusters, 11413 messages, reason: none +2026/03/21 19:50:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:50:43 [log_collector] {"stage_name":"log_collector","events_processed":11412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2282.4,"last_update":"2026-03-21T19:50:38.869440161Z"} +2026/03/21 19:50:43 [metric_collector] {"stage_name":"metric_collector","events_processed":6289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1257.8,"last_update":"2026-03-21T19:50:38.869801202Z"} +2026/03/21 19:50:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:50:38.878803697Z"} +2026/03/21 19:50:43 [transform_engine] {"stage_name":"transform_engine","events_processed":209,"events_dropped":0,"avg_latency_ms":696.1131465183397,"throughput_eps":0,"last_update":"2026-03-21T19:50:38.966026232Z"} +2026/03/21 19:50:43 [detection_layer] {"stage_name":"detection_layer","events_processed":209,"events_dropped":0,"avg_latency_ms":17.163843754723498,"throughput_eps":0,"last_update":"2026-03-21T19:50:38.965990663Z"} +2026/03/21 19:50:43 ───────────────────────────────────────────────── +2026/03/21 19:50:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:50:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2520,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:50:43.879249553Z"} +2026/03/21 19:50:48 [transform_engine] {"stage_name":"transform_engine","events_processed":209,"events_dropped":0,"avg_latency_ms":696.1131465183397,"throughput_eps":0,"last_update":"2026-03-21T19:50:43.965407398Z"} +2026/03/21 19:50:48 [detection_layer] {"stage_name":"detection_layer","events_processed":209,"events_dropped":0,"avg_latency_ms":17.163843754723498,"throughput_eps":0,"last_update":"2026-03-21T19:50:43.965369245Z"} +2026/03/21 19:50:48 [log_collector] {"stage_name":"log_collector","events_processed":11415,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2283,"last_update":"2026-03-21T19:50:43.870439738Z"} +2026/03/21 19:50:48 [metric_collector] {"stage_name":"metric_collector","events_processed":6294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1258.8,"last_update":"2026-03-21T19:50:43.870720505Z"} +2026/03/21 19:50:48 ───────────────────────────────────────────────── +2026/03/21 19:50:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:50:53 [metric_collector] {"stage_name":"metric_collector","events_processed":6299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1259.8,"last_update":"2026-03-21T19:50:48.86977308Z"} +2026/03/21 19:50:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2522,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:50:48.878497201Z"} +2026/03/21 19:50:53 [transform_engine] {"stage_name":"transform_engine","events_processed":210,"events_dropped":0,"avg_latency_ms":578.9941226146718,"throughput_eps":0,"last_update":"2026-03-21T19:50:49.076289982Z"} +2026/03/21 19:50:53 [detection_layer] {"stage_name":"detection_layer","events_processed":209,"events_dropped":0,"avg_latency_ms":17.163843754723498,"throughput_eps":0,"last_update":"2026-03-21T19:50:48.965875685Z"} +2026/03/21 19:50:53 [log_collector] {"stage_name":"log_collector","events_processed":11426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2285.2,"last_update":"2026-03-21T19:50:53.86944272Z"} +2026/03/21 19:50:53 ───────────────────────────────────────────────── +2026/03/21 19:50:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:50:58 [log_collector] {"stage_name":"log_collector","events_processed":11426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2285.2,"last_update":"2026-03-21T19:50:58.869426174Z"} +2026/03/21 19:50:58 [metric_collector] {"stage_name":"metric_collector","events_processed":6304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1260.8,"last_update":"2026-03-21T19:50:53.870055324Z"} +2026/03/21 19:50:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:50:53.879519622Z"} +2026/03/21 19:50:58 [transform_engine] {"stage_name":"transform_engine","events_processed":210,"events_dropped":0,"avg_latency_ms":578.9941226146718,"throughput_eps":0,"last_update":"2026-03-21T19:50:53.965866179Z"} +2026/03/21 19:50:58 [detection_layer] {"stage_name":"detection_layer","events_processed":210,"events_dropped":0,"avg_latency_ms":17.5720866037788,"throughput_eps":0,"last_update":"2026-03-21T19:50:53.965921144Z"} +2026/03/21 19:50:58 ───────────────────────────────────────────────── +2026/03/21 19:51:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:51:03 [transform_engine] {"stage_name":"transform_engine","events_processed":210,"events_dropped":0,"avg_latency_ms":578.9941226146718,"throughput_eps":0,"last_update":"2026-03-21T19:50:58.96598416Z"} +2026/03/21 19:51:03 [detection_layer] {"stage_name":"detection_layer","events_processed":210,"events_dropped":0,"avg_latency_ms":17.5720866037788,"throughput_eps":0,"last_update":"2026-03-21T19:50:58.966088992Z"} +2026/03/21 19:51:03 [log_collector] {"stage_name":"log_collector","events_processed":11426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2285.2,"last_update":"2026-03-21T19:50:58.869426174Z"} +2026/03/21 19:51:03 [metric_collector] {"stage_name":"metric_collector","events_processed":6309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1261.8,"last_update":"2026-03-21T19:50:58.869855086Z"} +2026/03/21 19:51:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2526,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:50:58.87880043Z"} +2026/03/21 19:51:03 ───────────────────────────────────────────────── +2026/03/21 19:51:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:51:08 [log_collector] {"stage_name":"log_collector","events_processed":11426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2285.2,"last_update":"2026-03-21T19:51:08.869834384Z"} +2026/03/21 19:51:08 [metric_collector] {"stage_name":"metric_collector","events_processed":6314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1262.8,"last_update":"2026-03-21T19:51:03.870839204Z"} +2026/03/21 19:51:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:51:03.880012765Z"} +2026/03/21 19:51:08 [transform_engine] {"stage_name":"transform_engine","events_processed":210,"events_dropped":0,"avg_latency_ms":578.9941226146718,"throughput_eps":0,"last_update":"2026-03-21T19:51:03.965167888Z"} +2026/03/21 19:51:08 [detection_layer] {"stage_name":"detection_layer","events_processed":210,"events_dropped":0,"avg_latency_ms":17.5720866037788,"throughput_eps":0,"last_update":"2026-03-21T19:51:03.965286766Z"} +2026/03/21 19:51:08 ───────────────────────────────────────────────── +2026/03/21 19:51:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:51:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:51:08.878802593Z"} +2026/03/21 19:51:13 [transform_engine] {"stage_name":"transform_engine","events_processed":210,"events_dropped":0,"avg_latency_ms":578.9941226146718,"throughput_eps":0,"last_update":"2026-03-21T19:51:08.966059262Z"} +2026/03/21 19:51:13 [detection_layer] {"stage_name":"detection_layer","events_processed":210,"events_dropped":0,"avg_latency_ms":17.5720866037788,"throughput_eps":0,"last_update":"2026-03-21T19:51:08.966163081Z"} +2026/03/21 19:51:13 [log_collector] {"stage_name":"log_collector","events_processed":11426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2285.2,"last_update":"2026-03-21T19:51:13.869856776Z"} +2026/03/21 19:51:13 [metric_collector] {"stage_name":"metric_collector","events_processed":6319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1263.8,"last_update":"2026-03-21T19:51:08.870268395Z"} +2026/03/21 19:51:13 ───────────────────────────────────────────────── +2026/03/21 19:51:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:51:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2532,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:51:13.87800278Z"} +2026/03/21 19:51:18 [transform_engine] {"stage_name":"transform_engine","events_processed":210,"events_dropped":0,"avg_latency_ms":578.9941226146718,"throughput_eps":0,"last_update":"2026-03-21T19:51:13.96513454Z"} +2026/03/21 19:51:18 [detection_layer] {"stage_name":"detection_layer","events_processed":210,"events_dropped":0,"avg_latency_ms":17.5720866037788,"throughput_eps":0,"last_update":"2026-03-21T19:51:13.966296947Z"} +2026/03/21 19:51:18 [log_collector] {"stage_name":"log_collector","events_processed":11426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2285.2,"last_update":"2026-03-21T19:51:13.869856776Z"} +2026/03/21 19:51:18 [metric_collector] {"stage_name":"metric_collector","events_processed":6324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1264.8,"last_update":"2026-03-21T19:51:13.870402382Z"} +2026/03/21 19:51:18 ───────────────────────────────────────────────── +2026/03/21 19:51:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:51:23 [log_collector] {"stage_name":"log_collector","events_processed":11426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2285.2,"last_update":"2026-03-21T19:51:18.8694443Z"} +2026/03/21 19:51:23 [metric_collector] {"stage_name":"metric_collector","events_processed":6329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1265.8,"last_update":"2026-03-21T19:51:18.869816643Z"} +2026/03/21 19:51:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:51:18.878202085Z"} +2026/03/21 19:51:23 [transform_engine] {"stage_name":"transform_engine","events_processed":211,"events_dropped":0,"avg_latency_ms":478.33770909173745,"throughput_eps":0,"last_update":"2026-03-21T19:51:19.041293846Z"} +2026/03/21 19:51:23 [detection_layer] {"stage_name":"detection_layer","events_processed":210,"events_dropped":0,"avg_latency_ms":17.5720866037788,"throughput_eps":0,"last_update":"2026-03-21T19:51:18.965685799Z"} +2026/03/21 19:51:23 ───────────────────────────────────────────────── +2026/03/21 19:51:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:51:28 [log_collector] {"stage_name":"log_collector","events_processed":11426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2285.2,"last_update":"2026-03-21T19:51:23.869491278Z"} +2026/03/21 19:51:28 [metric_collector] {"stage_name":"metric_collector","events_processed":6334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1266.8,"last_update":"2026-03-21T19:51:23.86977367Z"} +2026/03/21 19:51:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2536,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:51:23.878284251Z"} +2026/03/21 19:51:28 [transform_engine] {"stage_name":"transform_engine","events_processed":211,"events_dropped":0,"avg_latency_ms":478.33770909173745,"throughput_eps":0,"last_update":"2026-03-21T19:51:23.96553551Z"} +2026/03/21 19:51:28 [detection_layer] {"stage_name":"detection_layer","events_processed":211,"events_dropped":0,"avg_latency_ms":18.16495448302304,"throughput_eps":0,"last_update":"2026-03-21T19:51:23.965492727Z"} +2026/03/21 19:51:28 ───────────────────────────────────────────────── +2026/03/21 19:51:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:51:33 [metric_collector] {"stage_name":"metric_collector","events_processed":6339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1267.8,"last_update":"2026-03-21T19:51:28.870428807Z"} +2026/03/21 19:51:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:51:28.878995416Z"} +2026/03/21 19:51:33 [transform_engine] {"stage_name":"transform_engine","events_processed":211,"events_dropped":0,"avg_latency_ms":478.33770909173745,"throughput_eps":0,"last_update":"2026-03-21T19:51:28.965188067Z"} +2026/03/21 19:51:33 [detection_layer] {"stage_name":"detection_layer","events_processed":211,"events_dropped":0,"avg_latency_ms":18.16495448302304,"throughput_eps":0,"last_update":"2026-03-21T19:51:28.966311078Z"} +2026/03/21 19:51:33 [log_collector] {"stage_name":"log_collector","events_processed":11426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2285.2,"last_update":"2026-03-21T19:51:28.869877762Z"} +2026/03/21 19:51:33 ───────────────────────────────────────────────── +2026/03/21 19:51:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:51:38 [transform_engine] {"stage_name":"transform_engine","events_processed":211,"events_dropped":0,"avg_latency_ms":478.33770909173745,"throughput_eps":0,"last_update":"2026-03-21T19:51:33.965673103Z"} +2026/03/21 19:51:38 [detection_layer] {"stage_name":"detection_layer","events_processed":211,"events_dropped":0,"avg_latency_ms":18.16495448302304,"throughput_eps":0,"last_update":"2026-03-21T19:51:33.965778274Z"} +2026/03/21 19:51:38 [log_collector] {"stage_name":"log_collector","events_processed":11426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2285.2,"last_update":"2026-03-21T19:51:33.870336487Z"} +2026/03/21 19:51:38 [metric_collector] {"stage_name":"metric_collector","events_processed":6344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1268.8,"last_update":"2026-03-21T19:51:33.870864538Z"} +2026/03/21 19:51:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2540,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:51:33.879380601Z"} +2026/03/21 19:51:38 ───────────────────────────────────────────────── +2026/03/21 19:51:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:51:43 [log_collector] {"stage_name":"log_collector","events_processed":11426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2285.2,"last_update":"2026-03-21T19:51:38.869582354Z"} +2026/03/21 19:51:43 [metric_collector] {"stage_name":"metric_collector","events_processed":6349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1269.8,"last_update":"2026-03-21T19:51:38.869867761Z"} +2026/03/21 19:51:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2542,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:51:38.87901388Z"} +2026/03/21 19:51:43 [transform_engine] {"stage_name":"transform_engine","events_processed":211,"events_dropped":0,"avg_latency_ms":478.33770909173745,"throughput_eps":0,"last_update":"2026-03-21T19:51:38.965134413Z"} +2026/03/21 19:51:43 [detection_layer] {"stage_name":"detection_layer","events_processed":211,"events_dropped":0,"avg_latency_ms":18.16495448302304,"throughput_eps":0,"last_update":"2026-03-21T19:51:38.966255761Z"} +2026/03/21 19:51:43 ───────────────────────────────────────────────── +2026/03/21 19:51:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:51:48 [detection_layer] {"stage_name":"detection_layer","events_processed":211,"events_dropped":0,"avg_latency_ms":18.16495448302304,"throughput_eps":0,"last_update":"2026-03-21T19:51:43.965979458Z"} +2026/03/21 19:51:48 [log_collector] {"stage_name":"log_collector","events_processed":11426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2285.2,"last_update":"2026-03-21T19:51:43.869465899Z"} +2026/03/21 19:51:48 [metric_collector] {"stage_name":"metric_collector","events_processed":6354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1270.8,"last_update":"2026-03-21T19:51:43.869841778Z"} +2026/03/21 19:51:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:51:43.878689106Z"} +2026/03/21 19:51:48 [transform_engine] {"stage_name":"transform_engine","events_processed":211,"events_dropped":0,"avg_latency_ms":478.33770909173745,"throughput_eps":0,"last_update":"2026-03-21T19:51:43.965876241Z"} +2026/03/21 19:51:48 ───────────────────────────────────────────────── +Saved state: 12 clusters, 11427 messages, reason: none +2026/03/21 19:51:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:51:53 [log_collector] {"stage_name":"log_collector","events_processed":11431,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2286.2,"last_update":"2026-03-21T19:51:53.869402906Z"} +2026/03/21 19:51:53 [metric_collector] {"stage_name":"metric_collector","events_processed":6364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1272.8,"last_update":"2026-03-21T19:51:53.869886111Z"} +2026/03/21 19:51:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:51:48.879667561Z"} +2026/03/21 19:51:53 [transform_engine] {"stage_name":"transform_engine","events_processed":212,"events_dropped":0,"avg_latency_ms":396.60718727339,"throughput_eps":0,"last_update":"2026-03-21T19:51:49.035668808Z"} +2026/03/21 19:51:53 [detection_layer] {"stage_name":"detection_layer","events_processed":211,"events_dropped":0,"avg_latency_ms":18.16495448302304,"throughput_eps":0,"last_update":"2026-03-21T19:51:48.966017812Z"} +2026/03/21 19:51:53 ───────────────────────────────────────────────── +2026/03/21 19:51:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:51:58 [log_collector] {"stage_name":"log_collector","events_processed":11431,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2286.2,"last_update":"2026-03-21T19:51:53.869402906Z"} +2026/03/21 19:51:58 [metric_collector] {"stage_name":"metric_collector","events_processed":6364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1272.8,"last_update":"2026-03-21T19:51:53.869886111Z"} +2026/03/21 19:51:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:51:53.878726655Z"} +2026/03/21 19:51:58 [transform_engine] {"stage_name":"transform_engine","events_processed":212,"events_dropped":0,"avg_latency_ms":396.60718727339,"throughput_eps":0,"last_update":"2026-03-21T19:51:53.965942565Z"} +2026/03/21 19:51:58 [detection_layer] {"stage_name":"detection_layer","events_processed":212,"events_dropped":0,"avg_latency_ms":18.57913798641843,"throughput_eps":0,"last_update":"2026-03-21T19:51:53.965921124Z"} +2026/03/21 19:51:58 ───────────────────────────────────────────────── +2026/03/21 19:52:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:52:03 [log_collector] {"stage_name":"log_collector","events_processed":11431,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2286.2,"last_update":"2026-03-21T19:51:58.869734141Z"} +2026/03/21 19:52:03 [metric_collector] {"stage_name":"metric_collector","events_processed":6369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1273.8,"last_update":"2026-03-21T19:51:58.870008056Z"} +2026/03/21 19:52:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:51:58.876098592Z"} +2026/03/21 19:52:03 [transform_engine] {"stage_name":"transform_engine","events_processed":212,"events_dropped":0,"avg_latency_ms":396.60718727339,"throughput_eps":0,"last_update":"2026-03-21T19:51:58.965403894Z"} +2026/03/21 19:52:03 [detection_layer] {"stage_name":"detection_layer","events_processed":212,"events_dropped":0,"avg_latency_ms":18.57913798641843,"throughput_eps":0,"last_update":"2026-03-21T19:51:58.965428001Z"} +2026/03/21 19:52:03 ───────────────────────────────────────────────── +2026/03/21 19:52:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:52:08 [log_collector] {"stage_name":"log_collector","events_processed":11431,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2286.2,"last_update":"2026-03-21T19:52:03.86943287Z"} +2026/03/21 19:52:08 [metric_collector] {"stage_name":"metric_collector","events_processed":6374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1274.8,"last_update":"2026-03-21T19:52:03.869862674Z"} +2026/03/21 19:52:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:52:03.877423005Z"} +2026/03/21 19:52:08 [transform_engine] {"stage_name":"transform_engine","events_processed":212,"events_dropped":0,"avg_latency_ms":396.60718727339,"throughput_eps":0,"last_update":"2026-03-21T19:52:03.965595468Z"} +2026/03/21 19:52:08 [detection_layer] {"stage_name":"detection_layer","events_processed":212,"events_dropped":0,"avg_latency_ms":18.57913798641843,"throughput_eps":0,"last_update":"2026-03-21T19:52:03.965567114Z"} +2026/03/21 19:52:08 ───────────────────────────────────────────────── +2026/03/21 19:52:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:52:13 [metric_collector] {"stage_name":"metric_collector","events_processed":6379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1275.8,"last_update":"2026-03-21T19:52:08.869920436Z"} +2026/03/21 19:52:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:52:08.875845955Z"} +2026/03/21 19:52:13 [transform_engine] {"stage_name":"transform_engine","events_processed":212,"events_dropped":0,"avg_latency_ms":396.60718727339,"throughput_eps":0,"last_update":"2026-03-21T19:52:08.966161011Z"} +2026/03/21 19:52:13 [detection_layer] {"stage_name":"detection_layer","events_processed":212,"events_dropped":0,"avg_latency_ms":18.57913798641843,"throughput_eps":0,"last_update":"2026-03-21T19:52:08.966151213Z"} +2026/03/21 19:52:13 [log_collector] {"stage_name":"log_collector","events_processed":11431,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2286.2,"last_update":"2026-03-21T19:52:08.869616293Z"} +2026/03/21 19:52:13 ───────────────────────────────────────────────── +2026/03/21 19:52:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:52:18 [transform_engine] {"stage_name":"transform_engine","events_processed":212,"events_dropped":0,"avg_latency_ms":396.60718727339,"throughput_eps":0,"last_update":"2026-03-21T19:52:13.965902743Z"} +2026/03/21 19:52:18 [detection_layer] {"stage_name":"detection_layer","events_processed":212,"events_dropped":0,"avg_latency_ms":18.57913798641843,"throughput_eps":0,"last_update":"2026-03-21T19:52:13.965893105Z"} +2026/03/21 19:52:18 [log_collector] {"stage_name":"log_collector","events_processed":11431,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2286.2,"last_update":"2026-03-21T19:52:13.869639523Z"} +2026/03/21 19:52:18 [metric_collector] {"stage_name":"metric_collector","events_processed":6384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1276.8,"last_update":"2026-03-21T19:52:13.869907486Z"} +2026/03/21 19:52:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:52:13.875704941Z"} +2026/03/21 19:52:18 ───────────────────────────────────────────────── +2026/03/21 19:52:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:52:23 [log_collector] {"stage_name":"log_collector","events_processed":11431,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2286.2,"last_update":"2026-03-21T19:52:18.869824369Z"} +2026/03/21 19:52:23 [metric_collector] {"stage_name":"metric_collector","events_processed":6389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1277.8,"last_update":"2026-03-21T19:52:18.870265734Z"} +2026/03/21 19:52:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:52:18.878222064Z"} +2026/03/21 19:52:23 [transform_engine] {"stage_name":"transform_engine","events_processed":213,"events_dropped":0,"avg_latency_ms":410.28420401871205,"throughput_eps":0,"last_update":"2026-03-21T19:52:19.430381863Z"} +2026/03/21 19:52:23 [detection_layer] {"stage_name":"detection_layer","events_processed":212,"events_dropped":0,"avg_latency_ms":18.57913798641843,"throughput_eps":0,"last_update":"2026-03-21T19:52:18.965377548Z"} +2026/03/21 19:52:23 ───────────────────────────────────────────────── +2026/03/21 19:52:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:52:28 [transform_engine] {"stage_name":"transform_engine","events_processed":213,"events_dropped":0,"avg_latency_ms":410.28420401871205,"throughput_eps":0,"last_update":"2026-03-21T19:52:23.965381652Z"} +2026/03/21 19:52:28 [detection_layer] {"stage_name":"detection_layer","events_processed":213,"events_dropped":0,"avg_latency_ms":17.052970389134746,"throughput_eps":0,"last_update":"2026-03-21T19:52:23.965372485Z"} +2026/03/21 19:52:28 [log_collector] {"stage_name":"log_collector","events_processed":11431,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2286.2,"last_update":"2026-03-21T19:52:23.869425661Z"} +2026/03/21 19:52:28 [metric_collector] {"stage_name":"metric_collector","events_processed":6394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1278.8,"last_update":"2026-03-21T19:52:23.869925919Z"} +2026/03/21 19:52:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2560,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:52:23.877160728Z"} +2026/03/21 19:52:28 ───────────────────────────────────────────────── +2026/03/21 19:52:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:52:33 [log_collector] {"stage_name":"log_collector","events_processed":11431,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2286.2,"last_update":"2026-03-21T19:52:28.869420392Z"} +2026/03/21 19:52:33 [metric_collector] {"stage_name":"metric_collector","events_processed":6399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1279.8,"last_update":"2026-03-21T19:52:28.869647617Z"} +2026/03/21 19:52:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:52:28.879081097Z"} +2026/03/21 19:52:33 [transform_engine] {"stage_name":"transform_engine","events_processed":213,"events_dropped":0,"avg_latency_ms":410.28420401871205,"throughput_eps":0,"last_update":"2026-03-21T19:52:28.965758565Z"} +2026/03/21 19:52:33 [detection_layer] {"stage_name":"detection_layer","events_processed":213,"events_dropped":0,"avg_latency_ms":17.052970389134746,"throughput_eps":0,"last_update":"2026-03-21T19:52:28.965749148Z"} +2026/03/21 19:52:33 ───────────────────────────────────────────────── +2026/03/21 19:52:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:52:38 [log_collector] {"stage_name":"log_collector","events_processed":11434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2286.8,"last_update":"2026-03-21T19:52:33.869955443Z"} +2026/03/21 19:52:38 [metric_collector] {"stage_name":"metric_collector","events_processed":6404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1280.8,"last_update":"2026-03-21T19:52:33.87016745Z"} +2026/03/21 19:52:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:52:33.876299386Z"} +2026/03/21 19:52:38 [transform_engine] {"stage_name":"transform_engine","events_processed":213,"events_dropped":0,"avg_latency_ms":410.28420401871205,"throughput_eps":0,"last_update":"2026-03-21T19:52:33.965600459Z"} +2026/03/21 19:52:38 [detection_layer] {"stage_name":"detection_layer","events_processed":213,"events_dropped":0,"avg_latency_ms":17.052970389134746,"throughput_eps":0,"last_update":"2026-03-21T19:52:33.965587794Z"} +2026/03/21 19:52:38 ───────────────────────────────────────────────── +2026/03/21 19:52:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:52:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2566,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:52:38.878888375Z"} +2026/03/21 19:52:43 [transform_engine] {"stage_name":"transform_engine","events_processed":213,"events_dropped":0,"avg_latency_ms":410.28420401871205,"throughput_eps":0,"last_update":"2026-03-21T19:52:38.96511979Z"} +2026/03/21 19:52:43 [detection_layer] {"stage_name":"detection_layer","events_processed":213,"events_dropped":0,"avg_latency_ms":17.052970389134746,"throughput_eps":0,"last_update":"2026-03-21T19:52:38.966282085Z"} +2026/03/21 19:52:43 [log_collector] {"stage_name":"log_collector","events_processed":11442,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2288.4,"last_update":"2026-03-21T19:52:38.869684937Z"} +2026/03/21 19:52:43 [metric_collector] {"stage_name":"metric_collector","events_processed":6409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1281.8,"last_update":"2026-03-21T19:52:38.869726497Z"} +2026/03/21 19:52:43 ───────────────────────────────────────────────── +2026/03/21 19:52:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:52:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:52:43.885319501Z"} +2026/03/21 19:52:48 [transform_engine] {"stage_name":"transform_engine","events_processed":213,"events_dropped":0,"avg_latency_ms":410.28420401871205,"throughput_eps":0,"last_update":"2026-03-21T19:52:43.965308147Z"} +2026/03/21 19:52:48 [detection_layer] {"stage_name":"detection_layer","events_processed":213,"events_dropped":0,"avg_latency_ms":17.052970389134746,"throughput_eps":0,"last_update":"2026-03-21T19:52:43.96529418Z"} +2026/03/21 19:52:48 [log_collector] {"stage_name":"log_collector","events_processed":11465,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2293,"last_update":"2026-03-21T19:52:43.869746361Z"} +2026/03/21 19:52:48 [metric_collector] {"stage_name":"metric_collector","events_processed":6414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1282.8,"last_update":"2026-03-21T19:52:43.87014261Z"} +2026/03/21 19:52:48 ───────────────────────────────────────────────── +2026/03/21 19:52:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:52:53 [log_collector] {"stage_name":"log_collector","events_processed":11787,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2357.4,"last_update":"2026-03-21T19:52:48.869432723Z"} +2026/03/21 19:52:53 [metric_collector] {"stage_name":"metric_collector","events_processed":6419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1283.8,"last_update":"2026-03-21T19:52:48.869759479Z"} +2026/03/21 19:52:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2570,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:52:48.876472567Z"} +2026/03/21 19:52:53 [transform_engine] {"stage_name":"transform_engine","events_processed":214,"events_dropped":0,"avg_latency_ms":353.2740494149697,"throughput_eps":0,"last_update":"2026-03-21T19:52:49.090963278Z"} +2026/03/21 19:52:53 [detection_layer] {"stage_name":"detection_layer","events_processed":213,"events_dropped":0,"avg_latency_ms":17.052970389134746,"throughput_eps":0,"last_update":"2026-03-21T19:52:48.965703106Z"} +2026/03/21 19:52:53 ───────────────────────────────────────────────── +2026/03/21 19:52:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:52:58 [log_collector] {"stage_name":"log_collector","events_processed":11791,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2358.2,"last_update":"2026-03-21T19:52:53.870410463Z"} +2026/03/21 19:52:58 [metric_collector] {"stage_name":"metric_collector","events_processed":6424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1284.8,"last_update":"2026-03-21T19:52:53.870371478Z"} +2026/03/21 19:52:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2572,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:52:53.878141642Z"} +2026/03/21 19:52:58 [transform_engine] {"stage_name":"transform_engine","events_processed":214,"events_dropped":0,"avg_latency_ms":353.2740494149697,"throughput_eps":0,"last_update":"2026-03-21T19:52:53.965390023Z"} +2026/03/21 19:52:58 [detection_layer] {"stage_name":"detection_layer","events_processed":214,"events_dropped":0,"avg_latency_ms":16.428190311307798,"throughput_eps":0,"last_update":"2026-03-21T19:52:53.965424489Z"} +2026/03/21 19:52:58 ───────────────────────────────────────────────── +2026/03/21 19:53:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:53:03 [transform_engine] {"stage_name":"transform_engine","events_processed":214,"events_dropped":0,"avg_latency_ms":353.2740494149697,"throughput_eps":0,"last_update":"2026-03-21T19:52:58.965748213Z"} +2026/03/21 19:53:03 [detection_layer] {"stage_name":"detection_layer","events_processed":214,"events_dropped":0,"avg_latency_ms":16.428190311307798,"throughput_eps":0,"last_update":"2026-03-21T19:52:58.965856921Z"} +2026/03/21 19:53:03 [log_collector] {"stage_name":"log_collector","events_processed":11791,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2358.2,"last_update":"2026-03-21T19:52:58.869980684Z"} +2026/03/21 19:53:03 [metric_collector] {"stage_name":"metric_collector","events_processed":6429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1285.8,"last_update":"2026-03-21T19:52:58.870399155Z"} +2026/03/21 19:53:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:52:58.878270663Z"} +2026/03/21 19:53:03 ───────────────────────────────────────────────── +2026/03/21 19:53:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:53:08 [log_collector] {"stage_name":"log_collector","events_processed":11791,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2358.2,"last_update":"2026-03-21T19:53:03.869428144Z"} +2026/03/21 19:53:08 [metric_collector] {"stage_name":"metric_collector","events_processed":6434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1286.8,"last_update":"2026-03-21T19:53:03.869788575Z"} +2026/03/21 19:53:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2576,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:53:03.87868744Z"} +2026/03/21 19:53:08 [transform_engine] {"stage_name":"transform_engine","events_processed":214,"events_dropped":0,"avg_latency_ms":353.2740494149697,"throughput_eps":0,"last_update":"2026-03-21T19:53:03.966078876Z"} +2026/03/21 19:53:08 [detection_layer] {"stage_name":"detection_layer","events_processed":214,"events_dropped":0,"avg_latency_ms":16.428190311307798,"throughput_eps":0,"last_update":"2026-03-21T19:53:03.966043478Z"} +2026/03/21 19:53:08 ───────────────────────────────────────────────── +2026/03/21 19:53:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:53:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:53:08.87901938Z"} +2026/03/21 19:53:13 [transform_engine] {"stage_name":"transform_engine","events_processed":214,"events_dropped":0,"avg_latency_ms":353.2740494149697,"throughput_eps":0,"last_update":"2026-03-21T19:53:08.965163477Z"} +2026/03/21 19:53:13 [detection_layer] {"stage_name":"detection_layer","events_processed":214,"events_dropped":0,"avg_latency_ms":16.428190311307798,"throughput_eps":0,"last_update":"2026-03-21T19:53:08.965271043Z"} +2026/03/21 19:53:13 [log_collector] {"stage_name":"log_collector","events_processed":11791,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2358.2,"last_update":"2026-03-21T19:53:08.870038998Z"} +2026/03/21 19:53:13 [metric_collector] {"stage_name":"metric_collector","events_processed":6439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1287.8,"last_update":"2026-03-21T19:53:08.87025363Z"} +2026/03/21 19:53:13 ───────────────────────────────────────────────── +2026/03/21 19:53:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:53:18 [log_collector] {"stage_name":"log_collector","events_processed":11791,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2358.2,"last_update":"2026-03-21T19:53:13.869698406Z"} +2026/03/21 19:53:18 [metric_collector] {"stage_name":"metric_collector","events_processed":6444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1288.8,"last_update":"2026-03-21T19:53:13.870218201Z"} +2026/03/21 19:53:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2580,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:53:13.878944396Z"} +2026/03/21 19:53:18 [transform_engine] {"stage_name":"transform_engine","events_processed":214,"events_dropped":0,"avg_latency_ms":353.2740494149697,"throughput_eps":0,"last_update":"2026-03-21T19:53:13.965058214Z"} +2026/03/21 19:53:18 [detection_layer] {"stage_name":"detection_layer","events_processed":214,"events_dropped":0,"avg_latency_ms":16.428190311307798,"throughput_eps":0,"last_update":"2026-03-21T19:53:13.966174121Z"} +2026/03/21 19:53:18 ───────────────────────────────────────────────── +2026/03/21 19:53:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:53:23 [transform_engine] {"stage_name":"transform_engine","events_processed":215,"events_dropped":0,"avg_latency_ms":305.3584177319758,"throughput_eps":0,"last_update":"2026-03-21T19:53:19.079582457Z"} +2026/03/21 19:53:23 [detection_layer] {"stage_name":"detection_layer","events_processed":214,"events_dropped":0,"avg_latency_ms":16.428190311307798,"throughput_eps":0,"last_update":"2026-03-21T19:53:18.965988983Z"} +2026/03/21 19:53:23 [log_collector] {"stage_name":"log_collector","events_processed":11791,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2358.2,"last_update":"2026-03-21T19:53:18.86987016Z"} +2026/03/21 19:53:23 [metric_collector] {"stage_name":"metric_collector","events_processed":6449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1289.8,"last_update":"2026-03-21T19:53:18.870718936Z"} +2026/03/21 19:53:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:53:18.878700084Z"} +2026/03/21 19:53:23 ───────────────────────────────────────────────── +2026/03/21 19:53:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:53:28 [log_collector] {"stage_name":"log_collector","events_processed":11791,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2358.2,"last_update":"2026-03-21T19:53:23.869960473Z"} +2026/03/21 19:53:28 [metric_collector] {"stage_name":"metric_collector","events_processed":6454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1290.8,"last_update":"2026-03-21T19:53:23.870516508Z"} +2026/03/21 19:53:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:53:23.878959631Z"} +2026/03/21 19:53:28 [transform_engine] {"stage_name":"transform_engine","events_processed":215,"events_dropped":0,"avg_latency_ms":305.3584177319758,"throughput_eps":0,"last_update":"2026-03-21T19:53:23.965157019Z"} +2026/03/21 19:53:28 [detection_layer] {"stage_name":"detection_layer","events_processed":215,"events_dropped":0,"avg_latency_ms":17.25670264904624,"throughput_eps":0,"last_update":"2026-03-21T19:53:23.965294182Z"} +2026/03/21 19:53:28 ───────────────────────────────────────────────── +2026/03/21 19:53:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:53:33 [log_collector] {"stage_name":"log_collector","events_processed":11791,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2358.2,"last_update":"2026-03-21T19:53:28.869786928Z"} +2026/03/21 19:53:33 [metric_collector] {"stage_name":"metric_collector","events_processed":6459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1291.8,"last_update":"2026-03-21T19:53:28.869973986Z"} +2026/03/21 19:53:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2586,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:53:28.880000101Z"} +2026/03/21 19:53:33 [transform_engine] {"stage_name":"transform_engine","events_processed":215,"events_dropped":0,"avg_latency_ms":305.3584177319758,"throughput_eps":0,"last_update":"2026-03-21T19:53:28.965115025Z"} +2026/03/21 19:53:33 [detection_layer] {"stage_name":"detection_layer","events_processed":215,"events_dropped":0,"avg_latency_ms":17.25670264904624,"throughput_eps":0,"last_update":"2026-03-21T19:53:28.966247936Z"} +2026/03/21 19:53:33 ───────────────────────────────────────────────── +2026/03/21 19:53:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:53:38 [metric_collector] {"stage_name":"metric_collector","events_processed":6464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1292.8,"last_update":"2026-03-21T19:53:33.87021002Z"} +2026/03/21 19:53:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2588,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:53:33.879395495Z"} +2026/03/21 19:53:38 [transform_engine] {"stage_name":"transform_engine","events_processed":215,"events_dropped":0,"avg_latency_ms":305.3584177319758,"throughput_eps":0,"last_update":"2026-03-21T19:53:33.965867148Z"} +2026/03/21 19:53:38 [detection_layer] {"stage_name":"detection_layer","events_processed":215,"events_dropped":0,"avg_latency_ms":17.25670264904624,"throughput_eps":0,"last_update":"2026-03-21T19:53:33.965752508Z"} +2026/03/21 19:53:38 [log_collector] {"stage_name":"log_collector","events_processed":11791,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2358.2,"last_update":"2026-03-21T19:53:33.869787881Z"} +2026/03/21 19:53:38 ───────────────────────────────────────────────── +2026/03/21 19:53:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:53:43 [log_collector] {"stage_name":"log_collector","events_processed":11791,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2358.2,"last_update":"2026-03-21T19:53:43.869827779Z"} +2026/03/21 19:53:43 [metric_collector] {"stage_name":"metric_collector","events_processed":6469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1293.8,"last_update":"2026-03-21T19:53:38.869847373Z"} +2026/03/21 19:53:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:53:38.878478996Z"} +2026/03/21 19:53:43 [transform_engine] {"stage_name":"transform_engine","events_processed":215,"events_dropped":0,"avg_latency_ms":305.3584177319758,"throughput_eps":0,"last_update":"2026-03-21T19:53:38.965697119Z"} +2026/03/21 19:53:43 [detection_layer] {"stage_name":"detection_layer","events_processed":215,"events_dropped":0,"avg_latency_ms":17.25670264904624,"throughput_eps":0,"last_update":"2026-03-21T19:53:38.965671069Z"} +2026/03/21 19:53:43 ───────────────────────────────────────────────── +2026/03/21 19:53:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:53:48 [log_collector] {"stage_name":"log_collector","events_processed":11791,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2358.2,"last_update":"2026-03-21T19:53:48.869423877Z"} +2026/03/21 19:53:48 [metric_collector] {"stage_name":"metric_collector","events_processed":6474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1294.8,"last_update":"2026-03-21T19:53:43.870645626Z"} +2026/03/21 19:53:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2592,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:53:43.878920116Z"} +2026/03/21 19:53:48 [transform_engine] {"stage_name":"transform_engine","events_processed":215,"events_dropped":0,"avg_latency_ms":305.3584177319758,"throughput_eps":0,"last_update":"2026-03-21T19:53:43.965090412Z"} +2026/03/21 19:53:48 [detection_layer] {"stage_name":"detection_layer","events_processed":215,"events_dropped":0,"avg_latency_ms":17.25670264904624,"throughput_eps":0,"last_update":"2026-03-21T19:53:43.965329699Z"} +2026/03/21 19:53:48 ───────────────────────────────────────────────── +2026/03/21 19:53:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:53:53 [detection_layer] {"stage_name":"detection_layer","events_processed":215,"events_dropped":0,"avg_latency_ms":17.25670264904624,"throughput_eps":0,"last_update":"2026-03-21T19:53:48.965792406Z"} +2026/03/21 19:53:53 [log_collector] {"stage_name":"log_collector","events_processed":11791,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2358.2,"last_update":"2026-03-21T19:53:48.869423877Z"} +2026/03/21 19:53:53 [metric_collector] {"stage_name":"metric_collector","events_processed":6479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1295.8,"last_update":"2026-03-21T19:53:48.870121984Z"} +2026/03/21 19:53:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:53:48.87846789Z"} +2026/03/21 19:53:53 [transform_engine] {"stage_name":"transform_engine","events_processed":216,"events_dropped":0,"avg_latency_ms":260.05616798558066,"throughput_eps":0,"last_update":"2026-03-21T19:53:49.044519936Z"} +2026/03/21 19:53:53 ───────────────────────────────────────────────── +2026/03/21 19:53:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:53:58 [log_collector] {"stage_name":"log_collector","events_processed":11791,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2358.2,"last_update":"2026-03-21T19:53:53.8699082Z"} +2026/03/21 19:53:58 [metric_collector] {"stage_name":"metric_collector","events_processed":6484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1296.8,"last_update":"2026-03-21T19:53:53.870431833Z"} +2026/03/21 19:53:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:53:53.879067284Z"} +2026/03/21 19:53:58 [transform_engine] {"stage_name":"transform_engine","events_processed":216,"events_dropped":0,"avg_latency_ms":260.05616798558066,"throughput_eps":0,"last_update":"2026-03-21T19:53:53.965307443Z"} +2026/03/21 19:53:58 [detection_layer] {"stage_name":"detection_layer","events_processed":216,"events_dropped":0,"avg_latency_ms":17.804416119236993,"throughput_eps":0,"last_update":"2026-03-21T19:53:53.965294258Z"} +2026/03/21 19:53:58 ───────────────────────────────────────────────── +2026/03/21 19:54:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:54:03 [log_collector] {"stage_name":"log_collector","events_processed":11791,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2358.2,"last_update":"2026-03-21T19:53:58.870232523Z"} +2026/03/21 19:54:03 [metric_collector] {"stage_name":"metric_collector","events_processed":6489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1297.8,"last_update":"2026-03-21T19:53:58.870784219Z"} +2026/03/21 19:54:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:53:58.879843733Z"} +2026/03/21 19:54:03 [transform_engine] {"stage_name":"transform_engine","events_processed":216,"events_dropped":0,"avg_latency_ms":260.05616798558066,"throughput_eps":0,"last_update":"2026-03-21T19:53:58.96608789Z"} +2026/03/21 19:54:03 [detection_layer] {"stage_name":"detection_layer","events_processed":216,"events_dropped":0,"avg_latency_ms":17.804416119236993,"throughput_eps":0,"last_update":"2026-03-21T19:53:58.966077991Z"} +2026/03/21 19:54:03 ───────────────────────────────────────────────── +2026/03/21 19:54:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:54:08 [transform_engine] {"stage_name":"transform_engine","events_processed":216,"events_dropped":0,"avg_latency_ms":260.05616798558066,"throughput_eps":0,"last_update":"2026-03-21T19:54:03.965426751Z"} +2026/03/21 19:54:08 [detection_layer] {"stage_name":"detection_layer","events_processed":216,"events_dropped":0,"avg_latency_ms":17.804416119236993,"throughput_eps":0,"last_update":"2026-03-21T19:54:03.965456258Z"} +2026/03/21 19:54:08 [log_collector] {"stage_name":"log_collector","events_processed":11791,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2358.2,"last_update":"2026-03-21T19:54:08.870336724Z"} +2026/03/21 19:54:08 [metric_collector] {"stage_name":"metric_collector","events_processed":6499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1299.8,"last_update":"2026-03-21T19:54:08.870291838Z"} +2026/03/21 19:54:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:54:03.880091475Z"} +2026/03/21 19:54:08 ───────────────────────────────────────────────── +2026/03/21 19:54:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:54:13 [transform_engine] {"stage_name":"transform_engine","events_processed":216,"events_dropped":0,"avg_latency_ms":260.05616798558066,"throughput_eps":0,"last_update":"2026-03-21T19:54:08.965840447Z"} +2026/03/21 19:54:13 [detection_layer] {"stage_name":"detection_layer","events_processed":216,"events_dropped":0,"avg_latency_ms":17.804416119236993,"throughput_eps":0,"last_update":"2026-03-21T19:54:08.965801462Z"} +2026/03/21 19:54:13 [log_collector] {"stage_name":"log_collector","events_processed":11791,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2358.2,"last_update":"2026-03-21T19:54:13.869422562Z"} +2026/03/21 19:54:13 [metric_collector] {"stage_name":"metric_collector","events_processed":6499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1299.8,"last_update":"2026-03-21T19:54:08.870291838Z"} +2026/03/21 19:54:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2602,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:54:08.879467543Z"} +2026/03/21 19:54:13 ───────────────────────────────────────────────── +Saved state: 12 clusters, 11792 messages, reason: none +2026/03/21 19:54:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:54:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:54:13.878964569Z"} +2026/03/21 19:54:18 [transform_engine] {"stage_name":"transform_engine","events_processed":216,"events_dropped":0,"avg_latency_ms":260.05616798558066,"throughput_eps":0,"last_update":"2026-03-21T19:54:13.965163549Z"} +2026/03/21 19:54:18 [detection_layer] {"stage_name":"detection_layer","events_processed":216,"events_dropped":0,"avg_latency_ms":17.804416119236993,"throughput_eps":0,"last_update":"2026-03-21T19:54:13.966340232Z"} +2026/03/21 19:54:18 [log_collector] {"stage_name":"log_collector","events_processed":11791,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2358.2,"last_update":"2026-03-21T19:54:13.869422562Z"} +2026/03/21 19:54:18 [metric_collector] {"stage_name":"metric_collector","events_processed":6504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1300.8,"last_update":"2026-03-21T19:54:13.869978847Z"} +2026/03/21 19:54:18 ───────────────────────────────────────────────── +2026/03/21 19:54:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:54:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:54:18.880911965Z"} +2026/03/21 19:54:23 [transform_engine] {"stage_name":"transform_engine","events_processed":217,"events_dropped":0,"avg_latency_ms":233.84320958846453,"throughput_eps":0,"last_update":"2026-03-21T19:54:19.095102748Z"} +2026/03/21 19:54:23 [detection_layer] {"stage_name":"detection_layer","events_processed":216,"events_dropped":0,"avg_latency_ms":17.804416119236993,"throughput_eps":0,"last_update":"2026-03-21T19:54:18.96608481Z"} +2026/03/21 19:54:23 [log_collector] {"stage_name":"log_collector","events_processed":11794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2358.8,"last_update":"2026-03-21T19:54:18.869793999Z"} +2026/03/21 19:54:23 [metric_collector] {"stage_name":"metric_collector","events_processed":6509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1301.8,"last_update":"2026-03-21T19:54:18.869782086Z"} +2026/03/21 19:54:23 ───────────────────────────────────────────────── +2026/03/21 19:54:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:54:28 [log_collector] {"stage_name":"log_collector","events_processed":11794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2358.8,"last_update":"2026-03-21T19:54:23.870610807Z"} +2026/03/21 19:54:28 [metric_collector] {"stage_name":"metric_collector","events_processed":6514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1302.8,"last_update":"2026-03-21T19:54:23.870751757Z"} +2026/03/21 19:54:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:54:23.877778516Z"} +2026/03/21 19:54:28 [transform_engine] {"stage_name":"transform_engine","events_processed":217,"events_dropped":0,"avg_latency_ms":233.84320958846453,"throughput_eps":0,"last_update":"2026-03-21T19:54:23.966047983Z"} +2026/03/21 19:54:28 [detection_layer] {"stage_name":"detection_layer","events_processed":217,"events_dropped":0,"avg_latency_ms":19.298198895389596,"throughput_eps":0,"last_update":"2026-03-21T19:54:23.966096576Z"} +2026/03/21 19:54:28 ───────────────────────────────────────────────── +2026/03/21 19:54:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:54:33 [transform_engine] {"stage_name":"transform_engine","events_processed":217,"events_dropped":0,"avg_latency_ms":233.84320958846453,"throughput_eps":0,"last_update":"2026-03-21T19:54:28.965054477Z"} +2026/03/21 19:54:33 [detection_layer] {"stage_name":"detection_layer","events_processed":217,"events_dropped":0,"avg_latency_ms":19.298198895389596,"throughput_eps":0,"last_update":"2026-03-21T19:54:28.966156829Z"} +2026/03/21 19:54:33 [log_collector] {"stage_name":"log_collector","events_processed":11805,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2361,"last_update":"2026-03-21T19:54:28.869642891Z"} +2026/03/21 19:54:33 [metric_collector] {"stage_name":"metric_collector","events_processed":6519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1303.8,"last_update":"2026-03-21T19:54:28.870201691Z"} +2026/03/21 19:54:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:54:28.878969886Z"} +2026/03/21 19:54:33 ───────────────────────────────────────────────── +2026/03/21 19:54:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:54:38 [log_collector] {"stage_name":"log_collector","events_processed":11819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2363.8,"last_update":"2026-03-21T19:54:33.87050241Z"} +2026/03/21 19:54:38 [metric_collector] {"stage_name":"metric_collector","events_processed":6524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1304.8,"last_update":"2026-03-21T19:54:33.870528711Z"} +2026/03/21 19:54:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:54:33.878808932Z"} +2026/03/21 19:54:38 [transform_engine] {"stage_name":"transform_engine","events_processed":217,"events_dropped":0,"avg_latency_ms":233.84320958846453,"throughput_eps":0,"last_update":"2026-03-21T19:54:33.96622846Z"} +2026/03/21 19:54:38 [detection_layer] {"stage_name":"detection_layer","events_processed":217,"events_dropped":0,"avg_latency_ms":19.298198895389596,"throughput_eps":0,"last_update":"2026-03-21T19:54:33.966130032Z"} +2026/03/21 19:54:38 ───────────────────────────────────────────────── +2026/03/21 19:54:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:54:43 [transform_engine] {"stage_name":"transform_engine","events_processed":217,"events_dropped":0,"avg_latency_ms":233.84320958846453,"throughput_eps":0,"last_update":"2026-03-21T19:54:38.965710488Z"} +2026/03/21 19:54:43 [detection_layer] {"stage_name":"detection_layer","events_processed":217,"events_dropped":0,"avg_latency_ms":19.298198895389596,"throughput_eps":0,"last_update":"2026-03-21T19:54:38.965674099Z"} +2026/03/21 19:54:43 [log_collector] {"stage_name":"log_collector","events_processed":11821,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2364.2,"last_update":"2026-03-21T19:54:38.869542734Z"} +2026/03/21 19:54:43 [metric_collector] {"stage_name":"metric_collector","events_processed":6529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1305.8,"last_update":"2026-03-21T19:54:38.869924084Z"} +2026/03/21 19:54:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:54:38.878485012Z"} +2026/03/21 19:54:43 ───────────────────────────────────────────────── +2026/03/21 19:54:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:54:48 [log_collector] {"stage_name":"log_collector","events_processed":11834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2366.8,"last_update":"2026-03-21T19:54:43.869696924Z"} +2026/03/21 19:54:48 [metric_collector] {"stage_name":"metric_collector","events_processed":6534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1306.8,"last_update":"2026-03-21T19:54:43.869984025Z"} +2026/03/21 19:54:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:54:43.878580581Z"} +2026/03/21 19:54:48 [transform_engine] {"stage_name":"transform_engine","events_processed":217,"events_dropped":0,"avg_latency_ms":233.84320958846453,"throughput_eps":0,"last_update":"2026-03-21T19:54:43.965766401Z"} +2026/03/21 19:54:48 [detection_layer] {"stage_name":"detection_layer","events_processed":217,"events_dropped":0,"avg_latency_ms":19.298198895389596,"throughput_eps":0,"last_update":"2026-03-21T19:54:43.965748797Z"} +2026/03/21 19:54:48 ───────────────────────────────────────────────── +2026/03/21 19:54:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:54:53 [log_collector] {"stage_name":"log_collector","events_processed":11835,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2367,"last_update":"2026-03-21T19:54:48.87026223Z"} +2026/03/21 19:54:53 [metric_collector] {"stage_name":"metric_collector","events_processed":6539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1307.8,"last_update":"2026-03-21T19:54:48.870573477Z"} +2026/03/21 19:54:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:54:48.879677545Z"} +2026/03/21 19:54:53 [transform_engine] {"stage_name":"transform_engine","events_processed":218,"events_dropped":0,"avg_latency_ms":210.73154527077165,"throughput_eps":0,"last_update":"2026-03-21T19:54:49.084258278Z"} +2026/03/21 19:54:53 [detection_layer] {"stage_name":"detection_layer","events_processed":217,"events_dropped":0,"avg_latency_ms":19.298198895389596,"throughput_eps":0,"last_update":"2026-03-21T19:54:48.96584271Z"} +2026/03/21 19:54:53 ───────────────────────────────────────────────── +2026/03/21 19:54:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:54:58 [transform_engine] {"stage_name":"transform_engine","events_processed":218,"events_dropped":0,"avg_latency_ms":210.73154527077165,"throughput_eps":0,"last_update":"2026-03-21T19:54:53.965155793Z"} +2026/03/21 19:54:58 [detection_layer] {"stage_name":"detection_layer","events_processed":218,"events_dropped":0,"avg_latency_ms":18.88907831631168,"throughput_eps":0,"last_update":"2026-03-21T19:54:53.966289384Z"} +2026/03/21 19:54:58 [log_collector] {"stage_name":"log_collector","events_processed":11835,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2367,"last_update":"2026-03-21T19:54:58.87010832Z"} +2026/03/21 19:54:58 [metric_collector] {"stage_name":"metric_collector","events_processed":6544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1308.8,"last_update":"2026-03-21T19:54:53.869890767Z"} +2026/03/21 19:54:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2620,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:54:53.877993147Z"} +2026/03/21 19:54:58 ───────────────────────────────────────────────── +2026/03/21 19:55:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:55:03 [log_collector] {"stage_name":"log_collector","events_processed":11835,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2367,"last_update":"2026-03-21T19:55:03.869437548Z"} +2026/03/21 19:55:03 [metric_collector] {"stage_name":"metric_collector","events_processed":6549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1309.8,"last_update":"2026-03-21T19:54:58.870626222Z"} +2026/03/21 19:55:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2622,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:54:58.879572178Z"} +2026/03/21 19:55:03 [transform_engine] {"stage_name":"transform_engine","events_processed":218,"events_dropped":0,"avg_latency_ms":210.73154527077165,"throughput_eps":0,"last_update":"2026-03-21T19:54:58.965908821Z"} +2026/03/21 19:55:03 [detection_layer] {"stage_name":"detection_layer","events_processed":218,"events_dropped":0,"avg_latency_ms":18.88907831631168,"throughput_eps":0,"last_update":"2026-03-21T19:54:58.965926395Z"} +2026/03/21 19:55:03 ───────────────────────────────────────────────── +2026/03/21 19:55:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:55:08 [log_collector] {"stage_name":"log_collector","events_processed":11835,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2367,"last_update":"2026-03-21T19:55:03.869437548Z"} +2026/03/21 19:55:08 [metric_collector] {"stage_name":"metric_collector","events_processed":6554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1310.8,"last_update":"2026-03-21T19:55:03.870027548Z"} +2026/03/21 19:55:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:55:03.878247092Z"} +2026/03/21 19:55:08 [transform_engine] {"stage_name":"transform_engine","events_processed":218,"events_dropped":0,"avg_latency_ms":210.73154527077165,"throughput_eps":0,"last_update":"2026-03-21T19:55:03.96551547Z"} +2026/03/21 19:55:08 [detection_layer] {"stage_name":"detection_layer","events_processed":218,"events_dropped":0,"avg_latency_ms":18.88907831631168,"throughput_eps":0,"last_update":"2026-03-21T19:55:03.965532532Z"} +2026/03/21 19:55:08 ───────────────────────────────────────────────── +2026/03/21 19:55:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:55:13 [metric_collector] {"stage_name":"metric_collector","events_processed":6558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1311.6,"last_update":"2026-03-21T19:55:08.86941819Z"} +2026/03/21 19:55:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:55:08.87814187Z"} +2026/03/21 19:55:13 [transform_engine] {"stage_name":"transform_engine","events_processed":218,"events_dropped":0,"avg_latency_ms":210.73154527077165,"throughput_eps":0,"last_update":"2026-03-21T19:55:08.965520078Z"} +2026/03/21 19:55:13 [detection_layer] {"stage_name":"detection_layer","events_processed":218,"events_dropped":0,"avg_latency_ms":18.88907831631168,"throughput_eps":0,"last_update":"2026-03-21T19:55:08.965474431Z"} +2026/03/21 19:55:13 [log_collector] {"stage_name":"log_collector","events_processed":11835,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2367,"last_update":"2026-03-21T19:55:13.869894547Z"} +2026/03/21 19:55:13 ───────────────────────────────────────────────── +2026/03/21 19:55:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:55:18 [log_collector] {"stage_name":"log_collector","events_processed":11835,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2367,"last_update":"2026-03-21T19:55:13.869894547Z"} +2026/03/21 19:55:18 [metric_collector] {"stage_name":"metric_collector","events_processed":6564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1312.8,"last_update":"2026-03-21T19:55:13.870296597Z"} +2026/03/21 19:55:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:55:13.879631418Z"} +2026/03/21 19:55:18 [transform_engine] {"stage_name":"transform_engine","events_processed":218,"events_dropped":0,"avg_latency_ms":210.73154527077165,"throughput_eps":0,"last_update":"2026-03-21T19:55:13.965975705Z"} +2026/03/21 19:55:18 [detection_layer] {"stage_name":"detection_layer","events_processed":218,"events_dropped":0,"avg_latency_ms":18.88907831631168,"throughput_eps":0,"last_update":"2026-03-21T19:55:13.966041011Z"} +2026/03/21 19:55:18 ───────────────────────────────────────────────── +2026/03/21 19:55:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:55:23 [log_collector] {"stage_name":"log_collector","events_processed":11835,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2367,"last_update":"2026-03-21T19:55:23.869848026Z"} +2026/03/21 19:55:23 [metric_collector] {"stage_name":"metric_collector","events_processed":6569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1313.8,"last_update":"2026-03-21T19:55:18.869876303Z"} +2026/03/21 19:55:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:55:18.877814268Z"} +2026/03/21 19:55:23 [transform_engine] {"stage_name":"transform_engine","events_processed":219,"events_dropped":0,"avg_latency_ms":185.5936750166173,"throughput_eps":0,"last_update":"2026-03-21T19:55:19.051188627Z"} +2026/03/21 19:55:23 [detection_layer] {"stage_name":"detection_layer","events_processed":218,"events_dropped":0,"avg_latency_ms":18.88907831631168,"throughput_eps":0,"last_update":"2026-03-21T19:55:18.966119301Z"} +2026/03/21 19:55:23 ───────────────────────────────────────────────── +2026/03/21 19:55:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:55:28 [log_collector] {"stage_name":"log_collector","events_processed":11835,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2367,"last_update":"2026-03-21T19:55:28.869510547Z"} +2026/03/21 19:55:28 [metric_collector] {"stage_name":"metric_collector","events_processed":6574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1314.8,"last_update":"2026-03-21T19:55:23.870438658Z"} +2026/03/21 19:55:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2632,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:55:23.879376889Z"} +2026/03/21 19:55:28 [transform_engine] {"stage_name":"transform_engine","events_processed":219,"events_dropped":0,"avg_latency_ms":185.5936750166173,"throughput_eps":0,"last_update":"2026-03-21T19:55:23.965553976Z"} +2026/03/21 19:55:28 [detection_layer] {"stage_name":"detection_layer","events_processed":219,"events_dropped":0,"avg_latency_ms":19.158110253049344,"throughput_eps":0,"last_update":"2026-03-21T19:55:23.965574224Z"} +2026/03/21 19:55:28 ───────────────────────────────────────────────── +2026/03/21 19:55:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:55:33 [log_collector] {"stage_name":"log_collector","events_processed":11835,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2367,"last_update":"2026-03-21T19:55:28.869510547Z"} +2026/03/21 19:55:33 [metric_collector] {"stage_name":"metric_collector","events_processed":6579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1315.8,"last_update":"2026-03-21T19:55:28.870212892Z"} +2026/03/21 19:55:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:55:28.878821602Z"} +2026/03/21 19:55:33 [transform_engine] {"stage_name":"transform_engine","events_processed":219,"events_dropped":0,"avg_latency_ms":185.5936750166173,"throughput_eps":0,"last_update":"2026-03-21T19:55:28.965984277Z"} +2026/03/21 19:55:33 [detection_layer] {"stage_name":"detection_layer","events_processed":219,"events_dropped":0,"avg_latency_ms":19.158110253049344,"throughput_eps":0,"last_update":"2026-03-21T19:55:28.965964499Z"} +2026/03/21 19:55:33 ───────────────────────────────────────────────── +2026/03/21 19:55:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:55:38 [metric_collector] {"stage_name":"metric_collector","events_processed":6584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1316.8,"last_update":"2026-03-21T19:55:33.870397317Z"} +2026/03/21 19:55:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:55:33.877986133Z"} +2026/03/21 19:55:38 [transform_engine] {"stage_name":"transform_engine","events_processed":219,"events_dropped":0,"avg_latency_ms":185.5936750166173,"throughput_eps":0,"last_update":"2026-03-21T19:55:33.965190217Z"} +2026/03/21 19:55:38 [detection_layer] {"stage_name":"detection_layer","events_processed":219,"events_dropped":0,"avg_latency_ms":19.158110253049344,"throughput_eps":0,"last_update":"2026-03-21T19:55:33.966386418Z"} +2026/03/21 19:55:38 [log_collector] {"stage_name":"log_collector","events_processed":11835,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2367,"last_update":"2026-03-21T19:55:33.869992692Z"} +2026/03/21 19:55:38 ───────────────────────────────────────────────── +2026/03/21 19:55:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:55:43 [log_collector] {"stage_name":"log_collector","events_processed":11835,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2367,"last_update":"2026-03-21T19:55:38.869674521Z"} +2026/03/21 19:55:43 [metric_collector] {"stage_name":"metric_collector","events_processed":6589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1317.8,"last_update":"2026-03-21T19:55:38.870317301Z"} +2026/03/21 19:55:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:55:38.878462584Z"} +2026/03/21 19:55:43 [transform_engine] {"stage_name":"transform_engine","events_processed":219,"events_dropped":0,"avg_latency_ms":185.5936750166173,"throughput_eps":0,"last_update":"2026-03-21T19:55:38.965915054Z"} +2026/03/21 19:55:43 [detection_layer] {"stage_name":"detection_layer","events_processed":219,"events_dropped":0,"avg_latency_ms":19.158110253049344,"throughput_eps":0,"last_update":"2026-03-21T19:55:38.965801847Z"} +2026/03/21 19:55:43 ───────────────────────────────────────────────── +Saved state: 12 clusters, 11836 messages, reason: none +2026/03/21 19:55:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:55:48 [metric_collector] {"stage_name":"metric_collector","events_processed":6594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1318.8,"last_update":"2026-03-21T19:55:43.869842147Z"} +2026/03/21 19:55:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2640,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:55:43.878388617Z"} +2026/03/21 19:55:48 [transform_engine] {"stage_name":"transform_engine","events_processed":219,"events_dropped":0,"avg_latency_ms":185.5936750166173,"throughput_eps":0,"last_update":"2026-03-21T19:55:43.965760462Z"} +2026/03/21 19:55:48 [detection_layer] {"stage_name":"detection_layer","events_processed":219,"events_dropped":0,"avg_latency_ms":19.158110253049344,"throughput_eps":0,"last_update":"2026-03-21T19:55:43.965725666Z"} +2026/03/21 19:55:48 [log_collector] {"stage_name":"log_collector","events_processed":11835,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2367,"last_update":"2026-03-21T19:55:43.869604442Z"} +2026/03/21 19:55:48 ───────────────────────────────────────────────── +2026/03/21 19:55:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:55:53 [log_collector] {"stage_name":"log_collector","events_processed":11840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2368,"last_update":"2026-03-21T19:55:53.870252112Z"} +2026/03/21 19:55:53 [metric_collector] {"stage_name":"metric_collector","events_processed":6599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1319.8,"last_update":"2026-03-21T19:55:48.869669537Z"} +2026/03/21 19:55:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:55:48.876420248Z"} +2026/03/21 19:55:53 [transform_engine] {"stage_name":"transform_engine","events_processed":220,"events_dropped":0,"avg_latency_ms":552.2956772132939,"throughput_eps":0,"last_update":"2026-03-21T19:55:50.984705866Z"} +2026/03/21 19:55:53 [detection_layer] {"stage_name":"detection_layer","events_processed":219,"events_dropped":0,"avg_latency_ms":19.158110253049344,"throughput_eps":0,"last_update":"2026-03-21T19:55:48.965626818Z"} +2026/03/21 19:55:53 ───────────────────────────────────────────────── +2026/03/21 19:55:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:55:58 [metric_collector] {"stage_name":"metric_collector","events_processed":6604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1320.8,"last_update":"2026-03-21T19:55:53.870692995Z"} +2026/03/21 19:55:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:55:53.878076218Z"} +2026/03/21 19:55:58 [transform_engine] {"stage_name":"transform_engine","events_processed":220,"events_dropped":0,"avg_latency_ms":552.2956772132939,"throughput_eps":0,"last_update":"2026-03-21T19:55:53.965471458Z"} +2026/03/21 19:55:58 [detection_layer] {"stage_name":"detection_layer","events_processed":220,"events_dropped":0,"avg_latency_ms":17.652938602439477,"throughput_eps":0,"last_update":"2026-03-21T19:55:53.965506276Z"} +2026/03/21 19:55:58 [log_collector] {"stage_name":"log_collector","events_processed":11840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2368,"last_update":"2026-03-21T19:55:53.870252112Z"} +2026/03/21 19:55:58 ───────────────────────────────────────────────── +2026/03/21 19:56:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:56:03 [log_collector] {"stage_name":"log_collector","events_processed":11840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2368,"last_update":"2026-03-21T19:55:58.869705789Z"} +2026/03/21 19:56:03 [metric_collector] {"stage_name":"metric_collector","events_processed":6609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1321.8,"last_update":"2026-03-21T19:55:58.869885294Z"} +2026/03/21 19:56:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2646,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:55:58.878073517Z"} +2026/03/21 19:56:03 [transform_engine] {"stage_name":"transform_engine","events_processed":220,"events_dropped":0,"avg_latency_ms":552.2956772132939,"throughput_eps":0,"last_update":"2026-03-21T19:55:58.965248747Z"} +2026/03/21 19:56:03 [detection_layer] {"stage_name":"detection_layer","events_processed":220,"events_dropped":0,"avg_latency_ms":17.652938602439477,"throughput_eps":0,"last_update":"2026-03-21T19:55:58.965277221Z"} +2026/03/21 19:56:03 ───────────────────────────────────────────────── +2026/03/21 19:56:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:56:08 [log_collector] {"stage_name":"log_collector","events_processed":11840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2368,"last_update":"2026-03-21T19:56:03.87070651Z"} +2026/03/21 19:56:08 [metric_collector] {"stage_name":"metric_collector","events_processed":6614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1322.8,"last_update":"2026-03-21T19:56:03.870912544Z"} +2026/03/21 19:56:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:56:03.879574505Z"} +2026/03/21 19:56:08 [transform_engine] {"stage_name":"transform_engine","events_processed":220,"events_dropped":0,"avg_latency_ms":552.2956772132939,"throughput_eps":0,"last_update":"2026-03-21T19:56:03.965783313Z"} +2026/03/21 19:56:08 [detection_layer] {"stage_name":"detection_layer","events_processed":220,"events_dropped":0,"avg_latency_ms":17.652938602439477,"throughput_eps":0,"last_update":"2026-03-21T19:56:03.965761922Z"} +2026/03/21 19:56:08 ───────────────────────────────────────────────── +2026/03/21 19:56:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:56:13 [log_collector] {"stage_name":"log_collector","events_processed":11840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2368,"last_update":"2026-03-21T19:56:08.869871759Z"} +2026/03/21 19:56:13 [metric_collector] {"stage_name":"metric_collector","events_processed":6619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1323.8,"last_update":"2026-03-21T19:56:08.870109304Z"} +2026/03/21 19:56:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2650,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:56:08.877592407Z"} +2026/03/21 19:56:13 [transform_engine] {"stage_name":"transform_engine","events_processed":220,"events_dropped":0,"avg_latency_ms":552.2956772132939,"throughput_eps":0,"last_update":"2026-03-21T19:56:08.965815684Z"} +2026/03/21 19:56:13 [detection_layer] {"stage_name":"detection_layer","events_processed":220,"events_dropped":0,"avg_latency_ms":17.652938602439477,"throughput_eps":0,"last_update":"2026-03-21T19:56:08.965797539Z"} +2026/03/21 19:56:13 ───────────────────────────────────────────────── +2026/03/21 19:56:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:56:18 [detection_layer] {"stage_name":"detection_layer","events_processed":220,"events_dropped":0,"avg_latency_ms":17.652938602439477,"throughput_eps":0,"last_update":"2026-03-21T19:56:13.965650232Z"} +2026/03/21 19:56:18 [log_collector] {"stage_name":"log_collector","events_processed":11840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2368,"last_update":"2026-03-21T19:56:13.869410431Z"} +2026/03/21 19:56:18 [metric_collector] {"stage_name":"metric_collector","events_processed":6624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1324.8,"last_update":"2026-03-21T19:56:13.869644759Z"} +2026/03/21 19:56:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:56:13.87751265Z"} +2026/03/21 19:56:18 [transform_engine] {"stage_name":"transform_engine","events_processed":220,"events_dropped":0,"avg_latency_ms":552.2956772132939,"throughput_eps":0,"last_update":"2026-03-21T19:56:13.96568056Z"} +2026/03/21 19:56:18 ───────────────────────────────────────────────── +2026/03/21 19:56:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:56:23 [log_collector] {"stage_name":"log_collector","events_processed":11840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2368,"last_update":"2026-03-21T19:56:18.86986196Z"} +2026/03/21 19:56:23 [metric_collector] {"stage_name":"metric_collector","events_processed":6629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1325.8,"last_update":"2026-03-21T19:56:18.87011237Z"} +2026/03/21 19:56:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:56:18.876837531Z"} +2026/03/21 19:56:23 [transform_engine] {"stage_name":"transform_engine","events_processed":221,"events_dropped":0,"avg_latency_ms":864.1472357706351,"throughput_eps":0,"last_update":"2026-03-21T19:56:21.077603351Z"} +2026/03/21 19:56:23 [detection_layer] {"stage_name":"detection_layer","events_processed":220,"events_dropped":0,"avg_latency_ms":17.652938602439477,"throughput_eps":0,"last_update":"2026-03-21T19:56:18.966072525Z"} +2026/03/21 19:56:23 ───────────────────────────────────────────────── +2026/03/21 19:56:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:56:28 [log_collector] {"stage_name":"log_collector","events_processed":11843,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2368.6,"last_update":"2026-03-21T19:56:28.869429517Z"} +2026/03/21 19:56:28 [metric_collector] {"stage_name":"metric_collector","events_processed":6634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1326.8,"last_update":"2026-03-21T19:56:23.869903429Z"} +2026/03/21 19:56:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:56:23.876683735Z"} +2026/03/21 19:56:28 [transform_engine] {"stage_name":"transform_engine","events_processed":221,"events_dropped":0,"avg_latency_ms":864.1472357706351,"throughput_eps":0,"last_update":"2026-03-21T19:56:23.965902218Z"} +2026/03/21 19:56:28 [detection_layer] {"stage_name":"detection_layer","events_processed":221,"events_dropped":0,"avg_latency_ms":17.372317881951584,"throughput_eps":0,"last_update":"2026-03-21T19:56:23.965870888Z"} +2026/03/21 19:56:28 ───────────────────────────────────────────────── +2026/03/21 19:56:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:56:33 [log_collector] {"stage_name":"log_collector","events_processed":11843,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2368.6,"last_update":"2026-03-21T19:56:28.869429517Z"} +2026/03/21 19:56:33 [metric_collector] {"stage_name":"metric_collector","events_processed":6639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1327.8,"last_update":"2026-03-21T19:56:28.869804846Z"} +2026/03/21 19:56:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:56:28.877396137Z"} +2026/03/21 19:56:33 [transform_engine] {"stage_name":"transform_engine","events_processed":221,"events_dropped":0,"avg_latency_ms":864.1472357706351,"throughput_eps":0,"last_update":"2026-03-21T19:56:28.965661264Z"} +2026/03/21 19:56:33 [detection_layer] {"stage_name":"detection_layer","events_processed":221,"events_dropped":0,"avg_latency_ms":17.372317881951584,"throughput_eps":0,"last_update":"2026-03-21T19:56:28.96571137Z"} +2026/03/21 19:56:33 ───────────────────────────────────────────────── +2026/03/21 19:56:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:56:38 [log_collector] {"stage_name":"log_collector","events_processed":11851,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2370.2,"last_update":"2026-03-21T19:56:33.869812325Z"} +2026/03/21 19:56:38 [metric_collector] {"stage_name":"metric_collector","events_processed":6643,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1328.6,"last_update":"2026-03-21T19:56:33.869822163Z"} +2026/03/21 19:56:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2660,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:56:33.879334003Z"} +2026/03/21 19:56:38 [transform_engine] {"stage_name":"transform_engine","events_processed":221,"events_dropped":0,"avg_latency_ms":864.1472357706351,"throughput_eps":0,"last_update":"2026-03-21T19:56:33.965481553Z"} +2026/03/21 19:56:38 [detection_layer] {"stage_name":"detection_layer","events_processed":221,"events_dropped":0,"avg_latency_ms":17.372317881951584,"throughput_eps":0,"last_update":"2026-03-21T19:56:33.965603937Z"} +2026/03/21 19:56:38 ───────────────────────────────────────────────── +2026/03/21 19:56:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:56:43 [log_collector] {"stage_name":"log_collector","events_processed":11930,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2386,"last_update":"2026-03-21T19:56:38.869671274Z"} +2026/03/21 19:56:43 [metric_collector] {"stage_name":"metric_collector","events_processed":6649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1329.8,"last_update":"2026-03-21T19:56:38.869979344Z"} +2026/03/21 19:56:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2662,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:56:38.876201633Z"} +2026/03/21 19:56:43 [transform_engine] {"stage_name":"transform_engine","events_processed":221,"events_dropped":0,"avg_latency_ms":864.1472357706351,"throughput_eps":0,"last_update":"2026-03-21T19:56:38.96593432Z"} +2026/03/21 19:56:43 [detection_layer] {"stage_name":"detection_layer","events_processed":221,"events_dropped":0,"avg_latency_ms":17.372317881951584,"throughput_eps":0,"last_update":"2026-03-21T19:56:38.965902058Z"} +2026/03/21 19:56:43 ───────────────────────────────────────────────── +2026/03/21 19:56:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:56:48 [detection_layer] {"stage_name":"detection_layer","events_processed":221,"events_dropped":0,"avg_latency_ms":17.372317881951584,"throughput_eps":0,"last_update":"2026-03-21T19:56:43.965571013Z"} +2026/03/21 19:56:48 [log_collector] {"stage_name":"log_collector","events_processed":12207,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2441.4,"last_update":"2026-03-21T19:56:43.869391848Z"} +2026/03/21 19:56:48 [metric_collector] {"stage_name":"metric_collector","events_processed":6654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1330.8,"last_update":"2026-03-21T19:56:43.869605398Z"} +2026/03/21 19:56:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:56:43.877367775Z"} +2026/03/21 19:56:48 [transform_engine] {"stage_name":"transform_engine","events_processed":221,"events_dropped":0,"avg_latency_ms":864.1472357706351,"throughput_eps":0,"last_update":"2026-03-21T19:56:43.965582415Z"} +2026/03/21 19:56:48 ───────────────────────────────────────────────── +2026/03/21 19:56:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:56:53 [log_collector] {"stage_name":"log_collector","events_processed":12207,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2441.4,"last_update":"2026-03-21T19:56:48.870785631Z"} +2026/03/21 19:56:53 [metric_collector] {"stage_name":"metric_collector","events_processed":6659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1331.8,"last_update":"2026-03-21T19:56:48.870890843Z"} +2026/03/21 19:56:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:56:48.87948792Z"} +2026/03/21 19:56:53 [transform_engine] {"stage_name":"transform_engine","events_processed":222,"events_dropped":0,"avg_latency_ms":715.9142476165081,"throughput_eps":0,"last_update":"2026-03-21T19:56:49.088862724Z"} +2026/03/21 19:56:53 [detection_layer] {"stage_name":"detection_layer","events_processed":221,"events_dropped":0,"avg_latency_ms":17.372317881951584,"throughput_eps":0,"last_update":"2026-03-21T19:56:48.965862175Z"} +2026/03/21 19:56:53 ───────────────────────────────────────────────── +2026/03/21 19:56:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:56:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2668,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:56:53.878647281Z"} +2026/03/21 19:56:58 [transform_engine] {"stage_name":"transform_engine","events_processed":222,"events_dropped":0,"avg_latency_ms":715.9142476165081,"throughput_eps":0,"last_update":"2026-03-21T19:56:53.965865923Z"} +2026/03/21 19:56:58 [detection_layer] {"stage_name":"detection_layer","events_processed":222,"events_dropped":0,"avg_latency_ms":17.245031705561267,"throughput_eps":0,"last_update":"2026-03-21T19:56:53.965855222Z"} +2026/03/21 19:56:58 [log_collector] {"stage_name":"log_collector","events_processed":12207,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2441.4,"last_update":"2026-03-21T19:56:58.870057156Z"} +2026/03/21 19:56:58 [metric_collector] {"stage_name":"metric_collector","events_processed":6664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1332.8,"last_update":"2026-03-21T19:56:53.87002181Z"} +2026/03/21 19:56:58 ───────────────────────────────────────────────── +Saved state: 12 clusters, 12208 messages, reason: none +2026/03/21 19:57:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:57:03 [transform_engine] {"stage_name":"transform_engine","events_processed":222,"events_dropped":0,"avg_latency_ms":715.9142476165081,"throughput_eps":0,"last_update":"2026-03-21T19:56:58.965429417Z"} +2026/03/21 19:57:03 [detection_layer] {"stage_name":"detection_layer","events_processed":222,"events_dropped":0,"avg_latency_ms":17.245031705561267,"throughput_eps":0,"last_update":"2026-03-21T19:56:58.965417303Z"} +2026/03/21 19:57:03 [log_collector] {"stage_name":"log_collector","events_processed":12210,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2442,"last_update":"2026-03-21T19:57:03.870067362Z"} +2026/03/21 19:57:03 [metric_collector] {"stage_name":"metric_collector","events_processed":6669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1333.8,"last_update":"2026-03-21T19:56:58.87042949Z"} +2026/03/21 19:57:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2670,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:56:58.87917357Z"} +2026/03/21 19:57:03 ───────────────────────────────────────────────── +2026/03/21 19:57:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:57:08 [transform_engine] {"stage_name":"transform_engine","events_processed":222,"events_dropped":0,"avg_latency_ms":715.9142476165081,"throughput_eps":0,"last_update":"2026-03-21T19:57:03.966035954Z"} +2026/03/21 19:57:08 [detection_layer] {"stage_name":"detection_layer","events_processed":222,"events_dropped":0,"avg_latency_ms":17.245031705561267,"throughput_eps":0,"last_update":"2026-03-21T19:57:03.96602345Z"} +2026/03/21 19:57:08 [log_collector] {"stage_name":"log_collector","events_processed":12210,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2442,"last_update":"2026-03-21T19:57:03.870067362Z"} +2026/03/21 19:57:08 [metric_collector] {"stage_name":"metric_collector","events_processed":6674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1334.8,"last_update":"2026-03-21T19:57:03.870301662Z"} +2026/03/21 19:57:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:57:03.876759912Z"} +2026/03/21 19:57:08 ───────────────────────────────────────────────── +2026/03/21 19:57:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:57:13 [detection_layer] {"stage_name":"detection_layer","events_processed":222,"events_dropped":0,"avg_latency_ms":17.245031705561267,"throughput_eps":0,"last_update":"2026-03-21T19:57:08.965593719Z"} +2026/03/21 19:57:13 [log_collector] {"stage_name":"log_collector","events_processed":12221,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2444.2,"last_update":"2026-03-21T19:57:13.869570794Z"} +2026/03/21 19:57:13 [metric_collector] {"stage_name":"metric_collector","events_processed":6679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1335.8,"last_update":"2026-03-21T19:57:08.870593944Z"} +2026/03/21 19:57:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:57:08.878401839Z"} +2026/03/21 19:57:13 [transform_engine] {"stage_name":"transform_engine","events_processed":222,"events_dropped":0,"avg_latency_ms":715.9142476165081,"throughput_eps":0,"last_update":"2026-03-21T19:57:08.965606214Z"} +2026/03/21 19:57:13 ───────────────────────────────────────────────── +2026/03/21 19:57:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:57:18 [log_collector] {"stage_name":"log_collector","events_processed":12221,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2444.2,"last_update":"2026-03-21T19:57:13.869570794Z"} +2026/03/21 19:57:18 [metric_collector] {"stage_name":"metric_collector","events_processed":6684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1336.8,"last_update":"2026-03-21T19:57:13.869954519Z"} +2026/03/21 19:57:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2676,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:57:13.877970443Z"} +2026/03/21 19:57:18 [transform_engine] {"stage_name":"transform_engine","events_processed":222,"events_dropped":0,"avg_latency_ms":715.9142476165081,"throughput_eps":0,"last_update":"2026-03-21T19:57:13.965118219Z"} +2026/03/21 19:57:18 [detection_layer] {"stage_name":"detection_layer","events_processed":222,"events_dropped":0,"avg_latency_ms":17.245031705561267,"throughput_eps":0,"last_update":"2026-03-21T19:57:13.966259565Z"} +2026/03/21 19:57:18 ───────────────────────────────────────────────── +2026/03/21 19:57:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:57:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:57:18.880182098Z"} +2026/03/21 19:57:23 [transform_engine] {"stage_name":"transform_engine","events_processed":223,"events_dropped":0,"avg_latency_ms":967.4901092932065,"throughput_eps":0,"last_update":"2026-03-21T19:57:20.939344321Z"} +2026/03/21 19:57:23 [detection_layer] {"stage_name":"detection_layer","events_processed":222,"events_dropped":0,"avg_latency_ms":17.245031705561267,"throughput_eps":0,"last_update":"2026-03-21T19:57:18.965527Z"} +2026/03/21 19:57:23 [log_collector] {"stage_name":"log_collector","events_processed":12237,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2447.4,"last_update":"2026-03-21T19:57:18.870583833Z"} +2026/03/21 19:57:23 [metric_collector] {"stage_name":"metric_collector","events_processed":6689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1337.8,"last_update":"2026-03-21T19:57:18.870525511Z"} +2026/03/21 19:57:23 ───────────────────────────────────────────────── +2026/03/21 19:57:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:57:28 [log_collector] {"stage_name":"log_collector","events_processed":12237,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2447.4,"last_update":"2026-03-21T19:57:28.870279438Z"} +2026/03/21 19:57:28 [metric_collector] {"stage_name":"metric_collector","events_processed":6694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1338.8,"last_update":"2026-03-21T19:57:23.870695091Z"} +2026/03/21 19:57:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:57:23.879164533Z"} +2026/03/21 19:57:28 [transform_engine] {"stage_name":"transform_engine","events_processed":223,"events_dropped":0,"avg_latency_ms":967.4901092932065,"throughput_eps":0,"last_update":"2026-03-21T19:57:23.96538376Z"} +2026/03/21 19:57:28 [detection_layer] {"stage_name":"detection_layer","events_processed":223,"events_dropped":0,"avg_latency_ms":17.661633564449016,"throughput_eps":0,"last_update":"2026-03-21T19:57:23.965372479Z"} +2026/03/21 19:57:28 ───────────────────────────────────────────────── +2026/03/21 19:57:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:57:33 [log_collector] {"stage_name":"log_collector","events_processed":12237,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2447.4,"last_update":"2026-03-21T19:57:33.869906012Z"} +2026/03/21 19:57:33 [metric_collector] {"stage_name":"metric_collector","events_processed":6699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1339.8,"last_update":"2026-03-21T19:57:28.870751652Z"} +2026/03/21 19:57:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:57:28.879332218Z"} +2026/03/21 19:57:33 [transform_engine] {"stage_name":"transform_engine","events_processed":223,"events_dropped":0,"avg_latency_ms":967.4901092932065,"throughput_eps":0,"last_update":"2026-03-21T19:57:28.965541576Z"} +2026/03/21 19:57:33 [detection_layer] {"stage_name":"detection_layer","events_processed":223,"events_dropped":0,"avg_latency_ms":17.661633564449016,"throughput_eps":0,"last_update":"2026-03-21T19:57:28.965533129Z"} +2026/03/21 19:57:33 ───────────────────────────────────────────────── +2026/03/21 19:57:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:57:38 [metric_collector] {"stage_name":"metric_collector","events_processed":6704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1340.8,"last_update":"2026-03-21T19:57:33.870565865Z"} +2026/03/21 19:57:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:57:33.879026652Z"} +2026/03/21 19:57:38 [transform_engine] {"stage_name":"transform_engine","events_processed":223,"events_dropped":0,"avg_latency_ms":967.4901092932065,"throughput_eps":0,"last_update":"2026-03-21T19:57:33.965221071Z"} +2026/03/21 19:57:38 [detection_layer] {"stage_name":"detection_layer","events_processed":223,"events_dropped":0,"avg_latency_ms":17.661633564449016,"throughput_eps":0,"last_update":"2026-03-21T19:57:33.965288591Z"} +2026/03/21 19:57:38 [log_collector] {"stage_name":"log_collector","events_processed":12237,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2447.4,"last_update":"2026-03-21T19:57:33.869906012Z"} +2026/03/21 19:57:38 ───────────────────────────────────────────────── +2026/03/21 19:57:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:57:43 [log_collector] {"stage_name":"log_collector","events_processed":12237,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2447.4,"last_update":"2026-03-21T19:57:43.869436022Z"} +2026/03/21 19:57:43 [metric_collector] {"stage_name":"metric_collector","events_processed":6709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1341.8,"last_update":"2026-03-21T19:57:38.870446493Z"} +2026/03/21 19:57:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:57:38.879783628Z"} +2026/03/21 19:57:43 [transform_engine] {"stage_name":"transform_engine","events_processed":223,"events_dropped":0,"avg_latency_ms":967.4901092932065,"throughput_eps":0,"last_update":"2026-03-21T19:57:38.965965664Z"} +2026/03/21 19:57:43 [detection_layer] {"stage_name":"detection_layer","events_processed":223,"events_dropped":0,"avg_latency_ms":17.661633564449016,"throughput_eps":0,"last_update":"2026-03-21T19:57:38.965956195Z"} +2026/03/21 19:57:43 ───────────────────────────────────────────────── +2026/03/21 19:57:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:57:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2688,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:57:43.878244615Z"} +2026/03/21 19:57:48 [transform_engine] {"stage_name":"transform_engine","events_processed":223,"events_dropped":0,"avg_latency_ms":967.4901092932065,"throughput_eps":0,"last_update":"2026-03-21T19:57:43.965634393Z"} +2026/03/21 19:57:48 [detection_layer] {"stage_name":"detection_layer","events_processed":223,"events_dropped":0,"avg_latency_ms":17.661633564449016,"throughput_eps":0,"last_update":"2026-03-21T19:57:43.965618653Z"} +2026/03/21 19:57:48 [log_collector] {"stage_name":"log_collector","events_processed":12237,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2447.4,"last_update":"2026-03-21T19:57:48.869421074Z"} +2026/03/21 19:57:48 [metric_collector] {"stage_name":"metric_collector","events_processed":6714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1342.8,"last_update":"2026-03-21T19:57:43.869844685Z"} +2026/03/21 19:57:48 ───────────────────────────────────────────────── +2026/03/21 19:57:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:57:53 [detection_layer] {"stage_name":"detection_layer","events_processed":223,"events_dropped":0,"avg_latency_ms":17.661633564449016,"throughput_eps":0,"last_update":"2026-03-21T19:57:48.965384405Z"} +2026/03/21 19:57:53 [log_collector] {"stage_name":"log_collector","events_processed":12237,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2447.4,"last_update":"2026-03-21T19:57:48.869421074Z"} +2026/03/21 19:57:53 [metric_collector] {"stage_name":"metric_collector","events_processed":6719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1343.8,"last_update":"2026-03-21T19:57:48.869832663Z"} +2026/03/21 19:57:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:57:48.879185989Z"} +2026/03/21 19:57:53 [transform_engine] {"stage_name":"transform_engine","events_processed":224,"events_dropped":0,"avg_latency_ms":787.5808578345653,"throughput_eps":0,"last_update":"2026-03-21T19:57:49.033338908Z"} +2026/03/21 19:57:53 ───────────────────────────────────────────────── +2026/03/21 19:57:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:57:58 [transform_engine] {"stage_name":"transform_engine","events_processed":224,"events_dropped":0,"avg_latency_ms":787.5808578345653,"throughput_eps":0,"last_update":"2026-03-21T19:57:53.965795724Z"} +2026/03/21 19:57:58 [detection_layer] {"stage_name":"detection_layer","events_processed":224,"events_dropped":0,"avg_latency_ms":18.475170851559213,"throughput_eps":0,"last_update":"2026-03-21T19:57:53.965790014Z"} +2026/03/21 19:57:58 [log_collector] {"stage_name":"log_collector","events_processed":12237,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2447.4,"last_update":"2026-03-21T19:57:53.86951249Z"} +2026/03/21 19:57:58 [metric_collector] {"stage_name":"metric_collector","events_processed":6724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1344.8,"last_update":"2026-03-21T19:57:53.869879093Z"} +2026/03/21 19:57:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:57:53.878600668Z"} +2026/03/21 19:57:58 ───────────────────────────────────────────────── +2026/03/21 19:58:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:58:03 [log_collector] {"stage_name":"log_collector","events_processed":12237,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2447.4,"last_update":"2026-03-21T19:57:58.869677964Z"} +2026/03/21 19:58:03 [metric_collector] {"stage_name":"metric_collector","events_processed":6729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1345.8,"last_update":"2026-03-21T19:57:58.869819314Z"} +2026/03/21 19:58:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:57:58.878178256Z"} +2026/03/21 19:58:03 [transform_engine] {"stage_name":"transform_engine","events_processed":224,"events_dropped":0,"avg_latency_ms":787.5808578345653,"throughput_eps":0,"last_update":"2026-03-21T19:57:58.965420983Z"} +2026/03/21 19:58:03 [detection_layer] {"stage_name":"detection_layer","events_processed":224,"events_dropped":0,"avg_latency_ms":18.475170851559213,"throughput_eps":0,"last_update":"2026-03-21T19:57:58.965411925Z"} +2026/03/21 19:58:03 ───────────────────────────────────────────────── +2026/03/21 19:58:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:58:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:58:03.878070584Z"} +2026/03/21 19:58:08 [transform_engine] {"stage_name":"transform_engine","events_processed":224,"events_dropped":0,"avg_latency_ms":787.5808578345653,"throughput_eps":0,"last_update":"2026-03-21T19:58:03.965208691Z"} +2026/03/21 19:58:08 [detection_layer] {"stage_name":"detection_layer","events_processed":224,"events_dropped":0,"avg_latency_ms":18.475170851559213,"throughput_eps":0,"last_update":"2026-03-21T19:58:03.965267863Z"} +2026/03/21 19:58:08 [log_collector] {"stage_name":"log_collector","events_processed":12237,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2447.4,"last_update":"2026-03-21T19:58:03.869528112Z"} +2026/03/21 19:58:08 [metric_collector] {"stage_name":"metric_collector","events_processed":6734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1346.8,"last_update":"2026-03-21T19:58:03.869768171Z"} +2026/03/21 19:58:08 ───────────────────────────────────────────────── +2026/03/21 19:58:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:58:13 [log_collector] {"stage_name":"log_collector","events_processed":12237,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2447.4,"last_update":"2026-03-21T19:58:08.869856471Z"} +2026/03/21 19:58:13 [metric_collector] {"stage_name":"metric_collector","events_processed":6739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1347.8,"last_update":"2026-03-21T19:58:08.87012741Z"} +2026/03/21 19:58:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:58:08.878963345Z"} +2026/03/21 19:58:13 [transform_engine] {"stage_name":"transform_engine","events_processed":224,"events_dropped":0,"avg_latency_ms":787.5808578345653,"throughput_eps":0,"last_update":"2026-03-21T19:58:08.965147755Z"} +2026/03/21 19:58:13 [detection_layer] {"stage_name":"detection_layer","events_processed":224,"events_dropped":0,"avg_latency_ms":18.475170851559213,"throughput_eps":0,"last_update":"2026-03-21T19:58:08.966303849Z"} +2026/03/21 19:58:13 ───────────────────────────────────────────────── +2026/03/21 19:58:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:58:18 [log_collector] {"stage_name":"log_collector","events_processed":12237,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2447.4,"last_update":"2026-03-21T19:58:13.869587636Z"} +2026/03/21 19:58:18 [metric_collector] {"stage_name":"metric_collector","events_processed":6744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1348.8,"last_update":"2026-03-21T19:58:13.869888893Z"} +2026/03/21 19:58:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2700,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:58:13.878536016Z"} +2026/03/21 19:58:18 [transform_engine] {"stage_name":"transform_engine","events_processed":224,"events_dropped":0,"avg_latency_ms":787.5808578345653,"throughput_eps":0,"last_update":"2026-03-21T19:58:13.965875728Z"} +2026/03/21 19:58:18 [detection_layer] {"stage_name":"detection_layer","events_processed":224,"events_dropped":0,"avg_latency_ms":18.475170851559213,"throughput_eps":0,"last_update":"2026-03-21T19:58:13.965864617Z"} +2026/03/21 19:58:18 ───────────────────────────────────────────────── +Saved state: 12 clusters, 12238 messages, reason: none +2026/03/21 19:58:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:58:23 [log_collector] {"stage_name":"log_collector","events_processed":12237,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2447.4,"last_update":"2026-03-21T19:58:18.869660211Z"} +2026/03/21 19:58:23 [metric_collector] {"stage_name":"metric_collector","events_processed":6749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1349.8,"last_update":"2026-03-21T19:58:18.869751065Z"} +2026/03/21 19:58:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2702,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:58:18.878754631Z"} +2026/03/21 19:58:23 [transform_engine] {"stage_name":"transform_engine","events_processed":225,"events_dropped":0,"avg_latency_ms":643.8998546676523,"throughput_eps":0,"last_update":"2026-03-21T19:58:19.03511644Z"} +2026/03/21 19:58:23 [detection_layer] {"stage_name":"detection_layer","events_processed":224,"events_dropped":0,"avg_latency_ms":18.475170851559213,"throughput_eps":0,"last_update":"2026-03-21T19:58:18.965931301Z"} +2026/03/21 19:58:23 ───────────────────────────────────────────────── +2026/03/21 19:58:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:58:28 [log_collector] {"stage_name":"log_collector","events_processed":12240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2448,"last_update":"2026-03-21T19:58:23.869536589Z"} +2026/03/21 19:58:28 [metric_collector] {"stage_name":"metric_collector","events_processed":6754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1350.8,"last_update":"2026-03-21T19:58:23.87009559Z"} +2026/03/21 19:58:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:58:23.878029888Z"} +2026/03/21 19:58:28 [transform_engine] {"stage_name":"transform_engine","events_processed":225,"events_dropped":0,"avg_latency_ms":643.8998546676523,"throughput_eps":0,"last_update":"2026-03-21T19:58:23.965170518Z"} +2026/03/21 19:58:28 [detection_layer] {"stage_name":"detection_layer","events_processed":225,"events_dropped":0,"avg_latency_ms":18.67283688124737,"throughput_eps":0,"last_update":"2026-03-21T19:58:23.966301324Z"} +2026/03/21 19:58:28 ───────────────────────────────────────────────── +2026/03/21 19:58:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:58:33 [log_collector] {"stage_name":"log_collector","events_processed":12251,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2450.2,"last_update":"2026-03-21T19:58:33.869807661Z"} +2026/03/21 19:58:33 [metric_collector] {"stage_name":"metric_collector","events_processed":6759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1351.8,"last_update":"2026-03-21T19:58:28.869877776Z"} +2026/03/21 19:58:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:58:28.878391933Z"} +2026/03/21 19:58:33 [transform_engine] {"stage_name":"transform_engine","events_processed":225,"events_dropped":0,"avg_latency_ms":643.8998546676523,"throughput_eps":0,"last_update":"2026-03-21T19:58:28.965566019Z"} +2026/03/21 19:58:33 [detection_layer] {"stage_name":"detection_layer","events_processed":225,"events_dropped":0,"avg_latency_ms":18.67283688124737,"throughput_eps":0,"last_update":"2026-03-21T19:58:28.965558455Z"} +2026/03/21 19:58:33 ───────────────────────────────────────────────── +2026/03/21 19:58:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:58:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:58:33.879125197Z"} +2026/03/21 19:58:38 [transform_engine] {"stage_name":"transform_engine","events_processed":225,"events_dropped":0,"avg_latency_ms":643.8998546676523,"throughput_eps":0,"last_update":"2026-03-21T19:58:33.96544687Z"} +2026/03/21 19:58:38 [detection_layer] {"stage_name":"detection_layer","events_processed":225,"events_dropped":0,"avg_latency_ms":18.67283688124737,"throughput_eps":0,"last_update":"2026-03-21T19:58:33.965438294Z"} +2026/03/21 19:58:38 [log_collector] {"stage_name":"log_collector","events_processed":12251,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2450.2,"last_update":"2026-03-21T19:58:38.869408663Z"} +2026/03/21 19:58:38 [metric_collector] {"stage_name":"metric_collector","events_processed":6764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1352.8,"last_update":"2026-03-21T19:58:33.870192357Z"} +2026/03/21 19:58:38 ───────────────────────────────────────────────── +2026/03/21 19:58:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:58:43 [transform_engine] {"stage_name":"transform_engine","events_processed":225,"events_dropped":0,"avg_latency_ms":643.8998546676523,"throughput_eps":0,"last_update":"2026-03-21T19:58:38.965743234Z"} +2026/03/21 19:58:43 [detection_layer] {"stage_name":"detection_layer","events_processed":225,"events_dropped":0,"avg_latency_ms":18.67283688124737,"throughput_eps":0,"last_update":"2026-03-21T19:58:38.965779093Z"} +2026/03/21 19:58:43 [log_collector] {"stage_name":"log_collector","events_processed":12251,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2450.2,"last_update":"2026-03-21T19:58:38.869408663Z"} +2026/03/21 19:58:43 [metric_collector] {"stage_name":"metric_collector","events_processed":6769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1353.8,"last_update":"2026-03-21T19:58:38.869722173Z"} +2026/03/21 19:58:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:58:38.878551485Z"} +2026/03/21 19:58:43 ───────────────────────────────────────────────── +2026/03/21 19:58:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:58:48 [log_collector] {"stage_name":"log_collector","events_processed":12251,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2450.2,"last_update":"2026-03-21T19:58:48.870018629Z"} +2026/03/21 19:58:48 [metric_collector] {"stage_name":"metric_collector","events_processed":6774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1354.8,"last_update":"2026-03-21T19:58:43.870426236Z"} +2026/03/21 19:58:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2712,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:58:43.878903013Z"} +2026/03/21 19:58:48 [transform_engine] {"stage_name":"transform_engine","events_processed":225,"events_dropped":0,"avg_latency_ms":643.8998546676523,"throughput_eps":0,"last_update":"2026-03-21T19:58:43.965129874Z"} +2026/03/21 19:58:48 [detection_layer] {"stage_name":"detection_layer","events_processed":225,"events_dropped":0,"avg_latency_ms":18.67283688124737,"throughput_eps":0,"last_update":"2026-03-21T19:58:43.966251783Z"} +2026/03/21 19:58:48 ───────────────────────────────────────────────── +2026/03/21 19:58:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:58:53 [transform_engine] {"stage_name":"transform_engine","events_processed":226,"events_dropped":0,"avg_latency_ms":1144.260675934122,"throughput_eps":0,"last_update":"2026-03-21T19:58:52.111573365Z"} +2026/03/21 19:58:53 [detection_layer] {"stage_name":"detection_layer","events_processed":225,"events_dropped":0,"avg_latency_ms":18.67283688124737,"throughput_eps":0,"last_update":"2026-03-21T19:58:48.965944187Z"} +2026/03/21 19:58:53 [log_collector] {"stage_name":"log_collector","events_processed":12251,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2450.2,"last_update":"2026-03-21T19:58:48.870018629Z"} +2026/03/21 19:58:53 [metric_collector] {"stage_name":"metric_collector","events_processed":6779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1355.8,"last_update":"2026-03-21T19:58:48.870575967Z"} +2026/03/21 19:58:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:58:48.879570846Z"} +2026/03/21 19:58:53 ───────────────────────────────────────────────── +2026/03/21 19:58:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:58:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:58:53.879552031Z"} +2026/03/21 19:58:58 [transform_engine] {"stage_name":"transform_engine","events_processed":226,"events_dropped":0,"avg_latency_ms":1144.260675934122,"throughput_eps":0,"last_update":"2026-03-21T19:58:53.965834058Z"} +2026/03/21 19:58:58 [detection_layer] {"stage_name":"detection_layer","events_processed":226,"events_dropped":0,"avg_latency_ms":19.0125415049979,"throughput_eps":0,"last_update":"2026-03-21T19:58:53.965806836Z"} +2026/03/21 19:58:58 [log_collector] {"stage_name":"log_collector","events_processed":12251,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2450.2,"last_update":"2026-03-21T19:58:53.870081421Z"} +2026/03/21 19:58:58 [metric_collector] {"stage_name":"metric_collector","events_processed":6784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1356.8,"last_update":"2026-03-21T19:58:53.870622177Z"} +2026/03/21 19:58:58 ───────────────────────────────────────────────── +2026/03/21 19:59:03 ── Pipeline Health ────────────────────────────── +2026/03/21 19:59:03 [log_collector] {"stage_name":"log_collector","events_processed":12251,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2450.2,"last_update":"2026-03-21T19:58:58.870413706Z"} +2026/03/21 19:59:03 [metric_collector] {"stage_name":"metric_collector","events_processed":6789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1357.8,"last_update":"2026-03-21T19:58:58.870594523Z"} +2026/03/21 19:59:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2718,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:58:58.880186304Z"} +2026/03/21 19:59:03 [transform_engine] {"stage_name":"transform_engine","events_processed":226,"events_dropped":0,"avg_latency_ms":1144.260675934122,"throughput_eps":0,"last_update":"2026-03-21T19:58:58.965682386Z"} +2026/03/21 19:59:03 [detection_layer] {"stage_name":"detection_layer","events_processed":226,"events_dropped":0,"avg_latency_ms":19.0125415049979,"throughput_eps":0,"last_update":"2026-03-21T19:58:58.965659482Z"} +2026/03/21 19:59:03 ───────────────────────────────────────────────── +2026/03/21 19:59:08 ── Pipeline Health ────────────────────────────── +2026/03/21 19:59:08 [detection_layer] {"stage_name":"detection_layer","events_processed":226,"events_dropped":0,"avg_latency_ms":19.0125415049979,"throughput_eps":0,"last_update":"2026-03-21T19:59:03.965909356Z"} +2026/03/21 19:59:08 [log_collector] {"stage_name":"log_collector","events_processed":12251,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2450.2,"last_update":"2026-03-21T19:59:03.869732276Z"} +2026/03/21 19:59:08 [metric_collector] {"stage_name":"metric_collector","events_processed":6794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1358.8,"last_update":"2026-03-21T19:59:03.870160617Z"} +2026/03/21 19:59:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:59:03.880503147Z"} +2026/03/21 19:59:08 [transform_engine] {"stage_name":"transform_engine","events_processed":226,"events_dropped":0,"avg_latency_ms":1144.260675934122,"throughput_eps":0,"last_update":"2026-03-21T19:59:03.965953451Z"} +2026/03/21 19:59:08 ───────────────────────────────────────────────── +2026/03/21 19:59:13 ── Pipeline Health ────────────────────────────── +2026/03/21 19:59:13 [log_collector] {"stage_name":"log_collector","events_processed":12251,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2450.2,"last_update":"2026-03-21T19:59:08.869411215Z"} +2026/03/21 19:59:13 [metric_collector] {"stage_name":"metric_collector","events_processed":6799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1359.8,"last_update":"2026-03-21T19:59:08.86980539Z"} +2026/03/21 19:59:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2722,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:59:08.879018558Z"} +2026/03/21 19:59:13 [transform_engine] {"stage_name":"transform_engine","events_processed":226,"events_dropped":0,"avg_latency_ms":1144.260675934122,"throughput_eps":0,"last_update":"2026-03-21T19:59:08.965155105Z"} +2026/03/21 19:59:13 [detection_layer] {"stage_name":"detection_layer","events_processed":226,"events_dropped":0,"avg_latency_ms":19.0125415049979,"throughput_eps":0,"last_update":"2026-03-21T19:59:08.966265963Z"} +2026/03/21 19:59:13 ───────────────────────────────────────────────── +2026/03/21 19:59:18 ── Pipeline Health ────────────────────────────── +2026/03/21 19:59:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:59:13.878420544Z"} +2026/03/21 19:59:18 [transform_engine] {"stage_name":"transform_engine","events_processed":226,"events_dropped":0,"avg_latency_ms":1144.260675934122,"throughput_eps":0,"last_update":"2026-03-21T19:59:13.96571564Z"} +2026/03/21 19:59:18 [detection_layer] {"stage_name":"detection_layer","events_processed":226,"events_dropped":0,"avg_latency_ms":19.0125415049979,"throughput_eps":0,"last_update":"2026-03-21T19:59:13.965769383Z"} +2026/03/21 19:59:18 [log_collector] {"stage_name":"log_collector","events_processed":12251,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2450.2,"last_update":"2026-03-21T19:59:13.86940724Z"} +2026/03/21 19:59:18 [metric_collector] {"stage_name":"metric_collector","events_processed":6804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1360.8,"last_update":"2026-03-21T19:59:13.869895976Z"} +2026/03/21 19:59:18 ───────────────────────────────────────────────── +2026/03/21 19:59:23 ── Pipeline Health ────────────────────────────── +2026/03/21 19:59:23 [log_collector] {"stage_name":"log_collector","events_processed":12251,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2450.2,"last_update":"2026-03-21T19:59:18.869428991Z"} +2026/03/21 19:59:23 [metric_collector] {"stage_name":"metric_collector","events_processed":6809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1361.8,"last_update":"2026-03-21T19:59:18.869760065Z"} +2026/03/21 19:59:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:59:18.877683332Z"} +2026/03/21 19:59:23 [transform_engine] {"stage_name":"transform_engine","events_processed":227,"events_dropped":0,"avg_latency_ms":929.0264287472976,"throughput_eps":0,"last_update":"2026-03-21T19:59:19.034239082Z"} +2026/03/21 19:59:23 [detection_layer] {"stage_name":"detection_layer","events_processed":226,"events_dropped":0,"avg_latency_ms":19.0125415049979,"throughput_eps":0,"last_update":"2026-03-21T19:59:18.966117631Z"} +2026/03/21 19:59:23 ───────────────────────────────────────────────── +2026/03/21 19:59:28 ── Pipeline Health ────────────────────────────── +2026/03/21 19:59:28 [log_collector] {"stage_name":"log_collector","events_processed":12251,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2450.2,"last_update":"2026-03-21T19:59:23.86965363Z"} +2026/03/21 19:59:28 [metric_collector] {"stage_name":"metric_collector","events_processed":6814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1362.8,"last_update":"2026-03-21T19:59:23.870072914Z"} +2026/03/21 19:59:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2728,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:59:23.878851959Z"} +2026/03/21 19:59:28 [transform_engine] {"stage_name":"transform_engine","events_processed":227,"events_dropped":0,"avg_latency_ms":929.0264287472976,"throughput_eps":0,"last_update":"2026-03-21T19:59:23.966192092Z"} +2026/03/21 19:59:28 [detection_layer] {"stage_name":"detection_layer","events_processed":227,"events_dropped":0,"avg_latency_ms":19.36979500399832,"throughput_eps":0,"last_update":"2026-03-21T19:59:23.96608672Z"} +2026/03/21 19:59:28 ───────────────────────────────────────────────── +Saved state: 12 clusters, 12252 messages, reason: none +2026/03/21 19:59:33 ── Pipeline Health ────────────────────────────── +2026/03/21 19:59:33 [transform_engine] {"stage_name":"transform_engine","events_processed":227,"events_dropped":0,"avg_latency_ms":929.0264287472976,"throughput_eps":0,"last_update":"2026-03-21T19:59:28.966053482Z"} +2026/03/21 19:59:33 [detection_layer] {"stage_name":"detection_layer","events_processed":227,"events_dropped":0,"avg_latency_ms":19.36979500399832,"throughput_eps":0,"last_update":"2026-03-21T19:59:28.966091123Z"} +2026/03/21 19:59:33 [log_collector] {"stage_name":"log_collector","events_processed":12251,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2450.2,"last_update":"2026-03-21T19:59:28.869515541Z"} +2026/03/21 19:59:33 [metric_collector] {"stage_name":"metric_collector","events_processed":6819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1363.8,"last_update":"2026-03-21T19:59:28.869883396Z"} +2026/03/21 19:59:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2730,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:59:28.879697564Z"} +2026/03/21 19:59:33 ───────────────────────────────────────────────── +2026/03/21 19:59:38 ── Pipeline Health ────────────────────────────── +2026/03/21 19:59:38 [metric_collector] {"stage_name":"metric_collector","events_processed":6824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1364.8,"last_update":"2026-03-21T19:59:33.870298655Z"} +2026/03/21 19:59:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:59:33.876536422Z"} +2026/03/21 19:59:38 [transform_engine] {"stage_name":"transform_engine","events_processed":227,"events_dropped":0,"avg_latency_ms":929.0264287472976,"throughput_eps":0,"last_update":"2026-03-21T19:59:33.96572758Z"} +2026/03/21 19:59:38 [detection_layer] {"stage_name":"detection_layer","events_processed":227,"events_dropped":0,"avg_latency_ms":19.36979500399832,"throughput_eps":0,"last_update":"2026-03-21T19:59:33.965740295Z"} +2026/03/21 19:59:38 [log_collector] {"stage_name":"log_collector","events_processed":12256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2451.2,"last_update":"2026-03-21T19:59:38.869935801Z"} +2026/03/21 19:59:38 ───────────────────────────────────────────────── +2026/03/21 19:59:43 ── Pipeline Health ────────────────────────────── +2026/03/21 19:59:43 [log_collector] {"stage_name":"log_collector","events_processed":12256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2451.2,"last_update":"2026-03-21T19:59:38.869935801Z"} +2026/03/21 19:59:43 [metric_collector] {"stage_name":"metric_collector","events_processed":6829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1365.8,"last_update":"2026-03-21T19:59:38.870195829Z"} +2026/03/21 19:59:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:59:38.876421835Z"} +2026/03/21 19:59:43 [transform_engine] {"stage_name":"transform_engine","events_processed":227,"events_dropped":0,"avg_latency_ms":929.0264287472976,"throughput_eps":0,"last_update":"2026-03-21T19:59:38.965589238Z"} +2026/03/21 19:59:43 [detection_layer] {"stage_name":"detection_layer","events_processed":227,"events_dropped":0,"avg_latency_ms":19.36979500399832,"throughput_eps":0,"last_update":"2026-03-21T19:59:38.965567957Z"} +2026/03/21 19:59:43 ───────────────────────────────────────────────── +2026/03/21 19:59:48 ── Pipeline Health ────────────────────────────── +2026/03/21 19:59:48 [metric_collector] {"stage_name":"metric_collector","events_processed":6834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1366.8,"last_update":"2026-03-21T19:59:43.869787597Z"} +2026/03/21 19:59:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2736,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:59:43.880007734Z"} +2026/03/21 19:59:48 [transform_engine] {"stage_name":"transform_engine","events_processed":227,"events_dropped":0,"avg_latency_ms":929.0264287472976,"throughput_eps":0,"last_update":"2026-03-21T19:59:43.965092005Z"} +2026/03/21 19:59:48 [detection_layer] {"stage_name":"detection_layer","events_processed":227,"events_dropped":0,"avg_latency_ms":19.36979500399832,"throughput_eps":0,"last_update":"2026-03-21T19:59:43.965265156Z"} +2026/03/21 19:59:48 [log_collector] {"stage_name":"log_collector","events_processed":12256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2451.2,"last_update":"2026-03-21T19:59:43.869405746Z"} +2026/03/21 19:59:48 ───────────────────────────────────────────────── +2026/03/21 19:59:51 [ANOMALY] time=2026-03-21T19:59:50Z score=0.9463 method=SEAD details=MAD!:w=0.25,s=0.96 RRCF-fast!:w=0.20,s=0.97 RRCF-mid!:w=0.18,s=0.93 RRCF-slow!:w=0.15,s=0.89 COPOD!:w=0.22,s=0.97 +2026/03/21 19:59:53 ── Pipeline Health ────────────────────────────── +2026/03/21 19:59:53 [detection_layer] {"stage_name":"detection_layer","events_processed":227,"events_dropped":0,"avg_latency_ms":19.36979500399832,"throughput_eps":0,"last_update":"2026-03-21T19:59:48.965758148Z"} +2026/03/21 19:59:53 [log_collector] {"stage_name":"log_collector","events_processed":12256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2451.2,"last_update":"2026-03-21T19:59:48.86944068Z"} +2026/03/21 19:59:53 [metric_collector] {"stage_name":"metric_collector","events_processed":6839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1367.8,"last_update":"2026-03-21T19:59:48.869940968Z"} +2026/03/21 19:59:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2738,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:59:48.877554471Z"} +2026/03/21 19:59:53 [transform_engine] {"stage_name":"transform_engine","events_processed":228,"events_dropped":0,"avg_latency_ms":1151.497378397838,"throughput_eps":0,"last_update":"2026-03-21T19:59:51.007242222Z"} +2026/03/21 19:59:53 ───────────────────────────────────────────────── +2026/03/21 19:59:58 ── Pipeline Health ────────────────────────────── +2026/03/21 19:59:58 [log_collector] {"stage_name":"log_collector","events_processed":12256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2451.2,"last_update":"2026-03-21T19:59:53.869846483Z"} +2026/03/21 19:59:58 [metric_collector] {"stage_name":"metric_collector","events_processed":6844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1368.8,"last_update":"2026-03-21T19:59:53.869841614Z"} +2026/03/21 19:59:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2740,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:59:53.877059819Z"} +2026/03/21 19:59:58 [transform_engine] {"stage_name":"transform_engine","events_processed":228,"events_dropped":0,"avg_latency_ms":1151.497378397838,"throughput_eps":0,"last_update":"2026-03-21T19:59:53.965321277Z"} +2026/03/21 19:59:58 [detection_layer] {"stage_name":"detection_layer","events_processed":228,"events_dropped":0,"avg_latency_ms":17.673240603198657,"throughput_eps":0,"last_update":"2026-03-21T19:59:53.965333942Z"} +2026/03/21 19:59:58 ───────────────────────────────────────────────── +2026/03/21 20:00:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:00:03 [log_collector] {"stage_name":"log_collector","events_processed":12256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2451.2,"last_update":"2026-03-21T19:59:58.86990009Z"} +2026/03/21 20:00:03 [metric_collector] {"stage_name":"metric_collector","events_processed":6849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1369.8,"last_update":"2026-03-21T19:59:58.870405949Z"} +2026/03/21 20:00:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T19:59:58.877577426Z"} +2026/03/21 20:00:03 [transform_engine] {"stage_name":"transform_engine","events_processed":228,"events_dropped":0,"avg_latency_ms":1151.497378397838,"throughput_eps":0,"last_update":"2026-03-21T19:59:58.965779189Z"} +2026/03/21 20:00:03 [detection_layer] {"stage_name":"detection_layer","events_processed":228,"events_dropped":0,"avg_latency_ms":17.673240603198657,"throughput_eps":0,"last_update":"2026-03-21T19:59:58.965792043Z"} +2026/03/21 20:00:03 ───────────────────────────────────────────────── +2026/03/21 20:00:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:00:08 [metric_collector] {"stage_name":"metric_collector","events_processed":6854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1370.8,"last_update":"2026-03-21T20:00:03.870267204Z"} +2026/03/21 20:00:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:00:03.881341315Z"} +2026/03/21 20:00:08 [transform_engine] {"stage_name":"transform_engine","events_processed":228,"events_dropped":0,"avg_latency_ms":1151.497378397838,"throughput_eps":0,"last_update":"2026-03-21T20:00:03.96517911Z"} +2026/03/21 20:00:08 [detection_layer] {"stage_name":"detection_layer","events_processed":228,"events_dropped":0,"avg_latency_ms":17.673240603198657,"throughput_eps":0,"last_update":"2026-03-21T20:00:03.966268828Z"} +2026/03/21 20:00:08 [log_collector] {"stage_name":"log_collector","events_processed":12256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2451.2,"last_update":"2026-03-21T20:00:03.869674649Z"} +2026/03/21 20:00:08 ───────────────────────────────────────────────── +2026/03/21 20:00:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:00:13 [log_collector] {"stage_name":"log_collector","events_processed":12256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2451.2,"last_update":"2026-03-21T20:00:08.869431273Z"} +2026/03/21 20:00:13 [metric_collector] {"stage_name":"metric_collector","events_processed":6859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1371.8,"last_update":"2026-03-21T20:00:08.869854634Z"} +2026/03/21 20:00:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:00:08.879126513Z"} +2026/03/21 20:00:13 [transform_engine] {"stage_name":"transform_engine","events_processed":228,"events_dropped":0,"avg_latency_ms":1151.497378397838,"throughput_eps":0,"last_update":"2026-03-21T20:00:08.965228815Z"} +2026/03/21 20:00:13 [detection_layer] {"stage_name":"detection_layer","events_processed":228,"events_dropped":0,"avg_latency_ms":17.673240603198657,"throughput_eps":0,"last_update":"2026-03-21T20:00:08.9662917Z"} +2026/03/21 20:00:13 ───────────────────────────────────────────────── +2026/03/21 20:00:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:00:18 [log_collector] {"stage_name":"log_collector","events_processed":12259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2451.8,"last_update":"2026-03-21T20:00:13.870060755Z"} +2026/03/21 20:00:18 [metric_collector] {"stage_name":"metric_collector","events_processed":6864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1372.8,"last_update":"2026-03-21T20:00:13.870502511Z"} +2026/03/21 20:00:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:00:13.877259333Z"} +2026/03/21 20:00:18 [transform_engine] {"stage_name":"transform_engine","events_processed":228,"events_dropped":0,"avg_latency_ms":1151.497378397838,"throughput_eps":0,"last_update":"2026-03-21T20:00:13.965486324Z"} +2026/03/21 20:00:18 [detection_layer] {"stage_name":"detection_layer","events_processed":228,"events_dropped":0,"avg_latency_ms":17.673240603198657,"throughput_eps":0,"last_update":"2026-03-21T20:00:13.965513797Z"} +2026/03/21 20:00:18 ───────────────────────────────────────────────── +2026/03/21 20:00:19 [ANOMALY] time=2026-03-21T20:00:19Z score=0.9135 method=SEAD details=MAD!:w=0.25,s=0.94 RRCF-fast!:w=0.20,s=0.94 RRCF-mid!:w=0.18,s=0.91 RRCF-slow:w=0.15,s=0.76 COPOD!:w=0.22,s=0.96 +2026/03/21 20:00:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:00:23 [detection_layer] {"stage_name":"detection_layer","events_processed":228,"events_dropped":0,"avg_latency_ms":17.673240603198657,"throughput_eps":0,"last_update":"2026-03-21T20:00:18.965639744Z"} +2026/03/21 20:00:23 [log_collector] {"stage_name":"log_collector","events_processed":12267,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2453.4,"last_update":"2026-03-21T20:00:18.870105677Z"} +2026/03/21 20:00:23 [metric_collector] {"stage_name":"metric_collector","events_processed":6869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1373.8,"last_update":"2026-03-21T20:00:18.870865352Z"} +2026/03/21 20:00:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2750,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:00:18.879245193Z"} +2026/03/21 20:00:23 [transform_engine] {"stage_name":"transform_engine","events_processed":228,"events_dropped":0,"avg_latency_ms":1151.497378397838,"throughput_eps":0,"last_update":"2026-03-21T20:00:18.965601461Z"} +2026/03/21 20:00:23 ───────────────────────────────────────────────── +2026/03/21 20:00:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:00:28 [log_collector] {"stage_name":"log_collector","events_processed":12325,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2465,"last_update":"2026-03-21T20:00:23.870526306Z"} +2026/03/21 20:00:28 [metric_collector] {"stage_name":"metric_collector","events_processed":6874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1374.8,"last_update":"2026-03-21T20:00:23.87083637Z"} +2026/03/21 20:00:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2752,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:00:23.882183815Z"} +2026/03/21 20:00:28 [transform_engine] {"stage_name":"transform_engine","events_processed":229,"events_dropped":0,"avg_latency_ms":955.1661257182705,"throughput_eps":0,"last_update":"2026-03-21T20:00:23.965662551Z"} +2026/03/21 20:00:28 [detection_layer] {"stage_name":"detection_layer","events_processed":229,"events_dropped":0,"avg_latency_ms":17.51790748255893,"throughput_eps":0,"last_update":"2026-03-21T20:00:23.96565194Z"} +2026/03/21 20:00:28 ───────────────────────────────────────────────── +Saved state: 12 clusters, 12522 messages, reason: none +2026/03/21 20:00:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:00:33 [detection_layer] {"stage_name":"detection_layer","events_processed":229,"events_dropped":0,"avg_latency_ms":17.51790748255893,"throughput_eps":0,"last_update":"2026-03-21T20:00:28.966216584Z"} +2026/03/21 20:00:33 [log_collector] {"stage_name":"log_collector","events_processed":12432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2486.4,"last_update":"2026-03-21T20:00:28.870047741Z"} +2026/03/21 20:00:33 [metric_collector] {"stage_name":"metric_collector","events_processed":6879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1375.8,"last_update":"2026-03-21T20:00:28.870412449Z"} +2026/03/21 20:00:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:00:28.879824357Z"} +2026/03/21 20:00:33 [transform_engine] {"stage_name":"transform_engine","events_processed":229,"events_dropped":0,"avg_latency_ms":955.1661257182705,"throughput_eps":0,"last_update":"2026-03-21T20:00:28.966106322Z"} +2026/03/21 20:00:33 ───────────────────────────────────────────────── +2026/03/21 20:00:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:00:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:00:33.877473394Z"} +2026/03/21 20:00:38 [transform_engine] {"stage_name":"transform_engine","events_processed":229,"events_dropped":0,"avg_latency_ms":955.1661257182705,"throughput_eps":0,"last_update":"2026-03-21T20:00:33.965828901Z"} +2026/03/21 20:00:38 [detection_layer] {"stage_name":"detection_layer","events_processed":229,"events_dropped":0,"avg_latency_ms":17.51790748255893,"throughput_eps":0,"last_update":"2026-03-21T20:00:33.965752304Z"} +2026/03/21 20:00:38 [log_collector] {"stage_name":"log_collector","events_processed":12608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2521.6,"last_update":"2026-03-21T20:00:33.870399564Z"} +2026/03/21 20:00:38 [metric_collector] {"stage_name":"metric_collector","events_processed":6884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1376.8,"last_update":"2026-03-21T20:00:33.870607943Z"} +2026/03/21 20:00:38 ───────────────────────────────────────────────── +2026/03/21 20:00:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:00:43 [log_collector] {"stage_name":"log_collector","events_processed":12608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2521.6,"last_update":"2026-03-21T20:00:38.870019402Z"} +2026/03/21 20:00:43 [metric_collector] {"stage_name":"metric_collector","events_processed":6889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1377.8,"last_update":"2026-03-21T20:00:38.870083053Z"} +2026/03/21 20:00:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2758,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:00:38.878607702Z"} +2026/03/21 20:00:43 [transform_engine] {"stage_name":"transform_engine","events_processed":229,"events_dropped":0,"avg_latency_ms":955.1661257182705,"throughput_eps":0,"last_update":"2026-03-21T20:00:38.966065901Z"} +2026/03/21 20:00:43 [detection_layer] {"stage_name":"detection_layer","events_processed":229,"events_dropped":0,"avg_latency_ms":17.51790748255893,"throughput_eps":0,"last_update":"2026-03-21T20:00:38.965953896Z"} +2026/03/21 20:00:43 ───────────────────────────────────────────────── +2026/03/21 20:00:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:00:48 [log_collector] {"stage_name":"log_collector","events_processed":12608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2521.6,"last_update":"2026-03-21T20:00:43.869737147Z"} +2026/03/21 20:00:48 [metric_collector] {"stage_name":"metric_collector","events_processed":6894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1378.8,"last_update":"2026-03-21T20:00:43.86993181Z"} +2026/03/21 20:00:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:00:43.878384411Z"} +2026/03/21 20:00:48 [transform_engine] {"stage_name":"transform_engine","events_processed":229,"events_dropped":0,"avg_latency_ms":955.1661257182705,"throughput_eps":0,"last_update":"2026-03-21T20:00:43.965587951Z"} +2026/03/21 20:00:48 [detection_layer] {"stage_name":"detection_layer","events_processed":229,"events_dropped":0,"avg_latency_ms":17.51790748255893,"throughput_eps":0,"last_update":"2026-03-21T20:00:43.965554116Z"} +2026/03/21 20:00:48 ───────────────────────────────────────────────── +2026/03/21 20:00:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:00:53 [log_collector] {"stage_name":"log_collector","events_processed":12608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2521.6,"last_update":"2026-03-21T20:00:48.869682977Z"} +2026/03/21 20:00:53 [metric_collector] {"stage_name":"metric_collector","events_processed":6899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1379.8,"last_update":"2026-03-21T20:00:48.870188555Z"} +2026/03/21 20:00:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:00:48.880162649Z"} +2026/03/21 20:00:53 [transform_engine] {"stage_name":"transform_engine","events_processed":230,"events_dropped":0,"avg_latency_ms":787.2742437746165,"throughput_eps":0,"last_update":"2026-03-21T20:00:49.081043018Z"} +2026/03/21 20:00:53 [detection_layer] {"stage_name":"detection_layer","events_processed":229,"events_dropped":0,"avg_latency_ms":17.51790748255893,"throughput_eps":0,"last_update":"2026-03-21T20:00:48.96537165Z"} +2026/03/21 20:00:53 ───────────────────────────────────────────────── +2026/03/21 20:00:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:00:58 [log_collector] {"stage_name":"log_collector","events_processed":12608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2521.6,"last_update":"2026-03-21T20:00:53.870041004Z"} +2026/03/21 20:00:58 [metric_collector] {"stage_name":"metric_collector","events_processed":6904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1380.8,"last_update":"2026-03-21T20:00:53.870435149Z"} +2026/03/21 20:00:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:00:53.878409974Z"} +2026/03/21 20:00:58 [transform_engine] {"stage_name":"transform_engine","events_processed":230,"events_dropped":0,"avg_latency_ms":787.2742437746165,"throughput_eps":0,"last_update":"2026-03-21T20:00:53.965625537Z"} +2026/03/21 20:00:58 [detection_layer] {"stage_name":"detection_layer","events_processed":230,"events_dropped":0,"avg_latency_ms":17.522866386047145,"throughput_eps":0,"last_update":"2026-03-21T20:00:53.965644444Z"} +2026/03/21 20:00:58 ───────────────────────────────────────────────── +2026/03/21 20:01:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:01:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2766,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:00:58.879450387Z"} +2026/03/21 20:01:03 [transform_engine] {"stage_name":"transform_engine","events_processed":230,"events_dropped":0,"avg_latency_ms":787.2742437746165,"throughput_eps":0,"last_update":"2026-03-21T20:00:58.965583968Z"} +2026/03/21 20:01:03 [detection_layer] {"stage_name":"detection_layer","events_processed":230,"events_dropped":0,"avg_latency_ms":17.522866386047145,"throughput_eps":0,"last_update":"2026-03-21T20:00:58.965617502Z"} +2026/03/21 20:01:03 [log_collector] {"stage_name":"log_collector","events_processed":12608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2521.6,"last_update":"2026-03-21T20:01:03.869878011Z"} +2026/03/21 20:01:03 [metric_collector] {"stage_name":"metric_collector","events_processed":6909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1381.8,"last_update":"2026-03-21T20:00:58.869942425Z"} +2026/03/21 20:01:03 ───────────────────────────────────────────────── +2026/03/21 20:01:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:01:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2768,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:01:03.878582523Z"} +2026/03/21 20:01:08 [transform_engine] {"stage_name":"transform_engine","events_processed":230,"events_dropped":0,"avg_latency_ms":787.2742437746165,"throughput_eps":0,"last_update":"2026-03-21T20:01:03.96581543Z"} +2026/03/21 20:01:08 [detection_layer] {"stage_name":"detection_layer","events_processed":230,"events_dropped":0,"avg_latency_ms":17.522866386047145,"throughput_eps":0,"last_update":"2026-03-21T20:01:03.965775784Z"} +2026/03/21 20:01:08 [log_collector] {"stage_name":"log_collector","events_processed":12611,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2522.2,"last_update":"2026-03-21T20:01:08.869956877Z"} +2026/03/21 20:01:08 [metric_collector] {"stage_name":"metric_collector","events_processed":6914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1382.8,"last_update":"2026-03-21T20:01:03.870267426Z"} +2026/03/21 20:01:08 ───────────────────────────────────────────────── +2026/03/21 20:01:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:01:13 [metric_collector] {"stage_name":"metric_collector","events_processed":6919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1383.8,"last_update":"2026-03-21T20:01:08.870406619Z"} +2026/03/21 20:01:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2770,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:01:08.881372492Z"} +2026/03/21 20:01:13 [transform_engine] {"stage_name":"transform_engine","events_processed":230,"events_dropped":0,"avg_latency_ms":787.2742437746165,"throughput_eps":0,"last_update":"2026-03-21T20:01:08.965329825Z"} +2026/03/21 20:01:13 [detection_layer] {"stage_name":"detection_layer","events_processed":230,"events_dropped":0,"avg_latency_ms":17.522866386047145,"throughput_eps":0,"last_update":"2026-03-21T20:01:08.965345626Z"} +2026/03/21 20:01:13 [log_collector] {"stage_name":"log_collector","events_processed":12611,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2522.2,"last_update":"2026-03-21T20:01:13.869431816Z"} +2026/03/21 20:01:13 ───────────────────────────────────────────────── +2026/03/21 20:01:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:01:18 [log_collector] {"stage_name":"log_collector","events_processed":12622,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2524.4,"last_update":"2026-03-21T20:01:18.869430968Z"} +2026/03/21 20:01:18 [metric_collector] {"stage_name":"metric_collector","events_processed":6924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1384.8,"last_update":"2026-03-21T20:01:13.870286162Z"} +2026/03/21 20:01:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:01:13.880323018Z"} +2026/03/21 20:01:18 [transform_engine] {"stage_name":"transform_engine","events_processed":230,"events_dropped":0,"avg_latency_ms":787.2742437746165,"throughput_eps":0,"last_update":"2026-03-21T20:01:13.965496029Z"} +2026/03/21 20:01:18 [detection_layer] {"stage_name":"detection_layer","events_processed":230,"events_dropped":0,"avg_latency_ms":17.522866386047145,"throughput_eps":0,"last_update":"2026-03-21T20:01:13.965478566Z"} +2026/03/21 20:01:18 ───────────────────────────────────────────────── +2026/03/21 20:01:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:01:23 [log_collector] {"stage_name":"log_collector","events_processed":12622,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2524.4,"last_update":"2026-03-21T20:01:18.869430968Z"} +2026/03/21 20:01:23 [metric_collector] {"stage_name":"metric_collector","events_processed":6929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1385.8,"last_update":"2026-03-21T20:01:18.869851404Z"} +2026/03/21 20:01:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:01:18.878900377Z"} +2026/03/21 20:01:23 [transform_engine] {"stage_name":"transform_engine","events_processed":231,"events_dropped":0,"avg_latency_ms":652.0158844196933,"throughput_eps":0,"last_update":"2026-03-21T20:01:19.077127032Z"} +2026/03/21 20:01:23 [detection_layer] {"stage_name":"detection_layer","events_processed":230,"events_dropped":0,"avg_latency_ms":17.522866386047145,"throughput_eps":0,"last_update":"2026-03-21T20:01:18.966110349Z"} +2026/03/21 20:01:23 ───────────────────────────────────────────────── +2026/03/21 20:01:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:01:28 [log_collector] {"stage_name":"log_collector","events_processed":12636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2527.2,"last_update":"2026-03-21T20:01:23.869759457Z"} +2026/03/21 20:01:28 [metric_collector] {"stage_name":"metric_collector","events_processed":6934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1386.8,"last_update":"2026-03-21T20:01:23.870270285Z"} +2026/03/21 20:01:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:01:23.875975083Z"} +2026/03/21 20:01:28 [transform_engine] {"stage_name":"transform_engine","events_processed":231,"events_dropped":0,"avg_latency_ms":652.0158844196933,"throughput_eps":0,"last_update":"2026-03-21T20:01:23.965162223Z"} +2026/03/21 20:01:28 [detection_layer] {"stage_name":"detection_layer","events_processed":231,"events_dropped":0,"avg_latency_ms":17.40087010883772,"throughput_eps":0,"last_update":"2026-03-21T20:01:23.966317736Z"} +2026/03/21 20:01:28 ───────────────────────────────────────────────── +2026/03/21 20:01:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:01:33 [metric_collector] {"stage_name":"metric_collector","events_processed":6939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1387.8,"last_update":"2026-03-21T20:01:28.870279404Z"} +2026/03/21 20:01:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:01:28.878554344Z"} +2026/03/21 20:01:33 [transform_engine] {"stage_name":"transform_engine","events_processed":231,"events_dropped":0,"avg_latency_ms":652.0158844196933,"throughput_eps":0,"last_update":"2026-03-21T20:01:28.965911299Z"} +2026/03/21 20:01:33 [detection_layer] {"stage_name":"detection_layer","events_processed":231,"events_dropped":0,"avg_latency_ms":17.40087010883772,"throughput_eps":0,"last_update":"2026-03-21T20:01:28.9659541Z"} +2026/03/21 20:01:33 [log_collector] {"stage_name":"log_collector","events_processed":12638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2527.6,"last_update":"2026-03-21T20:01:28.869936126Z"} +2026/03/21 20:01:33 ───────────────────────────────────────────────── +2026/03/21 20:01:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:01:38 [transform_engine] {"stage_name":"transform_engine","events_processed":231,"events_dropped":0,"avg_latency_ms":652.0158844196933,"throughput_eps":0,"last_update":"2026-03-21T20:01:33.965254062Z"} +2026/03/21 20:01:38 [detection_layer] {"stage_name":"detection_layer","events_processed":231,"events_dropped":0,"avg_latency_ms":17.40087010883772,"throughput_eps":0,"last_update":"2026-03-21T20:01:33.965284139Z"} +2026/03/21 20:01:38 [log_collector] {"stage_name":"log_collector","events_processed":12638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2527.6,"last_update":"2026-03-21T20:01:33.86941Z"} +2026/03/21 20:01:38 [metric_collector] {"stage_name":"metric_collector","events_processed":6944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1388.8,"last_update":"2026-03-21T20:01:33.869844482Z"} +2026/03/21 20:01:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2780,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:01:33.88006543Z"} +2026/03/21 20:01:38 ───────────────────────────────────────────────── +2026/03/21 20:01:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:01:43 [log_collector] {"stage_name":"log_collector","events_processed":12638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2527.6,"last_update":"2026-03-21T20:01:38.869449512Z"} +2026/03/21 20:01:43 [metric_collector] {"stage_name":"metric_collector","events_processed":6949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1389.8,"last_update":"2026-03-21T20:01:38.869854187Z"} +2026/03/21 20:01:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2782,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:01:38.878166308Z"} +2026/03/21 20:01:43 [transform_engine] {"stage_name":"transform_engine","events_processed":231,"events_dropped":0,"avg_latency_ms":652.0158844196933,"throughput_eps":0,"last_update":"2026-03-21T20:01:38.965423341Z"} +2026/03/21 20:01:43 [detection_layer] {"stage_name":"detection_layer","events_processed":231,"events_dropped":0,"avg_latency_ms":17.40087010883772,"throughput_eps":0,"last_update":"2026-03-21T20:01:38.965465051Z"} +2026/03/21 20:01:43 ───────────────────────────────────────────────── +2026/03/21 20:01:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:01:48 [transform_engine] {"stage_name":"transform_engine","events_processed":231,"events_dropped":0,"avg_latency_ms":652.0158844196933,"throughput_eps":0,"last_update":"2026-03-21T20:01:43.965540792Z"} +2026/03/21 20:01:48 [detection_layer] {"stage_name":"detection_layer","events_processed":231,"events_dropped":0,"avg_latency_ms":17.40087010883772,"throughput_eps":0,"last_update":"2026-03-21T20:01:43.96556587Z"} +2026/03/21 20:01:48 [log_collector] {"stage_name":"log_collector","events_processed":12638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2527.6,"last_update":"2026-03-21T20:01:43.869736198Z"} +2026/03/21 20:01:48 [metric_collector] {"stage_name":"metric_collector","events_processed":6953,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1390.6,"last_update":"2026-03-21T20:01:43.869646396Z"} +2026/03/21 20:01:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:01:43.878305181Z"} +2026/03/21 20:01:48 ───────────────────────────────────────────────── +2026/03/21 20:01:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:01:53 [metric_collector] {"stage_name":"metric_collector","events_processed":6959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1391.8,"last_update":"2026-03-21T20:01:48.870164902Z"} +2026/03/21 20:01:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:01:48.879418507Z"} +2026/03/21 20:01:53 [transform_engine] {"stage_name":"transform_engine","events_processed":232,"events_dropped":0,"avg_latency_ms":544.2744061357547,"throughput_eps":0,"last_update":"2026-03-21T20:01:49.079080671Z"} +2026/03/21 20:01:53 [detection_layer] {"stage_name":"detection_layer","events_processed":231,"events_dropped":0,"avg_latency_ms":17.40087010883772,"throughput_eps":0,"last_update":"2026-03-21T20:01:48.965826393Z"} +2026/03/21 20:01:53 [log_collector] {"stage_name":"log_collector","events_processed":12638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2527.6,"last_update":"2026-03-21T20:01:48.869439924Z"} +2026/03/21 20:01:53 ───────────────────────────────────────────────── +2026/03/21 20:01:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:01:58 [transform_engine] {"stage_name":"transform_engine","events_processed":232,"events_dropped":0,"avg_latency_ms":544.2744061357547,"throughput_eps":0,"last_update":"2026-03-21T20:01:53.965535859Z"} +2026/03/21 20:01:58 [detection_layer] {"stage_name":"detection_layer","events_processed":232,"events_dropped":0,"avg_latency_ms":17.909013287070177,"throughput_eps":0,"last_update":"2026-03-21T20:01:53.965639488Z"} +2026/03/21 20:01:58 [log_collector] {"stage_name":"log_collector","events_processed":12638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2527.6,"last_update":"2026-03-21T20:01:53.870248064Z"} +2026/03/21 20:01:58 [metric_collector] {"stage_name":"metric_collector","events_processed":6964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1392.8,"last_update":"2026-03-21T20:01:53.870758481Z"} +2026/03/21 20:01:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:01:53.879364726Z"} +2026/03/21 20:01:58 ───────────────────────────────────────────────── +2026/03/21 20:02:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:02:03 [log_collector] {"stage_name":"log_collector","events_processed":12638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2527.6,"last_update":"2026-03-21T20:01:58.869455796Z"} +2026/03/21 20:02:03 [metric_collector] {"stage_name":"metric_collector","events_processed":6969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1393.8,"last_update":"2026-03-21T20:01:58.869816787Z"} +2026/03/21 20:02:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:01:58.879209438Z"} +2026/03/21 20:02:03 [transform_engine] {"stage_name":"transform_engine","events_processed":232,"events_dropped":0,"avg_latency_ms":544.2744061357547,"throughput_eps":0,"last_update":"2026-03-21T20:01:58.965375792Z"} +2026/03/21 20:02:03 [detection_layer] {"stage_name":"detection_layer","events_processed":232,"events_dropped":0,"avg_latency_ms":17.909013287070177,"throughput_eps":0,"last_update":"2026-03-21T20:01:58.965506662Z"} +2026/03/21 20:02:03 ───────────────────────────────────────────────── +Saved state: 12 clusters, 12639 messages, reason: none +2026/03/21 20:02:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:02:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:02:03.87897164Z"} +2026/03/21 20:02:08 [transform_engine] {"stage_name":"transform_engine","events_processed":232,"events_dropped":0,"avg_latency_ms":544.2744061357547,"throughput_eps":0,"last_update":"2026-03-21T20:02:03.965157131Z"} +2026/03/21 20:02:08 [detection_layer] {"stage_name":"detection_layer","events_processed":232,"events_dropped":0,"avg_latency_ms":17.909013287070177,"throughput_eps":0,"last_update":"2026-03-21T20:02:03.966312585Z"} +2026/03/21 20:02:08 [log_collector] {"stage_name":"log_collector","events_processed":12638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2527.6,"last_update":"2026-03-21T20:02:03.870024083Z"} +2026/03/21 20:02:08 [metric_collector] {"stage_name":"metric_collector","events_processed":6974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1394.8,"last_update":"2026-03-21T20:02:03.870395273Z"} +2026/03/21 20:02:08 ───────────────────────────────────────────────── +2026/03/21 20:02:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:02:13 [log_collector] {"stage_name":"log_collector","events_processed":12652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2530.4,"last_update":"2026-03-21T20:02:08.86965902Z"} +2026/03/21 20:02:13 [metric_collector] {"stage_name":"metric_collector","events_processed":6979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1395.8,"last_update":"2026-03-21T20:02:08.870331839Z"} +2026/03/21 20:02:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:02:08.877596453Z"} +2026/03/21 20:02:13 [transform_engine] {"stage_name":"transform_engine","events_processed":232,"events_dropped":0,"avg_latency_ms":544.2744061357547,"throughput_eps":0,"last_update":"2026-03-21T20:02:08.965963072Z"} +2026/03/21 20:02:13 [detection_layer] {"stage_name":"detection_layer","events_processed":232,"events_dropped":0,"avg_latency_ms":17.909013287070177,"throughput_eps":0,"last_update":"2026-03-21T20:02:08.965936832Z"} +2026/03/21 20:02:13 ───────────────────────────────────────────────── +2026/03/21 20:02:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:02:18 [detection_layer] {"stage_name":"detection_layer","events_processed":232,"events_dropped":0,"avg_latency_ms":17.909013287070177,"throughput_eps":0,"last_update":"2026-03-21T20:02:13.965698822Z"} +2026/03/21 20:02:18 [log_collector] {"stage_name":"log_collector","events_processed":12652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2530.4,"last_update":"2026-03-21T20:02:13.869632285Z"} +2026/03/21 20:02:18 [metric_collector] {"stage_name":"metric_collector","events_processed":6984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1396.8,"last_update":"2026-03-21T20:02:13.870336725Z"} +2026/03/21 20:02:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2796,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:02:13.878286352Z"} +2026/03/21 20:02:18 [transform_engine] {"stage_name":"transform_engine","events_processed":232,"events_dropped":0,"avg_latency_ms":544.2744061357547,"throughput_eps":0,"last_update":"2026-03-21T20:02:13.965673183Z"} +2026/03/21 20:02:18 ───────────────────────────────────────────────── +2026/03/21 20:02:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:02:23 [log_collector] {"stage_name":"log_collector","events_processed":12652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2530.4,"last_update":"2026-03-21T20:02:18.869976708Z"} +2026/03/21 20:02:23 [metric_collector] {"stage_name":"metric_collector","events_processed":6989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1397.8,"last_update":"2026-03-21T20:02:18.870030662Z"} +2026/03/21 20:02:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:02:18.878616938Z"} +2026/03/21 20:02:23 [transform_engine] {"stage_name":"transform_engine","events_processed":233,"events_dropped":0,"avg_latency_ms":664.3126583086038,"throughput_eps":0,"last_update":"2026-03-21T20:02:20.110275756Z"} +2026/03/21 20:02:23 [detection_layer] {"stage_name":"detection_layer","events_processed":232,"events_dropped":0,"avg_latency_ms":17.909013287070177,"throughput_eps":0,"last_update":"2026-03-21T20:02:18.966448762Z"} +2026/03/21 20:02:23 ───────────────────────────────────────────────── +2026/03/21 20:02:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:02:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2800,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:02:23.878696343Z"} +2026/03/21 20:02:28 [transform_engine] {"stage_name":"transform_engine","events_processed":233,"events_dropped":0,"avg_latency_ms":664.3126583086038,"throughput_eps":0,"last_update":"2026-03-21T20:02:23.966063306Z"} +2026/03/21 20:02:28 [detection_layer] {"stage_name":"detection_layer","events_processed":233,"events_dropped":0,"avg_latency_ms":18.067300229656144,"throughput_eps":0,"last_update":"2026-03-21T20:02:23.966052044Z"} +2026/03/21 20:02:28 [log_collector] {"stage_name":"log_collector","events_processed":12652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2530.4,"last_update":"2026-03-21T20:02:23.869701304Z"} +2026/03/21 20:02:28 [metric_collector] {"stage_name":"metric_collector","events_processed":6994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1398.8,"last_update":"2026-03-21T20:02:23.87014841Z"} +2026/03/21 20:02:28 ───────────────────────────────────────────────── +2026/03/21 20:02:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:02:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2802,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:02:28.878411868Z"} +2026/03/21 20:02:33 [transform_engine] {"stage_name":"transform_engine","events_processed":233,"events_dropped":0,"avg_latency_ms":664.3126583086038,"throughput_eps":0,"last_update":"2026-03-21T20:02:28.965581102Z"} +2026/03/21 20:02:33 [detection_layer] {"stage_name":"detection_layer","events_processed":233,"events_dropped":0,"avg_latency_ms":18.067300229656144,"throughput_eps":0,"last_update":"2026-03-21T20:02:28.965573628Z"} +2026/03/21 20:02:33 [log_collector] {"stage_name":"log_collector","events_processed":12652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2530.4,"last_update":"2026-03-21T20:02:28.869455012Z"} +2026/03/21 20:02:33 [metric_collector] {"stage_name":"metric_collector","events_processed":6999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1399.8,"last_update":"2026-03-21T20:02:28.8697985Z"} +2026/03/21 20:02:33 ───────────────────────────────────────────────── +2026/03/21 20:02:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:02:38 [log_collector] {"stage_name":"log_collector","events_processed":12652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2530.4,"last_update":"2026-03-21T20:02:33.869771106Z"} +2026/03/21 20:02:38 [metric_collector] {"stage_name":"metric_collector","events_processed":7003,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1400.6,"last_update":"2026-03-21T20:02:33.869670083Z"} +2026/03/21 20:02:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:02:33.878582494Z"} +2026/03/21 20:02:38 [transform_engine] {"stage_name":"transform_engine","events_processed":233,"events_dropped":0,"avg_latency_ms":664.3126583086038,"throughput_eps":0,"last_update":"2026-03-21T20:02:33.965920322Z"} +2026/03/21 20:02:38 [detection_layer] {"stage_name":"detection_layer","events_processed":233,"events_dropped":0,"avg_latency_ms":18.067300229656144,"throughput_eps":0,"last_update":"2026-03-21T20:02:33.9659093Z"} +2026/03/21 20:02:38 ───────────────────────────────────────────────── +2026/03/21 20:02:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:02:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:02:38.878232491Z"} +2026/03/21 20:02:43 [transform_engine] {"stage_name":"transform_engine","events_processed":233,"events_dropped":0,"avg_latency_ms":664.3126583086038,"throughput_eps":0,"last_update":"2026-03-21T20:02:38.965495885Z"} +2026/03/21 20:02:43 [detection_layer] {"stage_name":"detection_layer","events_processed":233,"events_dropped":0,"avg_latency_ms":18.067300229656144,"throughput_eps":0,"last_update":"2026-03-21T20:02:38.965487269Z"} +2026/03/21 20:02:43 [log_collector] {"stage_name":"log_collector","events_processed":12652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2530.4,"last_update":"2026-03-21T20:02:38.869426233Z"} +2026/03/21 20:02:43 [metric_collector] {"stage_name":"metric_collector","events_processed":7008,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1401.6,"last_update":"2026-03-21T20:02:38.869531144Z"} +2026/03/21 20:02:43 ───────────────────────────────────────────────── +2026/03/21 20:02:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:02:48 [detection_layer] {"stage_name":"detection_layer","events_processed":233,"events_dropped":0,"avg_latency_ms":18.067300229656144,"throughput_eps":0,"last_update":"2026-03-21T20:02:43.965328823Z"} +2026/03/21 20:02:48 [log_collector] {"stage_name":"log_collector","events_processed":12652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2530.4,"last_update":"2026-03-21T20:02:43.870126501Z"} +2026/03/21 20:02:48 [metric_collector] {"stage_name":"metric_collector","events_processed":7014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1402.8,"last_update":"2026-03-21T20:02:43.870149205Z"} +2026/03/21 20:02:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:02:43.880031664Z"} +2026/03/21 20:02:48 [transform_engine] {"stage_name":"transform_engine","events_processed":233,"events_dropped":0,"avg_latency_ms":664.3126583086038,"throughput_eps":0,"last_update":"2026-03-21T20:02:43.965223831Z"} +2026/03/21 20:02:48 ───────────────────────────────────────────────── +2026/03/21 20:02:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:02:53 [log_collector] {"stage_name":"log_collector","events_processed":12652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2530.4,"last_update":"2026-03-21T20:02:48.87037396Z"} +2026/03/21 20:02:53 [metric_collector] {"stage_name":"metric_collector","events_processed":7019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1403.8,"last_update":"2026-03-21T20:02:48.870590955Z"} +2026/03/21 20:02:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:02:48.879929533Z"} +2026/03/21 20:02:53 [transform_engine] {"stage_name":"transform_engine","events_processed":234,"events_dropped":0,"avg_latency_ms":547.382525446883,"throughput_eps":0,"last_update":"2026-03-21T20:02:49.04580423Z"} +2026/03/21 20:02:53 [detection_layer] {"stage_name":"detection_layer","events_processed":233,"events_dropped":0,"avg_latency_ms":18.067300229656144,"throughput_eps":0,"last_update":"2026-03-21T20:02:48.96612957Z"} +2026/03/21 20:02:53 ───────────────────────────────────────────────── +2026/03/21 20:02:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:02:58 [transform_engine] {"stage_name":"transform_engine","events_processed":234,"events_dropped":0,"avg_latency_ms":547.382525446883,"throughput_eps":0,"last_update":"2026-03-21T20:02:53.965896368Z"} +2026/03/21 20:02:58 [detection_layer] {"stage_name":"detection_layer","events_processed":234,"events_dropped":0,"avg_latency_ms":18.522110583724917,"throughput_eps":0,"last_update":"2026-03-21T20:02:53.965884996Z"} +2026/03/21 20:02:58 [log_collector] {"stage_name":"log_collector","events_processed":12652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2530.4,"last_update":"2026-03-21T20:02:53.869758324Z"} +2026/03/21 20:02:58 [metric_collector] {"stage_name":"metric_collector","events_processed":7024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1404.8,"last_update":"2026-03-21T20:02:53.870016609Z"} +2026/03/21 20:02:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2812,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:02:53.878559823Z"} +2026/03/21 20:02:58 ───────────────────────────────────────────────── +2026/03/21 20:03:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:03:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:02:58.87871883Z"} +2026/03/21 20:03:03 [transform_engine] {"stage_name":"transform_engine","events_processed":234,"events_dropped":0,"avg_latency_ms":547.382525446883,"throughput_eps":0,"last_update":"2026-03-21T20:02:58.966071956Z"} +2026/03/21 20:03:03 [detection_layer] {"stage_name":"detection_layer","events_processed":234,"events_dropped":0,"avg_latency_ms":18.522110583724917,"throughput_eps":0,"last_update":"2026-03-21T20:02:58.966059552Z"} +2026/03/21 20:03:03 [log_collector] {"stage_name":"log_collector","events_processed":12652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2530.4,"last_update":"2026-03-21T20:02:58.869450928Z"} +2026/03/21 20:03:03 [metric_collector] {"stage_name":"metric_collector","events_processed":7029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1405.8,"last_update":"2026-03-21T20:02:58.869860412Z"} +2026/03/21 20:03:03 ───────────────────────────────────────────────── +2026/03/21 20:03:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:03:08 [transform_engine] {"stage_name":"transform_engine","events_processed":234,"events_dropped":0,"avg_latency_ms":547.382525446883,"throughput_eps":0,"last_update":"2026-03-21T20:03:03.966140237Z"} +2026/03/21 20:03:08 [detection_layer] {"stage_name":"detection_layer","events_processed":234,"events_dropped":0,"avg_latency_ms":18.522110583724917,"throughput_eps":0,"last_update":"2026-03-21T20:03:03.966126651Z"} +2026/03/21 20:03:08 [log_collector] {"stage_name":"log_collector","events_processed":12652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2530.4,"last_update":"2026-03-21T20:03:03.869939083Z"} +2026/03/21 20:03:08 [metric_collector] {"stage_name":"metric_collector","events_processed":7034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1406.8,"last_update":"2026-03-21T20:03:03.870227726Z"} +2026/03/21 20:03:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2816,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:03:03.878835974Z"} +2026/03/21 20:03:08 ───────────────────────────────────────────────── +Saved state: 12 clusters, 12653 messages, reason: none +2026/03/21 20:03:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:03:13 [log_collector] {"stage_name":"log_collector","events_processed":12652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2530.4,"last_update":"2026-03-21T20:03:08.869531551Z"} +2026/03/21 20:03:13 [metric_collector] {"stage_name":"metric_collector","events_processed":7039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1407.8,"last_update":"2026-03-21T20:03:08.870180655Z"} +2026/03/21 20:03:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2818,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:03:08.878407843Z"} +2026/03/21 20:03:13 [transform_engine] {"stage_name":"transform_engine","events_processed":234,"events_dropped":0,"avg_latency_ms":547.382525446883,"throughput_eps":0,"last_update":"2026-03-21T20:03:08.96559895Z"} +2026/03/21 20:03:13 [detection_layer] {"stage_name":"detection_layer","events_processed":234,"events_dropped":0,"avg_latency_ms":18.522110583724917,"throughput_eps":0,"last_update":"2026-03-21T20:03:08.965620752Z"} +2026/03/21 20:03:13 ───────────────────────────────────────────────── +2026/03/21 20:03:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:03:18 [log_collector] {"stage_name":"log_collector","events_processed":12657,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2531.4,"last_update":"2026-03-21T20:03:18.869500026Z"} +2026/03/21 20:03:18 [metric_collector] {"stage_name":"metric_collector","events_processed":7044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1408.8,"last_update":"2026-03-21T20:03:13.870488242Z"} +2026/03/21 20:03:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2820,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:03:13.876306768Z"} +2026/03/21 20:03:18 [transform_engine] {"stage_name":"transform_engine","events_processed":234,"events_dropped":0,"avg_latency_ms":547.382525446883,"throughput_eps":0,"last_update":"2026-03-21T20:03:13.965502734Z"} +2026/03/21 20:03:18 [detection_layer] {"stage_name":"detection_layer","events_processed":234,"events_dropped":0,"avg_latency_ms":18.522110583724917,"throughput_eps":0,"last_update":"2026-03-21T20:03:13.965572076Z"} +2026/03/21 20:03:18 ───────────────────────────────────────────────── +2026/03/21 20:03:19 [ANOMALY] time=2026-03-21T20:03:19Z score=0.8478 method=SEAD details=MAD!:w=0.25,s=0.95 RRCF-fast!:w=0.20,s=0.87 RRCF-mid!:w=0.18,s=0.91 RRCF-slow!:w=0.15,s=0.90 COPOD!:w=0.22,s=0.62 +2026/03/21 20:03:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:03:23 [metric_collector] {"stage_name":"metric_collector","events_processed":7049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1409.8,"last_update":"2026-03-21T20:03:18.869736188Z"} +2026/03/21 20:03:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:03:18.876222562Z"} +2026/03/21 20:03:23 [transform_engine] {"stage_name":"transform_engine","events_processed":235,"events_dropped":0,"avg_latency_ms":459.0194509575065,"throughput_eps":0,"last_update":"2026-03-21T20:03:19.07107915Z"} +2026/03/21 20:03:23 [detection_layer] {"stage_name":"detection_layer","events_processed":234,"events_dropped":0,"avg_latency_ms":18.522110583724917,"throughput_eps":0,"last_update":"2026-03-21T20:03:18.965486168Z"} +2026/03/21 20:03:23 [log_collector] {"stage_name":"log_collector","events_processed":12657,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2531.4,"last_update":"2026-03-21T20:03:23.869814504Z"} +2026/03/21 20:03:23 ───────────────────────────────────────────────── +2026/03/21 20:03:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:03:28 [detection_layer] {"stage_name":"detection_layer","events_processed":235,"events_dropped":0,"avg_latency_ms":17.089852466979934,"throughput_eps":0,"last_update":"2026-03-21T20:03:23.96539067Z"} +2026/03/21 20:03:28 [log_collector] {"stage_name":"log_collector","events_processed":12657,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2531.4,"last_update":"2026-03-21T20:03:23.869814504Z"} +2026/03/21 20:03:28 [metric_collector] {"stage_name":"metric_collector","events_processed":7054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1410.8,"last_update":"2026-03-21T20:03:23.870079792Z"} +2026/03/21 20:03:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:03:23.876169436Z"} +2026/03/21 20:03:28 [transform_engine] {"stage_name":"transform_engine","events_processed":235,"events_dropped":0,"avg_latency_ms":459.0194509575065,"throughput_eps":0,"last_update":"2026-03-21T20:03:23.965340274Z"} +2026/03/21 20:03:28 ───────────────────────────────────────────────── +2026/03/21 20:03:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:03:33 [log_collector] {"stage_name":"log_collector","events_processed":12657,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2531.4,"last_update":"2026-03-21T20:03:28.869463256Z"} +2026/03/21 20:03:33 [metric_collector] {"stage_name":"metric_collector","events_processed":7059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1411.8,"last_update":"2026-03-21T20:03:28.869810501Z"} +2026/03/21 20:03:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2826,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:03:28.876543106Z"} +2026/03/21 20:03:33 [transform_engine] {"stage_name":"transform_engine","events_processed":235,"events_dropped":0,"avg_latency_ms":459.0194509575065,"throughput_eps":0,"last_update":"2026-03-21T20:03:28.965893428Z"} +2026/03/21 20:03:33 [detection_layer] {"stage_name":"detection_layer","events_processed":235,"events_dropped":0,"avg_latency_ms":17.089852466979934,"throughput_eps":0,"last_update":"2026-03-21T20:03:28.965919198Z"} +2026/03/21 20:03:33 ───────────────────────────────────────────────── +2026/03/21 20:03:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:03:38 [transform_engine] {"stage_name":"transform_engine","events_processed":235,"events_dropped":0,"avg_latency_ms":459.0194509575065,"throughput_eps":0,"last_update":"2026-03-21T20:03:33.965883473Z"} +2026/03/21 20:03:38 [detection_layer] {"stage_name":"detection_layer","events_processed":235,"events_dropped":0,"avg_latency_ms":17.089852466979934,"throughput_eps":0,"last_update":"2026-03-21T20:03:33.965863886Z"} +2026/03/21 20:03:38 [log_collector] {"stage_name":"log_collector","events_processed":12657,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2531.4,"last_update":"2026-03-21T20:03:33.869431339Z"} +2026/03/21 20:03:38 [metric_collector] {"stage_name":"metric_collector","events_processed":7064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1412.8,"last_update":"2026-03-21T20:03:33.86964104Z"} +2026/03/21 20:03:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:03:33.875658045Z"} +2026/03/21 20:03:38 ───────────────────────────────────────────────── +2026/03/21 20:03:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:03:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2830,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:03:38.876887001Z"} +2026/03/21 20:03:43 [transform_engine] {"stage_name":"transform_engine","events_processed":235,"events_dropped":0,"avg_latency_ms":459.0194509575065,"throughput_eps":0,"last_update":"2026-03-21T20:03:38.966062518Z"} +2026/03/21 20:03:43 [detection_layer] {"stage_name":"detection_layer","events_processed":235,"events_dropped":0,"avg_latency_ms":17.089852466979934,"throughput_eps":0,"last_update":"2026-03-21T20:03:38.966035657Z"} +2026/03/21 20:03:43 [log_collector] {"stage_name":"log_collector","events_processed":12657,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2531.4,"last_update":"2026-03-21T20:03:38.869496436Z"} +2026/03/21 20:03:43 [metric_collector] {"stage_name":"metric_collector","events_processed":7069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1413.8,"last_update":"2026-03-21T20:03:38.869824514Z"} +2026/03/21 20:03:43 ───────────────────────────────────────────────── +2026/03/21 20:03:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:03:48 [detection_layer] {"stage_name":"detection_layer","events_processed":235,"events_dropped":0,"avg_latency_ms":17.089852466979934,"throughput_eps":0,"last_update":"2026-03-21T20:03:43.965286783Z"} +2026/03/21 20:03:48 [log_collector] {"stage_name":"log_collector","events_processed":12657,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2531.4,"last_update":"2026-03-21T20:03:43.869416954Z"} +2026/03/21 20:03:48 [metric_collector] {"stage_name":"metric_collector","events_processed":7074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1414.8,"last_update":"2026-03-21T20:03:43.869734712Z"} +2026/03/21 20:03:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2832,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:03:43.879081706Z"} +2026/03/21 20:03:48 [transform_engine] {"stage_name":"transform_engine","events_processed":235,"events_dropped":0,"avg_latency_ms":459.0194509575065,"throughput_eps":0,"last_update":"2026-03-21T20:03:43.965299297Z"} +2026/03/21 20:03:48 ───────────────────────────────────────────────── +2026/03/21 20:03:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:03:53 [metric_collector] {"stage_name":"metric_collector","events_processed":7079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1415.8,"last_update":"2026-03-21T20:03:48.86994237Z"} +2026/03/21 20:03:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:03:48.881214841Z"} +2026/03/21 20:03:53 [transform_engine] {"stage_name":"transform_engine","events_processed":236,"events_dropped":0,"avg_latency_ms":883.1610555660053,"throughput_eps":0,"last_update":"2026-03-21T20:03:51.54515701Z"} +2026/03/21 20:03:53 [detection_layer] {"stage_name":"detection_layer","events_processed":235,"events_dropped":0,"avg_latency_ms":17.089852466979934,"throughput_eps":0,"last_update":"2026-03-21T20:03:48.965382286Z"} +2026/03/21 20:03:53 [log_collector] {"stage_name":"log_collector","events_processed":12660,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2532,"last_update":"2026-03-21T20:03:53.86986563Z"} +2026/03/21 20:03:53 ───────────────────────────────────────────────── +2026/03/21 20:03:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:03:58 [log_collector] {"stage_name":"log_collector","events_processed":12660,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2532,"last_update":"2026-03-21T20:03:53.86986563Z"} +2026/03/21 20:03:58 [metric_collector] {"stage_name":"metric_collector","events_processed":7084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1416.8,"last_update":"2026-03-21T20:03:53.870238575Z"} +2026/03/21 20:03:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:03:53.876089622Z"} +2026/03/21 20:03:58 [transform_engine] {"stage_name":"transform_engine","events_processed":236,"events_dropped":0,"avg_latency_ms":883.1610555660053,"throughput_eps":0,"last_update":"2026-03-21T20:03:53.965372635Z"} +2026/03/21 20:03:58 [detection_layer] {"stage_name":"detection_layer","events_processed":236,"events_dropped":0,"avg_latency_ms":16.59278677358395,"throughput_eps":0,"last_update":"2026-03-21T20:03:53.965325364Z"} +2026/03/21 20:03:58 ───────────────────────────────────────────────── +2026/03/21 20:04:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:04:03 [log_collector] {"stage_name":"log_collector","events_processed":12668,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2533.6,"last_update":"2026-03-21T20:03:58.870379312Z"} +2026/03/21 20:04:03 [metric_collector] {"stage_name":"metric_collector","events_processed":7089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1417.8,"last_update":"2026-03-21T20:03:58.870746785Z"} +2026/03/21 20:04:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:03:58.87961967Z"} +2026/03/21 20:04:03 [transform_engine] {"stage_name":"transform_engine","events_processed":236,"events_dropped":0,"avg_latency_ms":883.1610555660053,"throughput_eps":0,"last_update":"2026-03-21T20:03:58.965808677Z"} +2026/03/21 20:04:03 [detection_layer] {"stage_name":"detection_layer","events_processed":236,"events_dropped":0,"avg_latency_ms":16.59278677358395,"throughput_eps":0,"last_update":"2026-03-21T20:03:58.965782948Z"} +2026/03/21 20:04:03 ───────────────────────────────────────────────── +2026/03/21 20:04:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:04:08 [log_collector] {"stage_name":"log_collector","events_processed":12769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2553.8,"last_update":"2026-03-21T20:04:03.869889768Z"} +2026/03/21 20:04:08 [metric_collector] {"stage_name":"metric_collector","events_processed":7099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1419.8,"last_update":"2026-03-21T20:04:08.870150774Z"} +2026/03/21 20:04:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:04:03.876727906Z"} +2026/03/21 20:04:08 [transform_engine] {"stage_name":"transform_engine","events_processed":236,"events_dropped":0,"avg_latency_ms":883.1610555660053,"throughput_eps":0,"last_update":"2026-03-21T20:04:03.965086549Z"} +2026/03/21 20:04:08 [detection_layer] {"stage_name":"detection_layer","events_processed":236,"events_dropped":0,"avg_latency_ms":16.59278677358395,"throughput_eps":0,"last_update":"2026-03-21T20:04:03.966143213Z"} +2026/03/21 20:04:08 ───────────────────────────────────────────────── +2026/03/21 20:04:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:04:13 [log_collector] {"stage_name":"log_collector","events_processed":13021,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2604.2,"last_update":"2026-03-21T20:04:08.870216119Z"} +2026/03/21 20:04:13 [metric_collector] {"stage_name":"metric_collector","events_processed":7099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1419.8,"last_update":"2026-03-21T20:04:08.870150774Z"} +2026/03/21 20:04:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:04:08.877243549Z"} +2026/03/21 20:04:13 [transform_engine] {"stage_name":"transform_engine","events_processed":236,"events_dropped":0,"avg_latency_ms":883.1610555660053,"throughput_eps":0,"last_update":"2026-03-21T20:04:08.965476291Z"} +2026/03/21 20:04:13 [detection_layer] {"stage_name":"detection_layer","events_processed":236,"events_dropped":0,"avg_latency_ms":16.59278677358395,"throughput_eps":0,"last_update":"2026-03-21T20:04:08.965548419Z"} +2026/03/21 20:04:13 ───────────────────────────────────────────────── +Saved state: 12 clusters, 13022 messages, reason: none +2026/03/21 20:04:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:04:18 [log_collector] {"stage_name":"log_collector","events_processed":13024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2604.8,"last_update":"2026-03-21T20:04:18.86940498Z"} +2026/03/21 20:04:18 [metric_collector] {"stage_name":"metric_collector","events_processed":7109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1421.8,"last_update":"2026-03-21T20:04:18.869659287Z"} +2026/03/21 20:04:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:04:13.87803638Z"} +2026/03/21 20:04:18 [transform_engine] {"stage_name":"transform_engine","events_processed":236,"events_dropped":0,"avg_latency_ms":883.1610555660053,"throughput_eps":0,"last_update":"2026-03-21T20:04:13.965238738Z"} +2026/03/21 20:04:18 [detection_layer] {"stage_name":"detection_layer","events_processed":236,"events_dropped":0,"avg_latency_ms":16.59278677358395,"throughput_eps":0,"last_update":"2026-03-21T20:04:13.965267513Z"} +2026/03/21 20:04:18 ───────────────────────────────────────────────── +2026/03/21 20:04:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:04:23 [metric_collector] {"stage_name":"metric_collector","events_processed":7109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1421.8,"last_update":"2026-03-21T20:04:18.869659287Z"} +2026/03/21 20:04:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:04:18.877153951Z"} +2026/03/21 20:04:23 [transform_engine] {"stage_name":"transform_engine","events_processed":236,"events_dropped":0,"avg_latency_ms":883.1610555660053,"throughput_eps":0,"last_update":"2026-03-21T20:04:18.965409135Z"} +2026/03/21 20:04:23 [detection_layer] {"stage_name":"detection_layer","events_processed":236,"events_dropped":0,"avg_latency_ms":16.59278677358395,"throughput_eps":0,"last_update":"2026-03-21T20:04:18.965429765Z"} +2026/03/21 20:04:23 [log_collector] {"stage_name":"log_collector","events_processed":13024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2604.8,"last_update":"2026-03-21T20:04:23.869406803Z"} +2026/03/21 20:04:23 ───────────────────────────────────────────────── +2026/03/21 20:04:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:04:28 [detection_layer] {"stage_name":"detection_layer","events_processed":237,"events_dropped":0,"avg_latency_ms":15.66181241886716,"throughput_eps":0,"last_update":"2026-03-21T20:04:23.965518555Z"} +2026/03/21 20:04:28 [log_collector] {"stage_name":"log_collector","events_processed":13042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2608.4,"last_update":"2026-03-21T20:04:28.869566668Z"} +2026/03/21 20:04:28 [metric_collector] {"stage_name":"metric_collector","events_processed":7114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1422.8,"last_update":"2026-03-21T20:04:23.869976954Z"} +2026/03/21 20:04:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2848,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:04:23.878177382Z"} +2026/03/21 20:04:28 [transform_engine] {"stage_name":"transform_engine","events_processed":237,"events_dropped":0,"avg_latency_ms":1174.6958834528043,"throughput_eps":0,"last_update":"2026-03-21T20:04:23.965564454Z"} +2026/03/21 20:04:28 ───────────────────────────────────────────────── +2026/03/21 20:04:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:04:33 [transform_engine] {"stage_name":"transform_engine","events_processed":237,"events_dropped":0,"avg_latency_ms":1174.6958834528043,"throughput_eps":0,"last_update":"2026-03-21T20:04:28.965994496Z"} +2026/03/21 20:04:33 [detection_layer] {"stage_name":"detection_layer","events_processed":237,"events_dropped":0,"avg_latency_ms":15.66181241886716,"throughput_eps":0,"last_update":"2026-03-21T20:04:28.966104847Z"} +2026/03/21 20:04:33 [log_collector] {"stage_name":"log_collector","events_processed":13051,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2610.2,"last_update":"2026-03-21T20:04:33.869426317Z"} +2026/03/21 20:04:33 [metric_collector] {"stage_name":"metric_collector","events_processed":7119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1423.8,"last_update":"2026-03-21T20:04:28.869932678Z"} +2026/03/21 20:04:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:04:28.875865332Z"} +2026/03/21 20:04:33 ───────────────────────────────────────────────── +2026/03/21 20:04:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:04:38 [transform_engine] {"stage_name":"transform_engine","events_processed":237,"events_dropped":0,"avg_latency_ms":1174.6958834528043,"throughput_eps":0,"last_update":"2026-03-21T20:04:33.965885995Z"} +2026/03/21 20:04:38 [detection_layer] {"stage_name":"detection_layer","events_processed":237,"events_dropped":0,"avg_latency_ms":15.66181241886716,"throughput_eps":0,"last_update":"2026-03-21T20:04:33.965846741Z"} +2026/03/21 20:04:38 [log_collector] {"stage_name":"log_collector","events_processed":13051,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2610.2,"last_update":"2026-03-21T20:04:33.869426317Z"} +2026/03/21 20:04:38 [metric_collector] {"stage_name":"metric_collector","events_processed":7124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1424.8,"last_update":"2026-03-21T20:04:33.869806956Z"} +2026/03/21 20:04:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:04:33.878667077Z"} +2026/03/21 20:04:38 ───────────────────────────────────────────────── +2026/03/21 20:04:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:04:43 [metric_collector] {"stage_name":"metric_collector","events_processed":7129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1425.8,"last_update":"2026-03-21T20:04:38.870080345Z"} +2026/03/21 20:04:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:04:38.878080418Z"} +2026/03/21 20:04:43 [transform_engine] {"stage_name":"transform_engine","events_processed":237,"events_dropped":0,"avg_latency_ms":1174.6958834528043,"throughput_eps":0,"last_update":"2026-03-21T20:04:38.96531106Z"} +2026/03/21 20:04:43 [detection_layer] {"stage_name":"detection_layer","events_processed":237,"events_dropped":0,"avg_latency_ms":15.66181241886716,"throughput_eps":0,"last_update":"2026-03-21T20:04:38.965276935Z"} +2026/03/21 20:04:43 [log_collector] {"stage_name":"log_collector","events_processed":13051,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2610.2,"last_update":"2026-03-21T20:04:38.869658847Z"} +2026/03/21 20:04:43 ───────────────────────────────────────────────── +2026/03/21 20:04:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:04:48 [log_collector] {"stage_name":"log_collector","events_processed":13051,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2610.2,"last_update":"2026-03-21T20:04:48.869602158Z"} +2026/03/21 20:04:48 [metric_collector] {"stage_name":"metric_collector","events_processed":7134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1426.8,"last_update":"2026-03-21T20:04:43.870435219Z"} +2026/03/21 20:04:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:04:43.878375167Z"} +2026/03/21 20:04:48 [transform_engine] {"stage_name":"transform_engine","events_processed":237,"events_dropped":0,"avg_latency_ms":1174.6958834528043,"throughput_eps":0,"last_update":"2026-03-21T20:04:43.965544852Z"} +2026/03/21 20:04:48 [detection_layer] {"stage_name":"detection_layer","events_processed":237,"events_dropped":0,"avg_latency_ms":15.66181241886716,"throughput_eps":0,"last_update":"2026-03-21T20:04:43.965716411Z"} +2026/03/21 20:04:48 ───────────────────────────────────────────────── +2026/03/21 20:04:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:04:53 [transform_engine] {"stage_name":"transform_engine","events_processed":238,"events_dropped":0,"avg_latency_ms":962.9979629622435,"throughput_eps":0,"last_update":"2026-03-21T20:04:49.081273574Z"} +2026/03/21 20:04:53 [detection_layer] {"stage_name":"detection_layer","events_processed":237,"events_dropped":0,"avg_latency_ms":15.66181241886716,"throughput_eps":0,"last_update":"2026-03-21T20:04:48.966202466Z"} +2026/03/21 20:04:53 [log_collector] {"stage_name":"log_collector","events_processed":13051,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2610.2,"last_update":"2026-03-21T20:04:48.869602158Z"} +2026/03/21 20:04:53 [metric_collector] {"stage_name":"metric_collector","events_processed":7139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1427.8,"last_update":"2026-03-21T20:04:48.869972187Z"} +2026/03/21 20:04:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:04:48.879914501Z"} +2026/03/21 20:04:53 ───────────────────────────────────────────────── +2026/03/21 20:04:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:04:58 [log_collector] {"stage_name":"log_collector","events_processed":13051,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2610.2,"last_update":"2026-03-21T20:04:58.869421226Z"} +2026/03/21 20:04:58 [metric_collector] {"stage_name":"metric_collector","events_processed":7144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1428.8,"last_update":"2026-03-21T20:04:53.870099153Z"} +2026/03/21 20:04:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2860,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:04:53.879018787Z"} +2026/03/21 20:04:58 [transform_engine] {"stage_name":"transform_engine","events_processed":238,"events_dropped":0,"avg_latency_ms":962.9979629622435,"throughput_eps":0,"last_update":"2026-03-21T20:04:53.965211942Z"} +2026/03/21 20:04:58 [detection_layer] {"stage_name":"detection_layer","events_processed":238,"events_dropped":0,"avg_latency_ms":16.84072753509373,"throughput_eps":0,"last_update":"2026-03-21T20:04:53.966303753Z"} +2026/03/21 20:04:58 ───────────────────────────────────────────────── +2026/03/21 20:05:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:05:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2862,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:04:58.879922571Z"} +2026/03/21 20:05:03 [transform_engine] {"stage_name":"transform_engine","events_processed":238,"events_dropped":0,"avg_latency_ms":962.9979629622435,"throughput_eps":0,"last_update":"2026-03-21T20:04:58.965112773Z"} +2026/03/21 20:05:03 [detection_layer] {"stage_name":"detection_layer","events_processed":238,"events_dropped":0,"avg_latency_ms":16.84072753509373,"throughput_eps":0,"last_update":"2026-03-21T20:04:58.966418274Z"} +2026/03/21 20:05:03 [log_collector] {"stage_name":"log_collector","events_processed":13051,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2610.2,"last_update":"2026-03-21T20:05:03.870004074Z"} +2026/03/21 20:05:03 [metric_collector] {"stage_name":"metric_collector","events_processed":7149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1429.8,"last_update":"2026-03-21T20:04:58.869973724Z"} +2026/03/21 20:05:03 ───────────────────────────────────────────────── +2026/03/21 20:05:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:05:08 [log_collector] {"stage_name":"log_collector","events_processed":13051,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2610.2,"last_update":"2026-03-21T20:05:03.870004074Z"} +2026/03/21 20:05:08 [metric_collector] {"stage_name":"metric_collector","events_processed":7154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1430.8,"last_update":"2026-03-21T20:05:03.870771694Z"} +2026/03/21 20:05:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:05:03.879008381Z"} +2026/03/21 20:05:08 [transform_engine] {"stage_name":"transform_engine","events_processed":238,"events_dropped":0,"avg_latency_ms":962.9979629622435,"throughput_eps":0,"last_update":"2026-03-21T20:05:03.965330933Z"} +2026/03/21 20:05:08 [detection_layer] {"stage_name":"detection_layer","events_processed":238,"events_dropped":0,"avg_latency_ms":16.84072753509373,"throughput_eps":0,"last_update":"2026-03-21T20:05:03.965290315Z"} +2026/03/21 20:05:08 ───────────────────────────────────────────────── +2026/03/21 20:05:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:05:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:05:08.878278111Z"} +2026/03/21 20:05:13 [transform_engine] {"stage_name":"transform_engine","events_processed":238,"events_dropped":0,"avg_latency_ms":962.9979629622435,"throughput_eps":0,"last_update":"2026-03-21T20:05:08.965514534Z"} +2026/03/21 20:05:13 [detection_layer] {"stage_name":"detection_layer","events_processed":238,"events_dropped":0,"avg_latency_ms":16.84072753509373,"throughput_eps":0,"last_update":"2026-03-21T20:05:08.965551705Z"} +2026/03/21 20:05:13 [log_collector] {"stage_name":"log_collector","events_processed":13051,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2610.2,"last_update":"2026-03-21T20:05:08.86949603Z"} +2026/03/21 20:05:13 [metric_collector] {"stage_name":"metric_collector","events_processed":7159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1431.8,"last_update":"2026-03-21T20:05:08.870121458Z"} +2026/03/21 20:05:13 ───────────────────────────────────────────────── +2026/03/21 20:05:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:05:18 [detection_layer] {"stage_name":"detection_layer","events_processed":238,"events_dropped":0,"avg_latency_ms":16.84072753509373,"throughput_eps":0,"last_update":"2026-03-21T20:05:13.965545222Z"} +2026/03/21 20:05:18 [log_collector] {"stage_name":"log_collector","events_processed":13051,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2610.2,"last_update":"2026-03-21T20:05:13.869999845Z"} +2026/03/21 20:05:18 [metric_collector] {"stage_name":"metric_collector","events_processed":7164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1432.8,"last_update":"2026-03-21T20:05:13.870239193Z"} +2026/03/21 20:05:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2868,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:05:13.879238029Z"} +2026/03/21 20:05:18 [transform_engine] {"stage_name":"transform_engine","events_processed":238,"events_dropped":0,"avg_latency_ms":962.9979629622435,"throughput_eps":0,"last_update":"2026-03-21T20:05:13.965527698Z"} +2026/03/21 20:05:18 ───────────────────────────────────────────────── +2026/03/21 20:05:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:05:23 [log_collector] {"stage_name":"log_collector","events_processed":13051,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2610.2,"last_update":"2026-03-21T20:05:23.869419811Z"} +2026/03/21 20:05:23 [metric_collector] {"stage_name":"metric_collector","events_processed":7169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1433.8,"last_update":"2026-03-21T20:05:18.869677207Z"} +2026/03/21 20:05:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:05:18.878299842Z"} +2026/03/21 20:05:23 [transform_engine] {"stage_name":"transform_engine","events_processed":239,"events_dropped":0,"avg_latency_ms":784.3286525697948,"throughput_eps":0,"last_update":"2026-03-21T20:05:19.03518468Z"} +2026/03/21 20:05:23 [detection_layer] {"stage_name":"detection_layer","events_processed":238,"events_dropped":0,"avg_latency_ms":16.84072753509373,"throughput_eps":0,"last_update":"2026-03-21T20:05:18.966543604Z"} +2026/03/21 20:05:23 ───────────────────────────────────────────────── +2026/03/21 20:05:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:05:28 [log_collector] {"stage_name":"log_collector","events_processed":13051,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2610.2,"last_update":"2026-03-21T20:05:23.869419811Z"} +2026/03/21 20:05:28 [metric_collector] {"stage_name":"metric_collector","events_processed":7174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1434.8,"last_update":"2026-03-21T20:05:23.869822703Z"} +2026/03/21 20:05:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:05:23.878006397Z"} +2026/03/21 20:05:28 [transform_engine] {"stage_name":"transform_engine","events_processed":239,"events_dropped":0,"avg_latency_ms":784.3286525697948,"throughput_eps":0,"last_update":"2026-03-21T20:05:23.965144652Z"} +2026/03/21 20:05:28 [detection_layer] {"stage_name":"detection_layer","events_processed":239,"events_dropped":0,"avg_latency_ms":17.341779228074984,"throughput_eps":0,"last_update":"2026-03-21T20:05:23.966266621Z"} +2026/03/21 20:05:28 ───────────────────────────────────────────────── +2026/03/21 20:05:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:05:33 [transform_engine] {"stage_name":"transform_engine","events_processed":239,"events_dropped":0,"avg_latency_ms":784.3286525697948,"throughput_eps":0,"last_update":"2026-03-21T20:05:28.965429582Z"} +2026/03/21 20:05:33 [detection_layer] {"stage_name":"detection_layer","events_processed":239,"events_dropped":0,"avg_latency_ms":17.341779228074984,"throughput_eps":0,"last_update":"2026-03-21T20:05:28.965372753Z"} +2026/03/21 20:05:33 [log_collector] {"stage_name":"log_collector","events_processed":13051,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2610.2,"last_update":"2026-03-21T20:05:28.869423052Z"} +2026/03/21 20:05:33 [metric_collector] {"stage_name":"metric_collector","events_processed":7179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1435.8,"last_update":"2026-03-21T20:05:28.869836303Z"} +2026/03/21 20:05:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:05:28.878191326Z"} +2026/03/21 20:05:33 ───────────────────────────────────────────────── +2026/03/21 20:05:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:05:38 [log_collector] {"stage_name":"log_collector","events_processed":13051,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2610.2,"last_update":"2026-03-21T20:05:33.869532436Z"} +2026/03/21 20:05:38 [metric_collector] {"stage_name":"metric_collector","events_processed":7184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1436.8,"last_update":"2026-03-21T20:05:33.869819506Z"} +2026/03/21 20:05:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2876,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:05:33.878183035Z"} +2026/03/21 20:05:38 [transform_engine] {"stage_name":"transform_engine","events_processed":239,"events_dropped":0,"avg_latency_ms":784.3286525697948,"throughput_eps":0,"last_update":"2026-03-21T20:05:33.965407636Z"} +2026/03/21 20:05:38 [detection_layer] {"stage_name":"detection_layer","events_processed":239,"events_dropped":0,"avg_latency_ms":17.341779228074984,"throughput_eps":0,"last_update":"2026-03-21T20:05:33.965428155Z"} +2026/03/21 20:05:38 ───────────────────────────────────────────────── +2026/03/21 20:05:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:05:43 [log_collector] {"stage_name":"log_collector","events_processed":13051,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2610.2,"last_update":"2026-03-21T20:05:43.869604742Z"} +2026/03/21 20:05:43 [metric_collector] {"stage_name":"metric_collector","events_processed":7189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1437.8,"last_update":"2026-03-21T20:05:38.86968893Z"} +2026/03/21 20:05:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:05:38.878704829Z"} +2026/03/21 20:05:43 [transform_engine] {"stage_name":"transform_engine","events_processed":239,"events_dropped":0,"avg_latency_ms":784.3286525697948,"throughput_eps":0,"last_update":"2026-03-21T20:05:38.966043337Z"} +2026/03/21 20:05:43 [detection_layer] {"stage_name":"detection_layer","events_processed":239,"events_dropped":0,"avg_latency_ms":17.341779228074984,"throughput_eps":0,"last_update":"2026-03-21T20:05:38.96615439Z"} +2026/03/21 20:05:43 ───────────────────────────────────────────────── +Saved state: 12 clusters, 13052 messages, reason: none +2026/03/21 20:05:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:05:48 [log_collector] {"stage_name":"log_collector","events_processed":13051,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2610.2,"last_update":"2026-03-21T20:05:43.869604742Z"} +2026/03/21 20:05:48 [metric_collector] {"stage_name":"metric_collector","events_processed":7194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1438.8,"last_update":"2026-03-21T20:05:43.869873177Z"} +2026/03/21 20:05:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:05:43.879368894Z"} +2026/03/21 20:05:48 [transform_engine] {"stage_name":"transform_engine","events_processed":239,"events_dropped":0,"avg_latency_ms":784.3286525697948,"throughput_eps":0,"last_update":"2026-03-21T20:05:43.965582317Z"} +2026/03/21 20:05:48 [detection_layer] {"stage_name":"detection_layer","events_processed":239,"events_dropped":0,"avg_latency_ms":17.341779228074984,"throughput_eps":0,"last_update":"2026-03-21T20:05:43.96556319Z"} +2026/03/21 20:05:48 ───────────────────────────────────────────────── +2026/03/21 20:05:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:05:53 [log_collector] {"stage_name":"log_collector","events_processed":13054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2610.8,"last_update":"2026-03-21T20:05:48.870445714Z"} +2026/03/21 20:05:53 [metric_collector] {"stage_name":"metric_collector","events_processed":7199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1439.8,"last_update":"2026-03-21T20:05:48.870695944Z"} +2026/03/21 20:05:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:05:48.881426586Z"} +2026/03/21 20:05:53 [transform_engine] {"stage_name":"transform_engine","events_processed":240,"events_dropped":0,"avg_latency_ms":650.6777154558358,"throughput_eps":0,"last_update":"2026-03-21T20:05:49.081720318Z"} +2026/03/21 20:05:53 [detection_layer] {"stage_name":"detection_layer","events_processed":239,"events_dropped":0,"avg_latency_ms":17.341779228074984,"throughput_eps":0,"last_update":"2026-03-21T20:05:48.965615671Z"} +2026/03/21 20:05:53 ───────────────────────────────────────────────── +2026/03/21 20:05:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:05:58 [transform_engine] {"stage_name":"transform_engine","events_processed":240,"events_dropped":0,"avg_latency_ms":650.6777154558358,"throughput_eps":0,"last_update":"2026-03-21T20:05:53.965535319Z"} +2026/03/21 20:05:58 [detection_layer] {"stage_name":"detection_layer","events_processed":240,"events_dropped":0,"avg_latency_ms":18.73617358245999,"throughput_eps":0,"last_update":"2026-03-21T20:05:53.965429196Z"} +2026/03/21 20:05:58 [log_collector] {"stage_name":"log_collector","events_processed":13065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2613,"last_update":"2026-03-21T20:05:53.870339962Z"} +2026/03/21 20:05:58 [metric_collector] {"stage_name":"metric_collector","events_processed":7204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1440.8,"last_update":"2026-03-21T20:05:53.870595391Z"} +2026/03/21 20:05:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:05:53.879074782Z"} +2026/03/21 20:05:58 ───────────────────────────────────────────────── +2026/03/21 20:06:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:06:03 [log_collector] {"stage_name":"log_collector","events_processed":13065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2613,"last_update":"2026-03-21T20:05:58.869521183Z"} +2026/03/21 20:06:03 [metric_collector] {"stage_name":"metric_collector","events_processed":7209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1441.8,"last_update":"2026-03-21T20:05:58.869927431Z"} +2026/03/21 20:06:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2886,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:05:58.878822529Z"} +2026/03/21 20:06:03 [transform_engine] {"stage_name":"transform_engine","events_processed":240,"events_dropped":0,"avg_latency_ms":650.6777154558358,"throughput_eps":0,"last_update":"2026-03-21T20:05:58.966055915Z"} +2026/03/21 20:06:03 [detection_layer] {"stage_name":"detection_layer","events_processed":240,"events_dropped":0,"avg_latency_ms":18.73617358245999,"throughput_eps":0,"last_update":"2026-03-21T20:05:58.966015869Z"} +2026/03/21 20:06:03 ───────────────────────────────────────────────── +2026/03/21 20:06:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:06:08 [log_collector] {"stage_name":"log_collector","events_processed":13065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2613,"last_update":"2026-03-21T20:06:08.869431938Z"} +2026/03/21 20:06:08 [metric_collector] {"stage_name":"metric_collector","events_processed":7214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1442.8,"last_update":"2026-03-21T20:06:03.870420205Z"} +2026/03/21 20:06:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:06:03.878912952Z"} +2026/03/21 20:06:08 [transform_engine] {"stage_name":"transform_engine","events_processed":240,"events_dropped":0,"avg_latency_ms":650.6777154558358,"throughput_eps":0,"last_update":"2026-03-21T20:06:03.966065894Z"} +2026/03/21 20:06:08 [detection_layer] {"stage_name":"detection_layer","events_processed":240,"events_dropped":0,"avg_latency_ms":18.73617358245999,"throughput_eps":0,"last_update":"2026-03-21T20:06:03.966097435Z"} +2026/03/21 20:06:08 ───────────────────────────────────────────────── +2026/03/21 20:06:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:06:13 [log_collector] {"stage_name":"log_collector","events_processed":13065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2613,"last_update":"2026-03-21T20:06:08.869431938Z"} +2026/03/21 20:06:13 [metric_collector] {"stage_name":"metric_collector","events_processed":7219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1443.8,"last_update":"2026-03-21T20:06:08.870025154Z"} +2026/03/21 20:06:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:06:08.879093173Z"} +2026/03/21 20:06:13 [transform_engine] {"stage_name":"transform_engine","events_processed":240,"events_dropped":0,"avg_latency_ms":650.6777154558358,"throughput_eps":0,"last_update":"2026-03-21T20:06:08.965480148Z"} +2026/03/21 20:06:13 [detection_layer] {"stage_name":"detection_layer","events_processed":240,"events_dropped":0,"avg_latency_ms":18.73617358245999,"throughput_eps":0,"last_update":"2026-03-21T20:06:08.965446263Z"} +2026/03/21 20:06:13 ───────────────────────────────────────────────── +2026/03/21 20:06:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:06:18 [log_collector] {"stage_name":"log_collector","events_processed":13065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2613,"last_update":"2026-03-21T20:06:18.869438703Z"} +2026/03/21 20:06:18 [metric_collector] {"stage_name":"metric_collector","events_processed":7224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1444.8,"last_update":"2026-03-21T20:06:13.87017609Z"} +2026/03/21 20:06:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2892,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:06:13.878847298Z"} +2026/03/21 20:06:18 [transform_engine] {"stage_name":"transform_engine","events_processed":240,"events_dropped":0,"avg_latency_ms":650.6777154558358,"throughput_eps":0,"last_update":"2026-03-21T20:06:13.966076938Z"} +2026/03/21 20:06:18 [detection_layer] {"stage_name":"detection_layer","events_processed":240,"events_dropped":0,"avg_latency_ms":18.73617358245999,"throughput_eps":0,"last_update":"2026-03-21T20:06:13.966028615Z"} +2026/03/21 20:06:18 ───────────────────────────────────────────────── +2026/03/21 20:06:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:06:23 [transform_engine] {"stage_name":"transform_engine","events_processed":240,"events_dropped":0,"avg_latency_ms":650.6777154558358,"throughput_eps":0,"last_update":"2026-03-21T20:06:18.965167Z"} +2026/03/21 20:06:23 [detection_layer] {"stage_name":"detection_layer","events_processed":240,"events_dropped":0,"avg_latency_ms":18.73617358245999,"throughput_eps":0,"last_update":"2026-03-21T20:06:18.965298652Z"} +2026/03/21 20:06:23 [log_collector] {"stage_name":"log_collector","events_processed":13065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2613,"last_update":"2026-03-21T20:06:18.869438703Z"} +2026/03/21 20:06:23 [metric_collector] {"stage_name":"metric_collector","events_processed":7229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1445.8,"last_update":"2026-03-21T20:06:18.869874718Z"} +2026/03/21 20:06:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:06:18.878082639Z"} +2026/03/21 20:06:23 ───────────────────────────────────────────────── +2026/03/21 20:06:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:06:28 [transform_engine] {"stage_name":"transform_engine","events_processed":241,"events_dropped":0,"avg_latency_ms":543.3504731646686,"throughput_eps":0,"last_update":"2026-03-21T20:06:23.965706289Z"} +2026/03/21 20:06:28 [detection_layer] {"stage_name":"detection_layer","events_processed":241,"events_dropped":0,"avg_latency_ms":18.933700665967994,"throughput_eps":0,"last_update":"2026-03-21T20:06:23.965671883Z"} +2026/03/21 20:06:28 [log_collector] {"stage_name":"log_collector","events_processed":13065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2613,"last_update":"2026-03-21T20:06:23.870448723Z"} +2026/03/21 20:06:28 [metric_collector] {"stage_name":"metric_collector","events_processed":7234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1446.8,"last_update":"2026-03-21T20:06:23.870792592Z"} +2026/03/21 20:06:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2896,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:06:23.879473229Z"} +2026/03/21 20:06:28 ───────────────────────────────────────────────── +2026/03/21 20:06:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:06:33 [log_collector] {"stage_name":"log_collector","events_processed":13065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2613,"last_update":"2026-03-21T20:06:28.869933852Z"} +2026/03/21 20:06:33 [metric_collector] {"stage_name":"metric_collector","events_processed":7239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1447.8,"last_update":"2026-03-21T20:06:28.870322295Z"} +2026/03/21 20:06:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2898,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:06:28.87806694Z"} +2026/03/21 20:06:33 [transform_engine] {"stage_name":"transform_engine","events_processed":241,"events_dropped":0,"avg_latency_ms":543.3504731646686,"throughput_eps":0,"last_update":"2026-03-21T20:06:28.965444722Z"} +2026/03/21 20:06:33 [detection_layer] {"stage_name":"detection_layer","events_processed":241,"events_dropped":0,"avg_latency_ms":18.933700665967994,"throughput_eps":0,"last_update":"2026-03-21T20:06:28.965291909Z"} +2026/03/21 20:06:33 ───────────────────────────────────────────────── +2026/03/21 20:06:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:06:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2900,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:06:33.878516714Z"} +2026/03/21 20:06:38 [transform_engine] {"stage_name":"transform_engine","events_processed":241,"events_dropped":0,"avg_latency_ms":543.3504731646686,"throughput_eps":0,"last_update":"2026-03-21T20:06:33.965712168Z"} +2026/03/21 20:06:38 [detection_layer] {"stage_name":"detection_layer","events_processed":241,"events_dropped":0,"avg_latency_ms":18.933700665967994,"throughput_eps":0,"last_update":"2026-03-21T20:06:33.965755401Z"} +2026/03/21 20:06:38 [log_collector] {"stage_name":"log_collector","events_processed":13065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2613,"last_update":"2026-03-21T20:06:33.869683786Z"} +2026/03/21 20:06:38 [metric_collector] {"stage_name":"metric_collector","events_processed":7244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1448.8,"last_update":"2026-03-21T20:06:33.870064965Z"} +2026/03/21 20:06:38 ───────────────────────────────────────────────── +2026/03/21 20:06:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:06:43 [log_collector] {"stage_name":"log_collector","events_processed":13065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2613,"last_update":"2026-03-21T20:06:38.86941782Z"} +2026/03/21 20:06:43 [metric_collector] {"stage_name":"metric_collector","events_processed":7254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1450.8,"last_update":"2026-03-21T20:06:43.869656688Z"} +2026/03/21 20:06:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:06:38.878493302Z"} +2026/03/21 20:06:43 [transform_engine] {"stage_name":"transform_engine","events_processed":241,"events_dropped":0,"avg_latency_ms":543.3504731646686,"throughput_eps":0,"last_update":"2026-03-21T20:06:38.965716479Z"} +2026/03/21 20:06:43 [detection_layer] {"stage_name":"detection_layer","events_processed":241,"events_dropped":0,"avg_latency_ms":18.933700665967994,"throughput_eps":0,"last_update":"2026-03-21T20:06:38.965692252Z"} +2026/03/21 20:06:43 ───────────────────────────────────────────────── +2026/03/21 20:06:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:06:48 [transform_engine] {"stage_name":"transform_engine","events_processed":241,"events_dropped":0,"avg_latency_ms":543.3504731646686,"throughput_eps":0,"last_update":"2026-03-21T20:06:43.965936Z"} +2026/03/21 20:06:48 [detection_layer] {"stage_name":"detection_layer","events_processed":241,"events_dropped":0,"avg_latency_ms":18.933700665967994,"throughput_eps":0,"last_update":"2026-03-21T20:06:43.965891735Z"} +2026/03/21 20:06:48 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:06:43.869702746Z"} +2026/03/21 20:06:48 [metric_collector] {"stage_name":"metric_collector","events_processed":7254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1450.8,"last_update":"2026-03-21T20:06:43.869656688Z"} +2026/03/21 20:06:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:06:43.875718197Z"} +2026/03/21 20:06:48 ───────────────────────────────────────────────── +2026/03/21 20:06:49 [ANOMALY] time=2026-03-21T20:06:49Z score=0.9377 method=SEAD details=MAD!:w=0.25,s=0.95 RRCF-fast!:w=0.20,s=1.00 RRCF-mid!:w=0.18,s=0.95 RRCF-slow!:w=0.15,s=0.95 COPOD!:w=0.23,s=0.85 +2026/03/21 20:06:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:06:53 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:06:48.869429685Z"} +2026/03/21 20:06:53 [metric_collector] {"stage_name":"metric_collector","events_processed":7259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1451.8,"last_update":"2026-03-21T20:06:48.869754777Z"} +2026/03/21 20:06:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2906,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:06:48.878635437Z"} +2026/03/21 20:06:53 [transform_engine] {"stage_name":"transform_engine","events_processed":242,"events_dropped":0,"avg_latency_ms":456.22747973173495,"throughput_eps":0,"last_update":"2026-03-21T20:06:49.073592006Z"} +2026/03/21 20:06:53 [detection_layer] {"stage_name":"detection_layer","events_processed":241,"events_dropped":0,"avg_latency_ms":18.933700665967994,"throughput_eps":0,"last_update":"2026-03-21T20:06:48.96582026Z"} +2026/03/21 20:06:53 ───────────────────────────────────────────────── +2026/03/21 20:06:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:06:58 [metric_collector] {"stage_name":"metric_collector","events_processed":7264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1452.8,"last_update":"2026-03-21T20:06:53.870223496Z"} +2026/03/21 20:06:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2908,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:06:53.878228207Z"} +2026/03/21 20:06:58 [transform_engine] {"stage_name":"transform_engine","events_processed":242,"events_dropped":0,"avg_latency_ms":456.22747973173495,"throughput_eps":0,"last_update":"2026-03-21T20:06:53.965389507Z"} +2026/03/21 20:06:58 [detection_layer] {"stage_name":"detection_layer","events_processed":242,"events_dropped":0,"avg_latency_ms":17.753232732774396,"throughput_eps":0,"last_update":"2026-03-21T20:06:53.965472215Z"} +2026/03/21 20:06:58 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:06:53.869816235Z"} +2026/03/21 20:06:58 ───────────────────────────────────────────────── +2026/03/21 20:07:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:07:03 [transform_engine] {"stage_name":"transform_engine","events_processed":242,"events_dropped":0,"avg_latency_ms":456.22747973173495,"throughput_eps":0,"last_update":"2026-03-21T20:06:58.965799106Z"} +2026/03/21 20:07:03 [detection_layer] {"stage_name":"detection_layer","events_processed":242,"events_dropped":0,"avg_latency_ms":17.753232732774396,"throughput_eps":0,"last_update":"2026-03-21T20:06:58.965754791Z"} +2026/03/21 20:07:03 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:06:58.869738781Z"} +2026/03/21 20:07:03 [metric_collector] {"stage_name":"metric_collector","events_processed":7269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1453.8,"last_update":"2026-03-21T20:06:58.87015045Z"} +2026/03/21 20:07:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:06:58.878595315Z"} +2026/03/21 20:07:03 ───────────────────────────────────────────────── +2026/03/21 20:07:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:07:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2912,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:07:03.879502467Z"} +2026/03/21 20:07:08 [transform_engine] {"stage_name":"transform_engine","events_processed":242,"events_dropped":0,"avg_latency_ms":456.22747973173495,"throughput_eps":0,"last_update":"2026-03-21T20:07:03.965721732Z"} +2026/03/21 20:07:08 [detection_layer] {"stage_name":"detection_layer","events_processed":242,"events_dropped":0,"avg_latency_ms":17.753232732774396,"throughput_eps":0,"last_update":"2026-03-21T20:07:03.965703227Z"} +2026/03/21 20:07:08 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:07:03.870207434Z"} +2026/03/21 20:07:08 [metric_collector] {"stage_name":"metric_collector","events_processed":7274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1454.8,"last_update":"2026-03-21T20:07:03.87057636Z"} +2026/03/21 20:07:08 ───────────────────────────────────────────────── +2026/03/21 20:07:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:07:13 [detection_layer] {"stage_name":"detection_layer","events_processed":242,"events_dropped":0,"avg_latency_ms":17.753232732774396,"throughput_eps":0,"last_update":"2026-03-21T20:07:08.965806777Z"} +2026/03/21 20:07:13 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:07:08.869424496Z"} +2026/03/21 20:07:13 [metric_collector] {"stage_name":"metric_collector","events_processed":7279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1455.8,"last_update":"2026-03-21T20:07:08.869771309Z"} +2026/03/21 20:07:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:07:08.877584404Z"} +2026/03/21 20:07:13 [transform_engine] {"stage_name":"transform_engine","events_processed":242,"events_dropped":0,"avg_latency_ms":456.22747973173495,"throughput_eps":0,"last_update":"2026-03-21T20:07:08.965778162Z"} +2026/03/21 20:07:13 ───────────────────────────────────────────────── +2026/03/21 20:07:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:07:18 [detection_layer] {"stage_name":"detection_layer","events_processed":242,"events_dropped":0,"avg_latency_ms":17.753232732774396,"throughput_eps":0,"last_update":"2026-03-21T20:07:13.965597379Z"} +2026/03/21 20:07:18 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:07:13.869933324Z"} +2026/03/21 20:07:18 [metric_collector] {"stage_name":"metric_collector","events_processed":7284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1456.8,"last_update":"2026-03-21T20:07:13.870251503Z"} +2026/03/21 20:07:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:07:13.878388498Z"} +2026/03/21 20:07:18 [transform_engine] {"stage_name":"transform_engine","events_processed":242,"events_dropped":0,"avg_latency_ms":456.22747973173495,"throughput_eps":0,"last_update":"2026-03-21T20:07:13.96555096Z"} +2026/03/21 20:07:18 ───────────────────────────────────────────────── +2026/03/21 20:07:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:07:23 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:07:18.869890765Z"} +2026/03/21 20:07:23 [metric_collector] {"stage_name":"metric_collector","events_processed":7289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1457.8,"last_update":"2026-03-21T20:07:18.870217902Z"} +2026/03/21 20:07:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2918,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:07:18.880756927Z"} +2026/03/21 20:07:23 [transform_engine] {"stage_name":"transform_engine","events_processed":243,"events_dropped":0,"avg_latency_ms":379.24500158538797,"throughput_eps":0,"last_update":"2026-03-21T20:07:19.036855342Z"} +2026/03/21 20:07:23 [detection_layer] {"stage_name":"detection_layer","events_processed":242,"events_dropped":0,"avg_latency_ms":17.753232732774396,"throughput_eps":0,"last_update":"2026-03-21T20:07:18.965922224Z"} +2026/03/21 20:07:23 ───────────────────────────────────────────────── +2026/03/21 20:07:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:07:28 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:07:23.869956928Z"} +2026/03/21 20:07:28 [metric_collector] {"stage_name":"metric_collector","events_processed":7294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1458.8,"last_update":"2026-03-21T20:07:23.870378916Z"} +2026/03/21 20:07:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2920,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:07:23.879395276Z"} +2026/03/21 20:07:28 [transform_engine] {"stage_name":"transform_engine","events_processed":243,"events_dropped":0,"avg_latency_ms":379.24500158538797,"throughput_eps":0,"last_update":"2026-03-21T20:07:23.965571279Z"} +2026/03/21 20:07:28 [detection_layer] {"stage_name":"detection_layer","events_processed":243,"events_dropped":0,"avg_latency_ms":17.35874698621952,"throughput_eps":0,"last_update":"2026-03-21T20:07:23.965547763Z"} +2026/03/21 20:07:28 ───────────────────────────────────────────────── +2026/03/21 20:07:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:07:33 [metric_collector] {"stage_name":"metric_collector","events_processed":7299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1459.8,"last_update":"2026-03-21T20:07:28.870470785Z"} +2026/03/21 20:07:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:07:28.878157506Z"} +2026/03/21 20:07:33 [transform_engine] {"stage_name":"transform_engine","events_processed":243,"events_dropped":0,"avg_latency_ms":379.24500158538797,"throughput_eps":0,"last_update":"2026-03-21T20:07:28.965378841Z"} +2026/03/21 20:07:33 [detection_layer] {"stage_name":"detection_layer","events_processed":243,"events_dropped":0,"avg_latency_ms":17.35874698621952,"throughput_eps":0,"last_update":"2026-03-21T20:07:28.965406795Z"} +2026/03/21 20:07:33 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:07:28.86997793Z"} +2026/03/21 20:07:33 ───────────────────────────────────────────────── +2026/03/21 20:07:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:07:38 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:07:33.869675657Z"} +2026/03/21 20:07:38 [metric_collector] {"stage_name":"metric_collector","events_processed":7304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1460.8,"last_update":"2026-03-21T20:07:33.870033723Z"} +2026/03/21 20:07:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:07:33.879246208Z"} +2026/03/21 20:07:38 [transform_engine] {"stage_name":"transform_engine","events_processed":243,"events_dropped":0,"avg_latency_ms":379.24500158538797,"throughput_eps":0,"last_update":"2026-03-21T20:07:33.965443421Z"} +2026/03/21 20:07:38 [detection_layer] {"stage_name":"detection_layer","events_processed":243,"events_dropped":0,"avg_latency_ms":17.35874698621952,"throughput_eps":0,"last_update":"2026-03-21T20:07:33.965476374Z"} +2026/03/21 20:07:38 ───────────────────────────────────────────────── +2026/03/21 20:07:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:07:43 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:07:43.869469492Z"} +2026/03/21 20:07:43 [metric_collector] {"stage_name":"metric_collector","events_processed":7309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1461.8,"last_update":"2026-03-21T20:07:38.869835172Z"} +2026/03/21 20:07:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:07:38.878167751Z"} +2026/03/21 20:07:43 [transform_engine] {"stage_name":"transform_engine","events_processed":243,"events_dropped":0,"avg_latency_ms":379.24500158538797,"throughput_eps":0,"last_update":"2026-03-21T20:07:38.965379759Z"} +2026/03/21 20:07:43 [detection_layer] {"stage_name":"detection_layer","events_processed":243,"events_dropped":0,"avg_latency_ms":17.35874698621952,"throughput_eps":0,"last_update":"2026-03-21T20:07:38.965374158Z"} +2026/03/21 20:07:43 ───────────────────────────────────────────────── +2026/03/21 20:07:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:07:48 [metric_collector] {"stage_name":"metric_collector","events_processed":7314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1462.8,"last_update":"2026-03-21T20:07:43.869916508Z"} +2026/03/21 20:07:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:07:43.878037152Z"} +2026/03/21 20:07:48 [transform_engine] {"stage_name":"transform_engine","events_processed":243,"events_dropped":0,"avg_latency_ms":379.24500158538797,"throughput_eps":0,"last_update":"2026-03-21T20:07:43.965166472Z"} +2026/03/21 20:07:48 [detection_layer] {"stage_name":"detection_layer","events_processed":243,"events_dropped":0,"avg_latency_ms":17.35874698621952,"throughput_eps":0,"last_update":"2026-03-21T20:07:43.966306194Z"} +2026/03/21 20:07:48 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:07:43.869469492Z"} +2026/03/21 20:07:48 ───────────────────────────────────────────────── +2026/03/21 20:07:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:07:53 [transform_engine] {"stage_name":"transform_engine","events_processed":244,"events_dropped":0,"avg_latency_ms":404.5959156683104,"throughput_eps":0,"last_update":"2026-03-21T20:07:49.471761228Z"} +2026/03/21 20:07:53 [detection_layer] {"stage_name":"detection_layer","events_processed":243,"events_dropped":0,"avg_latency_ms":17.35874698621952,"throughput_eps":0,"last_update":"2026-03-21T20:07:48.965739383Z"} +2026/03/21 20:07:53 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:07:48.869618252Z"} +2026/03/21 20:07:53 [metric_collector] {"stage_name":"metric_collector","events_processed":7319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1463.8,"last_update":"2026-03-21T20:07:48.869974524Z"} +2026/03/21 20:07:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2930,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:07:48.879564432Z"} +2026/03/21 20:07:53 ───────────────────────────────────────────────── +2026/03/21 20:07:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:07:58 [detection_layer] {"stage_name":"detection_layer","events_processed":244,"events_dropped":0,"avg_latency_ms":17.361921188975614,"throughput_eps":0,"last_update":"2026-03-21T20:07:53.9661302Z"} +2026/03/21 20:07:58 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:07:58.869885123Z"} +2026/03/21 20:07:58 [metric_collector] {"stage_name":"metric_collector","events_processed":7324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1464.8,"last_update":"2026-03-21T20:07:53.869921192Z"} +2026/03/21 20:07:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:07:53.878889648Z"} +2026/03/21 20:07:58 [transform_engine] {"stage_name":"transform_engine","events_processed":244,"events_dropped":0,"avg_latency_ms":404.5959156683104,"throughput_eps":0,"last_update":"2026-03-21T20:07:53.966104391Z"} +2026/03/21 20:07:58 ───────────────────────────────────────────────── +2026/03/21 20:08:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:08:03 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:07:58.869885123Z"} +2026/03/21 20:08:03 [metric_collector] {"stage_name":"metric_collector","events_processed":7329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1465.8,"last_update":"2026-03-21T20:07:58.870184186Z"} +2026/03/21 20:08:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:07:58.878632106Z"} +2026/03/21 20:08:03 [transform_engine] {"stage_name":"transform_engine","events_processed":244,"events_dropped":0,"avg_latency_ms":404.5959156683104,"throughput_eps":0,"last_update":"2026-03-21T20:07:58.965143562Z"} +2026/03/21 20:08:03 [detection_layer] {"stage_name":"detection_layer","events_processed":244,"events_dropped":0,"avg_latency_ms":17.361921188975614,"throughput_eps":0,"last_update":"2026-03-21T20:07:58.966253477Z"} +2026/03/21 20:08:03 ───────────────────────────────────────────────── +2026/03/21 20:08:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:08:08 [detection_layer] {"stage_name":"detection_layer","events_processed":244,"events_dropped":0,"avg_latency_ms":17.361921188975614,"throughput_eps":0,"last_update":"2026-03-21T20:08:03.966077254Z"} +2026/03/21 20:08:08 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:08:08.870130362Z"} +2026/03/21 20:08:08 [metric_collector] {"stage_name":"metric_collector","events_processed":7334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1466.8,"last_update":"2026-03-21T20:08:03.869946505Z"} +2026/03/21 20:08:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:08:03.877885029Z"} +2026/03/21 20:08:08 [transform_engine] {"stage_name":"transform_engine","events_processed":244,"events_dropped":0,"avg_latency_ms":404.5959156683104,"throughput_eps":0,"last_update":"2026-03-21T20:08:03.966117631Z"} +2026/03/21 20:08:08 ───────────────────────────────────────────────── +2026/03/21 20:08:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:08:13 [detection_layer] {"stage_name":"detection_layer","events_processed":244,"events_dropped":0,"avg_latency_ms":17.361921188975614,"throughput_eps":0,"last_update":"2026-03-21T20:08:08.966128258Z"} +2026/03/21 20:08:13 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:08:08.870130362Z"} +2026/03/21 20:08:13 [metric_collector] {"stage_name":"metric_collector","events_processed":7339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1467.8,"last_update":"2026-03-21T20:08:08.870590614Z"} +2026/03/21 20:08:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:08:08.878943082Z"} +2026/03/21 20:08:13 [transform_engine] {"stage_name":"transform_engine","events_processed":244,"events_dropped":0,"avg_latency_ms":404.5959156683104,"throughput_eps":0,"last_update":"2026-03-21T20:08:08.966110514Z"} +2026/03/21 20:08:13 ───────────────────────────────────────────────── +2026/03/21 20:08:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:08:18 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:08:13.870104343Z"} +2026/03/21 20:08:18 [metric_collector] {"stage_name":"metric_collector","events_processed":7344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1468.8,"last_update":"2026-03-21T20:08:13.870246735Z"} +2026/03/21 20:08:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2940,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:08:13.878761775Z"} +2026/03/21 20:08:18 [transform_engine] {"stage_name":"transform_engine","events_processed":244,"events_dropped":0,"avg_latency_ms":404.5959156683104,"throughput_eps":0,"last_update":"2026-03-21T20:08:13.965932423Z"} +2026/03/21 20:08:18 [detection_layer] {"stage_name":"detection_layer","events_processed":244,"events_dropped":0,"avg_latency_ms":17.361921188975614,"throughput_eps":0,"last_update":"2026-03-21T20:08:13.965922334Z"} +2026/03/21 20:08:18 ───────────────────────────────────────────────── +2026/03/21 20:08:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:08:23 [detection_layer] {"stage_name":"detection_layer","events_processed":244,"events_dropped":0,"avg_latency_ms":17.361921188975614,"throughput_eps":0,"last_update":"2026-03-21T20:08:18.965531189Z"} +2026/03/21 20:08:23 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:08:18.870162599Z"} +2026/03/21 20:08:23 [metric_collector] {"stage_name":"metric_collector","events_processed":7348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1469.6,"last_update":"2026-03-21T20:08:18.87014228Z"} +2026/03/21 20:08:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:08:18.879378279Z"} +2026/03/21 20:08:23 [transform_engine] {"stage_name":"transform_engine","events_processed":245,"events_dropped":0,"avg_latency_ms":337.40515853464836,"throughput_eps":0,"last_update":"2026-03-21T20:08:19.034184792Z"} +2026/03/21 20:08:23 ───────────────────────────────────────────────── +2026/03/21 20:08:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:08:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:08:23.878538597Z"} +2026/03/21 20:08:28 [transform_engine] {"stage_name":"transform_engine","events_processed":245,"events_dropped":0,"avg_latency_ms":337.40515853464836,"throughput_eps":0,"last_update":"2026-03-21T20:08:23.965731289Z"} +2026/03/21 20:08:28 [detection_layer] {"stage_name":"detection_layer","events_processed":245,"events_dropped":0,"avg_latency_ms":17.376475551180494,"throughput_eps":0,"last_update":"2026-03-21T20:08:23.965766376Z"} +2026/03/21 20:08:28 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:08:28.869534279Z"} +2026/03/21 20:08:28 [metric_collector] {"stage_name":"metric_collector","events_processed":7353,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1470.6,"last_update":"2026-03-21T20:08:23.86959603Z"} +2026/03/21 20:08:28 ───────────────────────────────────────────────── +2026/03/21 20:08:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:08:33 [metric_collector] {"stage_name":"metric_collector","events_processed":7359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1471.8,"last_update":"2026-03-21T20:08:28.869949836Z"} +2026/03/21 20:08:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:08:28.877943276Z"} +2026/03/21 20:08:33 [transform_engine] {"stage_name":"transform_engine","events_processed":245,"events_dropped":0,"avg_latency_ms":337.40515853464836,"throughput_eps":0,"last_update":"2026-03-21T20:08:28.966113619Z"} +2026/03/21 20:08:33 [detection_layer] {"stage_name":"detection_layer","events_processed":245,"events_dropped":0,"avg_latency_ms":17.376475551180494,"throughput_eps":0,"last_update":"2026-03-21T20:08:28.966138727Z"} +2026/03/21 20:08:33 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:08:33.869737781Z"} +2026/03/21 20:08:33 ───────────────────────────────────────────────── +2026/03/21 20:08:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:08:38 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:08:33.869737781Z"} +2026/03/21 20:08:38 [metric_collector] {"stage_name":"metric_collector","events_processed":7364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1472.8,"last_update":"2026-03-21T20:08:33.870081309Z"} +2026/03/21 20:08:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:08:33.879313341Z"} +2026/03/21 20:08:38 [transform_engine] {"stage_name":"transform_engine","events_processed":245,"events_dropped":0,"avg_latency_ms":337.40515853464836,"throughput_eps":0,"last_update":"2026-03-21T20:08:33.965502449Z"} +2026/03/21 20:08:38 [detection_layer] {"stage_name":"detection_layer","events_processed":245,"events_dropped":0,"avg_latency_ms":17.376475551180494,"throughput_eps":0,"last_update":"2026-03-21T20:08:33.965471921Z"} +2026/03/21 20:08:38 ───────────────────────────────────────────────── +2026/03/21 20:08:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:08:43 [metric_collector] {"stage_name":"metric_collector","events_processed":7369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1473.8,"last_update":"2026-03-21T20:08:38.869748595Z"} +2026/03/21 20:08:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:08:38.878622521Z"} +2026/03/21 20:08:43 [transform_engine] {"stage_name":"transform_engine","events_processed":245,"events_dropped":0,"avg_latency_ms":337.40515853464836,"throughput_eps":0,"last_update":"2026-03-21T20:08:38.965799031Z"} +2026/03/21 20:08:43 [detection_layer] {"stage_name":"detection_layer","events_processed":245,"events_dropped":0,"avg_latency_ms":17.376475551180494,"throughput_eps":0,"last_update":"2026-03-21T20:08:38.9657564Z"} +2026/03/21 20:08:43 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:08:38.869626811Z"} +2026/03/21 20:08:43 ───────────────────────────────────────────────── +2026/03/21 20:08:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:08:48 [transform_engine] {"stage_name":"transform_engine","events_processed":245,"events_dropped":0,"avg_latency_ms":337.40515853464836,"throughput_eps":0,"last_update":"2026-03-21T20:08:43.965161878Z"} +2026/03/21 20:08:48 [detection_layer] {"stage_name":"detection_layer","events_processed":245,"events_dropped":0,"avg_latency_ms":17.376475551180494,"throughput_eps":0,"last_update":"2026-03-21T20:08:43.966273538Z"} +2026/03/21 20:08:48 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:08:48.869764652Z"} +2026/03/21 20:08:48 [metric_collector] {"stage_name":"metric_collector","events_processed":7374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1474.8,"last_update":"2026-03-21T20:08:43.870771001Z"} +2026/03/21 20:08:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:08:43.879040949Z"} +2026/03/21 20:08:48 ───────────────────────────────────────────────── +2026/03/21 20:08:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:08:53 [detection_layer] {"stage_name":"detection_layer","events_processed":245,"events_dropped":0,"avg_latency_ms":17.376475551180494,"throughput_eps":0,"last_update":"2026-03-21T20:08:48.96586355Z"} +2026/03/21 20:08:53 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:08:53.870051905Z"} +2026/03/21 20:08:53 [metric_collector] {"stage_name":"metric_collector","events_processed":7379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1475.8,"last_update":"2026-03-21T20:08:48.870168205Z"} +2026/03/21 20:08:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:08:48.878623439Z"} +2026/03/21 20:08:53 [transform_engine] {"stage_name":"transform_engine","events_processed":246,"events_dropped":0,"avg_latency_ms":283.2719680277187,"throughput_eps":0,"last_update":"2026-03-21T20:08:49.032503296Z"} +2026/03/21 20:08:53 ───────────────────────────────────────────────── +2026/03/21 20:08:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:08:58 [transform_engine] {"stage_name":"transform_engine","events_processed":246,"events_dropped":0,"avg_latency_ms":283.2719680277187,"throughput_eps":0,"last_update":"2026-03-21T20:08:53.96533435Z"} +2026/03/21 20:08:58 [detection_layer] {"stage_name":"detection_layer","events_processed":246,"events_dropped":0,"avg_latency_ms":17.510168840944395,"throughput_eps":0,"last_update":"2026-03-21T20:08:53.965322848Z"} +2026/03/21 20:08:58 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:08:53.870051905Z"} +2026/03/21 20:08:58 [metric_collector] {"stage_name":"metric_collector","events_processed":7384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1476.8,"last_update":"2026-03-21T20:08:53.870484854Z"} +2026/03/21 20:08:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:08:53.879114341Z"} +2026/03/21 20:08:58 ───────────────────────────────────────────────── +2026/03/21 20:09:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:09:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2958,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:08:58.879094787Z"} +2026/03/21 20:09:03 [transform_engine] {"stage_name":"transform_engine","events_processed":246,"events_dropped":0,"avg_latency_ms":283.2719680277187,"throughput_eps":0,"last_update":"2026-03-21T20:08:58.965263046Z"} +2026/03/21 20:09:03 [detection_layer] {"stage_name":"detection_layer","events_processed":246,"events_dropped":0,"avg_latency_ms":17.510168840944395,"throughput_eps":0,"last_update":"2026-03-21T20:08:58.965285529Z"} +2026/03/21 20:09:03 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:09:03.869637191Z"} +2026/03/21 20:09:03 [metric_collector] {"stage_name":"metric_collector","events_processed":7389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1477.8,"last_update":"2026-03-21T20:08:58.870330721Z"} +2026/03/21 20:09:03 ───────────────────────────────────────────────── +2026/03/21 20:09:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:09:08 [transform_engine] {"stage_name":"transform_engine","events_processed":246,"events_dropped":0,"avg_latency_ms":283.2719680277187,"throughput_eps":0,"last_update":"2026-03-21T20:09:03.965379678Z"} +2026/03/21 20:09:08 [detection_layer] {"stage_name":"detection_layer","events_processed":246,"events_dropped":0,"avg_latency_ms":17.510168840944395,"throughput_eps":0,"last_update":"2026-03-21T20:09:03.965388705Z"} +2026/03/21 20:09:08 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:09:03.869637191Z"} +2026/03/21 20:09:08 [metric_collector] {"stage_name":"metric_collector","events_processed":7394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1478.8,"last_update":"2026-03-21T20:09:03.870021256Z"} +2026/03/21 20:09:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:09:03.87812616Z"} +2026/03/21 20:09:08 ───────────────────────────────────────────────── +2026/03/21 20:09:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:09:13 [detection_layer] {"stage_name":"detection_layer","events_processed":246,"events_dropped":0,"avg_latency_ms":17.510168840944395,"throughput_eps":0,"last_update":"2026-03-21T20:09:08.966227122Z"} +2026/03/21 20:09:13 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:09:08.869633635Z"} +2026/03/21 20:09:13 [metric_collector] {"stage_name":"metric_collector","events_processed":7399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1479.8,"last_update":"2026-03-21T20:09:08.869955822Z"} +2026/03/21 20:09:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2962,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:09:08.879055211Z"} +2026/03/21 20:09:13 [transform_engine] {"stage_name":"transform_engine","events_processed":246,"events_dropped":0,"avg_latency_ms":283.2719680277187,"throughput_eps":0,"last_update":"2026-03-21T20:09:08.965128438Z"} +2026/03/21 20:09:13 ───────────────────────────────────────────────── +2026/03/21 20:09:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:09:18 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:09:13.869528508Z"} +2026/03/21 20:09:18 [metric_collector] {"stage_name":"metric_collector","events_processed":7404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1480.8,"last_update":"2026-03-21T20:09:13.869955325Z"} +2026/03/21 20:09:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:09:13.878820305Z"} +2026/03/21 20:09:18 [transform_engine] {"stage_name":"transform_engine","events_processed":246,"events_dropped":0,"avg_latency_ms":283.2719680277187,"throughput_eps":0,"last_update":"2026-03-21T20:09:13.965988619Z"} +2026/03/21 20:09:18 [detection_layer] {"stage_name":"detection_layer","events_processed":246,"events_dropped":0,"avg_latency_ms":17.510168840944395,"throughput_eps":0,"last_update":"2026-03-21T20:09:13.96601522Z"} +2026/03/21 20:09:18 ───────────────────────────────────────────────── +2026/03/21 20:09:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:09:23 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:09:18.86984586Z"} +2026/03/21 20:09:23 [metric_collector] {"stage_name":"metric_collector","events_processed":7408,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1481.6,"last_update":"2026-03-21T20:09:18.869872971Z"} +2026/03/21 20:09:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:09:18.878626137Z"} +2026/03/21 20:09:23 [transform_engine] {"stage_name":"transform_engine","events_processed":246,"events_dropped":0,"avg_latency_ms":283.2719680277187,"throughput_eps":0,"last_update":"2026-03-21T20:09:18.965825942Z"} +2026/03/21 20:09:23 [detection_layer] {"stage_name":"detection_layer","events_processed":246,"events_dropped":0,"avg_latency_ms":17.510168840944395,"throughput_eps":0,"last_update":"2026-03-21T20:09:18.965872091Z"} +2026/03/21 20:09:23 ───────────────────────────────────────────────── +2026/03/21 20:09:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:09:28 [detection_layer] {"stage_name":"detection_layer","events_processed":247,"events_dropped":0,"avg_latency_ms":17.648535672755518,"throughput_eps":0,"last_update":"2026-03-21T20:09:23.96594137Z"} +2026/03/21 20:09:28 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:09:23.869679178Z"} +2026/03/21 20:09:28 [metric_collector] {"stage_name":"metric_collector","events_processed":7414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1482.8,"last_update":"2026-03-21T20:09:23.869892917Z"} +2026/03/21 20:09:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:09:23.878767225Z"} +2026/03/21 20:09:28 [transform_engine] {"stage_name":"transform_engine","events_processed":247,"events_dropped":0,"avg_latency_ms":240.10303542217497,"throughput_eps":0,"last_update":"2026-03-21T20:09:23.965977199Z"} +2026/03/21 20:09:28 ───────────────────────────────────────────────── +2026/03/21 20:09:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:09:33 [detection_layer] {"stage_name":"detection_layer","events_processed":247,"events_dropped":0,"avg_latency_ms":17.648535672755518,"throughput_eps":0,"last_update":"2026-03-21T20:09:28.965850297Z"} +2026/03/21 20:09:33 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:09:28.870342179Z"} +2026/03/21 20:09:33 [metric_collector] {"stage_name":"metric_collector","events_processed":7419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1483.8,"last_update":"2026-03-21T20:09:28.870686679Z"} +2026/03/21 20:09:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2970,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:09:28.879683901Z"} +2026/03/21 20:09:33 [transform_engine] {"stage_name":"transform_engine","events_processed":247,"events_dropped":0,"avg_latency_ms":240.10303542217497,"throughput_eps":0,"last_update":"2026-03-21T20:09:28.965871848Z"} +2026/03/21 20:09:33 ───────────────────────────────────────────────── +2026/03/21 20:09:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:09:38 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:09:33.869425896Z"} +2026/03/21 20:09:38 [metric_collector] {"stage_name":"metric_collector","events_processed":7424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1484.8,"last_update":"2026-03-21T20:09:33.86975162Z"} +2026/03/21 20:09:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:09:33.881284409Z"} +2026/03/21 20:09:38 [transform_engine] {"stage_name":"transform_engine","events_processed":247,"events_dropped":0,"avg_latency_ms":240.10303542217497,"throughput_eps":0,"last_update":"2026-03-21T20:09:33.965465051Z"} +2026/03/21 20:09:38 [detection_layer] {"stage_name":"detection_layer","events_processed":247,"events_dropped":0,"avg_latency_ms":17.648535672755518,"throughput_eps":0,"last_update":"2026-03-21T20:09:33.96549587Z"} +2026/03/21 20:09:38 ───────────────────────────────────────────────── +2026/03/21 20:09:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:09:43 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:09:38.869952362Z"} +2026/03/21 20:09:43 [metric_collector] {"stage_name":"metric_collector","events_processed":7429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1485.8,"last_update":"2026-03-21T20:09:38.870545528Z"} +2026/03/21 20:09:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:09:38.878510503Z"} +2026/03/21 20:09:43 [transform_engine] {"stage_name":"transform_engine","events_processed":247,"events_dropped":0,"avg_latency_ms":240.10303542217497,"throughput_eps":0,"last_update":"2026-03-21T20:09:38.965704087Z"} +2026/03/21 20:09:43 [detection_layer] {"stage_name":"detection_layer","events_processed":247,"events_dropped":0,"avg_latency_ms":17.648535672755518,"throughput_eps":0,"last_update":"2026-03-21T20:09:38.965684189Z"} +2026/03/21 20:09:43 ───────────────────────────────────────────────── +2026/03/21 20:09:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:09:48 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:09:43.870129521Z"} +2026/03/21 20:09:48 [metric_collector] {"stage_name":"metric_collector","events_processed":7433,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1486.6,"last_update":"2026-03-21T20:09:43.870103531Z"} +2026/03/21 20:09:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:09:43.878817751Z"} +2026/03/21 20:09:48 [transform_engine] {"stage_name":"transform_engine","events_processed":247,"events_dropped":0,"avg_latency_ms":240.10303542217497,"throughput_eps":0,"last_update":"2026-03-21T20:09:43.965992549Z"} +2026/03/21 20:09:48 [detection_layer] {"stage_name":"detection_layer","events_processed":247,"events_dropped":0,"avg_latency_ms":17.648535672755518,"throughput_eps":0,"last_update":"2026-03-21T20:09:43.966017256Z"} +2026/03/21 20:09:48 ───────────────────────────────────────────────── +2026/03/21 20:09:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:09:53 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:09:48.869634785Z"} +2026/03/21 20:09:53 [metric_collector] {"stage_name":"metric_collector","events_processed":7439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1487.8,"last_update":"2026-03-21T20:09:48.869873983Z"} +2026/03/21 20:09:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:09:48.878240577Z"} +2026/03/21 20:09:53 [transform_engine] {"stage_name":"transform_engine","events_processed":247,"events_dropped":0,"avg_latency_ms":240.10303542217497,"throughput_eps":0,"last_update":"2026-03-21T20:09:48.965378585Z"} +2026/03/21 20:09:53 [detection_layer] {"stage_name":"detection_layer","events_processed":247,"events_dropped":0,"avg_latency_ms":17.648535672755518,"throughput_eps":0,"last_update":"2026-03-21T20:09:48.965446665Z"} +2026/03/21 20:09:53 ───────────────────────────────────────────────── +2026/03/21 20:09:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:09:58 [metric_collector] {"stage_name":"metric_collector","events_processed":7443,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1488.6,"last_update":"2026-03-21T20:09:53.869524677Z"} +2026/03/21 20:09:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:09:53.878272862Z"} +2026/03/21 20:09:58 [transform_engine] {"stage_name":"transform_engine","events_processed":248,"events_dropped":0,"avg_latency_ms":206.09315133773998,"throughput_eps":0,"last_update":"2026-03-21T20:09:53.965171451Z"} +2026/03/21 20:09:58 [detection_layer] {"stage_name":"detection_layer","events_processed":248,"events_dropped":0,"avg_latency_ms":17.790035938204415,"throughput_eps":0,"last_update":"2026-03-21T20:09:53.965447299Z"} +2026/03/21 20:09:58 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:09:53.869514999Z"} +2026/03/21 20:09:58 ───────────────────────────────────────────────── +2026/03/21 20:10:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:10:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:09:58.878290413Z"} +2026/03/21 20:10:03 [transform_engine] {"stage_name":"transform_engine","events_processed":248,"events_dropped":0,"avg_latency_ms":206.09315133773998,"throughput_eps":0,"last_update":"2026-03-21T20:09:58.96543854Z"} +2026/03/21 20:10:03 [detection_layer] {"stage_name":"detection_layer","events_processed":248,"events_dropped":0,"avg_latency_ms":17.790035938204415,"throughput_eps":0,"last_update":"2026-03-21T20:09:58.965464199Z"} +2026/03/21 20:10:03 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:09:58.86994574Z"} +2026/03/21 20:10:03 [metric_collector] {"stage_name":"metric_collector","events_processed":7448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1489.6,"last_update":"2026-03-21T20:09:58.869977681Z"} +2026/03/21 20:10:03 ───────────────────────────────────────────────── +2026/03/21 20:10:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:10:08 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:10:03.869691673Z"} +2026/03/21 20:10:08 [metric_collector] {"stage_name":"metric_collector","events_processed":7453,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1490.6,"last_update":"2026-03-21T20:10:03.869783199Z"} +2026/03/21 20:10:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:10:03.882010368Z"} +2026/03/21 20:10:08 [transform_engine] {"stage_name":"transform_engine","events_processed":248,"events_dropped":0,"avg_latency_ms":206.09315133773998,"throughput_eps":0,"last_update":"2026-03-21T20:10:03.965121422Z"} +2026/03/21 20:10:08 [detection_layer] {"stage_name":"detection_layer","events_processed":248,"events_dropped":0,"avg_latency_ms":17.790035938204415,"throughput_eps":0,"last_update":"2026-03-21T20:10:03.966208063Z"} +2026/03/21 20:10:08 ───────────────────────────────────────────────── +2026/03/21 20:10:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:10:13 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:10:08.869481753Z"} +2026/03/21 20:10:13 [metric_collector] {"stage_name":"metric_collector","events_processed":7459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1491.8,"last_update":"2026-03-21T20:10:08.869697606Z"} +2026/03/21 20:10:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:10:08.878797806Z"} +2026/03/21 20:10:13 [transform_engine] {"stage_name":"transform_engine","events_processed":248,"events_dropped":0,"avg_latency_ms":206.09315133773998,"throughput_eps":0,"last_update":"2026-03-21T20:10:08.96596596Z"} +2026/03/21 20:10:13 [detection_layer] {"stage_name":"detection_layer","events_processed":248,"events_dropped":0,"avg_latency_ms":17.790035938204415,"throughput_eps":0,"last_update":"2026-03-21T20:10:08.965989766Z"} +2026/03/21 20:10:13 ───────────────────────────────────────────────── +2026/03/21 20:10:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:10:18 [detection_layer] {"stage_name":"detection_layer","events_processed":248,"events_dropped":0,"avg_latency_ms":17.790035938204415,"throughput_eps":0,"last_update":"2026-03-21T20:10:13.965613286Z"} +2026/03/21 20:10:18 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:10:18.869646154Z"} +2026/03/21 20:10:18 [metric_collector] {"stage_name":"metric_collector","events_processed":7464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1492.8,"last_update":"2026-03-21T20:10:13.869984487Z"} +2026/03/21 20:10:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:10:13.878412859Z"} +2026/03/21 20:10:18 [transform_engine] {"stage_name":"transform_engine","events_processed":248,"events_dropped":0,"avg_latency_ms":206.09315133773998,"throughput_eps":0,"last_update":"2026-03-21T20:10:13.965587797Z"} +2026/03/21 20:10:18 ───────────────────────────────────────────────── +2026/03/21 20:10:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:10:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2990,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:10:18.87903207Z"} +2026/03/21 20:10:23 [transform_engine] {"stage_name":"transform_engine","events_processed":248,"events_dropped":0,"avg_latency_ms":206.09315133773998,"throughput_eps":0,"last_update":"2026-03-21T20:10:18.965128853Z"} +2026/03/21 20:10:23 [detection_layer] {"stage_name":"detection_layer","events_processed":248,"events_dropped":0,"avg_latency_ms":17.790035938204415,"throughput_eps":0,"last_update":"2026-03-21T20:10:18.966253197Z"} +2026/03/21 20:10:23 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:10:18.869646154Z"} +2026/03/21 20:10:23 [metric_collector] {"stage_name":"metric_collector","events_processed":7469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1493.8,"last_update":"2026-03-21T20:10:18.869917432Z"} +2026/03/21 20:10:23 ───────────────────────────────────────────────── +2026/03/21 20:10:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:10:28 [detection_layer] {"stage_name":"detection_layer","events_processed":249,"events_dropped":0,"avg_latency_ms":18.070274150563534,"throughput_eps":0,"last_update":"2026-03-21T20:10:23.965336918Z"} +2026/03/21 20:10:28 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:10:23.869977244Z"} +2026/03/21 20:10:28 [metric_collector] {"stage_name":"metric_collector","events_processed":7474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1494.8,"last_update":"2026-03-21T20:10:23.869822608Z"} +2026/03/21 20:10:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2992,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:10:23.879113352Z"} +2026/03/21 20:10:28 [transform_engine] {"stage_name":"transform_engine","events_processed":249,"events_dropped":0,"avg_latency_ms":178.478214470192,"throughput_eps":0,"last_update":"2026-03-21T20:10:23.965313383Z"} +2026/03/21 20:10:28 ───────────────────────────────────────────────── +2026/03/21 20:10:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:10:33 [detection_layer] {"stage_name":"detection_layer","events_processed":249,"events_dropped":0,"avg_latency_ms":18.070274150563534,"throughput_eps":0,"last_update":"2026-03-21T20:10:28.966142191Z"} +2026/03/21 20:10:33 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:10:33.869864Z"} +2026/03/21 20:10:33 [metric_collector] {"stage_name":"metric_collector","events_processed":7479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1495.8,"last_update":"2026-03-21T20:10:28.869819522Z"} +2026/03/21 20:10:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:10:28.878924551Z"} +2026/03/21 20:10:33 [transform_engine] {"stage_name":"transform_engine","events_processed":249,"events_dropped":0,"avg_latency_ms":178.478214470192,"throughput_eps":0,"last_update":"2026-03-21T20:10:28.966093558Z"} +2026/03/21 20:10:33 ───────────────────────────────────────────────── +2026/03/21 20:10:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:10:38 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:10:33.869864Z"} +2026/03/21 20:10:38 [metric_collector] {"stage_name":"metric_collector","events_processed":7484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1496.8,"last_update":"2026-03-21T20:10:33.870266862Z"} +2026/03/21 20:10:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2996,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:10:33.878610743Z"} +2026/03/21 20:10:38 [transform_engine] {"stage_name":"transform_engine","events_processed":249,"events_dropped":0,"avg_latency_ms":178.478214470192,"throughput_eps":0,"last_update":"2026-03-21T20:10:33.965808936Z"} +2026/03/21 20:10:38 [detection_layer] {"stage_name":"detection_layer","events_processed":249,"events_dropped":0,"avg_latency_ms":18.070274150563534,"throughput_eps":0,"last_update":"2026-03-21T20:10:33.965859032Z"} +2026/03/21 20:10:38 ───────────────────────────────────────────────── +2026/03/21 20:10:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:10:43 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:10:43.870213689Z"} +2026/03/21 20:10:43 [metric_collector] {"stage_name":"metric_collector","events_processed":7489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1497.8,"last_update":"2026-03-21T20:10:38.870295027Z"} +2026/03/21 20:10:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:10:38.880286805Z"} +2026/03/21 20:10:43 [transform_engine] {"stage_name":"transform_engine","events_processed":249,"events_dropped":0,"avg_latency_ms":178.478214470192,"throughput_eps":0,"last_update":"2026-03-21T20:10:38.965485297Z"} +2026/03/21 20:10:43 [detection_layer] {"stage_name":"detection_layer","events_processed":249,"events_dropped":0,"avg_latency_ms":18.070274150563534,"throughput_eps":0,"last_update":"2026-03-21T20:10:38.965516958Z"} +2026/03/21 20:10:43 ───────────────────────────────────────────────── +2026/03/21 20:10:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:10:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:10:43.87971641Z"} +2026/03/21 20:10:48 [transform_engine] {"stage_name":"transform_engine","events_processed":249,"events_dropped":0,"avg_latency_ms":178.478214470192,"throughput_eps":0,"last_update":"2026-03-21T20:10:43.965818473Z"} +2026/03/21 20:10:48 [detection_layer] {"stage_name":"detection_layer","events_processed":249,"events_dropped":0,"avg_latency_ms":18.070274150563534,"throughput_eps":0,"last_update":"2026-03-21T20:10:43.965850253Z"} +2026/03/21 20:10:48 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:10:43.870213689Z"} +2026/03/21 20:10:48 [metric_collector] {"stage_name":"metric_collector","events_processed":7494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1498.8,"last_update":"2026-03-21T20:10:43.870655755Z"} +2026/03/21 20:10:48 ───────────────────────────────────────────────── +2026/03/21 20:10:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:10:53 [detection_layer] {"stage_name":"detection_layer","events_processed":249,"events_dropped":0,"avg_latency_ms":18.070274150563534,"throughput_eps":0,"last_update":"2026-03-21T20:10:48.966242804Z"} +2026/03/21 20:10:53 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:10:48.869460574Z"} +2026/03/21 20:10:53 [metric_collector] {"stage_name":"metric_collector","events_processed":7499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1499.8,"last_update":"2026-03-21T20:10:48.869710493Z"} +2026/03/21 20:10:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:10:48.87798904Z"} +2026/03/21 20:10:53 [transform_engine] {"stage_name":"transform_engine","events_processed":249,"events_dropped":0,"avg_latency_ms":178.478214470192,"throughput_eps":0,"last_update":"2026-03-21T20:10:48.965075688Z"} +2026/03/21 20:10:53 ───────────────────────────────────────────────── +2026/03/21 20:10:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:10:58 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:10:58.869600657Z"} +2026/03/21 20:10:58 [metric_collector] {"stage_name":"metric_collector","events_processed":7504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1500.8,"last_update":"2026-03-21T20:10:53.870423992Z"} +2026/03/21 20:10:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:10:53.878859227Z"} +2026/03/21 20:10:58 [transform_engine] {"stage_name":"transform_engine","events_processed":250,"events_dropped":0,"avg_latency_ms":156.4160921761536,"throughput_eps":0,"last_update":"2026-03-21T20:10:53.965914746Z"} +2026/03/21 20:10:58 [detection_layer] {"stage_name":"detection_layer","events_processed":250,"events_dropped":0,"avg_latency_ms":17.892633120450828,"throughput_eps":0,"last_update":"2026-03-21T20:10:53.965888416Z"} +2026/03/21 20:10:58 ───────────────────────────────────────────────── +2026/03/21 20:11:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:11:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3006,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:10:58.878202142Z"} +2026/03/21 20:11:03 [transform_engine] {"stage_name":"transform_engine","events_processed":250,"events_dropped":0,"avg_latency_ms":156.4160921761536,"throughput_eps":0,"last_update":"2026-03-21T20:10:58.965385706Z"} +2026/03/21 20:11:03 [detection_layer] {"stage_name":"detection_layer","events_processed":250,"events_dropped":0,"avg_latency_ms":17.892633120450828,"throughput_eps":0,"last_update":"2026-03-21T20:10:58.965371097Z"} +2026/03/21 20:11:03 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:10:58.869600657Z"} +2026/03/21 20:11:03 [metric_collector] {"stage_name":"metric_collector","events_processed":7509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1501.8,"last_update":"2026-03-21T20:10:58.870043845Z"} +2026/03/21 20:11:03 ───────────────────────────────────────────────── +2026/03/21 20:11:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:11:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3008,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:11:03.877720563Z"} +2026/03/21 20:11:08 [transform_engine] {"stage_name":"transform_engine","events_processed":250,"events_dropped":0,"avg_latency_ms":156.4160921761536,"throughput_eps":0,"last_update":"2026-03-21T20:11:03.965962164Z"} +2026/03/21 20:11:08 [detection_layer] {"stage_name":"detection_layer","events_processed":250,"events_dropped":0,"avg_latency_ms":17.892633120450828,"throughput_eps":0,"last_update":"2026-03-21T20:11:03.965918501Z"} +2026/03/21 20:11:08 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:11:08.869886615Z"} +2026/03/21 20:11:08 [metric_collector] {"stage_name":"metric_collector","events_processed":7514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1502.8,"last_update":"2026-03-21T20:11:03.869889323Z"} +2026/03/21 20:11:08 ───────────────────────────────────────────────── +2026/03/21 20:11:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:11:13 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:11:08.869886615Z"} +2026/03/21 20:11:13 [metric_collector] {"stage_name":"metric_collector","events_processed":7519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1503.8,"last_update":"2026-03-21T20:11:08.870305157Z"} +2026/03/21 20:11:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:11:08.879167952Z"} +2026/03/21 20:11:13 [transform_engine] {"stage_name":"transform_engine","events_processed":250,"events_dropped":0,"avg_latency_ms":156.4160921761536,"throughput_eps":0,"last_update":"2026-03-21T20:11:08.965400795Z"} +2026/03/21 20:11:13 [detection_layer] {"stage_name":"detection_layer","events_processed":250,"events_dropped":0,"avg_latency_ms":17.892633120450828,"throughput_eps":0,"last_update":"2026-03-21T20:11:08.965374385Z"} +2026/03/21 20:11:13 ───────────────────────────────────────────────── +2026/03/21 20:11:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:11:18 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:11:13.86989425Z"} +2026/03/21 20:11:18 [metric_collector] {"stage_name":"metric_collector","events_processed":7524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1504.8,"last_update":"2026-03-21T20:11:13.869861126Z"} +2026/03/21 20:11:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3012,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:11:13.878508769Z"} +2026/03/21 20:11:18 [transform_engine] {"stage_name":"transform_engine","events_processed":250,"events_dropped":0,"avg_latency_ms":156.4160921761536,"throughput_eps":0,"last_update":"2026-03-21T20:11:13.965741758Z"} +2026/03/21 20:11:18 [detection_layer] {"stage_name":"detection_layer","events_processed":250,"events_dropped":0,"avg_latency_ms":17.892633120450828,"throughput_eps":0,"last_update":"2026-03-21T20:11:13.965629534Z"} +2026/03/21 20:11:18 ───────────────────────────────────────────────── +2026/03/21 20:11:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:11:23 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:11:18.869541277Z"} +2026/03/21 20:11:23 [metric_collector] {"stage_name":"metric_collector","events_processed":7529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1505.8,"last_update":"2026-03-21T20:11:18.869863304Z"} +2026/03/21 20:11:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:11:18.87816281Z"} +2026/03/21 20:11:23 [transform_engine] {"stage_name":"transform_engine","events_processed":251,"events_dropped":0,"avg_latency_ms":138.6222843409229,"throughput_eps":0,"last_update":"2026-03-21T20:11:19.032886998Z"} +2026/03/21 20:11:23 [detection_layer] {"stage_name":"detection_layer","events_processed":250,"events_dropped":0,"avg_latency_ms":17.892633120450828,"throughput_eps":0,"last_update":"2026-03-21T20:11:18.965422702Z"} +2026/03/21 20:11:23 ───────────────────────────────────────────────── +2026/03/21 20:11:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:11:28 [metric_collector] {"stage_name":"metric_collector","events_processed":7534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1506.8,"last_update":"2026-03-21T20:11:23.870174995Z"} +2026/03/21 20:11:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:11:23.879604517Z"} +2026/03/21 20:11:28 [transform_engine] {"stage_name":"transform_engine","events_processed":251,"events_dropped":0,"avg_latency_ms":138.6222843409229,"throughput_eps":0,"last_update":"2026-03-21T20:11:23.965822781Z"} +2026/03/21 20:11:28 [detection_layer] {"stage_name":"detection_layer","events_processed":251,"events_dropped":0,"avg_latency_ms":17.800267696360663,"throughput_eps":0,"last_update":"2026-03-21T20:11:23.965848601Z"} +2026/03/21 20:11:28 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:11:23.869814134Z"} +2026/03/21 20:11:28 ───────────────────────────────────────────────── +2026/03/21 20:11:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:11:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3018,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:11:28.87904177Z"} +2026/03/21 20:11:33 [transform_engine] {"stage_name":"transform_engine","events_processed":251,"events_dropped":0,"avg_latency_ms":138.6222843409229,"throughput_eps":0,"last_update":"2026-03-21T20:11:28.965113885Z"} +2026/03/21 20:11:33 [detection_layer] {"stage_name":"detection_layer","events_processed":251,"events_dropped":0,"avg_latency_ms":17.800267696360663,"throughput_eps":0,"last_update":"2026-03-21T20:11:28.966230404Z"} +2026/03/21 20:11:33 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:11:28.86945603Z"} +2026/03/21 20:11:33 [metric_collector] {"stage_name":"metric_collector","events_processed":7539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1507.8,"last_update":"2026-03-21T20:11:28.869768508Z"} +2026/03/21 20:11:33 ───────────────────────────────────────────────── +2026/03/21 20:11:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:11:38 [detection_layer] {"stage_name":"detection_layer","events_processed":251,"events_dropped":0,"avg_latency_ms":17.800267696360663,"throughput_eps":0,"last_update":"2026-03-21T20:11:33.96607439Z"} +2026/03/21 20:11:38 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:11:38.869739299Z"} +2026/03/21 20:11:38 [metric_collector] {"stage_name":"metric_collector","events_processed":7544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1508.8,"last_update":"2026-03-21T20:11:33.870204799Z"} +2026/03/21 20:11:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3020,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:11:33.878925562Z"} +2026/03/21 20:11:38 [transform_engine] {"stage_name":"transform_engine","events_processed":251,"events_dropped":0,"avg_latency_ms":138.6222843409229,"throughput_eps":0,"last_update":"2026-03-21T20:11:33.966085782Z"} +2026/03/21 20:11:38 ───────────────────────────────────────────────── +2026/03/21 20:11:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:11:43 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:11:43.869786942Z"} +2026/03/21 20:11:43 [metric_collector] {"stage_name":"metric_collector","events_processed":7549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1509.8,"last_update":"2026-03-21T20:11:38.870084429Z"} +2026/03/21 20:11:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3022,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:11:38.878472295Z"} +2026/03/21 20:11:43 [transform_engine] {"stage_name":"transform_engine","events_processed":251,"events_dropped":0,"avg_latency_ms":138.6222843409229,"throughput_eps":0,"last_update":"2026-03-21T20:11:38.965672541Z"} +2026/03/21 20:11:43 [detection_layer] {"stage_name":"detection_layer","events_processed":251,"events_dropped":0,"avg_latency_ms":17.800267696360663,"throughput_eps":0,"last_update":"2026-03-21T20:11:38.965663194Z"} +2026/03/21 20:11:43 ───────────────────────────────────────────────── +Saved state: 12 clusters, 13071 messages, reason: none +2026/03/21 20:11:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:11:48 [detection_layer] {"stage_name":"detection_layer","events_processed":251,"events_dropped":0,"avg_latency_ms":17.800267696360663,"throughput_eps":0,"last_update":"2026-03-21T20:11:43.96574909Z"} +2026/03/21 20:11:48 [log_collector] {"stage_name":"log_collector","events_processed":13070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614,"last_update":"2026-03-21T20:11:43.869786942Z"} +2026/03/21 20:11:48 [metric_collector] {"stage_name":"metric_collector","events_processed":7554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1510.8,"last_update":"2026-03-21T20:11:43.870070404Z"} +2026/03/21 20:11:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:11:43.878557039Z"} +2026/03/21 20:11:48 [transform_engine] {"stage_name":"transform_engine","events_processed":251,"events_dropped":0,"avg_latency_ms":138.6222843409229,"throughput_eps":0,"last_update":"2026-03-21T20:11:43.96575938Z"} +2026/03/21 20:11:48 ───────────────────────────────────────────────── +2026/03/21 20:11:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:11:53 [metric_collector] {"stage_name":"metric_collector","events_processed":7559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1511.8,"last_update":"2026-03-21T20:11:48.869735375Z"} +2026/03/21 20:11:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:11:48.877467154Z"} +2026/03/21 20:11:53 [transform_engine] {"stage_name":"transform_engine","events_processed":252,"events_dropped":0,"avg_latency_ms":133.19865687273833,"throughput_eps":0,"last_update":"2026-03-21T20:11:49.077176372Z"} +2026/03/21 20:11:53 [detection_layer] {"stage_name":"detection_layer","events_processed":251,"events_dropped":0,"avg_latency_ms":17.800267696360663,"throughput_eps":0,"last_update":"2026-03-21T20:11:48.965658098Z"} +2026/03/21 20:11:53 [log_collector] {"stage_name":"log_collector","events_processed":13104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2620.8,"last_update":"2026-03-21T20:11:53.870214046Z"} +2026/03/21 20:11:53 ───────────────────────────────────────────────── +2026/03/21 20:11:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:11:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:11:53.876853372Z"} +2026/03/21 20:11:58 [transform_engine] {"stage_name":"transform_engine","events_processed":252,"events_dropped":0,"avg_latency_ms":133.19865687273833,"throughput_eps":0,"last_update":"2026-03-21T20:11:53.965384418Z"} +2026/03/21 20:11:58 [detection_layer] {"stage_name":"detection_layer","events_processed":252,"events_dropped":0,"avg_latency_ms":17.72182635708853,"throughput_eps":0,"last_update":"2026-03-21T20:11:53.965377244Z"} +2026/03/21 20:11:58 [log_collector] {"stage_name":"log_collector","events_processed":13104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2620.8,"last_update":"2026-03-21T20:11:53.870214046Z"} +2026/03/21 20:11:58 [metric_collector] {"stage_name":"metric_collector","events_processed":7564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1512.8,"last_update":"2026-03-21T20:11:53.87053518Z"} +2026/03/21 20:11:58 ───────────────────────────────────────────────── +2026/03/21 20:12:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:12:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:11:58.876466225Z"} +2026/03/21 20:12:03 [transform_engine] {"stage_name":"transform_engine","events_processed":252,"events_dropped":0,"avg_latency_ms":133.19865687273833,"throughput_eps":0,"last_update":"2026-03-21T20:11:58.965679467Z"} +2026/03/21 20:12:03 [detection_layer] {"stage_name":"detection_layer","events_processed":252,"events_dropped":0,"avg_latency_ms":17.72182635708853,"throughput_eps":0,"last_update":"2026-03-21T20:11:58.965655411Z"} +2026/03/21 20:12:03 [log_collector] {"stage_name":"log_collector","events_processed":13165,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2633,"last_update":"2026-03-21T20:12:03.869754901Z"} +2026/03/21 20:12:03 [metric_collector] {"stage_name":"metric_collector","events_processed":7569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1513.8,"last_update":"2026-03-21T20:11:58.869997235Z"} +2026/03/21 20:12:03 ───────────────────────────────────────────────── +2026/03/21 20:12:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:12:08 [log_collector] {"stage_name":"log_collector","events_processed":13165,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2633,"last_update":"2026-03-21T20:12:03.869754901Z"} +2026/03/21 20:12:08 [metric_collector] {"stage_name":"metric_collector","events_processed":7574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1514.8,"last_update":"2026-03-21T20:12:03.870073952Z"} +2026/03/21 20:12:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:12:03.876108991Z"} +2026/03/21 20:12:08 [transform_engine] {"stage_name":"transform_engine","events_processed":252,"events_dropped":0,"avg_latency_ms":133.19865687273833,"throughput_eps":0,"last_update":"2026-03-21T20:12:03.96525252Z"} +2026/03/21 20:12:08 [detection_layer] {"stage_name":"detection_layer","events_processed":252,"events_dropped":0,"avg_latency_ms":17.72182635708853,"throughput_eps":0,"last_update":"2026-03-21T20:12:03.965267408Z"} +2026/03/21 20:12:08 ───────────────────────────────────────────────── +2026/03/21 20:12:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:12:13 [detection_layer] {"stage_name":"detection_layer","events_processed":252,"events_dropped":0,"avg_latency_ms":17.72182635708853,"throughput_eps":0,"last_update":"2026-03-21T20:12:08.965317797Z"} +2026/03/21 20:12:13 [log_collector] {"stage_name":"log_collector","events_processed":13169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2633.8,"last_update":"2026-03-21T20:12:08.869810409Z"} +2026/03/21 20:12:13 [metric_collector] {"stage_name":"metric_collector","events_processed":7579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1515.8,"last_update":"2026-03-21T20:12:08.870203261Z"} +2026/03/21 20:12:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:12:08.876101549Z"} +2026/03/21 20:12:13 [transform_engine] {"stage_name":"transform_engine","events_processed":252,"events_dropped":0,"avg_latency_ms":133.19865687273833,"throughput_eps":0,"last_update":"2026-03-21T20:12:08.965331523Z"} +2026/03/21 20:12:13 ───────────────────────────────────────────────── +2026/03/21 20:12:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:12:18 [log_collector] {"stage_name":"log_collector","events_processed":13220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2644,"last_update":"2026-03-21T20:12:18.869787099Z"} +2026/03/21 20:12:18 [metric_collector] {"stage_name":"metric_collector","events_processed":7589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1517.8,"last_update":"2026-03-21T20:12:18.870243984Z"} +2026/03/21 20:12:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3036,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:12:13.879007608Z"} +2026/03/21 20:12:18 [transform_engine] {"stage_name":"transform_engine","events_processed":252,"events_dropped":0,"avg_latency_ms":133.19865687273833,"throughput_eps":0,"last_update":"2026-03-21T20:12:13.965486724Z"} +2026/03/21 20:12:18 [detection_layer] {"stage_name":"detection_layer","events_processed":252,"events_dropped":0,"avg_latency_ms":17.72182635708853,"throughput_eps":0,"last_update":"2026-03-21T20:12:13.96547432Z"} +2026/03/21 20:12:18 ───────────────────────────────────────────────── +2026/03/21 20:12:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:12:23 [log_collector] {"stage_name":"log_collector","events_processed":13220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2644,"last_update":"2026-03-21T20:12:18.869787099Z"} +2026/03/21 20:12:23 [metric_collector] {"stage_name":"metric_collector","events_processed":7589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1517.8,"last_update":"2026-03-21T20:12:18.870243984Z"} +2026/03/21 20:12:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:12:18.876666895Z"} +2026/03/21 20:12:23 [transform_engine] {"stage_name":"transform_engine","events_processed":253,"events_dropped":0,"avg_latency_ms":127.23410309819066,"throughput_eps":0,"last_update":"2026-03-21T20:12:19.069234014Z"} +2026/03/21 20:12:23 [detection_layer] {"stage_name":"detection_layer","events_processed":252,"events_dropped":0,"avg_latency_ms":17.72182635708853,"throughput_eps":0,"last_update":"2026-03-21T20:12:18.965844109Z"} +2026/03/21 20:12:23 ───────────────────────────────────────────────── +2026/03/21 20:12:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:12:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:12:23.877582995Z"} +2026/03/21 20:12:28 [transform_engine] {"stage_name":"transform_engine","events_processed":253,"events_dropped":0,"avg_latency_ms":127.23410309819066,"throughput_eps":0,"last_update":"2026-03-21T20:12:23.965755274Z"} +2026/03/21 20:12:28 [detection_layer] {"stage_name":"detection_layer","events_processed":253,"events_dropped":0,"avg_latency_ms":16.647656485670826,"throughput_eps":0,"last_update":"2026-03-21T20:12:23.96570615Z"} +2026/03/21 20:12:28 [log_collector] {"stage_name":"log_collector","events_processed":13256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2651.2,"last_update":"2026-03-21T20:12:23.869625634Z"} +2026/03/21 20:12:28 [metric_collector] {"stage_name":"metric_collector","events_processed":7594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1518.8,"last_update":"2026-03-21T20:12:23.870015651Z"} +2026/03/21 20:12:28 ───────────────────────────────────────────────── +2026/03/21 20:12:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:12:33 [log_collector] {"stage_name":"log_collector","events_processed":13268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2653.6,"last_update":"2026-03-21T20:12:28.869424177Z"} +2026/03/21 20:12:33 [metric_collector] {"stage_name":"metric_collector","events_processed":7599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1519.8,"last_update":"2026-03-21T20:12:28.869813703Z"} +2026/03/21 20:12:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:12:28.87589453Z"} +2026/03/21 20:12:33 [transform_engine] {"stage_name":"transform_engine","events_processed":253,"events_dropped":0,"avg_latency_ms":127.23410309819066,"throughput_eps":0,"last_update":"2026-03-21T20:12:28.966080195Z"} +2026/03/21 20:12:33 [detection_layer] {"stage_name":"detection_layer","events_processed":253,"events_dropped":0,"avg_latency_ms":16.647656485670826,"throughput_eps":0,"last_update":"2026-03-21T20:12:28.966106896Z"} +2026/03/21 20:12:33 ───────────────────────────────────────────────── +2026/03/21 20:12:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:12:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:12:33.879852173Z"} +2026/03/21 20:12:38 [transform_engine] {"stage_name":"transform_engine","events_processed":253,"events_dropped":0,"avg_latency_ms":127.23410309819066,"throughput_eps":0,"last_update":"2026-03-21T20:12:33.966087842Z"} +2026/03/21 20:12:38 [detection_layer] {"stage_name":"detection_layer","events_processed":253,"events_dropped":0,"avg_latency_ms":16.647656485670826,"throughput_eps":0,"last_update":"2026-03-21T20:12:33.966040232Z"} +2026/03/21 20:12:38 [log_collector] {"stage_name":"log_collector","events_processed":13281,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2656.2,"last_update":"2026-03-21T20:12:33.870443132Z"} +2026/03/21 20:12:38 [metric_collector] {"stage_name":"metric_collector","events_processed":7604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1520.8,"last_update":"2026-03-21T20:12:33.87053142Z"} +2026/03/21 20:12:38 ───────────────────────────────────────────────── +2026/03/21 20:12:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:12:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:12:38.875462608Z"} +2026/03/21 20:12:43 [transform_engine] {"stage_name":"transform_engine","events_processed":253,"events_dropped":0,"avg_latency_ms":127.23410309819066,"throughput_eps":0,"last_update":"2026-03-21T20:12:38.965557489Z"} +2026/03/21 20:12:43 [detection_layer] {"stage_name":"detection_layer","events_processed":253,"events_dropped":0,"avg_latency_ms":16.647656485670826,"throughput_eps":0,"last_update":"2026-03-21T20:12:38.965598007Z"} +2026/03/21 20:12:43 [log_collector] {"stage_name":"log_collector","events_processed":13302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2660.4,"last_update":"2026-03-21T20:12:38.869491642Z"} +2026/03/21 20:12:43 [metric_collector] {"stage_name":"metric_collector","events_processed":7609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1521.8,"last_update":"2026-03-21T20:12:38.869620969Z"} +2026/03/21 20:12:43 ───────────────────────────────────────────────── +Saved state: 12 clusters, 13341 messages, reason: none +2026/03/21 20:12:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:12:48 [log_collector] {"stage_name":"log_collector","events_processed":13321,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2664.2,"last_update":"2026-03-21T20:12:43.86986864Z"} +2026/03/21 20:12:48 [metric_collector] {"stage_name":"metric_collector","events_processed":7614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1522.8,"last_update":"2026-03-21T20:12:43.870033406Z"} +2026/03/21 20:12:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3048,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:12:43.876810456Z"} +2026/03/21 20:12:48 [transform_engine] {"stage_name":"transform_engine","events_processed":253,"events_dropped":0,"avg_latency_ms":127.23410309819066,"throughput_eps":0,"last_update":"2026-03-21T20:12:43.965980176Z"} +2026/03/21 20:12:48 [detection_layer] {"stage_name":"detection_layer","events_processed":253,"events_dropped":0,"avg_latency_ms":16.647656485670826,"throughput_eps":0,"last_update":"2026-03-21T20:12:43.96599804Z"} +2026/03/21 20:12:48 ───────────────────────────────────────────────── +2026/03/21 20:12:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:12:53 [log_collector] {"stage_name":"log_collector","events_processed":13363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2672.6,"last_update":"2026-03-21T20:12:48.869399928Z"} +2026/03/21 20:12:53 [metric_collector] {"stage_name":"metric_collector","events_processed":7619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1523.8,"last_update":"2026-03-21T20:12:48.869649626Z"} +2026/03/21 20:12:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3050,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:12:48.875920236Z"} +2026/03/21 20:12:53 [transform_engine] {"stage_name":"transform_engine","events_processed":254,"events_dropped":0,"avg_latency_ms":121.45618107855253,"throughput_eps":0,"last_update":"2026-03-21T20:12:49.06445358Z"} +2026/03/21 20:12:53 [detection_layer] {"stage_name":"detection_layer","events_processed":253,"events_dropped":0,"avg_latency_ms":16.647656485670826,"throughput_eps":0,"last_update":"2026-03-21T20:12:48.966097466Z"} +2026/03/21 20:12:53 ───────────────────────────────────────────────── +2026/03/21 20:12:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:12:58 [log_collector] {"stage_name":"log_collector","events_processed":13399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2679.8,"last_update":"2026-03-21T20:12:53.869831704Z"} +2026/03/21 20:12:58 [metric_collector] {"stage_name":"metric_collector","events_processed":7624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1524.8,"last_update":"2026-03-21T20:12:53.870018822Z"} +2026/03/21 20:12:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:12:53.877150642Z"} +2026/03/21 20:12:58 [transform_engine] {"stage_name":"transform_engine","events_processed":254,"events_dropped":0,"avg_latency_ms":121.45618107855253,"throughput_eps":0,"last_update":"2026-03-21T20:12:53.96537439Z"} +2026/03/21 20:12:58 [detection_layer] {"stage_name":"detection_layer","events_processed":254,"events_dropped":0,"avg_latency_ms":15.807711788536661,"throughput_eps":0,"last_update":"2026-03-21T20:12:53.965332049Z"} +2026/03/21 20:12:58 ───────────────────────────────────────────────── +2026/03/21 20:13:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:13:03 [log_collector] {"stage_name":"log_collector","events_processed":13413,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2682.6,"last_update":"2026-03-21T20:12:58.869775005Z"} +2026/03/21 20:13:03 [metric_collector] {"stage_name":"metric_collector","events_processed":7629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1525.8,"last_update":"2026-03-21T20:12:58.870070401Z"} +2026/03/21 20:13:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:12:58.877790187Z"} +2026/03/21 20:13:03 [transform_engine] {"stage_name":"transform_engine","events_processed":254,"events_dropped":0,"avg_latency_ms":121.45618107855253,"throughput_eps":0,"last_update":"2026-03-21T20:12:58.965973758Z"} +2026/03/21 20:13:03 [detection_layer] {"stage_name":"detection_layer","events_processed":254,"events_dropped":0,"avg_latency_ms":15.807711788536661,"throughput_eps":0,"last_update":"2026-03-21T20:12:58.965962867Z"} +2026/03/21 20:13:03 ───────────────────────────────────────────────── +2026/03/21 20:13:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:13:08 [detection_layer] {"stage_name":"detection_layer","events_processed":254,"events_dropped":0,"avg_latency_ms":15.807711788536661,"throughput_eps":0,"last_update":"2026-03-21T20:13:03.966224109Z"} +2026/03/21 20:13:08 [log_collector] {"stage_name":"log_collector","events_processed":13424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2684.8,"last_update":"2026-03-21T20:13:03.870082495Z"} +2026/03/21 20:13:08 [metric_collector] {"stage_name":"metric_collector","events_processed":7634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1526.8,"last_update":"2026-03-21T20:13:03.870413038Z"} +2026/03/21 20:13:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3056,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:13:03.879933233Z"} +2026/03/21 20:13:08 [transform_engine] {"stage_name":"transform_engine","events_processed":254,"events_dropped":0,"avg_latency_ms":121.45618107855253,"throughput_eps":0,"last_update":"2026-03-21T20:13:03.965113191Z"} +2026/03/21 20:13:08 ───────────────────────────────────────────────── +2026/03/21 20:13:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:13:13 [log_collector] {"stage_name":"log_collector","events_processed":13474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2694.8,"last_update":"2026-03-21T20:13:13.869798944Z"} +2026/03/21 20:13:13 [metric_collector] {"stage_name":"metric_collector","events_processed":7639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1527.8,"last_update":"2026-03-21T20:13:08.870298679Z"} +2026/03/21 20:13:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:13:08.876239888Z"} +2026/03/21 20:13:13 [transform_engine] {"stage_name":"transform_engine","events_processed":254,"events_dropped":0,"avg_latency_ms":121.45618107855253,"throughput_eps":0,"last_update":"2026-03-21T20:13:08.965497156Z"} +2026/03/21 20:13:13 [detection_layer] {"stage_name":"detection_layer","events_processed":254,"events_dropped":0,"avg_latency_ms":15.807711788536661,"throughput_eps":0,"last_update":"2026-03-21T20:13:08.965513477Z"} +2026/03/21 20:13:13 ───────────────────────────────────────────────── +2026/03/21 20:13:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:13:18 [log_collector] {"stage_name":"log_collector","events_processed":13478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2695.6,"last_update":"2026-03-21T20:13:18.870083194Z"} +2026/03/21 20:13:18 [metric_collector] {"stage_name":"metric_collector","events_processed":7644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1528.8,"last_update":"2026-03-21T20:13:13.870097987Z"} +2026/03/21 20:13:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:13:13.877096702Z"} +2026/03/21 20:13:18 [transform_engine] {"stage_name":"transform_engine","events_processed":254,"events_dropped":0,"avg_latency_ms":121.45618107855253,"throughput_eps":0,"last_update":"2026-03-21T20:13:13.965296233Z"} +2026/03/21 20:13:18 [detection_layer] {"stage_name":"detection_layer","events_processed":254,"events_dropped":0,"avg_latency_ms":15.807711788536661,"throughput_eps":0,"last_update":"2026-03-21T20:13:13.965314589Z"} +2026/03/21 20:13:18 ───────────────────────────────────────────────── +2026/03/21 20:13:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:13:23 [log_collector] {"stage_name":"log_collector","events_processed":13478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2695.6,"last_update":"2026-03-21T20:13:18.870083194Z"} +2026/03/21 20:13:23 [metric_collector] {"stage_name":"metric_collector","events_processed":7649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1529.8,"last_update":"2026-03-21T20:13:18.870379622Z"} +2026/03/21 20:13:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3062,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:13:18.879541711Z"} +2026/03/21 20:13:23 [transform_engine] {"stage_name":"transform_engine","events_processed":255,"events_dropped":0,"avg_latency_ms":123.23078986284203,"throughput_eps":0,"last_update":"2026-03-21T20:13:19.096078291Z"} +2026/03/21 20:13:23 [detection_layer] {"stage_name":"detection_layer","events_processed":254,"events_dropped":0,"avg_latency_ms":15.807711788536661,"throughput_eps":0,"last_update":"2026-03-21T20:13:18.965772411Z"} +2026/03/21 20:13:23 ───────────────────────────────────────────────── +2026/03/21 20:13:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:13:28 [transform_engine] {"stage_name":"transform_engine","events_processed":255,"events_dropped":0,"avg_latency_ms":123.23078986284203,"throughput_eps":0,"last_update":"2026-03-21T20:13:23.966024473Z"} +2026/03/21 20:13:28 [detection_layer] {"stage_name":"detection_layer","events_processed":255,"events_dropped":0,"avg_latency_ms":15.86032763082933,"throughput_eps":0,"last_update":"2026-03-21T20:13:23.966013352Z"} +2026/03/21 20:13:28 [log_collector] {"stage_name":"log_collector","events_processed":13480,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696,"last_update":"2026-03-21T20:13:28.869895975Z"} +2026/03/21 20:13:28 [metric_collector] {"stage_name":"metric_collector","events_processed":7654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1530.8,"last_update":"2026-03-21T20:13:23.870256475Z"} +2026/03/21 20:13:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:13:23.878715267Z"} +2026/03/21 20:13:28 ───────────────────────────────────────────────── +2026/03/21 20:13:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:13:33 [metric_collector] {"stage_name":"metric_collector","events_processed":7659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1531.8,"last_update":"2026-03-21T20:13:28.870256475Z"} +2026/03/21 20:13:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:13:28.879049146Z"} +2026/03/21 20:13:33 [transform_engine] {"stage_name":"transform_engine","events_processed":255,"events_dropped":0,"avg_latency_ms":123.23078986284203,"throughput_eps":0,"last_update":"2026-03-21T20:13:28.965238287Z"} +2026/03/21 20:13:33 [detection_layer] {"stage_name":"detection_layer","events_processed":255,"events_dropped":0,"avg_latency_ms":15.86032763082933,"throughput_eps":0,"last_update":"2026-03-21T20:13:28.96526568Z"} +2026/03/21 20:13:33 [log_collector] {"stage_name":"log_collector","events_processed":13480,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696,"last_update":"2026-03-21T20:13:28.869895975Z"} +2026/03/21 20:13:33 ───────────────────────────────────────────────── +2026/03/21 20:13:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:13:38 [detection_layer] {"stage_name":"detection_layer","events_processed":255,"events_dropped":0,"avg_latency_ms":15.86032763082933,"throughput_eps":0,"last_update":"2026-03-21T20:13:33.965274916Z"} +2026/03/21 20:13:38 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:13:38.87022717Z"} +2026/03/21 20:13:38 [metric_collector] {"stage_name":"metric_collector","events_processed":7664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1532.8,"last_update":"2026-03-21T20:13:33.870632956Z"} +2026/03/21 20:13:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:13:33.880108524Z"} +2026/03/21 20:13:38 [transform_engine] {"stage_name":"transform_engine","events_processed":255,"events_dropped":0,"avg_latency_ms":123.23078986284203,"throughput_eps":0,"last_update":"2026-03-21T20:13:33.965286147Z"} +2026/03/21 20:13:38 ───────────────────────────────────────────────── +2026/03/21 20:13:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:13:43 [transform_engine] {"stage_name":"transform_engine","events_processed":255,"events_dropped":0,"avg_latency_ms":123.23078986284203,"throughput_eps":0,"last_update":"2026-03-21T20:13:38.965990138Z"} +2026/03/21 20:13:43 [detection_layer] {"stage_name":"detection_layer","events_processed":255,"events_dropped":0,"avg_latency_ms":15.86032763082933,"throughput_eps":0,"last_update":"2026-03-21T20:13:38.966016549Z"} +2026/03/21 20:13:43 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:13:38.87022717Z"} +2026/03/21 20:13:43 [metric_collector] {"stage_name":"metric_collector","events_processed":7669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1533.8,"last_update":"2026-03-21T20:13:38.870662093Z"} +2026/03/21 20:13:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:13:38.878827422Z"} +2026/03/21 20:13:43 ───────────────────────────────────────────────── +2026/03/21 20:13:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:13:48 [detection_layer] {"stage_name":"detection_layer","events_processed":255,"events_dropped":0,"avg_latency_ms":15.86032763082933,"throughput_eps":0,"last_update":"2026-03-21T20:13:43.965656732Z"} +2026/03/21 20:13:48 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:13:43.870106561Z"} +2026/03/21 20:13:48 [metric_collector] {"stage_name":"metric_collector","events_processed":7674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1534.8,"last_update":"2026-03-21T20:13:43.870336032Z"} +2026/03/21 20:13:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3072,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:13:43.879466168Z"} +2026/03/21 20:13:48 [transform_engine] {"stage_name":"transform_engine","events_processed":255,"events_dropped":0,"avg_latency_ms":123.23078986284203,"throughput_eps":0,"last_update":"2026-03-21T20:13:43.965637986Z"} +2026/03/21 20:13:48 ───────────────────────────────────────────────── +2026/03/21 20:13:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:13:53 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:13:53.870029879Z"} +2026/03/21 20:13:53 [metric_collector] {"stage_name":"metric_collector","events_processed":7679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1535.8,"last_update":"2026-03-21T20:13:48.870610454Z"} +2026/03/21 20:13:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:13:48.879120673Z"} +2026/03/21 20:13:53 [transform_engine] {"stage_name":"transform_engine","events_processed":255,"events_dropped":0,"avg_latency_ms":123.23078986284203,"throughput_eps":0,"last_update":"2026-03-21T20:13:48.965308011Z"} +2026/03/21 20:13:53 [detection_layer] {"stage_name":"detection_layer","events_processed":255,"events_dropped":0,"avg_latency_ms":15.86032763082933,"throughput_eps":0,"last_update":"2026-03-21T20:13:48.965326456Z"} +2026/03/21 20:13:53 ───────────────────────────────────────────────── +2026/03/21 20:13:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:13:58 [transform_engine] {"stage_name":"transform_engine","events_processed":256,"events_dropped":0,"avg_latency_ms":122.94329889027362,"throughput_eps":0,"last_update":"2026-03-21T20:13:53.965543149Z"} +2026/03/21 20:13:58 [detection_layer] {"stage_name":"detection_layer","events_processed":256,"events_dropped":0,"avg_latency_ms":16.051527704663464,"throughput_eps":0,"last_update":"2026-03-21T20:13:53.965448317Z"} +2026/03/21 20:13:58 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:13:53.870029879Z"} +2026/03/21 20:13:58 [metric_collector] {"stage_name":"metric_collector","events_processed":7684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1536.8,"last_update":"2026-03-21T20:13:53.870496102Z"} +2026/03/21 20:13:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3076,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:13:53.879366642Z"} +2026/03/21 20:13:58 ───────────────────────────────────────────────── +2026/03/21 20:14:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:14:03 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:14:03.870452853Z"} +2026/03/21 20:14:03 [metric_collector] {"stage_name":"metric_collector","events_processed":7689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1537.8,"last_update":"2026-03-21T20:13:58.87041504Z"} +2026/03/21 20:14:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:13:58.878733563Z"} +2026/03/21 20:14:03 [transform_engine] {"stage_name":"transform_engine","events_processed":256,"events_dropped":0,"avg_latency_ms":122.94329889027362,"throughput_eps":0,"last_update":"2026-03-21T20:13:58.965893193Z"} +2026/03/21 20:14:03 [detection_layer] {"stage_name":"detection_layer","events_processed":256,"events_dropped":0,"avg_latency_ms":16.051527704663464,"throughput_eps":0,"last_update":"2026-03-21T20:13:58.965882863Z"} +2026/03/21 20:14:03 ───────────────────────────────────────────────── +2026/03/21 20:14:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:14:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:14:03.879631833Z"} +2026/03/21 20:14:08 [transform_engine] {"stage_name":"transform_engine","events_processed":256,"events_dropped":0,"avg_latency_ms":122.94329889027362,"throughput_eps":0,"last_update":"2026-03-21T20:14:03.965783853Z"} +2026/03/21 20:14:08 [detection_layer] {"stage_name":"detection_layer","events_processed":256,"events_dropped":0,"avg_latency_ms":16.051527704663464,"throughput_eps":0,"last_update":"2026-03-21T20:14:03.965771159Z"} +2026/03/21 20:14:08 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:14:03.870452853Z"} +2026/03/21 20:14:08 [metric_collector] {"stage_name":"metric_collector","events_processed":7694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1538.8,"last_update":"2026-03-21T20:14:03.870748167Z"} +2026/03/21 20:14:08 ───────────────────────────────────────────────── +2026/03/21 20:14:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:14:13 [transform_engine] {"stage_name":"transform_engine","events_processed":256,"events_dropped":0,"avg_latency_ms":122.94329889027362,"throughput_eps":0,"last_update":"2026-03-21T20:14:08.96594826Z"} +2026/03/21 20:14:13 [detection_layer] {"stage_name":"detection_layer","events_processed":256,"events_dropped":0,"avg_latency_ms":16.051527704663464,"throughput_eps":0,"last_update":"2026-03-21T20:14:08.96593746Z"} +2026/03/21 20:14:13 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:14:08.869613517Z"} +2026/03/21 20:14:13 [metric_collector] {"stage_name":"metric_collector","events_processed":7699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1539.8,"last_update":"2026-03-21T20:14:08.869900978Z"} +2026/03/21 20:14:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3082,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:14:08.878830641Z"} +2026/03/21 20:14:13 ───────────────────────────────────────────────── +2026/03/21 20:14:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:14:18 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:14:18.869584691Z"} +2026/03/21 20:14:18 [metric_collector] {"stage_name":"metric_collector","events_processed":7704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1540.8,"last_update":"2026-03-21T20:14:13.870451438Z"} +2026/03/21 20:14:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:14:13.879560604Z"} +2026/03/21 20:14:18 [transform_engine] {"stage_name":"transform_engine","events_processed":256,"events_dropped":0,"avg_latency_ms":122.94329889027362,"throughput_eps":0,"last_update":"2026-03-21T20:14:13.965758774Z"} +2026/03/21 20:14:18 [detection_layer] {"stage_name":"detection_layer","events_processed":256,"events_dropped":0,"avg_latency_ms":16.051527704663464,"throughput_eps":0,"last_update":"2026-03-21T20:14:13.965747151Z"} +2026/03/21 20:14:18 ───────────────────────────────────────────────── +2026/03/21 20:14:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:14:23 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:14:23.869757832Z"} +2026/03/21 20:14:23 [metric_collector] {"stage_name":"metric_collector","events_processed":7709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1541.8,"last_update":"2026-03-21T20:14:18.869885557Z"} +2026/03/21 20:14:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:14:18.878357895Z"} +2026/03/21 20:14:23 [transform_engine] {"stage_name":"transform_engine","events_processed":257,"events_dropped":0,"avg_latency_ms":113.31793691221891,"throughput_eps":0,"last_update":"2026-03-21T20:14:19.040340906Z"} +2026/03/21 20:14:23 [detection_layer] {"stage_name":"detection_layer","events_processed":256,"events_dropped":0,"avg_latency_ms":16.051527704663464,"throughput_eps":0,"last_update":"2026-03-21T20:14:18.965553733Z"} +2026/03/21 20:14:23 ───────────────────────────────────────────────── +2026/03/21 20:14:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:14:28 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:14:23.869757832Z"} +2026/03/21 20:14:28 [metric_collector] {"stage_name":"metric_collector","events_processed":7714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1542.8,"last_update":"2026-03-21T20:14:23.87004883Z"} +2026/03/21 20:14:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:14:23.878743363Z"} +2026/03/21 20:14:28 [transform_engine] {"stage_name":"transform_engine","events_processed":257,"events_dropped":0,"avg_latency_ms":113.31793691221891,"throughput_eps":0,"last_update":"2026-03-21T20:14:23.965978066Z"} +2026/03/21 20:14:28 [detection_layer] {"stage_name":"detection_layer","events_processed":257,"events_dropped":0,"avg_latency_ms":16.20826736373077,"throughput_eps":0,"last_update":"2026-03-21T20:14:23.965931827Z"} +2026/03/21 20:14:28 ───────────────────────────────────────────────── +2026/03/21 20:14:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:14:33 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:14:33.869984691Z"} +2026/03/21 20:14:33 [metric_collector] {"stage_name":"metric_collector","events_processed":7719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1543.8,"last_update":"2026-03-21T20:14:28.869750664Z"} +2026/03/21 20:14:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:14:28.878121587Z"} +2026/03/21 20:14:33 [transform_engine] {"stage_name":"transform_engine","events_processed":257,"events_dropped":0,"avg_latency_ms":113.31793691221891,"throughput_eps":0,"last_update":"2026-03-21T20:14:28.965320854Z"} +2026/03/21 20:14:33 [detection_layer] {"stage_name":"detection_layer","events_processed":257,"events_dropped":0,"avg_latency_ms":16.20826736373077,"throughput_eps":0,"last_update":"2026-03-21T20:14:28.965297739Z"} +2026/03/21 20:14:33 ───────────────────────────────────────────────── +2026/03/21 20:14:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:14:38 [metric_collector] {"stage_name":"metric_collector","events_processed":7724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1544.8,"last_update":"2026-03-21T20:14:33.870291068Z"} +2026/03/21 20:14:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:14:33.878813372Z"} +2026/03/21 20:14:38 [transform_engine] {"stage_name":"transform_engine","events_processed":257,"events_dropped":0,"avg_latency_ms":113.31793691221891,"throughput_eps":0,"last_update":"2026-03-21T20:14:33.966020753Z"} +2026/03/21 20:14:38 [detection_layer] {"stage_name":"detection_layer","events_processed":257,"events_dropped":0,"avg_latency_ms":16.20826736373077,"throughput_eps":0,"last_update":"2026-03-21T20:14:33.966040901Z"} +2026/03/21 20:14:38 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:14:33.869984691Z"} +2026/03/21 20:14:38 ───────────────────────────────────────────────── +2026/03/21 20:14:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:14:43 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:14:38.869439637Z"} +2026/03/21 20:14:43 [metric_collector] {"stage_name":"metric_collector","events_processed":7729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1545.8,"last_update":"2026-03-21T20:14:38.8697957Z"} +2026/03/21 20:14:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:14:38.877319581Z"} +2026/03/21 20:14:43 [transform_engine] {"stage_name":"transform_engine","events_processed":257,"events_dropped":0,"avg_latency_ms":113.31793691221891,"throughput_eps":0,"last_update":"2026-03-21T20:14:38.965522789Z"} +2026/03/21 20:14:43 [detection_layer] {"stage_name":"detection_layer","events_processed":257,"events_dropped":0,"avg_latency_ms":16.20826736373077,"throughput_eps":0,"last_update":"2026-03-21T20:14:38.965548088Z"} +2026/03/21 20:14:43 ───────────────────────────────────────────────── +2026/03/21 20:14:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:14:48 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:14:43.869588705Z"} +2026/03/21 20:14:48 [metric_collector] {"stage_name":"metric_collector","events_processed":7734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1546.8,"last_update":"2026-03-21T20:14:43.869899141Z"} +2026/03/21 20:14:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:14:43.879408754Z"} +2026/03/21 20:14:48 [transform_engine] {"stage_name":"transform_engine","events_processed":257,"events_dropped":0,"avg_latency_ms":113.31793691221891,"throughput_eps":0,"last_update":"2026-03-21T20:14:43.965581645Z"} +2026/03/21 20:14:48 [detection_layer] {"stage_name":"detection_layer","events_processed":257,"events_dropped":0,"avg_latency_ms":16.20826736373077,"throughput_eps":0,"last_update":"2026-03-21T20:14:43.965602235Z"} +2026/03/21 20:14:48 ───────────────────────────────────────────────── +2026/03/21 20:14:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:14:53 [detection_layer] {"stage_name":"detection_layer","events_processed":257,"events_dropped":0,"avg_latency_ms":16.20826736373077,"throughput_eps":0,"last_update":"2026-03-21T20:14:48.965405398Z"} +2026/03/21 20:14:53 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:14:53.869421177Z"} +2026/03/21 20:14:53 [metric_collector] {"stage_name":"metric_collector","events_processed":7739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1547.8,"last_update":"2026-03-21T20:14:48.869755516Z"} +2026/03/21 20:14:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:14:48.879191759Z"} +2026/03/21 20:14:53 [transform_engine] {"stage_name":"transform_engine","events_processed":258,"events_dropped":0,"avg_latency_ms":104.57002872977513,"throughput_eps":0,"last_update":"2026-03-21T20:14:49.034956711Z"} +2026/03/21 20:14:53 ───────────────────────────────────────────────── +2026/03/21 20:14:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:14:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:14:53.878412529Z"} +2026/03/21 20:14:58 [transform_engine] {"stage_name":"transform_engine","events_processed":258,"events_dropped":0,"avg_latency_ms":104.57002872977513,"throughput_eps":0,"last_update":"2026-03-21T20:14:53.965586457Z"} +2026/03/21 20:14:58 [detection_layer] {"stage_name":"detection_layer","events_processed":258,"events_dropped":0,"avg_latency_ms":16.156888490984617,"throughput_eps":0,"last_update":"2026-03-21T20:14:53.965574704Z"} +2026/03/21 20:14:58 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:14:53.869421177Z"} +2026/03/21 20:14:58 [metric_collector] {"stage_name":"metric_collector","events_processed":7744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1548.8,"last_update":"2026-03-21T20:14:53.869751149Z"} +2026/03/21 20:14:58 ───────────────────────────────────────────────── +2026/03/21 20:15:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:15:03 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:15:03.870413171Z"} +2026/03/21 20:15:03 [metric_collector] {"stage_name":"metric_collector","events_processed":7749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1549.8,"last_update":"2026-03-21T20:14:58.86989986Z"} +2026/03/21 20:15:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:14:58.878499101Z"} +2026/03/21 20:15:03 [transform_engine] {"stage_name":"transform_engine","events_processed":258,"events_dropped":0,"avg_latency_ms":104.57002872977513,"throughput_eps":0,"last_update":"2026-03-21T20:14:58.965766347Z"} +2026/03/21 20:15:03 [detection_layer] {"stage_name":"detection_layer","events_processed":258,"events_dropped":0,"avg_latency_ms":16.156888490984617,"throughput_eps":0,"last_update":"2026-03-21T20:14:58.965754374Z"} +2026/03/21 20:15:03 ───────────────────────────────────────────────── +2026/03/21 20:15:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:15:08 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:15:03.870413171Z"} +2026/03/21 20:15:08 [metric_collector] {"stage_name":"metric_collector","events_processed":7754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1550.8,"last_update":"2026-03-21T20:15:03.8707257Z"} +2026/03/21 20:15:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:15:03.881206314Z"} +2026/03/21 20:15:08 [transform_engine] {"stage_name":"transform_engine","events_processed":258,"events_dropped":0,"avg_latency_ms":104.57002872977513,"throughput_eps":0,"last_update":"2026-03-21T20:15:03.96545054Z"} +2026/03/21 20:15:08 [detection_layer] {"stage_name":"detection_layer","events_processed":258,"events_dropped":0,"avg_latency_ms":16.156888490984617,"throughput_eps":0,"last_update":"2026-03-21T20:15:03.965439389Z"} +2026/03/21 20:15:08 ───────────────────────────────────────────────── +2026/03/21 20:15:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:15:13 [transform_engine] {"stage_name":"transform_engine","events_processed":258,"events_dropped":0,"avg_latency_ms":104.57002872977513,"throughput_eps":0,"last_update":"2026-03-21T20:15:08.965992205Z"} +2026/03/21 20:15:13 [detection_layer] {"stage_name":"detection_layer","events_processed":258,"events_dropped":0,"avg_latency_ms":16.156888490984617,"throughput_eps":0,"last_update":"2026-03-21T20:15:08.965982707Z"} +2026/03/21 20:15:13 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:15:08.869615561Z"} +2026/03/21 20:15:13 [metric_collector] {"stage_name":"metric_collector","events_processed":7759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1551.8,"last_update":"2026-03-21T20:15:08.869862143Z"} +2026/03/21 20:15:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:15:08.878815522Z"} +2026/03/21 20:15:13 ───────────────────────────────────────────────── +2026/03/21 20:15:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:15:18 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:15:13.870233411Z"} +2026/03/21 20:15:18 [metric_collector] {"stage_name":"metric_collector","events_processed":7764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1552.8,"last_update":"2026-03-21T20:15:13.870651833Z"} +2026/03/21 20:15:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:15:13.879585804Z"} +2026/03/21 20:15:18 [transform_engine] {"stage_name":"transform_engine","events_processed":258,"events_dropped":0,"avg_latency_ms":104.57002872977513,"throughput_eps":0,"last_update":"2026-03-21T20:15:13.965759396Z"} +2026/03/21 20:15:18 [detection_layer] {"stage_name":"detection_layer","events_processed":258,"events_dropped":0,"avg_latency_ms":16.156888490984617,"throughput_eps":0,"last_update":"2026-03-21T20:15:13.965748686Z"} +2026/03/21 20:15:18 ───────────────────────────────────────────────── +2026/03/21 20:15:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:15:23 [transform_engine] {"stage_name":"transform_engine","events_processed":259,"events_dropped":0,"avg_latency_ms":97.17935278382011,"throughput_eps":0,"last_update":"2026-03-21T20:15:19.032700811Z"} +2026/03/21 20:15:23 [detection_layer] {"stage_name":"detection_layer","events_processed":258,"events_dropped":0,"avg_latency_ms":16.156888490984617,"throughput_eps":0,"last_update":"2026-03-21T20:15:18.966178118Z"} +2026/03/21 20:15:23 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:15:18.869998982Z"} +2026/03/21 20:15:23 [metric_collector] {"stage_name":"metric_collector","events_processed":7769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1553.8,"last_update":"2026-03-21T20:15:18.870302984Z"} +2026/03/21 20:15:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:15:18.878953482Z"} +2026/03/21 20:15:23 ───────────────────────────────────────────────── +2026/03/21 20:15:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:15:28 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:15:23.869784845Z"} +2026/03/21 20:15:28 [metric_collector] {"stage_name":"metric_collector","events_processed":7774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1554.8,"last_update":"2026-03-21T20:15:23.870241138Z"} +2026/03/21 20:15:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:15:23.87852741Z"} +2026/03/21 20:15:28 [transform_engine] {"stage_name":"transform_engine","events_processed":259,"events_dropped":0,"avg_latency_ms":97.17935278382011,"throughput_eps":0,"last_update":"2026-03-21T20:15:23.965720684Z"} +2026/03/21 20:15:28 [detection_layer] {"stage_name":"detection_layer","events_processed":259,"events_dropped":0,"avg_latency_ms":15.846912392787694,"throughput_eps":0,"last_update":"2026-03-21T20:15:23.965710816Z"} +2026/03/21 20:15:28 ───────────────────────────────────────────────── +2026/03/21 20:15:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:15:33 [metric_collector] {"stage_name":"metric_collector","events_processed":7779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1555.8,"last_update":"2026-03-21T20:15:28.86981692Z"} +2026/03/21 20:15:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:15:28.878023588Z"} +2026/03/21 20:15:33 [transform_engine] {"stage_name":"transform_engine","events_processed":259,"events_dropped":0,"avg_latency_ms":97.17935278382011,"throughput_eps":0,"last_update":"2026-03-21T20:15:28.965135007Z"} +2026/03/21 20:15:33 [detection_layer] {"stage_name":"detection_layer","events_processed":259,"events_dropped":0,"avg_latency_ms":15.846912392787694,"throughput_eps":0,"last_update":"2026-03-21T20:15:28.966317953Z"} +2026/03/21 20:15:33 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:15:28.869434839Z"} +2026/03/21 20:15:33 ───────────────────────────────────────────────── +2026/03/21 20:15:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:15:38 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:15:33.869889294Z"} +2026/03/21 20:15:38 [metric_collector] {"stage_name":"metric_collector","events_processed":7784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1556.8,"last_update":"2026-03-21T20:15:33.870149753Z"} +2026/03/21 20:15:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:15:33.87860624Z"} +2026/03/21 20:15:38 [transform_engine] {"stage_name":"transform_engine","events_processed":259,"events_dropped":0,"avg_latency_ms":97.17935278382011,"throughput_eps":0,"last_update":"2026-03-21T20:15:33.965766632Z"} +2026/03/21 20:15:38 [detection_layer] {"stage_name":"detection_layer","events_processed":259,"events_dropped":0,"avg_latency_ms":15.846912392787694,"throughput_eps":0,"last_update":"2026-03-21T20:15:33.965781189Z"} +2026/03/21 20:15:38 ───────────────────────────────────────────────── +2026/03/21 20:15:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:15:43 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:15:38.870369339Z"} +2026/03/21 20:15:43 [metric_collector] {"stage_name":"metric_collector","events_processed":7789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1557.8,"last_update":"2026-03-21T20:15:38.870703509Z"} +2026/03/21 20:15:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:15:38.879050947Z"} +2026/03/21 20:15:43 [transform_engine] {"stage_name":"transform_engine","events_processed":259,"events_dropped":0,"avg_latency_ms":97.17935278382011,"throughput_eps":0,"last_update":"2026-03-21T20:15:38.965172559Z"} +2026/03/21 20:15:43 [detection_layer] {"stage_name":"detection_layer","events_processed":259,"events_dropped":0,"avg_latency_ms":15.846912392787694,"throughput_eps":0,"last_update":"2026-03-21T20:15:38.966280371Z"} +2026/03/21 20:15:43 ───────────────────────────────────────────────── +2026/03/21 20:15:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:15:48 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:15:43.869741613Z"} +2026/03/21 20:15:48 [metric_collector] {"stage_name":"metric_collector","events_processed":7794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1558.8,"last_update":"2026-03-21T20:15:43.869988707Z"} +2026/03/21 20:15:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:15:43.878859507Z"} +2026/03/21 20:15:48 [transform_engine] {"stage_name":"transform_engine","events_processed":259,"events_dropped":0,"avg_latency_ms":97.17935278382011,"throughput_eps":0,"last_update":"2026-03-21T20:15:43.966069444Z"} +2026/03/21 20:15:48 [detection_layer] {"stage_name":"detection_layer","events_processed":259,"events_dropped":0,"avg_latency_ms":15.846912392787694,"throughput_eps":0,"last_update":"2026-03-21T20:15:43.96604139Z"} +2026/03/21 20:15:48 ───────────────────────────────────────────────── +2026/03/21 20:15:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:15:53 [transform_engine] {"stage_name":"transform_engine","events_processed":260,"events_dropped":0,"avg_latency_ms":91.3804556270561,"throughput_eps":0,"last_update":"2026-03-21T20:15:49.033443097Z"} +2026/03/21 20:15:53 [detection_layer] {"stage_name":"detection_layer","events_processed":259,"events_dropped":0,"avg_latency_ms":15.846912392787694,"throughput_eps":0,"last_update":"2026-03-21T20:15:48.965281413Z"} +2026/03/21 20:15:53 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:15:53.869413636Z"} +2026/03/21 20:15:53 [metric_collector] {"stage_name":"metric_collector","events_processed":7799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1559.8,"last_update":"2026-03-21T20:15:48.86988155Z"} +2026/03/21 20:15:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3122,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:15:48.878084071Z"} +2026/03/21 20:15:53 ───────────────────────────────────────────────── +2026/03/21 20:15:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:15:58 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:15:53.869413636Z"} +2026/03/21 20:15:58 [metric_collector] {"stage_name":"metric_collector","events_processed":7804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1560.8,"last_update":"2026-03-21T20:15:53.869858759Z"} +2026/03/21 20:15:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:15:53.878457198Z"} +2026/03/21 20:15:58 [transform_engine] {"stage_name":"transform_engine","events_processed":260,"events_dropped":0,"avg_latency_ms":91.3804556270561,"throughput_eps":0,"last_update":"2026-03-21T20:15:53.965669609Z"} +2026/03/21 20:15:58 [detection_layer] {"stage_name":"detection_layer","events_processed":260,"events_dropped":0,"avg_latency_ms":15.973256514230156,"throughput_eps":0,"last_update":"2026-03-21T20:15:53.965639892Z"} +2026/03/21 20:15:58 ───────────────────────────────────────────────── +2026/03/21 20:16:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:16:03 [detection_layer] {"stage_name":"detection_layer","events_processed":260,"events_dropped":0,"avg_latency_ms":15.973256514230156,"throughput_eps":0,"last_update":"2026-03-21T20:15:58.965740044Z"} +2026/03/21 20:16:03 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:15:58.869756492Z"} +2026/03/21 20:16:03 [metric_collector] {"stage_name":"metric_collector","events_processed":7809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1561.8,"last_update":"2026-03-21T20:15:58.869987254Z"} +2026/03/21 20:16:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3126,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:15:58.878555105Z"} +2026/03/21 20:16:03 [transform_engine] {"stage_name":"transform_engine","events_processed":260,"events_dropped":0,"avg_latency_ms":91.3804556270561,"throughput_eps":0,"last_update":"2026-03-21T20:15:58.965772436Z"} +2026/03/21 20:16:03 ───────────────────────────────────────────────── +2026/03/21 20:16:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:16:08 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:16:03.869771412Z"} +2026/03/21 20:16:08 [metric_collector] {"stage_name":"metric_collector","events_processed":7814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1562.8,"last_update":"2026-03-21T20:16:03.869953191Z"} +2026/03/21 20:16:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3128,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:16:03.877973652Z"} +2026/03/21 20:16:08 [transform_engine] {"stage_name":"transform_engine","events_processed":260,"events_dropped":0,"avg_latency_ms":91.3804556270561,"throughput_eps":0,"last_update":"2026-03-21T20:16:03.965081514Z"} +2026/03/21 20:16:08 [detection_layer] {"stage_name":"detection_layer","events_processed":260,"events_dropped":0,"avg_latency_ms":15.973256514230156,"throughput_eps":0,"last_update":"2026-03-21T20:16:03.9661918Z"} +2026/03/21 20:16:08 ───────────────────────────────────────────────── +2026/03/21 20:16:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:16:13 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:16:08.870541398Z"} +2026/03/21 20:16:13 [metric_collector] {"stage_name":"metric_collector","events_processed":7819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1563.8,"last_update":"2026-03-21T20:16:08.87071465Z"} +2026/03/21 20:16:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3130,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:16:08.879594699Z"} +2026/03/21 20:16:13 [transform_engine] {"stage_name":"transform_engine","events_processed":260,"events_dropped":0,"avg_latency_ms":91.3804556270561,"throughput_eps":0,"last_update":"2026-03-21T20:16:08.965791776Z"} +2026/03/21 20:16:13 [detection_layer] {"stage_name":"detection_layer","events_processed":260,"events_dropped":0,"avg_latency_ms":15.973256514230156,"throughput_eps":0,"last_update":"2026-03-21T20:16:08.9658095Z"} +2026/03/21 20:16:13 ───────────────────────────────────────────────── +2026/03/21 20:16:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:16:18 [metric_collector] {"stage_name":"metric_collector","events_processed":7824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1564.8,"last_update":"2026-03-21T20:16:13.86983453Z"} +2026/03/21 20:16:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:16:13.87827702Z"} +2026/03/21 20:16:18 [transform_engine] {"stage_name":"transform_engine","events_processed":260,"events_dropped":0,"avg_latency_ms":91.3804556270561,"throughput_eps":0,"last_update":"2026-03-21T20:16:13.965503399Z"} +2026/03/21 20:16:18 [detection_layer] {"stage_name":"detection_layer","events_processed":260,"events_dropped":0,"avg_latency_ms":15.973256514230156,"throughput_eps":0,"last_update":"2026-03-21T20:16:13.965544217Z"} +2026/03/21 20:16:18 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:16:13.869427841Z"} +2026/03/21 20:16:18 ───────────────────────────────────────────────── +2026/03/21 20:16:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:16:23 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:16:18.870127919Z"} +2026/03/21 20:16:23 [metric_collector] {"stage_name":"metric_collector","events_processed":7829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1565.8,"last_update":"2026-03-21T20:16:18.87038466Z"} +2026/03/21 20:16:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:16:18.87860704Z"} +2026/03/21 20:16:23 [transform_engine] {"stage_name":"transform_engine","events_processed":261,"events_dropped":0,"avg_latency_ms":87.44629630164488,"throughput_eps":0,"last_update":"2026-03-21T20:16:19.037508851Z"} +2026/03/21 20:16:23 [detection_layer] {"stage_name":"detection_layer","events_processed":260,"events_dropped":0,"avg_latency_ms":15.973256514230156,"throughput_eps":0,"last_update":"2026-03-21T20:16:18.96581913Z"} +2026/03/21 20:16:23 ───────────────────────────────────────────────── +2026/03/21 20:16:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:16:28 [metric_collector] {"stage_name":"metric_collector","events_processed":7834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1566.8,"last_update":"2026-03-21T20:16:23.869715475Z"} +2026/03/21 20:16:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:16:23.884388819Z"} +2026/03/21 20:16:28 [transform_engine] {"stage_name":"transform_engine","events_processed":261,"events_dropped":0,"avg_latency_ms":87.44629630164488,"throughput_eps":0,"last_update":"2026-03-21T20:16:23.965631377Z"} +2026/03/21 20:16:28 [detection_layer] {"stage_name":"detection_layer","events_processed":261,"events_dropped":0,"avg_latency_ms":16.112376411384126,"throughput_eps":0,"last_update":"2026-03-21T20:16:23.965645845Z"} +2026/03/21 20:16:28 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:16:23.869504791Z"} +2026/03/21 20:16:28 ───────────────────────────────────────────────── +2026/03/21 20:16:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:16:33 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:16:28.869784383Z"} +2026/03/21 20:16:33 [metric_collector] {"stage_name":"metric_collector","events_processed":7839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1567.8,"last_update":"2026-03-21T20:16:28.870080861Z"} +2026/03/21 20:16:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:16:28.878865456Z"} +2026/03/21 20:16:33 [transform_engine] {"stage_name":"transform_engine","events_processed":261,"events_dropped":0,"avg_latency_ms":87.44629630164488,"throughput_eps":0,"last_update":"2026-03-21T20:16:28.966064121Z"} +2026/03/21 20:16:33 [detection_layer] {"stage_name":"detection_layer","events_processed":261,"events_dropped":0,"avg_latency_ms":16.112376411384126,"throughput_eps":0,"last_update":"2026-03-21T20:16:28.966051847Z"} +2026/03/21 20:16:33 ───────────────────────────────────────────────── +2026/03/21 20:16:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:16:38 [transform_engine] {"stage_name":"transform_engine","events_processed":261,"events_dropped":0,"avg_latency_ms":87.44629630164488,"throughput_eps":0,"last_update":"2026-03-21T20:16:33.965700524Z"} +2026/03/21 20:16:38 [detection_layer] {"stage_name":"detection_layer","events_processed":261,"events_dropped":0,"avg_latency_ms":16.112376411384126,"throughput_eps":0,"last_update":"2026-03-21T20:16:33.965684864Z"} +2026/03/21 20:16:38 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:16:38.870021145Z"} +2026/03/21 20:16:38 [metric_collector] {"stage_name":"metric_collector","events_processed":7844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1568.8,"last_update":"2026-03-21T20:16:33.869843394Z"} +2026/03/21 20:16:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:16:33.878427396Z"} +2026/03/21 20:16:38 ───────────────────────────────────────────────── +2026/03/21 20:16:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:16:43 [transform_engine] {"stage_name":"transform_engine","events_processed":261,"events_dropped":0,"avg_latency_ms":87.44629630164488,"throughput_eps":0,"last_update":"2026-03-21T20:16:38.965811948Z"} +2026/03/21 20:16:43 [detection_layer] {"stage_name":"detection_layer","events_processed":261,"events_dropped":0,"avg_latency_ms":16.112376411384126,"throughput_eps":0,"last_update":"2026-03-21T20:16:38.965836545Z"} +2026/03/21 20:16:43 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:16:43.869403003Z"} +2026/03/21 20:16:43 [metric_collector] {"stage_name":"metric_collector","events_processed":7849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1569.8,"last_update":"2026-03-21T20:16:38.870472079Z"} +2026/03/21 20:16:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:16:38.878631287Z"} +2026/03/21 20:16:43 ───────────────────────────────────────────────── +2026/03/21 20:16:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:16:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:16:43.87811502Z"} +2026/03/21 20:16:48 [transform_engine] {"stage_name":"transform_engine","events_processed":261,"events_dropped":0,"avg_latency_ms":87.44629630164488,"throughput_eps":0,"last_update":"2026-03-21T20:16:43.965316681Z"} +2026/03/21 20:16:48 [detection_layer] {"stage_name":"detection_layer","events_processed":261,"events_dropped":0,"avg_latency_ms":16.112376411384126,"throughput_eps":0,"last_update":"2026-03-21T20:16:43.965275281Z"} +2026/03/21 20:16:48 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:16:48.869640641Z"} +2026/03/21 20:16:48 [metric_collector] {"stage_name":"metric_collector","events_processed":7854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1570.8,"last_update":"2026-03-21T20:16:43.869923991Z"} +2026/03/21 20:16:48 ───────────────────────────────────────────────── +2026/03/21 20:16:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:16:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:16:48.878642653Z"} +2026/03/21 20:16:53 [transform_engine] {"stage_name":"transform_engine","events_processed":262,"events_dropped":0,"avg_latency_ms":299.7900404413159,"throughput_eps":0,"last_update":"2026-03-21T20:16:50.114995103Z"} +2026/03/21 20:16:53 [detection_layer] {"stage_name":"detection_layer","events_processed":261,"events_dropped":0,"avg_latency_ms":16.112376411384126,"throughput_eps":0,"last_update":"2026-03-21T20:16:48.965847019Z"} +2026/03/21 20:16:53 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:16:53.869501244Z"} +2026/03/21 20:16:53 [metric_collector] {"stage_name":"metric_collector","events_processed":7859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1571.8,"last_update":"2026-03-21T20:16:48.870153643Z"} +2026/03/21 20:16:53 ───────────────────────────────────────────────── +2026/03/21 20:16:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:16:58 [metric_collector] {"stage_name":"metric_collector","events_processed":7864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1572.8,"last_update":"2026-03-21T20:16:53.869923803Z"} +2026/03/21 20:16:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:16:53.879917896Z"} +2026/03/21 20:16:58 [transform_engine] {"stage_name":"transform_engine","events_processed":262,"events_dropped":0,"avg_latency_ms":299.7900404413159,"throughput_eps":0,"last_update":"2026-03-21T20:16:53.966044377Z"} +2026/03/21 20:16:58 [detection_layer] {"stage_name":"detection_layer","events_processed":262,"events_dropped":0,"avg_latency_ms":16.4984327291073,"throughput_eps":0,"last_update":"2026-03-21T20:16:53.966065328Z"} +2026/03/21 20:16:58 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:16:58.87034238Z"} +2026/03/21 20:16:58 ───────────────────────────────────────────────── +2026/03/21 20:17:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:17:03 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:17:03.86971308Z"} +2026/03/21 20:17:03 [metric_collector] {"stage_name":"metric_collector","events_processed":7869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1573.8,"last_update":"2026-03-21T20:16:58.870709453Z"} +2026/03/21 20:17:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:16:58.880036517Z"} +2026/03/21 20:17:03 [transform_engine] {"stage_name":"transform_engine","events_processed":262,"events_dropped":0,"avg_latency_ms":299.7900404413159,"throughput_eps":0,"last_update":"2026-03-21T20:16:58.965123188Z"} +2026/03/21 20:17:03 [detection_layer] {"stage_name":"detection_layer","events_processed":262,"events_dropped":0,"avg_latency_ms":16.4984327291073,"throughput_eps":0,"last_update":"2026-03-21T20:16:58.966218957Z"} +2026/03/21 20:17:03 ───────────────────────────────────────────────── +2026/03/21 20:17:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:17:08 [metric_collector] {"stage_name":"metric_collector","events_processed":7874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1574.8,"last_update":"2026-03-21T20:17:03.870065034Z"} +2026/03/21 20:17:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:17:03.878372216Z"} +2026/03/21 20:17:08 [transform_engine] {"stage_name":"transform_engine","events_processed":262,"events_dropped":0,"avg_latency_ms":299.7900404413159,"throughput_eps":0,"last_update":"2026-03-21T20:17:03.965666294Z"} +2026/03/21 20:17:08 [detection_layer] {"stage_name":"detection_layer","events_processed":262,"events_dropped":0,"avg_latency_ms":16.4984327291073,"throughput_eps":0,"last_update":"2026-03-21T20:17:03.965636466Z"} +2026/03/21 20:17:08 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:17:03.86971308Z"} +2026/03/21 20:17:08 ───────────────────────────────────────────────── +2026/03/21 20:17:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:17:13 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:17:08.870324329Z"} +2026/03/21 20:17:13 [metric_collector] {"stage_name":"metric_collector","events_processed":7879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1575.8,"last_update":"2026-03-21T20:17:08.870762087Z"} +2026/03/21 20:17:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:17:08.879012239Z"} +2026/03/21 20:17:13 [transform_engine] {"stage_name":"transform_engine","events_processed":262,"events_dropped":0,"avg_latency_ms":299.7900404413159,"throughput_eps":0,"last_update":"2026-03-21T20:17:08.965117931Z"} +2026/03/21 20:17:13 [detection_layer] {"stage_name":"detection_layer","events_processed":262,"events_dropped":0,"avg_latency_ms":16.4984327291073,"throughput_eps":0,"last_update":"2026-03-21T20:17:08.966243297Z"} +2026/03/21 20:17:13 ───────────────────────────────────────────────── +2026/03/21 20:17:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:17:18 [metric_collector] {"stage_name":"metric_collector","events_processed":7884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1576.8,"last_update":"2026-03-21T20:17:13.870537655Z"} +2026/03/21 20:17:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:17:13.878638782Z"} +2026/03/21 20:17:18 [transform_engine] {"stage_name":"transform_engine","events_processed":262,"events_dropped":0,"avg_latency_ms":299.7900404413159,"throughput_eps":0,"last_update":"2026-03-21T20:17:13.965845974Z"} +2026/03/21 20:17:18 [detection_layer] {"stage_name":"detection_layer","events_processed":262,"events_dropped":0,"avg_latency_ms":16.4984327291073,"throughput_eps":0,"last_update":"2026-03-21T20:17:13.965821186Z"} +2026/03/21 20:17:18 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:17:13.870247951Z"} +2026/03/21 20:17:18 ───────────────────────────────────────────────── +2026/03/21 20:17:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:17:23 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:17:18.869486951Z"} +2026/03/21 20:17:23 [metric_collector] {"stage_name":"metric_collector","events_processed":7889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1577.8,"last_update":"2026-03-21T20:17:18.869947342Z"} +2026/03/21 20:17:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:17:18.87877499Z"} +2026/03/21 20:17:23 [transform_engine] {"stage_name":"transform_engine","events_processed":263,"events_dropped":0,"avg_latency_ms":254.04461435305274,"throughput_eps":0,"last_update":"2026-03-21T20:17:19.03703361Z"} +2026/03/21 20:17:23 [detection_layer] {"stage_name":"detection_layer","events_processed":262,"events_dropped":0,"avg_latency_ms":16.4984327291073,"throughput_eps":0,"last_update":"2026-03-21T20:17:18.965947295Z"} +2026/03/21 20:17:23 ───────────────────────────────────────────────── +2026/03/21 20:17:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:17:28 [metric_collector] {"stage_name":"metric_collector","events_processed":7894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1578.8,"last_update":"2026-03-21T20:17:23.870157143Z"} +2026/03/21 20:17:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:17:23.878875362Z"} +2026/03/21 20:17:28 [transform_engine] {"stage_name":"transform_engine","events_processed":263,"events_dropped":0,"avg_latency_ms":254.04461435305274,"throughput_eps":0,"last_update":"2026-03-21T20:17:23.965118557Z"} +2026/03/21 20:17:28 [detection_layer] {"stage_name":"detection_layer","events_processed":263,"events_dropped":0,"avg_latency_ms":16.48444538328584,"throughput_eps":0,"last_update":"2026-03-21T20:17:23.966225357Z"} +2026/03/21 20:17:28 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:17:28.869505186Z"} +2026/03/21 20:17:28 ───────────────────────────────────────────────── +2026/03/21 20:17:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:17:33 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:17:28.869505186Z"} +2026/03/21 20:17:33 [metric_collector] {"stage_name":"metric_collector","events_processed":7899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1579.8,"last_update":"2026-03-21T20:17:28.869753331Z"} +2026/03/21 20:17:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:17:28.878765573Z"} +2026/03/21 20:17:33 [transform_engine] {"stage_name":"transform_engine","events_processed":263,"events_dropped":0,"avg_latency_ms":254.04461435305274,"throughput_eps":0,"last_update":"2026-03-21T20:17:28.965952136Z"} +2026/03/21 20:17:33 [detection_layer] {"stage_name":"detection_layer","events_processed":263,"events_dropped":0,"avg_latency_ms":16.48444538328584,"throughput_eps":0,"last_update":"2026-03-21T20:17:28.965939932Z"} +2026/03/21 20:17:33 ───────────────────────────────────────────────── +2026/03/21 20:17:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:17:38 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:17:33.870290303Z"} +2026/03/21 20:17:38 [metric_collector] {"stage_name":"metric_collector","events_processed":7904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1580.8,"last_update":"2026-03-21T20:17:33.870644461Z"} +2026/03/21 20:17:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:17:33.879529339Z"} +2026/03/21 20:17:38 [transform_engine] {"stage_name":"transform_engine","events_processed":263,"events_dropped":0,"avg_latency_ms":254.04461435305274,"throughput_eps":0,"last_update":"2026-03-21T20:17:33.96576002Z"} +2026/03/21 20:17:38 [detection_layer] {"stage_name":"detection_layer","events_processed":263,"events_dropped":0,"avg_latency_ms":16.48444538328584,"throughput_eps":0,"last_update":"2026-03-21T20:17:33.965748679Z"} +2026/03/21 20:17:38 ───────────────────────────────────────────────── +2026/03/21 20:17:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:17:43 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:17:38.870178862Z"} +2026/03/21 20:17:43 [metric_collector] {"stage_name":"metric_collector","events_processed":7909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1581.8,"last_update":"2026-03-21T20:17:38.87042368Z"} +2026/03/21 20:17:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:17:38.879287167Z"} +2026/03/21 20:17:43 [transform_engine] {"stage_name":"transform_engine","events_processed":263,"events_dropped":0,"avg_latency_ms":254.04461435305274,"throughput_eps":0,"last_update":"2026-03-21T20:17:38.965467212Z"} +2026/03/21 20:17:43 [detection_layer] {"stage_name":"detection_layer","events_processed":263,"events_dropped":0,"avg_latency_ms":16.48444538328584,"throughput_eps":0,"last_update":"2026-03-21T20:17:38.965454688Z"} +2026/03/21 20:17:43 ───────────────────────────────────────────────── +2026/03/21 20:17:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:17:48 [metric_collector] {"stage_name":"metric_collector","events_processed":7914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1582.8,"last_update":"2026-03-21T20:17:43.870153024Z"} +2026/03/21 20:17:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:17:43.878865802Z"} +2026/03/21 20:17:48 [transform_engine] {"stage_name":"transform_engine","events_processed":263,"events_dropped":0,"avg_latency_ms":254.04461435305274,"throughput_eps":0,"last_update":"2026-03-21T20:17:43.966052776Z"} +2026/03/21 20:17:48 [detection_layer] {"stage_name":"detection_layer","events_processed":263,"events_dropped":0,"avg_latency_ms":16.48444538328584,"throughput_eps":0,"last_update":"2026-03-21T20:17:43.966042626Z"} +2026/03/21 20:17:48 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:17:43.869885152Z"} +2026/03/21 20:17:48 ───────────────────────────────────────────────── +2026/03/21 20:17:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:17:53 [transform_engine] {"stage_name":"transform_engine","events_processed":264,"events_dropped":0,"avg_latency_ms":217.6281480824422,"throughput_eps":0,"last_update":"2026-03-21T20:17:49.037240819Z"} +2026/03/21 20:17:53 [detection_layer] {"stage_name":"detection_layer","events_processed":263,"events_dropped":0,"avg_latency_ms":16.48444538328584,"throughput_eps":0,"last_update":"2026-03-21T20:17:48.965266984Z"} +2026/03/21 20:17:53 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:17:48.87000789Z"} +2026/03/21 20:17:53 [metric_collector] {"stage_name":"metric_collector","events_processed":7919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1583.8,"last_update":"2026-03-21T20:17:48.870236358Z"} +2026/03/21 20:17:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3170,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:17:48.878092896Z"} +2026/03/21 20:17:53 ───────────────────────────────────────────────── +2026/03/21 20:17:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:17:58 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:17:53.870402523Z"} +2026/03/21 20:17:58 [metric_collector] {"stage_name":"metric_collector","events_processed":7924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1584.8,"last_update":"2026-03-21T20:17:53.870681086Z"} +2026/03/21 20:17:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:17:53.87913074Z"} +2026/03/21 20:17:58 [transform_engine] {"stage_name":"transform_engine","events_processed":264,"events_dropped":0,"avg_latency_ms":217.6281480824422,"throughput_eps":0,"last_update":"2026-03-21T20:17:53.965321906Z"} +2026/03/21 20:17:58 [detection_layer] {"stage_name":"detection_layer","events_processed":264,"events_dropped":0,"avg_latency_ms":16.434529306628676,"throughput_eps":0,"last_update":"2026-03-21T20:17:53.965310364Z"} +2026/03/21 20:17:58 ───────────────────────────────────────────────── +2026/03/21 20:18:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:18:03 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:17:58.869531892Z"} +2026/03/21 20:18:03 [metric_collector] {"stage_name":"metric_collector","events_processed":7929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1585.8,"last_update":"2026-03-21T20:17:58.869907722Z"} +2026/03/21 20:18:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:17:58.87880883Z"} +2026/03/21 20:18:03 [transform_engine] {"stage_name":"transform_engine","events_processed":264,"events_dropped":0,"avg_latency_ms":217.6281480824422,"throughput_eps":0,"last_update":"2026-03-21T20:17:58.965965847Z"} +2026/03/21 20:18:03 [detection_layer] {"stage_name":"detection_layer","events_processed":264,"events_dropped":0,"avg_latency_ms":16.434529306628676,"throughput_eps":0,"last_update":"2026-03-21T20:17:58.965953433Z"} +2026/03/21 20:18:03 ───────────────────────────────────────────────── +2026/03/21 20:18:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:18:08 [metric_collector] {"stage_name":"metric_collector","events_processed":7934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1586.8,"last_update":"2026-03-21T20:18:03.870719396Z"} +2026/03/21 20:18:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:18:03.879158309Z"} +2026/03/21 20:18:08 [transform_engine] {"stage_name":"transform_engine","events_processed":264,"events_dropped":0,"avg_latency_ms":217.6281480824422,"throughput_eps":0,"last_update":"2026-03-21T20:18:03.965369893Z"} +2026/03/21 20:18:08 [detection_layer] {"stage_name":"detection_layer","events_processed":264,"events_dropped":0,"avg_latency_ms":16.434529306628676,"throughput_eps":0,"last_update":"2026-03-21T20:18:03.965316962Z"} +2026/03/21 20:18:08 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:18:08.869400186Z"} +2026/03/21 20:18:08 ───────────────────────────────────────────────── +2026/03/21 20:18:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:18:13 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:18:08.869400186Z"} +2026/03/21 20:18:13 [metric_collector] {"stage_name":"metric_collector","events_processed":7939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1587.8,"last_update":"2026-03-21T20:18:08.869933648Z"} +2026/03/21 20:18:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:18:08.879042144Z"} +2026/03/21 20:18:13 [transform_engine] {"stage_name":"transform_engine","events_processed":264,"events_dropped":0,"avg_latency_ms":217.6281480824422,"throughput_eps":0,"last_update":"2026-03-21T20:18:08.965126004Z"} +2026/03/21 20:18:13 [detection_layer] {"stage_name":"detection_layer","events_processed":264,"events_dropped":0,"avg_latency_ms":16.434529306628676,"throughput_eps":0,"last_update":"2026-03-21T20:18:08.966247893Z"} +2026/03/21 20:18:13 ───────────────────────────────────────────────── +2026/03/21 20:18:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:18:18 [detection_layer] {"stage_name":"detection_layer","events_processed":264,"events_dropped":0,"avg_latency_ms":16.434529306628676,"throughput_eps":0,"last_update":"2026-03-21T20:18:13.965274446Z"} +2026/03/21 20:18:18 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:18:13.869584417Z"} +2026/03/21 20:18:18 [metric_collector] {"stage_name":"metric_collector","events_processed":7944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1588.8,"last_update":"2026-03-21T20:18:13.87003504Z"} +2026/03/21 20:18:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:18:13.879134468Z"} +2026/03/21 20:18:18 [transform_engine] {"stage_name":"transform_engine","events_processed":264,"events_dropped":0,"avg_latency_ms":217.6281480824422,"throughput_eps":0,"last_update":"2026-03-21T20:18:13.965303081Z"} +2026/03/21 20:18:18 ───────────────────────────────────────────────── +2026/03/21 20:18:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:18:23 [metric_collector] {"stage_name":"metric_collector","events_processed":7948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1589.6,"last_update":"2026-03-21T20:18:18.870120114Z"} +2026/03/21 20:18:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:18:18.879267474Z"} +2026/03/21 20:18:23 [transform_engine] {"stage_name":"transform_engine","events_processed":265,"events_dropped":0,"avg_latency_ms":187.7095004659538,"throughput_eps":0,"last_update":"2026-03-21T20:18:19.033424449Z"} +2026/03/21 20:18:23 [detection_layer] {"stage_name":"detection_layer","events_processed":264,"events_dropped":0,"avg_latency_ms":16.434529306628676,"throughput_eps":0,"last_update":"2026-03-21T20:18:18.965368438Z"} +2026/03/21 20:18:23 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:18:23.869612945Z"} +2026/03/21 20:18:23 ───────────────────────────────────────────────── +2026/03/21 20:18:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:18:28 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:18:28.870143815Z"} +2026/03/21 20:18:28 [metric_collector] {"stage_name":"metric_collector","events_processed":7954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1590.8,"last_update":"2026-03-21T20:18:23.870035244Z"} +2026/03/21 20:18:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:18:23.879043938Z"} +2026/03/21 20:18:28 [transform_engine] {"stage_name":"transform_engine","events_processed":265,"events_dropped":0,"avg_latency_ms":187.7095004659538,"throughput_eps":0,"last_update":"2026-03-21T20:18:23.965187604Z"} +2026/03/21 20:18:28 [detection_layer] {"stage_name":"detection_layer","events_processed":265,"events_dropped":0,"avg_latency_ms":16.45693404530294,"throughput_eps":0,"last_update":"2026-03-21T20:18:23.966272522Z"} +2026/03/21 20:18:28 ───────────────────────────────────────────────── +2026/03/21 20:18:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:18:33 [log_collector] {"stage_name":"log_collector","events_processed":13483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.6,"last_update":"2026-03-21T20:18:28.870143815Z"} +2026/03/21 20:18:33 [metric_collector] {"stage_name":"metric_collector","events_processed":7959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1591.8,"last_update":"2026-03-21T20:18:28.870702014Z"} +2026/03/21 20:18:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:18:28.879151638Z"} +2026/03/21 20:18:33 [transform_engine] {"stage_name":"transform_engine","events_processed":265,"events_dropped":0,"avg_latency_ms":187.7095004659538,"throughput_eps":0,"last_update":"2026-03-21T20:18:28.965370377Z"} +2026/03/21 20:18:33 [detection_layer] {"stage_name":"detection_layer","events_processed":265,"events_dropped":0,"avg_latency_ms":16.45693404530294,"throughput_eps":0,"last_update":"2026-03-21T20:18:28.965343345Z"} +2026/03/21 20:18:33 ───────────────────────────────────────────────── +Saved state: 12 clusters, 13484 messages, reason: none +2026/03/21 20:18:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:18:38 [metric_collector] {"stage_name":"metric_collector","events_processed":7964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1592.8,"last_update":"2026-03-21T20:18:33.869685377Z"} +2026/03/21 20:18:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:18:33.878796449Z"} +2026/03/21 20:18:38 [transform_engine] {"stage_name":"transform_engine","events_processed":265,"events_dropped":0,"avg_latency_ms":187.7095004659538,"throughput_eps":0,"last_update":"2026-03-21T20:18:33.965956921Z"} +2026/03/21 20:18:38 [detection_layer] {"stage_name":"detection_layer","events_processed":265,"events_dropped":0,"avg_latency_ms":16.45693404530294,"throughput_eps":0,"last_update":"2026-03-21T20:18:33.965984695Z"} +2026/03/21 20:18:38 [log_collector] {"stage_name":"log_collector","events_processed":13485,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2697,"last_update":"2026-03-21T20:18:38.869774813Z"} +2026/03/21 20:18:38 ───────────────────────────────────────────────── +2026/03/21 20:18:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:18:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:18:38.879343249Z"} +2026/03/21 20:18:43 [transform_engine] {"stage_name":"transform_engine","events_processed":265,"events_dropped":0,"avg_latency_ms":187.7095004659538,"throughput_eps":0,"last_update":"2026-03-21T20:18:38.965577418Z"} +2026/03/21 20:18:43 [detection_layer] {"stage_name":"detection_layer","events_processed":265,"events_dropped":0,"avg_latency_ms":16.45693404530294,"throughput_eps":0,"last_update":"2026-03-21T20:18:38.965553843Z"} +2026/03/21 20:18:43 [log_collector] {"stage_name":"log_collector","events_processed":13485,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2697,"last_update":"2026-03-21T20:18:38.869774813Z"} +2026/03/21 20:18:43 [metric_collector] {"stage_name":"metric_collector","events_processed":7969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1593.8,"last_update":"2026-03-21T20:18:38.870492818Z"} +2026/03/21 20:18:43 ───────────────────────────────────────────────── +2026/03/21 20:18:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:18:48 [detection_layer] {"stage_name":"detection_layer","events_processed":265,"events_dropped":0,"avg_latency_ms":16.45693404530294,"throughput_eps":0,"last_update":"2026-03-21T20:18:43.96555446Z"} +2026/03/21 20:18:48 [log_collector] {"stage_name":"log_collector","events_processed":13503,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2700.6,"last_update":"2026-03-21T20:18:48.869437559Z"} +2026/03/21 20:18:48 [metric_collector] {"stage_name":"metric_collector","events_processed":7974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1594.8,"last_update":"2026-03-21T20:18:43.870601913Z"} +2026/03/21 20:18:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:18:43.879333066Z"} +2026/03/21 20:18:48 [transform_engine] {"stage_name":"transform_engine","events_processed":265,"events_dropped":0,"avg_latency_ms":187.7095004659538,"throughput_eps":0,"last_update":"2026-03-21T20:18:43.965531366Z"} +2026/03/21 20:18:48 ───────────────────────────────────────────────── +2026/03/21 20:18:49 [ANOMALY] time=2026-03-21T20:18:49Z score=0.8218 method=SEAD details=MAD!:w=0.22,s=0.94 RRCF-fast:w=0.20,s=0.57 RRCF-mid:w=0.17,s=0.73 RRCF-slow!:w=0.14,s=0.89 COPOD!:w=0.27,s=0.93 +2026/03/21 20:18:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:18:53 [transform_engine] {"stage_name":"transform_engine","events_processed":266,"events_dropped":0,"avg_latency_ms":170.29447457276305,"throughput_eps":0,"last_update":"2026-03-21T20:18:49.066654468Z"} +2026/03/21 20:18:53 [detection_layer] {"stage_name":"detection_layer","events_processed":265,"events_dropped":0,"avg_latency_ms":16.45693404530294,"throughput_eps":0,"last_update":"2026-03-21T20:18:48.966041459Z"} +2026/03/21 20:18:53 [log_collector] {"stage_name":"log_collector","events_processed":13503,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2700.6,"last_update":"2026-03-21T20:18:48.869437559Z"} +2026/03/21 20:18:53 [metric_collector] {"stage_name":"metric_collector","events_processed":7979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1595.8,"last_update":"2026-03-21T20:18:48.869736321Z"} +2026/03/21 20:18:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:18:48.876848704Z"} +2026/03/21 20:18:53 ───────────────────────────────────────────────── +2026/03/21 20:18:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:18:58 [log_collector] {"stage_name":"log_collector","events_processed":13504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2700.8,"last_update":"2026-03-21T20:18:58.869621084Z"} +2026/03/21 20:18:58 [metric_collector] {"stage_name":"metric_collector","events_processed":7984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1596.8,"last_update":"2026-03-21T20:18:53.869650194Z"} +2026/03/21 20:18:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:18:53.875655486Z"} +2026/03/21 20:18:58 [transform_engine] {"stage_name":"transform_engine","events_processed":266,"events_dropped":0,"avg_latency_ms":170.29447457276305,"throughput_eps":0,"last_update":"2026-03-21T20:18:53.965825352Z"} +2026/03/21 20:18:58 [detection_layer] {"stage_name":"detection_layer","events_processed":266,"events_dropped":0,"avg_latency_ms":15.537254036242354,"throughput_eps":0,"last_update":"2026-03-21T20:18:53.96585538Z"} +2026/03/21 20:18:58 ───────────────────────────────────────────────── +2026/03/21 20:19:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:19:03 [log_collector] {"stage_name":"log_collector","events_processed":13504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2700.8,"last_update":"2026-03-21T20:18:58.869621084Z"} +2026/03/21 20:19:03 [metric_collector] {"stage_name":"metric_collector","events_processed":7989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1597.8,"last_update":"2026-03-21T20:18:58.869805628Z"} +2026/03/21 20:19:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:18:58.875919838Z"} +2026/03/21 20:19:03 [transform_engine] {"stage_name":"transform_engine","events_processed":266,"events_dropped":0,"avg_latency_ms":170.29447457276305,"throughput_eps":0,"last_update":"2026-03-21T20:18:58.96610283Z"} +2026/03/21 20:19:03 [detection_layer] {"stage_name":"detection_layer","events_processed":266,"events_dropped":0,"avg_latency_ms":15.537254036242354,"throughput_eps":0,"last_update":"2026-03-21T20:18:58.966090927Z"} +2026/03/21 20:19:03 ───────────────────────────────────────────────── +2026/03/21 20:19:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:19:08 [log_collector] {"stage_name":"log_collector","events_processed":13504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2700.8,"last_update":"2026-03-21T20:19:03.870026638Z"} +2026/03/21 20:19:08 [metric_collector] {"stage_name":"metric_collector","events_processed":7994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1598.8,"last_update":"2026-03-21T20:19:03.870515815Z"} +2026/03/21 20:19:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:19:03.876615318Z"} +2026/03/21 20:19:08 [transform_engine] {"stage_name":"transform_engine","events_processed":266,"events_dropped":0,"avg_latency_ms":170.29447457276305,"throughput_eps":0,"last_update":"2026-03-21T20:19:03.965823854Z"} +2026/03/21 20:19:08 [detection_layer] {"stage_name":"detection_layer","events_processed":266,"events_dropped":0,"avg_latency_ms":15.537254036242354,"throughput_eps":0,"last_update":"2026-03-21T20:19:03.965857999Z"} +2026/03/21 20:19:08 ───────────────────────────────────────────────── +2026/03/21 20:19:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:19:13 [log_collector] {"stage_name":"log_collector","events_processed":13504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2700.8,"last_update":"2026-03-21T20:19:08.870113064Z"} +2026/03/21 20:19:13 [metric_collector] {"stage_name":"metric_collector","events_processed":7999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1599.8,"last_update":"2026-03-21T20:19:08.870229357Z"} +2026/03/21 20:19:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:19:08.877147157Z"} +2026/03/21 20:19:13 [transform_engine] {"stage_name":"transform_engine","events_processed":266,"events_dropped":0,"avg_latency_ms":170.29447457276305,"throughput_eps":0,"last_update":"2026-03-21T20:19:08.965331831Z"} +2026/03/21 20:19:13 [detection_layer] {"stage_name":"detection_layer","events_processed":266,"events_dropped":0,"avg_latency_ms":15.537254036242354,"throughput_eps":0,"last_update":"2026-03-21T20:19:08.965389201Z"} +2026/03/21 20:19:13 ───────────────────────────────────────────────── +2026/03/21 20:19:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:19:18 [log_collector] {"stage_name":"log_collector","events_processed":13504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2700.8,"last_update":"2026-03-21T20:19:13.86945288Z"} +2026/03/21 20:19:18 [metric_collector] {"stage_name":"metric_collector","events_processed":8004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1600.8,"last_update":"2026-03-21T20:19:13.869629348Z"} +2026/03/21 20:19:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:19:13.876368997Z"} +2026/03/21 20:19:18 [transform_engine] {"stage_name":"transform_engine","events_processed":266,"events_dropped":0,"avg_latency_ms":170.29447457276305,"throughput_eps":0,"last_update":"2026-03-21T20:19:13.965536625Z"} +2026/03/21 20:19:18 [detection_layer] {"stage_name":"detection_layer","events_processed":266,"events_dropped":0,"avg_latency_ms":15.537254036242354,"throughput_eps":0,"last_update":"2026-03-21T20:19:13.965569087Z"} +2026/03/21 20:19:18 ───────────────────────────────────────────────── +2026/03/21 20:19:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:19:23 [detection_layer] {"stage_name":"detection_layer","events_processed":266,"events_dropped":0,"avg_latency_ms":15.537254036242354,"throughput_eps":0,"last_update":"2026-03-21T20:19:18.966375962Z"} +2026/03/21 20:19:23 [log_collector] {"stage_name":"log_collector","events_processed":13504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2700.8,"last_update":"2026-03-21T20:19:23.870212006Z"} +2026/03/21 20:19:23 [metric_collector] {"stage_name":"metric_collector","events_processed":8009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1601.8,"last_update":"2026-03-21T20:19:18.870101082Z"} +2026/03/21 20:19:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3206,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:19:18.876106906Z"} +2026/03/21 20:19:23 [transform_engine] {"stage_name":"transform_engine","events_processed":267,"events_dropped":0,"avg_latency_ms":157.14846705821043,"throughput_eps":0,"last_update":"2026-03-21T20:19:19.069779216Z"} +2026/03/21 20:19:23 ───────────────────────────────────────────────── +2026/03/21 20:19:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:19:28 [log_collector] {"stage_name":"log_collector","events_processed":13504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2700.8,"last_update":"2026-03-21T20:19:23.870212006Z"} +2026/03/21 20:19:28 [metric_collector] {"stage_name":"metric_collector","events_processed":8014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1602.8,"last_update":"2026-03-21T20:19:23.870533332Z"} +2026/03/21 20:19:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:19:23.87684951Z"} +2026/03/21 20:19:28 [transform_engine] {"stage_name":"transform_engine","events_processed":267,"events_dropped":0,"avg_latency_ms":157.14846705821043,"throughput_eps":0,"last_update":"2026-03-21T20:19:23.966073155Z"} +2026/03/21 20:19:28 [detection_layer] {"stage_name":"detection_layer","events_processed":267,"events_dropped":0,"avg_latency_ms":16.487575428993882,"throughput_eps":0,"last_update":"2026-03-21T20:19:23.96602903Z"} +2026/03/21 20:19:28 ───────────────────────────────────────────────── +2026/03/21 20:19:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:19:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3210,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:19:28.87689023Z"} +2026/03/21 20:19:33 [transform_engine] {"stage_name":"transform_engine","events_processed":267,"events_dropped":0,"avg_latency_ms":157.14846705821043,"throughput_eps":0,"last_update":"2026-03-21T20:19:28.966087485Z"} +2026/03/21 20:19:33 [detection_layer] {"stage_name":"detection_layer","events_processed":267,"events_dropped":0,"avg_latency_ms":16.487575428993882,"throughput_eps":0,"last_update":"2026-03-21T20:19:28.966071274Z"} +2026/03/21 20:19:33 [log_collector] {"stage_name":"log_collector","events_processed":13504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2700.8,"last_update":"2026-03-21T20:19:28.870292664Z"} +2026/03/21 20:19:33 [metric_collector] {"stage_name":"metric_collector","events_processed":8019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1603.8,"last_update":"2026-03-21T20:19:28.870787903Z"} +2026/03/21 20:19:33 ───────────────────────────────────────────────── +2026/03/21 20:19:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:19:38 [log_collector] {"stage_name":"log_collector","events_processed":13504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2700.8,"last_update":"2026-03-21T20:19:33.869412612Z"} +2026/03/21 20:19:38 [metric_collector] {"stage_name":"metric_collector","events_processed":8024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1604.8,"last_update":"2026-03-21T20:19:33.869756881Z"} +2026/03/21 20:19:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:19:33.875961796Z"} +2026/03/21 20:19:38 [transform_engine] {"stage_name":"transform_engine","events_processed":267,"events_dropped":0,"avg_latency_ms":157.14846705821043,"throughput_eps":0,"last_update":"2026-03-21T20:19:33.965061483Z"} +2026/03/21 20:19:38 [detection_layer] {"stage_name":"detection_layer","events_processed":267,"events_dropped":0,"avg_latency_ms":16.487575428993882,"throughput_eps":0,"last_update":"2026-03-21T20:19:33.966149817Z"} +2026/03/21 20:19:38 ───────────────────────────────────────────────── +Saved state: 12 clusters, 13505 messages, reason: none +2026/03/21 20:19:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:19:43 [log_collector] {"stage_name":"log_collector","events_processed":13504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2700.8,"last_update":"2026-03-21T20:19:38.869801481Z"} +2026/03/21 20:19:43 [metric_collector] {"stage_name":"metric_collector","events_processed":8029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1605.8,"last_update":"2026-03-21T20:19:38.869979172Z"} +2026/03/21 20:19:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:19:38.87623281Z"} +2026/03/21 20:19:43 [transform_engine] {"stage_name":"transform_engine","events_processed":267,"events_dropped":0,"avg_latency_ms":157.14846705821043,"throughput_eps":0,"last_update":"2026-03-21T20:19:38.965406669Z"} +2026/03/21 20:19:43 [detection_layer] {"stage_name":"detection_layer","events_processed":267,"events_dropped":0,"avg_latency_ms":16.487575428993882,"throughput_eps":0,"last_update":"2026-03-21T20:19:38.96545431Z"} +2026/03/21 20:19:43 ───────────────────────────────────────────────── +2026/03/21 20:19:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:19:48 [log_collector] {"stage_name":"log_collector","events_processed":13511,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.2,"last_update":"2026-03-21T20:19:43.869673712Z"} +2026/03/21 20:19:48 [metric_collector] {"stage_name":"metric_collector","events_processed":8034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1606.8,"last_update":"2026-03-21T20:19:43.869896208Z"} +2026/03/21 20:19:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:19:43.875941878Z"} +2026/03/21 20:19:48 [transform_engine] {"stage_name":"transform_engine","events_processed":267,"events_dropped":0,"avg_latency_ms":157.14846705821043,"throughput_eps":0,"last_update":"2026-03-21T20:19:43.965055271Z"} +2026/03/21 20:19:48 [detection_layer] {"stage_name":"detection_layer","events_processed":267,"events_dropped":0,"avg_latency_ms":16.487575428993882,"throughput_eps":0,"last_update":"2026-03-21T20:19:43.966152593Z"} +2026/03/21 20:19:48 ───────────────────────────────────────────────── +2026/03/21 20:19:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:19:53 [metric_collector] {"stage_name":"metric_collector","events_processed":8039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1607.8,"last_update":"2026-03-21T20:19:48.87013925Z"} +2026/03/21 20:19:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:19:48.878830977Z"} +2026/03/21 20:19:53 [transform_engine] {"stage_name":"transform_engine","events_processed":268,"events_dropped":0,"avg_latency_ms":147.40232944656836,"throughput_eps":0,"last_update":"2026-03-21T20:19:49.074449245Z"} +2026/03/21 20:19:53 [detection_layer] {"stage_name":"detection_layer","events_processed":267,"events_dropped":0,"avg_latency_ms":16.487575428993882,"throughput_eps":0,"last_update":"2026-03-21T20:19:48.966068247Z"} +2026/03/21 20:19:53 [log_collector] {"stage_name":"log_collector","events_processed":13513,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.6,"last_update":"2026-03-21T20:19:53.869579504Z"} +2026/03/21 20:19:53 ───────────────────────────────────────────────── +2026/03/21 20:19:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:19:58 [log_collector] {"stage_name":"log_collector","events_processed":13513,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.6,"last_update":"2026-03-21T20:19:53.869579504Z"} +2026/03/21 20:19:58 [metric_collector] {"stage_name":"metric_collector","events_processed":8044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1608.8,"last_update":"2026-03-21T20:19:53.870077508Z"} +2026/03/21 20:19:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:19:53.878388376Z"} +2026/03/21 20:19:58 [transform_engine] {"stage_name":"transform_engine","events_processed":268,"events_dropped":0,"avg_latency_ms":147.40232944656836,"throughput_eps":0,"last_update":"2026-03-21T20:19:53.965560511Z"} +2026/03/21 20:19:58 [detection_layer] {"stage_name":"detection_layer","events_processed":268,"events_dropped":0,"avg_latency_ms":16.680241143195108,"throughput_eps":0,"last_update":"2026-03-21T20:19:53.965543659Z"} +2026/03/21 20:19:58 ───────────────────────────────────────────────── +2026/03/21 20:20:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:20:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3222,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:19:58.878643722Z"} +2026/03/21 20:20:03 [transform_engine] {"stage_name":"transform_engine","events_processed":268,"events_dropped":0,"avg_latency_ms":147.40232944656836,"throughput_eps":0,"last_update":"2026-03-21T20:19:58.965830355Z"} +2026/03/21 20:20:03 [detection_layer] {"stage_name":"detection_layer","events_processed":268,"events_dropped":0,"avg_latency_ms":16.680241143195108,"throughput_eps":0,"last_update":"2026-03-21T20:19:58.965857507Z"} +2026/03/21 20:20:03 [log_collector] {"stage_name":"log_collector","events_processed":13516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2703.2,"last_update":"2026-03-21T20:19:58.869462987Z"} +2026/03/21 20:20:03 [metric_collector] {"stage_name":"metric_collector","events_processed":8049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1609.8,"last_update":"2026-03-21T20:19:58.869858755Z"} +2026/03/21 20:20:03 ───────────────────────────────────────────────── +2026/03/21 20:20:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:20:08 [transform_engine] {"stage_name":"transform_engine","events_processed":268,"events_dropped":0,"avg_latency_ms":147.40232944656836,"throughput_eps":0,"last_update":"2026-03-21T20:20:03.96547877Z"} +2026/03/21 20:20:08 [detection_layer] {"stage_name":"detection_layer","events_processed":268,"events_dropped":0,"avg_latency_ms":16.680241143195108,"throughput_eps":0,"last_update":"2026-03-21T20:20:03.965454002Z"} +2026/03/21 20:20:08 [log_collector] {"stage_name":"log_collector","events_processed":13516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2703.2,"last_update":"2026-03-21T20:20:03.869610989Z"} +2026/03/21 20:20:08 [metric_collector] {"stage_name":"metric_collector","events_processed":8054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1610.8,"last_update":"2026-03-21T20:20:03.870033268Z"} +2026/03/21 20:20:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:20:03.885266074Z"} +2026/03/21 20:20:08 ───────────────────────────────────────────────── +2026/03/21 20:20:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:20:13 [log_collector] {"stage_name":"log_collector","events_processed":13516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2703.2,"last_update":"2026-03-21T20:20:08.869400636Z"} +2026/03/21 20:20:13 [metric_collector] {"stage_name":"metric_collector","events_processed":8059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1611.8,"last_update":"2026-03-21T20:20:08.86989901Z"} +2026/03/21 20:20:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:20:08.87806977Z"} +2026/03/21 20:20:13 [transform_engine] {"stage_name":"transform_engine","events_processed":268,"events_dropped":0,"avg_latency_ms":147.40232944656836,"throughput_eps":0,"last_update":"2026-03-21T20:20:08.965238499Z"} +2026/03/21 20:20:13 [detection_layer] {"stage_name":"detection_layer","events_processed":268,"events_dropped":0,"avg_latency_ms":16.680241143195108,"throughput_eps":0,"last_update":"2026-03-21T20:20:08.965268086Z"} +2026/03/21 20:20:13 ───────────────────────────────────────────────── +2026/03/21 20:20:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:20:18 [log_collector] {"stage_name":"log_collector","events_processed":13516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2703.2,"last_update":"2026-03-21T20:20:13.869583566Z"} +2026/03/21 20:20:18 [metric_collector] {"stage_name":"metric_collector","events_processed":8064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1612.8,"last_update":"2026-03-21T20:20:13.869748041Z"} +2026/03/21 20:20:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:20:13.878344116Z"} +2026/03/21 20:20:18 [transform_engine] {"stage_name":"transform_engine","events_processed":268,"events_dropped":0,"avg_latency_ms":147.40232944656836,"throughput_eps":0,"last_update":"2026-03-21T20:20:13.965520309Z"} +2026/03/21 20:20:18 [detection_layer] {"stage_name":"detection_layer","events_processed":268,"events_dropped":0,"avg_latency_ms":16.680241143195108,"throughput_eps":0,"last_update":"2026-03-21T20:20:13.965543704Z"} +2026/03/21 20:20:18 ───────────────────────────────────────────────── +2026/03/21 20:20:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:20:23 [log_collector] {"stage_name":"log_collector","events_processed":13516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2703.2,"last_update":"2026-03-21T20:20:23.869787108Z"} +2026/03/21 20:20:23 [metric_collector] {"stage_name":"metric_collector","events_processed":8074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1614.8,"last_update":"2026-03-21T20:20:23.870071362Z"} +2026/03/21 20:20:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:20:18.878430903Z"} +2026/03/21 20:20:23 [transform_engine] {"stage_name":"transform_engine","events_processed":269,"events_dropped":0,"avg_latency_ms":458.3878921572547,"throughput_eps":0,"last_update":"2026-03-21T20:20:20.667993515Z"} +2026/03/21 20:20:23 [detection_layer] {"stage_name":"detection_layer","events_processed":268,"events_dropped":0,"avg_latency_ms":16.680241143195108,"throughput_eps":0,"last_update":"2026-03-21T20:20:18.965683421Z"} +2026/03/21 20:20:23 ───────────────────────────────────────────────── +2026/03/21 20:20:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:20:28 [log_collector] {"stage_name":"log_collector","events_processed":13516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2703.2,"last_update":"2026-03-21T20:20:28.86988097Z"} +2026/03/21 20:20:28 [metric_collector] {"stage_name":"metric_collector","events_processed":8074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1614.8,"last_update":"2026-03-21T20:20:23.870071362Z"} +2026/03/21 20:20:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:20:23.878753712Z"} +2026/03/21 20:20:28 [transform_engine] {"stage_name":"transform_engine","events_processed":269,"events_dropped":0,"avg_latency_ms":458.3878921572547,"throughput_eps":0,"last_update":"2026-03-21T20:20:23.96592755Z"} +2026/03/21 20:20:28 [detection_layer] {"stage_name":"detection_layer","events_processed":269,"events_dropped":0,"avg_latency_ms":16.528423714556087,"throughput_eps":0,"last_update":"2026-03-21T20:20:23.965913885Z"} +2026/03/21 20:20:28 ───────────────────────────────────────────────── +2026/03/21 20:20:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:20:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:20:28.878192549Z"} +2026/03/21 20:20:33 [transform_engine] {"stage_name":"transform_engine","events_processed":269,"events_dropped":0,"avg_latency_ms":458.3878921572547,"throughput_eps":0,"last_update":"2026-03-21T20:20:28.965379483Z"} +2026/03/21 20:20:33 [detection_layer] {"stage_name":"detection_layer","events_processed":269,"events_dropped":0,"avg_latency_ms":16.528423714556087,"throughput_eps":0,"last_update":"2026-03-21T20:20:28.965369564Z"} +2026/03/21 20:20:33 [log_collector] {"stage_name":"log_collector","events_processed":13516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2703.2,"last_update":"2026-03-21T20:20:28.86988097Z"} +2026/03/21 20:20:33 [metric_collector] {"stage_name":"metric_collector","events_processed":8079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1615.8,"last_update":"2026-03-21T20:20:28.870273211Z"} +2026/03/21 20:20:33 ───────────────────────────────────────────────── +2026/03/21 20:20:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:20:38 [log_collector] {"stage_name":"log_collector","events_processed":13516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2703.2,"last_update":"2026-03-21T20:20:33.869809897Z"} +2026/03/21 20:20:38 [metric_collector] {"stage_name":"metric_collector","events_processed":8083,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1616.6,"last_update":"2026-03-21T20:20:33.869828022Z"} +2026/03/21 20:20:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:20:33.878646482Z"} +2026/03/21 20:20:38 [transform_engine] {"stage_name":"transform_engine","events_processed":269,"events_dropped":0,"avg_latency_ms":458.3878921572547,"throughput_eps":0,"last_update":"2026-03-21T20:20:33.965869895Z"} +2026/03/21 20:20:38 [detection_layer] {"stage_name":"detection_layer","events_processed":269,"events_dropped":0,"avg_latency_ms":16.528423714556087,"throughput_eps":0,"last_update":"2026-03-21T20:20:33.965833325Z"} +2026/03/21 20:20:38 ───────────────────────────────────────────────── +2026/03/21 20:20:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:20:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:20:38.878668136Z"} +2026/03/21 20:20:43 [transform_engine] {"stage_name":"transform_engine","events_processed":269,"events_dropped":0,"avg_latency_ms":458.3878921572547,"throughput_eps":0,"last_update":"2026-03-21T20:20:38.965856372Z"} +2026/03/21 20:20:43 [detection_layer] {"stage_name":"detection_layer","events_processed":269,"events_dropped":0,"avg_latency_ms":16.528423714556087,"throughput_eps":0,"last_update":"2026-03-21T20:20:38.965873224Z"} +2026/03/21 20:20:43 [log_collector] {"stage_name":"log_collector","events_processed":13516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2703.2,"last_update":"2026-03-21T20:20:38.8694188Z"} +2026/03/21 20:20:43 [metric_collector] {"stage_name":"metric_collector","events_processed":8089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1617.8,"last_update":"2026-03-21T20:20:38.869736138Z"} +2026/03/21 20:20:43 ───────────────────────────────────────────────── +2026/03/21 20:20:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:20:48 [log_collector] {"stage_name":"log_collector","events_processed":13516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2703.2,"last_update":"2026-03-21T20:20:43.869746862Z"} +2026/03/21 20:20:48 [metric_collector] {"stage_name":"metric_collector","events_processed":8094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1618.8,"last_update":"2026-03-21T20:20:43.870115988Z"} +2026/03/21 20:20:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:20:43.879313606Z"} +2026/03/21 20:20:48 [transform_engine] {"stage_name":"transform_engine","events_processed":269,"events_dropped":0,"avg_latency_ms":458.3878921572547,"throughput_eps":0,"last_update":"2026-03-21T20:20:43.965160342Z"} +2026/03/21 20:20:48 [detection_layer] {"stage_name":"detection_layer","events_processed":269,"events_dropped":0,"avg_latency_ms":16.528423714556087,"throughput_eps":0,"last_update":"2026-03-21T20:20:43.966281299Z"} +2026/03/21 20:20:48 ───────────────────────────────────────────────── +2026/03/21 20:20:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:20:53 [detection_layer] {"stage_name":"detection_layer","events_processed":269,"events_dropped":0,"avg_latency_ms":16.528423714556087,"throughput_eps":0,"last_update":"2026-03-21T20:20:48.965712103Z"} +2026/03/21 20:20:53 [log_collector] {"stage_name":"log_collector","events_processed":13516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2703.2,"last_update":"2026-03-21T20:20:48.87051148Z"} +2026/03/21 20:20:53 [metric_collector] {"stage_name":"metric_collector","events_processed":8099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1619.8,"last_update":"2026-03-21T20:20:48.870841362Z"} +2026/03/21 20:20:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:20:48.879520917Z"} +2026/03/21 20:20:53 [transform_engine] {"stage_name":"transform_engine","events_processed":270,"events_dropped":0,"avg_latency_ms":380.7167809258038,"throughput_eps":0,"last_update":"2026-03-21T20:20:49.035770319Z"} +2026/03/21 20:20:53 ───────────────────────────────────────────────── +2026/03/21 20:20:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:20:58 [log_collector] {"stage_name":"log_collector","events_processed":13516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2703.2,"last_update":"2026-03-21T20:20:58.869916271Z"} +2026/03/21 20:20:58 [metric_collector] {"stage_name":"metric_collector","events_processed":8104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1620.8,"last_update":"2026-03-21T20:20:53.870618801Z"} +2026/03/21 20:20:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:20:53.879569514Z"} +2026/03/21 20:20:58 [transform_engine] {"stage_name":"transform_engine","events_processed":270,"events_dropped":0,"avg_latency_ms":380.7167809258038,"throughput_eps":0,"last_update":"2026-03-21T20:20:53.96574466Z"} +2026/03/21 20:20:58 [detection_layer] {"stage_name":"detection_layer","events_processed":270,"events_dropped":0,"avg_latency_ms":16.48974457164487,"throughput_eps":0,"last_update":"2026-03-21T20:20:53.965767755Z"} +2026/03/21 20:20:58 ───────────────────────────────────────────────── +2026/03/21 20:21:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:21:03 [log_collector] {"stage_name":"log_collector","events_processed":13516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2703.2,"last_update":"2026-03-21T20:20:58.869916271Z"} +2026/03/21 20:21:03 [metric_collector] {"stage_name":"metric_collector","events_processed":8109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1621.8,"last_update":"2026-03-21T20:20:58.870304684Z"} +2026/03/21 20:21:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3246,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:20:58.878561058Z"} +2026/03/21 20:21:03 [transform_engine] {"stage_name":"transform_engine","events_processed":270,"events_dropped":0,"avg_latency_ms":380.7167809258038,"throughput_eps":0,"last_update":"2026-03-21T20:20:58.965724438Z"} +2026/03/21 20:21:03 [detection_layer] {"stage_name":"detection_layer","events_processed":270,"events_dropped":0,"avg_latency_ms":16.48974457164487,"throughput_eps":0,"last_update":"2026-03-21T20:20:58.965740448Z"} +2026/03/21 20:21:03 ───────────────────────────────────────────────── +Saved state: 12 clusters, 13517 messages, reason: none +2026/03/21 20:21:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:21:08 [log_collector] {"stage_name":"log_collector","events_processed":13516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2703.2,"last_update":"2026-03-21T20:21:03.869473548Z"} +2026/03/21 20:21:08 [metric_collector] {"stage_name":"metric_collector","events_processed":8114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1622.8,"last_update":"2026-03-21T20:21:03.869874015Z"} +2026/03/21 20:21:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:21:03.87813633Z"} +2026/03/21 20:21:08 [transform_engine] {"stage_name":"transform_engine","events_processed":270,"events_dropped":0,"avg_latency_ms":380.7167809258038,"throughput_eps":0,"last_update":"2026-03-21T20:21:03.965368631Z"} +2026/03/21 20:21:08 [detection_layer] {"stage_name":"detection_layer","events_processed":270,"events_dropped":0,"avg_latency_ms":16.48974457164487,"throughput_eps":0,"last_update":"2026-03-21T20:21:03.965325778Z"} +2026/03/21 20:21:08 ───────────────────────────────────────────────── +2026/03/21 20:21:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:21:13 [log_collector] {"stage_name":"log_collector","events_processed":13526,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2705.2,"last_update":"2026-03-21T20:21:08.869719644Z"} +2026/03/21 20:21:13 [metric_collector] {"stage_name":"metric_collector","events_processed":8119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1623.8,"last_update":"2026-03-21T20:21:08.869808143Z"} +2026/03/21 20:21:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:21:08.878695266Z"} +2026/03/21 20:21:13 [transform_engine] {"stage_name":"transform_engine","events_processed":270,"events_dropped":0,"avg_latency_ms":380.7167809258038,"throughput_eps":0,"last_update":"2026-03-21T20:21:08.965871309Z"} +2026/03/21 20:21:13 [detection_layer] {"stage_name":"detection_layer","events_processed":270,"events_dropped":0,"avg_latency_ms":16.48974457164487,"throughput_eps":0,"last_update":"2026-03-21T20:21:08.965895665Z"} +2026/03/21 20:21:13 ───────────────────────────────────────────────── +2026/03/21 20:21:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:21:18 [log_collector] {"stage_name":"log_collector","events_processed":13527,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2705.4,"last_update":"2026-03-21T20:21:13.870390216Z"} +2026/03/21 20:21:18 [metric_collector] {"stage_name":"metric_collector","events_processed":8123,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1624.6,"last_update":"2026-03-21T20:21:13.870003155Z"} +2026/03/21 20:21:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:21:13.877027669Z"} +2026/03/21 20:21:18 [transform_engine] {"stage_name":"transform_engine","events_processed":270,"events_dropped":0,"avg_latency_ms":380.7167809258038,"throughput_eps":0,"last_update":"2026-03-21T20:21:13.965139304Z"} +2026/03/21 20:21:18 [detection_layer] {"stage_name":"detection_layer","events_processed":270,"events_dropped":0,"avg_latency_ms":16.48974457164487,"throughput_eps":0,"last_update":"2026-03-21T20:21:13.966266243Z"} +2026/03/21 20:21:18 ───────────────────────────────────────────────── +2026/03/21 20:21:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:21:23 [log_collector] {"stage_name":"log_collector","events_processed":13527,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2705.4,"last_update":"2026-03-21T20:21:18.869976733Z"} +2026/03/21 20:21:23 [metric_collector] {"stage_name":"metric_collector","events_processed":8129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1625.8,"last_update":"2026-03-21T20:21:18.870272921Z"} +2026/03/21 20:21:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:21:18.878933078Z"} +2026/03/21 20:21:23 [transform_engine] {"stage_name":"transform_engine","events_processed":270,"events_dropped":0,"avg_latency_ms":380.7167809258038,"throughput_eps":0,"last_update":"2026-03-21T20:21:13.965139304Z"} +2026/03/21 20:21:23 [detection_layer] {"stage_name":"detection_layer","events_processed":270,"events_dropped":0,"avg_latency_ms":16.48974457164487,"throughput_eps":0,"last_update":"2026-03-21T20:21:18.966110424Z"} +2026/03/21 20:21:23 ───────────────────────────────────────────────── +2026/03/21 20:21:25 [ANOMALY] time=2026-03-21T20:21:25Z score=0.9468 method=SEAD details=MAD!:w=0.22,s=0.95 RRCF-fast!:w=0.20,s=0.92 RRCF-mid!:w=0.17,s=0.93 RRCF-slow!:w=0.14,s=0.92 COPOD!:w=0.28,s=0.98 +2026/03/21 20:21:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:21:28 [transform_engine] {"stage_name":"transform_engine","events_processed":271,"events_dropped":0,"avg_latency_ms":1680.926545940643,"throughput_eps":0,"last_update":"2026-03-21T20:21:25.8478969Z"} +2026/03/21 20:21:28 [detection_layer] {"stage_name":"detection_layer","events_processed":270,"events_dropped":0,"avg_latency_ms":16.48974457164487,"throughput_eps":0,"last_update":"2026-03-21T20:21:23.966237607Z"} +2026/03/21 20:21:28 [log_collector] {"stage_name":"log_collector","events_processed":13530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2706,"last_update":"2026-03-21T20:21:23.870164452Z"} +2026/03/21 20:21:28 [metric_collector] {"stage_name":"metric_collector","events_processed":8134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1626.8,"last_update":"2026-03-21T20:21:23.870485757Z"} +2026/03/21 20:21:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:21:23.876988442Z"} +2026/03/21 20:21:28 ───────────────────────────────────────────────── +2026/03/21 20:21:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:21:33 [detection_layer] {"stage_name":"detection_layer","events_processed":271,"events_dropped":0,"avg_latency_ms":15.300330257315897,"throughput_eps":0,"last_update":"2026-03-21T20:21:28.965298337Z"} +2026/03/21 20:21:33 [log_collector] {"stage_name":"log_collector","events_processed":13538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2707.6,"last_update":"2026-03-21T20:21:28.870201873Z"} +2026/03/21 20:21:33 [metric_collector] {"stage_name":"metric_collector","events_processed":8139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1627.8,"last_update":"2026-03-21T20:21:28.870666944Z"} +2026/03/21 20:21:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:21:28.879923384Z"} +2026/03/21 20:21:33 [transform_engine] {"stage_name":"transform_engine","events_processed":271,"events_dropped":0,"avg_latency_ms":1680.926545940643,"throughput_eps":0,"last_update":"2026-03-21T20:21:28.96512748Z"} +2026/03/21 20:21:33 ───────────────────────────────────────────────── +2026/03/21 20:21:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:21:38 [metric_collector] {"stage_name":"metric_collector","events_processed":8144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1628.8,"last_update":"2026-03-21T20:21:33.869849329Z"} +2026/03/21 20:21:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:21:33.878264768Z"} +2026/03/21 20:21:38 [transform_engine] {"stage_name":"transform_engine","events_processed":271,"events_dropped":0,"avg_latency_ms":1680.926545940643,"throughput_eps":0,"last_update":"2026-03-21T20:21:33.96556583Z"} +2026/03/21 20:21:38 [detection_layer] {"stage_name":"detection_layer","events_processed":271,"events_dropped":0,"avg_latency_ms":15.300330257315897,"throughput_eps":0,"last_update":"2026-03-21T20:21:33.965468534Z"} +2026/03/21 20:21:38 [log_collector] {"stage_name":"log_collector","events_processed":13538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2707.6,"last_update":"2026-03-21T20:21:33.869653374Z"} +2026/03/21 20:21:38 ───────────────────────────────────────────────── +2026/03/21 20:21:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:21:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:21:38.878555305Z"} +2026/03/21 20:21:43 [transform_engine] {"stage_name":"transform_engine","events_processed":271,"events_dropped":0,"avg_latency_ms":1680.926545940643,"throughput_eps":0,"last_update":"2026-03-21T20:21:38.965889862Z"} +2026/03/21 20:21:43 [detection_layer] {"stage_name":"detection_layer","events_processed":271,"events_dropped":0,"avg_latency_ms":15.300330257315897,"throughput_eps":0,"last_update":"2026-03-21T20:21:38.965913718Z"} +2026/03/21 20:21:43 [log_collector] {"stage_name":"log_collector","events_processed":13538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2707.6,"last_update":"2026-03-21T20:21:38.869614039Z"} +2026/03/21 20:21:43 [metric_collector] {"stage_name":"metric_collector","events_processed":8149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1629.8,"last_update":"2026-03-21T20:21:38.869803713Z"} +2026/03/21 20:21:43 ───────────────────────────────────────────────── +2026/03/21 20:21:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:21:48 [metric_collector] {"stage_name":"metric_collector","events_processed":8154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1630.8,"last_update":"2026-03-21T20:21:43.869779077Z"} +2026/03/21 20:21:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:21:43.877810621Z"} +2026/03/21 20:21:48 [transform_engine] {"stage_name":"transform_engine","events_processed":271,"events_dropped":0,"avg_latency_ms":1680.926545940643,"throughput_eps":0,"last_update":"2026-03-21T20:21:43.966112781Z"} +2026/03/21 20:21:48 [detection_layer] {"stage_name":"detection_layer","events_processed":271,"events_dropped":0,"avg_latency_ms":15.300330257315897,"throughput_eps":0,"last_update":"2026-03-21T20:21:43.966162426Z"} +2026/03/21 20:21:48 [log_collector] {"stage_name":"log_collector","events_processed":13538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2707.6,"last_update":"2026-03-21T20:21:48.869733713Z"} +2026/03/21 20:21:48 ───────────────────────────────────────────────── +2026/03/21 20:21:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:21:53 [log_collector] {"stage_name":"log_collector","events_processed":13538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2707.6,"last_update":"2026-03-21T20:21:53.869778071Z"} +2026/03/21 20:21:53 [metric_collector] {"stage_name":"metric_collector","events_processed":8159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1631.8,"last_update":"2026-03-21T20:21:48.87019671Z"} +2026/03/21 20:21:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:21:48.878951428Z"} +2026/03/21 20:21:53 [transform_engine] {"stage_name":"transform_engine","events_processed":272,"events_dropped":0,"avg_latency_ms":1368.2306755525146,"throughput_eps":0,"last_update":"2026-03-21T20:21:49.082500157Z"} +2026/03/21 20:21:53 [detection_layer] {"stage_name":"detection_layer","events_processed":271,"events_dropped":0,"avg_latency_ms":15.300330257315897,"throughput_eps":0,"last_update":"2026-03-21T20:21:48.966255106Z"} +2026/03/21 20:21:53 ───────────────────────────────────────────────── +2026/03/21 20:21:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:21:58 [metric_collector] {"stage_name":"metric_collector","events_processed":8164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1632.8,"last_update":"2026-03-21T20:21:53.870259153Z"} +2026/03/21 20:21:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:21:53.878810511Z"} +2026/03/21 20:21:58 [transform_engine] {"stage_name":"transform_engine","events_processed":272,"events_dropped":0,"avg_latency_ms":1368.2306755525146,"throughput_eps":0,"last_update":"2026-03-21T20:21:53.965988708Z"} +2026/03/21 20:21:58 [detection_layer] {"stage_name":"detection_layer","events_processed":272,"events_dropped":0,"avg_latency_ms":15.784753405852717,"throughput_eps":0,"last_update":"2026-03-21T20:21:53.96601584Z"} +2026/03/21 20:21:58 [log_collector] {"stage_name":"log_collector","events_processed":13538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2707.6,"last_update":"2026-03-21T20:21:53.869778071Z"} +2026/03/21 20:21:58 ───────────────────────────────────────────────── +2026/03/21 20:22:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:22:03 [log_collector] {"stage_name":"log_collector","events_processed":13538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2707.6,"last_update":"2026-03-21T20:21:58.869908334Z"} +2026/03/21 20:22:03 [metric_collector] {"stage_name":"metric_collector","events_processed":8169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1633.8,"last_update":"2026-03-21T20:21:58.87063177Z"} +2026/03/21 20:22:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:21:58.879612772Z"} +2026/03/21 20:22:03 [transform_engine] {"stage_name":"transform_engine","events_processed":272,"events_dropped":0,"avg_latency_ms":1368.2306755525146,"throughput_eps":0,"last_update":"2026-03-21T20:21:58.96585177Z"} +2026/03/21 20:22:03 [detection_layer] {"stage_name":"detection_layer","events_processed":272,"events_dropped":0,"avg_latency_ms":15.784753405852717,"throughput_eps":0,"last_update":"2026-03-21T20:21:58.965794801Z"} +2026/03/21 20:22:03 ───────────────────────────────────────────────── +2026/03/21 20:22:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:22:08 [detection_layer] {"stage_name":"detection_layer","events_processed":272,"events_dropped":0,"avg_latency_ms":15.784753405852717,"throughput_eps":0,"last_update":"2026-03-21T20:22:03.966238766Z"} +2026/03/21 20:22:08 [log_collector] {"stage_name":"log_collector","events_processed":13538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2707.6,"last_update":"2026-03-21T20:22:03.870304628Z"} +2026/03/21 20:22:08 [metric_collector] {"stage_name":"metric_collector","events_processed":8174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1634.8,"last_update":"2026-03-21T20:22:03.871018685Z"} +2026/03/21 20:22:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:22:03.878979152Z"} +2026/03/21 20:22:08 [transform_engine] {"stage_name":"transform_engine","events_processed":272,"events_dropped":0,"avg_latency_ms":1368.2306755525146,"throughput_eps":0,"last_update":"2026-03-21T20:22:03.965114482Z"} +2026/03/21 20:22:08 ───────────────────────────────────────────────── +Saved state: 12 clusters, 13539 messages, reason: none +2026/03/21 20:22:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:22:13 [log_collector] {"stage_name":"log_collector","events_processed":13538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2707.6,"last_update":"2026-03-21T20:22:08.869446899Z"} +2026/03/21 20:22:13 [metric_collector] {"stage_name":"metric_collector","events_processed":8184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1636.8,"last_update":"2026-03-21T20:22:13.870509821Z"} +2026/03/21 20:22:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:22:08.878791477Z"} +2026/03/21 20:22:13 [transform_engine] {"stage_name":"transform_engine","events_processed":272,"events_dropped":0,"avg_latency_ms":1368.2306755525146,"throughput_eps":0,"last_update":"2026-03-21T20:22:08.966111627Z"} +2026/03/21 20:22:13 [detection_layer] {"stage_name":"detection_layer","events_processed":272,"events_dropped":0,"avg_latency_ms":15.784753405852717,"throughput_eps":0,"last_update":"2026-03-21T20:22:08.96621761Z"} +2026/03/21 20:22:13 ───────────────────────────────────────────────── +2026/03/21 20:22:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:22:18 [detection_layer] {"stage_name":"detection_layer","events_processed":272,"events_dropped":0,"avg_latency_ms":15.784753405852717,"throughput_eps":0,"last_update":"2026-03-21T20:22:13.966101313Z"} +2026/03/21 20:22:18 [log_collector] {"stage_name":"log_collector","events_processed":13543,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2708.6,"last_update":"2026-03-21T20:22:13.870521733Z"} +2026/03/21 20:22:18 [metric_collector] {"stage_name":"metric_collector","events_processed":8184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1636.8,"last_update":"2026-03-21T20:22:13.870509821Z"} +2026/03/21 20:22:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3276,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:22:13.882999202Z"} +2026/03/21 20:22:18 [transform_engine] {"stage_name":"transform_engine","events_processed":272,"events_dropped":0,"avg_latency_ms":1368.2306755525146,"throughput_eps":0,"last_update":"2026-03-21T20:22:13.966085863Z"} +2026/03/21 20:22:18 ───────────────────────────────────────────────── +2026/03/21 20:22:19 [ANOMALY] time=2026-03-21T20:22:19Z score=0.8637 method=SEAD details=MAD!:w=0.22,s=0.95 RRCF-fast:w=0.20,s=0.85 RRCF-mid!:w=0.17,s=0.92 RRCF-slow!:w=0.14,s=0.92 COPOD!:w=0.27,s=0.74 +2026/03/21 20:22:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:22:23 [log_collector] {"stage_name":"log_collector","events_processed":13543,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2708.6,"last_update":"2026-03-21T20:22:18.87024526Z"} +2026/03/21 20:22:23 [metric_collector] {"stage_name":"metric_collector","events_processed":8189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1637.8,"last_update":"2026-03-21T20:22:18.870342035Z"} +2026/03/21 20:22:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:22:18.876215635Z"} +2026/03/21 20:22:23 [transform_engine] {"stage_name":"transform_engine","events_processed":273,"events_dropped":0,"avg_latency_ms":1134.2519516420118,"throughput_eps":0,"last_update":"2026-03-21T20:22:19.163837173Z"} +2026/03/21 20:22:23 [detection_layer] {"stage_name":"detection_layer","events_processed":272,"events_dropped":0,"avg_latency_ms":15.784753405852717,"throughput_eps":0,"last_update":"2026-03-21T20:22:18.965414473Z"} +2026/03/21 20:22:23 ───────────────────────────────────────────────── +2026/03/21 20:22:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:22:28 [log_collector] {"stage_name":"log_collector","events_processed":13543,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2708.6,"last_update":"2026-03-21T20:22:23.869527622Z"} +2026/03/21 20:22:28 [metric_collector] {"stage_name":"metric_collector","events_processed":8194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1638.8,"last_update":"2026-03-21T20:22:23.870038771Z"} +2026/03/21 20:22:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:22:23.875890018Z"} +2026/03/21 20:22:28 [transform_engine] {"stage_name":"transform_engine","events_processed":273,"events_dropped":0,"avg_latency_ms":1134.2519516420118,"throughput_eps":0,"last_update":"2026-03-21T20:22:23.966097487Z"} +2026/03/21 20:22:28 [detection_layer] {"stage_name":"detection_layer","events_processed":273,"events_dropped":0,"avg_latency_ms":14.829523724682176,"throughput_eps":0,"last_update":"2026-03-21T20:22:23.966087669Z"} +2026/03/21 20:22:28 ───────────────────────────────────────────────── +2026/03/21 20:22:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:22:33 [log_collector] {"stage_name":"log_collector","events_processed":13543,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2708.6,"last_update":"2026-03-21T20:22:28.869493353Z"} +2026/03/21 20:22:33 [metric_collector] {"stage_name":"metric_collector","events_processed":8199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1639.8,"last_update":"2026-03-21T20:22:28.86971122Z"} +2026/03/21 20:22:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:22:28.879416369Z"} +2026/03/21 20:22:33 [transform_engine] {"stage_name":"transform_engine","events_processed":273,"events_dropped":0,"avg_latency_ms":1134.2519516420118,"throughput_eps":0,"last_update":"2026-03-21T20:22:28.965619469Z"} +2026/03/21 20:22:33 [detection_layer] {"stage_name":"detection_layer","events_processed":273,"events_dropped":0,"avg_latency_ms":14.829523724682176,"throughput_eps":0,"last_update":"2026-03-21T20:22:28.965606293Z"} +2026/03/21 20:22:33 ───────────────────────────────────────────────── +2026/03/21 20:22:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:22:38 [detection_layer] {"stage_name":"detection_layer","events_processed":273,"events_dropped":0,"avg_latency_ms":14.829523724682176,"throughput_eps":0,"last_update":"2026-03-21T20:22:33.966378209Z"} +2026/03/21 20:22:38 [log_collector] {"stage_name":"log_collector","events_processed":13543,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2708.6,"last_update":"2026-03-21T20:22:33.869479664Z"} +2026/03/21 20:22:38 [metric_collector] {"stage_name":"metric_collector","events_processed":8204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1640.8,"last_update":"2026-03-21T20:22:33.870071839Z"} +2026/03/21 20:22:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:22:33.875959466Z"} +2026/03/21 20:22:38 [transform_engine] {"stage_name":"transform_engine","events_processed":273,"events_dropped":0,"avg_latency_ms":1134.2519516420118,"throughput_eps":0,"last_update":"2026-03-21T20:22:33.965078741Z"} +2026/03/21 20:22:38 ───────────────────────────────────────────────── +2026/03/21 20:22:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:22:43 [detection_layer] {"stage_name":"detection_layer","events_processed":273,"events_dropped":0,"avg_latency_ms":14.829523724682176,"throughput_eps":0,"last_update":"2026-03-21T20:22:38.966302993Z"} +2026/03/21 20:22:43 [log_collector] {"stage_name":"log_collector","events_processed":13543,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2708.6,"last_update":"2026-03-21T20:22:38.870140728Z"} +2026/03/21 20:22:43 [metric_collector] {"stage_name":"metric_collector","events_processed":8209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1641.8,"last_update":"2026-03-21T20:22:38.870540314Z"} +2026/03/21 20:22:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3286,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:22:38.875948773Z"} +2026/03/21 20:22:43 [transform_engine] {"stage_name":"transform_engine","events_processed":273,"events_dropped":0,"avg_latency_ms":1134.2519516420118,"throughput_eps":0,"last_update":"2026-03-21T20:22:38.965148582Z"} +2026/03/21 20:22:43 ───────────────────────────────────────────────── +2026/03/21 20:22:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:22:48 [log_collector] {"stage_name":"log_collector","events_processed":13543,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2708.6,"last_update":"2026-03-21T20:22:43.870132822Z"} +2026/03/21 20:22:48 [metric_collector] {"stage_name":"metric_collector","events_processed":8214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1642.8,"last_update":"2026-03-21T20:22:43.87059648Z"} +2026/03/21 20:22:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:22:43.879248321Z"} +2026/03/21 20:22:48 [transform_engine] {"stage_name":"transform_engine","events_processed":273,"events_dropped":0,"avg_latency_ms":1134.2519516420118,"throughput_eps":0,"last_update":"2026-03-21T20:22:43.965955245Z"} +2026/03/21 20:22:48 [detection_layer] {"stage_name":"detection_layer","events_processed":273,"events_dropped":0,"avg_latency_ms":14.829523724682176,"throughput_eps":0,"last_update":"2026-03-21T20:22:43.965946469Z"} +2026/03/21 20:22:48 ───────────────────────────────────────────────── +2026/03/21 20:22:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:22:53 [log_collector] {"stage_name":"log_collector","events_processed":13543,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2708.6,"last_update":"2026-03-21T20:22:48.869745299Z"} +2026/03/21 20:22:53 [metric_collector] {"stage_name":"metric_collector","events_processed":8219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1643.8,"last_update":"2026-03-21T20:22:48.870169993Z"} +2026/03/21 20:22:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:22:48.876085142Z"} +2026/03/21 20:22:53 [transform_engine] {"stage_name":"transform_engine","events_processed":274,"events_dropped":0,"avg_latency_ms":925.1535505136095,"throughput_eps":0,"last_update":"2026-03-21T20:22:49.054069876Z"} +2026/03/21 20:22:53 [detection_layer] {"stage_name":"detection_layer","events_processed":273,"events_dropped":0,"avg_latency_ms":14.829523724682176,"throughput_eps":0,"last_update":"2026-03-21T20:22:48.965335068Z"} +2026/03/21 20:22:53 ───────────────────────────────────────────────── +2026/03/21 20:22:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:22:58 [log_collector] {"stage_name":"log_collector","events_processed":13543,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2708.6,"last_update":"2026-03-21T20:22:53.869672048Z"} +2026/03/21 20:22:58 [metric_collector] {"stage_name":"metric_collector","events_processed":8228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1645.6,"last_update":"2026-03-21T20:22:58.869988445Z"} +2026/03/21 20:22:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:22:53.879625122Z"} +2026/03/21 20:22:58 [transform_engine] {"stage_name":"transform_engine","events_processed":274,"events_dropped":0,"avg_latency_ms":925.1535505136095,"throughput_eps":0,"last_update":"2026-03-21T20:22:53.965833311Z"} +2026/03/21 20:22:58 [detection_layer] {"stage_name":"detection_layer","events_processed":274,"events_dropped":0,"avg_latency_ms":14.16797077974574,"throughput_eps":0,"last_update":"2026-03-21T20:22:53.965850134Z"} +2026/03/21 20:22:58 ───────────────────────────────────────────────── +2026/03/21 20:23:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:23:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:22:58.879138179Z"} +2026/03/21 20:23:03 [transform_engine] {"stage_name":"transform_engine","events_processed":274,"events_dropped":0,"avg_latency_ms":925.1535505136095,"throughput_eps":0,"last_update":"2026-03-21T20:22:58.965468813Z"} +2026/03/21 20:23:03 [detection_layer] {"stage_name":"detection_layer","events_processed":274,"events_dropped":0,"avg_latency_ms":14.16797077974574,"throughput_eps":0,"last_update":"2026-03-21T20:22:58.965424839Z"} +2026/03/21 20:23:03 [log_collector] {"stage_name":"log_collector","events_processed":13554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2710.8,"last_update":"2026-03-21T20:22:58.870001199Z"} +2026/03/21 20:23:03 [metric_collector] {"stage_name":"metric_collector","events_processed":8228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1645.6,"last_update":"2026-03-21T20:22:58.869988445Z"} +2026/03/21 20:23:03 ───────────────────────────────────────────────── +2026/03/21 20:23:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:23:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:23:03.878527911Z"} +2026/03/21 20:23:08 [transform_engine] {"stage_name":"transform_engine","events_processed":274,"events_dropped":0,"avg_latency_ms":925.1535505136095,"throughput_eps":0,"last_update":"2026-03-21T20:23:03.965801301Z"} +2026/03/21 20:23:08 [detection_layer] {"stage_name":"detection_layer","events_processed":274,"events_dropped":0,"avg_latency_ms":14.16797077974574,"throughput_eps":0,"last_update":"2026-03-21T20:23:03.965752598Z"} +2026/03/21 20:23:08 [log_collector] {"stage_name":"log_collector","events_processed":13554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2710.8,"last_update":"2026-03-21T20:23:03.869421029Z"} +2026/03/21 20:23:08 [metric_collector] {"stage_name":"metric_collector","events_processed":8234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1646.8,"last_update":"2026-03-21T20:23:03.869946455Z"} +2026/03/21 20:23:08 ───────────────────────────────────────────────── +Saved state: 12 clusters, 13898 messages, reason: none +2026/03/21 20:23:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:23:13 [detection_layer] {"stage_name":"detection_layer","events_processed":274,"events_dropped":0,"avg_latency_ms":14.16797077974574,"throughput_eps":0,"last_update":"2026-03-21T20:23:08.96620198Z"} +2026/03/21 20:23:13 [log_collector] {"stage_name":"log_collector","events_processed":13649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2729.8,"last_update":"2026-03-21T20:23:08.870345301Z"} +2026/03/21 20:23:13 [metric_collector] {"stage_name":"metric_collector","events_processed":8239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1647.8,"last_update":"2026-03-21T20:23:08.870626158Z"} +2026/03/21 20:23:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:23:08.877010857Z"} +2026/03/21 20:23:13 [transform_engine] {"stage_name":"transform_engine","events_processed":274,"events_dropped":0,"avg_latency_ms":925.1535505136095,"throughput_eps":0,"last_update":"2026-03-21T20:23:08.965132872Z"} +2026/03/21 20:23:13 ───────────────────────────────────────────────── +2026/03/21 20:23:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:23:18 [detection_layer] {"stage_name":"detection_layer","events_processed":274,"events_dropped":0,"avg_latency_ms":14.16797077974574,"throughput_eps":0,"last_update":"2026-03-21T20:23:13.965893631Z"} +2026/03/21 20:23:18 [log_collector] {"stage_name":"log_collector","events_processed":13903,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2780.6,"last_update":"2026-03-21T20:23:13.869735513Z"} +2026/03/21 20:23:18 [metric_collector] {"stage_name":"metric_collector","events_processed":8244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1648.8,"last_update":"2026-03-21T20:23:13.870223998Z"} +2026/03/21 20:23:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:23:13.878648775Z"} +2026/03/21 20:23:18 [transform_engine] {"stage_name":"transform_engine","events_processed":274,"events_dropped":0,"avg_latency_ms":925.1535505136095,"throughput_eps":0,"last_update":"2026-03-21T20:23:13.96600333Z"} +2026/03/21 20:23:18 ───────────────────────────────────────────────── +2026/03/21 20:23:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:23:23 [log_collector] {"stage_name":"log_collector","events_processed":13903,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2780.6,"last_update":"2026-03-21T20:23:18.869962451Z"} +2026/03/21 20:23:23 [metric_collector] {"stage_name":"metric_collector","events_processed":8249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1649.8,"last_update":"2026-03-21T20:23:18.870331377Z"} +2026/03/21 20:23:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:23:18.878333324Z"} +2026/03/21 20:23:23 [transform_engine] {"stage_name":"transform_engine","events_processed":275,"events_dropped":0,"avg_latency_ms":763.5619746108877,"throughput_eps":0,"last_update":"2026-03-21T20:23:19.082672386Z"} +2026/03/21 20:23:23 [detection_layer] {"stage_name":"detection_layer","events_processed":274,"events_dropped":0,"avg_latency_ms":14.16797077974574,"throughput_eps":0,"last_update":"2026-03-21T20:23:18.965508225Z"} +2026/03/21 20:23:23 ───────────────────────────────────────────────── +2026/03/21 20:23:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:23:28 [log_collector] {"stage_name":"log_collector","events_processed":13903,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2780.6,"last_update":"2026-03-21T20:23:23.86941173Z"} +2026/03/21 20:23:28 [metric_collector] {"stage_name":"metric_collector","events_processed":8254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1650.8,"last_update":"2026-03-21T20:23:23.870109265Z"} +2026/03/21 20:23:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:23:23.8782248Z"} +2026/03/21 20:23:28 [transform_engine] {"stage_name":"transform_engine","events_processed":275,"events_dropped":0,"avg_latency_ms":763.5619746108877,"throughput_eps":0,"last_update":"2026-03-21T20:23:23.965427033Z"} +2026/03/21 20:23:28 [detection_layer] {"stage_name":"detection_layer","events_processed":275,"events_dropped":0,"avg_latency_ms":15.034064823796594,"throughput_eps":0,"last_update":"2026-03-21T20:23:23.965455828Z"} +2026/03/21 20:23:28 ───────────────────────────────────────────────── +2026/03/21 20:23:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:23:33 [log_collector] {"stage_name":"log_collector","events_processed":13903,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2780.6,"last_update":"2026-03-21T20:23:28.869805206Z"} +2026/03/21 20:23:33 [metric_collector] {"stage_name":"metric_collector","events_processed":8259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1651.8,"last_update":"2026-03-21T20:23:28.869944763Z"} +2026/03/21 20:23:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:23:28.878892702Z"} +2026/03/21 20:23:33 [transform_engine] {"stage_name":"transform_engine","events_processed":275,"events_dropped":0,"avg_latency_ms":763.5619746108877,"throughput_eps":0,"last_update":"2026-03-21T20:23:28.965064261Z"} +2026/03/21 20:23:33 [detection_layer] {"stage_name":"detection_layer","events_processed":275,"events_dropped":0,"avg_latency_ms":15.034064823796594,"throughput_eps":0,"last_update":"2026-03-21T20:23:28.966246615Z"} +2026/03/21 20:23:33 ───────────────────────────────────────────────── +2026/03/21 20:23:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:23:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:23:33.878967078Z"} +2026/03/21 20:23:38 [transform_engine] {"stage_name":"transform_engine","events_processed":275,"events_dropped":0,"avg_latency_ms":763.5619746108877,"throughput_eps":0,"last_update":"2026-03-21T20:23:33.965078522Z"} +2026/03/21 20:23:38 [detection_layer] {"stage_name":"detection_layer","events_processed":275,"events_dropped":0,"avg_latency_ms":15.034064823796594,"throughput_eps":0,"last_update":"2026-03-21T20:23:33.966220148Z"} +2026/03/21 20:23:38 [log_collector] {"stage_name":"log_collector","events_processed":13903,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2780.6,"last_update":"2026-03-21T20:23:33.869712773Z"} +2026/03/21 20:23:38 [metric_collector] {"stage_name":"metric_collector","events_processed":8264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1652.8,"last_update":"2026-03-21T20:23:33.869863111Z"} +2026/03/21 20:23:38 ───────────────────────────────────────────────── +2026/03/21 20:23:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:23:43 [log_collector] {"stage_name":"log_collector","events_processed":13903,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2780.6,"last_update":"2026-03-21T20:23:38.870275305Z"} +2026/03/21 20:23:43 [metric_collector] {"stage_name":"metric_collector","events_processed":8269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1653.8,"last_update":"2026-03-21T20:23:38.870503792Z"} +2026/03/21 20:23:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:23:38.879551562Z"} +2026/03/21 20:23:43 [transform_engine] {"stage_name":"transform_engine","events_processed":275,"events_dropped":0,"avg_latency_ms":763.5619746108877,"throughput_eps":0,"last_update":"2026-03-21T20:23:38.965872167Z"} +2026/03/21 20:23:43 [detection_layer] {"stage_name":"detection_layer","events_processed":275,"events_dropped":0,"avg_latency_ms":15.034064823796594,"throughput_eps":0,"last_update":"2026-03-21T20:23:38.965986586Z"} +2026/03/21 20:23:43 ───────────────────────────────────────────────── +2026/03/21 20:23:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:23:48 [metric_collector] {"stage_name":"metric_collector","events_processed":8274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1654.8,"last_update":"2026-03-21T20:23:43.869811811Z"} +2026/03/21 20:23:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:23:43.878115315Z"} +2026/03/21 20:23:48 [transform_engine] {"stage_name":"transform_engine","events_processed":275,"events_dropped":0,"avg_latency_ms":763.5619746108877,"throughput_eps":0,"last_update":"2026-03-21T20:23:43.965453569Z"} +2026/03/21 20:23:48 [detection_layer] {"stage_name":"detection_layer","events_processed":275,"events_dropped":0,"avg_latency_ms":15.034064823796594,"throughput_eps":0,"last_update":"2026-03-21T20:23:43.965597294Z"} +2026/03/21 20:23:48 [log_collector] {"stage_name":"log_collector","events_processed":13903,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2780.6,"last_update":"2026-03-21T20:23:43.869582772Z"} +2026/03/21 20:23:48 ───────────────────────────────────────────────── +2026/03/21 20:23:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:23:53 [transform_engine] {"stage_name":"transform_engine","events_processed":276,"events_dropped":0,"avg_latency_ms":625.2585138887101,"throughput_eps":0,"last_update":"2026-03-21T20:23:49.037333851Z"} +2026/03/21 20:23:53 [detection_layer] {"stage_name":"detection_layer","events_processed":275,"events_dropped":0,"avg_latency_ms":15.034064823796594,"throughput_eps":0,"last_update":"2026-03-21T20:23:48.965422324Z"} +2026/03/21 20:23:53 [log_collector] {"stage_name":"log_collector","events_processed":13903,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2780.6,"last_update":"2026-03-21T20:23:48.869810484Z"} +2026/03/21 20:23:53 [metric_collector] {"stage_name":"metric_collector","events_processed":8279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1655.8,"last_update":"2026-03-21T20:23:48.869798231Z"} +2026/03/21 20:23:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:23:48.879084517Z"} +2026/03/21 20:23:53 ───────────────────────────────────────────────── +2026/03/21 20:23:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:23:58 [log_collector] {"stage_name":"log_collector","events_processed":13903,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2780.6,"last_update":"2026-03-21T20:23:53.869542286Z"} +2026/03/21 20:23:58 [metric_collector] {"stage_name":"metric_collector","events_processed":8284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1656.8,"last_update":"2026-03-21T20:23:53.869877148Z"} +2026/03/21 20:23:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:23:53.878139223Z"} +2026/03/21 20:23:58 [transform_engine] {"stage_name":"transform_engine","events_processed":276,"events_dropped":0,"avg_latency_ms":625.2585138887101,"throughput_eps":0,"last_update":"2026-03-21T20:23:53.965562409Z"} +2026/03/21 20:23:58 [detection_layer] {"stage_name":"detection_layer","events_processed":276,"events_dropped":0,"avg_latency_ms":16.09169085903728,"throughput_eps":0,"last_update":"2026-03-21T20:23:53.965545988Z"} +2026/03/21 20:23:58 ───────────────────────────────────────────────── +2026/03/21 20:24:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:24:03 [metric_collector] {"stage_name":"metric_collector","events_processed":8289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1657.8,"last_update":"2026-03-21T20:23:58.86990173Z"} +2026/03/21 20:24:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:23:58.878947808Z"} +2026/03/21 20:24:03 [transform_engine] {"stage_name":"transform_engine","events_processed":276,"events_dropped":0,"avg_latency_ms":625.2585138887101,"throughput_eps":0,"last_update":"2026-03-21T20:23:58.965183569Z"} +2026/03/21 20:24:03 [detection_layer] {"stage_name":"detection_layer","events_processed":276,"events_dropped":0,"avg_latency_ms":16.09169085903728,"throughput_eps":0,"last_update":"2026-03-21T20:23:58.965322366Z"} +2026/03/21 20:24:03 [log_collector] {"stage_name":"log_collector","events_processed":13903,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2780.6,"last_update":"2026-03-21T20:23:58.869592218Z"} +2026/03/21 20:24:03 ───────────────────────────────────────────────── +2026/03/21 20:24:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:24:08 [log_collector] {"stage_name":"log_collector","events_processed":13903,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2780.6,"last_update":"2026-03-21T20:24:03.870132429Z"} +2026/03/21 20:24:08 [metric_collector] {"stage_name":"metric_collector","events_processed":8294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1658.8,"last_update":"2026-03-21T20:24:03.870423768Z"} +2026/03/21 20:24:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3320,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:24:03.879908995Z"} +2026/03/21 20:24:08 [transform_engine] {"stage_name":"transform_engine","events_processed":276,"events_dropped":0,"avg_latency_ms":625.2585138887101,"throughput_eps":0,"last_update":"2026-03-21T20:24:03.966179985Z"} +2026/03/21 20:24:08 [detection_layer] {"stage_name":"detection_layer","events_processed":276,"events_dropped":0,"avg_latency_ms":16.09169085903728,"throughput_eps":0,"last_update":"2026-03-21T20:24:03.966136001Z"} +2026/03/21 20:24:08 ───────────────────────────────────────────────── +2026/03/21 20:24:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:24:13 [log_collector] {"stage_name":"log_collector","events_processed":13903,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2780.6,"last_update":"2026-03-21T20:24:08.870234532Z"} +2026/03/21 20:24:13 [metric_collector] {"stage_name":"metric_collector","events_processed":8299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1659.8,"last_update":"2026-03-21T20:24:08.870579954Z"} +2026/03/21 20:24:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:24:08.878244023Z"} +2026/03/21 20:24:13 [transform_engine] {"stage_name":"transform_engine","events_processed":276,"events_dropped":0,"avg_latency_ms":625.2585138887101,"throughput_eps":0,"last_update":"2026-03-21T20:24:08.965565505Z"} +2026/03/21 20:24:13 [detection_layer] {"stage_name":"detection_layer","events_processed":276,"events_dropped":0,"avg_latency_ms":16.09169085903728,"throughput_eps":0,"last_update":"2026-03-21T20:24:08.965554523Z"} +2026/03/21 20:24:13 ───────────────────────────────────────────────── +2026/03/21 20:24:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:24:18 [log_collector] {"stage_name":"log_collector","events_processed":13903,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2780.6,"last_update":"2026-03-21T20:24:13.870430625Z"} +2026/03/21 20:24:18 [metric_collector] {"stage_name":"metric_collector","events_processed":8304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1660.8,"last_update":"2026-03-21T20:24:13.871064739Z"} +2026/03/21 20:24:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:24:13.879984625Z"} +2026/03/21 20:24:18 [transform_engine] {"stage_name":"transform_engine","events_processed":276,"events_dropped":0,"avg_latency_ms":625.2585138887101,"throughput_eps":0,"last_update":"2026-03-21T20:24:13.965148092Z"} +2026/03/21 20:24:18 [detection_layer] {"stage_name":"detection_layer","events_processed":276,"events_dropped":0,"avg_latency_ms":16.09169085903728,"throughput_eps":0,"last_update":"2026-03-21T20:24:13.966250906Z"} +2026/03/21 20:24:18 ───────────────────────────────────────────────── +2026/03/21 20:24:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:24:23 [log_collector] {"stage_name":"log_collector","events_processed":13903,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2780.6,"last_update":"2026-03-21T20:24:18.869886851Z"} +2026/03/21 20:24:23 [metric_collector] {"stage_name":"metric_collector","events_processed":8309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1661.8,"last_update":"2026-03-21T20:24:18.870317506Z"} +2026/03/21 20:24:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:24:18.87911639Z"} +2026/03/21 20:24:23 [transform_engine] {"stage_name":"transform_engine","events_processed":277,"events_dropped":0,"avg_latency_ms":514.8702387109681,"throughput_eps":0,"last_update":"2026-03-21T20:24:19.038834627Z"} +2026/03/21 20:24:23 [detection_layer] {"stage_name":"detection_layer","events_processed":276,"events_dropped":0,"avg_latency_ms":16.09169085903728,"throughput_eps":0,"last_update":"2026-03-21T20:24:18.96549749Z"} +2026/03/21 20:24:23 ───────────────────────────────────────────────── +2026/03/21 20:24:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:24:28 [detection_layer] {"stage_name":"detection_layer","events_processed":277,"events_dropped":0,"avg_latency_ms":16.814942287229822,"throughput_eps":0,"last_update":"2026-03-21T20:24:23.966262544Z"} +2026/03/21 20:24:28 [log_collector] {"stage_name":"log_collector","events_processed":13903,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2780.6,"last_update":"2026-03-21T20:24:23.870205069Z"} +2026/03/21 20:24:28 [metric_collector] {"stage_name":"metric_collector","events_processed":8314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1662.8,"last_update":"2026-03-21T20:24:23.87063883Z"} +2026/03/21 20:24:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:24:23.878917417Z"} +2026/03/21 20:24:28 [transform_engine] {"stage_name":"transform_engine","events_processed":277,"events_dropped":0,"avg_latency_ms":514.8702387109681,"throughput_eps":0,"last_update":"2026-03-21T20:24:23.965099697Z"} +2026/03/21 20:24:28 ───────────────────────────────────────────────── +2026/03/21 20:24:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:24:33 [log_collector] {"stage_name":"log_collector","events_processed":13903,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2780.6,"last_update":"2026-03-21T20:24:28.870116288Z"} +2026/03/21 20:24:33 [metric_collector] {"stage_name":"metric_collector","events_processed":8319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1663.8,"last_update":"2026-03-21T20:24:28.870747959Z"} +2026/03/21 20:24:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3330,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:24:28.879743518Z"} +2026/03/21 20:24:33 [transform_engine] {"stage_name":"transform_engine","events_processed":277,"events_dropped":0,"avg_latency_ms":514.8702387109681,"throughput_eps":0,"last_update":"2026-03-21T20:24:28.966144307Z"} +2026/03/21 20:24:33 [detection_layer] {"stage_name":"detection_layer","events_processed":277,"events_dropped":0,"avg_latency_ms":16.814942287229822,"throughput_eps":0,"last_update":"2026-03-21T20:24:28.966129418Z"} +2026/03/21 20:24:33 ───────────────────────────────────────────────── +2026/03/21 20:24:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:24:38 [metric_collector] {"stage_name":"metric_collector","events_processed":8324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1664.8,"last_update":"2026-03-21T20:24:33.870326911Z"} +2026/03/21 20:24:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:24:33.878488774Z"} +2026/03/21 20:24:38 [transform_engine] {"stage_name":"transform_engine","events_processed":277,"events_dropped":0,"avg_latency_ms":514.8702387109681,"throughput_eps":0,"last_update":"2026-03-21T20:24:33.965699645Z"} +2026/03/21 20:24:38 [detection_layer] {"stage_name":"detection_layer","events_processed":277,"events_dropped":0,"avg_latency_ms":16.814942287229822,"throughput_eps":0,"last_update":"2026-03-21T20:24:33.96568704Z"} +2026/03/21 20:24:38 [log_collector] {"stage_name":"log_collector","events_processed":13903,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2780.6,"last_update":"2026-03-21T20:24:33.869776678Z"} +2026/03/21 20:24:38 ───────────────────────────────────────────────── +2026/03/21 20:24:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:24:43 [log_collector] {"stage_name":"log_collector","events_processed":13903,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2780.6,"last_update":"2026-03-21T20:24:38.869801895Z"} +2026/03/21 20:24:43 [metric_collector] {"stage_name":"metric_collector","events_processed":8329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1665.8,"last_update":"2026-03-21T20:24:38.870245806Z"} +2026/03/21 20:24:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:24:38.879384439Z"} +2026/03/21 20:24:43 [transform_engine] {"stage_name":"transform_engine","events_processed":277,"events_dropped":0,"avg_latency_ms":514.8702387109681,"throughput_eps":0,"last_update":"2026-03-21T20:24:38.965741754Z"} +2026/03/21 20:24:43 [detection_layer] {"stage_name":"detection_layer","events_processed":277,"events_dropped":0,"avg_latency_ms":16.814942287229822,"throughput_eps":0,"last_update":"2026-03-21T20:24:38.965729441Z"} +2026/03/21 20:24:43 ───────────────────────────────────────────────── +2026/03/21 20:24:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:24:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:24:43.87908135Z"} +2026/03/21 20:24:48 [transform_engine] {"stage_name":"transform_engine","events_processed":277,"events_dropped":0,"avg_latency_ms":514.8702387109681,"throughput_eps":0,"last_update":"2026-03-21T20:24:43.965439016Z"} +2026/03/21 20:24:48 [detection_layer] {"stage_name":"detection_layer","events_processed":277,"events_dropped":0,"avg_latency_ms":16.814942287229822,"throughput_eps":0,"last_update":"2026-03-21T20:24:43.965423336Z"} +2026/03/21 20:24:48 [log_collector] {"stage_name":"log_collector","events_processed":13903,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2780.6,"last_update":"2026-03-21T20:24:43.870378411Z"} +2026/03/21 20:24:48 [metric_collector] {"stage_name":"metric_collector","events_processed":8334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1666.8,"last_update":"2026-03-21T20:24:43.870727369Z"} +2026/03/21 20:24:48 ───────────────────────────────────────────────── +Saved state: 12 clusters, 13904 messages, reason: none +2026/03/21 20:24:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:24:53 [log_collector] {"stage_name":"log_collector","events_processed":13903,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2780.6,"last_update":"2026-03-21T20:24:48.869686386Z"} +2026/03/21 20:24:53 [metric_collector] {"stage_name":"metric_collector","events_processed":8339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1667.8,"last_update":"2026-03-21T20:24:48.870016889Z"} +2026/03/21 20:24:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:24:48.87844941Z"} +2026/03/21 20:24:53 [transform_engine] {"stage_name":"transform_engine","events_processed":278,"events_dropped":0,"avg_latency_ms":425.71549576877453,"throughput_eps":0,"last_update":"2026-03-21T20:24:49.034902954Z"} +2026/03/21 20:24:53 [detection_layer] {"stage_name":"detection_layer","events_processed":277,"events_dropped":0,"avg_latency_ms":16.814942287229822,"throughput_eps":0,"last_update":"2026-03-21T20:24:48.96579588Z"} +2026/03/21 20:24:53 ───────────────────────────────────────────────── +2026/03/21 20:24:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:24:58 [metric_collector] {"stage_name":"metric_collector","events_processed":8344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1668.8,"last_update":"2026-03-21T20:24:53.869863916Z"} +2026/03/21 20:24:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:24:53.875821647Z"} +2026/03/21 20:24:58 [transform_engine] {"stage_name":"transform_engine","events_processed":278,"events_dropped":0,"avg_latency_ms":425.71549576877453,"throughput_eps":0,"last_update":"2026-03-21T20:24:53.966079514Z"} +2026/03/21 20:24:58 [detection_layer] {"stage_name":"detection_layer","events_processed":278,"events_dropped":0,"avg_latency_ms":17.46733282978386,"throughput_eps":0,"last_update":"2026-03-21T20:24:53.966066218Z"} +2026/03/21 20:24:58 [log_collector] {"stage_name":"log_collector","events_processed":13906,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2781.2,"last_update":"2026-03-21T20:24:58.870043452Z"} +2026/03/21 20:24:58 ───────────────────────────────────────────────── +2026/03/21 20:25:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:25:03 [log_collector] {"stage_name":"log_collector","events_processed":13906,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2781.2,"last_update":"2026-03-21T20:24:58.870043452Z"} +2026/03/21 20:25:03 [metric_collector] {"stage_name":"metric_collector","events_processed":8349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1669.8,"last_update":"2026-03-21T20:24:58.870299192Z"} +2026/03/21 20:25:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3342,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:24:58.879492902Z"} +2026/03/21 20:25:03 [transform_engine] {"stage_name":"transform_engine","events_processed":278,"events_dropped":0,"avg_latency_ms":425.71549576877453,"throughput_eps":0,"last_update":"2026-03-21T20:24:58.965665233Z"} +2026/03/21 20:25:03 [detection_layer] {"stage_name":"detection_layer","events_processed":278,"events_dropped":0,"avg_latency_ms":17.46733282978386,"throughput_eps":0,"last_update":"2026-03-21T20:24:58.965652428Z"} +2026/03/21 20:25:03 ───────────────────────────────────────────────── +2026/03/21 20:25:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:25:08 [detection_layer] {"stage_name":"detection_layer","events_processed":278,"events_dropped":0,"avg_latency_ms":17.46733282978386,"throughput_eps":0,"last_update":"2026-03-21T20:25:03.965525988Z"} +2026/03/21 20:25:08 [log_collector] {"stage_name":"log_collector","events_processed":13917,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2783.4,"last_update":"2026-03-21T20:25:03.869875132Z"} +2026/03/21 20:25:08 [metric_collector] {"stage_name":"metric_collector","events_processed":8354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1670.8,"last_update":"2026-03-21T20:25:03.869686421Z"} +2026/03/21 20:25:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:25:03.878310519Z"} +2026/03/21 20:25:08 [transform_engine] {"stage_name":"transform_engine","events_processed":278,"events_dropped":0,"avg_latency_ms":425.71549576877453,"throughput_eps":0,"last_update":"2026-03-21T20:25:03.965533432Z"} +2026/03/21 20:25:08 ───────────────────────────────────────────────── +2026/03/21 20:25:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:25:13 [detection_layer] {"stage_name":"detection_layer","events_processed":278,"events_dropped":0,"avg_latency_ms":17.46733282978386,"throughput_eps":0,"last_update":"2026-03-21T20:25:08.965641842Z"} +2026/03/21 20:25:13 [log_collector] {"stage_name":"log_collector","events_processed":13931,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2786.2,"last_update":"2026-03-21T20:25:08.869505126Z"} +2026/03/21 20:25:13 [metric_collector] {"stage_name":"metric_collector","events_processed":8359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1671.8,"last_update":"2026-03-21T20:25:08.870060319Z"} +2026/03/21 20:25:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:25:08.878391186Z"} +2026/03/21 20:25:13 [transform_engine] {"stage_name":"transform_engine","events_processed":278,"events_dropped":0,"avg_latency_ms":425.71549576877453,"throughput_eps":0,"last_update":"2026-03-21T20:25:08.965653955Z"} +2026/03/21 20:25:13 ───────────────────────────────────────────────── +2026/03/21 20:25:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:25:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:25:13.880394996Z"} +2026/03/21 20:25:18 [transform_engine] {"stage_name":"transform_engine","events_processed":278,"events_dropped":0,"avg_latency_ms":425.71549576877453,"throughput_eps":0,"last_update":"2026-03-21T20:25:13.965659829Z"} +2026/03/21 20:25:18 [detection_layer] {"stage_name":"detection_layer","events_processed":278,"events_dropped":0,"avg_latency_ms":17.46733282978386,"throughput_eps":0,"last_update":"2026-03-21T20:25:13.965646244Z"} +2026/03/21 20:25:18 [log_collector] {"stage_name":"log_collector","events_processed":13936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2787.2,"last_update":"2026-03-21T20:25:13.869822797Z"} +2026/03/21 20:25:18 [metric_collector] {"stage_name":"metric_collector","events_processed":8364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1672.8,"last_update":"2026-03-21T20:25:13.870198116Z"} +2026/03/21 20:25:18 ───────────────────────────────────────────────── +2026/03/21 20:25:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:25:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3350,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:25:18.878652423Z"} +2026/03/21 20:25:23 [transform_engine] {"stage_name":"transform_engine","events_processed":279,"events_dropped":0,"avg_latency_ms":364.1709722150197,"throughput_eps":0,"last_update":"2026-03-21T20:25:19.083836644Z"} +2026/03/21 20:25:23 [detection_layer] {"stage_name":"detection_layer","events_processed":278,"events_dropped":0,"avg_latency_ms":17.46733282978386,"throughput_eps":0,"last_update":"2026-03-21T20:25:18.965833345Z"} +2026/03/21 20:25:23 [log_collector] {"stage_name":"log_collector","events_processed":13947,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2789.4,"last_update":"2026-03-21T20:25:18.869406713Z"} +2026/03/21 20:25:23 [metric_collector] {"stage_name":"metric_collector","events_processed":8369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1673.8,"last_update":"2026-03-21T20:25:18.869883897Z"} +2026/03/21 20:25:23 ───────────────────────────────────────────────── +2026/03/21 20:25:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:25:28 [log_collector] {"stage_name":"log_collector","events_processed":13947,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2789.4,"last_update":"2026-03-21T20:25:23.869659812Z"} +2026/03/21 20:25:28 [metric_collector] {"stage_name":"metric_collector","events_processed":8374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1674.8,"last_update":"2026-03-21T20:25:23.870169618Z"} +2026/03/21 20:25:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:25:23.879311538Z"} +2026/03/21 20:25:28 [transform_engine] {"stage_name":"transform_engine","events_processed":279,"events_dropped":0,"avg_latency_ms":364.1709722150197,"throughput_eps":0,"last_update":"2026-03-21T20:25:23.965549144Z"} +2026/03/21 20:25:28 [detection_layer] {"stage_name":"detection_layer","events_processed":279,"events_dropped":0,"avg_latency_ms":17.510734463827088,"throughput_eps":0,"last_update":"2026-03-21T20:25:23.965508887Z"} +2026/03/21 20:25:28 ───────────────────────────────────────────────── +2026/03/21 20:25:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:25:33 [log_collector] {"stage_name":"log_collector","events_processed":13947,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2789.4,"last_update":"2026-03-21T20:25:28.869412893Z"} +2026/03/21 20:25:33 [metric_collector] {"stage_name":"metric_collector","events_processed":8379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1675.8,"last_update":"2026-03-21T20:25:28.869936366Z"} +2026/03/21 20:25:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:25:28.87899661Z"} +2026/03/21 20:25:33 [transform_engine] {"stage_name":"transform_engine","events_processed":279,"events_dropped":0,"avg_latency_ms":364.1709722150197,"throughput_eps":0,"last_update":"2026-03-21T20:25:28.965108955Z"} +2026/03/21 20:25:33 [detection_layer] {"stage_name":"detection_layer","events_processed":279,"events_dropped":0,"avg_latency_ms":17.510734463827088,"throughput_eps":0,"last_update":"2026-03-21T20:25:28.966295889Z"} +2026/03/21 20:25:33 ───────────────────────────────────────────────── +2026/03/21 20:25:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:25:38 [metric_collector] {"stage_name":"metric_collector","events_processed":8383,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1676.6,"last_update":"2026-03-21T20:25:33.869895592Z"} +2026/03/21 20:25:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:25:33.878907062Z"} +2026/03/21 20:25:38 [transform_engine] {"stage_name":"transform_engine","events_processed":279,"events_dropped":0,"avg_latency_ms":364.1709722150197,"throughput_eps":0,"last_update":"2026-03-21T20:25:33.966062566Z"} +2026/03/21 20:25:38 [detection_layer] {"stage_name":"detection_layer","events_processed":279,"events_dropped":0,"avg_latency_ms":17.510734463827088,"throughput_eps":0,"last_update":"2026-03-21T20:25:33.966100098Z"} +2026/03/21 20:25:38 [log_collector] {"stage_name":"log_collector","events_processed":13947,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2789.4,"last_update":"2026-03-21T20:25:33.869809868Z"} +2026/03/21 20:25:38 ───────────────────────────────────────────────── +2026/03/21 20:25:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:25:43 [log_collector] {"stage_name":"log_collector","events_processed":13947,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2789.4,"last_update":"2026-03-21T20:25:38.869958988Z"} +2026/03/21 20:25:43 [metric_collector] {"stage_name":"metric_collector","events_processed":8389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1677.8,"last_update":"2026-03-21T20:25:38.870326031Z"} +2026/03/21 20:25:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:25:38.878337436Z"} +2026/03/21 20:25:43 [transform_engine] {"stage_name":"transform_engine","events_processed":279,"events_dropped":0,"avg_latency_ms":364.1709722150197,"throughput_eps":0,"last_update":"2026-03-21T20:25:38.965570177Z"} +2026/03/21 20:25:43 [detection_layer] {"stage_name":"detection_layer","events_processed":279,"events_dropped":0,"avg_latency_ms":17.510734463827088,"throughput_eps":0,"last_update":"2026-03-21T20:25:38.965640502Z"} +2026/03/21 20:25:43 ───────────────────────────────────────────────── +2026/03/21 20:25:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:25:48 [detection_layer] {"stage_name":"detection_layer","events_processed":279,"events_dropped":0,"avg_latency_ms":17.510734463827088,"throughput_eps":0,"last_update":"2026-03-21T20:25:43.965850139Z"} +2026/03/21 20:25:48 [log_collector] {"stage_name":"log_collector","events_processed":13947,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2789.4,"last_update":"2026-03-21T20:25:43.869964934Z"} +2026/03/21 20:25:48 [metric_collector] {"stage_name":"metric_collector","events_processed":8394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1678.8,"last_update":"2026-03-21T20:25:43.870020291Z"} +2026/03/21 20:25:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3360,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:25:43.87861914Z"} +2026/03/21 20:25:48 [transform_engine] {"stage_name":"transform_engine","events_processed":279,"events_dropped":0,"avg_latency_ms":364.1709722150197,"throughput_eps":0,"last_update":"2026-03-21T20:25:43.965955421Z"} +2026/03/21 20:25:48 ───────────────────────────────────────────────── +2026/03/21 20:25:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:25:53 [log_collector] {"stage_name":"log_collector","events_processed":13947,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2789.4,"last_update":"2026-03-21T20:25:48.870488622Z"} +2026/03/21 20:25:53 [metric_collector] {"stage_name":"metric_collector","events_processed":8399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1679.8,"last_update":"2026-03-21T20:25:48.870688275Z"} +2026/03/21 20:25:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:25:48.879904668Z"} +2026/03/21 20:25:53 [transform_engine] {"stage_name":"transform_engine","events_processed":280,"events_dropped":0,"avg_latency_ms":306.4985901720157,"throughput_eps":0,"last_update":"2026-03-21T20:25:49.040896405Z"} +2026/03/21 20:25:53 [detection_layer] {"stage_name":"detection_layer","events_processed":279,"events_dropped":0,"avg_latency_ms":17.510734463827088,"throughput_eps":0,"last_update":"2026-03-21T20:25:48.966259559Z"} +2026/03/21 20:25:53 ───────────────────────────────────────────────── +2026/03/21 20:25:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:25:58 [log_collector] {"stage_name":"log_collector","events_processed":13947,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2789.4,"last_update":"2026-03-21T20:25:53.869420874Z"} +2026/03/21 20:25:58 [metric_collector] {"stage_name":"metric_collector","events_processed":8404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1680.8,"last_update":"2026-03-21T20:25:53.869785353Z"} +2026/03/21 20:25:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:25:53.878730105Z"} +2026/03/21 20:25:58 [transform_engine] {"stage_name":"transform_engine","events_processed":280,"events_dropped":0,"avg_latency_ms":306.4985901720157,"throughput_eps":0,"last_update":"2026-03-21T20:25:53.966109778Z"} +2026/03/21 20:25:58 [detection_layer] {"stage_name":"detection_layer","events_processed":280,"events_dropped":0,"avg_latency_ms":18.05414817106167,"throughput_eps":0,"last_update":"2026-03-21T20:25:53.966143984Z"} +2026/03/21 20:25:58 ───────────────────────────────────────────────── +2026/03/21 20:26:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:26:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:25:58.87818639Z"} +2026/03/21 20:26:03 [transform_engine] {"stage_name":"transform_engine","events_processed":280,"events_dropped":0,"avg_latency_ms":306.4985901720157,"throughput_eps":0,"last_update":"2026-03-21T20:25:58.965290174Z"} +2026/03/21 20:26:03 [detection_layer] {"stage_name":"detection_layer","events_processed":280,"events_dropped":0,"avg_latency_ms":18.05414817106167,"throughput_eps":0,"last_update":"2026-03-21T20:25:58.965396528Z"} +2026/03/21 20:26:03 [log_collector] {"stage_name":"log_collector","events_processed":13947,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2789.4,"last_update":"2026-03-21T20:25:58.869564345Z"} +2026/03/21 20:26:03 [metric_collector] {"stage_name":"metric_collector","events_processed":8409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1681.8,"last_update":"2026-03-21T20:25:58.870082157Z"} +2026/03/21 20:26:03 ───────────────────────────────────────────────── +2026/03/21 20:26:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:26:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:26:03.87808416Z"} +2026/03/21 20:26:08 [transform_engine] {"stage_name":"transform_engine","events_processed":280,"events_dropped":0,"avg_latency_ms":306.4985901720157,"throughput_eps":0,"last_update":"2026-03-21T20:26:03.965400542Z"} +2026/03/21 20:26:08 [detection_layer] {"stage_name":"detection_layer","events_processed":280,"events_dropped":0,"avg_latency_ms":18.05414817106167,"throughput_eps":0,"last_update":"2026-03-21T20:26:03.965271034Z"} +2026/03/21 20:26:08 [log_collector] {"stage_name":"log_collector","events_processed":13947,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2789.4,"last_update":"2026-03-21T20:26:03.869439503Z"} +2026/03/21 20:26:08 [metric_collector] {"stage_name":"metric_collector","events_processed":8414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1682.8,"last_update":"2026-03-21T20:26:03.869974978Z"} +2026/03/21 20:26:08 ───────────────────────────────────────────────── +2026/03/21 20:26:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:26:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:26:08.878275383Z"} +2026/03/21 20:26:13 [transform_engine] {"stage_name":"transform_engine","events_processed":280,"events_dropped":0,"avg_latency_ms":306.4985901720157,"throughput_eps":0,"last_update":"2026-03-21T20:26:08.965696375Z"} +2026/03/21 20:26:13 [detection_layer] {"stage_name":"detection_layer","events_processed":280,"events_dropped":0,"avg_latency_ms":18.05414817106167,"throughput_eps":0,"last_update":"2026-03-21T20:26:08.965600331Z"} +2026/03/21 20:26:13 [log_collector] {"stage_name":"log_collector","events_processed":13947,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2789.4,"last_update":"2026-03-21T20:26:08.869581441Z"} +2026/03/21 20:26:13 [metric_collector] {"stage_name":"metric_collector","events_processed":8419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1683.8,"last_update":"2026-03-21T20:26:08.870264108Z"} +2026/03/21 20:26:13 ───────────────────────────────────────────────── +2026/03/21 20:26:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:26:18 [log_collector] {"stage_name":"log_collector","events_processed":13947,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2789.4,"last_update":"2026-03-21T20:26:13.869433977Z"} +2026/03/21 20:26:18 [metric_collector] {"stage_name":"metric_collector","events_processed":8424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1684.8,"last_update":"2026-03-21T20:26:13.869840255Z"} +2026/03/21 20:26:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:26:13.878176101Z"} +2026/03/21 20:26:18 [transform_engine] {"stage_name":"transform_engine","events_processed":280,"events_dropped":0,"avg_latency_ms":306.4985901720157,"throughput_eps":0,"last_update":"2026-03-21T20:26:13.965365098Z"} +2026/03/21 20:26:18 [detection_layer] {"stage_name":"detection_layer","events_processed":280,"events_dropped":0,"avg_latency_ms":18.05414817106167,"throughput_eps":0,"last_update":"2026-03-21T20:26:13.965460992Z"} +2026/03/21 20:26:18 ───────────────────────────────────────────────── +Saved state: 12 clusters, 13948 messages, reason: none +2026/03/21 20:26:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:26:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:26:18.878390649Z"} +2026/03/21 20:26:23 [transform_engine] {"stage_name":"transform_engine","events_processed":281,"events_dropped":0,"avg_latency_ms":259.1355077376126,"throughput_eps":0,"last_update":"2026-03-21T20:26:19.035438482Z"} +2026/03/21 20:26:23 [detection_layer] {"stage_name":"detection_layer","events_processed":280,"events_dropped":0,"avg_latency_ms":18.05414817106167,"throughput_eps":0,"last_update":"2026-03-21T20:26:18.965794369Z"} +2026/03/21 20:26:23 [log_collector] {"stage_name":"log_collector","events_processed":13952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2790.4,"last_update":"2026-03-21T20:26:23.869447167Z"} +2026/03/21 20:26:23 [metric_collector] {"stage_name":"metric_collector","events_processed":8429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1685.8,"last_update":"2026-03-21T20:26:18.870339909Z"} +2026/03/21 20:26:23 ───────────────────────────────────────────────── +2026/03/21 20:26:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:26:28 [transform_engine] {"stage_name":"transform_engine","events_processed":281,"events_dropped":0,"avg_latency_ms":259.1355077376126,"throughput_eps":0,"last_update":"2026-03-21T20:26:23.966045929Z"} +2026/03/21 20:26:28 [detection_layer] {"stage_name":"detection_layer","events_processed":281,"events_dropped":0,"avg_latency_ms":18.387839736849337,"throughput_eps":0,"last_update":"2026-03-21T20:26:23.966039075Z"} +2026/03/21 20:26:28 [log_collector] {"stage_name":"log_collector","events_processed":13952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2790.4,"last_update":"2026-03-21T20:26:23.869447167Z"} +2026/03/21 20:26:28 [metric_collector] {"stage_name":"metric_collector","events_processed":8434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1686.8,"last_update":"2026-03-21T20:26:23.870639952Z"} +2026/03/21 20:26:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:26:23.883860985Z"} +2026/03/21 20:26:28 ───────────────────────────────────────────────── +2026/03/21 20:26:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:26:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:26:28.877787861Z"} +2026/03/21 20:26:33 [transform_engine] {"stage_name":"transform_engine","events_processed":281,"events_dropped":0,"avg_latency_ms":259.1355077376126,"throughput_eps":0,"last_update":"2026-03-21T20:26:28.965972236Z"} +2026/03/21 20:26:33 [detection_layer] {"stage_name":"detection_layer","events_processed":281,"events_dropped":0,"avg_latency_ms":18.387839736849337,"throughput_eps":0,"last_update":"2026-03-21T20:26:28.965959782Z"} +2026/03/21 20:26:33 [log_collector] {"stage_name":"log_collector","events_processed":13952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2790.4,"last_update":"2026-03-21T20:26:28.869628924Z"} +2026/03/21 20:26:33 [metric_collector] {"stage_name":"metric_collector","events_processed":8439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1687.8,"last_update":"2026-03-21T20:26:28.869998521Z"} +2026/03/21 20:26:33 ───────────────────────────────────────────────── +2026/03/21 20:26:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:26:38 [metric_collector] {"stage_name":"metric_collector","events_processed":8443,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1688.6,"last_update":"2026-03-21T20:26:33.870367227Z"} +2026/03/21 20:26:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3380,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:26:33.877444702Z"} +2026/03/21 20:26:38 [transform_engine] {"stage_name":"transform_engine","events_processed":281,"events_dropped":0,"avg_latency_ms":259.1355077376126,"throughput_eps":0,"last_update":"2026-03-21T20:26:33.965673863Z"} +2026/03/21 20:26:38 [detection_layer] {"stage_name":"detection_layer","events_processed":281,"events_dropped":0,"avg_latency_ms":18.387839736849337,"throughput_eps":0,"last_update":"2026-03-21T20:26:33.965662301Z"} +2026/03/21 20:26:38 [log_collector] {"stage_name":"log_collector","events_processed":13952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2790.4,"last_update":"2026-03-21T20:26:33.870342239Z"} +2026/03/21 20:26:38 ───────────────────────────────────────────────── +2026/03/21 20:26:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:26:43 [detection_layer] {"stage_name":"detection_layer","events_processed":281,"events_dropped":0,"avg_latency_ms":18.387839736849337,"throughput_eps":0,"last_update":"2026-03-21T20:26:38.965931406Z"} +2026/03/21 20:26:43 [log_collector] {"stage_name":"log_collector","events_processed":13952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2790.4,"last_update":"2026-03-21T20:26:43.869413267Z"} +2026/03/21 20:26:43 [metric_collector] {"stage_name":"metric_collector","events_processed":8449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1689.8,"last_update":"2026-03-21T20:26:38.869591349Z"} +2026/03/21 20:26:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:26:38.875739495Z"} +2026/03/21 20:26:43 [transform_engine] {"stage_name":"transform_engine","events_processed":281,"events_dropped":0,"avg_latency_ms":259.1355077376126,"throughput_eps":0,"last_update":"2026-03-21T20:26:38.965943208Z"} +2026/03/21 20:26:43 ───────────────────────────────────────────────── +2026/03/21 20:26:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:26:48 [log_collector] {"stage_name":"log_collector","events_processed":13952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2790.4,"last_update":"2026-03-21T20:26:43.869413267Z"} +2026/03/21 20:26:48 [metric_collector] {"stage_name":"metric_collector","events_processed":8454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1690.8,"last_update":"2026-03-21T20:26:43.869743941Z"} +2026/03/21 20:26:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:26:43.876305038Z"} +2026/03/21 20:26:48 [transform_engine] {"stage_name":"transform_engine","events_processed":281,"events_dropped":0,"avg_latency_ms":259.1355077376126,"throughput_eps":0,"last_update":"2026-03-21T20:26:43.965525197Z"} +2026/03/21 20:26:48 [detection_layer] {"stage_name":"detection_layer","events_processed":281,"events_dropped":0,"avg_latency_ms":18.387839736849337,"throughput_eps":0,"last_update":"2026-03-21T20:26:43.965514797Z"} +2026/03/21 20:26:48 ───────────────────────────────────────────────── +2026/03/21 20:26:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:26:53 [log_collector] {"stage_name":"log_collector","events_processed":13952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2790.4,"last_update":"2026-03-21T20:26:48.869607109Z"} +2026/03/21 20:26:53 [metric_collector] {"stage_name":"metric_collector","events_processed":8459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1691.8,"last_update":"2026-03-21T20:26:48.869611788Z"} +2026/03/21 20:26:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:26:48.876032566Z"} +2026/03/21 20:26:53 [transform_engine] {"stage_name":"transform_engine","events_processed":282,"events_dropped":0,"avg_latency_ms":498.54533799009016,"throughput_eps":0,"last_update":"2026-03-21T20:26:50.421370084Z"} +2026/03/21 20:26:53 [detection_layer] {"stage_name":"detection_layer","events_processed":281,"events_dropped":0,"avg_latency_ms":18.387839736849337,"throughput_eps":0,"last_update":"2026-03-21T20:26:48.966247229Z"} +2026/03/21 20:26:53 ───────────────────────────────────────────────── +2026/03/21 20:26:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:26:58 [log_collector] {"stage_name":"log_collector","events_processed":13952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2790.4,"last_update":"2026-03-21T20:26:53.870300116Z"} +2026/03/21 20:26:58 [metric_collector] {"stage_name":"metric_collector","events_processed":8464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1692.8,"last_update":"2026-03-21T20:26:53.870513615Z"} +2026/03/21 20:26:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3388,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:26:53.876987114Z"} +2026/03/21 20:26:58 [transform_engine] {"stage_name":"transform_engine","events_processed":282,"events_dropped":0,"avg_latency_ms":498.54533799009016,"throughput_eps":0,"last_update":"2026-03-21T20:26:53.965111845Z"} +2026/03/21 20:26:58 [detection_layer] {"stage_name":"detection_layer","events_processed":282,"events_dropped":0,"avg_latency_ms":18.079182589479473,"throughput_eps":0,"last_update":"2026-03-21T20:26:53.966260526Z"} +2026/03/21 20:26:58 ───────────────────────────────────────────────── +2026/03/21 20:27:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:27:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3390,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:26:58.876932902Z"} +2026/03/21 20:27:03 [transform_engine] {"stage_name":"transform_engine","events_processed":282,"events_dropped":0,"avg_latency_ms":498.54533799009016,"throughput_eps":0,"last_update":"2026-03-21T20:26:58.966154142Z"} +2026/03/21 20:27:03 [detection_layer] {"stage_name":"detection_layer","events_processed":282,"events_dropped":0,"avg_latency_ms":18.079182589479473,"throughput_eps":0,"last_update":"2026-03-21T20:26:58.9661376Z"} +2026/03/21 20:27:03 [log_collector] {"stage_name":"log_collector","events_processed":13961,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2792.2,"last_update":"2026-03-21T20:27:03.870297372Z"} +2026/03/21 20:27:03 [metric_collector] {"stage_name":"metric_collector","events_processed":8468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1693.6,"last_update":"2026-03-21T20:26:58.869395585Z"} +2026/03/21 20:27:03 ───────────────────────────────────────────────── +2026/03/21 20:27:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:27:08 [transform_engine] {"stage_name":"transform_engine","events_processed":282,"events_dropped":0,"avg_latency_ms":498.54533799009016,"throughput_eps":0,"last_update":"2026-03-21T20:27:03.965782371Z"} +2026/03/21 20:27:08 [detection_layer] {"stage_name":"detection_layer","events_processed":282,"events_dropped":0,"avg_latency_ms":18.079182589479473,"throughput_eps":0,"last_update":"2026-03-21T20:27:03.965770318Z"} +2026/03/21 20:27:08 [log_collector] {"stage_name":"log_collector","events_processed":13961,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2792.2,"last_update":"2026-03-21T20:27:03.870297372Z"} +2026/03/21 20:27:08 [metric_collector] {"stage_name":"metric_collector","events_processed":8474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1694.8,"last_update":"2026-03-21T20:27:03.870715143Z"} +2026/03/21 20:27:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:27:03.876557623Z"} +2026/03/21 20:27:08 ───────────────────────────────────────────────── +2026/03/21 20:27:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:27:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:27:08.878697734Z"} +2026/03/21 20:27:13 [transform_engine] {"stage_name":"transform_engine","events_processed":282,"events_dropped":0,"avg_latency_ms":498.54533799009016,"throughput_eps":0,"last_update":"2026-03-21T20:27:08.965957537Z"} +2026/03/21 20:27:13 [detection_layer] {"stage_name":"detection_layer","events_processed":282,"events_dropped":0,"avg_latency_ms":18.079182589479473,"throughput_eps":0,"last_update":"2026-03-21T20:27:08.965946416Z"} +2026/03/21 20:27:13 [log_collector] {"stage_name":"log_collector","events_processed":13963,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2792.6,"last_update":"2026-03-21T20:27:08.869751078Z"} +2026/03/21 20:27:13 [metric_collector] {"stage_name":"metric_collector","events_processed":8479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1695.8,"last_update":"2026-03-21T20:27:08.870038318Z"} +2026/03/21 20:27:13 ───────────────────────────────────────────────── +2026/03/21 20:27:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:27:18 [log_collector] {"stage_name":"log_collector","events_processed":14145,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2829,"last_update":"2026-03-21T20:27:13.869562999Z"} +2026/03/21 20:27:18 [metric_collector] {"stage_name":"metric_collector","events_processed":8484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1696.8,"last_update":"2026-03-21T20:27:13.869962484Z"} +2026/03/21 20:27:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:27:13.879157035Z"} +2026/03/21 20:27:18 [transform_engine] {"stage_name":"transform_engine","events_processed":282,"events_dropped":0,"avg_latency_ms":498.54533799009016,"throughput_eps":0,"last_update":"2026-03-21T20:27:13.965363972Z"} +2026/03/21 20:27:18 [detection_layer] {"stage_name":"detection_layer","events_processed":282,"events_dropped":0,"avg_latency_ms":18.079182589479473,"throughput_eps":0,"last_update":"2026-03-21T20:27:13.965453624Z"} +2026/03/21 20:27:18 ───────────────────────────────────────────────── +2026/03/21 20:27:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:27:23 [log_collector] {"stage_name":"log_collector","events_processed":14314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2862.8,"last_update":"2026-03-21T20:27:18.870407799Z"} +2026/03/21 20:27:23 [metric_collector] {"stage_name":"metric_collector","events_processed":8488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1697.6,"last_update":"2026-03-21T20:27:18.870304411Z"} +2026/03/21 20:27:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:27:18.879579666Z"} +2026/03/21 20:27:23 [transform_engine] {"stage_name":"transform_engine","events_processed":283,"events_dropped":0,"avg_latency_ms":421.7714595920722,"throughput_eps":0,"last_update":"2026-03-21T20:27:19.080561749Z"} +2026/03/21 20:27:23 [detection_layer] {"stage_name":"detection_layer","events_processed":282,"events_dropped":0,"avg_latency_ms":18.079182589479473,"throughput_eps":0,"last_update":"2026-03-21T20:27:18.965799518Z"} +2026/03/21 20:27:23 ───────────────────────────────────────────────── +2026/03/21 20:27:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:27:28 [log_collector] {"stage_name":"log_collector","events_processed":14314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2862.8,"last_update":"2026-03-21T20:27:23.869872827Z"} +2026/03/21 20:27:28 [metric_collector] {"stage_name":"metric_collector","events_processed":8493,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1698.6,"last_update":"2026-03-21T20:27:23.869788244Z"} +2026/03/21 20:27:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3400,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:27:23.879020788Z"} +2026/03/21 20:27:28 [transform_engine] {"stage_name":"transform_engine","events_processed":283,"events_dropped":0,"avg_latency_ms":421.7714595920722,"throughput_eps":0,"last_update":"2026-03-21T20:27:23.965155137Z"} +2026/03/21 20:27:28 [detection_layer] {"stage_name":"detection_layer","events_processed":283,"events_dropped":0,"avg_latency_ms":18.00671487158358,"throughput_eps":0,"last_update":"2026-03-21T20:27:23.965322958Z"} +2026/03/21 20:27:28 ───────────────────────────────────────────────── +Saved state: 12 clusters, 14315 messages, reason: none +2026/03/21 20:27:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:27:33 [log_collector] {"stage_name":"log_collector","events_processed":14314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2862.8,"last_update":"2026-03-21T20:27:28.869734865Z"} +2026/03/21 20:27:33 [metric_collector] {"stage_name":"metric_collector","events_processed":8499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1699.8,"last_update":"2026-03-21T20:27:28.87087575Z"} +2026/03/21 20:27:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3402,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:27:28.879682618Z"} +2026/03/21 20:27:33 [transform_engine] {"stage_name":"transform_engine","events_processed":283,"events_dropped":0,"avg_latency_ms":421.7714595920722,"throughput_eps":0,"last_update":"2026-03-21T20:27:28.965941304Z"} +2026/03/21 20:27:33 [detection_layer] {"stage_name":"detection_layer","events_processed":283,"events_dropped":0,"avg_latency_ms":18.00671487158358,"throughput_eps":0,"last_update":"2026-03-21T20:27:28.965986241Z"} +2026/03/21 20:27:33 ───────────────────────────────────────────────── +2026/03/21 20:27:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:27:38 [log_collector] {"stage_name":"log_collector","events_processed":14317,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2863.4,"last_update":"2026-03-21T20:27:33.869570863Z"} +2026/03/21 20:27:38 [metric_collector] {"stage_name":"metric_collector","events_processed":8504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1700.8,"last_update":"2026-03-21T20:27:33.869826373Z"} +2026/03/21 20:27:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:27:33.875635891Z"} +2026/03/21 20:27:38 [transform_engine] {"stage_name":"transform_engine","events_processed":283,"events_dropped":0,"avg_latency_ms":421.7714595920722,"throughput_eps":0,"last_update":"2026-03-21T20:27:33.965951537Z"} +2026/03/21 20:27:38 [detection_layer] {"stage_name":"detection_layer","events_processed":283,"events_dropped":0,"avg_latency_ms":18.00671487158358,"throughput_eps":0,"last_update":"2026-03-21T20:27:33.965922261Z"} +2026/03/21 20:27:38 ───────────────────────────────────────────────── +2026/03/21 20:27:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:27:43 [log_collector] {"stage_name":"log_collector","events_processed":14317,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2863.4,"last_update":"2026-03-21T20:27:38.869790306Z"} +2026/03/21 20:27:43 [metric_collector] {"stage_name":"metric_collector","events_processed":8509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1701.8,"last_update":"2026-03-21T20:27:38.869778103Z"} +2026/03/21 20:27:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:27:38.875041494Z"} +2026/03/21 20:27:43 [transform_engine] {"stage_name":"transform_engine","events_processed":283,"events_dropped":0,"avg_latency_ms":421.7714595920722,"throughput_eps":0,"last_update":"2026-03-21T20:27:38.965165213Z"} +2026/03/21 20:27:43 [detection_layer] {"stage_name":"detection_layer","events_processed":283,"events_dropped":0,"avg_latency_ms":18.00671487158358,"throughput_eps":0,"last_update":"2026-03-21T20:27:38.96629137Z"} +2026/03/21 20:27:43 ───────────────────────────────────────────────── +2026/03/21 20:27:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:27:48 [detection_layer] {"stage_name":"detection_layer","events_processed":283,"events_dropped":0,"avg_latency_ms":18.00671487158358,"throughput_eps":0,"last_update":"2026-03-21T20:27:43.965538092Z"} +2026/03/21 20:27:48 [log_collector] {"stage_name":"log_collector","events_processed":14327,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2865.4,"last_update":"2026-03-21T20:27:43.870311439Z"} +2026/03/21 20:27:48 [metric_collector] {"stage_name":"metric_collector","events_processed":8514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1702.8,"last_update":"2026-03-21T20:27:43.870769145Z"} +2026/03/21 20:27:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3408,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:27:43.879218208Z"} +2026/03/21 20:27:48 [transform_engine] {"stage_name":"transform_engine","events_processed":283,"events_dropped":0,"avg_latency_ms":421.7714595920722,"throughput_eps":0,"last_update":"2026-03-21T20:27:43.965558341Z"} +2026/03/21 20:27:48 ───────────────────────────────────────────────── +2026/03/21 20:27:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:27:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:27:48.879591857Z"} +2026/03/21 20:27:53 [transform_engine] {"stage_name":"transform_engine","events_processed":284,"events_dropped":0,"avg_latency_ms":361.5175186736578,"throughput_eps":0,"last_update":"2026-03-21T20:27:49.086380712Z"} +2026/03/21 20:27:53 [detection_layer] {"stage_name":"detection_layer","events_processed":283,"events_dropped":0,"avg_latency_ms":18.00671487158358,"throughput_eps":0,"last_update":"2026-03-21T20:27:48.965862767Z"} +2026/03/21 20:27:53 [log_collector] {"stage_name":"log_collector","events_processed":14335,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2867,"last_update":"2026-03-21T20:27:48.869932145Z"} +2026/03/21 20:27:53 [metric_collector] {"stage_name":"metric_collector","events_processed":8519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1703.8,"last_update":"2026-03-21T20:27:48.870173958Z"} +2026/03/21 20:27:53 ───────────────────────────────────────────────── +2026/03/21 20:27:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:27:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:27:53.878063905Z"} +2026/03/21 20:27:58 [transform_engine] {"stage_name":"transform_engine","events_processed":284,"events_dropped":0,"avg_latency_ms":361.5175186736578,"throughput_eps":0,"last_update":"2026-03-21T20:27:53.965405947Z"} +2026/03/21 20:27:58 [detection_layer] {"stage_name":"detection_layer","events_processed":284,"events_dropped":0,"avg_latency_ms":16.989623697266865,"throughput_eps":0,"last_update":"2026-03-21T20:27:53.965392741Z"} +2026/03/21 20:27:58 [log_collector] {"stage_name":"log_collector","events_processed":14344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2868.8,"last_update":"2026-03-21T20:27:53.86985407Z"} +2026/03/21 20:27:58 [metric_collector] {"stage_name":"metric_collector","events_processed":8524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1704.8,"last_update":"2026-03-21T20:27:53.870102186Z"} +2026/03/21 20:27:58 ───────────────────────────────────────────────── +2026/03/21 20:28:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:28:03 [log_collector] {"stage_name":"log_collector","events_processed":14344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2868.8,"last_update":"2026-03-21T20:27:58.869999663Z"} +2026/03/21 20:28:03 [metric_collector] {"stage_name":"metric_collector","events_processed":8529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1705.8,"last_update":"2026-03-21T20:27:58.870219554Z"} +2026/03/21 20:28:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:27:58.878541925Z"} +2026/03/21 20:28:03 [transform_engine] {"stage_name":"transform_engine","events_processed":284,"events_dropped":0,"avg_latency_ms":361.5175186736578,"throughput_eps":0,"last_update":"2026-03-21T20:27:58.965512865Z"} +2026/03/21 20:28:03 [detection_layer] {"stage_name":"detection_layer","events_processed":284,"events_dropped":0,"avg_latency_ms":16.989623697266865,"throughput_eps":0,"last_update":"2026-03-21T20:27:58.965409037Z"} +2026/03/21 20:28:03 ───────────────────────────────────────────────── +2026/03/21 20:28:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:28:08 [log_collector] {"stage_name":"log_collector","events_processed":14344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2868.8,"last_update":"2026-03-21T20:28:03.869872415Z"} +2026/03/21 20:28:08 [metric_collector] {"stage_name":"metric_collector","events_processed":8534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1706.8,"last_update":"2026-03-21T20:28:03.870568078Z"} +2026/03/21 20:28:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:28:03.87958043Z"} +2026/03/21 20:28:08 [transform_engine] {"stage_name":"transform_engine","events_processed":284,"events_dropped":0,"avg_latency_ms":361.5175186736578,"throughput_eps":0,"last_update":"2026-03-21T20:28:03.965921674Z"} +2026/03/21 20:28:08 [detection_layer] {"stage_name":"detection_layer","events_processed":284,"events_dropped":0,"avg_latency_ms":16.989623697266865,"throughput_eps":0,"last_update":"2026-03-21T20:28:03.965906906Z"} +2026/03/21 20:28:08 ───────────────────────────────────────────────── +2026/03/21 20:28:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:28:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:28:08.8790147Z"} +2026/03/21 20:28:13 [transform_engine] {"stage_name":"transform_engine","events_processed":284,"events_dropped":0,"avg_latency_ms":361.5175186736578,"throughput_eps":0,"last_update":"2026-03-21T20:28:08.965144029Z"} +2026/03/21 20:28:13 [detection_layer] {"stage_name":"detection_layer","events_processed":284,"events_dropped":0,"avg_latency_ms":16.989623697266865,"throughput_eps":0,"last_update":"2026-03-21T20:28:08.966323989Z"} +2026/03/21 20:28:13 [log_collector] {"stage_name":"log_collector","events_processed":14344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2868.8,"last_update":"2026-03-21T20:28:08.869519914Z"} +2026/03/21 20:28:13 [metric_collector] {"stage_name":"metric_collector","events_processed":8539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1707.8,"last_update":"2026-03-21T20:28:08.870000625Z"} +2026/03/21 20:28:13 ───────────────────────────────────────────────── +2026/03/21 20:28:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:28:18 [detection_layer] {"stage_name":"detection_layer","events_processed":284,"events_dropped":0,"avg_latency_ms":16.989623697266865,"throughput_eps":0,"last_update":"2026-03-21T20:28:13.965407168Z"} +2026/03/21 20:28:18 [log_collector] {"stage_name":"log_collector","events_processed":14344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2868.8,"last_update":"2026-03-21T20:28:13.870203929Z"} +2026/03/21 20:28:18 [metric_collector] {"stage_name":"metric_collector","events_processed":8544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1708.8,"last_update":"2026-03-21T20:28:13.870634264Z"} +2026/03/21 20:28:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3420,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:28:13.881116942Z"} +2026/03/21 20:28:18 [transform_engine] {"stage_name":"transform_engine","events_processed":284,"events_dropped":0,"avg_latency_ms":361.5175186736578,"throughput_eps":0,"last_update":"2026-03-21T20:28:13.965420273Z"} +2026/03/21 20:28:18 ───────────────────────────────────────────────── +2026/03/21 20:28:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:28:23 [log_collector] {"stage_name":"log_collector","events_processed":14344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2868.8,"last_update":"2026-03-21T20:28:18.869659922Z"} +2026/03/21 20:28:23 [metric_collector] {"stage_name":"metric_collector","events_processed":8549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1709.8,"last_update":"2026-03-21T20:28:18.870087531Z"} +2026/03/21 20:28:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:28:18.878319428Z"} +2026/03/21 20:28:23 [transform_engine] {"stage_name":"transform_engine","events_processed":285,"events_dropped":0,"avg_latency_ms":312.06047013892623,"throughput_eps":0,"last_update":"2026-03-21T20:28:19.079891882Z"} +2026/03/21 20:28:23 [detection_layer] {"stage_name":"detection_layer","events_processed":284,"events_dropped":0,"avg_latency_ms":16.989623697266865,"throughput_eps":0,"last_update":"2026-03-21T20:28:18.965644528Z"} +2026/03/21 20:28:23 ───────────────────────────────────────────────── +2026/03/21 20:28:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:28:28 [log_collector] {"stage_name":"log_collector","events_processed":14344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2868.8,"last_update":"2026-03-21T20:28:23.869423164Z"} +2026/03/21 20:28:28 [metric_collector] {"stage_name":"metric_collector","events_processed":8554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1710.8,"last_update":"2026-03-21T20:28:23.869847828Z"} +2026/03/21 20:28:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:28:23.879162779Z"} +2026/03/21 20:28:28 [transform_engine] {"stage_name":"transform_engine","events_processed":285,"events_dropped":0,"avg_latency_ms":312.06047013892623,"throughput_eps":0,"last_update":"2026-03-21T20:28:23.965594898Z"} +2026/03/21 20:28:28 [detection_layer] {"stage_name":"detection_layer","events_processed":285,"events_dropped":0,"avg_latency_ms":17.82681075781349,"throughput_eps":0,"last_update":"2026-03-21T20:28:23.965689941Z"} +2026/03/21 20:28:28 ───────────────────────────────────────────────── +2026/03/21 20:28:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:28:33 [log_collector] {"stage_name":"log_collector","events_processed":14344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2868.8,"last_update":"2026-03-21T20:28:28.869665827Z"} +2026/03/21 20:28:33 [metric_collector] {"stage_name":"metric_collector","events_processed":8564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1712.8,"last_update":"2026-03-21T20:28:33.870241154Z"} +2026/03/21 20:28:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:28:28.878079472Z"} +2026/03/21 20:28:33 [transform_engine] {"stage_name":"transform_engine","events_processed":285,"events_dropped":0,"avg_latency_ms":312.06047013892623,"throughput_eps":0,"last_update":"2026-03-21T20:28:28.96527348Z"} +2026/03/21 20:28:33 [detection_layer] {"stage_name":"detection_layer","events_processed":285,"events_dropped":0,"avg_latency_ms":17.82681075781349,"throughput_eps":0,"last_update":"2026-03-21T20:28:28.965308817Z"} +2026/03/21 20:28:33 ───────────────────────────────────────────────── +2026/03/21 20:28:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:28:38 [metric_collector] {"stage_name":"metric_collector","events_processed":8564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1712.8,"last_update":"2026-03-21T20:28:33.870241154Z"} +2026/03/21 20:28:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:28:33.879298132Z"} +2026/03/21 20:28:38 [transform_engine] {"stage_name":"transform_engine","events_processed":285,"events_dropped":0,"avg_latency_ms":312.06047013892623,"throughput_eps":0,"last_update":"2026-03-21T20:28:33.965616743Z"} +2026/03/21 20:28:38 [detection_layer] {"stage_name":"detection_layer","events_processed":285,"events_dropped":0,"avg_latency_ms":17.82681075781349,"throughput_eps":0,"last_update":"2026-03-21T20:28:33.965644275Z"} +2026/03/21 20:28:38 [log_collector] {"stage_name":"log_collector","events_processed":14344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2868.8,"last_update":"2026-03-21T20:28:33.870436348Z"} +2026/03/21 20:28:38 ───────────────────────────────────────────────── +2026/03/21 20:28:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:28:43 [metric_collector] {"stage_name":"metric_collector","events_processed":8569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1713.8,"last_update":"2026-03-21T20:28:38.870729036Z"} +2026/03/21 20:28:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:28:38.879337524Z"} +2026/03/21 20:28:43 [transform_engine] {"stage_name":"transform_engine","events_processed":285,"events_dropped":0,"avg_latency_ms":312.06047013892623,"throughput_eps":0,"last_update":"2026-03-21T20:28:38.965731269Z"} +2026/03/21 20:28:43 [detection_layer] {"stage_name":"detection_layer","events_processed":285,"events_dropped":0,"avg_latency_ms":17.82681075781349,"throughput_eps":0,"last_update":"2026-03-21T20:28:38.965610538Z"} +2026/03/21 20:28:43 [log_collector] {"stage_name":"log_collector","events_processed":14344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2868.8,"last_update":"2026-03-21T20:28:38.870110391Z"} +2026/03/21 20:28:43 ───────────────────────────────────────────────── +2026/03/21 20:28:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:28:48 [log_collector] {"stage_name":"log_collector","events_processed":14344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2868.8,"last_update":"2026-03-21T20:28:43.86984552Z"} +2026/03/21 20:28:48 [metric_collector] {"stage_name":"metric_collector","events_processed":8574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1714.8,"last_update":"2026-03-21T20:28:43.870302596Z"} +2026/03/21 20:28:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:28:43.879101048Z"} +2026/03/21 20:28:48 [transform_engine] {"stage_name":"transform_engine","events_processed":285,"events_dropped":0,"avg_latency_ms":312.06047013892623,"throughput_eps":0,"last_update":"2026-03-21T20:28:43.965325579Z"} +2026/03/21 20:28:48 [detection_layer] {"stage_name":"detection_layer","events_processed":285,"events_dropped":0,"avg_latency_ms":17.82681075781349,"throughput_eps":0,"last_update":"2026-03-21T20:28:43.965427394Z"} +2026/03/21 20:28:48 ───────────────────────────────────────────────── +2026/03/21 20:28:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:28:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:28:48.878218945Z"} +2026/03/21 20:28:53 [transform_engine] {"stage_name":"transform_engine","events_processed":286,"events_dropped":0,"avg_latency_ms":263.023620511141,"throughput_eps":0,"last_update":"2026-03-21T20:28:49.032447909Z"} +2026/03/21 20:28:53 [detection_layer] {"stage_name":"detection_layer","events_processed":285,"events_dropped":0,"avg_latency_ms":17.82681075781349,"throughput_eps":0,"last_update":"2026-03-21T20:28:48.965425217Z"} +2026/03/21 20:28:53 [log_collector] {"stage_name":"log_collector","events_processed":14344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2868.8,"last_update":"2026-03-21T20:28:48.869772458Z"} +2026/03/21 20:28:53 [metric_collector] {"stage_name":"metric_collector","events_processed":8579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1715.8,"last_update":"2026-03-21T20:28:48.870159378Z"} +2026/03/21 20:28:53 ───────────────────────────────────────────────── +Saved state: 12 clusters, 14345 messages, reason: none +2026/03/21 20:28:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:28:58 [metric_collector] {"stage_name":"metric_collector","events_processed":8584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1716.8,"last_update":"2026-03-21T20:28:53.870230352Z"} +2026/03/21 20:28:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:28:53.878569915Z"} +2026/03/21 20:28:58 [transform_engine] {"stage_name":"transform_engine","events_processed":286,"events_dropped":0,"avg_latency_ms":263.023620511141,"throughput_eps":0,"last_update":"2026-03-21T20:28:53.96614912Z"} +2026/03/21 20:28:58 [detection_layer] {"stage_name":"detection_layer","events_processed":286,"events_dropped":0,"avg_latency_ms":18.253334406250794,"throughput_eps":0,"last_update":"2026-03-21T20:28:53.96603378Z"} +2026/03/21 20:28:58 [log_collector] {"stage_name":"log_collector","events_processed":14344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2868.8,"last_update":"2026-03-21T20:28:53.869821768Z"} +2026/03/21 20:28:58 ───────────────────────────────────────────────── +2026/03/21 20:29:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:29:03 [detection_layer] {"stage_name":"detection_layer","events_processed":286,"events_dropped":0,"avg_latency_ms":18.253334406250794,"throughput_eps":0,"last_update":"2026-03-21T20:28:58.965596199Z"} +2026/03/21 20:29:03 [log_collector] {"stage_name":"log_collector","events_processed":14357,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2871.4,"last_update":"2026-03-21T20:28:58.869837046Z"} +2026/03/21 20:29:03 [metric_collector] {"stage_name":"metric_collector","events_processed":8589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1717.8,"last_update":"2026-03-21T20:28:58.869929193Z"} +2026/03/21 20:29:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:28:58.876116494Z"} +2026/03/21 20:29:03 [transform_engine] {"stage_name":"transform_engine","events_processed":286,"events_dropped":0,"avg_latency_ms":263.023620511141,"throughput_eps":0,"last_update":"2026-03-21T20:28:58.965467964Z"} +2026/03/21 20:29:03 ───────────────────────────────────────────────── +2026/03/21 20:29:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:29:08 [transform_engine] {"stage_name":"transform_engine","events_processed":286,"events_dropped":0,"avg_latency_ms":263.023620511141,"throughput_eps":0,"last_update":"2026-03-21T20:29:03.965149682Z"} +2026/03/21 20:29:08 [detection_layer] {"stage_name":"detection_layer","events_processed":286,"events_dropped":0,"avg_latency_ms":18.253334406250794,"throughput_eps":0,"last_update":"2026-03-21T20:29:03.966290908Z"} +2026/03/21 20:29:08 [log_collector] {"stage_name":"log_collector","events_processed":14358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2871.6,"last_update":"2026-03-21T20:29:08.869415605Z"} +2026/03/21 20:29:08 [metric_collector] {"stage_name":"metric_collector","events_processed":8594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1718.8,"last_update":"2026-03-21T20:29:03.86978769Z"} +2026/03/21 20:29:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:29:03.878036028Z"} +2026/03/21 20:29:08 ───────────────────────────────────────────────── +2026/03/21 20:29:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:29:13 [detection_layer] {"stage_name":"detection_layer","events_processed":286,"events_dropped":0,"avg_latency_ms":18.253334406250794,"throughput_eps":0,"last_update":"2026-03-21T20:29:08.966268574Z"} +2026/03/21 20:29:13 [log_collector] {"stage_name":"log_collector","events_processed":14358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2871.6,"last_update":"2026-03-21T20:29:08.869415605Z"} +2026/03/21 20:29:13 [metric_collector] {"stage_name":"metric_collector","events_processed":8599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1719.8,"last_update":"2026-03-21T20:29:08.870109635Z"} +2026/03/21 20:29:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3442,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:29:08.877993736Z"} +2026/03/21 20:29:13 [transform_engine] {"stage_name":"transform_engine","events_processed":286,"events_dropped":0,"avg_latency_ms":263.023620511141,"throughput_eps":0,"last_update":"2026-03-21T20:29:08.965143749Z"} +2026/03/21 20:29:13 ───────────────────────────────────────────────── +2026/03/21 20:29:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:29:18 [log_collector] {"stage_name":"log_collector","events_processed":14358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2871.6,"last_update":"2026-03-21T20:29:18.870170649Z"} +2026/03/21 20:29:18 [metric_collector] {"stage_name":"metric_collector","events_processed":8604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1720.8,"last_update":"2026-03-21T20:29:13.870717708Z"} +2026/03/21 20:29:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:29:13.878520835Z"} +2026/03/21 20:29:18 [transform_engine] {"stage_name":"transform_engine","events_processed":286,"events_dropped":0,"avg_latency_ms":263.023620511141,"throughput_eps":0,"last_update":"2026-03-21T20:29:13.965737817Z"} +2026/03/21 20:29:18 [detection_layer] {"stage_name":"detection_layer","events_processed":286,"events_dropped":0,"avg_latency_ms":18.253334406250794,"throughput_eps":0,"last_update":"2026-03-21T20:29:13.965709251Z"} +2026/03/21 20:29:18 ───────────────────────────────────────────────── +2026/03/21 20:29:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:29:23 [detection_layer] {"stage_name":"detection_layer","events_processed":286,"events_dropped":0,"avg_latency_ms":18.253334406250794,"throughput_eps":0,"last_update":"2026-03-21T20:29:18.965888153Z"} +2026/03/21 20:29:23 [log_collector] {"stage_name":"log_collector","events_processed":14358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2871.6,"last_update":"2026-03-21T20:29:23.869876634Z"} +2026/03/21 20:29:23 [metric_collector] {"stage_name":"metric_collector","events_processed":8609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1721.8,"last_update":"2026-03-21T20:29:18.870605551Z"} +2026/03/21 20:29:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3446,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:29:18.879546146Z"} +2026/03/21 20:29:23 [transform_engine] {"stage_name":"transform_engine","events_processed":287,"events_dropped":0,"avg_latency_ms":233.0250994089128,"throughput_eps":0,"last_update":"2026-03-21T20:29:19.07880051Z"} +2026/03/21 20:29:23 ───────────────────────────────────────────────── +2026/03/21 20:29:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:29:28 [log_collector] {"stage_name":"log_collector","events_processed":14358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2871.6,"last_update":"2026-03-21T20:29:28.86982835Z"} +2026/03/21 20:29:28 [metric_collector] {"stage_name":"metric_collector","events_processed":8614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1722.8,"last_update":"2026-03-21T20:29:23.870299153Z"} +2026/03/21 20:29:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:29:23.879953083Z"} +2026/03/21 20:29:28 [transform_engine] {"stage_name":"transform_engine","events_processed":287,"events_dropped":0,"avg_latency_ms":233.0250994089128,"throughput_eps":0,"last_update":"2026-03-21T20:29:23.96514651Z"} +2026/03/21 20:29:28 [detection_layer] {"stage_name":"detection_layer","events_processed":287,"events_dropped":0,"avg_latency_ms":18.664228925000636,"throughput_eps":0,"last_update":"2026-03-21T20:29:23.965406718Z"} +2026/03/21 20:29:28 ───────────────────────────────────────────────── +2026/03/21 20:29:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:29:33 [metric_collector] {"stage_name":"metric_collector","events_processed":8619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1723.8,"last_update":"2026-03-21T20:29:28.870455722Z"} +2026/03/21 20:29:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:29:28.879192326Z"} +2026/03/21 20:29:33 [transform_engine] {"stage_name":"transform_engine","events_processed":287,"events_dropped":0,"avg_latency_ms":233.0250994089128,"throughput_eps":0,"last_update":"2026-03-21T20:29:28.965387881Z"} +2026/03/21 20:29:33 [detection_layer] {"stage_name":"detection_layer","events_processed":287,"events_dropped":0,"avg_latency_ms":18.664228925000636,"throughput_eps":0,"last_update":"2026-03-21T20:29:28.965431795Z"} +2026/03/21 20:29:33 [log_collector] {"stage_name":"log_collector","events_processed":14358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2871.6,"last_update":"2026-03-21T20:29:28.86982835Z"} +2026/03/21 20:29:33 ───────────────────────────────────────────────── +2026/03/21 20:29:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:29:38 [log_collector] {"stage_name":"log_collector","events_processed":14358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2871.6,"last_update":"2026-03-21T20:29:38.869412753Z"} +2026/03/21 20:29:38 [metric_collector] {"stage_name":"metric_collector","events_processed":8624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1724.8,"last_update":"2026-03-21T20:29:33.86990187Z"} +2026/03/21 20:29:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3452,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:29:33.878962173Z"} +2026/03/21 20:29:38 [transform_engine] {"stage_name":"transform_engine","events_processed":287,"events_dropped":0,"avg_latency_ms":233.0250994089128,"throughput_eps":0,"last_update":"2026-03-21T20:29:33.965065673Z"} +2026/03/21 20:29:38 [detection_layer] {"stage_name":"detection_layer","events_processed":287,"events_dropped":0,"avg_latency_ms":18.664228925000636,"throughput_eps":0,"last_update":"2026-03-21T20:29:33.96639018Z"} +2026/03/21 20:29:38 ───────────────────────────────────────────────── +2026/03/21 20:29:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:29:43 [log_collector] {"stage_name":"log_collector","events_processed":14358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2871.6,"last_update":"2026-03-21T20:29:43.869971892Z"} +2026/03/21 20:29:43 [metric_collector] {"stage_name":"metric_collector","events_processed":8629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1725.8,"last_update":"2026-03-21T20:29:38.869781038Z"} +2026/03/21 20:29:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:29:38.878884084Z"} +2026/03/21 20:29:43 [transform_engine] {"stage_name":"transform_engine","events_processed":287,"events_dropped":0,"avg_latency_ms":233.0250994089128,"throughput_eps":0,"last_update":"2026-03-21T20:29:38.96507459Z"} +2026/03/21 20:29:43 [detection_layer] {"stage_name":"detection_layer","events_processed":287,"events_dropped":0,"avg_latency_ms":18.664228925000636,"throughput_eps":0,"last_update":"2026-03-21T20:29:38.96628639Z"} +2026/03/21 20:29:43 ───────────────────────────────────────────────── +2026/03/21 20:29:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:29:48 [transform_engine] {"stage_name":"transform_engine","events_processed":287,"events_dropped":0,"avg_latency_ms":233.0250994089128,"throughput_eps":0,"last_update":"2026-03-21T20:29:43.966103329Z"} +2026/03/21 20:29:48 [detection_layer] {"stage_name":"detection_layer","events_processed":287,"events_dropped":0,"avg_latency_ms":18.664228925000636,"throughput_eps":0,"last_update":"2026-03-21T20:29:43.966212789Z"} +2026/03/21 20:29:48 [log_collector] {"stage_name":"log_collector","events_processed":14358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2871.6,"last_update":"2026-03-21T20:29:43.869971892Z"} +2026/03/21 20:29:48 [metric_collector] {"stage_name":"metric_collector","events_processed":8634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1726.8,"last_update":"2026-03-21T20:29:43.870400574Z"} +2026/03/21 20:29:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:29:43.878839007Z"} +2026/03/21 20:29:48 ───────────────────────────────────────────────── +2026/03/21 20:29:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:29:53 [log_collector] {"stage_name":"log_collector","events_processed":14358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2871.6,"last_update":"2026-03-21T20:29:53.87033508Z"} +2026/03/21 20:29:53 [metric_collector] {"stage_name":"metric_collector","events_processed":8639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1727.8,"last_update":"2026-03-21T20:29:48.86988102Z"} +2026/03/21 20:29:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:29:48.879053949Z"} +2026/03/21 20:29:53 [transform_engine] {"stage_name":"transform_engine","events_processed":288,"events_dropped":0,"avg_latency_ms":200.38740592713026,"throughput_eps":0,"last_update":"2026-03-21T20:29:49.035045098Z"} +2026/03/21 20:29:53 [detection_layer] {"stage_name":"detection_layer","events_processed":287,"events_dropped":0,"avg_latency_ms":18.664228925000636,"throughput_eps":0,"last_update":"2026-03-21T20:29:48.965420632Z"} +2026/03/21 20:29:53 ───────────────────────────────────────────────── +2026/03/21 20:29:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:29:58 [log_collector] {"stage_name":"log_collector","events_processed":14358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2871.6,"last_update":"2026-03-21T20:29:53.87033508Z"} +2026/03/21 20:29:58 [metric_collector] {"stage_name":"metric_collector","events_processed":8644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1728.8,"last_update":"2026-03-21T20:29:53.871121787Z"} +2026/03/21 20:29:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:29:53.879574767Z"} +2026/03/21 20:29:58 [transform_engine] {"stage_name":"transform_engine","events_processed":288,"events_dropped":0,"avg_latency_ms":200.38740592713026,"throughput_eps":0,"last_update":"2026-03-21T20:29:53.965917846Z"} +2026/03/21 20:29:58 [detection_layer] {"stage_name":"detection_layer","events_processed":288,"events_dropped":0,"avg_latency_ms":19.25736314000051,"throughput_eps":0,"last_update":"2026-03-21T20:29:53.965952712Z"} +2026/03/21 20:29:58 ───────────────────────────────────────────────── +2026/03/21 20:30:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:30:03 [detection_layer] {"stage_name":"detection_layer","events_processed":288,"events_dropped":0,"avg_latency_ms":19.25736314000051,"throughput_eps":0,"last_update":"2026-03-21T20:29:58.965386759Z"} +2026/03/21 20:30:03 [log_collector] {"stage_name":"log_collector","events_processed":14358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2871.6,"last_update":"2026-03-21T20:30:03.869850623Z"} +2026/03/21 20:30:03 [metric_collector] {"stage_name":"metric_collector","events_processed":8649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1729.8,"last_update":"2026-03-21T20:29:58.870417359Z"} +2026/03/21 20:30:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:29:58.878091107Z"} +2026/03/21 20:30:03 [transform_engine] {"stage_name":"transform_engine","events_processed":288,"events_dropped":0,"avg_latency_ms":200.38740592713026,"throughput_eps":0,"last_update":"2026-03-21T20:29:58.965245518Z"} +2026/03/21 20:30:03 ───────────────────────────────────────────────── +Saved state: 12 clusters, 14359 messages, reason: none +2026/03/21 20:30:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:30:08 [log_collector] {"stage_name":"log_collector","events_processed":14358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2871.6,"last_update":"2026-03-21T20:30:03.869850623Z"} +2026/03/21 20:30:08 [metric_collector] {"stage_name":"metric_collector","events_processed":8654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1730.8,"last_update":"2026-03-21T20:30:03.870669391Z"} +2026/03/21 20:30:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:30:03.879557876Z"} +2026/03/21 20:30:08 [transform_engine] {"stage_name":"transform_engine","events_processed":288,"events_dropped":0,"avg_latency_ms":200.38740592713026,"throughput_eps":0,"last_update":"2026-03-21T20:30:03.965779211Z"} +2026/03/21 20:30:08 [detection_layer] {"stage_name":"detection_layer","events_processed":288,"events_dropped":0,"avg_latency_ms":19.25736314000051,"throughput_eps":0,"last_update":"2026-03-21T20:30:03.965798968Z"} +2026/03/21 20:30:08 ───────────────────────────────────────────────── +2026/03/21 20:30:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:30:13 [log_collector] {"stage_name":"log_collector","events_processed":14363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2872.6,"last_update":"2026-03-21T20:30:08.869461058Z"} +2026/03/21 20:30:13 [metric_collector] {"stage_name":"metric_collector","events_processed":8659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1731.8,"last_update":"2026-03-21T20:30:08.869671401Z"} +2026/03/21 20:30:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:30:08.876603839Z"} +2026/03/21 20:30:13 [transform_engine] {"stage_name":"transform_engine","events_processed":288,"events_dropped":0,"avg_latency_ms":200.38740592713026,"throughput_eps":0,"last_update":"2026-03-21T20:30:08.965781586Z"} +2026/03/21 20:30:13 [detection_layer] {"stage_name":"detection_layer","events_processed":288,"events_dropped":0,"avg_latency_ms":19.25736314000051,"throughput_eps":0,"last_update":"2026-03-21T20:30:08.965811755Z"} +2026/03/21 20:30:13 ───────────────────────────────────────────────── +2026/03/21 20:30:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:30:18 [detection_layer] {"stage_name":"detection_layer","events_processed":288,"events_dropped":0,"avg_latency_ms":19.25736314000051,"throughput_eps":0,"last_update":"2026-03-21T20:30:13.965551767Z"} +2026/03/21 20:30:18 [log_collector] {"stage_name":"log_collector","events_processed":14363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2872.6,"last_update":"2026-03-21T20:30:13.869821319Z"} +2026/03/21 20:30:18 [metric_collector] {"stage_name":"metric_collector","events_processed":8664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1732.8,"last_update":"2026-03-21T20:30:13.869804386Z"} +2026/03/21 20:30:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:30:13.876317842Z"} +2026/03/21 20:30:18 [transform_engine] {"stage_name":"transform_engine","events_processed":288,"events_dropped":0,"avg_latency_ms":200.38740592713026,"throughput_eps":0,"last_update":"2026-03-21T20:30:13.965526589Z"} +2026/03/21 20:30:18 ───────────────────────────────────────────────── +2026/03/21 20:30:19 [ANOMALY] time=2026-03-21T20:30:19Z score=0.9712 method=SEAD details=MAD!:w=0.23,s=0.95 RRCF-fast!:w=0.21,s=0.96 RRCF-mid!:w=0.17,s=0.97 RRCF-slow!:w=0.14,s=0.98 COPOD!:w=0.25,s=1.00 +2026/03/21 20:30:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:30:23 [log_collector] {"stage_name":"log_collector","events_processed":14363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2872.6,"last_update":"2026-03-21T20:30:18.870041522Z"} +2026/03/21 20:30:23 [metric_collector] {"stage_name":"metric_collector","events_processed":8669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1733.8,"last_update":"2026-03-21T20:30:18.870492536Z"} +2026/03/21 20:30:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3470,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:30:18.877592965Z"} +2026/03/21 20:30:23 [transform_engine] {"stage_name":"transform_engine","events_processed":289,"events_dropped":0,"avg_latency_ms":192.7740435417042,"throughput_eps":0,"last_update":"2026-03-21T20:30:19.12743816Z"} +2026/03/21 20:30:23 [detection_layer] {"stage_name":"detection_layer","events_processed":288,"events_dropped":0,"avg_latency_ms":19.25736314000051,"throughput_eps":0,"last_update":"2026-03-21T20:30:18.966668868Z"} +2026/03/21 20:30:23 ───────────────────────────────────────────────── +2026/03/21 20:30:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:30:28 [metric_collector] {"stage_name":"metric_collector","events_processed":8674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1734.8,"last_update":"2026-03-21T20:30:23.870295591Z"} +2026/03/21 20:30:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:30:23.878229417Z"} +2026/03/21 20:30:28 [transform_engine] {"stage_name":"transform_engine","events_processed":289,"events_dropped":0,"avg_latency_ms":192.7740435417042,"throughput_eps":0,"last_update":"2026-03-21T20:30:23.965259781Z"} +2026/03/21 20:30:28 [detection_layer] {"stage_name":"detection_layer","events_processed":289,"events_dropped":0,"avg_latency_ms":17.37264751200041,"throughput_eps":0,"last_update":"2026-03-21T20:30:23.965320067Z"} +2026/03/21 20:30:28 [log_collector] {"stage_name":"log_collector","events_processed":14363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2872.6,"last_update":"2026-03-21T20:30:28.869941063Z"} +2026/03/21 20:30:28 ───────────────────────────────────────────────── +2026/03/21 20:30:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:30:33 [log_collector] {"stage_name":"log_collector","events_processed":14363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2872.6,"last_update":"2026-03-21T20:30:28.869941063Z"} +2026/03/21 20:30:33 [metric_collector] {"stage_name":"metric_collector","events_processed":8679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1735.8,"last_update":"2026-03-21T20:30:28.870321613Z"} +2026/03/21 20:30:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:30:28.877333443Z"} +2026/03/21 20:30:33 [transform_engine] {"stage_name":"transform_engine","events_processed":289,"events_dropped":0,"avg_latency_ms":192.7740435417042,"throughput_eps":0,"last_update":"2026-03-21T20:30:28.965521745Z"} +2026/03/21 20:30:33 [detection_layer] {"stage_name":"detection_layer","events_processed":289,"events_dropped":0,"avg_latency_ms":17.37264751200041,"throughput_eps":0,"last_update":"2026-03-21T20:30:28.965504562Z"} +2026/03/21 20:30:33 ───────────────────────────────────────────────── +2026/03/21 20:30:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:30:38 [log_collector] {"stage_name":"log_collector","events_processed":14363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2872.6,"last_update":"2026-03-21T20:30:33.869490172Z"} +2026/03/21 20:30:38 [metric_collector] {"stage_name":"metric_collector","events_processed":8684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1736.8,"last_update":"2026-03-21T20:30:33.869840212Z"} +2026/03/21 20:30:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3476,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:30:33.879124776Z"} +2026/03/21 20:30:38 [transform_engine] {"stage_name":"transform_engine","events_processed":289,"events_dropped":0,"avg_latency_ms":192.7740435417042,"throughput_eps":0,"last_update":"2026-03-21T20:30:33.965514383Z"} +2026/03/21 20:30:38 [detection_layer] {"stage_name":"detection_layer","events_processed":289,"events_dropped":0,"avg_latency_ms":17.37264751200041,"throughput_eps":0,"last_update":"2026-03-21T20:30:33.9653351Z"} +2026/03/21 20:30:38 ───────────────────────────────────────────────── +2026/03/21 20:30:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:30:43 [metric_collector] {"stage_name":"metric_collector","events_processed":8689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1737.8,"last_update":"2026-03-21T20:30:38.869605255Z"} +2026/03/21 20:30:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:30:38.876934182Z"} +2026/03/21 20:30:43 [transform_engine] {"stage_name":"transform_engine","events_processed":289,"events_dropped":0,"avg_latency_ms":192.7740435417042,"throughput_eps":0,"last_update":"2026-03-21T20:30:38.965061448Z"} +2026/03/21 20:30:43 [detection_layer] {"stage_name":"detection_layer","events_processed":289,"events_dropped":0,"avg_latency_ms":17.37264751200041,"throughput_eps":0,"last_update":"2026-03-21T20:30:38.966196972Z"} +2026/03/21 20:30:43 [log_collector] {"stage_name":"log_collector","events_processed":14363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2872.6,"last_update":"2026-03-21T20:30:38.869392887Z"} +2026/03/21 20:30:43 ───────────────────────────────────────────────── +2026/03/21 20:30:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:30:48 [log_collector] {"stage_name":"log_collector","events_processed":14363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2872.6,"last_update":"2026-03-21T20:30:43.869425693Z"} +2026/03/21 20:30:48 [metric_collector] {"stage_name":"metric_collector","events_processed":8694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1738.8,"last_update":"2026-03-21T20:30:43.869788017Z"} +2026/03/21 20:30:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3480,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:30:43.875979136Z"} +2026/03/21 20:30:48 [transform_engine] {"stage_name":"transform_engine","events_processed":289,"events_dropped":0,"avg_latency_ms":192.7740435417042,"throughput_eps":0,"last_update":"2026-03-21T20:30:43.965085366Z"} +2026/03/21 20:30:48 [detection_layer] {"stage_name":"detection_layer","events_processed":289,"events_dropped":0,"avg_latency_ms":17.37264751200041,"throughput_eps":0,"last_update":"2026-03-21T20:30:43.966173651Z"} +2026/03/21 20:30:48 ───────────────────────────────────────────────── +2026/03/21 20:30:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:30:53 [log_collector] {"stage_name":"log_collector","events_processed":14372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2874.4,"last_update":"2026-03-21T20:30:48.870545912Z"} +2026/03/21 20:30:53 [metric_collector] {"stage_name":"metric_collector","events_processed":8699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1739.8,"last_update":"2026-03-21T20:30:48.870928845Z"} +2026/03/21 20:30:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3482,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:30:48.876834928Z"} +2026/03/21 20:30:53 [transform_engine] {"stage_name":"transform_engine","events_processed":290,"events_dropped":0,"avg_latency_ms":248.92917883336338,"throughput_eps":0,"last_update":"2026-03-21T20:30:49.439673207Z"} +2026/03/21 20:30:53 [detection_layer] {"stage_name":"detection_layer","events_processed":289,"events_dropped":0,"avg_latency_ms":17.37264751200041,"throughput_eps":0,"last_update":"2026-03-21T20:30:48.966218239Z"} +2026/03/21 20:30:53 ───────────────────────────────────────────────── +2026/03/21 20:30:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:30:58 [detection_layer] {"stage_name":"detection_layer","events_processed":290,"events_dropped":0,"avg_latency_ms":17.269573809600328,"throughput_eps":0,"last_update":"2026-03-21T20:30:53.965760484Z"} +2026/03/21 20:30:58 [log_collector] {"stage_name":"log_collector","events_processed":14374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2874.8,"last_update":"2026-03-21T20:30:53.869409738Z"} +2026/03/21 20:30:58 [metric_collector] {"stage_name":"metric_collector","events_processed":8704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1740.8,"last_update":"2026-03-21T20:30:53.869880379Z"} +2026/03/21 20:30:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:30:53.878445705Z"} +2026/03/21 20:30:58 [transform_engine] {"stage_name":"transform_engine","events_processed":290,"events_dropped":0,"avg_latency_ms":248.92917883336338,"throughput_eps":0,"last_update":"2026-03-21T20:30:53.965876597Z"} +2026/03/21 20:30:58 ───────────────────────────────────────────────── +2026/03/21 20:31:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:31:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3486,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:30:58.879120541Z"} +2026/03/21 20:31:03 [transform_engine] {"stage_name":"transform_engine","events_processed":290,"events_dropped":0,"avg_latency_ms":248.92917883336338,"throughput_eps":0,"last_update":"2026-03-21T20:30:58.965663952Z"} +2026/03/21 20:31:03 [detection_layer] {"stage_name":"detection_layer","events_processed":290,"events_dropped":0,"avg_latency_ms":17.269573809600328,"throughput_eps":0,"last_update":"2026-03-21T20:30:58.965628004Z"} +2026/03/21 20:31:03 [log_collector] {"stage_name":"log_collector","events_processed":14608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2921.6,"last_update":"2026-03-21T20:30:58.869582452Z"} +2026/03/21 20:31:03 [metric_collector] {"stage_name":"metric_collector","events_processed":8709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1741.8,"last_update":"2026-03-21T20:30:58.869780601Z"} +2026/03/21 20:31:03 ───────────────────────────────────────────────── +2026/03/21 20:31:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:31:08 [log_collector] {"stage_name":"log_collector","events_processed":14725,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2945,"last_update":"2026-03-21T20:31:03.869559923Z"} +2026/03/21 20:31:08 [metric_collector] {"stage_name":"metric_collector","events_processed":8714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1742.8,"last_update":"2026-03-21T20:31:03.870066162Z"} +2026/03/21 20:31:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:31:03.87942626Z"} +2026/03/21 20:31:08 [transform_engine] {"stage_name":"transform_engine","events_processed":290,"events_dropped":0,"avg_latency_ms":248.92917883336338,"throughput_eps":0,"last_update":"2026-03-21T20:31:03.965864291Z"} +2026/03/21 20:31:08 [detection_layer] {"stage_name":"detection_layer","events_processed":290,"events_dropped":0,"avg_latency_ms":17.269573809600328,"throughput_eps":0,"last_update":"2026-03-21T20:31:03.965753168Z"} +2026/03/21 20:31:08 ───────────────────────────────────────────────── +2026/03/21 20:31:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:31:13 [metric_collector] {"stage_name":"metric_collector","events_processed":8719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1743.8,"last_update":"2026-03-21T20:31:08.870676344Z"} +2026/03/21 20:31:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3490,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:31:08.878644455Z"} +2026/03/21 20:31:13 [transform_engine] {"stage_name":"transform_engine","events_processed":290,"events_dropped":0,"avg_latency_ms":248.92917883336338,"throughput_eps":0,"last_update":"2026-03-21T20:31:08.966117018Z"} +2026/03/21 20:31:13 [detection_layer] {"stage_name":"detection_layer","events_processed":290,"events_dropped":0,"avg_latency_ms":17.269573809600328,"throughput_eps":0,"last_update":"2026-03-21T20:31:08.966004863Z"} +2026/03/21 20:31:13 [log_collector] {"stage_name":"log_collector","events_processed":14725,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2945,"last_update":"2026-03-21T20:31:08.869968057Z"} +2026/03/21 20:31:13 ───────────────────────────────────────────────── +Saved state: 12 clusters, 14726 messages, reason: none +2026/03/21 20:31:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:31:18 [detection_layer] {"stage_name":"detection_layer","events_processed":290,"events_dropped":0,"avg_latency_ms":17.269573809600328,"throughput_eps":0,"last_update":"2026-03-21T20:31:13.966197696Z"} +2026/03/21 20:31:18 [log_collector] {"stage_name":"log_collector","events_processed":14728,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2945.6,"last_update":"2026-03-21T20:31:18.86940654Z"} +2026/03/21 20:31:18 [metric_collector] {"stage_name":"metric_collector","events_processed":8724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1744.8,"last_update":"2026-03-21T20:31:13.869816662Z"} +2026/03/21 20:31:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:31:13.878853571Z"} +2026/03/21 20:31:18 [transform_engine] {"stage_name":"transform_engine","events_processed":290,"events_dropped":0,"avg_latency_ms":248.92917883336338,"throughput_eps":0,"last_update":"2026-03-21T20:31:13.966316724Z"} +2026/03/21 20:31:18 ───────────────────────────────────────────────── +2026/03/21 20:31:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:31:23 [log_collector] {"stage_name":"log_collector","events_processed":14728,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2945.6,"last_update":"2026-03-21T20:31:23.869847078Z"} +2026/03/21 20:31:23 [metric_collector] {"stage_name":"metric_collector","events_processed":8734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1746.8,"last_update":"2026-03-21T20:31:23.869816279Z"} +2026/03/21 20:31:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:31:18.877136355Z"} +2026/03/21 20:31:23 [transform_engine] {"stage_name":"transform_engine","events_processed":291,"events_dropped":0,"avg_latency_ms":223.2969500666907,"throughput_eps":0,"last_update":"2026-03-21T20:31:19.086079808Z"} +2026/03/21 20:31:23 [detection_layer] {"stage_name":"detection_layer","events_processed":290,"events_dropped":0,"avg_latency_ms":17.269573809600328,"throughput_eps":0,"last_update":"2026-03-21T20:31:18.965384593Z"} +2026/03/21 20:31:23 ───────────────────────────────────────────────── +2026/03/21 20:31:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:31:28 [transform_engine] {"stage_name":"transform_engine","events_processed":291,"events_dropped":0,"avg_latency_ms":223.2969500666907,"throughput_eps":0,"last_update":"2026-03-21T20:31:23.965510899Z"} +2026/03/21 20:31:28 [detection_layer] {"stage_name":"detection_layer","events_processed":291,"events_dropped":0,"avg_latency_ms":16.669525247680262,"throughput_eps":0,"last_update":"2026-03-21T20:31:23.965501531Z"} +2026/03/21 20:31:28 [log_collector] {"stage_name":"log_collector","events_processed":14728,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2945.6,"last_update":"2026-03-21T20:31:23.869847078Z"} +2026/03/21 20:31:28 [metric_collector] {"stage_name":"metric_collector","events_processed":8734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1746.8,"last_update":"2026-03-21T20:31:23.869816279Z"} +2026/03/21 20:31:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3496,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:31:23.876181441Z"} +2026/03/21 20:31:28 ───────────────────────────────────────────────── +2026/03/21 20:31:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:31:33 [log_collector] {"stage_name":"log_collector","events_processed":14738,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2947.6,"last_update":"2026-03-21T20:31:28.869405228Z"} +2026/03/21 20:31:33 [metric_collector] {"stage_name":"metric_collector","events_processed":8739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1747.8,"last_update":"2026-03-21T20:31:28.869802589Z"} +2026/03/21 20:31:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3498,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:31:28.879706768Z"} +2026/03/21 20:31:33 [transform_engine] {"stage_name":"transform_engine","events_processed":291,"events_dropped":0,"avg_latency_ms":223.2969500666907,"throughput_eps":0,"last_update":"2026-03-21T20:31:28.965909238Z"} +2026/03/21 20:31:33 [detection_layer] {"stage_name":"detection_layer","events_processed":291,"events_dropped":0,"avg_latency_ms":16.669525247680262,"throughput_eps":0,"last_update":"2026-03-21T20:31:28.965901753Z"} +2026/03/21 20:31:33 ───────────────────────────────────────────────── +2026/03/21 20:31:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:31:38 [log_collector] {"stage_name":"log_collector","events_processed":14753,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2950.6,"last_update":"2026-03-21T20:31:38.869557768Z"} +2026/03/21 20:31:38 [metric_collector] {"stage_name":"metric_collector","events_processed":8744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1748.8,"last_update":"2026-03-21T20:31:33.870116233Z"} +2026/03/21 20:31:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:31:33.880132378Z"} +2026/03/21 20:31:38 [transform_engine] {"stage_name":"transform_engine","events_processed":291,"events_dropped":0,"avg_latency_ms":223.2969500666907,"throughput_eps":0,"last_update":"2026-03-21T20:31:33.96539672Z"} +2026/03/21 20:31:38 [detection_layer] {"stage_name":"detection_layer","events_processed":291,"events_dropped":0,"avg_latency_ms":16.669525247680262,"throughput_eps":0,"last_update":"2026-03-21T20:31:33.965385659Z"} +2026/03/21 20:31:38 ───────────────────────────────────────────────── +2026/03/21 20:31:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:31:43 [log_collector] {"stage_name":"log_collector","events_processed":14753,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2950.6,"last_update":"2026-03-21T20:31:38.869557768Z"} +2026/03/21 20:31:43 [metric_collector] {"stage_name":"metric_collector","events_processed":8749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1749.8,"last_update":"2026-03-21T20:31:38.870246658Z"} +2026/03/21 20:31:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:31:38.877884678Z"} +2026/03/21 20:31:43 [transform_engine] {"stage_name":"transform_engine","events_processed":291,"events_dropped":0,"avg_latency_ms":223.2969500666907,"throughput_eps":0,"last_update":"2026-03-21T20:31:38.966159906Z"} +2026/03/21 20:31:43 [detection_layer] {"stage_name":"detection_layer","events_processed":291,"events_dropped":0,"avg_latency_ms":16.669525247680262,"throughput_eps":0,"last_update":"2026-03-21T20:31:38.966149345Z"} +2026/03/21 20:31:43 ───────────────────────────────────────────────── +2026/03/21 20:31:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:31:48 [log_collector] {"stage_name":"log_collector","events_processed":14755,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2951,"last_update":"2026-03-21T20:31:48.869403302Z"} +2026/03/21 20:31:48 [metric_collector] {"stage_name":"metric_collector","events_processed":8754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1750.8,"last_update":"2026-03-21T20:31:43.869822129Z"} +2026/03/21 20:31:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:31:43.877949526Z"} +2026/03/21 20:31:48 [transform_engine] {"stage_name":"transform_engine","events_processed":291,"events_dropped":0,"avg_latency_ms":223.2969500666907,"throughput_eps":0,"last_update":"2026-03-21T20:31:43.96505273Z"} +2026/03/21 20:31:48 [detection_layer] {"stage_name":"detection_layer","events_processed":291,"events_dropped":0,"avg_latency_ms":16.669525247680262,"throughput_eps":0,"last_update":"2026-03-21T20:31:43.966200458Z"} +2026/03/21 20:31:48 ───────────────────────────────────────────────── +2026/03/21 20:31:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:31:53 [log_collector] {"stage_name":"log_collector","events_processed":14755,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2951,"last_update":"2026-03-21T20:31:53.869708092Z"} +2026/03/21 20:31:53 [metric_collector] {"stage_name":"metric_collector","events_processed":8759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1751.8,"last_update":"2026-03-21T20:31:48.870055952Z"} +2026/03/21 20:31:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3506,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:31:48.878241881Z"} +2026/03/21 20:31:53 [transform_engine] {"stage_name":"transform_engine","events_processed":292,"events_dropped":0,"avg_latency_ms":202.13363745335255,"throughput_eps":0,"last_update":"2026-03-21T20:31:49.08302727Z"} +2026/03/21 20:31:53 [detection_layer] {"stage_name":"detection_layer","events_processed":291,"events_dropped":0,"avg_latency_ms":16.669525247680262,"throughput_eps":0,"last_update":"2026-03-21T20:31:48.965528928Z"} +2026/03/21 20:31:53 ───────────────────────────────────────────────── +2026/03/21 20:31:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:31:58 [transform_engine] {"stage_name":"transform_engine","events_processed":292,"events_dropped":0,"avg_latency_ms":202.13363745335255,"throughput_eps":0,"last_update":"2026-03-21T20:31:53.965303271Z"} +2026/03/21 20:31:58 [detection_layer] {"stage_name":"detection_layer","events_processed":292,"events_dropped":0,"avg_latency_ms":16.70194199814421,"throughput_eps":0,"last_update":"2026-03-21T20:31:53.965466884Z"} +2026/03/21 20:31:58 [log_collector] {"stage_name":"log_collector","events_processed":14755,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2951,"last_update":"2026-03-21T20:31:58.869430495Z"} +2026/03/21 20:31:58 [metric_collector] {"stage_name":"metric_collector","events_processed":8764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1752.8,"last_update":"2026-03-21T20:31:53.870724247Z"} +2026/03/21 20:31:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:31:53.879046989Z"} +2026/03/21 20:31:58 ───────────────────────────────────────────────── +2026/03/21 20:32:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:32:03 [transform_engine] {"stage_name":"transform_engine","events_processed":292,"events_dropped":0,"avg_latency_ms":202.13363745335255,"throughput_eps":0,"last_update":"2026-03-21T20:31:58.965681461Z"} +2026/03/21 20:32:03 [detection_layer] {"stage_name":"detection_layer","events_processed":292,"events_dropped":0,"avg_latency_ms":16.70194199814421,"throughput_eps":0,"last_update":"2026-03-21T20:31:58.965709905Z"} +2026/03/21 20:32:03 [log_collector] {"stage_name":"log_collector","events_processed":14755,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2951,"last_update":"2026-03-21T20:32:03.869537907Z"} +2026/03/21 20:32:03 [metric_collector] {"stage_name":"metric_collector","events_processed":8769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1753.8,"last_update":"2026-03-21T20:31:58.869882872Z"} +2026/03/21 20:32:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:31:58.878221153Z"} +2026/03/21 20:32:03 ───────────────────────────────────────────────── +2026/03/21 20:32:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:32:08 [transform_engine] {"stage_name":"transform_engine","events_processed":292,"events_dropped":0,"avg_latency_ms":202.13363745335255,"throughput_eps":0,"last_update":"2026-03-21T20:32:03.965378155Z"} +2026/03/21 20:32:08 [detection_layer] {"stage_name":"detection_layer","events_processed":292,"events_dropped":0,"avg_latency_ms":16.70194199814421,"throughput_eps":0,"last_update":"2026-03-21T20:32:03.965433771Z"} +2026/03/21 20:32:08 [log_collector] {"stage_name":"log_collector","events_processed":14755,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2951,"last_update":"2026-03-21T20:32:08.869992833Z"} +2026/03/21 20:32:08 [metric_collector] {"stage_name":"metric_collector","events_processed":8774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1754.8,"last_update":"2026-03-21T20:32:03.870070487Z"} +2026/03/21 20:32:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3512,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:32:03.880109165Z"} +2026/03/21 20:32:08 ───────────────────────────────────────────────── +2026/03/21 20:32:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:32:13 [detection_layer] {"stage_name":"detection_layer","events_processed":292,"events_dropped":0,"avg_latency_ms":16.70194199814421,"throughput_eps":0,"last_update":"2026-03-21T20:32:08.96575341Z"} +2026/03/21 20:32:13 [log_collector] {"stage_name":"log_collector","events_processed":14755,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2951,"last_update":"2026-03-21T20:32:08.869992833Z"} +2026/03/21 20:32:13 [metric_collector] {"stage_name":"metric_collector","events_processed":8779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1755.8,"last_update":"2026-03-21T20:32:08.870339708Z"} +2026/03/21 20:32:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:32:08.880539906Z"} +2026/03/21 20:32:13 [transform_engine] {"stage_name":"transform_engine","events_processed":292,"events_dropped":0,"avg_latency_ms":202.13363745335255,"throughput_eps":0,"last_update":"2026-03-21T20:32:08.965730376Z"} +2026/03/21 20:32:13 ───────────────────────────────────────────────── +2026/03/21 20:32:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:32:18 [transform_engine] {"stage_name":"transform_engine","events_processed":292,"events_dropped":0,"avg_latency_ms":202.13363745335255,"throughput_eps":0,"last_update":"2026-03-21T20:32:13.965521372Z"} +2026/03/21 20:32:18 [detection_layer] {"stage_name":"detection_layer","events_processed":292,"events_dropped":0,"avg_latency_ms":16.70194199814421,"throughput_eps":0,"last_update":"2026-03-21T20:32:13.965626894Z"} +2026/03/21 20:32:18 [log_collector] {"stage_name":"log_collector","events_processed":14755,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2951,"last_update":"2026-03-21T20:32:13.869881667Z"} +2026/03/21 20:32:18 [metric_collector] {"stage_name":"metric_collector","events_processed":8784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1756.8,"last_update":"2026-03-21T20:32:13.870098563Z"} +2026/03/21 20:32:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:32:13.880155956Z"} +2026/03/21 20:32:18 ───────────────────────────────────────────────── +2026/03/21 20:32:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:32:23 [log_collector] {"stage_name":"log_collector","events_processed":14755,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2951,"last_update":"2026-03-21T20:32:18.869511053Z"} +2026/03/21 20:32:23 [metric_collector] {"stage_name":"metric_collector","events_processed":8789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1757.8,"last_update":"2026-03-21T20:32:18.869680457Z"} +2026/03/21 20:32:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:32:18.87769604Z"} +2026/03/21 20:32:23 [transform_engine] {"stage_name":"transform_engine","events_processed":293,"events_dropped":0,"avg_latency_ms":175.47384856268206,"throughput_eps":0,"last_update":"2026-03-21T20:32:19.034768912Z"} +2026/03/21 20:32:23 [detection_layer] {"stage_name":"detection_layer","events_processed":292,"events_dropped":0,"avg_latency_ms":16.70194199814421,"throughput_eps":0,"last_update":"2026-03-21T20:32:18.965893651Z"} +2026/03/21 20:32:23 ───────────────────────────────────────────────── +2026/03/21 20:32:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:32:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3520,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:32:23.878179953Z"} +2026/03/21 20:32:28 [transform_engine] {"stage_name":"transform_engine","events_processed":293,"events_dropped":0,"avg_latency_ms":175.47384856268206,"throughput_eps":0,"last_update":"2026-03-21T20:32:23.965607289Z"} +2026/03/21 20:32:28 [detection_layer] {"stage_name":"detection_layer","events_processed":293,"events_dropped":0,"avg_latency_ms":17.48945779851537,"throughput_eps":0,"last_update":"2026-03-21T20:32:23.965572021Z"} +2026/03/21 20:32:28 [log_collector] {"stage_name":"log_collector","events_processed":14755,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2951,"last_update":"2026-03-21T20:32:23.869700162Z"} +2026/03/21 20:32:28 [metric_collector] {"stage_name":"metric_collector","events_processed":8794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1758.8,"last_update":"2026-03-21T20:32:23.869889845Z"} +2026/03/21 20:32:28 ───────────────────────────────────────────────── +2026/03/21 20:32:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:32:33 [log_collector] {"stage_name":"log_collector","events_processed":14755,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2951,"last_update":"2026-03-21T20:32:28.869683516Z"} +2026/03/21 20:32:33 [metric_collector] {"stage_name":"metric_collector","events_processed":8799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1759.8,"last_update":"2026-03-21T20:32:28.869771314Z"} +2026/03/21 20:32:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3522,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:32:28.878077433Z"} +2026/03/21 20:32:33 [transform_engine] {"stage_name":"transform_engine","events_processed":293,"events_dropped":0,"avg_latency_ms":175.47384856268206,"throughput_eps":0,"last_update":"2026-03-21T20:32:28.965403193Z"} +2026/03/21 20:32:33 [detection_layer] {"stage_name":"detection_layer","events_processed":293,"events_dropped":0,"avg_latency_ms":17.48945779851537,"throughput_eps":0,"last_update":"2026-03-21T20:32:28.96553692Z"} +2026/03/21 20:32:33 ───────────────────────────────────────────────── +2026/03/21 20:32:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:32:38 [metric_collector] {"stage_name":"metric_collector","events_processed":8804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1760.8,"last_update":"2026-03-21T20:32:33.87005792Z"} +2026/03/21 20:32:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3522,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:32:33.869516192Z"} +2026/03/21 20:32:38 [transform_engine] {"stage_name":"transform_engine","events_processed":293,"events_dropped":0,"avg_latency_ms":175.47384856268206,"throughput_eps":0,"last_update":"2026-03-21T20:32:33.965963795Z"} +2026/03/21 20:32:38 [detection_layer] {"stage_name":"detection_layer","events_processed":293,"events_dropped":0,"avg_latency_ms":17.48945779851537,"throughput_eps":0,"last_update":"2026-03-21T20:32:33.965921233Z"} +2026/03/21 20:32:38 [log_collector] {"stage_name":"log_collector","events_processed":14755,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2951,"last_update":"2026-03-21T20:32:33.869528005Z"} +2026/03/21 20:32:38 ───────────────────────────────────────────────── +Saved state: 12 clusters, 14756 messages, reason: none +2026/03/21 20:32:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:32:43 [transform_engine] {"stage_name":"transform_engine","events_processed":293,"events_dropped":0,"avg_latency_ms":175.47384856268206,"throughput_eps":0,"last_update":"2026-03-21T20:32:38.96600493Z"} +2026/03/21 20:32:43 [detection_layer] {"stage_name":"detection_layer","events_processed":293,"events_dropped":0,"avg_latency_ms":17.48945779851537,"throughput_eps":0,"last_update":"2026-03-21T20:32:38.966091035Z"} +2026/03/21 20:32:43 [log_collector] {"stage_name":"log_collector","events_processed":14755,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2951,"last_update":"2026-03-21T20:32:38.869960291Z"} +2026/03/21 20:32:43 [metric_collector] {"stage_name":"metric_collector","events_processed":8809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1761.8,"last_update":"2026-03-21T20:32:38.870340509Z"} +2026/03/21 20:32:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3526,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:32:38.878645375Z"} +2026/03/21 20:32:43 ───────────────────────────────────────────────── +2026/03/21 20:32:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:32:48 [log_collector] {"stage_name":"log_collector","events_processed":14768,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2953.6,"last_update":"2026-03-21T20:32:43.869907436Z"} +2026/03/21 20:32:48 [metric_collector] {"stage_name":"metric_collector","events_processed":8814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1762.8,"last_update":"2026-03-21T20:32:43.870375802Z"} +2026/03/21 20:32:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:32:43.876662593Z"} +2026/03/21 20:32:48 [transform_engine] {"stage_name":"transform_engine","events_processed":293,"events_dropped":0,"avg_latency_ms":175.47384856268206,"throughput_eps":0,"last_update":"2026-03-21T20:32:43.9660062Z"} +2026/03/21 20:32:48 [detection_layer] {"stage_name":"detection_layer","events_processed":293,"events_dropped":0,"avg_latency_ms":17.48945779851537,"throughput_eps":0,"last_update":"2026-03-21T20:32:43.96604336Z"} +2026/03/21 20:32:48 ───────────────────────────────────────────────── +2026/03/21 20:32:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:32:53 [log_collector] {"stage_name":"log_collector","events_processed":14769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2953.8,"last_update":"2026-03-21T20:32:48.870536336Z"} +2026/03/21 20:32:53 [metric_collector] {"stage_name":"metric_collector","events_processed":8819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1763.8,"last_update":"2026-03-21T20:32:48.87094004Z"} +2026/03/21 20:32:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:32:48.879132882Z"} +2026/03/21 20:32:53 [transform_engine] {"stage_name":"transform_engine","events_processed":294,"events_dropped":0,"avg_latency_ms":163.35980925014564,"throughput_eps":0,"last_update":"2026-03-21T20:32:49.080417105Z"} +2026/03/21 20:32:53 [detection_layer] {"stage_name":"detection_layer","events_processed":293,"events_dropped":0,"avg_latency_ms":17.48945779851537,"throughput_eps":0,"last_update":"2026-03-21T20:32:48.965494266Z"} +2026/03/21 20:32:53 ───────────────────────────────────────────────── +2026/03/21 20:32:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:32:58 [detection_layer] {"stage_name":"detection_layer","events_processed":294,"events_dropped":0,"avg_latency_ms":17.705051038812297,"throughput_eps":0,"last_update":"2026-03-21T20:32:53.965865945Z"} +2026/03/21 20:32:58 [log_collector] {"stage_name":"log_collector","events_processed":14769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2953.8,"last_update":"2026-03-21T20:32:53.870159052Z"} +2026/03/21 20:32:58 [metric_collector] {"stage_name":"metric_collector","events_processed":8824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1764.8,"last_update":"2026-03-21T20:32:53.870623672Z"} +2026/03/21 20:32:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3532,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:32:53.879573063Z"} +2026/03/21 20:32:58 [transform_engine] {"stage_name":"transform_engine","events_processed":294,"events_dropped":0,"avg_latency_ms":163.35980925014564,"throughput_eps":0,"last_update":"2026-03-21T20:32:53.965887366Z"} +2026/03/21 20:32:58 ───────────────────────────────────────────────── +2026/03/21 20:33:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:33:03 [log_collector] {"stage_name":"log_collector","events_processed":14769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2953.8,"last_update":"2026-03-21T20:32:58.8694023Z"} +2026/03/21 20:33:03 [metric_collector] {"stage_name":"metric_collector","events_processed":8829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1765.8,"last_update":"2026-03-21T20:32:58.86990364Z"} +2026/03/21 20:33:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:32:58.878217123Z"} +2026/03/21 20:33:03 [transform_engine] {"stage_name":"transform_engine","events_processed":294,"events_dropped":0,"avg_latency_ms":163.35980925014564,"throughput_eps":0,"last_update":"2026-03-21T20:32:58.96558254Z"} +2026/03/21 20:33:03 [detection_layer] {"stage_name":"detection_layer","events_processed":294,"events_dropped":0,"avg_latency_ms":17.705051038812297,"throughput_eps":0,"last_update":"2026-03-21T20:32:58.965774728Z"} +2026/03/21 20:33:03 ───────────────────────────────────────────────── +2026/03/21 20:33:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:33:08 [transform_engine] {"stage_name":"transform_engine","events_processed":294,"events_dropped":0,"avg_latency_ms":163.35980925014564,"throughput_eps":0,"last_update":"2026-03-21T20:33:03.96508232Z"} +2026/03/21 20:33:08 [detection_layer] {"stage_name":"detection_layer","events_processed":294,"events_dropped":0,"avg_latency_ms":17.705051038812297,"throughput_eps":0,"last_update":"2026-03-21T20:33:03.966279182Z"} +2026/03/21 20:33:08 [log_collector] {"stage_name":"log_collector","events_processed":14769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2953.8,"last_update":"2026-03-21T20:33:03.870131024Z"} +2026/03/21 20:33:08 [metric_collector] {"stage_name":"metric_collector","events_processed":8834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1766.8,"last_update":"2026-03-21T20:33:03.870645458Z"} +2026/03/21 20:33:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3536,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:33:03.878910449Z"} +2026/03/21 20:33:08 ───────────────────────────────────────────────── +2026/03/21 20:33:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:33:13 [log_collector] {"stage_name":"log_collector","events_processed":14769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2953.8,"last_update":"2026-03-21T20:33:08.870222466Z"} +2026/03/21 20:33:13 [metric_collector] {"stage_name":"metric_collector","events_processed":8839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1767.8,"last_update":"2026-03-21T20:33:08.870676877Z"} +2026/03/21 20:33:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:33:08.87925672Z"} +2026/03/21 20:33:13 [transform_engine] {"stage_name":"transform_engine","events_processed":294,"events_dropped":0,"avg_latency_ms":163.35980925014564,"throughput_eps":0,"last_update":"2026-03-21T20:33:08.965408973Z"} +2026/03/21 20:33:13 [detection_layer] {"stage_name":"detection_layer","events_processed":294,"events_dropped":0,"avg_latency_ms":17.705051038812297,"throughput_eps":0,"last_update":"2026-03-21T20:33:08.965378985Z"} +2026/03/21 20:33:13 ───────────────────────────────────────────────── +2026/03/21 20:33:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:33:18 [log_collector] {"stage_name":"log_collector","events_processed":14769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2953.8,"last_update":"2026-03-21T20:33:13.870303329Z"} +2026/03/21 20:33:18 [metric_collector] {"stage_name":"metric_collector","events_processed":8844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1768.8,"last_update":"2026-03-21T20:33:13.870832133Z"} +2026/03/21 20:33:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3540,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:33:13.879132Z"} +2026/03/21 20:33:18 [transform_engine] {"stage_name":"transform_engine","events_processed":294,"events_dropped":0,"avg_latency_ms":163.35980925014564,"throughput_eps":0,"last_update":"2026-03-21T20:33:13.96559606Z"} +2026/03/21 20:33:18 [detection_layer] {"stage_name":"detection_layer","events_processed":294,"events_dropped":0,"avg_latency_ms":17.705051038812297,"throughput_eps":0,"last_update":"2026-03-21T20:33:13.965497993Z"} +2026/03/21 20:33:18 ───────────────────────────────────────────────── +2026/03/21 20:33:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:33:23 [metric_collector] {"stage_name":"metric_collector","events_processed":8849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1769.8,"last_update":"2026-03-21T20:33:18.86987613Z"} +2026/03/21 20:33:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3542,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:33:18.878456755Z"} +2026/03/21 20:33:23 [transform_engine] {"stage_name":"transform_engine","events_processed":295,"events_dropped":0,"avg_latency_ms":144.69930060011652,"throughput_eps":0,"last_update":"2026-03-21T20:33:19.035871331Z"} +2026/03/21 20:33:23 [detection_layer] {"stage_name":"detection_layer","events_processed":294,"events_dropped":0,"avg_latency_ms":17.705051038812297,"throughput_eps":0,"last_update":"2026-03-21T20:33:18.965915269Z"} +2026/03/21 20:33:23 [log_collector] {"stage_name":"log_collector","events_processed":14769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2953.8,"last_update":"2026-03-21T20:33:18.869399197Z"} +2026/03/21 20:33:23 ───────────────────────────────────────────────── +2026/03/21 20:33:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:33:28 [log_collector] {"stage_name":"log_collector","events_processed":14769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2953.8,"last_update":"2026-03-21T20:33:23.870042057Z"} +2026/03/21 20:33:28 [metric_collector] {"stage_name":"metric_collector","events_processed":8854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1770.8,"last_update":"2026-03-21T20:33:23.870686651Z"} +2026/03/21 20:33:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:33:23.87968164Z"} +2026/03/21 20:33:28 [transform_engine] {"stage_name":"transform_engine","events_processed":295,"events_dropped":0,"avg_latency_ms":144.69930060011652,"throughput_eps":0,"last_update":"2026-03-21T20:33:23.965866284Z"} +2026/03/21 20:33:28 [detection_layer] {"stage_name":"detection_layer","events_processed":295,"events_dropped":0,"avg_latency_ms":18.207030431049837,"throughput_eps":0,"last_update":"2026-03-21T20:33:23.965857397Z"} +2026/03/21 20:33:28 ───────────────────────────────────────────────── +2026/03/21 20:33:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:33:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:33:28.879219013Z"} +2026/03/21 20:33:33 [transform_engine] {"stage_name":"transform_engine","events_processed":295,"events_dropped":0,"avg_latency_ms":144.69930060011652,"throughput_eps":0,"last_update":"2026-03-21T20:33:28.965525511Z"} +2026/03/21 20:33:33 [detection_layer] {"stage_name":"detection_layer","events_processed":295,"events_dropped":0,"avg_latency_ms":18.207030431049837,"throughput_eps":0,"last_update":"2026-03-21T20:33:28.965519309Z"} +2026/03/21 20:33:33 [log_collector] {"stage_name":"log_collector","events_processed":14769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2953.8,"last_update":"2026-03-21T20:33:28.86942284Z"} +2026/03/21 20:33:33 [metric_collector] {"stage_name":"metric_collector","events_processed":8859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1771.8,"last_update":"2026-03-21T20:33:28.869691213Z"} +2026/03/21 20:33:33 ───────────────────────────────────────────────── +2026/03/21 20:33:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:33:38 [transform_engine] {"stage_name":"transform_engine","events_processed":295,"events_dropped":0,"avg_latency_ms":144.69930060011652,"throughput_eps":0,"last_update":"2026-03-21T20:33:33.966003054Z"} +2026/03/21 20:33:38 [detection_layer] {"stage_name":"detection_layer","events_processed":295,"events_dropped":0,"avg_latency_ms":18.207030431049837,"throughput_eps":0,"last_update":"2026-03-21T20:33:33.965991311Z"} +2026/03/21 20:33:38 [log_collector] {"stage_name":"log_collector","events_processed":14769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2953.8,"last_update":"2026-03-21T20:33:33.869935901Z"} +2026/03/21 20:33:38 [metric_collector] {"stage_name":"metric_collector","events_processed":8864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1772.8,"last_update":"2026-03-21T20:33:33.870286172Z"} +2026/03/21 20:33:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:33:33.878631746Z"} +2026/03/21 20:33:38 ───────────────────────────────────────────────── +2026/03/21 20:33:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:33:43 [transform_engine] {"stage_name":"transform_engine","events_processed":295,"events_dropped":0,"avg_latency_ms":144.69930060011652,"throughput_eps":0,"last_update":"2026-03-21T20:33:38.96544325Z"} +2026/03/21 20:33:43 [detection_layer] {"stage_name":"detection_layer","events_processed":295,"events_dropped":0,"avg_latency_ms":18.207030431049837,"throughput_eps":0,"last_update":"2026-03-21T20:33:38.965431617Z"} +2026/03/21 20:33:43 [log_collector] {"stage_name":"log_collector","events_processed":14769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2953.8,"last_update":"2026-03-21T20:33:38.869442334Z"} +2026/03/21 20:33:43 [metric_collector] {"stage_name":"metric_collector","events_processed":8869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1773.8,"last_update":"2026-03-21T20:33:38.869794207Z"} +2026/03/21 20:33:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:33:38.87909944Z"} +2026/03/21 20:33:43 ───────────────────────────────────────────────── +2026/03/21 20:33:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:33:48 [metric_collector] {"stage_name":"metric_collector","events_processed":8874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1774.8,"last_update":"2026-03-21T20:33:43.86981734Z"} +2026/03/21 20:33:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:33:43.878508617Z"} +2026/03/21 20:33:48 [transform_engine] {"stage_name":"transform_engine","events_processed":295,"events_dropped":0,"avg_latency_ms":144.69930060011652,"throughput_eps":0,"last_update":"2026-03-21T20:33:43.965694319Z"} +2026/03/21 20:33:48 [detection_layer] {"stage_name":"detection_layer","events_processed":295,"events_dropped":0,"avg_latency_ms":18.207030431049837,"throughput_eps":0,"last_update":"2026-03-21T20:33:43.965682066Z"} +2026/03/21 20:33:48 [log_collector] {"stage_name":"log_collector","events_processed":14769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2953.8,"last_update":"2026-03-21T20:33:43.869706228Z"} +2026/03/21 20:33:48 ───────────────────────────────────────────────── +Saved state: 12 clusters, 14770 messages, reason: none +2026/03/21 20:33:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:33:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:33:48.880387364Z"} +2026/03/21 20:33:53 [transform_engine] {"stage_name":"transform_engine","events_processed":296,"events_dropped":0,"avg_latency_ms":129.8908992800932,"throughput_eps":0,"last_update":"2026-03-21T20:33:49.036447146Z"} +2026/03/21 20:33:53 [detection_layer] {"stage_name":"detection_layer","events_processed":295,"events_dropped":0,"avg_latency_ms":18.207030431049837,"throughput_eps":0,"last_update":"2026-03-21T20:33:48.965774683Z"} +2026/03/21 20:33:53 [log_collector] {"stage_name":"log_collector","events_processed":14769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2953.8,"last_update":"2026-03-21T20:33:48.869407313Z"} +2026/03/21 20:33:53 [metric_collector] {"stage_name":"metric_collector","events_processed":8879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1775.8,"last_update":"2026-03-21T20:33:48.870122634Z"} +2026/03/21 20:33:53 ───────────────────────────────────────────────── +2026/03/21 20:33:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:33:58 [metric_collector] {"stage_name":"metric_collector","events_processed":8884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1776.8,"last_update":"2026-03-21T20:33:53.869960582Z"} +2026/03/21 20:33:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:33:53.88346064Z"} +2026/03/21 20:33:58 [transform_engine] {"stage_name":"transform_engine","events_processed":296,"events_dropped":0,"avg_latency_ms":129.8908992800932,"throughput_eps":0,"last_update":"2026-03-21T20:33:53.965621899Z"} +2026/03/21 20:33:58 [detection_layer] {"stage_name":"detection_layer","events_processed":296,"events_dropped":0,"avg_latency_ms":18.57168134483987,"throughput_eps":0,"last_update":"2026-03-21T20:33:53.965614475Z"} +2026/03/21 20:33:58 [log_collector] {"stage_name":"log_collector","events_processed":14774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2954.8,"last_update":"2026-03-21T20:33:53.86940589Z"} +2026/03/21 20:33:58 ───────────────────────────────────────────────── +2026/03/21 20:34:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:34:03 [log_collector] {"stage_name":"log_collector","events_processed":14774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2954.8,"last_update":"2026-03-21T20:33:58.869927588Z"} +2026/03/21 20:34:03 [metric_collector] {"stage_name":"metric_collector","events_processed":8889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1777.8,"last_update":"2026-03-21T20:33:58.870398701Z"} +2026/03/21 20:34:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:33:58.876044544Z"} +2026/03/21 20:34:03 [transform_engine] {"stage_name":"transform_engine","events_processed":296,"events_dropped":0,"avg_latency_ms":129.8908992800932,"throughput_eps":0,"last_update":"2026-03-21T20:33:58.965214017Z"} +2026/03/21 20:34:03 [detection_layer] {"stage_name":"detection_layer","events_processed":296,"events_dropped":0,"avg_latency_ms":18.57168134483987,"throughput_eps":0,"last_update":"2026-03-21T20:33:58.965277879Z"} +2026/03/21 20:34:03 ───────────────────────────────────────────────── +2026/03/21 20:34:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:34:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3560,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:34:03.876443008Z"} +2026/03/21 20:34:08 [transform_engine] {"stage_name":"transform_engine","events_processed":296,"events_dropped":0,"avg_latency_ms":129.8908992800932,"throughput_eps":0,"last_update":"2026-03-21T20:34:03.965616116Z"} +2026/03/21 20:34:08 [detection_layer] {"stage_name":"detection_layer","events_processed":296,"events_dropped":0,"avg_latency_ms":18.57168134483987,"throughput_eps":0,"last_update":"2026-03-21T20:34:03.965604154Z"} +2026/03/21 20:34:08 [log_collector] {"stage_name":"log_collector","events_processed":14774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2954.8,"last_update":"2026-03-21T20:34:08.869426558Z"} +2026/03/21 20:34:08 [metric_collector] {"stage_name":"metric_collector","events_processed":8894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1778.8,"last_update":"2026-03-21T20:34:03.869946795Z"} +2026/03/21 20:34:08 ───────────────────────────────────────────────── +2026/03/21 20:34:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:34:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:34:08.875415619Z"} +2026/03/21 20:34:13 [transform_engine] {"stage_name":"transform_engine","events_processed":296,"events_dropped":0,"avg_latency_ms":129.8908992800932,"throughput_eps":0,"last_update":"2026-03-21T20:34:08.965140626Z"} +2026/03/21 20:34:13 [detection_layer] {"stage_name":"detection_layer","events_processed":296,"events_dropped":0,"avg_latency_ms":18.57168134483987,"throughput_eps":0,"last_update":"2026-03-21T20:34:08.966297642Z"} +2026/03/21 20:34:13 [log_collector] {"stage_name":"log_collector","events_processed":14774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2954.8,"last_update":"2026-03-21T20:34:08.869426558Z"} +2026/03/21 20:34:13 [metric_collector] {"stage_name":"metric_collector","events_processed":8899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1779.8,"last_update":"2026-03-21T20:34:08.869720291Z"} +2026/03/21 20:34:13 ───────────────────────────────────────────────── +2026/03/21 20:34:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:34:18 [transform_engine] {"stage_name":"transform_engine","events_processed":296,"events_dropped":0,"avg_latency_ms":129.8908992800932,"throughput_eps":0,"last_update":"2026-03-21T20:34:13.965542255Z"} +2026/03/21 20:34:18 [detection_layer] {"stage_name":"detection_layer","events_processed":296,"events_dropped":0,"avg_latency_ms":18.57168134483987,"throughput_eps":0,"last_update":"2026-03-21T20:34:13.965528057Z"} +2026/03/21 20:34:18 [log_collector] {"stage_name":"log_collector","events_processed":14774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2954.8,"last_update":"2026-03-21T20:34:13.869440405Z"} +2026/03/21 20:34:18 [metric_collector] {"stage_name":"metric_collector","events_processed":8904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1780.8,"last_update":"2026-03-21T20:34:13.869675716Z"} +2026/03/21 20:34:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:34:13.877408697Z"} +2026/03/21 20:34:18 ───────────────────────────────────────────────── +2026/03/21 20:34:19 [ANOMALY] time=2026-03-21T20:34:19Z score=0.8475 method=SEAD details=MAD!:w=0.24,s=0.66 RRCF-fast!:w=0.21,s=0.94 RRCF-mid!:w=0.18,s=0.98 RRCF-slow!:w=0.14,s=0.95 COPOD!:w=0.24,s=0.79 +2026/03/21 20:34:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:34:23 [log_collector] {"stage_name":"log_collector","events_processed":14774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2954.8,"last_update":"2026-03-21T20:34:23.869974367Z"} +2026/03/21 20:34:23 [metric_collector] {"stage_name":"metric_collector","events_processed":8909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1781.8,"last_update":"2026-03-21T20:34:18.869731182Z"} +2026/03/21 20:34:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3566,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:34:18.879601136Z"} +2026/03/21 20:34:23 [transform_engine] {"stage_name":"transform_engine","events_processed":297,"events_dropped":0,"avg_latency_ms":137.26871842407456,"throughput_eps":0,"last_update":"2026-03-21T20:34:19.132541839Z"} +2026/03/21 20:34:23 [detection_layer] {"stage_name":"detection_layer","events_processed":296,"events_dropped":0,"avg_latency_ms":18.57168134483987,"throughput_eps":0,"last_update":"2026-03-21T20:34:18.965733982Z"} +2026/03/21 20:34:23 ───────────────────────────────────────────────── +2026/03/21 20:34:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:34:28 [log_collector] {"stage_name":"log_collector","events_processed":14774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2954.8,"last_update":"2026-03-21T20:34:23.869974367Z"} +2026/03/21 20:34:28 [metric_collector] {"stage_name":"metric_collector","events_processed":8914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1782.8,"last_update":"2026-03-21T20:34:23.870235587Z"} +2026/03/21 20:34:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:34:23.878314762Z"} +2026/03/21 20:34:28 [transform_engine] {"stage_name":"transform_engine","events_processed":297,"events_dropped":0,"avg_latency_ms":137.26871842407456,"throughput_eps":0,"last_update":"2026-03-21T20:34:23.965448976Z"} +2026/03/21 20:34:28 [detection_layer] {"stage_name":"detection_layer","events_processed":297,"events_dropped":0,"avg_latency_ms":16.8997068758719,"throughput_eps":0,"last_update":"2026-03-21T20:34:23.965436823Z"} +2026/03/21 20:34:28 ───────────────────────────────────────────────── +2026/03/21 20:34:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:34:33 [log_collector] {"stage_name":"log_collector","events_processed":14774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2954.8,"last_update":"2026-03-21T20:34:28.869871981Z"} +2026/03/21 20:34:33 [metric_collector] {"stage_name":"metric_collector","events_processed":8919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1783.8,"last_update":"2026-03-21T20:34:28.87012743Z"} +2026/03/21 20:34:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3570,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:34:28.876894131Z"} +2026/03/21 20:34:33 [transform_engine] {"stage_name":"transform_engine","events_processed":297,"events_dropped":0,"avg_latency_ms":137.26871842407456,"throughput_eps":0,"last_update":"2026-03-21T20:34:28.966115533Z"} +2026/03/21 20:34:33 [detection_layer] {"stage_name":"detection_layer","events_processed":297,"events_dropped":0,"avg_latency_ms":16.8997068758719,"throughput_eps":0,"last_update":"2026-03-21T20:34:28.966102417Z"} +2026/03/21 20:34:33 ───────────────────────────────────────────────── +2026/03/21 20:34:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:34:38 [log_collector] {"stage_name":"log_collector","events_processed":14777,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2955.4,"last_update":"2026-03-21T20:34:33.869446968Z"} +2026/03/21 20:34:38 [metric_collector] {"stage_name":"metric_collector","events_processed":8924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1784.8,"last_update":"2026-03-21T20:34:33.870005528Z"} +2026/03/21 20:34:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3572,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:34:33.87622989Z"} +2026/03/21 20:34:38 [transform_engine] {"stage_name":"transform_engine","events_processed":297,"events_dropped":0,"avg_latency_ms":137.26871842407456,"throughput_eps":0,"last_update":"2026-03-21T20:34:33.9655183Z"} +2026/03/21 20:34:38 [detection_layer] {"stage_name":"detection_layer","events_processed":297,"events_dropped":0,"avg_latency_ms":16.8997068758719,"throughput_eps":0,"last_update":"2026-03-21T20:34:33.965505785Z"} +2026/03/21 20:34:38 ───────────────────────────────────────────────── +2026/03/21 20:34:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:34:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:34:38.877756934Z"} +2026/03/21 20:34:43 [transform_engine] {"stage_name":"transform_engine","events_processed":297,"events_dropped":0,"avg_latency_ms":137.26871842407456,"throughput_eps":0,"last_update":"2026-03-21T20:34:38.965954275Z"} +2026/03/21 20:34:43 [detection_layer] {"stage_name":"detection_layer","events_processed":297,"events_dropped":0,"avg_latency_ms":16.8997068758719,"throughput_eps":0,"last_update":"2026-03-21T20:34:38.965943194Z"} +2026/03/21 20:34:43 [log_collector] {"stage_name":"log_collector","events_processed":14785,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2957,"last_update":"2026-03-21T20:34:38.869526711Z"} +2026/03/21 20:34:43 [metric_collector] {"stage_name":"metric_collector","events_processed":8929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1785.8,"last_update":"2026-03-21T20:34:38.869997672Z"} +2026/03/21 20:34:43 ───────────────────────────────────────────────── +2026/03/21 20:34:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:34:48 [log_collector] {"stage_name":"log_collector","events_processed":15138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3027.6,"last_update":"2026-03-21T20:34:48.870153784Z"} +2026/03/21 20:34:48 [metric_collector] {"stage_name":"metric_collector","events_processed":8933,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1786.6,"last_update":"2026-03-21T20:34:43.869366655Z"} +2026/03/21 20:34:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3576,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:34:43.876779734Z"} +2026/03/21 20:34:48 [transform_engine] {"stage_name":"transform_engine","events_processed":297,"events_dropped":0,"avg_latency_ms":137.26871842407456,"throughput_eps":0,"last_update":"2026-03-21T20:34:43.965667165Z"} +2026/03/21 20:34:48 [detection_layer] {"stage_name":"detection_layer","events_processed":297,"events_dropped":0,"avg_latency_ms":16.8997068758719,"throughput_eps":0,"last_update":"2026-03-21T20:34:43.965629874Z"} +2026/03/21 20:34:48 ───────────────────────────────────────────────── +2026/03/21 20:34:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:34:53 [transform_engine] {"stage_name":"transform_engine","events_processed":298,"events_dropped":0,"avg_latency_ms":132.48251333925964,"throughput_eps":0,"last_update":"2026-03-21T20:34:49.079111033Z"} +2026/03/21 20:34:53 [detection_layer] {"stage_name":"detection_layer","events_processed":297,"events_dropped":0,"avg_latency_ms":16.8997068758719,"throughput_eps":0,"last_update":"2026-03-21T20:34:48.965737111Z"} +2026/03/21 20:34:53 [log_collector] {"stage_name":"log_collector","events_processed":15138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3027.6,"last_update":"2026-03-21T20:34:53.869444466Z"} +2026/03/21 20:34:53 [metric_collector] {"stage_name":"metric_collector","events_processed":8939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1787.8,"last_update":"2026-03-21T20:34:48.87062157Z"} +2026/03/21 20:34:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:34:48.879520033Z"} +2026/03/21 20:34:53 ───────────────────────────────────────────────── +2026/03/21 20:34:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:34:58 [metric_collector] {"stage_name":"metric_collector","events_processed":8944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1788.8,"last_update":"2026-03-21T20:34:53.869870933Z"} +2026/03/21 20:34:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3580,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:34:53.878485593Z"} +2026/03/21 20:34:58 [transform_engine] {"stage_name":"transform_engine","events_processed":298,"events_dropped":0,"avg_latency_ms":132.48251333925964,"throughput_eps":0,"last_update":"2026-03-21T20:34:53.965649585Z"} +2026/03/21 20:34:58 [detection_layer] {"stage_name":"detection_layer","events_processed":298,"events_dropped":0,"avg_latency_ms":17.32001630069752,"throughput_eps":0,"last_update":"2026-03-21T20:34:53.965677538Z"} +2026/03/21 20:34:58 [log_collector] {"stage_name":"log_collector","events_processed":15138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3027.6,"last_update":"2026-03-21T20:34:53.869444466Z"} +2026/03/21 20:34:58 ───────────────────────────────────────────────── +2026/03/21 20:35:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:35:03 [transform_engine] {"stage_name":"transform_engine","events_processed":298,"events_dropped":0,"avg_latency_ms":132.48251333925964,"throughput_eps":0,"last_update":"2026-03-21T20:34:58.965073201Z"} +2026/03/21 20:35:03 [detection_layer] {"stage_name":"detection_layer","events_processed":298,"events_dropped":0,"avg_latency_ms":17.32001630069752,"throughput_eps":0,"last_update":"2026-03-21T20:34:58.966189951Z"} +2026/03/21 20:35:03 [log_collector] {"stage_name":"log_collector","events_processed":15138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3027.6,"last_update":"2026-03-21T20:35:03.869926311Z"} +2026/03/21 20:35:03 [metric_collector] {"stage_name":"metric_collector","events_processed":8949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1789.8,"last_update":"2026-03-21T20:34:58.869928625Z"} +2026/03/21 20:35:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:34:58.877883191Z"} +2026/03/21 20:35:03 ───────────────────────────────────────────────── +2026/03/21 20:35:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:35:08 [detection_layer] {"stage_name":"detection_layer","events_processed":298,"events_dropped":0,"avg_latency_ms":17.32001630069752,"throughput_eps":0,"last_update":"2026-03-21T20:35:03.966159783Z"} +2026/03/21 20:35:08 [log_collector] {"stage_name":"log_collector","events_processed":15138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3027.6,"last_update":"2026-03-21T20:35:03.869926311Z"} +2026/03/21 20:35:08 [metric_collector] {"stage_name":"metric_collector","events_processed":8954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1790.8,"last_update":"2026-03-21T20:35:03.870390019Z"} +2026/03/21 20:35:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:35:03.878868329Z"} +2026/03/21 20:35:08 [transform_engine] {"stage_name":"transform_engine","events_processed":298,"events_dropped":0,"avg_latency_ms":132.48251333925964,"throughput_eps":0,"last_update":"2026-03-21T20:35:03.96614268Z"} +2026/03/21 20:35:08 ───────────────────────────────────────────────── +2026/03/21 20:35:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:35:13 [log_collector] {"stage_name":"log_collector","events_processed":15138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3027.6,"last_update":"2026-03-21T20:35:08.870266554Z"} +2026/03/21 20:35:13 [metric_collector] {"stage_name":"metric_collector","events_processed":8959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1791.8,"last_update":"2026-03-21T20:35:08.870673313Z"} +2026/03/21 20:35:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3586,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:35:08.878921361Z"} +2026/03/21 20:35:13 [transform_engine] {"stage_name":"transform_engine","events_processed":298,"events_dropped":0,"avg_latency_ms":132.48251333925964,"throughput_eps":0,"last_update":"2026-03-21T20:35:08.965132667Z"} +2026/03/21 20:35:13 [detection_layer] {"stage_name":"detection_layer","events_processed":298,"events_dropped":0,"avg_latency_ms":17.32001630069752,"throughput_eps":0,"last_update":"2026-03-21T20:35:08.966292659Z"} +2026/03/21 20:35:13 ───────────────────────────────────────────────── +2026/03/21 20:35:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:35:18 [detection_layer] {"stage_name":"detection_layer","events_processed":298,"events_dropped":0,"avg_latency_ms":17.32001630069752,"throughput_eps":0,"last_update":"2026-03-21T20:35:13.96605219Z"} +2026/03/21 20:35:18 [log_collector] {"stage_name":"log_collector","events_processed":15138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3027.6,"last_update":"2026-03-21T20:35:13.86987799Z"} +2026/03/21 20:35:18 [metric_collector] {"stage_name":"metric_collector","events_processed":8964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1792.8,"last_update":"2026-03-21T20:35:13.870294619Z"} +2026/03/21 20:35:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3588,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:35:13.878756907Z"} +2026/03/21 20:35:18 [transform_engine] {"stage_name":"transform_engine","events_processed":298,"events_dropped":0,"avg_latency_ms":132.48251333925964,"throughput_eps":0,"last_update":"2026-03-21T20:35:13.966081105Z"} +2026/03/21 20:35:18 ───────────────────────────────────────────────── +2026/03/21 20:35:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:35:23 [transform_engine] {"stage_name":"transform_engine","events_processed":299,"events_dropped":0,"avg_latency_ms":121.06879947140771,"throughput_eps":0,"last_update":"2026-03-21T20:35:19.04131644Z"} +2026/03/21 20:35:23 [detection_layer] {"stage_name":"detection_layer","events_processed":298,"events_dropped":0,"avg_latency_ms":17.32001630069752,"throughput_eps":0,"last_update":"2026-03-21T20:35:18.966008698Z"} +2026/03/21 20:35:23 [log_collector] {"stage_name":"log_collector","events_processed":15138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3027.6,"last_update":"2026-03-21T20:35:23.870220741Z"} +2026/03/21 20:35:23 [metric_collector] {"stage_name":"metric_collector","events_processed":8969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1793.8,"last_update":"2026-03-21T20:35:18.870072094Z"} +2026/03/21 20:35:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:35:18.8795614Z"} +2026/03/21 20:35:23 ───────────────────────────────────────────────── +2026/03/21 20:35:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:35:28 [log_collector] {"stage_name":"log_collector","events_processed":15138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3027.6,"last_update":"2026-03-21T20:35:28.869720264Z"} +2026/03/21 20:35:28 [metric_collector] {"stage_name":"metric_collector","events_processed":8974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1794.8,"last_update":"2026-03-21T20:35:23.870907466Z"} +2026/03/21 20:35:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3592,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:35:23.879249555Z"} +2026/03/21 20:35:28 [transform_engine] {"stage_name":"transform_engine","events_processed":299,"events_dropped":0,"avg_latency_ms":121.06879947140771,"throughput_eps":0,"last_update":"2026-03-21T20:35:23.965617561Z"} +2026/03/21 20:35:28 [detection_layer] {"stage_name":"detection_layer","events_processed":299,"events_dropped":0,"avg_latency_ms":18.10610164055802,"throughput_eps":0,"last_update":"2026-03-21T20:35:23.965601851Z"} +2026/03/21 20:35:28 ───────────────────────────────────────────────── +2026/03/21 20:35:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:35:33 [log_collector] {"stage_name":"log_collector","events_processed":15138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3027.6,"last_update":"2026-03-21T20:35:28.869720264Z"} +2026/03/21 20:35:33 [metric_collector] {"stage_name":"metric_collector","events_processed":8979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1795.8,"last_update":"2026-03-21T20:35:28.870097417Z"} +2026/03/21 20:35:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:35:28.87908463Z"} +2026/03/21 20:35:33 [transform_engine] {"stage_name":"transform_engine","events_processed":299,"events_dropped":0,"avg_latency_ms":121.06879947140771,"throughput_eps":0,"last_update":"2026-03-21T20:35:28.965252724Z"} +2026/03/21 20:35:33 [detection_layer] {"stage_name":"detection_layer","events_processed":299,"events_dropped":0,"avg_latency_ms":18.10610164055802,"throughput_eps":0,"last_update":"2026-03-21T20:35:28.965307068Z"} +2026/03/21 20:35:33 ───────────────────────────────────────────────── +2026/03/21 20:35:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:35:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:35:33.879287342Z"} +2026/03/21 20:35:38 [transform_engine] {"stage_name":"transform_engine","events_processed":299,"events_dropped":0,"avg_latency_ms":121.06879947140771,"throughput_eps":0,"last_update":"2026-03-21T20:35:33.965549575Z"} +2026/03/21 20:35:38 [detection_layer] {"stage_name":"detection_layer","events_processed":299,"events_dropped":0,"avg_latency_ms":18.10610164055802,"throughput_eps":0,"last_update":"2026-03-21T20:35:33.965540767Z"} +2026/03/21 20:35:38 [log_collector] {"stage_name":"log_collector","events_processed":15138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3027.6,"last_update":"2026-03-21T20:35:33.870342519Z"} +2026/03/21 20:35:38 [metric_collector] {"stage_name":"metric_collector","events_processed":8984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1796.8,"last_update":"2026-03-21T20:35:33.870812499Z"} +2026/03/21 20:35:38 ───────────────────────────────────────────────── +2026/03/21 20:35:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:35:43 [log_collector] {"stage_name":"log_collector","events_processed":15138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3027.6,"last_update":"2026-03-21T20:35:38.86945494Z"} +2026/03/21 20:35:43 [metric_collector] {"stage_name":"metric_collector","events_processed":8989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1797.8,"last_update":"2026-03-21T20:35:38.869892918Z"} +2026/03/21 20:35:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:35:38.878671302Z"} +2026/03/21 20:35:43 [transform_engine] {"stage_name":"transform_engine","events_processed":299,"events_dropped":0,"avg_latency_ms":121.06879947140771,"throughput_eps":0,"last_update":"2026-03-21T20:35:38.965961626Z"} +2026/03/21 20:35:43 [detection_layer] {"stage_name":"detection_layer","events_processed":299,"events_dropped":0,"avg_latency_ms":18.10610164055802,"throughput_eps":0,"last_update":"2026-03-21T20:35:38.965954441Z"} +2026/03/21 20:35:43 ───────────────────────────────────────────────── +2026/03/21 20:35:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:35:48 [log_collector] {"stage_name":"log_collector","events_processed":15138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3027.6,"last_update":"2026-03-21T20:35:43.869448039Z"} +2026/03/21 20:35:48 [metric_collector] {"stage_name":"metric_collector","events_processed":8994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1798.8,"last_update":"2026-03-21T20:35:43.869756409Z"} +2026/03/21 20:35:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:35:43.878364968Z"} +2026/03/21 20:35:48 [transform_engine] {"stage_name":"transform_engine","events_processed":299,"events_dropped":0,"avg_latency_ms":121.06879947140771,"throughput_eps":0,"last_update":"2026-03-21T20:35:43.96574338Z"} +2026/03/21 20:35:48 [detection_layer] {"stage_name":"detection_layer","events_processed":299,"events_dropped":0,"avg_latency_ms":18.10610164055802,"throughput_eps":0,"last_update":"2026-03-21T20:35:43.965720466Z"} +2026/03/21 20:35:48 ───────────────────────────────────────────────── +2026/03/21 20:35:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:35:53 [log_collector] {"stage_name":"log_collector","events_processed":15138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3027.6,"last_update":"2026-03-21T20:35:48.870007502Z"} +2026/03/21 20:35:53 [metric_collector] {"stage_name":"metric_collector","events_processed":8999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1799.8,"last_update":"2026-03-21T20:35:48.870247994Z"} +2026/03/21 20:35:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3602,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:35:48.879583605Z"} +2026/03/21 20:35:53 [transform_engine] {"stage_name":"transform_engine","events_processed":300,"events_dropped":0,"avg_latency_ms":111.21924817712618,"throughput_eps":0,"last_update":"2026-03-21T20:35:49.037571439Z"} +2026/03/21 20:35:53 [detection_layer] {"stage_name":"detection_layer","events_processed":299,"events_dropped":0,"avg_latency_ms":18.10610164055802,"throughput_eps":0,"last_update":"2026-03-21T20:35:48.965739945Z"} +2026/03/21 20:35:53 ───────────────────────────────────────────────── +2026/03/21 20:35:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:35:58 [detection_layer] {"stage_name":"detection_layer","events_processed":300,"events_dropped":0,"avg_latency_ms":18.392046912446418,"throughput_eps":0,"last_update":"2026-03-21T20:35:53.965557719Z"} +2026/03/21 20:35:58 [log_collector] {"stage_name":"log_collector","events_processed":15138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3027.6,"last_update":"2026-03-21T20:35:58.869430713Z"} +2026/03/21 20:35:58 [metric_collector] {"stage_name":"metric_collector","events_processed":9004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1800.8,"last_update":"2026-03-21T20:35:53.87062634Z"} +2026/03/21 20:35:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:35:53.880032757Z"} +2026/03/21 20:35:58 [transform_engine] {"stage_name":"transform_engine","events_processed":300,"events_dropped":0,"avg_latency_ms":111.21924817712618,"throughput_eps":0,"last_update":"2026-03-21T20:35:53.9655689Z"} +2026/03/21 20:35:58 ───────────────────────────────────────────────── +2026/03/21 20:36:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:36:03 [transform_engine] {"stage_name":"transform_engine","events_processed":300,"events_dropped":0,"avg_latency_ms":111.21924817712618,"throughput_eps":0,"last_update":"2026-03-21T20:35:58.965995089Z"} +2026/03/21 20:36:03 [detection_layer] {"stage_name":"detection_layer","events_processed":300,"events_dropped":0,"avg_latency_ms":18.392046912446418,"throughput_eps":0,"last_update":"2026-03-21T20:35:58.965884046Z"} +2026/03/21 20:36:03 [log_collector] {"stage_name":"log_collector","events_processed":15138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3027.6,"last_update":"2026-03-21T20:35:58.869430713Z"} +2026/03/21 20:36:03 [metric_collector] {"stage_name":"metric_collector","events_processed":9009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1801.8,"last_update":"2026-03-21T20:35:58.869718956Z"} +2026/03/21 20:36:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:35:58.878672565Z"} +2026/03/21 20:36:03 ───────────────────────────────────────────────── +2026/03/21 20:36:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:36:08 [log_collector] {"stage_name":"log_collector","events_processed":15138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3027.6,"last_update":"2026-03-21T20:36:08.870306656Z"} +2026/03/21 20:36:08 [metric_collector] {"stage_name":"metric_collector","events_processed":9014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1802.8,"last_update":"2026-03-21T20:36:03.869885246Z"} +2026/03/21 20:36:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:36:03.877975052Z"} +2026/03/21 20:36:08 [transform_engine] {"stage_name":"transform_engine","events_processed":300,"events_dropped":0,"avg_latency_ms":111.21924817712618,"throughput_eps":0,"last_update":"2026-03-21T20:36:03.965103454Z"} +2026/03/21 20:36:08 [detection_layer] {"stage_name":"detection_layer","events_processed":300,"events_dropped":0,"avg_latency_ms":18.392046912446418,"throughput_eps":0,"last_update":"2026-03-21T20:36:03.96632331Z"} +2026/03/21 20:36:08 ───────────────────────────────────────────────── +2026/03/21 20:36:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:36:13 [log_collector] {"stage_name":"log_collector","events_processed":15138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3027.6,"last_update":"2026-03-21T20:36:08.870306656Z"} +2026/03/21 20:36:13 [metric_collector] {"stage_name":"metric_collector","events_processed":9019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1803.8,"last_update":"2026-03-21T20:36:08.87062145Z"} +2026/03/21 20:36:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:36:08.879160275Z"} +2026/03/21 20:36:13 [transform_engine] {"stage_name":"transform_engine","events_processed":300,"events_dropped":0,"avg_latency_ms":111.21924817712618,"throughput_eps":0,"last_update":"2026-03-21T20:36:08.965374406Z"} +2026/03/21 20:36:13 [detection_layer] {"stage_name":"detection_layer","events_processed":300,"events_dropped":0,"avg_latency_ms":18.392046912446418,"throughput_eps":0,"last_update":"2026-03-21T20:36:08.96541312Z"} +2026/03/21 20:36:13 ───────────────────────────────────────────────── +2026/03/21 20:36:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:36:18 [log_collector] {"stage_name":"log_collector","events_processed":15138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3027.6,"last_update":"2026-03-21T20:36:18.870006366Z"} +2026/03/21 20:36:18 [metric_collector] {"stage_name":"metric_collector","events_processed":9024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1804.8,"last_update":"2026-03-21T20:36:13.869851817Z"} +2026/03/21 20:36:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:36:13.879252113Z"} +2026/03/21 20:36:18 [transform_engine] {"stage_name":"transform_engine","events_processed":300,"events_dropped":0,"avg_latency_ms":111.21924817712618,"throughput_eps":0,"last_update":"2026-03-21T20:36:13.965772191Z"} +2026/03/21 20:36:18 [detection_layer] {"stage_name":"detection_layer","events_processed":300,"events_dropped":0,"avg_latency_ms":18.392046912446418,"throughput_eps":0,"last_update":"2026-03-21T20:36:13.965615371Z"} +2026/03/21 20:36:18 ───────────────────────────────────────────────── +2026/03/21 20:36:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:36:23 [detection_layer] {"stage_name":"detection_layer","events_processed":300,"events_dropped":0,"avg_latency_ms":18.392046912446418,"throughput_eps":0,"last_update":"2026-03-21T20:36:18.965960655Z"} +2026/03/21 20:36:23 [log_collector] {"stage_name":"log_collector","events_processed":15138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3027.6,"last_update":"2026-03-21T20:36:23.869982032Z"} +2026/03/21 20:36:23 [metric_collector] {"stage_name":"metric_collector","events_processed":9029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1805.8,"last_update":"2026-03-21T20:36:18.870337211Z"} +2026/03/21 20:36:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:36:18.879677611Z"} +2026/03/21 20:36:23 [transform_engine] {"stage_name":"transform_engine","events_processed":300,"events_dropped":0,"avg_latency_ms":111.21924817712618,"throughput_eps":0,"last_update":"2026-03-21T20:36:18.965854932Z"} +2026/03/21 20:36:23 ───────────────────────────────────────────────── +2026/03/21 20:36:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:36:28 [metric_collector] {"stage_name":"metric_collector","events_processed":9034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1806.8,"last_update":"2026-03-21T20:36:23.870334597Z"} +2026/03/21 20:36:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:36:23.878539343Z"} +2026/03/21 20:36:28 [transform_engine] {"stage_name":"transform_engine","events_processed":301,"events_dropped":0,"avg_latency_ms":102.89568894170094,"throughput_eps":0,"last_update":"2026-03-21T20:36:23.965744442Z"} +2026/03/21 20:36:28 [detection_layer] {"stage_name":"detection_layer","events_processed":301,"events_dropped":0,"avg_latency_ms":18.258695329957135,"throughput_eps":0,"last_update":"2026-03-21T20:36:23.965735636Z"} +2026/03/21 20:36:28 [log_collector] {"stage_name":"log_collector","events_processed":15138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3027.6,"last_update":"2026-03-21T20:36:23.869982032Z"} +2026/03/21 20:36:28 ───────────────────────────────────────────────── +2026/03/21 20:36:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:36:33 [log_collector] {"stage_name":"log_collector","events_processed":15138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3027.6,"last_update":"2026-03-21T20:36:33.870058887Z"} +2026/03/21 20:36:33 [metric_collector] {"stage_name":"metric_collector","events_processed":9039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1807.8,"last_update":"2026-03-21T20:36:28.87089288Z"} +2026/03/21 20:36:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:36:28.87999767Z"} +2026/03/21 20:36:33 [transform_engine] {"stage_name":"transform_engine","events_processed":301,"events_dropped":0,"avg_latency_ms":102.89568894170094,"throughput_eps":0,"last_update":"2026-03-21T20:36:28.965097237Z"} +2026/03/21 20:36:33 [detection_layer] {"stage_name":"detection_layer","events_processed":301,"events_dropped":0,"avg_latency_ms":18.258695329957135,"throughput_eps":0,"last_update":"2026-03-21T20:36:28.966197234Z"} +2026/03/21 20:36:33 ───────────────────────────────────────────────── +2026/03/21 20:36:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:36:38 [log_collector] {"stage_name":"log_collector","events_processed":15138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3027.6,"last_update":"2026-03-21T20:36:38.869413143Z"} +2026/03/21 20:36:38 [metric_collector] {"stage_name":"metric_collector","events_processed":9044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1808.8,"last_update":"2026-03-21T20:36:33.870498729Z"} +2026/03/21 20:36:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3620,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:36:33.879493958Z"} +2026/03/21 20:36:38 [transform_engine] {"stage_name":"transform_engine","events_processed":301,"events_dropped":0,"avg_latency_ms":102.89568894170094,"throughput_eps":0,"last_update":"2026-03-21T20:36:33.965842396Z"} +2026/03/21 20:36:38 [detection_layer] {"stage_name":"detection_layer","events_processed":301,"events_dropped":0,"avg_latency_ms":18.258695329957135,"throughput_eps":0,"last_update":"2026-03-21T20:36:33.965830534Z"} +2026/03/21 20:36:38 ───────────────────────────────────────────────── +Saved state: 12 clusters, 15139 messages, reason: none +2026/03/21 20:36:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:36:43 [log_collector] {"stage_name":"log_collector","events_processed":15138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3027.6,"last_update":"2026-03-21T20:36:38.869413143Z"} +2026/03/21 20:36:43 [metric_collector] {"stage_name":"metric_collector","events_processed":9049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1809.8,"last_update":"2026-03-21T20:36:38.869815994Z"} +2026/03/21 20:36:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3622,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:36:38.878423271Z"} +2026/03/21 20:36:43 [transform_engine] {"stage_name":"transform_engine","events_processed":301,"events_dropped":0,"avg_latency_ms":102.89568894170094,"throughput_eps":0,"last_update":"2026-03-21T20:36:38.965632648Z"} +2026/03/21 20:36:43 [detection_layer] {"stage_name":"detection_layer","events_processed":301,"events_dropped":0,"avg_latency_ms":18.258695329957135,"throughput_eps":0,"last_update":"2026-03-21T20:36:38.965620515Z"} +2026/03/21 20:36:43 ───────────────────────────────────────────────── +2026/03/21 20:36:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:36:48 [log_collector] {"stage_name":"log_collector","events_processed":15141,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3028.2,"last_update":"2026-03-21T20:36:43.869690157Z"} +2026/03/21 20:36:48 [metric_collector] {"stage_name":"metric_collector","events_processed":9054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1810.8,"last_update":"2026-03-21T20:36:43.870261432Z"} +2026/03/21 20:36:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:36:43.878110164Z"} +2026/03/21 20:36:48 [transform_engine] {"stage_name":"transform_engine","events_processed":301,"events_dropped":0,"avg_latency_ms":102.89568894170094,"throughput_eps":0,"last_update":"2026-03-21T20:36:43.965435865Z"} +2026/03/21 20:36:48 [detection_layer] {"stage_name":"detection_layer","events_processed":301,"events_dropped":0,"avg_latency_ms":18.258695329957135,"throughput_eps":0,"last_update":"2026-03-21T20:36:43.965423701Z"} +2026/03/21 20:36:48 ───────────────────────────────────────────────── +2026/03/21 20:36:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:36:53 [log_collector] {"stage_name":"log_collector","events_processed":15141,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3028.2,"last_update":"2026-03-21T20:36:48.870101048Z"} +2026/03/21 20:36:53 [metric_collector] {"stage_name":"metric_collector","events_processed":9059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1811.8,"last_update":"2026-03-21T20:36:48.870522265Z"} +2026/03/21 20:36:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:36:48.877286291Z"} +2026/03/21 20:36:53 [transform_engine] {"stage_name":"transform_engine","events_processed":302,"events_dropped":0,"avg_latency_ms":103.01704795336076,"throughput_eps":0,"last_update":"2026-03-21T20:36:49.069095305Z"} +2026/03/21 20:36:53 [detection_layer] {"stage_name":"detection_layer","events_processed":301,"events_dropped":0,"avg_latency_ms":18.258695329957135,"throughput_eps":0,"last_update":"2026-03-21T20:36:48.965575266Z"} +2026/03/21 20:36:53 ───────────────────────────────────────────────── +2026/03/21 20:36:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:36:58 [metric_collector] {"stage_name":"metric_collector","events_processed":9064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1812.8,"last_update":"2026-03-21T20:36:53.870321394Z"} +2026/03/21 20:36:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:36:53.875753308Z"} +2026/03/21 20:36:58 [transform_engine] {"stage_name":"transform_engine","events_processed":302,"events_dropped":0,"avg_latency_ms":103.01704795336076,"throughput_eps":0,"last_update":"2026-03-21T20:36:53.965951481Z"} +2026/03/21 20:36:58 [detection_layer] {"stage_name":"detection_layer","events_processed":302,"events_dropped":0,"avg_latency_ms":17.61794746396571,"throughput_eps":0,"last_update":"2026-03-21T20:36:53.965939016Z"} +2026/03/21 20:36:58 [log_collector] {"stage_name":"log_collector","events_processed":15141,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3028.2,"last_update":"2026-03-21T20:36:53.870107595Z"} +2026/03/21 20:36:58 ───────────────────────────────────────────────── +2026/03/21 20:37:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:37:03 [transform_engine] {"stage_name":"transform_engine","events_processed":302,"events_dropped":0,"avg_latency_ms":103.01704795336076,"throughput_eps":0,"last_update":"2026-03-21T20:36:58.965285902Z"} +2026/03/21 20:37:03 [detection_layer] {"stage_name":"detection_layer","events_processed":302,"events_dropped":0,"avg_latency_ms":17.61794746396571,"throughput_eps":0,"last_update":"2026-03-21T20:36:58.965277124Z"} +2026/03/21 20:37:03 [log_collector] {"stage_name":"log_collector","events_processed":15141,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3028.2,"last_update":"2026-03-21T20:36:58.869431745Z"} +2026/03/21 20:37:03 [metric_collector] {"stage_name":"metric_collector","events_processed":9069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1813.8,"last_update":"2026-03-21T20:36:58.869644042Z"} +2026/03/21 20:37:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:36:58.876103615Z"} +2026/03/21 20:37:03 ───────────────────────────────────────────────── +2026/03/21 20:37:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:37:08 [metric_collector] {"stage_name":"metric_collector","events_processed":9074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1814.8,"last_update":"2026-03-21T20:37:03.869855792Z"} +2026/03/21 20:37:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3632,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:37:03.875866214Z"} +2026/03/21 20:37:08 [transform_engine] {"stage_name":"transform_engine","events_processed":302,"events_dropped":0,"avg_latency_ms":103.01704795336076,"throughput_eps":0,"last_update":"2026-03-21T20:37:03.966038547Z"} +2026/03/21 20:37:08 [detection_layer] {"stage_name":"detection_layer","events_processed":302,"events_dropped":0,"avg_latency_ms":17.61794746396571,"throughput_eps":0,"last_update":"2026-03-21T20:37:03.9660296Z"} +2026/03/21 20:37:08 [log_collector] {"stage_name":"log_collector","events_processed":15141,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3028.2,"last_update":"2026-03-21T20:37:03.869428534Z"} +2026/03/21 20:37:08 ───────────────────────────────────────────────── +2026/03/21 20:37:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:37:13 [log_collector] {"stage_name":"log_collector","events_processed":15141,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3028.2,"last_update":"2026-03-21T20:37:08.87016639Z"} +2026/03/21 20:37:13 [metric_collector] {"stage_name":"metric_collector","events_processed":9079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1815.8,"last_update":"2026-03-21T20:37:08.870521931Z"} +2026/03/21 20:37:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:37:08.877621209Z"} +2026/03/21 20:37:13 [transform_engine] {"stage_name":"transform_engine","events_processed":302,"events_dropped":0,"avg_latency_ms":103.01704795336076,"throughput_eps":0,"last_update":"2026-03-21T20:37:08.965856171Z"} +2026/03/21 20:37:13 [detection_layer] {"stage_name":"detection_layer","events_processed":302,"events_dropped":0,"avg_latency_ms":17.61794746396571,"throughput_eps":0,"last_update":"2026-03-21T20:37:08.965844729Z"} +2026/03/21 20:37:13 ───────────────────────────────────────────────── +2026/03/21 20:37:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:37:18 [log_collector] {"stage_name":"log_collector","events_processed":15141,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3028.2,"last_update":"2026-03-21T20:37:13.869406288Z"} +2026/03/21 20:37:18 [metric_collector] {"stage_name":"metric_collector","events_processed":9084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1816.8,"last_update":"2026-03-21T20:37:13.869813809Z"} +2026/03/21 20:37:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:37:13.87593337Z"} +2026/03/21 20:37:18 [transform_engine] {"stage_name":"transform_engine","events_processed":302,"events_dropped":0,"avg_latency_ms":103.01704795336076,"throughput_eps":0,"last_update":"2026-03-21T20:37:13.966113408Z"} +2026/03/21 20:37:18 [detection_layer] {"stage_name":"detection_layer","events_processed":302,"events_dropped":0,"avg_latency_ms":17.61794746396571,"throughput_eps":0,"last_update":"2026-03-21T20:37:13.966149898Z"} +2026/03/21 20:37:18 ───────────────────────────────────────────────── +2026/03/21 20:37:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:37:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:37:18.875819707Z"} +2026/03/21 20:37:23 [transform_engine] {"stage_name":"transform_engine","events_processed":302,"events_dropped":0,"avg_latency_ms":103.01704795336076,"throughput_eps":0,"last_update":"2026-03-21T20:37:18.965970128Z"} +2026/03/21 20:37:23 [detection_layer] {"stage_name":"detection_layer","events_processed":302,"events_dropped":0,"avg_latency_ms":17.61794746396571,"throughput_eps":0,"last_update":"2026-03-21T20:37:18.96598677Z"} +2026/03/21 20:37:23 [log_collector] {"stage_name":"log_collector","events_processed":15141,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3028.2,"last_update":"2026-03-21T20:37:18.869594193Z"} +2026/03/21 20:37:23 [metric_collector] {"stage_name":"metric_collector","events_processed":9089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1817.8,"last_update":"2026-03-21T20:37:18.869799826Z"} +2026/03/21 20:37:23 ───────────────────────────────────────────────── +2026/03/21 20:37:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:37:28 [metric_collector] {"stage_name":"metric_collector","events_processed":9094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1818.8,"last_update":"2026-03-21T20:37:23.869939209Z"} +2026/03/21 20:37:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3640,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:37:23.876649602Z"} +2026/03/21 20:37:28 [transform_engine] {"stage_name":"transform_engine","events_processed":303,"events_dropped":0,"avg_latency_ms":362.7407331626886,"throughput_eps":0,"last_update":"2026-03-21T20:37:23.966052361Z"} +2026/03/21 20:37:28 [detection_layer] {"stage_name":"detection_layer","events_processed":303,"events_dropped":0,"avg_latency_ms":16.58432737117257,"throughput_eps":0,"last_update":"2026-03-21T20:37:23.966071557Z"} +2026/03/21 20:37:28 [log_collector] {"stage_name":"log_collector","events_processed":15141,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3028.2,"last_update":"2026-03-21T20:37:23.869655286Z"} +2026/03/21 20:37:28 ───────────────────────────────────────────────── +2026/03/21 20:37:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:37:33 [metric_collector] {"stage_name":"metric_collector","events_processed":9099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1819.8,"last_update":"2026-03-21T20:37:28.870179384Z"} +2026/03/21 20:37:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:37:28.876324524Z"} +2026/03/21 20:37:33 [transform_engine] {"stage_name":"transform_engine","events_processed":303,"events_dropped":0,"avg_latency_ms":362.7407331626886,"throughput_eps":0,"last_update":"2026-03-21T20:37:28.965526077Z"} +2026/03/21 20:37:33 [detection_layer] {"stage_name":"detection_layer","events_processed":303,"events_dropped":0,"avg_latency_ms":16.58432737117257,"throughput_eps":0,"last_update":"2026-03-21T20:37:28.965497803Z"} +2026/03/21 20:37:33 [log_collector] {"stage_name":"log_collector","events_processed":15141,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3028.2,"last_update":"2026-03-21T20:37:33.869916194Z"} +2026/03/21 20:37:33 ───────────────────────────────────────────────── +2026/03/21 20:37:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:37:38 [detection_layer] {"stage_name":"detection_layer","events_processed":303,"events_dropped":0,"avg_latency_ms":16.58432737117257,"throughput_eps":0,"last_update":"2026-03-21T20:37:33.965440718Z"} +2026/03/21 20:37:38 [log_collector] {"stage_name":"log_collector","events_processed":15141,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3028.2,"last_update":"2026-03-21T20:37:33.869916194Z"} +2026/03/21 20:37:38 [metric_collector] {"stage_name":"metric_collector","events_processed":9104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1820.8,"last_update":"2026-03-21T20:37:33.870163438Z"} +2026/03/21 20:37:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:37:33.87621056Z"} +2026/03/21 20:37:38 [transform_engine] {"stage_name":"transform_engine","events_processed":303,"events_dropped":0,"avg_latency_ms":362.7407331626886,"throughput_eps":0,"last_update":"2026-03-21T20:37:33.965413877Z"} +2026/03/21 20:37:38 ───────────────────────────────────────────────── +2026/03/21 20:37:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:37:43 [metric_collector] {"stage_name":"metric_collector","events_processed":9108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1821.6,"last_update":"2026-03-21T20:37:38.869542251Z"} +2026/03/21 20:37:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3646,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:37:38.878836864Z"} +2026/03/21 20:37:43 [transform_engine] {"stage_name":"transform_engine","events_processed":303,"events_dropped":0,"avg_latency_ms":362.7407331626886,"throughput_eps":0,"last_update":"2026-03-21T20:37:38.965948014Z"} +2026/03/21 20:37:43 [detection_layer] {"stage_name":"detection_layer","events_processed":303,"events_dropped":0,"avg_latency_ms":16.58432737117257,"throughput_eps":0,"last_update":"2026-03-21T20:37:38.96591992Z"} +2026/03/21 20:37:43 [log_collector] {"stage_name":"log_collector","events_processed":15141,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3028.2,"last_update":"2026-03-21T20:37:38.869471587Z"} +2026/03/21 20:37:43 ───────────────────────────────────────────────── +2026/03/21 20:37:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:37:48 [log_collector] {"stage_name":"log_collector","events_processed":15141,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3028.2,"last_update":"2026-03-21T20:37:48.869682071Z"} +2026/03/21 20:37:48 [metric_collector] {"stage_name":"metric_collector","events_processed":9114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1822.8,"last_update":"2026-03-21T20:37:43.870287826Z"} +2026/03/21 20:37:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:37:43.879278726Z"} +2026/03/21 20:37:48 [transform_engine] {"stage_name":"transform_engine","events_processed":303,"events_dropped":0,"avg_latency_ms":362.7407331626886,"throughput_eps":0,"last_update":"2026-03-21T20:37:43.965456428Z"} +2026/03/21 20:37:48 [detection_layer] {"stage_name":"detection_layer","events_processed":303,"events_dropped":0,"avg_latency_ms":16.58432737117257,"throughput_eps":0,"last_update":"2026-03-21T20:37:43.965495904Z"} +2026/03/21 20:37:48 ───────────────────────────────────────────────── +2026/03/21 20:37:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:37:53 [log_collector] {"stage_name":"log_collector","events_processed":15141,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3028.2,"last_update":"2026-03-21T20:37:53.869515778Z"} +2026/03/21 20:37:53 [metric_collector] {"stage_name":"metric_collector","events_processed":9119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1823.8,"last_update":"2026-03-21T20:37:48.869989199Z"} +2026/03/21 20:37:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3650,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:37:48.875978882Z"} +2026/03/21 20:37:53 [transform_engine] {"stage_name":"transform_engine","events_processed":304,"events_dropped":0,"avg_latency_ms":302.6545797301509,"throughput_eps":0,"last_update":"2026-03-21T20:37:49.027398886Z"} +2026/03/21 20:37:53 [detection_layer] {"stage_name":"detection_layer","events_processed":303,"events_dropped":0,"avg_latency_ms":16.58432737117257,"throughput_eps":0,"last_update":"2026-03-21T20:37:48.966185701Z"} +2026/03/21 20:37:53 ───────────────────────────────────────────────── +2026/03/21 20:37:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:37:58 [log_collector] {"stage_name":"log_collector","events_processed":15141,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3028.2,"last_update":"2026-03-21T20:37:53.869515778Z"} +2026/03/21 20:37:58 [metric_collector] {"stage_name":"metric_collector","events_processed":9124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1824.8,"last_update":"2026-03-21T20:37:53.869832223Z"} +2026/03/21 20:37:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:37:53.878599767Z"} +2026/03/21 20:37:58 [transform_engine] {"stage_name":"transform_engine","events_processed":304,"events_dropped":0,"avg_latency_ms":302.6545797301509,"throughput_eps":0,"last_update":"2026-03-21T20:37:53.965699665Z"} +2026/03/21 20:37:58 [detection_layer] {"stage_name":"detection_layer","events_processed":304,"events_dropped":0,"avg_latency_ms":15.981207696938057,"throughput_eps":0,"last_update":"2026-03-21T20:37:53.965734322Z"} +2026/03/21 20:37:58 ───────────────────────────────────────────────── +2026/03/21 20:38:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:38:03 [log_collector] {"stage_name":"log_collector","events_processed":15141,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3028.2,"last_update":"2026-03-21T20:37:58.869617348Z"} +2026/03/21 20:38:03 [metric_collector] {"stage_name":"metric_collector","events_processed":9129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1825.8,"last_update":"2026-03-21T20:37:58.869941729Z"} +2026/03/21 20:38:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:37:58.878020001Z"} +2026/03/21 20:38:03 [transform_engine] {"stage_name":"transform_engine","events_processed":304,"events_dropped":0,"avg_latency_ms":302.6545797301509,"throughput_eps":0,"last_update":"2026-03-21T20:37:58.965110572Z"} +2026/03/21 20:38:03 [detection_layer] {"stage_name":"detection_layer","events_processed":304,"events_dropped":0,"avg_latency_ms":15.981207696938057,"throughput_eps":0,"last_update":"2026-03-21T20:37:58.966228873Z"} +2026/03/21 20:38:03 ───────────────────────────────────────────────── +2026/03/21 20:38:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:38:08 [log_collector] {"stage_name":"log_collector","events_processed":15141,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3028.2,"last_update":"2026-03-21T20:38:03.8701953Z"} +2026/03/21 20:38:08 [metric_collector] {"stage_name":"metric_collector","events_processed":9134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1826.8,"last_update":"2026-03-21T20:38:03.870382498Z"} +2026/03/21 20:38:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:38:03.875877744Z"} +2026/03/21 20:38:08 [transform_engine] {"stage_name":"transform_engine","events_processed":304,"events_dropped":0,"avg_latency_ms":302.6545797301509,"throughput_eps":0,"last_update":"2026-03-21T20:38:03.965124954Z"} +2026/03/21 20:38:08 [detection_layer] {"stage_name":"detection_layer","events_processed":304,"events_dropped":0,"avg_latency_ms":15.981207696938057,"throughput_eps":0,"last_update":"2026-03-21T20:38:03.966036651Z"} +2026/03/21 20:38:08 ───────────────────────────────────────────────── +2026/03/21 20:38:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:38:13 [log_collector] {"stage_name":"log_collector","events_processed":15141,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3028.2,"last_update":"2026-03-21T20:38:08.86942963Z"} +2026/03/21 20:38:13 [metric_collector] {"stage_name":"metric_collector","events_processed":9144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1828.8,"last_update":"2026-03-21T20:38:13.869738899Z"} +2026/03/21 20:38:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:38:08.876528247Z"} +2026/03/21 20:38:13 [transform_engine] {"stage_name":"transform_engine","events_processed":304,"events_dropped":0,"avg_latency_ms":302.6545797301509,"throughput_eps":0,"last_update":"2026-03-21T20:38:08.9657455Z"} +2026/03/21 20:38:13 [detection_layer] {"stage_name":"detection_layer","events_processed":304,"events_dropped":0,"avg_latency_ms":15.981207696938057,"throughput_eps":0,"last_update":"2026-03-21T20:38:08.965722967Z"} +2026/03/21 20:38:13 ───────────────────────────────────────────────── +2026/03/21 20:38:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:38:18 [log_collector] {"stage_name":"log_collector","events_processed":15141,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3028.2,"last_update":"2026-03-21T20:38:13.869966044Z"} +2026/03/21 20:38:18 [metric_collector] {"stage_name":"metric_collector","events_processed":9144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1828.8,"last_update":"2026-03-21T20:38:13.869738899Z"} +2026/03/21 20:38:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3660,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:38:13.878415708Z"} +2026/03/21 20:38:18 [transform_engine] {"stage_name":"transform_engine","events_processed":304,"events_dropped":0,"avg_latency_ms":302.6545797301509,"throughput_eps":0,"last_update":"2026-03-21T20:38:13.965650945Z"} +2026/03/21 20:38:18 [detection_layer] {"stage_name":"detection_layer","events_processed":304,"events_dropped":0,"avg_latency_ms":15.981207696938057,"throughput_eps":0,"last_update":"2026-03-21T20:38:13.965631178Z"} +2026/03/21 20:38:18 ───────────────────────────────────────────────── +2026/03/21 20:38:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:38:23 [log_collector] {"stage_name":"log_collector","events_processed":15141,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3028.2,"last_update":"2026-03-21T20:38:18.870418036Z"} +2026/03/21 20:38:23 [metric_collector] {"stage_name":"metric_collector","events_processed":9149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1829.8,"last_update":"2026-03-21T20:38:18.870802512Z"} +2026/03/21 20:38:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3662,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:38:18.879531762Z"} +2026/03/21 20:38:23 [transform_engine] {"stage_name":"transform_engine","events_processed":305,"events_dropped":0,"avg_latency_ms":256.4949519841207,"throughput_eps":0,"last_update":"2026-03-21T20:38:19.037505589Z"} +2026/03/21 20:38:23 [detection_layer] {"stage_name":"detection_layer","events_processed":304,"events_dropped":0,"avg_latency_ms":15.981207696938057,"throughput_eps":0,"last_update":"2026-03-21T20:38:18.965633348Z"} +2026/03/21 20:38:23 ───────────────────────────────────────────────── +2026/03/21 20:38:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:38:28 [log_collector] {"stage_name":"log_collector","events_processed":15141,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3028.2,"last_update":"2026-03-21T20:38:23.869455819Z"} +2026/03/21 20:38:28 [metric_collector] {"stage_name":"metric_collector","events_processed":9154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1830.8,"last_update":"2026-03-21T20:38:23.869762335Z"} +2026/03/21 20:38:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:38:23.875591611Z"} +2026/03/21 20:38:28 [transform_engine] {"stage_name":"transform_engine","events_processed":305,"events_dropped":0,"avg_latency_ms":256.4949519841207,"throughput_eps":0,"last_update":"2026-03-21T20:38:23.965734036Z"} +2026/03/21 20:38:28 [detection_layer] {"stage_name":"detection_layer","events_processed":305,"events_dropped":0,"avg_latency_ms":16.524825157550445,"throughput_eps":0,"last_update":"2026-03-21T20:38:23.965722194Z"} +2026/03/21 20:38:28 ───────────────────────────────────────────────── +2026/03/21 20:38:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:38:33 [log_collector] {"stage_name":"log_collector","events_processed":15141,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3028.2,"last_update":"2026-03-21T20:38:33.869653569Z"} +2026/03/21 20:38:33 [metric_collector] {"stage_name":"metric_collector","events_processed":9159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1831.8,"last_update":"2026-03-21T20:38:28.86999114Z"} +2026/03/21 20:38:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:38:28.878435183Z"} +2026/03/21 20:38:33 [transform_engine] {"stage_name":"transform_engine","events_processed":305,"events_dropped":0,"avg_latency_ms":256.4949519841207,"throughput_eps":0,"last_update":"2026-03-21T20:38:28.965621638Z"} +2026/03/21 20:38:33 [detection_layer] {"stage_name":"detection_layer","events_processed":305,"events_dropped":0,"avg_latency_ms":16.524825157550445,"throughput_eps":0,"last_update":"2026-03-21T20:38:28.965612219Z"} +2026/03/21 20:38:33 ───────────────────────────────────────────────── +2026/03/21 20:38:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:38:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3668,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:38:33.878312604Z"} +2026/03/21 20:38:38 [transform_engine] {"stage_name":"transform_engine","events_processed":305,"events_dropped":0,"avg_latency_ms":256.4949519841207,"throughput_eps":0,"last_update":"2026-03-21T20:38:33.965500651Z"} +2026/03/21 20:38:38 [detection_layer] {"stage_name":"detection_layer","events_processed":305,"events_dropped":0,"avg_latency_ms":16.524825157550445,"throughput_eps":0,"last_update":"2026-03-21T20:38:33.965483327Z"} +2026/03/21 20:38:38 [log_collector] {"stage_name":"log_collector","events_processed":15141,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3028.2,"last_update":"2026-03-21T20:38:33.869653569Z"} +2026/03/21 20:38:38 [metric_collector] {"stage_name":"metric_collector","events_processed":9164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1832.8,"last_update":"2026-03-21T20:38:33.86980069Z"} +2026/03/21 20:38:38 ───────────────────────────────────────────────── +2026/03/21 20:38:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:38:43 [transform_engine] {"stage_name":"transform_engine","events_processed":305,"events_dropped":0,"avg_latency_ms":256.4949519841207,"throughput_eps":0,"last_update":"2026-03-21T20:38:38.965870175Z"} +2026/03/21 20:38:43 [detection_layer] {"stage_name":"detection_layer","events_processed":305,"events_dropped":0,"avg_latency_ms":16.524825157550445,"throughput_eps":0,"last_update":"2026-03-21T20:38:38.96588302Z"} +2026/03/21 20:38:43 [log_collector] {"stage_name":"log_collector","events_processed":15141,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3028.2,"last_update":"2026-03-21T20:38:38.869412995Z"} +2026/03/21 20:38:43 [metric_collector] {"stage_name":"metric_collector","events_processed":9169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1833.8,"last_update":"2026-03-21T20:38:38.869637916Z"} +2026/03/21 20:38:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3670,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:38:38.875692833Z"} +2026/03/21 20:38:43 ───────────────────────────────────────────────── +2026/03/21 20:38:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:38:48 [metric_collector] {"stage_name":"metric_collector","events_processed":9174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1834.8,"last_update":"2026-03-21T20:38:43.870586029Z"} +2026/03/21 20:38:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:38:43.878989123Z"} +2026/03/21 20:38:48 [transform_engine] {"stage_name":"transform_engine","events_processed":305,"events_dropped":0,"avg_latency_ms":256.4949519841207,"throughput_eps":0,"last_update":"2026-03-21T20:38:43.965089287Z"} +2026/03/21 20:38:48 [detection_layer] {"stage_name":"detection_layer","events_processed":305,"events_dropped":0,"avg_latency_ms":16.524825157550445,"throughput_eps":0,"last_update":"2026-03-21T20:38:43.966204032Z"} +2026/03/21 20:38:48 [log_collector] {"stage_name":"log_collector","events_processed":15141,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3028.2,"last_update":"2026-03-21T20:38:48.869406917Z"} +2026/03/21 20:38:48 ───────────────────────────────────────────────── +2026/03/21 20:38:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:38:53 [detection_layer] {"stage_name":"detection_layer","events_processed":305,"events_dropped":0,"avg_latency_ms":16.524825157550445,"throughput_eps":0,"last_update":"2026-03-21T20:38:48.965279548Z"} +2026/03/21 20:38:53 [log_collector] {"stage_name":"log_collector","events_processed":15141,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3028.2,"last_update":"2026-03-21T20:38:48.869406917Z"} +2026/03/21 20:38:53 [metric_collector] {"stage_name":"metric_collector","events_processed":9179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1835.8,"last_update":"2026-03-21T20:38:48.869825238Z"} +2026/03/21 20:38:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:38:48.878104065Z"} +2026/03/21 20:38:53 [transform_engine] {"stage_name":"transform_engine","events_processed":306,"events_dropped":0,"avg_latency_ms":219.10837278729656,"throughput_eps":0,"last_update":"2026-03-21T20:38:49.034855752Z"} +2026/03/21 20:38:53 ───────────────────────────────────────────────── +2026/03/21 20:38:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:38:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3676,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:38:53.878752132Z"} +2026/03/21 20:38:58 [transform_engine] {"stage_name":"transform_engine","events_processed":306,"events_dropped":0,"avg_latency_ms":219.10837278729656,"throughput_eps":0,"last_update":"2026-03-21T20:38:53.965955387Z"} +2026/03/21 20:38:58 [detection_layer] {"stage_name":"detection_layer","events_processed":306,"events_dropped":0,"avg_latency_ms":16.820572926040356,"throughput_eps":0,"last_update":"2026-03-21T20:38:53.965933727Z"} +2026/03/21 20:38:58 [log_collector] {"stage_name":"log_collector","events_processed":15141,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3028.2,"last_update":"2026-03-21T20:38:53.870122082Z"} +2026/03/21 20:38:58 [metric_collector] {"stage_name":"metric_collector","events_processed":9184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1836.8,"last_update":"2026-03-21T20:38:53.870447465Z"} +2026/03/21 20:38:58 ───────────────────────────────────────────────── +2026/03/21 20:39:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:39:03 [detection_layer] {"stage_name":"detection_layer","events_processed":306,"events_dropped":0,"avg_latency_ms":16.820572926040356,"throughput_eps":0,"last_update":"2026-03-21T20:38:58.965721387Z"} +2026/03/21 20:39:03 [log_collector] {"stage_name":"log_collector","events_processed":15141,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3028.2,"last_update":"2026-03-21T20:38:58.869413662Z"} +2026/03/21 20:39:03 [metric_collector] {"stage_name":"metric_collector","events_processed":9189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1837.8,"last_update":"2026-03-21T20:38:58.869854096Z"} +2026/03/21 20:39:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:38:58.878518662Z"} +2026/03/21 20:39:03 [transform_engine] {"stage_name":"transform_engine","events_processed":306,"events_dropped":0,"avg_latency_ms":219.10837278729656,"throughput_eps":0,"last_update":"2026-03-21T20:38:58.965748188Z"} +2026/03/21 20:39:03 ───────────────────────────────────────────────── +2026/03/21 20:39:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:39:08 [metric_collector] {"stage_name":"metric_collector","events_processed":9194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1838.8,"last_update":"2026-03-21T20:39:03.869902614Z"} +2026/03/21 20:39:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:39:03.877949818Z"} +2026/03/21 20:39:08 [transform_engine] {"stage_name":"transform_engine","events_processed":306,"events_dropped":0,"avg_latency_ms":219.10837278729656,"throughput_eps":0,"last_update":"2026-03-21T20:39:03.966139603Z"} +2026/03/21 20:39:08 [detection_layer] {"stage_name":"detection_layer","events_processed":306,"events_dropped":0,"avg_latency_ms":16.820572926040356,"throughput_eps":0,"last_update":"2026-03-21T20:39:03.966115126Z"} +2026/03/21 20:39:08 [log_collector] {"stage_name":"log_collector","events_processed":15141,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3028.2,"last_update":"2026-03-21T20:39:03.869411724Z"} +2026/03/21 20:39:08 ───────────────────────────────────────────────── +2026/03/21 20:39:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:39:13 [log_collector] {"stage_name":"log_collector","events_processed":15141,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3028.2,"last_update":"2026-03-21T20:39:08.869401843Z"} +2026/03/21 20:39:13 [metric_collector] {"stage_name":"metric_collector","events_processed":9199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1839.8,"last_update":"2026-03-21T20:39:08.86982827Z"} +2026/03/21 20:39:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:39:08.878534925Z"} +2026/03/21 20:39:13 [transform_engine] {"stage_name":"transform_engine","events_processed":306,"events_dropped":0,"avg_latency_ms":219.10837278729656,"throughput_eps":0,"last_update":"2026-03-21T20:39:08.965727542Z"} +2026/03/21 20:39:13 [detection_layer] {"stage_name":"detection_layer","events_processed":306,"events_dropped":0,"avg_latency_ms":16.820572926040356,"throughput_eps":0,"last_update":"2026-03-21T20:39:08.965747059Z"} +2026/03/21 20:39:13 ───────────────────────────────────────────────── +Saved state: 12 clusters, 15142 messages, reason: none +2026/03/21 20:39:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:39:18 [log_collector] {"stage_name":"log_collector","events_processed":15141,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3028.2,"last_update":"2026-03-21T20:39:13.869431607Z"} +2026/03/21 20:39:18 [metric_collector] {"stage_name":"metric_collector","events_processed":9204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1840.8,"last_update":"2026-03-21T20:39:13.869789032Z"} +2026/03/21 20:39:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:39:13.878544011Z"} +2026/03/21 20:39:18 [transform_engine] {"stage_name":"transform_engine","events_processed":306,"events_dropped":0,"avg_latency_ms":219.10837278729656,"throughput_eps":0,"last_update":"2026-03-21T20:39:13.965631406Z"} +2026/03/21 20:39:18 [detection_layer] {"stage_name":"detection_layer","events_processed":306,"events_dropped":0,"avg_latency_ms":16.820572926040356,"throughput_eps":0,"last_update":"2026-03-21T20:39:13.965683325Z"} +2026/03/21 20:39:18 ───────────────────────────────────────────────── +2026/03/21 20:39:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:39:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:39:18.877964978Z"} +2026/03/21 20:39:23 [transform_engine] {"stage_name":"transform_engine","events_processed":307,"events_dropped":0,"avg_latency_ms":198.27248642983727,"throughput_eps":0,"last_update":"2026-03-21T20:39:19.080090101Z"} +2026/03/21 20:39:23 [detection_layer] {"stage_name":"detection_layer","events_processed":306,"events_dropped":0,"avg_latency_ms":16.820572926040356,"throughput_eps":0,"last_update":"2026-03-21T20:39:18.966305974Z"} +2026/03/21 20:39:23 [log_collector] {"stage_name":"log_collector","events_processed":15151,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3030.2,"last_update":"2026-03-21T20:39:18.869920049Z"} +2026/03/21 20:39:23 [metric_collector] {"stage_name":"metric_collector","events_processed":9209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1841.8,"last_update":"2026-03-21T20:39:18.870167073Z"} +2026/03/21 20:39:23 ───────────────────────────────────────────────── +2026/03/21 20:39:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:39:28 [detection_layer] {"stage_name":"detection_layer","events_processed":307,"events_dropped":0,"avg_latency_ms":17.347671540832284,"throughput_eps":0,"last_update":"2026-03-21T20:39:23.965667978Z"} +2026/03/21 20:39:28 [log_collector] {"stage_name":"log_collector","events_processed":15151,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3030.2,"last_update":"2026-03-21T20:39:23.870406858Z"} +2026/03/21 20:39:28 [metric_collector] {"stage_name":"metric_collector","events_processed":9214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1842.8,"last_update":"2026-03-21T20:39:23.870880456Z"} +2026/03/21 20:39:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3688,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:39:23.879294111Z"} +2026/03/21 20:39:28 [transform_engine] {"stage_name":"transform_engine","events_processed":307,"events_dropped":0,"avg_latency_ms":198.27248642983727,"throughput_eps":0,"last_update":"2026-03-21T20:39:23.965600108Z"} +2026/03/21 20:39:28 ───────────────────────────────────────────────── +2026/03/21 20:39:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:39:33 [detection_layer] {"stage_name":"detection_layer","events_processed":307,"events_dropped":0,"avg_latency_ms":17.347671540832284,"throughput_eps":0,"last_update":"2026-03-21T20:39:28.965393679Z"} +2026/03/21 20:39:33 [log_collector] {"stage_name":"log_collector","events_processed":15152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3030.4,"last_update":"2026-03-21T20:39:28.86940654Z"} +2026/03/21 20:39:33 [metric_collector] {"stage_name":"metric_collector","events_processed":9219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1843.8,"last_update":"2026-03-21T20:39:28.869870698Z"} +2026/03/21 20:39:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:39:28.878090542Z"} +2026/03/21 20:39:33 [transform_engine] {"stage_name":"transform_engine","events_processed":307,"events_dropped":0,"avg_latency_ms":198.27248642983727,"throughput_eps":0,"last_update":"2026-03-21T20:39:28.965342Z"} +2026/03/21 20:39:33 ───────────────────────────────────────────────── +2026/03/21 20:39:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:39:38 [detection_layer] {"stage_name":"detection_layer","events_processed":307,"events_dropped":0,"avg_latency_ms":17.347671540832284,"throughput_eps":0,"last_update":"2026-03-21T20:39:33.966222783Z"} +2026/03/21 20:39:38 [log_collector] {"stage_name":"log_collector","events_processed":15152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3030.4,"last_update":"2026-03-21T20:39:33.869490044Z"} +2026/03/21 20:39:38 [metric_collector] {"stage_name":"metric_collector","events_processed":9224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1844.8,"last_update":"2026-03-21T20:39:33.86987363Z"} +2026/03/21 20:39:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:39:33.878964833Z"} +2026/03/21 20:39:38 [transform_engine] {"stage_name":"transform_engine","events_processed":307,"events_dropped":0,"avg_latency_ms":198.27248642983727,"throughput_eps":0,"last_update":"2026-03-21T20:39:33.965100764Z"} +2026/03/21 20:39:38 ───────────────────────────────────────────────── +2026/03/21 20:39:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:39:43 [log_collector] {"stage_name":"log_collector","events_processed":15157,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3031.4,"last_update":"2026-03-21T20:39:38.869413726Z"} +2026/03/21 20:39:43 [metric_collector] {"stage_name":"metric_collector","events_processed":9229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1845.8,"last_update":"2026-03-21T20:39:38.869761022Z"} +2026/03/21 20:39:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:39:38.878051922Z"} +2026/03/21 20:39:43 [transform_engine] {"stage_name":"transform_engine","events_processed":307,"events_dropped":0,"avg_latency_ms":198.27248642983727,"throughput_eps":0,"last_update":"2026-03-21T20:39:38.965233064Z"} +2026/03/21 20:39:43 [detection_layer] {"stage_name":"detection_layer","events_processed":307,"events_dropped":0,"avg_latency_ms":17.347671540832284,"throughput_eps":0,"last_update":"2026-03-21T20:39:38.965336532Z"} +2026/03/21 20:39:43 ───────────────────────────────────────────────── +2026/03/21 20:39:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:39:48 [log_collector] {"stage_name":"log_collector","events_processed":15159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3031.8,"last_update":"2026-03-21T20:39:43.870191481Z"} +2026/03/21 20:39:48 [metric_collector] {"stage_name":"metric_collector","events_processed":9234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1846.8,"last_update":"2026-03-21T20:39:43.870549727Z"} +2026/03/21 20:39:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:39:43.879580485Z"} +2026/03/21 20:39:48 [transform_engine] {"stage_name":"transform_engine","events_processed":307,"events_dropped":0,"avg_latency_ms":198.27248642983727,"throughput_eps":0,"last_update":"2026-03-21T20:39:43.965968038Z"} +2026/03/21 20:39:48 [detection_layer] {"stage_name":"detection_layer","events_processed":307,"events_dropped":0,"avg_latency_ms":17.347671540832284,"throughput_eps":0,"last_update":"2026-03-21T20:39:43.965928633Z"} +2026/03/21 20:39:48 ───────────────────────────────────────────────── +2026/03/21 20:39:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:39:53 [detection_layer] {"stage_name":"detection_layer","events_processed":307,"events_dropped":0,"avg_latency_ms":17.347671540832284,"throughput_eps":0,"last_update":"2026-03-21T20:39:48.965930974Z"} +2026/03/21 20:39:53 [log_collector] {"stage_name":"log_collector","events_processed":15160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3032,"last_update":"2026-03-21T20:39:48.869402857Z"} +2026/03/21 20:39:53 [metric_collector] {"stage_name":"metric_collector","events_processed":9239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1847.8,"last_update":"2026-03-21T20:39:48.869894128Z"} +2026/03/21 20:39:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:39:48.878693182Z"} +2026/03/21 20:39:53 [transform_engine] {"stage_name":"transform_engine","events_processed":308,"events_dropped":0,"avg_latency_ms":181.22551494386983,"throughput_eps":0,"last_update":"2026-03-21T20:39:49.07894138Z"} +2026/03/21 20:39:53 ───────────────────────────────────────────────── +2026/03/21 20:39:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:39:58 [log_collector] {"stage_name":"log_collector","events_processed":15160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3032,"last_update":"2026-03-21T20:39:53.869417844Z"} +2026/03/21 20:39:58 [metric_collector] {"stage_name":"metric_collector","events_processed":9244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1848.8,"last_update":"2026-03-21T20:39:53.869615001Z"} +2026/03/21 20:39:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3700,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:39:53.875679327Z"} +2026/03/21 20:39:58 [transform_engine] {"stage_name":"transform_engine","events_processed":308,"events_dropped":0,"avg_latency_ms":181.22551494386983,"throughput_eps":0,"last_update":"2026-03-21T20:39:53.965889242Z"} +2026/03/21 20:39:58 [detection_layer] {"stage_name":"detection_layer","events_processed":308,"events_dropped":0,"avg_latency_ms":17.68173423266583,"throughput_eps":0,"last_update":"2026-03-21T20:39:53.965860847Z"} +2026/03/21 20:39:58 ───────────────────────────────────────────────── +2026/03/21 20:40:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:40:03 [log_collector] {"stage_name":"log_collector","events_processed":15160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3032,"last_update":"2026-03-21T20:39:58.869608879Z"} +2026/03/21 20:40:03 [metric_collector] {"stage_name":"metric_collector","events_processed":9249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1849.8,"last_update":"2026-03-21T20:39:58.869981042Z"} +2026/03/21 20:40:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3702,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:39:58.878973806Z"} +2026/03/21 20:40:03 [transform_engine] {"stage_name":"transform_engine","events_processed":308,"events_dropped":0,"avg_latency_ms":181.22551494386983,"throughput_eps":0,"last_update":"2026-03-21T20:39:58.965098457Z"} +2026/03/21 20:40:03 [detection_layer] {"stage_name":"detection_layer","events_processed":308,"events_dropped":0,"avg_latency_ms":17.68173423266583,"throughput_eps":0,"last_update":"2026-03-21T20:39:58.966189295Z"} +2026/03/21 20:40:03 ───────────────────────────────────────────────── +2026/03/21 20:40:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:40:08 [metric_collector] {"stage_name":"metric_collector","events_processed":9254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1850.8,"last_update":"2026-03-21T20:40:03.870658266Z"} +2026/03/21 20:40:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:40:03.889163851Z"} +2026/03/21 20:40:08 [transform_engine] {"stage_name":"transform_engine","events_processed":308,"events_dropped":0,"avg_latency_ms":181.22551494386983,"throughput_eps":0,"last_update":"2026-03-21T20:40:03.965190149Z"} +2026/03/21 20:40:08 [detection_layer] {"stage_name":"detection_layer","events_processed":308,"events_dropped":0,"avg_latency_ms":17.68173423266583,"throughput_eps":0,"last_update":"2026-03-21T20:40:03.965407295Z"} +2026/03/21 20:40:08 [log_collector] {"stage_name":"log_collector","events_processed":15160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3032,"last_update":"2026-03-21T20:40:03.870285232Z"} +2026/03/21 20:40:08 ───────────────────────────────────────────────── +2026/03/21 20:40:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:40:13 [detection_layer] {"stage_name":"detection_layer","events_processed":308,"events_dropped":0,"avg_latency_ms":17.68173423266583,"throughput_eps":0,"last_update":"2026-03-21T20:40:08.965536429Z"} +2026/03/21 20:40:13 [log_collector] {"stage_name":"log_collector","events_processed":15160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3032,"last_update":"2026-03-21T20:40:08.87025428Z"} +2026/03/21 20:40:13 [metric_collector] {"stage_name":"metric_collector","events_processed":9259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1851.8,"last_update":"2026-03-21T20:40:08.870606605Z"} +2026/03/21 20:40:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:40:08.877199111Z"} +2026/03/21 20:40:13 [transform_engine] {"stage_name":"transform_engine","events_processed":308,"events_dropped":0,"avg_latency_ms":181.22551494386983,"throughput_eps":0,"last_update":"2026-03-21T20:40:08.965508777Z"} +2026/03/21 20:40:13 ───────────────────────────────────────────────── +2026/03/21 20:40:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:40:18 [log_collector] {"stage_name":"log_collector","events_processed":15160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3032,"last_update":"2026-03-21T20:40:13.869410381Z"} +2026/03/21 20:40:18 [metric_collector] {"stage_name":"metric_collector","events_processed":9264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1852.8,"last_update":"2026-03-21T20:40:13.869688003Z"} +2026/03/21 20:40:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:40:13.879082126Z"} +2026/03/21 20:40:18 [transform_engine] {"stage_name":"transform_engine","events_processed":308,"events_dropped":0,"avg_latency_ms":181.22551494386983,"throughput_eps":0,"last_update":"2026-03-21T20:40:13.965279245Z"} +2026/03/21 20:40:18 [detection_layer] {"stage_name":"detection_layer","events_processed":308,"events_dropped":0,"avg_latency_ms":17.68173423266583,"throughput_eps":0,"last_update":"2026-03-21T20:40:13.965305616Z"} +2026/03/21 20:40:18 ───────────────────────────────────────────────── +2026/03/21 20:40:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:40:23 [detection_layer] {"stage_name":"detection_layer","events_processed":308,"events_dropped":0,"avg_latency_ms":17.68173423266583,"throughput_eps":0,"last_update":"2026-03-21T20:40:18.966119093Z"} +2026/03/21 20:40:23 [log_collector] {"stage_name":"log_collector","events_processed":15160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3032,"last_update":"2026-03-21T20:40:18.869542382Z"} +2026/03/21 20:40:23 [metric_collector] {"stage_name":"metric_collector","events_processed":9269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1853.8,"last_update":"2026-03-21T20:40:18.869805677Z"} +2026/03/21 20:40:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:40:18.87578049Z"} +2026/03/21 20:40:23 [transform_engine] {"stage_name":"transform_engine","events_processed":309,"events_dropped":0,"avg_latency_ms":157.76739155509586,"throughput_eps":0,"last_update":"2026-03-21T20:40:19.030014025Z"} +2026/03/21 20:40:23 ───────────────────────────────────────────────── +Saved state: 12 clusters, 15161 messages, reason: none +2026/03/21 20:40:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:40:28 [log_collector] {"stage_name":"log_collector","events_processed":15160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3032,"last_update":"2026-03-21T20:40:23.869782862Z"} +2026/03/21 20:40:28 [metric_collector] {"stage_name":"metric_collector","events_processed":9274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1854.8,"last_update":"2026-03-21T20:40:23.870058821Z"} +2026/03/21 20:40:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3712,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:40:23.878983094Z"} +2026/03/21 20:40:28 [transform_engine] {"stage_name":"transform_engine","events_processed":309,"events_dropped":0,"avg_latency_ms":157.76739155509586,"throughput_eps":0,"last_update":"2026-03-21T20:40:23.965111772Z"} +2026/03/21 20:40:28 [detection_layer] {"stage_name":"detection_layer","events_processed":309,"events_dropped":0,"avg_latency_ms":16.753142186132663,"throughput_eps":0,"last_update":"2026-03-21T20:40:23.966236075Z"} +2026/03/21 20:40:28 ───────────────────────────────────────────────── +2026/03/21 20:40:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:40:33 [log_collector] {"stage_name":"log_collector","events_processed":15166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3033.2,"last_update":"2026-03-21T20:40:28.8696316Z"} +2026/03/21 20:40:33 [metric_collector] {"stage_name":"metric_collector","events_processed":9279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1855.8,"last_update":"2026-03-21T20:40:28.869831112Z"} +2026/03/21 20:40:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:40:28.878373334Z"} +2026/03/21 20:40:33 [transform_engine] {"stage_name":"transform_engine","events_processed":309,"events_dropped":0,"avg_latency_ms":157.76739155509586,"throughput_eps":0,"last_update":"2026-03-21T20:40:28.965596077Z"} +2026/03/21 20:40:33 [detection_layer] {"stage_name":"detection_layer","events_processed":309,"events_dropped":0,"avg_latency_ms":16.753142186132663,"throughput_eps":0,"last_update":"2026-03-21T20:40:28.965575297Z"} +2026/03/21 20:40:33 ───────────────────────────────────────────────── +2026/03/21 20:40:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:40:38 [transform_engine] {"stage_name":"transform_engine","events_processed":309,"events_dropped":0,"avg_latency_ms":157.76739155509586,"throughput_eps":0,"last_update":"2026-03-21T20:40:33.965159048Z"} +2026/03/21 20:40:38 [detection_layer] {"stage_name":"detection_layer","events_processed":309,"events_dropped":0,"avg_latency_ms":16.753142186132663,"throughput_eps":0,"last_update":"2026-03-21T20:40:33.965313213Z"} +2026/03/21 20:40:38 [log_collector] {"stage_name":"log_collector","events_processed":15166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3033.2,"last_update":"2026-03-21T20:40:33.869766536Z"} +2026/03/21 20:40:38 [metric_collector] {"stage_name":"metric_collector","events_processed":9284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1856.8,"last_update":"2026-03-21T20:40:33.870180128Z"} +2026/03/21 20:40:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:40:33.878024333Z"} +2026/03/21 20:40:38 ───────────────────────────────────────────────── +2026/03/21 20:40:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:40:43 [metric_collector] {"stage_name":"metric_collector","events_processed":9289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1857.8,"last_update":"2026-03-21T20:40:38.870024498Z"} +2026/03/21 20:40:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3718,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:40:38.878249522Z"} +2026/03/21 20:40:43 [transform_engine] {"stage_name":"transform_engine","events_processed":309,"events_dropped":0,"avg_latency_ms":157.76739155509586,"throughput_eps":0,"last_update":"2026-03-21T20:40:38.965487485Z"} +2026/03/21 20:40:43 [detection_layer] {"stage_name":"detection_layer","events_processed":309,"events_dropped":0,"avg_latency_ms":16.753142186132663,"throughput_eps":0,"last_update":"2026-03-21T20:40:38.965455123Z"} +2026/03/21 20:40:43 [log_collector] {"stage_name":"log_collector","events_processed":15166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3033.2,"last_update":"2026-03-21T20:40:38.869464947Z"} +2026/03/21 20:40:43 ───────────────────────────────────────────────── +2026/03/21 20:40:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:40:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:40:43.877996415Z"} +2026/03/21 20:40:48 [transform_engine] {"stage_name":"transform_engine","events_processed":309,"events_dropped":0,"avg_latency_ms":157.76739155509586,"throughput_eps":0,"last_update":"2026-03-21T20:40:43.965186936Z"} +2026/03/21 20:40:48 [detection_layer] {"stage_name":"detection_layer","events_processed":309,"events_dropped":0,"avg_latency_ms":16.753142186132663,"throughput_eps":0,"last_update":"2026-03-21T20:40:43.965301665Z"} +2026/03/21 20:40:48 [log_collector] {"stage_name":"log_collector","events_processed":15168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3033.6,"last_update":"2026-03-21T20:40:43.869961325Z"} +2026/03/21 20:40:48 [metric_collector] {"stage_name":"metric_collector","events_processed":9294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1858.8,"last_update":"2026-03-21T20:40:43.870287259Z"} +2026/03/21 20:40:48 ───────────────────────────────────────────────── +2026/03/21 20:40:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:40:53 [log_collector] {"stage_name":"log_collector","events_processed":15171,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3034.2,"last_update":"2026-03-21T20:40:53.869422067Z"} +2026/03/21 20:40:53 [metric_collector] {"stage_name":"metric_collector","events_processed":9299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1859.8,"last_update":"2026-03-21T20:40:48.869761619Z"} +2026/03/21 20:40:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3722,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:40:48.878268462Z"} +2026/03/21 20:40:53 [transform_engine] {"stage_name":"transform_engine","events_processed":310,"events_dropped":0,"avg_latency_ms":148.6499666440767,"throughput_eps":0,"last_update":"2026-03-21T20:40:49.077801231Z"} +2026/03/21 20:40:53 [detection_layer] {"stage_name":"detection_layer","events_processed":309,"events_dropped":0,"avg_latency_ms":16.753142186132663,"throughput_eps":0,"last_update":"2026-03-21T20:40:48.965590777Z"} +2026/03/21 20:40:53 ───────────────────────────────────────────────── +2026/03/21 20:40:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:40:58 [transform_engine] {"stage_name":"transform_engine","events_processed":310,"events_dropped":0,"avg_latency_ms":148.6499666440767,"throughput_eps":0,"last_update":"2026-03-21T20:40:53.965367928Z"} +2026/03/21 20:40:58 [detection_layer] {"stage_name":"detection_layer","events_processed":310,"events_dropped":0,"avg_latency_ms":17.215434948906132,"throughput_eps":0,"last_update":"2026-03-21T20:40:53.965391163Z"} +2026/03/21 20:40:58 [log_collector] {"stage_name":"log_collector","events_processed":15171,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3034.2,"last_update":"2026-03-21T20:40:53.869422067Z"} +2026/03/21 20:40:58 [metric_collector] {"stage_name":"metric_collector","events_processed":9304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1860.8,"last_update":"2026-03-21T20:40:53.870121797Z"} +2026/03/21 20:40:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:40:53.878144303Z"} +2026/03/21 20:40:58 ───────────────────────────────────────────────── +2026/03/21 20:41:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:41:03 [log_collector] {"stage_name":"log_collector","events_processed":15171,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3034.2,"last_update":"2026-03-21T20:41:03.869398162Z"} +2026/03/21 20:41:03 [metric_collector] {"stage_name":"metric_collector","events_processed":9309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1861.8,"last_update":"2026-03-21T20:40:58.87047191Z"} +2026/03/21 20:41:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:40:58.876422891Z"} +2026/03/21 20:41:03 [transform_engine] {"stage_name":"transform_engine","events_processed":310,"events_dropped":0,"avg_latency_ms":148.6499666440767,"throughput_eps":0,"last_update":"2026-03-21T20:40:58.965613673Z"} +2026/03/21 20:41:03 [detection_layer] {"stage_name":"detection_layer","events_processed":310,"events_dropped":0,"avg_latency_ms":17.215434948906132,"throughput_eps":0,"last_update":"2026-03-21T20:40:58.965598705Z"} +2026/03/21 20:41:03 ───────────────────────────────────────────────── +2026/03/21 20:41:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:41:08 [log_collector] {"stage_name":"log_collector","events_processed":15171,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3034.2,"last_update":"2026-03-21T20:41:03.869398162Z"} +2026/03/21 20:41:08 [metric_collector] {"stage_name":"metric_collector","events_processed":9314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1862.8,"last_update":"2026-03-21T20:41:03.869839256Z"} +2026/03/21 20:41:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3728,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:41:03.875952988Z"} +2026/03/21 20:41:08 [transform_engine] {"stage_name":"transform_engine","events_processed":310,"events_dropped":0,"avg_latency_ms":148.6499666440767,"throughput_eps":0,"last_update":"2026-03-21T20:41:03.966087658Z"} +2026/03/21 20:41:08 [detection_layer] {"stage_name":"detection_layer","events_processed":310,"events_dropped":0,"avg_latency_ms":17.215434948906132,"throughput_eps":0,"last_update":"2026-03-21T20:41:03.966130109Z"} +2026/03/21 20:41:08 ───────────────────────────────────────────────── +2026/03/21 20:41:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:41:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3730,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:41:08.87654606Z"} +2026/03/21 20:41:13 [transform_engine] {"stage_name":"transform_engine","events_processed":310,"events_dropped":0,"avg_latency_ms":148.6499666440767,"throughput_eps":0,"last_update":"2026-03-21T20:41:08.965765589Z"} +2026/03/21 20:41:13 [detection_layer] {"stage_name":"detection_layer","events_processed":310,"events_dropped":0,"avg_latency_ms":17.215434948906132,"throughput_eps":0,"last_update":"2026-03-21T20:41:08.965732175Z"} +2026/03/21 20:41:13 [log_collector] {"stage_name":"log_collector","events_processed":15171,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3034.2,"last_update":"2026-03-21T20:41:13.869806217Z"} +2026/03/21 20:41:13 [metric_collector] {"stage_name":"metric_collector","events_processed":9319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1863.8,"last_update":"2026-03-21T20:41:08.869757617Z"} +2026/03/21 20:41:13 ───────────────────────────────────────────────── +2026/03/21 20:41:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:41:18 [log_collector] {"stage_name":"log_collector","events_processed":15171,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3034.2,"last_update":"2026-03-21T20:41:13.869806217Z"} +2026/03/21 20:41:18 [metric_collector] {"stage_name":"metric_collector","events_processed":9324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1864.8,"last_update":"2026-03-21T20:41:13.8700429Z"} +2026/03/21 20:41:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:41:13.876174246Z"} +2026/03/21 20:41:18 [transform_engine] {"stage_name":"transform_engine","events_processed":310,"events_dropped":0,"avg_latency_ms":148.6499666440767,"throughput_eps":0,"last_update":"2026-03-21T20:41:13.965369018Z"} +2026/03/21 20:41:18 [detection_layer] {"stage_name":"detection_layer","events_processed":310,"events_dropped":0,"avg_latency_ms":17.215434948906132,"throughput_eps":0,"last_update":"2026-03-21T20:41:13.965382274Z"} +2026/03/21 20:41:18 ───────────────────────────────────────────────── +2026/03/21 20:41:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:41:23 [log_collector] {"stage_name":"log_collector","events_processed":15181,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3036.2,"last_update":"2026-03-21T20:41:18.870264198Z"} +2026/03/21 20:41:23 [metric_collector] {"stage_name":"metric_collector","events_processed":9329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1865.8,"last_update":"2026-03-21T20:41:18.870620921Z"} +2026/03/21 20:41:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:41:18.880279067Z"} +2026/03/21 20:41:23 [transform_engine] {"stage_name":"transform_engine","events_processed":311,"events_dropped":0,"avg_latency_ms":141.62999551526136,"throughput_eps":0,"last_update":"2026-03-21T20:41:19.079104982Z"} +2026/03/21 20:41:23 [detection_layer] {"stage_name":"detection_layer","events_processed":310,"events_dropped":0,"avg_latency_ms":17.215434948906132,"throughput_eps":0,"last_update":"2026-03-21T20:41:18.965577284Z"} +2026/03/21 20:41:23 ───────────────────────────────────────────────── +Saved state: 12 clusters, 15182 messages, reason: none +2026/03/21 20:41:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:41:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3736,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:41:23.879291858Z"} +2026/03/21 20:41:28 [transform_engine] {"stage_name":"transform_engine","events_processed":311,"events_dropped":0,"avg_latency_ms":141.62999551526136,"throughput_eps":0,"last_update":"2026-03-21T20:41:23.965528902Z"} +2026/03/21 20:41:28 [detection_layer] {"stage_name":"detection_layer","events_processed":311,"events_dropped":0,"avg_latency_ms":17.172990959124906,"throughput_eps":0,"last_update":"2026-03-21T20:41:23.965488915Z"} +2026/03/21 20:41:28 [log_collector] {"stage_name":"log_collector","events_processed":15182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3036.4,"last_update":"2026-03-21T20:41:28.86940443Z"} +2026/03/21 20:41:28 [metric_collector] {"stage_name":"metric_collector","events_processed":9333,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1866.6,"last_update":"2026-03-21T20:41:23.869403331Z"} +2026/03/21 20:41:28 ───────────────────────────────────────────────── +2026/03/21 20:41:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:41:33 [log_collector] {"stage_name":"log_collector","events_processed":15182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3036.4,"last_update":"2026-03-21T20:41:33.869437866Z"} +2026/03/21 20:41:33 [metric_collector] {"stage_name":"metric_collector","events_processed":9339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1867.8,"last_update":"2026-03-21T20:41:28.869867045Z"} +2026/03/21 20:41:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3738,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:41:28.878049958Z"} +2026/03/21 20:41:33 [transform_engine] {"stage_name":"transform_engine","events_processed":311,"events_dropped":0,"avg_latency_ms":141.62999551526136,"throughput_eps":0,"last_update":"2026-03-21T20:41:28.965409852Z"} +2026/03/21 20:41:33 [detection_layer] {"stage_name":"detection_layer","events_processed":311,"events_dropped":0,"avg_latency_ms":17.172990959124906,"throughput_eps":0,"last_update":"2026-03-21T20:41:28.965427426Z"} +2026/03/21 20:41:33 ───────────────────────────────────────────────── +2026/03/21 20:41:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:41:38 [log_collector] {"stage_name":"log_collector","events_processed":15182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3036.4,"last_update":"2026-03-21T20:41:33.869437866Z"} +2026/03/21 20:41:38 [metric_collector] {"stage_name":"metric_collector","events_processed":9344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1868.8,"last_update":"2026-03-21T20:41:33.869796042Z"} +2026/03/21 20:41:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3740,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:41:33.877941403Z"} +2026/03/21 20:41:38 [transform_engine] {"stage_name":"transform_engine","events_processed":311,"events_dropped":0,"avg_latency_ms":141.62999551526136,"throughput_eps":0,"last_update":"2026-03-21T20:41:33.965055377Z"} +2026/03/21 20:41:38 [detection_layer] {"stage_name":"detection_layer","events_processed":311,"events_dropped":0,"avg_latency_ms":17.172990959124906,"throughput_eps":0,"last_update":"2026-03-21T20:41:33.966257809Z"} +2026/03/21 20:41:38 ───────────────────────────────────────────────── +2026/03/21 20:41:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:41:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:41:38.878611484Z"} +2026/03/21 20:41:43 [transform_engine] {"stage_name":"transform_engine","events_processed":311,"events_dropped":0,"avg_latency_ms":141.62999551526136,"throughput_eps":0,"last_update":"2026-03-21T20:41:38.965880285Z"} +2026/03/21 20:41:43 [detection_layer] {"stage_name":"detection_layer","events_processed":311,"events_dropped":0,"avg_latency_ms":17.172990959124906,"throughput_eps":0,"last_update":"2026-03-21T20:41:38.965838405Z"} +2026/03/21 20:41:43 [log_collector] {"stage_name":"log_collector","events_processed":15182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3036.4,"last_update":"2026-03-21T20:41:38.870045207Z"} +2026/03/21 20:41:43 [metric_collector] {"stage_name":"metric_collector","events_processed":9349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1869.8,"last_update":"2026-03-21T20:41:38.8703913Z"} +2026/03/21 20:41:43 ───────────────────────────────────────────────── +2026/03/21 20:41:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:41:48 [log_collector] {"stage_name":"log_collector","events_processed":15182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3036.4,"last_update":"2026-03-21T20:41:43.870148587Z"} +2026/03/21 20:41:48 [metric_collector] {"stage_name":"metric_collector","events_processed":9354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1870.8,"last_update":"2026-03-21T20:41:43.870597948Z"} +2026/03/21 20:41:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:41:43.879022182Z"} +2026/03/21 20:41:48 [transform_engine] {"stage_name":"transform_engine","events_processed":311,"events_dropped":0,"avg_latency_ms":141.62999551526136,"throughput_eps":0,"last_update":"2026-03-21T20:41:43.965224975Z"} +2026/03/21 20:41:48 [detection_layer] {"stage_name":"detection_layer","events_processed":311,"events_dropped":0,"avg_latency_ms":17.172990959124906,"throughput_eps":0,"last_update":"2026-03-21T20:41:43.965281383Z"} +2026/03/21 20:41:48 ───────────────────────────────────────────────── +2026/03/21 20:41:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:41:53 [log_collector] {"stage_name":"log_collector","events_processed":15182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3036.4,"last_update":"2026-03-21T20:41:48.869588271Z"} +2026/03/21 20:41:53 [metric_collector] {"stage_name":"metric_collector","events_processed":9359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1871.8,"last_update":"2026-03-21T20:41:48.870165174Z"} +2026/03/21 20:41:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:41:48.879297145Z"} +2026/03/21 20:41:53 [transform_engine] {"stage_name":"transform_engine","events_processed":312,"events_dropped":0,"avg_latency_ms":136.3658094122091,"throughput_eps":0,"last_update":"2026-03-21T20:41:49.081078049Z"} +2026/03/21 20:41:53 [detection_layer] {"stage_name":"detection_layer","events_processed":311,"events_dropped":0,"avg_latency_ms":17.172990959124906,"throughput_eps":0,"last_update":"2026-03-21T20:41:48.965724608Z"} +2026/03/21 20:41:53 ───────────────────────────────────────────────── +2026/03/21 20:41:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:41:58 [log_collector] {"stage_name":"log_collector","events_processed":15182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3036.4,"last_update":"2026-03-21T20:41:53.869593722Z"} +2026/03/21 20:41:58 [metric_collector] {"stage_name":"metric_collector","events_processed":9364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1872.8,"last_update":"2026-03-21T20:41:53.869771021Z"} +2026/03/21 20:41:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:41:53.879343403Z"} +2026/03/21 20:41:58 [transform_engine] {"stage_name":"transform_engine","events_processed":312,"events_dropped":0,"avg_latency_ms":136.3658094122091,"throughput_eps":0,"last_update":"2026-03-21T20:41:53.96570978Z"} +2026/03/21 20:41:58 [detection_layer] {"stage_name":"detection_layer","events_processed":312,"events_dropped":0,"avg_latency_ms":17.874655967299926,"throughput_eps":0,"last_update":"2026-03-21T20:41:53.965671157Z"} +2026/03/21 20:41:58 ───────────────────────────────────────────────── +2026/03/21 20:42:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:42:03 [log_collector] {"stage_name":"log_collector","events_processed":15182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3036.4,"last_update":"2026-03-21T20:42:03.869403876Z"} +2026/03/21 20:42:03 [metric_collector] {"stage_name":"metric_collector","events_processed":9369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1873.8,"last_update":"2026-03-21T20:41:58.869795389Z"} +2026/03/21 20:42:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3750,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:41:58.878799124Z"} +2026/03/21 20:42:03 [transform_engine] {"stage_name":"transform_engine","events_processed":312,"events_dropped":0,"avg_latency_ms":136.3658094122091,"throughput_eps":0,"last_update":"2026-03-21T20:41:58.965967717Z"} +2026/03/21 20:42:03 [detection_layer] {"stage_name":"detection_layer","events_processed":312,"events_dropped":0,"avg_latency_ms":17.874655967299926,"throughput_eps":0,"last_update":"2026-03-21T20:41:58.966003556Z"} +2026/03/21 20:42:03 ───────────────────────────────────────────────── +2026/03/21 20:42:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:42:08 [log_collector] {"stage_name":"log_collector","events_processed":15182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3036.4,"last_update":"2026-03-21T20:42:03.869403876Z"} +2026/03/21 20:42:08 [metric_collector] {"stage_name":"metric_collector","events_processed":9374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1874.8,"last_update":"2026-03-21T20:42:03.869871881Z"} +2026/03/21 20:42:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3752,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:42:03.878265879Z"} +2026/03/21 20:42:08 [transform_engine] {"stage_name":"transform_engine","events_processed":312,"events_dropped":0,"avg_latency_ms":136.3658094122091,"throughput_eps":0,"last_update":"2026-03-21T20:42:03.96551185Z"} +2026/03/21 20:42:08 [detection_layer] {"stage_name":"detection_layer","events_processed":312,"events_dropped":0,"avg_latency_ms":17.874655967299926,"throughput_eps":0,"last_update":"2026-03-21T20:42:03.965464911Z"} +2026/03/21 20:42:08 ───────────────────────────────────────────────── +2026/03/21 20:42:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:42:13 [log_collector] {"stage_name":"log_collector","events_processed":15182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3036.4,"last_update":"2026-03-21T20:42:08.869996567Z"} +2026/03/21 20:42:13 [metric_collector] {"stage_name":"metric_collector","events_processed":9379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1875.8,"last_update":"2026-03-21T20:42:08.870469913Z"} +2026/03/21 20:42:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:42:08.878998277Z"} +2026/03/21 20:42:13 [transform_engine] {"stage_name":"transform_engine","events_processed":312,"events_dropped":0,"avg_latency_ms":136.3658094122091,"throughput_eps":0,"last_update":"2026-03-21T20:42:08.965145678Z"} +2026/03/21 20:42:13 [detection_layer] {"stage_name":"detection_layer","events_processed":312,"events_dropped":0,"avg_latency_ms":17.874655967299926,"throughput_eps":0,"last_update":"2026-03-21T20:42:08.966398285Z"} +2026/03/21 20:42:13 ───────────────────────────────────────────────── +2026/03/21 20:42:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:42:18 [metric_collector] {"stage_name":"metric_collector","events_processed":9384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1876.8,"last_update":"2026-03-21T20:42:13.870337417Z"} +2026/03/21 20:42:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:42:13.879330261Z"} +2026/03/21 20:42:18 [transform_engine] {"stage_name":"transform_engine","events_processed":312,"events_dropped":0,"avg_latency_ms":136.3658094122091,"throughput_eps":0,"last_update":"2026-03-21T20:42:13.965916683Z"} +2026/03/21 20:42:18 [detection_layer] {"stage_name":"detection_layer","events_processed":312,"events_dropped":0,"avg_latency_ms":17.874655967299926,"throughput_eps":0,"last_update":"2026-03-21T20:42:13.965947182Z"} +2026/03/21 20:42:18 [log_collector] {"stage_name":"log_collector","events_processed":15182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3036.4,"last_update":"2026-03-21T20:42:13.869891885Z"} +2026/03/21 20:42:18 ───────────────────────────────────────────────── +2026/03/21 20:42:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:42:23 [log_collector] {"stage_name":"log_collector","events_processed":15182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3036.4,"last_update":"2026-03-21T20:42:18.869988277Z"} +2026/03/21 20:42:23 [metric_collector] {"stage_name":"metric_collector","events_processed":9389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1877.8,"last_update":"2026-03-21T20:42:18.87055399Z"} +2026/03/21 20:42:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3758,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:42:18.878623707Z"} +2026/03/21 20:42:23 [transform_engine] {"stage_name":"transform_engine","events_processed":313,"events_dropped":0,"avg_latency_ms":123.49625492976729,"throughput_eps":0,"last_update":"2026-03-21T20:42:19.037839567Z"} +2026/03/21 20:42:23 [detection_layer] {"stage_name":"detection_layer","events_processed":312,"events_dropped":0,"avg_latency_ms":17.874655967299926,"throughput_eps":0,"last_update":"2026-03-21T20:42:18.96592593Z"} +2026/03/21 20:42:23 ───────────────────────────────────────────────── +2026/03/21 20:42:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:42:28 [metric_collector] {"stage_name":"metric_collector","events_processed":9394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1878.8,"last_update":"2026-03-21T20:42:23.87069498Z"} +2026/03/21 20:42:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:42:23.879081904Z"} +2026/03/21 20:42:28 [transform_engine] {"stage_name":"transform_engine","events_processed":313,"events_dropped":0,"avg_latency_ms":123.49625492976729,"throughput_eps":0,"last_update":"2026-03-21T20:42:23.965270105Z"} +2026/03/21 20:42:28 [detection_layer] {"stage_name":"detection_layer","events_processed":313,"events_dropped":0,"avg_latency_ms":18.272811973839943,"throughput_eps":0,"last_update":"2026-03-21T20:42:23.965323107Z"} +2026/03/21 20:42:28 [log_collector] {"stage_name":"log_collector","events_processed":15182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3036.4,"last_update":"2026-03-21T20:42:23.87022516Z"} +2026/03/21 20:42:28 ───────────────────────────────────────────────── +Saved state: 12 clusters, 15183 messages, reason: none +2026/03/21 20:42:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:42:33 [detection_layer] {"stage_name":"detection_layer","events_processed":313,"events_dropped":0,"avg_latency_ms":18.272811973839943,"throughput_eps":0,"last_update":"2026-03-21T20:42:28.965331673Z"} +2026/03/21 20:42:33 [log_collector] {"stage_name":"log_collector","events_processed":15182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3036.4,"last_update":"2026-03-21T20:42:28.869467098Z"} +2026/03/21 20:42:33 [metric_collector] {"stage_name":"metric_collector","events_processed":9399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1879.8,"last_update":"2026-03-21T20:42:28.869938922Z"} +2026/03/21 20:42:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:42:28.878105474Z"} +2026/03/21 20:42:33 [transform_engine] {"stage_name":"transform_engine","events_processed":313,"events_dropped":0,"avg_latency_ms":123.49625492976729,"throughput_eps":0,"last_update":"2026-03-21T20:42:28.965437014Z"} +2026/03/21 20:42:33 ───────────────────────────────────────────────── +2026/03/21 20:42:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:42:38 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:42:33.869501181Z"} +2026/03/21 20:42:38 [metric_collector] {"stage_name":"metric_collector","events_processed":9404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1880.8,"last_update":"2026-03-21T20:42:33.869794352Z"} +2026/03/21 20:42:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:42:33.878793808Z"} +2026/03/21 20:42:38 [transform_engine] {"stage_name":"transform_engine","events_processed":313,"events_dropped":0,"avg_latency_ms":123.49625492976729,"throughput_eps":0,"last_update":"2026-03-21T20:42:33.96606298Z"} +2026/03/21 20:42:38 [detection_layer] {"stage_name":"detection_layer","events_processed":313,"events_dropped":0,"avg_latency_ms":18.272811973839943,"throughput_eps":0,"last_update":"2026-03-21T20:42:33.966019618Z"} +2026/03/21 20:42:38 ───────────────────────────────────────────────── +2026/03/21 20:42:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:42:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3766,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:42:38.879620027Z"} +2026/03/21 20:42:43 [transform_engine] {"stage_name":"transform_engine","events_processed":313,"events_dropped":0,"avg_latency_ms":123.49625492976729,"throughput_eps":0,"last_update":"2026-03-21T20:42:38.965878555Z"} +2026/03/21 20:42:43 [detection_layer] {"stage_name":"detection_layer","events_processed":313,"events_dropped":0,"avg_latency_ms":18.272811973839943,"throughput_eps":0,"last_update":"2026-03-21T20:42:38.965929313Z"} +2026/03/21 20:42:43 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:42:38.870048766Z"} +2026/03/21 20:42:43 [metric_collector] {"stage_name":"metric_collector","events_processed":9409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1881.8,"last_update":"2026-03-21T20:42:38.870470673Z"} +2026/03/21 20:42:43 ───────────────────────────────────────────────── +2026/03/21 20:42:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:42:48 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:42:43.86943654Z"} +2026/03/21 20:42:48 [metric_collector] {"stage_name":"metric_collector","events_processed":9414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1882.8,"last_update":"2026-03-21T20:42:43.869674696Z"} +2026/03/21 20:42:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3768,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:42:43.875974937Z"} +2026/03/21 20:42:48 [transform_engine] {"stage_name":"transform_engine","events_processed":313,"events_dropped":0,"avg_latency_ms":123.49625492976729,"throughput_eps":0,"last_update":"2026-03-21T20:42:43.965100905Z"} +2026/03/21 20:42:48 [detection_layer] {"stage_name":"detection_layer","events_processed":313,"events_dropped":0,"avg_latency_ms":18.272811973839943,"throughput_eps":0,"last_update":"2026-03-21T20:42:43.966185812Z"} +2026/03/21 20:42:48 ───────────────────────────────────────────────── +2026/03/21 20:42:49 [ANOMALY] time=2026-03-21T20:42:49Z score=0.8643 method=SEAD details=MAD!:w=0.24,s=0.95 RRCF-fast!:w=0.20,s=0.90 RRCF-mid!:w=0.18,s=0.90 RRCF-slow:w=0.14,s=0.78 COPOD!:w=0.25,s=0.78 +2026/03/21 20:42:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:42:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3770,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:42:48.875715118Z"} +2026/03/21 20:42:53 [transform_engine] {"stage_name":"transform_engine","events_processed":314,"events_dropped":0,"avg_latency_ms":118.89825654381383,"throughput_eps":0,"last_update":"2026-03-21T20:42:49.066403753Z"} +2026/03/21 20:42:53 [detection_layer] {"stage_name":"detection_layer","events_processed":313,"events_dropped":0,"avg_latency_ms":18.272811973839943,"throughput_eps":0,"last_update":"2026-03-21T20:42:48.966288237Z"} +2026/03/21 20:42:53 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:42:48.869410038Z"} +2026/03/21 20:42:53 [metric_collector] {"stage_name":"metric_collector","events_processed":9419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1883.8,"last_update":"2026-03-21T20:42:48.869654516Z"} +2026/03/21 20:42:53 ───────────────────────────────────────────────── +2026/03/21 20:42:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:42:58 [metric_collector] {"stage_name":"metric_collector","events_processed":9424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1884.8,"last_update":"2026-03-21T20:42:53.869852432Z"} +2026/03/21 20:42:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:42:53.876275797Z"} +2026/03/21 20:42:58 [transform_engine] {"stage_name":"transform_engine","events_processed":314,"events_dropped":0,"avg_latency_ms":118.89825654381383,"throughput_eps":0,"last_update":"2026-03-21T20:42:53.965490086Z"} +2026/03/21 20:42:58 [detection_layer] {"stage_name":"detection_layer","events_processed":314,"events_dropped":0,"avg_latency_ms":16.953145379071955,"throughput_eps":0,"last_update":"2026-03-21T20:42:53.965509013Z"} +2026/03/21 20:42:58 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:42:53.869609747Z"} +2026/03/21 20:42:58 ───────────────────────────────────────────────── +2026/03/21 20:43:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:43:03 [transform_engine] {"stage_name":"transform_engine","events_processed":314,"events_dropped":0,"avg_latency_ms":118.89825654381383,"throughput_eps":0,"last_update":"2026-03-21T20:42:58.965412063Z"} +2026/03/21 20:43:03 [detection_layer] {"stage_name":"detection_layer","events_processed":314,"events_dropped":0,"avg_latency_ms":16.953145379071955,"throughput_eps":0,"last_update":"2026-03-21T20:42:58.965439957Z"} +2026/03/21 20:43:03 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:42:58.870217927Z"} +2026/03/21 20:43:03 [metric_collector] {"stage_name":"metric_collector","events_processed":9429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1885.8,"last_update":"2026-03-21T20:42:58.870662417Z"} +2026/03/21 20:43:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:42:58.877258846Z"} +2026/03/21 20:43:03 ───────────────────────────────────────────────── +2026/03/21 20:43:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:43:08 [transform_engine] {"stage_name":"transform_engine","events_processed":314,"events_dropped":0,"avg_latency_ms":118.89825654381383,"throughput_eps":0,"last_update":"2026-03-21T20:43:03.965080584Z"} +2026/03/21 20:43:08 [detection_layer] {"stage_name":"detection_layer","events_processed":314,"events_dropped":0,"avg_latency_ms":16.953145379071955,"throughput_eps":0,"last_update":"2026-03-21T20:43:03.966221748Z"} +2026/03/21 20:43:08 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:43:03.869455282Z"} +2026/03/21 20:43:08 [metric_collector] {"stage_name":"metric_collector","events_processed":9434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1886.8,"last_update":"2026-03-21T20:43:03.869844467Z"} +2026/03/21 20:43:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:43:03.878010168Z"} +2026/03/21 20:43:08 ───────────────────────────────────────────────── +2026/03/21 20:43:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:43:13 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:43:08.870271735Z"} +2026/03/21 20:43:13 [metric_collector] {"stage_name":"metric_collector","events_processed":9439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1887.8,"last_update":"2026-03-21T20:43:08.87054134Z"} +2026/03/21 20:43:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:43:08.878997117Z"} +2026/03/21 20:43:13 [transform_engine] {"stage_name":"transform_engine","events_processed":314,"events_dropped":0,"avg_latency_ms":118.89825654381383,"throughput_eps":0,"last_update":"2026-03-21T20:43:08.965127615Z"} +2026/03/21 20:43:13 [detection_layer] {"stage_name":"detection_layer","events_processed":314,"events_dropped":0,"avg_latency_ms":16.953145379071955,"throughput_eps":0,"last_update":"2026-03-21T20:43:08.966252478Z"} +2026/03/21 20:43:13 ───────────────────────────────────────────────── +2026/03/21 20:43:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:43:18 [metric_collector] {"stage_name":"metric_collector","events_processed":9444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1888.8,"last_update":"2026-03-21T20:43:13.869634461Z"} +2026/03/21 20:43:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3780,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:43:13.877021572Z"} +2026/03/21 20:43:18 [transform_engine] {"stage_name":"transform_engine","events_processed":314,"events_dropped":0,"avg_latency_ms":118.89825654381383,"throughput_eps":0,"last_update":"2026-03-21T20:43:13.965130358Z"} +2026/03/21 20:43:18 [detection_layer] {"stage_name":"detection_layer","events_processed":314,"events_dropped":0,"avg_latency_ms":16.953145379071955,"throughput_eps":0,"last_update":"2026-03-21T20:43:13.966206498Z"} +2026/03/21 20:43:18 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:43:18.870178606Z"} +2026/03/21 20:43:18 ───────────────────────────────────────────────── +2026/03/21 20:43:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:43:23 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:43:18.870178606Z"} +2026/03/21 20:43:23 [metric_collector] {"stage_name":"metric_collector","events_processed":9449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1889.8,"last_update":"2026-03-21T20:43:18.870680387Z"} +2026/03/21 20:43:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3782,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:43:18.877534147Z"} +2026/03/21 20:43:23 [transform_engine] {"stage_name":"transform_engine","events_processed":315,"events_dropped":0,"avg_latency_ms":106.97811403505106,"throughput_eps":0,"last_update":"2026-03-21T20:43:19.025029206Z"} +2026/03/21 20:43:23 [detection_layer] {"stage_name":"detection_layer","events_processed":314,"events_dropped":0,"avg_latency_ms":16.953145379071955,"throughput_eps":0,"last_update":"2026-03-21T20:43:18.965744278Z"} +2026/03/21 20:43:23 ───────────────────────────────────────────────── +2026/03/21 20:43:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:43:28 [detection_layer] {"stage_name":"detection_layer","events_processed":315,"events_dropped":0,"avg_latency_ms":15.933234703257565,"throughput_eps":0,"last_update":"2026-03-21T20:43:23.9659027Z"} +2026/03/21 20:43:28 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:43:23.869651906Z"} +2026/03/21 20:43:28 [metric_collector] {"stage_name":"metric_collector","events_processed":9454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1890.8,"last_update":"2026-03-21T20:43:23.869870274Z"} +2026/03/21 20:43:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:43:23.878720847Z"} +2026/03/21 20:43:28 [transform_engine] {"stage_name":"transform_engine","events_processed":315,"events_dropped":0,"avg_latency_ms":106.97811403505106,"throughput_eps":0,"last_update":"2026-03-21T20:43:23.965936815Z"} +2026/03/21 20:43:28 ───────────────────────────────────────────────── +2026/03/21 20:43:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:43:33 [transform_engine] {"stage_name":"transform_engine","events_processed":315,"events_dropped":0,"avg_latency_ms":106.97811403505106,"throughput_eps":0,"last_update":"2026-03-21T20:43:28.965769968Z"} +2026/03/21 20:43:33 [detection_layer] {"stage_name":"detection_layer","events_processed":315,"events_dropped":0,"avg_latency_ms":15.933234703257565,"throughput_eps":0,"last_update":"2026-03-21T20:43:28.965757193Z"} +2026/03/21 20:43:33 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:43:28.869884653Z"} +2026/03/21 20:43:33 [metric_collector] {"stage_name":"metric_collector","events_processed":9459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1891.8,"last_update":"2026-03-21T20:43:28.870141545Z"} +2026/03/21 20:43:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:43:28.876580511Z"} +2026/03/21 20:43:33 ───────────────────────────────────────────────── +2026/03/21 20:43:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:43:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:43:33.878570754Z"} +2026/03/21 20:43:38 [transform_engine] {"stage_name":"transform_engine","events_processed":315,"events_dropped":0,"avg_latency_ms":106.97811403505106,"throughput_eps":0,"last_update":"2026-03-21T20:43:33.965776095Z"} +2026/03/21 20:43:38 [detection_layer] {"stage_name":"detection_layer","events_processed":315,"events_dropped":0,"avg_latency_ms":15.933234703257565,"throughput_eps":0,"last_update":"2026-03-21T20:43:33.965759873Z"} +2026/03/21 20:43:38 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:43:33.869685977Z"} +2026/03/21 20:43:38 [metric_collector] {"stage_name":"metric_collector","events_processed":9464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1892.8,"last_update":"2026-03-21T20:43:33.870130417Z"} +2026/03/21 20:43:38 ───────────────────────────────────────────────── +2026/03/21 20:43:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:43:43 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:43:38.869543806Z"} +2026/03/21 20:43:43 [metric_collector] {"stage_name":"metric_collector","events_processed":9469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1893.8,"last_update":"2026-03-21T20:43:38.869982696Z"} +2026/03/21 20:43:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:43:38.878647874Z"} +2026/03/21 20:43:43 [transform_engine] {"stage_name":"transform_engine","events_processed":315,"events_dropped":0,"avg_latency_ms":106.97811403505106,"throughput_eps":0,"last_update":"2026-03-21T20:43:38.965883032Z"} +2026/03/21 20:43:43 [detection_layer] {"stage_name":"detection_layer","events_processed":315,"events_dropped":0,"avg_latency_ms":15.933234703257565,"throughput_eps":0,"last_update":"2026-03-21T20:43:38.965873012Z"} +2026/03/21 20:43:43 ───────────────────────────────────────────────── +2026/03/21 20:43:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:43:48 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:43:43.869428888Z"} +2026/03/21 20:43:48 [metric_collector] {"stage_name":"metric_collector","events_processed":9474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1894.8,"last_update":"2026-03-21T20:43:43.869751555Z"} +2026/03/21 20:43:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:43:43.875882012Z"} +2026/03/21 20:43:48 [transform_engine] {"stage_name":"transform_engine","events_processed":315,"events_dropped":0,"avg_latency_ms":106.97811403505106,"throughput_eps":0,"last_update":"2026-03-21T20:43:43.96611591Z"} +2026/03/21 20:43:48 [detection_layer] {"stage_name":"detection_layer","events_processed":315,"events_dropped":0,"avg_latency_ms":15.933234703257565,"throughput_eps":0,"last_update":"2026-03-21T20:43:43.966106051Z"} +2026/03/21 20:43:48 ───────────────────────────────────────────────── +2026/03/21 20:43:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:43:53 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:43:48.869436235Z"} +2026/03/21 20:43:53 [metric_collector] {"stage_name":"metric_collector","events_processed":9479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1895.8,"last_update":"2026-03-21T20:43:48.869819599Z"} +2026/03/21 20:43:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:43:48.878289654Z"} +2026/03/21 20:43:53 [transform_engine] {"stage_name":"transform_engine","events_processed":316,"events_dropped":0,"avg_latency_ms":99.84492642804085,"throughput_eps":0,"last_update":"2026-03-21T20:43:49.036794458Z"} +2026/03/21 20:43:53 [detection_layer] {"stage_name":"detection_layer","events_processed":315,"events_dropped":0,"avg_latency_ms":15.933234703257565,"throughput_eps":0,"last_update":"2026-03-21T20:43:48.965467342Z"} +2026/03/21 20:43:53 ───────────────────────────────────────────────── +2026/03/21 20:43:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:43:58 [detection_layer] {"stage_name":"detection_layer","events_processed":316,"events_dropped":0,"avg_latency_ms":15.982370362606053,"throughput_eps":0,"last_update":"2026-03-21T20:43:53.965643905Z"} +2026/03/21 20:43:58 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:43:53.869963578Z"} +2026/03/21 20:43:58 [metric_collector] {"stage_name":"metric_collector","events_processed":9484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1896.8,"last_update":"2026-03-21T20:43:53.870270777Z"} +2026/03/21 20:43:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3796,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:43:53.878488578Z"} +2026/03/21 20:43:58 [transform_engine] {"stage_name":"transform_engine","events_processed":316,"events_dropped":0,"avg_latency_ms":99.84492642804085,"throughput_eps":0,"last_update":"2026-03-21T20:43:53.965654716Z"} +2026/03/21 20:43:58 ───────────────────────────────────────────────── +2026/03/21 20:44:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:44:03 [metric_collector] {"stage_name":"metric_collector","events_processed":9489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1897.8,"last_update":"2026-03-21T20:43:58.869629729Z"} +2026/03/21 20:44:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:43:58.876239273Z"} +2026/03/21 20:44:03 [transform_engine] {"stage_name":"transform_engine","events_processed":316,"events_dropped":0,"avg_latency_ms":99.84492642804085,"throughput_eps":0,"last_update":"2026-03-21T20:43:58.965379991Z"} +2026/03/21 20:44:03 [detection_layer] {"stage_name":"detection_layer","events_processed":316,"events_dropped":0,"avg_latency_ms":15.982370362606053,"throughput_eps":0,"last_update":"2026-03-21T20:43:58.965369331Z"} +2026/03/21 20:44:03 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:43:58.869441319Z"} +2026/03/21 20:44:03 ───────────────────────────────────────────────── +2026/03/21 20:44:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:44:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3800,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:44:03.87677899Z"} +2026/03/21 20:44:08 [transform_engine] {"stage_name":"transform_engine","events_processed":316,"events_dropped":0,"avg_latency_ms":99.84492642804085,"throughput_eps":0,"last_update":"2026-03-21T20:44:03.965989263Z"} +2026/03/21 20:44:08 [detection_layer] {"stage_name":"detection_layer","events_processed":316,"events_dropped":0,"avg_latency_ms":15.982370362606053,"throughput_eps":0,"last_update":"2026-03-21T20:44:03.965981106Z"} +2026/03/21 20:44:08 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:44:03.869737561Z"} +2026/03/21 20:44:08 [metric_collector] {"stage_name":"metric_collector","events_processed":9494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1898.8,"last_update":"2026-03-21T20:44:03.870095967Z"} +2026/03/21 20:44:08 ───────────────────────────────────────────────── +2026/03/21 20:44:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:44:13 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:44:08.870071698Z"} +2026/03/21 20:44:13 [metric_collector] {"stage_name":"metric_collector","events_processed":9499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1899.8,"last_update":"2026-03-21T20:44:08.870436466Z"} +2026/03/21 20:44:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3802,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:44:08.878786601Z"} +2026/03/21 20:44:13 [transform_engine] {"stage_name":"transform_engine","events_processed":316,"events_dropped":0,"avg_latency_ms":99.84492642804085,"throughput_eps":0,"last_update":"2026-03-21T20:44:08.965986165Z"} +2026/03/21 20:44:13 [detection_layer] {"stage_name":"detection_layer","events_processed":316,"events_dropped":0,"avg_latency_ms":15.982370362606053,"throughput_eps":0,"last_update":"2026-03-21T20:44:08.965975364Z"} +2026/03/21 20:44:13 ───────────────────────────────────────────────── +2026/03/21 20:44:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:44:18 [detection_layer] {"stage_name":"detection_layer","events_processed":316,"events_dropped":0,"avg_latency_ms":15.982370362606053,"throughput_eps":0,"last_update":"2026-03-21T20:44:13.965426423Z"} +2026/03/21 20:44:18 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:44:13.869599122Z"} +2026/03/21 20:44:18 [metric_collector] {"stage_name":"metric_collector","events_processed":9504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1900.8,"last_update":"2026-03-21T20:44:13.870064382Z"} +2026/03/21 20:44:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:44:13.878197723Z"} +2026/03/21 20:44:18 [transform_engine] {"stage_name":"transform_engine","events_processed":316,"events_dropped":0,"avg_latency_ms":99.84492642804085,"throughput_eps":0,"last_update":"2026-03-21T20:44:13.965438365Z"} +2026/03/21 20:44:18 ───────────────────────────────────────────────── +2026/03/21 20:44:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:44:23 [transform_engine] {"stage_name":"transform_engine","events_processed":317,"events_dropped":0,"avg_latency_ms":233.31230614243267,"throughput_eps":0,"last_update":"2026-03-21T20:44:19.732302503Z"} +2026/03/21 20:44:23 [detection_layer] {"stage_name":"detection_layer","events_processed":316,"events_dropped":0,"avg_latency_ms":15.982370362606053,"throughput_eps":0,"last_update":"2026-03-21T20:44:18.966195005Z"} +2026/03/21 20:44:23 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:44:18.869968408Z"} +2026/03/21 20:44:23 [metric_collector] {"stage_name":"metric_collector","events_processed":9509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1901.8,"last_update":"2026-03-21T20:44:18.870210391Z"} +2026/03/21 20:44:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:44:18.87607073Z"} +2026/03/21 20:44:23 ───────────────────────────────────────────────── +2026/03/21 20:44:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:44:28 [transform_engine] {"stage_name":"transform_engine","events_processed":317,"events_dropped":0,"avg_latency_ms":233.31230614243267,"throughput_eps":0,"last_update":"2026-03-21T20:44:23.966048154Z"} +2026/03/21 20:44:28 [detection_layer] {"stage_name":"detection_layer","events_processed":317,"events_dropped":0,"avg_latency_ms":15.279582290084843,"throughput_eps":0,"last_update":"2026-03-21T20:44:23.96606671Z"} +2026/03/21 20:44:28 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:44:28.869876472Z"} +2026/03/21 20:44:28 [metric_collector] {"stage_name":"metric_collector","events_processed":9514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1902.8,"last_update":"2026-03-21T20:44:23.869839722Z"} +2026/03/21 20:44:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:44:23.877707053Z"} +2026/03/21 20:44:28 ───────────────────────────────────────────────── +2026/03/21 20:44:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:44:33 [detection_layer] {"stage_name":"detection_layer","events_processed":317,"events_dropped":0,"avg_latency_ms":15.279582290084843,"throughput_eps":0,"last_update":"2026-03-21T20:44:28.966187Z"} +2026/03/21 20:44:33 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:44:33.869898695Z"} +2026/03/21 20:44:33 [metric_collector] {"stage_name":"metric_collector","events_processed":9524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1904.8,"last_update":"2026-03-21T20:44:33.869771552Z"} +2026/03/21 20:44:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:44:28.878981743Z"} +2026/03/21 20:44:33 [transform_engine] {"stage_name":"transform_engine","events_processed":317,"events_dropped":0,"avg_latency_ms":233.31230614243267,"throughput_eps":0,"last_update":"2026-03-21T20:44:28.965089279Z"} +2026/03/21 20:44:33 ───────────────────────────────────────────────── +2026/03/21 20:44:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:44:38 [transform_engine] {"stage_name":"transform_engine","events_processed":317,"events_dropped":0,"avg_latency_ms":233.31230614243267,"throughput_eps":0,"last_update":"2026-03-21T20:44:33.965831511Z"} +2026/03/21 20:44:38 [detection_layer] {"stage_name":"detection_layer","events_processed":317,"events_dropped":0,"avg_latency_ms":15.279582290084843,"throughput_eps":0,"last_update":"2026-03-21T20:44:33.965805852Z"} +2026/03/21 20:44:38 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:44:38.869759037Z"} +2026/03/21 20:44:38 [metric_collector] {"stage_name":"metric_collector","events_processed":9524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1904.8,"last_update":"2026-03-21T20:44:33.869771552Z"} +2026/03/21 20:44:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3812,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:44:33.878645801Z"} +2026/03/21 20:44:38 ───────────────────────────────────────────────── +2026/03/21 20:44:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:44:43 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:44:43.869405516Z"} +2026/03/21 20:44:43 [metric_collector] {"stage_name":"metric_collector","events_processed":9529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1905.8,"last_update":"2026-03-21T20:44:38.870010148Z"} +2026/03/21 20:44:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:44:38.877284915Z"} +2026/03/21 20:44:43 [transform_engine] {"stage_name":"transform_engine","events_processed":317,"events_dropped":0,"avg_latency_ms":233.31230614243267,"throughput_eps":0,"last_update":"2026-03-21T20:44:38.965393683Z"} +2026/03/21 20:44:43 [detection_layer] {"stage_name":"detection_layer","events_processed":317,"events_dropped":0,"avg_latency_ms":15.279582290084843,"throughput_eps":0,"last_update":"2026-03-21T20:44:38.965369427Z"} +2026/03/21 20:44:43 ───────────────────────────────────────────────── +2026/03/21 20:44:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:44:48 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:44:43.869405516Z"} +2026/03/21 20:44:48 [metric_collector] {"stage_name":"metric_collector","events_processed":9534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1906.8,"last_update":"2026-03-21T20:44:43.869891066Z"} +2026/03/21 20:44:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3816,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:44:43.878715379Z"} +2026/03/21 20:44:48 [transform_engine] {"stage_name":"transform_engine","events_processed":317,"events_dropped":0,"avg_latency_ms":233.31230614243267,"throughput_eps":0,"last_update":"2026-03-21T20:44:43.965941178Z"} +2026/03/21 20:44:48 [detection_layer] {"stage_name":"detection_layer","events_processed":317,"events_dropped":0,"avg_latency_ms":15.279582290084843,"throughput_eps":0,"last_update":"2026-03-21T20:44:43.965919877Z"} +2026/03/21 20:44:48 ───────────────────────────────────────────────── +2026/03/21 20:44:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:44:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3818,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:44:48.878661718Z"} +2026/03/21 20:44:53 [transform_engine] {"stage_name":"transform_engine","events_processed":318,"events_dropped":0,"avg_latency_ms":200.69160111394615,"throughput_eps":0,"last_update":"2026-03-21T20:44:49.036037738Z"} +2026/03/21 20:44:53 [detection_layer] {"stage_name":"detection_layer","events_processed":317,"events_dropped":0,"avg_latency_ms":15.279582290084843,"throughput_eps":0,"last_update":"2026-03-21T20:44:48.965864854Z"} +2026/03/21 20:44:53 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:44:53.869404449Z"} +2026/03/21 20:44:53 [metric_collector] {"stage_name":"metric_collector","events_processed":9539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1907.8,"last_update":"2026-03-21T20:44:48.869797639Z"} +2026/03/21 20:44:53 ───────────────────────────────────────────────── +2026/03/21 20:44:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:44:58 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:44:58.869899297Z"} +2026/03/21 20:44:58 [metric_collector] {"stage_name":"metric_collector","events_processed":9544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1908.8,"last_update":"2026-03-21T20:44:53.869795938Z"} +2026/03/21 20:44:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3820,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:44:53.876556271Z"} +2026/03/21 20:44:58 [transform_engine] {"stage_name":"transform_engine","events_processed":318,"events_dropped":0,"avg_latency_ms":200.69160111394615,"throughput_eps":0,"last_update":"2026-03-21T20:44:53.965745289Z"} +2026/03/21 20:44:58 [detection_layer] {"stage_name":"detection_layer","events_processed":318,"events_dropped":0,"avg_latency_ms":15.590202832067876,"throughput_eps":0,"last_update":"2026-03-21T20:44:53.965734589Z"} +2026/03/21 20:44:58 ───────────────────────────────────────────────── +2026/03/21 20:45:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:45:03 [transform_engine] {"stage_name":"transform_engine","events_processed":318,"events_dropped":0,"avg_latency_ms":200.69160111394615,"throughput_eps":0,"last_update":"2026-03-21T20:44:58.965574403Z"} +2026/03/21 20:45:03 [detection_layer] {"stage_name":"detection_layer","events_processed":318,"events_dropped":0,"avg_latency_ms":15.590202832067876,"throughput_eps":0,"last_update":"2026-03-21T20:44:58.965545537Z"} +2026/03/21 20:45:03 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:44:58.869899297Z"} +2026/03/21 20:45:03 [metric_collector] {"stage_name":"metric_collector","events_processed":9549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1909.8,"last_update":"2026-03-21T20:44:58.870169563Z"} +2026/03/21 20:45:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:44:58.879413942Z"} +2026/03/21 20:45:03 ───────────────────────────────────────────────── +2026/03/21 20:45:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:45:08 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:45:03.869443566Z"} +2026/03/21 20:45:08 [metric_collector] {"stage_name":"metric_collector","events_processed":9554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1910.8,"last_update":"2026-03-21T20:45:03.869762508Z"} +2026/03/21 20:45:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:45:03.878420673Z"} +2026/03/21 20:45:08 [transform_engine] {"stage_name":"transform_engine","events_processed":318,"events_dropped":0,"avg_latency_ms":200.69160111394615,"throughput_eps":0,"last_update":"2026-03-21T20:45:03.96542001Z"} +2026/03/21 20:45:08 [detection_layer] {"stage_name":"detection_layer","events_processed":318,"events_dropped":0,"avg_latency_ms":15.590202832067876,"throughput_eps":0,"last_update":"2026-03-21T20:45:03.965395934Z"} +2026/03/21 20:45:08 ───────────────────────────────────────────────── +2026/03/21 20:45:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:45:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:45:08.869434481Z"} +2026/03/21 20:45:13 [transform_engine] {"stage_name":"transform_engine","events_processed":318,"events_dropped":0,"avg_latency_ms":200.69160111394615,"throughput_eps":0,"last_update":"2026-03-21T20:45:08.965584869Z"} +2026/03/21 20:45:13 [detection_layer] {"stage_name":"detection_layer","events_processed":318,"events_dropped":0,"avg_latency_ms":15.590202832067876,"throughput_eps":0,"last_update":"2026-03-21T20:45:08.965557857Z"} +2026/03/21 20:45:13 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:45:08.869415625Z"} +2026/03/21 20:45:13 [metric_collector] {"stage_name":"metric_collector","events_processed":9559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1911.8,"last_update":"2026-03-21T20:45:08.869775674Z"} +2026/03/21 20:45:13 ───────────────────────────────────────────────── +2026/03/21 20:45:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:45:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:45:13.876563637Z"} +2026/03/21 20:45:18 [transform_engine] {"stage_name":"transform_engine","events_processed":318,"events_dropped":0,"avg_latency_ms":200.69160111394615,"throughput_eps":0,"last_update":"2026-03-21T20:45:13.965764831Z"} +2026/03/21 20:45:18 [detection_layer] {"stage_name":"detection_layer","events_processed":318,"events_dropped":0,"avg_latency_ms":15.590202832067876,"throughput_eps":0,"last_update":"2026-03-21T20:45:13.965807212Z"} +2026/03/21 20:45:18 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:45:13.870366643Z"} +2026/03/21 20:45:18 [metric_collector] {"stage_name":"metric_collector","events_processed":9564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1912.8,"last_update":"2026-03-21T20:45:13.87061592Z"} +2026/03/21 20:45:18 ───────────────────────────────────────────────── +2026/03/21 20:45:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:45:23 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:45:23.870318898Z"} +2026/03/21 20:45:23 [metric_collector] {"stage_name":"metric_collector","events_processed":9569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1913.8,"last_update":"2026-03-21T20:45:18.870749297Z"} +2026/03/21 20:45:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3830,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:45:18.879980309Z"} +2026/03/21 20:45:23 [transform_engine] {"stage_name":"transform_engine","events_processed":319,"events_dropped":0,"avg_latency_ms":174.97257469115692,"throughput_eps":0,"last_update":"2026-03-21T20:45:19.037233359Z"} +2026/03/21 20:45:23 [detection_layer] {"stage_name":"detection_layer","events_processed":318,"events_dropped":0,"avg_latency_ms":15.590202832067876,"throughput_eps":0,"last_update":"2026-03-21T20:45:18.966230184Z"} +2026/03/21 20:45:23 ───────────────────────────────────────────────── +2026/03/21 20:45:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:45:28 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:45:23.870318898Z"} +2026/03/21 20:45:28 [metric_collector] {"stage_name":"metric_collector","events_processed":9574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1914.8,"last_update":"2026-03-21T20:45:23.870651114Z"} +2026/03/21 20:45:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3832,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:45:23.879982129Z"} +2026/03/21 20:45:28 [transform_engine] {"stage_name":"transform_engine","events_processed":319,"events_dropped":0,"avg_latency_ms":174.97257469115692,"throughput_eps":0,"last_update":"2026-03-21T20:45:23.965068526Z"} +2026/03/21 20:45:28 [detection_layer] {"stage_name":"detection_layer","events_processed":319,"events_dropped":0,"avg_latency_ms":15.811910265654301,"throughput_eps":0,"last_update":"2026-03-21T20:45:23.966173021Z"} +2026/03/21 20:45:28 ───────────────────────────────────────────────── +2026/03/21 20:45:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:45:33 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:45:33.869546319Z"} +2026/03/21 20:45:33 [metric_collector] {"stage_name":"metric_collector","events_processed":9579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1915.8,"last_update":"2026-03-21T20:45:28.869635892Z"} +2026/03/21 20:45:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:45:28.876985022Z"} +2026/03/21 20:45:33 [transform_engine] {"stage_name":"transform_engine","events_processed":319,"events_dropped":0,"avg_latency_ms":174.97257469115692,"throughput_eps":0,"last_update":"2026-03-21T20:45:28.965085952Z"} +2026/03/21 20:45:33 [detection_layer] {"stage_name":"detection_layer","events_processed":319,"events_dropped":0,"avg_latency_ms":15.811910265654301,"throughput_eps":0,"last_update":"2026-03-21T20:45:28.966178163Z"} +2026/03/21 20:45:33 ───────────────────────────────────────────────── +2026/03/21 20:45:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:45:38 [transform_engine] {"stage_name":"transform_engine","events_processed":319,"events_dropped":0,"avg_latency_ms":174.97257469115692,"throughput_eps":0,"last_update":"2026-03-21T20:45:33.965773136Z"} +2026/03/21 20:45:38 [detection_layer] {"stage_name":"detection_layer","events_processed":319,"events_dropped":0,"avg_latency_ms":15.811910265654301,"throughput_eps":0,"last_update":"2026-03-21T20:45:33.965796601Z"} +2026/03/21 20:45:38 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:45:33.869546319Z"} +2026/03/21 20:45:38 [metric_collector] {"stage_name":"metric_collector","events_processed":9584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1916.8,"last_update":"2026-03-21T20:45:33.870232863Z"} +2026/03/21 20:45:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:45:33.878570855Z"} +2026/03/21 20:45:38 ───────────────────────────────────────────────── +2026/03/21 20:45:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:45:43 [transform_engine] {"stage_name":"transform_engine","events_processed":319,"events_dropped":0,"avg_latency_ms":174.97257469115692,"throughput_eps":0,"last_update":"2026-03-21T20:45:38.965077015Z"} +2026/03/21 20:45:43 [detection_layer] {"stage_name":"detection_layer","events_processed":319,"events_dropped":0,"avg_latency_ms":15.811910265654301,"throughput_eps":0,"last_update":"2026-03-21T20:45:38.96618119Z"} +2026/03/21 20:45:43 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:45:43.870286424Z"} +2026/03/21 20:45:43 [metric_collector] {"stage_name":"metric_collector","events_processed":9589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1917.8,"last_update":"2026-03-21T20:45:38.870326714Z"} +2026/03/21 20:45:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:45:38.876945256Z"} +2026/03/21 20:45:43 ───────────────────────────────────────────────── +2026/03/21 20:45:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:45:48 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:45:43.870286424Z"} +2026/03/21 20:45:48 [metric_collector] {"stage_name":"metric_collector","events_processed":9594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1918.8,"last_update":"2026-03-21T20:45:43.870604553Z"} +2026/03/21 20:45:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:45:43.876240483Z"} +2026/03/21 20:45:48 [transform_engine] {"stage_name":"transform_engine","events_processed":319,"events_dropped":0,"avg_latency_ms":174.97257469115692,"throughput_eps":0,"last_update":"2026-03-21T20:45:43.965487229Z"} +2026/03/21 20:45:48 [detection_layer] {"stage_name":"detection_layer","events_processed":319,"events_dropped":0,"avg_latency_ms":15.811910265654301,"throughput_eps":0,"last_update":"2026-03-21T20:45:43.965455117Z"} +2026/03/21 20:45:48 ───────────────────────────────────────────────── +2026/03/21 20:45:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:45:53 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:45:53.86953432Z"} +2026/03/21 20:45:53 [metric_collector] {"stage_name":"metric_collector","events_processed":9599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1919.8,"last_update":"2026-03-21T20:45:48.870415833Z"} +2026/03/21 20:45:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:45:48.878904825Z"} +2026/03/21 20:45:53 [transform_engine] {"stage_name":"transform_engine","events_processed":319,"events_dropped":0,"avg_latency_ms":174.97257469115692,"throughput_eps":0,"last_update":"2026-03-21T20:45:48.966062902Z"} +2026/03/21 20:45:53 [detection_layer] {"stage_name":"detection_layer","events_processed":319,"events_dropped":0,"avg_latency_ms":15.811910265654301,"throughput_eps":0,"last_update":"2026-03-21T20:45:48.966092518Z"} +2026/03/21 20:45:53 ───────────────────────────────────────────────── +2026/03/21 20:45:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:45:58 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:45:53.86953432Z"} +2026/03/21 20:45:58 [metric_collector] {"stage_name":"metric_collector","events_processed":9604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1920.8,"last_update":"2026-03-21T20:45:53.869966969Z"} +2026/03/21 20:45:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:45:53.878604506Z"} +2026/03/21 20:45:58 [transform_engine] {"stage_name":"transform_engine","events_processed":320,"events_dropped":0,"avg_latency_ms":154.08618435292553,"throughput_eps":0,"last_update":"2026-03-21T20:45:53.965803031Z"} +2026/03/21 20:45:58 [detection_layer] {"stage_name":"detection_layer","events_processed":320,"events_dropped":0,"avg_latency_ms":16.149643212523443,"throughput_eps":0,"last_update":"2026-03-21T20:45:53.965768645Z"} +2026/03/21 20:45:58 ───────────────────────────────────────────────── +2026/03/21 20:46:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:46:03 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:45:58.869487809Z"} +2026/03/21 20:46:03 [metric_collector] {"stage_name":"metric_collector","events_processed":9609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1921.8,"last_update":"2026-03-21T20:45:58.869680998Z"} +2026/03/21 20:46:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:45:58.875779354Z"} +2026/03/21 20:46:03 [transform_engine] {"stage_name":"transform_engine","events_processed":320,"events_dropped":0,"avg_latency_ms":154.08618435292553,"throughput_eps":0,"last_update":"2026-03-21T20:45:58.965933038Z"} +2026/03/21 20:46:03 [detection_layer] {"stage_name":"detection_layer","events_processed":320,"events_dropped":0,"avg_latency_ms":16.149643212523443,"throughput_eps":0,"last_update":"2026-03-21T20:45:58.96598084Z"} +2026/03/21 20:46:03 ───────────────────────────────────────────────── +2026/03/21 20:46:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:46:08 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:46:08.869402488Z"} +2026/03/21 20:46:08 [metric_collector] {"stage_name":"metric_collector","events_processed":9614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1922.8,"last_update":"2026-03-21T20:46:03.870256169Z"} +2026/03/21 20:46:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3848,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:46:03.8768636Z"} +2026/03/21 20:46:08 [transform_engine] {"stage_name":"transform_engine","events_processed":320,"events_dropped":0,"avg_latency_ms":154.08618435292553,"throughput_eps":0,"last_update":"2026-03-21T20:46:03.966061444Z"} +2026/03/21 20:46:08 [detection_layer] {"stage_name":"detection_layer","events_processed":320,"events_dropped":0,"avg_latency_ms":16.149643212523443,"throughput_eps":0,"last_update":"2026-03-21T20:46:03.966053518Z"} +2026/03/21 20:46:08 ───────────────────────────────────────────────── +2026/03/21 20:46:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:46:13 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:46:13.869570668Z"} +2026/03/21 20:46:13 [metric_collector] {"stage_name":"metric_collector","events_processed":9619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1923.8,"last_update":"2026-03-21T20:46:08.869752318Z"} +2026/03/21 20:46:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:46:08.878768268Z"} +2026/03/21 20:46:13 [transform_engine] {"stage_name":"transform_engine","events_processed":320,"events_dropped":0,"avg_latency_ms":154.08618435292553,"throughput_eps":0,"last_update":"2026-03-21T20:46:08.965951897Z"} +2026/03/21 20:46:13 [detection_layer] {"stage_name":"detection_layer","events_processed":320,"events_dropped":0,"avg_latency_ms":16.149643212523443,"throughput_eps":0,"last_update":"2026-03-21T20:46:08.965941457Z"} +2026/03/21 20:46:13 ───────────────────────────────────────────────── +2026/03/21 20:46:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:46:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:46:13.878404781Z"} +2026/03/21 20:46:18 [transform_engine] {"stage_name":"transform_engine","events_processed":320,"events_dropped":0,"avg_latency_ms":154.08618435292553,"throughput_eps":0,"last_update":"2026-03-21T20:46:13.965664696Z"} +2026/03/21 20:46:18 [detection_layer] {"stage_name":"detection_layer","events_processed":320,"events_dropped":0,"avg_latency_ms":16.149643212523443,"throughput_eps":0,"last_update":"2026-03-21T20:46:13.965655839Z"} +2026/03/21 20:46:18 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:46:13.869570668Z"} +2026/03/21 20:46:18 [metric_collector] {"stage_name":"metric_collector","events_processed":9624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1924.8,"last_update":"2026-03-21T20:46:13.869913403Z"} +2026/03/21 20:46:18 ───────────────────────────────────────────────── +2026/03/21 20:46:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:46:23 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:46:18.870281628Z"} +2026/03/21 20:46:23 [metric_collector] {"stage_name":"metric_collector","events_processed":9628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1925.6,"last_update":"2026-03-21T20:46:18.870296506Z"} +2026/03/21 20:46:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:46:18.876530521Z"} +2026/03/21 20:46:23 [transform_engine] {"stage_name":"transform_engine","events_processed":321,"events_dropped":0,"avg_latency_ms":135.91705928234043,"throughput_eps":0,"last_update":"2026-03-21T20:46:19.028953145Z"} +2026/03/21 20:46:23 [detection_layer] {"stage_name":"detection_layer","events_processed":320,"events_dropped":0,"avg_latency_ms":16.149643212523443,"throughput_eps":0,"last_update":"2026-03-21T20:46:18.965701205Z"} +2026/03/21 20:46:23 ───────────────────────────────────────────────── +2026/03/21 20:46:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:46:28 [metric_collector] {"stage_name":"metric_collector","events_processed":9633,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1926.6,"last_update":"2026-03-21T20:46:23.870237801Z"} +2026/03/21 20:46:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:46:23.879472962Z"} +2026/03/21 20:46:28 [transform_engine] {"stage_name":"transform_engine","events_processed":321,"events_dropped":0,"avg_latency_ms":135.91705928234043,"throughput_eps":0,"last_update":"2026-03-21T20:46:23.965691895Z"} +2026/03/21 20:46:28 [detection_layer] {"stage_name":"detection_layer","events_processed":321,"events_dropped":0,"avg_latency_ms":15.576703570018754,"throughput_eps":0,"last_update":"2026-03-21T20:46:23.96564201Z"} +2026/03/21 20:46:28 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:46:28.869759403Z"} +2026/03/21 20:46:28 ───────────────────────────────────────────────── +2026/03/21 20:46:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:46:33 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:46:33.869418502Z"} +2026/03/21 20:46:33 [metric_collector] {"stage_name":"metric_collector","events_processed":9639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1927.8,"last_update":"2026-03-21T20:46:28.870202992Z"} +2026/03/21 20:46:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:46:28.878290687Z"} +2026/03/21 20:46:33 [transform_engine] {"stage_name":"transform_engine","events_processed":321,"events_dropped":0,"avg_latency_ms":135.91705928234043,"throughput_eps":0,"last_update":"2026-03-21T20:46:28.965497492Z"} +2026/03/21 20:46:33 [detection_layer] {"stage_name":"detection_layer","events_processed":321,"events_dropped":0,"avg_latency_ms":15.576703570018754,"throughput_eps":0,"last_update":"2026-03-21T20:46:28.965472735Z"} +2026/03/21 20:46:33 ───────────────────────────────────────────────── +2026/03/21 20:46:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:46:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3860,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:46:33.875625966Z"} +2026/03/21 20:46:38 [transform_engine] {"stage_name":"transform_engine","events_processed":321,"events_dropped":0,"avg_latency_ms":135.91705928234043,"throughput_eps":0,"last_update":"2026-03-21T20:46:33.965846382Z"} +2026/03/21 20:46:38 [detection_layer] {"stage_name":"detection_layer","events_processed":321,"events_dropped":0,"avg_latency_ms":15.576703570018754,"throughput_eps":0,"last_update":"2026-03-21T20:46:33.965830762Z"} +2026/03/21 20:46:38 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:46:33.869418502Z"} +2026/03/21 20:46:38 [metric_collector] {"stage_name":"metric_collector","events_processed":9644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1928.8,"last_update":"2026-03-21T20:46:33.869854907Z"} +2026/03/21 20:46:38 ───────────────────────────────────────────────── +2026/03/21 20:46:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:46:43 [detection_layer] {"stage_name":"detection_layer","events_processed":321,"events_dropped":0,"avg_latency_ms":15.576703570018754,"throughput_eps":0,"last_update":"2026-03-21T20:46:38.965826953Z"} +2026/03/21 20:46:43 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:46:38.869424672Z"} +2026/03/21 20:46:43 [metric_collector] {"stage_name":"metric_collector","events_processed":9649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1929.8,"last_update":"2026-03-21T20:46:38.869765323Z"} +2026/03/21 20:46:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3862,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:46:38.878586763Z"} +2026/03/21 20:46:43 [transform_engine] {"stage_name":"transform_engine","events_processed":321,"events_dropped":0,"avg_latency_ms":135.91705928234043,"throughput_eps":0,"last_update":"2026-03-21T20:46:38.965788369Z"} +2026/03/21 20:46:43 ───────────────────────────────────────────────── +2026/03/21 20:46:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:46:48 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:46:43.869662693Z"} +2026/03/21 20:46:48 [metric_collector] {"stage_name":"metric_collector","events_processed":9654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1930.8,"last_update":"2026-03-21T20:46:43.870034945Z"} +2026/03/21 20:46:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:46:43.878928474Z"} +2026/03/21 20:46:48 [transform_engine] {"stage_name":"transform_engine","events_processed":321,"events_dropped":0,"avg_latency_ms":135.91705928234043,"throughput_eps":0,"last_update":"2026-03-21T20:46:43.96611492Z"} +2026/03/21 20:46:48 [detection_layer] {"stage_name":"detection_layer","events_processed":321,"events_dropped":0,"avg_latency_ms":15.576703570018754,"throughput_eps":0,"last_update":"2026-03-21T20:46:43.96614546Z"} +2026/03/21 20:46:48 ───────────────────────────────────────────────── +2026/03/21 20:46:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:46:53 [detection_layer] {"stage_name":"detection_layer","events_processed":321,"events_dropped":0,"avg_latency_ms":15.576703570018754,"throughput_eps":0,"last_update":"2026-03-21T20:46:48.965285162Z"} +2026/03/21 20:46:53 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:46:48.870139655Z"} +2026/03/21 20:46:53 [metric_collector] {"stage_name":"metric_collector","events_processed":9659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1931.8,"last_update":"2026-03-21T20:46:48.870567174Z"} +2026/03/21 20:46:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:46:48.879079943Z"} +2026/03/21 20:46:53 [transform_engine] {"stage_name":"transform_engine","events_processed":322,"events_dropped":0,"avg_latency_ms":122.19097102587236,"throughput_eps":0,"last_update":"2026-03-21T20:46:49.032605414Z"} +2026/03/21 20:46:53 ───────────────────────────────────────────────── +2026/03/21 20:46:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:46:58 [detection_layer] {"stage_name":"detection_layer","events_processed":322,"events_dropped":0,"avg_latency_ms":15.787028256015004,"throughput_eps":0,"last_update":"2026-03-21T20:46:53.966231142Z"} +2026/03/21 20:46:58 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:46:58.869592306Z"} +2026/03/21 20:46:58 [metric_collector] {"stage_name":"metric_collector","events_processed":9664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1932.8,"last_update":"2026-03-21T20:46:53.870345298Z"} +2026/03/21 20:46:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3868,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:46:53.87599763Z"} +2026/03/21 20:46:58 [transform_engine] {"stage_name":"transform_engine","events_processed":322,"events_dropped":0,"avg_latency_ms":122.19097102587236,"throughput_eps":0,"last_update":"2026-03-21T20:46:53.965118903Z"} +2026/03/21 20:46:58 ───────────────────────────────────────────────── +2026/03/21 20:47:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:47:03 [metric_collector] {"stage_name":"metric_collector","events_processed":9669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1933.8,"last_update":"2026-03-21T20:46:58.870032098Z"} +2026/03/21 20:47:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:46:58.878429706Z"} +2026/03/21 20:47:03 [transform_engine] {"stage_name":"transform_engine","events_processed":322,"events_dropped":0,"avg_latency_ms":122.19097102587236,"throughput_eps":0,"last_update":"2026-03-21T20:46:58.965607268Z"} +2026/03/21 20:47:03 [detection_layer] {"stage_name":"detection_layer","events_processed":322,"events_dropped":0,"avg_latency_ms":15.787028256015004,"throughput_eps":0,"last_update":"2026-03-21T20:46:58.965635953Z"} +2026/03/21 20:47:03 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:46:58.869592306Z"} +2026/03/21 20:47:03 ───────────────────────────────────────────────── +2026/03/21 20:47:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:47:08 [metric_collector] {"stage_name":"metric_collector","events_processed":9674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1934.8,"last_update":"2026-03-21T20:47:03.869781913Z"} +2026/03/21 20:47:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:47:03.878315622Z"} +2026/03/21 20:47:08 [transform_engine] {"stage_name":"transform_engine","events_processed":322,"events_dropped":0,"avg_latency_ms":122.19097102587236,"throughput_eps":0,"last_update":"2026-03-21T20:47:03.965519485Z"} +2026/03/21 20:47:08 [detection_layer] {"stage_name":"detection_layer","events_processed":322,"events_dropped":0,"avg_latency_ms":15.787028256015004,"throughput_eps":0,"last_update":"2026-03-21T20:47:03.965509566Z"} +2026/03/21 20:47:08 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:47:08.86971133Z"} +2026/03/21 20:47:08 ───────────────────────────────────────────────── +2026/03/21 20:47:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:47:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:47:08.877612547Z"} +2026/03/21 20:47:13 [transform_engine] {"stage_name":"transform_engine","events_processed":322,"events_dropped":0,"avg_latency_ms":122.19097102587236,"throughput_eps":0,"last_update":"2026-03-21T20:47:08.965749016Z"} +2026/03/21 20:47:13 [detection_layer] {"stage_name":"detection_layer","events_processed":322,"events_dropped":0,"avg_latency_ms":15.787028256015004,"throughput_eps":0,"last_update":"2026-03-21T20:47:08.96574014Z"} +2026/03/21 20:47:13 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:47:13.869884155Z"} +2026/03/21 20:47:13 [metric_collector] {"stage_name":"metric_collector","events_processed":9679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1935.8,"last_update":"2026-03-21T20:47:08.870072531Z"} +2026/03/21 20:47:13 ───────────────────────────────────────────────── +2026/03/21 20:47:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:47:18 [detection_layer] {"stage_name":"detection_layer","events_processed":322,"events_dropped":0,"avg_latency_ms":15.787028256015004,"throughput_eps":0,"last_update":"2026-03-21T20:47:13.965402798Z"} +2026/03/21 20:47:18 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:47:13.869884155Z"} +2026/03/21 20:47:18 [metric_collector] {"stage_name":"metric_collector","events_processed":9684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1936.8,"last_update":"2026-03-21T20:47:13.870203816Z"} +2026/03/21 20:47:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3876,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:47:13.877125199Z"} +2026/03/21 20:47:18 [transform_engine] {"stage_name":"transform_engine","events_processed":322,"events_dropped":0,"avg_latency_ms":122.19097102587236,"throughput_eps":0,"last_update":"2026-03-21T20:47:13.9654138Z"} +2026/03/21 20:47:18 ───────────────────────────────────────────────── +2026/03/21 20:47:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:47:23 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:47:18.870432169Z"} +2026/03/21 20:47:23 [metric_collector] {"stage_name":"metric_collector","events_processed":9689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1937.8,"last_update":"2026-03-21T20:47:18.870629856Z"} +2026/03/21 20:47:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:47:18.879328261Z"} +2026/03/21 20:47:23 [transform_engine] {"stage_name":"transform_engine","events_processed":323,"events_dropped":0,"avg_latency_ms":111.20644382069788,"throughput_eps":0,"last_update":"2026-03-21T20:47:19.032808029Z"} +2026/03/21 20:47:23 [detection_layer] {"stage_name":"detection_layer","events_processed":322,"events_dropped":0,"avg_latency_ms":15.787028256015004,"throughput_eps":0,"last_update":"2026-03-21T20:47:18.965526891Z"} +2026/03/21 20:47:23 ───────────────────────────────────────────────── +2026/03/21 20:47:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:47:28 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:47:23.870066921Z"} +2026/03/21 20:47:28 [metric_collector] {"stage_name":"metric_collector","events_processed":9694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1938.8,"last_update":"2026-03-21T20:47:23.870388386Z"} +2026/03/21 20:47:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:47:23.876876179Z"} +2026/03/21 20:47:28 [transform_engine] {"stage_name":"transform_engine","events_processed":323,"events_dropped":0,"avg_latency_ms":111.20644382069788,"throughput_eps":0,"last_update":"2026-03-21T20:47:23.966050826Z"} +2026/03/21 20:47:28 [detection_layer] {"stage_name":"detection_layer","events_processed":323,"events_dropped":0,"avg_latency_ms":16.208771404812005,"throughput_eps":0,"last_update":"2026-03-21T20:47:23.966041589Z"} +2026/03/21 20:47:28 ───────────────────────────────────────────────── +2026/03/21 20:47:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:47:33 [detection_layer] {"stage_name":"detection_layer","events_processed":323,"events_dropped":0,"avg_latency_ms":16.208771404812005,"throughput_eps":0,"last_update":"2026-03-21T20:47:28.96593759Z"} +2026/03/21 20:47:33 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:47:28.869404894Z"} +2026/03/21 20:47:33 [metric_collector] {"stage_name":"metric_collector","events_processed":9699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1939.8,"last_update":"2026-03-21T20:47:28.869755945Z"} +2026/03/21 20:47:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:47:28.876759264Z"} +2026/03/21 20:47:33 [transform_engine] {"stage_name":"transform_engine","events_processed":323,"events_dropped":0,"avg_latency_ms":111.20644382069788,"throughput_eps":0,"last_update":"2026-03-21T20:47:28.965946077Z"} +2026/03/21 20:47:33 ───────────────────────────────────────────────── +2026/03/21 20:47:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:47:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:47:33.877920967Z"} +2026/03/21 20:47:38 [transform_engine] {"stage_name":"transform_engine","events_processed":323,"events_dropped":0,"avg_latency_ms":111.20644382069788,"throughput_eps":0,"last_update":"2026-03-21T20:47:33.966158061Z"} +2026/03/21 20:47:38 [detection_layer] {"stage_name":"detection_layer","events_processed":323,"events_dropped":0,"avg_latency_ms":16.208771404812005,"throughput_eps":0,"last_update":"2026-03-21T20:47:33.966145547Z"} +2026/03/21 20:47:38 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:47:33.869451751Z"} +2026/03/21 20:47:38 [metric_collector] {"stage_name":"metric_collector","events_processed":9704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1940.8,"last_update":"2026-03-21T20:47:33.869691059Z"} +2026/03/21 20:47:38 ───────────────────────────────────────────────── +Saved state: 12 clusters, 15188 messages, reason: none +2026/03/21 20:47:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:47:43 [log_collector] {"stage_name":"log_collector","events_processed":15187,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.4,"last_update":"2026-03-21T20:47:38.869426156Z"} +2026/03/21 20:47:43 [metric_collector] {"stage_name":"metric_collector","events_processed":9709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1941.8,"last_update":"2026-03-21T20:47:38.869857512Z"} +2026/03/21 20:47:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3886,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:47:38.878009771Z"} +2026/03/21 20:47:43 [transform_engine] {"stage_name":"transform_engine","events_processed":323,"events_dropped":0,"avg_latency_ms":111.20644382069788,"throughput_eps":0,"last_update":"2026-03-21T20:47:38.965129437Z"} +2026/03/21 20:47:43 [detection_layer] {"stage_name":"detection_layer","events_processed":323,"events_dropped":0,"avg_latency_ms":16.208771404812005,"throughput_eps":0,"last_update":"2026-03-21T20:47:38.966240734Z"} +2026/03/21 20:47:43 ───────────────────────────────────────────────── +2026/03/21 20:47:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:47:48 [transform_engine] {"stage_name":"transform_engine","events_processed":323,"events_dropped":0,"avg_latency_ms":111.20644382069788,"throughput_eps":0,"last_update":"2026-03-21T20:47:43.965626471Z"} +2026/03/21 20:47:48 [detection_layer] {"stage_name":"detection_layer","events_processed":323,"events_dropped":0,"avg_latency_ms":16.208771404812005,"throughput_eps":0,"last_update":"2026-03-21T20:47:43.965614799Z"} +2026/03/21 20:47:48 [log_collector] {"stage_name":"log_collector","events_processed":15189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.8,"last_update":"2026-03-21T20:47:43.869468631Z"} +2026/03/21 20:47:48 [metric_collector] {"stage_name":"metric_collector","events_processed":9714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1942.8,"last_update":"2026-03-21T20:47:43.869663864Z"} +2026/03/21 20:47:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:47:43.877398373Z"} +2026/03/21 20:47:48 ───────────────────────────────────────────────── +2026/03/21 20:47:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:47:53 [log_collector] {"stage_name":"log_collector","events_processed":15196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3039.2,"last_update":"2026-03-21T20:47:48.870073596Z"} +2026/03/21 20:47:53 [metric_collector] {"stage_name":"metric_collector","events_processed":9719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1943.8,"last_update":"2026-03-21T20:47:48.870467621Z"} +2026/03/21 20:47:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:47:48.878710793Z"} +2026/03/21 20:47:53 [transform_engine] {"stage_name":"transform_engine","events_processed":324,"events_dropped":0,"avg_latency_ms":111.81113385655831,"throughput_eps":0,"last_update":"2026-03-21T20:47:49.080166626Z"} +2026/03/21 20:47:53 [detection_layer] {"stage_name":"detection_layer","events_processed":323,"events_dropped":0,"avg_latency_ms":16.208771404812005,"throughput_eps":0,"last_update":"2026-03-21T20:47:48.965893991Z"} +2026/03/21 20:47:53 ───────────────────────────────────────────────── +2026/03/21 20:47:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:47:58 [log_collector] {"stage_name":"log_collector","events_processed":15230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3046,"last_update":"2026-03-21T20:47:58.869987998Z"} +2026/03/21 20:47:58 [metric_collector] {"stage_name":"metric_collector","events_processed":9724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1944.8,"last_update":"2026-03-21T20:47:53.869969145Z"} +2026/03/21 20:47:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3892,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:47:53.87572736Z"} +2026/03/21 20:47:58 [transform_engine] {"stage_name":"transform_engine","events_processed":324,"events_dropped":0,"avg_latency_ms":111.81113385655831,"throughput_eps":0,"last_update":"2026-03-21T20:47:53.965909259Z"} +2026/03/21 20:47:58 [detection_layer] {"stage_name":"detection_layer","events_processed":324,"events_dropped":0,"avg_latency_ms":16.490118923849607,"throughput_eps":0,"last_update":"2026-03-21T20:47:53.965892487Z"} +2026/03/21 20:47:58 ───────────────────────────────────────────────── +2026/03/21 20:48:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:48:03 [transform_engine] {"stage_name":"transform_engine","events_processed":324,"events_dropped":0,"avg_latency_ms":111.81113385655831,"throughput_eps":0,"last_update":"2026-03-21T20:47:58.965757415Z"} +2026/03/21 20:48:03 [detection_layer] {"stage_name":"detection_layer","events_processed":324,"events_dropped":0,"avg_latency_ms":16.490118923849607,"throughput_eps":0,"last_update":"2026-03-21T20:47:58.965746234Z"} +2026/03/21 20:48:03 [log_collector] {"stage_name":"log_collector","events_processed":15247,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3049.4,"last_update":"2026-03-21T20:48:03.869400452Z"} +2026/03/21 20:48:03 [metric_collector] {"stage_name":"metric_collector","events_processed":9729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1945.8,"last_update":"2026-03-21T20:47:58.87031325Z"} +2026/03/21 20:48:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:47:58.876564529Z"} +2026/03/21 20:48:03 ───────────────────────────────────────────────── +2026/03/21 20:48:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:48:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3896,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:48:03.876562736Z"} +2026/03/21 20:48:08 [transform_engine] {"stage_name":"transform_engine","events_processed":324,"events_dropped":0,"avg_latency_ms":111.81113385655831,"throughput_eps":0,"last_update":"2026-03-21T20:48:03.96574352Z"} +2026/03/21 20:48:08 [detection_layer] {"stage_name":"detection_layer","events_processed":324,"events_dropped":0,"avg_latency_ms":16.490118923849607,"throughput_eps":0,"last_update":"2026-03-21T20:48:03.965734713Z"} +2026/03/21 20:48:08 [log_collector] {"stage_name":"log_collector","events_processed":15247,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3049.4,"last_update":"2026-03-21T20:48:03.869400452Z"} +2026/03/21 20:48:08 [metric_collector] {"stage_name":"metric_collector","events_processed":9734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1946.8,"last_update":"2026-03-21T20:48:03.869674868Z"} +2026/03/21 20:48:08 ───────────────────────────────────────────────── +2026/03/21 20:48:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:48:13 [metric_collector] {"stage_name":"metric_collector","events_processed":9739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1947.8,"last_update":"2026-03-21T20:48:08.870528636Z"} +2026/03/21 20:48:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3898,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:48:08.877083325Z"} +2026/03/21 20:48:13 [transform_engine] {"stage_name":"transform_engine","events_processed":324,"events_dropped":0,"avg_latency_ms":111.81113385655831,"throughput_eps":0,"last_update":"2026-03-21T20:48:08.96524597Z"} +2026/03/21 20:48:13 [detection_layer] {"stage_name":"detection_layer","events_processed":324,"events_dropped":0,"avg_latency_ms":16.490118923849607,"throughput_eps":0,"last_update":"2026-03-21T20:48:08.965279034Z"} +2026/03/21 20:48:13 [log_collector] {"stage_name":"log_collector","events_processed":15261,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3052.2,"last_update":"2026-03-21T20:48:08.870053085Z"} +2026/03/21 20:48:13 ───────────────────────────────────────────────── +2026/03/21 20:48:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:48:18 [metric_collector] {"stage_name":"metric_collector","events_processed":9744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1948.8,"last_update":"2026-03-21T20:48:13.870132203Z"} +2026/03/21 20:48:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3900,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:48:13.876661835Z"} +2026/03/21 20:48:18 [transform_engine] {"stage_name":"transform_engine","events_processed":324,"events_dropped":0,"avg_latency_ms":111.81113385655831,"throughput_eps":0,"last_update":"2026-03-21T20:48:13.965854202Z"} +2026/03/21 20:48:18 [detection_layer] {"stage_name":"detection_layer","events_processed":324,"events_dropped":0,"avg_latency_ms":16.490118923849607,"throughput_eps":0,"last_update":"2026-03-21T20:48:13.965840406Z"} +2026/03/21 20:48:18 [log_collector] {"stage_name":"log_collector","events_processed":15268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3053.6,"last_update":"2026-03-21T20:48:13.869842318Z"} +2026/03/21 20:48:18 ───────────────────────────────────────────────── +2026/03/21 20:48:19 [ANOMALY] time=2026-03-21T20:48:19Z score=0.9068 method=SEAD details=MAD!:w=0.21,s=0.95 RRCF-fast!:w=0.20,s=0.93 RRCF-mid:w=0.18,s=0.80 RRCF-slow!:w=0.14,s=0.88 COPOD!:w=0.27,s=0.95 +2026/03/21 20:48:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:48:23 [log_collector] {"stage_name":"log_collector","events_processed":15310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3062,"last_update":"2026-03-21T20:48:23.870194043Z"} +2026/03/21 20:48:23 [metric_collector] {"stage_name":"metric_collector","events_processed":9749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1949.8,"last_update":"2026-03-21T20:48:18.870706176Z"} +2026/03/21 20:48:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:48:18.876790847Z"} +2026/03/21 20:48:23 [transform_engine] {"stage_name":"transform_engine","events_processed":325,"events_dropped":0,"avg_latency_ms":114.56203528524667,"throughput_eps":0,"last_update":"2026-03-21T20:48:19.091549638Z"} +2026/03/21 20:48:23 [detection_layer] {"stage_name":"detection_layer","events_processed":324,"events_dropped":0,"avg_latency_ms":16.490118923849607,"throughput_eps":0,"last_update":"2026-03-21T20:48:18.965971782Z"} +2026/03/21 20:48:23 ───────────────────────────────────────────────── +2026/03/21 20:48:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:48:28 [log_collector] {"stage_name":"log_collector","events_processed":15310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3062,"last_update":"2026-03-21T20:48:23.870194043Z"} +2026/03/21 20:48:28 [metric_collector] {"stage_name":"metric_collector","events_processed":9754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1950.8,"last_update":"2026-03-21T20:48:23.870466525Z"} +2026/03/21 20:48:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:48:23.876692806Z"} +2026/03/21 20:48:28 [transform_engine] {"stage_name":"transform_engine","events_processed":325,"events_dropped":0,"avg_latency_ms":114.56203528524667,"throughput_eps":0,"last_update":"2026-03-21T20:48:23.965889482Z"} +2026/03/21 20:48:28 [detection_layer] {"stage_name":"detection_layer","events_processed":325,"events_dropped":0,"avg_latency_ms":15.859215939079686,"throughput_eps":0,"last_update":"2026-03-21T20:48:23.965903058Z"} +2026/03/21 20:48:28 ───────────────────────────────────────────────── +2026/03/21 20:48:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:48:33 [log_collector] {"stage_name":"log_collector","events_processed":15331,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3066.2,"last_update":"2026-03-21T20:48:28.870113367Z"} +2026/03/21 20:48:33 [metric_collector] {"stage_name":"metric_collector","events_processed":9759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1951.8,"last_update":"2026-03-21T20:48:28.870393654Z"} +2026/03/21 20:48:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3906,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:48:28.87719166Z"} +2026/03/21 20:48:33 [transform_engine] {"stage_name":"transform_engine","events_processed":325,"events_dropped":0,"avg_latency_ms":114.56203528524667,"throughput_eps":0,"last_update":"2026-03-21T20:48:28.965401908Z"} +2026/03/21 20:48:33 [detection_layer] {"stage_name":"detection_layer","events_processed":325,"events_dropped":0,"avg_latency_ms":15.859215939079686,"throughput_eps":0,"last_update":"2026-03-21T20:48:28.965379665Z"} +2026/03/21 20:48:33 ───────────────────────────────────────────────── +2026/03/21 20:48:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:48:38 [transform_engine] {"stage_name":"transform_engine","events_processed":325,"events_dropped":0,"avg_latency_ms":114.56203528524667,"throughput_eps":0,"last_update":"2026-03-21T20:48:33.965756422Z"} +2026/03/21 20:48:38 [detection_layer] {"stage_name":"detection_layer","events_processed":325,"events_dropped":0,"avg_latency_ms":15.859215939079686,"throughput_eps":0,"last_update":"2026-03-21T20:48:33.965742806Z"} +2026/03/21 20:48:38 [log_collector] {"stage_name":"log_collector","events_processed":15348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3069.6,"last_update":"2026-03-21T20:48:33.870025283Z"} +2026/03/21 20:48:38 [metric_collector] {"stage_name":"metric_collector","events_processed":9764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1952.8,"last_update":"2026-03-21T20:48:33.870301011Z"} +2026/03/21 20:48:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3908,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:48:33.876581116Z"} +2026/03/21 20:48:38 ───────────────────────────────────────────────── +Saved state: 12 clusters, 15361 messages, reason: none +2026/03/21 20:48:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:48:43 [metric_collector] {"stage_name":"metric_collector","events_processed":9769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1953.8,"last_update":"2026-03-21T20:48:38.870031766Z"} +2026/03/21 20:48:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:48:38.876727948Z"} +2026/03/21 20:48:43 [transform_engine] {"stage_name":"transform_engine","events_processed":325,"events_dropped":0,"avg_latency_ms":114.56203528524667,"throughput_eps":0,"last_update":"2026-03-21T20:48:38.965936598Z"} +2026/03/21 20:48:43 [detection_layer] {"stage_name":"detection_layer","events_processed":325,"events_dropped":0,"avg_latency_ms":15.859215939079686,"throughput_eps":0,"last_update":"2026-03-21T20:48:38.965952097Z"} +2026/03/21 20:48:43 [log_collector] {"stage_name":"log_collector","events_processed":15358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3071.6,"last_update":"2026-03-21T20:48:38.869890085Z"} +2026/03/21 20:48:43 ───────────────────────────────────────────────── +2026/03/21 20:48:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:48:48 [log_collector] {"stage_name":"log_collector","events_processed":15362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3072.4,"last_update":"2026-03-21T20:48:43.869528004Z"} +2026/03/21 20:48:48 [metric_collector] {"stage_name":"metric_collector","events_processed":9774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1954.8,"last_update":"2026-03-21T20:48:43.869749849Z"} +2026/03/21 20:48:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3912,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:48:43.87660738Z"} +2026/03/21 20:48:48 [transform_engine] {"stage_name":"transform_engine","events_processed":325,"events_dropped":0,"avg_latency_ms":114.56203528524667,"throughput_eps":0,"last_update":"2026-03-21T20:48:43.965773047Z"} +2026/03/21 20:48:48 [detection_layer] {"stage_name":"detection_layer","events_processed":325,"events_dropped":0,"avg_latency_ms":15.859215939079686,"throughput_eps":0,"last_update":"2026-03-21T20:48:43.965793437Z"} +2026/03/21 20:48:48 ───────────────────────────────────────────────── +2026/03/21 20:48:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:48:53 [log_collector] {"stage_name":"log_collector","events_processed":15375,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3075,"last_update":"2026-03-21T20:48:53.869724222Z"} +2026/03/21 20:48:53 [metric_collector] {"stage_name":"metric_collector","events_processed":9779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1955.8,"last_update":"2026-03-21T20:48:48.869751556Z"} +2026/03/21 20:48:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:48:48.876200535Z"} +2026/03/21 20:48:53 [transform_engine] {"stage_name":"transform_engine","events_processed":325,"events_dropped":0,"avg_latency_ms":114.56203528524667,"throughput_eps":0,"last_update":"2026-03-21T20:48:48.965304926Z"} +2026/03/21 20:48:53 [detection_layer] {"stage_name":"detection_layer","events_processed":325,"events_dropped":0,"avg_latency_ms":15.859215939079686,"throughput_eps":0,"last_update":"2026-03-21T20:48:48.965334602Z"} +2026/03/21 20:48:53 ───────────────────────────────────────────────── +2026/03/21 20:48:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:48:58 [metric_collector] {"stage_name":"metric_collector","events_processed":9784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1956.8,"last_update":"2026-03-21T20:48:53.870211296Z"} +2026/03/21 20:48:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:48:53.875889508Z"} +2026/03/21 20:48:58 [transform_engine] {"stage_name":"transform_engine","events_processed":326,"events_dropped":0,"avg_latency_ms":111.56734142819735,"throughput_eps":0,"last_update":"2026-03-21T20:48:53.966034773Z"} +2026/03/21 20:48:58 [detection_layer] {"stage_name":"detection_layer","events_processed":326,"events_dropped":0,"avg_latency_ms":15.03563715126375,"throughput_eps":0,"last_update":"2026-03-21T20:48:53.966098965Z"} +2026/03/21 20:48:58 [log_collector] {"stage_name":"log_collector","events_processed":15375,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3075,"last_update":"2026-03-21T20:48:53.869724222Z"} +2026/03/21 20:48:58 ───────────────────────────────────────────────── +2026/03/21 20:49:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:49:03 [metric_collector] {"stage_name":"metric_collector","events_processed":9789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1957.8,"last_update":"2026-03-21T20:48:58.869654423Z"} +2026/03/21 20:49:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3918,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:48:58.875938115Z"} +2026/03/21 20:49:03 [transform_engine] {"stage_name":"transform_engine","events_processed":326,"events_dropped":0,"avg_latency_ms":111.56734142819735,"throughput_eps":0,"last_update":"2026-03-21T20:48:58.966013707Z"} +2026/03/21 20:49:03 [detection_layer] {"stage_name":"detection_layer","events_processed":326,"events_dropped":0,"avg_latency_ms":15.03563715126375,"throughput_eps":0,"last_update":"2026-03-21T20:48:58.96599475Z"} +2026/03/21 20:49:03 [log_collector] {"stage_name":"log_collector","events_processed":15396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3079.2,"last_update":"2026-03-21T20:48:58.869399435Z"} +2026/03/21 20:49:03 ───────────────────────────────────────────────── +2026/03/21 20:49:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:49:08 [log_collector] {"stage_name":"log_collector","events_processed":15415,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3083,"last_update":"2026-03-21T20:49:03.869684448Z"} +2026/03/21 20:49:08 [metric_collector] {"stage_name":"metric_collector","events_processed":9794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1958.8,"last_update":"2026-03-21T20:49:03.869912895Z"} +2026/03/21 20:49:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3920,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:49:03.88229807Z"} +2026/03/21 20:49:08 [transform_engine] {"stage_name":"transform_engine","events_processed":326,"events_dropped":0,"avg_latency_ms":111.56734142819735,"throughput_eps":0,"last_update":"2026-03-21T20:49:03.965490543Z"} +2026/03/21 20:49:08 [detection_layer] {"stage_name":"detection_layer","events_processed":326,"events_dropped":0,"avg_latency_ms":15.03563715126375,"throughput_eps":0,"last_update":"2026-03-21T20:49:03.965477307Z"} +2026/03/21 20:49:08 ───────────────────────────────────────────────── +2026/03/21 20:49:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:49:13 [log_collector] {"stage_name":"log_collector","events_processed":15434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3086.8,"last_update":"2026-03-21T20:49:08.869427005Z"} +2026/03/21 20:49:13 [metric_collector] {"stage_name":"metric_collector","events_processed":9799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1959.8,"last_update":"2026-03-21T20:49:08.869666042Z"} +2026/03/21 20:49:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:49:08.876247093Z"} +2026/03/21 20:49:13 [transform_engine] {"stage_name":"transform_engine","events_processed":326,"events_dropped":0,"avg_latency_ms":111.56734142819735,"throughput_eps":0,"last_update":"2026-03-21T20:49:08.965483148Z"} +2026/03/21 20:49:13 [detection_layer] {"stage_name":"detection_layer","events_processed":326,"events_dropped":0,"avg_latency_ms":15.03563715126375,"throughput_eps":0,"last_update":"2026-03-21T20:49:08.965469341Z"} +2026/03/21 20:49:13 ───────────────────────────────────────────────── +2026/03/21 20:49:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:49:18 [log_collector] {"stage_name":"log_collector","events_processed":15463,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3092.6,"last_update":"2026-03-21T20:49:18.86941121Z"} +2026/03/21 20:49:18 [metric_collector] {"stage_name":"metric_collector","events_processed":9803,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1960.6,"last_update":"2026-03-21T20:49:13.870313091Z"} +2026/03/21 20:49:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:49:13.877311582Z"} +2026/03/21 20:49:18 [transform_engine] {"stage_name":"transform_engine","events_processed":326,"events_dropped":0,"avg_latency_ms":111.56734142819735,"throughput_eps":0,"last_update":"2026-03-21T20:49:13.965474773Z"} +2026/03/21 20:49:18 [detection_layer] {"stage_name":"detection_layer","events_processed":326,"events_dropped":0,"avg_latency_ms":15.03563715126375,"throughput_eps":0,"last_update":"2026-03-21T20:49:13.965464644Z"} +2026/03/21 20:49:18 ───────────────────────────────────────────────── +2026/03/21 20:49:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:49:23 [log_collector] {"stage_name":"log_collector","events_processed":15463,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3092.6,"last_update":"2026-03-21T20:49:18.86941121Z"} +2026/03/21 20:49:23 [metric_collector] {"stage_name":"metric_collector","events_processed":9809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1961.8,"last_update":"2026-03-21T20:49:18.86961966Z"} +2026/03/21 20:49:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:49:18.875401881Z"} +2026/03/21 20:49:23 [transform_engine] {"stage_name":"transform_engine","events_processed":327,"events_dropped":0,"avg_latency_ms":378.0498433425579,"throughput_eps":0,"last_update":"2026-03-21T20:49:20.409574439Z"} +2026/03/21 20:49:23 [detection_layer] {"stage_name":"detection_layer","events_processed":326,"events_dropped":0,"avg_latency_ms":15.03563715126375,"throughput_eps":0,"last_update":"2026-03-21T20:49:18.965584679Z"} +2026/03/21 20:49:23 ───────────────────────────────────────────────── +2026/03/21 20:49:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:49:28 [transform_engine] {"stage_name":"transform_engine","events_processed":327,"events_dropped":0,"avg_latency_ms":378.0498433425579,"throughput_eps":0,"last_update":"2026-03-21T20:49:23.965415854Z"} +2026/03/21 20:49:28 [detection_layer] {"stage_name":"detection_layer","events_processed":327,"events_dropped":0,"avg_latency_ms":14.329575721011,"throughput_eps":0,"last_update":"2026-03-21T20:49:23.965432997Z"} +2026/03/21 20:49:28 [log_collector] {"stage_name":"log_collector","events_processed":15465,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3093,"last_update":"2026-03-21T20:49:23.869423442Z"} +2026/03/21 20:49:28 [metric_collector] {"stage_name":"metric_collector","events_processed":9814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1962.8,"last_update":"2026-03-21T20:49:23.869822946Z"} +2026/03/21 20:49:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:49:23.876245284Z"} +2026/03/21 20:49:28 ───────────────────────────────────────────────── +2026/03/21 20:49:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:49:33 [metric_collector] {"stage_name":"metric_collector","events_processed":9819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1963.8,"last_update":"2026-03-21T20:49:28.870032317Z"} +2026/03/21 20:49:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3930,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:49:28.875972161Z"} +2026/03/21 20:49:33 [transform_engine] {"stage_name":"transform_engine","events_processed":327,"events_dropped":0,"avg_latency_ms":378.0498433425579,"throughput_eps":0,"last_update":"2026-03-21T20:49:28.965106503Z"} +2026/03/21 20:49:33 [detection_layer] {"stage_name":"detection_layer","events_processed":327,"events_dropped":0,"avg_latency_ms":14.329575721011,"throughput_eps":0,"last_update":"2026-03-21T20:49:28.966229002Z"} +2026/03/21 20:49:33 [log_collector] {"stage_name":"log_collector","events_processed":15471,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3094.2,"last_update":"2026-03-21T20:49:28.869614067Z"} +2026/03/21 20:49:33 ───────────────────────────────────────────────── +2026/03/21 20:49:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:49:38 [metric_collector] {"stage_name":"metric_collector","events_processed":9824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1964.8,"last_update":"2026-03-21T20:49:33.869809362Z"} +2026/03/21 20:49:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:49:33.878694685Z"} +2026/03/21 20:49:38 [transform_engine] {"stage_name":"transform_engine","events_processed":327,"events_dropped":0,"avg_latency_ms":378.0498433425579,"throughput_eps":0,"last_update":"2026-03-21T20:49:33.965883493Z"} +2026/03/21 20:49:38 [detection_layer] {"stage_name":"detection_layer","events_processed":327,"events_dropped":0,"avg_latency_ms":14.329575721011,"throughput_eps":0,"last_update":"2026-03-21T20:49:33.965859527Z"} +2026/03/21 20:49:38 [log_collector] {"stage_name":"log_collector","events_processed":15499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3099.8,"last_update":"2026-03-21T20:49:38.869638371Z"} +2026/03/21 20:49:38 ───────────────────────────────────────────────── +2026/03/21 20:49:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:49:43 [metric_collector] {"stage_name":"metric_collector","events_processed":9829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1965.8,"last_update":"2026-03-21T20:49:38.869935861Z"} +2026/03/21 20:49:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:49:38.876607074Z"} +2026/03/21 20:49:43 [transform_engine] {"stage_name":"transform_engine","events_processed":327,"events_dropped":0,"avg_latency_ms":378.0498433425579,"throughput_eps":0,"last_update":"2026-03-21T20:49:38.965808566Z"} +2026/03/21 20:49:43 [detection_layer] {"stage_name":"detection_layer","events_processed":327,"events_dropped":0,"avg_latency_ms":14.329575721011,"throughput_eps":0,"last_update":"2026-03-21T20:49:38.965832893Z"} +2026/03/21 20:49:43 [log_collector] {"stage_name":"log_collector","events_processed":15518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3103.6,"last_update":"2026-03-21T20:49:43.869646233Z"} +2026/03/21 20:49:43 ───────────────────────────────────────────────── +Saved state: 12 clusters, 15519 messages, reason: none +2026/03/21 20:49:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:49:48 [log_collector] {"stage_name":"log_collector","events_processed":15518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3103.6,"last_update":"2026-03-21T20:49:43.869646233Z"} +2026/03/21 20:49:48 [metric_collector] {"stage_name":"metric_collector","events_processed":9834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1966.8,"last_update":"2026-03-21T20:49:43.869910219Z"} +2026/03/21 20:49:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:49:43.876225Z"} +2026/03/21 20:49:48 [transform_engine] {"stage_name":"transform_engine","events_processed":327,"events_dropped":0,"avg_latency_ms":378.0498433425579,"throughput_eps":0,"last_update":"2026-03-21T20:49:43.965444337Z"} +2026/03/21 20:49:48 [detection_layer] {"stage_name":"detection_layer","events_processed":327,"events_dropped":0,"avg_latency_ms":14.329575721011,"throughput_eps":0,"last_update":"2026-03-21T20:49:43.965484734Z"} +2026/03/21 20:49:48 ───────────────────────────────────────────────── +2026/03/21 20:49:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:49:53 [detection_layer] {"stage_name":"detection_layer","events_processed":327,"events_dropped":0,"avg_latency_ms":14.329575721011,"throughput_eps":0,"last_update":"2026-03-21T20:49:48.965721233Z"} +2026/03/21 20:49:53 [log_collector] {"stage_name":"log_collector","events_processed":15537,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3107.4,"last_update":"2026-03-21T20:49:48.870201824Z"} +2026/03/21 20:49:53 [metric_collector] {"stage_name":"metric_collector","events_processed":9839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1967.8,"last_update":"2026-03-21T20:49:48.870301655Z"} +2026/03/21 20:49:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:49:48.87633084Z"} +2026/03/21 20:49:53 [transform_engine] {"stage_name":"transform_engine","events_processed":328,"events_dropped":0,"avg_latency_ms":323.53117407404636,"throughput_eps":0,"last_update":"2026-03-21T20:49:49.070976094Z"} +2026/03/21 20:49:53 ───────────────────────────────────────────────── +2026/03/21 20:49:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:49:58 [detection_layer] {"stage_name":"detection_layer","events_processed":328,"events_dropped":0,"avg_latency_ms":14.1266475768088,"throughput_eps":0,"last_update":"2026-03-21T20:49:53.966281121Z"} +2026/03/21 20:49:58 [log_collector] {"stage_name":"log_collector","events_processed":15554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3110.8,"last_update":"2026-03-21T20:49:53.869430712Z"} +2026/03/21 20:49:58 [metric_collector] {"stage_name":"metric_collector","events_processed":9844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1968.8,"last_update":"2026-03-21T20:49:53.869855035Z"} +2026/03/21 20:49:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3940,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:49:53.876070737Z"} +2026/03/21 20:49:58 [transform_engine] {"stage_name":"transform_engine","events_processed":328,"events_dropped":0,"avg_latency_ms":323.53117407404636,"throughput_eps":0,"last_update":"2026-03-21T20:49:53.965145016Z"} +2026/03/21 20:49:58 ───────────────────────────────────────────────── +2026/03/21 20:50:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:50:03 [log_collector] {"stage_name":"log_collector","events_processed":15568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3113.6,"last_update":"2026-03-21T20:49:58.869741406Z"} +2026/03/21 20:50:03 [metric_collector] {"stage_name":"metric_collector","events_processed":9849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1969.8,"last_update":"2026-03-21T20:49:58.869752236Z"} +2026/03/21 20:50:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:49:58.875888506Z"} +2026/03/21 20:50:03 [transform_engine] {"stage_name":"transform_engine","events_processed":328,"events_dropped":0,"avg_latency_ms":323.53117407404636,"throughput_eps":0,"last_update":"2026-03-21T20:49:58.966089904Z"} +2026/03/21 20:50:03 [detection_layer] {"stage_name":"detection_layer","events_processed":328,"events_dropped":0,"avg_latency_ms":14.1266475768088,"throughput_eps":0,"last_update":"2026-03-21T20:49:58.966062982Z"} +2026/03/21 20:50:03 ───────────────────────────────────────────────── +2026/03/21 20:50:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:50:08 [log_collector] {"stage_name":"log_collector","events_processed":15570,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3114,"last_update":"2026-03-21T20:50:03.869396457Z"} +2026/03/21 20:50:08 [metric_collector] {"stage_name":"metric_collector","events_processed":9854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1970.8,"last_update":"2026-03-21T20:50:03.869833985Z"} +2026/03/21 20:50:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:50:03.879786532Z"} +2026/03/21 20:50:08 [transform_engine] {"stage_name":"transform_engine","events_processed":328,"events_dropped":0,"avg_latency_ms":323.53117407404636,"throughput_eps":0,"last_update":"2026-03-21T20:50:03.965946642Z"} +2026/03/21 20:50:08 [detection_layer] {"stage_name":"detection_layer","events_processed":328,"events_dropped":0,"avg_latency_ms":14.1266475768088,"throughput_eps":0,"last_update":"2026-03-21T20:50:03.965973653Z"} +2026/03/21 20:50:08 ───────────────────────────────────────────────── +2026/03/21 20:50:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:50:13 [detection_layer] {"stage_name":"detection_layer","events_processed":328,"events_dropped":0,"avg_latency_ms":14.1266475768088,"throughput_eps":0,"last_update":"2026-03-21T20:50:08.965452055Z"} +2026/03/21 20:50:13 [log_collector] {"stage_name":"log_collector","events_processed":15589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3117.8,"last_update":"2026-03-21T20:50:13.869862106Z"} +2026/03/21 20:50:13 [metric_collector] {"stage_name":"metric_collector","events_processed":9859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1971.8,"last_update":"2026-03-21T20:50:08.869626958Z"} +2026/03/21 20:50:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:50:08.876245481Z"} +2026/03/21 20:50:13 [transform_engine] {"stage_name":"transform_engine","events_processed":328,"events_dropped":0,"avg_latency_ms":323.53117407404636,"throughput_eps":0,"last_update":"2026-03-21T20:50:08.965461563Z"} +2026/03/21 20:50:13 ───────────────────────────────────────────────── +2026/03/21 20:50:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:50:18 [metric_collector] {"stage_name":"metric_collector","events_processed":9864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1972.8,"last_update":"2026-03-21T20:50:13.870173142Z"} +2026/03/21 20:50:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:50:13.876394915Z"} +2026/03/21 20:50:18 [transform_engine] {"stage_name":"transform_engine","events_processed":328,"events_dropped":0,"avg_latency_ms":323.53117407404636,"throughput_eps":0,"last_update":"2026-03-21T20:50:13.965557535Z"} +2026/03/21 20:50:18 [detection_layer] {"stage_name":"detection_layer","events_processed":328,"events_dropped":0,"avg_latency_ms":14.1266475768088,"throughput_eps":0,"last_update":"2026-03-21T20:50:13.965574147Z"} +2026/03/21 20:50:18 [log_collector] {"stage_name":"log_collector","events_processed":15589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3117.8,"last_update":"2026-03-21T20:50:13.869862106Z"} +2026/03/21 20:50:18 ───────────────────────────────────────────────── +2026/03/21 20:50:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:50:23 [metric_collector] {"stage_name":"metric_collector","events_processed":9869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1973.8,"last_update":"2026-03-21T20:50:18.870124214Z"} +2026/03/21 20:50:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:50:18.878056293Z"} +2026/03/21 20:50:23 [transform_engine] {"stage_name":"transform_engine","events_processed":329,"events_dropped":0,"avg_latency_ms":279.1535408592371,"throughput_eps":0,"last_update":"2026-03-21T20:50:19.066897629Z"} +2026/03/21 20:50:23 [detection_layer] {"stage_name":"detection_layer","events_processed":328,"events_dropped":0,"avg_latency_ms":14.1266475768088,"throughput_eps":0,"last_update":"2026-03-21T20:50:18.965290761Z"} +2026/03/21 20:50:23 [log_collector] {"stage_name":"log_collector","events_processed":15591,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3118.2,"last_update":"2026-03-21T20:50:18.869898713Z"} +2026/03/21 20:50:23 ───────────────────────────────────────────────── +2026/03/21 20:50:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:50:28 [log_collector] {"stage_name":"log_collector","events_processed":15591,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3118.2,"last_update":"2026-03-21T20:50:23.869665425Z"} +2026/03/21 20:50:28 [metric_collector] {"stage_name":"metric_collector","events_processed":9874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1974.8,"last_update":"2026-03-21T20:50:23.869958928Z"} +2026/03/21 20:50:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:50:23.878469784Z"} +2026/03/21 20:50:28 [transform_engine] {"stage_name":"transform_engine","events_processed":329,"events_dropped":0,"avg_latency_ms":279.1535408592371,"throughput_eps":0,"last_update":"2026-03-21T20:50:23.965658465Z"} +2026/03/21 20:50:28 [detection_layer] {"stage_name":"detection_layer","events_processed":329,"events_dropped":0,"avg_latency_ms":13.709731861447041,"throughput_eps":0,"last_update":"2026-03-21T20:50:23.965674645Z"} +2026/03/21 20:50:28 ───────────────────────────────────────────────── +2026/03/21 20:50:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:50:33 [metric_collector] {"stage_name":"metric_collector","events_processed":9879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1975.8,"last_update":"2026-03-21T20:50:28.870251047Z"} +2026/03/21 20:50:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:50:28.87895841Z"} +2026/03/21 20:50:33 [transform_engine] {"stage_name":"transform_engine","events_processed":329,"events_dropped":0,"avg_latency_ms":279.1535408592371,"throughput_eps":0,"last_update":"2026-03-21T20:50:28.965075218Z"} +2026/03/21 20:50:33 [detection_layer] {"stage_name":"detection_layer","events_processed":329,"events_dropped":0,"avg_latency_ms":13.709731861447041,"throughput_eps":0,"last_update":"2026-03-21T20:50:28.966157712Z"} +2026/03/21 20:50:33 [log_collector] {"stage_name":"log_collector","events_processed":15593,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3118.6,"last_update":"2026-03-21T20:50:28.869929622Z"} +2026/03/21 20:50:33 ───────────────────────────────────────────────── +2026/03/21 20:50:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:50:38 [log_collector] {"stage_name":"log_collector","events_processed":15596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3119.2,"last_update":"2026-03-21T20:50:33.869687144Z"} +2026/03/21 20:50:38 [metric_collector] {"stage_name":"metric_collector","events_processed":9884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1976.8,"last_update":"2026-03-21T20:50:33.869754975Z"} +2026/03/21 20:50:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:50:33.876195546Z"} +2026/03/21 20:50:38 [transform_engine] {"stage_name":"transform_engine","events_processed":329,"events_dropped":0,"avg_latency_ms":279.1535408592371,"throughput_eps":0,"last_update":"2026-03-21T20:50:33.965384117Z"} +2026/03/21 20:50:38 [detection_layer] {"stage_name":"detection_layer","events_processed":329,"events_dropped":0,"avg_latency_ms":13.709731861447041,"throughput_eps":0,"last_update":"2026-03-21T20:50:33.965368828Z"} +2026/03/21 20:50:38 ───────────────────────────────────────────────── +2026/03/21 20:50:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:50:43 [log_collector] {"stage_name":"log_collector","events_processed":15596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3119.2,"last_update":"2026-03-21T20:50:38.869636001Z"} +2026/03/21 20:50:43 [metric_collector] {"stage_name":"metric_collector","events_processed":9889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1977.8,"last_update":"2026-03-21T20:50:38.869843107Z"} +2026/03/21 20:50:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3958,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:50:38.876755894Z"} +2026/03/21 20:50:43 [transform_engine] {"stage_name":"transform_engine","events_processed":329,"events_dropped":0,"avg_latency_ms":279.1535408592371,"throughput_eps":0,"last_update":"2026-03-21T20:50:38.965914267Z"} +2026/03/21 20:50:43 [detection_layer] {"stage_name":"detection_layer","events_processed":329,"events_dropped":0,"avg_latency_ms":13.709731861447041,"throughput_eps":0,"last_update":"2026-03-21T20:50:38.965940938Z"} +2026/03/21 20:50:43 ───────────────────────────────────────────────── +2026/03/21 20:50:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:50:48 [metric_collector] {"stage_name":"metric_collector","events_processed":9894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1978.8,"last_update":"2026-03-21T20:50:43.869605426Z"} +2026/03/21 20:50:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:50:43.875772154Z"} +2026/03/21 20:50:48 [transform_engine] {"stage_name":"transform_engine","events_processed":329,"events_dropped":0,"avg_latency_ms":279.1535408592371,"throughput_eps":0,"last_update":"2026-03-21T20:50:43.965942395Z"} +2026/03/21 20:50:48 [detection_layer] {"stage_name":"detection_layer","events_processed":329,"events_dropped":0,"avg_latency_ms":13.709731861447041,"throughput_eps":0,"last_update":"2026-03-21T20:50:43.965982632Z"} +2026/03/21 20:50:48 [log_collector] {"stage_name":"log_collector","events_processed":15596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3119.2,"last_update":"2026-03-21T20:50:43.86943017Z"} +2026/03/21 20:50:48 ───────────────────────────────────────────────── +2026/03/21 20:50:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:50:53 [log_collector] {"stage_name":"log_collector","events_processed":15596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3119.2,"last_update":"2026-03-21T20:50:53.870198379Z"} +2026/03/21 20:50:53 [metric_collector] {"stage_name":"metric_collector","events_processed":9899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1979.8,"last_update":"2026-03-21T20:50:48.870488648Z"} +2026/03/21 20:50:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3962,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:50:48.878389548Z"} +2026/03/21 20:50:53 [transform_engine] {"stage_name":"transform_engine","events_processed":330,"events_dropped":0,"avg_latency_ms":242.7805770873897,"throughput_eps":0,"last_update":"2026-03-21T20:50:49.062843486Z"} +2026/03/21 20:50:53 [detection_layer] {"stage_name":"detection_layer","events_processed":329,"events_dropped":0,"avg_latency_ms":13.709731861447041,"throughput_eps":0,"last_update":"2026-03-21T20:50:48.965591254Z"} +2026/03/21 20:50:53 ───────────────────────────────────────────────── +2026/03/21 20:50:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:50:58 [log_collector] {"stage_name":"log_collector","events_processed":15596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3119.2,"last_update":"2026-03-21T20:50:58.869751802Z"} +2026/03/21 20:50:58 [metric_collector] {"stage_name":"metric_collector","events_processed":9904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1980.8,"last_update":"2026-03-21T20:50:53.870425564Z"} +2026/03/21 20:50:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:50:53.877632955Z"} +2026/03/21 20:50:58 [transform_engine] {"stage_name":"transform_engine","events_processed":330,"events_dropped":0,"avg_latency_ms":242.7805770873897,"throughput_eps":0,"last_update":"2026-03-21T20:50:53.965852221Z"} +2026/03/21 20:50:58 [detection_layer] {"stage_name":"detection_layer","events_processed":330,"events_dropped":0,"avg_latency_ms":13.420506089157634,"throughput_eps":0,"last_update":"2026-03-21T20:50:53.965864724Z"} +2026/03/21 20:50:58 ───────────────────────────────────────────────── +2026/03/21 20:51:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:51:03 [detection_layer] {"stage_name":"detection_layer","events_processed":330,"events_dropped":0,"avg_latency_ms":13.420506089157634,"throughput_eps":0,"last_update":"2026-03-21T20:50:58.966194033Z"} +2026/03/21 20:51:03 [log_collector] {"stage_name":"log_collector","events_processed":15596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3119.2,"last_update":"2026-03-21T20:50:58.869751802Z"} +2026/03/21 20:51:03 [metric_collector] {"stage_name":"metric_collector","events_processed":9909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1981.8,"last_update":"2026-03-21T20:50:58.869776769Z"} +2026/03/21 20:51:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:50:58.87600778Z"} +2026/03/21 20:51:03 [transform_engine] {"stage_name":"transform_engine","events_processed":330,"events_dropped":0,"avg_latency_ms":242.7805770873897,"throughput_eps":0,"last_update":"2026-03-21T20:50:58.965123122Z"} +2026/03/21 20:51:03 ───────────────────────────────────────────────── +2026/03/21 20:51:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:51:08 [transform_engine] {"stage_name":"transform_engine","events_processed":330,"events_dropped":0,"avg_latency_ms":242.7805770873897,"throughput_eps":0,"last_update":"2026-03-21T20:51:03.96608394Z"} +2026/03/21 20:51:08 [detection_layer] {"stage_name":"detection_layer","events_processed":330,"events_dropped":0,"avg_latency_ms":13.420506089157634,"throughput_eps":0,"last_update":"2026-03-21T20:51:03.966075014Z"} +2026/03/21 20:51:08 [log_collector] {"stage_name":"log_collector","events_processed":15596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3119.2,"last_update":"2026-03-21T20:51:03.869416046Z"} +2026/03/21 20:51:08 [metric_collector] {"stage_name":"metric_collector","events_processed":9914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1982.8,"last_update":"2026-03-21T20:51:03.86984104Z"} +2026/03/21 20:51:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:51:03.875910322Z"} +2026/03/21 20:51:08 ───────────────────────────────────────────────── +2026/03/21 20:51:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:51:13 [log_collector] {"stage_name":"log_collector","events_processed":15596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3119.2,"last_update":"2026-03-21T20:51:08.869680789Z"} +2026/03/21 20:51:13 [metric_collector] {"stage_name":"metric_collector","events_processed":9919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1983.8,"last_update":"2026-03-21T20:51:08.870076146Z"} +2026/03/21 20:51:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3970,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:51:08.882156798Z"} +2026/03/21 20:51:13 [transform_engine] {"stage_name":"transform_engine","events_processed":330,"events_dropped":0,"avg_latency_ms":242.7805770873897,"throughput_eps":0,"last_update":"2026-03-21T20:51:08.965406218Z"} +2026/03/21 20:51:13 [detection_layer] {"stage_name":"detection_layer","events_processed":330,"events_dropped":0,"avg_latency_ms":13.420506089157634,"throughput_eps":0,"last_update":"2026-03-21T20:51:08.965388946Z"} +2026/03/21 20:51:13 ───────────────────────────────────────────────── +Saved state: 12 clusters, 15597 messages, reason: none +2026/03/21 20:51:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:51:18 [detection_layer] {"stage_name":"detection_layer","events_processed":330,"events_dropped":0,"avg_latency_ms":13.420506089157634,"throughput_eps":0,"last_update":"2026-03-21T20:51:13.965502857Z"} +2026/03/21 20:51:18 [log_collector] {"stage_name":"log_collector","events_processed":15596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3119.2,"last_update":"2026-03-21T20:51:13.869473795Z"} +2026/03/21 20:51:18 [metric_collector] {"stage_name":"metric_collector","events_processed":9924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1984.8,"last_update":"2026-03-21T20:51:13.869681042Z"} +2026/03/21 20:51:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:51:13.881101351Z"} +2026/03/21 20:51:18 [transform_engine] {"stage_name":"transform_engine","events_processed":330,"events_dropped":0,"avg_latency_ms":242.7805770873897,"throughput_eps":0,"last_update":"2026-03-21T20:51:13.965512185Z"} +2026/03/21 20:51:18 ───────────────────────────────────────────────── +2026/03/21 20:51:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:51:23 [detection_layer] {"stage_name":"detection_layer","events_processed":330,"events_dropped":0,"avg_latency_ms":13.420506089157634,"throughput_eps":0,"last_update":"2026-03-21T20:51:18.96538378Z"} +2026/03/21 20:51:23 [log_collector] {"stage_name":"log_collector","events_processed":15609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3121.8,"last_update":"2026-03-21T20:51:23.869426715Z"} +2026/03/21 20:51:23 [metric_collector] {"stage_name":"metric_collector","events_processed":9929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1985.8,"last_update":"2026-03-21T20:51:18.870312613Z"} +2026/03/21 20:51:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:51:18.87704792Z"} +2026/03/21 20:51:23 [transform_engine] {"stage_name":"transform_engine","events_processed":330,"events_dropped":0,"avg_latency_ms":242.7805770873897,"throughput_eps":0,"last_update":"2026-03-21T20:51:13.965512185Z"} +2026/03/21 20:51:23 ───────────────────────────────────────────────── +2026/03/21 20:51:25 [ANOMALY] time=2026-03-21T20:51:25Z score=0.8610 method=SEAD details=MAD!:w=0.21,s=0.89 RRCF-fast!:w=0.20,s=0.91 RRCF-mid:w=0.19,s=0.66 RRCF-slow:w=0.14,s=0.74 COPOD!:w=0.27,s=1.00 +2026/03/21 20:51:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:51:28 [log_collector] {"stage_name":"log_collector","events_processed":15609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3121.8,"last_update":"2026-03-21T20:51:23.869426715Z"} +2026/03/21 20:51:28 [metric_collector] {"stage_name":"metric_collector","events_processed":9934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1986.8,"last_update":"2026-03-21T20:51:23.869861928Z"} +2026/03/21 20:51:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:51:23.876033957Z"} +2026/03/21 20:51:28 [transform_engine] {"stage_name":"transform_engine","events_processed":331,"events_dropped":0,"avg_latency_ms":1519.7396078699119,"throughput_eps":0,"last_update":"2026-03-21T20:51:25.592706107Z"} +2026/03/21 20:51:28 [detection_layer] {"stage_name":"detection_layer","events_processed":330,"events_dropped":0,"avg_latency_ms":13.420506089157634,"throughput_eps":0,"last_update":"2026-03-21T20:51:23.966267592Z"} +2026/03/21 20:51:28 ───────────────────────────────────────────────── +2026/03/21 20:51:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:51:33 [metric_collector] {"stage_name":"metric_collector","events_processed":9939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1987.8,"last_update":"2026-03-21T20:51:28.870271398Z"} +2026/03/21 20:51:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:51:28.878660983Z"} +2026/03/21 20:51:33 [transform_engine] {"stage_name":"transform_engine","events_processed":331,"events_dropped":0,"avg_latency_ms":1519.7396078699119,"throughput_eps":0,"last_update":"2026-03-21T20:51:28.966065881Z"} +2026/03/21 20:51:33 [detection_layer] {"stage_name":"detection_layer","events_processed":331,"events_dropped":0,"avg_latency_ms":12.99097227132611,"throughput_eps":0,"last_update":"2026-03-21T20:51:28.965941754Z"} +2026/03/21 20:51:33 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-21T20:51:28.869841054Z"} +2026/03/21 20:51:33 ───────────────────────────────────────────────── +2026/03/21 20:51:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:51:38 [log_collector] {"stage_name":"log_collector","events_processed":15634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3126.8,"last_update":"2026-03-21T20:51:33.870366613Z"} +2026/03/21 20:51:38 [metric_collector] {"stage_name":"metric_collector","events_processed":9944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1988.8,"last_update":"2026-03-21T20:51:33.870646589Z"} +2026/03/21 20:51:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:51:33.879538647Z"} +2026/03/21 20:51:38 [transform_engine] {"stage_name":"transform_engine","events_processed":331,"events_dropped":0,"avg_latency_ms":1519.7396078699119,"throughput_eps":0,"last_update":"2026-03-21T20:51:33.965683974Z"} +2026/03/21 20:51:38 [detection_layer] {"stage_name":"detection_layer","events_processed":331,"events_dropped":0,"avg_latency_ms":12.99097227132611,"throughput_eps":0,"last_update":"2026-03-21T20:51:33.965664186Z"} +2026/03/21 20:51:38 ───────────────────────────────────────────────── +2026/03/21 20:51:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:51:43 [log_collector] {"stage_name":"log_collector","events_processed":15647,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3129.4,"last_update":"2026-03-21T20:51:38.869616779Z"} +2026/03/21 20:51:43 [metric_collector] {"stage_name":"metric_collector","events_processed":9949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1989.8,"last_update":"2026-03-21T20:51:38.869817903Z"} +2026/03/21 20:51:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:51:38.878566617Z"} +2026/03/21 20:51:43 [transform_engine] {"stage_name":"transform_engine","events_processed":331,"events_dropped":0,"avg_latency_ms":1519.7396078699119,"throughput_eps":0,"last_update":"2026-03-21T20:51:38.965772535Z"} +2026/03/21 20:51:43 [detection_layer] {"stage_name":"detection_layer","events_processed":331,"events_dropped":0,"avg_latency_ms":12.99097227132611,"throughput_eps":0,"last_update":"2026-03-21T20:51:38.965880923Z"} +2026/03/21 20:51:43 ───────────────────────────────────────────────── +2026/03/21 20:51:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:51:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:51:43.879208002Z"} +2026/03/21 20:51:48 [transform_engine] {"stage_name":"transform_engine","events_processed":331,"events_dropped":0,"avg_latency_ms":1519.7396078699119,"throughput_eps":0,"last_update":"2026-03-21T20:51:43.965555276Z"} +2026/03/21 20:51:48 [detection_layer] {"stage_name":"detection_layer","events_processed":331,"events_dropped":0,"avg_latency_ms":12.99097227132611,"throughput_eps":0,"last_update":"2026-03-21T20:51:43.965582208Z"} +2026/03/21 20:51:48 [log_collector] {"stage_name":"log_collector","events_processed":15648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3129.6,"last_update":"2026-03-21T20:51:48.869416687Z"} +2026/03/21 20:51:48 [metric_collector] {"stage_name":"metric_collector","events_processed":9954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1990.8,"last_update":"2026-03-21T20:51:43.870551005Z"} +2026/03/21 20:51:48 ───────────────────────────────────────────────── +2026/03/21 20:51:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:51:53 [detection_layer] {"stage_name":"detection_layer","events_processed":331,"events_dropped":0,"avg_latency_ms":12.99097227132611,"throughput_eps":0,"last_update":"2026-03-21T20:51:48.965922434Z"} +2026/03/21 20:51:53 [log_collector] {"stage_name":"log_collector","events_processed":15648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3129.6,"last_update":"2026-03-21T20:51:53.869638893Z"} +2026/03/21 20:51:53 [metric_collector] {"stage_name":"metric_collector","events_processed":9959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1991.8,"last_update":"2026-03-21T20:51:48.870015143Z"} +2026/03/21 20:51:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:51:48.878737355Z"} +2026/03/21 20:51:53 [transform_engine] {"stage_name":"transform_engine","events_processed":332,"events_dropped":0,"avg_latency_ms":1239.2938720959296,"throughput_eps":0,"last_update":"2026-03-21T20:51:49.083454794Z"} +2026/03/21 20:51:53 ───────────────────────────────────────────────── +2026/03/21 20:51:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:51:58 [transform_engine] {"stage_name":"transform_engine","events_processed":332,"events_dropped":0,"avg_latency_ms":1239.2938720959296,"throughput_eps":0,"last_update":"2026-03-21T20:51:53.965333226Z"} +2026/03/21 20:51:58 [detection_layer] {"stage_name":"detection_layer","events_processed":332,"events_dropped":0,"avg_latency_ms":14.76025081706089,"throughput_eps":0,"last_update":"2026-03-21T20:51:53.96536663Z"} +2026/03/21 20:51:58 [log_collector] {"stage_name":"log_collector","events_processed":15648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3129.6,"last_update":"2026-03-21T20:51:53.869638893Z"} +2026/03/21 20:51:58 [metric_collector] {"stage_name":"metric_collector","events_processed":9964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1992.8,"last_update":"2026-03-21T20:51:53.870258028Z"} +2026/03/21 20:51:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:51:53.879151007Z"} +2026/03/21 20:51:58 ───────────────────────────────────────────────── +2026/03/21 20:52:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:52:03 [detection_layer] {"stage_name":"detection_layer","events_processed":332,"events_dropped":0,"avg_latency_ms":14.76025081706089,"throughput_eps":0,"last_update":"2026-03-21T20:51:58.965556652Z"} +2026/03/21 20:52:03 [log_collector] {"stage_name":"log_collector","events_processed":15648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3129.6,"last_update":"2026-03-21T20:52:03.869406158Z"} +2026/03/21 20:52:03 [metric_collector] {"stage_name":"metric_collector","events_processed":9969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1993.8,"last_update":"2026-03-21T20:51:58.87052662Z"} +2026/03/21 20:52:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3990,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:51:58.879381176Z"} +2026/03/21 20:52:03 [transform_engine] {"stage_name":"transform_engine","events_processed":332,"events_dropped":0,"avg_latency_ms":1239.2938720959296,"throughput_eps":0,"last_update":"2026-03-21T20:51:58.965527506Z"} +2026/03/21 20:52:03 ───────────────────────────────────────────────── +2026/03/21 20:52:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:52:08 [metric_collector] {"stage_name":"metric_collector","events_processed":9974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1994.8,"last_update":"2026-03-21T20:52:03.869808919Z"} +2026/03/21 20:52:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3992,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:52:03.878131116Z"} +2026/03/21 20:52:08 [transform_engine] {"stage_name":"transform_engine","events_processed":332,"events_dropped":0,"avg_latency_ms":1239.2938720959296,"throughput_eps":0,"last_update":"2026-03-21T20:52:03.965458086Z"} +2026/03/21 20:52:08 [detection_layer] {"stage_name":"detection_layer","events_processed":332,"events_dropped":0,"avg_latency_ms":14.76025081706089,"throughput_eps":0,"last_update":"2026-03-21T20:52:03.965494105Z"} +2026/03/21 20:52:08 [log_collector] {"stage_name":"log_collector","events_processed":15648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3129.6,"last_update":"2026-03-21T20:52:08.869409262Z"} +2026/03/21 20:52:08 ───────────────────────────────────────────────── +2026/03/21 20:52:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:52:13 [log_collector] {"stage_name":"log_collector","events_processed":15648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3129.6,"last_update":"2026-03-21T20:52:13.869444024Z"} +2026/03/21 20:52:13 [metric_collector] {"stage_name":"metric_collector","events_processed":9979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1995.8,"last_update":"2026-03-21T20:52:08.870392624Z"} +2026/03/21 20:52:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:52:08.879393661Z"} +2026/03/21 20:52:13 [transform_engine] {"stage_name":"transform_engine","events_processed":332,"events_dropped":0,"avg_latency_ms":1239.2938720959296,"throughput_eps":0,"last_update":"2026-03-21T20:52:08.9652406Z"} +2026/03/21 20:52:13 [detection_layer] {"stage_name":"detection_layer","events_processed":332,"events_dropped":0,"avg_latency_ms":14.76025081706089,"throughput_eps":0,"last_update":"2026-03-21T20:52:08.965285254Z"} +2026/03/21 20:52:13 ───────────────────────────────────────────────── +2026/03/21 20:52:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:52:18 [log_collector] {"stage_name":"log_collector","events_processed":15648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3129.6,"last_update":"2026-03-21T20:52:13.869444024Z"} +2026/03/21 20:52:18 [metric_collector] {"stage_name":"metric_collector","events_processed":9984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1996.8,"last_update":"2026-03-21T20:52:13.869775709Z"} +2026/03/21 20:52:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3996,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:52:13.878843162Z"} +2026/03/21 20:52:18 [transform_engine] {"stage_name":"transform_engine","events_processed":332,"events_dropped":0,"avg_latency_ms":1239.2938720959296,"throughput_eps":0,"last_update":"2026-03-21T20:52:13.966145547Z"} +2026/03/21 20:52:18 [detection_layer] {"stage_name":"detection_layer","events_processed":332,"events_dropped":0,"avg_latency_ms":14.76025081706089,"throughput_eps":0,"last_update":"2026-03-21T20:52:13.96604227Z"} +2026/03/21 20:52:18 ───────────────────────────────────────────────── +2026/03/21 20:52:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:52:23 [log_collector] {"stage_name":"log_collector","events_processed":15648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3129.6,"last_update":"2026-03-21T20:52:23.86941669Z"} +2026/03/21 20:52:23 [metric_collector] {"stage_name":"metric_collector","events_processed":9989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1997.8,"last_update":"2026-03-21T20:52:18.870332427Z"} +2026/03/21 20:52:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:52:18.87922291Z"} +2026/03/21 20:52:23 [transform_engine] {"stage_name":"transform_engine","events_processed":333,"events_dropped":0,"avg_latency_ms":1007.6166558767437,"throughput_eps":0,"last_update":"2026-03-21T20:52:19.046311448Z"} +2026/03/21 20:52:23 [detection_layer] {"stage_name":"detection_layer","events_processed":332,"events_dropped":0,"avg_latency_ms":14.76025081706089,"throughput_eps":0,"last_update":"2026-03-21T20:52:18.966489407Z"} +2026/03/21 20:52:23 ───────────────────────────────────────────────── +2026/03/21 20:52:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:52:28 [log_collector] {"stage_name":"log_collector","events_processed":15648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3129.6,"last_update":"2026-03-21T20:52:23.86941669Z"} +2026/03/21 20:52:28 [metric_collector] {"stage_name":"metric_collector","events_processed":9994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1998.8,"last_update":"2026-03-21T20:52:23.869908753Z"} +2026/03/21 20:52:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:52:23.878476809Z"} +2026/03/21 20:52:28 [transform_engine] {"stage_name":"transform_engine","events_processed":333,"events_dropped":0,"avg_latency_ms":1007.6166558767437,"throughput_eps":0,"last_update":"2026-03-21T20:52:23.965672059Z"} +2026/03/21 20:52:28 [detection_layer] {"stage_name":"detection_layer","events_processed":333,"events_dropped":0,"avg_latency_ms":15.608467853648712,"throughput_eps":0,"last_update":"2026-03-21T20:52:23.965664104Z"} +2026/03/21 20:52:28 ───────────────────────────────────────────────── +2026/03/21 20:52:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:52:33 [log_collector] {"stage_name":"log_collector","events_processed":15648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3129.6,"last_update":"2026-03-21T20:52:33.869422891Z"} +2026/03/21 20:52:33 [metric_collector] {"stage_name":"metric_collector","events_processed":9999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1999.8,"last_update":"2026-03-21T20:52:28.869668303Z"} +2026/03/21 20:52:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:52:28.87776591Z"} +2026/03/21 20:52:33 [transform_engine] {"stage_name":"transform_engine","events_processed":333,"events_dropped":0,"avg_latency_ms":1007.6166558767437,"throughput_eps":0,"last_update":"2026-03-21T20:52:28.966029285Z"} +2026/03/21 20:52:33 [detection_layer] {"stage_name":"detection_layer","events_processed":333,"events_dropped":0,"avg_latency_ms":15.608467853648712,"throughput_eps":0,"last_update":"2026-03-21T20:52:28.966022903Z"} +2026/03/21 20:52:33 ───────────────────────────────────────────────── +2026/03/21 20:52:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:52:38 [metric_collector] {"stage_name":"metric_collector","events_processed":10004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2000.8,"last_update":"2026-03-21T20:52:33.869838777Z"} +2026/03/21 20:52:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:52:33.878311942Z"} +2026/03/21 20:52:38 [transform_engine] {"stage_name":"transform_engine","events_processed":333,"events_dropped":0,"avg_latency_ms":1007.6166558767437,"throughput_eps":0,"last_update":"2026-03-21T20:52:33.965478769Z"} +2026/03/21 20:52:38 [detection_layer] {"stage_name":"detection_layer","events_processed":333,"events_dropped":0,"avg_latency_ms":15.608467853648712,"throughput_eps":0,"last_update":"2026-03-21T20:52:33.965463189Z"} +2026/03/21 20:52:38 [log_collector] {"stage_name":"log_collector","events_processed":15648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3129.6,"last_update":"2026-03-21T20:52:33.869422891Z"} +2026/03/21 20:52:38 ───────────────────────────────────────────────── +2026/03/21 20:52:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:52:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4006,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:52:38.879001175Z"} +2026/03/21 20:52:43 [transform_engine] {"stage_name":"transform_engine","events_processed":333,"events_dropped":0,"avg_latency_ms":1007.6166558767437,"throughput_eps":0,"last_update":"2026-03-21T20:52:38.965286664Z"} +2026/03/21 20:52:43 [detection_layer] {"stage_name":"detection_layer","events_processed":333,"events_dropped":0,"avg_latency_ms":15.608467853648712,"throughput_eps":0,"last_update":"2026-03-21T20:52:38.965271906Z"} +2026/03/21 20:52:43 [log_collector] {"stage_name":"log_collector","events_processed":15648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3129.6,"last_update":"2026-03-21T20:52:38.870255958Z"} +2026/03/21 20:52:43 [metric_collector] {"stage_name":"metric_collector","events_processed":10009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2001.8,"last_update":"2026-03-21T20:52:38.870596922Z"} +2026/03/21 20:52:43 ───────────────────────────────────────────────── +Saved state: 12 clusters, 15649 messages, reason: none +2026/03/21 20:52:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:52:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4008,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:52:43.879231883Z"} +2026/03/21 20:52:48 [transform_engine] {"stage_name":"transform_engine","events_processed":333,"events_dropped":0,"avg_latency_ms":1007.6166558767437,"throughput_eps":0,"last_update":"2026-03-21T20:52:43.965439925Z"} +2026/03/21 20:52:48 [detection_layer] {"stage_name":"detection_layer","events_processed":333,"events_dropped":0,"avg_latency_ms":15.608467853648712,"throughput_eps":0,"last_update":"2026-03-21T20:52:43.965429545Z"} +2026/03/21 20:52:48 [log_collector] {"stage_name":"log_collector","events_processed":15648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3129.6,"last_update":"2026-03-21T20:52:43.869715291Z"} +2026/03/21 20:52:48 [metric_collector] {"stage_name":"metric_collector","events_processed":10014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2002.8,"last_update":"2026-03-21T20:52:43.869816274Z"} +2026/03/21 20:52:48 ───────────────────────────────────────────────── +2026/03/21 20:52:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:52:53 [log_collector] {"stage_name":"log_collector","events_processed":15653,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3130.6,"last_update":"2026-03-21T20:52:48.869598409Z"} +2026/03/21 20:52:53 [metric_collector] {"stage_name":"metric_collector","events_processed":10019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2003.8,"last_update":"2026-03-21T20:52:48.869596736Z"} +2026/03/21 20:52:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:52:48.876421695Z"} +2026/03/21 20:52:53 [transform_engine] {"stage_name":"transform_engine","events_processed":333,"events_dropped":0,"avg_latency_ms":1007.6166558767437,"throughput_eps":0,"last_update":"2026-03-21T20:52:43.965439925Z"} +2026/03/21 20:52:53 [detection_layer] {"stage_name":"detection_layer","events_processed":333,"events_dropped":0,"avg_latency_ms":15.608467853648712,"throughput_eps":0,"last_update":"2026-03-21T20:52:48.965595936Z"} +2026/03/21 20:52:53 ───────────────────────────────────────────────── +2026/03/21 20:52:55 [ANOMALY] time=2026-03-21T20:52:55Z score=0.8910 method=SEAD details=MAD!:w=0.21,s=0.95 RRCF-fast!:w=0.20,s=0.99 RRCF-mid!:w=0.19,s=0.93 RRCF-slow!:w=0.14,s=0.95 COPOD!:w=0.26,s=0.71 +2026/03/21 20:52:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:52:58 [detection_layer] {"stage_name":"detection_layer","events_processed":333,"events_dropped":0,"avg_latency_ms":15.608467853648712,"throughput_eps":0,"last_update":"2026-03-21T20:52:53.965733086Z"} +2026/03/21 20:52:58 [log_collector] {"stage_name":"log_collector","events_processed":15653,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3130.6,"last_update":"2026-03-21T20:52:53.869956621Z"} +2026/03/21 20:52:58 [metric_collector] {"stage_name":"metric_collector","events_processed":10029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2005.8,"last_update":"2026-03-21T20:52:58.869745789Z"} +2026/03/21 20:52:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4012,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:52:53.876561389Z"} +2026/03/21 20:52:58 [transform_engine] {"stage_name":"transform_engine","events_processed":334,"events_dropped":0,"avg_latency_ms":2055.103484501395,"throughput_eps":0,"last_update":"2026-03-21T20:52:55.210663898Z"} +2026/03/21 20:52:58 ───────────────────────────────────────────────── +2026/03/21 20:53:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:53:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:52:58.876549778Z"} +2026/03/21 20:53:03 [transform_engine] {"stage_name":"transform_engine","events_processed":334,"events_dropped":0,"avg_latency_ms":2055.103484501395,"throughput_eps":0,"last_update":"2026-03-21T20:52:58.965755881Z"} +2026/03/21 20:53:03 [detection_layer] {"stage_name":"detection_layer","events_processed":334,"events_dropped":0,"avg_latency_ms":14.510094682918972,"throughput_eps":0,"last_update":"2026-03-21T20:52:58.965732165Z"} +2026/03/21 20:53:03 [log_collector] {"stage_name":"log_collector","events_processed":15653,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3130.6,"last_update":"2026-03-21T20:52:58.869811905Z"} +2026/03/21 20:53:03 [metric_collector] {"stage_name":"metric_collector","events_processed":10029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2005.8,"last_update":"2026-03-21T20:52:58.869745789Z"} +2026/03/21 20:53:03 ───────────────────────────────────────────────── +2026/03/21 20:53:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:53:08 [log_collector] {"stage_name":"log_collector","events_processed":15653,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3130.6,"last_update":"2026-03-21T20:53:03.869867296Z"} +2026/03/21 20:53:08 [metric_collector] {"stage_name":"metric_collector","events_processed":10034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2006.8,"last_update":"2026-03-21T20:53:03.869811319Z"} +2026/03/21 20:53:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:53:03.875405041Z"} +2026/03/21 20:53:08 [transform_engine] {"stage_name":"transform_engine","events_processed":334,"events_dropped":0,"avg_latency_ms":2055.103484501395,"throughput_eps":0,"last_update":"2026-03-21T20:53:03.965503974Z"} +2026/03/21 20:53:08 [detection_layer] {"stage_name":"detection_layer","events_processed":334,"events_dropped":0,"avg_latency_ms":14.510094682918972,"throughput_eps":0,"last_update":"2026-03-21T20:53:03.965516818Z"} +2026/03/21 20:53:08 ───────────────────────────────────────────────── +2026/03/21 20:53:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:53:13 [detection_layer] {"stage_name":"detection_layer","events_processed":334,"events_dropped":0,"avg_latency_ms":14.510094682918972,"throughput_eps":0,"last_update":"2026-03-21T20:53:08.966136905Z"} +2026/03/21 20:53:13 [log_collector] {"stage_name":"log_collector","events_processed":15653,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3130.6,"last_update":"2026-03-21T20:53:13.870406343Z"} +2026/03/21 20:53:13 [metric_collector] {"stage_name":"metric_collector","events_processed":10039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2007.8,"last_update":"2026-03-21T20:53:08.86990597Z"} +2026/03/21 20:53:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4018,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:53:08.879568804Z"} +2026/03/21 20:53:13 [transform_engine] {"stage_name":"transform_engine","events_processed":334,"events_dropped":0,"avg_latency_ms":2055.103484501395,"throughput_eps":0,"last_update":"2026-03-21T20:53:08.966104523Z"} +2026/03/21 20:53:13 ───────────────────────────────────────────────── +2026/03/21 20:53:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:53:18 [log_collector] {"stage_name":"log_collector","events_processed":15653,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3130.6,"last_update":"2026-03-21T20:53:13.870406343Z"} +2026/03/21 20:53:18 [metric_collector] {"stage_name":"metric_collector","events_processed":10044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2008.8,"last_update":"2026-03-21T20:53:13.870758698Z"} +2026/03/21 20:53:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4020,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:53:13.880208503Z"} +2026/03/21 20:53:18 [transform_engine] {"stage_name":"transform_engine","events_processed":334,"events_dropped":0,"avg_latency_ms":2055.103484501395,"throughput_eps":0,"last_update":"2026-03-21T20:53:13.965512244Z"} +2026/03/21 20:53:18 [detection_layer] {"stage_name":"detection_layer","events_processed":334,"events_dropped":0,"avg_latency_ms":14.510094682918972,"throughput_eps":0,"last_update":"2026-03-21T20:53:13.965484361Z"} +2026/03/21 20:53:18 ───────────────────────────────────────────────── +2026/03/21 20:53:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:53:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4022,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:53:18.876062572Z"} +2026/03/21 20:53:23 [transform_engine] {"stage_name":"transform_engine","events_processed":335,"events_dropped":0,"avg_latency_ms":1962.9011978011163,"throughput_eps":0,"last_update":"2026-03-21T20:53:20.55925327Z"} +2026/03/21 20:53:23 [detection_layer] {"stage_name":"detection_layer","events_processed":334,"events_dropped":0,"avg_latency_ms":14.510094682918972,"throughput_eps":0,"last_update":"2026-03-21T20:53:18.966271075Z"} +2026/03/21 20:53:23 [log_collector] {"stage_name":"log_collector","events_processed":15653,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3130.6,"last_update":"2026-03-21T20:53:18.869511938Z"} +2026/03/21 20:53:23 [metric_collector] {"stage_name":"metric_collector","events_processed":10049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2009.8,"last_update":"2026-03-21T20:53:18.86982123Z"} +2026/03/21 20:53:23 ───────────────────────────────────────────────── +2026/03/21 20:53:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:53:28 [log_collector] {"stage_name":"log_collector","events_processed":15653,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3130.6,"last_update":"2026-03-21T20:53:23.869727153Z"} +2026/03/21 20:53:28 [metric_collector] {"stage_name":"metric_collector","events_processed":10054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2010.8,"last_update":"2026-03-21T20:53:23.869859636Z"} +2026/03/21 20:53:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:53:23.88529812Z"} +2026/03/21 20:53:28 [transform_engine] {"stage_name":"transform_engine","events_processed":335,"events_dropped":0,"avg_latency_ms":1962.9011978011163,"throughput_eps":0,"last_update":"2026-03-21T20:53:23.965519638Z"} +2026/03/21 20:53:28 [detection_layer] {"stage_name":"detection_layer","events_processed":335,"events_dropped":0,"avg_latency_ms":14.70265154633518,"throughput_eps":0,"last_update":"2026-03-21T20:53:23.965499109Z"} +2026/03/21 20:53:28 ───────────────────────────────────────────────── +2026/03/21 20:53:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:53:33 [metric_collector] {"stage_name":"metric_collector","events_processed":10059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2011.8,"last_update":"2026-03-21T20:53:28.870759043Z"} +2026/03/21 20:53:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:53:28.877883326Z"} +2026/03/21 20:53:33 [transform_engine] {"stage_name":"transform_engine","events_processed":335,"events_dropped":0,"avg_latency_ms":1962.9011978011163,"throughput_eps":0,"last_update":"2026-03-21T20:53:28.9661024Z"} +2026/03/21 20:53:33 [detection_layer] {"stage_name":"detection_layer","events_processed":335,"events_dropped":0,"avg_latency_ms":14.70265154633518,"throughput_eps":0,"last_update":"2026-03-21T20:53:28.966120505Z"} +2026/03/21 20:53:33 [log_collector] {"stage_name":"log_collector","events_processed":15662,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3132.4,"last_update":"2026-03-21T20:53:28.870175335Z"} +2026/03/21 20:53:33 ───────────────────────────────────────────────── +2026/03/21 20:53:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:53:38 [metric_collector] {"stage_name":"metric_collector","events_processed":10064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2012.8,"last_update":"2026-03-21T20:53:33.869816368Z"} +2026/03/21 20:53:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:53:33.878291247Z"} +2026/03/21 20:53:38 [transform_engine] {"stage_name":"transform_engine","events_processed":335,"events_dropped":0,"avg_latency_ms":1962.9011978011163,"throughput_eps":0,"last_update":"2026-03-21T20:53:33.965373765Z"} +2026/03/21 20:53:38 [detection_layer] {"stage_name":"detection_layer","events_processed":335,"events_dropped":0,"avg_latency_ms":14.70265154633518,"throughput_eps":0,"last_update":"2026-03-21T20:53:33.965399094Z"} +2026/03/21 20:53:38 [log_collector] {"stage_name":"log_collector","events_processed":15664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3132.8,"last_update":"2026-03-21T20:53:33.869416533Z"} +2026/03/21 20:53:38 ───────────────────────────────────────────────── +2026/03/21 20:53:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:53:43 [detection_layer] {"stage_name":"detection_layer","events_processed":335,"events_dropped":0,"avg_latency_ms":14.70265154633518,"throughput_eps":0,"last_update":"2026-03-21T20:53:38.96567163Z"} +2026/03/21 20:53:43 [log_collector] {"stage_name":"log_collector","events_processed":15855,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3171,"last_update":"2026-03-21T20:53:38.869679511Z"} +2026/03/21 20:53:43 [metric_collector] {"stage_name":"metric_collector","events_processed":10069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2013.8,"last_update":"2026-03-21T20:53:38.869865767Z"} +2026/03/21 20:53:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:53:38.87548626Z"} +2026/03/21 20:53:43 [transform_engine] {"stage_name":"transform_engine","events_processed":335,"events_dropped":0,"avg_latency_ms":1962.9011978011163,"throughput_eps":0,"last_update":"2026-03-21T20:53:38.965628798Z"} +2026/03/21 20:53:43 ───────────────────────────────────────────────── +Saved state: 12 clusters, 16007 messages, reason: none +2026/03/21 20:53:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:53:48 [metric_collector] {"stage_name":"metric_collector","events_processed":10074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2014.8,"last_update":"2026-03-21T20:53:43.869624551Z"} +2026/03/21 20:53:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:53:43.876391529Z"} +2026/03/21 20:53:48 [transform_engine] {"stage_name":"transform_engine","events_processed":335,"events_dropped":0,"avg_latency_ms":1962.9011978011163,"throughput_eps":0,"last_update":"2026-03-21T20:53:43.965536197Z"} +2026/03/21 20:53:48 [detection_layer] {"stage_name":"detection_layer","events_processed":335,"events_dropped":0,"avg_latency_ms":14.70265154633518,"throughput_eps":0,"last_update":"2026-03-21T20:53:43.965501099Z"} +2026/03/21 20:53:48 [log_collector] {"stage_name":"log_collector","events_processed":16000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3200,"last_update":"2026-03-21T20:53:43.869386395Z"} +2026/03/21 20:53:48 ───────────────────────────────────────────────── +2026/03/21 20:53:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:53:53 [transform_engine] {"stage_name":"transform_engine","events_processed":336,"events_dropped":0,"avg_latency_ms":1593.343461240893,"throughput_eps":0,"last_update":"2026-03-21T20:53:49.080893791Z"} +2026/03/21 20:53:53 [detection_layer] {"stage_name":"detection_layer","events_processed":335,"events_dropped":0,"avg_latency_ms":14.70265154633518,"throughput_eps":0,"last_update":"2026-03-21T20:53:48.965729467Z"} +2026/03/21 20:53:53 [log_collector] {"stage_name":"log_collector","events_processed":16013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3202.6,"last_update":"2026-03-21T20:53:48.869503439Z"} +2026/03/21 20:53:53 [metric_collector] {"stage_name":"metric_collector","events_processed":10079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2015.8,"last_update":"2026-03-21T20:53:48.869794296Z"} +2026/03/21 20:53:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:53:48.878575532Z"} +2026/03/21 20:53:53 ───────────────────────────────────────────────── +2026/03/21 20:53:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:53:58 [transform_engine] {"stage_name":"transform_engine","events_processed":336,"events_dropped":0,"avg_latency_ms":1593.343461240893,"throughput_eps":0,"last_update":"2026-03-21T20:53:53.966520656Z"} +2026/03/21 20:53:58 [detection_layer] {"stage_name":"detection_layer","events_processed":336,"events_dropped":0,"avg_latency_ms":14.685232637068143,"throughput_eps":0,"last_update":"2026-03-21T20:53:53.966510626Z"} +2026/03/21 20:53:58 [log_collector] {"stage_name":"log_collector","events_processed":16013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3202.6,"last_update":"2026-03-21T20:53:53.870065658Z"} +2026/03/21 20:53:58 [metric_collector] {"stage_name":"metric_collector","events_processed":10084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2016.8,"last_update":"2026-03-21T20:53:53.870222799Z"} +2026/03/21 20:53:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4036,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:53:53.877843292Z"} +2026/03/21 20:53:58 ───────────────────────────────────────────────── +2026/03/21 20:54:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:54:03 [log_collector] {"stage_name":"log_collector","events_processed":16019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3203.8,"last_update":"2026-03-21T20:53:58.869486133Z"} +2026/03/21 20:54:03 [metric_collector] {"stage_name":"metric_collector","events_processed":10089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2017.8,"last_update":"2026-03-21T20:53:58.870112472Z"} +2026/03/21 20:54:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:53:58.878250146Z"} +2026/03/21 20:54:03 [transform_engine] {"stage_name":"transform_engine","events_processed":336,"events_dropped":0,"avg_latency_ms":1593.343461240893,"throughput_eps":0,"last_update":"2026-03-21T20:53:58.965504324Z"} +2026/03/21 20:54:03 [detection_layer] {"stage_name":"detection_layer","events_processed":336,"events_dropped":0,"avg_latency_ms":14.685232637068143,"throughput_eps":0,"last_update":"2026-03-21T20:53:58.965616618Z"} +2026/03/21 20:54:03 ───────────────────────────────────────────────── +2026/03/21 20:54:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:54:08 [transform_engine] {"stage_name":"transform_engine","events_processed":336,"events_dropped":0,"avg_latency_ms":1593.343461240893,"throughput_eps":0,"last_update":"2026-03-21T20:54:03.966039735Z"} +2026/03/21 20:54:08 [detection_layer] {"stage_name":"detection_layer","events_processed":336,"events_dropped":0,"avg_latency_ms":14.685232637068143,"throughput_eps":0,"last_update":"2026-03-21T20:54:03.966158532Z"} +2026/03/21 20:54:08 [log_collector] {"stage_name":"log_collector","events_processed":16024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3204.8,"last_update":"2026-03-21T20:54:03.869612772Z"} +2026/03/21 20:54:08 [metric_collector] {"stage_name":"metric_collector","events_processed":10094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2018.8,"last_update":"2026-03-21T20:54:03.86994593Z"} +2026/03/21 20:54:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:54:03.878705965Z"} +2026/03/21 20:54:08 ───────────────────────────────────────────────── +2026/03/21 20:54:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:54:13 [log_collector] {"stage_name":"log_collector","events_processed":16040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208,"last_update":"2026-03-21T20:54:08.870199196Z"} +2026/03/21 20:54:13 [metric_collector] {"stage_name":"metric_collector","events_processed":10099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2019.8,"last_update":"2026-03-21T20:54:08.870572331Z"} +2026/03/21 20:54:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:54:08.880134983Z"} +2026/03/21 20:54:13 [transform_engine] {"stage_name":"transform_engine","events_processed":336,"events_dropped":0,"avg_latency_ms":1593.343461240893,"throughput_eps":0,"last_update":"2026-03-21T20:54:08.965307725Z"} +2026/03/21 20:54:13 [detection_layer] {"stage_name":"detection_layer","events_processed":336,"events_dropped":0,"avg_latency_ms":14.685232637068143,"throughput_eps":0,"last_update":"2026-03-21T20:54:08.965287065Z"} +2026/03/21 20:54:13 ───────────────────────────────────────────────── +2026/03/21 20:54:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:54:18 [log_collector] {"stage_name":"log_collector","events_processed":16040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208,"last_update":"2026-03-21T20:54:18.869404995Z"} +2026/03/21 20:54:18 [metric_collector] {"stage_name":"metric_collector","events_processed":10103,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2020.6,"last_update":"2026-03-21T20:54:13.870033001Z"} +2026/03/21 20:54:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:54:13.879661229Z"} +2026/03/21 20:54:18 [transform_engine] {"stage_name":"transform_engine","events_processed":336,"events_dropped":0,"avg_latency_ms":1593.343461240893,"throughput_eps":0,"last_update":"2026-03-21T20:54:13.965798348Z"} +2026/03/21 20:54:18 [detection_layer] {"stage_name":"detection_layer","events_processed":336,"events_dropped":0,"avg_latency_ms":14.685232637068143,"throughput_eps":0,"last_update":"2026-03-21T20:54:13.96587751Z"} +2026/03/21 20:54:18 ───────────────────────────────────────────────── +2026/03/21 20:54:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:54:23 [log_collector] {"stage_name":"log_collector","events_processed":16040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208,"last_update":"2026-03-21T20:54:23.86940478Z"} +2026/03/21 20:54:23 [metric_collector] {"stage_name":"metric_collector","events_processed":10109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2021.8,"last_update":"2026-03-21T20:54:18.869844086Z"} +2026/03/21 20:54:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:54:18.878190699Z"} +2026/03/21 20:54:23 [transform_engine] {"stage_name":"transform_engine","events_processed":337,"events_dropped":0,"avg_latency_ms":1298.2098157927144,"throughput_eps":0,"last_update":"2026-03-21T20:54:19.083102879Z"} +2026/03/21 20:54:23 [detection_layer] {"stage_name":"detection_layer","events_processed":336,"events_dropped":0,"avg_latency_ms":14.685232637068143,"throughput_eps":0,"last_update":"2026-03-21T20:54:18.965399411Z"} +2026/03/21 20:54:23 ───────────────────────────────────────────────── +2026/03/21 20:54:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:54:28 [detection_layer] {"stage_name":"detection_layer","events_processed":337,"events_dropped":0,"avg_latency_ms":15.359357309654515,"throughput_eps":0,"last_update":"2026-03-21T20:54:23.965491002Z"} +2026/03/21 20:54:28 [log_collector] {"stage_name":"log_collector","events_processed":16040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208,"last_update":"2026-03-21T20:54:23.86940478Z"} +2026/03/21 20:54:28 [metric_collector] {"stage_name":"metric_collector","events_processed":10114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2022.8,"last_update":"2026-03-21T20:54:23.869976395Z"} +2026/03/21 20:54:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4048,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:54:23.878167811Z"} +2026/03/21 20:54:28 [transform_engine] {"stage_name":"transform_engine","events_processed":337,"events_dropped":0,"avg_latency_ms":1298.2098157927144,"throughput_eps":0,"last_update":"2026-03-21T20:54:23.96550525Z"} +2026/03/21 20:54:28 ───────────────────────────────────────────────── +2026/03/21 20:54:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:54:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4050,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:54:28.878184853Z"} +2026/03/21 20:54:33 [transform_engine] {"stage_name":"transform_engine","events_processed":337,"events_dropped":0,"avg_latency_ms":1298.2098157927144,"throughput_eps":0,"last_update":"2026-03-21T20:54:28.965387914Z"} +2026/03/21 20:54:33 [detection_layer] {"stage_name":"detection_layer","events_processed":337,"events_dropped":0,"avg_latency_ms":15.359357309654515,"throughput_eps":0,"last_update":"2026-03-21T20:54:28.965379237Z"} +2026/03/21 20:54:33 [log_collector] {"stage_name":"log_collector","events_processed":16040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208,"last_update":"2026-03-21T20:54:28.869533054Z"} +2026/03/21 20:54:33 [metric_collector] {"stage_name":"metric_collector","events_processed":10119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2023.8,"last_update":"2026-03-21T20:54:28.869847637Z"} +2026/03/21 20:54:33 ───────────────────────────────────────────────── +2026/03/21 20:54:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:54:38 [log_collector] {"stage_name":"log_collector","events_processed":16040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208,"last_update":"2026-03-21T20:54:38.869829498Z"} +2026/03/21 20:54:38 [metric_collector] {"stage_name":"metric_collector","events_processed":10124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2024.8,"last_update":"2026-03-21T20:54:33.869834775Z"} +2026/03/21 20:54:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:54:33.878653994Z"} +2026/03/21 20:54:38 [transform_engine] {"stage_name":"transform_engine","events_processed":337,"events_dropped":0,"avg_latency_ms":1298.2098157927144,"throughput_eps":0,"last_update":"2026-03-21T20:54:33.965873897Z"} +2026/03/21 20:54:38 [detection_layer] {"stage_name":"detection_layer","events_processed":337,"events_dropped":0,"avg_latency_ms":15.359357309654515,"throughput_eps":0,"last_update":"2026-03-21T20:54:33.965866544Z"} +2026/03/21 20:54:38 ───────────────────────────────────────────────── +2026/03/21 20:54:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:54:43 [transform_engine] {"stage_name":"transform_engine","events_processed":337,"events_dropped":0,"avg_latency_ms":1298.2098157927144,"throughput_eps":0,"last_update":"2026-03-21T20:54:38.966012787Z"} +2026/03/21 20:54:43 [detection_layer] {"stage_name":"detection_layer","events_processed":337,"events_dropped":0,"avg_latency_ms":15.359357309654515,"throughput_eps":0,"last_update":"2026-03-21T20:54:38.965979403Z"} +2026/03/21 20:54:43 [log_collector] {"stage_name":"log_collector","events_processed":16040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208,"last_update":"2026-03-21T20:54:38.869829498Z"} +2026/03/21 20:54:43 [metric_collector] {"stage_name":"metric_collector","events_processed":10129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2025.8,"last_update":"2026-03-21T20:54:38.870163367Z"} +2026/03/21 20:54:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:54:38.878535861Z"} +2026/03/21 20:54:43 ───────────────────────────────────────────────── +2026/03/21 20:54:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:54:48 [log_collector] {"stage_name":"log_collector","events_processed":16040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208,"last_update":"2026-03-21T20:54:48.869405947Z"} +2026/03/21 20:54:48 [metric_collector] {"stage_name":"metric_collector","events_processed":10134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2026.8,"last_update":"2026-03-21T20:54:43.87038708Z"} +2026/03/21 20:54:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4056,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:54:43.879266204Z"} +2026/03/21 20:54:48 [transform_engine] {"stage_name":"transform_engine","events_processed":337,"events_dropped":0,"avg_latency_ms":1298.2098157927144,"throughput_eps":0,"last_update":"2026-03-21T20:54:43.965598568Z"} +2026/03/21 20:54:48 [detection_layer] {"stage_name":"detection_layer","events_processed":337,"events_dropped":0,"avg_latency_ms":15.359357309654515,"throughput_eps":0,"last_update":"2026-03-21T20:54:43.965718488Z"} +2026/03/21 20:54:48 ───────────────────────────────────────────────── +2026/03/21 20:54:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:54:53 [log_collector] {"stage_name":"log_collector","events_processed":16040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208,"last_update":"2026-03-21T20:54:53.869769294Z"} +2026/03/21 20:54:53 [metric_collector] {"stage_name":"metric_collector","events_processed":10139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2027.8,"last_update":"2026-03-21T20:54:48.869855469Z"} +2026/03/21 20:54:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:54:48.878650721Z"} +2026/03/21 20:54:53 [transform_engine] {"stage_name":"transform_engine","events_processed":338,"events_dropped":0,"avg_latency_ms":1052.6422268341714,"throughput_eps":0,"last_update":"2026-03-21T20:54:49.036489479Z"} +2026/03/21 20:54:53 [detection_layer] {"stage_name":"detection_layer","events_processed":337,"events_dropped":0,"avg_latency_ms":15.359357309654515,"throughput_eps":0,"last_update":"2026-03-21T20:54:48.966082402Z"} +2026/03/21 20:54:53 ───────────────────────────────────────────────── +2026/03/21 20:54:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:54:58 [log_collector] {"stage_name":"log_collector","events_processed":16040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208,"last_update":"2026-03-21T20:54:53.869769294Z"} +2026/03/21 20:54:58 [metric_collector] {"stage_name":"metric_collector","events_processed":10144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2028.8,"last_update":"2026-03-21T20:54:53.87025318Z"} +2026/03/21 20:54:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:54:53.878751975Z"} +2026/03/21 20:54:58 [transform_engine] {"stage_name":"transform_engine","events_processed":338,"events_dropped":0,"avg_latency_ms":1052.6422268341714,"throughput_eps":0,"last_update":"2026-03-21T20:54:53.965249776Z"} +2026/03/21 20:54:58 [detection_layer] {"stage_name":"detection_layer","events_processed":338,"events_dropped":0,"avg_latency_ms":16.465827247723613,"throughput_eps":0,"last_update":"2026-03-21T20:54:53.965336051Z"} +2026/03/21 20:54:58 ───────────────────────────────────────────────── +2026/03/21 20:55:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:55:03 [log_collector] {"stage_name":"log_collector","events_processed":16040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208,"last_update":"2026-03-21T20:54:58.869755567Z"} +2026/03/21 20:55:03 [metric_collector] {"stage_name":"metric_collector","events_processed":10149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2029.8,"last_update":"2026-03-21T20:54:58.870218033Z"} +2026/03/21 20:55:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4062,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:54:58.879220202Z"} +2026/03/21 20:55:03 [transform_engine] {"stage_name":"transform_engine","events_processed":338,"events_dropped":0,"avg_latency_ms":1052.6422268341714,"throughput_eps":0,"last_update":"2026-03-21T20:54:58.96553301Z"} +2026/03/21 20:55:03 [detection_layer] {"stage_name":"detection_layer","events_processed":338,"events_dropped":0,"avg_latency_ms":16.465827247723613,"throughput_eps":0,"last_update":"2026-03-21T20:54:58.965580371Z"} +2026/03/21 20:55:03 ───────────────────────────────────────────────── +2026/03/21 20:55:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:55:08 [detection_layer] {"stage_name":"detection_layer","events_processed":338,"events_dropped":0,"avg_latency_ms":16.465827247723613,"throughput_eps":0,"last_update":"2026-03-21T20:55:03.966058257Z"} +2026/03/21 20:55:08 [log_collector] {"stage_name":"log_collector","events_processed":16040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208,"last_update":"2026-03-21T20:55:03.869675946Z"} +2026/03/21 20:55:08 [metric_collector] {"stage_name":"metric_collector","events_processed":10154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2030.8,"last_update":"2026-03-21T20:55:03.869941405Z"} +2026/03/21 20:55:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:55:03.878801692Z"} +2026/03/21 20:55:08 [transform_engine] {"stage_name":"transform_engine","events_processed":338,"events_dropped":0,"avg_latency_ms":1052.6422268341714,"throughput_eps":0,"last_update":"2026-03-21T20:55:03.966166414Z"} +2026/03/21 20:55:08 ───────────────────────────────────────────────── +2026/03/21 20:55:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:55:13 [log_collector] {"stage_name":"log_collector","events_processed":16040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208,"last_update":"2026-03-21T20:55:08.870131633Z"} +2026/03/21 20:55:13 [metric_collector] {"stage_name":"metric_collector","events_processed":10159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2031.8,"last_update":"2026-03-21T20:55:08.870618575Z"} +2026/03/21 20:55:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:55:08.879224806Z"} +2026/03/21 20:55:13 [transform_engine] {"stage_name":"transform_engine","events_processed":338,"events_dropped":0,"avg_latency_ms":1052.6422268341714,"throughput_eps":0,"last_update":"2026-03-21T20:55:08.96550435Z"} +2026/03/21 20:55:13 [detection_layer] {"stage_name":"detection_layer","events_processed":338,"events_dropped":0,"avg_latency_ms":16.465827247723613,"throughput_eps":0,"last_update":"2026-03-21T20:55:08.965452641Z"} +2026/03/21 20:55:13 ───────────────────────────────────────────────── +2026/03/21 20:55:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:55:18 [detection_layer] {"stage_name":"detection_layer","events_processed":338,"events_dropped":0,"avg_latency_ms":16.465827247723613,"throughput_eps":0,"last_update":"2026-03-21T20:55:13.966053646Z"} +2026/03/21 20:55:18 [log_collector] {"stage_name":"log_collector","events_processed":16040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208,"last_update":"2026-03-21T20:55:13.870028829Z"} +2026/03/21 20:55:18 [metric_collector] {"stage_name":"metric_collector","events_processed":10164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2032.8,"last_update":"2026-03-21T20:55:13.870480364Z"} +2026/03/21 20:55:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:55:13.879659843Z"} +2026/03/21 20:55:18 [transform_engine] {"stage_name":"transform_engine","events_processed":338,"events_dropped":0,"avg_latency_ms":1052.6422268341714,"throughput_eps":0,"last_update":"2026-03-21T20:55:13.9659719Z"} +2026/03/21 20:55:18 ───────────────────────────────────────────────── +Saved state: 12 clusters, 16041 messages, reason: none +2026/03/21 20:55:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:55:23 [log_collector] {"stage_name":"log_collector","events_processed":16040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208,"last_update":"2026-03-21T20:55:18.870331024Z"} +2026/03/21 20:55:23 [metric_collector] {"stage_name":"metric_collector","events_processed":10169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2033.8,"last_update":"2026-03-21T20:55:18.870700041Z"} +2026/03/21 20:55:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:55:18.879511214Z"} +2026/03/21 20:55:23 [transform_engine] {"stage_name":"transform_engine","events_processed":339,"events_dropped":0,"avg_latency_ms":856.6684614673371,"throughput_eps":0,"last_update":"2026-03-21T20:55:19.038456012Z"} +2026/03/21 20:55:23 [detection_layer] {"stage_name":"detection_layer","events_processed":338,"events_dropped":0,"avg_latency_ms":16.465827247723613,"throughput_eps":0,"last_update":"2026-03-21T20:55:18.965704043Z"} +2026/03/21 20:55:23 ───────────────────────────────────────────────── +2026/03/21 20:55:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:55:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4072,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:55:23.877619589Z"} +2026/03/21 20:55:28 [transform_engine] {"stage_name":"transform_engine","events_processed":339,"events_dropped":0,"avg_latency_ms":856.6684614673371,"throughput_eps":0,"last_update":"2026-03-21T20:55:23.965767141Z"} +2026/03/21 20:55:28 [detection_layer] {"stage_name":"detection_layer","events_processed":339,"events_dropped":0,"avg_latency_ms":17.22962679817889,"throughput_eps":0,"last_update":"2026-03-21T20:55:23.965757221Z"} +2026/03/21 20:55:28 [log_collector] {"stage_name":"log_collector","events_processed":16043,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208.6,"last_update":"2026-03-21T20:55:23.869410969Z"} +2026/03/21 20:55:28 [metric_collector] {"stage_name":"metric_collector","events_processed":10173,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2034.6,"last_update":"2026-03-21T20:55:23.869423493Z"} +2026/03/21 20:55:28 ───────────────────────────────────────────────── +2026/03/21 20:55:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:55:33 [detection_layer] {"stage_name":"detection_layer","events_processed":339,"events_dropped":0,"avg_latency_ms":17.22962679817889,"throughput_eps":0,"last_update":"2026-03-21T20:55:28.965372823Z"} +2026/03/21 20:55:33 [log_collector] {"stage_name":"log_collector","events_processed":16054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3210.8,"last_update":"2026-03-21T20:55:28.869408822Z"} +2026/03/21 20:55:33 [metric_collector] {"stage_name":"metric_collector","events_processed":10178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2035.6,"last_update":"2026-03-21T20:55:28.86952777Z"} +2026/03/21 20:55:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:55:28.879145147Z"} +2026/03/21 20:55:33 [transform_engine] {"stage_name":"transform_engine","events_processed":339,"events_dropped":0,"avg_latency_ms":856.6684614673371,"throughput_eps":0,"last_update":"2026-03-21T20:55:28.965385717Z"} +2026/03/21 20:55:33 ───────────────────────────────────────────────── +2026/03/21 20:55:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:55:38 [metric_collector] {"stage_name":"metric_collector","events_processed":10184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2036.8,"last_update":"2026-03-21T20:55:33.870053304Z"} +2026/03/21 20:55:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4076,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:55:33.87901158Z"} +2026/03/21 20:55:38 [transform_engine] {"stage_name":"transform_engine","events_processed":339,"events_dropped":0,"avg_latency_ms":856.6684614673371,"throughput_eps":0,"last_update":"2026-03-21T20:55:33.965105719Z"} +2026/03/21 20:55:38 [detection_layer] {"stage_name":"detection_layer","events_processed":339,"events_dropped":0,"avg_latency_ms":17.22962679817889,"throughput_eps":0,"last_update":"2026-03-21T20:55:33.966307961Z"} +2026/03/21 20:55:38 [log_collector] {"stage_name":"log_collector","events_processed":16054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3210.8,"last_update":"2026-03-21T20:55:33.86961207Z"} +2026/03/21 20:55:38 ───────────────────────────────────────────────── +2026/03/21 20:55:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:55:43 [log_collector] {"stage_name":"log_collector","events_processed":16054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3210.8,"last_update":"2026-03-21T20:55:38.869521805Z"} +2026/03/21 20:55:43 [metric_collector] {"stage_name":"metric_collector","events_processed":10189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2037.8,"last_update":"2026-03-21T20:55:38.869849412Z"} +2026/03/21 20:55:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:55:38.87850595Z"} +2026/03/21 20:55:43 [transform_engine] {"stage_name":"transform_engine","events_processed":339,"events_dropped":0,"avg_latency_ms":856.6684614673371,"throughput_eps":0,"last_update":"2026-03-21T20:55:38.965779097Z"} +2026/03/21 20:55:43 [detection_layer] {"stage_name":"detection_layer","events_processed":339,"events_dropped":0,"avg_latency_ms":17.22962679817889,"throughput_eps":0,"last_update":"2026-03-21T20:55:38.965773096Z"} +2026/03/21 20:55:43 ───────────────────────────────────────────────── +2026/03/21 20:55:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:55:48 [metric_collector] {"stage_name":"metric_collector","events_processed":10194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2038.8,"last_update":"2026-03-21T20:55:43.87039185Z"} +2026/03/21 20:55:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:55:43.879169239Z"} +2026/03/21 20:55:48 [transform_engine] {"stage_name":"transform_engine","events_processed":339,"events_dropped":0,"avg_latency_ms":856.6684614673371,"throughput_eps":0,"last_update":"2026-03-21T20:55:43.965522836Z"} +2026/03/21 20:55:48 [detection_layer] {"stage_name":"detection_layer","events_processed":339,"events_dropped":0,"avg_latency_ms":17.22962679817889,"throughput_eps":0,"last_update":"2026-03-21T20:55:43.965511415Z"} +2026/03/21 20:55:48 [log_collector] {"stage_name":"log_collector","events_processed":16054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3210.8,"last_update":"2026-03-21T20:55:43.869882665Z"} +2026/03/21 20:55:48 ───────────────────────────────────────────────── +2026/03/21 20:55:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:55:53 [log_collector] {"stage_name":"log_collector","events_processed":16054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3210.8,"last_update":"2026-03-21T20:55:48.869405302Z"} +2026/03/21 20:55:53 [metric_collector] {"stage_name":"metric_collector","events_processed":10199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2039.8,"last_update":"2026-03-21T20:55:48.870065826Z"} +2026/03/21 20:55:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4082,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:55:48.8783185Z"} +2026/03/21 20:55:53 [transform_engine] {"stage_name":"transform_engine","events_processed":340,"events_dropped":0,"avg_latency_ms":707.8539495738697,"throughput_eps":0,"last_update":"2026-03-21T20:55:49.078087589Z"} +2026/03/21 20:55:53 [detection_layer] {"stage_name":"detection_layer","events_processed":339,"events_dropped":0,"avg_latency_ms":17.22962679817889,"throughput_eps":0,"last_update":"2026-03-21T20:55:48.96548309Z"} +2026/03/21 20:55:53 ───────────────────────────────────────────────── +2026/03/21 20:55:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:55:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:55:53.879529298Z"} +2026/03/21 20:55:58 [transform_engine] {"stage_name":"transform_engine","events_processed":340,"events_dropped":0,"avg_latency_ms":707.8539495738697,"throughput_eps":0,"last_update":"2026-03-21T20:55:53.965719874Z"} +2026/03/21 20:55:58 [detection_layer] {"stage_name":"detection_layer","events_processed":340,"events_dropped":0,"avg_latency_ms":17.725367838543114,"throughput_eps":0,"last_update":"2026-03-21T20:55:53.965709293Z"} +2026/03/21 20:55:58 [log_collector] {"stage_name":"log_collector","events_processed":16054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3210.8,"last_update":"2026-03-21T20:55:53.870489657Z"} +2026/03/21 20:55:58 [metric_collector] {"stage_name":"metric_collector","events_processed":10204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2040.8,"last_update":"2026-03-21T20:55:53.870843715Z"} +2026/03/21 20:55:58 ───────────────────────────────────────────────── +2026/03/21 20:56:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:56:03 [transform_engine] {"stage_name":"transform_engine","events_processed":340,"events_dropped":0,"avg_latency_ms":707.8539495738697,"throughput_eps":0,"last_update":"2026-03-21T20:55:58.965738409Z"} +2026/03/21 20:56:03 [detection_layer] {"stage_name":"detection_layer","events_processed":340,"events_dropped":0,"avg_latency_ms":17.725367838543114,"throughput_eps":0,"last_update":"2026-03-21T20:55:58.965610354Z"} +2026/03/21 20:56:03 [log_collector] {"stage_name":"log_collector","events_processed":16054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3210.8,"last_update":"2026-03-21T20:55:58.869778054Z"} +2026/03/21 20:56:03 [metric_collector] {"stage_name":"metric_collector","events_processed":10214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2042.8,"last_update":"2026-03-21T20:56:03.870260429Z"} +2026/03/21 20:56:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:55:58.87925382Z"} +2026/03/21 20:56:03 ───────────────────────────────────────────────── +2026/03/21 20:56:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:56:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:56:03.87985328Z"} +2026/03/21 20:56:08 [transform_engine] {"stage_name":"transform_engine","events_processed":340,"events_dropped":0,"avg_latency_ms":707.8539495738697,"throughput_eps":0,"last_update":"2026-03-21T20:56:03.966163534Z"} +2026/03/21 20:56:08 [detection_layer] {"stage_name":"detection_layer","events_processed":340,"events_dropped":0,"avg_latency_ms":17.725367838543114,"throughput_eps":0,"last_update":"2026-03-21T20:56:03.966118288Z"} +2026/03/21 20:56:08 [log_collector] {"stage_name":"log_collector","events_processed":16054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3210.8,"last_update":"2026-03-21T20:56:03.870302911Z"} +2026/03/21 20:56:08 [metric_collector] {"stage_name":"metric_collector","events_processed":10214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2042.8,"last_update":"2026-03-21T20:56:03.870260429Z"} +2026/03/21 20:56:08 ───────────────────────────────────────────────── +2026/03/21 20:56:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:56:13 [log_collector] {"stage_name":"log_collector","events_processed":16054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3210.8,"last_update":"2026-03-21T20:56:08.869935998Z"} +2026/03/21 20:56:13 [metric_collector] {"stage_name":"metric_collector","events_processed":10219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2043.8,"last_update":"2026-03-21T20:56:08.870408283Z"} +2026/03/21 20:56:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:56:08.879190902Z"} +2026/03/21 20:56:13 [transform_engine] {"stage_name":"transform_engine","events_processed":340,"events_dropped":0,"avg_latency_ms":707.8539495738697,"throughput_eps":0,"last_update":"2026-03-21T20:56:08.965552706Z"} +2026/03/21 20:56:13 [detection_layer] {"stage_name":"detection_layer","events_processed":340,"events_dropped":0,"avg_latency_ms":17.725367838543114,"throughput_eps":0,"last_update":"2026-03-21T20:56:08.965586821Z"} +2026/03/21 20:56:13 ───────────────────────────────────────────────── +2026/03/21 20:56:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:56:18 [detection_layer] {"stage_name":"detection_layer","events_processed":340,"events_dropped":0,"avg_latency_ms":17.725367838543114,"throughput_eps":0,"last_update":"2026-03-21T20:56:13.965649251Z"} +2026/03/21 20:56:18 [log_collector] {"stage_name":"log_collector","events_processed":16054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3210.8,"last_update":"2026-03-21T20:56:13.869613622Z"} +2026/03/21 20:56:18 [metric_collector] {"stage_name":"metric_collector","events_processed":10224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2044.8,"last_update":"2026-03-21T20:56:13.8697695Z"} +2026/03/21 20:56:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:56:13.878258066Z"} +2026/03/21 20:56:18 [transform_engine] {"stage_name":"transform_engine","events_processed":340,"events_dropped":0,"avg_latency_ms":707.8539495738697,"throughput_eps":0,"last_update":"2026-03-21T20:56:13.965614706Z"} +2026/03/21 20:56:18 ───────────────────────────────────────────────── +2026/03/21 20:56:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:56:23 [log_collector] {"stage_name":"log_collector","events_processed":16054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3210.8,"last_update":"2026-03-21T20:56:18.869401445Z"} +2026/03/21 20:56:23 [metric_collector] {"stage_name":"metric_collector","events_processed":10229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2045.8,"last_update":"2026-03-21T20:56:18.869784218Z"} +2026/03/21 20:56:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:56:18.878262535Z"} +2026/03/21 20:56:23 [transform_engine] {"stage_name":"transform_engine","events_processed":341,"events_dropped":0,"avg_latency_ms":580.3274004590958,"throughput_eps":0,"last_update":"2026-03-21T20:56:19.035903249Z"} +2026/03/21 20:56:23 [detection_layer] {"stage_name":"detection_layer","events_processed":340,"events_dropped":0,"avg_latency_ms":17.725367838543114,"throughput_eps":0,"last_update":"2026-03-21T20:56:18.966546009Z"} +2026/03/21 20:56:23 ───────────────────────────────────────────────── +2026/03/21 20:56:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:56:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:56:23.878338531Z"} +2026/03/21 20:56:28 [transform_engine] {"stage_name":"transform_engine","events_processed":341,"events_dropped":0,"avg_latency_ms":580.3274004590958,"throughput_eps":0,"last_update":"2026-03-21T20:56:23.965573177Z"} +2026/03/21 20:56:28 [detection_layer] {"stage_name":"detection_layer","events_processed":341,"events_dropped":0,"avg_latency_ms":18.216477670834493,"throughput_eps":0,"last_update":"2026-03-21T20:56:23.965565332Z"} +2026/03/21 20:56:28 [log_collector] {"stage_name":"log_collector","events_processed":16054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3210.8,"last_update":"2026-03-21T20:56:23.869494544Z"} +2026/03/21 20:56:28 [metric_collector] {"stage_name":"metric_collector","events_processed":10234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2046.8,"last_update":"2026-03-21T20:56:23.870020261Z"} +2026/03/21 20:56:28 ───────────────────────────────────────────────── +Saved state: 12 clusters, 16055 messages, reason: none +2026/03/21 20:56:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:56:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:56:28.87902782Z"} +2026/03/21 20:56:33 [transform_engine] {"stage_name":"transform_engine","events_processed":341,"events_dropped":0,"avg_latency_ms":580.3274004590958,"throughput_eps":0,"last_update":"2026-03-21T20:56:28.965226873Z"} +2026/03/21 20:56:33 [detection_layer] {"stage_name":"detection_layer","events_processed":341,"events_dropped":0,"avg_latency_ms":18.216477670834493,"throughput_eps":0,"last_update":"2026-03-21T20:56:28.965347614Z"} +2026/03/21 20:56:33 [log_collector] {"stage_name":"log_collector","events_processed":16054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3210.8,"last_update":"2026-03-21T20:56:28.869399962Z"} +2026/03/21 20:56:33 [metric_collector] {"stage_name":"metric_collector","events_processed":10239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2047.8,"last_update":"2026-03-21T20:56:28.870006895Z"} +2026/03/21 20:56:33 ───────────────────────────────────────────────── +2026/03/21 20:56:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:56:38 [log_collector] {"stage_name":"log_collector","events_processed":16059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3211.8,"last_update":"2026-03-21T20:56:33.870185064Z"} +2026/03/21 20:56:38 [metric_collector] {"stage_name":"metric_collector","events_processed":10244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2048.8,"last_update":"2026-03-21T20:56:33.870127154Z"} +2026/03/21 20:56:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:56:33.876536648Z"} +2026/03/21 20:56:38 [transform_engine] {"stage_name":"transform_engine","events_processed":341,"events_dropped":0,"avg_latency_ms":580.3274004590958,"throughput_eps":0,"last_update":"2026-03-21T20:56:33.96573209Z"} +2026/03/21 20:56:38 [detection_layer] {"stage_name":"detection_layer","events_processed":341,"events_dropped":0,"avg_latency_ms":18.216477670834493,"throughput_eps":0,"last_update":"2026-03-21T20:56:33.965721248Z"} +2026/03/21 20:56:38 ───────────────────────────────────────────────── +2026/03/21 20:56:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:56:43 [log_collector] {"stage_name":"log_collector","events_processed":16059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3211.8,"last_update":"2026-03-21T20:56:38.870342013Z"} +2026/03/21 20:56:43 [metric_collector] {"stage_name":"metric_collector","events_processed":10249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2049.8,"last_update":"2026-03-21T20:56:38.870266388Z"} +2026/03/21 20:56:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:56:38.877106868Z"} +2026/03/21 20:56:43 [transform_engine] {"stage_name":"transform_engine","events_processed":341,"events_dropped":0,"avg_latency_ms":580.3274004590958,"throughput_eps":0,"last_update":"2026-03-21T20:56:38.965296774Z"} +2026/03/21 20:56:43 [detection_layer] {"stage_name":"detection_layer","events_processed":341,"events_dropped":0,"avg_latency_ms":18.216477670834493,"throughput_eps":0,"last_update":"2026-03-21T20:56:38.965283739Z"} +2026/03/21 20:56:43 ───────────────────────────────────────────────── +2026/03/21 20:56:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:56:48 [log_collector] {"stage_name":"log_collector","events_processed":16059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3211.8,"last_update":"2026-03-21T20:56:43.870656864Z"} +2026/03/21 20:56:48 [metric_collector] {"stage_name":"metric_collector","events_processed":10254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2050.8,"last_update":"2026-03-21T20:56:43.870723863Z"} +2026/03/21 20:56:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:56:43.880594285Z"} +2026/03/21 20:56:48 [transform_engine] {"stage_name":"transform_engine","events_processed":341,"events_dropped":0,"avg_latency_ms":580.3274004590958,"throughput_eps":0,"last_update":"2026-03-21T20:56:43.965854029Z"} +2026/03/21 20:56:48 [detection_layer] {"stage_name":"detection_layer","events_processed":341,"events_dropped":0,"avg_latency_ms":18.216477670834493,"throughput_eps":0,"last_update":"2026-03-21T20:56:43.965843108Z"} +2026/03/21 20:56:48 ───────────────────────────────────────────────── +2026/03/21 20:56:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:56:53 [log_collector] {"stage_name":"log_collector","events_processed":16059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3211.8,"last_update":"2026-03-21T20:56:48.869391689Z"} +2026/03/21 20:56:53 [metric_collector] {"stage_name":"metric_collector","events_processed":10259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2051.8,"last_update":"2026-03-21T20:56:48.869636628Z"} +2026/03/21 20:56:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:56:48.876574604Z"} +2026/03/21 20:56:53 [transform_engine] {"stage_name":"transform_engine","events_processed":342,"events_dropped":0,"avg_latency_ms":1210.4690789672768,"throughput_eps":0,"last_update":"2026-03-21T20:56:52.696872847Z"} +2026/03/21 20:56:53 [detection_layer] {"stage_name":"detection_layer","events_processed":341,"events_dropped":0,"avg_latency_ms":18.216477670834493,"throughput_eps":0,"last_update":"2026-03-21T20:56:48.966465057Z"} +2026/03/21 20:56:53 ───────────────────────────────────────────────── +2026/03/21 20:56:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:56:58 [metric_collector] {"stage_name":"metric_collector","events_processed":10264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2052.8,"last_update":"2026-03-21T20:56:53.869693574Z"} +2026/03/21 20:56:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:56:53.879671914Z"} +2026/03/21 20:56:58 [transform_engine] {"stage_name":"transform_engine","events_processed":342,"events_dropped":0,"avg_latency_ms":1210.4690789672768,"throughput_eps":0,"last_update":"2026-03-21T20:56:53.965813647Z"} +2026/03/21 20:56:58 [detection_layer] {"stage_name":"detection_layer","events_processed":342,"events_dropped":0,"avg_latency_ms":17.003369936667596,"throughput_eps":0,"last_update":"2026-03-21T20:56:53.965803388Z"} +2026/03/21 20:56:58 [log_collector] {"stage_name":"log_collector","events_processed":16059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3211.8,"last_update":"2026-03-21T20:56:53.869646936Z"} +2026/03/21 20:56:58 ───────────────────────────────────────────────── +2026/03/21 20:57:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:57:03 [detection_layer] {"stage_name":"detection_layer","events_processed":342,"events_dropped":0,"avg_latency_ms":17.003369936667596,"throughput_eps":0,"last_update":"2026-03-21T20:56:58.965547174Z"} +2026/03/21 20:57:03 [log_collector] {"stage_name":"log_collector","events_processed":16059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3211.8,"last_update":"2026-03-21T20:56:58.869878545Z"} +2026/03/21 20:57:03 [metric_collector] {"stage_name":"metric_collector","events_processed":10269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2053.8,"last_update":"2026-03-21T20:56:58.869740641Z"} +2026/03/21 20:57:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:56:58.878307065Z"} +2026/03/21 20:57:03 [transform_engine] {"stage_name":"transform_engine","events_processed":342,"events_dropped":0,"avg_latency_ms":1210.4690789672768,"throughput_eps":0,"last_update":"2026-03-21T20:56:58.965562352Z"} +2026/03/21 20:57:03 ───────────────────────────────────────────────── +2026/03/21 20:57:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:57:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:57:03.880898733Z"} +2026/03/21 20:57:08 [transform_engine] {"stage_name":"transform_engine","events_processed":342,"events_dropped":0,"avg_latency_ms":1210.4690789672768,"throughput_eps":0,"last_update":"2026-03-21T20:57:03.965067259Z"} +2026/03/21 20:57:08 [detection_layer] {"stage_name":"detection_layer","events_processed":342,"events_dropped":0,"avg_latency_ms":17.003369936667596,"throughput_eps":0,"last_update":"2026-03-21T20:57:03.967362244Z"} +2026/03/21 20:57:08 [log_collector] {"stage_name":"log_collector","events_processed":16059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3211.8,"last_update":"2026-03-21T20:57:03.869741066Z"} +2026/03/21 20:57:08 [metric_collector] {"stage_name":"metric_collector","events_processed":10274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2054.8,"last_update":"2026-03-21T20:57:03.869652627Z"} +2026/03/21 20:57:08 ───────────────────────────────────────────────── +2026/03/21 20:57:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:57:13 [log_collector] {"stage_name":"log_collector","events_processed":16059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3211.8,"last_update":"2026-03-21T20:57:08.869710012Z"} +2026/03/21 20:57:13 [metric_collector] {"stage_name":"metric_collector","events_processed":10279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2055.8,"last_update":"2026-03-21T20:57:08.870171064Z"} +2026/03/21 20:57:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:57:08.876980996Z"} +2026/03/21 20:57:13 [transform_engine] {"stage_name":"transform_engine","events_processed":342,"events_dropped":0,"avg_latency_ms":1210.4690789672768,"throughput_eps":0,"last_update":"2026-03-21T20:57:08.965090028Z"} +2026/03/21 20:57:13 [detection_layer] {"stage_name":"detection_layer","events_processed":342,"events_dropped":0,"avg_latency_ms":17.003369936667596,"throughput_eps":0,"last_update":"2026-03-21T20:57:08.966208259Z"} +2026/03/21 20:57:13 ───────────────────────────────────────────────── +2026/03/21 20:57:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:57:18 [log_collector] {"stage_name":"log_collector","events_processed":16068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3213.6,"last_update":"2026-03-21T20:57:13.869988358Z"} +2026/03/21 20:57:18 [metric_collector] {"stage_name":"metric_collector","events_processed":10284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2056.8,"last_update":"2026-03-21T20:57:13.870502783Z"} +2026/03/21 20:57:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:57:13.87790628Z"} +2026/03/21 20:57:18 [transform_engine] {"stage_name":"transform_engine","events_processed":342,"events_dropped":0,"avg_latency_ms":1210.4690789672768,"throughput_eps":0,"last_update":"2026-03-21T20:57:13.966110705Z"} +2026/03/21 20:57:18 [detection_layer] {"stage_name":"detection_layer","events_processed":342,"events_dropped":0,"avg_latency_ms":17.003369936667596,"throughput_eps":0,"last_update":"2026-03-21T20:57:13.966101318Z"} +2026/03/21 20:57:18 ───────────────────────────────────────────────── +2026/03/21 20:57:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:57:23 [log_collector] {"stage_name":"log_collector","events_processed":16070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3214,"last_update":"2026-03-21T20:57:18.869496487Z"} +2026/03/21 20:57:23 [metric_collector] {"stage_name":"metric_collector","events_processed":10289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2057.8,"last_update":"2026-03-21T20:57:18.869774068Z"} +2026/03/21 20:57:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:57:18.878416729Z"} +2026/03/21 20:57:23 [transform_engine] {"stage_name":"transform_engine","events_processed":343,"events_dropped":0,"avg_latency_ms":1020.4960663738215,"throughput_eps":0,"last_update":"2026-03-21T20:57:19.226219465Z"} +2026/03/21 20:57:23 [detection_layer] {"stage_name":"detection_layer","events_processed":342,"events_dropped":0,"avg_latency_ms":17.003369936667596,"throughput_eps":0,"last_update":"2026-03-21T20:57:18.965601271Z"} +2026/03/21 20:57:23 ───────────────────────────────────────────────── +2026/03/21 20:57:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:57:28 [transform_engine] {"stage_name":"transform_engine","events_processed":343,"events_dropped":0,"avg_latency_ms":1020.4960663738215,"throughput_eps":0,"last_update":"2026-03-21T20:57:23.965988223Z"} +2026/03/21 20:57:28 [detection_layer] {"stage_name":"detection_layer","events_processed":343,"events_dropped":0,"avg_latency_ms":17.08343994933408,"throughput_eps":0,"last_update":"2026-03-21T20:57:23.965980808Z"} +2026/03/21 20:57:28 [log_collector] {"stage_name":"log_collector","events_processed":16213,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3242.6,"last_update":"2026-03-21T20:57:23.86993149Z"} +2026/03/21 20:57:28 [metric_collector] {"stage_name":"metric_collector","events_processed":10294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2058.8,"last_update":"2026-03-21T20:57:23.870227086Z"} +2026/03/21 20:57:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:57:23.876786929Z"} +2026/03/21 20:57:28 ───────────────────────────────────────────────── +2026/03/21 20:57:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:57:33 [log_collector] {"stage_name":"log_collector","events_processed":16412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3282.4,"last_update":"2026-03-21T20:57:28.87004751Z"} +2026/03/21 20:57:33 [metric_collector] {"stage_name":"metric_collector","events_processed":10299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2059.8,"last_update":"2026-03-21T20:57:28.870089691Z"} +2026/03/21 20:57:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4122,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:57:28.876633152Z"} +2026/03/21 20:57:33 [transform_engine] {"stage_name":"transform_engine","events_processed":343,"events_dropped":0,"avg_latency_ms":1020.4960663738215,"throughput_eps":0,"last_update":"2026-03-21T20:57:28.965950678Z"} +2026/03/21 20:57:33 [detection_layer] {"stage_name":"detection_layer","events_processed":343,"events_dropped":0,"avg_latency_ms":17.08343994933408,"throughput_eps":0,"last_update":"2026-03-21T20:57:28.965940218Z"} +2026/03/21 20:57:33 ───────────────────────────────────────────────── +Saved state: 12 clusters, 16419 messages, reason: none +2026/03/21 20:57:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:57:38 [detection_layer] {"stage_name":"detection_layer","events_processed":343,"events_dropped":0,"avg_latency_ms":17.08343994933408,"throughput_eps":0,"last_update":"2026-03-21T20:57:33.965396273Z"} +2026/03/21 20:57:38 [log_collector] {"stage_name":"log_collector","events_processed":16418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3283.6,"last_update":"2026-03-21T20:57:33.869403282Z"} +2026/03/21 20:57:38 [metric_collector] {"stage_name":"metric_collector","events_processed":10304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2060.8,"last_update":"2026-03-21T20:57:33.870010234Z"} +2026/03/21 20:57:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:57:33.878190479Z"} +2026/03/21 20:57:38 [transform_engine] {"stage_name":"transform_engine","events_processed":343,"events_dropped":0,"avg_latency_ms":1020.4960663738215,"throughput_eps":0,"last_update":"2026-03-21T20:57:33.965406302Z"} +2026/03/21 20:57:38 ───────────────────────────────────────────────── +2026/03/21 20:57:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:57:43 [log_collector] {"stage_name":"log_collector","events_processed":16421,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3284.2,"last_update":"2026-03-21T20:57:38.869421732Z"} +2026/03/21 20:57:43 [metric_collector] {"stage_name":"metric_collector","events_processed":10309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2061.8,"last_update":"2026-03-21T20:57:38.86990161Z"} +2026/03/21 20:57:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4126,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:57:38.880831603Z"} +2026/03/21 20:57:43 [transform_engine] {"stage_name":"transform_engine","events_processed":343,"events_dropped":0,"avg_latency_ms":1020.4960663738215,"throughput_eps":0,"last_update":"2026-03-21T20:57:38.966045962Z"} +2026/03/21 20:57:43 [detection_layer] {"stage_name":"detection_layer","events_processed":343,"events_dropped":0,"avg_latency_ms":17.08343994933408,"throughput_eps":0,"last_update":"2026-03-21T20:57:38.966017458Z"} +2026/03/21 20:57:43 ───────────────────────────────────────────────── +2026/03/21 20:57:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:57:48 [transform_engine] {"stage_name":"transform_engine","events_processed":343,"events_dropped":0,"avg_latency_ms":1020.4960663738215,"throughput_eps":0,"last_update":"2026-03-21T20:57:43.965936005Z"} +2026/03/21 20:57:48 [detection_layer] {"stage_name":"detection_layer","events_processed":343,"events_dropped":0,"avg_latency_ms":17.08343994933408,"throughput_eps":0,"last_update":"2026-03-21T20:57:43.965963828Z"} +2026/03/21 20:57:48 [log_collector] {"stage_name":"log_collector","events_processed":16421,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3284.2,"last_update":"2026-03-21T20:57:43.870261594Z"} +2026/03/21 20:57:48 [metric_collector] {"stage_name":"metric_collector","events_processed":10314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2062.8,"last_update":"2026-03-21T20:57:43.87057297Z"} +2026/03/21 20:57:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4128,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:57:43.878718449Z"} +2026/03/21 20:57:48 ───────────────────────────────────────────────── +2026/03/21 20:57:49 [ANOMALY] time=2026-03-21T20:57:49Z score=0.8859 method=SEAD details=MAD!:w=0.22,s=0.78 RRCF-fast:w=0.19,s=0.85 RRCF-mid!:w=0.19,s=0.93 RRCF-slow!:w=0.14,s=0.85 COPOD!:w=0.26,s=0.99 +2026/03/21 20:57:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:57:53 [transform_engine] {"stage_name":"transform_engine","events_processed":344,"events_dropped":0,"avg_latency_ms":896.3582290990572,"throughput_eps":0,"last_update":"2026-03-21T20:57:49.365615081Z"} +2026/03/21 20:57:53 [detection_layer] {"stage_name":"detection_layer","events_processed":343,"events_dropped":0,"avg_latency_ms":17.08343994933408,"throughput_eps":0,"last_update":"2026-03-21T20:57:48.965787562Z"} +2026/03/21 20:57:53 [log_collector] {"stage_name":"log_collector","events_processed":16431,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3286.2,"last_update":"2026-03-21T20:57:48.870053927Z"} +2026/03/21 20:57:53 [metric_collector] {"stage_name":"metric_collector","events_processed":10319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2063.8,"last_update":"2026-03-21T20:57:48.87032695Z"} +2026/03/21 20:57:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4130,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:57:48.879328638Z"} +2026/03/21 20:57:53 ───────────────────────────────────────────────── +2026/03/21 20:57:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:57:58 [log_collector] {"stage_name":"log_collector","events_processed":16432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3286.4,"last_update":"2026-03-21T20:57:53.869806714Z"} +2026/03/21 20:57:58 [metric_collector] {"stage_name":"metric_collector","events_processed":10324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2064.8,"last_update":"2026-03-21T20:57:53.870086139Z"} +2026/03/21 20:57:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:57:53.878586929Z"} +2026/03/21 20:57:58 [transform_engine] {"stage_name":"transform_engine","events_processed":344,"events_dropped":0,"avg_latency_ms":896.3582290990572,"throughput_eps":0,"last_update":"2026-03-21T20:57:53.965210577Z"} +2026/03/21 20:57:58 [detection_layer] {"stage_name":"detection_layer","events_processed":344,"events_dropped":0,"avg_latency_ms":17.250066159467263,"throughput_eps":0,"last_update":"2026-03-21T20:57:53.965262857Z"} +2026/03/21 20:57:58 ───────────────────────────────────────────────── +2026/03/21 20:58:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:58:03 [detection_layer] {"stage_name":"detection_layer","events_processed":344,"events_dropped":0,"avg_latency_ms":17.250066159467263,"throughput_eps":0,"last_update":"2026-03-21T20:57:58.965414589Z"} +2026/03/21 20:58:03 [log_collector] {"stage_name":"log_collector","events_processed":16448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3289.6,"last_update":"2026-03-21T20:57:58.870234804Z"} +2026/03/21 20:58:03 [metric_collector] {"stage_name":"metric_collector","events_processed":10329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2065.8,"last_update":"2026-03-21T20:57:58.870560097Z"} +2026/03/21 20:58:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:57:58.879232725Z"} +2026/03/21 20:58:03 [transform_engine] {"stage_name":"transform_engine","events_processed":344,"events_dropped":0,"avg_latency_ms":896.3582290990572,"throughput_eps":0,"last_update":"2026-03-21T20:57:58.965430869Z"} +2026/03/21 20:58:03 ───────────────────────────────────────────────── +2026/03/21 20:58:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:58:08 [log_collector] {"stage_name":"log_collector","events_processed":16448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3289.6,"last_update":"2026-03-21T20:58:03.870043213Z"} +2026/03/21 20:58:08 [metric_collector] {"stage_name":"metric_collector","events_processed":10334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2066.8,"last_update":"2026-03-21T20:58:03.870258766Z"} +2026/03/21 20:58:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:58:03.878788139Z"} +2026/03/21 20:58:08 [transform_engine] {"stage_name":"transform_engine","events_processed":344,"events_dropped":0,"avg_latency_ms":896.3582290990572,"throughput_eps":0,"last_update":"2026-03-21T20:58:03.96605477Z"} +2026/03/21 20:58:08 [detection_layer] {"stage_name":"detection_layer","events_processed":344,"events_dropped":0,"avg_latency_ms":17.250066159467263,"throughput_eps":0,"last_update":"2026-03-21T20:58:03.966037777Z"} +2026/03/21 20:58:08 ───────────────────────────────────────────────── +2026/03/21 20:58:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:58:13 [log_collector] {"stage_name":"log_collector","events_processed":16448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3289.6,"last_update":"2026-03-21T20:58:08.869821689Z"} +2026/03/21 20:58:13 [metric_collector] {"stage_name":"metric_collector","events_processed":10339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2067.8,"last_update":"2026-03-21T20:58:08.870255571Z"} +2026/03/21 20:58:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:58:08.878897871Z"} +2026/03/21 20:58:13 [transform_engine] {"stage_name":"transform_engine","events_processed":344,"events_dropped":0,"avg_latency_ms":896.3582290990572,"throughput_eps":0,"last_update":"2026-03-21T20:58:08.965101405Z"} +2026/03/21 20:58:13 [detection_layer] {"stage_name":"detection_layer","events_processed":344,"events_dropped":0,"avg_latency_ms":17.250066159467263,"throughput_eps":0,"last_update":"2026-03-21T20:58:08.966249244Z"} +2026/03/21 20:58:13 ───────────────────────────────────────────────── +2026/03/21 20:58:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:58:18 [log_collector] {"stage_name":"log_collector","events_processed":16448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3289.6,"last_update":"2026-03-21T20:58:13.870239975Z"} +2026/03/21 20:58:18 [metric_collector] {"stage_name":"metric_collector","events_processed":10344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2068.8,"last_update":"2026-03-21T20:58:13.870815157Z"} +2026/03/21 20:58:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:58:13.87887935Z"} +2026/03/21 20:58:18 [transform_engine] {"stage_name":"transform_engine","events_processed":344,"events_dropped":0,"avg_latency_ms":896.3582290990572,"throughput_eps":0,"last_update":"2026-03-21T20:58:13.966111715Z"} +2026/03/21 20:58:18 [detection_layer] {"stage_name":"detection_layer","events_processed":344,"events_dropped":0,"avg_latency_ms":17.250066159467263,"throughput_eps":0,"last_update":"2026-03-21T20:58:13.966084173Z"} +2026/03/21 20:58:18 ───────────────────────────────────────────────── +2026/03/21 20:58:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:58:23 [transform_engine] {"stage_name":"transform_engine","events_processed":345,"events_dropped":0,"avg_latency_ms":739.6610806792459,"throughput_eps":0,"last_update":"2026-03-21T20:58:19.078066756Z"} +2026/03/21 20:58:23 [detection_layer] {"stage_name":"detection_layer","events_processed":344,"events_dropped":0,"avg_latency_ms":17.250066159467263,"throughput_eps":0,"last_update":"2026-03-21T20:58:18.966341916Z"} +2026/03/21 20:58:23 [log_collector] {"stage_name":"log_collector","events_processed":16448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3289.6,"last_update":"2026-03-21T20:58:18.870064799Z"} +2026/03/21 20:58:23 [metric_collector] {"stage_name":"metric_collector","events_processed":10349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2069.8,"last_update":"2026-03-21T20:58:18.870434017Z"} +2026/03/21 20:58:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:58:18.87900419Z"} +2026/03/21 20:58:23 ───────────────────────────────────────────────── +2026/03/21 20:58:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:58:28 [log_collector] {"stage_name":"log_collector","events_processed":16448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3289.6,"last_update":"2026-03-21T20:58:23.870273448Z"} +2026/03/21 20:58:28 [metric_collector] {"stage_name":"metric_collector","events_processed":10354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2070.8,"last_update":"2026-03-21T20:58:23.870815475Z"} +2026/03/21 20:58:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:58:23.8799243Z"} +2026/03/21 20:58:28 [transform_engine] {"stage_name":"transform_engine","events_processed":345,"events_dropped":0,"avg_latency_ms":739.6610806792459,"throughput_eps":0,"last_update":"2026-03-21T20:58:23.965111068Z"} +2026/03/21 20:58:28 [detection_layer] {"stage_name":"detection_layer","events_processed":345,"events_dropped":0,"avg_latency_ms":17.709445527573813,"throughput_eps":0,"last_update":"2026-03-21T20:58:23.966286609Z"} +2026/03/21 20:58:28 ───────────────────────────────────────────────── +2026/03/21 20:58:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:58:33 [transform_engine] {"stage_name":"transform_engine","events_processed":345,"events_dropped":0,"avg_latency_ms":739.6610806792459,"throughput_eps":0,"last_update":"2026-03-21T20:58:28.965410285Z"} +2026/03/21 20:58:33 [detection_layer] {"stage_name":"detection_layer","events_processed":345,"events_dropped":0,"avg_latency_ms":17.709445527573813,"throughput_eps":0,"last_update":"2026-03-21T20:58:28.965465672Z"} +2026/03/21 20:58:33 [log_collector] {"stage_name":"log_collector","events_processed":16448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3289.6,"last_update":"2026-03-21T20:58:28.870128796Z"} +2026/03/21 20:58:33 [metric_collector] {"stage_name":"metric_collector","events_processed":10359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2071.8,"last_update":"2026-03-21T20:58:28.870285806Z"} +2026/03/21 20:58:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:58:28.88023544Z"} +2026/03/21 20:58:33 ───────────────────────────────────────────────── +2026/03/21 20:58:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:58:38 [log_collector] {"stage_name":"log_collector","events_processed":16448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3289.6,"last_update":"2026-03-21T20:58:33.870341856Z"} +2026/03/21 20:58:38 [metric_collector] {"stage_name":"metric_collector","events_processed":10364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2072.8,"last_update":"2026-03-21T20:58:33.870800445Z"} +2026/03/21 20:58:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:58:33.879208797Z"} +2026/03/21 20:58:38 [transform_engine] {"stage_name":"transform_engine","events_processed":345,"events_dropped":0,"avg_latency_ms":739.6610806792459,"throughput_eps":0,"last_update":"2026-03-21T20:58:33.965405801Z"} +2026/03/21 20:58:38 [detection_layer] {"stage_name":"detection_layer","events_processed":345,"events_dropped":0,"avg_latency_ms":17.709445527573813,"throughput_eps":0,"last_update":"2026-03-21T20:58:33.965371675Z"} +2026/03/21 20:58:38 ───────────────────────────────────────────────── +2026/03/21 20:58:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:58:43 [metric_collector] {"stage_name":"metric_collector","events_processed":10369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2073.8,"last_update":"2026-03-21T20:58:38.869818114Z"} +2026/03/21 20:58:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:58:38.877232243Z"} +2026/03/21 20:58:43 [transform_engine] {"stage_name":"transform_engine","events_processed":345,"events_dropped":0,"avg_latency_ms":739.6610806792459,"throughput_eps":0,"last_update":"2026-03-21T20:58:38.965420578Z"} +2026/03/21 20:58:43 [detection_layer] {"stage_name":"detection_layer","events_processed":345,"events_dropped":0,"avg_latency_ms":17.709445527573813,"throughput_eps":0,"last_update":"2026-03-21T20:58:38.965455325Z"} +2026/03/21 20:58:43 [log_collector] {"stage_name":"log_collector","events_processed":16448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3289.6,"last_update":"2026-03-21T20:58:38.869568486Z"} +2026/03/21 20:58:43 ───────────────────────────────────────────────── +2026/03/21 20:58:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:58:48 [log_collector] {"stage_name":"log_collector","events_processed":16448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3289.6,"last_update":"2026-03-21T20:58:43.869566199Z"} +2026/03/21 20:58:48 [metric_collector] {"stage_name":"metric_collector","events_processed":10374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2074.8,"last_update":"2026-03-21T20:58:43.869947559Z"} +2026/03/21 20:58:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:58:43.878320574Z"} +2026/03/21 20:58:48 [transform_engine] {"stage_name":"transform_engine","events_processed":345,"events_dropped":0,"avg_latency_ms":739.6610806792459,"throughput_eps":0,"last_update":"2026-03-21T20:58:43.965616461Z"} +2026/03/21 20:58:48 [detection_layer] {"stage_name":"detection_layer","events_processed":345,"events_dropped":0,"avg_latency_ms":17.709445527573813,"throughput_eps":0,"last_update":"2026-03-21T20:58:43.965591202Z"} +2026/03/21 20:58:48 ───────────────────────────────────────────────── +2026/03/21 20:58:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:58:53 [transform_engine] {"stage_name":"transform_engine","events_processed":346,"events_dropped":0,"avg_latency_ms":605.9947465433968,"throughput_eps":0,"last_update":"2026-03-21T20:58:49.036547161Z"} +2026/03/21 20:58:53 [detection_layer] {"stage_name":"detection_layer","events_processed":345,"events_dropped":0,"avg_latency_ms":17.709445527573813,"throughput_eps":0,"last_update":"2026-03-21T20:58:48.96630944Z"} +2026/03/21 20:58:53 [log_collector] {"stage_name":"log_collector","events_processed":16448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3289.6,"last_update":"2026-03-21T20:58:48.869503942Z"} +2026/03/21 20:58:53 [metric_collector] {"stage_name":"metric_collector","events_processed":10379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2075.8,"last_update":"2026-03-21T20:58:48.86988435Z"} +2026/03/21 20:58:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:58:48.878033957Z"} +2026/03/21 20:58:53 ───────────────────────────────────────────────── +2026/03/21 20:58:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:58:58 [detection_layer] {"stage_name":"detection_layer","events_processed":346,"events_dropped":0,"avg_latency_ms":18.45800502205905,"throughput_eps":0,"last_update":"2026-03-21T20:58:53.965960666Z"} +2026/03/21 20:58:58 [log_collector] {"stage_name":"log_collector","events_processed":16448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3289.6,"last_update":"2026-03-21T20:58:53.870518788Z"} +2026/03/21 20:58:58 [metric_collector] {"stage_name":"metric_collector","events_processed":10384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2076.8,"last_update":"2026-03-21T20:58:53.870939504Z"} +2026/03/21 20:58:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:58:53.879570082Z"} +2026/03/21 20:58:58 [transform_engine] {"stage_name":"transform_engine","events_processed":346,"events_dropped":0,"avg_latency_ms":605.9947465433968,"throughput_eps":0,"last_update":"2026-03-21T20:58:53.965926762Z"} +2026/03/21 20:58:58 ───────────────────────────────────────────────── +2026/03/21 20:59:03 ── Pipeline Health ────────────────────────────── +2026/03/21 20:59:03 [log_collector] {"stage_name":"log_collector","events_processed":16448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3289.6,"last_update":"2026-03-21T20:58:58.869410314Z"} +2026/03/21 20:59:03 [metric_collector] {"stage_name":"metric_collector","events_processed":10389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2077.8,"last_update":"2026-03-21T20:58:58.869902115Z"} +2026/03/21 20:59:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:58:58.878407284Z"} +2026/03/21 20:59:03 [transform_engine] {"stage_name":"transform_engine","events_processed":346,"events_dropped":0,"avg_latency_ms":605.9947465433968,"throughput_eps":0,"last_update":"2026-03-21T20:58:58.965656693Z"} +2026/03/21 20:59:03 [detection_layer] {"stage_name":"detection_layer","events_processed":346,"events_dropped":0,"avg_latency_ms":18.45800502205905,"throughput_eps":0,"last_update":"2026-03-21T20:58:58.96568677Z"} +2026/03/21 20:59:03 ───────────────────────────────────────────────── +2026/03/21 20:59:08 ── Pipeline Health ────────────────────────────── +2026/03/21 20:59:08 [metric_collector] {"stage_name":"metric_collector","events_processed":10394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2078.8,"last_update":"2026-03-21T20:59:03.870623423Z"} +2026/03/21 20:59:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:59:03.8792694Z"} +2026/03/21 20:59:08 [transform_engine] {"stage_name":"transform_engine","events_processed":346,"events_dropped":0,"avg_latency_ms":605.9947465433968,"throughput_eps":0,"last_update":"2026-03-21T20:59:03.965528683Z"} +2026/03/21 20:59:08 [detection_layer] {"stage_name":"detection_layer","events_processed":346,"events_dropped":0,"avg_latency_ms":18.45800502205905,"throughput_eps":0,"last_update":"2026-03-21T20:59:03.96551123Z"} +2026/03/21 20:59:08 [log_collector] {"stage_name":"log_collector","events_processed":16448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3289.6,"last_update":"2026-03-21T20:59:03.870227034Z"} +2026/03/21 20:59:08 ───────────────────────────────────────────────── +Saved state: 12 clusters, 16449 messages, reason: none +2026/03/21 20:59:13 ── Pipeline Health ────────────────────────────── +2026/03/21 20:59:13 [transform_engine] {"stage_name":"transform_engine","events_processed":346,"events_dropped":0,"avg_latency_ms":605.9947465433968,"throughput_eps":0,"last_update":"2026-03-21T20:59:08.965109243Z"} +2026/03/21 20:59:13 [detection_layer] {"stage_name":"detection_layer","events_processed":346,"events_dropped":0,"avg_latency_ms":18.45800502205905,"throughput_eps":0,"last_update":"2026-03-21T20:59:08.966268623Z"} +2026/03/21 20:59:13 [log_collector] {"stage_name":"log_collector","events_processed":16448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3289.6,"last_update":"2026-03-21T20:59:08.86987896Z"} +2026/03/21 20:59:13 [metric_collector] {"stage_name":"metric_collector","events_processed":10399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2079.8,"last_update":"2026-03-21T20:59:08.869774881Z"} +2026/03/21 20:59:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:59:08.878989578Z"} +2026/03/21 20:59:13 ───────────────────────────────────────────────── +2026/03/21 20:59:18 ── Pipeline Health ────────────────────────────── +2026/03/21 20:59:18 [log_collector] {"stage_name":"log_collector","events_processed":16462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3292.4,"last_update":"2026-03-21T20:59:13.870130131Z"} +2026/03/21 20:59:18 [metric_collector] {"stage_name":"metric_collector","events_processed":10403,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2080.6,"last_update":"2026-03-21T20:59:13.870235783Z"} +2026/03/21 20:59:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:59:13.877200671Z"} +2026/03/21 20:59:18 [transform_engine] {"stage_name":"transform_engine","events_processed":346,"events_dropped":0,"avg_latency_ms":605.9947465433968,"throughput_eps":0,"last_update":"2026-03-21T20:59:13.965473179Z"} +2026/03/21 20:59:18 [detection_layer] {"stage_name":"detection_layer","events_processed":346,"events_dropped":0,"avg_latency_ms":18.45800502205905,"throughput_eps":0,"last_update":"2026-03-21T20:59:13.965392164Z"} +2026/03/21 20:59:18 ───────────────────────────────────────────────── +2026/03/21 20:59:23 ── Pipeline Health ────────────────────────────── +2026/03/21 20:59:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:59:18.879664648Z"} +2026/03/21 20:59:23 [transform_engine] {"stage_name":"transform_engine","events_processed":347,"events_dropped":0,"avg_latency_ms":507.23005663471747,"throughput_eps":0,"last_update":"2026-03-21T20:59:19.078273609Z"} +2026/03/21 20:59:23 [detection_layer] {"stage_name":"detection_layer","events_processed":346,"events_dropped":0,"avg_latency_ms":18.45800502205905,"throughput_eps":0,"last_update":"2026-03-21T20:59:18.966083036Z"} +2026/03/21 20:59:23 [log_collector] {"stage_name":"log_collector","events_processed":16462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3292.4,"last_update":"2026-03-21T20:59:18.870226453Z"} +2026/03/21 20:59:23 [metric_collector] {"stage_name":"metric_collector","events_processed":10408,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2081.6,"last_update":"2026-03-21T20:59:18.870284614Z"} +2026/03/21 20:59:23 ───────────────────────────────────────────────── +2026/03/21 20:59:28 ── Pipeline Health ────────────────────────────── +2026/03/21 20:59:28 [log_collector] {"stage_name":"log_collector","events_processed":16462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3292.4,"last_update":"2026-03-21T20:59:23.869419352Z"} +2026/03/21 20:59:28 [metric_collector] {"stage_name":"metric_collector","events_processed":10414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2082.8,"last_update":"2026-03-21T20:59:23.870091909Z"} +2026/03/21 20:59:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:59:23.877901806Z"} +2026/03/21 20:59:28 [transform_engine] {"stage_name":"transform_engine","events_processed":347,"events_dropped":0,"avg_latency_ms":507.23005663471747,"throughput_eps":0,"last_update":"2026-03-21T20:59:23.966090965Z"} +2026/03/21 20:59:28 [detection_layer] {"stage_name":"detection_layer","events_processed":347,"events_dropped":0,"avg_latency_ms":18.594749617647242,"throughput_eps":0,"last_update":"2026-03-21T20:59:23.966112426Z"} +2026/03/21 20:59:28 ───────────────────────────────────────────────── +2026/03/21 20:59:33 ── Pipeline Health ────────────────────────────── +2026/03/21 20:59:33 [log_collector] {"stage_name":"log_collector","events_processed":16462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3292.4,"last_update":"2026-03-21T20:59:28.869767128Z"} +2026/03/21 20:59:33 [metric_collector] {"stage_name":"metric_collector","events_processed":10419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2083.8,"last_update":"2026-03-21T20:59:28.869758762Z"} +2026/03/21 20:59:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4170,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:59:28.878137047Z"} +2026/03/21 20:59:33 [transform_engine] {"stage_name":"transform_engine","events_processed":347,"events_dropped":0,"avg_latency_ms":507.23005663471747,"throughput_eps":0,"last_update":"2026-03-21T20:59:28.965478103Z"} +2026/03/21 20:59:33 [detection_layer] {"stage_name":"detection_layer","events_processed":347,"events_dropped":0,"avg_latency_ms":18.594749617647242,"throughput_eps":0,"last_update":"2026-03-21T20:59:28.965516175Z"} +2026/03/21 20:59:33 ───────────────────────────────────────────────── +2026/03/21 20:59:38 ── Pipeline Health ────────────────────────────── +2026/03/21 20:59:38 [log_collector] {"stage_name":"log_collector","events_processed":16462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3292.4,"last_update":"2026-03-21T20:59:33.869477042Z"} +2026/03/21 20:59:38 [metric_collector] {"stage_name":"metric_collector","events_processed":10424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2084.8,"last_update":"2026-03-21T20:59:33.870114682Z"} +2026/03/21 20:59:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:59:33.878895318Z"} +2026/03/21 20:59:38 [transform_engine] {"stage_name":"transform_engine","events_processed":347,"events_dropped":0,"avg_latency_ms":507.23005663471747,"throughput_eps":0,"last_update":"2026-03-21T20:59:33.966124058Z"} +2026/03/21 20:59:38 [detection_layer] {"stage_name":"detection_layer","events_processed":347,"events_dropped":0,"avg_latency_ms":18.594749617647242,"throughput_eps":0,"last_update":"2026-03-21T20:59:33.966226584Z"} +2026/03/21 20:59:38 ───────────────────────────────────────────────── +2026/03/21 20:59:43 ── Pipeline Health ────────────────────────────── +2026/03/21 20:59:43 [log_collector] {"stage_name":"log_collector","events_processed":16462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3292.4,"last_update":"2026-03-21T20:59:38.86941178Z"} +2026/03/21 20:59:43 [metric_collector] {"stage_name":"metric_collector","events_processed":10429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2085.8,"last_update":"2026-03-21T20:59:38.870050373Z"} +2026/03/21 20:59:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:59:38.878314309Z"} +2026/03/21 20:59:43 [transform_engine] {"stage_name":"transform_engine","events_processed":347,"events_dropped":0,"avg_latency_ms":507.23005663471747,"throughput_eps":0,"last_update":"2026-03-21T20:59:38.965702594Z"} +2026/03/21 20:59:43 [detection_layer] {"stage_name":"detection_layer","events_processed":347,"events_dropped":0,"avg_latency_ms":18.594749617647242,"throughput_eps":0,"last_update":"2026-03-21T20:59:38.965811283Z"} +2026/03/21 20:59:43 ───────────────────────────────────────────────── +2026/03/21 20:59:48 ── Pipeline Health ────────────────────────────── +2026/03/21 20:59:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:59:43.879099021Z"} +2026/03/21 20:59:48 [transform_engine] {"stage_name":"transform_engine","events_processed":347,"events_dropped":0,"avg_latency_ms":507.23005663471747,"throughput_eps":0,"last_update":"2026-03-21T20:59:43.965230599Z"} +2026/03/21 20:59:48 [detection_layer] {"stage_name":"detection_layer","events_processed":347,"events_dropped":0,"avg_latency_ms":18.594749617647242,"throughput_eps":0,"last_update":"2026-03-21T20:59:43.965286686Z"} +2026/03/21 20:59:48 [log_collector] {"stage_name":"log_collector","events_processed":16462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3292.4,"last_update":"2026-03-21T20:59:43.869450212Z"} +2026/03/21 20:59:48 [metric_collector] {"stage_name":"metric_collector","events_processed":10434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2086.8,"last_update":"2026-03-21T20:59:43.870017809Z"} +2026/03/21 20:59:48 ───────────────────────────────────────────────── +2026/03/21 20:59:53 ── Pipeline Health ────────────────────────────── +2026/03/21 20:59:53 [log_collector] {"stage_name":"log_collector","events_processed":16462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3292.4,"last_update":"2026-03-21T20:59:48.869872356Z"} +2026/03/21 20:59:53 [metric_collector] {"stage_name":"metric_collector","events_processed":10439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2087.8,"last_update":"2026-03-21T20:59:48.870325514Z"} +2026/03/21 20:59:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:59:48.878541278Z"} +2026/03/21 20:59:53 [transform_engine] {"stage_name":"transform_engine","events_processed":347,"events_dropped":0,"avg_latency_ms":507.23005663471747,"throughput_eps":0,"last_update":"2026-03-21T20:59:48.965918524Z"} +2026/03/21 20:59:53 [detection_layer] {"stage_name":"detection_layer","events_processed":347,"events_dropped":0,"avg_latency_ms":18.594749617647242,"throughput_eps":0,"last_update":"2026-03-21T20:59:48.966022793Z"} +2026/03/21 20:59:53 ───────────────────────────────────────────────── +2026/03/21 20:59:58 ── Pipeline Health ────────────────────────────── +2026/03/21 20:59:58 [transform_engine] {"stage_name":"transform_engine","events_processed":348,"events_dropped":0,"avg_latency_ms":422.158545907774,"throughput_eps":0,"last_update":"2026-03-21T20:59:53.965956961Z"} +2026/03/21 20:59:58 [detection_layer] {"stage_name":"detection_layer","events_processed":348,"events_dropped":0,"avg_latency_ms":18.860094094117795,"throughput_eps":0,"last_update":"2026-03-21T20:59:53.965930931Z"} +2026/03/21 20:59:58 [log_collector] {"stage_name":"log_collector","events_processed":16462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3292.4,"last_update":"2026-03-21T20:59:53.869865247Z"} +2026/03/21 20:59:58 [metric_collector] {"stage_name":"metric_collector","events_processed":10444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2088.8,"last_update":"2026-03-21T20:59:53.870334235Z"} +2026/03/21 20:59:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:59:53.878542935Z"} +2026/03/21 20:59:58 ───────────────────────────────────────────────── +2026/03/21 21:00:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:00:03 [transform_engine] {"stage_name":"transform_engine","events_processed":348,"events_dropped":0,"avg_latency_ms":422.158545907774,"throughput_eps":0,"last_update":"2026-03-21T20:59:58.96607234Z"} +2026/03/21 21:00:03 [detection_layer] {"stage_name":"detection_layer","events_processed":348,"events_dropped":0,"avg_latency_ms":18.860094094117795,"throughput_eps":0,"last_update":"2026-03-21T20:59:58.966017585Z"} +2026/03/21 21:00:03 [log_collector] {"stage_name":"log_collector","events_processed":16462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3292.4,"last_update":"2026-03-21T20:59:58.869758159Z"} +2026/03/21 21:00:03 [metric_collector] {"stage_name":"metric_collector","events_processed":10449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2089.8,"last_update":"2026-03-21T20:59:58.870138849Z"} +2026/03/21 21:00:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T20:59:58.878740111Z"} +2026/03/21 21:00:03 ───────────────────────────────────────────────── +2026/03/21 21:00:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:00:08 [log_collector] {"stage_name":"log_collector","events_processed":16462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3292.4,"last_update":"2026-03-21T21:00:03.869908014Z"} +2026/03/21 21:00:08 [metric_collector] {"stage_name":"metric_collector","events_processed":10454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2090.8,"last_update":"2026-03-21T21:00:03.870423862Z"} +2026/03/21 21:00:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:00:03.882126243Z"} +2026/03/21 21:00:08 [transform_engine] {"stage_name":"transform_engine","events_processed":348,"events_dropped":0,"avg_latency_ms":422.158545907774,"throughput_eps":0,"last_update":"2026-03-21T21:00:03.965283658Z"} +2026/03/21 21:00:08 [detection_layer] {"stage_name":"detection_layer","events_processed":348,"events_dropped":0,"avg_latency_ms":18.860094094117795,"throughput_eps":0,"last_update":"2026-03-21T21:00:03.965332421Z"} +2026/03/21 21:00:08 ───────────────────────────────────────────────── +2026/03/21 21:00:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:00:13 [detection_layer] {"stage_name":"detection_layer","events_processed":348,"events_dropped":0,"avg_latency_ms":18.860094094117795,"throughput_eps":0,"last_update":"2026-03-21T21:00:08.965952351Z"} +2026/03/21 21:00:13 [log_collector] {"stage_name":"log_collector","events_processed":16462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3292.4,"last_update":"2026-03-21T21:00:08.870057935Z"} +2026/03/21 21:00:13 [metric_collector] {"stage_name":"metric_collector","events_processed":10459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2091.8,"last_update":"2026-03-21T21:00:08.870330116Z"} +2026/03/21 21:00:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:00:08.878755672Z"} +2026/03/21 21:00:13 [transform_engine] {"stage_name":"transform_engine","events_processed":348,"events_dropped":0,"avg_latency_ms":422.158545907774,"throughput_eps":0,"last_update":"2026-03-21T21:00:08.965990885Z"} +2026/03/21 21:00:13 ───────────────────────────────────────────────── +Saved state: 12 clusters, 16463 messages, reason: none +2026/03/21 21:00:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:00:18 [log_collector] {"stage_name":"log_collector","events_processed":16462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3292.4,"last_update":"2026-03-21T21:00:13.870005724Z"} +2026/03/21 21:00:18 [metric_collector] {"stage_name":"metric_collector","events_processed":10464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2092.8,"last_update":"2026-03-21T21:00:13.870252235Z"} +2026/03/21 21:00:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:00:13.879049594Z"} +2026/03/21 21:00:18 [transform_engine] {"stage_name":"transform_engine","events_processed":348,"events_dropped":0,"avg_latency_ms":422.158545907774,"throughput_eps":0,"last_update":"2026-03-21T21:00:13.965162778Z"} +2026/03/21 21:00:18 [detection_layer] {"stage_name":"detection_layer","events_processed":348,"events_dropped":0,"avg_latency_ms":18.860094094117795,"throughput_eps":0,"last_update":"2026-03-21T21:00:13.966294265Z"} +2026/03/21 21:00:18 ───────────────────────────────────────────────── +2026/03/21 21:00:19 [ANOMALY] time=2026-03-21T21:00:19Z score=0.9098 method=SEAD details=MAD!:w=0.22,s=0.94 RRCF-fast:w=0.19,s=0.88 RRCF-mid!:w=0.19,s=0.91 RRCF-slow!:w=0.14,s=0.95 COPOD!:w=0.25,s=0.88 +2026/03/21 21:00:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:00:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:00:18.876396397Z"} +2026/03/21 21:00:23 [transform_engine] {"stage_name":"transform_engine","events_processed":348,"events_dropped":0,"avg_latency_ms":422.158545907774,"throughput_eps":0,"last_update":"2026-03-21T21:00:18.96553769Z"} +2026/03/21 21:00:23 [detection_layer] {"stage_name":"detection_layer","events_processed":348,"events_dropped":0,"avg_latency_ms":18.860094094117795,"throughput_eps":0,"last_update":"2026-03-21T21:00:18.965835882Z"} +2026/03/21 21:00:23 [log_collector] {"stage_name":"log_collector","events_processed":16467,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3293.4,"last_update":"2026-03-21T21:00:18.869440226Z"} +2026/03/21 21:00:23 [metric_collector] {"stage_name":"metric_collector","events_processed":10469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2093.8,"last_update":"2026-03-21T21:00:18.869799744Z"} +2026/03/21 21:00:23 ───────────────────────────────────────────────── +2026/03/21 21:00:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:00:28 [log_collector] {"stage_name":"log_collector","events_processed":16467,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3293.4,"last_update":"2026-03-21T21:00:23.869487095Z"} +2026/03/21 21:00:28 [metric_collector] {"stage_name":"metric_collector","events_processed":10474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2094.8,"last_update":"2026-03-21T21:00:23.870229327Z"} +2026/03/21 21:00:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:00:23.878022151Z"} +2026/03/21 21:00:28 [transform_engine] {"stage_name":"transform_engine","events_processed":349,"events_dropped":0,"avg_latency_ms":364.0037753262192,"throughput_eps":0,"last_update":"2026-03-21T21:00:23.965125743Z"} +2026/03/21 21:00:28 [detection_layer] {"stage_name":"detection_layer","events_processed":349,"events_dropped":0,"avg_latency_ms":17.419831075294237,"throughput_eps":0,"last_update":"2026-03-21T21:00:23.966262279Z"} +2026/03/21 21:00:28 ───────────────────────────────────────────────── +2026/03/21 21:00:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:00:33 [log_collector] {"stage_name":"log_collector","events_processed":16467,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3293.4,"last_update":"2026-03-21T21:00:28.870015965Z"} +2026/03/21 21:00:33 [metric_collector] {"stage_name":"metric_collector","events_processed":10479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2095.8,"last_update":"2026-03-21T21:00:28.870274541Z"} +2026/03/21 21:00:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:00:28.883313011Z"} +2026/03/21 21:00:33 [transform_engine] {"stage_name":"transform_engine","events_processed":349,"events_dropped":0,"avg_latency_ms":364.0037753262192,"throughput_eps":0,"last_update":"2026-03-21T21:00:28.96550725Z"} +2026/03/21 21:00:33 [detection_layer] {"stage_name":"detection_layer","events_processed":349,"events_dropped":0,"avg_latency_ms":17.419831075294237,"throughput_eps":0,"last_update":"2026-03-21T21:00:28.965491691Z"} +2026/03/21 21:00:33 ───────────────────────────────────────────────── +2026/03/21 21:00:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:00:38 [log_collector] {"stage_name":"log_collector","events_processed":16467,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3293.4,"last_update":"2026-03-21T21:00:33.869526771Z"} +2026/03/21 21:00:38 [metric_collector] {"stage_name":"metric_collector","events_processed":10484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2096.8,"last_update":"2026-03-21T21:00:33.869853467Z"} +2026/03/21 21:00:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:00:33.878538279Z"} +2026/03/21 21:00:38 [transform_engine] {"stage_name":"transform_engine","events_processed":349,"events_dropped":0,"avg_latency_ms":364.0037753262192,"throughput_eps":0,"last_update":"2026-03-21T21:00:33.965768093Z"} +2026/03/21 21:00:38 [detection_layer] {"stage_name":"detection_layer","events_processed":349,"events_dropped":0,"avg_latency_ms":17.419831075294237,"throughput_eps":0,"last_update":"2026-03-21T21:00:33.965754236Z"} +2026/03/21 21:00:38 ───────────────────────────────────────────────── +2026/03/21 21:00:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:00:43 [transform_engine] {"stage_name":"transform_engine","events_processed":349,"events_dropped":0,"avg_latency_ms":364.0037753262192,"throughput_eps":0,"last_update":"2026-03-21T21:00:38.965454991Z"} +2026/03/21 21:00:43 [detection_layer] {"stage_name":"detection_layer","events_processed":349,"events_dropped":0,"avg_latency_ms":17.419831075294237,"throughput_eps":0,"last_update":"2026-03-21T21:00:38.965443208Z"} +2026/03/21 21:00:43 [log_collector] {"stage_name":"log_collector","events_processed":16467,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3293.4,"last_update":"2026-03-21T21:00:38.86966276Z"} +2026/03/21 21:00:43 [metric_collector] {"stage_name":"metric_collector","events_processed":10489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2097.8,"last_update":"2026-03-21T21:00:38.869896347Z"} +2026/03/21 21:00:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:00:38.877279717Z"} +2026/03/21 21:00:43 ───────────────────────────────────────────────── +2026/03/21 21:00:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:00:48 [detection_layer] {"stage_name":"detection_layer","events_processed":349,"events_dropped":0,"avg_latency_ms":17.419831075294237,"throughput_eps":0,"last_update":"2026-03-21T21:00:43.965282876Z"} +2026/03/21 21:00:48 [log_collector] {"stage_name":"log_collector","events_processed":16467,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3293.4,"last_update":"2026-03-21T21:00:43.869641103Z"} +2026/03/21 21:00:48 [metric_collector] {"stage_name":"metric_collector","events_processed":10494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2098.8,"last_update":"2026-03-21T21:00:43.870107195Z"} +2026/03/21 21:00:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:00:43.879114846Z"} +2026/03/21 21:00:48 [transform_engine] {"stage_name":"transform_engine","events_processed":349,"events_dropped":0,"avg_latency_ms":364.0037753262192,"throughput_eps":0,"last_update":"2026-03-21T21:00:43.965292103Z"} +2026/03/21 21:00:48 ───────────────────────────────────────────────── +2026/03/21 21:00:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:00:53 [transform_engine] {"stage_name":"transform_engine","events_processed":350,"events_dropped":0,"avg_latency_ms":341.1256110609754,"throughput_eps":0,"last_update":"2026-03-21T21:00:49.215106433Z"} +2026/03/21 21:00:53 [detection_layer] {"stage_name":"detection_layer","events_processed":349,"events_dropped":0,"avg_latency_ms":17.419831075294237,"throughput_eps":0,"last_update":"2026-03-21T21:00:48.965474974Z"} +2026/03/21 21:00:53 [log_collector] {"stage_name":"log_collector","events_processed":16467,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3293.4,"last_update":"2026-03-21T21:00:53.869682829Z"} +2026/03/21 21:00:53 [metric_collector] {"stage_name":"metric_collector","events_processed":10499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2099.8,"last_update":"2026-03-21T21:00:48.869610084Z"} +2026/03/21 21:00:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:00:48.88027091Z"} +2026/03/21 21:00:53 ───────────────────────────────────────────────── +2026/03/21 21:00:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:00:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:00:53.881418724Z"} +2026/03/21 21:00:58 [transform_engine] {"stage_name":"transform_engine","events_processed":350,"events_dropped":0,"avg_latency_ms":341.1256110609754,"throughput_eps":0,"last_update":"2026-03-21T21:00:53.965614407Z"} +2026/03/21 21:00:58 [detection_layer] {"stage_name":"detection_layer","events_processed":350,"events_dropped":0,"avg_latency_ms":16.349561460235392,"throughput_eps":0,"last_update":"2026-03-21T21:00:53.965633204Z"} +2026/03/21 21:00:58 [log_collector] {"stage_name":"log_collector","events_processed":16476,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3295.2,"last_update":"2026-03-21T21:00:58.870245908Z"} +2026/03/21 21:00:58 [metric_collector] {"stage_name":"metric_collector","events_processed":10504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2100.8,"last_update":"2026-03-21T21:00:53.87003883Z"} +2026/03/21 21:00:58 ───────────────────────────────────────────────── +2026/03/21 21:01:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:01:03 [log_collector] {"stage_name":"log_collector","events_processed":16476,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3295.2,"last_update":"2026-03-21T21:00:58.870245908Z"} +2026/03/21 21:01:03 [metric_collector] {"stage_name":"metric_collector","events_processed":10509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2101.8,"last_update":"2026-03-21T21:00:58.870386067Z"} +2026/03/21 21:01:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4206,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:00:58.878190854Z"} +2026/03/21 21:01:03 [transform_engine] {"stage_name":"transform_engine","events_processed":350,"events_dropped":0,"avg_latency_ms":341.1256110609754,"throughput_eps":0,"last_update":"2026-03-21T21:00:58.965428914Z"} +2026/03/21 21:01:03 [detection_layer] {"stage_name":"detection_layer","events_processed":350,"events_dropped":0,"avg_latency_ms":16.349561460235392,"throughput_eps":0,"last_update":"2026-03-21T21:00:58.965393235Z"} +2026/03/21 21:01:03 ───────────────────────────────────────────────── +2026/03/21 21:01:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:01:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:01:03.880579718Z"} +2026/03/21 21:01:08 [transform_engine] {"stage_name":"transform_engine","events_processed":350,"events_dropped":0,"avg_latency_ms":341.1256110609754,"throughput_eps":0,"last_update":"2026-03-21T21:01:03.965860128Z"} +2026/03/21 21:01:08 [detection_layer] {"stage_name":"detection_layer","events_processed":350,"events_dropped":0,"avg_latency_ms":16.349561460235392,"throughput_eps":0,"last_update":"2026-03-21T21:01:03.96580881Z"} +2026/03/21 21:01:08 [log_collector] {"stage_name":"log_collector","events_processed":16478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3295.6,"last_update":"2026-03-21T21:01:03.869433512Z"} +2026/03/21 21:01:08 [metric_collector] {"stage_name":"metric_collector","events_processed":10514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2102.8,"last_update":"2026-03-21T21:01:03.869964548Z"} +2026/03/21 21:01:08 ───────────────────────────────────────────────── +2026/03/21 21:01:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:01:13 [transform_engine] {"stage_name":"transform_engine","events_processed":350,"events_dropped":0,"avg_latency_ms":341.1256110609754,"throughput_eps":0,"last_update":"2026-03-21T21:01:08.965892915Z"} +2026/03/21 21:01:13 [detection_layer] {"stage_name":"detection_layer","events_processed":350,"events_dropped":0,"avg_latency_ms":16.349561460235392,"throughput_eps":0,"last_update":"2026-03-21T21:01:08.965935116Z"} +2026/03/21 21:01:13 [log_collector] {"stage_name":"log_collector","events_processed":16555,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3311,"last_update":"2026-03-21T21:01:08.869508098Z"} +2026/03/21 21:01:13 [metric_collector] {"stage_name":"metric_collector","events_processed":10519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2103.8,"last_update":"2026-03-21T21:01:08.869715956Z"} +2026/03/21 21:01:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4210,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:01:08.87653225Z"} +2026/03/21 21:01:13 ───────────────────────────────────────────────── +Saved state: 12 clusters, 16812 messages, reason: none +2026/03/21 21:01:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:01:18 [metric_collector] {"stage_name":"metric_collector","events_processed":10524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2104.8,"last_update":"2026-03-21T21:01:13.869867988Z"} +2026/03/21 21:01:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:01:13.879192074Z"} +2026/03/21 21:01:18 [transform_engine] {"stage_name":"transform_engine","events_processed":350,"events_dropped":0,"avg_latency_ms":341.1256110609754,"throughput_eps":0,"last_update":"2026-03-21T21:01:13.965444256Z"} +2026/03/21 21:01:18 [detection_layer] {"stage_name":"detection_layer","events_processed":350,"events_dropped":0,"avg_latency_ms":16.349561460235392,"throughput_eps":0,"last_update":"2026-03-21T21:01:13.965434346Z"} +2026/03/21 21:01:18 [log_collector] {"stage_name":"log_collector","events_processed":16826,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3365.2,"last_update":"2026-03-21T21:01:18.869641388Z"} +2026/03/21 21:01:18 ───────────────────────────────────────────────── +2026/03/21 21:01:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:01:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:01:18.876392247Z"} +2026/03/21 21:01:23 [transform_engine] {"stage_name":"transform_engine","events_processed":351,"events_dropped":0,"avg_latency_ms":295.33762824878033,"throughput_eps":0,"last_update":"2026-03-21T21:01:19.077856Z"} +2026/03/21 21:01:23 [detection_layer] {"stage_name":"detection_layer","events_processed":350,"events_dropped":0,"avg_latency_ms":16.349561460235392,"throughput_eps":0,"last_update":"2026-03-21T21:01:18.965623734Z"} +2026/03/21 21:01:23 [log_collector] {"stage_name":"log_collector","events_processed":16826,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3365.2,"last_update":"2026-03-21T21:01:23.869959136Z"} +2026/03/21 21:01:23 [metric_collector] {"stage_name":"metric_collector","events_processed":10529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2105.8,"last_update":"2026-03-21T21:01:18.869820361Z"} +2026/03/21 21:01:23 ───────────────────────────────────────────────── +2026/03/21 21:01:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:01:28 [log_collector] {"stage_name":"log_collector","events_processed":16826,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3365.2,"last_update":"2026-03-21T21:01:23.869959136Z"} +2026/03/21 21:01:28 [metric_collector] {"stage_name":"metric_collector","events_processed":10534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2106.8,"last_update":"2026-03-21T21:01:23.870425148Z"} +2026/03/21 21:01:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:01:23.87783038Z"} +2026/03/21 21:01:28 [transform_engine] {"stage_name":"transform_engine","events_processed":351,"events_dropped":0,"avg_latency_ms":295.33762824878033,"throughput_eps":0,"last_update":"2026-03-21T21:01:23.966028939Z"} +2026/03/21 21:01:28 [detection_layer] {"stage_name":"detection_layer","events_processed":351,"events_dropped":0,"avg_latency_ms":16.056802768188316,"throughput_eps":0,"last_update":"2026-03-21T21:01:23.96601905Z"} +2026/03/21 21:01:28 ───────────────────────────────────────────────── +2026/03/21 21:01:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:01:33 [metric_collector] {"stage_name":"metric_collector","events_processed":10539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2107.8,"last_update":"2026-03-21T21:01:28.871043587Z"} +2026/03/21 21:01:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:01:28.879212882Z"} +2026/03/21 21:01:33 [transform_engine] {"stage_name":"transform_engine","events_processed":351,"events_dropped":0,"avg_latency_ms":295.33762824878033,"throughput_eps":0,"last_update":"2026-03-21T21:01:28.965480904Z"} +2026/03/21 21:01:33 [detection_layer] {"stage_name":"detection_layer","events_processed":351,"events_dropped":0,"avg_latency_ms":16.056802768188316,"throughput_eps":0,"last_update":"2026-03-21T21:01:28.965469713Z"} +2026/03/21 21:01:33 [log_collector] {"stage_name":"log_collector","events_processed":16826,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3365.2,"last_update":"2026-03-21T21:01:33.869462649Z"} +2026/03/21 21:01:33 ───────────────────────────────────────────────── +2026/03/21 21:01:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:01:38 [log_collector] {"stage_name":"log_collector","events_processed":16829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3365.8,"last_update":"2026-03-21T21:01:38.86940292Z"} +2026/03/21 21:01:38 [metric_collector] {"stage_name":"metric_collector","events_processed":10544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2108.8,"last_update":"2026-03-21T21:01:33.869699824Z"} +2026/03/21 21:01:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:01:33.876437106Z"} +2026/03/21 21:01:38 [transform_engine] {"stage_name":"transform_engine","events_processed":351,"events_dropped":0,"avg_latency_ms":295.33762824878033,"throughput_eps":0,"last_update":"2026-03-21T21:01:33.96566139Z"} +2026/03/21 21:01:38 [detection_layer] {"stage_name":"detection_layer","events_processed":351,"events_dropped":0,"avg_latency_ms":16.056802768188316,"throughput_eps":0,"last_update":"2026-03-21T21:01:33.965638746Z"} +2026/03/21 21:01:38 ───────────────────────────────────────────────── +2026/03/21 21:01:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:01:43 [log_collector] {"stage_name":"log_collector","events_processed":16829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3365.8,"last_update":"2026-03-21T21:01:38.86940292Z"} +2026/03/21 21:01:43 [metric_collector] {"stage_name":"metric_collector","events_processed":10549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2109.8,"last_update":"2026-03-21T21:01:38.869620757Z"} +2026/03/21 21:01:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4222,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:01:38.879013515Z"} +2026/03/21 21:01:43 [transform_engine] {"stage_name":"transform_engine","events_processed":351,"events_dropped":0,"avg_latency_ms":295.33762824878033,"throughput_eps":0,"last_update":"2026-03-21T21:01:38.96509967Z"} +2026/03/21 21:01:43 [detection_layer] {"stage_name":"detection_layer","events_processed":351,"events_dropped":0,"avg_latency_ms":16.056802768188316,"throughput_eps":0,"last_update":"2026-03-21T21:01:38.966200568Z"} +2026/03/21 21:01:43 ───────────────────────────────────────────────── +2026/03/21 21:01:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:01:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:01:43.8762742Z"} +2026/03/21 21:01:48 [transform_engine] {"stage_name":"transform_engine","events_processed":351,"events_dropped":0,"avg_latency_ms":295.33762824878033,"throughput_eps":0,"last_update":"2026-03-21T21:01:43.965493174Z"} +2026/03/21 21:01:48 [detection_layer] {"stage_name":"detection_layer","events_processed":351,"events_dropped":0,"avg_latency_ms":16.056802768188316,"throughput_eps":0,"last_update":"2026-03-21T21:01:43.965480339Z"} +2026/03/21 21:01:48 [log_collector] {"stage_name":"log_collector","events_processed":16840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3368,"last_update":"2026-03-21T21:01:48.869395141Z"} +2026/03/21 21:01:48 [metric_collector] {"stage_name":"metric_collector","events_processed":10554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2110.8,"last_update":"2026-03-21T21:01:43.869739355Z"} +2026/03/21 21:01:48 ───────────────────────────────────────────────── +2026/03/21 21:01:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:01:53 [metric_collector] {"stage_name":"metric_collector","events_processed":10559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2111.8,"last_update":"2026-03-21T21:01:48.869798584Z"} +2026/03/21 21:01:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:01:48.878001724Z"} +2026/03/21 21:01:53 [transform_engine] {"stage_name":"transform_engine","events_processed":352,"events_dropped":0,"avg_latency_ms":259.0246501990243,"throughput_eps":0,"last_update":"2026-03-21T21:01:49.078971524Z"} +2026/03/21 21:01:53 [detection_layer] {"stage_name":"detection_layer","events_processed":351,"events_dropped":0,"avg_latency_ms":16.056802768188316,"throughput_eps":0,"last_update":"2026-03-21T21:01:48.965303326Z"} +2026/03/21 21:01:53 [log_collector] {"stage_name":"log_collector","events_processed":16840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3368,"last_update":"2026-03-21T21:01:48.869395141Z"} +2026/03/21 21:01:53 ───────────────────────────────────────────────── +2026/03/21 21:01:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:01:58 [metric_collector] {"stage_name":"metric_collector","events_processed":10564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2112.8,"last_update":"2026-03-21T21:01:53.869827891Z"} +2026/03/21 21:01:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:01:53.877055964Z"} +2026/03/21 21:01:58 [transform_engine] {"stage_name":"transform_engine","events_processed":352,"events_dropped":0,"avg_latency_ms":259.0246501990243,"throughput_eps":0,"last_update":"2026-03-21T21:01:53.966095534Z"} +2026/03/21 21:01:58 [detection_layer] {"stage_name":"detection_layer","events_processed":352,"events_dropped":0,"avg_latency_ms":16.695034614550654,"throughput_eps":0,"last_update":"2026-03-21T21:01:53.966083431Z"} +2026/03/21 21:01:58 [log_collector] {"stage_name":"log_collector","events_processed":16856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3371.2,"last_update":"2026-03-21T21:01:58.869408453Z"} +2026/03/21 21:01:58 ───────────────────────────────────────────────── +2026/03/21 21:02:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:02:03 [log_collector] {"stage_name":"log_collector","events_processed":16856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3371.2,"last_update":"2026-03-21T21:02:03.869420688Z"} +2026/03/21 21:02:03 [metric_collector] {"stage_name":"metric_collector","events_processed":10569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2113.8,"last_update":"2026-03-21T21:01:58.869811625Z"} +2026/03/21 21:02:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:01:58.878913276Z"} +2026/03/21 21:02:03 [transform_engine] {"stage_name":"transform_engine","events_processed":352,"events_dropped":0,"avg_latency_ms":259.0246501990243,"throughput_eps":0,"last_update":"2026-03-21T21:01:58.965113188Z"} +2026/03/21 21:02:03 [detection_layer] {"stage_name":"detection_layer","events_processed":352,"events_dropped":0,"avg_latency_ms":16.695034614550654,"throughput_eps":0,"last_update":"2026-03-21T21:01:58.966287738Z"} +2026/03/21 21:02:03 ───────────────────────────────────────────────── +2026/03/21 21:02:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:02:08 [metric_collector] {"stage_name":"metric_collector","events_processed":10574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2114.8,"last_update":"2026-03-21T21:02:03.870023011Z"} +2026/03/21 21:02:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:02:03.876582804Z"} +2026/03/21 21:02:08 [transform_engine] {"stage_name":"transform_engine","events_processed":352,"events_dropped":0,"avg_latency_ms":259.0246501990243,"throughput_eps":0,"last_update":"2026-03-21T21:02:03.965796278Z"} +2026/03/21 21:02:08 [detection_layer] {"stage_name":"detection_layer","events_processed":352,"events_dropped":0,"avg_latency_ms":16.695034614550654,"throughput_eps":0,"last_update":"2026-03-21T21:02:03.965787Z"} +2026/03/21 21:02:08 [log_collector] {"stage_name":"log_collector","events_processed":16856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3371.2,"last_update":"2026-03-21T21:02:03.869420688Z"} +2026/03/21 21:02:08 ───────────────────────────────────────────────── +2026/03/21 21:02:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:02:13 [detection_layer] {"stage_name":"detection_layer","events_processed":352,"events_dropped":0,"avg_latency_ms":16.695034614550654,"throughput_eps":0,"last_update":"2026-03-21T21:02:08.965904111Z"} +2026/03/21 21:02:13 [log_collector] {"stage_name":"log_collector","events_processed":16856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3371.2,"last_update":"2026-03-21T21:02:13.869434622Z"} +2026/03/21 21:02:13 [metric_collector] {"stage_name":"metric_collector","events_processed":10579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2115.8,"last_update":"2026-03-21T21:02:08.870574233Z"} +2026/03/21 21:02:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:02:08.879656567Z"} +2026/03/21 21:02:13 [transform_engine] {"stage_name":"transform_engine","events_processed":352,"events_dropped":0,"avg_latency_ms":259.0246501990243,"throughput_eps":0,"last_update":"2026-03-21T21:02:08.965916985Z"} +2026/03/21 21:02:13 ───────────────────────────────────────────────── +2026/03/21 21:02:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:02:18 [detection_layer] {"stage_name":"detection_layer","events_processed":352,"events_dropped":0,"avg_latency_ms":16.695034614550654,"throughput_eps":0,"last_update":"2026-03-21T21:02:13.965963786Z"} +2026/03/21 21:02:18 [log_collector] {"stage_name":"log_collector","events_processed":16856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3371.2,"last_update":"2026-03-21T21:02:18.870437469Z"} +2026/03/21 21:02:18 [metric_collector] {"stage_name":"metric_collector","events_processed":10584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2116.8,"last_update":"2026-03-21T21:02:13.869985677Z"} +2026/03/21 21:02:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:02:13.879422611Z"} +2026/03/21 21:02:18 [transform_engine] {"stage_name":"transform_engine","events_processed":352,"events_dropped":0,"avg_latency_ms":259.0246501990243,"throughput_eps":0,"last_update":"2026-03-21T21:02:13.965975549Z"} +2026/03/21 21:02:18 ───────────────────────────────────────────────── +2026/03/21 21:02:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:02:23 [metric_collector] {"stage_name":"metric_collector","events_processed":10589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2117.8,"last_update":"2026-03-21T21:02:18.871000737Z"} +2026/03/21 21:02:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:02:18.879341521Z"} +2026/03/21 21:02:23 [transform_engine] {"stage_name":"transform_engine","events_processed":353,"events_dropped":0,"avg_latency_ms":230.29208655921943,"throughput_eps":0,"last_update":"2026-03-21T21:02:19.08110949Z"} +2026/03/21 21:02:23 [detection_layer] {"stage_name":"detection_layer","events_processed":352,"events_dropped":0,"avg_latency_ms":16.695034614550654,"throughput_eps":0,"last_update":"2026-03-21T21:02:18.965733993Z"} +2026/03/21 21:02:23 [log_collector] {"stage_name":"log_collector","events_processed":16856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3371.2,"last_update":"2026-03-21T21:02:18.870437469Z"} +2026/03/21 21:02:23 ───────────────────────────────────────────────── +2026/03/21 21:02:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:02:28 [log_collector] {"stage_name":"log_collector","events_processed":16856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3371.2,"last_update":"2026-03-21T21:02:23.86964403Z"} +2026/03/21 21:02:28 [metric_collector] {"stage_name":"metric_collector","events_processed":10594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2118.8,"last_update":"2026-03-21T21:02:23.869988169Z"} +2026/03/21 21:02:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:02:23.878069215Z"} +2026/03/21 21:02:28 [transform_engine] {"stage_name":"transform_engine","events_processed":353,"events_dropped":0,"avg_latency_ms":230.29208655921943,"throughput_eps":0,"last_update":"2026-03-21T21:02:23.965321273Z"} +2026/03/21 21:02:28 [detection_layer] {"stage_name":"detection_layer","events_processed":353,"events_dropped":0,"avg_latency_ms":17.327297091640524,"throughput_eps":0,"last_update":"2026-03-21T21:02:23.965336693Z"} +2026/03/21 21:02:28 ───────────────────────────────────────────────── +2026/03/21 21:02:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:02:33 [transform_engine] {"stage_name":"transform_engine","events_processed":353,"events_dropped":0,"avg_latency_ms":230.29208655921943,"throughput_eps":0,"last_update":"2026-03-21T21:02:28.965772544Z"} +2026/03/21 21:02:33 [detection_layer] {"stage_name":"detection_layer","events_processed":353,"events_dropped":0,"avg_latency_ms":17.327297091640524,"throughput_eps":0,"last_update":"2026-03-21T21:02:28.965754619Z"} +2026/03/21 21:02:33 [log_collector] {"stage_name":"log_collector","events_processed":16856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3371.2,"last_update":"2026-03-21T21:02:33.869422702Z"} +2026/03/21 21:02:33 [metric_collector] {"stage_name":"metric_collector","events_processed":10599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2119.8,"last_update":"2026-03-21T21:02:28.87017898Z"} +2026/03/21 21:02:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:02:28.87845538Z"} +2026/03/21 21:02:33 ───────────────────────────────────────────────── +2026/03/21 21:02:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:02:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:02:33.878399425Z"} +2026/03/21 21:02:38 [transform_engine] {"stage_name":"transform_engine","events_processed":353,"events_dropped":0,"avg_latency_ms":230.29208655921943,"throughput_eps":0,"last_update":"2026-03-21T21:02:33.965717299Z"} +2026/03/21 21:02:38 [detection_layer] {"stage_name":"detection_layer","events_processed":353,"events_dropped":0,"avg_latency_ms":17.327297091640524,"throughput_eps":0,"last_update":"2026-03-21T21:02:33.965701158Z"} +2026/03/21 21:02:38 [log_collector] {"stage_name":"log_collector","events_processed":16856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3371.2,"last_update":"2026-03-21T21:02:33.869422702Z"} +2026/03/21 21:02:38 [metric_collector] {"stage_name":"metric_collector","events_processed":10604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2120.8,"last_update":"2026-03-21T21:02:33.870244366Z"} +2026/03/21 21:02:38 ───────────────────────────────────────────────── +2026/03/21 21:02:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:02:43 [log_collector] {"stage_name":"log_collector","events_processed":16856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3371.2,"last_update":"2026-03-21T21:02:43.870070557Z"} +2026/03/21 21:02:43 [metric_collector] {"stage_name":"metric_collector","events_processed":10609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2121.8,"last_update":"2026-03-21T21:02:38.870642904Z"} +2026/03/21 21:02:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4246,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:02:38.878428785Z"} +2026/03/21 21:02:43 [transform_engine] {"stage_name":"transform_engine","events_processed":353,"events_dropped":0,"avg_latency_ms":230.29208655921943,"throughput_eps":0,"last_update":"2026-03-21T21:02:38.965709328Z"} +2026/03/21 21:02:43 [detection_layer] {"stage_name":"detection_layer","events_processed":353,"events_dropped":0,"avg_latency_ms":17.327297091640524,"throughput_eps":0,"last_update":"2026-03-21T21:02:38.965701714Z"} +2026/03/21 21:02:43 ───────────────────────────────────────────────── +2026/03/21 21:02:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:02:48 [transform_engine] {"stage_name":"transform_engine","events_processed":353,"events_dropped":0,"avg_latency_ms":230.29208655921943,"throughput_eps":0,"last_update":"2026-03-21T21:02:43.965566514Z"} +2026/03/21 21:02:48 [detection_layer] {"stage_name":"detection_layer","events_processed":353,"events_dropped":0,"avg_latency_ms":17.327297091640524,"throughput_eps":0,"last_update":"2026-03-21T21:02:43.965553129Z"} +2026/03/21 21:02:48 [log_collector] {"stage_name":"log_collector","events_processed":16856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3371.2,"last_update":"2026-03-21T21:02:48.869887632Z"} +2026/03/21 21:02:48 [metric_collector] {"stage_name":"metric_collector","events_processed":10614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2122.8,"last_update":"2026-03-21T21:02:43.870326468Z"} +2026/03/21 21:02:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:02:43.879234157Z"} +2026/03/21 21:02:48 ───────────────────────────────────────────────── +2026/03/21 21:02:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:02:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:02:48.877093963Z"} +2026/03/21 21:02:53 [transform_engine] {"stage_name":"transform_engine","events_processed":354,"events_dropped":0,"avg_latency_ms":199.58689664737557,"throughput_eps":0,"last_update":"2026-03-21T21:02:49.042077297Z"} +2026/03/21 21:02:53 [detection_layer] {"stage_name":"detection_layer","events_processed":353,"events_dropped":0,"avg_latency_ms":17.327297091640524,"throughput_eps":0,"last_update":"2026-03-21T21:02:48.965297925Z"} +2026/03/21 21:02:53 [log_collector] {"stage_name":"log_collector","events_processed":16856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3371.2,"last_update":"2026-03-21T21:02:48.869887632Z"} +2026/03/21 21:02:53 [metric_collector] {"stage_name":"metric_collector","events_processed":10619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2123.8,"last_update":"2026-03-21T21:02:48.870133333Z"} +2026/03/21 21:02:53 ───────────────────────────────────────────────── +Saved state: 12 clusters, 16857 messages, reason: none +2026/03/21 21:02:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:02:58 [transform_engine] {"stage_name":"transform_engine","events_processed":354,"events_dropped":0,"avg_latency_ms":199.58689664737557,"throughput_eps":0,"last_update":"2026-03-21T21:02:53.965713049Z"} +2026/03/21 21:02:58 [detection_layer] {"stage_name":"detection_layer","events_processed":354,"events_dropped":0,"avg_latency_ms":17.06361327331242,"throughput_eps":0,"last_update":"2026-03-21T21:02:53.965696697Z"} +2026/03/21 21:02:58 [log_collector] {"stage_name":"log_collector","events_processed":16856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3371.2,"last_update":"2026-03-21T21:02:53.870268651Z"} +2026/03/21 21:02:58 [metric_collector] {"stage_name":"metric_collector","events_processed":10624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2124.8,"last_update":"2026-03-21T21:02:53.870767607Z"} +2026/03/21 21:02:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:02:53.879280449Z"} +2026/03/21 21:02:58 ───────────────────────────────────────────────── +2026/03/21 21:03:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:03:03 [log_collector] {"stage_name":"log_collector","events_processed":16870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3374,"last_update":"2026-03-21T21:02:58.869831516Z"} +2026/03/21 21:03:03 [metric_collector] {"stage_name":"metric_collector","events_processed":10629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2125.8,"last_update":"2026-03-21T21:02:58.870241952Z"} +2026/03/21 21:03:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:02:58.879026506Z"} +2026/03/21 21:03:03 [transform_engine] {"stage_name":"transform_engine","events_processed":354,"events_dropped":0,"avg_latency_ms":199.58689664737557,"throughput_eps":0,"last_update":"2026-03-21T21:02:58.965144052Z"} +2026/03/21 21:03:03 [detection_layer] {"stage_name":"detection_layer","events_processed":354,"events_dropped":0,"avg_latency_ms":17.06361327331242,"throughput_eps":0,"last_update":"2026-03-21T21:02:58.96631764Z"} +2026/03/21 21:03:03 ───────────────────────────────────────────────── +2026/03/21 21:03:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:03:08 [detection_layer] {"stage_name":"detection_layer","events_processed":354,"events_dropped":0,"avg_latency_ms":17.06361327331242,"throughput_eps":0,"last_update":"2026-03-21T21:03:03.965391564Z"} +2026/03/21 21:03:08 [log_collector] {"stage_name":"log_collector","events_processed":16870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3374,"last_update":"2026-03-21T21:03:03.870381177Z"} +2026/03/21 21:03:08 [metric_collector] {"stage_name":"metric_collector","events_processed":10634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2126.8,"last_update":"2026-03-21T21:03:03.870803626Z"} +2026/03/21 21:03:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:03:03.880217635Z"} +2026/03/21 21:03:08 [transform_engine] {"stage_name":"transform_engine","events_processed":354,"events_dropped":0,"avg_latency_ms":199.58689664737557,"throughput_eps":0,"last_update":"2026-03-21T21:03:03.965404609Z"} +2026/03/21 21:03:08 ───────────────────────────────────────────────── +2026/03/21 21:03:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:03:13 [metric_collector] {"stage_name":"metric_collector","events_processed":10639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2127.8,"last_update":"2026-03-21T21:03:08.870687627Z"} +2026/03/21 21:03:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:03:08.878203792Z"} +2026/03/21 21:03:13 [transform_engine] {"stage_name":"transform_engine","events_processed":354,"events_dropped":0,"avg_latency_ms":199.58689664737557,"throughput_eps":0,"last_update":"2026-03-21T21:03:08.965394082Z"} +2026/03/21 21:03:13 [detection_layer] {"stage_name":"detection_layer","events_processed":354,"events_dropped":0,"avg_latency_ms":17.06361327331242,"throughput_eps":0,"last_update":"2026-03-21T21:03:08.96538297Z"} +2026/03/21 21:03:13 [log_collector] {"stage_name":"log_collector","events_processed":16870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3374,"last_update":"2026-03-21T21:03:08.870384486Z"} +2026/03/21 21:03:13 ───────────────────────────────────────────────── +2026/03/21 21:03:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:03:18 [metric_collector] {"stage_name":"metric_collector","events_processed":10644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2128.8,"last_update":"2026-03-21T21:03:13.869922959Z"} +2026/03/21 21:03:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:03:13.878180243Z"} +2026/03/21 21:03:18 [transform_engine] {"stage_name":"transform_engine","events_processed":354,"events_dropped":0,"avg_latency_ms":199.58689664737557,"throughput_eps":0,"last_update":"2026-03-21T21:03:13.965524479Z"} +2026/03/21 21:03:18 [detection_layer] {"stage_name":"detection_layer","events_processed":354,"events_dropped":0,"avg_latency_ms":17.06361327331242,"throughput_eps":0,"last_update":"2026-03-21T21:03:13.965509Z"} +2026/03/21 21:03:18 [log_collector] {"stage_name":"log_collector","events_processed":16870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3374,"last_update":"2026-03-21T21:03:13.8697095Z"} +2026/03/21 21:03:18 ───────────────────────────────────────────────── +2026/03/21 21:03:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:03:23 [metric_collector] {"stage_name":"metric_collector","events_processed":10649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2129.8,"last_update":"2026-03-21T21:03:18.870071384Z"} +2026/03/21 21:03:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:03:18.879198634Z"} +2026/03/21 21:03:23 [transform_engine] {"stage_name":"transform_engine","events_processed":355,"events_dropped":0,"avg_latency_ms":182.15759671790047,"throughput_eps":0,"last_update":"2026-03-21T21:03:19.077852953Z"} +2026/03/21 21:03:23 [detection_layer] {"stage_name":"detection_layer","events_processed":354,"events_dropped":0,"avg_latency_ms":17.06361327331242,"throughput_eps":0,"last_update":"2026-03-21T21:03:18.965397466Z"} +2026/03/21 21:03:23 [log_collector] {"stage_name":"log_collector","events_processed":16870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3374,"last_update":"2026-03-21T21:03:23.869458154Z"} +2026/03/21 21:03:23 ───────────────────────────────────────────────── +2026/03/21 21:03:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:03:28 [log_collector] {"stage_name":"log_collector","events_processed":16870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3374,"last_update":"2026-03-21T21:03:28.869415622Z"} +2026/03/21 21:03:28 [metric_collector] {"stage_name":"metric_collector","events_processed":10654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2130.8,"last_update":"2026-03-21T21:03:23.870066299Z"} +2026/03/21 21:03:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:03:23.877855716Z"} +2026/03/21 21:03:28 [transform_engine] {"stage_name":"transform_engine","events_processed":355,"events_dropped":0,"avg_latency_ms":182.15759671790047,"throughput_eps":0,"last_update":"2026-03-21T21:03:23.965056518Z"} +2026/03/21 21:03:28 [detection_layer] {"stage_name":"detection_layer","events_processed":355,"events_dropped":0,"avg_latency_ms":17.685162818649935,"throughput_eps":0,"last_update":"2026-03-21T21:03:23.966248782Z"} +2026/03/21 21:03:28 ───────────────────────────────────────────────── +2026/03/21 21:03:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:03:33 [log_collector] {"stage_name":"log_collector","events_processed":16870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3374,"last_update":"2026-03-21T21:03:28.869415622Z"} +2026/03/21 21:03:33 [metric_collector] {"stage_name":"metric_collector","events_processed":10659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2131.8,"last_update":"2026-03-21T21:03:28.870046109Z"} +2026/03/21 21:03:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:03:28.878136344Z"} +2026/03/21 21:03:33 [transform_engine] {"stage_name":"transform_engine","events_processed":355,"events_dropped":0,"avg_latency_ms":182.15759671790047,"throughput_eps":0,"last_update":"2026-03-21T21:03:28.965477403Z"} +2026/03/21 21:03:33 [detection_layer] {"stage_name":"detection_layer","events_processed":355,"events_dropped":0,"avg_latency_ms":17.685162818649935,"throughput_eps":0,"last_update":"2026-03-21T21:03:28.965463717Z"} +2026/03/21 21:03:33 ───────────────────────────────────────────────── +2026/03/21 21:03:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:03:38 [detection_layer] {"stage_name":"detection_layer","events_processed":355,"events_dropped":0,"avg_latency_ms":17.685162818649935,"throughput_eps":0,"last_update":"2026-03-21T21:03:33.965631142Z"} +2026/03/21 21:03:38 [log_collector] {"stage_name":"log_collector","events_processed":16870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3374,"last_update":"2026-03-21T21:03:33.87003804Z"} +2026/03/21 21:03:38 [metric_collector] {"stage_name":"metric_collector","events_processed":10664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2132.8,"last_update":"2026-03-21T21:03:33.870311073Z"} +2026/03/21 21:03:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:03:33.879409748Z"} +2026/03/21 21:03:38 [transform_engine] {"stage_name":"transform_engine","events_processed":355,"events_dropped":0,"avg_latency_ms":182.15759671790047,"throughput_eps":0,"last_update":"2026-03-21T21:03:33.965642323Z"} +2026/03/21 21:03:38 ───────────────────────────────────────────────── +2026/03/21 21:03:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:03:43 [log_collector] {"stage_name":"log_collector","events_processed":16870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3374,"last_update":"2026-03-21T21:03:38.869677557Z"} +2026/03/21 21:03:43 [metric_collector] {"stage_name":"metric_collector","events_processed":10669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2133.8,"last_update":"2026-03-21T21:03:38.86990377Z"} +2026/03/21 21:03:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:03:38.878410211Z"} +2026/03/21 21:03:43 [transform_engine] {"stage_name":"transform_engine","events_processed":355,"events_dropped":0,"avg_latency_ms":182.15759671790047,"throughput_eps":0,"last_update":"2026-03-21T21:03:38.965728247Z"} +2026/03/21 21:03:43 [detection_layer] {"stage_name":"detection_layer","events_processed":355,"events_dropped":0,"avg_latency_ms":17.685162818649935,"throughput_eps":0,"last_update":"2026-03-21T21:03:38.965717116Z"} +2026/03/21 21:03:43 ───────────────────────────────────────────────── +2026/03/21 21:03:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:03:48 [log_collector] {"stage_name":"log_collector","events_processed":16870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3374,"last_update":"2026-03-21T21:03:48.869982711Z"} +2026/03/21 21:03:48 [metric_collector] {"stage_name":"metric_collector","events_processed":10674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2134.8,"last_update":"2026-03-21T21:03:43.870120999Z"} +2026/03/21 21:03:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:03:43.880414081Z"} +2026/03/21 21:03:48 [transform_engine] {"stage_name":"transform_engine","events_processed":355,"events_dropped":0,"avg_latency_ms":182.15759671790047,"throughput_eps":0,"last_update":"2026-03-21T21:03:43.965807312Z"} +2026/03/21 21:03:48 [detection_layer] {"stage_name":"detection_layer","events_processed":355,"events_dropped":0,"avg_latency_ms":17.685162818649935,"throughput_eps":0,"last_update":"2026-03-21T21:03:43.965794627Z"} +2026/03/21 21:03:48 ───────────────────────────────────────────────── +2026/03/21 21:03:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:03:53 [log_collector] {"stage_name":"log_collector","events_processed":16870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3374,"last_update":"2026-03-21T21:03:53.869429621Z"} +2026/03/21 21:03:53 [metric_collector] {"stage_name":"metric_collector","events_processed":10679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2135.8,"last_update":"2026-03-21T21:03:48.870379761Z"} +2026/03/21 21:03:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:03:48.879340251Z"} +2026/03/21 21:03:53 [transform_engine] {"stage_name":"transform_engine","events_processed":356,"events_dropped":0,"avg_latency_ms":163.5500263743204,"throughput_eps":0,"last_update":"2026-03-21T21:03:49.054748813Z"} +2026/03/21 21:03:53 [detection_layer] {"stage_name":"detection_layer","events_processed":355,"events_dropped":0,"avg_latency_ms":17.685162818649935,"throughput_eps":0,"last_update":"2026-03-21T21:03:48.966505145Z"} +2026/03/21 21:03:53 ───────────────────────────────────────────────── +2026/03/21 21:03:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:03:58 [log_collector] {"stage_name":"log_collector","events_processed":16870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3374,"last_update":"2026-03-21T21:03:53.869429621Z"} +2026/03/21 21:03:58 [metric_collector] {"stage_name":"metric_collector","events_processed":10684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2136.8,"last_update":"2026-03-21T21:03:53.86992554Z"} +2026/03/21 21:03:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4276,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:03:53.87926152Z"} +2026/03/21 21:03:58 [transform_engine] {"stage_name":"transform_engine","events_processed":356,"events_dropped":0,"avg_latency_ms":163.5500263743204,"throughput_eps":0,"last_update":"2026-03-21T21:03:53.965515288Z"} +2026/03/21 21:03:58 [detection_layer] {"stage_name":"detection_layer","events_processed":356,"events_dropped":0,"avg_latency_ms":18.149481254919948,"throughput_eps":0,"last_update":"2026-03-21T21:03:53.965497203Z"} +2026/03/21 21:03:58 ───────────────────────────────────────────────── +Saved state: 12 clusters, 16871 messages, reason: none +2026/03/21 21:04:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:04:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:03:58.878634765Z"} +2026/03/21 21:04:03 [transform_engine] {"stage_name":"transform_engine","events_processed":356,"events_dropped":0,"avg_latency_ms":163.5500263743204,"throughput_eps":0,"last_update":"2026-03-21T21:03:58.96588493Z"} +2026/03/21 21:04:03 [detection_layer] {"stage_name":"detection_layer","events_processed":356,"events_dropped":0,"avg_latency_ms":18.149481254919948,"throughput_eps":0,"last_update":"2026-03-21T21:03:58.965875933Z"} +2026/03/21 21:04:03 [log_collector] {"stage_name":"log_collector","events_processed":16875,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3375,"last_update":"2026-03-21T21:04:03.869671136Z"} +2026/03/21 21:04:03 [metric_collector] {"stage_name":"metric_collector","events_processed":10689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2137.8,"last_update":"2026-03-21T21:03:58.870276918Z"} +2026/03/21 21:04:03 ───────────────────────────────────────────────── +2026/03/21 21:04:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:04:08 [detection_layer] {"stage_name":"detection_layer","events_processed":356,"events_dropped":0,"avg_latency_ms":18.149481254919948,"throughput_eps":0,"last_update":"2026-03-21T21:04:03.965897893Z"} +2026/03/21 21:04:08 [log_collector] {"stage_name":"log_collector","events_processed":16875,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3375,"last_update":"2026-03-21T21:04:03.869671136Z"} +2026/03/21 21:04:08 [metric_collector] {"stage_name":"metric_collector","events_processed":10694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2138.8,"last_update":"2026-03-21T21:04:03.870015636Z"} +2026/03/21 21:04:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:04:03.885747183Z"} +2026/03/21 21:04:08 [transform_engine] {"stage_name":"transform_engine","events_processed":356,"events_dropped":0,"avg_latency_ms":163.5500263743204,"throughput_eps":0,"last_update":"2026-03-21T21:04:03.965910738Z"} +2026/03/21 21:04:08 ───────────────────────────────────────────────── +2026/03/21 21:04:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:04:13 [detection_layer] {"stage_name":"detection_layer","events_processed":356,"events_dropped":0,"avg_latency_ms":18.149481254919948,"throughput_eps":0,"last_update":"2026-03-21T21:04:08.966719288Z"} +2026/03/21 21:04:13 [log_collector] {"stage_name":"log_collector","events_processed":16875,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3375,"last_update":"2026-03-21T21:04:08.869774024Z"} +2026/03/21 21:04:13 [metric_collector] {"stage_name":"metric_collector","events_processed":10699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2139.8,"last_update":"2026-03-21T21:04:08.869767732Z"} +2026/03/21 21:04:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:04:08.877404578Z"} +2026/03/21 21:04:13 [transform_engine] {"stage_name":"transform_engine","events_processed":356,"events_dropped":0,"avg_latency_ms":163.5500263743204,"throughput_eps":0,"last_update":"2026-03-21T21:04:08.9667309Z"} +2026/03/21 21:04:13 ───────────────────────────────────────────────── +2026/03/21 21:04:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:04:18 [log_collector] {"stage_name":"log_collector","events_processed":16875,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3375,"last_update":"2026-03-21T21:04:13.869432085Z"} +2026/03/21 21:04:18 [metric_collector] {"stage_name":"metric_collector","events_processed":10704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2140.8,"last_update":"2026-03-21T21:04:13.870032776Z"} +2026/03/21 21:04:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:04:13.876455807Z"} +2026/03/21 21:04:18 [transform_engine] {"stage_name":"transform_engine","events_processed":356,"events_dropped":0,"avg_latency_ms":163.5500263743204,"throughput_eps":0,"last_update":"2026-03-21T21:04:13.965173723Z"} +2026/03/21 21:04:18 [detection_layer] {"stage_name":"detection_layer","events_processed":356,"events_dropped":0,"avg_latency_ms":18.149481254919948,"throughput_eps":0,"last_update":"2026-03-21T21:04:13.96570465Z"} +2026/03/21 21:04:18 ───────────────────────────────────────────────── +2026/03/21 21:04:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:04:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4286,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:04:18.879550463Z"} +2026/03/21 21:04:23 [transform_engine] {"stage_name":"transform_engine","events_processed":356,"events_dropped":0,"avg_latency_ms":163.5500263743204,"throughput_eps":0,"last_update":"2026-03-21T21:04:13.965173723Z"} +2026/03/21 21:04:23 [detection_layer] {"stage_name":"detection_layer","events_processed":356,"events_dropped":0,"avg_latency_ms":18.149481254919948,"throughput_eps":0,"last_update":"2026-03-21T21:04:18.966175231Z"} +2026/03/21 21:04:23 [log_collector] {"stage_name":"log_collector","events_processed":16875,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3375,"last_update":"2026-03-21T21:04:23.870005967Z"} +2026/03/21 21:04:23 [metric_collector] {"stage_name":"metric_collector","events_processed":10709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2141.8,"last_update":"2026-03-21T21:04:18.869755344Z"} +2026/03/21 21:04:23 ───────────────────────────────────────────────── +2026/03/21 21:04:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:04:28 [log_collector] {"stage_name":"log_collector","events_processed":16875,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3375,"last_update":"2026-03-21T21:04:28.869462754Z"} +2026/03/21 21:04:28 [metric_collector] {"stage_name":"metric_collector","events_processed":10719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2143.8,"last_update":"2026-03-21T21:04:28.869833754Z"} +2026/03/21 21:04:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:04:23.876847108Z"} +2026/03/21 21:04:28 [transform_engine] {"stage_name":"transform_engine","events_processed":357,"events_dropped":0,"avg_latency_ms":1285.3943104994564,"throughput_eps":0,"last_update":"2026-03-21T21:04:24.738463012Z"} +2026/03/21 21:04:28 [detection_layer] {"stage_name":"detection_layer","events_processed":356,"events_dropped":0,"avg_latency_ms":18.149481254919948,"throughput_eps":0,"last_update":"2026-03-21T21:04:23.966031659Z"} +2026/03/21 21:04:28 ───────────────────────────────────────────────── +2026/03/21 21:04:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:04:33 [log_collector] {"stage_name":"log_collector","events_processed":16875,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3375,"last_update":"2026-03-21T21:04:33.870024711Z"} +2026/03/21 21:04:33 [metric_collector] {"stage_name":"metric_collector","events_processed":10719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2143.8,"last_update":"2026-03-21T21:04:28.869833754Z"} +2026/03/21 21:04:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:04:28.877755415Z"} +2026/03/21 21:04:33 [transform_engine] {"stage_name":"transform_engine","events_processed":357,"events_dropped":0,"avg_latency_ms":1285.3943104994564,"throughput_eps":0,"last_update":"2026-03-21T21:04:28.965960861Z"} +2026/03/21 21:04:33 [detection_layer] {"stage_name":"detection_layer","events_processed":357,"events_dropped":0,"avg_latency_ms":18.084678803935958,"throughput_eps":0,"last_update":"2026-03-21T21:04:28.965948818Z"} +2026/03/21 21:04:33 ───────────────────────────────────────────────── +2026/03/21 21:04:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:04:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:04:33.878895599Z"} +2026/03/21 21:04:38 [transform_engine] {"stage_name":"transform_engine","events_processed":357,"events_dropped":0,"avg_latency_ms":1285.3943104994564,"throughput_eps":0,"last_update":"2026-03-21T21:04:33.966071835Z"} +2026/03/21 21:04:38 [detection_layer] {"stage_name":"detection_layer","events_processed":357,"events_dropped":0,"avg_latency_ms":18.084678803935958,"throughput_eps":0,"last_update":"2026-03-21T21:04:33.96605893Z"} +2026/03/21 21:04:38 [log_collector] {"stage_name":"log_collector","events_processed":16875,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3375,"last_update":"2026-03-21T21:04:33.870024711Z"} +2026/03/21 21:04:38 [metric_collector] {"stage_name":"metric_collector","events_processed":10724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2144.8,"last_update":"2026-03-21T21:04:33.870281452Z"} +2026/03/21 21:04:38 ───────────────────────────────────────────────── +2026/03/21 21:04:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:04:43 [log_collector] {"stage_name":"log_collector","events_processed":16875,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3375,"last_update":"2026-03-21T21:04:43.869409866Z"} +2026/03/21 21:04:43 [metric_collector] {"stage_name":"metric_collector","events_processed":10729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2145.8,"last_update":"2026-03-21T21:04:38.869835983Z"} +2026/03/21 21:04:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:04:38.876411276Z"} +2026/03/21 21:04:43 [transform_engine] {"stage_name":"transform_engine","events_processed":357,"events_dropped":0,"avg_latency_ms":1285.3943104994564,"throughput_eps":0,"last_update":"2026-03-21T21:04:38.965604123Z"} +2026/03/21 21:04:43 [detection_layer] {"stage_name":"detection_layer","events_processed":357,"events_dropped":0,"avg_latency_ms":18.084678803935958,"throughput_eps":0,"last_update":"2026-03-21T21:04:38.965594183Z"} +2026/03/21 21:04:43 ───────────────────────────────────────────────── +2026/03/21 21:04:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:04:48 [log_collector] {"stage_name":"log_collector","events_processed":16875,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3375,"last_update":"2026-03-21T21:04:43.869409866Z"} +2026/03/21 21:04:48 [metric_collector] {"stage_name":"metric_collector","events_processed":10734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2146.8,"last_update":"2026-03-21T21:04:43.870156796Z"} +2026/03/21 21:04:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:04:43.876302376Z"} +2026/03/21 21:04:48 [transform_engine] {"stage_name":"transform_engine","events_processed":357,"events_dropped":0,"avg_latency_ms":1285.3943104994564,"throughput_eps":0,"last_update":"2026-03-21T21:04:43.965411652Z"} +2026/03/21 21:04:48 [detection_layer] {"stage_name":"detection_layer","events_processed":357,"events_dropped":0,"avg_latency_ms":18.084678803935958,"throughput_eps":0,"last_update":"2026-03-21T21:04:43.965401704Z"} +2026/03/21 21:04:48 ───────────────────────────────────────────────── +2026/03/21 21:04:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:04:53 [log_collector] {"stage_name":"log_collector","events_processed":16884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3376.8,"last_update":"2026-03-21T21:04:48.869566087Z"} +2026/03/21 21:04:53 [metric_collector] {"stage_name":"metric_collector","events_processed":10739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2147.8,"last_update":"2026-03-21T21:04:48.86998036Z"} +2026/03/21 21:04:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:04:48.87821966Z"} +2026/03/21 21:04:53 [transform_engine] {"stage_name":"transform_engine","events_processed":358,"events_dropped":0,"avg_latency_ms":1306.6376753995653,"throughput_eps":0,"last_update":"2026-03-21T21:04:50.357037839Z"} +2026/03/21 21:04:53 [detection_layer] {"stage_name":"detection_layer","events_processed":357,"events_dropped":0,"avg_latency_ms":18.084678803935958,"throughput_eps":0,"last_update":"2026-03-21T21:04:48.965450439Z"} +2026/03/21 21:04:53 ───────────────────────────────────────────────── +2026/03/21 21:04:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:04:58 [log_collector] {"stage_name":"log_collector","events_processed":16951,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3390.2,"last_update":"2026-03-21T21:04:53.870064638Z"} +2026/03/21 21:04:58 [metric_collector] {"stage_name":"metric_collector","events_processed":10744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2148.8,"last_update":"2026-03-21T21:04:53.87030554Z"} +2026/03/21 21:04:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:04:53.877822034Z"} +2026/03/21 21:04:58 [transform_engine] {"stage_name":"transform_engine","events_processed":358,"events_dropped":0,"avg_latency_ms":1306.6376753995653,"throughput_eps":0,"last_update":"2026-03-21T21:04:53.966021659Z"} +2026/03/21 21:04:58 [detection_layer] {"stage_name":"detection_layer","events_processed":358,"events_dropped":0,"avg_latency_ms":18.270339643148766,"throughput_eps":0,"last_update":"2026-03-21T21:04:53.96604841Z"} +2026/03/21 21:04:58 ───────────────────────────────────────────────── +2026/03/21 21:05:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:05:03 [transform_engine] {"stage_name":"transform_engine","events_processed":358,"events_dropped":0,"avg_latency_ms":1306.6376753995653,"throughput_eps":0,"last_update":"2026-03-21T21:04:58.965724249Z"} +2026/03/21 21:05:03 [detection_layer] {"stage_name":"detection_layer","events_processed":358,"events_dropped":0,"avg_latency_ms":18.270339643148766,"throughput_eps":0,"last_update":"2026-03-21T21:04:58.96580818Z"} +2026/03/21 21:05:03 [log_collector] {"stage_name":"log_collector","events_processed":17195,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3439,"last_update":"2026-03-21T21:04:58.870380613Z"} +2026/03/21 21:05:03 [metric_collector] {"stage_name":"metric_collector","events_processed":10749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2149.8,"last_update":"2026-03-21T21:04:58.870643035Z"} +2026/03/21 21:05:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:04:58.877398754Z"} +2026/03/21 21:05:03 ───────────────────────────────────────────────── +2026/03/21 21:05:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:05:08 [detection_layer] {"stage_name":"detection_layer","events_processed":358,"events_dropped":0,"avg_latency_ms":18.270339643148766,"throughput_eps":0,"last_update":"2026-03-21T21:05:03.965490314Z"} +2026/03/21 21:05:08 [log_collector] {"stage_name":"log_collector","events_processed":17240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3448,"last_update":"2026-03-21T21:05:03.869611322Z"} +2026/03/21 21:05:08 [metric_collector] {"stage_name":"metric_collector","events_processed":10754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2150.8,"last_update":"2026-03-21T21:05:03.869917368Z"} +2026/03/21 21:05:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:05:03.878148622Z"} +2026/03/21 21:05:08 [transform_engine] {"stage_name":"transform_engine","events_processed":358,"events_dropped":0,"avg_latency_ms":1306.6376753995653,"throughput_eps":0,"last_update":"2026-03-21T21:05:03.965543816Z"} +2026/03/21 21:05:08 ───────────────────────────────────────────────── +2026/03/21 21:05:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:05:13 [log_collector] {"stage_name":"log_collector","events_processed":17240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3448,"last_update":"2026-03-21T21:05:08.870559974Z"} +2026/03/21 21:05:13 [metric_collector] {"stage_name":"metric_collector","events_processed":10759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2151.8,"last_update":"2026-03-21T21:05:08.870817548Z"} +2026/03/21 21:05:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:05:08.880157665Z"} +2026/03/21 21:05:13 [transform_engine] {"stage_name":"transform_engine","events_processed":358,"events_dropped":0,"avg_latency_ms":1306.6376753995653,"throughput_eps":0,"last_update":"2026-03-21T21:05:08.965384988Z"} +2026/03/21 21:05:13 [detection_layer] {"stage_name":"detection_layer","events_processed":358,"events_dropped":0,"avg_latency_ms":18.270339643148766,"throughput_eps":0,"last_update":"2026-03-21T21:05:08.965368256Z"} +2026/03/21 21:05:13 ───────────────────────────────────────────────── +2026/03/21 21:05:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:05:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:05:13.878256073Z"} +2026/03/21 21:05:18 [transform_engine] {"stage_name":"transform_engine","events_processed":358,"events_dropped":0,"avg_latency_ms":1306.6376753995653,"throughput_eps":0,"last_update":"2026-03-21T21:05:13.965554051Z"} +2026/03/21 21:05:18 [detection_layer] {"stage_name":"detection_layer","events_processed":358,"events_dropped":0,"avg_latency_ms":18.270339643148766,"throughput_eps":0,"last_update":"2026-03-21T21:05:13.965527941Z"} +2026/03/21 21:05:18 [log_collector] {"stage_name":"log_collector","events_processed":17240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3448,"last_update":"2026-03-21T21:05:13.869709374Z"} +2026/03/21 21:05:18 [metric_collector] {"stage_name":"metric_collector","events_processed":10764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2152.8,"last_update":"2026-03-21T21:05:13.870294986Z"} +2026/03/21 21:05:18 ───────────────────────────────────────────────── +2026/03/21 21:05:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:05:23 [log_collector] {"stage_name":"log_collector","events_processed":17240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3448,"last_update":"2026-03-21T21:05:23.869842562Z"} +2026/03/21 21:05:23 [metric_collector] {"stage_name":"metric_collector","events_processed":10769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2153.8,"last_update":"2026-03-21T21:05:18.869865067Z"} +2026/03/21 21:05:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:05:18.878470797Z"} +2026/03/21 21:05:23 [transform_engine] {"stage_name":"transform_engine","events_processed":359,"events_dropped":0,"avg_latency_ms":1062.5951515196523,"throughput_eps":0,"last_update":"2026-03-21T21:05:19.052189304Z"} +2026/03/21 21:05:23 [detection_layer] {"stage_name":"detection_layer","events_processed":358,"events_dropped":0,"avg_latency_ms":18.270339643148766,"throughput_eps":0,"last_update":"2026-03-21T21:05:18.965813482Z"} +2026/03/21 21:05:23 ───────────────────────────────────────────────── +2026/03/21 21:05:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:05:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:05:23.878941928Z"} +2026/03/21 21:05:28 [transform_engine] {"stage_name":"transform_engine","events_processed":359,"events_dropped":0,"avg_latency_ms":1062.5951515196523,"throughput_eps":0,"last_update":"2026-03-21T21:05:23.966217484Z"} +2026/03/21 21:05:28 [detection_layer] {"stage_name":"detection_layer","events_processed":359,"events_dropped":0,"avg_latency_ms":18.849090314519014,"throughput_eps":0,"last_update":"2026-03-21T21:05:23.966114506Z"} +2026/03/21 21:05:28 [log_collector] {"stage_name":"log_collector","events_processed":17240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3448,"last_update":"2026-03-21T21:05:23.869842562Z"} +2026/03/21 21:05:28 [metric_collector] {"stage_name":"metric_collector","events_processed":10774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2154.8,"last_update":"2026-03-21T21:05:23.870143368Z"} +2026/03/21 21:05:28 ───────────────────────────────────────────────── +2026/03/21 21:05:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:05:33 [log_collector] {"stage_name":"log_collector","events_processed":17240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3448,"last_update":"2026-03-21T21:05:33.86944557Z"} +2026/03/21 21:05:33 [metric_collector] {"stage_name":"metric_collector","events_processed":10779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2155.8,"last_update":"2026-03-21T21:05:28.869904648Z"} +2026/03/21 21:05:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:05:28.878212108Z"} +2026/03/21 21:05:33 [transform_engine] {"stage_name":"transform_engine","events_processed":359,"events_dropped":0,"avg_latency_ms":1062.5951515196523,"throughput_eps":0,"last_update":"2026-03-21T21:05:28.965696053Z"} +2026/03/21 21:05:33 [detection_layer] {"stage_name":"detection_layer","events_processed":359,"events_dropped":0,"avg_latency_ms":18.849090314519014,"throughput_eps":0,"last_update":"2026-03-21T21:05:28.965684151Z"} +2026/03/21 21:05:33 ───────────────────────────────────────────────── +2026/03/21 21:05:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:05:38 [metric_collector] {"stage_name":"metric_collector","events_processed":10784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2156.8,"last_update":"2026-03-21T21:05:33.869717901Z"} +2026/03/21 21:05:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:05:33.878052143Z"} +2026/03/21 21:05:38 [transform_engine] {"stage_name":"transform_engine","events_processed":359,"events_dropped":0,"avg_latency_ms":1062.5951515196523,"throughput_eps":0,"last_update":"2026-03-21T21:05:33.96523448Z"} +2026/03/21 21:05:38 [detection_layer] {"stage_name":"detection_layer","events_processed":359,"events_dropped":0,"avg_latency_ms":18.849090314519014,"throughput_eps":0,"last_update":"2026-03-21T21:05:33.965279095Z"} +2026/03/21 21:05:38 [log_collector] {"stage_name":"log_collector","events_processed":17240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3448,"last_update":"2026-03-21T21:05:33.86944557Z"} +2026/03/21 21:05:38 ───────────────────────────────────────────────── +2026/03/21 21:05:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:05:43 [detection_layer] {"stage_name":"detection_layer","events_processed":359,"events_dropped":0,"avg_latency_ms":18.849090314519014,"throughput_eps":0,"last_update":"2026-03-21T21:05:38.965729605Z"} +2026/03/21 21:05:43 [log_collector] {"stage_name":"log_collector","events_processed":17240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3448,"last_update":"2026-03-21T21:05:38.869577849Z"} +2026/03/21 21:05:43 [metric_collector] {"stage_name":"metric_collector","events_processed":10789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2157.8,"last_update":"2026-03-21T21:05:38.870034324Z"} +2026/03/21 21:05:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:05:38.87840778Z"} +2026/03/21 21:05:43 [transform_engine] {"stage_name":"transform_engine","events_processed":359,"events_dropped":0,"avg_latency_ms":1062.5951515196523,"throughput_eps":0,"last_update":"2026-03-21T21:05:38.965740957Z"} +2026/03/21 21:05:43 ───────────────────────────────────────────────── +2026/03/21 21:05:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:05:48 [transform_engine] {"stage_name":"transform_engine","events_processed":359,"events_dropped":0,"avg_latency_ms":1062.5951515196523,"throughput_eps":0,"last_update":"2026-03-21T21:05:43.965132912Z"} +2026/03/21 21:05:48 [detection_layer] {"stage_name":"detection_layer","events_processed":359,"events_dropped":0,"avg_latency_ms":18.849090314519014,"throughput_eps":0,"last_update":"2026-03-21T21:05:43.966235393Z"} +2026/03/21 21:05:48 [log_collector] {"stage_name":"log_collector","events_processed":17240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3448,"last_update":"2026-03-21T21:05:43.869470334Z"} +2026/03/21 21:05:48 [metric_collector] {"stage_name":"metric_collector","events_processed":10794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2158.8,"last_update":"2026-03-21T21:05:43.869821296Z"} +2026/03/21 21:05:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4320,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:05:43.878005991Z"} +2026/03/21 21:05:48 ───────────────────────────────────────────────── +2026/03/21 21:05:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:05:53 [log_collector] {"stage_name":"log_collector","events_processed":17240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3448,"last_update":"2026-03-21T21:05:53.870119906Z"} +2026/03/21 21:05:53 [metric_collector] {"stage_name":"metric_collector","events_processed":10799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2159.8,"last_update":"2026-03-21T21:05:48.870915044Z"} +2026/03/21 21:05:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:05:48.879623051Z"} +2026/03/21 21:05:53 [transform_engine] {"stage_name":"transform_engine","events_processed":360,"events_dropped":0,"avg_latency_ms":863.7588178157218,"throughput_eps":0,"last_update":"2026-03-21T21:05:49.034374715Z"} +2026/03/21 21:05:53 [detection_layer] {"stage_name":"detection_layer","events_processed":359,"events_dropped":0,"avg_latency_ms":18.849090314519014,"throughput_eps":0,"last_update":"2026-03-21T21:05:48.965947505Z"} +2026/03/21 21:05:53 ───────────────────────────────────────────────── +2026/03/21 21:05:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:05:58 [metric_collector] {"stage_name":"metric_collector","events_processed":10804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2160.8,"last_update":"2026-03-21T21:05:53.870380546Z"} +2026/03/21 21:05:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:05:53.879729671Z"} +2026/03/21 21:05:58 [transform_engine] {"stage_name":"transform_engine","events_processed":360,"events_dropped":0,"avg_latency_ms":863.7588178157218,"throughput_eps":0,"last_update":"2026-03-21T21:05:53.966054777Z"} +2026/03/21 21:05:58 [detection_layer] {"stage_name":"detection_layer","events_processed":360,"events_dropped":0,"avg_latency_ms":19.298378451615214,"throughput_eps":0,"last_update":"2026-03-21T21:05:53.966008348Z"} +2026/03/21 21:05:58 [log_collector] {"stage_name":"log_collector","events_processed":17240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3448,"last_update":"2026-03-21T21:05:53.870119906Z"} +2026/03/21 21:05:58 ───────────────────────────────────────────────── +2026/03/21 21:06:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:06:03 [metric_collector] {"stage_name":"metric_collector","events_processed":10809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2161.8,"last_update":"2026-03-21T21:05:58.870227883Z"} +2026/03/21 21:06:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:05:58.879218641Z"} +2026/03/21 21:06:03 [transform_engine] {"stage_name":"transform_engine","events_processed":360,"events_dropped":0,"avg_latency_ms":863.7588178157218,"throughput_eps":0,"last_update":"2026-03-21T21:05:58.965427143Z"} +2026/03/21 21:06:03 [detection_layer] {"stage_name":"detection_layer","events_processed":360,"events_dropped":0,"avg_latency_ms":19.298378451615214,"throughput_eps":0,"last_update":"2026-03-21T21:05:58.965448795Z"} +2026/03/21 21:06:03 [log_collector] {"stage_name":"log_collector","events_processed":17240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3448,"last_update":"2026-03-21T21:05:58.869496743Z"} +2026/03/21 21:06:03 ───────────────────────────────────────────────── +2026/03/21 21:06:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:06:08 [metric_collector] {"stage_name":"metric_collector","events_processed":10814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2162.8,"last_update":"2026-03-21T21:06:03.870691201Z"} +2026/03/21 21:06:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:06:03.878894722Z"} +2026/03/21 21:06:08 [transform_engine] {"stage_name":"transform_engine","events_processed":360,"events_dropped":0,"avg_latency_ms":863.7588178157218,"throughput_eps":0,"last_update":"2026-03-21T21:06:03.966100504Z"} +2026/03/21 21:06:08 [detection_layer] {"stage_name":"detection_layer","events_processed":360,"events_dropped":0,"avg_latency_ms":19.298378451615214,"throughput_eps":0,"last_update":"2026-03-21T21:06:03.966120643Z"} +2026/03/21 21:06:08 [log_collector] {"stage_name":"log_collector","events_processed":17240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3448,"last_update":"2026-03-21T21:06:03.869973656Z"} +2026/03/21 21:06:08 ───────────────────────────────────────────────── +2026/03/21 21:06:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:06:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4330,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:06:08.880336489Z"} +2026/03/21 21:06:13 [transform_engine] {"stage_name":"transform_engine","events_processed":360,"events_dropped":0,"avg_latency_ms":863.7588178157218,"throughput_eps":0,"last_update":"2026-03-21T21:06:08.965575515Z"} +2026/03/21 21:06:13 [detection_layer] {"stage_name":"detection_layer","events_processed":360,"events_dropped":0,"avg_latency_ms":19.298378451615214,"throughput_eps":0,"last_update":"2026-03-21T21:06:08.965543534Z"} +2026/03/21 21:06:13 [log_collector] {"stage_name":"log_collector","events_processed":17240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3448,"last_update":"2026-03-21T21:06:08.86953403Z"} +2026/03/21 21:06:13 [metric_collector] {"stage_name":"metric_collector","events_processed":10819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2163.8,"last_update":"2026-03-21T21:06:08.870344803Z"} +2026/03/21 21:06:13 ───────────────────────────────────────────────── +2026/03/21 21:06:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:06:18 [log_collector] {"stage_name":"log_collector","events_processed":17240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3448,"last_update":"2026-03-21T21:06:13.869623209Z"} +2026/03/21 21:06:18 [metric_collector] {"stage_name":"metric_collector","events_processed":10824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2164.8,"last_update":"2026-03-21T21:06:13.869840967Z"} +2026/03/21 21:06:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:06:13.878571697Z"} +2026/03/21 21:06:18 [transform_engine] {"stage_name":"transform_engine","events_processed":360,"events_dropped":0,"avg_latency_ms":863.7588178157218,"throughput_eps":0,"last_update":"2026-03-21T21:06:13.965185205Z"} +2026/03/21 21:06:18 [detection_layer] {"stage_name":"detection_layer","events_processed":360,"events_dropped":0,"avg_latency_ms":19.298378451615214,"throughput_eps":0,"last_update":"2026-03-21T21:06:13.965306738Z"} +2026/03/21 21:06:18 ───────────────────────────────────────────────── +2026/03/21 21:06:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:06:23 [log_collector] {"stage_name":"log_collector","events_processed":17240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3448,"last_update":"2026-03-21T21:06:18.870085545Z"} +2026/03/21 21:06:23 [metric_collector] {"stage_name":"metric_collector","events_processed":10829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2165.8,"last_update":"2026-03-21T21:06:18.870454391Z"} +2026/03/21 21:06:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:06:18.878829211Z"} +2026/03/21 21:06:23 [transform_engine] {"stage_name":"transform_engine","events_processed":361,"events_dropped":0,"avg_latency_ms":702.2466078525775,"throughput_eps":0,"last_update":"2026-03-21T21:06:19.021298221Z"} +2026/03/21 21:06:23 [detection_layer] {"stage_name":"detection_layer","events_processed":360,"events_dropped":0,"avg_latency_ms":19.298378451615214,"throughput_eps":0,"last_update":"2026-03-21T21:06:18.966213494Z"} +2026/03/21 21:06:23 ───────────────────────────────────────────────── +Saved state: 12 clusters, 17241 messages, reason: none +2026/03/21 21:06:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:06:28 [log_collector] {"stage_name":"log_collector","events_processed":17240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3448,"last_update":"2026-03-21T21:06:23.870025583Z"} +2026/03/21 21:06:28 [metric_collector] {"stage_name":"metric_collector","events_processed":10834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2166.8,"last_update":"2026-03-21T21:06:23.870487357Z"} +2026/03/21 21:06:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:06:23.878618309Z"} +2026/03/21 21:06:28 [transform_engine] {"stage_name":"transform_engine","events_processed":361,"events_dropped":0,"avg_latency_ms":702.2466078525775,"throughput_eps":0,"last_update":"2026-03-21T21:06:23.965988236Z"} +2026/03/21 21:06:28 [detection_layer] {"stage_name":"detection_layer","events_processed":361,"events_dropped":0,"avg_latency_ms":20.056748961292172,"throughput_eps":0,"last_update":"2026-03-21T21:06:23.965969701Z"} +2026/03/21 21:06:28 ───────────────────────────────────────────────── +2026/03/21 21:06:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:06:33 [metric_collector] {"stage_name":"metric_collector","events_processed":10839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2167.8,"last_update":"2026-03-21T21:06:28.869636255Z"} +2026/03/21 21:06:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:06:28.878530058Z"} +2026/03/21 21:06:33 [transform_engine] {"stage_name":"transform_engine","events_processed":361,"events_dropped":0,"avg_latency_ms":702.2466078525775,"throughput_eps":0,"last_update":"2026-03-21T21:06:28.96578212Z"} +2026/03/21 21:06:33 [detection_layer] {"stage_name":"detection_layer","events_processed":361,"events_dropped":0,"avg_latency_ms":20.056748961292172,"throughput_eps":0,"last_update":"2026-03-21T21:06:28.965772672Z"} +2026/03/21 21:06:33 [log_collector] {"stage_name":"log_collector","events_processed":17243,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3448.6,"last_update":"2026-03-21T21:06:28.869430552Z"} +2026/03/21 21:06:33 ───────────────────────────────────────────────── +2026/03/21 21:06:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:06:38 [log_collector] {"stage_name":"log_collector","events_processed":17243,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3448.6,"last_update":"2026-03-21T21:06:33.87001417Z"} +2026/03/21 21:06:38 [metric_collector] {"stage_name":"metric_collector","events_processed":10844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2168.8,"last_update":"2026-03-21T21:06:33.869877007Z"} +2026/03/21 21:06:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:06:33.876381083Z"} +2026/03/21 21:06:38 [transform_engine] {"stage_name":"transform_engine","events_processed":361,"events_dropped":0,"avg_latency_ms":702.2466078525775,"throughput_eps":0,"last_update":"2026-03-21T21:06:33.96563056Z"} +2026/03/21 21:06:38 [detection_layer] {"stage_name":"detection_layer","events_processed":361,"events_dropped":0,"avg_latency_ms":20.056748961292172,"throughput_eps":0,"last_update":"2026-03-21T21:06:33.965618617Z"} +2026/03/21 21:06:38 ───────────────────────────────────────────────── +2026/03/21 21:06:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:06:43 [log_collector] {"stage_name":"log_collector","events_processed":17268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3453.6,"last_update":"2026-03-21T21:06:43.870307912Z"} +2026/03/21 21:06:43 [metric_collector] {"stage_name":"metric_collector","events_processed":10849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2169.8,"last_update":"2026-03-21T21:06:38.869734478Z"} +2026/03/21 21:06:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4342,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:06:38.878144374Z"} +2026/03/21 21:06:43 [transform_engine] {"stage_name":"transform_engine","events_processed":361,"events_dropped":0,"avg_latency_ms":702.2466078525775,"throughput_eps":0,"last_update":"2026-03-21T21:06:38.965376207Z"} +2026/03/21 21:06:43 [detection_layer] {"stage_name":"detection_layer","events_processed":361,"events_dropped":0,"avg_latency_ms":20.056748961292172,"throughput_eps":0,"last_update":"2026-03-21T21:06:38.965365305Z"} +2026/03/21 21:06:43 ───────────────────────────────────────────────── +2026/03/21 21:06:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:06:48 [log_collector] {"stage_name":"log_collector","events_processed":17268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3453.6,"last_update":"2026-03-21T21:06:43.870307912Z"} +2026/03/21 21:06:48 [metric_collector] {"stage_name":"metric_collector","events_processed":10854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2170.8,"last_update":"2026-03-21T21:06:43.870695244Z"} +2026/03/21 21:06:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:06:43.877225691Z"} +2026/03/21 21:06:48 [transform_engine] {"stage_name":"transform_engine","events_processed":361,"events_dropped":0,"avg_latency_ms":702.2466078525775,"throughput_eps":0,"last_update":"2026-03-21T21:06:43.965418725Z"} +2026/03/21 21:06:48 [detection_layer] {"stage_name":"detection_layer","events_processed":361,"events_dropped":0,"avg_latency_ms":20.056748961292172,"throughput_eps":0,"last_update":"2026-03-21T21:06:43.965407894Z"} +2026/03/21 21:06:48 ───────────────────────────────────────────────── +2026/03/21 21:06:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:06:53 [transform_engine] {"stage_name":"transform_engine","events_processed":362,"events_dropped":0,"avg_latency_ms":868.4777620820621,"throughput_eps":0,"last_update":"2026-03-21T21:06:50.498718337Z"} +2026/03/21 21:06:53 [detection_layer] {"stage_name":"detection_layer","events_processed":361,"events_dropped":0,"avg_latency_ms":20.056748961292172,"throughput_eps":0,"last_update":"2026-03-21T21:06:48.96530162Z"} +2026/03/21 21:06:53 [log_collector] {"stage_name":"log_collector","events_processed":17283,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3456.6,"last_update":"2026-03-21T21:06:48.869442385Z"} +2026/03/21 21:06:53 [metric_collector] {"stage_name":"metric_collector","events_processed":10858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2171.6,"last_update":"2026-03-21T21:06:48.869546134Z"} +2026/03/21 21:06:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:06:48.8760767Z"} +2026/03/21 21:06:53 ───────────────────────────────────────────────── +2026/03/21 21:06:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:06:58 [log_collector] {"stage_name":"log_collector","events_processed":17284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3456.8,"last_update":"2026-03-21T21:06:53.870329647Z"} +2026/03/21 21:06:58 [metric_collector] {"stage_name":"metric_collector","events_processed":10864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2172.8,"last_update":"2026-03-21T21:06:53.870691451Z"} +2026/03/21 21:06:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:06:53.878839445Z"} +2026/03/21 21:06:58 [transform_engine] {"stage_name":"transform_engine","events_processed":362,"events_dropped":0,"avg_latency_ms":868.4777620820621,"throughput_eps":0,"last_update":"2026-03-21T21:06:53.966050048Z"} +2026/03/21 21:06:58 [detection_layer] {"stage_name":"detection_layer","events_processed":362,"events_dropped":0,"avg_latency_ms":19.42784316903374,"throughput_eps":0,"last_update":"2026-03-21T21:06:53.966075066Z"} +2026/03/21 21:06:58 ───────────────────────────────────────────────── +2026/03/21 21:07:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:07:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4350,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:06:58.879336223Z"} +2026/03/21 21:07:03 [transform_engine] {"stage_name":"transform_engine","events_processed":362,"events_dropped":0,"avg_latency_ms":868.4777620820621,"throughput_eps":0,"last_update":"2026-03-21T21:06:58.965589602Z"} +2026/03/21 21:07:03 [detection_layer] {"stage_name":"detection_layer","events_processed":362,"events_dropped":0,"avg_latency_ms":19.42784316903374,"throughput_eps":0,"last_update":"2026-03-21T21:06:58.965569925Z"} +2026/03/21 21:07:03 [log_collector] {"stage_name":"log_collector","events_processed":17284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3456.8,"last_update":"2026-03-21T21:06:58.869685581Z"} +2026/03/21 21:07:03 [metric_collector] {"stage_name":"metric_collector","events_processed":10869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2173.8,"last_update":"2026-03-21T21:06:58.869995744Z"} +2026/03/21 21:07:03 ───────────────────────────────────────────────── +2026/03/21 21:07:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:07:08 [log_collector] {"stage_name":"log_collector","events_processed":17284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3456.8,"last_update":"2026-03-21T21:07:03.870039476Z"} +2026/03/21 21:07:08 [metric_collector] {"stage_name":"metric_collector","events_processed":10874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2174.8,"last_update":"2026-03-21T21:07:03.870431157Z"} +2026/03/21 21:07:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:07:03.879828073Z"} +2026/03/21 21:07:08 [transform_engine] {"stage_name":"transform_engine","events_processed":362,"events_dropped":0,"avg_latency_ms":868.4777620820621,"throughput_eps":0,"last_update":"2026-03-21T21:07:03.966079308Z"} +2026/03/21 21:07:08 [detection_layer] {"stage_name":"detection_layer","events_processed":362,"events_dropped":0,"avg_latency_ms":19.42784316903374,"throughput_eps":0,"last_update":"2026-03-21T21:07:03.966067345Z"} +2026/03/21 21:07:08 ───────────────────────────────────────────────── +2026/03/21 21:07:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:07:13 [log_collector] {"stage_name":"log_collector","events_processed":17284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3456.8,"last_update":"2026-03-21T21:07:08.870345292Z"} +2026/03/21 21:07:13 [metric_collector] {"stage_name":"metric_collector","events_processed":10879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2175.8,"last_update":"2026-03-21T21:07:08.870781298Z"} +2026/03/21 21:07:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:07:08.878972104Z"} +2026/03/21 21:07:13 [transform_engine] {"stage_name":"transform_engine","events_processed":362,"events_dropped":0,"avg_latency_ms":868.4777620820621,"throughput_eps":0,"last_update":"2026-03-21T21:07:08.965091907Z"} +2026/03/21 21:07:13 [detection_layer] {"stage_name":"detection_layer","events_processed":362,"events_dropped":0,"avg_latency_ms":19.42784316903374,"throughput_eps":0,"last_update":"2026-03-21T21:07:08.966223875Z"} +2026/03/21 21:07:13 ───────────────────────────────────────────────── +2026/03/21 21:07:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:07:18 [metric_collector] {"stage_name":"metric_collector","events_processed":10884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2176.8,"last_update":"2026-03-21T21:07:13.869922655Z"} +2026/03/21 21:07:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:07:13.879003635Z"} +2026/03/21 21:07:18 [transform_engine] {"stage_name":"transform_engine","events_processed":362,"events_dropped":0,"avg_latency_ms":868.4777620820621,"throughput_eps":0,"last_update":"2026-03-21T21:07:13.965214583Z"} +2026/03/21 21:07:18 [detection_layer] {"stage_name":"detection_layer","events_processed":362,"events_dropped":0,"avg_latency_ms":19.42784316903374,"throughput_eps":0,"last_update":"2026-03-21T21:07:13.965337228Z"} +2026/03/21 21:07:18 [log_collector] {"stage_name":"log_collector","events_processed":17284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3456.8,"last_update":"2026-03-21T21:07:13.869586139Z"} +2026/03/21 21:07:18 ───────────────────────────────────────────────── +2026/03/21 21:07:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:07:23 [detection_layer] {"stage_name":"detection_layer","events_processed":362,"events_dropped":0,"avg_latency_ms":19.42784316903374,"throughput_eps":0,"last_update":"2026-03-21T21:07:18.965945451Z"} +2026/03/21 21:07:23 [log_collector] {"stage_name":"log_collector","events_processed":17284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3456.8,"last_update":"2026-03-21T21:07:18.870199792Z"} +2026/03/21 21:07:23 [metric_collector] {"stage_name":"metric_collector","events_processed":10889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2177.8,"last_update":"2026-03-21T21:07:18.870767419Z"} +2026/03/21 21:07:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:07:18.87963929Z"} +2026/03/21 21:07:23 [transform_engine] {"stage_name":"transform_engine","events_processed":363,"events_dropped":0,"avg_latency_ms":719.7043174656498,"throughput_eps":0,"last_update":"2026-03-21T21:07:19.090568964Z"} +2026/03/21 21:07:23 ───────────────────────────────────────────────── +2026/03/21 21:07:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:07:28 [log_collector] {"stage_name":"log_collector","events_processed":17284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3456.8,"last_update":"2026-03-21T21:07:23.869446859Z"} +2026/03/21 21:07:28 [metric_collector] {"stage_name":"metric_collector","events_processed":10893,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2178.6,"last_update":"2026-03-21T21:07:23.869495763Z"} +2026/03/21 21:07:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4360,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:07:23.879213202Z"} +2026/03/21 21:07:28 [transform_engine] {"stage_name":"transform_engine","events_processed":363,"events_dropped":0,"avg_latency_ms":719.7043174656498,"throughput_eps":0,"last_update":"2026-03-21T21:07:23.965435753Z"} +2026/03/21 21:07:28 [detection_layer] {"stage_name":"detection_layer","events_processed":363,"events_dropped":0,"avg_latency_ms":19.645679335226994,"throughput_eps":0,"last_update":"2026-03-21T21:07:23.965423691Z"} +2026/03/21 21:07:28 ───────────────────────────────────────────────── +2026/03/21 21:07:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:07:33 [log_collector] {"stage_name":"log_collector","events_processed":17284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3456.8,"last_update":"2026-03-21T21:07:28.869399639Z"} +2026/03/21 21:07:33 [metric_collector] {"stage_name":"metric_collector","events_processed":10898,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2179.6,"last_update":"2026-03-21T21:07:28.869392916Z"} +2026/03/21 21:07:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:07:28.878816064Z"} +2026/03/21 21:07:33 [transform_engine] {"stage_name":"transform_engine","events_processed":363,"events_dropped":0,"avg_latency_ms":719.7043174656498,"throughput_eps":0,"last_update":"2026-03-21T21:07:28.96603884Z"} +2026/03/21 21:07:33 [detection_layer] {"stage_name":"detection_layer","events_processed":363,"events_dropped":0,"avg_latency_ms":19.645679335226994,"throughput_eps":0,"last_update":"2026-03-21T21:07:28.96602388Z"} +2026/03/21 21:07:33 ───────────────────────────────────────────────── +2026/03/21 21:07:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:07:38 [detection_layer] {"stage_name":"detection_layer","events_processed":363,"events_dropped":0,"avg_latency_ms":19.645679335226994,"throughput_eps":0,"last_update":"2026-03-21T21:07:33.966087817Z"} +2026/03/21 21:07:38 [log_collector] {"stage_name":"log_collector","events_processed":17284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3456.8,"last_update":"2026-03-21T21:07:33.869527339Z"} +2026/03/21 21:07:38 [metric_collector] {"stage_name":"metric_collector","events_processed":10904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2180.8,"last_update":"2026-03-21T21:07:33.870022257Z"} +2026/03/21 21:07:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:07:33.878812221Z"} +2026/03/21 21:07:38 [transform_engine] {"stage_name":"transform_engine","events_processed":363,"events_dropped":0,"avg_latency_ms":719.7043174656498,"throughput_eps":0,"last_update":"2026-03-21T21:07:33.966093428Z"} +2026/03/21 21:07:38 ───────────────────────────────────────────────── +2026/03/21 21:07:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:07:43 [transform_engine] {"stage_name":"transform_engine","events_processed":363,"events_dropped":0,"avg_latency_ms":719.7043174656498,"throughput_eps":0,"last_update":"2026-03-21T21:07:38.96573641Z"} +2026/03/21 21:07:43 [detection_layer] {"stage_name":"detection_layer","events_processed":363,"events_dropped":0,"avg_latency_ms":19.645679335226994,"throughput_eps":0,"last_update":"2026-03-21T21:07:38.965723886Z"} +2026/03/21 21:07:43 [log_collector] {"stage_name":"log_collector","events_processed":17284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3456.8,"last_update":"2026-03-21T21:07:38.870175185Z"} +2026/03/21 21:07:43 [metric_collector] {"stage_name":"metric_collector","events_processed":10909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2181.8,"last_update":"2026-03-21T21:07:38.870427418Z"} +2026/03/21 21:07:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:07:38.878479018Z"} +2026/03/21 21:07:43 ───────────────────────────────────────────────── +2026/03/21 21:07:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:07:48 [transform_engine] {"stage_name":"transform_engine","events_processed":363,"events_dropped":0,"avg_latency_ms":719.7043174656498,"throughput_eps":0,"last_update":"2026-03-21T21:07:43.965053891Z"} +2026/03/21 21:07:48 [detection_layer] {"stage_name":"detection_layer","events_processed":363,"events_dropped":0,"avg_latency_ms":19.645679335226994,"throughput_eps":0,"last_update":"2026-03-21T21:07:43.966272184Z"} +2026/03/21 21:07:48 [log_collector] {"stage_name":"log_collector","events_processed":17284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3456.8,"last_update":"2026-03-21T21:07:43.870075331Z"} +2026/03/21 21:07:48 [metric_collector] {"stage_name":"metric_collector","events_processed":10914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2182.8,"last_update":"2026-03-21T21:07:43.870797054Z"} +2026/03/21 21:07:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:07:43.878962892Z"} +2026/03/21 21:07:48 ───────────────────────────────────────────────── +Saved state: 12 clusters, 17285 messages, reason: none +2026/03/21 21:07:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:07:53 [metric_collector] {"stage_name":"metric_collector","events_processed":10919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2183.8,"last_update":"2026-03-21T21:07:48.870256931Z"} +2026/03/21 21:07:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:07:48.879022849Z"} +2026/03/21 21:07:53 [transform_engine] {"stage_name":"transform_engine","events_processed":364,"events_dropped":0,"avg_latency_ms":589.2440133725198,"throughput_eps":0,"last_update":"2026-03-21T21:07:49.032548766Z"} +2026/03/21 21:07:53 [detection_layer] {"stage_name":"detection_layer","events_processed":363,"events_dropped":0,"avg_latency_ms":19.645679335226994,"throughput_eps":0,"last_update":"2026-03-21T21:07:48.966256085Z"} +2026/03/21 21:07:53 [log_collector] {"stage_name":"log_collector","events_processed":17284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3456.8,"last_update":"2026-03-21T21:07:48.870078409Z"} +2026/03/21 21:07:53 ───────────────────────────────────────────────── +2026/03/21 21:07:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:07:58 [log_collector] {"stage_name":"log_collector","events_processed":17289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3457.8,"last_update":"2026-03-21T21:07:53.869441071Z"} +2026/03/21 21:07:58 [metric_collector] {"stage_name":"metric_collector","events_processed":10924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2184.8,"last_update":"2026-03-21T21:07:53.869712411Z"} +2026/03/21 21:07:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:07:53.876096468Z"} +2026/03/21 21:07:58 [transform_engine] {"stage_name":"transform_engine","events_processed":364,"events_dropped":0,"avg_latency_ms":589.2440133725198,"throughput_eps":0,"last_update":"2026-03-21T21:07:53.965274318Z"} +2026/03/21 21:07:58 [detection_layer] {"stage_name":"detection_layer","events_processed":364,"events_dropped":0,"avg_latency_ms":19.9240918681816,"throughput_eps":0,"last_update":"2026-03-21T21:07:53.965264679Z"} +2026/03/21 21:07:58 ───────────────────────────────────────────────── +2026/03/21 21:08:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:08:03 [log_collector] {"stage_name":"log_collector","events_processed":17289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3457.8,"last_update":"2026-03-21T21:07:58.869620851Z"} +2026/03/21 21:08:03 [metric_collector] {"stage_name":"metric_collector","events_processed":10929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2185.8,"last_update":"2026-03-21T21:07:58.870067056Z"} +2026/03/21 21:08:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:07:58.876804039Z"} +2026/03/21 21:08:03 [transform_engine] {"stage_name":"transform_engine","events_processed":364,"events_dropped":0,"avg_latency_ms":589.2440133725198,"throughput_eps":0,"last_update":"2026-03-21T21:07:58.966188164Z"} +2026/03/21 21:08:03 [detection_layer] {"stage_name":"detection_layer","events_processed":364,"events_dropped":0,"avg_latency_ms":19.9240918681816,"throughput_eps":0,"last_update":"2026-03-21T21:07:58.966168666Z"} +2026/03/21 21:08:03 ───────────────────────────────────────────────── +2026/03/21 21:08:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:08:08 [detection_layer] {"stage_name":"detection_layer","events_processed":364,"events_dropped":0,"avg_latency_ms":19.9240918681816,"throughput_eps":0,"last_update":"2026-03-21T21:08:03.966030552Z"} +2026/03/21 21:08:08 [log_collector] {"stage_name":"log_collector","events_processed":17289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3457.8,"last_update":"2026-03-21T21:08:03.870034473Z"} +2026/03/21 21:08:08 [metric_collector] {"stage_name":"metric_collector","events_processed":10934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2186.8,"last_update":"2026-03-21T21:08:03.870491228Z"} +2026/03/21 21:08:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:08:03.881873276Z"} +2026/03/21 21:08:08 [transform_engine] {"stage_name":"transform_engine","events_processed":364,"events_dropped":0,"avg_latency_ms":589.2440133725198,"throughput_eps":0,"last_update":"2026-03-21T21:08:03.966040901Z"} +2026/03/21 21:08:08 ───────────────────────────────────────────────── +2026/03/21 21:08:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:08:13 [metric_collector] {"stage_name":"metric_collector","events_processed":10939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2187.8,"last_update":"2026-03-21T21:08:08.869650217Z"} +2026/03/21 21:08:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:08:08.877268268Z"} +2026/03/21 21:08:13 [transform_engine] {"stage_name":"transform_engine","events_processed":364,"events_dropped":0,"avg_latency_ms":589.2440133725198,"throughput_eps":0,"last_update":"2026-03-21T21:08:08.965299372Z"} +2026/03/21 21:08:13 [detection_layer] {"stage_name":"detection_layer","events_processed":364,"events_dropped":0,"avg_latency_ms":19.9240918681816,"throughput_eps":0,"last_update":"2026-03-21T21:08:08.965286708Z"} +2026/03/21 21:08:13 [log_collector] {"stage_name":"log_collector","events_processed":17289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3457.8,"last_update":"2026-03-21T21:08:08.869410008Z"} +2026/03/21 21:08:13 ───────────────────────────────────────────────── +2026/03/21 21:08:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:08:18 [detection_layer] {"stage_name":"detection_layer","events_processed":364,"events_dropped":0,"avg_latency_ms":19.9240918681816,"throughput_eps":0,"last_update":"2026-03-21T21:08:13.965765109Z"} +2026/03/21 21:08:18 [log_collector] {"stage_name":"log_collector","events_processed":17289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3457.8,"last_update":"2026-03-21T21:08:13.869580879Z"} +2026/03/21 21:08:18 [metric_collector] {"stage_name":"metric_collector","events_processed":10944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2188.8,"last_update":"2026-03-21T21:08:13.869640082Z"} +2026/03/21 21:08:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4380,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:08:13.876586356Z"} +2026/03/21 21:08:18 [transform_engine] {"stage_name":"transform_engine","events_processed":364,"events_dropped":0,"avg_latency_ms":589.2440133725198,"throughput_eps":0,"last_update":"2026-03-21T21:08:13.965775248Z"} +2026/03/21 21:08:18 ───────────────────────────────────────────────── +2026/03/21 21:08:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:08:23 [log_collector] {"stage_name":"log_collector","events_processed":17289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3457.8,"last_update":"2026-03-21T21:08:18.869402735Z"} +2026/03/21 21:08:23 [metric_collector] {"stage_name":"metric_collector","events_processed":10949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2189.8,"last_update":"2026-03-21T21:08:18.869590535Z"} +2026/03/21 21:08:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:08:18.876993883Z"} +2026/03/21 21:08:23 [transform_engine] {"stage_name":"transform_engine","events_processed":365,"events_dropped":0,"avg_latency_ms":504.52933209801586,"throughput_eps":0,"last_update":"2026-03-21T21:08:19.131801843Z"} +2026/03/21 21:08:23 [detection_layer] {"stage_name":"detection_layer","events_processed":364,"events_dropped":0,"avg_latency_ms":19.9240918681816,"throughput_eps":0,"last_update":"2026-03-21T21:08:18.966114634Z"} +2026/03/21 21:08:23 ───────────────────────────────────────────────── +2026/03/21 21:08:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:08:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:08:23.879426771Z"} +2026/03/21 21:08:28 [transform_engine] {"stage_name":"transform_engine","events_processed":365,"events_dropped":0,"avg_latency_ms":504.52933209801586,"throughput_eps":0,"last_update":"2026-03-21T21:08:23.965646036Z"} +2026/03/21 21:08:28 [detection_layer] {"stage_name":"detection_layer","events_processed":365,"events_dropped":0,"avg_latency_ms":18.27265849454528,"throughput_eps":0,"last_update":"2026-03-21T21:08:23.965677806Z"} +2026/03/21 21:08:28 [log_collector] {"stage_name":"log_collector","events_processed":17289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3457.8,"last_update":"2026-03-21T21:08:23.869956805Z"} +2026/03/21 21:08:28 [metric_collector] {"stage_name":"metric_collector","events_processed":10954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2190.8,"last_update":"2026-03-21T21:08:23.870374444Z"} +2026/03/21 21:08:28 ───────────────────────────────────────────────── +2026/03/21 21:08:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:08:33 [log_collector] {"stage_name":"log_collector","events_processed":17289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3457.8,"last_update":"2026-03-21T21:08:28.869817889Z"} +2026/03/21 21:08:33 [metric_collector] {"stage_name":"metric_collector","events_processed":10959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2191.8,"last_update":"2026-03-21T21:08:28.870010056Z"} +2026/03/21 21:08:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:08:28.877022006Z"} +2026/03/21 21:08:33 [transform_engine] {"stage_name":"transform_engine","events_processed":365,"events_dropped":0,"avg_latency_ms":504.52933209801586,"throughput_eps":0,"last_update":"2026-03-21T21:08:28.965111873Z"} +2026/03/21 21:08:33 [detection_layer] {"stage_name":"detection_layer","events_processed":365,"events_dropped":0,"avg_latency_ms":18.27265849454528,"throughput_eps":0,"last_update":"2026-03-21T21:08:28.966220937Z"} +2026/03/21 21:08:33 ───────────────────────────────────────────────── +2026/03/21 21:08:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:08:38 [detection_layer] {"stage_name":"detection_layer","events_processed":365,"events_dropped":0,"avg_latency_ms":18.27265849454528,"throughput_eps":0,"last_update":"2026-03-21T21:08:33.96626784Z"} +2026/03/21 21:08:38 [log_collector] {"stage_name":"log_collector","events_processed":17292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3458.4,"last_update":"2026-03-21T21:08:33.869944104Z"} +2026/03/21 21:08:38 [metric_collector] {"stage_name":"metric_collector","events_processed":10964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2192.8,"last_update":"2026-03-21T21:08:33.870071227Z"} +2026/03/21 21:08:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4388,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:08:33.877022079Z"} +2026/03/21 21:08:38 [transform_engine] {"stage_name":"transform_engine","events_processed":365,"events_dropped":0,"avg_latency_ms":504.52933209801586,"throughput_eps":0,"last_update":"2026-03-21T21:08:33.96517172Z"} +2026/03/21 21:08:38 ───────────────────────────────────────────────── +2026/03/21 21:08:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:08:43 [log_collector] {"stage_name":"log_collector","events_processed":17300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3460,"last_update":"2026-03-21T21:08:38.869425017Z"} +2026/03/21 21:08:43 [metric_collector] {"stage_name":"metric_collector","events_processed":10969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2193.8,"last_update":"2026-03-21T21:08:38.870142511Z"} +2026/03/21 21:08:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4390,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:08:38.878710661Z"} +2026/03/21 21:08:43 [transform_engine] {"stage_name":"transform_engine","events_processed":365,"events_dropped":0,"avg_latency_ms":504.52933209801586,"throughput_eps":0,"last_update":"2026-03-21T21:08:38.965862642Z"} +2026/03/21 21:08:43 [detection_layer] {"stage_name":"detection_layer","events_processed":365,"events_dropped":0,"avg_latency_ms":18.27265849454528,"throughput_eps":0,"last_update":"2026-03-21T21:08:38.965918258Z"} +2026/03/21 21:08:43 ───────────────────────────────────────────────── +2026/03/21 21:08:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:08:48 [log_collector] {"stage_name":"log_collector","events_processed":17359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3471.8,"last_update":"2026-03-21T21:08:43.869429845Z"} +2026/03/21 21:08:48 [metric_collector] {"stage_name":"metric_collector","events_processed":10974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2194.8,"last_update":"2026-03-21T21:08:43.869782411Z"} +2026/03/21 21:08:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:08:43.877721897Z"} +2026/03/21 21:08:48 [transform_engine] {"stage_name":"transform_engine","events_processed":365,"events_dropped":0,"avg_latency_ms":504.52933209801586,"throughput_eps":0,"last_update":"2026-03-21T21:08:43.965810481Z"} +2026/03/21 21:08:48 [detection_layer] {"stage_name":"detection_layer","events_processed":365,"events_dropped":0,"avg_latency_ms":18.27265849454528,"throughput_eps":0,"last_update":"2026-03-21T21:08:43.965829398Z"} +2026/03/21 21:08:48 ───────────────────────────────────────────────── +2026/03/21 21:08:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:08:53 [log_collector] {"stage_name":"log_collector","events_processed":17507,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3501.4,"last_update":"2026-03-21T21:08:48.870047289Z"} +2026/03/21 21:08:53 [metric_collector] {"stage_name":"metric_collector","events_processed":10979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2195.8,"last_update":"2026-03-21T21:08:48.870397009Z"} +2026/03/21 21:08:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:08:48.877562182Z"} +2026/03/21 21:08:53 [transform_engine] {"stage_name":"transform_engine","events_processed":366,"events_dropped":0,"avg_latency_ms":430.8880758784127,"throughput_eps":0,"last_update":"2026-03-21T21:08:49.101578741Z"} +2026/03/21 21:08:53 [detection_layer] {"stage_name":"detection_layer","events_processed":365,"events_dropped":0,"avg_latency_ms":18.27265849454528,"throughput_eps":0,"last_update":"2026-03-21T21:08:48.965283783Z"} +2026/03/21 21:08:53 ───────────────────────────────────────────────── +Saved state: 12 clusters, 17649 messages, reason: none +2026/03/21 21:08:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:08:58 [detection_layer] {"stage_name":"detection_layer","events_processed":366,"events_dropped":0,"avg_latency_ms":17.421531995636222,"throughput_eps":0,"last_update":"2026-03-21T21:08:53.96606396Z"} +2026/03/21 21:08:58 [log_collector] {"stage_name":"log_collector","events_processed":17648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3529.6,"last_update":"2026-03-21T21:08:53.869853561Z"} +2026/03/21 21:08:58 [metric_collector] {"stage_name":"metric_collector","events_processed":10989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2197.8,"last_update":"2026-03-21T21:08:58.869670605Z"} +2026/03/21 21:08:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:08:53.879582865Z"} +2026/03/21 21:08:58 [transform_engine] {"stage_name":"transform_engine","events_processed":366,"events_dropped":0,"avg_latency_ms":430.8880758784127,"throughput_eps":0,"last_update":"2026-03-21T21:08:53.96600053Z"} +2026/03/21 21:08:58 ───────────────────────────────────────────────── +2026/03/21 21:09:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:09:03 [log_collector] {"stage_name":"log_collector","events_processed":17651,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3530.2,"last_update":"2026-03-21T21:09:03.869412639Z"} +2026/03/21 21:09:03 [metric_collector] {"stage_name":"metric_collector","events_processed":10989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2197.8,"last_update":"2026-03-21T21:08:58.869670605Z"} +2026/03/21 21:09:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:08:58.882284063Z"} +2026/03/21 21:09:03 [transform_engine] {"stage_name":"transform_engine","events_processed":366,"events_dropped":0,"avg_latency_ms":430.8880758784127,"throughput_eps":0,"last_update":"2026-03-21T21:08:58.965470529Z"} +2026/03/21 21:09:03 [detection_layer] {"stage_name":"detection_layer","events_processed":366,"events_dropped":0,"avg_latency_ms":17.421531995636222,"throughput_eps":0,"last_update":"2026-03-21T21:08:58.965495186Z"} +2026/03/21 21:09:03 ───────────────────────────────────────────────── +2026/03/21 21:09:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:09:08 [log_collector] {"stage_name":"log_collector","events_processed":17662,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3532.4,"last_update":"2026-03-21T21:09:08.869909862Z"} +2026/03/21 21:09:08 [metric_collector] {"stage_name":"metric_collector","events_processed":10994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2198.8,"last_update":"2026-03-21T21:09:03.869808718Z"} +2026/03/21 21:09:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4400,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:09:03.876476798Z"} +2026/03/21 21:09:08 [transform_engine] {"stage_name":"transform_engine","events_processed":366,"events_dropped":0,"avg_latency_ms":430.8880758784127,"throughput_eps":0,"last_update":"2026-03-21T21:09:03.966095934Z"} +2026/03/21 21:09:08 [detection_layer] {"stage_name":"detection_layer","events_processed":366,"events_dropped":0,"avg_latency_ms":17.421531995636222,"throughput_eps":0,"last_update":"2026-03-21T21:09:03.966064715Z"} +2026/03/21 21:09:08 ───────────────────────────────────────────────── +2026/03/21 21:09:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:09:13 [transform_engine] {"stage_name":"transform_engine","events_processed":366,"events_dropped":0,"avg_latency_ms":430.8880758784127,"throughput_eps":0,"last_update":"2026-03-21T21:09:08.965494312Z"} +2026/03/21 21:09:13 [detection_layer] {"stage_name":"detection_layer","events_processed":366,"events_dropped":0,"avg_latency_ms":17.421531995636222,"throughput_eps":0,"last_update":"2026-03-21T21:09:08.965469845Z"} +2026/03/21 21:09:13 [log_collector] {"stage_name":"log_collector","events_processed":17678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3535.6,"last_update":"2026-03-21T21:09:13.870485275Z"} +2026/03/21 21:09:13 [metric_collector] {"stage_name":"metric_collector","events_processed":10999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2199.8,"last_update":"2026-03-21T21:09:08.870452831Z"} +2026/03/21 21:09:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4402,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:09:08.879339682Z"} +2026/03/21 21:09:13 ───────────────────────────────────────────────── +2026/03/21 21:09:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:09:18 [transform_engine] {"stage_name":"transform_engine","events_processed":366,"events_dropped":0,"avg_latency_ms":430.8880758784127,"throughput_eps":0,"last_update":"2026-03-21T21:09:13.965374284Z"} +2026/03/21 21:09:18 [detection_layer] {"stage_name":"detection_layer","events_processed":366,"events_dropped":0,"avg_latency_ms":17.421531995636222,"throughput_eps":0,"last_update":"2026-03-21T21:09:13.965344287Z"} +2026/03/21 21:09:18 [log_collector] {"stage_name":"log_collector","events_processed":17678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3535.6,"last_update":"2026-03-21T21:09:13.870485275Z"} +2026/03/21 21:09:18 [metric_collector] {"stage_name":"metric_collector","events_processed":11004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2200.8,"last_update":"2026-03-21T21:09:13.870897425Z"} +2026/03/21 21:09:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:09:13.879169957Z"} +2026/03/21 21:09:18 ───────────────────────────────────────────────── +2026/03/21 21:09:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:09:23 [detection_layer] {"stage_name":"detection_layer","events_processed":366,"events_dropped":0,"avg_latency_ms":17.421531995636222,"throughput_eps":0,"last_update":"2026-03-21T21:09:18.965461535Z"} +2026/03/21 21:09:23 [log_collector] {"stage_name":"log_collector","events_processed":17678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3535.6,"last_update":"2026-03-21T21:09:18.870324741Z"} +2026/03/21 21:09:23 [metric_collector] {"stage_name":"metric_collector","events_processed":11009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2201.8,"last_update":"2026-03-21T21:09:18.87066339Z"} +2026/03/21 21:09:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:09:18.879163639Z"} +2026/03/21 21:09:23 [transform_engine] {"stage_name":"transform_engine","events_processed":367,"events_dropped":0,"avg_latency_ms":367.5858771027302,"throughput_eps":0,"last_update":"2026-03-21T21:09:19.079809Z"} +2026/03/21 21:09:23 ───────────────────────────────────────────────── +2026/03/21 21:09:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:09:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4408,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:09:23.879492826Z"} +2026/03/21 21:09:28 [transform_engine] {"stage_name":"transform_engine","events_processed":367,"events_dropped":0,"avg_latency_ms":367.5858771027302,"throughput_eps":0,"last_update":"2026-03-21T21:09:23.965760684Z"} +2026/03/21 21:09:28 [detection_layer] {"stage_name":"detection_layer","events_processed":367,"events_dropped":0,"avg_latency_ms":17.54113379650898,"throughput_eps":0,"last_update":"2026-03-21T21:09:23.965715918Z"} +2026/03/21 21:09:28 [log_collector] {"stage_name":"log_collector","events_processed":17678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3535.6,"last_update":"2026-03-21T21:09:28.869619997Z"} +2026/03/21 21:09:28 [metric_collector] {"stage_name":"metric_collector","events_processed":11014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2202.8,"last_update":"2026-03-21T21:09:23.870483041Z"} +2026/03/21 21:09:28 ───────────────────────────────────────────────── +2026/03/21 21:09:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:09:33 [detection_layer] {"stage_name":"detection_layer","events_processed":367,"events_dropped":0,"avg_latency_ms":17.54113379650898,"throughput_eps":0,"last_update":"2026-03-21T21:09:28.965418748Z"} +2026/03/21 21:09:33 [log_collector] {"stage_name":"log_collector","events_processed":17678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3535.6,"last_update":"2026-03-21T21:09:28.869619997Z"} +2026/03/21 21:09:33 [metric_collector] {"stage_name":"metric_collector","events_processed":11019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2203.8,"last_update":"2026-03-21T21:09:28.870278588Z"} +2026/03/21 21:09:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:09:28.878202173Z"} +2026/03/21 21:09:33 [transform_engine] {"stage_name":"transform_engine","events_processed":367,"events_dropped":0,"avg_latency_ms":367.5858771027302,"throughput_eps":0,"last_update":"2026-03-21T21:09:28.965479524Z"} +2026/03/21 21:09:33 ───────────────────────────────────────────────── +2026/03/21 21:09:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:09:38 [metric_collector] {"stage_name":"metric_collector","events_processed":11024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2204.8,"last_update":"2026-03-21T21:09:33.869849915Z"} +2026/03/21 21:09:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:09:33.878409339Z"} +2026/03/21 21:09:38 [transform_engine] {"stage_name":"transform_engine","events_processed":367,"events_dropped":0,"avg_latency_ms":367.5858771027302,"throughput_eps":0,"last_update":"2026-03-21T21:09:33.965703051Z"} +2026/03/21 21:09:38 [detection_layer] {"stage_name":"detection_layer","events_processed":367,"events_dropped":0,"avg_latency_ms":17.54113379650898,"throughput_eps":0,"last_update":"2026-03-21T21:09:33.965632386Z"} +2026/03/21 21:09:38 [log_collector] {"stage_name":"log_collector","events_processed":17678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3535.6,"last_update":"2026-03-21T21:09:33.86943959Z"} +2026/03/21 21:09:38 ───────────────────────────────────────────────── +2026/03/21 21:09:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:09:43 [detection_layer] {"stage_name":"detection_layer","events_processed":367,"events_dropped":0,"avg_latency_ms":17.54113379650898,"throughput_eps":0,"last_update":"2026-03-21T21:09:38.966080065Z"} +2026/03/21 21:09:43 [log_collector] {"stage_name":"log_collector","events_processed":17678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3535.6,"last_update":"2026-03-21T21:09:43.869893864Z"} +2026/03/21 21:09:43 [metric_collector] {"stage_name":"metric_collector","events_processed":11029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2205.8,"last_update":"2026-03-21T21:09:38.870482028Z"} +2026/03/21 21:09:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:09:38.878645763Z"} +2026/03/21 21:09:43 [transform_engine] {"stage_name":"transform_engine","events_processed":367,"events_dropped":0,"avg_latency_ms":367.5858771027302,"throughput_eps":0,"last_update":"2026-03-21T21:09:38.966052953Z"} +2026/03/21 21:09:43 ───────────────────────────────────────────────── +2026/03/21 21:09:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:09:48 [log_collector] {"stage_name":"log_collector","events_processed":17678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3535.6,"last_update":"2026-03-21T21:09:43.869893864Z"} +2026/03/21 21:09:48 [metric_collector] {"stage_name":"metric_collector","events_processed":11034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2206.8,"last_update":"2026-03-21T21:09:43.870279653Z"} +2026/03/21 21:09:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:09:43.878939127Z"} +2026/03/21 21:09:48 [transform_engine] {"stage_name":"transform_engine","events_processed":367,"events_dropped":0,"avg_latency_ms":367.5858771027302,"throughput_eps":0,"last_update":"2026-03-21T21:09:43.965153112Z"} +2026/03/21 21:09:48 [detection_layer] {"stage_name":"detection_layer","events_processed":367,"events_dropped":0,"avg_latency_ms":17.54113379650898,"throughput_eps":0,"last_update":"2026-03-21T21:09:43.965413301Z"} +2026/03/21 21:09:48 ───────────────────────────────────────────────── +2026/03/21 21:09:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:09:53 [log_collector] {"stage_name":"log_collector","events_processed":17678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3535.6,"last_update":"2026-03-21T21:09:48.869563479Z"} +2026/03/21 21:09:53 [metric_collector] {"stage_name":"metric_collector","events_processed":11039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2207.8,"last_update":"2026-03-21T21:09:48.86991874Z"} +2026/03/21 21:09:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:09:48.87839295Z"} +2026/03/21 21:09:53 [transform_engine] {"stage_name":"transform_engine","events_processed":368,"events_dropped":0,"avg_latency_ms":308.35826668218414,"throughput_eps":0,"last_update":"2026-03-21T21:09:49.037076917Z"} +2026/03/21 21:09:53 [detection_layer] {"stage_name":"detection_layer","events_processed":367,"events_dropped":0,"avg_latency_ms":17.54113379650898,"throughput_eps":0,"last_update":"2026-03-21T21:09:48.965724936Z"} +2026/03/21 21:09:53 ───────────────────────────────────────────────── +2026/03/21 21:09:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:09:58 [log_collector] {"stage_name":"log_collector","events_processed":17678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3535.6,"last_update":"2026-03-21T21:09:58.869713956Z"} +2026/03/21 21:09:58 [metric_collector] {"stage_name":"metric_collector","events_processed":11044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2208.8,"last_update":"2026-03-21T21:09:53.87020155Z"} +2026/03/21 21:09:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4420,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:09:53.878464886Z"} +2026/03/21 21:09:58 [transform_engine] {"stage_name":"transform_engine","events_processed":368,"events_dropped":0,"avg_latency_ms":308.35826668218414,"throughput_eps":0,"last_update":"2026-03-21T21:09:53.965898556Z"} +2026/03/21 21:09:58 [detection_layer] {"stage_name":"detection_layer","events_processed":368,"events_dropped":0,"avg_latency_ms":18.198388437207186,"throughput_eps":0,"last_update":"2026-03-21T21:09:53.965823252Z"} +2026/03/21 21:09:58 ───────────────────────────────────────────────── +2026/03/21 21:10:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:10:03 [log_collector] {"stage_name":"log_collector","events_processed":17678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3535.6,"last_update":"2026-03-21T21:09:58.869713956Z"} +2026/03/21 21:10:03 [metric_collector] {"stage_name":"metric_collector","events_processed":11049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2209.8,"last_update":"2026-03-21T21:09:58.870343371Z"} +2026/03/21 21:10:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:09:58.878991585Z"} +2026/03/21 21:10:03 [transform_engine] {"stage_name":"transform_engine","events_processed":368,"events_dropped":0,"avg_latency_ms":308.35826668218414,"throughput_eps":0,"last_update":"2026-03-21T21:09:58.965102011Z"} +2026/03/21 21:10:03 [detection_layer] {"stage_name":"detection_layer","events_processed":368,"events_dropped":0,"avg_latency_ms":18.198388437207186,"throughput_eps":0,"last_update":"2026-03-21T21:09:58.966319573Z"} +2026/03/21 21:10:03 ───────────────────────────────────────────────── +2026/03/21 21:10:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:10:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:10:03.892789711Z"} +2026/03/21 21:10:08 [transform_engine] {"stage_name":"transform_engine","events_processed":368,"events_dropped":0,"avg_latency_ms":308.35826668218414,"throughput_eps":0,"last_update":"2026-03-21T21:10:03.966086026Z"} +2026/03/21 21:10:08 [detection_layer] {"stage_name":"detection_layer","events_processed":368,"events_dropped":0,"avg_latency_ms":18.198388437207186,"throughput_eps":0,"last_update":"2026-03-21T21:10:03.965986495Z"} +2026/03/21 21:10:08 [log_collector] {"stage_name":"log_collector","events_processed":17678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3535.6,"last_update":"2026-03-21T21:10:03.869983933Z"} +2026/03/21 21:10:08 [metric_collector] {"stage_name":"metric_collector","events_processed":11053,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2210.6,"last_update":"2026-03-21T21:10:03.869809108Z"} +2026/03/21 21:10:08 ───────────────────────────────────────────────── +2026/03/21 21:10:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:10:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:10:08.888952836Z"} +2026/03/21 21:10:13 [transform_engine] {"stage_name":"transform_engine","events_processed":368,"events_dropped":0,"avg_latency_ms":308.35826668218414,"throughput_eps":0,"last_update":"2026-03-21T21:10:08.966118722Z"} +2026/03/21 21:10:13 [detection_layer] {"stage_name":"detection_layer","events_processed":368,"events_dropped":0,"avg_latency_ms":18.198388437207186,"throughput_eps":0,"last_update":"2026-03-21T21:10:08.966099745Z"} +2026/03/21 21:10:13 [log_collector] {"stage_name":"log_collector","events_processed":17678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3535.6,"last_update":"2026-03-21T21:10:08.869879476Z"} +2026/03/21 21:10:13 [metric_collector] {"stage_name":"metric_collector","events_processed":11058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2211.6,"last_update":"2026-03-21T21:10:08.869408946Z"} +2026/03/21 21:10:13 ───────────────────────────────────────────────── +2026/03/21 21:10:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:10:18 [log_collector] {"stage_name":"log_collector","events_processed":17678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3535.6,"last_update":"2026-03-21T21:10:13.869421324Z"} +2026/03/21 21:10:18 [metric_collector] {"stage_name":"metric_collector","events_processed":11064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2212.8,"last_update":"2026-03-21T21:10:13.869781183Z"} +2026/03/21 21:10:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:10:13.87825901Z"} +2026/03/21 21:10:18 [transform_engine] {"stage_name":"transform_engine","events_processed":368,"events_dropped":0,"avg_latency_ms":308.35826668218414,"throughput_eps":0,"last_update":"2026-03-21T21:10:13.965523567Z"} +2026/03/21 21:10:18 [detection_layer] {"stage_name":"detection_layer","events_processed":368,"events_dropped":0,"avg_latency_ms":18.198388437207186,"throughput_eps":0,"last_update":"2026-03-21T21:10:13.965636944Z"} +2026/03/21 21:10:18 ───────────────────────────────────────────────── +2026/03/21 21:10:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:10:23 [metric_collector] {"stage_name":"metric_collector","events_processed":11069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2213.8,"last_update":"2026-03-21T21:10:18.869701038Z"} +2026/03/21 21:10:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:10:18.878517764Z"} +2026/03/21 21:10:23 [transform_engine] {"stage_name":"transform_engine","events_processed":369,"events_dropped":0,"avg_latency_ms":261.09938434574735,"throughput_eps":0,"last_update":"2026-03-21T21:10:19.037921209Z"} +2026/03/21 21:10:23 [detection_layer] {"stage_name":"detection_layer","events_processed":368,"events_dropped":0,"avg_latency_ms":18.198388437207186,"throughput_eps":0,"last_update":"2026-03-21T21:10:18.965823539Z"} +2026/03/21 21:10:23 [log_collector] {"stage_name":"log_collector","events_processed":17678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3535.6,"last_update":"2026-03-21T21:10:18.869674387Z"} +2026/03/21 21:10:23 ───────────────────────────────────────────────── +2026/03/21 21:10:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:10:28 [log_collector] {"stage_name":"log_collector","events_processed":17678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3535.6,"last_update":"2026-03-21T21:10:23.869672452Z"} +2026/03/21 21:10:28 [metric_collector] {"stage_name":"metric_collector","events_processed":11074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2214.8,"last_update":"2026-03-21T21:10:23.86984374Z"} +2026/03/21 21:10:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:10:23.879151727Z"} +2026/03/21 21:10:28 [transform_engine] {"stage_name":"transform_engine","events_processed":369,"events_dropped":0,"avg_latency_ms":261.09938434574735,"throughput_eps":0,"last_update":"2026-03-21T21:10:23.965382193Z"} +2026/03/21 21:10:28 [detection_layer] {"stage_name":"detection_layer","events_processed":369,"events_dropped":0,"avg_latency_ms":18.808928749765748,"throughput_eps":0,"last_update":"2026-03-21T21:10:23.965424033Z"} +2026/03/21 21:10:28 ───────────────────────────────────────────────── +Saved state: 12 clusters, 17679 messages, reason: none +2026/03/21 21:10:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:10:33 [log_collector] {"stage_name":"log_collector","events_processed":17678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3535.6,"last_update":"2026-03-21T21:10:28.870035709Z"} +2026/03/21 21:10:33 [metric_collector] {"stage_name":"metric_collector","events_processed":11079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2215.8,"last_update":"2026-03-21T21:10:28.87056866Z"} +2026/03/21 21:10:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:10:28.878739619Z"} +2026/03/21 21:10:33 [transform_engine] {"stage_name":"transform_engine","events_processed":369,"events_dropped":0,"avg_latency_ms":261.09938434574735,"throughput_eps":0,"last_update":"2026-03-21T21:10:28.965955923Z"} +2026/03/21 21:10:33 [detection_layer] {"stage_name":"detection_layer","events_processed":369,"events_dropped":0,"avg_latency_ms":18.808928749765748,"throughput_eps":0,"last_update":"2026-03-21T21:10:28.965910787Z"} +2026/03/21 21:10:33 ───────────────────────────────────────────────── +2026/03/21 21:10:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:10:38 [metric_collector] {"stage_name":"metric_collector","events_processed":11084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2216.8,"last_update":"2026-03-21T21:10:33.870140473Z"} +2026/03/21 21:10:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:10:33.877846842Z"} +2026/03/21 21:10:38 [transform_engine] {"stage_name":"transform_engine","events_processed":369,"events_dropped":0,"avg_latency_ms":261.09938434574735,"throughput_eps":0,"last_update":"2026-03-21T21:10:33.966161269Z"} +2026/03/21 21:10:38 [detection_layer] {"stage_name":"detection_layer","events_processed":369,"events_dropped":0,"avg_latency_ms":18.808928749765748,"throughput_eps":0,"last_update":"2026-03-21T21:10:33.966055457Z"} +2026/03/21 21:10:38 [log_collector] {"stage_name":"log_collector","events_processed":17692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3538.4,"last_update":"2026-03-21T21:10:33.8697948Z"} +2026/03/21 21:10:38 ───────────────────────────────────────────────── +2026/03/21 21:10:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:10:43 [detection_layer] {"stage_name":"detection_layer","events_processed":369,"events_dropped":0,"avg_latency_ms":18.808928749765748,"throughput_eps":0,"last_update":"2026-03-21T21:10:38.965799352Z"} +2026/03/21 21:10:43 [log_collector] {"stage_name":"log_collector","events_processed":17692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3538.4,"last_update":"2026-03-21T21:10:38.869412553Z"} +2026/03/21 21:10:43 [metric_collector] {"stage_name":"metric_collector","events_processed":11089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2217.8,"last_update":"2026-03-21T21:10:38.869751833Z"} +2026/03/21 21:10:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:10:38.878336605Z"} +2026/03/21 21:10:43 [transform_engine] {"stage_name":"transform_engine","events_processed":369,"events_dropped":0,"avg_latency_ms":261.09938434574735,"throughput_eps":0,"last_update":"2026-03-21T21:10:38.96582445Z"} +2026/03/21 21:10:43 ───────────────────────────────────────────────── +2026/03/21 21:10:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:10:48 [detection_layer] {"stage_name":"detection_layer","events_processed":369,"events_dropped":0,"avg_latency_ms":18.808928749765748,"throughput_eps":0,"last_update":"2026-03-21T21:10:43.965620355Z"} +2026/03/21 21:10:48 [log_collector] {"stage_name":"log_collector","events_processed":17692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3538.4,"last_update":"2026-03-21T21:10:43.869802016Z"} +2026/03/21 21:10:48 [metric_collector] {"stage_name":"metric_collector","events_processed":11094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2218.8,"last_update":"2026-03-21T21:10:43.870314588Z"} +2026/03/21 21:10:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:10:43.879331476Z"} +2026/03/21 21:10:48 [transform_engine] {"stage_name":"transform_engine","events_processed":369,"events_dropped":0,"avg_latency_ms":261.09938434574735,"throughput_eps":0,"last_update":"2026-03-21T21:10:43.965586611Z"} +2026/03/21 21:10:48 ───────────────────────────────────────────────── +2026/03/21 21:10:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:10:53 [detection_layer] {"stage_name":"detection_layer","events_processed":369,"events_dropped":0,"avg_latency_ms":18.808928749765748,"throughput_eps":0,"last_update":"2026-03-21T21:10:48.965704245Z"} +2026/03/21 21:10:53 [log_collector] {"stage_name":"log_collector","events_processed":17692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3538.4,"last_update":"2026-03-21T21:10:48.86988352Z"} +2026/03/21 21:10:53 [metric_collector] {"stage_name":"metric_collector","events_processed":11099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2219.8,"last_update":"2026-03-21T21:10:48.870388598Z"} +2026/03/21 21:10:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4442,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:10:48.878454095Z"} +2026/03/21 21:10:53 [transform_engine] {"stage_name":"transform_engine","events_processed":370,"events_dropped":0,"avg_latency_ms":231.6825110765979,"throughput_eps":0,"last_update":"2026-03-21T21:10:49.07969128Z"} +2026/03/21 21:10:53 ───────────────────────────────────────────────── +2026/03/21 21:10:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:10:58 [log_collector] {"stage_name":"log_collector","events_processed":17692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3538.4,"last_update":"2026-03-21T21:10:53.869404924Z"} +2026/03/21 21:10:58 [metric_collector] {"stage_name":"metric_collector","events_processed":11104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2220.8,"last_update":"2026-03-21T21:10:53.869922826Z"} +2026/03/21 21:10:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:10:53.878308596Z"} +2026/03/21 21:10:58 [transform_engine] {"stage_name":"transform_engine","events_processed":370,"events_dropped":0,"avg_latency_ms":231.6825110765979,"throughput_eps":0,"last_update":"2026-03-21T21:10:53.965618711Z"} +2026/03/21 21:10:58 [detection_layer] {"stage_name":"detection_layer","events_processed":370,"events_dropped":0,"avg_latency_ms":18.8285669998126,"throughput_eps":0,"last_update":"2026-03-21T21:10:53.965583824Z"} +2026/03/21 21:10:58 ───────────────────────────────────────────────── +2026/03/21 21:11:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:11:03 [transform_engine] {"stage_name":"transform_engine","events_processed":370,"events_dropped":0,"avg_latency_ms":231.6825110765979,"throughput_eps":0,"last_update":"2026-03-21T21:10:58.965306182Z"} +2026/03/21 21:11:03 [detection_layer] {"stage_name":"detection_layer","events_processed":370,"events_dropped":0,"avg_latency_ms":18.8285669998126,"throughput_eps":0,"last_update":"2026-03-21T21:10:58.965428066Z"} +2026/03/21 21:11:03 [log_collector] {"stage_name":"log_collector","events_processed":17692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3538.4,"last_update":"2026-03-21T21:10:58.870103844Z"} +2026/03/21 21:11:03 [metric_collector] {"stage_name":"metric_collector","events_processed":11109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2221.8,"last_update":"2026-03-21T21:10:58.870309648Z"} +2026/03/21 21:11:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4446,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:10:58.879042582Z"} +2026/03/21 21:11:03 ───────────────────────────────────────────────── +2026/03/21 21:11:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:11:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:11:03.878464607Z"} +2026/03/21 21:11:08 [transform_engine] {"stage_name":"transform_engine","events_processed":370,"events_dropped":0,"avg_latency_ms":231.6825110765979,"throughput_eps":0,"last_update":"2026-03-21T21:11:03.965748612Z"} +2026/03/21 21:11:08 [detection_layer] {"stage_name":"detection_layer","events_processed":370,"events_dropped":0,"avg_latency_ms":18.8285669998126,"throughput_eps":0,"last_update":"2026-03-21T21:11:03.965691683Z"} +2026/03/21 21:11:08 [log_collector] {"stage_name":"log_collector","events_processed":17692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3538.4,"last_update":"2026-03-21T21:11:08.869481209Z"} +2026/03/21 21:11:08 [metric_collector] {"stage_name":"metric_collector","events_processed":11114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2222.8,"last_update":"2026-03-21T21:11:03.86985567Z"} +2026/03/21 21:11:08 ───────────────────────────────────────────────── +2026/03/21 21:11:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:11:13 [log_collector] {"stage_name":"log_collector","events_processed":17692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3538.4,"last_update":"2026-03-21T21:11:08.869481209Z"} +2026/03/21 21:11:13 [metric_collector] {"stage_name":"metric_collector","events_processed":11119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2223.8,"last_update":"2026-03-21T21:11:08.870244191Z"} +2026/03/21 21:11:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:11:08.878924425Z"} +2026/03/21 21:11:13 [transform_engine] {"stage_name":"transform_engine","events_processed":370,"events_dropped":0,"avg_latency_ms":231.6825110765979,"throughput_eps":0,"last_update":"2026-03-21T21:11:08.966194803Z"} +2026/03/21 21:11:13 [detection_layer] {"stage_name":"detection_layer","events_processed":370,"events_dropped":0,"avg_latency_ms":18.8285669998126,"throughput_eps":0,"last_update":"2026-03-21T21:11:08.966143685Z"} +2026/03/21 21:11:13 ───────────────────────────────────────────────── +2026/03/21 21:11:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:11:18 [log_collector] {"stage_name":"log_collector","events_processed":17692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3538.4,"last_update":"2026-03-21T21:11:18.869792871Z"} +2026/03/21 21:11:18 [metric_collector] {"stage_name":"metric_collector","events_processed":11124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2224.8,"last_update":"2026-03-21T21:11:13.870738504Z"} +2026/03/21 21:11:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4452,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:11:13.879674968Z"} +2026/03/21 21:11:18 [transform_engine] {"stage_name":"transform_engine","events_processed":370,"events_dropped":0,"avg_latency_ms":231.6825110765979,"throughput_eps":0,"last_update":"2026-03-21T21:11:13.966008342Z"} +2026/03/21 21:11:18 [detection_layer] {"stage_name":"detection_layer","events_processed":370,"events_dropped":0,"avg_latency_ms":18.8285669998126,"throughput_eps":0,"last_update":"2026-03-21T21:11:13.965993193Z"} +2026/03/21 21:11:18 ───────────────────────────────────────────────── +2026/03/21 21:11:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:11:23 [transform_engine] {"stage_name":"transform_engine","events_processed":371,"events_dropped":0,"avg_latency_ms":202.37068626127834,"throughput_eps":0,"last_update":"2026-03-21T21:11:19.050981139Z"} +2026/03/21 21:11:23 [detection_layer] {"stage_name":"detection_layer","events_processed":370,"events_dropped":0,"avg_latency_ms":18.8285669998126,"throughput_eps":0,"last_update":"2026-03-21T21:11:18.965781256Z"} +2026/03/21 21:11:23 [log_collector] {"stage_name":"log_collector","events_processed":17692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3538.4,"last_update":"2026-03-21T21:11:18.869792871Z"} +2026/03/21 21:11:23 [metric_collector] {"stage_name":"metric_collector","events_processed":11129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2225.8,"last_update":"2026-03-21T21:11:18.870203116Z"} +2026/03/21 21:11:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:11:18.878408481Z"} +2026/03/21 21:11:23 ───────────────────────────────────────────────── +2026/03/21 21:11:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:11:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:11:23.878333267Z"} +2026/03/21 21:11:28 [transform_engine] {"stage_name":"transform_engine","events_processed":371,"events_dropped":0,"avg_latency_ms":202.37068626127834,"throughput_eps":0,"last_update":"2026-03-21T21:11:23.965527911Z"} +2026/03/21 21:11:28 [detection_layer] {"stage_name":"detection_layer","events_processed":371,"events_dropped":0,"avg_latency_ms":19.25163579985008,"throughput_eps":0,"last_update":"2026-03-21T21:11:23.965567447Z"} +2026/03/21 21:11:28 [log_collector] {"stage_name":"log_collector","events_processed":17692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3538.4,"last_update":"2026-03-21T21:11:23.86958353Z"} +2026/03/21 21:11:28 [metric_collector] {"stage_name":"metric_collector","events_processed":11134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2226.8,"last_update":"2026-03-21T21:11:23.869909704Z"} +2026/03/21 21:11:28 ───────────────────────────────────────────────── +2026/03/21 21:11:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:11:33 [metric_collector] {"stage_name":"metric_collector","events_processed":11139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2227.8,"last_update":"2026-03-21T21:11:28.870784614Z"} +2026/03/21 21:11:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:11:28.878544946Z"} +2026/03/21 21:11:33 [transform_engine] {"stage_name":"transform_engine","events_processed":371,"events_dropped":0,"avg_latency_ms":202.37068626127834,"throughput_eps":0,"last_update":"2026-03-21T21:11:28.965753356Z"} +2026/03/21 21:11:33 [detection_layer] {"stage_name":"detection_layer","events_processed":371,"events_dropped":0,"avg_latency_ms":19.25163579985008,"throughput_eps":0,"last_update":"2026-03-21T21:11:28.965852727Z"} +2026/03/21 21:11:33 [log_collector] {"stage_name":"log_collector","events_processed":17692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3538.4,"last_update":"2026-03-21T21:11:28.870158074Z"} +2026/03/21 21:11:33 ───────────────────────────────────────────────── +Saved state: 12 clusters, 17693 messages, reason: none +2026/03/21 21:11:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:11:38 [metric_collector] {"stage_name":"metric_collector","events_processed":11144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2228.8,"last_update":"2026-03-21T21:11:33.869901178Z"} +2026/03/21 21:11:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:11:33.87877879Z"} +2026/03/21 21:11:38 [transform_engine] {"stage_name":"transform_engine","events_processed":371,"events_dropped":0,"avg_latency_ms":202.37068626127834,"throughput_eps":0,"last_update":"2026-03-21T21:11:33.965994534Z"} +2026/03/21 21:11:38 [detection_layer] {"stage_name":"detection_layer","events_processed":371,"events_dropped":0,"avg_latency_ms":19.25163579985008,"throughput_eps":0,"last_update":"2026-03-21T21:11:33.966102881Z"} +2026/03/21 21:11:38 [log_collector] {"stage_name":"log_collector","events_processed":17692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3538.4,"last_update":"2026-03-21T21:11:33.869518866Z"} +2026/03/21 21:11:38 ───────────────────────────────────────────────── +2026/03/21 21:11:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:11:43 [log_collector] {"stage_name":"log_collector","events_processed":17697,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3539.4,"last_update":"2026-03-21T21:11:43.86940556Z"} +2026/03/21 21:11:43 [metric_collector] {"stage_name":"metric_collector","events_processed":11149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2229.8,"last_update":"2026-03-21T21:11:38.870546389Z"} +2026/03/21 21:11:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:11:38.890291184Z"} +2026/03/21 21:11:43 [transform_engine] {"stage_name":"transform_engine","events_processed":371,"events_dropped":0,"avg_latency_ms":202.37068626127834,"throughput_eps":0,"last_update":"2026-03-21T21:11:38.965461749Z"} +2026/03/21 21:11:43 [detection_layer] {"stage_name":"detection_layer","events_processed":371,"events_dropped":0,"avg_latency_ms":19.25163579985008,"throughput_eps":0,"last_update":"2026-03-21T21:11:38.965483772Z"} +2026/03/21 21:11:43 ───────────────────────────────────────────────── +2026/03/21 21:11:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:11:48 [log_collector] {"stage_name":"log_collector","events_processed":17697,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3539.4,"last_update":"2026-03-21T21:11:43.86940556Z"} +2026/03/21 21:11:48 [metric_collector] {"stage_name":"metric_collector","events_processed":11154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2230.8,"last_update":"2026-03-21T21:11:43.871597267Z"} +2026/03/21 21:11:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:11:43.877148329Z"} +2026/03/21 21:11:48 [transform_engine] {"stage_name":"transform_engine","events_processed":371,"events_dropped":0,"avg_latency_ms":202.37068626127834,"throughput_eps":0,"last_update":"2026-03-21T21:11:43.965296549Z"} +2026/03/21 21:11:48 [detection_layer] {"stage_name":"detection_layer","events_processed":371,"events_dropped":0,"avg_latency_ms":19.25163579985008,"throughput_eps":0,"last_update":"2026-03-21T21:11:43.965314955Z"} +2026/03/21 21:11:48 ───────────────────────────────────────────────── +2026/03/21 21:11:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:11:53 [metric_collector] {"stage_name":"metric_collector","events_processed":11159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2231.8,"last_update":"2026-03-21T21:11:48.869706727Z"} +2026/03/21 21:11:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:11:48.879430971Z"} +2026/03/21 21:11:53 [transform_engine] {"stage_name":"transform_engine","events_processed":372,"events_dropped":0,"avg_latency_ms":735.0442002090227,"throughput_eps":0,"last_update":"2026-03-21T21:11:51.830874238Z"} +2026/03/21 21:11:53 [detection_layer] {"stage_name":"detection_layer","events_processed":371,"events_dropped":0,"avg_latency_ms":19.25163579985008,"throughput_eps":0,"last_update":"2026-03-21T21:11:48.968386708Z"} +2026/03/21 21:11:53 [log_collector] {"stage_name":"log_collector","events_processed":17697,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3539.4,"last_update":"2026-03-21T21:11:48.869408836Z"} +2026/03/21 21:11:53 ───────────────────────────────────────────────── +2026/03/21 21:11:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:11:58 [log_collector] {"stage_name":"log_collector","events_processed":17697,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3539.4,"last_update":"2026-03-21T21:11:53.870949257Z"} +2026/03/21 21:11:58 [metric_collector] {"stage_name":"metric_collector","events_processed":11164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2232.8,"last_update":"2026-03-21T21:11:53.870686022Z"} +2026/03/21 21:11:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:11:53.87720624Z"} +2026/03/21 21:11:58 [transform_engine] {"stage_name":"transform_engine","events_processed":372,"events_dropped":0,"avg_latency_ms":735.0442002090227,"throughput_eps":0,"last_update":"2026-03-21T21:11:53.965388977Z"} +2026/03/21 21:11:58 [detection_layer] {"stage_name":"detection_layer","events_processed":372,"events_dropped":0,"avg_latency_ms":18.476817039880068,"throughput_eps":0,"last_update":"2026-03-21T21:11:53.965441227Z"} +2026/03/21 21:11:58 ───────────────────────────────────────────────── +2026/03/21 21:12:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:12:03 [log_collector] {"stage_name":"log_collector","events_processed":17697,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3539.4,"last_update":"2026-03-21T21:11:58.869455368Z"} +2026/03/21 21:12:03 [metric_collector] {"stage_name":"metric_collector","events_processed":11169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2233.8,"last_update":"2026-03-21T21:11:58.869657515Z"} +2026/03/21 21:12:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4470,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:11:58.876583479Z"} +2026/03/21 21:12:03 [transform_engine] {"stage_name":"transform_engine","events_processed":372,"events_dropped":0,"avg_latency_ms":735.0442002090227,"throughput_eps":0,"last_update":"2026-03-21T21:11:58.965767934Z"} +2026/03/21 21:12:03 [detection_layer] {"stage_name":"detection_layer","events_processed":372,"events_dropped":0,"avg_latency_ms":18.476817039880068,"throughput_eps":0,"last_update":"2026-03-21T21:11:58.965746723Z"} +2026/03/21 21:12:03 ───────────────────────────────────────────────── +2026/03/21 21:12:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:12:08 [transform_engine] {"stage_name":"transform_engine","events_processed":372,"events_dropped":0,"avg_latency_ms":735.0442002090227,"throughput_eps":0,"last_update":"2026-03-21T21:12:03.965369004Z"} +2026/03/21 21:12:08 [detection_layer] {"stage_name":"detection_layer","events_processed":372,"events_dropped":0,"avg_latency_ms":18.476817039880068,"throughput_eps":0,"last_update":"2026-03-21T21:12:03.965423027Z"} +2026/03/21 21:12:08 [log_collector] {"stage_name":"log_collector","events_processed":17697,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3539.4,"last_update":"2026-03-21T21:12:03.869632672Z"} +2026/03/21 21:12:08 [metric_collector] {"stage_name":"metric_collector","events_processed":11174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2234.8,"last_update":"2026-03-21T21:12:03.870088605Z"} +2026/03/21 21:12:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:12:03.877086256Z"} +2026/03/21 21:12:08 ───────────────────────────────────────────────── +2026/03/21 21:12:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:12:13 [log_collector] {"stage_name":"log_collector","events_processed":17697,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3539.4,"last_update":"2026-03-21T21:12:08.869817679Z"} +2026/03/21 21:12:13 [metric_collector] {"stage_name":"metric_collector","events_processed":11179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2235.8,"last_update":"2026-03-21T21:12:08.870219218Z"} +2026/03/21 21:12:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:12:08.878639445Z"} +2026/03/21 21:12:13 [transform_engine] {"stage_name":"transform_engine","events_processed":372,"events_dropped":0,"avg_latency_ms":735.0442002090227,"throughput_eps":0,"last_update":"2026-03-21T21:12:08.965813539Z"} +2026/03/21 21:12:13 [detection_layer] {"stage_name":"detection_layer","events_processed":372,"events_dropped":0,"avg_latency_ms":18.476817039880068,"throughput_eps":0,"last_update":"2026-03-21T21:12:08.965844198Z"} +2026/03/21 21:12:13 ───────────────────────────────────────────────── +2026/03/21 21:12:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:12:18 [log_collector] {"stage_name":"log_collector","events_processed":17697,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3539.4,"last_update":"2026-03-21T21:12:13.870162075Z"} +2026/03/21 21:12:18 [metric_collector] {"stage_name":"metric_collector","events_processed":11189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2237.8,"last_update":"2026-03-21T21:12:18.87032811Z"} +2026/03/21 21:12:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4476,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:12:13.877501562Z"} +2026/03/21 21:12:18 [transform_engine] {"stage_name":"transform_engine","events_processed":372,"events_dropped":0,"avg_latency_ms":735.0442002090227,"throughput_eps":0,"last_update":"2026-03-21T21:12:13.965835498Z"} +2026/03/21 21:12:18 [detection_layer] {"stage_name":"detection_layer","events_processed":372,"events_dropped":0,"avg_latency_ms":18.476817039880068,"throughput_eps":0,"last_update":"2026-03-21T21:12:13.965866247Z"} +2026/03/21 21:12:18 ───────────────────────────────────────────────── +2026/03/21 21:12:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:12:23 [log_collector] {"stage_name":"log_collector","events_processed":17706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3541.2,"last_update":"2026-03-21T21:12:18.870418013Z"} +2026/03/21 21:12:23 [metric_collector] {"stage_name":"metric_collector","events_processed":11189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2237.8,"last_update":"2026-03-21T21:12:18.87032811Z"} +2026/03/21 21:12:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:12:18.877090432Z"} +2026/03/21 21:12:23 [transform_engine] {"stage_name":"transform_engine","events_processed":373,"events_dropped":0,"avg_latency_ms":1013.5993563672182,"throughput_eps":0,"last_update":"2026-03-21T21:12:21.093257694Z"} +2026/03/21 21:12:23 [detection_layer] {"stage_name":"detection_layer","events_processed":372,"events_dropped":0,"avg_latency_ms":18.476817039880068,"throughput_eps":0,"last_update":"2026-03-21T21:12:18.965409859Z"} +2026/03/21 21:12:23 ───────────────────────────────────────────────── +2026/03/21 21:12:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:12:28 [detection_layer] {"stage_name":"detection_layer","events_processed":373,"events_dropped":0,"avg_latency_ms":18.034177231904057,"throughput_eps":0,"last_update":"2026-03-21T21:12:23.965881042Z"} +2026/03/21 21:12:28 [log_collector] {"stage_name":"log_collector","events_processed":17708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3541.6,"last_update":"2026-03-21T21:12:23.869403119Z"} +2026/03/21 21:12:28 [metric_collector] {"stage_name":"metric_collector","events_processed":11194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2238.8,"last_update":"2026-03-21T21:12:23.87005196Z"} +2026/03/21 21:12:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4480,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:12:23.878694082Z"} +2026/03/21 21:12:28 [transform_engine] {"stage_name":"transform_engine","events_processed":373,"events_dropped":0,"avg_latency_ms":1013.5993563672182,"throughput_eps":0,"last_update":"2026-03-21T21:12:23.965888235Z"} +2026/03/21 21:12:28 ───────────────────────────────────────────────── +2026/03/21 21:12:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:12:33 [detection_layer] {"stage_name":"detection_layer","events_processed":373,"events_dropped":0,"avg_latency_ms":18.034177231904057,"throughput_eps":0,"last_update":"2026-03-21T21:12:28.965474844Z"} +2026/03/21 21:12:33 [log_collector] {"stage_name":"log_collector","events_processed":17963,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3592.6,"last_update":"2026-03-21T21:12:33.869412891Z"} +2026/03/21 21:12:33 [metric_collector] {"stage_name":"metric_collector","events_processed":11198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2239.6,"last_update":"2026-03-21T21:12:28.870271833Z"} +2026/03/21 21:12:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4482,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:12:28.877613513Z"} +2026/03/21 21:12:33 [transform_engine] {"stage_name":"transform_engine","events_processed":373,"events_dropped":0,"avg_latency_ms":1013.5993563672182,"throughput_eps":0,"last_update":"2026-03-21T21:12:28.965491035Z"} +2026/03/21 21:12:33 ───────────────────────────────────────────────── +Saved state: 12 clusters, 17966 messages, reason: none +2026/03/21 21:12:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:12:38 [transform_engine] {"stage_name":"transform_engine","events_processed":373,"events_dropped":0,"avg_latency_ms":1013.5993563672182,"throughput_eps":0,"last_update":"2026-03-21T21:12:33.965108145Z"} +2026/03/21 21:12:38 [detection_layer] {"stage_name":"detection_layer","events_processed":373,"events_dropped":0,"avg_latency_ms":18.034177231904057,"throughput_eps":0,"last_update":"2026-03-21T21:12:33.966401902Z"} +2026/03/21 21:12:38 [log_collector] {"stage_name":"log_collector","events_processed":17963,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3592.6,"last_update":"2026-03-21T21:12:33.869412891Z"} +2026/03/21 21:12:38 [metric_collector] {"stage_name":"metric_collector","events_processed":11204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2240.8,"last_update":"2026-03-21T21:12:33.869853355Z"} +2026/03/21 21:12:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:12:33.878944766Z"} +2026/03/21 21:12:38 ───────────────────────────────────────────────── +2026/03/21 21:12:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:12:43 [log_collector] {"stage_name":"log_collector","events_processed":18057,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3611.4,"last_update":"2026-03-21T21:12:43.869957986Z"} +2026/03/21 21:12:43 [metric_collector] {"stage_name":"metric_collector","events_processed":11209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2241.8,"last_update":"2026-03-21T21:12:38.869914987Z"} +2026/03/21 21:12:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4486,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:12:38.878975539Z"} +2026/03/21 21:12:43 [transform_engine] {"stage_name":"transform_engine","events_processed":373,"events_dropped":0,"avg_latency_ms":1013.5993563672182,"throughput_eps":0,"last_update":"2026-03-21T21:12:38.965058294Z"} +2026/03/21 21:12:43 [detection_layer] {"stage_name":"detection_layer","events_processed":373,"events_dropped":0,"avg_latency_ms":18.034177231904057,"throughput_eps":0,"last_update":"2026-03-21T21:12:38.966391898Z"} +2026/03/21 21:12:43 ───────────────────────────────────────────────── +2026/03/21 21:12:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:12:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:12:43.878582154Z"} +2026/03/21 21:12:48 [transform_engine] {"stage_name":"transform_engine","events_processed":373,"events_dropped":0,"avg_latency_ms":1013.5993563672182,"throughput_eps":0,"last_update":"2026-03-21T21:12:43.965828376Z"} +2026/03/21 21:12:48 [detection_layer] {"stage_name":"detection_layer","events_processed":373,"events_dropped":0,"avg_latency_ms":18.034177231904057,"throughput_eps":0,"last_update":"2026-03-21T21:12:43.965848354Z"} +2026/03/21 21:12:48 [log_collector] {"stage_name":"log_collector","events_processed":18057,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3611.4,"last_update":"2026-03-21T21:12:43.869957986Z"} +2026/03/21 21:12:48 [metric_collector] {"stage_name":"metric_collector","events_processed":11214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2242.8,"last_update":"2026-03-21T21:12:43.870313888Z"} +2026/03/21 21:12:48 ───────────────────────────────────────────────── +2026/03/21 21:12:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:12:53 [log_collector] {"stage_name":"log_collector","events_processed":18057,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3611.4,"last_update":"2026-03-21T21:12:48.869901443Z"} +2026/03/21 21:12:53 [metric_collector] {"stage_name":"metric_collector","events_processed":11219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2243.8,"last_update":"2026-03-21T21:12:48.869796673Z"} +2026/03/21 21:12:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4490,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:12:48.87898991Z"} +2026/03/21 21:12:53 [transform_engine] {"stage_name":"transform_engine","events_processed":374,"events_dropped":0,"avg_latency_ms":834.8432842937747,"throughput_eps":0,"last_update":"2026-03-21T21:12:49.08499609Z"} +2026/03/21 21:12:53 [detection_layer] {"stage_name":"detection_layer","events_processed":373,"events_dropped":0,"avg_latency_ms":18.034177231904057,"throughput_eps":0,"last_update":"2026-03-21T21:12:48.96632823Z"} +2026/03/21 21:12:53 ───────────────────────────────────────────────── +2026/03/21 21:12:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:12:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:12:53.879150194Z"} +2026/03/21 21:12:58 [transform_engine] {"stage_name":"transform_engine","events_processed":374,"events_dropped":0,"avg_latency_ms":834.8432842937747,"throughput_eps":0,"last_update":"2026-03-21T21:12:53.965378998Z"} +2026/03/21 21:12:58 [detection_layer] {"stage_name":"detection_layer","events_processed":374,"events_dropped":0,"avg_latency_ms":18.457492185523247,"throughput_eps":0,"last_update":"2026-03-21T21:12:53.965366544Z"} +2026/03/21 21:12:58 [log_collector] {"stage_name":"log_collector","events_processed":18057,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3611.4,"last_update":"2026-03-21T21:12:58.869428835Z"} +2026/03/21 21:12:58 [metric_collector] {"stage_name":"metric_collector","events_processed":11224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2244.8,"last_update":"2026-03-21T21:12:53.870379165Z"} +2026/03/21 21:12:58 ───────────────────────────────────────────────── +2026/03/21 21:13:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:13:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:12:58.878665735Z"} +2026/03/21 21:13:03 [transform_engine] {"stage_name":"transform_engine","events_processed":374,"events_dropped":0,"avg_latency_ms":834.8432842937747,"throughput_eps":0,"last_update":"2026-03-21T21:12:58.966079559Z"} +2026/03/21 21:13:03 [detection_layer] {"stage_name":"detection_layer","events_processed":374,"events_dropped":0,"avg_latency_ms":18.457492185523247,"throughput_eps":0,"last_update":"2026-03-21T21:12:58.966062336Z"} +2026/03/21 21:13:03 [log_collector] {"stage_name":"log_collector","events_processed":18057,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3611.4,"last_update":"2026-03-21T21:13:03.869417724Z"} +2026/03/21 21:13:03 [metric_collector] {"stage_name":"metric_collector","events_processed":11229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2245.8,"last_update":"2026-03-21T21:12:58.869890789Z"} +2026/03/21 21:13:03 ───────────────────────────────────────────────── +2026/03/21 21:13:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:13:08 [log_collector] {"stage_name":"log_collector","events_processed":18057,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3611.4,"last_update":"2026-03-21T21:13:08.869899781Z"} +2026/03/21 21:13:08 [metric_collector] {"stage_name":"metric_collector","events_processed":11234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2246.8,"last_update":"2026-03-21T21:13:03.869988668Z"} +2026/03/21 21:13:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4496,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:13:03.878535697Z"} +2026/03/21 21:13:08 [transform_engine] {"stage_name":"transform_engine","events_processed":374,"events_dropped":0,"avg_latency_ms":834.8432842937747,"throughput_eps":0,"last_update":"2026-03-21T21:13:03.965710573Z"} +2026/03/21 21:13:08 [detection_layer] {"stage_name":"detection_layer","events_processed":374,"events_dropped":0,"avg_latency_ms":18.457492185523247,"throughput_eps":0,"last_update":"2026-03-21T21:13:03.96569855Z"} +2026/03/21 21:13:08 ───────────────────────────────────────────────── +2026/03/21 21:13:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:13:13 [detection_layer] {"stage_name":"detection_layer","events_processed":374,"events_dropped":0,"avg_latency_ms":18.457492185523247,"throughput_eps":0,"last_update":"2026-03-21T21:13:08.966000602Z"} +2026/03/21 21:13:13 [log_collector] {"stage_name":"log_collector","events_processed":18057,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3611.4,"last_update":"2026-03-21T21:13:08.869899781Z"} +2026/03/21 21:13:13 [metric_collector] {"stage_name":"metric_collector","events_processed":11239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2247.8,"last_update":"2026-03-21T21:13:08.870527092Z"} +2026/03/21 21:13:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4498,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:13:08.879579559Z"} +2026/03/21 21:13:13 [transform_engine] {"stage_name":"transform_engine","events_processed":374,"events_dropped":0,"avg_latency_ms":834.8432842937747,"throughput_eps":0,"last_update":"2026-03-21T21:13:08.966013667Z"} +2026/03/21 21:13:13 ───────────────────────────────────────────────── +2026/03/21 21:13:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:13:18 [detection_layer] {"stage_name":"detection_layer","events_processed":374,"events_dropped":0,"avg_latency_ms":18.457492185523247,"throughput_eps":0,"last_update":"2026-03-21T21:13:13.965929048Z"} +2026/03/21 21:13:18 [log_collector] {"stage_name":"log_collector","events_processed":18057,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3611.4,"last_update":"2026-03-21T21:13:13.870183057Z"} +2026/03/21 21:13:18 [metric_collector] {"stage_name":"metric_collector","events_processed":11244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2248.8,"last_update":"2026-03-21T21:13:13.870643388Z"} +2026/03/21 21:13:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:13:13.87972993Z"} +2026/03/21 21:13:18 [transform_engine] {"stage_name":"transform_engine","events_processed":374,"events_dropped":0,"avg_latency_ms":834.8432842937747,"throughput_eps":0,"last_update":"2026-03-21T21:13:13.965941933Z"} +2026/03/21 21:13:18 ───────────────────────────────────────────────── +2026/03/21 21:13:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:13:23 [log_collector] {"stage_name":"log_collector","events_processed":18057,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3611.4,"last_update":"2026-03-21T21:13:23.869417934Z"} +2026/03/21 21:13:23 [metric_collector] {"stage_name":"metric_collector","events_processed":11249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2249.8,"last_update":"2026-03-21T21:13:18.869800118Z"} +2026/03/21 21:13:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:13:18.878503747Z"} +2026/03/21 21:13:23 [transform_engine] {"stage_name":"transform_engine","events_processed":375,"events_dropped":0,"avg_latency_ms":681.8747942350197,"throughput_eps":0,"last_update":"2026-03-21T21:13:19.035841008Z"} +2026/03/21 21:13:23 [detection_layer] {"stage_name":"detection_layer","events_processed":374,"events_dropped":0,"avg_latency_ms":18.457492185523247,"throughput_eps":0,"last_update":"2026-03-21T21:13:18.965826326Z"} +2026/03/21 21:13:23 ───────────────────────────────────────────────── +2026/03/21 21:13:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:13:28 [log_collector] {"stage_name":"log_collector","events_processed":18057,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3611.4,"last_update":"2026-03-21T21:13:23.869417934Z"} +2026/03/21 21:13:28 [metric_collector] {"stage_name":"metric_collector","events_processed":11253,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2250.6,"last_update":"2026-03-21T21:13:23.86978209Z"} +2026/03/21 21:13:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:13:23.878937154Z"} +2026/03/21 21:13:28 [transform_engine] {"stage_name":"transform_engine","events_processed":375,"events_dropped":0,"avg_latency_ms":681.8747942350197,"throughput_eps":0,"last_update":"2026-03-21T21:13:23.965057461Z"} +2026/03/21 21:13:28 [detection_layer] {"stage_name":"detection_layer","events_processed":375,"events_dropped":0,"avg_latency_ms":18.8604855484186,"throughput_eps":0,"last_update":"2026-03-21T21:13:23.966168449Z"} +2026/03/21 21:13:28 ───────────────────────────────────────────────── +2026/03/21 21:13:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:13:33 [log_collector] {"stage_name":"log_collector","events_processed":18057,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3611.4,"last_update":"2026-03-21T21:13:28.870099145Z"} +2026/03/21 21:13:33 [metric_collector] {"stage_name":"metric_collector","events_processed":11258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2251.6,"last_update":"2026-03-21T21:13:28.870105597Z"} +2026/03/21 21:13:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4506,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:13:28.87916637Z"} +2026/03/21 21:13:33 [transform_engine] {"stage_name":"transform_engine","events_processed":375,"events_dropped":0,"avg_latency_ms":681.8747942350197,"throughput_eps":0,"last_update":"2026-03-21T21:13:28.965394573Z"} +2026/03/21 21:13:33 [detection_layer] {"stage_name":"detection_layer","events_processed":375,"events_dropped":0,"avg_latency_ms":18.8604855484186,"throughput_eps":0,"last_update":"2026-03-21T21:13:28.965384173Z"} +2026/03/21 21:13:33 ───────────────────────────────────────────────── +2026/03/21 21:13:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:13:38 [log_collector] {"stage_name":"log_collector","events_processed":18057,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3611.4,"last_update":"2026-03-21T21:13:38.869895511Z"} +2026/03/21 21:13:38 [metric_collector] {"stage_name":"metric_collector","events_processed":11263,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2252.6,"last_update":"2026-03-21T21:13:33.870104712Z"} +2026/03/21 21:13:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:13:33.878543684Z"} +2026/03/21 21:13:38 [transform_engine] {"stage_name":"transform_engine","events_processed":375,"events_dropped":0,"avg_latency_ms":681.8747942350197,"throughput_eps":0,"last_update":"2026-03-21T21:13:33.965879629Z"} +2026/03/21 21:13:38 [detection_layer] {"stage_name":"detection_layer","events_processed":375,"events_dropped":0,"avg_latency_ms":18.8604855484186,"throughput_eps":0,"last_update":"2026-03-21T21:13:33.965873708Z"} +2026/03/21 21:13:38 ───────────────────────────────────────────────── +2026/03/21 21:13:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:13:43 [log_collector] {"stage_name":"log_collector","events_processed":18057,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3611.4,"last_update":"2026-03-21T21:13:38.869895511Z"} +2026/03/21 21:13:43 [metric_collector] {"stage_name":"metric_collector","events_processed":11269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2253.8,"last_update":"2026-03-21T21:13:38.870218139Z"} +2026/03/21 21:13:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:13:38.878922639Z"} +2026/03/21 21:13:43 [transform_engine] {"stage_name":"transform_engine","events_processed":375,"events_dropped":0,"avg_latency_ms":681.8747942350197,"throughput_eps":0,"last_update":"2026-03-21T21:13:38.966113326Z"} +2026/03/21 21:13:43 [detection_layer] {"stage_name":"detection_layer","events_processed":375,"events_dropped":0,"avg_latency_ms":18.8604855484186,"throughput_eps":0,"last_update":"2026-03-21T21:13:38.966102796Z"} +2026/03/21 21:13:43 ───────────────────────────────────────────────── +2026/03/21 21:13:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:13:48 [metric_collector] {"stage_name":"metric_collector","events_processed":11278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2255.6,"last_update":"2026-03-21T21:13:48.869629055Z"} +2026/03/21 21:13:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4512,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:13:43.879437398Z"} +2026/03/21 21:13:48 [transform_engine] {"stage_name":"transform_engine","events_processed":375,"events_dropped":0,"avg_latency_ms":681.8747942350197,"throughput_eps":0,"last_update":"2026-03-21T21:13:43.965793315Z"} +2026/03/21 21:13:48 [detection_layer] {"stage_name":"detection_layer","events_processed":375,"events_dropped":0,"avg_latency_ms":18.8604855484186,"throughput_eps":0,"last_update":"2026-03-21T21:13:43.965771663Z"} +2026/03/21 21:13:48 [log_collector] {"stage_name":"log_collector","events_processed":18057,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3611.4,"last_update":"2026-03-21T21:13:43.870192411Z"} +2026/03/21 21:13:48 ───────────────────────────────────────────────── +2026/03/21 21:13:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:13:53 [transform_engine] {"stage_name":"transform_engine","events_processed":376,"events_dropped":0,"avg_latency_ms":559.3435367880159,"throughput_eps":0,"last_update":"2026-03-21T21:13:49.0351921Z"} +2026/03/21 21:13:53 [detection_layer] {"stage_name":"detection_layer","events_processed":375,"events_dropped":0,"avg_latency_ms":18.8604855484186,"throughput_eps":0,"last_update":"2026-03-21T21:13:48.965857972Z"} +2026/03/21 21:13:53 [log_collector] {"stage_name":"log_collector","events_processed":18057,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3611.4,"last_update":"2026-03-21T21:13:53.870217917Z"} +2026/03/21 21:13:53 [metric_collector] {"stage_name":"metric_collector","events_processed":11278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2255.6,"last_update":"2026-03-21T21:13:48.869629055Z"} +2026/03/21 21:13:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:13:48.878670531Z"} +2026/03/21 21:13:53 ───────────────────────────────────────────────── +2026/03/21 21:13:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:13:58 [log_collector] {"stage_name":"log_collector","events_processed":18057,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3611.4,"last_update":"2026-03-21T21:13:53.870217917Z"} +2026/03/21 21:13:58 [metric_collector] {"stage_name":"metric_collector","events_processed":11284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2256.8,"last_update":"2026-03-21T21:13:53.870758663Z"} +2026/03/21 21:13:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:13:53.879433948Z"} +2026/03/21 21:13:58 [transform_engine] {"stage_name":"transform_engine","events_processed":376,"events_dropped":0,"avg_latency_ms":559.3435367880159,"throughput_eps":0,"last_update":"2026-03-21T21:13:53.965742204Z"} +2026/03/21 21:13:58 [detection_layer] {"stage_name":"detection_layer","events_processed":376,"events_dropped":0,"avg_latency_ms":19.07428203873488,"throughput_eps":0,"last_update":"2026-03-21T21:13:53.965727035Z"} +2026/03/21 21:13:58 ───────────────────────────────────────────────── +2026/03/21 21:14:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:14:03 [log_collector] {"stage_name":"log_collector","events_processed":18057,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3611.4,"last_update":"2026-03-21T21:13:58.869526569Z"} +2026/03/21 21:14:03 [metric_collector] {"stage_name":"metric_collector","events_processed":11289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2257.8,"last_update":"2026-03-21T21:13:58.870040193Z"} +2026/03/21 21:14:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:13:58.878457424Z"} +2026/03/21 21:14:03 [transform_engine] {"stage_name":"transform_engine","events_processed":376,"events_dropped":0,"avg_latency_ms":559.3435367880159,"throughput_eps":0,"last_update":"2026-03-21T21:13:58.965724828Z"} +2026/03/21 21:14:03 [detection_layer] {"stage_name":"detection_layer","events_processed":376,"events_dropped":0,"avg_latency_ms":19.07428203873488,"throughput_eps":0,"last_update":"2026-03-21T21:13:58.965715599Z"} +2026/03/21 21:14:03 ───────────────────────────────────────────────── +2026/03/21 21:14:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:14:08 [metric_collector] {"stage_name":"metric_collector","events_processed":11294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2258.8,"last_update":"2026-03-21T21:14:03.870124011Z"} +2026/03/21 21:14:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4520,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:14:03.878582971Z"} +2026/03/21 21:14:08 [transform_engine] {"stage_name":"transform_engine","events_processed":376,"events_dropped":0,"avg_latency_ms":559.3435367880159,"throughput_eps":0,"last_update":"2026-03-21T21:14:03.965935318Z"} +2026/03/21 21:14:08 [detection_layer] {"stage_name":"detection_layer","events_processed":376,"events_dropped":0,"avg_latency_ms":19.07428203873488,"throughput_eps":0,"last_update":"2026-03-21T21:14:03.965922483Z"} +2026/03/21 21:14:08 [log_collector] {"stage_name":"log_collector","events_processed":18057,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3611.4,"last_update":"2026-03-21T21:14:08.869746515Z"} +2026/03/21 21:14:08 ───────────────────────────────────────────────── +Saved state: 12 clusters, 18058 messages, reason: none +2026/03/21 21:14:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:14:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4522,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:14:08.878511242Z"} +2026/03/21 21:14:13 [transform_engine] {"stage_name":"transform_engine","events_processed":376,"events_dropped":0,"avg_latency_ms":559.3435367880159,"throughput_eps":0,"last_update":"2026-03-21T21:14:08.965724963Z"} +2026/03/21 21:14:13 [detection_layer] {"stage_name":"detection_layer","events_processed":376,"events_dropped":0,"avg_latency_ms":19.07428203873488,"throughput_eps":0,"last_update":"2026-03-21T21:14:08.965768847Z"} +2026/03/21 21:14:13 [log_collector] {"stage_name":"log_collector","events_processed":18057,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3611.4,"last_update":"2026-03-21T21:14:08.869746515Z"} +2026/03/21 21:14:13 [metric_collector] {"stage_name":"metric_collector","events_processed":11299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2259.8,"last_update":"2026-03-21T21:14:08.869905449Z"} +2026/03/21 21:14:13 ───────────────────────────────────────────────── +2026/03/21 21:14:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:14:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:14:13.877221249Z"} +2026/03/21 21:14:18 [transform_engine] {"stage_name":"transform_engine","events_processed":376,"events_dropped":0,"avg_latency_ms":559.3435367880159,"throughput_eps":0,"last_update":"2026-03-21T21:14:13.965511712Z"} +2026/03/21 21:14:18 [detection_layer] {"stage_name":"detection_layer","events_processed":376,"events_dropped":0,"avg_latency_ms":19.07428203873488,"throughput_eps":0,"last_update":"2026-03-21T21:14:13.965492536Z"} +2026/03/21 21:14:18 [log_collector] {"stage_name":"log_collector","events_processed":18060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3612,"last_update":"2026-03-21T21:14:13.869847828Z"} +2026/03/21 21:14:18 [metric_collector] {"stage_name":"metric_collector","events_processed":11304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2260.8,"last_update":"2026-03-21T21:14:13.870174734Z"} +2026/03/21 21:14:18 ───────────────────────────────────────────────── +2026/03/21 21:14:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:14:23 [log_collector] {"stage_name":"log_collector","events_processed":18071,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3614.2,"last_update":"2026-03-21T21:14:23.86944572Z"} +2026/03/21 21:14:23 [metric_collector] {"stage_name":"metric_collector","events_processed":11309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2261.8,"last_update":"2026-03-21T21:14:18.870387571Z"} +2026/03/21 21:14:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4526,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:14:18.879028781Z"} +2026/03/21 21:14:23 [transform_engine] {"stage_name":"transform_engine","events_processed":377,"events_dropped":0,"avg_latency_ms":479.42095843041267,"throughput_eps":0,"last_update":"2026-03-21T21:14:19.124875304Z"} +2026/03/21 21:14:23 [detection_layer] {"stage_name":"detection_layer","events_processed":376,"events_dropped":0,"avg_latency_ms":19.07428203873488,"throughput_eps":0,"last_update":"2026-03-21T21:14:18.966312085Z"} +2026/03/21 21:14:23 ───────────────────────────────────────────────── +2026/03/21 21:14:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:14:28 [log_collector] {"stage_name":"log_collector","events_processed":18071,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3614.2,"last_update":"2026-03-21T21:14:23.86944572Z"} +2026/03/21 21:14:28 [metric_collector] {"stage_name":"metric_collector","events_processed":11314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2262.8,"last_update":"2026-03-21T21:14:23.869684927Z"} +2026/03/21 21:14:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:14:23.877562785Z"} +2026/03/21 21:14:28 [transform_engine] {"stage_name":"transform_engine","events_processed":377,"events_dropped":0,"avg_latency_ms":479.42095843041267,"throughput_eps":0,"last_update":"2026-03-21T21:14:23.965837218Z"} +2026/03/21 21:14:28 [detection_layer] {"stage_name":"detection_layer","events_processed":377,"events_dropped":0,"avg_latency_ms":18.028651430987903,"throughput_eps":0,"last_update":"2026-03-21T21:14:23.965938281Z"} +2026/03/21 21:14:28 ───────────────────────────────────────────────── +2026/03/21 21:14:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:14:33 [transform_engine] {"stage_name":"transform_engine","events_processed":377,"events_dropped":0,"avg_latency_ms":479.42095843041267,"throughput_eps":0,"last_update":"2026-03-21T21:14:28.965199218Z"} +2026/03/21 21:14:33 [detection_layer] {"stage_name":"detection_layer","events_processed":377,"events_dropped":0,"avg_latency_ms":18.028651430987903,"throughput_eps":0,"last_update":"2026-03-21T21:14:28.96643208Z"} +2026/03/21 21:14:33 [log_collector] {"stage_name":"log_collector","events_processed":18085,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3617,"last_update":"2026-03-21T21:14:28.870220316Z"} +2026/03/21 21:14:33 [metric_collector] {"stage_name":"metric_collector","events_processed":11319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2263.8,"last_update":"2026-03-21T21:14:28.870625913Z"} +2026/03/21 21:14:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:14:28.878950336Z"} +2026/03/21 21:14:33 ───────────────────────────────────────────────── +2026/03/21 21:14:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:14:38 [log_collector] {"stage_name":"log_collector","events_processed":18087,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3617.4,"last_update":"2026-03-21T21:14:33.869446596Z"} +2026/03/21 21:14:38 [metric_collector] {"stage_name":"metric_collector","events_processed":11324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2264.8,"last_update":"2026-03-21T21:14:33.869886058Z"} +2026/03/21 21:14:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4532,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:14:33.87780788Z"} +2026/03/21 21:14:38 [transform_engine] {"stage_name":"transform_engine","events_processed":377,"events_dropped":0,"avg_latency_ms":479.42095843041267,"throughput_eps":0,"last_update":"2026-03-21T21:14:33.966171373Z"} +2026/03/21 21:14:38 [detection_layer] {"stage_name":"detection_layer","events_processed":377,"events_dropped":0,"avg_latency_ms":18.028651430987903,"throughput_eps":0,"last_update":"2026-03-21T21:14:33.966199817Z"} +2026/03/21 21:14:38 ───────────────────────────────────────────────── +2026/03/21 21:14:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:14:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:14:38.880231887Z"} +2026/03/21 21:14:43 [transform_engine] {"stage_name":"transform_engine","events_processed":377,"events_dropped":0,"avg_latency_ms":479.42095843041267,"throughput_eps":0,"last_update":"2026-03-21T21:14:38.965438914Z"} +2026/03/21 21:14:43 [detection_layer] {"stage_name":"detection_layer","events_processed":377,"events_dropped":0,"avg_latency_ms":18.028651430987903,"throughput_eps":0,"last_update":"2026-03-21T21:14:38.965553243Z"} +2026/03/21 21:14:43 [log_collector] {"stage_name":"log_collector","events_processed":18100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3620,"last_update":"2026-03-21T21:14:38.87043334Z"} +2026/03/21 21:14:43 [metric_collector] {"stage_name":"metric_collector","events_processed":11329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2265.8,"last_update":"2026-03-21T21:14:38.870749837Z"} +2026/03/21 21:14:43 ───────────────────────────────────────────────── +2026/03/21 21:14:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:14:48 [metric_collector] {"stage_name":"metric_collector","events_processed":11334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2266.8,"last_update":"2026-03-21T21:14:43.869849596Z"} +2026/03/21 21:14:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4536,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:14:43.87825755Z"} +2026/03/21 21:14:48 [transform_engine] {"stage_name":"transform_engine","events_processed":377,"events_dropped":0,"avg_latency_ms":479.42095843041267,"throughput_eps":0,"last_update":"2026-03-21T21:14:43.965668599Z"} +2026/03/21 21:14:48 [detection_layer] {"stage_name":"detection_layer","events_processed":377,"events_dropped":0,"avg_latency_ms":18.028651430987903,"throughput_eps":0,"last_update":"2026-03-21T21:14:43.965559409Z"} +2026/03/21 21:14:48 [log_collector] {"stage_name":"log_collector","events_processed":18101,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3620.2,"last_update":"2026-03-21T21:14:43.869623213Z"} +2026/03/21 21:14:48 ───────────────────────────────────────────────── +2026/03/21 21:14:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:14:53 [detection_layer] {"stage_name":"detection_layer","events_processed":377,"events_dropped":0,"avg_latency_ms":18.028651430987903,"throughput_eps":0,"last_update":"2026-03-21T21:14:48.966305405Z"} +2026/03/21 21:14:53 [log_collector] {"stage_name":"log_collector","events_processed":18101,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3620.2,"last_update":"2026-03-21T21:14:48.86964426Z"} +2026/03/21 21:14:53 [metric_collector] {"stage_name":"metric_collector","events_processed":11339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2267.8,"last_update":"2026-03-21T21:14:48.870204483Z"} +2026/03/21 21:14:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:14:48.878900107Z"} +2026/03/21 21:14:53 [transform_engine] {"stage_name":"transform_engine","events_processed":378,"events_dropped":0,"avg_latency_ms":408.9434295443302,"throughput_eps":0,"last_update":"2026-03-21T21:14:49.092130805Z"} +2026/03/21 21:14:53 ───────────────────────────────────────────────── +2026/03/21 21:14:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:14:58 [transform_engine] {"stage_name":"transform_engine","events_processed":378,"events_dropped":0,"avg_latency_ms":408.9434295443302,"throughput_eps":0,"last_update":"2026-03-21T21:14:53.965207829Z"} +2026/03/21 21:14:58 [detection_layer] {"stage_name":"detection_layer","events_processed":378,"events_dropped":0,"avg_latency_ms":18.250577744790323,"throughput_eps":0,"last_update":"2026-03-21T21:14:53.966460739Z"} +2026/03/21 21:14:58 [log_collector] {"stage_name":"log_collector","events_processed":18101,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3620.2,"last_update":"2026-03-21T21:14:53.870025687Z"} +2026/03/21 21:14:58 [metric_collector] {"stage_name":"metric_collector","events_processed":11344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2268.8,"last_update":"2026-03-21T21:14:53.870287498Z"} +2026/03/21 21:14:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4540,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:14:53.877973228Z"} +2026/03/21 21:14:58 ───────────────────────────────────────────────── +2026/03/21 21:15:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:15:03 [detection_layer] {"stage_name":"detection_layer","events_processed":378,"events_dropped":0,"avg_latency_ms":18.250577744790323,"throughput_eps":0,"last_update":"2026-03-21T21:14:58.965862873Z"} +2026/03/21 21:15:03 [log_collector] {"stage_name":"log_collector","events_processed":18101,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3620.2,"last_update":"2026-03-21T21:14:58.870021578Z"} +2026/03/21 21:15:03 [metric_collector] {"stage_name":"metric_collector","events_processed":11349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2269.8,"last_update":"2026-03-21T21:14:58.870418819Z"} +2026/03/21 21:15:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4542,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:14:58.878539061Z"} +2026/03/21 21:15:03 [transform_engine] {"stage_name":"transform_engine","events_processed":378,"events_dropped":0,"avg_latency_ms":408.9434295443302,"throughput_eps":0,"last_update":"2026-03-21T21:14:58.965749035Z"} +2026/03/21 21:15:03 ───────────────────────────────────────────────── +2026/03/21 21:15:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:15:08 [log_collector] {"stage_name":"log_collector","events_processed":18101,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3620.2,"last_update":"2026-03-21T21:15:08.869432059Z"} +2026/03/21 21:15:08 [metric_collector] {"stage_name":"metric_collector","events_processed":11353,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2270.6,"last_update":"2026-03-21T21:15:03.870334856Z"} +2026/03/21 21:15:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:15:03.880024544Z"} +2026/03/21 21:15:08 [transform_engine] {"stage_name":"transform_engine","events_processed":378,"events_dropped":0,"avg_latency_ms":408.9434295443302,"throughput_eps":0,"last_update":"2026-03-21T21:15:03.965211914Z"} +2026/03/21 21:15:08 [detection_layer] {"stage_name":"detection_layer","events_processed":378,"events_dropped":0,"avg_latency_ms":18.250577744790323,"throughput_eps":0,"last_update":"2026-03-21T21:15:03.965286447Z"} +2026/03/21 21:15:08 ───────────────────────────────────────────────── +2026/03/21 21:15:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:15:13 [detection_layer] {"stage_name":"detection_layer","events_processed":378,"events_dropped":0,"avg_latency_ms":18.250577744790323,"throughput_eps":0,"last_update":"2026-03-21T21:15:08.965327266Z"} +2026/03/21 21:15:13 [log_collector] {"stage_name":"log_collector","events_processed":18101,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3620.2,"last_update":"2026-03-21T21:15:08.869432059Z"} +2026/03/21 21:15:13 [metric_collector] {"stage_name":"metric_collector","events_processed":11359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2271.8,"last_update":"2026-03-21T21:15:08.869823659Z"} +2026/03/21 21:15:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:15:08.878102504Z"} +2026/03/21 21:15:13 [transform_engine] {"stage_name":"transform_engine","events_processed":378,"events_dropped":0,"avg_latency_ms":408.9434295443302,"throughput_eps":0,"last_update":"2026-03-21T21:15:08.965383534Z"} +2026/03/21 21:15:13 ───────────────────────────────────────────────── +2026/03/21 21:15:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:15:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:15:13.879335409Z"} +2026/03/21 21:15:18 [transform_engine] {"stage_name":"transform_engine","events_processed":378,"events_dropped":0,"avg_latency_ms":408.9434295443302,"throughput_eps":0,"last_update":"2026-03-21T21:15:13.965826446Z"} +2026/03/21 21:15:18 [detection_layer] {"stage_name":"detection_layer","events_processed":378,"events_dropped":0,"avg_latency_ms":18.250577744790323,"throughput_eps":0,"last_update":"2026-03-21T21:15:13.965712498Z"} +2026/03/21 21:15:18 [log_collector] {"stage_name":"log_collector","events_processed":18101,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3620.2,"last_update":"2026-03-21T21:15:18.869615777Z"} +2026/03/21 21:15:18 [metric_collector] {"stage_name":"metric_collector","events_processed":11364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2272.8,"last_update":"2026-03-21T21:15:13.869822911Z"} +2026/03/21 21:15:18 ───────────────────────────────────────────────── +2026/03/21 21:15:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:15:23 [log_collector] {"stage_name":"log_collector","events_processed":18101,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3620.2,"last_update":"2026-03-21T21:15:18.869615777Z"} +2026/03/21 21:15:23 [metric_collector] {"stage_name":"metric_collector","events_processed":11369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2273.8,"last_update":"2026-03-21T21:15:18.869865145Z"} +2026/03/21 21:15:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:15:18.878377869Z"} +2026/03/21 21:15:23 [transform_engine] {"stage_name":"transform_engine","events_processed":379,"events_dropped":0,"avg_latency_ms":341.57683063546415,"throughput_eps":0,"last_update":"2026-03-21T21:15:19.037779504Z"} +2026/03/21 21:15:23 [detection_layer] {"stage_name":"detection_layer","events_processed":378,"events_dropped":0,"avg_latency_ms":18.250577744790323,"throughput_eps":0,"last_update":"2026-03-21T21:15:18.965770813Z"} +2026/03/21 21:15:23 ───────────────────────────────────────────────── +2026/03/21 21:15:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:15:28 [log_collector] {"stage_name":"log_collector","events_processed":18101,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3620.2,"last_update":"2026-03-21T21:15:23.870271559Z"} +2026/03/21 21:15:28 [metric_collector] {"stage_name":"metric_collector","events_processed":11374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2274.8,"last_update":"2026-03-21T21:15:23.870642478Z"} +2026/03/21 21:15:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:15:23.879325238Z"} +2026/03/21 21:15:28 [transform_engine] {"stage_name":"transform_engine","events_processed":379,"events_dropped":0,"avg_latency_ms":341.57683063546415,"throughput_eps":0,"last_update":"2026-03-21T21:15:23.965559664Z"} +2026/03/21 21:15:28 [detection_layer] {"stage_name":"detection_layer","events_processed":379,"events_dropped":0,"avg_latency_ms":18.454778195832258,"throughput_eps":0,"last_update":"2026-03-21T21:15:23.965591625Z"} +2026/03/21 21:15:28 ───────────────────────────────────────────────── +2026/03/21 21:15:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:15:33 [log_collector] {"stage_name":"log_collector","events_processed":18101,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3620.2,"last_update":"2026-03-21T21:15:28.870022245Z"} +2026/03/21 21:15:33 [metric_collector] {"stage_name":"metric_collector","events_processed":11379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2275.8,"last_update":"2026-03-21T21:15:28.870397754Z"} +2026/03/21 21:15:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:15:28.878967738Z"} +2026/03/21 21:15:33 [transform_engine] {"stage_name":"transform_engine","events_processed":379,"events_dropped":0,"avg_latency_ms":341.57683063546415,"throughput_eps":0,"last_update":"2026-03-21T21:15:28.966221496Z"} +2026/03/21 21:15:33 [detection_layer] {"stage_name":"detection_layer","events_processed":379,"events_dropped":0,"avg_latency_ms":18.454778195832258,"throughput_eps":0,"last_update":"2026-03-21T21:15:28.966179725Z"} +2026/03/21 21:15:33 ───────────────────────────────────────────────── +2026/03/21 21:15:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:15:38 [log_collector] {"stage_name":"log_collector","events_processed":18101,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3620.2,"last_update":"2026-03-21T21:15:38.86989714Z"} +2026/03/21 21:15:38 [metric_collector] {"stage_name":"metric_collector","events_processed":11384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2276.8,"last_update":"2026-03-21T21:15:33.869939935Z"} +2026/03/21 21:15:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:15:33.878570354Z"} +2026/03/21 21:15:38 [transform_engine] {"stage_name":"transform_engine","events_processed":379,"events_dropped":0,"avg_latency_ms":341.57683063546415,"throughput_eps":0,"last_update":"2026-03-21T21:15:33.965992595Z"} +2026/03/21 21:15:38 [detection_layer] {"stage_name":"detection_layer","events_processed":379,"events_dropped":0,"avg_latency_ms":18.454778195832258,"throughput_eps":0,"last_update":"2026-03-21T21:15:33.965893275Z"} +2026/03/21 21:15:38 ───────────────────────────────────────────────── +Saved state: 12 clusters, 18102 messages, reason: none +2026/03/21 21:15:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:15:43 [detection_layer] {"stage_name":"detection_layer","events_processed":379,"events_dropped":0,"avg_latency_ms":18.454778195832258,"throughput_eps":0,"last_update":"2026-03-21T21:15:38.96594485Z"} +2026/03/21 21:15:43 [log_collector] {"stage_name":"log_collector","events_processed":18106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3621.2,"last_update":"2026-03-21T21:15:43.86969942Z"} +2026/03/21 21:15:43 [metric_collector] {"stage_name":"metric_collector","events_processed":11389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2277.8,"last_update":"2026-03-21T21:15:38.870285584Z"} +2026/03/21 21:15:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:15:38.878744454Z"} +2026/03/21 21:15:43 [transform_engine] {"stage_name":"transform_engine","events_processed":379,"events_dropped":0,"avg_latency_ms":341.57683063546415,"throughput_eps":0,"last_update":"2026-03-21T21:15:38.965956744Z"} +2026/03/21 21:15:43 ───────────────────────────────────────────────── +2026/03/21 21:15:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:15:48 [transform_engine] {"stage_name":"transform_engine","events_processed":379,"events_dropped":0,"avg_latency_ms":341.57683063546415,"throughput_eps":0,"last_update":"2026-03-21T21:15:43.965279995Z"} +2026/03/21 21:15:48 [detection_layer] {"stage_name":"detection_layer","events_processed":379,"events_dropped":0,"avg_latency_ms":18.454778195832258,"throughput_eps":0,"last_update":"2026-03-21T21:15:43.965268003Z"} +2026/03/21 21:15:48 [log_collector] {"stage_name":"log_collector","events_processed":18106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3621.2,"last_update":"2026-03-21T21:15:48.870387847Z"} +2026/03/21 21:15:48 [metric_collector] {"stage_name":"metric_collector","events_processed":11399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2279.8,"last_update":"2026-03-21T21:15:48.870706037Z"} +2026/03/21 21:15:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4560,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:15:43.876083858Z"} +2026/03/21 21:15:48 ───────────────────────────────────────────────── +2026/03/21 21:15:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:15:53 [log_collector] {"stage_name":"log_collector","events_processed":18106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3621.2,"last_update":"2026-03-21T21:15:53.869780114Z"} +2026/03/21 21:15:53 [metric_collector] {"stage_name":"metric_collector","events_processed":11404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2280.8,"last_update":"2026-03-21T21:15:53.869752982Z"} +2026/03/21 21:15:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:15:48.883335414Z"} +2026/03/21 21:15:53 [transform_engine] {"stage_name":"transform_engine","events_processed":380,"events_dropped":0,"avg_latency_ms":399.02317270837136,"throughput_eps":0,"last_update":"2026-03-21T21:15:49.594281566Z"} +2026/03/21 21:15:53 [detection_layer] {"stage_name":"detection_layer","events_processed":379,"events_dropped":0,"avg_latency_ms":18.454778195832258,"throughput_eps":0,"last_update":"2026-03-21T21:15:48.965492351Z"} +2026/03/21 21:15:53 ───────────────────────────────────────────────── +2026/03/21 21:15:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:15:58 [metric_collector] {"stage_name":"metric_collector","events_processed":11404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2280.8,"last_update":"2026-03-21T21:15:53.869752982Z"} +2026/03/21 21:15:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:15:53.877362125Z"} +2026/03/21 21:15:58 [transform_engine] {"stage_name":"transform_engine","events_processed":380,"events_dropped":0,"avg_latency_ms":399.02317270837136,"throughput_eps":0,"last_update":"2026-03-21T21:15:53.965548038Z"} +2026/03/21 21:15:58 [detection_layer] {"stage_name":"detection_layer","events_processed":380,"events_dropped":0,"avg_latency_ms":17.150790156665806,"throughput_eps":0,"last_update":"2026-03-21T21:15:53.965596712Z"} +2026/03/21 21:15:58 [log_collector] {"stage_name":"log_collector","events_processed":18106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3621.2,"last_update":"2026-03-21T21:15:58.86940677Z"} +2026/03/21 21:15:58 ───────────────────────────────────────────────── +2026/03/21 21:16:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:16:03 [transform_engine] {"stage_name":"transform_engine","events_processed":380,"events_dropped":0,"avg_latency_ms":399.02317270837136,"throughput_eps":0,"last_update":"2026-03-21T21:15:58.965484809Z"} +2026/03/21 21:16:03 [detection_layer] {"stage_name":"detection_layer","events_processed":380,"events_dropped":0,"avg_latency_ms":17.150790156665806,"throughput_eps":0,"last_update":"2026-03-21T21:15:58.96550104Z"} +2026/03/21 21:16:03 [log_collector] {"stage_name":"log_collector","events_processed":18106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3621.2,"last_update":"2026-03-21T21:16:03.869569343Z"} +2026/03/21 21:16:03 [metric_collector] {"stage_name":"metric_collector","events_processed":11409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2281.8,"last_update":"2026-03-21T21:15:58.869854318Z"} +2026/03/21 21:16:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4566,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:15:58.881387496Z"} +2026/03/21 21:16:03 ───────────────────────────────────────────────── +2026/03/21 21:16:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:16:08 [transform_engine] {"stage_name":"transform_engine","events_processed":380,"events_dropped":0,"avg_latency_ms":399.02317270837136,"throughput_eps":0,"last_update":"2026-03-21T21:16:03.965155099Z"} +2026/03/21 21:16:08 [detection_layer] {"stage_name":"detection_layer","events_processed":380,"events_dropped":0,"avg_latency_ms":17.150790156665806,"throughput_eps":0,"last_update":"2026-03-21T21:16:03.966317625Z"} +2026/03/21 21:16:08 [log_collector] {"stage_name":"log_collector","events_processed":18106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3621.2,"last_update":"2026-03-21T21:16:03.869569343Z"} +2026/03/21 21:16:08 [metric_collector] {"stage_name":"metric_collector","events_processed":11414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2282.8,"last_update":"2026-03-21T21:16:03.869869628Z"} +2026/03/21 21:16:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:16:03.878040637Z"} +2026/03/21 21:16:08 ───────────────────────────────────────────────── +2026/03/21 21:16:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:16:13 [metric_collector] {"stage_name":"metric_collector","events_processed":11419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2283.8,"last_update":"2026-03-21T21:16:08.869644751Z"} +2026/03/21 21:16:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4570,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:16:08.879618432Z"} +2026/03/21 21:16:13 [transform_engine] {"stage_name":"transform_engine","events_processed":380,"events_dropped":0,"avg_latency_ms":399.02317270837136,"throughput_eps":0,"last_update":"2026-03-21T21:16:08.965807071Z"} +2026/03/21 21:16:13 [detection_layer] {"stage_name":"detection_layer","events_processed":380,"events_dropped":0,"avg_latency_ms":17.150790156665806,"throughput_eps":0,"last_update":"2026-03-21T21:16:08.965843571Z"} +2026/03/21 21:16:13 [log_collector] {"stage_name":"log_collector","events_processed":18106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3621.2,"last_update":"2026-03-21T21:16:13.869415267Z"} +2026/03/21 21:16:13 ───────────────────────────────────────────────── +2026/03/21 21:16:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:16:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4572,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:16:13.877010753Z"} +2026/03/21 21:16:18 [transform_engine] {"stage_name":"transform_engine","events_processed":380,"events_dropped":0,"avg_latency_ms":399.02317270837136,"throughput_eps":0,"last_update":"2026-03-21T21:16:13.965141221Z"} +2026/03/21 21:16:18 [detection_layer] {"stage_name":"detection_layer","events_processed":380,"events_dropped":0,"avg_latency_ms":17.150790156665806,"throughput_eps":0,"last_update":"2026-03-21T21:16:13.966481698Z"} +2026/03/21 21:16:18 [log_collector] {"stage_name":"log_collector","events_processed":18106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3621.2,"last_update":"2026-03-21T21:16:13.869415267Z"} +2026/03/21 21:16:18 [metric_collector] {"stage_name":"metric_collector","events_processed":11424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2284.8,"last_update":"2026-03-21T21:16:13.869675094Z"} +2026/03/21 21:16:18 ───────────────────────────────────────────────── +2026/03/21 21:16:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:16:23 [log_collector] {"stage_name":"log_collector","events_processed":18106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3621.2,"last_update":"2026-03-21T21:16:18.869491027Z"} +2026/03/21 21:16:23 [metric_collector] {"stage_name":"metric_collector","events_processed":11434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2286.8,"last_update":"2026-03-21T21:16:23.870208708Z"} +2026/03/21 21:16:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:16:18.876801718Z"} +2026/03/21 21:16:23 [transform_engine] {"stage_name":"transform_engine","events_processed":381,"events_dropped":0,"avg_latency_ms":401.7262425666971,"throughput_eps":0,"last_update":"2026-03-21T21:16:19.37856302Z"} +2026/03/21 21:16:23 [detection_layer] {"stage_name":"detection_layer","events_processed":380,"events_dropped":0,"avg_latency_ms":17.150790156665806,"throughput_eps":0,"last_update":"2026-03-21T21:16:18.966006884Z"} +2026/03/21 21:16:23 ───────────────────────────────────────────────── +2026/03/21 21:16:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:16:28 [transform_engine] {"stage_name":"transform_engine","events_processed":381,"events_dropped":0,"avg_latency_ms":401.7262425666971,"throughput_eps":0,"last_update":"2026-03-21T21:16:23.965375081Z"} +2026/03/21 21:16:28 [detection_layer] {"stage_name":"detection_layer","events_processed":381,"events_dropped":0,"avg_latency_ms":16.901467925332646,"throughput_eps":0,"last_update":"2026-03-21T21:16:23.965489429Z"} +2026/03/21 21:16:28 [log_collector] {"stage_name":"log_collector","events_processed":18115,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3623,"last_update":"2026-03-21T21:16:23.870265857Z"} +2026/03/21 21:16:28 [metric_collector] {"stage_name":"metric_collector","events_processed":11434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2286.8,"last_update":"2026-03-21T21:16:23.870208708Z"} +2026/03/21 21:16:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4576,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:16:23.87815106Z"} +2026/03/21 21:16:28 ───────────────────────────────────────────────── +2026/03/21 21:16:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:16:33 [log_collector] {"stage_name":"log_collector","events_processed":18117,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3623.4,"last_update":"2026-03-21T21:16:28.869978884Z"} +2026/03/21 21:16:33 [metric_collector] {"stage_name":"metric_collector","events_processed":11439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2287.8,"last_update":"2026-03-21T21:16:28.870539087Z"} +2026/03/21 21:16:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:16:28.878938744Z"} +2026/03/21 21:16:33 [transform_engine] {"stage_name":"transform_engine","events_processed":381,"events_dropped":0,"avg_latency_ms":401.7262425666971,"throughput_eps":0,"last_update":"2026-03-21T21:16:28.966114973Z"} +2026/03/21 21:16:33 [detection_layer] {"stage_name":"detection_layer","events_processed":381,"events_dropped":0,"avg_latency_ms":16.901467925332646,"throughput_eps":0,"last_update":"2026-03-21T21:16:28.966145572Z"} +2026/03/21 21:16:33 ───────────────────────────────────────────────── +2026/03/21 21:16:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:16:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4580,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:16:33.877101563Z"} +2026/03/21 21:16:38 [transform_engine] {"stage_name":"transform_engine","events_processed":381,"events_dropped":0,"avg_latency_ms":401.7262425666971,"throughput_eps":0,"last_update":"2026-03-21T21:16:33.965495084Z"} +2026/03/21 21:16:38 [detection_layer] {"stage_name":"detection_layer","events_processed":381,"events_dropped":0,"avg_latency_ms":16.901467925332646,"throughput_eps":0,"last_update":"2026-03-21T21:16:33.965484013Z"} +2026/03/21 21:16:38 [log_collector] {"stage_name":"log_collector","events_processed":18295,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3659,"last_update":"2026-03-21T21:16:33.870300087Z"} +2026/03/21 21:16:38 [metric_collector] {"stage_name":"metric_collector","events_processed":11444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2288.8,"last_update":"2026-03-21T21:16:33.870624298Z"} +2026/03/21 21:16:38 ───────────────────────────────────────────────── +2026/03/21 21:16:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:16:43 [log_collector] {"stage_name":"log_collector","events_processed":18462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3692.4,"last_update":"2026-03-21T21:16:38.869917625Z"} +2026/03/21 21:16:43 [metric_collector] {"stage_name":"metric_collector","events_processed":11449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2289.8,"last_update":"2026-03-21T21:16:38.87030686Z"} +2026/03/21 21:16:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:16:38.879570492Z"} +2026/03/21 21:16:43 [transform_engine] {"stage_name":"transform_engine","events_processed":381,"events_dropped":0,"avg_latency_ms":401.7262425666971,"throughput_eps":0,"last_update":"2026-03-21T21:16:38.965932802Z"} +2026/03/21 21:16:43 [detection_layer] {"stage_name":"detection_layer","events_processed":381,"events_dropped":0,"avg_latency_ms":16.901467925332646,"throughput_eps":0,"last_update":"2026-03-21T21:16:38.965828242Z"} +2026/03/21 21:16:43 ───────────────────────────────────────────────── +2026/03/21 21:16:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:16:48 [detection_layer] {"stage_name":"detection_layer","events_processed":381,"events_dropped":0,"avg_latency_ms":16.901467925332646,"throughput_eps":0,"last_update":"2026-03-21T21:16:43.965967449Z"} +2026/03/21 21:16:48 [log_collector] {"stage_name":"log_collector","events_processed":18466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3693.2,"last_update":"2026-03-21T21:16:43.869418448Z"} +2026/03/21 21:16:48 [metric_collector] {"stage_name":"metric_collector","events_processed":11454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2290.8,"last_update":"2026-03-21T21:16:43.869950267Z"} +2026/03/21 21:16:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:16:43.880607007Z"} +2026/03/21 21:16:48 [transform_engine] {"stage_name":"transform_engine","events_processed":381,"events_dropped":0,"avg_latency_ms":401.7262425666971,"throughput_eps":0,"last_update":"2026-03-21T21:16:43.965932983Z"} +2026/03/21 21:16:48 ───────────────────────────────────────────────── +2026/03/21 21:16:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:16:53 [log_collector] {"stage_name":"log_collector","events_processed":18466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3693.2,"last_update":"2026-03-21T21:16:48.869857531Z"} +2026/03/21 21:16:53 [metric_collector] {"stage_name":"metric_collector","events_processed":11458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2291.6,"last_update":"2026-03-21T21:16:48.869927515Z"} +2026/03/21 21:16:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4586,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:16:48.878412405Z"} +2026/03/21 21:16:53 [transform_engine] {"stage_name":"transform_engine","events_processed":382,"events_dropped":0,"avg_latency_ms":339.2737360533577,"throughput_eps":0,"last_update":"2026-03-21T21:16:49.055077284Z"} +2026/03/21 21:16:53 [detection_layer] {"stage_name":"detection_layer","events_processed":381,"events_dropped":0,"avg_latency_ms":16.901467925332646,"throughput_eps":0,"last_update":"2026-03-21T21:16:48.965660092Z"} +2026/03/21 21:16:53 ───────────────────────────────────────────────── +2026/03/21 21:16:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:16:58 [log_collector] {"stage_name":"log_collector","events_processed":18466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3693.2,"last_update":"2026-03-21T21:16:53.869705002Z"} +2026/03/21 21:16:58 [metric_collector] {"stage_name":"metric_collector","events_processed":11464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2292.8,"last_update":"2026-03-21T21:16:53.870160534Z"} +2026/03/21 21:16:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4588,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:16:53.878858291Z"} +2026/03/21 21:16:58 [transform_engine] {"stage_name":"transform_engine","events_processed":382,"events_dropped":0,"avg_latency_ms":339.2737360533577,"throughput_eps":0,"last_update":"2026-03-21T21:16:53.966159331Z"} +2026/03/21 21:16:58 [detection_layer] {"stage_name":"detection_layer","events_processed":382,"events_dropped":0,"avg_latency_ms":17.233804740266116,"throughput_eps":0,"last_update":"2026-03-21T21:16:53.966198916Z"} +2026/03/21 21:16:58 ───────────────────────────────────────────────── +2026/03/21 21:17:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:17:03 [transform_engine] {"stage_name":"transform_engine","events_processed":382,"events_dropped":0,"avg_latency_ms":339.2737360533577,"throughput_eps":0,"last_update":"2026-03-21T21:16:58.965964509Z"} +2026/03/21 21:17:03 [detection_layer] {"stage_name":"detection_layer","events_processed":382,"events_dropped":0,"avg_latency_ms":17.233804740266116,"throughput_eps":0,"last_update":"2026-03-21T21:16:58.965848678Z"} +2026/03/21 21:17:03 [log_collector] {"stage_name":"log_collector","events_processed":18466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3693.2,"last_update":"2026-03-21T21:16:58.870469167Z"} +2026/03/21 21:17:03 [metric_collector] {"stage_name":"metric_collector","events_processed":11469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2293.8,"last_update":"2026-03-21T21:16:58.870884824Z"} +2026/03/21 21:17:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:16:58.88057386Z"} +2026/03/21 21:17:03 ───────────────────────────────────────────────── +2026/03/21 21:17:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:17:08 [transform_engine] {"stage_name":"transform_engine","events_processed":382,"events_dropped":0,"avg_latency_ms":339.2737360533577,"throughput_eps":0,"last_update":"2026-03-21T21:17:03.965683896Z"} +2026/03/21 21:17:08 [detection_layer] {"stage_name":"detection_layer","events_processed":382,"events_dropped":0,"avg_latency_ms":17.233804740266116,"throughput_eps":0,"last_update":"2026-03-21T21:17:03.96557614Z"} +2026/03/21 21:17:08 [log_collector] {"stage_name":"log_collector","events_processed":18466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3693.2,"last_update":"2026-03-21T21:17:03.8696595Z"} +2026/03/21 21:17:08 [metric_collector] {"stage_name":"metric_collector","events_processed":11474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2294.8,"last_update":"2026-03-21T21:17:03.870033376Z"} +2026/03/21 21:17:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4592,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:17:03.878392305Z"} +2026/03/21 21:17:08 ───────────────────────────────────────────────── +2026/03/21 21:17:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:17:13 [log_collector] {"stage_name":"log_collector","events_processed":18466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3693.2,"last_update":"2026-03-21T21:17:08.870048057Z"} +2026/03/21 21:17:13 [metric_collector] {"stage_name":"metric_collector","events_processed":11479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2295.8,"last_update":"2026-03-21T21:17:08.87049417Z"} +2026/03/21 21:17:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:17:08.878268921Z"} +2026/03/21 21:17:13 [transform_engine] {"stage_name":"transform_engine","events_processed":382,"events_dropped":0,"avg_latency_ms":339.2737360533577,"throughput_eps":0,"last_update":"2026-03-21T21:17:08.965496289Z"} +2026/03/21 21:17:13 [detection_layer] {"stage_name":"detection_layer","events_processed":382,"events_dropped":0,"avg_latency_ms":17.233804740266116,"throughput_eps":0,"last_update":"2026-03-21T21:17:08.96552835Z"} +2026/03/21 21:17:13 ───────────────────────────────────────────────── +2026/03/21 21:17:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:17:18 [detection_layer] {"stage_name":"detection_layer","events_processed":382,"events_dropped":0,"avg_latency_ms":17.233804740266116,"throughput_eps":0,"last_update":"2026-03-21T21:17:13.965500041Z"} +2026/03/21 21:17:18 [log_collector] {"stage_name":"log_collector","events_processed":18466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3693.2,"last_update":"2026-03-21T21:17:18.870050683Z"} +2026/03/21 21:17:18 [metric_collector] {"stage_name":"metric_collector","events_processed":11484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2296.8,"last_update":"2026-03-21T21:17:13.869818893Z"} +2026/03/21 21:17:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:17:13.878300717Z"} +2026/03/21 21:17:18 [transform_engine] {"stage_name":"transform_engine","events_processed":382,"events_dropped":0,"avg_latency_ms":339.2737360533577,"throughput_eps":0,"last_update":"2026-03-21T21:17:13.965605844Z"} +2026/03/21 21:17:18 ───────────────────────────────────────────────── +2026/03/21 21:17:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:17:23 [log_collector] {"stage_name":"log_collector","events_processed":18466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3693.2,"last_update":"2026-03-21T21:17:23.869460049Z"} +2026/03/21 21:17:23 [metric_collector] {"stage_name":"metric_collector","events_processed":11489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2297.8,"last_update":"2026-03-21T21:17:18.870642597Z"} +2026/03/21 21:17:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:17:18.879294758Z"} +2026/03/21 21:17:23 [transform_engine] {"stage_name":"transform_engine","events_processed":383,"events_dropped":0,"avg_latency_ms":285.4697626426862,"throughput_eps":0,"last_update":"2026-03-21T21:17:19.035966936Z"} +2026/03/21 21:17:23 [detection_layer] {"stage_name":"detection_layer","events_processed":382,"events_dropped":0,"avg_latency_ms":17.233804740266116,"throughput_eps":0,"last_update":"2026-03-21T21:17:18.965661056Z"} +2026/03/21 21:17:23 ───────────────────────────────────────────────── +2026/03/21 21:17:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:17:28 [log_collector] {"stage_name":"log_collector","events_processed":18466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3693.2,"last_update":"2026-03-21T21:17:23.869460049Z"} +2026/03/21 21:17:28 [metric_collector] {"stage_name":"metric_collector","events_processed":11493,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2298.6,"last_update":"2026-03-21T21:17:23.869558999Z"} +2026/03/21 21:17:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:17:23.878459867Z"} +2026/03/21 21:17:28 [transform_engine] {"stage_name":"transform_engine","events_processed":383,"events_dropped":0,"avg_latency_ms":285.4697626426862,"throughput_eps":0,"last_update":"2026-03-21T21:17:23.965673708Z"} +2026/03/21 21:17:28 [detection_layer] {"stage_name":"detection_layer","events_processed":383,"events_dropped":0,"avg_latency_ms":17.818502792212893,"throughput_eps":0,"last_update":"2026-03-21T21:17:23.965659351Z"} +2026/03/21 21:17:28 ───────────────────────────────────────────────── +2026/03/21 21:17:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:17:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4602,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:17:28.878830193Z"} +2026/03/21 21:17:33 [transform_engine] {"stage_name":"transform_engine","events_processed":383,"events_dropped":0,"avg_latency_ms":285.4697626426862,"throughput_eps":0,"last_update":"2026-03-21T21:17:28.966163334Z"} +2026/03/21 21:17:33 [detection_layer] {"stage_name":"detection_layer","events_processed":383,"events_dropped":0,"avg_latency_ms":17.818502792212893,"throughput_eps":0,"last_update":"2026-03-21T21:17:28.966153073Z"} +2026/03/21 21:17:33 [log_collector] {"stage_name":"log_collector","events_processed":18466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3693.2,"last_update":"2026-03-21T21:17:28.869966287Z"} +2026/03/21 21:17:33 [metric_collector] {"stage_name":"metric_collector","events_processed":11498,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2299.6,"last_update":"2026-03-21T21:17:28.870012475Z"} +2026/03/21 21:17:33 ───────────────────────────────────────────────── +2026/03/21 21:17:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:17:38 [metric_collector] {"stage_name":"metric_collector","events_processed":11503,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2300.6,"last_update":"2026-03-21T21:17:33.870250559Z"} +2026/03/21 21:17:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:17:33.879363191Z"} +2026/03/21 21:17:38 [transform_engine] {"stage_name":"transform_engine","events_processed":383,"events_dropped":0,"avg_latency_ms":285.4697626426862,"throughput_eps":0,"last_update":"2026-03-21T21:17:33.965607696Z"} +2026/03/21 21:17:38 [detection_layer] {"stage_name":"detection_layer","events_processed":383,"events_dropped":0,"avg_latency_ms":17.818502792212893,"throughput_eps":0,"last_update":"2026-03-21T21:17:33.96559356Z"} +2026/03/21 21:17:38 [log_collector] {"stage_name":"log_collector","events_processed":18466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3693.2,"last_update":"2026-03-21T21:17:33.870170666Z"} +2026/03/21 21:17:38 ───────────────────────────────────────────────── +2026/03/21 21:17:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:17:43 [log_collector] {"stage_name":"log_collector","events_processed":18466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3693.2,"last_update":"2026-03-21T21:17:43.86978613Z"} +2026/03/21 21:17:43 [metric_collector] {"stage_name":"metric_collector","events_processed":11508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2301.6,"last_update":"2026-03-21T21:17:38.869617365Z"} +2026/03/21 21:17:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:17:38.878689471Z"} +2026/03/21 21:17:43 [transform_engine] {"stage_name":"transform_engine","events_processed":383,"events_dropped":0,"avg_latency_ms":285.4697626426862,"throughput_eps":0,"last_update":"2026-03-21T21:17:38.966109528Z"} +2026/03/21 21:17:43 [detection_layer] {"stage_name":"detection_layer","events_processed":383,"events_dropped":0,"avg_latency_ms":17.818502792212893,"throughput_eps":0,"last_update":"2026-03-21T21:17:38.966095892Z"} +2026/03/21 21:17:43 ───────────────────────────────────────────────── +2026/03/21 21:17:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:17:48 [log_collector] {"stage_name":"log_collector","events_processed":18466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3693.2,"last_update":"2026-03-21T21:17:48.869853831Z"} +2026/03/21 21:17:48 [metric_collector] {"stage_name":"metric_collector","events_processed":11514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2302.8,"last_update":"2026-03-21T21:17:43.870171277Z"} +2026/03/21 21:17:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:17:43.878938238Z"} +2026/03/21 21:17:48 [transform_engine] {"stage_name":"transform_engine","events_processed":383,"events_dropped":0,"avg_latency_ms":285.4697626426862,"throughput_eps":0,"last_update":"2026-03-21T21:17:43.965067433Z"} +2026/03/21 21:17:48 [detection_layer] {"stage_name":"detection_layer","events_processed":383,"events_dropped":0,"avg_latency_ms":17.818502792212893,"throughput_eps":0,"last_update":"2026-03-21T21:17:43.966204811Z"} +2026/03/21 21:17:48 ───────────────────────────────────────────────── +2026/03/21 21:17:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:17:53 [log_collector] {"stage_name":"log_collector","events_processed":18466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3693.2,"last_update":"2026-03-21T21:17:48.869853831Z"} +2026/03/21 21:17:53 [metric_collector] {"stage_name":"metric_collector","events_processed":11519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2303.8,"last_update":"2026-03-21T21:17:48.870389898Z"} +2026/03/21 21:17:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:17:48.878613598Z"} +2026/03/21 21:17:53 [transform_engine] {"stage_name":"transform_engine","events_processed":384,"events_dropped":0,"avg_latency_ms":242.59080871414898,"throughput_eps":0,"last_update":"2026-03-21T21:17:49.036879779Z"} +2026/03/21 21:17:53 [detection_layer] {"stage_name":"detection_layer","events_processed":383,"events_dropped":0,"avg_latency_ms":17.818502792212893,"throughput_eps":0,"last_update":"2026-03-21T21:17:48.965791321Z"} +2026/03/21 21:17:53 ───────────────────────────────────────────────── +2026/03/21 21:17:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:17:58 [metric_collector] {"stage_name":"metric_collector","events_processed":11524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2304.8,"last_update":"2026-03-21T21:17:53.870516711Z"} +2026/03/21 21:17:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:17:53.879401227Z"} +2026/03/21 21:17:58 [transform_engine] {"stage_name":"transform_engine","events_processed":384,"events_dropped":0,"avg_latency_ms":242.59080871414898,"throughput_eps":0,"last_update":"2026-03-21T21:17:53.965561701Z"} +2026/03/21 21:17:58 [detection_layer] {"stage_name":"detection_layer","events_processed":384,"events_dropped":0,"avg_latency_ms":18.135871233770317,"throughput_eps":0,"last_update":"2026-03-21T21:17:53.965547494Z"} +2026/03/21 21:17:58 [log_collector] {"stage_name":"log_collector","events_processed":18466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3693.2,"last_update":"2026-03-21T21:17:53.870073151Z"} +2026/03/21 21:17:58 ───────────────────────────────────────────────── +2026/03/21 21:18:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:18:03 [log_collector] {"stage_name":"log_collector","events_processed":18466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3693.2,"last_update":"2026-03-21T21:18:03.869994157Z"} +2026/03/21 21:18:03 [metric_collector] {"stage_name":"metric_collector","events_processed":11529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2305.8,"last_update":"2026-03-21T21:17:58.870197723Z"} +2026/03/21 21:18:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:17:58.879937467Z"} +2026/03/21 21:18:03 [transform_engine] {"stage_name":"transform_engine","events_processed":384,"events_dropped":0,"avg_latency_ms":242.59080871414898,"throughput_eps":0,"last_update":"2026-03-21T21:17:58.965079991Z"} +2026/03/21 21:18:03 [detection_layer] {"stage_name":"detection_layer","events_processed":384,"events_dropped":0,"avg_latency_ms":18.135871233770317,"throughput_eps":0,"last_update":"2026-03-21T21:17:58.966212952Z"} +2026/03/21 21:18:03 ───────────────────────────────────────────────── +Saved state: 12 clusters, 18467 messages, reason: none +2026/03/21 21:18:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:18:08 [log_collector] {"stage_name":"log_collector","events_processed":18466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3693.2,"last_update":"2026-03-21T21:18:03.869994157Z"} +2026/03/21 21:18:08 [metric_collector] {"stage_name":"metric_collector","events_processed":11534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2306.8,"last_update":"2026-03-21T21:18:03.870515626Z"} +2026/03/21 21:18:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:18:03.880163524Z"} +2026/03/21 21:18:08 [transform_engine] {"stage_name":"transform_engine","events_processed":384,"events_dropped":0,"avg_latency_ms":242.59080871414898,"throughput_eps":0,"last_update":"2026-03-21T21:18:03.965417521Z"} +2026/03/21 21:18:08 [detection_layer] {"stage_name":"detection_layer","events_processed":384,"events_dropped":0,"avg_latency_ms":18.135871233770317,"throughput_eps":0,"last_update":"2026-03-21T21:18:03.965403475Z"} +2026/03/21 21:18:08 ───────────────────────────────────────────────── +2026/03/21 21:18:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:18:13 [detection_layer] {"stage_name":"detection_layer","events_processed":384,"events_dropped":0,"avg_latency_ms":18.135871233770317,"throughput_eps":0,"last_update":"2026-03-21T21:18:08.965902455Z"} +2026/03/21 21:18:13 [log_collector] {"stage_name":"log_collector","events_processed":18469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3693.8,"last_update":"2026-03-21T21:18:08.869608744Z"} +2026/03/21 21:18:13 [metric_collector] {"stage_name":"metric_collector","events_processed":11539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2307.8,"last_update":"2026-03-21T21:18:08.869890984Z"} +2026/03/21 21:18:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:18:08.876676279Z"} +2026/03/21 21:18:13 [transform_engine] {"stage_name":"transform_engine","events_processed":384,"events_dropped":0,"avg_latency_ms":242.59080871414898,"throughput_eps":0,"last_update":"2026-03-21T21:18:08.965915861Z"} +2026/03/21 21:18:13 ───────────────────────────────────────────────── +2026/03/21 21:18:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:18:18 [detection_layer] {"stage_name":"detection_layer","events_processed":384,"events_dropped":0,"avg_latency_ms":18.135871233770317,"throughput_eps":0,"last_update":"2026-03-21T21:18:13.965738126Z"} +2026/03/21 21:18:18 [log_collector] {"stage_name":"log_collector","events_processed":18469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3693.8,"last_update":"2026-03-21T21:18:13.869744859Z"} +2026/03/21 21:18:18 [metric_collector] {"stage_name":"metric_collector","events_processed":11544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2308.8,"last_update":"2026-03-21T21:18:13.87014225Z"} +2026/03/21 21:18:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4620,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:18:13.877221529Z"} +2026/03/21 21:18:18 [transform_engine] {"stage_name":"transform_engine","events_processed":384,"events_dropped":0,"avg_latency_ms":242.59080871414898,"throughput_eps":0,"last_update":"2026-03-21T21:18:13.965770137Z"} +2026/03/21 21:18:18 ───────────────────────────────────────────────── +2026/03/21 21:18:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:18:23 [transform_engine] {"stage_name":"transform_engine","events_processed":385,"events_dropped":0,"avg_latency_ms":529.2152103713191,"throughput_eps":0,"last_update":"2026-03-21T21:18:20.640888769Z"} +2026/03/21 21:18:23 [detection_layer] {"stage_name":"detection_layer","events_processed":384,"events_dropped":0,"avg_latency_ms":18.135871233770317,"throughput_eps":0,"last_update":"2026-03-21T21:18:18.965838351Z"} +2026/03/21 21:18:23 [log_collector] {"stage_name":"log_collector","events_processed":18494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3698.8,"last_update":"2026-03-21T21:18:23.869780697Z"} +2026/03/21 21:18:23 [metric_collector] {"stage_name":"metric_collector","events_processed":11549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2309.8,"last_update":"2026-03-21T21:18:18.870157573Z"} +2026/03/21 21:18:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4622,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:18:18.877615307Z"} +2026/03/21 21:18:23 ───────────────────────────────────────────────── +2026/03/21 21:18:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:18:28 [transform_engine] {"stage_name":"transform_engine","events_processed":385,"events_dropped":0,"avg_latency_ms":529.2152103713191,"throughput_eps":0,"last_update":"2026-03-21T21:18:23.96510399Z"} +2026/03/21 21:18:28 [detection_layer] {"stage_name":"detection_layer","events_processed":385,"events_dropped":0,"avg_latency_ms":17.905702787016253,"throughput_eps":0,"last_update":"2026-03-21T21:18:23.9662893Z"} +2026/03/21 21:18:28 [log_collector] {"stage_name":"log_collector","events_processed":18494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3698.8,"last_update":"2026-03-21T21:18:23.869780697Z"} +2026/03/21 21:18:28 [metric_collector] {"stage_name":"metric_collector","events_processed":11554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2310.8,"last_update":"2026-03-21T21:18:23.870235158Z"} +2026/03/21 21:18:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:18:23.87693534Z"} +2026/03/21 21:18:28 ───────────────────────────────────────────────── +2026/03/21 21:18:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:18:33 [log_collector] {"stage_name":"log_collector","events_processed":18496,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3699.2,"last_update":"2026-03-21T21:18:28.870105897Z"} +2026/03/21 21:18:33 [metric_collector] {"stage_name":"metric_collector","events_processed":11559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2311.8,"last_update":"2026-03-21T21:18:28.870534518Z"} +2026/03/21 21:18:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:18:28.879721502Z"} +2026/03/21 21:18:33 [transform_engine] {"stage_name":"transform_engine","events_processed":385,"events_dropped":0,"avg_latency_ms":529.2152103713191,"throughput_eps":0,"last_update":"2026-03-21T21:18:28.965896776Z"} +2026/03/21 21:18:33 [detection_layer] {"stage_name":"detection_layer","events_processed":385,"events_dropped":0,"avg_latency_ms":17.905702787016253,"throughput_eps":0,"last_update":"2026-03-21T21:18:28.965882738Z"} +2026/03/21 21:18:33 ───────────────────────────────────────────────── +2026/03/21 21:18:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:18:38 [metric_collector] {"stage_name":"metric_collector","events_processed":11564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2312.8,"last_update":"2026-03-21T21:18:33.869862929Z"} +2026/03/21 21:18:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:18:33.878052513Z"} +2026/03/21 21:18:38 [transform_engine] {"stage_name":"transform_engine","events_processed":385,"events_dropped":0,"avg_latency_ms":529.2152103713191,"throughput_eps":0,"last_update":"2026-03-21T21:18:33.965317994Z"} +2026/03/21 21:18:38 [detection_layer] {"stage_name":"detection_layer","events_processed":385,"events_dropped":0,"avg_latency_ms":17.905702787016253,"throughput_eps":0,"last_update":"2026-03-21T21:18:33.965302825Z"} +2026/03/21 21:18:38 [log_collector] {"stage_name":"log_collector","events_processed":18510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3702,"last_update":"2026-03-21T21:18:38.869949201Z"} +2026/03/21 21:18:38 ───────────────────────────────────────────────── +2026/03/21 21:18:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:18:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:18:38.878852582Z"} +2026/03/21 21:18:43 [transform_engine] {"stage_name":"transform_engine","events_processed":385,"events_dropped":0,"avg_latency_ms":529.2152103713191,"throughput_eps":0,"last_update":"2026-03-21T21:18:38.966189971Z"} +2026/03/21 21:18:43 [detection_layer] {"stage_name":"detection_layer","events_processed":385,"events_dropped":0,"avg_latency_ms":17.905702787016253,"throughput_eps":0,"last_update":"2026-03-21T21:18:38.966171886Z"} +2026/03/21 21:18:43 [log_collector] {"stage_name":"log_collector","events_processed":18510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3702,"last_update":"2026-03-21T21:18:38.869949201Z"} +2026/03/21 21:18:43 [metric_collector] {"stage_name":"metric_collector","events_processed":11569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2313.8,"last_update":"2026-03-21T21:18:38.870588424Z"} +2026/03/21 21:18:43 ───────────────────────────────────────────────── +2026/03/21 21:18:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:18:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4632,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:18:43.87889959Z"} +2026/03/21 21:18:48 [transform_engine] {"stage_name":"transform_engine","events_processed":385,"events_dropped":0,"avg_latency_ms":529.2152103713191,"throughput_eps":0,"last_update":"2026-03-21T21:18:43.96516231Z"} +2026/03/21 21:18:48 [detection_layer] {"stage_name":"detection_layer","events_processed":385,"events_dropped":0,"avg_latency_ms":17.905702787016253,"throughput_eps":0,"last_update":"2026-03-21T21:18:43.966327112Z"} +2026/03/21 21:18:48 [log_collector] {"stage_name":"log_collector","events_processed":18510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3702,"last_update":"2026-03-21T21:18:43.869416408Z"} +2026/03/21 21:18:48 [metric_collector] {"stage_name":"metric_collector","events_processed":11574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2314.8,"last_update":"2026-03-21T21:18:43.869796877Z"} +2026/03/21 21:18:48 ───────────────────────────────────────────────── +2026/03/21 21:18:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:18:53 [log_collector] {"stage_name":"log_collector","events_processed":18510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3702,"last_update":"2026-03-21T21:18:48.869596883Z"} +2026/03/21 21:18:53 [metric_collector] {"stage_name":"metric_collector","events_processed":11579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2315.8,"last_update":"2026-03-21T21:18:48.869930884Z"} +2026/03/21 21:18:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:18:48.879309225Z"} +2026/03/21 21:18:53 [transform_engine] {"stage_name":"transform_engine","events_processed":386,"events_dropped":0,"avg_latency_ms":446.4175106970553,"throughput_eps":0,"last_update":"2026-03-21T21:18:49.080908649Z"} +2026/03/21 21:18:53 [detection_layer] {"stage_name":"detection_layer","events_processed":385,"events_dropped":0,"avg_latency_ms":17.905702787016253,"throughput_eps":0,"last_update":"2026-03-21T21:18:48.965660555Z"} +2026/03/21 21:18:53 ───────────────────────────────────────────────── +2026/03/21 21:18:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:18:58 [transform_engine] {"stage_name":"transform_engine","events_processed":386,"events_dropped":0,"avg_latency_ms":446.4175106970553,"throughput_eps":0,"last_update":"2026-03-21T21:18:53.966144444Z"} +2026/03/21 21:18:58 [detection_layer] {"stage_name":"detection_layer","events_processed":386,"events_dropped":0,"avg_latency_ms":18.202986229613003,"throughput_eps":0,"last_update":"2026-03-21T21:18:53.96613163Z"} +2026/03/21 21:18:58 [log_collector] {"stage_name":"log_collector","events_processed":18510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3702,"last_update":"2026-03-21T21:18:53.869521502Z"} +2026/03/21 21:18:58 [metric_collector] {"stage_name":"metric_collector","events_processed":11584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2316.8,"last_update":"2026-03-21T21:18:53.869871161Z"} +2026/03/21 21:18:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:18:53.880838987Z"} +2026/03/21 21:18:58 ───────────────────────────────────────────────── +2026/03/21 21:19:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:19:03 [log_collector] {"stage_name":"log_collector","events_processed":18510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3702,"last_update":"2026-03-21T21:19:03.869541373Z"} +2026/03/21 21:19:03 [metric_collector] {"stage_name":"metric_collector","events_processed":11589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2317.8,"last_update":"2026-03-21T21:18:58.870651367Z"} +2026/03/21 21:19:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:18:58.879275594Z"} +2026/03/21 21:19:03 [transform_engine] {"stage_name":"transform_engine","events_processed":386,"events_dropped":0,"avg_latency_ms":446.4175106970553,"throughput_eps":0,"last_update":"2026-03-21T21:18:58.965687931Z"} +2026/03/21 21:19:03 [detection_layer] {"stage_name":"detection_layer","events_processed":386,"events_dropped":0,"avg_latency_ms":18.202986229613003,"throughput_eps":0,"last_update":"2026-03-21T21:18:58.965677051Z"} +2026/03/21 21:19:03 ───────────────────────────────────────────────── +2026/03/21 21:19:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:19:08 [log_collector] {"stage_name":"log_collector","events_processed":18510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3702,"last_update":"2026-03-21T21:19:03.869541373Z"} +2026/03/21 21:19:08 [metric_collector] {"stage_name":"metric_collector","events_processed":11594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2318.8,"last_update":"2026-03-21T21:19:03.869965324Z"} +2026/03/21 21:19:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4640,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:19:03.87824932Z"} +2026/03/21 21:19:08 [transform_engine] {"stage_name":"transform_engine","events_processed":386,"events_dropped":0,"avg_latency_ms":446.4175106970553,"throughput_eps":0,"last_update":"2026-03-21T21:19:03.965587811Z"} +2026/03/21 21:19:08 [detection_layer] {"stage_name":"detection_layer","events_processed":386,"events_dropped":0,"avg_latency_ms":18.202986229613003,"throughput_eps":0,"last_update":"2026-03-21T21:19:03.965704074Z"} +2026/03/21 21:19:08 ───────────────────────────────────────────────── +2026/03/21 21:19:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:19:13 [metric_collector] {"stage_name":"metric_collector","events_processed":11599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2319.8,"last_update":"2026-03-21T21:19:08.869885856Z"} +2026/03/21 21:19:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:19:08.878742508Z"} +2026/03/21 21:19:13 [transform_engine] {"stage_name":"transform_engine","events_processed":386,"events_dropped":0,"avg_latency_ms":446.4175106970553,"throughput_eps":0,"last_update":"2026-03-21T21:19:08.965969957Z"} +2026/03/21 21:19:13 [detection_layer] {"stage_name":"detection_layer","events_processed":386,"events_dropped":0,"avg_latency_ms":18.202986229613003,"throughput_eps":0,"last_update":"2026-03-21T21:19:08.965943756Z"} +2026/03/21 21:19:13 [log_collector] {"stage_name":"log_collector","events_processed":18510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3702,"last_update":"2026-03-21T21:19:08.869639434Z"} +2026/03/21 21:19:13 ───────────────────────────────────────────────── +2026/03/21 21:19:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:19:18 [log_collector] {"stage_name":"log_collector","events_processed":18510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3702,"last_update":"2026-03-21T21:19:18.869629583Z"} +2026/03/21 21:19:18 [metric_collector] {"stage_name":"metric_collector","events_processed":11603,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2320.6,"last_update":"2026-03-21T21:19:13.869488598Z"} +2026/03/21 21:19:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:19:13.878647188Z"} +2026/03/21 21:19:18 [transform_engine] {"stage_name":"transform_engine","events_processed":386,"events_dropped":0,"avg_latency_ms":446.4175106970553,"throughput_eps":0,"last_update":"2026-03-21T21:19:13.96585587Z"} +2026/03/21 21:19:18 [detection_layer] {"stage_name":"detection_layer","events_processed":386,"events_dropped":0,"avg_latency_ms":18.202986229613003,"throughput_eps":0,"last_update":"2026-03-21T21:19:13.965895526Z"} +2026/03/21 21:19:18 ───────────────────────────────────────────────── +2026/03/21 21:19:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:19:23 [transform_engine] {"stage_name":"transform_engine","events_processed":386,"events_dropped":0,"avg_latency_ms":446.4175106970553,"throughput_eps":0,"last_update":"2026-03-21T21:19:18.965624171Z"} +2026/03/21 21:19:23 [detection_layer] {"stage_name":"detection_layer","events_processed":386,"events_dropped":0,"avg_latency_ms":18.202986229613003,"throughput_eps":0,"last_update":"2026-03-21T21:19:18.965671001Z"} +2026/03/21 21:19:23 [log_collector] {"stage_name":"log_collector","events_processed":18510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3702,"last_update":"2026-03-21T21:19:18.869629583Z"} +2026/03/21 21:19:23 [metric_collector] {"stage_name":"metric_collector","events_processed":11609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2321.8,"last_update":"2026-03-21T21:19:18.870330154Z"} +2026/03/21 21:19:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4646,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:19:18.879273753Z"} +2026/03/21 21:19:23 ───────────────────────────────────────────────── +2026/03/21 21:19:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:19:28 [log_collector] {"stage_name":"log_collector","events_processed":18510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3702,"last_update":"2026-03-21T21:19:23.869739638Z"} +2026/03/21 21:19:28 [metric_collector] {"stage_name":"metric_collector","events_processed":11614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2322.8,"last_update":"2026-03-21T21:19:23.870122231Z"} +2026/03/21 21:19:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:19:23.878552577Z"} +2026/03/21 21:19:28 [transform_engine] {"stage_name":"transform_engine","events_processed":387,"events_dropped":0,"avg_latency_ms":371.5124981576443,"throughput_eps":0,"last_update":"2026-03-21T21:19:23.965988945Z"} +2026/03/21 21:19:28 [detection_layer] {"stage_name":"detection_layer","events_processed":387,"events_dropped":0,"avg_latency_ms":18.659571783690403,"throughput_eps":0,"last_update":"2026-03-21T21:19:23.96587168Z"} +2026/03/21 21:19:28 ───────────────────────────────────────────────── +2026/03/21 21:19:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:19:33 [log_collector] {"stage_name":"log_collector","events_processed":18510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3702,"last_update":"2026-03-21T21:19:33.869686768Z"} +2026/03/21 21:19:33 [metric_collector] {"stage_name":"metric_collector","events_processed":11619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2323.8,"last_update":"2026-03-21T21:19:28.870298093Z"} +2026/03/21 21:19:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4650,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:19:28.879687385Z"} +2026/03/21 21:19:33 [transform_engine] {"stage_name":"transform_engine","events_processed":387,"events_dropped":0,"avg_latency_ms":371.5124981576443,"throughput_eps":0,"last_update":"2026-03-21T21:19:28.965956588Z"} +2026/03/21 21:19:33 [detection_layer] {"stage_name":"detection_layer","events_processed":387,"events_dropped":0,"avg_latency_ms":18.659571783690403,"throughput_eps":0,"last_update":"2026-03-21T21:19:28.965982678Z"} +2026/03/21 21:19:33 ───────────────────────────────────────────────── +Saved state: 12 clusters, 18511 messages, reason: none +2026/03/21 21:19:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:19:38 [detection_layer] {"stage_name":"detection_layer","events_processed":387,"events_dropped":0,"avg_latency_ms":18.659571783690403,"throughput_eps":0,"last_update":"2026-03-21T21:19:33.965571637Z"} +2026/03/21 21:19:38 [log_collector] {"stage_name":"log_collector","events_processed":18510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3702,"last_update":"2026-03-21T21:19:33.869686768Z"} +2026/03/21 21:19:38 [metric_collector] {"stage_name":"metric_collector","events_processed":11624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2324.8,"last_update":"2026-03-21T21:19:33.870139245Z"} +2026/03/21 21:19:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:19:33.880397171Z"} +2026/03/21 21:19:38 [transform_engine] {"stage_name":"transform_engine","events_processed":387,"events_dropped":0,"avg_latency_ms":371.5124981576443,"throughput_eps":0,"last_update":"2026-03-21T21:19:33.965592637Z"} +2026/03/21 21:19:38 ───────────────────────────────────────────────── +2026/03/21 21:19:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:19:43 [log_collector] {"stage_name":"log_collector","events_processed":18515,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3703,"last_update":"2026-03-21T21:19:38.869781786Z"} +2026/03/21 21:19:43 [metric_collector] {"stage_name":"metric_collector","events_processed":11629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2325.8,"last_update":"2026-03-21T21:19:38.870061872Z"} +2026/03/21 21:19:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:19:38.878303928Z"} +2026/03/21 21:19:43 [transform_engine] {"stage_name":"transform_engine","events_processed":387,"events_dropped":0,"avg_latency_ms":371.5124981576443,"throughput_eps":0,"last_update":"2026-03-21T21:19:38.9654813Z"} +2026/03/21 21:19:43 [detection_layer] {"stage_name":"detection_layer","events_processed":387,"events_dropped":0,"avg_latency_ms":18.659571783690403,"throughput_eps":0,"last_update":"2026-03-21T21:19:38.965544321Z"} +2026/03/21 21:19:43 ───────────────────────────────────────────────── +2026/03/21 21:19:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:19:48 [detection_layer] {"stage_name":"detection_layer","events_processed":387,"events_dropped":0,"avg_latency_ms":18.659571783690403,"throughput_eps":0,"last_update":"2026-03-21T21:19:43.966112346Z"} +2026/03/21 21:19:48 [log_collector] {"stage_name":"log_collector","events_processed":18515,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3703,"last_update":"2026-03-21T21:19:48.869466948Z"} +2026/03/21 21:19:48 [metric_collector] {"stage_name":"metric_collector","events_processed":11634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2326.8,"last_update":"2026-03-21T21:19:43.869787133Z"} +2026/03/21 21:19:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:19:43.878971533Z"} +2026/03/21 21:19:48 [transform_engine] {"stage_name":"transform_engine","events_processed":387,"events_dropped":0,"avg_latency_ms":371.5124981576443,"throughput_eps":0,"last_update":"2026-03-21T21:19:43.96609386Z"} +2026/03/21 21:19:48 ───────────────────────────────────────────────── +2026/03/21 21:19:52 [ANOMALY] time=2026-03-21T21:19:52Z score=0.9486 method=SEAD details=MAD!:w=0.21,s=0.93 RRCF-fast!:w=0.20,s=0.99 RRCF-mid!:w=0.21,s=1.00 RRCF-slow!:w=0.15,s=0.88 COPOD!:w=0.22,s=0.93 +2026/03/21 21:19:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:19:53 [metric_collector] {"stage_name":"metric_collector","events_processed":11639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2327.8,"last_update":"2026-03-21T21:19:48.869870501Z"} +2026/03/21 21:19:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:19:48.877065851Z"} +2026/03/21 21:19:53 [transform_engine] {"stage_name":"transform_engine","events_processed":387,"events_dropped":0,"avg_latency_ms":371.5124981576443,"throughput_eps":0,"last_update":"2026-03-21T21:19:48.965072362Z"} +2026/03/21 21:19:53 [detection_layer] {"stage_name":"detection_layer","events_processed":387,"events_dropped":0,"avg_latency_ms":18.659571783690403,"throughput_eps":0,"last_update":"2026-03-21T21:19:48.966377572Z"} +2026/03/21 21:19:53 [log_collector] {"stage_name":"log_collector","events_processed":18515,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3703,"last_update":"2026-03-21T21:19:53.869452237Z"} +2026/03/21 21:19:53 ───────────────────────────────────────────────── +2026/03/21 21:19:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:19:58 [detection_layer] {"stage_name":"detection_layer","events_processed":388,"events_dropped":0,"avg_latency_ms":17.77597842695232,"throughput_eps":0,"last_update":"2026-03-21T21:19:53.965629677Z"} +2026/03/21 21:19:58 [log_collector] {"stage_name":"log_collector","events_processed":18515,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3703,"last_update":"2026-03-21T21:19:58.870138139Z"} +2026/03/21 21:19:58 [metric_collector] {"stage_name":"metric_collector","events_processed":11644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2328.8,"last_update":"2026-03-21T21:19:53.869860199Z"} +2026/03/21 21:19:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4660,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:19:53.880332325Z"} +2026/03/21 21:19:58 [transform_engine] {"stage_name":"transform_engine","events_processed":388,"events_dropped":0,"avg_latency_ms":972.5514167261156,"throughput_eps":0,"last_update":"2026-03-21T21:19:53.96560541Z"} +2026/03/21 21:19:58 ───────────────────────────────────────────────── +2026/03/21 21:20:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:20:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4662,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:19:58.876997386Z"} +2026/03/21 21:20:03 [transform_engine] {"stage_name":"transform_engine","events_processed":388,"events_dropped":0,"avg_latency_ms":972.5514167261156,"throughput_eps":0,"last_update":"2026-03-21T21:19:58.965139216Z"} +2026/03/21 21:20:03 [detection_layer] {"stage_name":"detection_layer","events_processed":388,"events_dropped":0,"avg_latency_ms":17.77597842695232,"throughput_eps":0,"last_update":"2026-03-21T21:19:58.966206781Z"} +2026/03/21 21:20:03 [log_collector] {"stage_name":"log_collector","events_processed":18515,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3703,"last_update":"2026-03-21T21:19:58.870138139Z"} +2026/03/21 21:20:03 [metric_collector] {"stage_name":"metric_collector","events_processed":11649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2329.8,"last_update":"2026-03-21T21:19:58.870603261Z"} +2026/03/21 21:20:03 ───────────────────────────────────────────────── +2026/03/21 21:20:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:20:08 [log_collector] {"stage_name":"log_collector","events_processed":18515,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3703,"last_update":"2026-03-21T21:20:03.869538509Z"} +2026/03/21 21:20:08 [metric_collector] {"stage_name":"metric_collector","events_processed":11654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2330.8,"last_update":"2026-03-21T21:20:03.870061331Z"} +2026/03/21 21:20:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:20:03.892327065Z"} +2026/03/21 21:20:08 [transform_engine] {"stage_name":"transform_engine","events_processed":388,"events_dropped":0,"avg_latency_ms":972.5514167261156,"throughput_eps":0,"last_update":"2026-03-21T21:20:03.965431985Z"} +2026/03/21 21:20:08 [detection_layer] {"stage_name":"detection_layer","events_processed":388,"events_dropped":0,"avg_latency_ms":17.77597842695232,"throughput_eps":0,"last_update":"2026-03-21T21:20:03.965454718Z"} +2026/03/21 21:20:08 ───────────────────────────────────────────────── +2026/03/21 21:20:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:20:13 [log_collector] {"stage_name":"log_collector","events_processed":18515,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3703,"last_update":"2026-03-21T21:20:13.869429291Z"} +2026/03/21 21:20:13 [metric_collector] {"stage_name":"metric_collector","events_processed":11659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2331.8,"last_update":"2026-03-21T21:20:08.869667185Z"} +2026/03/21 21:20:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:20:08.878095006Z"} +2026/03/21 21:20:13 [transform_engine] {"stage_name":"transform_engine","events_processed":388,"events_dropped":0,"avg_latency_ms":972.5514167261156,"throughput_eps":0,"last_update":"2026-03-21T21:20:08.96524714Z"} +2026/03/21 21:20:13 [detection_layer] {"stage_name":"detection_layer","events_processed":388,"events_dropped":0,"avg_latency_ms":17.77597842695232,"throughput_eps":0,"last_update":"2026-03-21T21:20:08.965267019Z"} +2026/03/21 21:20:13 ───────────────────────────────────────────────── +2026/03/21 21:20:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:20:18 [transform_engine] {"stage_name":"transform_engine","events_processed":388,"events_dropped":0,"avg_latency_ms":972.5514167261156,"throughput_eps":0,"last_update":"2026-03-21T21:20:13.96549133Z"} +2026/03/21 21:20:18 [detection_layer] {"stage_name":"detection_layer","events_processed":388,"events_dropped":0,"avg_latency_ms":17.77597842695232,"throughput_eps":0,"last_update":"2026-03-21T21:20:13.965461442Z"} +2026/03/21 21:20:18 [log_collector] {"stage_name":"log_collector","events_processed":18515,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3703,"last_update":"2026-03-21T21:20:13.869429291Z"} +2026/03/21 21:20:18 [metric_collector] {"stage_name":"metric_collector","events_processed":11664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2332.8,"last_update":"2026-03-21T21:20:13.869785032Z"} +2026/03/21 21:20:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4668,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:20:13.87725563Z"} +2026/03/21 21:20:18 ───────────────────────────────────────────────── +2026/03/21 21:20:21 [ANOMALY] time=2026-03-21T21:20:21Z score=0.9128 method=SEAD details=MAD!:w=0.21,s=0.89 RRCF-fast!:w=0.20,s=0.96 RRCF-mid!:w=0.21,s=0.99 RRCF-slow!:w=0.15,s=0.92 COPOD!:w=0.22,s=0.81 +2026/03/21 21:20:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:20:23 [log_collector] {"stage_name":"log_collector","events_processed":18524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3704.8,"last_update":"2026-03-21T21:20:18.870516013Z"} +2026/03/21 21:20:23 [metric_collector] {"stage_name":"metric_collector","events_processed":11669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2333.8,"last_update":"2026-03-21T21:20:18.87106281Z"} +2026/03/21 21:20:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4670,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:20:18.876559187Z"} +2026/03/21 21:20:23 [transform_engine] {"stage_name":"transform_engine","events_processed":389,"events_dropped":0,"avg_latency_ms":1343.0333249808925,"throughput_eps":0,"last_update":"2026-03-21T21:20:21.790153396Z"} +2026/03/21 21:20:23 [detection_layer] {"stage_name":"detection_layer","events_processed":388,"events_dropped":0,"avg_latency_ms":17.77597842695232,"throughput_eps":0,"last_update":"2026-03-21T21:20:18.965364338Z"} +2026/03/21 21:20:23 ───────────────────────────────────────────────── +2026/03/21 21:20:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:20:28 [log_collector] {"stage_name":"log_collector","events_processed":18526,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3705.2,"last_update":"2026-03-21T21:20:23.869761181Z"} +2026/03/21 21:20:28 [metric_collector] {"stage_name":"metric_collector","events_processed":11674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2334.8,"last_update":"2026-03-21T21:20:23.870198318Z"} +2026/03/21 21:20:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:20:23.879623318Z"} +2026/03/21 21:20:28 [transform_engine] {"stage_name":"transform_engine","events_processed":389,"events_dropped":0,"avg_latency_ms":1343.0333249808925,"throughput_eps":0,"last_update":"2026-03-21T21:20:23.966074741Z"} +2026/03/21 21:20:28 [detection_layer] {"stage_name":"detection_layer","events_processed":389,"events_dropped":0,"avg_latency_ms":17.22917434156186,"throughput_eps":0,"last_update":"2026-03-21T21:20:23.965957035Z"} +2026/03/21 21:20:28 ───────────────────────────────────────────────── +2026/03/21 21:20:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:20:33 [metric_collector] {"stage_name":"metric_collector","events_processed":11679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2335.8,"last_update":"2026-03-21T21:20:28.870268754Z"} +2026/03/21 21:20:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:20:28.876822757Z"} +2026/03/21 21:20:33 [transform_engine] {"stage_name":"transform_engine","events_processed":389,"events_dropped":0,"avg_latency_ms":1343.0333249808925,"throughput_eps":0,"last_update":"2026-03-21T21:20:28.966058021Z"} +2026/03/21 21:20:33 [detection_layer] {"stage_name":"detection_layer","events_processed":389,"events_dropped":0,"avg_latency_ms":17.22917434156186,"throughput_eps":0,"last_update":"2026-03-21T21:20:28.966101483Z"} +2026/03/21 21:20:33 [log_collector] {"stage_name":"log_collector","events_processed":18731,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3746.2,"last_update":"2026-03-21T21:20:28.869909707Z"} +2026/03/21 21:20:33 ───────────────────────────────────────────────── +2026/03/21 21:20:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:20:38 [log_collector] {"stage_name":"log_collector","events_processed":18877,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3775.4,"last_update":"2026-03-21T21:20:33.870257325Z"} +2026/03/21 21:20:38 [metric_collector] {"stage_name":"metric_collector","events_processed":11684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2336.8,"last_update":"2026-03-21T21:20:33.870661889Z"} +2026/03/21 21:20:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4676,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:20:33.878895017Z"} +2026/03/21 21:20:38 [transform_engine] {"stage_name":"transform_engine","events_processed":389,"events_dropped":0,"avg_latency_ms":1343.0333249808925,"throughput_eps":0,"last_update":"2026-03-21T21:20:33.965672996Z"} +2026/03/21 21:20:38 [detection_layer] {"stage_name":"detection_layer","events_processed":389,"events_dropped":0,"avg_latency_ms":17.22917434156186,"throughput_eps":0,"last_update":"2026-03-21T21:20:33.965634301Z"} +2026/03/21 21:20:38 ───────────────────────────────────────────────── +Saved state: 12 clusters, 18880 messages, reason: none +2026/03/21 21:20:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:20:43 [log_collector] {"stage_name":"log_collector","events_processed":18879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3775.8,"last_update":"2026-03-21T21:20:38.870115287Z"} +2026/03/21 21:20:43 [metric_collector] {"stage_name":"metric_collector","events_processed":11689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2337.8,"last_update":"2026-03-21T21:20:38.870336611Z"} +2026/03/21 21:20:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:20:38.878476731Z"} +2026/03/21 21:20:43 [transform_engine] {"stage_name":"transform_engine","events_processed":389,"events_dropped":0,"avg_latency_ms":1343.0333249808925,"throughput_eps":0,"last_update":"2026-03-21T21:20:38.965894794Z"} +2026/03/21 21:20:43 [detection_layer] {"stage_name":"detection_layer","events_processed":389,"events_dropped":0,"avg_latency_ms":17.22917434156186,"throughput_eps":0,"last_update":"2026-03-21T21:20:38.966012821Z"} +2026/03/21 21:20:43 ───────────────────────────────────────────────── +2026/03/21 21:20:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:20:48 [log_collector] {"stage_name":"log_collector","events_processed":18882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3776.4,"last_update":"2026-03-21T21:20:48.870062182Z"} +2026/03/21 21:20:48 [metric_collector] {"stage_name":"metric_collector","events_processed":11694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2338.8,"last_update":"2026-03-21T21:20:43.869693421Z"} +2026/03/21 21:20:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:20:43.878040127Z"} +2026/03/21 21:20:48 [transform_engine] {"stage_name":"transform_engine","events_processed":389,"events_dropped":0,"avg_latency_ms":1343.0333249808925,"throughput_eps":0,"last_update":"2026-03-21T21:20:43.965139901Z"} +2026/03/21 21:20:48 [detection_layer] {"stage_name":"detection_layer","events_processed":389,"events_dropped":0,"avg_latency_ms":17.22917434156186,"throughput_eps":0,"last_update":"2026-03-21T21:20:43.965997644Z"} +2026/03/21 21:20:48 ───────────────────────────────────────────────── +2026/03/21 21:20:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:20:53 [transform_engine] {"stage_name":"transform_engine","events_processed":390,"events_dropped":0,"avg_latency_ms":1649.191089584714,"throughput_eps":0,"last_update":"2026-03-21T21:20:51.839215719Z"} +2026/03/21 21:20:53 [detection_layer] {"stage_name":"detection_layer","events_processed":389,"events_dropped":0,"avg_latency_ms":17.22917434156186,"throughput_eps":0,"last_update":"2026-03-21T21:20:48.966467197Z"} +2026/03/21 21:20:53 [log_collector] {"stage_name":"log_collector","events_processed":18893,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3778.6,"last_update":"2026-03-21T21:20:53.869435606Z"} +2026/03/21 21:20:53 [metric_collector] {"stage_name":"metric_collector","events_processed":11699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2339.8,"last_update":"2026-03-21T21:20:48.870512384Z"} +2026/03/21 21:20:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:20:48.882202253Z"} +2026/03/21 21:20:53 ───────────────────────────────────────────────── +2026/03/21 21:20:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:20:58 [metric_collector] {"stage_name":"metric_collector","events_processed":11704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2340.8,"last_update":"2026-03-21T21:20:53.86986552Z"} +2026/03/21 21:20:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:20:53.878944888Z"} +2026/03/21 21:20:58 [transform_engine] {"stage_name":"transform_engine","events_processed":390,"events_dropped":0,"avg_latency_ms":1649.191089584714,"throughput_eps":0,"last_update":"2026-03-21T21:20:53.965122897Z"} +2026/03/21 21:20:58 [detection_layer] {"stage_name":"detection_layer","events_processed":390,"events_dropped":0,"avg_latency_ms":17.304146673249488,"throughput_eps":0,"last_update":"2026-03-21T21:20:53.966291796Z"} +2026/03/21 21:20:58 [log_collector] {"stage_name":"log_collector","events_processed":18893,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3778.6,"last_update":"2026-03-21T21:20:53.869435606Z"} +2026/03/21 21:20:58 ───────────────────────────────────────────────── +2026/03/21 21:21:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:21:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:20:58.88052467Z"} +2026/03/21 21:21:03 [transform_engine] {"stage_name":"transform_engine","events_processed":390,"events_dropped":0,"avg_latency_ms":1649.191089584714,"throughput_eps":0,"last_update":"2026-03-21T21:20:58.965847641Z"} +2026/03/21 21:21:03 [detection_layer] {"stage_name":"detection_layer","events_processed":390,"events_dropped":0,"avg_latency_ms":17.304146673249488,"throughput_eps":0,"last_update":"2026-03-21T21:20:58.965730716Z"} +2026/03/21 21:21:03 [log_collector] {"stage_name":"log_collector","events_processed":18909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3781.8,"last_update":"2026-03-21T21:20:58.870605141Z"} +2026/03/21 21:21:03 [metric_collector] {"stage_name":"metric_collector","events_processed":11709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2341.8,"last_update":"2026-03-21T21:20:58.870597758Z"} +2026/03/21 21:21:03 ───────────────────────────────────────────────── +2026/03/21 21:21:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:21:08 [metric_collector] {"stage_name":"metric_collector","events_processed":11714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2342.8,"last_update":"2026-03-21T21:21:03.870662128Z"} +2026/03/21 21:21:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4688,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:21:03.879124164Z"} +2026/03/21 21:21:08 [transform_engine] {"stage_name":"transform_engine","events_processed":390,"events_dropped":0,"avg_latency_ms":1649.191089584714,"throughput_eps":0,"last_update":"2026-03-21T21:21:03.965303856Z"} +2026/03/21 21:21:08 [detection_layer] {"stage_name":"detection_layer","events_processed":390,"events_dropped":0,"avg_latency_ms":17.304146673249488,"throughput_eps":0,"last_update":"2026-03-21T21:21:03.965329345Z"} +2026/03/21 21:21:08 [log_collector] {"stage_name":"log_collector","events_processed":18909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3781.8,"last_update":"2026-03-21T21:21:03.870197568Z"} +2026/03/21 21:21:08 ───────────────────────────────────────────────── +2026/03/21 21:21:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:21:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:21:08.880823123Z"} +2026/03/21 21:21:13 [transform_engine] {"stage_name":"transform_engine","events_processed":390,"events_dropped":0,"avg_latency_ms":1649.191089584714,"throughput_eps":0,"last_update":"2026-03-21T21:21:08.966124433Z"} +2026/03/21 21:21:13 [detection_layer] {"stage_name":"detection_layer","events_processed":390,"events_dropped":0,"avg_latency_ms":17.304146673249488,"throughput_eps":0,"last_update":"2026-03-21T21:21:08.966151876Z"} +2026/03/21 21:21:13 [log_collector] {"stage_name":"log_collector","events_processed":18909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3781.8,"last_update":"2026-03-21T21:21:08.870054689Z"} +2026/03/21 21:21:13 [metric_collector] {"stage_name":"metric_collector","events_processed":11719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2343.8,"last_update":"2026-03-21T21:21:08.870438574Z"} +2026/03/21 21:21:13 ───────────────────────────────────────────────── +2026/03/21 21:21:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:21:18 [log_collector] {"stage_name":"log_collector","events_processed":18909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3781.8,"last_update":"2026-03-21T21:21:13.869882236Z"} +2026/03/21 21:21:18 [metric_collector] {"stage_name":"metric_collector","events_processed":11724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2344.8,"last_update":"2026-03-21T21:21:13.870409696Z"} +2026/03/21 21:21:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:21:13.878752644Z"} +2026/03/21 21:21:18 [transform_engine] {"stage_name":"transform_engine","events_processed":390,"events_dropped":0,"avg_latency_ms":1649.191089584714,"throughput_eps":0,"last_update":"2026-03-21T21:21:13.965860783Z"} +2026/03/21 21:21:18 [detection_layer] {"stage_name":"detection_layer","events_processed":390,"events_dropped":0,"avg_latency_ms":17.304146673249488,"throughput_eps":0,"last_update":"2026-03-21T21:21:13.965888576Z"} +2026/03/21 21:21:18 ───────────────────────────────────────────────── +2026/03/21 21:21:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:21:23 [log_collector] {"stage_name":"log_collector","events_processed":18909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3781.8,"last_update":"2026-03-21T21:21:18.869424836Z"} +2026/03/21 21:21:23 [metric_collector] {"stage_name":"metric_collector","events_processed":11729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2345.8,"last_update":"2026-03-21T21:21:18.869870089Z"} +2026/03/21 21:21:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:21:18.87901866Z"} +2026/03/21 21:21:23 [transform_engine] {"stage_name":"transform_engine","events_processed":391,"events_dropped":0,"avg_latency_ms":1342.0613892677713,"throughput_eps":0,"last_update":"2026-03-21T21:21:19.07872522Z"} +2026/03/21 21:21:23 [detection_layer] {"stage_name":"detection_layer","events_processed":390,"events_dropped":0,"avg_latency_ms":17.304146673249488,"throughput_eps":0,"last_update":"2026-03-21T21:21:18.966270355Z"} +2026/03/21 21:21:23 ───────────────────────────────────────────────── +2026/03/21 21:21:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:21:28 [log_collector] {"stage_name":"log_collector","events_processed":18909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3781.8,"last_update":"2026-03-21T21:21:23.870246877Z"} +2026/03/21 21:21:28 [metric_collector] {"stage_name":"metric_collector","events_processed":11734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2346.8,"last_update":"2026-03-21T21:21:23.870318735Z"} +2026/03/21 21:21:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:21:23.878825568Z"} +2026/03/21 21:21:28 [transform_engine] {"stage_name":"transform_engine","events_processed":391,"events_dropped":0,"avg_latency_ms":1342.0613892677713,"throughput_eps":0,"last_update":"2026-03-21T21:21:23.966068485Z"} +2026/03/21 21:21:28 [detection_layer] {"stage_name":"detection_layer","events_processed":391,"events_dropped":0,"avg_latency_ms":17.62151953859959,"throughput_eps":0,"last_update":"2026-03-21T21:21:23.966043427Z"} +2026/03/21 21:21:28 ───────────────────────────────────────────────── +2026/03/21 21:21:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:21:33 [log_collector] {"stage_name":"log_collector","events_processed":18909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3781.8,"last_update":"2026-03-21T21:21:28.869958436Z"} +2026/03/21 21:21:33 [metric_collector] {"stage_name":"metric_collector","events_processed":11739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2347.8,"last_update":"2026-03-21T21:21:28.870197012Z"} +2026/03/21 21:21:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:21:28.878551834Z"} +2026/03/21 21:21:33 [transform_engine] {"stage_name":"transform_engine","events_processed":391,"events_dropped":0,"avg_latency_ms":1342.0613892677713,"throughput_eps":0,"last_update":"2026-03-21T21:21:28.965787097Z"} +2026/03/21 21:21:33 [detection_layer] {"stage_name":"detection_layer","events_processed":391,"events_dropped":0,"avg_latency_ms":17.62151953859959,"throughput_eps":0,"last_update":"2026-03-21T21:21:28.965809128Z"} +2026/03/21 21:21:33 ───────────────────────────────────────────────── +2026/03/21 21:21:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:21:38 [log_collector] {"stage_name":"log_collector","events_processed":18909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3781.8,"last_update":"2026-03-21T21:21:33.870466356Z"} +2026/03/21 21:21:38 [metric_collector] {"stage_name":"metric_collector","events_processed":11744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2348.8,"last_update":"2026-03-21T21:21:33.870971623Z"} +2026/03/21 21:21:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4700,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:21:33.879505708Z"} +2026/03/21 21:21:38 [transform_engine] {"stage_name":"transform_engine","events_processed":391,"events_dropped":0,"avg_latency_ms":1342.0613892677713,"throughput_eps":0,"last_update":"2026-03-21T21:21:33.965715427Z"} +2026/03/21 21:21:38 [detection_layer] {"stage_name":"detection_layer","events_processed":391,"events_dropped":0,"avg_latency_ms":17.62151953859959,"throughput_eps":0,"last_update":"2026-03-21T21:21:33.965760123Z"} +2026/03/21 21:21:38 ───────────────────────────────────────────────── +2026/03/21 21:21:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:21:43 [detection_layer] {"stage_name":"detection_layer","events_processed":391,"events_dropped":0,"avg_latency_ms":17.62151953859959,"throughput_eps":0,"last_update":"2026-03-21T21:21:38.965283639Z"} +2026/03/21 21:21:43 [log_collector] {"stage_name":"log_collector","events_processed":18909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3781.8,"last_update":"2026-03-21T21:21:38.869501758Z"} +2026/03/21 21:21:43 [metric_collector] {"stage_name":"metric_collector","events_processed":11749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2349.8,"last_update":"2026-03-21T21:21:38.869792094Z"} +2026/03/21 21:21:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4702,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:21:38.878029691Z"} +2026/03/21 21:21:43 [transform_engine] {"stage_name":"transform_engine","events_processed":391,"events_dropped":0,"avg_latency_ms":1342.0613892677713,"throughput_eps":0,"last_update":"2026-03-21T21:21:38.965198306Z"} +2026/03/21 21:21:43 ───────────────────────────────────────────────── +2026/03/21 21:21:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:21:48 [log_collector] {"stage_name":"log_collector","events_processed":18909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3781.8,"last_update":"2026-03-21T21:21:43.869545712Z"} +2026/03/21 21:21:48 [metric_collector] {"stage_name":"metric_collector","events_processed":11754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2350.8,"last_update":"2026-03-21T21:21:43.869854433Z"} +2026/03/21 21:21:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:21:43.878529698Z"} +2026/03/21 21:21:48 [transform_engine] {"stage_name":"transform_engine","events_processed":391,"events_dropped":0,"avg_latency_ms":1342.0613892677713,"throughput_eps":0,"last_update":"2026-03-21T21:21:43.965898298Z"} +2026/03/21 21:21:48 [detection_layer] {"stage_name":"detection_layer","events_processed":391,"events_dropped":0,"avg_latency_ms":17.62151953859959,"throughput_eps":0,"last_update":"2026-03-21T21:21:43.966012075Z"} +2026/03/21 21:21:48 ───────────────────────────────────────────────── +2026/03/21 21:21:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:21:53 [transform_engine] {"stage_name":"transform_engine","events_processed":391,"events_dropped":0,"avg_latency_ms":1342.0613892677713,"throughput_eps":0,"last_update":"2026-03-21T21:21:48.966074427Z"} +2026/03/21 21:21:53 [detection_layer] {"stage_name":"detection_layer","events_processed":391,"events_dropped":0,"avg_latency_ms":17.62151953859959,"throughput_eps":0,"last_update":"2026-03-21T21:21:48.966285771Z"} +2026/03/21 21:21:53 [log_collector] {"stage_name":"log_collector","events_processed":18909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3781.8,"last_update":"2026-03-21T21:21:48.869666856Z"} +2026/03/21 21:21:53 [metric_collector] {"stage_name":"metric_collector","events_processed":11759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2351.8,"last_update":"2026-03-21T21:21:48.869689208Z"} +2026/03/21 21:21:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:21:48.878902905Z"} +2026/03/21 21:21:53 ───────────────────────────────────────────────── +2026/03/21 21:21:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:21:58 [transform_engine] {"stage_name":"transform_engine","events_processed":392,"events_dropped":0,"avg_latency_ms":1088.169903614217,"throughput_eps":0,"last_update":"2026-03-21T21:21:53.965657047Z"} +2026/03/21 21:21:58 [detection_layer] {"stage_name":"detection_layer","events_processed":392,"events_dropped":0,"avg_latency_ms":18.02152763087967,"throughput_eps":0,"last_update":"2026-03-21T21:21:53.965626388Z"} +2026/03/21 21:21:58 [log_collector] {"stage_name":"log_collector","events_processed":18909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3781.8,"last_update":"2026-03-21T21:21:53.870035543Z"} +2026/03/21 21:21:58 [metric_collector] {"stage_name":"metric_collector","events_processed":11764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2352.8,"last_update":"2026-03-21T21:21:53.870447461Z"} +2026/03/21 21:21:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:21:53.878357671Z"} +2026/03/21 21:21:58 ───────────────────────────────────────────────── +2026/03/21 21:22:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:22:03 [log_collector] {"stage_name":"log_collector","events_processed":18909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3781.8,"last_update":"2026-03-21T21:21:58.869702785Z"} +2026/03/21 21:22:03 [metric_collector] {"stage_name":"metric_collector","events_processed":11769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2353.8,"last_update":"2026-03-21T21:21:58.870154681Z"} +2026/03/21 21:22:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:21:58.878340939Z"} +2026/03/21 21:22:03 [transform_engine] {"stage_name":"transform_engine","events_processed":392,"events_dropped":0,"avg_latency_ms":1088.169903614217,"throughput_eps":0,"last_update":"2026-03-21T21:21:58.96556413Z"} +2026/03/21 21:22:03 [detection_layer] {"stage_name":"detection_layer","events_processed":392,"events_dropped":0,"avg_latency_ms":18.02152763087967,"throughput_eps":0,"last_update":"2026-03-21T21:21:58.965610228Z"} +2026/03/21 21:22:03 ───────────────────────────────────────────────── +2026/03/21 21:22:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:22:08 [log_collector] {"stage_name":"log_collector","events_processed":18909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3781.8,"last_update":"2026-03-21T21:22:08.869433556Z"} +2026/03/21 21:22:08 [metric_collector] {"stage_name":"metric_collector","events_processed":11774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2354.8,"last_update":"2026-03-21T21:22:03.870044822Z"} +2026/03/21 21:22:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4712,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:22:03.877237678Z"} +2026/03/21 21:22:08 [transform_engine] {"stage_name":"transform_engine","events_processed":392,"events_dropped":0,"avg_latency_ms":1088.169903614217,"throughput_eps":0,"last_update":"2026-03-21T21:22:03.965480973Z"} +2026/03/21 21:22:08 [detection_layer] {"stage_name":"detection_layer","events_processed":392,"events_dropped":0,"avg_latency_ms":18.02152763087967,"throughput_eps":0,"last_update":"2026-03-21T21:22:03.965507624Z"} +2026/03/21 21:22:08 ───────────────────────────────────────────────── +Saved state: 12 clusters, 18910 messages, reason: none +2026/03/21 21:22:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:22:13 [log_collector] {"stage_name":"log_collector","events_processed":18922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3784.4,"last_update":"2026-03-21T21:22:13.869825238Z"} +2026/03/21 21:22:13 [metric_collector] {"stage_name":"metric_collector","events_processed":11779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2355.8,"last_update":"2026-03-21T21:22:08.869866675Z"} +2026/03/21 21:22:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:22:08.878692829Z"} +2026/03/21 21:22:13 [transform_engine] {"stage_name":"transform_engine","events_processed":392,"events_dropped":0,"avg_latency_ms":1088.169903614217,"throughput_eps":0,"last_update":"2026-03-21T21:22:08.965907943Z"} +2026/03/21 21:22:13 [detection_layer] {"stage_name":"detection_layer","events_processed":392,"events_dropped":0,"avg_latency_ms":18.02152763087967,"throughput_eps":0,"last_update":"2026-03-21T21:22:08.965875622Z"} +2026/03/21 21:22:13 ───────────────────────────────────────────────── +2026/03/21 21:22:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:22:18 [transform_engine] {"stage_name":"transform_engine","events_processed":392,"events_dropped":0,"avg_latency_ms":1088.169903614217,"throughput_eps":0,"last_update":"2026-03-21T21:22:13.965534832Z"} +2026/03/21 21:22:18 [detection_layer] {"stage_name":"detection_layer","events_processed":392,"events_dropped":0,"avg_latency_ms":18.02152763087967,"throughput_eps":0,"last_update":"2026-03-21T21:22:13.965571843Z"} +2026/03/21 21:22:18 [log_collector] {"stage_name":"log_collector","events_processed":18922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3784.4,"last_update":"2026-03-21T21:22:13.869825238Z"} +2026/03/21 21:22:18 [metric_collector] {"stage_name":"metric_collector","events_processed":11784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2356.8,"last_update":"2026-03-21T21:22:13.870335837Z"} +2026/03/21 21:22:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:22:13.878293466Z"} +2026/03/21 21:22:18 ───────────────────────────────────────────────── +2026/03/21 21:22:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:22:23 [log_collector] {"stage_name":"log_collector","events_processed":18923,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3784.6,"last_update":"2026-03-21T21:22:18.869554143Z"} +2026/03/21 21:22:23 [metric_collector] {"stage_name":"metric_collector","events_processed":11789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2357.8,"last_update":"2026-03-21T21:22:18.869827216Z"} +2026/03/21 21:22:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4718,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:22:18.878273222Z"} +2026/03/21 21:22:23 [transform_engine] {"stage_name":"transform_engine","events_processed":393,"events_dropped":0,"avg_latency_ms":893.4124682913737,"throughput_eps":0,"last_update":"2026-03-21T21:22:19.079870272Z"} +2026/03/21 21:22:23 [detection_layer] {"stage_name":"detection_layer","events_processed":392,"events_dropped":0,"avg_latency_ms":18.02152763087967,"throughput_eps":0,"last_update":"2026-03-21T21:22:18.965451897Z"} +2026/03/21 21:22:23 ───────────────────────────────────────────────── +2026/03/21 21:22:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:22:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:22:23.879049543Z"} +2026/03/21 21:22:28 [transform_engine] {"stage_name":"transform_engine","events_processed":393,"events_dropped":0,"avg_latency_ms":893.4124682913737,"throughput_eps":0,"last_update":"2026-03-21T21:22:23.965144623Z"} +2026/03/21 21:22:28 [detection_layer] {"stage_name":"detection_layer","events_processed":393,"events_dropped":0,"avg_latency_ms":18.17329990470374,"throughput_eps":0,"last_update":"2026-03-21T21:22:23.965347892Z"} +2026/03/21 21:22:28 [log_collector] {"stage_name":"log_collector","events_processed":18923,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3784.6,"last_update":"2026-03-21T21:22:23.870085745Z"} +2026/03/21 21:22:28 [metric_collector] {"stage_name":"metric_collector","events_processed":11794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2358.8,"last_update":"2026-03-21T21:22:23.870459411Z"} +2026/03/21 21:22:28 ───────────────────────────────────────────────── +2026/03/21 21:22:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:22:33 [log_collector] {"stage_name":"log_collector","events_processed":18923,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3784.6,"last_update":"2026-03-21T21:22:28.870494944Z"} +2026/03/21 21:22:33 [metric_collector] {"stage_name":"metric_collector","events_processed":11799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2359.8,"last_update":"2026-03-21T21:22:28.870705387Z"} +2026/03/21 21:22:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4722,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:22:28.878980846Z"} +2026/03/21 21:22:33 [transform_engine] {"stage_name":"transform_engine","events_processed":393,"events_dropped":0,"avg_latency_ms":893.4124682913737,"throughput_eps":0,"last_update":"2026-03-21T21:22:28.965124919Z"} +2026/03/21 21:22:33 [detection_layer] {"stage_name":"detection_layer","events_processed":393,"events_dropped":0,"avg_latency_ms":18.17329990470374,"throughput_eps":0,"last_update":"2026-03-21T21:22:28.966267418Z"} +2026/03/21 21:22:33 ───────────────────────────────────────────────── +2026/03/21 21:22:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:22:38 [metric_collector] {"stage_name":"metric_collector","events_processed":11804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2360.8,"last_update":"2026-03-21T21:22:33.870195525Z"} +2026/03/21 21:22:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:22:33.879673026Z"} +2026/03/21 21:22:38 [transform_engine] {"stage_name":"transform_engine","events_processed":393,"events_dropped":0,"avg_latency_ms":893.4124682913737,"throughput_eps":0,"last_update":"2026-03-21T21:22:33.965785831Z"} +2026/03/21 21:22:38 [detection_layer] {"stage_name":"detection_layer","events_processed":393,"events_dropped":0,"avg_latency_ms":18.17329990470374,"throughput_eps":0,"last_update":"2026-03-21T21:22:33.965816048Z"} +2026/03/21 21:22:38 [log_collector] {"stage_name":"log_collector","events_processed":18923,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3784.6,"last_update":"2026-03-21T21:22:33.869778005Z"} +2026/03/21 21:22:38 ───────────────────────────────────────────────── +2026/03/21 21:22:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:22:43 [log_collector] {"stage_name":"log_collector","events_processed":18923,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3784.6,"last_update":"2026-03-21T21:22:38.869708858Z"} +2026/03/21 21:22:43 [metric_collector] {"stage_name":"metric_collector","events_processed":11809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2361.8,"last_update":"2026-03-21T21:22:38.869847443Z"} +2026/03/21 21:22:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:22:38.878228525Z"} +2026/03/21 21:22:43 [transform_engine] {"stage_name":"transform_engine","events_processed":393,"events_dropped":0,"avg_latency_ms":893.4124682913737,"throughput_eps":0,"last_update":"2026-03-21T21:22:38.965467836Z"} +2026/03/21 21:22:43 [detection_layer] {"stage_name":"detection_layer","events_processed":393,"events_dropped":0,"avg_latency_ms":18.17329990470374,"throughput_eps":0,"last_update":"2026-03-21T21:22:38.965504075Z"} +2026/03/21 21:22:43 ───────────────────────────────────────────────── +2026/03/21 21:22:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:22:48 [log_collector] {"stage_name":"log_collector","events_processed":18923,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3784.6,"last_update":"2026-03-21T21:22:43.869770522Z"} +2026/03/21 21:22:48 [metric_collector] {"stage_name":"metric_collector","events_processed":11814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2362.8,"last_update":"2026-03-21T21:22:43.870308071Z"} +2026/03/21 21:22:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4728,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:22:43.878506985Z"} +2026/03/21 21:22:48 [transform_engine] {"stage_name":"transform_engine","events_processed":393,"events_dropped":0,"avg_latency_ms":893.4124682913737,"throughput_eps":0,"last_update":"2026-03-21T21:22:43.966260291Z"} +2026/03/21 21:22:48 [detection_layer] {"stage_name":"detection_layer","events_processed":393,"events_dropped":0,"avg_latency_ms":18.17329990470374,"throughput_eps":0,"last_update":"2026-03-21T21:22:43.966140231Z"} +2026/03/21 21:22:48 ───────────────────────────────────────────────── +2026/03/21 21:22:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:22:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4730,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:22:48.879323475Z"} +2026/03/21 21:22:53 [transform_engine] {"stage_name":"transform_engine","events_processed":393,"events_dropped":0,"avg_latency_ms":893.4124682913737,"throughput_eps":0,"last_update":"2026-03-21T21:22:48.965658474Z"} +2026/03/21 21:22:53 [detection_layer] {"stage_name":"detection_layer","events_processed":393,"events_dropped":0,"avg_latency_ms":18.17329990470374,"throughput_eps":0,"last_update":"2026-03-21T21:22:48.965689262Z"} +2026/03/21 21:22:53 [log_collector] {"stage_name":"log_collector","events_processed":18923,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3784.6,"last_update":"2026-03-21T21:22:48.869491635Z"} +2026/03/21 21:22:53 [metric_collector] {"stage_name":"metric_collector","events_processed":11819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2363.8,"last_update":"2026-03-21T21:22:48.870056727Z"} +2026/03/21 21:22:53 ───────────────────────────────────────────────── +2026/03/21 21:22:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:22:58 [log_collector] {"stage_name":"log_collector","events_processed":18923,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3784.6,"last_update":"2026-03-21T21:22:58.869469326Z"} +2026/03/21 21:22:58 [metric_collector] {"stage_name":"metric_collector","events_processed":11824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2364.8,"last_update":"2026-03-21T21:22:53.870214435Z"} +2026/03/21 21:22:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:22:53.878423608Z"} +2026/03/21 21:22:58 [transform_engine] {"stage_name":"transform_engine","events_processed":394,"events_dropped":0,"avg_latency_ms":730.158130833099,"throughput_eps":0,"last_update":"2026-03-21T21:22:53.965802537Z"} +2026/03/21 21:22:58 [detection_layer] {"stage_name":"detection_layer","events_processed":394,"events_dropped":0,"avg_latency_ms":18.699685323762992,"throughput_eps":0,"last_update":"2026-03-21T21:22:53.965838335Z"} +2026/03/21 21:22:58 ───────────────────────────────────────────────── +2026/03/21 21:23:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:23:03 [detection_layer] {"stage_name":"detection_layer","events_processed":394,"events_dropped":0,"avg_latency_ms":18.699685323762992,"throughput_eps":0,"last_update":"2026-03-21T21:22:58.966180237Z"} +2026/03/21 21:23:03 [log_collector] {"stage_name":"log_collector","events_processed":18923,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3784.6,"last_update":"2026-03-21T21:22:58.869469326Z"} +2026/03/21 21:23:03 [metric_collector] {"stage_name":"metric_collector","events_processed":11829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2365.8,"last_update":"2026-03-21T21:22:58.869892306Z"} +2026/03/21 21:23:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:22:58.878832559Z"} +2026/03/21 21:23:03 [transform_engine] {"stage_name":"transform_engine","events_processed":394,"events_dropped":0,"avg_latency_ms":730.158130833099,"throughput_eps":0,"last_update":"2026-03-21T21:22:58.966190777Z"} +2026/03/21 21:23:03 ───────────────────────────────────────────────── +2026/03/21 21:23:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:23:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4736,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:23:03.879211192Z"} +2026/03/21 21:23:08 [transform_engine] {"stage_name":"transform_engine","events_processed":394,"events_dropped":0,"avg_latency_ms":730.158130833099,"throughput_eps":0,"last_update":"2026-03-21T21:23:03.96557732Z"} +2026/03/21 21:23:08 [detection_layer] {"stage_name":"detection_layer","events_processed":394,"events_dropped":0,"avg_latency_ms":18.699685323762992,"throughput_eps":0,"last_update":"2026-03-21T21:23:03.965561049Z"} +2026/03/21 21:23:08 [log_collector] {"stage_name":"log_collector","events_processed":18923,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3784.6,"last_update":"2026-03-21T21:23:03.869551491Z"} +2026/03/21 21:23:08 [metric_collector] {"stage_name":"metric_collector","events_processed":11834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2366.8,"last_update":"2026-03-21T21:23:03.870172641Z"} +2026/03/21 21:23:08 ───────────────────────────────────────────────── +2026/03/21 21:23:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:23:13 [detection_layer] {"stage_name":"detection_layer","events_processed":394,"events_dropped":0,"avg_latency_ms":18.699685323762992,"throughput_eps":0,"last_update":"2026-03-21T21:23:08.966103347Z"} +2026/03/21 21:23:13 [log_collector] {"stage_name":"log_collector","events_processed":18923,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3784.6,"last_update":"2026-03-21T21:23:08.869600073Z"} +2026/03/21 21:23:13 [metric_collector] {"stage_name":"metric_collector","events_processed":11839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2367.8,"last_update":"2026-03-21T21:23:08.87014666Z"} +2026/03/21 21:23:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4738,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:23:08.878790375Z"} +2026/03/21 21:23:13 [transform_engine] {"stage_name":"transform_engine","events_processed":394,"events_dropped":0,"avg_latency_ms":730.158130833099,"throughput_eps":0,"last_update":"2026-03-21T21:23:08.966113497Z"} +2026/03/21 21:23:13 ───────────────────────────────────────────────── +2026/03/21 21:23:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:23:18 [metric_collector] {"stage_name":"metric_collector","events_processed":11844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2368.8,"last_update":"2026-03-21T21:23:13.870391768Z"} +2026/03/21 21:23:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4740,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:23:13.878850539Z"} +2026/03/21 21:23:18 [transform_engine] {"stage_name":"transform_engine","events_processed":394,"events_dropped":0,"avg_latency_ms":730.158130833099,"throughput_eps":0,"last_update":"2026-03-21T21:23:13.966038492Z"} +2026/03/21 21:23:18 [detection_layer] {"stage_name":"detection_layer","events_processed":394,"events_dropped":0,"avg_latency_ms":18.699685323762992,"throughput_eps":0,"last_update":"2026-03-21T21:23:13.966030477Z"} +2026/03/21 21:23:18 [log_collector] {"stage_name":"log_collector","events_processed":18923,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3784.6,"last_update":"2026-03-21T21:23:13.870007092Z"} +2026/03/21 21:23:18 ───────────────────────────────────────────────── +Saved state: 12 clusters, 18924 messages, reason: none +2026/03/21 21:23:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:23:23 [log_collector] {"stage_name":"log_collector","events_processed":18923,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3784.6,"last_update":"2026-03-21T21:23:18.869419696Z"} +2026/03/21 21:23:23 [metric_collector] {"stage_name":"metric_collector","events_processed":11849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2369.8,"last_update":"2026-03-21T21:23:18.869896219Z"} +2026/03/21 21:23:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:23:18.878986228Z"} +2026/03/21 21:23:23 [transform_engine] {"stage_name":"transform_engine","events_processed":395,"events_dropped":0,"avg_latency_ms":599.3807178664792,"throughput_eps":0,"last_update":"2026-03-21T21:23:19.041458537Z"} +2026/03/21 21:23:23 [detection_layer] {"stage_name":"detection_layer","events_processed":394,"events_dropped":0,"avg_latency_ms":18.699685323762992,"throughput_eps":0,"last_update":"2026-03-21T21:23:18.96630916Z"} +2026/03/21 21:23:23 ───────────────────────────────────────────────── +2026/03/21 21:23:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:23:28 [log_collector] {"stage_name":"log_collector","events_processed":18928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3785.6,"last_update":"2026-03-21T21:23:23.869395469Z"} +2026/03/21 21:23:28 [metric_collector] {"stage_name":"metric_collector","events_processed":11854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2370.8,"last_update":"2026-03-21T21:23:23.869695785Z"} +2026/03/21 21:23:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:23:23.884409574Z"} +2026/03/21 21:23:28 [transform_engine] {"stage_name":"transform_engine","events_processed":395,"events_dropped":0,"avg_latency_ms":599.3807178664792,"throughput_eps":0,"last_update":"2026-03-21T21:23:23.96738522Z"} +2026/03/21 21:23:28 [detection_layer] {"stage_name":"detection_layer","events_processed":395,"events_dropped":0,"avg_latency_ms":18.660574059010393,"throughput_eps":0,"last_update":"2026-03-21T21:23:23.967375952Z"} +2026/03/21 21:23:28 ───────────────────────────────────────────────── +2026/03/21 21:23:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:23:33 [log_collector] {"stage_name":"log_collector","events_processed":18928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3785.6,"last_update":"2026-03-21T21:23:28.869504358Z"} +2026/03/21 21:23:33 [metric_collector] {"stage_name":"metric_collector","events_processed":11859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2371.8,"last_update":"2026-03-21T21:23:28.869752854Z"} +2026/03/21 21:23:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:23:28.87870551Z"} +2026/03/21 21:23:33 [transform_engine] {"stage_name":"transform_engine","events_processed":395,"events_dropped":0,"avg_latency_ms":599.3807178664792,"throughput_eps":0,"last_update":"2026-03-21T21:23:28.965843156Z"} +2026/03/21 21:23:33 [detection_layer] {"stage_name":"detection_layer","events_processed":395,"events_dropped":0,"avg_latency_ms":18.660574059010393,"throughput_eps":0,"last_update":"2026-03-21T21:23:28.965834029Z"} +2026/03/21 21:23:33 ───────────────────────────────────────────────── +2026/03/21 21:23:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:23:38 [log_collector] {"stage_name":"log_collector","events_processed":18928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3785.6,"last_update":"2026-03-21T21:23:38.869733518Z"} +2026/03/21 21:23:38 [metric_collector] {"stage_name":"metric_collector","events_processed":11864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2372.8,"last_update":"2026-03-21T21:23:33.870710217Z"} +2026/03/21 21:23:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:23:33.87894562Z"} +2026/03/21 21:23:38 [transform_engine] {"stage_name":"transform_engine","events_processed":395,"events_dropped":0,"avg_latency_ms":599.3807178664792,"throughput_eps":0,"last_update":"2026-03-21T21:23:33.965059316Z"} +2026/03/21 21:23:38 [detection_layer] {"stage_name":"detection_layer","events_processed":395,"events_dropped":0,"avg_latency_ms":18.660574059010393,"throughput_eps":0,"last_update":"2026-03-21T21:23:33.966149624Z"} +2026/03/21 21:23:38 ───────────────────────────────────────────────── +2026/03/21 21:23:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:23:43 [log_collector] {"stage_name":"log_collector","events_processed":18928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3785.6,"last_update":"2026-03-21T21:23:43.869594582Z"} +2026/03/21 21:23:43 [metric_collector] {"stage_name":"metric_collector","events_processed":11869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2373.8,"last_update":"2026-03-21T21:23:38.870169653Z"} +2026/03/21 21:23:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4750,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:23:38.8770136Z"} +2026/03/21 21:23:43 [transform_engine] {"stage_name":"transform_engine","events_processed":395,"events_dropped":0,"avg_latency_ms":599.3807178664792,"throughput_eps":0,"last_update":"2026-03-21T21:23:38.965146143Z"} +2026/03/21 21:23:43 [detection_layer] {"stage_name":"detection_layer","events_processed":395,"events_dropped":0,"avg_latency_ms":18.660574059010393,"throughput_eps":0,"last_update":"2026-03-21T21:23:38.967246606Z"} +2026/03/21 21:23:43 ───────────────────────────────────────────────── +2026/03/21 21:23:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:23:48 [transform_engine] {"stage_name":"transform_engine","events_processed":395,"events_dropped":0,"avg_latency_ms":599.3807178664792,"throughput_eps":0,"last_update":"2026-03-21T21:23:43.965503869Z"} +2026/03/21 21:23:48 [detection_layer] {"stage_name":"detection_layer","events_processed":395,"events_dropped":0,"avg_latency_ms":18.660574059010393,"throughput_eps":0,"last_update":"2026-03-21T21:23:43.965491284Z"} +2026/03/21 21:23:48 [log_collector] {"stage_name":"log_collector","events_processed":18928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3785.6,"last_update":"2026-03-21T21:23:48.869864871Z"} +2026/03/21 21:23:48 [metric_collector] {"stage_name":"metric_collector","events_processed":11874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2374.8,"last_update":"2026-03-21T21:23:43.870178331Z"} +2026/03/21 21:23:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4752,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:23:43.879340258Z"} +2026/03/21 21:23:48 ───────────────────────────────────────────────── +2026/03/21 21:23:50 [ANOMALY] time=2026-03-21T21:23:50Z score=0.8881 method=SEAD details=MAD!:w=0.22,s=0.91 RRCF-fast!:w=0.20,s=0.95 RRCF-mid!:w=0.20,s=0.99 RRCF-slow!:w=0.15,s=0.92 COPOD!:w=0.23,s=0.70 +2026/03/21 21:23:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:23:53 [log_collector] {"stage_name":"log_collector","events_processed":18928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3785.6,"last_update":"2026-03-21T21:23:48.869864871Z"} +2026/03/21 21:23:53 [metric_collector] {"stage_name":"metric_collector","events_processed":11879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2375.8,"last_update":"2026-03-21T21:23:48.870107676Z"} +2026/03/21 21:23:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:23:48.878474641Z"} +2026/03/21 21:23:53 [transform_engine] {"stage_name":"transform_engine","events_processed":396,"events_dropped":0,"avg_latency_ms":833.4770690931834,"throughput_eps":0,"last_update":"2026-03-21T21:23:50.735612245Z"} +2026/03/21 21:23:53 [detection_layer] {"stage_name":"detection_layer","events_processed":395,"events_dropped":0,"avg_latency_ms":18.660574059010393,"throughput_eps":0,"last_update":"2026-03-21T21:23:48.96573405Z"} +2026/03/21 21:23:53 ───────────────────────────────────────────────── +2026/03/21 21:23:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:23:58 [log_collector] {"stage_name":"log_collector","events_processed":18928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3785.6,"last_update":"2026-03-21T21:23:58.869411656Z"} +2026/03/21 21:23:58 [metric_collector] {"stage_name":"metric_collector","events_processed":11884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2376.8,"last_update":"2026-03-21T21:23:53.869838923Z"} +2026/03/21 21:23:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:23:53.876730271Z"} +2026/03/21 21:23:58 [transform_engine] {"stage_name":"transform_engine","events_processed":396,"events_dropped":0,"avg_latency_ms":833.4770690931834,"throughput_eps":0,"last_update":"2026-03-21T21:23:53.965913486Z"} +2026/03/21 21:23:58 [detection_layer] {"stage_name":"detection_layer","events_processed":396,"events_dropped":0,"avg_latency_ms":17.909803047208317,"throughput_eps":0,"last_update":"2026-03-21T21:23:53.965940026Z"} +2026/03/21 21:23:58 ───────────────────────────────────────────────── +2026/03/21 21:24:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:24:03 [log_collector] {"stage_name":"log_collector","events_processed":18928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3785.6,"last_update":"2026-03-21T21:23:58.869411656Z"} +2026/03/21 21:24:03 [metric_collector] {"stage_name":"metric_collector","events_processed":11894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2378.8,"last_update":"2026-03-21T21:24:03.870578273Z"} +2026/03/21 21:24:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4758,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:23:58.878610314Z"} +2026/03/21 21:24:03 [transform_engine] {"stage_name":"transform_engine","events_processed":396,"events_dropped":0,"avg_latency_ms":833.4770690931834,"throughput_eps":0,"last_update":"2026-03-21T21:23:58.96512648Z"} +2026/03/21 21:24:03 [detection_layer] {"stage_name":"detection_layer","events_processed":396,"events_dropped":0,"avg_latency_ms":17.909803047208317,"throughput_eps":0,"last_update":"2026-03-21T21:23:58.966243148Z"} +2026/03/21 21:24:03 ───────────────────────────────────────────────── +2026/03/21 21:24:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:24:08 [log_collector] {"stage_name":"log_collector","events_processed":18937,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3787.4,"last_update":"2026-03-21T21:24:03.870652745Z"} +2026/03/21 21:24:08 [metric_collector] {"stage_name":"metric_collector","events_processed":11894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2378.8,"last_update":"2026-03-21T21:24:03.870578273Z"} +2026/03/21 21:24:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:24:03.879394137Z"} +2026/03/21 21:24:08 [transform_engine] {"stage_name":"transform_engine","events_processed":396,"events_dropped":0,"avg_latency_ms":833.4770690931834,"throughput_eps":0,"last_update":"2026-03-21T21:24:03.965564902Z"} +2026/03/21 21:24:08 [detection_layer] {"stage_name":"detection_layer","events_processed":396,"events_dropped":0,"avg_latency_ms":17.909803047208317,"throughput_eps":0,"last_update":"2026-03-21T21:24:03.965614487Z"} +2026/03/21 21:24:08 ───────────────────────────────────────────────── +2026/03/21 21:24:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:24:13 [transform_engine] {"stage_name":"transform_engine","events_processed":396,"events_dropped":0,"avg_latency_ms":833.4770690931834,"throughput_eps":0,"last_update":"2026-03-21T21:24:08.965765128Z"} +2026/03/21 21:24:13 [detection_layer] {"stage_name":"detection_layer","events_processed":396,"events_dropped":0,"avg_latency_ms":17.909803047208317,"throughput_eps":0,"last_update":"2026-03-21T21:24:08.965836936Z"} +2026/03/21 21:24:13 [log_collector] {"stage_name":"log_collector","events_processed":18939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3787.8,"last_update":"2026-03-21T21:24:08.869534466Z"} +2026/03/21 21:24:13 [metric_collector] {"stage_name":"metric_collector","events_processed":11899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2379.8,"last_update":"2026-03-21T21:24:08.869874007Z"} +2026/03/21 21:24:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:24:08.869479531Z"} +2026/03/21 21:24:13 ───────────────────────────────────────────────── +2026/03/21 21:24:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:24:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:24:13.878042854Z"} +2026/03/21 21:24:18 [transform_engine] {"stage_name":"transform_engine","events_processed":396,"events_dropped":0,"avg_latency_ms":833.4770690931834,"throughput_eps":0,"last_update":"2026-03-21T21:24:13.96573872Z"} +2026/03/21 21:24:18 [detection_layer] {"stage_name":"detection_layer","events_processed":396,"events_dropped":0,"avg_latency_ms":17.909803047208317,"throughput_eps":0,"last_update":"2026-03-21T21:24:13.965723501Z"} +2026/03/21 21:24:18 [log_collector] {"stage_name":"log_collector","events_processed":19107,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3821.4,"last_update":"2026-03-21T21:24:13.870028715Z"} +2026/03/21 21:24:18 [metric_collector] {"stage_name":"metric_collector","events_processed":11904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2380.8,"last_update":"2026-03-21T21:24:13.870236914Z"} +2026/03/21 21:24:18 ───────────────────────────────────────────────── +2026/03/21 21:24:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:24:23 [metric_collector] {"stage_name":"metric_collector","events_processed":11909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2381.8,"last_update":"2026-03-21T21:24:18.870224915Z"} +2026/03/21 21:24:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4766,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:24:18.879074654Z"} +2026/03/21 21:24:23 [transform_engine] {"stage_name":"transform_engine","events_processed":397,"events_dropped":0,"avg_latency_ms":690.2227298745468,"throughput_eps":0,"last_update":"2026-03-21T21:24:19.082728574Z"} +2026/03/21 21:24:23 [detection_layer] {"stage_name":"detection_layer","events_processed":396,"events_dropped":0,"avg_latency_ms":17.909803047208317,"throughput_eps":0,"last_update":"2026-03-21T21:24:18.965417519Z"} +2026/03/21 21:24:23 [log_collector] {"stage_name":"log_collector","events_processed":19292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3858.4,"last_update":"2026-03-21T21:24:18.869795693Z"} +2026/03/21 21:24:23 ───────────────────────────────────────────────── +2026/03/21 21:24:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:24:28 [log_collector] {"stage_name":"log_collector","events_processed":19292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3858.4,"last_update":"2026-03-21T21:24:23.869693231Z"} +2026/03/21 21:24:28 [metric_collector] {"stage_name":"metric_collector","events_processed":11914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2382.8,"last_update":"2026-03-21T21:24:23.870004708Z"} +2026/03/21 21:24:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4768,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:24:23.878797597Z"} +2026/03/21 21:24:28 [transform_engine] {"stage_name":"transform_engine","events_processed":397,"events_dropped":0,"avg_latency_ms":690.2227298745468,"throughput_eps":0,"last_update":"2026-03-21T21:24:23.965997653Z"} +2026/03/21 21:24:28 [detection_layer] {"stage_name":"detection_layer","events_processed":397,"events_dropped":0,"avg_latency_ms":17.684487037766655,"throughput_eps":0,"last_update":"2026-03-21T21:24:23.96602217Z"} +2026/03/21 21:24:28 ───────────────────────────────────────────────── +2026/03/21 21:24:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:24:33 [log_collector] {"stage_name":"log_collector","events_processed":19292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3858.4,"last_update":"2026-03-21T21:24:28.869421975Z"} +2026/03/21 21:24:33 [metric_collector] {"stage_name":"metric_collector","events_processed":11919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2383.8,"last_update":"2026-03-21T21:24:28.870199133Z"} +2026/03/21 21:24:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4770,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:24:28.878251616Z"} +2026/03/21 21:24:33 [transform_engine] {"stage_name":"transform_engine","events_processed":397,"events_dropped":0,"avg_latency_ms":690.2227298745468,"throughput_eps":0,"last_update":"2026-03-21T21:24:28.965642477Z"} +2026/03/21 21:24:33 [detection_layer] {"stage_name":"detection_layer","events_processed":397,"events_dropped":0,"avg_latency_ms":17.684487037766655,"throughput_eps":0,"last_update":"2026-03-21T21:24:28.965673155Z"} +2026/03/21 21:24:33 ───────────────────────────────────────────────── +2026/03/21 21:24:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:24:38 [log_collector] {"stage_name":"log_collector","events_processed":19292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3858.4,"last_update":"2026-03-21T21:24:38.869927199Z"} +2026/03/21 21:24:38 [metric_collector] {"stage_name":"metric_collector","events_processed":11924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2384.8,"last_update":"2026-03-21T21:24:33.869917957Z"} +2026/03/21 21:24:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:24:33.879471816Z"} +2026/03/21 21:24:38 [transform_engine] {"stage_name":"transform_engine","events_processed":397,"events_dropped":0,"avg_latency_ms":690.2227298745468,"throughput_eps":0,"last_update":"2026-03-21T21:24:33.965697977Z"} +2026/03/21 21:24:38 [detection_layer] {"stage_name":"detection_layer","events_processed":397,"events_dropped":0,"avg_latency_ms":17.684487037766655,"throughput_eps":0,"last_update":"2026-03-21T21:24:33.965711503Z"} +2026/03/21 21:24:38 ───────────────────────────────────────────────── +Saved state: 12 clusters, 19293 messages, reason: none +2026/03/21 21:24:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:24:43 [detection_layer] {"stage_name":"detection_layer","events_processed":397,"events_dropped":0,"avg_latency_ms":17.684487037766655,"throughput_eps":0,"last_update":"2026-03-21T21:24:38.965513457Z"} +2026/03/21 21:24:43 [log_collector] {"stage_name":"log_collector","events_processed":19292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3858.4,"last_update":"2026-03-21T21:24:38.869927199Z"} +2026/03/21 21:24:43 [metric_collector] {"stage_name":"metric_collector","events_processed":11929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2385.8,"last_update":"2026-03-21T21:24:38.870292369Z"} +2026/03/21 21:24:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:24:38.879159562Z"} +2026/03/21 21:24:43 [transform_engine] {"stage_name":"transform_engine","events_processed":397,"events_dropped":0,"avg_latency_ms":690.2227298745468,"throughput_eps":0,"last_update":"2026-03-21T21:24:38.965541441Z"} +2026/03/21 21:24:43 ───────────────────────────────────────────────── +2026/03/21 21:24:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:24:48 [log_collector] {"stage_name":"log_collector","events_processed":19295,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3859,"last_update":"2026-03-21T21:24:43.869597054Z"} +2026/03/21 21:24:48 [metric_collector] {"stage_name":"metric_collector","events_processed":11934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2386.8,"last_update":"2026-03-21T21:24:43.869779693Z"} +2026/03/21 21:24:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:24:43.88081083Z"} +2026/03/21 21:24:48 [transform_engine] {"stage_name":"transform_engine","events_processed":397,"events_dropped":0,"avg_latency_ms":690.2227298745468,"throughput_eps":0,"last_update":"2026-03-21T21:24:43.965994956Z"} +2026/03/21 21:24:48 [detection_layer] {"stage_name":"detection_layer","events_processed":397,"events_dropped":0,"avg_latency_ms":17.684487037766655,"throughput_eps":0,"last_update":"2026-03-21T21:24:43.965988363Z"} +2026/03/21 21:24:48 ───────────────────────────────────────────────── +2026/03/21 21:24:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:24:53 [log_collector] {"stage_name":"log_collector","events_processed":19303,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3860.6,"last_update":"2026-03-21T21:24:48.870377183Z"} +2026/03/21 21:24:53 [metric_collector] {"stage_name":"metric_collector","events_processed":11939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2387.8,"last_update":"2026-03-21T21:24:48.870793741Z"} +2026/03/21 21:24:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:24:48.878582248Z"} +2026/03/21 21:24:53 [transform_engine] {"stage_name":"transform_engine","events_processed":398,"events_dropped":0,"avg_latency_ms":1111.4350178996374,"throughput_eps":0,"last_update":"2026-03-21T21:24:51.762035374Z"} +2026/03/21 21:24:53 [detection_layer] {"stage_name":"detection_layer","events_processed":397,"events_dropped":0,"avg_latency_ms":17.684487037766655,"throughput_eps":0,"last_update":"2026-03-21T21:24:48.96573938Z"} +2026/03/21 21:24:53 ───────────────────────────────────────────────── +2026/03/21 21:24:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:24:58 [log_collector] {"stage_name":"log_collector","events_processed":19306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3861.2,"last_update":"2026-03-21T21:24:53.8700854Z"} +2026/03/21 21:24:58 [metric_collector] {"stage_name":"metric_collector","events_processed":11944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2388.8,"last_update":"2026-03-21T21:24:53.870596949Z"} +2026/03/21 21:24:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4780,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:24:53.878711492Z"} +2026/03/21 21:24:58 [transform_engine] {"stage_name":"transform_engine","events_processed":398,"events_dropped":0,"avg_latency_ms":1111.4350178996374,"throughput_eps":0,"last_update":"2026-03-21T21:24:53.965903993Z"} +2026/03/21 21:24:58 [detection_layer] {"stage_name":"detection_layer","events_processed":398,"events_dropped":0,"avg_latency_ms":17.882893430213326,"throughput_eps":0,"last_update":"2026-03-21T21:24:53.965934561Z"} +2026/03/21 21:24:58 ───────────────────────────────────────────────── +2026/03/21 21:25:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:25:03 [log_collector] {"stage_name":"log_collector","events_processed":19322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3864.4,"last_update":"2026-03-21T21:24:58.869522889Z"} +2026/03/21 21:25:03 [metric_collector] {"stage_name":"metric_collector","events_processed":11949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2389.8,"last_update":"2026-03-21T21:24:58.86973213Z"} +2026/03/21 21:25:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4782,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:24:58.876220176Z"} +2026/03/21 21:25:03 [transform_engine] {"stage_name":"transform_engine","events_processed":398,"events_dropped":0,"avg_latency_ms":1111.4350178996374,"throughput_eps":0,"last_update":"2026-03-21T21:24:58.96544507Z"} +2026/03/21 21:25:03 [detection_layer] {"stage_name":"detection_layer","events_processed":398,"events_dropped":0,"avg_latency_ms":17.882893430213326,"throughput_eps":0,"last_update":"2026-03-21T21:24:58.965418328Z"} +2026/03/21 21:25:03 ───────────────────────────────────────────────── +2026/03/21 21:25:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:25:08 [log_collector] {"stage_name":"log_collector","events_processed":19322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3864.4,"last_update":"2026-03-21T21:25:03.869522555Z"} +2026/03/21 21:25:08 [metric_collector] {"stage_name":"metric_collector","events_processed":11954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2390.8,"last_update":"2026-03-21T21:25:03.869970161Z"} +2026/03/21 21:25:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:25:03.878238939Z"} +2026/03/21 21:25:08 [transform_engine] {"stage_name":"transform_engine","events_processed":398,"events_dropped":0,"avg_latency_ms":1111.4350178996374,"throughput_eps":0,"last_update":"2026-03-21T21:25:03.965447391Z"} +2026/03/21 21:25:08 [detection_layer] {"stage_name":"detection_layer","events_processed":398,"events_dropped":0,"avg_latency_ms":17.882893430213326,"throughput_eps":0,"last_update":"2026-03-21T21:25:03.965439615Z"} +2026/03/21 21:25:08 ───────────────────────────────────────────────── +2026/03/21 21:25:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:25:13 [log_collector] {"stage_name":"log_collector","events_processed":19322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3864.4,"last_update":"2026-03-21T21:25:08.869437009Z"} +2026/03/21 21:25:13 [metric_collector] {"stage_name":"metric_collector","events_processed":11959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2391.8,"last_update":"2026-03-21T21:25:08.869739288Z"} +2026/03/21 21:25:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:25:08.879100928Z"} +2026/03/21 21:25:13 [transform_engine] {"stage_name":"transform_engine","events_processed":398,"events_dropped":0,"avg_latency_ms":1111.4350178996374,"throughput_eps":0,"last_update":"2026-03-21T21:25:08.965288886Z"} +2026/03/21 21:25:13 [detection_layer] {"stage_name":"detection_layer","events_processed":398,"events_dropped":0,"avg_latency_ms":17.882893430213326,"throughput_eps":0,"last_update":"2026-03-21T21:25:08.965277354Z"} +2026/03/21 21:25:13 ───────────────────────────────────────────────── +2026/03/21 21:25:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:25:18 [log_collector] {"stage_name":"log_collector","events_processed":19322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3864.4,"last_update":"2026-03-21T21:25:13.86952211Z"} +2026/03/21 21:25:18 [metric_collector] {"stage_name":"metric_collector","events_processed":11964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2392.8,"last_update":"2026-03-21T21:25:13.869886088Z"} +2026/03/21 21:25:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:25:13.879131445Z"} +2026/03/21 21:25:18 [transform_engine] {"stage_name":"transform_engine","events_processed":398,"events_dropped":0,"avg_latency_ms":1111.4350178996374,"throughput_eps":0,"last_update":"2026-03-21T21:25:13.965339661Z"} +2026/03/21 21:25:18 [detection_layer] {"stage_name":"detection_layer","events_processed":398,"events_dropped":0,"avg_latency_ms":17.882893430213326,"throughput_eps":0,"last_update":"2026-03-21T21:25:13.965331115Z"} +2026/03/21 21:25:18 ───────────────────────────────────────────────── +2026/03/21 21:25:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:25:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:25:18.879446435Z"} +2026/03/21 21:25:23 [transform_engine] {"stage_name":"transform_engine","events_processed":399,"events_dropped":0,"avg_latency_ms":911.93124691971,"throughput_eps":0,"last_update":"2026-03-21T21:25:19.079691677Z"} +2026/03/21 21:25:23 [detection_layer] {"stage_name":"detection_layer","events_processed":398,"events_dropped":0,"avg_latency_ms":17.882893430213326,"throughput_eps":0,"last_update":"2026-03-21T21:25:18.965760254Z"} +2026/03/21 21:25:23 [log_collector] {"stage_name":"log_collector","events_processed":19322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3864.4,"last_update":"2026-03-21T21:25:18.870007908Z"} +2026/03/21 21:25:23 [metric_collector] {"stage_name":"metric_collector","events_processed":11969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2393.8,"last_update":"2026-03-21T21:25:18.870549476Z"} +2026/03/21 21:25:23 ───────────────────────────────────────────────── +2026/03/21 21:25:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:25:28 [log_collector] {"stage_name":"log_collector","events_processed":19322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3864.4,"last_update":"2026-03-21T21:25:23.869947872Z"} +2026/03/21 21:25:28 [metric_collector] {"stage_name":"metric_collector","events_processed":11974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2394.8,"last_update":"2026-03-21T21:25:23.870466966Z"} +2026/03/21 21:25:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:25:23.878459143Z"} +2026/03/21 21:25:28 [transform_engine] {"stage_name":"transform_engine","events_processed":399,"events_dropped":0,"avg_latency_ms":911.93124691971,"throughput_eps":0,"last_update":"2026-03-21T21:25:23.96573196Z"} +2026/03/21 21:25:28 [detection_layer] {"stage_name":"detection_layer","events_processed":399,"events_dropped":0,"avg_latency_ms":18.29194994417066,"throughput_eps":0,"last_update":"2026-03-21T21:25:23.965688807Z"} +2026/03/21 21:25:28 ───────────────────────────────────────────────── +2026/03/21 21:25:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:25:33 [log_collector] {"stage_name":"log_collector","events_processed":19322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3864.4,"last_update":"2026-03-21T21:25:28.870184706Z"} +2026/03/21 21:25:33 [metric_collector] {"stage_name":"metric_collector","events_processed":11979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2395.8,"last_update":"2026-03-21T21:25:28.870460915Z"} +2026/03/21 21:25:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:25:28.879139205Z"} +2026/03/21 21:25:33 [transform_engine] {"stage_name":"transform_engine","events_processed":399,"events_dropped":0,"avg_latency_ms":911.93124691971,"throughput_eps":0,"last_update":"2026-03-21T21:25:28.965467523Z"} +2026/03/21 21:25:33 [detection_layer] {"stage_name":"detection_layer","events_processed":399,"events_dropped":0,"avg_latency_ms":18.29194994417066,"throughput_eps":0,"last_update":"2026-03-21T21:25:28.965326934Z"} +2026/03/21 21:25:33 ───────────────────────────────────────────────── +2026/03/21 21:25:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:25:38 [log_collector] {"stage_name":"log_collector","events_processed":19322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3864.4,"last_update":"2026-03-21T21:25:33.869748169Z"} +2026/03/21 21:25:38 [metric_collector] {"stage_name":"metric_collector","events_processed":11984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2396.8,"last_update":"2026-03-21T21:25:33.87019776Z"} +2026/03/21 21:25:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4796,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:25:33.878617826Z"} +2026/03/21 21:25:38 [transform_engine] {"stage_name":"transform_engine","events_processed":399,"events_dropped":0,"avg_latency_ms":911.93124691971,"throughput_eps":0,"last_update":"2026-03-21T21:25:33.965964453Z"} +2026/03/21 21:25:38 [detection_layer] {"stage_name":"detection_layer","events_processed":399,"events_dropped":0,"avg_latency_ms":18.29194994417066,"throughput_eps":0,"last_update":"2026-03-21T21:25:33.965941319Z"} +2026/03/21 21:25:38 ───────────────────────────────────────────────── +2026/03/21 21:25:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:25:43 [log_collector] {"stage_name":"log_collector","events_processed":19322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3864.4,"last_update":"2026-03-21T21:25:38.869753328Z"} +2026/03/21 21:25:43 [metric_collector] {"stage_name":"metric_collector","events_processed":11989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2397.8,"last_update":"2026-03-21T21:25:38.869815577Z"} +2026/03/21 21:25:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:25:38.878582377Z"} +2026/03/21 21:25:43 [transform_engine] {"stage_name":"transform_engine","events_processed":399,"events_dropped":0,"avg_latency_ms":911.93124691971,"throughput_eps":0,"last_update":"2026-03-21T21:25:38.965872786Z"} +2026/03/21 21:25:43 [detection_layer] {"stage_name":"detection_layer","events_processed":399,"events_dropped":0,"avg_latency_ms":18.29194994417066,"throughput_eps":0,"last_update":"2026-03-21T21:25:38.96593719Z"} +2026/03/21 21:25:43 ───────────────────────────────────────────────── +2026/03/21 21:25:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:25:48 [detection_layer] {"stage_name":"detection_layer","events_processed":399,"events_dropped":0,"avg_latency_ms":18.29194994417066,"throughput_eps":0,"last_update":"2026-03-21T21:25:43.965874971Z"} +2026/03/21 21:25:48 [log_collector] {"stage_name":"log_collector","events_processed":19322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3864.4,"last_update":"2026-03-21T21:25:43.86971234Z"} +2026/03/21 21:25:48 [metric_collector] {"stage_name":"metric_collector","events_processed":11994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2398.8,"last_update":"2026-03-21T21:25:43.87032364Z"} +2026/03/21 21:25:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4800,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:25:43.878521692Z"} +2026/03/21 21:25:48 [transform_engine] {"stage_name":"transform_engine","events_processed":399,"events_dropped":0,"avg_latency_ms":911.93124691971,"throughput_eps":0,"last_update":"2026-03-21T21:25:43.96598904Z"} +2026/03/21 21:25:48 ───────────────────────────────────────────────── +2026/03/21 21:25:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:25:53 [log_collector] {"stage_name":"log_collector","events_processed":19322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3864.4,"last_update":"2026-03-21T21:25:48.869890531Z"} +2026/03/21 21:25:53 [metric_collector] {"stage_name":"metric_collector","events_processed":11999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2399.8,"last_update":"2026-03-21T21:25:48.870251473Z"} +2026/03/21 21:25:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4802,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:25:48.878773704Z"} +2026/03/21 21:25:53 [transform_engine] {"stage_name":"transform_engine","events_processed":399,"events_dropped":0,"avg_latency_ms":911.93124691971,"throughput_eps":0,"last_update":"2026-03-21T21:25:48.966028866Z"} +2026/03/21 21:25:53 [detection_layer] {"stage_name":"detection_layer","events_processed":399,"events_dropped":0,"avg_latency_ms":18.29194994417066,"throughput_eps":0,"last_update":"2026-03-21T21:25:48.966197599Z"} +2026/03/21 21:25:53 ───────────────────────────────────────────────── +Saved state: 12 clusters, 19323 messages, reason: none +2026/03/21 21:25:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:25:58 [transform_engine] {"stage_name":"transform_engine","events_processed":400,"events_dropped":0,"avg_latency_ms":743.507983335768,"throughput_eps":0,"last_update":"2026-03-21T21:25:53.965276795Z"} +2026/03/21 21:25:58 [detection_layer] {"stage_name":"detection_layer","events_processed":400,"events_dropped":0,"avg_latency_ms":18.93574575533653,"throughput_eps":0,"last_update":"2026-03-21T21:25:53.965327332Z"} +2026/03/21 21:25:58 [log_collector] {"stage_name":"log_collector","events_processed":19322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3864.4,"last_update":"2026-03-21T21:25:53.870478095Z"} +2026/03/21 21:25:58 [metric_collector] {"stage_name":"metric_collector","events_processed":12004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2400.8,"last_update":"2026-03-21T21:25:53.87101824Z"} +2026/03/21 21:25:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:25:53.879083106Z"} +2026/03/21 21:25:58 ───────────────────────────────────────────────── +2026/03/21 21:26:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:26:03 [log_collector] {"stage_name":"log_collector","events_processed":19325,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3865,"last_update":"2026-03-21T21:25:58.869437142Z"} +2026/03/21 21:26:03 [metric_collector] {"stage_name":"metric_collector","events_processed":12009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2401.8,"last_update":"2026-03-21T21:25:58.869825436Z"} +2026/03/21 21:26:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:25:58.876010722Z"} +2026/03/21 21:26:03 [transform_engine] {"stage_name":"transform_engine","events_processed":400,"events_dropped":0,"avg_latency_ms":743.507983335768,"throughput_eps":0,"last_update":"2026-03-21T21:25:58.965126858Z"} +2026/03/21 21:26:03 [detection_layer] {"stage_name":"detection_layer","events_processed":400,"events_dropped":0,"avg_latency_ms":18.93574575533653,"throughput_eps":0,"last_update":"2026-03-21T21:25:58.966253385Z"} +2026/03/21 21:26:03 ───────────────────────────────────────────────── +2026/03/21 21:26:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:26:08 [log_collector] {"stage_name":"log_collector","events_processed":19336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3867.2,"last_update":"2026-03-21T21:26:08.869867246Z"} +2026/03/21 21:26:08 [metric_collector] {"stage_name":"metric_collector","events_processed":12013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2402.6,"last_update":"2026-03-21T21:26:03.869399881Z"} +2026/03/21 21:26:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:26:03.879208507Z"} +2026/03/21 21:26:08 [transform_engine] {"stage_name":"transform_engine","events_processed":400,"events_dropped":0,"avg_latency_ms":743.507983335768,"throughput_eps":0,"last_update":"2026-03-21T21:26:03.965630242Z"} +2026/03/21 21:26:08 [detection_layer] {"stage_name":"detection_layer","events_processed":400,"events_dropped":0,"avg_latency_ms":18.93574575533653,"throughput_eps":0,"last_update":"2026-03-21T21:26:03.965589834Z"} +2026/03/21 21:26:08 ───────────────────────────────────────────────── +2026/03/21 21:26:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:26:13 [log_collector] {"stage_name":"log_collector","events_processed":19336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3867.2,"last_update":"2026-03-21T21:26:13.869926731Z"} +2026/03/21 21:26:13 [metric_collector] {"stage_name":"metric_collector","events_processed":12019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2403.8,"last_update":"2026-03-21T21:26:08.870455773Z"} +2026/03/21 21:26:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:26:08.879695249Z"} +2026/03/21 21:26:13 [transform_engine] {"stage_name":"transform_engine","events_processed":400,"events_dropped":0,"avg_latency_ms":743.507983335768,"throughput_eps":0,"last_update":"2026-03-21T21:26:08.966017033Z"} +2026/03/21 21:26:13 [detection_layer] {"stage_name":"detection_layer","events_processed":400,"events_dropped":0,"avg_latency_ms":18.93574575533653,"throughput_eps":0,"last_update":"2026-03-21T21:26:08.965902775Z"} +2026/03/21 21:26:13 ───────────────────────────────────────────────── +2026/03/21 21:26:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:26:18 [log_collector] {"stage_name":"log_collector","events_processed":19336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3867.2,"last_update":"2026-03-21T21:26:18.870011054Z"} +2026/03/21 21:26:18 [metric_collector] {"stage_name":"metric_collector","events_processed":12024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2404.8,"last_update":"2026-03-21T21:26:13.870450254Z"} +2026/03/21 21:26:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4812,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:26:13.879749323Z"} +2026/03/21 21:26:18 [transform_engine] {"stage_name":"transform_engine","events_processed":400,"events_dropped":0,"avg_latency_ms":743.507983335768,"throughput_eps":0,"last_update":"2026-03-21T21:26:13.966165047Z"} +2026/03/21 21:26:18 [detection_layer] {"stage_name":"detection_layer","events_processed":400,"events_dropped":0,"avg_latency_ms":18.93574575533653,"throughput_eps":0,"last_update":"2026-03-21T21:26:13.966057211Z"} +2026/03/21 21:26:18 ───────────────────────────────────────────────── +2026/03/21 21:26:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:26:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:26:18.880092912Z"} +2026/03/21 21:26:23 [transform_engine] {"stage_name":"transform_engine","events_processed":401,"events_dropped":0,"avg_latency_ms":617.5440460686144,"throughput_eps":0,"last_update":"2026-03-21T21:26:19.079071288Z"} +2026/03/21 21:26:23 [detection_layer] {"stage_name":"detection_layer","events_processed":400,"events_dropped":0,"avg_latency_ms":18.93574575533653,"throughput_eps":0,"last_update":"2026-03-21T21:26:18.965338316Z"} +2026/03/21 21:26:23 [log_collector] {"stage_name":"log_collector","events_processed":19336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3867.2,"last_update":"2026-03-21T21:26:18.870011054Z"} +2026/03/21 21:26:23 [metric_collector] {"stage_name":"metric_collector","events_processed":12029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2405.8,"last_update":"2026-03-21T21:26:18.870335765Z"} +2026/03/21 21:26:23 ───────────────────────────────────────────────── +2026/03/21 21:26:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:26:28 [metric_collector] {"stage_name":"metric_collector","events_processed":12034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2406.8,"last_update":"2026-03-21T21:26:23.870656662Z"} +2026/03/21 21:26:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4816,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:26:23.879875929Z"} +2026/03/21 21:26:28 [transform_engine] {"stage_name":"transform_engine","events_processed":401,"events_dropped":0,"avg_latency_ms":617.5440460686144,"throughput_eps":0,"last_update":"2026-03-21T21:26:23.966061943Z"} +2026/03/21 21:26:28 [detection_layer] {"stage_name":"detection_layer","events_processed":401,"events_dropped":0,"avg_latency_ms":19.196158404269223,"throughput_eps":0,"last_update":"2026-03-21T21:26:23.966050582Z"} +2026/03/21 21:26:28 [log_collector] {"stage_name":"log_collector","events_processed":19336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3867.2,"last_update":"2026-03-21T21:26:23.870121698Z"} +2026/03/21 21:26:28 ───────────────────────────────────────────────── +2026/03/21 21:26:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:26:33 [metric_collector] {"stage_name":"metric_collector","events_processed":12039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2407.8,"last_update":"2026-03-21T21:26:28.870014446Z"} +2026/03/21 21:26:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4818,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:26:28.880396159Z"} +2026/03/21 21:26:33 [transform_engine] {"stage_name":"transform_engine","events_processed":401,"events_dropped":0,"avg_latency_ms":617.5440460686144,"throughput_eps":0,"last_update":"2026-03-21T21:26:28.96564016Z"} +2026/03/21 21:26:33 [detection_layer] {"stage_name":"detection_layer","events_processed":401,"events_dropped":0,"avg_latency_ms":19.196158404269223,"throughput_eps":0,"last_update":"2026-03-21T21:26:28.965626353Z"} +2026/03/21 21:26:33 [log_collector] {"stage_name":"log_collector","events_processed":19336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3867.2,"last_update":"2026-03-21T21:26:28.869574995Z"} +2026/03/21 21:26:33 ───────────────────────────────────────────────── +2026/03/21 21:26:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:26:38 [log_collector] {"stage_name":"log_collector","events_processed":19336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3867.2,"last_update":"2026-03-21T21:26:38.869996513Z"} +2026/03/21 21:26:38 [metric_collector] {"stage_name":"metric_collector","events_processed":12044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2408.8,"last_update":"2026-03-21T21:26:33.870430042Z"} +2026/03/21 21:26:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4820,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:26:33.87880408Z"} +2026/03/21 21:26:38 [transform_engine] {"stage_name":"transform_engine","events_processed":401,"events_dropped":0,"avg_latency_ms":617.5440460686144,"throughput_eps":0,"last_update":"2026-03-21T21:26:33.966021339Z"} +2026/03/21 21:26:38 [detection_layer] {"stage_name":"detection_layer","events_processed":401,"events_dropped":0,"avg_latency_ms":19.196158404269223,"throughput_eps":0,"last_update":"2026-03-21T21:26:33.966009977Z"} +2026/03/21 21:26:38 ───────────────────────────────────────────────── +2026/03/21 21:26:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:26:43 [log_collector] {"stage_name":"log_collector","events_processed":19336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3867.2,"last_update":"2026-03-21T21:26:38.869996513Z"} +2026/03/21 21:26:43 [metric_collector] {"stage_name":"metric_collector","events_processed":12049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2409.8,"last_update":"2026-03-21T21:26:38.87084072Z"} +2026/03/21 21:26:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:26:38.878927989Z"} +2026/03/21 21:26:43 [transform_engine] {"stage_name":"transform_engine","events_processed":401,"events_dropped":0,"avg_latency_ms":617.5440460686144,"throughput_eps":0,"last_update":"2026-03-21T21:26:38.96612534Z"} +2026/03/21 21:26:43 [detection_layer] {"stage_name":"detection_layer","events_processed":401,"events_dropped":0,"avg_latency_ms":19.196158404269223,"throughput_eps":0,"last_update":"2026-03-21T21:26:38.966113677Z"} +2026/03/21 21:26:43 ───────────────────────────────────────────────── +2026/03/21 21:26:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:26:48 [metric_collector] {"stage_name":"metric_collector","events_processed":12054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2410.8,"last_update":"2026-03-21T21:26:43.870591808Z"} +2026/03/21 21:26:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:26:43.878337162Z"} +2026/03/21 21:26:48 [transform_engine] {"stage_name":"transform_engine","events_processed":401,"events_dropped":0,"avg_latency_ms":617.5440460686144,"throughput_eps":0,"last_update":"2026-03-21T21:26:43.965538641Z"} +2026/03/21 21:26:48 [detection_layer] {"stage_name":"detection_layer","events_processed":401,"events_dropped":0,"avg_latency_ms":19.196158404269223,"throughput_eps":0,"last_update":"2026-03-21T21:26:43.9655697Z"} +2026/03/21 21:26:48 [log_collector] {"stage_name":"log_collector","events_processed":19336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3867.2,"last_update":"2026-03-21T21:26:48.870001571Z"} +2026/03/21 21:26:48 ───────────────────────────────────────────────── +2026/03/21 21:26:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:26:53 [detection_layer] {"stage_name":"detection_layer","events_processed":401,"events_dropped":0,"avg_latency_ms":19.196158404269223,"throughput_eps":0,"last_update":"2026-03-21T21:26:48.965522643Z"} +2026/03/21 21:26:53 [log_collector] {"stage_name":"log_collector","events_processed":19336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3867.2,"last_update":"2026-03-21T21:26:48.870001571Z"} +2026/03/21 21:26:53 [metric_collector] {"stage_name":"metric_collector","events_processed":12059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2411.8,"last_update":"2026-03-21T21:26:48.870604986Z"} +2026/03/21 21:26:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4826,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:26:48.879235525Z"} +2026/03/21 21:26:53 [transform_engine] {"stage_name":"transform_engine","events_processed":401,"events_dropped":0,"avg_latency_ms":617.5440460686144,"throughput_eps":0,"last_update":"2026-03-21T21:26:48.965418794Z"} +2026/03/21 21:26:53 ───────────────────────────────────────────────── +2026/03/21 21:26:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:26:58 [transform_engine] {"stage_name":"transform_engine","events_processed":402,"events_dropped":0,"avg_latency_ms":509.6129132548915,"throughput_eps":0,"last_update":"2026-03-21T21:26:53.965331822Z"} +2026/03/21 21:26:58 [detection_layer] {"stage_name":"detection_layer","events_processed":402,"events_dropped":0,"avg_latency_ms":19.52041052341538,"throughput_eps":0,"last_update":"2026-03-21T21:26:53.965377549Z"} +2026/03/21 21:26:58 [log_collector] {"stage_name":"log_collector","events_processed":19336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3867.2,"last_update":"2026-03-21T21:26:53.869751104Z"} +2026/03/21 21:26:58 [metric_collector] {"stage_name":"metric_collector","events_processed":12064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2412.8,"last_update":"2026-03-21T21:26:53.870156511Z"} +2026/03/21 21:26:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:26:53.878103571Z"} +2026/03/21 21:26:58 ───────────────────────────────────────────────── +Saved state: 12 clusters, 19337 messages, reason: none +2026/03/21 21:27:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:27:03 [log_collector] {"stage_name":"log_collector","events_processed":19339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3867.8,"last_update":"2026-03-21T21:27:03.869868074Z"} +2026/03/21 21:27:03 [metric_collector] {"stage_name":"metric_collector","events_processed":12069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2413.8,"last_update":"2026-03-21T21:26:58.869882719Z"} +2026/03/21 21:27:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4830,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:26:58.878750052Z"} +2026/03/21 21:27:03 [transform_engine] {"stage_name":"transform_engine","events_processed":402,"events_dropped":0,"avg_latency_ms":509.6129132548915,"throughput_eps":0,"last_update":"2026-03-21T21:26:58.966038798Z"} +2026/03/21 21:27:03 [detection_layer] {"stage_name":"detection_layer","events_processed":402,"events_dropped":0,"avg_latency_ms":19.52041052341538,"throughput_eps":0,"last_update":"2026-03-21T21:26:58.966139682Z"} +2026/03/21 21:27:03 ───────────────────────────────────────────────── +2026/03/21 21:27:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:27:08 [transform_engine] {"stage_name":"transform_engine","events_processed":402,"events_dropped":0,"avg_latency_ms":509.6129132548915,"throughput_eps":0,"last_update":"2026-03-21T21:27:03.966433297Z"} +2026/03/21 21:27:08 [detection_layer] {"stage_name":"detection_layer","events_processed":402,"events_dropped":0,"avg_latency_ms":19.52041052341538,"throughput_eps":0,"last_update":"2026-03-21T21:27:03.966424129Z"} +2026/03/21 21:27:08 [log_collector] {"stage_name":"log_collector","events_processed":19341,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3868.2,"last_update":"2026-03-21T21:27:08.870268074Z"} +2026/03/21 21:27:08 [metric_collector] {"stage_name":"metric_collector","events_processed":12074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2414.8,"last_update":"2026-03-21T21:27:03.87020551Z"} +2026/03/21 21:27:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4832,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:27:03.881963669Z"} +2026/03/21 21:27:08 ───────────────────────────────────────────────── +2026/03/21 21:27:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:27:13 [log_collector] {"stage_name":"log_collector","events_processed":19341,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3868.2,"last_update":"2026-03-21T21:27:13.86987721Z"} +2026/03/21 21:27:13 [metric_collector] {"stage_name":"metric_collector","events_processed":12079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2415.8,"last_update":"2026-03-21T21:27:08.870694441Z"} +2026/03/21 21:27:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:27:08.878414746Z"} +2026/03/21 21:27:13 [transform_engine] {"stage_name":"transform_engine","events_processed":402,"events_dropped":0,"avg_latency_ms":509.6129132548915,"throughput_eps":0,"last_update":"2026-03-21T21:27:08.965587471Z"} +2026/03/21 21:27:13 [detection_layer] {"stage_name":"detection_layer","events_processed":402,"events_dropped":0,"avg_latency_ms":19.52041052341538,"throughput_eps":0,"last_update":"2026-03-21T21:27:08.965570208Z"} +2026/03/21 21:27:13 ───────────────────────────────────────────────── +2026/03/21 21:27:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:27:18 [log_collector] {"stage_name":"log_collector","events_processed":19341,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3868.2,"last_update":"2026-03-21T21:27:13.86987721Z"} +2026/03/21 21:27:18 [metric_collector] {"stage_name":"metric_collector","events_processed":12084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2416.8,"last_update":"2026-03-21T21:27:13.870128782Z"} +2026/03/21 21:27:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:27:13.881772973Z"} +2026/03/21 21:27:18 [transform_engine] {"stage_name":"transform_engine","events_processed":402,"events_dropped":0,"avg_latency_ms":509.6129132548915,"throughput_eps":0,"last_update":"2026-03-21T21:27:13.965385218Z"} +2026/03/21 21:27:18 [detection_layer] {"stage_name":"detection_layer","events_processed":402,"events_dropped":0,"avg_latency_ms":19.52041052341538,"throughput_eps":0,"last_update":"2026-03-21T21:27:13.965375099Z"} +2026/03/21 21:27:18 ───────────────────────────────────────────────── +2026/03/21 21:27:21 [ANOMALY] time=2026-03-21T21:27:21Z score=0.8476 method=SEAD details=MAD!:w=0.22,s=0.93 RRCF-fast!:w=0.20,s=0.84 RRCF-mid!:w=0.20,s=0.90 RRCF-slow!:w=0.15,s=0.88 COPOD!:w=0.23,s=0.71 +2026/03/21 21:27:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:27:23 [detection_layer] {"stage_name":"detection_layer","events_processed":402,"events_dropped":0,"avg_latency_ms":19.52041052341538,"throughput_eps":0,"last_update":"2026-03-21T21:27:18.967342701Z"} +2026/03/21 21:27:23 [log_collector] {"stage_name":"log_collector","events_processed":19341,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3868.2,"last_update":"2026-03-21T21:27:23.869820931Z"} +2026/03/21 21:27:23 [metric_collector] {"stage_name":"metric_collector","events_processed":12089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2417.8,"last_update":"2026-03-21T21:27:18.86985898Z"} +2026/03/21 21:27:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:27:18.878732454Z"} +2026/03/21 21:27:23 [transform_engine] {"stage_name":"transform_engine","events_processed":403,"events_dropped":0,"avg_latency_ms":835.5494590039133,"throughput_eps":0,"last_update":"2026-03-21T21:27:21.105233502Z"} +2026/03/21 21:27:23 ───────────────────────────────────────────────── +2026/03/21 21:27:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:27:28 [log_collector] {"stage_name":"log_collector","events_processed":19341,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3868.2,"last_update":"2026-03-21T21:27:23.869820931Z"} +2026/03/21 21:27:28 [metric_collector] {"stage_name":"metric_collector","events_processed":12094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2418.8,"last_update":"2026-03-21T21:27:23.870030402Z"} +2026/03/21 21:27:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:27:23.87734966Z"} +2026/03/21 21:27:28 [transform_engine] {"stage_name":"transform_engine","events_processed":403,"events_dropped":0,"avg_latency_ms":835.5494590039133,"throughput_eps":0,"last_update":"2026-03-21T21:27:23.965544011Z"} +2026/03/21 21:27:28 [detection_layer] {"stage_name":"detection_layer","events_processed":403,"events_dropped":0,"avg_latency_ms":18.142017418732305,"throughput_eps":0,"last_update":"2026-03-21T21:27:23.965524574Z"} +2026/03/21 21:27:28 ───────────────────────────────────────────────── +2026/03/21 21:27:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:27:33 [detection_layer] {"stage_name":"detection_layer","events_processed":403,"events_dropped":0,"avg_latency_ms":18.142017418732305,"throughput_eps":0,"last_update":"2026-03-21T21:27:28.965866673Z"} +2026/03/21 21:27:33 [log_collector] {"stage_name":"log_collector","events_processed":19341,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3868.2,"last_update":"2026-03-21T21:27:28.869921098Z"} +2026/03/21 21:27:33 [metric_collector] {"stage_name":"metric_collector","events_processed":12099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2419.8,"last_update":"2026-03-21T21:27:28.869810636Z"} +2026/03/21 21:27:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:27:28.881628499Z"} +2026/03/21 21:27:33 [transform_engine] {"stage_name":"transform_engine","events_processed":403,"events_dropped":0,"avg_latency_ms":835.5494590039133,"throughput_eps":0,"last_update":"2026-03-21T21:27:28.965848438Z"} +2026/03/21 21:27:33 ───────────────────────────────────────────────── +2026/03/21 21:27:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:27:38 [log_collector] {"stage_name":"log_collector","events_processed":19341,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3868.2,"last_update":"2026-03-21T21:27:33.869738572Z"} +2026/03/21 21:27:38 [metric_collector] {"stage_name":"metric_collector","events_processed":12104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2420.8,"last_update":"2026-03-21T21:27:33.870232999Z"} +2026/03/21 21:27:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:27:33.876640951Z"} +2026/03/21 21:27:38 [transform_engine] {"stage_name":"transform_engine","events_processed":403,"events_dropped":0,"avg_latency_ms":835.5494590039133,"throughput_eps":0,"last_update":"2026-03-21T21:27:33.965869062Z"} +2026/03/21 21:27:38 [detection_layer] {"stage_name":"detection_layer","events_processed":403,"events_dropped":0,"avg_latency_ms":18.142017418732305,"throughput_eps":0,"last_update":"2026-03-21T21:27:33.965840818Z"} +2026/03/21 21:27:38 ───────────────────────────────────────────────── +2026/03/21 21:27:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:27:43 [log_collector] {"stage_name":"log_collector","events_processed":19341,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3868.2,"last_update":"2026-03-21T21:27:43.869818407Z"} +2026/03/21 21:27:43 [metric_collector] {"stage_name":"metric_collector","events_processed":12109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2421.8,"last_update":"2026-03-21T21:27:38.869787121Z"} +2026/03/21 21:27:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:27:38.87629265Z"} +2026/03/21 21:27:43 [transform_engine] {"stage_name":"transform_engine","events_processed":403,"events_dropped":0,"avg_latency_ms":835.5494590039133,"throughput_eps":0,"last_update":"2026-03-21T21:27:38.965505162Z"} +2026/03/21 21:27:43 [detection_layer] {"stage_name":"detection_layer","events_processed":403,"events_dropped":0,"avg_latency_ms":18.142017418732305,"throughput_eps":0,"last_update":"2026-03-21T21:27:38.965371205Z"} +2026/03/21 21:27:43 ───────────────────────────────────────────────── +2026/03/21 21:27:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:27:48 [metric_collector] {"stage_name":"metric_collector","events_processed":12114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2422.8,"last_update":"2026-03-21T21:27:43.870290111Z"} +2026/03/21 21:27:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4848,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:27:43.877215644Z"} +2026/03/21 21:27:48 [transform_engine] {"stage_name":"transform_engine","events_processed":403,"events_dropped":0,"avg_latency_ms":835.5494590039133,"throughput_eps":0,"last_update":"2026-03-21T21:27:43.965414794Z"} +2026/03/21 21:27:48 [detection_layer] {"stage_name":"detection_layer","events_processed":403,"events_dropped":0,"avg_latency_ms":18.142017418732305,"throughput_eps":0,"last_update":"2026-03-21T21:27:43.965440784Z"} +2026/03/21 21:27:48 [log_collector] {"stage_name":"log_collector","events_processed":19341,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3868.2,"last_update":"2026-03-21T21:27:43.869818407Z"} +2026/03/21 21:27:48 ───────────────────────────────────────────────── +2026/03/21 21:27:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:27:53 [log_collector] {"stage_name":"log_collector","events_processed":19352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3870.4,"last_update":"2026-03-21T21:27:48.86994294Z"} +2026/03/21 21:27:53 [metric_collector] {"stage_name":"metric_collector","events_processed":12119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2423.8,"last_update":"2026-03-21T21:27:48.87054778Z"} +2026/03/21 21:27:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:27:48.877420862Z"} +2026/03/21 21:27:53 [transform_engine] {"stage_name":"transform_engine","events_processed":404,"events_dropped":0,"avg_latency_ms":690.3239766031306,"throughput_eps":0,"last_update":"2026-03-21T21:27:49.075092145Z"} +2026/03/21 21:27:53 [detection_layer] {"stage_name":"detection_layer","events_processed":403,"events_dropped":0,"avg_latency_ms":18.142017418732305,"throughput_eps":0,"last_update":"2026-03-21T21:27:48.965561711Z"} +2026/03/21 21:27:53 ───────────────────────────────────────────────── +2026/03/21 21:27:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:27:58 [log_collector] {"stage_name":"log_collector","events_processed":19352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3870.4,"last_update":"2026-03-21T21:27:53.869768924Z"} +2026/03/21 21:27:58 [metric_collector] {"stage_name":"metric_collector","events_processed":12124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2424.8,"last_update":"2026-03-21T21:27:53.869846653Z"} +2026/03/21 21:27:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:27:53.879850783Z"} +2026/03/21 21:27:58 [transform_engine] {"stage_name":"transform_engine","events_processed":404,"events_dropped":0,"avg_latency_ms":690.3239766031306,"throughput_eps":0,"last_update":"2026-03-21T21:27:53.966051616Z"} +2026/03/21 21:27:58 [detection_layer] {"stage_name":"detection_layer","events_processed":404,"events_dropped":0,"avg_latency_ms":17.080870734985844,"throughput_eps":0,"last_update":"2026-03-21T21:27:53.966098797Z"} +2026/03/21 21:27:58 ───────────────────────────────────────────────── +Saved state: 12 clusters, 19639 messages, reason: none +2026/03/21 21:28:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:28:03 [log_collector] {"stage_name":"log_collector","events_processed":19461,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3892.2,"last_update":"2026-03-21T21:27:58.870253017Z"} +2026/03/21 21:28:03 [metric_collector] {"stage_name":"metric_collector","events_processed":12129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2425.8,"last_update":"2026-03-21T21:27:58.870642363Z"} +2026/03/21 21:28:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:27:58.879197908Z"} +2026/03/21 21:28:03 [transform_engine] {"stage_name":"transform_engine","events_processed":404,"events_dropped":0,"avg_latency_ms":690.3239766031306,"throughput_eps":0,"last_update":"2026-03-21T21:27:58.965592242Z"} +2026/03/21 21:28:03 [detection_layer] {"stage_name":"detection_layer","events_processed":404,"events_dropped":0,"avg_latency_ms":17.080870734985844,"throughput_eps":0,"last_update":"2026-03-21T21:27:58.965571523Z"} +2026/03/21 21:28:03 ───────────────────────────────────────────────── +2026/03/21 21:28:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:28:08 [detection_layer] {"stage_name":"detection_layer","events_processed":404,"events_dropped":0,"avg_latency_ms":17.080870734985844,"throughput_eps":0,"last_update":"2026-03-21T21:28:03.965782042Z"} +2026/03/21 21:28:08 [log_collector] {"stage_name":"log_collector","events_processed":19650,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3930,"last_update":"2026-03-21T21:28:03.869834613Z"} +2026/03/21 21:28:08 [metric_collector] {"stage_name":"metric_collector","events_processed":12134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2426.8,"last_update":"2026-03-21T21:28:03.869635021Z"} +2026/03/21 21:28:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:28:03.879187285Z"} +2026/03/21 21:28:08 [transform_engine] {"stage_name":"transform_engine","events_processed":404,"events_dropped":0,"avg_latency_ms":690.3239766031306,"throughput_eps":0,"last_update":"2026-03-21T21:28:03.965823823Z"} +2026/03/21 21:28:08 ───────────────────────────────────────────────── +2026/03/21 21:28:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:28:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:28:08.878061507Z"} +2026/03/21 21:28:13 [transform_engine] {"stage_name":"transform_engine","events_processed":404,"events_dropped":0,"avg_latency_ms":690.3239766031306,"throughput_eps":0,"last_update":"2026-03-21T21:28:08.965306811Z"} +2026/03/21 21:28:13 [detection_layer] {"stage_name":"detection_layer","events_processed":404,"events_dropped":0,"avg_latency_ms":17.080870734985844,"throughput_eps":0,"last_update":"2026-03-21T21:28:08.965265091Z"} +2026/03/21 21:28:13 [log_collector] {"stage_name":"log_collector","events_processed":19702,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3940.4,"last_update":"2026-03-21T21:28:08.869408004Z"} +2026/03/21 21:28:13 [metric_collector] {"stage_name":"metric_collector","events_processed":12138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2427.6,"last_update":"2026-03-21T21:28:08.869647833Z"} +2026/03/21 21:28:13 ───────────────────────────────────────────────── +2026/03/21 21:28:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:28:18 [log_collector] {"stage_name":"log_collector","events_processed":19705,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3941,"last_update":"2026-03-21T21:28:13.869922356Z"} +2026/03/21 21:28:18 [metric_collector] {"stage_name":"metric_collector","events_processed":12144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2428.8,"last_update":"2026-03-21T21:28:13.870056382Z"} +2026/03/21 21:28:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4860,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:28:13.876854052Z"} +2026/03/21 21:28:18 [transform_engine] {"stage_name":"transform_engine","events_processed":404,"events_dropped":0,"avg_latency_ms":690.3239766031306,"throughput_eps":0,"last_update":"2026-03-21T21:28:13.966059789Z"} +2026/03/21 21:28:18 [detection_layer] {"stage_name":"detection_layer","events_processed":404,"events_dropped":0,"avg_latency_ms":17.080870734985844,"throughput_eps":0,"last_update":"2026-03-21T21:28:13.966083365Z"} +2026/03/21 21:28:18 ───────────────────────────────────────────────── +2026/03/21 21:28:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:28:23 [metric_collector] {"stage_name":"metric_collector","events_processed":12149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2429.8,"last_update":"2026-03-21T21:28:18.869773647Z"} +2026/03/21 21:28:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4862,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:28:18.879285545Z"} +2026/03/21 21:28:23 [transform_engine] {"stage_name":"transform_engine","events_processed":405,"events_dropped":0,"avg_latency_ms":588.8112282825045,"throughput_eps":0,"last_update":"2026-03-21T21:28:19.148252434Z"} +2026/03/21 21:28:23 [detection_layer] {"stage_name":"detection_layer","events_processed":404,"events_dropped":0,"avg_latency_ms":17.080870734985844,"throughput_eps":0,"last_update":"2026-03-21T21:28:18.965463884Z"} +2026/03/21 21:28:23 [log_collector] {"stage_name":"log_collector","events_processed":19705,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3941,"last_update":"2026-03-21T21:28:18.869467241Z"} +2026/03/21 21:28:23 ───────────────────────────────────────────────── +2026/03/21 21:28:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:28:28 [transform_engine] {"stage_name":"transform_engine","events_processed":405,"events_dropped":0,"avg_latency_ms":588.8112282825045,"throughput_eps":0,"last_update":"2026-03-21T21:28:23.96556165Z"} +2026/03/21 21:28:28 [detection_layer] {"stage_name":"detection_layer","events_processed":405,"events_dropped":0,"avg_latency_ms":18.722371187988678,"throughput_eps":0,"last_update":"2026-03-21T21:28:23.965684335Z"} +2026/03/21 21:28:28 [log_collector] {"stage_name":"log_collector","events_processed":19715,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3943,"last_update":"2026-03-21T21:28:23.869959603Z"} +2026/03/21 21:28:28 [metric_collector] {"stage_name":"metric_collector","events_processed":12154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2430.8,"last_update":"2026-03-21T21:28:23.870456014Z"} +2026/03/21 21:28:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:28:23.880219603Z"} +2026/03/21 21:28:28 ───────────────────────────────────────────────── +2026/03/21 21:28:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:28:33 [transform_engine] {"stage_name":"transform_engine","events_processed":405,"events_dropped":0,"avg_latency_ms":588.8112282825045,"throughput_eps":0,"last_update":"2026-03-21T21:28:28.965962536Z"} +2026/03/21 21:28:33 [detection_layer] {"stage_name":"detection_layer","events_processed":405,"events_dropped":0,"avg_latency_ms":18.722371187988678,"throughput_eps":0,"last_update":"2026-03-21T21:28:28.965914444Z"} +2026/03/21 21:28:33 [log_collector] {"stage_name":"log_collector","events_processed":19716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3943.2,"last_update":"2026-03-21T21:28:28.870364205Z"} +2026/03/21 21:28:33 [metric_collector] {"stage_name":"metric_collector","events_processed":12159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2431.8,"last_update":"2026-03-21T21:28:28.870732341Z"} +2026/03/21 21:28:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:28:28.879736064Z"} +2026/03/21 21:28:33 ───────────────────────────────────────────────── +2026/03/21 21:28:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:28:38 [log_collector] {"stage_name":"log_collector","events_processed":19730,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3946,"last_update":"2026-03-21T21:28:33.869421378Z"} +2026/03/21 21:28:38 [metric_collector] {"stage_name":"metric_collector","events_processed":12164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2432.8,"last_update":"2026-03-21T21:28:33.86986603Z"} +2026/03/21 21:28:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4868,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:28:33.879166702Z"} +2026/03/21 21:28:38 [transform_engine] {"stage_name":"transform_engine","events_processed":405,"events_dropped":0,"avg_latency_ms":588.8112282825045,"throughput_eps":0,"last_update":"2026-03-21T21:28:33.965374278Z"} +2026/03/21 21:28:38 [detection_layer] {"stage_name":"detection_layer","events_processed":405,"events_dropped":0,"avg_latency_ms":18.722371187988678,"throughput_eps":0,"last_update":"2026-03-21T21:28:33.965473478Z"} +2026/03/21 21:28:38 ───────────────────────────────────────────────── +2026/03/21 21:28:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:28:43 [metric_collector] {"stage_name":"metric_collector","events_processed":12169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2433.8,"last_update":"2026-03-21T21:28:38.869777447Z"} +2026/03/21 21:28:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:28:38.879070165Z"} +2026/03/21 21:28:43 [transform_engine] {"stage_name":"transform_engine","events_processed":405,"events_dropped":0,"avg_latency_ms":588.8112282825045,"throughput_eps":0,"last_update":"2026-03-21T21:28:38.965195383Z"} +2026/03/21 21:28:43 [detection_layer] {"stage_name":"detection_layer","events_processed":405,"events_dropped":0,"avg_latency_ms":18.722371187988678,"throughput_eps":0,"last_update":"2026-03-21T21:28:38.965272Z"} +2026/03/21 21:28:43 [log_collector] {"stage_name":"log_collector","events_processed":19732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3946.4,"last_update":"2026-03-21T21:28:38.869531166Z"} +2026/03/21 21:28:43 ───────────────────────────────────────────────── +2026/03/21 21:28:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:28:48 [metric_collector] {"stage_name":"metric_collector","events_processed":12174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2434.8,"last_update":"2026-03-21T21:28:43.87023383Z"} +2026/03/21 21:28:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:28:43.878678313Z"} +2026/03/21 21:28:48 [transform_engine] {"stage_name":"transform_engine","events_processed":405,"events_dropped":0,"avg_latency_ms":588.8112282825045,"throughput_eps":0,"last_update":"2026-03-21T21:28:43.965855475Z"} +2026/03/21 21:28:48 [detection_layer] {"stage_name":"detection_layer","events_processed":405,"events_dropped":0,"avg_latency_ms":18.722371187988678,"throughput_eps":0,"last_update":"2026-03-21T21:28:43.965963762Z"} +2026/03/21 21:28:48 [log_collector] {"stage_name":"log_collector","events_processed":19732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3946.4,"last_update":"2026-03-21T21:28:43.869803987Z"} +2026/03/21 21:28:48 ───────────────────────────────────────────────── +2026/03/21 21:28:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:28:53 [log_collector] {"stage_name":"log_collector","events_processed":19732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3946.4,"last_update":"2026-03-21T21:28:48.869946346Z"} +2026/03/21 21:28:53 [metric_collector] {"stage_name":"metric_collector","events_processed":12179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2435.8,"last_update":"2026-03-21T21:28:48.87053821Z"} +2026/03/21 21:28:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:28:48.878801456Z"} +2026/03/21 21:28:53 [transform_engine] {"stage_name":"transform_engine","events_processed":406,"events_dropped":0,"avg_latency_ms":494.63329562600364,"throughput_eps":0,"last_update":"2026-03-21T21:28:49.084097381Z"} +2026/03/21 21:28:53 [detection_layer] {"stage_name":"detection_layer","events_processed":405,"events_dropped":0,"avg_latency_ms":18.722371187988678,"throughput_eps":0,"last_update":"2026-03-21T21:28:48.966143725Z"} +2026/03/21 21:28:53 ───────────────────────────────────────────────── +2026/03/21 21:28:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:28:58 [log_collector] {"stage_name":"log_collector","events_processed":19732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3946.4,"last_update":"2026-03-21T21:28:53.870400275Z"} +2026/03/21 21:28:58 [metric_collector] {"stage_name":"metric_collector","events_processed":12184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2436.8,"last_update":"2026-03-21T21:28:53.870850117Z"} +2026/03/21 21:28:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4876,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:28:53.879916231Z"} +2026/03/21 21:28:58 [transform_engine] {"stage_name":"transform_engine","events_processed":406,"events_dropped":0,"avg_latency_ms":494.63329562600364,"throughput_eps":0,"last_update":"2026-03-21T21:28:53.966277992Z"} +2026/03/21 21:28:58 [detection_layer] {"stage_name":"detection_layer","events_processed":406,"events_dropped":0,"avg_latency_ms":18.55526035039094,"throughput_eps":0,"last_update":"2026-03-21T21:28:53.96612567Z"} +2026/03/21 21:28:58 ───────────────────────────────────────────────── +2026/03/21 21:29:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:29:03 [log_collector] {"stage_name":"log_collector","events_processed":19732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3946.4,"last_update":"2026-03-21T21:28:58.869868616Z"} +2026/03/21 21:29:03 [metric_collector] {"stage_name":"metric_collector","events_processed":12189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2437.8,"last_update":"2026-03-21T21:28:58.869846343Z"} +2026/03/21 21:29:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:28:58.880738764Z"} +2026/03/21 21:29:03 [transform_engine] {"stage_name":"transform_engine","events_processed":406,"events_dropped":0,"avg_latency_ms":494.63329562600364,"throughput_eps":0,"last_update":"2026-03-21T21:28:58.965864579Z"} +2026/03/21 21:29:03 [detection_layer] {"stage_name":"detection_layer","events_processed":406,"events_dropped":0,"avg_latency_ms":18.55526035039094,"throughput_eps":0,"last_update":"2026-03-21T21:28:58.965968468Z"} +2026/03/21 21:29:03 ───────────────────────────────────────────────── +2026/03/21 21:29:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:29:08 [transform_engine] {"stage_name":"transform_engine","events_processed":406,"events_dropped":0,"avg_latency_ms":494.63329562600364,"throughput_eps":0,"last_update":"2026-03-21T21:29:03.965425919Z"} +2026/03/21 21:29:08 [detection_layer] {"stage_name":"detection_layer","events_processed":406,"events_dropped":0,"avg_latency_ms":18.55526035039094,"throughput_eps":0,"last_update":"2026-03-21T21:29:03.965455425Z"} +2026/03/21 21:29:08 [log_collector] {"stage_name":"log_collector","events_processed":19732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3946.4,"last_update":"2026-03-21T21:29:03.869415187Z"} +2026/03/21 21:29:08 [metric_collector] {"stage_name":"metric_collector","events_processed":12194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2438.8,"last_update":"2026-03-21T21:29:03.869913722Z"} +2026/03/21 21:29:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:29:03.87818285Z"} +2026/03/21 21:29:08 ───────────────────────────────────────────────── +2026/03/21 21:29:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:29:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:29:08.878838886Z"} +2026/03/21 21:29:13 [transform_engine] {"stage_name":"transform_engine","events_processed":406,"events_dropped":0,"avg_latency_ms":494.63329562600364,"throughput_eps":0,"last_update":"2026-03-21T21:29:08.966113144Z"} +2026/03/21 21:29:13 [detection_layer] {"stage_name":"detection_layer","events_processed":406,"events_dropped":0,"avg_latency_ms":18.55526035039094,"throughput_eps":0,"last_update":"2026-03-21T21:29:08.966130748Z"} +2026/03/21 21:29:13 [log_collector] {"stage_name":"log_collector","events_processed":19732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3946.4,"last_update":"2026-03-21T21:29:08.869418143Z"} +2026/03/21 21:29:13 [metric_collector] {"stage_name":"metric_collector","events_processed":12198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2439.6,"last_update":"2026-03-21T21:29:08.869410728Z"} +2026/03/21 21:29:13 ───────────────────────────────────────────────── +2026/03/21 21:29:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:29:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:29:13.878838717Z"} +2026/03/21 21:29:18 [transform_engine] {"stage_name":"transform_engine","events_processed":406,"events_dropped":0,"avg_latency_ms":494.63329562600364,"throughput_eps":0,"last_update":"2026-03-21T21:29:13.966044815Z"} +2026/03/21 21:29:18 [detection_layer] {"stage_name":"detection_layer","events_processed":406,"events_dropped":0,"avg_latency_ms":18.55526035039094,"throughput_eps":0,"last_update":"2026-03-21T21:29:13.966157962Z"} +2026/03/21 21:29:18 [log_collector] {"stage_name":"log_collector","events_processed":19732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3946.4,"last_update":"2026-03-21T21:29:13.870019485Z"} +2026/03/21 21:29:18 [metric_collector] {"stage_name":"metric_collector","events_processed":12204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2440.8,"last_update":"2026-03-21T21:29:13.869867394Z"} +2026/03/21 21:29:18 ───────────────────────────────────────────────── +2026/03/21 21:29:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:29:23 [log_collector] {"stage_name":"log_collector","events_processed":19732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3946.4,"last_update":"2026-03-21T21:29:18.870060616Z"} +2026/03/21 21:29:23 [metric_collector] {"stage_name":"metric_collector","events_processed":12209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2441.8,"last_update":"2026-03-21T21:29:18.870503535Z"} +2026/03/21 21:29:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4886,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:29:18.879049973Z"} +2026/03/21 21:29:23 [transform_engine] {"stage_name":"transform_engine","events_processed":407,"events_dropped":0,"avg_latency_ms":409.61436070080293,"throughput_eps":0,"last_update":"2026-03-21T21:29:19.034704064Z"} +2026/03/21 21:29:23 [detection_layer] {"stage_name":"detection_layer","events_processed":406,"events_dropped":0,"avg_latency_ms":18.55526035039094,"throughput_eps":0,"last_update":"2026-03-21T21:29:18.965270223Z"} +2026/03/21 21:29:23 ───────────────────────────────────────────────── +2026/03/21 21:29:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:29:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:29:23.879214307Z"} +2026/03/21 21:29:28 [transform_engine] {"stage_name":"transform_engine","events_processed":407,"events_dropped":0,"avg_latency_ms":409.61436070080293,"throughput_eps":0,"last_update":"2026-03-21T21:29:23.965579655Z"} +2026/03/21 21:29:28 [detection_layer] {"stage_name":"detection_layer","events_processed":407,"events_dropped":0,"avg_latency_ms":19.014264880312755,"throughput_eps":0,"last_update":"2026-03-21T21:29:23.965595053Z"} +2026/03/21 21:29:28 [log_collector] {"stage_name":"log_collector","events_processed":19732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3946.4,"last_update":"2026-03-21T21:29:23.869813062Z"} +2026/03/21 21:29:28 [metric_collector] {"stage_name":"metric_collector","events_processed":12214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2442.8,"last_update":"2026-03-21T21:29:23.870241793Z"} +2026/03/21 21:29:28 ───────────────────────────────────────────────── +2026/03/21 21:29:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:29:33 [detection_layer] {"stage_name":"detection_layer","events_processed":407,"events_dropped":0,"avg_latency_ms":19.014264880312755,"throughput_eps":0,"last_update":"2026-03-21T21:29:28.965435368Z"} +2026/03/21 21:29:33 [log_collector] {"stage_name":"log_collector","events_processed":19732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3946.4,"last_update":"2026-03-21T21:29:28.86999552Z"} +2026/03/21 21:29:33 [metric_collector] {"stage_name":"metric_collector","events_processed":12219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2443.8,"last_update":"2026-03-21T21:29:28.870714076Z"} +2026/03/21 21:29:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:29:28.878960499Z"} +2026/03/21 21:29:33 [transform_engine] {"stage_name":"transform_engine","events_processed":407,"events_dropped":0,"avg_latency_ms":409.61436070080293,"throughput_eps":0,"last_update":"2026-03-21T21:29:28.965153186Z"} +2026/03/21 21:29:33 ───────────────────────────────────────────────── +2026/03/21 21:29:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:29:38 [log_collector] {"stage_name":"log_collector","events_processed":19732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3946.4,"last_update":"2026-03-21T21:29:33.86967678Z"} +2026/03/21 21:29:38 [metric_collector] {"stage_name":"metric_collector","events_processed":12224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2444.8,"last_update":"2026-03-21T21:29:33.870081125Z"} +2026/03/21 21:29:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4892,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:29:33.878492244Z"} +2026/03/21 21:29:38 [transform_engine] {"stage_name":"transform_engine","events_processed":407,"events_dropped":0,"avg_latency_ms":409.61436070080293,"throughput_eps":0,"last_update":"2026-03-21T21:29:33.965794095Z"} +2026/03/21 21:29:38 [detection_layer] {"stage_name":"detection_layer","events_processed":407,"events_dropped":0,"avg_latency_ms":19.014264880312755,"throughput_eps":0,"last_update":"2026-03-21T21:29:33.965785389Z"} +2026/03/21 21:29:38 ───────────────────────────────────────────────── +Saved state: 12 clusters, 19733 messages, reason: none +2026/03/21 21:29:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:29:43 [log_collector] {"stage_name":"log_collector","events_processed":19732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3946.4,"last_update":"2026-03-21T21:29:38.869831766Z"} +2026/03/21 21:29:43 [metric_collector] {"stage_name":"metric_collector","events_processed":12229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2445.8,"last_update":"2026-03-21T21:29:38.870269115Z"} +2026/03/21 21:29:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:29:38.878543692Z"} +2026/03/21 21:29:43 [transform_engine] {"stage_name":"transform_engine","events_processed":407,"events_dropped":0,"avg_latency_ms":409.61436070080293,"throughput_eps":0,"last_update":"2026-03-21T21:29:38.965907582Z"} +2026/03/21 21:29:43 [detection_layer] {"stage_name":"detection_layer","events_processed":407,"events_dropped":0,"avg_latency_ms":19.014264880312755,"throughput_eps":0,"last_update":"2026-03-21T21:29:38.96587454Z"} +2026/03/21 21:29:43 ───────────────────────────────────────────────── +2026/03/21 21:29:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:29:48 [metric_collector] {"stage_name":"metric_collector","events_processed":12234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2446.8,"last_update":"2026-03-21T21:29:43.870826975Z"} +2026/03/21 21:29:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4896,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:29:43.878519557Z"} +2026/03/21 21:29:48 [transform_engine] {"stage_name":"transform_engine","events_processed":407,"events_dropped":0,"avg_latency_ms":409.61436070080293,"throughput_eps":0,"last_update":"2026-03-21T21:29:43.965777245Z"} +2026/03/21 21:29:48 [detection_layer] {"stage_name":"detection_layer","events_processed":407,"events_dropped":0,"avg_latency_ms":19.014264880312755,"throughput_eps":0,"last_update":"2026-03-21T21:29:43.965761544Z"} +2026/03/21 21:29:48 [log_collector] {"stage_name":"log_collector","events_processed":19745,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3949,"last_update":"2026-03-21T21:29:43.8704847Z"} +2026/03/21 21:29:48 ───────────────────────────────────────────────── +2026/03/21 21:29:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:29:53 [log_collector] {"stage_name":"log_collector","events_processed":19746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3949.2,"last_update":"2026-03-21T21:29:48.87047312Z"} +2026/03/21 21:29:53 [metric_collector] {"stage_name":"metric_collector","events_processed":12239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2447.8,"last_update":"2026-03-21T21:29:48.870748948Z"} +2026/03/21 21:29:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4898,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:29:48.879481283Z"} +2026/03/21 21:29:53 [transform_engine] {"stage_name":"transform_engine","events_processed":408,"events_dropped":0,"avg_latency_ms":351.08786936064234,"throughput_eps":0,"last_update":"2026-03-21T21:29:49.082830349Z"} +2026/03/21 21:29:53 [detection_layer] {"stage_name":"detection_layer","events_processed":407,"events_dropped":0,"avg_latency_ms":19.014264880312755,"throughput_eps":0,"last_update":"2026-03-21T21:29:48.965830479Z"} +2026/03/21 21:29:53 ───────────────────────────────────────────────── +2026/03/21 21:29:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:29:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4900,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:29:53.878174171Z"} +2026/03/21 21:29:58 [transform_engine] {"stage_name":"transform_engine","events_processed":408,"events_dropped":0,"avg_latency_ms":351.08786936064234,"throughput_eps":0,"last_update":"2026-03-21T21:29:53.965394125Z"} +2026/03/21 21:29:58 [detection_layer] {"stage_name":"detection_layer","events_processed":408,"events_dropped":0,"avg_latency_ms":19.025709104250204,"throughput_eps":0,"last_update":"2026-03-21T21:29:53.965382033Z"} +2026/03/21 21:29:58 [log_collector] {"stage_name":"log_collector","events_processed":19746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3949.2,"last_update":"2026-03-21T21:29:53.869705802Z"} +2026/03/21 21:29:58 [metric_collector] {"stage_name":"metric_collector","events_processed":12244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2448.8,"last_update":"2026-03-21T21:29:53.870063397Z"} +2026/03/21 21:29:58 ───────────────────────────────────────────────── +2026/03/21 21:30:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:30:03 [log_collector] {"stage_name":"log_collector","events_processed":19746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3949.2,"last_update":"2026-03-21T21:29:58.87039829Z"} +2026/03/21 21:30:03 [metric_collector] {"stage_name":"metric_collector","events_processed":12249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2449.8,"last_update":"2026-03-21T21:29:58.870837322Z"} +2026/03/21 21:30:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:29:58.880070144Z"} +2026/03/21 21:30:03 [transform_engine] {"stage_name":"transform_engine","events_processed":408,"events_dropped":0,"avg_latency_ms":351.08786936064234,"throughput_eps":0,"last_update":"2026-03-21T21:29:58.965393026Z"} +2026/03/21 21:30:03 [detection_layer] {"stage_name":"detection_layer","events_processed":408,"events_dropped":0,"avg_latency_ms":19.025709104250204,"throughput_eps":0,"last_update":"2026-03-21T21:29:58.965381964Z"} +2026/03/21 21:30:03 ───────────────────────────────────────────────── +2026/03/21 21:30:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:30:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:30:03.888260503Z"} +2026/03/21 21:30:08 [transform_engine] {"stage_name":"transform_engine","events_processed":408,"events_dropped":0,"avg_latency_ms":351.08786936064234,"throughput_eps":0,"last_update":"2026-03-21T21:30:03.965533327Z"} +2026/03/21 21:30:08 [detection_layer] {"stage_name":"detection_layer","events_processed":408,"events_dropped":0,"avg_latency_ms":19.025709104250204,"throughput_eps":0,"last_update":"2026-03-21T21:30:03.965517146Z"} +2026/03/21 21:30:08 [log_collector] {"stage_name":"log_collector","events_processed":19746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3949.2,"last_update":"2026-03-21T21:30:03.869738298Z"} +2026/03/21 21:30:08 [metric_collector] {"stage_name":"metric_collector","events_processed":12254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2450.8,"last_update":"2026-03-21T21:30:03.869863929Z"} +2026/03/21 21:30:08 ───────────────────────────────────────────────── +2026/03/21 21:30:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:30:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4906,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:30:08.879064694Z"} +2026/03/21 21:30:13 [transform_engine] {"stage_name":"transform_engine","events_processed":408,"events_dropped":0,"avg_latency_ms":351.08786936064234,"throughput_eps":0,"last_update":"2026-03-21T21:30:08.965254365Z"} +2026/03/21 21:30:13 [detection_layer] {"stage_name":"detection_layer","events_processed":408,"events_dropped":0,"avg_latency_ms":19.025709104250204,"throughput_eps":0,"last_update":"2026-03-21T21:30:08.965260346Z"} +2026/03/21 21:30:13 [log_collector] {"stage_name":"log_collector","events_processed":19746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3949.2,"last_update":"2026-03-21T21:30:08.870461546Z"} +2026/03/21 21:30:13 [metric_collector] {"stage_name":"metric_collector","events_processed":12259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2451.8,"last_update":"2026-03-21T21:30:08.870789935Z"} +2026/03/21 21:30:13 ───────────────────────────────────────────────── +2026/03/21 21:30:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:30:18 [log_collector] {"stage_name":"log_collector","events_processed":19746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3949.2,"last_update":"2026-03-21T21:30:13.869535246Z"} +2026/03/21 21:30:18 [metric_collector] {"stage_name":"metric_collector","events_processed":12264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2452.8,"last_update":"2026-03-21T21:30:13.870290212Z"} +2026/03/21 21:30:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4908,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:30:13.879776309Z"} +2026/03/21 21:30:18 [transform_engine] {"stage_name":"transform_engine","events_processed":408,"events_dropped":0,"avg_latency_ms":351.08786936064234,"throughput_eps":0,"last_update":"2026-03-21T21:30:13.965974748Z"} +2026/03/21 21:30:18 [detection_layer] {"stage_name":"detection_layer","events_processed":408,"events_dropped":0,"avg_latency_ms":19.025709104250204,"throughput_eps":0,"last_update":"2026-03-21T21:30:13.965963395Z"} +2026/03/21 21:30:18 ───────────────────────────────────────────────── +2026/03/21 21:30:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:30:23 [log_collector] {"stage_name":"log_collector","events_processed":19746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3949.2,"last_update":"2026-03-21T21:30:23.869902114Z"} +2026/03/21 21:30:23 [metric_collector] {"stage_name":"metric_collector","events_processed":12269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2453.8,"last_update":"2026-03-21T21:30:18.86996402Z"} +2026/03/21 21:30:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:30:18.878798911Z"} +2026/03/21 21:30:23 [transform_engine] {"stage_name":"transform_engine","events_processed":409,"events_dropped":0,"avg_latency_ms":295.08454288851385,"throughput_eps":0,"last_update":"2026-03-21T21:30:19.037272452Z"} +2026/03/21 21:30:23 [detection_layer] {"stage_name":"detection_layer","events_processed":408,"events_dropped":0,"avg_latency_ms":19.025709104250204,"throughput_eps":0,"last_update":"2026-03-21T21:30:18.966183622Z"} +2026/03/21 21:30:23 ───────────────────────────────────────────────── +2026/03/21 21:30:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:30:28 [log_collector] {"stage_name":"log_collector","events_processed":19746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3949.2,"last_update":"2026-03-21T21:30:28.870340567Z"} +2026/03/21 21:30:28 [metric_collector] {"stage_name":"metric_collector","events_processed":12274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2454.8,"last_update":"2026-03-21T21:30:23.870263135Z"} +2026/03/21 21:30:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4912,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:30:23.879177027Z"} +2026/03/21 21:30:28 [transform_engine] {"stage_name":"transform_engine","events_processed":409,"events_dropped":0,"avg_latency_ms":295.08454288851385,"throughput_eps":0,"last_update":"2026-03-21T21:30:23.965363222Z"} +2026/03/21 21:30:28 [detection_layer] {"stage_name":"detection_layer","events_processed":409,"events_dropped":0,"avg_latency_ms":19.553437683400166,"throughput_eps":0,"last_update":"2026-03-21T21:30:23.965509002Z"} +2026/03/21 21:30:28 ───────────────────────────────────────────────── +2026/03/21 21:30:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:30:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:30:28.879731142Z"} +2026/03/21 21:30:33 [transform_engine] {"stage_name":"transform_engine","events_processed":409,"events_dropped":0,"avg_latency_ms":295.08454288851385,"throughput_eps":0,"last_update":"2026-03-21T21:30:28.9660813Z"} +2026/03/21 21:30:33 [detection_layer] {"stage_name":"detection_layer","events_processed":409,"events_dropped":0,"avg_latency_ms":19.553437683400166,"throughput_eps":0,"last_update":"2026-03-21T21:30:28.966105347Z"} +2026/03/21 21:30:33 [log_collector] {"stage_name":"log_collector","events_processed":19746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3949.2,"last_update":"2026-03-21T21:30:33.870042159Z"} +2026/03/21 21:30:33 [metric_collector] {"stage_name":"metric_collector","events_processed":12279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2455.8,"last_update":"2026-03-21T21:30:28.870813894Z"} +2026/03/21 21:30:33 ───────────────────────────────────────────────── +2026/03/21 21:30:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:30:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:30:33.878408391Z"} +2026/03/21 21:30:38 [transform_engine] {"stage_name":"transform_engine","events_processed":409,"events_dropped":0,"avg_latency_ms":295.08454288851385,"throughput_eps":0,"last_update":"2026-03-21T21:30:33.965829081Z"} +2026/03/21 21:30:38 [detection_layer] {"stage_name":"detection_layer","events_processed":409,"events_dropped":0,"avg_latency_ms":19.553437683400166,"throughput_eps":0,"last_update":"2026-03-21T21:30:33.965720422Z"} +2026/03/21 21:30:38 [log_collector] {"stage_name":"log_collector","events_processed":19746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3949.2,"last_update":"2026-03-21T21:30:33.870042159Z"} +2026/03/21 21:30:38 [metric_collector] {"stage_name":"metric_collector","events_processed":12284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2456.8,"last_update":"2026-03-21T21:30:33.870821091Z"} +2026/03/21 21:30:38 ───────────────────────────────────────────────── +2026/03/21 21:30:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:30:43 [log_collector] {"stage_name":"log_collector","events_processed":19746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3949.2,"last_update":"2026-03-21T21:30:43.869968905Z"} +2026/03/21 21:30:43 [metric_collector] {"stage_name":"metric_collector","events_processed":12289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2457.8,"last_update":"2026-03-21T21:30:38.870297822Z"} +2026/03/21 21:30:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4918,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:30:38.879241571Z"} +2026/03/21 21:30:43 [transform_engine] {"stage_name":"transform_engine","events_processed":409,"events_dropped":0,"avg_latency_ms":295.08454288851385,"throughput_eps":0,"last_update":"2026-03-21T21:30:38.96560728Z"} +2026/03/21 21:30:43 [detection_layer] {"stage_name":"detection_layer","events_processed":409,"events_dropped":0,"avg_latency_ms":19.553437683400166,"throughput_eps":0,"last_update":"2026-03-21T21:30:38.965583003Z"} +2026/03/21 21:30:43 ───────────────────────────────────────────────── +2026/03/21 21:30:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:30:48 [transform_engine] {"stage_name":"transform_engine","events_processed":409,"events_dropped":0,"avg_latency_ms":295.08454288851385,"throughput_eps":0,"last_update":"2026-03-21T21:30:43.966183386Z"} +2026/03/21 21:30:48 [detection_layer] {"stage_name":"detection_layer","events_processed":409,"events_dropped":0,"avg_latency_ms":19.553437683400166,"throughput_eps":0,"last_update":"2026-03-21T21:30:43.96615418Z"} +2026/03/21 21:30:48 [log_collector] {"stage_name":"log_collector","events_processed":19746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3949.2,"last_update":"2026-03-21T21:30:43.869968905Z"} +2026/03/21 21:30:48 [metric_collector] {"stage_name":"metric_collector","events_processed":12294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2458.8,"last_update":"2026-03-21T21:30:43.87060385Z"} +2026/03/21 21:30:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4920,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:30:43.878825527Z"} +2026/03/21 21:30:48 ───────────────────────────────────────────────── +Saved state: 12 clusters, 19747 messages, reason: none +2026/03/21 21:30:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:30:53 [log_collector] {"stage_name":"log_collector","events_processed":19746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3949.2,"last_update":"2026-03-21T21:30:48.86955194Z"} +2026/03/21 21:30:53 [metric_collector] {"stage_name":"metric_collector","events_processed":12299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2459.8,"last_update":"2026-03-21T21:30:48.869904576Z"} +2026/03/21 21:30:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:30:48.878982061Z"} +2026/03/21 21:30:53 [transform_engine] {"stage_name":"transform_engine","events_processed":410,"events_dropped":0,"avg_latency_ms":251.7488493108111,"throughput_eps":0,"last_update":"2026-03-21T21:30:49.043514636Z"} +2026/03/21 21:30:53 [detection_layer] {"stage_name":"detection_layer","events_processed":409,"events_dropped":0,"avg_latency_ms":19.553437683400166,"throughput_eps":0,"last_update":"2026-03-21T21:30:48.9662248Z"} +2026/03/21 21:30:53 ───────────────────────────────────────────────── +2026/03/21 21:30:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:30:58 [log_collector] {"stage_name":"log_collector","events_processed":19751,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3950.2,"last_update":"2026-03-21T21:30:58.869448129Z"} +2026/03/21 21:30:58 [metric_collector] {"stage_name":"metric_collector","events_processed":12304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2460.8,"last_update":"2026-03-21T21:30:53.869844515Z"} +2026/03/21 21:30:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:30:53.883459671Z"} +2026/03/21 21:30:58 [transform_engine] {"stage_name":"transform_engine","events_processed":410,"events_dropped":0,"avg_latency_ms":251.7488493108111,"throughput_eps":0,"last_update":"2026-03-21T21:30:53.96561785Z"} +2026/03/21 21:30:58 [detection_layer] {"stage_name":"detection_layer","events_processed":410,"events_dropped":0,"avg_latency_ms":19.767900746720134,"throughput_eps":0,"last_update":"2026-03-21T21:30:53.965598825Z"} +2026/03/21 21:30:58 ───────────────────────────────────────────────── +2026/03/21 21:31:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:31:03 [log_collector] {"stage_name":"log_collector","events_processed":19751,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3950.2,"last_update":"2026-03-21T21:30:58.869448129Z"} +2026/03/21 21:31:03 [metric_collector] {"stage_name":"metric_collector","events_processed":12309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2461.8,"last_update":"2026-03-21T21:30:58.869862273Z"} +2026/03/21 21:31:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:30:58.879155842Z"} +2026/03/21 21:31:03 [transform_engine] {"stage_name":"transform_engine","events_processed":410,"events_dropped":0,"avg_latency_ms":251.7488493108111,"throughput_eps":0,"last_update":"2026-03-21T21:30:58.96531756Z"} +2026/03/21 21:31:03 [detection_layer] {"stage_name":"detection_layer","events_processed":410,"events_dropped":0,"avg_latency_ms":19.767900746720134,"throughput_eps":0,"last_update":"2026-03-21T21:30:58.965306017Z"} +2026/03/21 21:31:03 ───────────────────────────────────────────────── +2026/03/21 21:31:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:31:08 [transform_engine] {"stage_name":"transform_engine","events_processed":410,"events_dropped":0,"avg_latency_ms":251.7488493108111,"throughput_eps":0,"last_update":"2026-03-21T21:31:03.965150925Z"} +2026/03/21 21:31:08 [detection_layer] {"stage_name":"detection_layer","events_processed":410,"events_dropped":0,"avg_latency_ms":19.767900746720134,"throughput_eps":0,"last_update":"2026-03-21T21:31:03.96622373Z"} +2026/03/21 21:31:08 [log_collector] {"stage_name":"log_collector","events_processed":19751,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3950.2,"last_update":"2026-03-21T21:31:03.870152162Z"} +2026/03/21 21:31:08 [metric_collector] {"stage_name":"metric_collector","events_processed":12314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2462.8,"last_update":"2026-03-21T21:31:03.870415757Z"} +2026/03/21 21:31:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:31:03.877057287Z"} +2026/03/21 21:31:08 ───────────────────────────────────────────────── +2026/03/21 21:31:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:31:13 [log_collector] {"stage_name":"log_collector","events_processed":19751,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3950.2,"last_update":"2026-03-21T21:31:08.870770212Z"} +2026/03/21 21:31:13 [metric_collector] {"stage_name":"metric_collector","events_processed":12319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2463.8,"last_update":"2026-03-21T21:31:08.871111745Z"} +2026/03/21 21:31:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4930,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:31:08.878775844Z"} +2026/03/21 21:31:13 [transform_engine] {"stage_name":"transform_engine","events_processed":410,"events_dropped":0,"avg_latency_ms":251.7488493108111,"throughput_eps":0,"last_update":"2026-03-21T21:31:08.965934391Z"} +2026/03/21 21:31:13 [detection_layer] {"stage_name":"detection_layer","events_processed":410,"events_dropped":0,"avg_latency_ms":19.767900746720134,"throughput_eps":0,"last_update":"2026-03-21T21:31:08.965922939Z"} +2026/03/21 21:31:13 ───────────────────────────────────────────────── +2026/03/21 21:31:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:31:18 [log_collector] {"stage_name":"log_collector","events_processed":19751,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3950.2,"last_update":"2026-03-21T21:31:13.869570127Z"} +2026/03/21 21:31:18 [metric_collector] {"stage_name":"metric_collector","events_processed":12324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2464.8,"last_update":"2026-03-21T21:31:13.869806318Z"} +2026/03/21 21:31:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:31:13.878075245Z"} +2026/03/21 21:31:18 [transform_engine] {"stage_name":"transform_engine","events_processed":410,"events_dropped":0,"avg_latency_ms":251.7488493108111,"throughput_eps":0,"last_update":"2026-03-21T21:31:13.965278919Z"} +2026/03/21 21:31:18 [detection_layer] {"stage_name":"detection_layer","events_processed":410,"events_dropped":0,"avg_latency_ms":19.767900746720134,"throughput_eps":0,"last_update":"2026-03-21T21:31:13.965269751Z"} +2026/03/21 21:31:18 ───────────────────────────────────────────────── +2026/03/21 21:31:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:31:23 [metric_collector] {"stage_name":"metric_collector","events_processed":12329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2465.8,"last_update":"2026-03-21T21:31:18.870169199Z"} +2026/03/21 21:31:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:31:18.876904398Z"} +2026/03/21 21:31:23 [transform_engine] {"stage_name":"transform_engine","events_processed":411,"events_dropped":0,"avg_latency_ms":240.1792396486489,"throughput_eps":0,"last_update":"2026-03-21T21:31:19.159995497Z"} +2026/03/21 21:31:23 [detection_layer] {"stage_name":"detection_layer","events_processed":410,"events_dropped":0,"avg_latency_ms":19.767900746720134,"throughput_eps":0,"last_update":"2026-03-21T21:31:18.966081711Z"} +2026/03/21 21:31:23 [log_collector] {"stage_name":"log_collector","events_processed":19751,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3950.2,"last_update":"2026-03-21T21:31:23.869687691Z"} +2026/03/21 21:31:23 ───────────────────────────────────────────────── +2026/03/21 21:31:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:31:28 [log_collector] {"stage_name":"log_collector","events_processed":19751,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3950.2,"last_update":"2026-03-21T21:31:28.869667067Z"} +2026/03/21 21:31:28 [metric_collector] {"stage_name":"metric_collector","events_processed":12339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2467.8,"last_update":"2026-03-21T21:31:28.869910554Z"} +2026/03/21 21:31:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:31:23.877220998Z"} +2026/03/21 21:31:28 [transform_engine] {"stage_name":"transform_engine","events_processed":411,"events_dropped":0,"avg_latency_ms":240.1792396486489,"throughput_eps":0,"last_update":"2026-03-21T21:31:23.965527184Z"} +2026/03/21 21:31:28 [detection_layer] {"stage_name":"detection_layer","events_processed":411,"events_dropped":0,"avg_latency_ms":17.96026059737611,"throughput_eps":0,"last_update":"2026-03-21T21:31:23.965549807Z"} +2026/03/21 21:31:28 ───────────────────────────────────────────────── +2026/03/21 21:31:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:31:33 [metric_collector] {"stage_name":"metric_collector","events_processed":12339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2467.8,"last_update":"2026-03-21T21:31:28.869910554Z"} +2026/03/21 21:31:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:31:28.876042818Z"} +2026/03/21 21:31:33 [transform_engine] {"stage_name":"transform_engine","events_processed":411,"events_dropped":0,"avg_latency_ms":240.1792396486489,"throughput_eps":0,"last_update":"2026-03-21T21:31:28.965154075Z"} +2026/03/21 21:31:33 [detection_layer] {"stage_name":"detection_layer","events_processed":411,"events_dropped":0,"avg_latency_ms":17.96026059737611,"throughput_eps":0,"last_update":"2026-03-21T21:31:28.96625866Z"} +2026/03/21 21:31:33 [log_collector] {"stage_name":"log_collector","events_processed":19751,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3950.2,"last_update":"2026-03-21T21:31:28.869667067Z"} +2026/03/21 21:31:33 ───────────────────────────────────────────────── +2026/03/21 21:31:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:31:38 [detection_layer] {"stage_name":"detection_layer","events_processed":411,"events_dropped":0,"avg_latency_ms":17.96026059737611,"throughput_eps":0,"last_update":"2026-03-21T21:31:33.965731607Z"} +2026/03/21 21:31:38 [log_collector] {"stage_name":"log_collector","events_processed":19762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3952.4,"last_update":"2026-03-21T21:31:38.869658932Z"} +2026/03/21 21:31:38 [metric_collector] {"stage_name":"metric_collector","events_processed":12344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2468.8,"last_update":"2026-03-21T21:31:33.86981773Z"} +2026/03/21 21:31:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4940,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:31:33.875472841Z"} +2026/03/21 21:31:38 [transform_engine] {"stage_name":"transform_engine","events_processed":411,"events_dropped":0,"avg_latency_ms":240.1792396486489,"throughput_eps":0,"last_update":"2026-03-21T21:31:33.965692622Z"} +2026/03/21 21:31:38 ───────────────────────────────────────────────── +2026/03/21 21:31:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:31:43 [log_collector] {"stage_name":"log_collector","events_processed":19762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3952.4,"last_update":"2026-03-21T21:31:38.869658932Z"} +2026/03/21 21:31:43 [metric_collector] {"stage_name":"metric_collector","events_processed":12349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2469.8,"last_update":"2026-03-21T21:31:38.86982003Z"} +2026/03/21 21:31:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:31:38.879997693Z"} +2026/03/21 21:31:43 [transform_engine] {"stage_name":"transform_engine","events_processed":411,"events_dropped":0,"avg_latency_ms":240.1792396486489,"throughput_eps":0,"last_update":"2026-03-21T21:31:38.965210703Z"} +2026/03/21 21:31:43 [detection_layer] {"stage_name":"detection_layer","events_processed":411,"events_dropped":0,"avg_latency_ms":17.96026059737611,"throughput_eps":0,"last_update":"2026-03-21T21:31:38.965283012Z"} +2026/03/21 21:31:43 ───────────────────────────────────────────────── +2026/03/21 21:31:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:31:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:31:43.876926636Z"} +2026/03/21 21:31:48 [transform_engine] {"stage_name":"transform_engine","events_processed":411,"events_dropped":0,"avg_latency_ms":240.1792396486489,"throughput_eps":0,"last_update":"2026-03-21T21:31:43.965799397Z"} +2026/03/21 21:31:48 [detection_layer] {"stage_name":"detection_layer","events_processed":411,"events_dropped":0,"avg_latency_ms":17.96026059737611,"throughput_eps":0,"last_update":"2026-03-21T21:31:43.965806951Z"} +2026/03/21 21:31:48 [log_collector] {"stage_name":"log_collector","events_processed":19929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3985.8,"last_update":"2026-03-21T21:31:43.869542975Z"} +2026/03/21 21:31:48 [metric_collector] {"stage_name":"metric_collector","events_processed":12354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2470.8,"last_update":"2026-03-21T21:31:43.869767055Z"} +2026/03/21 21:31:48 ───────────────────────────────────────────────── +2026/03/21 21:31:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:31:53 [transform_engine] {"stage_name":"transform_engine","events_processed":412,"events_dropped":0,"avg_latency_ms":530.6135983189191,"throughput_eps":0,"last_update":"2026-03-21T21:31:50.658481879Z"} +2026/03/21 21:31:53 [detection_layer] {"stage_name":"detection_layer","events_processed":411,"events_dropped":0,"avg_latency_ms":17.96026059737611,"throughput_eps":0,"last_update":"2026-03-21T21:31:48.966114695Z"} +2026/03/21 21:31:53 [log_collector] {"stage_name":"log_collector","events_processed":20109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4021.8,"last_update":"2026-03-21T21:31:48.87014859Z"} +2026/03/21 21:31:53 [metric_collector] {"stage_name":"metric_collector","events_processed":12359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2471.8,"last_update":"2026-03-21T21:31:48.870568123Z"} +2026/03/21 21:31:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:31:48.8778768Z"} +2026/03/21 21:31:53 ───────────────────────────────────────────────── +2026/03/21 21:31:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:31:58 [log_collector] {"stage_name":"log_collector","events_processed":20109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4021.8,"last_update":"2026-03-21T21:31:53.869588683Z"} +2026/03/21 21:31:58 [metric_collector] {"stage_name":"metric_collector","events_processed":12364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2472.8,"last_update":"2026-03-21T21:31:53.870145379Z"} +2026/03/21 21:31:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:31:53.877825197Z"} +2026/03/21 21:31:58 [transform_engine] {"stage_name":"transform_engine","events_processed":412,"events_dropped":0,"avg_latency_ms":530.6135983189191,"throughput_eps":0,"last_update":"2026-03-21T21:31:53.966064845Z"} +2026/03/21 21:31:58 [detection_layer] {"stage_name":"detection_layer","events_processed":412,"events_dropped":0,"avg_latency_ms":17.621505277900887,"throughput_eps":0,"last_update":"2026-03-21T21:31:53.966050016Z"} +2026/03/21 21:31:58 ───────────────────────────────────────────────── +2026/03/21 21:32:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:32:03 [log_collector] {"stage_name":"log_collector","events_processed":20109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4021.8,"last_update":"2026-03-21T21:31:58.869434575Z"} +2026/03/21 21:32:03 [metric_collector] {"stage_name":"metric_collector","events_processed":12369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2473.8,"last_update":"2026-03-21T21:31:58.869848798Z"} +2026/03/21 21:32:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:31:58.87869502Z"} +2026/03/21 21:32:03 [transform_engine] {"stage_name":"transform_engine","events_processed":412,"events_dropped":0,"avg_latency_ms":530.6135983189191,"throughput_eps":0,"last_update":"2026-03-21T21:31:58.965885558Z"} +2026/03/21 21:32:03 [detection_layer] {"stage_name":"detection_layer","events_processed":412,"events_dropped":0,"avg_latency_ms":17.621505277900887,"throughput_eps":0,"last_update":"2026-03-21T21:31:58.965873755Z"} +2026/03/21 21:32:03 ───────────────────────────────────────────────── +2026/03/21 21:32:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:32:08 [log_collector] {"stage_name":"log_collector","events_processed":20109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4021.8,"last_update":"2026-03-21T21:32:03.869411297Z"} +2026/03/21 21:32:08 [metric_collector] {"stage_name":"metric_collector","events_processed":12374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2474.8,"last_update":"2026-03-21T21:32:03.869729116Z"} +2026/03/21 21:32:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:32:03.876591028Z"} +2026/03/21 21:32:08 [transform_engine] {"stage_name":"transform_engine","events_processed":412,"events_dropped":0,"avg_latency_ms":530.6135983189191,"throughput_eps":0,"last_update":"2026-03-21T21:32:03.965795784Z"} +2026/03/21 21:32:08 [detection_layer] {"stage_name":"detection_layer","events_processed":412,"events_dropped":0,"avg_latency_ms":17.621505277900887,"throughput_eps":0,"last_update":"2026-03-21T21:32:03.965783971Z"} +2026/03/21 21:32:08 ───────────────────────────────────────────────── +2026/03/21 21:32:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:32:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:32:08.87644819Z"} +2026/03/21 21:32:13 [transform_engine] {"stage_name":"transform_engine","events_processed":412,"events_dropped":0,"avg_latency_ms":530.6135983189191,"throughput_eps":0,"last_update":"2026-03-21T21:32:08.965676861Z"} +2026/03/21 21:32:13 [detection_layer] {"stage_name":"detection_layer","events_processed":412,"events_dropped":0,"avg_latency_ms":17.621505277900887,"throughput_eps":0,"last_update":"2026-03-21T21:32:08.965662965Z"} +2026/03/21 21:32:13 [log_collector] {"stage_name":"log_collector","events_processed":20109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4021.8,"last_update":"2026-03-21T21:32:08.870056508Z"} +2026/03/21 21:32:13 [metric_collector] {"stage_name":"metric_collector","events_processed":12379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2475.8,"last_update":"2026-03-21T21:32:08.870446675Z"} +2026/03/21 21:32:13 ───────────────────────────────────────────────── +2026/03/21 21:32:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:32:18 [log_collector] {"stage_name":"log_collector","events_processed":20109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4021.8,"last_update":"2026-03-21T21:32:13.870185421Z"} +2026/03/21 21:32:18 [metric_collector] {"stage_name":"metric_collector","events_processed":12384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2476.8,"last_update":"2026-03-21T21:32:13.870546342Z"} +2026/03/21 21:32:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:32:13.879299887Z"} +2026/03/21 21:32:18 [transform_engine] {"stage_name":"transform_engine","events_processed":412,"events_dropped":0,"avg_latency_ms":530.6135983189191,"throughput_eps":0,"last_update":"2026-03-21T21:32:13.965511982Z"} +2026/03/21 21:32:18 [detection_layer] {"stage_name":"detection_layer","events_processed":412,"events_dropped":0,"avg_latency_ms":17.621505277900887,"throughput_eps":0,"last_update":"2026-03-21T21:32:13.96550062Z"} +2026/03/21 21:32:18 ───────────────────────────────────────────────── +2026/03/21 21:32:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:32:23 [log_collector] {"stage_name":"log_collector","events_processed":20109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4021.8,"last_update":"2026-03-21T21:32:18.869637899Z"} +2026/03/21 21:32:23 [metric_collector] {"stage_name":"metric_collector","events_processed":12389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2477.8,"last_update":"2026-03-21T21:32:18.869840026Z"} +2026/03/21 21:32:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4958,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:32:18.87867147Z"} +2026/03/21 21:32:23 [transform_engine] {"stage_name":"transform_engine","events_processed":413,"events_dropped":0,"avg_latency_ms":438.8912584551353,"throughput_eps":0,"last_update":"2026-03-21T21:32:19.0379747Z"} +2026/03/21 21:32:23 [detection_layer] {"stage_name":"detection_layer","events_processed":412,"events_dropped":0,"avg_latency_ms":17.621505277900887,"throughput_eps":0,"last_update":"2026-03-21T21:32:18.965958614Z"} +2026/03/21 21:32:23 ───────────────────────────────────────────────── +2026/03/21 21:32:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:32:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:32:23.879698013Z"} +2026/03/21 21:32:28 [transform_engine] {"stage_name":"transform_engine","events_processed":413,"events_dropped":0,"avg_latency_ms":438.8912584551353,"throughput_eps":0,"last_update":"2026-03-21T21:32:23.966013746Z"} +2026/03/21 21:32:28 [detection_layer] {"stage_name":"detection_layer","events_processed":413,"events_dropped":0,"avg_latency_ms":18.299346022320712,"throughput_eps":0,"last_update":"2026-03-21T21:32:23.965998216Z"} +2026/03/21 21:32:28 [log_collector] {"stage_name":"log_collector","events_processed":20109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4021.8,"last_update":"2026-03-21T21:32:23.869540058Z"} +2026/03/21 21:32:28 [metric_collector] {"stage_name":"metric_collector","events_processed":12394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2478.8,"last_update":"2026-03-21T21:32:23.86976037Z"} +2026/03/21 21:32:28 ───────────────────────────────────────────────── +2026/03/21 21:32:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:32:33 [log_collector] {"stage_name":"log_collector","events_processed":20109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4021.8,"last_update":"2026-03-21T21:32:28.869473777Z"} +2026/03/21 21:32:33 [metric_collector] {"stage_name":"metric_collector","events_processed":12399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2479.8,"last_update":"2026-03-21T21:32:28.869841862Z"} +2026/03/21 21:32:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4962,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:32:28.87817888Z"} +2026/03/21 21:32:33 [transform_engine] {"stage_name":"transform_engine","events_processed":413,"events_dropped":0,"avg_latency_ms":438.8912584551353,"throughput_eps":0,"last_update":"2026-03-21T21:32:28.965387553Z"} +2026/03/21 21:32:33 [detection_layer] {"stage_name":"detection_layer","events_processed":413,"events_dropped":0,"avg_latency_ms":18.299346022320712,"throughput_eps":0,"last_update":"2026-03-21T21:32:28.965378766Z"} +2026/03/21 21:32:33 ───────────────────────────────────────────────── +2026/03/21 21:32:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:32:38 [metric_collector] {"stage_name":"metric_collector","events_processed":12404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2480.8,"last_update":"2026-03-21T21:32:33.870709841Z"} +2026/03/21 21:32:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:32:33.879050846Z"} +2026/03/21 21:32:38 [transform_engine] {"stage_name":"transform_engine","events_processed":413,"events_dropped":0,"avg_latency_ms":438.8912584551353,"throughput_eps":0,"last_update":"2026-03-21T21:32:33.965161737Z"} +2026/03/21 21:32:38 [detection_layer] {"stage_name":"detection_layer","events_processed":413,"events_dropped":0,"avg_latency_ms":18.299346022320712,"throughput_eps":0,"last_update":"2026-03-21T21:32:33.966282012Z"} +2026/03/21 21:32:38 [log_collector] {"stage_name":"log_collector","events_processed":20109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4021.8,"last_update":"2026-03-21T21:32:33.870219632Z"} +2026/03/21 21:32:38 ───────────────────────────────────────────────── +2026/03/21 21:32:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:32:43 [log_collector] {"stage_name":"log_collector","events_processed":20109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4021.8,"last_update":"2026-03-21T21:32:38.869758104Z"} +2026/03/21 21:32:43 [metric_collector] {"stage_name":"metric_collector","events_processed":12409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2481.8,"last_update":"2026-03-21T21:32:38.86984496Z"} +2026/03/21 21:32:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:32:38.878502913Z"} +2026/03/21 21:32:43 [transform_engine] {"stage_name":"transform_engine","events_processed":413,"events_dropped":0,"avg_latency_ms":438.8912584551353,"throughput_eps":0,"last_update":"2026-03-21T21:32:38.965942517Z"} +2026/03/21 21:32:43 [detection_layer] {"stage_name":"detection_layer","events_processed":413,"events_dropped":0,"avg_latency_ms":18.299346022320712,"throughput_eps":0,"last_update":"2026-03-21T21:32:38.965929863Z"} +2026/03/21 21:32:43 ───────────────────────────────────────────────── +2026/03/21 21:32:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:32:48 [detection_layer] {"stage_name":"detection_layer","events_processed":413,"events_dropped":0,"avg_latency_ms":18.299346022320712,"throughput_eps":0,"last_update":"2026-03-21T21:32:43.965695572Z"} +2026/03/21 21:32:48 [log_collector] {"stage_name":"log_collector","events_processed":20109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4021.8,"last_update":"2026-03-21T21:32:43.869565934Z"} +2026/03/21 21:32:48 [metric_collector] {"stage_name":"metric_collector","events_processed":12414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2482.8,"last_update":"2026-03-21T21:32:43.869884433Z"} +2026/03/21 21:32:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:32:43.87838303Z"} +2026/03/21 21:32:48 [transform_engine] {"stage_name":"transform_engine","events_processed":413,"events_dropped":0,"avg_latency_ms":438.8912584551353,"throughput_eps":0,"last_update":"2026-03-21T21:32:43.965587615Z"} +2026/03/21 21:32:48 ───────────────────────────────────────────────── +2026/03/21 21:32:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:32:53 [log_collector] {"stage_name":"log_collector","events_processed":20109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4021.8,"last_update":"2026-03-21T21:32:48.869563476Z"} +2026/03/21 21:32:53 [metric_collector] {"stage_name":"metric_collector","events_processed":12419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2483.8,"last_update":"2026-03-21T21:32:48.870010823Z"} +2026/03/21 21:32:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4970,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:32:48.879044293Z"} +2026/03/21 21:32:53 [transform_engine] {"stage_name":"transform_engine","events_processed":413,"events_dropped":0,"avg_latency_ms":438.8912584551353,"throughput_eps":0,"last_update":"2026-03-21T21:32:48.965251168Z"} +2026/03/21 21:32:53 [detection_layer] {"stage_name":"detection_layer","events_processed":413,"events_dropped":0,"avg_latency_ms":18.299346022320712,"throughput_eps":0,"last_update":"2026-03-21T21:32:48.965337784Z"} +2026/03/21 21:32:53 ───────────────────────────────────────────────── +2026/03/21 21:32:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:32:58 [transform_engine] {"stage_name":"transform_engine","events_processed":414,"events_dropped":0,"avg_latency_ms":367.51633276410826,"throughput_eps":0,"last_update":"2026-03-21T21:32:53.965803304Z"} +2026/03/21 21:32:58 [detection_layer] {"stage_name":"detection_layer","events_processed":414,"events_dropped":0,"avg_latency_ms":18.73001301785657,"throughput_eps":0,"last_update":"2026-03-21T21:32:53.965914507Z"} +2026/03/21 21:32:58 [log_collector] {"stage_name":"log_collector","events_processed":20109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4021.8,"last_update":"2026-03-21T21:32:53.869449115Z"} +2026/03/21 21:32:58 [metric_collector] {"stage_name":"metric_collector","events_processed":12424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2484.8,"last_update":"2026-03-21T21:32:53.870086115Z"} +2026/03/21 21:32:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:32:53.879470308Z"} +2026/03/21 21:32:58 ───────────────────────────────────────────────── +2026/03/21 21:33:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:33:03 [log_collector] {"stage_name":"log_collector","events_processed":20109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4021.8,"last_update":"2026-03-21T21:32:58.869426519Z"} +2026/03/21 21:33:03 [metric_collector] {"stage_name":"metric_collector","events_processed":12429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2485.8,"last_update":"2026-03-21T21:32:58.869899826Z"} +2026/03/21 21:33:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:32:58.878777919Z"} +2026/03/21 21:33:03 [transform_engine] {"stage_name":"transform_engine","events_processed":414,"events_dropped":0,"avg_latency_ms":367.51633276410826,"throughput_eps":0,"last_update":"2026-03-21T21:32:58.966316855Z"} +2026/03/21 21:33:03 [detection_layer] {"stage_name":"detection_layer","events_processed":414,"events_dropped":0,"avg_latency_ms":18.73001301785657,"throughput_eps":0,"last_update":"2026-03-21T21:32:58.966203157Z"} +2026/03/21 21:33:03 ───────────────────────────────────────────────── +2026/03/21 21:33:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:33:08 [log_collector] {"stage_name":"log_collector","events_processed":20109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4021.8,"last_update":"2026-03-21T21:33:03.870203455Z"} +2026/03/21 21:33:08 [metric_collector] {"stage_name":"metric_collector","events_processed":12434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2486.8,"last_update":"2026-03-21T21:33:03.870609011Z"} +2026/03/21 21:33:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:33:03.879129299Z"} +2026/03/21 21:33:08 [transform_engine] {"stage_name":"transform_engine","events_processed":414,"events_dropped":0,"avg_latency_ms":367.51633276410826,"throughput_eps":0,"last_update":"2026-03-21T21:33:03.965379487Z"} +2026/03/21 21:33:08 [detection_layer] {"stage_name":"detection_layer","events_processed":414,"events_dropped":0,"avg_latency_ms":18.73001301785657,"throughput_eps":0,"last_update":"2026-03-21T21:33:03.965331966Z"} +2026/03/21 21:33:08 ───────────────────────────────────────────────── +2026/03/21 21:33:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:33:13 [log_collector] {"stage_name":"log_collector","events_processed":20109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4021.8,"last_update":"2026-03-21T21:33:08.869865745Z"} +2026/03/21 21:33:13 [metric_collector] {"stage_name":"metric_collector","events_processed":12439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2487.8,"last_update":"2026-03-21T21:33:08.870091157Z"} +2026/03/21 21:33:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:33:08.878840324Z"} +2026/03/21 21:33:13 [transform_engine] {"stage_name":"transform_engine","events_processed":414,"events_dropped":0,"avg_latency_ms":367.51633276410826,"throughput_eps":0,"last_update":"2026-03-21T21:33:08.96612884Z"} +2026/03/21 21:33:13 [detection_layer] {"stage_name":"detection_layer","events_processed":414,"events_dropped":0,"avg_latency_ms":18.73001301785657,"throughput_eps":0,"last_update":"2026-03-21T21:33:08.966067162Z"} +2026/03/21 21:33:13 ───────────────────────────────────────────────── +2026/03/21 21:33:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:33:18 [detection_layer] {"stage_name":"detection_layer","events_processed":414,"events_dropped":0,"avg_latency_ms":18.73001301785657,"throughput_eps":0,"last_update":"2026-03-21T21:33:13.965844614Z"} +2026/03/21 21:33:18 [log_collector] {"stage_name":"log_collector","events_processed":20109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4021.8,"last_update":"2026-03-21T21:33:13.869799647Z"} +2026/03/21 21:33:18 [metric_collector] {"stage_name":"metric_collector","events_processed":12444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2488.8,"last_update":"2026-03-21T21:33:13.870215654Z"} +2026/03/21 21:33:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:33:13.878486705Z"} +2026/03/21 21:33:18 [transform_engine] {"stage_name":"transform_engine","events_processed":414,"events_dropped":0,"avg_latency_ms":367.51633276410826,"throughput_eps":0,"last_update":"2026-03-21T21:33:13.965881574Z"} +2026/03/21 21:33:18 ───────────────────────────────────────────────── +Saved state: 12 clusters, 20110 messages, reason: none +2026/03/21 21:33:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:33:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:33:18.880594959Z"} +2026/03/21 21:33:23 [transform_engine] {"stage_name":"transform_engine","events_processed":414,"events_dropped":0,"avg_latency_ms":367.51633276410826,"throughput_eps":0,"last_update":"2026-03-21T21:33:18.965782342Z"} +2026/03/21 21:33:23 [detection_layer] {"stage_name":"detection_layer","events_processed":414,"events_dropped":0,"avg_latency_ms":18.73001301785657,"throughput_eps":0,"last_update":"2026-03-21T21:33:18.965897672Z"} +2026/03/21 21:33:23 [log_collector] {"stage_name":"log_collector","events_processed":20109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4021.8,"last_update":"2026-03-21T21:33:18.870261518Z"} +2026/03/21 21:33:23 [metric_collector] {"stage_name":"metric_collector","events_processed":12449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2489.8,"last_update":"2026-03-21T21:33:18.870795531Z"} +2026/03/21 21:33:23 ───────────────────────────────────────────────── +2026/03/21 21:33:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:33:28 [log_collector] {"stage_name":"log_collector","events_processed":20112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4022.4,"last_update":"2026-03-21T21:33:23.869470201Z"} +2026/03/21 21:33:28 [metric_collector] {"stage_name":"metric_collector","events_processed":12454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2490.8,"last_update":"2026-03-21T21:33:23.869672869Z"} +2026/03/21 21:33:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:33:23.880890824Z"} +2026/03/21 21:33:28 [transform_engine] {"stage_name":"transform_engine","events_processed":415,"events_dropped":0,"avg_latency_ms":308.56443321128666,"throughput_eps":0,"last_update":"2026-03-21T21:33:23.96613801Z"} +2026/03/21 21:33:28 [detection_layer] {"stage_name":"detection_layer","events_processed":415,"events_dropped":0,"avg_latency_ms":19.62963581428526,"throughput_eps":0,"last_update":"2026-03-21T21:33:23.96611192Z"} +2026/03/21 21:33:28 ───────────────────────────────────────────────── +2026/03/21 21:33:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:33:33 [transform_engine] {"stage_name":"transform_engine","events_processed":415,"events_dropped":0,"avg_latency_ms":308.56443321128666,"throughput_eps":0,"last_update":"2026-03-21T21:33:28.966124103Z"} +2026/03/21 21:33:33 [detection_layer] {"stage_name":"detection_layer","events_processed":415,"events_dropped":0,"avg_latency_ms":19.62963581428526,"throughput_eps":0,"last_update":"2026-03-21T21:33:28.966108352Z"} +2026/03/21 21:33:33 [log_collector] {"stage_name":"log_collector","events_processed":20122,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4024.4,"last_update":"2026-03-21T21:33:28.870271795Z"} +2026/03/21 21:33:33 [metric_collector] {"stage_name":"metric_collector","events_processed":12459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2491.8,"last_update":"2026-03-21T21:33:28.870529639Z"} +2026/03/21 21:33:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:33:28.876773768Z"} +2026/03/21 21:33:33 ───────────────────────────────────────────────── +2026/03/21 21:33:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:33:38 [log_collector] {"stage_name":"log_collector","events_processed":20137,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4027.4,"last_update":"2026-03-21T21:33:33.870612436Z"} +2026/03/21 21:33:38 [metric_collector] {"stage_name":"metric_collector","events_processed":12464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2492.8,"last_update":"2026-03-21T21:33:33.8707652Z"} +2026/03/21 21:33:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:33:33.878617568Z"} +2026/03/21 21:33:38 [transform_engine] {"stage_name":"transform_engine","events_processed":415,"events_dropped":0,"avg_latency_ms":308.56443321128666,"throughput_eps":0,"last_update":"2026-03-21T21:33:33.965924108Z"} +2026/03/21 21:33:38 [detection_layer] {"stage_name":"detection_layer","events_processed":415,"events_dropped":0,"avg_latency_ms":19.62963581428526,"throughput_eps":0,"last_update":"2026-03-21T21:33:33.965907447Z"} +2026/03/21 21:33:38 ───────────────────────────────────────────────── +2026/03/21 21:33:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:33:43 [log_collector] {"stage_name":"log_collector","events_processed":20139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4027.8,"last_update":"2026-03-21T21:33:38.869418349Z"} +2026/03/21 21:33:43 [metric_collector] {"stage_name":"metric_collector","events_processed":12469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2493.8,"last_update":"2026-03-21T21:33:38.86973223Z"} +2026/03/21 21:33:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4990,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:33:38.878841496Z"} +2026/03/21 21:33:43 [transform_engine] {"stage_name":"transform_engine","events_processed":415,"events_dropped":0,"avg_latency_ms":308.56443321128666,"throughput_eps":0,"last_update":"2026-03-21T21:33:38.966058796Z"} +2026/03/21 21:33:43 [detection_layer] {"stage_name":"detection_layer","events_processed":415,"events_dropped":0,"avg_latency_ms":19.62963581428526,"throughput_eps":0,"last_update":"2026-03-21T21:33:38.966045761Z"} +2026/03/21 21:33:43 ───────────────────────────────────────────────── +2026/03/21 21:33:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:33:48 [transform_engine] {"stage_name":"transform_engine","events_processed":415,"events_dropped":0,"avg_latency_ms":308.56443321128666,"throughput_eps":0,"last_update":"2026-03-21T21:33:43.965595678Z"} +2026/03/21 21:33:48 [detection_layer] {"stage_name":"detection_layer","events_processed":415,"events_dropped":0,"avg_latency_ms":19.62963581428526,"throughput_eps":0,"last_update":"2026-03-21T21:33:43.965585498Z"} +2026/03/21 21:33:48 [log_collector] {"stage_name":"log_collector","events_processed":20152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4030.4,"last_update":"2026-03-21T21:33:43.870501402Z"} +2026/03/21 21:33:48 [metric_collector] {"stage_name":"metric_collector","events_processed":12474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2494.8,"last_update":"2026-03-21T21:33:43.870737664Z"} +2026/03/21 21:33:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4992,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:33:43.877344117Z"} +2026/03/21 21:33:48 ───────────────────────────────────────────────── +2026/03/21 21:33:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:33:53 [log_collector] {"stage_name":"log_collector","events_processed":20153,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4030.6,"last_update":"2026-03-21T21:33:48.870195364Z"} +2026/03/21 21:33:53 [metric_collector] {"stage_name":"metric_collector","events_processed":12479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2495.8,"last_update":"2026-03-21T21:33:48.870635436Z"} +2026/03/21 21:33:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:33:48.878748977Z"} +2026/03/21 21:33:53 [transform_engine] {"stage_name":"transform_engine","events_processed":416,"events_dropped":0,"avg_latency_ms":271.65559576902933,"throughput_eps":0,"last_update":"2026-03-21T21:33:49.090023132Z"} +2026/03/21 21:33:53 [detection_layer] {"stage_name":"detection_layer","events_processed":415,"events_dropped":0,"avg_latency_ms":19.62963581428526,"throughput_eps":0,"last_update":"2026-03-21T21:33:48.965985844Z"} +2026/03/21 21:33:53 ───────────────────────────────────────────────── +2026/03/21 21:33:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:33:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4996,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:33:53.879451309Z"} +2026/03/21 21:33:58 [transform_engine] {"stage_name":"transform_engine","events_processed":416,"events_dropped":0,"avg_latency_ms":271.65559576902933,"throughput_eps":0,"last_update":"2026-03-21T21:33:53.965878566Z"} +2026/03/21 21:33:58 [detection_layer] {"stage_name":"detection_layer","events_processed":416,"events_dropped":0,"avg_latency_ms":19.131505651428206,"throughput_eps":0,"last_update":"2026-03-21T21:33:53.966007734Z"} +2026/03/21 21:33:58 [log_collector] {"stage_name":"log_collector","events_processed":20153,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4030.6,"last_update":"2026-03-21T21:33:53.869977255Z"} +2026/03/21 21:33:58 [metric_collector] {"stage_name":"metric_collector","events_processed":12484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2496.8,"last_update":"2026-03-21T21:33:53.870598254Z"} +2026/03/21 21:33:58 ───────────────────────────────────────────────── +2026/03/21 21:34:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:34:03 [log_collector] {"stage_name":"log_collector","events_processed":20153,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4030.6,"last_update":"2026-03-21T21:34:03.869412773Z"} +2026/03/21 21:34:03 [metric_collector] {"stage_name":"metric_collector","events_processed":12489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2497.8,"last_update":"2026-03-21T21:33:58.869790617Z"} +2026/03/21 21:34:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:33:58.878716853Z"} +2026/03/21 21:34:03 [transform_engine] {"stage_name":"transform_engine","events_processed":416,"events_dropped":0,"avg_latency_ms":271.65559576902933,"throughput_eps":0,"last_update":"2026-03-21T21:33:58.966069452Z"} +2026/03/21 21:34:03 [detection_layer] {"stage_name":"detection_layer","events_processed":416,"events_dropped":0,"avg_latency_ms":19.131505651428206,"throughput_eps":0,"last_update":"2026-03-21T21:33:58.96599016Z"} +2026/03/21 21:34:03 ───────────────────────────────────────────────── +2026/03/21 21:34:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:34:08 [metric_collector] {"stage_name":"metric_collector","events_processed":12494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2498.8,"last_update":"2026-03-21T21:34:03.869966705Z"} +2026/03/21 21:34:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:34:03.878244458Z"} +2026/03/21 21:34:08 [transform_engine] {"stage_name":"transform_engine","events_processed":416,"events_dropped":0,"avg_latency_ms":271.65559576902933,"throughput_eps":0,"last_update":"2026-03-21T21:34:03.965507856Z"} +2026/03/21 21:34:08 [detection_layer] {"stage_name":"detection_layer","events_processed":416,"events_dropped":0,"avg_latency_ms":19.131505651428206,"throughput_eps":0,"last_update":"2026-03-21T21:34:03.965619369Z"} +2026/03/21 21:34:08 [log_collector] {"stage_name":"log_collector","events_processed":20153,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4030.6,"last_update":"2026-03-21T21:34:03.869412773Z"} +2026/03/21 21:34:08 ───────────────────────────────────────────────── +2026/03/21 21:34:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:34:13 [transform_engine] {"stage_name":"transform_engine","events_processed":416,"events_dropped":0,"avg_latency_ms":271.65559576902933,"throughput_eps":0,"last_update":"2026-03-21T21:34:08.96603781Z"} +2026/03/21 21:34:13 [detection_layer] {"stage_name":"detection_layer","events_processed":416,"events_dropped":0,"avg_latency_ms":19.131505651428206,"throughput_eps":0,"last_update":"2026-03-21T21:34:08.965986702Z"} +2026/03/21 21:34:13 [log_collector] {"stage_name":"log_collector","events_processed":20153,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4030.6,"last_update":"2026-03-21T21:34:13.869714321Z"} +2026/03/21 21:34:13 [metric_collector] {"stage_name":"metric_collector","events_processed":12499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2499.8,"last_update":"2026-03-21T21:34:08.870126569Z"} +2026/03/21 21:34:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:34:08.878798328Z"} +2026/03/21 21:34:13 ───────────────────────────────────────────────── +2026/03/21 21:34:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:34:18 [metric_collector] {"stage_name":"metric_collector","events_processed":12504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2500.8,"last_update":"2026-03-21T21:34:13.870062938Z"} +2026/03/21 21:34:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:34:13.879196962Z"} +2026/03/21 21:34:18 [transform_engine] {"stage_name":"transform_engine","events_processed":416,"events_dropped":0,"avg_latency_ms":271.65559576902933,"throughput_eps":0,"last_update":"2026-03-21T21:34:13.965478469Z"} +2026/03/21 21:34:18 [detection_layer] {"stage_name":"detection_layer","events_processed":416,"events_dropped":0,"avg_latency_ms":19.131505651428206,"throughput_eps":0,"last_update":"2026-03-21T21:34:13.965554345Z"} +2026/03/21 21:34:18 [log_collector] {"stage_name":"log_collector","events_processed":20153,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4030.6,"last_update":"2026-03-21T21:34:18.869406572Z"} +2026/03/21 21:34:18 ───────────────────────────────────────────────── +2026/03/21 21:34:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:34:23 [log_collector] {"stage_name":"log_collector","events_processed":20153,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4030.6,"last_update":"2026-03-21T21:34:18.869406572Z"} +2026/03/21 21:34:23 [metric_collector] {"stage_name":"metric_collector","events_processed":12509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2501.8,"last_update":"2026-03-21T21:34:18.869867966Z"} +2026/03/21 21:34:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5006,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:34:18.878593336Z"} +2026/03/21 21:34:23 [transform_engine] {"stage_name":"transform_engine","events_processed":416,"events_dropped":0,"avg_latency_ms":271.65559576902933,"throughput_eps":0,"last_update":"2026-03-21T21:34:18.965773245Z"} +2026/03/21 21:34:23 [detection_layer] {"stage_name":"detection_layer","events_processed":416,"events_dropped":0,"avg_latency_ms":19.131505651428206,"throughput_eps":0,"last_update":"2026-03-21T21:34:18.965821347Z"} +2026/03/21 21:34:23 ───────────────────────────────────────────────── +2026/03/21 21:34:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:34:28 [transform_engine] {"stage_name":"transform_engine","events_processed":417,"events_dropped":0,"avg_latency_ms":236.0448078152235,"throughput_eps":0,"last_update":"2026-03-21T21:34:23.965634548Z"} +2026/03/21 21:34:28 [detection_layer] {"stage_name":"detection_layer","events_processed":417,"events_dropped":0,"avg_latency_ms":19.325059321142565,"throughput_eps":0,"last_update":"2026-03-21T21:34:23.965523405Z"} +2026/03/21 21:34:28 [log_collector] {"stage_name":"log_collector","events_processed":20153,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4030.6,"last_update":"2026-03-21T21:34:23.869686297Z"} +2026/03/21 21:34:28 [metric_collector] {"stage_name":"metric_collector","events_processed":12514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2502.8,"last_update":"2026-03-21T21:34:23.870224458Z"} +2026/03/21 21:34:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5008,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:34:23.879145924Z"} +2026/03/21 21:34:28 ───────────────────────────────────────────────── +2026/03/21 21:34:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:34:33 [log_collector] {"stage_name":"log_collector","events_processed":20153,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4030.6,"last_update":"2026-03-21T21:34:28.869629959Z"} +2026/03/21 21:34:33 [metric_collector] {"stage_name":"metric_collector","events_processed":12519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2503.8,"last_update":"2026-03-21T21:34:28.869853167Z"} +2026/03/21 21:34:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:34:28.878670554Z"} +2026/03/21 21:34:33 [transform_engine] {"stage_name":"transform_engine","events_processed":417,"events_dropped":0,"avg_latency_ms":236.0448078152235,"throughput_eps":0,"last_update":"2026-03-21T21:34:28.965846025Z"} +2026/03/21 21:34:33 [detection_layer] {"stage_name":"detection_layer","events_processed":417,"events_dropped":0,"avg_latency_ms":19.325059321142565,"throughput_eps":0,"last_update":"2026-03-21T21:34:28.965878146Z"} +2026/03/21 21:34:33 ───────────────────────────────────────────────── +2026/03/21 21:34:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:34:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5012,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:34:33.87827629Z"} +2026/03/21 21:34:38 [transform_engine] {"stage_name":"transform_engine","events_processed":417,"events_dropped":0,"avg_latency_ms":236.0448078152235,"throughput_eps":0,"last_update":"2026-03-21T21:34:33.965616715Z"} +2026/03/21 21:34:38 [detection_layer] {"stage_name":"detection_layer","events_processed":417,"events_dropped":0,"avg_latency_ms":19.325059321142565,"throughput_eps":0,"last_update":"2026-03-21T21:34:33.965644258Z"} +2026/03/21 21:34:38 [log_collector] {"stage_name":"log_collector","events_processed":20153,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4030.6,"last_update":"2026-03-21T21:34:33.86977103Z"} +2026/03/21 21:34:38 [metric_collector] {"stage_name":"metric_collector","events_processed":12524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2504.8,"last_update":"2026-03-21T21:34:33.869792441Z"} +2026/03/21 21:34:38 ───────────────────────────────────────────────── +2026/03/21 21:34:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:34:43 [metric_collector] {"stage_name":"metric_collector","events_processed":12529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2505.8,"last_update":"2026-03-21T21:34:38.870425063Z"} +2026/03/21 21:34:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:34:38.879506335Z"} +2026/03/21 21:34:43 [transform_engine] {"stage_name":"transform_engine","events_processed":417,"events_dropped":0,"avg_latency_ms":236.0448078152235,"throughput_eps":0,"last_update":"2026-03-21T21:34:38.965827489Z"} +2026/03/21 21:34:43 [detection_layer] {"stage_name":"detection_layer","events_processed":417,"events_dropped":0,"avg_latency_ms":19.325059321142565,"throughput_eps":0,"last_update":"2026-03-21T21:34:38.965954813Z"} +2026/03/21 21:34:43 [log_collector] {"stage_name":"log_collector","events_processed":20153,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4030.6,"last_update":"2026-03-21T21:34:38.870036729Z"} +2026/03/21 21:34:43 ───────────────────────────────────────────────── +Saved state: 12 clusters, 20154 messages, reason: none +2026/03/21 21:34:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:34:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:34:43.878890525Z"} +2026/03/21 21:34:48 [transform_engine] {"stage_name":"transform_engine","events_processed":417,"events_dropped":0,"avg_latency_ms":236.0448078152235,"throughput_eps":0,"last_update":"2026-03-21T21:34:43.966115169Z"} +2026/03/21 21:34:48 [detection_layer] {"stage_name":"detection_layer","events_processed":417,"events_dropped":0,"avg_latency_ms":19.325059321142565,"throughput_eps":0,"last_update":"2026-03-21T21:34:43.96608415Z"} +2026/03/21 21:34:48 [log_collector] {"stage_name":"log_collector","events_processed":20158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4031.6,"last_update":"2026-03-21T21:34:48.870181435Z"} +2026/03/21 21:34:48 [metric_collector] {"stage_name":"metric_collector","events_processed":12534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2506.8,"last_update":"2026-03-21T21:34:43.869764577Z"} +2026/03/21 21:34:48 ───────────────────────────────────────────────── +2026/03/21 21:34:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:34:53 [transform_engine] {"stage_name":"transform_engine","events_processed":418,"events_dropped":0,"avg_latency_ms":211.3633832521788,"throughput_eps":0,"last_update":"2026-03-21T21:34:49.078451076Z"} +2026/03/21 21:34:53 [detection_layer] {"stage_name":"detection_layer","events_processed":417,"events_dropped":0,"avg_latency_ms":19.325059321142565,"throughput_eps":0,"last_update":"2026-03-21T21:34:48.965799845Z"} +2026/03/21 21:34:53 [log_collector] {"stage_name":"log_collector","events_processed":20158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4031.6,"last_update":"2026-03-21T21:34:53.869889937Z"} +2026/03/21 21:34:53 [metric_collector] {"stage_name":"metric_collector","events_processed":12539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2507.8,"last_update":"2026-03-21T21:34:48.870477382Z"} +2026/03/21 21:34:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5018,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:34:48.883657244Z"} +2026/03/21 21:34:53 ───────────────────────────────────────────────── +2026/03/21 21:34:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:34:58 [transform_engine] {"stage_name":"transform_engine","events_processed":418,"events_dropped":0,"avg_latency_ms":211.3633832521788,"throughput_eps":0,"last_update":"2026-03-21T21:34:53.965602918Z"} +2026/03/21 21:34:58 [detection_layer] {"stage_name":"detection_layer","events_processed":418,"events_dropped":0,"avg_latency_ms":17.975944056914052,"throughput_eps":0,"last_update":"2026-03-21T21:34:53.965635541Z"} +2026/03/21 21:34:58 [log_collector] {"stage_name":"log_collector","events_processed":20158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4031.6,"last_update":"2026-03-21T21:34:53.869889937Z"} +2026/03/21 21:34:58 [metric_collector] {"stage_name":"metric_collector","events_processed":12549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2509.8,"last_update":"2026-03-21T21:34:58.869709541Z"} +2026/03/21 21:34:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5020,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:34:53.883415451Z"} +2026/03/21 21:34:58 ───────────────────────────────────────────────── +2026/03/21 21:35:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:35:03 [metric_collector] {"stage_name":"metric_collector","events_processed":12549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2509.8,"last_update":"2026-03-21T21:34:58.869709541Z"} +2026/03/21 21:35:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5022,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:34:58.87698708Z"} +2026/03/21 21:35:03 [transform_engine] {"stage_name":"transform_engine","events_processed":418,"events_dropped":0,"avg_latency_ms":211.3633832521788,"throughput_eps":0,"last_update":"2026-03-21T21:34:58.965088623Z"} +2026/03/21 21:35:03 [detection_layer] {"stage_name":"detection_layer","events_processed":418,"events_dropped":0,"avg_latency_ms":17.975944056914052,"throughput_eps":0,"last_update":"2026-03-21T21:34:58.966212806Z"} +2026/03/21 21:35:03 [log_collector] {"stage_name":"log_collector","events_processed":20158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4031.6,"last_update":"2026-03-21T21:34:58.869852926Z"} +2026/03/21 21:35:03 ───────────────────────────────────────────────── +2026/03/21 21:35:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:35:08 [log_collector] {"stage_name":"log_collector","events_processed":20158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4031.6,"last_update":"2026-03-21T21:35:03.869482396Z"} +2026/03/21 21:35:08 [metric_collector] {"stage_name":"metric_collector","events_processed":12554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2510.8,"last_update":"2026-03-21T21:35:03.869660908Z"} +2026/03/21 21:35:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:35:03.876971639Z"} +2026/03/21 21:35:08 [transform_engine] {"stage_name":"transform_engine","events_processed":418,"events_dropped":0,"avg_latency_ms":211.3633832521788,"throughput_eps":0,"last_update":"2026-03-21T21:35:03.965110003Z"} +2026/03/21 21:35:08 [detection_layer] {"stage_name":"detection_layer","events_processed":418,"events_dropped":0,"avg_latency_ms":17.975944056914052,"throughput_eps":0,"last_update":"2026-03-21T21:35:03.966236401Z"} +2026/03/21 21:35:08 ───────────────────────────────────────────────── +2026/03/21 21:35:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:35:13 [log_collector] {"stage_name":"log_collector","events_processed":20158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4031.6,"last_update":"2026-03-21T21:35:13.870728323Z"} +2026/03/21 21:35:13 [metric_collector] {"stage_name":"metric_collector","events_processed":12559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2511.8,"last_update":"2026-03-21T21:35:08.86986494Z"} +2026/03/21 21:35:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:35:08.87673652Z"} +2026/03/21 21:35:13 [transform_engine] {"stage_name":"transform_engine","events_processed":418,"events_dropped":0,"avg_latency_ms":211.3633832521788,"throughput_eps":0,"last_update":"2026-03-21T21:35:08.965943Z"} +2026/03/21 21:35:13 [detection_layer] {"stage_name":"detection_layer","events_processed":418,"events_dropped":0,"avg_latency_ms":17.975944056914052,"throughput_eps":0,"last_update":"2026-03-21T21:35:08.965917321Z"} +2026/03/21 21:35:13 ───────────────────────────────────────────────── +2026/03/21 21:35:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:35:18 [transform_engine] {"stage_name":"transform_engine","events_processed":418,"events_dropped":0,"avg_latency_ms":211.3633832521788,"throughput_eps":0,"last_update":"2026-03-21T21:35:13.966293871Z"} +2026/03/21 21:35:18 [detection_layer] {"stage_name":"detection_layer","events_processed":418,"events_dropped":0,"avg_latency_ms":17.975944056914052,"throughput_eps":0,"last_update":"2026-03-21T21:35:13.966283051Z"} +2026/03/21 21:35:18 [log_collector] {"stage_name":"log_collector","events_processed":20158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4031.6,"last_update":"2026-03-21T21:35:13.870728323Z"} +2026/03/21 21:35:18 [metric_collector] {"stage_name":"metric_collector","events_processed":12564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2512.8,"last_update":"2026-03-21T21:35:13.870834786Z"} +2026/03/21 21:35:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:35:13.879278208Z"} +2026/03/21 21:35:18 ───────────────────────────────────────────────── +2026/03/21 21:35:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:35:23 [transform_engine] {"stage_name":"transform_engine","events_processed":418,"events_dropped":0,"avg_latency_ms":211.3633832521788,"throughput_eps":0,"last_update":"2026-03-21T21:35:18.965887963Z"} +2026/03/21 21:35:23 [detection_layer] {"stage_name":"detection_layer","events_processed":418,"events_dropped":0,"avg_latency_ms":17.975944056914052,"throughput_eps":0,"last_update":"2026-03-21T21:35:18.965874958Z"} +2026/03/21 21:35:23 [log_collector] {"stage_name":"log_collector","events_processed":20158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4031.6,"last_update":"2026-03-21T21:35:18.869460123Z"} +2026/03/21 21:35:23 [metric_collector] {"stage_name":"metric_collector","events_processed":12569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2513.8,"last_update":"2026-03-21T21:35:18.870156878Z"} +2026/03/21 21:35:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:35:18.885420951Z"} +2026/03/21 21:35:23 ───────────────────────────────────────────────── +2026/03/21 21:35:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:35:28 [metric_collector] {"stage_name":"metric_collector","events_processed":12574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2514.8,"last_update":"2026-03-21T21:35:23.869954952Z"} +2026/03/21 21:35:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:35:23.877126857Z"} +2026/03/21 21:35:28 [transform_engine] {"stage_name":"transform_engine","events_processed":419,"events_dropped":0,"avg_latency_ms":298.44843240174305,"throughput_eps":0,"last_update":"2026-03-21T21:35:23.965380492Z"} +2026/03/21 21:35:28 [detection_layer] {"stage_name":"detection_layer","events_processed":419,"events_dropped":0,"avg_latency_ms":16.94959304553124,"throughput_eps":0,"last_update":"2026-03-21T21:35:23.965342078Z"} +2026/03/21 21:35:28 [log_collector] {"stage_name":"log_collector","events_processed":20158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4031.6,"last_update":"2026-03-21T21:35:23.869517583Z"} +2026/03/21 21:35:28 ───────────────────────────────────────────────── +2026/03/21 21:35:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:35:33 [metric_collector] {"stage_name":"metric_collector","events_processed":12579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2515.8,"last_update":"2026-03-21T21:35:28.869831525Z"} +2026/03/21 21:35:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:35:28.875689504Z"} +2026/03/21 21:35:33 [transform_engine] {"stage_name":"transform_engine","events_processed":419,"events_dropped":0,"avg_latency_ms":298.44843240174305,"throughput_eps":0,"last_update":"2026-03-21T21:35:28.965909314Z"} +2026/03/21 21:35:33 [detection_layer] {"stage_name":"detection_layer","events_processed":419,"events_dropped":0,"avg_latency_ms":16.94959304553124,"throughput_eps":0,"last_update":"2026-03-21T21:35:28.965896721Z"} +2026/03/21 21:35:33 [log_collector] {"stage_name":"log_collector","events_processed":20161,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4032.2,"last_update":"2026-03-21T21:35:28.869394859Z"} +2026/03/21 21:35:33 ───────────────────────────────────────────────── +2026/03/21 21:35:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:35:38 [transform_engine] {"stage_name":"transform_engine","events_processed":419,"events_dropped":0,"avg_latency_ms":298.44843240174305,"throughput_eps":0,"last_update":"2026-03-21T21:35:33.965900118Z"} +2026/03/21 21:35:38 [detection_layer] {"stage_name":"detection_layer","events_processed":419,"events_dropped":0,"avg_latency_ms":16.94959304553124,"throughput_eps":0,"last_update":"2026-03-21T21:35:33.965913714Z"} +2026/03/21 21:35:38 [log_collector] {"stage_name":"log_collector","events_processed":20228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4045.6,"last_update":"2026-03-21T21:35:33.870090392Z"} +2026/03/21 21:35:38 [metric_collector] {"stage_name":"metric_collector","events_processed":12584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2516.8,"last_update":"2026-03-21T21:35:33.870303511Z"} +2026/03/21 21:35:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5036,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:35:33.87728912Z"} +2026/03/21 21:35:38 ───────────────────────────────────────────────── +2026/03/21 21:35:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:35:43 [log_collector] {"stage_name":"log_collector","events_processed":20460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4092,"last_update":"2026-03-21T21:35:38.870017362Z"} +2026/03/21 21:35:43 [metric_collector] {"stage_name":"metric_collector","events_processed":12589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2517.8,"last_update":"2026-03-21T21:35:38.870407018Z"} +2026/03/21 21:35:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:35:38.877089657Z"} +2026/03/21 21:35:43 [transform_engine] {"stage_name":"transform_engine","events_processed":419,"events_dropped":0,"avg_latency_ms":298.44843240174305,"throughput_eps":0,"last_update":"2026-03-21T21:35:38.965612146Z"} +2026/03/21 21:35:43 [detection_layer] {"stage_name":"detection_layer","events_processed":419,"events_dropped":0,"avg_latency_ms":16.94959304553124,"throughput_eps":0,"last_update":"2026-03-21T21:35:38.965581037Z"} +2026/03/21 21:35:43 ───────────────────────────────────────────────── +2026/03/21 21:35:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:35:48 [log_collector] {"stage_name":"log_collector","events_processed":20507,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4101.4,"last_update":"2026-03-21T21:35:43.869432244Z"} +2026/03/21 21:35:48 [metric_collector] {"stage_name":"metric_collector","events_processed":12594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2518.8,"last_update":"2026-03-21T21:35:43.870143305Z"} +2026/03/21 21:35:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:35:43.879492311Z"} +2026/03/21 21:35:48 [transform_engine] {"stage_name":"transform_engine","events_processed":419,"events_dropped":0,"avg_latency_ms":298.44843240174305,"throughput_eps":0,"last_update":"2026-03-21T21:35:43.965827161Z"} +2026/03/21 21:35:48 [detection_layer] {"stage_name":"detection_layer","events_processed":419,"events_dropped":0,"avg_latency_ms":16.94959304553124,"throughput_eps":0,"last_update":"2026-03-21T21:35:43.965811681Z"} +2026/03/21 21:35:48 ───────────────────────────────────────────────── +2026/03/21 21:35:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:35:53 [log_collector] {"stage_name":"log_collector","events_processed":20507,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4101.4,"last_update":"2026-03-21T21:35:48.869596189Z"} +2026/03/21 21:35:53 [metric_collector] {"stage_name":"metric_collector","events_processed":12599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2519.8,"last_update":"2026-03-21T21:35:48.87002981Z"} +2026/03/21 21:35:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:35:48.879159024Z"} +2026/03/21 21:35:53 [transform_engine] {"stage_name":"transform_engine","events_processed":420,"events_dropped":0,"avg_latency_ms":262.35447472139447,"throughput_eps":0,"last_update":"2026-03-21T21:35:49.083508026Z"} +2026/03/21 21:35:53 [detection_layer] {"stage_name":"detection_layer","events_processed":419,"events_dropped":0,"avg_latency_ms":16.94959304553124,"throughput_eps":0,"last_update":"2026-03-21T21:35:48.965510456Z"} +2026/03/21 21:35:53 ───────────────────────────────────────────────── +2026/03/21 21:35:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:35:58 [log_collector] {"stage_name":"log_collector","events_processed":20507,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4101.4,"last_update":"2026-03-21T21:35:53.86940821Z"} +2026/03/21 21:35:58 [metric_collector] {"stage_name":"metric_collector","events_processed":12604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2520.8,"last_update":"2026-03-21T21:35:53.86982581Z"} +2026/03/21 21:35:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:35:53.879298943Z"} +2026/03/21 21:35:58 [transform_engine] {"stage_name":"transform_engine","events_processed":420,"events_dropped":0,"avg_latency_ms":262.35447472139447,"throughput_eps":0,"last_update":"2026-03-21T21:35:53.965555593Z"} +2026/03/21 21:35:58 [detection_layer] {"stage_name":"detection_layer","events_processed":420,"events_dropped":0,"avg_latency_ms":17.505968436424993,"throughput_eps":0,"last_update":"2026-03-21T21:35:53.965545324Z"} +2026/03/21 21:35:58 ───────────────────────────────────────────────── +2026/03/21 21:36:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:36:03 [log_collector] {"stage_name":"log_collector","events_processed":20507,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4101.4,"last_update":"2026-03-21T21:35:58.870490215Z"} +2026/03/21 21:36:03 [metric_collector] {"stage_name":"metric_collector","events_processed":12609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2521.8,"last_update":"2026-03-21T21:35:58.870826288Z"} +2026/03/21 21:36:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:35:58.879840663Z"} +2026/03/21 21:36:03 [transform_engine] {"stage_name":"transform_engine","events_processed":420,"events_dropped":0,"avg_latency_ms":262.35447472139447,"throughput_eps":0,"last_update":"2026-03-21T21:35:58.966123623Z"} +2026/03/21 21:36:03 [detection_layer] {"stage_name":"detection_layer","events_processed":420,"events_dropped":0,"avg_latency_ms":17.505968436424993,"throughput_eps":0,"last_update":"2026-03-21T21:35:58.966113253Z"} +2026/03/21 21:36:03 ───────────────────────────────────────────────── +2026/03/21 21:36:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:36:08 [metric_collector] {"stage_name":"metric_collector","events_processed":12614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2522.8,"last_update":"2026-03-21T21:36:03.870327673Z"} +2026/03/21 21:36:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5048,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:36:03.878691132Z"} +2026/03/21 21:36:08 [transform_engine] {"stage_name":"transform_engine","events_processed":420,"events_dropped":0,"avg_latency_ms":262.35447472139447,"throughput_eps":0,"last_update":"2026-03-21T21:36:03.96602708Z"} +2026/03/21 21:36:08 [detection_layer] {"stage_name":"detection_layer","events_processed":420,"events_dropped":0,"avg_latency_ms":17.505968436424993,"throughput_eps":0,"last_update":"2026-03-21T21:36:03.966011109Z"} +2026/03/21 21:36:08 [log_collector] {"stage_name":"log_collector","events_processed":20507,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4101.4,"last_update":"2026-03-21T21:36:03.869962264Z"} +2026/03/21 21:36:08 ───────────────────────────────────────────────── +2026/03/21 21:36:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:36:13 [log_collector] {"stage_name":"log_collector","events_processed":20507,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4101.4,"last_update":"2026-03-21T21:36:08.869417483Z"} +2026/03/21 21:36:13 [metric_collector] {"stage_name":"metric_collector","events_processed":12619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2523.8,"last_update":"2026-03-21T21:36:08.870202898Z"} +2026/03/21 21:36:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5050,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:36:08.878784243Z"} +2026/03/21 21:36:13 [transform_engine] {"stage_name":"transform_engine","events_processed":420,"events_dropped":0,"avg_latency_ms":262.35447472139447,"throughput_eps":0,"last_update":"2026-03-21T21:36:08.96613553Z"} +2026/03/21 21:36:13 [detection_layer] {"stage_name":"detection_layer","events_processed":420,"events_dropped":0,"avg_latency_ms":17.505968436424993,"throughput_eps":0,"last_update":"2026-03-21T21:36:08.966120591Z"} +2026/03/21 21:36:13 ───────────────────────────────────────────────── +2026/03/21 21:36:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:36:18 [detection_layer] {"stage_name":"detection_layer","events_processed":420,"events_dropped":0,"avg_latency_ms":17.505968436424993,"throughput_eps":0,"last_update":"2026-03-21T21:36:13.965424088Z"} +2026/03/21 21:36:18 [log_collector] {"stage_name":"log_collector","events_processed":20507,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4101.4,"last_update":"2026-03-21T21:36:13.869413327Z"} +2026/03/21 21:36:18 [metric_collector] {"stage_name":"metric_collector","events_processed":12623,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2524.6,"last_update":"2026-03-21T21:36:13.869405431Z"} +2026/03/21 21:36:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:36:13.878191058Z"} +2026/03/21 21:36:18 [transform_engine] {"stage_name":"transform_engine","events_processed":420,"events_dropped":0,"avg_latency_ms":262.35447472139447,"throughput_eps":0,"last_update":"2026-03-21T21:36:13.965439687Z"} +2026/03/21 21:36:18 ───────────────────────────────────────────────── +2026/03/21 21:36:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:36:23 [metric_collector] {"stage_name":"metric_collector","events_processed":12628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2525.6,"last_update":"2026-03-21T21:36:18.869589836Z"} +2026/03/21 21:36:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:36:18.879379776Z"} +2026/03/21 21:36:23 [transform_engine] {"stage_name":"transform_engine","events_processed":421,"events_dropped":0,"avg_latency_ms":224.8841191771156,"throughput_eps":0,"last_update":"2026-03-21T21:36:19.040555211Z"} +2026/03/21 21:36:23 [detection_layer] {"stage_name":"detection_layer","events_processed":420,"events_dropped":0,"avg_latency_ms":17.505968436424993,"throughput_eps":0,"last_update":"2026-03-21T21:36:18.965537867Z"} +2026/03/21 21:36:23 [log_collector] {"stage_name":"log_collector","events_processed":20507,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4101.4,"last_update":"2026-03-21T21:36:18.869442944Z"} +2026/03/21 21:36:23 ───────────────────────────────────────────────── +2026/03/21 21:36:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:36:28 [log_collector] {"stage_name":"log_collector","events_processed":20507,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4101.4,"last_update":"2026-03-21T21:36:23.870118959Z"} +2026/03/21 21:36:28 [metric_collector] {"stage_name":"metric_collector","events_processed":12633,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2526.6,"last_update":"2026-03-21T21:36:23.870007315Z"} +2026/03/21 21:36:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5056,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:36:23.878808862Z"} +2026/03/21 21:36:28 [transform_engine] {"stage_name":"transform_engine","events_processed":421,"events_dropped":0,"avg_latency_ms":224.8841191771156,"throughput_eps":0,"last_update":"2026-03-21T21:36:23.966087199Z"} +2026/03/21 21:36:28 [detection_layer] {"stage_name":"detection_layer","events_processed":421,"events_dropped":0,"avg_latency_ms":18.296694749139995,"throughput_eps":0,"last_update":"2026-03-21T21:36:23.966074624Z"} +2026/03/21 21:36:28 ───────────────────────────────────────────────── +2026/03/21 21:36:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:36:33 [transform_engine] {"stage_name":"transform_engine","events_processed":421,"events_dropped":0,"avg_latency_ms":224.8841191771156,"throughput_eps":0,"last_update":"2026-03-21T21:36:28.965818476Z"} +2026/03/21 21:36:33 [detection_layer] {"stage_name":"detection_layer","events_processed":421,"events_dropped":0,"avg_latency_ms":18.296694749139995,"throughput_eps":0,"last_update":"2026-03-21T21:36:28.965802866Z"} +2026/03/21 21:36:33 [log_collector] {"stage_name":"log_collector","events_processed":20507,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4101.4,"last_update":"2026-03-21T21:36:33.869783221Z"} +2026/03/21 21:36:33 [metric_collector] {"stage_name":"metric_collector","events_processed":12639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2527.8,"last_update":"2026-03-21T21:36:28.870739169Z"} +2026/03/21 21:36:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:36:28.87944881Z"} +2026/03/21 21:36:33 ───────────────────────────────────────────────── +2026/03/21 21:36:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:36:38 [detection_layer] {"stage_name":"detection_layer","events_processed":421,"events_dropped":0,"avg_latency_ms":18.296694749139995,"throughput_eps":0,"last_update":"2026-03-21T21:36:33.965657752Z"} +2026/03/21 21:36:38 [log_collector] {"stage_name":"log_collector","events_processed":20507,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4101.4,"last_update":"2026-03-21T21:36:33.869783221Z"} +2026/03/21 21:36:38 [metric_collector] {"stage_name":"metric_collector","events_processed":12644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2528.8,"last_update":"2026-03-21T21:36:33.870506026Z"} +2026/03/21 21:36:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:36:33.878295514Z"} +2026/03/21 21:36:38 [transform_engine] {"stage_name":"transform_engine","events_processed":421,"events_dropped":0,"avg_latency_ms":224.8841191771156,"throughput_eps":0,"last_update":"2026-03-21T21:36:33.965674143Z"} +2026/03/21 21:36:38 ───────────────────────────────────────────────── +2026/03/21 21:36:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:36:43 [log_collector] {"stage_name":"log_collector","events_processed":20507,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4101.4,"last_update":"2026-03-21T21:36:43.869819104Z"} +2026/03/21 21:36:43 [metric_collector] {"stage_name":"metric_collector","events_processed":12649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2529.8,"last_update":"2026-03-21T21:36:38.870948456Z"} +2026/03/21 21:36:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5062,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:36:38.88004074Z"} +2026/03/21 21:36:43 [transform_engine] {"stage_name":"transform_engine","events_processed":421,"events_dropped":0,"avg_latency_ms":224.8841191771156,"throughput_eps":0,"last_update":"2026-03-21T21:36:38.965181672Z"} +2026/03/21 21:36:43 [detection_layer] {"stage_name":"detection_layer","events_processed":421,"events_dropped":0,"avg_latency_ms":18.296694749139995,"throughput_eps":0,"last_update":"2026-03-21T21:36:38.966330872Z"} +2026/03/21 21:36:43 ───────────────────────────────────────────────── +2026/03/21 21:36:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:36:48 [metric_collector] {"stage_name":"metric_collector","events_processed":12654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2530.8,"last_update":"2026-03-21T21:36:43.870179245Z"} +2026/03/21 21:36:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:36:43.878791238Z"} +2026/03/21 21:36:48 [transform_engine] {"stage_name":"transform_engine","events_processed":421,"events_dropped":0,"avg_latency_ms":224.8841191771156,"throughput_eps":0,"last_update":"2026-03-21T21:36:43.965991977Z"} +2026/03/21 21:36:48 [detection_layer] {"stage_name":"detection_layer","events_processed":421,"events_dropped":0,"avg_latency_ms":18.296694749139995,"throughput_eps":0,"last_update":"2026-03-21T21:36:43.966042423Z"} +2026/03/21 21:36:48 [log_collector] {"stage_name":"log_collector","events_processed":20507,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4101.4,"last_update":"2026-03-21T21:36:48.869398142Z"} +2026/03/21 21:36:48 ───────────────────────────────────────────────── +2026/03/21 21:36:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:36:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:36:48.87790319Z"} +2026/03/21 21:36:53 [transform_engine] {"stage_name":"transform_engine","events_processed":422,"events_dropped":0,"avg_latency_ms":193.51602694169247,"throughput_eps":0,"last_update":"2026-03-21T21:36:49.034318529Z"} +2026/03/21 21:36:53 [detection_layer] {"stage_name":"detection_layer","events_processed":421,"events_dropped":0,"avg_latency_ms":18.296694749139995,"throughput_eps":0,"last_update":"2026-03-21T21:36:48.966154901Z"} +2026/03/21 21:36:53 [log_collector] {"stage_name":"log_collector","events_processed":20507,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4101.4,"last_update":"2026-03-21T21:36:48.869398142Z"} +2026/03/21 21:36:53 [metric_collector] {"stage_name":"metric_collector","events_processed":12659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2531.8,"last_update":"2026-03-21T21:36:48.869680572Z"} +2026/03/21 21:36:53 ───────────────────────────────────────────────── +Saved state: 12 clusters, 20508 messages, reason: none +2026/03/21 21:36:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:36:58 [transform_engine] {"stage_name":"transform_engine","events_processed":422,"events_dropped":0,"avg_latency_ms":193.51602694169247,"throughput_eps":0,"last_update":"2026-03-21T21:36:53.965719771Z"} +2026/03/21 21:36:58 [detection_layer] {"stage_name":"detection_layer","events_processed":422,"events_dropped":0,"avg_latency_ms":17.619134599311998,"throughput_eps":0,"last_update":"2026-03-21T21:36:53.965754527Z"} +2026/03/21 21:36:58 [log_collector] {"stage_name":"log_collector","events_processed":20507,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4101.4,"last_update":"2026-03-21T21:36:53.869762192Z"} +2026/03/21 21:36:58 [metric_collector] {"stage_name":"metric_collector","events_processed":12664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2532.8,"last_update":"2026-03-21T21:36:53.870202575Z"} +2026/03/21 21:36:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:36:53.877440317Z"} +2026/03/21 21:36:58 ───────────────────────────────────────────────── +2026/03/21 21:37:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:37:03 [transform_engine] {"stage_name":"transform_engine","events_processed":422,"events_dropped":0,"avg_latency_ms":193.51602694169247,"throughput_eps":0,"last_update":"2026-03-21T21:36:58.965926289Z"} +2026/03/21 21:37:03 [detection_layer] {"stage_name":"detection_layer","events_processed":422,"events_dropped":0,"avg_latency_ms":17.619134599311998,"throughput_eps":0,"last_update":"2026-03-21T21:36:58.965917231Z"} +2026/03/21 21:37:03 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:36:58.86941575Z"} +2026/03/21 21:37:03 [metric_collector] {"stage_name":"metric_collector","events_processed":12669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2533.8,"last_update":"2026-03-21T21:36:58.869825165Z"} +2026/03/21 21:37:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:36:58.876742192Z"} +2026/03/21 21:37:03 ───────────────────────────────────────────────── +2026/03/21 21:37:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:37:08 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:37:03.869767604Z"} +2026/03/21 21:37:08 [metric_collector] {"stage_name":"metric_collector","events_processed":12674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2534.8,"last_update":"2026-03-21T21:37:03.870156649Z"} +2026/03/21 21:37:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5072,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:37:03.878735019Z"} +2026/03/21 21:37:08 [transform_engine] {"stage_name":"transform_engine","events_processed":422,"events_dropped":0,"avg_latency_ms":193.51602694169247,"throughput_eps":0,"last_update":"2026-03-21T21:37:03.965916871Z"} +2026/03/21 21:37:08 [detection_layer] {"stage_name":"detection_layer","events_processed":422,"events_dropped":0,"avg_latency_ms":17.619134599311998,"throughput_eps":0,"last_update":"2026-03-21T21:37:03.965906Z"} +2026/03/21 21:37:08 ───────────────────────────────────────────────── +2026/03/21 21:37:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:37:13 [detection_layer] {"stage_name":"detection_layer","events_processed":422,"events_dropped":0,"avg_latency_ms":17.619134599311998,"throughput_eps":0,"last_update":"2026-03-21T21:37:08.965463319Z"} +2026/03/21 21:37:13 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:37:08.870201632Z"} +2026/03/21 21:37:13 [metric_collector] {"stage_name":"metric_collector","events_processed":12679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2535.8,"last_update":"2026-03-21T21:37:08.87081129Z"} +2026/03/21 21:37:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:37:08.879283356Z"} +2026/03/21 21:37:13 [transform_engine] {"stage_name":"transform_engine","events_processed":422,"events_dropped":0,"avg_latency_ms":193.51602694169247,"throughput_eps":0,"last_update":"2026-03-21T21:37:08.965473578Z"} +2026/03/21 21:37:13 ───────────────────────────────────────────────── +2026/03/21 21:37:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:37:18 [transform_engine] {"stage_name":"transform_engine","events_processed":422,"events_dropped":0,"avg_latency_ms":193.51602694169247,"throughput_eps":0,"last_update":"2026-03-21T21:37:13.965374451Z"} +2026/03/21 21:37:18 [detection_layer] {"stage_name":"detection_layer","events_processed":422,"events_dropped":0,"avg_latency_ms":17.619134599311998,"throughput_eps":0,"last_update":"2026-03-21T21:37:13.965342831Z"} +2026/03/21 21:37:18 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:37:13.86942131Z"} +2026/03/21 21:37:18 [metric_collector] {"stage_name":"metric_collector","events_processed":12684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2536.8,"last_update":"2026-03-21T21:37:13.869766612Z"} +2026/03/21 21:37:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5076,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:37:13.876074082Z"} +2026/03/21 21:37:18 ───────────────────────────────────────────────── +2026/03/21 21:37:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:37:23 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:37:23.870245705Z"} +2026/03/21 21:37:23 [metric_collector] {"stage_name":"metric_collector","events_processed":12689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2537.8,"last_update":"2026-03-21T21:37:18.870386221Z"} +2026/03/21 21:37:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:37:18.878830243Z"} +2026/03/21 21:37:23 [transform_engine] {"stage_name":"transform_engine","events_processed":423,"events_dropped":0,"avg_latency_ms":177.233802553354,"throughput_eps":0,"last_update":"2026-03-21T21:37:19.078074419Z"} +2026/03/21 21:37:23 [detection_layer] {"stage_name":"detection_layer","events_processed":422,"events_dropped":0,"avg_latency_ms":17.619134599311998,"throughput_eps":0,"last_update":"2026-03-21T21:37:18.96595694Z"} +2026/03/21 21:37:23 ───────────────────────────────────────────────── +2026/03/21 21:37:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:37:28 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:37:23.870245705Z"} +2026/03/21 21:37:28 [metric_collector] {"stage_name":"metric_collector","events_processed":12694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2538.8,"last_update":"2026-03-21T21:37:23.870757325Z"} +2026/03/21 21:37:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:37:23.879344051Z"} +2026/03/21 21:37:28 [transform_engine] {"stage_name":"transform_engine","events_processed":423,"events_dropped":0,"avg_latency_ms":177.233802553354,"throughput_eps":0,"last_update":"2026-03-21T21:37:23.965531768Z"} +2026/03/21 21:37:28 [detection_layer] {"stage_name":"detection_layer","events_processed":423,"events_dropped":0,"avg_latency_ms":17.878266879449598,"throughput_eps":0,"last_update":"2026-03-21T21:37:23.965520728Z"} +2026/03/21 21:37:28 ───────────────────────────────────────────────── +2026/03/21 21:37:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:37:33 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:37:28.870204507Z"} +2026/03/21 21:37:33 [metric_collector] {"stage_name":"metric_collector","events_processed":12699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2539.8,"last_update":"2026-03-21T21:37:28.870593912Z"} +2026/03/21 21:37:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5082,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:37:28.878736357Z"} +2026/03/21 21:37:33 [transform_engine] {"stage_name":"transform_engine","events_processed":423,"events_dropped":0,"avg_latency_ms":177.233802553354,"throughput_eps":0,"last_update":"2026-03-21T21:37:28.965972743Z"} +2026/03/21 21:37:33 [detection_layer] {"stage_name":"detection_layer","events_processed":423,"events_dropped":0,"avg_latency_ms":17.878266879449598,"throughput_eps":0,"last_update":"2026-03-21T21:37:28.965959628Z"} +2026/03/21 21:37:33 ───────────────────────────────────────────────── +2026/03/21 21:37:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:37:38 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:37:33.869434766Z"} +2026/03/21 21:37:38 [metric_collector] {"stage_name":"metric_collector","events_processed":12704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2540.8,"last_update":"2026-03-21T21:37:33.869829531Z"} +2026/03/21 21:37:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:37:33.878718987Z"} +2026/03/21 21:37:38 [transform_engine] {"stage_name":"transform_engine","events_processed":423,"events_dropped":0,"avg_latency_ms":177.233802553354,"throughput_eps":0,"last_update":"2026-03-21T21:37:33.965950523Z"} +2026/03/21 21:37:38 [detection_layer] {"stage_name":"detection_layer","events_processed":423,"events_dropped":0,"avg_latency_ms":17.878266879449598,"throughput_eps":0,"last_update":"2026-03-21T21:37:33.965935475Z"} +2026/03/21 21:37:38 ───────────────────────────────────────────────── +2026/03/21 21:37:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:37:43 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:37:38.86948384Z"} +2026/03/21 21:37:43 [metric_collector] {"stage_name":"metric_collector","events_processed":12709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2541.8,"last_update":"2026-03-21T21:37:38.86991202Z"} +2026/03/21 21:37:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:37:38.878434112Z"} +2026/03/21 21:37:43 [transform_engine] {"stage_name":"transform_engine","events_processed":423,"events_dropped":0,"avg_latency_ms":177.233802553354,"throughput_eps":0,"last_update":"2026-03-21T21:37:38.965602498Z"} +2026/03/21 21:37:43 [detection_layer] {"stage_name":"detection_layer","events_processed":423,"events_dropped":0,"avg_latency_ms":17.878266879449598,"throughput_eps":0,"last_update":"2026-03-21T21:37:38.96559299Z"} +2026/03/21 21:37:43 ───────────────────────────────────────────────── +2026/03/21 21:37:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:37:48 [detection_layer] {"stage_name":"detection_layer","events_processed":423,"events_dropped":0,"avg_latency_ms":17.878266879449598,"throughput_eps":0,"last_update":"2026-03-21T21:37:43.965304731Z"} +2026/03/21 21:37:48 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:37:43.870039418Z"} +2026/03/21 21:37:48 [metric_collector] {"stage_name":"metric_collector","events_processed":12714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2542.8,"last_update":"2026-03-21T21:37:43.870464963Z"} +2026/03/21 21:37:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:37:43.879090843Z"} +2026/03/21 21:37:48 [transform_engine] {"stage_name":"transform_engine","events_processed":423,"events_dropped":0,"avg_latency_ms":177.233802553354,"throughput_eps":0,"last_update":"2026-03-21T21:37:43.965318508Z"} +2026/03/21 21:37:48 ───────────────────────────────────────────────── +2026/03/21 21:37:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:37:53 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:37:48.87001337Z"} +2026/03/21 21:37:53 [metric_collector] {"stage_name":"metric_collector","events_processed":12719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2543.8,"last_update":"2026-03-21T21:37:48.870491646Z"} +2026/03/21 21:37:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:37:48.878764481Z"} +2026/03/21 21:37:53 [transform_engine] {"stage_name":"transform_engine","events_processed":424,"events_dropped":0,"avg_latency_ms":156.86653644268318,"throughput_eps":0,"last_update":"2026-03-21T21:37:49.041344676Z"} +2026/03/21 21:37:53 [detection_layer] {"stage_name":"detection_layer","events_processed":423,"events_dropped":0,"avg_latency_ms":17.878266879449598,"throughput_eps":0,"last_update":"2026-03-21T21:37:48.965935381Z"} +2026/03/21 21:37:53 ───────────────────────────────────────────────── +2026/03/21 21:37:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:37:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:37:53.878170681Z"} +2026/03/21 21:37:58 [transform_engine] {"stage_name":"transform_engine","events_processed":424,"events_dropped":0,"avg_latency_ms":156.86653644268318,"throughput_eps":0,"last_update":"2026-03-21T21:37:53.965344107Z"} +2026/03/21 21:37:58 [detection_layer] {"stage_name":"detection_layer","events_processed":424,"events_dropped":0,"avg_latency_ms":18.10653090355968,"throughput_eps":0,"last_update":"2026-03-21T21:37:53.965368303Z"} +2026/03/21 21:37:58 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:37:53.86941907Z"} +2026/03/21 21:37:58 [metric_collector] {"stage_name":"metric_collector","events_processed":12724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2544.8,"last_update":"2026-03-21T21:37:53.870015151Z"} +2026/03/21 21:37:58 ───────────────────────────────────────────────── +2026/03/21 21:38:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:38:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:37:58.878416565Z"} +2026/03/21 21:38:03 [transform_engine] {"stage_name":"transform_engine","events_processed":424,"events_dropped":0,"avg_latency_ms":156.86653644268318,"throughput_eps":0,"last_update":"2026-03-21T21:37:58.965653732Z"} +2026/03/21 21:38:03 [detection_layer] {"stage_name":"detection_layer","events_processed":424,"events_dropped":0,"avg_latency_ms":18.10653090355968,"throughput_eps":0,"last_update":"2026-03-21T21:37:58.965618114Z"} +2026/03/21 21:38:03 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:37:58.869446035Z"} +2026/03/21 21:38:03 [metric_collector] {"stage_name":"metric_collector","events_processed":12729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2545.8,"last_update":"2026-03-21T21:37:58.869865558Z"} +2026/03/21 21:38:03 ───────────────────────────────────────────────── +2026/03/21 21:38:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:38:08 [transform_engine] {"stage_name":"transform_engine","events_processed":424,"events_dropped":0,"avg_latency_ms":156.86653644268318,"throughput_eps":0,"last_update":"2026-03-21T21:38:03.966087486Z"} +2026/03/21 21:38:08 [detection_layer] {"stage_name":"detection_layer","events_processed":424,"events_dropped":0,"avg_latency_ms":18.10653090355968,"throughput_eps":0,"last_update":"2026-03-21T21:38:03.966055656Z"} +2026/03/21 21:38:08 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:38:03.870389304Z"} +2026/03/21 21:38:08 [metric_collector] {"stage_name":"metric_collector","events_processed":12734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2546.8,"last_update":"2026-03-21T21:38:03.87082554Z"} +2026/03/21 21:38:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:38:03.878860077Z"} +2026/03/21 21:38:08 ───────────────────────────────────────────────── +2026/03/21 21:38:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:38:13 [metric_collector] {"stage_name":"metric_collector","events_processed":12739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2547.8,"last_update":"2026-03-21T21:38:08.869917414Z"} +2026/03/21 21:38:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:38:08.878560287Z"} +2026/03/21 21:38:13 [transform_engine] {"stage_name":"transform_engine","events_processed":424,"events_dropped":0,"avg_latency_ms":156.86653644268318,"throughput_eps":0,"last_update":"2026-03-21T21:38:08.965747369Z"} +2026/03/21 21:38:13 [detection_layer] {"stage_name":"detection_layer","events_processed":424,"events_dropped":0,"avg_latency_ms":18.10653090355968,"throughput_eps":0,"last_update":"2026-03-21T21:38:08.965772447Z"} +2026/03/21 21:38:13 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:38:08.869512117Z"} +2026/03/21 21:38:13 ───────────────────────────────────────────────── +2026/03/21 21:38:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:38:18 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:38:13.869537831Z"} +2026/03/21 21:38:18 [metric_collector] {"stage_name":"metric_collector","events_processed":12744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2548.8,"last_update":"2026-03-21T21:38:13.869687798Z"} +2026/03/21 21:38:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:38:13.878227794Z"} +2026/03/21 21:38:18 [transform_engine] {"stage_name":"transform_engine","events_processed":424,"events_dropped":0,"avg_latency_ms":156.86653644268318,"throughput_eps":0,"last_update":"2026-03-21T21:38:13.965446376Z"} +2026/03/21 21:38:18 [detection_layer] {"stage_name":"detection_layer","events_processed":424,"events_dropped":0,"avg_latency_ms":18.10653090355968,"throughput_eps":0,"last_update":"2026-03-21T21:38:13.965415888Z"} +2026/03/21 21:38:18 ───────────────────────────────────────────────── +2026/03/21 21:38:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:38:23 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:38:18.869540252Z"} +2026/03/21 21:38:23 [metric_collector] {"stage_name":"metric_collector","events_processed":12749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2549.8,"last_update":"2026-03-21T21:38:18.8697951Z"} +2026/03/21 21:38:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:38:18.878121787Z"} +2026/03/21 21:38:23 [transform_engine] {"stage_name":"transform_engine","events_processed":425,"events_dropped":0,"avg_latency_ms":140.12089835414656,"throughput_eps":0,"last_update":"2026-03-21T21:38:19.038511187Z"} +2026/03/21 21:38:23 [detection_layer] {"stage_name":"detection_layer","events_processed":424,"events_dropped":0,"avg_latency_ms":18.10653090355968,"throughput_eps":0,"last_update":"2026-03-21T21:38:18.965326022Z"} +2026/03/21 21:38:23 ───────────────────────────────────────────────── +2026/03/21 21:38:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:38:28 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:38:23.869428694Z"} +2026/03/21 21:38:28 [metric_collector] {"stage_name":"metric_collector","events_processed":12754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2550.8,"last_update":"2026-03-21T21:38:23.869749208Z"} +2026/03/21 21:38:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:38:23.878559062Z"} +2026/03/21 21:38:28 [transform_engine] {"stage_name":"transform_engine","events_processed":425,"events_dropped":0,"avg_latency_ms":140.12089835414656,"throughput_eps":0,"last_update":"2026-03-21T21:38:23.965787973Z"} +2026/03/21 21:38:28 [detection_layer] {"stage_name":"detection_layer","events_processed":425,"events_dropped":0,"avg_latency_ms":18.270428122847743,"throughput_eps":0,"last_update":"2026-03-21T21:38:23.965756343Z"} +2026/03/21 21:38:28 ───────────────────────────────────────────────── +2026/03/21 21:38:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:38:33 [detection_layer] {"stage_name":"detection_layer","events_processed":425,"events_dropped":0,"avg_latency_ms":18.270428122847743,"throughput_eps":0,"last_update":"2026-03-21T21:38:28.965382829Z"} +2026/03/21 21:38:33 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:38:28.869463573Z"} +2026/03/21 21:38:33 [metric_collector] {"stage_name":"metric_collector","events_processed":12759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2551.8,"last_update":"2026-03-21T21:38:28.869811921Z"} +2026/03/21 21:38:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:38:28.878178545Z"} +2026/03/21 21:38:33 [transform_engine] {"stage_name":"transform_engine","events_processed":425,"events_dropped":0,"avg_latency_ms":140.12089835414656,"throughput_eps":0,"last_update":"2026-03-21T21:38:28.965392829Z"} +2026/03/21 21:38:33 ───────────────────────────────────────────────── +2026/03/21 21:38:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:38:38 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:38:33.869850799Z"} +2026/03/21 21:38:38 [metric_collector] {"stage_name":"metric_collector","events_processed":12764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2552.8,"last_update":"2026-03-21T21:38:33.870290381Z"} +2026/03/21 21:38:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:38:33.878747098Z"} +2026/03/21 21:38:38 [transform_engine] {"stage_name":"transform_engine","events_processed":425,"events_dropped":0,"avg_latency_ms":140.12089835414656,"throughput_eps":0,"last_update":"2026-03-21T21:38:33.965916405Z"} +2026/03/21 21:38:38 [detection_layer] {"stage_name":"detection_layer","events_processed":425,"events_dropped":0,"avg_latency_ms":18.270428122847743,"throughput_eps":0,"last_update":"2026-03-21T21:38:33.965907899Z"} +2026/03/21 21:38:38 ───────────────────────────────────────────────── +2026/03/21 21:38:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:38:43 [transform_engine] {"stage_name":"transform_engine","events_processed":425,"events_dropped":0,"avg_latency_ms":140.12089835414656,"throughput_eps":0,"last_update":"2026-03-21T21:38:38.965331849Z"} +2026/03/21 21:38:43 [detection_layer] {"stage_name":"detection_layer","events_processed":425,"events_dropped":0,"avg_latency_ms":18.270428122847743,"throughput_eps":0,"last_update":"2026-03-21T21:38:38.965320428Z"} +2026/03/21 21:38:43 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:38:38.869409578Z"} +2026/03/21 21:38:43 [metric_collector] {"stage_name":"metric_collector","events_processed":12768,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2553.6,"last_update":"2026-03-21T21:38:38.869426801Z"} +2026/03/21 21:38:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:38:38.878104641Z"} +2026/03/21 21:38:43 ───────────────────────────────────────────────── +2026/03/21 21:38:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:38:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:38:43.878547938Z"} +2026/03/21 21:38:48 [transform_engine] {"stage_name":"transform_engine","events_processed":425,"events_dropped":0,"avg_latency_ms":140.12089835414656,"throughput_eps":0,"last_update":"2026-03-21T21:38:43.965755099Z"} +2026/03/21 21:38:48 [detection_layer] {"stage_name":"detection_layer","events_processed":425,"events_dropped":0,"avg_latency_ms":18.270428122847743,"throughput_eps":0,"last_update":"2026-03-21T21:38:43.965743537Z"} +2026/03/21 21:38:48 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:38:43.869612225Z"} +2026/03/21 21:38:48 [metric_collector] {"stage_name":"metric_collector","events_processed":12774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2554.8,"last_update":"2026-03-21T21:38:43.869819241Z"} +2026/03/21 21:38:48 ───────────────────────────────────────────────── +2026/03/21 21:38:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:38:53 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:38:48.869529542Z"} +2026/03/21 21:38:53 [metric_collector] {"stage_name":"metric_collector","events_processed":12779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2555.8,"last_update":"2026-03-21T21:38:48.869878069Z"} +2026/03/21 21:38:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:38:48.878578212Z"} +2026/03/21 21:38:53 [transform_engine] {"stage_name":"transform_engine","events_processed":425,"events_dropped":0,"avg_latency_ms":140.12089835414656,"throughput_eps":0,"last_update":"2026-03-21T21:38:48.965775182Z"} +2026/03/21 21:38:53 [detection_layer] {"stage_name":"detection_layer","events_processed":425,"events_dropped":0,"avg_latency_ms":18.270428122847743,"throughput_eps":0,"last_update":"2026-03-21T21:38:48.965762168Z"} +2026/03/21 21:38:53 ───────────────────────────────────────────────── +2026/03/21 21:38:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:38:58 [detection_layer] {"stage_name":"detection_layer","events_processed":426,"events_dropped":0,"avg_latency_ms":18.167531698278196,"throughput_eps":0,"last_update":"2026-03-21T21:38:53.966151236Z"} +2026/03/21 21:38:58 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:38:53.869402572Z"} +2026/03/21 21:38:58 [metric_collector] {"stage_name":"metric_collector","events_processed":12783,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2556.6,"last_update":"2026-03-21T21:38:53.86939126Z"} +2026/03/21 21:38:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:38:53.878986527Z"} +2026/03/21 21:38:58 [transform_engine] {"stage_name":"transform_engine","events_processed":426,"events_dropped":0,"avg_latency_ms":449.78224888331727,"throughput_eps":0,"last_update":"2026-03-21T21:38:53.965069304Z"} +2026/03/21 21:38:58 ───────────────────────────────────────────────── +2026/03/21 21:39:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:39:03 [metric_collector] {"stage_name":"metric_collector","events_processed":12789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2557.8,"last_update":"2026-03-21T21:38:58.869807571Z"} +2026/03/21 21:39:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:38:58.869434346Z"} +2026/03/21 21:39:03 [transform_engine] {"stage_name":"transform_engine","events_processed":426,"events_dropped":0,"avg_latency_ms":449.78224888331727,"throughput_eps":0,"last_update":"2026-03-21T21:38:58.965116849Z"} +2026/03/21 21:39:03 [detection_layer] {"stage_name":"detection_layer","events_processed":426,"events_dropped":0,"avg_latency_ms":18.167531698278196,"throughput_eps":0,"last_update":"2026-03-21T21:38:58.966221604Z"} +2026/03/21 21:39:03 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:38:58.869440297Z"} +2026/03/21 21:39:03 ───────────────────────────────────────────────── +2026/03/21 21:39:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:39:08 [detection_layer] {"stage_name":"detection_layer","events_processed":426,"events_dropped":0,"avg_latency_ms":18.167531698278196,"throughput_eps":0,"last_update":"2026-03-21T21:39:03.966075679Z"} +2026/03/21 21:39:08 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:39:03.870131716Z"} +2026/03/21 21:39:08 [metric_collector] {"stage_name":"metric_collector","events_processed":12794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2558.8,"last_update":"2026-03-21T21:39:03.870324004Z"} +2026/03/21 21:39:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:39:03.87691643Z"} +2026/03/21 21:39:08 [transform_engine] {"stage_name":"transform_engine","events_processed":426,"events_dropped":0,"avg_latency_ms":449.78224888331727,"throughput_eps":0,"last_update":"2026-03-21T21:39:03.966086199Z"} +2026/03/21 21:39:08 ───────────────────────────────────────────────── +2026/03/21 21:39:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:39:13 [transform_engine] {"stage_name":"transform_engine","events_processed":426,"events_dropped":0,"avg_latency_ms":449.78224888331727,"throughput_eps":0,"last_update":"2026-03-21T21:39:08.965682987Z"} +2026/03/21 21:39:13 [detection_layer] {"stage_name":"detection_layer","events_processed":426,"events_dropped":0,"avg_latency_ms":18.167531698278196,"throughput_eps":0,"last_update":"2026-03-21T21:39:08.965673859Z"} +2026/03/21 21:39:13 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:39:08.869973132Z"} +2026/03/21 21:39:13 [metric_collector] {"stage_name":"metric_collector","events_processed":12799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2559.8,"last_update":"2026-03-21T21:39:08.870190008Z"} +2026/03/21 21:39:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5122,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:39:08.877520768Z"} +2026/03/21 21:39:13 ───────────────────────────────────────────────── +2026/03/21 21:39:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:39:18 [transform_engine] {"stage_name":"transform_engine","events_processed":426,"events_dropped":0,"avg_latency_ms":449.78224888331727,"throughput_eps":0,"last_update":"2026-03-21T21:39:13.965282616Z"} +2026/03/21 21:39:18 [detection_layer] {"stage_name":"detection_layer","events_processed":426,"events_dropped":0,"avg_latency_ms":18.167531698278196,"throughput_eps":0,"last_update":"2026-03-21T21:39:13.965264612Z"} +2026/03/21 21:39:18 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:39:18.869944736Z"} +2026/03/21 21:39:18 [metric_collector] {"stage_name":"metric_collector","events_processed":12804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2560.8,"last_update":"2026-03-21T21:39:13.869767725Z"} +2026/03/21 21:39:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:39:13.878109632Z"} +2026/03/21 21:39:18 ───────────────────────────────────────────────── +2026/03/21 21:39:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:39:23 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:39:18.869944736Z"} +2026/03/21 21:39:23 [metric_collector] {"stage_name":"metric_collector","events_processed":12809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2561.8,"last_update":"2026-03-21T21:39:18.870210255Z"} +2026/03/21 21:39:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5126,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:39:18.879563859Z"} +2026/03/21 21:39:23 [transform_engine] {"stage_name":"transform_engine","events_processed":427,"events_dropped":0,"avg_latency_ms":374.19776830665387,"throughput_eps":0,"last_update":"2026-03-21T21:39:19.037623827Z"} +2026/03/21 21:39:23 [detection_layer] {"stage_name":"detection_layer","events_processed":426,"events_dropped":0,"avg_latency_ms":18.167531698278196,"throughput_eps":0,"last_update":"2026-03-21T21:39:18.965780602Z"} +2026/03/21 21:39:23 ───────────────────────────────────────────────── +2026/03/21 21:39:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:39:28 [detection_layer] {"stage_name":"detection_layer","events_processed":427,"events_dropped":0,"avg_latency_ms":18.25470535862256,"throughput_eps":0,"last_update":"2026-03-21T21:39:23.96586087Z"} +2026/03/21 21:39:28 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:39:28.870387643Z"} +2026/03/21 21:39:28 [metric_collector] {"stage_name":"metric_collector","events_processed":12814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2562.8,"last_update":"2026-03-21T21:39:23.870104015Z"} +2026/03/21 21:39:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5128,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:39:23.878675231Z"} +2026/03/21 21:39:28 [transform_engine] {"stage_name":"transform_engine","events_processed":427,"events_dropped":0,"avg_latency_ms":374.19776830665387,"throughput_eps":0,"last_update":"2026-03-21T21:39:23.965878504Z"} +2026/03/21 21:39:28 ───────────────────────────────────────────────── +2026/03/21 21:39:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:39:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5130,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:39:28.87774282Z"} +2026/03/21 21:39:33 [transform_engine] {"stage_name":"transform_engine","events_processed":427,"events_dropped":0,"avg_latency_ms":374.19776830665387,"throughput_eps":0,"last_update":"2026-03-21T21:39:28.965188977Z"} +2026/03/21 21:39:33 [detection_layer] {"stage_name":"detection_layer","events_processed":427,"events_dropped":0,"avg_latency_ms":18.25470535862256,"throughput_eps":0,"last_update":"2026-03-21T21:39:28.965291544Z"} +2026/03/21 21:39:33 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:39:28.870387643Z"} +2026/03/21 21:39:33 [metric_collector] {"stage_name":"metric_collector","events_processed":12819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2563.8,"last_update":"2026-03-21T21:39:28.87070445Z"} +2026/03/21 21:39:33 ───────────────────────────────────────────────── +2026/03/21 21:39:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:39:38 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:39:33.87003523Z"} +2026/03/21 21:39:38 [metric_collector] {"stage_name":"metric_collector","events_processed":12824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2564.8,"last_update":"2026-03-21T21:39:33.870146613Z"} +2026/03/21 21:39:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:39:33.87943891Z"} +2026/03/21 21:39:38 [transform_engine] {"stage_name":"transform_engine","events_processed":427,"events_dropped":0,"avg_latency_ms":374.19776830665387,"throughput_eps":0,"last_update":"2026-03-21T21:39:33.96556471Z"} +2026/03/21 21:39:38 [detection_layer] {"stage_name":"detection_layer","events_processed":427,"events_dropped":0,"avg_latency_ms":18.25470535862256,"throughput_eps":0,"last_update":"2026-03-21T21:39:33.96554397Z"} +2026/03/21 21:39:38 ───────────────────────────────────────────────── +2026/03/21 21:39:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:39:43 [transform_engine] {"stage_name":"transform_engine","events_processed":427,"events_dropped":0,"avg_latency_ms":374.19776830665387,"throughput_eps":0,"last_update":"2026-03-21T21:39:38.965969545Z"} +2026/03/21 21:39:43 [detection_layer] {"stage_name":"detection_layer","events_processed":427,"events_dropped":0,"avg_latency_ms":18.25470535862256,"throughput_eps":0,"last_update":"2026-03-21T21:39:38.965952702Z"} +2026/03/21 21:39:43 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:39:43.869413863Z"} +2026/03/21 21:39:43 [metric_collector] {"stage_name":"metric_collector","events_processed":12829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2565.8,"last_update":"2026-03-21T21:39:38.869662145Z"} +2026/03/21 21:39:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:39:38.878722638Z"} +2026/03/21 21:39:43 ───────────────────────────────────────────────── +2026/03/21 21:39:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:39:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:39:43.87797001Z"} +2026/03/21 21:39:48 [transform_engine] {"stage_name":"transform_engine","events_processed":427,"events_dropped":0,"avg_latency_ms":374.19776830665387,"throughput_eps":0,"last_update":"2026-03-21T21:39:43.965073161Z"} +2026/03/21 21:39:48 [detection_layer] {"stage_name":"detection_layer","events_processed":427,"events_dropped":0,"avg_latency_ms":18.25470535862256,"throughput_eps":0,"last_update":"2026-03-21T21:39:43.966187345Z"} +2026/03/21 21:39:48 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:39:43.869413863Z"} +2026/03/21 21:39:48 [metric_collector] {"stage_name":"metric_collector","events_processed":12834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2566.8,"last_update":"2026-03-21T21:39:43.869899032Z"} +2026/03/21 21:39:48 ───────────────────────────────────────────────── +2026/03/21 21:39:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:39:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:39:48.878334984Z"} +2026/03/21 21:39:53 [transform_engine] {"stage_name":"transform_engine","events_processed":428,"events_dropped":0,"avg_latency_ms":313.6079860453231,"throughput_eps":0,"last_update":"2026-03-21T21:39:49.036768818Z"} +2026/03/21 21:39:53 [detection_layer] {"stage_name":"detection_layer","events_processed":427,"events_dropped":0,"avg_latency_ms":18.25470535862256,"throughput_eps":0,"last_update":"2026-03-21T21:39:48.965550981Z"} +2026/03/21 21:39:53 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:39:53.869432749Z"} +2026/03/21 21:39:53 [metric_collector] {"stage_name":"metric_collector","events_processed":12839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2567.8,"last_update":"2026-03-21T21:39:48.870097888Z"} +2026/03/21 21:39:53 ───────────────────────────────────────────────── +2026/03/21 21:39:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:39:58 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:39:53.869432749Z"} +2026/03/21 21:39:58 [metric_collector] {"stage_name":"metric_collector","events_processed":12844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2568.8,"last_update":"2026-03-21T21:39:53.869673169Z"} +2026/03/21 21:39:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:39:53.878428057Z"} +2026/03/21 21:39:58 [transform_engine] {"stage_name":"transform_engine","events_processed":428,"events_dropped":0,"avg_latency_ms":313.6079860453231,"throughput_eps":0,"last_update":"2026-03-21T21:39:53.965696013Z"} +2026/03/21 21:39:58 [detection_layer] {"stage_name":"detection_layer","events_processed":428,"events_dropped":0,"avg_latency_ms":18.37855988689805,"throughput_eps":0,"last_update":"2026-03-21T21:39:53.965676716Z"} +2026/03/21 21:39:58 ───────────────────────────────────────────────── +2026/03/21 21:40:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:40:03 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:39:58.869733706Z"} +2026/03/21 21:40:03 [metric_collector] {"stage_name":"metric_collector","events_processed":12849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2569.8,"last_update":"2026-03-21T21:39:58.869910414Z"} +2026/03/21 21:40:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:39:58.878113125Z"} +2026/03/21 21:40:03 [transform_engine] {"stage_name":"transform_engine","events_processed":428,"events_dropped":0,"avg_latency_ms":313.6079860453231,"throughput_eps":0,"last_update":"2026-03-21T21:39:58.965366222Z"} +2026/03/21 21:40:03 [detection_layer] {"stage_name":"detection_layer","events_processed":428,"events_dropped":0,"avg_latency_ms":18.37855988689805,"throughput_eps":0,"last_update":"2026-03-21T21:39:58.965316998Z"} +2026/03/21 21:40:03 ───────────────────────────────────────────────── +2026/03/21 21:40:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:40:08 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:40:03.87020726Z"} +2026/03/21 21:40:08 [metric_collector] {"stage_name":"metric_collector","events_processed":12854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2570.8,"last_update":"2026-03-21T21:40:03.870664736Z"} +2026/03/21 21:40:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:40:03.888618101Z"} +2026/03/21 21:40:08 [transform_engine] {"stage_name":"transform_engine","events_processed":428,"events_dropped":0,"avg_latency_ms":313.6079860453231,"throughput_eps":0,"last_update":"2026-03-21T21:40:03.965782146Z"} +2026/03/21 21:40:08 [detection_layer] {"stage_name":"detection_layer","events_processed":428,"events_dropped":0,"avg_latency_ms":18.37855988689805,"throughput_eps":0,"last_update":"2026-03-21T21:40:03.965796765Z"} +2026/03/21 21:40:08 ───────────────────────────────────────────────── +2026/03/21 21:40:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:40:13 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:40:08.870157528Z"} +2026/03/21 21:40:13 [metric_collector] {"stage_name":"metric_collector","events_processed":12859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2571.8,"last_update":"2026-03-21T21:40:08.870220508Z"} +2026/03/21 21:40:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:40:08.87735886Z"} +2026/03/21 21:40:13 [transform_engine] {"stage_name":"transform_engine","events_processed":428,"events_dropped":0,"avg_latency_ms":313.6079860453231,"throughput_eps":0,"last_update":"2026-03-21T21:40:08.965569151Z"} +2026/03/21 21:40:13 [detection_layer] {"stage_name":"detection_layer","events_processed":428,"events_dropped":0,"avg_latency_ms":18.37855988689805,"throughput_eps":0,"last_update":"2026-03-21T21:40:08.965596373Z"} +2026/03/21 21:40:13 ───────────────────────────────────────────────── +2026/03/21 21:40:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:40:18 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:40:18.869404565Z"} +2026/03/21 21:40:18 [metric_collector] {"stage_name":"metric_collector","events_processed":12864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2572.8,"last_update":"2026-03-21T21:40:13.869916952Z"} +2026/03/21 21:40:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:40:13.878456657Z"} +2026/03/21 21:40:18 [transform_engine] {"stage_name":"transform_engine","events_processed":428,"events_dropped":0,"avg_latency_ms":313.6079860453231,"throughput_eps":0,"last_update":"2026-03-21T21:40:13.965682373Z"} +2026/03/21 21:40:18 [detection_layer] {"stage_name":"detection_layer","events_processed":428,"events_dropped":0,"avg_latency_ms":18.37855988689805,"throughput_eps":0,"last_update":"2026-03-21T21:40:13.965707962Z"} +2026/03/21 21:40:18 ───────────────────────────────────────────────── +2026/03/21 21:40:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:40:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:40:18.878026187Z"} +2026/03/21 21:40:23 [transform_engine] {"stage_name":"transform_engine","events_processed":429,"events_dropped":0,"avg_latency_ms":264.8562442362585,"throughput_eps":0,"last_update":"2026-03-21T21:40:19.034995267Z"} +2026/03/21 21:40:23 [detection_layer] {"stage_name":"detection_layer","events_processed":428,"events_dropped":0,"avg_latency_ms":18.37855988689805,"throughput_eps":0,"last_update":"2026-03-21T21:40:18.966273389Z"} +2026/03/21 21:40:23 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:40:18.869404565Z"} +2026/03/21 21:40:23 [metric_collector] {"stage_name":"metric_collector","events_processed":12869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2573.8,"last_update":"2026-03-21T21:40:18.869739967Z"} +2026/03/21 21:40:23 ───────────────────────────────────────────────── +2026/03/21 21:40:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:40:28 [detection_layer] {"stage_name":"detection_layer","events_processed":429,"events_dropped":0,"avg_latency_ms":18.59188230951844,"throughput_eps":0,"last_update":"2026-03-21T21:40:23.965410151Z"} +2026/03/21 21:40:28 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:40:23.869699244Z"} +2026/03/21 21:40:28 [metric_collector] {"stage_name":"metric_collector","events_processed":12874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2574.8,"last_update":"2026-03-21T21:40:23.869935236Z"} +2026/03/21 21:40:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:40:23.878235664Z"} +2026/03/21 21:40:28 [transform_engine] {"stage_name":"transform_engine","events_processed":429,"events_dropped":0,"avg_latency_ms":264.8562442362585,"throughput_eps":0,"last_update":"2026-03-21T21:40:23.965173578Z"} +2026/03/21 21:40:28 ───────────────────────────────────────────────── +2026/03/21 21:40:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:40:33 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:40:28.869772362Z"} +2026/03/21 21:40:33 [metric_collector] {"stage_name":"metric_collector","events_processed":12879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2575.8,"last_update":"2026-03-21T21:40:28.870213406Z"} +2026/03/21 21:40:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:40:28.878885205Z"} +2026/03/21 21:40:33 [transform_engine] {"stage_name":"transform_engine","events_processed":429,"events_dropped":0,"avg_latency_ms":264.8562442362585,"throughput_eps":0,"last_update":"2026-03-21T21:40:28.96611082Z"} +2026/03/21 21:40:33 [detection_layer] {"stage_name":"detection_layer","events_processed":429,"events_dropped":0,"avg_latency_ms":18.59188230951844,"throughput_eps":0,"last_update":"2026-03-21T21:40:28.966099619Z"} +2026/03/21 21:40:33 ───────────────────────────────────────────────── +2026/03/21 21:40:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:40:38 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:40:33.869604222Z"} +2026/03/21 21:40:38 [metric_collector] {"stage_name":"metric_collector","events_processed":12884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2576.8,"last_update":"2026-03-21T21:40:33.86989063Z"} +2026/03/21 21:40:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:40:33.878694582Z"} +2026/03/21 21:40:38 [transform_engine] {"stage_name":"transform_engine","events_processed":429,"events_dropped":0,"avg_latency_ms":264.8562442362585,"throughput_eps":0,"last_update":"2026-03-21T21:40:33.965902955Z"} +2026/03/21 21:40:38 [detection_layer] {"stage_name":"detection_layer","events_processed":429,"events_dropped":0,"avg_latency_ms":18.59188230951844,"throughput_eps":0,"last_update":"2026-03-21T21:40:33.965889469Z"} +2026/03/21 21:40:38 ───────────────────────────────────────────────── +Saved state: 12 clusters, 20511 messages, reason: none +2026/03/21 21:40:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:40:43 [log_collector] {"stage_name":"log_collector","events_processed":20510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102,"last_update":"2026-03-21T21:40:38.869400717Z"} +2026/03/21 21:40:43 [metric_collector] {"stage_name":"metric_collector","events_processed":12889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2577.8,"last_update":"2026-03-21T21:40:38.869949168Z"} +2026/03/21 21:40:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:40:38.876891534Z"} +2026/03/21 21:40:43 [transform_engine] {"stage_name":"transform_engine","events_processed":429,"events_dropped":0,"avg_latency_ms":264.8562442362585,"throughput_eps":0,"last_update":"2026-03-21T21:40:38.966071683Z"} +2026/03/21 21:40:43 [detection_layer] {"stage_name":"detection_layer","events_processed":429,"events_dropped":0,"avg_latency_ms":18.59188230951844,"throughput_eps":0,"last_update":"2026-03-21T21:40:38.966062195Z"} +2026/03/21 21:40:43 ───────────────────────────────────────────────── +2026/03/21 21:40:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:40:48 [log_collector] {"stage_name":"log_collector","events_processed":20520,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4104,"last_update":"2026-03-21T21:40:43.870363699Z"} +2026/03/21 21:40:48 [metric_collector] {"stage_name":"metric_collector","events_processed":12894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2578.8,"last_update":"2026-03-21T21:40:43.870444313Z"} +2026/03/21 21:40:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:40:43.87873438Z"} +2026/03/21 21:40:48 [transform_engine] {"stage_name":"transform_engine","events_processed":429,"events_dropped":0,"avg_latency_ms":264.8562442362585,"throughput_eps":0,"last_update":"2026-03-21T21:40:43.965959996Z"} +2026/03/21 21:40:48 [detection_layer] {"stage_name":"detection_layer","events_processed":429,"events_dropped":0,"avg_latency_ms":18.59188230951844,"throughput_eps":0,"last_update":"2026-03-21T21:40:43.965947652Z"} +2026/03/21 21:40:48 ───────────────────────────────────────────────── +2026/03/21 21:40:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:40:53 [log_collector] {"stage_name":"log_collector","events_processed":20537,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4107.4,"last_update":"2026-03-21T21:40:53.869546614Z"} +2026/03/21 21:40:53 [metric_collector] {"stage_name":"metric_collector","events_processed":12899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2579.8,"last_update":"2026-03-21T21:40:48.869807649Z"} +2026/03/21 21:40:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:40:48.875851455Z"} +2026/03/21 21:40:53 [transform_engine] {"stage_name":"transform_engine","events_processed":430,"events_dropped":0,"avg_latency_ms":234.5619527890068,"throughput_eps":0,"last_update":"2026-03-21T21:40:49.079410925Z"} +2026/03/21 21:40:53 [detection_layer] {"stage_name":"detection_layer","events_processed":429,"events_dropped":0,"avg_latency_ms":18.59188230951844,"throughput_eps":0,"last_update":"2026-03-21T21:40:48.966015157Z"} +2026/03/21 21:40:53 ───────────────────────────────────────────────── +2026/03/21 21:40:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:40:58 [transform_engine] {"stage_name":"transform_engine","events_processed":430,"events_dropped":0,"avg_latency_ms":234.5619527890068,"throughput_eps":0,"last_update":"2026-03-21T21:40:53.965135608Z"} +2026/03/21 21:40:58 [detection_layer] {"stage_name":"detection_layer","events_processed":430,"events_dropped":0,"avg_latency_ms":18.707863447614752,"throughput_eps":0,"last_update":"2026-03-21T21:40:53.966288205Z"} +2026/03/21 21:40:58 [log_collector] {"stage_name":"log_collector","events_processed":20537,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4107.4,"last_update":"2026-03-21T21:40:53.869546614Z"} +2026/03/21 21:40:58 [metric_collector] {"stage_name":"metric_collector","events_processed":12904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2580.8,"last_update":"2026-03-21T21:40:53.870074234Z"} +2026/03/21 21:40:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:40:53.877996888Z"} +2026/03/21 21:40:58 ───────────────────────────────────────────────── +2026/03/21 21:41:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:41:03 [metric_collector] {"stage_name":"metric_collector","events_processed":12909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2581.8,"last_update":"2026-03-21T21:40:58.869614399Z"} +2026/03/21 21:41:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:40:58.876578146Z"} +2026/03/21 21:41:03 [transform_engine] {"stage_name":"transform_engine","events_processed":430,"events_dropped":0,"avg_latency_ms":234.5619527890068,"throughput_eps":0,"last_update":"2026-03-21T21:40:58.965800236Z"} +2026/03/21 21:41:03 [detection_layer] {"stage_name":"detection_layer","events_processed":430,"events_dropped":0,"avg_latency_ms":18.707863447614752,"throughput_eps":0,"last_update":"2026-03-21T21:40:58.965788163Z"} +2026/03/21 21:41:03 [log_collector] {"stage_name":"log_collector","events_processed":20540,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4108,"last_update":"2026-03-21T21:40:58.869573941Z"} +2026/03/21 21:41:03 ───────────────────────────────────────────────── +2026/03/21 21:41:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:41:08 [log_collector] {"stage_name":"log_collector","events_processed":20540,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4108,"last_update":"2026-03-21T21:41:03.869639813Z"} +2026/03/21 21:41:08 [metric_collector] {"stage_name":"metric_collector","events_processed":12914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2582.8,"last_update":"2026-03-21T21:41:03.869797855Z"} +2026/03/21 21:41:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:41:03.878533626Z"} +2026/03/21 21:41:08 [transform_engine] {"stage_name":"transform_engine","events_processed":430,"events_dropped":0,"avg_latency_ms":234.5619527890068,"throughput_eps":0,"last_update":"2026-03-21T21:41:03.965737851Z"} +2026/03/21 21:41:08 [detection_layer] {"stage_name":"detection_layer","events_processed":430,"events_dropped":0,"avg_latency_ms":18.707863447614752,"throughput_eps":0,"last_update":"2026-03-21T21:41:03.965726759Z"} +2026/03/21 21:41:08 ───────────────────────────────────────────────── +2026/03/21 21:41:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:41:13 [log_collector] {"stage_name":"log_collector","events_processed":20540,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4108,"last_update":"2026-03-21T21:41:08.869610683Z"} +2026/03/21 21:41:13 [metric_collector] {"stage_name":"metric_collector","events_processed":12918,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2583.6,"last_update":"2026-03-21T21:41:08.869419287Z"} +2026/03/21 21:41:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5170,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:41:08.878619007Z"} +2026/03/21 21:41:13 [transform_engine] {"stage_name":"transform_engine","events_processed":430,"events_dropped":0,"avg_latency_ms":234.5619527890068,"throughput_eps":0,"last_update":"2026-03-21T21:41:08.965816879Z"} +2026/03/21 21:41:13 [detection_layer] {"stage_name":"detection_layer","events_processed":430,"events_dropped":0,"avg_latency_ms":18.707863447614752,"throughput_eps":0,"last_update":"2026-03-21T21:41:08.965805326Z"} +2026/03/21 21:41:13 ───────────────────────────────────────────────── +2026/03/21 21:41:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:41:18 [log_collector] {"stage_name":"log_collector","events_processed":20540,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4108,"last_update":"2026-03-21T21:41:18.869897934Z"} +2026/03/21 21:41:18 [metric_collector] {"stage_name":"metric_collector","events_processed":12923,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2584.6,"last_update":"2026-03-21T21:41:13.870180207Z"} +2026/03/21 21:41:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:41:13.878761612Z"} +2026/03/21 21:41:18 [transform_engine] {"stage_name":"transform_engine","events_processed":430,"events_dropped":0,"avg_latency_ms":234.5619527890068,"throughput_eps":0,"last_update":"2026-03-21T21:41:13.965971447Z"} +2026/03/21 21:41:18 [detection_layer] {"stage_name":"detection_layer","events_processed":430,"events_dropped":0,"avg_latency_ms":18.707863447614752,"throughput_eps":0,"last_update":"2026-03-21T21:41:13.965957421Z"} +2026/03/21 21:41:18 ───────────────────────────────────────────────── +2026/03/21 21:41:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:41:23 [log_collector] {"stage_name":"log_collector","events_processed":20540,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4108,"last_update":"2026-03-21T21:41:18.869897934Z"} +2026/03/21 21:41:23 [metric_collector] {"stage_name":"metric_collector","events_processed":12929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2585.8,"last_update":"2026-03-21T21:41:18.87023989Z"} +2026/03/21 21:41:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:41:18.877134734Z"} +2026/03/21 21:41:23 [transform_engine] {"stage_name":"transform_engine","events_processed":431,"events_dropped":0,"avg_latency_ms":208.44894943120545,"throughput_eps":0,"last_update":"2026-03-21T21:41:19.069398491Z"} +2026/03/21 21:41:23 [detection_layer] {"stage_name":"detection_layer","events_processed":430,"events_dropped":0,"avg_latency_ms":18.707863447614752,"throughput_eps":0,"last_update":"2026-03-21T21:41:18.965372749Z"} +2026/03/21 21:41:23 ───────────────────────────────────────────────── +2026/03/21 21:41:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:41:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:41:23.877035916Z"} +2026/03/21 21:41:28 [transform_engine] {"stage_name":"transform_engine","events_processed":431,"events_dropped":0,"avg_latency_ms":208.44894943120545,"throughput_eps":0,"last_update":"2026-03-21T21:41:23.965160092Z"} +2026/03/21 21:41:28 [detection_layer] {"stage_name":"detection_layer","events_processed":431,"events_dropped":0,"avg_latency_ms":17.8897379580918,"throughput_eps":0,"last_update":"2026-03-21T21:41:23.966296659Z"} +2026/03/21 21:41:28 [log_collector] {"stage_name":"log_collector","events_processed":20540,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4108,"last_update":"2026-03-21T21:41:23.870016772Z"} +2026/03/21 21:41:28 [metric_collector] {"stage_name":"metric_collector","events_processed":12934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2586.8,"last_update":"2026-03-21T21:41:23.870210653Z"} +2026/03/21 21:41:28 ───────────────────────────────────────────────── +2026/03/21 21:41:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:41:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:41:28.877715494Z"} +2026/03/21 21:41:33 [transform_engine] {"stage_name":"transform_engine","events_processed":431,"events_dropped":0,"avg_latency_ms":208.44894943120545,"throughput_eps":0,"last_update":"2026-03-21T21:41:28.965908342Z"} +2026/03/21 21:41:33 [detection_layer] {"stage_name":"detection_layer","events_processed":431,"events_dropped":0,"avg_latency_ms":17.8897379580918,"throughput_eps":0,"last_update":"2026-03-21T21:41:28.965896981Z"} +2026/03/21 21:41:33 [log_collector] {"stage_name":"log_collector","events_processed":20540,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4108,"last_update":"2026-03-21T21:41:28.869460684Z"} +2026/03/21 21:41:33 [metric_collector] {"stage_name":"metric_collector","events_processed":12939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2587.8,"last_update":"2026-03-21T21:41:28.869754897Z"} +2026/03/21 21:41:33 ───────────────────────────────────────────────── +2026/03/21 21:41:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:41:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:41:33.877872201Z"} +2026/03/21 21:41:38 [transform_engine] {"stage_name":"transform_engine","events_processed":431,"events_dropped":0,"avg_latency_ms":208.44894943120545,"throughput_eps":0,"last_update":"2026-03-21T21:41:33.966080519Z"} +2026/03/21 21:41:38 [detection_layer] {"stage_name":"detection_layer","events_processed":431,"events_dropped":0,"avg_latency_ms":17.8897379580918,"throughput_eps":0,"last_update":"2026-03-21T21:41:33.966070139Z"} +2026/03/21 21:41:38 [log_collector] {"stage_name":"log_collector","events_processed":20540,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4108,"last_update":"2026-03-21T21:41:33.86943861Z"} +2026/03/21 21:41:38 [metric_collector] {"stage_name":"metric_collector","events_processed":12944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2588.8,"last_update":"2026-03-21T21:41:33.869975207Z"} +2026/03/21 21:41:38 ───────────────────────────────────────────────── +2026/03/21 21:41:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:41:43 [log_collector] {"stage_name":"log_collector","events_processed":20540,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4108,"last_update":"2026-03-21T21:41:38.869924504Z"} +2026/03/21 21:41:43 [metric_collector] {"stage_name":"metric_collector","events_processed":12949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2589.8,"last_update":"2026-03-21T21:41:38.870016751Z"} +2026/03/21 21:41:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:41:38.877589884Z"} +2026/03/21 21:41:43 [transform_engine] {"stage_name":"transform_engine","events_processed":431,"events_dropped":0,"avg_latency_ms":208.44894943120545,"throughput_eps":0,"last_update":"2026-03-21T21:41:38.965769919Z"} +2026/03/21 21:41:43 [detection_layer] {"stage_name":"detection_layer","events_processed":431,"events_dropped":0,"avg_latency_ms":17.8897379580918,"throughput_eps":0,"last_update":"2026-03-21T21:41:38.965785749Z"} +2026/03/21 21:41:43 ───────────────────────────────────────────────── +Saved state: 12 clusters, 20551 messages, reason: none +2026/03/21 21:41:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:41:48 [log_collector] {"stage_name":"log_collector","events_processed":20550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4110,"last_update":"2026-03-21T21:41:43.869403922Z"} +2026/03/21 21:41:48 [metric_collector] {"stage_name":"metric_collector","events_processed":12954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2590.8,"last_update":"2026-03-21T21:41:43.869789199Z"} +2026/03/21 21:41:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:41:43.877911986Z"} +2026/03/21 21:41:48 [transform_engine] {"stage_name":"transform_engine","events_processed":431,"events_dropped":0,"avg_latency_ms":208.44894943120545,"throughput_eps":0,"last_update":"2026-03-21T21:41:43.966429436Z"} +2026/03/21 21:41:48 [detection_layer] {"stage_name":"detection_layer","events_processed":431,"events_dropped":0,"avg_latency_ms":17.8897379580918,"throughput_eps":0,"last_update":"2026-03-21T21:41:43.966442201Z"} +2026/03/21 21:41:48 ───────────────────────────────────────────────── +2026/03/21 21:41:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:41:53 [detection_layer] {"stage_name":"detection_layer","events_processed":431,"events_dropped":0,"avg_latency_ms":17.8897379580918,"throughput_eps":0,"last_update":"2026-03-21T21:41:48.965882665Z"} +2026/03/21 21:41:53 [log_collector] {"stage_name":"log_collector","events_processed":20551,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4110.2,"last_update":"2026-03-21T21:41:48.870013876Z"} +2026/03/21 21:41:53 [metric_collector] {"stage_name":"metric_collector","events_processed":12959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2591.8,"last_update":"2026-03-21T21:41:48.87047554Z"} +2026/03/21 21:41:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:41:48.879660632Z"} +2026/03/21 21:41:53 [transform_engine] {"stage_name":"transform_engine","events_processed":432,"events_dropped":0,"avg_latency_ms":189.77136894496437,"throughput_eps":0,"last_update":"2026-03-21T21:41:49.08099473Z"} +2026/03/21 21:41:53 ───────────────────────────────────────────────── +2026/03/21 21:41:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:41:58 [log_collector] {"stage_name":"log_collector","events_processed":20551,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4110.2,"last_update":"2026-03-21T21:41:53.870089276Z"} +2026/03/21 21:41:58 [metric_collector] {"stage_name":"metric_collector","events_processed":12964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2592.8,"last_update":"2026-03-21T21:41:53.870546313Z"} +2026/03/21 21:41:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:41:53.879702398Z"} +2026/03/21 21:41:58 [transform_engine] {"stage_name":"transform_engine","events_processed":432,"events_dropped":0,"avg_latency_ms":189.77136894496437,"throughput_eps":0,"last_update":"2026-03-21T21:41:53.96599139Z"} +2026/03/21 21:41:58 [detection_layer] {"stage_name":"detection_layer","events_processed":432,"events_dropped":0,"avg_latency_ms":17.47500476647344,"throughput_eps":0,"last_update":"2026-03-21T21:41:53.965957425Z"} +2026/03/21 21:41:58 ───────────────────────────────────────────────── +2026/03/21 21:42:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:42:03 [log_collector] {"stage_name":"log_collector","events_processed":20551,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4110.2,"last_update":"2026-03-21T21:41:58.869929587Z"} +2026/03/21 21:42:03 [metric_collector] {"stage_name":"metric_collector","events_processed":12969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2593.8,"last_update":"2026-03-21T21:41:58.870200404Z"} +2026/03/21 21:42:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:41:58.877247782Z"} +2026/03/21 21:42:03 [transform_engine] {"stage_name":"transform_engine","events_processed":432,"events_dropped":0,"avg_latency_ms":189.77136894496437,"throughput_eps":0,"last_update":"2026-03-21T21:41:58.965603353Z"} +2026/03/21 21:42:03 [detection_layer] {"stage_name":"detection_layer","events_processed":432,"events_dropped":0,"avg_latency_ms":17.47500476647344,"throughput_eps":0,"last_update":"2026-03-21T21:41:58.965578194Z"} +2026/03/21 21:42:03 ───────────────────────────────────────────────── +2026/03/21 21:42:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:42:08 [metric_collector] {"stage_name":"metric_collector","events_processed":12974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2594.8,"last_update":"2026-03-21T21:42:03.869900867Z"} +2026/03/21 21:42:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:42:03.878633341Z"} +2026/03/21 21:42:08 [transform_engine] {"stage_name":"transform_engine","events_processed":432,"events_dropped":0,"avg_latency_ms":189.77136894496437,"throughput_eps":0,"last_update":"2026-03-21T21:42:03.966003635Z"} +2026/03/21 21:42:08 [detection_layer] {"stage_name":"detection_layer","events_processed":432,"events_dropped":0,"avg_latency_ms":17.47500476647344,"throughput_eps":0,"last_update":"2026-03-21T21:42:03.966059301Z"} +2026/03/21 21:42:08 [log_collector] {"stage_name":"log_collector","events_processed":20551,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4110.2,"last_update":"2026-03-21T21:42:08.8703904Z"} +2026/03/21 21:42:08 ───────────────────────────────────────────────── +2026/03/21 21:42:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:42:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:42:08.879116333Z"} +2026/03/21 21:42:13 [transform_engine] {"stage_name":"transform_engine","events_processed":432,"events_dropped":0,"avg_latency_ms":189.77136894496437,"throughput_eps":0,"last_update":"2026-03-21T21:42:08.965328908Z"} +2026/03/21 21:42:13 [detection_layer] {"stage_name":"detection_layer","events_processed":432,"events_dropped":0,"avg_latency_ms":17.47500476647344,"throughput_eps":0,"last_update":"2026-03-21T21:42:08.96539242Z"} +2026/03/21 21:42:13 [log_collector] {"stage_name":"log_collector","events_processed":20551,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4110.2,"last_update":"2026-03-21T21:42:08.8703904Z"} +2026/03/21 21:42:13 [metric_collector] {"stage_name":"metric_collector","events_processed":12979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2595.8,"last_update":"2026-03-21T21:42:08.870977916Z"} +2026/03/21 21:42:13 ───────────────────────────────────────────────── +2026/03/21 21:42:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:42:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:42:13.878571384Z"} +2026/03/21 21:42:18 [transform_engine] {"stage_name":"transform_engine","events_processed":432,"events_dropped":0,"avg_latency_ms":189.77136894496437,"throughput_eps":0,"last_update":"2026-03-21T21:42:13.965872495Z"} +2026/03/21 21:42:18 [detection_layer] {"stage_name":"detection_layer","events_processed":432,"events_dropped":0,"avg_latency_ms":17.47500476647344,"throughput_eps":0,"last_update":"2026-03-21T21:42:13.965821848Z"} +2026/03/21 21:42:18 [log_collector] {"stage_name":"log_collector","events_processed":20551,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4110.2,"last_update":"2026-03-21T21:42:18.869395147Z"} +2026/03/21 21:42:18 [metric_collector] {"stage_name":"metric_collector","events_processed":12984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2596.8,"last_update":"2026-03-21T21:42:13.870485007Z"} +2026/03/21 21:42:18 ───────────────────────────────────────────────── +2026/03/21 21:42:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:42:23 [log_collector] {"stage_name":"log_collector","events_processed":20551,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4110.2,"last_update":"2026-03-21T21:42:23.87042223Z"} +2026/03/21 21:42:23 [metric_collector] {"stage_name":"metric_collector","events_processed":12989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2597.8,"last_update":"2026-03-21T21:42:18.869817055Z"} +2026/03/21 21:42:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:42:18.879421499Z"} +2026/03/21 21:42:23 [transform_engine] {"stage_name":"transform_engine","events_processed":433,"events_dropped":0,"avg_latency_ms":165.72036695597149,"throughput_eps":0,"last_update":"2026-03-21T21:42:19.035315319Z"} +2026/03/21 21:42:23 [detection_layer] {"stage_name":"detection_layer","events_processed":432,"events_dropped":0,"avg_latency_ms":17.47500476647344,"throughput_eps":0,"last_update":"2026-03-21T21:42:18.965771148Z"} +2026/03/21 21:42:23 ───────────────────────────────────────────────── +2026/03/21 21:42:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:42:28 [transform_engine] {"stage_name":"transform_engine","events_processed":433,"events_dropped":0,"avg_latency_ms":165.72036695597149,"throughput_eps":0,"last_update":"2026-03-21T21:42:23.965411035Z"} +2026/03/21 21:42:28 [detection_layer] {"stage_name":"detection_layer","events_processed":433,"events_dropped":0,"avg_latency_ms":18.206650613178752,"throughput_eps":0,"last_update":"2026-03-21T21:42:23.965291886Z"} +2026/03/21 21:42:28 [log_collector] {"stage_name":"log_collector","events_processed":20551,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4110.2,"last_update":"2026-03-21T21:42:23.87042223Z"} +2026/03/21 21:42:28 [metric_collector] {"stage_name":"metric_collector","events_processed":12994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2598.8,"last_update":"2026-03-21T21:42:23.87066724Z"} +2026/03/21 21:42:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:42:23.880066171Z"} +2026/03/21 21:42:28 ───────────────────────────────────────────────── +2026/03/21 21:42:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:42:33 [detection_layer] {"stage_name":"detection_layer","events_processed":433,"events_dropped":0,"avg_latency_ms":18.206650613178752,"throughput_eps":0,"last_update":"2026-03-21T21:42:28.965499882Z"} +2026/03/21 21:42:33 [log_collector] {"stage_name":"log_collector","events_processed":20551,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4110.2,"last_update":"2026-03-21T21:42:28.869731235Z"} +2026/03/21 21:42:33 [metric_collector] {"stage_name":"metric_collector","events_processed":12999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2599.8,"last_update":"2026-03-21T21:42:28.869910168Z"} +2026/03/21 21:42:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:42:28.879138572Z"} +2026/03/21 21:42:33 [transform_engine] {"stage_name":"transform_engine","events_processed":433,"events_dropped":0,"avg_latency_ms":165.72036695597149,"throughput_eps":0,"last_update":"2026-03-21T21:42:28.965515412Z"} +2026/03/21 21:42:33 ───────────────────────────────────────────────── +2026/03/21 21:42:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:42:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:42:33.878314581Z"} +2026/03/21 21:42:38 [transform_engine] {"stage_name":"transform_engine","events_processed":433,"events_dropped":0,"avg_latency_ms":165.72036695597149,"throughput_eps":0,"last_update":"2026-03-21T21:42:33.965619338Z"} +2026/03/21 21:42:38 [detection_layer] {"stage_name":"detection_layer","events_processed":433,"events_dropped":0,"avg_latency_ms":18.206650613178752,"throughput_eps":0,"last_update":"2026-03-21T21:42:33.96550518Z"} +2026/03/21 21:42:38 [log_collector] {"stage_name":"log_collector","events_processed":20551,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4110.2,"last_update":"2026-03-21T21:42:38.869619364Z"} +2026/03/21 21:42:38 [metric_collector] {"stage_name":"metric_collector","events_processed":13004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2600.8,"last_update":"2026-03-21T21:42:33.870040824Z"} +2026/03/21 21:42:38 ───────────────────────────────────────────────── +2026/03/21 21:42:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:42:43 [transform_engine] {"stage_name":"transform_engine","events_processed":433,"events_dropped":0,"avg_latency_ms":165.72036695597149,"throughput_eps":0,"last_update":"2026-03-21T21:42:38.965457495Z"} +2026/03/21 21:42:43 [detection_layer] {"stage_name":"detection_layer","events_processed":433,"events_dropped":0,"avg_latency_ms":18.206650613178752,"throughput_eps":0,"last_update":"2026-03-21T21:42:38.965419212Z"} +2026/03/21 21:42:43 [log_collector] {"stage_name":"log_collector","events_processed":20551,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4110.2,"last_update":"2026-03-21T21:42:38.869619364Z"} +2026/03/21 21:42:43 [metric_collector] {"stage_name":"metric_collector","events_processed":13009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2601.8,"last_update":"2026-03-21T21:42:38.870056441Z"} +2026/03/21 21:42:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5206,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:42:38.877251492Z"} +2026/03/21 21:42:43 ───────────────────────────────────────────────── +Saved state: 12 clusters, 20552 messages, reason: none +2026/03/21 21:42:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:42:48 [log_collector] {"stage_name":"log_collector","events_processed":20551,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4110.2,"last_update":"2026-03-21T21:42:43.869622686Z"} +2026/03/21 21:42:48 [metric_collector] {"stage_name":"metric_collector","events_processed":13014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2602.8,"last_update":"2026-03-21T21:42:43.869960564Z"} +2026/03/21 21:42:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:42:43.877479164Z"} +2026/03/21 21:42:48 [transform_engine] {"stage_name":"transform_engine","events_processed":433,"events_dropped":0,"avg_latency_ms":165.72036695597149,"throughput_eps":0,"last_update":"2026-03-21T21:42:43.965693793Z"} +2026/03/21 21:42:48 [detection_layer] {"stage_name":"detection_layer","events_processed":433,"events_dropped":0,"avg_latency_ms":18.206650613178752,"throughput_eps":0,"last_update":"2026-03-21T21:42:43.965768216Z"} +2026/03/21 21:42:48 ───────────────────────────────────────────────── +2026/03/21 21:42:49 [ANOMALY] time=2026-03-21T21:42:49Z score=0.8871 method=SEAD details=MAD!:w=0.22,s=0.93 RRCF-fast!:w=0.20,s=0.92 RRCF-mid!:w=0.18,s=0.92 RRCF-slow!:w=0.16,s=0.95 COPOD!:w=0.23,s=0.75 +2026/03/21 21:42:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:42:53 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:42:48.869839929Z"} +2026/03/21 21:42:53 [metric_collector] {"stage_name":"metric_collector","events_processed":13019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2603.8,"last_update":"2026-03-21T21:42:48.870337533Z"} +2026/03/21 21:42:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5210,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:42:48.877023107Z"} +2026/03/21 21:42:53 [transform_engine] {"stage_name":"transform_engine","events_processed":433,"events_dropped":0,"avg_latency_ms":165.72036695597149,"throughput_eps":0,"last_update":"2026-03-21T21:42:48.965127165Z"} +2026/03/21 21:42:53 [detection_layer] {"stage_name":"detection_layer","events_processed":433,"events_dropped":0,"avg_latency_ms":18.206650613178752,"throughput_eps":0,"last_update":"2026-03-21T21:42:48.966257349Z"} +2026/03/21 21:42:53 ───────────────────────────────────────────────── +2026/03/21 21:42:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:42:58 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:42:58.8702324Z"} +2026/03/21 21:42:58 [metric_collector] {"stage_name":"metric_collector","events_processed":13024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2604.8,"last_update":"2026-03-21T21:42:53.869825966Z"} +2026/03/21 21:42:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:42:53.876899302Z"} +2026/03/21 21:42:58 [transform_engine] {"stage_name":"transform_engine","events_processed":434,"events_dropped":0,"avg_latency_ms":152.85482116477718,"throughput_eps":0,"last_update":"2026-03-21T21:42:53.966129738Z"} +2026/03/21 21:42:58 [detection_layer] {"stage_name":"detection_layer","events_processed":434,"events_dropped":0,"avg_latency_ms":17.255142090543004,"throughput_eps":0,"last_update":"2026-03-21T21:42:53.966101695Z"} +2026/03/21 21:42:58 ───────────────────────────────────────────────── +2026/03/21 21:43:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:43:03 [transform_engine] {"stage_name":"transform_engine","events_processed":434,"events_dropped":0,"avg_latency_ms":152.85482116477718,"throughput_eps":0,"last_update":"2026-03-21T21:42:58.966130946Z"} +2026/03/21 21:43:03 [detection_layer] {"stage_name":"detection_layer","events_processed":434,"events_dropped":0,"avg_latency_ms":17.255142090543004,"throughput_eps":0,"last_update":"2026-03-21T21:42:58.966107211Z"} +2026/03/21 21:43:03 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:43:03.869663292Z"} +2026/03/21 21:43:03 [metric_collector] {"stage_name":"metric_collector","events_processed":13029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2605.8,"last_update":"2026-03-21T21:42:58.870675207Z"} +2026/03/21 21:43:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:42:58.8769059Z"} +2026/03/21 21:43:03 ───────────────────────────────────────────────── +2026/03/21 21:43:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:43:08 [detection_layer] {"stage_name":"detection_layer","events_processed":434,"events_dropped":0,"avg_latency_ms":17.255142090543004,"throughput_eps":0,"last_update":"2026-03-21T21:43:03.965654134Z"} +2026/03/21 21:43:08 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:43:08.869540001Z"} +2026/03/21 21:43:08 [metric_collector] {"stage_name":"metric_collector","events_processed":13034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2606.8,"last_update":"2026-03-21T21:43:03.870197334Z"} +2026/03/21 21:43:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:43:03.876450922Z"} +2026/03/21 21:43:08 [transform_engine] {"stage_name":"transform_engine","events_processed":434,"events_dropped":0,"avg_latency_ms":152.85482116477718,"throughput_eps":0,"last_update":"2026-03-21T21:43:03.965624849Z"} +2026/03/21 21:43:08 ───────────────────────────────────────────────── +2026/03/21 21:43:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:43:13 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:43:13.869672181Z"} +2026/03/21 21:43:13 [metric_collector] {"stage_name":"metric_collector","events_processed":13039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2607.8,"last_update":"2026-03-21T21:43:08.86992607Z"} +2026/03/21 21:43:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:43:08.877049333Z"} +2026/03/21 21:43:13 [transform_engine] {"stage_name":"transform_engine","events_processed":434,"events_dropped":0,"avg_latency_ms":152.85482116477718,"throughput_eps":0,"last_update":"2026-03-21T21:43:08.965144985Z"} +2026/03/21 21:43:13 [detection_layer] {"stage_name":"detection_layer","events_processed":434,"events_dropped":0,"avg_latency_ms":17.255142090543004,"throughput_eps":0,"last_update":"2026-03-21T21:43:08.966261132Z"} +2026/03/21 21:43:13 ───────────────────────────────────────────────── +2026/03/21 21:43:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:43:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:43:13.876758953Z"} +2026/03/21 21:43:18 [transform_engine] {"stage_name":"transform_engine","events_processed":434,"events_dropped":0,"avg_latency_ms":152.85482116477718,"throughput_eps":0,"last_update":"2026-03-21T21:43:13.965993928Z"} +2026/03/21 21:43:18 [detection_layer] {"stage_name":"detection_layer","events_processed":434,"events_dropped":0,"avg_latency_ms":17.255142090543004,"throughput_eps":0,"last_update":"2026-03-21T21:43:13.966016912Z"} +2026/03/21 21:43:18 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:43:13.869672181Z"} +2026/03/21 21:43:18 [metric_collector] {"stage_name":"metric_collector","events_processed":13044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2608.8,"last_update":"2026-03-21T21:43:13.869859409Z"} +2026/03/21 21:43:18 ───────────────────────────────────────────────── +2026/03/21 21:43:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:43:23 [transform_engine] {"stage_name":"transform_engine","events_processed":435,"events_dropped":0,"avg_latency_ms":135.89745993182174,"throughput_eps":0,"last_update":"2026-03-21T21:43:19.034136181Z"} +2026/03/21 21:43:23 [detection_layer] {"stage_name":"detection_layer","events_processed":434,"events_dropped":0,"avg_latency_ms":17.255142090543004,"throughput_eps":0,"last_update":"2026-03-21T21:43:18.966079738Z"} +2026/03/21 21:43:23 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:43:18.869974286Z"} +2026/03/21 21:43:23 [metric_collector] {"stage_name":"metric_collector","events_processed":13049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2609.8,"last_update":"2026-03-21T21:43:18.870114925Z"} +2026/03/21 21:43:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5222,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:43:18.876848581Z"} +2026/03/21 21:43:23 ───────────────────────────────────────────────── +2026/03/21 21:43:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:43:28 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:43:23.870523081Z"} +2026/03/21 21:43:28 [metric_collector] {"stage_name":"metric_collector","events_processed":13054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2610.8,"last_update":"2026-03-21T21:43:23.870745016Z"} +2026/03/21 21:43:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:43:23.87751414Z"} +2026/03/21 21:43:28 [transform_engine] {"stage_name":"transform_engine","events_processed":435,"events_dropped":0,"avg_latency_ms":135.89745993182174,"throughput_eps":0,"last_update":"2026-03-21T21:43:23.965704644Z"} +2026/03/21 21:43:28 [detection_layer] {"stage_name":"detection_layer","events_processed":435,"events_dropped":0,"avg_latency_ms":16.791054272434405,"throughput_eps":0,"last_update":"2026-03-21T21:43:23.965724953Z"} +2026/03/21 21:43:28 ───────────────────────────────────────────────── +2026/03/21 21:43:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:43:33 [detection_layer] {"stage_name":"detection_layer","events_processed":435,"events_dropped":0,"avg_latency_ms":16.791054272434405,"throughput_eps":0,"last_update":"2026-03-21T21:43:28.965394945Z"} +2026/03/21 21:43:33 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:43:33.869402526Z"} +2026/03/21 21:43:33 [metric_collector] {"stage_name":"metric_collector","events_processed":13059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2611.8,"last_update":"2026-03-21T21:43:28.869917445Z"} +2026/03/21 21:43:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:43:28.876209917Z"} +2026/03/21 21:43:33 [transform_engine] {"stage_name":"transform_engine","events_processed":435,"events_dropped":0,"avg_latency_ms":135.89745993182174,"throughput_eps":0,"last_update":"2026-03-21T21:43:28.965433419Z"} +2026/03/21 21:43:33 ───────────────────────────────────────────────── +2026/03/21 21:43:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:43:38 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:43:33.869402526Z"} +2026/03/21 21:43:38 [metric_collector] {"stage_name":"metric_collector","events_processed":13064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2612.8,"last_update":"2026-03-21T21:43:33.869754841Z"} +2026/03/21 21:43:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:43:33.876248799Z"} +2026/03/21 21:43:38 [transform_engine] {"stage_name":"transform_engine","events_processed":435,"events_dropped":0,"avg_latency_ms":135.89745993182174,"throughput_eps":0,"last_update":"2026-03-21T21:43:33.965431372Z"} +2026/03/21 21:43:38 [detection_layer] {"stage_name":"detection_layer","events_processed":435,"events_dropped":0,"avg_latency_ms":16.791054272434405,"throughput_eps":0,"last_update":"2026-03-21T21:43:33.965456761Z"} +2026/03/21 21:43:38 ───────────────────────────────────────────────── +2026/03/21 21:43:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:43:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:43:38.87575444Z"} +2026/03/21 21:43:43 [transform_engine] {"stage_name":"transform_engine","events_processed":435,"events_dropped":0,"avg_latency_ms":135.89745993182174,"throughput_eps":0,"last_update":"2026-03-21T21:43:38.96602613Z"} +2026/03/21 21:43:43 [detection_layer] {"stage_name":"detection_layer","events_processed":435,"events_dropped":0,"avg_latency_ms":16.791054272434405,"throughput_eps":0,"last_update":"2026-03-21T21:43:38.966006763Z"} +2026/03/21 21:43:43 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:43:43.869563029Z"} +2026/03/21 21:43:43 [metric_collector] {"stage_name":"metric_collector","events_processed":13069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2613.8,"last_update":"2026-03-21T21:43:38.869923242Z"} +2026/03/21 21:43:43 ───────────────────────────────────────────────── +2026/03/21 21:43:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:43:48 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:43:43.869563029Z"} +2026/03/21 21:43:48 [metric_collector] {"stage_name":"metric_collector","events_processed":13074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614.8,"last_update":"2026-03-21T21:43:43.869822435Z"} +2026/03/21 21:43:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:43:43.876206041Z"} +2026/03/21 21:43:48 [transform_engine] {"stage_name":"transform_engine","events_processed":435,"events_dropped":0,"avg_latency_ms":135.89745993182174,"throughput_eps":0,"last_update":"2026-03-21T21:43:43.965394907Z"} +2026/03/21 21:43:48 [detection_layer] {"stage_name":"detection_layer","events_processed":435,"events_dropped":0,"avg_latency_ms":16.791054272434405,"throughput_eps":0,"last_update":"2026-03-21T21:43:43.96543316Z"} +2026/03/21 21:43:48 ───────────────────────────────────────────────── +2026/03/21 21:43:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:43:53 [metric_collector] {"stage_name":"metric_collector","events_processed":13079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2615.8,"last_update":"2026-03-21T21:43:48.869746245Z"} +2026/03/21 21:43:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:43:48.87599346Z"} +2026/03/21 21:43:53 [transform_engine] {"stage_name":"transform_engine","events_processed":436,"events_dropped":0,"avg_latency_ms":120.5962233454574,"throughput_eps":0,"last_update":"2026-03-21T21:43:49.024487127Z"} +2026/03/21 21:43:53 [detection_layer] {"stage_name":"detection_layer","events_processed":435,"events_dropped":0,"avg_latency_ms":16.791054272434405,"throughput_eps":0,"last_update":"2026-03-21T21:43:48.966169456Z"} +2026/03/21 21:43:53 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:43:48.869459115Z"} +2026/03/21 21:43:53 ───────────────────────────────────────────────── +2026/03/21 21:43:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:43:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:43:53.876504825Z"} +2026/03/21 21:43:58 [transform_engine] {"stage_name":"transform_engine","events_processed":436,"events_dropped":0,"avg_latency_ms":120.5962233454574,"throughput_eps":0,"last_update":"2026-03-21T21:43:53.965693761Z"} +2026/03/21 21:43:58 [detection_layer] {"stage_name":"detection_layer","events_processed":436,"events_dropped":0,"avg_latency_ms":16.158549817947524,"throughput_eps":0,"last_update":"2026-03-21T21:43:53.96573042Z"} +2026/03/21 21:43:58 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:43:53.869820683Z"} +2026/03/21 21:43:58 [metric_collector] {"stage_name":"metric_collector","events_processed":13084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2616.8,"last_update":"2026-03-21T21:43:53.869732834Z"} +2026/03/21 21:43:58 ───────────────────────────────────────────────── +2026/03/21 21:44:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:44:03 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:43:58.869959426Z"} +2026/03/21 21:44:03 [metric_collector] {"stage_name":"metric_collector","events_processed":13088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2617.6,"last_update":"2026-03-21T21:43:58.869837963Z"} +2026/03/21 21:44:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:43:58.876790799Z"} +2026/03/21 21:44:03 [transform_engine] {"stage_name":"transform_engine","events_processed":436,"events_dropped":0,"avg_latency_ms":120.5962233454574,"throughput_eps":0,"last_update":"2026-03-21T21:43:58.966031074Z"} +2026/03/21 21:44:03 [detection_layer] {"stage_name":"detection_layer","events_processed":436,"events_dropped":0,"avg_latency_ms":16.158549817947524,"throughput_eps":0,"last_update":"2026-03-21T21:43:58.96600838Z"} +2026/03/21 21:44:03 ───────────────────────────────────────────────── +2026/03/21 21:44:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:44:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:44:08.869976354Z"} +2026/03/21 21:44:08 [transform_engine] {"stage_name":"transform_engine","events_processed":436,"events_dropped":0,"avg_latency_ms":120.5962233454574,"throughput_eps":0,"last_update":"2026-03-21T21:44:03.965392197Z"} +2026/03/21 21:44:08 [detection_layer] {"stage_name":"detection_layer","events_processed":436,"events_dropped":0,"avg_latency_ms":16.158549817947524,"throughput_eps":0,"last_update":"2026-03-21T21:44:03.965408699Z"} +2026/03/21 21:44:08 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:44:03.869391175Z"} +2026/03/21 21:44:08 [metric_collector] {"stage_name":"metric_collector","events_processed":13093,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.6,"last_update":"2026-03-21T21:44:03.869383931Z"} +2026/03/21 21:44:08 ───────────────────────────────────────────────── +2026/03/21 21:44:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:44:13 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:44:08.870038642Z"} +2026/03/21 21:44:13 [metric_collector] {"stage_name":"metric_collector","events_processed":13099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.8,"last_update":"2026-03-21T21:44:08.87028812Z"} +2026/03/21 21:44:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:44:08.869976354Z"} +2026/03/21 21:44:13 [transform_engine] {"stage_name":"transform_engine","events_processed":436,"events_dropped":0,"avg_latency_ms":120.5962233454574,"throughput_eps":0,"last_update":"2026-03-21T21:44:08.965665368Z"} +2026/03/21 21:44:13 [detection_layer] {"stage_name":"detection_layer","events_processed":436,"events_dropped":0,"avg_latency_ms":16.158549817947524,"throughput_eps":0,"last_update":"2026-03-21T21:44:08.965682972Z"} +2026/03/21 21:44:13 ───────────────────────────────────────────────── +2026/03/21 21:44:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:44:18 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:44:18.870101371Z"} +2026/03/21 21:44:18 [metric_collector] {"stage_name":"metric_collector","events_processed":13104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2620.8,"last_update":"2026-03-21T21:44:13.870548503Z"} +2026/03/21 21:44:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:44:13.876905408Z"} +2026/03/21 21:44:18 [transform_engine] {"stage_name":"transform_engine","events_processed":436,"events_dropped":0,"avg_latency_ms":120.5962233454574,"throughput_eps":0,"last_update":"2026-03-21T21:44:13.966109423Z"} +2026/03/21 21:44:18 [detection_layer] {"stage_name":"detection_layer","events_processed":436,"events_dropped":0,"avg_latency_ms":16.158549817947524,"throughput_eps":0,"last_update":"2026-03-21T21:44:13.966091488Z"} +2026/03/21 21:44:18 ───────────────────────────────────────────────── +2026/03/21 21:44:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:44:23 [detection_layer] {"stage_name":"detection_layer","events_processed":436,"events_dropped":0,"avg_latency_ms":16.158549817947524,"throughput_eps":0,"last_update":"2026-03-21T21:44:18.965735271Z"} +2026/03/21 21:44:23 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:44:23.869647308Z"} +2026/03/21 21:44:23 [metric_collector] {"stage_name":"metric_collector","events_processed":13109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2621.8,"last_update":"2026-03-21T21:44:18.870569507Z"} +2026/03/21 21:44:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5246,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:44:18.877561199Z"} +2026/03/21 21:44:23 [transform_engine] {"stage_name":"transform_engine","events_processed":437,"events_dropped":0,"avg_latency_ms":109.47196887636593,"throughput_eps":0,"last_update":"2026-03-21T21:44:19.030723026Z"} +2026/03/21 21:44:23 ───────────────────────────────────────────────── +2026/03/21 21:44:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:44:28 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:44:23.869647308Z"} +2026/03/21 21:44:28 [metric_collector] {"stage_name":"metric_collector","events_processed":13114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2622.8,"last_update":"2026-03-21T21:44:23.869818426Z"} +2026/03/21 21:44:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:44:23.876969552Z"} +2026/03/21 21:44:28 [transform_engine] {"stage_name":"transform_engine","events_processed":437,"events_dropped":0,"avg_latency_ms":109.47196887636593,"throughput_eps":0,"last_update":"2026-03-21T21:44:23.966091519Z"} +2026/03/21 21:44:28 [detection_layer] {"stage_name":"detection_layer","events_processed":437,"events_dropped":0,"avg_latency_ms":15.75658345435802,"throughput_eps":0,"last_update":"2026-03-21T21:44:23.966073155Z"} +2026/03/21 21:44:28 ───────────────────────────────────────────────── +2026/03/21 21:44:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:44:33 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:44:28.870188362Z"} +2026/03/21 21:44:33 [metric_collector] {"stage_name":"metric_collector","events_processed":13119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2623.8,"last_update":"2026-03-21T21:44:28.870504748Z"} +2026/03/21 21:44:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:44:28.876969569Z"} +2026/03/21 21:44:33 [transform_engine] {"stage_name":"transform_engine","events_processed":437,"events_dropped":0,"avg_latency_ms":109.47196887636593,"throughput_eps":0,"last_update":"2026-03-21T21:44:28.9650642Z"} +2026/03/21 21:44:33 [detection_layer] {"stage_name":"detection_layer","events_processed":437,"events_dropped":0,"avg_latency_ms":15.75658345435802,"throughput_eps":0,"last_update":"2026-03-21T21:44:28.966165769Z"} +2026/03/21 21:44:33 ───────────────────────────────────────────────── +2026/03/21 21:44:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:44:38 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:44:33.870093435Z"} +2026/03/21 21:44:38 [metric_collector] {"stage_name":"metric_collector","events_processed":13124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2624.8,"last_update":"2026-03-21T21:44:33.87057135Z"} +2026/03/21 21:44:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:44:33.876647828Z"} +2026/03/21 21:44:38 [transform_engine] {"stage_name":"transform_engine","events_processed":437,"events_dropped":0,"avg_latency_ms":109.47196887636593,"throughput_eps":0,"last_update":"2026-03-21T21:44:33.965853036Z"} +2026/03/21 21:44:38 [detection_layer] {"stage_name":"detection_layer","events_processed":437,"events_dropped":0,"avg_latency_ms":15.75658345435802,"throughput_eps":0,"last_update":"2026-03-21T21:44:33.965837506Z"} +2026/03/21 21:44:38 ───────────────────────────────────────────────── +2026/03/21 21:44:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:44:43 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:44:38.869459657Z"} +2026/03/21 21:44:43 [metric_collector] {"stage_name":"metric_collector","events_processed":13128,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2625.6,"last_update":"2026-03-21T21:44:38.869376869Z"} +2026/03/21 21:44:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:44:38.876685385Z"} +2026/03/21 21:44:43 [transform_engine] {"stage_name":"transform_engine","events_processed":437,"events_dropped":0,"avg_latency_ms":109.47196887636593,"throughput_eps":0,"last_update":"2026-03-21T21:44:38.965856447Z"} +2026/03/21 21:44:43 [detection_layer] {"stage_name":"detection_layer","events_processed":437,"events_dropped":0,"avg_latency_ms":15.75658345435802,"throughput_eps":0,"last_update":"2026-03-21T21:44:38.965835528Z"} +2026/03/21 21:44:43 ───────────────────────────────────────────────── +2026/03/21 21:44:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:44:48 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:44:43.869816356Z"} +2026/03/21 21:44:48 [metric_collector] {"stage_name":"metric_collector","events_processed":13134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2626.8,"last_update":"2026-03-21T21:44:43.869965872Z"} +2026/03/21 21:44:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:44:43.877013389Z"} +2026/03/21 21:44:48 [transform_engine] {"stage_name":"transform_engine","events_processed":437,"events_dropped":0,"avg_latency_ms":109.47196887636593,"throughput_eps":0,"last_update":"2026-03-21T21:44:43.965128038Z"} +2026/03/21 21:44:48 [detection_layer] {"stage_name":"detection_layer","events_processed":437,"events_dropped":0,"avg_latency_ms":15.75658345435802,"throughput_eps":0,"last_update":"2026-03-21T21:44:43.966235599Z"} +2026/03/21 21:44:48 ───────────────────────────────────────────────── +2026/03/21 21:44:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:44:53 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:44:48.869586674Z"} +2026/03/21 21:44:53 [metric_collector] {"stage_name":"metric_collector","events_processed":13139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2627.8,"last_update":"2026-03-21T21:44:48.86976791Z"} +2026/03/21 21:44:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:44:48.876469776Z"} +2026/03/21 21:44:53 [transform_engine] {"stage_name":"transform_engine","events_processed":438,"events_dropped":0,"avg_latency_ms":100.09499650109275,"throughput_eps":0,"last_update":"2026-03-21T21:44:49.028254035Z"} +2026/03/21 21:44:53 [detection_layer] {"stage_name":"detection_layer","events_processed":437,"events_dropped":0,"avg_latency_ms":15.75658345435802,"throughput_eps":0,"last_update":"2026-03-21T21:44:48.965639796Z"} +2026/03/21 21:44:53 ───────────────────────────────────────────────── +2026/03/21 21:44:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:44:58 [transform_engine] {"stage_name":"transform_engine","events_processed":438,"events_dropped":0,"avg_latency_ms":100.09499650109275,"throughput_eps":0,"last_update":"2026-03-21T21:44:53.965598985Z"} +2026/03/21 21:44:58 [detection_layer] {"stage_name":"detection_layer","events_processed":438,"events_dropped":0,"avg_latency_ms":15.951461363486418,"throughput_eps":0,"last_update":"2026-03-21T21:44:53.965626097Z"} +2026/03/21 21:44:58 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:44:53.86982114Z"} +2026/03/21 21:44:58 [metric_collector] {"stage_name":"metric_collector","events_processed":13144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2628.8,"last_update":"2026-03-21T21:44:53.870293684Z"} +2026/03/21 21:44:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:44:53.876384911Z"} +2026/03/21 21:44:58 ───────────────────────────────────────────────── +2026/03/21 21:45:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:45:03 [transform_engine] {"stage_name":"transform_engine","events_processed":438,"events_dropped":0,"avg_latency_ms":100.09499650109275,"throughput_eps":0,"last_update":"2026-03-21T21:44:58.966068901Z"} +2026/03/21 21:45:03 [detection_layer] {"stage_name":"detection_layer","events_processed":438,"events_dropped":0,"avg_latency_ms":15.951461363486418,"throughput_eps":0,"last_update":"2026-03-21T21:44:58.966048623Z"} +2026/03/21 21:45:03 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:44:58.869751924Z"} +2026/03/21 21:45:03 [metric_collector] {"stage_name":"metric_collector","events_processed":13149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2629.8,"last_update":"2026-03-21T21:44:58.870124497Z"} +2026/03/21 21:45:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:44:58.876845199Z"} +2026/03/21 21:45:03 ───────────────────────────────────────────────── +2026/03/21 21:45:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:45:08 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:45:03.869730707Z"} +2026/03/21 21:45:08 [metric_collector] {"stage_name":"metric_collector","events_processed":13154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2630.8,"last_update":"2026-03-21T21:45:03.870239672Z"} +2026/03/21 21:45:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:45:03.877470541Z"} +2026/03/21 21:45:08 [transform_engine] {"stage_name":"transform_engine","events_processed":438,"events_dropped":0,"avg_latency_ms":100.09499650109275,"throughput_eps":0,"last_update":"2026-03-21T21:45:03.965780333Z"} +2026/03/21 21:45:08 [detection_layer] {"stage_name":"detection_layer","events_processed":438,"events_dropped":0,"avg_latency_ms":15.951461363486418,"throughput_eps":0,"last_update":"2026-03-21T21:45:03.965650564Z"} +2026/03/21 21:45:08 ───────────────────────────────────────────────── +2026/03/21 21:45:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:45:13 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:45:13.869500489Z"} +2026/03/21 21:45:13 [metric_collector] {"stage_name":"metric_collector","events_processed":13159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2631.8,"last_update":"2026-03-21T21:45:08.870513513Z"} +2026/03/21 21:45:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:45:08.876824821Z"} +2026/03/21 21:45:13 [transform_engine] {"stage_name":"transform_engine","events_processed":438,"events_dropped":0,"avg_latency_ms":100.09499650109275,"throughput_eps":0,"last_update":"2026-03-21T21:45:08.965965524Z"} +2026/03/21 21:45:13 [detection_layer] {"stage_name":"detection_layer","events_processed":438,"events_dropped":0,"avg_latency_ms":15.951461363486418,"throughput_eps":0,"last_update":"2026-03-21T21:45:08.966027933Z"} +2026/03/21 21:45:13 ───────────────────────────────────────────────── +2026/03/21 21:45:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:45:18 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:45:18.869906103Z"} +2026/03/21 21:45:18 [metric_collector] {"stage_name":"metric_collector","events_processed":13164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2632.8,"last_update":"2026-03-21T21:45:13.86999766Z"} +2026/03/21 21:45:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:45:13.876566882Z"} +2026/03/21 21:45:18 [transform_engine] {"stage_name":"transform_engine","events_processed":438,"events_dropped":0,"avg_latency_ms":100.09499650109275,"throughput_eps":0,"last_update":"2026-03-21T21:45:13.965790945Z"} +2026/03/21 21:45:18 [detection_layer] {"stage_name":"detection_layer","events_processed":438,"events_dropped":0,"avg_latency_ms":15.951461363486418,"throughput_eps":0,"last_update":"2026-03-21T21:45:13.965755027Z"} +2026/03/21 21:45:18 ───────────────────────────────────────────────── +2026/03/21 21:45:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:45:23 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:45:18.869906103Z"} +2026/03/21 21:45:23 [metric_collector] {"stage_name":"metric_collector","events_processed":13169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2633.8,"last_update":"2026-03-21T21:45:18.870386513Z"} +2026/03/21 21:45:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:45:18.877246111Z"} +2026/03/21 21:45:23 [transform_engine] {"stage_name":"transform_engine","events_processed":438,"events_dropped":0,"avg_latency_ms":100.09499650109275,"throughput_eps":0,"last_update":"2026-03-21T21:45:18.965405826Z"} +2026/03/21 21:45:23 [detection_layer] {"stage_name":"detection_layer","events_processed":438,"events_dropped":0,"avg_latency_ms":15.951461363486418,"throughput_eps":0,"last_update":"2026-03-21T21:45:18.966072021Z"} +2026/03/21 21:45:23 ───────────────────────────────────────────────── +2026/03/21 21:45:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:45:28 [detection_layer] {"stage_name":"detection_layer","events_processed":439,"events_dropped":0,"avg_latency_ms":15.561141490789135,"throughput_eps":0,"last_update":"2026-03-21T21:45:23.965508639Z"} +2026/03/21 21:45:28 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:45:23.869674076Z"} +2026/03/21 21:45:28 [metric_collector] {"stage_name":"metric_collector","events_processed":13174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2634.8,"last_update":"2026-03-21T21:45:23.870012854Z"} +2026/03/21 21:45:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:45:23.876358989Z"} +2026/03/21 21:45:28 [transform_engine] {"stage_name":"transform_engine","events_processed":439,"events_dropped":0,"avg_latency_ms":92.7010088008742,"throughput_eps":0,"last_update":"2026-03-21T21:45:23.965522276Z"} +2026/03/21 21:45:28 ───────────────────────────────────────────────── +2026/03/21 21:45:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:45:33 [detection_layer] {"stage_name":"detection_layer","events_processed":439,"events_dropped":0,"avg_latency_ms":15.561141490789135,"throughput_eps":0,"last_update":"2026-03-21T21:45:28.965815529Z"} +2026/03/21 21:45:33 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:45:33.869508969Z"} +2026/03/21 21:45:33 [metric_collector] {"stage_name":"metric_collector","events_processed":13179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2635.8,"last_update":"2026-03-21T21:45:28.869640824Z"} +2026/03/21 21:45:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:45:28.876660879Z"} +2026/03/21 21:45:33 [transform_engine] {"stage_name":"transform_engine","events_processed":439,"events_dropped":0,"avg_latency_ms":92.7010088008742,"throughput_eps":0,"last_update":"2026-03-21T21:45:28.965859774Z"} +2026/03/21 21:45:33 ───────────────────────────────────────────────── +2026/03/21 21:45:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:45:38 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:45:38.869808741Z"} +2026/03/21 21:45:38 [metric_collector] {"stage_name":"metric_collector","events_processed":13184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2636.8,"last_update":"2026-03-21T21:45:33.869750191Z"} +2026/03/21 21:45:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5276,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:45:33.876376622Z"} +2026/03/21 21:45:38 [transform_engine] {"stage_name":"transform_engine","events_processed":439,"events_dropped":0,"avg_latency_ms":92.7010088008742,"throughput_eps":0,"last_update":"2026-03-21T21:45:33.965547774Z"} +2026/03/21 21:45:38 [detection_layer] {"stage_name":"detection_layer","events_processed":439,"events_dropped":0,"avg_latency_ms":15.561141490789135,"throughput_eps":0,"last_update":"2026-03-21T21:45:33.965522776Z"} +2026/03/21 21:45:38 ───────────────────────────────────────────────── +2026/03/21 21:45:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:45:43 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:45:38.869808741Z"} +2026/03/21 21:45:43 [metric_collector] {"stage_name":"metric_collector","events_processed":13189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2637.8,"last_update":"2026-03-21T21:45:38.869911347Z"} +2026/03/21 21:45:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:45:38.876514644Z"} +2026/03/21 21:45:43 [transform_engine] {"stage_name":"transform_engine","events_processed":439,"events_dropped":0,"avg_latency_ms":92.7010088008742,"throughput_eps":0,"last_update":"2026-03-21T21:45:38.965680807Z"} +2026/03/21 21:45:43 [detection_layer] {"stage_name":"detection_layer","events_processed":439,"events_dropped":0,"avg_latency_ms":15.561141490789135,"throughput_eps":0,"last_update":"2026-03-21T21:45:38.965725933Z"} +2026/03/21 21:45:43 ───────────────────────────────────────────────── +2026/03/21 21:45:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:45:48 [transform_engine] {"stage_name":"transform_engine","events_processed":439,"events_dropped":0,"avg_latency_ms":92.7010088008742,"throughput_eps":0,"last_update":"2026-03-21T21:45:43.965633525Z"} +2026/03/21 21:45:48 [detection_layer] {"stage_name":"detection_layer","events_processed":439,"events_dropped":0,"avg_latency_ms":15.561141490789135,"throughput_eps":0,"last_update":"2026-03-21T21:45:43.965650087Z"} +2026/03/21 21:45:48 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:45:43.869859427Z"} +2026/03/21 21:45:48 [metric_collector] {"stage_name":"metric_collector","events_processed":13194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2638.8,"last_update":"2026-03-21T21:45:43.870078837Z"} +2026/03/21 21:45:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:45:43.876432045Z"} +2026/03/21 21:45:48 ───────────────────────────────────────────────── +2026/03/21 21:45:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:45:53 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:45:48.869610719Z"} +2026/03/21 21:45:53 [metric_collector] {"stage_name":"metric_collector","events_processed":13199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2639.8,"last_update":"2026-03-21T21:45:48.869812415Z"} +2026/03/21 21:45:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:45:48.876953111Z"} +2026/03/21 21:45:53 [transform_engine] {"stage_name":"transform_engine","events_processed":440,"events_dropped":0,"avg_latency_ms":86.40081124069937,"throughput_eps":0,"last_update":"2026-03-21T21:45:49.026263142Z"} +2026/03/21 21:45:53 [detection_layer] {"stage_name":"detection_layer","events_processed":439,"events_dropped":0,"avg_latency_ms":15.561141490789135,"throughput_eps":0,"last_update":"2026-03-21T21:45:48.966144411Z"} +2026/03/21 21:45:53 ───────────────────────────────────────────────── +2026/03/21 21:45:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:45:58 [transform_engine] {"stage_name":"transform_engine","events_processed":440,"events_dropped":0,"avg_latency_ms":86.40081124069937,"throughput_eps":0,"last_update":"2026-03-21T21:45:53.965308727Z"} +2026/03/21 21:45:58 [detection_layer] {"stage_name":"detection_layer","events_processed":440,"events_dropped":0,"avg_latency_ms":15.18273719263131,"throughput_eps":0,"last_update":"2026-03-21T21:45:53.965289329Z"} +2026/03/21 21:45:58 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:45:53.870317027Z"} +2026/03/21 21:45:58 [metric_collector] {"stage_name":"metric_collector","events_processed":13204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2640.8,"last_update":"2026-03-21T21:45:53.870566765Z"} +2026/03/21 21:45:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:45:53.877106109Z"} +2026/03/21 21:45:58 ───────────────────────────────────────────────── +2026/03/21 21:46:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:46:03 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:46:03.869837703Z"} +2026/03/21 21:46:03 [metric_collector] {"stage_name":"metric_collector","events_processed":13209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2641.8,"last_update":"2026-03-21T21:45:58.870318868Z"} +2026/03/21 21:46:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5286,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:45:58.877224092Z"} +2026/03/21 21:46:03 [transform_engine] {"stage_name":"transform_engine","events_processed":440,"events_dropped":0,"avg_latency_ms":86.40081124069937,"throughput_eps":0,"last_update":"2026-03-21T21:45:58.965418665Z"} +2026/03/21 21:46:03 [detection_layer] {"stage_name":"detection_layer","events_processed":440,"events_dropped":0,"avg_latency_ms":15.18273719263131,"throughput_eps":0,"last_update":"2026-03-21T21:45:58.965434935Z"} +2026/03/21 21:46:03 ───────────────────────────────────────────────── +2026/03/21 21:46:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:46:08 [detection_layer] {"stage_name":"detection_layer","events_processed":440,"events_dropped":0,"avg_latency_ms":15.18273719263131,"throughput_eps":0,"last_update":"2026-03-21T21:46:03.965689039Z"} +2026/03/21 21:46:08 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:46:08.869824837Z"} +2026/03/21 21:46:08 [metric_collector] {"stage_name":"metric_collector","events_processed":13214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2642.8,"last_update":"2026-03-21T21:46:03.87022757Z"} +2026/03/21 21:46:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:46:03.877492174Z"} +2026/03/21 21:46:08 [transform_engine] {"stage_name":"transform_engine","events_processed":440,"events_dropped":0,"avg_latency_ms":86.40081124069937,"throughput_eps":0,"last_update":"2026-03-21T21:46:03.965724737Z"} +2026/03/21 21:46:08 ───────────────────────────────────────────────── +2026/03/21 21:46:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:46:13 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:46:08.869824837Z"} +2026/03/21 21:46:13 [metric_collector] {"stage_name":"metric_collector","events_processed":13219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2643.8,"last_update":"2026-03-21T21:46:08.870188393Z"} +2026/03/21 21:46:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:46:08.876250954Z"} +2026/03/21 21:46:13 [transform_engine] {"stage_name":"transform_engine","events_processed":440,"events_dropped":0,"avg_latency_ms":86.40081124069937,"throughput_eps":0,"last_update":"2026-03-21T21:46:08.965435261Z"} +2026/03/21 21:46:13 [detection_layer] {"stage_name":"detection_layer","events_processed":440,"events_dropped":0,"avg_latency_ms":15.18273719263131,"throughput_eps":0,"last_update":"2026-03-21T21:46:08.965475048Z"} +2026/03/21 21:46:13 ───────────────────────────────────────────────── +2026/03/21 21:46:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:46:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:46:13.87674136Z"} +2026/03/21 21:46:18 [transform_engine] {"stage_name":"transform_engine","events_processed":440,"events_dropped":0,"avg_latency_ms":86.40081124069937,"throughput_eps":0,"last_update":"2026-03-21T21:46:13.965935935Z"} +2026/03/21 21:46:18 [detection_layer] {"stage_name":"detection_layer","events_processed":440,"events_dropped":0,"avg_latency_ms":15.18273719263131,"throughput_eps":0,"last_update":"2026-03-21T21:46:13.96595935Z"} +2026/03/21 21:46:18 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:46:13.869420598Z"} +2026/03/21 21:46:18 [metric_collector] {"stage_name":"metric_collector","events_processed":13224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2644.8,"last_update":"2026-03-21T21:46:13.869840012Z"} +2026/03/21 21:46:18 ───────────────────────────────────────────────── +2026/03/21 21:46:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:46:23 [transform_engine] {"stage_name":"transform_engine","events_processed":441,"events_dropped":0,"avg_latency_ms":81.46345019255949,"throughput_eps":0,"last_update":"2026-03-21T21:46:19.027399627Z"} +2026/03/21 21:46:23 [detection_layer] {"stage_name":"detection_layer","events_processed":440,"events_dropped":0,"avg_latency_ms":15.18273719263131,"throughput_eps":0,"last_update":"2026-03-21T21:46:18.965736238Z"} +2026/03/21 21:46:23 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:46:18.869794259Z"} +2026/03/21 21:46:23 [metric_collector] {"stage_name":"metric_collector","events_processed":13229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2645.8,"last_update":"2026-03-21T21:46:18.870076389Z"} +2026/03/21 21:46:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:46:18.877519995Z"} +2026/03/21 21:46:23 ───────────────────────────────────────────────── +2026/03/21 21:46:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:46:28 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:46:23.870231442Z"} +2026/03/21 21:46:28 [metric_collector] {"stage_name":"metric_collector","events_processed":13234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2646.8,"last_update":"2026-03-21T21:46:23.87061672Z"} +2026/03/21 21:46:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:46:23.879520011Z"} +2026/03/21 21:46:28 [transform_engine] {"stage_name":"transform_engine","events_processed":441,"events_dropped":0,"avg_latency_ms":81.46345019255949,"throughput_eps":0,"last_update":"2026-03-21T21:46:23.965701878Z"} +2026/03/21 21:46:28 [detection_layer] {"stage_name":"detection_layer","events_processed":441,"events_dropped":0,"avg_latency_ms":14.98236355410505,"throughput_eps":0,"last_update":"2026-03-21T21:46:23.965740212Z"} +2026/03/21 21:46:28 ───────────────────────────────────────────────── +2026/03/21 21:46:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:46:33 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:46:33.870089647Z"} +2026/03/21 21:46:33 [metric_collector] {"stage_name":"metric_collector","events_processed":13239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2647.8,"last_update":"2026-03-21T21:46:28.870411885Z"} +2026/03/21 21:46:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:46:28.877856813Z"} +2026/03/21 21:46:33 [transform_engine] {"stage_name":"transform_engine","events_processed":441,"events_dropped":0,"avg_latency_ms":81.46345019255949,"throughput_eps":0,"last_update":"2026-03-21T21:46:28.966084198Z"} +2026/03/21 21:46:33 [detection_layer] {"stage_name":"detection_layer","events_processed":441,"events_dropped":0,"avg_latency_ms":14.98236355410505,"throughput_eps":0,"last_update":"2026-03-21T21:46:28.966055854Z"} +2026/03/21 21:46:33 ───────────────────────────────────────────────── +2026/03/21 21:46:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:46:38 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:46:33.870089647Z"} +2026/03/21 21:46:38 [metric_collector] {"stage_name":"metric_collector","events_processed":13244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2648.8,"last_update":"2026-03-21T21:46:33.870505665Z"} +2026/03/21 21:46:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:46:33.877151302Z"} +2026/03/21 21:46:38 [transform_engine] {"stage_name":"transform_engine","events_processed":441,"events_dropped":0,"avg_latency_ms":81.46345019255949,"throughput_eps":0,"last_update":"2026-03-21T21:46:33.965399757Z"} +2026/03/21 21:46:38 [detection_layer] {"stage_name":"detection_layer","events_processed":441,"events_dropped":0,"avg_latency_ms":14.98236355410505,"throughput_eps":0,"last_update":"2026-03-21T21:46:33.965387954Z"} +2026/03/21 21:46:38 ───────────────────────────────────────────────── +2026/03/21 21:46:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:46:43 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:46:43.870105639Z"} +2026/03/21 21:46:43 [metric_collector] {"stage_name":"metric_collector","events_processed":13249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2649.8,"last_update":"2026-03-21T21:46:38.870372906Z"} +2026/03/21 21:46:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:46:38.880439085Z"} +2026/03/21 21:46:43 [transform_engine] {"stage_name":"transform_engine","events_processed":441,"events_dropped":0,"avg_latency_ms":81.46345019255949,"throughput_eps":0,"last_update":"2026-03-21T21:46:38.96564892Z"} +2026/03/21 21:46:43 [detection_layer] {"stage_name":"detection_layer","events_processed":441,"events_dropped":0,"avg_latency_ms":14.98236355410505,"throughput_eps":0,"last_update":"2026-03-21T21:46:38.96563803Z"} +2026/03/21 21:46:43 ───────────────────────────────────────────────── +2026/03/21 21:46:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:46:48 [transform_engine] {"stage_name":"transform_engine","events_processed":441,"events_dropped":0,"avg_latency_ms":81.46345019255949,"throughput_eps":0,"last_update":"2026-03-21T21:46:43.965652852Z"} +2026/03/21 21:46:48 [detection_layer] {"stage_name":"detection_layer","events_processed":441,"events_dropped":0,"avg_latency_ms":14.98236355410505,"throughput_eps":0,"last_update":"2026-03-21T21:46:43.965643745Z"} +2026/03/21 21:46:48 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:46:43.870105639Z"} +2026/03/21 21:46:48 [metric_collector] {"stage_name":"metric_collector","events_processed":13254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2650.8,"last_update":"2026-03-21T21:46:43.87046084Z"} +2026/03/21 21:46:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:46:43.877476566Z"} +2026/03/21 21:46:48 ───────────────────────────────────────────────── +2026/03/21 21:46:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:46:53 [detection_layer] {"stage_name":"detection_layer","events_processed":441,"events_dropped":0,"avg_latency_ms":14.98236355410505,"throughput_eps":0,"last_update":"2026-03-21T21:46:48.965461441Z"} +2026/03/21 21:46:53 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:46:48.870054366Z"} +2026/03/21 21:46:53 [metric_collector] {"stage_name":"metric_collector","events_processed":13259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2651.8,"last_update":"2026-03-21T21:46:48.870588549Z"} +2026/03/21 21:46:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:46:48.878286613Z"} +2026/03/21 21:46:53 [transform_engine] {"stage_name":"transform_engine","events_processed":442,"events_dropped":0,"avg_latency_ms":77.9998047540476,"throughput_eps":0,"last_update":"2026-03-21T21:46:49.029638053Z"} +2026/03/21 21:46:53 ───────────────────────────────────────────────── +2026/03/21 21:46:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:46:58 [transform_engine] {"stage_name":"transform_engine","events_processed":442,"events_dropped":0,"avg_latency_ms":77.9998047540476,"throughput_eps":0,"last_update":"2026-03-21T21:46:53.96567057Z"} +2026/03/21 21:46:58 [detection_layer] {"stage_name":"detection_layer","events_processed":442,"events_dropped":0,"avg_latency_ms":15.05020584328404,"throughput_eps":0,"last_update":"2026-03-21T21:46:53.965649269Z"} +2026/03/21 21:46:58 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:46:58.869876652Z"} +2026/03/21 21:46:58 [metric_collector] {"stage_name":"metric_collector","events_processed":13264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2652.8,"last_update":"2026-03-21T21:46:53.870523332Z"} +2026/03/21 21:46:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:46:53.877469725Z"} +2026/03/21 21:46:58 ───────────────────────────────────────────────── +2026/03/21 21:47:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:47:03 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:47:03.870248603Z"} +2026/03/21 21:47:03 [metric_collector] {"stage_name":"metric_collector","events_processed":13269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2653.8,"last_update":"2026-03-21T21:46:58.870090491Z"} +2026/03/21 21:47:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:46:58.878586432Z"} +2026/03/21 21:47:03 [transform_engine] {"stage_name":"transform_engine","events_processed":442,"events_dropped":0,"avg_latency_ms":77.9998047540476,"throughput_eps":0,"last_update":"2026-03-21T21:46:58.965841194Z"} +2026/03/21 21:47:03 [detection_layer] {"stage_name":"detection_layer","events_processed":442,"events_dropped":0,"avg_latency_ms":15.05020584328404,"throughput_eps":0,"last_update":"2026-03-21T21:46:58.965798613Z"} +2026/03/21 21:47:03 ───────────────────────────────────────────────── +2026/03/21 21:47:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:47:08 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:47:08.870026739Z"} +2026/03/21 21:47:08 [metric_collector] {"stage_name":"metric_collector","events_processed":13274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2654.8,"last_update":"2026-03-21T21:47:03.870574848Z"} +2026/03/21 21:47:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:47:03.876872018Z"} +2026/03/21 21:47:08 [transform_engine] {"stage_name":"transform_engine","events_processed":442,"events_dropped":0,"avg_latency_ms":77.9998047540476,"throughput_eps":0,"last_update":"2026-03-21T21:47:03.966092694Z"} +2026/03/21 21:47:08 [detection_layer] {"stage_name":"detection_layer","events_processed":442,"events_dropped":0,"avg_latency_ms":15.05020584328404,"throughput_eps":0,"last_update":"2026-03-21T21:47:03.966062627Z"} +2026/03/21 21:47:08 ───────────────────────────────────────────────── +2026/03/21 21:47:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:47:13 [detection_layer] {"stage_name":"detection_layer","events_processed":442,"events_dropped":0,"avg_latency_ms":15.05020584328404,"throughput_eps":0,"last_update":"2026-03-21T21:47:08.965296872Z"} +2026/03/21 21:47:13 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:47:13.87030082Z"} +2026/03/21 21:47:13 [metric_collector] {"stage_name":"metric_collector","events_processed":13279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2655.8,"last_update":"2026-03-21T21:47:08.870285295Z"} +2026/03/21 21:47:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:47:08.877113462Z"} +2026/03/21 21:47:13 [transform_engine] {"stage_name":"transform_engine","events_processed":442,"events_dropped":0,"avg_latency_ms":77.9998047540476,"throughput_eps":0,"last_update":"2026-03-21T21:47:08.965343762Z"} +2026/03/21 21:47:13 ───────────────────────────────────────────────── +2026/03/21 21:47:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:47:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:47:13.879376822Z"} +2026/03/21 21:47:18 [transform_engine] {"stage_name":"transform_engine","events_processed":442,"events_dropped":0,"avg_latency_ms":77.9998047540476,"throughput_eps":0,"last_update":"2026-03-21T21:47:13.965518372Z"} +2026/03/21 21:47:18 [detection_layer] {"stage_name":"detection_layer","events_processed":442,"events_dropped":0,"avg_latency_ms":15.05020584328404,"throughput_eps":0,"last_update":"2026-03-21T21:47:13.965551736Z"} +2026/03/21 21:47:18 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:47:13.87030082Z"} +2026/03/21 21:47:18 [metric_collector] {"stage_name":"metric_collector","events_processed":13284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2656.8,"last_update":"2026-03-21T21:47:13.870832719Z"} +2026/03/21 21:47:18 ───────────────────────────────────────────────── +2026/03/21 21:47:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:47:23 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:47:18.869395664Z"} +2026/03/21 21:47:23 [metric_collector] {"stage_name":"metric_collector","events_processed":13289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2657.8,"last_update":"2026-03-21T21:47:18.869618301Z"} +2026/03/21 21:47:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:47:18.877007212Z"} +2026/03/21 21:47:23 [transform_engine] {"stage_name":"transform_engine","events_processed":443,"events_dropped":0,"avg_latency_ms":74.78456920323808,"throughput_eps":0,"last_update":"2026-03-21T21:47:19.026998728Z"} +2026/03/21 21:47:23 [detection_layer] {"stage_name":"detection_layer","events_processed":442,"events_dropped":0,"avg_latency_ms":15.05020584328404,"throughput_eps":0,"last_update":"2026-03-21T21:47:18.96617158Z"} +2026/03/21 21:47:23 ───────────────────────────────────────────────── +2026/03/21 21:47:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:47:28 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:47:23.869581106Z"} +2026/03/21 21:47:28 [metric_collector] {"stage_name":"metric_collector","events_processed":13294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2658.8,"last_update":"2026-03-21T21:47:23.869754729Z"} +2026/03/21 21:47:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5320,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:47:23.878108178Z"} +2026/03/21 21:47:28 [transform_engine] {"stage_name":"transform_engine","events_processed":443,"events_dropped":0,"avg_latency_ms":74.78456920323808,"throughput_eps":0,"last_update":"2026-03-21T21:47:23.965251987Z"} +2026/03/21 21:47:28 [detection_layer] {"stage_name":"detection_layer","events_processed":443,"events_dropped":0,"avg_latency_ms":14.840598074627234,"throughput_eps":0,"last_update":"2026-03-21T21:47:23.965257688Z"} +2026/03/21 21:47:28 ───────────────────────────────────────────────── +2026/03/21 21:47:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:47:33 [transform_engine] {"stage_name":"transform_engine","events_processed":443,"events_dropped":0,"avg_latency_ms":74.78456920323808,"throughput_eps":0,"last_update":"2026-03-21T21:47:28.965917288Z"} +2026/03/21 21:47:33 [detection_layer] {"stage_name":"detection_layer","events_processed":443,"events_dropped":0,"avg_latency_ms":14.840598074627234,"throughput_eps":0,"last_update":"2026-03-21T21:47:28.965937908Z"} +2026/03/21 21:47:33 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:47:28.869505499Z"} +2026/03/21 21:47:33 [metric_collector] {"stage_name":"metric_collector","events_processed":13299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2659.8,"last_update":"2026-03-21T21:47:28.869759876Z"} +2026/03/21 21:47:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:47:28.876677084Z"} +2026/03/21 21:47:33 ───────────────────────────────────────────────── +2026/03/21 21:47:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:47:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:47:33.878646141Z"} +2026/03/21 21:47:38 [transform_engine] {"stage_name":"transform_engine","events_processed":443,"events_dropped":0,"avg_latency_ms":74.78456920323808,"throughput_eps":0,"last_update":"2026-03-21T21:47:33.965848412Z"} +2026/03/21 21:47:38 [detection_layer] {"stage_name":"detection_layer","events_processed":443,"events_dropped":0,"avg_latency_ms":14.840598074627234,"throughput_eps":0,"last_update":"2026-03-21T21:47:33.96583667Z"} +2026/03/21 21:47:38 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:47:38.869914183Z"} +2026/03/21 21:47:38 [metric_collector] {"stage_name":"metric_collector","events_processed":13304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2660.8,"last_update":"2026-03-21T21:47:33.870110564Z"} +2026/03/21 21:47:38 ───────────────────────────────────────────────── +2026/03/21 21:47:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:47:43 [metric_collector] {"stage_name":"metric_collector","events_processed":13309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2661.8,"last_update":"2026-03-21T21:47:38.870175333Z"} +2026/03/21 21:47:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:47:38.876569478Z"} +2026/03/21 21:47:43 [transform_engine] {"stage_name":"transform_engine","events_processed":443,"events_dropped":0,"avg_latency_ms":74.78456920323808,"throughput_eps":0,"last_update":"2026-03-21T21:47:38.965762753Z"} +2026/03/21 21:47:43 [detection_layer] {"stage_name":"detection_layer","events_processed":443,"events_dropped":0,"avg_latency_ms":14.840598074627234,"throughput_eps":0,"last_update":"2026-03-21T21:47:38.965750059Z"} +2026/03/21 21:47:43 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:47:38.869914183Z"} +2026/03/21 21:47:43 ───────────────────────────────────────────────── +Saved state: 12 clusters, 20557 messages, reason: none +2026/03/21 21:47:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:47:48 [log_collector] {"stage_name":"log_collector","events_processed":20556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.2,"last_update":"2026-03-21T21:47:43.869638241Z"} +2026/03/21 21:47:48 [metric_collector] {"stage_name":"metric_collector","events_processed":13314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2662.8,"last_update":"2026-03-21T21:47:43.869899502Z"} +2026/03/21 21:47:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:47:43.877285147Z"} +2026/03/21 21:47:48 [transform_engine] {"stage_name":"transform_engine","events_processed":443,"events_dropped":0,"avg_latency_ms":74.78456920323808,"throughput_eps":0,"last_update":"2026-03-21T21:47:43.96548024Z"} +2026/03/21 21:47:48 [detection_layer] {"stage_name":"detection_layer","events_processed":443,"events_dropped":0,"avg_latency_ms":14.840598074627234,"throughput_eps":0,"last_update":"2026-03-21T21:47:43.965468387Z"} +2026/03/21 21:47:48 ───────────────────────────────────────────────── +2026/03/21 21:47:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:47:53 [log_collector] {"stage_name":"log_collector","events_processed":20611,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4122.2,"last_update":"2026-03-21T21:47:48.869740496Z"} +2026/03/21 21:47:53 [metric_collector] {"stage_name":"metric_collector","events_processed":13319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2663.8,"last_update":"2026-03-21T21:47:48.869861958Z"} +2026/03/21 21:47:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5330,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:47:48.877723305Z"} +2026/03/21 21:47:53 [transform_engine] {"stage_name":"transform_engine","events_processed":444,"events_dropped":0,"avg_latency_ms":82.12342256259046,"throughput_eps":0,"last_update":"2026-03-21T21:47:49.077296009Z"} +2026/03/21 21:47:53 [detection_layer] {"stage_name":"detection_layer","events_processed":443,"events_dropped":0,"avg_latency_ms":14.840598074627234,"throughput_eps":0,"last_update":"2026-03-21T21:47:48.965841811Z"} +2026/03/21 21:47:53 ───────────────────────────────────────────────── +2026/03/21 21:47:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:47:58 [log_collector] {"stage_name":"log_collector","events_processed":20756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4151.2,"last_update":"2026-03-21T21:47:53.869848451Z"} +2026/03/21 21:47:58 [metric_collector] {"stage_name":"metric_collector","events_processed":13324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2664.8,"last_update":"2026-03-21T21:47:53.870274918Z"} +2026/03/21 21:47:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:47:53.87714194Z"} +2026/03/21 21:47:58 [transform_engine] {"stage_name":"transform_engine","events_processed":444,"events_dropped":0,"avg_latency_ms":82.12342256259046,"throughput_eps":0,"last_update":"2026-03-21T21:47:53.965327083Z"} +2026/03/21 21:47:58 [detection_layer] {"stage_name":"detection_layer","events_processed":444,"events_dropped":0,"avg_latency_ms":14.446901059701789,"throughput_eps":0,"last_update":"2026-03-21T21:47:53.965308427Z"} +2026/03/21 21:47:58 ───────────────────────────────────────────────── +2026/03/21 21:48:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:48:03 [metric_collector] {"stage_name":"metric_collector","events_processed":13329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2665.8,"last_update":"2026-03-21T21:47:58.869730522Z"} +2026/03/21 21:48:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:47:58.881860232Z"} +2026/03/21 21:48:03 [transform_engine] {"stage_name":"transform_engine","events_processed":444,"events_dropped":0,"avg_latency_ms":82.12342256259046,"throughput_eps":0,"last_update":"2026-03-21T21:47:58.965623808Z"} +2026/03/21 21:48:03 [detection_layer] {"stage_name":"detection_layer","events_processed":444,"events_dropped":0,"avg_latency_ms":14.446901059701789,"throughput_eps":0,"last_update":"2026-03-21T21:47:58.965752785Z"} +2026/03/21 21:48:03 [log_collector] {"stage_name":"log_collector","events_processed":20931,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4186.2,"last_update":"2026-03-21T21:47:58.869737826Z"} +2026/03/21 21:48:03 ───────────────────────────────────────────────── +2026/03/21 21:48:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:48:08 [log_collector] {"stage_name":"log_collector","events_processed":20958,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4191.6,"last_update":"2026-03-21T21:48:03.870248039Z"} +2026/03/21 21:48:08 [metric_collector] {"stage_name":"metric_collector","events_processed":13334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2666.8,"last_update":"2026-03-21T21:48:03.870496255Z"} +2026/03/21 21:48:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:48:03.877202699Z"} +2026/03/21 21:48:08 [transform_engine] {"stage_name":"transform_engine","events_processed":444,"events_dropped":0,"avg_latency_ms":82.12342256259046,"throughput_eps":0,"last_update":"2026-03-21T21:48:03.965462676Z"} +2026/03/21 21:48:08 [detection_layer] {"stage_name":"detection_layer","events_processed":444,"events_dropped":0,"avg_latency_ms":14.446901059701789,"throughput_eps":0,"last_update":"2026-03-21T21:48:03.965499276Z"} +2026/03/21 21:48:08 ───────────────────────────────────────────────── +2026/03/21 21:48:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:48:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:48:08.877227865Z"} +2026/03/21 21:48:13 [transform_engine] {"stage_name":"transform_engine","events_processed":444,"events_dropped":0,"avg_latency_ms":82.12342256259046,"throughput_eps":0,"last_update":"2026-03-21T21:48:08.965453617Z"} +2026/03/21 21:48:13 [detection_layer] {"stage_name":"detection_layer","events_processed":444,"events_dropped":0,"avg_latency_ms":14.446901059701789,"throughput_eps":0,"last_update":"2026-03-21T21:48:08.965469557Z"} +2026/03/21 21:48:13 [log_collector] {"stage_name":"log_collector","events_processed":20970,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4194,"last_update":"2026-03-21T21:48:08.86941424Z"} +2026/03/21 21:48:13 [metric_collector] {"stage_name":"metric_collector","events_processed":13339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2667.8,"last_update":"2026-03-21T21:48:08.869787395Z"} +2026/03/21 21:48:13 ───────────────────────────────────────────────── +2026/03/21 21:48:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:48:18 [detection_layer] {"stage_name":"detection_layer","events_processed":444,"events_dropped":0,"avg_latency_ms":14.446901059701789,"throughput_eps":0,"last_update":"2026-03-21T21:48:13.965958814Z"} +2026/03/21 21:48:18 [log_collector] {"stage_name":"log_collector","events_processed":20973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4194.6,"last_update":"2026-03-21T21:48:13.870272815Z"} +2026/03/21 21:48:18 [metric_collector] {"stage_name":"metric_collector","events_processed":13344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2668.8,"last_update":"2026-03-21T21:48:13.870685595Z"} +2026/03/21 21:48:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:48:13.876781109Z"} +2026/03/21 21:48:18 [transform_engine] {"stage_name":"transform_engine","events_processed":444,"events_dropped":0,"avg_latency_ms":82.12342256259046,"throughput_eps":0,"last_update":"2026-03-21T21:48:13.965939576Z"} +2026/03/21 21:48:18 ───────────────────────────────────────────────── +2026/03/21 21:48:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:48:23 [transform_engine] {"stage_name":"transform_engine","events_processed":445,"events_dropped":0,"avg_latency_ms":87.05133485007238,"throughput_eps":0,"last_update":"2026-03-21T21:48:19.072853429Z"} +2026/03/21 21:48:23 [detection_layer] {"stage_name":"detection_layer","events_processed":444,"events_dropped":0,"avg_latency_ms":14.446901059701789,"throughput_eps":0,"last_update":"2026-03-21T21:48:18.966052141Z"} +2026/03/21 21:48:23 [log_collector] {"stage_name":"log_collector","events_processed":20973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4194.6,"last_update":"2026-03-21T21:48:18.869791071Z"} +2026/03/21 21:48:23 [metric_collector] {"stage_name":"metric_collector","events_processed":13349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2669.8,"last_update":"2026-03-21T21:48:18.870063403Z"} +2026/03/21 21:48:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5342,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:48:18.876852836Z"} +2026/03/21 21:48:23 ───────────────────────────────────────────────── +2026/03/21 21:48:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:48:28 [log_collector] {"stage_name":"log_collector","events_processed":20973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4194.6,"last_update":"2026-03-21T21:48:23.869882511Z"} +2026/03/21 21:48:28 [metric_collector] {"stage_name":"metric_collector","events_processed":13354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2670.8,"last_update":"2026-03-21T21:48:23.870158099Z"} +2026/03/21 21:48:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:48:23.876747318Z"} +2026/03/21 21:48:28 [transform_engine] {"stage_name":"transform_engine","events_processed":445,"events_dropped":0,"avg_latency_ms":87.05133485007238,"throughput_eps":0,"last_update":"2026-03-21T21:48:23.965912599Z"} +2026/03/21 21:48:28 [detection_layer] {"stage_name":"detection_layer","events_processed":445,"events_dropped":0,"avg_latency_ms":14.240689647761432,"throughput_eps":0,"last_update":"2026-03-21T21:48:23.965925675Z"} +2026/03/21 21:48:28 ───────────────────────────────────────────────── +2026/03/21 21:48:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:48:33 [log_collector] {"stage_name":"log_collector","events_processed":20973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4194.6,"last_update":"2026-03-21T21:48:33.869976807Z"} +2026/03/21 21:48:33 [metric_collector] {"stage_name":"metric_collector","events_processed":13359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2671.8,"last_update":"2026-03-21T21:48:28.869651755Z"} +2026/03/21 21:48:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:48:28.87588904Z"} +2026/03/21 21:48:33 [transform_engine] {"stage_name":"transform_engine","events_processed":445,"events_dropped":0,"avg_latency_ms":87.05133485007238,"throughput_eps":0,"last_update":"2026-03-21T21:48:28.965107823Z"} +2026/03/21 21:48:33 [detection_layer] {"stage_name":"detection_layer","events_processed":445,"events_dropped":0,"avg_latency_ms":14.240689647761432,"throughput_eps":0,"last_update":"2026-03-21T21:48:28.966197039Z"} +2026/03/21 21:48:33 ───────────────────────────────────────────────── +2026/03/21 21:48:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:48:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:48:33.877394924Z"} +2026/03/21 21:48:38 [transform_engine] {"stage_name":"transform_engine","events_processed":445,"events_dropped":0,"avg_latency_ms":87.05133485007238,"throughput_eps":0,"last_update":"2026-03-21T21:48:33.96558122Z"} +2026/03/21 21:48:38 [detection_layer] {"stage_name":"detection_layer","events_processed":445,"events_dropped":0,"avg_latency_ms":14.240689647761432,"throughput_eps":0,"last_update":"2026-03-21T21:48:33.965568686Z"} +2026/03/21 21:48:38 [log_collector] {"stage_name":"log_collector","events_processed":20973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4194.6,"last_update":"2026-03-21T21:48:33.869976807Z"} +2026/03/21 21:48:38 [metric_collector] {"stage_name":"metric_collector","events_processed":13364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2672.8,"last_update":"2026-03-21T21:48:33.870450624Z"} +2026/03/21 21:48:38 ───────────────────────────────────────────────── +2026/03/21 21:48:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:48:43 [detection_layer] {"stage_name":"detection_layer","events_processed":445,"events_dropped":0,"avg_latency_ms":14.240689647761432,"throughput_eps":0,"last_update":"2026-03-21T21:48:38.965283339Z"} +2026/03/21 21:48:43 [log_collector] {"stage_name":"log_collector","events_processed":20973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4194.6,"last_update":"2026-03-21T21:48:38.870377414Z"} +2026/03/21 21:48:43 [metric_collector] {"stage_name":"metric_collector","events_processed":13369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2673.8,"last_update":"2026-03-21T21:48:38.870747312Z"} +2026/03/21 21:48:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5350,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:48:38.87810783Z"} +2026/03/21 21:48:43 [transform_engine] {"stage_name":"transform_engine","events_processed":445,"events_dropped":0,"avg_latency_ms":87.05133485007238,"throughput_eps":0,"last_update":"2026-03-21T21:48:38.965306694Z"} +2026/03/21 21:48:43 ───────────────────────────────────────────────── +2026/03/21 21:48:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:48:48 [log_collector] {"stage_name":"log_collector","events_processed":20973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4194.6,"last_update":"2026-03-21T21:48:48.869548885Z"} +2026/03/21 21:48:48 [metric_collector] {"stage_name":"metric_collector","events_processed":13374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2674.8,"last_update":"2026-03-21T21:48:43.87041867Z"} +2026/03/21 21:48:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:48:43.878414774Z"} +2026/03/21 21:48:48 [transform_engine] {"stage_name":"transform_engine","events_processed":445,"events_dropped":0,"avg_latency_ms":87.05133485007238,"throughput_eps":0,"last_update":"2026-03-21T21:48:43.965602076Z"} +2026/03/21 21:48:48 [detection_layer] {"stage_name":"detection_layer","events_processed":445,"events_dropped":0,"avg_latency_ms":14.240689647761432,"throughput_eps":0,"last_update":"2026-03-21T21:48:43.965591666Z"} +2026/03/21 21:48:48 ───────────────────────────────────────────────── +2026/03/21 21:48:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:48:53 [log_collector] {"stage_name":"log_collector","events_processed":20973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4194.6,"last_update":"2026-03-21T21:48:53.869528722Z"} +2026/03/21 21:48:53 [metric_collector] {"stage_name":"metric_collector","events_processed":13379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2675.8,"last_update":"2026-03-21T21:48:48.869928913Z"} +2026/03/21 21:48:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:48:48.876534775Z"} +2026/03/21 21:48:53 [transform_engine] {"stage_name":"transform_engine","events_processed":446,"events_dropped":0,"avg_latency_ms":127.74403348005791,"throughput_eps":0,"last_update":"2026-03-21T21:48:49.25624943Z"} +2026/03/21 21:48:53 [detection_layer] {"stage_name":"detection_layer","events_processed":445,"events_dropped":0,"avg_latency_ms":14.240689647761432,"throughput_eps":0,"last_update":"2026-03-21T21:48:48.965710615Z"} +2026/03/21 21:48:53 ───────────────────────────────────────────────── +2026/03/21 21:48:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:48:58 [log_collector] {"stage_name":"log_collector","events_processed":20973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4194.6,"last_update":"2026-03-21T21:48:53.869528722Z"} +2026/03/21 21:48:58 [metric_collector] {"stage_name":"metric_collector","events_processed":13384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2676.8,"last_update":"2026-03-21T21:48:53.869836461Z"} +2026/03/21 21:48:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:48:53.877290698Z"} +2026/03/21 21:48:58 [transform_engine] {"stage_name":"transform_engine","events_processed":446,"events_dropped":0,"avg_latency_ms":127.74403348005791,"throughput_eps":0,"last_update":"2026-03-21T21:48:53.965489117Z"} +2026/03/21 21:48:58 [detection_layer] {"stage_name":"detection_layer","events_processed":446,"events_dropped":0,"avg_latency_ms":14.357526318209146,"throughput_eps":0,"last_update":"2026-03-21T21:48:53.96547492Z"} +2026/03/21 21:48:58 ───────────────────────────────────────────────── +2026/03/21 21:49:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:49:03 [transform_engine] {"stage_name":"transform_engine","events_processed":446,"events_dropped":0,"avg_latency_ms":127.74403348005791,"throughput_eps":0,"last_update":"2026-03-21T21:48:58.966162046Z"} +2026/03/21 21:49:03 [detection_layer] {"stage_name":"detection_layer","events_processed":446,"events_dropped":0,"avg_latency_ms":14.357526318209146,"throughput_eps":0,"last_update":"2026-03-21T21:48:58.966134633Z"} +2026/03/21 21:49:03 [log_collector] {"stage_name":"log_collector","events_processed":20973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4194.6,"last_update":"2026-03-21T21:49:03.869602944Z"} +2026/03/21 21:49:03 [metric_collector] {"stage_name":"metric_collector","events_processed":13389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2677.8,"last_update":"2026-03-21T21:48:58.870560168Z"} +2026/03/21 21:49:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:48:58.87882203Z"} +2026/03/21 21:49:03 ───────────────────────────────────────────────── +2026/03/21 21:49:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:49:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5360,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:49:03.876684477Z"} +2026/03/21 21:49:08 [transform_engine] {"stage_name":"transform_engine","events_processed":446,"events_dropped":0,"avg_latency_ms":127.74403348005791,"throughput_eps":0,"last_update":"2026-03-21T21:49:03.965138144Z"} +2026/03/21 21:49:08 [detection_layer] {"stage_name":"detection_layer","events_processed":446,"events_dropped":0,"avg_latency_ms":14.357526318209146,"throughput_eps":0,"last_update":"2026-03-21T21:49:03.966264231Z"} +2026/03/21 21:49:08 [log_collector] {"stage_name":"log_collector","events_processed":20973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4194.6,"last_update":"2026-03-21T21:49:03.869602944Z"} +2026/03/21 21:49:08 [metric_collector] {"stage_name":"metric_collector","events_processed":13394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2678.8,"last_update":"2026-03-21T21:49:03.869968945Z"} +2026/03/21 21:49:08 ───────────────────────────────────────────────── +2026/03/21 21:49:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:49:13 [metric_collector] {"stage_name":"metric_collector","events_processed":13399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2679.8,"last_update":"2026-03-21T21:49:08.869703942Z"} +2026/03/21 21:49:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:49:08.878207519Z"} +2026/03/21 21:49:13 [transform_engine] {"stage_name":"transform_engine","events_processed":446,"events_dropped":0,"avg_latency_ms":127.74403348005791,"throughput_eps":0,"last_update":"2026-03-21T21:49:08.965406834Z"} +2026/03/21 21:49:13 [detection_layer] {"stage_name":"detection_layer","events_processed":446,"events_dropped":0,"avg_latency_ms":14.357526318209146,"throughput_eps":0,"last_update":"2026-03-21T21:49:08.9653943Z"} +2026/03/21 21:49:13 [log_collector] {"stage_name":"log_collector","events_processed":20973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4194.6,"last_update":"2026-03-21T21:49:08.869418987Z"} +2026/03/21 21:49:13 ───────────────────────────────────────────────── +2026/03/21 21:49:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:49:18 [log_collector] {"stage_name":"log_collector","events_processed":20973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4194.6,"last_update":"2026-03-21T21:49:13.869421505Z"} +2026/03/21 21:49:18 [metric_collector] {"stage_name":"metric_collector","events_processed":13404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2680.8,"last_update":"2026-03-21T21:49:13.869788448Z"} +2026/03/21 21:49:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:49:13.876334595Z"} +2026/03/21 21:49:18 [transform_engine] {"stage_name":"transform_engine","events_processed":446,"events_dropped":0,"avg_latency_ms":127.74403348005791,"throughput_eps":0,"last_update":"2026-03-21T21:49:13.965458377Z"} +2026/03/21 21:49:18 [detection_layer] {"stage_name":"detection_layer","events_processed":446,"events_dropped":0,"avg_latency_ms":14.357526318209146,"throughput_eps":0,"last_update":"2026-03-21T21:49:13.965448669Z"} +2026/03/21 21:49:18 ───────────────────────────────────────────────── +2026/03/21 21:49:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:49:23 [detection_layer] {"stage_name":"detection_layer","events_processed":446,"events_dropped":0,"avg_latency_ms":14.357526318209146,"throughput_eps":0,"last_update":"2026-03-21T21:49:18.966057812Z"} +2026/03/21 21:49:23 [log_collector] {"stage_name":"log_collector","events_processed":20973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4194.6,"last_update":"2026-03-21T21:49:18.869673179Z"} +2026/03/21 21:49:23 [metric_collector] {"stage_name":"metric_collector","events_processed":13409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2681.8,"last_update":"2026-03-21T21:49:18.870022839Z"} +2026/03/21 21:49:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:49:18.876835751Z"} +2026/03/21 21:49:23 [transform_engine] {"stage_name":"transform_engine","events_processed":447,"events_dropped":0,"avg_latency_ms":118.00072078404634,"throughput_eps":0,"last_update":"2026-03-21T21:49:19.045112536Z"} +2026/03/21 21:49:23 ───────────────────────────────────────────────── +2026/03/21 21:49:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:49:28 [log_collector] {"stage_name":"log_collector","events_processed":20973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4194.6,"last_update":"2026-03-21T21:49:23.870236657Z"} +2026/03/21 21:49:28 [metric_collector] {"stage_name":"metric_collector","events_processed":13414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2682.8,"last_update":"2026-03-21T21:49:23.870271694Z"} +2026/03/21 21:49:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:49:23.877449505Z"} +2026/03/21 21:49:28 [transform_engine] {"stage_name":"transform_engine","events_processed":447,"events_dropped":0,"avg_latency_ms":118.00072078404634,"throughput_eps":0,"last_update":"2026-03-21T21:49:23.965618894Z"} +2026/03/21 21:49:28 [detection_layer] {"stage_name":"detection_layer","events_processed":447,"events_dropped":0,"avg_latency_ms":14.584411654567317,"throughput_eps":0,"last_update":"2026-03-21T21:49:23.965607613Z"} +2026/03/21 21:49:28 ───────────────────────────────────────────────── +2026/03/21 21:49:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:49:33 [transform_engine] {"stage_name":"transform_engine","events_processed":447,"events_dropped":0,"avg_latency_ms":118.00072078404634,"throughput_eps":0,"last_update":"2026-03-21T21:49:28.965457988Z"} +2026/03/21 21:49:33 [detection_layer] {"stage_name":"detection_layer","events_processed":447,"events_dropped":0,"avg_latency_ms":14.584411654567317,"throughput_eps":0,"last_update":"2026-03-21T21:49:28.965449091Z"} +2026/03/21 21:49:33 [log_collector] {"stage_name":"log_collector","events_processed":20973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4194.6,"last_update":"2026-03-21T21:49:33.869550281Z"} +2026/03/21 21:49:33 [metric_collector] {"stage_name":"metric_collector","events_processed":13419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2683.8,"last_update":"2026-03-21T21:49:28.869787731Z"} +2026/03/21 21:49:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:49:28.87628182Z"} +2026/03/21 21:49:33 ───────────────────────────────────────────────── +2026/03/21 21:49:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:49:38 [log_collector] {"stage_name":"log_collector","events_processed":20973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4194.6,"last_update":"2026-03-21T21:49:38.869981258Z"} +2026/03/21 21:49:38 [metric_collector] {"stage_name":"metric_collector","events_processed":13424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2684.8,"last_update":"2026-03-21T21:49:33.869859775Z"} +2026/03/21 21:49:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:49:33.877191191Z"} +2026/03/21 21:49:38 [transform_engine] {"stage_name":"transform_engine","events_processed":447,"events_dropped":0,"avg_latency_ms":118.00072078404634,"throughput_eps":0,"last_update":"2026-03-21T21:49:33.965385753Z"} +2026/03/21 21:49:38 [detection_layer] {"stage_name":"detection_layer","events_processed":447,"events_dropped":0,"avg_latency_ms":14.584411654567317,"throughput_eps":0,"last_update":"2026-03-21T21:49:33.965374641Z"} +2026/03/21 21:49:38 ───────────────────────────────────────────────── +2026/03/21 21:49:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:49:43 [detection_layer] {"stage_name":"detection_layer","events_processed":447,"events_dropped":0,"avg_latency_ms":14.584411654567317,"throughput_eps":0,"last_update":"2026-03-21T21:49:38.966237814Z"} +2026/03/21 21:49:43 [log_collector] {"stage_name":"log_collector","events_processed":20973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4194.6,"last_update":"2026-03-21T21:49:38.869981258Z"} +2026/03/21 21:49:43 [metric_collector] {"stage_name":"metric_collector","events_processed":13428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2685.6,"last_update":"2026-03-21T21:49:38.870041334Z"} +2026/03/21 21:49:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:49:38.877030833Z"} +2026/03/21 21:49:43 [transform_engine] {"stage_name":"transform_engine","events_processed":447,"events_dropped":0,"avg_latency_ms":118.00072078404634,"throughput_eps":0,"last_update":"2026-03-21T21:49:38.965138596Z"} +2026/03/21 21:49:43 ───────────────────────────────────────────────── +2026/03/21 21:49:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:49:48 [log_collector] {"stage_name":"log_collector","events_processed":20973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4194.6,"last_update":"2026-03-21T21:49:43.869873864Z"} +2026/03/21 21:49:48 [metric_collector] {"stage_name":"metric_collector","events_processed":13434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2686.8,"last_update":"2026-03-21T21:49:43.869969056Z"} +2026/03/21 21:49:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:49:43.87690855Z"} +2026/03/21 21:49:48 [transform_engine] {"stage_name":"transform_engine","events_processed":447,"events_dropped":0,"avg_latency_ms":118.00072078404634,"throughput_eps":0,"last_update":"2026-03-21T21:49:43.966310092Z"} +2026/03/21 21:49:48 [detection_layer] {"stage_name":"detection_layer","events_processed":447,"events_dropped":0,"avg_latency_ms":14.584411654567317,"throughput_eps":0,"last_update":"2026-03-21T21:49:43.966299853Z"} +2026/03/21 21:49:48 ───────────────────────────────────────────────── +2026/03/21 21:49:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:49:53 [log_collector] {"stage_name":"log_collector","events_processed":20973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4194.6,"last_update":"2026-03-21T21:49:53.870023303Z"} +2026/03/21 21:49:53 [metric_collector] {"stage_name":"metric_collector","events_processed":13439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2687.8,"last_update":"2026-03-21T21:49:48.869740933Z"} +2026/03/21 21:49:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:49:48.876409144Z"} +2026/03/21 21:49:53 [transform_engine] {"stage_name":"transform_engine","events_processed":448,"events_dropped":0,"avg_latency_ms":107.26414442723707,"throughput_eps":0,"last_update":"2026-03-21T21:49:49.029913992Z"} +2026/03/21 21:49:53 [detection_layer] {"stage_name":"detection_layer","events_processed":447,"events_dropped":0,"avg_latency_ms":14.584411654567317,"throughput_eps":0,"last_update":"2026-03-21T21:49:48.965581866Z"} +2026/03/21 21:49:53 ───────────────────────────────────────────────── +2026/03/21 21:49:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:49:58 [log_collector] {"stage_name":"log_collector","events_processed":20973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4194.6,"last_update":"2026-03-21T21:49:58.869811688Z"} +2026/03/21 21:49:58 [metric_collector] {"stage_name":"metric_collector","events_processed":13444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2688.8,"last_update":"2026-03-21T21:49:53.870491661Z"} +2026/03/21 21:49:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5380,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:49:53.877031368Z"} +2026/03/21 21:49:58 [transform_engine] {"stage_name":"transform_engine","events_processed":448,"events_dropped":0,"avg_latency_ms":107.26414442723707,"throughput_eps":0,"last_update":"2026-03-21T21:49:53.965136058Z"} +2026/03/21 21:49:58 [detection_layer] {"stage_name":"detection_layer","events_processed":448,"events_dropped":0,"avg_latency_ms":14.381976723653853,"throughput_eps":0,"last_update":"2026-03-21T21:49:53.966245506Z"} +2026/03/21 21:49:58 ───────────────────────────────────────────────── +2026/03/21 21:50:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:50:03 [log_collector] {"stage_name":"log_collector","events_processed":20973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4194.6,"last_update":"2026-03-21T21:49:58.869811688Z"} +2026/03/21 21:50:03 [metric_collector] {"stage_name":"metric_collector","events_processed":13449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2689.8,"last_update":"2026-03-21T21:49:58.870288894Z"} +2026/03/21 21:50:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:49:58.876989036Z"} +2026/03/21 21:50:03 [transform_engine] {"stage_name":"transform_engine","events_processed":448,"events_dropped":0,"avg_latency_ms":107.26414442723707,"throughput_eps":0,"last_update":"2026-03-21T21:49:58.965066132Z"} +2026/03/21 21:50:03 [detection_layer] {"stage_name":"detection_layer","events_processed":448,"events_dropped":0,"avg_latency_ms":14.381976723653853,"throughput_eps":0,"last_update":"2026-03-21T21:49:58.966108381Z"} +2026/03/21 21:50:03 ───────────────────────────────────────────────── +2026/03/21 21:50:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:50:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:50:03.882444002Z"} +2026/03/21 21:50:08 [transform_engine] {"stage_name":"transform_engine","events_processed":448,"events_dropped":0,"avg_latency_ms":107.26414442723707,"throughput_eps":0,"last_update":"2026-03-21T21:50:03.965630903Z"} +2026/03/21 21:50:08 [detection_layer] {"stage_name":"detection_layer","events_processed":448,"events_dropped":0,"avg_latency_ms":14.381976723653853,"throughput_eps":0,"last_update":"2026-03-21T21:50:03.965619301Z"} +2026/03/21 21:50:08 [log_collector] {"stage_name":"log_collector","events_processed":20973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4194.6,"last_update":"2026-03-21T21:50:03.869464382Z"} +2026/03/21 21:50:08 [metric_collector] {"stage_name":"metric_collector","events_processed":13454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2690.8,"last_update":"2026-03-21T21:50:03.869698722Z"} +2026/03/21 21:50:08 ───────────────────────────────────────────────── +2026/03/21 21:50:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:50:13 [log_collector] {"stage_name":"log_collector","events_processed":20973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4194.6,"last_update":"2026-03-21T21:50:08.869782887Z"} +2026/03/21 21:50:13 [metric_collector] {"stage_name":"metric_collector","events_processed":13459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2691.8,"last_update":"2026-03-21T21:50:08.870051533Z"} +2026/03/21 21:50:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:50:08.877172082Z"} +2026/03/21 21:50:13 [transform_engine] {"stage_name":"transform_engine","events_processed":448,"events_dropped":0,"avg_latency_ms":107.26414442723707,"throughput_eps":0,"last_update":"2026-03-21T21:50:08.965415451Z"} +2026/03/21 21:50:13 [detection_layer] {"stage_name":"detection_layer","events_processed":448,"events_dropped":0,"avg_latency_ms":14.381976723653853,"throughput_eps":0,"last_update":"2026-03-21T21:50:08.965376878Z"} +2026/03/21 21:50:13 ───────────────────────────────────────────────── +2026/03/21 21:50:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:50:18 [log_collector] {"stage_name":"log_collector","events_processed":20973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4194.6,"last_update":"2026-03-21T21:50:18.869462754Z"} +2026/03/21 21:50:18 [metric_collector] {"stage_name":"metric_collector","events_processed":13464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2692.8,"last_update":"2026-03-21T21:50:13.869812137Z"} +2026/03/21 21:50:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5388,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:50:13.876877341Z"} +2026/03/21 21:50:18 [transform_engine] {"stage_name":"transform_engine","events_processed":448,"events_dropped":0,"avg_latency_ms":107.26414442723707,"throughput_eps":0,"last_update":"2026-03-21T21:50:13.96509544Z"} +2026/03/21 21:50:18 [detection_layer] {"stage_name":"detection_layer","events_processed":448,"events_dropped":0,"avg_latency_ms":14.381976723653853,"throughput_eps":0,"last_update":"2026-03-21T21:50:13.966250475Z"} +2026/03/21 21:50:18 ───────────────────────────────────────────────── +2026/03/21 21:50:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:50:23 [metric_collector] {"stage_name":"metric_collector","events_processed":13469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2693.8,"last_update":"2026-03-21T21:50:18.869719737Z"} +2026/03/21 21:50:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5390,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:50:18.877310999Z"} +2026/03/21 21:50:23 [transform_engine] {"stage_name":"transform_engine","events_processed":448,"events_dropped":0,"avg_latency_ms":107.26414442723707,"throughput_eps":0,"last_update":"2026-03-21T21:50:18.965421078Z"} +2026/03/21 21:50:23 [detection_layer] {"stage_name":"detection_layer","events_processed":448,"events_dropped":0,"avg_latency_ms":14.381976723653853,"throughput_eps":0,"last_update":"2026-03-21T21:50:18.965438462Z"} +2026/03/21 21:50:23 [log_collector] {"stage_name":"log_collector","events_processed":20973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4194.6,"last_update":"2026-03-21T21:50:18.869462754Z"} +2026/03/21 21:50:23 ───────────────────────────────────────────────── +2026/03/21 21:50:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:50:28 [log_collector] {"stage_name":"log_collector","events_processed":20973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4194.6,"last_update":"2026-03-21T21:50:23.869784085Z"} +2026/03/21 21:50:28 [metric_collector] {"stage_name":"metric_collector","events_processed":13474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2694.8,"last_update":"2026-03-21T21:50:23.869857856Z"} +2026/03/21 21:50:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:50:23.877129685Z"} +2026/03/21 21:50:28 [transform_engine] {"stage_name":"transform_engine","events_processed":449,"events_dropped":0,"avg_latency_ms":98.02561794178968,"throughput_eps":0,"last_update":"2026-03-21T21:50:23.965371895Z"} +2026/03/21 21:50:28 [detection_layer] {"stage_name":"detection_layer","events_processed":449,"events_dropped":0,"avg_latency_ms":14.286495978923082,"throughput_eps":0,"last_update":"2026-03-21T21:50:23.965327741Z"} +2026/03/21 21:50:28 ───────────────────────────────────────────────── +2026/03/21 21:50:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:50:33 [detection_layer] {"stage_name":"detection_layer","events_processed":449,"events_dropped":0,"avg_latency_ms":14.286495978923082,"throughput_eps":0,"last_update":"2026-03-21T21:50:28.965587835Z"} +2026/03/21 21:50:33 [log_collector] {"stage_name":"log_collector","events_processed":20973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4194.6,"last_update":"2026-03-21T21:50:28.869565123Z"} +2026/03/21 21:50:33 [metric_collector] {"stage_name":"metric_collector","events_processed":13479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2695.8,"last_update":"2026-03-21T21:50:28.869645116Z"} +2026/03/21 21:50:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:50:28.876391217Z"} +2026/03/21 21:50:33 [transform_engine] {"stage_name":"transform_engine","events_processed":449,"events_dropped":0,"avg_latency_ms":98.02561794178968,"throughput_eps":0,"last_update":"2026-03-21T21:50:28.965561234Z"} +2026/03/21 21:50:33 ───────────────────────────────────────────────── +2026/03/21 21:50:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:50:38 [transform_engine] {"stage_name":"transform_engine","events_processed":449,"events_dropped":0,"avg_latency_ms":98.02561794178968,"throughput_eps":0,"last_update":"2026-03-21T21:50:33.965383852Z"} +2026/03/21 21:50:38 [detection_layer] {"stage_name":"detection_layer","events_processed":449,"events_dropped":0,"avg_latency_ms":14.286495978923082,"throughput_eps":0,"last_update":"2026-03-21T21:50:33.965400454Z"} +2026/03/21 21:50:38 [log_collector] {"stage_name":"log_collector","events_processed":20973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4194.6,"last_update":"2026-03-21T21:50:33.86992861Z"} +2026/03/21 21:50:38 [metric_collector] {"stage_name":"metric_collector","events_processed":13484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.8,"last_update":"2026-03-21T21:50:33.870161988Z"} +2026/03/21 21:50:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:50:33.877148239Z"} +2026/03/21 21:50:38 ───────────────────────────────────────────────── +2026/03/21 21:50:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:50:43 [transform_engine] {"stage_name":"transform_engine","events_processed":449,"events_dropped":0,"avg_latency_ms":98.02561794178968,"throughput_eps":0,"last_update":"2026-03-21T21:50:38.965314312Z"} +2026/03/21 21:50:43 [detection_layer] {"stage_name":"detection_layer","events_processed":449,"events_dropped":0,"avg_latency_ms":14.286495978923082,"throughput_eps":0,"last_update":"2026-03-21T21:50:38.965330984Z"} +2026/03/21 21:50:43 [log_collector] {"stage_name":"log_collector","events_processed":20973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4194.6,"last_update":"2026-03-21T21:50:38.869637227Z"} +2026/03/21 21:50:43 [metric_collector] {"stage_name":"metric_collector","events_processed":13489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2697.8,"last_update":"2026-03-21T21:50:38.869851417Z"} +2026/03/21 21:50:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:50:38.877160708Z"} +2026/03/21 21:50:43 ───────────────────────────────────────────────── +2026/03/21 21:50:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:50:48 [log_collector] {"stage_name":"log_collector","events_processed":20973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4194.6,"last_update":"2026-03-21T21:50:43.869808689Z"} +2026/03/21 21:50:48 [metric_collector] {"stage_name":"metric_collector","events_processed":13494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2698.8,"last_update":"2026-03-21T21:50:43.870129365Z"} +2026/03/21 21:50:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5400,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:50:43.877242689Z"} +2026/03/21 21:50:48 [transform_engine] {"stage_name":"transform_engine","events_processed":449,"events_dropped":0,"avg_latency_ms":98.02561794178968,"throughput_eps":0,"last_update":"2026-03-21T21:50:43.965372104Z"} +2026/03/21 21:50:48 [detection_layer] {"stage_name":"detection_layer","events_processed":449,"events_dropped":0,"avg_latency_ms":14.286495978923082,"throughput_eps":0,"last_update":"2026-03-21T21:50:43.9653964Z"} +2026/03/21 21:50:48 ───────────────────────────────────────────────── +2026/03/21 21:50:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:50:53 [detection_layer] {"stage_name":"detection_layer","events_processed":449,"events_dropped":0,"avg_latency_ms":14.286495978923082,"throughput_eps":0,"last_update":"2026-03-21T21:50:48.965916234Z"} +2026/03/21 21:50:53 [log_collector] {"stage_name":"log_collector","events_processed":20973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4194.6,"last_update":"2026-03-21T21:50:48.869426525Z"} +2026/03/21 21:50:53 [metric_collector] {"stage_name":"metric_collector","events_processed":13499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2699.8,"last_update":"2026-03-21T21:50:48.869668369Z"} +2026/03/21 21:50:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5402,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:50:48.876692803Z"} +2026/03/21 21:50:53 [transform_engine] {"stage_name":"transform_engine","events_processed":450,"events_dropped":0,"avg_latency_ms":90.52922635343175,"throughput_eps":0,"last_update":"2026-03-21T21:50:49.026444755Z"} +2026/03/21 21:50:53 ───────────────────────────────────────────────── +2026/03/21 21:50:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:50:58 [transform_engine] {"stage_name":"transform_engine","events_processed":450,"events_dropped":0,"avg_latency_ms":90.52922635343175,"throughput_eps":0,"last_update":"2026-03-21T21:50:53.965888767Z"} +2026/03/21 21:50:58 [detection_layer] {"stage_name":"detection_layer","events_processed":450,"events_dropped":0,"avg_latency_ms":14.243853783138466,"throughput_eps":0,"last_update":"2026-03-21T21:50:53.965862096Z"} +2026/03/21 21:50:58 [log_collector] {"stage_name":"log_collector","events_processed":20973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4194.6,"last_update":"2026-03-21T21:50:53.869663738Z"} +2026/03/21 21:50:58 [metric_collector] {"stage_name":"metric_collector","events_processed":13504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2700.8,"last_update":"2026-03-21T21:50:53.869916363Z"} +2026/03/21 21:50:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:50:53.877705222Z"} +2026/03/21 21:50:58 ───────────────────────────────────────────────── +2026/03/21 21:51:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:51:03 [log_collector] {"stage_name":"log_collector","events_processed":20973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4194.6,"last_update":"2026-03-21T21:51:03.869669756Z"} +2026/03/21 21:51:03 [metric_collector] {"stage_name":"metric_collector","events_processed":13509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.8,"last_update":"2026-03-21T21:50:58.870329753Z"} +2026/03/21 21:51:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:50:58.877161476Z"} +2026/03/21 21:51:03 [transform_engine] {"stage_name":"transform_engine","events_processed":450,"events_dropped":0,"avg_latency_ms":90.52922635343175,"throughput_eps":0,"last_update":"2026-03-21T21:50:58.965376169Z"} +2026/03/21 21:51:03 [detection_layer] {"stage_name":"detection_layer","events_processed":450,"events_dropped":0,"avg_latency_ms":14.243853783138466,"throughput_eps":0,"last_update":"2026-03-21T21:50:58.9653353Z"} +2026/03/21 21:51:03 ───────────────────────────────────────────────── +2026/03/21 21:51:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:51:08 [transform_engine] {"stage_name":"transform_engine","events_processed":450,"events_dropped":0,"avg_latency_ms":90.52922635343175,"throughput_eps":0,"last_update":"2026-03-21T21:51:03.96598888Z"} +2026/03/21 21:51:08 [detection_layer] {"stage_name":"detection_layer","events_processed":450,"events_dropped":0,"avg_latency_ms":14.243853783138466,"throughput_eps":0,"last_update":"2026-03-21T21:51:03.966023617Z"} +2026/03/21 21:51:08 [log_collector] {"stage_name":"log_collector","events_processed":20973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4194.6,"last_update":"2026-03-21T21:51:03.869669756Z"} +2026/03/21 21:51:08 [metric_collector] {"stage_name":"metric_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-21T21:51:03.870148804Z"} +2026/03/21 21:51:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5408,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:51:03.876786195Z"} +2026/03/21 21:51:08 ───────────────────────────────────────────────── +Saved state: 12 clusters, 20974 messages, reason: none +2026/03/21 21:51:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:51:13 [log_collector] {"stage_name":"log_collector","events_processed":20983,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4196.6,"last_update":"2026-03-21T21:51:13.869547309Z"} +2026/03/21 21:51:13 [metric_collector] {"stage_name":"metric_collector","events_processed":13519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2703.8,"last_update":"2026-03-21T21:51:08.869609619Z"} +2026/03/21 21:51:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:51:08.876970518Z"} +2026/03/21 21:51:13 [transform_engine] {"stage_name":"transform_engine","events_processed":450,"events_dropped":0,"avg_latency_ms":90.52922635343175,"throughput_eps":0,"last_update":"2026-03-21T21:51:08.965069284Z"} +2026/03/21 21:51:13 [detection_layer] {"stage_name":"detection_layer","events_processed":450,"events_dropped":0,"avg_latency_ms":14.243853783138466,"throughput_eps":0,"last_update":"2026-03-21T21:51:08.966180355Z"} +2026/03/21 21:51:13 ───────────────────────────────────────────────── +2026/03/21 21:51:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:51:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:51:13.878162794Z"} +2026/03/21 21:51:18 [transform_engine] {"stage_name":"transform_engine","events_processed":450,"events_dropped":0,"avg_latency_ms":90.52922635343175,"throughput_eps":0,"last_update":"2026-03-21T21:51:13.965263203Z"} +2026/03/21 21:51:18 [detection_layer] {"stage_name":"detection_layer","events_processed":450,"events_dropped":0,"avg_latency_ms":14.243853783138466,"throughput_eps":0,"last_update":"2026-03-21T21:51:13.965273262Z"} +2026/03/21 21:51:18 [log_collector] {"stage_name":"log_collector","events_processed":20983,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4196.6,"last_update":"2026-03-21T21:51:13.869547309Z"} +2026/03/21 21:51:18 [metric_collector] {"stage_name":"metric_collector","events_processed":13524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2704.8,"last_update":"2026-03-21T21:51:13.869890006Z"} +2026/03/21 21:51:18 ───────────────────────────────────────────────── +2026/03/21 21:51:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:51:23 [metric_collector] {"stage_name":"metric_collector","events_processed":13529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2705.8,"last_update":"2026-03-21T21:51:18.869851006Z"} +2026/03/21 21:51:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:51:18.883845938Z"} +2026/03/21 21:51:23 [transform_engine] {"stage_name":"transform_engine","events_processed":451,"events_dropped":0,"avg_latency_ms":381.31827048274545,"throughput_eps":0,"last_update":"2026-03-21T21:51:20.510547545Z"} +2026/03/21 21:51:23 [detection_layer] {"stage_name":"detection_layer","events_processed":450,"events_dropped":0,"avg_latency_ms":14.243853783138466,"throughput_eps":0,"last_update":"2026-03-21T21:51:18.966630768Z"} +2026/03/21 21:51:23 [log_collector] {"stage_name":"log_collector","events_processed":20983,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4196.6,"last_update":"2026-03-21T21:51:18.869867047Z"} +2026/03/21 21:51:23 ───────────────────────────────────────────────── +2026/03/21 21:51:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:51:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:51:23.877938349Z"} +2026/03/21 21:51:28 [transform_engine] {"stage_name":"transform_engine","events_processed":451,"events_dropped":0,"avg_latency_ms":381.31827048274545,"throughput_eps":0,"last_update":"2026-03-21T21:51:23.965079352Z"} +2026/03/21 21:51:28 [detection_layer] {"stage_name":"detection_layer","events_processed":451,"events_dropped":0,"avg_latency_ms":13.944999826510774,"throughput_eps":0,"last_update":"2026-03-21T21:51:23.966236942Z"} +2026/03/21 21:51:28 [log_collector] {"stage_name":"log_collector","events_processed":20995,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4199,"last_update":"2026-03-21T21:51:23.869538498Z"} +2026/03/21 21:51:28 [metric_collector] {"stage_name":"metric_collector","events_processed":13534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2706.8,"last_update":"2026-03-21T21:51:23.869734344Z"} +2026/03/21 21:51:28 ───────────────────────────────────────────────── +2026/03/21 21:51:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:51:33 [detection_layer] {"stage_name":"detection_layer","events_processed":451,"events_dropped":0,"avg_latency_ms":13.944999826510774,"throughput_eps":0,"last_update":"2026-03-21T21:51:28.966101489Z"} +2026/03/21 21:51:33 [log_collector] {"stage_name":"log_collector","events_processed":21003,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4200.6,"last_update":"2026-03-21T21:51:28.869459967Z"} +2026/03/21 21:51:33 [metric_collector] {"stage_name":"metric_collector","events_processed":13538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2707.6,"last_update":"2026-03-21T21:51:28.869421363Z"} +2026/03/21 21:51:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:51:28.876915596Z"} +2026/03/21 21:51:33 [transform_engine] {"stage_name":"transform_engine","events_processed":451,"events_dropped":0,"avg_latency_ms":381.31827048274545,"throughput_eps":0,"last_update":"2026-03-21T21:51:28.966127719Z"} +2026/03/21 21:51:33 ───────────────────────────────────────────────── +2026/03/21 21:51:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:51:38 [detection_layer] {"stage_name":"detection_layer","events_processed":451,"events_dropped":0,"avg_latency_ms":13.944999826510774,"throughput_eps":0,"last_update":"2026-03-21T21:51:33.965680711Z"} +2026/03/21 21:51:38 [log_collector] {"stage_name":"log_collector","events_processed":21006,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4201.2,"last_update":"2026-03-21T21:51:33.869484705Z"} +2026/03/21 21:51:38 [metric_collector] {"stage_name":"metric_collector","events_processed":13543,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2708.6,"last_update":"2026-03-21T21:51:33.869495526Z"} +2026/03/21 21:51:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5420,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:51:33.877486492Z"} +2026/03/21 21:51:38 [transform_engine] {"stage_name":"transform_engine","events_processed":451,"events_dropped":0,"avg_latency_ms":381.31827048274545,"throughput_eps":0,"last_update":"2026-03-21T21:51:33.96565923Z"} +2026/03/21 21:51:38 ───────────────────────────────────────────────── +2026/03/21 21:51:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:51:43 [detection_layer] {"stage_name":"detection_layer","events_processed":451,"events_dropped":0,"avg_latency_ms":13.944999826510774,"throughput_eps":0,"last_update":"2026-03-21T21:51:38.966077421Z"} +2026/03/21 21:51:43 [log_collector] {"stage_name":"log_collector","events_processed":21027,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4205.4,"last_update":"2026-03-21T21:51:38.869838204Z"} +2026/03/21 21:51:43 [metric_collector] {"stage_name":"metric_collector","events_processed":13549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2709.8,"last_update":"2026-03-21T21:51:38.869819829Z"} +2026/03/21 21:51:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:51:38.876772593Z"} +2026/03/21 21:51:43 [transform_engine] {"stage_name":"transform_engine","events_processed":451,"events_dropped":0,"avg_latency_ms":381.31827048274545,"throughput_eps":0,"last_update":"2026-03-21T21:51:38.966102899Z"} +2026/03/21 21:51:43 ───────────────────────────────────────────────── +2026/03/21 21:51:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:51:48 [transform_engine] {"stage_name":"transform_engine","events_processed":451,"events_dropped":0,"avg_latency_ms":381.31827048274545,"throughput_eps":0,"last_update":"2026-03-21T21:51:43.966104524Z"} +2026/03/21 21:51:48 [detection_layer] {"stage_name":"detection_layer","events_processed":451,"events_dropped":0,"avg_latency_ms":13.944999826510774,"throughput_eps":0,"last_update":"2026-03-21T21:51:43.966211338Z"} +2026/03/21 21:51:48 [log_collector] {"stage_name":"log_collector","events_processed":21028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4205.6,"last_update":"2026-03-21T21:51:43.869440173Z"} +2026/03/21 21:51:48 [metric_collector] {"stage_name":"metric_collector","events_processed":13554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2710.8,"last_update":"2026-03-21T21:51:43.869957264Z"} +2026/03/21 21:51:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:51:43.878876942Z"} +2026/03/21 21:51:48 ───────────────────────────────────────────────── +2026/03/21 21:51:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:51:53 [metric_collector] {"stage_name":"metric_collector","events_processed":13559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2711.8,"last_update":"2026-03-21T21:51:48.870842717Z"} +2026/03/21 21:51:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:51:48.879528205Z"} +2026/03/21 21:51:53 [transform_engine] {"stage_name":"transform_engine","events_processed":452,"events_dropped":0,"avg_latency_ms":328.26413278619634,"throughput_eps":0,"last_update":"2026-03-21T21:51:49.081749234Z"} +2026/03/21 21:51:53 [detection_layer] {"stage_name":"detection_layer","events_processed":451,"events_dropped":0,"avg_latency_ms":13.944999826510774,"throughput_eps":0,"last_update":"2026-03-21T21:51:48.966531695Z"} +2026/03/21 21:51:53 [log_collector] {"stage_name":"log_collector","events_processed":21028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4205.6,"last_update":"2026-03-21T21:51:48.870479741Z"} +2026/03/21 21:51:53 ───────────────────────────────────────────────── +2026/03/21 21:51:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:51:58 [transform_engine] {"stage_name":"transform_engine","events_processed":452,"events_dropped":0,"avg_latency_ms":328.26413278619634,"throughput_eps":0,"last_update":"2026-03-21T21:51:53.965820888Z"} +2026/03/21 21:51:58 [detection_layer] {"stage_name":"detection_layer","events_processed":452,"events_dropped":0,"avg_latency_ms":14.84173426120862,"throughput_eps":0,"last_update":"2026-03-21T21:51:53.965743839Z"} +2026/03/21 21:51:58 [log_collector] {"stage_name":"log_collector","events_processed":21028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4205.6,"last_update":"2026-03-21T21:51:53.869822498Z"} +2026/03/21 21:51:58 [metric_collector] {"stage_name":"metric_collector","events_processed":13564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2712.8,"last_update":"2026-03-21T21:51:53.870114258Z"} +2026/03/21 21:51:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:51:53.878545398Z"} +2026/03/21 21:51:58 ───────────────────────────────────────────────── +2026/03/21 21:52:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:52:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:51:58.878316059Z"} +2026/03/21 21:52:03 [transform_engine] {"stage_name":"transform_engine","events_processed":452,"events_dropped":0,"avg_latency_ms":328.26413278619634,"throughput_eps":0,"last_update":"2026-03-21T21:51:58.965562272Z"} +2026/03/21 21:52:03 [detection_layer] {"stage_name":"detection_layer","events_processed":452,"events_dropped":0,"avg_latency_ms":14.84173426120862,"throughput_eps":0,"last_update":"2026-03-21T21:51:58.965534928Z"} +2026/03/21 21:52:03 [log_collector] {"stage_name":"log_collector","events_processed":21028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4205.6,"last_update":"2026-03-21T21:51:58.869619432Z"} +2026/03/21 21:52:03 [metric_collector] {"stage_name":"metric_collector","events_processed":13569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2713.8,"last_update":"2026-03-21T21:51:58.869792183Z"} +2026/03/21 21:52:03 ───────────────────────────────────────────────── +2026/03/21 21:52:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:52:08 [log_collector] {"stage_name":"log_collector","events_processed":21028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4205.6,"last_update":"2026-03-21T21:52:03.870387614Z"} +2026/03/21 21:52:08 [metric_collector] {"stage_name":"metric_collector","events_processed":13574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2714.8,"last_update":"2026-03-21T21:52:03.870911198Z"} +2026/03/21 21:52:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:52:03.879331216Z"} +2026/03/21 21:52:08 [transform_engine] {"stage_name":"transform_engine","events_processed":452,"events_dropped":0,"avg_latency_ms":328.26413278619634,"throughput_eps":0,"last_update":"2026-03-21T21:52:03.965560885Z"} +2026/03/21 21:52:08 [detection_layer] {"stage_name":"detection_layer","events_processed":452,"events_dropped":0,"avg_latency_ms":14.84173426120862,"throughput_eps":0,"last_update":"2026-03-21T21:52:03.965586595Z"} +2026/03/21 21:52:08 ───────────────────────────────────────────────── +2026/03/21 21:52:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:52:13 [log_collector] {"stage_name":"log_collector","events_processed":21028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4205.6,"last_update":"2026-03-21T21:52:08.870065602Z"} +2026/03/21 21:52:13 [metric_collector] {"stage_name":"metric_collector","events_processed":13579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2715.8,"last_update":"2026-03-21T21:52:08.870009044Z"} +2026/03/21 21:52:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:52:08.879441984Z"} +2026/03/21 21:52:13 [transform_engine] {"stage_name":"transform_engine","events_processed":452,"events_dropped":0,"avg_latency_ms":328.26413278619634,"throughput_eps":0,"last_update":"2026-03-21T21:52:08.965750203Z"} +2026/03/21 21:52:13 [detection_layer] {"stage_name":"detection_layer","events_processed":452,"events_dropped":0,"avg_latency_ms":14.84173426120862,"throughput_eps":0,"last_update":"2026-03-21T21:52:08.965787425Z"} +2026/03/21 21:52:13 ───────────────────────────────────────────────── +2026/03/21 21:52:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:52:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:52:13.879102396Z"} +2026/03/21 21:52:18 [transform_engine] {"stage_name":"transform_engine","events_processed":452,"events_dropped":0,"avg_latency_ms":328.26413278619634,"throughput_eps":0,"last_update":"2026-03-21T21:52:13.965288027Z"} +2026/03/21 21:52:18 [detection_layer] {"stage_name":"detection_layer","events_processed":452,"events_dropped":0,"avg_latency_ms":14.84173426120862,"throughput_eps":0,"last_update":"2026-03-21T21:52:13.965330659Z"} +2026/03/21 21:52:18 [log_collector] {"stage_name":"log_collector","events_processed":21028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4205.6,"last_update":"2026-03-21T21:52:13.869779136Z"} +2026/03/21 21:52:18 [metric_collector] {"stage_name":"metric_collector","events_processed":13584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2716.8,"last_update":"2026-03-21T21:52:13.870419664Z"} +2026/03/21 21:52:18 ───────────────────────────────────────────────── +2026/03/21 21:52:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:52:23 [log_collector] {"stage_name":"log_collector","events_processed":21028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4205.6,"last_update":"2026-03-21T21:52:18.870116884Z"} +2026/03/21 21:52:23 [metric_collector] {"stage_name":"metric_collector","events_processed":13589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2717.8,"last_update":"2026-03-21T21:52:18.870475763Z"} +2026/03/21 21:52:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:52:18.879278544Z"} +2026/03/21 21:52:23 [transform_engine] {"stage_name":"transform_engine","events_processed":453,"events_dropped":0,"avg_latency_ms":279.4473232289571,"throughput_eps":0,"last_update":"2026-03-21T21:52:19.049713632Z"} +2026/03/21 21:52:23 [detection_layer] {"stage_name":"detection_layer","events_processed":452,"events_dropped":0,"avg_latency_ms":14.84173426120862,"throughput_eps":0,"last_update":"2026-03-21T21:52:18.965505464Z"} +2026/03/21 21:52:23 ───────────────────────────────────────────────── +2026/03/21 21:52:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:52:28 [detection_layer] {"stage_name":"detection_layer","events_processed":453,"events_dropped":0,"avg_latency_ms":15.908139008966897,"throughput_eps":0,"last_update":"2026-03-21T21:52:23.965316189Z"} +2026/03/21 21:52:28 [log_collector] {"stage_name":"log_collector","events_processed":21028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4205.6,"last_update":"2026-03-21T21:52:23.869973289Z"} +2026/03/21 21:52:28 [metric_collector] {"stage_name":"metric_collector","events_processed":13594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2718.8,"last_update":"2026-03-21T21:52:23.870396511Z"} +2026/03/21 21:52:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:52:23.879082588Z"} +2026/03/21 21:52:28 [transform_engine] {"stage_name":"transform_engine","events_processed":453,"events_dropped":0,"avg_latency_ms":279.4473232289571,"throughput_eps":0,"last_update":"2026-03-21T21:52:23.965328924Z"} +2026/03/21 21:52:28 ───────────────────────────────────────────────── +2026/03/21 21:52:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:52:33 [log_collector] {"stage_name":"log_collector","events_processed":21028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4205.6,"last_update":"2026-03-21T21:52:33.8696262Z"} +2026/03/21 21:52:33 [metric_collector] {"stage_name":"metric_collector","events_processed":13599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2719.8,"last_update":"2026-03-21T21:52:28.870256715Z"} +2026/03/21 21:52:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5442,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:52:28.879225694Z"} +2026/03/21 21:52:33 [transform_engine] {"stage_name":"transform_engine","events_processed":453,"events_dropped":0,"avg_latency_ms":279.4473232289571,"throughput_eps":0,"last_update":"2026-03-21T21:52:28.965213441Z"} +2026/03/21 21:52:33 [detection_layer] {"stage_name":"detection_layer","events_processed":453,"events_dropped":0,"avg_latency_ms":15.908139008966897,"throughput_eps":0,"last_update":"2026-03-21T21:52:28.965403456Z"} +2026/03/21 21:52:33 ───────────────────────────────────────────────── +2026/03/21 21:52:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:52:38 [log_collector] {"stage_name":"log_collector","events_processed":21028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4205.6,"last_update":"2026-03-21T21:52:38.869410142Z"} +2026/03/21 21:52:38 [metric_collector] {"stage_name":"metric_collector","events_processed":13604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2720.8,"last_update":"2026-03-21T21:52:33.869927938Z"} +2026/03/21 21:52:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:52:33.879077203Z"} +2026/03/21 21:52:38 [transform_engine] {"stage_name":"transform_engine","events_processed":453,"events_dropped":0,"avg_latency_ms":279.4473232289571,"throughput_eps":0,"last_update":"2026-03-21T21:52:33.965309117Z"} +2026/03/21 21:52:38 [detection_layer] {"stage_name":"detection_layer","events_processed":453,"events_dropped":0,"avg_latency_ms":15.908139008966897,"throughput_eps":0,"last_update":"2026-03-21T21:52:33.965289199Z"} +2026/03/21 21:52:38 ───────────────────────────────────────────────── +2026/03/21 21:52:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:52:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5446,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:52:38.878135194Z"} +2026/03/21 21:52:43 [transform_engine] {"stage_name":"transform_engine","events_processed":453,"events_dropped":0,"avg_latency_ms":279.4473232289571,"throughput_eps":0,"last_update":"2026-03-21T21:52:38.965361694Z"} +2026/03/21 21:52:43 [detection_layer] {"stage_name":"detection_layer","events_processed":453,"events_dropped":0,"avg_latency_ms":15.908139008966897,"throughput_eps":0,"last_update":"2026-03-21T21:52:38.96533908Z"} +2026/03/21 21:52:43 [log_collector] {"stage_name":"log_collector","events_processed":21028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4205.6,"last_update":"2026-03-21T21:52:38.869410142Z"} +2026/03/21 21:52:43 [metric_collector] {"stage_name":"metric_collector","events_processed":13609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2721.8,"last_update":"2026-03-21T21:52:38.870000835Z"} +2026/03/21 21:52:43 ───────────────────────────────────────────────── +Saved state: 12 clusters, 21029 messages, reason: none +2026/03/21 21:52:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:52:48 [log_collector] {"stage_name":"log_collector","events_processed":21028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4205.6,"last_update":"2026-03-21T21:52:43.870564757Z"} +2026/03/21 21:52:48 [metric_collector] {"stage_name":"metric_collector","events_processed":13614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2722.8,"last_update":"2026-03-21T21:52:43.871009279Z"} +2026/03/21 21:52:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:52:43.878884271Z"} +2026/03/21 21:52:48 [transform_engine] {"stage_name":"transform_engine","events_processed":453,"events_dropped":0,"avg_latency_ms":279.4473232289571,"throughput_eps":0,"last_update":"2026-03-21T21:52:43.966130025Z"} +2026/03/21 21:52:48 [detection_layer] {"stage_name":"detection_layer","events_processed":453,"events_dropped":0,"avg_latency_ms":15.908139008966897,"throughput_eps":0,"last_update":"2026-03-21T21:52:43.966114455Z"} +2026/03/21 21:52:48 ───────────────────────────────────────────────── +2026/03/21 21:52:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:52:53 [log_collector] {"stage_name":"log_collector","events_processed":21033,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4206.6,"last_update":"2026-03-21T21:52:48.869794734Z"} +2026/03/21 21:52:53 [metric_collector] {"stage_name":"metric_collector","events_processed":13619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2723.8,"last_update":"2026-03-21T21:52:48.869780928Z"} +2026/03/21 21:52:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:52:48.876006476Z"} +2026/03/21 21:52:53 [transform_engine] {"stage_name":"transform_engine","events_processed":454,"events_dropped":0,"avg_latency_ms":516.0665569831657,"throughput_eps":0,"last_update":"2026-03-21T21:52:50.427648725Z"} +2026/03/21 21:52:53 [detection_layer] {"stage_name":"detection_layer","events_processed":453,"events_dropped":0,"avg_latency_ms":15.908139008966897,"throughput_eps":0,"last_update":"2026-03-21T21:52:48.965519908Z"} +2026/03/21 21:52:53 ───────────────────────────────────────────────── +2026/03/21 21:52:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:52:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5452,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:52:53.877314624Z"} +2026/03/21 21:52:58 [transform_engine] {"stage_name":"transform_engine","events_processed":454,"events_dropped":0,"avg_latency_ms":516.0665569831657,"throughput_eps":0,"last_update":"2026-03-21T21:52:53.965525286Z"} +2026/03/21 21:52:58 [detection_layer] {"stage_name":"detection_layer","events_processed":454,"events_dropped":0,"avg_latency_ms":15.265990807173518,"throughput_eps":0,"last_update":"2026-03-21T21:52:53.965516188Z"} +2026/03/21 21:52:58 [log_collector] {"stage_name":"log_collector","events_processed":21033,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4206.6,"last_update":"2026-03-21T21:52:53.869628205Z"} +2026/03/21 21:52:58 [metric_collector] {"stage_name":"metric_collector","events_processed":13624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2724.8,"last_update":"2026-03-21T21:52:53.869601484Z"} +2026/03/21 21:52:58 ───────────────────────────────────────────────── +2026/03/21 21:53:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:53:03 [metric_collector] {"stage_name":"metric_collector","events_processed":13629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2725.8,"last_update":"2026-03-21T21:52:58.870735304Z"} +2026/03/21 21:53:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:52:58.87845178Z"} +2026/03/21 21:53:03 [transform_engine] {"stage_name":"transform_engine","events_processed":454,"events_dropped":0,"avg_latency_ms":516.0665569831657,"throughput_eps":0,"last_update":"2026-03-21T21:52:58.965698192Z"} +2026/03/21 21:53:03 [detection_layer] {"stage_name":"detection_layer","events_processed":454,"events_dropped":0,"avg_latency_ms":15.265990807173518,"throughput_eps":0,"last_update":"2026-03-21T21:52:58.965687812Z"} +2026/03/21 21:53:03 [log_collector] {"stage_name":"log_collector","events_processed":21033,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4206.6,"last_update":"2026-03-21T21:52:58.870522145Z"} +2026/03/21 21:53:03 ───────────────────────────────────────────────── +2026/03/21 21:53:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:53:08 [log_collector] {"stage_name":"log_collector","events_processed":21033,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4206.6,"last_update":"2026-03-21T21:53:03.869811296Z"} +2026/03/21 21:53:08 [metric_collector] {"stage_name":"metric_collector","events_processed":13634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2726.8,"last_update":"2026-03-21T21:53:03.870184561Z"} +2026/03/21 21:53:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:53:03.878372182Z"} +2026/03/21 21:53:08 [transform_engine] {"stage_name":"transform_engine","events_processed":454,"events_dropped":0,"avg_latency_ms":516.0665569831657,"throughput_eps":0,"last_update":"2026-03-21T21:53:03.965610125Z"} +2026/03/21 21:53:08 [detection_layer] {"stage_name":"detection_layer","events_processed":454,"events_dropped":0,"avg_latency_ms":15.265990807173518,"throughput_eps":0,"last_update":"2026-03-21T21:53:03.965597852Z"} +2026/03/21 21:53:08 ───────────────────────────────────────────────── +2026/03/21 21:53:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:53:13 [detection_layer] {"stage_name":"detection_layer","events_processed":454,"events_dropped":0,"avg_latency_ms":15.265990807173518,"throughput_eps":0,"last_update":"2026-03-21T21:53:08.965280365Z"} +2026/03/21 21:53:13 [log_collector] {"stage_name":"log_collector","events_processed":21033,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4206.6,"last_update":"2026-03-21T21:53:08.869422704Z"} +2026/03/21 21:53:13 [metric_collector] {"stage_name":"metric_collector","events_processed":13639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2727.8,"last_update":"2026-03-21T21:53:08.869712189Z"} +2026/03/21 21:53:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:53:08.876075531Z"} +2026/03/21 21:53:13 [transform_engine] {"stage_name":"transform_engine","events_processed":454,"events_dropped":0,"avg_latency_ms":516.0665569831657,"throughput_eps":0,"last_update":"2026-03-21T21:53:08.965257972Z"} +2026/03/21 21:53:13 ───────────────────────────────────────────────── +2026/03/21 21:53:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:53:18 [metric_collector] {"stage_name":"metric_collector","events_processed":13644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2728.8,"last_update":"2026-03-21T21:53:13.870168897Z"} +2026/03/21 21:53:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:53:13.876488775Z"} +2026/03/21 21:53:18 [transform_engine] {"stage_name":"transform_engine","events_processed":454,"events_dropped":0,"avg_latency_ms":516.0665569831657,"throughput_eps":0,"last_update":"2026-03-21T21:53:13.965701032Z"} +2026/03/21 21:53:18 [detection_layer] {"stage_name":"detection_layer","events_processed":454,"events_dropped":0,"avg_latency_ms":15.265990807173518,"throughput_eps":0,"last_update":"2026-03-21T21:53:13.965687565Z"} +2026/03/21 21:53:18 [log_collector] {"stage_name":"log_collector","events_processed":21033,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4206.6,"last_update":"2026-03-21T21:53:13.86975836Z"} +2026/03/21 21:53:18 ───────────────────────────────────────────────── +2026/03/21 21:53:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:53:23 [log_collector] {"stage_name":"log_collector","events_processed":21033,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4206.6,"last_update":"2026-03-21T21:53:23.869467895Z"} +2026/03/21 21:53:23 [metric_collector] {"stage_name":"metric_collector","events_processed":13649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2729.8,"last_update":"2026-03-21T21:53:18.870193485Z"} +2026/03/21 21:53:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:53:18.876251852Z"} +2026/03/21 21:53:23 [transform_engine] {"stage_name":"transform_engine","events_processed":455,"events_dropped":0,"avg_latency_ms":716.8898021865326,"throughput_eps":0,"last_update":"2026-03-21T21:53:20.485579561Z"} +2026/03/21 21:53:23 [detection_layer] {"stage_name":"detection_layer","events_processed":454,"events_dropped":0,"avg_latency_ms":15.265990807173518,"throughput_eps":0,"last_update":"2026-03-21T21:53:18.965382329Z"} +2026/03/21 21:53:23 ───────────────────────────────────────────────── +2026/03/21 21:53:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:53:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:53:23.881585972Z"} +2026/03/21 21:53:28 [transform_engine] {"stage_name":"transform_engine","events_processed":455,"events_dropped":0,"avg_latency_ms":716.8898021865326,"throughput_eps":0,"last_update":"2026-03-21T21:53:23.965847231Z"} +2026/03/21 21:53:28 [detection_layer] {"stage_name":"detection_layer","events_processed":455,"events_dropped":0,"avg_latency_ms":14.991715245738815,"throughput_eps":0,"last_update":"2026-03-21T21:53:23.96583649Z"} +2026/03/21 21:53:28 [log_collector] {"stage_name":"log_collector","events_processed":21033,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4206.6,"last_update":"2026-03-21T21:53:23.869467895Z"} +2026/03/21 21:53:28 [metric_collector] {"stage_name":"metric_collector","events_processed":13654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2730.8,"last_update":"2026-03-21T21:53:23.869958546Z"} +2026/03/21 21:53:28 ───────────────────────────────────────────────── +2026/03/21 21:53:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:53:33 [log_collector] {"stage_name":"log_collector","events_processed":21036,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4207.2,"last_update":"2026-03-21T21:53:28.869592458Z"} +2026/03/21 21:53:33 [metric_collector] {"stage_name":"metric_collector","events_processed":13659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2731.8,"last_update":"2026-03-21T21:53:28.869953019Z"} +2026/03/21 21:53:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:53:28.878164424Z"} +2026/03/21 21:53:33 [transform_engine] {"stage_name":"transform_engine","events_processed":455,"events_dropped":0,"avg_latency_ms":716.8898021865326,"throughput_eps":0,"last_update":"2026-03-21T21:53:28.965438499Z"} +2026/03/21 21:53:33 [detection_layer] {"stage_name":"detection_layer","events_processed":455,"events_dropped":0,"avg_latency_ms":14.991715245738815,"throughput_eps":0,"last_update":"2026-03-21T21:53:28.965422258Z"} +2026/03/21 21:53:33 ───────────────────────────────────────────────── +2026/03/21 21:53:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:53:38 [log_collector] {"stage_name":"log_collector","events_processed":21044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4208.8,"last_update":"2026-03-21T21:53:33.869866218Z"} +2026/03/21 21:53:38 [metric_collector] {"stage_name":"metric_collector","events_processed":13664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2732.8,"last_update":"2026-03-21T21:53:33.870295501Z"} +2026/03/21 21:53:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:53:33.879051661Z"} +2026/03/21 21:53:38 [transform_engine] {"stage_name":"transform_engine","events_processed":455,"events_dropped":0,"avg_latency_ms":716.8898021865326,"throughput_eps":0,"last_update":"2026-03-21T21:53:33.965181961Z"} +2026/03/21 21:53:38 [detection_layer] {"stage_name":"detection_layer","events_processed":455,"events_dropped":0,"avg_latency_ms":14.991715245738815,"throughput_eps":0,"last_update":"2026-03-21T21:53:33.966337357Z"} +2026/03/21 21:53:38 ───────────────────────────────────────────────── +2026/03/21 21:53:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:53:43 [log_collector] {"stage_name":"log_collector","events_processed":21046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4209.2,"last_update":"2026-03-21T21:53:38.86998199Z"} +2026/03/21 21:53:43 [metric_collector] {"stage_name":"metric_collector","events_processed":13669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2733.8,"last_update":"2026-03-21T21:53:38.870423396Z"} +2026/03/21 21:53:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5470,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:53:38.882846055Z"} +2026/03/21 21:53:43 [transform_engine] {"stage_name":"transform_engine","events_processed":455,"events_dropped":0,"avg_latency_ms":716.8898021865326,"throughput_eps":0,"last_update":"2026-03-21T21:53:38.965634266Z"} +2026/03/21 21:53:43 [detection_layer] {"stage_name":"detection_layer","events_processed":455,"events_dropped":0,"avg_latency_ms":14.991715245738815,"throughput_eps":0,"last_update":"2026-03-21T21:53:38.965623536Z"} +2026/03/21 21:53:43 ───────────────────────────────────────────────── +Saved state: 12 clusters, 21391 messages, reason: none +2026/03/21 21:53:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:53:48 [log_collector] {"stage_name":"log_collector","events_processed":21251,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4250.2,"last_update":"2026-03-21T21:53:43.870014536Z"} +2026/03/21 21:53:48 [metric_collector] {"stage_name":"metric_collector","events_processed":13674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2734.8,"last_update":"2026-03-21T21:53:43.870301676Z"} +2026/03/21 21:53:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:53:43.877533313Z"} +2026/03/21 21:53:48 [transform_engine] {"stage_name":"transform_engine","events_processed":455,"events_dropped":0,"avg_latency_ms":716.8898021865326,"throughput_eps":0,"last_update":"2026-03-21T21:53:43.965641112Z"} +2026/03/21 21:53:48 [detection_layer] {"stage_name":"detection_layer","events_processed":455,"events_dropped":0,"avg_latency_ms":14.991715245738815,"throughput_eps":0,"last_update":"2026-03-21T21:53:43.965630371Z"} +2026/03/21 21:53:48 ───────────────────────────────────────────────── +2026/03/21 21:53:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:53:53 [log_collector] {"stage_name":"log_collector","events_processed":21392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4278.4,"last_update":"2026-03-21T21:53:48.869776889Z"} +2026/03/21 21:53:53 [metric_collector] {"stage_name":"metric_collector","events_processed":13679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2735.8,"last_update":"2026-03-21T21:53:48.870177177Z"} +2026/03/21 21:53:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:53:48.888960261Z"} +2026/03/21 21:53:53 [transform_engine] {"stage_name":"transform_engine","events_processed":456,"events_dropped":0,"avg_latency_ms":590.7458301492262,"throughput_eps":0,"last_update":"2026-03-21T21:53:49.051302255Z"} +2026/03/21 21:53:53 [detection_layer] {"stage_name":"detection_layer","events_processed":455,"events_dropped":0,"avg_latency_ms":14.991715245738815,"throughput_eps":0,"last_update":"2026-03-21T21:53:48.966223445Z"} +2026/03/21 21:53:53 ───────────────────────────────────────────────── +2026/03/21 21:53:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:53:58 [log_collector] {"stage_name":"log_collector","events_processed":21392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4278.4,"last_update":"2026-03-21T21:53:53.87002587Z"} +2026/03/21 21:53:58 [metric_collector] {"stage_name":"metric_collector","events_processed":13684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2736.8,"last_update":"2026-03-21T21:53:53.870234982Z"} +2026/03/21 21:53:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5476,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:53:53.878948608Z"} +2026/03/21 21:53:58 [transform_engine] {"stage_name":"transform_engine","events_processed":456,"events_dropped":0,"avg_latency_ms":590.7458301492262,"throughput_eps":0,"last_update":"2026-03-21T21:53:53.965146122Z"} +2026/03/21 21:53:58 [detection_layer] {"stage_name":"detection_layer","events_processed":456,"events_dropped":0,"avg_latency_ms":15.938099996591054,"throughput_eps":0,"last_update":"2026-03-21T21:53:53.966244858Z"} +2026/03/21 21:53:58 ───────────────────────────────────────────────── +2026/03/21 21:54:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:54:03 [metric_collector] {"stage_name":"metric_collector","events_processed":13689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2737.8,"last_update":"2026-03-21T21:53:58.870294947Z"} +2026/03/21 21:54:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:53:58.87892283Z"} +2026/03/21 21:54:03 [transform_engine] {"stage_name":"transform_engine","events_processed":456,"events_dropped":0,"avg_latency_ms":590.7458301492262,"throughput_eps":0,"last_update":"2026-03-21T21:53:58.966284925Z"} +2026/03/21 21:54:03 [detection_layer] {"stage_name":"detection_layer","events_processed":456,"events_dropped":0,"avg_latency_ms":15.938099996591054,"throughput_eps":0,"last_update":"2026-03-21T21:53:58.966130079Z"} +2026/03/21 21:54:03 [log_collector] {"stage_name":"log_collector","events_processed":21392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4278.4,"last_update":"2026-03-21T21:54:03.86978986Z"} +2026/03/21 21:54:03 ───────────────────────────────────────────────── +2026/03/21 21:54:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:54:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5480,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:54:03.87854154Z"} +2026/03/21 21:54:08 [transform_engine] {"stage_name":"transform_engine","events_processed":456,"events_dropped":0,"avg_latency_ms":590.7458301492262,"throughput_eps":0,"last_update":"2026-03-21T21:54:03.965754817Z"} +2026/03/21 21:54:08 [detection_layer] {"stage_name":"detection_layer","events_processed":456,"events_dropped":0,"avg_latency_ms":15.938099996591054,"throughput_eps":0,"last_update":"2026-03-21T21:54:03.96579775Z"} +2026/03/21 21:54:08 [log_collector] {"stage_name":"log_collector","events_processed":21392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4278.4,"last_update":"2026-03-21T21:54:03.86978986Z"} +2026/03/21 21:54:08 [metric_collector] {"stage_name":"metric_collector","events_processed":13694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2738.8,"last_update":"2026-03-21T21:54:03.869942442Z"} +2026/03/21 21:54:08 ───────────────────────────────────────────────── +2026/03/21 21:54:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:54:13 [detection_layer] {"stage_name":"detection_layer","events_processed":456,"events_dropped":0,"avg_latency_ms":15.938099996591054,"throughput_eps":0,"last_update":"2026-03-21T21:54:08.966147776Z"} +2026/03/21 21:54:13 [log_collector] {"stage_name":"log_collector","events_processed":21392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4278.4,"last_update":"2026-03-21T21:54:08.869728127Z"} +2026/03/21 21:54:13 [metric_collector] {"stage_name":"metric_collector","events_processed":13699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2739.8,"last_update":"2026-03-21T21:54:08.869985341Z"} +2026/03/21 21:54:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5482,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:54:08.87887262Z"} +2026/03/21 21:54:13 [transform_engine] {"stage_name":"transform_engine","events_processed":456,"events_dropped":0,"avg_latency_ms":590.7458301492262,"throughput_eps":0,"last_update":"2026-03-21T21:54:08.966187823Z"} +2026/03/21 21:54:13 ───────────────────────────────────────────────── +2026/03/21 21:54:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:54:18 [transform_engine] {"stage_name":"transform_engine","events_processed":456,"events_dropped":0,"avg_latency_ms":590.7458301492262,"throughput_eps":0,"last_update":"2026-03-21T21:54:13.965764527Z"} +2026/03/21 21:54:18 [detection_layer] {"stage_name":"detection_layer","events_processed":456,"events_dropped":0,"avg_latency_ms":15.938099996591054,"throughput_eps":0,"last_update":"2026-03-21T21:54:13.965637884Z"} +2026/03/21 21:54:18 [log_collector] {"stage_name":"log_collector","events_processed":21392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4278.4,"last_update":"2026-03-21T21:54:18.869891856Z"} +2026/03/21 21:54:18 [metric_collector] {"stage_name":"metric_collector","events_processed":13704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2740.8,"last_update":"2026-03-21T21:54:13.869945672Z"} +2026/03/21 21:54:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:54:13.878367289Z"} +2026/03/21 21:54:18 ───────────────────────────────────────────────── +2026/03/21 21:54:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:54:23 [log_collector] {"stage_name":"log_collector","events_processed":21392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4278.4,"last_update":"2026-03-21T21:54:18.869891856Z"} +2026/03/21 21:54:23 [metric_collector] {"stage_name":"metric_collector","events_processed":13709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2741.8,"last_update":"2026-03-21T21:54:18.870265382Z"} +2026/03/21 21:54:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5486,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:54:18.879530806Z"} +2026/03/21 21:54:23 [transform_engine] {"stage_name":"transform_engine","events_processed":457,"events_dropped":0,"avg_latency_ms":488.480666519381,"throughput_eps":0,"last_update":"2026-03-21T21:54:19.045277562Z"} +2026/03/21 21:54:23 [detection_layer] {"stage_name":"detection_layer","events_processed":456,"events_dropped":0,"avg_latency_ms":15.938099996591054,"throughput_eps":0,"last_update":"2026-03-21T21:54:18.966504581Z"} +2026/03/21 21:54:23 ───────────────────────────────────────────────── +2026/03/21 21:54:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:54:28 [log_collector] {"stage_name":"log_collector","events_processed":21392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4278.4,"last_update":"2026-03-21T21:54:23.870096456Z"} +2026/03/21 21:54:28 [metric_collector] {"stage_name":"metric_collector","events_processed":13714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2742.8,"last_update":"2026-03-21T21:54:23.870474972Z"} +2026/03/21 21:54:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:54:23.878919722Z"} +2026/03/21 21:54:28 [transform_engine] {"stage_name":"transform_engine","events_processed":457,"events_dropped":0,"avg_latency_ms":488.480666519381,"throughput_eps":0,"last_update":"2026-03-21T21:54:23.965112658Z"} +2026/03/21 21:54:28 [detection_layer] {"stage_name":"detection_layer","events_processed":457,"events_dropped":0,"avg_latency_ms":17.522972597272844,"throughput_eps":0,"last_update":"2026-03-21T21:54:23.966268255Z"} +2026/03/21 21:54:28 ───────────────────────────────────────────────── +2026/03/21 21:54:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:54:33 [transform_engine] {"stage_name":"transform_engine","events_processed":457,"events_dropped":0,"avg_latency_ms":488.480666519381,"throughput_eps":0,"last_update":"2026-03-21T21:54:28.965195035Z"} +2026/03/21 21:54:33 [detection_layer] {"stage_name":"detection_layer","events_processed":457,"events_dropped":0,"avg_latency_ms":17.522972597272844,"throughput_eps":0,"last_update":"2026-03-21T21:54:28.965254549Z"} +2026/03/21 21:54:33 [log_collector] {"stage_name":"log_collector","events_processed":21392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4278.4,"last_update":"2026-03-21T21:54:33.869745181Z"} +2026/03/21 21:54:33 [metric_collector] {"stage_name":"metric_collector","events_processed":13719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2743.8,"last_update":"2026-03-21T21:54:28.869819504Z"} +2026/03/21 21:54:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5490,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:54:28.878610859Z"} +2026/03/21 21:54:33 ───────────────────────────────────────────────── +2026/03/21 21:54:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:54:38 [transform_engine] {"stage_name":"transform_engine","events_processed":457,"events_dropped":0,"avg_latency_ms":488.480666519381,"throughput_eps":0,"last_update":"2026-03-21T21:54:33.965747351Z"} +2026/03/21 21:54:38 [detection_layer] {"stage_name":"detection_layer","events_processed":457,"events_dropped":0,"avg_latency_ms":17.522972597272844,"throughput_eps":0,"last_update":"2026-03-21T21:54:33.965598416Z"} +2026/03/21 21:54:38 [log_collector] {"stage_name":"log_collector","events_processed":21392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4278.4,"last_update":"2026-03-21T21:54:33.869745181Z"} +2026/03/21 21:54:38 [metric_collector] {"stage_name":"metric_collector","events_processed":13724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2744.8,"last_update":"2026-03-21T21:54:33.870031891Z"} +2026/03/21 21:54:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:54:33.879314438Z"} +2026/03/21 21:54:38 ───────────────────────────────────────────────── +2026/03/21 21:54:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:54:43 [log_collector] {"stage_name":"log_collector","events_processed":21392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4278.4,"last_update":"2026-03-21T21:54:38.869434639Z"} +2026/03/21 21:54:43 [metric_collector] {"stage_name":"metric_collector","events_processed":13729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2745.8,"last_update":"2026-03-21T21:54:38.86975822Z"} +2026/03/21 21:54:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:54:38.877677563Z"} +2026/03/21 21:54:43 [transform_engine] {"stage_name":"transform_engine","events_processed":457,"events_dropped":0,"avg_latency_ms":488.480666519381,"throughput_eps":0,"last_update":"2026-03-21T21:54:38.966010028Z"} +2026/03/21 21:54:43 [detection_layer] {"stage_name":"detection_layer","events_processed":457,"events_dropped":0,"avg_latency_ms":17.522972597272844,"throughput_eps":0,"last_update":"2026-03-21T21:54:38.965909314Z"} +2026/03/21 21:54:43 ───────────────────────────────────────────────── +2026/03/21 21:54:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:54:48 [transform_engine] {"stage_name":"transform_engine","events_processed":457,"events_dropped":0,"avg_latency_ms":488.480666519381,"throughput_eps":0,"last_update":"2026-03-21T21:54:43.965784041Z"} +2026/03/21 21:54:48 [detection_layer] {"stage_name":"detection_layer","events_processed":457,"events_dropped":0,"avg_latency_ms":17.522972597272844,"throughput_eps":0,"last_update":"2026-03-21T21:54:43.965759382Z"} +2026/03/21 21:54:48 [log_collector] {"stage_name":"log_collector","events_processed":21392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4278.4,"last_update":"2026-03-21T21:54:43.869405201Z"} +2026/03/21 21:54:48 [metric_collector] {"stage_name":"metric_collector","events_processed":13739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2747.8,"last_update":"2026-03-21T21:54:48.869783991Z"} +2026/03/21 21:54:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5496,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:54:43.878465872Z"} +2026/03/21 21:54:48 ───────────────────────────────────────────────── +2026/03/21 21:54:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:54:53 [detection_layer] {"stage_name":"detection_layer","events_processed":457,"events_dropped":0,"avg_latency_ms":17.522972597272844,"throughput_eps":0,"last_update":"2026-03-21T21:54:48.965744938Z"} +2026/03/21 21:54:53 [log_collector] {"stage_name":"log_collector","events_processed":21392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4278.4,"last_update":"2026-03-21T21:54:48.869928197Z"} +2026/03/21 21:54:53 [metric_collector] {"stage_name":"metric_collector","events_processed":13739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2747.8,"last_update":"2026-03-21T21:54:48.869783991Z"} +2026/03/21 21:54:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5498,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:54:48.879278935Z"} +2026/03/21 21:54:53 [transform_engine] {"stage_name":"transform_engine","events_processed":458,"events_dropped":0,"avg_latency_ms":405.17892821550475,"throughput_eps":0,"last_update":"2026-03-21T21:54:49.037691805Z"} +2026/03/21 21:54:53 ───────────────────────────────────────────────── +2026/03/21 21:54:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:54:58 [log_collector] {"stage_name":"log_collector","events_processed":21392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4278.4,"last_update":"2026-03-21T21:54:53.869439327Z"} +2026/03/21 21:54:58 [metric_collector] {"stage_name":"metric_collector","events_processed":13744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2748.8,"last_update":"2026-03-21T21:54:53.869761975Z"} +2026/03/21 21:54:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:54:53.879253392Z"} +2026/03/21 21:54:58 [transform_engine] {"stage_name":"transform_engine","events_processed":458,"events_dropped":0,"avg_latency_ms":405.17892821550475,"throughput_eps":0,"last_update":"2026-03-21T21:54:53.965413047Z"} +2026/03/21 21:54:58 [detection_layer] {"stage_name":"detection_layer","events_processed":458,"events_dropped":0,"avg_latency_ms":17.995264677818277,"throughput_eps":0,"last_update":"2026-03-21T21:54:53.965463022Z"} +2026/03/21 21:54:58 ───────────────────────────────────────────────── +2026/03/21 21:55:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:55:03 [metric_collector] {"stage_name":"metric_collector","events_processed":13749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2749.8,"last_update":"2026-03-21T21:54:58.869796235Z"} +2026/03/21 21:55:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:54:58.878339553Z"} +2026/03/21 21:55:03 [transform_engine] {"stage_name":"transform_engine","events_processed":458,"events_dropped":0,"avg_latency_ms":405.17892821550475,"throughput_eps":0,"last_update":"2026-03-21T21:54:58.965676183Z"} +2026/03/21 21:55:03 [detection_layer] {"stage_name":"detection_layer","events_processed":458,"events_dropped":0,"avg_latency_ms":17.995264677818277,"throughput_eps":0,"last_update":"2026-03-21T21:54:58.965835569Z"} +2026/03/21 21:55:03 [log_collector] {"stage_name":"log_collector","events_processed":21392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4278.4,"last_update":"2026-03-21T21:54:58.869491801Z"} +2026/03/21 21:55:03 ───────────────────────────────────────────────── +2026/03/21 21:55:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:55:08 [log_collector] {"stage_name":"log_collector","events_processed":21392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4278.4,"last_update":"2026-03-21T21:55:03.870156854Z"} +2026/03/21 21:55:08 [metric_collector] {"stage_name":"metric_collector","events_processed":13754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2750.8,"last_update":"2026-03-21T21:55:03.870562091Z"} +2026/03/21 21:55:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:55:03.879091333Z"} +2026/03/21 21:55:08 [transform_engine] {"stage_name":"transform_engine","events_processed":458,"events_dropped":0,"avg_latency_ms":405.17892821550475,"throughput_eps":0,"last_update":"2026-03-21T21:55:03.965411434Z"} +2026/03/21 21:55:08 [detection_layer] {"stage_name":"detection_layer","events_processed":458,"events_dropped":0,"avg_latency_ms":17.995264677818277,"throughput_eps":0,"last_update":"2026-03-21T21:55:03.965304599Z"} +2026/03/21 21:55:08 ───────────────────────────────────────────────── +2026/03/21 21:55:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:55:13 [log_collector] {"stage_name":"log_collector","events_processed":21392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4278.4,"last_update":"2026-03-21T21:55:08.870065207Z"} +2026/03/21 21:55:13 [metric_collector] {"stage_name":"metric_collector","events_processed":13759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2751.8,"last_update":"2026-03-21T21:55:08.870493508Z"} +2026/03/21 21:55:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5506,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:55:08.878153885Z"} +2026/03/21 21:55:13 [transform_engine] {"stage_name":"transform_engine","events_processed":458,"events_dropped":0,"avg_latency_ms":405.17892821550475,"throughput_eps":0,"last_update":"2026-03-21T21:55:08.965492405Z"} +2026/03/21 21:55:13 [detection_layer] {"stage_name":"detection_layer","events_processed":458,"events_dropped":0,"avg_latency_ms":17.995264677818277,"throughput_eps":0,"last_update":"2026-03-21T21:55:08.965555546Z"} +2026/03/21 21:55:13 ───────────────────────────────────────────────── +2026/03/21 21:55:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:55:18 [detection_layer] {"stage_name":"detection_layer","events_processed":458,"events_dropped":0,"avg_latency_ms":17.995264677818277,"throughput_eps":0,"last_update":"2026-03-21T21:55:13.965741635Z"} +2026/03/21 21:55:18 [log_collector] {"stage_name":"log_collector","events_processed":21392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4278.4,"last_update":"2026-03-21T21:55:13.870044131Z"} +2026/03/21 21:55:18 [metric_collector] {"stage_name":"metric_collector","events_processed":13764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2752.8,"last_update":"2026-03-21T21:55:13.870324028Z"} +2026/03/21 21:55:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:55:13.879050608Z"} +2026/03/21 21:55:18 [transform_engine] {"stage_name":"transform_engine","events_processed":458,"events_dropped":0,"avg_latency_ms":405.17892821550475,"throughput_eps":0,"last_update":"2026-03-21T21:55:13.965147387Z"} +2026/03/21 21:55:18 ───────────────────────────────────────────────── +2026/03/21 21:55:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:55:23 [transform_engine] {"stage_name":"transform_engine","events_processed":459,"events_dropped":0,"avg_latency_ms":335.0099875724038,"throughput_eps":0,"last_update":"2026-03-21T21:55:19.020325613Z"} +2026/03/21 21:55:23 [detection_layer] {"stage_name":"detection_layer","events_processed":458,"events_dropped":0,"avg_latency_ms":17.995264677818277,"throughput_eps":0,"last_update":"2026-03-21T21:55:18.965973894Z"} +2026/03/21 21:55:23 [log_collector] {"stage_name":"log_collector","events_processed":21392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4278.4,"last_update":"2026-03-21T21:55:18.869455416Z"} +2026/03/21 21:55:23 [metric_collector] {"stage_name":"metric_collector","events_processed":13769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2753.8,"last_update":"2026-03-21T21:55:18.869833321Z"} +2026/03/21 21:55:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:55:18.87860615Z"} +2026/03/21 21:55:23 ───────────────────────────────────────────────── +Saved state: 12 clusters, 21393 messages, reason: none +2026/03/21 21:55:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:55:28 [log_collector] {"stage_name":"log_collector","events_processed":21392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4278.4,"last_update":"2026-03-21T21:55:23.869642769Z"} +2026/03/21 21:55:28 [metric_collector] {"stage_name":"metric_collector","events_processed":13774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2754.8,"last_update":"2026-03-21T21:55:23.869809388Z"} +2026/03/21 21:55:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5512,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:55:23.878944992Z"} +2026/03/21 21:55:28 [transform_engine] {"stage_name":"transform_engine","events_processed":459,"events_dropped":0,"avg_latency_ms":335.0099875724038,"throughput_eps":0,"last_update":"2026-03-21T21:55:23.96506362Z"} +2026/03/21 21:55:28 [detection_layer] {"stage_name":"detection_layer","events_processed":459,"events_dropped":0,"avg_latency_ms":18.60267814225462,"throughput_eps":0,"last_update":"2026-03-21T21:55:23.966166344Z"} +2026/03/21 21:55:28 ───────────────────────────────────────────────── +2026/03/21 21:55:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:55:33 [log_collector] {"stage_name":"log_collector","events_processed":21395,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4279,"last_update":"2026-03-21T21:55:28.869895266Z"} +2026/03/21 21:55:33 [metric_collector] {"stage_name":"metric_collector","events_processed":13779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2755.8,"last_update":"2026-03-21T21:55:28.870141909Z"} +2026/03/21 21:55:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:55:28.878464785Z"} +2026/03/21 21:55:33 [transform_engine] {"stage_name":"transform_engine","events_processed":459,"events_dropped":0,"avg_latency_ms":335.0099875724038,"throughput_eps":0,"last_update":"2026-03-21T21:55:28.96561504Z"} +2026/03/21 21:55:33 [detection_layer] {"stage_name":"detection_layer","events_processed":459,"events_dropped":0,"avg_latency_ms":18.60267814225462,"throughput_eps":0,"last_update":"2026-03-21T21:55:28.965604389Z"} +2026/03/21 21:55:33 ───────────────────────────────────────────────── +2026/03/21 21:55:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:55:38 [transform_engine] {"stage_name":"transform_engine","events_processed":459,"events_dropped":0,"avg_latency_ms":335.0099875724038,"throughput_eps":0,"last_update":"2026-03-21T21:55:33.965912663Z"} +2026/03/21 21:55:38 [detection_layer] {"stage_name":"detection_layer","events_processed":459,"events_dropped":0,"avg_latency_ms":18.60267814225462,"throughput_eps":0,"last_update":"2026-03-21T21:55:33.965897323Z"} +2026/03/21 21:55:38 [log_collector] {"stage_name":"log_collector","events_processed":21405,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4281,"last_update":"2026-03-21T21:55:33.869608241Z"} +2026/03/21 21:55:38 [metric_collector] {"stage_name":"metric_collector","events_processed":13784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2756.8,"last_update":"2026-03-21T21:55:33.870281662Z"} +2026/03/21 21:55:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:55:33.876708052Z"} +2026/03/21 21:55:38 ───────────────────────────────────────────────── +2026/03/21 21:55:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:55:43 [transform_engine] {"stage_name":"transform_engine","events_processed":459,"events_dropped":0,"avg_latency_ms":335.0099875724038,"throughput_eps":0,"last_update":"2026-03-21T21:55:38.966145014Z"} +2026/03/21 21:55:43 [detection_layer] {"stage_name":"detection_layer","events_processed":459,"events_dropped":0,"avg_latency_ms":18.60267814225462,"throughput_eps":0,"last_update":"2026-03-21T21:55:38.966030514Z"} +2026/03/21 21:55:43 [log_collector] {"stage_name":"log_collector","events_processed":21420,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4284,"last_update":"2026-03-21T21:55:38.869765698Z"} +2026/03/21 21:55:43 [metric_collector] {"stage_name":"metric_collector","events_processed":13788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2757.6,"last_update":"2026-03-21T21:55:38.869862083Z"} +2026/03/21 21:55:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:55:38.87659462Z"} +2026/03/21 21:55:43 ───────────────────────────────────────────────── +2026/03/21 21:55:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:55:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5520,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:55:43.875827881Z"} +2026/03/21 21:55:48 [transform_engine] {"stage_name":"transform_engine","events_processed":459,"events_dropped":0,"avg_latency_ms":335.0099875724038,"throughput_eps":0,"last_update":"2026-03-21T21:55:43.966012499Z"} +2026/03/21 21:55:48 [detection_layer] {"stage_name":"detection_layer","events_processed":459,"events_dropped":0,"avg_latency_ms":18.60267814225462,"throughput_eps":0,"last_update":"2026-03-21T21:55:43.966050101Z"} +2026/03/21 21:55:48 [log_collector] {"stage_name":"log_collector","events_processed":21436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4287.2,"last_update":"2026-03-21T21:55:48.869690195Z"} +2026/03/21 21:55:48 [metric_collector] {"stage_name":"metric_collector","events_processed":13794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2758.8,"last_update":"2026-03-21T21:55:43.869618597Z"} +2026/03/21 21:55:48 ───────────────────────────────────────────────── +2026/03/21 21:55:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:55:53 [log_collector] {"stage_name":"log_collector","events_processed":21436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4287.2,"last_update":"2026-03-21T21:55:48.869690195Z"} +2026/03/21 21:55:53 [metric_collector] {"stage_name":"metric_collector","events_processed":13799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2759.8,"last_update":"2026-03-21T21:55:48.870146069Z"} +2026/03/21 21:55:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5522,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:55:48.877849997Z"} +2026/03/21 21:55:53 [transform_engine] {"stage_name":"transform_engine","events_processed":460,"events_dropped":0,"avg_latency_ms":291.17092605792305,"throughput_eps":0,"last_update":"2026-03-21T21:55:49.082030679Z"} +2026/03/21 21:55:53 [detection_layer] {"stage_name":"detection_layer","events_processed":459,"events_dropped":0,"avg_latency_ms":18.60267814225462,"throughput_eps":0,"last_update":"2026-03-21T21:55:48.967363579Z"} +2026/03/21 21:55:53 ───────────────────────────────────────────────── +2026/03/21 21:55:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:55:58 [metric_collector] {"stage_name":"metric_collector","events_processed":13804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2760.8,"last_update":"2026-03-21T21:55:53.869823415Z"} +2026/03/21 21:55:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:55:53.878284615Z"} +2026/03/21 21:55:58 [transform_engine] {"stage_name":"transform_engine","events_processed":460,"events_dropped":0,"avg_latency_ms":291.17092605792305,"throughput_eps":0,"last_update":"2026-03-21T21:55:53.965510079Z"} +2026/03/21 21:55:58 [detection_layer] {"stage_name":"detection_layer","events_processed":460,"events_dropped":0,"avg_latency_ms":18.410157913803697,"throughput_eps":0,"last_update":"2026-03-21T21:55:53.96562089Z"} +2026/03/21 21:55:58 [log_collector] {"stage_name":"log_collector","events_processed":21436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4287.2,"last_update":"2026-03-21T21:55:53.869465258Z"} +2026/03/21 21:55:58 ───────────────────────────────────────────────── +2026/03/21 21:56:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:56:03 [log_collector] {"stage_name":"log_collector","events_processed":21436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4287.2,"last_update":"2026-03-21T21:55:58.869693723Z"} +2026/03/21 21:56:03 [metric_collector] {"stage_name":"metric_collector","events_processed":13809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2761.8,"last_update":"2026-03-21T21:55:58.870090013Z"} +2026/03/21 21:56:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5526,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:55:58.879285411Z"} +2026/03/21 21:56:03 [transform_engine] {"stage_name":"transform_engine","events_processed":460,"events_dropped":0,"avg_latency_ms":291.17092605792305,"throughput_eps":0,"last_update":"2026-03-21T21:55:58.965615437Z"} +2026/03/21 21:56:03 [detection_layer] {"stage_name":"detection_layer","events_processed":460,"events_dropped":0,"avg_latency_ms":18.410157913803697,"throughput_eps":0,"last_update":"2026-03-21T21:55:58.965636618Z"} +2026/03/21 21:56:03 ───────────────────────────────────────────────── +2026/03/21 21:56:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:56:08 [log_collector] {"stage_name":"log_collector","events_processed":21436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4287.2,"last_update":"2026-03-21T21:56:03.869870405Z"} +2026/03/21 21:56:08 [metric_collector] {"stage_name":"metric_collector","events_processed":13814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2762.8,"last_update":"2026-03-21T21:56:03.869739325Z"} +2026/03/21 21:56:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:56:03.878634777Z"} +2026/03/21 21:56:08 [transform_engine] {"stage_name":"transform_engine","events_processed":460,"events_dropped":0,"avg_latency_ms":291.17092605792305,"throughput_eps":0,"last_update":"2026-03-21T21:56:03.965982432Z"} +2026/03/21 21:56:08 [detection_layer] {"stage_name":"detection_layer","events_processed":460,"events_dropped":0,"avg_latency_ms":18.410157913803697,"throughput_eps":0,"last_update":"2026-03-21T21:56:03.966098384Z"} +2026/03/21 21:56:08 ───────────────────────────────────────────────── +2026/03/21 21:56:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:56:13 [log_collector] {"stage_name":"log_collector","events_processed":21436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4287.2,"last_update":"2026-03-21T21:56:08.869416203Z"} +2026/03/21 21:56:13 [metric_collector] {"stage_name":"metric_collector","events_processed":13819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2763.8,"last_update":"2026-03-21T21:56:08.869875503Z"} +2026/03/21 21:56:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:56:08.878115249Z"} +2026/03/21 21:56:13 [transform_engine] {"stage_name":"transform_engine","events_processed":460,"events_dropped":0,"avg_latency_ms":291.17092605792305,"throughput_eps":0,"last_update":"2026-03-21T21:56:08.965306273Z"} +2026/03/21 21:56:13 [detection_layer] {"stage_name":"detection_layer","events_processed":460,"events_dropped":0,"avg_latency_ms":18.410157913803697,"throughput_eps":0,"last_update":"2026-03-21T21:56:08.965344886Z"} +2026/03/21 21:56:13 ───────────────────────────────────────────────── +2026/03/21 21:56:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:56:18 [log_collector] {"stage_name":"log_collector","events_processed":21436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4287.2,"last_update":"2026-03-21T21:56:13.869525917Z"} +2026/03/21 21:56:18 [metric_collector] {"stage_name":"metric_collector","events_processed":13824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2764.8,"last_update":"2026-03-21T21:56:13.869784393Z"} +2026/03/21 21:56:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5532,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:56:13.878286511Z"} +2026/03/21 21:56:18 [transform_engine] {"stage_name":"transform_engine","events_processed":460,"events_dropped":0,"avg_latency_ms":291.17092605792305,"throughput_eps":0,"last_update":"2026-03-21T21:56:13.965506109Z"} +2026/03/21 21:56:18 [detection_layer] {"stage_name":"detection_layer","events_processed":460,"events_dropped":0,"avg_latency_ms":18.410157913803697,"throughput_eps":0,"last_update":"2026-03-21T21:56:13.965473927Z"} +2026/03/21 21:56:18 ───────────────────────────────────────────────── +2026/03/21 21:56:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:56:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:56:18.878473661Z"} +2026/03/21 21:56:23 [transform_engine] {"stage_name":"transform_engine","events_processed":461,"events_dropped":0,"avg_latency_ms":248.88514324633846,"throughput_eps":0,"last_update":"2026-03-21T21:56:19.045483543Z"} +2026/03/21 21:56:23 [detection_layer] {"stage_name":"detection_layer","events_processed":460,"events_dropped":0,"avg_latency_ms":18.410157913803697,"throughput_eps":0,"last_update":"2026-03-21T21:56:18.965693388Z"} +2026/03/21 21:56:23 [log_collector] {"stage_name":"log_collector","events_processed":21436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4287.2,"last_update":"2026-03-21T21:56:18.869431208Z"} +2026/03/21 21:56:23 [metric_collector] {"stage_name":"metric_collector","events_processed":13829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2765.8,"last_update":"2026-03-21T21:56:18.869960543Z"} +2026/03/21 21:56:23 ───────────────────────────────────────────────── +2026/03/21 21:56:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:56:28 [transform_engine] {"stage_name":"transform_engine","events_processed":461,"events_dropped":0,"avg_latency_ms":248.88514324633846,"throughput_eps":0,"last_update":"2026-03-21T21:56:23.965435701Z"} +2026/03/21 21:56:28 [detection_layer] {"stage_name":"detection_layer","events_processed":461,"events_dropped":0,"avg_latency_ms":19.022253931042957,"throughput_eps":0,"last_update":"2026-03-21T21:56:23.965374223Z"} +2026/03/21 21:56:28 [log_collector] {"stage_name":"log_collector","events_processed":21436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4287.2,"last_update":"2026-03-21T21:56:23.869493435Z"} +2026/03/21 21:56:28 [metric_collector] {"stage_name":"metric_collector","events_processed":13834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2766.8,"last_update":"2026-03-21T21:56:23.869869827Z"} +2026/03/21 21:56:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5536,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:56:23.879158362Z"} +2026/03/21 21:56:28 ───────────────────────────────────────────────── +2026/03/21 21:56:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:56:33 [log_collector] {"stage_name":"log_collector","events_processed":21436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4287.2,"last_update":"2026-03-21T21:56:28.869402698Z"} +2026/03/21 21:56:33 [metric_collector] {"stage_name":"metric_collector","events_processed":13839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2767.8,"last_update":"2026-03-21T21:56:28.869753331Z"} +2026/03/21 21:56:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:56:28.878935843Z"} +2026/03/21 21:56:33 [transform_engine] {"stage_name":"transform_engine","events_processed":461,"events_dropped":0,"avg_latency_ms":248.88514324633846,"throughput_eps":0,"last_update":"2026-03-21T21:56:28.965124862Z"} +2026/03/21 21:56:33 [detection_layer] {"stage_name":"detection_layer","events_processed":461,"events_dropped":0,"avg_latency_ms":19.022253931042957,"throughput_eps":0,"last_update":"2026-03-21T21:56:28.965265952Z"} +2026/03/21 21:56:33 ───────────────────────────────────────────────── +2026/03/21 21:56:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:56:38 [log_collector] {"stage_name":"log_collector","events_processed":21436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4287.2,"last_update":"2026-03-21T21:56:38.869831381Z"} +2026/03/21 21:56:38 [metric_collector] {"stage_name":"metric_collector","events_processed":13844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2768.8,"last_update":"2026-03-21T21:56:33.870514476Z"} +2026/03/21 21:56:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5540,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:56:33.879552541Z"} +2026/03/21 21:56:38 [transform_engine] {"stage_name":"transform_engine","events_processed":461,"events_dropped":0,"avg_latency_ms":248.88514324633846,"throughput_eps":0,"last_update":"2026-03-21T21:56:33.965887228Z"} +2026/03/21 21:56:38 [detection_layer] {"stage_name":"detection_layer","events_processed":461,"events_dropped":0,"avg_latency_ms":19.022253931042957,"throughput_eps":0,"last_update":"2026-03-21T21:56:33.96576358Z"} +2026/03/21 21:56:38 ───────────────────────────────────────────────── +2026/03/21 21:56:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:56:43 [transform_engine] {"stage_name":"transform_engine","events_processed":461,"events_dropped":0,"avg_latency_ms":248.88514324633846,"throughput_eps":0,"last_update":"2026-03-21T21:56:38.965836283Z"} +2026/03/21 21:56:43 [detection_layer] {"stage_name":"detection_layer","events_processed":461,"events_dropped":0,"avg_latency_ms":19.022253931042957,"throughput_eps":0,"last_update":"2026-03-21T21:56:38.96588724Z"} +2026/03/21 21:56:43 [log_collector] {"stage_name":"log_collector","events_processed":21436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4287.2,"last_update":"2026-03-21T21:56:38.869831381Z"} +2026/03/21 21:56:43 [metric_collector] {"stage_name":"metric_collector","events_processed":13849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2769.8,"last_update":"2026-03-21T21:56:38.870276304Z"} +2026/03/21 21:56:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5542,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:56:38.879530353Z"} +2026/03/21 21:56:43 ───────────────────────────────────────────────── +Saved state: 12 clusters, 21437 messages, reason: none +2026/03/21 21:56:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:56:48 [log_collector] {"stage_name":"log_collector","events_processed":21436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4287.2,"last_update":"2026-03-21T21:56:43.870561924Z"} +2026/03/21 21:56:48 [metric_collector] {"stage_name":"metric_collector","events_processed":13854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2770.8,"last_update":"2026-03-21T21:56:43.870530233Z"} +2026/03/21 21:56:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:56:43.878956435Z"} +2026/03/21 21:56:48 [transform_engine] {"stage_name":"transform_engine","events_processed":461,"events_dropped":0,"avg_latency_ms":248.88514324633846,"throughput_eps":0,"last_update":"2026-03-21T21:56:43.965112658Z"} +2026/03/21 21:56:48 [detection_layer] {"stage_name":"detection_layer","events_processed":461,"events_dropped":0,"avg_latency_ms":19.022253931042957,"throughput_eps":0,"last_update":"2026-03-21T21:56:43.966251291Z"} +2026/03/21 21:56:48 ───────────────────────────────────────────────── +2026/03/21 21:56:49 [ANOMALY] time=2026-03-21T21:56:49Z score=0.8821 method=SEAD details=MAD!:w=0.22,s=0.93 RRCF-fast!:w=0.19,s=1.00 RRCF-mid!:w=0.19,s=1.00 RRCF-slow!:w=0.16,s=1.00 COPOD!:w=0.24,s=0.57 +2026/03/21 21:56:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:56:53 [log_collector] {"stage_name":"log_collector","events_processed":21441,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4288.2,"last_update":"2026-03-21T21:56:48.870171901Z"} +2026/03/21 21:56:53 [metric_collector] {"stage_name":"metric_collector","events_processed":13859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2771.8,"last_update":"2026-03-21T21:56:48.870428252Z"} +2026/03/21 21:56:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:56:48.877197879Z"} +2026/03/21 21:56:53 [transform_engine] {"stage_name":"transform_engine","events_processed":462,"events_dropped":0,"avg_latency_ms":219.55090899707076,"throughput_eps":0,"last_update":"2026-03-21T21:56:49.067601231Z"} +2026/03/21 21:56:53 [detection_layer] {"stage_name":"detection_layer","events_processed":461,"events_dropped":0,"avg_latency_ms":19.022253931042957,"throughput_eps":0,"last_update":"2026-03-21T21:56:48.966698311Z"} +2026/03/21 21:56:53 ───────────────────────────────────────────────── +2026/03/21 21:56:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:56:58 [log_collector] {"stage_name":"log_collector","events_processed":21441,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4288.2,"last_update":"2026-03-21T21:56:53.870134033Z"} +2026/03/21 21:56:58 [metric_collector] {"stage_name":"metric_collector","events_processed":13864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2772.8,"last_update":"2026-03-21T21:56:53.870512519Z"} +2026/03/21 21:56:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:56:53.877147618Z"} +2026/03/21 21:56:58 [transform_engine] {"stage_name":"transform_engine","events_processed":462,"events_dropped":0,"avg_latency_ms":219.55090899707076,"throughput_eps":0,"last_update":"2026-03-21T21:56:53.965436557Z"} +2026/03/21 21:56:58 [detection_layer] {"stage_name":"detection_layer","events_processed":462,"events_dropped":0,"avg_latency_ms":16.718004744834367,"throughput_eps":0,"last_update":"2026-03-21T21:56:53.965424403Z"} +2026/03/21 21:56:58 ───────────────────────────────────────────────── +2026/03/21 21:57:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:57:03 [log_collector] {"stage_name":"log_collector","events_processed":21441,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4288.2,"last_update":"2026-03-21T21:56:58.870073724Z"} +2026/03/21 21:57:03 [metric_collector] {"stage_name":"metric_collector","events_processed":13869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2773.8,"last_update":"2026-03-21T21:56:58.870396163Z"} +2026/03/21 21:57:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:56:58.876806591Z"} +2026/03/21 21:57:03 [transform_engine] {"stage_name":"transform_engine","events_processed":462,"events_dropped":0,"avg_latency_ms":219.55090899707076,"throughput_eps":0,"last_update":"2026-03-21T21:56:58.966012095Z"} +2026/03/21 21:57:03 [detection_layer] {"stage_name":"detection_layer","events_processed":462,"events_dropped":0,"avg_latency_ms":16.718004744834367,"throughput_eps":0,"last_update":"2026-03-21T21:56:58.966000193Z"} +2026/03/21 21:57:03 ───────────────────────────────────────────────── +2026/03/21 21:57:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:57:08 [transform_engine] {"stage_name":"transform_engine","events_processed":462,"events_dropped":0,"avg_latency_ms":219.55090899707076,"throughput_eps":0,"last_update":"2026-03-21T21:57:03.966059395Z"} +2026/03/21 21:57:08 [detection_layer] {"stage_name":"detection_layer","events_processed":462,"events_dropped":0,"avg_latency_ms":16.718004744834367,"throughput_eps":0,"last_update":"2026-03-21T21:57:03.96608279Z"} +2026/03/21 21:57:08 [log_collector] {"stage_name":"log_collector","events_processed":21441,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4288.2,"last_update":"2026-03-21T21:57:03.870118981Z"} +2026/03/21 21:57:08 [metric_collector] {"stage_name":"metric_collector","events_processed":13874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2774.8,"last_update":"2026-03-21T21:57:03.870402184Z"} +2026/03/21 21:57:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:57:03.876859993Z"} +2026/03/21 21:57:08 ───────────────────────────────────────────────── +2026/03/21 21:57:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:57:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:57:08.879071964Z"} +2026/03/21 21:57:13 [transform_engine] {"stage_name":"transform_engine","events_processed":462,"events_dropped":0,"avg_latency_ms":219.55090899707076,"throughput_eps":0,"last_update":"2026-03-21T21:57:08.965243311Z"} +2026/03/21 21:57:13 [detection_layer] {"stage_name":"detection_layer","events_processed":462,"events_dropped":0,"avg_latency_ms":16.718004744834367,"throughput_eps":0,"last_update":"2026-03-21T21:57:08.965256998Z"} +2026/03/21 21:57:13 [log_collector] {"stage_name":"log_collector","events_processed":21441,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4288.2,"last_update":"2026-03-21T21:57:08.87019623Z"} +2026/03/21 21:57:13 [metric_collector] {"stage_name":"metric_collector","events_processed":13879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2775.8,"last_update":"2026-03-21T21:57:08.870067574Z"} +2026/03/21 21:57:13 ───────────────────────────────────────────────── +2026/03/21 21:57:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:57:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:57:13.876256142Z"} +2026/03/21 21:57:18 [transform_engine] {"stage_name":"transform_engine","events_processed":462,"events_dropped":0,"avg_latency_ms":219.55090899707076,"throughput_eps":0,"last_update":"2026-03-21T21:57:13.965458227Z"} +2026/03/21 21:57:18 [detection_layer] {"stage_name":"detection_layer","events_processed":462,"events_dropped":0,"avg_latency_ms":16.718004744834367,"throughput_eps":0,"last_update":"2026-03-21T21:57:13.96547536Z"} +2026/03/21 21:57:18 [log_collector] {"stage_name":"log_collector","events_processed":21441,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4288.2,"last_update":"2026-03-21T21:57:13.869520921Z"} +2026/03/21 21:57:18 [metric_collector] {"stage_name":"metric_collector","events_processed":13883,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2776.6,"last_update":"2026-03-21T21:57:13.869395321Z"} +2026/03/21 21:57:18 ───────────────────────────────────────────────── +2026/03/21 21:57:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:57:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:57:18.877132801Z"} +2026/03/21 21:57:23 [transform_engine] {"stage_name":"transform_engine","events_processed":463,"events_dropped":0,"avg_latency_ms":277.09084019765663,"throughput_eps":0,"last_update":"2026-03-21T21:57:19.472397583Z"} +2026/03/21 21:57:23 [detection_layer] {"stage_name":"detection_layer","events_processed":462,"events_dropped":0,"avg_latency_ms":16.718004744834367,"throughput_eps":0,"last_update":"2026-03-21T21:57:18.966258278Z"} +2026/03/21 21:57:23 [log_collector] {"stage_name":"log_collector","events_processed":21441,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4288.2,"last_update":"2026-03-21T21:57:18.869433854Z"} +2026/03/21 21:57:23 [metric_collector] {"stage_name":"metric_collector","events_processed":13888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2777.6,"last_update":"2026-03-21T21:57:18.869399577Z"} +2026/03/21 21:57:23 ───────────────────────────────────────────────── +2026/03/21 21:57:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:57:28 [log_collector] {"stage_name":"log_collector","events_processed":21444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4288.8,"last_update":"2026-03-21T21:57:28.870365941Z"} +2026/03/21 21:57:28 [metric_collector] {"stage_name":"metric_collector","events_processed":13893,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2778.6,"last_update":"2026-03-21T21:57:23.869603391Z"} +2026/03/21 21:57:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5560,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:57:23.877831594Z"} +2026/03/21 21:57:28 [transform_engine] {"stage_name":"transform_engine","events_processed":463,"events_dropped":0,"avg_latency_ms":277.09084019765663,"throughput_eps":0,"last_update":"2026-03-21T21:57:23.96509464Z"} +2026/03/21 21:57:28 [detection_layer] {"stage_name":"detection_layer","events_processed":463,"events_dropped":0,"avg_latency_ms":15.425759795867494,"throughput_eps":0,"last_update":"2026-03-21T21:57:23.966192534Z"} +2026/03/21 21:57:28 ───────────────────────────────────────────────── +Saved state: 13 clusters, 21452 messages, reason: cluster_created +Saved state: 14 clusters, 21453 messages, reason: cluster_created +2026/03/21 21:57:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:57:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:57:28.876718186Z"} +2026/03/21 21:57:33 [transform_engine] {"stage_name":"transform_engine","events_processed":463,"events_dropped":0,"avg_latency_ms":277.09084019765663,"throughput_eps":0,"last_update":"2026-03-21T21:57:28.965985152Z"} +2026/03/21 21:57:33 [detection_layer] {"stage_name":"detection_layer","events_processed":463,"events_dropped":0,"avg_latency_ms":15.425759795867494,"throughput_eps":0,"last_update":"2026-03-21T21:57:28.965954714Z"} +2026/03/21 21:57:33 [log_collector] {"stage_name":"log_collector","events_processed":21453,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4290.6,"last_update":"2026-03-21T21:57:33.869534859Z"} +2026/03/21 21:57:33 [metric_collector] {"stage_name":"metric_collector","events_processed":13899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2779.8,"last_update":"2026-03-21T21:57:28.870723917Z"} +2026/03/21 21:57:33 ───────────────────────────────────────────────── +2026/03/21 21:57:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:57:38 [log_collector] {"stage_name":"log_collector","events_processed":21453,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4290.6,"last_update":"2026-03-21T21:57:33.869534859Z"} +2026/03/21 21:57:38 [metric_collector] {"stage_name":"metric_collector","events_processed":13904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2780.8,"last_update":"2026-03-21T21:57:33.869932782Z"} +2026/03/21 21:57:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:57:33.878603371Z"} +2026/03/21 21:57:38 [transform_engine] {"stage_name":"transform_engine","events_processed":463,"events_dropped":0,"avg_latency_ms":277.09084019765663,"throughput_eps":0,"last_update":"2026-03-21T21:57:33.965953753Z"} +2026/03/21 21:57:38 [detection_layer] {"stage_name":"detection_layer","events_processed":463,"events_dropped":0,"avg_latency_ms":15.425759795867494,"throughput_eps":0,"last_update":"2026-03-21T21:57:33.965910882Z"} +2026/03/21 21:57:38 ───────────────────────────────────────────────── +2026/03/21 21:57:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:57:43 [log_collector] {"stage_name":"log_collector","events_processed":21577,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4315.4,"last_update":"2026-03-21T21:57:38.870336565Z"} +2026/03/21 21:57:43 [metric_collector] {"stage_name":"metric_collector","events_processed":13909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2781.8,"last_update":"2026-03-21T21:57:38.870699641Z"} +2026/03/21 21:57:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5566,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:57:38.877276255Z"} +2026/03/21 21:57:43 [transform_engine] {"stage_name":"transform_engine","events_processed":463,"events_dropped":0,"avg_latency_ms":277.09084019765663,"throughput_eps":0,"last_update":"2026-03-21T21:57:38.96565637Z"} +2026/03/21 21:57:43 [detection_layer] {"stage_name":"detection_layer","events_processed":463,"events_dropped":0,"avg_latency_ms":15.425759795867494,"throughput_eps":0,"last_update":"2026-03-21T21:57:38.965629008Z"} +2026/03/21 21:57:43 ───────────────────────────────────────────────── +2026/03/21 21:57:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:57:48 [log_collector] {"stage_name":"log_collector","events_processed":21764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4352.8,"last_update":"2026-03-21T21:57:43.869875725Z"} +2026/03/21 21:57:48 [metric_collector] {"stage_name":"metric_collector","events_processed":13914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2782.8,"last_update":"2026-03-21T21:57:43.870288997Z"} +2026/03/21 21:57:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:57:43.87961818Z"} +2026/03/21 21:57:48 [transform_engine] {"stage_name":"transform_engine","events_processed":463,"events_dropped":0,"avg_latency_ms":277.09084019765663,"throughput_eps":0,"last_update":"2026-03-21T21:57:43.965925781Z"} +2026/03/21 21:57:48 [detection_layer] {"stage_name":"detection_layer","events_processed":463,"events_dropped":0,"avg_latency_ms":15.425759795867494,"throughput_eps":0,"last_update":"2026-03-21T21:57:43.965904049Z"} +2026/03/21 21:57:48 ───────────────────────────────────────────────── +2026/03/21 21:57:49 [ANOMALY] time=2026-03-21T21:57:49Z score=0.8504 method=SEAD details=MAD!:w=0.22,s=0.70 RRCF-fast!:w=0.19,s=0.90 RRCF-mid!:w=0.18,s=0.95 RRCF-slow!:w=0.16,s=0.91 COPOD!:w=0.24,s=0.83 +2026/03/21 21:57:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:57:53 [log_collector] {"stage_name":"log_collector","events_processed":21808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4361.6,"last_update":"2026-03-21T21:57:48.869916577Z"} +2026/03/21 21:57:53 [metric_collector] {"stage_name":"metric_collector","events_processed":13919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2783.8,"last_update":"2026-03-21T21:57:48.869905726Z"} +2026/03/21 21:57:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5570,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:57:48.879863032Z"} +2026/03/21 21:57:53 [transform_engine] {"stage_name":"transform_engine","events_processed":464,"events_dropped":0,"avg_latency_ms":244.92908495812532,"throughput_eps":0,"last_update":"2026-03-21T21:57:49.081384579Z"} +2026/03/21 21:57:53 [detection_layer] {"stage_name":"detection_layer","events_processed":463,"events_dropped":0,"avg_latency_ms":15.425759795867494,"throughput_eps":0,"last_update":"2026-03-21T21:57:48.966244884Z"} +2026/03/21 21:57:53 ───────────────────────────────────────────────── +2026/03/21 21:57:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:57:58 [detection_layer] {"stage_name":"detection_layer","events_processed":464,"events_dropped":0,"avg_latency_ms":15.761348636693997,"throughput_eps":0,"last_update":"2026-03-21T21:57:53.965819877Z"} +2026/03/21 21:57:58 [log_collector] {"stage_name":"log_collector","events_processed":21811,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4362.2,"last_update":"2026-03-21T21:57:53.869610077Z"} +2026/03/21 21:57:58 [metric_collector] {"stage_name":"metric_collector","events_processed":13924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2784.8,"last_update":"2026-03-21T21:57:53.869797838Z"} +2026/03/21 21:57:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5572,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:57:53.876657597Z"} +2026/03/21 21:57:58 [transform_engine] {"stage_name":"transform_engine","events_processed":464,"events_dropped":0,"avg_latency_ms":244.92908495812532,"throughput_eps":0,"last_update":"2026-03-21T21:57:53.9658318Z"} +2026/03/21 21:57:58 ───────────────────────────────────────────────── +2026/03/21 21:58:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:58:03 [metric_collector] {"stage_name":"metric_collector","events_processed":13929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2785.8,"last_update":"2026-03-21T21:57:58.869618071Z"} +2026/03/21 21:58:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:57:58.877419584Z"} +2026/03/21 21:58:03 [transform_engine] {"stage_name":"transform_engine","events_processed":464,"events_dropped":0,"avg_latency_ms":244.92908495812532,"throughput_eps":0,"last_update":"2026-03-21T21:57:58.965362858Z"} +2026/03/21 21:58:03 [detection_layer] {"stage_name":"detection_layer","events_processed":464,"events_dropped":0,"avg_latency_ms":15.761348636693997,"throughput_eps":0,"last_update":"2026-03-21T21:57:58.965345143Z"} +2026/03/21 21:58:03 [log_collector] {"stage_name":"log_collector","events_processed":21811,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4362.2,"last_update":"2026-03-21T21:57:58.869421584Z"} +2026/03/21 21:58:03 ───────────────────────────────────────────────── +2026/03/21 21:58:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:58:08 [log_collector] {"stage_name":"log_collector","events_processed":21822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4364.4,"last_update":"2026-03-21T21:58:03.869728027Z"} +2026/03/21 21:58:08 [metric_collector] {"stage_name":"metric_collector","events_processed":13934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2786.8,"last_update":"2026-03-21T21:58:03.86988098Z"} +2026/03/21 21:58:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5576,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:58:03.878594742Z"} +2026/03/21 21:58:08 [transform_engine] {"stage_name":"transform_engine","events_processed":464,"events_dropped":0,"avg_latency_ms":244.92908495812532,"throughput_eps":0,"last_update":"2026-03-21T21:58:03.965817965Z"} +2026/03/21 21:58:08 [detection_layer] {"stage_name":"detection_layer","events_processed":464,"events_dropped":0,"avg_latency_ms":15.761348636693997,"throughput_eps":0,"last_update":"2026-03-21T21:58:03.965806963Z"} +2026/03/21 21:58:08 ───────────────────────────────────────────────── +2026/03/21 21:58:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:58:13 [log_collector] {"stage_name":"log_collector","events_processed":21836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.2,"last_update":"2026-03-21T21:58:08.869515764Z"} +2026/03/21 21:58:13 [metric_collector] {"stage_name":"metric_collector","events_processed":13939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2787.8,"last_update":"2026-03-21T21:58:08.86984203Z"} +2026/03/21 21:58:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:58:08.877050355Z"} +2026/03/21 21:58:13 [transform_engine] {"stage_name":"transform_engine","events_processed":464,"events_dropped":0,"avg_latency_ms":244.92908495812532,"throughput_eps":0,"last_update":"2026-03-21T21:58:08.965253886Z"} +2026/03/21 21:58:13 [detection_layer] {"stage_name":"detection_layer","events_processed":464,"events_dropped":0,"avg_latency_ms":15.761348636693997,"throughput_eps":0,"last_update":"2026-03-21T21:58:08.965303541Z"} +2026/03/21 21:58:13 ───────────────────────────────────────────────── +2026/03/21 21:58:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:58:18 [metric_collector] {"stage_name":"metric_collector","events_processed":13944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2788.8,"last_update":"2026-03-21T21:58:13.869829329Z"} +2026/03/21 21:58:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5580,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:58:13.878096535Z"} +2026/03/21 21:58:18 [transform_engine] {"stage_name":"transform_engine","events_processed":464,"events_dropped":0,"avg_latency_ms":244.92908495812532,"throughput_eps":0,"last_update":"2026-03-21T21:58:13.965510441Z"} +2026/03/21 21:58:18 [detection_layer] {"stage_name":"detection_layer","events_processed":464,"events_dropped":0,"avg_latency_ms":15.761348636693997,"throughput_eps":0,"last_update":"2026-03-21T21:58:13.965480123Z"} +2026/03/21 21:58:18 [log_collector] {"stage_name":"log_collector","events_processed":21838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.6,"last_update":"2026-03-21T21:58:13.869488595Z"} +2026/03/21 21:58:18 ───────────────────────────────────────────────── +2026/03/21 21:58:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:58:23 [log_collector] {"stage_name":"log_collector","events_processed":21838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.6,"last_update":"2026-03-21T21:58:18.869442052Z"} +2026/03/21 21:58:23 [metric_collector] {"stage_name":"metric_collector","events_processed":13949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2789.8,"last_update":"2026-03-21T21:58:18.869687683Z"} +2026/03/21 21:58:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:58:18.878626255Z"} +2026/03/21 21:58:23 [transform_engine] {"stage_name":"transform_engine","events_processed":465,"events_dropped":0,"avg_latency_ms":220.29197676650026,"throughput_eps":0,"last_update":"2026-03-21T21:58:19.087709853Z"} +2026/03/21 21:58:23 [detection_layer] {"stage_name":"detection_layer","events_processed":464,"events_dropped":0,"avg_latency_ms":15.761348636693997,"throughput_eps":0,"last_update":"2026-03-21T21:58:18.965938515Z"} +2026/03/21 21:58:23 ───────────────────────────────────────────────── +2026/03/21 21:58:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:58:28 [transform_engine] {"stage_name":"transform_engine","events_processed":465,"events_dropped":0,"avg_latency_ms":220.29197676650026,"throughput_eps":0,"last_update":"2026-03-21T21:58:23.96564733Z"} +2026/03/21 21:58:28 [detection_layer] {"stage_name":"detection_layer","events_processed":465,"events_dropped":0,"avg_latency_ms":16.158568309355196,"throughput_eps":0,"last_update":"2026-03-21T21:58:23.965630638Z"} +2026/03/21 21:58:28 [log_collector] {"stage_name":"log_collector","events_processed":21838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.6,"last_update":"2026-03-21T21:58:28.870366462Z"} +2026/03/21 21:58:28 [metric_collector] {"stage_name":"metric_collector","events_processed":13954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2790.8,"last_update":"2026-03-21T21:58:23.870278468Z"} +2026/03/21 21:58:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:58:23.87942015Z"} +2026/03/21 21:58:28 ───────────────────────────────────────────────── +2026/03/21 21:58:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:58:33 [detection_layer] {"stage_name":"detection_layer","events_processed":465,"events_dropped":0,"avg_latency_ms":16.158568309355196,"throughput_eps":0,"last_update":"2026-03-21T21:58:28.965494922Z"} +2026/03/21 21:58:33 [log_collector] {"stage_name":"log_collector","events_processed":21838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.6,"last_update":"2026-03-21T21:58:28.870366462Z"} +2026/03/21 21:58:33 [metric_collector] {"stage_name":"metric_collector","events_processed":13959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2791.8,"last_update":"2026-03-21T21:58:28.87073554Z"} +2026/03/21 21:58:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5586,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:58:28.87930254Z"} +2026/03/21 21:58:33 [transform_engine] {"stage_name":"transform_engine","events_processed":465,"events_dropped":0,"avg_latency_ms":220.29197676650026,"throughput_eps":0,"last_update":"2026-03-21T21:58:28.965503568Z"} +2026/03/21 21:58:33 ───────────────────────────────────────────────── +2026/03/21 21:58:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:58:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5588,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:58:33.87910136Z"} +2026/03/21 21:58:38 [transform_engine] {"stage_name":"transform_engine","events_processed":465,"events_dropped":0,"avg_latency_ms":220.29197676650026,"throughput_eps":0,"last_update":"2026-03-21T21:58:33.965327286Z"} +2026/03/21 21:58:38 [detection_layer] {"stage_name":"detection_layer","events_processed":465,"events_dropped":0,"avg_latency_ms":16.158568309355196,"throughput_eps":0,"last_update":"2026-03-21T21:58:33.965313549Z"} +2026/03/21 21:58:38 [log_collector] {"stage_name":"log_collector","events_processed":21838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.6,"last_update":"2026-03-21T21:58:33.869434362Z"} +2026/03/21 21:58:38 [metric_collector] {"stage_name":"metric_collector","events_processed":13964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2792.8,"last_update":"2026-03-21T21:58:33.87005432Z"} +2026/03/21 21:58:38 ───────────────────────────────────────────────── +2026/03/21 21:58:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:58:43 [detection_layer] {"stage_name":"detection_layer","events_processed":465,"events_dropped":0,"avg_latency_ms":16.158568309355196,"throughput_eps":0,"last_update":"2026-03-21T21:58:38.966109092Z"} +2026/03/21 21:58:43 [log_collector] {"stage_name":"log_collector","events_processed":21838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.6,"last_update":"2026-03-21T21:58:38.869408993Z"} +2026/03/21 21:58:43 [metric_collector] {"stage_name":"metric_collector","events_processed":13969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2793.8,"last_update":"2026-03-21T21:58:38.870097963Z"} +2026/03/21 21:58:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:58:38.878758051Z"} +2026/03/21 21:58:43 [transform_engine] {"stage_name":"transform_engine","events_processed":465,"events_dropped":0,"avg_latency_ms":220.29197676650026,"throughput_eps":0,"last_update":"2026-03-21T21:58:38.966124511Z"} +2026/03/21 21:58:43 ───────────────────────────────────────────────── +2026/03/21 21:58:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:58:48 [transform_engine] {"stage_name":"transform_engine","events_processed":465,"events_dropped":0,"avg_latency_ms":220.29197676650026,"throughput_eps":0,"last_update":"2026-03-21T21:58:43.965172076Z"} +2026/03/21 21:58:48 [detection_layer] {"stage_name":"detection_layer","events_processed":465,"events_dropped":0,"avg_latency_ms":16.158568309355196,"throughput_eps":0,"last_update":"2026-03-21T21:58:43.96633239Z"} +2026/03/21 21:58:48 [log_collector] {"stage_name":"log_collector","events_processed":21838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.6,"last_update":"2026-03-21T21:58:43.869420695Z"} +2026/03/21 21:58:48 [metric_collector] {"stage_name":"metric_collector","events_processed":13974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2794.8,"last_update":"2026-03-21T21:58:43.869938527Z"} +2026/03/21 21:58:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5592,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:58:43.878037229Z"} +2026/03/21 21:58:48 ───────────────────────────────────────────────── +2026/03/21 21:58:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:58:53 [metric_collector] {"stage_name":"metric_collector","events_processed":13979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2795.8,"last_update":"2026-03-21T21:58:48.869786558Z"} +2026/03/21 21:58:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:58:48.877833391Z"} +2026/03/21 21:58:53 [transform_engine] {"stage_name":"transform_engine","events_processed":466,"events_dropped":0,"avg_latency_ms":190.3169258132002,"throughput_eps":0,"last_update":"2026-03-21T21:58:49.036535264Z"} +2026/03/21 21:58:53 [detection_layer] {"stage_name":"detection_layer","events_processed":465,"events_dropped":0,"avg_latency_ms":16.158568309355196,"throughput_eps":0,"last_update":"2026-03-21T21:58:48.966094877Z"} +2026/03/21 21:58:53 [log_collector] {"stage_name":"log_collector","events_processed":21838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.6,"last_update":"2026-03-21T21:58:48.869433141Z"} +2026/03/21 21:58:53 ───────────────────────────────────────────────── +2026/03/21 21:58:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:58:58 [log_collector] {"stage_name":"log_collector","events_processed":21838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.6,"last_update":"2026-03-21T21:58:53.869414751Z"} +2026/03/21 21:58:58 [metric_collector] {"stage_name":"metric_collector","events_processed":13984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2796.8,"last_update":"2026-03-21T21:58:53.86983622Z"} +2026/03/21 21:58:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:58:53.878579096Z"} +2026/03/21 21:58:58 [transform_engine] {"stage_name":"transform_engine","events_processed":466,"events_dropped":0,"avg_latency_ms":190.3169258132002,"throughput_eps":0,"last_update":"2026-03-21T21:58:53.965957798Z"} +2026/03/21 21:58:58 [detection_layer] {"stage_name":"detection_layer","events_processed":466,"events_dropped":0,"avg_latency_ms":17.05655584748416,"throughput_eps":0,"last_update":"2026-03-21T21:58:53.96591722Z"} +2026/03/21 21:58:58 ───────────────────────────────────────────────── +2026/03/21 21:59:03 ── Pipeline Health ────────────────────────────── +2026/03/21 21:59:03 [log_collector] {"stage_name":"log_collector","events_processed":21838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.6,"last_update":"2026-03-21T21:58:58.870171221Z"} +2026/03/21 21:59:03 [metric_collector] {"stage_name":"metric_collector","events_processed":13989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2797.8,"last_update":"2026-03-21T21:58:58.870647765Z"} +2026/03/21 21:59:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:58:58.879074736Z"} +2026/03/21 21:59:03 [transform_engine] {"stage_name":"transform_engine","events_processed":466,"events_dropped":0,"avg_latency_ms":190.3169258132002,"throughput_eps":0,"last_update":"2026-03-21T21:58:58.965405599Z"} +2026/03/21 21:59:03 [detection_layer] {"stage_name":"detection_layer","events_processed":466,"events_dropped":0,"avg_latency_ms":17.05655584748416,"throughput_eps":0,"last_update":"2026-03-21T21:58:58.965286831Z"} +2026/03/21 21:59:03 ───────────────────────────────────────────────── +2026/03/21 21:59:08 ── Pipeline Health ────────────────────────────── +2026/03/21 21:59:08 [detection_layer] {"stage_name":"detection_layer","events_processed":466,"events_dropped":0,"avg_latency_ms":17.05655584748416,"throughput_eps":0,"last_update":"2026-03-21T21:59:03.965894258Z"} +2026/03/21 21:59:08 [log_collector] {"stage_name":"log_collector","events_processed":21838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.6,"last_update":"2026-03-21T21:59:08.869757912Z"} +2026/03/21 21:59:08 [metric_collector] {"stage_name":"metric_collector","events_processed":13994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2798.8,"last_update":"2026-03-21T21:59:03.869858135Z"} +2026/03/21 21:59:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:59:08.869747813Z"} +2026/03/21 21:59:08 [transform_engine] {"stage_name":"transform_engine","events_processed":466,"events_dropped":0,"avg_latency_ms":190.3169258132002,"throughput_eps":0,"last_update":"2026-03-21T21:59:03.96603087Z"} +2026/03/21 21:59:08 ───────────────────────────────────────────────── +2026/03/21 21:59:13 ── Pipeline Health ────────────────────────────── +2026/03/21 21:59:13 [metric_collector] {"stage_name":"metric_collector","events_processed":13999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2799.8,"last_update":"2026-03-21T21:59:08.870139774Z"} +2026/03/21 21:59:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:59:08.869747813Z"} +2026/03/21 21:59:13 [transform_engine] {"stage_name":"transform_engine","events_processed":466,"events_dropped":0,"avg_latency_ms":190.3169258132002,"throughput_eps":0,"last_update":"2026-03-21T21:59:08.965510862Z"} +2026/03/21 21:59:13 [detection_layer] {"stage_name":"detection_layer","events_processed":466,"events_dropped":0,"avg_latency_ms":17.05655584748416,"throughput_eps":0,"last_update":"2026-03-21T21:59:08.965480825Z"} +2026/03/21 21:59:13 [log_collector] {"stage_name":"log_collector","events_processed":21838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.6,"last_update":"2026-03-21T21:59:13.87007787Z"} +2026/03/21 21:59:13 ───────────────────────────────────────────────── +2026/03/21 21:59:18 ── Pipeline Health ────────────────────────────── +2026/03/21 21:59:18 [detection_layer] {"stage_name":"detection_layer","events_processed":466,"events_dropped":0,"avg_latency_ms":17.05655584748416,"throughput_eps":0,"last_update":"2026-03-21T21:59:13.965524882Z"} +2026/03/21 21:59:18 [log_collector] {"stage_name":"log_collector","events_processed":21838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.6,"last_update":"2026-03-21T21:59:18.869808243Z"} +2026/03/21 21:59:18 [metric_collector] {"stage_name":"metric_collector","events_processed":14004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2800.8,"last_update":"2026-03-21T21:59:13.870507534Z"} +2026/03/21 21:59:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:59:13.879325384Z"} +2026/03/21 21:59:18 [transform_engine] {"stage_name":"transform_engine","events_processed":466,"events_dropped":0,"avg_latency_ms":190.3169258132002,"throughput_eps":0,"last_update":"2026-03-21T21:59:13.965560251Z"} +2026/03/21 21:59:18 ───────────────────────────────────────────────── +Saved state: 14 clusters, 21839 messages, reason: none +2026/03/21 21:59:23 ── Pipeline Health ────────────────────────────── +2026/03/21 21:59:23 [log_collector] {"stage_name":"log_collector","events_processed":21838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.6,"last_update":"2026-03-21T21:59:18.869808243Z"} +2026/03/21 21:59:23 [metric_collector] {"stage_name":"metric_collector","events_processed":14009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2801.8,"last_update":"2026-03-21T21:59:18.870233588Z"} +2026/03/21 21:59:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:59:18.878096046Z"} +2026/03/21 21:59:23 [transform_engine] {"stage_name":"transform_engine","events_processed":467,"events_dropped":0,"avg_latency_ms":166.1125464505602,"throughput_eps":0,"last_update":"2026-03-21T21:59:19.034584068Z"} +2026/03/21 21:59:23 [detection_layer] {"stage_name":"detection_layer","events_processed":466,"events_dropped":0,"avg_latency_ms":17.05655584748416,"throughput_eps":0,"last_update":"2026-03-21T21:59:18.965321581Z"} +2026/03/21 21:59:23 ───────────────────────────────────────────────── +2026/03/21 21:59:28 ── Pipeline Health ────────────────────────────── +2026/03/21 21:59:28 [detection_layer] {"stage_name":"detection_layer","events_processed":467,"events_dropped":0,"avg_latency_ms":17.886900077987328,"throughput_eps":0,"last_update":"2026-03-21T21:59:23.966391345Z"} +2026/03/21 21:59:28 [log_collector] {"stage_name":"log_collector","events_processed":21841,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4368.2,"last_update":"2026-03-21T21:59:23.869532969Z"} +2026/03/21 21:59:28 [metric_collector] {"stage_name":"metric_collector","events_processed":14014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2802.8,"last_update":"2026-03-21T21:59:23.869693166Z"} +2026/03/21 21:59:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:59:23.877466154Z"} +2026/03/21 21:59:28 [transform_engine] {"stage_name":"transform_engine","events_processed":467,"events_dropped":0,"avg_latency_ms":166.1125464505602,"throughput_eps":0,"last_update":"2026-03-21T21:59:23.966402506Z"} +2026/03/21 21:59:28 ───────────────────────────────────────────────── +2026/03/21 21:59:33 ── Pipeline Health ────────────────────────────── +2026/03/21 21:59:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:59:28.878345049Z"} +2026/03/21 21:59:33 [transform_engine] {"stage_name":"transform_engine","events_processed":467,"events_dropped":0,"avg_latency_ms":166.1125464505602,"throughput_eps":0,"last_update":"2026-03-21T21:59:28.965802186Z"} +2026/03/21 21:59:33 [detection_layer] {"stage_name":"detection_layer","events_processed":467,"events_dropped":0,"avg_latency_ms":17.886900077987328,"throughput_eps":0,"last_update":"2026-03-21T21:59:28.965838967Z"} +2026/03/21 21:59:33 [log_collector] {"stage_name":"log_collector","events_processed":21852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4370.4,"last_update":"2026-03-21T21:59:28.86966341Z"} +2026/03/21 21:59:33 [metric_collector] {"stage_name":"metric_collector","events_processed":14019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2803.8,"last_update":"2026-03-21T21:59:28.869870698Z"} +2026/03/21 21:59:33 ───────────────────────────────────────────────── +2026/03/21 21:59:38 ── Pipeline Health ────────────────────────────── +2026/03/21 21:59:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:59:33.877665534Z"} +2026/03/21 21:59:38 [transform_engine] {"stage_name":"transform_engine","events_processed":467,"events_dropped":0,"avg_latency_ms":166.1125464505602,"throughput_eps":0,"last_update":"2026-03-21T21:59:33.965889771Z"} +2026/03/21 21:59:38 [detection_layer] {"stage_name":"detection_layer","events_processed":467,"events_dropped":0,"avg_latency_ms":17.886900077987328,"throughput_eps":0,"last_update":"2026-03-21T21:59:33.965877097Z"} +2026/03/21 21:59:38 [log_collector] {"stage_name":"log_collector","events_processed":21852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4370.4,"last_update":"2026-03-21T21:59:33.869866258Z"} +2026/03/21 21:59:38 [metric_collector] {"stage_name":"metric_collector","events_processed":14024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2804.8,"last_update":"2026-03-21T21:59:33.869841871Z"} +2026/03/21 21:59:38 ───────────────────────────────────────────────── +2026/03/21 21:59:43 ── Pipeline Health ────────────────────────────── +2026/03/21 21:59:43 [detection_layer] {"stage_name":"detection_layer","events_processed":467,"events_dropped":0,"avg_latency_ms":17.886900077987328,"throughput_eps":0,"last_update":"2026-03-21T21:59:38.965835802Z"} +2026/03/21 21:59:43 [log_collector] {"stage_name":"log_collector","events_processed":21852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4370.4,"last_update":"2026-03-21T21:59:38.869465975Z"} +2026/03/21 21:59:43 [metric_collector] {"stage_name":"metric_collector","events_processed":14028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2805.6,"last_update":"2026-03-21T21:59:38.869424586Z"} +2026/03/21 21:59:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:59:38.878392443Z"} +2026/03/21 21:59:43 [transform_engine] {"stage_name":"transform_engine","events_processed":467,"events_dropped":0,"avg_latency_ms":166.1125464505602,"throughput_eps":0,"last_update":"2026-03-21T21:59:38.965851573Z"} +2026/03/21 21:59:43 ───────────────────────────────────────────────── +2026/03/21 21:59:48 ── Pipeline Health ────────────────────────────── +2026/03/21 21:59:48 [detection_layer] {"stage_name":"detection_layer","events_processed":467,"events_dropped":0,"avg_latency_ms":17.886900077987328,"throughput_eps":0,"last_update":"2026-03-21T21:59:43.966009978Z"} +2026/03/21 21:59:48 [log_collector] {"stage_name":"log_collector","events_processed":21852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4370.4,"last_update":"2026-03-21T21:59:48.869426714Z"} +2026/03/21 21:59:48 [metric_collector] {"stage_name":"metric_collector","events_processed":14034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2806.8,"last_update":"2026-03-21T21:59:43.870694543Z"} +2026/03/21 21:59:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:59:43.879827456Z"} +2026/03/21 21:59:48 [transform_engine] {"stage_name":"transform_engine","events_processed":467,"events_dropped":0,"avg_latency_ms":166.1125464505602,"throughput_eps":0,"last_update":"2026-03-21T21:59:43.96602124Z"} +2026/03/21 21:59:48 ───────────────────────────────────────────────── +2026/03/21 21:59:53 ── Pipeline Health ────────────────────────────── +2026/03/21 21:59:53 [log_collector] {"stage_name":"log_collector","events_processed":21852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4370.4,"last_update":"2026-03-21T21:59:48.869426714Z"} +2026/03/21 21:59:53 [metric_collector] {"stage_name":"metric_collector","events_processed":14039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2807.8,"last_update":"2026-03-21T21:59:48.869952271Z"} +2026/03/21 21:59:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:59:48.878175792Z"} +2026/03/21 21:59:53 [transform_engine] {"stage_name":"transform_engine","events_processed":468,"events_dropped":0,"avg_latency_ms":155.61329276044813,"throughput_eps":0,"last_update":"2026-03-21T21:59:49.079067436Z"} +2026/03/21 21:59:53 [detection_layer] {"stage_name":"detection_layer","events_processed":467,"events_dropped":0,"avg_latency_ms":17.886900077987328,"throughput_eps":0,"last_update":"2026-03-21T21:59:48.965439514Z"} +2026/03/21 21:59:53 ───────────────────────────────────────────────── +2026/03/21 21:59:58 ── Pipeline Health ────────────────────────────── +2026/03/21 21:59:58 [detection_layer] {"stage_name":"detection_layer","events_processed":468,"events_dropped":0,"avg_latency_ms":18.774405062389864,"throughput_eps":0,"last_update":"2026-03-21T21:59:53.965611934Z"} +2026/03/21 21:59:58 [log_collector] {"stage_name":"log_collector","events_processed":21852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4370.4,"last_update":"2026-03-21T21:59:58.869980471Z"} +2026/03/21 21:59:58 [metric_collector] {"stage_name":"metric_collector","events_processed":14044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2808.8,"last_update":"2026-03-21T21:59:53.870408585Z"} +2026/03/21 21:59:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5620,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:59:53.879405277Z"} +2026/03/21 21:59:58 [transform_engine] {"stage_name":"transform_engine","events_processed":468,"events_dropped":0,"avg_latency_ms":155.61329276044813,"throughput_eps":0,"last_update":"2026-03-21T21:59:53.965624908Z"} +2026/03/21 21:59:58 ───────────────────────────────────────────────── +2026/03/21 22:00:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:00:03 [log_collector] {"stage_name":"log_collector","events_processed":21852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4370.4,"last_update":"2026-03-21T21:59:58.869980471Z"} +2026/03/21 22:00:03 [metric_collector] {"stage_name":"metric_collector","events_processed":14049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2809.8,"last_update":"2026-03-21T21:59:58.870523402Z"} +2026/03/21 22:00:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5622,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T21:59:58.87718059Z"} +2026/03/21 22:00:03 [transform_engine] {"stage_name":"transform_engine","events_processed":468,"events_dropped":0,"avg_latency_ms":155.61329276044813,"throughput_eps":0,"last_update":"2026-03-21T21:59:58.965475789Z"} +2026/03/21 22:00:03 [detection_layer] {"stage_name":"detection_layer","events_processed":468,"events_dropped":0,"avg_latency_ms":18.774405062389864,"throughput_eps":0,"last_update":"2026-03-21T21:59:58.965463426Z"} +2026/03/21 22:00:03 ───────────────────────────────────────────────── +2026/03/21 22:00:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:00:08 [log_collector] {"stage_name":"log_collector","events_processed":21852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4370.4,"last_update":"2026-03-21T22:00:03.869444641Z"} +2026/03/21 22:00:08 [metric_collector] {"stage_name":"metric_collector","events_processed":14054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2810.8,"last_update":"2026-03-21T22:00:03.869827464Z"} +2026/03/21 22:00:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:00:03.894859489Z"} +2026/03/21 22:00:08 [transform_engine] {"stage_name":"transform_engine","events_processed":468,"events_dropped":0,"avg_latency_ms":155.61329276044813,"throughput_eps":0,"last_update":"2026-03-21T22:00:03.96595863Z"} +2026/03/21 22:00:08 [detection_layer] {"stage_name":"detection_layer","events_processed":468,"events_dropped":0,"avg_latency_ms":18.774405062389864,"throughput_eps":0,"last_update":"2026-03-21T22:00:03.965945756Z"} +2026/03/21 22:00:08 ───────────────────────────────────────────────── +2026/03/21 22:00:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:00:13 [detection_layer] {"stage_name":"detection_layer","events_processed":468,"events_dropped":0,"avg_latency_ms":18.774405062389864,"throughput_eps":0,"last_update":"2026-03-21T22:00:08.965274987Z"} +2026/03/21 22:00:13 [log_collector] {"stage_name":"log_collector","events_processed":21852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4370.4,"last_update":"2026-03-21T22:00:13.870189301Z"} +2026/03/21 22:00:13 [metric_collector] {"stage_name":"metric_collector","events_processed":14059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2811.8,"last_update":"2026-03-21T22:00:08.870347109Z"} +2026/03/21 22:00:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:00:08.877989485Z"} +2026/03/21 22:00:13 [transform_engine] {"stage_name":"transform_engine","events_processed":468,"events_dropped":0,"avg_latency_ms":155.61329276044813,"throughput_eps":0,"last_update":"2026-03-21T22:00:08.965236734Z"} +2026/03/21 22:00:13 ───────────────────────────────────────────────── +2026/03/21 22:00:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:00:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:00:13.879469006Z"} +2026/03/21 22:00:18 [transform_engine] {"stage_name":"transform_engine","events_processed":468,"events_dropped":0,"avg_latency_ms":155.61329276044813,"throughput_eps":0,"last_update":"2026-03-21T22:00:13.965922824Z"} +2026/03/21 22:00:18 [detection_layer] {"stage_name":"detection_layer","events_processed":468,"events_dropped":0,"avg_latency_ms":18.774405062389864,"throughput_eps":0,"last_update":"2026-03-21T22:00:13.96581142Z"} +2026/03/21 22:00:18 [log_collector] {"stage_name":"log_collector","events_processed":21852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4370.4,"last_update":"2026-03-21T22:00:13.870189301Z"} +2026/03/21 22:00:18 [metric_collector] {"stage_name":"metric_collector","events_processed":14064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2812.8,"last_update":"2026-03-21T22:00:13.870608104Z"} +2026/03/21 22:00:18 ───────────────────────────────────────────────── +2026/03/21 22:00:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:00:23 [log_collector] {"stage_name":"log_collector","events_processed":21852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4370.4,"last_update":"2026-03-21T22:00:23.869881365Z"} +2026/03/21 22:00:23 [metric_collector] {"stage_name":"metric_collector","events_processed":14069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2813.8,"last_update":"2026-03-21T22:00:18.870071643Z"} +2026/03/21 22:00:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:00:18.878941422Z"} +2026/03/21 22:00:23 [transform_engine] {"stage_name":"transform_engine","events_processed":469,"events_dropped":0,"avg_latency_ms":138.5792406083585,"throughput_eps":0,"last_update":"2026-03-21T22:00:19.035648428Z"} +2026/03/21 22:00:23 [detection_layer] {"stage_name":"detection_layer","events_processed":468,"events_dropped":0,"avg_latency_ms":18.774405062389864,"throughput_eps":0,"last_update":"2026-03-21T22:00:18.965456656Z"} +2026/03/21 22:00:23 ───────────────────────────────────────────────── +2026/03/21 22:00:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:00:28 [detection_layer] {"stage_name":"detection_layer","events_processed":469,"events_dropped":0,"avg_latency_ms":18.99541384991189,"throughput_eps":0,"last_update":"2026-03-21T22:00:23.965858302Z"} +2026/03/21 22:00:28 [log_collector] {"stage_name":"log_collector","events_processed":21852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4370.4,"last_update":"2026-03-21T22:00:23.869881365Z"} +2026/03/21 22:00:28 [metric_collector] {"stage_name":"metric_collector","events_processed":14074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2814.8,"last_update":"2026-03-21T22:00:23.870532924Z"} +2026/03/21 22:00:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5632,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:00:23.878541953Z"} +2026/03/21 22:00:28 [transform_engine] {"stage_name":"transform_engine","events_processed":469,"events_dropped":0,"avg_latency_ms":138.5792406083585,"throughput_eps":0,"last_update":"2026-03-21T22:00:23.965759213Z"} +2026/03/21 22:00:28 ───────────────────────────────────────────────── +Saved state: 14 clusters, 21853 messages, reason: none +2026/03/21 22:00:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:00:33 [metric_collector] {"stage_name":"metric_collector","events_processed":14079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2815.8,"last_update":"2026-03-21T22:00:28.869800611Z"} +2026/03/21 22:00:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:00:28.878407535Z"} +2026/03/21 22:00:33 [transform_engine] {"stage_name":"transform_engine","events_processed":469,"events_dropped":0,"avg_latency_ms":138.5792406083585,"throughput_eps":0,"last_update":"2026-03-21T22:00:28.965829546Z"} +2026/03/21 22:00:33 [detection_layer] {"stage_name":"detection_layer","events_processed":469,"events_dropped":0,"avg_latency_ms":18.99541384991189,"throughput_eps":0,"last_update":"2026-03-21T22:00:28.965806041Z"} +2026/03/21 22:00:33 [log_collector] {"stage_name":"log_collector","events_processed":21857,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4371.4,"last_update":"2026-03-21T22:00:33.869401307Z"} +2026/03/21 22:00:33 ───────────────────────────────────────────────── +2026/03/21 22:00:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:00:38 [log_collector] {"stage_name":"log_collector","events_processed":21857,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4371.4,"last_update":"2026-03-21T22:00:38.869416237Z"} +2026/03/21 22:00:38 [metric_collector] {"stage_name":"metric_collector","events_processed":14089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2817.8,"last_update":"2026-03-21T22:00:38.869758874Z"} +2026/03/21 22:00:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:00:33.876038777Z"} +2026/03/21 22:00:38 [transform_engine] {"stage_name":"transform_engine","events_processed":469,"events_dropped":0,"avg_latency_ms":138.5792406083585,"throughput_eps":0,"last_update":"2026-03-21T22:00:33.965141047Z"} +2026/03/21 22:00:38 [detection_layer] {"stage_name":"detection_layer","events_processed":469,"events_dropped":0,"avg_latency_ms":18.99541384991189,"throughput_eps":0,"last_update":"2026-03-21T22:00:33.966241346Z"} +2026/03/21 22:00:38 ───────────────────────────────────────────────── +2026/03/21 22:00:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:00:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:00:38.877855411Z"} +2026/03/21 22:00:43 [transform_engine] {"stage_name":"transform_engine","events_processed":469,"events_dropped":0,"avg_latency_ms":138.5792406083585,"throughput_eps":0,"last_update":"2026-03-21T22:00:38.966059709Z"} +2026/03/21 22:00:43 [detection_layer] {"stage_name":"detection_layer","events_processed":469,"events_dropped":0,"avg_latency_ms":18.99541384991189,"throughput_eps":0,"last_update":"2026-03-21T22:00:38.966086069Z"} +2026/03/21 22:00:43 [log_collector] {"stage_name":"log_collector","events_processed":21857,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4371.4,"last_update":"2026-03-21T22:00:38.869416237Z"} +2026/03/21 22:00:43 [metric_collector] {"stage_name":"metric_collector","events_processed":14089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2817.8,"last_update":"2026-03-21T22:00:38.869758874Z"} +2026/03/21 22:00:43 ───────────────────────────────────────────────── +2026/03/21 22:00:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:00:48 [log_collector] {"stage_name":"log_collector","events_processed":21857,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4371.4,"last_update":"2026-03-21T22:00:43.869408287Z"} +2026/03/21 22:00:48 [metric_collector] {"stage_name":"metric_collector","events_processed":14094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2818.8,"last_update":"2026-03-21T22:00:43.869607779Z"} +2026/03/21 22:00:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5640,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:00:43.881526601Z"} +2026/03/21 22:00:48 [transform_engine] {"stage_name":"transform_engine","events_processed":469,"events_dropped":0,"avg_latency_ms":138.5792406083585,"throughput_eps":0,"last_update":"2026-03-21T22:00:43.965727347Z"} +2026/03/21 22:00:48 [detection_layer] {"stage_name":"detection_layer","events_processed":469,"events_dropped":0,"avg_latency_ms":18.99541384991189,"throughput_eps":0,"last_update":"2026-03-21T22:00:43.965690476Z"} +2026/03/21 22:00:48 ───────────────────────────────────────────────── +2026/03/21 22:00:51 [ANOMALY] time=2026-03-21T22:00:50Z score=0.9611 method=SEAD details=MAD!:w=0.23,s=0.93 RRCF-fast!:w=0.19,s=0.94 RRCF-mid!:w=0.18,s=0.99 RRCF-slow!:w=0.16,s=0.98 COPOD!:w=0.24,s=0.97 +2026/03/21 22:00:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:00:53 [log_collector] {"stage_name":"log_collector","events_processed":21857,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4371.4,"last_update":"2026-03-21T22:00:48.869467418Z"} +2026/03/21 22:00:53 [metric_collector] {"stage_name":"metric_collector","events_processed":14099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2819.8,"last_update":"2026-03-21T22:00:48.869864939Z"} +2026/03/21 22:00:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:00:48.876819588Z"} +2026/03/21 22:00:53 [transform_engine] {"stage_name":"transform_engine","events_processed":470,"events_dropped":0,"avg_latency_ms":515.8763854866868,"throughput_eps":0,"last_update":"2026-03-21T22:00:50.991044062Z"} +2026/03/21 22:00:53 [detection_layer] {"stage_name":"detection_layer","events_processed":469,"events_dropped":0,"avg_latency_ms":18.99541384991189,"throughput_eps":0,"last_update":"2026-03-21T22:00:48.965990277Z"} +2026/03/21 22:00:53 ───────────────────────────────────────────────── +2026/03/21 22:00:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:00:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:00:53.87867837Z"} +2026/03/21 22:00:58 [transform_engine] {"stage_name":"transform_engine","events_processed":470,"events_dropped":0,"avg_latency_ms":515.8763854866868,"throughput_eps":0,"last_update":"2026-03-21T22:00:53.965894193Z"} +2026/03/21 22:00:58 [detection_layer] {"stage_name":"detection_layer","events_processed":470,"events_dropped":0,"avg_latency_ms":17.267921079929515,"throughput_eps":0,"last_update":"2026-03-21T22:00:53.96585114Z"} +2026/03/21 22:00:58 [log_collector] {"stage_name":"log_collector","events_processed":21857,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4371.4,"last_update":"2026-03-21T22:00:53.87109106Z"} +2026/03/21 22:00:58 [metric_collector] {"stage_name":"metric_collector","events_processed":14104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2820.8,"last_update":"2026-03-21T22:00:53.871112692Z"} +2026/03/21 22:00:58 ───────────────────────────────────────────────── +2026/03/21 22:01:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:01:03 [log_collector] {"stage_name":"log_collector","events_processed":21857,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4371.4,"last_update":"2026-03-21T22:00:58.869442745Z"} +2026/03/21 22:01:03 [metric_collector] {"stage_name":"metric_collector","events_processed":14109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2821.8,"last_update":"2026-03-21T22:00:58.869651114Z"} +2026/03/21 22:01:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5646,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:00:58.878651903Z"} +2026/03/21 22:01:03 [transform_engine] {"stage_name":"transform_engine","events_processed":470,"events_dropped":0,"avg_latency_ms":515.8763854866868,"throughput_eps":0,"last_update":"2026-03-21T22:00:58.965891792Z"} +2026/03/21 22:01:03 [detection_layer] {"stage_name":"detection_layer","events_processed":470,"events_dropped":0,"avg_latency_ms":17.267921079929515,"throughput_eps":0,"last_update":"2026-03-21T22:00:58.965918433Z"} +2026/03/21 22:01:03 ───────────────────────────────────────────────── +2026/03/21 22:01:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:01:08 [log_collector] {"stage_name":"log_collector","events_processed":21857,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4371.4,"last_update":"2026-03-21T22:01:03.869438513Z"} +2026/03/21 22:01:08 [metric_collector] {"stage_name":"metric_collector","events_processed":14114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2822.8,"last_update":"2026-03-21T22:01:03.870014468Z"} +2026/03/21 22:01:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:01:03.878569944Z"} +2026/03/21 22:01:08 [transform_engine] {"stage_name":"transform_engine","events_processed":470,"events_dropped":0,"avg_latency_ms":515.8763854866868,"throughput_eps":0,"last_update":"2026-03-21T22:01:03.965757781Z"} +2026/03/21 22:01:08 [detection_layer] {"stage_name":"detection_layer","events_processed":470,"events_dropped":0,"avg_latency_ms":17.267921079929515,"throughput_eps":0,"last_update":"2026-03-21T22:01:03.965798379Z"} +2026/03/21 22:01:08 ───────────────────────────────────────────────── +2026/03/21 22:01:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:01:13 [log_collector] {"stage_name":"log_collector","events_processed":21857,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4371.4,"last_update":"2026-03-21T22:01:08.869626676Z"} +2026/03/21 22:01:13 [metric_collector] {"stage_name":"metric_collector","events_processed":14119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2823.8,"last_update":"2026-03-21T22:01:08.869619332Z"} +2026/03/21 22:01:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5650,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:01:08.879706483Z"} +2026/03/21 22:01:13 [transform_engine] {"stage_name":"transform_engine","events_processed":470,"events_dropped":0,"avg_latency_ms":515.8763854866868,"throughput_eps":0,"last_update":"2026-03-21T22:01:08.966135245Z"} +2026/03/21 22:01:13 [detection_layer] {"stage_name":"detection_layer","events_processed":470,"events_dropped":0,"avg_latency_ms":17.267921079929515,"throughput_eps":0,"last_update":"2026-03-21T22:01:08.966107863Z"} +2026/03/21 22:01:13 ───────────────────────────────────────────────── +2026/03/21 22:01:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:01:18 [detection_layer] {"stage_name":"detection_layer","events_processed":470,"events_dropped":0,"avg_latency_ms":17.267921079929515,"throughput_eps":0,"last_update":"2026-03-21T22:01:13.965333844Z"} +2026/03/21 22:01:18 [log_collector] {"stage_name":"log_collector","events_processed":21860,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4372,"last_update":"2026-03-21T22:01:13.869454942Z"} +2026/03/21 22:01:18 [metric_collector] {"stage_name":"metric_collector","events_processed":14124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2824.8,"last_update":"2026-03-21T22:01:13.869870789Z"} +2026/03/21 22:01:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:01:13.878104037Z"} +2026/03/21 22:01:18 [transform_engine] {"stage_name":"transform_engine","events_processed":470,"events_dropped":0,"avg_latency_ms":515.8763854866868,"throughput_eps":0,"last_update":"2026-03-21T22:01:13.965344885Z"} +2026/03/21 22:01:18 ───────────────────────────────────────────────── +2026/03/21 22:01:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:01:23 [detection_layer] {"stage_name":"detection_layer","events_processed":470,"events_dropped":0,"avg_latency_ms":17.267921079929515,"throughput_eps":0,"last_update":"2026-03-21T22:01:18.965491536Z"} +2026/03/21 22:01:23 [log_collector] {"stage_name":"log_collector","events_processed":21868,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4373.6,"last_update":"2026-03-21T22:01:18.87014794Z"} +2026/03/21 22:01:23 [metric_collector] {"stage_name":"metric_collector","events_processed":14129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2825.8,"last_update":"2026-03-21T22:01:18.870138252Z"} +2026/03/21 22:01:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:01:18.878870978Z"} +2026/03/21 22:01:23 [transform_engine] {"stage_name":"transform_engine","events_processed":471,"events_dropped":0,"avg_latency_ms":435.67013178934945,"throughput_eps":0,"last_update":"2026-03-21T22:01:19.07996442Z"} +2026/03/21 22:01:23 ───────────────────────────────────────────────── +2026/03/21 22:01:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:01:28 [transform_engine] {"stage_name":"transform_engine","events_processed":471,"events_dropped":0,"avg_latency_ms":435.67013178934945,"throughput_eps":0,"last_update":"2026-03-21T22:01:23.965622463Z"} +2026/03/21 22:01:28 [detection_layer] {"stage_name":"detection_layer","events_processed":471,"events_dropped":0,"avg_latency_ms":17.250674263943612,"throughput_eps":0,"last_update":"2026-03-21T22:01:23.965612924Z"} +2026/03/21 22:01:28 [log_collector] {"stage_name":"log_collector","events_processed":22013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4402.6,"last_update":"2026-03-21T22:01:23.8696124Z"} +2026/03/21 22:01:28 [metric_collector] {"stage_name":"metric_collector","events_processed":14134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2826.8,"last_update":"2026-03-21T22:01:23.869895053Z"} +2026/03/21 22:01:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:01:23.876890969Z"} +2026/03/21 22:01:28 ───────────────────────────────────────────────── +2026/03/21 22:01:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:01:33 [log_collector] {"stage_name":"log_collector","events_processed":22189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4437.8,"last_update":"2026-03-21T22:01:28.869659381Z"} +2026/03/21 22:01:33 [metric_collector] {"stage_name":"metric_collector","events_processed":14139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2827.8,"last_update":"2026-03-21T22:01:28.869805952Z"} +2026/03/21 22:01:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:01:28.88443142Z"} +2026/03/21 22:01:33 [transform_engine] {"stage_name":"transform_engine","events_processed":471,"events_dropped":0,"avg_latency_ms":435.67013178934945,"throughput_eps":0,"last_update":"2026-03-21T22:01:28.965463879Z"} +2026/03/21 22:01:33 [detection_layer] {"stage_name":"detection_layer","events_processed":471,"events_dropped":0,"avg_latency_ms":17.250674263943612,"throughput_eps":0,"last_update":"2026-03-21T22:01:28.965456766Z"} +2026/03/21 22:01:33 ───────────────────────────────────────────────── +2026/03/21 22:01:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:01:38 [log_collector] {"stage_name":"log_collector","events_processed":22217,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4443.4,"last_update":"2026-03-21T22:01:38.869400786Z"} +2026/03/21 22:01:38 [metric_collector] {"stage_name":"metric_collector","events_processed":14144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2828.8,"last_update":"2026-03-21T22:01:33.870116704Z"} +2026/03/21 22:01:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5660,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:01:33.878731513Z"} +2026/03/21 22:01:38 [transform_engine] {"stage_name":"transform_engine","events_processed":471,"events_dropped":0,"avg_latency_ms":435.67013178934945,"throughput_eps":0,"last_update":"2026-03-21T22:01:33.965943503Z"} +2026/03/21 22:01:38 [detection_layer] {"stage_name":"detection_layer","events_processed":471,"events_dropped":0,"avg_latency_ms":17.250674263943612,"throughput_eps":0,"last_update":"2026-03-21T22:01:33.965930909Z"} +2026/03/21 22:01:38 ───────────────────────────────────────────────── +2026/03/21 22:01:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:01:43 [metric_collector] {"stage_name":"metric_collector","events_processed":14149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2829.8,"last_update":"2026-03-21T22:01:38.869832493Z"} +2026/03/21 22:01:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5662,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:01:38.8801366Z"} +2026/03/21 22:01:43 [transform_engine] {"stage_name":"transform_engine","events_processed":471,"events_dropped":0,"avg_latency_ms":435.67013178934945,"throughput_eps":0,"last_update":"2026-03-21T22:01:38.965404114Z"} +2026/03/21 22:01:43 [detection_layer] {"stage_name":"detection_layer","events_processed":471,"events_dropped":0,"avg_latency_ms":17.250674263943612,"throughput_eps":0,"last_update":"2026-03-21T22:01:38.965388213Z"} +2026/03/21 22:01:43 [log_collector] {"stage_name":"log_collector","events_processed":22217,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4443.4,"last_update":"2026-03-21T22:01:43.869893971Z"} +2026/03/21 22:01:43 ───────────────────────────────────────────────── +2026/03/21 22:01:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:01:48 [log_collector] {"stage_name":"log_collector","events_processed":22217,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4443.4,"last_update":"2026-03-21T22:01:43.869893971Z"} +2026/03/21 22:01:48 [metric_collector] {"stage_name":"metric_collector","events_processed":14154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2830.8,"last_update":"2026-03-21T22:01:43.870291232Z"} +2026/03/21 22:01:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:01:43.878921561Z"} +2026/03/21 22:01:48 [transform_engine] {"stage_name":"transform_engine","events_processed":471,"events_dropped":0,"avg_latency_ms":435.67013178934945,"throughput_eps":0,"last_update":"2026-03-21T22:01:43.966127148Z"} +2026/03/21 22:01:48 [detection_layer] {"stage_name":"detection_layer","events_processed":471,"events_dropped":0,"avg_latency_ms":17.250674263943612,"throughput_eps":0,"last_update":"2026-03-21T22:01:43.966113792Z"} +2026/03/21 22:01:48 ───────────────────────────────────────────────── +2026/03/21 22:01:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:01:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:01:48.879953735Z"} +2026/03/21 22:01:53 [transform_engine] {"stage_name":"transform_engine","events_processed":472,"events_dropped":0,"avg_latency_ms":370.9459206314796,"throughput_eps":0,"last_update":"2026-03-21T22:01:49.077125845Z"} +2026/03/21 22:01:53 [detection_layer] {"stage_name":"detection_layer","events_processed":471,"events_dropped":0,"avg_latency_ms":17.250674263943612,"throughput_eps":0,"last_update":"2026-03-21T22:01:48.966256109Z"} +2026/03/21 22:01:53 [log_collector] {"stage_name":"log_collector","events_processed":22217,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4443.4,"last_update":"2026-03-21T22:01:48.870445653Z"} +2026/03/21 22:01:53 [metric_collector] {"stage_name":"metric_collector","events_processed":14159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2831.8,"last_update":"2026-03-21T22:01:48.870766749Z"} +2026/03/21 22:01:53 ───────────────────────────────────────────────── +2026/03/21 22:01:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:01:58 [metric_collector] {"stage_name":"metric_collector","events_processed":14164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2832.8,"last_update":"2026-03-21T22:01:53.869995435Z"} +2026/03/21 22:01:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5668,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:01:53.876151642Z"} +2026/03/21 22:01:58 [transform_engine] {"stage_name":"transform_engine","events_processed":472,"events_dropped":0,"avg_latency_ms":370.9459206314796,"throughput_eps":0,"last_update":"2026-03-21T22:01:53.965386807Z"} +2026/03/21 22:01:58 [detection_layer] {"stage_name":"detection_layer","events_processed":472,"events_dropped":0,"avg_latency_ms":17.06809921115489,"throughput_eps":0,"last_update":"2026-03-21T22:01:53.965432515Z"} +2026/03/21 22:01:58 [log_collector] {"stage_name":"log_collector","events_processed":22217,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4443.4,"last_update":"2026-03-21T22:01:53.869437776Z"} +2026/03/21 22:01:58 ───────────────────────────────────────────────── +2026/03/21 22:02:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:02:03 [transform_engine] {"stage_name":"transform_engine","events_processed":472,"events_dropped":0,"avg_latency_ms":370.9459206314796,"throughput_eps":0,"last_update":"2026-03-21T22:01:58.965625386Z"} +2026/03/21 22:02:03 [detection_layer] {"stage_name":"detection_layer","events_processed":472,"events_dropped":0,"avg_latency_ms":17.06809921115489,"throughput_eps":0,"last_update":"2026-03-21T22:01:58.965696723Z"} +2026/03/21 22:02:03 [log_collector] {"stage_name":"log_collector","events_processed":22217,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4443.4,"last_update":"2026-03-21T22:01:58.869424893Z"} +2026/03/21 22:02:03 [metric_collector] {"stage_name":"metric_collector","events_processed":14168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2833.6,"last_update":"2026-03-21T22:01:58.869509065Z"} +2026/03/21 22:02:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5670,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:01:58.877336184Z"} +2026/03/21 22:02:03 ───────────────────────────────────────────────── +2026/03/21 22:02:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:02:08 [log_collector] {"stage_name":"log_collector","events_processed":22217,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4443.4,"last_update":"2026-03-21T22:02:03.870004894Z"} +2026/03/21 22:02:08 [metric_collector] {"stage_name":"metric_collector","events_processed":14174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2834.8,"last_update":"2026-03-21T22:02:03.87055122Z"} +2026/03/21 22:02:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:02:03.879226846Z"} +2026/03/21 22:02:08 [transform_engine] {"stage_name":"transform_engine","events_processed":472,"events_dropped":0,"avg_latency_ms":370.9459206314796,"throughput_eps":0,"last_update":"2026-03-21T22:02:03.96552907Z"} +2026/03/21 22:02:08 [detection_layer] {"stage_name":"detection_layer","events_processed":472,"events_dropped":0,"avg_latency_ms":17.06809921115489,"throughput_eps":0,"last_update":"2026-03-21T22:02:03.965566461Z"} +2026/03/21 22:02:08 ───────────────────────────────────────────────── +2026/03/21 22:02:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:02:13 [detection_layer] {"stage_name":"detection_layer","events_processed":472,"events_dropped":0,"avg_latency_ms":17.06809921115489,"throughput_eps":0,"last_update":"2026-03-21T22:02:08.966368625Z"} +2026/03/21 22:02:13 [log_collector] {"stage_name":"log_collector","events_processed":22217,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4443.4,"last_update":"2026-03-21T22:02:08.870228279Z"} +2026/03/21 22:02:13 [metric_collector] {"stage_name":"metric_collector","events_processed":14179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2835.8,"last_update":"2026-03-21T22:02:08.87069814Z"} +2026/03/21 22:02:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:02:08.87995022Z"} +2026/03/21 22:02:13 [transform_engine] {"stage_name":"transform_engine","events_processed":472,"events_dropped":0,"avg_latency_ms":370.9459206314796,"throughput_eps":0,"last_update":"2026-03-21T22:02:08.96518144Z"} +2026/03/21 22:02:13 ───────────────────────────────────────────────── +2026/03/21 22:02:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:02:18 [log_collector] {"stage_name":"log_collector","events_processed":22217,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4443.4,"last_update":"2026-03-21T22:02:13.869507633Z"} +2026/03/21 22:02:18 [metric_collector] {"stage_name":"metric_collector","events_processed":14184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2836.8,"last_update":"2026-03-21T22:02:13.869788943Z"} +2026/03/21 22:02:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5676,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:02:13.878582834Z"} +2026/03/21 22:02:18 [transform_engine] {"stage_name":"transform_engine","events_processed":472,"events_dropped":0,"avg_latency_ms":370.9459206314796,"throughput_eps":0,"last_update":"2026-03-21T22:02:13.965897016Z"} +2026/03/21 22:02:18 [detection_layer] {"stage_name":"detection_layer","events_processed":472,"events_dropped":0,"avg_latency_ms":17.06809921115489,"throughput_eps":0,"last_update":"2026-03-21T22:02:13.96594584Z"} +2026/03/21 22:02:18 ───────────────────────────────────────────────── +2026/03/21 22:02:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:02:23 [log_collector] {"stage_name":"log_collector","events_processed":22217,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4443.4,"last_update":"2026-03-21T22:02:18.869542533Z"} +2026/03/21 22:02:23 [metric_collector] {"stage_name":"metric_collector","events_processed":14189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2837.8,"last_update":"2026-03-21T22:02:18.869944985Z"} +2026/03/21 22:02:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:02:18.879177106Z"} +2026/03/21 22:02:23 [transform_engine] {"stage_name":"transform_engine","events_processed":472,"events_dropped":0,"avg_latency_ms":370.9459206314796,"throughput_eps":0,"last_update":"2026-03-21T22:02:18.965413822Z"} +2026/03/21 22:02:23 [detection_layer] {"stage_name":"detection_layer","events_processed":472,"events_dropped":0,"avg_latency_ms":17.06809921115489,"throughput_eps":0,"last_update":"2026-03-21T22:02:18.96543869Z"} +2026/03/21 22:02:23 ───────────────────────────────────────────────── +2026/03/21 22:02:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:02:28 [metric_collector] {"stage_name":"metric_collector","events_processed":14194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2838.8,"last_update":"2026-03-21T22:02:23.869814848Z"} +2026/03/21 22:02:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:02:23.878332891Z"} +2026/03/21 22:02:28 [transform_engine] {"stage_name":"transform_engine","events_processed":473,"events_dropped":0,"avg_latency_ms":311.0057703051837,"throughput_eps":0,"last_update":"2026-03-21T22:02:23.965616303Z"} +2026/03/21 22:02:28 [detection_layer] {"stage_name":"detection_layer","events_processed":473,"events_dropped":0,"avg_latency_ms":17.775167768923914,"throughput_eps":0,"last_update":"2026-03-21T22:02:23.965648054Z"} +2026/03/21 22:02:28 [log_collector] {"stage_name":"log_collector","events_processed":22217,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4443.4,"last_update":"2026-03-21T22:02:23.869402788Z"} +2026/03/21 22:02:28 ───────────────────────────────────────────────── +2026/03/21 22:02:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:02:33 [log_collector] {"stage_name":"log_collector","events_processed":22217,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4443.4,"last_update":"2026-03-21T22:02:28.869396438Z"} +2026/03/21 22:02:33 [metric_collector] {"stage_name":"metric_collector","events_processed":14199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2839.8,"last_update":"2026-03-21T22:02:28.870130765Z"} +2026/03/21 22:02:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:02:28.878624331Z"} +2026/03/21 22:02:33 [transform_engine] {"stage_name":"transform_engine","events_processed":473,"events_dropped":0,"avg_latency_ms":311.0057703051837,"throughput_eps":0,"last_update":"2026-03-21T22:02:28.965952919Z"} +2026/03/21 22:02:33 [detection_layer] {"stage_name":"detection_layer","events_processed":473,"events_dropped":0,"avg_latency_ms":17.775167768923914,"throughput_eps":0,"last_update":"2026-03-21T22:02:28.965889958Z"} +2026/03/21 22:02:33 ───────────────────────────────────────────────── +2026/03/21 22:02:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:02:38 [detection_layer] {"stage_name":"detection_layer","events_processed":473,"events_dropped":0,"avg_latency_ms":17.775167768923914,"throughput_eps":0,"last_update":"2026-03-21T22:02:33.965627687Z"} +2026/03/21 22:02:38 [log_collector] {"stage_name":"log_collector","events_processed":22217,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4443.4,"last_update":"2026-03-21T22:02:33.869431837Z"} +2026/03/21 22:02:38 [metric_collector] {"stage_name":"metric_collector","events_processed":14204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2840.8,"last_update":"2026-03-21T22:02:33.869941904Z"} +2026/03/21 22:02:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:02:33.878193267Z"} +2026/03/21 22:02:38 [transform_engine] {"stage_name":"transform_engine","events_processed":473,"events_dropped":0,"avg_latency_ms":311.0057703051837,"throughput_eps":0,"last_update":"2026-03-21T22:02:33.965518678Z"} +2026/03/21 22:02:38 ───────────────────────────────────────────────── +2026/03/21 22:02:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:02:43 [detection_layer] {"stage_name":"detection_layer","events_processed":473,"events_dropped":0,"avg_latency_ms":17.775167768923914,"throughput_eps":0,"last_update":"2026-03-21T22:02:38.966084483Z"} +2026/03/21 22:02:43 [log_collector] {"stage_name":"log_collector","events_processed":22217,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4443.4,"last_update":"2026-03-21T22:02:38.869815514Z"} +2026/03/21 22:02:43 [metric_collector] {"stage_name":"metric_collector","events_processed":14209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2841.8,"last_update":"2026-03-21T22:02:38.870340429Z"} +2026/03/21 22:02:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:02:38.878687375Z"} +2026/03/21 22:02:43 [transform_engine] {"stage_name":"transform_engine","events_processed":473,"events_dropped":0,"avg_latency_ms":311.0057703051837,"throughput_eps":0,"last_update":"2026-03-21T22:02:38.966056169Z"} +2026/03/21 22:02:43 ───────────────────────────────────────────────── +2026/03/21 22:02:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:02:48 [log_collector] {"stage_name":"log_collector","events_processed":22217,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4443.4,"last_update":"2026-03-21T22:02:43.869417574Z"} +2026/03/21 22:02:48 [metric_collector] {"stage_name":"metric_collector","events_processed":14214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2842.8,"last_update":"2026-03-21T22:02:43.869871834Z"} +2026/03/21 22:02:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5688,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:02:43.878788662Z"} +2026/03/21 22:02:48 [transform_engine] {"stage_name":"transform_engine","events_processed":473,"events_dropped":0,"avg_latency_ms":311.0057703051837,"throughput_eps":0,"last_update":"2026-03-21T22:02:43.966031283Z"} +2026/03/21 22:02:48 [detection_layer] {"stage_name":"detection_layer","events_processed":473,"events_dropped":0,"avg_latency_ms":17.775167768923914,"throughput_eps":0,"last_update":"2026-03-21T22:02:43.965976607Z"} +2026/03/21 22:02:48 ───────────────────────────────────────────────── +2026/03/21 22:02:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:02:53 [log_collector] {"stage_name":"log_collector","events_processed":22217,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4443.4,"last_update":"2026-03-21T22:02:48.870329482Z"} +2026/03/21 22:02:53 [metric_collector] {"stage_name":"metric_collector","events_processed":14219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2843.8,"last_update":"2026-03-21T22:02:48.870616923Z"} +2026/03/21 22:02:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:02:48.879632008Z"} +2026/03/21 22:02:53 [transform_engine] {"stage_name":"transform_engine","events_processed":473,"events_dropped":0,"avg_latency_ms":311.0057703051837,"throughput_eps":0,"last_update":"2026-03-21T22:02:48.965835358Z"} +2026/03/21 22:02:53 [detection_layer] {"stage_name":"detection_layer","events_processed":473,"events_dropped":0,"avg_latency_ms":17.775167768923914,"throughput_eps":0,"last_update":"2026-03-21T22:02:48.965875715Z"} +2026/03/21 22:02:53 ───────────────────────────────────────────────── +Saved state: 14 clusters, 22218 messages, reason: none +2026/03/21 22:02:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:02:58 [transform_engine] {"stage_name":"transform_engine","events_processed":474,"events_dropped":0,"avg_latency_ms":262.707141444147,"throughput_eps":0,"last_update":"2026-03-21T22:02:53.966128173Z"} +2026/03/21 22:02:58 [detection_layer] {"stage_name":"detection_layer","events_processed":474,"events_dropped":0,"avg_latency_ms":18.239530615139135,"throughput_eps":0,"last_update":"2026-03-21T22:02:53.966218877Z"} +2026/03/21 22:02:58 [log_collector] {"stage_name":"log_collector","events_processed":22217,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4443.4,"last_update":"2026-03-21T22:02:53.870443045Z"} +2026/03/21 22:02:58 [metric_collector] {"stage_name":"metric_collector","events_processed":14224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2844.8,"last_update":"2026-03-21T22:02:53.870772175Z"} +2026/03/21 22:02:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:02:53.879757714Z"} +2026/03/21 22:02:58 ───────────────────────────────────────────────── +2026/03/21 22:03:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:03:03 [log_collector] {"stage_name":"log_collector","events_processed":22220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4444,"last_update":"2026-03-21T22:02:58.86942132Z"} +2026/03/21 22:03:03 [metric_collector] {"stage_name":"metric_collector","events_processed":14229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2845.8,"last_update":"2026-03-21T22:02:58.869663695Z"} +2026/03/21 22:03:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:02:58.880795917Z"} +2026/03/21 22:03:03 [transform_engine] {"stage_name":"transform_engine","events_processed":474,"events_dropped":0,"avg_latency_ms":262.707141444147,"throughput_eps":0,"last_update":"2026-03-21T22:02:58.965962148Z"} +2026/03/21 22:03:03 [detection_layer] {"stage_name":"detection_layer","events_processed":474,"events_dropped":0,"avg_latency_ms":18.239530615139135,"throughput_eps":0,"last_update":"2026-03-21T22:02:58.965988178Z"} +2026/03/21 22:03:03 ───────────────────────────────────────────────── +2026/03/21 22:03:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:03:08 [log_collector] {"stage_name":"log_collector","events_processed":22220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4444,"last_update":"2026-03-21T22:03:03.86956405Z"} +2026/03/21 22:03:08 [metric_collector] {"stage_name":"metric_collector","events_processed":14234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2846.8,"last_update":"2026-03-21T22:03:03.870083254Z"} +2026/03/21 22:03:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:03:03.879963237Z"} +2026/03/21 22:03:08 [transform_engine] {"stage_name":"transform_engine","events_processed":474,"events_dropped":0,"avg_latency_ms":262.707141444147,"throughput_eps":0,"last_update":"2026-03-21T22:03:03.965126121Z"} +2026/03/21 22:03:08 [detection_layer] {"stage_name":"detection_layer","events_processed":474,"events_dropped":0,"avg_latency_ms":18.239530615139135,"throughput_eps":0,"last_update":"2026-03-21T22:03:03.966243732Z"} +2026/03/21 22:03:08 ───────────────────────────────────────────────── +2026/03/21 22:03:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:03:13 [transform_engine] {"stage_name":"transform_engine","events_processed":474,"events_dropped":0,"avg_latency_ms":262.707141444147,"throughput_eps":0,"last_update":"2026-03-21T22:03:08.965611249Z"} +2026/03/21 22:03:13 [detection_layer] {"stage_name":"detection_layer","events_processed":474,"events_dropped":0,"avg_latency_ms":18.239530615139135,"throughput_eps":0,"last_update":"2026-03-21T22:03:08.965571081Z"} +2026/03/21 22:03:13 [log_collector] {"stage_name":"log_collector","events_processed":22231,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4446.2,"last_update":"2026-03-21T22:03:08.869407007Z"} +2026/03/21 22:03:13 [metric_collector] {"stage_name":"metric_collector","events_processed":14239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2847.8,"last_update":"2026-03-21T22:03:08.869870816Z"} +2026/03/21 22:03:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:03:08.877396497Z"} +2026/03/21 22:03:13 ───────────────────────────────────────────────── +2026/03/21 22:03:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:03:18 [log_collector] {"stage_name":"log_collector","events_processed":22245,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4449,"last_update":"2026-03-21T22:03:13.869827282Z"} +2026/03/21 22:03:18 [metric_collector] {"stage_name":"metric_collector","events_processed":14244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2848.8,"last_update":"2026-03-21T22:03:13.870253058Z"} +2026/03/21 22:03:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5700,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:03:13.878604461Z"} +2026/03/21 22:03:18 [transform_engine] {"stage_name":"transform_engine","events_processed":474,"events_dropped":0,"avg_latency_ms":262.707141444147,"throughput_eps":0,"last_update":"2026-03-21T22:03:13.965934066Z"} +2026/03/21 22:03:18 [detection_layer] {"stage_name":"detection_layer","events_processed":474,"events_dropped":0,"avg_latency_ms":18.239530615139135,"throughput_eps":0,"last_update":"2026-03-21T22:03:13.965883639Z"} +2026/03/21 22:03:18 ───────────────────────────────────────────────── +2026/03/21 22:03:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:03:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5702,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:03:18.878246776Z"} +2026/03/21 22:03:23 [transform_engine] {"stage_name":"transform_engine","events_processed":474,"events_dropped":0,"avg_latency_ms":262.707141444147,"throughput_eps":0,"last_update":"2026-03-21T22:03:18.965575528Z"} +2026/03/21 22:03:23 [detection_layer] {"stage_name":"detection_layer","events_processed":474,"events_dropped":0,"avg_latency_ms":18.239530615139135,"throughput_eps":0,"last_update":"2026-03-21T22:03:18.965616477Z"} +2026/03/21 22:03:23 [log_collector] {"stage_name":"log_collector","events_processed":22247,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4449.4,"last_update":"2026-03-21T22:03:18.869404202Z"} +2026/03/21 22:03:23 [metric_collector] {"stage_name":"metric_collector","events_processed":14254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2850.8,"last_update":"2026-03-21T22:03:23.870276528Z"} +2026/03/21 22:03:23 ───────────────────────────────────────────────── +2026/03/21 22:03:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:03:28 [log_collector] {"stage_name":"log_collector","events_processed":22261,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4452.2,"last_update":"2026-03-21T22:03:23.870318878Z"} +2026/03/21 22:03:28 [metric_collector] {"stage_name":"metric_collector","events_processed":14254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2850.8,"last_update":"2026-03-21T22:03:23.870276528Z"} +2026/03/21 22:03:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:03:23.879616295Z"} +2026/03/21 22:03:28 [transform_engine] {"stage_name":"transform_engine","events_processed":475,"events_dropped":0,"avg_latency_ms":225.9912227553176,"throughput_eps":0,"last_update":"2026-03-21T22:03:23.965940833Z"} +2026/03/21 22:03:28 [detection_layer] {"stage_name":"detection_layer","events_processed":475,"events_dropped":0,"avg_latency_ms":17.95938789211131,"throughput_eps":0,"last_update":"2026-03-21T22:03:23.96599725Z"} +2026/03/21 22:03:28 ───────────────────────────────────────────────── +2026/03/21 22:03:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:03:33 [log_collector] {"stage_name":"log_collector","events_processed":22261,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4452.2,"last_update":"2026-03-21T22:03:28.869845537Z"} +2026/03/21 22:03:33 [metric_collector] {"stage_name":"metric_collector","events_processed":14259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2851.8,"last_update":"2026-03-21T22:03:28.870221127Z"} +2026/03/21 22:03:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:03:28.878853879Z"} +2026/03/21 22:03:33 [transform_engine] {"stage_name":"transform_engine","events_processed":475,"events_dropped":0,"avg_latency_ms":225.9912227553176,"throughput_eps":0,"last_update":"2026-03-21T22:03:28.966245001Z"} +2026/03/21 22:03:33 [detection_layer] {"stage_name":"detection_layer","events_processed":475,"events_dropped":0,"avg_latency_ms":17.95938789211131,"throughput_eps":0,"last_update":"2026-03-21T22:03:28.966144629Z"} +2026/03/21 22:03:33 ───────────────────────────────────────────────── +2026/03/21 22:03:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:03:38 [log_collector] {"stage_name":"log_collector","events_processed":22261,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4452.2,"last_update":"2026-03-21T22:03:33.870379399Z"} +2026/03/21 22:03:38 [metric_collector] {"stage_name":"metric_collector","events_processed":14264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2852.8,"last_update":"2026-03-21T22:03:33.870995639Z"} +2026/03/21 22:03:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:03:33.879999102Z"} +2026/03/21 22:03:38 [transform_engine] {"stage_name":"transform_engine","events_processed":475,"events_dropped":0,"avg_latency_ms":225.9912227553176,"throughput_eps":0,"last_update":"2026-03-21T22:03:33.965214575Z"} +2026/03/21 22:03:38 [detection_layer] {"stage_name":"detection_layer","events_processed":475,"events_dropped":0,"avg_latency_ms":17.95938789211131,"throughput_eps":0,"last_update":"2026-03-21T22:03:33.965334574Z"} +2026/03/21 22:03:38 ───────────────────────────────────────────────── +2026/03/21 22:03:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:03:43 [log_collector] {"stage_name":"log_collector","events_processed":22261,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4452.2,"last_update":"2026-03-21T22:03:38.869822725Z"} +2026/03/21 22:03:43 [metric_collector] {"stage_name":"metric_collector","events_processed":14269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2853.8,"last_update":"2026-03-21T22:03:38.870324807Z"} +2026/03/21 22:03:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:03:38.879220873Z"} +2026/03/21 22:03:43 [transform_engine] {"stage_name":"transform_engine","events_processed":475,"events_dropped":0,"avg_latency_ms":225.9912227553176,"throughput_eps":0,"last_update":"2026-03-21T22:03:38.96552989Z"} +2026/03/21 22:03:43 [detection_layer] {"stage_name":"detection_layer","events_processed":475,"events_dropped":0,"avg_latency_ms":17.95938789211131,"throughput_eps":0,"last_update":"2026-03-21T22:03:38.965521334Z"} +2026/03/21 22:03:43 ───────────────────────────────────────────────── +2026/03/21 22:03:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:03:48 [metric_collector] {"stage_name":"metric_collector","events_processed":14274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2854.8,"last_update":"2026-03-21T22:03:43.869839122Z"} +2026/03/21 22:03:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5712,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:03:43.878580321Z"} +2026/03/21 22:03:48 [transform_engine] {"stage_name":"transform_engine","events_processed":475,"events_dropped":0,"avg_latency_ms":225.9912227553176,"throughput_eps":0,"last_update":"2026-03-21T22:03:43.965947646Z"} +2026/03/21 22:03:48 [detection_layer] {"stage_name":"detection_layer","events_processed":475,"events_dropped":0,"avg_latency_ms":17.95938789211131,"throughput_eps":0,"last_update":"2026-03-21T22:03:43.965931465Z"} +2026/03/21 22:03:48 [log_collector] {"stage_name":"log_collector","events_processed":22261,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4452.2,"last_update":"2026-03-21T22:03:43.869630491Z"} +2026/03/21 22:03:48 ───────────────────────────────────────────────── +2026/03/21 22:03:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:03:53 [log_collector] {"stage_name":"log_collector","events_processed":22261,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4452.2,"last_update":"2026-03-21T22:03:48.869414137Z"} +2026/03/21 22:03:53 [metric_collector] {"stage_name":"metric_collector","events_processed":14279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2855.8,"last_update":"2026-03-21T22:03:48.870200454Z"} +2026/03/21 22:03:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:03:48.878482023Z"} +2026/03/21 22:03:53 [transform_engine] {"stage_name":"transform_engine","events_processed":476,"events_dropped":0,"avg_latency_ms":203.8036774042541,"throughput_eps":0,"last_update":"2026-03-21T22:03:49.080848479Z"} +2026/03/21 22:03:53 [detection_layer] {"stage_name":"detection_layer","events_processed":475,"events_dropped":0,"avg_latency_ms":17.95938789211131,"throughput_eps":0,"last_update":"2026-03-21T22:03:48.96577815Z"} +2026/03/21 22:03:53 ───────────────────────────────────────────────── +2026/03/21 22:03:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:03:58 [log_collector] {"stage_name":"log_collector","events_processed":22261,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4452.2,"last_update":"2026-03-21T22:03:53.869990425Z"} +2026/03/21 22:03:58 [metric_collector] {"stage_name":"metric_collector","events_processed":14284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2856.8,"last_update":"2026-03-21T22:03:53.870336588Z"} +2026/03/21 22:03:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:03:53.879090943Z"} +2026/03/21 22:03:58 [transform_engine] {"stage_name":"transform_engine","events_processed":476,"events_dropped":0,"avg_latency_ms":203.8036774042541,"throughput_eps":0,"last_update":"2026-03-21T22:03:53.965292553Z"} +2026/03/21 22:03:58 [detection_layer] {"stage_name":"detection_layer","events_processed":476,"events_dropped":0,"avg_latency_ms":18.35982031368905,"throughput_eps":0,"last_update":"2026-03-21T22:03:53.965280269Z"} +2026/03/21 22:03:58 ───────────────────────────────────────────────── +2026/03/21 22:04:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:04:03 [detection_layer] {"stage_name":"detection_layer","events_processed":476,"events_dropped":0,"avg_latency_ms":18.35982031368905,"throughput_eps":0,"last_update":"2026-03-21T22:03:58.965962042Z"} +2026/03/21 22:04:03 [log_collector] {"stage_name":"log_collector","events_processed":22261,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4452.2,"last_update":"2026-03-21T22:03:58.869445237Z"} +2026/03/21 22:04:03 [metric_collector] {"stage_name":"metric_collector","events_processed":14289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2857.8,"last_update":"2026-03-21T22:03:58.86970765Z"} +2026/03/21 22:04:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5718,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:03:58.878764875Z"} +2026/03/21 22:04:03 [transform_engine] {"stage_name":"transform_engine","events_processed":476,"events_dropped":0,"avg_latency_ms":203.8036774042541,"throughput_eps":0,"last_update":"2026-03-21T22:03:58.965972793Z"} +2026/03/21 22:04:03 ───────────────────────────────────────────────── +2026/03/21 22:04:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:04:08 [transform_engine] {"stage_name":"transform_engine","events_processed":476,"events_dropped":0,"avg_latency_ms":203.8036774042541,"throughput_eps":0,"last_update":"2026-03-21T22:04:03.965826283Z"} +2026/03/21 22:04:08 [detection_layer] {"stage_name":"detection_layer","events_processed":476,"events_dropped":0,"avg_latency_ms":18.35982031368905,"throughput_eps":0,"last_update":"2026-03-21T22:04:03.96581418Z"} +2026/03/21 22:04:08 [log_collector] {"stage_name":"log_collector","events_processed":22261,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4452.2,"last_update":"2026-03-21T22:04:03.869445809Z"} +2026/03/21 22:04:08 [metric_collector] {"stage_name":"metric_collector","events_processed":14294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2858.8,"last_update":"2026-03-21T22:04:03.869841207Z"} +2026/03/21 22:04:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:04:03.878518234Z"} +2026/03/21 22:04:08 ───────────────────────────────────────────────── +2026/03/21 22:04:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:04:13 [transform_engine] {"stage_name":"transform_engine","events_processed":476,"events_dropped":0,"avg_latency_ms":203.8036774042541,"throughput_eps":0,"last_update":"2026-03-21T22:04:08.965332653Z"} +2026/03/21 22:04:13 [detection_layer] {"stage_name":"detection_layer","events_processed":476,"events_dropped":0,"avg_latency_ms":18.35982031368905,"throughput_eps":0,"last_update":"2026-03-21T22:04:08.965385775Z"} +2026/03/21 22:04:13 [log_collector] {"stage_name":"log_collector","events_processed":22261,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4452.2,"last_update":"2026-03-21T22:04:08.870247733Z"} +2026/03/21 22:04:13 [metric_collector] {"stage_name":"metric_collector","events_processed":14299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2859.8,"last_update":"2026-03-21T22:04:08.870742731Z"} +2026/03/21 22:04:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5722,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:04:08.879108722Z"} +2026/03/21 22:04:13 ───────────────────────────────────────────────── +2026/03/21 22:04:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:04:18 [log_collector] {"stage_name":"log_collector","events_processed":22261,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4452.2,"last_update":"2026-03-21T22:04:13.870043092Z"} +2026/03/21 22:04:18 [metric_collector] {"stage_name":"metric_collector","events_processed":14304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2860.8,"last_update":"2026-03-21T22:04:13.870561055Z"} +2026/03/21 22:04:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:04:13.878776006Z"} +2026/03/21 22:04:18 [transform_engine] {"stage_name":"transform_engine","events_processed":476,"events_dropped":0,"avg_latency_ms":203.8036774042541,"throughput_eps":0,"last_update":"2026-03-21T22:04:13.966172704Z"} +2026/03/21 22:04:18 [detection_layer] {"stage_name":"detection_layer","events_processed":476,"events_dropped":0,"avg_latency_ms":18.35982031368905,"throughput_eps":0,"last_update":"2026-03-21T22:04:13.966115785Z"} +2026/03/21 22:04:18 ───────────────────────────────────────────────── +2026/03/21 22:04:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:04:23 [detection_layer] {"stage_name":"detection_layer","events_processed":476,"events_dropped":0,"avg_latency_ms":18.35982031368905,"throughput_eps":0,"last_update":"2026-03-21T22:04:18.966112345Z"} +2026/03/21 22:04:23 [log_collector] {"stage_name":"log_collector","events_processed":22261,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4452.2,"last_update":"2026-03-21T22:04:18.870232413Z"} +2026/03/21 22:04:23 [metric_collector] {"stage_name":"metric_collector","events_processed":14309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2861.8,"last_update":"2026-03-21T22:04:18.870614434Z"} +2026/03/21 22:04:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:04:18.878892808Z"} +2026/03/21 22:04:23 [transform_engine] {"stage_name":"transform_engine","events_processed":477,"events_dropped":0,"avg_latency_ms":174.5734725234033,"throughput_eps":0,"last_update":"2026-03-21T22:04:19.023779366Z"} +2026/03/21 22:04:23 ───────────────────────────────────────────────── +Saved state: 14 clusters, 22262 messages, reason: none +2026/03/21 22:04:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:04:28 [metric_collector] {"stage_name":"metric_collector","events_processed":14314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2862.8,"last_update":"2026-03-21T22:04:23.870364658Z"} +2026/03/21 22:04:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5728,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:04:23.876891795Z"} +2026/03/21 22:04:28 [transform_engine] {"stage_name":"transform_engine","events_processed":477,"events_dropped":0,"avg_latency_ms":174.5734725234033,"throughput_eps":0,"last_update":"2026-03-21T22:04:23.965526054Z"} +2026/03/21 22:04:28 [detection_layer] {"stage_name":"detection_layer","events_processed":477,"events_dropped":0,"avg_latency_ms":18.58005025095124,"throughput_eps":0,"last_update":"2026-03-21T22:04:23.965443425Z"} +2026/03/21 22:04:28 [log_collector] {"stage_name":"log_collector","events_processed":22261,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4452.2,"last_update":"2026-03-21T22:04:23.869871373Z"} +2026/03/21 22:04:28 ───────────────────────────────────────────────── +2026/03/21 22:04:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:04:33 [detection_layer] {"stage_name":"detection_layer","events_processed":477,"events_dropped":0,"avg_latency_ms":18.58005025095124,"throughput_eps":0,"last_update":"2026-03-21T22:04:28.966192748Z"} +2026/03/21 22:04:33 [log_collector] {"stage_name":"log_collector","events_processed":22266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4453.2,"last_update":"2026-03-21T22:04:28.869846502Z"} +2026/03/21 22:04:33 [metric_collector] {"stage_name":"metric_collector","events_processed":14319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2863.8,"last_update":"2026-03-21T22:04:28.870203186Z"} +2026/03/21 22:04:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5730,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:04:28.875991618Z"} +2026/03/21 22:04:33 [transform_engine] {"stage_name":"transform_engine","events_processed":477,"events_dropped":0,"avg_latency_ms":174.5734725234033,"throughput_eps":0,"last_update":"2026-03-21T22:04:28.965102709Z"} +2026/03/21 22:04:33 ───────────────────────────────────────────────── +2026/03/21 22:04:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:04:38 [log_collector] {"stage_name":"log_collector","events_processed":22266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4453.2,"last_update":"2026-03-21T22:04:33.869406152Z"} +2026/03/21 22:04:38 [metric_collector] {"stage_name":"metric_collector","events_processed":14324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2864.8,"last_update":"2026-03-21T22:04:33.870462336Z"} +2026/03/21 22:04:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:04:33.881411597Z"} +2026/03/21 22:04:38 [transform_engine] {"stage_name":"transform_engine","events_processed":477,"events_dropped":0,"avg_latency_ms":174.5734725234033,"throughput_eps":0,"last_update":"2026-03-21T22:04:33.965133962Z"} +2026/03/21 22:04:38 [detection_layer] {"stage_name":"detection_layer","events_processed":477,"events_dropped":0,"avg_latency_ms":18.58005025095124,"throughput_eps":0,"last_update":"2026-03-21T22:04:33.965358663Z"} +2026/03/21 22:04:38 ───────────────────────────────────────────────── +2026/03/21 22:04:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:04:43 [log_collector] {"stage_name":"log_collector","events_processed":22266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4453.2,"last_update":"2026-03-21T22:04:38.869930058Z"} +2026/03/21 22:04:43 [metric_collector] {"stage_name":"metric_collector","events_processed":14329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2865.8,"last_update":"2026-03-21T22:04:38.870426108Z"} +2026/03/21 22:04:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:04:38.877692191Z"} +2026/03/21 22:04:43 [transform_engine] {"stage_name":"transform_engine","events_processed":477,"events_dropped":0,"avg_latency_ms":174.5734725234033,"throughput_eps":0,"last_update":"2026-03-21T22:04:38.96588897Z"} +2026/03/21 22:04:43 [detection_layer] {"stage_name":"detection_layer","events_processed":477,"events_dropped":0,"avg_latency_ms":18.58005025095124,"throughput_eps":0,"last_update":"2026-03-21T22:04:38.965919528Z"} +2026/03/21 22:04:43 ───────────────────────────────────────────────── +2026/03/21 22:04:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:04:48 [transform_engine] {"stage_name":"transform_engine","events_processed":477,"events_dropped":0,"avg_latency_ms":174.5734725234033,"throughput_eps":0,"last_update":"2026-03-21T22:04:43.965432591Z"} +2026/03/21 22:04:48 [detection_layer] {"stage_name":"detection_layer","events_processed":477,"events_dropped":0,"avg_latency_ms":18.58005025095124,"throughput_eps":0,"last_update":"2026-03-21T22:04:43.96544782Z"} +2026/03/21 22:04:48 [log_collector] {"stage_name":"log_collector","events_processed":22266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4453.2,"last_update":"2026-03-21T22:04:43.869401942Z"} +2026/03/21 22:04:48 [metric_collector] {"stage_name":"metric_collector","events_processed":14334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2866.8,"last_update":"2026-03-21T22:04:43.870197827Z"} +2026/03/21 22:04:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5736,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:04:43.879192331Z"} +2026/03/21 22:04:48 ───────────────────────────────────────────────── +2026/03/21 22:04:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:04:53 [transform_engine] {"stage_name":"transform_engine","events_processed":478,"events_dropped":0,"avg_latency_ms":480.9024512187226,"throughput_eps":0,"last_update":"2026-03-21T22:04:50.671733547Z"} +2026/03/21 22:04:53 [detection_layer] {"stage_name":"detection_layer","events_processed":477,"events_dropped":0,"avg_latency_ms":18.58005025095124,"throughput_eps":0,"last_update":"2026-03-21T22:04:48.965494301Z"} +2026/03/21 22:04:53 [log_collector] {"stage_name":"log_collector","events_processed":22266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4453.2,"last_update":"2026-03-21T22:04:48.870364308Z"} +2026/03/21 22:04:53 [metric_collector] {"stage_name":"metric_collector","events_processed":14339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2867.8,"last_update":"2026-03-21T22:04:48.870536097Z"} +2026/03/21 22:04:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5738,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:04:48.876165183Z"} +2026/03/21 22:04:53 ───────────────────────────────────────────────── +2026/03/21 22:04:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:04:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5740,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:04:53.879170732Z"} +2026/03/21 22:04:58 [transform_engine] {"stage_name":"transform_engine","events_processed":478,"events_dropped":0,"avg_latency_ms":480.9024512187226,"throughput_eps":0,"last_update":"2026-03-21T22:04:53.965333842Z"} +2026/03/21 22:04:58 [detection_layer] {"stage_name":"detection_layer","events_processed":478,"events_dropped":0,"avg_latency_ms":18.031541600760992,"throughput_eps":0,"last_update":"2026-03-21T22:04:53.965370123Z"} +2026/03/21 22:04:58 [log_collector] {"stage_name":"log_collector","events_processed":22266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4453.2,"last_update":"2026-03-21T22:04:53.869420109Z"} +2026/03/21 22:04:58 [metric_collector] {"stage_name":"metric_collector","events_processed":14344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2868.8,"last_update":"2026-03-21T22:04:53.86962447Z"} +2026/03/21 22:04:58 ───────────────────────────────────────────────── +2026/03/21 22:05:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:05:03 [log_collector] {"stage_name":"log_collector","events_processed":22266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4453.2,"last_update":"2026-03-21T22:04:58.86971426Z"} +2026/03/21 22:05:03 [metric_collector] {"stage_name":"metric_collector","events_processed":14349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2869.8,"last_update":"2026-03-21T22:04:58.869973747Z"} +2026/03/21 22:05:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:04:58.880732292Z"} +2026/03/21 22:05:03 [transform_engine] {"stage_name":"transform_engine","events_processed":478,"events_dropped":0,"avg_latency_ms":480.9024512187226,"throughput_eps":0,"last_update":"2026-03-21T22:04:58.965753985Z"} +2026/03/21 22:05:03 [detection_layer] {"stage_name":"detection_layer","events_processed":478,"events_dropped":0,"avg_latency_ms":18.031541600760992,"throughput_eps":0,"last_update":"2026-03-21T22:04:58.965737513Z"} +2026/03/21 22:05:03 ───────────────────────────────────────────────── +2026/03/21 22:05:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:05:08 [log_collector] {"stage_name":"log_collector","events_processed":22266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4453.2,"last_update":"2026-03-21T22:05:03.869715717Z"} +2026/03/21 22:05:08 [metric_collector] {"stage_name":"metric_collector","events_processed":14354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2870.8,"last_update":"2026-03-21T22:05:03.869976968Z"} +2026/03/21 22:05:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:05:03.878958067Z"} +2026/03/21 22:05:08 [transform_engine] {"stage_name":"transform_engine","events_processed":478,"events_dropped":0,"avg_latency_ms":480.9024512187226,"throughput_eps":0,"last_update":"2026-03-21T22:05:03.966128366Z"} +2026/03/21 22:05:08 [detection_layer] {"stage_name":"detection_layer","events_processed":478,"events_dropped":0,"avg_latency_ms":18.031541600760992,"throughput_eps":0,"last_update":"2026-03-21T22:05:03.966081768Z"} +2026/03/21 22:05:08 ───────────────────────────────────────────────── +2026/03/21 22:05:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:05:13 [log_collector] {"stage_name":"log_collector","events_processed":22269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4453.8,"last_update":"2026-03-21T22:05:08.869436824Z"} +2026/03/21 22:05:13 [metric_collector] {"stage_name":"metric_collector","events_processed":14359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2871.8,"last_update":"2026-03-21T22:05:08.869793347Z"} +2026/03/21 22:05:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:05:08.876110933Z"} +2026/03/21 22:05:13 [transform_engine] {"stage_name":"transform_engine","events_processed":478,"events_dropped":0,"avg_latency_ms":480.9024512187226,"throughput_eps":0,"last_update":"2026-03-21T22:05:08.965439508Z"} +2026/03/21 22:05:13 [detection_layer] {"stage_name":"detection_layer","events_processed":478,"events_dropped":0,"avg_latency_ms":18.031541600760992,"throughput_eps":0,"last_update":"2026-03-21T22:05:08.965395524Z"} +2026/03/21 22:05:13 ───────────────────────────────────────────────── +2026/03/21 22:05:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:05:18 [log_collector] {"stage_name":"log_collector","events_processed":22277,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4455.4,"last_update":"2026-03-21T22:05:13.869704035Z"} +2026/03/21 22:05:18 [metric_collector] {"stage_name":"metric_collector","events_processed":14364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2872.8,"last_update":"2026-03-21T22:05:13.869851558Z"} +2026/03/21 22:05:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:05:13.880799374Z"} +2026/03/21 22:05:18 [transform_engine] {"stage_name":"transform_engine","events_processed":478,"events_dropped":0,"avg_latency_ms":480.9024512187226,"throughput_eps":0,"last_update":"2026-03-21T22:05:13.966016803Z"} +2026/03/21 22:05:18 [detection_layer] {"stage_name":"detection_layer","events_processed":478,"events_dropped":0,"avg_latency_ms":18.031541600760992,"throughput_eps":0,"last_update":"2026-03-21T22:05:13.965991234Z"} +2026/03/21 22:05:18 ───────────────────────────────────────────────── +2026/03/21 22:05:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:05:23 [detection_layer] {"stage_name":"detection_layer","events_processed":478,"events_dropped":0,"avg_latency_ms":18.031541600760992,"throughput_eps":0,"last_update":"2026-03-21T22:05:18.966046616Z"} +2026/03/21 22:05:23 [log_collector] {"stage_name":"log_collector","events_processed":22432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4486.4,"last_update":"2026-03-21T22:05:18.869996873Z"} +2026/03/21 22:05:23 [metric_collector] {"stage_name":"metric_collector","events_processed":14369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2873.8,"last_update":"2026-03-21T22:05:18.870392972Z"} +2026/03/21 22:05:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5750,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:05:18.876468915Z"} +2026/03/21 22:05:23 [transform_engine] {"stage_name":"transform_engine","events_processed":479,"events_dropped":0,"avg_latency_ms":407.98529237497814,"throughput_eps":0,"last_update":"2026-03-21T22:05:19.082417408Z"} +2026/03/21 22:05:23 ───────────────────────────────────────────────── +Saved state: 14 clusters, 22632 messages, reason: none +2026/03/21 22:05:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:05:28 [metric_collector] {"stage_name":"metric_collector","events_processed":14374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2874.8,"last_update":"2026-03-21T22:05:23.869664654Z"} +2026/03/21 22:05:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5752,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:05:23.878185932Z"} +2026/03/21 22:05:28 [transform_engine] {"stage_name":"transform_engine","events_processed":479,"events_dropped":0,"avg_latency_ms":407.98529237497814,"throughput_eps":0,"last_update":"2026-03-21T22:05:23.965411626Z"} +2026/03/21 22:05:28 [detection_layer] {"stage_name":"detection_layer","events_processed":479,"events_dropped":0,"avg_latency_ms":17.422159880608795,"throughput_eps":0,"last_update":"2026-03-21T22:05:23.965379455Z"} +2026/03/21 22:05:28 [log_collector] {"stage_name":"log_collector","events_processed":22634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4526.8,"last_update":"2026-03-21T22:05:28.87007229Z"} +2026/03/21 22:05:28 ───────────────────────────────────────────────── +2026/03/21 22:05:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:05:33 [detection_layer] {"stage_name":"detection_layer","events_processed":479,"events_dropped":0,"avg_latency_ms":17.422159880608795,"throughput_eps":0,"last_update":"2026-03-21T22:05:28.965411961Z"} +2026/03/21 22:05:33 [log_collector] {"stage_name":"log_collector","events_processed":22634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4526.8,"last_update":"2026-03-21T22:05:33.869792366Z"} +2026/03/21 22:05:33 [metric_collector] {"stage_name":"metric_collector","events_processed":14379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2875.8,"last_update":"2026-03-21T22:05:28.870474831Z"} +2026/03/21 22:05:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:05:28.879180602Z"} +2026/03/21 22:05:33 [transform_engine] {"stage_name":"transform_engine","events_processed":479,"events_dropped":0,"avg_latency_ms":407.98529237497814,"throughput_eps":0,"last_update":"2026-03-21T22:05:28.96537452Z"} +2026/03/21 22:05:33 ───────────────────────────────────────────────── +2026/03/21 22:05:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:05:38 [transform_engine] {"stage_name":"transform_engine","events_processed":479,"events_dropped":0,"avg_latency_ms":407.98529237497814,"throughput_eps":0,"last_update":"2026-03-21T22:05:33.965522025Z"} +2026/03/21 22:05:38 [detection_layer] {"stage_name":"detection_layer","events_processed":479,"events_dropped":0,"avg_latency_ms":17.422159880608795,"throughput_eps":0,"last_update":"2026-03-21T22:05:33.965491376Z"} +2026/03/21 22:05:38 [log_collector] {"stage_name":"log_collector","events_processed":22644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4528.8,"last_update":"2026-03-21T22:05:38.86941135Z"} +2026/03/21 22:05:38 [metric_collector] {"stage_name":"metric_collector","events_processed":14384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2876.8,"last_update":"2026-03-21T22:05:33.870144561Z"} +2026/03/21 22:05:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:05:33.877302255Z"} +2026/03/21 22:05:38 ───────────────────────────────────────────────── +2026/03/21 22:05:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:05:43 [log_collector] {"stage_name":"log_collector","events_processed":22644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4528.8,"last_update":"2026-03-21T22:05:38.86941135Z"} +2026/03/21 22:05:43 [metric_collector] {"stage_name":"metric_collector","events_processed":14389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2877.8,"last_update":"2026-03-21T22:05:38.869839841Z"} +2026/03/21 22:05:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5758,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:05:38.877742533Z"} +2026/03/21 22:05:43 [transform_engine] {"stage_name":"transform_engine","events_processed":479,"events_dropped":0,"avg_latency_ms":407.98529237497814,"throughput_eps":0,"last_update":"2026-03-21T22:05:38.966331499Z"} +2026/03/21 22:05:43 [detection_layer] {"stage_name":"detection_layer","events_processed":479,"events_dropped":0,"avg_latency_ms":17.422159880608795,"throughput_eps":0,"last_update":"2026-03-21T22:05:38.966095447Z"} +2026/03/21 22:05:43 ───────────────────────────────────────────────── +2026/03/21 22:05:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:05:48 [log_collector] {"stage_name":"log_collector","events_processed":22659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4531.8,"last_update":"2026-03-21T22:05:48.870219011Z"} +2026/03/21 22:05:48 [metric_collector] {"stage_name":"metric_collector","events_processed":14394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2878.8,"last_update":"2026-03-21T22:05:43.869871253Z"} +2026/03/21 22:05:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:05:43.87879905Z"} +2026/03/21 22:05:48 [transform_engine] {"stage_name":"transform_engine","events_processed":479,"events_dropped":0,"avg_latency_ms":407.98529237497814,"throughput_eps":0,"last_update":"2026-03-21T22:05:43.966005155Z"} +2026/03/21 22:05:48 [detection_layer] {"stage_name":"detection_layer","events_processed":479,"events_dropped":0,"avg_latency_ms":17.422159880608795,"throughput_eps":0,"last_update":"2026-03-21T22:05:43.965994305Z"} +2026/03/21 22:05:48 ───────────────────────────────────────────────── +2026/03/21 22:05:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:05:53 [metric_collector] {"stage_name":"metric_collector","events_processed":14399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2879.8,"last_update":"2026-03-21T22:05:48.870451125Z"} +2026/03/21 22:05:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:05:48.877560247Z"} +2026/03/21 22:05:53 [transform_engine] {"stage_name":"transform_engine","events_processed":480,"events_dropped":0,"avg_latency_ms":421.78226569998253,"throughput_eps":0,"last_update":"2026-03-21T22:05:49.442787606Z"} +2026/03/21 22:05:53 [detection_layer] {"stage_name":"detection_layer","events_processed":479,"events_dropped":0,"avg_latency_ms":17.422159880608795,"throughput_eps":0,"last_update":"2026-03-21T22:05:48.966482641Z"} +2026/03/21 22:05:53 [log_collector] {"stage_name":"log_collector","events_processed":22659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4531.8,"last_update":"2026-03-21T22:05:48.870219011Z"} +2026/03/21 22:05:53 ───────────────────────────────────────────────── +2026/03/21 22:05:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:05:58 [detection_layer] {"stage_name":"detection_layer","events_processed":480,"events_dropped":0,"avg_latency_ms":16.705651504487037,"throughput_eps":0,"last_update":"2026-03-21T22:05:53.965536737Z"} +2026/03/21 22:05:58 [log_collector] {"stage_name":"log_collector","events_processed":22661,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4532.2,"last_update":"2026-03-21T22:05:53.86966549Z"} +2026/03/21 22:05:58 [metric_collector] {"stage_name":"metric_collector","events_processed":14404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2880.8,"last_update":"2026-03-21T22:05:53.870096015Z"} +2026/03/21 22:05:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:05:53.878293822Z"} +2026/03/21 22:05:58 [transform_engine] {"stage_name":"transform_engine","events_processed":480,"events_dropped":0,"avg_latency_ms":421.78226569998253,"throughput_eps":0,"last_update":"2026-03-21T22:05:53.965495108Z"} +2026/03/21 22:05:58 ───────────────────────────────────────────────── +2026/03/21 22:06:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:06:03 [log_collector] {"stage_name":"log_collector","events_processed":22661,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4532.2,"last_update":"2026-03-21T22:05:58.870007013Z"} +2026/03/21 22:06:03 [metric_collector] {"stage_name":"metric_collector","events_processed":14409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2881.8,"last_update":"2026-03-21T22:05:58.870830672Z"} +2026/03/21 22:06:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5766,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:05:58.879970624Z"} +2026/03/21 22:06:03 [transform_engine] {"stage_name":"transform_engine","events_processed":480,"events_dropped":0,"avg_latency_ms":421.78226569998253,"throughput_eps":0,"last_update":"2026-03-21T22:05:58.965081906Z"} +2026/03/21 22:06:03 [detection_layer] {"stage_name":"detection_layer","events_processed":480,"events_dropped":0,"avg_latency_ms":16.705651504487037,"throughput_eps":0,"last_update":"2026-03-21T22:05:58.966224424Z"} +2026/03/21 22:06:03 ───────────────────────────────────────────────── +2026/03/21 22:06:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:06:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5768,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:06:03.879389619Z"} +2026/03/21 22:06:08 [transform_engine] {"stage_name":"transform_engine","events_processed":480,"events_dropped":0,"avg_latency_ms":421.78226569998253,"throughput_eps":0,"last_update":"2026-03-21T22:06:03.965651014Z"} +2026/03/21 22:06:08 [detection_layer] {"stage_name":"detection_layer","events_processed":480,"events_dropped":0,"avg_latency_ms":16.705651504487037,"throughput_eps":0,"last_update":"2026-03-21T22:06:03.96563379Z"} +2026/03/21 22:06:08 [log_collector] {"stage_name":"log_collector","events_processed":22661,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4532.2,"last_update":"2026-03-21T22:06:03.869949301Z"} +2026/03/21 22:06:08 [metric_collector] {"stage_name":"metric_collector","events_processed":14414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2882.8,"last_update":"2026-03-21T22:06:03.870434961Z"} +2026/03/21 22:06:08 ───────────────────────────────────────────────── +2026/03/21 22:06:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:06:13 [log_collector] {"stage_name":"log_collector","events_processed":22661,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4532.2,"last_update":"2026-03-21T22:06:08.869414194Z"} +2026/03/21 22:06:13 [metric_collector] {"stage_name":"metric_collector","events_processed":14419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2883.8,"last_update":"2026-03-21T22:06:08.869853085Z"} +2026/03/21 22:06:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5770,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:06:08.878815408Z"} +2026/03/21 22:06:13 [transform_engine] {"stage_name":"transform_engine","events_processed":480,"events_dropped":0,"avg_latency_ms":421.78226569998253,"throughput_eps":0,"last_update":"2026-03-21T22:06:08.966179675Z"} +2026/03/21 22:06:13 [detection_layer] {"stage_name":"detection_layer","events_processed":480,"events_dropped":0,"avg_latency_ms":16.705651504487037,"throughput_eps":0,"last_update":"2026-03-21T22:06:08.966164686Z"} +2026/03/21 22:06:13 ───────────────────────────────────────────────── +2026/03/21 22:06:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:06:18 [transform_engine] {"stage_name":"transform_engine","events_processed":480,"events_dropped":0,"avg_latency_ms":421.78226569998253,"throughput_eps":0,"last_update":"2026-03-21T22:06:13.96563494Z"} +2026/03/21 22:06:18 [detection_layer] {"stage_name":"detection_layer","events_processed":480,"events_dropped":0,"avg_latency_ms":16.705651504487037,"throughput_eps":0,"last_update":"2026-03-21T22:06:13.965627847Z"} +2026/03/21 22:06:18 [log_collector] {"stage_name":"log_collector","events_processed":22661,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4532.2,"last_update":"2026-03-21T22:06:13.869601723Z"} +2026/03/21 22:06:18 [metric_collector] {"stage_name":"metric_collector","events_processed":14424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2884.8,"last_update":"2026-03-21T22:06:13.8700119Z"} +2026/03/21 22:06:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:06:13.878408067Z"} +2026/03/21 22:06:18 ───────────────────────────────────────────────── +2026/03/21 22:06:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:06:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:06:18.876781511Z"} +2026/03/21 22:06:23 [transform_engine] {"stage_name":"transform_engine","events_processed":480,"events_dropped":0,"avg_latency_ms":421.78226569998253,"throughput_eps":0,"last_update":"2026-03-21T22:06:18.965996934Z"} +2026/03/21 22:06:23 [detection_layer] {"stage_name":"detection_layer","events_processed":480,"events_dropped":0,"avg_latency_ms":16.705651504487037,"throughput_eps":0,"last_update":"2026-03-21T22:06:18.965983909Z"} +2026/03/21 22:06:23 [log_collector] {"stage_name":"log_collector","events_processed":22661,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4532.2,"last_update":"2026-03-21T22:06:18.869807017Z"} +2026/03/21 22:06:23 [metric_collector] {"stage_name":"metric_collector","events_processed":14433,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2886.6,"last_update":"2026-03-21T22:06:23.869508334Z"} +2026/03/21 22:06:23 ───────────────────────────────────────────────── +2026/03/21 22:06:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:06:28 [metric_collector] {"stage_name":"metric_collector","events_processed":14438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2887.6,"last_update":"2026-03-21T22:06:28.869381982Z"} +2026/03/21 22:06:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:06:23.879233999Z"} +2026/03/21 22:06:28 [transform_engine] {"stage_name":"transform_engine","events_processed":481,"events_dropped":0,"avg_latency_ms":407.01260955998606,"throughput_eps":0,"last_update":"2026-03-21T22:06:23.965525781Z"} +2026/03/21 22:06:28 [detection_layer] {"stage_name":"detection_layer","events_processed":481,"events_dropped":0,"avg_latency_ms":16.40633360358963,"throughput_eps":0,"last_update":"2026-03-21T22:06:23.965513817Z"} +2026/03/21 22:06:28 [log_collector] {"stage_name":"log_collector","events_processed":22661,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4532.2,"last_update":"2026-03-21T22:06:28.869403954Z"} +2026/03/21 22:06:28 ───────────────────────────────────────────────── +2026/03/21 22:06:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:06:33 [log_collector] {"stage_name":"log_collector","events_processed":22661,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4532.2,"last_update":"2026-03-21T22:06:33.870248456Z"} +2026/03/21 22:06:33 [metric_collector] {"stage_name":"metric_collector","events_processed":14438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2887.6,"last_update":"2026-03-21T22:06:28.869381982Z"} +2026/03/21 22:06:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:06:28.87815909Z"} +2026/03/21 22:06:33 [transform_engine] {"stage_name":"transform_engine","events_processed":481,"events_dropped":0,"avg_latency_ms":407.01260955998606,"throughput_eps":0,"last_update":"2026-03-21T22:06:28.965538074Z"} +2026/03/21 22:06:33 [detection_layer] {"stage_name":"detection_layer","events_processed":481,"events_dropped":0,"avg_latency_ms":16.40633360358963,"throughput_eps":0,"last_update":"2026-03-21T22:06:28.965522925Z"} +2026/03/21 22:06:33 ───────────────────────────────────────────────── +2026/03/21 22:06:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:06:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5780,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:06:33.879641883Z"} +2026/03/21 22:06:38 [transform_engine] {"stage_name":"transform_engine","events_processed":481,"events_dropped":0,"avg_latency_ms":407.01260955998606,"throughput_eps":0,"last_update":"2026-03-21T22:06:33.965328745Z"} +2026/03/21 22:06:38 [detection_layer] {"stage_name":"detection_layer","events_processed":481,"events_dropped":0,"avg_latency_ms":16.40633360358963,"throughput_eps":0,"last_update":"2026-03-21T22:06:33.965301653Z"} +2026/03/21 22:06:38 [log_collector] {"stage_name":"log_collector","events_processed":22661,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4532.2,"last_update":"2026-03-21T22:06:38.870376432Z"} +2026/03/21 22:06:38 [metric_collector] {"stage_name":"metric_collector","events_processed":14444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2888.8,"last_update":"2026-03-21T22:06:33.870646859Z"} +2026/03/21 22:06:38 ───────────────────────────────────────────────── +2026/03/21 22:06:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:06:43 [log_collector] {"stage_name":"log_collector","events_processed":22661,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4532.2,"last_update":"2026-03-21T22:06:43.869622581Z"} +2026/03/21 22:06:43 [metric_collector] {"stage_name":"metric_collector","events_processed":14449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2889.8,"last_update":"2026-03-21T22:06:38.87067293Z"} +2026/03/21 22:06:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5782,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:06:38.879588163Z"} +2026/03/21 22:06:43 [transform_engine] {"stage_name":"transform_engine","events_processed":481,"events_dropped":0,"avg_latency_ms":407.01260955998606,"throughput_eps":0,"last_update":"2026-03-21T22:06:38.965807534Z"} +2026/03/21 22:06:43 [detection_layer] {"stage_name":"detection_layer","events_processed":481,"events_dropped":0,"avg_latency_ms":16.40633360358963,"throughput_eps":0,"last_update":"2026-03-21T22:06:38.965793658Z"} +2026/03/21 22:06:43 ───────────────────────────────────────────────── +2026/03/21 22:06:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:06:48 [log_collector] {"stage_name":"log_collector","events_processed":22661,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4532.2,"last_update":"2026-03-21T22:06:43.869622581Z"} +2026/03/21 22:06:48 [metric_collector] {"stage_name":"metric_collector","events_processed":14454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2890.8,"last_update":"2026-03-21T22:06:43.87011716Z"} +2026/03/21 22:06:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:06:43.878724902Z"} +2026/03/21 22:06:48 [transform_engine] {"stage_name":"transform_engine","events_processed":481,"events_dropped":0,"avg_latency_ms":407.01260955998606,"throughput_eps":0,"last_update":"2026-03-21T22:06:43.965937807Z"} +2026/03/21 22:06:48 [detection_layer] {"stage_name":"detection_layer","events_processed":481,"events_dropped":0,"avg_latency_ms":16.40633360358963,"throughput_eps":0,"last_update":"2026-03-21T22:06:43.965924953Z"} +2026/03/21 22:06:48 ───────────────────────────────────────────────── +2026/03/21 22:06:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:06:53 [detection_layer] {"stage_name":"detection_layer","events_processed":481,"events_dropped":0,"avg_latency_ms":16.40633360358963,"throughput_eps":0,"last_update":"2026-03-21T22:06:48.966392205Z"} +2026/03/21 22:06:53 [log_collector] {"stage_name":"log_collector","events_processed":22661,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4532.2,"last_update":"2026-03-21T22:06:53.86943166Z"} +2026/03/21 22:06:53 [metric_collector] {"stage_name":"metric_collector","events_processed":14459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2891.8,"last_update":"2026-03-21T22:06:48.869815569Z"} +2026/03/21 22:06:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:06:48.880012206Z"} +2026/03/21 22:06:53 [transform_engine] {"stage_name":"transform_engine","events_processed":482,"events_dropped":0,"avg_latency_ms":339.72629684798886,"throughput_eps":0,"last_update":"2026-03-21T22:06:49.03569933Z"} +2026/03/21 22:06:53 ───────────────────────────────────────────────── +2026/03/21 22:06:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:06:58 [metric_collector] {"stage_name":"metric_collector","events_processed":14464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2892.8,"last_update":"2026-03-21T22:06:53.869947087Z"} +2026/03/21 22:06:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:06:53.877945583Z"} +2026/03/21 22:06:58 [transform_engine] {"stage_name":"transform_engine","events_processed":482,"events_dropped":0,"avg_latency_ms":339.72629684798886,"throughput_eps":0,"last_update":"2026-03-21T22:06:53.966131902Z"} +2026/03/21 22:06:58 [detection_layer] {"stage_name":"detection_layer","events_processed":482,"events_dropped":0,"avg_latency_ms":17.230987882871705,"throughput_eps":0,"last_update":"2026-03-21T22:06:53.966120659Z"} +2026/03/21 22:06:58 [log_collector] {"stage_name":"log_collector","events_processed":22661,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4532.2,"last_update":"2026-03-21T22:06:53.86943166Z"} +2026/03/21 22:06:58 ───────────────────────────────────────────────── +Saved state: 14 clusters, 22662 messages, reason: none +2026/03/21 22:07:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:07:03 [log_collector] {"stage_name":"log_collector","events_processed":22661,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4532.2,"last_update":"2026-03-21T22:06:58.869438792Z"} +2026/03/21 22:07:03 [metric_collector] {"stage_name":"metric_collector","events_processed":14469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2893.8,"last_update":"2026-03-21T22:06:58.870164463Z"} +2026/03/21 22:07:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:06:58.883071232Z"} +2026/03/21 22:07:03 [transform_engine] {"stage_name":"transform_engine","events_processed":482,"events_dropped":0,"avg_latency_ms":339.72629684798886,"throughput_eps":0,"last_update":"2026-03-21T22:06:58.965193092Z"} +2026/03/21 22:07:03 [detection_layer] {"stage_name":"detection_layer","events_processed":482,"events_dropped":0,"avg_latency_ms":17.230987882871705,"throughput_eps":0,"last_update":"2026-03-21T22:06:58.965260321Z"} +2026/03/21 22:07:03 ───────────────────────────────────────────────── +2026/03/21 22:07:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:07:08 [log_collector] {"stage_name":"log_collector","events_processed":22675,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4535,"last_update":"2026-03-21T22:07:08.870085234Z"} +2026/03/21 22:07:08 [metric_collector] {"stage_name":"metric_collector","events_processed":14474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2894.8,"last_update":"2026-03-21T22:07:03.870402628Z"} +2026/03/21 22:07:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:07:03.877757781Z"} +2026/03/21 22:07:08 [transform_engine] {"stage_name":"transform_engine","events_processed":482,"events_dropped":0,"avg_latency_ms":339.72629684798886,"throughput_eps":0,"last_update":"2026-03-21T22:07:03.966028231Z"} +2026/03/21 22:07:08 [detection_layer] {"stage_name":"detection_layer","events_processed":482,"events_dropped":0,"avg_latency_ms":17.230987882871705,"throughput_eps":0,"last_update":"2026-03-21T22:07:03.966012782Z"} +2026/03/21 22:07:08 ───────────────────────────────────────────────── +2026/03/21 22:07:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:07:13 [log_collector] {"stage_name":"log_collector","events_processed":22675,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4535,"last_update":"2026-03-21T22:07:08.870085234Z"} +2026/03/21 22:07:13 [metric_collector] {"stage_name":"metric_collector","events_processed":14479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2895.8,"last_update":"2026-03-21T22:07:08.870733045Z"} +2026/03/21 22:07:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:07:08.878827294Z"} +2026/03/21 22:07:13 [transform_engine] {"stage_name":"transform_engine","events_processed":482,"events_dropped":0,"avg_latency_ms":339.72629684798886,"throughput_eps":0,"last_update":"2026-03-21T22:07:08.966048653Z"} +2026/03/21 22:07:13 [detection_layer] {"stage_name":"detection_layer","events_processed":482,"events_dropped":0,"avg_latency_ms":17.230987882871705,"throughput_eps":0,"last_update":"2026-03-21T22:07:08.966034525Z"} +2026/03/21 22:07:13 ───────────────────────────────────────────────── +2026/03/21 22:07:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:07:18 [transform_engine] {"stage_name":"transform_engine","events_processed":482,"events_dropped":0,"avg_latency_ms":339.72629684798886,"throughput_eps":0,"last_update":"2026-03-21T22:07:13.965130569Z"} +2026/03/21 22:07:18 [detection_layer] {"stage_name":"detection_layer","events_processed":482,"events_dropped":0,"avg_latency_ms":17.230987882871705,"throughput_eps":0,"last_update":"2026-03-21T22:07:13.966315369Z"} +2026/03/21 22:07:18 [log_collector] {"stage_name":"log_collector","events_processed":22675,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4535,"last_update":"2026-03-21T22:07:18.869968813Z"} +2026/03/21 22:07:18 [metric_collector] {"stage_name":"metric_collector","events_processed":14484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2896.8,"last_update":"2026-03-21T22:07:13.869661588Z"} +2026/03/21 22:07:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5796,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:07:18.869913488Z"} +2026/03/21 22:07:18 ───────────────────────────────────────────────── +2026/03/21 22:07:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:07:23 [log_collector] {"stage_name":"log_collector","events_processed":22675,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4535,"last_update":"2026-03-21T22:07:18.869968813Z"} +2026/03/21 22:07:23 [metric_collector] {"stage_name":"metric_collector","events_processed":14489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2897.8,"last_update":"2026-03-21T22:07:18.870591687Z"} +2026/03/21 22:07:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5796,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:07:18.869913488Z"} +2026/03/21 22:07:23 [transform_engine] {"stage_name":"transform_engine","events_processed":483,"events_dropped":0,"avg_latency_ms":294.89845687839113,"throughput_eps":0,"last_update":"2026-03-21T22:07:19.081510112Z"} +2026/03/21 22:07:23 [detection_layer] {"stage_name":"detection_layer","events_processed":482,"events_dropped":0,"avg_latency_ms":17.230987882871705,"throughput_eps":0,"last_update":"2026-03-21T22:07:18.966027494Z"} +2026/03/21 22:07:23 ───────────────────────────────────────────────── +2026/03/21 22:07:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:07:28 [metric_collector] {"stage_name":"metric_collector","events_processed":14494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2898.8,"last_update":"2026-03-21T22:07:23.870293278Z"} +2026/03/21 22:07:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5800,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:07:23.878874048Z"} +2026/03/21 22:07:28 [transform_engine] {"stage_name":"transform_engine","events_processed":483,"events_dropped":0,"avg_latency_ms":294.89845687839113,"throughput_eps":0,"last_update":"2026-03-21T22:07:23.965061646Z"} +2026/03/21 22:07:28 [detection_layer] {"stage_name":"detection_layer","events_processed":483,"events_dropped":0,"avg_latency_ms":17.392678906297366,"throughput_eps":0,"last_update":"2026-03-21T22:07:23.966188776Z"} +2026/03/21 22:07:28 [log_collector] {"stage_name":"log_collector","events_processed":22675,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4535,"last_update":"2026-03-21T22:07:23.869924581Z"} +2026/03/21 22:07:28 ───────────────────────────────────────────────── +2026/03/21 22:07:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:07:33 [transform_engine] {"stage_name":"transform_engine","events_processed":483,"events_dropped":0,"avg_latency_ms":294.89845687839113,"throughput_eps":0,"last_update":"2026-03-21T22:07:28.965873185Z"} +2026/03/21 22:07:33 [detection_layer] {"stage_name":"detection_layer","events_processed":483,"events_dropped":0,"avg_latency_ms":17.392678906297366,"throughput_eps":0,"last_update":"2026-03-21T22:07:28.965866462Z"} +2026/03/21 22:07:33 [log_collector] {"stage_name":"log_collector","events_processed":22675,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4535,"last_update":"2026-03-21T22:07:28.870185665Z"} +2026/03/21 22:07:33 [metric_collector] {"stage_name":"metric_collector","events_processed":14499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2899.8,"last_update":"2026-03-21T22:07:28.870462596Z"} +2026/03/21 22:07:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5802,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:07:28.879634079Z"} +2026/03/21 22:07:33 ───────────────────────────────────────────────── +2026/03/21 22:07:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:07:38 [log_collector] {"stage_name":"log_collector","events_processed":22675,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4535,"last_update":"2026-03-21T22:07:33.869783041Z"} +2026/03/21 22:07:38 [metric_collector] {"stage_name":"metric_collector","events_processed":14504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2900.8,"last_update":"2026-03-21T22:07:33.870281516Z"} +2026/03/21 22:07:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:07:33.878837128Z"} +2026/03/21 22:07:38 [transform_engine] {"stage_name":"transform_engine","events_processed":483,"events_dropped":0,"avg_latency_ms":294.89845687839113,"throughput_eps":0,"last_update":"2026-03-21T22:07:33.966045361Z"} +2026/03/21 22:07:38 [detection_layer] {"stage_name":"detection_layer","events_processed":483,"events_dropped":0,"avg_latency_ms":17.392678906297366,"throughput_eps":0,"last_update":"2026-03-21T22:07:33.966034681Z"} +2026/03/21 22:07:38 ───────────────────────────────────────────────── +2026/03/21 22:07:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:07:43 [detection_layer] {"stage_name":"detection_layer","events_processed":483,"events_dropped":0,"avg_latency_ms":17.392678906297366,"throughput_eps":0,"last_update":"2026-03-21T22:07:38.965384766Z"} +2026/03/21 22:07:43 [log_collector] {"stage_name":"log_collector","events_processed":22675,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4535,"last_update":"2026-03-21T22:07:43.870276792Z"} +2026/03/21 22:07:43 [metric_collector] {"stage_name":"metric_collector","events_processed":14509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2901.8,"last_update":"2026-03-21T22:07:38.86977159Z"} +2026/03/21 22:07:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:07:38.879161731Z"} +2026/03/21 22:07:43 [transform_engine] {"stage_name":"transform_engine","events_processed":483,"events_dropped":0,"avg_latency_ms":294.89845687839113,"throughput_eps":0,"last_update":"2026-03-21T22:07:38.9653971Z"} +2026/03/21 22:07:43 ───────────────────────────────────────────────── +2026/03/21 22:07:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:07:48 [log_collector] {"stage_name":"log_collector","events_processed":22675,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4535,"last_update":"2026-03-21T22:07:43.870276792Z"} +2026/03/21 22:07:48 [metric_collector] {"stage_name":"metric_collector","events_processed":14514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2902.8,"last_update":"2026-03-21T22:07:43.870775287Z"} +2026/03/21 22:07:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:07:43.879649882Z"} +2026/03/21 22:07:48 [transform_engine] {"stage_name":"transform_engine","events_processed":483,"events_dropped":0,"avg_latency_ms":294.89845687839113,"throughput_eps":0,"last_update":"2026-03-21T22:07:43.9658648Z"} +2026/03/21 22:07:48 [detection_layer] {"stage_name":"detection_layer","events_processed":483,"events_dropped":0,"avg_latency_ms":17.392678906297366,"throughput_eps":0,"last_update":"2026-03-21T22:07:43.965853829Z"} +2026/03/21 22:07:48 ───────────────────────────────────────────────── +2026/03/21 22:07:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:07:53 [detection_layer] {"stage_name":"detection_layer","events_processed":483,"events_dropped":0,"avg_latency_ms":17.392678906297366,"throughput_eps":0,"last_update":"2026-03-21T22:07:48.965564474Z"} +2026/03/21 22:07:53 [log_collector] {"stage_name":"log_collector","events_processed":22675,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4535,"last_update":"2026-03-21T22:07:53.869399744Z"} +2026/03/21 22:07:53 [metric_collector] {"stage_name":"metric_collector","events_processed":14519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2903.8,"last_update":"2026-03-21T22:07:48.869754821Z"} +2026/03/21 22:07:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:07:48.878883913Z"} +2026/03/21 22:07:53 [transform_engine] {"stage_name":"transform_engine","events_processed":484,"events_dropped":0,"avg_latency_ms":252.32402010271292,"throughput_eps":0,"last_update":"2026-03-21T22:07:49.047083795Z"} +2026/03/21 22:07:53 ───────────────────────────────────────────────── +2026/03/21 22:07:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:07:58 [log_collector] {"stage_name":"log_collector","events_processed":22675,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4535,"last_update":"2026-03-21T22:07:58.870340363Z"} +2026/03/21 22:07:58 [metric_collector] {"stage_name":"metric_collector","events_processed":14524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2904.8,"last_update":"2026-03-21T22:07:53.8700657Z"} +2026/03/21 22:07:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5812,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:07:53.878743626Z"} +2026/03/21 22:07:58 [transform_engine] {"stage_name":"transform_engine","events_processed":484,"events_dropped":0,"avg_latency_ms":252.32402010271292,"throughput_eps":0,"last_update":"2026-03-21T22:07:53.966049445Z"} +2026/03/21 22:07:58 [detection_layer] {"stage_name":"detection_layer","events_processed":484,"events_dropped":0,"avg_latency_ms":18.034371525037894,"throughput_eps":0,"last_update":"2026-03-21T22:07:53.965998137Z"} +2026/03/21 22:07:58 ───────────────────────────────────────────────── +2026/03/21 22:08:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:08:03 [log_collector] {"stage_name":"log_collector","events_processed":22675,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4535,"last_update":"2026-03-21T22:07:58.870340363Z"} +2026/03/21 22:08:03 [metric_collector] {"stage_name":"metric_collector","events_processed":14529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2905.8,"last_update":"2026-03-21T22:07:58.870779414Z"} +2026/03/21 22:08:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:07:58.880901548Z"} +2026/03/21 22:08:03 [transform_engine] {"stage_name":"transform_engine","events_processed":484,"events_dropped":0,"avg_latency_ms":252.32402010271292,"throughput_eps":0,"last_update":"2026-03-21T22:07:58.965165949Z"} +2026/03/21 22:08:03 [detection_layer] {"stage_name":"detection_layer","events_processed":484,"events_dropped":0,"avg_latency_ms":18.034371525037894,"throughput_eps":0,"last_update":"2026-03-21T22:07:58.965405036Z"} +2026/03/21 22:08:03 ───────────────────────────────────────────────── +2026/03/21 22:08:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:08:08 [log_collector] {"stage_name":"log_collector","events_processed":22675,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4535,"last_update":"2026-03-21T22:08:03.869583071Z"} +2026/03/21 22:08:08 [metric_collector] {"stage_name":"metric_collector","events_processed":14534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2906.8,"last_update":"2026-03-21T22:08:03.870009017Z"} +2026/03/21 22:08:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5816,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:08:03.876631576Z"} +2026/03/21 22:08:08 [transform_engine] {"stage_name":"transform_engine","events_processed":484,"events_dropped":0,"avg_latency_ms":252.32402010271292,"throughput_eps":0,"last_update":"2026-03-21T22:08:03.965883873Z"} +2026/03/21 22:08:08 [detection_layer] {"stage_name":"detection_layer","events_processed":484,"events_dropped":0,"avg_latency_ms":18.034371525037894,"throughput_eps":0,"last_update":"2026-03-21T22:08:03.965836362Z"} +2026/03/21 22:08:08 ───────────────────────────────────────────────── +Saved state: 14 clusters, 22676 messages, reason: none +2026/03/21 22:08:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:08:13 [log_collector] {"stage_name":"log_collector","events_processed":22675,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4535,"last_update":"2026-03-21T22:08:08.869779531Z"} +2026/03/21 22:08:13 [metric_collector] {"stage_name":"metric_collector","events_processed":14539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2907.8,"last_update":"2026-03-21T22:08:08.870049328Z"} +2026/03/21 22:08:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5818,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:08:08.878634236Z"} +2026/03/21 22:08:13 [transform_engine] {"stage_name":"transform_engine","events_processed":484,"events_dropped":0,"avg_latency_ms":252.32402010271292,"throughput_eps":0,"last_update":"2026-03-21T22:08:08.965815685Z"} +2026/03/21 22:08:13 [detection_layer] {"stage_name":"detection_layer","events_processed":484,"events_dropped":0,"avg_latency_ms":18.034371525037894,"throughput_eps":0,"last_update":"2026-03-21T22:08:08.965859349Z"} +2026/03/21 22:08:13 ───────────────────────────────────────────────── +2026/03/21 22:08:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:08:18 [transform_engine] {"stage_name":"transform_engine","events_processed":484,"events_dropped":0,"avg_latency_ms":252.32402010271292,"throughput_eps":0,"last_update":"2026-03-21T22:08:13.96513646Z"} +2026/03/21 22:08:18 [detection_layer] {"stage_name":"detection_layer","events_processed":484,"events_dropped":0,"avg_latency_ms":18.034371525037894,"throughput_eps":0,"last_update":"2026-03-21T22:08:13.966252198Z"} +2026/03/21 22:08:18 [log_collector] {"stage_name":"log_collector","events_processed":22680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4536,"last_update":"2026-03-21T22:08:18.869645893Z"} +2026/03/21 22:08:18 [metric_collector] {"stage_name":"metric_collector","events_processed":14544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2908.8,"last_update":"2026-03-21T22:08:13.869831247Z"} +2026/03/21 22:08:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5820,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:08:13.876928225Z"} +2026/03/21 22:08:18 ───────────────────────────────────────────────── +2026/03/21 22:08:22 [ANOMALY] time=2026-03-21T22:08:21Z score=0.9069 method=SEAD details=MAD!:w=0.24,s=0.93 RRCF-fast!:w=0.20,s=0.92 RRCF-mid!:w=0.17,s=0.99 RRCF-slow!:w=0.16,s=0.99 COPOD!:w=0.23,s=0.76 +2026/03/21 22:08:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:08:23 [detection_layer] {"stage_name":"detection_layer","events_processed":484,"events_dropped":0,"avg_latency_ms":18.034371525037894,"throughput_eps":0,"last_update":"2026-03-21T22:08:18.965323109Z"} +2026/03/21 22:08:23 [log_collector] {"stage_name":"log_collector","events_processed":22680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4536,"last_update":"2026-03-21T22:08:23.872564762Z"} +2026/03/21 22:08:23 [metric_collector] {"stage_name":"metric_collector","events_processed":14554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2910.8,"last_update":"2026-03-21T22:08:23.873094678Z"} +2026/03/21 22:08:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:08:18.888791065Z"} +2026/03/21 22:08:23 [transform_engine] {"stage_name":"transform_engine","events_processed":485,"events_dropped":0,"avg_latency_ms":947.8057684821704,"throughput_eps":0,"last_update":"2026-03-21T22:08:22.695078474Z"} +2026/03/21 22:08:23 ───────────────────────────────────────────────── +2026/03/21 22:08:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:08:28 [metric_collector] {"stage_name":"metric_collector","events_processed":14554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2910.8,"last_update":"2026-03-21T22:08:23.873094678Z"} +2026/03/21 22:08:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:08:23.888981286Z"} +2026/03/21 22:08:28 [transform_engine] {"stage_name":"transform_engine","events_processed":485,"events_dropped":0,"avg_latency_ms":947.8057684821704,"throughput_eps":0,"last_update":"2026-03-21T22:08:23.965110088Z"} +2026/03/21 22:08:28 [detection_layer] {"stage_name":"detection_layer","events_processed":485,"events_dropped":0,"avg_latency_ms":17.574559020030318,"throughput_eps":0,"last_update":"2026-03-21T22:08:23.966198713Z"} +2026/03/21 22:08:28 [log_collector] {"stage_name":"log_collector","events_processed":22680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4536,"last_update":"2026-03-21T22:08:28.870392563Z"} +2026/03/21 22:08:28 ───────────────────────────────────────────────── +2026/03/21 22:08:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:08:33 [log_collector] {"stage_name":"log_collector","events_processed":22680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4536,"last_update":"2026-03-21T22:08:28.870392563Z"} +2026/03/21 22:08:33 [metric_collector] {"stage_name":"metric_collector","events_processed":14559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2911.8,"last_update":"2026-03-21T22:08:28.870669884Z"} +2026/03/21 22:08:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5826,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:08:28.880401238Z"} +2026/03/21 22:08:33 [transform_engine] {"stage_name":"transform_engine","events_processed":485,"events_dropped":0,"avg_latency_ms":947.8057684821704,"throughput_eps":0,"last_update":"2026-03-21T22:08:28.965594107Z"} +2026/03/21 22:08:33 [detection_layer] {"stage_name":"detection_layer","events_processed":485,"events_dropped":0,"avg_latency_ms":17.574559020030318,"throughput_eps":0,"last_update":"2026-03-21T22:08:28.965614054Z"} +2026/03/21 22:08:33 ───────────────────────────────────────────────── +2026/03/21 22:08:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:08:38 [log_collector] {"stage_name":"log_collector","events_processed":22680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4536,"last_update":"2026-03-21T22:08:33.869512042Z"} +2026/03/21 22:08:38 [metric_collector] {"stage_name":"metric_collector","events_processed":14564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2912.8,"last_update":"2026-03-21T22:08:33.869833308Z"} +2026/03/21 22:08:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:08:33.877583367Z"} +2026/03/21 22:08:38 [transform_engine] {"stage_name":"transform_engine","events_processed":485,"events_dropped":0,"avg_latency_ms":947.8057684821704,"throughput_eps":0,"last_update":"2026-03-21T22:08:33.965928324Z"} +2026/03/21 22:08:38 [detection_layer] {"stage_name":"detection_layer","events_processed":485,"events_dropped":0,"avg_latency_ms":17.574559020030318,"throughput_eps":0,"last_update":"2026-03-21T22:08:33.965804477Z"} +2026/03/21 22:08:38 ───────────────────────────────────────────────── +2026/03/21 22:08:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:08:43 [log_collector] {"stage_name":"log_collector","events_processed":22680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4536,"last_update":"2026-03-21T22:08:38.869493028Z"} +2026/03/21 22:08:43 [metric_collector] {"stage_name":"metric_collector","events_processed":14569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2913.8,"last_update":"2026-03-21T22:08:38.869758497Z"} +2026/03/21 22:08:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5830,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:08:38.876483893Z"} +2026/03/21 22:08:43 [transform_engine] {"stage_name":"transform_engine","events_processed":485,"events_dropped":0,"avg_latency_ms":947.8057684821704,"throughput_eps":0,"last_update":"2026-03-21T22:08:38.966329775Z"} +2026/03/21 22:08:43 [detection_layer] {"stage_name":"detection_layer","events_processed":485,"events_dropped":0,"avg_latency_ms":17.574559020030318,"throughput_eps":0,"last_update":"2026-03-21T22:08:38.966286934Z"} +2026/03/21 22:08:43 ───────────────────────────────────────────────── +2026/03/21 22:08:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:08:48 [transform_engine] {"stage_name":"transform_engine","events_processed":485,"events_dropped":0,"avg_latency_ms":947.8057684821704,"throughput_eps":0,"last_update":"2026-03-21T22:08:43.966020431Z"} +2026/03/21 22:08:48 [detection_layer] {"stage_name":"detection_layer","events_processed":485,"events_dropped":0,"avg_latency_ms":17.574559020030318,"throughput_eps":0,"last_update":"2026-03-21T22:08:43.966000352Z"} +2026/03/21 22:08:48 [log_collector] {"stage_name":"log_collector","events_processed":22680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4536,"last_update":"2026-03-21T22:08:43.86994929Z"} +2026/03/21 22:08:48 [metric_collector] {"stage_name":"metric_collector","events_processed":14574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2914.8,"last_update":"2026-03-21T22:08:43.870300634Z"} +2026/03/21 22:08:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5832,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:08:43.880755866Z"} +2026/03/21 22:08:48 ───────────────────────────────────────────────── +2026/03/21 22:08:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:08:53 [detection_layer] {"stage_name":"detection_layer","events_processed":485,"events_dropped":0,"avg_latency_ms":17.574559020030318,"throughput_eps":0,"last_update":"2026-03-21T22:08:48.965568997Z"} +2026/03/21 22:08:53 [log_collector] {"stage_name":"log_collector","events_processed":22689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4537.8,"last_update":"2026-03-21T22:08:53.869909756Z"} +2026/03/21 22:08:53 [metric_collector] {"stage_name":"metric_collector","events_processed":14584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2916.8,"last_update":"2026-03-21T22:08:53.870289194Z"} +2026/03/21 22:08:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:08:48.881417816Z"} +2026/03/21 22:08:53 [transform_engine] {"stage_name":"transform_engine","events_processed":486,"events_dropped":0,"avg_latency_ms":1095.6798427857364,"throughput_eps":0,"last_update":"2026-03-21T22:08:50.652770547Z"} +2026/03/21 22:08:53 ───────────────────────────────────────────────── +2026/03/21 22:08:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:08:58 [metric_collector] {"stage_name":"metric_collector","events_processed":14584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2916.8,"last_update":"2026-03-21T22:08:53.870289194Z"} +2026/03/21 22:08:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:08:53.877933569Z"} +2026/03/21 22:08:58 [transform_engine] {"stage_name":"transform_engine","events_processed":486,"events_dropped":0,"avg_latency_ms":1095.6798427857364,"throughput_eps":0,"last_update":"2026-03-21T22:08:53.96509008Z"} +2026/03/21 22:08:58 [detection_layer] {"stage_name":"detection_layer","events_processed":486,"events_dropped":0,"avg_latency_ms":16.806413816024254,"throughput_eps":0,"last_update":"2026-03-21T22:08:53.966279809Z"} +2026/03/21 22:08:58 [log_collector] {"stage_name":"log_collector","events_processed":22689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4537.8,"last_update":"2026-03-21T22:08:53.869909756Z"} +2026/03/21 22:08:58 ───────────────────────────────────────────────── +2026/03/21 22:09:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:09:03 [log_collector] {"stage_name":"log_collector","events_processed":22691,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4538.2,"last_update":"2026-03-21T22:08:58.869902997Z"} +2026/03/21 22:09:03 [metric_collector] {"stage_name":"metric_collector","events_processed":14588,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2917.6,"last_update":"2026-03-21T22:08:58.870007978Z"} +2026/03/21 22:09:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:08:58.880119231Z"} +2026/03/21 22:09:03 [transform_engine] {"stage_name":"transform_engine","events_processed":486,"events_dropped":0,"avg_latency_ms":1095.6798427857364,"throughput_eps":0,"last_update":"2026-03-21T22:08:58.965528402Z"} +2026/03/21 22:09:03 [detection_layer] {"stage_name":"detection_layer","events_processed":486,"events_dropped":0,"avg_latency_ms":16.806413816024254,"throughput_eps":0,"last_update":"2026-03-21T22:08:58.965481062Z"} +2026/03/21 22:09:03 ───────────────────────────────────────────────── +2026/03/21 22:09:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:09:08 [log_collector] {"stage_name":"log_collector","events_processed":22842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4568.4,"last_update":"2026-03-21T22:09:03.869613072Z"} +2026/03/21 22:09:08 [metric_collector] {"stage_name":"metric_collector","events_processed":14593,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2918.6,"last_update":"2026-03-21T22:09:03.869666524Z"} +2026/03/21 22:09:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:09:03.87714894Z"} +2026/03/21 22:09:08 [transform_engine] {"stage_name":"transform_engine","events_processed":486,"events_dropped":0,"avg_latency_ms":1095.6798427857364,"throughput_eps":0,"last_update":"2026-03-21T22:09:03.965879856Z"} +2026/03/21 22:09:08 [detection_layer] {"stage_name":"detection_layer","events_processed":486,"events_dropped":0,"avg_latency_ms":16.806413816024254,"throughput_eps":0,"last_update":"2026-03-21T22:09:03.96582483Z"} +2026/03/21 22:09:08 ───────────────────────────────────────────────── +2026/03/21 22:09:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:09:13 [detection_layer] {"stage_name":"detection_layer","events_processed":486,"events_dropped":0,"avg_latency_ms":16.806413816024254,"throughput_eps":0,"last_update":"2026-03-21T22:09:08.965494293Z"} +2026/03/21 22:09:13 [log_collector] {"stage_name":"log_collector","events_processed":23058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4611.6,"last_update":"2026-03-21T22:09:08.870390387Z"} +2026/03/21 22:09:13 [metric_collector] {"stage_name":"metric_collector","events_processed":14598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2919.6,"last_update":"2026-03-21T22:09:08.870494968Z"} +2026/03/21 22:09:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:09:08.877420908Z"} +2026/03/21 22:09:13 [transform_engine] {"stage_name":"transform_engine","events_processed":486,"events_dropped":0,"avg_latency_ms":1095.6798427857364,"throughput_eps":0,"last_update":"2026-03-21T22:09:08.965540782Z"} +2026/03/21 22:09:13 ───────────────────────────────────────────────── +2026/03/21 22:09:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:09:18 [log_collector] {"stage_name":"log_collector","events_processed":23060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4612,"last_update":"2026-03-21T22:09:13.870110734Z"} +2026/03/21 22:09:18 [metric_collector] {"stage_name":"metric_collector","events_processed":14603,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2920.6,"last_update":"2026-03-21T22:09:13.87021844Z"} +2026/03/21 22:09:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:09:13.878933056Z"} +2026/03/21 22:09:18 [transform_engine] {"stage_name":"transform_engine","events_processed":486,"events_dropped":0,"avg_latency_ms":1095.6798427857364,"throughput_eps":0,"last_update":"2026-03-21T22:09:13.965104227Z"} +2026/03/21 22:09:18 [detection_layer] {"stage_name":"detection_layer","events_processed":486,"events_dropped":0,"avg_latency_ms":16.806413816024254,"throughput_eps":0,"last_update":"2026-03-21T22:09:13.966305709Z"} +2026/03/21 22:09:18 ───────────────────────────────────────────────── +2026/03/21 22:09:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:09:23 [log_collector] {"stage_name":"log_collector","events_processed":23060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4612,"last_update":"2026-03-21T22:09:18.869393919Z"} +2026/03/21 22:09:23 [metric_collector] {"stage_name":"metric_collector","events_processed":14608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2921.6,"last_update":"2026-03-21T22:09:18.869387697Z"} +2026/03/21 22:09:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:09:18.876010265Z"} +2026/03/21 22:09:23 [transform_engine] {"stage_name":"transform_engine","events_processed":487,"events_dropped":0,"avg_latency_ms":899.2569434285891,"throughput_eps":0,"last_update":"2026-03-21T22:09:19.078744906Z"} +2026/03/21 22:09:23 [detection_layer] {"stage_name":"detection_layer","events_processed":486,"events_dropped":0,"avg_latency_ms":16.806413816024254,"throughput_eps":0,"last_update":"2026-03-21T22:09:18.966392323Z"} +2026/03/21 22:09:23 ───────────────────────────────────────────────── +2026/03/21 22:09:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:09:28 [detection_layer] {"stage_name":"detection_layer","events_processed":487,"events_dropped":0,"avg_latency_ms":16.194326452819404,"throughput_eps":0,"last_update":"2026-03-21T22:09:23.965716611Z"} +2026/03/21 22:09:28 [log_collector] {"stage_name":"log_collector","events_processed":23060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4612,"last_update":"2026-03-21T22:09:23.869988482Z"} +2026/03/21 22:09:28 [metric_collector] {"stage_name":"metric_collector","events_processed":14613,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2922.6,"last_update":"2026-03-21T22:09:23.870026764Z"} +2026/03/21 22:09:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5848,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:09:23.878085876Z"} +2026/03/21 22:09:28 [transform_engine] {"stage_name":"transform_engine","events_processed":487,"events_dropped":0,"avg_latency_ms":899.2569434285891,"throughput_eps":0,"last_update":"2026-03-21T22:09:23.96560057Z"} +2026/03/21 22:09:28 ───────────────────────────────────────────────── +2026/03/21 22:09:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:09:33 [log_collector] {"stage_name":"log_collector","events_processed":23060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4612,"last_update":"2026-03-21T22:09:33.869453453Z"} +2026/03/21 22:09:33 [metric_collector] {"stage_name":"metric_collector","events_processed":14619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2923.8,"last_update":"2026-03-21T22:09:28.87053555Z"} +2026/03/21 22:09:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:09:28.878480082Z"} +2026/03/21 22:09:33 [transform_engine] {"stage_name":"transform_engine","events_processed":487,"events_dropped":0,"avg_latency_ms":899.2569434285891,"throughput_eps":0,"last_update":"2026-03-21T22:09:28.965840479Z"} +2026/03/21 22:09:33 [detection_layer] {"stage_name":"detection_layer","events_processed":487,"events_dropped":0,"avg_latency_ms":16.194326452819404,"throughput_eps":0,"last_update":"2026-03-21T22:09:28.965785724Z"} +2026/03/21 22:09:33 ───────────────────────────────────────────────── +2026/03/21 22:09:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:09:38 [log_collector] {"stage_name":"log_collector","events_processed":23060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4612,"last_update":"2026-03-21T22:09:33.869453453Z"} +2026/03/21 22:09:38 [metric_collector] {"stage_name":"metric_collector","events_processed":14624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2924.8,"last_update":"2026-03-21T22:09:33.870434202Z"} +2026/03/21 22:09:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:09:33.878226702Z"} +2026/03/21 22:09:38 [transform_engine] {"stage_name":"transform_engine","events_processed":487,"events_dropped":0,"avg_latency_ms":899.2569434285891,"throughput_eps":0,"last_update":"2026-03-21T22:09:33.965580317Z"} +2026/03/21 22:09:38 [detection_layer] {"stage_name":"detection_layer","events_processed":487,"events_dropped":0,"avg_latency_ms":16.194326452819404,"throughput_eps":0,"last_update":"2026-03-21T22:09:33.965603171Z"} +2026/03/21 22:09:38 ───────────────────────────────────────────────── +2026/03/21 22:09:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:09:43 [metric_collector] {"stage_name":"metric_collector","events_processed":14629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2925.8,"last_update":"2026-03-21T22:09:38.869948596Z"} +2026/03/21 22:09:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:09:38.878474472Z"} +2026/03/21 22:09:43 [transform_engine] {"stage_name":"transform_engine","events_processed":487,"events_dropped":0,"avg_latency_ms":899.2569434285891,"throughput_eps":0,"last_update":"2026-03-21T22:09:38.965700421Z"} +2026/03/21 22:09:43 [detection_layer] {"stage_name":"detection_layer","events_processed":487,"events_dropped":0,"avg_latency_ms":16.194326452819404,"throughput_eps":0,"last_update":"2026-03-21T22:09:38.965681295Z"} +2026/03/21 22:09:43 [log_collector] {"stage_name":"log_collector","events_processed":23060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4612,"last_update":"2026-03-21T22:09:43.869416196Z"} +2026/03/21 22:09:43 ───────────────────────────────────────────────── +2026/03/21 22:09:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:09:48 [log_collector] {"stage_name":"log_collector","events_processed":23060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4612,"last_update":"2026-03-21T22:09:48.869934758Z"} +2026/03/21 22:09:48 [metric_collector] {"stage_name":"metric_collector","events_processed":14639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2927.8,"last_update":"2026-03-21T22:09:48.869754903Z"} +2026/03/21 22:09:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:09:43.87923572Z"} +2026/03/21 22:09:48 [transform_engine] {"stage_name":"transform_engine","events_processed":487,"events_dropped":0,"avg_latency_ms":899.2569434285891,"throughput_eps":0,"last_update":"2026-03-21T22:09:43.96543358Z"} +2026/03/21 22:09:48 [detection_layer] {"stage_name":"detection_layer","events_processed":487,"events_dropped":0,"avg_latency_ms":16.194326452819404,"throughput_eps":0,"last_update":"2026-03-21T22:09:43.965455832Z"} +2026/03/21 22:09:48 ───────────────────────────────────────────────── +2026/03/21 22:09:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:09:53 [detection_layer] {"stage_name":"detection_layer","events_processed":487,"events_dropped":0,"avg_latency_ms":16.194326452819404,"throughput_eps":0,"last_update":"2026-03-21T22:09:48.965313688Z"} +2026/03/21 22:09:53 [log_collector] {"stage_name":"log_collector","events_processed":23060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4612,"last_update":"2026-03-21T22:09:48.869934758Z"} +2026/03/21 22:09:53 [metric_collector] {"stage_name":"metric_collector","events_processed":14639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2927.8,"last_update":"2026-03-21T22:09:48.869754903Z"} +2026/03/21 22:09:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:09:48.879128643Z"} +2026/03/21 22:09:53 [transform_engine] {"stage_name":"transform_engine","events_processed":488,"events_dropped":0,"avg_latency_ms":733.9979047428714,"throughput_eps":0,"last_update":"2026-03-21T22:09:49.03830216Z"} +2026/03/21 22:09:53 ───────────────────────────────────────────────── +2026/03/21 22:09:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:09:58 [log_collector] {"stage_name":"log_collector","events_processed":23060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4612,"last_update":"2026-03-21T22:09:53.869447189Z"} +2026/03/21 22:09:58 [metric_collector] {"stage_name":"metric_collector","events_processed":14644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2928.8,"last_update":"2026-03-21T22:09:53.870049783Z"} +2026/03/21 22:09:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5860,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:09:53.878984632Z"} +2026/03/21 22:09:58 [transform_engine] {"stage_name":"transform_engine","events_processed":488,"events_dropped":0,"avg_latency_ms":733.9979047428714,"throughput_eps":0,"last_update":"2026-03-21T22:09:53.965154577Z"} +2026/03/21 22:09:58 [detection_layer] {"stage_name":"detection_layer","events_processed":488,"events_dropped":0,"avg_latency_ms":16.935166362255526,"throughput_eps":0,"last_update":"2026-03-21T22:09:53.966292899Z"} +2026/03/21 22:09:58 ───────────────────────────────────────────────── +2026/03/21 22:10:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:10:03 [log_collector] {"stage_name":"log_collector","events_processed":23060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4612,"last_update":"2026-03-21T22:09:58.870474538Z"} +2026/03/21 22:10:03 [metric_collector] {"stage_name":"metric_collector","events_processed":14649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2929.8,"last_update":"2026-03-21T22:09:58.870795714Z"} +2026/03/21 22:10:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5862,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:09:58.8771979Z"} +2026/03/21 22:10:03 [transform_engine] {"stage_name":"transform_engine","events_processed":488,"events_dropped":0,"avg_latency_ms":733.9979047428714,"throughput_eps":0,"last_update":"2026-03-21T22:09:58.965420318Z"} +2026/03/21 22:10:03 [detection_layer] {"stage_name":"detection_layer","events_processed":488,"events_dropped":0,"avg_latency_ms":16.935166362255526,"throughput_eps":0,"last_update":"2026-03-21T22:09:58.965399177Z"} +2026/03/21 22:10:03 ───────────────────────────────────────────────── +2026/03/21 22:10:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:10:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:10:03.886168495Z"} +2026/03/21 22:10:08 [transform_engine] {"stage_name":"transform_engine","events_processed":488,"events_dropped":0,"avg_latency_ms":733.9979047428714,"throughput_eps":0,"last_update":"2026-03-21T22:10:03.965527381Z"} +2026/03/21 22:10:08 [detection_layer] {"stage_name":"detection_layer","events_processed":488,"events_dropped":0,"avg_latency_ms":16.935166362255526,"throughput_eps":0,"last_update":"2026-03-21T22:10:03.965492885Z"} +2026/03/21 22:10:08 [log_collector] {"stage_name":"log_collector","events_processed":23060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4612,"last_update":"2026-03-21T22:10:08.869403191Z"} +2026/03/21 22:10:08 [metric_collector] {"stage_name":"metric_collector","events_processed":14654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2930.8,"last_update":"2026-03-21T22:10:03.870286255Z"} +2026/03/21 22:10:08 ───────────────────────────────────────────────── +2026/03/21 22:10:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:10:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:10:08.878811548Z"} +2026/03/21 22:10:13 [transform_engine] {"stage_name":"transform_engine","events_processed":488,"events_dropped":0,"avg_latency_ms":733.9979047428714,"throughput_eps":0,"last_update":"2026-03-21T22:10:08.965996016Z"} +2026/03/21 22:10:13 [detection_layer] {"stage_name":"detection_layer","events_processed":488,"events_dropped":0,"avg_latency_ms":16.935166362255526,"throughput_eps":0,"last_update":"2026-03-21T22:10:08.96601328Z"} +2026/03/21 22:10:13 [log_collector] {"stage_name":"log_collector","events_processed":23060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4612,"last_update":"2026-03-21T22:10:08.869403191Z"} +2026/03/21 22:10:13 [metric_collector] {"stage_name":"metric_collector","events_processed":14659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2931.8,"last_update":"2026-03-21T22:10:08.869760706Z"} +2026/03/21 22:10:13 ───────────────────────────────────────────────── +2026/03/21 22:10:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:10:18 [log_collector] {"stage_name":"log_collector","events_processed":23060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4612,"last_update":"2026-03-21T22:10:13.86985348Z"} +2026/03/21 22:10:18 [metric_collector] {"stage_name":"metric_collector","events_processed":14669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2933.8,"last_update":"2026-03-21T22:10:18.869749972Z"} +2026/03/21 22:10:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5868,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:10:13.879980984Z"} +2026/03/21 22:10:18 [transform_engine] {"stage_name":"transform_engine","events_processed":488,"events_dropped":0,"avg_latency_ms":733.9979047428714,"throughput_eps":0,"last_update":"2026-03-21T22:10:13.965095937Z"} +2026/03/21 22:10:18 [detection_layer] {"stage_name":"detection_layer","events_processed":488,"events_dropped":0,"avg_latency_ms":16.935166362255526,"throughput_eps":0,"last_update":"2026-03-21T22:10:13.966301207Z"} +2026/03/21 22:10:18 ───────────────────────────────────────────────── +2026/03/21 22:10:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:10:23 [log_collector] {"stage_name":"log_collector","events_processed":23060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4612,"last_update":"2026-03-21T22:10:18.869951198Z"} +2026/03/21 22:10:23 [metric_collector] {"stage_name":"metric_collector","events_processed":14669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2933.8,"last_update":"2026-03-21T22:10:18.869749972Z"} +2026/03/21 22:10:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:10:18.878953075Z"} +2026/03/21 22:10:23 [transform_engine] {"stage_name":"transform_engine","events_processed":489,"events_dropped":0,"avg_latency_ms":601.5429727942972,"throughput_eps":0,"last_update":"2026-03-21T22:10:19.036882135Z"} +2026/03/21 22:10:23 [detection_layer] {"stage_name":"detection_layer","events_processed":488,"events_dropped":0,"avg_latency_ms":16.935166362255526,"throughput_eps":0,"last_update":"2026-03-21T22:10:18.96630224Z"} +2026/03/21 22:10:23 ───────────────────────────────────────────────── +2026/03/21 22:10:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:10:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:10:23.877896102Z"} +2026/03/21 22:10:28 [transform_engine] {"stage_name":"transform_engine","events_processed":489,"events_dropped":0,"avg_latency_ms":601.5429727942972,"throughput_eps":0,"last_update":"2026-03-21T22:10:23.965105768Z"} +2026/03/21 22:10:28 [detection_layer] {"stage_name":"detection_layer","events_processed":489,"events_dropped":0,"avg_latency_ms":17.42871788980442,"throughput_eps":0,"last_update":"2026-03-21T22:10:23.966398395Z"} +2026/03/21 22:10:28 [log_collector] {"stage_name":"log_collector","events_processed":23060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4612,"last_update":"2026-03-21T22:10:23.869487731Z"} +2026/03/21 22:10:28 [metric_collector] {"stage_name":"metric_collector","events_processed":14674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2934.8,"last_update":"2026-03-21T22:10:23.86971677Z"} +2026/03/21 22:10:28 ───────────────────────────────────────────────── +2026/03/21 22:10:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:10:33 [metric_collector] {"stage_name":"metric_collector","events_processed":14679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2935.8,"last_update":"2026-03-21T22:10:28.870570676Z"} +2026/03/21 22:10:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:10:28.879401366Z"} +2026/03/21 22:10:33 [transform_engine] {"stage_name":"transform_engine","events_processed":489,"events_dropped":0,"avg_latency_ms":601.5429727942972,"throughput_eps":0,"last_update":"2026-03-21T22:10:28.965755642Z"} +2026/03/21 22:10:33 [detection_layer] {"stage_name":"detection_layer","events_processed":489,"events_dropped":0,"avg_latency_ms":17.42871788980442,"throughput_eps":0,"last_update":"2026-03-21T22:10:28.965739071Z"} +2026/03/21 22:10:33 [log_collector] {"stage_name":"log_collector","events_processed":23060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4612,"last_update":"2026-03-21T22:10:33.869790698Z"} +2026/03/21 22:10:33 ───────────────────────────────────────────────── +2026/03/21 22:10:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:10:38 [log_collector] {"stage_name":"log_collector","events_processed":23060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4612,"last_update":"2026-03-21T22:10:33.869790698Z"} +2026/03/21 22:10:38 [metric_collector] {"stage_name":"metric_collector","events_processed":14684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2936.8,"last_update":"2026-03-21T22:10:33.870246041Z"} +2026/03/21 22:10:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5876,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:10:33.878952652Z"} +2026/03/21 22:10:38 [transform_engine] {"stage_name":"transform_engine","events_processed":489,"events_dropped":0,"avg_latency_ms":601.5429727942972,"throughput_eps":0,"last_update":"2026-03-21T22:10:33.965179386Z"} +2026/03/21 22:10:38 [detection_layer] {"stage_name":"detection_layer","events_processed":489,"events_dropped":0,"avg_latency_ms":17.42871788980442,"throughput_eps":0,"last_update":"2026-03-21T22:10:33.966403601Z"} +2026/03/21 22:10:38 ───────────────────────────────────────────────── +2026/03/21 22:10:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:10:43 [log_collector] {"stage_name":"log_collector","events_processed":23060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4612,"last_update":"2026-03-21T22:10:43.869856002Z"} +2026/03/21 22:10:43 [metric_collector] {"stage_name":"metric_collector","events_processed":14689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2937.8,"last_update":"2026-03-21T22:10:38.869890865Z"} +2026/03/21 22:10:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:10:38.877425341Z"} +2026/03/21 22:10:43 [transform_engine] {"stage_name":"transform_engine","events_processed":489,"events_dropped":0,"avg_latency_ms":601.5429727942972,"throughput_eps":0,"last_update":"2026-03-21T22:10:38.965651745Z"} +2026/03/21 22:10:43 [detection_layer] {"stage_name":"detection_layer","events_processed":489,"events_dropped":0,"avg_latency_ms":17.42871788980442,"throughput_eps":0,"last_update":"2026-03-21T22:10:38.965640503Z"} +2026/03/21 22:10:43 ───────────────────────────────────────────────── +Saved state: 14 clusters, 23061 messages, reason: none +2026/03/21 22:10:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:10:48 [metric_collector] {"stage_name":"metric_collector","events_processed":14694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2938.8,"last_update":"2026-03-21T22:10:43.870585088Z"} +2026/03/21 22:10:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:10:43.878845185Z"} +2026/03/21 22:10:48 [transform_engine] {"stage_name":"transform_engine","events_processed":489,"events_dropped":0,"avg_latency_ms":601.5429727942972,"throughput_eps":0,"last_update":"2026-03-21T22:10:43.966187995Z"} +2026/03/21 22:10:48 [detection_layer] {"stage_name":"detection_layer","events_processed":489,"events_dropped":0,"avg_latency_ms":17.42871788980442,"throughput_eps":0,"last_update":"2026-03-21T22:10:43.966175822Z"} +2026/03/21 22:10:48 [log_collector] {"stage_name":"log_collector","events_processed":23063,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4612.6,"last_update":"2026-03-21T22:10:48.869855452Z"} +2026/03/21 22:10:48 ───────────────────────────────────────────────── +2026/03/21 22:10:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:10:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:10:48.879406191Z"} +2026/03/21 22:10:53 [transform_engine] {"stage_name":"transform_engine","events_processed":490,"events_dropped":0,"avg_latency_ms":505.62382003543775,"throughput_eps":0,"last_update":"2026-03-21T22:10:49.087903583Z"} +2026/03/21 22:10:53 [detection_layer] {"stage_name":"detection_layer","events_processed":489,"events_dropped":0,"avg_latency_ms":17.42871788980442,"throughput_eps":0,"last_update":"2026-03-21T22:10:48.965942596Z"} +2026/03/21 22:10:53 [log_collector] {"stage_name":"log_collector","events_processed":23063,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4612.6,"last_update":"2026-03-21T22:10:53.870260578Z"} +2026/03/21 22:10:53 [metric_collector] {"stage_name":"metric_collector","events_processed":14699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2939.8,"last_update":"2026-03-21T22:10:48.870103938Z"} +2026/03/21 22:10:53 ───────────────────────────────────────────────── +2026/03/21 22:10:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:10:58 [transform_engine] {"stage_name":"transform_engine","events_processed":490,"events_dropped":0,"avg_latency_ms":505.62382003543775,"throughput_eps":0,"last_update":"2026-03-21T22:10:53.96636271Z"} +2026/03/21 22:10:58 [detection_layer] {"stage_name":"detection_layer","events_processed":490,"events_dropped":0,"avg_latency_ms":16.773761911843536,"throughput_eps":0,"last_update":"2026-03-21T22:10:53.96583022Z"} +2026/03/21 22:10:58 [log_collector] {"stage_name":"log_collector","events_processed":23063,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4612.6,"last_update":"2026-03-21T22:10:53.870260578Z"} +2026/03/21 22:10:58 [metric_collector] {"stage_name":"metric_collector","events_processed":14704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2940.8,"last_update":"2026-03-21T22:10:53.870900975Z"} +2026/03/21 22:10:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:10:53.87868567Z"} +2026/03/21 22:10:58 ───────────────────────────────────────────────── +2026/03/21 22:11:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:11:03 [log_collector] {"stage_name":"log_collector","events_processed":23074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4614.8,"last_update":"2026-03-21T22:10:58.869406151Z"} +2026/03/21 22:11:03 [metric_collector] {"stage_name":"metric_collector","events_processed":14709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2941.8,"last_update":"2026-03-21T22:10:58.869867344Z"} +2026/03/21 22:11:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5886,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:10:58.877752171Z"} +2026/03/21 22:11:03 [transform_engine] {"stage_name":"transform_engine","events_processed":490,"events_dropped":0,"avg_latency_ms":505.62382003543775,"throughput_eps":0,"last_update":"2026-03-21T22:10:58.965990708Z"} +2026/03/21 22:11:03 [detection_layer] {"stage_name":"detection_layer","events_processed":490,"events_dropped":0,"avg_latency_ms":16.773761911843536,"throughput_eps":0,"last_update":"2026-03-21T22:10:58.965935431Z"} +2026/03/21 22:11:03 ───────────────────────────────────────────────── +2026/03/21 22:11:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:11:08 [metric_collector] {"stage_name":"metric_collector","events_processed":14714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2942.8,"last_update":"2026-03-21T22:11:03.869877158Z"} +2026/03/21 22:11:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:11:03.876061286Z"} +2026/03/21 22:11:08 [transform_engine] {"stage_name":"transform_engine","events_processed":490,"events_dropped":0,"avg_latency_ms":505.62382003543775,"throughput_eps":0,"last_update":"2026-03-21T22:11:03.965175851Z"} +2026/03/21 22:11:08 [detection_layer] {"stage_name":"detection_layer","events_processed":490,"events_dropped":0,"avg_latency_ms":16.773761911843536,"throughput_eps":0,"last_update":"2026-03-21T22:11:03.965280852Z"} +2026/03/21 22:11:08 [log_collector] {"stage_name":"log_collector","events_processed":23088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4617.6,"last_update":"2026-03-21T22:11:03.869569208Z"} +2026/03/21 22:11:08 ───────────────────────────────────────────────── +2026/03/21 22:11:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:11:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:11:08.878295713Z"} +2026/03/21 22:11:13 [transform_engine] {"stage_name":"transform_engine","events_processed":490,"events_dropped":0,"avg_latency_ms":505.62382003543775,"throughput_eps":0,"last_update":"2026-03-21T22:11:08.965629656Z"} +2026/03/21 22:11:13 [detection_layer] {"stage_name":"detection_layer","events_processed":490,"events_dropped":0,"avg_latency_ms":16.773761911843536,"throughput_eps":0,"last_update":"2026-03-21T22:11:08.965657258Z"} +2026/03/21 22:11:13 [log_collector] {"stage_name":"log_collector","events_processed":23090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4618,"last_update":"2026-03-21T22:11:08.869726966Z"} +2026/03/21 22:11:13 [metric_collector] {"stage_name":"metric_collector","events_processed":14719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2943.8,"last_update":"2026-03-21T22:11:08.869952818Z"} +2026/03/21 22:11:13 ───────────────────────────────────────────────── +2026/03/21 22:11:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:11:18 [log_collector] {"stage_name":"log_collector","events_processed":23104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4620.8,"last_update":"2026-03-21T22:11:13.870102281Z"} +2026/03/21 22:11:18 [metric_collector] {"stage_name":"metric_collector","events_processed":14724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2944.8,"last_update":"2026-03-21T22:11:13.871067199Z"} +2026/03/21 22:11:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5892,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:11:13.879273722Z"} +2026/03/21 22:11:18 [transform_engine] {"stage_name":"transform_engine","events_processed":490,"events_dropped":0,"avg_latency_ms":505.62382003543775,"throughput_eps":0,"last_update":"2026-03-21T22:11:13.965470657Z"} +2026/03/21 22:11:18 [detection_layer] {"stage_name":"detection_layer","events_processed":490,"events_dropped":0,"avg_latency_ms":16.773761911843536,"throughput_eps":0,"last_update":"2026-03-21T22:11:13.965457631Z"} +2026/03/21 22:11:18 ───────────────────────────────────────────────── +2026/03/21 22:11:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:11:23 [detection_layer] {"stage_name":"detection_layer","events_processed":490,"events_dropped":0,"avg_latency_ms":16.773761911843536,"throughput_eps":0,"last_update":"2026-03-21T22:11:18.966187684Z"} +2026/03/21 22:11:23 [log_collector] {"stage_name":"log_collector","events_processed":23104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4620.8,"last_update":"2026-03-21T22:11:18.869418384Z"} +2026/03/21 22:11:23 [metric_collector] {"stage_name":"metric_collector","events_processed":14729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2945.8,"last_update":"2026-03-21T22:11:18.869892182Z"} +2026/03/21 22:11:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:11:18.878852949Z"} +2026/03/21 22:11:23 [transform_engine] {"stage_name":"transform_engine","events_processed":490,"events_dropped":0,"avg_latency_ms":505.62382003543775,"throughput_eps":0,"last_update":"2026-03-21T22:11:18.966200028Z"} +2026/03/21 22:11:23 ───────────────────────────────────────────────── +2026/03/21 22:11:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:11:28 [transform_engine] {"stage_name":"transform_engine","events_processed":491,"events_dropped":0,"avg_latency_ms":427.7703252283502,"throughput_eps":0,"last_update":"2026-03-21T22:11:23.965245711Z"} +2026/03/21 22:11:28 [detection_layer] {"stage_name":"detection_layer","events_processed":491,"events_dropped":0,"avg_latency_ms":16.98005012947483,"throughput_eps":0,"last_update":"2026-03-21T22:11:23.965257043Z"} +2026/03/21 22:11:28 [log_collector] {"stage_name":"log_collector","events_processed":23104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4620.8,"last_update":"2026-03-21T22:11:23.869870372Z"} +2026/03/21 22:11:28 [metric_collector] {"stage_name":"metric_collector","events_processed":14734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2946.8,"last_update":"2026-03-21T22:11:23.870219902Z"} +2026/03/21 22:11:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5896,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:11:23.879053116Z"} +2026/03/21 22:11:28 ───────────────────────────────────────────────── +2026/03/21 22:11:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:11:33 [transform_engine] {"stage_name":"transform_engine","events_processed":491,"events_dropped":0,"avg_latency_ms":427.7703252283502,"throughput_eps":0,"last_update":"2026-03-21T22:11:28.965340766Z"} +2026/03/21 22:11:33 [detection_layer] {"stage_name":"detection_layer","events_processed":491,"events_dropped":0,"avg_latency_ms":16.98005012947483,"throughput_eps":0,"last_update":"2026-03-21T22:11:28.965303524Z"} +2026/03/21 22:11:33 [log_collector] {"stage_name":"log_collector","events_processed":23104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4620.8,"last_update":"2026-03-21T22:11:28.869547928Z"} +2026/03/21 22:11:33 [metric_collector] {"stage_name":"metric_collector","events_processed":14739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2947.8,"last_update":"2026-03-21T22:11:28.869997599Z"} +2026/03/21 22:11:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5898,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:11:28.8780938Z"} +2026/03/21 22:11:33 ───────────────────────────────────────────────── +2026/03/21 22:11:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:11:38 [detection_layer] {"stage_name":"detection_layer","events_processed":491,"events_dropped":0,"avg_latency_ms":16.98005012947483,"throughput_eps":0,"last_update":"2026-03-21T22:11:33.966054354Z"} +2026/03/21 22:11:38 [log_collector] {"stage_name":"log_collector","events_processed":23104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4620.8,"last_update":"2026-03-21T22:11:33.870188616Z"} +2026/03/21 22:11:38 [metric_collector] {"stage_name":"metric_collector","events_processed":14744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2948.8,"last_update":"2026-03-21T22:11:33.870750002Z"} +2026/03/21 22:11:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5900,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:11:33.878877563Z"} +2026/03/21 22:11:38 [transform_engine] {"stage_name":"transform_engine","events_processed":491,"events_dropped":0,"avg_latency_ms":427.7703252283502,"throughput_eps":0,"last_update":"2026-03-21T22:11:33.966090694Z"} +2026/03/21 22:11:38 ───────────────────────────────────────────────── +2026/03/21 22:11:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:11:43 [detection_layer] {"stage_name":"detection_layer","events_processed":491,"events_dropped":0,"avg_latency_ms":16.98005012947483,"throughput_eps":0,"last_update":"2026-03-21T22:11:38.965603352Z"} +2026/03/21 22:11:43 [log_collector] {"stage_name":"log_collector","events_processed":23104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4620.8,"last_update":"2026-03-21T22:11:38.869414194Z"} +2026/03/21 22:11:43 [metric_collector] {"stage_name":"metric_collector","events_processed":14748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2949.6,"last_update":"2026-03-21T22:11:38.869550936Z"} +2026/03/21 22:11:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:11:38.878293025Z"} +2026/03/21 22:11:43 [transform_engine] {"stage_name":"transform_engine","events_processed":491,"events_dropped":0,"avg_latency_ms":427.7703252283502,"throughput_eps":0,"last_update":"2026-03-21T22:11:38.96549789Z"} +2026/03/21 22:11:43 ───────────────────────────────────────────────── +2026/03/21 22:11:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:11:48 [log_collector] {"stage_name":"log_collector","events_processed":23104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4620.8,"last_update":"2026-03-21T22:11:43.869896722Z"} +2026/03/21 22:11:48 [metric_collector] {"stage_name":"metric_collector","events_processed":14753,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2950.6,"last_update":"2026-03-21T22:11:43.869974771Z"} +2026/03/21 22:11:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:11:43.879428584Z"} +2026/03/21 22:11:48 [transform_engine] {"stage_name":"transform_engine","events_processed":491,"events_dropped":0,"avg_latency_ms":427.7703252283502,"throughput_eps":0,"last_update":"2026-03-21T22:11:43.965654793Z"} +2026/03/21 22:11:48 [detection_layer] {"stage_name":"detection_layer","events_processed":491,"events_dropped":0,"avg_latency_ms":16.98005012947483,"throughput_eps":0,"last_update":"2026-03-21T22:11:43.965631168Z"} +2026/03/21 22:11:48 ───────────────────────────────────────────────── +2026/03/21 22:11:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:11:53 [log_collector] {"stage_name":"log_collector","events_processed":23104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4620.8,"last_update":"2026-03-21T22:11:48.870508224Z"} +2026/03/21 22:11:53 [metric_collector] {"stage_name":"metric_collector","events_processed":14758,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2951.6,"last_update":"2026-03-21T22:11:48.870475902Z"} +2026/03/21 22:11:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5906,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:11:48.880046508Z"} +2026/03/21 22:11:53 [transform_engine] {"stage_name":"transform_engine","events_processed":491,"events_dropped":0,"avg_latency_ms":427.7703252283502,"throughput_eps":0,"last_update":"2026-03-21T22:11:48.965159545Z"} +2026/03/21 22:11:53 [detection_layer] {"stage_name":"detection_layer","events_processed":491,"events_dropped":0,"avg_latency_ms":16.98005012947483,"throughput_eps":0,"last_update":"2026-03-21T22:11:48.965279715Z"} +2026/03/21 22:11:53 ───────────────────────────────────────────────── +2026/03/21 22:11:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:11:58 [log_collector] {"stage_name":"log_collector","events_processed":23104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4620.8,"last_update":"2026-03-21T22:11:53.869601709Z"} +2026/03/21 22:11:58 [metric_collector] {"stage_name":"metric_collector","events_processed":14764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2952.8,"last_update":"2026-03-21T22:11:53.870207048Z"} +2026/03/21 22:11:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5908,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:11:53.878795022Z"} +2026/03/21 22:11:58 [transform_engine] {"stage_name":"transform_engine","events_processed":492,"events_dropped":0,"avg_latency_ms":767.0681327826802,"throughput_eps":0,"last_update":"2026-03-21T22:11:53.966183439Z"} +2026/03/21 22:11:58 [detection_layer] {"stage_name":"detection_layer","events_processed":492,"events_dropped":0,"avg_latency_ms":18.207337703579864,"throughput_eps":0,"last_update":"2026-03-21T22:11:53.96616865Z"} +2026/03/21 22:11:58 ───────────────────────────────────────────────── +2026/03/21 22:12:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:12:03 [detection_layer] {"stage_name":"detection_layer","events_processed":492,"events_dropped":0,"avg_latency_ms":18.207337703579864,"throughput_eps":0,"last_update":"2026-03-21T22:11:58.966103857Z"} +2026/03/21 22:12:03 [log_collector] {"stage_name":"log_collector","events_processed":23104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4620.8,"last_update":"2026-03-21T22:11:58.86995208Z"} +2026/03/21 22:12:03 [metric_collector] {"stage_name":"metric_collector","events_processed":14769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2953.8,"last_update":"2026-03-21T22:11:58.87030139Z"} +2026/03/21 22:12:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:11:58.878753023Z"} +2026/03/21 22:12:03 [transform_engine] {"stage_name":"transform_engine","events_processed":492,"events_dropped":0,"avg_latency_ms":767.0681327826802,"throughput_eps":0,"last_update":"2026-03-21T22:11:58.966115048Z"} +2026/03/21 22:12:03 ───────────────────────────────────────────────── +2026/03/21 22:12:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:12:08 [log_collector] {"stage_name":"log_collector","events_processed":23104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4620.8,"last_update":"2026-03-21T22:12:08.869760737Z"} +2026/03/21 22:12:08 [metric_collector] {"stage_name":"metric_collector","events_processed":14774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2954.8,"last_update":"2026-03-21T22:12:03.869884132Z"} +2026/03/21 22:12:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5912,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:12:03.878024799Z"} +2026/03/21 22:12:08 [transform_engine] {"stage_name":"transform_engine","events_processed":492,"events_dropped":0,"avg_latency_ms":767.0681327826802,"throughput_eps":0,"last_update":"2026-03-21T22:12:03.965189115Z"} +2026/03/21 22:12:08 [detection_layer] {"stage_name":"detection_layer","events_processed":492,"events_dropped":0,"avg_latency_ms":18.207337703579864,"throughput_eps":0,"last_update":"2026-03-21T22:12:03.966338036Z"} +2026/03/21 22:12:08 ───────────────────────────────────────────────── +2026/03/21 22:12:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:12:13 [log_collector] {"stage_name":"log_collector","events_processed":23104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4620.8,"last_update":"2026-03-21T22:12:08.869760737Z"} +2026/03/21 22:12:13 [metric_collector] {"stage_name":"metric_collector","events_processed":14779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2955.8,"last_update":"2026-03-21T22:12:08.870270364Z"} +2026/03/21 22:12:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:12:08.878853288Z"} +2026/03/21 22:12:13 [transform_engine] {"stage_name":"transform_engine","events_processed":492,"events_dropped":0,"avg_latency_ms":767.0681327826802,"throughput_eps":0,"last_update":"2026-03-21T22:12:08.966043153Z"} +2026/03/21 22:12:13 [detection_layer] {"stage_name":"detection_layer","events_processed":492,"events_dropped":0,"avg_latency_ms":18.207337703579864,"throughput_eps":0,"last_update":"2026-03-21T22:12:08.96603166Z"} +2026/03/21 22:12:13 ───────────────────────────────────────────────── +Saved state: 14 clusters, 23105 messages, reason: none +2026/03/21 22:12:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:12:18 [transform_engine] {"stage_name":"transform_engine","events_processed":492,"events_dropped":0,"avg_latency_ms":767.0681327826802,"throughput_eps":0,"last_update":"2026-03-21T22:12:13.965682972Z"} +2026/03/21 22:12:18 [detection_layer] {"stage_name":"detection_layer","events_processed":492,"events_dropped":0,"avg_latency_ms":18.207337703579864,"throughput_eps":0,"last_update":"2026-03-21T22:12:13.965701358Z"} +2026/03/21 22:12:18 [log_collector] {"stage_name":"log_collector","events_processed":23104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4620.8,"last_update":"2026-03-21T22:12:13.87037805Z"} +2026/03/21 22:12:18 [metric_collector] {"stage_name":"metric_collector","events_processed":14784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2956.8,"last_update":"2026-03-21T22:12:13.870813674Z"} +2026/03/21 22:12:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:12:13.879479738Z"} +2026/03/21 22:12:18 ───────────────────────────────────────────────── +2026/03/21 22:12:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:12:23 [transform_engine] {"stage_name":"transform_engine","events_processed":492,"events_dropped":0,"avg_latency_ms":767.0681327826802,"throughput_eps":0,"last_update":"2026-03-21T22:12:18.965626014Z"} +2026/03/21 22:12:23 [detection_layer] {"stage_name":"detection_layer","events_processed":492,"events_dropped":0,"avg_latency_ms":18.207337703579864,"throughput_eps":0,"last_update":"2026-03-21T22:12:18.965971827Z"} +2026/03/21 22:12:23 [log_collector] {"stage_name":"log_collector","events_processed":23109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4621.8,"last_update":"2026-03-21T22:12:18.869592016Z"} +2026/03/21 22:12:23 [metric_collector] {"stage_name":"metric_collector","events_processed":14788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2957.6,"last_update":"2026-03-21T22:12:18.869601294Z"} +2026/03/21 22:12:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5918,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:12:18.882445151Z"} +2026/03/21 22:12:23 ───────────────────────────────────────────────── +2026/03/21 22:12:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:12:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5920,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:12:23.876614804Z"} +2026/03/21 22:12:28 [transform_engine] {"stage_name":"transform_engine","events_processed":493,"events_dropped":0,"avg_latency_ms":864.4211310261443,"throughput_eps":0,"last_update":"2026-03-21T22:12:23.965842191Z"} +2026/03/21 22:12:28 [detection_layer] {"stage_name":"detection_layer","events_processed":493,"events_dropped":0,"avg_latency_ms":17.840058962863893,"throughput_eps":0,"last_update":"2026-03-21T22:12:23.965804489Z"} +2026/03/21 22:12:28 [log_collector] {"stage_name":"log_collector","events_processed":23109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4621.8,"last_update":"2026-03-21T22:12:23.869979511Z"} +2026/03/21 22:12:28 [metric_collector] {"stage_name":"metric_collector","events_processed":14794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2958.8,"last_update":"2026-03-21T22:12:23.870266571Z"} +2026/03/21 22:12:28 ───────────────────────────────────────────────── +2026/03/21 22:12:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:12:33 [log_collector] {"stage_name":"log_collector","events_processed":23109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4621.8,"last_update":"2026-03-21T22:12:28.869828635Z"} +2026/03/21 22:12:33 [metric_collector] {"stage_name":"metric_collector","events_processed":14804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2960.8,"last_update":"2026-03-21T22:12:33.86970363Z"} +2026/03/21 22:12:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:12:28.881115941Z"} +2026/03/21 22:12:33 [transform_engine] {"stage_name":"transform_engine","events_processed":493,"events_dropped":0,"avg_latency_ms":864.4211310261443,"throughput_eps":0,"last_update":"2026-03-21T22:12:28.965264498Z"} +2026/03/21 22:12:33 [detection_layer] {"stage_name":"detection_layer","events_processed":493,"events_dropped":0,"avg_latency_ms":17.840058962863893,"throughput_eps":0,"last_update":"2026-03-21T22:12:28.965289596Z"} +2026/03/21 22:12:33 ───────────────────────────────────────────────── +2026/03/21 22:12:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:12:38 [metric_collector] {"stage_name":"metric_collector","events_processed":14804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2960.8,"last_update":"2026-03-21T22:12:33.86970363Z"} +2026/03/21 22:12:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:12:33.878246067Z"} +2026/03/21 22:12:38 [transform_engine] {"stage_name":"transform_engine","events_processed":493,"events_dropped":0,"avg_latency_ms":864.4211310261443,"throughput_eps":0,"last_update":"2026-03-21T22:12:33.965492379Z"} +2026/03/21 22:12:38 [detection_layer] {"stage_name":"detection_layer","events_processed":493,"events_dropped":0,"avg_latency_ms":17.840058962863893,"throughput_eps":0,"last_update":"2026-03-21T22:12:33.965469926Z"} +2026/03/21 22:12:38 [log_collector] {"stage_name":"log_collector","events_processed":23109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4621.8,"last_update":"2026-03-21T22:12:33.869851423Z"} +2026/03/21 22:12:38 ───────────────────────────────────────────────── +2026/03/21 22:12:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:12:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:12:38.881395826Z"} +2026/03/21 22:12:43 [transform_engine] {"stage_name":"transform_engine","events_processed":493,"events_dropped":0,"avg_latency_ms":864.4211310261443,"throughput_eps":0,"last_update":"2026-03-21T22:12:38.965310123Z"} +2026/03/21 22:12:43 [detection_layer] {"stage_name":"detection_layer","events_processed":493,"events_dropped":0,"avg_latency_ms":17.840058962863893,"throughput_eps":0,"last_update":"2026-03-21T22:12:38.965281699Z"} +2026/03/21 22:12:43 [log_collector] {"stage_name":"log_collector","events_processed":23109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4621.8,"last_update":"2026-03-21T22:12:38.869715116Z"} +2026/03/21 22:12:43 [metric_collector] {"stage_name":"metric_collector","events_processed":14809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2961.8,"last_update":"2026-03-21T22:12:38.869657847Z"} +2026/03/21 22:12:43 ───────────────────────────────────────────────── +2026/03/21 22:12:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:12:48 [log_collector] {"stage_name":"log_collector","events_processed":23109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4621.8,"last_update":"2026-03-21T22:12:43.869696546Z"} +2026/03/21 22:12:48 [metric_collector] {"stage_name":"metric_collector","events_processed":14814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2962.8,"last_update":"2026-03-21T22:12:43.870380987Z"} +2026/03/21 22:12:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:12:43.880238032Z"} +2026/03/21 22:12:48 [transform_engine] {"stage_name":"transform_engine","events_processed":493,"events_dropped":0,"avg_latency_ms":864.4211310261443,"throughput_eps":0,"last_update":"2026-03-21T22:12:43.965167665Z"} +2026/03/21 22:12:48 [detection_layer] {"stage_name":"detection_layer","events_processed":493,"events_dropped":0,"avg_latency_ms":17.840058962863893,"throughput_eps":0,"last_update":"2026-03-21T22:12:43.965258088Z"} +2026/03/21 22:12:48 ───────────────────────────────────────────────── +2026/03/21 22:12:49 [ANOMALY] time=2026-03-21T22:12:49Z score=0.8551 method=SEAD details=MAD!:w=0.25,s=0.89 RRCF-fast:w=0.20,s=0.89 RRCF-mid:w=0.17,s=0.94 RRCF-slow:w=0.15,s=0.87 COPOD!:w=0.24,s=0.73 +2026/03/21 22:12:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:12:53 [log_collector] {"stage_name":"log_collector","events_processed":23109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4621.8,"last_update":"2026-03-21T22:12:48.869443537Z"} +2026/03/21 22:12:53 [metric_collector] {"stage_name":"metric_collector","events_processed":14819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2963.8,"last_update":"2026-03-21T22:12:48.869620426Z"} +2026/03/21 22:12:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5930,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:12:48.876468235Z"} +2026/03/21 22:12:53 [transform_engine] {"stage_name":"transform_engine","events_processed":493,"events_dropped":0,"avg_latency_ms":864.4211310261443,"throughput_eps":0,"last_update":"2026-03-21T22:12:48.965665224Z"} +2026/03/21 22:12:53 [detection_layer] {"stage_name":"detection_layer","events_processed":493,"events_dropped":0,"avg_latency_ms":17.840058962863893,"throughput_eps":0,"last_update":"2026-03-21T22:12:48.965636149Z"} +2026/03/21 22:12:53 ───────────────────────────────────────────────── +2026/03/21 22:12:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:12:58 [log_collector] {"stage_name":"log_collector","events_processed":23109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4621.8,"last_update":"2026-03-21T22:12:53.869800568Z"} +2026/03/21 22:12:58 [metric_collector] {"stage_name":"metric_collector","events_processed":14824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2964.8,"last_update":"2026-03-21T22:12:53.870035548Z"} +2026/03/21 22:12:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:12:53.876554087Z"} +2026/03/21 22:12:58 [transform_engine] {"stage_name":"transform_engine","events_processed":494,"events_dropped":0,"avg_latency_ms":705.8628992209154,"throughput_eps":0,"last_update":"2026-03-21T22:12:53.965749472Z"} +2026/03/21 22:12:58 [detection_layer] {"stage_name":"detection_layer","events_processed":494,"events_dropped":0,"avg_latency_ms":16.663611170291116,"throughput_eps":0,"last_update":"2026-03-21T22:12:53.965740285Z"} +2026/03/21 22:12:58 ───────────────────────────────────────────────── +2026/03/21 22:13:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:13:03 [metric_collector] {"stage_name":"metric_collector","events_processed":14829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2965.8,"last_update":"2026-03-21T22:12:58.870758569Z"} +2026/03/21 22:13:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:12:58.878112799Z"} +2026/03/21 22:13:03 [transform_engine] {"stage_name":"transform_engine","events_processed":494,"events_dropped":0,"avg_latency_ms":705.8628992209154,"throughput_eps":0,"last_update":"2026-03-21T22:12:58.965478139Z"} +2026/03/21 22:13:03 [detection_layer] {"stage_name":"detection_layer","events_processed":494,"events_dropped":0,"avg_latency_ms":16.663611170291116,"throughput_eps":0,"last_update":"2026-03-21T22:12:58.965459142Z"} +2026/03/21 22:13:03 [log_collector] {"stage_name":"log_collector","events_processed":23118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4623.6,"last_update":"2026-03-21T22:12:58.870475007Z"} +2026/03/21 22:13:03 ───────────────────────────────────────────────── +2026/03/21 22:13:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:13:08 [log_collector] {"stage_name":"log_collector","events_processed":23120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4624,"last_update":"2026-03-21T22:13:03.869651297Z"} +2026/03/21 22:13:08 [metric_collector] {"stage_name":"metric_collector","events_processed":14833,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2966.6,"last_update":"2026-03-21T22:13:03.869596973Z"} +2026/03/21 22:13:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:13:03.87798316Z"} +2026/03/21 22:13:08 [transform_engine] {"stage_name":"transform_engine","events_processed":494,"events_dropped":0,"avg_latency_ms":705.8628992209154,"throughput_eps":0,"last_update":"2026-03-21T22:13:03.965174987Z"} +2026/03/21 22:13:08 [detection_layer] {"stage_name":"detection_layer","events_processed":494,"events_dropped":0,"avg_latency_ms":16.663611170291116,"throughput_eps":0,"last_update":"2026-03-21T22:13:03.965293584Z"} +2026/03/21 22:13:08 ───────────────────────────────────────────────── +2026/03/21 22:13:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:13:13 [log_collector] {"stage_name":"log_collector","events_processed":23185,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4637,"last_update":"2026-03-21T22:13:08.869504466Z"} +2026/03/21 22:13:13 [metric_collector] {"stage_name":"metric_collector","events_processed":14839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2967.8,"last_update":"2026-03-21T22:13:08.86983057Z"} +2026/03/21 22:13:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:13:08.875781481Z"} +2026/03/21 22:13:13 [transform_engine] {"stage_name":"transform_engine","events_processed":494,"events_dropped":0,"avg_latency_ms":705.8628992209154,"throughput_eps":0,"last_update":"2026-03-21T22:13:08.966003714Z"} +2026/03/21 22:13:13 [detection_layer] {"stage_name":"detection_layer","events_processed":494,"events_dropped":0,"avg_latency_ms":16.663611170291116,"throughput_eps":0,"last_update":"2026-03-21T22:13:08.966040324Z"} +2026/03/21 22:13:13 ───────────────────────────────────────────────── +Saved state: 14 clusters, 23407 messages, reason: none +2026/03/21 22:13:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:13:18 [detection_layer] {"stage_name":"detection_layer","events_processed":494,"events_dropped":0,"avg_latency_ms":16.663611170291116,"throughput_eps":0,"last_update":"2026-03-21T22:13:13.965732284Z"} +2026/03/21 22:13:18 [log_collector] {"stage_name":"log_collector","events_processed":23358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4671.6,"last_update":"2026-03-21T22:13:13.870058708Z"} +2026/03/21 22:13:18 [metric_collector] {"stage_name":"metric_collector","events_processed":14844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2968.8,"last_update":"2026-03-21T22:13:13.870389151Z"} +2026/03/21 22:13:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5940,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:13:13.877004886Z"} +2026/03/21 22:13:18 [transform_engine] {"stage_name":"transform_engine","events_processed":494,"events_dropped":0,"avg_latency_ms":705.8628992209154,"throughput_eps":0,"last_update":"2026-03-21T22:13:13.965741713Z"} +2026/03/21 22:13:18 ───────────────────────────────────────────────── +2026/03/21 22:13:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:13:23 [log_collector] {"stage_name":"log_collector","events_processed":23481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4696.2,"last_update":"2026-03-21T22:13:18.870111792Z"} +2026/03/21 22:13:23 [metric_collector] {"stage_name":"metric_collector","events_processed":14849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2969.8,"last_update":"2026-03-21T22:13:18.870345369Z"} +2026/03/21 22:13:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:13:18.87940688Z"} +2026/03/21 22:13:23 [transform_engine] {"stage_name":"transform_engine","events_processed":495,"events_dropped":0,"avg_latency_ms":587.8071799767324,"throughput_eps":0,"last_update":"2026-03-21T22:13:19.081191429Z"} +2026/03/21 22:13:23 [detection_layer] {"stage_name":"detection_layer","events_processed":494,"events_dropped":0,"avg_latency_ms":16.663611170291116,"throughput_eps":0,"last_update":"2026-03-21T22:13:18.965593621Z"} +2026/03/21 22:13:23 ───────────────────────────────────────────────── +2026/03/21 22:13:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:13:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:13:23.878859064Z"} +2026/03/21 22:13:28 [transform_engine] {"stage_name":"transform_engine","events_processed":495,"events_dropped":0,"avg_latency_ms":587.8071799767324,"throughput_eps":0,"last_update":"2026-03-21T22:13:23.966069746Z"} +2026/03/21 22:13:28 [detection_layer] {"stage_name":"detection_layer","events_processed":495,"events_dropped":0,"avg_latency_ms":17.089708336232896,"throughput_eps":0,"last_update":"2026-03-21T22:13:23.966058145Z"} +2026/03/21 22:13:28 [log_collector] {"stage_name":"log_collector","events_processed":23481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4696.2,"last_update":"2026-03-21T22:13:28.869401661Z"} +2026/03/21 22:13:28 [metric_collector] {"stage_name":"metric_collector","events_processed":14854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2970.8,"last_update":"2026-03-21T22:13:23.870645358Z"} +2026/03/21 22:13:28 ───────────────────────────────────────────────── +2026/03/21 22:13:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:13:33 [transform_engine] {"stage_name":"transform_engine","events_processed":495,"events_dropped":0,"avg_latency_ms":587.8071799767324,"throughput_eps":0,"last_update":"2026-03-21T22:13:28.96567181Z"} +2026/03/21 22:13:33 [detection_layer] {"stage_name":"detection_layer","events_processed":495,"events_dropped":0,"avg_latency_ms":17.089708336232896,"throughput_eps":0,"last_update":"2026-03-21T22:13:28.96565673Z"} +2026/03/21 22:13:33 [log_collector] {"stage_name":"log_collector","events_processed":23481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4696.2,"last_update":"2026-03-21T22:13:33.869405156Z"} +2026/03/21 22:13:33 [metric_collector] {"stage_name":"metric_collector","events_processed":14859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2971.8,"last_update":"2026-03-21T22:13:28.869854929Z"} +2026/03/21 22:13:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:13:28.879358957Z"} +2026/03/21 22:13:33 ───────────────────────────────────────────────── +2026/03/21 22:13:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:13:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:13:33.876397702Z"} +2026/03/21 22:13:38 [transform_engine] {"stage_name":"transform_engine","events_processed":495,"events_dropped":0,"avg_latency_ms":587.8071799767324,"throughput_eps":0,"last_update":"2026-03-21T22:13:33.965584481Z"} +2026/03/21 22:13:38 [detection_layer] {"stage_name":"detection_layer","events_processed":495,"events_dropped":0,"avg_latency_ms":17.089708336232896,"throughput_eps":0,"last_update":"2026-03-21T22:13:33.965573811Z"} +2026/03/21 22:13:38 [log_collector] {"stage_name":"log_collector","events_processed":23481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4696.2,"last_update":"2026-03-21T22:13:33.869405156Z"} +2026/03/21 22:13:38 [metric_collector] {"stage_name":"metric_collector","events_processed":14864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2972.8,"last_update":"2026-03-21T22:13:33.869697476Z"} +2026/03/21 22:13:38 ───────────────────────────────────────────────── +2026/03/21 22:13:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:13:43 [detection_layer] {"stage_name":"detection_layer","events_processed":495,"events_dropped":0,"avg_latency_ms":17.089708336232896,"throughput_eps":0,"last_update":"2026-03-21T22:13:38.966186744Z"} +2026/03/21 22:13:43 [log_collector] {"stage_name":"log_collector","events_processed":23481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4696.2,"last_update":"2026-03-21T22:13:43.86942863Z"} +2026/03/21 22:13:43 [metric_collector] {"stage_name":"metric_collector","events_processed":14869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2973.8,"last_update":"2026-03-21T22:13:38.869842532Z"} +2026/03/21 22:13:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:13:38.879042017Z"} +2026/03/21 22:13:43 [transform_engine] {"stage_name":"transform_engine","events_processed":495,"events_dropped":0,"avg_latency_ms":587.8071799767324,"throughput_eps":0,"last_update":"2026-03-21T22:13:38.965101655Z"} +2026/03/21 22:13:43 ───────────────────────────────────────────────── +2026/03/21 22:13:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:13:48 [log_collector] {"stage_name":"log_collector","events_processed":23481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4696.2,"last_update":"2026-03-21T22:13:43.86942863Z"} +2026/03/21 22:13:48 [metric_collector] {"stage_name":"metric_collector","events_processed":14874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2974.8,"last_update":"2026-03-21T22:13:43.870026275Z"} +2026/03/21 22:13:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:13:43.878931105Z"} +2026/03/21 22:13:48 [transform_engine] {"stage_name":"transform_engine","events_processed":495,"events_dropped":0,"avg_latency_ms":587.8071799767324,"throughput_eps":0,"last_update":"2026-03-21T22:13:43.966147549Z"} +2026/03/21 22:13:48 [detection_layer] {"stage_name":"detection_layer","events_processed":495,"events_dropped":0,"avg_latency_ms":17.089708336232896,"throughput_eps":0,"last_update":"2026-03-21T22:13:43.96613255Z"} +2026/03/21 22:13:48 ───────────────────────────────────────────────── +2026/03/21 22:13:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:13:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:13:48.878769878Z"} +2026/03/21 22:13:53 [transform_engine] {"stage_name":"transform_engine","events_processed":496,"events_dropped":0,"avg_latency_ms":484.62477398138594,"throughput_eps":0,"last_update":"2026-03-21T22:13:49.038096933Z"} +2026/03/21 22:13:53 [detection_layer] {"stage_name":"detection_layer","events_processed":495,"events_dropped":0,"avg_latency_ms":17.089708336232896,"throughput_eps":0,"last_update":"2026-03-21T22:13:48.966183058Z"} +2026/03/21 22:13:53 [log_collector] {"stage_name":"log_collector","events_processed":23481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4696.2,"last_update":"2026-03-21T22:13:53.869910359Z"} +2026/03/21 22:13:53 [metric_collector] {"stage_name":"metric_collector","events_processed":14879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2975.8,"last_update":"2026-03-21T22:13:48.869830913Z"} +2026/03/21 22:13:53 ───────────────────────────────────────────────── +2026/03/21 22:13:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:13:58 [log_collector] {"stage_name":"log_collector","events_processed":23481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4696.2,"last_update":"2026-03-21T22:13:53.869910359Z"} +2026/03/21 22:13:58 [metric_collector] {"stage_name":"metric_collector","events_processed":14884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2976.8,"last_update":"2026-03-21T22:13:53.87056369Z"} +2026/03/21 22:13:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:13:53.879457991Z"} +2026/03/21 22:13:58 [transform_engine] {"stage_name":"transform_engine","events_processed":496,"events_dropped":0,"avg_latency_ms":484.62477398138594,"throughput_eps":0,"last_update":"2026-03-21T22:13:53.965638138Z"} +2026/03/21 22:13:58 [detection_layer] {"stage_name":"detection_layer","events_processed":496,"events_dropped":0,"avg_latency_ms":18.020600268986318,"throughput_eps":0,"last_update":"2026-03-21T22:13:53.965627418Z"} +2026/03/21 22:13:58 ───────────────────────────────────────────────── +2026/03/21 22:14:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:14:03 [log_collector] {"stage_name":"log_collector","events_processed":23481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4696.2,"last_update":"2026-03-21T22:14:03.869405667Z"} +2026/03/21 22:14:03 [metric_collector] {"stage_name":"metric_collector","events_processed":14889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2977.8,"last_update":"2026-03-21T22:13:58.870811762Z"} +2026/03/21 22:14:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5958,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:13:58.878967067Z"} +2026/03/21 22:14:03 [transform_engine] {"stage_name":"transform_engine","events_processed":496,"events_dropped":0,"avg_latency_ms":484.62477398138594,"throughput_eps":0,"last_update":"2026-03-21T22:13:58.965167333Z"} +2026/03/21 22:14:03 [detection_layer] {"stage_name":"detection_layer","events_processed":496,"events_dropped":0,"avg_latency_ms":18.020600268986318,"throughput_eps":0,"last_update":"2026-03-21T22:13:58.965342238Z"} +2026/03/21 22:14:03 ───────────────────────────────────────────────── +2026/03/21 22:14:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:14:08 [log_collector] {"stage_name":"log_collector","events_processed":23481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4696.2,"last_update":"2026-03-21T22:14:03.869405667Z"} +2026/03/21 22:14:08 [metric_collector] {"stage_name":"metric_collector","events_processed":14894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2978.8,"last_update":"2026-03-21T22:14:03.869947054Z"} +2026/03/21 22:14:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:14:03.878210325Z"} +2026/03/21 22:14:08 [transform_engine] {"stage_name":"transform_engine","events_processed":496,"events_dropped":0,"avg_latency_ms":484.62477398138594,"throughput_eps":0,"last_update":"2026-03-21T22:14:03.965493094Z"} +2026/03/21 22:14:08 [detection_layer] {"stage_name":"detection_layer","events_processed":496,"events_dropped":0,"avg_latency_ms":18.020600268986318,"throughput_eps":0,"last_update":"2026-03-21T22:14:03.965398584Z"} +2026/03/21 22:14:08 ───────────────────────────────────────────────── +2026/03/21 22:14:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:14:13 [log_collector] {"stage_name":"log_collector","events_processed":23484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4696.8,"last_update":"2026-03-21T22:14:08.869484168Z"} +2026/03/21 22:14:13 [metric_collector] {"stage_name":"metric_collector","events_processed":14899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2979.8,"last_update":"2026-03-21T22:14:08.869598658Z"} +2026/03/21 22:14:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5962,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:14:08.876779956Z"} +2026/03/21 22:14:13 [transform_engine] {"stage_name":"transform_engine","events_processed":496,"events_dropped":0,"avg_latency_ms":484.62477398138594,"throughput_eps":0,"last_update":"2026-03-21T22:14:08.966013051Z"} +2026/03/21 22:14:13 [detection_layer] {"stage_name":"detection_layer","events_processed":496,"events_dropped":0,"avg_latency_ms":18.020600268986318,"throughput_eps":0,"last_update":"2026-03-21T22:14:08.966037198Z"} +2026/03/21 22:14:13 ───────────────────────────────────────────────── +Saved state: 14 clusters, 23485 messages, reason: none +2026/03/21 22:14:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:14:18 [metric_collector] {"stage_name":"metric_collector","events_processed":14904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2980.8,"last_update":"2026-03-21T22:14:13.869680608Z"} +2026/03/21 22:14:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:14:13.87599233Z"} +2026/03/21 22:14:18 [transform_engine] {"stage_name":"transform_engine","events_processed":496,"events_dropped":0,"avg_latency_ms":484.62477398138594,"throughput_eps":0,"last_update":"2026-03-21T22:14:13.965140863Z"} +2026/03/21 22:14:18 [detection_layer] {"stage_name":"detection_layer","events_processed":496,"events_dropped":0,"avg_latency_ms":18.020600268986318,"throughput_eps":0,"last_update":"2026-03-21T22:14:13.965394078Z"} +2026/03/21 22:14:18 [log_collector] {"stage_name":"log_collector","events_processed":23495,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4699,"last_update":"2026-03-21T22:14:18.869410135Z"} +2026/03/21 22:14:18 ───────────────────────────────────────────────── +2026/03/21 22:14:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:14:23 [detection_layer] {"stage_name":"detection_layer","events_processed":496,"events_dropped":0,"avg_latency_ms":18.020600268986318,"throughput_eps":0,"last_update":"2026-03-21T22:14:18.965436303Z"} +2026/03/21 22:14:23 [log_collector] {"stage_name":"log_collector","events_processed":23495,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4699,"last_update":"2026-03-21T22:14:18.869410135Z"} +2026/03/21 22:14:23 [metric_collector] {"stage_name":"metric_collector","events_processed":14909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2981.8,"last_update":"2026-03-21T22:14:18.869834918Z"} +2026/03/21 22:14:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:14:18.878235433Z"} +2026/03/21 22:14:23 [transform_engine] {"stage_name":"transform_engine","events_processed":497,"events_dropped":0,"avg_latency_ms":406.4882067851088,"throughput_eps":0,"last_update":"2026-03-21T22:14:19.059430461Z"} +2026/03/21 22:14:23 ───────────────────────────────────────────────── +2026/03/21 22:14:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:14:28 [transform_engine] {"stage_name":"transform_engine","events_processed":497,"events_dropped":0,"avg_latency_ms":406.4882067851088,"throughput_eps":0,"last_update":"2026-03-21T22:14:23.96568094Z"} +2026/03/21 22:14:28 [detection_layer] {"stage_name":"detection_layer","events_processed":497,"events_dropped":0,"avg_latency_ms":17.827204815189056,"throughput_eps":0,"last_update":"2026-03-21T22:14:23.96567037Z"} +2026/03/21 22:14:28 [log_collector] {"stage_name":"log_collector","events_processed":23511,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4702.2,"last_update":"2026-03-21T22:14:28.869433757Z"} +2026/03/21 22:14:28 [metric_collector] {"stage_name":"metric_collector","events_processed":14914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2982.8,"last_update":"2026-03-21T22:14:23.870657923Z"} +2026/03/21 22:14:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:14:23.878479918Z"} +2026/03/21 22:14:28 ───────────────────────────────────────────────── +2026/03/21 22:14:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:14:33 [transform_engine] {"stage_name":"transform_engine","events_processed":497,"events_dropped":0,"avg_latency_ms":406.4882067851088,"throughput_eps":0,"last_update":"2026-03-21T22:14:28.965122531Z"} +2026/03/21 22:14:33 [detection_layer] {"stage_name":"detection_layer","events_processed":497,"events_dropped":0,"avg_latency_ms":17.827204815189056,"throughput_eps":0,"last_update":"2026-03-21T22:14:28.965275353Z"} +2026/03/21 22:14:33 [log_collector] {"stage_name":"log_collector","events_processed":23511,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4702.2,"last_update":"2026-03-21T22:14:33.869422979Z"} +2026/03/21 22:14:33 [metric_collector] {"stage_name":"metric_collector","events_processed":14919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2983.8,"last_update":"2026-03-21T22:14:28.869783637Z"} +2026/03/21 22:14:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5970,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:14:28.87893558Z"} +2026/03/21 22:14:33 ───────────────────────────────────────────────── +2026/03/21 22:14:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:14:38 [log_collector] {"stage_name":"log_collector","events_processed":23511,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4702.2,"last_update":"2026-03-21T22:14:38.869436841Z"} +2026/03/21 22:14:38 [metric_collector] {"stage_name":"metric_collector","events_processed":14924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2984.8,"last_update":"2026-03-21T22:14:33.869811093Z"} +2026/03/21 22:14:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:14:33.878371784Z"} +2026/03/21 22:14:38 [transform_engine] {"stage_name":"transform_engine","events_processed":497,"events_dropped":0,"avg_latency_ms":406.4882067851088,"throughput_eps":0,"last_update":"2026-03-21T22:14:33.965666275Z"} +2026/03/21 22:14:38 [detection_layer] {"stage_name":"detection_layer","events_processed":497,"events_dropped":0,"avg_latency_ms":17.827204815189056,"throughput_eps":0,"last_update":"2026-03-21T22:14:33.965647739Z"} +2026/03/21 22:14:38 ───────────────────────────────────────────────── +2026/03/21 22:14:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:14:43 [log_collector] {"stage_name":"log_collector","events_processed":23511,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4702.2,"last_update":"2026-03-21T22:14:43.869940163Z"} +2026/03/21 22:14:43 [metric_collector] {"stage_name":"metric_collector","events_processed":14929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2985.8,"last_update":"2026-03-21T22:14:38.869757996Z"} +2026/03/21 22:14:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:14:38.878397258Z"} +2026/03/21 22:14:43 [transform_engine] {"stage_name":"transform_engine","events_processed":497,"events_dropped":0,"avg_latency_ms":406.4882067851088,"throughput_eps":0,"last_update":"2026-03-21T22:14:38.965637703Z"} +2026/03/21 22:14:43 [detection_layer] {"stage_name":"detection_layer","events_processed":497,"events_dropped":0,"avg_latency_ms":17.827204815189056,"throughput_eps":0,"last_update":"2026-03-21T22:14:38.965629458Z"} +2026/03/21 22:14:43 ───────────────────────────────────────────────── +2026/03/21 22:14:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:14:48 [detection_layer] {"stage_name":"detection_layer","events_processed":497,"events_dropped":0,"avg_latency_ms":17.827204815189056,"throughput_eps":0,"last_update":"2026-03-21T22:14:43.965779033Z"} +2026/03/21 22:14:48 [log_collector] {"stage_name":"log_collector","events_processed":23511,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4702.2,"last_update":"2026-03-21T22:14:43.869940163Z"} +2026/03/21 22:14:48 [metric_collector] {"stage_name":"metric_collector","events_processed":14934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2986.8,"last_update":"2026-03-21T22:14:43.870402319Z"} +2026/03/21 22:14:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:14:43.87860805Z"} +2026/03/21 22:14:48 [transform_engine] {"stage_name":"transform_engine","events_processed":497,"events_dropped":0,"avg_latency_ms":406.4882067851088,"throughput_eps":0,"last_update":"2026-03-21T22:14:43.965790937Z"} +2026/03/21 22:14:48 ───────────────────────────────────────────────── +2026/03/21 22:14:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:14:53 [log_collector] {"stage_name":"log_collector","events_processed":23511,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4702.2,"last_update":"2026-03-21T22:14:48.869402034Z"} +2026/03/21 22:14:53 [metric_collector] {"stage_name":"metric_collector","events_processed":14939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2987.8,"last_update":"2026-03-21T22:14:48.869681078Z"} +2026/03/21 22:14:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:14:48.877963666Z"} +2026/03/21 22:14:53 [transform_engine] {"stage_name":"transform_engine","events_processed":498,"events_dropped":0,"avg_latency_ms":348.51660602808704,"throughput_eps":0,"last_update":"2026-03-21T22:14:49.081706331Z"} +2026/03/21 22:14:53 [detection_layer] {"stage_name":"detection_layer","events_processed":497,"events_dropped":0,"avg_latency_ms":17.827204815189056,"throughput_eps":0,"last_update":"2026-03-21T22:14:48.966208608Z"} +2026/03/21 22:14:53 ───────────────────────────────────────────────── +2026/03/21 22:14:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:14:58 [log_collector] {"stage_name":"log_collector","events_processed":23514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4702.8,"last_update":"2026-03-21T22:14:53.869408209Z"} +2026/03/21 22:14:58 [metric_collector] {"stage_name":"metric_collector","events_processed":14944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2988.8,"last_update":"2026-03-21T22:14:53.869736598Z"} +2026/03/21 22:14:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:14:53.878581263Z"} +2026/03/21 22:14:58 [transform_engine] {"stage_name":"transform_engine","events_processed":498,"events_dropped":0,"avg_latency_ms":348.51660602808704,"throughput_eps":0,"last_update":"2026-03-21T22:14:53.965806611Z"} +2026/03/21 22:14:58 [detection_layer] {"stage_name":"detection_layer","events_processed":498,"events_dropped":0,"avg_latency_ms":18.313137452151246,"throughput_eps":0,"last_update":"2026-03-21T22:14:53.96579548Z"} +2026/03/21 22:14:58 ───────────────────────────────────────────────── +2026/03/21 22:15:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:15:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:14:58.877880878Z"} +2026/03/21 22:15:03 [transform_engine] {"stage_name":"transform_engine","events_processed":498,"events_dropped":0,"avg_latency_ms":348.51660602808704,"throughput_eps":0,"last_update":"2026-03-21T22:14:58.966080172Z"} +2026/03/21 22:15:03 [detection_layer] {"stage_name":"detection_layer","events_processed":498,"events_dropped":0,"avg_latency_ms":18.313137452151246,"throughput_eps":0,"last_update":"2026-03-21T22:14:58.966070744Z"} +2026/03/21 22:15:03 [log_collector] {"stage_name":"log_collector","events_processed":23525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4705,"last_update":"2026-03-21T22:15:03.870181626Z"} +2026/03/21 22:15:03 [metric_collector] {"stage_name":"metric_collector","events_processed":14949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2989.8,"last_update":"2026-03-21T22:14:58.87062153Z"} +2026/03/21 22:15:03 ───────────────────────────────────────────────── +2026/03/21 22:15:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:15:08 [metric_collector] {"stage_name":"metric_collector","events_processed":14954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2990.8,"last_update":"2026-03-21T22:15:03.870581152Z"} +2026/03/21 22:15:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:15:03.879561527Z"} +2026/03/21 22:15:08 [transform_engine] {"stage_name":"transform_engine","events_processed":498,"events_dropped":0,"avg_latency_ms":348.51660602808704,"throughput_eps":0,"last_update":"2026-03-21T22:15:03.965781678Z"} +2026/03/21 22:15:08 [detection_layer] {"stage_name":"detection_layer","events_processed":498,"events_dropped":0,"avg_latency_ms":18.313137452151246,"throughput_eps":0,"last_update":"2026-03-21T22:15:03.965768664Z"} +2026/03/21 22:15:08 [log_collector] {"stage_name":"log_collector","events_processed":23525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4705,"last_update":"2026-03-21T22:15:03.870181626Z"} +2026/03/21 22:15:08 ───────────────────────────────────────────────── +2026/03/21 22:15:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:15:13 [log_collector] {"stage_name":"log_collector","events_processed":23525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4705,"last_update":"2026-03-21T22:15:08.86940453Z"} +2026/03/21 22:15:13 [metric_collector] {"stage_name":"metric_collector","events_processed":14959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2991.8,"last_update":"2026-03-21T22:15:08.870013456Z"} +2026/03/21 22:15:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:15:08.879128689Z"} +2026/03/21 22:15:13 [transform_engine] {"stage_name":"transform_engine","events_processed":498,"events_dropped":0,"avg_latency_ms":348.51660602808704,"throughput_eps":0,"last_update":"2026-03-21T22:15:08.965386533Z"} +2026/03/21 22:15:13 [detection_layer] {"stage_name":"detection_layer","events_processed":498,"events_dropped":0,"avg_latency_ms":18.313137452151246,"throughput_eps":0,"last_update":"2026-03-21T22:15:08.965372056Z"} +2026/03/21 22:15:13 ───────────────────────────────────────────────── +2026/03/21 22:15:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:15:18 [transform_engine] {"stage_name":"transform_engine","events_processed":498,"events_dropped":0,"avg_latency_ms":348.51660602808704,"throughput_eps":0,"last_update":"2026-03-21T22:15:13.965514563Z"} +2026/03/21 22:15:18 [detection_layer] {"stage_name":"detection_layer","events_processed":498,"events_dropped":0,"avg_latency_ms":18.313137452151246,"throughput_eps":0,"last_update":"2026-03-21T22:15:13.965500446Z"} +2026/03/21 22:15:18 [log_collector] {"stage_name":"log_collector","events_processed":23525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4705,"last_update":"2026-03-21T22:15:13.869931825Z"} +2026/03/21 22:15:18 [metric_collector] {"stage_name":"metric_collector","events_processed":14964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2992.8,"last_update":"2026-03-21T22:15:13.870286925Z"} +2026/03/21 22:15:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:15:13.879280154Z"} +2026/03/21 22:15:18 ───────────────────────────────────────────────── +2026/03/21 22:15:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:15:23 [detection_layer] {"stage_name":"detection_layer","events_processed":498,"events_dropped":0,"avg_latency_ms":18.313137452151246,"throughput_eps":0,"last_update":"2026-03-21T22:15:18.965836508Z"} +2026/03/21 22:15:23 [log_collector] {"stage_name":"log_collector","events_processed":23525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4705,"last_update":"2026-03-21T22:15:18.869773589Z"} +2026/03/21 22:15:23 [metric_collector] {"stage_name":"metric_collector","events_processed":14969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2993.8,"last_update":"2026-03-21T22:15:18.870120333Z"} +2026/03/21 22:15:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5990,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:15:18.87859035Z"} +2026/03/21 22:15:23 [transform_engine] {"stage_name":"transform_engine","events_processed":499,"events_dropped":0,"avg_latency_ms":302.7121246224697,"throughput_eps":0,"last_update":"2026-03-21T22:15:19.085272284Z"} +2026/03/21 22:15:23 ───────────────────────────────────────────────── +2026/03/21 22:15:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:15:28 [log_collector] {"stage_name":"log_collector","events_processed":23525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4705,"last_update":"2026-03-21T22:15:23.869922367Z"} +2026/03/21 22:15:28 [metric_collector] {"stage_name":"metric_collector","events_processed":14974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2994.8,"last_update":"2026-03-21T22:15:23.870388149Z"} +2026/03/21 22:15:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5992,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:15:23.879895723Z"} +2026/03/21 22:15:28 [transform_engine] {"stage_name":"transform_engine","events_processed":499,"events_dropped":0,"avg_latency_ms":302.7121246224697,"throughput_eps":0,"last_update":"2026-03-21T22:15:23.966113311Z"} +2026/03/21 22:15:28 [detection_layer] {"stage_name":"detection_layer","events_processed":499,"events_dropped":0,"avg_latency_ms":18.793264961720997,"throughput_eps":0,"last_update":"2026-03-21T22:15:23.966077582Z"} +2026/03/21 22:15:28 ───────────────────────────────────────────────── +2026/03/21 22:15:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:15:33 [log_collector] {"stage_name":"log_collector","events_processed":23525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4705,"last_update":"2026-03-21T22:15:28.869899026Z"} +2026/03/21 22:15:33 [metric_collector] {"stage_name":"metric_collector","events_processed":14979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2995.8,"last_update":"2026-03-21T22:15:28.870324321Z"} +2026/03/21 22:15:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:15:28.878979583Z"} +2026/03/21 22:15:33 [transform_engine] {"stage_name":"transform_engine","events_processed":499,"events_dropped":0,"avg_latency_ms":302.7121246224697,"throughput_eps":0,"last_update":"2026-03-21T22:15:28.965168745Z"} +2026/03/21 22:15:33 [detection_layer] {"stage_name":"detection_layer","events_processed":499,"events_dropped":0,"avg_latency_ms":18.793264961720997,"throughput_eps":0,"last_update":"2026-03-21T22:15:28.966320833Z"} +2026/03/21 22:15:33 ───────────────────────────────────────────────── +2026/03/21 22:15:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:15:38 [metric_collector] {"stage_name":"metric_collector","events_processed":14984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2996.8,"last_update":"2026-03-21T22:15:33.870369267Z"} +2026/03/21 22:15:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5996,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:15:33.879303554Z"} +2026/03/21 22:15:38 [transform_engine] {"stage_name":"transform_engine","events_processed":499,"events_dropped":0,"avg_latency_ms":302.7121246224697,"throughput_eps":0,"last_update":"2026-03-21T22:15:33.965629608Z"} +2026/03/21 22:15:38 [detection_layer] {"stage_name":"detection_layer","events_processed":499,"events_dropped":0,"avg_latency_ms":18.793264961720997,"throughput_eps":0,"last_update":"2026-03-21T22:15:33.965602346Z"} +2026/03/21 22:15:38 [log_collector] {"stage_name":"log_collector","events_processed":23525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4705,"last_update":"2026-03-21T22:15:33.870071737Z"} +2026/03/21 22:15:38 ───────────────────────────────────────────────── +2026/03/21 22:15:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:15:43 [log_collector] {"stage_name":"log_collector","events_processed":23525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4705,"last_update":"2026-03-21T22:15:38.869448974Z"} +2026/03/21 22:15:43 [metric_collector] {"stage_name":"metric_collector","events_processed":14989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2997.8,"last_update":"2026-03-21T22:15:38.869931008Z"} +2026/03/21 22:15:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:15:38.878167728Z"} +2026/03/21 22:15:43 [transform_engine] {"stage_name":"transform_engine","events_processed":499,"events_dropped":0,"avg_latency_ms":302.7121246224697,"throughput_eps":0,"last_update":"2026-03-21T22:15:38.965435817Z"} +2026/03/21 22:15:43 [detection_layer] {"stage_name":"detection_layer","events_processed":499,"events_dropped":0,"avg_latency_ms":18.793264961720997,"throughput_eps":0,"last_update":"2026-03-21T22:15:38.965575534Z"} +2026/03/21 22:15:43 ───────────────────────────────────────────────── +2026/03/21 22:15:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:15:48 [log_collector] {"stage_name":"log_collector","events_processed":23525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4705,"last_update":"2026-03-21T22:15:43.86971031Z"} +2026/03/21 22:15:48 [metric_collector] {"stage_name":"metric_collector","events_processed":14994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2998.8,"last_update":"2026-03-21T22:15:43.870079447Z"} +2026/03/21 22:15:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:15:43.878739959Z"} +2026/03/21 22:15:48 [transform_engine] {"stage_name":"transform_engine","events_processed":499,"events_dropped":0,"avg_latency_ms":302.7121246224697,"throughput_eps":0,"last_update":"2026-03-21T22:15:43.9659099Z"} +2026/03/21 22:15:48 [detection_layer] {"stage_name":"detection_layer","events_processed":499,"events_dropped":0,"avg_latency_ms":18.793264961720997,"throughput_eps":0,"last_update":"2026-03-21T22:15:43.965958233Z"} +2026/03/21 22:15:48 ───────────────────────────────────────────────── +2026/03/21 22:15:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:15:53 [log_collector] {"stage_name":"log_collector","events_processed":23525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4705,"last_update":"2026-03-21T22:15:48.869576723Z"} +2026/03/21 22:15:53 [metric_collector] {"stage_name":"metric_collector","events_processed":14999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2999.8,"last_update":"2026-03-21T22:15:48.869662677Z"} +2026/03/21 22:15:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:15:48.878624586Z"} +2026/03/21 22:15:53 [transform_engine] {"stage_name":"transform_engine","events_processed":500,"events_dropped":0,"avg_latency_ms":257.79914869797574,"throughput_eps":0,"last_update":"2026-03-21T22:15:49.043997308Z"} +2026/03/21 22:15:53 [detection_layer] {"stage_name":"detection_layer","events_processed":499,"events_dropped":0,"avg_latency_ms":18.793264961720997,"throughput_eps":0,"last_update":"2026-03-21T22:15:48.965835937Z"} +2026/03/21 22:15:53 ───────────────────────────────────────────────── +2026/03/21 22:15:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:15:58 [transform_engine] {"stage_name":"transform_engine","events_processed":500,"events_dropped":0,"avg_latency_ms":257.79914869797574,"throughput_eps":0,"last_update":"2026-03-21T22:15:53.966085438Z"} +2026/03/21 22:15:58 [detection_layer] {"stage_name":"detection_layer","events_processed":500,"events_dropped":0,"avg_latency_ms":18.933120569376797,"throughput_eps":0,"last_update":"2026-03-21T22:15:53.966064097Z"} +2026/03/21 22:15:58 [log_collector] {"stage_name":"log_collector","events_processed":23525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4705,"last_update":"2026-03-21T22:15:53.870375876Z"} +2026/03/21 22:15:58 [metric_collector] {"stage_name":"metric_collector","events_processed":15004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3000.8,"last_update":"2026-03-21T22:15:53.870745123Z"} +2026/03/21 22:15:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:15:53.879865365Z"} +2026/03/21 22:15:58 ───────────────────────────────────────────────── +Saved state: 14 clusters, 23526 messages, reason: none +2026/03/21 22:16:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:16:03 [metric_collector] {"stage_name":"metric_collector","events_processed":15009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3001.8,"last_update":"2026-03-21T22:15:58.870526672Z"} +2026/03/21 22:16:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6006,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:15:58.877446459Z"} +2026/03/21 22:16:03 [transform_engine] {"stage_name":"transform_engine","events_processed":500,"events_dropped":0,"avg_latency_ms":257.79914869797574,"throughput_eps":0,"last_update":"2026-03-21T22:15:58.965759389Z"} +2026/03/21 22:16:03 [detection_layer] {"stage_name":"detection_layer","events_processed":500,"events_dropped":0,"avg_latency_ms":18.933120569376797,"throughput_eps":0,"last_update":"2026-03-21T22:15:58.965733339Z"} +2026/03/21 22:16:03 [log_collector] {"stage_name":"log_collector","events_processed":23525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4705,"last_update":"2026-03-21T22:15:58.86996683Z"} +2026/03/21 22:16:03 ───────────────────────────────────────────────── +2026/03/21 22:16:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:16:08 [metric_collector] {"stage_name":"metric_collector","events_processed":15014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3002.8,"last_update":"2026-03-21T22:16:03.869717181Z"} +2026/03/21 22:16:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6008,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:16:03.877913344Z"} +2026/03/21 22:16:08 [transform_engine] {"stage_name":"transform_engine","events_processed":500,"events_dropped":0,"avg_latency_ms":257.79914869797574,"throughput_eps":0,"last_update":"2026-03-21T22:16:03.965112731Z"} +2026/03/21 22:16:08 [detection_layer] {"stage_name":"detection_layer","events_processed":500,"events_dropped":0,"avg_latency_ms":18.933120569376797,"throughput_eps":0,"last_update":"2026-03-21T22:16:03.966207578Z"} +2026/03/21 22:16:08 [log_collector] {"stage_name":"log_collector","events_processed":23530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4706,"last_update":"2026-03-21T22:16:03.869409903Z"} +2026/03/21 22:16:08 ───────────────────────────────────────────────── +2026/03/21 22:16:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:16:13 [log_collector] {"stage_name":"log_collector","events_processed":23530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4706,"last_update":"2026-03-21T22:16:08.869403415Z"} +2026/03/21 22:16:13 [metric_collector] {"stage_name":"metric_collector","events_processed":15019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3003.8,"last_update":"2026-03-21T22:16:08.869831906Z"} +2026/03/21 22:16:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:16:08.879096154Z"} +2026/03/21 22:16:13 [transform_engine] {"stage_name":"transform_engine","events_processed":500,"events_dropped":0,"avg_latency_ms":257.79914869797574,"throughput_eps":0,"last_update":"2026-03-21T22:16:08.965172819Z"} +2026/03/21 22:16:13 [detection_layer] {"stage_name":"detection_layer","events_processed":500,"events_dropped":0,"avg_latency_ms":18.933120569376797,"throughput_eps":0,"last_update":"2026-03-21T22:16:08.96625856Z"} +2026/03/21 22:16:13 ───────────────────────────────────────────────── +2026/03/21 22:16:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:16:18 [log_collector] {"stage_name":"log_collector","events_processed":23530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4706,"last_update":"2026-03-21T22:16:13.869419804Z"} +2026/03/21 22:16:18 [metric_collector] {"stage_name":"metric_collector","events_processed":15024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3004.8,"last_update":"2026-03-21T22:16:13.869696925Z"} +2026/03/21 22:16:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6012,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:16:13.876556536Z"} +2026/03/21 22:16:18 [transform_engine] {"stage_name":"transform_engine","events_processed":500,"events_dropped":0,"avg_latency_ms":257.79914869797574,"throughput_eps":0,"last_update":"2026-03-21T22:16:13.965713283Z"} +2026/03/21 22:16:18 [detection_layer] {"stage_name":"detection_layer","events_processed":500,"events_dropped":0,"avg_latency_ms":18.933120569376797,"throughput_eps":0,"last_update":"2026-03-21T22:16:13.96573243Z"} +2026/03/21 22:16:18 ───────────────────────────────────────────────── +2026/03/21 22:16:20 [ANOMALY] time=2026-03-21T22:16:20Z score=0.8076 method=SEAD details=MAD!:w=0.25,s=0.93 RRCF-fast:w=0.19,s=0.82 RRCF-mid:w=0.17,s=0.88 RRCF-slow!:w=0.15,s=0.92 COPOD!:w=0.24,s=0.56 +2026/03/21 22:16:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:16:23 [log_collector] {"stage_name":"log_collector","events_processed":23530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4706,"last_update":"2026-03-21T22:16:18.869448179Z"} +2026/03/21 22:16:23 [metric_collector] {"stage_name":"metric_collector","events_processed":15029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3005.8,"last_update":"2026-03-21T22:16:18.869821524Z"} +2026/03/21 22:16:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:16:18.883633926Z"} +2026/03/21 22:16:23 [transform_engine] {"stage_name":"transform_engine","events_processed":501,"events_dropped":0,"avg_latency_ms":420.1754631583807,"throughput_eps":0,"last_update":"2026-03-21T22:16:20.035560533Z"} +2026/03/21 22:16:23 [detection_layer] {"stage_name":"detection_layer","events_processed":500,"events_dropped":0,"avg_latency_ms":18.933120569376797,"throughput_eps":0,"last_update":"2026-03-21T22:16:18.965853232Z"} +2026/03/21 22:16:23 ───────────────────────────────────────────────── +2026/03/21 22:16:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:16:28 [log_collector] {"stage_name":"log_collector","events_processed":23530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4706,"last_update":"2026-03-21T22:16:23.869425601Z"} +2026/03/21 22:16:28 [metric_collector] {"stage_name":"metric_collector","events_processed":15034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3006.8,"last_update":"2026-03-21T22:16:23.869680771Z"} +2026/03/21 22:16:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:16:23.880587856Z"} +2026/03/21 22:16:28 [transform_engine] {"stage_name":"transform_engine","events_processed":501,"events_dropped":0,"avg_latency_ms":420.1754631583807,"throughput_eps":0,"last_update":"2026-03-21T22:16:23.965822218Z"} +2026/03/21 22:16:28 [detection_layer] {"stage_name":"detection_layer","events_processed":501,"events_dropped":0,"avg_latency_ms":17.90337185550144,"throughput_eps":0,"last_update":"2026-03-21T22:16:23.965856133Z"} +2026/03/21 22:16:28 ───────────────────────────────────────────────── +2026/03/21 22:16:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:16:33 [transform_engine] {"stage_name":"transform_engine","events_processed":501,"events_dropped":0,"avg_latency_ms":420.1754631583807,"throughput_eps":0,"last_update":"2026-03-21T22:16:28.965439103Z"} +2026/03/21 22:16:33 [detection_layer] {"stage_name":"detection_layer","events_processed":501,"events_dropped":0,"avg_latency_ms":17.90337185550144,"throughput_eps":0,"last_update":"2026-03-21T22:16:28.965461977Z"} +2026/03/21 22:16:33 [log_collector] {"stage_name":"log_collector","events_processed":23530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4706,"last_update":"2026-03-21T22:16:28.869442653Z"} +2026/03/21 22:16:33 [metric_collector] {"stage_name":"metric_collector","events_processed":15039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3007.8,"last_update":"2026-03-21T22:16:28.869695569Z"} +2026/03/21 22:16:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6018,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:16:28.877262905Z"} +2026/03/21 22:16:33 ───────────────────────────────────────────────── +2026/03/21 22:16:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:16:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6020,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:16:33.876987111Z"} +2026/03/21 22:16:38 [transform_engine] {"stage_name":"transform_engine","events_processed":501,"events_dropped":0,"avg_latency_ms":420.1754631583807,"throughput_eps":0,"last_update":"2026-03-21T22:16:33.965066122Z"} +2026/03/21 22:16:38 [detection_layer] {"stage_name":"detection_layer","events_processed":501,"events_dropped":0,"avg_latency_ms":17.90337185550144,"throughput_eps":0,"last_update":"2026-03-21T22:16:33.966154056Z"} +2026/03/21 22:16:38 [log_collector] {"stage_name":"log_collector","events_processed":23530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4706,"last_update":"2026-03-21T22:16:33.869651267Z"} +2026/03/21 22:16:38 [metric_collector] {"stage_name":"metric_collector","events_processed":15044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3008.8,"last_update":"2026-03-21T22:16:33.870046173Z"} +2026/03/21 22:16:38 ───────────────────────────────────────────────── +2026/03/21 22:16:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:16:43 [detection_layer] {"stage_name":"detection_layer","events_processed":501,"events_dropped":0,"avg_latency_ms":17.90337185550144,"throughput_eps":0,"last_update":"2026-03-21T22:16:38.965531352Z"} +2026/03/21 22:16:43 [log_collector] {"stage_name":"log_collector","events_processed":23530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4706,"last_update":"2026-03-21T22:16:38.869440201Z"} +2026/03/21 22:16:43 [metric_collector] {"stage_name":"metric_collector","events_processed":15049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3009.8,"last_update":"2026-03-21T22:16:38.870305619Z"} +2026/03/21 22:16:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6022,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:16:38.885327567Z"} +2026/03/21 22:16:43 [transform_engine] {"stage_name":"transform_engine","events_processed":501,"events_dropped":0,"avg_latency_ms":420.1754631583807,"throughput_eps":0,"last_update":"2026-03-21T22:16:38.965140222Z"} +2026/03/21 22:16:43 ───────────────────────────────────────────────── +2026/03/21 22:16:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:16:48 [transform_engine] {"stage_name":"transform_engine","events_processed":501,"events_dropped":0,"avg_latency_ms":420.1754631583807,"throughput_eps":0,"last_update":"2026-03-21T22:16:43.965947881Z"} +2026/03/21 22:16:48 [detection_layer] {"stage_name":"detection_layer","events_processed":501,"events_dropped":0,"avg_latency_ms":17.90337185550144,"throughput_eps":0,"last_update":"2026-03-21T22:16:43.965937812Z"} +2026/03/21 22:16:48 [log_collector] {"stage_name":"log_collector","events_processed":23530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4706,"last_update":"2026-03-21T22:16:43.869587214Z"} +2026/03/21 22:16:48 [metric_collector] {"stage_name":"metric_collector","events_processed":15054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3010.8,"last_update":"2026-03-21T22:16:43.87007577Z"} +2026/03/21 22:16:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:16:43.877175873Z"} +2026/03/21 22:16:48 ───────────────────────────────────────────────── +2026/03/21 22:16:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:16:53 [log_collector] {"stage_name":"log_collector","events_processed":23541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4708.2,"last_update":"2026-03-21T22:16:48.869447895Z"} +2026/03/21 22:16:53 [metric_collector] {"stage_name":"metric_collector","events_processed":15059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3011.8,"last_update":"2026-03-21T22:16:48.86997251Z"} +2026/03/21 22:16:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:16:48.879877325Z"} +2026/03/21 22:16:53 [transform_engine] {"stage_name":"transform_engine","events_processed":502,"events_dropped":0,"avg_latency_ms":359.7094419267046,"throughput_eps":0,"last_update":"2026-03-21T22:16:49.082946573Z"} +2026/03/21 22:16:53 [detection_layer] {"stage_name":"detection_layer","events_processed":501,"events_dropped":0,"avg_latency_ms":17.90337185550144,"throughput_eps":0,"last_update":"2026-03-21T22:16:48.966205572Z"} +2026/03/21 22:16:53 ───────────────────────────────────────────────── +2026/03/21 22:16:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:16:58 [metric_collector] {"stage_name":"metric_collector","events_processed":15064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3012.8,"last_update":"2026-03-21T22:16:53.87037424Z"} +2026/03/21 22:16:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:16:53.880586204Z"} +2026/03/21 22:16:58 [transform_engine] {"stage_name":"transform_engine","events_processed":502,"events_dropped":0,"avg_latency_ms":359.7094419267046,"throughput_eps":0,"last_update":"2026-03-21T22:16:53.965814574Z"} +2026/03/21 22:16:58 [detection_layer] {"stage_name":"detection_layer","events_processed":502,"events_dropped":0,"avg_latency_ms":17.917211884401155,"throughput_eps":0,"last_update":"2026-03-21T22:16:53.965857275Z"} +2026/03/21 22:16:58 [log_collector] {"stage_name":"log_collector","events_processed":23572,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4714.4,"last_update":"2026-03-21T22:16:53.870371796Z"} +2026/03/21 22:16:58 ───────────────────────────────────────────────── +2026/03/21 22:17:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:17:03 [detection_layer] {"stage_name":"detection_layer","events_processed":502,"events_dropped":0,"avg_latency_ms":17.917211884401155,"throughput_eps":0,"last_update":"2026-03-21T22:16:58.965819908Z"} +2026/03/21 22:17:03 [log_collector] {"stage_name":"log_collector","events_processed":23786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4757.2,"last_update":"2026-03-21T22:16:58.869667711Z"} +2026/03/21 22:17:03 [metric_collector] {"stage_name":"metric_collector","events_processed":15069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3013.8,"last_update":"2026-03-21T22:16:58.869832006Z"} +2026/03/21 22:17:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:16:58.877257451Z"} +2026/03/21 22:17:03 [transform_engine] {"stage_name":"transform_engine","events_processed":502,"events_dropped":0,"avg_latency_ms":359.7094419267046,"throughput_eps":0,"last_update":"2026-03-21T22:16:58.965791825Z"} +2026/03/21 22:17:03 ───────────────────────────────────────────────── +2026/03/21 22:17:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:17:08 [transform_engine] {"stage_name":"transform_engine","events_processed":502,"events_dropped":0,"avg_latency_ms":359.7094419267046,"throughput_eps":0,"last_update":"2026-03-21T22:17:03.965136581Z"} +2026/03/21 22:17:08 [detection_layer] {"stage_name":"detection_layer","events_processed":502,"events_dropped":0,"avg_latency_ms":17.917211884401155,"throughput_eps":0,"last_update":"2026-03-21T22:17:03.966225567Z"} +2026/03/21 22:17:08 [log_collector] {"stage_name":"log_collector","events_processed":23910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4782,"last_update":"2026-03-21T22:17:03.870502152Z"} +2026/03/21 22:17:08 [metric_collector] {"stage_name":"metric_collector","events_processed":15074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3014.8,"last_update":"2026-03-21T22:17:03.870797548Z"} +2026/03/21 22:17:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:17:03.87901479Z"} +2026/03/21 22:17:08 ───────────────────────────────────────────────── +2026/03/21 22:17:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:17:13 [log_collector] {"stage_name":"log_collector","events_processed":23910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4782,"last_update":"2026-03-21T22:17:08.869822663Z"} +2026/03/21 22:17:13 [metric_collector] {"stage_name":"metric_collector","events_processed":15079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3015.8,"last_update":"2026-03-21T22:17:08.87027514Z"} +2026/03/21 22:17:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:17:08.879556562Z"} +2026/03/21 22:17:13 [transform_engine] {"stage_name":"transform_engine","events_processed":502,"events_dropped":0,"avg_latency_ms":359.7094419267046,"throughput_eps":0,"last_update":"2026-03-21T22:17:08.965749569Z"} +2026/03/21 22:17:13 [detection_layer] {"stage_name":"detection_layer","events_processed":502,"events_dropped":0,"avg_latency_ms":17.917211884401155,"throughput_eps":0,"last_update":"2026-03-21T22:17:08.965717488Z"} +2026/03/21 22:17:13 ───────────────────────────────────────────────── +2026/03/21 22:17:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:17:18 [log_collector] {"stage_name":"log_collector","events_processed":23910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4782,"last_update":"2026-03-21T22:17:13.870333239Z"} +2026/03/21 22:17:18 [metric_collector] {"stage_name":"metric_collector","events_processed":15084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3016.8,"last_update":"2026-03-21T22:17:13.870837074Z"} +2026/03/21 22:17:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6036,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:17:13.87929616Z"} +2026/03/21 22:17:18 [transform_engine] {"stage_name":"transform_engine","events_processed":502,"events_dropped":0,"avg_latency_ms":359.7094419267046,"throughput_eps":0,"last_update":"2026-03-21T22:17:13.965619768Z"} +2026/03/21 22:17:18 [detection_layer] {"stage_name":"detection_layer","events_processed":502,"events_dropped":0,"avg_latency_ms":17.917211884401155,"throughput_eps":0,"last_update":"2026-03-21T22:17:13.965668381Z"} +2026/03/21 22:17:18 ───────────────────────────────────────────────── +2026/03/21 22:17:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:17:23 [log_collector] {"stage_name":"log_collector","events_processed":23910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4782,"last_update":"2026-03-21T22:17:18.869998842Z"} +2026/03/21 22:17:23 [metric_collector] {"stage_name":"metric_collector","events_processed":15089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3017.8,"last_update":"2026-03-21T22:17:18.870383149Z"} +2026/03/21 22:17:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:17:18.879370526Z"} +2026/03/21 22:17:23 [transform_engine] {"stage_name":"transform_engine","events_processed":503,"events_dropped":0,"avg_latency_ms":307.45881554136366,"throughput_eps":0,"last_update":"2026-03-21T22:17:19.064119235Z"} +2026/03/21 22:17:23 [detection_layer] {"stage_name":"detection_layer","events_processed":502,"events_dropped":0,"avg_latency_ms":17.917211884401155,"throughput_eps":0,"last_update":"2026-03-21T22:17:18.965682131Z"} +2026/03/21 22:17:23 ───────────────────────────────────────────────── +2026/03/21 22:17:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:17:28 [detection_layer] {"stage_name":"detection_layer","events_processed":503,"events_dropped":0,"avg_latency_ms":18.717283307520926,"throughput_eps":0,"last_update":"2026-03-21T22:17:23.966170075Z"} +2026/03/21 22:17:28 [log_collector] {"stage_name":"log_collector","events_processed":23910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4782,"last_update":"2026-03-21T22:17:23.86974751Z"} +2026/03/21 22:17:28 [metric_collector] {"stage_name":"metric_collector","events_processed":15094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3018.8,"last_update":"2026-03-21T22:17:23.870071621Z"} +2026/03/21 22:17:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:17:23.877740213Z"} +2026/03/21 22:17:28 [transform_engine] {"stage_name":"transform_engine","events_processed":503,"events_dropped":0,"avg_latency_ms":307.45881554136366,"throughput_eps":0,"last_update":"2026-03-21T22:17:23.966070004Z"} +2026/03/21 22:17:28 ───────────────────────────────────────────────── +2026/03/21 22:17:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:17:33 [log_collector] {"stage_name":"log_collector","events_processed":23910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4782,"last_update":"2026-03-21T22:17:28.869903402Z"} +2026/03/21 22:17:33 [metric_collector] {"stage_name":"metric_collector","events_processed":15099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3019.8,"last_update":"2026-03-21T22:17:28.87034616Z"} +2026/03/21 22:17:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:17:28.877237432Z"} +2026/03/21 22:17:33 [transform_engine] {"stage_name":"transform_engine","events_processed":503,"events_dropped":0,"avg_latency_ms":307.45881554136366,"throughput_eps":0,"last_update":"2026-03-21T22:17:28.96561239Z"} +2026/03/21 22:17:33 [detection_layer] {"stage_name":"detection_layer","events_processed":503,"events_dropped":0,"avg_latency_ms":18.717283307520926,"throughput_eps":0,"last_update":"2026-03-21T22:17:28.965583875Z"} +2026/03/21 22:17:33 ───────────────────────────────────────────────── +2026/03/21 22:17:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:17:38 [log_collector] {"stage_name":"log_collector","events_processed":23910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4782,"last_update":"2026-03-21T22:17:38.869468607Z"} +2026/03/21 22:17:38 [metric_collector] {"stage_name":"metric_collector","events_processed":15104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3020.8,"last_update":"2026-03-21T22:17:33.870385383Z"} +2026/03/21 22:17:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:17:33.877063547Z"} +2026/03/21 22:17:38 [transform_engine] {"stage_name":"transform_engine","events_processed":503,"events_dropped":0,"avg_latency_ms":307.45881554136366,"throughput_eps":0,"last_update":"2026-03-21T22:17:33.965424067Z"} +2026/03/21 22:17:38 [detection_layer] {"stage_name":"detection_layer","events_processed":503,"events_dropped":0,"avg_latency_ms":18.717283307520926,"throughput_eps":0,"last_update":"2026-03-21T22:17:33.965397556Z"} +2026/03/21 22:17:38 ───────────────────────────────────────────────── +2026/03/21 22:17:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:17:43 [transform_engine] {"stage_name":"transform_engine","events_processed":503,"events_dropped":0,"avg_latency_ms":307.45881554136366,"throughput_eps":0,"last_update":"2026-03-21T22:17:38.966124649Z"} +2026/03/21 22:17:43 [detection_layer] {"stage_name":"detection_layer","events_processed":503,"events_dropped":0,"avg_latency_ms":18.717283307520926,"throughput_eps":0,"last_update":"2026-03-21T22:17:38.966009578Z"} +2026/03/21 22:17:43 [log_collector] {"stage_name":"log_collector","events_processed":23910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4782,"last_update":"2026-03-21T22:17:38.869468607Z"} +2026/03/21 22:17:43 [metric_collector] {"stage_name":"metric_collector","events_processed":15109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3021.8,"last_update":"2026-03-21T22:17:38.869828487Z"} +2026/03/21 22:17:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:17:38.878647793Z"} +2026/03/21 22:17:43 ───────────────────────────────────────────────── +2026/03/21 22:17:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:17:48 [log_collector] {"stage_name":"log_collector","events_processed":23910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4782,"last_update":"2026-03-21T22:17:43.869637097Z"} +2026/03/21 22:17:48 [metric_collector] {"stage_name":"metric_collector","events_processed":15114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3022.8,"last_update":"2026-03-21T22:17:43.869968061Z"} +2026/03/21 22:17:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6048,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:17:43.878735397Z"} +2026/03/21 22:17:48 [transform_engine] {"stage_name":"transform_engine","events_processed":503,"events_dropped":0,"avg_latency_ms":307.45881554136366,"throughput_eps":0,"last_update":"2026-03-21T22:17:43.966038291Z"} +2026/03/21 22:17:48 [detection_layer] {"stage_name":"detection_layer","events_processed":503,"events_dropped":0,"avg_latency_ms":18.717283307520926,"throughput_eps":0,"last_update":"2026-03-21T22:17:43.96606374Z"} +2026/03/21 22:17:48 ───────────────────────────────────────────────── +2026/03/21 22:17:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:17:53 [log_collector] {"stage_name":"log_collector","events_processed":23910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4782,"last_update":"2026-03-21T22:17:53.869792855Z"} +2026/03/21 22:17:53 [metric_collector] {"stage_name":"metric_collector","events_processed":15119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3023.8,"last_update":"2026-03-21T22:17:48.870699825Z"} +2026/03/21 22:17:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6050,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:17:48.877952328Z"} +2026/03/21 22:17:53 [transform_engine] {"stage_name":"transform_engine","events_processed":504,"events_dropped":0,"avg_latency_ms":258.58604763309097,"throughput_eps":0,"last_update":"2026-03-21T22:17:49.028193447Z"} +2026/03/21 22:17:53 [detection_layer] {"stage_name":"detection_layer","events_processed":503,"events_dropped":0,"avg_latency_ms":18.717283307520926,"throughput_eps":0,"last_update":"2026-03-21T22:17:48.966200602Z"} +2026/03/21 22:17:53 ───────────────────────────────────────────────── +2026/03/21 22:17:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:17:58 [log_collector] {"stage_name":"log_collector","events_processed":23910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4782,"last_update":"2026-03-21T22:17:53.869792855Z"} +2026/03/21 22:17:58 [metric_collector] {"stage_name":"metric_collector","events_processed":15124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3024.8,"last_update":"2026-03-21T22:17:53.870225815Z"} +2026/03/21 22:17:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:17:53.879362448Z"} +2026/03/21 22:17:58 [transform_engine] {"stage_name":"transform_engine","events_processed":504,"events_dropped":0,"avg_latency_ms":258.58604763309097,"throughput_eps":0,"last_update":"2026-03-21T22:17:53.965529515Z"} +2026/03/21 22:17:58 [detection_layer] {"stage_name":"detection_layer","events_processed":504,"events_dropped":0,"avg_latency_ms":18.25520104601674,"throughput_eps":0,"last_update":"2026-03-21T22:17:53.965572197Z"} +2026/03/21 22:17:58 ───────────────────────────────────────────────── +2026/03/21 22:18:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:18:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:17:58.878608085Z"} +2026/03/21 22:18:03 [transform_engine] {"stage_name":"transform_engine","events_processed":504,"events_dropped":0,"avg_latency_ms":258.58604763309097,"throughput_eps":0,"last_update":"2026-03-21T22:17:58.965919453Z"} +2026/03/21 22:18:03 [detection_layer] {"stage_name":"detection_layer","events_processed":504,"events_dropped":0,"avg_latency_ms":18.25520104601674,"throughput_eps":0,"last_update":"2026-03-21T22:17:58.965817458Z"} +2026/03/21 22:18:03 [log_collector] {"stage_name":"log_collector","events_processed":23910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4782,"last_update":"2026-03-21T22:17:58.870408476Z"} +2026/03/21 22:18:03 [metric_collector] {"stage_name":"metric_collector","events_processed":15129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3025.8,"last_update":"2026-03-21T22:17:58.8707913Z"} +2026/03/21 22:18:03 ───────────────────────────────────────────────── +2026/03/21 22:18:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:18:08 [transform_engine] {"stage_name":"transform_engine","events_processed":504,"events_dropped":0,"avg_latency_ms":258.58604763309097,"throughput_eps":0,"last_update":"2026-03-21T22:18:03.965307709Z"} +2026/03/21 22:18:08 [detection_layer] {"stage_name":"detection_layer","events_processed":504,"events_dropped":0,"avg_latency_ms":18.25520104601674,"throughput_eps":0,"last_update":"2026-03-21T22:18:03.965412631Z"} +2026/03/21 22:18:08 [log_collector] {"stage_name":"log_collector","events_processed":23910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4782,"last_update":"2026-03-21T22:18:08.869581261Z"} +2026/03/21 22:18:08 [metric_collector] {"stage_name":"metric_collector","events_processed":15134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3026.8,"last_update":"2026-03-21T22:18:03.870828429Z"} +2026/03/21 22:18:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6056,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:18:03.880097837Z"} +2026/03/21 22:18:08 ───────────────────────────────────────────────── +2026/03/21 22:18:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:18:13 [log_collector] {"stage_name":"log_collector","events_processed":23910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4782,"last_update":"2026-03-21T22:18:13.870231183Z"} +2026/03/21 22:18:13 [metric_collector] {"stage_name":"metric_collector","events_processed":15139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3027.8,"last_update":"2026-03-21T22:18:08.869908768Z"} +2026/03/21 22:18:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:18:08.877930406Z"} +2026/03/21 22:18:13 [transform_engine] {"stage_name":"transform_engine","events_processed":504,"events_dropped":0,"avg_latency_ms":258.58604763309097,"throughput_eps":0,"last_update":"2026-03-21T22:18:08.965114662Z"} +2026/03/21 22:18:13 [detection_layer] {"stage_name":"detection_layer","events_processed":504,"events_dropped":0,"avg_latency_ms":18.25520104601674,"throughput_eps":0,"last_update":"2026-03-21T22:18:08.966322245Z"} +2026/03/21 22:18:13 ───────────────────────────────────────────────── +Saved state: 14 clusters, 23911 messages, reason: none +2026/03/21 22:18:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:18:18 [metric_collector] {"stage_name":"metric_collector","events_processed":15144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3028.8,"last_update":"2026-03-21T22:18:13.870645678Z"} +2026/03/21 22:18:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:18:13.879440176Z"} +2026/03/21 22:18:18 [transform_engine] {"stage_name":"transform_engine","events_processed":504,"events_dropped":0,"avg_latency_ms":258.58604763309097,"throughput_eps":0,"last_update":"2026-03-21T22:18:13.965823356Z"} +2026/03/21 22:18:18 [detection_layer] {"stage_name":"detection_layer","events_processed":504,"events_dropped":0,"avg_latency_ms":18.25520104601674,"throughput_eps":0,"last_update":"2026-03-21T22:18:13.965718526Z"} +2026/03/21 22:18:18 [log_collector] {"stage_name":"log_collector","events_processed":23910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4782,"last_update":"2026-03-21T22:18:13.870231183Z"} +2026/03/21 22:18:18 ───────────────────────────────────────────────── +2026/03/21 22:18:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:18:23 [log_collector] {"stage_name":"log_collector","events_processed":23913,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4782.6,"last_update":"2026-03-21T22:18:18.870522506Z"} +2026/03/21 22:18:23 [metric_collector] {"stage_name":"metric_collector","events_processed":15149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3029.8,"last_update":"2026-03-21T22:18:18.870882996Z"} +2026/03/21 22:18:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6062,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:18:18.879806261Z"} +2026/03/21 22:18:23 [transform_engine] {"stage_name":"transform_engine","events_processed":505,"events_dropped":0,"avg_latency_ms":229.4205199064728,"throughput_eps":0,"last_update":"2026-03-21T22:18:19.078913175Z"} +2026/03/21 22:18:23 [detection_layer] {"stage_name":"detection_layer","events_processed":504,"events_dropped":0,"avg_latency_ms":18.25520104601674,"throughput_eps":0,"last_update":"2026-03-21T22:18:18.966134797Z"} +2026/03/21 22:18:23 ───────────────────────────────────────────────── +2026/03/21 22:18:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:18:28 [log_collector] {"stage_name":"log_collector","events_processed":23913,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4782.6,"last_update":"2026-03-21T22:18:23.870746762Z"} +2026/03/21 22:18:28 [metric_collector] {"stage_name":"metric_collector","events_processed":15154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3030.8,"last_update":"2026-03-21T22:18:23.870718638Z"} +2026/03/21 22:18:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:18:23.879781331Z"} +2026/03/21 22:18:28 [transform_engine] {"stage_name":"transform_engine","events_processed":505,"events_dropped":0,"avg_latency_ms":229.4205199064728,"throughput_eps":0,"last_update":"2026-03-21T22:18:23.966007771Z"} +2026/03/21 22:18:28 [detection_layer] {"stage_name":"detection_layer","events_processed":505,"events_dropped":0,"avg_latency_ms":17.768082036813393,"throughput_eps":0,"last_update":"2026-03-21T22:18:23.965995417Z"} +2026/03/21 22:18:28 ───────────────────────────────────────────────── +2026/03/21 22:18:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:18:33 [log_collector] {"stage_name":"log_collector","events_processed":23923,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4784.6,"last_update":"2026-03-21T22:18:28.869732704Z"} +2026/03/21 22:18:33 [metric_collector] {"stage_name":"metric_collector","events_processed":15159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3031.8,"last_update":"2026-03-21T22:18:28.870158459Z"} +2026/03/21 22:18:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:18:28.877320019Z"} +2026/03/21 22:18:33 [transform_engine] {"stage_name":"transform_engine","events_processed":505,"events_dropped":0,"avg_latency_ms":229.4205199064728,"throughput_eps":0,"last_update":"2026-03-21T22:18:28.965575777Z"} +2026/03/21 22:18:33 [detection_layer] {"stage_name":"detection_layer","events_processed":505,"events_dropped":0,"avg_latency_ms":17.768082036813393,"throughput_eps":0,"last_update":"2026-03-21T22:18:28.965564816Z"} +2026/03/21 22:18:33 ───────────────────────────────────────────────── +2026/03/21 22:18:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:18:38 [transform_engine] {"stage_name":"transform_engine","events_processed":505,"events_dropped":0,"avg_latency_ms":229.4205199064728,"throughput_eps":0,"last_update":"2026-03-21T22:18:33.965674666Z"} +2026/03/21 22:18:38 [detection_layer] {"stage_name":"detection_layer","events_processed":505,"events_dropped":0,"avg_latency_ms":17.768082036813393,"throughput_eps":0,"last_update":"2026-03-21T22:18:33.965658605Z"} +2026/03/21 22:18:38 [log_collector] {"stage_name":"log_collector","events_processed":23932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4786.4,"last_update":"2026-03-21T22:18:33.869528371Z"} +2026/03/21 22:18:38 [metric_collector] {"stage_name":"metric_collector","events_processed":15164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3032.8,"last_update":"2026-03-21T22:18:33.869659923Z"} +2026/03/21 22:18:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:18:33.876463237Z"} +2026/03/21 22:18:38 ───────────────────────────────────────────────── +2026/03/21 22:18:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:18:43 [log_collector] {"stage_name":"log_collector","events_processed":23951,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4790.2,"last_update":"2026-03-21T22:18:43.870135199Z"} +2026/03/21 22:18:43 [metric_collector] {"stage_name":"metric_collector","events_processed":15169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3033.8,"last_update":"2026-03-21T22:18:38.870283463Z"} +2026/03/21 22:18:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:18:38.878183117Z"} +2026/03/21 22:18:43 [transform_engine] {"stage_name":"transform_engine","events_processed":505,"events_dropped":0,"avg_latency_ms":229.4205199064728,"throughput_eps":0,"last_update":"2026-03-21T22:18:38.965396778Z"} +2026/03/21 22:18:43 [detection_layer] {"stage_name":"detection_layer","events_processed":505,"events_dropped":0,"avg_latency_ms":17.768082036813393,"throughput_eps":0,"last_update":"2026-03-21T22:18:38.965320382Z"} +2026/03/21 22:18:43 ───────────────────────────────────────────────── +2026/03/21 22:18:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:18:48 [log_collector] {"stage_name":"log_collector","events_processed":23951,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4790.2,"last_update":"2026-03-21T22:18:43.870135199Z"} +2026/03/21 22:18:48 [metric_collector] {"stage_name":"metric_collector","events_processed":15174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3034.8,"last_update":"2026-03-21T22:18:43.870664934Z"} +2026/03/21 22:18:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6072,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:18:43.879344833Z"} +2026/03/21 22:18:48 [transform_engine] {"stage_name":"transform_engine","events_processed":505,"events_dropped":0,"avg_latency_ms":229.4205199064728,"throughput_eps":0,"last_update":"2026-03-21T22:18:43.965544741Z"} +2026/03/21 22:18:48 [detection_layer] {"stage_name":"detection_layer","events_processed":505,"events_dropped":0,"avg_latency_ms":17.768082036813393,"throughput_eps":0,"last_update":"2026-03-21T22:18:43.965592022Z"} +2026/03/21 22:18:48 ───────────────────────────────────────────────── +2026/03/21 22:18:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:18:53 [transform_engine] {"stage_name":"transform_engine","events_processed":506,"events_dropped":0,"avg_latency_ms":393.30973452517827,"throughput_eps":0,"last_update":"2026-03-21T22:18:50.014052863Z"} +2026/03/21 22:18:53 [detection_layer] {"stage_name":"detection_layer","events_processed":505,"events_dropped":0,"avg_latency_ms":17.768082036813393,"throughput_eps":0,"last_update":"2026-03-21T22:18:48.966301315Z"} +2026/03/21 22:18:53 [log_collector] {"stage_name":"log_collector","events_processed":23954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4790.8,"last_update":"2026-03-21T22:18:48.869408723Z"} +2026/03/21 22:18:53 [metric_collector] {"stage_name":"metric_collector","events_processed":15179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3035.8,"last_update":"2026-03-21T22:18:48.8699453Z"} +2026/03/21 22:18:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:18:48.877990693Z"} +2026/03/21 22:18:53 ───────────────────────────────────────────────── +2026/03/21 22:18:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:18:58 [log_collector] {"stage_name":"log_collector","events_processed":23954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4790.8,"last_update":"2026-03-21T22:18:53.869475039Z"} +2026/03/21 22:18:58 [metric_collector] {"stage_name":"metric_collector","events_processed":15184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3036.8,"last_update":"2026-03-21T22:18:53.869817295Z"} +2026/03/21 22:18:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6076,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:18:53.878434634Z"} +2026/03/21 22:18:58 [transform_engine] {"stage_name":"transform_engine","events_processed":506,"events_dropped":0,"avg_latency_ms":393.30973452517827,"throughput_eps":0,"last_update":"2026-03-21T22:18:53.965812589Z"} +2026/03/21 22:18:58 [detection_layer] {"stage_name":"detection_layer","events_processed":506,"events_dropped":0,"avg_latency_ms":17.725540029450713,"throughput_eps":0,"last_update":"2026-03-21T22:18:53.965702118Z"} +2026/03/21 22:18:58 ───────────────────────────────────────────────── +2026/03/21 22:19:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:19:03 [detection_layer] {"stage_name":"detection_layer","events_processed":506,"events_dropped":0,"avg_latency_ms":17.725540029450713,"throughput_eps":0,"last_update":"2026-03-21T22:18:58.96590891Z"} +2026/03/21 22:19:03 [log_collector] {"stage_name":"log_collector","events_processed":23954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4790.8,"last_update":"2026-03-21T22:18:58.869424207Z"} +2026/03/21 22:19:03 [metric_collector] {"stage_name":"metric_collector","events_processed":15189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.8,"last_update":"2026-03-21T22:18:58.86991638Z"} +2026/03/21 22:19:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:18:58.878506608Z"} +2026/03/21 22:19:03 [transform_engine] {"stage_name":"transform_engine","events_processed":506,"events_dropped":0,"avg_latency_ms":393.30973452517827,"throughput_eps":0,"last_update":"2026-03-21T22:18:58.96598714Z"} +2026/03/21 22:19:03 ───────────────────────────────────────────────── +2026/03/21 22:19:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:19:08 [transform_engine] {"stage_name":"transform_engine","events_processed":506,"events_dropped":0,"avg_latency_ms":393.30973452517827,"throughput_eps":0,"last_update":"2026-03-21T22:19:03.965638162Z"} +2026/03/21 22:19:08 [detection_layer] {"stage_name":"detection_layer","events_processed":506,"events_dropped":0,"avg_latency_ms":17.725540029450713,"throughput_eps":0,"last_update":"2026-03-21T22:19:03.965616721Z"} +2026/03/21 22:19:08 [log_collector] {"stage_name":"log_collector","events_processed":23954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4790.8,"last_update":"2026-03-21T22:19:03.870059155Z"} +2026/03/21 22:19:08 [metric_collector] {"stage_name":"metric_collector","events_processed":15194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3038.8,"last_update":"2026-03-21T22:19:03.869764169Z"} +2026/03/21 22:19:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:19:03.878405134Z"} +2026/03/21 22:19:08 ───────────────────────────────────────────────── +2026/03/21 22:19:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:19:13 [log_collector] {"stage_name":"log_collector","events_processed":23954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4790.8,"last_update":"2026-03-21T22:19:08.869408698Z"} +2026/03/21 22:19:13 [metric_collector] {"stage_name":"metric_collector","events_processed":15199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3039.8,"last_update":"2026-03-21T22:19:08.869920147Z"} +2026/03/21 22:19:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6082,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:19:08.878234647Z"} +2026/03/21 22:19:13 [transform_engine] {"stage_name":"transform_engine","events_processed":506,"events_dropped":0,"avg_latency_ms":393.30973452517827,"throughput_eps":0,"last_update":"2026-03-21T22:19:08.965594517Z"} +2026/03/21 22:19:13 [detection_layer] {"stage_name":"detection_layer","events_processed":506,"events_dropped":0,"avg_latency_ms":17.725540029450713,"throughput_eps":0,"last_update":"2026-03-21T22:19:08.965577514Z"} +2026/03/21 22:19:13 ───────────────────────────────────────────────── +2026/03/21 22:19:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:19:18 [detection_layer] {"stage_name":"detection_layer","events_processed":506,"events_dropped":0,"avg_latency_ms":17.725540029450713,"throughput_eps":0,"last_update":"2026-03-21T22:19:13.965377245Z"} +2026/03/21 22:19:18 [log_collector] {"stage_name":"log_collector","events_processed":23954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4790.8,"last_update":"2026-03-21T22:19:13.869962052Z"} +2026/03/21 22:19:18 [metric_collector] {"stage_name":"metric_collector","events_processed":15204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3040.8,"last_update":"2026-03-21T22:19:13.870610325Z"} +2026/03/21 22:19:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:19:13.882172265Z"} +2026/03/21 22:19:18 [transform_engine] {"stage_name":"transform_engine","events_processed":506,"events_dropped":0,"avg_latency_ms":393.30973452517827,"throughput_eps":0,"last_update":"2026-03-21T22:19:13.965426019Z"} +2026/03/21 22:19:18 ───────────────────────────────────────────────── +2026/03/21 22:19:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:19:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:19:18.878726883Z"} +2026/03/21 22:19:23 [transform_engine] {"stage_name":"transform_engine","events_processed":507,"events_dropped":0,"avg_latency_ms":328.8626278201427,"throughput_eps":0,"last_update":"2026-03-21T22:19:19.037109305Z"} +2026/03/21 22:19:23 [detection_layer] {"stage_name":"detection_layer","events_processed":506,"events_dropped":0,"avg_latency_ms":17.725540029450713,"throughput_eps":0,"last_update":"2026-03-21T22:19:18.966015928Z"} +2026/03/21 22:19:23 [log_collector] {"stage_name":"log_collector","events_processed":23954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4790.8,"last_update":"2026-03-21T22:19:18.86959626Z"} +2026/03/21 22:19:23 [metric_collector] {"stage_name":"metric_collector","events_processed":15209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.8,"last_update":"2026-03-21T22:19:18.869794099Z"} +2026/03/21 22:19:23 ───────────────────────────────────────────────── +2026/03/21 22:19:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:19:28 [log_collector] {"stage_name":"log_collector","events_processed":23954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4790.8,"last_update":"2026-03-21T22:19:23.870407741Z"} +2026/03/21 22:19:28 [metric_collector] {"stage_name":"metric_collector","events_processed":15214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3042.8,"last_update":"2026-03-21T22:19:23.870656858Z"} +2026/03/21 22:19:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:19:23.879412081Z"} +2026/03/21 22:19:28 [transform_engine] {"stage_name":"transform_engine","events_processed":507,"events_dropped":0,"avg_latency_ms":328.8626278201427,"throughput_eps":0,"last_update":"2026-03-21T22:19:23.965606249Z"} +2026/03/21 22:19:28 [detection_layer] {"stage_name":"detection_layer","events_processed":507,"events_dropped":0,"avg_latency_ms":18.77592182356057,"throughput_eps":0,"last_update":"2026-03-21T22:19:23.965593654Z"} +2026/03/21 22:19:28 ───────────────────────────────────────────────── +2026/03/21 22:19:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:19:33 [transform_engine] {"stage_name":"transform_engine","events_processed":507,"events_dropped":0,"avg_latency_ms":328.8626278201427,"throughput_eps":0,"last_update":"2026-03-21T22:19:28.965843663Z"} +2026/03/21 22:19:33 [detection_layer] {"stage_name":"detection_layer","events_processed":507,"events_dropped":0,"avg_latency_ms":18.77592182356057,"throughput_eps":0,"last_update":"2026-03-21T22:19:28.965831049Z"} +2026/03/21 22:19:33 [log_collector] {"stage_name":"log_collector","events_processed":23954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4790.8,"last_update":"2026-03-21T22:19:33.869914113Z"} +2026/03/21 22:19:33 [metric_collector] {"stage_name":"metric_collector","events_processed":15219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3043.8,"last_update":"2026-03-21T22:19:28.869807882Z"} +2026/03/21 22:19:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:19:28.878613481Z"} +2026/03/21 22:19:33 ───────────────────────────────────────────────── +2026/03/21 22:19:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:19:38 [detection_layer] {"stage_name":"detection_layer","events_processed":507,"events_dropped":0,"avg_latency_ms":18.77592182356057,"throughput_eps":0,"last_update":"2026-03-21T22:19:33.96577536Z"} +2026/03/21 22:19:38 [log_collector] {"stage_name":"log_collector","events_processed":23954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4790.8,"last_update":"2026-03-21T22:19:33.869914113Z"} +2026/03/21 22:19:38 [metric_collector] {"stage_name":"metric_collector","events_processed":15224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3044.8,"last_update":"2026-03-21T22:19:33.870286286Z"} +2026/03/21 22:19:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:19:33.89165877Z"} +2026/03/21 22:19:38 [transform_engine] {"stage_name":"transform_engine","events_processed":507,"events_dropped":0,"avg_latency_ms":328.8626278201427,"throughput_eps":0,"last_update":"2026-03-21T22:19:33.965787733Z"} +2026/03/21 22:19:38 ───────────────────────────────────────────────── +2026/03/21 22:19:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:19:43 [detection_layer] {"stage_name":"detection_layer","events_processed":507,"events_dropped":0,"avg_latency_ms":18.77592182356057,"throughput_eps":0,"last_update":"2026-03-21T22:19:38.965564538Z"} +2026/03/21 22:19:43 [log_collector] {"stage_name":"log_collector","events_processed":23954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4790.8,"last_update":"2026-03-21T22:19:38.869444074Z"} +2026/03/21 22:19:43 [metric_collector] {"stage_name":"metric_collector","events_processed":15229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3045.8,"last_update":"2026-03-21T22:19:38.870062279Z"} +2026/03/21 22:19:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:19:38.878386415Z"} +2026/03/21 22:19:43 [transform_engine] {"stage_name":"transform_engine","events_processed":507,"events_dropped":0,"avg_latency_ms":328.8626278201427,"throughput_eps":0,"last_update":"2026-03-21T22:19:38.965577492Z"} +2026/03/21 22:19:43 ───────────────────────────────────────────────── +Saved state: 14 clusters, 23955 messages, reason: none +2026/03/21 22:19:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:19:48 [transform_engine] {"stage_name":"transform_engine","events_processed":507,"events_dropped":0,"avg_latency_ms":328.8626278201427,"throughput_eps":0,"last_update":"2026-03-21T22:19:43.965394881Z"} +2026/03/21 22:19:48 [detection_layer] {"stage_name":"detection_layer","events_processed":507,"events_dropped":0,"avg_latency_ms":18.77592182356057,"throughput_eps":0,"last_update":"2026-03-21T22:19:43.965382157Z"} +2026/03/21 22:19:48 [log_collector] {"stage_name":"log_collector","events_processed":23954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4790.8,"last_update":"2026-03-21T22:19:43.870194561Z"} +2026/03/21 22:19:48 [metric_collector] {"stage_name":"metric_collector","events_processed":15234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3046.8,"last_update":"2026-03-21T22:19:43.869820083Z"} +2026/03/21 22:19:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:19:43.880153169Z"} +2026/03/21 22:19:48 ───────────────────────────────────────────────── +2026/03/21 22:19:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:19:53 [log_collector] {"stage_name":"log_collector","events_processed":23959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4791.8,"last_update":"2026-03-21T22:19:48.869689187Z"} +2026/03/21 22:19:53 [metric_collector] {"stage_name":"metric_collector","events_processed":15239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3047.8,"last_update":"2026-03-21T22:19:48.869848483Z"} +2026/03/21 22:19:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:19:48.876886466Z"} +2026/03/21 22:19:53 [transform_engine] {"stage_name":"transform_engine","events_processed":508,"events_dropped":0,"avg_latency_ms":288.69919105611416,"throughput_eps":0,"last_update":"2026-03-21T22:19:49.094225184Z"} +2026/03/21 22:19:53 [detection_layer] {"stage_name":"detection_layer","events_processed":507,"events_dropped":0,"avg_latency_ms":18.77592182356057,"throughput_eps":0,"last_update":"2026-03-21T22:19:48.966162977Z"} +2026/03/21 22:19:53 ───────────────────────────────────────────────── +2026/03/21 22:19:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:19:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:19:53.878436175Z"} +2026/03/21 22:19:58 [transform_engine] {"stage_name":"transform_engine","events_processed":508,"events_dropped":0,"avg_latency_ms":288.69919105611416,"throughput_eps":0,"last_update":"2026-03-21T22:19:53.965507092Z"} +2026/03/21 22:19:58 [detection_layer] {"stage_name":"detection_layer","events_processed":508,"events_dropped":0,"avg_latency_ms":19.27050705884846,"throughput_eps":0,"last_update":"2026-03-21T22:19:53.965496411Z"} +2026/03/21 22:19:58 [log_collector] {"stage_name":"log_collector","events_processed":23959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4791.8,"last_update":"2026-03-21T22:19:53.869729876Z"} +2026/03/21 22:19:58 [metric_collector] {"stage_name":"metric_collector","events_processed":15244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3048.8,"last_update":"2026-03-21T22:19:53.869807795Z"} +2026/03/21 22:19:58 ───────────────────────────────────────────────── +2026/03/21 22:20:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:20:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:19:58.880424901Z"} +2026/03/21 22:20:03 [transform_engine] {"stage_name":"transform_engine","events_processed":508,"events_dropped":0,"avg_latency_ms":288.69919105611416,"throughput_eps":0,"last_update":"2026-03-21T22:19:58.96572748Z"} +2026/03/21 22:20:03 [detection_layer] {"stage_name":"detection_layer","events_processed":508,"events_dropped":0,"avg_latency_ms":19.27050705884846,"throughput_eps":0,"last_update":"2026-03-21T22:19:58.965715437Z"} +2026/03/21 22:20:03 [log_collector] {"stage_name":"log_collector","events_processed":23959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4791.8,"last_update":"2026-03-21T22:19:58.869663315Z"} +2026/03/21 22:20:03 [metric_collector] {"stage_name":"metric_collector","events_processed":15249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3049.8,"last_update":"2026-03-21T22:19:58.869654678Z"} +2026/03/21 22:20:03 ───────────────────────────────────────────────── +2026/03/21 22:20:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:20:08 [log_collector] {"stage_name":"log_collector","events_processed":23959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4791.8,"last_update":"2026-03-21T22:20:03.87046296Z"} +2026/03/21 22:20:08 [metric_collector] {"stage_name":"metric_collector","events_processed":15254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3050.8,"last_update":"2026-03-21T22:20:03.870456267Z"} +2026/03/21 22:20:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:20:03.882924714Z"} +2026/03/21 22:20:08 [transform_engine] {"stage_name":"transform_engine","events_processed":508,"events_dropped":0,"avg_latency_ms":288.69919105611416,"throughput_eps":0,"last_update":"2026-03-21T22:20:03.965974857Z"} +2026/03/21 22:20:08 [detection_layer] {"stage_name":"detection_layer","events_processed":508,"events_dropped":0,"avg_latency_ms":19.27050705884846,"throughput_eps":0,"last_update":"2026-03-21T22:20:03.96596587Z"} +2026/03/21 22:20:08 ───────────────────────────────────────────────── +2026/03/21 22:20:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:20:13 [transform_engine] {"stage_name":"transform_engine","events_processed":508,"events_dropped":0,"avg_latency_ms":288.69919105611416,"throughput_eps":0,"last_update":"2026-03-21T22:20:08.965363816Z"} +2026/03/21 22:20:13 [detection_layer] {"stage_name":"detection_layer","events_processed":508,"events_dropped":0,"avg_latency_ms":19.27050705884846,"throughput_eps":0,"last_update":"2026-03-21T22:20:08.965330101Z"} +2026/03/21 22:20:13 [log_collector] {"stage_name":"log_collector","events_processed":23959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4791.8,"last_update":"2026-03-21T22:20:13.869685884Z"} +2026/03/21 22:20:13 [metric_collector] {"stage_name":"metric_collector","events_processed":15259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3051.8,"last_update":"2026-03-21T22:20:08.870168876Z"} +2026/03/21 22:20:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:20:08.878153192Z"} +2026/03/21 22:20:13 ───────────────────────────────────────────────── +2026/03/21 22:20:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:20:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:20:13.877865785Z"} +2026/03/21 22:20:18 [transform_engine] {"stage_name":"transform_engine","events_processed":508,"events_dropped":0,"avg_latency_ms":288.69919105611416,"throughput_eps":0,"last_update":"2026-03-21T22:20:13.966065795Z"} +2026/03/21 22:20:18 [detection_layer] {"stage_name":"detection_layer","events_processed":508,"events_dropped":0,"avg_latency_ms":19.27050705884846,"throughput_eps":0,"last_update":"2026-03-21T22:20:13.966054072Z"} +2026/03/21 22:20:18 [log_collector] {"stage_name":"log_collector","events_processed":23959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4791.8,"last_update":"2026-03-21T22:20:18.869573891Z"} +2026/03/21 22:20:18 [metric_collector] {"stage_name":"metric_collector","events_processed":15264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3052.8,"last_update":"2026-03-21T22:20:13.869999215Z"} +2026/03/21 22:20:18 ───────────────────────────────────────────────── +2026/03/21 22:20:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:20:23 [metric_collector] {"stage_name":"metric_collector","events_processed":15269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3053.8,"last_update":"2026-03-21T22:20:18.869922158Z"} +2026/03/21 22:20:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:20:18.878151884Z"} +2026/03/21 22:20:23 [transform_engine] {"stage_name":"transform_engine","events_processed":509,"events_dropped":0,"avg_latency_ms":251.87412824489132,"throughput_eps":0,"last_update":"2026-03-21T22:20:19.069900327Z"} +2026/03/21 22:20:23 [detection_layer] {"stage_name":"detection_layer","events_processed":508,"events_dropped":0,"avg_latency_ms":19.27050705884846,"throughput_eps":0,"last_update":"2026-03-21T22:20:18.965314546Z"} +2026/03/21 22:20:23 [log_collector] {"stage_name":"log_collector","events_processed":23959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4791.8,"last_update":"2026-03-21T22:20:18.869573891Z"} +2026/03/21 22:20:23 ───────────────────────────────────────────────── +2026/03/21 22:20:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:20:28 [log_collector] {"stage_name":"log_collector","events_processed":23959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4791.8,"last_update":"2026-03-21T22:20:28.869967527Z"} +2026/03/21 22:20:28 [metric_collector] {"stage_name":"metric_collector","events_processed":15279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3055.8,"last_update":"2026-03-21T22:20:28.869760241Z"} +2026/03/21 22:20:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:20:23.880425468Z"} +2026/03/21 22:20:28 [transform_engine] {"stage_name":"transform_engine","events_processed":509,"events_dropped":0,"avg_latency_ms":251.87412824489132,"throughput_eps":0,"last_update":"2026-03-21T22:20:23.965650157Z"} +2026/03/21 22:20:28 [detection_layer] {"stage_name":"detection_layer","events_processed":509,"events_dropped":0,"avg_latency_ms":17.82150904707877,"throughput_eps":0,"last_update":"2026-03-21T22:20:23.965636751Z"} +2026/03/21 22:20:28 ───────────────────────────────────────────────── +2026/03/21 22:20:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:20:33 [log_collector] {"stage_name":"log_collector","events_processed":23959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4791.8,"last_update":"2026-03-21T22:20:28.869967527Z"} +2026/03/21 22:20:33 [metric_collector] {"stage_name":"metric_collector","events_processed":15279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3055.8,"last_update":"2026-03-21T22:20:28.869760241Z"} +2026/03/21 22:20:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:20:28.87624811Z"} +2026/03/21 22:20:33 [transform_engine] {"stage_name":"transform_engine","events_processed":509,"events_dropped":0,"avg_latency_ms":251.87412824489132,"throughput_eps":0,"last_update":"2026-03-21T22:20:28.965380896Z"} +2026/03/21 22:20:33 [detection_layer] {"stage_name":"detection_layer","events_processed":509,"events_dropped":0,"avg_latency_ms":17.82150904707877,"throughput_eps":0,"last_update":"2026-03-21T22:20:28.965371307Z"} +2026/03/21 22:20:33 ───────────────────────────────────────────────── +2026/03/21 22:20:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:20:38 [transform_engine] {"stage_name":"transform_engine","events_processed":509,"events_dropped":0,"avg_latency_ms":251.87412824489132,"throughput_eps":0,"last_update":"2026-03-21T22:20:33.965178757Z"} +2026/03/21 22:20:38 [detection_layer] {"stage_name":"detection_layer","events_processed":509,"events_dropped":0,"avg_latency_ms":17.82150904707877,"throughput_eps":0,"last_update":"2026-03-21T22:20:33.966330284Z"} +2026/03/21 22:20:38 [log_collector] {"stage_name":"log_collector","events_processed":23968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4793.6,"last_update":"2026-03-21T22:20:33.870156238Z"} +2026/03/21 22:20:38 [metric_collector] {"stage_name":"metric_collector","events_processed":15284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3056.8,"last_update":"2026-03-21T22:20:33.870899422Z"} +2026/03/21 22:20:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:20:33.879005491Z"} +2026/03/21 22:20:38 ───────────────────────────────────────────────── +2026/03/21 22:20:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:20:43 [log_collector] {"stage_name":"log_collector","events_processed":24008,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4801.6,"last_update":"2026-03-21T22:20:38.86984565Z"} +2026/03/21 22:20:43 [metric_collector] {"stage_name":"metric_collector","events_processed":15289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3057.8,"last_update":"2026-03-21T22:20:38.869885145Z"} +2026/03/21 22:20:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:20:38.877667073Z"} +2026/03/21 22:20:43 [transform_engine] {"stage_name":"transform_engine","events_processed":509,"events_dropped":0,"avg_latency_ms":251.87412824489132,"throughput_eps":0,"last_update":"2026-03-21T22:20:38.965725832Z"} +2026/03/21 22:20:43 [detection_layer] {"stage_name":"detection_layer","events_processed":509,"events_dropped":0,"avg_latency_ms":17.82150904707877,"throughput_eps":0,"last_update":"2026-03-21T22:20:38.965716534Z"} +2026/03/21 22:20:43 ───────────────────────────────────────────────── +Saved state: 14 clusters, 24321 messages, reason: none +2026/03/21 22:20:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:20:48 [log_collector] {"stage_name":"log_collector","events_processed":24107,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4821.4,"last_update":"2026-03-21T22:20:43.869827367Z"} +2026/03/21 22:20:48 [metric_collector] {"stage_name":"metric_collector","events_processed":15294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3058.8,"last_update":"2026-03-21T22:20:43.870039283Z"} +2026/03/21 22:20:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:20:43.876807719Z"} +2026/03/21 22:20:48 [transform_engine] {"stage_name":"transform_engine","events_processed":509,"events_dropped":0,"avg_latency_ms":251.87412824489132,"throughput_eps":0,"last_update":"2026-03-21T22:20:43.96591691Z"} +2026/03/21 22:20:48 [detection_layer] {"stage_name":"detection_layer","events_processed":509,"events_dropped":0,"avg_latency_ms":17.82150904707877,"throughput_eps":0,"last_update":"2026-03-21T22:20:43.965772072Z"} +2026/03/21 22:20:48 ───────────────────────────────────────────────── +2026/03/21 22:20:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:20:53 [detection_layer] {"stage_name":"detection_layer","events_processed":509,"events_dropped":0,"avg_latency_ms":17.82150904707877,"throughput_eps":0,"last_update":"2026-03-21T22:20:48.965681669Z"} +2026/03/21 22:20:53 [log_collector] {"stage_name":"log_collector","events_processed":24327,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4865.4,"last_update":"2026-03-21T22:20:48.869614949Z"} +2026/03/21 22:20:53 [metric_collector] {"stage_name":"metric_collector","events_processed":15299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3059.8,"last_update":"2026-03-21T22:20:48.870133543Z"} +2026/03/21 22:20:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6122,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:20:48.876424836Z"} +2026/03/21 22:20:53 [transform_engine] {"stage_name":"transform_engine","events_processed":510,"events_dropped":0,"avg_latency_ms":223.98077359591306,"throughput_eps":0,"last_update":"2026-03-21T22:20:49.078111626Z"} +2026/03/21 22:20:53 ───────────────────────────────────────────────── +2026/03/21 22:20:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:20:58 [metric_collector] {"stage_name":"metric_collector","events_processed":15304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3060.8,"last_update":"2026-03-21T22:20:53.869823414Z"} +2026/03/21 22:20:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:20:53.879056592Z"} +2026/03/21 22:20:58 [transform_engine] {"stage_name":"transform_engine","events_processed":510,"events_dropped":0,"avg_latency_ms":223.98077359591306,"throughput_eps":0,"last_update":"2026-03-21T22:20:53.965242743Z"} +2026/03/21 22:20:58 [detection_layer] {"stage_name":"detection_layer","events_processed":510,"events_dropped":0,"avg_latency_ms":16.870359237663017,"throughput_eps":0,"last_update":"2026-03-21T22:20:53.965260136Z"} +2026/03/21 22:20:58 [log_collector] {"stage_name":"log_collector","events_processed":24329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4865.8,"last_update":"2026-03-21T22:20:53.869524592Z"} +2026/03/21 22:20:58 ───────────────────────────────────────────────── +2026/03/21 22:21:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:21:03 [log_collector] {"stage_name":"log_collector","events_processed":24329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4865.8,"last_update":"2026-03-21T22:20:58.869583847Z"} +2026/03/21 22:21:03 [metric_collector] {"stage_name":"metric_collector","events_processed":15309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3061.8,"last_update":"2026-03-21T22:20:58.869973133Z"} +2026/03/21 22:21:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6126,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:20:58.878618306Z"} +2026/03/21 22:21:03 [transform_engine] {"stage_name":"transform_engine","events_processed":510,"events_dropped":0,"avg_latency_ms":223.98077359591306,"throughput_eps":0,"last_update":"2026-03-21T22:20:58.965933038Z"} +2026/03/21 22:21:03 [detection_layer] {"stage_name":"detection_layer","events_processed":510,"events_dropped":0,"avg_latency_ms":16.870359237663017,"throughput_eps":0,"last_update":"2026-03-21T22:20:58.965917058Z"} +2026/03/21 22:21:03 ───────────────────────────────────────────────── +2026/03/21 22:21:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:21:08 [log_collector] {"stage_name":"log_collector","events_processed":24329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4865.8,"last_update":"2026-03-21T22:21:08.86940053Z"} +2026/03/21 22:21:08 [metric_collector] {"stage_name":"metric_collector","events_processed":15314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3062.8,"last_update":"2026-03-21T22:21:03.870152968Z"} +2026/03/21 22:21:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6128,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:21:03.878960811Z"} +2026/03/21 22:21:08 [transform_engine] {"stage_name":"transform_engine","events_processed":510,"events_dropped":0,"avg_latency_ms":223.98077359591306,"throughput_eps":0,"last_update":"2026-03-21T22:21:03.965159055Z"} +2026/03/21 22:21:08 [detection_layer] {"stage_name":"detection_layer","events_processed":510,"events_dropped":0,"avg_latency_ms":16.870359237663017,"throughput_eps":0,"last_update":"2026-03-21T22:21:03.966345859Z"} +2026/03/21 22:21:08 ───────────────────────────────────────────────── +2026/03/21 22:21:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:21:13 [log_collector] {"stage_name":"log_collector","events_processed":24329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4865.8,"last_update":"2026-03-21T22:21:08.86940053Z"} +2026/03/21 22:21:13 [metric_collector] {"stage_name":"metric_collector","events_processed":15319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3063.8,"last_update":"2026-03-21T22:21:08.869733608Z"} +2026/03/21 22:21:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6130,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:21:08.878146645Z"} +2026/03/21 22:21:13 [transform_engine] {"stage_name":"transform_engine","events_processed":510,"events_dropped":0,"avg_latency_ms":223.98077359591306,"throughput_eps":0,"last_update":"2026-03-21T22:21:08.965380874Z"} +2026/03/21 22:21:13 [detection_layer] {"stage_name":"detection_layer","events_processed":510,"events_dropped":0,"avg_latency_ms":16.870359237663017,"throughput_eps":0,"last_update":"2026-03-21T22:21:08.965345697Z"} +2026/03/21 22:21:13 ───────────────────────────────────────────────── +2026/03/21 22:21:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:21:18 [detection_layer] {"stage_name":"detection_layer","events_processed":510,"events_dropped":0,"avg_latency_ms":16.870359237663017,"throughput_eps":0,"last_update":"2026-03-21T22:21:13.965895391Z"} +2026/03/21 22:21:18 [log_collector] {"stage_name":"log_collector","events_processed":24329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4865.8,"last_update":"2026-03-21T22:21:13.870216915Z"} +2026/03/21 22:21:18 [metric_collector] {"stage_name":"metric_collector","events_processed":15324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3064.8,"last_update":"2026-03-21T22:21:13.870498655Z"} +2026/03/21 22:21:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:21:13.878585347Z"} +2026/03/21 22:21:18 [transform_engine] {"stage_name":"transform_engine","events_processed":510,"events_dropped":0,"avg_latency_ms":223.98077359591306,"throughput_eps":0,"last_update":"2026-03-21T22:21:13.965906231Z"} +2026/03/21 22:21:18 ───────────────────────────────────────────────── +2026/03/21 22:21:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:21:23 [metric_collector] {"stage_name":"metric_collector","events_processed":15329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3065.8,"last_update":"2026-03-21T22:21:18.870540643Z"} +2026/03/21 22:21:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:21:18.87934475Z"} +2026/03/21 22:21:23 [transform_engine] {"stage_name":"transform_engine","events_processed":511,"events_dropped":0,"avg_latency_ms":194.17414487673048,"throughput_eps":0,"last_update":"2026-03-21T22:21:19.040632275Z"} +2026/03/21 22:21:23 [detection_layer] {"stage_name":"detection_layer","events_processed":510,"events_dropped":0,"avg_latency_ms":16.870359237663017,"throughput_eps":0,"last_update":"2026-03-21T22:21:18.965671299Z"} +2026/03/21 22:21:23 [log_collector] {"stage_name":"log_collector","events_processed":24329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4865.8,"last_update":"2026-03-21T22:21:23.869410534Z"} +2026/03/21 22:21:23 ───────────────────────────────────────────────── +2026/03/21 22:21:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:21:28 [log_collector] {"stage_name":"log_collector","events_processed":24329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4865.8,"last_update":"2026-03-21T22:21:23.869410534Z"} +2026/03/21 22:21:28 [metric_collector] {"stage_name":"metric_collector","events_processed":15339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3067.8,"last_update":"2026-03-21T22:21:28.870293777Z"} +2026/03/21 22:21:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:21:23.877953981Z"} +2026/03/21 22:21:28 [transform_engine] {"stage_name":"transform_engine","events_processed":511,"events_dropped":0,"avg_latency_ms":194.17414487673048,"throughput_eps":0,"last_update":"2026-03-21T22:21:23.965054684Z"} +2026/03/21 22:21:28 [detection_layer] {"stage_name":"detection_layer","events_processed":511,"events_dropped":0,"avg_latency_ms":17.766790590130412,"throughput_eps":0,"last_update":"2026-03-21T22:21:23.96618546Z"} +2026/03/21 22:21:28 ───────────────────────────────────────────────── +2026/03/21 22:21:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:21:33 [metric_collector] {"stage_name":"metric_collector","events_processed":15339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3067.8,"last_update":"2026-03-21T22:21:28.870293777Z"} +2026/03/21 22:21:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:21:28.878181278Z"} +2026/03/21 22:21:33 [transform_engine] {"stage_name":"transform_engine","events_processed":511,"events_dropped":0,"avg_latency_ms":194.17414487673048,"throughput_eps":0,"last_update":"2026-03-21T22:21:28.965437018Z"} +2026/03/21 22:21:33 [detection_layer] {"stage_name":"detection_layer","events_processed":511,"events_dropped":0,"avg_latency_ms":17.766790590130412,"throughput_eps":0,"last_update":"2026-03-21T22:21:28.965429664Z"} +2026/03/21 22:21:33 [log_collector] {"stage_name":"log_collector","events_processed":24329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4865.8,"last_update":"2026-03-21T22:21:28.870312694Z"} +2026/03/21 22:21:33 ───────────────────────────────────────────────── +2026/03/21 22:21:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:21:38 [log_collector] {"stage_name":"log_collector","events_processed":24329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4865.8,"last_update":"2026-03-21T22:21:33.870122851Z"} +2026/03/21 22:21:38 [metric_collector] {"stage_name":"metric_collector","events_processed":15344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3068.8,"last_update":"2026-03-21T22:21:33.870541472Z"} +2026/03/21 22:21:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:21:33.879361769Z"} +2026/03/21 22:21:38 [transform_engine] {"stage_name":"transform_engine","events_processed":511,"events_dropped":0,"avg_latency_ms":194.17414487673048,"throughput_eps":0,"last_update":"2026-03-21T22:21:33.965707395Z"} +2026/03/21 22:21:38 [detection_layer] {"stage_name":"detection_layer","events_processed":511,"events_dropped":0,"avg_latency_ms":17.766790590130412,"throughput_eps":0,"last_update":"2026-03-21T22:21:33.965693448Z"} +2026/03/21 22:21:38 ───────────────────────────────────────────────── +2026/03/21 22:21:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:21:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:21:38.878919226Z"} +2026/03/21 22:21:43 [transform_engine] {"stage_name":"transform_engine","events_processed":511,"events_dropped":0,"avg_latency_ms":194.17414487673048,"throughput_eps":0,"last_update":"2026-03-21T22:21:38.965099135Z"} +2026/03/21 22:21:43 [detection_layer] {"stage_name":"detection_layer","events_processed":511,"events_dropped":0,"avg_latency_ms":17.766790590130412,"throughput_eps":0,"last_update":"2026-03-21T22:21:38.965381716Z"} +2026/03/21 22:21:43 [log_collector] {"stage_name":"log_collector","events_processed":24329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4865.8,"last_update":"2026-03-21T22:21:38.869400872Z"} +2026/03/21 22:21:43 [metric_collector] {"stage_name":"metric_collector","events_processed":15349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3069.8,"last_update":"2026-03-21T22:21:38.870081526Z"} +2026/03/21 22:21:43 ───────────────────────────────────────────────── +2026/03/21 22:21:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:21:48 [log_collector] {"stage_name":"log_collector","events_processed":24329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4865.8,"last_update":"2026-03-21T22:21:43.870191529Z"} +2026/03/21 22:21:48 [metric_collector] {"stage_name":"metric_collector","events_processed":15354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3070.8,"last_update":"2026-03-21T22:21:43.870836184Z"} +2026/03/21 22:21:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:21:43.878388842Z"} +2026/03/21 22:21:48 [transform_engine] {"stage_name":"transform_engine","events_processed":511,"events_dropped":0,"avg_latency_ms":194.17414487673048,"throughput_eps":0,"last_update":"2026-03-21T22:21:43.965557134Z"} +2026/03/21 22:21:48 [detection_layer] {"stage_name":"detection_layer","events_processed":511,"events_dropped":0,"avg_latency_ms":17.766790590130412,"throughput_eps":0,"last_update":"2026-03-21T22:21:43.96561761Z"} +2026/03/21 22:21:48 ───────────────────────────────────────────────── +2026/03/21 22:21:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:21:53 [log_collector] {"stage_name":"log_collector","events_processed":24329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4865.8,"last_update":"2026-03-21T22:21:48.869899287Z"} +2026/03/21 22:21:53 [metric_collector] {"stage_name":"metric_collector","events_processed":15359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3071.8,"last_update":"2026-03-21T22:21:48.870247494Z"} +2026/03/21 22:21:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:21:48.878983791Z"} +2026/03/21 22:21:53 [transform_engine] {"stage_name":"transform_engine","events_processed":512,"events_dropped":0,"avg_latency_ms":169.6585957013844,"throughput_eps":0,"last_update":"2026-03-21T22:21:49.03671928Z"} +2026/03/21 22:21:53 [detection_layer] {"stage_name":"detection_layer","events_processed":511,"events_dropped":0,"avg_latency_ms":17.766790590130412,"throughput_eps":0,"last_update":"2026-03-21T22:21:48.966246404Z"} +2026/03/21 22:21:53 ───────────────────────────────────────────────── +2026/03/21 22:21:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:21:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:21:53.878788Z"} +2026/03/21 22:21:58 [transform_engine] {"stage_name":"transform_engine","events_processed":512,"events_dropped":0,"avg_latency_ms":169.6585957013844,"throughput_eps":0,"last_update":"2026-03-21T22:21:53.966003583Z"} +2026/03/21 22:21:58 [detection_layer] {"stage_name":"detection_layer","events_processed":512,"events_dropped":0,"avg_latency_ms":18.32576467210433,"throughput_eps":0,"last_update":"2026-03-21T22:21:53.965994345Z"} +2026/03/21 22:21:58 [log_collector] {"stage_name":"log_collector","events_processed":24329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4865.8,"last_update":"2026-03-21T22:21:58.870311754Z"} +2026/03/21 22:21:58 [metric_collector] {"stage_name":"metric_collector","events_processed":15364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3072.8,"last_update":"2026-03-21T22:21:53.870548315Z"} +2026/03/21 22:21:58 ───────────────────────────────────────────────── +2026/03/21 22:22:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:22:03 [log_collector] {"stage_name":"log_collector","events_processed":24329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4865.8,"last_update":"2026-03-21T22:21:58.870311754Z"} +2026/03/21 22:22:03 [metric_collector] {"stage_name":"metric_collector","events_processed":15369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3073.8,"last_update":"2026-03-21T22:21:58.870705347Z"} +2026/03/21 22:22:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:21:58.879581873Z"} +2026/03/21 22:22:03 [transform_engine] {"stage_name":"transform_engine","events_processed":512,"events_dropped":0,"avg_latency_ms":169.6585957013844,"throughput_eps":0,"last_update":"2026-03-21T22:21:58.965873405Z"} +2026/03/21 22:22:03 [detection_layer] {"stage_name":"detection_layer","events_processed":512,"events_dropped":0,"avg_latency_ms":18.32576467210433,"throughput_eps":0,"last_update":"2026-03-21T22:21:58.965860521Z"} +2026/03/21 22:22:03 ───────────────────────────────────────────────── +2026/03/21 22:22:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:22:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:22:03.878579402Z"} +2026/03/21 22:22:08 [transform_engine] {"stage_name":"transform_engine","events_processed":512,"events_dropped":0,"avg_latency_ms":169.6585957013844,"throughput_eps":0,"last_update":"2026-03-21T22:22:03.965763032Z"} +2026/03/21 22:22:08 [detection_layer] {"stage_name":"detection_layer","events_processed":512,"events_dropped":0,"avg_latency_ms":18.32576467210433,"throughput_eps":0,"last_update":"2026-03-21T22:22:03.965746471Z"} +2026/03/21 22:22:08 [log_collector] {"stage_name":"log_collector","events_processed":24329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4865.8,"last_update":"2026-03-21T22:22:03.869506441Z"} +2026/03/21 22:22:08 [metric_collector] {"stage_name":"metric_collector","events_processed":15374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3074.8,"last_update":"2026-03-21T22:22:03.869897069Z"} +2026/03/21 22:22:08 ───────────────────────────────────────────────── +2026/03/21 22:22:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:22:13 [log_collector] {"stage_name":"log_collector","events_processed":24329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4865.8,"last_update":"2026-03-21T22:22:13.870122819Z"} +2026/03/21 22:22:13 [metric_collector] {"stage_name":"metric_collector","events_processed":15379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3075.8,"last_update":"2026-03-21T22:22:08.870422212Z"} +2026/03/21 22:22:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:22:08.879498128Z"} +2026/03/21 22:22:13 [transform_engine] {"stage_name":"transform_engine","events_processed":512,"events_dropped":0,"avg_latency_ms":169.6585957013844,"throughput_eps":0,"last_update":"2026-03-21T22:22:08.965859263Z"} +2026/03/21 22:22:13 [detection_layer] {"stage_name":"detection_layer","events_processed":512,"events_dropped":0,"avg_latency_ms":18.32576467210433,"throughput_eps":0,"last_update":"2026-03-21T22:22:08.96584246Z"} +2026/03/21 22:22:13 ───────────────────────────────────────────────── +2026/03/21 22:22:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:22:18 [log_collector] {"stage_name":"log_collector","events_processed":24329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4865.8,"last_update":"2026-03-21T22:22:13.870122819Z"} +2026/03/21 22:22:18 [metric_collector] {"stage_name":"metric_collector","events_processed":15384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3076.8,"last_update":"2026-03-21T22:22:13.870531733Z"} +2026/03/21 22:22:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:22:13.878431897Z"} +2026/03/21 22:22:18 [transform_engine] {"stage_name":"transform_engine","events_processed":512,"events_dropped":0,"avg_latency_ms":169.6585957013844,"throughput_eps":0,"last_update":"2026-03-21T22:22:13.965755115Z"} +2026/03/21 22:22:18 [detection_layer] {"stage_name":"detection_layer","events_processed":512,"events_dropped":0,"avg_latency_ms":18.32576467210433,"throughput_eps":0,"last_update":"2026-03-21T22:22:13.965747431Z"} +2026/03/21 22:22:18 ───────────────────────────────────────────────── +Saved state: 14 clusters, 24330 messages, reason: none +2026/03/21 22:22:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:22:23 [transform_engine] {"stage_name":"transform_engine","events_processed":513,"events_dropped":0,"avg_latency_ms":149.49769176110755,"throughput_eps":0,"last_update":"2026-03-21T22:22:19.034945675Z"} +2026/03/21 22:22:23 [detection_layer] {"stage_name":"detection_layer","events_processed":512,"events_dropped":0,"avg_latency_ms":18.32576467210433,"throughput_eps":0,"last_update":"2026-03-21T22:22:18.96607605Z"} +2026/03/21 22:22:23 [log_collector] {"stage_name":"log_collector","events_processed":24332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4866.4,"last_update":"2026-03-21T22:22:23.869558444Z"} +2026/03/21 22:22:23 [metric_collector] {"stage_name":"metric_collector","events_processed":15389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3077.8,"last_update":"2026-03-21T22:22:18.869831851Z"} +2026/03/21 22:22:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:22:18.877916309Z"} +2026/03/21 22:22:23 ───────────────────────────────────────────────── +2026/03/21 22:22:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:22:28 [log_collector] {"stage_name":"log_collector","events_processed":24338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4867.6,"last_update":"2026-03-21T22:22:28.870629672Z"} +2026/03/21 22:22:28 [metric_collector] {"stage_name":"metric_collector","events_processed":15394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3078.8,"last_update":"2026-03-21T22:22:23.870160438Z"} +2026/03/21 22:22:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:22:23.877181809Z"} +2026/03/21 22:22:28 [transform_engine] {"stage_name":"transform_engine","events_processed":513,"events_dropped":0,"avg_latency_ms":149.49769176110755,"throughput_eps":0,"last_update":"2026-03-21T22:22:23.965405341Z"} +2026/03/21 22:22:28 [detection_layer] {"stage_name":"detection_layer","events_processed":513,"events_dropped":0,"avg_latency_ms":19.111296137683464,"throughput_eps":0,"last_update":"2026-03-21T22:22:23.965395622Z"} +2026/03/21 22:22:28 ───────────────────────────────────────────────── +2026/03/21 22:22:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:22:33 [log_collector] {"stage_name":"log_collector","events_processed":24343,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4868.6,"last_update":"2026-03-21T22:22:33.869544905Z"} +2026/03/21 22:22:33 [metric_collector] {"stage_name":"metric_collector","events_processed":15399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3079.8,"last_update":"2026-03-21T22:22:28.870770782Z"} +2026/03/21 22:22:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:22:28.877343684Z"} +2026/03/21 22:22:33 [transform_engine] {"stage_name":"transform_engine","events_processed":513,"events_dropped":0,"avg_latency_ms":149.49769176110755,"throughput_eps":0,"last_update":"2026-03-21T22:22:28.965711563Z"} +2026/03/21 22:22:33 [detection_layer] {"stage_name":"detection_layer","events_processed":513,"events_dropped":0,"avg_latency_ms":19.111296137683464,"throughput_eps":0,"last_update":"2026-03-21T22:22:28.965698057Z"} +2026/03/21 22:22:33 ───────────────────────────────────────────────── +2026/03/21 22:22:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:22:38 [log_collector] {"stage_name":"log_collector","events_processed":24343,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4868.6,"last_update":"2026-03-21T22:22:33.869544905Z"} +2026/03/21 22:22:38 [metric_collector] {"stage_name":"metric_collector","events_processed":15404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3080.8,"last_update":"2026-03-21T22:22:33.870081704Z"} +2026/03/21 22:22:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:22:33.878111826Z"} +2026/03/21 22:22:38 [transform_engine] {"stage_name":"transform_engine","events_processed":513,"events_dropped":0,"avg_latency_ms":149.49769176110755,"throughput_eps":0,"last_update":"2026-03-21T22:22:33.965470542Z"} +2026/03/21 22:22:38 [detection_layer] {"stage_name":"detection_layer","events_processed":513,"events_dropped":0,"avg_latency_ms":19.111296137683464,"throughput_eps":0,"last_update":"2026-03-21T22:22:33.965455965Z"} +2026/03/21 22:22:38 ───────────────────────────────────────────────── +2026/03/21 22:22:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:22:43 [transform_engine] {"stage_name":"transform_engine","events_processed":513,"events_dropped":0,"avg_latency_ms":149.49769176110755,"throughput_eps":0,"last_update":"2026-03-21T22:22:38.965828387Z"} +2026/03/21 22:22:43 [detection_layer] {"stage_name":"detection_layer","events_processed":513,"events_dropped":0,"avg_latency_ms":19.111296137683464,"throughput_eps":0,"last_update":"2026-03-21T22:22:38.965817766Z"} +2026/03/21 22:22:43 [log_collector] {"stage_name":"log_collector","events_processed":24350,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4870,"last_update":"2026-03-21T22:22:38.869735789Z"} +2026/03/21 22:22:43 [metric_collector] {"stage_name":"metric_collector","events_processed":15409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3081.8,"last_update":"2026-03-21T22:22:38.869920763Z"} +2026/03/21 22:22:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:22:38.877643548Z"} +2026/03/21 22:22:43 ───────────────────────────────────────────────── +2026/03/21 22:22:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:22:48 [log_collector] {"stage_name":"log_collector","events_processed":24373,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4874.6,"last_update":"2026-03-21T22:22:48.869759002Z"} +2026/03/21 22:22:48 [metric_collector] {"stage_name":"metric_collector","events_processed":15414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3082.8,"last_update":"2026-03-21T22:22:43.87007269Z"} +2026/03/21 22:22:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:22:43.878379684Z"} +2026/03/21 22:22:48 [transform_engine] {"stage_name":"transform_engine","events_processed":513,"events_dropped":0,"avg_latency_ms":149.49769176110755,"throughput_eps":0,"last_update":"2026-03-21T22:22:43.965680829Z"} +2026/03/21 22:22:48 [detection_layer] {"stage_name":"detection_layer","events_processed":513,"events_dropped":0,"avg_latency_ms":19.111296137683464,"throughput_eps":0,"last_update":"2026-03-21T22:22:43.965668596Z"} +2026/03/21 22:22:48 ───────────────────────────────────────────────── +2026/03/21 22:22:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:22:53 [transform_engine] {"stage_name":"transform_engine","events_processed":514,"events_dropped":0,"avg_latency_ms":142.38133800888605,"throughput_eps":0,"last_update":"2026-03-21T22:22:49.079552169Z"} +2026/03/21 22:22:53 [detection_layer] {"stage_name":"detection_layer","events_processed":513,"events_dropped":0,"avg_latency_ms":19.111296137683464,"throughput_eps":0,"last_update":"2026-03-21T22:22:48.965682845Z"} +2026/03/21 22:22:53 [log_collector] {"stage_name":"log_collector","events_processed":24373,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4874.6,"last_update":"2026-03-21T22:22:48.869759002Z"} +2026/03/21 22:22:53 [metric_collector] {"stage_name":"metric_collector","events_processed":15419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3083.8,"last_update":"2026-03-21T22:22:48.869927815Z"} +2026/03/21 22:22:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6170,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:22:48.878447436Z"} +2026/03/21 22:22:53 ───────────────────────────────────────────────── +2026/03/21 22:22:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:22:58 [log_collector] {"stage_name":"log_collector","events_processed":24373,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4874.6,"last_update":"2026-03-21T22:22:53.870156393Z"} +2026/03/21 22:22:58 [metric_collector] {"stage_name":"metric_collector","events_processed":15424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3084.8,"last_update":"2026-03-21T22:22:53.87073953Z"} +2026/03/21 22:22:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:22:53.878831913Z"} +2026/03/21 22:22:58 [transform_engine] {"stage_name":"transform_engine","events_processed":514,"events_dropped":0,"avg_latency_ms":142.38133800888605,"throughput_eps":0,"last_update":"2026-03-21T22:22:53.966049177Z"} +2026/03/21 22:22:58 [detection_layer] {"stage_name":"detection_layer","events_processed":514,"events_dropped":0,"avg_latency_ms":19.44314491014677,"throughput_eps":0,"last_update":"2026-03-21T22:22:53.966039549Z"} +2026/03/21 22:22:58 ───────────────────────────────────────────────── +2026/03/21 22:23:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:23:03 [log_collector] {"stage_name":"log_collector","events_processed":24373,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4874.6,"last_update":"2026-03-21T22:23:03.869429201Z"} +2026/03/21 22:23:03 [metric_collector] {"stage_name":"metric_collector","events_processed":15429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3085.8,"last_update":"2026-03-21T22:22:58.87038092Z"} +2026/03/21 22:23:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:22:58.879345494Z"} +2026/03/21 22:23:03 [transform_engine] {"stage_name":"transform_engine","events_processed":514,"events_dropped":0,"avg_latency_ms":142.38133800888605,"throughput_eps":0,"last_update":"2026-03-21T22:22:58.965886373Z"} +2026/03/21 22:23:03 [detection_layer] {"stage_name":"detection_layer","events_processed":514,"events_dropped":0,"avg_latency_ms":19.44314491014677,"throughput_eps":0,"last_update":"2026-03-21T22:22:58.965872547Z"} +2026/03/21 22:23:03 ───────────────────────────────────────────────── +2026/03/21 22:23:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:23:08 [log_collector] {"stage_name":"log_collector","events_processed":24373,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4874.6,"last_update":"2026-03-21T22:23:08.869537301Z"} +2026/03/21 22:23:08 [metric_collector] {"stage_name":"metric_collector","events_processed":15434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3086.8,"last_update":"2026-03-21T22:23:03.869913609Z"} +2026/03/21 22:23:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:23:03.87898656Z"} +2026/03/21 22:23:08 [transform_engine] {"stage_name":"transform_engine","events_processed":514,"events_dropped":0,"avg_latency_ms":142.38133800888605,"throughput_eps":0,"last_update":"2026-03-21T22:23:03.965181997Z"} +2026/03/21 22:23:08 [detection_layer] {"stage_name":"detection_layer","events_processed":514,"events_dropped":0,"avg_latency_ms":19.44314491014677,"throughput_eps":0,"last_update":"2026-03-21T22:23:03.966398137Z"} +2026/03/21 22:23:08 ───────────────────────────────────────────────── +2026/03/21 22:23:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:23:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:23:08.878337399Z"} +2026/03/21 22:23:13 [transform_engine] {"stage_name":"transform_engine","events_processed":514,"events_dropped":0,"avg_latency_ms":142.38133800888605,"throughput_eps":0,"last_update":"2026-03-21T22:23:08.965518805Z"} +2026/03/21 22:23:13 [detection_layer] {"stage_name":"detection_layer","events_processed":514,"events_dropped":0,"avg_latency_ms":19.44314491014677,"throughput_eps":0,"last_update":"2026-03-21T22:23:08.965510949Z"} +2026/03/21 22:23:13 [log_collector] {"stage_name":"log_collector","events_processed":24373,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4874.6,"last_update":"2026-03-21T22:23:08.869537301Z"} +2026/03/21 22:23:13 [metric_collector] {"stage_name":"metric_collector","events_processed":15439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3087.8,"last_update":"2026-03-21T22:23:08.870260817Z"} +2026/03/21 22:23:13 ───────────────────────────────────────────────── +2026/03/21 22:23:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:23:18 [metric_collector] {"stage_name":"metric_collector","events_processed":15444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3088.8,"last_update":"2026-03-21T22:23:13.869969707Z"} +2026/03/21 22:23:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:23:13.878726192Z"} +2026/03/21 22:23:18 [transform_engine] {"stage_name":"transform_engine","events_processed":514,"events_dropped":0,"avg_latency_ms":142.38133800888605,"throughput_eps":0,"last_update":"2026-03-21T22:23:13.965917207Z"} +2026/03/21 22:23:18 [detection_layer] {"stage_name":"detection_layer","events_processed":514,"events_dropped":0,"avg_latency_ms":19.44314491014677,"throughput_eps":0,"last_update":"2026-03-21T22:23:13.965910304Z"} +2026/03/21 22:23:18 [log_collector] {"stage_name":"log_collector","events_processed":24373,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4874.6,"last_update":"2026-03-21T22:23:18.869500144Z"} +2026/03/21 22:23:18 ───────────────────────────────────────────────── +2026/03/21 22:23:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:23:23 [log_collector] {"stage_name":"log_collector","events_processed":24373,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4874.6,"last_update":"2026-03-21T22:23:18.869500144Z"} +2026/03/21 22:23:23 [metric_collector] {"stage_name":"metric_collector","events_processed":15449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3089.8,"last_update":"2026-03-21T22:23:18.869825107Z"} +2026/03/21 22:23:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:23:18.877895978Z"} +2026/03/21 22:23:23 [transform_engine] {"stage_name":"transform_engine","events_processed":515,"events_dropped":0,"avg_latency_ms":130.11290200710883,"throughput_eps":0,"last_update":"2026-03-21T22:23:19.04716947Z"} +2026/03/21 22:23:23 [detection_layer] {"stage_name":"detection_layer","events_processed":514,"events_dropped":0,"avg_latency_ms":19.44314491014677,"throughput_eps":0,"last_update":"2026-03-21T22:23:18.966099412Z"} +2026/03/21 22:23:23 ───────────────────────────────────────────────── +2026/03/21 22:23:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:23:28 [log_collector] {"stage_name":"log_collector","events_processed":24373,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4874.6,"last_update":"2026-03-21T22:23:28.870015496Z"} +2026/03/21 22:23:28 [metric_collector] {"stage_name":"metric_collector","events_processed":15454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3090.8,"last_update":"2026-03-21T22:23:23.870258962Z"} +2026/03/21 22:23:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:23:23.879554522Z"} +2026/03/21 22:23:28 [transform_engine] {"stage_name":"transform_engine","events_processed":515,"events_dropped":0,"avg_latency_ms":130.11290200710883,"throughput_eps":0,"last_update":"2026-03-21T22:23:23.965733431Z"} +2026/03/21 22:23:28 [detection_layer] {"stage_name":"detection_layer","events_processed":515,"events_dropped":0,"avg_latency_ms":18.56576052811742,"throughput_eps":0,"last_update":"2026-03-21T22:23:23.965746275Z"} +2026/03/21 22:23:28 ───────────────────────────────────────────────── +2026/03/21 22:23:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:23:33 [log_collector] {"stage_name":"log_collector","events_processed":24373,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4874.6,"last_update":"2026-03-21T22:23:28.870015496Z"} +2026/03/21 22:23:33 [metric_collector] {"stage_name":"metric_collector","events_processed":15459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3091.8,"last_update":"2026-03-21T22:23:28.870187335Z"} +2026/03/21 22:23:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:23:28.878631094Z"} +2026/03/21 22:23:33 [transform_engine] {"stage_name":"transform_engine","events_processed":515,"events_dropped":0,"avg_latency_ms":130.11290200710883,"throughput_eps":0,"last_update":"2026-03-21T22:23:28.965823404Z"} +2026/03/21 22:23:33 [detection_layer] {"stage_name":"detection_layer","events_processed":515,"events_dropped":0,"avg_latency_ms":18.56576052811742,"throughput_eps":0,"last_update":"2026-03-21T22:23:28.965927213Z"} +2026/03/21 22:23:33 ───────────────────────────────────────────────── +2026/03/21 22:23:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:23:38 [transform_engine] {"stage_name":"transform_engine","events_processed":515,"events_dropped":0,"avg_latency_ms":130.11290200710883,"throughput_eps":0,"last_update":"2026-03-21T22:23:33.965526031Z"} +2026/03/21 22:23:38 [detection_layer] {"stage_name":"detection_layer","events_processed":515,"events_dropped":0,"avg_latency_ms":18.56576052811742,"throughput_eps":0,"last_update":"2026-03-21T22:23:33.96555724Z"} +2026/03/21 22:23:38 [log_collector] {"stage_name":"log_collector","events_processed":24373,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4874.6,"last_update":"2026-03-21T22:23:33.869753552Z"} +2026/03/21 22:23:38 [metric_collector] {"stage_name":"metric_collector","events_processed":15464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3092.8,"last_update":"2026-03-21T22:23:33.869940459Z"} +2026/03/21 22:23:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:23:33.878238188Z"} +2026/03/21 22:23:38 ───────────────────────────────────────────────── +2026/03/21 22:23:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:23:43 [metric_collector] {"stage_name":"metric_collector","events_processed":15469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3093.8,"last_update":"2026-03-21T22:23:38.869790766Z"} +2026/03/21 22:23:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:23:38.878400031Z"} +2026/03/21 22:23:43 [transform_engine] {"stage_name":"transform_engine","events_processed":515,"events_dropped":0,"avg_latency_ms":130.11290200710883,"throughput_eps":0,"last_update":"2026-03-21T22:23:38.965712031Z"} +2026/03/21 22:23:43 [detection_layer] {"stage_name":"detection_layer","events_processed":515,"events_dropped":0,"avg_latency_ms":18.56576052811742,"throughput_eps":0,"last_update":"2026-03-21T22:23:38.965736548Z"} +2026/03/21 22:23:43 [log_collector] {"stage_name":"log_collector","events_processed":24373,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4874.6,"last_update":"2026-03-21T22:23:43.869413429Z"} +2026/03/21 22:23:43 ───────────────────────────────────────────────── +2026/03/21 22:23:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:23:48 [log_collector] {"stage_name":"log_collector","events_processed":24373,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4874.6,"last_update":"2026-03-21T22:23:43.869413429Z"} +2026/03/21 22:23:48 [metric_collector] {"stage_name":"metric_collector","events_processed":15474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3094.8,"last_update":"2026-03-21T22:23:43.869989935Z"} +2026/03/21 22:23:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:23:43.879054161Z"} +2026/03/21 22:23:48 [transform_engine] {"stage_name":"transform_engine","events_processed":515,"events_dropped":0,"avg_latency_ms":130.11290200710883,"throughput_eps":0,"last_update":"2026-03-21T22:23:43.965189415Z"} +2026/03/21 22:23:48 [detection_layer] {"stage_name":"detection_layer","events_processed":515,"events_dropped":0,"avg_latency_ms":18.56576052811742,"throughput_eps":0,"last_update":"2026-03-21T22:23:43.966307808Z"} +2026/03/21 22:23:48 ───────────────────────────────────────────────── +Saved state: 14 clusters, 24374 messages, reason: none +2026/03/21 22:23:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:23:53 [transform_engine] {"stage_name":"transform_engine","events_processed":515,"events_dropped":0,"avg_latency_ms":130.11290200710883,"throughput_eps":0,"last_update":"2026-03-21T22:23:48.965843073Z"} +2026/03/21 22:23:53 [detection_layer] {"stage_name":"detection_layer","events_processed":515,"events_dropped":0,"avg_latency_ms":18.56576052811742,"throughput_eps":0,"last_update":"2026-03-21T22:23:48.965962993Z"} +2026/03/21 22:23:53 [log_collector] {"stage_name":"log_collector","events_processed":24378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4875.6,"last_update":"2026-03-21T22:23:53.869398728Z"} +2026/03/21 22:23:53 [metric_collector] {"stage_name":"metric_collector","events_processed":15479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3095.8,"last_update":"2026-03-21T22:23:48.869793843Z"} +2026/03/21 22:23:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:23:48.878485356Z"} +2026/03/21 22:23:53 ───────────────────────────────────────────────── +2026/03/21 22:23:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:23:58 [log_collector] {"stage_name":"log_collector","events_processed":24378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4875.6,"last_update":"2026-03-21T22:23:58.869451257Z"} +2026/03/21 22:23:58 [metric_collector] {"stage_name":"metric_collector","events_processed":15484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3096.8,"last_update":"2026-03-21T22:23:53.869804155Z"} +2026/03/21 22:23:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:23:53.875713557Z"} +2026/03/21 22:23:58 [transform_engine] {"stage_name":"transform_engine","events_processed":516,"events_dropped":0,"avg_latency_ms":118.80210720568707,"throughput_eps":0,"last_update":"2026-03-21T22:23:53.965957042Z"} +2026/03/21 22:23:58 [detection_layer] {"stage_name":"detection_layer","events_processed":516,"events_dropped":0,"avg_latency_ms":18.710724622493938,"throughput_eps":0,"last_update":"2026-03-21T22:23:53.96592999Z"} +2026/03/21 22:23:58 ───────────────────────────────────────────────── +2026/03/21 22:24:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:24:03 [detection_layer] {"stage_name":"detection_layer","events_processed":516,"events_dropped":0,"avg_latency_ms":18.710724622493938,"throughput_eps":0,"last_update":"2026-03-21T22:23:58.965502229Z"} +2026/03/21 22:24:03 [log_collector] {"stage_name":"log_collector","events_processed":24378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4875.6,"last_update":"2026-03-21T22:24:03.870361456Z"} +2026/03/21 22:24:03 [metric_collector] {"stage_name":"metric_collector","events_processed":15489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3097.8,"last_update":"2026-03-21T22:23:58.869676889Z"} +2026/03/21 22:24:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:23:58.876192603Z"} +2026/03/21 22:24:03 [transform_engine] {"stage_name":"transform_engine","events_processed":516,"events_dropped":0,"avg_latency_ms":118.80210720568707,"throughput_eps":0,"last_update":"2026-03-21T22:23:58.96543463Z"} +2026/03/21 22:24:03 ───────────────────────────────────────────────── +2026/03/21 22:24:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:24:08 [transform_engine] {"stage_name":"transform_engine","events_processed":516,"events_dropped":0,"avg_latency_ms":118.80210720568707,"throughput_eps":0,"last_update":"2026-03-21T22:24:03.965655206Z"} +2026/03/21 22:24:08 [detection_layer] {"stage_name":"detection_layer","events_processed":516,"events_dropped":0,"avg_latency_ms":18.710724622493938,"throughput_eps":0,"last_update":"2026-03-21T22:24:03.965681046Z"} +2026/03/21 22:24:08 [log_collector] {"stage_name":"log_collector","events_processed":24378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4875.6,"last_update":"2026-03-21T22:24:03.870361456Z"} +2026/03/21 22:24:08 [metric_collector] {"stage_name":"metric_collector","events_processed":15494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3098.8,"last_update":"2026-03-21T22:24:03.870622185Z"} +2026/03/21 22:24:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:24:03.877456599Z"} +2026/03/21 22:24:08 ───────────────────────────────────────────────── +2026/03/21 22:24:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:24:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:24:08.877782487Z"} +2026/03/21 22:24:13 [transform_engine] {"stage_name":"transform_engine","events_processed":516,"events_dropped":0,"avg_latency_ms":118.80210720568707,"throughput_eps":0,"last_update":"2026-03-21T22:24:08.965970693Z"} +2026/03/21 22:24:13 [detection_layer] {"stage_name":"detection_layer","events_processed":516,"events_dropped":0,"avg_latency_ms":18.710724622493938,"throughput_eps":0,"last_update":"2026-03-21T22:24:08.965953039Z"} +2026/03/21 22:24:13 [log_collector] {"stage_name":"log_collector","events_processed":24378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4875.6,"last_update":"2026-03-21T22:24:13.870303096Z"} +2026/03/21 22:24:13 [metric_collector] {"stage_name":"metric_collector","events_processed":15499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3099.8,"last_update":"2026-03-21T22:24:08.869625798Z"} +2026/03/21 22:24:13 ───────────────────────────────────────────────── +2026/03/21 22:24:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:24:18 [log_collector] {"stage_name":"log_collector","events_processed":24378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4875.6,"last_update":"2026-03-21T22:24:13.870303096Z"} +2026/03/21 22:24:18 [metric_collector] {"stage_name":"metric_collector","events_processed":15504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3100.8,"last_update":"2026-03-21T22:24:13.870660841Z"} +2026/03/21 22:24:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:24:13.879471382Z"} +2026/03/21 22:24:18 [transform_engine] {"stage_name":"transform_engine","events_processed":516,"events_dropped":0,"avg_latency_ms":118.80210720568707,"throughput_eps":0,"last_update":"2026-03-21T22:24:13.965668414Z"} +2026/03/21 22:24:18 [detection_layer] {"stage_name":"detection_layer","events_processed":516,"events_dropped":0,"avg_latency_ms":18.710724622493938,"throughput_eps":0,"last_update":"2026-03-21T22:24:13.965651942Z"} +2026/03/21 22:24:18 ───────────────────────────────────────────────── +2026/03/21 22:24:20 [ANOMALY] time=2026-03-21T22:24:20Z score=0.8930 method=SEAD details=MAD!:w=0.25,s=0.77 RRCF-fast!:w=0.20,s=0.96 RRCF-mid:w=0.16,s=0.92 RRCF-slow!:w=0.15,s=0.98 COPOD!:w=0.24,s=0.89 +2026/03/21 22:24:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:24:23 [metric_collector] {"stage_name":"metric_collector","events_processed":15509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3101.8,"last_update":"2026-03-21T22:24:18.869819384Z"} +2026/03/21 22:24:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6206,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:24:18.876584596Z"} +2026/03/21 22:24:23 [transform_engine] {"stage_name":"transform_engine","events_processed":516,"events_dropped":0,"avg_latency_ms":118.80210720568707,"throughput_eps":0,"last_update":"2026-03-21T22:24:18.965784411Z"} +2026/03/21 22:24:23 [detection_layer] {"stage_name":"detection_layer","events_processed":516,"events_dropped":0,"avg_latency_ms":18.710724622493938,"throughput_eps":0,"last_update":"2026-03-21T22:24:18.965808747Z"} +2026/03/21 22:24:23 [log_collector] {"stage_name":"log_collector","events_processed":24378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4875.6,"last_update":"2026-03-21T22:24:18.869476618Z"} +2026/03/21 22:24:23 ───────────────────────────────────────────────── +2026/03/21 22:24:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:24:28 [log_collector] {"stage_name":"log_collector","events_processed":24378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4875.6,"last_update":"2026-03-21T22:24:23.869796374Z"} +2026/03/21 22:24:28 [metric_collector] {"stage_name":"metric_collector","events_processed":15514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3102.8,"last_update":"2026-03-21T22:24:23.869641928Z"} +2026/03/21 22:24:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:24:23.876951803Z"} +2026/03/21 22:24:28 [transform_engine] {"stage_name":"transform_engine","events_processed":517,"events_dropped":0,"avg_latency_ms":340.1285211645496,"throughput_eps":0,"last_update":"2026-03-21T22:24:23.966141218Z"} +2026/03/21 22:24:28 [detection_layer] {"stage_name":"detection_layer","events_processed":517,"events_dropped":0,"avg_latency_ms":17.263394297995152,"throughput_eps":0,"last_update":"2026-03-21T22:24:23.966098406Z"} +2026/03/21 22:24:28 ───────────────────────────────────────────────── +2026/03/21 22:24:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:24:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6210,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:24:28.876706243Z"} +2026/03/21 22:24:33 [transform_engine] {"stage_name":"transform_engine","events_processed":517,"events_dropped":0,"avg_latency_ms":340.1285211645496,"throughput_eps":0,"last_update":"2026-03-21T22:24:28.965918411Z"} +2026/03/21 22:24:33 [detection_layer] {"stage_name":"detection_layer","events_processed":517,"events_dropped":0,"avg_latency_ms":17.263394297995152,"throughput_eps":0,"last_update":"2026-03-21T22:24:28.965937878Z"} +2026/03/21 22:24:33 [log_collector] {"stage_name":"log_collector","events_processed":24378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4875.6,"last_update":"2026-03-21T22:24:33.869449057Z"} +2026/03/21 22:24:33 [metric_collector] {"stage_name":"metric_collector","events_processed":15519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3103.8,"last_update":"2026-03-21T22:24:28.870242279Z"} +2026/03/21 22:24:33 ───────────────────────────────────────────────── +2026/03/21 22:24:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:24:38 [transform_engine] {"stage_name":"transform_engine","events_processed":517,"events_dropped":0,"avg_latency_ms":340.1285211645496,"throughput_eps":0,"last_update":"2026-03-21T22:24:33.965449271Z"} +2026/03/21 22:24:38 [detection_layer] {"stage_name":"detection_layer","events_processed":517,"events_dropped":0,"avg_latency_ms":17.263394297995152,"throughput_eps":0,"last_update":"2026-03-21T22:24:33.965439863Z"} +2026/03/21 22:24:38 [log_collector] {"stage_name":"log_collector","events_processed":24378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4875.6,"last_update":"2026-03-21T22:24:33.869449057Z"} +2026/03/21 22:24:38 [metric_collector] {"stage_name":"metric_collector","events_processed":15524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3104.8,"last_update":"2026-03-21T22:24:33.869737821Z"} +2026/03/21 22:24:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:24:33.877237119Z"} +2026/03/21 22:24:38 ───────────────────────────────────────────────── +2026/03/21 22:24:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:24:43 [log_collector] {"stage_name":"log_collector","events_processed":24387,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4877.4,"last_update":"2026-03-21T22:24:38.869558803Z"} +2026/03/21 22:24:43 [metric_collector] {"stage_name":"metric_collector","events_processed":15529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3105.8,"last_update":"2026-03-21T22:24:38.869894106Z"} +2026/03/21 22:24:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:24:38.878454407Z"} +2026/03/21 22:24:43 [transform_engine] {"stage_name":"transform_engine","events_processed":517,"events_dropped":0,"avg_latency_ms":340.1285211645496,"throughput_eps":0,"last_update":"2026-03-21T22:24:38.965653848Z"} +2026/03/21 22:24:43 [detection_layer] {"stage_name":"detection_layer","events_processed":517,"events_dropped":0,"avg_latency_ms":17.263394297995152,"throughput_eps":0,"last_update":"2026-03-21T22:24:38.965644149Z"} +2026/03/21 22:24:43 ───────────────────────────────────────────────── +2026/03/21 22:24:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:24:48 [transform_engine] {"stage_name":"transform_engine","events_processed":517,"events_dropped":0,"avg_latency_ms":340.1285211645496,"throughput_eps":0,"last_update":"2026-03-21T22:24:43.965132212Z"} +2026/03/21 22:24:48 [detection_layer] {"stage_name":"detection_layer","events_processed":517,"events_dropped":0,"avg_latency_ms":17.263394297995152,"throughput_eps":0,"last_update":"2026-03-21T22:24:43.966225847Z"} +2026/03/21 22:24:48 [log_collector] {"stage_name":"log_collector","events_processed":24697,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4939.4,"last_update":"2026-03-21T22:24:48.870224795Z"} +2026/03/21 22:24:48 [metric_collector] {"stage_name":"metric_collector","events_processed":15534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3106.8,"last_update":"2026-03-21T22:24:43.869924829Z"} +2026/03/21 22:24:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:24:43.876263343Z"} +2026/03/21 22:24:48 ───────────────────────────────────────────────── +2026/03/21 22:24:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:24:53 [transform_engine] {"stage_name":"transform_engine","events_processed":518,"events_dropped":0,"avg_latency_ms":584.8187411316397,"throughput_eps":0,"last_update":"2026-03-21T22:24:50.529146376Z"} +2026/03/21 22:24:53 [detection_layer] {"stage_name":"detection_layer","events_processed":517,"events_dropped":0,"avg_latency_ms":17.263394297995152,"throughput_eps":0,"last_update":"2026-03-21T22:24:48.965549052Z"} +2026/03/21 22:24:53 [log_collector] {"stage_name":"log_collector","events_processed":24697,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4939.4,"last_update":"2026-03-21T22:24:48.870224795Z"} +2026/03/21 22:24:53 [metric_collector] {"stage_name":"metric_collector","events_processed":15539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3107.8,"last_update":"2026-03-21T22:24:48.87091659Z"} +2026/03/21 22:24:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:24:48.876326446Z"} +2026/03/21 22:24:53 ───────────────────────────────────────────────── +2026/03/21 22:24:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:24:58 [transform_engine] {"stage_name":"transform_engine","events_processed":518,"events_dropped":0,"avg_latency_ms":584.8187411316397,"throughput_eps":0,"last_update":"2026-03-21T22:24:53.966035864Z"} +2026/03/21 22:24:58 [detection_layer] {"stage_name":"detection_layer","events_processed":518,"events_dropped":0,"avg_latency_ms":17.885881438396122,"throughput_eps":0,"last_update":"2026-03-21T22:24:53.966023119Z"} +2026/03/21 22:24:58 [log_collector] {"stage_name":"log_collector","events_processed":24742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4948.4,"last_update":"2026-03-21T22:24:53.870216709Z"} +2026/03/21 22:24:58 [metric_collector] {"stage_name":"metric_collector","events_processed":15544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3108.8,"last_update":"2026-03-21T22:24:53.870742537Z"} +2026/03/21 22:24:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:24:53.879844996Z"} +2026/03/21 22:24:58 ───────────────────────────────────────────────── +2026/03/21 22:25:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:25:03 [log_collector] {"stage_name":"log_collector","events_processed":24742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4948.4,"last_update":"2026-03-21T22:24:58.870343148Z"} +2026/03/21 22:25:03 [metric_collector] {"stage_name":"metric_collector","events_processed":15549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3109.8,"last_update":"2026-03-21T22:24:58.870764476Z"} +2026/03/21 22:25:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6222,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:24:58.879385072Z"} +2026/03/21 22:25:03 [transform_engine] {"stage_name":"transform_engine","events_processed":518,"events_dropped":0,"avg_latency_ms":584.8187411316397,"throughput_eps":0,"last_update":"2026-03-21T22:24:58.965651415Z"} +2026/03/21 22:25:03 [detection_layer] {"stage_name":"detection_layer","events_processed":518,"events_dropped":0,"avg_latency_ms":17.885881438396122,"throughput_eps":0,"last_update":"2026-03-21T22:24:58.965668767Z"} +2026/03/21 22:25:03 ───────────────────────────────────────────────── +Saved state: 14 clusters, 24743 messages, reason: none +2026/03/21 22:25:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:25:08 [log_collector] {"stage_name":"log_collector","events_processed":24742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4948.4,"last_update":"2026-03-21T22:25:03.870419281Z"} +2026/03/21 22:25:08 [metric_collector] {"stage_name":"metric_collector","events_processed":15554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3110.8,"last_update":"2026-03-21T22:25:03.870609815Z"} +2026/03/21 22:25:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:25:03.87923999Z"} +2026/03/21 22:25:08 [transform_engine] {"stage_name":"transform_engine","events_processed":518,"events_dropped":0,"avg_latency_ms":584.8187411316397,"throughput_eps":0,"last_update":"2026-03-21T22:25:03.965555306Z"} +2026/03/21 22:25:08 [detection_layer] {"stage_name":"detection_layer","events_processed":518,"events_dropped":0,"avg_latency_ms":17.885881438396122,"throughput_eps":0,"last_update":"2026-03-21T22:25:03.965542462Z"} +2026/03/21 22:25:08 ───────────────────────────────────────────────── +2026/03/21 22:25:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:25:13 [log_collector] {"stage_name":"log_collector","events_processed":24745,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4949,"last_update":"2026-03-21T22:25:08.869414408Z"} +2026/03/21 22:25:13 [metric_collector] {"stage_name":"metric_collector","events_processed":15559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3111.8,"last_update":"2026-03-21T22:25:08.869633378Z"} +2026/03/21 22:25:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:25:08.876841759Z"} +2026/03/21 22:25:13 [transform_engine] {"stage_name":"transform_engine","events_processed":518,"events_dropped":0,"avg_latency_ms":584.8187411316397,"throughput_eps":0,"last_update":"2026-03-21T22:25:08.965884941Z"} +2026/03/21 22:25:13 [detection_layer] {"stage_name":"detection_layer","events_processed":518,"events_dropped":0,"avg_latency_ms":17.885881438396122,"throughput_eps":0,"last_update":"2026-03-21T22:25:08.965872718Z"} +2026/03/21 22:25:13 ───────────────────────────────────────────────── +2026/03/21 22:25:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:25:18 [transform_engine] {"stage_name":"transform_engine","events_processed":518,"events_dropped":0,"avg_latency_ms":584.8187411316397,"throughput_eps":0,"last_update":"2026-03-21T22:25:13.965443257Z"} +2026/03/21 22:25:18 [detection_layer] {"stage_name":"detection_layer","events_processed":518,"events_dropped":0,"avg_latency_ms":17.885881438396122,"throughput_eps":0,"last_update":"2026-03-21T22:25:13.965434731Z"} +2026/03/21 22:25:18 [log_collector] {"stage_name":"log_collector","events_processed":24745,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4949,"last_update":"2026-03-21T22:25:13.869666845Z"} +2026/03/21 22:25:18 [metric_collector] {"stage_name":"metric_collector","events_processed":15564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3112.8,"last_update":"2026-03-21T22:25:13.86998265Z"} +2026/03/21 22:25:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:25:13.876246622Z"} +2026/03/21 22:25:18 ───────────────────────────────────────────────── +2026/03/21 22:25:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:25:23 [detection_layer] {"stage_name":"detection_layer","events_processed":518,"events_dropped":0,"avg_latency_ms":17.885881438396122,"throughput_eps":0,"last_update":"2026-03-21T22:25:18.965566104Z"} +2026/03/21 22:25:23 [log_collector] {"stage_name":"log_collector","events_processed":24756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4951.2,"last_update":"2026-03-21T22:25:18.87011253Z"} +2026/03/21 22:25:23 [metric_collector] {"stage_name":"metric_collector","events_processed":15569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3113.8,"last_update":"2026-03-21T22:25:18.870406934Z"} +2026/03/21 22:25:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:25:18.879284423Z"} +2026/03/21 22:25:23 [transform_engine] {"stage_name":"transform_engine","events_processed":519,"events_dropped":0,"avg_latency_ms":503.04877250531183,"throughput_eps":0,"last_update":"2026-03-21T22:25:19.14155082Z"} +2026/03/21 22:25:23 ───────────────────────────────────────────────── +2026/03/21 22:25:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:25:28 [log_collector] {"stage_name":"log_collector","events_processed":24756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4951.2,"last_update":"2026-03-21T22:25:23.870320108Z"} +2026/03/21 22:25:28 [metric_collector] {"stage_name":"metric_collector","events_processed":15574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3114.8,"last_update":"2026-03-21T22:25:23.870662203Z"} +2026/03/21 22:25:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:25:23.880197343Z"} +2026/03/21 22:25:28 [transform_engine] {"stage_name":"transform_engine","events_processed":519,"events_dropped":0,"avg_latency_ms":503.04877250531183,"throughput_eps":0,"last_update":"2026-03-21T22:25:23.965411698Z"} +2026/03/21 22:25:28 [detection_layer] {"stage_name":"detection_layer","events_processed":519,"events_dropped":0,"avg_latency_ms":17.7630835507169,"throughput_eps":0,"last_update":"2026-03-21T22:25:23.965399465Z"} +2026/03/21 22:25:28 ───────────────────────────────────────────────── +2026/03/21 22:25:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:25:33 [log_collector] {"stage_name":"log_collector","events_processed":24772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4954.4,"last_update":"2026-03-21T22:25:28.869849836Z"} +2026/03/21 22:25:33 [metric_collector] {"stage_name":"metric_collector","events_processed":15579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3115.8,"last_update":"2026-03-21T22:25:28.870346076Z"} +2026/03/21 22:25:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:25:28.879343274Z"} +2026/03/21 22:25:33 [transform_engine] {"stage_name":"transform_engine","events_processed":519,"events_dropped":0,"avg_latency_ms":503.04877250531183,"throughput_eps":0,"last_update":"2026-03-21T22:25:28.965544481Z"} +2026/03/21 22:25:33 [detection_layer] {"stage_name":"detection_layer","events_processed":519,"events_dropped":0,"avg_latency_ms":17.7630835507169,"throughput_eps":0,"last_update":"2026-03-21T22:25:28.965534983Z"} +2026/03/21 22:25:33 ───────────────────────────────────────────────── +2026/03/21 22:25:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:25:38 [detection_layer] {"stage_name":"detection_layer","events_processed":519,"events_dropped":0,"avg_latency_ms":17.7630835507169,"throughput_eps":0,"last_update":"2026-03-21T22:25:33.965689515Z"} +2026/03/21 22:25:38 [log_collector] {"stage_name":"log_collector","events_processed":24772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4954.4,"last_update":"2026-03-21T22:25:33.869851095Z"} +2026/03/21 22:25:38 [metric_collector] {"stage_name":"metric_collector","events_processed":15584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3116.8,"last_update":"2026-03-21T22:25:33.870268034Z"} +2026/03/21 22:25:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:25:33.878298991Z"} +2026/03/21 22:25:38 [transform_engine] {"stage_name":"transform_engine","events_processed":519,"events_dropped":0,"avg_latency_ms":503.04877250531183,"throughput_eps":0,"last_update":"2026-03-21T22:25:33.965726426Z"} +2026/03/21 22:25:38 ───────────────────────────────────────────────── +2026/03/21 22:25:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:25:43 [transform_engine] {"stage_name":"transform_engine","events_processed":519,"events_dropped":0,"avg_latency_ms":503.04877250531183,"throughput_eps":0,"last_update":"2026-03-21T22:25:38.966098855Z"} +2026/03/21 22:25:43 [detection_layer] {"stage_name":"detection_layer","events_processed":519,"events_dropped":0,"avg_latency_ms":17.7630835507169,"throughput_eps":0,"last_update":"2026-03-21T22:25:38.966167906Z"} +2026/03/21 22:25:43 [log_collector] {"stage_name":"log_collector","events_processed":24772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4954.4,"last_update":"2026-03-21T22:25:38.86939709Z"} +2026/03/21 22:25:43 [metric_collector] {"stage_name":"metric_collector","events_processed":15588,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3117.6,"last_update":"2026-03-21T22:25:38.869390598Z"} +2026/03/21 22:25:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:25:38.877786955Z"} +2026/03/21 22:25:43 ───────────────────────────────────────────────── +2026/03/21 22:25:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:25:48 [transform_engine] {"stage_name":"transform_engine","events_processed":519,"events_dropped":0,"avg_latency_ms":503.04877250531183,"throughput_eps":0,"last_update":"2026-03-21T22:25:43.96543556Z"} +2026/03/21 22:25:48 [detection_layer] {"stage_name":"detection_layer","events_processed":519,"events_dropped":0,"avg_latency_ms":17.7630835507169,"throughput_eps":0,"last_update":"2026-03-21T22:25:43.965396015Z"} +2026/03/21 22:25:48 [log_collector] {"stage_name":"log_collector","events_processed":24772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4954.4,"last_update":"2026-03-21T22:25:43.870449372Z"} +2026/03/21 22:25:48 [metric_collector] {"stage_name":"metric_collector","events_processed":15594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3118.8,"last_update":"2026-03-21T22:25:43.870796457Z"} +2026/03/21 22:25:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:25:43.879187123Z"} +2026/03/21 22:25:48 ───────────────────────────────────────────────── +2026/03/21 22:25:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:25:53 [log_collector] {"stage_name":"log_collector","events_processed":24772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4954.4,"last_update":"2026-03-21T22:25:53.869699575Z"} +2026/03/21 22:25:53 [metric_collector] {"stage_name":"metric_collector","events_processed":15599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3119.8,"last_update":"2026-03-21T22:25:48.869897791Z"} +2026/03/21 22:25:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:25:48.878393959Z"} +2026/03/21 22:25:53 [transform_engine] {"stage_name":"transform_engine","events_processed":519,"events_dropped":0,"avg_latency_ms":503.04877250531183,"throughput_eps":0,"last_update":"2026-03-21T22:25:48.9657515Z"} +2026/03/21 22:25:53 [detection_layer] {"stage_name":"detection_layer","events_processed":519,"events_dropped":0,"avg_latency_ms":17.7630835507169,"throughput_eps":0,"last_update":"2026-03-21T22:25:48.965865728Z"} +2026/03/21 22:25:53 ───────────────────────────────────────────────── +2026/03/21 22:25:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:25:58 [transform_engine] {"stage_name":"transform_engine","events_processed":520,"events_dropped":0,"avg_latency_ms":425.8777548042495,"throughput_eps":0,"last_update":"2026-03-21T22:25:53.965966365Z"} +2026/03/21 22:25:58 [detection_layer] {"stage_name":"detection_layer","events_processed":520,"events_dropped":0,"avg_latency_ms":18.41450544057352,"throughput_eps":0,"last_update":"2026-03-21T22:25:53.965954261Z"} +2026/03/21 22:25:58 [log_collector] {"stage_name":"log_collector","events_processed":24772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4954.4,"last_update":"2026-03-21T22:25:53.869699575Z"} +2026/03/21 22:25:58 [metric_collector] {"stage_name":"metric_collector","events_processed":15604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3120.8,"last_update":"2026-03-21T22:25:53.870091306Z"} +2026/03/21 22:25:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:25:53.878797866Z"} +2026/03/21 22:25:58 ───────────────────────────────────────────────── +2026/03/21 22:26:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:26:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6246,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:25:58.880409888Z"} +2026/03/21 22:26:03 [transform_engine] {"stage_name":"transform_engine","events_processed":520,"events_dropped":0,"avg_latency_ms":425.8777548042495,"throughput_eps":0,"last_update":"2026-03-21T22:25:58.965575028Z"} +2026/03/21 22:26:03 [detection_layer] {"stage_name":"detection_layer","events_processed":520,"events_dropped":0,"avg_latency_ms":18.41450544057352,"throughput_eps":0,"last_update":"2026-03-21T22:25:58.965561893Z"} +2026/03/21 22:26:03 [log_collector] {"stage_name":"log_collector","events_processed":24772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4954.4,"last_update":"2026-03-21T22:25:58.870082772Z"} +2026/03/21 22:26:03 [metric_collector] {"stage_name":"metric_collector","events_processed":15609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3121.8,"last_update":"2026-03-21T22:25:58.870408717Z"} +2026/03/21 22:26:03 ───────────────────────────────────────────────── +2026/03/21 22:26:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:26:08 [detection_layer] {"stage_name":"detection_layer","events_processed":520,"events_dropped":0,"avg_latency_ms":18.41450544057352,"throughput_eps":0,"last_update":"2026-03-21T22:26:03.965796276Z"} +2026/03/21 22:26:08 [log_collector] {"stage_name":"log_collector","events_processed":24772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4954.4,"last_update":"2026-03-21T22:26:08.870506691Z"} +2026/03/21 22:26:08 [metric_collector] {"stage_name":"metric_collector","events_processed":15614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3122.8,"last_update":"2026-03-21T22:26:03.870318427Z"} +2026/03/21 22:26:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:26:03.878597018Z"} +2026/03/21 22:26:08 [transform_engine] {"stage_name":"transform_engine","events_processed":520,"events_dropped":0,"avg_latency_ms":425.8777548042495,"throughput_eps":0,"last_update":"2026-03-21T22:26:03.965804501Z"} +2026/03/21 22:26:08 ───────────────────────────────────────────────── +2026/03/21 22:26:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:26:13 [log_collector] {"stage_name":"log_collector","events_processed":24772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4954.4,"last_update":"2026-03-21T22:26:08.870506691Z"} +2026/03/21 22:26:13 [metric_collector] {"stage_name":"metric_collector","events_processed":15619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.8,"last_update":"2026-03-21T22:26:08.870919321Z"} +2026/03/21 22:26:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:26:08.879305569Z"} +2026/03/21 22:26:13 [transform_engine] {"stage_name":"transform_engine","events_processed":520,"events_dropped":0,"avg_latency_ms":425.8777548042495,"throughput_eps":0,"last_update":"2026-03-21T22:26:08.965664466Z"} +2026/03/21 22:26:13 [detection_layer] {"stage_name":"detection_layer","events_processed":520,"events_dropped":0,"avg_latency_ms":18.41450544057352,"throughput_eps":0,"last_update":"2026-03-21T22:26:08.965635941Z"} +2026/03/21 22:26:13 ───────────────────────────────────────────────── +2026/03/21 22:26:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:26:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:26:13.880404117Z"} +2026/03/21 22:26:18 [transform_engine] {"stage_name":"transform_engine","events_processed":520,"events_dropped":0,"avg_latency_ms":425.8777548042495,"throughput_eps":0,"last_update":"2026-03-21T22:26:13.96560285Z"} +2026/03/21 22:26:18 [detection_layer] {"stage_name":"detection_layer","events_processed":520,"events_dropped":0,"avg_latency_ms":18.41450544057352,"throughput_eps":0,"last_update":"2026-03-21T22:26:13.965591148Z"} +2026/03/21 22:26:18 [log_collector] {"stage_name":"log_collector","events_processed":24772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4954.4,"last_update":"2026-03-21T22:26:13.87024912Z"} +2026/03/21 22:26:18 [metric_collector] {"stage_name":"metric_collector","events_processed":15629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3125.8,"last_update":"2026-03-21T22:26:18.869811233Z"} +2026/03/21 22:26:18 ───────────────────────────────────────────────── +2026/03/21 22:26:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:26:23 [log_collector] {"stage_name":"log_collector","events_processed":24772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4954.4,"last_update":"2026-03-21T22:26:18.870048959Z"} +2026/03/21 22:26:23 [metric_collector] {"stage_name":"metric_collector","events_processed":15629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3125.8,"last_update":"2026-03-21T22:26:18.869811233Z"} +2026/03/21 22:26:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:26:18.878729239Z"} +2026/03/21 22:26:23 [transform_engine] {"stage_name":"transform_engine","events_processed":521,"events_dropped":0,"avg_latency_ms":355.0830040433996,"throughput_eps":0,"last_update":"2026-03-21T22:26:19.037868477Z"} +2026/03/21 22:26:23 [detection_layer] {"stage_name":"detection_layer","events_processed":520,"events_dropped":0,"avg_latency_ms":18.41450544057352,"throughput_eps":0,"last_update":"2026-03-21T22:26:18.965949867Z"} +2026/03/21 22:26:23 ───────────────────────────────────────────────── +2026/03/21 22:26:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:26:28 [detection_layer] {"stage_name":"detection_layer","events_processed":521,"events_dropped":0,"avg_latency_ms":19.006977752458816,"throughput_eps":0,"last_update":"2026-03-21T22:26:23.965644282Z"} +2026/03/21 22:26:28 [log_collector] {"stage_name":"log_collector","events_processed":24772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4954.4,"last_update":"2026-03-21T22:26:23.870285513Z"} +2026/03/21 22:26:28 [metric_collector] {"stage_name":"metric_collector","events_processed":15634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3126.8,"last_update":"2026-03-21T22:26:23.870885301Z"} +2026/03/21 22:26:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:26:23.879242573Z"} +2026/03/21 22:26:28 [transform_engine] {"stage_name":"transform_engine","events_processed":521,"events_dropped":0,"avg_latency_ms":355.0830040433996,"throughput_eps":0,"last_update":"2026-03-21T22:26:23.965672415Z"} +2026/03/21 22:26:28 ───────────────────────────────────────────────── +Saved state: 14 clusters, 24773 messages, reason: none +2026/03/21 22:26:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:26:33 [log_collector] {"stage_name":"log_collector","events_processed":24785,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4957,"last_update":"2026-03-21T22:26:33.869705985Z"} +2026/03/21 22:26:33 [metric_collector] {"stage_name":"metric_collector","events_processed":15639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3127.8,"last_update":"2026-03-21T22:26:28.87041417Z"} +2026/03/21 22:26:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:26:28.878608089Z"} +2026/03/21 22:26:33 [transform_engine] {"stage_name":"transform_engine","events_processed":521,"events_dropped":0,"avg_latency_ms":355.0830040433996,"throughput_eps":0,"last_update":"2026-03-21T22:26:28.965790152Z"} +2026/03/21 22:26:33 [detection_layer] {"stage_name":"detection_layer","events_processed":521,"events_dropped":0,"avg_latency_ms":19.006977752458816,"throughput_eps":0,"last_update":"2026-03-21T22:26:28.965782096Z"} +2026/03/21 22:26:33 ───────────────────────────────────────────────── +2026/03/21 22:26:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:26:38 [log_collector] {"stage_name":"log_collector","events_processed":24785,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4957,"last_update":"2026-03-21T22:26:33.869705985Z"} +2026/03/21 22:26:38 [metric_collector] {"stage_name":"metric_collector","events_processed":15644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3128.8,"last_update":"2026-03-21T22:26:33.869919855Z"} +2026/03/21 22:26:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:26:33.876434206Z"} +2026/03/21 22:26:38 [transform_engine] {"stage_name":"transform_engine","events_processed":521,"events_dropped":0,"avg_latency_ms":355.0830040433996,"throughput_eps":0,"last_update":"2026-03-21T22:26:33.965734226Z"} +2026/03/21 22:26:38 [detection_layer] {"stage_name":"detection_layer","events_processed":521,"events_dropped":0,"avg_latency_ms":19.006977752458816,"throughput_eps":0,"last_update":"2026-03-21T22:26:33.965716392Z"} +2026/03/21 22:26:38 ───────────────────────────────────────────────── +2026/03/21 22:26:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:26:43 [transform_engine] {"stage_name":"transform_engine","events_processed":521,"events_dropped":0,"avg_latency_ms":355.0830040433996,"throughput_eps":0,"last_update":"2026-03-21T22:26:38.965466767Z"} +2026/03/21 22:26:43 [detection_layer] {"stage_name":"detection_layer","events_processed":521,"events_dropped":0,"avg_latency_ms":19.006977752458816,"throughput_eps":0,"last_update":"2026-03-21T22:26:38.965636562Z"} +2026/03/21 22:26:43 [log_collector] {"stage_name":"log_collector","events_processed":24786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4957.2,"last_update":"2026-03-21T22:26:38.869458834Z"} +2026/03/21 22:26:43 [metric_collector] {"stage_name":"metric_collector","events_processed":15649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3129.8,"last_update":"2026-03-21T22:26:38.870019419Z"} +2026/03/21 22:26:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:26:38.880250921Z"} +2026/03/21 22:26:43 ───────────────────────────────────────────────── +2026/03/21 22:26:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:26:48 [log_collector] {"stage_name":"log_collector","events_processed":24786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4957.2,"last_update":"2026-03-21T22:26:43.869568269Z"} +2026/03/21 22:26:48 [metric_collector] {"stage_name":"metric_collector","events_processed":15654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3130.8,"last_update":"2026-03-21T22:26:43.869915013Z"} +2026/03/21 22:26:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:26:43.878215095Z"} +2026/03/21 22:26:48 [transform_engine] {"stage_name":"transform_engine","events_processed":521,"events_dropped":0,"avg_latency_ms":355.0830040433996,"throughput_eps":0,"last_update":"2026-03-21T22:26:43.965961079Z"} +2026/03/21 22:26:48 [detection_layer] {"stage_name":"detection_layer","events_processed":521,"events_dropped":0,"avg_latency_ms":19.006977752458816,"throughput_eps":0,"last_update":"2026-03-21T22:26:43.965915552Z"} +2026/03/21 22:26:48 ───────────────────────────────────────────────── +2026/03/21 22:26:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:26:53 [log_collector] {"stage_name":"log_collector","events_processed":24786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4957.2,"last_update":"2026-03-21T22:26:48.870034946Z"} +2026/03/21 22:26:53 [metric_collector] {"stage_name":"metric_collector","events_processed":15659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3131.8,"last_update":"2026-03-21T22:26:48.870379586Z"} +2026/03/21 22:26:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:26:48.879542882Z"} +2026/03/21 22:26:53 [transform_engine] {"stage_name":"transform_engine","events_processed":522,"events_dropped":0,"avg_latency_ms":307.6417294347197,"throughput_eps":0,"last_update":"2026-03-21T22:26:49.083706241Z"} +2026/03/21 22:26:53 [detection_layer] {"stage_name":"detection_layer","events_processed":521,"events_dropped":0,"avg_latency_ms":19.006977752458816,"throughput_eps":0,"last_update":"2026-03-21T22:26:48.965793842Z"} +2026/03/21 22:26:53 ───────────────────────────────────────────────── +2026/03/21 22:26:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:26:58 [log_collector] {"stage_name":"log_collector","events_processed":24786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4957.2,"last_update":"2026-03-21T22:26:53.870625543Z"} +2026/03/21 22:26:58 [metric_collector] {"stage_name":"metric_collector","events_processed":15664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3132.8,"last_update":"2026-03-21T22:26:53.870761965Z"} +2026/03/21 22:26:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:26:53.879748942Z"} +2026/03/21 22:26:58 [transform_engine] {"stage_name":"transform_engine","events_processed":522,"events_dropped":0,"avg_latency_ms":307.6417294347197,"throughput_eps":0,"last_update":"2026-03-21T22:26:53.966060847Z"} +2026/03/21 22:26:58 [detection_layer] {"stage_name":"detection_layer","events_processed":522,"events_dropped":0,"avg_latency_ms":19.079650601967053,"throughput_eps":0,"last_update":"2026-03-21T22:26:53.966037994Z"} +2026/03/21 22:26:58 ───────────────────────────────────────────────── +2026/03/21 22:27:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:27:03 [metric_collector] {"stage_name":"metric_collector","events_processed":15669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3133.8,"last_update":"2026-03-21T22:26:58.869862805Z"} +2026/03/21 22:27:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:26:58.878321902Z"} +2026/03/21 22:27:03 [transform_engine] {"stage_name":"transform_engine","events_processed":522,"events_dropped":0,"avg_latency_ms":307.6417294347197,"throughput_eps":0,"last_update":"2026-03-21T22:26:58.965579148Z"} +2026/03/21 22:27:03 [detection_layer] {"stage_name":"detection_layer","events_processed":522,"events_dropped":0,"avg_latency_ms":19.079650601967053,"throughput_eps":0,"last_update":"2026-03-21T22:26:58.965704097Z"} +2026/03/21 22:27:03 [log_collector] {"stage_name":"log_collector","events_processed":24786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4957.2,"last_update":"2026-03-21T22:26:58.86950477Z"} +2026/03/21 22:27:03 ───────────────────────────────────────────────── +2026/03/21 22:27:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:27:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:27:03.87838543Z"} +2026/03/21 22:27:08 [transform_engine] {"stage_name":"transform_engine","events_processed":522,"events_dropped":0,"avg_latency_ms":307.6417294347197,"throughput_eps":0,"last_update":"2026-03-21T22:27:03.965586228Z"} +2026/03/21 22:27:08 [detection_layer] {"stage_name":"detection_layer","events_processed":522,"events_dropped":0,"avg_latency_ms":19.079650601967053,"throughput_eps":0,"last_update":"2026-03-21T22:27:03.965575137Z"} +2026/03/21 22:27:08 [log_collector] {"stage_name":"log_collector","events_processed":24786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4957.2,"last_update":"2026-03-21T22:27:08.869401764Z"} +2026/03/21 22:27:08 [metric_collector] {"stage_name":"metric_collector","events_processed":15674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3134.8,"last_update":"2026-03-21T22:27:03.869904782Z"} +2026/03/21 22:27:08 ───────────────────────────────────────────────── +2026/03/21 22:27:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:27:13 [log_collector] {"stage_name":"log_collector","events_processed":24786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4957.2,"last_update":"2026-03-21T22:27:08.869401764Z"} +2026/03/21 22:27:13 [metric_collector] {"stage_name":"metric_collector","events_processed":15679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3135.8,"last_update":"2026-03-21T22:27:08.869808924Z"} +2026/03/21 22:27:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:27:08.878089098Z"} +2026/03/21 22:27:13 [transform_engine] {"stage_name":"transform_engine","events_processed":522,"events_dropped":0,"avg_latency_ms":307.6417294347197,"throughput_eps":0,"last_update":"2026-03-21T22:27:08.965303553Z"} +2026/03/21 22:27:13 [detection_layer] {"stage_name":"detection_layer","events_processed":522,"events_dropped":0,"avg_latency_ms":19.079650601967053,"throughput_eps":0,"last_update":"2026-03-21T22:27:08.965296108Z"} +2026/03/21 22:27:13 ───────────────────────────────────────────────── +2026/03/21 22:27:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:27:18 [log_collector] {"stage_name":"log_collector","events_processed":24786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4957.2,"last_update":"2026-03-21T22:27:18.870031374Z"} +2026/03/21 22:27:18 [metric_collector] {"stage_name":"metric_collector","events_processed":15684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3136.8,"last_update":"2026-03-21T22:27:13.870219147Z"} +2026/03/21 22:27:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6276,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:27:13.878831146Z"} +2026/03/21 22:27:18 [transform_engine] {"stage_name":"transform_engine","events_processed":522,"events_dropped":0,"avg_latency_ms":307.6417294347197,"throughput_eps":0,"last_update":"2026-03-21T22:27:13.966161653Z"} +2026/03/21 22:27:18 [detection_layer] {"stage_name":"detection_layer","events_processed":522,"events_dropped":0,"avg_latency_ms":19.079650601967053,"throughput_eps":0,"last_update":"2026-03-21T22:27:13.966149871Z"} +2026/03/21 22:27:18 ───────────────────────────────────────────────── +2026/03/21 22:27:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:27:23 [metric_collector] {"stage_name":"metric_collector","events_processed":15689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3137.8,"last_update":"2026-03-21T22:27:18.870111528Z"} +2026/03/21 22:27:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:27:18.878748466Z"} +2026/03/21 22:27:23 [transform_engine] {"stage_name":"transform_engine","events_processed":523,"events_dropped":0,"avg_latency_ms":260.9803771477758,"throughput_eps":0,"last_update":"2026-03-21T22:27:19.04032562Z"} +2026/03/21 22:27:23 [detection_layer] {"stage_name":"detection_layer","events_processed":522,"events_dropped":0,"avg_latency_ms":19.079650601967053,"throughput_eps":0,"last_update":"2026-03-21T22:27:18.965980012Z"} +2026/03/21 22:27:23 [log_collector] {"stage_name":"log_collector","events_processed":24786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4957.2,"last_update":"2026-03-21T22:27:18.870031374Z"} +2026/03/21 22:27:23 ───────────────────────────────────────────────── +2026/03/21 22:27:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:27:28 [detection_layer] {"stage_name":"detection_layer","events_processed":523,"events_dropped":0,"avg_latency_ms":19.50362168157364,"throughput_eps":0,"last_update":"2026-03-21T22:27:23.966333067Z"} +2026/03/21 22:27:28 [log_collector] {"stage_name":"log_collector","events_processed":24786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4957.2,"last_update":"2026-03-21T22:27:23.869707913Z"} +2026/03/21 22:27:28 [metric_collector] {"stage_name":"metric_collector","events_processed":15694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3138.8,"last_update":"2026-03-21T22:27:23.870060629Z"} +2026/03/21 22:27:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:27:23.877908254Z"} +2026/03/21 22:27:28 [transform_engine] {"stage_name":"transform_engine","events_processed":523,"events_dropped":0,"avg_latency_ms":260.9803771477758,"throughput_eps":0,"last_update":"2026-03-21T22:27:23.965086979Z"} +2026/03/21 22:27:28 ───────────────────────────────────────────────── +2026/03/21 22:27:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:27:33 [detection_layer] {"stage_name":"detection_layer","events_processed":523,"events_dropped":0,"avg_latency_ms":19.50362168157364,"throughput_eps":0,"last_update":"2026-03-21T22:27:28.966224829Z"} +2026/03/21 22:27:33 [log_collector] {"stage_name":"log_collector","events_processed":24786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4957.2,"last_update":"2026-03-21T22:27:33.870097761Z"} +2026/03/21 22:27:33 [metric_collector] {"stage_name":"metric_collector","events_processed":15699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3139.8,"last_update":"2026-03-21T22:27:28.869816321Z"} +2026/03/21 22:27:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:27:28.879014344Z"} +2026/03/21 22:27:33 [transform_engine] {"stage_name":"transform_engine","events_processed":523,"events_dropped":0,"avg_latency_ms":260.9803771477758,"throughput_eps":0,"last_update":"2026-03-21T22:27:28.965131695Z"} +2026/03/21 22:27:33 ───────────────────────────────────────────────── +Saved state: 14 clusters, 24787 messages, reason: none +2026/03/21 22:27:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:27:38 [log_collector] {"stage_name":"log_collector","events_processed":24791,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4958.2,"last_update":"2026-03-21T22:27:38.86945864Z"} +2026/03/21 22:27:38 [metric_collector] {"stage_name":"metric_collector","events_processed":15704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3140.8,"last_update":"2026-03-21T22:27:33.870607808Z"} +2026/03/21 22:27:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:27:33.879570851Z"} +2026/03/21 22:27:38 [transform_engine] {"stage_name":"transform_engine","events_processed":523,"events_dropped":0,"avg_latency_ms":260.9803771477758,"throughput_eps":0,"last_update":"2026-03-21T22:27:33.965768606Z"} +2026/03/21 22:27:38 [detection_layer] {"stage_name":"detection_layer","events_processed":523,"events_dropped":0,"avg_latency_ms":19.50362168157364,"throughput_eps":0,"last_update":"2026-03-21T22:27:33.965757114Z"} +2026/03/21 22:27:38 ───────────────────────────────────────────────── +2026/03/21 22:27:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:27:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6286,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:27:38.876309055Z"} +2026/03/21 22:27:43 [transform_engine] {"stage_name":"transform_engine","events_processed":523,"events_dropped":0,"avg_latency_ms":260.9803771477758,"throughput_eps":0,"last_update":"2026-03-21T22:27:38.967392049Z"} +2026/03/21 22:27:43 [detection_layer] {"stage_name":"detection_layer","events_processed":523,"events_dropped":0,"avg_latency_ms":19.50362168157364,"throughput_eps":0,"last_update":"2026-03-21T22:27:38.967372661Z"} +2026/03/21 22:27:43 [log_collector] {"stage_name":"log_collector","events_processed":24791,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4958.2,"last_update":"2026-03-21T22:27:38.86945864Z"} +2026/03/21 22:27:43 [metric_collector] {"stage_name":"metric_collector","events_processed":15709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3141.8,"last_update":"2026-03-21T22:27:38.870112192Z"} +2026/03/21 22:27:43 ───────────────────────────────────────────────── +2026/03/21 22:27:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:27:48 [metric_collector] {"stage_name":"metric_collector","events_processed":15714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3142.8,"last_update":"2026-03-21T22:27:43.869792633Z"} +2026/03/21 22:27:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:27:43.875746219Z"} +2026/03/21 22:27:48 [transform_engine] {"stage_name":"transform_engine","events_processed":523,"events_dropped":0,"avg_latency_ms":260.9803771477758,"throughput_eps":0,"last_update":"2026-03-21T22:27:43.96596552Z"} +2026/03/21 22:27:48 [detection_layer] {"stage_name":"detection_layer","events_processed":523,"events_dropped":0,"avg_latency_ms":19.50362168157364,"throughput_eps":0,"last_update":"2026-03-21T22:27:43.965952665Z"} +2026/03/21 22:27:48 [log_collector] {"stage_name":"log_collector","events_processed":24791,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4958.2,"last_update":"2026-03-21T22:27:43.86943599Z"} +2026/03/21 22:27:48 ───────────────────────────────────────────────── +2026/03/21 22:27:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:27:53 [log_collector] {"stage_name":"log_collector","events_processed":24791,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4958.2,"last_update":"2026-03-21T22:27:48.869445623Z"} +2026/03/21 22:27:53 [metric_collector] {"stage_name":"metric_collector","events_processed":15719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3143.8,"last_update":"2026-03-21T22:27:48.869590992Z"} +2026/03/21 22:27:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:27:48.878496353Z"} +2026/03/21 22:27:53 [transform_engine] {"stage_name":"transform_engine","events_processed":523,"events_dropped":0,"avg_latency_ms":260.9803771477758,"throughput_eps":0,"last_update":"2026-03-21T22:27:43.96596552Z"} +2026/03/21 22:27:53 [detection_layer] {"stage_name":"detection_layer","events_processed":523,"events_dropped":0,"avg_latency_ms":19.50362168157364,"throughput_eps":0,"last_update":"2026-03-21T22:27:48.965652895Z"} +2026/03/21 22:27:53 ───────────────────────────────────────────────── +2026/03/21 22:27:54 [ANOMALY] time=2026-03-21T22:27:54Z score=0.8127 method=SEAD details=MAD!:w=0.25,s=0.93 RRCF-fast!:w=0.20,s=0.86 RRCF-mid:w=0.16,s=0.88 RRCF-slow:w=0.15,s=0.82 COPOD!:w=0.23,s=0.60 +2026/03/21 22:27:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:27:58 [log_collector] {"stage_name":"log_collector","events_processed":24791,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4958.2,"last_update":"2026-03-21T22:27:58.869393991Z"} +2026/03/21 22:27:58 [metric_collector] {"stage_name":"metric_collector","events_processed":15724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3144.8,"last_update":"2026-03-21T22:27:53.869659281Z"} +2026/03/21 22:27:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:27:53.876034906Z"} +2026/03/21 22:27:58 [transform_engine] {"stage_name":"transform_engine","events_processed":524,"events_dropped":0,"avg_latency_ms":1245.5960505182206,"throughput_eps":0,"last_update":"2026-03-21T22:27:54.14972804Z"} +2026/03/21 22:27:58 [detection_layer] {"stage_name":"detection_layer","events_processed":523,"events_dropped":0,"avg_latency_ms":19.50362168157364,"throughput_eps":0,"last_update":"2026-03-21T22:27:53.966256059Z"} +2026/03/21 22:27:58 ───────────────────────────────────────────────── +2026/03/21 22:28:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:28:03 [metric_collector] {"stage_name":"metric_collector","events_processed":15729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3145.8,"last_update":"2026-03-21T22:27:58.869793818Z"} +2026/03/21 22:28:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:27:58.879046555Z"} +2026/03/21 22:28:03 [transform_engine] {"stage_name":"transform_engine","events_processed":524,"events_dropped":0,"avg_latency_ms":1245.5960505182206,"throughput_eps":0,"last_update":"2026-03-21T22:27:58.965202971Z"} +2026/03/21 22:28:03 [detection_layer] {"stage_name":"detection_layer","events_processed":524,"events_dropped":0,"avg_latency_ms":18.143634945258913,"throughput_eps":0,"last_update":"2026-03-21T22:27:58.965257405Z"} +2026/03/21 22:28:03 [log_collector] {"stage_name":"log_collector","events_processed":24791,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4958.2,"last_update":"2026-03-21T22:28:03.869726628Z"} +2026/03/21 22:28:03 ───────────────────────────────────────────────── +2026/03/21 22:28:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:28:08 [log_collector] {"stage_name":"log_collector","events_processed":24791,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4958.2,"last_update":"2026-03-21T22:28:03.869726628Z"} +2026/03/21 22:28:08 [metric_collector] {"stage_name":"metric_collector","events_processed":15739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3147.8,"last_update":"2026-03-21T22:28:08.869636458Z"} +2026/03/21 22:28:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:28:03.875862624Z"} +2026/03/21 22:28:08 [transform_engine] {"stage_name":"transform_engine","events_processed":524,"events_dropped":0,"avg_latency_ms":1245.5960505182206,"throughput_eps":0,"last_update":"2026-03-21T22:28:03.966057476Z"} +2026/03/21 22:28:08 [detection_layer] {"stage_name":"detection_layer","events_processed":524,"events_dropped":0,"avg_latency_ms":18.143634945258913,"throughput_eps":0,"last_update":"2026-03-21T22:28:03.966045133Z"} +2026/03/21 22:28:08 ───────────────────────────────────────────────── +2026/03/21 22:28:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:28:13 [detection_layer] {"stage_name":"detection_layer","events_processed":524,"events_dropped":0,"avg_latency_ms":18.143634945258913,"throughput_eps":0,"last_update":"2026-03-21T22:28:08.966041608Z"} +2026/03/21 22:28:13 [log_collector] {"stage_name":"log_collector","events_processed":24791,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4958.2,"last_update":"2026-03-21T22:28:08.869758241Z"} +2026/03/21 22:28:13 [metric_collector] {"stage_name":"metric_collector","events_processed":15739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3147.8,"last_update":"2026-03-21T22:28:08.869636458Z"} +2026/03/21 22:28:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:28:08.877855164Z"} +2026/03/21 22:28:13 [transform_engine] {"stage_name":"transform_engine","events_processed":524,"events_dropped":0,"avg_latency_ms":1245.5960505182206,"throughput_eps":0,"last_update":"2026-03-21T22:28:08.966050776Z"} +2026/03/21 22:28:13 ───────────────────────────────────────────────── +2026/03/21 22:28:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:28:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:28:13.880034603Z"} +2026/03/21 22:28:18 [transform_engine] {"stage_name":"transform_engine","events_processed":524,"events_dropped":0,"avg_latency_ms":1245.5960505182206,"throughput_eps":0,"last_update":"2026-03-21T22:28:13.965125637Z"} +2026/03/21 22:28:18 [detection_layer] {"stage_name":"detection_layer","events_processed":524,"events_dropped":0,"avg_latency_ms":18.143634945258913,"throughput_eps":0,"last_update":"2026-03-21T22:28:13.966196399Z"} +2026/03/21 22:28:18 [log_collector] {"stage_name":"log_collector","events_processed":24791,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4958.2,"last_update":"2026-03-21T22:28:13.869703831Z"} +2026/03/21 22:28:18 [metric_collector] {"stage_name":"metric_collector","events_processed":15744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3148.8,"last_update":"2026-03-21T22:28:13.869669685Z"} +2026/03/21 22:28:18 ───────────────────────────────────────────────── +2026/03/21 22:28:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:28:23 [detection_layer] {"stage_name":"detection_layer","events_processed":524,"events_dropped":0,"avg_latency_ms":18.143634945258913,"throughput_eps":0,"last_update":"2026-03-21T22:28:18.966243895Z"} +2026/03/21 22:28:23 [log_collector] {"stage_name":"log_collector","events_processed":24802,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4960.4,"last_update":"2026-03-21T22:28:23.869444508Z"} +2026/03/21 22:28:23 [metric_collector] {"stage_name":"metric_collector","events_processed":15749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3149.8,"last_update":"2026-03-21T22:28:18.8699772Z"} +2026/03/21 22:28:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:28:18.876025508Z"} +2026/03/21 22:28:23 [transform_engine] {"stage_name":"transform_engine","events_processed":525,"events_dropped":0,"avg_latency_ms":1386.3599632145765,"throughput_eps":0,"last_update":"2026-03-21T22:28:20.91456853Z"} +2026/03/21 22:28:23 ───────────────────────────────────────────────── +2026/03/21 22:28:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:28:28 [log_collector] {"stage_name":"log_collector","events_processed":24802,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4960.4,"last_update":"2026-03-21T22:28:23.869444508Z"} +2026/03/21 22:28:28 [metric_collector] {"stage_name":"metric_collector","events_processed":15754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3150.8,"last_update":"2026-03-21T22:28:23.870116745Z"} +2026/03/21 22:28:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:28:23.879440439Z"} +2026/03/21 22:28:28 [transform_engine] {"stage_name":"transform_engine","events_processed":525,"events_dropped":0,"avg_latency_ms":1386.3599632145765,"throughput_eps":0,"last_update":"2026-03-21T22:28:23.965710341Z"} +2026/03/21 22:28:28 [detection_layer] {"stage_name":"detection_layer","events_processed":525,"events_dropped":0,"avg_latency_ms":17.188045356207134,"throughput_eps":0,"last_update":"2026-03-21T22:28:23.965796276Z"} +2026/03/21 22:28:28 ───────────────────────────────────────────────── +2026/03/21 22:28:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:28:33 [log_collector] {"stage_name":"log_collector","events_processed":24874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4974.8,"last_update":"2026-03-21T22:28:28.870421389Z"} +2026/03/21 22:28:33 [metric_collector] {"stage_name":"metric_collector","events_processed":15759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3151.8,"last_update":"2026-03-21T22:28:28.870407101Z"} +2026/03/21 22:28:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:28:28.877956005Z"} +2026/03/21 22:28:33 [transform_engine] {"stage_name":"transform_engine","events_processed":525,"events_dropped":0,"avg_latency_ms":1386.3599632145765,"throughput_eps":0,"last_update":"2026-03-21T22:28:28.965811244Z"} +2026/03/21 22:28:33 [detection_layer] {"stage_name":"detection_layer","events_processed":525,"events_dropped":0,"avg_latency_ms":17.188045356207134,"throughput_eps":0,"last_update":"2026-03-21T22:28:28.965803008Z"} +2026/03/21 22:28:33 ───────────────────────────────────────────────── +2026/03/21 22:28:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:28:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:28:33.876487132Z"} +2026/03/21 22:28:38 [transform_engine] {"stage_name":"transform_engine","events_processed":525,"events_dropped":0,"avg_latency_ms":1386.3599632145765,"throughput_eps":0,"last_update":"2026-03-21T22:28:33.965934111Z"} +2026/03/21 22:28:38 [detection_layer] {"stage_name":"detection_layer","events_processed":525,"events_dropped":0,"avg_latency_ms":17.188045356207134,"throughput_eps":0,"last_update":"2026-03-21T22:28:33.965957707Z"} +2026/03/21 22:28:38 [log_collector] {"stage_name":"log_collector","events_processed":25069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5013.8,"last_update":"2026-03-21T22:28:33.87028497Z"} +2026/03/21 22:28:38 [metric_collector] {"stage_name":"metric_collector","events_processed":15764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3152.8,"last_update":"2026-03-21T22:28:33.870428255Z"} +2026/03/21 22:28:38 ───────────────────────────────────────────────── +2026/03/21 22:28:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:28:43 [detection_layer] {"stage_name":"detection_layer","events_processed":525,"events_dropped":0,"avg_latency_ms":17.188045356207134,"throughput_eps":0,"last_update":"2026-03-21T22:28:38.966100583Z"} +2026/03/21 22:28:43 [log_collector] {"stage_name":"log_collector","events_processed":25152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5030.4,"last_update":"2026-03-21T22:28:38.869788332Z"} +2026/03/21 22:28:43 [metric_collector] {"stage_name":"metric_collector","events_processed":15769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3153.8,"last_update":"2026-03-21T22:28:38.869780437Z"} +2026/03/21 22:28:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:28:38.878643247Z"} +2026/03/21 22:28:43 [transform_engine] {"stage_name":"transform_engine","events_processed":525,"events_dropped":0,"avg_latency_ms":1386.3599632145765,"throughput_eps":0,"last_update":"2026-03-21T22:28:38.965976315Z"} +2026/03/21 22:28:43 ───────────────────────────────────────────────── +2026/03/21 22:28:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:28:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:28:43.878925444Z"} +2026/03/21 22:28:48 [transform_engine] {"stage_name":"transform_engine","events_processed":525,"events_dropped":0,"avg_latency_ms":1386.3599632145765,"throughput_eps":0,"last_update":"2026-03-21T22:28:43.965114792Z"} +2026/03/21 22:28:48 [detection_layer] {"stage_name":"detection_layer","events_processed":525,"events_dropped":0,"avg_latency_ms":17.188045356207134,"throughput_eps":0,"last_update":"2026-03-21T22:28:43.966240969Z"} +2026/03/21 22:28:48 [log_collector] {"stage_name":"log_collector","events_processed":25152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5030.4,"last_update":"2026-03-21T22:28:43.869985947Z"} +2026/03/21 22:28:48 [metric_collector] {"stage_name":"metric_collector","events_processed":15774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3154.8,"last_update":"2026-03-21T22:28:43.870433364Z"} +2026/03/21 22:28:48 ───────────────────────────────────────────────── +2026/03/21 22:28:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:28:53 [detection_layer] {"stage_name":"detection_layer","events_processed":525,"events_dropped":0,"avg_latency_ms":17.188045356207134,"throughput_eps":0,"last_update":"2026-03-21T22:28:48.965859538Z"} +2026/03/21 22:28:53 [log_collector] {"stage_name":"log_collector","events_processed":25152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5030.4,"last_update":"2026-03-21T22:28:48.869784581Z"} +2026/03/21 22:28:53 [metric_collector] {"stage_name":"metric_collector","events_processed":15779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3155.8,"last_update":"2026-03-21T22:28:48.869928276Z"} +2026/03/21 22:28:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:28:48.878449612Z"} +2026/03/21 22:28:53 [transform_engine] {"stage_name":"transform_engine","events_processed":526,"events_dropped":0,"avg_latency_ms":1134.4712315716613,"throughput_eps":0,"last_update":"2026-03-21T22:28:49.092736026Z"} +2026/03/21 22:28:53 ───────────────────────────────────────────────── +2026/03/21 22:28:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:28:58 [log_collector] {"stage_name":"log_collector","events_processed":25152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5030.4,"last_update":"2026-03-21T22:28:53.870096132Z"} +2026/03/21 22:28:58 [metric_collector] {"stage_name":"metric_collector","events_processed":15784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3156.8,"last_update":"2026-03-21T22:28:53.870578525Z"} +2026/03/21 22:28:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:28:53.879671226Z"} +2026/03/21 22:28:58 [transform_engine] {"stage_name":"transform_engine","events_processed":526,"events_dropped":0,"avg_latency_ms":1134.4712315716613,"throughput_eps":0,"last_update":"2026-03-21T22:28:53.966082097Z"} +2026/03/21 22:28:58 [detection_layer] {"stage_name":"detection_layer","events_processed":526,"events_dropped":0,"avg_latency_ms":17.71402608496571,"throughput_eps":0,"last_update":"2026-03-21T22:28:53.966028064Z"} +2026/03/21 22:28:58 ───────────────────────────────────────────────── +2026/03/21 22:29:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:29:03 [log_collector] {"stage_name":"log_collector","events_processed":25152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5030.4,"last_update":"2026-03-21T22:29:03.869875167Z"} +2026/03/21 22:29:03 [metric_collector] {"stage_name":"metric_collector","events_processed":15789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3157.8,"last_update":"2026-03-21T22:28:58.870794693Z"} +2026/03/21 22:29:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:28:58.879230546Z"} +2026/03/21 22:29:03 [transform_engine] {"stage_name":"transform_engine","events_processed":526,"events_dropped":0,"avg_latency_ms":1134.4712315716613,"throughput_eps":0,"last_update":"2026-03-21T22:28:58.965519974Z"} +2026/03/21 22:29:03 [detection_layer] {"stage_name":"detection_layer","events_processed":526,"events_dropped":0,"avg_latency_ms":17.71402608496571,"throughput_eps":0,"last_update":"2026-03-21T22:28:58.965413971Z"} +2026/03/21 22:29:03 ───────────────────────────────────────────────── +2026/03/21 22:29:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:29:08 [log_collector] {"stage_name":"log_collector","events_processed":25152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5030.4,"last_update":"2026-03-21T22:29:08.870316722Z"} +2026/03/21 22:29:08 [metric_collector] {"stage_name":"metric_collector","events_processed":15794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3158.8,"last_update":"2026-03-21T22:29:03.870329328Z"} +2026/03/21 22:29:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6320,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:29:03.878820536Z"} +2026/03/21 22:29:08 [transform_engine] {"stage_name":"transform_engine","events_processed":526,"events_dropped":0,"avg_latency_ms":1134.4712315716613,"throughput_eps":0,"last_update":"2026-03-21T22:29:03.966166259Z"} +2026/03/21 22:29:08 [detection_layer] {"stage_name":"detection_layer","events_processed":526,"events_dropped":0,"avg_latency_ms":17.71402608496571,"throughput_eps":0,"last_update":"2026-03-21T22:29:03.966234629Z"} +2026/03/21 22:29:08 ───────────────────────────────────────────────── +2026/03/21 22:29:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:29:13 [log_collector] {"stage_name":"log_collector","events_processed":25152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5030.4,"last_update":"2026-03-21T22:29:13.87013634Z"} +2026/03/21 22:29:13 [metric_collector] {"stage_name":"metric_collector","events_processed":15799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3159.8,"last_update":"2026-03-21T22:29:08.870555009Z"} +2026/03/21 22:29:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:29:08.878920005Z"} +2026/03/21 22:29:13 [transform_engine] {"stage_name":"transform_engine","events_processed":526,"events_dropped":0,"avg_latency_ms":1134.4712315716613,"throughput_eps":0,"last_update":"2026-03-21T22:29:08.965168185Z"} +2026/03/21 22:29:13 [detection_layer] {"stage_name":"detection_layer","events_processed":526,"events_dropped":0,"avg_latency_ms":17.71402608496571,"throughput_eps":0,"last_update":"2026-03-21T22:29:08.966384184Z"} +2026/03/21 22:29:13 ───────────────────────────────────────────────── +2026/03/21 22:29:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:29:18 [log_collector] {"stage_name":"log_collector","events_processed":25152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5030.4,"last_update":"2026-03-21T22:29:13.87013634Z"} +2026/03/21 22:29:18 [metric_collector] {"stage_name":"metric_collector","events_processed":15804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3160.8,"last_update":"2026-03-21T22:29:13.870666946Z"} +2026/03/21 22:29:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:29:13.878214005Z"} +2026/03/21 22:29:18 [transform_engine] {"stage_name":"transform_engine","events_processed":526,"events_dropped":0,"avg_latency_ms":1134.4712315716613,"throughput_eps":0,"last_update":"2026-03-21T22:29:13.965559286Z"} +2026/03/21 22:29:18 [detection_layer] {"stage_name":"detection_layer","events_processed":526,"events_dropped":0,"avg_latency_ms":17.71402608496571,"throughput_eps":0,"last_update":"2026-03-21T22:29:13.965526784Z"} +2026/03/21 22:29:18 ───────────────────────────────────────────────── +2026/03/21 22:29:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:29:23 [log_collector] {"stage_name":"log_collector","events_processed":25152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5030.4,"last_update":"2026-03-21T22:29:18.86949261Z"} +2026/03/21 22:29:23 [metric_collector] {"stage_name":"metric_collector","events_processed":15809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3161.8,"last_update":"2026-03-21T22:29:18.870201128Z"} +2026/03/21 22:29:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:29:18.878406579Z"} +2026/03/21 22:29:23 [transform_engine] {"stage_name":"transform_engine","events_processed":527,"events_dropped":0,"avg_latency_ms":922.3734270573291,"throughput_eps":0,"last_update":"2026-03-21T22:29:19.039668383Z"} +2026/03/21 22:29:23 [detection_layer] {"stage_name":"detection_layer","events_processed":526,"events_dropped":0,"avg_latency_ms":17.71402608496571,"throughput_eps":0,"last_update":"2026-03-21T22:29:18.965677607Z"} +2026/03/21 22:29:23 ───────────────────────────────────────────────── +2026/03/21 22:29:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:29:28 [log_collector] {"stage_name":"log_collector","events_processed":25152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5030.4,"last_update":"2026-03-21T22:29:23.869412284Z"} +2026/03/21 22:29:28 [metric_collector] {"stage_name":"metric_collector","events_processed":15814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3162.8,"last_update":"2026-03-21T22:29:23.869894709Z"} +2026/03/21 22:29:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:29:23.879699102Z"} +2026/03/21 22:29:28 [transform_engine] {"stage_name":"transform_engine","events_processed":527,"events_dropped":0,"avg_latency_ms":922.3734270573291,"throughput_eps":0,"last_update":"2026-03-21T22:29:23.966051651Z"} +2026/03/21 22:29:28 [detection_layer] {"stage_name":"detection_layer","events_processed":527,"events_dropped":0,"avg_latency_ms":18.833765667972568,"throughput_eps":0,"last_update":"2026-03-21T22:29:23.966035451Z"} +2026/03/21 22:29:28 ───────────────────────────────────────────────── +2026/03/21 22:29:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:29:33 [log_collector] {"stage_name":"log_collector","events_processed":25152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5030.4,"last_update":"2026-03-21T22:29:28.869841707Z"} +2026/03/21 22:29:33 [metric_collector] {"stage_name":"metric_collector","events_processed":15819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3163.8,"last_update":"2026-03-21T22:29:28.870272243Z"} +2026/03/21 22:29:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6330,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:29:28.87941058Z"} +2026/03/21 22:29:33 [transform_engine] {"stage_name":"transform_engine","events_processed":527,"events_dropped":0,"avg_latency_ms":922.3734270573291,"throughput_eps":0,"last_update":"2026-03-21T22:29:28.96579992Z"} +2026/03/21 22:29:33 [detection_layer] {"stage_name":"detection_layer","events_processed":527,"events_dropped":0,"avg_latency_ms":18.833765667972568,"throughput_eps":0,"last_update":"2026-03-21T22:29:28.965787866Z"} +2026/03/21 22:29:33 ───────────────────────────────────────────────── +Saved state: 14 clusters, 25153 messages, reason: none +2026/03/21 22:29:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:29:38 [log_collector] {"stage_name":"log_collector","events_processed":25152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5030.4,"last_update":"2026-03-21T22:29:33.869459459Z"} +2026/03/21 22:29:38 [metric_collector] {"stage_name":"metric_collector","events_processed":15824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3164.8,"last_update":"2026-03-21T22:29:33.869818116Z"} +2026/03/21 22:29:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:29:33.87889709Z"} +2026/03/21 22:29:38 [transform_engine] {"stage_name":"transform_engine","events_processed":527,"events_dropped":0,"avg_latency_ms":922.3734270573291,"throughput_eps":0,"last_update":"2026-03-21T22:29:33.965489648Z"} +2026/03/21 22:29:38 [detection_layer] {"stage_name":"detection_layer","events_processed":527,"events_dropped":0,"avg_latency_ms":18.833765667972568,"throughput_eps":0,"last_update":"2026-03-21T22:29:33.965474098Z"} +2026/03/21 22:29:38 ───────────────────────────────────────────────── +2026/03/21 22:29:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:29:43 [log_collector] {"stage_name":"log_collector","events_processed":25155,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5031,"last_update":"2026-03-21T22:29:38.87000418Z"} +2026/03/21 22:29:43 [metric_collector] {"stage_name":"metric_collector","events_processed":15829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3165.8,"last_update":"2026-03-21T22:29:38.870407683Z"} +2026/03/21 22:29:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:29:38.876858141Z"} +2026/03/21 22:29:43 [transform_engine] {"stage_name":"transform_engine","events_processed":527,"events_dropped":0,"avg_latency_ms":922.3734270573291,"throughput_eps":0,"last_update":"2026-03-21T22:29:38.966047354Z"} +2026/03/21 22:29:43 [detection_layer] {"stage_name":"detection_layer","events_processed":527,"events_dropped":0,"avg_latency_ms":18.833765667972568,"throughput_eps":0,"last_update":"2026-03-21T22:29:38.966035522Z"} +2026/03/21 22:29:43 ───────────────────────────────────────────────── +2026/03/21 22:29:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:29:48 [log_collector] {"stage_name":"log_collector","events_processed":25155,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5031,"last_update":"2026-03-21T22:29:43.870206949Z"} +2026/03/21 22:29:48 [metric_collector] {"stage_name":"metric_collector","events_processed":15834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3166.8,"last_update":"2026-03-21T22:29:43.87062477Z"} +2026/03/21 22:29:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:29:43.878011863Z"} +2026/03/21 22:29:48 [transform_engine] {"stage_name":"transform_engine","events_processed":527,"events_dropped":0,"avg_latency_ms":922.3734270573291,"throughput_eps":0,"last_update":"2026-03-21T22:29:43.965066917Z"} +2026/03/21 22:29:48 [detection_layer] {"stage_name":"detection_layer","events_processed":527,"events_dropped":0,"avg_latency_ms":18.833765667972568,"throughput_eps":0,"last_update":"2026-03-21T22:29:43.966164529Z"} +2026/03/21 22:29:48 ───────────────────────────────────────────────── +2026/03/21 22:29:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:29:53 [detection_layer] {"stage_name":"detection_layer","events_processed":527,"events_dropped":0,"avg_latency_ms":18.833765667972568,"throughput_eps":0,"last_update":"2026-03-21T22:29:48.965376334Z"} +2026/03/21 22:29:53 [log_collector] {"stage_name":"log_collector","events_processed":25165,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5033,"last_update":"2026-03-21T22:29:48.869487726Z"} +2026/03/21 22:29:53 [metric_collector] {"stage_name":"metric_collector","events_processed":15839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3167.8,"last_update":"2026-03-21T22:29:48.86977707Z"} +2026/03/21 22:29:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:29:48.878178876Z"} +2026/03/21 22:29:53 [transform_engine] {"stage_name":"transform_engine","events_processed":528,"events_dropped":0,"avg_latency_ms":807.8146338458633,"throughput_eps":0,"last_update":"2026-03-21T22:29:49.314965724Z"} +2026/03/21 22:29:53 ───────────────────────────────────────────────── +2026/03/21 22:29:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:29:58 [log_collector] {"stage_name":"log_collector","events_processed":25180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5036,"last_update":"2026-03-21T22:29:53.869579959Z"} +2026/03/21 22:29:58 [metric_collector] {"stage_name":"metric_collector","events_processed":15844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3168.8,"last_update":"2026-03-21T22:29:53.869923738Z"} +2026/03/21 22:29:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:29:53.878487014Z"} +2026/03/21 22:29:58 [transform_engine] {"stage_name":"transform_engine","events_processed":528,"events_dropped":0,"avg_latency_ms":807.8146338458633,"throughput_eps":0,"last_update":"2026-03-21T22:29:53.965706183Z"} +2026/03/21 22:29:58 [detection_layer] {"stage_name":"detection_layer","events_processed":528,"events_dropped":0,"avg_latency_ms":18.429604734378056,"throughput_eps":0,"last_update":"2026-03-21T22:29:53.965694129Z"} +2026/03/21 22:29:58 ───────────────────────────────────────────────── +2026/03/21 22:30:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:30:03 [metric_collector] {"stage_name":"metric_collector","events_processed":15849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3169.8,"last_update":"2026-03-21T22:29:58.870119784Z"} +2026/03/21 22:30:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6342,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:29:58.878289707Z"} +2026/03/21 22:30:03 [transform_engine] {"stage_name":"transform_engine","events_processed":528,"events_dropped":0,"avg_latency_ms":807.8146338458633,"throughput_eps":0,"last_update":"2026-03-21T22:29:58.9655432Z"} +2026/03/21 22:30:03 [detection_layer] {"stage_name":"detection_layer","events_processed":528,"events_dropped":0,"avg_latency_ms":18.429604734378056,"throughput_eps":0,"last_update":"2026-03-21T22:29:58.965526739Z"} +2026/03/21 22:30:03 [log_collector] {"stage_name":"log_collector","events_processed":25182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5036.4,"last_update":"2026-03-21T22:29:58.869419101Z"} +2026/03/21 22:30:03 ───────────────────────────────────────────────── +2026/03/21 22:30:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:30:08 [log_collector] {"stage_name":"log_collector","events_processed":25182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5036.4,"last_update":"2026-03-21T22:30:03.869416921Z"} +2026/03/21 22:30:08 [metric_collector] {"stage_name":"metric_collector","events_processed":15854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3170.8,"last_update":"2026-03-21T22:30:03.869887282Z"} +2026/03/21 22:30:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:30:03.885995353Z"} +2026/03/21 22:30:08 [transform_engine] {"stage_name":"transform_engine","events_processed":528,"events_dropped":0,"avg_latency_ms":807.8146338458633,"throughput_eps":0,"last_update":"2026-03-21T22:30:03.9651602Z"} +2026/03/21 22:30:08 [detection_layer] {"stage_name":"detection_layer","events_processed":528,"events_dropped":0,"avg_latency_ms":18.429604734378056,"throughput_eps":0,"last_update":"2026-03-21T22:30:03.966247964Z"} +2026/03/21 22:30:08 ───────────────────────────────────────────────── +2026/03/21 22:30:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:30:13 [log_collector] {"stage_name":"log_collector","events_processed":25182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5036.4,"last_update":"2026-03-21T22:30:08.869517369Z"} +2026/03/21 22:30:13 [metric_collector] {"stage_name":"metric_collector","events_processed":15859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3171.8,"last_update":"2026-03-21T22:30:08.869995556Z"} +2026/03/21 22:30:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:30:08.87894452Z"} +2026/03/21 22:30:13 [transform_engine] {"stage_name":"transform_engine","events_processed":528,"events_dropped":0,"avg_latency_ms":807.8146338458633,"throughput_eps":0,"last_update":"2026-03-21T22:30:08.965069894Z"} +2026/03/21 22:30:13 [detection_layer] {"stage_name":"detection_layer","events_processed":528,"events_dropped":0,"avg_latency_ms":18.429604734378056,"throughput_eps":0,"last_update":"2026-03-21T22:30:08.966300552Z"} +2026/03/21 22:30:13 ───────────────────────────────────────────────── +2026/03/21 22:30:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:30:18 [metric_collector] {"stage_name":"metric_collector","events_processed":15864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3172.8,"last_update":"2026-03-21T22:30:13.870221149Z"} +2026/03/21 22:30:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:30:13.879299221Z"} +2026/03/21 22:30:18 [transform_engine] {"stage_name":"transform_engine","events_processed":528,"events_dropped":0,"avg_latency_ms":807.8146338458633,"throughput_eps":0,"last_update":"2026-03-21T22:30:13.965681936Z"} +2026/03/21 22:30:18 [detection_layer] {"stage_name":"detection_layer","events_processed":528,"events_dropped":0,"avg_latency_ms":18.429604734378056,"throughput_eps":0,"last_update":"2026-03-21T22:30:13.965663261Z"} +2026/03/21 22:30:18 [log_collector] {"stage_name":"log_collector","events_processed":25182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5036.4,"last_update":"2026-03-21T22:30:13.869806374Z"} +2026/03/21 22:30:18 ───────────────────────────────────────────────── +2026/03/21 22:30:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:30:23 [log_collector] {"stage_name":"log_collector","events_processed":25196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5039.2,"last_update":"2026-03-21T22:30:18.869695797Z"} +2026/03/21 22:30:23 [metric_collector] {"stage_name":"metric_collector","events_processed":15869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3173.8,"last_update":"2026-03-21T22:30:18.870166228Z"} +2026/03/21 22:30:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6350,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:30:18.878469866Z"} +2026/03/21 22:30:23 [transform_engine] {"stage_name":"transform_engine","events_processed":529,"events_dropped":0,"avg_latency_ms":673.0829214766908,"throughput_eps":0,"last_update":"2026-03-21T22:30:19.099879232Z"} +2026/03/21 22:30:23 [detection_layer] {"stage_name":"detection_layer","events_processed":528,"events_dropped":0,"avg_latency_ms":18.429604734378056,"throughput_eps":0,"last_update":"2026-03-21T22:30:18.965712821Z"} +2026/03/21 22:30:23 ───────────────────────────────────────────────── +2026/03/21 22:30:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:30:28 [log_collector] {"stage_name":"log_collector","events_processed":25196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5039.2,"last_update":"2026-03-21T22:30:23.869423794Z"} +2026/03/21 22:30:28 [metric_collector] {"stage_name":"metric_collector","events_processed":15874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3174.8,"last_update":"2026-03-21T22:30:23.869845221Z"} +2026/03/21 22:30:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:30:23.878155843Z"} +2026/03/21 22:30:28 [transform_engine] {"stage_name":"transform_engine","events_processed":529,"events_dropped":0,"avg_latency_ms":673.0829214766908,"throughput_eps":0,"last_update":"2026-03-21T22:30:23.965363318Z"} +2026/03/21 22:30:28 [detection_layer] {"stage_name":"detection_layer","events_processed":529,"events_dropped":0,"avg_latency_ms":18.617024387502447,"throughput_eps":0,"last_update":"2026-03-21T22:30:23.965461837Z"} +2026/03/21 22:30:28 ───────────────────────────────────────────────── +2026/03/21 22:30:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:30:33 [detection_layer] {"stage_name":"detection_layer","events_processed":529,"events_dropped":0,"avg_latency_ms":18.617024387502447,"throughput_eps":0,"last_update":"2026-03-21T22:30:28.965960674Z"} +2026/03/21 22:30:33 [log_collector] {"stage_name":"log_collector","events_processed":25196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5039.2,"last_update":"2026-03-21T22:30:28.869638085Z"} +2026/03/21 22:30:33 [metric_collector] {"stage_name":"metric_collector","events_processed":15879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3175.8,"last_update":"2026-03-21T22:30:28.869921299Z"} +2026/03/21 22:30:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:30:28.879642462Z"} +2026/03/21 22:30:33 [transform_engine] {"stage_name":"transform_engine","events_processed":529,"events_dropped":0,"avg_latency_ms":673.0829214766908,"throughput_eps":0,"last_update":"2026-03-21T22:30:28.966017664Z"} +2026/03/21 22:30:33 ───────────────────────────────────────────────── +2026/03/21 22:30:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:30:38 [log_collector] {"stage_name":"log_collector","events_processed":25196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5039.2,"last_update":"2026-03-21T22:30:33.869411658Z"} +2026/03/21 22:30:38 [metric_collector] {"stage_name":"metric_collector","events_processed":15884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3176.8,"last_update":"2026-03-21T22:30:33.870042185Z"} +2026/03/21 22:30:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:30:33.878559122Z"} +2026/03/21 22:30:38 [transform_engine] {"stage_name":"transform_engine","events_processed":529,"events_dropped":0,"avg_latency_ms":673.0829214766908,"throughput_eps":0,"last_update":"2026-03-21T22:30:33.965891758Z"} +2026/03/21 22:30:38 [detection_layer] {"stage_name":"detection_layer","events_processed":529,"events_dropped":0,"avg_latency_ms":18.617024387502447,"throughput_eps":0,"last_update":"2026-03-21T22:30:33.966021456Z"} +2026/03/21 22:30:38 ───────────────────────────────────────────────── +2026/03/21 22:30:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:30:43 [transform_engine] {"stage_name":"transform_engine","events_processed":529,"events_dropped":0,"avg_latency_ms":673.0829214766908,"throughput_eps":0,"last_update":"2026-03-21T22:30:38.965449639Z"} +2026/03/21 22:30:43 [detection_layer] {"stage_name":"detection_layer","events_processed":529,"events_dropped":0,"avg_latency_ms":18.617024387502447,"throughput_eps":0,"last_update":"2026-03-21T22:30:38.965474797Z"} +2026/03/21 22:30:43 [log_collector] {"stage_name":"log_collector","events_processed":25196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5039.2,"last_update":"2026-03-21T22:30:43.869412451Z"} +2026/03/21 22:30:43 [metric_collector] {"stage_name":"metric_collector","events_processed":15889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3177.8,"last_update":"2026-03-21T22:30:38.87084879Z"} +2026/03/21 22:30:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:30:38.880119691Z"} +2026/03/21 22:30:43 ───────────────────────────────────────────────── +2026/03/21 22:30:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:30:48 [log_collector] {"stage_name":"log_collector","events_processed":25196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5039.2,"last_update":"2026-03-21T22:30:43.869412451Z"} +2026/03/21 22:30:48 [metric_collector] {"stage_name":"metric_collector","events_processed":15894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3178.8,"last_update":"2026-03-21T22:30:43.869846493Z"} +2026/03/21 22:30:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6360,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:30:43.878698782Z"} +2026/03/21 22:30:48 [transform_engine] {"stage_name":"transform_engine","events_processed":529,"events_dropped":0,"avg_latency_ms":673.0829214766908,"throughput_eps":0,"last_update":"2026-03-21T22:30:43.965906838Z"} +2026/03/21 22:30:48 [detection_layer] {"stage_name":"detection_layer","events_processed":529,"events_dropped":0,"avg_latency_ms":18.617024387502447,"throughput_eps":0,"last_update":"2026-03-21T22:30:43.96601203Z"} +2026/03/21 22:30:48 ───────────────────────────────────────────────── +2026/03/21 22:30:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:30:53 [metric_collector] {"stage_name":"metric_collector","events_processed":15898,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3179.6,"last_update":"2026-03-21T22:30:48.869861327Z"} +2026/03/21 22:30:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:30:48.87924761Z"} +2026/03/21 22:30:53 [transform_engine] {"stage_name":"transform_engine","events_processed":530,"events_dropped":0,"avg_latency_ms":552.4204871813527,"throughput_eps":0,"last_update":"2026-03-21T22:30:49.035307054Z"} +2026/03/21 22:30:53 [detection_layer] {"stage_name":"detection_layer","events_processed":529,"events_dropped":0,"avg_latency_ms":18.617024387502447,"throughput_eps":0,"last_update":"2026-03-21T22:30:48.965516617Z"} +2026/03/21 22:30:53 [log_collector] {"stage_name":"log_collector","events_processed":25196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5039.2,"last_update":"2026-03-21T22:30:48.869953734Z"} +2026/03/21 22:30:53 ───────────────────────────────────────────────── +2026/03/21 22:30:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:30:58 [log_collector] {"stage_name":"log_collector","events_processed":25196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5039.2,"last_update":"2026-03-21T22:30:58.870246272Z"} +2026/03/21 22:30:58 [metric_collector] {"stage_name":"metric_collector","events_processed":15903,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3180.6,"last_update":"2026-03-21T22:30:53.870202513Z"} +2026/03/21 22:30:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:30:53.87968472Z"} +2026/03/21 22:30:58 [transform_engine] {"stage_name":"transform_engine","events_processed":530,"events_dropped":0,"avg_latency_ms":552.4204871813527,"throughput_eps":0,"last_update":"2026-03-21T22:30:53.965985967Z"} +2026/03/21 22:30:58 [detection_layer] {"stage_name":"detection_layer","events_processed":530,"events_dropped":0,"avg_latency_ms":19.066373910001957,"throughput_eps":0,"last_update":"2026-03-21T22:30:53.96595075Z"} +2026/03/21 22:30:58 ───────────────────────────────────────────────── +2026/03/21 22:31:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:31:03 [log_collector] {"stage_name":"log_collector","events_processed":25196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5039.2,"last_update":"2026-03-21T22:30:58.870246272Z"} +2026/03/21 22:31:03 [metric_collector] {"stage_name":"metric_collector","events_processed":15909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3181.8,"last_update":"2026-03-21T22:30:58.870711423Z"} +2026/03/21 22:31:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:30:58.879603679Z"} +2026/03/21 22:31:03 [transform_engine] {"stage_name":"transform_engine","events_processed":530,"events_dropped":0,"avg_latency_ms":552.4204871813527,"throughput_eps":0,"last_update":"2026-03-21T22:30:58.966109179Z"} +2026/03/21 22:31:03 [detection_layer] {"stage_name":"detection_layer","events_processed":530,"events_dropped":0,"avg_latency_ms":19.066373910001957,"throughput_eps":0,"last_update":"2026-03-21T22:30:58.965992726Z"} +2026/03/21 22:31:03 ───────────────────────────────────────────────── +2026/03/21 22:31:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:31:08 [log_collector] {"stage_name":"log_collector","events_processed":25196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5039.2,"last_update":"2026-03-21T22:31:08.869929119Z"} +2026/03/21 22:31:08 [metric_collector] {"stage_name":"metric_collector","events_processed":15914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3182.8,"last_update":"2026-03-21T22:31:03.869799576Z"} +2026/03/21 22:31:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:31:03.880651085Z"} +2026/03/21 22:31:08 [transform_engine] {"stage_name":"transform_engine","events_processed":530,"events_dropped":0,"avg_latency_ms":552.4204871813527,"throughput_eps":0,"last_update":"2026-03-21T22:31:03.966016231Z"} +2026/03/21 22:31:08 [detection_layer] {"stage_name":"detection_layer","events_processed":530,"events_dropped":0,"avg_latency_ms":19.066373910001957,"throughput_eps":0,"last_update":"2026-03-21T22:31:03.965990522Z"} +2026/03/21 22:31:08 ───────────────────────────────────────────────── +2026/03/21 22:31:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:31:13 [log_collector] {"stage_name":"log_collector","events_processed":25196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5039.2,"last_update":"2026-03-21T22:31:08.869929119Z"} +2026/03/21 22:31:13 [metric_collector] {"stage_name":"metric_collector","events_processed":15919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3183.8,"last_update":"2026-03-21T22:31:08.870522796Z"} +2026/03/21 22:31:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:31:08.878844689Z"} +2026/03/21 22:31:13 [transform_engine] {"stage_name":"transform_engine","events_processed":530,"events_dropped":0,"avg_latency_ms":552.4204871813527,"throughput_eps":0,"last_update":"2026-03-21T22:31:08.966142256Z"} +2026/03/21 22:31:13 [detection_layer] {"stage_name":"detection_layer","events_processed":530,"events_dropped":0,"avg_latency_ms":19.066373910001957,"throughput_eps":0,"last_update":"2026-03-21T22:31:08.966124071Z"} +2026/03/21 22:31:13 ───────────────────────────────────────────────── +2026/03/21 22:31:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:31:18 [log_collector] {"stage_name":"log_collector","events_processed":25196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5039.2,"last_update":"2026-03-21T22:31:13.869485336Z"} +2026/03/21 22:31:18 [metric_collector] {"stage_name":"metric_collector","events_processed":15924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3184.8,"last_update":"2026-03-21T22:31:13.869845477Z"} +2026/03/21 22:31:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:31:13.879994771Z"} +2026/03/21 22:31:18 [transform_engine] {"stage_name":"transform_engine","events_processed":530,"events_dropped":0,"avg_latency_ms":552.4204871813527,"throughput_eps":0,"last_update":"2026-03-21T22:31:13.965104896Z"} +2026/03/21 22:31:18 [detection_layer] {"stage_name":"detection_layer","events_processed":530,"events_dropped":0,"avg_latency_ms":19.066373910001957,"throughput_eps":0,"last_update":"2026-03-21T22:31:13.966232217Z"} +2026/03/21 22:31:18 ───────────────────────────────────────────────── +Saved state: 14 clusters, 25197 messages, reason: none +2026/03/21 22:31:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:31:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:31:18.879906534Z"} +2026/03/21 22:31:23 [transform_engine] {"stage_name":"transform_engine","events_processed":531,"events_dropped":0,"avg_latency_ms":456.2432535450821,"throughput_eps":0,"last_update":"2026-03-21T22:31:19.036673873Z"} +2026/03/21 22:31:23 [detection_layer] {"stage_name":"detection_layer","events_processed":530,"events_dropped":0,"avg_latency_ms":19.066373910001957,"throughput_eps":0,"last_update":"2026-03-21T22:31:18.966253559Z"} +2026/03/21 22:31:23 [log_collector] {"stage_name":"log_collector","events_processed":25201,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5040.2,"last_update":"2026-03-21T22:31:23.870116896Z"} +2026/03/21 22:31:23 [metric_collector] {"stage_name":"metric_collector","events_processed":15929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3185.8,"last_update":"2026-03-21T22:31:18.870765251Z"} +2026/03/21 22:31:23 ───────────────────────────────────────────────── +2026/03/21 22:31:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:31:28 [transform_engine] {"stage_name":"transform_engine","events_processed":531,"events_dropped":0,"avg_latency_ms":456.2432535450821,"throughput_eps":0,"last_update":"2026-03-21T22:31:23.965793345Z"} +2026/03/21 22:31:28 [detection_layer] {"stage_name":"detection_layer","events_processed":531,"events_dropped":0,"avg_latency_ms":19.502562328001567,"throughput_eps":0,"last_update":"2026-03-21T22:31:23.965783477Z"} +2026/03/21 22:31:28 [log_collector] {"stage_name":"log_collector","events_processed":25201,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5040.2,"last_update":"2026-03-21T22:31:28.869465249Z"} +2026/03/21 22:31:28 [metric_collector] {"stage_name":"metric_collector","events_processed":15934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3186.8,"last_update":"2026-03-21T22:31:23.870429675Z"} +2026/03/21 22:31:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:31:23.87655005Z"} +2026/03/21 22:31:28 ───────────────────────────────────────────────── +2026/03/21 22:31:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:31:33 [metric_collector] {"stage_name":"metric_collector","events_processed":15939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3187.8,"last_update":"2026-03-21T22:31:28.87005062Z"} +2026/03/21 22:31:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:31:28.875632394Z"} +2026/03/21 22:31:33 [transform_engine] {"stage_name":"transform_engine","events_processed":531,"events_dropped":0,"avg_latency_ms":456.2432535450821,"throughput_eps":0,"last_update":"2026-03-21T22:31:28.965849645Z"} +2026/03/21 22:31:33 [detection_layer] {"stage_name":"detection_layer","events_processed":531,"events_dropped":0,"avg_latency_ms":19.502562328001567,"throughput_eps":0,"last_update":"2026-03-21T22:31:28.96583714Z"} +2026/03/21 22:31:33 [log_collector] {"stage_name":"log_collector","events_processed":25201,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5040.2,"last_update":"2026-03-21T22:31:28.869465249Z"} +2026/03/21 22:31:33 ───────────────────────────────────────────────── +2026/03/21 22:31:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:31:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6380,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:31:33.878443055Z"} +2026/03/21 22:31:38 [transform_engine] {"stage_name":"transform_engine","events_processed":531,"events_dropped":0,"avg_latency_ms":456.2432535450821,"throughput_eps":0,"last_update":"2026-03-21T22:31:33.965375251Z"} +2026/03/21 22:31:38 [detection_layer] {"stage_name":"detection_layer","events_processed":531,"events_dropped":0,"avg_latency_ms":19.502562328001567,"throughput_eps":0,"last_update":"2026-03-21T22:31:33.965366014Z"} +2026/03/21 22:31:38 [log_collector] {"stage_name":"log_collector","events_processed":25201,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5040.2,"last_update":"2026-03-21T22:31:33.869599832Z"} +2026/03/21 22:31:38 [metric_collector] {"stage_name":"metric_collector","events_processed":15944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3188.8,"last_update":"2026-03-21T22:31:33.870114368Z"} +2026/03/21 22:31:38 ───────────────────────────────────────────────── +2026/03/21 22:31:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:31:43 [detection_layer] {"stage_name":"detection_layer","events_processed":531,"events_dropped":0,"avg_latency_ms":19.502562328001567,"throughput_eps":0,"last_update":"2026-03-21T22:31:38.965280209Z"} +2026/03/21 22:31:43 [log_collector] {"stage_name":"log_collector","events_processed":25201,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5040.2,"last_update":"2026-03-21T22:31:38.86940487Z"} +2026/03/21 22:31:43 [metric_collector] {"stage_name":"metric_collector","events_processed":15949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3189.8,"last_update":"2026-03-21T22:31:38.869799374Z"} +2026/03/21 22:31:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:31:38.876069107Z"} +2026/03/21 22:31:43 [transform_engine] {"stage_name":"transform_engine","events_processed":531,"events_dropped":0,"avg_latency_ms":456.2432535450821,"throughput_eps":0,"last_update":"2026-03-21T22:31:38.965262135Z"} +2026/03/21 22:31:43 ───────────────────────────────────────────────── +2026/03/21 22:31:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:31:48 [metric_collector] {"stage_name":"metric_collector","events_processed":15954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3190.8,"last_update":"2026-03-21T22:31:43.869698818Z"} +2026/03/21 22:31:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:31:43.876302969Z"} +2026/03/21 22:31:48 [transform_engine] {"stage_name":"transform_engine","events_processed":531,"events_dropped":0,"avg_latency_ms":456.2432535450821,"throughput_eps":0,"last_update":"2026-03-21T22:31:43.965571702Z"} +2026/03/21 22:31:48 [detection_layer] {"stage_name":"detection_layer","events_processed":531,"events_dropped":0,"avg_latency_ms":19.502562328001567,"throughput_eps":0,"last_update":"2026-03-21T22:31:43.965563186Z"} +2026/03/21 22:31:48 [log_collector] {"stage_name":"log_collector","events_processed":25201,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5040.2,"last_update":"2026-03-21T22:31:48.869854154Z"} +2026/03/21 22:31:48 ───────────────────────────────────────────────── +2026/03/21 22:31:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:31:53 [log_collector] {"stage_name":"log_collector","events_processed":25201,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5040.2,"last_update":"2026-03-21T22:31:48.869854154Z"} +2026/03/21 22:31:53 [metric_collector] {"stage_name":"metric_collector","events_processed":15959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3191.8,"last_update":"2026-03-21T22:31:48.870136676Z"} +2026/03/21 22:31:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:31:48.876714938Z"} +2026/03/21 22:31:53 [transform_engine] {"stage_name":"transform_engine","events_processed":532,"events_dropped":0,"avg_latency_ms":386.74918283606576,"throughput_eps":0,"last_update":"2026-03-21T22:31:49.075599415Z"} +2026/03/21 22:31:53 [detection_layer] {"stage_name":"detection_layer","events_processed":531,"events_dropped":0,"avg_latency_ms":19.502562328001567,"throughput_eps":0,"last_update":"2026-03-21T22:31:48.966813681Z"} +2026/03/21 22:31:53 ───────────────────────────────────────────────── +2026/03/21 22:31:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:31:58 [log_collector] {"stage_name":"log_collector","events_processed":25201,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5040.2,"last_update":"2026-03-21T22:31:53.869399157Z"} +2026/03/21 22:31:58 [metric_collector] {"stage_name":"metric_collector","events_processed":15964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3192.8,"last_update":"2026-03-21T22:31:53.869625321Z"} +2026/03/21 22:31:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6388,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:31:53.880462953Z"} +2026/03/21 22:31:58 [transform_engine] {"stage_name":"transform_engine","events_processed":532,"events_dropped":0,"avg_latency_ms":386.74918283606576,"throughput_eps":0,"last_update":"2026-03-21T22:31:53.965133437Z"} +2026/03/21 22:31:58 [detection_layer] {"stage_name":"detection_layer","events_processed":532,"events_dropped":0,"avg_latency_ms":19.025081662401256,"throughput_eps":0,"last_update":"2026-03-21T22:31:53.9662106Z"} +2026/03/21 22:31:58 ───────────────────────────────────────────────── +2026/03/21 22:32:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:32:03 [log_collector] {"stage_name":"log_collector","events_processed":25201,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5040.2,"last_update":"2026-03-21T22:31:58.869859628Z"} +2026/03/21 22:32:03 [metric_collector] {"stage_name":"metric_collector","events_processed":15969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3193.8,"last_update":"2026-03-21T22:31:58.869830142Z"} +2026/03/21 22:32:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6390,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:31:58.875776704Z"} +2026/03/21 22:32:03 [transform_engine] {"stage_name":"transform_engine","events_processed":532,"events_dropped":0,"avg_latency_ms":386.74918283606576,"throughput_eps":0,"last_update":"2026-03-21T22:31:58.965861791Z"} +2026/03/21 22:32:03 [detection_layer] {"stage_name":"detection_layer","events_processed":532,"events_dropped":0,"avg_latency_ms":19.025081662401256,"throughput_eps":0,"last_update":"2026-03-21T22:31:58.96597101Z"} +2026/03/21 22:32:03 ───────────────────────────────────────────────── +2026/03/21 22:32:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:32:08 [log_collector] {"stage_name":"log_collector","events_processed":25204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5040.8,"last_update":"2026-03-21T22:32:03.869630572Z"} +2026/03/21 22:32:08 [metric_collector] {"stage_name":"metric_collector","events_processed":15974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3194.8,"last_update":"2026-03-21T22:32:03.870092067Z"} +2026/03/21 22:32:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:32:03.876714455Z"} +2026/03/21 22:32:08 [transform_engine] {"stage_name":"transform_engine","events_processed":532,"events_dropped":0,"avg_latency_ms":386.74918283606576,"throughput_eps":0,"last_update":"2026-03-21T22:32:03.965870099Z"} +2026/03/21 22:32:08 [detection_layer] {"stage_name":"detection_layer","events_processed":532,"events_dropped":0,"avg_latency_ms":19.025081662401256,"throughput_eps":0,"last_update":"2026-03-21T22:32:03.965893043Z"} +2026/03/21 22:32:08 ───────────────────────────────────────────────── +2026/03/21 22:32:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:32:13 [log_collector] {"stage_name":"log_collector","events_processed":25212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5042.4,"last_update":"2026-03-21T22:32:08.869795256Z"} +2026/03/21 22:32:13 [metric_collector] {"stage_name":"metric_collector","events_processed":15979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3195.8,"last_update":"2026-03-21T22:32:08.870241682Z"} +2026/03/21 22:32:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:32:08.878849633Z"} +2026/03/21 22:32:13 [transform_engine] {"stage_name":"transform_engine","events_processed":532,"events_dropped":0,"avg_latency_ms":386.74918283606576,"throughput_eps":0,"last_update":"2026-03-21T22:32:08.965113248Z"} +2026/03/21 22:32:13 [detection_layer] {"stage_name":"detection_layer","events_processed":532,"events_dropped":0,"avg_latency_ms":19.025081662401256,"throughput_eps":0,"last_update":"2026-03-21T22:32:08.966389674Z"} +2026/03/21 22:32:13 ───────────────────────────────────────────────── +2026/03/21 22:32:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:32:18 [transform_engine] {"stage_name":"transform_engine","events_processed":532,"events_dropped":0,"avg_latency_ms":386.74918283606576,"throughput_eps":0,"last_update":"2026-03-21T22:32:13.965444586Z"} +2026/03/21 22:32:18 [detection_layer] {"stage_name":"detection_layer","events_processed":532,"events_dropped":0,"avg_latency_ms":19.025081662401256,"throughput_eps":0,"last_update":"2026-03-21T22:32:13.965413477Z"} +2026/03/21 22:32:18 [log_collector] {"stage_name":"log_collector","events_processed":25298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5059.6,"last_update":"2026-03-21T22:32:13.869605166Z"} +2026/03/21 22:32:18 [metric_collector] {"stage_name":"metric_collector","events_processed":15984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3196.8,"last_update":"2026-03-21T22:32:13.869596448Z"} +2026/03/21 22:32:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:32:13.877074336Z"} +2026/03/21 22:32:18 ───────────────────────────────────────────────── +2026/03/21 22:32:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:32:23 [log_collector] {"stage_name":"log_collector","events_processed":25557,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5111.4,"last_update":"2026-03-21T22:32:23.869402872Z"} +2026/03/21 22:32:23 [metric_collector] {"stage_name":"metric_collector","events_processed":15989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3197.8,"last_update":"2026-03-21T22:32:18.870308172Z"} +2026/03/21 22:32:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:32:18.875514126Z"} +2026/03/21 22:32:23 [transform_engine] {"stage_name":"transform_engine","events_processed":533,"events_dropped":0,"avg_latency_ms":333.12076626885266,"throughput_eps":0,"last_update":"2026-03-21T22:32:19.084486468Z"} +2026/03/21 22:32:23 [detection_layer] {"stage_name":"detection_layer","events_processed":532,"events_dropped":0,"avg_latency_ms":19.025081662401256,"throughput_eps":0,"last_update":"2026-03-21T22:32:18.965859851Z"} +2026/03/21 22:32:23 ───────────────────────────────────────────────── +2026/03/21 22:32:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:32:28 [transform_engine] {"stage_name":"transform_engine","events_processed":533,"events_dropped":0,"avg_latency_ms":333.12076626885266,"throughput_eps":0,"last_update":"2026-03-21T22:32:23.965547026Z"} +2026/03/21 22:32:28 [detection_layer] {"stage_name":"detection_layer","events_processed":533,"events_dropped":0,"avg_latency_ms":18.13128672992101,"throughput_eps":0,"last_update":"2026-03-21T22:32:23.965584528Z"} +2026/03/21 22:32:28 [log_collector] {"stage_name":"log_collector","events_processed":25557,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5111.4,"last_update":"2026-03-21T22:32:23.869402872Z"} +2026/03/21 22:32:28 [metric_collector] {"stage_name":"metric_collector","events_processed":15994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3198.8,"last_update":"2026-03-21T22:32:23.86983989Z"} +2026/03/21 22:32:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6400,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:32:23.878209645Z"} +2026/03/21 22:32:28 ───────────────────────────────────────────────── +2026/03/21 22:32:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:32:33 [log_collector] {"stage_name":"log_collector","events_processed":25557,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5111.4,"last_update":"2026-03-21T22:32:33.86951972Z"} +2026/03/21 22:32:33 [metric_collector] {"stage_name":"metric_collector","events_processed":15999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3199.8,"last_update":"2026-03-21T22:32:28.87040394Z"} +2026/03/21 22:32:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6402,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:32:28.879587955Z"} +2026/03/21 22:32:33 [transform_engine] {"stage_name":"transform_engine","events_processed":533,"events_dropped":0,"avg_latency_ms":333.12076626885266,"throughput_eps":0,"last_update":"2026-03-21T22:32:28.965661867Z"} +2026/03/21 22:32:33 [detection_layer] {"stage_name":"detection_layer","events_processed":533,"events_dropped":0,"avg_latency_ms":18.13128672992101,"throughput_eps":0,"last_update":"2026-03-21T22:32:28.965789691Z"} +2026/03/21 22:32:33 ───────────────────────────────────────────────── +2026/03/21 22:32:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:32:38 [metric_collector] {"stage_name":"metric_collector","events_processed":16004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3200.8,"last_update":"2026-03-21T22:32:33.870148084Z"} +2026/03/21 22:32:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:32:33.878238865Z"} +2026/03/21 22:32:38 [transform_engine] {"stage_name":"transform_engine","events_processed":533,"events_dropped":0,"avg_latency_ms":333.12076626885266,"throughput_eps":0,"last_update":"2026-03-21T22:32:33.965728908Z"} +2026/03/21 22:32:38 [detection_layer] {"stage_name":"detection_layer","events_processed":533,"events_dropped":0,"avg_latency_ms":18.13128672992101,"throughput_eps":0,"last_update":"2026-03-21T22:32:33.965616213Z"} +2026/03/21 22:32:38 [log_collector] {"stage_name":"log_collector","events_processed":25557,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5111.4,"last_update":"2026-03-21T22:32:33.86951972Z"} +2026/03/21 22:32:38 ───────────────────────────────────────────────── +2026/03/21 22:32:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:32:43 [log_collector] {"stage_name":"log_collector","events_processed":25557,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5111.4,"last_update":"2026-03-21T22:32:38.87019919Z"} +2026/03/21 22:32:43 [metric_collector] {"stage_name":"metric_collector","events_processed":16009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3201.8,"last_update":"2026-03-21T22:32:38.870518031Z"} +2026/03/21 22:32:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:32:38.879228358Z"} +2026/03/21 22:32:43 [transform_engine] {"stage_name":"transform_engine","events_processed":533,"events_dropped":0,"avg_latency_ms":333.12076626885266,"throughput_eps":0,"last_update":"2026-03-21T22:32:38.965447006Z"} +2026/03/21 22:32:43 [detection_layer] {"stage_name":"detection_layer","events_processed":533,"events_dropped":0,"avg_latency_ms":18.13128672992101,"throughput_eps":0,"last_update":"2026-03-21T22:32:38.965472795Z"} +2026/03/21 22:32:43 ───────────────────────────────────────────────── +2026/03/21 22:32:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:32:48 [metric_collector] {"stage_name":"metric_collector","events_processed":16014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3202.8,"last_update":"2026-03-21T22:32:43.870671559Z"} +2026/03/21 22:32:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6408,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:32:43.881124085Z"} +2026/03/21 22:32:48 [transform_engine] {"stage_name":"transform_engine","events_processed":533,"events_dropped":0,"avg_latency_ms":333.12076626885266,"throughput_eps":0,"last_update":"2026-03-21T22:32:43.965268519Z"} +2026/03/21 22:32:48 [detection_layer] {"stage_name":"detection_layer","events_processed":533,"events_dropped":0,"avg_latency_ms":18.13128672992101,"throughput_eps":0,"last_update":"2026-03-21T22:32:43.965306291Z"} +2026/03/21 22:32:48 [log_collector] {"stage_name":"log_collector","events_processed":25557,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5111.4,"last_update":"2026-03-21T22:32:48.869411264Z"} +2026/03/21 22:32:48 ───────────────────────────────────────────────── +2026/03/21 22:32:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:32:53 [transform_engine] {"stage_name":"transform_engine","events_processed":534,"events_dropped":0,"avg_latency_ms":291.3409280150821,"throughput_eps":0,"last_update":"2026-03-21T22:32:49.090100732Z"} +2026/03/21 22:32:53 [detection_layer] {"stage_name":"detection_layer","events_processed":533,"events_dropped":0,"avg_latency_ms":18.13128672992101,"throughput_eps":0,"last_update":"2026-03-21T22:32:48.965836506Z"} +2026/03/21 22:32:53 [log_collector] {"stage_name":"log_collector","events_processed":25557,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5111.4,"last_update":"2026-03-21T22:32:53.869415997Z"} +2026/03/21 22:32:53 [metric_collector] {"stage_name":"metric_collector","events_processed":16019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3203.8,"last_update":"2026-03-21T22:32:48.869930809Z"} +2026/03/21 22:32:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:32:48.878628512Z"} +2026/03/21 22:32:53 ───────────────────────────────────────────────── +2026/03/21 22:32:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:32:58 [log_collector] {"stage_name":"log_collector","events_processed":25557,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5111.4,"last_update":"2026-03-21T22:32:53.869415997Z"} +2026/03/21 22:32:58 [metric_collector] {"stage_name":"metric_collector","events_processed":16029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3205.8,"last_update":"2026-03-21T22:32:58.869763232Z"} +2026/03/21 22:32:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:32:58.869875878Z"} +2026/03/21 22:32:58 [transform_engine] {"stage_name":"transform_engine","events_processed":534,"events_dropped":0,"avg_latency_ms":291.3409280150821,"throughput_eps":0,"last_update":"2026-03-21T22:32:53.965406256Z"} +2026/03/21 22:32:58 [detection_layer] {"stage_name":"detection_layer","events_processed":534,"events_dropped":0,"avg_latency_ms":18.60596398393681,"throughput_eps":0,"last_update":"2026-03-21T22:32:53.965452044Z"} +2026/03/21 22:32:58 ───────────────────────────────────────────────── +2026/03/21 22:33:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:33:03 [log_collector] {"stage_name":"log_collector","events_processed":25557,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5111.4,"last_update":"2026-03-21T22:32:58.869978826Z"} +2026/03/21 22:33:03 [metric_collector] {"stage_name":"metric_collector","events_processed":16029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3205.8,"last_update":"2026-03-21T22:32:58.869763232Z"} +2026/03/21 22:33:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:32:58.869875878Z"} +2026/03/21 22:33:03 [transform_engine] {"stage_name":"transform_engine","events_processed":534,"events_dropped":0,"avg_latency_ms":291.3409280150821,"throughput_eps":0,"last_update":"2026-03-21T22:32:58.966048226Z"} +2026/03/21 22:33:03 [detection_layer] {"stage_name":"detection_layer","events_processed":534,"events_dropped":0,"avg_latency_ms":18.60596398393681,"throughput_eps":0,"last_update":"2026-03-21T22:32:58.966023349Z"} +2026/03/21 22:33:03 ───────────────────────────────────────────────── +2026/03/21 22:33:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:33:08 [transform_engine] {"stage_name":"transform_engine","events_processed":534,"events_dropped":0,"avg_latency_ms":291.3409280150821,"throughput_eps":0,"last_update":"2026-03-21T22:33:03.965099964Z"} +2026/03/21 22:33:08 [detection_layer] {"stage_name":"detection_layer","events_processed":534,"events_dropped":0,"avg_latency_ms":18.60596398393681,"throughput_eps":0,"last_update":"2026-03-21T22:33:03.966232775Z"} +2026/03/21 22:33:08 [log_collector] {"stage_name":"log_collector","events_processed":25557,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5111.4,"last_update":"2026-03-21T22:33:03.870194765Z"} +2026/03/21 22:33:08 [metric_collector] {"stage_name":"metric_collector","events_processed":16034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3206.8,"last_update":"2026-03-21T22:33:03.870671407Z"} +2026/03/21 22:33:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:33:03.870235662Z"} +2026/03/21 22:33:08 ───────────────────────────────────────────────── +2026/03/21 22:33:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:33:13 [log_collector] {"stage_name":"log_collector","events_processed":25557,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5111.4,"last_update":"2026-03-21T22:33:08.869402068Z"} +2026/03/21 22:33:13 [metric_collector] {"stage_name":"metric_collector","events_processed":16039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3207.8,"last_update":"2026-03-21T22:33:08.869840968Z"} +2026/03/21 22:33:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:33:08.878084381Z"} +2026/03/21 22:33:13 [transform_engine] {"stage_name":"transform_engine","events_processed":534,"events_dropped":0,"avg_latency_ms":291.3409280150821,"throughput_eps":0,"last_update":"2026-03-21T22:33:08.965443855Z"} +2026/03/21 22:33:13 [detection_layer] {"stage_name":"detection_layer","events_processed":534,"events_dropped":0,"avg_latency_ms":18.60596398393681,"throughput_eps":0,"last_update":"2026-03-21T22:33:08.965411332Z"} +2026/03/21 22:33:13 ───────────────────────────────────────────────── +2026/03/21 22:33:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:33:18 [log_collector] {"stage_name":"log_collector","events_processed":25557,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5111.4,"last_update":"2026-03-21T22:33:18.870137624Z"} +2026/03/21 22:33:18 [metric_collector] {"stage_name":"metric_collector","events_processed":16044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208.8,"last_update":"2026-03-21T22:33:13.869851714Z"} +2026/03/21 22:33:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6420,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:33:13.879063774Z"} +2026/03/21 22:33:18 [transform_engine] {"stage_name":"transform_engine","events_processed":534,"events_dropped":0,"avg_latency_ms":291.3409280150821,"throughput_eps":0,"last_update":"2026-03-21T22:33:13.96540714Z"} +2026/03/21 22:33:18 [detection_layer] {"stage_name":"detection_layer","events_processed":534,"events_dropped":0,"avg_latency_ms":18.60596398393681,"throughput_eps":0,"last_update":"2026-03-21T22:33:13.96544864Z"} +2026/03/21 22:33:18 ───────────────────────────────────────────────── +2026/03/21 22:33:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:33:23 [log_collector] {"stage_name":"log_collector","events_processed":25557,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5111.4,"last_update":"2026-03-21T22:33:18.870137624Z"} +2026/03/21 22:33:23 [metric_collector] {"stage_name":"metric_collector","events_processed":16049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3209.8,"last_update":"2026-03-21T22:33:18.870458839Z"} +2026/03/21 22:33:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:33:18.877151461Z"} +2026/03/21 22:33:23 [transform_engine] {"stage_name":"transform_engine","events_processed":535,"events_dropped":0,"avg_latency_ms":245.6775206120657,"throughput_eps":0,"last_update":"2026-03-21T22:33:19.028408079Z"} +2026/03/21 22:33:23 [detection_layer] {"stage_name":"detection_layer","events_processed":534,"events_dropped":0,"avg_latency_ms":18.60596398393681,"throughput_eps":0,"last_update":"2026-03-21T22:33:18.965336606Z"} +2026/03/21 22:33:23 ───────────────────────────────────────────────── +2026/03/21 22:33:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:33:28 [metric_collector] {"stage_name":"metric_collector","events_processed":16054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3210.8,"last_update":"2026-03-21T22:33:23.870271909Z"} +2026/03/21 22:33:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:33:23.878846786Z"} +2026/03/21 22:33:28 [transform_engine] {"stage_name":"transform_engine","events_processed":535,"events_dropped":0,"avg_latency_ms":245.6775206120657,"throughput_eps":0,"last_update":"2026-03-21T22:33:23.966134061Z"} +2026/03/21 22:33:28 [detection_layer] {"stage_name":"detection_layer","events_processed":535,"events_dropped":0,"avg_latency_ms":17.91832298714945,"throughput_eps":0,"last_update":"2026-03-21T22:33:23.966240444Z"} +2026/03/21 22:33:28 [log_collector] {"stage_name":"log_collector","events_processed":25557,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5111.4,"last_update":"2026-03-21T22:33:28.86943666Z"} +2026/03/21 22:33:28 ───────────────────────────────────────────────── +Saved state: 14 clusters, 25558 messages, reason: none +2026/03/21 22:33:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:33:33 [log_collector] {"stage_name":"log_collector","events_processed":25557,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5111.4,"last_update":"2026-03-21T22:33:28.86943666Z"} +2026/03/21 22:33:33 [metric_collector] {"stage_name":"metric_collector","events_processed":16059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3211.8,"last_update":"2026-03-21T22:33:28.869739721Z"} +2026/03/21 22:33:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:33:28.878547114Z"} +2026/03/21 22:33:33 [transform_engine] {"stage_name":"transform_engine","events_processed":535,"events_dropped":0,"avg_latency_ms":245.6775206120657,"throughput_eps":0,"last_update":"2026-03-21T22:33:28.965734778Z"} +2026/03/21 22:33:33 [detection_layer] {"stage_name":"detection_layer","events_processed":535,"events_dropped":0,"avg_latency_ms":17.91832298714945,"throughput_eps":0,"last_update":"2026-03-21T22:33:28.965757321Z"} +2026/03/21 22:33:33 ───────────────────────────────────────────────── +2026/03/21 22:33:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:33:38 [metric_collector] {"stage_name":"metric_collector","events_processed":16064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3212.8,"last_update":"2026-03-21T22:33:33.869873536Z"} +2026/03/21 22:33:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:33:33.879592996Z"} +2026/03/21 22:33:38 [transform_engine] {"stage_name":"transform_engine","events_processed":535,"events_dropped":0,"avg_latency_ms":245.6775206120657,"throughput_eps":0,"last_update":"2026-03-21T22:33:33.965826372Z"} +2026/03/21 22:33:38 [detection_layer] {"stage_name":"detection_layer","events_processed":535,"events_dropped":0,"avg_latency_ms":17.91832298714945,"throughput_eps":0,"last_update":"2026-03-21T22:33:33.965773751Z"} +2026/03/21 22:33:38 [log_collector] {"stage_name":"log_collector","events_processed":25560,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5112,"last_update":"2026-03-21T22:33:38.869794588Z"} +2026/03/21 22:33:38 ───────────────────────────────────────────────── +2026/03/21 22:33:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:33:43 [log_collector] {"stage_name":"log_collector","events_processed":25571,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5114.2,"last_update":"2026-03-21T22:33:43.869901693Z"} +2026/03/21 22:33:43 [metric_collector] {"stage_name":"metric_collector","events_processed":16069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3213.8,"last_update":"2026-03-21T22:33:38.87002569Z"} +2026/03/21 22:33:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:33:38.877376563Z"} +2026/03/21 22:33:43 [transform_engine] {"stage_name":"transform_engine","events_processed":535,"events_dropped":0,"avg_latency_ms":245.6775206120657,"throughput_eps":0,"last_update":"2026-03-21T22:33:38.965164687Z"} +2026/03/21 22:33:43 [detection_layer] {"stage_name":"detection_layer","events_processed":535,"events_dropped":0,"avg_latency_ms":17.91832298714945,"throughput_eps":0,"last_update":"2026-03-21T22:33:38.966284302Z"} +2026/03/21 22:33:43 ───────────────────────────────────────────────── +2026/03/21 22:33:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:33:48 [transform_engine] {"stage_name":"transform_engine","events_processed":535,"events_dropped":0,"avg_latency_ms":245.6775206120657,"throughput_eps":0,"last_update":"2026-03-21T22:33:43.965572408Z"} +2026/03/21 22:33:48 [detection_layer] {"stage_name":"detection_layer","events_processed":535,"events_dropped":0,"avg_latency_ms":17.91832298714945,"throughput_eps":0,"last_update":"2026-03-21T22:33:43.965456887Z"} +2026/03/21 22:33:48 [log_collector] {"stage_name":"log_collector","events_processed":25571,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5114.2,"last_update":"2026-03-21T22:33:43.869901693Z"} +2026/03/21 22:33:48 [metric_collector] {"stage_name":"metric_collector","events_processed":16074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3214.8,"last_update":"2026-03-21T22:33:43.870342306Z"} +2026/03/21 22:33:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:33:43.878105129Z"} +2026/03/21 22:33:48 ───────────────────────────────────────────────── +2026/03/21 22:33:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:33:53 [log_collector] {"stage_name":"log_collector","events_processed":25585,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5117,"last_update":"2026-03-21T22:33:48.869409344Z"} +2026/03/21 22:33:53 [metric_collector] {"stage_name":"metric_collector","events_processed":16079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3215.8,"last_update":"2026-03-21T22:33:48.869834268Z"} +2026/03/21 22:33:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:33:48.878588089Z"} +2026/03/21 22:33:53 [transform_engine] {"stage_name":"transform_engine","events_processed":536,"events_dropped":0,"avg_latency_ms":223.3666810896526,"throughput_eps":0,"last_update":"2026-03-21T22:33:49.100048443Z"} +2026/03/21 22:33:53 [detection_layer] {"stage_name":"detection_layer","events_processed":535,"events_dropped":0,"avg_latency_ms":17.91832298714945,"throughput_eps":0,"last_update":"2026-03-21T22:33:48.966018909Z"} +2026/03/21 22:33:53 ───────────────────────────────────────────────── +2026/03/21 22:33:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:33:58 [log_collector] {"stage_name":"log_collector","events_processed":25587,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5117.4,"last_update":"2026-03-21T22:33:53.870076063Z"} +2026/03/21 22:33:58 [metric_collector] {"stage_name":"metric_collector","events_processed":16084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3216.8,"last_update":"2026-03-21T22:33:53.870482392Z"} +2026/03/21 22:33:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:33:53.878418776Z"} +2026/03/21 22:33:58 [transform_engine] {"stage_name":"transform_engine","events_processed":536,"events_dropped":0,"avg_latency_ms":223.3666810896526,"throughput_eps":0,"last_update":"2026-03-21T22:33:53.965638372Z"} +2026/03/21 22:33:58 [detection_layer] {"stage_name":"detection_layer","events_processed":536,"events_dropped":0,"avg_latency_ms":17.720893789719558,"throughput_eps":0,"last_update":"2026-03-21T22:33:53.965615849Z"} +2026/03/21 22:33:58 ───────────────────────────────────────────────── +2026/03/21 22:34:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:34:03 [metric_collector] {"stage_name":"metric_collector","events_processed":16088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3217.6,"last_update":"2026-03-21T22:33:58.869425113Z"} +2026/03/21 22:34:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:33:58.876698177Z"} +2026/03/21 22:34:03 [transform_engine] {"stage_name":"transform_engine","events_processed":536,"events_dropped":0,"avg_latency_ms":223.3666810896526,"throughput_eps":0,"last_update":"2026-03-21T22:33:58.965984242Z"} +2026/03/21 22:34:03 [detection_layer] {"stage_name":"detection_layer","events_processed":536,"events_dropped":0,"avg_latency_ms":17.720893789719558,"throughput_eps":0,"last_update":"2026-03-21T22:33:58.96604072Z"} +2026/03/21 22:34:03 [log_collector] {"stage_name":"log_collector","events_processed":25590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5118,"last_update":"2026-03-21T22:33:58.869408803Z"} +2026/03/21 22:34:03 ───────────────────────────────────────────────── +2026/03/21 22:34:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:34:08 [log_collector] {"stage_name":"log_collector","events_processed":25601,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5120.2,"last_update":"2026-03-21T22:34:03.869918131Z"} +2026/03/21 22:34:08 [metric_collector] {"stage_name":"metric_collector","events_processed":16094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3218.8,"last_update":"2026-03-21T22:34:03.870265727Z"} +2026/03/21 22:34:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:34:03.878508388Z"} +2026/03/21 22:34:08 [transform_engine] {"stage_name":"transform_engine","events_processed":536,"events_dropped":0,"avg_latency_ms":223.3666810896526,"throughput_eps":0,"last_update":"2026-03-21T22:34:03.965907407Z"} +2026/03/21 22:34:08 [detection_layer] {"stage_name":"detection_layer","events_processed":536,"events_dropped":0,"avg_latency_ms":17.720893789719558,"throughput_eps":0,"last_update":"2026-03-21T22:34:03.965864284Z"} +2026/03/21 22:34:08 ───────────────────────────────────────────────── +2026/03/21 22:34:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:34:13 [log_collector] {"stage_name":"log_collector","events_processed":25601,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5120.2,"last_update":"2026-03-21T22:34:08.869420516Z"} +2026/03/21 22:34:13 [metric_collector] {"stage_name":"metric_collector","events_processed":16099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3219.8,"last_update":"2026-03-21T22:34:08.869830612Z"} +2026/03/21 22:34:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6442,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:34:08.876913431Z"} +2026/03/21 22:34:13 [transform_engine] {"stage_name":"transform_engine","events_processed":536,"events_dropped":0,"avg_latency_ms":223.3666810896526,"throughput_eps":0,"last_update":"2026-03-21T22:34:08.965089779Z"} +2026/03/21 22:34:13 [detection_layer] {"stage_name":"detection_layer","events_processed":536,"events_dropped":0,"avg_latency_ms":17.720893789719558,"throughput_eps":0,"last_update":"2026-03-21T22:34:08.966232709Z"} +2026/03/21 22:34:13 ───────────────────────────────────────────────── +2026/03/21 22:34:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:34:18 [detection_layer] {"stage_name":"detection_layer","events_processed":536,"events_dropped":0,"avg_latency_ms":17.720893789719558,"throughput_eps":0,"last_update":"2026-03-21T22:34:13.965828431Z"} +2026/03/21 22:34:18 [log_collector] {"stage_name":"log_collector","events_processed":25601,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5120.2,"last_update":"2026-03-21T22:34:13.87016579Z"} +2026/03/21 22:34:18 [metric_collector] {"stage_name":"metric_collector","events_processed":16104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3220.8,"last_update":"2026-03-21T22:34:13.870630811Z"} +2026/03/21 22:34:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:34:13.879528598Z"} +2026/03/21 22:34:18 [transform_engine] {"stage_name":"transform_engine","events_processed":536,"events_dropped":0,"avg_latency_ms":223.3666810896526,"throughput_eps":0,"last_update":"2026-03-21T22:34:13.965701336Z"} +2026/03/21 22:34:18 ───────────────────────────────────────────────── +2026/03/21 22:34:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:34:23 [log_collector] {"stage_name":"log_collector","events_processed":25601,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5120.2,"last_update":"2026-03-21T22:34:18.869545133Z"} +2026/03/21 22:34:23 [metric_collector] {"stage_name":"metric_collector","events_processed":16109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3221.8,"last_update":"2026-03-21T22:34:18.870038547Z"} +2026/03/21 22:34:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6446,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:34:18.878421618Z"} +2026/03/21 22:34:23 [transform_engine] {"stage_name":"transform_engine","events_processed":537,"events_dropped":0,"avg_latency_ms":202.81055647172207,"throughput_eps":0,"last_update":"2026-03-21T22:34:19.086413237Z"} +2026/03/21 22:34:23 [detection_layer] {"stage_name":"detection_layer","events_processed":536,"events_dropped":0,"avg_latency_ms":17.720893789719558,"throughput_eps":0,"last_update":"2026-03-21T22:34:18.965788274Z"} +2026/03/21 22:34:23 ───────────────────────────────────────────────── +2026/03/21 22:34:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:34:28 [log_collector] {"stage_name":"log_collector","events_processed":25601,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5120.2,"last_update":"2026-03-21T22:34:23.869885793Z"} +2026/03/21 22:34:28 [metric_collector] {"stage_name":"metric_collector","events_processed":16114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3222.8,"last_update":"2026-03-21T22:34:23.870683562Z"} +2026/03/21 22:34:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:34:23.878748963Z"} +2026/03/21 22:34:28 [transform_engine] {"stage_name":"transform_engine","events_processed":537,"events_dropped":0,"avg_latency_ms":202.81055647172207,"throughput_eps":0,"last_update":"2026-03-21T22:34:23.966014655Z"} +2026/03/21 22:34:28 [detection_layer] {"stage_name":"detection_layer","events_processed":537,"events_dropped":0,"avg_latency_ms":18.56546503177565,"throughput_eps":0,"last_update":"2026-03-21T22:34:23.966037459Z"} +2026/03/21 22:34:28 ───────────────────────────────────────────────── +2026/03/21 22:34:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:34:33 [log_collector] {"stage_name":"log_collector","events_processed":25601,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5120.2,"last_update":"2026-03-21T22:34:28.870051555Z"} +2026/03/21 22:34:33 [metric_collector] {"stage_name":"metric_collector","events_processed":16119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3223.8,"last_update":"2026-03-21T22:34:28.869891187Z"} +2026/03/21 22:34:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:34:28.878888195Z"} +2026/03/21 22:34:33 [transform_engine] {"stage_name":"transform_engine","events_processed":537,"events_dropped":0,"avg_latency_ms":202.81055647172207,"throughput_eps":0,"last_update":"2026-03-21T22:34:28.966162324Z"} +2026/03/21 22:34:33 [detection_layer] {"stage_name":"detection_layer","events_processed":537,"events_dropped":0,"avg_latency_ms":18.56546503177565,"throughput_eps":0,"last_update":"2026-03-21T22:34:28.966116315Z"} +2026/03/21 22:34:33 ───────────────────────────────────────────────── +2026/03/21 22:34:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:34:38 [log_collector] {"stage_name":"log_collector","events_processed":25601,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5120.2,"last_update":"2026-03-21T22:34:33.870302775Z"} +2026/03/21 22:34:38 [metric_collector] {"stage_name":"metric_collector","events_processed":16124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3224.8,"last_update":"2026-03-21T22:34:33.870755674Z"} +2026/03/21 22:34:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6452,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:34:33.879028132Z"} +2026/03/21 22:34:38 [transform_engine] {"stage_name":"transform_engine","events_processed":537,"events_dropped":0,"avg_latency_ms":202.81055647172207,"throughput_eps":0,"last_update":"2026-03-21T22:34:33.96520543Z"} +2026/03/21 22:34:38 [detection_layer] {"stage_name":"detection_layer","events_processed":537,"events_dropped":0,"avg_latency_ms":18.56546503177565,"throughput_eps":0,"last_update":"2026-03-21T22:34:33.966420217Z"} +2026/03/21 22:34:38 ───────────────────────────────────────────────── +2026/03/21 22:34:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:34:43 [log_collector] {"stage_name":"log_collector","events_processed":25601,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5120.2,"last_update":"2026-03-21T22:34:38.870227598Z"} +2026/03/21 22:34:43 [metric_collector] {"stage_name":"metric_collector","events_processed":16129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3225.8,"last_update":"2026-03-21T22:34:38.870948208Z"} +2026/03/21 22:34:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:34:38.878685091Z"} +2026/03/21 22:34:43 [transform_engine] {"stage_name":"transform_engine","events_processed":537,"events_dropped":0,"avg_latency_ms":202.81055647172207,"throughput_eps":0,"last_update":"2026-03-21T22:34:38.966093125Z"} +2026/03/21 22:34:43 [detection_layer] {"stage_name":"detection_layer","events_processed":537,"events_dropped":0,"avg_latency_ms":18.56546503177565,"throughput_eps":0,"last_update":"2026-03-21T22:34:38.966065633Z"} +2026/03/21 22:34:43 ───────────────────────────────────────────────── +2026/03/21 22:34:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:34:48 [transform_engine] {"stage_name":"transform_engine","events_processed":537,"events_dropped":0,"avg_latency_ms":202.81055647172207,"throughput_eps":0,"last_update":"2026-03-21T22:34:43.965184197Z"} +2026/03/21 22:34:48 [detection_layer] {"stage_name":"detection_layer","events_processed":537,"events_dropped":0,"avg_latency_ms":18.56546503177565,"throughput_eps":0,"last_update":"2026-03-21T22:34:43.965702178Z"} +2026/03/21 22:34:48 [log_collector] {"stage_name":"log_collector","events_processed":25601,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5120.2,"last_update":"2026-03-21T22:34:43.869647017Z"} +2026/03/21 22:34:48 [metric_collector] {"stage_name":"metric_collector","events_processed":16134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3226.8,"last_update":"2026-03-21T22:34:43.869843914Z"} +2026/03/21 22:34:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:34:43.878807066Z"} +2026/03/21 22:34:48 ───────────────────────────────────────────────── +2026/03/21 22:34:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:34:53 [log_collector] {"stage_name":"log_collector","events_processed":25601,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5120.2,"last_update":"2026-03-21T22:34:48.869437984Z"} +2026/03/21 22:34:53 [metric_collector] {"stage_name":"metric_collector","events_processed":16139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3227.8,"last_update":"2026-03-21T22:34:48.870172542Z"} +2026/03/21 22:34:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:34:48.877889826Z"} +2026/03/21 22:34:53 [transform_engine] {"stage_name":"transform_engine","events_processed":538,"events_dropped":0,"avg_latency_ms":176.37231137737768,"throughput_eps":0,"last_update":"2026-03-21T22:34:49.036780197Z"} +2026/03/21 22:34:53 [detection_layer] {"stage_name":"detection_layer","events_processed":537,"events_dropped":0,"avg_latency_ms":18.56546503177565,"throughput_eps":0,"last_update":"2026-03-21T22:34:48.966264383Z"} +2026/03/21 22:34:53 ───────────────────────────────────────────────── +2026/03/21 22:34:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:34:58 [log_collector] {"stage_name":"log_collector","events_processed":25601,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5120.2,"last_update":"2026-03-21T22:34:53.869998974Z"} +2026/03/21 22:34:58 [metric_collector] {"stage_name":"metric_collector","events_processed":16144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3228.8,"last_update":"2026-03-21T22:34:53.870463723Z"} +2026/03/21 22:34:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:34:53.87947629Z"} +2026/03/21 22:34:58 [transform_engine] {"stage_name":"transform_engine","events_processed":538,"events_dropped":0,"avg_latency_ms":176.37231137737768,"throughput_eps":0,"last_update":"2026-03-21T22:34:53.9656968Z"} +2026/03/21 22:34:58 [detection_layer] {"stage_name":"detection_layer","events_processed":538,"events_dropped":0,"avg_latency_ms":19.17878662542052,"throughput_eps":0,"last_update":"2026-03-21T22:34:53.965679636Z"} +2026/03/21 22:34:58 ───────────────────────────────────────────────── +2026/03/21 22:35:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:35:03 [detection_layer] {"stage_name":"detection_layer","events_processed":538,"events_dropped":0,"avg_latency_ms":19.17878662542052,"throughput_eps":0,"last_update":"2026-03-21T22:34:58.965796151Z"} +2026/03/21 22:35:03 [log_collector] {"stage_name":"log_collector","events_processed":25601,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5120.2,"last_update":"2026-03-21T22:34:58.869571856Z"} +2026/03/21 22:35:03 [metric_collector] {"stage_name":"metric_collector","events_processed":16149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3229.8,"last_update":"2026-03-21T22:34:58.870085178Z"} +2026/03/21 22:35:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:34:58.878422602Z"} +2026/03/21 22:35:03 [transform_engine] {"stage_name":"transform_engine","events_processed":538,"events_dropped":0,"avg_latency_ms":176.37231137737768,"throughput_eps":0,"last_update":"2026-03-21T22:34:58.965753028Z"} +2026/03/21 22:35:03 ───────────────────────────────────────────────── +Saved state: 14 clusters, 25602 messages, reason: none +2026/03/21 22:35:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:35:08 [log_collector] {"stage_name":"log_collector","events_processed":25601,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5120.2,"last_update":"2026-03-21T22:35:03.870486816Z"} +2026/03/21 22:35:08 [metric_collector] {"stage_name":"metric_collector","events_processed":16154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3230.8,"last_update":"2026-03-21T22:35:03.871107986Z"} +2026/03/21 22:35:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:35:03.879303787Z"} +2026/03/21 22:35:08 [transform_engine] {"stage_name":"transform_engine","events_processed":538,"events_dropped":0,"avg_latency_ms":176.37231137737768,"throughput_eps":0,"last_update":"2026-03-21T22:35:03.965683422Z"} +2026/03/21 22:35:08 [detection_layer] {"stage_name":"detection_layer","events_processed":538,"events_dropped":0,"avg_latency_ms":19.17878662542052,"throughput_eps":0,"last_update":"2026-03-21T22:35:03.965578211Z"} +2026/03/21 22:35:08 ───────────────────────────────────────────────── +2026/03/21 22:35:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:35:13 [log_collector] {"stage_name":"log_collector","events_processed":25606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5121.2,"last_update":"2026-03-21T22:35:08.869943419Z"} +2026/03/21 22:35:13 [metric_collector] {"stage_name":"metric_collector","events_processed":16159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3231.8,"last_update":"2026-03-21T22:35:08.870112904Z"} +2026/03/21 22:35:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:35:08.879980237Z"} +2026/03/21 22:35:13 [transform_engine] {"stage_name":"transform_engine","events_processed":538,"events_dropped":0,"avg_latency_ms":176.37231137737768,"throughput_eps":0,"last_update":"2026-03-21T22:35:08.965081363Z"} +2026/03/21 22:35:13 [detection_layer] {"stage_name":"detection_layer","events_processed":538,"events_dropped":0,"avg_latency_ms":19.17878662542052,"throughput_eps":0,"last_update":"2026-03-21T22:35:08.966144069Z"} +2026/03/21 22:35:13 ───────────────────────────────────────────────── +2026/03/21 22:35:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:35:18 [log_collector] {"stage_name":"log_collector","events_processed":25606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5121.2,"last_update":"2026-03-21T22:35:18.869968703Z"} +2026/03/21 22:35:18 [metric_collector] {"stage_name":"metric_collector","events_processed":16164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3232.8,"last_update":"2026-03-21T22:35:13.870138883Z"} +2026/03/21 22:35:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:35:13.879870888Z"} +2026/03/21 22:35:18 [transform_engine] {"stage_name":"transform_engine","events_processed":538,"events_dropped":0,"avg_latency_ms":176.37231137737768,"throughput_eps":0,"last_update":"2026-03-21T22:35:13.9660302Z"} +2026/03/21 22:35:18 [detection_layer] {"stage_name":"detection_layer","events_processed":538,"events_dropped":0,"avg_latency_ms":19.17878662542052,"throughput_eps":0,"last_update":"2026-03-21T22:35:13.966005573Z"} +2026/03/21 22:35:18 ───────────────────────────────────────────────── +2026/03/21 22:35:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:35:23 [log_collector] {"stage_name":"log_collector","events_processed":25606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5121.2,"last_update":"2026-03-21T22:35:18.869968703Z"} +2026/03/21 22:35:23 [metric_collector] {"stage_name":"metric_collector","events_processed":16169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3233.8,"last_update":"2026-03-21T22:35:18.870598118Z"} +2026/03/21 22:35:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6470,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:35:18.87767694Z"} +2026/03/21 22:35:23 [transform_engine] {"stage_name":"transform_engine","events_processed":538,"events_dropped":0,"avg_latency_ms":176.37231137737768,"throughput_eps":0,"last_update":"2026-03-21T22:35:13.9660302Z"} +2026/03/21 22:35:23 [detection_layer] {"stage_name":"detection_layer","events_processed":538,"events_dropped":0,"avg_latency_ms":19.17878662542052,"throughput_eps":0,"last_update":"2026-03-21T22:35:18.96590228Z"} +2026/03/21 22:35:23 ───────────────────────────────────────────────── +2026/03/21 22:35:24 [ANOMALY] time=2026-03-21T22:35:24Z score=0.8941 method=SEAD details=MAD!:w=0.25,s=0.93 RRCF-fast!:w=0.20,s=1.00 RRCF-mid!:w=0.17,s=0.97 RRCF-slow!:w=0.15,s=0.99 COPOD!:w=0.23,s=0.64 +2026/03/21 22:35:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:35:28 [log_collector] {"stage_name":"log_collector","events_processed":25606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5121.2,"last_update":"2026-03-21T22:35:28.870017559Z"} +2026/03/21 22:35:28 [metric_collector] {"stage_name":"metric_collector","events_processed":16179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3235.8,"last_update":"2026-03-21T22:35:28.870001308Z"} +2026/03/21 22:35:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:35:23.877175343Z"} +2026/03/21 22:35:28 [transform_engine] {"stage_name":"transform_engine","events_processed":539,"events_dropped":0,"avg_latency_ms":1207.8627249019023,"throughput_eps":0,"last_update":"2026-03-21T22:35:24.29975329Z"} +2026/03/21 22:35:28 [detection_layer] {"stage_name":"detection_layer","events_processed":538,"events_dropped":0,"avg_latency_ms":19.17878662542052,"throughput_eps":0,"last_update":"2026-03-21T22:35:23.965282767Z"} +2026/03/21 22:35:28 ───────────────────────────────────────────────── +2026/03/21 22:35:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:35:33 [log_collector] {"stage_name":"log_collector","events_processed":25606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5121.2,"last_update":"2026-03-21T22:35:33.869392108Z"} +2026/03/21 22:35:33 [metric_collector] {"stage_name":"metric_collector","events_processed":16179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3235.8,"last_update":"2026-03-21T22:35:28.870001308Z"} +2026/03/21 22:35:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:35:28.8760676Z"} +2026/03/21 22:35:33 [transform_engine] {"stage_name":"transform_engine","events_processed":539,"events_dropped":0,"avg_latency_ms":1207.8627249019023,"throughput_eps":0,"last_update":"2026-03-21T22:35:28.965264451Z"} +2026/03/21 22:35:33 [detection_layer] {"stage_name":"detection_layer","events_processed":539,"events_dropped":0,"avg_latency_ms":17.98796050033642,"throughput_eps":0,"last_update":"2026-03-21T22:35:28.965403517Z"} +2026/03/21 22:35:33 ───────────────────────────────────────────────── +2026/03/21 22:35:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:35:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6476,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:35:33.877443573Z"} +2026/03/21 22:35:38 [transform_engine] {"stage_name":"transform_engine","events_processed":539,"events_dropped":0,"avg_latency_ms":1207.8627249019023,"throughput_eps":0,"last_update":"2026-03-21T22:35:33.965605642Z"} +2026/03/21 22:35:38 [detection_layer] {"stage_name":"detection_layer","events_processed":539,"events_dropped":0,"avg_latency_ms":17.98796050033642,"throughput_eps":0,"last_update":"2026-03-21T22:35:33.965641952Z"} +2026/03/21 22:35:38 [log_collector] {"stage_name":"log_collector","events_processed":25606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5121.2,"last_update":"2026-03-21T22:35:33.869392108Z"} +2026/03/21 22:35:38 [metric_collector] {"stage_name":"metric_collector","events_processed":16184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3236.8,"last_update":"2026-03-21T22:35:33.869700629Z"} +2026/03/21 22:35:38 ───────────────────────────────────────────────── +2026/03/21 22:35:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:35:43 [log_collector] {"stage_name":"log_collector","events_processed":25606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5121.2,"last_update":"2026-03-21T22:35:38.869440605Z"} +2026/03/21 22:35:43 [metric_collector] {"stage_name":"metric_collector","events_processed":16189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3237.8,"last_update":"2026-03-21T22:35:38.869630217Z"} +2026/03/21 22:35:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:35:38.878136274Z"} +2026/03/21 22:35:43 [transform_engine] {"stage_name":"transform_engine","events_processed":539,"events_dropped":0,"avg_latency_ms":1207.8627249019023,"throughput_eps":0,"last_update":"2026-03-21T22:35:38.965327522Z"} +2026/03/21 22:35:43 [detection_layer] {"stage_name":"detection_layer","events_processed":539,"events_dropped":0,"avg_latency_ms":17.98796050033642,"throughput_eps":0,"last_update":"2026-03-21T22:35:38.965345036Z"} +2026/03/21 22:35:43 ───────────────────────────────────────────────── +2026/03/21 22:35:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:35:48 [metric_collector] {"stage_name":"metric_collector","events_processed":16194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3238.8,"last_update":"2026-03-21T22:35:43.870772143Z"} +2026/03/21 22:35:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6480,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:35:43.877440899Z"} +2026/03/21 22:35:48 [transform_engine] {"stage_name":"transform_engine","events_processed":539,"events_dropped":0,"avg_latency_ms":1207.8627249019023,"throughput_eps":0,"last_update":"2026-03-21T22:35:43.965648656Z"} +2026/03/21 22:35:48 [detection_layer] {"stage_name":"detection_layer","events_processed":539,"events_dropped":0,"avg_latency_ms":17.98796050033642,"throughput_eps":0,"last_update":"2026-03-21T22:35:43.96561938Z"} +2026/03/21 22:35:48 [log_collector] {"stage_name":"log_collector","events_processed":25606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5121.2,"last_update":"2026-03-21T22:35:43.87042052Z"} +2026/03/21 22:35:48 ───────────────────────────────────────────────── +2026/03/21 22:35:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:35:53 [log_collector] {"stage_name":"log_collector","events_processed":25617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5123.4,"last_update":"2026-03-21T22:35:53.86975866Z"} +2026/03/21 22:35:53 [metric_collector] {"stage_name":"metric_collector","events_processed":16199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3239.8,"last_update":"2026-03-21T22:35:48.870365219Z"} +2026/03/21 22:35:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6482,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:35:48.876608089Z"} +2026/03/21 22:35:53 [transform_engine] {"stage_name":"transform_engine","events_processed":540,"events_dropped":0,"avg_latency_ms":1044.313296921522,"throughput_eps":0,"last_update":"2026-03-21T22:35:49.355809643Z"} +2026/03/21 22:35:53 [detection_layer] {"stage_name":"detection_layer","events_processed":539,"events_dropped":0,"avg_latency_ms":17.98796050033642,"throughput_eps":0,"last_update":"2026-03-21T22:35:48.965662578Z"} +2026/03/21 22:35:53 ───────────────────────────────────────────────── +2026/03/21 22:35:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:35:58 [detection_layer] {"stage_name":"detection_layer","events_processed":540,"events_dropped":0,"avg_latency_ms":16.29884860026914,"throughput_eps":0,"last_update":"2026-03-21T22:35:53.965471043Z"} +2026/03/21 22:35:58 [log_collector] {"stage_name":"log_collector","events_processed":25617,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5123.4,"last_update":"2026-03-21T22:35:53.86975866Z"} +2026/03/21 22:35:58 [metric_collector] {"stage_name":"metric_collector","events_processed":16204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3240.8,"last_update":"2026-03-21T22:35:53.870248438Z"} +2026/03/21 22:35:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:35:53.878059121Z"} +2026/03/21 22:35:58 [transform_engine] {"stage_name":"transform_engine","events_processed":540,"events_dropped":0,"avg_latency_ms":1044.313296921522,"throughput_eps":0,"last_update":"2026-03-21T22:35:53.965492765Z"} +2026/03/21 22:35:58 ───────────────────────────────────────────────── +2026/03/21 22:36:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:36:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6486,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:35:58.877427009Z"} +2026/03/21 22:36:03 [transform_engine] {"stage_name":"transform_engine","events_processed":540,"events_dropped":0,"avg_latency_ms":1044.313296921522,"throughput_eps":0,"last_update":"2026-03-21T22:35:58.965537079Z"} +2026/03/21 22:36:03 [detection_layer] {"stage_name":"detection_layer","events_processed":540,"events_dropped":0,"avg_latency_ms":16.29884860026914,"throughput_eps":0,"last_update":"2026-03-21T22:35:58.96556419Z"} +2026/03/21 22:36:03 [log_collector] {"stage_name":"log_collector","events_processed":25959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5191.8,"last_update":"2026-03-21T22:36:03.869744928Z"} +2026/03/21 22:36:03 [metric_collector] {"stage_name":"metric_collector","events_processed":16209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3241.8,"last_update":"2026-03-21T22:35:58.870473217Z"} +2026/03/21 22:36:03 ───────────────────────────────────────────────── +2026/03/21 22:36:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:36:08 [detection_layer] {"stage_name":"detection_layer","events_processed":540,"events_dropped":0,"avg_latency_ms":16.29884860026914,"throughput_eps":0,"last_update":"2026-03-21T22:36:03.965452713Z"} +2026/03/21 22:36:08 [log_collector] {"stage_name":"log_collector","events_processed":25959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5191.8,"last_update":"2026-03-21T22:36:03.869744928Z"} +2026/03/21 22:36:08 [metric_collector] {"stage_name":"metric_collector","events_processed":16214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3242.8,"last_update":"2026-03-21T22:36:03.8701375Z"} +2026/03/21 22:36:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:36:03.876157784Z"} +2026/03/21 22:36:08 [transform_engine] {"stage_name":"transform_engine","events_processed":540,"events_dropped":0,"avg_latency_ms":1044.313296921522,"throughput_eps":0,"last_update":"2026-03-21T22:36:03.965434168Z"} +2026/03/21 22:36:08 ───────────────────────────────────────────────── +2026/03/21 22:36:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:36:13 [log_collector] {"stage_name":"log_collector","events_processed":25965,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5193,"last_update":"2026-03-21T22:36:13.869409096Z"} +2026/03/21 22:36:13 [metric_collector] {"stage_name":"metric_collector","events_processed":16219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3243.8,"last_update":"2026-03-21T22:36:08.86971326Z"} +2026/03/21 22:36:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6490,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:36:08.87607639Z"} +2026/03/21 22:36:13 [transform_engine] {"stage_name":"transform_engine","events_processed":540,"events_dropped":0,"avg_latency_ms":1044.313296921522,"throughput_eps":0,"last_update":"2026-03-21T22:36:08.965374195Z"} +2026/03/21 22:36:13 [detection_layer] {"stage_name":"detection_layer","events_processed":540,"events_dropped":0,"avg_latency_ms":16.29884860026914,"throughput_eps":0,"last_update":"2026-03-21T22:36:08.965317536Z"} +2026/03/21 22:36:13 ───────────────────────────────────────────────── +2026/03/21 22:36:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:36:18 [detection_layer] {"stage_name":"detection_layer","events_processed":540,"events_dropped":0,"avg_latency_ms":16.29884860026914,"throughput_eps":0,"last_update":"2026-03-21T22:36:13.966076199Z"} +2026/03/21 22:36:18 [log_collector] {"stage_name":"log_collector","events_processed":25965,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5193,"last_update":"2026-03-21T22:36:13.869409096Z"} +2026/03/21 22:36:18 [metric_collector] {"stage_name":"metric_collector","events_processed":16224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3244.8,"last_update":"2026-03-21T22:36:13.870165535Z"} +2026/03/21 22:36:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:36:13.878728Z"} +2026/03/21 22:36:18 [transform_engine] {"stage_name":"transform_engine","events_processed":540,"events_dropped":0,"avg_latency_ms":1044.313296921522,"throughput_eps":0,"last_update":"2026-03-21T22:36:13.96610858Z"} +2026/03/21 22:36:18 ───────────────────────────────────────────────── +2026/03/21 22:36:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:36:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:36:18.879518981Z"} +2026/03/21 22:36:23 [transform_engine] {"stage_name":"transform_engine","events_processed":541,"events_dropped":0,"avg_latency_ms":859.8449415372176,"throughput_eps":0,"last_update":"2026-03-21T22:36:19.087896817Z"} +2026/03/21 22:36:23 [detection_layer] {"stage_name":"detection_layer","events_processed":540,"events_dropped":0,"avg_latency_ms":16.29884860026914,"throughput_eps":0,"last_update":"2026-03-21T22:36:18.965817441Z"} +2026/03/21 22:36:23 [log_collector] {"stage_name":"log_collector","events_processed":25965,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5193,"last_update":"2026-03-21T22:36:23.869874247Z"} +2026/03/21 22:36:23 [metric_collector] {"stage_name":"metric_collector","events_processed":16229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3245.8,"last_update":"2026-03-21T22:36:18.869800443Z"} +2026/03/21 22:36:23 ───────────────────────────────────────────────── +2026/03/21 22:36:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:36:28 [transform_engine] {"stage_name":"transform_engine","events_processed":541,"events_dropped":0,"avg_latency_ms":859.8449415372176,"throughput_eps":0,"last_update":"2026-03-21T22:36:23.965895021Z"} +2026/03/21 22:36:28 [detection_layer] {"stage_name":"detection_layer","events_processed":541,"events_dropped":0,"avg_latency_ms":17.67367568021531,"throughput_eps":0,"last_update":"2026-03-21T22:36:23.965854433Z"} +2026/03/21 22:36:28 [log_collector] {"stage_name":"log_collector","events_processed":25965,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5193,"last_update":"2026-03-21T22:36:23.869874247Z"} +2026/03/21 22:36:28 [metric_collector] {"stage_name":"metric_collector","events_processed":16234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3246.8,"last_update":"2026-03-21T22:36:23.870333587Z"} +2026/03/21 22:36:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6496,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:36:23.878647114Z"} +2026/03/21 22:36:28 ───────────────────────────────────────────────── +2026/03/21 22:36:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:36:33 [log_collector] {"stage_name":"log_collector","events_processed":25965,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5193,"last_update":"2026-03-21T22:36:28.869904796Z"} +2026/03/21 22:36:33 [metric_collector] {"stage_name":"metric_collector","events_processed":16239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3247.8,"last_update":"2026-03-21T22:36:28.87013672Z"} +2026/03/21 22:36:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6498,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:36:28.879176118Z"} +2026/03/21 22:36:33 [transform_engine] {"stage_name":"transform_engine","events_processed":541,"events_dropped":0,"avg_latency_ms":859.8449415372176,"throughput_eps":0,"last_update":"2026-03-21T22:36:28.965541956Z"} +2026/03/21 22:36:33 [detection_layer] {"stage_name":"detection_layer","events_processed":541,"events_dropped":0,"avg_latency_ms":17.67367568021531,"throughput_eps":0,"last_update":"2026-03-21T22:36:28.965569538Z"} +2026/03/21 22:36:33 ───────────────────────────────────────────────── +2026/03/21 22:36:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:36:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:36:33.877745257Z"} +2026/03/21 22:36:38 [transform_engine] {"stage_name":"transform_engine","events_processed":541,"events_dropped":0,"avg_latency_ms":859.8449415372176,"throughput_eps":0,"last_update":"2026-03-21T22:36:33.966168004Z"} +2026/03/21 22:36:38 [detection_layer] {"stage_name":"detection_layer","events_processed":541,"events_dropped":0,"avg_latency_ms":17.67367568021531,"throughput_eps":0,"last_update":"2026-03-21T22:36:33.966287493Z"} +2026/03/21 22:36:38 [log_collector] {"stage_name":"log_collector","events_processed":25965,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5193,"last_update":"2026-03-21T22:36:33.869945714Z"} +2026/03/21 22:36:38 [metric_collector] {"stage_name":"metric_collector","events_processed":16244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3248.8,"last_update":"2026-03-21T22:36:33.870245499Z"} +2026/03/21 22:36:38 ───────────────────────────────────────────────── +2026/03/21 22:36:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:36:43 [metric_collector] {"stage_name":"metric_collector","events_processed":16249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3249.8,"last_update":"2026-03-21T22:36:38.869720398Z"} +2026/03/21 22:36:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:36:38.879624712Z"} +2026/03/21 22:36:43 [transform_engine] {"stage_name":"transform_engine","events_processed":541,"events_dropped":0,"avg_latency_ms":859.8449415372176,"throughput_eps":0,"last_update":"2026-03-21T22:36:38.965825153Z"} +2026/03/21 22:36:43 [detection_layer] {"stage_name":"detection_layer","events_processed":541,"events_dropped":0,"avg_latency_ms":17.67367568021531,"throughput_eps":0,"last_update":"2026-03-21T22:36:38.965856824Z"} +2026/03/21 22:36:43 [log_collector] {"stage_name":"log_collector","events_processed":25965,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5193,"last_update":"2026-03-21T22:36:38.869451443Z"} +2026/03/21 22:36:43 ───────────────────────────────────────────────── +2026/03/21 22:36:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:36:48 [log_collector] {"stage_name":"log_collector","events_processed":25965,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5193,"last_update":"2026-03-21T22:36:43.869723837Z"} +2026/03/21 22:36:48 [metric_collector] {"stage_name":"metric_collector","events_processed":16254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3250.8,"last_update":"2026-03-21T22:36:43.869872542Z"} +2026/03/21 22:36:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:36:43.878697288Z"} +2026/03/21 22:36:48 [transform_engine] {"stage_name":"transform_engine","events_processed":541,"events_dropped":0,"avg_latency_ms":859.8449415372176,"throughput_eps":0,"last_update":"2026-03-21T22:36:43.9661256Z"} +2026/03/21 22:36:48 [detection_layer] {"stage_name":"detection_layer","events_processed":541,"events_dropped":0,"avg_latency_ms":17.67367568021531,"throughput_eps":0,"last_update":"2026-03-21T22:36:43.966175195Z"} +2026/03/21 22:36:48 ───────────────────────────────────────────────── +2026/03/21 22:36:49 [ANOMALY] time=2026-03-21T22:36:49Z score=0.8560 method=SEAD details=MAD!:w=0.26,s=0.90 RRCF-fast!:w=0.20,s=0.93 RRCF-mid:w=0.16,s=0.76 RRCF-slow!:w=0.15,s=0.97 COPOD!:w=0.23,s=0.75 +2026/03/21 22:36:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:36:53 [detection_layer] {"stage_name":"detection_layer","events_processed":541,"events_dropped":0,"avg_latency_ms":17.67367568021531,"throughput_eps":0,"last_update":"2026-03-21T22:36:48.965273377Z"} +2026/03/21 22:36:53 [log_collector] {"stage_name":"log_collector","events_processed":25965,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5193,"last_update":"2026-03-21T22:36:48.87063989Z"} +2026/03/21 22:36:53 [metric_collector] {"stage_name":"metric_collector","events_processed":16259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3251.8,"last_update":"2026-03-21T22:36:48.870795919Z"} +2026/03/21 22:36:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6506,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:36:48.879973731Z"} +2026/03/21 22:36:53 [transform_engine] {"stage_name":"transform_engine","events_processed":542,"events_dropped":0,"avg_latency_ms":702.342062829774,"throughput_eps":0,"last_update":"2026-03-21T22:36:49.037498673Z"} +2026/03/21 22:36:53 ───────────────────────────────────────────────── +2026/03/21 22:36:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:36:58 [detection_layer] {"stage_name":"detection_layer","events_processed":542,"events_dropped":0,"avg_latency_ms":17.81581454417225,"throughput_eps":0,"last_update":"2026-03-21T22:36:53.965767307Z"} +2026/03/21 22:36:58 [log_collector] {"stage_name":"log_collector","events_processed":25965,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5193,"last_update":"2026-03-21T22:36:53.870033013Z"} +2026/03/21 22:36:58 [metric_collector] {"stage_name":"metric_collector","events_processed":16264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3252.8,"last_update":"2026-03-21T22:36:53.870685041Z"} +2026/03/21 22:36:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:36:53.87945891Z"} +2026/03/21 22:36:58 [transform_engine] {"stage_name":"transform_engine","events_processed":542,"events_dropped":0,"avg_latency_ms":702.342062829774,"throughput_eps":0,"last_update":"2026-03-21T22:36:53.96577886Z"} +2026/03/21 22:36:58 ───────────────────────────────────────────────── +2026/03/21 22:37:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:37:03 [detection_layer] {"stage_name":"detection_layer","events_processed":542,"events_dropped":0,"avg_latency_ms":17.81581454417225,"throughput_eps":0,"last_update":"2026-03-21T22:36:58.965275096Z"} +2026/03/21 22:37:03 [log_collector] {"stage_name":"log_collector","events_processed":25965,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5193,"last_update":"2026-03-21T22:36:58.869937311Z"} +2026/03/21 22:37:03 [metric_collector] {"stage_name":"metric_collector","events_processed":16269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3253.8,"last_update":"2026-03-21T22:36:58.870139989Z"} +2026/03/21 22:37:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:36:58.878143442Z"} +2026/03/21 22:37:03 [transform_engine] {"stage_name":"transform_engine","events_processed":542,"events_dropped":0,"avg_latency_ms":702.342062829774,"throughput_eps":0,"last_update":"2026-03-21T22:36:58.965150628Z"} +2026/03/21 22:37:03 ───────────────────────────────────────────────── +2026/03/21 22:37:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:37:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6512,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:37:03.878172368Z"} +2026/03/21 22:37:08 [transform_engine] {"stage_name":"transform_engine","events_processed":542,"events_dropped":0,"avg_latency_ms":702.342062829774,"throughput_eps":0,"last_update":"2026-03-21T22:37:03.96554299Z"} +2026/03/21 22:37:08 [detection_layer] {"stage_name":"detection_layer","events_processed":542,"events_dropped":0,"avg_latency_ms":17.81581454417225,"throughput_eps":0,"last_update":"2026-03-21T22:37:03.965527731Z"} +2026/03/21 22:37:08 [log_collector] {"stage_name":"log_collector","events_processed":25965,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5193,"last_update":"2026-03-21T22:37:03.869419729Z"} +2026/03/21 22:37:08 [metric_collector] {"stage_name":"metric_collector","events_processed":16274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3254.8,"last_update":"2026-03-21T22:37:03.869876866Z"} +2026/03/21 22:37:08 ───────────────────────────────────────────────── +2026/03/21 22:37:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:37:13 [log_collector] {"stage_name":"log_collector","events_processed":25965,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5193,"last_update":"2026-03-21T22:37:13.869766886Z"} +2026/03/21 22:37:13 [metric_collector] {"stage_name":"metric_collector","events_processed":16279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3255.8,"last_update":"2026-03-21T22:37:08.870415263Z"} +2026/03/21 22:37:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:37:08.879511449Z"} +2026/03/21 22:37:13 [transform_engine] {"stage_name":"transform_engine","events_processed":542,"events_dropped":0,"avg_latency_ms":702.342062829774,"throughput_eps":0,"last_update":"2026-03-21T22:37:08.965880412Z"} +2026/03/21 22:37:13 [detection_layer] {"stage_name":"detection_layer","events_processed":542,"events_dropped":0,"avg_latency_ms":17.81581454417225,"throughput_eps":0,"last_update":"2026-03-21T22:37:08.9658325Z"} +2026/03/21 22:37:13 ───────────────────────────────────────────────── +2026/03/21 22:37:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:37:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:37:13.879058366Z"} +2026/03/21 22:37:18 [transform_engine] {"stage_name":"transform_engine","events_processed":542,"events_dropped":0,"avg_latency_ms":702.342062829774,"throughput_eps":0,"last_update":"2026-03-21T22:37:13.965444432Z"} +2026/03/21 22:37:18 [detection_layer] {"stage_name":"detection_layer","events_processed":542,"events_dropped":0,"avg_latency_ms":17.81581454417225,"throughput_eps":0,"last_update":"2026-03-21T22:37:13.965553811Z"} +2026/03/21 22:37:18 [log_collector] {"stage_name":"log_collector","events_processed":25965,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5193,"last_update":"2026-03-21T22:37:13.869766886Z"} +2026/03/21 22:37:18 [metric_collector] {"stage_name":"metric_collector","events_processed":16284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3256.8,"last_update":"2026-03-21T22:37:13.870306048Z"} +2026/03/21 22:37:18 ───────────────────────────────────────────────── +2026/03/21 22:37:19 [ANOMALY] time=2026-03-21T22:37:19Z score=0.8217 method=SEAD details=MAD!:w=0.25,s=0.86 RRCF-fast:w=0.20,s=0.80 RRCF-mid:w=0.16,s=0.86 RRCF-slow!:w=0.15,s=0.90 COPOD!:w=0.23,s=0.73 +Saved state: 14 clusters, 25966 messages, reason: none +2026/03/21 22:37:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:37:23 [log_collector] {"stage_name":"log_collector","events_processed":25965,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5193,"last_update":"2026-03-21T22:37:18.869815219Z"} +2026/03/21 22:37:23 [metric_collector] {"stage_name":"metric_collector","events_processed":16289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3257.8,"last_update":"2026-03-21T22:37:18.870400541Z"} +2026/03/21 22:37:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:37:18.879479524Z"} +2026/03/21 22:37:23 [transform_engine] {"stage_name":"transform_engine","events_processed":543,"events_dropped":0,"avg_latency_ms":576.5949268638193,"throughput_eps":0,"last_update":"2026-03-21T22:37:19.039525084Z"} +2026/03/21 22:37:23 [detection_layer] {"stage_name":"detection_layer","events_processed":542,"events_dropped":0,"avg_latency_ms":17.81581454417225,"throughput_eps":0,"last_update":"2026-03-21T22:37:18.965780266Z"} +2026/03/21 22:37:23 ───────────────────────────────────────────────── +2026/03/21 22:37:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:37:28 [metric_collector] {"stage_name":"metric_collector","events_processed":16294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3258.8,"last_update":"2026-03-21T22:37:23.869593724Z"} +2026/03/21 22:37:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6520,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:37:23.876115588Z"} +2026/03/21 22:37:28 [transform_engine] {"stage_name":"transform_engine","events_processed":543,"events_dropped":0,"avg_latency_ms":576.5949268638193,"throughput_eps":0,"last_update":"2026-03-21T22:37:23.96526113Z"} +2026/03/21 22:37:28 [detection_layer] {"stage_name":"detection_layer","events_processed":543,"events_dropped":0,"avg_latency_ms":17.9933120353378,"throughput_eps":0,"last_update":"2026-03-21T22:37:23.965266892Z"} +2026/03/21 22:37:28 [log_collector] {"stage_name":"log_collector","events_processed":25968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5193.6,"last_update":"2026-03-21T22:37:23.869406315Z"} +2026/03/21 22:37:28 ───────────────────────────────────────────────── +2026/03/21 22:37:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:37:33 [log_collector] {"stage_name":"log_collector","events_processed":25968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5193.6,"last_update":"2026-03-21T22:37:28.869742274Z"} +2026/03/21 22:37:33 [metric_collector] {"stage_name":"metric_collector","events_processed":16299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3259.8,"last_update":"2026-03-21T22:37:28.869735942Z"} +2026/03/21 22:37:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6522,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:37:28.881792389Z"} +2026/03/21 22:37:33 [transform_engine] {"stage_name":"transform_engine","events_processed":543,"events_dropped":0,"avg_latency_ms":576.5949268638193,"throughput_eps":0,"last_update":"2026-03-21T22:37:28.965997136Z"} +2026/03/21 22:37:33 [detection_layer] {"stage_name":"detection_layer","events_processed":543,"events_dropped":0,"avg_latency_ms":17.9933120353378,"throughput_eps":0,"last_update":"2026-03-21T22:37:28.966026021Z"} +2026/03/21 22:37:33 ───────────────────────────────────────────────── +2026/03/21 22:37:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:37:38 [log_collector] {"stage_name":"log_collector","events_processed":25978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5195.6,"last_update":"2026-03-21T22:37:33.870298985Z"} +2026/03/21 22:37:38 [metric_collector] {"stage_name":"metric_collector","events_processed":16304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3260.8,"last_update":"2026-03-21T22:37:33.871066415Z"} +2026/03/21 22:37:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:37:33.879388718Z"} +2026/03/21 22:37:38 [transform_engine] {"stage_name":"transform_engine","events_processed":543,"events_dropped":0,"avg_latency_ms":576.5949268638193,"throughput_eps":0,"last_update":"2026-03-21T22:37:33.965813047Z"} +2026/03/21 22:37:38 [detection_layer] {"stage_name":"detection_layer","events_processed":543,"events_dropped":0,"avg_latency_ms":17.9933120353378,"throughput_eps":0,"last_update":"2026-03-21T22:37:33.965706663Z"} +2026/03/21 22:37:38 ───────────────────────────────────────────────── +2026/03/21 22:37:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:37:43 [log_collector] {"stage_name":"log_collector","events_processed":25984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5196.8,"last_update":"2026-03-21T22:37:38.869889539Z"} +2026/03/21 22:37:43 [metric_collector] {"stage_name":"metric_collector","events_processed":16309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3261.8,"last_update":"2026-03-21T22:37:38.870229731Z"} +2026/03/21 22:37:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6526,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:37:38.879218922Z"} +2026/03/21 22:37:43 [transform_engine] {"stage_name":"transform_engine","events_processed":543,"events_dropped":0,"avg_latency_ms":576.5949268638193,"throughput_eps":0,"last_update":"2026-03-21T22:37:38.965384855Z"} +2026/03/21 22:37:43 [detection_layer] {"stage_name":"detection_layer","events_processed":543,"events_dropped":0,"avg_latency_ms":17.9933120353378,"throughput_eps":0,"last_update":"2026-03-21T22:37:38.966048878Z"} +2026/03/21 22:37:43 ───────────────────────────────────────────────── +2026/03/21 22:37:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:37:48 [log_collector] {"stage_name":"log_collector","events_processed":25987,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5197.4,"last_update":"2026-03-21T22:37:43.869406943Z"} +2026/03/21 22:37:48 [metric_collector] {"stage_name":"metric_collector","events_processed":16314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3262.8,"last_update":"2026-03-21T22:37:43.87003143Z"} +2026/03/21 22:37:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:37:43.877938768Z"} +2026/03/21 22:37:48 [transform_engine] {"stage_name":"transform_engine","events_processed":543,"events_dropped":0,"avg_latency_ms":576.5949268638193,"throughput_eps":0,"last_update":"2026-03-21T22:37:43.96517401Z"} +2026/03/21 22:37:48 [detection_layer] {"stage_name":"detection_layer","events_processed":543,"events_dropped":0,"avg_latency_ms":17.9933120353378,"throughput_eps":0,"last_update":"2026-03-21T22:37:43.966368599Z"} +2026/03/21 22:37:48 ───────────────────────────────────────────────── +2026/03/21 22:37:49 [ANOMALY] time=2026-03-21T22:37:49Z score=0.8110 method=SEAD details=MAD!:w=0.25,s=0.65 RRCF-fast:w=0.20,s=0.85 RRCF-mid:w=0.16,s=0.84 RRCF-slow:w=0.15,s=0.78 COPOD!:w=0.23,s=0.96 +2026/03/21 22:37:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:37:53 [metric_collector] {"stage_name":"metric_collector","events_processed":16319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3263.8,"last_update":"2026-03-21T22:37:48.870063728Z"} +2026/03/21 22:37:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:37:48.878367486Z"} +2026/03/21 22:37:53 [transform_engine] {"stage_name":"transform_engine","events_processed":544,"events_dropped":0,"avg_latency_ms":530.7552154910554,"throughput_eps":0,"last_update":"2026-03-21T22:37:49.313038533Z"} +2026/03/21 22:37:53 [detection_layer] {"stage_name":"detection_layer","events_processed":543,"events_dropped":0,"avg_latency_ms":17.9933120353378,"throughput_eps":0,"last_update":"2026-03-21T22:37:48.965529107Z"} +2026/03/21 22:37:53 [log_collector] {"stage_name":"log_collector","events_processed":25987,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5197.4,"last_update":"2026-03-21T22:37:48.869624656Z"} +2026/03/21 22:37:53 ───────────────────────────────────────────────── +2026/03/21 22:37:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:37:58 [log_collector] {"stage_name":"log_collector","events_processed":25987,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5197.4,"last_update":"2026-03-21T22:37:53.870449671Z"} +2026/03/21 22:37:58 [metric_collector] {"stage_name":"metric_collector","events_processed":16323,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3264.6,"last_update":"2026-03-21T22:37:53.870587224Z"} +2026/03/21 22:37:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6532,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:37:53.879572869Z"} +2026/03/21 22:37:58 [transform_engine] {"stage_name":"transform_engine","events_processed":544,"events_dropped":0,"avg_latency_ms":530.7552154910554,"throughput_eps":0,"last_update":"2026-03-21T22:37:53.965943504Z"} +2026/03/21 22:37:58 [detection_layer] {"stage_name":"detection_layer","events_processed":544,"events_dropped":0,"avg_latency_ms":17.883854028270243,"throughput_eps":0,"last_update":"2026-03-21T22:37:53.965903748Z"} +2026/03/21 22:37:58 ───────────────────────────────────────────────── +2026/03/21 22:38:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:38:03 [log_collector] {"stage_name":"log_collector","events_processed":25987,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5197.4,"last_update":"2026-03-21T22:37:58.869610174Z"} +2026/03/21 22:38:03 [metric_collector] {"stage_name":"metric_collector","events_processed":16329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3265.8,"last_update":"2026-03-21T22:37:58.870323821Z"} +2026/03/21 22:38:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:37:58.878364154Z"} +2026/03/21 22:38:03 [transform_engine] {"stage_name":"transform_engine","events_processed":544,"events_dropped":0,"avg_latency_ms":530.7552154910554,"throughput_eps":0,"last_update":"2026-03-21T22:37:58.966259191Z"} +2026/03/21 22:38:03 [detection_layer] {"stage_name":"detection_layer","events_processed":544,"events_dropped":0,"avg_latency_ms":17.883854028270243,"throughput_eps":0,"last_update":"2026-03-21T22:37:58.966147426Z"} +2026/03/21 22:38:03 ───────────────────────────────────────────────── +2026/03/21 22:38:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:38:08 [metric_collector] {"stage_name":"metric_collector","events_processed":16334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3266.8,"last_update":"2026-03-21T22:38:03.869789344Z"} +2026/03/21 22:38:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6536,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:38:03.879894414Z"} +2026/03/21 22:38:08 [transform_engine] {"stage_name":"transform_engine","events_processed":544,"events_dropped":0,"avg_latency_ms":530.7552154910554,"throughput_eps":0,"last_update":"2026-03-21T22:38:03.965153009Z"} +2026/03/21 22:38:08 [detection_layer] {"stage_name":"detection_layer","events_processed":544,"events_dropped":0,"avg_latency_ms":17.883854028270243,"throughput_eps":0,"last_update":"2026-03-21T22:38:03.966312971Z"} +2026/03/21 22:38:08 [log_collector] {"stage_name":"log_collector","events_processed":25987,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5197.4,"last_update":"2026-03-21T22:38:03.869596314Z"} +2026/03/21 22:38:08 ───────────────────────────────────────────────── +2026/03/21 22:38:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:38:13 [log_collector] {"stage_name":"log_collector","events_processed":25987,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5197.4,"last_update":"2026-03-21T22:38:08.869589406Z"} +2026/03/21 22:38:13 [metric_collector] {"stage_name":"metric_collector","events_processed":16339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3267.8,"last_update":"2026-03-21T22:38:08.870070628Z"} +2026/03/21 22:38:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:38:08.878499856Z"} +2026/03/21 22:38:13 [transform_engine] {"stage_name":"transform_engine","events_processed":544,"events_dropped":0,"avg_latency_ms":530.7552154910554,"throughput_eps":0,"last_update":"2026-03-21T22:38:08.965753383Z"} +2026/03/21 22:38:13 [detection_layer] {"stage_name":"detection_layer","events_processed":544,"events_dropped":0,"avg_latency_ms":17.883854028270243,"throughput_eps":0,"last_update":"2026-03-21T22:38:08.965894103Z"} +2026/03/21 22:38:13 ───────────────────────────────────────────────── +2026/03/21 22:38:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:38:18 [log_collector] {"stage_name":"log_collector","events_processed":25987,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5197.4,"last_update":"2026-03-21T22:38:13.870201661Z"} +2026/03/21 22:38:18 [metric_collector] {"stage_name":"metric_collector","events_processed":16344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3268.8,"last_update":"2026-03-21T22:38:13.870668685Z"} +2026/03/21 22:38:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6540,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:38:13.879093826Z"} +2026/03/21 22:38:18 [transform_engine] {"stage_name":"transform_engine","events_processed":544,"events_dropped":0,"avg_latency_ms":530.7552154910554,"throughput_eps":0,"last_update":"2026-03-21T22:38:13.965232438Z"} +2026/03/21 22:38:18 [detection_layer] {"stage_name":"detection_layer","events_processed":544,"events_dropped":0,"avg_latency_ms":17.883854028270243,"throughput_eps":0,"last_update":"2026-03-21T22:38:13.9652861Z"} +2026/03/21 22:38:18 ───────────────────────────────────────────────── +2026/03/21 22:38:19 [ANOMALY] time=2026-03-21T22:38:19Z score=0.8581 method=SEAD details=MAD!:w=0.26,s=0.93 RRCF-fast!:w=0.20,s=0.94 RRCF-mid!:w=0.16,s=0.96 RRCF-slow!:w=0.15,s=0.99 COPOD!:w=0.23,s=0.56 +2026/03/21 22:38:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:38:23 [log_collector] {"stage_name":"log_collector","events_processed":25987,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5197.4,"last_update":"2026-03-21T22:38:18.870455218Z"} +2026/03/21 22:38:23 [metric_collector] {"stage_name":"metric_collector","events_processed":16349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3269.8,"last_update":"2026-03-21T22:38:18.871060427Z"} +2026/03/21 22:38:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6542,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:38:18.879213115Z"} +2026/03/21 22:38:23 [transform_engine] {"stage_name":"transform_engine","events_processed":544,"events_dropped":0,"avg_latency_ms":530.7552154910554,"throughput_eps":0,"last_update":"2026-03-21T22:38:18.965434294Z"} +2026/03/21 22:38:23 [detection_layer] {"stage_name":"detection_layer","events_processed":544,"events_dropped":0,"avg_latency_ms":17.883854028270243,"throughput_eps":0,"last_update":"2026-03-21T22:38:18.965459592Z"} +2026/03/21 22:38:23 ───────────────────────────────────────────────── +2026/03/21 22:38:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:38:28 [log_collector] {"stage_name":"log_collector","events_processed":25987,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5197.4,"last_update":"2026-03-21T22:38:23.870326336Z"} +2026/03/21 22:38:28 [metric_collector] {"stage_name":"metric_collector","events_processed":16354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3270.8,"last_update":"2026-03-21T22:38:23.870751021Z"} +2026/03/21 22:38:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:38:23.878545102Z"} +2026/03/21 22:38:28 [transform_engine] {"stage_name":"transform_engine","events_processed":545,"events_dropped":0,"avg_latency_ms":439.23508179284437,"throughput_eps":0,"last_update":"2026-03-21T22:38:23.965752381Z"} +2026/03/21 22:38:28 [detection_layer] {"stage_name":"detection_layer","events_processed":545,"events_dropped":0,"avg_latency_ms":17.863358222616192,"throughput_eps":0,"last_update":"2026-03-21T22:38:23.965732623Z"} +2026/03/21 22:38:28 ───────────────────────────────────────────────── +Saved state: 14 clusters, 25988 messages, reason: none +2026/03/21 22:38:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:38:33 [log_collector] {"stage_name":"log_collector","events_processed":25987,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5197.4,"last_update":"2026-03-21T22:38:28.870067086Z"} +2026/03/21 22:38:33 [metric_collector] {"stage_name":"metric_collector","events_processed":16359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3271.8,"last_update":"2026-03-21T22:38:28.870493864Z"} +2026/03/21 22:38:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:38:28.878214003Z"} +2026/03/21 22:38:33 [transform_engine] {"stage_name":"transform_engine","events_processed":545,"events_dropped":0,"avg_latency_ms":439.23508179284437,"throughput_eps":0,"last_update":"2026-03-21T22:38:28.965455016Z"} +2026/03/21 22:38:33 [detection_layer] {"stage_name":"detection_layer","events_processed":545,"events_dropped":0,"avg_latency_ms":17.863358222616192,"throughput_eps":0,"last_update":"2026-03-21T22:38:28.965430389Z"} +2026/03/21 22:38:33 ───────────────────────────────────────────────── +2026/03/21 22:38:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:38:38 [log_collector] {"stage_name":"log_collector","events_processed":25993,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5198.6,"last_update":"2026-03-21T22:38:33.870237526Z"} +2026/03/21 22:38:38 [metric_collector] {"stage_name":"metric_collector","events_processed":16364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3272.8,"last_update":"2026-03-21T22:38:33.870610731Z"} +2026/03/21 22:38:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:38:33.879022064Z"} +2026/03/21 22:38:38 [transform_engine] {"stage_name":"transform_engine","events_processed":545,"events_dropped":0,"avg_latency_ms":439.23508179284437,"throughput_eps":0,"last_update":"2026-03-21T22:38:33.965440201Z"} +2026/03/21 22:38:38 [detection_layer] {"stage_name":"detection_layer","events_processed":545,"events_dropped":0,"avg_latency_ms":17.863358222616192,"throughput_eps":0,"last_update":"2026-03-21T22:38:33.965407989Z"} +2026/03/21 22:38:38 ───────────────────────────────────────────────── +2026/03/21 22:38:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:38:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:38:38.8781684Z"} +2026/03/21 22:38:43 [transform_engine] {"stage_name":"transform_engine","events_processed":545,"events_dropped":0,"avg_latency_ms":439.23508179284437,"throughput_eps":0,"last_update":"2026-03-21T22:38:38.965377492Z"} +2026/03/21 22:38:43 [detection_layer] {"stage_name":"detection_layer","events_processed":545,"events_dropped":0,"avg_latency_ms":17.863358222616192,"throughput_eps":0,"last_update":"2026-03-21T22:38:38.965482573Z"} +2026/03/21 22:38:43 [log_collector] {"stage_name":"log_collector","events_processed":25995,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5199,"last_update":"2026-03-21T22:38:38.869725736Z"} +2026/03/21 22:38:43 [metric_collector] {"stage_name":"metric_collector","events_processed":16369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3273.8,"last_update":"2026-03-21T22:38:38.869809066Z"} +2026/03/21 22:38:43 ───────────────────────────────────────────────── +2026/03/21 22:38:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:38:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:38:43.878178319Z"} +2026/03/21 22:38:48 [transform_engine] {"stage_name":"transform_engine","events_processed":545,"events_dropped":0,"avg_latency_ms":439.23508179284437,"throughput_eps":0,"last_update":"2026-03-21T22:38:43.965599627Z"} +2026/03/21 22:38:48 [detection_layer] {"stage_name":"detection_layer","events_processed":545,"events_dropped":0,"avg_latency_ms":17.863358222616192,"throughput_eps":0,"last_update":"2026-03-21T22:38:43.965638943Z"} +2026/03/21 22:38:48 [log_collector] {"stage_name":"log_collector","events_processed":25995,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5199,"last_update":"2026-03-21T22:38:43.869416404Z"} +2026/03/21 22:38:48 [metric_collector] {"stage_name":"metric_collector","events_processed":16374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3274.8,"last_update":"2026-03-21T22:38:43.869912724Z"} +2026/03/21 22:38:48 ───────────────────────────────────────────────── +2026/03/21 22:38:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:38:53 [transform_engine] {"stage_name":"transform_engine","events_processed":546,"events_dropped":0,"avg_latency_ms":375.06091283427554,"throughput_eps":0,"last_update":"2026-03-21T22:38:49.084445273Z"} +2026/03/21 22:38:53 [detection_layer] {"stage_name":"detection_layer","events_processed":545,"events_dropped":0,"avg_latency_ms":17.863358222616192,"throughput_eps":0,"last_update":"2026-03-21T22:38:48.966060326Z"} +2026/03/21 22:38:53 [log_collector] {"stage_name":"log_collector","events_processed":25995,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5199,"last_update":"2026-03-21T22:38:53.869773397Z"} +2026/03/21 22:38:53 [metric_collector] {"stage_name":"metric_collector","events_processed":16379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3275.8,"last_update":"2026-03-21T22:38:48.87100291Z"} +2026/03/21 22:38:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:38:48.87973598Z"} +2026/03/21 22:38:53 ───────────────────────────────────────────────── +2026/03/21 22:38:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:38:58 [metric_collector] {"stage_name":"metric_collector","events_processed":16384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3276.8,"last_update":"2026-03-21T22:38:53.87022936Z"} +2026/03/21 22:38:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:38:53.879932609Z"} +2026/03/21 22:38:58 [transform_engine] {"stage_name":"transform_engine","events_processed":546,"events_dropped":0,"avg_latency_ms":375.06091283427554,"throughput_eps":0,"last_update":"2026-03-21T22:38:53.966103552Z"} +2026/03/21 22:38:58 [detection_layer] {"stage_name":"detection_layer","events_processed":546,"events_dropped":0,"avg_latency_ms":18.195735978092955,"throughput_eps":0,"last_update":"2026-03-21T22:38:53.966096087Z"} +2026/03/21 22:38:58 [log_collector] {"stage_name":"log_collector","events_processed":25995,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5199,"last_update":"2026-03-21T22:38:58.869423987Z"} +2026/03/21 22:38:58 ───────────────────────────────────────────────── +2026/03/21 22:39:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:39:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:38:58.878571372Z"} +2026/03/21 22:39:03 [transform_engine] {"stage_name":"transform_engine","events_processed":546,"events_dropped":0,"avg_latency_ms":375.06091283427554,"throughput_eps":0,"last_update":"2026-03-21T22:38:58.966057805Z"} +2026/03/21 22:39:03 [detection_layer] {"stage_name":"detection_layer","events_processed":546,"events_dropped":0,"avg_latency_ms":18.195735978092955,"throughput_eps":0,"last_update":"2026-03-21T22:38:58.966041543Z"} +2026/03/21 22:39:03 [log_collector] {"stage_name":"log_collector","events_processed":25995,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5199,"last_update":"2026-03-21T22:38:58.869423987Z"} +2026/03/21 22:39:03 [metric_collector] {"stage_name":"metric_collector","events_processed":16389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3277.8,"last_update":"2026-03-21T22:38:58.869978981Z"} +2026/03/21 22:39:03 ───────────────────────────────────────────────── +2026/03/21 22:39:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:39:08 [log_collector] {"stage_name":"log_collector","events_processed":25995,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5199,"last_update":"2026-03-21T22:39:03.869789216Z"} +2026/03/21 22:39:08 [metric_collector] {"stage_name":"metric_collector","events_processed":16394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3278.8,"last_update":"2026-03-21T22:39:03.869779978Z"} +2026/03/21 22:39:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6560,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:39:03.87843534Z"} +2026/03/21 22:39:08 [transform_engine] {"stage_name":"transform_engine","events_processed":546,"events_dropped":0,"avg_latency_ms":375.06091283427554,"throughput_eps":0,"last_update":"2026-03-21T22:39:03.965686011Z"} +2026/03/21 22:39:08 [detection_layer] {"stage_name":"detection_layer","events_processed":546,"events_dropped":0,"avg_latency_ms":18.195735978092955,"throughput_eps":0,"last_update":"2026-03-21T22:39:03.965632859Z"} +2026/03/21 22:39:08 ───────────────────────────────────────────────── +2026/03/21 22:39:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:39:13 [metric_collector] {"stage_name":"metric_collector","events_processed":16399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3279.8,"last_update":"2026-03-21T22:39:08.870831058Z"} +2026/03/21 22:39:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:39:08.879342804Z"} +2026/03/21 22:39:13 [transform_engine] {"stage_name":"transform_engine","events_processed":546,"events_dropped":0,"avg_latency_ms":375.06091283427554,"throughput_eps":0,"last_update":"2026-03-21T22:39:08.965778014Z"} +2026/03/21 22:39:13 [detection_layer] {"stage_name":"detection_layer","events_processed":546,"events_dropped":0,"avg_latency_ms":18.195735978092955,"throughput_eps":0,"last_update":"2026-03-21T22:39:08.965803152Z"} +2026/03/21 22:39:13 [log_collector] {"stage_name":"log_collector","events_processed":25995,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5199,"last_update":"2026-03-21T22:39:13.869410671Z"} +2026/03/21 22:39:13 ───────────────────────────────────────────────── +2026/03/21 22:39:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:39:18 [metric_collector] {"stage_name":"metric_collector","events_processed":16404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3280.8,"last_update":"2026-03-21T22:39:13.8698333Z"} +2026/03/21 22:39:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:39:13.879269047Z"} +2026/03/21 22:39:18 [transform_engine] {"stage_name":"transform_engine","events_processed":546,"events_dropped":0,"avg_latency_ms":375.06091283427554,"throughput_eps":0,"last_update":"2026-03-21T22:39:13.965588715Z"} +2026/03/21 22:39:18 [detection_layer] {"stage_name":"detection_layer","events_processed":546,"events_dropped":0,"avg_latency_ms":18.195735978092955,"throughput_eps":0,"last_update":"2026-03-21T22:39:13.965523619Z"} +2026/03/21 22:39:18 [log_collector] {"stage_name":"log_collector","events_processed":25995,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5199,"last_update":"2026-03-21T22:39:18.869418027Z"} +2026/03/21 22:39:18 ───────────────────────────────────────────────── +2026/03/21 22:39:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:39:23 [log_collector] {"stage_name":"log_collector","events_processed":25995,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5199,"last_update":"2026-03-21T22:39:23.869444888Z"} +2026/03/21 22:39:23 [metric_collector] {"stage_name":"metric_collector","events_processed":16409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3281.8,"last_update":"2026-03-21T22:39:18.870045529Z"} +2026/03/21 22:39:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6566,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:39:18.878380548Z"} +2026/03/21 22:39:23 [transform_engine] {"stage_name":"transform_engine","events_processed":547,"events_dropped":0,"avg_latency_ms":314.93427526742045,"throughput_eps":0,"last_update":"2026-03-21T22:39:19.040197169Z"} +2026/03/21 22:39:23 [detection_layer] {"stage_name":"detection_layer","events_processed":546,"events_dropped":0,"avg_latency_ms":18.195735978092955,"throughput_eps":0,"last_update":"2026-03-21T22:39:18.965750416Z"} +2026/03/21 22:39:23 ───────────────────────────────────────────────── +2026/03/21 22:39:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:39:28 [log_collector] {"stage_name":"log_collector","events_processed":25995,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5199,"last_update":"2026-03-21T22:39:23.869444888Z"} +2026/03/21 22:39:28 [metric_collector] {"stage_name":"metric_collector","events_processed":16414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3282.8,"last_update":"2026-03-21T22:39:23.869763819Z"} +2026/03/21 22:39:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:39:23.877966223Z"} +2026/03/21 22:39:28 [transform_engine] {"stage_name":"transform_engine","events_processed":547,"events_dropped":0,"avg_latency_ms":314.93427526742045,"throughput_eps":0,"last_update":"2026-03-21T22:39:23.965087146Z"} +2026/03/21 22:39:28 [detection_layer] {"stage_name":"detection_layer","events_processed":547,"events_dropped":0,"avg_latency_ms":18.478115382474364,"throughput_eps":0,"last_update":"2026-03-21T22:39:23.966229474Z"} +2026/03/21 22:39:28 ───────────────────────────────────────────────── +2026/03/21 22:39:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:39:33 [transform_engine] {"stage_name":"transform_engine","events_processed":547,"events_dropped":0,"avg_latency_ms":314.93427526742045,"throughput_eps":0,"last_update":"2026-03-21T22:39:28.965398229Z"} +2026/03/21 22:39:33 [detection_layer] {"stage_name":"detection_layer","events_processed":547,"events_dropped":0,"avg_latency_ms":18.478115382474364,"throughput_eps":0,"last_update":"2026-03-21T22:39:28.965434398Z"} +2026/03/21 22:39:33 [log_collector] {"stage_name":"log_collector","events_processed":25995,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5199,"last_update":"2026-03-21T22:39:28.869433775Z"} +2026/03/21 22:39:33 [metric_collector] {"stage_name":"metric_collector","events_processed":16419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3283.8,"last_update":"2026-03-21T22:39:28.869865491Z"} +2026/03/21 22:39:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6570,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:39:28.878192474Z"} +2026/03/21 22:39:33 ───────────────────────────────────────────────── +2026/03/21 22:39:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:39:38 [detection_layer] {"stage_name":"detection_layer","events_processed":547,"events_dropped":0,"avg_latency_ms":18.478115382474364,"throughput_eps":0,"last_update":"2026-03-21T22:39:33.965429663Z"} +2026/03/21 22:39:38 [log_collector] {"stage_name":"log_collector","events_processed":25995,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5199,"last_update":"2026-03-21T22:39:38.869457608Z"} +2026/03/21 22:39:38 [metric_collector] {"stage_name":"metric_collector","events_processed":16424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3284.8,"last_update":"2026-03-21T22:39:33.870590536Z"} +2026/03/21 22:39:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6572,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:39:33.88022918Z"} +2026/03/21 22:39:38 [transform_engine] {"stage_name":"transform_engine","events_processed":547,"events_dropped":0,"avg_latency_ms":314.93427526742045,"throughput_eps":0,"last_update":"2026-03-21T22:39:33.965609387Z"} +2026/03/21 22:39:38 ───────────────────────────────────────────────── +2026/03/21 22:39:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:39:43 [detection_layer] {"stage_name":"detection_layer","events_processed":547,"events_dropped":0,"avg_latency_ms":18.478115382474364,"throughput_eps":0,"last_update":"2026-03-21T22:39:38.966170187Z"} +2026/03/21 22:39:43 [log_collector] {"stage_name":"log_collector","events_processed":25995,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5199,"last_update":"2026-03-21T22:39:38.869457608Z"} +2026/03/21 22:39:43 [metric_collector] {"stage_name":"metric_collector","events_processed":16429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3285.8,"last_update":"2026-03-21T22:39:38.869822458Z"} +2026/03/21 22:39:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:39:38.877858743Z"} +2026/03/21 22:39:43 [transform_engine] {"stage_name":"transform_engine","events_processed":547,"events_dropped":0,"avg_latency_ms":314.93427526742045,"throughput_eps":0,"last_update":"2026-03-21T22:39:38.966061778Z"} +2026/03/21 22:39:43 ───────────────────────────────────────────────── +2026/03/21 22:39:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:39:48 [detection_layer] {"stage_name":"detection_layer","events_processed":547,"events_dropped":0,"avg_latency_ms":18.478115382474364,"throughput_eps":0,"last_update":"2026-03-21T22:39:43.966318961Z"} +2026/03/21 22:39:48 [log_collector] {"stage_name":"log_collector","events_processed":25995,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5199,"last_update":"2026-03-21T22:39:43.870027019Z"} +2026/03/21 22:39:48 [metric_collector] {"stage_name":"metric_collector","events_processed":16434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3286.8,"last_update":"2026-03-21T22:39:43.870256068Z"} +2026/03/21 22:39:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6576,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:39:43.879037031Z"} +2026/03/21 22:39:48 [transform_engine] {"stage_name":"transform_engine","events_processed":547,"events_dropped":0,"avg_latency_ms":314.93427526742045,"throughput_eps":0,"last_update":"2026-03-21T22:39:43.965190439Z"} +2026/03/21 22:39:48 ───────────────────────────────────────────────── +2026/03/21 22:39:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:39:53 [transform_engine] {"stage_name":"transform_engine","events_processed":548,"events_dropped":0,"avg_latency_ms":266.7936500139364,"throughput_eps":0,"last_update":"2026-03-21T22:39:49.039634974Z"} +2026/03/21 22:39:53 [detection_layer] {"stage_name":"detection_layer","events_processed":547,"events_dropped":0,"avg_latency_ms":18.478115382474364,"throughput_eps":0,"last_update":"2026-03-21T22:39:48.965370231Z"} +2026/03/21 22:39:53 [log_collector] {"stage_name":"log_collector","events_processed":25995,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5199,"last_update":"2026-03-21T22:39:48.869972674Z"} +2026/03/21 22:39:53 [metric_collector] {"stage_name":"metric_collector","events_processed":16439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3287.8,"last_update":"2026-03-21T22:39:48.870342863Z"} +2026/03/21 22:39:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:39:48.878120472Z"} +2026/03/21 22:39:53 ───────────────────────────────────────────────── +2026/03/21 22:39:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:39:58 [transform_engine] {"stage_name":"transform_engine","events_processed":548,"events_dropped":0,"avg_latency_ms":266.7936500139364,"throughput_eps":0,"last_update":"2026-03-21T22:39:53.965209981Z"} +2026/03/21 22:39:58 [detection_layer] {"stage_name":"detection_layer","events_processed":548,"events_dropped":0,"avg_latency_ms":18.650983505979493,"throughput_eps":0,"last_update":"2026-03-21T22:39:53.96528246Z"} +2026/03/21 22:39:58 [log_collector] {"stage_name":"log_collector","events_processed":25995,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5199,"last_update":"2026-03-21T22:39:53.869916473Z"} +2026/03/21 22:39:58 [metric_collector] {"stage_name":"metric_collector","events_processed":16444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3288.8,"last_update":"2026-03-21T22:39:53.870408305Z"} +2026/03/21 22:39:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6580,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:39:53.87901846Z"} +2026/03/21 22:39:58 ───────────────────────────────────────────────── +2026/03/21 22:40:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:40:03 [transform_engine] {"stage_name":"transform_engine","events_processed":548,"events_dropped":0,"avg_latency_ms":266.7936500139364,"throughput_eps":0,"last_update":"2026-03-21T22:39:58.965840854Z"} +2026/03/21 22:40:03 [detection_layer] {"stage_name":"detection_layer","events_processed":548,"events_dropped":0,"avg_latency_ms":18.650983505979493,"throughput_eps":0,"last_update":"2026-03-21T22:39:58.965833029Z"} +2026/03/21 22:40:03 [log_collector] {"stage_name":"log_collector","events_processed":25995,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5199,"last_update":"2026-03-21T22:39:58.869418553Z"} +2026/03/21 22:40:03 [metric_collector] {"stage_name":"metric_collector","events_processed":16449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3289.8,"last_update":"2026-03-21T22:39:58.869814732Z"} +2026/03/21 22:40:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:39:58.878631102Z"} +2026/03/21 22:40:03 ───────────────────────────────────────────────── +2026/03/21 22:40:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:40:08 [log_collector] {"stage_name":"log_collector","events_processed":25995,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5199,"last_update":"2026-03-21T22:40:03.869699083Z"} +2026/03/21 22:40:08 [metric_collector] {"stage_name":"metric_collector","events_processed":16454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3290.8,"last_update":"2026-03-21T22:40:03.870114037Z"} +2026/03/21 22:40:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:40:03.892852368Z"} +2026/03/21 22:40:08 [transform_engine] {"stage_name":"transform_engine","events_processed":548,"events_dropped":0,"avg_latency_ms":266.7936500139364,"throughput_eps":0,"last_update":"2026-03-21T22:40:03.966198311Z"} +2026/03/21 22:40:08 [detection_layer] {"stage_name":"detection_layer","events_processed":548,"events_dropped":0,"avg_latency_ms":18.650983505979493,"throughput_eps":0,"last_update":"2026-03-21T22:40:03.966183263Z"} +2026/03/21 22:40:08 ───────────────────────────────────────────────── +Saved state: 14 clusters, 25996 messages, reason: none +2026/03/21 22:40:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:40:13 [metric_collector] {"stage_name":"metric_collector","events_processed":16459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3291.8,"last_update":"2026-03-21T22:40:08.870856159Z"} +2026/03/21 22:40:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6586,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:40:08.877203358Z"} +2026/03/21 22:40:13 [transform_engine] {"stage_name":"transform_engine","events_processed":548,"events_dropped":0,"avg_latency_ms":266.7936500139364,"throughput_eps":0,"last_update":"2026-03-21T22:40:08.965421002Z"} +2026/03/21 22:40:13 [detection_layer] {"stage_name":"detection_layer","events_processed":548,"events_dropped":0,"avg_latency_ms":18.650983505979493,"throughput_eps":0,"last_update":"2026-03-21T22:40:08.965415421Z"} +2026/03/21 22:40:13 [log_collector] {"stage_name":"log_collector","events_processed":25995,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5199,"last_update":"2026-03-21T22:40:08.870480239Z"} +2026/03/21 22:40:13 ───────────────────────────────────────────────── +2026/03/21 22:40:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:40:18 [transform_engine] {"stage_name":"transform_engine","events_processed":548,"events_dropped":0,"avg_latency_ms":266.7936500139364,"throughput_eps":0,"last_update":"2026-03-21T22:40:13.965117667Z"} +2026/03/21 22:40:18 [detection_layer] {"stage_name":"detection_layer","events_processed":548,"events_dropped":0,"avg_latency_ms":18.650983505979493,"throughput_eps":0,"last_update":"2026-03-21T22:40:13.96620459Z"} +2026/03/21 22:40:18 [log_collector] {"stage_name":"log_collector","events_processed":26000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5200,"last_update":"2026-03-21T22:40:13.869913801Z"} +2026/03/21 22:40:18 [metric_collector] {"stage_name":"metric_collector","events_processed":16464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3292.8,"last_update":"2026-03-21T22:40:13.870169631Z"} +2026/03/21 22:40:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6588,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:40:13.881034335Z"} +2026/03/21 22:40:18 ───────────────────────────────────────────────── +2026/03/21 22:40:20 [ANOMALY] time=2026-03-21T22:40:20Z score=0.8186 method=SEAD details=MAD!:w=0.26,s=0.93 RRCF-fast!:w=0.20,s=0.88 RRCF-mid:w=0.16,s=0.83 RRCF-slow!:w=0.15,s=0.91 COPOD!:w=0.23,s=0.58 +2026/03/21 22:40:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:40:23 [detection_layer] {"stage_name":"detection_layer","events_processed":548,"events_dropped":0,"avg_latency_ms":18.650983505979493,"throughput_eps":0,"last_update":"2026-03-21T22:40:18.965599729Z"} +2026/03/21 22:40:23 [log_collector] {"stage_name":"log_collector","events_processed":26000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5200,"last_update":"2026-03-21T22:40:18.870151924Z"} +2026/03/21 22:40:23 [metric_collector] {"stage_name":"metric_collector","events_processed":16469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3293.8,"last_update":"2026-03-21T22:40:18.870595794Z"} +2026/03/21 22:40:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:40:18.876425623Z"} +2026/03/21 22:40:23 [transform_engine] {"stage_name":"transform_engine","events_processed":549,"events_dropped":0,"avg_latency_ms":587.7067678111491,"throughput_eps":0,"last_update":"2026-03-21T22:40:20.836972193Z"} +2026/03/21 22:40:23 ───────────────────────────────────────────────── +2026/03/21 22:40:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:40:28 [log_collector] {"stage_name":"log_collector","events_processed":26000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5200,"last_update":"2026-03-21T22:40:23.869399698Z"} +2026/03/21 22:40:28 [metric_collector] {"stage_name":"metric_collector","events_processed":16474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3294.8,"last_update":"2026-03-21T22:40:23.86990697Z"} +2026/03/21 22:40:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6592,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:40:23.881667771Z"} +2026/03/21 22:40:28 [transform_engine] {"stage_name":"transform_engine","events_processed":549,"events_dropped":0,"avg_latency_ms":587.7067678111491,"throughput_eps":0,"last_update":"2026-03-21T22:40:23.966047672Z"} +2026/03/21 22:40:28 [detection_layer] {"stage_name":"detection_layer","events_processed":549,"events_dropped":0,"avg_latency_ms":17.484051404783596,"throughput_eps":0,"last_update":"2026-03-21T22:40:23.966032703Z"} +2026/03/21 22:40:28 ───────────────────────────────────────────────── +2026/03/21 22:40:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:40:33 [detection_layer] {"stage_name":"detection_layer","events_processed":549,"events_dropped":0,"avg_latency_ms":17.484051404783596,"throughput_eps":0,"last_update":"2026-03-21T22:40:28.966043167Z"} +2026/03/21 22:40:33 [log_collector] {"stage_name":"log_collector","events_processed":26000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5200,"last_update":"2026-03-21T22:40:28.87007174Z"} +2026/03/21 22:40:33 [metric_collector] {"stage_name":"metric_collector","events_processed":16479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3295.8,"last_update":"2026-03-21T22:40:28.870217999Z"} +2026/03/21 22:40:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:40:28.876767277Z"} +2026/03/21 22:40:33 [transform_engine] {"stage_name":"transform_engine","events_processed":549,"events_dropped":0,"avg_latency_ms":587.7067678111491,"throughput_eps":0,"last_update":"2026-03-21T22:40:28.965966139Z"} +2026/03/21 22:40:33 ───────────────────────────────────────────────── +2026/03/21 22:40:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:40:38 [metric_collector] {"stage_name":"metric_collector","events_processed":16484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3296.8,"last_update":"2026-03-21T22:40:33.870522362Z"} +2026/03/21 22:40:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:40:33.884705173Z"} +2026/03/21 22:40:38 [transform_engine] {"stage_name":"transform_engine","events_processed":549,"events_dropped":0,"avg_latency_ms":587.7067678111491,"throughput_eps":0,"last_update":"2026-03-21T22:40:33.965869915Z"} +2026/03/21 22:40:38 [detection_layer] {"stage_name":"detection_layer","events_processed":549,"events_dropped":0,"avg_latency_ms":17.484051404783596,"throughput_eps":0,"last_update":"2026-03-21T22:40:33.965889663Z"} +2026/03/21 22:40:38 [log_collector] {"stage_name":"log_collector","events_processed":26000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5200,"last_update":"2026-03-21T22:40:33.870330205Z"} +2026/03/21 22:40:38 ───────────────────────────────────────────────── +2026/03/21 22:40:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:40:43 [metric_collector] {"stage_name":"metric_collector","events_processed":16489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3297.8,"last_update":"2026-03-21T22:40:38.870514066Z"} +2026/03/21 22:40:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:40:38.878707403Z"} +2026/03/21 22:40:43 [transform_engine] {"stage_name":"transform_engine","events_processed":549,"events_dropped":0,"avg_latency_ms":587.7067678111491,"throughput_eps":0,"last_update":"2026-03-21T22:40:38.965907106Z"} +2026/03/21 22:40:43 [detection_layer] {"stage_name":"detection_layer","events_processed":549,"events_dropped":0,"avg_latency_ms":17.484051404783596,"throughput_eps":0,"last_update":"2026-03-21T22:40:38.9659717Z"} +2026/03/21 22:40:43 [log_collector] {"stage_name":"log_collector","events_processed":26000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5200,"last_update":"2026-03-21T22:40:38.870393777Z"} +2026/03/21 22:40:43 ───────────────────────────────────────────────── +2026/03/21 22:40:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:40:48 [metric_collector] {"stage_name":"metric_collector","events_processed":16494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3298.8,"last_update":"2026-03-21T22:40:43.869998338Z"} +2026/03/21 22:40:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:40:43.878257891Z"} +2026/03/21 22:40:48 [transform_engine] {"stage_name":"transform_engine","events_processed":549,"events_dropped":0,"avg_latency_ms":587.7067678111491,"throughput_eps":0,"last_update":"2026-03-21T22:40:43.965481169Z"} +2026/03/21 22:40:48 [detection_layer] {"stage_name":"detection_layer","events_processed":549,"events_dropped":0,"avg_latency_ms":17.484051404783596,"throughput_eps":0,"last_update":"2026-03-21T22:40:43.965507208Z"} +2026/03/21 22:40:48 [log_collector] {"stage_name":"log_collector","events_processed":26000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5200,"last_update":"2026-03-21T22:40:43.8695613Z"} +2026/03/21 22:40:48 ───────────────────────────────────────────────── +2026/03/21 22:40:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:40:53 [log_collector] {"stage_name":"log_collector","events_processed":26000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5200,"last_update":"2026-03-21T22:40:53.869416736Z"} +2026/03/21 22:40:53 [metric_collector] {"stage_name":"metric_collector","events_processed":16499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3299.8,"last_update":"2026-03-21T22:40:48.869722606Z"} +2026/03/21 22:40:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6602,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:40:48.87875985Z"} +2026/03/21 22:40:53 [transform_engine] {"stage_name":"transform_engine","events_processed":550,"events_dropped":0,"avg_latency_ms":490.60426784891933,"throughput_eps":0,"last_update":"2026-03-21T22:40:49.068224026Z"} +2026/03/21 22:40:53 [detection_layer] {"stage_name":"detection_layer","events_processed":549,"events_dropped":0,"avg_latency_ms":17.484051404783596,"throughput_eps":0,"last_update":"2026-03-21T22:40:48.966017593Z"} +2026/03/21 22:40:53 ───────────────────────────────────────────────── +2026/03/21 22:40:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:40:58 [log_collector] {"stage_name":"log_collector","events_processed":26000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5200,"last_update":"2026-03-21T22:40:58.870339727Z"} +2026/03/21 22:40:58 [metric_collector] {"stage_name":"metric_collector","events_processed":16504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3300.8,"last_update":"2026-03-21T22:40:53.869856078Z"} +2026/03/21 22:40:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:40:53.879019302Z"} +2026/03/21 22:40:58 [transform_engine] {"stage_name":"transform_engine","events_processed":550,"events_dropped":0,"avg_latency_ms":490.60426784891933,"throughput_eps":0,"last_update":"2026-03-21T22:40:53.965123386Z"} +2026/03/21 22:40:58 [detection_layer] {"stage_name":"detection_layer","events_processed":550,"events_dropped":0,"avg_latency_ms":17.274931523826876,"throughput_eps":0,"last_update":"2026-03-21T22:40:53.966235877Z"} +2026/03/21 22:40:58 ───────────────────────────────────────────────── +2026/03/21 22:41:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:41:03 [log_collector] {"stage_name":"log_collector","events_processed":26000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5200,"last_update":"2026-03-21T22:40:58.870339727Z"} +2026/03/21 22:41:03 [metric_collector] {"stage_name":"metric_collector","events_processed":16509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3301.8,"last_update":"2026-03-21T22:40:58.870594344Z"} +2026/03/21 22:41:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:40:58.879935069Z"} +2026/03/21 22:41:03 [transform_engine] {"stage_name":"transform_engine","events_processed":550,"events_dropped":0,"avg_latency_ms":490.60426784891933,"throughput_eps":0,"last_update":"2026-03-21T22:40:58.966116721Z"} +2026/03/21 22:41:03 [detection_layer] {"stage_name":"detection_layer","events_processed":550,"events_dropped":0,"avg_latency_ms":17.274931523826876,"throughput_eps":0,"last_update":"2026-03-21T22:40:58.966092365Z"} +2026/03/21 22:41:03 ───────────────────────────────────────────────── +2026/03/21 22:41:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:41:08 [transform_engine] {"stage_name":"transform_engine","events_processed":550,"events_dropped":0,"avg_latency_ms":490.60426784891933,"throughput_eps":0,"last_update":"2026-03-21T22:41:03.966077828Z"} +2026/03/21 22:41:08 [detection_layer] {"stage_name":"detection_layer","events_processed":550,"events_dropped":0,"avg_latency_ms":17.274931523826876,"throughput_eps":0,"last_update":"2026-03-21T22:41:03.966106583Z"} +2026/03/21 22:41:08 [log_collector] {"stage_name":"log_collector","events_processed":26000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5200,"last_update":"2026-03-21T22:41:03.869853717Z"} +2026/03/21 22:41:08 [metric_collector] {"stage_name":"metric_collector","events_processed":16514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3302.8,"last_update":"2026-03-21T22:41:03.870259203Z"} +2026/03/21 22:41:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:41:03.878941346Z"} +2026/03/21 22:41:08 ───────────────────────────────────────────────── +2026/03/21 22:41:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:41:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:41:08.876682007Z"} +2026/03/21 22:41:13 [transform_engine] {"stage_name":"transform_engine","events_processed":550,"events_dropped":0,"avg_latency_ms":490.60426784891933,"throughput_eps":0,"last_update":"2026-03-21T22:41:08.965893294Z"} +2026/03/21 22:41:13 [detection_layer] {"stage_name":"detection_layer","events_processed":550,"events_dropped":0,"avg_latency_ms":17.274931523826876,"throughput_eps":0,"last_update":"2026-03-21T22:41:08.965872244Z"} +2026/03/21 22:41:13 [log_collector] {"stage_name":"log_collector","events_processed":26000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5200,"last_update":"2026-03-21T22:41:08.869578229Z"} +2026/03/21 22:41:13 [metric_collector] {"stage_name":"metric_collector","events_processed":16519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3303.8,"last_update":"2026-03-21T22:41:08.870021518Z"} +2026/03/21 22:41:13 ───────────────────────────────────────────────── +2026/03/21 22:41:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:41:18 [log_collector] {"stage_name":"log_collector","events_processed":26000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5200,"last_update":"2026-03-21T22:41:13.869430062Z"} +2026/03/21 22:41:18 [metric_collector] {"stage_name":"metric_collector","events_processed":16524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3304.8,"last_update":"2026-03-21T22:41:13.869799459Z"} +2026/03/21 22:41:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:41:13.878781076Z"} +2026/03/21 22:41:18 [transform_engine] {"stage_name":"transform_engine","events_processed":550,"events_dropped":0,"avg_latency_ms":490.60426784891933,"throughput_eps":0,"last_update":"2026-03-21T22:41:13.966130325Z"} +2026/03/21 22:41:18 [detection_layer] {"stage_name":"detection_layer","events_processed":550,"events_dropped":0,"avg_latency_ms":17.274931523826876,"throughput_eps":0,"last_update":"2026-03-21T22:41:13.96595051Z"} +2026/03/21 22:41:18 ───────────────────────────────────────────────── +2026/03/21 22:41:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:41:23 [log_collector] {"stage_name":"log_collector","events_processed":26000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5200,"last_update":"2026-03-21T22:41:18.869864818Z"} +2026/03/21 22:41:23 [metric_collector] {"stage_name":"metric_collector","events_processed":16529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3305.8,"last_update":"2026-03-21T22:41:18.87020993Z"} +2026/03/21 22:41:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:41:18.878141385Z"} +2026/03/21 22:41:23 [transform_engine] {"stage_name":"transform_engine","events_processed":550,"events_dropped":0,"avg_latency_ms":490.60426784891933,"throughput_eps":0,"last_update":"2026-03-21T22:41:18.965318063Z"} +2026/03/21 22:41:23 [detection_layer] {"stage_name":"detection_layer","events_processed":550,"events_dropped":0,"avg_latency_ms":17.274931523826876,"throughput_eps":0,"last_update":"2026-03-21T22:41:18.965338171Z"} +2026/03/21 22:41:23 ───────────────────────────────────────────────── +2026/03/21 22:41:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:41:28 [metric_collector] {"stage_name":"metric_collector","events_processed":16539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3307.8,"last_update":"2026-03-21T22:41:28.86966425Z"} +2026/03/21 22:41:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:41:23.877477376Z"} +2026/03/21 22:41:28 [transform_engine] {"stage_name":"transform_engine","events_processed":551,"events_dropped":0,"avg_latency_ms":406.4146086791355,"throughput_eps":0,"last_update":"2026-03-21T22:41:23.965779371Z"} +2026/03/21 22:41:28 [detection_layer] {"stage_name":"detection_layer","events_processed":551,"events_dropped":0,"avg_latency_ms":17.3379888190615,"throughput_eps":0,"last_update":"2026-03-21T22:41:23.965848974Z"} +2026/03/21 22:41:28 [log_collector] {"stage_name":"log_collector","events_processed":26000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5200,"last_update":"2026-03-21T22:41:23.870227958Z"} +2026/03/21 22:41:28 ───────────────────────────────────────────────── +2026/03/21 22:41:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:41:33 [log_collector] {"stage_name":"log_collector","events_processed":26000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5200,"last_update":"2026-03-21T22:41:28.869798747Z"} +2026/03/21 22:41:33 [metric_collector] {"stage_name":"metric_collector","events_processed":16539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3307.8,"last_update":"2026-03-21T22:41:28.86966425Z"} +2026/03/21 22:41:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:41:28.880383074Z"} +2026/03/21 22:41:33 [transform_engine] {"stage_name":"transform_engine","events_processed":551,"events_dropped":0,"avg_latency_ms":406.4146086791355,"throughput_eps":0,"last_update":"2026-03-21T22:41:28.965632339Z"} +2026/03/21 22:41:33 [detection_layer] {"stage_name":"detection_layer","events_processed":551,"events_dropped":0,"avg_latency_ms":17.3379888190615,"throughput_eps":0,"last_update":"2026-03-21T22:41:28.965594277Z"} +2026/03/21 22:41:33 ───────────────────────────────────────────────── +Saved state: 14 clusters, 26001 messages, reason: none +2026/03/21 22:41:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:41:38 [log_collector] {"stage_name":"log_collector","events_processed":26000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5200,"last_update":"2026-03-21T22:41:33.870432813Z"} +2026/03/21 22:41:38 [metric_collector] {"stage_name":"metric_collector","events_processed":16544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3308.8,"last_update":"2026-03-21T22:41:33.8709275Z"} +2026/03/21 22:41:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6620,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:41:33.881083977Z"} +2026/03/21 22:41:38 [transform_engine] {"stage_name":"transform_engine","events_processed":551,"events_dropped":0,"avg_latency_ms":406.4146086791355,"throughput_eps":0,"last_update":"2026-03-21T22:41:33.965252543Z"} +2026/03/21 22:41:38 [detection_layer] {"stage_name":"detection_layer","events_processed":551,"events_dropped":0,"avg_latency_ms":17.3379888190615,"throughput_eps":0,"last_update":"2026-03-21T22:41:33.965270127Z"} +2026/03/21 22:41:38 ───────────────────────────────────────────────── +2026/03/21 22:41:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:41:43 [log_collector] {"stage_name":"log_collector","events_processed":26009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5201.8,"last_update":"2026-03-21T22:41:38.870224231Z"} +2026/03/21 22:41:43 [metric_collector] {"stage_name":"metric_collector","events_processed":16549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3309.8,"last_update":"2026-03-21T22:41:38.870503736Z"} +2026/03/21 22:41:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6622,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:41:38.879633637Z"} +2026/03/21 22:41:43 [transform_engine] {"stage_name":"transform_engine","events_processed":551,"events_dropped":0,"avg_latency_ms":406.4146086791355,"throughput_eps":0,"last_update":"2026-03-21T22:41:38.966071389Z"} +2026/03/21 22:41:43 [detection_layer] {"stage_name":"detection_layer","events_processed":551,"events_dropped":0,"avg_latency_ms":17.3379888190615,"throughput_eps":0,"last_update":"2026-03-21T22:41:38.965946881Z"} +2026/03/21 22:41:43 ───────────────────────────────────────────────── +2026/03/21 22:41:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:41:48 [log_collector] {"stage_name":"log_collector","events_processed":26009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5201.8,"last_update":"2026-03-21T22:41:43.870070875Z"} +2026/03/21 22:41:48 [metric_collector] {"stage_name":"metric_collector","events_processed":16554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3310.8,"last_update":"2026-03-21T22:41:43.870338206Z"} +2026/03/21 22:41:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:41:43.879171749Z"} +2026/03/21 22:41:48 [transform_engine] {"stage_name":"transform_engine","events_processed":551,"events_dropped":0,"avg_latency_ms":406.4146086791355,"throughput_eps":0,"last_update":"2026-03-21T22:41:43.965667503Z"} +2026/03/21 22:41:48 [detection_layer] {"stage_name":"detection_layer","events_processed":551,"events_dropped":0,"avg_latency_ms":17.3379888190615,"throughput_eps":0,"last_update":"2026-03-21T22:41:43.965552402Z"} +2026/03/21 22:41:48 ───────────────────────────────────────────────── +2026/03/21 22:41:49 [ANOMALY] time=2026-03-21T22:41:49Z score=0.9183 method=SEAD details=MAD!:w=0.25,s=0.92 RRCF-fast!:w=0.20,s=0.93 RRCF-mid!:w=0.16,s=0.99 RRCF-slow!:w=0.15,s=0.99 COPOD!:w=0.24,s=0.82 +2026/03/21 22:41:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:41:53 [metric_collector] {"stage_name":"metric_collector","events_processed":16559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3311.8,"last_update":"2026-03-21T22:41:48.869825057Z"} +2026/03/21 22:41:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:41:48.878524652Z"} +2026/03/21 22:41:53 [transform_engine] {"stage_name":"transform_engine","events_processed":551,"events_dropped":0,"avg_latency_ms":406.4146086791355,"throughput_eps":0,"last_update":"2026-03-21T22:41:48.965738201Z"} +2026/03/21 22:41:53 [detection_layer] {"stage_name":"detection_layer","events_processed":551,"events_dropped":0,"avg_latency_ms":17.3379888190615,"throughput_eps":0,"last_update":"2026-03-21T22:41:48.965854053Z"} +2026/03/21 22:41:53 [log_collector] {"stage_name":"log_collector","events_processed":26009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5201.8,"last_update":"2026-03-21T22:41:48.869436161Z"} +2026/03/21 22:41:53 ───────────────────────────────────────────────── +2026/03/21 22:41:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:41:58 [log_collector] {"stage_name":"log_collector","events_processed":26009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5201.8,"last_update":"2026-03-21T22:41:53.869410425Z"} +2026/03/21 22:41:58 [metric_collector] {"stage_name":"metric_collector","events_processed":16564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3312.8,"last_update":"2026-03-21T22:41:53.869750877Z"} +2026/03/21 22:41:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:41:53.878039796Z"} +2026/03/21 22:41:58 [transform_engine] {"stage_name":"transform_engine","events_processed":552,"events_dropped":0,"avg_latency_ms":349.3712377433084,"throughput_eps":0,"last_update":"2026-03-21T22:41:53.965236412Z"} +2026/03/21 22:41:58 [detection_layer] {"stage_name":"detection_layer","events_processed":552,"events_dropped":0,"avg_latency_ms":17.0292848552492,"throughput_eps":0,"last_update":"2026-03-21T22:41:53.965278242Z"} +2026/03/21 22:41:58 ───────────────────────────────────────────────── +2026/03/21 22:42:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:42:03 [detection_layer] {"stage_name":"detection_layer","events_processed":552,"events_dropped":0,"avg_latency_ms":17.0292848552492,"throughput_eps":0,"last_update":"2026-03-21T22:41:58.965666237Z"} +2026/03/21 22:42:03 [log_collector] {"stage_name":"log_collector","events_processed":26009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5201.8,"last_update":"2026-03-21T22:41:58.869493785Z"} +2026/03/21 22:42:03 [metric_collector] {"stage_name":"metric_collector","events_processed":16569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3313.8,"last_update":"2026-03-21T22:41:58.870040101Z"} +2026/03/21 22:42:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:41:58.878282942Z"} +2026/03/21 22:42:03 [transform_engine] {"stage_name":"transform_engine","events_processed":552,"events_dropped":0,"avg_latency_ms":349.3712377433084,"throughput_eps":0,"last_update":"2026-03-21T22:41:58.965677137Z"} +2026/03/21 22:42:03 ───────────────────────────────────────────────── +2026/03/21 22:42:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:42:08 [log_collector] {"stage_name":"log_collector","events_processed":26009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5201.8,"last_update":"2026-03-21T22:42:03.870112438Z"} +2026/03/21 22:42:08 [metric_collector] {"stage_name":"metric_collector","events_processed":16574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3314.8,"last_update":"2026-03-21T22:42:03.870444304Z"} +2026/03/21 22:42:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6632,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:42:03.87855399Z"} +2026/03/21 22:42:08 [transform_engine] {"stage_name":"transform_engine","events_processed":552,"events_dropped":0,"avg_latency_ms":349.3712377433084,"throughput_eps":0,"last_update":"2026-03-21T22:42:03.96596636Z"} +2026/03/21 22:42:08 [detection_layer] {"stage_name":"detection_layer","events_processed":552,"events_dropped":0,"avg_latency_ms":17.0292848552492,"throughput_eps":0,"last_update":"2026-03-21T22:42:03.965920502Z"} +2026/03/21 22:42:08 ───────────────────────────────────────────────── +2026/03/21 22:42:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:42:13 [transform_engine] {"stage_name":"transform_engine","events_processed":552,"events_dropped":0,"avg_latency_ms":349.3712377433084,"throughput_eps":0,"last_update":"2026-03-21T22:42:08.965589807Z"} +2026/03/21 22:42:13 [detection_layer] {"stage_name":"detection_layer","events_processed":552,"events_dropped":0,"avg_latency_ms":17.0292848552492,"throughput_eps":0,"last_update":"2026-03-21T22:42:08.965583815Z"} +2026/03/21 22:42:13 [log_collector] {"stage_name":"log_collector","events_processed":26009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5201.8,"last_update":"2026-03-21T22:42:08.870321437Z"} +2026/03/21 22:42:13 [metric_collector] {"stage_name":"metric_collector","events_processed":16579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3315.8,"last_update":"2026-03-21T22:42:08.870691636Z"} +2026/03/21 22:42:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:42:08.879356966Z"} +2026/03/21 22:42:13 ───────────────────────────────────────────────── +2026/03/21 22:42:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:42:18 [metric_collector] {"stage_name":"metric_collector","events_processed":16584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3316.8,"last_update":"2026-03-21T22:42:13.871659536Z"} +2026/03/21 22:42:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:42:13.879840568Z"} +2026/03/21 22:42:18 [transform_engine] {"stage_name":"transform_engine","events_processed":552,"events_dropped":0,"avg_latency_ms":349.3712377433084,"throughput_eps":0,"last_update":"2026-03-21T22:42:13.965508937Z"} +2026/03/21 22:42:18 [detection_layer] {"stage_name":"detection_layer","events_processed":552,"events_dropped":0,"avg_latency_ms":17.0292848552492,"throughput_eps":0,"last_update":"2026-03-21T22:42:13.965478288Z"} +2026/03/21 22:42:18 [log_collector] {"stage_name":"log_collector","events_processed":26366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5273.2,"last_update":"2026-03-21T22:42:18.87005122Z"} +2026/03/21 22:42:18 ───────────────────────────────────────────────── +2026/03/21 22:42:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:42:23 [log_collector] {"stage_name":"log_collector","events_processed":26366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5273.2,"last_update":"2026-03-21T22:42:18.87005122Z"} +2026/03/21 22:42:23 [metric_collector] {"stage_name":"metric_collector","events_processed":16589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3317.8,"last_update":"2026-03-21T22:42:18.870265531Z"} +2026/03/21 22:42:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:42:18.879173396Z"} +2026/03/21 22:42:23 [transform_engine] {"stage_name":"transform_engine","events_processed":553,"events_dropped":0,"avg_latency_ms":592.7854083946468,"throughput_eps":0,"last_update":"2026-03-21T22:42:20.531960481Z"} +2026/03/21 22:42:23 [detection_layer] {"stage_name":"detection_layer","events_processed":552,"events_dropped":0,"avg_latency_ms":17.0292848552492,"throughput_eps":0,"last_update":"2026-03-21T22:42:18.9656219Z"} +2026/03/21 22:42:23 ───────────────────────────────────────────────── +2026/03/21 22:42:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:42:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6640,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:42:23.879579227Z"} +2026/03/21 22:42:28 [transform_engine] {"stage_name":"transform_engine","events_processed":553,"events_dropped":0,"avg_latency_ms":592.7854083946468,"throughput_eps":0,"last_update":"2026-03-21T22:42:23.96613204Z"} +2026/03/21 22:42:28 [detection_layer] {"stage_name":"detection_layer","events_processed":553,"events_dropped":0,"avg_latency_ms":16.839018084199363,"throughput_eps":0,"last_update":"2026-03-21T22:42:23.966015728Z"} +2026/03/21 22:42:28 [log_collector] {"stage_name":"log_collector","events_processed":26366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5273.2,"last_update":"2026-03-21T22:42:28.869830744Z"} +2026/03/21 22:42:28 [metric_collector] {"stage_name":"metric_collector","events_processed":16594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3318.8,"last_update":"2026-03-21T22:42:23.869997742Z"} +2026/03/21 22:42:28 ───────────────────────────────────────────────── +2026/03/21 22:42:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:42:33 [log_collector] {"stage_name":"log_collector","events_processed":26366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5273.2,"last_update":"2026-03-21T22:42:28.869830744Z"} +2026/03/21 22:42:33 [metric_collector] {"stage_name":"metric_collector","events_processed":16599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3319.8,"last_update":"2026-03-21T22:42:28.870158732Z"} +2026/03/21 22:42:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:42:28.878458582Z"} +2026/03/21 22:42:33 [transform_engine] {"stage_name":"transform_engine","events_processed":553,"events_dropped":0,"avg_latency_ms":592.7854083946468,"throughput_eps":0,"last_update":"2026-03-21T22:42:28.965730593Z"} +2026/03/21 22:42:33 [detection_layer] {"stage_name":"detection_layer","events_processed":553,"events_dropped":0,"avg_latency_ms":16.839018084199363,"throughput_eps":0,"last_update":"2026-03-21T22:42:28.965724412Z"} +2026/03/21 22:42:33 ───────────────────────────────────────────────── +2026/03/21 22:42:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:42:38 [log_collector] {"stage_name":"log_collector","events_processed":26366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5273.2,"last_update":"2026-03-21T22:42:33.870118575Z"} +2026/03/21 22:42:38 [metric_collector] {"stage_name":"metric_collector","events_processed":16604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3320.8,"last_update":"2026-03-21T22:42:33.870429821Z"} +2026/03/21 22:42:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:42:33.87955858Z"} +2026/03/21 22:42:38 [transform_engine] {"stage_name":"transform_engine","events_processed":553,"events_dropped":0,"avg_latency_ms":592.7854083946468,"throughput_eps":0,"last_update":"2026-03-21T22:42:33.965752976Z"} +2026/03/21 22:42:38 [detection_layer] {"stage_name":"detection_layer","events_processed":553,"events_dropped":0,"avg_latency_ms":16.839018084199363,"throughput_eps":0,"last_update":"2026-03-21T22:42:33.965745442Z"} +2026/03/21 22:42:38 ───────────────────────────────────────────────── +2026/03/21 22:42:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:42:43 [transform_engine] {"stage_name":"transform_engine","events_processed":553,"events_dropped":0,"avg_latency_ms":592.7854083946468,"throughput_eps":0,"last_update":"2026-03-21T22:42:38.96543157Z"} +2026/03/21 22:42:43 [detection_layer] {"stage_name":"detection_layer","events_processed":553,"events_dropped":0,"avg_latency_ms":16.839018084199363,"throughput_eps":0,"last_update":"2026-03-21T22:42:38.965418684Z"} +2026/03/21 22:42:43 [log_collector] {"stage_name":"log_collector","events_processed":26366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5273.2,"last_update":"2026-03-21T22:42:43.869440994Z"} +2026/03/21 22:42:43 [metric_collector] {"stage_name":"metric_collector","events_processed":16609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3321.8,"last_update":"2026-03-21T22:42:38.869710141Z"} +2026/03/21 22:42:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6646,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:42:38.879095582Z"} +2026/03/21 22:42:43 ───────────────────────────────────────────────── +2026/03/21 22:42:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:42:48 [log_collector] {"stage_name":"log_collector","events_processed":26366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5273.2,"last_update":"2026-03-21T22:42:43.869440994Z"} +2026/03/21 22:42:48 [metric_collector] {"stage_name":"metric_collector","events_processed":16614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3322.8,"last_update":"2026-03-21T22:42:43.870157527Z"} +2026/03/21 22:42:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:42:43.878043624Z"} +2026/03/21 22:42:48 [transform_engine] {"stage_name":"transform_engine","events_processed":553,"events_dropped":0,"avg_latency_ms":592.7854083946468,"throughput_eps":0,"last_update":"2026-03-21T22:42:43.965147903Z"} +2026/03/21 22:42:48 [detection_layer] {"stage_name":"detection_layer","events_processed":553,"events_dropped":0,"avg_latency_ms":16.839018084199363,"throughput_eps":0,"last_update":"2026-03-21T22:42:43.965275138Z"} +2026/03/21 22:42:48 ───────────────────────────────────────────────── +2026/03/21 22:42:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:42:53 [log_collector] {"stage_name":"log_collector","events_processed":26366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5273.2,"last_update":"2026-03-21T22:42:53.869532571Z"} +2026/03/21 22:42:53 [metric_collector] {"stage_name":"metric_collector","events_processed":16619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3323.8,"last_update":"2026-03-21T22:42:48.869793996Z"} +2026/03/21 22:42:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6650,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:42:48.878454046Z"} +2026/03/21 22:42:53 [transform_engine] {"stage_name":"transform_engine","events_processed":554,"events_dropped":0,"avg_latency_ms":488.61635031571745,"throughput_eps":0,"last_update":"2026-03-21T22:42:49.037756329Z"} +2026/03/21 22:42:53 [detection_layer] {"stage_name":"detection_layer","events_processed":553,"events_dropped":0,"avg_latency_ms":16.839018084199363,"throughput_eps":0,"last_update":"2026-03-21T22:42:48.965798847Z"} +2026/03/21 22:42:53 ───────────────────────────────────────────────── +2026/03/21 22:42:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:42:58 [detection_layer] {"stage_name":"detection_layer","events_processed":554,"events_dropped":0,"avg_latency_ms":17.26963326735949,"throughput_eps":0,"last_update":"2026-03-21T22:42:53.965875119Z"} +2026/03/21 22:42:58 [log_collector] {"stage_name":"log_collector","events_processed":26366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5273.2,"last_update":"2026-03-21T22:42:58.869549167Z"} +2026/03/21 22:42:58 [metric_collector] {"stage_name":"metric_collector","events_processed":16624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3324.8,"last_update":"2026-03-21T22:42:53.869979297Z"} +2026/03/21 22:42:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:42:53.878524508Z"} +2026/03/21 22:42:58 [transform_engine] {"stage_name":"transform_engine","events_processed":554,"events_dropped":0,"avg_latency_ms":488.61635031571745,"throughput_eps":0,"last_update":"2026-03-21T22:42:53.965887182Z"} +2026/03/21 22:42:58 ───────────────────────────────────────────────── +2026/03/21 22:43:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:43:03 [metric_collector] {"stage_name":"metric_collector","events_processed":16629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3325.8,"last_update":"2026-03-21T22:42:58.869804737Z"} +2026/03/21 22:43:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:42:58.878406205Z"} +2026/03/21 22:43:03 [transform_engine] {"stage_name":"transform_engine","events_processed":554,"events_dropped":0,"avg_latency_ms":488.61635031571745,"throughput_eps":0,"last_update":"2026-03-21T22:42:58.965604144Z"} +2026/03/21 22:43:03 [detection_layer] {"stage_name":"detection_layer","events_processed":554,"events_dropped":0,"avg_latency_ms":17.26963326735949,"throughput_eps":0,"last_update":"2026-03-21T22:42:58.965592432Z"} +2026/03/21 22:43:03 [log_collector] {"stage_name":"log_collector","events_processed":26366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5273.2,"last_update":"2026-03-21T22:42:58.869549167Z"} +2026/03/21 22:43:03 ───────────────────────────────────────────────── +2026/03/21 22:43:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:43:08 [detection_layer] {"stage_name":"detection_layer","events_processed":554,"events_dropped":0,"avg_latency_ms":17.26963326735949,"throughput_eps":0,"last_update":"2026-03-21T22:43:03.965636867Z"} +2026/03/21 22:43:08 [log_collector] {"stage_name":"log_collector","events_processed":26366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5273.2,"last_update":"2026-03-21T22:43:03.870373948Z"} +2026/03/21 22:43:08 [metric_collector] {"stage_name":"metric_collector","events_processed":16633,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3326.6,"last_update":"2026-03-21T22:43:03.870452348Z"} +2026/03/21 22:43:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:43:03.880367543Z"} +2026/03/21 22:43:08 [transform_engine] {"stage_name":"transform_engine","events_processed":554,"events_dropped":0,"avg_latency_ms":488.61635031571745,"throughput_eps":0,"last_update":"2026-03-21T22:43:03.965643139Z"} +2026/03/21 22:43:08 ───────────────────────────────────────────────── +2026/03/21 22:43:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:43:13 [log_collector] {"stage_name":"log_collector","events_processed":26366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5273.2,"last_update":"2026-03-21T22:43:08.870382144Z"} +2026/03/21 22:43:13 [metric_collector] {"stage_name":"metric_collector","events_processed":16639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3327.8,"last_update":"2026-03-21T22:43:08.870689583Z"} +2026/03/21 22:43:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:43:08.878669901Z"} +2026/03/21 22:43:13 [transform_engine] {"stage_name":"transform_engine","events_processed":554,"events_dropped":0,"avg_latency_ms":488.61635031571745,"throughput_eps":0,"last_update":"2026-03-21T22:43:08.96602476Z"} +2026/03/21 22:43:13 [detection_layer] {"stage_name":"detection_layer","events_processed":554,"events_dropped":0,"avg_latency_ms":17.26963326735949,"throughput_eps":0,"last_update":"2026-03-21T22:43:08.966013118Z"} +2026/03/21 22:43:13 ───────────────────────────────────────────────── +2026/03/21 22:43:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:43:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6660,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:43:13.879279678Z"} +2026/03/21 22:43:18 [transform_engine] {"stage_name":"transform_engine","events_processed":554,"events_dropped":0,"avg_latency_ms":488.61635031571745,"throughput_eps":0,"last_update":"2026-03-21T22:43:13.965484033Z"} +2026/03/21 22:43:18 [detection_layer] {"stage_name":"detection_layer","events_processed":554,"events_dropped":0,"avg_latency_ms":17.26963326735949,"throughput_eps":0,"last_update":"2026-03-21T22:43:13.965471598Z"} +2026/03/21 22:43:18 [log_collector] {"stage_name":"log_collector","events_processed":26366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5273.2,"last_update":"2026-03-21T22:43:13.869861144Z"} +2026/03/21 22:43:18 [metric_collector] {"stage_name":"metric_collector","events_processed":16644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3328.8,"last_update":"2026-03-21T22:43:13.87034399Z"} +2026/03/21 22:43:18 ───────────────────────────────────────────────── +2026/03/21 22:43:19 [ANOMALY] time=2026-03-21T22:43:19Z score=0.8320 method=SEAD details=MAD!:w=0.25,s=0.92 RRCF-fast:w=0.20,s=0.63 RRCF-mid:w=0.16,s=0.84 RRCF-slow!:w=0.15,s=0.93 COPOD!:w=0.24,s=0.84 +2026/03/21 22:43:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:43:23 [metric_collector] {"stage_name":"metric_collector","events_processed":16649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3329.8,"last_update":"2026-03-21T22:43:18.870147719Z"} +2026/03/21 22:43:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6662,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:43:18.876360331Z"} +2026/03/21 22:43:23 [transform_engine] {"stage_name":"transform_engine","events_processed":555,"events_dropped":0,"avg_latency_ms":402.009368252574,"throughput_eps":0,"last_update":"2026-03-21T22:43:19.021208442Z"} +2026/03/21 22:43:23 [detection_layer] {"stage_name":"detection_layer","events_processed":554,"events_dropped":0,"avg_latency_ms":17.26963326735949,"throughput_eps":0,"last_update":"2026-03-21T22:43:18.965613417Z"} +2026/03/21 22:43:23 [log_collector] {"stage_name":"log_collector","events_processed":26366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5273.2,"last_update":"2026-03-21T22:43:18.869659804Z"} +2026/03/21 22:43:23 ───────────────────────────────────────────────── +2026/03/21 22:43:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:43:28 [metric_collector] {"stage_name":"metric_collector","events_processed":16654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3330.8,"last_update":"2026-03-21T22:43:23.870058584Z"} +2026/03/21 22:43:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:43:23.87806403Z"} +2026/03/21 22:43:28 [transform_engine] {"stage_name":"transform_engine","events_processed":555,"events_dropped":0,"avg_latency_ms":402.009368252574,"throughput_eps":0,"last_update":"2026-03-21T22:43:23.965405273Z"} +2026/03/21 22:43:28 [detection_layer] {"stage_name":"detection_layer","events_processed":555,"events_dropped":0,"avg_latency_ms":16.431924413887593,"throughput_eps":0,"last_update":"2026-03-21T22:43:23.965279272Z"} +2026/03/21 22:43:28 [log_collector] {"stage_name":"log_collector","events_processed":26366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5273.2,"last_update":"2026-03-21T22:43:23.869688905Z"} +2026/03/21 22:43:28 ───────────────────────────────────────────────── +2026/03/21 22:43:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:43:33 [detection_layer] {"stage_name":"detection_layer","events_processed":555,"events_dropped":0,"avg_latency_ms":16.431924413887593,"throughput_eps":0,"last_update":"2026-03-21T22:43:28.966103073Z"} +2026/03/21 22:43:33 [log_collector] {"stage_name":"log_collector","events_processed":26366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5273.2,"last_update":"2026-03-21T22:43:33.869419186Z"} +2026/03/21 22:43:33 [metric_collector] {"stage_name":"metric_collector","events_processed":16659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3331.8,"last_update":"2026-03-21T22:43:28.870423336Z"} +2026/03/21 22:43:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:43:28.878886969Z"} +2026/03/21 22:43:33 [transform_engine] {"stage_name":"transform_engine","events_processed":555,"events_dropped":0,"avg_latency_ms":402.009368252574,"throughput_eps":0,"last_update":"2026-03-21T22:43:28.966147308Z"} +2026/03/21 22:43:33 ───────────────────────────────────────────────── +2026/03/21 22:43:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:43:38 [log_collector] {"stage_name":"log_collector","events_processed":26366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5273.2,"last_update":"2026-03-21T22:43:33.869419186Z"} +2026/03/21 22:43:38 [metric_collector] {"stage_name":"metric_collector","events_processed":16664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3332.8,"last_update":"2026-03-21T22:43:33.869845783Z"} +2026/03/21 22:43:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6668,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:43:33.877675693Z"} +2026/03/21 22:43:38 [transform_engine] {"stage_name":"transform_engine","events_processed":555,"events_dropped":0,"avg_latency_ms":402.009368252574,"throughput_eps":0,"last_update":"2026-03-21T22:43:33.966106674Z"} +2026/03/21 22:43:38 [detection_layer] {"stage_name":"detection_layer","events_processed":555,"events_dropped":0,"avg_latency_ms":16.431924413887593,"throughput_eps":0,"last_update":"2026-03-21T22:43:33.965950545Z"} +2026/03/21 22:43:38 ───────────────────────────────────────────────── +2026/03/21 22:43:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:43:43 [detection_layer] {"stage_name":"detection_layer","events_processed":555,"events_dropped":0,"avg_latency_ms":16.431924413887593,"throughput_eps":0,"last_update":"2026-03-21T22:43:38.965843512Z"} +2026/03/21 22:43:43 [log_collector] {"stage_name":"log_collector","events_processed":26366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5273.2,"last_update":"2026-03-21T22:43:43.869503722Z"} +2026/03/21 22:43:43 [metric_collector] {"stage_name":"metric_collector","events_processed":16669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3333.8,"last_update":"2026-03-21T22:43:38.869814876Z"} +2026/03/21 22:43:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6670,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:43:38.87868031Z"} +2026/03/21 22:43:43 [transform_engine] {"stage_name":"transform_engine","events_processed":555,"events_dropped":0,"avg_latency_ms":402.009368252574,"throughput_eps":0,"last_update":"2026-03-21T22:43:38.96605631Z"} +2026/03/21 22:43:43 ───────────────────────────────────────────────── +2026/03/21 22:43:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:43:48 [log_collector] {"stage_name":"log_collector","events_processed":26366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5273.2,"last_update":"2026-03-21T22:43:48.869613693Z"} +2026/03/21 22:43:48 [metric_collector] {"stage_name":"metric_collector","events_processed":16674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3334.8,"last_update":"2026-03-21T22:43:43.870116706Z"} +2026/03/21 22:43:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:43:43.879277947Z"} +2026/03/21 22:43:48 [transform_engine] {"stage_name":"transform_engine","events_processed":555,"events_dropped":0,"avg_latency_ms":402.009368252574,"throughput_eps":0,"last_update":"2026-03-21T22:43:43.965603133Z"} +2026/03/21 22:43:48 [detection_layer] {"stage_name":"detection_layer","events_processed":555,"events_dropped":0,"avg_latency_ms":16.431924413887593,"throughput_eps":0,"last_update":"2026-03-21T22:43:43.965640655Z"} +2026/03/21 22:43:48 ───────────────────────────────────────────────── +2026/03/21 22:43:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:43:53 [log_collector] {"stage_name":"log_collector","events_processed":26366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5273.2,"last_update":"2026-03-21T22:43:48.869613693Z"} +2026/03/21 22:43:53 [metric_collector] {"stage_name":"metric_collector","events_processed":16679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3335.8,"last_update":"2026-03-21T22:43:48.869846318Z"} +2026/03/21 22:43:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:43:48.880311056Z"} +2026/03/21 22:43:53 [transform_engine] {"stage_name":"transform_engine","events_processed":556,"events_dropped":0,"avg_latency_ms":335.1747960020592,"throughput_eps":0,"last_update":"2026-03-21T22:43:49.033422597Z"} +2026/03/21 22:43:53 [detection_layer] {"stage_name":"detection_layer","events_processed":555,"events_dropped":0,"avg_latency_ms":16.431924413887593,"throughput_eps":0,"last_update":"2026-03-21T22:43:48.965621699Z"} +2026/03/21 22:43:53 ───────────────────────────────────────────────── +2026/03/21 22:43:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:43:58 [transform_engine] {"stage_name":"transform_engine","events_processed":556,"events_dropped":0,"avg_latency_ms":335.1747960020592,"throughput_eps":0,"last_update":"2026-03-21T22:43:53.965816349Z"} +2026/03/21 22:43:58 [detection_layer] {"stage_name":"detection_layer","events_processed":556,"events_dropped":0,"avg_latency_ms":16.804380931110074,"throughput_eps":0,"last_update":"2026-03-21T22:43:53.965791612Z"} +2026/03/21 22:43:58 [log_collector] {"stage_name":"log_collector","events_processed":26366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5273.2,"last_update":"2026-03-21T22:43:53.870092687Z"} +2026/03/21 22:43:58 [metric_collector] {"stage_name":"metric_collector","events_processed":16684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3336.8,"last_update":"2026-03-21T22:43:53.870408963Z"} +2026/03/21 22:43:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6676,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:43:53.878582892Z"} +2026/03/21 22:43:58 ───────────────────────────────────────────────── +2026/03/21 22:44:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:44:03 [detection_layer] {"stage_name":"detection_layer","events_processed":556,"events_dropped":0,"avg_latency_ms":16.804380931110074,"throughput_eps":0,"last_update":"2026-03-21T22:43:58.965484451Z"} +2026/03/21 22:44:03 [log_collector] {"stage_name":"log_collector","events_processed":26366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5273.2,"last_update":"2026-03-21T22:44:03.869419531Z"} +2026/03/21 22:44:03 [metric_collector] {"stage_name":"metric_collector","events_processed":16689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3337.8,"last_update":"2026-03-21T22:43:58.869842345Z"} +2026/03/21 22:44:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:43:58.878302222Z"} +2026/03/21 22:44:03 [transform_engine] {"stage_name":"transform_engine","events_processed":556,"events_dropped":0,"avg_latency_ms":335.1747960020592,"throughput_eps":0,"last_update":"2026-03-21T22:43:58.965465223Z"} +2026/03/21 22:44:03 ───────────────────────────────────────────────── +2026/03/21 22:44:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:44:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:44:03.881705207Z"} +2026/03/21 22:44:08 [transform_engine] {"stage_name":"transform_engine","events_processed":556,"events_dropped":0,"avg_latency_ms":335.1747960020592,"throughput_eps":0,"last_update":"2026-03-21T22:44:03.966009492Z"} +2026/03/21 22:44:08 [detection_layer] {"stage_name":"detection_layer","events_processed":556,"events_dropped":0,"avg_latency_ms":16.804380931110074,"throughput_eps":0,"last_update":"2026-03-21T22:44:03.966043827Z"} +2026/03/21 22:44:08 [log_collector] {"stage_name":"log_collector","events_processed":26366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5273.2,"last_update":"2026-03-21T22:44:03.869419531Z"} +2026/03/21 22:44:08 [metric_collector] {"stage_name":"metric_collector","events_processed":16694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3338.8,"last_update":"2026-03-21T22:44:03.870143147Z"} +2026/03/21 22:44:08 ───────────────────────────────────────────────── +2026/03/21 22:44:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:44:13 [log_collector] {"stage_name":"log_collector","events_processed":26366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5273.2,"last_update":"2026-03-21T22:44:13.869446149Z"} +2026/03/21 22:44:13 [metric_collector] {"stage_name":"metric_collector","events_processed":16699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3339.8,"last_update":"2026-03-21T22:44:08.869868936Z"} +2026/03/21 22:44:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:44:08.876935855Z"} +2026/03/21 22:44:13 [transform_engine] {"stage_name":"transform_engine","events_processed":556,"events_dropped":0,"avg_latency_ms":335.1747960020592,"throughput_eps":0,"last_update":"2026-03-21T22:44:08.966206775Z"} +2026/03/21 22:44:13 [detection_layer] {"stage_name":"detection_layer","events_processed":556,"events_dropped":0,"avg_latency_ms":16.804380931110074,"throughput_eps":0,"last_update":"2026-03-21T22:44:08.96612114Z"} +2026/03/21 22:44:13 ───────────────────────────────────────────────── +2026/03/21 22:44:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:44:18 [log_collector] {"stage_name":"log_collector","events_processed":26366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5273.2,"last_update":"2026-03-21T22:44:13.869446149Z"} +2026/03/21 22:44:18 [metric_collector] {"stage_name":"metric_collector","events_processed":16704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3340.8,"last_update":"2026-03-21T22:44:13.86993725Z"} +2026/03/21 22:44:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:44:13.878694737Z"} +2026/03/21 22:44:18 [transform_engine] {"stage_name":"transform_engine","events_processed":556,"events_dropped":0,"avg_latency_ms":335.1747960020592,"throughput_eps":0,"last_update":"2026-03-21T22:44:13.966010692Z"} +2026/03/21 22:44:18 [detection_layer] {"stage_name":"detection_layer","events_processed":556,"events_dropped":0,"avg_latency_ms":16.804380931110074,"throughput_eps":0,"last_update":"2026-03-21T22:44:13.966000022Z"} +2026/03/21 22:44:18 ───────────────────────────────────────────────── +2026/03/21 22:44:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:44:23 [log_collector] {"stage_name":"log_collector","events_processed":26366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5273.2,"last_update":"2026-03-21T22:44:18.869418268Z"} +2026/03/21 22:44:23 [metric_collector] {"stage_name":"metric_collector","events_processed":16709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3341.8,"last_update":"2026-03-21T22:44:18.869794289Z"} +2026/03/21 22:44:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:44:18.878034424Z"} +2026/03/21 22:44:23 [transform_engine] {"stage_name":"transform_engine","events_processed":557,"events_dropped":0,"avg_latency_ms":282.6721830016474,"throughput_eps":0,"last_update":"2026-03-21T22:44:19.037889333Z"} +2026/03/21 22:44:23 [detection_layer] {"stage_name":"detection_layer","events_processed":556,"events_dropped":0,"avg_latency_ms":16.804380931110074,"throughput_eps":0,"last_update":"2026-03-21T22:44:18.965482662Z"} +2026/03/21 22:44:23 ───────────────────────────────────────────────── +2026/03/21 22:44:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:44:28 [transform_engine] {"stage_name":"transform_engine","events_processed":557,"events_dropped":0,"avg_latency_ms":282.6721830016474,"throughput_eps":0,"last_update":"2026-03-21T22:44:23.965758972Z"} +2026/03/21 22:44:28 [detection_layer] {"stage_name":"detection_layer","events_processed":557,"events_dropped":0,"avg_latency_ms":17.04373974488806,"throughput_eps":0,"last_update":"2026-03-21T22:44:23.965777207Z"} +2026/03/21 22:44:28 [log_collector] {"stage_name":"log_collector","events_processed":26366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5273.2,"last_update":"2026-03-21T22:44:23.870774276Z"} +2026/03/21 22:44:28 [metric_collector] {"stage_name":"metric_collector","events_processed":16714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3342.8,"last_update":"2026-03-21T22:44:23.870744529Z"} +2026/03/21 22:44:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6688,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:44:23.879553405Z"} +2026/03/21 22:44:28 ───────────────────────────────────────────────── +Saved state: 14 clusters, 26367 messages, reason: none +2026/03/21 22:44:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:44:33 [log_collector] {"stage_name":"log_collector","events_processed":26366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5273.2,"last_update":"2026-03-21T22:44:28.870300028Z"} +2026/03/21 22:44:33 [metric_collector] {"stage_name":"metric_collector","events_processed":16719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3343.8,"last_update":"2026-03-21T22:44:28.870671209Z"} +2026/03/21 22:44:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:44:28.87990069Z"} +2026/03/21 22:44:33 [transform_engine] {"stage_name":"transform_engine","events_processed":557,"events_dropped":0,"avg_latency_ms":282.6721830016474,"throughput_eps":0,"last_update":"2026-03-21T22:44:28.965157039Z"} +2026/03/21 22:44:33 [detection_layer] {"stage_name":"detection_layer","events_processed":557,"events_dropped":0,"avg_latency_ms":17.04373974488806,"throughput_eps":0,"last_update":"2026-03-21T22:44:28.966253729Z"} +2026/03/21 22:44:33 ───────────────────────────────────────────────── +2026/03/21 22:44:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:44:38 [detection_layer] {"stage_name":"detection_layer","events_processed":557,"events_dropped":0,"avg_latency_ms":17.04373974488806,"throughput_eps":0,"last_update":"2026-03-21T22:44:33.965323486Z"} +2026/03/21 22:44:38 [log_collector] {"stage_name":"log_collector","events_processed":26369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5273.8,"last_update":"2026-03-21T22:44:33.869619883Z"} +2026/03/21 22:44:38 [metric_collector] {"stage_name":"metric_collector","events_processed":16724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3344.8,"last_update":"2026-03-21T22:44:33.869795729Z"} +2026/03/21 22:44:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:44:33.877078731Z"} +2026/03/21 22:44:38 [transform_engine] {"stage_name":"transform_engine","events_processed":557,"events_dropped":0,"avg_latency_ms":282.6721830016474,"throughput_eps":0,"last_update":"2026-03-21T22:44:33.96531008Z"} +2026/03/21 22:44:38 ───────────────────────────────────────────────── +2026/03/21 22:44:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:44:43 [metric_collector] {"stage_name":"metric_collector","events_processed":16729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3345.8,"last_update":"2026-03-21T22:44:38.869748355Z"} +2026/03/21 22:44:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:44:38.877703806Z"} +2026/03/21 22:44:43 [transform_engine] {"stage_name":"transform_engine","events_processed":557,"events_dropped":0,"avg_latency_ms":282.6721830016474,"throughput_eps":0,"last_update":"2026-03-21T22:44:38.965894897Z"} +2026/03/21 22:44:43 [detection_layer] {"stage_name":"detection_layer","events_processed":557,"events_dropped":0,"avg_latency_ms":17.04373974488806,"throughput_eps":0,"last_update":"2026-03-21T22:44:38.965916528Z"} +2026/03/21 22:44:43 [log_collector] {"stage_name":"log_collector","events_processed":26369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5273.8,"last_update":"2026-03-21T22:44:38.869563631Z"} +2026/03/21 22:44:43 ───────────────────────────────────────────────── +2026/03/21 22:44:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:44:48 [transform_engine] {"stage_name":"transform_engine","events_processed":557,"events_dropped":0,"avg_latency_ms":282.6721830016474,"throughput_eps":0,"last_update":"2026-03-21T22:44:43.965556905Z"} +2026/03/21 22:44:48 [detection_layer] {"stage_name":"detection_layer","events_processed":557,"events_dropped":0,"avg_latency_ms":17.04373974488806,"throughput_eps":0,"last_update":"2026-03-21T22:44:43.96558075Z"} +2026/03/21 22:44:48 [log_collector] {"stage_name":"log_collector","events_processed":26369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5273.8,"last_update":"2026-03-21T22:44:48.869512464Z"} +2026/03/21 22:44:48 [metric_collector] {"stage_name":"metric_collector","events_processed":16734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3346.8,"last_update":"2026-03-21T22:44:43.870025712Z"} +2026/03/21 22:44:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:44:43.878185655Z"} +2026/03/21 22:44:48 ───────────────────────────────────────────────── +2026/03/21 22:44:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:44:53 [metric_collector] {"stage_name":"metric_collector","events_processed":16739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3347.8,"last_update":"2026-03-21T22:44:48.870774232Z"} +2026/03/21 22:44:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:44:48.879896358Z"} +2026/03/21 22:44:53 [transform_engine] {"stage_name":"transform_engine","events_processed":558,"events_dropped":0,"avg_latency_ms":681.247363601318,"throughput_eps":0,"last_update":"2026-03-21T22:44:51.240794852Z"} +2026/03/21 22:44:53 [detection_layer] {"stage_name":"detection_layer","events_processed":557,"events_dropped":0,"avg_latency_ms":17.04373974488806,"throughput_eps":0,"last_update":"2026-03-21T22:44:48.965346286Z"} +2026/03/21 22:44:53 [log_collector] {"stage_name":"log_collector","events_processed":26369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5273.8,"last_update":"2026-03-21T22:44:48.869512464Z"} +2026/03/21 22:44:53 ───────────────────────────────────────────────── +2026/03/21 22:44:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:44:58 [metric_collector] {"stage_name":"metric_collector","events_processed":16744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3348.8,"last_update":"2026-03-21T22:44:53.870894726Z"} +2026/03/21 22:44:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6700,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:44:53.879345737Z"} +2026/03/21 22:44:58 [transform_engine] {"stage_name":"transform_engine","events_processed":558,"events_dropped":0,"avg_latency_ms":681.247363601318,"throughput_eps":0,"last_update":"2026-03-21T22:44:53.965548988Z"} +2026/03/21 22:44:58 [detection_layer] {"stage_name":"detection_layer","events_processed":558,"events_dropped":0,"avg_latency_ms":17.21588199591045,"throughput_eps":0,"last_update":"2026-03-21T22:44:53.965542085Z"} +2026/03/21 22:44:58 [log_collector] {"stage_name":"log_collector","events_processed":26369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5273.8,"last_update":"2026-03-21T22:44:53.870068514Z"} +2026/03/21 22:44:58 ───────────────────────────────────────────────── +2026/03/21 22:45:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:45:03 [transform_engine] {"stage_name":"transform_engine","events_processed":558,"events_dropped":0,"avg_latency_ms":681.247363601318,"throughput_eps":0,"last_update":"2026-03-21T22:44:58.965970509Z"} +2026/03/21 22:45:03 [detection_layer] {"stage_name":"detection_layer","events_processed":558,"events_dropped":0,"avg_latency_ms":17.21588199591045,"throughput_eps":0,"last_update":"2026-03-21T22:44:58.965963395Z"} +2026/03/21 22:45:03 [log_collector] {"stage_name":"log_collector","events_processed":26369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5273.8,"last_update":"2026-03-21T22:44:58.870525641Z"} +2026/03/21 22:45:03 [metric_collector] {"stage_name":"metric_collector","events_processed":16749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3349.8,"last_update":"2026-03-21T22:44:58.870707871Z"} +2026/03/21 22:45:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6702,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:44:58.878771027Z"} +2026/03/21 22:45:03 ───────────────────────────────────────────────── +2026/03/21 22:45:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:45:08 [log_collector] {"stage_name":"log_collector","events_processed":26369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5273.8,"last_update":"2026-03-21T22:45:03.869946463Z"} +2026/03/21 22:45:08 [metric_collector] {"stage_name":"metric_collector","events_processed":16754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3350.8,"last_update":"2026-03-21T22:45:03.870420091Z"} +2026/03/21 22:45:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:45:03.879855827Z"} +2026/03/21 22:45:08 [transform_engine] {"stage_name":"transform_engine","events_processed":558,"events_dropped":0,"avg_latency_ms":681.247363601318,"throughput_eps":0,"last_update":"2026-03-21T22:45:03.965064835Z"} +2026/03/21 22:45:08 [detection_layer] {"stage_name":"detection_layer","events_processed":558,"events_dropped":0,"avg_latency_ms":17.21588199591045,"throughput_eps":0,"last_update":"2026-03-21T22:45:03.966214537Z"} +2026/03/21 22:45:08 ───────────────────────────────────────────────── +2026/03/21 22:45:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:45:13 [log_collector] {"stage_name":"log_collector","events_processed":26369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5273.8,"last_update":"2026-03-21T22:45:08.870327193Z"} +2026/03/21 22:45:13 [metric_collector] {"stage_name":"metric_collector","events_processed":16759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3351.8,"last_update":"2026-03-21T22:45:08.870798907Z"} +2026/03/21 22:45:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:45:08.877782947Z"} +2026/03/21 22:45:13 [transform_engine] {"stage_name":"transform_engine","events_processed":558,"events_dropped":0,"avg_latency_ms":681.247363601318,"throughput_eps":0,"last_update":"2026-03-21T22:45:08.966060824Z"} +2026/03/21 22:45:13 [detection_layer] {"stage_name":"detection_layer","events_processed":558,"events_dropped":0,"avg_latency_ms":17.21588199591045,"throughput_eps":0,"last_update":"2026-03-21T22:45:08.966145226Z"} +2026/03/21 22:45:13 ───────────────────────────────────────────────── +2026/03/21 22:45:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:45:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:45:13.879416054Z"} +2026/03/21 22:45:18 [transform_engine] {"stage_name":"transform_engine","events_processed":558,"events_dropped":0,"avg_latency_ms":681.247363601318,"throughput_eps":0,"last_update":"2026-03-21T22:45:13.965166109Z"} +2026/03/21 22:45:18 [detection_layer] {"stage_name":"detection_layer","events_processed":558,"events_dropped":0,"avg_latency_ms":17.21588199591045,"throughput_eps":0,"last_update":"2026-03-21T22:45:13.965289706Z"} +2026/03/21 22:45:18 [log_collector] {"stage_name":"log_collector","events_processed":26369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5273.8,"last_update":"2026-03-21T22:45:13.870165773Z"} +2026/03/21 22:45:18 [metric_collector] {"stage_name":"metric_collector","events_processed":16764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3352.8,"last_update":"2026-03-21T22:45:13.870880693Z"} +2026/03/21 22:45:18 ───────────────────────────────────────────────── +2026/03/21 22:45:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:45:23 [detection_layer] {"stage_name":"detection_layer","events_processed":558,"events_dropped":0,"avg_latency_ms":17.21588199591045,"throughput_eps":0,"last_update":"2026-03-21T22:45:18.966231078Z"} +2026/03/21 22:45:23 [log_collector] {"stage_name":"log_collector","events_processed":26369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5273.8,"last_update":"2026-03-21T22:45:18.869917738Z"} +2026/03/21 22:45:23 [metric_collector] {"stage_name":"metric_collector","events_processed":16769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3353.8,"last_update":"2026-03-21T22:45:18.870337302Z"} +2026/03/21 22:45:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:45:18.878901057Z"} +2026/03/21 22:45:23 [transform_engine] {"stage_name":"transform_engine","events_processed":558,"events_dropped":0,"avg_latency_ms":681.247363601318,"throughput_eps":0,"last_update":"2026-03-21T22:45:18.966124334Z"} +2026/03/21 22:45:23 ───────────────────────────────────────────────── +2026/03/21 22:45:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:45:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6712,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:45:23.87849722Z"} +2026/03/21 22:45:28 [transform_engine] {"stage_name":"transform_engine","events_processed":559,"events_dropped":0,"avg_latency_ms":559.5109400810544,"throughput_eps":0,"last_update":"2026-03-21T22:45:23.965669058Z"} +2026/03/21 22:45:28 [detection_layer] {"stage_name":"detection_layer","events_processed":559,"events_dropped":0,"avg_latency_ms":17.75952939672836,"throughput_eps":0,"last_update":"2026-03-21T22:45:23.965714565Z"} +2026/03/21 22:45:28 [log_collector] {"stage_name":"log_collector","events_processed":26369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5273.8,"last_update":"2026-03-21T22:45:23.869575378Z"} +2026/03/21 22:45:28 [metric_collector] {"stage_name":"metric_collector","events_processed":16774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3354.8,"last_update":"2026-03-21T22:45:23.869897065Z"} +2026/03/21 22:45:28 ───────────────────────────────────────────────── +2026/03/21 22:45:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:45:33 [detection_layer] {"stage_name":"detection_layer","events_processed":559,"events_dropped":0,"avg_latency_ms":17.75952939672836,"throughput_eps":0,"last_update":"2026-03-21T22:45:28.966200822Z"} +2026/03/21 22:45:33 [log_collector] {"stage_name":"log_collector","events_processed":26369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5273.8,"last_update":"2026-03-21T22:45:28.869579932Z"} +2026/03/21 22:45:33 [metric_collector] {"stage_name":"metric_collector","events_processed":16779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3355.8,"last_update":"2026-03-21T22:45:28.869940793Z"} +2026/03/21 22:45:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:45:28.878831625Z"} +2026/03/21 22:45:33 [transform_engine] {"stage_name":"transform_engine","events_processed":559,"events_dropped":0,"avg_latency_ms":559.5109400810544,"throughput_eps":0,"last_update":"2026-03-21T22:45:28.966136268Z"} +2026/03/21 22:45:33 ───────────────────────────────────────────────── +Saved state: 14 clusters, 26370 messages, reason: none +2026/03/21 22:45:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:45:38 [log_collector] {"stage_name":"log_collector","events_processed":26369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5273.8,"last_update":"2026-03-21T22:45:33.869422495Z"} +2026/03/21 22:45:38 [metric_collector] {"stage_name":"metric_collector","events_processed":16784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3356.8,"last_update":"2026-03-21T22:45:33.869789138Z"} +2026/03/21 22:45:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:45:33.876411284Z"} +2026/03/21 22:45:38 [transform_engine] {"stage_name":"transform_engine","events_processed":559,"events_dropped":0,"avg_latency_ms":559.5109400810544,"throughput_eps":0,"last_update":"2026-03-21T22:45:33.965669249Z"} +2026/03/21 22:45:38 [detection_layer] {"stage_name":"detection_layer","events_processed":559,"events_dropped":0,"avg_latency_ms":17.75952939672836,"throughput_eps":0,"last_update":"2026-03-21T22:45:33.965689367Z"} +2026/03/21 22:45:38 ───────────────────────────────────────────────── +2026/03/21 22:45:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:45:43 [log_collector] {"stage_name":"log_collector","events_processed":26394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5278.8,"last_update":"2026-03-21T22:45:38.870150985Z"} +2026/03/21 22:45:43 [metric_collector] {"stage_name":"metric_collector","events_processed":16789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3357.8,"last_update":"2026-03-21T22:45:38.870856997Z"} +2026/03/21 22:45:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6718,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:45:38.876623565Z"} +2026/03/21 22:45:43 [transform_engine] {"stage_name":"transform_engine","events_processed":559,"events_dropped":0,"avg_latency_ms":559.5109400810544,"throughput_eps":0,"last_update":"2026-03-21T22:45:38.965807818Z"} +2026/03/21 22:45:43 [detection_layer] {"stage_name":"detection_layer","events_processed":559,"events_dropped":0,"avg_latency_ms":17.75952939672836,"throughput_eps":0,"last_update":"2026-03-21T22:45:38.965834249Z"} +2026/03/21 22:45:43 ───────────────────────────────────────────────── +2026/03/21 22:45:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:45:48 [log_collector] {"stage_name":"log_collector","events_processed":26394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5278.8,"last_update":"2026-03-21T22:45:43.869575616Z"} +2026/03/21 22:45:48 [metric_collector] {"stage_name":"metric_collector","events_processed":16794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3358.8,"last_update":"2026-03-21T22:45:43.869928071Z"} +2026/03/21 22:45:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:45:43.878526112Z"} +2026/03/21 22:45:48 [transform_engine] {"stage_name":"transform_engine","events_processed":559,"events_dropped":0,"avg_latency_ms":559.5109400810544,"throughput_eps":0,"last_update":"2026-03-21T22:45:43.965880791Z"} +2026/03/21 22:45:48 [detection_layer] {"stage_name":"detection_layer","events_processed":559,"events_dropped":0,"avg_latency_ms":17.75952939672836,"throughput_eps":0,"last_update":"2026-03-21T22:45:43.965827118Z"} +2026/03/21 22:45:48 ───────────────────────────────────────────────── +2026/03/21 22:45:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:45:53 [log_collector] {"stage_name":"log_collector","events_processed":26394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5278.8,"last_update":"2026-03-21T22:45:48.870128206Z"} +2026/03/21 22:45:53 [metric_collector] {"stage_name":"metric_collector","events_processed":16799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3359.8,"last_update":"2026-03-21T22:45:48.870620359Z"} +2026/03/21 22:45:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6722,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:45:48.879707968Z"} +2026/03/21 22:45:53 [transform_engine] {"stage_name":"transform_engine","events_processed":559,"events_dropped":0,"avg_latency_ms":559.5109400810544,"throughput_eps":0,"last_update":"2026-03-21T22:45:48.9659682Z"} +2026/03/21 22:45:53 [detection_layer] {"stage_name":"detection_layer","events_processed":559,"events_dropped":0,"avg_latency_ms":17.75952939672836,"throughput_eps":0,"last_update":"2026-03-21T22:45:48.966003938Z"} +2026/03/21 22:45:53 ───────────────────────────────────────────────── +2026/03/21 22:45:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:45:58 [log_collector] {"stage_name":"log_collector","events_processed":26394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5278.8,"last_update":"2026-03-21T22:45:53.869559386Z"} +2026/03/21 22:45:58 [metric_collector] {"stage_name":"metric_collector","events_processed":16804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3360.8,"last_update":"2026-03-21T22:45:53.869897213Z"} +2026/03/21 22:45:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:45:53.877812507Z"} +2026/03/21 22:45:58 [transform_engine] {"stage_name":"transform_engine","events_processed":560,"events_dropped":0,"avg_latency_ms":480.29299246484356,"throughput_eps":0,"last_update":"2026-03-21T22:45:53.966398453Z"} +2026/03/21 22:45:58 [detection_layer] {"stage_name":"detection_layer","events_processed":560,"events_dropped":0,"avg_latency_ms":18.03372131738269,"throughput_eps":0,"last_update":"2026-03-21T22:45:53.966256332Z"} +2026/03/21 22:45:58 ───────────────────────────────────────────────── +2026/03/21 22:46:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:46:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:45:58.879228989Z"} +2026/03/21 22:46:03 [transform_engine] {"stage_name":"transform_engine","events_processed":560,"events_dropped":0,"avg_latency_ms":480.29299246484356,"throughput_eps":0,"last_update":"2026-03-21T22:45:58.965518818Z"} +2026/03/21 22:46:03 [detection_layer] {"stage_name":"detection_layer","events_processed":560,"events_dropped":0,"avg_latency_ms":18.03372131738269,"throughput_eps":0,"last_update":"2026-03-21T22:45:58.965415539Z"} +2026/03/21 22:46:03 [log_collector] {"stage_name":"log_collector","events_processed":26394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5278.8,"last_update":"2026-03-21T22:45:58.869453622Z"} +2026/03/21 22:46:03 [metric_collector] {"stage_name":"metric_collector","events_processed":16809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3361.8,"last_update":"2026-03-21T22:45:58.869795718Z"} +2026/03/21 22:46:03 ───────────────────────────────────────────────── +2026/03/21 22:46:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:46:08 [transform_engine] {"stage_name":"transform_engine","events_processed":560,"events_dropped":0,"avg_latency_ms":480.29299246484356,"throughput_eps":0,"last_update":"2026-03-21T22:46:03.966183149Z"} +2026/03/21 22:46:08 [detection_layer] {"stage_name":"detection_layer","events_processed":560,"events_dropped":0,"avg_latency_ms":18.03372131738269,"throughput_eps":0,"last_update":"2026-03-21T22:46:03.965950513Z"} +2026/03/21 22:46:08 [log_collector] {"stage_name":"log_collector","events_processed":26394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5278.8,"last_update":"2026-03-21T22:46:03.869487607Z"} +2026/03/21 22:46:08 [metric_collector] {"stage_name":"metric_collector","events_processed":16814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3362.8,"last_update":"2026-03-21T22:46:03.869842106Z"} +2026/03/21 22:46:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6728,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:46:03.878545349Z"} +2026/03/21 22:46:08 ───────────────────────────────────────────────── +2026/03/21 22:46:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:46:13 [log_collector] {"stage_name":"log_collector","events_processed":26394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5278.8,"last_update":"2026-03-21T22:46:08.869465952Z"} +2026/03/21 22:46:13 [metric_collector] {"stage_name":"metric_collector","events_processed":16819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3363.8,"last_update":"2026-03-21T22:46:08.87000233Z"} +2026/03/21 22:46:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6730,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:46:08.876991378Z"} +2026/03/21 22:46:13 [transform_engine] {"stage_name":"transform_engine","events_processed":560,"events_dropped":0,"avg_latency_ms":480.29299246484356,"throughput_eps":0,"last_update":"2026-03-21T22:46:08.965202147Z"} +2026/03/21 22:46:13 [detection_layer] {"stage_name":"detection_layer","events_processed":560,"events_dropped":0,"avg_latency_ms":18.03372131738269,"throughput_eps":0,"last_update":"2026-03-21T22:46:08.965289434Z"} +2026/03/21 22:46:13 ───────────────────────────────────────────────── +2026/03/21 22:46:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:46:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:46:13.878584826Z"} +2026/03/21 22:46:18 [transform_engine] {"stage_name":"transform_engine","events_processed":560,"events_dropped":0,"avg_latency_ms":480.29299246484356,"throughput_eps":0,"last_update":"2026-03-21T22:46:13.965784898Z"} +2026/03/21 22:46:18 [detection_layer] {"stage_name":"detection_layer","events_processed":560,"events_dropped":0,"avg_latency_ms":18.03372131738269,"throughput_eps":0,"last_update":"2026-03-21T22:46:13.965884038Z"} +2026/03/21 22:46:18 [log_collector] {"stage_name":"log_collector","events_processed":26394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5278.8,"last_update":"2026-03-21T22:46:13.869416453Z"} +2026/03/21 22:46:18 [metric_collector] {"stage_name":"metric_collector","events_processed":16824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3364.8,"last_update":"2026-03-21T22:46:13.869824294Z"} +2026/03/21 22:46:18 ───────────────────────────────────────────────── +2026/03/21 22:46:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:46:23 [transform_engine] {"stage_name":"transform_engine","events_processed":560,"events_dropped":0,"avg_latency_ms":480.29299246484356,"throughput_eps":0,"last_update":"2026-03-21T22:46:18.965414655Z"} +2026/03/21 22:46:23 [detection_layer] {"stage_name":"detection_layer","events_processed":560,"events_dropped":0,"avg_latency_ms":18.03372131738269,"throughput_eps":0,"last_update":"2026-03-21T22:46:18.965445694Z"} +2026/03/21 22:46:23 [log_collector] {"stage_name":"log_collector","events_processed":26394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5278.8,"last_update":"2026-03-21T22:46:18.870195532Z"} +2026/03/21 22:46:23 [metric_collector] {"stage_name":"metric_collector","events_processed":16829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3365.8,"last_update":"2026-03-21T22:46:18.870482761Z"} +2026/03/21 22:46:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:46:18.879133674Z"} +2026/03/21 22:46:23 ───────────────────────────────────────────────── +2026/03/21 22:46:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:46:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6736,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:46:23.875545774Z"} +2026/03/21 22:46:28 [transform_engine] {"stage_name":"transform_engine","events_processed":561,"events_dropped":0,"avg_latency_ms":398.63010017187486,"throughput_eps":0,"last_update":"2026-03-21T22:46:23.965687641Z"} +2026/03/21 22:46:28 [detection_layer] {"stage_name":"detection_layer","events_processed":561,"events_dropped":0,"avg_latency_ms":18.565335053906153,"throughput_eps":0,"last_update":"2026-03-21T22:46:23.965713Z"} +2026/03/21 22:46:28 [log_collector] {"stage_name":"log_collector","events_processed":26399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5279.8,"last_update":"2026-03-21T22:46:23.869415831Z"} +2026/03/21 22:46:28 [metric_collector] {"stage_name":"metric_collector","events_processed":16834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3366.8,"last_update":"2026-03-21T22:46:23.869675037Z"} +2026/03/21 22:46:28 ───────────────────────────────────────────────── +2026/03/21 22:46:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:46:33 [log_collector] {"stage_name":"log_collector","events_processed":26410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5282,"last_update":"2026-03-21T22:46:28.869445321Z"} +2026/03/21 22:46:33 [metric_collector] {"stage_name":"metric_collector","events_processed":16839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3367.8,"last_update":"2026-03-21T22:46:28.870115214Z"} +2026/03/21 22:46:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6738,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:46:28.878345031Z"} +2026/03/21 22:46:33 [transform_engine] {"stage_name":"transform_engine","events_processed":561,"events_dropped":0,"avg_latency_ms":398.63010017187486,"throughput_eps":0,"last_update":"2026-03-21T22:46:28.96569526Z"} +2026/03/21 22:46:33 [detection_layer] {"stage_name":"detection_layer","events_processed":561,"events_dropped":0,"avg_latency_ms":18.565335053906153,"throughput_eps":0,"last_update":"2026-03-21T22:46:28.96564866Z"} +2026/03/21 22:46:33 ───────────────────────────────────────────────── +2026/03/21 22:46:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:46:38 [detection_layer] {"stage_name":"detection_layer","events_processed":561,"events_dropped":0,"avg_latency_ms":18.565335053906153,"throughput_eps":0,"last_update":"2026-03-21T22:46:33.966237193Z"} +2026/03/21 22:46:38 [log_collector] {"stage_name":"log_collector","events_processed":26410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5282,"last_update":"2026-03-21T22:46:33.870081272Z"} +2026/03/21 22:46:38 [metric_collector] {"stage_name":"metric_collector","events_processed":16844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3368.8,"last_update":"2026-03-21T22:46:33.870431354Z"} +2026/03/21 22:46:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6740,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:46:33.878957207Z"} +2026/03/21 22:46:38 [transform_engine] {"stage_name":"transform_engine","events_processed":561,"events_dropped":0,"avg_latency_ms":398.63010017187486,"throughput_eps":0,"last_update":"2026-03-21T22:46:33.965064897Z"} +2026/03/21 22:46:38 ───────────────────────────────────────────────── +2026/03/21 22:46:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:46:43 [log_collector] {"stage_name":"log_collector","events_processed":26410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5282,"last_update":"2026-03-21T22:46:38.870431084Z"} +2026/03/21 22:46:43 [metric_collector] {"stage_name":"metric_collector","events_processed":16849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3369.8,"last_update":"2026-03-21T22:46:38.870683348Z"} +2026/03/21 22:46:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:46:38.879196177Z"} +2026/03/21 22:46:43 [transform_engine] {"stage_name":"transform_engine","events_processed":561,"events_dropped":0,"avg_latency_ms":398.63010017187486,"throughput_eps":0,"last_update":"2026-03-21T22:46:38.965446919Z"} +2026/03/21 22:46:43 [detection_layer] {"stage_name":"detection_layer","events_processed":561,"events_dropped":0,"avg_latency_ms":18.565335053906153,"throughput_eps":0,"last_update":"2026-03-21T22:46:38.96533727Z"} +2026/03/21 22:46:43 ───────────────────────────────────────────────── +2026/03/21 22:46:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:46:48 [metric_collector] {"stage_name":"metric_collector","events_processed":16854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3370.8,"last_update":"2026-03-21T22:46:43.870076787Z"} +2026/03/21 22:46:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:46:43.878778476Z"} +2026/03/21 22:46:48 [transform_engine] {"stage_name":"transform_engine","events_processed":561,"events_dropped":0,"avg_latency_ms":398.63010017187486,"throughput_eps":0,"last_update":"2026-03-21T22:46:43.966236162Z"} +2026/03/21 22:46:48 [detection_layer] {"stage_name":"detection_layer","events_processed":561,"events_dropped":0,"avg_latency_ms":18.565335053906153,"throughput_eps":0,"last_update":"2026-03-21T22:46:43.966087247Z"} +2026/03/21 22:46:48 [log_collector] {"stage_name":"log_collector","events_processed":26410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5282,"last_update":"2026-03-21T22:46:43.86978134Z"} +2026/03/21 22:46:48 ───────────────────────────────────────────────── +2026/03/21 22:46:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:46:53 [log_collector] {"stage_name":"log_collector","events_processed":26410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5282,"last_update":"2026-03-21T22:46:48.869955143Z"} +2026/03/21 22:46:53 [metric_collector] {"stage_name":"metric_collector","events_processed":16864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3372.8,"last_update":"2026-03-21T22:46:53.87029333Z"} +2026/03/21 22:46:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:46:48.879472446Z"} +2026/03/21 22:46:53 [transform_engine] {"stage_name":"transform_engine","events_processed":561,"events_dropped":0,"avg_latency_ms":398.63010017187486,"throughput_eps":0,"last_update":"2026-03-21T22:46:48.965190599Z"} +2026/03/21 22:46:53 [detection_layer] {"stage_name":"detection_layer","events_processed":561,"events_dropped":0,"avg_latency_ms":18.565335053906153,"throughput_eps":0,"last_update":"2026-03-21T22:46:48.965289849Z"} +2026/03/21 22:46:53 ───────────────────────────────────────────────── +2026/03/21 22:46:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:46:58 [detection_layer] {"stage_name":"detection_layer","events_processed":562,"events_dropped":0,"avg_latency_ms":19.241801443124924,"throughput_eps":0,"last_update":"2026-03-21T22:46:53.966107746Z"} +2026/03/21 22:46:58 [log_collector] {"stage_name":"log_collector","events_processed":26410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5282,"last_update":"2026-03-21T22:46:53.870323297Z"} +2026/03/21 22:46:58 [metric_collector] {"stage_name":"metric_collector","events_processed":16864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3372.8,"last_update":"2026-03-21T22:46:53.87029333Z"} +2026/03/21 22:46:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:46:53.879639395Z"} +2026/03/21 22:46:58 [transform_engine] {"stage_name":"transform_engine","events_processed":562,"events_dropped":0,"avg_latency_ms":350.8343679374999,"throughput_eps":0,"last_update":"2026-03-21T22:46:53.965955483Z"} +2026/03/21 22:46:58 ───────────────────────────────────────────────── +2026/03/21 22:47:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:47:03 [transform_engine] {"stage_name":"transform_engine","events_processed":562,"events_dropped":0,"avg_latency_ms":350.8343679374999,"throughput_eps":0,"last_update":"2026-03-21T22:46:58.965759857Z"} +2026/03/21 22:47:03 [detection_layer] {"stage_name":"detection_layer","events_processed":562,"events_dropped":0,"avg_latency_ms":19.241801443124924,"throughput_eps":0,"last_update":"2026-03-21T22:46:58.965656199Z"} +2026/03/21 22:47:03 [log_collector] {"stage_name":"log_collector","events_processed":26410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5282,"last_update":"2026-03-21T22:46:58.870051887Z"} +2026/03/21 22:47:03 [metric_collector] {"stage_name":"metric_collector","events_processed":16869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3373.8,"last_update":"2026-03-21T22:46:58.870536195Z"} +2026/03/21 22:47:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6750,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:46:58.878443864Z"} +2026/03/21 22:47:03 ───────────────────────────────────────────────── +2026/03/21 22:47:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:47:08 [transform_engine] {"stage_name":"transform_engine","events_processed":562,"events_dropped":0,"avg_latency_ms":350.8343679374999,"throughput_eps":0,"last_update":"2026-03-21T22:47:03.965724036Z"} +2026/03/21 22:47:08 [detection_layer] {"stage_name":"detection_layer","events_processed":562,"events_dropped":0,"avg_latency_ms":19.241801443124924,"throughput_eps":0,"last_update":"2026-03-21T22:47:03.965608465Z"} +2026/03/21 22:47:08 [log_collector] {"stage_name":"log_collector","events_processed":26410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5282,"last_update":"2026-03-21T22:47:03.869562937Z"} +2026/03/21 22:47:08 [metric_collector] {"stage_name":"metric_collector","events_processed":16874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3374.8,"last_update":"2026-03-21T22:47:03.869986148Z"} +2026/03/21 22:47:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6752,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:47:03.879256798Z"} +2026/03/21 22:47:08 ───────────────────────────────────────────────── +2026/03/21 22:47:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:47:13 [log_collector] {"stage_name":"log_collector","events_processed":26410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5282,"last_update":"2026-03-21T22:47:08.870026131Z"} +2026/03/21 22:47:13 [metric_collector] {"stage_name":"metric_collector","events_processed":16879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3375.8,"last_update":"2026-03-21T22:47:08.870614308Z"} +2026/03/21 22:47:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:47:08.878962501Z"} +2026/03/21 22:47:13 [transform_engine] {"stage_name":"transform_engine","events_processed":562,"events_dropped":0,"avg_latency_ms":350.8343679374999,"throughput_eps":0,"last_update":"2026-03-21T22:47:08.965532145Z"} +2026/03/21 22:47:13 [detection_layer] {"stage_name":"detection_layer","events_processed":562,"events_dropped":0,"avg_latency_ms":19.241801443124924,"throughput_eps":0,"last_update":"2026-03-21T22:47:08.965460557Z"} +2026/03/21 22:47:13 ───────────────────────────────────────────────── +2026/03/21 22:47:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:47:18 [log_collector] {"stage_name":"log_collector","events_processed":26410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5282,"last_update":"2026-03-21T22:47:13.869667208Z"} +2026/03/21 22:47:18 [metric_collector] {"stage_name":"metric_collector","events_processed":16884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3376.8,"last_update":"2026-03-21T22:47:13.87008069Z"} +2026/03/21 22:47:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:47:13.878684714Z"} +2026/03/21 22:47:18 [transform_engine] {"stage_name":"transform_engine","events_processed":562,"events_dropped":0,"avg_latency_ms":350.8343679374999,"throughput_eps":0,"last_update":"2026-03-21T22:47:13.965963185Z"} +2026/03/21 22:47:18 [detection_layer] {"stage_name":"detection_layer","events_processed":562,"events_dropped":0,"avg_latency_ms":19.241801443124924,"throughput_eps":0,"last_update":"2026-03-21T22:47:13.966008792Z"} +2026/03/21 22:47:18 ───────────────────────────────────────────────── +2026/03/21 22:47:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:47:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6758,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:47:18.878514972Z"} +2026/03/21 22:47:23 [transform_engine] {"stage_name":"transform_engine","events_processed":563,"events_dropped":0,"avg_latency_ms":294.49679754999994,"throughput_eps":0,"last_update":"2026-03-21T22:47:19.034880756Z"} +2026/03/21 22:47:23 [detection_layer] {"stage_name":"detection_layer","events_processed":562,"events_dropped":0,"avg_latency_ms":19.241801443124924,"throughput_eps":0,"last_update":"2026-03-21T22:47:18.965718831Z"} +2026/03/21 22:47:23 [log_collector] {"stage_name":"log_collector","events_processed":26410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5282,"last_update":"2026-03-21T22:47:18.869564435Z"} +2026/03/21 22:47:23 [metric_collector] {"stage_name":"metric_collector","events_processed":16889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3377.8,"last_update":"2026-03-21T22:47:18.869841006Z"} +2026/03/21 22:47:23 ───────────────────────────────────────────────── +Saved state: 14 clusters, 26411 messages, reason: none +2026/03/21 22:47:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:47:28 [detection_layer] {"stage_name":"detection_layer","events_processed":563,"events_dropped":0,"avg_latency_ms":19.682730354499938,"throughput_eps":0,"last_update":"2026-03-21T22:47:23.965682386Z"} +2026/03/21 22:47:28 [log_collector] {"stage_name":"log_collector","events_processed":26410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5282,"last_update":"2026-03-21T22:47:23.86941828Z"} +2026/03/21 22:47:28 [metric_collector] {"stage_name":"metric_collector","events_processed":16894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3378.8,"last_update":"2026-03-21T22:47:23.869769382Z"} +2026/03/21 22:47:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:47:23.879501336Z"} +2026/03/21 22:47:28 [transform_engine] {"stage_name":"transform_engine","events_processed":563,"events_dropped":0,"avg_latency_ms":294.49679754999994,"throughput_eps":0,"last_update":"2026-03-21T22:47:23.965706792Z"} +2026/03/21 22:47:28 ───────────────────────────────────────────────── +2026/03/21 22:47:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:47:33 [transform_engine] {"stage_name":"transform_engine","events_processed":563,"events_dropped":0,"avg_latency_ms":294.49679754999994,"throughput_eps":0,"last_update":"2026-03-21T22:47:28.96594439Z"} +2026/03/21 22:47:33 [detection_layer] {"stage_name":"detection_layer","events_processed":563,"events_dropped":0,"avg_latency_ms":19.682730354499938,"throughput_eps":0,"last_update":"2026-03-21T22:47:28.965969288Z"} +2026/03/21 22:47:33 [log_collector] {"stage_name":"log_collector","events_processed":26415,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5283,"last_update":"2026-03-21T22:47:28.869530126Z"} +2026/03/21 22:47:33 [metric_collector] {"stage_name":"metric_collector","events_processed":16899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3379.8,"last_update":"2026-03-21T22:47:28.869889384Z"} +2026/03/21 22:47:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:47:28.875761844Z"} +2026/03/21 22:47:33 ───────────────────────────────────────────────── +2026/03/21 22:47:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:47:38 [log_collector] {"stage_name":"log_collector","events_processed":26415,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5283,"last_update":"2026-03-21T22:47:33.869788784Z"} +2026/03/21 22:47:38 [metric_collector] {"stage_name":"metric_collector","events_processed":16904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3380.8,"last_update":"2026-03-21T22:47:33.869972395Z"} +2026/03/21 22:47:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:47:33.878454355Z"} +2026/03/21 22:47:38 [transform_engine] {"stage_name":"transform_engine","events_processed":563,"events_dropped":0,"avg_latency_ms":294.49679754999994,"throughput_eps":0,"last_update":"2026-03-21T22:47:33.965477447Z"} +2026/03/21 22:47:38 [detection_layer] {"stage_name":"detection_layer","events_processed":563,"events_dropped":0,"avg_latency_ms":19.682730354499938,"throughput_eps":0,"last_update":"2026-03-21T22:47:33.965457999Z"} +2026/03/21 22:47:38 ───────────────────────────────────────────────── +2026/03/21 22:47:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:47:43 [detection_layer] {"stage_name":"detection_layer","events_processed":563,"events_dropped":0,"avg_latency_ms":19.682730354499938,"throughput_eps":0,"last_update":"2026-03-21T22:47:38.965455286Z"} +2026/03/21 22:47:43 [log_collector] {"stage_name":"log_collector","events_processed":26415,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5283,"last_update":"2026-03-21T22:47:38.869407144Z"} +2026/03/21 22:47:43 [metric_collector] {"stage_name":"metric_collector","events_processed":16909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3381.8,"last_update":"2026-03-21T22:47:38.870072549Z"} +2026/03/21 22:47:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6766,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:47:38.879261602Z"} +2026/03/21 22:47:43 [transform_engine] {"stage_name":"transform_engine","events_processed":563,"events_dropped":0,"avg_latency_ms":294.49679754999994,"throughput_eps":0,"last_update":"2026-03-21T22:47:38.965435278Z"} +2026/03/21 22:47:43 ───────────────────────────────────────────────── +2026/03/21 22:47:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:47:48 [detection_layer] {"stage_name":"detection_layer","events_processed":563,"events_dropped":0,"avg_latency_ms":19.682730354499938,"throughput_eps":0,"last_update":"2026-03-21T22:47:43.966290607Z"} +2026/03/21 22:47:48 [log_collector] {"stage_name":"log_collector","events_processed":26415,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5283,"last_update":"2026-03-21T22:47:43.869720816Z"} +2026/03/21 22:47:48 [metric_collector] {"stage_name":"metric_collector","events_processed":16914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3382.8,"last_update":"2026-03-21T22:47:43.870199954Z"} +2026/03/21 22:47:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6768,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:47:43.8779651Z"} +2026/03/21 22:47:48 [transform_engine] {"stage_name":"transform_engine","events_processed":563,"events_dropped":0,"avg_latency_ms":294.49679754999994,"throughput_eps":0,"last_update":"2026-03-21T22:47:43.96515931Z"} +2026/03/21 22:47:48 ───────────────────────────────────────────────── +2026/03/21 22:47:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:47:53 [log_collector] {"stage_name":"log_collector","events_processed":26415,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5283,"last_update":"2026-03-21T22:47:48.869984531Z"} +2026/03/21 22:47:53 [metric_collector] {"stage_name":"metric_collector","events_processed":16919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3383.8,"last_update":"2026-03-21T22:47:48.870476163Z"} +2026/03/21 22:47:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6770,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:47:48.879163144Z"} +2026/03/21 22:47:53 [transform_engine] {"stage_name":"transform_engine","events_processed":564,"events_dropped":0,"avg_latency_ms":259.02538763999996,"throughput_eps":0,"last_update":"2026-03-21T22:47:49.082487318Z"} +2026/03/21 22:47:53 [detection_layer] {"stage_name":"detection_layer","events_processed":563,"events_dropped":0,"avg_latency_ms":19.682730354499938,"throughput_eps":0,"last_update":"2026-03-21T22:47:48.965332531Z"} +2026/03/21 22:47:53 ───────────────────────────────────────────────── +2026/03/21 22:47:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:47:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:47:53.878525723Z"} +2026/03/21 22:47:58 [transform_engine] {"stage_name":"transform_engine","events_processed":564,"events_dropped":0,"avg_latency_ms":259.02538763999996,"throughput_eps":0,"last_update":"2026-03-21T22:47:53.965737727Z"} +2026/03/21 22:47:58 [detection_layer] {"stage_name":"detection_layer","events_processed":564,"events_dropped":0,"avg_latency_ms":18.880148083599952,"throughput_eps":0,"last_update":"2026-03-21T22:47:53.96572861Z"} +2026/03/21 22:47:58 [log_collector] {"stage_name":"log_collector","events_processed":26415,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5283,"last_update":"2026-03-21T22:47:53.869509721Z"} +2026/03/21 22:47:58 [metric_collector] {"stage_name":"metric_collector","events_processed":16923,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3384.6,"last_update":"2026-03-21T22:47:53.869562822Z"} +2026/03/21 22:47:58 ───────────────────────────────────────────────── +2026/03/21 22:48:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:48:03 [log_collector] {"stage_name":"log_collector","events_processed":26415,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5283,"last_update":"2026-03-21T22:47:58.869936616Z"} +2026/03/21 22:48:03 [metric_collector] {"stage_name":"metric_collector","events_processed":16929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3385.8,"last_update":"2026-03-21T22:47:58.870244235Z"} +2026/03/21 22:48:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:47:58.879153623Z"} +2026/03/21 22:48:03 [transform_engine] {"stage_name":"transform_engine","events_processed":564,"events_dropped":0,"avg_latency_ms":259.02538763999996,"throughput_eps":0,"last_update":"2026-03-21T22:47:58.965372275Z"} +2026/03/21 22:48:03 [detection_layer] {"stage_name":"detection_layer","events_processed":564,"events_dropped":0,"avg_latency_ms":18.880148083599952,"throughput_eps":0,"last_update":"2026-03-21T22:47:58.965365031Z"} +2026/03/21 22:48:03 ───────────────────────────────────────────────── +2026/03/21 22:48:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:48:08 [log_collector] {"stage_name":"log_collector","events_processed":26415,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5283,"last_update":"2026-03-21T22:48:03.869400196Z"} +2026/03/21 22:48:08 [metric_collector] {"stage_name":"metric_collector","events_processed":16934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3386.8,"last_update":"2026-03-21T22:48:03.86983031Z"} +2026/03/21 22:48:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:48:03.87784842Z"} +2026/03/21 22:48:08 [transform_engine] {"stage_name":"transform_engine","events_processed":564,"events_dropped":0,"avg_latency_ms":259.02538763999996,"throughput_eps":0,"last_update":"2026-03-21T22:48:03.966050992Z"} +2026/03/21 22:48:08 [detection_layer] {"stage_name":"detection_layer","events_processed":564,"events_dropped":0,"avg_latency_ms":18.880148083599952,"throughput_eps":0,"last_update":"2026-03-21T22:48:03.966038328Z"} +2026/03/21 22:48:08 ───────────────────────────────────────────────── +2026/03/21 22:48:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:48:13 [log_collector] {"stage_name":"log_collector","events_processed":26415,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5283,"last_update":"2026-03-21T22:48:08.870091236Z"} +2026/03/21 22:48:13 [metric_collector] {"stage_name":"metric_collector","events_processed":16939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3387.8,"last_update":"2026-03-21T22:48:08.870579131Z"} +2026/03/21 22:48:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:48:08.878181444Z"} +2026/03/21 22:48:13 [transform_engine] {"stage_name":"transform_engine","events_processed":564,"events_dropped":0,"avg_latency_ms":259.02538763999996,"throughput_eps":0,"last_update":"2026-03-21T22:48:08.965376497Z"} +2026/03/21 22:48:13 [detection_layer] {"stage_name":"detection_layer","events_processed":564,"events_dropped":0,"avg_latency_ms":18.880148083599952,"throughput_eps":0,"last_update":"2026-03-21T22:48:08.965369454Z"} +2026/03/21 22:48:13 ───────────────────────────────────────────────── +2026/03/21 22:48:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:48:18 [log_collector] {"stage_name":"log_collector","events_processed":26415,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5283,"last_update":"2026-03-21T22:48:13.869670817Z"} +2026/03/21 22:48:18 [metric_collector] {"stage_name":"metric_collector","events_processed":16944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3388.8,"last_update":"2026-03-21T22:48:13.869953238Z"} +2026/03/21 22:48:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6780,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:48:13.878866473Z"} +2026/03/21 22:48:18 [transform_engine] {"stage_name":"transform_engine","events_processed":564,"events_dropped":0,"avg_latency_ms":259.02538763999996,"throughput_eps":0,"last_update":"2026-03-21T22:48:13.966083017Z"} +2026/03/21 22:48:18 [detection_layer] {"stage_name":"detection_layer","events_processed":564,"events_dropped":0,"avg_latency_ms":18.880148083599952,"throughput_eps":0,"last_update":"2026-03-21T22:48:13.966070673Z"} +2026/03/21 22:48:18 ───────────────────────────────────────────────── +2026/03/21 22:48:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:48:23 [metric_collector] {"stage_name":"metric_collector","events_processed":16949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3389.8,"last_update":"2026-03-21T22:48:18.870438132Z"} +2026/03/21 22:48:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6782,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:48:18.876104969Z"} +2026/03/21 22:48:23 [transform_engine] {"stage_name":"transform_engine","events_processed":565,"events_dropped":0,"avg_latency_ms":218.71975971199998,"throughput_eps":0,"last_update":"2026-03-21T22:48:19.022801038Z"} +2026/03/21 22:48:23 [detection_layer] {"stage_name":"detection_layer","events_processed":564,"events_dropped":0,"avg_latency_ms":18.880148083599952,"throughput_eps":0,"last_update":"2026-03-21T22:48:18.965292166Z"} +2026/03/21 22:48:23 [log_collector] {"stage_name":"log_collector","events_processed":26415,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5283,"last_update":"2026-03-21T22:48:18.870111396Z"} +2026/03/21 22:48:23 ───────────────────────────────────────────────── +Saved state: 15 clusters, 26416 messages, reason: cluster_created +2026/03/21 22:48:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:48:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:48:23.877438427Z"} +2026/03/21 22:48:28 [transform_engine] {"stage_name":"transform_engine","events_processed":565,"events_dropped":0,"avg_latency_ms":218.71975971199998,"throughput_eps":0,"last_update":"2026-03-21T22:48:23.965117145Z"} +2026/03/21 22:48:28 [detection_layer] {"stage_name":"detection_layer","events_processed":565,"events_dropped":0,"avg_latency_ms":17.44865806687996,"throughput_eps":0,"last_update":"2026-03-21T22:48:23.966477181Z"} +2026/03/21 22:48:28 [log_collector] {"stage_name":"log_collector","events_processed":26415,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5283,"last_update":"2026-03-21T22:48:23.87020547Z"} +2026/03/21 22:48:28 [metric_collector] {"stage_name":"metric_collector","events_processed":16954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3390.8,"last_update":"2026-03-21T22:48:23.870657426Z"} +2026/03/21 22:48:28 ───────────────────────────────────────────────── +2026/03/21 22:48:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:48:33 [log_collector] {"stage_name":"log_collector","events_processed":26416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5283.2,"last_update":"2026-03-21T22:48:28.870113397Z"} +2026/03/21 22:48:33 [metric_collector] {"stage_name":"metric_collector","events_processed":16959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3391.8,"last_update":"2026-03-21T22:48:28.870555695Z"} +2026/03/21 22:48:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:48:28.877913019Z"} +2026/03/21 22:48:33 [transform_engine] {"stage_name":"transform_engine","events_processed":565,"events_dropped":0,"avg_latency_ms":218.71975971199998,"throughput_eps":0,"last_update":"2026-03-21T22:48:28.965769248Z"} +2026/03/21 22:48:33 [detection_layer] {"stage_name":"detection_layer","events_processed":565,"events_dropped":0,"avg_latency_ms":17.44865806687996,"throughput_eps":0,"last_update":"2026-03-21T22:48:28.965756794Z"} +2026/03/21 22:48:33 ───────────────────────────────────────────────── +2026/03/21 22:48:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:48:38 [detection_layer] {"stage_name":"detection_layer","events_processed":565,"events_dropped":0,"avg_latency_ms":17.44865806687996,"throughput_eps":0,"last_update":"2026-03-21T22:48:33.965376778Z"} +2026/03/21 22:48:38 [log_collector] {"stage_name":"log_collector","events_processed":26416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5283.2,"last_update":"2026-03-21T22:48:33.870246856Z"} +2026/03/21 22:48:38 [metric_collector] {"stage_name":"metric_collector","events_processed":16964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3392.8,"last_update":"2026-03-21T22:48:33.870839159Z"} +2026/03/21 22:48:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:48:33.880204752Z"} +2026/03/21 22:48:38 [transform_engine] {"stage_name":"transform_engine","events_processed":565,"events_dropped":0,"avg_latency_ms":218.71975971199998,"throughput_eps":0,"last_update":"2026-03-21T22:48:33.965389001Z"} +2026/03/21 22:48:38 ───────────────────────────────────────────────── +2026/03/21 22:48:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:48:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:48:38.879206612Z"} +2026/03/21 22:48:43 [transform_engine] {"stage_name":"transform_engine","events_processed":565,"events_dropped":0,"avg_latency_ms":218.71975971199998,"throughput_eps":0,"last_update":"2026-03-21T22:48:38.96551251Z"} +2026/03/21 22:48:43 [detection_layer] {"stage_name":"detection_layer","events_processed":565,"events_dropped":0,"avg_latency_ms":17.44865806687996,"throughput_eps":0,"last_update":"2026-03-21T22:48:38.965498914Z"} +2026/03/21 22:48:43 [log_collector] {"stage_name":"log_collector","events_processed":26416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5283.2,"last_update":"2026-03-21T22:48:38.869747621Z"} +2026/03/21 22:48:43 [metric_collector] {"stage_name":"metric_collector","events_processed":16969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3393.8,"last_update":"2026-03-21T22:48:38.870191651Z"} +2026/03/21 22:48:43 ───────────────────────────────────────────────── +2026/03/21 22:48:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:48:48 [log_collector] {"stage_name":"log_collector","events_processed":26416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5283.2,"last_update":"2026-03-21T22:48:43.869523613Z"} +2026/03/21 22:48:48 [metric_collector] {"stage_name":"metric_collector","events_processed":16974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3394.8,"last_update":"2026-03-21T22:48:43.869936142Z"} +2026/03/21 22:48:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:48:43.878316667Z"} +2026/03/21 22:48:48 [transform_engine] {"stage_name":"transform_engine","events_processed":565,"events_dropped":0,"avg_latency_ms":218.71975971199998,"throughput_eps":0,"last_update":"2026-03-21T22:48:43.965519996Z"} +2026/03/21 22:48:48 [detection_layer] {"stage_name":"detection_layer","events_processed":565,"events_dropped":0,"avg_latency_ms":17.44865806687996,"throughput_eps":0,"last_update":"2026-03-21T22:48:43.965510206Z"} +2026/03/21 22:48:48 ───────────────────────────────────────────────── +2026/03/21 22:48:49 [ANOMALY] time=2026-03-21T22:48:49Z score=0.8936 method=SEAD details=MAD!:w=0.25,s=0.92 RRCF-fast!:w=0.20,s=0.87 RRCF-mid!:w=0.16,s=0.90 RRCF-slow!:w=0.14,s=0.95 COPOD!:w=0.24,s=0.86 +2026/03/21 22:48:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:48:53 [log_collector] {"stage_name":"log_collector","events_processed":26416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5283.2,"last_update":"2026-03-21T22:48:48.869578819Z"} +2026/03/21 22:48:53 [metric_collector] {"stage_name":"metric_collector","events_processed":16979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3395.8,"last_update":"2026-03-21T22:48:48.870046185Z"} +2026/03/21 22:48:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:48:48.877463554Z"} +2026/03/21 22:48:53 [transform_engine] {"stage_name":"transform_engine","events_processed":566,"events_dropped":0,"avg_latency_ms":191.0011019696,"throughput_eps":0,"last_update":"2026-03-21T22:48:49.045761117Z"} +2026/03/21 22:48:53 [detection_layer] {"stage_name":"detection_layer","events_processed":565,"events_dropped":0,"avg_latency_ms":17.44865806687996,"throughput_eps":0,"last_update":"2026-03-21T22:48:48.96601789Z"} +2026/03/21 22:48:53 ───────────────────────────────────────────────── +2026/03/21 22:48:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:48:58 [log_collector] {"stage_name":"log_collector","events_processed":26416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5283.2,"last_update":"2026-03-21T22:48:53.869818538Z"} +2026/03/21 22:48:58 [metric_collector] {"stage_name":"metric_collector","events_processed":16984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3396.8,"last_update":"2026-03-21T22:48:53.870300551Z"} +2026/03/21 22:48:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6796,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:48:53.878723277Z"} +2026/03/21 22:48:58 [transform_engine] {"stage_name":"transform_engine","events_processed":566,"events_dropped":0,"avg_latency_ms":191.0011019696,"throughput_eps":0,"last_update":"2026-03-21T22:48:53.965901807Z"} +2026/03/21 22:48:58 [detection_layer] {"stage_name":"detection_layer","events_processed":566,"events_dropped":0,"avg_latency_ms":16.99937925350397,"throughput_eps":0,"last_update":"2026-03-21T22:48:53.965891938Z"} +2026/03/21 22:48:58 ───────────────────────────────────────────────── +2026/03/21 22:49:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:49:03 [metric_collector] {"stage_name":"metric_collector","events_processed":16989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3397.8,"last_update":"2026-03-21T22:48:58.870575307Z"} +2026/03/21 22:49:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:48:58.879534561Z"} +2026/03/21 22:49:03 [transform_engine] {"stage_name":"transform_engine","events_processed":566,"events_dropped":0,"avg_latency_ms":191.0011019696,"throughput_eps":0,"last_update":"2026-03-21T22:48:58.96571044Z"} +2026/03/21 22:49:03 [detection_layer] {"stage_name":"detection_layer","events_processed":566,"events_dropped":0,"avg_latency_ms":16.99937925350397,"throughput_eps":0,"last_update":"2026-03-21T22:48:58.965702585Z"} +2026/03/21 22:49:03 [log_collector] {"stage_name":"log_collector","events_processed":26416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5283.2,"last_update":"2026-03-21T22:48:58.87012761Z"} +2026/03/21 22:49:03 ───────────────────────────────────────────────── +2026/03/21 22:49:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:49:08 [log_collector] {"stage_name":"log_collector","events_processed":26416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5283.2,"last_update":"2026-03-21T22:49:03.870403717Z"} +2026/03/21 22:49:08 [metric_collector] {"stage_name":"metric_collector","events_processed":16994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3398.8,"last_update":"2026-03-21T22:49:03.87082275Z"} +2026/03/21 22:49:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6800,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:49:03.878930311Z"} +2026/03/21 22:49:08 [transform_engine] {"stage_name":"transform_engine","events_processed":566,"events_dropped":0,"avg_latency_ms":191.0011019696,"throughput_eps":0,"last_update":"2026-03-21T22:49:03.966116456Z"} +2026/03/21 22:49:08 [detection_layer] {"stage_name":"detection_layer","events_processed":566,"events_dropped":0,"avg_latency_ms":16.99937925350397,"throughput_eps":0,"last_update":"2026-03-21T22:49:03.966108171Z"} +2026/03/21 22:49:08 ───────────────────────────────────────────────── +2026/03/21 22:49:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:49:13 [transform_engine] {"stage_name":"transform_engine","events_processed":566,"events_dropped":0,"avg_latency_ms":191.0011019696,"throughput_eps":0,"last_update":"2026-03-21T22:49:08.965097173Z"} +2026/03/21 22:49:13 [detection_layer] {"stage_name":"detection_layer","events_processed":566,"events_dropped":0,"avg_latency_ms":16.99937925350397,"throughput_eps":0,"last_update":"2026-03-21T22:49:08.966188123Z"} +2026/03/21 22:49:13 [log_collector] {"stage_name":"log_collector","events_processed":26416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5283.2,"last_update":"2026-03-21T22:49:08.870137787Z"} +2026/03/21 22:49:13 [metric_collector] {"stage_name":"metric_collector","events_processed":16999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3399.8,"last_update":"2026-03-21T22:49:08.870619028Z"} +2026/03/21 22:49:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6802,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:49:08.878990245Z"} +2026/03/21 22:49:13 ───────────────────────────────────────────────── +2026/03/21 22:49:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:49:18 [transform_engine] {"stage_name":"transform_engine","events_processed":566,"events_dropped":0,"avg_latency_ms":191.0011019696,"throughput_eps":0,"last_update":"2026-03-21T22:49:13.965890199Z"} +2026/03/21 22:49:18 [detection_layer] {"stage_name":"detection_layer","events_processed":566,"events_dropped":0,"avg_latency_ms":16.99937925350397,"throughput_eps":0,"last_update":"2026-03-21T22:49:13.965877714Z"} +2026/03/21 22:49:18 [log_collector] {"stage_name":"log_collector","events_processed":26416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5283.2,"last_update":"2026-03-21T22:49:13.869902293Z"} +2026/03/21 22:49:18 [metric_collector] {"stage_name":"metric_collector","events_processed":17004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3400.8,"last_update":"2026-03-21T22:49:13.870335612Z"} +2026/03/21 22:49:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:49:13.879701735Z"} +2026/03/21 22:49:18 ───────────────────────────────────────────────── +2026/03/21 22:49:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:49:23 [metric_collector] {"stage_name":"metric_collector","events_processed":17009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3401.8,"last_update":"2026-03-21T22:49:18.870345227Z"} +2026/03/21 22:49:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:49:18.879533078Z"} +2026/03/21 22:49:23 [transform_engine] {"stage_name":"transform_engine","events_processed":567,"events_dropped":0,"avg_latency_ms":466.62384217568,"throughput_eps":0,"last_update":"2026-03-21T22:49:20.5348495Z"} +2026/03/21 22:49:23 [detection_layer] {"stage_name":"detection_layer","events_processed":566,"events_dropped":0,"avg_latency_ms":16.99937925350397,"throughput_eps":0,"last_update":"2026-03-21T22:49:18.965721693Z"} +2026/03/21 22:49:23 [log_collector] {"stage_name":"log_collector","events_processed":26416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5283.2,"last_update":"2026-03-21T22:49:18.869827565Z"} +2026/03/21 22:49:23 ───────────────────────────────────────────────── +2026/03/21 22:49:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:49:28 [transform_engine] {"stage_name":"transform_engine","events_processed":567,"events_dropped":0,"avg_latency_ms":466.62384217568,"throughput_eps":0,"last_update":"2026-03-21T22:49:23.965828513Z"} +2026/03/21 22:49:28 [detection_layer] {"stage_name":"detection_layer","events_processed":567,"events_dropped":0,"avg_latency_ms":16.02566740280318,"throughput_eps":0,"last_update":"2026-03-21T22:49:23.965855073Z"} +2026/03/21 22:49:28 [log_collector] {"stage_name":"log_collector","events_processed":26416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5283.2,"last_update":"2026-03-21T22:49:23.869512578Z"} +2026/03/21 22:49:28 [metric_collector] {"stage_name":"metric_collector","events_processed":17014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3402.8,"last_update":"2026-03-21T22:49:23.869929025Z"} +2026/03/21 22:49:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:49:23.878708815Z"} +2026/03/21 22:49:28 ───────────────────────────────────────────────── +2026/03/21 22:49:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:49:33 [metric_collector] {"stage_name":"metric_collector","events_processed":17019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3403.8,"last_update":"2026-03-21T22:49:28.870662165Z"} +2026/03/21 22:49:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:49:28.881029847Z"} +2026/03/21 22:49:33 [transform_engine] {"stage_name":"transform_engine","events_processed":567,"events_dropped":0,"avg_latency_ms":466.62384217568,"throughput_eps":0,"last_update":"2026-03-21T22:49:28.965218199Z"} +2026/03/21 22:49:33 [detection_layer] {"stage_name":"detection_layer","events_processed":567,"events_dropped":0,"avg_latency_ms":16.02566740280318,"throughput_eps":0,"last_update":"2026-03-21T22:49:28.966311283Z"} +2026/03/21 22:49:33 [log_collector] {"stage_name":"log_collector","events_processed":26416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5283.2,"last_update":"2026-03-21T22:49:28.870200832Z"} +2026/03/21 22:49:33 ───────────────────────────────────────────────── +2026/03/21 22:49:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:49:38 [log_collector] {"stage_name":"log_collector","events_processed":26416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5283.2,"last_update":"2026-03-21T22:49:33.869823433Z"} +2026/03/21 22:49:38 [metric_collector] {"stage_name":"metric_collector","events_processed":17024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3404.8,"last_update":"2026-03-21T22:49:33.870340684Z"} +2026/03/21 22:49:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6812,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:49:33.878449648Z"} +2026/03/21 22:49:38 [transform_engine] {"stage_name":"transform_engine","events_processed":567,"events_dropped":0,"avg_latency_ms":466.62384217568,"throughput_eps":0,"last_update":"2026-03-21T22:49:33.965639279Z"} +2026/03/21 22:49:38 [detection_layer] {"stage_name":"detection_layer","events_processed":567,"events_dropped":0,"avg_latency_ms":16.02566740280318,"throughput_eps":0,"last_update":"2026-03-21T22:49:33.965665099Z"} +2026/03/21 22:49:38 ───────────────────────────────────────────────── +Saved state: 15 clusters, 26417 messages, reason: none +Saved state: 16 clusters, 26422 messages, reason: cluster_created +2026/03/21 22:49:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:49:43 [log_collector] {"stage_name":"log_collector","events_processed":26416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5283.2,"last_update":"2026-03-21T22:49:38.869466332Z"} +2026/03/21 22:49:43 [metric_collector] {"stage_name":"metric_collector","events_processed":17029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3405.8,"last_update":"2026-03-21T22:49:38.86975782Z"} +2026/03/21 22:49:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:49:38.878618535Z"} +2026/03/21 22:49:43 [transform_engine] {"stage_name":"transform_engine","events_processed":567,"events_dropped":0,"avg_latency_ms":466.62384217568,"throughput_eps":0,"last_update":"2026-03-21T22:49:38.965824397Z"} +2026/03/21 22:49:43 [detection_layer] {"stage_name":"detection_layer","events_processed":567,"events_dropped":0,"avg_latency_ms":16.02566740280318,"throughput_eps":0,"last_update":"2026-03-21T22:49:38.965798638Z"} +2026/03/21 22:49:43 ───────────────────────────────────────────────── +2026/03/21 22:49:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:49:48 [log_collector] {"stage_name":"log_collector","events_processed":26425,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5285,"last_update":"2026-03-21T22:49:43.86993921Z"} +2026/03/21 22:49:48 [metric_collector] {"stage_name":"metric_collector","events_processed":17034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3406.8,"last_update":"2026-03-21T22:49:43.870783367Z"} +2026/03/21 22:49:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6816,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:49:43.879764372Z"} +2026/03/21 22:49:48 [transform_engine] {"stage_name":"transform_engine","events_processed":567,"events_dropped":0,"avg_latency_ms":466.62384217568,"throughput_eps":0,"last_update":"2026-03-21T22:49:43.966091611Z"} +2026/03/21 22:49:48 [detection_layer] {"stage_name":"detection_layer","events_processed":567,"events_dropped":0,"avg_latency_ms":16.02566740280318,"throughput_eps":0,"last_update":"2026-03-21T22:49:43.966110939Z"} +2026/03/21 22:49:48 ───────────────────────────────────────────────── +2026/03/21 22:49:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:49:53 [log_collector] {"stage_name":"log_collector","events_processed":26425,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5285,"last_update":"2026-03-21T22:49:48.869568942Z"} +2026/03/21 22:49:53 [metric_collector] {"stage_name":"metric_collector","events_processed":17039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3407.8,"last_update":"2026-03-21T22:49:48.869899195Z"} +2026/03/21 22:49:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6818,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:49:48.877998381Z"} +2026/03/21 22:49:53 [transform_engine] {"stage_name":"transform_engine","events_processed":568,"events_dropped":0,"avg_latency_ms":396.44830534054404,"throughput_eps":0,"last_update":"2026-03-21T22:49:49.080947536Z"} +2026/03/21 22:49:53 [detection_layer] {"stage_name":"detection_layer","events_processed":567,"events_dropped":0,"avg_latency_ms":16.02566740280318,"throughput_eps":0,"last_update":"2026-03-21T22:49:48.96632487Z"} +2026/03/21 22:49:53 ───────────────────────────────────────────────── +2026/03/21 22:49:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:49:58 [metric_collector] {"stage_name":"metric_collector","events_processed":17044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3408.8,"last_update":"2026-03-21T22:49:53.869765481Z"} +2026/03/21 22:49:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6820,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:49:53.878765553Z"} +2026/03/21 22:49:58 [transform_engine] {"stage_name":"transform_engine","events_processed":568,"events_dropped":0,"avg_latency_ms":396.44830534054404,"throughput_eps":0,"last_update":"2026-03-21T22:49:53.966306597Z"} +2026/03/21 22:49:58 [detection_layer] {"stage_name":"detection_layer","events_processed":568,"events_dropped":0,"avg_latency_ms":16.134462522242544,"throughput_eps":0,"last_update":"2026-03-21T22:49:53.966192318Z"} +2026/03/21 22:49:58 [log_collector] {"stage_name":"log_collector","events_processed":26425,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5285,"last_update":"2026-03-21T22:49:58.870445894Z"} +2026/03/21 22:49:58 ───────────────────────────────────────────────── +2026/03/21 22:50:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:50:03 [log_collector] {"stage_name":"log_collector","events_processed":26425,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5285,"last_update":"2026-03-21T22:49:58.870445894Z"} +2026/03/21 22:50:03 [metric_collector] {"stage_name":"metric_collector","events_processed":17049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3409.8,"last_update":"2026-03-21T22:49:58.870588117Z"} +2026/03/21 22:50:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:49:58.87908254Z"} +2026/03/21 22:50:03 [transform_engine] {"stage_name":"transform_engine","events_processed":568,"events_dropped":0,"avg_latency_ms":396.44830534054404,"throughput_eps":0,"last_update":"2026-03-21T22:49:58.965413406Z"} +2026/03/21 22:50:03 [detection_layer] {"stage_name":"detection_layer","events_processed":568,"events_dropped":0,"avg_latency_ms":16.134462522242544,"throughput_eps":0,"last_update":"2026-03-21T22:49:58.965377357Z"} +2026/03/21 22:50:03 ───────────────────────────────────────────────── +2026/03/21 22:50:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:50:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:50:03.889304973Z"} +2026/03/21 22:50:08 [transform_engine] {"stage_name":"transform_engine","events_processed":568,"events_dropped":0,"avg_latency_ms":396.44830534054404,"throughput_eps":0,"last_update":"2026-03-21T22:50:03.965467099Z"} +2026/03/21 22:50:08 [detection_layer] {"stage_name":"detection_layer","events_processed":568,"events_dropped":0,"avg_latency_ms":16.134462522242544,"throughput_eps":0,"last_update":"2026-03-21T22:50:03.965508288Z"} +2026/03/21 22:50:08 [log_collector] {"stage_name":"log_collector","events_processed":26425,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5285,"last_update":"2026-03-21T22:50:03.870034637Z"} +2026/03/21 22:50:08 [metric_collector] {"stage_name":"metric_collector","events_processed":17054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3410.8,"last_update":"2026-03-21T22:50:03.870330634Z"} +2026/03/21 22:50:08 ───────────────────────────────────────────────── +2026/03/21 22:50:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:50:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6826,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:50:08.875951672Z"} +2026/03/21 22:50:13 [transform_engine] {"stage_name":"transform_engine","events_processed":568,"events_dropped":0,"avg_latency_ms":396.44830534054404,"throughput_eps":0,"last_update":"2026-03-21T22:50:08.965091049Z"} +2026/03/21 22:50:13 [detection_layer] {"stage_name":"detection_layer","events_processed":568,"events_dropped":0,"avg_latency_ms":16.134462522242544,"throughput_eps":0,"last_update":"2026-03-21T22:50:08.966232836Z"} +2026/03/21 22:50:13 [log_collector] {"stage_name":"log_collector","events_processed":26425,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5285,"last_update":"2026-03-21T22:50:13.870075123Z"} +2026/03/21 22:50:13 [metric_collector] {"stage_name":"metric_collector","events_processed":17059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3411.8,"last_update":"2026-03-21T22:50:08.870378194Z"} +2026/03/21 22:50:13 ───────────────────────────────────────────────── +2026/03/21 22:50:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:50:18 [transform_engine] {"stage_name":"transform_engine","events_processed":568,"events_dropped":0,"avg_latency_ms":396.44830534054404,"throughput_eps":0,"last_update":"2026-03-21T22:50:13.965095856Z"} +2026/03/21 22:50:18 [detection_layer] {"stage_name":"detection_layer","events_processed":568,"events_dropped":0,"avg_latency_ms":16.134462522242544,"throughput_eps":0,"last_update":"2026-03-21T22:50:13.966274243Z"} +2026/03/21 22:50:18 [log_collector] {"stage_name":"log_collector","events_processed":26425,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5285,"last_update":"2026-03-21T22:50:13.870075123Z"} +2026/03/21 22:50:18 [metric_collector] {"stage_name":"metric_collector","events_processed":17064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3412.8,"last_update":"2026-03-21T22:50:13.870588687Z"} +2026/03/21 22:50:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:50:13.878954904Z"} +2026/03/21 22:50:18 ───────────────────────────────────────────────── +Saved state: 17 clusters, 26426 messages, reason: cluster_created +Saved state: 18 clusters, 26427 messages, reason: cluster_created +2026/03/21 22:50:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:50:23 [log_collector] {"stage_name":"log_collector","events_processed":26425,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5285,"last_update":"2026-03-21T22:50:18.869430827Z"} +2026/03/21 22:50:23 [metric_collector] {"stage_name":"metric_collector","events_processed":17069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3413.8,"last_update":"2026-03-21T22:50:18.869861712Z"} +2026/03/21 22:50:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6830,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:50:18.878427191Z"} +2026/03/21 22:50:23 [transform_engine] {"stage_name":"transform_engine","events_processed":569,"events_dropped":0,"avg_latency_ms":332.2006242724353,"throughput_eps":0,"last_update":"2026-03-21T22:50:19.041003402Z"} +2026/03/21 22:50:23 [detection_layer] {"stage_name":"detection_layer","events_processed":568,"events_dropped":0,"avg_latency_ms":16.134462522242544,"throughput_eps":0,"last_update":"2026-03-21T22:50:18.96587656Z"} +2026/03/21 22:50:23 ───────────────────────────────────────────────── +2026/03/21 22:50:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:50:28 [log_collector] {"stage_name":"log_collector","events_processed":26428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5285.6,"last_update":"2026-03-21T22:50:23.869440432Z"} +2026/03/21 22:50:28 [metric_collector] {"stage_name":"metric_collector","events_processed":17074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3414.8,"last_update":"2026-03-21T22:50:23.869752761Z"} +2026/03/21 22:50:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6832,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:50:23.877967868Z"} +2026/03/21 22:50:28 [transform_engine] {"stage_name":"transform_engine","events_processed":569,"events_dropped":0,"avg_latency_ms":332.2006242724353,"throughput_eps":0,"last_update":"2026-03-21T22:50:23.965097115Z"} +2026/03/21 22:50:28 [detection_layer] {"stage_name":"detection_layer","events_processed":569,"events_dropped":0,"avg_latency_ms":16.989588017794038,"throughput_eps":0,"last_update":"2026-03-21T22:50:23.965268353Z"} +2026/03/21 22:50:28 ───────────────────────────────────────────────── +2026/03/21 22:50:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:50:33 [log_collector] {"stage_name":"log_collector","events_processed":26432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5286.4,"last_update":"2026-03-21T22:50:28.869408969Z"} +2026/03/21 22:50:33 [metric_collector] {"stage_name":"metric_collector","events_processed":17079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3415.8,"last_update":"2026-03-21T22:50:28.869934626Z"} +2026/03/21 22:50:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:50:28.878333205Z"} +2026/03/21 22:50:33 [transform_engine] {"stage_name":"transform_engine","events_processed":569,"events_dropped":0,"avg_latency_ms":332.2006242724353,"throughput_eps":0,"last_update":"2026-03-21T22:50:28.965808474Z"} +2026/03/21 22:50:33 [detection_layer] {"stage_name":"detection_layer","events_processed":569,"events_dropped":0,"avg_latency_ms":16.989588017794038,"throughput_eps":0,"last_update":"2026-03-21T22:50:28.965845334Z"} +2026/03/21 22:50:33 ───────────────────────────────────────────────── +2026/03/21 22:50:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:50:38 [transform_engine] {"stage_name":"transform_engine","events_processed":569,"events_dropped":0,"avg_latency_ms":332.2006242724353,"throughput_eps":0,"last_update":"2026-03-21T22:50:33.965408493Z"} +2026/03/21 22:50:38 [detection_layer] {"stage_name":"detection_layer","events_processed":569,"events_dropped":0,"avg_latency_ms":16.989588017794038,"throughput_eps":0,"last_update":"2026-03-21T22:50:33.965442148Z"} +2026/03/21 22:50:38 [log_collector] {"stage_name":"log_collector","events_processed":26437,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5287.4,"last_update":"2026-03-21T22:50:33.870436764Z"} +2026/03/21 22:50:38 [metric_collector] {"stage_name":"metric_collector","events_processed":17084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3416.8,"last_update":"2026-03-21T22:50:33.87077357Z"} +2026/03/21 22:50:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:50:33.879078339Z"} +2026/03/21 22:50:38 ───────────────────────────────────────────────── +2026/03/21 22:50:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:50:43 [log_collector] {"stage_name":"log_collector","events_processed":26438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5287.6,"last_update":"2026-03-21T22:50:38.869597874Z"} +2026/03/21 22:50:43 [metric_collector] {"stage_name":"metric_collector","events_processed":17089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3417.8,"last_update":"2026-03-21T22:50:38.87001373Z"} +2026/03/21 22:50:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:50:38.878682126Z"} +2026/03/21 22:50:43 [transform_engine] {"stage_name":"transform_engine","events_processed":569,"events_dropped":0,"avg_latency_ms":332.2006242724353,"throughput_eps":0,"last_update":"2026-03-21T22:50:38.966041483Z"} +2026/03/21 22:50:43 [detection_layer] {"stage_name":"detection_layer","events_processed":569,"events_dropped":0,"avg_latency_ms":16.989588017794038,"throughput_eps":0,"last_update":"2026-03-21T22:50:38.966004201Z"} +2026/03/21 22:50:43 ───────────────────────────────────────────────── +2026/03/21 22:50:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:50:48 [log_collector] {"stage_name":"log_collector","events_processed":26438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5287.6,"last_update":"2026-03-21T22:50:43.869922381Z"} +2026/03/21 22:50:48 [metric_collector] {"stage_name":"metric_collector","events_processed":17094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3418.8,"last_update":"2026-03-21T22:50:43.869720304Z"} +2026/03/21 22:50:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:50:43.878662374Z"} +2026/03/21 22:50:48 [transform_engine] {"stage_name":"transform_engine","events_processed":569,"events_dropped":0,"avg_latency_ms":332.2006242724353,"throughput_eps":0,"last_update":"2026-03-21T22:50:43.965897042Z"} +2026/03/21 22:50:48 [detection_layer] {"stage_name":"detection_layer","events_processed":569,"events_dropped":0,"avg_latency_ms":16.989588017794038,"throughput_eps":0,"last_update":"2026-03-21T22:50:43.965872024Z"} +2026/03/21 22:50:48 ───────────────────────────────────────────────── +2026/03/21 22:50:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:50:53 [metric_collector] {"stage_name":"metric_collector","events_processed":17099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3419.8,"last_update":"2026-03-21T22:50:48.870140774Z"} +2026/03/21 22:50:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:50:48.879255095Z"} +2026/03/21 22:50:53 [transform_engine] {"stage_name":"transform_engine","events_processed":570,"events_dropped":0,"avg_latency_ms":577.6360126179482,"throughput_eps":0,"last_update":"2026-03-21T22:50:50.524814701Z"} +2026/03/21 22:50:53 [detection_layer] {"stage_name":"detection_layer","events_processed":569,"events_dropped":0,"avg_latency_ms":16.989588017794038,"throughput_eps":0,"last_update":"2026-03-21T22:50:48.965556835Z"} +2026/03/21 22:50:53 [log_collector] {"stage_name":"log_collector","events_processed":26438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5287.6,"last_update":"2026-03-21T22:50:48.869748513Z"} +2026/03/21 22:50:53 ───────────────────────────────────────────────── +2026/03/21 22:50:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:50:58 [log_collector] {"stage_name":"log_collector","events_processed":26438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5287.6,"last_update":"2026-03-21T22:50:53.870210241Z"} +2026/03/21 22:50:58 [metric_collector] {"stage_name":"metric_collector","events_processed":17104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3420.8,"last_update":"2026-03-21T22:50:53.870733654Z"} +2026/03/21 22:50:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:50:53.879013236Z"} +2026/03/21 22:50:58 [transform_engine] {"stage_name":"transform_engine","events_processed":570,"events_dropped":0,"avg_latency_ms":577.6360126179482,"throughput_eps":0,"last_update":"2026-03-21T22:50:53.965178434Z"} +2026/03/21 22:50:58 [detection_layer] {"stage_name":"detection_layer","events_processed":570,"events_dropped":0,"avg_latency_ms":17.65296461423523,"throughput_eps":0,"last_update":"2026-03-21T22:50:53.966336222Z"} +2026/03/21 22:50:58 ───────────────────────────────────────────────── +2026/03/21 22:51:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:51:03 [detection_layer] {"stage_name":"detection_layer","events_processed":570,"events_dropped":0,"avg_latency_ms":17.65296461423523,"throughput_eps":0,"last_update":"2026-03-21T22:50:58.966163414Z"} +2026/03/21 22:51:03 [log_collector] {"stage_name":"log_collector","events_processed":26438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5287.6,"last_update":"2026-03-21T22:50:58.86970625Z"} +2026/03/21 22:51:03 [metric_collector] {"stage_name":"metric_collector","events_processed":17109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3421.8,"last_update":"2026-03-21T22:50:58.87021282Z"} +2026/03/21 22:51:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:50:58.878968173Z"} +2026/03/21 22:51:03 [transform_engine] {"stage_name":"transform_engine","events_processed":570,"events_dropped":0,"avg_latency_ms":577.6360126179482,"throughput_eps":0,"last_update":"2026-03-21T22:50:58.965072905Z"} +2026/03/21 22:51:03 ───────────────────────────────────────────────── +2026/03/21 22:51:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:51:08 [log_collector] {"stage_name":"log_collector","events_processed":26438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5287.6,"last_update":"2026-03-21T22:51:03.869586845Z"} +2026/03/21 22:51:08 [metric_collector] {"stage_name":"metric_collector","events_processed":17114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3422.8,"last_update":"2026-03-21T22:51:03.869660747Z"} +2026/03/21 22:51:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6848,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:51:03.877886585Z"} +2026/03/21 22:51:08 [transform_engine] {"stage_name":"transform_engine","events_processed":570,"events_dropped":0,"avg_latency_ms":577.6360126179482,"throughput_eps":0,"last_update":"2026-03-21T22:51:03.966111459Z"} +2026/03/21 22:51:08 [detection_layer] {"stage_name":"detection_layer","events_processed":570,"events_dropped":0,"avg_latency_ms":17.65296461423523,"throughput_eps":0,"last_update":"2026-03-21T22:51:03.96614322Z"} +2026/03/21 22:51:08 ───────────────────────────────────────────────── +2026/03/21 22:51:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:51:13 [transform_engine] {"stage_name":"transform_engine","events_processed":570,"events_dropped":0,"avg_latency_ms":577.6360126179482,"throughput_eps":0,"last_update":"2026-03-21T22:51:08.96560945Z"} +2026/03/21 22:51:13 [detection_layer] {"stage_name":"detection_layer","events_processed":570,"events_dropped":0,"avg_latency_ms":17.65296461423523,"throughput_eps":0,"last_update":"2026-03-21T22:51:08.965576728Z"} +2026/03/21 22:51:13 [log_collector] {"stage_name":"log_collector","events_processed":26438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5287.6,"last_update":"2026-03-21T22:51:08.870253384Z"} +2026/03/21 22:51:13 [metric_collector] {"stage_name":"metric_collector","events_processed":17119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3423.8,"last_update":"2026-03-21T22:51:08.870681685Z"} +2026/03/21 22:51:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:51:08.879346124Z"} +2026/03/21 22:51:13 ───────────────────────────────────────────────── +Saved state: 18 clusters, 26440 messages, reason: cluster_template_changed +2026/03/21 22:51:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:51:18 [detection_layer] {"stage_name":"detection_layer","events_processed":570,"events_dropped":0,"avg_latency_ms":17.65296461423523,"throughput_eps":0,"last_update":"2026-03-21T22:51:13.965453954Z"} +2026/03/21 22:51:18 [log_collector] {"stage_name":"log_collector","events_processed":26441,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5288.2,"last_update":"2026-03-21T22:51:18.869442173Z"} +2026/03/21 22:51:18 [metric_collector] {"stage_name":"metric_collector","events_processed":17124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3424.8,"last_update":"2026-03-21T22:51:13.869900269Z"} +2026/03/21 22:51:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:51:13.879094452Z"} +2026/03/21 22:51:18 [transform_engine] {"stage_name":"transform_engine","events_processed":570,"events_dropped":0,"avg_latency_ms":577.6360126179482,"throughput_eps":0,"last_update":"2026-03-21T22:51:13.965406283Z"} +2026/03/21 22:51:18 ───────────────────────────────────────────────── +2026/03/21 22:51:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:51:23 [log_collector] {"stage_name":"log_collector","events_processed":26441,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5288.2,"last_update":"2026-03-21T22:51:18.869442173Z"} +2026/03/21 22:51:23 [metric_collector] {"stage_name":"metric_collector","events_processed":17129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3425.8,"last_update":"2026-03-21T22:51:18.870134299Z"} +2026/03/21 22:51:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:51:18.877855Z"} +2026/03/21 22:51:23 [transform_engine] {"stage_name":"transform_engine","events_processed":571,"events_dropped":0,"avg_latency_ms":486.37679689435856,"throughput_eps":0,"last_update":"2026-03-21T22:51:19.086499184Z"} +2026/03/21 22:51:23 [detection_layer] {"stage_name":"detection_layer","events_processed":570,"events_dropped":0,"avg_latency_ms":17.65296461423523,"throughput_eps":0,"last_update":"2026-03-21T22:51:18.965447192Z"} +2026/03/21 22:51:23 ───────────────────────────────────────────────── +2026/03/21 22:51:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:51:28 [metric_collector] {"stage_name":"metric_collector","events_processed":17134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3426.8,"last_update":"2026-03-21T22:51:23.869771876Z"} +2026/03/21 22:51:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:51:23.877732838Z"} +2026/03/21 22:51:28 [transform_engine] {"stage_name":"transform_engine","events_processed":571,"events_dropped":0,"avg_latency_ms":486.37679689435856,"throughput_eps":0,"last_update":"2026-03-21T22:51:23.965922064Z"} +2026/03/21 22:51:28 [detection_layer] {"stage_name":"detection_layer","events_processed":571,"events_dropped":0,"avg_latency_ms":17.167988291388184,"throughput_eps":0,"last_update":"2026-03-21T22:51:23.965900863Z"} +2026/03/21 22:51:28 [log_collector] {"stage_name":"log_collector","events_processed":26441,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5288.2,"last_update":"2026-03-21T22:51:23.869588195Z"} +2026/03/21 22:51:28 ───────────────────────────────────────────────── +2026/03/21 22:51:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:51:33 [log_collector] {"stage_name":"log_collector","events_processed":26441,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5288.2,"last_update":"2026-03-21T22:51:28.869768872Z"} +2026/03/21 22:51:33 [metric_collector] {"stage_name":"metric_collector","events_processed":17139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3427.8,"last_update":"2026-03-21T22:51:28.869759494Z"} +2026/03/21 22:51:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:51:28.878082147Z"} +2026/03/21 22:51:33 [transform_engine] {"stage_name":"transform_engine","events_processed":571,"events_dropped":0,"avg_latency_ms":486.37679689435856,"throughput_eps":0,"last_update":"2026-03-21T22:51:28.965216031Z"} +2026/03/21 22:51:33 [detection_layer] {"stage_name":"detection_layer","events_processed":571,"events_dropped":0,"avg_latency_ms":17.167988291388184,"throughput_eps":0,"last_update":"2026-03-21T22:51:28.966305008Z"} +2026/03/21 22:51:33 ───────────────────────────────────────────────── +2026/03/21 22:51:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:51:38 [log_collector] {"stage_name":"log_collector","events_processed":26441,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5288.2,"last_update":"2026-03-21T22:51:33.869744404Z"} +2026/03/21 22:51:38 [metric_collector] {"stage_name":"metric_collector","events_processed":17144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3428.8,"last_update":"2026-03-21T22:51:33.870114053Z"} +2026/03/21 22:51:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6860,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:51:33.87926323Z"} +2026/03/21 22:51:38 [transform_engine] {"stage_name":"transform_engine","events_processed":571,"events_dropped":0,"avg_latency_ms":486.37679689435856,"throughput_eps":0,"last_update":"2026-03-21T22:51:33.965606239Z"} +2026/03/21 22:51:38 [detection_layer] {"stage_name":"detection_layer","events_processed":571,"events_dropped":0,"avg_latency_ms":17.167988291388184,"throughput_eps":0,"last_update":"2026-03-21T22:51:33.965722642Z"} +2026/03/21 22:51:38 ───────────────────────────────────────────────── +2026/03/21 22:51:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:51:43 [log_collector] {"stage_name":"log_collector","events_processed":26441,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5288.2,"last_update":"2026-03-21T22:51:38.869430863Z"} +2026/03/21 22:51:43 [metric_collector] {"stage_name":"metric_collector","events_processed":17149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3429.8,"last_update":"2026-03-21T22:51:38.869775093Z"} +2026/03/21 22:51:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6862,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:51:38.878555283Z"} +2026/03/21 22:51:43 [transform_engine] {"stage_name":"transform_engine","events_processed":571,"events_dropped":0,"avg_latency_ms":486.37679689435856,"throughput_eps":0,"last_update":"2026-03-21T22:51:38.965732761Z"} +2026/03/21 22:51:43 [detection_layer] {"stage_name":"detection_layer","events_processed":571,"events_dropped":0,"avg_latency_ms":17.167988291388184,"throughput_eps":0,"last_update":"2026-03-21T22:51:38.965776405Z"} +2026/03/21 22:51:43 ───────────────────────────────────────────────── +2026/03/21 22:51:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:51:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:51:43.878658089Z"} +2026/03/21 22:51:48 [transform_engine] {"stage_name":"transform_engine","events_processed":571,"events_dropped":0,"avg_latency_ms":486.37679689435856,"throughput_eps":0,"last_update":"2026-03-21T22:51:43.965812052Z"} +2026/03/21 22:51:48 [detection_layer] {"stage_name":"detection_layer","events_processed":571,"events_dropped":0,"avg_latency_ms":17.167988291388184,"throughput_eps":0,"last_update":"2026-03-21T22:51:43.965841278Z"} +2026/03/21 22:51:48 [log_collector] {"stage_name":"log_collector","events_processed":26441,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5288.2,"last_update":"2026-03-21T22:51:43.869600026Z"} +2026/03/21 22:51:48 [metric_collector] {"stage_name":"metric_collector","events_processed":17154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3430.8,"last_update":"2026-03-21T22:51:43.869836178Z"} +2026/03/21 22:51:48 ───────────────────────────────────────────────── +2026/03/21 22:51:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:51:53 [log_collector] {"stage_name":"log_collector","events_processed":26441,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5288.2,"last_update":"2026-03-21T22:51:48.869918625Z"} +2026/03/21 22:51:53 [metric_collector] {"stage_name":"metric_collector","events_processed":17159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3431.8,"last_update":"2026-03-21T22:51:48.870371602Z"} +2026/03/21 22:51:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:51:48.879204414Z"} +2026/03/21 22:51:53 [transform_engine] {"stage_name":"transform_engine","events_processed":572,"events_dropped":0,"avg_latency_ms":403.3215111154868,"throughput_eps":0,"last_update":"2026-03-21T22:51:49.036588437Z"} +2026/03/21 22:51:53 [detection_layer] {"stage_name":"detection_layer","events_processed":571,"events_dropped":0,"avg_latency_ms":17.167988291388184,"throughput_eps":0,"last_update":"2026-03-21T22:51:48.965383018Z"} +2026/03/21 22:51:53 ───────────────────────────────────────────────── +2026/03/21 22:51:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:51:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6868,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:51:53.878489872Z"} +2026/03/21 22:51:58 [transform_engine] {"stage_name":"transform_engine","events_processed":572,"events_dropped":0,"avg_latency_ms":403.3215111154868,"throughput_eps":0,"last_update":"2026-03-21T22:51:53.965835933Z"} +2026/03/21 22:51:58 [detection_layer] {"stage_name":"detection_layer","events_processed":572,"events_dropped":0,"avg_latency_ms":17.10932423311055,"throughput_eps":0,"last_update":"2026-03-21T22:51:53.965869107Z"} +2026/03/21 22:51:58 [log_collector] {"stage_name":"log_collector","events_processed":26441,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5288.2,"last_update":"2026-03-21T22:51:53.869492947Z"} +2026/03/21 22:51:58 [metric_collector] {"stage_name":"metric_collector","events_processed":17164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3432.8,"last_update":"2026-03-21T22:51:53.869802269Z"} +2026/03/21 22:51:58 ───────────────────────────────────────────────── +2026/03/21 22:52:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:52:03 [transform_engine] {"stage_name":"transform_engine","events_processed":572,"events_dropped":0,"avg_latency_ms":403.3215111154868,"throughput_eps":0,"last_update":"2026-03-21T22:51:58.965054784Z"} +2026/03/21 22:52:03 [detection_layer] {"stage_name":"detection_layer","events_processed":572,"events_dropped":0,"avg_latency_ms":17.10932423311055,"throughput_eps":0,"last_update":"2026-03-21T22:51:58.966146636Z"} +2026/03/21 22:52:03 [log_collector] {"stage_name":"log_collector","events_processed":26441,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5288.2,"last_update":"2026-03-21T22:51:58.870474615Z"} +2026/03/21 22:52:03 [metric_collector] {"stage_name":"metric_collector","events_processed":17169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3433.8,"last_update":"2026-03-21T22:51:58.870457362Z"} +2026/03/21 22:52:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:51:58.878929632Z"} +2026/03/21 22:52:03 ───────────────────────────────────────────────── +2026/03/21 22:52:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:52:08 [detection_layer] {"stage_name":"detection_layer","events_processed":572,"events_dropped":0,"avg_latency_ms":17.10932423311055,"throughput_eps":0,"last_update":"2026-03-21T22:52:03.965273271Z"} +2026/03/21 22:52:08 [log_collector] {"stage_name":"log_collector","events_processed":26441,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5288.2,"last_update":"2026-03-21T22:52:03.869875675Z"} +2026/03/21 22:52:08 [metric_collector] {"stage_name":"metric_collector","events_processed":17179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3435.8,"last_update":"2026-03-21T22:52:08.870149917Z"} +2026/03/21 22:52:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:52:03.879073606Z"} +2026/03/21 22:52:08 [transform_engine] {"stage_name":"transform_engine","events_processed":572,"events_dropped":0,"avg_latency_ms":403.3215111154868,"throughput_eps":0,"last_update":"2026-03-21T22:52:03.965238283Z"} +2026/03/21 22:52:08 ───────────────────────────────────────────────── +2026/03/21 22:52:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:52:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:52:08.877407791Z"} +2026/03/21 22:52:13 [transform_engine] {"stage_name":"transform_engine","events_processed":572,"events_dropped":0,"avg_latency_ms":403.3215111154868,"throughput_eps":0,"last_update":"2026-03-21T22:52:08.965507045Z"} +2026/03/21 22:52:13 [detection_layer] {"stage_name":"detection_layer","events_processed":572,"events_dropped":0,"avg_latency_ms":17.10932423311055,"throughput_eps":0,"last_update":"2026-03-21T22:52:08.965531372Z"} +2026/03/21 22:52:13 [log_collector] {"stage_name":"log_collector","events_processed":26441,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5288.2,"last_update":"2026-03-21T22:52:08.870402161Z"} +2026/03/21 22:52:13 [metric_collector] {"stage_name":"metric_collector","events_processed":17179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3435.8,"last_update":"2026-03-21T22:52:08.870149917Z"} +2026/03/21 22:52:13 ───────────────────────────────────────────────── +Saved state: 18 clusters, 26442 messages, reason: none +2026/03/21 22:52:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:52:18 [log_collector] {"stage_name":"log_collector","events_processed":26444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5288.8,"last_update":"2026-03-21T22:52:18.869818564Z"} +2026/03/21 22:52:18 [metric_collector] {"stage_name":"metric_collector","events_processed":17184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3436.8,"last_update":"2026-03-21T22:52:13.870128683Z"} +2026/03/21 22:52:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6876,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:52:13.877296665Z"} +2026/03/21 22:52:18 [transform_engine] {"stage_name":"transform_engine","events_processed":572,"events_dropped":0,"avg_latency_ms":403.3215111154868,"throughput_eps":0,"last_update":"2026-03-21T22:52:13.965468077Z"} +2026/03/21 22:52:18 [detection_layer] {"stage_name":"detection_layer","events_processed":572,"events_dropped":0,"avg_latency_ms":17.10932423311055,"throughput_eps":0,"last_update":"2026-03-21T22:52:13.965485369Z"} +2026/03/21 22:52:18 ───────────────────────────────────────────────── +2026/03/21 22:52:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:52:23 [detection_layer] {"stage_name":"detection_layer","events_processed":572,"events_dropped":0,"avg_latency_ms":17.10932423311055,"throughput_eps":0,"last_update":"2026-03-21T22:52:18.965429188Z"} +2026/03/21 22:52:23 [log_collector] {"stage_name":"log_collector","events_processed":26444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5288.8,"last_update":"2026-03-21T22:52:18.869818564Z"} +2026/03/21 22:52:23 [metric_collector] {"stage_name":"metric_collector","events_processed":17189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3437.8,"last_update":"2026-03-21T22:52:18.870141974Z"} +2026/03/21 22:52:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:52:18.8784658Z"} +2026/03/21 22:52:23 [transform_engine] {"stage_name":"transform_engine","events_processed":573,"events_dropped":0,"avg_latency_ms":919.0187330923894,"throughput_eps":0,"last_update":"2026-03-21T22:52:21.947202955Z"} +2026/03/21 22:52:23 ───────────────────────────────────────────────── +2026/03/21 22:52:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:52:28 [transform_engine] {"stage_name":"transform_engine","events_processed":573,"events_dropped":0,"avg_latency_ms":919.0187330923894,"throughput_eps":0,"last_update":"2026-03-21T22:52:23.965647362Z"} +2026/03/21 22:52:28 [detection_layer] {"stage_name":"detection_layer","events_processed":573,"events_dropped":0,"avg_latency_ms":16.73621798648844,"throughput_eps":0,"last_update":"2026-03-21T22:52:23.965676096Z"} +2026/03/21 22:52:28 [log_collector] {"stage_name":"log_collector","events_processed":26452,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5290.4,"last_update":"2026-03-21T22:52:23.869430838Z"} +2026/03/21 22:52:28 [metric_collector] {"stage_name":"metric_collector","events_processed":17194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3438.8,"last_update":"2026-03-21T22:52:23.869871402Z"} +2026/03/21 22:52:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:52:23.878426391Z"} +2026/03/21 22:52:28 ───────────────────────────────────────────────── +2026/03/21 22:52:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:52:33 [metric_collector] {"stage_name":"metric_collector","events_processed":17199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3439.8,"last_update":"2026-03-21T22:52:28.86994649Z"} +2026/03/21 22:52:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:52:28.876087233Z"} +2026/03/21 22:52:33 [transform_engine] {"stage_name":"transform_engine","events_processed":573,"events_dropped":0,"avg_latency_ms":919.0187330923894,"throughput_eps":0,"last_update":"2026-03-21T22:52:28.965128902Z"} +2026/03/21 22:52:33 [detection_layer] {"stage_name":"detection_layer","events_processed":573,"events_dropped":0,"avg_latency_ms":16.73621798648844,"throughput_eps":0,"last_update":"2026-03-21T22:52:28.966304253Z"} +2026/03/21 22:52:33 [log_collector] {"stage_name":"log_collector","events_processed":26506,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5301.2,"last_update":"2026-03-21T22:52:28.869593282Z"} +2026/03/21 22:52:33 ───────────────────────────────────────────────── +2026/03/21 22:52:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:52:38 [log_collector] {"stage_name":"log_collector","events_processed":26804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5360.8,"last_update":"2026-03-21T22:52:33.870767466Z"} +2026/03/21 22:52:38 [metric_collector] {"stage_name":"metric_collector","events_processed":17204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3440.8,"last_update":"2026-03-21T22:52:33.871722686Z"} +2026/03/21 22:52:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:52:33.876491142Z"} +2026/03/21 22:52:38 [transform_engine] {"stage_name":"transform_engine","events_processed":573,"events_dropped":0,"avg_latency_ms":919.0187330923894,"throughput_eps":0,"last_update":"2026-03-21T22:52:33.965569741Z"} +2026/03/21 22:52:38 [detection_layer] {"stage_name":"detection_layer","events_processed":573,"events_dropped":0,"avg_latency_ms":16.73621798648844,"throughput_eps":0,"last_update":"2026-03-21T22:52:33.965560744Z"} +2026/03/21 22:52:38 ───────────────────────────────────────────────── +2026/03/21 22:52:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:52:43 [log_collector] {"stage_name":"log_collector","events_processed":26806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5361.2,"last_update":"2026-03-21T22:52:38.869410489Z"} +2026/03/21 22:52:43 [metric_collector] {"stage_name":"metric_collector","events_processed":17209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3441.8,"last_update":"2026-03-21T22:52:38.869709011Z"} +2026/03/21 22:52:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6886,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:52:38.878405522Z"} +2026/03/21 22:52:43 [transform_engine] {"stage_name":"transform_engine","events_processed":573,"events_dropped":0,"avg_latency_ms":919.0187330923894,"throughput_eps":0,"last_update":"2026-03-21T22:52:38.965682188Z"} +2026/03/21 22:52:43 [detection_layer] {"stage_name":"detection_layer","events_processed":573,"events_dropped":0,"avg_latency_ms":16.73621798648844,"throughput_eps":0,"last_update":"2026-03-21T22:52:38.965669174Z"} +2026/03/21 22:52:43 ───────────────────────────────────────────────── +2026/03/21 22:52:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:52:48 [log_collector] {"stage_name":"log_collector","events_processed":26806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5361.2,"last_update":"2026-03-21T22:52:43.869910259Z"} +2026/03/21 22:52:48 [metric_collector] {"stage_name":"metric_collector","events_processed":17214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3442.8,"last_update":"2026-03-21T22:52:43.870398886Z"} +2026/03/21 22:52:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:52:43.879375482Z"} +2026/03/21 22:52:48 [transform_engine] {"stage_name":"transform_engine","events_processed":573,"events_dropped":0,"avg_latency_ms":919.0187330923894,"throughput_eps":0,"last_update":"2026-03-21T22:52:43.965565658Z"} +2026/03/21 22:52:48 [detection_layer] {"stage_name":"detection_layer","events_processed":573,"events_dropped":0,"avg_latency_ms":16.73621798648844,"throughput_eps":0,"last_update":"2026-03-21T22:52:43.965553024Z"} +2026/03/21 22:52:48 ───────────────────────────────────────────────── +2026/03/21 22:52:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:52:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:52:48.882813531Z"} +2026/03/21 22:52:53 [transform_engine] {"stage_name":"transform_engine","events_processed":573,"events_dropped":0,"avg_latency_ms":919.0187330923894,"throughput_eps":0,"last_update":"2026-03-21T22:52:43.965565658Z"} +2026/03/21 22:52:53 [detection_layer] {"stage_name":"detection_layer","events_processed":573,"events_dropped":0,"avg_latency_ms":16.73621798648844,"throughput_eps":0,"last_update":"2026-03-21T22:52:48.965971799Z"} +2026/03/21 22:52:53 [log_collector] {"stage_name":"log_collector","events_processed":26809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5361.8,"last_update":"2026-03-21T22:52:48.869420403Z"} +2026/03/21 22:52:53 [metric_collector] {"stage_name":"metric_collector","events_processed":17219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3443.8,"last_update":"2026-03-21T22:52:48.86962203Z"} +2026/03/21 22:52:53 ───────────────────────────────────────────────── +2026/03/21 22:52:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:52:58 [log_collector] {"stage_name":"log_collector","events_processed":26809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5361.8,"last_update":"2026-03-21T22:52:53.86941226Z"} +2026/03/21 22:52:58 [metric_collector] {"stage_name":"metric_collector","events_processed":17224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3444.8,"last_update":"2026-03-21T22:52:53.869754626Z"} +2026/03/21 22:52:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6892,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:52:53.87767565Z"} +2026/03/21 22:52:58 [transform_engine] {"stage_name":"transform_engine","events_processed":574,"events_dropped":0,"avg_latency_ms":2080.230010873912,"throughput_eps":0,"last_update":"2026-03-21T22:52:55.691070658Z"} +2026/03/21 22:52:58 [detection_layer] {"stage_name":"detection_layer","events_processed":573,"events_dropped":0,"avg_latency_ms":16.73621798648844,"throughput_eps":0,"last_update":"2026-03-21T22:52:53.965909482Z"} +2026/03/21 22:52:58 ───────────────────────────────────────────────── +2026/03/21 22:53:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:53:03 [metric_collector] {"stage_name":"metric_collector","events_processed":17229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3445.8,"last_update":"2026-03-21T22:52:58.870403962Z"} +2026/03/21 22:53:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:52:58.878678523Z"} +2026/03/21 22:53:03 [transform_engine] {"stage_name":"transform_engine","events_processed":574,"events_dropped":0,"avg_latency_ms":2080.230010873912,"throughput_eps":0,"last_update":"2026-03-21T22:52:58.965917679Z"} +2026/03/21 22:53:03 [detection_layer] {"stage_name":"detection_layer","events_processed":574,"events_dropped":0,"avg_latency_ms":16.089425589190753,"throughput_eps":0,"last_update":"2026-03-21T22:52:58.966024794Z"} +2026/03/21 22:53:03 [log_collector] {"stage_name":"log_collector","events_processed":26820,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5364,"last_update":"2026-03-21T22:52:58.869936817Z"} +2026/03/21 22:53:03 ───────────────────────────────────────────────── +2026/03/21 22:53:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:53:08 [detection_layer] {"stage_name":"detection_layer","events_processed":574,"events_dropped":0,"avg_latency_ms":16.089425589190753,"throughput_eps":0,"last_update":"2026-03-21T22:53:03.966004608Z"} +2026/03/21 22:53:08 [log_collector] {"stage_name":"log_collector","events_processed":26834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5366.8,"last_update":"2026-03-21T22:53:03.870298572Z"} +2026/03/21 22:53:08 [metric_collector] {"stage_name":"metric_collector","events_processed":17234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3446.8,"last_update":"2026-03-21T22:53:03.870606562Z"} +2026/03/21 22:53:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6896,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:53:03.878781984Z"} +2026/03/21 22:53:08 [transform_engine] {"stage_name":"transform_engine","events_processed":574,"events_dropped":0,"avg_latency_ms":2080.230010873912,"throughput_eps":0,"last_update":"2026-03-21T22:53:03.966025277Z"} +2026/03/21 22:53:08 ───────────────────────────────────────────────── +2026/03/21 22:53:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:53:13 [transform_engine] {"stage_name":"transform_engine","events_processed":574,"events_dropped":0,"avg_latency_ms":2080.230010873912,"throughput_eps":0,"last_update":"2026-03-21T22:53:08.966181437Z"} +2026/03/21 22:53:13 [detection_layer] {"stage_name":"detection_layer","events_processed":574,"events_dropped":0,"avg_latency_ms":16.089425589190753,"throughput_eps":0,"last_update":"2026-03-21T22:53:08.966160917Z"} +2026/03/21 22:53:13 [log_collector] {"stage_name":"log_collector","events_processed":26836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5367.2,"last_update":"2026-03-21T22:53:08.869835735Z"} +2026/03/21 22:53:13 [metric_collector] {"stage_name":"metric_collector","events_processed":17239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3447.8,"last_update":"2026-03-21T22:53:08.87031329Z"} +2026/03/21 22:53:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6898,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:53:08.878766985Z"} +2026/03/21 22:53:13 ───────────────────────────────────────────────── +2026/03/21 22:53:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:53:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6900,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:53:13.878083586Z"} +2026/03/21 22:53:18 [transform_engine] {"stage_name":"transform_engine","events_processed":574,"events_dropped":0,"avg_latency_ms":2080.230010873912,"throughput_eps":0,"last_update":"2026-03-21T22:53:13.965323243Z"} +2026/03/21 22:53:18 [detection_layer] {"stage_name":"detection_layer","events_processed":574,"events_dropped":0,"avg_latency_ms":16.089425589190753,"throughput_eps":0,"last_update":"2026-03-21T22:53:13.965296682Z"} +2026/03/21 22:53:18 [log_collector] {"stage_name":"log_collector","events_processed":26836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5367.2,"last_update":"2026-03-21T22:53:13.869432844Z"} +2026/03/21 22:53:18 [metric_collector] {"stage_name":"metric_collector","events_processed":17244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3448.8,"last_update":"2026-03-21T22:53:13.869779959Z"} +2026/03/21 22:53:18 ───────────────────────────────────────────────── +2026/03/21 22:53:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:53:23 [detection_layer] {"stage_name":"detection_layer","events_processed":574,"events_dropped":0,"avg_latency_ms":16.089425589190753,"throughput_eps":0,"last_update":"2026-03-21T22:53:18.965908814Z"} +2026/03/21 22:53:23 [log_collector] {"stage_name":"log_collector","events_processed":26836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5367.2,"last_update":"2026-03-21T22:53:18.870272251Z"} +2026/03/21 22:53:23 [metric_collector] {"stage_name":"metric_collector","events_processed":17249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3449.8,"last_update":"2026-03-21T22:53:18.870309483Z"} +2026/03/21 22:53:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:53:18.87872797Z"} +2026/03/21 22:53:23 [transform_engine] {"stage_name":"transform_engine","events_processed":575,"events_dropped":0,"avg_latency_ms":1684.8435386991296,"throughput_eps":0,"last_update":"2026-03-21T22:53:19.069260327Z"} +2026/03/21 22:53:23 ───────────────────────────────────────────────── +2026/03/21 22:53:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:53:28 [log_collector] {"stage_name":"log_collector","events_processed":26836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5367.2,"last_update":"2026-03-21T22:53:23.870043252Z"} +2026/03/21 22:53:28 [metric_collector] {"stage_name":"metric_collector","events_processed":17254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3450.8,"last_update":"2026-03-21T22:53:23.870523552Z"} +2026/03/21 22:53:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:53:23.878898888Z"} +2026/03/21 22:53:28 [transform_engine] {"stage_name":"transform_engine","events_processed":575,"events_dropped":0,"avg_latency_ms":1684.8435386991296,"throughput_eps":0,"last_update":"2026-03-21T22:53:23.966117513Z"} +2026/03/21 22:53:28 [detection_layer] {"stage_name":"detection_layer","events_processed":575,"events_dropped":0,"avg_latency_ms":15.958436071352603,"throughput_eps":0,"last_update":"2026-03-21T22:53:23.96619421Z"} +2026/03/21 22:53:28 ───────────────────────────────────────────────── +2026/03/21 22:53:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:53:33 [log_collector] {"stage_name":"log_collector","events_processed":26836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5367.2,"last_update":"2026-03-21T22:53:28.870040297Z"} +2026/03/21 22:53:33 [metric_collector] {"stage_name":"metric_collector","events_processed":17259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3451.8,"last_update":"2026-03-21T22:53:28.87053802Z"} +2026/03/21 22:53:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6906,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:53:28.88042494Z"} +2026/03/21 22:53:33 [transform_engine] {"stage_name":"transform_engine","events_processed":575,"events_dropped":0,"avg_latency_ms":1684.8435386991296,"throughput_eps":0,"last_update":"2026-03-21T22:53:28.965835894Z"} +2026/03/21 22:53:33 [detection_layer] {"stage_name":"detection_layer","events_processed":575,"events_dropped":0,"avg_latency_ms":15.958436071352603,"throughput_eps":0,"last_update":"2026-03-21T22:53:28.965811197Z"} +2026/03/21 22:53:33 ───────────────────────────────────────────────── +2026/03/21 22:53:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:53:38 [log_collector] {"stage_name":"log_collector","events_processed":26836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5367.2,"last_update":"2026-03-21T22:53:33.869564434Z"} +2026/03/21 22:53:38 [metric_collector] {"stage_name":"metric_collector","events_processed":17264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3452.8,"last_update":"2026-03-21T22:53:33.870299413Z"} +2026/03/21 22:53:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6908,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:53:33.878734682Z"} +2026/03/21 22:53:38 [transform_engine] {"stage_name":"transform_engine","events_processed":575,"events_dropped":0,"avg_latency_ms":1684.8435386991296,"throughput_eps":0,"last_update":"2026-03-21T22:53:33.966161166Z"} +2026/03/21 22:53:38 [detection_layer] {"stage_name":"detection_layer","events_processed":575,"events_dropped":0,"avg_latency_ms":15.958436071352603,"throughput_eps":0,"last_update":"2026-03-21T22:53:33.966128594Z"} +2026/03/21 22:53:38 ───────────────────────────────────────────────── +2026/03/21 22:53:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:53:43 [log_collector] {"stage_name":"log_collector","events_processed":26836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5367.2,"last_update":"2026-03-21T22:53:38.870291616Z"} +2026/03/21 22:53:43 [metric_collector] {"stage_name":"metric_collector","events_processed":17269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3453.8,"last_update":"2026-03-21T22:53:38.870875304Z"} +2026/03/21 22:53:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:53:38.878975682Z"} +2026/03/21 22:53:43 [transform_engine] {"stage_name":"transform_engine","events_processed":575,"events_dropped":0,"avg_latency_ms":1684.8435386991296,"throughput_eps":0,"last_update":"2026-03-21T22:53:38.965133917Z"} +2026/03/21 22:53:43 [detection_layer] {"stage_name":"detection_layer","events_processed":575,"events_dropped":0,"avg_latency_ms":15.958436071352603,"throughput_eps":0,"last_update":"2026-03-21T22:53:38.966378181Z"} +2026/03/21 22:53:43 ───────────────────────────────────────────────── +2026/03/21 22:53:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:53:48 [log_collector] {"stage_name":"log_collector","events_processed":26836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5367.2,"last_update":"2026-03-21T22:53:43.869941483Z"} +2026/03/21 22:53:48 [metric_collector] {"stage_name":"metric_collector","events_processed":17274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3454.8,"last_update":"2026-03-21T22:53:43.870979551Z"} +2026/03/21 22:53:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6912,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:53:43.87882971Z"} +2026/03/21 22:53:48 [transform_engine] {"stage_name":"transform_engine","events_processed":575,"events_dropped":0,"avg_latency_ms":1684.8435386991296,"throughput_eps":0,"last_update":"2026-03-21T22:53:43.966186371Z"} +2026/03/21 22:53:48 [detection_layer] {"stage_name":"detection_layer","events_processed":575,"events_dropped":0,"avg_latency_ms":15.958436071352603,"throughput_eps":0,"last_update":"2026-03-21T22:53:43.966228371Z"} +2026/03/21 22:53:48 ───────────────────────────────────────────────── +2026/03/21 22:53:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:53:53 [log_collector] {"stage_name":"log_collector","events_processed":26836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5367.2,"last_update":"2026-03-21T22:53:48.869756966Z"} +2026/03/21 22:53:53 [metric_collector] {"stage_name":"metric_collector","events_processed":17279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3455.8,"last_update":"2026-03-21T22:53:48.870483217Z"} +2026/03/21 22:53:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:53:48.878222453Z"} +2026/03/21 22:53:53 [transform_engine] {"stage_name":"transform_engine","events_processed":576,"events_dropped":0,"avg_latency_ms":1362.2231499593038,"throughput_eps":0,"last_update":"2026-03-21T22:53:49.03723192Z"} +2026/03/21 22:53:53 [detection_layer] {"stage_name":"detection_layer","events_processed":575,"events_dropped":0,"avg_latency_ms":15.958436071352603,"throughput_eps":0,"last_update":"2026-03-21T22:53:48.965542725Z"} +2026/03/21 22:53:53 ───────────────────────────────────────────────── +2026/03/21 22:53:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:53:58 [log_collector] {"stage_name":"log_collector","events_processed":26836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5367.2,"last_update":"2026-03-21T22:53:53.870407901Z"} +2026/03/21 22:53:58 [metric_collector] {"stage_name":"metric_collector","events_processed":17284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3456.8,"last_update":"2026-03-21T22:53:53.87072088Z"} +2026/03/21 22:53:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:53:53.880135275Z"} +2026/03/21 22:53:58 [transform_engine] {"stage_name":"transform_engine","events_processed":576,"events_dropped":0,"avg_latency_ms":1362.2231499593038,"throughput_eps":0,"last_update":"2026-03-21T22:53:53.96548431Z"} +2026/03/21 22:53:58 [detection_layer] {"stage_name":"detection_layer","events_processed":576,"events_dropped":0,"avg_latency_ms":16.926439657082085,"throughput_eps":0,"last_update":"2026-03-21T22:53:53.965468661Z"} +2026/03/21 22:53:58 ───────────────────────────────────────────────── +2026/03/21 22:54:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:54:03 [transform_engine] {"stage_name":"transform_engine","events_processed":576,"events_dropped":0,"avg_latency_ms":1362.2231499593038,"throughput_eps":0,"last_update":"2026-03-21T22:53:58.965812956Z"} +2026/03/21 22:54:03 [detection_layer] {"stage_name":"detection_layer","events_processed":576,"events_dropped":0,"avg_latency_ms":16.926439657082085,"throughput_eps":0,"last_update":"2026-03-21T22:53:58.965806264Z"} +2026/03/21 22:54:03 [log_collector] {"stage_name":"log_collector","events_processed":26836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5367.2,"last_update":"2026-03-21T22:53:58.869908791Z"} +2026/03/21 22:54:03 [metric_collector] {"stage_name":"metric_collector","events_processed":17289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3457.8,"last_update":"2026-03-21T22:53:58.869914231Z"} +2026/03/21 22:54:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6918,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:53:58.878535707Z"} +2026/03/21 22:54:03 ───────────────────────────────────────────────── +2026/03/21 22:54:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:54:08 [log_collector] {"stage_name":"log_collector","events_processed":26836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5367.2,"last_update":"2026-03-21T22:54:03.869606046Z"} +2026/03/21 22:54:08 [metric_collector] {"stage_name":"metric_collector","events_processed":17294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3458.8,"last_update":"2026-03-21T22:54:03.869868369Z"} +2026/03/21 22:54:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6920,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:54:03.878329028Z"} +2026/03/21 22:54:08 [transform_engine] {"stage_name":"transform_engine","events_processed":576,"events_dropped":0,"avg_latency_ms":1362.2231499593038,"throughput_eps":0,"last_update":"2026-03-21T22:54:03.96567605Z"} +2026/03/21 22:54:08 [detection_layer] {"stage_name":"detection_layer","events_processed":576,"events_dropped":0,"avg_latency_ms":16.926439657082085,"throughput_eps":0,"last_update":"2026-03-21T22:54:03.965664648Z"} +2026/03/21 22:54:08 ───────────────────────────────────────────────── +2026/03/21 22:54:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:54:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:54:08.878293586Z"} +2026/03/21 22:54:13 [transform_engine] {"stage_name":"transform_engine","events_processed":576,"events_dropped":0,"avg_latency_ms":1362.2231499593038,"throughput_eps":0,"last_update":"2026-03-21T22:54:08.96554197Z"} +2026/03/21 22:54:13 [detection_layer] {"stage_name":"detection_layer","events_processed":576,"events_dropped":0,"avg_latency_ms":16.926439657082085,"throughput_eps":0,"last_update":"2026-03-21T22:54:08.965528674Z"} +2026/03/21 22:54:13 [log_collector] {"stage_name":"log_collector","events_processed":26836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5367.2,"last_update":"2026-03-21T22:54:08.869467838Z"} +2026/03/21 22:54:13 [metric_collector] {"stage_name":"metric_collector","events_processed":17299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3459.8,"last_update":"2026-03-21T22:54:08.869803391Z"} +2026/03/21 22:54:13 ───────────────────────────────────────────────── +Saved state: 18 clusters, 26837 messages, reason: none +2026/03/21 22:54:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:54:18 [metric_collector] {"stage_name":"metric_collector","events_processed":17304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3460.8,"last_update":"2026-03-21T22:54:13.869811573Z"} +2026/03/21 22:54:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:54:13.878530295Z"} +2026/03/21 22:54:18 [transform_engine] {"stage_name":"transform_engine","events_processed":576,"events_dropped":0,"avg_latency_ms":1362.2231499593038,"throughput_eps":0,"last_update":"2026-03-21T22:54:13.965879652Z"} +2026/03/21 22:54:18 [detection_layer] {"stage_name":"detection_layer","events_processed":576,"events_dropped":0,"avg_latency_ms":16.926439657082085,"throughput_eps":0,"last_update":"2026-03-21T22:54:13.965868139Z"} +2026/03/21 22:54:18 [log_collector] {"stage_name":"log_collector","events_processed":26836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5367.2,"last_update":"2026-03-21T22:54:13.869504213Z"} +2026/03/21 22:54:18 ───────────────────────────────────────────────── +2026/03/21 22:54:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:54:23 [transform_engine] {"stage_name":"transform_engine","events_processed":577,"events_dropped":0,"avg_latency_ms":1113.8783647674431,"throughput_eps":0,"last_update":"2026-03-21T22:54:19.086031264Z"} +2026/03/21 22:54:23 [detection_layer] {"stage_name":"detection_layer","events_processed":576,"events_dropped":0,"avg_latency_ms":16.926439657082085,"throughput_eps":0,"last_update":"2026-03-21T22:54:18.96552085Z"} +2026/03/21 22:54:23 [log_collector] {"stage_name":"log_collector","events_processed":26850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5370,"last_update":"2026-03-21T22:54:18.870153112Z"} +2026/03/21 22:54:23 [metric_collector] {"stage_name":"metric_collector","events_processed":17309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3461.8,"last_update":"2026-03-21T22:54:18.870531356Z"} +2026/03/21 22:54:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:54:18.879319291Z"} +2026/03/21 22:54:23 ───────────────────────────────────────────────── +2026/03/21 22:54:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:54:28 [log_collector] {"stage_name":"log_collector","events_processed":26850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5370,"last_update":"2026-03-21T22:54:23.870006706Z"} +2026/03/21 22:54:28 [metric_collector] {"stage_name":"metric_collector","events_processed":17314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3462.8,"last_update":"2026-03-21T22:54:23.87053092Z"} +2026/03/21 22:54:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:54:23.879095237Z"} +2026/03/21 22:54:28 [transform_engine] {"stage_name":"transform_engine","events_processed":577,"events_dropped":0,"avg_latency_ms":1113.8783647674431,"throughput_eps":0,"last_update":"2026-03-21T22:54:23.965266548Z"} +2026/03/21 22:54:28 [detection_layer] {"stage_name":"detection_layer","events_processed":577,"events_dropped":0,"avg_latency_ms":17.61701592566567,"throughput_eps":0,"last_update":"2026-03-21T22:54:23.96530473Z"} +2026/03/21 22:54:28 ───────────────────────────────────────────────── +2026/03/21 22:54:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:54:33 [log_collector] {"stage_name":"log_collector","events_processed":26850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5370,"last_update":"2026-03-21T22:54:28.869890369Z"} +2026/03/21 22:54:33 [metric_collector] {"stage_name":"metric_collector","events_processed":17319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3463.8,"last_update":"2026-03-21T22:54:28.87039205Z"} +2026/03/21 22:54:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6930,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:54:28.879324472Z"} +2026/03/21 22:54:33 [transform_engine] {"stage_name":"transform_engine","events_processed":577,"events_dropped":0,"avg_latency_ms":1113.8783647674431,"throughput_eps":0,"last_update":"2026-03-21T22:54:28.965671378Z"} +2026/03/21 22:54:33 [detection_layer] {"stage_name":"detection_layer","events_processed":577,"events_dropped":0,"avg_latency_ms":17.61701592566567,"throughput_eps":0,"last_update":"2026-03-21T22:54:28.965659986Z"} +2026/03/21 22:54:33 ───────────────────────────────────────────────── +2026/03/21 22:54:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:54:38 [log_collector] {"stage_name":"log_collector","events_processed":26850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5370,"last_update":"2026-03-21T22:54:33.86970652Z"} +2026/03/21 22:54:38 [metric_collector] {"stage_name":"metric_collector","events_processed":17324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3464.8,"last_update":"2026-03-21T22:54:33.870100534Z"} +2026/03/21 22:54:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:54:33.879172824Z"} +2026/03/21 22:54:38 [transform_engine] {"stage_name":"transform_engine","events_processed":577,"events_dropped":0,"avg_latency_ms":1113.8783647674431,"throughput_eps":0,"last_update":"2026-03-21T22:54:33.965870714Z"} +2026/03/21 22:54:38 [detection_layer] {"stage_name":"detection_layer","events_processed":577,"events_dropped":0,"avg_latency_ms":17.61701592566567,"throughput_eps":0,"last_update":"2026-03-21T22:54:33.96589469Z"} +2026/03/21 22:54:38 ───────────────────────────────────────────────── +2026/03/21 22:54:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:54:43 [log_collector] {"stage_name":"log_collector","events_processed":26850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5370,"last_update":"2026-03-21T22:54:38.869399034Z"} +2026/03/21 22:54:43 [metric_collector] {"stage_name":"metric_collector","events_processed":17329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3465.8,"last_update":"2026-03-21T22:54:38.869856861Z"} +2026/03/21 22:54:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:54:38.878358969Z"} +2026/03/21 22:54:43 [transform_engine] {"stage_name":"transform_engine","events_processed":577,"events_dropped":0,"avg_latency_ms":1113.8783647674431,"throughput_eps":0,"last_update":"2026-03-21T22:54:38.965639885Z"} +2026/03/21 22:54:43 [detection_layer] {"stage_name":"detection_layer","events_processed":577,"events_dropped":0,"avg_latency_ms":17.61701592566567,"throughput_eps":0,"last_update":"2026-03-21T22:54:38.965628763Z"} +2026/03/21 22:54:43 ───────────────────────────────────────────────── +2026/03/21 22:54:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:54:48 [log_collector] {"stage_name":"log_collector","events_processed":26850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5370,"last_update":"2026-03-21T22:54:43.870217174Z"} +2026/03/21 22:54:48 [metric_collector] {"stage_name":"metric_collector","events_processed":17334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3466.8,"last_update":"2026-03-21T22:54:43.870937985Z"} +2026/03/21 22:54:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:54:43.879368366Z"} +2026/03/21 22:54:48 [transform_engine] {"stage_name":"transform_engine","events_processed":577,"events_dropped":0,"avg_latency_ms":1113.8783647674431,"throughput_eps":0,"last_update":"2026-03-21T22:54:43.965726904Z"} +2026/03/21 22:54:48 [detection_layer] {"stage_name":"detection_layer","events_processed":577,"events_dropped":0,"avg_latency_ms":17.61701592566567,"throughput_eps":0,"last_update":"2026-03-21T22:54:43.965714961Z"} +2026/03/21 22:54:48 ───────────────────────────────────────────────── +2026/03/21 22:54:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:54:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:54:48.87819471Z"} +2026/03/21 22:54:53 [transform_engine] {"stage_name":"transform_engine","events_processed":578,"events_dropped":0,"avg_latency_ms":908.6235630139546,"throughput_eps":0,"last_update":"2026-03-21T22:54:49.053010858Z"} +2026/03/21 22:54:53 [detection_layer] {"stage_name":"detection_layer","events_processed":577,"events_dropped":0,"avg_latency_ms":17.61701592566567,"throughput_eps":0,"last_update":"2026-03-21T22:54:48.965390713Z"} +2026/03/21 22:54:53 [log_collector] {"stage_name":"log_collector","events_processed":26850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5370,"last_update":"2026-03-21T22:54:48.869919546Z"} +2026/03/21 22:54:53 [metric_collector] {"stage_name":"metric_collector","events_processed":17339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3467.8,"last_update":"2026-03-21T22:54:48.870475612Z"} +2026/03/21 22:54:53 ───────────────────────────────────────────────── +2026/03/21 22:54:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:54:58 [transform_engine] {"stage_name":"transform_engine","events_processed":578,"events_dropped":0,"avg_latency_ms":908.6235630139546,"throughput_eps":0,"last_update":"2026-03-21T22:54:53.965694917Z"} +2026/03/21 22:54:58 [detection_layer] {"stage_name":"detection_layer","events_processed":578,"events_dropped":0,"avg_latency_ms":18.088004740532536,"throughput_eps":0,"last_update":"2026-03-21T22:54:53.965683395Z"} +2026/03/21 22:54:58 [log_collector] {"stage_name":"log_collector","events_processed":26850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5370,"last_update":"2026-03-21T22:54:53.869543719Z"} +2026/03/21 22:54:58 [metric_collector] {"stage_name":"metric_collector","events_processed":17344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3468.8,"last_update":"2026-03-21T22:54:53.870236386Z"} +2026/03/21 22:54:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6940,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:54:53.878339769Z"} +2026/03/21 22:54:58 ───────────────────────────────────────────────── +2026/03/21 22:55:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:55:03 [transform_engine] {"stage_name":"transform_engine","events_processed":578,"events_dropped":0,"avg_latency_ms":908.6235630139546,"throughput_eps":0,"last_update":"2026-03-21T22:54:58.96585202Z"} +2026/03/21 22:55:03 [detection_layer] {"stage_name":"detection_layer","events_processed":578,"events_dropped":0,"avg_latency_ms":18.088004740532536,"throughput_eps":0,"last_update":"2026-03-21T22:54:58.965846289Z"} +2026/03/21 22:55:03 [log_collector] {"stage_name":"log_collector","events_processed":26850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5370,"last_update":"2026-03-21T22:54:58.869490889Z"} +2026/03/21 22:55:03 [metric_collector] {"stage_name":"metric_collector","events_processed":17349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3469.8,"last_update":"2026-03-21T22:54:58.869826071Z"} +2026/03/21 22:55:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:54:58.878561085Z"} +2026/03/21 22:55:03 ───────────────────────────────────────────────── +2026/03/21 22:55:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:55:08 [metric_collector] {"stage_name":"metric_collector","events_processed":17354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3470.8,"last_update":"2026-03-21T22:55:03.870485015Z"} +2026/03/21 22:55:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:55:03.878892452Z"} +2026/03/21 22:55:08 [transform_engine] {"stage_name":"transform_engine","events_processed":578,"events_dropped":0,"avg_latency_ms":908.6235630139546,"throughput_eps":0,"last_update":"2026-03-21T22:55:03.965102535Z"} +2026/03/21 22:55:08 [detection_layer] {"stage_name":"detection_layer","events_processed":578,"events_dropped":0,"avg_latency_ms":18.088004740532536,"throughput_eps":0,"last_update":"2026-03-21T22:55:03.966267477Z"} +2026/03/21 22:55:08 [log_collector] {"stage_name":"log_collector","events_processed":26850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5370,"last_update":"2026-03-21T22:55:03.869915664Z"} +2026/03/21 22:55:08 ───────────────────────────────────────────────── +2026/03/21 22:55:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:55:13 [metric_collector] {"stage_name":"metric_collector","events_processed":17359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3471.8,"last_update":"2026-03-21T22:55:08.871006055Z"} +2026/03/21 22:55:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:55:08.878075709Z"} +2026/03/21 22:55:13 [transform_engine] {"stage_name":"transform_engine","events_processed":578,"events_dropped":0,"avg_latency_ms":908.6235630139546,"throughput_eps":0,"last_update":"2026-03-21T22:55:08.965288133Z"} +2026/03/21 22:55:13 [detection_layer] {"stage_name":"detection_layer","events_processed":578,"events_dropped":0,"avg_latency_ms":18.088004740532536,"throughput_eps":0,"last_update":"2026-03-21T22:55:08.965279156Z"} +2026/03/21 22:55:13 [log_collector] {"stage_name":"log_collector","events_processed":26850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5370,"last_update":"2026-03-21T22:55:08.870416325Z"} +2026/03/21 22:55:13 ───────────────────────────────────────────────── +2026/03/21 22:55:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:55:18 [log_collector] {"stage_name":"log_collector","events_processed":26850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5370,"last_update":"2026-03-21T22:55:13.869566999Z"} +2026/03/21 22:55:18 [metric_collector] {"stage_name":"metric_collector","events_processed":17364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3472.8,"last_update":"2026-03-21T22:55:13.870019006Z"} +2026/03/21 22:55:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:55:13.8785299Z"} +2026/03/21 22:55:18 [transform_engine] {"stage_name":"transform_engine","events_processed":578,"events_dropped":0,"avg_latency_ms":908.6235630139546,"throughput_eps":0,"last_update":"2026-03-21T22:55:13.965738397Z"} +2026/03/21 22:55:18 [detection_layer] {"stage_name":"detection_layer","events_processed":578,"events_dropped":0,"avg_latency_ms":18.088004740532536,"throughput_eps":0,"last_update":"2026-03-21T22:55:13.965718649Z"} +2026/03/21 22:55:18 ───────────────────────────────────────────────── +Saved state: 18 clusters, 26851 messages, reason: none +2026/03/21 22:55:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:55:23 [log_collector] {"stage_name":"log_collector","events_processed":26850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5370,"last_update":"2026-03-21T22:55:18.869889989Z"} +2026/03/21 22:55:23 [metric_collector] {"stage_name":"metric_collector","events_processed":17369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3473.8,"last_update":"2026-03-21T22:55:18.870322288Z"} +2026/03/21 22:55:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:55:18.879461956Z"} +2026/03/21 22:55:23 [transform_engine] {"stage_name":"transform_engine","events_processed":579,"events_dropped":0,"avg_latency_ms":741.6514624111637,"throughput_eps":0,"last_update":"2026-03-21T22:55:19.039406756Z"} +2026/03/21 22:55:23 [detection_layer] {"stage_name":"detection_layer","events_processed":578,"events_dropped":0,"avg_latency_ms":18.088004740532536,"throughput_eps":0,"last_update":"2026-03-21T22:55:18.965629028Z"} +2026/03/21 22:55:23 ───────────────────────────────────────────────── +2026/03/21 22:55:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:55:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:55:23.876328413Z"} +2026/03/21 22:55:28 [transform_engine] {"stage_name":"transform_engine","events_processed":579,"events_dropped":0,"avg_latency_ms":741.6514624111637,"throughput_eps":0,"last_update":"2026-03-21T22:55:23.965579083Z"} +2026/03/21 22:55:28 [detection_layer] {"stage_name":"detection_layer","events_processed":579,"events_dropped":0,"avg_latency_ms":18.79920439242603,"throughput_eps":0,"last_update":"2026-03-21T22:55:23.965465866Z"} +2026/03/21 22:55:28 [log_collector] {"stage_name":"log_collector","events_processed":26855,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5371,"last_update":"2026-03-21T22:55:23.869419017Z"} +2026/03/21 22:55:28 [metric_collector] {"stage_name":"metric_collector","events_processed":17374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3474.8,"last_update":"2026-03-21T22:55:23.869900129Z"} +2026/03/21 22:55:28 ───────────────────────────────────────────────── +2026/03/21 22:55:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:55:33 [metric_collector] {"stage_name":"metric_collector","events_processed":17379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3475.8,"last_update":"2026-03-21T22:55:28.870132935Z"} +2026/03/21 22:55:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:55:28.881774527Z"} +2026/03/21 22:55:33 [transform_engine] {"stage_name":"transform_engine","events_processed":579,"events_dropped":0,"avg_latency_ms":741.6514624111637,"throughput_eps":0,"last_update":"2026-03-21T22:55:28.965987004Z"} +2026/03/21 22:55:33 [detection_layer] {"stage_name":"detection_layer","events_processed":579,"events_dropped":0,"avg_latency_ms":18.79920439242603,"throughput_eps":0,"last_update":"2026-03-21T22:55:28.966044143Z"} +2026/03/21 22:55:33 [log_collector] {"stage_name":"log_collector","events_processed":26855,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5371,"last_update":"2026-03-21T22:55:28.869657414Z"} +2026/03/21 22:55:33 ───────────────────────────────────────────────── +2026/03/21 22:55:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:55:38 [log_collector] {"stage_name":"log_collector","events_processed":26855,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5371,"last_update":"2026-03-21T22:55:33.869490023Z"} +2026/03/21 22:55:38 [metric_collector] {"stage_name":"metric_collector","events_processed":17384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3476.8,"last_update":"2026-03-21T22:55:33.869943752Z"} +2026/03/21 22:55:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:55:33.877520578Z"} +2026/03/21 22:55:38 [transform_engine] {"stage_name":"transform_engine","events_processed":579,"events_dropped":0,"avg_latency_ms":741.6514624111637,"throughput_eps":0,"last_update":"2026-03-21T22:55:33.965746304Z"} +2026/03/21 22:55:38 [detection_layer] {"stage_name":"detection_layer","events_processed":579,"events_dropped":0,"avg_latency_ms":18.79920439242603,"throughput_eps":0,"last_update":"2026-03-21T22:55:33.965719082Z"} +2026/03/21 22:55:38 ───────────────────────────────────────────────── +2026/03/21 22:55:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:55:43 [transform_engine] {"stage_name":"transform_engine","events_processed":579,"events_dropped":0,"avg_latency_ms":741.6514624111637,"throughput_eps":0,"last_update":"2026-03-21T22:55:38.965330356Z"} +2026/03/21 22:55:43 [detection_layer] {"stage_name":"detection_layer","events_processed":579,"events_dropped":0,"avg_latency_ms":18.79920439242603,"throughput_eps":0,"last_update":"2026-03-21T22:55:38.965314776Z"} +2026/03/21 22:55:43 [log_collector] {"stage_name":"log_collector","events_processed":26855,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5371,"last_update":"2026-03-21T22:55:43.869416713Z"} +2026/03/21 22:55:43 [metric_collector] {"stage_name":"metric_collector","events_processed":17389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3477.8,"last_update":"2026-03-21T22:55:38.869809626Z"} +2026/03/21 22:55:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6958,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:55:38.87815903Z"} +2026/03/21 22:55:43 ───────────────────────────────────────────────── +2026/03/21 22:55:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:55:48 [log_collector] {"stage_name":"log_collector","events_processed":26855,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5371,"last_update":"2026-03-21T22:55:43.869416713Z"} +2026/03/21 22:55:48 [metric_collector] {"stage_name":"metric_collector","events_processed":17394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3478.8,"last_update":"2026-03-21T22:55:43.869638657Z"} +2026/03/21 22:55:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:55:43.876907211Z"} +2026/03/21 22:55:48 [transform_engine] {"stage_name":"transform_engine","events_processed":579,"events_dropped":0,"avg_latency_ms":741.6514624111637,"throughput_eps":0,"last_update":"2026-03-21T22:55:43.966067137Z"} +2026/03/21 22:55:48 [detection_layer] {"stage_name":"detection_layer","events_processed":579,"events_dropped":0,"avg_latency_ms":18.79920439242603,"throughput_eps":0,"last_update":"2026-03-21T22:55:43.966096233Z"} +2026/03/21 22:55:48 ───────────────────────────────────────────────── +2026/03/21 22:55:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:55:53 [log_collector] {"stage_name":"log_collector","events_processed":26855,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5371,"last_update":"2026-03-21T22:55:48.869669956Z"} +2026/03/21 22:55:53 [metric_collector] {"stage_name":"metric_collector","events_processed":17399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3479.8,"last_update":"2026-03-21T22:55:48.869980721Z"} +2026/03/21 22:55:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6962,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:55:48.877744675Z"} +2026/03/21 22:55:53 [transform_engine] {"stage_name":"transform_engine","events_processed":579,"events_dropped":0,"avg_latency_ms":741.6514624111637,"throughput_eps":0,"last_update":"2026-03-21T22:55:43.966067137Z"} +2026/03/21 22:55:53 [detection_layer] {"stage_name":"detection_layer","events_processed":579,"events_dropped":0,"avg_latency_ms":18.79920439242603,"throughput_eps":0,"last_update":"2026-03-21T22:55:48.965927157Z"} +2026/03/21 22:55:53 ───────────────────────────────────────────────── +2026/03/21 22:55:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:55:58 [transform_engine] {"stage_name":"transform_engine","events_processed":580,"events_dropped":0,"avg_latency_ms":2355.3866979289314,"throughput_eps":0,"last_update":"2026-03-21T22:55:57.776274686Z"} +2026/03/21 22:55:58 [detection_layer] {"stage_name":"detection_layer","events_processed":579,"events_dropped":0,"avg_latency_ms":18.79920439242603,"throughput_eps":0,"last_update":"2026-03-21T22:55:53.965722825Z"} +2026/03/21 22:55:58 [log_collector] {"stage_name":"log_collector","events_processed":26855,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5371,"last_update":"2026-03-21T22:55:53.869609339Z"} +2026/03/21 22:55:58 [metric_collector] {"stage_name":"metric_collector","events_processed":17404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3480.8,"last_update":"2026-03-21T22:55:53.869815664Z"} +2026/03/21 22:55:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:55:53.876531219Z"} +2026/03/21 22:55:58 ───────────────────────────────────────────────── +2026/03/21 22:56:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:56:03 [log_collector] {"stage_name":"log_collector","events_processed":26855,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5371,"last_update":"2026-03-21T22:55:58.869463428Z"} +2026/03/21 22:56:03 [metric_collector] {"stage_name":"metric_collector","events_processed":17409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3481.8,"last_update":"2026-03-21T22:55:58.869754284Z"} +2026/03/21 22:56:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:55:59.248247521Z"} +2026/03/21 22:56:03 [transform_engine] {"stage_name":"transform_engine","events_processed":580,"events_dropped":0,"avg_latency_ms":2355.3866979289314,"throughput_eps":0,"last_update":"2026-03-21T22:55:58.96595102Z"} +2026/03/21 22:56:03 [detection_layer] {"stage_name":"detection_layer","events_processed":580,"events_dropped":0,"avg_latency_ms":17.910026713940827,"throughput_eps":0,"last_update":"2026-03-21T22:55:58.965932535Z"} +2026/03/21 22:56:03 ───────────────────────────────────────────────── +2026/03/21 22:56:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:56:08 [metric_collector] {"stage_name":"metric_collector","events_processed":17414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3482.8,"last_update":"2026-03-21T22:56:03.869971028Z"} +2026/03/21 22:56:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:56:03.876233285Z"} +2026/03/21 22:56:08 [transform_engine] {"stage_name":"transform_engine","events_processed":580,"events_dropped":0,"avg_latency_ms":2355.3866979289314,"throughput_eps":0,"last_update":"2026-03-21T22:56:03.965596098Z"} +2026/03/21 22:56:08 [detection_layer] {"stage_name":"detection_layer","events_processed":580,"events_dropped":0,"avg_latency_ms":17.910026713940827,"throughput_eps":0,"last_update":"2026-03-21T22:56:03.965557705Z"} +2026/03/21 22:56:08 [log_collector] {"stage_name":"log_collector","events_processed":26864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5372.8,"last_update":"2026-03-21T22:56:03.869532268Z"} +2026/03/21 22:56:08 ───────────────────────────────────────────────── +2026/03/21 22:56:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:56:13 [log_collector] {"stage_name":"log_collector","events_processed":26866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5373.2,"last_update":"2026-03-21T22:56:08.869648287Z"} +2026/03/21 22:56:13 [metric_collector] {"stage_name":"metric_collector","events_processed":17419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3483.8,"last_update":"2026-03-21T22:56:08.870465533Z"} +2026/03/21 22:56:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6970,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:56:08.876367029Z"} +2026/03/21 22:56:13 [transform_engine] {"stage_name":"transform_engine","events_processed":580,"events_dropped":0,"avg_latency_ms":2355.3866979289314,"throughput_eps":0,"last_update":"2026-03-21T22:56:08.965562743Z"} +2026/03/21 22:56:13 [detection_layer] {"stage_name":"detection_layer","events_processed":580,"events_dropped":0,"avg_latency_ms":17.910026713940827,"throughput_eps":0,"last_update":"2026-03-21T22:56:08.965531824Z"} +2026/03/21 22:56:13 ───────────────────────────────────────────────── +2026/03/21 22:56:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:56:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:56:13.875381158Z"} +2026/03/21 22:56:18 [transform_engine] {"stage_name":"transform_engine","events_processed":580,"events_dropped":0,"avg_latency_ms":2355.3866979289314,"throughput_eps":0,"last_update":"2026-03-21T22:56:13.965596054Z"} +2026/03/21 22:56:18 [detection_layer] {"stage_name":"detection_layer","events_processed":580,"events_dropped":0,"avg_latency_ms":17.910026713940827,"throughput_eps":0,"last_update":"2026-03-21T22:56:13.96562537Z"} +2026/03/21 22:56:18 [log_collector] {"stage_name":"log_collector","events_processed":27128,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5425.6,"last_update":"2026-03-21T22:56:13.869727897Z"} +2026/03/21 22:56:18 [metric_collector] {"stage_name":"metric_collector","events_processed":17424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3484.8,"last_update":"2026-03-21T22:56:13.869907902Z"} +2026/03/21 22:56:18 ───────────────────────────────────────────────── +2026/03/21 22:56:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:56:23 [transform_engine] {"stage_name":"transform_engine","events_processed":581,"events_dropped":0,"avg_latency_ms":1907.5294655431453,"throughput_eps":0,"last_update":"2026-03-21T22:56:19.08223089Z"} +2026/03/21 22:56:23 [detection_layer] {"stage_name":"detection_layer","events_processed":580,"events_dropped":0,"avg_latency_ms":17.910026713940827,"throughput_eps":0,"last_update":"2026-03-21T22:56:18.966102701Z"} +2026/03/21 22:56:23 [log_collector] {"stage_name":"log_collector","events_processed":27221,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5444.2,"last_update":"2026-03-21T22:56:18.870384873Z"} +2026/03/21 22:56:23 [metric_collector] {"stage_name":"metric_collector","events_processed":17429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3485.8,"last_update":"2026-03-21T22:56:18.870695778Z"} +2026/03/21 22:56:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:56:18.878672921Z"} +2026/03/21 22:56:23 ───────────────────────────────────────────────── +Saved state: 18 clusters, 27222 messages, reason: none +2026/03/21 22:56:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:56:28 [log_collector] {"stage_name":"log_collector","events_processed":27224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5444.8,"last_update":"2026-03-21T22:56:28.870276709Z"} +2026/03/21 22:56:28 [metric_collector] {"stage_name":"metric_collector","events_processed":17434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3486.8,"last_update":"2026-03-21T22:56:23.869864783Z"} +2026/03/21 22:56:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:56:23.878751597Z"} +2026/03/21 22:56:28 [transform_engine] {"stage_name":"transform_engine","events_processed":581,"events_dropped":0,"avg_latency_ms":1907.5294655431453,"throughput_eps":0,"last_update":"2026-03-21T22:56:23.965896574Z"} +2026/03/21 22:56:28 [detection_layer] {"stage_name":"detection_layer","events_processed":581,"events_dropped":0,"avg_latency_ms":18.073775371152664,"throughput_eps":0,"last_update":"2026-03-21T22:56:23.965888368Z"} +2026/03/21 22:56:28 ───────────────────────────────────────────────── +2026/03/21 22:56:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:56:33 [metric_collector] {"stage_name":"metric_collector","events_processed":17439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3487.8,"last_update":"2026-03-21T22:56:28.870656186Z"} +2026/03/21 22:56:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:56:28.880760783Z"} +2026/03/21 22:56:33 [transform_engine] {"stage_name":"transform_engine","events_processed":581,"events_dropped":0,"avg_latency_ms":1907.5294655431453,"throughput_eps":0,"last_update":"2026-03-21T22:56:28.965964459Z"} +2026/03/21 22:56:33 [detection_layer] {"stage_name":"detection_layer","events_processed":581,"events_dropped":0,"avg_latency_ms":18.073775371152664,"throughput_eps":0,"last_update":"2026-03-21T22:56:28.965952677Z"} +2026/03/21 22:56:33 [log_collector] {"stage_name":"log_collector","events_processed":27224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5444.8,"last_update":"2026-03-21T22:56:28.870276709Z"} +2026/03/21 22:56:33 ───────────────────────────────────────────────── +2026/03/21 22:56:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:56:38 [metric_collector] {"stage_name":"metric_collector","events_processed":17444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3488.8,"last_update":"2026-03-21T22:56:33.869851561Z"} +2026/03/21 22:56:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:56:33.877253891Z"} +2026/03/21 22:56:38 [transform_engine] {"stage_name":"transform_engine","events_processed":581,"events_dropped":0,"avg_latency_ms":1907.5294655431453,"throughput_eps":0,"last_update":"2026-03-21T22:56:33.96537678Z"} +2026/03/21 22:56:38 [detection_layer] {"stage_name":"detection_layer","events_processed":581,"events_dropped":0,"avg_latency_ms":18.073775371152664,"throughput_eps":0,"last_update":"2026-03-21T22:56:33.965367473Z"} +2026/03/21 22:56:38 [log_collector] {"stage_name":"log_collector","events_processed":27224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5444.8,"last_update":"2026-03-21T22:56:33.869397912Z"} +2026/03/21 22:56:38 ───────────────────────────────────────────────── +2026/03/21 22:56:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:56:43 [log_collector] {"stage_name":"log_collector","events_processed":27235,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5447,"last_update":"2026-03-21T22:56:38.870050197Z"} +2026/03/21 22:56:43 [metric_collector] {"stage_name":"metric_collector","events_processed":17449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3489.8,"last_update":"2026-03-21T22:56:38.870382393Z"} +2026/03/21 22:56:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:56:38.876559216Z"} +2026/03/21 22:56:43 [transform_engine] {"stage_name":"transform_engine","events_processed":581,"events_dropped":0,"avg_latency_ms":1907.5294655431453,"throughput_eps":0,"last_update":"2026-03-21T22:56:38.965749129Z"} +2026/03/21 22:56:43 [detection_layer] {"stage_name":"detection_layer","events_processed":581,"events_dropped":0,"avg_latency_ms":18.073775371152664,"throughput_eps":0,"last_update":"2026-03-21T22:56:38.965769509Z"} +2026/03/21 22:56:43 ───────────────────────────────────────────────── +2026/03/21 22:56:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:56:48 [detection_layer] {"stage_name":"detection_layer","events_processed":581,"events_dropped":0,"avg_latency_ms":18.073775371152664,"throughput_eps":0,"last_update":"2026-03-21T22:56:43.966041585Z"} +2026/03/21 22:56:48 [log_collector] {"stage_name":"log_collector","events_processed":27242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5448.4,"last_update":"2026-03-21T22:56:43.870170342Z"} +2026/03/21 22:56:48 [metric_collector] {"stage_name":"metric_collector","events_processed":17454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3490.8,"last_update":"2026-03-21T22:56:43.870613982Z"} +2026/03/21 22:56:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:56:43.877798435Z"} +2026/03/21 22:56:48 [transform_engine] {"stage_name":"transform_engine","events_processed":581,"events_dropped":0,"avg_latency_ms":1907.5294655431453,"throughput_eps":0,"last_update":"2026-03-21T22:56:43.966003431Z"} +2026/03/21 22:56:48 ───────────────────────────────────────────────── +2026/03/21 22:56:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:56:53 [log_collector] {"stage_name":"log_collector","events_processed":27251,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5450.2,"last_update":"2026-03-21T22:56:48.869641585Z"} +2026/03/21 22:56:53 [metric_collector] {"stage_name":"metric_collector","events_processed":17459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3491.8,"last_update":"2026-03-21T22:56:48.870159317Z"} +2026/03/21 22:56:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:56:48.878696602Z"} +2026/03/21 22:56:53 [transform_engine] {"stage_name":"transform_engine","events_processed":582,"events_dropped":0,"avg_latency_ms":1550.7550250345164,"throughput_eps":0,"last_update":"2026-03-21T22:56:49.089624179Z"} +2026/03/21 22:56:53 [detection_layer] {"stage_name":"detection_layer","events_processed":581,"events_dropped":0,"avg_latency_ms":18.073775371152664,"throughput_eps":0,"last_update":"2026-03-21T22:56:48.966556947Z"} +2026/03/21 22:56:53 ───────────────────────────────────────────────── +2026/03/21 22:56:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:56:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:56:53.877932122Z"} +2026/03/21 22:56:58 [transform_engine] {"stage_name":"transform_engine","events_processed":582,"events_dropped":0,"avg_latency_ms":1550.7550250345164,"throughput_eps":0,"last_update":"2026-03-21T22:56:53.965060607Z"} +2026/03/21 22:56:58 [detection_layer] {"stage_name":"detection_layer","events_processed":582,"events_dropped":0,"avg_latency_ms":17.875860096922132,"throughput_eps":0,"last_update":"2026-03-21T22:56:53.966148471Z"} +2026/03/21 22:56:58 [log_collector] {"stage_name":"log_collector","events_processed":27251,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5450.2,"last_update":"2026-03-21T22:56:53.869412541Z"} +2026/03/21 22:56:58 [metric_collector] {"stage_name":"metric_collector","events_processed":17464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3492.8,"last_update":"2026-03-21T22:56:53.869910956Z"} +2026/03/21 22:56:58 ───────────────────────────────────────────────── +2026/03/21 22:57:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:57:03 [log_collector] {"stage_name":"log_collector","events_processed":27251,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5450.2,"last_update":"2026-03-21T22:56:58.869642105Z"} +2026/03/21 22:57:03 [metric_collector] {"stage_name":"metric_collector","events_processed":17469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3493.8,"last_update":"2026-03-21T22:56:58.870079894Z"} +2026/03/21 22:57:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6990,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:56:58.87837742Z"} +2026/03/21 22:57:03 [transform_engine] {"stage_name":"transform_engine","events_processed":582,"events_dropped":0,"avg_latency_ms":1550.7550250345164,"throughput_eps":0,"last_update":"2026-03-21T22:56:58.96555115Z"} +2026/03/21 22:57:03 [detection_layer] {"stage_name":"detection_layer","events_processed":582,"events_dropped":0,"avg_latency_ms":17.875860096922132,"throughput_eps":0,"last_update":"2026-03-21T22:56:58.965574204Z"} +2026/03/21 22:57:03 ───────────────────────────────────────────────── +2026/03/21 22:57:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:57:08 [detection_layer] {"stage_name":"detection_layer","events_processed":582,"events_dropped":0,"avg_latency_ms":17.875860096922132,"throughput_eps":0,"last_update":"2026-03-21T22:57:03.965483234Z"} +2026/03/21 22:57:08 [log_collector] {"stage_name":"log_collector","events_processed":27251,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5450.2,"last_update":"2026-03-21T22:57:03.8701016Z"} +2026/03/21 22:57:08 [metric_collector] {"stage_name":"metric_collector","events_processed":17474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3494.8,"last_update":"2026-03-21T22:57:03.870938122Z"} +2026/03/21 22:57:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6992,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:57:03.879241469Z"} +2026/03/21 22:57:08 [transform_engine] {"stage_name":"transform_engine","events_processed":582,"events_dropped":0,"avg_latency_ms":1550.7550250345164,"throughput_eps":0,"last_update":"2026-03-21T22:57:03.965509174Z"} +2026/03/21 22:57:08 ───────────────────────────────────────────────── +2026/03/21 22:57:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:57:13 [log_collector] {"stage_name":"log_collector","events_processed":27251,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5450.2,"last_update":"2026-03-21T22:57:08.86999479Z"} +2026/03/21 22:57:13 [metric_collector] {"stage_name":"metric_collector","events_processed":17479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3495.8,"last_update":"2026-03-21T22:57:08.869774217Z"} +2026/03/21 22:57:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:57:08.878517436Z"} +2026/03/21 22:57:13 [transform_engine] {"stage_name":"transform_engine","events_processed":582,"events_dropped":0,"avg_latency_ms":1550.7550250345164,"throughput_eps":0,"last_update":"2026-03-21T22:57:08.965852876Z"} +2026/03/21 22:57:13 [detection_layer] {"stage_name":"detection_layer","events_processed":582,"events_dropped":0,"avg_latency_ms":17.875860096922132,"throughput_eps":0,"last_update":"2026-03-21T22:57:08.965819983Z"} +2026/03/21 22:57:13 ───────────────────────────────────────────────── +2026/03/21 22:57:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:57:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6996,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:57:13.878608244Z"} +2026/03/21 22:57:18 [transform_engine] {"stage_name":"transform_engine","events_processed":582,"events_dropped":0,"avg_latency_ms":1550.7550250345164,"throughput_eps":0,"last_update":"2026-03-21T22:57:13.965917164Z"} +2026/03/21 22:57:18 [detection_layer] {"stage_name":"detection_layer","events_processed":582,"events_dropped":0,"avg_latency_ms":17.875860096922132,"throughput_eps":0,"last_update":"2026-03-21T22:57:13.965895893Z"} +2026/03/21 22:57:18 [log_collector] {"stage_name":"log_collector","events_processed":27251,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5450.2,"last_update":"2026-03-21T22:57:13.870053195Z"} +2026/03/21 22:57:18 [metric_collector] {"stage_name":"metric_collector","events_processed":17484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3496.8,"last_update":"2026-03-21T22:57:13.870022166Z"} +2026/03/21 22:57:18 ───────────────────────────────────────────────── +2026/03/21 22:57:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:57:23 [log_collector] {"stage_name":"log_collector","events_processed":27251,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5450.2,"last_update":"2026-03-21T22:57:18.869424325Z"} +2026/03/21 22:57:23 [metric_collector] {"stage_name":"metric_collector","events_processed":17489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3497.8,"last_update":"2026-03-21T22:57:18.870133904Z"} +2026/03/21 22:57:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:57:18.878241196Z"} +2026/03/21 22:57:23 [transform_engine] {"stage_name":"transform_engine","events_processed":583,"events_dropped":0,"avg_latency_ms":1254.694832027613,"throughput_eps":0,"last_update":"2026-03-21T22:57:19.035905606Z"} +2026/03/21 22:57:23 [detection_layer] {"stage_name":"detection_layer","events_processed":582,"events_dropped":0,"avg_latency_ms":17.875860096922132,"throughput_eps":0,"last_update":"2026-03-21T22:57:18.965473788Z"} +2026/03/21 22:57:23 ───────────────────────────────────────────────── +2026/03/21 22:57:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:57:28 [detection_layer] {"stage_name":"detection_layer","events_processed":583,"events_dropped":0,"avg_latency_ms":18.686610277537707,"throughput_eps":0,"last_update":"2026-03-21T22:57:23.965866523Z"} +2026/03/21 22:57:28 [log_collector] {"stage_name":"log_collector","events_processed":27251,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5450.2,"last_update":"2026-03-21T22:57:23.869413547Z"} +2026/03/21 22:57:28 [metric_collector] {"stage_name":"metric_collector","events_processed":17494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3498.8,"last_update":"2026-03-21T22:57:23.870195515Z"} +2026/03/21 22:57:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:57:23.878484444Z"} +2026/03/21 22:57:28 [transform_engine] {"stage_name":"transform_engine","events_processed":583,"events_dropped":0,"avg_latency_ms":1254.694832027613,"throughput_eps":0,"last_update":"2026-03-21T22:57:23.965772403Z"} +2026/03/21 22:57:28 ───────────────────────────────────────────────── +2026/03/21 22:57:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:57:33 [log_collector] {"stage_name":"log_collector","events_processed":27251,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5450.2,"last_update":"2026-03-21T22:57:28.869943064Z"} +2026/03/21 22:57:33 [metric_collector] {"stage_name":"metric_collector","events_processed":17499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3499.8,"last_update":"2026-03-21T22:57:28.870609782Z"} +2026/03/21 22:57:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:57:28.878887469Z"} +2026/03/21 22:57:33 [transform_engine] {"stage_name":"transform_engine","events_processed":583,"events_dropped":0,"avg_latency_ms":1254.694832027613,"throughput_eps":0,"last_update":"2026-03-21T22:57:28.96508038Z"} +2026/03/21 22:57:33 [detection_layer] {"stage_name":"detection_layer","events_processed":583,"events_dropped":0,"avg_latency_ms":18.686610277537707,"throughput_eps":0,"last_update":"2026-03-21T22:57:28.966283265Z"} +2026/03/21 22:57:33 ───────────────────────────────────────────────── +2026/03/21 22:57:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:57:38 [log_collector] {"stage_name":"log_collector","events_processed":27251,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5450.2,"last_update":"2026-03-21T22:57:33.869678588Z"} +2026/03/21 22:57:38 [metric_collector] {"stage_name":"metric_collector","events_processed":17504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3500.8,"last_update":"2026-03-21T22:57:33.870172804Z"} +2026/03/21 22:57:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:57:33.878587262Z"} +2026/03/21 22:57:38 [transform_engine] {"stage_name":"transform_engine","events_processed":583,"events_dropped":0,"avg_latency_ms":1254.694832027613,"throughput_eps":0,"last_update":"2026-03-21T22:57:33.965814742Z"} +2026/03/21 22:57:38 [detection_layer] {"stage_name":"detection_layer","events_processed":583,"events_dropped":0,"avg_latency_ms":18.686610277537707,"throughput_eps":0,"last_update":"2026-03-21T22:57:33.965921416Z"} +2026/03/21 22:57:38 ───────────────────────────────────────────────── +2026/03/21 22:57:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:57:43 [log_collector] {"stage_name":"log_collector","events_processed":27251,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5450.2,"last_update":"2026-03-21T22:57:38.869456673Z"} +2026/03/21 22:57:43 [metric_collector] {"stage_name":"metric_collector","events_processed":17509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3501.8,"last_update":"2026-03-21T22:57:38.869713424Z"} +2026/03/21 22:57:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7006,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:57:38.878801311Z"} +2026/03/21 22:57:43 [transform_engine] {"stage_name":"transform_engine","events_processed":583,"events_dropped":0,"avg_latency_ms":1254.694832027613,"throughput_eps":0,"last_update":"2026-03-21T22:57:38.966093517Z"} +2026/03/21 22:57:43 [detection_layer] {"stage_name":"detection_layer","events_processed":583,"events_dropped":0,"avg_latency_ms":18.686610277537707,"throughput_eps":0,"last_update":"2026-03-21T22:57:38.965984088Z"} +2026/03/21 22:57:43 ───────────────────────────────────────────────── +2026/03/21 22:57:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:57:48 [metric_collector] {"stage_name":"metric_collector","events_processed":17514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3502.8,"last_update":"2026-03-21T22:57:43.869998899Z"} +2026/03/21 22:57:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7008,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:57:43.878438405Z"} +2026/03/21 22:57:48 [transform_engine] {"stage_name":"transform_engine","events_processed":583,"events_dropped":0,"avg_latency_ms":1254.694832027613,"throughput_eps":0,"last_update":"2026-03-21T22:57:43.965734572Z"} +2026/03/21 22:57:48 [detection_layer] {"stage_name":"detection_layer","events_processed":583,"events_dropped":0,"avg_latency_ms":18.686610277537707,"throughput_eps":0,"last_update":"2026-03-21T22:57:43.965711568Z"} +2026/03/21 22:57:48 [log_collector] {"stage_name":"log_collector","events_processed":27251,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5450.2,"last_update":"2026-03-21T22:57:43.869410243Z"} +2026/03/21 22:57:48 ───────────────────────────────────────────────── +2026/03/21 22:57:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:57:53 [log_collector] {"stage_name":"log_collector","events_processed":27251,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5450.2,"last_update":"2026-03-21T22:57:48.869839098Z"} +2026/03/21 22:57:53 [metric_collector] {"stage_name":"metric_collector","events_processed":17519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3503.8,"last_update":"2026-03-21T22:57:48.86992392Z"} +2026/03/21 22:57:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:57:48.878190176Z"} +2026/03/21 22:57:53 [transform_engine] {"stage_name":"transform_engine","events_processed":584,"events_dropped":0,"avg_latency_ms":1019.4993190220905,"throughput_eps":0,"last_update":"2026-03-21T22:57:49.044182651Z"} +2026/03/21 22:57:53 [detection_layer] {"stage_name":"detection_layer","events_processed":583,"events_dropped":0,"avg_latency_ms":18.686610277537707,"throughput_eps":0,"last_update":"2026-03-21T22:57:48.965430668Z"} +2026/03/21 22:57:53 ───────────────────────────────────────────────── +Saved state: 18 clusters, 27252 messages, reason: none +2026/03/21 22:57:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:57:58 [log_collector] {"stage_name":"log_collector","events_processed":27251,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5450.2,"last_update":"2026-03-21T22:57:53.87013773Z"} +2026/03/21 22:57:58 [metric_collector] {"stage_name":"metric_collector","events_processed":17524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3504.8,"last_update":"2026-03-21T22:57:53.870444156Z"} +2026/03/21 22:57:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7012,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:57:53.878242818Z"} +2026/03/21 22:57:58 [transform_engine] {"stage_name":"transform_engine","events_processed":584,"events_dropped":0,"avg_latency_ms":1019.4993190220905,"throughput_eps":0,"last_update":"2026-03-21T22:57:53.965473225Z"} +2026/03/21 22:57:58 [detection_layer] {"stage_name":"detection_layer","events_processed":584,"events_dropped":0,"avg_latency_ms":19.170651822030166,"throughput_eps":0,"last_update":"2026-03-21T22:57:53.965441674Z"} +2026/03/21 22:57:58 ───────────────────────────────────────────────── +2026/03/21 22:58:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:58:03 [log_collector] {"stage_name":"log_collector","events_processed":27265,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5453,"last_update":"2026-03-21T22:57:58.870057242Z"} +2026/03/21 22:58:03 [metric_collector] {"stage_name":"metric_collector","events_processed":17529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3505.8,"last_update":"2026-03-21T22:57:58.870392975Z"} +2026/03/21 22:58:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:57:58.876941977Z"} +2026/03/21 22:58:03 [transform_engine] {"stage_name":"transform_engine","events_processed":584,"events_dropped":0,"avg_latency_ms":1019.4993190220905,"throughput_eps":0,"last_update":"2026-03-21T22:57:58.965043562Z"} +2026/03/21 22:58:03 [detection_layer] {"stage_name":"detection_layer","events_processed":584,"events_dropped":0,"avg_latency_ms":19.170651822030166,"throughput_eps":0,"last_update":"2026-03-21T22:57:58.966177431Z"} +2026/03/21 22:58:03 ───────────────────────────────────────────────── +2026/03/21 22:58:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:58:08 [log_collector] {"stage_name":"log_collector","events_processed":27265,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5453,"last_update":"2026-03-21T22:58:03.869405805Z"} +2026/03/21 22:58:08 [metric_collector] {"stage_name":"metric_collector","events_processed":17534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3506.8,"last_update":"2026-03-21T22:58:03.869886343Z"} +2026/03/21 22:58:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:58:03.8782201Z"} +2026/03/21 22:58:08 [transform_engine] {"stage_name":"transform_engine","events_processed":584,"events_dropped":0,"avg_latency_ms":1019.4993190220905,"throughput_eps":0,"last_update":"2026-03-21T22:58:03.965645965Z"} +2026/03/21 22:58:08 [detection_layer] {"stage_name":"detection_layer","events_processed":584,"events_dropped":0,"avg_latency_ms":19.170651822030166,"throughput_eps":0,"last_update":"2026-03-21T22:58:03.965625136Z"} +2026/03/21 22:58:08 ───────────────────────────────────────────────── +2026/03/21 22:58:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:58:13 [metric_collector] {"stage_name":"metric_collector","events_processed":17539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3507.8,"last_update":"2026-03-21T22:58:08.869802142Z"} +2026/03/21 22:58:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7018,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:58:08.878433488Z"} +2026/03/21 22:58:13 [transform_engine] {"stage_name":"transform_engine","events_processed":584,"events_dropped":0,"avg_latency_ms":1019.4993190220905,"throughput_eps":0,"last_update":"2026-03-21T22:58:08.965750177Z"} +2026/03/21 22:58:13 [detection_layer] {"stage_name":"detection_layer","events_processed":584,"events_dropped":0,"avg_latency_ms":19.170651822030166,"throughput_eps":0,"last_update":"2026-03-21T22:58:08.965706825Z"} +2026/03/21 22:58:13 [log_collector] {"stage_name":"log_collector","events_processed":27265,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5453,"last_update":"2026-03-21T22:58:08.869410574Z"} +2026/03/21 22:58:13 ───────────────────────────────────────────────── +2026/03/21 22:58:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:58:18 [detection_layer] {"stage_name":"detection_layer","events_processed":584,"events_dropped":0,"avg_latency_ms":19.170651822030166,"throughput_eps":0,"last_update":"2026-03-21T22:58:13.966165294Z"} +2026/03/21 22:58:18 [log_collector] {"stage_name":"log_collector","events_processed":27265,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5453,"last_update":"2026-03-21T22:58:13.870131534Z"} +2026/03/21 22:58:18 [metric_collector] {"stage_name":"metric_collector","events_processed":17544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3508.8,"last_update":"2026-03-21T22:58:13.870395138Z"} +2026/03/21 22:58:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7020,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:58:13.8798774Z"} +2026/03/21 22:58:18 [transform_engine] {"stage_name":"transform_engine","events_processed":584,"events_dropped":0,"avg_latency_ms":1019.4993190220905,"throughput_eps":0,"last_update":"2026-03-21T22:58:13.96606332Z"} +2026/03/21 22:58:18 ───────────────────────────────────────────────── +2026/03/21 22:58:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:58:23 [log_collector] {"stage_name":"log_collector","events_processed":27265,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5453,"last_update":"2026-03-21T22:58:18.869426114Z"} +2026/03/21 22:58:23 [metric_collector] {"stage_name":"metric_collector","events_processed":17549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3509.8,"last_update":"2026-03-21T22:58:18.869778568Z"} +2026/03/21 22:58:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7022,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:58:18.876411331Z"} +2026/03/21 22:58:23 [transform_engine] {"stage_name":"transform_engine","events_processed":585,"events_dropped":0,"avg_latency_ms":835.6986448176725,"throughput_eps":0,"last_update":"2026-03-21T22:58:19.066258995Z"} +2026/03/21 22:58:23 [detection_layer] {"stage_name":"detection_layer","events_processed":584,"events_dropped":0,"avg_latency_ms":19.170651822030166,"throughput_eps":0,"last_update":"2026-03-21T22:58:18.965724804Z"} +2026/03/21 22:58:23 ───────────────────────────────────────────────── +2026/03/21 22:58:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:58:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:58:23.879174471Z"} +2026/03/21 22:58:28 [transform_engine] {"stage_name":"transform_engine","events_processed":585,"events_dropped":0,"avg_latency_ms":835.6986448176725,"throughput_eps":0,"last_update":"2026-03-21T22:58:23.965501406Z"} +2026/03/21 22:58:28 [detection_layer] {"stage_name":"detection_layer","events_processed":585,"events_dropped":0,"avg_latency_ms":18.415505257624133,"throughput_eps":0,"last_update":"2026-03-21T22:58:23.96559793Z"} +2026/03/21 22:58:28 [log_collector] {"stage_name":"log_collector","events_processed":27265,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5453,"last_update":"2026-03-21T22:58:23.870144774Z"} +2026/03/21 22:58:28 [metric_collector] {"stage_name":"metric_collector","events_processed":17554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3510.8,"last_update":"2026-03-21T22:58:23.870578252Z"} +2026/03/21 22:58:28 ───────────────────────────────────────────────── +2026/03/21 22:58:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:58:33 [metric_collector] {"stage_name":"metric_collector","events_processed":17559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3511.8,"last_update":"2026-03-21T22:58:28.870113074Z"} +2026/03/21 22:58:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:58:28.877859918Z"} +2026/03/21 22:58:33 [transform_engine] {"stage_name":"transform_engine","events_processed":585,"events_dropped":0,"avg_latency_ms":835.6986448176725,"throughput_eps":0,"last_update":"2026-03-21T22:58:28.966056471Z"} +2026/03/21 22:58:33 [detection_layer] {"stage_name":"detection_layer","events_processed":585,"events_dropped":0,"avg_latency_ms":18.415505257624133,"throughput_eps":0,"last_update":"2026-03-21T22:58:28.966021865Z"} +2026/03/21 22:58:33 [log_collector] {"stage_name":"log_collector","events_processed":27265,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5453,"last_update":"2026-03-21T22:58:28.869438113Z"} +2026/03/21 22:58:33 ───────────────────────────────────────────────── +2026/03/21 22:58:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:58:38 [metric_collector] {"stage_name":"metric_collector","events_processed":17564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3512.8,"last_update":"2026-03-21T22:58:33.869965346Z"} +2026/03/21 22:58:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:58:33.879200186Z"} +2026/03/21 22:58:38 [transform_engine] {"stage_name":"transform_engine","events_processed":585,"events_dropped":0,"avg_latency_ms":835.6986448176725,"throughput_eps":0,"last_update":"2026-03-21T22:58:33.965332534Z"} +2026/03/21 22:58:38 [detection_layer] {"stage_name":"detection_layer","events_processed":585,"events_dropped":0,"avg_latency_ms":18.415505257624133,"throughput_eps":0,"last_update":"2026-03-21T22:58:33.965434268Z"} +2026/03/21 22:58:38 [log_collector] {"stage_name":"log_collector","events_processed":27265,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5453,"last_update":"2026-03-21T22:58:33.869506639Z"} +2026/03/21 22:58:38 ───────────────────────────────────────────────── +2026/03/21 22:58:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:58:43 [log_collector] {"stage_name":"log_collector","events_processed":27265,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5453,"last_update":"2026-03-21T22:58:38.869591669Z"} +2026/03/21 22:58:43 [metric_collector] {"stage_name":"metric_collector","events_processed":17569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3513.8,"last_update":"2026-03-21T22:58:38.869813595Z"} +2026/03/21 22:58:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:58:38.879429874Z"} +2026/03/21 22:58:43 [transform_engine] {"stage_name":"transform_engine","events_processed":585,"events_dropped":0,"avg_latency_ms":835.6986448176725,"throughput_eps":0,"last_update":"2026-03-21T22:58:38.965620075Z"} +2026/03/21 22:58:43 [detection_layer] {"stage_name":"detection_layer","events_processed":585,"events_dropped":0,"avg_latency_ms":18.415505257624133,"throughput_eps":0,"last_update":"2026-03-21T22:58:38.965642298Z"} +2026/03/21 22:58:43 ───────────────────────────────────────────────── +2026/03/21 22:58:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:58:48 [log_collector] {"stage_name":"log_collector","events_processed":27265,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5453,"last_update":"2026-03-21T22:58:43.870235821Z"} +2026/03/21 22:58:48 [metric_collector] {"stage_name":"metric_collector","events_processed":17574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3514.8,"last_update":"2026-03-21T22:58:43.870630897Z"} +2026/03/21 22:58:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:58:43.878981727Z"} +2026/03/21 22:58:48 [transform_engine] {"stage_name":"transform_engine","events_processed":585,"events_dropped":0,"avg_latency_ms":835.6986448176725,"throughput_eps":0,"last_update":"2026-03-21T22:58:43.965492863Z"} +2026/03/21 22:58:48 [detection_layer] {"stage_name":"detection_layer","events_processed":585,"events_dropped":0,"avg_latency_ms":18.415505257624133,"throughput_eps":0,"last_update":"2026-03-21T22:58:43.96552796Z"} +2026/03/21 22:58:48 ───────────────────────────────────────────────── +2026/03/21 22:58:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:58:53 [metric_collector] {"stage_name":"metric_collector","events_processed":17579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3515.8,"last_update":"2026-03-21T22:58:48.870021019Z"} +2026/03/21 22:58:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:58:48.879521368Z"} +2026/03/21 22:58:53 [transform_engine] {"stage_name":"transform_engine","events_processed":586,"events_dropped":0,"avg_latency_ms":683.5729236541381,"throughput_eps":0,"last_update":"2026-03-21T22:58:49.040804566Z"} +2026/03/21 22:58:53 [detection_layer] {"stage_name":"detection_layer","events_processed":585,"events_dropped":0,"avg_latency_ms":18.415505257624133,"throughput_eps":0,"last_update":"2026-03-21T22:58:48.966554294Z"} +2026/03/21 22:58:53 [log_collector] {"stage_name":"log_collector","events_processed":27265,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5453,"last_update":"2026-03-21T22:58:53.869446807Z"} +2026/03/21 22:58:53 ───────────────────────────────────────────────── +2026/03/21 22:58:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:58:58 [transform_engine] {"stage_name":"transform_engine","events_processed":586,"events_dropped":0,"avg_latency_ms":683.5729236541381,"throughput_eps":0,"last_update":"2026-03-21T22:58:53.965061721Z"} +2026/03/21 22:58:58 [detection_layer] {"stage_name":"detection_layer","events_processed":586,"events_dropped":0,"avg_latency_ms":18.968646006099306,"throughput_eps":0,"last_update":"2026-03-21T22:58:53.965407662Z"} +2026/03/21 22:58:58 [log_collector] {"stage_name":"log_collector","events_processed":27265,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5453,"last_update":"2026-03-21T22:58:53.869446807Z"} +2026/03/21 22:58:58 [metric_collector] {"stage_name":"metric_collector","events_processed":17584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3516.8,"last_update":"2026-03-21T22:58:53.869862733Z"} +2026/03/21 22:58:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7036,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:58:53.878811347Z"} +2026/03/21 22:58:58 ───────────────────────────────────────────────── +2026/03/21 22:59:03 ── Pipeline Health ────────────────────────────── +2026/03/21 22:59:03 [log_collector] {"stage_name":"log_collector","events_processed":27265,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5453,"last_update":"2026-03-21T22:59:03.870090858Z"} +2026/03/21 22:59:03 [metric_collector] {"stage_name":"metric_collector","events_processed":17589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3517.8,"last_update":"2026-03-21T22:58:58.869691662Z"} +2026/03/21 22:59:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:58:58.878620959Z"} +2026/03/21 22:59:03 [transform_engine] {"stage_name":"transform_engine","events_processed":586,"events_dropped":0,"avg_latency_ms":683.5729236541381,"throughput_eps":0,"last_update":"2026-03-21T22:58:58.965811262Z"} +2026/03/21 22:59:03 [detection_layer] {"stage_name":"detection_layer","events_processed":586,"events_dropped":0,"avg_latency_ms":18.968646006099306,"throughput_eps":0,"last_update":"2026-03-21T22:58:58.965854425Z"} +2026/03/21 22:59:03 ───────────────────────────────────────────────── +Saved state: 18 clusters, 27266 messages, reason: none +2026/03/21 22:59:08 ── Pipeline Health ────────────────────────────── +2026/03/21 22:59:08 [log_collector] {"stage_name":"log_collector","events_processed":27265,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5453,"last_update":"2026-03-21T22:59:03.870090858Z"} +2026/03/21 22:59:08 [metric_collector] {"stage_name":"metric_collector","events_processed":17594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3518.8,"last_update":"2026-03-21T22:59:03.870557681Z"} +2026/03/21 22:59:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:59:03.879419399Z"} +2026/03/21 22:59:08 [transform_engine] {"stage_name":"transform_engine","events_processed":586,"events_dropped":0,"avg_latency_ms":683.5729236541381,"throughput_eps":0,"last_update":"2026-03-21T22:59:03.965647103Z"} +2026/03/21 22:59:08 [detection_layer] {"stage_name":"detection_layer","events_processed":586,"events_dropped":0,"avg_latency_ms":18.968646006099306,"throughput_eps":0,"last_update":"2026-03-21T22:59:03.965677541Z"} +2026/03/21 22:59:08 ───────────────────────────────────────────────── +2026/03/21 22:59:13 ── Pipeline Health ────────────────────────────── +2026/03/21 22:59:13 [log_collector] {"stage_name":"log_collector","events_processed":27270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5454,"last_update":"2026-03-21T22:59:08.869528538Z"} +2026/03/21 22:59:13 [metric_collector] {"stage_name":"metric_collector","events_processed":17599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3519.8,"last_update":"2026-03-21T22:59:08.870041279Z"} +2026/03/21 22:59:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:59:08.876641592Z"} +2026/03/21 22:59:13 [transform_engine] {"stage_name":"transform_engine","events_processed":586,"events_dropped":0,"avg_latency_ms":683.5729236541381,"throughput_eps":0,"last_update":"2026-03-21T22:59:08.965835933Z"} +2026/03/21 22:59:13 [detection_layer] {"stage_name":"detection_layer","events_processed":586,"events_dropped":0,"avg_latency_ms":18.968646006099306,"throughput_eps":0,"last_update":"2026-03-21T22:59:08.96589218Z"} +2026/03/21 22:59:13 ───────────────────────────────────────────────── +2026/03/21 22:59:18 ── Pipeline Health ────────────────────────────── +2026/03/21 22:59:18 [log_collector] {"stage_name":"log_collector","events_processed":27270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5454,"last_update":"2026-03-21T22:59:13.86977018Z"} +2026/03/21 22:59:18 [metric_collector] {"stage_name":"metric_collector","events_processed":17604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3520.8,"last_update":"2026-03-21T22:59:13.869831557Z"} +2026/03/21 22:59:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:59:13.875824037Z"} +2026/03/21 22:59:18 [transform_engine] {"stage_name":"transform_engine","events_processed":586,"events_dropped":0,"avg_latency_ms":683.5729236541381,"throughput_eps":0,"last_update":"2026-03-21T22:59:13.966068448Z"} +2026/03/21 22:59:18 [detection_layer] {"stage_name":"detection_layer","events_processed":586,"events_dropped":0,"avg_latency_ms":18.968646006099306,"throughput_eps":0,"last_update":"2026-03-21T22:59:13.966045836Z"} +2026/03/21 22:59:18 ───────────────────────────────────────────────── +2026/03/21 22:59:19 [ANOMALY] time=2026-03-21T22:59:19Z score=0.9529 method=SEAD details=MAD!:w=0.24,s=0.93 RRCF-fast!:w=0.21,s=0.99 RRCF-mid!:w=0.16,s=0.94 RRCF-slow!:w=0.14,s=0.95 COPOD!:w=0.24,s=0.96 +2026/03/21 22:59:23 ── Pipeline Health ────────────────────────────── +2026/03/21 22:59:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:59:18.876579354Z"} +2026/03/21 22:59:23 [transform_engine] {"stage_name":"transform_engine","events_processed":587,"events_dropped":0,"avg_latency_ms":579.7577651233105,"throughput_eps":0,"last_update":"2026-03-21T22:59:19.130284847Z"} +2026/03/21 22:59:23 [detection_layer] {"stage_name":"detection_layer","events_processed":586,"events_dropped":0,"avg_latency_ms":18.968646006099306,"throughput_eps":0,"last_update":"2026-03-21T22:59:18.965818805Z"} +2026/03/21 22:59:23 [log_collector] {"stage_name":"log_collector","events_processed":27270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5454,"last_update":"2026-03-21T22:59:18.870196897Z"} +2026/03/21 22:59:23 [metric_collector] {"stage_name":"metric_collector","events_processed":17609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3521.8,"last_update":"2026-03-21T22:59:18.870635065Z"} +2026/03/21 22:59:23 ───────────────────────────────────────────────── +2026/03/21 22:59:28 ── Pipeline Health ────────────────────────────── +2026/03/21 22:59:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7048,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:59:23.876746146Z"} +2026/03/21 22:59:28 [transform_engine] {"stage_name":"transform_engine","events_processed":587,"events_dropped":0,"avg_latency_ms":579.7577651233105,"throughput_eps":0,"last_update":"2026-03-21T22:59:23.965915736Z"} +2026/03/21 22:59:28 [detection_layer] {"stage_name":"detection_layer","events_processed":587,"events_dropped":0,"avg_latency_ms":17.056491604879444,"throughput_eps":0,"last_update":"2026-03-21T22:59:23.965932758Z"} +2026/03/21 22:59:28 [log_collector] {"stage_name":"log_collector","events_processed":27270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5454,"last_update":"2026-03-21T22:59:23.869466732Z"} +2026/03/21 22:59:28 [metric_collector] {"stage_name":"metric_collector","events_processed":17614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3522.8,"last_update":"2026-03-21T22:59:23.870079515Z"} +2026/03/21 22:59:28 ───────────────────────────────────────────────── +2026/03/21 22:59:33 ── Pipeline Health ────────────────────────────── +2026/03/21 22:59:33 [log_collector] {"stage_name":"log_collector","events_processed":27270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5454,"last_update":"2026-03-21T22:59:28.870445607Z"} +2026/03/21 22:59:33 [metric_collector] {"stage_name":"metric_collector","events_processed":17619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3523.8,"last_update":"2026-03-21T22:59:28.870670857Z"} +2026/03/21 22:59:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7050,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:59:28.879404261Z"} +2026/03/21 22:59:33 [transform_engine] {"stage_name":"transform_engine","events_processed":587,"events_dropped":0,"avg_latency_ms":579.7577651233105,"throughput_eps":0,"last_update":"2026-03-21T22:59:28.965634943Z"} +2026/03/21 22:59:33 [detection_layer] {"stage_name":"detection_layer","events_processed":587,"events_dropped":0,"avg_latency_ms":17.056491604879444,"throughput_eps":0,"last_update":"2026-03-21T22:59:28.96566466Z"} +2026/03/21 22:59:33 ───────────────────────────────────────────────── +2026/03/21 22:59:38 ── Pipeline Health ────────────────────────────── +2026/03/21 22:59:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:59:33.876524863Z"} +2026/03/21 22:59:38 [transform_engine] {"stage_name":"transform_engine","events_processed":587,"events_dropped":0,"avg_latency_ms":579.7577651233105,"throughput_eps":0,"last_update":"2026-03-21T22:59:33.965686162Z"} +2026/03/21 22:59:38 [detection_layer] {"stage_name":"detection_layer","events_processed":587,"events_dropped":0,"avg_latency_ms":17.056491604879444,"throughput_eps":0,"last_update":"2026-03-21T22:59:33.965710379Z"} +2026/03/21 22:59:38 [log_collector] {"stage_name":"log_collector","events_processed":27270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5454,"last_update":"2026-03-21T22:59:33.869404244Z"} +2026/03/21 22:59:38 [metric_collector] {"stage_name":"metric_collector","events_processed":17624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3524.8,"last_update":"2026-03-21T22:59:33.869777268Z"} +2026/03/21 22:59:38 ───────────────────────────────────────────────── +2026/03/21 22:59:43 ── Pipeline Health ────────────────────────────── +2026/03/21 22:59:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:59:38.880019535Z"} +2026/03/21 22:59:43 [transform_engine] {"stage_name":"transform_engine","events_processed":587,"events_dropped":0,"avg_latency_ms":579.7577651233105,"throughput_eps":0,"last_update":"2026-03-21T22:59:38.965112523Z"} +2026/03/21 22:59:43 [detection_layer] {"stage_name":"detection_layer","events_processed":587,"events_dropped":0,"avg_latency_ms":17.056491604879444,"throughput_eps":0,"last_update":"2026-03-21T22:59:38.96619292Z"} +2026/03/21 22:59:43 [log_collector] {"stage_name":"log_collector","events_processed":27270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5454,"last_update":"2026-03-21T22:59:38.869478191Z"} +2026/03/21 22:59:43 [metric_collector] {"stage_name":"metric_collector","events_processed":17629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3525.8,"last_update":"2026-03-21T22:59:38.869909416Z"} +2026/03/21 22:59:43 ───────────────────────────────────────────────── +2026/03/21 22:59:48 ── Pipeline Health ────────────────────────────── +2026/03/21 22:59:48 [metric_collector] {"stage_name":"metric_collector","events_processed":17639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3527.8,"last_update":"2026-03-21T22:59:48.869868466Z"} +2026/03/21 22:59:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7056,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:59:43.877251973Z"} +2026/03/21 22:59:48 [transform_engine] {"stage_name":"transform_engine","events_processed":587,"events_dropped":0,"avg_latency_ms":579.7577651233105,"throughput_eps":0,"last_update":"2026-03-21T22:59:43.965462067Z"} +2026/03/21 22:59:48 [detection_layer] {"stage_name":"detection_layer","events_processed":587,"events_dropped":0,"avg_latency_ms":17.056491604879444,"throughput_eps":0,"last_update":"2026-03-21T22:59:43.965482666Z"} +2026/03/21 22:59:48 [log_collector] {"stage_name":"log_collector","events_processed":27270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5454,"last_update":"2026-03-21T22:59:43.869860665Z"} +2026/03/21 22:59:48 ───────────────────────────────────────────────── +2026/03/21 22:59:49 [ANOMALY] time=2026-03-21T22:59:49Z score=0.9128 method=SEAD details=MAD!:w=0.24,s=0.83 RRCF-fast!:w=0.21,s=0.95 RRCF-mid!:w=0.16,s=0.93 RRCF-slow:w=0.14,s=0.92 COPOD!:w=0.24,s=0.95 +2026/03/21 22:59:53 ── Pipeline Health ────────────────────────────── +2026/03/21 22:59:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:59:48.87618586Z"} +2026/03/21 22:59:53 [transform_engine] {"stage_name":"transform_engine","events_processed":588,"events_dropped":0,"avg_latency_ms":485.0241672986484,"throughput_eps":0,"last_update":"2026-03-21T22:59:49.071591387Z"} +2026/03/21 22:59:53 [detection_layer] {"stage_name":"detection_layer","events_processed":587,"events_dropped":0,"avg_latency_ms":17.056491604879444,"throughput_eps":0,"last_update":"2026-03-21T22:59:48.965458037Z"} +2026/03/21 22:59:53 [log_collector] {"stage_name":"log_collector","events_processed":27295,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5459,"last_update":"2026-03-21T22:59:53.870380987Z"} +2026/03/21 22:59:53 [metric_collector] {"stage_name":"metric_collector","events_processed":17639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3527.8,"last_update":"2026-03-21T22:59:48.869868466Z"} +2026/03/21 22:59:53 ───────────────────────────────────────────────── +2026/03/21 22:59:58 ── Pipeline Health ────────────────────────────── +2026/03/21 22:59:58 [transform_engine] {"stage_name":"transform_engine","events_processed":588,"events_dropped":0,"avg_latency_ms":485.0241672986484,"throughput_eps":0,"last_update":"2026-03-21T22:59:53.965761681Z"} +2026/03/21 22:59:58 [detection_layer] {"stage_name":"detection_layer","events_processed":588,"events_dropped":0,"avg_latency_ms":15.880322483903555,"throughput_eps":0,"last_update":"2026-03-21T22:59:53.965778523Z"} +2026/03/21 22:59:58 [log_collector] {"stage_name":"log_collector","events_processed":27295,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5459,"last_update":"2026-03-21T22:59:53.870380987Z"} +2026/03/21 22:59:58 [metric_collector] {"stage_name":"metric_collector","events_processed":17644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3528.8,"last_update":"2026-03-21T22:59:53.870654921Z"} +2026/03/21 22:59:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:59:53.878481772Z"} +2026/03/21 22:59:58 ───────────────────────────────────────────────── +2026/03/21 23:00:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:00:03 [log_collector] {"stage_name":"log_collector","events_processed":27593,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5518.6,"last_update":"2026-03-21T23:00:03.870046223Z"} +2026/03/21 23:00:03 [metric_collector] {"stage_name":"metric_collector","events_processed":17649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3529.8,"last_update":"2026-03-21T22:59:58.869902455Z"} +2026/03/21 23:00:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7062,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T22:59:58.878717567Z"} +2026/03/21 23:00:03 [transform_engine] {"stage_name":"transform_engine","events_processed":588,"events_dropped":0,"avg_latency_ms":485.0241672986484,"throughput_eps":0,"last_update":"2026-03-21T22:59:58.965992808Z"} +2026/03/21 23:00:03 [detection_layer] {"stage_name":"detection_layer","events_processed":588,"events_dropped":0,"avg_latency_ms":15.880322483903555,"throughput_eps":0,"last_update":"2026-03-21T22:59:58.966013268Z"} +2026/03/21 23:00:03 ───────────────────────────────────────────────── +Saved state: 18 clusters, 27606 messages, reason: none +2026/03/21 23:00:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:00:08 [log_collector] {"stage_name":"log_collector","events_processed":27593,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5518.6,"last_update":"2026-03-21T23:00:03.870046223Z"} +2026/03/21 23:00:08 [metric_collector] {"stage_name":"metric_collector","events_processed":17654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3530.8,"last_update":"2026-03-21T23:00:03.870328103Z"} +2026/03/21 23:00:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:00:03.889066687Z"} +2026/03/21 23:00:08 [transform_engine] {"stage_name":"transform_engine","events_processed":588,"events_dropped":0,"avg_latency_ms":485.0241672986484,"throughput_eps":0,"last_update":"2026-03-21T23:00:03.96564017Z"} +2026/03/21 23:00:08 [detection_layer] {"stage_name":"detection_layer","events_processed":588,"events_dropped":0,"avg_latency_ms":15.880322483903555,"throughput_eps":0,"last_update":"2026-03-21T23:00:03.965601597Z"} +2026/03/21 23:00:08 ───────────────────────────────────────────────── +2026/03/21 23:00:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:00:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:00:08.875753944Z"} +2026/03/21 23:00:13 [transform_engine] {"stage_name":"transform_engine","events_processed":588,"events_dropped":0,"avg_latency_ms":485.0241672986484,"throughput_eps":0,"last_update":"2026-03-21T23:00:08.966122959Z"} +2026/03/21 23:00:13 [detection_layer] {"stage_name":"detection_layer","events_processed":588,"events_dropped":0,"avg_latency_ms":15.880322483903555,"throughput_eps":0,"last_update":"2026-03-21T23:00:08.966226087Z"} +2026/03/21 23:00:13 [log_collector] {"stage_name":"log_collector","events_processed":27633,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5526.6,"last_update":"2026-03-21T23:00:08.869768305Z"} +2026/03/21 23:00:13 [metric_collector] {"stage_name":"metric_collector","events_processed":17659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3531.8,"last_update":"2026-03-21T23:00:08.870113816Z"} +2026/03/21 23:00:13 ───────────────────────────────────────────────── +2026/03/21 23:00:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:00:18 [log_collector] {"stage_name":"log_collector","events_processed":27633,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5526.6,"last_update":"2026-03-21T23:00:13.869886914Z"} +2026/03/21 23:00:18 [metric_collector] {"stage_name":"metric_collector","events_processed":17664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3532.8,"last_update":"2026-03-21T23:00:13.870415926Z"} +2026/03/21 23:00:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:00:13.878948948Z"} +2026/03/21 23:00:18 [transform_engine] {"stage_name":"transform_engine","events_processed":588,"events_dropped":0,"avg_latency_ms":485.0241672986484,"throughput_eps":0,"last_update":"2026-03-21T23:00:13.965193566Z"} +2026/03/21 23:00:18 [detection_layer] {"stage_name":"detection_layer","events_processed":588,"events_dropped":0,"avg_latency_ms":15.880322483903555,"throughput_eps":0,"last_update":"2026-03-21T23:00:13.966293389Z"} +2026/03/21 23:00:18 ───────────────────────────────────────────────── +2026/03/21 23:00:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:00:23 [transform_engine] {"stage_name":"transform_engine","events_processed":588,"events_dropped":0,"avg_latency_ms":485.0241672986484,"throughput_eps":0,"last_update":"2026-03-21T23:00:18.965659718Z"} +2026/03/21 23:00:23 [detection_layer] {"stage_name":"detection_layer","events_processed":588,"events_dropped":0,"avg_latency_ms":15.880322483903555,"throughput_eps":0,"last_update":"2026-03-21T23:00:18.965762966Z"} +2026/03/21 23:00:23 [log_collector] {"stage_name":"log_collector","events_processed":27633,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5526.6,"last_update":"2026-03-21T23:00:18.869498249Z"} +2026/03/21 23:00:23 [metric_collector] {"stage_name":"metric_collector","events_processed":17668,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3533.6,"last_update":"2026-03-21T23:00:18.869598281Z"} +2026/03/21 23:00:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:00:18.87839611Z"} +2026/03/21 23:00:23 ───────────────────────────────────────────────── +2026/03/21 23:00:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:00:28 [log_collector] {"stage_name":"log_collector","events_processed":27633,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5526.6,"last_update":"2026-03-21T23:00:23.86949668Z"} +2026/03/21 23:00:28 [metric_collector] {"stage_name":"metric_collector","events_processed":17674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3534.8,"last_update":"2026-03-21T23:00:23.869764673Z"} +2026/03/21 23:00:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7072,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:00:23.87827306Z"} +2026/03/21 23:00:28 [transform_engine] {"stage_name":"transform_engine","events_processed":589,"events_dropped":0,"avg_latency_ms":412.60510643891877,"throughput_eps":0,"last_update":"2026-03-21T23:00:23.965510339Z"} +2026/03/21 23:00:28 [detection_layer] {"stage_name":"detection_layer","events_processed":589,"events_dropped":0,"avg_latency_ms":16.764238387122845,"throughput_eps":0,"last_update":"2026-03-21T23:00:23.965466495Z"} +2026/03/21 23:00:28 ───────────────────────────────────────────────── +2026/03/21 23:00:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:00:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:00:28.879483917Z"} +2026/03/21 23:00:33 [transform_engine] {"stage_name":"transform_engine","events_processed":589,"events_dropped":0,"avg_latency_ms":412.60510643891877,"throughput_eps":0,"last_update":"2026-03-21T23:00:28.965856295Z"} +2026/03/21 23:00:33 [detection_layer] {"stage_name":"detection_layer","events_processed":589,"events_dropped":0,"avg_latency_ms":16.764238387122845,"throughput_eps":0,"last_update":"2026-03-21T23:00:28.965825636Z"} +2026/03/21 23:00:33 [log_collector] {"stage_name":"log_collector","events_processed":27633,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5526.6,"last_update":"2026-03-21T23:00:28.869841812Z"} +2026/03/21 23:00:33 [metric_collector] {"stage_name":"metric_collector","events_processed":17679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3535.8,"last_update":"2026-03-21T23:00:28.870424667Z"} +2026/03/21 23:00:33 ───────────────────────────────────────────────── +2026/03/21 23:00:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:00:38 [log_collector] {"stage_name":"log_collector","events_processed":27633,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5526.6,"last_update":"2026-03-21T23:00:33.869556451Z"} +2026/03/21 23:00:38 [metric_collector] {"stage_name":"metric_collector","events_processed":17684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3536.8,"last_update":"2026-03-21T23:00:33.869926589Z"} +2026/03/21 23:00:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7076,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:00:33.878761119Z"} +2026/03/21 23:00:38 [transform_engine] {"stage_name":"transform_engine","events_processed":589,"events_dropped":0,"avg_latency_ms":412.60510643891877,"throughput_eps":0,"last_update":"2026-03-21T23:00:33.966274941Z"} +2026/03/21 23:00:38 [detection_layer] {"stage_name":"detection_layer","events_processed":589,"events_dropped":0,"avg_latency_ms":16.764238387122845,"throughput_eps":0,"last_update":"2026-03-21T23:00:33.966161875Z"} +2026/03/21 23:00:38 ───────────────────────────────────────────────── +2026/03/21 23:00:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:00:43 [detection_layer] {"stage_name":"detection_layer","events_processed":589,"events_dropped":0,"avg_latency_ms":16.764238387122845,"throughput_eps":0,"last_update":"2026-03-21T23:00:38.965666738Z"} +2026/03/21 23:00:43 [log_collector] {"stage_name":"log_collector","events_processed":27633,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5526.6,"last_update":"2026-03-21T23:00:38.869650137Z"} +2026/03/21 23:00:43 [metric_collector] {"stage_name":"metric_collector","events_processed":17689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3537.8,"last_update":"2026-03-21T23:00:38.869668152Z"} +2026/03/21 23:00:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:00:38.878319622Z"} +2026/03/21 23:00:43 [transform_engine] {"stage_name":"transform_engine","events_processed":589,"events_dropped":0,"avg_latency_ms":412.60510643891877,"throughput_eps":0,"last_update":"2026-03-21T23:00:38.965788991Z"} +2026/03/21 23:00:43 ───────────────────────────────────────────────── +2026/03/21 23:00:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:00:48 [log_collector] {"stage_name":"log_collector","events_processed":27633,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5526.6,"last_update":"2026-03-21T23:00:43.870102623Z"} +2026/03/21 23:00:48 [metric_collector] {"stage_name":"metric_collector","events_processed":17694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3538.8,"last_update":"2026-03-21T23:00:43.870341889Z"} +2026/03/21 23:00:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:00:43.87947412Z"} +2026/03/21 23:00:48 [transform_engine] {"stage_name":"transform_engine","events_processed":589,"events_dropped":0,"avg_latency_ms":412.60510643891877,"throughput_eps":0,"last_update":"2026-03-21T23:00:43.965903082Z"} +2026/03/21 23:00:48 [detection_layer] {"stage_name":"detection_layer","events_processed":589,"events_dropped":0,"avg_latency_ms":16.764238387122845,"throughput_eps":0,"last_update":"2026-03-21T23:00:43.965801217Z"} +2026/03/21 23:00:48 ───────────────────────────────────────────────── +2026/03/21 23:00:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:00:53 [transform_engine] {"stage_name":"transform_engine","events_processed":590,"events_dropped":0,"avg_latency_ms":345.187526751135,"throughput_eps":0,"last_update":"2026-03-21T23:00:49.040990491Z"} +2026/03/21 23:00:53 [detection_layer] {"stage_name":"detection_layer","events_processed":589,"events_dropped":0,"avg_latency_ms":16.764238387122845,"throughput_eps":0,"last_update":"2026-03-21T23:00:48.965453204Z"} +2026/03/21 23:00:53 [log_collector] {"stage_name":"log_collector","events_processed":27633,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5526.6,"last_update":"2026-03-21T23:00:48.869876551Z"} +2026/03/21 23:00:53 [metric_collector] {"stage_name":"metric_collector","events_processed":17699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3539.8,"last_update":"2026-03-21T23:00:48.870502198Z"} +2026/03/21 23:00:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7082,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:00:48.879086831Z"} +2026/03/21 23:00:53 ───────────────────────────────────────────────── +2026/03/21 23:00:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:00:58 [detection_layer] {"stage_name":"detection_layer","events_processed":590,"events_dropped":0,"avg_latency_ms":17.310001109698277,"throughput_eps":0,"last_update":"2026-03-21T23:00:53.965598834Z"} +2026/03/21 23:00:58 [log_collector] {"stage_name":"log_collector","events_processed":27633,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5526.6,"last_update":"2026-03-21T23:00:53.869918089Z"} +2026/03/21 23:00:58 [metric_collector] {"stage_name":"metric_collector","events_processed":17704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3540.8,"last_update":"2026-03-21T23:00:53.870095579Z"} +2026/03/21 23:00:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:00:53.878403612Z"} +2026/03/21 23:00:58 [transform_engine] {"stage_name":"transform_engine","events_processed":590,"events_dropped":0,"avg_latency_ms":345.187526751135,"throughput_eps":0,"last_update":"2026-03-21T23:00:53.965155946Z"} +2026/03/21 23:00:58 ───────────────────────────────────────────────── +2026/03/21 23:01:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:01:03 [log_collector] {"stage_name":"log_collector","events_processed":27633,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5526.6,"last_update":"2026-03-21T23:00:58.869502022Z"} +2026/03/21 23:01:03 [metric_collector] {"stage_name":"metric_collector","events_processed":17709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3541.8,"last_update":"2026-03-21T23:00:58.869709688Z"} +2026/03/21 23:01:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:00:58.878074632Z"} +2026/03/21 23:01:03 [transform_engine] {"stage_name":"transform_engine","events_processed":590,"events_dropped":0,"avg_latency_ms":345.187526751135,"throughput_eps":0,"last_update":"2026-03-21T23:00:58.96524157Z"} +2026/03/21 23:01:03 [detection_layer] {"stage_name":"detection_layer","events_processed":590,"events_dropped":0,"avg_latency_ms":17.310001109698277,"throughput_eps":0,"last_update":"2026-03-21T23:00:58.965300834Z"} +2026/03/21 23:01:03 ───────────────────────────────────────────────── +Saved state: 18 clusters, 27637 messages, reason: none +2026/03/21 23:01:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:01:08 [log_collector] {"stage_name":"log_collector","events_processed":27636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5527.2,"last_update":"2026-03-21T23:01:03.869588313Z"} +2026/03/21 23:01:08 [metric_collector] {"stage_name":"metric_collector","events_processed":17714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3542.8,"last_update":"2026-03-21T23:01:03.870046519Z"} +2026/03/21 23:01:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:01:03.880026522Z"} +2026/03/21 23:01:08 [transform_engine] {"stage_name":"transform_engine","events_processed":590,"events_dropped":0,"avg_latency_ms":345.187526751135,"throughput_eps":0,"last_update":"2026-03-21T23:01:03.965253232Z"} +2026/03/21 23:01:08 [detection_layer] {"stage_name":"detection_layer","events_processed":590,"events_dropped":0,"avg_latency_ms":17.310001109698277,"throughput_eps":0,"last_update":"2026-03-21T23:01:03.965266236Z"} +2026/03/21 23:01:08 ───────────────────────────────────────────────── +2026/03/21 23:01:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:01:13 [log_collector] {"stage_name":"log_collector","events_processed":27661,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5532.2,"last_update":"2026-03-21T23:01:13.870242708Z"} +2026/03/21 23:01:13 [metric_collector] {"stage_name":"metric_collector","events_processed":17719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3543.8,"last_update":"2026-03-21T23:01:08.870814861Z"} +2026/03/21 23:01:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:01:08.877897812Z"} +2026/03/21 23:01:13 [transform_engine] {"stage_name":"transform_engine","events_processed":590,"events_dropped":0,"avg_latency_ms":345.187526751135,"throughput_eps":0,"last_update":"2026-03-21T23:01:08.965108299Z"} +2026/03/21 23:01:13 [detection_layer] {"stage_name":"detection_layer","events_processed":590,"events_dropped":0,"avg_latency_ms":17.310001109698277,"throughput_eps":0,"last_update":"2026-03-21T23:01:08.965288964Z"} +2026/03/21 23:01:13 ───────────────────────────────────────────────── +2026/03/21 23:01:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:01:18 [detection_layer] {"stage_name":"detection_layer","events_processed":590,"events_dropped":0,"avg_latency_ms":17.310001109698277,"throughput_eps":0,"last_update":"2026-03-21T23:01:13.965663714Z"} +2026/03/21 23:01:18 [log_collector] {"stage_name":"log_collector","events_processed":27663,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5532.6,"last_update":"2026-03-21T23:01:18.869676126Z"} +2026/03/21 23:01:18 [metric_collector] {"stage_name":"metric_collector","events_processed":17724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3544.8,"last_update":"2026-03-21T23:01:13.87066232Z"} +2026/03/21 23:01:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:01:13.876312651Z"} +2026/03/21 23:01:18 [transform_engine] {"stage_name":"transform_engine","events_processed":590,"events_dropped":0,"avg_latency_ms":345.187526751135,"throughput_eps":0,"last_update":"2026-03-21T23:01:13.965624158Z"} +2026/03/21 23:01:18 ───────────────────────────────────────────────── +2026/03/21 23:01:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:01:23 [log_collector] {"stage_name":"log_collector","events_processed":27663,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5532.6,"last_update":"2026-03-21T23:01:23.869428919Z"} +2026/03/21 23:01:23 [metric_collector] {"stage_name":"metric_collector","events_processed":17729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3545.8,"last_update":"2026-03-21T23:01:18.870180041Z"} +2026/03/21 23:01:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:01:18.877882267Z"} +2026/03/21 23:01:23 [transform_engine] {"stage_name":"transform_engine","events_processed":590,"events_dropped":0,"avg_latency_ms":345.187526751135,"throughput_eps":0,"last_update":"2026-03-21T23:01:18.965055224Z"} +2026/03/21 23:01:23 [detection_layer] {"stage_name":"detection_layer","events_processed":590,"events_dropped":0,"avg_latency_ms":17.310001109698277,"throughput_eps":0,"last_update":"2026-03-21T23:01:18.966318491Z"} +2026/03/21 23:01:23 ───────────────────────────────────────────────── +2026/03/21 23:01:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:01:28 [log_collector] {"stage_name":"log_collector","events_processed":27663,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5532.6,"last_update":"2026-03-21T23:01:23.869428919Z"} +2026/03/21 23:01:28 [metric_collector] {"stage_name":"metric_collector","events_processed":17734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3546.8,"last_update":"2026-03-21T23:01:23.869881335Z"} +2026/03/21 23:01:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:01:23.879090905Z"} +2026/03/21 23:01:28 [transform_engine] {"stage_name":"transform_engine","events_processed":591,"events_dropped":0,"avg_latency_ms":299.48681500090805,"throughput_eps":0,"last_update":"2026-03-21T23:01:23.965510903Z"} +2026/03/21 23:01:28 [detection_layer] {"stage_name":"detection_layer","events_processed":591,"events_dropped":0,"avg_latency_ms":17.472317087758626,"throughput_eps":0,"last_update":"2026-03-21T23:01:23.965422515Z"} +2026/03/21 23:01:28 ───────────────────────────────────────────────── +2026/03/21 23:01:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:01:33 [metric_collector] {"stage_name":"metric_collector","events_processed":17739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3547.8,"last_update":"2026-03-21T23:01:28.870527339Z"} +2026/03/21 23:01:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:01:28.878722949Z"} +2026/03/21 23:01:33 [transform_engine] {"stage_name":"transform_engine","events_processed":591,"events_dropped":0,"avg_latency_ms":299.48681500090805,"throughput_eps":0,"last_update":"2026-03-21T23:01:28.966004549Z"} +2026/03/21 23:01:33 [detection_layer] {"stage_name":"detection_layer","events_processed":591,"events_dropped":0,"avg_latency_ms":17.472317087758626,"throughput_eps":0,"last_update":"2026-03-21T23:01:28.965977627Z"} +2026/03/21 23:01:33 [log_collector] {"stage_name":"log_collector","events_processed":27663,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5532.6,"last_update":"2026-03-21T23:01:33.870307137Z"} +2026/03/21 23:01:33 ───────────────────────────────────────────────── +2026/03/21 23:01:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:01:38 [log_collector] {"stage_name":"log_collector","events_processed":27663,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5532.6,"last_update":"2026-03-21T23:01:38.869899397Z"} +2026/03/21 23:01:38 [metric_collector] {"stage_name":"metric_collector","events_processed":17744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3548.8,"last_update":"2026-03-21T23:01:33.870567596Z"} +2026/03/21 23:01:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:01:33.879747178Z"} +2026/03/21 23:01:38 [transform_engine] {"stage_name":"transform_engine","events_processed":591,"events_dropped":0,"avg_latency_ms":299.48681500090805,"throughput_eps":0,"last_update":"2026-03-21T23:01:33.966078411Z"} +2026/03/21 23:01:38 [detection_layer] {"stage_name":"detection_layer","events_processed":591,"events_dropped":0,"avg_latency_ms":17.472317087758626,"throughput_eps":0,"last_update":"2026-03-21T23:01:33.965977909Z"} +2026/03/21 23:01:38 ───────────────────────────────────────────────── +2026/03/21 23:01:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:01:43 [detection_layer] {"stage_name":"detection_layer","events_processed":591,"events_dropped":0,"avg_latency_ms":17.472317087758626,"throughput_eps":0,"last_update":"2026-03-21T23:01:38.965369357Z"} +2026/03/21 23:01:43 [log_collector] {"stage_name":"log_collector","events_processed":27663,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5532.6,"last_update":"2026-03-21T23:01:38.869899397Z"} +2026/03/21 23:01:43 [metric_collector] {"stage_name":"metric_collector","events_processed":17749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3549.8,"last_update":"2026-03-21T23:01:38.870584478Z"} +2026/03/21 23:01:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:01:38.878165062Z"} +2026/03/21 23:01:43 [transform_engine] {"stage_name":"transform_engine","events_processed":591,"events_dropped":0,"avg_latency_ms":299.48681500090805,"throughput_eps":0,"last_update":"2026-03-21T23:01:38.965409463Z"} +2026/03/21 23:01:43 ───────────────────────────────────────────────── +2026/03/21 23:01:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:01:48 [metric_collector] {"stage_name":"metric_collector","events_processed":17754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3550.8,"last_update":"2026-03-21T23:01:43.870408471Z"} +2026/03/21 23:01:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:01:43.876304401Z"} +2026/03/21 23:01:48 [transform_engine] {"stage_name":"transform_engine","events_processed":591,"events_dropped":0,"avg_latency_ms":299.48681500090805,"throughput_eps":0,"last_update":"2026-03-21T23:01:43.965691454Z"} +2026/03/21 23:01:48 [detection_layer] {"stage_name":"detection_layer","events_processed":591,"events_dropped":0,"avg_latency_ms":17.472317087758626,"throughput_eps":0,"last_update":"2026-03-21T23:01:43.965641308Z"} +2026/03/21 23:01:48 [log_collector] {"stage_name":"log_collector","events_processed":27677,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5535.4,"last_update":"2026-03-21T23:01:48.869398126Z"} +2026/03/21 23:01:48 ───────────────────────────────────────────────── +2026/03/21 23:01:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:01:53 [log_collector] {"stage_name":"log_collector","events_processed":27677,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5535.4,"last_update":"2026-03-21T23:01:53.869403932Z"} +2026/03/21 23:01:53 [metric_collector] {"stage_name":"metric_collector","events_processed":17759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3551.8,"last_update":"2026-03-21T23:01:48.869843567Z"} +2026/03/21 23:01:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:01:48.878561708Z"} +2026/03/21 23:01:53 [transform_engine] {"stage_name":"transform_engine","events_processed":591,"events_dropped":0,"avg_latency_ms":299.48681500090805,"throughput_eps":0,"last_update":"2026-03-21T23:01:48.965776066Z"} +2026/03/21 23:01:53 [detection_layer] {"stage_name":"detection_layer","events_processed":591,"events_dropped":0,"avg_latency_ms":17.472317087758626,"throughput_eps":0,"last_update":"2026-03-21T23:01:48.965854386Z"} +2026/03/21 23:01:53 ───────────────────────────────────────────────── +2026/03/21 23:01:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:01:58 [log_collector] {"stage_name":"log_collector","events_processed":27677,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5535.4,"last_update":"2026-03-21T23:01:53.869403932Z"} +2026/03/21 23:01:58 [metric_collector] {"stage_name":"metric_collector","events_processed":17764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3552.8,"last_update":"2026-03-21T23:01:53.86972707Z"} +2026/03/21 23:01:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:01:53.878694448Z"} +2026/03/21 23:01:58 [transform_engine] {"stage_name":"transform_engine","events_processed":592,"events_dropped":0,"avg_latency_ms":263.3349064007265,"throughput_eps":0,"last_update":"2026-03-21T23:01:53.965920559Z"} +2026/03/21 23:01:58 [detection_layer] {"stage_name":"detection_layer","events_processed":592,"events_dropped":0,"avg_latency_ms":17.8044228702069,"throughput_eps":0,"last_update":"2026-03-21T23:01:53.965891053Z"} +2026/03/21 23:01:58 ───────────────────────────────────────────────── +2026/03/21 23:02:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:02:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:01:58.879443443Z"} +2026/03/21 23:02:03 [transform_engine] {"stage_name":"transform_engine","events_processed":592,"events_dropped":0,"avg_latency_ms":263.3349064007265,"throughput_eps":0,"last_update":"2026-03-21T23:01:58.965843175Z"} +2026/03/21 23:02:03 [detection_layer] {"stage_name":"detection_layer","events_processed":592,"events_dropped":0,"avg_latency_ms":17.8044228702069,"throughput_eps":0,"last_update":"2026-03-21T23:01:58.965894524Z"} +2026/03/21 23:02:03 [log_collector] {"stage_name":"log_collector","events_processed":27677,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5535.4,"last_update":"2026-03-21T23:02:03.869411595Z"} +2026/03/21 23:02:03 [metric_collector] {"stage_name":"metric_collector","events_processed":17774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3554.8,"last_update":"2026-03-21T23:02:03.869797884Z"} +2026/03/21 23:02:03 ───────────────────────────────────────────────── +2026/03/21 23:02:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:02:08 [log_collector] {"stage_name":"log_collector","events_processed":27677,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5535.4,"last_update":"2026-03-21T23:02:08.870303424Z"} +2026/03/21 23:02:08 [metric_collector] {"stage_name":"metric_collector","events_processed":17774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3554.8,"last_update":"2026-03-21T23:02:03.869797884Z"} +2026/03/21 23:02:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:02:03.878648329Z"} +2026/03/21 23:02:08 [transform_engine] {"stage_name":"transform_engine","events_processed":592,"events_dropped":0,"avg_latency_ms":263.3349064007265,"throughput_eps":0,"last_update":"2026-03-21T23:02:03.96531308Z"} +2026/03/21 23:02:08 [detection_layer] {"stage_name":"detection_layer","events_processed":592,"events_dropped":0,"avg_latency_ms":17.8044228702069,"throughput_eps":0,"last_update":"2026-03-21T23:02:03.965384226Z"} +2026/03/21 23:02:08 ───────────────────────────────────────────────── +2026/03/21 23:02:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:02:13 [log_collector] {"stage_name":"log_collector","events_processed":27677,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5535.4,"last_update":"2026-03-21T23:02:13.869607869Z"} +2026/03/21 23:02:13 [metric_collector] {"stage_name":"metric_collector","events_processed":17779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3555.8,"last_update":"2026-03-21T23:02:08.870652933Z"} +2026/03/21 23:02:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:02:08.879456507Z"} +2026/03/21 23:02:13 [transform_engine] {"stage_name":"transform_engine","events_processed":592,"events_dropped":0,"avg_latency_ms":263.3349064007265,"throughput_eps":0,"last_update":"2026-03-21T23:02:08.965671049Z"} +2026/03/21 23:02:13 [detection_layer] {"stage_name":"detection_layer","events_processed":592,"events_dropped":0,"avg_latency_ms":17.8044228702069,"throughput_eps":0,"last_update":"2026-03-21T23:02:08.965777432Z"} +2026/03/21 23:02:13 ───────────────────────────────────────────────── +2026/03/21 23:02:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:02:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:02:13.878783705Z"} +2026/03/21 23:02:18 [transform_engine] {"stage_name":"transform_engine","events_processed":592,"events_dropped":0,"avg_latency_ms":263.3349064007265,"throughput_eps":0,"last_update":"2026-03-21T23:02:13.966167515Z"} +2026/03/21 23:02:18 [detection_layer] {"stage_name":"detection_layer","events_processed":592,"events_dropped":0,"avg_latency_ms":17.8044228702069,"throughput_eps":0,"last_update":"2026-03-21T23:02:13.965960009Z"} +2026/03/21 23:02:18 [log_collector] {"stage_name":"log_collector","events_processed":27677,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5535.4,"last_update":"2026-03-21T23:02:13.869607869Z"} +2026/03/21 23:02:18 [metric_collector] {"stage_name":"metric_collector","events_processed":17784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3556.8,"last_update":"2026-03-21T23:02:13.869998677Z"} +2026/03/21 23:02:18 ───────────────────────────────────────────────── +2026/03/21 23:02:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:02:23 [log_collector] {"stage_name":"log_collector","events_processed":27677,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5535.4,"last_update":"2026-03-21T23:02:18.870273832Z"} +2026/03/21 23:02:23 [metric_collector] {"stage_name":"metric_collector","events_processed":17789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3557.8,"last_update":"2026-03-21T23:02:18.870710076Z"} +2026/03/21 23:02:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:02:18.880105223Z"} +2026/03/21 23:02:23 [transform_engine] {"stage_name":"transform_engine","events_processed":592,"events_dropped":0,"avg_latency_ms":263.3349064007265,"throughput_eps":0,"last_update":"2026-03-21T23:02:18.96531204Z"} +2026/03/21 23:02:23 [detection_layer] {"stage_name":"detection_layer","events_processed":592,"events_dropped":0,"avg_latency_ms":17.8044228702069,"throughput_eps":0,"last_update":"2026-03-21T23:02:18.96533315Z"} +2026/03/21 23:02:23 ───────────────────────────────────────────────── +2026/03/21 23:02:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:02:28 [metric_collector] {"stage_name":"metric_collector","events_processed":17794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3558.8,"last_update":"2026-03-21T23:02:23.870672715Z"} +2026/03/21 23:02:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:02:23.879146409Z"} +2026/03/21 23:02:28 [transform_engine] {"stage_name":"transform_engine","events_processed":593,"events_dropped":0,"avg_latency_ms":227.4100477205812,"throughput_eps":0,"last_update":"2026-03-21T23:02:23.965481585Z"} +2026/03/21 23:02:28 [detection_layer] {"stage_name":"detection_layer","events_processed":593,"events_dropped":0,"avg_latency_ms":18.81715969616552,"throughput_eps":0,"last_update":"2026-03-21T23:02:23.965598298Z"} +2026/03/21 23:02:28 [log_collector] {"stage_name":"log_collector","events_processed":27677,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5535.4,"last_update":"2026-03-21T23:02:28.869545077Z"} +2026/03/21 23:02:28 ───────────────────────────────────────────────── +2026/03/21 23:02:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:02:33 [log_collector] {"stage_name":"log_collector","events_processed":27677,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5535.4,"last_update":"2026-03-21T23:02:33.8697274Z"} +2026/03/21 23:02:33 [metric_collector] {"stage_name":"metric_collector","events_processed":17799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3559.8,"last_update":"2026-03-21T23:02:28.869971202Z"} +2026/03/21 23:02:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7122,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:02:28.878711748Z"} +2026/03/21 23:02:33 [transform_engine] {"stage_name":"transform_engine","events_processed":593,"events_dropped":0,"avg_latency_ms":227.4100477205812,"throughput_eps":0,"last_update":"2026-03-21T23:02:28.966066467Z"} +2026/03/21 23:02:33 [detection_layer] {"stage_name":"detection_layer","events_processed":593,"events_dropped":0,"avg_latency_ms":18.81715969616552,"throughput_eps":0,"last_update":"2026-03-21T23:02:28.965962869Z"} +2026/03/21 23:02:33 ───────────────────────────────────────────────── +2026/03/21 23:02:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:02:38 [transform_engine] {"stage_name":"transform_engine","events_processed":593,"events_dropped":0,"avg_latency_ms":227.4100477205812,"throughput_eps":0,"last_update":"2026-03-21T23:02:33.965374619Z"} +2026/03/21 23:02:38 [detection_layer] {"stage_name":"detection_layer","events_processed":593,"events_dropped":0,"avg_latency_ms":18.81715969616552,"throughput_eps":0,"last_update":"2026-03-21T23:02:33.965570394Z"} +2026/03/21 23:02:38 [log_collector] {"stage_name":"log_collector","events_processed":27677,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5535.4,"last_update":"2026-03-21T23:02:33.8697274Z"} +2026/03/21 23:02:38 [metric_collector] {"stage_name":"metric_collector","events_processed":17804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3560.8,"last_update":"2026-03-21T23:02:33.870006434Z"} +2026/03/21 23:02:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:02:33.878132744Z"} +2026/03/21 23:02:38 ───────────────────────────────────────────────── +2026/03/21 23:02:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:02:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7126,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:02:38.878561085Z"} +2026/03/21 23:02:43 [transform_engine] {"stage_name":"transform_engine","events_processed":593,"events_dropped":0,"avg_latency_ms":227.4100477205812,"throughput_eps":0,"last_update":"2026-03-21T23:02:38.965888816Z"} +2026/03/21 23:02:43 [detection_layer] {"stage_name":"detection_layer","events_processed":593,"events_dropped":0,"avg_latency_ms":18.81715969616552,"throughput_eps":0,"last_update":"2026-03-21T23:02:38.966035676Z"} +2026/03/21 23:02:43 [log_collector] {"stage_name":"log_collector","events_processed":27677,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5535.4,"last_update":"2026-03-21T23:02:38.869451073Z"} +2026/03/21 23:02:43 [metric_collector] {"stage_name":"metric_collector","events_processed":17809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3561.8,"last_update":"2026-03-21T23:02:38.869730528Z"} +2026/03/21 23:02:43 ───────────────────────────────────────────────── +Saved state: 18 clusters, 27678 messages, reason: none +2026/03/21 23:02:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:02:48 [metric_collector] {"stage_name":"metric_collector","events_processed":17814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3562.8,"last_update":"2026-03-21T23:02:43.86980493Z"} +2026/03/21 23:02:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7128,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:02:43.879107721Z"} +2026/03/21 23:02:48 [transform_engine] {"stage_name":"transform_engine","events_processed":593,"events_dropped":0,"avg_latency_ms":227.4100477205812,"throughput_eps":0,"last_update":"2026-03-21T23:02:43.96549795Z"} +2026/03/21 23:02:48 [detection_layer] {"stage_name":"detection_layer","events_processed":593,"events_dropped":0,"avg_latency_ms":18.81715969616552,"throughput_eps":0,"last_update":"2026-03-21T23:02:43.965464526Z"} +2026/03/21 23:02:48 [log_collector] {"stage_name":"log_collector","events_processed":27677,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5535.4,"last_update":"2026-03-21T23:02:43.869830138Z"} +2026/03/21 23:02:48 ───────────────────────────────────────────────── +2026/03/21 23:02:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:02:53 [log_collector] {"stage_name":"log_collector","events_processed":27682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5536.4,"last_update":"2026-03-21T23:02:48.869679198Z"} +2026/03/21 23:02:53 [metric_collector] {"stage_name":"metric_collector","events_processed":17819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3563.8,"last_update":"2026-03-21T23:02:48.870019309Z"} +2026/03/21 23:02:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7130,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:02:48.876402032Z"} +2026/03/21 23:02:53 [transform_engine] {"stage_name":"transform_engine","events_processed":593,"events_dropped":0,"avg_latency_ms":227.4100477205812,"throughput_eps":0,"last_update":"2026-03-21T23:02:48.965570428Z"} +2026/03/21 23:02:53 [detection_layer] {"stage_name":"detection_layer","events_processed":593,"events_dropped":0,"avg_latency_ms":18.81715969616552,"throughput_eps":0,"last_update":"2026-03-21T23:02:48.96559206Z"} +2026/03/21 23:02:53 ───────────────────────────────────────────────── +2026/03/21 23:02:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:02:58 [log_collector] {"stage_name":"log_collector","events_processed":27682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5536.4,"last_update":"2026-03-21T23:02:53.870427243Z"} +2026/03/21 23:02:58 [metric_collector] {"stage_name":"metric_collector","events_processed":17824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3564.8,"last_update":"2026-03-21T23:02:53.870934244Z"} +2026/03/21 23:02:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:02:53.878207682Z"} +2026/03/21 23:02:58 [transform_engine] {"stage_name":"transform_engine","events_processed":594,"events_dropped":0,"avg_latency_ms":205.64023617646495,"throughput_eps":0,"last_update":"2026-03-21T23:02:53.965183754Z"} +2026/03/21 23:02:58 [detection_layer] {"stage_name":"detection_layer","events_processed":594,"events_dropped":0,"avg_latency_ms":18.037697956932416,"throughput_eps":0,"last_update":"2026-03-21T23:02:53.965275069Z"} +2026/03/21 23:02:58 ───────────────────────────────────────────────── +2026/03/21 23:03:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:03:03 [log_collector] {"stage_name":"log_collector","events_processed":27682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5536.4,"last_update":"2026-03-21T23:02:58.869787419Z"} +2026/03/21 23:03:03 [metric_collector] {"stage_name":"metric_collector","events_processed":17834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3566.8,"last_update":"2026-03-21T23:03:03.870706432Z"} +2026/03/21 23:03:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:02:58.875747193Z"} +2026/03/21 23:03:03 [transform_engine] {"stage_name":"transform_engine","events_processed":594,"events_dropped":0,"avg_latency_ms":205.64023617646495,"throughput_eps":0,"last_update":"2026-03-21T23:02:58.965980199Z"} +2026/03/21 23:03:03 [detection_layer] {"stage_name":"detection_layer","events_processed":594,"events_dropped":0,"avg_latency_ms":18.037697956932416,"throughput_eps":0,"last_update":"2026-03-21T23:02:58.966003354Z"} +2026/03/21 23:03:03 ───────────────────────────────────────────────── +2026/03/21 23:03:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:03:08 [log_collector] {"stage_name":"log_collector","events_processed":27682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5536.4,"last_update":"2026-03-21T23:03:03.870868903Z"} +2026/03/21 23:03:08 [metric_collector] {"stage_name":"metric_collector","events_processed":17834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3566.8,"last_update":"2026-03-21T23:03:03.870706432Z"} +2026/03/21 23:03:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:03:03.878383413Z"} +2026/03/21 23:03:08 [transform_engine] {"stage_name":"transform_engine","events_processed":594,"events_dropped":0,"avg_latency_ms":205.64023617646495,"throughput_eps":0,"last_update":"2026-03-21T23:03:03.965586772Z"} +2026/03/21 23:03:08 [detection_layer] {"stage_name":"detection_layer","events_processed":594,"events_dropped":0,"avg_latency_ms":18.037697956932416,"throughput_eps":0,"last_update":"2026-03-21T23:03:03.965604857Z"} +2026/03/21 23:03:08 ───────────────────────────────────────────────── +2026/03/21 23:03:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:03:13 [transform_engine] {"stage_name":"transform_engine","events_processed":594,"events_dropped":0,"avg_latency_ms":205.64023617646495,"throughput_eps":0,"last_update":"2026-03-21T23:03:08.966014452Z"} +2026/03/21 23:03:13 [detection_layer] {"stage_name":"detection_layer","events_processed":594,"events_dropped":0,"avg_latency_ms":18.037697956932416,"throughput_eps":0,"last_update":"2026-03-21T23:03:08.965996408Z"} +2026/03/21 23:03:13 [log_collector] {"stage_name":"log_collector","events_processed":27682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5536.4,"last_update":"2026-03-21T23:03:08.869424329Z"} +2026/03/21 23:03:13 [metric_collector] {"stage_name":"metric_collector","events_processed":17839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3567.8,"last_update":"2026-03-21T23:03:08.869650392Z"} +2026/03/21 23:03:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:03:08.876809541Z"} +2026/03/21 23:03:13 ───────────────────────────────────────────────── +2026/03/21 23:03:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:03:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:03:13.87590335Z"} +2026/03/21 23:03:18 [transform_engine] {"stage_name":"transform_engine","events_processed":594,"events_dropped":0,"avg_latency_ms":205.64023617646495,"throughput_eps":0,"last_update":"2026-03-21T23:03:13.966197177Z"} +2026/03/21 23:03:18 [detection_layer] {"stage_name":"detection_layer","events_processed":594,"events_dropped":0,"avg_latency_ms":18.037697956932416,"throughput_eps":0,"last_update":"2026-03-21T23:03:13.966187608Z"} +2026/03/21 23:03:18 [log_collector] {"stage_name":"log_collector","events_processed":27682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5536.4,"last_update":"2026-03-21T23:03:18.869393348Z"} +2026/03/21 23:03:18 [metric_collector] {"stage_name":"metric_collector","events_processed":17844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3568.8,"last_update":"2026-03-21T23:03:13.870280821Z"} +2026/03/21 23:03:18 ───────────────────────────────────────────────── +2026/03/21 23:03:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:03:23 [transform_engine] {"stage_name":"transform_engine","events_processed":595,"events_dropped":0,"avg_latency_ms":179.314941741172,"throughput_eps":0,"last_update":"2026-03-21T23:03:19.039416789Z"} +2026/03/21 23:03:23 [detection_layer] {"stage_name":"detection_layer","events_processed":594,"events_dropped":0,"avg_latency_ms":18.037697956932416,"throughput_eps":0,"last_update":"2026-03-21T23:03:18.965480082Z"} +2026/03/21 23:03:23 [log_collector] {"stage_name":"log_collector","events_processed":27682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5536.4,"last_update":"2026-03-21T23:03:18.869393348Z"} +2026/03/21 23:03:23 [metric_collector] {"stage_name":"metric_collector","events_processed":17849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3569.8,"last_update":"2026-03-21T23:03:18.869578863Z"} +2026/03/21 23:03:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:03:18.876205313Z"} +2026/03/21 23:03:23 ───────────────────────────────────────────────── +2026/03/21 23:03:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:03:28 [metric_collector] {"stage_name":"metric_collector","events_processed":17854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3570.8,"last_update":"2026-03-21T23:03:23.870242591Z"} +2026/03/21 23:03:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:03:23.878809164Z"} +2026/03/21 23:03:28 [transform_engine] {"stage_name":"transform_engine","events_processed":595,"events_dropped":0,"avg_latency_ms":179.314941741172,"throughput_eps":0,"last_update":"2026-03-21T23:03:23.966002381Z"} +2026/03/21 23:03:28 [detection_layer] {"stage_name":"detection_layer","events_processed":595,"events_dropped":0,"avg_latency_ms":17.076109565545934,"throughput_eps":0,"last_update":"2026-03-21T23:03:23.965990118Z"} +2026/03/21 23:03:28 [log_collector] {"stage_name":"log_collector","events_processed":27685,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5537,"last_update":"2026-03-21T23:03:28.869533682Z"} +2026/03/21 23:03:28 ───────────────────────────────────────────────── +2026/03/21 23:03:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:03:33 [log_collector] {"stage_name":"log_collector","events_processed":27685,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5537,"last_update":"2026-03-21T23:03:28.869533682Z"} +2026/03/21 23:03:33 [metric_collector] {"stage_name":"metric_collector","events_processed":17859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3571.8,"last_update":"2026-03-21T23:03:28.869904401Z"} +2026/03/21 23:03:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:03:28.878060409Z"} +2026/03/21 23:03:33 [transform_engine] {"stage_name":"transform_engine","events_processed":595,"events_dropped":0,"avg_latency_ms":179.314941741172,"throughput_eps":0,"last_update":"2026-03-21T23:03:28.965139039Z"} +2026/03/21 23:03:33 [detection_layer] {"stage_name":"detection_layer","events_processed":595,"events_dropped":0,"avg_latency_ms":17.076109565545934,"throughput_eps":0,"last_update":"2026-03-21T23:03:28.966219055Z"} +2026/03/21 23:03:33 ───────────────────────────────────────────────── +2026/03/21 23:03:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:03:38 [log_collector] {"stage_name":"log_collector","events_processed":27693,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5538.6,"last_update":"2026-03-21T23:03:33.869507169Z"} +2026/03/21 23:03:38 [metric_collector] {"stage_name":"metric_collector","events_processed":17864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3572.8,"last_update":"2026-03-21T23:03:33.869769401Z"} +2026/03/21 23:03:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:03:33.87854231Z"} +2026/03/21 23:03:38 [transform_engine] {"stage_name":"transform_engine","events_processed":595,"events_dropped":0,"avg_latency_ms":179.314941741172,"throughput_eps":0,"last_update":"2026-03-21T23:03:33.965869085Z"} +2026/03/21 23:03:38 [detection_layer] {"stage_name":"detection_layer","events_processed":595,"events_dropped":0,"avg_latency_ms":17.076109565545934,"throughput_eps":0,"last_update":"2026-03-21T23:03:33.965808959Z"} +2026/03/21 23:03:38 ───────────────────────────────────────────────── +2026/03/21 23:03:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:03:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:03:38.881407401Z"} +2026/03/21 23:03:43 [transform_engine] {"stage_name":"transform_engine","events_processed":595,"events_dropped":0,"avg_latency_ms":179.314941741172,"throughput_eps":0,"last_update":"2026-03-21T23:03:38.965298313Z"} +2026/03/21 23:03:43 [detection_layer] {"stage_name":"detection_layer","events_processed":595,"events_dropped":0,"avg_latency_ms":17.076109565545934,"throughput_eps":0,"last_update":"2026-03-21T23:03:38.965320796Z"} +2026/03/21 23:03:43 [log_collector] {"stage_name":"log_collector","events_processed":27798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5559.6,"last_update":"2026-03-21T23:03:43.870068649Z"} +2026/03/21 23:03:43 [metric_collector] {"stage_name":"metric_collector","events_processed":17869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3573.8,"last_update":"2026-03-21T23:03:38.870567296Z"} +2026/03/21 23:03:43 ───────────────────────────────────────────────── +Saved state: 18 clusters, 27989 messages, reason: none +2026/03/21 23:03:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:03:48 [detection_layer] {"stage_name":"detection_layer","events_processed":595,"events_dropped":0,"avg_latency_ms":17.076109565545934,"throughput_eps":0,"last_update":"2026-03-21T23:03:43.965394545Z"} +2026/03/21 23:03:48 [log_collector] {"stage_name":"log_collector","events_processed":27798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5559.6,"last_update":"2026-03-21T23:03:43.870068649Z"} +2026/03/21 23:03:48 [metric_collector] {"stage_name":"metric_collector","events_processed":17874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3574.8,"last_update":"2026-03-21T23:03:43.870411326Z"} +2026/03/21 23:03:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:03:43.878066445Z"} +2026/03/21 23:03:48 [transform_engine] {"stage_name":"transform_engine","events_processed":595,"events_dropped":0,"avg_latency_ms":179.314941741172,"throughput_eps":0,"last_update":"2026-03-21T23:03:43.965410255Z"} +2026/03/21 23:03:48 ───────────────────────────────────────────────── +2026/03/21 23:03:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:03:53 [transform_engine] {"stage_name":"transform_engine","events_processed":596,"events_dropped":0,"avg_latency_ms":166.67640439293763,"throughput_eps":0,"last_update":"2026-03-21T23:03:49.082000822Z"} +2026/03/21 23:03:53 [detection_layer] {"stage_name":"detection_layer","events_processed":595,"events_dropped":0,"avg_latency_ms":17.076109565545934,"throughput_eps":0,"last_update":"2026-03-21T23:03:48.965845864Z"} +2026/03/21 23:03:53 [log_collector] {"stage_name":"log_collector","events_processed":28040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5608,"last_update":"2026-03-21T23:03:48.870325546Z"} +2026/03/21 23:03:53 [metric_collector] {"stage_name":"metric_collector","events_processed":17879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3575.8,"last_update":"2026-03-21T23:03:48.870677849Z"} +2026/03/21 23:03:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:03:48.876575536Z"} +2026/03/21 23:03:53 ───────────────────────────────────────────────── +2026/03/21 23:03:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:03:58 [log_collector] {"stage_name":"log_collector","events_processed":28040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5608,"last_update":"2026-03-21T23:03:58.869656416Z"} +2026/03/21 23:03:58 [metric_collector] {"stage_name":"metric_collector","events_processed":17884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3576.8,"last_update":"2026-03-21T23:03:53.870068807Z"} +2026/03/21 23:03:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:03:53.878758056Z"} +2026/03/21 23:03:58 [transform_engine] {"stage_name":"transform_engine","events_processed":596,"events_dropped":0,"avg_latency_ms":166.67640439293763,"throughput_eps":0,"last_update":"2026-03-21T23:03:53.965955548Z"} +2026/03/21 23:03:58 [detection_layer] {"stage_name":"detection_layer","events_processed":596,"events_dropped":0,"avg_latency_ms":17.48113245243675,"throughput_eps":0,"last_update":"2026-03-21T23:03:53.965936371Z"} +2026/03/21 23:03:58 ───────────────────────────────────────────────── +2026/03/21 23:04:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:04:03 [log_collector] {"stage_name":"log_collector","events_processed":28040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5608,"last_update":"2026-03-21T23:04:03.869928731Z"} +2026/03/21 23:04:03 [metric_collector] {"stage_name":"metric_collector","events_processed":17889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3577.8,"last_update":"2026-03-21T23:03:58.870052975Z"} +2026/03/21 23:04:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:03:58.878422331Z"} +2026/03/21 23:04:03 [transform_engine] {"stage_name":"transform_engine","events_processed":596,"events_dropped":0,"avg_latency_ms":166.67640439293763,"throughput_eps":0,"last_update":"2026-03-21T23:03:58.965592233Z"} +2026/03/21 23:04:03 [detection_layer] {"stage_name":"detection_layer","events_processed":596,"events_dropped":0,"avg_latency_ms":17.48113245243675,"throughput_eps":0,"last_update":"2026-03-21T23:03:58.965722012Z"} +2026/03/21 23:04:03 ───────────────────────────────────────────────── +2026/03/21 23:04:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:04:08 [log_collector] {"stage_name":"log_collector","events_processed":28040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5608,"last_update":"2026-03-21T23:04:03.869928731Z"} +2026/03/21 23:04:08 [metric_collector] {"stage_name":"metric_collector","events_processed":17894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3578.8,"last_update":"2026-03-21T23:04:03.870216622Z"} +2026/03/21 23:04:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:04:03.879399597Z"} +2026/03/21 23:04:08 [transform_engine] {"stage_name":"transform_engine","events_processed":596,"events_dropped":0,"avg_latency_ms":166.67640439293763,"throughput_eps":0,"last_update":"2026-03-21T23:04:03.965598631Z"} +2026/03/21 23:04:08 [detection_layer] {"stage_name":"detection_layer","events_processed":596,"events_dropped":0,"avg_latency_ms":17.48113245243675,"throughput_eps":0,"last_update":"2026-03-21T23:04:03.965578302Z"} +2026/03/21 23:04:08 ───────────────────────────────────────────────── +2026/03/21 23:04:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:04:13 [log_collector] {"stage_name":"log_collector","events_processed":28040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5608,"last_update":"2026-03-21T23:04:08.869970669Z"} +2026/03/21 23:04:13 [metric_collector] {"stage_name":"metric_collector","events_processed":17899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3579.8,"last_update":"2026-03-21T23:04:08.870173207Z"} +2026/03/21 23:04:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:04:08.876164143Z"} +2026/03/21 23:04:13 [transform_engine] {"stage_name":"transform_engine","events_processed":596,"events_dropped":0,"avg_latency_ms":166.67640439293763,"throughput_eps":0,"last_update":"2026-03-21T23:04:08.965488761Z"} +2026/03/21 23:04:13 [detection_layer] {"stage_name":"detection_layer","events_processed":596,"events_dropped":0,"avg_latency_ms":17.48113245243675,"throughput_eps":0,"last_update":"2026-03-21T23:04:08.965373561Z"} +2026/03/21 23:04:13 ───────────────────────────────────────────────── +2026/03/21 23:04:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:04:18 [transform_engine] {"stage_name":"transform_engine","events_processed":596,"events_dropped":0,"avg_latency_ms":166.67640439293763,"throughput_eps":0,"last_update":"2026-03-21T23:04:13.965468705Z"} +2026/03/21 23:04:18 [detection_layer] {"stage_name":"detection_layer","events_processed":596,"events_dropped":0,"avg_latency_ms":17.48113245243675,"throughput_eps":0,"last_update":"2026-03-21T23:04:13.965451052Z"} +2026/03/21 23:04:18 [log_collector] {"stage_name":"log_collector","events_processed":28040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5608,"last_update":"2026-03-21T23:04:18.869417179Z"} +2026/03/21 23:04:18 [metric_collector] {"stage_name":"metric_collector","events_processed":17904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3580.8,"last_update":"2026-03-21T23:04:13.869761472Z"} +2026/03/21 23:04:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:04:13.878244867Z"} +2026/03/21 23:04:18 ───────────────────────────────────────────────── +2026/03/21 23:04:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:04:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:04:18.878435378Z"} +2026/03/21 23:04:23 [transform_engine] {"stage_name":"transform_engine","events_processed":597,"events_dropped":0,"avg_latency_ms":147.7703243143501,"throughput_eps":0,"last_update":"2026-03-21T23:04:19.03783579Z"} +2026/03/21 23:04:23 [detection_layer] {"stage_name":"detection_layer","events_processed":596,"events_dropped":0,"avg_latency_ms":17.48113245243675,"throughput_eps":0,"last_update":"2026-03-21T23:04:18.965798615Z"} +2026/03/21 23:04:23 [log_collector] {"stage_name":"log_collector","events_processed":28040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5608,"last_update":"2026-03-21T23:04:18.869417179Z"} +2026/03/21 23:04:23 [metric_collector] {"stage_name":"metric_collector","events_processed":17909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3581.8,"last_update":"2026-03-21T23:04:18.869994634Z"} +2026/03/21 23:04:23 ───────────────────────────────────────────────── +2026/03/21 23:04:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:04:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:04:23.878805145Z"} +2026/03/21 23:04:28 [transform_engine] {"stage_name":"transform_engine","events_processed":597,"events_dropped":0,"avg_latency_ms":147.7703243143501,"throughput_eps":0,"last_update":"2026-03-21T23:04:23.966078361Z"} +2026/03/21 23:04:28 [detection_layer] {"stage_name":"detection_layer","events_processed":597,"events_dropped":0,"avg_latency_ms":18.305212161949402,"throughput_eps":0,"last_update":"2026-03-21T23:04:23.966062611Z"} +2026/03/21 23:04:28 [log_collector] {"stage_name":"log_collector","events_processed":28040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5608,"last_update":"2026-03-21T23:04:23.86976275Z"} +2026/03/21 23:04:28 [metric_collector] {"stage_name":"metric_collector","events_processed":17914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3582.8,"last_update":"2026-03-21T23:04:23.869908329Z"} +2026/03/21 23:04:28 ───────────────────────────────────────────────── +2026/03/21 23:04:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:04:33 [log_collector] {"stage_name":"log_collector","events_processed":28040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5608,"last_update":"2026-03-21T23:04:28.869550756Z"} +2026/03/21 23:04:33 [metric_collector] {"stage_name":"metric_collector","events_processed":17919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3583.8,"last_update":"2026-03-21T23:04:28.869951142Z"} +2026/03/21 23:04:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7170,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:04:28.878376758Z"} +2026/03/21 23:04:33 [transform_engine] {"stage_name":"transform_engine","events_processed":597,"events_dropped":0,"avg_latency_ms":147.7703243143501,"throughput_eps":0,"last_update":"2026-03-21T23:04:28.965512891Z"} +2026/03/21 23:04:33 [detection_layer] {"stage_name":"detection_layer","events_processed":597,"events_dropped":0,"avg_latency_ms":18.305212161949402,"throughput_eps":0,"last_update":"2026-03-21T23:04:28.965504686Z"} +2026/03/21 23:04:33 ───────────────────────────────────────────────── +2026/03/21 23:04:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:04:38 [detection_layer] {"stage_name":"detection_layer","events_processed":597,"events_dropped":0,"avg_latency_ms":18.305212161949402,"throughput_eps":0,"last_update":"2026-03-21T23:04:33.965800094Z"} +2026/03/21 23:04:38 [log_collector] {"stage_name":"log_collector","events_processed":28040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5608,"last_update":"2026-03-21T23:04:33.869548573Z"} +2026/03/21 23:04:38 [metric_collector] {"stage_name":"metric_collector","events_processed":17924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3584.8,"last_update":"2026-03-21T23:04:33.870091893Z"} +2026/03/21 23:04:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:04:33.879341916Z"} +2026/03/21 23:04:38 [transform_engine] {"stage_name":"transform_engine","events_processed":597,"events_dropped":0,"avg_latency_ms":147.7703243143501,"throughput_eps":0,"last_update":"2026-03-21T23:04:33.965746732Z"} +2026/03/21 23:04:38 ───────────────────────────────────────────────── +2026/03/21 23:04:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:04:43 [log_collector] {"stage_name":"log_collector","events_processed":28040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5608,"last_update":"2026-03-21T23:04:38.869418609Z"} +2026/03/21 23:04:43 [metric_collector] {"stage_name":"metric_collector","events_processed":17929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3585.8,"last_update":"2026-03-21T23:04:38.86974828Z"} +2026/03/21 23:04:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:04:38.878463921Z"} +2026/03/21 23:04:43 [transform_engine] {"stage_name":"transform_engine","events_processed":597,"events_dropped":0,"avg_latency_ms":147.7703243143501,"throughput_eps":0,"last_update":"2026-03-21T23:04:38.965635065Z"} +2026/03/21 23:04:43 [detection_layer] {"stage_name":"detection_layer","events_processed":597,"events_dropped":0,"avg_latency_ms":18.305212161949402,"throughput_eps":0,"last_update":"2026-03-21T23:04:38.96566393Z"} +2026/03/21 23:04:43 ───────────────────────────────────────────────── +2026/03/21 23:04:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:04:48 [log_collector] {"stage_name":"log_collector","events_processed":28040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5608,"last_update":"2026-03-21T23:04:43.870510953Z"} +2026/03/21 23:04:48 [metric_collector] {"stage_name":"metric_collector","events_processed":17934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3586.8,"last_update":"2026-03-21T23:04:43.870788254Z"} +2026/03/21 23:04:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:04:43.879725639Z"} +2026/03/21 23:04:48 [transform_engine] {"stage_name":"transform_engine","events_processed":597,"events_dropped":0,"avg_latency_ms":147.7703243143501,"throughput_eps":0,"last_update":"2026-03-21T23:04:43.966058459Z"} +2026/03/21 23:04:48 [detection_layer] {"stage_name":"detection_layer","events_processed":597,"events_dropped":0,"avg_latency_ms":18.305212161949402,"throughput_eps":0,"last_update":"2026-03-21T23:04:43.966172368Z"} +2026/03/21 23:04:48 ───────────────────────────────────────────────── +2026/03/21 23:04:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:04:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:04:48.8798921Z"} +2026/03/21 23:04:53 [transform_engine] {"stage_name":"transform_engine","events_processed":598,"events_dropped":0,"avg_latency_ms":132.9084508514801,"throughput_eps":0,"last_update":"2026-03-21T23:04:49.038522802Z"} +2026/03/21 23:04:53 [detection_layer] {"stage_name":"detection_layer","events_processed":597,"events_dropped":0,"avg_latency_ms":18.305212161949402,"throughput_eps":0,"last_update":"2026-03-21T23:04:48.966157963Z"} +2026/03/21 23:04:53 [log_collector] {"stage_name":"log_collector","events_processed":28040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5608,"last_update":"2026-03-21T23:04:48.870297637Z"} +2026/03/21 23:04:53 [metric_collector] {"stage_name":"metric_collector","events_processed":17939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3587.8,"last_update":"2026-03-21T23:04:48.870735405Z"} +2026/03/21 23:04:53 ───────────────────────────────────────────────── +2026/03/21 23:04:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:04:58 [metric_collector] {"stage_name":"metric_collector","events_processed":17944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3588.8,"last_update":"2026-03-21T23:04:53.870689277Z"} +2026/03/21 23:04:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:04:53.879508596Z"} +2026/03/21 23:04:58 [transform_engine] {"stage_name":"transform_engine","events_processed":598,"events_dropped":0,"avg_latency_ms":132.9084508514801,"throughput_eps":0,"last_update":"2026-03-21T23:04:53.965735006Z"} +2026/03/21 23:04:58 [detection_layer] {"stage_name":"detection_layer","events_processed":598,"events_dropped":0,"avg_latency_ms":18.598752329559524,"throughput_eps":0,"last_update":"2026-03-21T23:04:53.965722843Z"} +2026/03/21 23:04:58 [log_collector] {"stage_name":"log_collector","events_processed":28040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5608,"last_update":"2026-03-21T23:04:53.870185033Z"} +2026/03/21 23:04:58 ───────────────────────────────────────────────── +2026/03/21 23:05:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:05:03 [metric_collector] {"stage_name":"metric_collector","events_processed":17949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3589.8,"last_update":"2026-03-21T23:04:58.870378241Z"} +2026/03/21 23:05:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:04:58.879170468Z"} +2026/03/21 23:05:03 [transform_engine] {"stage_name":"transform_engine","events_processed":598,"events_dropped":0,"avg_latency_ms":132.9084508514801,"throughput_eps":0,"last_update":"2026-03-21T23:04:58.965505065Z"} +2026/03/21 23:05:03 [detection_layer] {"stage_name":"detection_layer","events_processed":598,"events_dropped":0,"avg_latency_ms":18.598752329559524,"throughput_eps":0,"last_update":"2026-03-21T23:04:58.965497671Z"} +2026/03/21 23:05:03 [log_collector] {"stage_name":"log_collector","events_processed":28040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5608,"last_update":"2026-03-21T23:04:58.869979767Z"} +2026/03/21 23:05:03 ───────────────────────────────────────────────── +2026/03/21 23:05:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:05:08 [log_collector] {"stage_name":"log_collector","events_processed":28040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5608,"last_update":"2026-03-21T23:05:08.869583527Z"} +2026/03/21 23:05:08 [metric_collector] {"stage_name":"metric_collector","events_processed":17954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3590.8,"last_update":"2026-03-21T23:05:03.869849534Z"} +2026/03/21 23:05:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:05:03.879493512Z"} +2026/03/21 23:05:08 [transform_engine] {"stage_name":"transform_engine","events_processed":598,"events_dropped":0,"avg_latency_ms":132.9084508514801,"throughput_eps":0,"last_update":"2026-03-21T23:05:03.965849211Z"} +2026/03/21 23:05:08 [detection_layer] {"stage_name":"detection_layer","events_processed":598,"events_dropped":0,"avg_latency_ms":18.598752329559524,"throughput_eps":0,"last_update":"2026-03-21T23:05:03.965832058Z"} +2026/03/21 23:05:08 ───────────────────────────────────────────────── +2026/03/21 23:05:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:05:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:05:08.876672375Z"} +2026/03/21 23:05:13 [transform_engine] {"stage_name":"transform_engine","events_processed":598,"events_dropped":0,"avg_latency_ms":132.9084508514801,"throughput_eps":0,"last_update":"2026-03-21T23:05:08.96589346Z"} +2026/03/21 23:05:13 [detection_layer] {"stage_name":"detection_layer","events_processed":598,"events_dropped":0,"avg_latency_ms":18.598752329559524,"throughput_eps":0,"last_update":"2026-03-21T23:05:08.965880906Z"} +2026/03/21 23:05:13 [log_collector] {"stage_name":"log_collector","events_processed":28040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5608,"last_update":"2026-03-21T23:05:13.870367277Z"} +2026/03/21 23:05:13 [metric_collector] {"stage_name":"metric_collector","events_processed":17959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3591.8,"last_update":"2026-03-21T23:05:08.87003964Z"} +2026/03/21 23:05:13 ───────────────────────────────────────────────── +2026/03/21 23:05:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:05:18 [log_collector] {"stage_name":"log_collector","events_processed":28040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5608,"last_update":"2026-03-21T23:05:18.869406582Z"} +2026/03/21 23:05:18 [metric_collector] {"stage_name":"metric_collector","events_processed":17964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3592.8,"last_update":"2026-03-21T23:05:13.870824632Z"} +2026/03/21 23:05:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:05:13.87927198Z"} +2026/03/21 23:05:18 [transform_engine] {"stage_name":"transform_engine","events_processed":598,"events_dropped":0,"avg_latency_ms":132.9084508514801,"throughput_eps":0,"last_update":"2026-03-21T23:05:13.96564251Z"} +2026/03/21 23:05:18 [detection_layer] {"stage_name":"detection_layer","events_processed":598,"events_dropped":0,"avg_latency_ms":18.598752329559524,"throughput_eps":0,"last_update":"2026-03-21T23:05:13.9656267Z"} +2026/03/21 23:05:18 ───────────────────────────────────────────────── +Saved state: 18 clusters, 28041 messages, reason: none +2026/03/21 23:05:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:05:23 [log_collector] {"stage_name":"log_collector","events_processed":28040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5608,"last_update":"2026-03-21T23:05:18.869406582Z"} +2026/03/21 23:05:23 [metric_collector] {"stage_name":"metric_collector","events_processed":17969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3593.8,"last_update":"2026-03-21T23:05:18.869841114Z"} +2026/03/21 23:05:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:05:18.878662889Z"} +2026/03/21 23:05:23 [transform_engine] {"stage_name":"transform_engine","events_processed":599,"events_dropped":0,"avg_latency_ms":120.33447108118409,"throughput_eps":0,"last_update":"2026-03-21T23:05:19.035928952Z"} +2026/03/21 23:05:23 [detection_layer] {"stage_name":"detection_layer","events_processed":598,"events_dropped":0,"avg_latency_ms":18.598752329559524,"throughput_eps":0,"last_update":"2026-03-21T23:05:18.965876474Z"} +2026/03/21 23:05:23 ───────────────────────────────────────────────── +2026/03/21 23:05:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:05:28 [log_collector] {"stage_name":"log_collector","events_processed":28043,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5608.6,"last_update":"2026-03-21T23:05:23.869499288Z"} +2026/03/21 23:05:28 [metric_collector] {"stage_name":"metric_collector","events_processed":17974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3594.8,"last_update":"2026-03-21T23:05:23.870006008Z"} +2026/03/21 23:05:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:05:23.878970576Z"} +2026/03/21 23:05:28 [transform_engine] {"stage_name":"transform_engine","events_processed":599,"events_dropped":0,"avg_latency_ms":120.33447108118409,"throughput_eps":0,"last_update":"2026-03-21T23:05:23.965093534Z"} +2026/03/21 23:05:28 [detection_layer] {"stage_name":"detection_layer","events_processed":599,"events_dropped":0,"avg_latency_ms":18.91776606364762,"throughput_eps":0,"last_update":"2026-03-21T23:05:23.966215051Z"} +2026/03/21 23:05:28 ───────────────────────────────────────────────── +2026/03/21 23:05:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:05:33 [detection_layer] {"stage_name":"detection_layer","events_processed":599,"events_dropped":0,"avg_latency_ms":18.91776606364762,"throughput_eps":0,"last_update":"2026-03-21T23:05:28.96636343Z"} +2026/03/21 23:05:33 [log_collector] {"stage_name":"log_collector","events_processed":28043,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5608.6,"last_update":"2026-03-21T23:05:28.869412997Z"} +2026/03/21 23:05:33 [metric_collector] {"stage_name":"metric_collector","events_processed":17979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3595.8,"last_update":"2026-03-21T23:05:28.869624742Z"} +2026/03/21 23:05:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:05:28.876606665Z"} +2026/03/21 23:05:33 [transform_engine] {"stage_name":"transform_engine","events_processed":599,"events_dropped":0,"avg_latency_ms":120.33447108118409,"throughput_eps":0,"last_update":"2026-03-21T23:05:28.966381714Z"} +2026/03/21 23:05:33 ───────────────────────────────────────────────── +2026/03/21 23:05:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:05:38 [detection_layer] {"stage_name":"detection_layer","events_processed":599,"events_dropped":0,"avg_latency_ms":18.91776606364762,"throughput_eps":0,"last_update":"2026-03-21T23:05:33.966109541Z"} +2026/03/21 23:05:38 [log_collector] {"stage_name":"log_collector","events_processed":28068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5613.6,"last_update":"2026-03-21T23:05:33.869419855Z"} +2026/03/21 23:05:38 [metric_collector] {"stage_name":"metric_collector","events_processed":17984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3596.8,"last_update":"2026-03-21T23:05:33.869644676Z"} +2026/03/21 23:05:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:05:33.876272692Z"} +2026/03/21 23:05:38 [transform_engine] {"stage_name":"transform_engine","events_processed":599,"events_dropped":0,"avg_latency_ms":120.33447108118409,"throughput_eps":0,"last_update":"2026-03-21T23:05:33.966065566Z"} +2026/03/21 23:05:38 ───────────────────────────────────────────────── +2026/03/21 23:05:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:05:43 [log_collector] {"stage_name":"log_collector","events_processed":28073,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5614.6,"last_update":"2026-03-21T23:05:38.87018002Z"} +2026/03/21 23:05:43 [metric_collector] {"stage_name":"metric_collector","events_processed":17989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3597.8,"last_update":"2026-03-21T23:05:38.870506314Z"} +2026/03/21 23:05:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:05:38.878919267Z"} +2026/03/21 23:05:43 [transform_engine] {"stage_name":"transform_engine","events_processed":599,"events_dropped":0,"avg_latency_ms":120.33447108118409,"throughput_eps":0,"last_update":"2026-03-21T23:05:38.966094162Z"} +2026/03/21 23:05:43 [detection_layer] {"stage_name":"detection_layer","events_processed":599,"events_dropped":0,"avg_latency_ms":18.91776606364762,"throughput_eps":0,"last_update":"2026-03-21T23:05:38.966076618Z"} +2026/03/21 23:05:43 ───────────────────────────────────────────────── +2026/03/21 23:05:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:05:48 [metric_collector] {"stage_name":"metric_collector","events_processed":17994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3598.8,"last_update":"2026-03-21T23:05:43.869827025Z"} +2026/03/21 23:05:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:05:43.878427717Z"} +2026/03/21 23:05:48 [transform_engine] {"stage_name":"transform_engine","events_processed":599,"events_dropped":0,"avg_latency_ms":120.33447108118409,"throughput_eps":0,"last_update":"2026-03-21T23:05:43.965892978Z"} +2026/03/21 23:05:48 [detection_layer] {"stage_name":"detection_layer","events_processed":599,"events_dropped":0,"avg_latency_ms":18.91776606364762,"throughput_eps":0,"last_update":"2026-03-21T23:05:43.96577854Z"} +2026/03/21 23:05:48 [log_collector] {"stage_name":"log_collector","events_processed":28084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5616.8,"last_update":"2026-03-21T23:05:43.869622904Z"} +2026/03/21 23:05:48 ───────────────────────────────────────────────── +2026/03/21 23:05:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:05:53 [log_collector] {"stage_name":"log_collector","events_processed":28084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5616.8,"last_update":"2026-03-21T23:05:53.869595709Z"} +2026/03/21 23:05:53 [metric_collector] {"stage_name":"metric_collector","events_processed":17999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3599.8,"last_update":"2026-03-21T23:05:48.870040345Z"} +2026/03/21 23:05:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:05:48.87909155Z"} +2026/03/21 23:05:53 [transform_engine] {"stage_name":"transform_engine","events_processed":600,"events_dropped":0,"avg_latency_ms":119.35590106494728,"throughput_eps":0,"last_update":"2026-03-21T23:05:49.080822684Z"} +2026/03/21 23:05:53 [detection_layer] {"stage_name":"detection_layer","events_processed":599,"events_dropped":0,"avg_latency_ms":18.91776606364762,"throughput_eps":0,"last_update":"2026-03-21T23:05:48.965514869Z"} +2026/03/21 23:05:53 ───────────────────────────────────────────────── +2026/03/21 23:05:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:05:58 [transform_engine] {"stage_name":"transform_engine","events_processed":600,"events_dropped":0,"avg_latency_ms":119.35590106494728,"throughput_eps":0,"last_update":"2026-03-21T23:05:53.966043826Z"} +2026/03/21 23:05:58 [detection_layer] {"stage_name":"detection_layer","events_processed":600,"events_dropped":0,"avg_latency_ms":18.983426450918095,"throughput_eps":0,"last_update":"2026-03-21T23:05:53.965910912Z"} +2026/03/21 23:05:58 [log_collector] {"stage_name":"log_collector","events_processed":28084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5616.8,"last_update":"2026-03-21T23:05:53.869595709Z"} +2026/03/21 23:05:58 [metric_collector] {"stage_name":"metric_collector","events_processed":18004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3600.8,"last_update":"2026-03-21T23:05:53.870080005Z"} +2026/03/21 23:05:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:05:53.879560481Z"} +2026/03/21 23:05:58 ───────────────────────────────────────────────── +2026/03/21 23:06:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:06:03 [log_collector] {"stage_name":"log_collector","events_processed":28084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5616.8,"last_update":"2026-03-21T23:05:58.870678365Z"} +2026/03/21 23:06:03 [metric_collector] {"stage_name":"metric_collector","events_processed":18009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3601.8,"last_update":"2026-03-21T23:05:58.870971105Z"} +2026/03/21 23:06:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7206,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:05:58.880341721Z"} +2026/03/21 23:06:03 [transform_engine] {"stage_name":"transform_engine","events_processed":600,"events_dropped":0,"avg_latency_ms":119.35590106494728,"throughput_eps":0,"last_update":"2026-03-21T23:05:58.965532813Z"} +2026/03/21 23:06:03 [detection_layer] {"stage_name":"detection_layer","events_processed":600,"events_dropped":0,"avg_latency_ms":18.983426450918095,"throughput_eps":0,"last_update":"2026-03-21T23:05:58.965555826Z"} +2026/03/21 23:06:03 ───────────────────────────────────────────────── +2026/03/21 23:06:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:06:08 [log_collector] {"stage_name":"log_collector","events_processed":28084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5616.8,"last_update":"2026-03-21T23:06:03.870137193Z"} +2026/03/21 23:06:08 [metric_collector] {"stage_name":"metric_collector","events_processed":18014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3602.8,"last_update":"2026-03-21T23:06:03.870655735Z"} +2026/03/21 23:06:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:06:03.879261598Z"} +2026/03/21 23:06:08 [transform_engine] {"stage_name":"transform_engine","events_processed":600,"events_dropped":0,"avg_latency_ms":119.35590106494728,"throughput_eps":0,"last_update":"2026-03-21T23:06:03.965480108Z"} +2026/03/21 23:06:08 [detection_layer] {"stage_name":"detection_layer","events_processed":600,"events_dropped":0,"avg_latency_ms":18.983426450918095,"throughput_eps":0,"last_update":"2026-03-21T23:06:03.965500828Z"} +2026/03/21 23:06:08 ───────────────────────────────────────────────── +2026/03/21 23:06:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:06:13 [log_collector] {"stage_name":"log_collector","events_processed":28084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5616.8,"last_update":"2026-03-21T23:06:13.869897418Z"} +2026/03/21 23:06:13 [metric_collector] {"stage_name":"metric_collector","events_processed":18019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3603.8,"last_update":"2026-03-21T23:06:08.86988349Z"} +2026/03/21 23:06:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7210,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:06:08.877620841Z"} +2026/03/21 23:06:13 [transform_engine] {"stage_name":"transform_engine","events_processed":600,"events_dropped":0,"avg_latency_ms":119.35590106494728,"throughput_eps":0,"last_update":"2026-03-21T23:06:08.965964028Z"} +2026/03/21 23:06:13 [detection_layer] {"stage_name":"detection_layer","events_processed":600,"events_dropped":0,"avg_latency_ms":18.983426450918095,"throughput_eps":0,"last_update":"2026-03-21T23:06:08.965914894Z"} +2026/03/21 23:06:13 ───────────────────────────────────────────────── +2026/03/21 23:06:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:06:18 [log_collector] {"stage_name":"log_collector","events_processed":28084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5616.8,"last_update":"2026-03-21T23:06:18.870049867Z"} +2026/03/21 23:06:18 [metric_collector] {"stage_name":"metric_collector","events_processed":18024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3604.8,"last_update":"2026-03-21T23:06:13.870386654Z"} +2026/03/21 23:06:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:06:13.880040213Z"} +2026/03/21 23:06:18 [transform_engine] {"stage_name":"transform_engine","events_processed":600,"events_dropped":0,"avg_latency_ms":119.35590106494728,"throughput_eps":0,"last_update":"2026-03-21T23:06:13.965149942Z"} +2026/03/21 23:06:18 [detection_layer] {"stage_name":"detection_layer","events_processed":600,"events_dropped":0,"avg_latency_ms":18.983426450918095,"throughput_eps":0,"last_update":"2026-03-21T23:06:13.966237503Z"} +2026/03/21 23:06:18 ───────────────────────────────────────────────── +2026/03/21 23:06:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:06:23 [transform_engine] {"stage_name":"transform_engine","events_processed":601,"events_dropped":0,"avg_latency_ms":114.85097605195783,"throughput_eps":0,"last_update":"2026-03-21T23:06:19.062662411Z"} +2026/03/21 23:06:23 [detection_layer] {"stage_name":"detection_layer","events_processed":600,"events_dropped":0,"avg_latency_ms":18.983426450918095,"throughput_eps":0,"last_update":"2026-03-21T23:06:18.965933Z"} +2026/03/21 23:06:23 [log_collector] {"stage_name":"log_collector","events_processed":28084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5616.8,"last_update":"2026-03-21T23:06:23.870128115Z"} +2026/03/21 23:06:23 [metric_collector] {"stage_name":"metric_collector","events_processed":18029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3605.8,"last_update":"2026-03-21T23:06:18.870482876Z"} +2026/03/21 23:06:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:06:18.88042628Z"} +2026/03/21 23:06:23 ───────────────────────────────────────────────── +2026/03/21 23:06:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:06:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:06:23.878892992Z"} +2026/03/21 23:06:28 [transform_engine] {"stage_name":"transform_engine","events_processed":601,"events_dropped":0,"avg_latency_ms":114.85097605195783,"throughput_eps":0,"last_update":"2026-03-21T23:06:23.966068547Z"} +2026/03/21 23:06:28 [detection_layer] {"stage_name":"detection_layer","events_processed":601,"events_dropped":0,"avg_latency_ms":19.394679560734478,"throughput_eps":0,"last_update":"2026-03-21T23:06:23.966187435Z"} +2026/03/21 23:06:28 [log_collector] {"stage_name":"log_collector","events_processed":28084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5616.8,"last_update":"2026-03-21T23:06:28.870284438Z"} +2026/03/21 23:06:28 [metric_collector] {"stage_name":"metric_collector","events_processed":18034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3606.8,"last_update":"2026-03-21T23:06:23.870542869Z"} +2026/03/21 23:06:28 ───────────────────────────────────────────────── +2026/03/21 23:06:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:06:33 [log_collector] {"stage_name":"log_collector","events_processed":28084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5616.8,"last_update":"2026-03-21T23:06:28.870284438Z"} +2026/03/21 23:06:33 [metric_collector] {"stage_name":"metric_collector","events_processed":18039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3607.8,"last_update":"2026-03-21T23:06:28.870666048Z"} +2026/03/21 23:06:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:06:28.879236013Z"} +2026/03/21 23:06:33 [transform_engine] {"stage_name":"transform_engine","events_processed":601,"events_dropped":0,"avg_latency_ms":114.85097605195783,"throughput_eps":0,"last_update":"2026-03-21T23:06:28.965686381Z"} +2026/03/21 23:06:33 [detection_layer] {"stage_name":"detection_layer","events_processed":601,"events_dropped":0,"avg_latency_ms":19.394679560734478,"throughput_eps":0,"last_update":"2026-03-21T23:06:28.965533809Z"} +2026/03/21 23:06:33 ───────────────────────────────────────────────── +2026/03/21 23:06:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:06:38 [detection_layer] {"stage_name":"detection_layer","events_processed":601,"events_dropped":0,"avg_latency_ms":19.394679560734478,"throughput_eps":0,"last_update":"2026-03-21T23:06:33.96598353Z"} +2026/03/21 23:06:38 [log_collector] {"stage_name":"log_collector","events_processed":28084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5616.8,"last_update":"2026-03-21T23:06:33.86989414Z"} +2026/03/21 23:06:38 [metric_collector] {"stage_name":"metric_collector","events_processed":18044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3608.8,"last_update":"2026-03-21T23:06:33.870408745Z"} +2026/03/21 23:06:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:06:33.878747788Z"} +2026/03/21 23:06:38 [transform_engine] {"stage_name":"transform_engine","events_processed":601,"events_dropped":0,"avg_latency_ms":114.85097605195783,"throughput_eps":0,"last_update":"2026-03-21T23:06:33.965959734Z"} +2026/03/21 23:06:38 ───────────────────────────────────────────────── +Saved state: 18 clusters, 28085 messages, reason: none +2026/03/21 23:06:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:06:43 [log_collector] {"stage_name":"log_collector","events_processed":28084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5616.8,"last_update":"2026-03-21T23:06:38.869517827Z"} +2026/03/21 23:06:43 [metric_collector] {"stage_name":"metric_collector","events_processed":18049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3609.8,"last_update":"2026-03-21T23:06:38.86983819Z"} +2026/03/21 23:06:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7222,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:06:38.878987895Z"} +2026/03/21 23:06:43 [transform_engine] {"stage_name":"transform_engine","events_processed":601,"events_dropped":0,"avg_latency_ms":114.85097605195783,"throughput_eps":0,"last_update":"2026-03-21T23:06:38.965126348Z"} +2026/03/21 23:06:43 [detection_layer] {"stage_name":"detection_layer","events_processed":601,"events_dropped":0,"avg_latency_ms":19.394679560734478,"throughput_eps":0,"last_update":"2026-03-21T23:06:38.966238036Z"} +2026/03/21 23:06:43 ───────────────────────────────────────────────── +2026/03/21 23:06:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:06:48 [transform_engine] {"stage_name":"transform_engine","events_processed":601,"events_dropped":0,"avg_latency_ms":114.85097605195783,"throughput_eps":0,"last_update":"2026-03-21T23:06:43.965645153Z"} +2026/03/21 23:06:48 [detection_layer] {"stage_name":"detection_layer","events_processed":601,"events_dropped":0,"avg_latency_ms":19.394679560734478,"throughput_eps":0,"last_update":"2026-03-21T23:06:43.965657036Z"} +2026/03/21 23:06:48 [log_collector] {"stage_name":"log_collector","events_processed":28089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5617.8,"last_update":"2026-03-21T23:06:43.869536064Z"} +2026/03/21 23:06:48 [metric_collector] {"stage_name":"metric_collector","events_processed":18054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3610.8,"last_update":"2026-03-21T23:06:43.869903427Z"} +2026/03/21 23:06:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:06:43.884488174Z"} +2026/03/21 23:06:48 ───────────────────────────────────────────────── +2026/03/21 23:06:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:06:53 [log_collector] {"stage_name":"log_collector","events_processed":28089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5617.8,"last_update":"2026-03-21T23:06:48.869628778Z"} +2026/03/21 23:06:53 [metric_collector] {"stage_name":"metric_collector","events_processed":18059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3611.8,"last_update":"2026-03-21T23:06:48.869584654Z"} +2026/03/21 23:06:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:06:48.882222685Z"} +2026/03/21 23:06:53 [transform_engine] {"stage_name":"transform_engine","events_processed":602,"events_dropped":0,"avg_latency_ms":339.37335464156627,"throughput_eps":0,"last_update":"2026-03-21T23:06:50.202895995Z"} +2026/03/21 23:06:53 [detection_layer] {"stage_name":"detection_layer","events_processed":601,"events_dropped":0,"avg_latency_ms":19.394679560734478,"throughput_eps":0,"last_update":"2026-03-21T23:06:48.9653676Z"} +2026/03/21 23:06:53 ───────────────────────────────────────────────── +2026/03/21 23:06:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:06:58 [log_collector] {"stage_name":"log_collector","events_processed":28089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5617.8,"last_update":"2026-03-21T23:06:53.869568023Z"} +2026/03/21 23:06:58 [metric_collector] {"stage_name":"metric_collector","events_processed":18069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3613.8,"last_update":"2026-03-21T23:06:58.86980477Z"} +2026/03/21 23:06:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:06:53.875254778Z"} +2026/03/21 23:06:58 [transform_engine] {"stage_name":"transform_engine","events_processed":602,"events_dropped":0,"avg_latency_ms":339.37335464156627,"throughput_eps":0,"last_update":"2026-03-21T23:06:53.965461913Z"} +2026/03/21 23:06:58 [detection_layer] {"stage_name":"detection_layer","events_processed":602,"events_dropped":0,"avg_latency_ms":18.61765524858758,"throughput_eps":0,"last_update":"2026-03-21T23:06:53.96544479Z"} +2026/03/21 23:06:58 ───────────────────────────────────────────────── +2026/03/21 23:07:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:07:03 [log_collector] {"stage_name":"log_collector","events_processed":28089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5617.8,"last_update":"2026-03-21T23:06:58.869814879Z"} +2026/03/21 23:07:03 [metric_collector] {"stage_name":"metric_collector","events_processed":18069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3613.8,"last_update":"2026-03-21T23:06:58.86980477Z"} +2026/03/21 23:07:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:06:58.877999015Z"} +2026/03/21 23:07:03 [transform_engine] {"stage_name":"transform_engine","events_processed":602,"events_dropped":0,"avg_latency_ms":339.37335464156627,"throughput_eps":0,"last_update":"2026-03-21T23:06:58.965103512Z"} +2026/03/21 23:07:03 [detection_layer] {"stage_name":"detection_layer","events_processed":602,"events_dropped":0,"avg_latency_ms":18.61765524858758,"throughput_eps":0,"last_update":"2026-03-21T23:06:58.966183579Z"} +2026/03/21 23:07:03 ───────────────────────────────────────────────── +2026/03/21 23:07:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:07:08 [log_collector] {"stage_name":"log_collector","events_processed":28089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5617.8,"last_update":"2026-03-21T23:07:03.869912303Z"} +2026/03/21 23:07:08 [metric_collector] {"stage_name":"metric_collector","events_processed":18074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3614.8,"last_update":"2026-03-21T23:07:03.870227818Z"} +2026/03/21 23:07:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:07:03.876114676Z"} +2026/03/21 23:07:08 [transform_engine] {"stage_name":"transform_engine","events_processed":602,"events_dropped":0,"avg_latency_ms":339.37335464156627,"throughput_eps":0,"last_update":"2026-03-21T23:07:03.965326026Z"} +2026/03/21 23:07:08 [detection_layer] {"stage_name":"detection_layer","events_processed":602,"events_dropped":0,"avg_latency_ms":18.61765524858758,"throughput_eps":0,"last_update":"2026-03-21T23:07:03.96530713Z"} +2026/03/21 23:07:08 ───────────────────────────────────────────────── +2026/03/21 23:07:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:07:13 [log_collector] {"stage_name":"log_collector","events_processed":28089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5617.8,"last_update":"2026-03-21T23:07:13.869424401Z"} +2026/03/21 23:07:13 [metric_collector] {"stage_name":"metric_collector","events_processed":18079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3615.8,"last_update":"2026-03-21T23:07:08.870437599Z"} +2026/03/21 23:07:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:07:08.879206404Z"} +2026/03/21 23:07:13 [transform_engine] {"stage_name":"transform_engine","events_processed":602,"events_dropped":0,"avg_latency_ms":339.37335464156627,"throughput_eps":0,"last_update":"2026-03-21T23:07:08.965431128Z"} +2026/03/21 23:07:13 [detection_layer] {"stage_name":"detection_layer","events_processed":602,"events_dropped":0,"avg_latency_ms":18.61765524858758,"throughput_eps":0,"last_update":"2026-03-21T23:07:08.96544741Z"} +2026/03/21 23:07:13 ───────────────────────────────────────────────── +2026/03/21 23:07:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:07:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:07:13.876417237Z"} +2026/03/21 23:07:18 [transform_engine] {"stage_name":"transform_engine","events_processed":602,"events_dropped":0,"avg_latency_ms":339.37335464156627,"throughput_eps":0,"last_update":"2026-03-21T23:07:13.965585276Z"} +2026/03/21 23:07:18 [detection_layer] {"stage_name":"detection_layer","events_processed":602,"events_dropped":0,"avg_latency_ms":18.61765524858758,"throughput_eps":0,"last_update":"2026-03-21T23:07:13.965656271Z"} +2026/03/21 23:07:18 [log_collector] {"stage_name":"log_collector","events_processed":28089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5617.8,"last_update":"2026-03-21T23:07:13.869424401Z"} +2026/03/21 23:07:18 [metric_collector] {"stage_name":"metric_collector","events_processed":18084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3616.8,"last_update":"2026-03-21T23:07:13.869895993Z"} +2026/03/21 23:07:18 ───────────────────────────────────────────────── +2026/03/21 23:07:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:07:23 [transform_engine] {"stage_name":"transform_engine","events_processed":602,"events_dropped":0,"avg_latency_ms":339.37335464156627,"throughput_eps":0,"last_update":"2026-03-21T23:07:13.965585276Z"} +2026/03/21 23:07:23 [detection_layer] {"stage_name":"detection_layer","events_processed":602,"events_dropped":0,"avg_latency_ms":18.61765524858758,"throughput_eps":0,"last_update":"2026-03-21T23:07:18.965640506Z"} +2026/03/21 23:07:23 [log_collector] {"stage_name":"log_collector","events_processed":28089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5617.8,"last_update":"2026-03-21T23:07:18.870493421Z"} +2026/03/21 23:07:23 [metric_collector] {"stage_name":"metric_collector","events_processed":18089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3617.8,"last_update":"2026-03-21T23:07:18.870775832Z"} +2026/03/21 23:07:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:07:18.878444762Z"} +2026/03/21 23:07:23 ───────────────────────────────────────────────── +2026/03/21 23:07:24 [ANOMALY] time=2026-03-21T23:07:24Z score=0.8177 method=SEAD details=MAD!:w=0.25,s=0.80 RRCF-fast:w=0.20,s=0.82 RRCF-mid:w=0.17,s=0.71 RRCF-slow:w=0.14,s=0.77 COPOD!:w=0.25,s=0.93 +2026/03/21 23:07:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:07:28 [log_collector] {"stage_name":"log_collector","events_processed":28089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5617.8,"last_update":"2026-03-21T23:07:23.869571954Z"} +2026/03/21 23:07:28 [metric_collector] {"stage_name":"metric_collector","events_processed":18094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3618.8,"last_update":"2026-03-21T23:07:23.870172573Z"} +2026/03/21 23:07:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:07:23.875500743Z"} +2026/03/21 23:07:28 [transform_engine] {"stage_name":"transform_engine","events_processed":603,"events_dropped":0,"avg_latency_ms":1350.414154113253,"throughput_eps":0,"last_update":"2026-03-21T23:07:24.360300377Z"} +2026/03/21 23:07:28 [detection_layer] {"stage_name":"detection_layer","events_processed":602,"events_dropped":0,"avg_latency_ms":18.61765524858758,"throughput_eps":0,"last_update":"2026-03-21T23:07:23.965783878Z"} +2026/03/21 23:07:28 ───────────────────────────────────────────────── +2026/03/21 23:07:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:07:33 [log_collector] {"stage_name":"log_collector","events_processed":28098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5619.6,"last_update":"2026-03-21T23:07:28.869417443Z"} +2026/03/21 23:07:33 [metric_collector] {"stage_name":"metric_collector","events_processed":18098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3619.6,"last_update":"2026-03-21T23:07:28.86950486Z"} +2026/03/21 23:07:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:07:28.877401387Z"} +2026/03/21 23:07:33 [transform_engine] {"stage_name":"transform_engine","events_processed":603,"events_dropped":0,"avg_latency_ms":1350.414154113253,"throughput_eps":0,"last_update":"2026-03-21T23:07:28.965773223Z"} +2026/03/21 23:07:33 [detection_layer] {"stage_name":"detection_layer","events_processed":603,"events_dropped":0,"avg_latency_ms":18.672098198870067,"throughput_eps":0,"last_update":"2026-03-21T23:07:28.965748316Z"} +2026/03/21 23:07:33 ───────────────────────────────────────────────── +2026/03/21 23:07:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:07:38 [log_collector] {"stage_name":"log_collector","events_processed":28100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5620,"last_update":"2026-03-21T23:07:33.86941805Z"} +2026/03/21 23:07:38 [metric_collector] {"stage_name":"metric_collector","events_processed":18104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3620.8,"last_update":"2026-03-21T23:07:33.869809159Z"} +2026/03/21 23:07:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:07:33.878675782Z"} +2026/03/21 23:07:38 [transform_engine] {"stage_name":"transform_engine","events_processed":603,"events_dropped":0,"avg_latency_ms":1350.414154113253,"throughput_eps":0,"last_update":"2026-03-21T23:07:33.965869525Z"} +2026/03/21 23:07:38 [detection_layer] {"stage_name":"detection_layer","events_processed":603,"events_dropped":0,"avg_latency_ms":18.672098198870067,"throughput_eps":0,"last_update":"2026-03-21T23:07:33.965981109Z"} +2026/03/21 23:07:38 ───────────────────────────────────────────────── +2026/03/21 23:07:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:07:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7246,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:07:38.877382934Z"} +2026/03/21 23:07:43 [transform_engine] {"stage_name":"transform_engine","events_processed":603,"events_dropped":0,"avg_latency_ms":1350.414154113253,"throughput_eps":0,"last_update":"2026-03-21T23:07:38.965687675Z"} +2026/03/21 23:07:43 [detection_layer] {"stage_name":"detection_layer","events_processed":603,"events_dropped":0,"avg_latency_ms":18.672098198870067,"throughput_eps":0,"last_update":"2026-03-21T23:07:38.965681193Z"} +2026/03/21 23:07:43 [log_collector] {"stage_name":"log_collector","events_processed":28340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5668,"last_update":"2026-03-21T23:07:38.869530773Z"} +2026/03/21 23:07:43 [metric_collector] {"stage_name":"metric_collector","events_processed":18109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3621.8,"last_update":"2026-03-21T23:07:38.869767286Z"} +2026/03/21 23:07:43 ───────────────────────────────────────────────── +2026/03/21 23:07:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:07:48 [log_collector] {"stage_name":"log_collector","events_processed":28458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5691.6,"last_update":"2026-03-21T23:07:43.869492917Z"} +2026/03/21 23:07:48 [metric_collector] {"stage_name":"metric_collector","events_processed":18114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3622.8,"last_update":"2026-03-21T23:07:43.869839139Z"} +2026/03/21 23:07:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:07:43.878228579Z"} +2026/03/21 23:07:48 [transform_engine] {"stage_name":"transform_engine","events_processed":603,"events_dropped":0,"avg_latency_ms":1350.414154113253,"throughput_eps":0,"last_update":"2026-03-21T23:07:43.96581201Z"} +2026/03/21 23:07:48 [detection_layer] {"stage_name":"detection_layer","events_processed":603,"events_dropped":0,"avg_latency_ms":18.672098198870067,"throughput_eps":0,"last_update":"2026-03-21T23:07:43.965667434Z"} +2026/03/21 23:07:48 ───────────────────────────────────────────────── +Saved state: 18 clusters, 28459 messages, reason: none +2026/03/21 23:07:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:07:53 [log_collector] {"stage_name":"log_collector","events_processed":28458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5691.6,"last_update":"2026-03-21T23:07:48.869643909Z"} +2026/03/21 23:07:53 [metric_collector] {"stage_name":"metric_collector","events_processed":18119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3623.8,"last_update":"2026-03-21T23:07:48.869854282Z"} +2026/03/21 23:07:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:07:48.878619191Z"} +2026/03/21 23:07:53 [transform_engine] {"stage_name":"transform_engine","events_processed":604,"events_dropped":0,"avg_latency_ms":1103.7489902906025,"throughput_eps":0,"last_update":"2026-03-21T23:07:49.082914586Z"} +2026/03/21 23:07:53 [detection_layer] {"stage_name":"detection_layer","events_processed":603,"events_dropped":0,"avg_latency_ms":18.672098198870067,"throughput_eps":0,"last_update":"2026-03-21T23:07:48.965812605Z"} +2026/03/21 23:07:53 ───────────────────────────────────────────────── +2026/03/21 23:07:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:07:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:07:53.875682051Z"} +2026/03/21 23:07:58 [transform_engine] {"stage_name":"transform_engine","events_processed":604,"events_dropped":0,"avg_latency_ms":1103.7489902906025,"throughput_eps":0,"last_update":"2026-03-21T23:07:53.965886451Z"} +2026/03/21 23:07:58 [detection_layer] {"stage_name":"detection_layer","events_processed":604,"events_dropped":0,"avg_latency_ms":18.881963159096053,"throughput_eps":0,"last_update":"2026-03-21T23:07:53.965850392Z"} +2026/03/21 23:07:58 [log_collector] {"stage_name":"log_collector","events_processed":28461,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5692.2,"last_update":"2026-03-21T23:07:58.869411657Z"} +2026/03/21 23:07:58 [metric_collector] {"stage_name":"metric_collector","events_processed":18124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3624.8,"last_update":"2026-03-21T23:07:53.869630958Z"} +2026/03/21 23:07:58 ───────────────────────────────────────────────── +2026/03/21 23:08:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:08:03 [log_collector] {"stage_name":"log_collector","events_processed":28461,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5692.2,"last_update":"2026-03-21T23:07:58.869411657Z"} +2026/03/21 23:08:03 [metric_collector] {"stage_name":"metric_collector","events_processed":18129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3625.8,"last_update":"2026-03-21T23:07:58.869647889Z"} +2026/03/21 23:08:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:07:58.877240774Z"} +2026/03/21 23:08:03 [transform_engine] {"stage_name":"transform_engine","events_processed":604,"events_dropped":0,"avg_latency_ms":1103.7489902906025,"throughput_eps":0,"last_update":"2026-03-21T23:07:58.965394941Z"} +2026/03/21 23:08:03 [detection_layer] {"stage_name":"detection_layer","events_processed":604,"events_dropped":0,"avg_latency_ms":18.881963159096053,"throughput_eps":0,"last_update":"2026-03-21T23:07:58.965374432Z"} +2026/03/21 23:08:03 ───────────────────────────────────────────────── +2026/03/21 23:08:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:08:08 [log_collector] {"stage_name":"log_collector","events_processed":28472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5694.4,"last_update":"2026-03-21T23:08:03.870320272Z"} +2026/03/21 23:08:08 [metric_collector] {"stage_name":"metric_collector","events_processed":18134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3626.8,"last_update":"2026-03-21T23:08:03.870518913Z"} +2026/03/21 23:08:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:08:03.877769693Z"} +2026/03/21 23:08:08 [transform_engine] {"stage_name":"transform_engine","events_processed":604,"events_dropped":0,"avg_latency_ms":1103.7489902906025,"throughput_eps":0,"last_update":"2026-03-21T23:08:03.96597107Z"} +2026/03/21 23:08:08 [detection_layer] {"stage_name":"detection_layer","events_processed":604,"events_dropped":0,"avg_latency_ms":18.881963159096053,"throughput_eps":0,"last_update":"2026-03-21T23:08:03.966005186Z"} +2026/03/21 23:08:08 ───────────────────────────────────────────────── +2026/03/21 23:08:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:08:13 [log_collector] {"stage_name":"log_collector","events_processed":28479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5695.8,"last_update":"2026-03-21T23:08:08.869594287Z"} +2026/03/21 23:08:13 [metric_collector] {"stage_name":"metric_collector","events_processed":18139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3627.8,"last_update":"2026-03-21T23:08:08.869658801Z"} +2026/03/21 23:08:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:08:08.877366145Z"} +2026/03/21 23:08:13 [transform_engine] {"stage_name":"transform_engine","events_processed":604,"events_dropped":0,"avg_latency_ms":1103.7489902906025,"throughput_eps":0,"last_update":"2026-03-21T23:08:08.965557253Z"} +2026/03/21 23:08:13 [detection_layer] {"stage_name":"detection_layer","events_processed":604,"events_dropped":0,"avg_latency_ms":18.881963159096053,"throughput_eps":0,"last_update":"2026-03-21T23:08:08.965585978Z"} +2026/03/21 23:08:13 ───────────────────────────────────────────────── +2026/03/21 23:08:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:08:18 [metric_collector] {"stage_name":"metric_collector","events_processed":18144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3628.8,"last_update":"2026-03-21T23:08:13.869929709Z"} +2026/03/21 23:08:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:08:13.879824571Z"} +2026/03/21 23:08:18 [transform_engine] {"stage_name":"transform_engine","events_processed":604,"events_dropped":0,"avg_latency_ms":1103.7489902906025,"throughput_eps":0,"last_update":"2026-03-21T23:08:13.966128077Z"} +2026/03/21 23:08:18 [detection_layer] {"stage_name":"detection_layer","events_processed":604,"events_dropped":0,"avg_latency_ms":18.881963159096053,"throughput_eps":0,"last_update":"2026-03-21T23:08:13.966118179Z"} +2026/03/21 23:08:18 [log_collector] {"stage_name":"log_collector","events_processed":28488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5697.6,"last_update":"2026-03-21T23:08:13.869669231Z"} +2026/03/21 23:08:18 ───────────────────────────────────────────────── +2026/03/21 23:08:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:08:23 [detection_layer] {"stage_name":"detection_layer","events_processed":604,"events_dropped":0,"avg_latency_ms":18.881963159096053,"throughput_eps":0,"last_update":"2026-03-21T23:08:18.966108719Z"} +2026/03/21 23:08:23 [log_collector] {"stage_name":"log_collector","events_processed":28488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5697.6,"last_update":"2026-03-21T23:08:18.869568204Z"} +2026/03/21 23:08:23 [metric_collector] {"stage_name":"metric_collector","events_processed":18149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3629.8,"last_update":"2026-03-21T23:08:18.869848851Z"} +2026/03/21 23:08:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:08:18.877925143Z"} +2026/03/21 23:08:23 [transform_engine] {"stage_name":"transform_engine","events_processed":605,"events_dropped":0,"avg_latency_ms":904.0698634324821,"throughput_eps":0,"last_update":"2026-03-21T23:08:19.071483053Z"} +2026/03/21 23:08:23 ───────────────────────────────────────────────── +2026/03/21 23:08:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:08:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:08:23.878388412Z"} +2026/03/21 23:08:28 [transform_engine] {"stage_name":"transform_engine","events_processed":605,"events_dropped":0,"avg_latency_ms":904.0698634324821,"throughput_eps":0,"last_update":"2026-03-21T23:08:23.965725197Z"} +2026/03/21 23:08:28 [detection_layer] {"stage_name":"detection_layer","events_processed":605,"events_dropped":0,"avg_latency_ms":17.949983727276845,"throughput_eps":0,"last_update":"2026-03-21T23:08:23.965685421Z"} +2026/03/21 23:08:28 [log_collector] {"stage_name":"log_collector","events_processed":28488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5697.6,"last_update":"2026-03-21T23:08:23.869406517Z"} +2026/03/21 23:08:28 [metric_collector] {"stage_name":"metric_collector","events_processed":18154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3630.8,"last_update":"2026-03-21T23:08:23.869750836Z"} +2026/03/21 23:08:28 ───────────────────────────────────────────────── +2026/03/21 23:08:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:08:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:08:28.878620823Z"} +2026/03/21 23:08:33 [transform_engine] {"stage_name":"transform_engine","events_processed":605,"events_dropped":0,"avg_latency_ms":904.0698634324821,"throughput_eps":0,"last_update":"2026-03-21T23:08:28.96595761Z"} +2026/03/21 23:08:33 [detection_layer] {"stage_name":"detection_layer","events_processed":605,"events_dropped":0,"avg_latency_ms":17.949983727276845,"throughput_eps":0,"last_update":"2026-03-21T23:08:28.96601507Z"} +2026/03/21 23:08:33 [log_collector] {"stage_name":"log_collector","events_processed":28488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5697.6,"last_update":"2026-03-21T23:08:28.870062911Z"} +2026/03/21 23:08:33 [metric_collector] {"stage_name":"metric_collector","events_processed":18159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3631.8,"last_update":"2026-03-21T23:08:28.87028217Z"} +2026/03/21 23:08:33 ───────────────────────────────────────────────── +2026/03/21 23:08:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:08:38 [detection_layer] {"stage_name":"detection_layer","events_processed":605,"events_dropped":0,"avg_latency_ms":17.949983727276845,"throughput_eps":0,"last_update":"2026-03-21T23:08:33.96612383Z"} +2026/03/21 23:08:38 [log_collector] {"stage_name":"log_collector","events_processed":28488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5697.6,"last_update":"2026-03-21T23:08:33.870009069Z"} +2026/03/21 23:08:38 [metric_collector] {"stage_name":"metric_collector","events_processed":18164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3632.8,"last_update":"2026-03-21T23:08:33.870332508Z"} +2026/03/21 23:08:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:08:33.879628414Z"} +2026/03/21 23:08:38 [transform_engine] {"stage_name":"transform_engine","events_processed":605,"events_dropped":0,"avg_latency_ms":904.0698634324821,"throughput_eps":0,"last_update":"2026-03-21T23:08:33.96601927Z"} +2026/03/21 23:08:38 ───────────────────────────────────────────────── +2026/03/21 23:08:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:08:43 [metric_collector] {"stage_name":"metric_collector","events_processed":18169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3633.8,"last_update":"2026-03-21T23:08:38.870734793Z"} +2026/03/21 23:08:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:08:38.879215048Z"} +2026/03/21 23:08:43 [transform_engine] {"stage_name":"transform_engine","events_processed":605,"events_dropped":0,"avg_latency_ms":904.0698634324821,"throughput_eps":0,"last_update":"2026-03-21T23:08:38.965495073Z"} +2026/03/21 23:08:43 [detection_layer] {"stage_name":"detection_layer","events_processed":605,"events_dropped":0,"avg_latency_ms":17.949983727276845,"throughput_eps":0,"last_update":"2026-03-21T23:08:38.965598191Z"} +2026/03/21 23:08:43 [log_collector] {"stage_name":"log_collector","events_processed":28488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5697.6,"last_update":"2026-03-21T23:08:38.869925334Z"} +2026/03/21 23:08:43 ───────────────────────────────────────────────── +2026/03/21 23:08:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:08:48 [detection_layer] {"stage_name":"detection_layer","events_processed":605,"events_dropped":0,"avg_latency_ms":17.949983727276845,"throughput_eps":0,"last_update":"2026-03-21T23:08:43.966280788Z"} +2026/03/21 23:08:48 [log_collector] {"stage_name":"log_collector","events_processed":28488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5697.6,"last_update":"2026-03-21T23:08:43.869433162Z"} +2026/03/21 23:08:48 [metric_collector] {"stage_name":"metric_collector","events_processed":18174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3634.8,"last_update":"2026-03-21T23:08:43.869770799Z"} +2026/03/21 23:08:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:08:43.877941281Z"} +2026/03/21 23:08:48 [transform_engine] {"stage_name":"transform_engine","events_processed":605,"events_dropped":0,"avg_latency_ms":904.0698634324821,"throughput_eps":0,"last_update":"2026-03-21T23:08:43.96513762Z"} +2026/03/21 23:08:48 ───────────────────────────────────────────────── +2026/03/21 23:08:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:08:53 [metric_collector] {"stage_name":"metric_collector","events_processed":18179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3635.8,"last_update":"2026-03-21T23:08:48.870421267Z"} +2026/03/21 23:08:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:08:48.878694696Z"} +2026/03/21 23:08:53 [transform_engine] {"stage_name":"transform_engine","events_processed":605,"events_dropped":0,"avg_latency_ms":904.0698634324821,"throughput_eps":0,"last_update":"2026-03-21T23:08:48.966036505Z"} +2026/03/21 23:08:53 [detection_layer] {"stage_name":"detection_layer","events_processed":605,"events_dropped":0,"avg_latency_ms":17.949983727276845,"throughput_eps":0,"last_update":"2026-03-21T23:08:48.96607623Z"} +2026/03/21 23:08:53 [log_collector] {"stage_name":"log_collector","events_processed":28488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5697.6,"last_update":"2026-03-21T23:08:48.869878878Z"} +2026/03/21 23:08:53 ───────────────────────────────────────────────── +2026/03/21 23:08:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:08:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7276,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:08:53.879050382Z"} +2026/03/21 23:08:58 [transform_engine] {"stage_name":"transform_engine","events_processed":606,"events_dropped":0,"avg_latency_ms":738.4221311459856,"throughput_eps":0,"last_update":"2026-03-21T23:08:53.96507002Z"} +2026/03/21 23:08:58 [detection_layer] {"stage_name":"detection_layer","events_processed":606,"events_dropped":0,"avg_latency_ms":18.469608581821475,"throughput_eps":0,"last_update":"2026-03-21T23:08:53.96619296Z"} +2026/03/21 23:08:58 [log_collector] {"stage_name":"log_collector","events_processed":28488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5697.6,"last_update":"2026-03-21T23:08:53.869413954Z"} +2026/03/21 23:08:58 [metric_collector] {"stage_name":"metric_collector","events_processed":18184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3636.8,"last_update":"2026-03-21T23:08:53.869989666Z"} +2026/03/21 23:08:58 ───────────────────────────────────────────────── +2026/03/21 23:09:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:09:03 [metric_collector] {"stage_name":"metric_collector","events_processed":18189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3637.8,"last_update":"2026-03-21T23:08:58.870776252Z"} +2026/03/21 23:09:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:08:58.879181873Z"} +2026/03/21 23:09:03 [transform_engine] {"stage_name":"transform_engine","events_processed":606,"events_dropped":0,"avg_latency_ms":738.4221311459856,"throughput_eps":0,"last_update":"2026-03-21T23:08:58.96542463Z"} +2026/03/21 23:09:03 [detection_layer] {"stage_name":"detection_layer","events_processed":606,"events_dropped":0,"avg_latency_ms":18.469608581821475,"throughput_eps":0,"last_update":"2026-03-21T23:08:58.965381107Z"} +2026/03/21 23:09:03 [log_collector] {"stage_name":"log_collector","events_processed":28488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5697.6,"last_update":"2026-03-21T23:08:58.870569998Z"} +2026/03/21 23:09:03 ───────────────────────────────────────────────── +2026/03/21 23:09:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:09:08 [detection_layer] {"stage_name":"detection_layer","events_processed":606,"events_dropped":0,"avg_latency_ms":18.469608581821475,"throughput_eps":0,"last_update":"2026-03-21T23:09:03.965567386Z"} +2026/03/21 23:09:08 [log_collector] {"stage_name":"log_collector","events_processed":28488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5697.6,"last_update":"2026-03-21T23:09:03.869694352Z"} +2026/03/21 23:09:08 [metric_collector] {"stage_name":"metric_collector","events_processed":18194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3638.8,"last_update":"2026-03-21T23:09:03.870172167Z"} +2026/03/21 23:09:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:09:03.878199916Z"} +2026/03/21 23:09:08 [transform_engine] {"stage_name":"transform_engine","events_processed":606,"events_dropped":0,"avg_latency_ms":738.4221311459856,"throughput_eps":0,"last_update":"2026-03-21T23:09:03.965539753Z"} +2026/03/21 23:09:08 ───────────────────────────────────────────────── +2026/03/21 23:09:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:09:13 [detection_layer] {"stage_name":"detection_layer","events_processed":606,"events_dropped":0,"avg_latency_ms":18.469608581821475,"throughput_eps":0,"last_update":"2026-03-21T23:09:08.965457056Z"} +2026/03/21 23:09:13 [log_collector] {"stage_name":"log_collector","events_processed":28488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5697.6,"last_update":"2026-03-21T23:09:08.87011099Z"} +2026/03/21 23:09:13 [metric_collector] {"stage_name":"metric_collector","events_processed":18199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3639.8,"last_update":"2026-03-21T23:09:08.870478854Z"} +2026/03/21 23:09:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:09:08.879220671Z"} +2026/03/21 23:09:13 [transform_engine] {"stage_name":"transform_engine","events_processed":606,"events_dropped":0,"avg_latency_ms":738.4221311459856,"throughput_eps":0,"last_update":"2026-03-21T23:09:08.965438911Z"} +2026/03/21 23:09:13 ───────────────────────────────────────────────── +2026/03/21 23:09:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:09:18 [log_collector] {"stage_name":"log_collector","events_processed":28488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5697.6,"last_update":"2026-03-21T23:09:13.870372696Z"} +2026/03/21 23:09:18 [metric_collector] {"stage_name":"metric_collector","events_processed":18204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3640.8,"last_update":"2026-03-21T23:09:13.870765968Z"} +2026/03/21 23:09:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:09:13.879496272Z"} +2026/03/21 23:09:18 [transform_engine] {"stage_name":"transform_engine","events_processed":606,"events_dropped":0,"avg_latency_ms":738.4221311459856,"throughput_eps":0,"last_update":"2026-03-21T23:09:13.96569655Z"} +2026/03/21 23:09:18 [detection_layer] {"stage_name":"detection_layer","events_processed":606,"events_dropped":0,"avg_latency_ms":18.469608581821475,"throughput_eps":0,"last_update":"2026-03-21T23:09:13.965800589Z"} +2026/03/21 23:09:18 ───────────────────────────────────────────────── +Saved state: 18 clusters, 28489 messages, reason: none +2026/03/21 23:09:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:09:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7286,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:09:18.879055773Z"} +2026/03/21 23:09:23 [transform_engine] {"stage_name":"transform_engine","events_processed":606,"events_dropped":0,"avg_latency_ms":738.4221311459856,"throughput_eps":0,"last_update":"2026-03-21T23:09:18.965660384Z"} +2026/03/21 23:09:23 [detection_layer] {"stage_name":"detection_layer","events_processed":606,"events_dropped":0,"avg_latency_ms":18.469608581821475,"throughput_eps":0,"last_update":"2026-03-21T23:09:18.965713667Z"} +2026/03/21 23:09:23 [log_collector] {"stage_name":"log_collector","events_processed":28488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5697.6,"last_update":"2026-03-21T23:09:18.869660937Z"} +2026/03/21 23:09:23 [metric_collector] {"stage_name":"metric_collector","events_processed":18209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3641.8,"last_update":"2026-03-21T23:09:18.869789733Z"} +2026/03/21 23:09:23 ───────────────────────────────────────────────── +2026/03/21 23:09:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:09:28 [metric_collector] {"stage_name":"metric_collector","events_processed":18214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3642.8,"last_update":"2026-03-21T23:09:23.870100134Z"} +2026/03/21 23:09:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:09:23.87830389Z"} +2026/03/21 23:09:28 [transform_engine] {"stage_name":"transform_engine","events_processed":607,"events_dropped":0,"avg_latency_ms":604.4581563167885,"throughput_eps":0,"last_update":"2026-03-21T23:09:23.965475538Z"} +2026/03/21 23:09:28 [detection_layer] {"stage_name":"detection_layer","events_processed":607,"events_dropped":0,"avg_latency_ms":18.906002265457182,"throughput_eps":0,"last_update":"2026-03-21T23:09:23.965580058Z"} +2026/03/21 23:09:28 [log_collector] {"stage_name":"log_collector","events_processed":28501,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5700.2,"last_update":"2026-03-21T23:09:23.869770554Z"} +2026/03/21 23:09:28 ───────────────────────────────────────────────── +2026/03/21 23:09:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:09:33 [log_collector] {"stage_name":"log_collector","events_processed":28502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5700.4,"last_update":"2026-03-21T23:09:28.869434946Z"} +2026/03/21 23:09:33 [metric_collector] {"stage_name":"metric_collector","events_processed":18219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3643.8,"last_update":"2026-03-21T23:09:28.869871962Z"} +2026/03/21 23:09:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:09:28.878394699Z"} +2026/03/21 23:09:33 [transform_engine] {"stage_name":"transform_engine","events_processed":607,"events_dropped":0,"avg_latency_ms":604.4581563167885,"throughput_eps":0,"last_update":"2026-03-21T23:09:28.965763735Z"} +2026/03/21 23:09:33 [detection_layer] {"stage_name":"detection_layer","events_processed":607,"events_dropped":0,"avg_latency_ms":18.906002265457182,"throughput_eps":0,"last_update":"2026-03-21T23:09:28.965733357Z"} +2026/03/21 23:09:33 ───────────────────────────────────────────────── +2026/03/21 23:09:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:09:38 [transform_engine] {"stage_name":"transform_engine","events_processed":607,"events_dropped":0,"avg_latency_ms":604.4581563167885,"throughput_eps":0,"last_update":"2026-03-21T23:09:33.965832141Z"} +2026/03/21 23:09:38 [detection_layer] {"stage_name":"detection_layer","events_processed":607,"events_dropped":0,"avg_latency_ms":18.906002265457182,"throughput_eps":0,"last_update":"2026-03-21T23:09:33.965959996Z"} +2026/03/21 23:09:38 [log_collector] {"stage_name":"log_collector","events_processed":28502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5700.4,"last_update":"2026-03-21T23:09:33.869865995Z"} +2026/03/21 23:09:38 [metric_collector] {"stage_name":"metric_collector","events_processed":18224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3644.8,"last_update":"2026-03-21T23:09:33.870320224Z"} +2026/03/21 23:09:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:09:33.879492935Z"} +2026/03/21 23:09:38 ───────────────────────────────────────────────── +2026/03/21 23:09:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:09:43 [log_collector] {"stage_name":"log_collector","events_processed":28502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5700.4,"last_update":"2026-03-21T23:09:38.86996602Z"} +2026/03/21 23:09:43 [metric_collector] {"stage_name":"metric_collector","events_processed":18229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3645.8,"last_update":"2026-03-21T23:09:38.870274Z"} +2026/03/21 23:09:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:09:38.878044447Z"} +2026/03/21 23:09:43 [transform_engine] {"stage_name":"transform_engine","events_processed":607,"events_dropped":0,"avg_latency_ms":604.4581563167885,"throughput_eps":0,"last_update":"2026-03-21T23:09:38.965549766Z"} +2026/03/21 23:09:43 [detection_layer] {"stage_name":"detection_layer","events_processed":607,"events_dropped":0,"avg_latency_ms":18.906002265457182,"throughput_eps":0,"last_update":"2026-03-21T23:09:38.965533344Z"} +2026/03/21 23:09:43 ───────────────────────────────────────────────── +2026/03/21 23:09:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:09:48 [log_collector] {"stage_name":"log_collector","events_processed":28502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5700.4,"last_update":"2026-03-21T23:09:43.86942726Z"} +2026/03/21 23:09:48 [metric_collector] {"stage_name":"metric_collector","events_processed":18234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3646.8,"last_update":"2026-03-21T23:09:43.869939711Z"} +2026/03/21 23:09:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:09:43.877950067Z"} +2026/03/21 23:09:48 [transform_engine] {"stage_name":"transform_engine","events_processed":607,"events_dropped":0,"avg_latency_ms":604.4581563167885,"throughput_eps":0,"last_update":"2026-03-21T23:09:43.96510688Z"} +2026/03/21 23:09:48 [detection_layer] {"stage_name":"detection_layer","events_processed":607,"events_dropped":0,"avg_latency_ms":18.906002265457182,"throughput_eps":0,"last_update":"2026-03-21T23:09:43.9663239Z"} +2026/03/21 23:09:48 ───────────────────────────────────────────────── +2026/03/21 23:09:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:09:53 [log_collector] {"stage_name":"log_collector","events_processed":28502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5700.4,"last_update":"2026-03-21T23:09:48.869967175Z"} +2026/03/21 23:09:53 [metric_collector] {"stage_name":"metric_collector","events_processed":18239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3647.8,"last_update":"2026-03-21T23:09:48.870901865Z"} +2026/03/21 23:09:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:09:48.879505406Z"} +2026/03/21 23:09:53 [transform_engine] {"stage_name":"transform_engine","events_processed":608,"events_dropped":0,"avg_latency_ms":506.90025185343086,"throughput_eps":0,"last_update":"2026-03-21T23:09:49.082535902Z"} +2026/03/21 23:09:53 [detection_layer] {"stage_name":"detection_layer","events_processed":607,"events_dropped":0,"avg_latency_ms":18.906002265457182,"throughput_eps":0,"last_update":"2026-03-21T23:09:48.965849605Z"} +2026/03/21 23:09:53 ───────────────────────────────────────────────── +2026/03/21 23:09:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:09:58 [transform_engine] {"stage_name":"transform_engine","events_processed":608,"events_dropped":0,"avg_latency_ms":506.90025185343086,"throughput_eps":0,"last_update":"2026-03-21T23:09:53.965175344Z"} +2026/03/21 23:09:58 [detection_layer] {"stage_name":"detection_layer","events_processed":608,"events_dropped":0,"avg_latency_ms":19.366877412365746,"throughput_eps":0,"last_update":"2026-03-21T23:09:53.966305157Z"} +2026/03/21 23:09:58 [log_collector] {"stage_name":"log_collector","events_processed":28502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5700.4,"last_update":"2026-03-21T23:09:53.870325161Z"} +2026/03/21 23:09:58 [metric_collector] {"stage_name":"metric_collector","events_processed":18244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3648.8,"last_update":"2026-03-21T23:09:53.870797976Z"} +2026/03/21 23:09:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:09:53.878990731Z"} +2026/03/21 23:09:58 ───────────────────────────────────────────────── +2026/03/21 23:10:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:10:03 [detection_layer] {"stage_name":"detection_layer","events_processed":608,"events_dropped":0,"avg_latency_ms":19.366877412365746,"throughput_eps":0,"last_update":"2026-03-21T23:09:58.965882346Z"} +2026/03/21 23:10:03 [log_collector] {"stage_name":"log_collector","events_processed":28502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5700.4,"last_update":"2026-03-21T23:09:58.870064409Z"} +2026/03/21 23:10:03 [metric_collector] {"stage_name":"metric_collector","events_processed":18249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3649.8,"last_update":"2026-03-21T23:09:58.870429448Z"} +2026/03/21 23:10:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:09:58.878565074Z"} +2026/03/21 23:10:03 [transform_engine] {"stage_name":"transform_engine","events_processed":608,"events_dropped":0,"avg_latency_ms":506.90025185343086,"throughput_eps":0,"last_update":"2026-03-21T23:09:58.965894128Z"} +2026/03/21 23:10:03 ───────────────────────────────────────────────── +2026/03/21 23:10:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:10:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:10:03.884063456Z"} +2026/03/21 23:10:08 [transform_engine] {"stage_name":"transform_engine","events_processed":608,"events_dropped":0,"avg_latency_ms":506.90025185343086,"throughput_eps":0,"last_update":"2026-03-21T23:10:03.965267114Z"} +2026/03/21 23:10:08 [detection_layer] {"stage_name":"detection_layer","events_processed":608,"events_dropped":0,"avg_latency_ms":19.366877412365746,"throughput_eps":0,"last_update":"2026-03-21T23:10:03.965276241Z"} +2026/03/21 23:10:08 [log_collector] {"stage_name":"log_collector","events_processed":28502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5700.4,"last_update":"2026-03-21T23:10:03.869631526Z"} +2026/03/21 23:10:08 [metric_collector] {"stage_name":"metric_collector","events_processed":18259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3651.8,"last_update":"2026-03-21T23:10:08.869768318Z"} +2026/03/21 23:10:08 ───────────────────────────────────────────────── +2026/03/21 23:10:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:10:13 [log_collector] {"stage_name":"log_collector","events_processed":28502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5700.4,"last_update":"2026-03-21T23:10:08.869796413Z"} +2026/03/21 23:10:13 [metric_collector] {"stage_name":"metric_collector","events_processed":18259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3651.8,"last_update":"2026-03-21T23:10:08.869768318Z"} +2026/03/21 23:10:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:10:08.877732957Z"} +2026/03/21 23:10:13 [transform_engine] {"stage_name":"transform_engine","events_processed":608,"events_dropped":0,"avg_latency_ms":506.90025185343086,"throughput_eps":0,"last_update":"2026-03-21T23:10:08.965932219Z"} +2026/03/21 23:10:13 [detection_layer] {"stage_name":"detection_layer","events_processed":608,"events_dropped":0,"avg_latency_ms":19.366877412365746,"throughput_eps":0,"last_update":"2026-03-21T23:10:08.965920907Z"} +2026/03/21 23:10:13 ───────────────────────────────────────────────── +2026/03/21 23:10:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:10:18 [log_collector] {"stage_name":"log_collector","events_processed":28502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5700.4,"last_update":"2026-03-21T23:10:13.869616716Z"} +2026/03/21 23:10:18 [metric_collector] {"stage_name":"metric_collector","events_processed":18264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3652.8,"last_update":"2026-03-21T23:10:13.870096214Z"} +2026/03/21 23:10:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:10:13.879415887Z"} +2026/03/21 23:10:18 [transform_engine] {"stage_name":"transform_engine","events_processed":608,"events_dropped":0,"avg_latency_ms":506.90025185343086,"throughput_eps":0,"last_update":"2026-03-21T23:10:13.965690915Z"} +2026/03/21 23:10:18 [detection_layer] {"stage_name":"detection_layer","events_processed":608,"events_dropped":0,"avg_latency_ms":19.366877412365746,"throughput_eps":0,"last_update":"2026-03-21T23:10:13.965679353Z"} +2026/03/21 23:10:18 ───────────────────────────────────────────────── +2026/03/21 23:10:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:10:23 [metric_collector] {"stage_name":"metric_collector","events_processed":18269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3653.8,"last_update":"2026-03-21T23:10:18.870062484Z"} +2026/03/21 23:10:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:10:18.879869771Z"} +2026/03/21 23:10:23 [transform_engine] {"stage_name":"transform_engine","events_processed":609,"events_dropped":0,"avg_latency_ms":421.3094808827447,"throughput_eps":0,"last_update":"2026-03-21T23:10:19.044101773Z"} +2026/03/21 23:10:23 [detection_layer] {"stage_name":"detection_layer","events_processed":608,"events_dropped":0,"avg_latency_ms":19.366877412365746,"throughput_eps":0,"last_update":"2026-03-21T23:10:18.96626507Z"} +2026/03/21 23:10:23 [log_collector] {"stage_name":"log_collector","events_processed":28502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5700.4,"last_update":"2026-03-21T23:10:18.869405286Z"} +2026/03/21 23:10:23 ───────────────────────────────────────────────── +Saved state: 18 clusters, 28503 messages, reason: none +2026/03/21 23:10:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:10:28 [log_collector] {"stage_name":"log_collector","events_processed":28502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5700.4,"last_update":"2026-03-21T23:10:23.869942827Z"} +2026/03/21 23:10:28 [metric_collector] {"stage_name":"metric_collector","events_processed":18274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3654.8,"last_update":"2026-03-21T23:10:23.86992381Z"} +2026/03/21 23:10:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:10:23.879299851Z"} +2026/03/21 23:10:28 [transform_engine] {"stage_name":"transform_engine","events_processed":609,"events_dropped":0,"avg_latency_ms":421.3094808827447,"throughput_eps":0,"last_update":"2026-03-21T23:10:23.965596172Z"} +2026/03/21 23:10:28 [detection_layer] {"stage_name":"detection_layer","events_processed":609,"events_dropped":0,"avg_latency_ms":19.674793529892597,"throughput_eps":0,"last_update":"2026-03-21T23:10:23.965588005Z"} +2026/03/21 23:10:28 ───────────────────────────────────────────────── +2026/03/21 23:10:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:10:33 [log_collector] {"stage_name":"log_collector","events_processed":28507,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5701.4,"last_update":"2026-03-21T23:10:28.8694201Z"} +2026/03/21 23:10:33 [metric_collector] {"stage_name":"metric_collector","events_processed":18279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3655.8,"last_update":"2026-03-21T23:10:28.869698914Z"} +2026/03/21 23:10:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:10:28.884698231Z"} +2026/03/21 23:10:33 [transform_engine] {"stage_name":"transform_engine","events_processed":609,"events_dropped":0,"avg_latency_ms":421.3094808827447,"throughput_eps":0,"last_update":"2026-03-21T23:10:28.965878257Z"} +2026/03/21 23:10:33 [detection_layer] {"stage_name":"detection_layer","events_processed":609,"events_dropped":0,"avg_latency_ms":19.674793529892597,"throughput_eps":0,"last_update":"2026-03-21T23:10:28.965865763Z"} +2026/03/21 23:10:33 ───────────────────────────────────────────────── +2026/03/21 23:10:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:10:38 [metric_collector] {"stage_name":"metric_collector","events_processed":18284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3656.8,"last_update":"2026-03-21T23:10:33.870313171Z"} +2026/03/21 23:10:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:10:33.8765641Z"} +2026/03/21 23:10:38 [transform_engine] {"stage_name":"transform_engine","events_processed":609,"events_dropped":0,"avg_latency_ms":421.3094808827447,"throughput_eps":0,"last_update":"2026-03-21T23:10:33.965772206Z"} +2026/03/21 23:10:38 [detection_layer] {"stage_name":"detection_layer","events_processed":609,"events_dropped":0,"avg_latency_ms":19.674793529892597,"throughput_eps":0,"last_update":"2026-03-21T23:10:33.965760603Z"} +2026/03/21 23:10:38 [log_collector] {"stage_name":"log_collector","events_processed":28507,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5701.4,"last_update":"2026-03-21T23:10:33.870195396Z"} +2026/03/21 23:10:38 ───────────────────────────────────────────────── +2026/03/21 23:10:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:10:43 [log_collector] {"stage_name":"log_collector","events_processed":28507,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5701.4,"last_update":"2026-03-21T23:10:38.869639467Z"} +2026/03/21 23:10:43 [metric_collector] {"stage_name":"metric_collector","events_processed":18289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3657.8,"last_update":"2026-03-21T23:10:38.869772914Z"} +2026/03/21 23:10:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:10:38.880426751Z"} +2026/03/21 23:10:43 [transform_engine] {"stage_name":"transform_engine","events_processed":609,"events_dropped":0,"avg_latency_ms":421.3094808827447,"throughput_eps":0,"last_update":"2026-03-21T23:10:38.96553597Z"} +2026/03/21 23:10:43 [detection_layer] {"stage_name":"detection_layer","events_processed":609,"events_dropped":0,"avg_latency_ms":19.674793529892597,"throughput_eps":0,"last_update":"2026-03-21T23:10:38.965523997Z"} +2026/03/21 23:10:43 ───────────────────────────────────────────────── +2026/03/21 23:10:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:10:48 [log_collector] {"stage_name":"log_collector","events_processed":28507,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5701.4,"last_update":"2026-03-21T23:10:43.869661551Z"} +2026/03/21 23:10:48 [metric_collector] {"stage_name":"metric_collector","events_processed":18294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3658.8,"last_update":"2026-03-21T23:10:43.869898204Z"} +2026/03/21 23:10:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7320,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:10:43.876296665Z"} +2026/03/21 23:10:48 [transform_engine] {"stage_name":"transform_engine","events_processed":609,"events_dropped":0,"avg_latency_ms":421.3094808827447,"throughput_eps":0,"last_update":"2026-03-21T23:10:43.965536683Z"} +2026/03/21 23:10:48 [detection_layer] {"stage_name":"detection_layer","events_processed":609,"events_dropped":0,"avg_latency_ms":19.674793529892597,"throughput_eps":0,"last_update":"2026-03-21T23:10:43.96557149Z"} +2026/03/21 23:10:48 ───────────────────────────────────────────────── +2026/03/21 23:10:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:10:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:10:48.876875116Z"} +2026/03/21 23:10:53 [transform_engine] {"stage_name":"transform_engine","events_processed":609,"events_dropped":0,"avg_latency_ms":421.3094808827447,"throughput_eps":0,"last_update":"2026-03-21T23:10:43.965536683Z"} +2026/03/21 23:10:53 [detection_layer] {"stage_name":"detection_layer","events_processed":609,"events_dropped":0,"avg_latency_ms":19.674793529892597,"throughput_eps":0,"last_update":"2026-03-21T23:10:48.966034982Z"} +2026/03/21 23:10:53 [log_collector] {"stage_name":"log_collector","events_processed":28507,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5701.4,"last_update":"2026-03-21T23:10:53.869763349Z"} +2026/03/21 23:10:53 [metric_collector] {"stage_name":"metric_collector","events_processed":18299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3659.8,"last_update":"2026-03-21T23:10:48.869820179Z"} +2026/03/21 23:10:53 ───────────────────────────────────────────────── +2026/03/21 23:10:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:10:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:10:53.876467896Z"} +2026/03/21 23:10:58 [transform_engine] {"stage_name":"transform_engine","events_processed":610,"events_dropped":0,"avg_latency_ms":1473.2943161061958,"throughput_eps":0,"last_update":"2026-03-21T23:10:54.647311411Z"} +2026/03/21 23:10:58 [detection_layer] {"stage_name":"detection_layer","events_processed":609,"events_dropped":0,"avg_latency_ms":19.674793529892597,"throughput_eps":0,"last_update":"2026-03-21T23:10:53.965659602Z"} +2026/03/21 23:10:58 [log_collector] {"stage_name":"log_collector","events_processed":28507,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5701.4,"last_update":"2026-03-21T23:10:53.869763349Z"} +2026/03/21 23:10:58 [metric_collector] {"stage_name":"metric_collector","events_processed":18304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3660.8,"last_update":"2026-03-21T23:10:53.870002106Z"} +2026/03/21 23:10:58 ───────────────────────────────────────────────── +2026/03/21 23:11:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:11:03 [log_collector] {"stage_name":"log_collector","events_processed":28507,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5701.4,"last_update":"2026-03-21T23:10:58.869510327Z"} +2026/03/21 23:11:03 [metric_collector] {"stage_name":"metric_collector","events_processed":18309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3661.8,"last_update":"2026-03-21T23:10:58.869774853Z"} +2026/03/21 23:11:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:10:58.878084172Z"} +2026/03/21 23:11:03 [transform_engine] {"stage_name":"transform_engine","events_processed":610,"events_dropped":0,"avg_latency_ms":1473.2943161061958,"throughput_eps":0,"last_update":"2026-03-21T23:10:58.965128218Z"} +2026/03/21 23:11:03 [detection_layer] {"stage_name":"detection_layer","events_processed":610,"events_dropped":0,"avg_latency_ms":18.29928942391408,"throughput_eps":0,"last_update":"2026-03-21T23:10:58.966237552Z"} +2026/03/21 23:11:03 ───────────────────────────────────────────────── +2026/03/21 23:11:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:11:08 [metric_collector] {"stage_name":"metric_collector","events_processed":18319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3663.8,"last_update":"2026-03-21T23:11:08.870002274Z"} +2026/03/21 23:11:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:11:03.876853552Z"} +2026/03/21 23:11:08 [transform_engine] {"stage_name":"transform_engine","events_processed":610,"events_dropped":0,"avg_latency_ms":1473.2943161061958,"throughput_eps":0,"last_update":"2026-03-21T23:11:03.966148629Z"} +2026/03/21 23:11:08 [detection_layer] {"stage_name":"detection_layer","events_processed":610,"events_dropped":0,"avg_latency_ms":18.29928942391408,"throughput_eps":0,"last_update":"2026-03-21T23:11:03.966162506Z"} +2026/03/21 23:11:08 [log_collector] {"stage_name":"log_collector","events_processed":28507,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5701.4,"last_update":"2026-03-21T23:11:08.869759189Z"} +2026/03/21 23:11:08 ───────────────────────────────────────────────── +2026/03/21 23:11:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:11:13 [log_collector] {"stage_name":"log_collector","events_processed":28507,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5701.4,"last_update":"2026-03-21T23:11:08.869759189Z"} +2026/03/21 23:11:13 [metric_collector] {"stage_name":"metric_collector","events_processed":18319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3663.8,"last_update":"2026-03-21T23:11:08.870002274Z"} +2026/03/21 23:11:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7330,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:11:08.879408905Z"} +2026/03/21 23:11:13 [transform_engine] {"stage_name":"transform_engine","events_processed":610,"events_dropped":0,"avg_latency_ms":1473.2943161061958,"throughput_eps":0,"last_update":"2026-03-21T23:11:08.965649223Z"} +2026/03/21 23:11:13 [detection_layer] {"stage_name":"detection_layer","events_processed":610,"events_dropped":0,"avg_latency_ms":18.29928942391408,"throughput_eps":0,"last_update":"2026-03-21T23:11:08.965624125Z"} +2026/03/21 23:11:13 ───────────────────────────────────────────────── +2026/03/21 23:11:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:11:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:11:13.87610494Z"} +2026/03/21 23:11:18 [transform_engine] {"stage_name":"transform_engine","events_processed":610,"events_dropped":0,"avg_latency_ms":1473.2943161061958,"throughput_eps":0,"last_update":"2026-03-21T23:11:13.965371402Z"} +2026/03/21 23:11:18 [detection_layer] {"stage_name":"detection_layer","events_processed":610,"events_dropped":0,"avg_latency_ms":18.29928942391408,"throughput_eps":0,"last_update":"2026-03-21T23:11:13.965376542Z"} +2026/03/21 23:11:18 [log_collector] {"stage_name":"log_collector","events_processed":28518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5703.6,"last_update":"2026-03-21T23:11:13.869705788Z"} +2026/03/21 23:11:18 [metric_collector] {"stage_name":"metric_collector","events_processed":18324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3664.8,"last_update":"2026-03-21T23:11:13.869841769Z"} +2026/03/21 23:11:18 ───────────────────────────────────────────────── +2026/03/21 23:11:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:11:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:11:18.877588264Z"} +2026/03/21 23:11:23 [transform_engine] {"stage_name":"transform_engine","events_processed":611,"events_dropped":0,"avg_latency_ms":1235.4607612849568,"throughput_eps":0,"last_update":"2026-03-21T23:11:19.249955725Z"} +2026/03/21 23:11:23 [detection_layer] {"stage_name":"detection_layer","events_processed":610,"events_dropped":0,"avg_latency_ms":18.29928942391408,"throughput_eps":0,"last_update":"2026-03-21T23:11:18.96581676Z"} +2026/03/21 23:11:23 [log_collector] {"stage_name":"log_collector","events_processed":28727,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5745.4,"last_update":"2026-03-21T23:11:18.869409405Z"} +2026/03/21 23:11:23 [metric_collector] {"stage_name":"metric_collector","events_processed":18329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3665.8,"last_update":"2026-03-21T23:11:18.870339986Z"} +2026/03/21 23:11:23 ───────────────────────────────────────────────── +2026/03/21 23:11:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:11:28 [detection_layer] {"stage_name":"detection_layer","events_processed":611,"events_dropped":0,"avg_latency_ms":17.365202539131264,"throughput_eps":0,"last_update":"2026-03-21T23:11:23.966164282Z"} +2026/03/21 23:11:28 [log_collector] {"stage_name":"log_collector","events_processed":28852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5770.4,"last_update":"2026-03-21T23:11:23.870418603Z"} +2026/03/21 23:11:28 [metric_collector] {"stage_name":"metric_collector","events_processed":18334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3666.8,"last_update":"2026-03-21T23:11:23.870384778Z"} +2026/03/21 23:11:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:11:23.877165731Z"} +2026/03/21 23:11:28 [transform_engine] {"stage_name":"transform_engine","events_processed":611,"events_dropped":0,"avg_latency_ms":1235.4607612849568,"throughput_eps":0,"last_update":"2026-03-21T23:11:23.965074636Z"} +2026/03/21 23:11:28 ───────────────────────────────────────────────── +2026/03/21 23:11:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:11:33 [log_collector] {"stage_name":"log_collector","events_processed":28858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5771.6,"last_update":"2026-03-21T23:11:28.870195193Z"} +2026/03/21 23:11:33 [metric_collector] {"stage_name":"metric_collector","events_processed":18338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3667.6,"last_update":"2026-03-21T23:11:28.87019908Z"} +2026/03/21 23:11:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:11:28.878688455Z"} +2026/03/21 23:11:33 [transform_engine] {"stage_name":"transform_engine","events_processed":611,"events_dropped":0,"avg_latency_ms":1235.4607612849568,"throughput_eps":0,"last_update":"2026-03-21T23:11:28.96596546Z"} +2026/03/21 23:11:33 [detection_layer] {"stage_name":"detection_layer","events_processed":611,"events_dropped":0,"avg_latency_ms":17.365202539131264,"throughput_eps":0,"last_update":"2026-03-21T23:11:28.965977012Z"} +2026/03/21 23:11:33 ───────────────────────────────────────────────── +2026/03/21 23:11:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:11:38 [transform_engine] {"stage_name":"transform_engine","events_processed":611,"events_dropped":0,"avg_latency_ms":1235.4607612849568,"throughput_eps":0,"last_update":"2026-03-21T23:11:33.965402661Z"} +2026/03/21 23:11:38 [detection_layer] {"stage_name":"detection_layer","events_processed":611,"events_dropped":0,"avg_latency_ms":17.365202539131264,"throughput_eps":0,"last_update":"2026-03-21T23:11:33.965388444Z"} +2026/03/21 23:11:38 [log_collector] {"stage_name":"log_collector","events_processed":28858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5771.6,"last_update":"2026-03-21T23:11:33.870263482Z"} +2026/03/21 23:11:38 [metric_collector] {"stage_name":"metric_collector","events_processed":18343,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3668.6,"last_update":"2026-03-21T23:11:33.870280295Z"} +2026/03/21 23:11:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:11:33.880094846Z"} +2026/03/21 23:11:38 ───────────────────────────────────────────────── +2026/03/21 23:11:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:11:43 [log_collector] {"stage_name":"log_collector","events_processed":28858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5771.6,"last_update":"2026-03-21T23:11:38.870513972Z"} +2026/03/21 23:11:43 [metric_collector] {"stage_name":"metric_collector","events_processed":18349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3669.8,"last_update":"2026-03-21T23:11:38.871233549Z"} +2026/03/21 23:11:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7342,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:11:38.878861995Z"} +2026/03/21 23:11:43 [transform_engine] {"stage_name":"transform_engine","events_processed":611,"events_dropped":0,"avg_latency_ms":1235.4607612849568,"throughput_eps":0,"last_update":"2026-03-21T23:11:38.966166464Z"} +2026/03/21 23:11:43 [detection_layer] {"stage_name":"detection_layer","events_processed":611,"events_dropped":0,"avg_latency_ms":17.365202539131264,"throughput_eps":0,"last_update":"2026-03-21T23:11:38.966203195Z"} +2026/03/21 23:11:43 ───────────────────────────────────────────────── +2026/03/21 23:11:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:11:48 [log_collector] {"stage_name":"log_collector","events_processed":28858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5771.6,"last_update":"2026-03-21T23:11:43.870159705Z"} +2026/03/21 23:11:48 [metric_collector] {"stage_name":"metric_collector","events_processed":18354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3670.8,"last_update":"2026-03-21T23:11:43.870474447Z"} +2026/03/21 23:11:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:11:43.879025118Z"} +2026/03/21 23:11:48 [transform_engine] {"stage_name":"transform_engine","events_processed":611,"events_dropped":0,"avg_latency_ms":1235.4607612849568,"throughput_eps":0,"last_update":"2026-03-21T23:11:43.965129891Z"} +2026/03/21 23:11:48 [detection_layer] {"stage_name":"detection_layer","events_processed":611,"events_dropped":0,"avg_latency_ms":17.365202539131264,"throughput_eps":0,"last_update":"2026-03-21T23:11:43.966241229Z"} +2026/03/21 23:11:48 ───────────────────────────────────────────────── +2026/03/21 23:11:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:11:53 [transform_engine] {"stage_name":"transform_engine","events_processed":612,"events_dropped":0,"avg_latency_ms":1011.8567874279655,"throughput_eps":0,"last_update":"2026-03-21T23:11:49.083101642Z"} +2026/03/21 23:11:53 [detection_layer] {"stage_name":"detection_layer","events_processed":611,"events_dropped":0,"avg_latency_ms":17.365202539131264,"throughput_eps":0,"last_update":"2026-03-21T23:11:48.965688144Z"} +2026/03/21 23:11:53 [log_collector] {"stage_name":"log_collector","events_processed":28858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5771.6,"last_update":"2026-03-21T23:11:48.87000943Z"} +2026/03/21 23:11:53 [metric_collector] {"stage_name":"metric_collector","events_processed":18359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3671.8,"last_update":"2026-03-21T23:11:48.870227747Z"} +2026/03/21 23:11:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:11:48.879315457Z"} +2026/03/21 23:11:53 ───────────────────────────────────────────────── +2026/03/21 23:11:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:11:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:11:53.878593926Z"} +2026/03/21 23:11:58 [transform_engine] {"stage_name":"transform_engine","events_processed":612,"events_dropped":0,"avg_latency_ms":1011.8567874279655,"throughput_eps":0,"last_update":"2026-03-21T23:11:53.965940577Z"} +2026/03/21 23:11:58 [detection_layer] {"stage_name":"detection_layer","events_processed":612,"events_dropped":0,"avg_latency_ms":18.363895831305015,"throughput_eps":0,"last_update":"2026-03-21T23:11:53.965820117Z"} +2026/03/21 23:11:58 [log_collector] {"stage_name":"log_collector","events_processed":28858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5771.6,"last_update":"2026-03-21T23:11:58.869960869Z"} +2026/03/21 23:11:58 [metric_collector] {"stage_name":"metric_collector","events_processed":18364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3672.8,"last_update":"2026-03-21T23:11:53.869748359Z"} +2026/03/21 23:11:58 ───────────────────────────────────────────────── +2026/03/21 23:12:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:12:03 [transform_engine] {"stage_name":"transform_engine","events_processed":612,"events_dropped":0,"avg_latency_ms":1011.8567874279655,"throughput_eps":0,"last_update":"2026-03-21T23:11:58.965493755Z"} +2026/03/21 23:12:03 [detection_layer] {"stage_name":"detection_layer","events_processed":612,"events_dropped":0,"avg_latency_ms":18.363895831305015,"throughput_eps":0,"last_update":"2026-03-21T23:11:58.965457565Z"} +2026/03/21 23:12:03 [log_collector] {"stage_name":"log_collector","events_processed":28858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5771.6,"last_update":"2026-03-21T23:11:58.869960869Z"} +2026/03/21 23:12:03 [metric_collector] {"stage_name":"metric_collector","events_processed":18369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3673.8,"last_update":"2026-03-21T23:11:58.870563482Z"} +2026/03/21 23:12:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7350,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:11:58.879182114Z"} +2026/03/21 23:12:03 ───────────────────────────────────────────────── +2026/03/21 23:12:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:12:08 [log_collector] {"stage_name":"log_collector","events_processed":28858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5771.6,"last_update":"2026-03-21T23:12:03.870483993Z"} +2026/03/21 23:12:08 [metric_collector] {"stage_name":"metric_collector","events_processed":18374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3674.8,"last_update":"2026-03-21T23:12:03.871030089Z"} +2026/03/21 23:12:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:12:03.878784596Z"} +2026/03/21 23:12:08 [transform_engine] {"stage_name":"transform_engine","events_processed":612,"events_dropped":0,"avg_latency_ms":1011.8567874279655,"throughput_eps":0,"last_update":"2026-03-21T23:12:03.966159063Z"} +2026/03/21 23:12:08 [detection_layer] {"stage_name":"detection_layer","events_processed":612,"events_dropped":0,"avg_latency_ms":18.363895831305015,"throughput_eps":0,"last_update":"2026-03-21T23:12:03.966219959Z"} +2026/03/21 23:12:08 ───────────────────────────────────────────────── +2026/03/21 23:12:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:12:13 [log_collector] {"stage_name":"log_collector","events_processed":28858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5771.6,"last_update":"2026-03-21T23:12:08.869413554Z"} +2026/03/21 23:12:13 [metric_collector] {"stage_name":"metric_collector","events_processed":18379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3675.8,"last_update":"2026-03-21T23:12:08.869838708Z"} +2026/03/21 23:12:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:12:08.878844242Z"} +2026/03/21 23:12:13 [transform_engine] {"stage_name":"transform_engine","events_processed":612,"events_dropped":0,"avg_latency_ms":1011.8567874279655,"throughput_eps":0,"last_update":"2026-03-21T23:12:08.966108737Z"} +2026/03/21 23:12:13 [detection_layer] {"stage_name":"detection_layer","events_processed":612,"events_dropped":0,"avg_latency_ms":18.363895831305015,"throughput_eps":0,"last_update":"2026-03-21T23:12:08.966217095Z"} +2026/03/21 23:12:13 ───────────────────────────────────────────────── +2026/03/21 23:12:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:12:18 [log_collector] {"stage_name":"log_collector","events_processed":28858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5771.6,"last_update":"2026-03-21T23:12:13.869606733Z"} +2026/03/21 23:12:18 [metric_collector] {"stage_name":"metric_collector","events_processed":18384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3676.8,"last_update":"2026-03-21T23:12:13.869800884Z"} +2026/03/21 23:12:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:12:13.878391112Z"} +2026/03/21 23:12:18 [transform_engine] {"stage_name":"transform_engine","events_processed":612,"events_dropped":0,"avg_latency_ms":1011.8567874279655,"throughput_eps":0,"last_update":"2026-03-21T23:12:13.96573463Z"} +2026/03/21 23:12:18 [detection_layer] {"stage_name":"detection_layer","events_processed":612,"events_dropped":0,"avg_latency_ms":18.363895831305015,"throughput_eps":0,"last_update":"2026-03-21T23:12:13.96570351Z"} +2026/03/21 23:12:18 ───────────────────────────────────────────────── +2026/03/21 23:12:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:12:23 [detection_layer] {"stage_name":"detection_layer","events_processed":612,"events_dropped":0,"avg_latency_ms":18.363895831305015,"throughput_eps":0,"last_update":"2026-03-21T23:12:18.966188666Z"} +2026/03/21 23:12:23 [log_collector] {"stage_name":"log_collector","events_processed":28858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5771.6,"last_update":"2026-03-21T23:12:18.869669901Z"} +2026/03/21 23:12:23 [metric_collector] {"stage_name":"metric_collector","events_processed":18389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3677.8,"last_update":"2026-03-21T23:12:18.869798376Z"} +2026/03/21 23:12:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:12:18.87894485Z"} +2026/03/21 23:12:23 [transform_engine] {"stage_name":"transform_engine","events_processed":613,"events_dropped":0,"avg_latency_ms":821.2456715423724,"throughput_eps":0,"last_update":"2026-03-21T23:12:19.023871974Z"} +2026/03/21 23:12:23 ───────────────────────────────────────────────── +2026/03/21 23:12:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:12:28 [log_collector] {"stage_name":"log_collector","events_processed":28858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5771.6,"last_update":"2026-03-21T23:12:23.869982325Z"} +2026/03/21 23:12:28 [metric_collector] {"stage_name":"metric_collector","events_processed":18394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3678.8,"last_update":"2026-03-21T23:12:23.870432687Z"} +2026/03/21 23:12:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7360,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:12:23.879332027Z"} +2026/03/21 23:12:28 [transform_engine] {"stage_name":"transform_engine","events_processed":613,"events_dropped":0,"avg_latency_ms":821.2456715423724,"throughput_eps":0,"last_update":"2026-03-21T23:12:23.965507599Z"} +2026/03/21 23:12:28 [detection_layer] {"stage_name":"detection_layer","events_processed":613,"events_dropped":0,"avg_latency_ms":18.719652265044015,"throughput_eps":0,"last_update":"2026-03-21T23:12:23.965553628Z"} +2026/03/21 23:12:28 ───────────────────────────────────────────────── +2026/03/21 23:12:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:12:33 [metric_collector] {"stage_name":"metric_collector","events_processed":18399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3679.8,"last_update":"2026-03-21T23:12:28.870667451Z"} +2026/03/21 23:12:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:12:28.880749074Z"} +2026/03/21 23:12:33 [transform_engine] {"stage_name":"transform_engine","events_processed":613,"events_dropped":0,"avg_latency_ms":821.2456715423724,"throughput_eps":0,"last_update":"2026-03-21T23:12:28.966156957Z"} +2026/03/21 23:12:33 [detection_layer] {"stage_name":"detection_layer","events_processed":613,"events_dropped":0,"avg_latency_ms":18.719652265044015,"throughput_eps":0,"last_update":"2026-03-21T23:12:28.966119926Z"} +2026/03/21 23:12:33 [log_collector] {"stage_name":"log_collector","events_processed":28858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5771.6,"last_update":"2026-03-21T23:12:28.870452188Z"} +2026/03/21 23:12:33 ───────────────────────────────────────────────── +2026/03/21 23:12:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:12:38 [detection_layer] {"stage_name":"detection_layer","events_processed":613,"events_dropped":0,"avg_latency_ms":18.719652265044015,"throughput_eps":0,"last_update":"2026-03-21T23:12:33.965529298Z"} +2026/03/21 23:12:38 [log_collector] {"stage_name":"log_collector","events_processed":28858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5771.6,"last_update":"2026-03-21T23:12:33.86943837Z"} +2026/03/21 23:12:38 [metric_collector] {"stage_name":"metric_collector","events_processed":18404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3680.8,"last_update":"2026-03-21T23:12:33.869778912Z"} +2026/03/21 23:12:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:12:33.878203664Z"} +2026/03/21 23:12:38 [transform_engine] {"stage_name":"transform_engine","events_processed":613,"events_dropped":0,"avg_latency_ms":821.2456715423724,"throughput_eps":0,"last_update":"2026-03-21T23:12:33.96542031Z"} +2026/03/21 23:12:38 ───────────────────────────────────────────────── +Saved state: 18 clusters, 28859 messages, reason: none +2026/03/21 23:12:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:12:43 [log_collector] {"stage_name":"log_collector","events_processed":28858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5771.6,"last_update":"2026-03-21T23:12:38.869472725Z"} +2026/03/21 23:12:43 [metric_collector] {"stage_name":"metric_collector","events_processed":18409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3681.8,"last_update":"2026-03-21T23:12:38.869702956Z"} +2026/03/21 23:12:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:12:38.877623592Z"} +2026/03/21 23:12:43 [transform_engine] {"stage_name":"transform_engine","events_processed":613,"events_dropped":0,"avg_latency_ms":821.2456715423724,"throughput_eps":0,"last_update":"2026-03-21T23:12:38.966009087Z"} +2026/03/21 23:12:43 [detection_layer] {"stage_name":"detection_layer","events_processed":613,"events_dropped":0,"avg_latency_ms":18.719652265044015,"throughput_eps":0,"last_update":"2026-03-21T23:12:38.965972437Z"} +2026/03/21 23:12:43 ───────────────────────────────────────────────── +2026/03/21 23:12:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:12:48 [log_collector] {"stage_name":"log_collector","events_processed":28861,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5772.2,"last_update":"2026-03-21T23:12:43.869718213Z"} +2026/03/21 23:12:48 [metric_collector] {"stage_name":"metric_collector","events_processed":18414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3682.8,"last_update":"2026-03-21T23:12:43.869883009Z"} +2026/03/21 23:12:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:12:43.879161004Z"} +2026/03/21 23:12:48 [transform_engine] {"stage_name":"transform_engine","events_processed":613,"events_dropped":0,"avg_latency_ms":821.2456715423724,"throughput_eps":0,"last_update":"2026-03-21T23:12:43.965060609Z"} +2026/03/21 23:12:48 [detection_layer] {"stage_name":"detection_layer","events_processed":613,"events_dropped":0,"avg_latency_ms":18.719652265044015,"throughput_eps":0,"last_update":"2026-03-21T23:12:43.966153562Z"} +2026/03/21 23:12:48 ───────────────────────────────────────────────── +2026/03/21 23:12:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:12:53 [log_collector] {"stage_name":"log_collector","events_processed":28871,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5774.2,"last_update":"2026-03-21T23:12:48.870222744Z"} +2026/03/21 23:12:53 [metric_collector] {"stage_name":"metric_collector","events_processed":18419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3683.8,"last_update":"2026-03-21T23:12:48.870602291Z"} +2026/03/21 23:12:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:12:48.876732589Z"} +2026/03/21 23:12:53 [transform_engine] {"stage_name":"transform_engine","events_processed":614,"events_dropped":0,"avg_latency_ms":1573.577280233898,"throughput_eps":0,"last_update":"2026-03-21T23:12:53.548871798Z"} +2026/03/21 23:12:53 [detection_layer] {"stage_name":"detection_layer","events_processed":613,"events_dropped":0,"avg_latency_ms":18.719652265044015,"throughput_eps":0,"last_update":"2026-03-21T23:12:48.966484352Z"} +2026/03/21 23:12:53 ───────────────────────────────────────────────── +2026/03/21 23:12:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:12:58 [log_collector] {"stage_name":"log_collector","events_processed":28872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5774.4,"last_update":"2026-03-21T23:12:53.87006817Z"} +2026/03/21 23:12:58 [metric_collector] {"stage_name":"metric_collector","events_processed":18424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3684.8,"last_update":"2026-03-21T23:12:53.870480019Z"} +2026/03/21 23:12:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:12:53.880161376Z"} +2026/03/21 23:12:58 [transform_engine] {"stage_name":"transform_engine","events_processed":614,"events_dropped":0,"avg_latency_ms":1573.577280233898,"throughput_eps":0,"last_update":"2026-03-21T23:12:53.965495189Z"} +2026/03/21 23:12:58 [detection_layer] {"stage_name":"detection_layer","events_processed":614,"events_dropped":0,"avg_latency_ms":18.740253812035213,"throughput_eps":0,"last_update":"2026-03-21T23:12:53.965377013Z"} +2026/03/21 23:12:58 ───────────────────────────────────────────────── +2026/03/21 23:13:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:13:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:12:58.878621425Z"} +2026/03/21 23:13:03 [transform_engine] {"stage_name":"transform_engine","events_processed":614,"events_dropped":0,"avg_latency_ms":1573.577280233898,"throughput_eps":0,"last_update":"2026-03-21T23:12:58.9658205Z"} +2026/03/21 23:13:03 [detection_layer] {"stage_name":"detection_layer","events_processed":614,"events_dropped":0,"avg_latency_ms":18.740253812035213,"throughput_eps":0,"last_update":"2026-03-21T23:12:58.965803539Z"} +2026/03/21 23:13:03 [log_collector] {"stage_name":"log_collector","events_processed":28888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5777.6,"last_update":"2026-03-21T23:12:58.869788232Z"} +2026/03/21 23:13:03 [metric_collector] {"stage_name":"metric_collector","events_processed":18429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3685.8,"last_update":"2026-03-21T23:12:58.869811606Z"} +2026/03/21 23:13:03 ───────────────────────────────────────────────── +2026/03/21 23:13:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:13:08 [log_collector] {"stage_name":"log_collector","events_processed":28902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5780.4,"last_update":"2026-03-21T23:13:08.870235955Z"} +2026/03/21 23:13:08 [metric_collector] {"stage_name":"metric_collector","events_processed":18434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3686.8,"last_update":"2026-03-21T23:13:03.870475082Z"} +2026/03/21 23:13:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:13:03.878600972Z"} +2026/03/21 23:13:08 [transform_engine] {"stage_name":"transform_engine","events_processed":614,"events_dropped":0,"avg_latency_ms":1573.577280233898,"throughput_eps":0,"last_update":"2026-03-21T23:13:03.96597377Z"} +2026/03/21 23:13:08 [detection_layer] {"stage_name":"detection_layer","events_processed":614,"events_dropped":0,"avg_latency_ms":18.740253812035213,"throughput_eps":0,"last_update":"2026-03-21T23:13:03.966005931Z"} +2026/03/21 23:13:08 ───────────────────────────────────────────────── +2026/03/21 23:13:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:13:13 [log_collector] {"stage_name":"log_collector","events_processed":28902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5780.4,"last_update":"2026-03-21T23:13:08.870235955Z"} +2026/03/21 23:13:13 [metric_collector] {"stage_name":"metric_collector","events_processed":18439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3687.8,"last_update":"2026-03-21T23:13:08.87065102Z"} +2026/03/21 23:13:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:13:08.878613225Z"} +2026/03/21 23:13:13 [transform_engine] {"stage_name":"transform_engine","events_processed":614,"events_dropped":0,"avg_latency_ms":1573.577280233898,"throughput_eps":0,"last_update":"2026-03-21T23:13:08.965881584Z"} +2026/03/21 23:13:13 [detection_layer] {"stage_name":"detection_layer","events_processed":614,"events_dropped":0,"avg_latency_ms":18.740253812035213,"throughput_eps":0,"last_update":"2026-03-21T23:13:08.965849663Z"} +2026/03/21 23:13:13 ───────────────────────────────────────────────── +2026/03/21 23:13:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:13:18 [metric_collector] {"stage_name":"metric_collector","events_processed":18444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3688.8,"last_update":"2026-03-21T23:13:13.870387671Z"} +2026/03/21 23:13:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7380,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:13:13.879541608Z"} +2026/03/21 23:13:18 [transform_engine] {"stage_name":"transform_engine","events_processed":614,"events_dropped":0,"avg_latency_ms":1573.577280233898,"throughput_eps":0,"last_update":"2026-03-21T23:13:13.965899415Z"} +2026/03/21 23:13:18 [detection_layer] {"stage_name":"detection_layer","events_processed":614,"events_dropped":0,"avg_latency_ms":18.740253812035213,"throughput_eps":0,"last_update":"2026-03-21T23:13:13.965867825Z"} +2026/03/21 23:13:18 [log_collector] {"stage_name":"log_collector","events_processed":28902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5780.4,"last_update":"2026-03-21T23:13:13.869769617Z"} +2026/03/21 23:13:18 ───────────────────────────────────────────────── +2026/03/21 23:13:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:13:23 [log_collector] {"stage_name":"log_collector","events_processed":28902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5780.4,"last_update":"2026-03-21T23:13:18.86961285Z"} +2026/03/21 23:13:23 [metric_collector] {"stage_name":"metric_collector","events_processed":18449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3689.8,"last_update":"2026-03-21T23:13:18.870006393Z"} +2026/03/21 23:13:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:13:18.877165672Z"} +2026/03/21 23:13:23 [transform_engine] {"stage_name":"transform_engine","events_processed":615,"events_dropped":0,"avg_latency_ms":1279.1844955871184,"throughput_eps":0,"last_update":"2026-03-21T23:13:19.067031433Z"} +2026/03/21 23:13:23 [detection_layer] {"stage_name":"detection_layer","events_processed":614,"events_dropped":0,"avg_latency_ms":18.740253812035213,"throughput_eps":0,"last_update":"2026-03-21T23:13:18.965386956Z"} +2026/03/21 23:13:23 ───────────────────────────────────────────────── +2026/03/21 23:13:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:13:28 [log_collector] {"stage_name":"log_collector","events_processed":28902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5780.4,"last_update":"2026-03-21T23:13:28.869401866Z"} +2026/03/21 23:13:28 [metric_collector] {"stage_name":"metric_collector","events_processed":18454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3690.8,"last_update":"2026-03-21T23:13:23.870470458Z"} +2026/03/21 23:13:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:13:23.879063802Z"} +2026/03/21 23:13:28 [transform_engine] {"stage_name":"transform_engine","events_processed":615,"events_dropped":0,"avg_latency_ms":1279.1844955871184,"throughput_eps":0,"last_update":"2026-03-21T23:13:23.965518665Z"} +2026/03/21 23:13:28 [detection_layer] {"stage_name":"detection_layer","events_processed":615,"events_dropped":0,"avg_latency_ms":18.21351324962817,"throughput_eps":0,"last_update":"2026-03-21T23:13:23.965403114Z"} +2026/03/21 23:13:28 ───────────────────────────────────────────────── +2026/03/21 23:13:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:13:33 [log_collector] {"stage_name":"log_collector","events_processed":28902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5780.4,"last_update":"2026-03-21T23:13:28.869401866Z"} +2026/03/21 23:13:33 [metric_collector] {"stage_name":"metric_collector","events_processed":18459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3691.8,"last_update":"2026-03-21T23:13:28.869781543Z"} +2026/03/21 23:13:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:13:28.879064597Z"} +2026/03/21 23:13:33 [transform_engine] {"stage_name":"transform_engine","events_processed":615,"events_dropped":0,"avg_latency_ms":1279.1844955871184,"throughput_eps":0,"last_update":"2026-03-21T23:13:28.965212543Z"} +2026/03/21 23:13:33 [detection_layer] {"stage_name":"detection_layer","events_processed":615,"events_dropped":0,"avg_latency_ms":18.21351324962817,"throughput_eps":0,"last_update":"2026-03-21T23:13:28.96533671Z"} +2026/03/21 23:13:33 ───────────────────────────────────────────────── +2026/03/21 23:13:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:13:38 [transform_engine] {"stage_name":"transform_engine","events_processed":615,"events_dropped":0,"avg_latency_ms":1279.1844955871184,"throughput_eps":0,"last_update":"2026-03-21T23:13:33.965223191Z"} +2026/03/21 23:13:38 [detection_layer] {"stage_name":"detection_layer","events_processed":615,"events_dropped":0,"avg_latency_ms":18.21351324962817,"throughput_eps":0,"last_update":"2026-03-21T23:13:33.965323994Z"} +2026/03/21 23:13:38 [log_collector] {"stage_name":"log_collector","events_processed":28902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5780.4,"last_update":"2026-03-21T23:13:33.870187998Z"} +2026/03/21 23:13:38 [metric_collector] {"stage_name":"metric_collector","events_processed":18464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3692.8,"last_update":"2026-03-21T23:13:33.870757649Z"} +2026/03/21 23:13:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7388,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:13:33.878971086Z"} +2026/03/21 23:13:38 ───────────────────────────────────────────────── +2026/03/21 23:13:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:13:43 [log_collector] {"stage_name":"log_collector","events_processed":28902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5780.4,"last_update":"2026-03-21T23:13:38.869479214Z"} +2026/03/21 23:13:43 [metric_collector] {"stage_name":"metric_collector","events_processed":18469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3693.8,"last_update":"2026-03-21T23:13:38.869696791Z"} +2026/03/21 23:13:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7390,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:13:38.87809446Z"} +2026/03/21 23:13:43 [transform_engine] {"stage_name":"transform_engine","events_processed":615,"events_dropped":0,"avg_latency_ms":1279.1844955871184,"throughput_eps":0,"last_update":"2026-03-21T23:13:38.965393862Z"} +2026/03/21 23:13:43 [detection_layer] {"stage_name":"detection_layer","events_processed":615,"events_dropped":0,"avg_latency_ms":18.21351324962817,"throughput_eps":0,"last_update":"2026-03-21T23:13:38.965376879Z"} +2026/03/21 23:13:43 ───────────────────────────────────────────────── +2026/03/21 23:13:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:13:48 [log_collector] {"stage_name":"log_collector","events_processed":28902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5780.4,"last_update":"2026-03-21T23:13:48.869565114Z"} +2026/03/21 23:13:48 [metric_collector] {"stage_name":"metric_collector","events_processed":18474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3694.8,"last_update":"2026-03-21T23:13:43.869799072Z"} +2026/03/21 23:13:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:13:43.878546993Z"} +2026/03/21 23:13:48 [transform_engine] {"stage_name":"transform_engine","events_processed":615,"events_dropped":0,"avg_latency_ms":1279.1844955871184,"throughput_eps":0,"last_update":"2026-03-21T23:13:43.966034795Z"} +2026/03/21 23:13:48 [detection_layer] {"stage_name":"detection_layer","events_processed":615,"events_dropped":0,"avg_latency_ms":18.21351324962817,"throughput_eps":0,"last_update":"2026-03-21T23:13:43.965894647Z"} +2026/03/21 23:13:48 ───────────────────────────────────────────────── +2026/03/21 23:13:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:13:53 [log_collector] {"stage_name":"log_collector","events_processed":28902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5780.4,"last_update":"2026-03-21T23:13:48.869565114Z"} +2026/03/21 23:13:53 [metric_collector] {"stage_name":"metric_collector","events_processed":18479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3695.8,"last_update":"2026-03-21T23:13:48.869848767Z"} +2026/03/21 23:13:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:13:48.879032021Z"} +2026/03/21 23:13:53 [transform_engine] {"stage_name":"transform_engine","events_processed":616,"events_dropped":0,"avg_latency_ms":1444.5466414696948,"throughput_eps":0,"last_update":"2026-03-21T23:13:51.071225098Z"} +2026/03/21 23:13:53 [detection_layer] {"stage_name":"detection_layer","events_processed":615,"events_dropped":0,"avg_latency_ms":18.21351324962817,"throughput_eps":0,"last_update":"2026-03-21T23:13:48.965328272Z"} +2026/03/21 23:13:53 ───────────────────────────────────────────────── +2026/03/21 23:13:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:13:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:13:53.869515573Z"} +2026/03/21 23:13:58 [transform_engine] {"stage_name":"transform_engine","events_processed":616,"events_dropped":0,"avg_latency_ms":1444.5466414696948,"throughput_eps":0,"last_update":"2026-03-21T23:13:53.965927174Z"} +2026/03/21 23:13:58 [detection_layer] {"stage_name":"detection_layer","events_processed":616,"events_dropped":0,"avg_latency_ms":18.74880839970254,"throughput_eps":0,"last_update":"2026-03-21T23:13:53.965912126Z"} +2026/03/21 23:13:58 [log_collector] {"stage_name":"log_collector","events_processed":28902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5780.4,"last_update":"2026-03-21T23:13:58.869810477Z"} +2026/03/21 23:13:58 [metric_collector] {"stage_name":"metric_collector","events_processed":18484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3696.8,"last_update":"2026-03-21T23:13:53.869775362Z"} +2026/03/21 23:13:58 ───────────────────────────────────────────────── +2026/03/21 23:14:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:14:03 [log_collector] {"stage_name":"log_collector","events_processed":28902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5780.4,"last_update":"2026-03-21T23:14:03.870327925Z"} +2026/03/21 23:14:03 [metric_collector] {"stage_name":"metric_collector","events_processed":18489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3697.8,"last_update":"2026-03-21T23:13:58.870654643Z"} +2026/03/21 23:14:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:13:58.879374449Z"} +2026/03/21 23:14:03 [transform_engine] {"stage_name":"transform_engine","events_processed":616,"events_dropped":0,"avg_latency_ms":1444.5466414696948,"throughput_eps":0,"last_update":"2026-03-21T23:13:58.965708704Z"} +2026/03/21 23:14:03 [detection_layer] {"stage_name":"detection_layer","events_processed":616,"events_dropped":0,"avg_latency_ms":18.74880839970254,"throughput_eps":0,"last_update":"2026-03-21T23:13:58.965697633Z"} +2026/03/21 23:14:03 ───────────────────────────────────────────────── +2026/03/21 23:14:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:14:08 [transform_engine] {"stage_name":"transform_engine","events_processed":616,"events_dropped":0,"avg_latency_ms":1444.5466414696948,"throughput_eps":0,"last_update":"2026-03-21T23:14:03.965693363Z"} +2026/03/21 23:14:08 [detection_layer] {"stage_name":"detection_layer","events_processed":616,"events_dropped":0,"avg_latency_ms":18.74880839970254,"throughput_eps":0,"last_update":"2026-03-21T23:14:03.965684707Z"} +2026/03/21 23:14:08 [log_collector] {"stage_name":"log_collector","events_processed":28902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5780.4,"last_update":"2026-03-21T23:14:03.870327925Z"} +2026/03/21 23:14:08 [metric_collector] {"stage_name":"metric_collector","events_processed":18494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3698.8,"last_update":"2026-03-21T23:14:03.870745906Z"} +2026/03/21 23:14:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7400,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:14:03.879486352Z"} +2026/03/21 23:14:08 ───────────────────────────────────────────────── +Saved state: 18 clusters, 28903 messages, reason: none +2026/03/21 23:14:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:14:13 [log_collector] {"stage_name":"log_collector","events_processed":28907,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5781.4,"last_update":"2026-03-21T23:14:13.869409988Z"} +2026/03/21 23:14:13 [metric_collector] {"stage_name":"metric_collector","events_processed":18499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3699.8,"last_update":"2026-03-21T23:14:08.870295026Z"} +2026/03/21 23:14:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7402,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:14:08.878845789Z"} +2026/03/21 23:14:13 [transform_engine] {"stage_name":"transform_engine","events_processed":616,"events_dropped":0,"avg_latency_ms":1444.5466414696948,"throughput_eps":0,"last_update":"2026-03-21T23:14:08.965054134Z"} +2026/03/21 23:14:13 [detection_layer] {"stage_name":"detection_layer","events_processed":616,"events_dropped":0,"avg_latency_ms":18.74880839970254,"throughput_eps":0,"last_update":"2026-03-21T23:14:08.966158398Z"} +2026/03/21 23:14:13 ───────────────────────────────────────────────── +2026/03/21 23:14:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:14:18 [detection_layer] {"stage_name":"detection_layer","events_processed":616,"events_dropped":0,"avg_latency_ms":18.74880839970254,"throughput_eps":0,"last_update":"2026-03-21T23:14:13.965624944Z"} +2026/03/21 23:14:18 [log_collector] {"stage_name":"log_collector","events_processed":28907,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5781.4,"last_update":"2026-03-21T23:14:13.869409988Z"} +2026/03/21 23:14:18 [metric_collector] {"stage_name":"metric_collector","events_processed":18504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3700.8,"last_update":"2026-03-21T23:14:13.869612035Z"} +2026/03/21 23:14:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:14:13.8754845Z"} +2026/03/21 23:14:18 [transform_engine] {"stage_name":"transform_engine","events_processed":616,"events_dropped":0,"avg_latency_ms":1444.5466414696948,"throughput_eps":0,"last_update":"2026-03-21T23:14:13.965650163Z"} +2026/03/21 23:14:18 ───────────────────────────────────────────────── +2026/03/21 23:14:19 [ANOMALY] time=2026-03-21T23:14:19Z score=0.8274 method=SEAD details=MAD!:w=0.25,s=0.92 RRCF-fast:w=0.20,s=0.77 RRCF-mid!:w=0.17,s=0.94 RRCF-slow!:w=0.14,s=0.93 COPOD!:w=0.24,s=0.64 +2026/03/21 23:14:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:14:23 [log_collector] {"stage_name":"log_collector","events_processed":28907,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5781.4,"last_update":"2026-03-21T23:14:23.869401362Z"} +2026/03/21 23:14:23 [metric_collector] {"stage_name":"metric_collector","events_processed":18509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3701.8,"last_update":"2026-03-21T23:14:18.869784804Z"} +2026/03/21 23:14:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:14:18.879591934Z"} +2026/03/21 23:14:23 [transform_engine] {"stage_name":"transform_engine","events_processed":617,"events_dropped":0,"avg_latency_ms":1181.493449375756,"throughput_eps":0,"last_update":"2026-03-21T23:14:19.095081131Z"} +2026/03/21 23:14:23 [detection_layer] {"stage_name":"detection_layer","events_processed":616,"events_dropped":0,"avg_latency_ms":18.74880839970254,"throughput_eps":0,"last_update":"2026-03-21T23:14:18.965810489Z"} +2026/03/21 23:14:23 ───────────────────────────────────────────────── +2026/03/21 23:14:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:14:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7408,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:14:23.877198242Z"} +2026/03/21 23:14:28 [transform_engine] {"stage_name":"transform_engine","events_processed":617,"events_dropped":0,"avg_latency_ms":1181.493449375756,"throughput_eps":0,"last_update":"2026-03-21T23:14:23.965478615Z"} +2026/03/21 23:14:28 [detection_layer] {"stage_name":"detection_layer","events_processed":617,"events_dropped":0,"avg_latency_ms":17.17268891976203,"throughput_eps":0,"last_update":"2026-03-21T23:14:23.965489566Z"} +2026/03/21 23:14:28 [log_collector] {"stage_name":"log_collector","events_processed":28907,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5781.4,"last_update":"2026-03-21T23:14:23.869401362Z"} +2026/03/21 23:14:28 [metric_collector] {"stage_name":"metric_collector","events_processed":18514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3702.8,"last_update":"2026-03-21T23:14:23.870086845Z"} +2026/03/21 23:14:28 ───────────────────────────────────────────────── +2026/03/21 23:14:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:14:33 [log_collector] {"stage_name":"log_collector","events_processed":28907,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5781.4,"last_update":"2026-03-21T23:14:28.869910633Z"} +2026/03/21 23:14:33 [metric_collector] {"stage_name":"metric_collector","events_processed":18519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3703.8,"last_update":"2026-03-21T23:14:28.870457199Z"} +2026/03/21 23:14:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:14:28.876716264Z"} +2026/03/21 23:14:33 [transform_engine] {"stage_name":"transform_engine","events_processed":617,"events_dropped":0,"avg_latency_ms":1181.493449375756,"throughput_eps":0,"last_update":"2026-03-21T23:14:28.96513327Z"} +2026/03/21 23:14:33 [detection_layer] {"stage_name":"detection_layer","events_processed":617,"events_dropped":0,"avg_latency_ms":17.17268891976203,"throughput_eps":0,"last_update":"2026-03-21T23:14:28.966232855Z"} +2026/03/21 23:14:33 ───────────────────────────────────────────────── +2026/03/21 23:14:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:14:38 [log_collector] {"stage_name":"log_collector","events_processed":28907,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5781.4,"last_update":"2026-03-21T23:14:33.869590615Z"} +2026/03/21 23:14:38 [metric_collector] {"stage_name":"metric_collector","events_processed":18524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3704.8,"last_update":"2026-03-21T23:14:33.870028684Z"} +2026/03/21 23:14:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:14:33.877041012Z"} +2026/03/21 23:14:38 [transform_engine] {"stage_name":"transform_engine","events_processed":617,"events_dropped":0,"avg_latency_ms":1181.493449375756,"throughput_eps":0,"last_update":"2026-03-21T23:14:33.965155639Z"} +2026/03/21 23:14:38 [detection_layer] {"stage_name":"detection_layer","events_processed":617,"events_dropped":0,"avg_latency_ms":17.17268891976203,"throughput_eps":0,"last_update":"2026-03-21T23:14:33.966238612Z"} +2026/03/21 23:14:38 ───────────────────────────────────────────────── +2026/03/21 23:14:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:14:43 [log_collector] {"stage_name":"log_collector","events_processed":28907,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5781.4,"last_update":"2026-03-21T23:14:38.869531069Z"} +2026/03/21 23:14:43 [metric_collector] {"stage_name":"metric_collector","events_processed":18529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3705.8,"last_update":"2026-03-21T23:14:38.869646881Z"} +2026/03/21 23:14:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:14:38.877484369Z"} +2026/03/21 23:14:43 [transform_engine] {"stage_name":"transform_engine","events_processed":617,"events_dropped":0,"avg_latency_ms":1181.493449375756,"throughput_eps":0,"last_update":"2026-03-21T23:14:38.965602682Z"} +2026/03/21 23:14:43 [detection_layer] {"stage_name":"detection_layer","events_processed":617,"events_dropped":0,"avg_latency_ms":17.17268891976203,"throughput_eps":0,"last_update":"2026-03-21T23:14:38.965628Z"} +2026/03/21 23:14:43 ───────────────────────────────────────────────── +2026/03/21 23:14:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:14:48 [log_collector] {"stage_name":"log_collector","events_processed":28907,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5781.4,"last_update":"2026-03-21T23:14:43.869428994Z"} +2026/03/21 23:14:48 [metric_collector] {"stage_name":"metric_collector","events_processed":18534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3706.8,"last_update":"2026-03-21T23:14:43.869640569Z"} +2026/03/21 23:14:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:14:43.877321177Z"} +2026/03/21 23:14:48 [transform_engine] {"stage_name":"transform_engine","events_processed":617,"events_dropped":0,"avg_latency_ms":1181.493449375756,"throughput_eps":0,"last_update":"2026-03-21T23:14:43.965509825Z"} +2026/03/21 23:14:48 [detection_layer] {"stage_name":"detection_layer","events_processed":617,"events_dropped":0,"avg_latency_ms":17.17268891976203,"throughput_eps":0,"last_update":"2026-03-21T23:14:43.965478355Z"} +2026/03/21 23:14:48 ───────────────────────────────────────────────── +2026/03/21 23:14:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:14:53 [log_collector] {"stage_name":"log_collector","events_processed":28907,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5781.4,"last_update":"2026-03-21T23:14:48.869494029Z"} +2026/03/21 23:14:53 [metric_collector] {"stage_name":"metric_collector","events_processed":18539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3707.8,"last_update":"2026-03-21T23:14:48.869768565Z"} +2026/03/21 23:14:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:14:48.875717958Z"} +2026/03/21 23:14:53 [transform_engine] {"stage_name":"transform_engine","events_processed":617,"events_dropped":0,"avg_latency_ms":1181.493449375756,"throughput_eps":0,"last_update":"2026-03-21T23:14:43.965509825Z"} +2026/03/21 23:14:53 [detection_layer] {"stage_name":"detection_layer","events_processed":617,"events_dropped":0,"avg_latency_ms":17.17268891976203,"throughput_eps":0,"last_update":"2026-03-21T23:14:48.966093294Z"} +2026/03/21 23:14:53 ───────────────────────────────────────────────── +2026/03/21 23:14:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:14:58 [log_collector] {"stage_name":"log_collector","events_processed":28916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5783.2,"last_update":"2026-03-21T23:14:53.869909519Z"} +2026/03/21 23:14:58 [metric_collector] {"stage_name":"metric_collector","events_processed":18544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3708.8,"last_update":"2026-03-21T23:14:53.870186269Z"} +2026/03/21 23:14:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7420,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:14:53.878768433Z"} +2026/03/21 23:14:58 [transform_engine] {"stage_name":"transform_engine","events_processed":618,"events_dropped":0,"avg_latency_ms":1950.9641059006049,"throughput_eps":0,"last_update":"2026-03-21T23:14:53.994901702Z"} +2026/03/21 23:14:58 [detection_layer] {"stage_name":"detection_layer","events_processed":617,"events_dropped":0,"avg_latency_ms":17.17268891976203,"throughput_eps":0,"last_update":"2026-03-21T23:14:53.965933963Z"} +2026/03/21 23:14:58 ───────────────────────────────────────────────── +2026/03/21 23:15:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:15:03 [log_collector] {"stage_name":"log_collector","events_processed":28918,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5783.6,"last_update":"2026-03-21T23:14:58.869417559Z"} +2026/03/21 23:15:03 [metric_collector] {"stage_name":"metric_collector","events_processed":18549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3709.8,"last_update":"2026-03-21T23:14:58.870377929Z"} +2026/03/21 23:15:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:14:58.878729841Z"} +2026/03/21 23:15:03 [transform_engine] {"stage_name":"transform_engine","events_processed":618,"events_dropped":0,"avg_latency_ms":1950.9641059006049,"throughput_eps":0,"last_update":"2026-03-21T23:14:58.966065257Z"} +2026/03/21 23:15:03 [detection_layer] {"stage_name":"detection_layer","events_processed":618,"events_dropped":0,"avg_latency_ms":17.204883535809625,"throughput_eps":0,"last_update":"2026-03-21T23:14:58.96617129Z"} +2026/03/21 23:15:03 ───────────────────────────────────────────────── +2026/03/21 23:15:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:15:08 [log_collector] {"stage_name":"log_collector","events_processed":29136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5827.2,"last_update":"2026-03-21T23:15:03.869580377Z"} +2026/03/21 23:15:08 [metric_collector] {"stage_name":"metric_collector","events_processed":18553,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3710.6,"last_update":"2026-03-21T23:15:03.869611286Z"} +2026/03/21 23:15:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:15:03.876306185Z"} +2026/03/21 23:15:08 [transform_engine] {"stage_name":"transform_engine","events_processed":618,"events_dropped":0,"avg_latency_ms":1950.9641059006049,"throughput_eps":0,"last_update":"2026-03-21T23:15:03.966017402Z"} +2026/03/21 23:15:08 [detection_layer] {"stage_name":"detection_layer","events_processed":618,"events_dropped":0,"avg_latency_ms":17.204883535809625,"throughput_eps":0,"last_update":"2026-03-21T23:15:03.966029835Z"} +2026/03/21 23:15:08 ───────────────────────────────────────────────── +2026/03/21 23:15:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:15:13 [log_collector] {"stage_name":"log_collector","events_processed":29273,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5854.6,"last_update":"2026-03-21T23:15:08.869418001Z"} +2026/03/21 23:15:13 [metric_collector] {"stage_name":"metric_collector","events_processed":18558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3711.6,"last_update":"2026-03-21T23:15:08.869462566Z"} +2026/03/21 23:15:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:15:08.876254392Z"} +2026/03/21 23:15:13 [transform_engine] {"stage_name":"transform_engine","events_processed":618,"events_dropped":0,"avg_latency_ms":1950.9641059006049,"throughput_eps":0,"last_update":"2026-03-21T23:15:08.965514425Z"} +2026/03/21 23:15:13 [detection_layer] {"stage_name":"detection_layer","events_processed":618,"events_dropped":0,"avg_latency_ms":17.204883535809625,"throughput_eps":0,"last_update":"2026-03-21T23:15:08.965502782Z"} +2026/03/21 23:15:13 ───────────────────────────────────────────────── +Saved state: 18 clusters, 29274 messages, reason: none +2026/03/21 23:15:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:15:18 [log_collector] {"stage_name":"log_collector","events_processed":29273,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5854.6,"last_update":"2026-03-21T23:15:13.870243908Z"} +2026/03/21 23:15:18 [metric_collector] {"stage_name":"metric_collector","events_processed":18564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3712.8,"last_update":"2026-03-21T23:15:13.870520789Z"} +2026/03/21 23:15:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:15:13.879375434Z"} +2026/03/21 23:15:18 [transform_engine] {"stage_name":"transform_engine","events_processed":618,"events_dropped":0,"avg_latency_ms":1950.9641059006049,"throughput_eps":0,"last_update":"2026-03-21T23:15:13.965572231Z"} +2026/03/21 23:15:18 [detection_layer] {"stage_name":"detection_layer","events_processed":618,"events_dropped":0,"avg_latency_ms":17.204883535809625,"throughput_eps":0,"last_update":"2026-03-21T23:15:13.965560088Z"} +2026/03/21 23:15:18 ───────────────────────────────────────────────── +2026/03/21 23:15:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:15:23 [log_collector] {"stage_name":"log_collector","events_processed":29276,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5855.2,"last_update":"2026-03-21T23:15:18.86945325Z"} +2026/03/21 23:15:23 [metric_collector] {"stage_name":"metric_collector","events_processed":18569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3713.8,"last_update":"2026-03-21T23:15:18.869910466Z"} +2026/03/21 23:15:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:15:18.876708363Z"} +2026/03/21 23:15:23 [transform_engine] {"stage_name":"transform_engine","events_processed":619,"events_dropped":0,"avg_latency_ms":1585.240677120484,"throughput_eps":0,"last_update":"2026-03-21T23:15:19.088246416Z"} +2026/03/21 23:15:23 [detection_layer] {"stage_name":"detection_layer","events_processed":618,"events_dropped":0,"avg_latency_ms":17.204883535809625,"throughput_eps":0,"last_update":"2026-03-21T23:15:18.965884446Z"} +2026/03/21 23:15:23 ───────────────────────────────────────────────── +2026/03/21 23:15:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:15:28 [log_collector] {"stage_name":"log_collector","events_processed":29276,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5855.2,"last_update":"2026-03-21T23:15:23.869869664Z"} +2026/03/21 23:15:28 [metric_collector] {"stage_name":"metric_collector","events_processed":18574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3714.8,"last_update":"2026-03-21T23:15:23.870218942Z"} +2026/03/21 23:15:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:15:23.879245878Z"} +2026/03/21 23:15:28 [transform_engine] {"stage_name":"transform_engine","events_processed":619,"events_dropped":0,"avg_latency_ms":1585.240677120484,"throughput_eps":0,"last_update":"2026-03-21T23:15:23.965452294Z"} +2026/03/21 23:15:28 [detection_layer] {"stage_name":"detection_layer","events_processed":619,"events_dropped":0,"avg_latency_ms":16.3352284286477,"throughput_eps":0,"last_update":"2026-03-21T23:15:23.96542382Z"} +2026/03/21 23:15:28 ───────────────────────────────────────────────── +2026/03/21 23:15:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:15:33 [detection_layer] {"stage_name":"detection_layer","events_processed":619,"events_dropped":0,"avg_latency_ms":16.3352284286477,"throughput_eps":0,"last_update":"2026-03-21T23:15:28.965339755Z"} +2026/03/21 23:15:33 [log_collector] {"stage_name":"log_collector","events_processed":29286,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5857.2,"last_update":"2026-03-21T23:15:28.869403146Z"} +2026/03/21 23:15:33 [metric_collector] {"stage_name":"metric_collector","events_processed":18578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3715.6,"last_update":"2026-03-21T23:15:28.869395491Z"} +2026/03/21 23:15:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:15:28.878080302Z"} +2026/03/21 23:15:33 [transform_engine] {"stage_name":"transform_engine","events_processed":619,"events_dropped":0,"avg_latency_ms":1585.240677120484,"throughput_eps":0,"last_update":"2026-03-21T23:15:28.965309036Z"} +2026/03/21 23:15:33 ───────────────────────────────────────────────── +2026/03/21 23:15:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:15:38 [transform_engine] {"stage_name":"transform_engine","events_processed":619,"events_dropped":0,"avg_latency_ms":1585.240677120484,"throughput_eps":0,"last_update":"2026-03-21T23:15:33.965779792Z"} +2026/03/21 23:15:38 [detection_layer] {"stage_name":"detection_layer","events_processed":619,"events_dropped":0,"avg_latency_ms":16.3352284286477,"throughput_eps":0,"last_update":"2026-03-21T23:15:33.965756618Z"} +2026/03/21 23:15:38 [log_collector] {"stage_name":"log_collector","events_processed":29287,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5857.4,"last_update":"2026-03-21T23:15:33.869525094Z"} +2026/03/21 23:15:38 [metric_collector] {"stage_name":"metric_collector","events_processed":18584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3716.8,"last_update":"2026-03-21T23:15:33.869713916Z"} +2026/03/21 23:15:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:15:33.878631232Z"} +2026/03/21 23:15:38 ───────────────────────────────────────────────── +2026/03/21 23:15:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:15:43 [transform_engine] {"stage_name":"transform_engine","events_processed":619,"events_dropped":0,"avg_latency_ms":1585.240677120484,"throughput_eps":0,"last_update":"2026-03-21T23:15:38.966179493Z"} +2026/03/21 23:15:43 [detection_layer] {"stage_name":"detection_layer","events_processed":619,"events_dropped":0,"avg_latency_ms":16.3352284286477,"throughput_eps":0,"last_update":"2026-03-21T23:15:38.966223207Z"} +2026/03/21 23:15:43 [log_collector] {"stage_name":"log_collector","events_processed":29303,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5860.6,"last_update":"2026-03-21T23:15:38.869744719Z"} +2026/03/21 23:15:43 [metric_collector] {"stage_name":"metric_collector","events_processed":18589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3717.8,"last_update":"2026-03-21T23:15:38.870045415Z"} +2026/03/21 23:15:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:15:38.879910445Z"} +2026/03/21 23:15:43 ───────────────────────────────────────────────── +2026/03/21 23:15:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:15:48 [metric_collector] {"stage_name":"metric_collector","events_processed":18594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3718.8,"last_update":"2026-03-21T23:15:43.870388757Z"} +2026/03/21 23:15:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:15:43.879390534Z"} +2026/03/21 23:15:48 [transform_engine] {"stage_name":"transform_engine","events_processed":619,"events_dropped":0,"avg_latency_ms":1585.240677120484,"throughput_eps":0,"last_update":"2026-03-21T23:15:43.965772979Z"} +2026/03/21 23:15:48 [detection_layer] {"stage_name":"detection_layer","events_processed":619,"events_dropped":0,"avg_latency_ms":16.3352284286477,"throughput_eps":0,"last_update":"2026-03-21T23:15:43.96574766Z"} +2026/03/21 23:15:48 [log_collector] {"stage_name":"log_collector","events_processed":29303,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5860.6,"last_update":"2026-03-21T23:15:43.869892266Z"} +2026/03/21 23:15:48 ───────────────────────────────────────────────── +2026/03/21 23:15:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:15:53 [log_collector] {"stage_name":"log_collector","events_processed":29303,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5860.6,"last_update":"2026-03-21T23:15:48.869393363Z"} +2026/03/21 23:15:53 [metric_collector] {"stage_name":"metric_collector","events_processed":18598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3719.6,"last_update":"2026-03-21T23:15:48.869385919Z"} +2026/03/21 23:15:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7442,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:15:48.878677451Z"} +2026/03/21 23:15:53 [transform_engine] {"stage_name":"transform_engine","events_processed":620,"events_dropped":0,"avg_latency_ms":1292.3111246963872,"throughput_eps":0,"last_update":"2026-03-21T23:15:49.086455669Z"} +2026/03/21 23:15:53 [detection_layer] {"stage_name":"detection_layer","events_processed":619,"events_dropped":0,"avg_latency_ms":16.3352284286477,"throughput_eps":0,"last_update":"2026-03-21T23:15:48.965908682Z"} +2026/03/21 23:15:53 ───────────────────────────────────────────────── +2026/03/21 23:15:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:15:58 [metric_collector] {"stage_name":"metric_collector","events_processed":18603,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3720.6,"last_update":"2026-03-21T23:15:53.870154323Z"} +2026/03/21 23:15:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:15:53.879440205Z"} +2026/03/21 23:15:58 [transform_engine] {"stage_name":"transform_engine","events_processed":620,"events_dropped":0,"avg_latency_ms":1292.3111246963872,"throughput_eps":0,"last_update":"2026-03-21T23:15:53.965701058Z"} +2026/03/21 23:15:58 [detection_layer] {"stage_name":"detection_layer","events_processed":620,"events_dropped":0,"avg_latency_ms":16.88008594291816,"throughput_eps":0,"last_update":"2026-03-21T23:15:53.96566067Z"} +2026/03/21 23:15:58 [log_collector] {"stage_name":"log_collector","events_processed":29303,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5860.6,"last_update":"2026-03-21T23:15:58.869696837Z"} +2026/03/21 23:15:58 ───────────────────────────────────────────────── +2026/03/21 23:16:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:16:03 [log_collector] {"stage_name":"log_collector","events_processed":29303,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5860.6,"last_update":"2026-03-21T23:15:58.869696837Z"} +2026/03/21 23:16:03 [metric_collector] {"stage_name":"metric_collector","events_processed":18609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3721.8,"last_update":"2026-03-21T23:15:58.870527268Z"} +2026/03/21 23:16:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7446,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:15:58.878926883Z"} +2026/03/21 23:16:03 [transform_engine] {"stage_name":"transform_engine","events_processed":620,"events_dropped":0,"avg_latency_ms":1292.3111246963872,"throughput_eps":0,"last_update":"2026-03-21T23:15:58.965097061Z"} +2026/03/21 23:16:03 [detection_layer] {"stage_name":"detection_layer","events_processed":620,"events_dropped":0,"avg_latency_ms":16.88008594291816,"throughput_eps":0,"last_update":"2026-03-21T23:15:58.966227967Z"} +2026/03/21 23:16:03 ───────────────────────────────────────────────── +2026/03/21 23:16:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:16:08 [log_collector] {"stage_name":"log_collector","events_processed":29303,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5860.6,"last_update":"2026-03-21T23:16:03.870111311Z"} +2026/03/21 23:16:08 [metric_collector] {"stage_name":"metric_collector","events_processed":18614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3722.8,"last_update":"2026-03-21T23:16:03.870641065Z"} +2026/03/21 23:16:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:16:03.878787705Z"} +2026/03/21 23:16:08 [transform_engine] {"stage_name":"transform_engine","events_processed":620,"events_dropped":0,"avg_latency_ms":1292.3111246963872,"throughput_eps":0,"last_update":"2026-03-21T23:16:03.96597365Z"} +2026/03/21 23:16:08 [detection_layer] {"stage_name":"detection_layer","events_processed":620,"events_dropped":0,"avg_latency_ms":16.88008594291816,"throughput_eps":0,"last_update":"2026-03-21T23:16:03.965995261Z"} +2026/03/21 23:16:08 ───────────────────────────────────────────────── +2026/03/21 23:16:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:16:13 [transform_engine] {"stage_name":"transform_engine","events_processed":620,"events_dropped":0,"avg_latency_ms":1292.3111246963872,"throughput_eps":0,"last_update":"2026-03-21T23:16:08.965948229Z"} +2026/03/21 23:16:13 [detection_layer] {"stage_name":"detection_layer","events_processed":620,"events_dropped":0,"avg_latency_ms":16.88008594291816,"throughput_eps":0,"last_update":"2026-03-21T23:16:08.965860561Z"} +2026/03/21 23:16:13 [log_collector] {"stage_name":"log_collector","events_processed":29303,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5860.6,"last_update":"2026-03-21T23:16:08.869571183Z"} +2026/03/21 23:16:13 [metric_collector] {"stage_name":"metric_collector","events_processed":18619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3723.8,"last_update":"2026-03-21T23:16:08.86996085Z"} +2026/03/21 23:16:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:16:08.875642379Z"} +2026/03/21 23:16:13 ───────────────────────────────────────────────── +2026/03/21 23:16:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:16:18 [transform_engine] {"stage_name":"transform_engine","events_processed":620,"events_dropped":0,"avg_latency_ms":1292.3111246963872,"throughput_eps":0,"last_update":"2026-03-21T23:16:13.965743484Z"} +2026/03/21 23:16:18 [detection_layer] {"stage_name":"detection_layer","events_processed":620,"events_dropped":0,"avg_latency_ms":16.88008594291816,"throughput_eps":0,"last_update":"2026-03-21T23:16:13.965639324Z"} +2026/03/21 23:16:18 [log_collector] {"stage_name":"log_collector","events_processed":29303,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5860.6,"last_update":"2026-03-21T23:16:13.869954234Z"} +2026/03/21 23:16:18 [metric_collector] {"stage_name":"metric_collector","events_processed":18624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3724.8,"last_update":"2026-03-21T23:16:13.870445374Z"} +2026/03/21 23:16:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7452,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:16:13.880458529Z"} +2026/03/21 23:16:18 ───────────────────────────────────────────────── +2026/03/21 23:16:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:16:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:16:18.879450873Z"} +2026/03/21 23:16:23 [transform_engine] {"stage_name":"transform_engine","events_processed":621,"events_dropped":0,"avg_latency_ms":1048.88086495711,"throughput_eps":0,"last_update":"2026-03-21T23:16:19.040856293Z"} +2026/03/21 23:16:23 [detection_layer] {"stage_name":"detection_layer","events_processed":620,"events_dropped":0,"avg_latency_ms":16.88008594291816,"throughput_eps":0,"last_update":"2026-03-21T23:16:18.96566614Z"} +2026/03/21 23:16:23 [log_collector] {"stage_name":"log_collector","events_processed":29303,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5860.6,"last_update":"2026-03-21T23:16:18.869410847Z"} +2026/03/21 23:16:23 [metric_collector] {"stage_name":"metric_collector","events_processed":18629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3725.8,"last_update":"2026-03-21T23:16:18.869870217Z"} +2026/03/21 23:16:23 ───────────────────────────────────────────────── +2026/03/21 23:16:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:16:28 [log_collector] {"stage_name":"log_collector","events_processed":29303,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5860.6,"last_update":"2026-03-21T23:16:28.86943345Z"} +2026/03/21 23:16:28 [metric_collector] {"stage_name":"metric_collector","events_processed":18634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3726.8,"last_update":"2026-03-21T23:16:23.870200781Z"} +2026/03/21 23:16:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:16:23.8788796Z"} +2026/03/21 23:16:28 [transform_engine] {"stage_name":"transform_engine","events_processed":621,"events_dropped":0,"avg_latency_ms":1048.88086495711,"throughput_eps":0,"last_update":"2026-03-21T23:16:23.966088629Z"} +2026/03/21 23:16:28 [detection_layer] {"stage_name":"detection_layer","events_processed":621,"events_dropped":0,"avg_latency_ms":17.75665015433453,"throughput_eps":0,"last_update":"2026-03-21T23:16:23.966064172Z"} +2026/03/21 23:16:28 ───────────────────────────────────────────────── +2026/03/21 23:16:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:16:33 [detection_layer] {"stage_name":"detection_layer","events_processed":621,"events_dropped":0,"avg_latency_ms":17.75665015433453,"throughput_eps":0,"last_update":"2026-03-21T23:16:28.965658335Z"} +2026/03/21 23:16:33 [log_collector] {"stage_name":"log_collector","events_processed":29303,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5860.6,"last_update":"2026-03-21T23:16:33.869464404Z"} +2026/03/21 23:16:33 [metric_collector] {"stage_name":"metric_collector","events_processed":18639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3727.8,"last_update":"2026-03-21T23:16:28.870166193Z"} +2026/03/21 23:16:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:16:28.879479127Z"} +2026/03/21 23:16:33 [transform_engine] {"stage_name":"transform_engine","events_processed":621,"events_dropped":0,"avg_latency_ms":1048.88086495711,"throughput_eps":0,"last_update":"2026-03-21T23:16:28.965683684Z"} +2026/03/21 23:16:33 ───────────────────────────────────────────────── +2026/03/21 23:16:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:16:38 [log_collector] {"stage_name":"log_collector","events_processed":29303,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5860.6,"last_update":"2026-03-21T23:16:33.869464404Z"} +2026/03/21 23:16:38 [metric_collector] {"stage_name":"metric_collector","events_processed":18644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3728.8,"last_update":"2026-03-21T23:16:33.87007839Z"} +2026/03/21 23:16:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:16:33.880309692Z"} +2026/03/21 23:16:38 [transform_engine] {"stage_name":"transform_engine","events_processed":621,"events_dropped":0,"avg_latency_ms":1048.88086495711,"throughput_eps":0,"last_update":"2026-03-21T23:16:33.965507Z"} +2026/03/21 23:16:38 [detection_layer] {"stage_name":"detection_layer","events_processed":621,"events_dropped":0,"avg_latency_ms":17.75665015433453,"throughput_eps":0,"last_update":"2026-03-21T23:16:33.96548612Z"} +2026/03/21 23:16:38 ───────────────────────────────────────────────── +2026/03/21 23:16:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:16:43 [metric_collector] {"stage_name":"metric_collector","events_processed":18649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3729.8,"last_update":"2026-03-21T23:16:38.869782518Z"} +2026/03/21 23:16:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:16:38.879436575Z"} +2026/03/21 23:16:43 [transform_engine] {"stage_name":"transform_engine","events_processed":621,"events_dropped":0,"avg_latency_ms":1048.88086495711,"throughput_eps":0,"last_update":"2026-03-21T23:16:38.965726476Z"} +2026/03/21 23:16:43 [detection_layer] {"stage_name":"detection_layer","events_processed":621,"events_dropped":0,"avg_latency_ms":17.75665015433453,"throughput_eps":0,"last_update":"2026-03-21T23:16:38.965696358Z"} +2026/03/21 23:16:43 [log_collector] {"stage_name":"log_collector","events_processed":29303,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5860.6,"last_update":"2026-03-21T23:16:38.869988632Z"} +2026/03/21 23:16:43 ───────────────────────────────────────────────── +Saved state: 18 clusters, 29304 messages, reason: none +2026/03/21 23:16:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:16:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:16:43.879317017Z"} +2026/03/21 23:16:48 [transform_engine] {"stage_name":"transform_engine","events_processed":621,"events_dropped":0,"avg_latency_ms":1048.88086495711,"throughput_eps":0,"last_update":"2026-03-21T23:16:43.966059946Z"} +2026/03/21 23:16:48 [detection_layer] {"stage_name":"detection_layer","events_processed":621,"events_dropped":0,"avg_latency_ms":17.75665015433453,"throughput_eps":0,"last_update":"2026-03-21T23:16:43.966034477Z"} +2026/03/21 23:16:48 [log_collector] {"stage_name":"log_collector","events_processed":29303,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5860.6,"last_update":"2026-03-21T23:16:43.869847935Z"} +2026/03/21 23:16:48 [metric_collector] {"stage_name":"metric_collector","events_processed":18654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3730.8,"last_update":"2026-03-21T23:16:43.87025811Z"} +2026/03/21 23:16:48 ───────────────────────────────────────────────── +2026/03/21 23:16:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:16:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:16:48.878003599Z"} +2026/03/21 23:16:53 [transform_engine] {"stage_name":"transform_engine","events_processed":622,"events_dropped":0,"avg_latency_ms":883.309321765688,"throughput_eps":0,"last_update":"2026-03-21T23:16:49.186135517Z"} +2026/03/21 23:16:53 [detection_layer] {"stage_name":"detection_layer","events_processed":621,"events_dropped":0,"avg_latency_ms":17.75665015433453,"throughput_eps":0,"last_update":"2026-03-21T23:16:48.966196905Z"} +2026/03/21 23:16:53 [log_collector] {"stage_name":"log_collector","events_processed":29306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5861.2,"last_update":"2026-03-21T23:16:48.869422165Z"} +2026/03/21 23:16:53 [metric_collector] {"stage_name":"metric_collector","events_processed":18659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3731.8,"last_update":"2026-03-21T23:16:48.869676111Z"} +2026/03/21 23:16:53 ───────────────────────────────────────────────── +2026/03/21 23:16:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:16:58 [log_collector] {"stage_name":"log_collector","events_processed":29317,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5863.4,"last_update":"2026-03-21T23:16:53.869550357Z"} +2026/03/21 23:16:58 [metric_collector] {"stage_name":"metric_collector","events_processed":18664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3732.8,"last_update":"2026-03-21T23:16:53.870068809Z"} +2026/03/21 23:16:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:16:53.878318888Z"} +2026/03/21 23:16:58 [transform_engine] {"stage_name":"transform_engine","events_processed":622,"events_dropped":0,"avg_latency_ms":883.309321765688,"throughput_eps":0,"last_update":"2026-03-21T23:16:53.965534433Z"} +2026/03/21 23:16:58 [detection_layer] {"stage_name":"detection_layer","events_processed":622,"events_dropped":0,"avg_latency_ms":18.263573723467623,"throughput_eps":0,"last_update":"2026-03-21T23:16:53.96552294Z"} +2026/03/21 23:16:58 ───────────────────────────────────────────────── +2026/03/21 23:17:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:17:03 [transform_engine] {"stage_name":"transform_engine","events_processed":622,"events_dropped":0,"avg_latency_ms":883.309321765688,"throughput_eps":0,"last_update":"2026-03-21T23:16:58.965295526Z"} +2026/03/21 23:17:03 [detection_layer] {"stage_name":"detection_layer","events_processed":622,"events_dropped":0,"avg_latency_ms":18.263573723467623,"throughput_eps":0,"last_update":"2026-03-21T23:16:58.965272883Z"} +2026/03/21 23:17:03 [log_collector] {"stage_name":"log_collector","events_processed":29317,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5863.4,"last_update":"2026-03-21T23:16:58.869456159Z"} +2026/03/21 23:17:03 [metric_collector] {"stage_name":"metric_collector","events_processed":18669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3733.8,"last_update":"2026-03-21T23:16:58.86988012Z"} +2026/03/21 23:17:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7470,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:16:58.879256536Z"} +2026/03/21 23:17:03 ───────────────────────────────────────────────── +2026/03/21 23:17:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:17:08 [metric_collector] {"stage_name":"metric_collector","events_processed":18674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3734.8,"last_update":"2026-03-21T23:17:03.869971564Z"} +2026/03/21 23:17:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:17:03.878734455Z"} +2026/03/21 23:17:08 [transform_engine] {"stage_name":"transform_engine","events_processed":622,"events_dropped":0,"avg_latency_ms":883.309321765688,"throughput_eps":0,"last_update":"2026-03-21T23:17:03.966058878Z"} +2026/03/21 23:17:08 [detection_layer] {"stage_name":"detection_layer","events_processed":622,"events_dropped":0,"avg_latency_ms":18.263573723467623,"throughput_eps":0,"last_update":"2026-03-21T23:17:03.966046023Z"} +2026/03/21 23:17:08 [log_collector] {"stage_name":"log_collector","events_processed":29317,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5863.4,"last_update":"2026-03-21T23:17:08.869873218Z"} +2026/03/21 23:17:08 ───────────────────────────────────────────────── +2026/03/21 23:17:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:17:13 [log_collector] {"stage_name":"log_collector","events_processed":29317,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5863.4,"last_update":"2026-03-21T23:17:08.869873218Z"} +2026/03/21 23:17:13 [metric_collector] {"stage_name":"metric_collector","events_processed":18679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3735.8,"last_update":"2026-03-21T23:17:08.870308703Z"} +2026/03/21 23:17:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:17:08.880305536Z"} +2026/03/21 23:17:13 [transform_engine] {"stage_name":"transform_engine","events_processed":622,"events_dropped":0,"avg_latency_ms":883.309321765688,"throughput_eps":0,"last_update":"2026-03-21T23:17:08.965493468Z"} +2026/03/21 23:17:13 [detection_layer] {"stage_name":"detection_layer","events_processed":622,"events_dropped":0,"avg_latency_ms":18.263573723467623,"throughput_eps":0,"last_update":"2026-03-21T23:17:08.965486314Z"} +2026/03/21 23:17:13 ───────────────────────────────────────────────── +2026/03/21 23:17:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:17:18 [log_collector] {"stage_name":"log_collector","events_processed":29317,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5863.4,"last_update":"2026-03-21T23:17:18.870183187Z"} +2026/03/21 23:17:18 [metric_collector] {"stage_name":"metric_collector","events_processed":18684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3736.8,"last_update":"2026-03-21T23:17:13.870603657Z"} +2026/03/21 23:17:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7476,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:17:13.879177607Z"} +2026/03/21 23:17:18 [transform_engine] {"stage_name":"transform_engine","events_processed":622,"events_dropped":0,"avg_latency_ms":883.309321765688,"throughput_eps":0,"last_update":"2026-03-21T23:17:13.965381014Z"} +2026/03/21 23:17:18 [detection_layer] {"stage_name":"detection_layer","events_processed":622,"events_dropped":0,"avg_latency_ms":18.263573723467623,"throughput_eps":0,"last_update":"2026-03-21T23:17:13.965371475Z"} +2026/03/21 23:17:18 ───────────────────────────────────────────────── +2026/03/21 23:17:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:17:23 [metric_collector] {"stage_name":"metric_collector","events_processed":18689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3737.8,"last_update":"2026-03-21T23:17:18.870634491Z"} +2026/03/21 23:17:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:17:18.879202559Z"} +2026/03/21 23:17:23 [transform_engine] {"stage_name":"transform_engine","events_processed":623,"events_dropped":0,"avg_latency_ms":729.8642252125504,"throughput_eps":0,"last_update":"2026-03-21T23:17:19.081678275Z"} +2026/03/21 23:17:23 [detection_layer] {"stage_name":"detection_layer","events_processed":622,"events_dropped":0,"avg_latency_ms":18.263573723467623,"throughput_eps":0,"last_update":"2026-03-21T23:17:18.96558024Z"} +2026/03/21 23:17:23 [log_collector] {"stage_name":"log_collector","events_processed":29317,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5863.4,"last_update":"2026-03-21T23:17:23.870003587Z"} +2026/03/21 23:17:23 ───────────────────────────────────────────────── +2026/03/21 23:17:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:17:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7480,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:17:23.878776106Z"} +2026/03/21 23:17:28 [transform_engine] {"stage_name":"transform_engine","events_processed":623,"events_dropped":0,"avg_latency_ms":729.8642252125504,"throughput_eps":0,"last_update":"2026-03-21T23:17:23.966061956Z"} +2026/03/21 23:17:28 [detection_layer] {"stage_name":"detection_layer","events_processed":623,"events_dropped":0,"avg_latency_ms":18.893702378774098,"throughput_eps":0,"last_update":"2026-03-21T23:17:23.966055675Z"} +2026/03/21 23:17:28 [log_collector] {"stage_name":"log_collector","events_processed":29317,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5863.4,"last_update":"2026-03-21T23:17:23.870003587Z"} +2026/03/21 23:17:28 [metric_collector] {"stage_name":"metric_collector","events_processed":18694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3738.8,"last_update":"2026-03-21T23:17:23.870333699Z"} +2026/03/21 23:17:28 ───────────────────────────────────────────────── +2026/03/21 23:17:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:17:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7482,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:17:28.878753541Z"} +2026/03/21 23:17:33 [transform_engine] {"stage_name":"transform_engine","events_processed":623,"events_dropped":0,"avg_latency_ms":729.8642252125504,"throughput_eps":0,"last_update":"2026-03-21T23:17:28.966011818Z"} +2026/03/21 23:17:33 [detection_layer] {"stage_name":"detection_layer","events_processed":623,"events_dropped":0,"avg_latency_ms":18.893702378774098,"throughput_eps":0,"last_update":"2026-03-21T23:17:28.966005206Z"} +2026/03/21 23:17:33 [log_collector] {"stage_name":"log_collector","events_processed":29317,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5863.4,"last_update":"2026-03-21T23:17:33.869421613Z"} +2026/03/21 23:17:33 [metric_collector] {"stage_name":"metric_collector","events_processed":18699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3739.8,"last_update":"2026-03-21T23:17:28.870143843Z"} +2026/03/21 23:17:33 ───────────────────────────────────────────────── +2026/03/21 23:17:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:17:38 [log_collector] {"stage_name":"log_collector","events_processed":29317,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5863.4,"last_update":"2026-03-21T23:17:38.869858587Z"} +2026/03/21 23:17:38 [metric_collector] {"stage_name":"metric_collector","events_processed":18704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3740.8,"last_update":"2026-03-21T23:17:33.869804517Z"} +2026/03/21 23:17:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:17:33.87833342Z"} +2026/03/21 23:17:38 [transform_engine] {"stage_name":"transform_engine","events_processed":623,"events_dropped":0,"avg_latency_ms":729.8642252125504,"throughput_eps":0,"last_update":"2026-03-21T23:17:33.965634099Z"} +2026/03/21 23:17:38 [detection_layer] {"stage_name":"detection_layer","events_processed":623,"events_dropped":0,"avg_latency_ms":18.893702378774098,"throughput_eps":0,"last_update":"2026-03-21T23:17:33.965622797Z"} +2026/03/21 23:17:38 ───────────────────────────────────────────────── +2026/03/21 23:17:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:17:43 [log_collector] {"stage_name":"log_collector","events_processed":29317,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5863.4,"last_update":"2026-03-21T23:17:38.869858587Z"} +2026/03/21 23:17:43 [metric_collector] {"stage_name":"metric_collector","events_processed":18709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3741.8,"last_update":"2026-03-21T23:17:38.870263773Z"} +2026/03/21 23:17:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7486,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:17:38.87834011Z"} +2026/03/21 23:17:43 [transform_engine] {"stage_name":"transform_engine","events_processed":623,"events_dropped":0,"avg_latency_ms":729.8642252125504,"throughput_eps":0,"last_update":"2026-03-21T23:17:38.965535298Z"} +2026/03/21 23:17:43 [detection_layer] {"stage_name":"detection_layer","events_processed":623,"events_dropped":0,"avg_latency_ms":18.893702378774098,"throughput_eps":0,"last_update":"2026-03-21T23:17:38.96552608Z"} +2026/03/21 23:17:43 ───────────────────────────────────────────────── +2026/03/21 23:17:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:17:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:17:43.878840652Z"} +2026/03/21 23:17:48 [transform_engine] {"stage_name":"transform_engine","events_processed":623,"events_dropped":0,"avg_latency_ms":729.8642252125504,"throughput_eps":0,"last_update":"2026-03-21T23:17:43.966190076Z"} +2026/03/21 23:17:48 [detection_layer] {"stage_name":"detection_layer","events_processed":623,"events_dropped":0,"avg_latency_ms":18.893702378774098,"throughput_eps":0,"last_update":"2026-03-21T23:17:43.966178905Z"} +2026/03/21 23:17:48 [log_collector] {"stage_name":"log_collector","events_processed":29317,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5863.4,"last_update":"2026-03-21T23:17:48.869416164Z"} +2026/03/21 23:17:48 [metric_collector] {"stage_name":"metric_collector","events_processed":18714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3742.8,"last_update":"2026-03-21T23:17:43.870072992Z"} +2026/03/21 23:17:48 ───────────────────────────────────────────────── +2026/03/21 23:17:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:17:53 [detection_layer] {"stage_name":"detection_layer","events_processed":623,"events_dropped":0,"avg_latency_ms":18.893702378774098,"throughput_eps":0,"last_update":"2026-03-21T23:17:48.966302561Z"} +2026/03/21 23:17:53 [log_collector] {"stage_name":"log_collector","events_processed":29317,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5863.4,"last_update":"2026-03-21T23:17:48.869416164Z"} +2026/03/21 23:17:53 [metric_collector] {"stage_name":"metric_collector","events_processed":18719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3743.8,"last_update":"2026-03-21T23:17:48.869887748Z"} +2026/03/21 23:17:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7490,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:17:48.87893352Z"} +2026/03/21 23:17:53 [transform_engine] {"stage_name":"transform_engine","events_processed":624,"events_dropped":0,"avg_latency_ms":598.6426207700404,"throughput_eps":0,"last_update":"2026-03-21T23:17:49.038930504Z"} +2026/03/21 23:17:53 ───────────────────────────────────────────────── +Saved state: 18 clusters, 29318 messages, reason: none +2026/03/21 23:17:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:17:58 [detection_layer] {"stage_name":"detection_layer","events_processed":624,"events_dropped":0,"avg_latency_ms":19.446959703019278,"throughput_eps":0,"last_update":"2026-03-21T23:17:53.966035875Z"} +2026/03/21 23:17:58 [log_collector] {"stage_name":"log_collector","events_processed":29322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5864.4,"last_update":"2026-03-21T23:17:58.869400216Z"} +2026/03/21 23:17:58 [metric_collector] {"stage_name":"metric_collector","events_processed":18724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3744.8,"last_update":"2026-03-21T23:17:53.87060234Z"} +2026/03/21 23:17:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:17:53.879877352Z"} +2026/03/21 23:17:58 [transform_engine] {"stage_name":"transform_engine","events_processed":624,"events_dropped":0,"avg_latency_ms":598.6426207700404,"throughput_eps":0,"last_update":"2026-03-21T23:17:53.96615314Z"} +2026/03/21 23:17:58 ───────────────────────────────────────────────── +2026/03/21 23:18:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:18:03 [detection_layer] {"stage_name":"detection_layer","events_processed":624,"events_dropped":0,"avg_latency_ms":19.446959703019278,"throughput_eps":0,"last_update":"2026-03-21T23:17:58.96573099Z"} +2026/03/21 23:18:03 [log_collector] {"stage_name":"log_collector","events_processed":29322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5864.4,"last_update":"2026-03-21T23:17:58.869400216Z"} +2026/03/21 23:18:03 [metric_collector] {"stage_name":"metric_collector","events_processed":18729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3745.8,"last_update":"2026-03-21T23:17:58.869787719Z"} +2026/03/21 23:18:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:17:58.877231283Z"} +2026/03/21 23:18:03 [transform_engine] {"stage_name":"transform_engine","events_processed":624,"events_dropped":0,"avg_latency_ms":598.6426207700404,"throughput_eps":0,"last_update":"2026-03-21T23:17:58.965741711Z"} +2026/03/21 23:18:03 ───────────────────────────────────────────────── +2026/03/21 23:18:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:18:08 [metric_collector] {"stage_name":"metric_collector","events_processed":18734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3746.8,"last_update":"2026-03-21T23:18:03.869688062Z"} +2026/03/21 23:18:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7496,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:18:03.876782597Z"} +2026/03/21 23:18:08 [transform_engine] {"stage_name":"transform_engine","events_processed":624,"events_dropped":0,"avg_latency_ms":598.6426207700404,"throughput_eps":0,"last_update":"2026-03-21T23:18:03.96604768Z"} +2026/03/21 23:18:08 [detection_layer] {"stage_name":"detection_layer","events_processed":624,"events_dropped":0,"avg_latency_ms":19.446959703019278,"throughput_eps":0,"last_update":"2026-03-21T23:18:03.966004056Z"} +2026/03/21 23:18:08 [log_collector] {"stage_name":"log_collector","events_processed":29322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5864.4,"last_update":"2026-03-21T23:18:08.869402702Z"} +2026/03/21 23:18:08 ───────────────────────────────────────────────── +2026/03/21 23:18:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:18:13 [log_collector] {"stage_name":"log_collector","events_processed":29322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5864.4,"last_update":"2026-03-21T23:18:08.869402702Z"} +2026/03/21 23:18:13 [metric_collector] {"stage_name":"metric_collector","events_processed":18739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3747.8,"last_update":"2026-03-21T23:18:08.869687809Z"} +2026/03/21 23:18:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7498,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:18:08.879287182Z"} +2026/03/21 23:18:13 [transform_engine] {"stage_name":"transform_engine","events_processed":624,"events_dropped":0,"avg_latency_ms":598.6426207700404,"throughput_eps":0,"last_update":"2026-03-21T23:18:08.965477727Z"} +2026/03/21 23:18:13 [detection_layer] {"stage_name":"detection_layer","events_processed":624,"events_dropped":0,"avg_latency_ms":19.446959703019278,"throughput_eps":0,"last_update":"2026-03-21T23:18:08.965502314Z"} +2026/03/21 23:18:13 ───────────────────────────────────────────────── +2026/03/21 23:18:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:18:18 [log_collector] {"stage_name":"log_collector","events_processed":29322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5864.4,"last_update":"2026-03-21T23:18:18.869418743Z"} +2026/03/21 23:18:18 [metric_collector] {"stage_name":"metric_collector","events_processed":18744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3748.8,"last_update":"2026-03-21T23:18:13.870008625Z"} +2026/03/21 23:18:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:18:13.876800562Z"} +2026/03/21 23:18:18 [transform_engine] {"stage_name":"transform_engine","events_processed":624,"events_dropped":0,"avg_latency_ms":598.6426207700404,"throughput_eps":0,"last_update":"2026-03-21T23:18:13.966001292Z"} +2026/03/21 23:18:18 [detection_layer] {"stage_name":"detection_layer","events_processed":624,"events_dropped":0,"avg_latency_ms":19.446959703019278,"throughput_eps":0,"last_update":"2026-03-21T23:18:13.965947669Z"} +2026/03/21 23:18:18 ───────────────────────────────────────────────── +2026/03/21 23:18:20 [ANOMALY] time=2026-03-21T23:18:20Z score=0.8768 method=SEAD details=MAD!:w=0.25,s=0.82 RRCF-fast!:w=0.21,s=0.84 RRCF-mid!:w=0.17,s=0.87 RRCF-slow!:w=0.14,s=0.91 COPOD!:w=0.24,s=0.96 +2026/03/21 23:18:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:18:23 [detection_layer] {"stage_name":"detection_layer","events_processed":624,"events_dropped":0,"avg_latency_ms":19.446959703019278,"throughput_eps":0,"last_update":"2026-03-21T23:18:18.965770075Z"} +2026/03/21 23:18:23 [log_collector] {"stage_name":"log_collector","events_processed":29322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5864.4,"last_update":"2026-03-21T23:18:18.869418743Z"} +2026/03/21 23:18:23 [metric_collector] {"stage_name":"metric_collector","events_processed":18749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3749.8,"last_update":"2026-03-21T23:18:18.869818527Z"} +2026/03/21 23:18:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:18:18.881039747Z"} +2026/03/21 23:18:23 [transform_engine] {"stage_name":"transform_engine","events_processed":625,"events_dropped":0,"avg_latency_ms":743.1555460160323,"throughput_eps":0,"last_update":"2026-03-21T23:18:20.286367154Z"} +2026/03/21 23:18:23 ───────────────────────────────────────────────── +2026/03/21 23:18:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:18:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:18:23.876410742Z"} +2026/03/21 23:18:28 [transform_engine] {"stage_name":"transform_engine","events_processed":625,"events_dropped":0,"avg_latency_ms":743.1555460160323,"throughput_eps":0,"last_update":"2026-03-21T23:18:23.965945473Z"} +2026/03/21 23:18:28 [detection_layer] {"stage_name":"detection_layer","events_processed":625,"events_dropped":0,"avg_latency_ms":17.856882962415423,"throughput_eps":0,"last_update":"2026-03-21T23:18:23.965935423Z"} +2026/03/21 23:18:28 [log_collector] {"stage_name":"log_collector","events_processed":29322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5864.4,"last_update":"2026-03-21T23:18:23.870004003Z"} +2026/03/21 23:18:28 [metric_collector] {"stage_name":"metric_collector","events_processed":18754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3750.8,"last_update":"2026-03-21T23:18:23.869775836Z"} +2026/03/21 23:18:28 ───────────────────────────────────────────────── +2026/03/21 23:18:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:18:33 [detection_layer] {"stage_name":"detection_layer","events_processed":625,"events_dropped":0,"avg_latency_ms":17.856882962415423,"throughput_eps":0,"last_update":"2026-03-21T23:18:28.965510514Z"} +2026/03/21 23:18:33 [log_collector] {"stage_name":"log_collector","events_processed":29322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5864.4,"last_update":"2026-03-21T23:18:28.870335503Z"} +2026/03/21 23:18:33 [metric_collector] {"stage_name":"metric_collector","events_processed":18759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3751.8,"last_update":"2026-03-21T23:18:28.870644575Z"} +2026/03/21 23:18:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7506,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:18:28.877258221Z"} +2026/03/21 23:18:33 [transform_engine] {"stage_name":"transform_engine","events_processed":625,"events_dropped":0,"avg_latency_ms":743.1555460160323,"throughput_eps":0,"last_update":"2026-03-21T23:18:28.965523981Z"} +2026/03/21 23:18:33 ───────────────────────────────────────────────── +2026/03/21 23:18:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:18:38 [log_collector] {"stage_name":"log_collector","events_processed":29322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5864.4,"last_update":"2026-03-21T23:18:33.86996346Z"} +2026/03/21 23:18:38 [metric_collector] {"stage_name":"metric_collector","events_processed":18764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3752.8,"last_update":"2026-03-21T23:18:33.870011091Z"} +2026/03/21 23:18:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:18:33.884024818Z"} +2026/03/21 23:18:38 [transform_engine] {"stage_name":"transform_engine","events_processed":625,"events_dropped":0,"avg_latency_ms":743.1555460160323,"throughput_eps":0,"last_update":"2026-03-21T23:18:33.965109136Z"} +2026/03/21 23:18:38 [detection_layer] {"stage_name":"detection_layer","events_processed":625,"events_dropped":0,"avg_latency_ms":17.856882962415423,"throughput_eps":0,"last_update":"2026-03-21T23:18:33.966214262Z"} +2026/03/21 23:18:38 ───────────────────────────────────────────────── +2026/03/21 23:18:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:18:43 [transform_engine] {"stage_name":"transform_engine","events_processed":625,"events_dropped":0,"avg_latency_ms":743.1555460160323,"throughput_eps":0,"last_update":"2026-03-21T23:18:38.966160853Z"} +2026/03/21 23:18:43 [detection_layer] {"stage_name":"detection_layer","events_processed":625,"events_dropped":0,"avg_latency_ms":17.856882962415423,"throughput_eps":0,"last_update":"2026-03-21T23:18:38.966140804Z"} +2026/03/21 23:18:43 [log_collector] {"stage_name":"log_collector","events_processed":29331,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5866.2,"last_update":"2026-03-21T23:18:38.870510521Z"} +2026/03/21 23:18:43 [metric_collector] {"stage_name":"metric_collector","events_processed":18769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3753.8,"last_update":"2026-03-21T23:18:38.870762774Z"} +2026/03/21 23:18:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:18:38.876791188Z"} +2026/03/21 23:18:43 ───────────────────────────────────────────────── +2026/03/21 23:18:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:18:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7512,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:18:43.879284499Z"} +2026/03/21 23:18:48 [transform_engine] {"stage_name":"transform_engine","events_processed":625,"events_dropped":0,"avg_latency_ms":743.1555460160323,"throughput_eps":0,"last_update":"2026-03-21T23:18:43.965892386Z"} +2026/03/21 23:18:48 [detection_layer] {"stage_name":"detection_layer","events_processed":625,"events_dropped":0,"avg_latency_ms":17.856882962415423,"throughput_eps":0,"last_update":"2026-03-21T23:18:43.96586871Z"} +2026/03/21 23:18:48 [log_collector] {"stage_name":"log_collector","events_processed":29336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5867.2,"last_update":"2026-03-21T23:18:43.869400892Z"} +2026/03/21 23:18:48 [metric_collector] {"stage_name":"metric_collector","events_processed":18774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3754.8,"last_update":"2026-03-21T23:18:43.869725133Z"} +2026/03/21 23:18:48 ───────────────────────────────────────────────── +2026/03/21 23:18:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:18:53 [transform_engine] {"stage_name":"transform_engine","events_processed":626,"events_dropped":0,"avg_latency_ms":1050.458164412826,"throughput_eps":0,"last_update":"2026-03-21T23:18:51.245457418Z"} +2026/03/21 23:18:53 [detection_layer] {"stage_name":"detection_layer","events_processed":625,"events_dropped":0,"avg_latency_ms":17.856882962415423,"throughput_eps":0,"last_update":"2026-03-21T23:18:48.965795692Z"} +2026/03/21 23:18:53 [log_collector] {"stage_name":"log_collector","events_processed":29602,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5920.4,"last_update":"2026-03-21T23:18:48.869713533Z"} +2026/03/21 23:18:53 [metric_collector] {"stage_name":"metric_collector","events_processed":18779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3755.8,"last_update":"2026-03-21T23:18:48.869869091Z"} +2026/03/21 23:18:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:18:48.877275243Z"} +2026/03/21 23:18:53 ───────────────────────────────────────────────── +2026/03/21 23:18:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:18:58 [log_collector] {"stage_name":"log_collector","events_processed":29682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5936.4,"last_update":"2026-03-21T23:18:58.869498979Z"} +2026/03/21 23:18:58 [metric_collector] {"stage_name":"metric_collector","events_processed":18784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3756.8,"last_update":"2026-03-21T23:18:53.870009562Z"} +2026/03/21 23:18:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:18:53.878267746Z"} +2026/03/21 23:18:58 [transform_engine] {"stage_name":"transform_engine","events_processed":626,"events_dropped":0,"avg_latency_ms":1050.458164412826,"throughput_eps":0,"last_update":"2026-03-21T23:18:53.965612564Z"} +2026/03/21 23:18:58 [detection_layer] {"stage_name":"detection_layer","events_processed":626,"events_dropped":0,"avg_latency_ms":18.520492369932338,"throughput_eps":0,"last_update":"2026-03-21T23:18:53.965649715Z"} +2026/03/21 23:18:58 ───────────────────────────────────────────────── +2026/03/21 23:19:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:19:03 [log_collector] {"stage_name":"log_collector","events_processed":29682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5936.4,"last_update":"2026-03-21T23:18:58.869498979Z"} +2026/03/21 23:19:03 [metric_collector] {"stage_name":"metric_collector","events_processed":18789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3757.8,"last_update":"2026-03-21T23:18:58.870092406Z"} +2026/03/21 23:19:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:18:58.877805436Z"} +2026/03/21 23:19:03 [transform_engine] {"stage_name":"transform_engine","events_processed":626,"events_dropped":0,"avg_latency_ms":1050.458164412826,"throughput_eps":0,"last_update":"2026-03-21T23:18:58.966196408Z"} +2026/03/21 23:19:03 [detection_layer] {"stage_name":"detection_layer","events_processed":626,"events_dropped":0,"avg_latency_ms":18.520492369932338,"throughput_eps":0,"last_update":"2026-03-21T23:18:58.966155329Z"} +2026/03/21 23:19:03 ───────────────────────────────────────────────── +2026/03/21 23:19:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:19:08 [log_collector] {"stage_name":"log_collector","events_processed":29682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5936.4,"last_update":"2026-03-21T23:19:03.871499591Z"} +2026/03/21 23:19:08 [metric_collector] {"stage_name":"metric_collector","events_processed":18794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3758.8,"last_update":"2026-03-21T23:19:03.871712208Z"} +2026/03/21 23:19:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7520,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:19:03.882319532Z"} +2026/03/21 23:19:08 [transform_engine] {"stage_name":"transform_engine","events_processed":626,"events_dropped":0,"avg_latency_ms":1050.458164412826,"throughput_eps":0,"last_update":"2026-03-21T23:19:03.965471189Z"} +2026/03/21 23:19:08 [detection_layer] {"stage_name":"detection_layer","events_processed":626,"events_dropped":0,"avg_latency_ms":18.520492369932338,"throughput_eps":0,"last_update":"2026-03-21T23:19:03.965577654Z"} +2026/03/21 23:19:08 ───────────────────────────────────────────────── +2026/03/21 23:19:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:19:13 [metric_collector] {"stage_name":"metric_collector","events_processed":18799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3759.8,"last_update":"2026-03-21T23:19:08.869753108Z"} +2026/03/21 23:19:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7522,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:19:08.878220744Z"} +2026/03/21 23:19:13 [transform_engine] {"stage_name":"transform_engine","events_processed":626,"events_dropped":0,"avg_latency_ms":1050.458164412826,"throughput_eps":0,"last_update":"2026-03-21T23:19:08.965989705Z"} +2026/03/21 23:19:13 [detection_layer] {"stage_name":"detection_layer","events_processed":626,"events_dropped":0,"avg_latency_ms":18.520492369932338,"throughput_eps":0,"last_update":"2026-03-21T23:19:08.965961902Z"} +2026/03/21 23:19:13 [log_collector] {"stage_name":"log_collector","events_processed":29682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5936.4,"last_update":"2026-03-21T23:19:08.869582552Z"} +2026/03/21 23:19:13 ───────────────────────────────────────────────── +2026/03/21 23:19:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:19:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:19:13.879193702Z"} +2026/03/21 23:19:18 [transform_engine] {"stage_name":"transform_engine","events_processed":626,"events_dropped":0,"avg_latency_ms":1050.458164412826,"throughput_eps":0,"last_update":"2026-03-21T23:19:13.965556902Z"} +2026/03/21 23:19:18 [detection_layer] {"stage_name":"detection_layer","events_processed":626,"events_dropped":0,"avg_latency_ms":18.520492369932338,"throughput_eps":0,"last_update":"2026-03-21T23:19:13.965606767Z"} +2026/03/21 23:19:18 [log_collector] {"stage_name":"log_collector","events_processed":29682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5936.4,"last_update":"2026-03-21T23:19:18.869742801Z"} +2026/03/21 23:19:18 [metric_collector] {"stage_name":"metric_collector","events_processed":18804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3760.8,"last_update":"2026-03-21T23:19:13.870637106Z"} +2026/03/21 23:19:18 ───────────────────────────────────────────────── +2026/03/21 23:19:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:19:23 [detection_layer] {"stage_name":"detection_layer","events_processed":626,"events_dropped":0,"avg_latency_ms":18.520492369932338,"throughput_eps":0,"last_update":"2026-03-21T23:19:18.96607444Z"} +2026/03/21 23:19:23 [log_collector] {"stage_name":"log_collector","events_processed":29682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5936.4,"last_update":"2026-03-21T23:19:23.869580168Z"} +2026/03/21 23:19:23 [metric_collector] {"stage_name":"metric_collector","events_processed":18809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3761.8,"last_update":"2026-03-21T23:19:18.87018608Z"} +2026/03/21 23:19:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7526,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:19:18.878617435Z"} +2026/03/21 23:19:23 [transform_engine] {"stage_name":"transform_engine","events_processed":627,"events_dropped":0,"avg_latency_ms":865.1350121302607,"throughput_eps":0,"last_update":"2026-03-21T23:19:19.089810279Z"} +2026/03/21 23:19:23 ───────────────────────────────────────────────── +2026/03/21 23:19:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:19:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:19:23.877606549Z"} +2026/03/21 23:19:28 [transform_engine] {"stage_name":"transform_engine","events_processed":627,"events_dropped":0,"avg_latency_ms":865.1350121302607,"throughput_eps":0,"last_update":"2026-03-21T23:19:23.96595516Z"} +2026/03/21 23:19:28 [detection_layer] {"stage_name":"detection_layer","events_processed":627,"events_dropped":0,"avg_latency_ms":19.35922969594587,"throughput_eps":0,"last_update":"2026-03-21T23:19:23.96600189Z"} +2026/03/21 23:19:28 [log_collector] {"stage_name":"log_collector","events_processed":29682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5936.4,"last_update":"2026-03-21T23:19:28.869919591Z"} +2026/03/21 23:19:28 [metric_collector] {"stage_name":"metric_collector","events_processed":18814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3762.8,"last_update":"2026-03-21T23:19:23.870147684Z"} +2026/03/21 23:19:28 ───────────────────────────────────────────────── +2026/03/21 23:19:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:19:33 [log_collector] {"stage_name":"log_collector","events_processed":29682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5936.4,"last_update":"2026-03-21T23:19:28.869919591Z"} +2026/03/21 23:19:33 [metric_collector] {"stage_name":"metric_collector","events_processed":18819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3763.8,"last_update":"2026-03-21T23:19:28.870548735Z"} +2026/03/21 23:19:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:19:28.878724663Z"} +2026/03/21 23:19:33 [transform_engine] {"stage_name":"transform_engine","events_processed":627,"events_dropped":0,"avg_latency_ms":865.1350121302607,"throughput_eps":0,"last_update":"2026-03-21T23:19:28.965928692Z"} +2026/03/21 23:19:33 [detection_layer] {"stage_name":"detection_layer","events_processed":627,"events_dropped":0,"avg_latency_ms":19.35922969594587,"throughput_eps":0,"last_update":"2026-03-21T23:19:28.9659121Z"} +2026/03/21 23:19:33 ───────────────────────────────────────────────── +2026/03/21 23:19:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:19:38 [transform_engine] {"stage_name":"transform_engine","events_processed":627,"events_dropped":0,"avg_latency_ms":865.1350121302607,"throughput_eps":0,"last_update":"2026-03-21T23:19:33.965746978Z"} +2026/03/21 23:19:38 [detection_layer] {"stage_name":"detection_layer","events_processed":627,"events_dropped":0,"avg_latency_ms":19.35922969594587,"throughput_eps":0,"last_update":"2026-03-21T23:19:33.965769561Z"} +2026/03/21 23:19:38 [log_collector] {"stage_name":"log_collector","events_processed":29682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5936.4,"last_update":"2026-03-21T23:19:33.869424916Z"} +2026/03/21 23:19:38 [metric_collector] {"stage_name":"metric_collector","events_processed":18824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3764.8,"last_update":"2026-03-21T23:19:33.869675586Z"} +2026/03/21 23:19:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7532,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:19:33.87944775Z"} +2026/03/21 23:19:38 ───────────────────────────────────────────────── +2026/03/21 23:19:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:19:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:19:38.878749859Z"} +2026/03/21 23:19:43 [transform_engine] {"stage_name":"transform_engine","events_processed":627,"events_dropped":0,"avg_latency_ms":865.1350121302607,"throughput_eps":0,"last_update":"2026-03-21T23:19:38.965956123Z"} +2026/03/21 23:19:43 [detection_layer] {"stage_name":"detection_layer","events_processed":627,"events_dropped":0,"avg_latency_ms":19.35922969594587,"throughput_eps":0,"last_update":"2026-03-21T23:19:38.965996892Z"} +2026/03/21 23:19:43 [log_collector] {"stage_name":"log_collector","events_processed":29682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5936.4,"last_update":"2026-03-21T23:19:43.869783315Z"} +2026/03/21 23:19:43 [metric_collector] {"stage_name":"metric_collector","events_processed":18829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3765.8,"last_update":"2026-03-21T23:19:38.869715458Z"} +2026/03/21 23:19:43 ───────────────────────────────────────────────── +2026/03/21 23:19:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:19:48 [log_collector] {"stage_name":"log_collector","events_processed":29682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5936.4,"last_update":"2026-03-21T23:19:48.870019847Z"} +2026/03/21 23:19:48 [metric_collector] {"stage_name":"metric_collector","events_processed":18834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3766.8,"last_update":"2026-03-21T23:19:43.870170007Z"} +2026/03/21 23:19:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7536,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:19:43.879069769Z"} +2026/03/21 23:19:48 [transform_engine] {"stage_name":"transform_engine","events_processed":627,"events_dropped":0,"avg_latency_ms":865.1350121302607,"throughput_eps":0,"last_update":"2026-03-21T23:19:43.965383215Z"} +2026/03/21 23:19:48 [detection_layer] {"stage_name":"detection_layer","events_processed":627,"events_dropped":0,"avg_latency_ms":19.35922969594587,"throughput_eps":0,"last_update":"2026-03-21T23:19:43.96532853Z"} +2026/03/21 23:19:48 ───────────────────────────────────────────────── +2026/03/21 23:19:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:19:53 [log_collector] {"stage_name":"log_collector","events_processed":29682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5936.4,"last_update":"2026-03-21T23:19:48.870019847Z"} +2026/03/21 23:19:53 [metric_collector] {"stage_name":"metric_collector","events_processed":18839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3767.8,"last_update":"2026-03-21T23:19:48.8706636Z"} +2026/03/21 23:19:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:19:48.879029321Z"} +2026/03/21 23:19:53 [transform_engine] {"stage_name":"transform_engine","events_processed":628,"events_dropped":0,"avg_latency_ms":707.1169767042086,"throughput_eps":0,"last_update":"2026-03-21T23:19:49.040182088Z"} +2026/03/21 23:19:53 [detection_layer] {"stage_name":"detection_layer","events_processed":627,"events_dropped":0,"avg_latency_ms":19.35922969594587,"throughput_eps":0,"last_update":"2026-03-21T23:19:48.966251607Z"} +2026/03/21 23:19:53 ───────────────────────────────────────────────── +2026/03/21 23:19:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:19:58 [log_collector] {"stage_name":"log_collector","events_processed":29682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5936.4,"last_update":"2026-03-21T23:19:58.869997049Z"} +2026/03/21 23:19:58 [metric_collector] {"stage_name":"metric_collector","events_processed":18844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3768.8,"last_update":"2026-03-21T23:19:53.870386532Z"} +2026/03/21 23:19:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7540,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:19:53.879966128Z"} +2026/03/21 23:19:58 [transform_engine] {"stage_name":"transform_engine","events_processed":628,"events_dropped":0,"avg_latency_ms":707.1169767042086,"throughput_eps":0,"last_update":"2026-03-21T23:19:53.965132706Z"} +2026/03/21 23:19:58 [detection_layer] {"stage_name":"detection_layer","events_processed":628,"events_dropped":0,"avg_latency_ms":19.6034761567567,"throughput_eps":0,"last_update":"2026-03-21T23:19:53.965304576Z"} +2026/03/21 23:19:58 ───────────────────────────────────────────────── +2026/03/21 23:20:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:20:03 [log_collector] {"stage_name":"log_collector","events_processed":29682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5936.4,"last_update":"2026-03-21T23:19:58.869997049Z"} +2026/03/21 23:20:03 [metric_collector] {"stage_name":"metric_collector","events_processed":18849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3769.8,"last_update":"2026-03-21T23:19:58.870874029Z"} +2026/03/21 23:20:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7542,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:19:58.878598582Z"} +2026/03/21 23:20:03 [transform_engine] {"stage_name":"transform_engine","events_processed":628,"events_dropped":0,"avg_latency_ms":707.1169767042086,"throughput_eps":0,"last_update":"2026-03-21T23:19:58.96592583Z"} +2026/03/21 23:20:03 [detection_layer] {"stage_name":"detection_layer","events_processed":628,"events_dropped":0,"avg_latency_ms":19.6034761567567,"throughput_eps":0,"last_update":"2026-03-21T23:19:58.965817662Z"} +2026/03/21 23:20:03 ───────────────────────────────────────────────── +2026/03/21 23:20:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:20:08 [transform_engine] {"stage_name":"transform_engine","events_processed":628,"events_dropped":0,"avg_latency_ms":707.1169767042086,"throughput_eps":0,"last_update":"2026-03-21T23:20:03.965372655Z"} +2026/03/21 23:20:08 [detection_layer] {"stage_name":"detection_layer","events_processed":628,"events_dropped":0,"avg_latency_ms":19.6034761567567,"throughput_eps":0,"last_update":"2026-03-21T23:20:03.965397954Z"} +2026/03/21 23:20:08 [log_collector] {"stage_name":"log_collector","events_processed":29682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5936.4,"last_update":"2026-03-21T23:20:03.86994769Z"} +2026/03/21 23:20:08 [metric_collector] {"stage_name":"metric_collector","events_processed":18854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3770.8,"last_update":"2026-03-21T23:20:03.870275187Z"} +2026/03/21 23:20:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:20:03.888139759Z"} +2026/03/21 23:20:08 ───────────────────────────────────────────────── +2026/03/21 23:20:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:20:13 [log_collector] {"stage_name":"log_collector","events_processed":29682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5936.4,"last_update":"2026-03-21T23:20:08.869646078Z"} +2026/03/21 23:20:13 [metric_collector] {"stage_name":"metric_collector","events_processed":18859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3771.8,"last_update":"2026-03-21T23:20:08.869854657Z"} +2026/03/21 23:20:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:20:08.876980655Z"} +2026/03/21 23:20:13 [transform_engine] {"stage_name":"transform_engine","events_processed":628,"events_dropped":0,"avg_latency_ms":707.1169767042086,"throughput_eps":0,"last_update":"2026-03-21T23:20:08.965159142Z"} +2026/03/21 23:20:13 [detection_layer] {"stage_name":"detection_layer","events_processed":628,"events_dropped":0,"avg_latency_ms":19.6034761567567,"throughput_eps":0,"last_update":"2026-03-21T23:20:08.965278701Z"} +2026/03/21 23:20:13 ───────────────────────────────────────────────── +Saved state: 18 clusters, 29683 messages, reason: none +2026/03/21 23:20:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:20:18 [log_collector] {"stage_name":"log_collector","events_processed":29682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5936.4,"last_update":"2026-03-21T23:20:13.869518102Z"} +2026/03/21 23:20:18 [metric_collector] {"stage_name":"metric_collector","events_processed":18864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3772.8,"last_update":"2026-03-21T23:20:13.869906536Z"} +2026/03/21 23:20:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:20:13.878456159Z"} +2026/03/21 23:20:18 [transform_engine] {"stage_name":"transform_engine","events_processed":628,"events_dropped":0,"avg_latency_ms":707.1169767042086,"throughput_eps":0,"last_update":"2026-03-21T23:20:13.965671902Z"} +2026/03/21 23:20:18 [detection_layer] {"stage_name":"detection_layer","events_processed":628,"events_dropped":0,"avg_latency_ms":19.6034761567567,"throughput_eps":0,"last_update":"2026-03-21T23:20:13.965725004Z"} +2026/03/21 23:20:18 ───────────────────────────────────────────────── +2026/03/21 23:20:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:20:23 [log_collector] {"stage_name":"log_collector","events_processed":29685,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5937,"last_update":"2026-03-21T23:20:18.870441229Z"} +2026/03/21 23:20:23 [metric_collector] {"stage_name":"metric_collector","events_processed":18869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3773.8,"last_update":"2026-03-21T23:20:18.869587364Z"} +2026/03/21 23:20:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:20:18.879147282Z"} +2026/03/21 23:20:23 [transform_engine] {"stage_name":"transform_engine","events_processed":629,"events_dropped":0,"avg_latency_ms":902.9043179633669,"throughput_eps":0,"last_update":"2026-03-21T23:20:20.651532605Z"} +2026/03/21 23:20:23 [detection_layer] {"stage_name":"detection_layer","events_processed":628,"events_dropped":0,"avg_latency_ms":19.6034761567567,"throughput_eps":0,"last_update":"2026-03-21T23:20:18.965518429Z"} +2026/03/21 23:20:23 ───────────────────────────────────────────────── +2026/03/21 23:20:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:20:28 [metric_collector] {"stage_name":"metric_collector","events_processed":18874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3774.8,"last_update":"2026-03-21T23:20:23.869974955Z"} +2026/03/21 23:20:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:20:23.876723569Z"} +2026/03/21 23:20:28 [transform_engine] {"stage_name":"transform_engine","events_processed":629,"events_dropped":0,"avg_latency_ms":902.9043179633669,"throughput_eps":0,"last_update":"2026-03-21T23:20:23.966037382Z"} +2026/03/21 23:20:28 [detection_layer] {"stage_name":"detection_layer","events_processed":629,"events_dropped":0,"avg_latency_ms":18.79553232540536,"throughput_eps":0,"last_update":"2026-03-21T23:20:23.966027914Z"} +2026/03/21 23:20:28 [log_collector] {"stage_name":"log_collector","events_processed":29695,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5939,"last_update":"2026-03-21T23:20:23.869603454Z"} +2026/03/21 23:20:28 ───────────────────────────────────────────────── +2026/03/21 23:20:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:20:33 [detection_layer] {"stage_name":"detection_layer","events_processed":629,"events_dropped":0,"avg_latency_ms":18.79553232540536,"throughput_eps":0,"last_update":"2026-03-21T23:20:28.966010491Z"} +2026/03/21 23:20:33 [log_collector] {"stage_name":"log_collector","events_processed":29696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5939.2,"last_update":"2026-03-21T23:20:28.869669522Z"} +2026/03/21 23:20:33 [metric_collector] {"stage_name":"metric_collector","events_processed":18884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3776.8,"last_update":"2026-03-21T23:20:33.869814162Z"} +2026/03/21 23:20:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:20:28.878754711Z"} +2026/03/21 23:20:33 [transform_engine] {"stage_name":"transform_engine","events_processed":629,"events_dropped":0,"avg_latency_ms":902.9043179633669,"throughput_eps":0,"last_update":"2026-03-21T23:20:28.966027755Z"} +2026/03/21 23:20:33 ───────────────────────────────────────────────── +2026/03/21 23:20:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:20:38 [detection_layer] {"stage_name":"detection_layer","events_processed":629,"events_dropped":0,"avg_latency_ms":18.79553232540536,"throughput_eps":0,"last_update":"2026-03-21T23:20:33.965584589Z"} +2026/03/21 23:20:38 [log_collector] {"stage_name":"log_collector","events_processed":29712,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5942.4,"last_update":"2026-03-21T23:20:33.869925755Z"} +2026/03/21 23:20:38 [metric_collector] {"stage_name":"metric_collector","events_processed":18884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3776.8,"last_update":"2026-03-21T23:20:33.869814162Z"} +2026/03/21 23:20:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:20:33.878375968Z"} +2026/03/21 23:20:38 [transform_engine] {"stage_name":"transform_engine","events_processed":629,"events_dropped":0,"avg_latency_ms":902.9043179633669,"throughput_eps":0,"last_update":"2026-03-21T23:20:33.965695903Z"} +2026/03/21 23:20:38 ───────────────────────────────────────────────── +2026/03/21 23:20:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:20:43 [detection_layer] {"stage_name":"detection_layer","events_processed":629,"events_dropped":0,"avg_latency_ms":18.79553232540536,"throughput_eps":0,"last_update":"2026-03-21T23:20:38.966286597Z"} +2026/03/21 23:20:43 [log_collector] {"stage_name":"log_collector","events_processed":29715,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5943,"last_update":"2026-03-21T23:20:38.870322367Z"} +2026/03/21 23:20:43 [metric_collector] {"stage_name":"metric_collector","events_processed":18889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3777.8,"last_update":"2026-03-21T23:20:38.870554122Z"} +2026/03/21 23:20:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:20:38.879064469Z"} +2026/03/21 23:20:43 [transform_engine] {"stage_name":"transform_engine","events_processed":629,"events_dropped":0,"avg_latency_ms":902.9043179633669,"throughput_eps":0,"last_update":"2026-03-21T23:20:38.965171391Z"} +2026/03/21 23:20:43 ───────────────────────────────────────────────── +2026/03/21 23:20:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:20:48 [detection_layer] {"stage_name":"detection_layer","events_processed":629,"events_dropped":0,"avg_latency_ms":18.79553232540536,"throughput_eps":0,"last_update":"2026-03-21T23:20:43.965873108Z"} +2026/03/21 23:20:48 [log_collector] {"stage_name":"log_collector","events_processed":29726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5945.2,"last_update":"2026-03-21T23:20:43.870155191Z"} +2026/03/21 23:20:48 [metric_collector] {"stage_name":"metric_collector","events_processed":18894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3778.8,"last_update":"2026-03-21T23:20:43.870610473Z"} +2026/03/21 23:20:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7560,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:20:43.878627676Z"} +2026/03/21 23:20:48 [transform_engine] {"stage_name":"transform_engine","events_processed":629,"events_dropped":0,"avg_latency_ms":902.9043179633669,"throughput_eps":0,"last_update":"2026-03-21T23:20:43.965834054Z"} +2026/03/21 23:20:48 ───────────────────────────────────────────────── +2026/03/21 23:20:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:20:53 [log_collector] {"stage_name":"log_collector","events_processed":29726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5945.2,"last_update":"2026-03-21T23:20:48.869863646Z"} +2026/03/21 23:20:53 [metric_collector] {"stage_name":"metric_collector","events_processed":18899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3779.8,"last_update":"2026-03-21T23:20:48.870327534Z"} +2026/03/21 23:20:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:20:48.87957251Z"} +2026/03/21 23:20:53 [transform_engine] {"stage_name":"transform_engine","events_processed":630,"events_dropped":0,"avg_latency_ms":746.9066951706935,"throughput_eps":0,"last_update":"2026-03-21T23:20:49.088805198Z"} +2026/03/21 23:20:53 [detection_layer] {"stage_name":"detection_layer","events_processed":629,"events_dropped":0,"avg_latency_ms":18.79553232540536,"throughput_eps":0,"last_update":"2026-03-21T23:20:48.96577266Z"} +2026/03/21 23:20:53 ───────────────────────────────────────────────── +2026/03/21 23:20:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:20:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:20:53.878650639Z"} +2026/03/21 23:20:58 [transform_engine] {"stage_name":"transform_engine","events_processed":630,"events_dropped":0,"avg_latency_ms":746.9066951706935,"throughput_eps":0,"last_update":"2026-03-21T23:20:53.966098579Z"} +2026/03/21 23:20:58 [detection_layer] {"stage_name":"detection_layer","events_processed":630,"events_dropped":0,"avg_latency_ms":18.61902466032429,"throughput_eps":0,"last_update":"2026-03-21T23:20:53.965982577Z"} +2026/03/21 23:20:58 [log_collector] {"stage_name":"log_collector","events_processed":29726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5945.2,"last_update":"2026-03-21T23:20:53.869786504Z"} +2026/03/21 23:20:58 [metric_collector] {"stage_name":"metric_collector","events_processed":18904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3780.8,"last_update":"2026-03-21T23:20:53.870275369Z"} +2026/03/21 23:20:58 ───────────────────────────────────────────────── +2026/03/21 23:21:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:21:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7566,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:20:58.879310497Z"} +2026/03/21 23:21:03 [transform_engine] {"stage_name":"transform_engine","events_processed":630,"events_dropped":0,"avg_latency_ms":746.9066951706935,"throughput_eps":0,"last_update":"2026-03-21T23:20:58.965719798Z"} +2026/03/21 23:21:03 [detection_layer] {"stage_name":"detection_layer","events_processed":630,"events_dropped":0,"avg_latency_ms":18.61902466032429,"throughput_eps":0,"last_update":"2026-03-21T23:20:58.965948015Z"} +2026/03/21 23:21:03 [log_collector] {"stage_name":"log_collector","events_processed":29726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5945.2,"last_update":"2026-03-21T23:20:58.870513059Z"} +2026/03/21 23:21:03 [metric_collector] {"stage_name":"metric_collector","events_processed":18909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3781.8,"last_update":"2026-03-21T23:20:58.870783026Z"} +2026/03/21 23:21:03 ───────────────────────────────────────────────── +2026/03/21 23:21:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:21:08 [transform_engine] {"stage_name":"transform_engine","events_processed":630,"events_dropped":0,"avg_latency_ms":746.9066951706935,"throughput_eps":0,"last_update":"2026-03-21T23:21:03.965887304Z"} +2026/03/21 23:21:08 [detection_layer] {"stage_name":"detection_layer","events_processed":630,"events_dropped":0,"avg_latency_ms":18.61902466032429,"throughput_eps":0,"last_update":"2026-03-21T23:21:03.965934895Z"} +2026/03/21 23:21:08 [log_collector] {"stage_name":"log_collector","events_processed":29726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5945.2,"last_update":"2026-03-21T23:21:03.869568916Z"} +2026/03/21 23:21:08 [metric_collector] {"stage_name":"metric_collector","events_processed":18914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3782.8,"last_update":"2026-03-21T23:21:03.870048915Z"} +2026/03/21 23:21:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:21:03.878569022Z"} +2026/03/21 23:21:08 ───────────────────────────────────────────────── +2026/03/21 23:21:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:21:13 [log_collector] {"stage_name":"log_collector","events_processed":29726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5945.2,"last_update":"2026-03-21T23:21:13.869476411Z"} +2026/03/21 23:21:13 [metric_collector] {"stage_name":"metric_collector","events_processed":18919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3783.8,"last_update":"2026-03-21T23:21:08.869840072Z"} +2026/03/21 23:21:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7570,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:21:08.87661673Z"} +2026/03/21 23:21:13 [transform_engine] {"stage_name":"transform_engine","events_processed":630,"events_dropped":0,"avg_latency_ms":746.9066951706935,"throughput_eps":0,"last_update":"2026-03-21T23:21:08.965922829Z"} +2026/03/21 23:21:13 [detection_layer] {"stage_name":"detection_layer","events_processed":630,"events_dropped":0,"avg_latency_ms":18.61902466032429,"throughput_eps":0,"last_update":"2026-03-21T23:21:08.966107032Z"} +2026/03/21 23:21:13 ───────────────────────────────────────────────── +2026/03/21 23:21:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:21:18 [log_collector] {"stage_name":"log_collector","events_processed":29726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5945.2,"last_update":"2026-03-21T23:21:13.869476411Z"} +2026/03/21 23:21:18 [metric_collector] {"stage_name":"metric_collector","events_processed":18924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3784.8,"last_update":"2026-03-21T23:21:13.869870025Z"} +2026/03/21 23:21:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7572,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:21:13.878512867Z"} +2026/03/21 23:21:18 [transform_engine] {"stage_name":"transform_engine","events_processed":630,"events_dropped":0,"avg_latency_ms":746.9066951706935,"throughput_eps":0,"last_update":"2026-03-21T23:21:13.965992238Z"} +2026/03/21 23:21:18 [detection_layer] {"stage_name":"detection_layer","events_processed":630,"events_dropped":0,"avg_latency_ms":18.61902466032429,"throughput_eps":0,"last_update":"2026-03-21T23:21:13.965884812Z"} +2026/03/21 23:21:18 ───────────────────────────────────────────────── +2026/03/21 23:21:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:21:23 [detection_layer] {"stage_name":"detection_layer","events_processed":630,"events_dropped":0,"avg_latency_ms":18.61902466032429,"throughput_eps":0,"last_update":"2026-03-21T23:21:18.966057148Z"} +2026/03/21 23:21:23 [log_collector] {"stage_name":"log_collector","events_processed":29726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5945.2,"last_update":"2026-03-21T23:21:23.869413531Z"} +2026/03/21 23:21:23 [metric_collector] {"stage_name":"metric_collector","events_processed":18929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3785.8,"last_update":"2026-03-21T23:21:18.869876652Z"} +2026/03/21 23:21:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:21:18.878741079Z"} +2026/03/21 23:21:23 [transform_engine] {"stage_name":"transform_engine","events_processed":631,"events_dropped":0,"avg_latency_ms":612.6890861365548,"throughput_eps":0,"last_update":"2026-03-21T23:21:19.041986109Z"} +2026/03/21 23:21:23 ───────────────────────────────────────────────── +2026/03/21 23:21:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:21:28 [detection_layer] {"stage_name":"detection_layer","events_processed":631,"events_dropped":0,"avg_latency_ms":19.29649672825943,"throughput_eps":0,"last_update":"2026-03-21T23:21:23.966342919Z"} +2026/03/21 23:21:28 [log_collector] {"stage_name":"log_collector","events_processed":29726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5945.2,"last_update":"2026-03-21T23:21:28.869872494Z"} +2026/03/21 23:21:28 [metric_collector] {"stage_name":"metric_collector","events_processed":18934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3786.8,"last_update":"2026-03-21T23:21:23.869878802Z"} +2026/03/21 23:21:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7576,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:21:23.87899496Z"} +2026/03/21 23:21:28 [transform_engine] {"stage_name":"transform_engine","events_processed":631,"events_dropped":0,"avg_latency_ms":612.6890861365548,"throughput_eps":0,"last_update":"2026-03-21T23:21:23.965163741Z"} +2026/03/21 23:21:28 ───────────────────────────────────────────────── +2026/03/21 23:21:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:21:33 [log_collector] {"stage_name":"log_collector","events_processed":29726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5945.2,"last_update":"2026-03-21T23:21:28.869872494Z"} +2026/03/21 23:21:33 [metric_collector] {"stage_name":"metric_collector","events_processed":18939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3787.8,"last_update":"2026-03-21T23:21:28.870383643Z"} +2026/03/21 23:21:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:21:28.878550314Z"} +2026/03/21 23:21:33 [transform_engine] {"stage_name":"transform_engine","events_processed":631,"events_dropped":0,"avg_latency_ms":612.6890861365548,"throughput_eps":0,"last_update":"2026-03-21T23:21:28.965842798Z"} +2026/03/21 23:21:33 [detection_layer] {"stage_name":"detection_layer","events_processed":631,"events_dropped":0,"avg_latency_ms":19.29649672825943,"throughput_eps":0,"last_update":"2026-03-21T23:21:28.965827839Z"} +2026/03/21 23:21:33 ───────────────────────────────────────────────── +2026/03/21 23:21:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:21:38 [log_collector] {"stage_name":"log_collector","events_processed":29726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5945.2,"last_update":"2026-03-21T23:21:33.869601551Z"} +2026/03/21 23:21:38 [metric_collector] {"stage_name":"metric_collector","events_processed":18944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3788.8,"last_update":"2026-03-21T23:21:33.870214435Z"} +2026/03/21 23:21:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7580,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:21:33.878386706Z"} +2026/03/21 23:21:38 [transform_engine] {"stage_name":"transform_engine","events_processed":631,"events_dropped":0,"avg_latency_ms":612.6890861365548,"throughput_eps":0,"last_update":"2026-03-21T23:21:33.965576463Z"} +2026/03/21 23:21:38 [detection_layer] {"stage_name":"detection_layer","events_processed":631,"events_dropped":0,"avg_latency_ms":19.29649672825943,"throughput_eps":0,"last_update":"2026-03-21T23:21:33.965568718Z"} +2026/03/21 23:21:38 ───────────────────────────────────────────────── +Saved state: 18 clusters, 29727 messages, reason: none +2026/03/21 23:21:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:21:43 [metric_collector] {"stage_name":"metric_collector","events_processed":18949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3789.8,"last_update":"2026-03-21T23:21:38.869869138Z"} +2026/03/21 23:21:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:21:38.8793995Z"} +2026/03/21 23:21:43 [transform_engine] {"stage_name":"transform_engine","events_processed":631,"events_dropped":0,"avg_latency_ms":612.6890861365548,"throughput_eps":0,"last_update":"2026-03-21T23:21:38.966052317Z"} +2026/03/21 23:21:43 [detection_layer] {"stage_name":"detection_layer","events_processed":631,"events_dropped":0,"avg_latency_ms":19.29649672825943,"throughput_eps":0,"last_update":"2026-03-21T23:21:38.966041046Z"} +2026/03/21 23:21:43 [log_collector] {"stage_name":"log_collector","events_processed":29726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5945.2,"last_update":"2026-03-21T23:21:38.869453452Z"} +2026/03/21 23:21:43 ───────────────────────────────────────────────── +2026/03/21 23:21:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:21:48 [metric_collector] {"stage_name":"metric_collector","events_processed":18954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3790.8,"last_update":"2026-03-21T23:21:43.869907355Z"} +2026/03/21 23:21:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:21:43.880894767Z"} +2026/03/21 23:21:48 [transform_engine] {"stage_name":"transform_engine","events_processed":631,"events_dropped":0,"avg_latency_ms":612.6890861365548,"throughput_eps":0,"last_update":"2026-03-21T23:21:43.965063409Z"} +2026/03/21 23:21:48 [detection_layer] {"stage_name":"detection_layer","events_processed":631,"events_dropped":0,"avg_latency_ms":19.29649672825943,"throughput_eps":0,"last_update":"2026-03-21T23:21:43.966234572Z"} +2026/03/21 23:21:48 [log_collector] {"stage_name":"log_collector","events_processed":29731,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5946.2,"last_update":"2026-03-21T23:21:43.869916663Z"} +2026/03/21 23:21:48 ───────────────────────────────────────────────── +2026/03/21 23:21:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:21:53 [transform_engine] {"stage_name":"transform_engine","events_processed":631,"events_dropped":0,"avg_latency_ms":612.6890861365548,"throughput_eps":0,"last_update":"2026-03-21T23:21:43.965063409Z"} +2026/03/21 23:21:53 [detection_layer] {"stage_name":"detection_layer","events_processed":631,"events_dropped":0,"avg_latency_ms":19.29649672825943,"throughput_eps":0,"last_update":"2026-03-21T23:21:48.965976131Z"} +2026/03/21 23:21:53 [log_collector] {"stage_name":"log_collector","events_processed":29731,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5946.2,"last_update":"2026-03-21T23:21:53.869704183Z"} +2026/03/21 23:21:53 [metric_collector] {"stage_name":"metric_collector","events_processed":18959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3791.8,"last_update":"2026-03-21T23:21:48.869648874Z"} +2026/03/21 23:21:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7586,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:21:48.877514648Z"} +2026/03/21 23:21:53 ───────────────────────────────────────────────── +2026/03/21 23:21:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:21:58 [log_collector] {"stage_name":"log_collector","events_processed":29731,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5946.2,"last_update":"2026-03-21T23:21:53.869704183Z"} +2026/03/21 23:21:58 [metric_collector] {"stage_name":"metric_collector","events_processed":18964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3792.8,"last_update":"2026-03-21T23:21:53.87020393Z"} +2026/03/21 23:21:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7588,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:21:53.876543Z"} +2026/03/21 23:21:58 [transform_engine] {"stage_name":"transform_engine","events_processed":632,"events_dropped":0,"avg_latency_ms":1519.2042111092442,"throughput_eps":0,"last_update":"2026-03-21T23:21:54.11126606Z"} +2026/03/21 23:21:58 [detection_layer] {"stage_name":"detection_layer","events_processed":631,"events_dropped":0,"avg_latency_ms":19.29649672825943,"throughput_eps":0,"last_update":"2026-03-21T23:21:53.965751995Z"} +2026/03/21 23:21:58 ───────────────────────────────────────────────── +2026/03/21 23:22:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:22:03 [log_collector] {"stage_name":"log_collector","events_processed":29731,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5946.2,"last_update":"2026-03-21T23:21:58.869403409Z"} +2026/03/21 23:22:03 [metric_collector] {"stage_name":"metric_collector","events_processed":18969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3793.8,"last_update":"2026-03-21T23:21:58.870084423Z"} +2026/03/21 23:22:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:21:58.877053701Z"} +2026/03/21 23:22:03 [transform_engine] {"stage_name":"transform_engine","events_processed":632,"events_dropped":0,"avg_latency_ms":1519.2042111092442,"throughput_eps":0,"last_update":"2026-03-21T23:21:58.965130707Z"} +2026/03/21 23:22:03 [detection_layer] {"stage_name":"detection_layer","events_processed":632,"events_dropped":0,"avg_latency_ms":18.281813182607547,"throughput_eps":0,"last_update":"2026-03-21T23:21:58.966207069Z"} +2026/03/21 23:22:03 ───────────────────────────────────────────────── +2026/03/21 23:22:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:22:08 [log_collector] {"stage_name":"log_collector","events_processed":29731,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5946.2,"last_update":"2026-03-21T23:22:03.869489645Z"} +2026/03/21 23:22:08 [metric_collector] {"stage_name":"metric_collector","events_processed":18974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3794.8,"last_update":"2026-03-21T23:22:03.869866527Z"} +2026/03/21 23:22:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7592,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:22:03.87568483Z"} +2026/03/21 23:22:08 [transform_engine] {"stage_name":"transform_engine","events_processed":632,"events_dropped":0,"avg_latency_ms":1519.2042111092442,"throughput_eps":0,"last_update":"2026-03-21T23:22:03.965880145Z"} +2026/03/21 23:22:08 [detection_layer] {"stage_name":"detection_layer","events_processed":632,"events_dropped":0,"avg_latency_ms":18.281813182607547,"throughput_eps":0,"last_update":"2026-03-21T23:22:03.965835739Z"} +2026/03/21 23:22:08 ───────────────────────────────────────────────── +2026/03/21 23:22:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:22:13 [detection_layer] {"stage_name":"detection_layer","events_processed":632,"events_dropped":0,"avg_latency_ms":18.281813182607547,"throughput_eps":0,"last_update":"2026-03-21T23:22:08.966244993Z"} +2026/03/21 23:22:13 [log_collector] {"stage_name":"log_collector","events_processed":29731,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5946.2,"last_update":"2026-03-21T23:22:08.869834597Z"} +2026/03/21 23:22:13 [metric_collector] {"stage_name":"metric_collector","events_processed":18979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3795.8,"last_update":"2026-03-21T23:22:08.869780943Z"} +2026/03/21 23:22:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:22:08.878964411Z"} +2026/03/21 23:22:13 [transform_engine] {"stage_name":"transform_engine","events_processed":632,"events_dropped":0,"avg_latency_ms":1519.2042111092442,"throughput_eps":0,"last_update":"2026-03-21T23:22:08.966266795Z"} +2026/03/21 23:22:13 ───────────────────────────────────────────────── +2026/03/21 23:22:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:22:18 [detection_layer] {"stage_name":"detection_layer","events_processed":632,"events_dropped":0,"avg_latency_ms":18.281813182607547,"throughput_eps":0,"last_update":"2026-03-21T23:22:13.967082117Z"} +2026/03/21 23:22:18 [log_collector] {"stage_name":"log_collector","events_processed":29731,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5946.2,"last_update":"2026-03-21T23:22:18.869528718Z"} +2026/03/21 23:22:18 [metric_collector] {"stage_name":"metric_collector","events_processed":18984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3796.8,"last_update":"2026-03-21T23:22:13.87025911Z"} +2026/03/21 23:22:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:22:13.876947448Z"} +2026/03/21 23:22:18 [transform_engine] {"stage_name":"transform_engine","events_processed":632,"events_dropped":0,"avg_latency_ms":1519.2042111092442,"throughput_eps":0,"last_update":"2026-03-21T23:22:13.965107064Z"} +2026/03/21 23:22:18 ───────────────────────────────────────────────── +2026/03/21 23:22:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:22:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:22:18.87705927Z"} +2026/03/21 23:22:23 [transform_engine] {"stage_name":"transform_engine","events_processed":633,"events_dropped":0,"avg_latency_ms":1227.8251466873953,"throughput_eps":0,"last_update":"2026-03-21T23:22:19.027594863Z"} +2026/03/21 23:22:23 [detection_layer] {"stage_name":"detection_layer","events_processed":632,"events_dropped":0,"avg_latency_ms":18.281813182607547,"throughput_eps":0,"last_update":"2026-03-21T23:22:18.965411816Z"} +2026/03/21 23:22:23 [log_collector] {"stage_name":"log_collector","events_processed":29731,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5946.2,"last_update":"2026-03-21T23:22:18.869528718Z"} +2026/03/21 23:22:23 [metric_collector] {"stage_name":"metric_collector","events_processed":18989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3797.8,"last_update":"2026-03-21T23:22:18.869944064Z"} +2026/03/21 23:22:23 ───────────────────────────────────────────────── +2026/03/21 23:22:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:22:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:22:23.87681505Z"} +2026/03/21 23:22:28 [transform_engine] {"stage_name":"transform_engine","events_processed":633,"events_dropped":0,"avg_latency_ms":1227.8251466873953,"throughput_eps":0,"last_update":"2026-03-21T23:22:23.966055355Z"} +2026/03/21 23:22:28 [detection_layer] {"stage_name":"detection_layer","events_processed":633,"events_dropped":0,"avg_latency_ms":17.833618546086036,"throughput_eps":0,"last_update":"2026-03-21T23:22:23.96608368Z"} +2026/03/21 23:22:28 [log_collector] {"stage_name":"log_collector","events_processed":29740,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5948,"last_update":"2026-03-21T23:22:28.869404504Z"} +2026/03/21 23:22:28 [metric_collector] {"stage_name":"metric_collector","events_processed":18994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3798.8,"last_update":"2026-03-21T23:22:23.869779556Z"} +2026/03/21 23:22:28 ───────────────────────────────────────────────── +2026/03/21 23:22:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:22:33 [log_collector] {"stage_name":"log_collector","events_processed":29742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5948.4,"last_update":"2026-03-21T23:22:33.869437261Z"} +2026/03/21 23:22:33 [metric_collector] {"stage_name":"metric_collector","events_processed":18999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3799.8,"last_update":"2026-03-21T23:22:28.869879704Z"} +2026/03/21 23:22:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7602,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:22:28.87914559Z"} +2026/03/21 23:22:33 [transform_engine] {"stage_name":"transform_engine","events_processed":633,"events_dropped":0,"avg_latency_ms":1227.8251466873953,"throughput_eps":0,"last_update":"2026-03-21T23:22:28.965464631Z"} +2026/03/21 23:22:33 [detection_layer] {"stage_name":"detection_layer","events_processed":633,"events_dropped":0,"avg_latency_ms":17.833618546086036,"throughput_eps":0,"last_update":"2026-03-21T23:22:28.965581014Z"} +2026/03/21 23:22:33 ───────────────────────────────────────────────── +2026/03/21 23:22:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:22:38 [log_collector] {"stage_name":"log_collector","events_processed":29742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5948.4,"last_update":"2026-03-21T23:22:33.869437261Z"} +2026/03/21 23:22:38 [metric_collector] {"stage_name":"metric_collector","events_processed":19004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3800.8,"last_update":"2026-03-21T23:22:33.869792051Z"} +2026/03/21 23:22:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:22:33.878706363Z"} +2026/03/21 23:22:38 [transform_engine] {"stage_name":"transform_engine","events_processed":633,"events_dropped":0,"avg_latency_ms":1227.8251466873953,"throughput_eps":0,"last_update":"2026-03-21T23:22:33.965084759Z"} +2026/03/21 23:22:38 [detection_layer] {"stage_name":"detection_layer","events_processed":633,"events_dropped":0,"avg_latency_ms":17.833618546086036,"throughput_eps":0,"last_update":"2026-03-21T23:22:33.96615066Z"} +2026/03/21 23:22:38 ───────────────────────────────────────────────── +2026/03/21 23:22:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:22:43 [metric_collector] {"stage_name":"metric_collector","events_processed":19014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3802.8,"last_update":"2026-03-21T23:22:43.869871969Z"} +2026/03/21 23:22:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:22:38.87596736Z"} +2026/03/21 23:22:43 [transform_engine] {"stage_name":"transform_engine","events_processed":633,"events_dropped":0,"avg_latency_ms":1227.8251466873953,"throughput_eps":0,"last_update":"2026-03-21T23:22:38.96610715Z"} +2026/03/21 23:22:43 [detection_layer] {"stage_name":"detection_layer","events_processed":633,"events_dropped":0,"avg_latency_ms":17.833618546086036,"throughput_eps":0,"last_update":"2026-03-21T23:22:38.966100938Z"} +2026/03/21 23:22:43 [log_collector] {"stage_name":"log_collector","events_processed":30020,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6004,"last_update":"2026-03-21T23:22:43.869435614Z"} +2026/03/21 23:22:43 ───────────────────────────────────────────────── +Saved state: 18 clusters, 30021 messages, reason: none +2026/03/21 23:22:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:22:48 [log_collector] {"stage_name":"log_collector","events_processed":30020,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6004,"last_update":"2026-03-21T23:22:43.869435614Z"} +2026/03/21 23:22:48 [metric_collector] {"stage_name":"metric_collector","events_processed":19014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3802.8,"last_update":"2026-03-21T23:22:43.869871969Z"} +2026/03/21 23:22:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:22:43.879341905Z"} +2026/03/21 23:22:48 [transform_engine] {"stage_name":"transform_engine","events_processed":633,"events_dropped":0,"avg_latency_ms":1227.8251466873953,"throughput_eps":0,"last_update":"2026-03-21T23:22:43.965716483Z"} +2026/03/21 23:22:48 [detection_layer] {"stage_name":"detection_layer","events_processed":633,"events_dropped":0,"avg_latency_ms":17.833618546086036,"throughput_eps":0,"last_update":"2026-03-21T23:22:43.965708368Z"} +2026/03/21 23:22:48 ───────────────────────────────────────────────── +2026/03/21 23:22:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:22:53 [metric_collector] {"stage_name":"metric_collector","events_processed":19019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3803.8,"last_update":"2026-03-21T23:22:48.87065537Z"} +2026/03/21 23:22:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:22:48.87917171Z"} +2026/03/21 23:22:53 [transform_engine] {"stage_name":"transform_engine","events_processed":633,"events_dropped":0,"avg_latency_ms":1227.8251466873953,"throughput_eps":0,"last_update":"2026-03-21T23:22:48.965503936Z"} +2026/03/21 23:22:53 [detection_layer] {"stage_name":"detection_layer","events_processed":633,"events_dropped":0,"avg_latency_ms":17.833618546086036,"throughput_eps":0,"last_update":"2026-03-21T23:22:48.965492735Z"} +2026/03/21 23:22:53 [log_collector] {"stage_name":"log_collector","events_processed":30085,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6017,"last_update":"2026-03-21T23:22:53.869427026Z"} +2026/03/21 23:22:53 ───────────────────────────────────────────────── +2026/03/21 23:22:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:22:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:22:53.878627125Z"} +2026/03/21 23:22:58 [transform_engine] {"stage_name":"transform_engine","events_processed":634,"events_dropped":0,"avg_latency_ms":1006.6896811499163,"throughput_eps":0,"last_update":"2026-03-21T23:22:53.96598683Z"} +2026/03/21 23:22:58 [detection_layer] {"stage_name":"detection_layer","events_processed":634,"events_dropped":0,"avg_latency_ms":17.90053183686883,"throughput_eps":0,"last_update":"2026-03-21T23:22:53.965971551Z"} +2026/03/21 23:22:58 [log_collector] {"stage_name":"log_collector","events_processed":30085,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6017,"last_update":"2026-03-21T23:22:58.869875461Z"} +2026/03/21 23:22:58 [metric_collector] {"stage_name":"metric_collector","events_processed":19024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3804.8,"last_update":"2026-03-21T23:22:53.869790842Z"} +2026/03/21 23:22:58 ───────────────────────────────────────────────── +2026/03/21 23:23:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:23:03 [transform_engine] {"stage_name":"transform_engine","events_processed":634,"events_dropped":0,"avg_latency_ms":1006.6896811499163,"throughput_eps":0,"last_update":"2026-03-21T23:22:58.965680291Z"} +2026/03/21 23:23:03 [detection_layer] {"stage_name":"detection_layer","events_processed":634,"events_dropped":0,"avg_latency_ms":17.90053183686883,"throughput_eps":0,"last_update":"2026-03-21T23:22:58.965668989Z"} +2026/03/21 23:23:03 [log_collector] {"stage_name":"log_collector","events_processed":30085,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6017,"last_update":"2026-03-21T23:22:58.869875461Z"} +2026/03/21 23:23:03 [metric_collector] {"stage_name":"metric_collector","events_processed":19029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3805.8,"last_update":"2026-03-21T23:22:58.870252563Z"} +2026/03/21 23:23:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:22:58.879324707Z"} +2026/03/21 23:23:03 ───────────────────────────────────────────────── +2026/03/21 23:23:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:23:08 [detection_layer] {"stage_name":"detection_layer","events_processed":634,"events_dropped":0,"avg_latency_ms":17.90053183686883,"throughput_eps":0,"last_update":"2026-03-21T23:23:03.965577909Z"} +2026/03/21 23:23:08 [log_collector] {"stage_name":"log_collector","events_processed":30085,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6017,"last_update":"2026-03-21T23:23:08.86980855Z"} +2026/03/21 23:23:08 [metric_collector] {"stage_name":"metric_collector","events_processed":19034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3806.8,"last_update":"2026-03-21T23:23:03.870574785Z"} +2026/03/21 23:23:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:23:03.879309112Z"} +2026/03/21 23:23:08 [transform_engine] {"stage_name":"transform_engine","events_processed":634,"events_dropped":0,"avg_latency_ms":1006.6896811499163,"throughput_eps":0,"last_update":"2026-03-21T23:23:03.9655839Z"} +2026/03/21 23:23:08 ───────────────────────────────────────────────── +2026/03/21 23:23:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:23:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:23:08.878619775Z"} +2026/03/21 23:23:13 [transform_engine] {"stage_name":"transform_engine","events_processed":634,"events_dropped":0,"avg_latency_ms":1006.6896811499163,"throughput_eps":0,"last_update":"2026-03-21T23:23:08.965857748Z"} +2026/03/21 23:23:13 [detection_layer] {"stage_name":"detection_layer","events_processed":634,"events_dropped":0,"avg_latency_ms":17.90053183686883,"throughput_eps":0,"last_update":"2026-03-21T23:23:08.965849592Z"} +2026/03/21 23:23:13 [log_collector] {"stage_name":"log_collector","events_processed":30085,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6017,"last_update":"2026-03-21T23:23:13.870029524Z"} +2026/03/21 23:23:13 [metric_collector] {"stage_name":"metric_collector","events_processed":19039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3807.8,"last_update":"2026-03-21T23:23:08.870279492Z"} +2026/03/21 23:23:13 ───────────────────────────────────────────────── +2026/03/21 23:23:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:23:18 [metric_collector] {"stage_name":"metric_collector","events_processed":19044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3808.8,"last_update":"2026-03-21T23:23:13.870244917Z"} +2026/03/21 23:23:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7620,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:23:13.87927459Z"} +2026/03/21 23:23:18 [transform_engine] {"stage_name":"transform_engine","events_processed":634,"events_dropped":0,"avg_latency_ms":1006.6896811499163,"throughput_eps":0,"last_update":"2026-03-21T23:23:13.965609303Z"} +2026/03/21 23:23:18 [detection_layer] {"stage_name":"detection_layer","events_processed":634,"events_dropped":0,"avg_latency_ms":17.90053183686883,"throughput_eps":0,"last_update":"2026-03-21T23:23:13.96559715Z"} +2026/03/21 23:23:18 [log_collector] {"stage_name":"log_collector","events_processed":30085,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6017,"last_update":"2026-03-21T23:23:13.870029524Z"} +2026/03/21 23:23:18 ───────────────────────────────────────────────── +2026/03/21 23:23:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:23:23 [metric_collector] {"stage_name":"metric_collector","events_processed":19049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3809.8,"last_update":"2026-03-21T23:23:18.869935944Z"} +2026/03/21 23:23:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7622,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:23:18.877639617Z"} +2026/03/21 23:23:23 [transform_engine] {"stage_name":"transform_engine","events_processed":634,"events_dropped":0,"avg_latency_ms":1006.6896811499163,"throughput_eps":0,"last_update":"2026-03-21T23:23:18.96589495Z"} +2026/03/21 23:23:23 [detection_layer] {"stage_name":"detection_layer","events_processed":634,"events_dropped":0,"avg_latency_ms":17.90053183686883,"throughput_eps":0,"last_update":"2026-03-21T23:23:18.965882425Z"} +2026/03/21 23:23:23 [log_collector] {"stage_name":"log_collector","events_processed":30085,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6017,"last_update":"2026-03-21T23:23:18.869596384Z"} +2026/03/21 23:23:23 ───────────────────────────────────────────────── +2026/03/21 23:23:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:23:28 [detection_layer] {"stage_name":"detection_layer","events_processed":635,"events_dropped":0,"avg_latency_ms":17.908964069495063,"throughput_eps":0,"last_update":"2026-03-21T23:23:23.966114787Z"} +2026/03/21 23:23:28 [log_collector] {"stage_name":"log_collector","events_processed":30085,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6017,"last_update":"2026-03-21T23:23:23.869474567Z"} +2026/03/21 23:23:28 [metric_collector] {"stage_name":"metric_collector","events_processed":19054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3810.8,"last_update":"2026-03-21T23:23:23.869811883Z"} +2026/03/21 23:23:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:23:23.877900564Z"} +2026/03/21 23:23:28 [transform_engine] {"stage_name":"transform_engine","events_processed":635,"events_dropped":0,"avg_latency_ms":819.753578319933,"throughput_eps":0,"last_update":"2026-03-21T23:23:23.966127281Z"} +2026/03/21 23:23:28 ───────────────────────────────────────────────── +2026/03/21 23:23:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:23:33 [metric_collector] {"stage_name":"metric_collector","events_processed":19058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3811.6,"last_update":"2026-03-21T23:23:28.869368189Z"} +2026/03/21 23:23:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:23:28.878260599Z"} +2026/03/21 23:23:33 [transform_engine] {"stage_name":"transform_engine","events_processed":635,"events_dropped":0,"avg_latency_ms":819.753578319933,"throughput_eps":0,"last_update":"2026-03-21T23:23:28.965649701Z"} +2026/03/21 23:23:33 [detection_layer] {"stage_name":"detection_layer","events_processed":635,"events_dropped":0,"avg_latency_ms":17.908964069495063,"throughput_eps":0,"last_update":"2026-03-21T23:23:28.965634612Z"} +2026/03/21 23:23:33 [log_collector] {"stage_name":"log_collector","events_processed":30088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6017.6,"last_update":"2026-03-21T23:23:28.86942128Z"} +2026/03/21 23:23:33 ───────────────────────────────────────────────── +2026/03/21 23:23:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:23:38 [log_collector] {"stage_name":"log_collector","events_processed":30088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6017.6,"last_update":"2026-03-21T23:23:33.869944796Z"} +2026/03/21 23:23:38 [metric_collector] {"stage_name":"metric_collector","events_processed":19064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3812.8,"last_update":"2026-03-21T23:23:33.870323762Z"} +2026/03/21 23:23:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:23:33.878198103Z"} +2026/03/21 23:23:38 [transform_engine] {"stage_name":"transform_engine","events_processed":635,"events_dropped":0,"avg_latency_ms":819.753578319933,"throughput_eps":0,"last_update":"2026-03-21T23:23:33.965389276Z"} +2026/03/21 23:23:38 [detection_layer] {"stage_name":"detection_layer","events_processed":635,"events_dropped":0,"avg_latency_ms":17.908964069495063,"throughput_eps":0,"last_update":"2026-03-21T23:23:33.965379748Z"} +2026/03/21 23:23:38 ───────────────────────────────────────────────── +2026/03/21 23:23:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:23:43 [log_collector] {"stage_name":"log_collector","events_processed":30099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6019.8,"last_update":"2026-03-21T23:23:43.870079109Z"} +2026/03/21 23:23:43 [metric_collector] {"stage_name":"metric_collector","events_processed":19069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3813.8,"last_update":"2026-03-21T23:23:38.869776763Z"} +2026/03/21 23:23:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:23:38.87632821Z"} +2026/03/21 23:23:43 [transform_engine] {"stage_name":"transform_engine","events_processed":635,"events_dropped":0,"avg_latency_ms":819.753578319933,"throughput_eps":0,"last_update":"2026-03-21T23:23:38.965525246Z"} +2026/03/21 23:23:43 [detection_layer] {"stage_name":"detection_layer","events_processed":635,"events_dropped":0,"avg_latency_ms":17.908964069495063,"throughput_eps":0,"last_update":"2026-03-21T23:23:38.965514245Z"} +2026/03/21 23:23:43 ───────────────────────────────────────────────── +Saved state: 18 clusters, 30100 messages, reason: none +2026/03/21 23:23:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:23:48 [log_collector] {"stage_name":"log_collector","events_processed":30099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6019.8,"last_update":"2026-03-21T23:23:43.870079109Z"} +2026/03/21 23:23:48 [metric_collector] {"stage_name":"metric_collector","events_processed":19074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3814.8,"last_update":"2026-03-21T23:23:43.87052352Z"} +2026/03/21 23:23:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7632,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:23:43.87910244Z"} +2026/03/21 23:23:48 [transform_engine] {"stage_name":"transform_engine","events_processed":635,"events_dropped":0,"avg_latency_ms":819.753578319933,"throughput_eps":0,"last_update":"2026-03-21T23:23:43.96534609Z"} +2026/03/21 23:23:48 [detection_layer] {"stage_name":"detection_layer","events_processed":635,"events_dropped":0,"avg_latency_ms":17.908964069495063,"throughput_eps":0,"last_update":"2026-03-21T23:23:43.965333084Z"} +2026/03/21 23:23:48 ───────────────────────────────────────────────── +2026/03/21 23:23:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:23:53 [log_collector] {"stage_name":"log_collector","events_processed":30115,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6023,"last_update":"2026-03-21T23:23:48.869921982Z"} +2026/03/21 23:23:53 [metric_collector] {"stage_name":"metric_collector","events_processed":19079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3815.8,"last_update":"2026-03-21T23:23:48.869897525Z"} +2026/03/21 23:23:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:23:48.879278251Z"} +2026/03/21 23:23:53 [transform_engine] {"stage_name":"transform_engine","events_processed":635,"events_dropped":0,"avg_latency_ms":819.753578319933,"throughput_eps":0,"last_update":"2026-03-21T23:23:48.96547966Z"} +2026/03/21 23:23:53 [detection_layer] {"stage_name":"detection_layer","events_processed":635,"events_dropped":0,"avg_latency_ms":17.908964069495063,"throughput_eps":0,"last_update":"2026-03-21T23:23:48.965471754Z"} +2026/03/21 23:23:53 ───────────────────────────────────────────────── +2026/03/21 23:23:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:23:58 [detection_layer] {"stage_name":"detection_layer","events_processed":636,"events_dropped":0,"avg_latency_ms":17.80656065559605,"throughput_eps":0,"last_update":"2026-03-21T23:23:53.965368478Z"} +2026/03/21 23:23:58 [log_collector] {"stage_name":"log_collector","events_processed":30115,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6023,"last_update":"2026-03-21T23:23:53.869696241Z"} +2026/03/21 23:23:58 [metric_collector] {"stage_name":"metric_collector","events_processed":19084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3816.8,"last_update":"2026-03-21T23:23:53.87016006Z"} +2026/03/21 23:23:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:23:53.879177219Z"} +2026/03/21 23:23:58 [transform_engine] {"stage_name":"transform_engine","events_processed":636,"events_dropped":0,"avg_latency_ms":675.1842428559464,"throughput_eps":0,"last_update":"2026-03-21T23:23:53.965376824Z"} +2026/03/21 23:23:58 ───────────────────────────────────────────────── +2026/03/21 23:24:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:24:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:23:58.878066671Z"} +2026/03/21 23:24:03 [transform_engine] {"stage_name":"transform_engine","events_processed":636,"events_dropped":0,"avg_latency_ms":675.1842428559464,"throughput_eps":0,"last_update":"2026-03-21T23:23:58.965257896Z"} +2026/03/21 23:24:03 [detection_layer] {"stage_name":"detection_layer","events_processed":636,"events_dropped":0,"avg_latency_ms":17.80656065559605,"throughput_eps":0,"last_update":"2026-03-21T23:23:58.965320256Z"} +2026/03/21 23:24:03 [log_collector] {"stage_name":"log_collector","events_processed":30115,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6023,"last_update":"2026-03-21T23:23:58.869485447Z"} +2026/03/21 23:24:03 [metric_collector] {"stage_name":"metric_collector","events_processed":19089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3817.8,"last_update":"2026-03-21T23:23:58.869836289Z"} +2026/03/21 23:24:03 ───────────────────────────────────────────────── +2026/03/21 23:24:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:24:08 [log_collector] {"stage_name":"log_collector","events_processed":30115,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6023,"last_update":"2026-03-21T23:24:03.86949871Z"} +2026/03/21 23:24:08 [metric_collector] {"stage_name":"metric_collector","events_processed":19094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3818.8,"last_update":"2026-03-21T23:24:03.869809897Z"} +2026/03/21 23:24:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7640,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:24:03.87859443Z"} +2026/03/21 23:24:08 [transform_engine] {"stage_name":"transform_engine","events_processed":636,"events_dropped":0,"avg_latency_ms":675.1842428559464,"throughput_eps":0,"last_update":"2026-03-21T23:24:03.965848495Z"} +2026/03/21 23:24:08 [detection_layer] {"stage_name":"detection_layer","events_processed":636,"events_dropped":0,"avg_latency_ms":17.80656065559605,"throughput_eps":0,"last_update":"2026-03-21T23:24:03.965836772Z"} +2026/03/21 23:24:08 ───────────────────────────────────────────────── +2026/03/21 23:24:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:24:13 [log_collector] {"stage_name":"log_collector","events_processed":30115,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6023,"last_update":"2026-03-21T23:24:08.870103041Z"} +2026/03/21 23:24:13 [metric_collector] {"stage_name":"metric_collector","events_processed":19099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3819.8,"last_update":"2026-03-21T23:24:08.870345024Z"} +2026/03/21 23:24:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:24:08.879345651Z"} +2026/03/21 23:24:13 [transform_engine] {"stage_name":"transform_engine","events_processed":636,"events_dropped":0,"avg_latency_ms":675.1842428559464,"throughput_eps":0,"last_update":"2026-03-21T23:24:08.965713409Z"} +2026/03/21 23:24:13 [detection_layer] {"stage_name":"detection_layer","events_processed":636,"events_dropped":0,"avg_latency_ms":17.80656065559605,"throughput_eps":0,"last_update":"2026-03-21T23:24:08.965697389Z"} +2026/03/21 23:24:13 ───────────────────────────────────────────────── +2026/03/21 23:24:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:24:18 [metric_collector] {"stage_name":"metric_collector","events_processed":19104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3820.8,"last_update":"2026-03-21T23:24:13.870316851Z"} +2026/03/21 23:24:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:24:13.879023706Z"} +2026/03/21 23:24:18 [transform_engine] {"stage_name":"transform_engine","events_processed":636,"events_dropped":0,"avg_latency_ms":675.1842428559464,"throughput_eps":0,"last_update":"2026-03-21T23:24:13.965149511Z"} +2026/03/21 23:24:18 [detection_layer] {"stage_name":"detection_layer","events_processed":636,"events_dropped":0,"avg_latency_ms":17.80656065559605,"throughput_eps":0,"last_update":"2026-03-21T23:24:13.966369367Z"} +2026/03/21 23:24:18 [log_collector] {"stage_name":"log_collector","events_processed":30115,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6023,"last_update":"2026-03-21T23:24:13.869885405Z"} +2026/03/21 23:24:18 ───────────────────────────────────────────────── +2026/03/21 23:24:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:24:23 [log_collector] {"stage_name":"log_collector","events_processed":30115,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6023,"last_update":"2026-03-21T23:24:18.86951286Z"} +2026/03/21 23:24:23 [metric_collector] {"stage_name":"metric_collector","events_processed":19109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3821.8,"last_update":"2026-03-21T23:24:18.869876747Z"} +2026/03/21 23:24:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7646,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:24:18.878684595Z"} +2026/03/21 23:24:23 [transform_engine] {"stage_name":"transform_engine","events_processed":637,"events_dropped":0,"avg_latency_ms":555.6384840847572,"throughput_eps":0,"last_update":"2026-03-21T23:24:19.043491266Z"} +2026/03/21 23:24:23 [detection_layer] {"stage_name":"detection_layer","events_processed":636,"events_dropped":0,"avg_latency_ms":17.80656065559605,"throughput_eps":0,"last_update":"2026-03-21T23:24:18.966020788Z"} +2026/03/21 23:24:23 ───────────────────────────────────────────────── +2026/03/21 23:24:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:24:28 [detection_layer] {"stage_name":"detection_layer","events_processed":637,"events_dropped":0,"avg_latency_ms":18.732698924476843,"throughput_eps":0,"last_update":"2026-03-21T23:24:23.965504192Z"} +2026/03/21 23:24:28 [log_collector] {"stage_name":"log_collector","events_processed":30118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6023.6,"last_update":"2026-03-21T23:24:23.869801406Z"} +2026/03/21 23:24:28 [metric_collector] {"stage_name":"metric_collector","events_processed":19114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3822.8,"last_update":"2026-03-21T23:24:23.870037067Z"} +2026/03/21 23:24:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:24:23.87532788Z"} +2026/03/21 23:24:28 [transform_engine] {"stage_name":"transform_engine","events_processed":637,"events_dropped":0,"avg_latency_ms":555.6384840847572,"throughput_eps":0,"last_update":"2026-03-21T23:24:23.965516596Z"} +2026/03/21 23:24:28 ───────────────────────────────────────────────── +2026/03/21 23:24:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:24:33 [detection_layer] {"stage_name":"detection_layer","events_processed":637,"events_dropped":0,"avg_latency_ms":18.732698924476843,"throughput_eps":0,"last_update":"2026-03-21T23:24:28.965702313Z"} +2026/03/21 23:24:33 [log_collector] {"stage_name":"log_collector","events_processed":30129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6025.8,"last_update":"2026-03-21T23:24:28.870124737Z"} +2026/03/21 23:24:33 [metric_collector] {"stage_name":"metric_collector","events_processed":19119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3823.8,"last_update":"2026-03-21T23:24:28.870546555Z"} +2026/03/21 23:24:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7650,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:24:28.878334971Z"} +2026/03/21 23:24:33 [transform_engine] {"stage_name":"transform_engine","events_processed":637,"events_dropped":0,"avg_latency_ms":555.6384840847572,"throughput_eps":0,"last_update":"2026-03-21T23:24:28.965666164Z"} +2026/03/21 23:24:33 ───────────────────────────────────────────────── +2026/03/21 23:24:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:24:38 [metric_collector] {"stage_name":"metric_collector","events_processed":19124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3824.8,"last_update":"2026-03-21T23:24:33.870054662Z"} +2026/03/21 23:24:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:24:33.878643611Z"} +2026/03/21 23:24:38 [transform_engine] {"stage_name":"transform_engine","events_processed":637,"events_dropped":0,"avg_latency_ms":555.6384840847572,"throughput_eps":0,"last_update":"2026-03-21T23:24:33.965967209Z"} +2026/03/21 23:24:38 [detection_layer] {"stage_name":"detection_layer","events_processed":637,"events_dropped":0,"avg_latency_ms":18.732698924476843,"throughput_eps":0,"last_update":"2026-03-21T23:24:33.96592595Z"} +2026/03/21 23:24:38 [log_collector] {"stage_name":"log_collector","events_processed":30129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6025.8,"last_update":"2026-03-21T23:24:33.869415817Z"} +2026/03/21 23:24:38 ───────────────────────────────────────────────── +2026/03/21 23:24:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:24:43 [log_collector] {"stage_name":"log_collector","events_processed":30129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6025.8,"last_update":"2026-03-21T23:24:38.869821281Z"} +2026/03/21 23:24:43 [metric_collector] {"stage_name":"metric_collector","events_processed":19129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3825.8,"last_update":"2026-03-21T23:24:38.870262306Z"} +2026/03/21 23:24:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:24:38.878306292Z"} +2026/03/21 23:24:43 [transform_engine] {"stage_name":"transform_engine","events_processed":637,"events_dropped":0,"avg_latency_ms":555.6384840847572,"throughput_eps":0,"last_update":"2026-03-21T23:24:38.965499831Z"} +2026/03/21 23:24:43 [detection_layer] {"stage_name":"detection_layer","events_processed":637,"events_dropped":0,"avg_latency_ms":18.732698924476843,"throughput_eps":0,"last_update":"2026-03-21T23:24:38.965538946Z"} +2026/03/21 23:24:43 ───────────────────────────────────────────────── +2026/03/21 23:24:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:24:48 [log_collector] {"stage_name":"log_collector","events_processed":30129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6025.8,"last_update":"2026-03-21T23:24:43.869418143Z"} +2026/03/21 23:24:48 [metric_collector] {"stage_name":"metric_collector","events_processed":19134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3826.8,"last_update":"2026-03-21T23:24:43.869832045Z"} +2026/03/21 23:24:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:24:43.879443292Z"} +2026/03/21 23:24:48 [transform_engine] {"stage_name":"transform_engine","events_processed":637,"events_dropped":0,"avg_latency_ms":555.6384840847572,"throughput_eps":0,"last_update":"2026-03-21T23:24:43.965798738Z"} +2026/03/21 23:24:48 [detection_layer] {"stage_name":"detection_layer","events_processed":637,"events_dropped":0,"avg_latency_ms":18.732698924476843,"throughput_eps":0,"last_update":"2026-03-21T23:24:43.965823385Z"} +2026/03/21 23:24:48 ───────────────────────────────────────────────── +2026/03/21 23:24:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:24:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:24:48.879246784Z"} +2026/03/21 23:24:53 [transform_engine] {"stage_name":"transform_engine","events_processed":638,"events_dropped":0,"avg_latency_ms":468.8487322678058,"throughput_eps":0,"last_update":"2026-03-21T23:24:49.087400653Z"} +2026/03/21 23:24:53 [detection_layer] {"stage_name":"detection_layer","events_processed":637,"events_dropped":0,"avg_latency_ms":18.732698924476843,"throughput_eps":0,"last_update":"2026-03-21T23:24:48.965592019Z"} +2026/03/21 23:24:53 [log_collector] {"stage_name":"log_collector","events_processed":30129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6025.8,"last_update":"2026-03-21T23:24:48.870134643Z"} +2026/03/21 23:24:53 [metric_collector] {"stage_name":"metric_collector","events_processed":19139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3827.8,"last_update":"2026-03-21T23:24:48.870645441Z"} +2026/03/21 23:24:53 ───────────────────────────────────────────────── +2026/03/21 23:24:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:24:58 [log_collector] {"stage_name":"log_collector","events_processed":30129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6025.8,"last_update":"2026-03-21T23:24:53.870309353Z"} +2026/03/21 23:24:58 [metric_collector] {"stage_name":"metric_collector","events_processed":19144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3828.8,"last_update":"2026-03-21T23:24:53.870590681Z"} +2026/03/21 23:24:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7660,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:24:53.879340508Z"} +2026/03/21 23:24:58 [transform_engine] {"stage_name":"transform_engine","events_processed":638,"events_dropped":0,"avg_latency_ms":468.8487322678058,"throughput_eps":0,"last_update":"2026-03-21T23:24:53.965683209Z"} +2026/03/21 23:24:58 [detection_layer] {"stage_name":"detection_layer","events_processed":638,"events_dropped":0,"avg_latency_ms":19.282810139581475,"throughput_eps":0,"last_update":"2026-03-21T23:24:53.965738595Z"} +2026/03/21 23:24:58 ───────────────────────────────────────────────── +2026/03/21 23:25:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:25:03 [log_collector] {"stage_name":"log_collector","events_processed":30129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6025.8,"last_update":"2026-03-21T23:24:58.869550198Z"} +2026/03/21 23:25:03 [metric_collector] {"stage_name":"metric_collector","events_processed":19149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3829.8,"last_update":"2026-03-21T23:24:58.869998907Z"} +2026/03/21 23:25:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7662,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:24:58.87904404Z"} +2026/03/21 23:25:03 [transform_engine] {"stage_name":"transform_engine","events_processed":638,"events_dropped":0,"avg_latency_ms":468.8487322678058,"throughput_eps":0,"last_update":"2026-03-21T23:24:58.965232866Z"} +2026/03/21 23:25:03 [detection_layer] {"stage_name":"detection_layer","events_processed":638,"events_dropped":0,"avg_latency_ms":19.282810139581475,"throughput_eps":0,"last_update":"2026-03-21T23:24:58.965409975Z"} +2026/03/21 23:25:03 ───────────────────────────────────────────────── +2026/03/21 23:25:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:25:08 [detection_layer] {"stage_name":"detection_layer","events_processed":638,"events_dropped":0,"avg_latency_ms":19.282810139581475,"throughput_eps":0,"last_update":"2026-03-21T23:25:03.96569592Z"} +2026/03/21 23:25:08 [log_collector] {"stage_name":"log_collector","events_processed":30129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6025.8,"last_update":"2026-03-21T23:25:03.869466445Z"} +2026/03/21 23:25:08 [metric_collector] {"stage_name":"metric_collector","events_processed":19154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3830.8,"last_update":"2026-03-21T23:25:03.869938599Z"} +2026/03/21 23:25:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:25:03.878242703Z"} +2026/03/21 23:25:08 [transform_engine] {"stage_name":"transform_engine","events_processed":638,"events_dropped":0,"avg_latency_ms":468.8487322678058,"throughput_eps":0,"last_update":"2026-03-21T23:25:03.96559131Z"} +2026/03/21 23:25:08 ───────────────────────────────────────────────── +2026/03/21 23:25:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:25:13 [detection_layer] {"stage_name":"detection_layer","events_processed":638,"events_dropped":0,"avg_latency_ms":19.282810139581475,"throughput_eps":0,"last_update":"2026-03-21T23:25:08.966094448Z"} +2026/03/21 23:25:13 [log_collector] {"stage_name":"log_collector","events_processed":30129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6025.8,"last_update":"2026-03-21T23:25:08.869667264Z"} +2026/03/21 23:25:13 [metric_collector] {"stage_name":"metric_collector","events_processed":19159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3831.8,"last_update":"2026-03-21T23:25:08.870322058Z"} +2026/03/21 23:25:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:25:08.8788033Z"} +2026/03/21 23:25:13 [transform_engine] {"stage_name":"transform_engine","events_processed":638,"events_dropped":0,"avg_latency_ms":468.8487322678058,"throughput_eps":0,"last_update":"2026-03-21T23:25:08.966137971Z"} +2026/03/21 23:25:13 ───────────────────────────────────────────────── +2026/03/21 23:25:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:25:18 [transform_engine] {"stage_name":"transform_engine","events_processed":638,"events_dropped":0,"avg_latency_ms":468.8487322678058,"throughput_eps":0,"last_update":"2026-03-21T23:25:13.96592719Z"} +2026/03/21 23:25:18 [detection_layer] {"stage_name":"detection_layer","events_processed":638,"events_dropped":0,"avg_latency_ms":19.282810139581475,"throughput_eps":0,"last_update":"2026-03-21T23:25:13.96602626Z"} +2026/03/21 23:25:18 [log_collector] {"stage_name":"log_collector","events_processed":30129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6025.8,"last_update":"2026-03-21T23:25:13.869797104Z"} +2026/03/21 23:25:18 [metric_collector] {"stage_name":"metric_collector","events_processed":19164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3832.8,"last_update":"2026-03-21T23:25:13.870318944Z"} +2026/03/21 23:25:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7668,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:25:13.8787395Z"} +2026/03/21 23:25:18 ───────────────────────────────────────────────── +2026/03/21 23:25:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:25:23 [metric_collector] {"stage_name":"metric_collector","events_processed":19169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3833.8,"last_update":"2026-03-21T23:25:18.869983728Z"} +2026/03/21 23:25:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7670,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:25:18.878271762Z"} +2026/03/21 23:25:23 [transform_engine] {"stage_name":"transform_engine","events_processed":639,"events_dropped":0,"avg_latency_ms":390.03885461424466,"throughput_eps":0,"last_update":"2026-03-21T23:25:19.040292359Z"} +2026/03/21 23:25:23 [detection_layer] {"stage_name":"detection_layer","events_processed":638,"events_dropped":0,"avg_latency_ms":19.282810139581475,"throughput_eps":0,"last_update":"2026-03-21T23:25:18.965602986Z"} +2026/03/21 23:25:23 [log_collector] {"stage_name":"log_collector","events_processed":30129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6025.8,"last_update":"2026-03-21T23:25:18.869526032Z"} +2026/03/21 23:25:23 ───────────────────────────────────────────────── +2026/03/21 23:25:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:25:28 [log_collector] {"stage_name":"log_collector","events_processed":30129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6025.8,"last_update":"2026-03-21T23:25:23.870490902Z"} +2026/03/21 23:25:28 [metric_collector] {"stage_name":"metric_collector","events_processed":19174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3834.8,"last_update":"2026-03-21T23:25:23.870955562Z"} +2026/03/21 23:25:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:25:23.879534632Z"} +2026/03/21 23:25:28 [transform_engine] {"stage_name":"transform_engine","events_processed":639,"events_dropped":0,"avg_latency_ms":390.03885461424466,"throughput_eps":0,"last_update":"2026-03-21T23:25:23.965752735Z"} +2026/03/21 23:25:28 [detection_layer] {"stage_name":"detection_layer","events_processed":639,"events_dropped":0,"avg_latency_ms":19.781743511665184,"throughput_eps":0,"last_update":"2026-03-21T23:25:23.96574517Z"} +2026/03/21 23:25:28 ───────────────────────────────────────────────── +Saved state: 18 clusters, 30130 messages, reason: none +2026/03/21 23:25:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:25:33 [log_collector] {"stage_name":"log_collector","events_processed":30129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6025.8,"last_update":"2026-03-21T23:25:28.869413588Z"} +2026/03/21 23:25:33 [metric_collector] {"stage_name":"metric_collector","events_processed":19179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3835.8,"last_update":"2026-03-21T23:25:28.869836358Z"} +2026/03/21 23:25:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:25:28.878319604Z"} +2026/03/21 23:25:33 [transform_engine] {"stage_name":"transform_engine","events_processed":639,"events_dropped":0,"avg_latency_ms":390.03885461424466,"throughput_eps":0,"last_update":"2026-03-21T23:25:28.965754298Z"} +2026/03/21 23:25:33 [detection_layer] {"stage_name":"detection_layer","events_processed":639,"events_dropped":0,"avg_latency_ms":19.781743511665184,"throughput_eps":0,"last_update":"2026-03-21T23:25:28.965741733Z"} +2026/03/21 23:25:33 ───────────────────────────────────────────────── +2026/03/21 23:25:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:25:38 [log_collector] {"stage_name":"log_collector","events_processed":30134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6026.8,"last_update":"2026-03-21T23:25:33.869624176Z"} +2026/03/21 23:25:38 [metric_collector] {"stage_name":"metric_collector","events_processed":19184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3836.8,"last_update":"2026-03-21T23:25:33.869598436Z"} +2026/03/21 23:25:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7676,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:25:33.876417867Z"} +2026/03/21 23:25:38 [transform_engine] {"stage_name":"transform_engine","events_processed":639,"events_dropped":0,"avg_latency_ms":390.03885461424466,"throughput_eps":0,"last_update":"2026-03-21T23:25:33.965680641Z"} +2026/03/21 23:25:38 [detection_layer] {"stage_name":"detection_layer","events_processed":639,"events_dropped":0,"avg_latency_ms":19.781743511665184,"throughput_eps":0,"last_update":"2026-03-21T23:25:33.965702574Z"} +2026/03/21 23:25:38 ───────────────────────────────────────────────── +2026/03/21 23:25:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:25:43 [log_collector] {"stage_name":"log_collector","events_processed":30134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6026.8,"last_update":"2026-03-21T23:25:38.869449562Z"} +2026/03/21 23:25:43 [metric_collector] {"stage_name":"metric_collector","events_processed":19189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3837.8,"last_update":"2026-03-21T23:25:38.869827957Z"} +2026/03/21 23:25:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:25:38.877370753Z"} +2026/03/21 23:25:43 [transform_engine] {"stage_name":"transform_engine","events_processed":639,"events_dropped":0,"avg_latency_ms":390.03885461424466,"throughput_eps":0,"last_update":"2026-03-21T23:25:38.96638433Z"} +2026/03/21 23:25:43 [detection_layer] {"stage_name":"detection_layer","events_processed":639,"events_dropped":0,"avg_latency_ms":19.781743511665184,"throughput_eps":0,"last_update":"2026-03-21T23:25:38.966369922Z"} +2026/03/21 23:25:43 ───────────────────────────────────────────────── +2026/03/21 23:25:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:25:48 [metric_collector] {"stage_name":"metric_collector","events_processed":19194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3838.8,"last_update":"2026-03-21T23:25:43.870553363Z"} +2026/03/21 23:25:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:25:43.876760411Z"} +2026/03/21 23:25:48 [transform_engine] {"stage_name":"transform_engine","events_processed":639,"events_dropped":0,"avg_latency_ms":390.03885461424466,"throughput_eps":0,"last_update":"2026-03-21T23:25:43.965979311Z"} +2026/03/21 23:25:48 [detection_layer] {"stage_name":"detection_layer","events_processed":639,"events_dropped":0,"avg_latency_ms":19.781743511665184,"throughput_eps":0,"last_update":"2026-03-21T23:25:43.965950927Z"} +2026/03/21 23:25:48 [log_collector] {"stage_name":"log_collector","events_processed":30134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6026.8,"last_update":"2026-03-21T23:25:43.870130374Z"} +2026/03/21 23:25:48 ───────────────────────────────────────────────── +2026/03/21 23:25:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:25:53 [detection_layer] {"stage_name":"detection_layer","events_processed":639,"events_dropped":0,"avg_latency_ms":19.781743511665184,"throughput_eps":0,"last_update":"2026-03-21T23:25:48.966065942Z"} +2026/03/21 23:25:53 [log_collector] {"stage_name":"log_collector","events_processed":30134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6026.8,"last_update":"2026-03-21T23:25:48.869406762Z"} +2026/03/21 23:25:53 [metric_collector] {"stage_name":"metric_collector","events_processed":19199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3839.8,"last_update":"2026-03-21T23:25:48.869671259Z"} +2026/03/21 23:25:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:25:48.881878728Z"} +2026/03/21 23:25:53 [transform_engine] {"stage_name":"transform_engine","events_processed":640,"events_dropped":0,"avg_latency_ms":652.9891476913957,"throughput_eps":0,"last_update":"2026-03-21T23:25:50.670839649Z"} +2026/03/21 23:25:53 ───────────────────────────────────────────────── +2026/03/21 23:25:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:25:58 [transform_engine] {"stage_name":"transform_engine","events_processed":640,"events_dropped":0,"avg_latency_ms":652.9891476913957,"throughput_eps":0,"last_update":"2026-03-21T23:25:53.96581412Z"} +2026/03/21 23:25:58 [detection_layer] {"stage_name":"detection_layer","events_processed":640,"events_dropped":0,"avg_latency_ms":18.284879209332146,"throughput_eps":0,"last_update":"2026-03-21T23:25:53.965805323Z"} +2026/03/21 23:25:58 [log_collector] {"stage_name":"log_collector","events_processed":30134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6026.8,"last_update":"2026-03-21T23:25:53.869419527Z"} +2026/03/21 23:25:58 [metric_collector] {"stage_name":"metric_collector","events_processed":19204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3840.8,"last_update":"2026-03-21T23:25:53.870043923Z"} +2026/03/21 23:25:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:25:53.875601216Z"} +2026/03/21 23:25:58 ───────────────────────────────────────────────── +2026/03/21 23:26:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:26:03 [log_collector] {"stage_name":"log_collector","events_processed":30134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6026.8,"last_update":"2026-03-21T23:25:58.869430592Z"} +2026/03/21 23:26:03 [metric_collector] {"stage_name":"metric_collector","events_processed":19209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3841.8,"last_update":"2026-03-21T23:25:58.869742419Z"} +2026/03/21 23:26:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:25:58.878917992Z"} +2026/03/21 23:26:03 [transform_engine] {"stage_name":"transform_engine","events_processed":640,"events_dropped":0,"avg_latency_ms":652.9891476913957,"throughput_eps":0,"last_update":"2026-03-21T23:25:58.966121272Z"} +2026/03/21 23:26:03 [detection_layer] {"stage_name":"detection_layer","events_processed":640,"events_dropped":0,"avg_latency_ms":18.284879209332146,"throughput_eps":0,"last_update":"2026-03-21T23:25:58.966109349Z"} +2026/03/21 23:26:03 ───────────────────────────────────────────────── +2026/03/21 23:26:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:26:08 [log_collector] {"stage_name":"log_collector","events_processed":30134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6026.8,"last_update":"2026-03-21T23:26:08.870171988Z"} +2026/03/21 23:26:08 [metric_collector] {"stage_name":"metric_collector","events_processed":19214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3842.8,"last_update":"2026-03-21T23:26:03.870384969Z"} +2026/03/21 23:26:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7688,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:26:03.876817649Z"} +2026/03/21 23:26:08 [transform_engine] {"stage_name":"transform_engine","events_processed":640,"events_dropped":0,"avg_latency_ms":652.9891476913957,"throughput_eps":0,"last_update":"2026-03-21T23:26:03.966105402Z"} +2026/03/21 23:26:08 [detection_layer] {"stage_name":"detection_layer","events_processed":640,"events_dropped":0,"avg_latency_ms":18.284879209332146,"throughput_eps":0,"last_update":"2026-03-21T23:26:03.966096644Z"} +2026/03/21 23:26:08 ───────────────────────────────────────────────── +2026/03/21 23:26:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:26:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:26:08.878842794Z"} +2026/03/21 23:26:13 [transform_engine] {"stage_name":"transform_engine","events_processed":640,"events_dropped":0,"avg_latency_ms":652.9891476913957,"throughput_eps":0,"last_update":"2026-03-21T23:26:08.966029923Z"} +2026/03/21 23:26:13 [detection_layer] {"stage_name":"detection_layer","events_processed":640,"events_dropped":0,"avg_latency_ms":18.284879209332146,"throughput_eps":0,"last_update":"2026-03-21T23:26:08.966018742Z"} +2026/03/21 23:26:13 [log_collector] {"stage_name":"log_collector","events_processed":30143,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6028.6,"last_update":"2026-03-21T23:26:13.869410101Z"} +2026/03/21 23:26:13 [metric_collector] {"stage_name":"metric_collector","events_processed":19224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3844.8,"last_update":"2026-03-21T23:26:13.869809305Z"} +2026/03/21 23:26:13 ───────────────────────────────────────────────── +2026/03/21 23:26:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:26:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:26:13.877701581Z"} +2026/03/21 23:26:18 [transform_engine] {"stage_name":"transform_engine","events_processed":640,"events_dropped":0,"avg_latency_ms":652.9891476913957,"throughput_eps":0,"last_update":"2026-03-21T23:26:13.965888975Z"} +2026/03/21 23:26:18 [detection_layer] {"stage_name":"detection_layer","events_processed":640,"events_dropped":0,"avg_latency_ms":18.284879209332146,"throughput_eps":0,"last_update":"2026-03-21T23:26:13.965881381Z"} +2026/03/21 23:26:18 [log_collector] {"stage_name":"log_collector","events_processed":30143,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6028.6,"last_update":"2026-03-21T23:26:13.869410101Z"} +2026/03/21 23:26:18 [metric_collector] {"stage_name":"metric_collector","events_processed":19224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3844.8,"last_update":"2026-03-21T23:26:13.869809305Z"} +2026/03/21 23:26:18 ───────────────────────────────────────────────── +2026/03/21 23:26:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:26:23 [log_collector] {"stage_name":"log_collector","events_processed":30145,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6029,"last_update":"2026-03-21T23:26:18.869936486Z"} +2026/03/21 23:26:23 [metric_collector] {"stage_name":"metric_collector","events_processed":19229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3845.8,"last_update":"2026-03-21T23:26:18.870292497Z"} +2026/03/21 23:26:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:26:18.878640726Z"} +2026/03/21 23:26:23 [transform_engine] {"stage_name":"transform_engine","events_processed":641,"events_dropped":0,"avg_latency_ms":977.9641709531166,"throughput_eps":0,"last_update":"2026-03-21T23:26:21.243957557Z"} +2026/03/21 23:26:23 [detection_layer] {"stage_name":"detection_layer","events_processed":640,"events_dropped":0,"avg_latency_ms":18.284879209332146,"throughput_eps":0,"last_update":"2026-03-21T23:26:18.966074507Z"} +2026/03/21 23:26:23 ───────────────────────────────────────────────── +2026/03/21 23:26:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:26:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:26:23.876740318Z"} +2026/03/21 23:26:28 [transform_engine] {"stage_name":"transform_engine","events_processed":641,"events_dropped":0,"avg_latency_ms":977.9641709531166,"throughput_eps":0,"last_update":"2026-03-21T23:26:23.965309174Z"} +2026/03/21 23:26:28 [detection_layer] {"stage_name":"detection_layer","events_processed":641,"events_dropped":0,"avg_latency_ms":18.558917967465717,"throughput_eps":0,"last_update":"2026-03-21T23:26:23.965342517Z"} +2026/03/21 23:26:28 [log_collector] {"stage_name":"log_collector","events_processed":30271,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6054.2,"last_update":"2026-03-21T23:26:23.870210913Z"} +2026/03/21 23:26:28 [metric_collector] {"stage_name":"metric_collector","events_processed":19234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3846.8,"last_update":"2026-03-21T23:26:23.870960279Z"} +2026/03/21 23:26:28 ───────────────────────────────────────────────── +2026/03/21 23:26:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:26:33 [log_collector] {"stage_name":"log_collector","events_processed":30497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6099.4,"last_update":"2026-03-21T23:26:28.869416559Z"} +2026/03/21 23:26:33 [metric_collector] {"stage_name":"metric_collector","events_processed":19239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3847.8,"last_update":"2026-03-21T23:26:28.870209277Z"} +2026/03/21 23:26:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:26:28.877389689Z"} +2026/03/21 23:26:33 [transform_engine] {"stage_name":"transform_engine","events_processed":641,"events_dropped":0,"avg_latency_ms":977.9641709531166,"throughput_eps":0,"last_update":"2026-03-21T23:26:28.965671585Z"} +2026/03/21 23:26:33 [detection_layer] {"stage_name":"detection_layer","events_processed":641,"events_dropped":0,"avg_latency_ms":18.558917967465717,"throughput_eps":0,"last_update":"2026-03-21T23:26:28.965666275Z"} +2026/03/21 23:26:33 ───────────────────────────────────────────────── +2026/03/21 23:26:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:26:38 [detection_layer] {"stage_name":"detection_layer","events_processed":641,"events_dropped":0,"avg_latency_ms":18.558917967465717,"throughput_eps":0,"last_update":"2026-03-21T23:26:33.965294004Z"} +2026/03/21 23:26:38 [log_collector] {"stage_name":"log_collector","events_processed":30497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6099.4,"last_update":"2026-03-21T23:26:33.870473615Z"} +2026/03/21 23:26:38 [metric_collector] {"stage_name":"metric_collector","events_processed":19244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3848.8,"last_update":"2026-03-21T23:26:33.870660322Z"} +2026/03/21 23:26:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7700,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:26:33.87883072Z"} +2026/03/21 23:26:38 [transform_engine] {"stage_name":"transform_engine","events_processed":641,"events_dropped":0,"avg_latency_ms":977.9641709531166,"throughput_eps":0,"last_update":"2026-03-21T23:26:33.965058753Z"} +2026/03/21 23:26:38 ───────────────────────────────────────────────── +2026/03/21 23:26:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:26:43 [metric_collector] {"stage_name":"metric_collector","events_processed":19249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3849.8,"last_update":"2026-03-21T23:26:38.869721213Z"} +2026/03/21 23:26:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7702,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:26:38.878981779Z"} +2026/03/21 23:26:43 [transform_engine] {"stage_name":"transform_engine","events_processed":641,"events_dropped":0,"avg_latency_ms":977.9641709531166,"throughput_eps":0,"last_update":"2026-03-21T23:26:38.965158944Z"} +2026/03/21 23:26:43 [detection_layer] {"stage_name":"detection_layer","events_processed":641,"events_dropped":0,"avg_latency_ms":18.558917967465717,"throughput_eps":0,"last_update":"2026-03-21T23:26:38.966379291Z"} +2026/03/21 23:26:43 [log_collector] {"stage_name":"log_collector","events_processed":30497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6099.4,"last_update":"2026-03-21T23:26:38.869409305Z"} +2026/03/21 23:26:43 ───────────────────────────────────────────────── +2026/03/21 23:26:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:26:48 [metric_collector] {"stage_name":"metric_collector","events_processed":19254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3850.8,"last_update":"2026-03-21T23:26:43.870675275Z"} +2026/03/21 23:26:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:26:43.879798577Z"} +2026/03/21 23:26:48 [transform_engine] {"stage_name":"transform_engine","events_processed":641,"events_dropped":0,"avg_latency_ms":977.9641709531166,"throughput_eps":0,"last_update":"2026-03-21T23:26:43.966008627Z"} +2026/03/21 23:26:48 [detection_layer] {"stage_name":"detection_layer","events_processed":641,"events_dropped":0,"avg_latency_ms":18.558917967465717,"throughput_eps":0,"last_update":"2026-03-21T23:26:43.965993898Z"} +2026/03/21 23:26:48 [log_collector] {"stage_name":"log_collector","events_processed":30497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6099.4,"last_update":"2026-03-21T23:26:43.870457939Z"} +2026/03/21 23:26:48 ───────────────────────────────────────────────── +2026/03/21 23:26:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:26:53 [log_collector] {"stage_name":"log_collector","events_processed":30497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6099.4,"last_update":"2026-03-21T23:26:48.869406335Z"} +2026/03/21 23:26:53 [metric_collector] {"stage_name":"metric_collector","events_processed":19259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3851.8,"last_update":"2026-03-21T23:26:48.869943434Z"} +2026/03/21 23:26:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:26:48.878512916Z"} +2026/03/21 23:26:53 [transform_engine] {"stage_name":"transform_engine","events_processed":642,"events_dropped":0,"avg_latency_ms":1224.2324617624934,"throughput_eps":0,"last_update":"2026-03-21T23:26:51.175030709Z"} +2026/03/21 23:26:53 [detection_layer] {"stage_name":"detection_layer","events_processed":641,"events_dropped":0,"avg_latency_ms":18.558917967465717,"throughput_eps":0,"last_update":"2026-03-21T23:26:48.965839804Z"} +2026/03/21 23:26:53 ───────────────────────────────────────────────── +2026/03/21 23:26:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:26:58 [log_collector] {"stage_name":"log_collector","events_processed":30497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6099.4,"last_update":"2026-03-21T23:26:53.870020755Z"} +2026/03/21 23:26:58 [metric_collector] {"stage_name":"metric_collector","events_processed":19264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3852.8,"last_update":"2026-03-21T23:26:53.870333515Z"} +2026/03/21 23:26:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:26:53.878662997Z"} +2026/03/21 23:26:58 [transform_engine] {"stage_name":"transform_engine","events_processed":642,"events_dropped":0,"avg_latency_ms":1224.2324617624934,"throughput_eps":0,"last_update":"2026-03-21T23:26:53.965851049Z"} +2026/03/21 23:26:58 [detection_layer] {"stage_name":"detection_layer","events_processed":642,"events_dropped":0,"avg_latency_ms":19.572472373972573,"throughput_eps":0,"last_update":"2026-03-21T23:26:53.965879835Z"} +2026/03/21 23:26:58 ───────────────────────────────────────────────── +2026/03/21 23:27:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:27:03 [log_collector] {"stage_name":"log_collector","events_processed":30497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6099.4,"last_update":"2026-03-21T23:26:58.869920412Z"} +2026/03/21 23:27:03 [metric_collector] {"stage_name":"metric_collector","events_processed":19269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3853.8,"last_update":"2026-03-21T23:26:58.870398548Z"} +2026/03/21 23:27:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:26:58.879327029Z"} +2026/03/21 23:27:03 [transform_engine] {"stage_name":"transform_engine","events_processed":642,"events_dropped":0,"avg_latency_ms":1224.2324617624934,"throughput_eps":0,"last_update":"2026-03-21T23:26:58.965634744Z"} +2026/03/21 23:27:03 [detection_layer] {"stage_name":"detection_layer","events_processed":642,"events_dropped":0,"avg_latency_ms":19.572472373972573,"throughput_eps":0,"last_update":"2026-03-21T23:26:58.965628041Z"} +2026/03/21 23:27:03 ───────────────────────────────────────────────── +2026/03/21 23:27:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:27:08 [log_collector] {"stage_name":"log_collector","events_processed":30497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6099.4,"last_update":"2026-03-21T23:27:03.86961818Z"} +2026/03/21 23:27:08 [metric_collector] {"stage_name":"metric_collector","events_processed":19274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3854.8,"last_update":"2026-03-21T23:27:03.869986927Z"} +2026/03/21 23:27:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7712,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:27:03.878325356Z"} +2026/03/21 23:27:08 [transform_engine] {"stage_name":"transform_engine","events_processed":642,"events_dropped":0,"avg_latency_ms":1224.2324617624934,"throughput_eps":0,"last_update":"2026-03-21T23:27:03.965249012Z"} +2026/03/21 23:27:08 [detection_layer] {"stage_name":"detection_layer","events_processed":642,"events_dropped":0,"avg_latency_ms":19.572472373972573,"throughput_eps":0,"last_update":"2026-03-21T23:27:03.965258831Z"} +2026/03/21 23:27:08 ───────────────────────────────────────────────── +2026/03/21 23:27:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:27:13 [log_collector] {"stage_name":"log_collector","events_processed":30497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6099.4,"last_update":"2026-03-21T23:27:08.869528809Z"} +2026/03/21 23:27:13 [metric_collector] {"stage_name":"metric_collector","events_processed":19279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3855.8,"last_update":"2026-03-21T23:27:08.870463128Z"} +2026/03/21 23:27:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:27:08.878639317Z"} +2026/03/21 23:27:13 [transform_engine] {"stage_name":"transform_engine","events_processed":642,"events_dropped":0,"avg_latency_ms":1224.2324617624934,"throughput_eps":0,"last_update":"2026-03-21T23:27:08.965852458Z"} +2026/03/21 23:27:13 [detection_layer] {"stage_name":"detection_layer","events_processed":642,"events_dropped":0,"avg_latency_ms":19.572472373972573,"throughput_eps":0,"last_update":"2026-03-21T23:27:08.965841907Z"} +2026/03/21 23:27:13 ───────────────────────────────────────────────── +2026/03/21 23:27:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:27:18 [transform_engine] {"stage_name":"transform_engine","events_processed":642,"events_dropped":0,"avg_latency_ms":1224.2324617624934,"throughput_eps":0,"last_update":"2026-03-21T23:27:13.965220402Z"} +2026/03/21 23:27:18 [detection_layer] {"stage_name":"detection_layer","events_processed":642,"events_dropped":0,"avg_latency_ms":19.572472373972573,"throughput_eps":0,"last_update":"2026-03-21T23:27:13.965310926Z"} +2026/03/21 23:27:18 [log_collector] {"stage_name":"log_collector","events_processed":30497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6099.4,"last_update":"2026-03-21T23:27:13.869859749Z"} +2026/03/21 23:27:18 [metric_collector] {"stage_name":"metric_collector","events_processed":19284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3856.8,"last_update":"2026-03-21T23:27:13.87033093Z"} +2026/03/21 23:27:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:27:13.879032325Z"} +2026/03/21 23:27:18 ───────────────────────────────────────────────── +2026/03/21 23:27:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:27:23 [log_collector] {"stage_name":"log_collector","events_processed":30497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6099.4,"last_update":"2026-03-21T23:27:18.869591895Z"} +2026/03/21 23:27:23 [metric_collector] {"stage_name":"metric_collector","events_processed":19289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3857.8,"last_update":"2026-03-21T23:27:18.869848657Z"} +2026/03/21 23:27:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7718,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:27:18.87842415Z"} +2026/03/21 23:27:23 [transform_engine] {"stage_name":"transform_engine","events_processed":643,"events_dropped":0,"avg_latency_ms":994.3880152099947,"throughput_eps":0,"last_update":"2026-03-21T23:27:19.040664894Z"} +2026/03/21 23:27:23 [detection_layer] {"stage_name":"detection_layer","events_processed":642,"events_dropped":0,"avg_latency_ms":19.572472373972573,"throughput_eps":0,"last_update":"2026-03-21T23:27:18.965636029Z"} +2026/03/21 23:27:23 ───────────────────────────────────────────────── +2026/03/21 23:27:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:27:28 [transform_engine] {"stage_name":"transform_engine","events_processed":643,"events_dropped":0,"avg_latency_ms":994.3880152099947,"throughput_eps":0,"last_update":"2026-03-21T23:27:23.966102737Z"} +2026/03/21 23:27:28 [detection_layer] {"stage_name":"detection_layer","events_processed":643,"events_dropped":0,"avg_latency_ms":20.10151429917806,"throughput_eps":0,"last_update":"2026-03-21T23:27:23.966091835Z"} +2026/03/21 23:27:28 [log_collector] {"stage_name":"log_collector","events_processed":30497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6099.4,"last_update":"2026-03-21T23:27:23.869787213Z"} +2026/03/21 23:27:28 [metric_collector] {"stage_name":"metric_collector","events_processed":19294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3858.8,"last_update":"2026-03-21T23:27:23.870241293Z"} +2026/03/21 23:27:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:27:23.879657798Z"} +2026/03/21 23:27:28 ───────────────────────────────────────────────── +2026/03/21 23:27:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:27:33 [log_collector] {"stage_name":"log_collector","events_processed":30497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6099.4,"last_update":"2026-03-21T23:27:28.869676772Z"} +2026/03/21 23:27:33 [metric_collector] {"stage_name":"metric_collector","events_processed":19299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3859.8,"last_update":"2026-03-21T23:27:28.869955405Z"} +2026/03/21 23:27:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7722,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:27:28.878328972Z"} +2026/03/21 23:27:33 [transform_engine] {"stage_name":"transform_engine","events_processed":643,"events_dropped":0,"avg_latency_ms":994.3880152099947,"throughput_eps":0,"last_update":"2026-03-21T23:27:28.965556049Z"} +2026/03/21 23:27:33 [detection_layer] {"stage_name":"detection_layer","events_processed":643,"events_dropped":0,"avg_latency_ms":20.10151429917806,"throughput_eps":0,"last_update":"2026-03-21T23:27:28.965548685Z"} +2026/03/21 23:27:33 ───────────────────────────────────────────────── +2026/03/21 23:27:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:27:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:27:33.87761482Z"} +2026/03/21 23:27:38 [transform_engine] {"stage_name":"transform_engine","events_processed":643,"events_dropped":0,"avg_latency_ms":994.3880152099947,"throughput_eps":0,"last_update":"2026-03-21T23:27:33.965927335Z"} +2026/03/21 23:27:38 [detection_layer] {"stage_name":"detection_layer","events_processed":643,"events_dropped":0,"avg_latency_ms":20.10151429917806,"throughput_eps":0,"last_update":"2026-03-21T23:27:33.965912057Z"} +2026/03/21 23:27:38 [log_collector] {"stage_name":"log_collector","events_processed":30497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6099.4,"last_update":"2026-03-21T23:27:33.869523323Z"} +2026/03/21 23:27:38 [metric_collector] {"stage_name":"metric_collector","events_processed":19304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3860.8,"last_update":"2026-03-21T23:27:33.869924741Z"} +2026/03/21 23:27:38 ───────────────────────────────────────────────── +2026/03/21 23:27:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:27:43 [transform_engine] {"stage_name":"transform_engine","events_processed":643,"events_dropped":0,"avg_latency_ms":994.3880152099947,"throughput_eps":0,"last_update":"2026-03-21T23:27:38.965052319Z"} +2026/03/21 23:27:43 [detection_layer] {"stage_name":"detection_layer","events_processed":643,"events_dropped":0,"avg_latency_ms":20.10151429917806,"throughput_eps":0,"last_update":"2026-03-21T23:27:38.966153628Z"} +2026/03/21 23:27:43 [log_collector] {"stage_name":"log_collector","events_processed":30497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6099.4,"last_update":"2026-03-21T23:27:38.869420435Z"} +2026/03/21 23:27:43 [metric_collector] {"stage_name":"metric_collector","events_processed":19309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3861.8,"last_update":"2026-03-21T23:27:38.86967322Z"} +2026/03/21 23:27:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:27:38.877947957Z"} +2026/03/21 23:27:43 ───────────────────────────────────────────────── +2026/03/21 23:27:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:27:48 [log_collector] {"stage_name":"log_collector","events_processed":30497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6099.4,"last_update":"2026-03-21T23:27:43.869619942Z"} +2026/03/21 23:27:48 [metric_collector] {"stage_name":"metric_collector","events_processed":19314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3862.8,"last_update":"2026-03-21T23:27:43.869856254Z"} +2026/03/21 23:27:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7728,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:27:43.879492541Z"} +2026/03/21 23:27:48 [transform_engine] {"stage_name":"transform_engine","events_processed":643,"events_dropped":0,"avg_latency_ms":994.3880152099947,"throughput_eps":0,"last_update":"2026-03-21T23:27:43.965703131Z"} +2026/03/21 23:27:48 [detection_layer] {"stage_name":"detection_layer","events_processed":643,"events_dropped":0,"avg_latency_ms":20.10151429917806,"throughput_eps":0,"last_update":"2026-03-21T23:27:43.965695235Z"} +2026/03/21 23:27:48 ───────────────────────────────────────────────── +2026/03/21 23:27:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:27:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7730,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:27:48.878535306Z"} +2026/03/21 23:27:53 [transform_engine] {"stage_name":"transform_engine","events_processed":644,"events_dropped":0,"avg_latency_ms":810.0118015679958,"throughput_eps":0,"last_update":"2026-03-21T23:27:49.038413215Z"} +2026/03/21 23:27:53 [detection_layer] {"stage_name":"detection_layer","events_processed":643,"events_dropped":0,"avg_latency_ms":20.10151429917806,"throughput_eps":0,"last_update":"2026-03-21T23:27:48.965892232Z"} +2026/03/21 23:27:53 [log_collector] {"stage_name":"log_collector","events_processed":30497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6099.4,"last_update":"2026-03-21T23:27:48.869408056Z"} +2026/03/21 23:27:53 [metric_collector] {"stage_name":"metric_collector","events_processed":19319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3863.8,"last_update":"2026-03-21T23:27:48.869855782Z"} +2026/03/21 23:27:53 ───────────────────────────────────────────────── +2026/03/21 23:27:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:27:58 [metric_collector] {"stage_name":"metric_collector","events_processed":19324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3864.8,"last_update":"2026-03-21T23:27:53.870194886Z"} +2026/03/21 23:27:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:27:53.878373099Z"} +2026/03/21 23:27:58 [transform_engine] {"stage_name":"transform_engine","events_processed":644,"events_dropped":0,"avg_latency_ms":810.0118015679958,"throughput_eps":0,"last_update":"2026-03-21T23:27:53.965612259Z"} +2026/03/21 23:27:58 [detection_layer] {"stage_name":"detection_layer","events_processed":644,"events_dropped":0,"avg_latency_ms":20.25645203934245,"throughput_eps":0,"last_update":"2026-03-21T23:27:53.965627839Z"} +2026/03/21 23:27:58 [log_collector] {"stage_name":"log_collector","events_processed":30497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6099.4,"last_update":"2026-03-21T23:27:53.869760574Z"} +2026/03/21 23:27:58 ───────────────────────────────────────────────── +2026/03/21 23:28:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:28:03 [log_collector] {"stage_name":"log_collector","events_processed":30497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6099.4,"last_update":"2026-03-21T23:27:58.869735114Z"} +2026/03/21 23:28:03 [metric_collector] {"stage_name":"metric_collector","events_processed":19329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3865.8,"last_update":"2026-03-21T23:27:58.870494549Z"} +2026/03/21 23:28:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:27:58.878310678Z"} +2026/03/21 23:28:03 [transform_engine] {"stage_name":"transform_engine","events_processed":644,"events_dropped":0,"avg_latency_ms":810.0118015679958,"throughput_eps":0,"last_update":"2026-03-21T23:27:58.965705147Z"} +2026/03/21 23:28:03 [detection_layer] {"stage_name":"detection_layer","events_processed":644,"events_dropped":0,"avg_latency_ms":20.25645203934245,"throughput_eps":0,"last_update":"2026-03-21T23:27:58.96558661Z"} +2026/03/21 23:28:03 ───────────────────────────────────────────────── +Saved state: 18 clusters, 30498 messages, reason: none +2026/03/21 23:28:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:28:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7736,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:28:03.87903088Z"} +2026/03/21 23:28:08 [transform_engine] {"stage_name":"transform_engine","events_processed":644,"events_dropped":0,"avg_latency_ms":810.0118015679958,"throughput_eps":0,"last_update":"2026-03-21T23:28:03.965179953Z"} +2026/03/21 23:28:08 [detection_layer] {"stage_name":"detection_layer","events_processed":644,"events_dropped":0,"avg_latency_ms":20.25645203934245,"throughput_eps":0,"last_update":"2026-03-21T23:28:03.966323954Z"} +2026/03/21 23:28:08 [log_collector] {"stage_name":"log_collector","events_processed":30497,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6099.4,"last_update":"2026-03-21T23:28:03.869843464Z"} +2026/03/21 23:28:08 [metric_collector] {"stage_name":"metric_collector","events_processed":19334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3866.8,"last_update":"2026-03-21T23:28:03.870172214Z"} +2026/03/21 23:28:08 ───────────────────────────────────────────────── +2026/03/21 23:28:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:28:13 [detection_layer] {"stage_name":"detection_layer","events_processed":644,"events_dropped":0,"avg_latency_ms":20.25645203934245,"throughput_eps":0,"last_update":"2026-03-21T23:28:08.965407414Z"} +2026/03/21 23:28:13 [log_collector] {"stage_name":"log_collector","events_processed":30500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6100,"last_update":"2026-03-21T23:28:13.869618268Z"} +2026/03/21 23:28:13 [metric_collector] {"stage_name":"metric_collector","events_processed":19339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3867.8,"last_update":"2026-03-21T23:28:08.869757485Z"} +2026/03/21 23:28:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7738,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:28:08.875210528Z"} +2026/03/21 23:28:13 [transform_engine] {"stage_name":"transform_engine","events_processed":644,"events_dropped":0,"avg_latency_ms":810.0118015679958,"throughput_eps":0,"last_update":"2026-03-21T23:28:08.965364491Z"} +2026/03/21 23:28:13 ───────────────────────────────────────────────── +2026/03/21 23:28:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:28:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7740,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:28:13.877427134Z"} +2026/03/21 23:28:18 [transform_engine] {"stage_name":"transform_engine","events_processed":644,"events_dropped":0,"avg_latency_ms":810.0118015679958,"throughput_eps":0,"last_update":"2026-03-21T23:28:13.965614271Z"} +2026/03/21 23:28:18 [detection_layer] {"stage_name":"detection_layer","events_processed":644,"events_dropped":0,"avg_latency_ms":20.25645203934245,"throughput_eps":0,"last_update":"2026-03-21T23:28:13.965574465Z"} +2026/03/21 23:28:18 [log_collector] {"stage_name":"log_collector","events_processed":30500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6100,"last_update":"2026-03-21T23:28:13.869618268Z"} +2026/03/21 23:28:18 [metric_collector] {"stage_name":"metric_collector","events_processed":19344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3868.8,"last_update":"2026-03-21T23:28:13.869891221Z"} +2026/03/21 23:28:18 ───────────────────────────────────────────────── +2026/03/21 23:28:20 [ANOMALY] time=2026-03-21T23:28:20Z score=0.8183 method=SEAD details=MAD!:w=0.25,s=0.76 RRCF-fast:w=0.21,s=0.82 RRCF-mid!:w=0.17,s=0.83 RRCF-slow!:w=0.14,s=0.74 COPOD!:w=0.23,s=0.91 +2026/03/21 23:28:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:28:23 [detection_layer] {"stage_name":"detection_layer","events_processed":644,"events_dropped":0,"avg_latency_ms":20.25645203934245,"throughput_eps":0,"last_update":"2026-03-21T23:28:18.965552729Z"} +2026/03/21 23:28:23 [log_collector] {"stage_name":"log_collector","events_processed":30517,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6103.4,"last_update":"2026-03-21T23:28:23.870369665Z"} +2026/03/21 23:28:23 [metric_collector] {"stage_name":"metric_collector","events_processed":19349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3869.8,"last_update":"2026-03-21T23:28:18.870935016Z"} +2026/03/21 23:28:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:28:18.876303599Z"} +2026/03/21 23:28:23 [transform_engine] {"stage_name":"transform_engine","events_processed":645,"events_dropped":0,"avg_latency_ms":901.6368688543968,"throughput_eps":0,"last_update":"2026-03-21T23:28:20.233590668Z"} +2026/03/21 23:28:23 ───────────────────────────────────────────────── +2026/03/21 23:28:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:28:28 [transform_engine] {"stage_name":"transform_engine","events_processed":645,"events_dropped":0,"avg_latency_ms":901.6368688543968,"throughput_eps":0,"last_update":"2026-03-21T23:28:23.965313662Z"} +2026/03/21 23:28:28 [detection_layer] {"stage_name":"detection_layer","events_processed":645,"events_dropped":0,"avg_latency_ms":18.61268243147396,"throughput_eps":0,"last_update":"2026-03-21T23:28:23.965293804Z"} +2026/03/21 23:28:28 [log_collector] {"stage_name":"log_collector","events_processed":30517,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6103.4,"last_update":"2026-03-21T23:28:23.870369665Z"} +2026/03/21 23:28:28 [metric_collector] {"stage_name":"metric_collector","events_processed":19354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3870.8,"last_update":"2026-03-21T23:28:23.870651464Z"} +2026/03/21 23:28:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:28:23.887144231Z"} +2026/03/21 23:28:28 ───────────────────────────────────────────────── +2026/03/21 23:28:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:28:33 [transform_engine] {"stage_name":"transform_engine","events_processed":645,"events_dropped":0,"avg_latency_ms":901.6368688543968,"throughput_eps":0,"last_update":"2026-03-21T23:28:28.965345816Z"} +2026/03/21 23:28:33 [detection_layer] {"stage_name":"detection_layer","events_processed":645,"events_dropped":0,"avg_latency_ms":18.61268243147396,"throughput_eps":0,"last_update":"2026-03-21T23:28:28.965394269Z"} +2026/03/21 23:28:33 [log_collector] {"stage_name":"log_collector","events_processed":30541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6108.2,"last_update":"2026-03-21T23:28:33.869715381Z"} +2026/03/21 23:28:33 [metric_collector] {"stage_name":"metric_collector","events_processed":19359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3871.8,"last_update":"2026-03-21T23:28:28.870178711Z"} +2026/03/21 23:28:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:28:28.880185186Z"} +2026/03/21 23:28:33 ───────────────────────────────────────────────── +2026/03/21 23:28:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:28:38 [detection_layer] {"stage_name":"detection_layer","events_processed":645,"events_dropped":0,"avg_latency_ms":18.61268243147396,"throughput_eps":0,"last_update":"2026-03-21T23:28:33.965627774Z"} +2026/03/21 23:28:38 [log_collector] {"stage_name":"log_collector","events_processed":30541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6108.2,"last_update":"2026-03-21T23:28:33.869715381Z"} +2026/03/21 23:28:38 [metric_collector] {"stage_name":"metric_collector","events_processed":19364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3872.8,"last_update":"2026-03-21T23:28:33.870084228Z"} +2026/03/21 23:28:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:28:33.878335611Z"} +2026/03/21 23:28:38 [transform_engine] {"stage_name":"transform_engine","events_processed":645,"events_dropped":0,"avg_latency_ms":901.6368688543968,"throughput_eps":0,"last_update":"2026-03-21T23:28:33.965653273Z"} +2026/03/21 23:28:38 ───────────────────────────────────────────────── +2026/03/21 23:28:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:28:43 [metric_collector] {"stage_name":"metric_collector","events_processed":19369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3873.8,"last_update":"2026-03-21T23:28:38.870196514Z"} +2026/03/21 23:28:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7750,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:28:38.880821864Z"} +2026/03/21 23:28:43 [transform_engine] {"stage_name":"transform_engine","events_processed":645,"events_dropped":0,"avg_latency_ms":901.6368688543968,"throughput_eps":0,"last_update":"2026-03-21T23:28:38.965052995Z"} +2026/03/21 23:28:43 [detection_layer] {"stage_name":"detection_layer","events_processed":645,"events_dropped":0,"avg_latency_ms":18.61268243147396,"throughput_eps":0,"last_update":"2026-03-21T23:28:38.966274816Z"} +2026/03/21 23:28:43 [log_collector] {"stage_name":"log_collector","events_processed":30541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6108.2,"last_update":"2026-03-21T23:28:38.869658103Z"} +2026/03/21 23:28:43 ───────────────────────────────────────────────── +2026/03/21 23:28:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:28:48 [log_collector] {"stage_name":"log_collector","events_processed":30541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6108.2,"last_update":"2026-03-21T23:28:43.869410166Z"} +2026/03/21 23:28:48 [metric_collector] {"stage_name":"metric_collector","events_processed":19374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3874.8,"last_update":"2026-03-21T23:28:43.869920693Z"} +2026/03/21 23:28:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7752,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:28:43.877962535Z"} +2026/03/21 23:28:48 [transform_engine] {"stage_name":"transform_engine","events_processed":645,"events_dropped":0,"avg_latency_ms":901.6368688543968,"throughput_eps":0,"last_update":"2026-03-21T23:28:43.965162181Z"} +2026/03/21 23:28:48 [detection_layer] {"stage_name":"detection_layer","events_processed":645,"events_dropped":0,"avg_latency_ms":18.61268243147396,"throughput_eps":0,"last_update":"2026-03-21T23:28:43.96530773Z"} +2026/03/21 23:28:48 ───────────────────────────────────────────────── +2026/03/21 23:28:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:28:53 [transform_engine] {"stage_name":"transform_engine","events_processed":646,"events_dropped":0,"avg_latency_ms":749.2336558835175,"throughput_eps":0,"last_update":"2026-03-21T23:28:49.105157785Z"} +2026/03/21 23:28:53 [detection_layer] {"stage_name":"detection_layer","events_processed":645,"events_dropped":0,"avg_latency_ms":18.61268243147396,"throughput_eps":0,"last_update":"2026-03-21T23:28:48.965575495Z"} +2026/03/21 23:28:53 [log_collector] {"stage_name":"log_collector","events_processed":30541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6108.2,"last_update":"2026-03-21T23:28:48.869953378Z"} +2026/03/21 23:28:53 [metric_collector] {"stage_name":"metric_collector","events_processed":19379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3875.8,"last_update":"2026-03-21T23:28:48.870183939Z"} +2026/03/21 23:28:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:28:48.879337271Z"} +2026/03/21 23:28:53 ───────────────────────────────────────────────── +2026/03/21 23:28:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:28:58 [log_collector] {"stage_name":"log_collector","events_processed":30541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6108.2,"last_update":"2026-03-21T23:28:53.870058445Z"} +2026/03/21 23:28:58 [metric_collector] {"stage_name":"metric_collector","events_processed":19384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3876.8,"last_update":"2026-03-21T23:28:53.870294347Z"} +2026/03/21 23:28:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:28:53.879774854Z"} +2026/03/21 23:28:58 [transform_engine] {"stage_name":"transform_engine","events_processed":646,"events_dropped":0,"avg_latency_ms":749.2336558835175,"throughput_eps":0,"last_update":"2026-03-21T23:28:53.965952202Z"} +2026/03/21 23:28:58 [detection_layer] {"stage_name":"detection_layer","events_processed":646,"events_dropped":0,"avg_latency_ms":18.99892894517917,"throughput_eps":0,"last_update":"2026-03-21T23:28:53.965968614Z"} +2026/03/21 23:28:58 ───────────────────────────────────────────────── +2026/03/21 23:29:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:29:03 [metric_collector] {"stage_name":"metric_collector","events_processed":19389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3877.8,"last_update":"2026-03-21T23:28:58.869955337Z"} +2026/03/21 23:29:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7758,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:28:58.878557212Z"} +2026/03/21 23:29:03 [transform_engine] {"stage_name":"transform_engine","events_processed":646,"events_dropped":0,"avg_latency_ms":749.2336558835175,"throughput_eps":0,"last_update":"2026-03-21T23:28:58.966020723Z"} +2026/03/21 23:29:03 [detection_layer] {"stage_name":"detection_layer","events_processed":646,"events_dropped":0,"avg_latency_ms":18.99892894517917,"throughput_eps":0,"last_update":"2026-03-21T23:28:58.965906595Z"} +2026/03/21 23:29:03 [log_collector] {"stage_name":"log_collector","events_processed":30541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6108.2,"last_update":"2026-03-21T23:28:58.869925209Z"} +2026/03/21 23:29:03 ───────────────────────────────────────────────── +2026/03/21 23:29:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:29:08 [transform_engine] {"stage_name":"transform_engine","events_processed":646,"events_dropped":0,"avg_latency_ms":749.2336558835175,"throughput_eps":0,"last_update":"2026-03-21T23:29:03.965193882Z"} +2026/03/21 23:29:08 [detection_layer] {"stage_name":"detection_layer","events_processed":646,"events_dropped":0,"avg_latency_ms":18.99892894517917,"throughput_eps":0,"last_update":"2026-03-21T23:29:03.965254499Z"} +2026/03/21 23:29:08 [log_collector] {"stage_name":"log_collector","events_processed":30541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6108.2,"last_update":"2026-03-21T23:29:03.869602495Z"} +2026/03/21 23:29:08 [metric_collector] {"stage_name":"metric_collector","events_processed":19394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3878.8,"last_update":"2026-03-21T23:29:03.869910686Z"} +2026/03/21 23:29:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:29:03.880016571Z"} +2026/03/21 23:29:08 ───────────────────────────────────────────────── +2026/03/21 23:29:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:29:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:29:08.878254984Z"} +2026/03/21 23:29:13 [transform_engine] {"stage_name":"transform_engine","events_processed":646,"events_dropped":0,"avg_latency_ms":749.2336558835175,"throughput_eps":0,"last_update":"2026-03-21T23:29:08.965629375Z"} +2026/03/21 23:29:13 [detection_layer] {"stage_name":"detection_layer","events_processed":646,"events_dropped":0,"avg_latency_ms":18.99892894517917,"throughput_eps":0,"last_update":"2026-03-21T23:29:08.965613425Z"} +2026/03/21 23:29:13 [log_collector] {"stage_name":"log_collector","events_processed":30541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6108.2,"last_update":"2026-03-21T23:29:08.869412569Z"} +2026/03/21 23:29:13 [metric_collector] {"stage_name":"metric_collector","events_processed":19399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3879.8,"last_update":"2026-03-21T23:29:08.869849746Z"} +2026/03/21 23:29:13 ───────────────────────────────────────────────── +2026/03/21 23:29:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:29:18 [transform_engine] {"stage_name":"transform_engine","events_processed":646,"events_dropped":0,"avg_latency_ms":749.2336558835175,"throughput_eps":0,"last_update":"2026-03-21T23:29:13.966119454Z"} +2026/03/21 23:29:18 [detection_layer] {"stage_name":"detection_layer","events_processed":646,"events_dropped":0,"avg_latency_ms":18.99892894517917,"throughput_eps":0,"last_update":"2026-03-21T23:29:13.966111559Z"} +2026/03/21 23:29:18 [log_collector] {"stage_name":"log_collector","events_processed":30541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6108.2,"last_update":"2026-03-21T23:29:13.869843054Z"} +2026/03/21 23:29:18 [metric_collector] {"stage_name":"metric_collector","events_processed":19404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3880.8,"last_update":"2026-03-21T23:29:13.869753432Z"} +2026/03/21 23:29:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:29:13.878922323Z"} +2026/03/21 23:29:18 ───────────────────────────────────────────────── +2026/03/21 23:29:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:29:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7766,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:29:18.879834646Z"} +2026/03/21 23:29:23 [transform_engine] {"stage_name":"transform_engine","events_processed":647,"events_dropped":0,"avg_latency_ms":614.3276977068141,"throughput_eps":0,"last_update":"2026-03-21T23:29:19.04095148Z"} +2026/03/21 23:29:23 [detection_layer] {"stage_name":"detection_layer","events_processed":646,"events_dropped":0,"avg_latency_ms":18.99892894517917,"throughput_eps":0,"last_update":"2026-03-21T23:29:18.966231314Z"} +2026/03/21 23:29:23 [log_collector] {"stage_name":"log_collector","events_processed":30541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6108.2,"last_update":"2026-03-21T23:29:18.870318681Z"} +2026/03/21 23:29:23 [metric_collector] {"stage_name":"metric_collector","events_processed":19409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3881.8,"last_update":"2026-03-21T23:29:18.870974767Z"} +2026/03/21 23:29:23 ───────────────────────────────────────────────── +2026/03/21 23:29:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:29:28 [transform_engine] {"stage_name":"transform_engine","events_processed":647,"events_dropped":0,"avg_latency_ms":614.3276977068141,"throughput_eps":0,"last_update":"2026-03-21T23:29:23.966225642Z"} +2026/03/21 23:29:28 [detection_layer] {"stage_name":"detection_layer","events_processed":647,"events_dropped":0,"avg_latency_ms":20.024689356143337,"throughput_eps":0,"last_update":"2026-03-21T23:29:23.966111113Z"} +2026/03/21 23:29:28 [log_collector] {"stage_name":"log_collector","events_processed":30541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6108.2,"last_update":"2026-03-21T23:29:23.870289363Z"} +2026/03/21 23:29:28 [metric_collector] {"stage_name":"metric_collector","events_processed":19414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3882.8,"last_update":"2026-03-21T23:29:23.870810921Z"} +2026/03/21 23:29:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7768,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:29:23.878767741Z"} +2026/03/21 23:29:28 ───────────────────────────────────────────────── +2026/03/21 23:29:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:29:33 [log_collector] {"stage_name":"log_collector","events_processed":30541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6108.2,"last_update":"2026-03-21T23:29:28.869424178Z"} +2026/03/21 23:29:33 [metric_collector] {"stage_name":"metric_collector","events_processed":19419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3883.8,"last_update":"2026-03-21T23:29:28.869870824Z"} +2026/03/21 23:29:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7770,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:29:28.877977961Z"} +2026/03/21 23:29:33 [transform_engine] {"stage_name":"transform_engine","events_processed":647,"events_dropped":0,"avg_latency_ms":614.3276977068141,"throughput_eps":0,"last_update":"2026-03-21T23:29:28.965164131Z"} +2026/03/21 23:29:33 [detection_layer] {"stage_name":"detection_layer","events_processed":647,"events_dropped":0,"avg_latency_ms":20.024689356143337,"throughput_eps":0,"last_update":"2026-03-21T23:29:28.966289126Z"} +2026/03/21 23:29:33 ───────────────────────────────────────────────── +Saved state: 18 clusters, 30542 messages, reason: none +2026/03/21 23:29:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:29:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:29:33.879679898Z"} +2026/03/21 23:29:38 [transform_engine] {"stage_name":"transform_engine","events_processed":647,"events_dropped":0,"avg_latency_ms":614.3276977068141,"throughput_eps":0,"last_update":"2026-03-21T23:29:33.965921328Z"} +2026/03/21 23:29:38 [detection_layer] {"stage_name":"detection_layer","events_processed":647,"events_dropped":0,"avg_latency_ms":20.024689356143337,"throughput_eps":0,"last_update":"2026-03-21T23:29:33.965894316Z"} +2026/03/21 23:29:38 [log_collector] {"stage_name":"log_collector","events_processed":30541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6108.2,"last_update":"2026-03-21T23:29:33.869510611Z"} +2026/03/21 23:29:38 [metric_collector] {"stage_name":"metric_collector","events_processed":19424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3884.8,"last_update":"2026-03-21T23:29:33.86980306Z"} +2026/03/21 23:29:38 ───────────────────────────────────────────────── +2026/03/21 23:29:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:29:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:29:38.879078687Z"} +2026/03/21 23:29:43 [transform_engine] {"stage_name":"transform_engine","events_processed":647,"events_dropped":0,"avg_latency_ms":614.3276977068141,"throughput_eps":0,"last_update":"2026-03-21T23:29:38.966322728Z"} +2026/03/21 23:29:43 [detection_layer] {"stage_name":"detection_layer","events_processed":647,"events_dropped":0,"avg_latency_ms":20.024689356143337,"throughput_eps":0,"last_update":"2026-03-21T23:29:38.965265263Z"} +2026/03/21 23:29:43 [log_collector] {"stage_name":"log_collector","events_processed":30546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6109.2,"last_update":"2026-03-21T23:29:43.869424529Z"} +2026/03/21 23:29:43 [metric_collector] {"stage_name":"metric_collector","events_processed":19429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3885.8,"last_update":"2026-03-21T23:29:38.870780584Z"} +2026/03/21 23:29:43 ───────────────────────────────────────────────── +2026/03/21 23:29:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:29:48 [log_collector] {"stage_name":"log_collector","events_processed":30546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6109.2,"last_update":"2026-03-21T23:29:43.869424529Z"} +2026/03/21 23:29:48 [metric_collector] {"stage_name":"metric_collector","events_processed":19434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3886.8,"last_update":"2026-03-21T23:29:43.869814888Z"} +2026/03/21 23:29:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:29:43.879387942Z"} +2026/03/21 23:29:48 [transform_engine] {"stage_name":"transform_engine","events_processed":647,"events_dropped":0,"avg_latency_ms":614.3276977068141,"throughput_eps":0,"last_update":"2026-03-21T23:29:43.965405945Z"} +2026/03/21 23:29:48 [detection_layer] {"stage_name":"detection_layer","events_processed":647,"events_dropped":0,"avg_latency_ms":20.024689356143337,"throughput_eps":0,"last_update":"2026-03-21T23:29:43.965383392Z"} +2026/03/21 23:29:48 ───────────────────────────────────────────────── +2026/03/21 23:29:49 [ANOMALY] time=2026-03-21T23:29:49Z score=0.9021 method=SEAD details=MAD!:w=0.25,s=0.92 RRCF-fast!:w=0.21,s=0.94 RRCF-mid!:w=0.17,s=0.92 RRCF-slow!:w=0.14,s=0.97 COPOD!:w=0.23,s=0.79 +2026/03/21 23:29:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:29:53 [log_collector] {"stage_name":"log_collector","events_processed":30546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6109.2,"last_update":"2026-03-21T23:29:53.869432464Z"} +2026/03/21 23:29:53 [metric_collector] {"stage_name":"metric_collector","events_processed":19439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3887.8,"last_update":"2026-03-21T23:29:48.869968961Z"} +2026/03/21 23:29:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:29:48.875871014Z"} +2026/03/21 23:29:53 [transform_engine] {"stage_name":"transform_engine","events_processed":648,"events_dropped":0,"avg_latency_ms":540.5682033654513,"throughput_eps":0,"last_update":"2026-03-21T23:29:49.211668191Z"} +2026/03/21 23:29:53 [detection_layer] {"stage_name":"detection_layer","events_processed":647,"events_dropped":0,"avg_latency_ms":20.024689356143337,"throughput_eps":0,"last_update":"2026-03-21T23:29:48.966426768Z"} +2026/03/21 23:29:53 ───────────────────────────────────────────────── +2026/03/21 23:29:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:29:58 [transform_engine] {"stage_name":"transform_engine","events_processed":648,"events_dropped":0,"avg_latency_ms":540.5682033654513,"throughput_eps":0,"last_update":"2026-03-21T23:29:53.965338907Z"} +2026/03/21 23:29:58 [detection_layer] {"stage_name":"detection_layer","events_processed":648,"events_dropped":0,"avg_latency_ms":18.07058928491467,"throughput_eps":0,"last_update":"2026-03-21T23:29:53.965312646Z"} +2026/03/21 23:29:58 [log_collector] {"stage_name":"log_collector","events_processed":30546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6109.2,"last_update":"2026-03-21T23:29:53.869432464Z"} +2026/03/21 23:29:58 [metric_collector] {"stage_name":"metric_collector","events_processed":19444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3888.8,"last_update":"2026-03-21T23:29:53.869862618Z"} +2026/03/21 23:29:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7780,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:29:53.876117297Z"} +2026/03/21 23:29:58 ───────────────────────────────────────────────── +2026/03/21 23:30:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:30:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7782,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:29:58.877579203Z"} +2026/03/21 23:30:03 [transform_engine] {"stage_name":"transform_engine","events_processed":648,"events_dropped":0,"avg_latency_ms":540.5682033654513,"throughput_eps":0,"last_update":"2026-03-21T23:29:58.965770319Z"} +2026/03/21 23:30:03 [detection_layer] {"stage_name":"detection_layer","events_processed":648,"events_dropped":0,"avg_latency_ms":18.07058928491467,"throughput_eps":0,"last_update":"2026-03-21T23:29:58.965735373Z"} +2026/03/21 23:30:03 [log_collector] {"stage_name":"log_collector","events_processed":30546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6109.2,"last_update":"2026-03-21T23:29:58.869492395Z"} +2026/03/21 23:30:03 [metric_collector] {"stage_name":"metric_collector","events_processed":19449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3889.8,"last_update":"2026-03-21T23:29:58.869916167Z"} +2026/03/21 23:30:03 ───────────────────────────────────────────────── +2026/03/21 23:30:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:30:08 [log_collector] {"stage_name":"log_collector","events_processed":30546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6109.2,"last_update":"2026-03-21T23:30:08.869414377Z"} +2026/03/21 23:30:08 [metric_collector] {"stage_name":"metric_collector","events_processed":19454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3890.8,"last_update":"2026-03-21T23:30:03.869616552Z"} +2026/03/21 23:30:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:30:03.88460036Z"} +2026/03/21 23:30:08 [transform_engine] {"stage_name":"transform_engine","events_processed":648,"events_dropped":0,"avg_latency_ms":540.5682033654513,"throughput_eps":0,"last_update":"2026-03-21T23:30:03.965748616Z"} +2026/03/21 23:30:08 [detection_layer] {"stage_name":"detection_layer","events_processed":648,"events_dropped":0,"avg_latency_ms":18.07058928491467,"throughput_eps":0,"last_update":"2026-03-21T23:30:03.965731604Z"} +2026/03/21 23:30:08 ───────────────────────────────────────────────── +2026/03/21 23:30:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:30:13 [metric_collector] {"stage_name":"metric_collector","events_processed":19459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3891.8,"last_update":"2026-03-21T23:30:08.869825905Z"} +2026/03/21 23:30:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:30:08.87687724Z"} +2026/03/21 23:30:13 [transform_engine] {"stage_name":"transform_engine","events_processed":648,"events_dropped":0,"avg_latency_ms":540.5682033654513,"throughput_eps":0,"last_update":"2026-03-21T23:30:08.966013186Z"} +2026/03/21 23:30:13 [detection_layer] {"stage_name":"detection_layer","events_processed":648,"events_dropped":0,"avg_latency_ms":18.07058928491467,"throughput_eps":0,"last_update":"2026-03-21T23:30:08.966042892Z"} +2026/03/21 23:30:13 [log_collector] {"stage_name":"log_collector","events_processed":30546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6109.2,"last_update":"2026-03-21T23:30:08.869414377Z"} +2026/03/21 23:30:13 ───────────────────────────────────────────────── +2026/03/21 23:30:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:30:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:30:13.877400898Z"} +2026/03/21 23:30:18 [transform_engine] {"stage_name":"transform_engine","events_processed":648,"events_dropped":0,"avg_latency_ms":540.5682033654513,"throughput_eps":0,"last_update":"2026-03-21T23:30:13.965606863Z"} +2026/03/21 23:30:18 [detection_layer] {"stage_name":"detection_layer","events_processed":648,"events_dropped":0,"avg_latency_ms":18.07058928491467,"throughput_eps":0,"last_update":"2026-03-21T23:30:13.965614628Z"} +2026/03/21 23:30:18 [log_collector] {"stage_name":"log_collector","events_processed":30546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6109.2,"last_update":"2026-03-21T23:30:13.869841851Z"} +2026/03/21 23:30:18 [metric_collector] {"stage_name":"metric_collector","events_processed":19464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3892.8,"last_update":"2026-03-21T23:30:13.870110636Z"} +2026/03/21 23:30:18 ───────────────────────────────────────────────── +2026/03/21 23:30:20 [ANOMALY] time=2026-03-21T23:30:20Z score=0.8798 method=SEAD details=MAD!:w=0.25,s=0.86 RRCF-fast!:w=0.21,s=0.98 RRCF-mid!:w=0.17,s=0.90 RRCF-slow!:w=0.14,s=0.88 COPOD!:w=0.23,s=0.80 +2026/03/21 23:30:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:30:23 [metric_collector] {"stage_name":"metric_collector","events_processed":19468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3893.6,"last_update":"2026-03-21T23:30:18.87001356Z"} +2026/03/21 23:30:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:30:18.876107151Z"} +2026/03/21 23:30:23 [transform_engine] {"stage_name":"transform_engine","events_processed":649,"events_dropped":0,"avg_latency_ms":815.9077252923611,"throughput_eps":0,"last_update":"2026-03-21T23:30:20.882725433Z"} +2026/03/21 23:30:23 [detection_layer] {"stage_name":"detection_layer","events_processed":648,"events_dropped":0,"avg_latency_ms":18.07058928491467,"throughput_eps":0,"last_update":"2026-03-21T23:30:18.966449115Z"} +2026/03/21 23:30:23 [log_collector] {"stage_name":"log_collector","events_processed":30555,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6111,"last_update":"2026-03-21T23:30:18.870257727Z"} +2026/03/21 23:30:23 ───────────────────────────────────────────────── +2026/03/21 23:30:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:30:28 [log_collector] {"stage_name":"log_collector","events_processed":30557,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6111.4,"last_update":"2026-03-21T23:30:23.869524908Z"} +2026/03/21 23:30:28 [metric_collector] {"stage_name":"metric_collector","events_processed":19474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3894.8,"last_update":"2026-03-21T23:30:23.869985349Z"} +2026/03/21 23:30:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:30:23.878802817Z"} +2026/03/21 23:30:28 [transform_engine] {"stage_name":"transform_engine","events_processed":649,"events_dropped":0,"avg_latency_ms":815.9077252923611,"throughput_eps":0,"last_update":"2026-03-21T23:30:23.965962538Z"} +2026/03/21 23:30:28 [detection_layer] {"stage_name":"detection_layer","events_processed":649,"events_dropped":0,"avg_latency_ms":17.712998427931737,"throughput_eps":0,"last_update":"2026-03-21T23:30:23.965941568Z"} +2026/03/21 23:30:28 ───────────────────────────────────────────────── +2026/03/21 23:30:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:30:33 [log_collector] {"stage_name":"log_collector","events_processed":30832,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6166.4,"last_update":"2026-03-21T23:30:28.869818076Z"} +2026/03/21 23:30:33 [metric_collector] {"stage_name":"metric_collector","events_processed":19479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3895.8,"last_update":"2026-03-21T23:30:28.870139902Z"} +2026/03/21 23:30:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:30:28.877174495Z"} +2026/03/21 23:30:33 [transform_engine] {"stage_name":"transform_engine","events_processed":649,"events_dropped":0,"avg_latency_ms":815.9077252923611,"throughput_eps":0,"last_update":"2026-03-21T23:30:28.965606553Z"} +2026/03/21 23:30:33 [detection_layer] {"stage_name":"detection_layer","events_processed":649,"events_dropped":0,"avg_latency_ms":17.712998427931737,"throughput_eps":0,"last_update":"2026-03-21T23:30:28.965620619Z"} +2026/03/21 23:30:33 ───────────────────────────────────────────────── +2026/03/21 23:30:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:30:38 [detection_layer] {"stage_name":"detection_layer","events_processed":649,"events_dropped":0,"avg_latency_ms":17.712998427931737,"throughput_eps":0,"last_update":"2026-03-21T23:30:33.965277272Z"} +2026/03/21 23:30:38 [log_collector] {"stage_name":"log_collector","events_processed":30912,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6182.4,"last_update":"2026-03-21T23:30:38.869527813Z"} +2026/03/21 23:30:38 [metric_collector] {"stage_name":"metric_collector","events_processed":19484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3896.8,"last_update":"2026-03-21T23:30:33.870305958Z"} +2026/03/21 23:30:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7796,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:30:33.878024993Z"} +2026/03/21 23:30:38 [transform_engine] {"stage_name":"transform_engine","events_processed":649,"events_dropped":0,"avg_latency_ms":815.9077252923611,"throughput_eps":0,"last_update":"2026-03-21T23:30:33.965216505Z"} +2026/03/21 23:30:38 ───────────────────────────────────────────────── +Saved state: 18 clusters, 30913 messages, reason: none +2026/03/21 23:30:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:30:43 [log_collector] {"stage_name":"log_collector","events_processed":30915,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6183,"last_update":"2026-03-21T23:30:43.870266254Z"} +2026/03/21 23:30:43 [metric_collector] {"stage_name":"metric_collector","events_processed":19489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3897.8,"last_update":"2026-03-21T23:30:38.869678873Z"} +2026/03/21 23:30:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:30:38.878562787Z"} +2026/03/21 23:30:43 [transform_engine] {"stage_name":"transform_engine","events_processed":649,"events_dropped":0,"avg_latency_ms":815.9077252923611,"throughput_eps":0,"last_update":"2026-03-21T23:30:38.966028273Z"} +2026/03/21 23:30:43 [detection_layer] {"stage_name":"detection_layer","events_processed":649,"events_dropped":0,"avg_latency_ms":17.712998427931737,"throughput_eps":0,"last_update":"2026-03-21T23:30:38.965990089Z"} +2026/03/21 23:30:43 ───────────────────────────────────────────────── +2026/03/21 23:30:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:30:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7800,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:30:43.876716738Z"} +2026/03/21 23:30:48 [transform_engine] {"stage_name":"transform_engine","events_processed":649,"events_dropped":0,"avg_latency_ms":815.9077252923611,"throughput_eps":0,"last_update":"2026-03-21T23:30:43.966008051Z"} +2026/03/21 23:30:48 [detection_layer] {"stage_name":"detection_layer","events_processed":649,"events_dropped":0,"avg_latency_ms":17.712998427931737,"throughput_eps":0,"last_update":"2026-03-21T23:30:43.96604393Z"} +2026/03/21 23:30:48 [log_collector] {"stage_name":"log_collector","events_processed":30915,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6183,"last_update":"2026-03-21T23:30:48.869923446Z"} +2026/03/21 23:30:48 [metric_collector] {"stage_name":"metric_collector","events_processed":19494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3898.8,"last_update":"2026-03-21T23:30:43.870709272Z"} +2026/03/21 23:30:48 ───────────────────────────────────────────────── +2026/03/21 23:30:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:30:53 [transform_engine] {"stage_name":"transform_engine","events_processed":650,"events_dropped":0,"avg_latency_ms":833.391155633889,"throughput_eps":0,"last_update":"2026-03-21T23:30:49.869171238Z"} +2026/03/21 23:30:53 [detection_layer] {"stage_name":"detection_layer","events_processed":649,"events_dropped":0,"avg_latency_ms":17.712998427931737,"throughput_eps":0,"last_update":"2026-03-21T23:30:48.965801586Z"} +2026/03/21 23:30:53 [log_collector] {"stage_name":"log_collector","events_processed":30915,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6183,"last_update":"2026-03-21T23:30:48.869923446Z"} +2026/03/21 23:30:53 [metric_collector] {"stage_name":"metric_collector","events_processed":19499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3899.8,"last_update":"2026-03-21T23:30:48.870422883Z"} +2026/03/21 23:30:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7802,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:30:48.879654473Z"} +2026/03/21 23:30:53 ───────────────────────────────────────────────── +2026/03/21 23:30:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:30:58 [log_collector] {"stage_name":"log_collector","events_processed":30925,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6185,"last_update":"2026-03-21T23:30:53.870083445Z"} +2026/03/21 23:30:58 [metric_collector] {"stage_name":"metric_collector","events_processed":19504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3900.8,"last_update":"2026-03-21T23:30:53.870428656Z"} +2026/03/21 23:30:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:30:53.878628641Z"} +2026/03/21 23:30:58 [transform_engine] {"stage_name":"transform_engine","events_processed":650,"events_dropped":0,"avg_latency_ms":833.391155633889,"throughput_eps":0,"last_update":"2026-03-21T23:30:53.965923732Z"} +2026/03/21 23:30:58 [detection_layer] {"stage_name":"detection_layer","events_processed":650,"events_dropped":0,"avg_latency_ms":17.045034342345392,"throughput_eps":0,"last_update":"2026-03-21T23:30:53.965817698Z"} +2026/03/21 23:30:58 ───────────────────────────────────────────────── +2026/03/21 23:31:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:31:03 [log_collector] {"stage_name":"log_collector","events_processed":30933,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6186.6,"last_update":"2026-03-21T23:30:58.869423356Z"} +2026/03/21 23:31:03 [metric_collector] {"stage_name":"metric_collector","events_processed":19509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3901.8,"last_update":"2026-03-21T23:30:58.869798144Z"} +2026/03/21 23:31:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:30:58.879365207Z"} +2026/03/21 23:31:03 [transform_engine] {"stage_name":"transform_engine","events_processed":650,"events_dropped":0,"avg_latency_ms":833.391155633889,"throughput_eps":0,"last_update":"2026-03-21T23:30:58.965586141Z"} +2026/03/21 23:31:03 [detection_layer] {"stage_name":"detection_layer","events_processed":650,"events_dropped":0,"avg_latency_ms":17.045034342345392,"throughput_eps":0,"last_update":"2026-03-21T23:30:58.965566964Z"} +2026/03/21 23:31:03 ───────────────────────────────────────────────── +2026/03/21 23:31:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:31:08 [transform_engine] {"stage_name":"transform_engine","events_processed":650,"events_dropped":0,"avg_latency_ms":833.391155633889,"throughput_eps":0,"last_update":"2026-03-21T23:31:03.965998689Z"} +2026/03/21 23:31:08 [detection_layer] {"stage_name":"detection_layer","events_processed":650,"events_dropped":0,"avg_latency_ms":17.045034342345392,"throughput_eps":0,"last_update":"2026-03-21T23:31:03.965987397Z"} +2026/03/21 23:31:08 [log_collector] {"stage_name":"log_collector","events_processed":30942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6188.4,"last_update":"2026-03-21T23:31:03.869586077Z"} +2026/03/21 23:31:08 [metric_collector] {"stage_name":"metric_collector","events_processed":19514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3902.8,"last_update":"2026-03-21T23:31:03.869987235Z"} +2026/03/21 23:31:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:31:03.878704571Z"} +2026/03/21 23:31:08 ───────────────────────────────────────────────── +2026/03/21 23:31:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:31:13 [log_collector] {"stage_name":"log_collector","events_processed":30942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6188.4,"last_update":"2026-03-21T23:31:08.869416986Z"} +2026/03/21 23:31:13 [metric_collector] {"stage_name":"metric_collector","events_processed":19519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3903.8,"last_update":"2026-03-21T23:31:08.869839976Z"} +2026/03/21 23:31:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:31:08.878185921Z"} +2026/03/21 23:31:13 [transform_engine] {"stage_name":"transform_engine","events_processed":650,"events_dropped":0,"avg_latency_ms":833.391155633889,"throughput_eps":0,"last_update":"2026-03-21T23:31:08.96545362Z"} +2026/03/21 23:31:13 [detection_layer] {"stage_name":"detection_layer","events_processed":650,"events_dropped":0,"avg_latency_ms":17.045034342345392,"throughput_eps":0,"last_update":"2026-03-21T23:31:08.965441316Z"} +2026/03/21 23:31:13 ───────────────────────────────────────────────── +2026/03/21 23:31:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:31:18 [transform_engine] {"stage_name":"transform_engine","events_processed":650,"events_dropped":0,"avg_latency_ms":833.391155633889,"throughput_eps":0,"last_update":"2026-03-21T23:31:13.965873569Z"} +2026/03/21 23:31:18 [detection_layer] {"stage_name":"detection_layer","events_processed":650,"events_dropped":0,"avg_latency_ms":17.045034342345392,"throughput_eps":0,"last_update":"2026-03-21T23:31:13.965855956Z"} +2026/03/21 23:31:18 [log_collector] {"stage_name":"log_collector","events_processed":30942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6188.4,"last_update":"2026-03-21T23:31:13.869408336Z"} +2026/03/21 23:31:18 [metric_collector] {"stage_name":"metric_collector","events_processed":19523,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3904.6,"last_update":"2026-03-21T23:31:13.869479943Z"} +2026/03/21 23:31:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7812,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:31:13.878416428Z"} +2026/03/21 23:31:18 ───────────────────────────────────────────────── +2026/03/21 23:31:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:31:23 [log_collector] {"stage_name":"log_collector","events_processed":30942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6188.4,"last_update":"2026-03-21T23:31:18.86957349Z"} +2026/03/21 23:31:23 [metric_collector] {"stage_name":"metric_collector","events_processed":19528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3905.6,"last_update":"2026-03-21T23:31:18.869385531Z"} +2026/03/21 23:31:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:31:18.878205724Z"} +2026/03/21 23:31:23 [transform_engine] {"stage_name":"transform_engine","events_processed":651,"events_dropped":0,"avg_latency_ms":691.1523199071112,"throughput_eps":0,"last_update":"2026-03-21T23:31:19.087667092Z"} +2026/03/21 23:31:23 [detection_layer] {"stage_name":"detection_layer","events_processed":650,"events_dropped":0,"avg_latency_ms":17.045034342345392,"throughput_eps":0,"last_update":"2026-03-21T23:31:18.965453744Z"} +2026/03/21 23:31:23 ───────────────────────────────────────────────── +2026/03/21 23:31:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:31:28 [log_collector] {"stage_name":"log_collector","events_processed":30942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6188.4,"last_update":"2026-03-21T23:31:23.869770439Z"} +2026/03/21 23:31:28 [metric_collector] {"stage_name":"metric_collector","events_processed":19534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3906.8,"last_update":"2026-03-21T23:31:23.870156389Z"} +2026/03/21 23:31:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7816,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:31:23.879177597Z"} +2026/03/21 23:31:28 [transform_engine] {"stage_name":"transform_engine","events_processed":651,"events_dropped":0,"avg_latency_ms":691.1523199071112,"throughput_eps":0,"last_update":"2026-03-21T23:31:23.965442415Z"} +2026/03/21 23:31:28 [detection_layer] {"stage_name":"detection_layer","events_processed":651,"events_dropped":0,"avg_latency_ms":17.626628473876316,"throughput_eps":0,"last_update":"2026-03-21T23:31:23.965543358Z"} +2026/03/21 23:31:28 ───────────────────────────────────────────────── +2026/03/21 23:31:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:31:33 [log_collector] {"stage_name":"log_collector","events_processed":30942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6188.4,"last_update":"2026-03-21T23:31:28.870149381Z"} +2026/03/21 23:31:33 [metric_collector] {"stage_name":"metric_collector","events_processed":19544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3908.8,"last_update":"2026-03-21T23:31:33.869953103Z"} +2026/03/21 23:31:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7818,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:31:28.879332008Z"} +2026/03/21 23:31:33 [transform_engine] {"stage_name":"transform_engine","events_processed":651,"events_dropped":0,"avg_latency_ms":691.1523199071112,"throughput_eps":0,"last_update":"2026-03-21T23:31:28.965765719Z"} +2026/03/21 23:31:33 [detection_layer] {"stage_name":"detection_layer","events_processed":651,"events_dropped":0,"avg_latency_ms":17.626628473876316,"throughput_eps":0,"last_update":"2026-03-21T23:31:28.96578737Z"} +2026/03/21 23:31:33 ───────────────────────────────────────────────── +2026/03/21 23:31:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:31:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7820,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:31:33.878181962Z"} +2026/03/21 23:31:38 [transform_engine] {"stage_name":"transform_engine","events_processed":651,"events_dropped":0,"avg_latency_ms":691.1523199071112,"throughput_eps":0,"last_update":"2026-03-21T23:31:33.965549162Z"} +2026/03/21 23:31:38 [detection_layer] {"stage_name":"detection_layer","events_processed":651,"events_dropped":0,"avg_latency_ms":17.626628473876316,"throughput_eps":0,"last_update":"2026-03-21T23:31:33.965572356Z"} +2026/03/21 23:31:38 [log_collector] {"stage_name":"log_collector","events_processed":30942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6188.4,"last_update":"2026-03-21T23:31:33.870034328Z"} +2026/03/21 23:31:38 [metric_collector] {"stage_name":"metric_collector","events_processed":19544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3908.8,"last_update":"2026-03-21T23:31:33.869953103Z"} +2026/03/21 23:31:38 ───────────────────────────────────────────────── +2026/03/21 23:31:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:31:43 [log_collector] {"stage_name":"log_collector","events_processed":30942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6188.4,"last_update":"2026-03-21T23:31:38.869522099Z"} +2026/03/21 23:31:43 [metric_collector] {"stage_name":"metric_collector","events_processed":19549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3909.8,"last_update":"2026-03-21T23:31:38.869810551Z"} +2026/03/21 23:31:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:31:38.878751254Z"} +2026/03/21 23:31:43 [transform_engine] {"stage_name":"transform_engine","events_processed":651,"events_dropped":0,"avg_latency_ms":691.1523199071112,"throughput_eps":0,"last_update":"2026-03-21T23:31:38.965994586Z"} +2026/03/21 23:31:43 [detection_layer] {"stage_name":"detection_layer","events_processed":651,"events_dropped":0,"avg_latency_ms":17.626628473876316,"throughput_eps":0,"last_update":"2026-03-21T23:31:38.966036286Z"} +2026/03/21 23:31:43 ───────────────────────────────────────────────── +2026/03/21 23:31:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:31:48 [detection_layer] {"stage_name":"detection_layer","events_processed":651,"events_dropped":0,"avg_latency_ms":17.626628473876316,"throughput_eps":0,"last_update":"2026-03-21T23:31:43.965495082Z"} +2026/03/21 23:31:48 [log_collector] {"stage_name":"log_collector","events_processed":30942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6188.4,"last_update":"2026-03-21T23:31:43.870083753Z"} +2026/03/21 23:31:48 [metric_collector] {"stage_name":"metric_collector","events_processed":19554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3910.8,"last_update":"2026-03-21T23:31:43.870695295Z"} +2026/03/21 23:31:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:31:43.879143087Z"} +2026/03/21 23:31:48 [transform_engine] {"stage_name":"transform_engine","events_processed":651,"events_dropped":0,"avg_latency_ms":691.1523199071112,"throughput_eps":0,"last_update":"2026-03-21T23:31:43.965609813Z"} +2026/03/21 23:31:48 ───────────────────────────────────────────────── +2026/03/21 23:31:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:31:53 [metric_collector] {"stage_name":"metric_collector","events_processed":19559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3911.8,"last_update":"2026-03-21T23:31:48.870770881Z"} +2026/03/21 23:31:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7826,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:31:48.879335297Z"} +2026/03/21 23:31:53 [transform_engine] {"stage_name":"transform_engine","events_processed":652,"events_dropped":0,"avg_latency_ms":568.088812925689,"throughput_eps":0,"last_update":"2026-03-21T23:31:49.041328135Z"} +2026/03/21 23:31:53 [detection_layer] {"stage_name":"detection_layer","events_processed":651,"events_dropped":0,"avg_latency_ms":17.626628473876316,"throughput_eps":0,"last_update":"2026-03-21T23:31:48.965643697Z"} +2026/03/21 23:31:53 [log_collector] {"stage_name":"log_collector","events_processed":30942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6188.4,"last_update":"2026-03-21T23:31:48.870062563Z"} +2026/03/21 23:31:53 ───────────────────────────────────────────────── +2026/03/21 23:31:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:31:58 [log_collector] {"stage_name":"log_collector","events_processed":30942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6188.4,"last_update":"2026-03-21T23:31:53.869691715Z"} +2026/03/21 23:31:58 [metric_collector] {"stage_name":"metric_collector","events_processed":19564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3912.8,"last_update":"2026-03-21T23:31:53.869856802Z"} +2026/03/21 23:31:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:31:53.87892366Z"} +2026/03/21 23:31:58 [transform_engine] {"stage_name":"transform_engine","events_processed":652,"events_dropped":0,"avg_latency_ms":568.088812925689,"throughput_eps":0,"last_update":"2026-03-21T23:31:53.965158589Z"} +2026/03/21 23:31:58 [detection_layer] {"stage_name":"detection_layer","events_processed":652,"events_dropped":0,"avg_latency_ms":18.279350979101054,"throughput_eps":0,"last_update":"2026-03-21T23:31:53.965304128Z"} +2026/03/21 23:31:58 ───────────────────────────────────────────────── +2026/03/21 23:32:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:32:03 [transform_engine] {"stage_name":"transform_engine","events_processed":652,"events_dropped":0,"avg_latency_ms":568.088812925689,"throughput_eps":0,"last_update":"2026-03-21T23:31:58.965838806Z"} +2026/03/21 23:32:03 [detection_layer] {"stage_name":"detection_layer","events_processed":652,"events_dropped":0,"avg_latency_ms":18.279350979101054,"throughput_eps":0,"last_update":"2026-03-21T23:31:58.965736139Z"} +2026/03/21 23:32:03 [log_collector] {"stage_name":"log_collector","events_processed":30942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6188.4,"last_update":"2026-03-21T23:31:58.869898445Z"} +2026/03/21 23:32:03 [metric_collector] {"stage_name":"metric_collector","events_processed":19569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3913.8,"last_update":"2026-03-21T23:31:58.870247664Z"} +2026/03/21 23:32:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7830,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:31:58.87946949Z"} +2026/03/21 23:32:03 ───────────────────────────────────────────────── +2026/03/21 23:32:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:32:08 [metric_collector] {"stage_name":"metric_collector","events_processed":19574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3914.8,"last_update":"2026-03-21T23:32:03.870775623Z"} +2026/03/21 23:32:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7832,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:32:03.879367582Z"} +2026/03/21 23:32:08 [transform_engine] {"stage_name":"transform_engine","events_processed":652,"events_dropped":0,"avg_latency_ms":568.088812925689,"throughput_eps":0,"last_update":"2026-03-21T23:32:03.965707129Z"} +2026/03/21 23:32:08 [detection_layer] {"stage_name":"detection_layer","events_processed":652,"events_dropped":0,"avg_latency_ms":18.279350979101054,"throughput_eps":0,"last_update":"2026-03-21T23:32:03.965823592Z"} +2026/03/21 23:32:08 [log_collector] {"stage_name":"log_collector","events_processed":30942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6188.4,"last_update":"2026-03-21T23:32:03.870513681Z"} +2026/03/21 23:32:08 ───────────────────────────────────────────────── +Saved state: 18 clusters, 30943 messages, reason: none +2026/03/21 23:32:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:32:13 [log_collector] {"stage_name":"log_collector","events_processed":30942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6188.4,"last_update":"2026-03-21T23:32:08.87007497Z"} +2026/03/21 23:32:13 [metric_collector] {"stage_name":"metric_collector","events_processed":19579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3915.8,"last_update":"2026-03-21T23:32:08.870661393Z"} +2026/03/21 23:32:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:32:08.880323663Z"} +2026/03/21 23:32:13 [transform_engine] {"stage_name":"transform_engine","events_processed":652,"events_dropped":0,"avg_latency_ms":568.088812925689,"throughput_eps":0,"last_update":"2026-03-21T23:32:08.965789244Z"} +2026/03/21 23:32:13 [detection_layer] {"stage_name":"detection_layer","events_processed":652,"events_dropped":0,"avg_latency_ms":18.279350979101054,"throughput_eps":0,"last_update":"2026-03-21T23:32:08.965667Z"} +2026/03/21 23:32:13 ───────────────────────────────────────────────── +2026/03/21 23:32:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:32:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:32:13.875710754Z"} +2026/03/21 23:32:18 [transform_engine] {"stage_name":"transform_engine","events_processed":652,"events_dropped":0,"avg_latency_ms":568.088812925689,"throughput_eps":0,"last_update":"2026-03-21T23:32:13.966154326Z"} +2026/03/21 23:32:18 [detection_layer] {"stage_name":"detection_layer","events_processed":652,"events_dropped":0,"avg_latency_ms":18.279350979101054,"throughput_eps":0,"last_update":"2026-03-21T23:32:13.966042571Z"} +2026/03/21 23:32:18 [log_collector] {"stage_name":"log_collector","events_processed":30956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6191.2,"last_update":"2026-03-21T23:32:18.869588687Z"} +2026/03/21 23:32:18 [metric_collector] {"stage_name":"metric_collector","events_processed":19584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3916.8,"last_update":"2026-03-21T23:32:13.870012873Z"} +2026/03/21 23:32:18 ───────────────────────────────────────────────── +2026/03/21 23:32:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:32:23 [log_collector] {"stage_name":"log_collector","events_processed":30956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6191.2,"last_update":"2026-03-21T23:32:23.869406688Z"} +2026/03/21 23:32:23 [metric_collector] {"stage_name":"metric_collector","events_processed":19589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3917.8,"last_update":"2026-03-21T23:32:18.870201912Z"} +2026/03/21 23:32:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:32:18.878832044Z"} +2026/03/21 23:32:23 [transform_engine] {"stage_name":"transform_engine","events_processed":653,"events_dropped":0,"avg_latency_ms":478.9581199405512,"throughput_eps":0,"last_update":"2026-03-21T23:32:19.088608325Z"} +2026/03/21 23:32:23 [detection_layer] {"stage_name":"detection_layer","events_processed":652,"events_dropped":0,"avg_latency_ms":18.279350979101054,"throughput_eps":0,"last_update":"2026-03-21T23:32:18.966124414Z"} +2026/03/21 23:32:23 ───────────────────────────────────────────────── +2026/03/21 23:32:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:32:28 [metric_collector] {"stage_name":"metric_collector","events_processed":19594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3918.8,"last_update":"2026-03-21T23:32:23.86986686Z"} +2026/03/21 23:32:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:32:23.878113446Z"} +2026/03/21 23:32:28 [transform_engine] {"stage_name":"transform_engine","events_processed":653,"events_dropped":0,"avg_latency_ms":478.9581199405512,"throughput_eps":0,"last_update":"2026-03-21T23:32:23.965237794Z"} +2026/03/21 23:32:28 [detection_layer] {"stage_name":"detection_layer","events_processed":653,"events_dropped":0,"avg_latency_ms":18.398065383280844,"throughput_eps":0,"last_update":"2026-03-21T23:32:23.965314721Z"} +2026/03/21 23:32:28 [log_collector] {"stage_name":"log_collector","events_processed":30956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6191.2,"last_update":"2026-03-21T23:32:28.869420067Z"} +2026/03/21 23:32:28 ───────────────────────────────────────────────── +2026/03/21 23:32:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:32:33 [log_collector] {"stage_name":"log_collector","events_processed":30956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6191.2,"last_update":"2026-03-21T23:32:33.870111333Z"} +2026/03/21 23:32:33 [metric_collector] {"stage_name":"metric_collector","events_processed":19599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3919.8,"last_update":"2026-03-21T23:32:28.870157411Z"} +2026/03/21 23:32:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:32:28.878668534Z"} +2026/03/21 23:32:33 [transform_engine] {"stage_name":"transform_engine","events_processed":653,"events_dropped":0,"avg_latency_ms":478.9581199405512,"throughput_eps":0,"last_update":"2026-03-21T23:32:28.965981371Z"} +2026/03/21 23:32:33 [detection_layer] {"stage_name":"detection_layer","events_processed":653,"events_dropped":0,"avg_latency_ms":18.398065383280844,"throughput_eps":0,"last_update":"2026-03-21T23:32:28.966036518Z"} +2026/03/21 23:32:33 ───────────────────────────────────────────────── +2026/03/21 23:32:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:32:38 [detection_layer] {"stage_name":"detection_layer","events_processed":653,"events_dropped":0,"avg_latency_ms":18.398065383280844,"throughput_eps":0,"last_update":"2026-03-21T23:32:33.965551687Z"} +2026/03/21 23:32:38 [log_collector] {"stage_name":"log_collector","events_processed":30956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6191.2,"last_update":"2026-03-21T23:32:33.870111333Z"} +2026/03/21 23:32:38 [metric_collector] {"stage_name":"metric_collector","events_processed":19604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3920.8,"last_update":"2026-03-21T23:32:33.870919692Z"} +2026/03/21 23:32:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:32:33.879279114Z"} +2026/03/21 23:32:38 [transform_engine] {"stage_name":"transform_engine","events_processed":653,"events_dropped":0,"avg_latency_ms":478.9581199405512,"throughput_eps":0,"last_update":"2026-03-21T23:32:33.965509396Z"} +2026/03/21 23:32:38 ───────────────────────────────────────────────── +2026/03/21 23:32:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:32:43 [transform_engine] {"stage_name":"transform_engine","events_processed":653,"events_dropped":0,"avg_latency_ms":478.9581199405512,"throughput_eps":0,"last_update":"2026-03-21T23:32:38.965702741Z"} +2026/03/21 23:32:43 [detection_layer] {"stage_name":"detection_layer","events_processed":653,"events_dropped":0,"avg_latency_ms":18.398065383280844,"throughput_eps":0,"last_update":"2026-03-21T23:32:38.965643788Z"} +2026/03/21 23:32:43 [log_collector] {"stage_name":"log_collector","events_processed":30956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6191.2,"last_update":"2026-03-21T23:32:43.869994898Z"} +2026/03/21 23:32:43 [metric_collector] {"stage_name":"metric_collector","events_processed":19609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3921.8,"last_update":"2026-03-21T23:32:38.870177525Z"} +2026/03/21 23:32:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:32:38.878296205Z"} +2026/03/21 23:32:43 ───────────────────────────────────────────────── +2026/03/21 23:32:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:32:48 [log_collector] {"stage_name":"log_collector","events_processed":30956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6191.2,"last_update":"2026-03-21T23:32:48.86992867Z"} +2026/03/21 23:32:48 [metric_collector] {"stage_name":"metric_collector","events_processed":19614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3922.8,"last_update":"2026-03-21T23:32:43.870462424Z"} +2026/03/21 23:32:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7848,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:32:43.879085341Z"} +2026/03/21 23:32:48 [transform_engine] {"stage_name":"transform_engine","events_processed":653,"events_dropped":0,"avg_latency_ms":478.9581199405512,"throughput_eps":0,"last_update":"2026-03-21T23:32:43.965536034Z"} +2026/03/21 23:32:48 [detection_layer] {"stage_name":"detection_layer","events_processed":653,"events_dropped":0,"avg_latency_ms":18.398065383280844,"throughput_eps":0,"last_update":"2026-03-21T23:32:43.965432936Z"} +2026/03/21 23:32:48 ───────────────────────────────────────────────── +2026/03/21 23:32:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:32:53 [metric_collector] {"stage_name":"metric_collector","events_processed":19619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3923.8,"last_update":"2026-03-21T23:32:48.870383021Z"} +2026/03/21 23:32:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:32:48.880257177Z"} +2026/03/21 23:32:53 [transform_engine] {"stage_name":"transform_engine","events_processed":654,"events_dropped":0,"avg_latency_ms":401.262815552441,"throughput_eps":0,"last_update":"2026-03-21T23:32:49.056074348Z"} +2026/03/21 23:32:53 [detection_layer] {"stage_name":"detection_layer","events_processed":653,"events_dropped":0,"avg_latency_ms":18.398065383280844,"throughput_eps":0,"last_update":"2026-03-21T23:32:48.965679438Z"} +2026/03/21 23:32:53 [log_collector] {"stage_name":"log_collector","events_processed":30956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6191.2,"last_update":"2026-03-21T23:32:48.86992867Z"} +2026/03/21 23:32:53 ───────────────────────────────────────────────── +2026/03/21 23:32:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:32:58 [detection_layer] {"stage_name":"detection_layer","events_processed":654,"events_dropped":0,"avg_latency_ms":18.98139270662468,"throughput_eps":0,"last_update":"2026-03-21T23:32:53.96639257Z"} +2026/03/21 23:32:58 [log_collector] {"stage_name":"log_collector","events_processed":30956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6191.2,"last_update":"2026-03-21T23:32:53.869578737Z"} +2026/03/21 23:32:58 [metric_collector] {"stage_name":"metric_collector","events_processed":19624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3924.8,"last_update":"2026-03-21T23:32:53.870207281Z"} +2026/03/21 23:32:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:32:53.879018067Z"} +2026/03/21 23:32:58 [transform_engine] {"stage_name":"transform_engine","events_processed":654,"events_dropped":0,"avg_latency_ms":401.262815552441,"throughput_eps":0,"last_update":"2026-03-21T23:32:53.965211636Z"} +2026/03/21 23:32:58 ───────────────────────────────────────────────── +2026/03/21 23:33:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:33:03 [log_collector] {"stage_name":"log_collector","events_processed":30956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6191.2,"last_update":"2026-03-21T23:32:58.86966736Z"} +2026/03/21 23:33:03 [metric_collector] {"stage_name":"metric_collector","events_processed":19629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3925.8,"last_update":"2026-03-21T23:32:58.869915826Z"} +2026/03/21 23:33:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:32:58.877705215Z"} +2026/03/21 23:33:03 [transform_engine] {"stage_name":"transform_engine","events_processed":654,"events_dropped":0,"avg_latency_ms":401.262815552441,"throughput_eps":0,"last_update":"2026-03-21T23:32:58.96598463Z"} +2026/03/21 23:33:03 [detection_layer] {"stage_name":"detection_layer","events_processed":654,"events_dropped":0,"avg_latency_ms":18.98139270662468,"throughput_eps":0,"last_update":"2026-03-21T23:32:58.965874719Z"} +2026/03/21 23:33:03 ───────────────────────────────────────────────── +2026/03/21 23:33:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:33:08 [log_collector] {"stage_name":"log_collector","events_processed":30956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6191.2,"last_update":"2026-03-21T23:33:03.869497989Z"} +2026/03/21 23:33:08 [metric_collector] {"stage_name":"metric_collector","events_processed":19634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3926.8,"last_update":"2026-03-21T23:33:03.869908696Z"} +2026/03/21 23:33:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:33:03.878070268Z"} +2026/03/21 23:33:08 [transform_engine] {"stage_name":"transform_engine","events_processed":654,"events_dropped":0,"avg_latency_ms":401.262815552441,"throughput_eps":0,"last_update":"2026-03-21T23:33:03.96546673Z"} +2026/03/21 23:33:08 [detection_layer] {"stage_name":"detection_layer","events_processed":654,"events_dropped":0,"avg_latency_ms":18.98139270662468,"throughput_eps":0,"last_update":"2026-03-21T23:33:03.965490415Z"} +2026/03/21 23:33:08 ───────────────────────────────────────────────── +2026/03/21 23:33:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:33:13 [log_collector] {"stage_name":"log_collector","events_processed":30956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6191.2,"last_update":"2026-03-21T23:33:13.870385043Z"} +2026/03/21 23:33:13 [metric_collector] {"stage_name":"metric_collector","events_processed":19639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3927.8,"last_update":"2026-03-21T23:33:08.87024297Z"} +2026/03/21 23:33:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:33:08.879311731Z"} +2026/03/21 23:33:13 [transform_engine] {"stage_name":"transform_engine","events_processed":654,"events_dropped":0,"avg_latency_ms":401.262815552441,"throughput_eps":0,"last_update":"2026-03-21T23:33:08.965494476Z"} +2026/03/21 23:33:13 [detection_layer] {"stage_name":"detection_layer","events_processed":654,"events_dropped":0,"avg_latency_ms":18.98139270662468,"throughput_eps":0,"last_update":"2026-03-21T23:33:08.965598004Z"} +2026/03/21 23:33:13 ───────────────────────────────────────────────── +Saved state: 18 clusters, 30957 messages, reason: none +2026/03/21 23:33:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:33:18 [log_collector] {"stage_name":"log_collector","events_processed":30956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6191.2,"last_update":"2026-03-21T23:33:13.870385043Z"} +2026/03/21 23:33:18 [metric_collector] {"stage_name":"metric_collector","events_processed":19644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3928.8,"last_update":"2026-03-21T23:33:13.870674759Z"} +2026/03/21 23:33:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7860,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:33:13.880272924Z"} +2026/03/21 23:33:18 [transform_engine] {"stage_name":"transform_engine","events_processed":654,"events_dropped":0,"avg_latency_ms":401.262815552441,"throughput_eps":0,"last_update":"2026-03-21T23:33:13.965666104Z"} +2026/03/21 23:33:18 [detection_layer] {"stage_name":"detection_layer","events_processed":654,"events_dropped":0,"avg_latency_ms":18.98139270662468,"throughput_eps":0,"last_update":"2026-03-21T23:33:13.965614065Z"} +2026/03/21 23:33:18 ───────────────────────────────────────────────── +2026/03/21 23:33:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:33:23 [metric_collector] {"stage_name":"metric_collector","events_processed":19649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3929.8,"last_update":"2026-03-21T23:33:18.869602486Z"} +2026/03/21 23:33:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7862,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:33:18.878655225Z"} +2026/03/21 23:33:23 [transform_engine] {"stage_name":"transform_engine","events_processed":655,"events_dropped":0,"avg_latency_ms":342.96254524195285,"throughput_eps":0,"last_update":"2026-03-21T23:33:19.075564581Z"} +2026/03/21 23:33:23 [detection_layer] {"stage_name":"detection_layer","events_processed":654,"events_dropped":0,"avg_latency_ms":18.98139270662468,"throughput_eps":0,"last_update":"2026-03-21T23:33:18.96581446Z"} +2026/03/21 23:33:23 [log_collector] {"stage_name":"log_collector","events_processed":30961,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6192.2,"last_update":"2026-03-21T23:33:18.869412912Z"} +2026/03/21 23:33:23 ───────────────────────────────────────────────── +2026/03/21 23:33:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:33:28 [log_collector] {"stage_name":"log_collector","events_processed":30961,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6192.2,"last_update":"2026-03-21T23:33:23.870018976Z"} +2026/03/21 23:33:28 [metric_collector] {"stage_name":"metric_collector","events_processed":19654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3930.8,"last_update":"2026-03-21T23:33:23.870295225Z"} +2026/03/21 23:33:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:33:23.876443759Z"} +2026/03/21 23:33:28 [transform_engine] {"stage_name":"transform_engine","events_processed":655,"events_dropped":0,"avg_latency_ms":342.96254524195285,"throughput_eps":0,"last_update":"2026-03-21T23:33:23.965742333Z"} +2026/03/21 23:33:28 [detection_layer] {"stage_name":"detection_layer","events_processed":655,"events_dropped":0,"avg_latency_ms":19.037168765299747,"throughput_eps":0,"last_update":"2026-03-21T23:33:23.965634967Z"} +2026/03/21 23:33:28 ───────────────────────────────────────────────── +2026/03/21 23:33:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:33:33 [log_collector] {"stage_name":"log_collector","events_processed":30961,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6192.2,"last_update":"2026-03-21T23:33:28.870112608Z"} +2026/03/21 23:33:33 [metric_collector] {"stage_name":"metric_collector","events_processed":19659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3931.8,"last_update":"2026-03-21T23:33:28.870567901Z"} +2026/03/21 23:33:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:33:28.875990582Z"} +2026/03/21 23:33:33 [transform_engine] {"stage_name":"transform_engine","events_processed":655,"events_dropped":0,"avg_latency_ms":342.96254524195285,"throughput_eps":0,"last_update":"2026-03-21T23:33:28.965114251Z"} +2026/03/21 23:33:33 [detection_layer] {"stage_name":"detection_layer","events_processed":655,"events_dropped":0,"avg_latency_ms":19.037168765299747,"throughput_eps":0,"last_update":"2026-03-21T23:33:28.966296907Z"} +2026/03/21 23:33:33 ───────────────────────────────────────────────── +2026/03/21 23:33:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:33:38 [log_collector] {"stage_name":"log_collector","events_processed":30961,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6192.2,"last_update":"2026-03-21T23:33:33.869414144Z"} +2026/03/21 23:33:38 [metric_collector] {"stage_name":"metric_collector","events_processed":19664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3932.8,"last_update":"2026-03-21T23:33:33.869875197Z"} +2026/03/21 23:33:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7868,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:33:33.876012169Z"} +2026/03/21 23:33:38 [transform_engine] {"stage_name":"transform_engine","events_processed":655,"events_dropped":0,"avg_latency_ms":342.96254524195285,"throughput_eps":0,"last_update":"2026-03-21T23:33:33.965135155Z"} +2026/03/21 23:33:38 [detection_layer] {"stage_name":"detection_layer","events_processed":655,"events_dropped":0,"avg_latency_ms":19.037168765299747,"throughput_eps":0,"last_update":"2026-03-21T23:33:33.966260351Z"} +2026/03/21 23:33:38 ───────────────────────────────────────────────── +2026/03/21 23:33:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:33:43 [transform_engine] {"stage_name":"transform_engine","events_processed":655,"events_dropped":0,"avg_latency_ms":342.96254524195285,"throughput_eps":0,"last_update":"2026-03-21T23:33:38.965973556Z"} +2026/03/21 23:33:43 [detection_layer] {"stage_name":"detection_layer","events_processed":655,"events_dropped":0,"avg_latency_ms":19.037168765299747,"throughput_eps":0,"last_update":"2026-03-21T23:33:38.966016599Z"} +2026/03/21 23:33:43 [log_collector] {"stage_name":"log_collector","events_processed":30961,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6192.2,"last_update":"2026-03-21T23:33:38.869724154Z"} +2026/03/21 23:33:43 [metric_collector] {"stage_name":"metric_collector","events_processed":19669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3933.8,"last_update":"2026-03-21T23:33:38.870041913Z"} +2026/03/21 23:33:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:33:38.876780828Z"} +2026/03/21 23:33:43 ───────────────────────────────────────────────── +2026/03/21 23:33:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:33:48 [detection_layer] {"stage_name":"detection_layer","events_processed":655,"events_dropped":0,"avg_latency_ms":19.037168765299747,"throughput_eps":0,"last_update":"2026-03-21T23:33:43.965848984Z"} +2026/03/21 23:33:48 [log_collector] {"stage_name":"log_collector","events_processed":30961,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6192.2,"last_update":"2026-03-21T23:33:43.869492988Z"} +2026/03/21 23:33:48 [metric_collector] {"stage_name":"metric_collector","events_processed":19674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3934.8,"last_update":"2026-03-21T23:33:43.869878577Z"} +2026/03/21 23:33:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:33:43.876630518Z"} +2026/03/21 23:33:48 [transform_engine] {"stage_name":"transform_engine","events_processed":655,"events_dropped":0,"avg_latency_ms":342.96254524195285,"throughput_eps":0,"last_update":"2026-03-21T23:33:43.965824738Z"} +2026/03/21 23:33:48 ───────────────────────────────────────────────── +2026/03/21 23:33:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:33:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:33:48.877192595Z"} +2026/03/21 23:33:53 [transform_engine] {"stage_name":"transform_engine","events_processed":656,"events_dropped":0,"avg_latency_ms":296.2061807935623,"throughput_eps":0,"last_update":"2026-03-21T23:33:49.07471768Z"} +2026/03/21 23:33:53 [detection_layer] {"stage_name":"detection_layer","events_processed":655,"events_dropped":0,"avg_latency_ms":19.037168765299747,"throughput_eps":0,"last_update":"2026-03-21T23:33:48.965511918Z"} +2026/03/21 23:33:53 [log_collector] {"stage_name":"log_collector","events_processed":30961,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6192.2,"last_update":"2026-03-21T23:33:48.869870132Z"} +2026/03/21 23:33:53 [metric_collector] {"stage_name":"metric_collector","events_processed":19679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3935.8,"last_update":"2026-03-21T23:33:48.870305797Z"} +2026/03/21 23:33:53 ───────────────────────────────────────────────── +2026/03/21 23:33:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:33:58 [log_collector] {"stage_name":"log_collector","events_processed":30961,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6192.2,"last_update":"2026-03-21T23:33:53.869676815Z"} +2026/03/21 23:33:58 [metric_collector] {"stage_name":"metric_collector","events_processed":19684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3936.8,"last_update":"2026-03-21T23:33:53.870156194Z"} +2026/03/21 23:33:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7876,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:33:53.879646341Z"} +2026/03/21 23:33:58 [transform_engine] {"stage_name":"transform_engine","events_processed":656,"events_dropped":0,"avg_latency_ms":296.2061807935623,"throughput_eps":0,"last_update":"2026-03-21T23:33:53.965841442Z"} +2026/03/21 23:33:58 [detection_layer] {"stage_name":"detection_layer","events_processed":656,"events_dropped":0,"avg_latency_ms":17.6123914122398,"throughput_eps":0,"last_update":"2026-03-21T23:33:53.965869476Z"} +2026/03/21 23:33:58 ───────────────────────────────────────────────── +2026/03/21 23:34:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:34:03 [log_collector] {"stage_name":"log_collector","events_processed":30961,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6192.2,"last_update":"2026-03-21T23:33:58.869900774Z"} +2026/03/21 23:34:03 [metric_collector] {"stage_name":"metric_collector","events_processed":19689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3937.8,"last_update":"2026-03-21T23:33:58.870143479Z"} +2026/03/21 23:34:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:33:58.876580525Z"} +2026/03/21 23:34:03 [transform_engine] {"stage_name":"transform_engine","events_processed":656,"events_dropped":0,"avg_latency_ms":296.2061807935623,"throughput_eps":0,"last_update":"2026-03-21T23:33:58.965783219Z"} +2026/03/21 23:34:03 [detection_layer] {"stage_name":"detection_layer","events_processed":656,"events_dropped":0,"avg_latency_ms":17.6123914122398,"throughput_eps":0,"last_update":"2026-03-21T23:33:58.96580475Z"} +2026/03/21 23:34:03 ───────────────────────────────────────────────── +2026/03/21 23:34:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:34:08 [log_collector] {"stage_name":"log_collector","events_processed":30970,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6194,"last_update":"2026-03-21T23:34:03.869734117Z"} +2026/03/21 23:34:08 [metric_collector] {"stage_name":"metric_collector","events_processed":19694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3938.8,"last_update":"2026-03-21T23:34:03.870098305Z"} +2026/03/21 23:34:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:34:03.878664042Z"} +2026/03/21 23:34:08 [transform_engine] {"stage_name":"transform_engine","events_processed":656,"events_dropped":0,"avg_latency_ms":296.2061807935623,"throughput_eps":0,"last_update":"2026-03-21T23:34:03.966093205Z"} +2026/03/21 23:34:08 [detection_layer] {"stage_name":"detection_layer","events_processed":656,"events_dropped":0,"avg_latency_ms":17.6123914122398,"throughput_eps":0,"last_update":"2026-03-21T23:34:03.965966613Z"} +2026/03/21 23:34:08 ───────────────────────────────────────────────── +2026/03/21 23:34:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:34:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:34:08.879359071Z"} +2026/03/21 23:34:13 [transform_engine] {"stage_name":"transform_engine","events_processed":656,"events_dropped":0,"avg_latency_ms":296.2061807935623,"throughput_eps":0,"last_update":"2026-03-21T23:34:08.96555962Z"} +2026/03/21 23:34:13 [detection_layer] {"stage_name":"detection_layer","events_processed":656,"events_dropped":0,"avg_latency_ms":17.6123914122398,"throughput_eps":0,"last_update":"2026-03-21T23:34:08.965578246Z"} +2026/03/21 23:34:13 [log_collector] {"stage_name":"log_collector","events_processed":30972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6194.4,"last_update":"2026-03-21T23:34:08.869835009Z"} +2026/03/21 23:34:13 [metric_collector] {"stage_name":"metric_collector","events_processed":19699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3939.8,"last_update":"2026-03-21T23:34:08.869743313Z"} +2026/03/21 23:34:13 ───────────────────────────────────────────────── +2026/03/21 23:34:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:34:18 [log_collector] {"stage_name":"log_collector","events_processed":31325,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6265,"last_update":"2026-03-21T23:34:18.869425427Z"} +2026/03/21 23:34:18 [metric_collector] {"stage_name":"metric_collector","events_processed":19704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3940.8,"last_update":"2026-03-21T23:34:13.869883346Z"} +2026/03/21 23:34:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:34:13.877622096Z"} +2026/03/21 23:34:18 [transform_engine] {"stage_name":"transform_engine","events_processed":656,"events_dropped":0,"avg_latency_ms":296.2061807935623,"throughput_eps":0,"last_update":"2026-03-21T23:34:13.965723688Z"} +2026/03/21 23:34:18 [detection_layer] {"stage_name":"detection_layer","events_processed":656,"events_dropped":0,"avg_latency_ms":17.6123914122398,"throughput_eps":0,"last_update":"2026-03-21T23:34:13.965829561Z"} +2026/03/21 23:34:18 ───────────────────────────────────────────────── +Saved state: 18 clusters, 31326 messages, reason: none +2026/03/21 23:34:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:34:23 [log_collector] {"stage_name":"log_collector","events_processed":31328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6265.6,"last_update":"2026-03-21T23:34:23.869656864Z"} +2026/03/21 23:34:23 [metric_collector] {"stage_name":"metric_collector","events_processed":19709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3941.8,"last_update":"2026-03-21T23:34:18.870018714Z"} +2026/03/21 23:34:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7886,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:34:18.878890667Z"} +2026/03/21 23:34:23 [transform_engine] {"stage_name":"transform_engine","events_processed":657,"events_dropped":0,"avg_latency_ms":264.1385448348498,"throughput_eps":0,"last_update":"2026-03-21T23:34:19.101990531Z"} +2026/03/21 23:34:23 [detection_layer] {"stage_name":"detection_layer","events_processed":656,"events_dropped":0,"avg_latency_ms":17.6123914122398,"throughput_eps":0,"last_update":"2026-03-21T23:34:18.96606499Z"} +2026/03/21 23:34:23 ───────────────────────────────────────────────── +2026/03/21 23:34:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:34:28 [log_collector] {"stage_name":"log_collector","events_processed":31328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6265.6,"last_update":"2026-03-21T23:34:23.869656864Z"} +2026/03/21 23:34:28 [metric_collector] {"stage_name":"metric_collector","events_processed":19714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3942.8,"last_update":"2026-03-21T23:34:23.869954804Z"} +2026/03/21 23:34:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:34:23.881759137Z"} +2026/03/21 23:34:28 [transform_engine] {"stage_name":"transform_engine","events_processed":657,"events_dropped":0,"avg_latency_ms":264.1385448348498,"throughput_eps":0,"last_update":"2026-03-21T23:34:23.96512989Z"} +2026/03/21 23:34:28 [detection_layer] {"stage_name":"detection_layer","events_processed":657,"events_dropped":0,"avg_latency_ms":17.62811172979184,"throughput_eps":0,"last_update":"2026-03-21T23:34:23.966238886Z"} +2026/03/21 23:34:28 ───────────────────────────────────────────────── +2026/03/21 23:34:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:34:33 [log_collector] {"stage_name":"log_collector","events_processed":31328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6265.6,"last_update":"2026-03-21T23:34:28.869395553Z"} +2026/03/21 23:34:33 [metric_collector] {"stage_name":"metric_collector","events_processed":19719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3943.8,"last_update":"2026-03-21T23:34:28.869615274Z"} +2026/03/21 23:34:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:34:28.876031991Z"} +2026/03/21 23:34:33 [transform_engine] {"stage_name":"transform_engine","events_processed":657,"events_dropped":0,"avg_latency_ms":264.1385448348498,"throughput_eps":0,"last_update":"2026-03-21T23:34:28.965129689Z"} +2026/03/21 23:34:33 [detection_layer] {"stage_name":"detection_layer","events_processed":657,"events_dropped":0,"avg_latency_ms":17.62811172979184,"throughput_eps":0,"last_update":"2026-03-21T23:34:28.966240067Z"} +2026/03/21 23:34:33 ───────────────────────────────────────────────── +2026/03/21 23:34:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:34:38 [metric_collector] {"stage_name":"metric_collector","events_processed":19724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3944.8,"last_update":"2026-03-21T23:34:33.87029852Z"} +2026/03/21 23:34:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7892,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:34:33.878184133Z"} +2026/03/21 23:34:38 [transform_engine] {"stage_name":"transform_engine","events_processed":657,"events_dropped":0,"avg_latency_ms":264.1385448348498,"throughput_eps":0,"last_update":"2026-03-21T23:34:33.965499514Z"} +2026/03/21 23:34:38 [detection_layer] {"stage_name":"detection_layer","events_processed":657,"events_dropped":0,"avg_latency_ms":17.62811172979184,"throughput_eps":0,"last_update":"2026-03-21T23:34:33.965394964Z"} +2026/03/21 23:34:38 [log_collector] {"stage_name":"log_collector","events_processed":31339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6267.8,"last_update":"2026-03-21T23:34:33.869430176Z"} +2026/03/21 23:34:38 ───────────────────────────────────────────────── +2026/03/21 23:34:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:34:43 [log_collector] {"stage_name":"log_collector","events_processed":31339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6267.8,"last_update":"2026-03-21T23:34:38.869436582Z"} +2026/03/21 23:34:43 [metric_collector] {"stage_name":"metric_collector","events_processed":19729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3945.8,"last_update":"2026-03-21T23:34:38.869775481Z"} +2026/03/21 23:34:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:34:38.87864518Z"} +2026/03/21 23:34:43 [transform_engine] {"stage_name":"transform_engine","events_processed":657,"events_dropped":0,"avg_latency_ms":264.1385448348498,"throughput_eps":0,"last_update":"2026-03-21T23:34:38.965969597Z"} +2026/03/21 23:34:43 [detection_layer] {"stage_name":"detection_layer","events_processed":657,"events_dropped":0,"avg_latency_ms":17.62811172979184,"throughput_eps":0,"last_update":"2026-03-21T23:34:38.966079458Z"} +2026/03/21 23:34:43 ───────────────────────────────────────────────── +2026/03/21 23:34:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:34:48 [log_collector] {"stage_name":"log_collector","events_processed":31355,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6271,"last_update":"2026-03-21T23:34:48.869922613Z"} +2026/03/21 23:34:48 [metric_collector] {"stage_name":"metric_collector","events_processed":19734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3946.8,"last_update":"2026-03-21T23:34:43.87015529Z"} +2026/03/21 23:34:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7896,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:34:43.876218831Z"} +2026/03/21 23:34:48 [transform_engine] {"stage_name":"transform_engine","events_processed":657,"events_dropped":0,"avg_latency_ms":264.1385448348498,"throughput_eps":0,"last_update":"2026-03-21T23:34:43.965991439Z"} +2026/03/21 23:34:48 [detection_layer] {"stage_name":"detection_layer","events_processed":657,"events_dropped":0,"avg_latency_ms":17.62811172979184,"throughput_eps":0,"last_update":"2026-03-21T23:34:43.965965189Z"} +2026/03/21 23:34:48 ───────────────────────────────────────────────── +2026/03/21 23:34:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:34:53 [log_collector] {"stage_name":"log_collector","events_processed":31355,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6271,"last_update":"2026-03-21T23:34:48.869922613Z"} +2026/03/21 23:34:53 [metric_collector] {"stage_name":"metric_collector","events_processed":19739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3947.8,"last_update":"2026-03-21T23:34:48.870579232Z"} +2026/03/21 23:34:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7898,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:34:48.879170817Z"} +2026/03/21 23:34:53 [transform_engine] {"stage_name":"transform_engine","events_processed":658,"events_dropped":0,"avg_latency_ms":235.05173046787985,"throughput_eps":0,"last_update":"2026-03-21T23:34:49.084305703Z"} +2026/03/21 23:34:53 [detection_layer] {"stage_name":"detection_layer","events_processed":657,"events_dropped":0,"avg_latency_ms":17.62811172979184,"throughput_eps":0,"last_update":"2026-03-21T23:34:48.965498413Z"} +2026/03/21 23:34:53 ───────────────────────────────────────────────── +2026/03/21 23:34:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:34:58 [log_collector] {"stage_name":"log_collector","events_processed":31355,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6271,"last_update":"2026-03-21T23:34:53.86941522Z"} +2026/03/21 23:34:58 [metric_collector] {"stage_name":"metric_collector","events_processed":19744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3948.8,"last_update":"2026-03-21T23:34:53.869951097Z"} +2026/03/21 23:34:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7900,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:34:53.878821397Z"} +2026/03/21 23:34:58 [transform_engine] {"stage_name":"transform_engine","events_processed":658,"events_dropped":0,"avg_latency_ms":235.05173046787985,"throughput_eps":0,"last_update":"2026-03-21T23:34:53.96621211Z"} +2026/03/21 23:34:58 [detection_layer] {"stage_name":"detection_layer","events_processed":658,"events_dropped":0,"avg_latency_ms":18.25342218383347,"throughput_eps":0,"last_update":"2026-03-21T23:34:53.966183014Z"} +2026/03/21 23:34:58 ───────────────────────────────────────────────── +2026/03/21 23:35:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:35:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:34:58.879239345Z"} +2026/03/21 23:35:03 [transform_engine] {"stage_name":"transform_engine","events_processed":658,"events_dropped":0,"avg_latency_ms":235.05173046787985,"throughput_eps":0,"last_update":"2026-03-21T23:34:58.965586919Z"} +2026/03/21 23:35:03 [detection_layer] {"stage_name":"detection_layer","events_processed":658,"events_dropped":0,"avg_latency_ms":18.25342218383347,"throughput_eps":0,"last_update":"2026-03-21T23:34:58.965522986Z"} +2026/03/21 23:35:03 [log_collector] {"stage_name":"log_collector","events_processed":31355,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6271,"last_update":"2026-03-21T23:34:58.869475164Z"} +2026/03/21 23:35:03 [metric_collector] {"stage_name":"metric_collector","events_processed":19749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3949.8,"last_update":"2026-03-21T23:34:58.870148574Z"} +2026/03/21 23:35:03 ───────────────────────────────────────────────── +2026/03/21 23:35:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:35:08 [log_collector] {"stage_name":"log_collector","events_processed":31355,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6271,"last_update":"2026-03-21T23:35:03.869401171Z"} +2026/03/21 23:35:08 [metric_collector] {"stage_name":"metric_collector","events_processed":19754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3950.8,"last_update":"2026-03-21T23:35:03.870037741Z"} +2026/03/21 23:35:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:35:03.878708295Z"} +2026/03/21 23:35:08 [transform_engine] {"stage_name":"transform_engine","events_processed":658,"events_dropped":0,"avg_latency_ms":235.05173046787985,"throughput_eps":0,"last_update":"2026-03-21T23:35:03.966025688Z"} +2026/03/21 23:35:08 [detection_layer] {"stage_name":"detection_layer","events_processed":658,"events_dropped":0,"avg_latency_ms":18.25342218383347,"throughput_eps":0,"last_update":"2026-03-21T23:35:03.966138443Z"} +2026/03/21 23:35:08 ───────────────────────────────────────────────── +2026/03/21 23:35:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:35:13 [detection_layer] {"stage_name":"detection_layer","events_processed":658,"events_dropped":0,"avg_latency_ms":18.25342218383347,"throughput_eps":0,"last_update":"2026-03-21T23:35:08.966291672Z"} +2026/03/21 23:35:13 [log_collector] {"stage_name":"log_collector","events_processed":31355,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6271,"last_update":"2026-03-21T23:35:08.86940303Z"} +2026/03/21 23:35:13 [metric_collector] {"stage_name":"metric_collector","events_processed":19759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3951.8,"last_update":"2026-03-21T23:35:08.869812786Z"} +2026/03/21 23:35:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7906,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:35:08.877995165Z"} +2026/03/21 23:35:13 [transform_engine] {"stage_name":"transform_engine","events_processed":658,"events_dropped":0,"avg_latency_ms":235.05173046787985,"throughput_eps":0,"last_update":"2026-03-21T23:35:08.965146748Z"} +2026/03/21 23:35:13 ───────────────────────────────────────────────── +2026/03/21 23:35:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:35:18 [transform_engine] {"stage_name":"transform_engine","events_processed":658,"events_dropped":0,"avg_latency_ms":235.05173046787985,"throughput_eps":0,"last_update":"2026-03-21T23:35:13.96540056Z"} +2026/03/21 23:35:18 [detection_layer] {"stage_name":"detection_layer","events_processed":658,"events_dropped":0,"avg_latency_ms":18.25342218383347,"throughput_eps":0,"last_update":"2026-03-21T23:35:13.965294187Z"} +2026/03/21 23:35:18 [log_collector] {"stage_name":"log_collector","events_processed":31355,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6271,"last_update":"2026-03-21T23:35:13.869666832Z"} +2026/03/21 23:35:18 [metric_collector] {"stage_name":"metric_collector","events_processed":19764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3952.8,"last_update":"2026-03-21T23:35:13.869656712Z"} +2026/03/21 23:35:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7908,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:35:13.879078277Z"} +2026/03/21 23:35:18 ───────────────────────────────────────────────── +2026/03/21 23:35:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:35:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:35:18.878561072Z"} +2026/03/21 23:35:23 [transform_engine] {"stage_name":"transform_engine","events_processed":659,"events_dropped":0,"avg_latency_ms":202.9670107743039,"throughput_eps":0,"last_update":"2026-03-21T23:35:19.040553043Z"} +2026/03/21 23:35:23 [detection_layer] {"stage_name":"detection_layer","events_processed":658,"events_dropped":0,"avg_latency_ms":18.25342218383347,"throughput_eps":0,"last_update":"2026-03-21T23:35:18.966009432Z"} +2026/03/21 23:35:23 [log_collector] {"stage_name":"log_collector","events_processed":31355,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6271,"last_update":"2026-03-21T23:35:18.869874375Z"} +2026/03/21 23:35:23 [metric_collector] {"stage_name":"metric_collector","events_processed":19774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3954.8,"last_update":"2026-03-21T23:35:23.86974181Z"} +2026/03/21 23:35:23 ───────────────────────────────────────────────── +2026/03/21 23:35:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:35:28 [log_collector] {"stage_name":"log_collector","events_processed":31355,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6271,"last_update":"2026-03-21T23:35:23.869797666Z"} +2026/03/21 23:35:28 [metric_collector] {"stage_name":"metric_collector","events_processed":19774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3954.8,"last_update":"2026-03-21T23:35:23.86974181Z"} +2026/03/21 23:35:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7912,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:35:23.878250124Z"} +2026/03/21 23:35:28 [transform_engine] {"stage_name":"transform_engine","events_processed":659,"events_dropped":0,"avg_latency_ms":202.9670107743039,"throughput_eps":0,"last_update":"2026-03-21T23:35:23.96549788Z"} +2026/03/21 23:35:28 [detection_layer] {"stage_name":"detection_layer","events_processed":659,"events_dropped":0,"avg_latency_ms":19.175887347066777,"throughput_eps":0,"last_update":"2026-03-21T23:35:23.965515063Z"} +2026/03/21 23:35:28 ───────────────────────────────────────────────── +2026/03/21 23:35:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:35:33 [detection_layer] {"stage_name":"detection_layer","events_processed":659,"events_dropped":0,"avg_latency_ms":19.175887347066777,"throughput_eps":0,"last_update":"2026-03-21T23:35:28.966299124Z"} +2026/03/21 23:35:33 [log_collector] {"stage_name":"log_collector","events_processed":31355,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6271,"last_update":"2026-03-21T23:35:28.869402439Z"} +2026/03/21 23:35:33 [metric_collector] {"stage_name":"metric_collector","events_processed":19779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3955.8,"last_update":"2026-03-21T23:35:28.869718836Z"} +2026/03/21 23:35:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:35:28.877938056Z"} +2026/03/21 23:35:33 [transform_engine] {"stage_name":"transform_engine","events_processed":659,"events_dropped":0,"avg_latency_ms":202.9670107743039,"throughput_eps":0,"last_update":"2026-03-21T23:35:28.966187199Z"} +2026/03/21 23:35:33 ───────────────────────────────────────────────── +2026/03/21 23:35:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:35:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:35:33.879256162Z"} +2026/03/21 23:35:38 [transform_engine] {"stage_name":"transform_engine","events_processed":659,"events_dropped":0,"avg_latency_ms":202.9670107743039,"throughput_eps":0,"last_update":"2026-03-21T23:35:33.965848188Z"} +2026/03/21 23:35:38 [detection_layer] {"stage_name":"detection_layer","events_processed":659,"events_dropped":0,"avg_latency_ms":19.175887347066777,"throughput_eps":0,"last_update":"2026-03-21T23:35:33.96583385Z"} +2026/03/21 23:35:38 [log_collector] {"stage_name":"log_collector","events_processed":31355,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6271,"last_update":"2026-03-21T23:35:33.870700396Z"} +2026/03/21 23:35:38 [metric_collector] {"stage_name":"metric_collector","events_processed":19784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3956.8,"last_update":"2026-03-21T23:35:33.87096342Z"} +2026/03/21 23:35:38 ───────────────────────────────────────────────── +2026/03/21 23:35:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:35:43 [log_collector] {"stage_name":"log_collector","events_processed":31355,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6271,"last_update":"2026-03-21T23:35:38.869820552Z"} +2026/03/21 23:35:43 [metric_collector] {"stage_name":"metric_collector","events_processed":19789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3957.8,"last_update":"2026-03-21T23:35:38.869726772Z"} +2026/03/21 23:35:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7918,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:35:38.878469826Z"} +2026/03/21 23:35:43 [transform_engine] {"stage_name":"transform_engine","events_processed":659,"events_dropped":0,"avg_latency_ms":202.9670107743039,"throughput_eps":0,"last_update":"2026-03-21T23:35:38.965739392Z"} +2026/03/21 23:35:43 [detection_layer] {"stage_name":"detection_layer","events_processed":659,"events_dropped":0,"avg_latency_ms":19.175887347066777,"throughput_eps":0,"last_update":"2026-03-21T23:35:38.965728981Z"} +2026/03/21 23:35:43 ───────────────────────────────────────────────── +2026/03/21 23:35:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:35:48 [log_collector] {"stage_name":"log_collector","events_processed":31355,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6271,"last_update":"2026-03-21T23:35:43.869402303Z"} +2026/03/21 23:35:48 [metric_collector] {"stage_name":"metric_collector","events_processed":19794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3958.8,"last_update":"2026-03-21T23:35:43.869719271Z"} +2026/03/21 23:35:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7920,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:35:43.878228447Z"} +2026/03/21 23:35:48 [transform_engine] {"stage_name":"transform_engine","events_processed":659,"events_dropped":0,"avg_latency_ms":202.9670107743039,"throughput_eps":0,"last_update":"2026-03-21T23:35:43.965413369Z"} +2026/03/21 23:35:48 [detection_layer] {"stage_name":"detection_layer","events_processed":659,"events_dropped":0,"avg_latency_ms":19.175887347066777,"throughput_eps":0,"last_update":"2026-03-21T23:35:43.96540333Z"} +2026/03/21 23:35:48 ───────────────────────────────────────────────── +2026/03/21 23:35:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:35:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:35:48.877916475Z"} +2026/03/21 23:35:53 [transform_engine] {"stage_name":"transform_engine","events_processed":660,"events_dropped":0,"avg_latency_ms":176.96249901944313,"throughput_eps":0,"last_update":"2026-03-21T23:35:49.038159537Z"} +2026/03/21 23:35:53 [detection_layer] {"stage_name":"detection_layer","events_processed":659,"events_dropped":0,"avg_latency_ms":19.175887347066777,"throughput_eps":0,"last_update":"2026-03-21T23:35:48.966383734Z"} +2026/03/21 23:35:53 [log_collector] {"stage_name":"log_collector","events_processed":31355,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6271,"last_update":"2026-03-21T23:35:48.869449981Z"} +2026/03/21 23:35:53 [metric_collector] {"stage_name":"metric_collector","events_processed":19799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3959.8,"last_update":"2026-03-21T23:35:48.86984099Z"} +2026/03/21 23:35:53 ───────────────────────────────────────────────── +Saved state: 18 clusters, 31356 messages, reason: none +2026/03/21 23:35:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:35:58 [log_collector] {"stage_name":"log_collector","events_processed":31355,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6271,"last_update":"2026-03-21T23:35:53.870280392Z"} +2026/03/21 23:35:58 [metric_collector] {"stage_name":"metric_collector","events_processed":19804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3960.8,"last_update":"2026-03-21T23:35:53.870810508Z"} +2026/03/21 23:35:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:35:53.878925149Z"} +2026/03/21 23:35:58 [transform_engine] {"stage_name":"transform_engine","events_processed":660,"events_dropped":0,"avg_latency_ms":176.96249901944313,"throughput_eps":0,"last_update":"2026-03-21T23:35:53.965073512Z"} +2026/03/21 23:35:58 [detection_layer] {"stage_name":"detection_layer","events_processed":660,"events_dropped":0,"avg_latency_ms":19.545002477653423,"throughput_eps":0,"last_update":"2026-03-21T23:35:53.965319985Z"} +2026/03/21 23:35:58 ───────────────────────────────────────────────── +2026/03/21 23:36:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:36:03 [log_collector] {"stage_name":"log_collector","events_processed":31369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6273.8,"last_update":"2026-03-21T23:35:58.869417953Z"} +2026/03/21 23:36:03 [metric_collector] {"stage_name":"metric_collector","events_processed":19809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3961.8,"last_update":"2026-03-21T23:35:58.869794915Z"} +2026/03/21 23:36:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:35:58.877848829Z"} +2026/03/21 23:36:03 [transform_engine] {"stage_name":"transform_engine","events_processed":660,"events_dropped":0,"avg_latency_ms":176.96249901944313,"throughput_eps":0,"last_update":"2026-03-21T23:35:58.966193161Z"} +2026/03/21 23:36:03 [detection_layer] {"stage_name":"detection_layer","events_processed":660,"events_dropped":0,"avg_latency_ms":19.545002477653423,"throughput_eps":0,"last_update":"2026-03-21T23:35:58.966087939Z"} +2026/03/21 23:36:03 ───────────────────────────────────────────────── +2026/03/21 23:36:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:36:08 [transform_engine] {"stage_name":"transform_engine","events_processed":660,"events_dropped":0,"avg_latency_ms":176.96249901944313,"throughput_eps":0,"last_update":"2026-03-21T23:36:03.965847675Z"} +2026/03/21 23:36:08 [detection_layer] {"stage_name":"detection_layer","events_processed":660,"events_dropped":0,"avg_latency_ms":19.545002477653423,"throughput_eps":0,"last_update":"2026-03-21T23:36:03.965903892Z"} +2026/03/21 23:36:08 [log_collector] {"stage_name":"log_collector","events_processed":31369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6273.8,"last_update":"2026-03-21T23:36:08.869905775Z"} +2026/03/21 23:36:08 [metric_collector] {"stage_name":"metric_collector","events_processed":19814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3962.8,"last_update":"2026-03-21T23:36:03.869911195Z"} +2026/03/21 23:36:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:36:03.878506386Z"} +2026/03/21 23:36:08 ───────────────────────────────────────────────── +2026/03/21 23:36:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:36:13 [log_collector] {"stage_name":"log_collector","events_processed":31369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6273.8,"last_update":"2026-03-21T23:36:08.869905775Z"} +2026/03/21 23:36:13 [metric_collector] {"stage_name":"metric_collector","events_processed":19819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3963.8,"last_update":"2026-03-21T23:36:08.870460598Z"} +2026/03/21 23:36:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7930,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:36:08.879308613Z"} +2026/03/21 23:36:13 [transform_engine] {"stage_name":"transform_engine","events_processed":660,"events_dropped":0,"avg_latency_ms":176.96249901944313,"throughput_eps":0,"last_update":"2026-03-21T23:36:08.965565503Z"} +2026/03/21 23:36:13 [detection_layer] {"stage_name":"detection_layer","events_processed":660,"events_dropped":0,"avg_latency_ms":19.545002477653423,"throughput_eps":0,"last_update":"2026-03-21T23:36:08.965543802Z"} +2026/03/21 23:36:13 ───────────────────────────────────────────────── +2026/03/21 23:36:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:36:18 [log_collector] {"stage_name":"log_collector","events_processed":31369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6273.8,"last_update":"2026-03-21T23:36:13.869633399Z"} +2026/03/21 23:36:18 [metric_collector] {"stage_name":"metric_collector","events_processed":19824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3964.8,"last_update":"2026-03-21T23:36:13.869976556Z"} +2026/03/21 23:36:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:36:13.87830251Z"} +2026/03/21 23:36:18 [transform_engine] {"stage_name":"transform_engine","events_processed":660,"events_dropped":0,"avg_latency_ms":176.96249901944313,"throughput_eps":0,"last_update":"2026-03-21T23:36:13.965497938Z"} +2026/03/21 23:36:18 [detection_layer] {"stage_name":"detection_layer","events_processed":660,"events_dropped":0,"avg_latency_ms":19.545002477653423,"throughput_eps":0,"last_update":"2026-03-21T23:36:13.96559805Z"} +2026/03/21 23:36:18 ───────────────────────────────────────────────── +2026/03/21 23:36:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:36:23 [metric_collector] {"stage_name":"metric_collector","events_processed":19829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3965.8,"last_update":"2026-03-21T23:36:18.870182921Z"} +2026/03/21 23:36:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:36:18.87923168Z"} +2026/03/21 23:36:23 [transform_engine] {"stage_name":"transform_engine","events_processed":660,"events_dropped":0,"avg_latency_ms":176.96249901944313,"throughput_eps":0,"last_update":"2026-03-21T23:36:13.965497938Z"} +2026/03/21 23:36:23 [detection_layer] {"stage_name":"detection_layer","events_processed":660,"events_dropped":0,"avg_latency_ms":19.545002477653423,"throughput_eps":0,"last_update":"2026-03-21T23:36:18.965421411Z"} +2026/03/21 23:36:23 [log_collector] {"stage_name":"log_collector","events_processed":31369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6273.8,"last_update":"2026-03-21T23:36:23.869484699Z"} +2026/03/21 23:36:23 ───────────────────────────────────────────────── +2026/03/21 23:36:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:36:28 [log_collector] {"stage_name":"log_collector","events_processed":31369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6273.8,"last_update":"2026-03-21T23:36:23.869484699Z"} +2026/03/21 23:36:28 [metric_collector] {"stage_name":"metric_collector","events_processed":19834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3966.8,"last_update":"2026-03-21T23:36:23.869856341Z"} +2026/03/21 23:36:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:36:23.876911159Z"} +2026/03/21 23:36:28 [transform_engine] {"stage_name":"transform_engine","events_processed":660,"events_dropped":0,"avg_latency_ms":176.96249901944313,"throughput_eps":0,"last_update":"2026-03-21T23:36:13.965497938Z"} +2026/03/21 23:36:28 [detection_layer] {"stage_name":"detection_layer","events_processed":660,"events_dropped":0,"avg_latency_ms":19.545002477653423,"throughput_eps":0,"last_update":"2026-03-21T23:36:23.966179368Z"} +2026/03/21 23:36:28 ───────────────────────────────────────────────── +2026/03/21 23:36:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:36:33 [log_collector] {"stage_name":"log_collector","events_processed":31369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6273.8,"last_update":"2026-03-21T23:36:28.86960538Z"} +2026/03/21 23:36:33 [metric_collector] {"stage_name":"metric_collector","events_processed":19839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3967.8,"last_update":"2026-03-21T23:36:28.870233844Z"} +2026/03/21 23:36:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:36:28.87868572Z"} +2026/03/21 23:36:33 [transform_engine] {"stage_name":"transform_engine","events_processed":660,"events_dropped":0,"avg_latency_ms":176.96249901944313,"throughput_eps":0,"last_update":"2026-03-21T23:36:13.965497938Z"} +2026/03/21 23:36:33 [detection_layer] {"stage_name":"detection_layer","events_processed":660,"events_dropped":0,"avg_latency_ms":19.545002477653423,"throughput_eps":0,"last_update":"2026-03-21T23:36:28.966096048Z"} +2026/03/21 23:36:33 ───────────────────────────────────────────────── +2026/03/21 23:36:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:36:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7940,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:36:33.879398962Z"} +2026/03/21 23:36:38 [transform_engine] {"stage_name":"transform_engine","events_processed":660,"events_dropped":0,"avg_latency_ms":176.96249901944313,"throughput_eps":0,"last_update":"2026-03-21T23:36:13.965497938Z"} +2026/03/21 23:36:38 [detection_layer] {"stage_name":"detection_layer","events_processed":660,"events_dropped":0,"avg_latency_ms":19.545002477653423,"throughput_eps":0,"last_update":"2026-03-21T23:36:33.965592769Z"} +2026/03/21 23:36:38 [log_collector] {"stage_name":"log_collector","events_processed":31369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6273.8,"last_update":"2026-03-21T23:36:38.870191762Z"} +2026/03/21 23:36:38 [metric_collector] {"stage_name":"metric_collector","events_processed":19844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3968.8,"last_update":"2026-03-21T23:36:33.869753409Z"} +2026/03/21 23:36:38 ───────────────────────────────────────────────── +2026/03/21 23:36:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:36:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:36:38.877550232Z"} +2026/03/21 23:36:43 [transform_engine] {"stage_name":"transform_engine","events_processed":660,"events_dropped":0,"avg_latency_ms":176.96249901944313,"throughput_eps":0,"last_update":"2026-03-21T23:36:13.965497938Z"} +2026/03/21 23:36:43 [detection_layer] {"stage_name":"detection_layer","events_processed":660,"events_dropped":0,"avg_latency_ms":19.545002477653423,"throughput_eps":0,"last_update":"2026-03-21T23:36:38.965734893Z"} +2026/03/21 23:36:43 [log_collector] {"stage_name":"log_collector","events_processed":31369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6273.8,"last_update":"2026-03-21T23:36:43.869437536Z"} +2026/03/21 23:36:43 [metric_collector] {"stage_name":"metric_collector","events_processed":19849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3969.8,"last_update":"2026-03-21T23:36:38.870461138Z"} +2026/03/21 23:36:43 ───────────────────────────────────────────────── +2026/03/21 23:36:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:36:48 [log_collector] {"stage_name":"log_collector","events_processed":31369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6273.8,"last_update":"2026-03-21T23:36:48.869907964Z"} +2026/03/21 23:36:48 [metric_collector] {"stage_name":"metric_collector","events_processed":19854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3970.8,"last_update":"2026-03-21T23:36:43.86982032Z"} +2026/03/21 23:36:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:36:43.878149429Z"} +2026/03/21 23:36:48 [transform_engine] {"stage_name":"transform_engine","events_processed":661,"events_dropped":0,"avg_latency_ms":5775.319784815555,"throughput_eps":0,"last_update":"2026-03-21T23:36:47.13420797Z"} +2026/03/21 23:36:48 [detection_layer] {"stage_name":"detection_layer","events_processed":660,"events_dropped":0,"avg_latency_ms":19.545002477653423,"throughput_eps":0,"last_update":"2026-03-21T23:36:43.965388999Z"} +2026/03/21 23:36:48 ───────────────────────────────────────────────── +2026/03/21 23:36:49 [ANOMALY] time=2026-03-21T23:36:49Z score=0.8383 method=SEAD details=MAD!:w=0.25,s=0.68 RRCF-fast!:w=0.20,s=1.00 RRCF-mid!:w=0.17,s=1.00 RRCF-slow!:w=0.14,s=1.00 COPOD!:w=0.24,s=0.67 +2026/03/21 23:36:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:36:53 [detection_layer] {"stage_name":"detection_layer","events_processed":661,"events_dropped":0,"avg_latency_ms":19.229373382122738,"throughput_eps":0,"last_update":"2026-03-21T23:36:48.965583347Z"} +2026/03/21 23:36:53 [log_collector] {"stage_name":"log_collector","events_processed":31369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6273.8,"last_update":"2026-03-21T23:36:48.869907964Z"} +2026/03/21 23:36:53 [metric_collector] {"stage_name":"metric_collector","events_processed":19859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3971.8,"last_update":"2026-03-21T23:36:48.870300617Z"} +2026/03/21 23:36:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:36:48.879261447Z"} +2026/03/21 23:36:53 [transform_engine] {"stage_name":"transform_engine","events_processed":662,"events_dropped":0,"avg_latency_ms":4724.569662252444,"throughput_eps":0,"last_update":"2026-03-21T23:36:49.487043581Z"} +2026/03/21 23:36:53 ───────────────────────────────────────────────── +2026/03/21 23:36:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:36:58 [log_collector] {"stage_name":"log_collector","events_processed":31369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6273.8,"last_update":"2026-03-21T23:36:58.870283035Z"} +2026/03/21 23:36:58 [metric_collector] {"stage_name":"metric_collector","events_processed":19864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3972.8,"last_update":"2026-03-21T23:36:53.870391824Z"} +2026/03/21 23:36:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:36:53.878730523Z"} +2026/03/21 23:36:58 [transform_engine] {"stage_name":"transform_engine","events_processed":662,"events_dropped":0,"avg_latency_ms":4724.569662252444,"throughput_eps":0,"last_update":"2026-03-21T23:36:53.966087967Z"} +2026/03/21 23:36:58 [detection_layer] {"stage_name":"detection_layer","events_processed":662,"events_dropped":0,"avg_latency_ms":17.35139170569819,"throughput_eps":0,"last_update":"2026-03-21T23:36:53.966130228Z"} +2026/03/21 23:36:58 ───────────────────────────────────────────────── +Saved state: 18 clusters, 31370 messages, reason: none +2026/03/21 23:37:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:37:03 [log_collector] {"stage_name":"log_collector","events_processed":31369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6273.8,"last_update":"2026-03-21T23:36:58.870283035Z"} +2026/03/21 23:37:03 [metric_collector] {"stage_name":"metric_collector","events_processed":19869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3973.8,"last_update":"2026-03-21T23:36:58.870839712Z"} +2026/03/21 23:37:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:36:58.878440688Z"} +2026/03/21 23:37:03 [transform_engine] {"stage_name":"transform_engine","events_processed":662,"events_dropped":0,"avg_latency_ms":4724.569662252444,"throughput_eps":0,"last_update":"2026-03-21T23:36:58.965809021Z"} +2026/03/21 23:37:03 [detection_layer] {"stage_name":"detection_layer","events_processed":662,"events_dropped":0,"avg_latency_ms":17.35139170569819,"throughput_eps":0,"last_update":"2026-03-21T23:36:58.965769827Z"} +2026/03/21 23:37:03 ───────────────────────────────────────────────── +2026/03/21 23:37:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:37:08 [log_collector] {"stage_name":"log_collector","events_processed":31374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6274.8,"last_update":"2026-03-21T23:37:03.869391997Z"} +2026/03/21 23:37:08 [metric_collector] {"stage_name":"metric_collector","events_processed":19873,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3974.6,"last_update":"2026-03-21T23:37:03.869386275Z"} +2026/03/21 23:37:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:37:03.876798489Z"} +2026/03/21 23:37:08 [transform_engine] {"stage_name":"transform_engine","events_processed":662,"events_dropped":0,"avg_latency_ms":4724.569662252444,"throughput_eps":0,"last_update":"2026-03-21T23:37:03.9660185Z"} +2026/03/21 23:37:08 [detection_layer] {"stage_name":"detection_layer","events_processed":662,"events_dropped":0,"avg_latency_ms":17.35139170569819,"throughput_eps":0,"last_update":"2026-03-21T23:37:03.966017078Z"} +2026/03/21 23:37:08 ───────────────────────────────────────────────── +2026/03/21 23:37:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:37:13 [log_collector] {"stage_name":"log_collector","events_processed":31374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6274.8,"last_update":"2026-03-21T23:37:08.869405849Z"} +2026/03/21 23:37:13 [metric_collector] {"stage_name":"metric_collector","events_processed":19879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3975.8,"last_update":"2026-03-21T23:37:08.869629458Z"} +2026/03/21 23:37:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:37:08.876691951Z"} +2026/03/21 23:37:13 [transform_engine] {"stage_name":"transform_engine","events_processed":662,"events_dropped":0,"avg_latency_ms":4724.569662252444,"throughput_eps":0,"last_update":"2026-03-21T23:37:08.965892525Z"} +2026/03/21 23:37:13 [detection_layer] {"stage_name":"detection_layer","events_processed":662,"events_dropped":0,"avg_latency_ms":17.35139170569819,"throughput_eps":0,"last_update":"2026-03-21T23:37:08.965935918Z"} +2026/03/21 23:37:13 ───────────────────────────────────────────────── +2026/03/21 23:37:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:37:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:37:13.877733962Z"} +2026/03/21 23:37:18 [transform_engine] {"stage_name":"transform_engine","events_processed":662,"events_dropped":0,"avg_latency_ms":4724.569662252444,"throughput_eps":0,"last_update":"2026-03-21T23:37:13.965956772Z"} +2026/03/21 23:37:18 [detection_layer] {"stage_name":"detection_layer","events_processed":662,"events_dropped":0,"avg_latency_ms":17.35139170569819,"throughput_eps":0,"last_update":"2026-03-21T23:37:13.96592967Z"} +2026/03/21 23:37:18 [log_collector] {"stage_name":"log_collector","events_processed":31374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6274.8,"last_update":"2026-03-21T23:37:13.869402978Z"} +2026/03/21 23:37:18 [metric_collector] {"stage_name":"metric_collector","events_processed":19884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3976.8,"last_update":"2026-03-21T23:37:13.869664148Z"} +2026/03/21 23:37:18 ───────────────────────────────────────────────── +2026/03/21 23:37:23 [ANOMALY] time=2026-03-21T23:37:23Z score=0.9149 method=SEAD details=MAD!:w=0.25,s=0.92 RRCF-fast!:w=0.20,s=0.93 RRCF-mid!:w=0.17,s=0.96 RRCF-slow!:w=0.14,s=0.96 COPOD!:w=0.24,s=0.84 +2026/03/21 23:37:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:37:23 [log_collector] {"stage_name":"log_collector","events_processed":31374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6274.8,"last_update":"2026-03-21T23:37:18.870096009Z"} +2026/03/21 23:37:23 [metric_collector] {"stage_name":"metric_collector","events_processed":19889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3977.8,"last_update":"2026-03-21T23:37:18.870558606Z"} +2026/03/21 23:37:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7958,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:37:18.878190199Z"} +2026/03/21 23:37:23 [transform_engine] {"stage_name":"transform_engine","events_processed":663,"events_dropped":0,"avg_latency_ms":4618.851305601956,"throughput_eps":0,"last_update":"2026-03-21T23:37:23.162668858Z"} +2026/03/21 23:37:23 [detection_layer] {"stage_name":"detection_layer","events_processed":662,"events_dropped":0,"avg_latency_ms":17.35139170569819,"throughput_eps":0,"last_update":"2026-03-21T23:37:18.966523349Z"} +2026/03/21 23:37:23 ───────────────────────────────────────────────── +2026/03/21 23:37:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:37:28 [metric_collector] {"stage_name":"metric_collector","events_processed":19899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3979.8,"last_update":"2026-03-21T23:37:28.870055154Z"} +2026/03/21 23:37:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:37:23.877173672Z"} +2026/03/21 23:37:28 [transform_engine] {"stage_name":"transform_engine","events_processed":663,"events_dropped":0,"avg_latency_ms":4618.851305601956,"throughput_eps":0,"last_update":"2026-03-21T23:37:23.965436477Z"} +2026/03/21 23:37:28 [detection_layer] {"stage_name":"detection_layer","events_processed":663,"events_dropped":0,"avg_latency_ms":17.398869964558553,"throughput_eps":0,"last_update":"2026-03-21T23:37:23.965386251Z"} +2026/03/21 23:37:28 [log_collector] {"stage_name":"log_collector","events_processed":31374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6274.8,"last_update":"2026-03-21T23:37:28.870064052Z"} +2026/03/21 23:37:28 ───────────────────────────────────────────────── +2026/03/21 23:37:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:37:33 [transform_engine] {"stage_name":"transform_engine","events_processed":663,"events_dropped":0,"avg_latency_ms":4618.851305601956,"throughput_eps":0,"last_update":"2026-03-21T23:37:28.965289518Z"} +2026/03/21 23:37:33 [detection_layer] {"stage_name":"detection_layer","events_processed":663,"events_dropped":0,"avg_latency_ms":17.398869964558553,"throughput_eps":0,"last_update":"2026-03-21T23:37:28.965305138Z"} +2026/03/21 23:37:33 [log_collector] {"stage_name":"log_collector","events_processed":31374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6274.8,"last_update":"2026-03-21T23:37:28.870064052Z"} +2026/03/21 23:37:33 [metric_collector] {"stage_name":"metric_collector","events_processed":19899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3979.8,"last_update":"2026-03-21T23:37:28.870055154Z"} +2026/03/21 23:37:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7962,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:37:28.876104716Z"} +2026/03/21 23:37:33 ───────────────────────────────────────────────── +2026/03/21 23:37:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:37:38 [detection_layer] {"stage_name":"detection_layer","events_processed":663,"events_dropped":0,"avg_latency_ms":17.398869964558553,"throughput_eps":0,"last_update":"2026-03-21T23:37:33.9661988Z"} +2026/03/21 23:37:38 [log_collector] {"stage_name":"log_collector","events_processed":31374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6274.8,"last_update":"2026-03-21T23:37:33.869628938Z"} +2026/03/21 23:37:38 [metric_collector] {"stage_name":"metric_collector","events_processed":19904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3980.8,"last_update":"2026-03-21T23:37:33.869620412Z"} +2026/03/21 23:37:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:37:33.878292179Z"} +2026/03/21 23:37:38 [transform_engine] {"stage_name":"transform_engine","events_processed":663,"events_dropped":0,"avg_latency_ms":4618.851305601956,"throughput_eps":0,"last_update":"2026-03-21T23:37:33.965120804Z"} +2026/03/21 23:37:38 ───────────────────────────────────────────────── +2026/03/21 23:37:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:37:43 [log_collector] {"stage_name":"log_collector","events_processed":31374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6274.8,"last_update":"2026-03-21T23:37:38.869653407Z"} +2026/03/21 23:37:43 [metric_collector] {"stage_name":"metric_collector","events_processed":19909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3981.8,"last_update":"2026-03-21T23:37:38.869643347Z"} +2026/03/21 23:37:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:37:38.875605161Z"} +2026/03/21 23:37:43 [transform_engine] {"stage_name":"transform_engine","events_processed":663,"events_dropped":0,"avg_latency_ms":4618.851305601956,"throughput_eps":0,"last_update":"2026-03-21T23:37:38.965833091Z"} +2026/03/21 23:37:43 [detection_layer] {"stage_name":"detection_layer","events_processed":663,"events_dropped":0,"avg_latency_ms":17.398869964558553,"throughput_eps":0,"last_update":"2026-03-21T23:37:38.965811399Z"} +2026/03/21 23:37:43 ───────────────────────────────────────────────── +2026/03/21 23:37:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:37:48 [log_collector] {"stage_name":"log_collector","events_processed":31385,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6277,"last_update":"2026-03-21T23:37:48.870111648Z"} +2026/03/21 23:37:48 [metric_collector] {"stage_name":"metric_collector","events_processed":19914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3982.8,"last_update":"2026-03-21T23:37:43.870527263Z"} +2026/03/21 23:37:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:37:43.876466603Z"} +2026/03/21 23:37:48 [transform_engine] {"stage_name":"transform_engine","events_processed":663,"events_dropped":0,"avg_latency_ms":4618.851305601956,"throughput_eps":0,"last_update":"2026-03-21T23:37:43.965778196Z"} +2026/03/21 23:37:48 [detection_layer] {"stage_name":"detection_layer","events_processed":663,"events_dropped":0,"avg_latency_ms":17.398869964558553,"throughput_eps":0,"last_update":"2026-03-21T23:37:43.965749972Z"} +2026/03/21 23:37:48 ───────────────────────────────────────────────── +2026/03/21 23:37:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:37:53 [log_collector] {"stage_name":"log_collector","events_processed":31385,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6277,"last_update":"2026-03-21T23:37:48.870111648Z"} +2026/03/21 23:37:53 [metric_collector] {"stage_name":"metric_collector","events_processed":19924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3984.8,"last_update":"2026-03-21T23:37:53.869833677Z"} +2026/03/21 23:37:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7970,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:37:48.876471555Z"} +2026/03/21 23:37:53 [transform_engine] {"stage_name":"transform_engine","events_processed":663,"events_dropped":0,"avg_latency_ms":4618.851305601956,"throughput_eps":0,"last_update":"2026-03-21T23:37:43.965778196Z"} +2026/03/21 23:37:53 [detection_layer] {"stage_name":"detection_layer","events_processed":663,"events_dropped":0,"avg_latency_ms":17.398869964558553,"throughput_eps":0,"last_update":"2026-03-21T23:37:48.965725016Z"} +2026/03/21 23:37:53 ───────────────────────────────────────────────── +2026/03/21 23:37:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:37:58 [detection_layer] {"stage_name":"detection_layer","events_processed":663,"events_dropped":0,"avg_latency_ms":17.398869964558553,"throughput_eps":0,"last_update":"2026-03-21T23:37:53.966092812Z"} +2026/03/21 23:37:58 [log_collector] {"stage_name":"log_collector","events_processed":31385,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6277,"last_update":"2026-03-21T23:37:58.869738289Z"} +2026/03/21 23:37:58 [metric_collector] {"stage_name":"metric_collector","events_processed":19924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3984.8,"last_update":"2026-03-21T23:37:53.869833677Z"} +2026/03/21 23:37:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:37:53.878892966Z"} +2026/03/21 23:37:58 [transform_engine] {"stage_name":"transform_engine","events_processed":663,"events_dropped":0,"avg_latency_ms":4618.851305601956,"throughput_eps":0,"last_update":"2026-03-21T23:37:43.965778196Z"} +2026/03/21 23:37:58 ───────────────────────────────────────────────── +2026/03/21 23:38:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:38:03 [log_collector] {"stage_name":"log_collector","events_processed":31385,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6277,"last_update":"2026-03-21T23:37:58.869738289Z"} +2026/03/21 23:38:03 [metric_collector] {"stage_name":"metric_collector","events_processed":19929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3985.8,"last_update":"2026-03-21T23:37:58.870100564Z"} +2026/03/21 23:38:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:37:58.87647085Z"} +2026/03/21 23:38:03 [transform_engine] {"stage_name":"transform_engine","events_processed":663,"events_dropped":0,"avg_latency_ms":4618.851305601956,"throughput_eps":0,"last_update":"2026-03-21T23:37:43.965778196Z"} +2026/03/21 23:38:03 [detection_layer] {"stage_name":"detection_layer","events_processed":663,"events_dropped":0,"avg_latency_ms":17.398869964558553,"throughput_eps":0,"last_update":"2026-03-21T23:37:58.965680285Z"} +2026/03/21 23:38:03 ───────────────────────────────────────────────── +2026/03/21 23:38:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:38:08 [metric_collector] {"stage_name":"metric_collector","events_processed":19934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3986.8,"last_update":"2026-03-21T23:38:03.8708582Z"} +2026/03/21 23:38:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:38:03.878996273Z"} +2026/03/21 23:38:08 [transform_engine] {"stage_name":"transform_engine","events_processed":663,"events_dropped":0,"avg_latency_ms":4618.851305601956,"throughput_eps":0,"last_update":"2026-03-21T23:37:43.965778196Z"} +2026/03/21 23:38:08 [detection_layer] {"stage_name":"detection_layer","events_processed":663,"events_dropped":0,"avg_latency_ms":17.398869964558553,"throughput_eps":0,"last_update":"2026-03-21T23:38:03.96628552Z"} +2026/03/21 23:38:08 [log_collector] {"stage_name":"log_collector","events_processed":31385,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6277,"last_update":"2026-03-21T23:38:03.87086354Z"} +2026/03/21 23:38:08 ───────────────────────────────────────────────── +2026/03/21 23:38:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:38:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:38:08.876857252Z"} +2026/03/21 23:38:13 [transform_engine] {"stage_name":"transform_engine","events_processed":663,"events_dropped":0,"avg_latency_ms":4618.851305601956,"throughput_eps":0,"last_update":"2026-03-21T23:37:43.965778196Z"} +2026/03/21 23:38:13 [detection_layer] {"stage_name":"detection_layer","events_processed":663,"events_dropped":0,"avg_latency_ms":17.398869964558553,"throughput_eps":0,"last_update":"2026-03-21T23:38:08.966078198Z"} +2026/03/21 23:38:13 [log_collector] {"stage_name":"log_collector","events_processed":31385,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6277,"last_update":"2026-03-21T23:38:08.870090215Z"} +2026/03/21 23:38:13 [metric_collector] {"stage_name":"metric_collector","events_processed":19939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3987.8,"last_update":"2026-03-21T23:38:08.870239Z"} +2026/03/21 23:38:13 ───────────────────────────────────────────────── +2026/03/21 23:38:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:38:18 [log_collector] {"stage_name":"log_collector","events_processed":31385,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6277,"last_update":"2026-03-21T23:38:18.870440375Z"} +2026/03/21 23:38:18 [metric_collector] {"stage_name":"metric_collector","events_processed":19944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3988.8,"last_update":"2026-03-21T23:38:13.870276871Z"} +2026/03/21 23:38:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:38:13.878647199Z"} +2026/03/21 23:38:18 [transform_engine] {"stage_name":"transform_engine","events_processed":663,"events_dropped":0,"avg_latency_ms":4618.851305601956,"throughput_eps":0,"last_update":"2026-03-21T23:37:43.965778196Z"} +2026/03/21 23:38:18 [detection_layer] {"stage_name":"detection_layer","events_processed":663,"events_dropped":0,"avg_latency_ms":17.398869964558553,"throughput_eps":0,"last_update":"2026-03-21T23:38:13.965952986Z"} +2026/03/21 23:38:18 ───────────────────────────────────────────────── +Saved state: 18 clusters, 31386 messages, reason: none +2026/03/21 23:38:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:38:23 [metric_collector] {"stage_name":"metric_collector","events_processed":19949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3989.8,"last_update":"2026-03-21T23:38:18.870787771Z"} +2026/03/21 23:38:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:38:18.877714774Z"} +2026/03/21 23:38:23 [transform_engine] {"stage_name":"transform_engine","events_processed":664,"events_dropped":0,"avg_latency_ms":10496.379247281566,"throughput_eps":0,"last_update":"2026-03-21T23:38:22.972170403Z"} +2026/03/21 23:38:23 [detection_layer] {"stage_name":"detection_layer","events_processed":663,"events_dropped":0,"avg_latency_ms":17.398869964558553,"throughput_eps":0,"last_update":"2026-03-21T23:38:18.965876509Z"} +2026/03/21 23:38:23 [log_collector] {"stage_name":"log_collector","events_processed":31385,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6277,"last_update":"2026-03-21T23:38:18.870440375Z"} +2026/03/21 23:38:23 ───────────────────────────────────────────────── +2026/03/21 23:38:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:38:28 [log_collector] {"stage_name":"log_collector","events_processed":31399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6279.8,"last_update":"2026-03-21T23:38:23.870127808Z"} +2026/03/21 23:38:28 [metric_collector] {"stage_name":"metric_collector","events_processed":19954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3990.8,"last_update":"2026-03-21T23:38:23.870160992Z"} +2026/03/21 23:38:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:38:23.877261017Z"} +2026/03/21 23:38:28 [transform_engine] {"stage_name":"transform_engine","events_processed":665,"events_dropped":0,"avg_latency_ms":8428.475497625253,"throughput_eps":0,"last_update":"2026-03-21T23:38:23.965386242Z"} +2026/03/21 23:38:28 [detection_layer] {"stage_name":"detection_layer","events_processed":664,"events_dropped":0,"avg_latency_ms":17.716029171646845,"throughput_eps":0,"last_update":"2026-03-21T23:38:23.965367185Z"} +2026/03/21 23:38:28 ───────────────────────────────────────────────── +2026/03/21 23:38:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:38:33 [metric_collector] {"stage_name":"metric_collector","events_processed":19959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3991.8,"last_update":"2026-03-21T23:38:28.869993247Z"} +2026/03/21 23:38:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:38:28.875706264Z"} +2026/03/21 23:38:33 [transform_engine] {"stage_name":"transform_engine","events_processed":665,"events_dropped":0,"avg_latency_ms":8428.475497625253,"throughput_eps":0,"last_update":"2026-03-21T23:38:28.965877148Z"} +2026/03/21 23:38:33 [detection_layer] {"stage_name":"detection_layer","events_processed":664,"events_dropped":0,"avg_latency_ms":17.716029171646845,"throughput_eps":0,"last_update":"2026-03-21T23:38:28.965904741Z"} +2026/03/21 23:38:33 [log_collector] {"stage_name":"log_collector","events_processed":31613,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6322.6,"last_update":"2026-03-21T23:38:28.869658526Z"} +2026/03/21 23:38:33 ───────────────────────────────────────────────── +2026/03/21 23:38:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:38:38 [log_collector] {"stage_name":"log_collector","events_processed":31892,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6378.4,"last_update":"2026-03-21T23:38:33.869932728Z"} +2026/03/21 23:38:38 [metric_collector] {"stage_name":"metric_collector","events_processed":19964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3992.8,"last_update":"2026-03-21T23:38:33.870339538Z"} +2026/03/21 23:38:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:38:33.8800324Z"} +2026/03/21 23:38:38 [transform_engine] {"stage_name":"transform_engine","events_processed":665,"events_dropped":0,"avg_latency_ms":8428.475497625253,"throughput_eps":0,"last_update":"2026-03-21T23:38:33.965298608Z"} +2026/03/21 23:38:38 [detection_layer] {"stage_name":"detection_layer","events_processed":664,"events_dropped":0,"avg_latency_ms":17.716029171646845,"throughput_eps":0,"last_update":"2026-03-21T23:38:33.965323886Z"} +2026/03/21 23:38:38 ───────────────────────────────────────────────── +2026/03/21 23:38:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:38:43 [metric_collector] {"stage_name":"metric_collector","events_processed":19968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3993.6,"last_update":"2026-03-21T23:38:38.870159385Z"} +2026/03/21 23:38:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7990,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:38:38.876041165Z"} +2026/03/21 23:38:43 [transform_engine] {"stage_name":"transform_engine","events_processed":665,"events_dropped":0,"avg_latency_ms":8428.475497625253,"throughput_eps":0,"last_update":"2026-03-21T23:38:38.965175432Z"} +2026/03/21 23:38:43 [detection_layer] {"stage_name":"detection_layer","events_processed":664,"events_dropped":0,"avg_latency_ms":17.716029171646845,"throughput_eps":0,"last_update":"2026-03-21T23:38:38.966272254Z"} +2026/03/21 23:38:43 [log_collector] {"stage_name":"log_collector","events_processed":32068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6413.6,"last_update":"2026-03-21T23:38:43.869903671Z"} +2026/03/21 23:38:43 ───────────────────────────────────────────────── +2026/03/21 23:38:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:38:48 [metric_collector] {"stage_name":"metric_collector","events_processed":19973,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3994.6,"last_update":"2026-03-21T23:38:43.869989184Z"} +2026/03/21 23:38:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7992,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:38:43.879169505Z"} +2026/03/21 23:38:48 [transform_engine] {"stage_name":"transform_engine","events_processed":665,"events_dropped":0,"avg_latency_ms":8428.475497625253,"throughput_eps":0,"last_update":"2026-03-21T23:38:43.965290469Z"} +2026/03/21 23:38:48 [detection_layer] {"stage_name":"detection_layer","events_processed":664,"events_dropped":0,"avg_latency_ms":17.716029171646845,"throughput_eps":0,"last_update":"2026-03-21T23:38:43.965314374Z"} +2026/03/21 23:38:48 [log_collector] {"stage_name":"log_collector","events_processed":32068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6413.6,"last_update":"2026-03-21T23:38:43.869903671Z"} +2026/03/21 23:38:48 ───────────────────────────────────────────────── +2026/03/21 23:38:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:38:53 [transform_engine] {"stage_name":"transform_engine","events_processed":666,"events_dropped":0,"avg_latency_ms":6768.362154300204,"throughput_eps":0,"last_update":"2026-03-21T23:38:49.093601888Z"} +2026/03/21 23:38:53 [detection_layer] {"stage_name":"detection_layer","events_processed":664,"events_dropped":0,"avg_latency_ms":17.716029171646845,"throughput_eps":0,"last_update":"2026-03-21T23:38:48.965614437Z"} +2026/03/21 23:38:53 [log_collector] {"stage_name":"log_collector","events_processed":32068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6413.6,"last_update":"2026-03-21T23:38:48.869619214Z"} +2026/03/21 23:38:53 [metric_collector] {"stage_name":"metric_collector","events_processed":19979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3995.8,"last_update":"2026-03-21T23:38:48.870069446Z"} +2026/03/21 23:38:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:38:48.877377299Z"} +2026/03/21 23:38:53 ───────────────────────────────────────────────── +2026/03/21 23:38:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:38:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7996,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:38:53.878737779Z"} +2026/03/21 23:38:58 [transform_engine] {"stage_name":"transform_engine","events_processed":666,"events_dropped":0,"avg_latency_ms":6768.362154300204,"throughput_eps":0,"last_update":"2026-03-21T23:38:53.966119737Z"} +2026/03/21 23:38:58 [detection_layer] {"stage_name":"detection_layer","events_processed":665,"events_dropped":0,"avg_latency_ms":16.818326337317476,"throughput_eps":0,"last_update":"2026-03-21T23:38:53.966104328Z"} +2026/03/21 23:38:58 [log_collector] {"stage_name":"log_collector","events_processed":32068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6413.6,"last_update":"2026-03-21T23:38:53.869500489Z"} +2026/03/21 23:38:58 [metric_collector] {"stage_name":"metric_collector","events_processed":19983,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3996.6,"last_update":"2026-03-21T23:38:53.869551166Z"} +2026/03/21 23:38:58 ───────────────────────────────────────────────── +2026/03/21 23:39:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:39:03 [log_collector] {"stage_name":"log_collector","events_processed":32068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6413.6,"last_update":"2026-03-21T23:38:58.870182895Z"} +2026/03/21 23:39:03 [metric_collector] {"stage_name":"metric_collector","events_processed":19989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3997.8,"last_update":"2026-03-21T23:38:58.870792242Z"} +2026/03/21 23:39:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:38:58.879656857Z"} +2026/03/21 23:39:03 [transform_engine] {"stage_name":"transform_engine","events_processed":666,"events_dropped":0,"avg_latency_ms":6768.362154300204,"throughput_eps":0,"last_update":"2026-03-21T23:38:58.965876267Z"} +2026/03/21 23:39:03 [detection_layer] {"stage_name":"detection_layer","events_processed":665,"events_dropped":0,"avg_latency_ms":16.818326337317476,"throughput_eps":0,"last_update":"2026-03-21T23:38:58.965865948Z"} +2026/03/21 23:39:03 ───────────────────────────────────────────────── +2026/03/21 23:39:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:39:08 [log_collector] {"stage_name":"log_collector","events_processed":32068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6413.6,"last_update":"2026-03-21T23:39:03.869689261Z"} +2026/03/21 23:39:08 [metric_collector] {"stage_name":"metric_collector","events_processed":19994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3998.8,"last_update":"2026-03-21T23:39:03.869821624Z"} +2026/03/21 23:39:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:39:03.879419554Z"} +2026/03/21 23:39:08 [transform_engine] {"stage_name":"transform_engine","events_processed":666,"events_dropped":0,"avg_latency_ms":6768.362154300204,"throughput_eps":0,"last_update":"2026-03-21T23:39:03.965658041Z"} +2026/03/21 23:39:08 [detection_layer] {"stage_name":"detection_layer","events_processed":665,"events_dropped":0,"avg_latency_ms":16.818326337317476,"throughput_eps":0,"last_update":"2026-03-21T23:39:03.965645818Z"} +2026/03/21 23:39:08 ───────────────────────────────────────────────── +2026/03/21 23:39:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:39:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:39:08.87819277Z"} +2026/03/21 23:39:13 [transform_engine] {"stage_name":"transform_engine","events_processed":666,"events_dropped":0,"avg_latency_ms":6768.362154300204,"throughput_eps":0,"last_update":"2026-03-21T23:39:08.965193606Z"} +2026/03/21 23:39:13 [detection_layer] {"stage_name":"detection_layer","events_processed":665,"events_dropped":0,"avg_latency_ms":16.818326337317476,"throughput_eps":0,"last_update":"2026-03-21T23:39:08.965307285Z"} +2026/03/21 23:39:13 [log_collector] {"stage_name":"log_collector","events_processed":32068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6413.6,"last_update":"2026-03-21T23:39:08.869801913Z"} +2026/03/21 23:39:13 [metric_collector] {"stage_name":"metric_collector","events_processed":19999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3999.8,"last_update":"2026-03-21T23:39:08.87134025Z"} +2026/03/21 23:39:13 ───────────────────────────────────────────────── +2026/03/21 23:39:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:39:18 [metric_collector] {"stage_name":"metric_collector","events_processed":20004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4000.8,"last_update":"2026-03-21T23:39:13.869819218Z"} +2026/03/21 23:39:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:39:13.878055139Z"} +2026/03/21 23:39:18 [transform_engine] {"stage_name":"transform_engine","events_processed":666,"events_dropped":0,"avg_latency_ms":6768.362154300204,"throughput_eps":0,"last_update":"2026-03-21T23:39:13.965236231Z"} +2026/03/21 23:39:18 [detection_layer] {"stage_name":"detection_layer","events_processed":665,"events_dropped":0,"avg_latency_ms":16.818326337317476,"throughput_eps":0,"last_update":"2026-03-21T23:39:13.965256068Z"} +2026/03/21 23:39:18 [log_collector] {"stage_name":"log_collector","events_processed":32068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6413.6,"last_update":"2026-03-21T23:39:13.869549873Z"} +2026/03/21 23:39:18 ───────────────────────────────────────────────── +2026/03/21 23:39:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:39:23 [log_collector] {"stage_name":"log_collector","events_processed":32068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6413.6,"last_update":"2026-03-21T23:39:18.869449246Z"} +2026/03/21 23:39:23 [metric_collector] {"stage_name":"metric_collector","events_processed":20009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4001.8,"last_update":"2026-03-21T23:39:18.869844794Z"} +2026/03/21 23:39:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8006,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:39:18.879052015Z"} +2026/03/21 23:39:23 [transform_engine] {"stage_name":"transform_engine","events_processed":667,"events_dropped":0,"avg_latency_ms":5429.169012240163,"throughput_eps":0,"last_update":"2026-03-21T23:39:19.037646868Z"} +2026/03/21 23:39:23 [detection_layer] {"stage_name":"detection_layer","events_processed":665,"events_dropped":0,"avg_latency_ms":16.818326337317476,"throughput_eps":0,"last_update":"2026-03-21T23:39:18.965393739Z"} +2026/03/21 23:39:23 ───────────────────────────────────────────────── +2026/03/21 23:39:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:39:28 [transform_engine] {"stage_name":"transform_engine","events_processed":667,"events_dropped":0,"avg_latency_ms":5429.169012240163,"throughput_eps":0,"last_update":"2026-03-21T23:39:23.965494393Z"} +2026/03/21 23:39:28 [detection_layer] {"stage_name":"detection_layer","events_processed":666,"events_dropped":0,"avg_latency_ms":18.37852746985398,"throughput_eps":0,"last_update":"2026-03-21T23:39:23.965488352Z"} +2026/03/21 23:39:28 [log_collector] {"stage_name":"log_collector","events_processed":32068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6413.6,"last_update":"2026-03-21T23:39:23.86991954Z"} +2026/03/21 23:39:28 [metric_collector] {"stage_name":"metric_collector","events_processed":20014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4002.8,"last_update":"2026-03-21T23:39:23.870699834Z"} +2026/03/21 23:39:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8008,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:39:23.879363885Z"} +2026/03/21 23:39:28 ───────────────────────────────────────────────── +2026/03/21 23:39:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:39:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:39:28.886337274Z"} +2026/03/21 23:39:33 [transform_engine] {"stage_name":"transform_engine","events_processed":667,"events_dropped":0,"avg_latency_ms":5429.169012240163,"throughput_eps":0,"last_update":"2026-03-21T23:39:28.965706518Z"} +2026/03/21 23:39:33 [detection_layer] {"stage_name":"detection_layer","events_processed":666,"events_dropped":0,"avg_latency_ms":18.37852746985398,"throughput_eps":0,"last_update":"2026-03-21T23:39:28.965690136Z"} +2026/03/21 23:39:33 [log_collector] {"stage_name":"log_collector","events_processed":32068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6413.6,"last_update":"2026-03-21T23:39:28.86973311Z"} +2026/03/21 23:39:33 [metric_collector] {"stage_name":"metric_collector","events_processed":20019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4003.8,"last_update":"2026-03-21T23:39:28.869859082Z"} +2026/03/21 23:39:33 ───────────────────────────────────────────────── +2026/03/21 23:39:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:39:38 [transform_engine] {"stage_name":"transform_engine","events_processed":667,"events_dropped":0,"avg_latency_ms":5429.169012240163,"throughput_eps":0,"last_update":"2026-03-21T23:39:33.965676814Z"} +2026/03/21 23:39:38 [detection_layer] {"stage_name":"detection_layer","events_processed":666,"events_dropped":0,"avg_latency_ms":18.37852746985398,"throughput_eps":0,"last_update":"2026-03-21T23:39:33.965665903Z"} +2026/03/21 23:39:38 [log_collector] {"stage_name":"log_collector","events_processed":32068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6413.6,"last_update":"2026-03-21T23:39:33.870339717Z"} +2026/03/21 23:39:38 [metric_collector] {"stage_name":"metric_collector","events_processed":20024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4004.8,"last_update":"2026-03-21T23:39:33.870719996Z"} +2026/03/21 23:39:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8012,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:39:33.87931329Z"} +2026/03/21 23:39:38 ───────────────────────────────────────────────── +2026/03/21 23:39:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:39:43 [log_collector] {"stage_name":"log_collector","events_processed":32068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6413.6,"last_update":"2026-03-21T23:39:38.869796086Z"} +2026/03/21 23:39:43 [metric_collector] {"stage_name":"metric_collector","events_processed":20029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4005.8,"last_update":"2026-03-21T23:39:38.870238634Z"} +2026/03/21 23:39:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:39:38.878892164Z"} +2026/03/21 23:39:43 [transform_engine] {"stage_name":"transform_engine","events_processed":667,"events_dropped":0,"avg_latency_ms":5429.169012240163,"throughput_eps":0,"last_update":"2026-03-21T23:39:38.965062076Z"} +2026/03/21 23:39:43 [detection_layer] {"stage_name":"detection_layer","events_processed":666,"events_dropped":0,"avg_latency_ms":18.37852746985398,"throughput_eps":0,"last_update":"2026-03-21T23:39:38.966273117Z"} +2026/03/21 23:39:43 ───────────────────────────────────────────────── +2026/03/21 23:39:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:39:48 [transform_engine] {"stage_name":"transform_engine","events_processed":667,"events_dropped":0,"avg_latency_ms":5429.169012240163,"throughput_eps":0,"last_update":"2026-03-21T23:39:43.96560341Z"} +2026/03/21 23:39:48 [detection_layer] {"stage_name":"detection_layer","events_processed":666,"events_dropped":0,"avg_latency_ms":18.37852746985398,"throughput_eps":0,"last_update":"2026-03-21T23:39:43.965591316Z"} +2026/03/21 23:39:48 [log_collector] {"stage_name":"log_collector","events_processed":32068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6413.6,"last_update":"2026-03-21T23:39:43.869720337Z"} +2026/03/21 23:39:48 [metric_collector] {"stage_name":"metric_collector","events_processed":20034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4006.8,"last_update":"2026-03-21T23:39:43.869932453Z"} +2026/03/21 23:39:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:39:43.878256893Z"} +2026/03/21 23:39:48 ───────────────────────────────────────────────── +2026/03/21 23:39:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:39:53 [log_collector] {"stage_name":"log_collector","events_processed":32068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6413.6,"last_update":"2026-03-21T23:39:48.869452056Z"} +2026/03/21 23:39:53 [metric_collector] {"stage_name":"metric_collector","events_processed":20039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4007.8,"last_update":"2026-03-21T23:39:48.869789481Z"} +2026/03/21 23:39:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8018,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:39:48.878184807Z"} +2026/03/21 23:39:53 [transform_engine] {"stage_name":"transform_engine","events_processed":667,"events_dropped":0,"avg_latency_ms":5429.169012240163,"throughput_eps":0,"last_update":"2026-03-21T23:39:43.96560341Z"} +2026/03/21 23:39:53 [detection_layer] {"stage_name":"detection_layer","events_processed":666,"events_dropped":0,"avg_latency_ms":18.37852746985398,"throughput_eps":0,"last_update":"2026-03-21T23:39:48.965510294Z"} +2026/03/21 23:39:53 ───────────────────────────────────────────────── +2026/03/21 23:39:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:39:58 [detection_layer] {"stage_name":"detection_layer","events_processed":666,"events_dropped":0,"avg_latency_ms":18.37852746985398,"throughput_eps":0,"last_update":"2026-03-21T23:39:53.965888438Z"} +2026/03/21 23:39:58 [log_collector] {"stage_name":"log_collector","events_processed":32068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6413.6,"last_update":"2026-03-21T23:39:53.86966818Z"} +2026/03/21 23:39:58 [metric_collector] {"stage_name":"metric_collector","events_processed":20049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4009.8,"last_update":"2026-03-21T23:39:58.869801694Z"} +2026/03/21 23:39:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8020,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:39:53.878701988Z"} +2026/03/21 23:39:58 [transform_engine] {"stage_name":"transform_engine","events_processed":668,"events_dropped":0,"avg_latency_ms":5718.792328392131,"throughput_eps":0,"last_update":"2026-03-21T23:39:55.842830793Z"} +2026/03/21 23:39:58 ───────────────────────────────────────────────── +Saved state: 18 clusters, 32069 messages, reason: none +2026/03/21 23:40:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:40:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8022,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:39:58.878833108Z"} +2026/03/21 23:40:03 [transform_engine] {"stage_name":"transform_engine","events_processed":668,"events_dropped":0,"avg_latency_ms":5718.792328392131,"throughput_eps":0,"last_update":"2026-03-21T23:39:58.966198058Z"} +2026/03/21 23:40:03 [detection_layer] {"stage_name":"detection_layer","events_processed":667,"events_dropped":0,"avg_latency_ms":17.261083575883184,"throughput_eps":0,"last_update":"2026-03-21T23:39:58.966292439Z"} +2026/03/21 23:40:03 [log_collector] {"stage_name":"log_collector","events_processed":32068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6413.6,"last_update":"2026-03-21T23:39:58.869818455Z"} +2026/03/21 23:40:03 [metric_collector] {"stage_name":"metric_collector","events_processed":20049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4009.8,"last_update":"2026-03-21T23:39:58.869801694Z"} +2026/03/21 23:40:03 ───────────────────────────────────────────────── +2026/03/21 23:40:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:40:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:40:03.884727515Z"} +2026/03/21 23:40:08 [transform_engine] {"stage_name":"transform_engine","events_processed":668,"events_dropped":0,"avg_latency_ms":5718.792328392131,"throughput_eps":0,"last_update":"2026-03-21T23:40:03.965955036Z"} +2026/03/21 23:40:08 [detection_layer] {"stage_name":"detection_layer","events_processed":667,"events_dropped":0,"avg_latency_ms":17.261083575883184,"throughput_eps":0,"last_update":"2026-03-21T23:40:03.965938876Z"} +2026/03/21 23:40:08 [log_collector] {"stage_name":"log_collector","events_processed":32071,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6414.2,"last_update":"2026-03-21T23:40:03.869425678Z"} +2026/03/21 23:40:08 [metric_collector] {"stage_name":"metric_collector","events_processed":20054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4010.8,"last_update":"2026-03-21T23:40:03.869793553Z"} +2026/03/21 23:40:08 ───────────────────────────────────────────────── +2026/03/21 23:40:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:40:13 [transform_engine] {"stage_name":"transform_engine","events_processed":668,"events_dropped":0,"avg_latency_ms":5718.792328392131,"throughput_eps":0,"last_update":"2026-03-21T23:40:08.96619011Z"} +2026/03/21 23:40:13 [detection_layer] {"stage_name":"detection_layer","events_processed":667,"events_dropped":0,"avg_latency_ms":17.261083575883184,"throughput_eps":0,"last_update":"2026-03-21T23:40:08.96611174Z"} +2026/03/21 23:40:13 [log_collector] {"stage_name":"log_collector","events_processed":32071,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6414.2,"last_update":"2026-03-21T23:40:08.869945586Z"} +2026/03/21 23:40:13 [metric_collector] {"stage_name":"metric_collector","events_processed":20059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4011.8,"last_update":"2026-03-21T23:40:08.870144207Z"} +2026/03/21 23:40:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:40:08.876927533Z"} +2026/03/21 23:40:13 ───────────────────────────────────────────────── +2026/03/21 23:40:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:40:18 [metric_collector] {"stage_name":"metric_collector","events_processed":20064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4012.8,"last_update":"2026-03-21T23:40:13.870694792Z"} +2026/03/21 23:40:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:40:13.878282539Z"} +2026/03/21 23:40:18 [transform_engine] {"stage_name":"transform_engine","events_processed":668,"events_dropped":0,"avg_latency_ms":5718.792328392131,"throughput_eps":0,"last_update":"2026-03-21T23:40:13.965667276Z"} +2026/03/21 23:40:18 [detection_layer] {"stage_name":"detection_layer","events_processed":667,"events_dropped":0,"avg_latency_ms":17.261083575883184,"throughput_eps":0,"last_update":"2026-03-21T23:40:13.965635636Z"} +2026/03/21 23:40:18 [log_collector] {"stage_name":"log_collector","events_processed":32082,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6416.4,"last_update":"2026-03-21T23:40:13.870329762Z"} +2026/03/21 23:40:18 ───────────────────────────────────────────────── +2026/03/21 23:40:19 [ANOMALY] time=2026-03-21T23:40:19Z score=0.8487 method=SEAD details=MAD!:w=0.25,s=0.67 RRCF-fast:w=0.20,s=0.85 RRCF-mid!:w=0.17,s=0.91 RRCF-slow:w=0.14,s=0.90 COPOD!:w=0.24,s=0.97 +2026/03/21 23:40:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:40:23 [detection_layer] {"stage_name":"detection_layer","events_processed":667,"events_dropped":0,"avg_latency_ms":17.261083575883184,"throughput_eps":0,"last_update":"2026-03-21T23:40:18.965733853Z"} +2026/03/21 23:40:23 [log_collector] {"stage_name":"log_collector","events_processed":32096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6419.2,"last_update":"2026-03-21T23:40:18.869705956Z"} +2026/03/21 23:40:23 [metric_collector] {"stage_name":"metric_collector","events_processed":20069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4013.8,"last_update":"2026-03-21T23:40:18.870464819Z"} +2026/03/21 23:40:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:40:18.876376105Z"} +2026/03/21 23:40:23 [transform_engine] {"stage_name":"transform_engine","events_processed":669,"events_dropped":0,"avg_latency_ms":4596.371757713705,"throughput_eps":0,"last_update":"2026-03-21T23:40:19.072471089Z"} +2026/03/21 23:40:23 ───────────────────────────────────────────────── +2026/03/21 23:40:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:40:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:40:23.878655488Z"} +2026/03/21 23:40:28 [transform_engine] {"stage_name":"transform_engine","events_processed":669,"events_dropped":0,"avg_latency_ms":4596.371757713705,"throughput_eps":0,"last_update":"2026-03-21T23:40:23.966071716Z"} +2026/03/21 23:40:28 [detection_layer] {"stage_name":"detection_layer","events_processed":668,"events_dropped":0,"avg_latency_ms":16.465601060706547,"throughput_eps":0,"last_update":"2026-03-21T23:40:23.966004226Z"} +2026/03/21 23:40:28 [log_collector] {"stage_name":"log_collector","events_processed":32098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6419.6,"last_update":"2026-03-21T23:40:23.870029512Z"} +2026/03/21 23:40:28 [metric_collector] {"stage_name":"metric_collector","events_processed":20074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4014.8,"last_update":"2026-03-21T23:40:23.870282166Z"} +2026/03/21 23:40:28 ───────────────────────────────────────────────── +2026/03/21 23:40:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:40:33 [log_collector] {"stage_name":"log_collector","events_processed":32098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6419.6,"last_update":"2026-03-21T23:40:28.86972841Z"} +2026/03/21 23:40:33 [metric_collector] {"stage_name":"metric_collector","events_processed":20079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4015.8,"last_update":"2026-03-21T23:40:28.869892986Z"} +2026/03/21 23:40:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:40:28.878538339Z"} +2026/03/21 23:40:33 [transform_engine] {"stage_name":"transform_engine","events_processed":669,"events_dropped":0,"avg_latency_ms":4596.371757713705,"throughput_eps":0,"last_update":"2026-03-21T23:40:28.965807966Z"} +2026/03/21 23:40:33 [detection_layer] {"stage_name":"detection_layer","events_processed":668,"events_dropped":0,"avg_latency_ms":16.465601060706547,"throughput_eps":0,"last_update":"2026-03-21T23:40:28.965783018Z"} +2026/03/21 23:40:33 ───────────────────────────────────────────────── +2026/03/21 23:40:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:40:38 [log_collector] {"stage_name":"log_collector","events_processed":32098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6419.6,"last_update":"2026-03-21T23:40:33.869427246Z"} +2026/03/21 23:40:38 [metric_collector] {"stage_name":"metric_collector","events_processed":20084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4016.8,"last_update":"2026-03-21T23:40:33.870030571Z"} +2026/03/21 23:40:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8036,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:40:33.878613456Z"} +2026/03/21 23:40:38 [transform_engine] {"stage_name":"transform_engine","events_processed":669,"events_dropped":0,"avg_latency_ms":4596.371757713705,"throughput_eps":0,"last_update":"2026-03-21T23:40:33.965936243Z"} +2026/03/21 23:40:38 [detection_layer] {"stage_name":"detection_layer","events_processed":668,"events_dropped":0,"avg_latency_ms":16.465601060706547,"throughput_eps":0,"last_update":"2026-03-21T23:40:33.965980939Z"} +2026/03/21 23:40:38 ───────────────────────────────────────────────── +2026/03/21 23:40:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:40:43 [metric_collector] {"stage_name":"metric_collector","events_processed":20089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4017.8,"last_update":"2026-03-21T23:40:38.870176272Z"} +2026/03/21 23:40:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:40:38.878471094Z"} +2026/03/21 23:40:43 [transform_engine] {"stage_name":"transform_engine","events_processed":669,"events_dropped":0,"avg_latency_ms":4596.371757713705,"throughput_eps":0,"last_update":"2026-03-21T23:40:38.965750388Z"} +2026/03/21 23:40:43 [detection_layer] {"stage_name":"detection_layer","events_processed":668,"events_dropped":0,"avg_latency_ms":16.465601060706547,"throughput_eps":0,"last_update":"2026-03-21T23:40:38.965650877Z"} +2026/03/21 23:40:43 [log_collector] {"stage_name":"log_collector","events_processed":32098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6419.6,"last_update":"2026-03-21T23:40:38.869430363Z"} +2026/03/21 23:40:43 ───────────────────────────────────────────────── +2026/03/21 23:40:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:40:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:40:43.880150784Z"} +2026/03/21 23:40:48 [transform_engine] {"stage_name":"transform_engine","events_processed":669,"events_dropped":0,"avg_latency_ms":4596.371757713705,"throughput_eps":0,"last_update":"2026-03-21T23:40:43.965484649Z"} +2026/03/21 23:40:48 [detection_layer] {"stage_name":"detection_layer","events_processed":668,"events_dropped":0,"avg_latency_ms":16.465601060706547,"throughput_eps":0,"last_update":"2026-03-21T23:40:43.965523224Z"} +2026/03/21 23:40:48 [log_collector] {"stage_name":"log_collector","events_processed":32098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6419.6,"last_update":"2026-03-21T23:40:43.869561575Z"} +2026/03/21 23:40:48 [metric_collector] {"stage_name":"metric_collector","events_processed":20094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4018.8,"last_update":"2026-03-21T23:40:43.870283639Z"} +2026/03/21 23:40:48 ───────────────────────────────────────────────── +2026/03/21 23:40:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:40:53 [log_collector] {"stage_name":"log_collector","events_processed":32098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6419.6,"last_update":"2026-03-21T23:40:48.869425454Z"} +2026/03/21 23:40:53 [metric_collector] {"stage_name":"metric_collector","events_processed":20099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4019.8,"last_update":"2026-03-21T23:40:48.870035623Z"} +2026/03/21 23:40:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:40:48.879117163Z"} +2026/03/21 23:40:53 [transform_engine] {"stage_name":"transform_engine","events_processed":670,"events_dropped":0,"avg_latency_ms":3700.015257770964,"throughput_eps":0,"last_update":"2026-03-21T23:40:49.079931684Z"} +2026/03/21 23:40:53 [detection_layer] {"stage_name":"detection_layer","events_processed":668,"events_dropped":0,"avg_latency_ms":16.465601060706547,"throughput_eps":0,"last_update":"2026-03-21T23:40:48.96531332Z"} +2026/03/21 23:40:53 ───────────────────────────────────────────────── +2026/03/21 23:40:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:40:58 [transform_engine] {"stage_name":"transform_engine","events_processed":670,"events_dropped":0,"avg_latency_ms":3700.015257770964,"throughput_eps":0,"last_update":"2026-03-21T23:40:53.965960087Z"} +2026/03/21 23:40:58 [detection_layer] {"stage_name":"detection_layer","events_processed":669,"events_dropped":0,"avg_latency_ms":18.083229648565236,"throughput_eps":0,"last_update":"2026-03-21T23:40:53.965948125Z"} +2026/03/21 23:40:58 [log_collector] {"stage_name":"log_collector","events_processed":32098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6419.6,"last_update":"2026-03-21T23:40:53.870346168Z"} +2026/03/21 23:40:58 [metric_collector] {"stage_name":"metric_collector","events_processed":20104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4020.8,"last_update":"2026-03-21T23:40:53.870552192Z"} +2026/03/21 23:40:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:40:53.879729826Z"} +2026/03/21 23:40:58 ───────────────────────────────────────────────── +2026/03/21 23:41:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:41:03 [log_collector] {"stage_name":"log_collector","events_processed":32098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6419.6,"last_update":"2026-03-21T23:40:58.869410994Z"} +2026/03/21 23:41:03 [metric_collector] {"stage_name":"metric_collector","events_processed":20109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4021.8,"last_update":"2026-03-21T23:40:58.869857089Z"} +2026/03/21 23:41:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:40:58.877950456Z"} +2026/03/21 23:41:03 [transform_engine] {"stage_name":"transform_engine","events_processed":670,"events_dropped":0,"avg_latency_ms":3700.015257770964,"throughput_eps":0,"last_update":"2026-03-21T23:40:58.965177658Z"} +2026/03/21 23:41:03 [detection_layer] {"stage_name":"detection_layer","events_processed":669,"events_dropped":0,"avg_latency_ms":18.083229648565236,"throughput_eps":0,"last_update":"2026-03-21T23:40:58.966333162Z"} +2026/03/21 23:41:03 ───────────────────────────────────────────────── +2026/03/21 23:41:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:41:08 [log_collector] {"stage_name":"log_collector","events_processed":32098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6419.6,"last_update":"2026-03-21T23:41:03.869407407Z"} +2026/03/21 23:41:08 [metric_collector] {"stage_name":"metric_collector","events_processed":20114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4022.8,"last_update":"2026-03-21T23:41:03.869914347Z"} +2026/03/21 23:41:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8048,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:41:03.876353625Z"} +2026/03/21 23:41:08 [transform_engine] {"stage_name":"transform_engine","events_processed":670,"events_dropped":0,"avg_latency_ms":3700.015257770964,"throughput_eps":0,"last_update":"2026-03-21T23:41:03.965567303Z"} +2026/03/21 23:41:08 [detection_layer] {"stage_name":"detection_layer","events_processed":669,"events_dropped":0,"avg_latency_ms":18.083229648565236,"throughput_eps":0,"last_update":"2026-03-21T23:41:03.965559097Z"} +2026/03/21 23:41:08 ───────────────────────────────────────────────── +2026/03/21 23:41:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:41:13 [transform_engine] {"stage_name":"transform_engine","events_processed":670,"events_dropped":0,"avg_latency_ms":3700.015257770964,"throughput_eps":0,"last_update":"2026-03-21T23:41:08.965238633Z"} +2026/03/21 23:41:13 [detection_layer] {"stage_name":"detection_layer","events_processed":669,"events_dropped":0,"avg_latency_ms":18.083229648565236,"throughput_eps":0,"last_update":"2026-03-21T23:41:08.965285082Z"} +2026/03/21 23:41:13 [log_collector] {"stage_name":"log_collector","events_processed":32098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6419.6,"last_update":"2026-03-21T23:41:08.869441361Z"} +2026/03/21 23:41:13 [metric_collector] {"stage_name":"metric_collector","events_processed":20119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4023.8,"last_update":"2026-03-21T23:41:08.86991063Z"} +2026/03/21 23:41:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8048,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:41:08.869447352Z"} +2026/03/21 23:41:13 ───────────────────────────────────────────────── +2026/03/21 23:41:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:41:18 [metric_collector] {"stage_name":"metric_collector","events_processed":20124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4024.8,"last_update":"2026-03-21T23:41:13.869897834Z"} +2026/03/21 23:41:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:41:13.879095496Z"} +2026/03/21 23:41:18 [transform_engine] {"stage_name":"transform_engine","events_processed":670,"events_dropped":0,"avg_latency_ms":3700.015257770964,"throughput_eps":0,"last_update":"2026-03-21T23:41:13.965475014Z"} +2026/03/21 23:41:18 [detection_layer] {"stage_name":"detection_layer","events_processed":669,"events_dropped":0,"avg_latency_ms":18.083229648565236,"throughput_eps":0,"last_update":"2026-03-21T23:41:13.965456107Z"} +2026/03/21 23:41:18 [log_collector] {"stage_name":"log_collector","events_processed":32098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6419.6,"last_update":"2026-03-21T23:41:13.86940517Z"} +2026/03/21 23:41:18 ───────────────────────────────────────────────── +2026/03/21 23:41:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:41:23 [log_collector] {"stage_name":"log_collector","events_processed":32098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6419.6,"last_update":"2026-03-21T23:41:18.869401273Z"} +2026/03/21 23:41:23 [metric_collector] {"stage_name":"metric_collector","events_processed":20129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4025.8,"last_update":"2026-03-21T23:41:18.86969216Z"} +2026/03/21 23:41:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:41:18.878780032Z"} +2026/03/21 23:41:23 [transform_engine] {"stage_name":"transform_engine","events_processed":670,"events_dropped":0,"avg_latency_ms":3700.015257770964,"throughput_eps":0,"last_update":"2026-03-21T23:41:13.965475014Z"} +2026/03/21 23:41:23 [detection_layer] {"stage_name":"detection_layer","events_processed":669,"events_dropped":0,"avg_latency_ms":18.083229648565236,"throughput_eps":0,"last_update":"2026-03-21T23:41:18.966094439Z"} +2026/03/21 23:41:23 ───────────────────────────────────────────────── +2026/03/21 23:41:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:41:28 [log_collector] {"stage_name":"log_collector","events_processed":32098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6419.6,"last_update":"2026-03-21T23:41:23.869842517Z"} +2026/03/21 23:41:28 [metric_collector] {"stage_name":"metric_collector","events_processed":20134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4026.8,"last_update":"2026-03-21T23:41:23.870080063Z"} +2026/03/21 23:41:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8056,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:41:23.879544976Z"} +2026/03/21 23:41:28 [transform_engine] {"stage_name":"transform_engine","events_processed":670,"events_dropped":0,"avg_latency_ms":3700.015257770964,"throughput_eps":0,"last_update":"2026-03-21T23:41:13.965475014Z"} +2026/03/21 23:41:28 [detection_layer] {"stage_name":"detection_layer","events_processed":669,"events_dropped":0,"avg_latency_ms":18.083229648565236,"throughput_eps":0,"last_update":"2026-03-21T23:41:23.965920094Z"} +2026/03/21 23:41:28 ───────────────────────────────────────────────── +2026/03/21 23:41:33 [ANOMALY] time=2026-03-21T23:41:31Z score=0.8218 method=SEAD details=MAD!:w=0.25,s=0.63 RRCF-fast!:w=0.20,s=0.94 RRCF-mid!:w=0.17,s=0.96 RRCF-slow!:w=0.14,s=0.99 COPOD!:w=0.24,s=0.73 +2026/03/21 23:41:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:41:33 [log_collector] {"stage_name":"log_collector","events_processed":32098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6419.6,"last_update":"2026-03-21T23:41:28.869960604Z"} +2026/03/21 23:41:33 [metric_collector] {"stage_name":"metric_collector","events_processed":20139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4027.8,"last_update":"2026-03-21T23:41:28.869800467Z"} +2026/03/21 23:41:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:41:28.879819612Z"} +2026/03/21 23:41:33 [transform_engine] {"stage_name":"transform_engine","events_processed":671,"events_dropped":0,"avg_latency_ms":5797.090833016771,"throughput_eps":0,"last_update":"2026-03-21T23:41:33.151503914Z"} +2026/03/21 23:41:33 [detection_layer] {"stage_name":"detection_layer","events_processed":669,"events_dropped":0,"avg_latency_ms":18.083229648565236,"throughput_eps":0,"last_update":"2026-03-21T23:41:28.966040785Z"} +2026/03/21 23:41:33 ───────────────────────────────────────────────── +2026/03/21 23:41:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:41:38 [detection_layer] {"stage_name":"detection_layer","events_processed":670,"events_dropped":0,"avg_latency_ms":17.60705051885219,"throughput_eps":0,"last_update":"2026-03-21T23:41:33.965670889Z"} +2026/03/21 23:41:38 [log_collector] {"stage_name":"log_collector","events_processed":32098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6419.6,"last_update":"2026-03-21T23:41:33.869580257Z"} +2026/03/21 23:41:38 [metric_collector] {"stage_name":"metric_collector","events_processed":20144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4028.8,"last_update":"2026-03-21T23:41:33.869979422Z"} +2026/03/21 23:41:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:41:33.878430042Z"} +2026/03/21 23:41:38 [transform_engine] {"stage_name":"transform_engine","events_processed":671,"events_dropped":0,"avg_latency_ms":5797.090833016771,"throughput_eps":0,"last_update":"2026-03-21T23:41:33.965691518Z"} +2026/03/21 23:41:38 ───────────────────────────────────────────────── +2026/03/21 23:41:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:41:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8062,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:41:38.878654295Z"} +2026/03/21 23:41:43 [transform_engine] {"stage_name":"transform_engine","events_processed":671,"events_dropped":0,"avg_latency_ms":5797.090833016771,"throughput_eps":0,"last_update":"2026-03-21T23:41:38.965883608Z"} +2026/03/21 23:41:43 [detection_layer] {"stage_name":"detection_layer","events_processed":670,"events_dropped":0,"avg_latency_ms":17.60705051885219,"throughput_eps":0,"last_update":"2026-03-21T23:41:38.965862248Z"} +2026/03/21 23:41:43 [log_collector] {"stage_name":"log_collector","events_processed":32098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6419.6,"last_update":"2026-03-21T23:41:43.869583459Z"} +2026/03/21 23:41:43 [metric_collector] {"stage_name":"metric_collector","events_processed":20149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4029.8,"last_update":"2026-03-21T23:41:38.869998531Z"} +2026/03/21 23:41:43 ───────────────────────────────────────────────── +2026/03/21 23:41:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:41:48 [transform_engine] {"stage_name":"transform_engine","events_processed":671,"events_dropped":0,"avg_latency_ms":5797.090833016771,"throughput_eps":0,"last_update":"2026-03-21T23:41:43.965136981Z"} +2026/03/21 23:41:48 [detection_layer] {"stage_name":"detection_layer","events_processed":670,"events_dropped":0,"avg_latency_ms":17.60705051885219,"throughput_eps":0,"last_update":"2026-03-21T23:41:43.965346793Z"} +2026/03/21 23:41:48 [log_collector] {"stage_name":"log_collector","events_processed":32098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6419.6,"last_update":"2026-03-21T23:41:43.869583459Z"} +2026/03/21 23:41:48 [metric_collector] {"stage_name":"metric_collector","events_processed":20154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4030.8,"last_update":"2026-03-21T23:41:43.870141358Z"} +2026/03/21 23:41:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:41:43.879007474Z"} +2026/03/21 23:41:48 ───────────────────────────────────────────────── +2026/03/21 23:41:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:41:53 [detection_layer] {"stage_name":"detection_layer","events_processed":670,"events_dropped":0,"avg_latency_ms":17.60705051885219,"throughput_eps":0,"last_update":"2026-03-21T23:41:48.966107878Z"} +2026/03/21 23:41:53 [log_collector] {"stage_name":"log_collector","events_processed":32098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6419.6,"last_update":"2026-03-21T23:41:53.869679908Z"} +2026/03/21 23:41:53 [metric_collector] {"stage_name":"metric_collector","events_processed":20159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4031.8,"last_update":"2026-03-21T23:41:48.870104925Z"} +2026/03/21 23:41:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:41:48.87864159Z"} +2026/03/21 23:41:53 [transform_engine] {"stage_name":"transform_engine","events_processed":672,"events_dropped":0,"avg_latency_ms":4652.297692413417,"throughput_eps":0,"last_update":"2026-03-21T23:41:49.039124801Z"} +2026/03/21 23:41:53 ───────────────────────────────────────────────── +2026/03/21 23:41:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:41:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:41:53.878566845Z"} +2026/03/21 23:41:58 [transform_engine] {"stage_name":"transform_engine","events_processed":672,"events_dropped":0,"avg_latency_ms":4652.297692413417,"throughput_eps":0,"last_update":"2026-03-21T23:41:53.966018684Z"} +2026/03/21 23:41:58 [detection_layer] {"stage_name":"detection_layer","events_processed":671,"events_dropped":0,"avg_latency_ms":18.466886415081753,"throughput_eps":0,"last_update":"2026-03-21T23:41:53.966067668Z"} +2026/03/21 23:41:58 [log_collector] {"stage_name":"log_collector","events_processed":32098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6419.6,"last_update":"2026-03-21T23:41:58.870060898Z"} +2026/03/21 23:41:58 [metric_collector] {"stage_name":"metric_collector","events_processed":20164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4032.8,"last_update":"2026-03-21T23:41:53.870291519Z"} +2026/03/21 23:41:58 ───────────────────────────────────────────────── +2026/03/21 23:42:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:42:03 [metric_collector] {"stage_name":"metric_collector","events_processed":20169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4033.8,"last_update":"2026-03-21T23:41:58.870716383Z"} +2026/03/21 23:42:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:41:58.879019561Z"} +2026/03/21 23:42:03 [transform_engine] {"stage_name":"transform_engine","events_processed":672,"events_dropped":0,"avg_latency_ms":4652.297692413417,"throughput_eps":0,"last_update":"2026-03-21T23:41:58.965494108Z"} +2026/03/21 23:42:03 [detection_layer] {"stage_name":"detection_layer","events_processed":671,"events_dropped":0,"avg_latency_ms":18.466886415081753,"throughput_eps":0,"last_update":"2026-03-21T23:41:58.96532281Z"} +2026/03/21 23:42:03 [log_collector] {"stage_name":"log_collector","events_processed":32098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6419.6,"last_update":"2026-03-21T23:41:58.870060898Z"} +2026/03/21 23:42:03 ───────────────────────────────────────────────── +2026/03/21 23:42:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:42:08 [log_collector] {"stage_name":"log_collector","events_processed":32098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6419.6,"last_update":"2026-03-21T23:42:08.869989066Z"} +2026/03/21 23:42:08 [metric_collector] {"stage_name":"metric_collector","events_processed":20174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4034.8,"last_update":"2026-03-21T23:42:03.870574233Z"} +2026/03/21 23:42:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8072,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:42:03.879678826Z"} +2026/03/21 23:42:08 [transform_engine] {"stage_name":"transform_engine","events_processed":672,"events_dropped":0,"avg_latency_ms":4652.297692413417,"throughput_eps":0,"last_update":"2026-03-21T23:42:03.965205667Z"} +2026/03/21 23:42:08 [detection_layer] {"stage_name":"detection_layer","events_processed":671,"events_dropped":0,"avg_latency_ms":18.466886415081753,"throughput_eps":0,"last_update":"2026-03-21T23:42:03.966388814Z"} +2026/03/21 23:42:08 ───────────────────────────────────────────────── +2026/03/21 23:42:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:42:13 [transform_engine] {"stage_name":"transform_engine","events_processed":672,"events_dropped":0,"avg_latency_ms":4652.297692413417,"throughput_eps":0,"last_update":"2026-03-21T23:42:08.9658998Z"} +2026/03/21 23:42:13 [detection_layer] {"stage_name":"detection_layer","events_processed":671,"events_dropped":0,"avg_latency_ms":18.466886415081753,"throughput_eps":0,"last_update":"2026-03-21T23:42:08.965932673Z"} +2026/03/21 23:42:13 [log_collector] {"stage_name":"log_collector","events_processed":32098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6419.6,"last_update":"2026-03-21T23:42:08.869989066Z"} +2026/03/21 23:42:13 [metric_collector] {"stage_name":"metric_collector","events_processed":20179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4035.8,"last_update":"2026-03-21T23:42:08.870413819Z"} +2026/03/21 23:42:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:42:08.878643617Z"} +2026/03/21 23:42:13 ───────────────────────────────────────────────── +2026/03/21 23:42:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:42:18 [log_collector] {"stage_name":"log_collector","events_processed":32098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6419.6,"last_update":"2026-03-21T23:42:13.869938816Z"} +2026/03/21 23:42:18 [metric_collector] {"stage_name":"metric_collector","events_processed":20184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4036.8,"last_update":"2026-03-21T23:42:13.870205347Z"} +2026/03/21 23:42:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8076,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:42:13.878973997Z"} +2026/03/21 23:42:18 [transform_engine] {"stage_name":"transform_engine","events_processed":672,"events_dropped":0,"avg_latency_ms":4652.297692413417,"throughput_eps":0,"last_update":"2026-03-21T23:42:13.965141754Z"} +2026/03/21 23:42:18 [detection_layer] {"stage_name":"detection_layer","events_processed":671,"events_dropped":0,"avg_latency_ms":18.466886415081753,"throughput_eps":0,"last_update":"2026-03-21T23:42:13.96631388Z"} +2026/03/21 23:42:18 ───────────────────────────────────────────────── +2026/03/21 23:42:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:42:23 [log_collector] {"stage_name":"log_collector","events_processed":32098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6419.6,"last_update":"2026-03-21T23:42:18.870010412Z"} +2026/03/21 23:42:23 [metric_collector] {"stage_name":"metric_collector","events_processed":20189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4037.8,"last_update":"2026-03-21T23:42:18.870457067Z"} +2026/03/21 23:42:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:42:18.879809485Z"} +2026/03/21 23:42:23 [transform_engine] {"stage_name":"transform_engine","events_processed":673,"events_dropped":0,"avg_latency_ms":3736.700205930734,"throughput_eps":0,"last_update":"2026-03-21T23:42:19.040590032Z"} +2026/03/21 23:42:23 [detection_layer] {"stage_name":"detection_layer","events_processed":671,"events_dropped":0,"avg_latency_ms":18.466886415081753,"throughput_eps":0,"last_update":"2026-03-21T23:42:18.966145865Z"} +2026/03/21 23:42:23 ───────────────────────────────────────────────── +2026/03/21 23:42:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:42:28 [metric_collector] {"stage_name":"metric_collector","events_processed":20194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4038.8,"last_update":"2026-03-21T23:42:23.869830698Z"} +2026/03/21 23:42:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:42:23.877522614Z"} +2026/03/21 23:42:28 [transform_engine] {"stage_name":"transform_engine","events_processed":673,"events_dropped":0,"avg_latency_ms":3736.700205930734,"throughput_eps":0,"last_update":"2026-03-21T23:42:23.965885928Z"} +2026/03/21 23:42:28 [detection_layer] {"stage_name":"detection_layer","events_processed":672,"events_dropped":0,"avg_latency_ms":19.432499332065404,"throughput_eps":0,"last_update":"2026-03-21T23:42:23.965926065Z"} +2026/03/21 23:42:28 [log_collector] {"stage_name":"log_collector","events_processed":32098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6419.6,"last_update":"2026-03-21T23:42:23.869491057Z"} +2026/03/21 23:42:28 ───────────────────────────────────────────────── +2026/03/21 23:42:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:42:33 [metric_collector] {"stage_name":"metric_collector","events_processed":20199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4039.8,"last_update":"2026-03-21T23:42:28.870021279Z"} +2026/03/21 23:42:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8082,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:42:28.878677873Z"} +2026/03/21 23:42:33 [transform_engine] {"stage_name":"transform_engine","events_processed":673,"events_dropped":0,"avg_latency_ms":3736.700205930734,"throughput_eps":0,"last_update":"2026-03-21T23:42:28.966160419Z"} +2026/03/21 23:42:33 [detection_layer] {"stage_name":"detection_layer","events_processed":672,"events_dropped":0,"avg_latency_ms":19.432499332065404,"throughput_eps":0,"last_update":"2026-03-21T23:42:28.966085957Z"} +2026/03/21 23:42:33 [log_collector] {"stage_name":"log_collector","events_processed":32098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6419.6,"last_update":"2026-03-21T23:42:33.869894685Z"} +2026/03/21 23:42:33 ───────────────────────────────────────────────── +2026/03/21 23:42:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:42:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:42:33.878926638Z"} +2026/03/21 23:42:38 [transform_engine] {"stage_name":"transform_engine","events_processed":673,"events_dropped":0,"avg_latency_ms":3736.700205930734,"throughput_eps":0,"last_update":"2026-03-21T23:42:33.96626109Z"} +2026/03/21 23:42:38 [detection_layer] {"stage_name":"detection_layer","events_processed":672,"events_dropped":0,"avg_latency_ms":19.432499332065404,"throughput_eps":0,"last_update":"2026-03-21T23:42:33.966126052Z"} +2026/03/21 23:42:38 [log_collector] {"stage_name":"log_collector","events_processed":32098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6419.6,"last_update":"2026-03-21T23:42:33.869894685Z"} +2026/03/21 23:42:38 [metric_collector] {"stage_name":"metric_collector","events_processed":20209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4041.8,"last_update":"2026-03-21T23:42:38.869763122Z"} +2026/03/21 23:42:38 ───────────────────────────────────────────────── +2026/03/21 23:42:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:42:43 [log_collector] {"stage_name":"log_collector","events_processed":32098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6419.6,"last_update":"2026-03-21T23:42:38.869821675Z"} +2026/03/21 23:42:43 [metric_collector] {"stage_name":"metric_collector","events_processed":20209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4041.8,"last_update":"2026-03-21T23:42:38.869763122Z"} +2026/03/21 23:42:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:42:38.87860875Z"} +2026/03/21 23:42:43 [transform_engine] {"stage_name":"transform_engine","events_processed":673,"events_dropped":0,"avg_latency_ms":3736.700205930734,"throughput_eps":0,"last_update":"2026-03-21T23:42:38.965939614Z"} +2026/03/21 23:42:43 [detection_layer] {"stage_name":"detection_layer","events_processed":672,"events_dropped":0,"avg_latency_ms":19.432499332065404,"throughput_eps":0,"last_update":"2026-03-21T23:42:38.965976786Z"} +2026/03/21 23:42:43 ───────────────────────────────────────────────── +2026/03/21 23:42:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:42:48 [log_collector] {"stage_name":"log_collector","events_processed":32098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6419.6,"last_update":"2026-03-21T23:42:43.870423713Z"} +2026/03/21 23:42:48 [metric_collector] {"stage_name":"metric_collector","events_processed":20214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4042.8,"last_update":"2026-03-21T23:42:43.870789955Z"} +2026/03/21 23:42:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:42:43.879800738Z"} +2026/03/21 23:42:48 [transform_engine] {"stage_name":"transform_engine","events_processed":673,"events_dropped":0,"avg_latency_ms":3736.700205930734,"throughput_eps":0,"last_update":"2026-03-21T23:42:43.96620646Z"} +2026/03/21 23:42:48 [detection_layer] {"stage_name":"detection_layer","events_processed":672,"events_dropped":0,"avg_latency_ms":19.432499332065404,"throughput_eps":0,"last_update":"2026-03-21T23:42:43.96629019Z"} +2026/03/21 23:42:48 ───────────────────────────────────────────────── +Saved state: 18 clusters, 32099 messages, reason: none +2026/03/21 23:42:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:42:53 [detection_layer] {"stage_name":"detection_layer","events_processed":672,"events_dropped":0,"avg_latency_ms":19.432499332065404,"throughput_eps":0,"last_update":"2026-03-21T23:42:48.965739544Z"} +2026/03/21 23:42:53 [log_collector] {"stage_name":"log_collector","events_processed":32098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6419.6,"last_update":"2026-03-21T23:42:48.869985252Z"} +2026/03/21 23:42:53 [metric_collector] {"stage_name":"metric_collector","events_processed":20219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4043.8,"last_update":"2026-03-21T23:42:48.870510788Z"} +2026/03/21 23:42:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:42:48.878521726Z"} +2026/03/21 23:42:53 [transform_engine] {"stage_name":"transform_engine","events_processed":673,"events_dropped":0,"avg_latency_ms":3736.700205930734,"throughput_eps":0,"last_update":"2026-03-21T23:42:43.96620646Z"} +2026/03/21 23:42:53 ───────────────────────────────────────────────── +2026/03/21 23:42:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:42:58 [log_collector] {"stage_name":"log_collector","events_processed":32104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6420.8,"last_update":"2026-03-21T23:42:53.869715658Z"} +2026/03/21 23:42:58 [metric_collector] {"stage_name":"metric_collector","events_processed":20224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4044.8,"last_update":"2026-03-21T23:42:53.869898057Z"} +2026/03/21 23:42:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:42:53.877135243Z"} +2026/03/21 23:42:58 [transform_engine] {"stage_name":"transform_engine","events_processed":673,"events_dropped":0,"avg_latency_ms":3736.700205930734,"throughput_eps":0,"last_update":"2026-03-21T23:42:43.96620646Z"} +2026/03/21 23:42:58 [detection_layer] {"stage_name":"detection_layer","events_processed":672,"events_dropped":0,"avg_latency_ms":19.432499332065404,"throughput_eps":0,"last_update":"2026-03-21T23:42:53.966371676Z"} +2026/03/21 23:42:58 ───────────────────────────────────────────────── +2026/03/21 23:43:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:43:03 [log_collector] {"stage_name":"log_collector","events_processed":32111,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6422.2,"last_update":"2026-03-21T23:42:58.870344047Z"} +2026/03/21 23:43:03 [metric_collector] {"stage_name":"metric_collector","events_processed":20234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4046.8,"last_update":"2026-03-21T23:43:03.86976674Z"} +2026/03/21 23:43:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:42:58.878234614Z"} +2026/03/21 23:43:03 [transform_engine] {"stage_name":"transform_engine","events_processed":673,"events_dropped":0,"avg_latency_ms":3736.700205930734,"throughput_eps":0,"last_update":"2026-03-21T23:42:43.96620646Z"} +2026/03/21 23:43:03 [detection_layer] {"stage_name":"detection_layer","events_processed":672,"events_dropped":0,"avg_latency_ms":19.432499332065404,"throughput_eps":0,"last_update":"2026-03-21T23:42:58.965428775Z"} +2026/03/21 23:43:03 ───────────────────────────────────────────────── +2026/03/21 23:43:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:43:08 [metric_collector] {"stage_name":"metric_collector","events_processed":20234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4046.8,"last_update":"2026-03-21T23:43:03.86976674Z"} +2026/03/21 23:43:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:43:03.878851895Z"} +2026/03/21 23:43:08 [transform_engine] {"stage_name":"transform_engine","events_processed":674,"events_dropped":0,"avg_latency_ms":6676.129872344587,"throughput_eps":0,"last_update":"2026-03-21T23:43:07.399696488Z"} +2026/03/21 23:43:08 [detection_layer] {"stage_name":"detection_layer","events_processed":672,"events_dropped":0,"avg_latency_ms":19.432499332065404,"throughput_eps":0,"last_update":"2026-03-21T23:43:03.96621957Z"} +2026/03/21 23:43:08 [log_collector] {"stage_name":"log_collector","events_processed":32111,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6422.2,"last_update":"2026-03-21T23:43:03.869922277Z"} +2026/03/21 23:43:08 ───────────────────────────────────────────────── +2026/03/21 23:43:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:43:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:43:08.87840894Z"} +2026/03/21 23:43:13 [transform_engine] {"stage_name":"transform_engine","events_processed":674,"events_dropped":0,"avg_latency_ms":6676.129872344587,"throughput_eps":0,"last_update":"2026-03-21T23:43:08.965730104Z"} +2026/03/21 23:43:13 [detection_layer] {"stage_name":"detection_layer","events_processed":673,"events_dropped":0,"avg_latency_ms":18.509938065652324,"throughput_eps":0,"last_update":"2026-03-21T23:43:08.965822802Z"} +2026/03/21 23:43:13 [log_collector] {"stage_name":"log_collector","events_processed":32112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6422.4,"last_update":"2026-03-21T23:43:08.870025659Z"} +2026/03/21 23:43:13 [metric_collector] {"stage_name":"metric_collector","events_processed":20244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4048.8,"last_update":"2026-03-21T23:43:13.869736784Z"} +2026/03/21 23:43:13 ───────────────────────────────────────────────── +2026/03/21 23:43:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:43:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:43:13.878455929Z"} +2026/03/21 23:43:18 [transform_engine] {"stage_name":"transform_engine","events_processed":674,"events_dropped":0,"avg_latency_ms":6676.129872344587,"throughput_eps":0,"last_update":"2026-03-21T23:43:13.965616094Z"} +2026/03/21 23:43:18 [detection_layer] {"stage_name":"detection_layer","events_processed":673,"events_dropped":0,"avg_latency_ms":18.509938065652324,"throughput_eps":0,"last_update":"2026-03-21T23:43:13.965646102Z"} +2026/03/21 23:43:18 [log_collector] {"stage_name":"log_collector","events_processed":32112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6422.4,"last_update":"2026-03-21T23:43:13.86982878Z"} +2026/03/21 23:43:18 [metric_collector] {"stage_name":"metric_collector","events_processed":20244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4048.8,"last_update":"2026-03-21T23:43:13.869736784Z"} +2026/03/21 23:43:18 ───────────────────────────────────────────────── +2026/03/21 23:43:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:43:23 [detection_layer] {"stage_name":"detection_layer","events_processed":673,"events_dropped":0,"avg_latency_ms":18.509938065652324,"throughput_eps":0,"last_update":"2026-03-21T23:43:18.965409011Z"} +2026/03/21 23:43:23 [log_collector] {"stage_name":"log_collector","events_processed":32112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6422.4,"last_update":"2026-03-21T23:43:18.870277392Z"} +2026/03/21 23:43:23 [metric_collector] {"stage_name":"metric_collector","events_processed":20249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4049.8,"last_update":"2026-03-21T23:43:18.870548352Z"} +2026/03/21 23:43:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:43:18.878243304Z"} +2026/03/21 23:43:23 [transform_engine] {"stage_name":"transform_engine","events_processed":675,"events_dropped":0,"avg_latency_ms":5362.048273075669,"throughput_eps":0,"last_update":"2026-03-21T23:43:19.071166144Z"} +2026/03/21 23:43:23 ───────────────────────────────────────────────── +2026/03/21 23:43:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:43:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:43:23.878183137Z"} +2026/03/21 23:43:28 [transform_engine] {"stage_name":"transform_engine","events_processed":675,"events_dropped":0,"avg_latency_ms":5362.048273075669,"throughput_eps":0,"last_update":"2026-03-21T23:43:23.965376626Z"} +2026/03/21 23:43:28 [detection_layer] {"stage_name":"detection_layer","events_processed":674,"events_dropped":0,"avg_latency_ms":17.75693825252186,"throughput_eps":0,"last_update":"2026-03-21T23:43:23.965399821Z"} +2026/03/21 23:43:28 [log_collector] {"stage_name":"log_collector","events_processed":32112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6422.4,"last_update":"2026-03-21T23:43:28.870316929Z"} +2026/03/21 23:43:28 [metric_collector] {"stage_name":"metric_collector","events_processed":20254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4050.8,"last_update":"2026-03-21T23:43:23.870185555Z"} +2026/03/21 23:43:28 ───────────────────────────────────────────────── +2026/03/21 23:43:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:43:33 [log_collector] {"stage_name":"log_collector","events_processed":32112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6422.4,"last_update":"2026-03-21T23:43:28.870316929Z"} +2026/03/21 23:43:33 [metric_collector] {"stage_name":"metric_collector","events_processed":20259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4051.8,"last_update":"2026-03-21T23:43:28.870830553Z"} +2026/03/21 23:43:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:43:28.878875286Z"} +2026/03/21 23:43:33 [transform_engine] {"stage_name":"transform_engine","events_processed":675,"events_dropped":0,"avg_latency_ms":5362.048273075669,"throughput_eps":0,"last_update":"2026-03-21T23:43:28.966260571Z"} +2026/03/21 23:43:33 [detection_layer] {"stage_name":"detection_layer","events_processed":674,"events_dropped":0,"avg_latency_ms":17.75693825252186,"throughput_eps":0,"last_update":"2026-03-21T23:43:28.9662234Z"} +2026/03/21 23:43:33 ───────────────────────────────────────────────── +2026/03/21 23:43:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:43:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:43:33.878799797Z"} +2026/03/21 23:43:38 [transform_engine] {"stage_name":"transform_engine","events_processed":675,"events_dropped":0,"avg_latency_ms":5362.048273075669,"throughput_eps":0,"last_update":"2026-03-21T23:43:33.966082726Z"} +2026/03/21 23:43:38 [detection_layer] {"stage_name":"detection_layer","events_processed":674,"events_dropped":0,"avg_latency_ms":17.75693825252186,"throughput_eps":0,"last_update":"2026-03-21T23:43:33.965979529Z"} +2026/03/21 23:43:38 [log_collector] {"stage_name":"log_collector","events_processed":32112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6422.4,"last_update":"2026-03-21T23:43:38.869671752Z"} +2026/03/21 23:43:38 [metric_collector] {"stage_name":"metric_collector","events_processed":20264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4052.8,"last_update":"2026-03-21T23:43:33.86985013Z"} +2026/03/21 23:43:38 ───────────────────────────────────────────────── +2026/03/21 23:43:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:43:43 [log_collector] {"stage_name":"log_collector","events_processed":32112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6422.4,"last_update":"2026-03-21T23:43:38.869671752Z"} +2026/03/21 23:43:43 [metric_collector] {"stage_name":"metric_collector","events_processed":20269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4053.8,"last_update":"2026-03-21T23:43:38.870072179Z"} +2026/03/21 23:43:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:43:38.878918938Z"} +2026/03/21 23:43:43 [transform_engine] {"stage_name":"transform_engine","events_processed":675,"events_dropped":0,"avg_latency_ms":5362.048273075669,"throughput_eps":0,"last_update":"2026-03-21T23:43:38.965094355Z"} +2026/03/21 23:43:43 [detection_layer] {"stage_name":"detection_layer","events_processed":674,"events_dropped":0,"avg_latency_ms":17.75693825252186,"throughput_eps":0,"last_update":"2026-03-21T23:43:38.96629187Z"} +2026/03/21 23:43:43 ───────────────────────────────────────────────── +2026/03/21 23:43:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:43:48 [metric_collector] {"stage_name":"metric_collector","events_processed":20274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4054.8,"last_update":"2026-03-21T23:43:43.870187989Z"} +2026/03/21 23:43:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:43:43.878602209Z"} +2026/03/21 23:43:48 [transform_engine] {"stage_name":"transform_engine","events_processed":675,"events_dropped":0,"avg_latency_ms":5362.048273075669,"throughput_eps":0,"last_update":"2026-03-21T23:43:43.96588119Z"} +2026/03/21 23:43:48 [detection_layer] {"stage_name":"detection_layer","events_processed":674,"events_dropped":0,"avg_latency_ms":17.75693825252186,"throughput_eps":0,"last_update":"2026-03-21T23:43:43.966014034Z"} +2026/03/21 23:43:48 [log_collector] {"stage_name":"log_collector","events_processed":32112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6422.4,"last_update":"2026-03-21T23:43:48.869407276Z"} +2026/03/21 23:43:48 ───────────────────────────────────────────────── +2026/03/21 23:43:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:43:53 [log_collector] {"stage_name":"log_collector","events_processed":32112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6422.4,"last_update":"2026-03-21T23:43:48.869407276Z"} +2026/03/21 23:43:53 [metric_collector] {"stage_name":"metric_collector","events_processed":20279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4055.8,"last_update":"2026-03-21T23:43:48.869872558Z"} +2026/03/21 23:43:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:43:48.879019832Z"} +2026/03/21 23:43:53 [transform_engine] {"stage_name":"transform_engine","events_processed":676,"events_dropped":0,"avg_latency_ms":4304.1940258605355,"throughput_eps":0,"last_update":"2026-03-21T23:43:49.037924215Z"} +2026/03/21 23:43:53 [detection_layer] {"stage_name":"detection_layer","events_processed":674,"events_dropped":0,"avg_latency_ms":17.75693825252186,"throughput_eps":0,"last_update":"2026-03-21T23:43:48.965275743Z"} +2026/03/21 23:43:53 ───────────────────────────────────────────────── +2026/03/21 23:43:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:43:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:43:53.879874508Z"} +2026/03/21 23:43:58 [transform_engine] {"stage_name":"transform_engine","events_processed":676,"events_dropped":0,"avg_latency_ms":4304.1940258605355,"throughput_eps":0,"last_update":"2026-03-21T23:43:53.966066125Z"} +2026/03/21 23:43:58 [detection_layer] {"stage_name":"detection_layer","events_processed":675,"events_dropped":0,"avg_latency_ms":18.82797840201749,"throughput_eps":0,"last_update":"2026-03-21T23:43:53.966087296Z"} +2026/03/21 23:43:58 [log_collector] {"stage_name":"log_collector","events_processed":32112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6422.4,"last_update":"2026-03-21T23:43:53.870181938Z"} +2026/03/21 23:43:58 [metric_collector] {"stage_name":"metric_collector","events_processed":20284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4056.8,"last_update":"2026-03-21T23:43:53.870620979Z"} +2026/03/21 23:43:58 ───────────────────────────────────────────────── +2026/03/21 23:44:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:44:03 [log_collector] {"stage_name":"log_collector","events_processed":32112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6422.4,"last_update":"2026-03-21T23:44:03.869566624Z"} +2026/03/21 23:44:03 [metric_collector] {"stage_name":"metric_collector","events_processed":20289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4057.8,"last_update":"2026-03-21T23:43:58.870610534Z"} +2026/03/21 23:44:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:43:58.878679983Z"} +2026/03/21 23:44:03 [transform_engine] {"stage_name":"transform_engine","events_processed":676,"events_dropped":0,"avg_latency_ms":4304.1940258605355,"throughput_eps":0,"last_update":"2026-03-21T23:43:58.966006606Z"} +2026/03/21 23:44:03 [detection_layer] {"stage_name":"detection_layer","events_processed":675,"events_dropped":0,"avg_latency_ms":18.82797840201749,"throughput_eps":0,"last_update":"2026-03-21T23:43:58.965900232Z"} +2026/03/21 23:44:03 ───────────────────────────────────────────────── +2026/03/21 23:44:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:44:08 [metric_collector] {"stage_name":"metric_collector","events_processed":20294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4058.8,"last_update":"2026-03-21T23:44:03.870376255Z"} +2026/03/21 23:44:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:44:03.878628625Z"} +2026/03/21 23:44:08 [transform_engine] {"stage_name":"transform_engine","events_processed":676,"events_dropped":0,"avg_latency_ms":4304.1940258605355,"throughput_eps":0,"last_update":"2026-03-21T23:44:03.9660667Z"} +2026/03/21 23:44:08 [detection_layer] {"stage_name":"detection_layer","events_processed":675,"events_dropped":0,"avg_latency_ms":18.82797840201749,"throughput_eps":0,"last_update":"2026-03-21T23:44:03.965951399Z"} +2026/03/21 23:44:08 [log_collector] {"stage_name":"log_collector","events_processed":32112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6422.4,"last_update":"2026-03-21T23:44:08.870059061Z"} +2026/03/21 23:44:08 ───────────────────────────────────────────────── +2026/03/21 23:44:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:44:13 [log_collector] {"stage_name":"log_collector","events_processed":32112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6422.4,"last_update":"2026-03-21T23:44:08.870059061Z"} +2026/03/21 23:44:13 [metric_collector] {"stage_name":"metric_collector","events_processed":20299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4059.8,"last_update":"2026-03-21T23:44:08.870620577Z"} +2026/03/21 23:44:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8122,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:44:08.87884847Z"} +2026/03/21 23:44:13 [transform_engine] {"stage_name":"transform_engine","events_processed":676,"events_dropped":0,"avg_latency_ms":4304.1940258605355,"throughput_eps":0,"last_update":"2026-03-21T23:44:08.966168659Z"} +2026/03/21 23:44:13 [detection_layer] {"stage_name":"detection_layer","events_processed":675,"events_dropped":0,"avg_latency_ms":18.82797840201749,"throughput_eps":0,"last_update":"2026-03-21T23:44:08.966121178Z"} +2026/03/21 23:44:13 ───────────────────────────────────────────────── +2026/03/21 23:44:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:44:18 [detection_layer] {"stage_name":"detection_layer","events_processed":675,"events_dropped":0,"avg_latency_ms":18.82797840201749,"throughput_eps":0,"last_update":"2026-03-21T23:44:13.965647692Z"} +2026/03/21 23:44:18 [log_collector] {"stage_name":"log_collector","events_processed":32112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6422.4,"last_update":"2026-03-21T23:44:13.870383654Z"} +2026/03/21 23:44:18 [metric_collector] {"stage_name":"metric_collector","events_processed":20304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4060.8,"last_update":"2026-03-21T23:44:13.87062148Z"} +2026/03/21 23:44:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:44:13.87929697Z"} +2026/03/21 23:44:18 [transform_engine] {"stage_name":"transform_engine","events_processed":676,"events_dropped":0,"avg_latency_ms":4304.1940258605355,"throughput_eps":0,"last_update":"2026-03-21T23:44:13.965699973Z"} +2026/03/21 23:44:18 ───────────────────────────────────────────────── +2026/03/21 23:44:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:44:23 [metric_collector] {"stage_name":"metric_collector","events_processed":20309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4061.8,"last_update":"2026-03-21T23:44:18.87079935Z"} +2026/03/21 23:44:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8126,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:44:18.878762575Z"} +2026/03/21 23:44:23 [transform_engine] {"stage_name":"transform_engine","events_processed":676,"events_dropped":0,"avg_latency_ms":4304.1940258605355,"throughput_eps":0,"last_update":"2026-03-21T23:44:13.965699973Z"} +2026/03/21 23:44:23 [detection_layer] {"stage_name":"detection_layer","events_processed":675,"events_dropped":0,"avg_latency_ms":18.82797840201749,"throughput_eps":0,"last_update":"2026-03-21T23:44:18.965990187Z"} +2026/03/21 23:44:23 [log_collector] {"stage_name":"log_collector","events_processed":32112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6422.4,"last_update":"2026-03-21T23:44:23.869451591Z"} +2026/03/21 23:44:23 ───────────────────────────────────────────────── +2026/03/21 23:44:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:44:28 [log_collector] {"stage_name":"log_collector","events_processed":32112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6422.4,"last_update":"2026-03-21T23:44:28.869414732Z"} +2026/03/21 23:44:28 [metric_collector] {"stage_name":"metric_collector","events_processed":20314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4062.8,"last_update":"2026-03-21T23:44:23.869839565Z"} +2026/03/21 23:44:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8128,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:44:23.878126942Z"} +2026/03/21 23:44:28 [transform_engine] {"stage_name":"transform_engine","events_processed":676,"events_dropped":0,"avg_latency_ms":4304.1940258605355,"throughput_eps":0,"last_update":"2026-03-21T23:44:13.965699973Z"} +2026/03/21 23:44:28 [detection_layer] {"stage_name":"detection_layer","events_processed":675,"events_dropped":0,"avg_latency_ms":18.82797840201749,"throughput_eps":0,"last_update":"2026-03-21T23:44:23.96533765Z"} +2026/03/21 23:44:28 ───────────────────────────────────────────────── +2026/03/21 23:44:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:44:33 [log_collector] {"stage_name":"log_collector","events_processed":32112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6422.4,"last_update":"2026-03-21T23:44:33.869401795Z"} +2026/03/21 23:44:33 [metric_collector] {"stage_name":"metric_collector","events_processed":20319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4063.8,"last_update":"2026-03-21T23:44:28.86972118Z"} +2026/03/21 23:44:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8130,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:44:28.878802397Z"} +2026/03/21 23:44:33 [transform_engine] {"stage_name":"transform_engine","events_processed":676,"events_dropped":0,"avg_latency_ms":4304.1940258605355,"throughput_eps":0,"last_update":"2026-03-21T23:44:13.965699973Z"} +2026/03/21 23:44:33 [detection_layer] {"stage_name":"detection_layer","events_processed":675,"events_dropped":0,"avg_latency_ms":18.82797840201749,"throughput_eps":0,"last_update":"2026-03-21T23:44:28.96539939Z"} +2026/03/21 23:44:33 ───────────────────────────────────────────────── +2026/03/21 23:44:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:44:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:44:33.882477806Z"} +2026/03/21 23:44:38 [transform_engine] {"stage_name":"transform_engine","events_processed":676,"events_dropped":0,"avg_latency_ms":4304.1940258605355,"throughput_eps":0,"last_update":"2026-03-21T23:44:13.965699973Z"} +2026/03/21 23:44:38 [detection_layer] {"stage_name":"detection_layer","events_processed":675,"events_dropped":0,"avg_latency_ms":18.82797840201749,"throughput_eps":0,"last_update":"2026-03-21T23:44:33.965731593Z"} +2026/03/21 23:44:38 [log_collector] {"stage_name":"log_collector","events_processed":32112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6422.4,"last_update":"2026-03-21T23:44:38.870215848Z"} +2026/03/21 23:44:38 [metric_collector] {"stage_name":"metric_collector","events_processed":20324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4064.8,"last_update":"2026-03-21T23:44:33.869693163Z"} +2026/03/21 23:44:38 ───────────────────────────────────────────────── +2026/03/21 23:44:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:44:43 [log_collector] {"stage_name":"log_collector","events_processed":32112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6422.4,"last_update":"2026-03-21T23:44:43.87016367Z"} +2026/03/21 23:44:43 [metric_collector] {"stage_name":"metric_collector","events_processed":20329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4065.8,"last_update":"2026-03-21T23:44:38.870828241Z"} +2026/03/21 23:44:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:44:38.880310788Z"} +2026/03/21 23:44:43 [transform_engine] {"stage_name":"transform_engine","events_processed":676,"events_dropped":0,"avg_latency_ms":4304.1940258605355,"throughput_eps":0,"last_update":"2026-03-21T23:44:13.965699973Z"} +2026/03/21 23:44:43 [detection_layer] {"stage_name":"detection_layer","events_processed":675,"events_dropped":0,"avg_latency_ms":18.82797840201749,"throughput_eps":0,"last_update":"2026-03-21T23:44:38.965672774Z"} +2026/03/21 23:44:43 ───────────────────────────────────────────────── +Saved state: 18 clusters, 32113 messages, reason: none +2026/03/21 23:44:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:44:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:44:43.879034665Z"} +2026/03/21 23:44:48 [transform_engine] {"stage_name":"transform_engine","events_processed":677,"events_dropped":0,"avg_latency_ms":8974.51551388843,"throughput_eps":0,"last_update":"2026-03-21T23:44:46.621820278Z"} +2026/03/21 23:44:48 [detection_layer] {"stage_name":"detection_layer","events_processed":675,"events_dropped":0,"avg_latency_ms":18.82797840201749,"throughput_eps":0,"last_update":"2026-03-21T23:44:43.966247387Z"} +2026/03/21 23:44:48 [log_collector] {"stage_name":"log_collector","events_processed":32112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6422.4,"last_update":"2026-03-21T23:44:43.87016367Z"} +2026/03/21 23:44:48 [metric_collector] {"stage_name":"metric_collector","events_processed":20334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4066.8,"last_update":"2026-03-21T23:44:43.870723081Z"} +2026/03/21 23:44:48 ───────────────────────────────────────────────── +2026/03/21 23:44:49 [ANOMALY] time=2026-03-21T23:44:49Z score=0.8728 method=SEAD details=MAD!:w=0.26,s=0.92 RRCF-fast:w=0.19,s=0.82 RRCF-mid!:w=0.16,s=0.91 RRCF-slow:w=0.14,s=0.92 COPOD!:w=0.25,s=0.82 +2026/03/21 23:44:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:44:53 [metric_collector] {"stage_name":"metric_collector","events_processed":20339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4067.8,"last_update":"2026-03-21T23:44:48.869946191Z"} +2026/03/21 23:44:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:44:48.876121371Z"} +2026/03/21 23:44:53 [transform_engine] {"stage_name":"transform_engine","events_processed":678,"events_dropped":0,"avg_latency_ms":7215.201221710744,"throughput_eps":0,"last_update":"2026-03-21T23:44:49.14328935Z"} +2026/03/21 23:44:53 [detection_layer] {"stage_name":"detection_layer","events_processed":676,"events_dropped":0,"avg_latency_ms":18.878351121613992,"throughput_eps":0,"last_update":"2026-03-21T23:44:48.965330718Z"} +2026/03/21 23:44:53 [log_collector] {"stage_name":"log_collector","events_processed":32117,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6423.4,"last_update":"2026-03-21T23:44:53.870057148Z"} +2026/03/21 23:44:53 ───────────────────────────────────────────────── +2026/03/21 23:44:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:44:58 [detection_layer] {"stage_name":"detection_layer","events_processed":677,"events_dropped":0,"avg_latency_ms":17.494745697291194,"throughput_eps":0,"last_update":"2026-03-21T23:44:53.966298767Z"} +2026/03/21 23:44:58 [log_collector] {"stage_name":"log_collector","events_processed":32117,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6423.4,"last_update":"2026-03-21T23:44:58.869728663Z"} +2026/03/21 23:44:58 [metric_collector] {"stage_name":"metric_collector","events_processed":20344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4068.8,"last_update":"2026-03-21T23:44:53.870443649Z"} +2026/03/21 23:44:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:44:53.875937384Z"} +2026/03/21 23:44:58 [transform_engine] {"stage_name":"transform_engine","events_processed":678,"events_dropped":0,"avg_latency_ms":7215.201221710744,"throughput_eps":0,"last_update":"2026-03-21T23:44:53.965095593Z"} +2026/03/21 23:44:58 ───────────────────────────────────────────────── +2026/03/21 23:45:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:45:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:44:58.876138763Z"} +2026/03/21 23:45:03 [transform_engine] {"stage_name":"transform_engine","events_processed":678,"events_dropped":0,"avg_latency_ms":7215.201221710744,"throughput_eps":0,"last_update":"2026-03-21T23:44:58.96538497Z"} +2026/03/21 23:45:03 [detection_layer] {"stage_name":"detection_layer","events_processed":677,"events_dropped":0,"avg_latency_ms":17.494745697291194,"throughput_eps":0,"last_update":"2026-03-21T23:44:58.96533835Z"} +2026/03/21 23:45:03 [log_collector] {"stage_name":"log_collector","events_processed":32117,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6423.4,"last_update":"2026-03-21T23:44:58.869728663Z"} +2026/03/21 23:45:03 [metric_collector] {"stage_name":"metric_collector","events_processed":20349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4069.8,"last_update":"2026-03-21T23:44:58.869856958Z"} +2026/03/21 23:45:03 ───────────────────────────────────────────────── +2026/03/21 23:45:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:45:08 [metric_collector] {"stage_name":"metric_collector","events_processed":20354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4070.8,"last_update":"2026-03-21T23:45:03.869796973Z"} +2026/03/21 23:45:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:45:03.877639268Z"} +2026/03/21 23:45:08 [transform_engine] {"stage_name":"transform_engine","events_processed":678,"events_dropped":0,"avg_latency_ms":7215.201221710744,"throughput_eps":0,"last_update":"2026-03-21T23:45:03.965804132Z"} +2026/03/21 23:45:08 [detection_layer] {"stage_name":"detection_layer","events_processed":677,"events_dropped":0,"avg_latency_ms":17.494745697291194,"throughput_eps":0,"last_update":"2026-03-21T23:45:03.965795145Z"} +2026/03/21 23:45:08 [log_collector] {"stage_name":"log_collector","events_processed":32117,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6423.4,"last_update":"2026-03-21T23:45:03.869518209Z"} +2026/03/21 23:45:08 ───────────────────────────────────────────────── +2026/03/21 23:45:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:45:13 [log_collector] {"stage_name":"log_collector","events_processed":32117,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6423.4,"last_update":"2026-03-21T23:45:13.87042965Z"} +2026/03/21 23:45:13 [metric_collector] {"stage_name":"metric_collector","events_processed":20359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4071.8,"last_update":"2026-03-21T23:45:08.870534826Z"} +2026/03/21 23:45:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:45:08.87661814Z"} +2026/03/21 23:45:13 [transform_engine] {"stage_name":"transform_engine","events_processed":678,"events_dropped":0,"avg_latency_ms":7215.201221710744,"throughput_eps":0,"last_update":"2026-03-21T23:45:08.965819981Z"} +2026/03/21 23:45:13 [detection_layer] {"stage_name":"detection_layer","events_processed":677,"events_dropped":0,"avg_latency_ms":17.494745697291194,"throughput_eps":0,"last_update":"2026-03-21T23:45:08.965807718Z"} +2026/03/21 23:45:13 ───────────────────────────────────────────────── +2026/03/21 23:45:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:45:18 [log_collector] {"stage_name":"log_collector","events_processed":32117,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6423.4,"last_update":"2026-03-21T23:45:13.87042965Z"} +2026/03/21 23:45:18 [metric_collector] {"stage_name":"metric_collector","events_processed":20364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4072.8,"last_update":"2026-03-21T23:45:13.87058099Z"} +2026/03/21 23:45:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:45:13.882407417Z"} +2026/03/21 23:45:18 [transform_engine] {"stage_name":"transform_engine","events_processed":678,"events_dropped":0,"avg_latency_ms":7215.201221710744,"throughput_eps":0,"last_update":"2026-03-21T23:45:13.965115698Z"} +2026/03/21 23:45:18 [detection_layer] {"stage_name":"detection_layer","events_processed":677,"events_dropped":0,"avg_latency_ms":17.494745697291194,"throughput_eps":0,"last_update":"2026-03-21T23:45:13.966195116Z"} +2026/03/21 23:45:18 ───────────────────────────────────────────────── +2026/03/21 23:45:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:45:23 [log_collector] {"stage_name":"log_collector","events_processed":32117,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6423.4,"last_update":"2026-03-21T23:45:23.86942126Z"} +2026/03/21 23:45:23 [metric_collector] {"stage_name":"metric_collector","events_processed":20369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4073.8,"last_update":"2026-03-21T23:45:18.870538771Z"} +2026/03/21 23:45:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:45:18.87658286Z"} +2026/03/21 23:45:23 [transform_engine] {"stage_name":"transform_engine","events_processed":679,"events_dropped":0,"avg_latency_ms":5791.723755168596,"throughput_eps":0,"last_update":"2026-03-21T23:45:19.063576639Z"} +2026/03/21 23:45:23 [detection_layer] {"stage_name":"detection_layer","events_processed":677,"events_dropped":0,"avg_latency_ms":17.494745697291194,"throughput_eps":0,"last_update":"2026-03-21T23:45:18.965749974Z"} +2026/03/21 23:45:23 ───────────────────────────────────────────────── +2026/03/21 23:45:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:45:28 [log_collector] {"stage_name":"log_collector","events_processed":32120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6424,"last_update":"2026-03-21T23:45:28.869640077Z"} +2026/03/21 23:45:28 [metric_collector] {"stage_name":"metric_collector","events_processed":20374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4074.8,"last_update":"2026-03-21T23:45:23.869641092Z"} +2026/03/21 23:45:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:45:23.876570747Z"} +2026/03/21 23:45:28 [transform_engine] {"stage_name":"transform_engine","events_processed":679,"events_dropped":0,"avg_latency_ms":5791.723755168596,"throughput_eps":0,"last_update":"2026-03-21T23:45:23.965775193Z"} +2026/03/21 23:45:28 [detection_layer] {"stage_name":"detection_layer","events_processed":678,"events_dropped":0,"avg_latency_ms":16.786984157832954,"throughput_eps":0,"last_update":"2026-03-21T23:45:23.965762779Z"} +2026/03/21 23:45:28 ───────────────────────────────────────────────── +2026/03/21 23:45:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:45:33 [log_collector] {"stage_name":"log_collector","events_processed":32120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6424,"last_update":"2026-03-21T23:45:28.869640077Z"} +2026/03/21 23:45:33 [metric_collector] {"stage_name":"metric_collector","events_processed":20379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4075.8,"last_update":"2026-03-21T23:45:28.869851984Z"} +2026/03/21 23:45:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:45:28.875629412Z"} +2026/03/21 23:45:33 [transform_engine] {"stage_name":"transform_engine","events_processed":679,"events_dropped":0,"avg_latency_ms":5791.723755168596,"throughput_eps":0,"last_update":"2026-03-21T23:45:28.965923945Z"} +2026/03/21 23:45:33 [detection_layer] {"stage_name":"detection_layer","events_processed":678,"events_dropped":0,"avg_latency_ms":16.786984157832954,"throughput_eps":0,"last_update":"2026-03-21T23:45:28.965902765Z"} +2026/03/21 23:45:33 ───────────────────────────────────────────────── +2026/03/21 23:45:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:45:38 [detection_layer] {"stage_name":"detection_layer","events_processed":678,"events_dropped":0,"avg_latency_ms":16.786984157832954,"throughput_eps":0,"last_update":"2026-03-21T23:45:33.965847796Z"} +2026/03/21 23:45:38 [log_collector] {"stage_name":"log_collector","events_processed":32212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6442.4,"last_update":"2026-03-21T23:45:38.86942221Z"} +2026/03/21 23:45:38 [metric_collector] {"stage_name":"metric_collector","events_processed":20384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4076.8,"last_update":"2026-03-21T23:45:33.869922735Z"} +2026/03/21 23:45:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:45:33.879645522Z"} +2026/03/21 23:45:38 [transform_engine] {"stage_name":"transform_engine","events_processed":679,"events_dropped":0,"avg_latency_ms":5791.723755168596,"throughput_eps":0,"last_update":"2026-03-21T23:45:33.966057287Z"} +2026/03/21 23:45:38 ───────────────────────────────────────────────── +2026/03/21 23:45:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:45:43 [transform_engine] {"stage_name":"transform_engine","events_processed":679,"events_dropped":0,"avg_latency_ms":5791.723755168596,"throughput_eps":0,"last_update":"2026-03-21T23:45:38.96547214Z"} +2026/03/21 23:45:43 [detection_layer] {"stage_name":"detection_layer","events_processed":678,"events_dropped":0,"avg_latency_ms":16.786984157832954,"throughput_eps":0,"last_update":"2026-03-21T23:45:38.965460688Z"} +2026/03/21 23:45:43 [log_collector] {"stage_name":"log_collector","events_processed":32212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6442.4,"last_update":"2026-03-21T23:45:38.86942221Z"} +2026/03/21 23:45:43 [metric_collector] {"stage_name":"metric_collector","events_processed":20389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4077.8,"last_update":"2026-03-21T23:45:38.869892431Z"} +2026/03/21 23:45:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:45:38.875986997Z"} +2026/03/21 23:45:43 ───────────────────────────────────────────────── +2026/03/21 23:45:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:45:48 [metric_collector] {"stage_name":"metric_collector","events_processed":20394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4078.8,"last_update":"2026-03-21T23:45:43.869793755Z"} +2026/03/21 23:45:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:45:43.876831247Z"} +2026/03/21 23:45:48 [transform_engine] {"stage_name":"transform_engine","events_processed":679,"events_dropped":0,"avg_latency_ms":5791.723755168596,"throughput_eps":0,"last_update":"2026-03-21T23:45:43.966068985Z"} +2026/03/21 23:45:48 [detection_layer] {"stage_name":"detection_layer","events_processed":678,"events_dropped":0,"avg_latency_ms":16.786984157832954,"throughput_eps":0,"last_update":"2026-03-21T23:45:43.96604535Z"} +2026/03/21 23:45:48 [log_collector] {"stage_name":"log_collector","events_processed":32293,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6458.6,"last_update":"2026-03-21T23:45:43.869707239Z"} +2026/03/21 23:45:48 ───────────────────────────────────────────────── +2026/03/21 23:45:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:45:53 [detection_layer] {"stage_name":"detection_layer","events_processed":678,"events_dropped":0,"avg_latency_ms":16.786984157832954,"throughput_eps":0,"last_update":"2026-03-21T23:45:48.965396008Z"} +2026/03/21 23:45:53 [log_collector] {"stage_name":"log_collector","events_processed":32293,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6458.6,"last_update":"2026-03-21T23:45:48.869623821Z"} +2026/03/21 23:45:53 [metric_collector] {"stage_name":"metric_collector","events_processed":20404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4080.8,"last_update":"2026-03-21T23:45:53.869762016Z"} +2026/03/21 23:45:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:45:48.878140347Z"} +2026/03/21 23:45:53 [transform_engine] {"stage_name":"transform_engine","events_processed":679,"events_dropped":0,"avg_latency_ms":5791.723755168596,"throughput_eps":0,"last_update":"2026-03-21T23:45:43.966068985Z"} +2026/03/21 23:45:53 ───────────────────────────────────────────────── +2026/03/21 23:45:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:45:58 [log_collector] {"stage_name":"log_collector","events_processed":32293,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6458.6,"last_update":"2026-03-21T23:45:53.869783918Z"} +2026/03/21 23:45:58 [metric_collector] {"stage_name":"metric_collector","events_processed":20404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4080.8,"last_update":"2026-03-21T23:45:53.869762016Z"} +2026/03/21 23:45:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:45:53.880450983Z"} +2026/03/21 23:45:58 [transform_engine] {"stage_name":"transform_engine","events_processed":679,"events_dropped":0,"avg_latency_ms":5791.723755168596,"throughput_eps":0,"last_update":"2026-03-21T23:45:43.966068985Z"} +2026/03/21 23:45:58 [detection_layer] {"stage_name":"detection_layer","events_processed":678,"events_dropped":0,"avg_latency_ms":16.786984157832954,"throughput_eps":0,"last_update":"2026-03-21T23:45:53.965685973Z"} +2026/03/21 23:45:58 ───────────────────────────────────────────────── +2026/03/21 23:46:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:46:03 [log_collector] {"stage_name":"log_collector","events_processed":32293,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6458.6,"last_update":"2026-03-21T23:45:58.869519829Z"} +2026/03/21 23:46:03 [metric_collector] {"stage_name":"metric_collector","events_processed":20409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4081.8,"last_update":"2026-03-21T23:45:58.870033073Z"} +2026/03/21 23:46:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:45:58.877037611Z"} +2026/03/21 23:46:03 [transform_engine] {"stage_name":"transform_engine","events_processed":679,"events_dropped":0,"avg_latency_ms":5791.723755168596,"throughput_eps":0,"last_update":"2026-03-21T23:45:43.966068985Z"} +2026/03/21 23:46:03 [detection_layer] {"stage_name":"detection_layer","events_processed":678,"events_dropped":0,"avg_latency_ms":16.786984157832954,"throughput_eps":0,"last_update":"2026-03-21T23:45:58.966235423Z"} +2026/03/21 23:46:03 ───────────────────────────────────────────────── +2026/03/21 23:46:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:46:08 [metric_collector] {"stage_name":"metric_collector","events_processed":20414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4082.8,"last_update":"2026-03-21T23:46:03.870081614Z"} +2026/03/21 23:46:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:46:03.87833731Z"} +2026/03/21 23:46:08 [transform_engine] {"stage_name":"transform_engine","events_processed":679,"events_dropped":0,"avg_latency_ms":5791.723755168596,"throughput_eps":0,"last_update":"2026-03-21T23:45:43.966068985Z"} +2026/03/21 23:46:08 [detection_layer] {"stage_name":"detection_layer","events_processed":678,"events_dropped":0,"avg_latency_ms":16.786984157832954,"throughput_eps":0,"last_update":"2026-03-21T23:46:03.96558203Z"} +2026/03/21 23:46:08 [log_collector] {"stage_name":"log_collector","events_processed":32293,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6458.6,"last_update":"2026-03-21T23:46:03.869552631Z"} +2026/03/21 23:46:08 ───────────────────────────────────────────────── +2026/03/21 23:46:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:46:13 [detection_layer] {"stage_name":"detection_layer","events_processed":678,"events_dropped":0,"avg_latency_ms":16.786984157832954,"throughput_eps":0,"last_update":"2026-03-21T23:46:08.965717558Z"} +2026/03/21 23:46:13 [log_collector] {"stage_name":"log_collector","events_processed":32293,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6458.6,"last_update":"2026-03-21T23:46:08.870300561Z"} +2026/03/21 23:46:13 [metric_collector] {"stage_name":"metric_collector","events_processed":20419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4083.8,"last_update":"2026-03-21T23:46:08.870643549Z"} +2026/03/21 23:46:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8170,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:46:08.878517764Z"} +2026/03/21 23:46:13 [transform_engine] {"stage_name":"transform_engine","events_processed":679,"events_dropped":0,"avg_latency_ms":5791.723755168596,"throughput_eps":0,"last_update":"2026-03-21T23:45:43.966068985Z"} +2026/03/21 23:46:13 ───────────────────────────────────────────────── +Saved state: 18 clusters, 32294 messages, reason: none +2026/03/21 23:46:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:46:18 [transform_engine] {"stage_name":"transform_engine","events_processed":680,"events_dropped":0,"avg_latency_ms":10392.587935734877,"throughput_eps":0,"last_update":"2026-03-21T23:46:17.76142663Z"} +2026/03/21 23:46:18 [detection_layer] {"stage_name":"detection_layer","events_processed":678,"events_dropped":0,"avg_latency_ms":16.786984157832954,"throughput_eps":0,"last_update":"2026-03-21T23:46:13.965993955Z"} +2026/03/21 23:46:18 [log_collector] {"stage_name":"log_collector","events_processed":32293,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6458.6,"last_update":"2026-03-21T23:46:13.870044098Z"} +2026/03/21 23:46:18 [metric_collector] {"stage_name":"metric_collector","events_processed":20424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4084.8,"last_update":"2026-03-21T23:46:13.870326539Z"} +2026/03/21 23:46:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:46:13.87865774Z"} +2026/03/21 23:46:18 ───────────────────────────────────────────────── +2026/03/21 23:46:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:46:23 [log_collector] {"stage_name":"log_collector","events_processed":32479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6495.8,"last_update":"2026-03-21T23:46:23.869521857Z"} +2026/03/21 23:46:23 [metric_collector] {"stage_name":"metric_collector","events_processed":20429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4085.8,"last_update":"2026-03-21T23:46:18.869726234Z"} +2026/03/21 23:46:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:46:18.875654521Z"} +2026/03/21 23:46:23 [transform_engine] {"stage_name":"transform_engine","events_processed":681,"events_dropped":0,"avg_latency_ms":8360.013582387903,"throughput_eps":0,"last_update":"2026-03-21T23:46:19.195629303Z"} +2026/03/21 23:46:23 [detection_layer] {"stage_name":"detection_layer","events_processed":679,"events_dropped":0,"avg_latency_ms":17.977243526266363,"throughput_eps":0,"last_update":"2026-03-21T23:46:18.965873659Z"} +2026/03/21 23:46:23 ───────────────────────────────────────────────── +2026/03/21 23:46:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:46:28 [metric_collector] {"stage_name":"metric_collector","events_processed":20434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4086.8,"last_update":"2026-03-21T23:46:23.86986317Z"} +2026/03/21 23:46:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:46:23.878254476Z"} +2026/03/21 23:46:28 [transform_engine] {"stage_name":"transform_engine","events_processed":681,"events_dropped":0,"avg_latency_ms":8360.013582387903,"throughput_eps":0,"last_update":"2026-03-21T23:46:23.965622171Z"} +2026/03/21 23:46:28 [detection_layer] {"stage_name":"detection_layer","events_processed":680,"events_dropped":0,"avg_latency_ms":17.301900821013092,"throughput_eps":0,"last_update":"2026-03-21T23:46:23.965517039Z"} +2026/03/21 23:46:28 [log_collector] {"stage_name":"log_collector","events_processed":32479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6495.8,"last_update":"2026-03-21T23:46:28.869485413Z"} +2026/03/21 23:46:28 ───────────────────────────────────────────────── +2026/03/21 23:46:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:46:33 [log_collector] {"stage_name":"log_collector","events_processed":32479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6495.8,"last_update":"2026-03-21T23:46:28.869485413Z"} +2026/03/21 23:46:33 [metric_collector] {"stage_name":"metric_collector","events_processed":20439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4087.8,"last_update":"2026-03-21T23:46:28.870073048Z"} +2026/03/21 23:46:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:46:28.879062821Z"} +2026/03/21 23:46:33 [transform_engine] {"stage_name":"transform_engine","events_processed":681,"events_dropped":0,"avg_latency_ms":8360.013582387903,"throughput_eps":0,"last_update":"2026-03-21T23:46:28.965131426Z"} +2026/03/21 23:46:33 [detection_layer] {"stage_name":"detection_layer","events_processed":680,"events_dropped":0,"avg_latency_ms":17.301900821013092,"throughput_eps":0,"last_update":"2026-03-21T23:46:28.966322468Z"} +2026/03/21 23:46:33 ───────────────────────────────────────────────── +2026/03/21 23:46:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:46:38 [log_collector] {"stage_name":"log_collector","events_processed":32482,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6496.4,"last_update":"2026-03-21T23:46:33.869436242Z"} +2026/03/21 23:46:38 [metric_collector] {"stage_name":"metric_collector","events_processed":20444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4088.8,"last_update":"2026-03-21T23:46:33.870068834Z"} +2026/03/21 23:46:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:46:33.878937645Z"} +2026/03/21 23:46:38 [transform_engine] {"stage_name":"transform_engine","events_processed":681,"events_dropped":0,"avg_latency_ms":8360.013582387903,"throughput_eps":0,"last_update":"2026-03-21T23:46:33.965052178Z"} +2026/03/21 23:46:38 [detection_layer] {"stage_name":"detection_layer","events_processed":680,"events_dropped":0,"avg_latency_ms":17.301900821013092,"throughput_eps":0,"last_update":"2026-03-21T23:46:33.966157555Z"} +2026/03/21 23:46:38 ───────────────────────────────────────────────── +2026/03/21 23:46:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:46:43 [log_collector] {"stage_name":"log_collector","events_processed":32482,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6496.4,"last_update":"2026-03-21T23:46:38.869917617Z"} +2026/03/21 23:46:43 [metric_collector] {"stage_name":"metric_collector","events_processed":20449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4089.8,"last_update":"2026-03-21T23:46:38.870136426Z"} +2026/03/21 23:46:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:46:38.876789381Z"} +2026/03/21 23:46:43 [transform_engine] {"stage_name":"transform_engine","events_processed":681,"events_dropped":0,"avg_latency_ms":8360.013582387903,"throughput_eps":0,"last_update":"2026-03-21T23:46:38.966005516Z"} +2026/03/21 23:46:43 [detection_layer] {"stage_name":"detection_layer","events_processed":680,"events_dropped":0,"avg_latency_ms":17.301900821013092,"throughput_eps":0,"last_update":"2026-03-21T23:46:38.965985718Z"} +2026/03/21 23:46:43 ───────────────────────────────────────────────── +2026/03/21 23:46:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:46:48 [log_collector] {"stage_name":"log_collector","events_processed":32493,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6498.6,"last_update":"2026-03-21T23:46:43.870202344Z"} +2026/03/21 23:46:48 [metric_collector] {"stage_name":"metric_collector","events_processed":20454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4090.8,"last_update":"2026-03-21T23:46:43.870555812Z"} +2026/03/21 23:46:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:46:43.879122233Z"} +2026/03/21 23:46:48 [transform_engine] {"stage_name":"transform_engine","events_processed":681,"events_dropped":0,"avg_latency_ms":8360.013582387903,"throughput_eps":0,"last_update":"2026-03-21T23:46:43.965580234Z"} +2026/03/21 23:46:48 [detection_layer] {"stage_name":"detection_layer","events_processed":680,"events_dropped":0,"avg_latency_ms":17.301900821013092,"throughput_eps":0,"last_update":"2026-03-21T23:46:43.965458962Z"} +2026/03/21 23:46:48 ───────────────────────────────────────────────── +2026/03/21 23:46:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:46:53 [transform_engine] {"stage_name":"transform_engine","events_processed":682,"events_dropped":0,"avg_latency_ms":6784.162799910323,"throughput_eps":0,"last_update":"2026-03-21T23:46:49.44588871Z"} +2026/03/21 23:46:53 [detection_layer] {"stage_name":"detection_layer","events_processed":680,"events_dropped":0,"avg_latency_ms":17.301900821013092,"throughput_eps":0,"last_update":"2026-03-21T23:46:48.966253095Z"} +2026/03/21 23:46:53 [log_collector] {"stage_name":"log_collector","events_processed":32507,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6501.4,"last_update":"2026-03-21T23:46:48.870443829Z"} +2026/03/21 23:46:53 [metric_collector] {"stage_name":"metric_collector","events_processed":20459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4091.8,"last_update":"2026-03-21T23:46:48.870615528Z"} +2026/03/21 23:46:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:46:48.877150207Z"} +2026/03/21 23:46:53 ───────────────────────────────────────────────── +2026/03/21 23:46:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:46:58 [log_collector] {"stage_name":"log_collector","events_processed":32509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6501.8,"last_update":"2026-03-21T23:46:53.870070916Z"} +2026/03/21 23:46:58 [metric_collector] {"stage_name":"metric_collector","events_processed":20463,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4092.6,"last_update":"2026-03-21T23:46:53.869913044Z"} +2026/03/21 23:46:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:46:53.879767823Z"} +2026/03/21 23:46:58 [transform_engine] {"stage_name":"transform_engine","events_processed":682,"events_dropped":0,"avg_latency_ms":6784.162799910323,"throughput_eps":0,"last_update":"2026-03-21T23:46:53.965975073Z"} +2026/03/21 23:46:58 [detection_layer] {"stage_name":"detection_layer","events_processed":681,"events_dropped":0,"avg_latency_ms":16.574386056810475,"throughput_eps":0,"last_update":"2026-03-21T23:46:53.965966136Z"} +2026/03/21 23:46:58 ───────────────────────────────────────────────── +2026/03/21 23:47:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:47:03 [log_collector] {"stage_name":"log_collector","events_processed":32509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6501.8,"last_update":"2026-03-21T23:46:58.869408618Z"} +2026/03/21 23:47:03 [metric_collector] {"stage_name":"metric_collector","events_processed":20468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4093.6,"last_update":"2026-03-21T23:46:58.869432063Z"} +2026/03/21 23:47:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:46:58.87837725Z"} +2026/03/21 23:47:03 [transform_engine] {"stage_name":"transform_engine","events_processed":682,"events_dropped":0,"avg_latency_ms":6784.162799910323,"throughput_eps":0,"last_update":"2026-03-21T23:46:58.965724163Z"} +2026/03/21 23:47:03 [detection_layer] {"stage_name":"detection_layer","events_processed":681,"events_dropped":0,"avg_latency_ms":16.574386056810475,"throughput_eps":0,"last_update":"2026-03-21T23:46:58.965709725Z"} +2026/03/21 23:47:03 ───────────────────────────────────────────────── +2026/03/21 23:47:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:47:08 [log_collector] {"stage_name":"log_collector","events_processed":32509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6501.8,"last_update":"2026-03-21T23:47:08.869572966Z"} +2026/03/21 23:47:08 [metric_collector] {"stage_name":"metric_collector","events_processed":20474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4094.8,"last_update":"2026-03-21T23:47:03.87079217Z"} +2026/03/21 23:47:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:47:03.878889042Z"} +2026/03/21 23:47:08 [transform_engine] {"stage_name":"transform_engine","events_processed":682,"events_dropped":0,"avg_latency_ms":6784.162799910323,"throughput_eps":0,"last_update":"2026-03-21T23:47:03.965065793Z"} +2026/03/21 23:47:08 [detection_layer] {"stage_name":"detection_layer","events_processed":681,"events_dropped":0,"avg_latency_ms":16.574386056810475,"throughput_eps":0,"last_update":"2026-03-21T23:47:03.965329098Z"} +2026/03/21 23:47:08 ───────────────────────────────────────────────── +2026/03/21 23:47:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:47:13 [transform_engine] {"stage_name":"transform_engine","events_processed":682,"events_dropped":0,"avg_latency_ms":6784.162799910323,"throughput_eps":0,"last_update":"2026-03-21T23:47:08.965993151Z"} +2026/03/21 23:47:13 [detection_layer] {"stage_name":"detection_layer","events_processed":681,"events_dropped":0,"avg_latency_ms":16.574386056810475,"throughput_eps":0,"last_update":"2026-03-21T23:47:08.965977832Z"} +2026/03/21 23:47:13 [log_collector] {"stage_name":"log_collector","events_processed":32509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6501.8,"last_update":"2026-03-21T23:47:13.869926878Z"} +2026/03/21 23:47:13 [metric_collector] {"stage_name":"metric_collector","events_processed":20479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4095.8,"last_update":"2026-03-21T23:47:08.870012608Z"} +2026/03/21 23:47:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:47:08.878656287Z"} +2026/03/21 23:47:13 ───────────────────────────────────────────────── +2026/03/21 23:47:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:47:18 [metric_collector] {"stage_name":"metric_collector","events_processed":20484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4096.8,"last_update":"2026-03-21T23:47:13.870458867Z"} +2026/03/21 23:47:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:47:13.879166428Z"} +2026/03/21 23:47:18 [transform_engine] {"stage_name":"transform_engine","events_processed":682,"events_dropped":0,"avg_latency_ms":6784.162799910323,"throughput_eps":0,"last_update":"2026-03-21T23:47:13.965371293Z"} +2026/03/21 23:47:18 [detection_layer] {"stage_name":"detection_layer","events_processed":681,"events_dropped":0,"avg_latency_ms":16.574386056810475,"throughput_eps":0,"last_update":"2026-03-21T23:47:13.965461455Z"} +2026/03/21 23:47:18 [log_collector] {"stage_name":"log_collector","events_processed":32509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6501.8,"last_update":"2026-03-21T23:47:13.869926878Z"} +2026/03/21 23:47:18 ───────────────────────────────────────────────── +2026/03/21 23:47:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:47:23 [transform_engine] {"stage_name":"transform_engine","events_processed":682,"events_dropped":0,"avg_latency_ms":6784.162799910323,"throughput_eps":0,"last_update":"2026-03-21T23:47:13.965371293Z"} +2026/03/21 23:47:23 [detection_layer] {"stage_name":"detection_layer","events_processed":681,"events_dropped":0,"avg_latency_ms":16.574386056810475,"throughput_eps":0,"last_update":"2026-03-21T23:47:18.966104871Z"} +2026/03/21 23:47:23 [log_collector] {"stage_name":"log_collector","events_processed":32509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6501.8,"last_update":"2026-03-21T23:47:23.869456562Z"} +2026/03/21 23:47:23 [metric_collector] {"stage_name":"metric_collector","events_processed":20489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4097.8,"last_update":"2026-03-21T23:47:18.870295006Z"} +2026/03/21 23:47:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:47:18.878858001Z"} +2026/03/21 23:47:23 ───────────────────────────────────────────────── +2026/03/21 23:47:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:47:28 [log_collector] {"stage_name":"log_collector","events_processed":32509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6501.8,"last_update":"2026-03-21T23:47:28.869853484Z"} +2026/03/21 23:47:28 [metric_collector] {"stage_name":"metric_collector","events_processed":20494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4098.8,"last_update":"2026-03-21T23:47:23.870002818Z"} +2026/03/21 23:47:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:47:23.878832093Z"} +2026/03/21 23:47:28 [transform_engine] {"stage_name":"transform_engine","events_processed":682,"events_dropped":0,"avg_latency_ms":6784.162799910323,"throughput_eps":0,"last_update":"2026-03-21T23:47:13.965371293Z"} +2026/03/21 23:47:28 [detection_layer] {"stage_name":"detection_layer","events_processed":681,"events_dropped":0,"avg_latency_ms":16.574386056810475,"throughput_eps":0,"last_update":"2026-03-21T23:47:23.965998208Z"} +2026/03/21 23:47:28 ───────────────────────────────────────────────── +2026/03/21 23:47:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:47:33 [metric_collector] {"stage_name":"metric_collector","events_processed":20499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4099.8,"last_update":"2026-03-21T23:47:28.870445428Z"} +2026/03/21 23:47:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:47:28.879414Z"} +2026/03/21 23:47:33 [transform_engine] {"stage_name":"transform_engine","events_processed":682,"events_dropped":0,"avg_latency_ms":6784.162799910323,"throughput_eps":0,"last_update":"2026-03-21T23:47:13.965371293Z"} +2026/03/21 23:47:33 [detection_layer] {"stage_name":"detection_layer","events_processed":681,"events_dropped":0,"avg_latency_ms":16.574386056810475,"throughput_eps":0,"last_update":"2026-03-21T23:47:28.965608624Z"} +2026/03/21 23:47:33 [log_collector] {"stage_name":"log_collector","events_processed":32509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6501.8,"last_update":"2026-03-21T23:47:28.869853484Z"} +2026/03/21 23:47:33 ───────────────────────────────────────────────── +2026/03/21 23:47:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:47:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:47:33.881519277Z"} +2026/03/21 23:47:38 [transform_engine] {"stage_name":"transform_engine","events_processed":682,"events_dropped":0,"avg_latency_ms":6784.162799910323,"throughput_eps":0,"last_update":"2026-03-21T23:47:13.965371293Z"} +2026/03/21 23:47:38 [detection_layer] {"stage_name":"detection_layer","events_processed":681,"events_dropped":0,"avg_latency_ms":16.574386056810475,"throughput_eps":0,"last_update":"2026-03-21T23:47:33.965665016Z"} +2026/03/21 23:47:38 [log_collector] {"stage_name":"log_collector","events_processed":32509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6501.8,"last_update":"2026-03-21T23:47:33.871556441Z"} +2026/03/21 23:47:38 [metric_collector] {"stage_name":"metric_collector","events_processed":20504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4100.8,"last_update":"2026-03-21T23:47:33.871897394Z"} +2026/03/21 23:47:38 ───────────────────────────────────────────────── +2026/03/21 23:47:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:47:43 [log_collector] {"stage_name":"log_collector","events_processed":32509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6501.8,"last_update":"2026-03-21T23:47:38.86989342Z"} +2026/03/21 23:47:43 [metric_collector] {"stage_name":"metric_collector","events_processed":20509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4101.8,"last_update":"2026-03-21T23:47:38.870436158Z"} +2026/03/21 23:47:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8206,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:47:38.876016399Z"} +2026/03/21 23:47:43 [transform_engine] {"stage_name":"transform_engine","events_processed":682,"events_dropped":0,"avg_latency_ms":6784.162799910323,"throughput_eps":0,"last_update":"2026-03-21T23:47:13.965371293Z"} +2026/03/21 23:47:43 [detection_layer] {"stage_name":"detection_layer","events_processed":681,"events_dropped":0,"avg_latency_ms":16.574386056810475,"throughput_eps":0,"last_update":"2026-03-21T23:47:38.966282573Z"} +2026/03/21 23:47:43 ───────────────────────────────────────────────── +2026/03/21 23:47:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:47:48 [detection_layer] {"stage_name":"detection_layer","events_processed":681,"events_dropped":0,"avg_latency_ms":16.574386056810475,"throughput_eps":0,"last_update":"2026-03-21T23:47:43.965926115Z"} +2026/03/21 23:47:48 [log_collector] {"stage_name":"log_collector","events_processed":32509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6501.8,"last_update":"2026-03-21T23:47:43.869426249Z"} +2026/03/21 23:47:48 [metric_collector] {"stage_name":"metric_collector","events_processed":20514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102.8,"last_update":"2026-03-21T23:47:43.869931276Z"} +2026/03/21 23:47:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:47:43.878734131Z"} +2026/03/21 23:47:48 [transform_engine] {"stage_name":"transform_engine","events_processed":683,"events_dropped":0,"avg_latency_ms":11169.03597232826,"throughput_eps":0,"last_update":"2026-03-21T23:47:47.674748544Z"} +2026/03/21 23:47:48 ───────────────────────────────────────────────── +2026/03/21 23:47:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:47:53 [log_collector] {"stage_name":"log_collector","events_processed":32509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6501.8,"last_update":"2026-03-21T23:47:48.869424402Z"} +2026/03/21 23:47:53 [metric_collector] {"stage_name":"metric_collector","events_processed":20519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4103.8,"last_update":"2026-03-21T23:47:48.869697625Z"} +2026/03/21 23:47:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8210,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:47:48.875081078Z"} +2026/03/21 23:47:53 [transform_engine] {"stage_name":"transform_engine","events_processed":683,"events_dropped":0,"avg_latency_ms":11169.03597232826,"throughput_eps":0,"last_update":"2026-03-21T23:47:47.674748544Z"} +2026/03/21 23:47:53 [detection_layer] {"stage_name":"detection_layer","events_processed":682,"events_dropped":0,"avg_latency_ms":18.31672484544838,"throughput_eps":0,"last_update":"2026-03-21T23:47:48.965311604Z"} +2026/03/21 23:47:53 ───────────────────────────────────────────────── +2026/03/21 23:47:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:47:58 [metric_collector] {"stage_name":"metric_collector","events_processed":20524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4104.8,"last_update":"2026-03-21T23:47:53.870457358Z"} +2026/03/21 23:47:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:47:53.879483029Z"} +2026/03/21 23:47:58 [transform_engine] {"stage_name":"transform_engine","events_processed":684,"events_dropped":0,"avg_latency_ms":10469.168307662609,"throughput_eps":0,"last_update":"2026-03-21T23:47:56.635093294Z"} +2026/03/21 23:47:58 [detection_layer] {"stage_name":"detection_layer","events_processed":682,"events_dropped":0,"avg_latency_ms":18.31672484544838,"throughput_eps":0,"last_update":"2026-03-21T23:47:53.965828512Z"} +2026/03/21 23:47:58 [log_collector] {"stage_name":"log_collector","events_processed":32509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6501.8,"last_update":"2026-03-21T23:47:58.869666961Z"} +2026/03/21 23:47:58 ───────────────────────────────────────────────── +2026/03/21 23:48:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:48:03 [log_collector] {"stage_name":"log_collector","events_processed":32509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6501.8,"last_update":"2026-03-21T23:47:58.869666961Z"} +2026/03/21 23:48:03 [metric_collector] {"stage_name":"metric_collector","events_processed":20529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4105.8,"last_update":"2026-03-21T23:47:58.870106394Z"} +2026/03/21 23:48:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:47:58.878480876Z"} +2026/03/21 23:48:03 [transform_engine] {"stage_name":"transform_engine","events_processed":684,"events_dropped":0,"avg_latency_ms":10469.168307662609,"throughput_eps":0,"last_update":"2026-03-21T23:47:58.965787371Z"} +2026/03/21 23:48:03 [detection_layer] {"stage_name":"detection_layer","events_processed":683,"events_dropped":0,"avg_latency_ms":17.674996676358706,"throughput_eps":0,"last_update":"2026-03-21T23:47:58.965677139Z"} +2026/03/21 23:48:03 ───────────────────────────────────────────────── +2026/03/21 23:48:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:48:08 [log_collector] {"stage_name":"log_collector","events_processed":32509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6501.8,"last_update":"2026-03-21T23:48:03.870198539Z"} +2026/03/21 23:48:08 [metric_collector] {"stage_name":"metric_collector","events_processed":20534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4106.8,"last_update":"2026-03-21T23:48:03.870830169Z"} +2026/03/21 23:48:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:48:03.878974571Z"} +2026/03/21 23:48:08 [transform_engine] {"stage_name":"transform_engine","events_processed":684,"events_dropped":0,"avg_latency_ms":10469.168307662609,"throughput_eps":0,"last_update":"2026-03-21T23:48:03.965099191Z"} +2026/03/21 23:48:08 [detection_layer] {"stage_name":"detection_layer","events_processed":683,"events_dropped":0,"avg_latency_ms":17.674996676358706,"throughput_eps":0,"last_update":"2026-03-21T23:48:03.966183709Z"} +2026/03/21 23:48:08 ───────────────────────────────────────────────── +2026/03/21 23:48:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:48:13 [log_collector] {"stage_name":"log_collector","events_processed":32509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6501.8,"last_update":"2026-03-21T23:48:13.870106114Z"} +2026/03/21 23:48:13 [metric_collector] {"stage_name":"metric_collector","events_processed":20539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4107.8,"last_update":"2026-03-21T23:48:08.870631761Z"} +2026/03/21 23:48:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:48:08.879692288Z"} +2026/03/21 23:48:13 [transform_engine] {"stage_name":"transform_engine","events_processed":684,"events_dropped":0,"avg_latency_ms":10469.168307662609,"throughput_eps":0,"last_update":"2026-03-21T23:48:08.966108236Z"} +2026/03/21 23:48:13 [detection_layer] {"stage_name":"detection_layer","events_processed":683,"events_dropped":0,"avg_latency_ms":17.674996676358706,"throughput_eps":0,"last_update":"2026-03-21T23:48:08.966001771Z"} +2026/03/21 23:48:13 ───────────────────────────────────────────────── +Saved state: 18 clusters, 32510 messages, reason: none +2026/03/21 23:48:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:48:18 [log_collector] {"stage_name":"log_collector","events_processed":32512,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6502.4,"last_update":"2026-03-21T23:48:18.869408001Z"} +2026/03/21 23:48:18 [metric_collector] {"stage_name":"metric_collector","events_processed":20544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4108.8,"last_update":"2026-03-21T23:48:13.870573339Z"} +2026/03/21 23:48:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:48:13.879178313Z"} +2026/03/21 23:48:18 [transform_engine] {"stage_name":"transform_engine","events_processed":684,"events_dropped":0,"avg_latency_ms":10469.168307662609,"throughput_eps":0,"last_update":"2026-03-21T23:48:13.965588029Z"} +2026/03/21 23:48:18 [detection_layer] {"stage_name":"detection_layer","events_processed":683,"events_dropped":0,"avg_latency_ms":17.674996676358706,"throughput_eps":0,"last_update":"2026-03-21T23:48:13.965559144Z"} +2026/03/21 23:48:18 ───────────────────────────────────────────────── +2026/03/21 23:48:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:48:23 [detection_layer] {"stage_name":"detection_layer","events_processed":683,"events_dropped":0,"avg_latency_ms":17.674996676358706,"throughput_eps":0,"last_update":"2026-03-21T23:48:18.966720823Z"} +2026/03/21 23:48:23 [log_collector] {"stage_name":"log_collector","events_processed":32523,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6504.6,"last_update":"2026-03-21T23:48:23.869566578Z"} +2026/03/21 23:48:23 [metric_collector] {"stage_name":"metric_collector","events_processed":20549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.8,"last_update":"2026-03-21T23:48:18.869613013Z"} +2026/03/21 23:48:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8222,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:48:18.8765643Z"} +2026/03/21 23:48:23 [transform_engine] {"stage_name":"transform_engine","events_processed":685,"events_dropped":0,"avg_latency_ms":8398.646945530088,"throughput_eps":0,"last_update":"2026-03-21T23:48:19.08232706Z"} +2026/03/21 23:48:23 ───────────────────────────────────────────────── +2026/03/21 23:48:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:48:28 [detection_layer] {"stage_name":"detection_layer","events_processed":684,"events_dropped":0,"avg_latency_ms":17.839791141086966,"throughput_eps":0,"last_update":"2026-03-21T23:48:23.965406128Z"} +2026/03/21 23:48:28 [log_collector] {"stage_name":"log_collector","events_processed":32523,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6504.6,"last_update":"2026-03-21T23:48:23.869566578Z"} +2026/03/21 23:48:28 [metric_collector] {"stage_name":"metric_collector","events_processed":20554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4110.8,"last_update":"2026-03-21T23:48:23.869942198Z"} +2026/03/21 23:48:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:48:23.878097431Z"} +2026/03/21 23:48:28 [transform_engine] {"stage_name":"transform_engine","events_processed":685,"events_dropped":0,"avg_latency_ms":8398.646945530088,"throughput_eps":0,"last_update":"2026-03-21T23:48:23.965443048Z"} +2026/03/21 23:48:28 ───────────────────────────────────────────────── +2026/03/21 23:48:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:48:33 [metric_collector] {"stage_name":"metric_collector","events_processed":20559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.8,"last_update":"2026-03-21T23:48:28.869984244Z"} +2026/03/21 23:48:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:48:28.878554743Z"} +2026/03/21 23:48:33 [transform_engine] {"stage_name":"transform_engine","events_processed":685,"events_dropped":0,"avg_latency_ms":8398.646945530088,"throughput_eps":0,"last_update":"2026-03-21T23:48:28.965919608Z"} +2026/03/21 23:48:33 [detection_layer] {"stage_name":"detection_layer","events_processed":684,"events_dropped":0,"avg_latency_ms":17.839791141086966,"throughput_eps":0,"last_update":"2026-03-21T23:48:28.965955718Z"} +2026/03/21 23:48:33 [log_collector] {"stage_name":"log_collector","events_processed":32523,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6504.6,"last_update":"2026-03-21T23:48:33.870272285Z"} +2026/03/21 23:48:33 ───────────────────────────────────────────────── +2026/03/21 23:48:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:48:38 [transform_engine] {"stage_name":"transform_engine","events_processed":685,"events_dropped":0,"avg_latency_ms":8398.646945530088,"throughput_eps":0,"last_update":"2026-03-21T23:48:33.965495043Z"} +2026/03/21 23:48:38 [detection_layer] {"stage_name":"detection_layer","events_processed":684,"events_dropped":0,"avg_latency_ms":17.839791141086966,"throughput_eps":0,"last_update":"2026-03-21T23:48:33.965523547Z"} +2026/03/21 23:48:38 [log_collector] {"stage_name":"log_collector","events_processed":32523,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6504.6,"last_update":"2026-03-21T23:48:38.870015763Z"} +2026/03/21 23:48:38 [metric_collector] {"stage_name":"metric_collector","events_processed":20564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4112.8,"last_update":"2026-03-21T23:48:33.870815876Z"} +2026/03/21 23:48:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:48:33.880140629Z"} +2026/03/21 23:48:38 ───────────────────────────────────────────────── +2026/03/21 23:48:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:48:43 [log_collector] {"stage_name":"log_collector","events_processed":32523,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6504.6,"last_update":"2026-03-21T23:48:43.86968546Z"} +2026/03/21 23:48:43 [metric_collector] {"stage_name":"metric_collector","events_processed":20569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.8,"last_update":"2026-03-21T23:48:38.870501493Z"} +2026/03/21 23:48:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:48:38.878778259Z"} +2026/03/21 23:48:43 [transform_engine] {"stage_name":"transform_engine","events_processed":685,"events_dropped":0,"avg_latency_ms":8398.646945530088,"throughput_eps":0,"last_update":"2026-03-21T23:48:38.966203358Z"} +2026/03/21 23:48:43 [detection_layer] {"stage_name":"detection_layer","events_processed":684,"events_dropped":0,"avg_latency_ms":17.839791141086966,"throughput_eps":0,"last_update":"2026-03-21T23:48:38.966083849Z"} +2026/03/21 23:48:43 ───────────────────────────────────────────────── +2026/03/21 23:48:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:48:48 [log_collector] {"stage_name":"log_collector","events_processed":32523,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6504.6,"last_update":"2026-03-21T23:48:43.86968546Z"} +2026/03/21 23:48:48 [metric_collector] {"stage_name":"metric_collector","events_processed":20574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4114.8,"last_update":"2026-03-21T23:48:43.870234171Z"} +2026/03/21 23:48:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:48:43.878246902Z"} +2026/03/21 23:48:48 [transform_engine] {"stage_name":"transform_engine","events_processed":685,"events_dropped":0,"avg_latency_ms":8398.646945530088,"throughput_eps":0,"last_update":"2026-03-21T23:48:43.965472198Z"} +2026/03/21 23:48:48 [detection_layer] {"stage_name":"detection_layer","events_processed":684,"events_dropped":0,"avg_latency_ms":17.839791141086966,"throughput_eps":0,"last_update":"2026-03-21T23:48:43.965456318Z"} +2026/03/21 23:48:48 ───────────────────────────────────────────────── +2026/03/21 23:48:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:48:53 [log_collector] {"stage_name":"log_collector","events_processed":32523,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6504.6,"last_update":"2026-03-21T23:48:48.869513824Z"} +2026/03/21 23:48:53 [metric_collector] {"stage_name":"metric_collector","events_processed":20579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4115.8,"last_update":"2026-03-21T23:48:48.869819079Z"} +2026/03/21 23:48:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:48:48.878685114Z"} +2026/03/21 23:48:53 [transform_engine] {"stage_name":"transform_engine","events_processed":686,"events_dropped":0,"avg_latency_ms":6741.891207024071,"throughput_eps":0,"last_update":"2026-03-21T23:48:49.080727606Z"} +2026/03/21 23:48:53 [detection_layer] {"stage_name":"detection_layer","events_processed":684,"events_dropped":0,"avg_latency_ms":17.839791141086966,"throughput_eps":0,"last_update":"2026-03-21T23:48:48.965961689Z"} +2026/03/21 23:48:53 ───────────────────────────────────────────────── +2026/03/21 23:48:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:48:58 [log_collector] {"stage_name":"log_collector","events_processed":32523,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6504.6,"last_update":"2026-03-21T23:48:53.869924478Z"} +2026/03/21 23:48:58 [metric_collector] {"stage_name":"metric_collector","events_processed":20584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4116.8,"last_update":"2026-03-21T23:48:53.870503346Z"} +2026/03/21 23:48:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:48:53.879591727Z"} +2026/03/21 23:48:58 [transform_engine] {"stage_name":"transform_engine","events_processed":686,"events_dropped":0,"avg_latency_ms":6741.891207024071,"throughput_eps":0,"last_update":"2026-03-21T23:48:53.96581788Z"} +2026/03/21 23:48:58 [detection_layer] {"stage_name":"detection_layer","events_processed":685,"events_dropped":0,"avg_latency_ms":19.012562712869574,"throughput_eps":0,"last_update":"2026-03-21T23:48:53.965773124Z"} +2026/03/21 23:48:58 ───────────────────────────────────────────────── +2026/03/21 23:49:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:49:03 [log_collector] {"stage_name":"log_collector","events_processed":32523,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6504.6,"last_update":"2026-03-21T23:48:58.869432083Z"} +2026/03/21 23:49:03 [metric_collector] {"stage_name":"metric_collector","events_processed":20589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4117.8,"last_update":"2026-03-21T23:48:58.869694616Z"} +2026/03/21 23:49:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:48:58.878129986Z"} +2026/03/21 23:49:03 [transform_engine] {"stage_name":"transform_engine","events_processed":686,"events_dropped":0,"avg_latency_ms":6741.891207024071,"throughput_eps":0,"last_update":"2026-03-21T23:48:58.965454592Z"} +2026/03/21 23:49:03 [detection_layer] {"stage_name":"detection_layer","events_processed":685,"events_dropped":0,"avg_latency_ms":19.012562712869574,"throughput_eps":0,"last_update":"2026-03-21T23:48:58.965338621Z"} +2026/03/21 23:49:03 ───────────────────────────────────────────────── +2026/03/21 23:49:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:49:08 [log_collector] {"stage_name":"log_collector","events_processed":32523,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6504.6,"last_update":"2026-03-21T23:49:03.870372182Z"} +2026/03/21 23:49:08 [metric_collector] {"stage_name":"metric_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-21T23:49:03.870793679Z"} +2026/03/21 23:49:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:49:03.87902053Z"} +2026/03/21 23:49:08 [transform_engine] {"stage_name":"transform_engine","events_processed":686,"events_dropped":0,"avg_latency_ms":6741.891207024071,"throughput_eps":0,"last_update":"2026-03-21T23:49:03.965168442Z"} +2026/03/21 23:49:08 [detection_layer] {"stage_name":"detection_layer","events_processed":685,"events_dropped":0,"avg_latency_ms":19.012562712869574,"throughput_eps":0,"last_update":"2026-03-21T23:49:03.966325809Z"} +2026/03/21 23:49:08 ───────────────────────────────────────────────── +2026/03/21 23:49:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:49:13 [log_collector] {"stage_name":"log_collector","events_processed":32523,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6504.6,"last_update":"2026-03-21T23:49:08.869932751Z"} +2026/03/21 23:49:13 [metric_collector] {"stage_name":"metric_collector","events_processed":20599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4119.8,"last_update":"2026-03-21T23:49:08.870607964Z"} +2026/03/21 23:49:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:49:08.881534967Z"} +2026/03/21 23:49:13 [transform_engine] {"stage_name":"transform_engine","events_processed":686,"events_dropped":0,"avg_latency_ms":6741.891207024071,"throughput_eps":0,"last_update":"2026-03-21T23:49:08.965727053Z"} +2026/03/21 23:49:13 [detection_layer] {"stage_name":"detection_layer","events_processed":685,"events_dropped":0,"avg_latency_ms":19.012562712869574,"throughput_eps":0,"last_update":"2026-03-21T23:49:08.965788169Z"} +2026/03/21 23:49:13 ───────────────────────────────────────────────── +2026/03/21 23:49:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:49:18 [log_collector] {"stage_name":"log_collector","events_processed":32523,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6504.6,"last_update":"2026-03-21T23:49:13.869427055Z"} +2026/03/21 23:49:18 [metric_collector] {"stage_name":"metric_collector","events_processed":20604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4120.8,"last_update":"2026-03-21T23:49:13.869939407Z"} +2026/03/21 23:49:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:49:13.878712053Z"} +2026/03/21 23:49:18 [transform_engine] {"stage_name":"transform_engine","events_processed":686,"events_dropped":0,"avg_latency_ms":6741.891207024071,"throughput_eps":0,"last_update":"2026-03-21T23:49:13.965946506Z"} +2026/03/21 23:49:18 [detection_layer] {"stage_name":"detection_layer","events_processed":685,"events_dropped":0,"avg_latency_ms":19.012562712869574,"throughput_eps":0,"last_update":"2026-03-21T23:49:13.965934793Z"} +2026/03/21 23:49:18 ───────────────────────────────────────────────── +2026/03/21 23:49:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:49:23 [transform_engine] {"stage_name":"transform_engine","events_processed":686,"events_dropped":0,"avg_latency_ms":6741.891207024071,"throughput_eps":0,"last_update":"2026-03-21T23:49:13.965946506Z"} +2026/03/21 23:49:23 [detection_layer] {"stage_name":"detection_layer","events_processed":685,"events_dropped":0,"avg_latency_ms":19.012562712869574,"throughput_eps":0,"last_update":"2026-03-21T23:49:18.96659223Z"} +2026/03/21 23:49:23 [log_collector] {"stage_name":"log_collector","events_processed":32523,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6504.6,"last_update":"2026-03-21T23:49:18.869634179Z"} +2026/03/21 23:49:23 [metric_collector] {"stage_name":"metric_collector","events_processed":20609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4121.8,"last_update":"2026-03-21T23:49:18.86996848Z"} +2026/03/21 23:49:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8246,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:49:18.876808954Z"} +2026/03/21 23:49:23 ───────────────────────────────────────────────── +2026/03/21 23:49:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:49:28 [transform_engine] {"stage_name":"transform_engine","events_processed":686,"events_dropped":0,"avg_latency_ms":6741.891207024071,"throughput_eps":0,"last_update":"2026-03-21T23:49:13.965946506Z"} +2026/03/21 23:49:28 [detection_layer] {"stage_name":"detection_layer","events_processed":685,"events_dropped":0,"avg_latency_ms":19.012562712869574,"throughput_eps":0,"last_update":"2026-03-21T23:49:23.965497822Z"} +2026/03/21 23:49:28 [log_collector] {"stage_name":"log_collector","events_processed":32523,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6504.6,"last_update":"2026-03-21T23:49:23.869944141Z"} +2026/03/21 23:49:28 [metric_collector] {"stage_name":"metric_collector","events_processed":20614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4122.8,"last_update":"2026-03-21T23:49:23.870560211Z"} +2026/03/21 23:49:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:49:23.87880207Z"} +2026/03/21 23:49:28 ───────────────────────────────────────────────── +2026/03/21 23:49:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:49:33 [log_collector] {"stage_name":"log_collector","events_processed":32523,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6504.6,"last_update":"2026-03-21T23:49:28.869670427Z"} +2026/03/21 23:49:33 [metric_collector] {"stage_name":"metric_collector","events_processed":20619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4123.8,"last_update":"2026-03-21T23:49:28.869804424Z"} +2026/03/21 23:49:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:49:28.877555663Z"} +2026/03/21 23:49:33 [transform_engine] {"stage_name":"transform_engine","events_processed":686,"events_dropped":0,"avg_latency_ms":6741.891207024071,"throughput_eps":0,"last_update":"2026-03-21T23:49:13.965946506Z"} +2026/03/21 23:49:33 [detection_layer] {"stage_name":"detection_layer","events_processed":685,"events_dropped":0,"avg_latency_ms":19.012562712869574,"throughput_eps":0,"last_update":"2026-03-21T23:49:28.965763982Z"} +2026/03/21 23:49:33 ───────────────────────────────────────────────── +Saved state: 18 clusters, 32524 messages, reason: none +2026/03/21 23:49:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:49:38 [log_collector] {"stage_name":"log_collector","events_processed":32523,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6504.6,"last_update":"2026-03-21T23:49:33.870249337Z"} +2026/03/21 23:49:38 [metric_collector] {"stage_name":"metric_collector","events_processed":20624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4124.8,"last_update":"2026-03-21T23:49:33.871667535Z"} +2026/03/21 23:49:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:49:33.878261917Z"} +2026/03/21 23:49:38 [transform_engine] {"stage_name":"transform_engine","events_processed":687,"events_dropped":0,"avg_latency_ms":9222.528381019258,"throughput_eps":0,"last_update":"2026-03-21T23:49:38.110329572Z"} +2026/03/21 23:49:38 [detection_layer] {"stage_name":"detection_layer","events_processed":685,"events_dropped":0,"avg_latency_ms":19.012562712869574,"throughput_eps":0,"last_update":"2026-03-21T23:49:33.965457346Z"} +2026/03/21 23:49:38 ───────────────────────────────────────────────── +2026/03/21 23:49:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:49:43 [metric_collector] {"stage_name":"metric_collector","events_processed":20628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4125.6,"last_update":"2026-03-21T23:49:38.869373827Z"} +2026/03/21 23:49:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:49:38.87843761Z"} +2026/03/21 23:49:43 [transform_engine] {"stage_name":"transform_engine","events_processed":687,"events_dropped":0,"avg_latency_ms":9222.528381019258,"throughput_eps":0,"last_update":"2026-03-21T23:49:38.965676071Z"} +2026/03/21 23:49:43 [detection_layer] {"stage_name":"detection_layer","events_processed":686,"events_dropped":0,"avg_latency_ms":18.30103137029566,"throughput_eps":0,"last_update":"2026-03-21T23:49:38.96569167Z"} +2026/03/21 23:49:43 [log_collector] {"stage_name":"log_collector","events_processed":32528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6505.6,"last_update":"2026-03-21T23:49:38.869470061Z"} +2026/03/21 23:49:43 ───────────────────────────────────────────────── +2026/03/21 23:49:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:49:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:49:43.87657975Z"} +2026/03/21 23:49:48 [transform_engine] {"stage_name":"transform_engine","events_processed":687,"events_dropped":0,"avg_latency_ms":9222.528381019258,"throughput_eps":0,"last_update":"2026-03-21T23:49:43.965803473Z"} +2026/03/21 23:49:48 [detection_layer] {"stage_name":"detection_layer","events_processed":686,"events_dropped":0,"avg_latency_ms":18.30103137029566,"throughput_eps":0,"last_update":"2026-03-21T23:49:43.965769749Z"} +2026/03/21 23:49:48 [log_collector] {"stage_name":"log_collector","events_processed":32528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6505.6,"last_update":"2026-03-21T23:49:43.870463283Z"} +2026/03/21 23:49:48 [metric_collector] {"stage_name":"metric_collector","events_processed":20634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4126.8,"last_update":"2026-03-21T23:49:43.87061858Z"} +2026/03/21 23:49:48 ───────────────────────────────────────────────── +2026/03/21 23:49:49 [ANOMALY] time=2026-03-21T23:49:49Z score=0.8664 method=SEAD details=MAD!:w=0.27,s=0.92 RRCF-fast:w=0.19,s=0.83 RRCF-mid:w=0.16,s=0.84 RRCF-slow:w=0.13,s=0.87 COPOD!:w=0.25,s=0.85 +2026/03/21 23:49:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:49:53 [metric_collector] {"stage_name":"metric_collector","events_processed":20639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4127.8,"last_update":"2026-03-21T23:49:48.869729428Z"} +2026/03/21 23:49:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:49:48.877026066Z"} +2026/03/21 23:49:53 [transform_engine] {"stage_name":"transform_engine","events_processed":687,"events_dropped":0,"avg_latency_ms":9222.528381019258,"throughput_eps":0,"last_update":"2026-03-21T23:49:48.965152127Z"} +2026/03/21 23:49:53 [detection_layer] {"stage_name":"detection_layer","events_processed":686,"events_dropped":0,"avg_latency_ms":18.30103137029566,"throughput_eps":0,"last_update":"2026-03-21T23:49:48.966266783Z"} +2026/03/21 23:49:53 [log_collector] {"stage_name":"log_collector","events_processed":32528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6505.6,"last_update":"2026-03-21T23:49:48.869550485Z"} +2026/03/21 23:49:53 ───────────────────────────────────────────────── +2026/03/21 23:49:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:49:58 [metric_collector] {"stage_name":"metric_collector","events_processed":20644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4128.8,"last_update":"2026-03-21T23:49:53.870858014Z"} +2026/03/21 23:49:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:49:53.876268419Z"} +2026/03/21 23:49:58 [transform_engine] {"stage_name":"transform_engine","events_processed":688,"events_dropped":0,"avg_latency_ms":7527.456766015406,"throughput_eps":0,"last_update":"2026-03-21T23:49:53.965570302Z"} +2026/03/21 23:49:58 [detection_layer] {"stage_name":"detection_layer","events_processed":687,"events_dropped":0,"avg_latency_ms":17.101472696236527,"throughput_eps":0,"last_update":"2026-03-21T23:49:53.96554864Z"} +2026/03/21 23:49:58 [log_collector] {"stage_name":"log_collector","events_processed":32528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6505.6,"last_update":"2026-03-21T23:49:58.869802188Z"} +2026/03/21 23:49:58 ───────────────────────────────────────────────── +2026/03/21 23:50:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:50:03 [log_collector] {"stage_name":"log_collector","events_processed":32528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6505.6,"last_update":"2026-03-21T23:49:58.869802188Z"} +2026/03/21 23:50:03 [metric_collector] {"stage_name":"metric_collector","events_processed":20649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4129.8,"last_update":"2026-03-21T23:49:58.870029844Z"} +2026/03/21 23:50:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:49:58.878340084Z"} +2026/03/21 23:50:03 [transform_engine] {"stage_name":"transform_engine","events_processed":688,"events_dropped":0,"avg_latency_ms":7527.456766015406,"throughput_eps":0,"last_update":"2026-03-21T23:49:58.96569089Z"} +2026/03/21 23:50:03 [detection_layer] {"stage_name":"detection_layer","events_processed":687,"events_dropped":0,"avg_latency_ms":17.101472696236527,"throughput_eps":0,"last_update":"2026-03-21T23:49:58.965718843Z"} +2026/03/21 23:50:03 ───────────────────────────────────────────────── +2026/03/21 23:50:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:50:08 [log_collector] {"stage_name":"log_collector","events_processed":32528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6505.6,"last_update":"2026-03-21T23:50:03.869753866Z"} +2026/03/21 23:50:08 [metric_collector] {"stage_name":"metric_collector","events_processed":20659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4131.8,"last_update":"2026-03-21T23:50:08.869621284Z"} +2026/03/21 23:50:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:50:03.883579951Z"} +2026/03/21 23:50:08 [transform_engine] {"stage_name":"transform_engine","events_processed":688,"events_dropped":0,"avg_latency_ms":7527.456766015406,"throughput_eps":0,"last_update":"2026-03-21T23:50:03.965740324Z"} +2026/03/21 23:50:08 [detection_layer] {"stage_name":"detection_layer","events_processed":687,"events_dropped":0,"avg_latency_ms":17.101472696236527,"throughput_eps":0,"last_update":"2026-03-21T23:50:03.965768798Z"} +2026/03/21 23:50:08 ───────────────────────────────────────────────── +2026/03/21 23:50:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:50:13 [log_collector] {"stage_name":"log_collector","events_processed":32528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6505.6,"last_update":"2026-03-21T23:50:08.869693513Z"} +2026/03/21 23:50:13 [metric_collector] {"stage_name":"metric_collector","events_processed":20659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4131.8,"last_update":"2026-03-21T23:50:08.869621284Z"} +2026/03/21 23:50:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:50:08.878654089Z"} +2026/03/21 23:50:13 [transform_engine] {"stage_name":"transform_engine","events_processed":688,"events_dropped":0,"avg_latency_ms":7527.456766015406,"throughput_eps":0,"last_update":"2026-03-21T23:50:08.965878301Z"} +2026/03/21 23:50:13 [detection_layer] {"stage_name":"detection_layer","events_processed":687,"events_dropped":0,"avg_latency_ms":17.101472696236527,"throughput_eps":0,"last_update":"2026-03-21T23:50:08.965847122Z"} +2026/03/21 23:50:13 ───────────────────────────────────────────────── +2026/03/21 23:50:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:50:18 [log_collector] {"stage_name":"log_collector","events_processed":32528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6505.6,"last_update":"2026-03-21T23:50:13.869968897Z"} +2026/03/21 23:50:18 [metric_collector] {"stage_name":"metric_collector","events_processed":20664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4132.8,"last_update":"2026-03-21T23:50:13.870425301Z"} +2026/03/21 23:50:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:50:13.878529435Z"} +2026/03/21 23:50:18 [transform_engine] {"stage_name":"transform_engine","events_processed":688,"events_dropped":0,"avg_latency_ms":7527.456766015406,"throughput_eps":0,"last_update":"2026-03-21T23:50:13.965716196Z"} +2026/03/21 23:50:18 [detection_layer] {"stage_name":"detection_layer","events_processed":687,"events_dropped":0,"avg_latency_ms":17.101472696236527,"throughput_eps":0,"last_update":"2026-03-21T23:50:13.965695797Z"} +2026/03/21 23:50:18 ───────────────────────────────────────────────── +2026/03/21 23:50:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:50:23 [log_collector] {"stage_name":"log_collector","events_processed":32528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6505.6,"last_update":"2026-03-21T23:50:18.869580141Z"} +2026/03/21 23:50:23 [metric_collector] {"stage_name":"metric_collector","events_processed":20669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4133.8,"last_update":"2026-03-21T23:50:18.869969716Z"} +2026/03/21 23:50:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:50:18.875719842Z"} +2026/03/21 23:50:23 [transform_engine] {"stage_name":"transform_engine","events_processed":689,"events_dropped":0,"avg_latency_ms":6249.1802748123255,"throughput_eps":0,"last_update":"2026-03-21T23:50:20.102077575Z"} +2026/03/21 23:50:23 [detection_layer] {"stage_name":"detection_layer","events_processed":687,"events_dropped":0,"avg_latency_ms":17.101472696236527,"throughput_eps":0,"last_update":"2026-03-21T23:50:18.966414564Z"} +2026/03/21 23:50:23 ───────────────────────────────────────────────── +2026/03/21 23:50:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:50:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:50:23.878654779Z"} +2026/03/21 23:50:28 [transform_engine] {"stage_name":"transform_engine","events_processed":689,"events_dropped":0,"avg_latency_ms":6249.1802748123255,"throughput_eps":0,"last_update":"2026-03-21T23:50:23.965978301Z"} +2026/03/21 23:50:28 [detection_layer] {"stage_name":"detection_layer","events_processed":688,"events_dropped":0,"avg_latency_ms":16.53934335698922,"throughput_eps":0,"last_update":"2026-03-21T23:50:23.966099212Z"} +2026/03/21 23:50:28 [log_collector] {"stage_name":"log_collector","events_processed":32537,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6507.4,"last_update":"2026-03-21T23:50:23.870217646Z"} +2026/03/21 23:50:28 [metric_collector] {"stage_name":"metric_collector","events_processed":20674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4134.8,"last_update":"2026-03-21T23:50:23.870528452Z"} +2026/03/21 23:50:28 ───────────────────────────────────────────────── +2026/03/21 23:50:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:50:33 [log_collector] {"stage_name":"log_collector","events_processed":32537,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6507.4,"last_update":"2026-03-21T23:50:28.869930261Z"} +2026/03/21 23:50:33 [metric_collector] {"stage_name":"metric_collector","events_processed":20679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4135.8,"last_update":"2026-03-21T23:50:28.870406374Z"} +2026/03/21 23:50:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:50:28.878512002Z"} +2026/03/21 23:50:33 [transform_engine] {"stage_name":"transform_engine","events_processed":689,"events_dropped":0,"avg_latency_ms":6249.1802748123255,"throughput_eps":0,"last_update":"2026-03-21T23:50:28.96588558Z"} +2026/03/21 23:50:33 [detection_layer] {"stage_name":"detection_layer","events_processed":688,"events_dropped":0,"avg_latency_ms":16.53934335698922,"throughput_eps":0,"last_update":"2026-03-21T23:50:28.96585923Z"} +2026/03/21 23:50:33 ───────────────────────────────────────────────── +2026/03/21 23:50:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:50:38 [log_collector] {"stage_name":"log_collector","events_processed":32537,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6507.4,"last_update":"2026-03-21T23:50:38.870038491Z"} +2026/03/21 23:50:38 [metric_collector] {"stage_name":"metric_collector","events_processed":20684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4136.8,"last_update":"2026-03-21T23:50:33.870529619Z"} +2026/03/21 23:50:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8276,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:50:33.879937411Z"} +2026/03/21 23:50:38 [transform_engine] {"stage_name":"transform_engine","events_processed":689,"events_dropped":0,"avg_latency_ms":6249.1802748123255,"throughput_eps":0,"last_update":"2026-03-21T23:50:33.96511918Z"} +2026/03/21 23:50:38 [detection_layer] {"stage_name":"detection_layer","events_processed":688,"events_dropped":0,"avg_latency_ms":16.53934335698922,"throughput_eps":0,"last_update":"2026-03-21T23:50:33.965268947Z"} +2026/03/21 23:50:38 ───────────────────────────────────────────────── +Saved state: 18 clusters, 32538 messages, reason: none +2026/03/21 23:50:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:50:43 [log_collector] {"stage_name":"log_collector","events_processed":32537,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6507.4,"last_update":"2026-03-21T23:50:38.870038491Z"} +2026/03/21 23:50:44 [metric_collector] {"stage_name":"metric_collector","events_processed":20689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4137.8,"last_update":"2026-03-21T23:50:38.870403541Z"} +2026/03/21 23:50:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:50:38.880103422Z"} +2026/03/21 23:50:44 [transform_engine] {"stage_name":"transform_engine","events_processed":689,"events_dropped":0,"avg_latency_ms":6249.1802748123255,"throughput_eps":0,"last_update":"2026-03-21T23:50:38.965406665Z"} +2026/03/21 23:50:44 [detection_layer] {"stage_name":"detection_layer","events_processed":688,"events_dropped":0,"avg_latency_ms":16.53934335698922,"throughput_eps":0,"last_update":"2026-03-21T23:50:38.96534176Z"} +2026/03/21 23:50:44 ───────────────────────────────────────────────── +2026/03/21 23:50:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:50:48 [detection_layer] {"stage_name":"detection_layer","events_processed":688,"events_dropped":0,"avg_latency_ms":16.53934335698922,"throughput_eps":0,"last_update":"2026-03-21T23:50:43.966248965Z"} +2026/03/21 23:50:48 [log_collector] {"stage_name":"log_collector","events_processed":32539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6507.8,"last_update":"2026-03-21T23:50:43.870228722Z"} +2026/03/21 23:50:48 [metric_collector] {"stage_name":"metric_collector","events_processed":20694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4138.8,"last_update":"2026-03-21T23:50:43.870218814Z"} +2026/03/21 23:50:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:50:43.880962615Z"} +2026/03/21 23:50:48 [transform_engine] {"stage_name":"transform_engine","events_processed":689,"events_dropped":0,"avg_latency_ms":6249.1802748123255,"throughput_eps":0,"last_update":"2026-03-21T23:50:43.965091297Z"} +2026/03/21 23:50:48 ───────────────────────────────────────────────── +2026/03/21 23:50:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:50:53 [log_collector] {"stage_name":"log_collector","events_processed":32539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6507.8,"last_update":"2026-03-21T23:50:53.869418025Z"} +2026/03/21 23:50:53 [metric_collector] {"stage_name":"metric_collector","events_processed":20699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4139.8,"last_update":"2026-03-21T23:50:48.869979365Z"} +2026/03/21 23:50:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:50:48.878909642Z"} +2026/03/21 23:50:53 [transform_engine] {"stage_name":"transform_engine","events_processed":689,"events_dropped":0,"avg_latency_ms":6249.1802748123255,"throughput_eps":0,"last_update":"2026-03-21T23:50:43.965091297Z"} +2026/03/21 23:50:53 [detection_layer] {"stage_name":"detection_layer","events_processed":688,"events_dropped":0,"avg_latency_ms":16.53934335698922,"throughput_eps":0,"last_update":"2026-03-21T23:50:48.966198427Z"} +2026/03/21 23:50:53 ───────────────────────────────────────────────── +2026/03/21 23:50:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:50:58 [log_collector] {"stage_name":"log_collector","events_processed":32539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6507.8,"last_update":"2026-03-21T23:50:53.869418025Z"} +2026/03/21 23:50:58 [metric_collector] {"stage_name":"metric_collector","events_processed":20704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4140.8,"last_update":"2026-03-21T23:50:53.869846685Z"} +2026/03/21 23:50:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:50:53.877793569Z"} +2026/03/21 23:50:58 [transform_engine] {"stage_name":"transform_engine","events_processed":689,"events_dropped":0,"avg_latency_ms":6249.1802748123255,"throughput_eps":0,"last_update":"2026-03-21T23:50:43.965091297Z"} +2026/03/21 23:50:58 [detection_layer] {"stage_name":"detection_layer","events_processed":688,"events_dropped":0,"avg_latency_ms":16.53934335698922,"throughput_eps":0,"last_update":"2026-03-21T23:50:53.965996575Z"} +2026/03/21 23:50:58 ───────────────────────────────────────────────── +2026/03/21 23:51:03 [ANOMALY] time=2026-03-21T23:51:03Z score=0.8283 method=SEAD details=MAD!:w=0.27,s=0.81 RRCF-fast!:w=0.19,s=0.98 RRCF-mid!:w=0.16,s=0.99 RRCF-slow!:w=0.13,s=1.00 COPOD!:w=0.25,s=0.54 +2026/03/21 23:51:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:51:03 [metric_collector] {"stage_name":"metric_collector","events_processed":20709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4141.8,"last_update":"2026-03-21T23:50:58.870203636Z"} +2026/03/21 23:51:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8286,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:50:58.878431869Z"} +2026/03/21 23:51:03 [transform_engine] {"stage_name":"transform_engine","events_processed":690,"events_dropped":0,"avg_latency_ms":7890.753023449861,"throughput_eps":0,"last_update":"2026-03-21T23:51:03.422120967Z"} +2026/03/21 23:51:03 [detection_layer] {"stage_name":"detection_layer","events_processed":688,"events_dropped":0,"avg_latency_ms":16.53934335698922,"throughput_eps":0,"last_update":"2026-03-21T23:50:58.966109229Z"} +2026/03/21 23:51:03 [log_collector] {"stage_name":"log_collector","events_processed":32563,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6512.6,"last_update":"2026-03-21T23:51:03.870267461Z"} +2026/03/21 23:51:03 ───────────────────────────────────────────────── +2026/03/21 23:51:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:51:08 [transform_engine] {"stage_name":"transform_engine","events_processed":690,"events_dropped":0,"avg_latency_ms":7890.753023449861,"throughput_eps":0,"last_update":"2026-03-21T23:51:03.965121659Z"} +2026/03/21 23:51:08 [detection_layer] {"stage_name":"detection_layer","events_processed":689,"events_dropped":0,"avg_latency_ms":15.525489085591378,"throughput_eps":0,"last_update":"2026-03-21T23:51:03.965257158Z"} +2026/03/21 23:51:08 [log_collector] {"stage_name":"log_collector","events_processed":32563,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6512.6,"last_update":"2026-03-21T23:51:03.870267461Z"} +2026/03/21 23:51:08 [metric_collector] {"stage_name":"metric_collector","events_processed":20714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4142.8,"last_update":"2026-03-21T23:51:03.870541977Z"} +2026/03/21 23:51:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:51:03.87702193Z"} +2026/03/21 23:51:08 ───────────────────────────────────────────────── +Saved state: 19 clusters, 33076 messages, reason: cluster_created +Saved state: 20 clusters, 33077 messages, reason: cluster_created +Saved state: 21 clusters, 33078 messages, reason: cluster_created +Saved state: 21 clusters, 33079 messages, reason: cluster_template_changed +Saved state: 22 clusters, 33080 messages, reason: cluster_created +Saved state: 22 clusters, 33084 messages, reason: cluster_template_changed +Saved state: 23 clusters, 33085 messages, reason: cluster_created +Saved state: 23 clusters, 33087 messages, reason: cluster_template_changed +Saved state: 23 clusters, 33088 messages, reason: cluster_template_changed +Saved state: 24 clusters, 33089 messages, reason: cluster_created +Saved state: 24 clusters, 33090 messages, reason: cluster_template_changed +Saved state: 25 clusters, 33092 messages, reason: cluster_created +Saved state: 25 clusters, 33093 messages, reason: cluster_template_changed +Saved state: 26 clusters, 33094 messages, reason: cluster_created +Saved state: 26 clusters, 33095 messages, reason: cluster_template_changed +2026/03/21 23:51:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:51:13 [log_collector] {"stage_name":"log_collector","events_processed":32749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6549.8,"last_update":"2026-03-21T23:51:08.870219674Z"} +2026/03/21 23:51:13 [metric_collector] {"stage_name":"metric_collector","events_processed":20719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4143.8,"last_update":"2026-03-21T23:51:08.870434555Z"} +2026/03/21 23:51:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:51:08.877925366Z"} +2026/03/21 23:51:13 [transform_engine] {"stage_name":"transform_engine","events_processed":690,"events_dropped":0,"avg_latency_ms":7890.753023449861,"throughput_eps":0,"last_update":"2026-03-21T23:51:08.965799402Z"} +2026/03/21 23:51:13 [detection_layer] {"stage_name":"detection_layer","events_processed":689,"events_dropped":0,"avg_latency_ms":15.525489085591378,"throughput_eps":0,"last_update":"2026-03-21T23:51:08.965814692Z"} +2026/03/21 23:51:13 ───────────────────────────────────────────────── +Saved state: 27 clusters, 33103 messages, reason: cluster_created +2026/03/21 23:51:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:51:18 [log_collector] {"stage_name":"log_collector","events_processed":33095,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6619,"last_update":"2026-03-21T23:51:13.869983491Z"} +2026/03/21 23:51:18 [metric_collector] {"stage_name":"metric_collector","events_processed":20724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4144.8,"last_update":"2026-03-21T23:51:13.870305878Z"} +2026/03/21 23:51:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:51:13.877092469Z"} +2026/03/21 23:51:18 [transform_engine] {"stage_name":"transform_engine","events_processed":690,"events_dropped":0,"avg_latency_ms":7890.753023449861,"throughput_eps":0,"last_update":"2026-03-21T23:51:13.965239198Z"} +2026/03/21 23:51:18 [detection_layer] {"stage_name":"detection_layer","events_processed":689,"events_dropped":0,"avg_latency_ms":15.525489085591378,"throughput_eps":0,"last_update":"2026-03-21T23:51:13.96539704Z"} +2026/03/21 23:51:18 ───────────────────────────────────────────────── +2026/03/21 23:51:19 [ANOMALY] time=2026-03-21T23:51:19Z score=0.8958 method=SEAD details=MAD!:w=0.27,s=0.83 RRCF-fast:w=0.19,s=0.83 RRCF-mid:w=0.15,s=0.93 RRCF-slow!:w=0.13,s=0.96 COPOD!:w=0.25,s=0.97 +2026/03/21 23:51:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:51:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:51:18.879097433Z"} +2026/03/21 23:51:23 [transform_engine] {"stage_name":"transform_engine","events_processed":690,"events_dropped":0,"avg_latency_ms":7890.753023449861,"throughput_eps":0,"last_update":"2026-03-21T23:51:18.965282784Z"} +2026/03/21 23:51:23 [detection_layer] {"stage_name":"detection_layer","events_processed":689,"events_dropped":0,"avg_latency_ms":15.525489085591378,"throughput_eps":0,"last_update":"2026-03-21T23:51:18.965304105Z"} +2026/03/21 23:51:23 [log_collector] {"stage_name":"log_collector","events_processed":33268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6653.6,"last_update":"2026-03-21T23:51:18.870044952Z"} +2026/03/21 23:51:23 [metric_collector] {"stage_name":"metric_collector","events_processed":20729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4145.8,"last_update":"2026-03-21T23:51:18.870572993Z"} +2026/03/21 23:51:23 ───────────────────────────────────────────────── +2026/03/21 23:51:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:51:28 [log_collector] {"stage_name":"log_collector","events_processed":33271,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6654.2,"last_update":"2026-03-21T23:51:23.869779397Z"} +2026/03/21 23:51:28 [metric_collector] {"stage_name":"metric_collector","events_processed":20734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4146.8,"last_update":"2026-03-21T23:51:23.87014153Z"} +2026/03/21 23:51:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:51:23.879761539Z"} +2026/03/21 23:51:28 [transform_engine] {"stage_name":"transform_engine","events_processed":691,"events_dropped":0,"avg_latency_ms":6345.589612759889,"throughput_eps":0,"last_update":"2026-03-21T23:51:23.965853522Z"} +2026/03/21 23:51:28 [detection_layer] {"stage_name":"detection_layer","events_processed":690,"events_dropped":0,"avg_latency_ms":15.712518068473104,"throughput_eps":0,"last_update":"2026-03-21T23:51:23.965869582Z"} +2026/03/21 23:51:28 ───────────────────────────────────────────────── +2026/03/21 23:51:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:51:33 [log_collector] {"stage_name":"log_collector","events_processed":33271,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6654.2,"last_update":"2026-03-21T23:51:28.869395292Z"} +2026/03/21 23:51:33 [metric_collector] {"stage_name":"metric_collector","events_processed":20739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4147.8,"last_update":"2026-03-21T23:51:28.86963411Z"} +2026/03/21 23:51:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:51:28.878197735Z"} +2026/03/21 23:51:33 [transform_engine] {"stage_name":"transform_engine","events_processed":691,"events_dropped":0,"avg_latency_ms":6345.589612759889,"throughput_eps":0,"last_update":"2026-03-21T23:51:28.96542422Z"} +2026/03/21 23:51:33 [detection_layer] {"stage_name":"detection_layer","events_processed":690,"events_dropped":0,"avg_latency_ms":15.712518068473104,"throughput_eps":0,"last_update":"2026-03-21T23:51:28.965436604Z"} +2026/03/21 23:51:33 ───────────────────────────────────────────────── +2026/03/21 23:51:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:51:38 [transform_engine] {"stage_name":"transform_engine","events_processed":691,"events_dropped":0,"avg_latency_ms":6345.589612759889,"throughput_eps":0,"last_update":"2026-03-21T23:51:33.965150751Z"} +2026/03/21 23:51:38 [detection_layer] {"stage_name":"detection_layer","events_processed":690,"events_dropped":0,"avg_latency_ms":15.712518068473104,"throughput_eps":0,"last_update":"2026-03-21T23:51:33.966267049Z"} +2026/03/21 23:51:38 [log_collector] {"stage_name":"log_collector","events_processed":33296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6659.2,"last_update":"2026-03-21T23:51:38.869429382Z"} +2026/03/21 23:51:38 [metric_collector] {"stage_name":"metric_collector","events_processed":20744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4148.8,"last_update":"2026-03-21T23:51:33.870118252Z"} +2026/03/21 23:51:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:51:33.879041065Z"} +2026/03/21 23:51:38 ───────────────────────────────────────────────── +2026/03/21 23:51:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:51:43 [metric_collector] {"stage_name":"metric_collector","events_processed":20749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4149.8,"last_update":"2026-03-21T23:51:38.870077644Z"} +2026/03/21 23:51:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:51:38.878086626Z"} +2026/03/21 23:51:43 [transform_engine] {"stage_name":"transform_engine","events_processed":691,"events_dropped":0,"avg_latency_ms":6345.589612759889,"throughput_eps":0,"last_update":"2026-03-21T23:51:38.965419676Z"} +2026/03/21 23:51:43 [detection_layer] {"stage_name":"detection_layer","events_processed":690,"events_dropped":0,"avg_latency_ms":15.712518068473104,"throughput_eps":0,"last_update":"2026-03-21T23:51:38.965294336Z"} +2026/03/21 23:51:43 [log_collector] {"stage_name":"log_collector","events_processed":33296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6659.2,"last_update":"2026-03-21T23:51:38.869429382Z"} +2026/03/21 23:51:43 ───────────────────────────────────────────────── +2026/03/21 23:51:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:51:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:51:43.878583043Z"} +2026/03/21 23:51:48 [transform_engine] {"stage_name":"transform_engine","events_processed":691,"events_dropped":0,"avg_latency_ms":6345.589612759889,"throughput_eps":0,"last_update":"2026-03-21T23:51:43.965782446Z"} +2026/03/21 23:51:48 [detection_layer] {"stage_name":"detection_layer","events_processed":690,"events_dropped":0,"avg_latency_ms":15.712518068473104,"throughput_eps":0,"last_update":"2026-03-21T23:51:43.965832462Z"} +2026/03/21 23:51:48 [log_collector] {"stage_name":"log_collector","events_processed":33298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6659.6,"last_update":"2026-03-21T23:51:48.869747726Z"} +2026/03/21 23:51:48 [metric_collector] {"stage_name":"metric_collector","events_processed":20754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4150.8,"last_update":"2026-03-21T23:51:43.870279336Z"} +2026/03/21 23:51:48 ───────────────────────────────────────────────── +2026/03/21 23:51:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:51:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:51:48.878859482Z"} +2026/03/21 23:51:53 [transform_engine] {"stage_name":"transform_engine","events_processed":692,"events_dropped":0,"avg_latency_ms":5101.600001207912,"throughput_eps":0,"last_update":"2026-03-21T23:51:49.091721099Z"} +2026/03/21 23:51:53 [detection_layer] {"stage_name":"detection_layer","events_processed":690,"events_dropped":0,"avg_latency_ms":15.712518068473104,"throughput_eps":0,"last_update":"2026-03-21T23:51:48.966106786Z"} +2026/03/21 23:51:53 [log_collector] {"stage_name":"log_collector","events_processed":33298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6659.6,"last_update":"2026-03-21T23:51:48.869747726Z"} +2026/03/21 23:51:53 [metric_collector] {"stage_name":"metric_collector","events_processed":20759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4151.8,"last_update":"2026-03-21T23:51:48.870106424Z"} +2026/03/21 23:51:53 ───────────────────────────────────────────────── +2026/03/21 23:51:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:51:58 [log_collector] {"stage_name":"log_collector","events_processed":33298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6659.6,"last_update":"2026-03-21T23:51:53.870154508Z"} +2026/03/21 23:51:58 [metric_collector] {"stage_name":"metric_collector","events_processed":20764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4152.8,"last_update":"2026-03-21T23:51:53.870340353Z"} +2026/03/21 23:51:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:51:53.87907191Z"} +2026/03/21 23:51:58 [transform_engine] {"stage_name":"transform_engine","events_processed":692,"events_dropped":0,"avg_latency_ms":5101.600001207912,"throughput_eps":0,"last_update":"2026-03-21T23:51:53.965540212Z"} +2026/03/21 23:51:58 [detection_layer] {"stage_name":"detection_layer","events_processed":691,"events_dropped":0,"avg_latency_ms":17.087173854778484,"throughput_eps":0,"last_update":"2026-03-21T23:51:53.965424511Z"} +2026/03/21 23:51:58 ───────────────────────────────────────────────── +2026/03/21 23:52:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:52:03 [metric_collector] {"stage_name":"metric_collector","events_processed":20769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4153.8,"last_update":"2026-03-21T23:51:58.870871378Z"} +2026/03/21 23:52:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:51:58.879243445Z"} +2026/03/21 23:52:03 [transform_engine] {"stage_name":"transform_engine","events_processed":692,"events_dropped":0,"avg_latency_ms":5101.600001207912,"throughput_eps":0,"last_update":"2026-03-21T23:51:58.965573132Z"} +2026/03/21 23:52:03 [detection_layer] {"stage_name":"detection_layer","events_processed":691,"events_dropped":0,"avg_latency_ms":17.087173854778484,"throughput_eps":0,"last_update":"2026-03-21T23:51:58.965544036Z"} +2026/03/21 23:52:03 [log_collector] {"stage_name":"log_collector","events_processed":33298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6659.6,"last_update":"2026-03-21T23:51:58.87043409Z"} +2026/03/21 23:52:03 ───────────────────────────────────────────────── +2026/03/21 23:52:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:52:08 [log_collector] {"stage_name":"log_collector","events_processed":33298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6659.6,"last_update":"2026-03-21T23:52:03.869980023Z"} +2026/03/21 23:52:08 [metric_collector] {"stage_name":"metric_collector","events_processed":20774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4154.8,"last_update":"2026-03-21T23:52:03.870171038Z"} +2026/03/21 23:52:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:52:03.879057913Z"} +2026/03/21 23:52:08 [transform_engine] {"stage_name":"transform_engine","events_processed":692,"events_dropped":0,"avg_latency_ms":5101.600001207912,"throughput_eps":0,"last_update":"2026-03-21T23:52:03.96513764Z"} +2026/03/21 23:52:08 [detection_layer] {"stage_name":"detection_layer","events_processed":691,"events_dropped":0,"avg_latency_ms":17.087173854778484,"throughput_eps":0,"last_update":"2026-03-21T23:52:03.966248608Z"} +2026/03/21 23:52:08 ───────────────────────────────────────────────── +2026/03/21 23:52:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:52:13 [transform_engine] {"stage_name":"transform_engine","events_processed":692,"events_dropped":0,"avg_latency_ms":5101.600001207912,"throughput_eps":0,"last_update":"2026-03-21T23:52:08.965749929Z"} +2026/03/21 23:52:13 [detection_layer] {"stage_name":"detection_layer","events_processed":691,"events_dropped":0,"avg_latency_ms":17.087173854778484,"throughput_eps":0,"last_update":"2026-03-21T23:52:08.965866542Z"} +2026/03/21 23:52:13 [log_collector] {"stage_name":"log_collector","events_processed":33298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6659.6,"last_update":"2026-03-21T23:52:13.86950561Z"} +2026/03/21 23:52:13 [metric_collector] {"stage_name":"metric_collector","events_processed":20779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4155.8,"last_update":"2026-03-21T23:52:08.870825117Z"} +2026/03/21 23:52:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:52:08.879424541Z"} +2026/03/21 23:52:13 ───────────────────────────────────────────────── +2026/03/21 23:52:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:52:18 [log_collector] {"stage_name":"log_collector","events_processed":33298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6659.6,"last_update":"2026-03-21T23:52:18.869492086Z"} +2026/03/21 23:52:18 [metric_collector] {"stage_name":"metric_collector","events_processed":20784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4156.8,"last_update":"2026-03-21T23:52:13.869979147Z"} +2026/03/21 23:52:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:52:13.879644874Z"} +2026/03/21 23:52:18 [transform_engine] {"stage_name":"transform_engine","events_processed":692,"events_dropped":0,"avg_latency_ms":5101.600001207912,"throughput_eps":0,"last_update":"2026-03-21T23:52:13.966065284Z"} +2026/03/21 23:52:18 [detection_layer] {"stage_name":"detection_layer","events_processed":691,"events_dropped":0,"avg_latency_ms":17.087173854778484,"throughput_eps":0,"last_update":"2026-03-21T23:52:13.965994038Z"} +2026/03/21 23:52:18 ───────────────────────────────────────────────── +2026/03/21 23:52:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:52:23 [metric_collector] {"stage_name":"metric_collector","events_processed":20789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4157.8,"last_update":"2026-03-21T23:52:18.869800167Z"} +2026/03/21 23:52:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:52:18.878317223Z"} +2026/03/21 23:52:23 [transform_engine] {"stage_name":"transform_engine","events_processed":693,"events_dropped":0,"avg_latency_ms":4096.2812297663295,"throughput_eps":0,"last_update":"2026-03-21T23:52:19.04058011Z"} +2026/03/21 23:52:23 [detection_layer] {"stage_name":"detection_layer","events_processed":691,"events_dropped":0,"avg_latency_ms":17.087173854778484,"throughput_eps":0,"last_update":"2026-03-21T23:52:18.965674087Z"} +2026/03/21 23:52:23 [log_collector] {"stage_name":"log_collector","events_processed":33298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6659.6,"last_update":"2026-03-21T23:52:18.869492086Z"} +2026/03/21 23:52:23 ───────────────────────────────────────────────── +2026/03/21 23:52:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:52:28 [detection_layer] {"stage_name":"detection_layer","events_processed":692,"events_dropped":0,"avg_latency_ms":18.60252868382279,"throughput_eps":0,"last_update":"2026-03-21T23:52:23.965882568Z"} +2026/03/21 23:52:28 [log_collector] {"stage_name":"log_collector","events_processed":33298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6659.6,"last_update":"2026-03-21T23:52:28.869502202Z"} +2026/03/21 23:52:28 [metric_collector] {"stage_name":"metric_collector","events_processed":20798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4159.6,"last_update":"2026-03-21T23:52:28.869514225Z"} +2026/03/21 23:52:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8320,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:52:23.878689036Z"} +2026/03/21 23:52:28 [transform_engine] {"stage_name":"transform_engine","events_processed":693,"events_dropped":0,"avg_latency_ms":4096.2812297663295,"throughput_eps":0,"last_update":"2026-03-21T23:52:23.965889541Z"} +2026/03/21 23:52:28 ───────────────────────────────────────────────── +2026/03/21 23:52:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:52:33 [log_collector] {"stage_name":"log_collector","events_processed":33298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6659.6,"last_update":"2026-03-21T23:52:28.869502202Z"} +2026/03/21 23:52:33 [metric_collector] {"stage_name":"metric_collector","events_processed":20798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4159.6,"last_update":"2026-03-21T23:52:28.869514225Z"} +2026/03/21 23:52:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:52:28.877893696Z"} +2026/03/21 23:52:33 [transform_engine] {"stage_name":"transform_engine","events_processed":693,"events_dropped":0,"avg_latency_ms":4096.2812297663295,"throughput_eps":0,"last_update":"2026-03-21T23:52:28.965082258Z"} +2026/03/21 23:52:33 [detection_layer] {"stage_name":"detection_layer","events_processed":692,"events_dropped":0,"avg_latency_ms":18.60252868382279,"throughput_eps":0,"last_update":"2026-03-21T23:52:28.966206953Z"} +2026/03/21 23:52:33 ───────────────────────────────────────────────── +2026/03/21 23:52:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:52:38 [metric_collector] {"stage_name":"metric_collector","events_processed":20804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4160.8,"last_update":"2026-03-21T23:52:33.869942985Z"} +2026/03/21 23:52:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:52:33.878748393Z"} +2026/03/21 23:52:38 [transform_engine] {"stage_name":"transform_engine","events_processed":693,"events_dropped":0,"avg_latency_ms":4096.2812297663295,"throughput_eps":0,"last_update":"2026-03-21T23:52:33.965896607Z"} +2026/03/21 23:52:38 [detection_layer] {"stage_name":"detection_layer","events_processed":692,"events_dropped":0,"avg_latency_ms":18.60252868382279,"throughput_eps":0,"last_update":"2026-03-21T23:52:33.965888902Z"} +2026/03/21 23:52:38 [log_collector] {"stage_name":"log_collector","events_processed":33298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6659.6,"last_update":"2026-03-21T23:52:38.870298187Z"} +2026/03/21 23:52:38 ───────────────────────────────────────────────── +2026/03/21 23:52:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:52:43 [log_collector] {"stage_name":"log_collector","events_processed":33298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6659.6,"last_update":"2026-03-21T23:52:43.86940262Z"} +2026/03/21 23:52:43 [metric_collector] {"stage_name":"metric_collector","events_processed":20809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4161.8,"last_update":"2026-03-21T23:52:38.870664669Z"} +2026/03/21 23:52:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:52:38.878458088Z"} +2026/03/21 23:52:43 [transform_engine] {"stage_name":"transform_engine","events_processed":693,"events_dropped":0,"avg_latency_ms":4096.2812297663295,"throughput_eps":0,"last_update":"2026-03-21T23:52:38.965815183Z"} +2026/03/21 23:52:43 [detection_layer] {"stage_name":"detection_layer","events_processed":692,"events_dropped":0,"avg_latency_ms":18.60252868382279,"throughput_eps":0,"last_update":"2026-03-21T23:52:38.965804241Z"} +2026/03/21 23:52:43 ───────────────────────────────────────────────── +2026/03/21 23:52:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:52:48 [metric_collector] {"stage_name":"metric_collector","events_processed":20814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4162.8,"last_update":"2026-03-21T23:52:43.869892539Z"} +2026/03/21 23:52:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:52:43.87805798Z"} +2026/03/21 23:52:48 [transform_engine] {"stage_name":"transform_engine","events_processed":693,"events_dropped":0,"avg_latency_ms":4096.2812297663295,"throughput_eps":0,"last_update":"2026-03-21T23:52:43.965286518Z"} +2026/03/21 23:52:48 [detection_layer] {"stage_name":"detection_layer","events_processed":692,"events_dropped":0,"avg_latency_ms":18.60252868382279,"throughput_eps":0,"last_update":"2026-03-21T23:52:43.965277591Z"} +2026/03/21 23:52:48 [log_collector] {"stage_name":"log_collector","events_processed":33298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6659.6,"last_update":"2026-03-21T23:52:48.869570235Z"} +2026/03/21 23:52:48 ───────────────────────────────────────────────── +2026/03/21 23:52:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:52:53 [log_collector] {"stage_name":"log_collector","events_processed":33298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6659.6,"last_update":"2026-03-21T23:52:48.869570235Z"} +2026/03/21 23:52:53 [metric_collector] {"stage_name":"metric_collector","events_processed":20819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4163.8,"last_update":"2026-03-21T23:52:48.869954522Z"} +2026/03/21 23:52:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8330,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:52:48.878686849Z"} +2026/03/21 23:52:53 [transform_engine] {"stage_name":"transform_engine","events_processed":694,"events_dropped":0,"avg_latency_ms":3292.0325848130637,"throughput_eps":0,"last_update":"2026-03-21T23:52:49.041088431Z"} +2026/03/21 23:52:53 [detection_layer] {"stage_name":"detection_layer","events_processed":692,"events_dropped":0,"avg_latency_ms":18.60252868382279,"throughput_eps":0,"last_update":"2026-03-21T23:52:48.966036058Z"} +2026/03/21 23:52:53 ───────────────────────────────────────────────── +2026/03/21 23:52:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:52:58 [detection_layer] {"stage_name":"detection_layer","events_processed":693,"events_dropped":0,"avg_latency_ms":19.54384114705823,"throughput_eps":0,"last_update":"2026-03-21T23:52:53.965879567Z"} +2026/03/21 23:52:58 [log_collector] {"stage_name":"log_collector","events_processed":33298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6659.6,"last_update":"2026-03-21T23:52:58.869876062Z"} +2026/03/21 23:52:58 [metric_collector] {"stage_name":"metric_collector","events_processed":20824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4164.8,"last_update":"2026-03-21T23:52:53.871073584Z"} +2026/03/21 23:52:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:52:53.879661836Z"} +2026/03/21 23:52:58 [transform_engine] {"stage_name":"transform_engine","events_processed":694,"events_dropped":0,"avg_latency_ms":3292.0325848130637,"throughput_eps":0,"last_update":"2026-03-21T23:52:53.965890358Z"} +2026/03/21 23:52:58 ───────────────────────────────────────────────── +2026/03/21 23:53:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:53:03 [log_collector] {"stage_name":"log_collector","events_processed":33298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6659.6,"last_update":"2026-03-21T23:53:03.869861193Z"} +2026/03/21 23:53:03 [metric_collector] {"stage_name":"metric_collector","events_processed":20829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4165.8,"last_update":"2026-03-21T23:52:58.870288522Z"} +2026/03/21 23:53:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:52:58.879301978Z"} +2026/03/21 23:53:03 [transform_engine] {"stage_name":"transform_engine","events_processed":694,"events_dropped":0,"avg_latency_ms":3292.0325848130637,"throughput_eps":0,"last_update":"2026-03-21T23:52:58.965508799Z"} +2026/03/21 23:53:03 [detection_layer] {"stage_name":"detection_layer","events_processed":693,"events_dropped":0,"avg_latency_ms":19.54384114705823,"throughput_eps":0,"last_update":"2026-03-21T23:52:58.965498119Z"} +2026/03/21 23:53:03 ───────────────────────────────────────────────── +2026/03/21 23:53:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:53:08 [transform_engine] {"stage_name":"transform_engine","events_processed":694,"events_dropped":0,"avg_latency_ms":3292.0325848130637,"throughput_eps":0,"last_update":"2026-03-21T23:53:03.966227124Z"} +2026/03/21 23:53:08 [detection_layer] {"stage_name":"detection_layer","events_processed":693,"events_dropped":0,"avg_latency_ms":19.54384114705823,"throughput_eps":0,"last_update":"2026-03-21T23:53:03.966113315Z"} +2026/03/21 23:53:08 [log_collector] {"stage_name":"log_collector","events_processed":33298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6659.6,"last_update":"2026-03-21T23:53:08.86943056Z"} +2026/03/21 23:53:08 [metric_collector] {"stage_name":"metric_collector","events_processed":20834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4166.8,"last_update":"2026-03-21T23:53:03.87051782Z"} +2026/03/21 23:53:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:53:03.879788419Z"} +2026/03/21 23:53:08 ───────────────────────────────────────────────── +2026/03/21 23:53:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:53:13 [log_collector] {"stage_name":"log_collector","events_processed":33298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6659.6,"last_update":"2026-03-21T23:53:08.86943056Z"} +2026/03/21 23:53:13 [metric_collector] {"stage_name":"metric_collector","events_processed":20839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4167.8,"last_update":"2026-03-21T23:53:08.869878378Z"} +2026/03/21 23:53:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:53:08.877777961Z"} +2026/03/21 23:53:13 [transform_engine] {"stage_name":"transform_engine","events_processed":694,"events_dropped":0,"avg_latency_ms":3292.0325848130637,"throughput_eps":0,"last_update":"2026-03-21T23:53:08.966026252Z"} +2026/03/21 23:53:13 [detection_layer] {"stage_name":"detection_layer","events_processed":693,"events_dropped":0,"avg_latency_ms":19.54384114705823,"throughput_eps":0,"last_update":"2026-03-21T23:53:08.965987558Z"} +2026/03/21 23:53:13 ───────────────────────────────────────────────── +2026/03/21 23:53:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:53:18 [log_collector] {"stage_name":"log_collector","events_processed":33298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6659.6,"last_update":"2026-03-21T23:53:13.869706148Z"} +2026/03/21 23:53:18 [metric_collector] {"stage_name":"metric_collector","events_processed":20844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4168.8,"last_update":"2026-03-21T23:53:13.86990537Z"} +2026/03/21 23:53:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:53:13.87890481Z"} +2026/03/21 23:53:18 [transform_engine] {"stage_name":"transform_engine","events_processed":694,"events_dropped":0,"avg_latency_ms":3292.0325848130637,"throughput_eps":0,"last_update":"2026-03-21T23:53:13.965113023Z"} +2026/03/21 23:53:18 [detection_layer] {"stage_name":"detection_layer","events_processed":693,"events_dropped":0,"avg_latency_ms":19.54384114705823,"throughput_eps":0,"last_update":"2026-03-21T23:53:13.966232978Z"} +2026/03/21 23:53:18 ───────────────────────────────────────────────── +2026/03/21 23:53:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:53:23 [transform_engine] {"stage_name":"transform_engine","events_processed":695,"events_dropped":0,"avg_latency_ms":2646.4241362504513,"throughput_eps":0,"last_update":"2026-03-21T23:53:19.029934941Z"} +2026/03/21 23:53:23 [detection_layer] {"stage_name":"detection_layer","events_processed":693,"events_dropped":0,"avg_latency_ms":19.54384114705823,"throughput_eps":0,"last_update":"2026-03-21T23:53:18.965911135Z"} +2026/03/21 23:53:23 [log_collector] {"stage_name":"log_collector","events_processed":33298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6659.6,"last_update":"2026-03-21T23:53:23.870262625Z"} +2026/03/21 23:53:23 [metric_collector] {"stage_name":"metric_collector","events_processed":20849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4169.8,"last_update":"2026-03-21T23:53:18.870448614Z"} +2026/03/21 23:53:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8342,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:53:18.877709975Z"} +2026/03/21 23:53:23 ───────────────────────────────────────────────── +2026/03/21 23:53:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:53:28 [log_collector] {"stage_name":"log_collector","events_processed":33298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6659.6,"last_update":"2026-03-21T23:53:28.870234845Z"} +2026/03/21 23:53:28 [metric_collector] {"stage_name":"metric_collector","events_processed":20854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4170.8,"last_update":"2026-03-21T23:53:23.870701236Z"} +2026/03/21 23:53:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:53:23.879199947Z"} +2026/03/21 23:53:28 [transform_engine] {"stage_name":"transform_engine","events_processed":695,"events_dropped":0,"avg_latency_ms":2646.4241362504513,"throughput_eps":0,"last_update":"2026-03-21T23:53:23.965371068Z"} +2026/03/21 23:53:28 [detection_layer] {"stage_name":"detection_layer","events_processed":694,"events_dropped":0,"avg_latency_ms":19.242284917646586,"throughput_eps":0,"last_update":"2026-03-21T23:53:23.965394212Z"} +2026/03/21 23:53:28 ───────────────────────────────────────────────── +2026/03/21 23:53:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:53:33 [detection_layer] {"stage_name":"detection_layer","events_processed":694,"events_dropped":0,"avg_latency_ms":19.242284917646586,"throughput_eps":0,"last_update":"2026-03-21T23:53:28.965753243Z"} +2026/03/21 23:53:33 [log_collector] {"stage_name":"log_collector","events_processed":33298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6659.6,"last_update":"2026-03-21T23:53:28.870234845Z"} +2026/03/21 23:53:33 [metric_collector] {"stage_name":"metric_collector","events_processed":20859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4171.8,"last_update":"2026-03-21T23:53:28.870878017Z"} +2026/03/21 23:53:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:53:28.879416674Z"} +2026/03/21 23:53:33 [transform_engine] {"stage_name":"transform_engine","events_processed":695,"events_dropped":0,"avg_latency_ms":2646.4241362504513,"throughput_eps":0,"last_update":"2026-03-21T23:53:28.965638582Z"} +2026/03/21 23:53:33 ───────────────────────────────────────────────── +2026/03/21 23:53:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:53:38 [log_collector] {"stage_name":"log_collector","events_processed":33298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6659.6,"last_update":"2026-03-21T23:53:38.869651172Z"} +2026/03/21 23:53:38 [metric_collector] {"stage_name":"metric_collector","events_processed":20864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4172.8,"last_update":"2026-03-21T23:53:33.870503549Z"} +2026/03/21 23:53:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:53:33.879672052Z"} +2026/03/21 23:53:38 [transform_engine] {"stage_name":"transform_engine","events_processed":695,"events_dropped":0,"avg_latency_ms":2646.4241362504513,"throughput_eps":0,"last_update":"2026-03-21T23:53:33.96585188Z"} +2026/03/21 23:53:38 [detection_layer] {"stage_name":"detection_layer","events_processed":694,"events_dropped":0,"avg_latency_ms":19.242284917646586,"throughput_eps":0,"last_update":"2026-03-21T23:53:33.965891827Z"} +2026/03/21 23:53:38 ───────────────────────────────────────────────── +2026/03/21 23:53:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:53:43 [detection_layer] {"stage_name":"detection_layer","events_processed":694,"events_dropped":0,"avg_latency_ms":19.242284917646586,"throughput_eps":0,"last_update":"2026-03-21T23:53:38.965291052Z"} +2026/03/21 23:53:43 [log_collector] {"stage_name":"log_collector","events_processed":33298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6659.6,"last_update":"2026-03-21T23:53:43.870154447Z"} +2026/03/21 23:53:43 [metric_collector] {"stage_name":"metric_collector","events_processed":20869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4173.8,"last_update":"2026-03-21T23:53:38.87009895Z"} +2026/03/21 23:53:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8350,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:53:38.878888427Z"} +2026/03/21 23:53:43 [transform_engine] {"stage_name":"transform_engine","events_processed":695,"events_dropped":0,"avg_latency_ms":2646.4241362504513,"throughput_eps":0,"last_update":"2026-03-21T23:53:38.965059198Z"} +2026/03/21 23:53:43 ───────────────────────────────────────────────── +2026/03/21 23:53:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:53:48 [metric_collector] {"stage_name":"metric_collector","events_processed":20874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4174.8,"last_update":"2026-03-21T23:53:43.870585333Z"} +2026/03/21 23:53:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:53:43.879076087Z"} +2026/03/21 23:53:48 [transform_engine] {"stage_name":"transform_engine","events_processed":695,"events_dropped":0,"avg_latency_ms":2646.4241362504513,"throughput_eps":0,"last_update":"2026-03-21T23:53:43.965239434Z"} +2026/03/21 23:53:48 [detection_layer] {"stage_name":"detection_layer","events_processed":694,"events_dropped":0,"avg_latency_ms":19.242284917646586,"throughput_eps":0,"last_update":"2026-03-21T23:53:43.965402247Z"} +2026/03/21 23:53:48 [log_collector] {"stage_name":"log_collector","events_processed":33298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6659.6,"last_update":"2026-03-21T23:53:43.870154447Z"} +2026/03/21 23:53:48 ───────────────────────────────────────────────── +2026/03/21 23:53:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:53:53 [detection_layer] {"stage_name":"detection_layer","events_processed":694,"events_dropped":0,"avg_latency_ms":19.242284917646586,"throughput_eps":0,"last_update":"2026-03-21T23:53:48.965568422Z"} +2026/03/21 23:53:53 [log_collector] {"stage_name":"log_collector","events_processed":33298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6659.6,"last_update":"2026-03-21T23:53:48.869640811Z"} +2026/03/21 23:53:53 [metric_collector] {"stage_name":"metric_collector","events_processed":20883,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4176.6,"last_update":"2026-03-21T23:53:53.870109158Z"} +2026/03/21 23:53:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:53:48.879223037Z"} +2026/03/21 23:53:53 [transform_engine] {"stage_name":"transform_engine","events_processed":696,"events_dropped":0,"avg_latency_ms":2132.009923400361,"throughput_eps":0,"last_update":"2026-03-21T23:53:49.040018961Z"} +2026/03/21 23:53:53 ───────────────────────────────────────────────── +2026/03/21 23:53:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:53:58 [metric_collector] {"stage_name":"metric_collector","events_processed":20883,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4176.6,"last_update":"2026-03-21T23:53:53.870109158Z"} +2026/03/21 23:53:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:53:53.879060395Z"} +2026/03/21 23:53:58 [transform_engine] {"stage_name":"transform_engine","events_processed":696,"events_dropped":0,"avg_latency_ms":2132.009923400361,"throughput_eps":0,"last_update":"2026-03-21T23:53:53.965220366Z"} +2026/03/21 23:53:58 [detection_layer] {"stage_name":"detection_layer","events_processed":695,"events_dropped":0,"avg_latency_ms":20.07713533411727,"throughput_eps":0,"last_update":"2026-03-21T23:53:53.965337169Z"} +2026/03/21 23:53:58 [log_collector] {"stage_name":"log_collector","events_processed":33298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6659.6,"last_update":"2026-03-21T23:53:53.87039677Z"} +2026/03/21 23:53:58 ───────────────────────────────────────────────── +2026/03/21 23:54:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:54:03 [log_collector] {"stage_name":"log_collector","events_processed":33298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6659.6,"last_update":"2026-03-21T23:54:03.870006803Z"} +2026/03/21 23:54:03 [metric_collector] {"stage_name":"metric_collector","events_processed":20889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4177.8,"last_update":"2026-03-21T23:53:58.869966783Z"} +2026/03/21 23:54:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:53:58.877982508Z"} +2026/03/21 23:54:03 [transform_engine] {"stage_name":"transform_engine","events_processed":696,"events_dropped":0,"avg_latency_ms":2132.009923400361,"throughput_eps":0,"last_update":"2026-03-21T23:53:58.965092397Z"} +2026/03/21 23:54:03 [detection_layer] {"stage_name":"detection_layer","events_processed":695,"events_dropped":0,"avg_latency_ms":20.07713533411727,"throughput_eps":0,"last_update":"2026-03-21T23:53:58.966223865Z"} +2026/03/21 23:54:03 ───────────────────────────────────────────────── +2026/03/21 23:54:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:54:08 [log_collector] {"stage_name":"log_collector","events_processed":33298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6659.6,"last_update":"2026-03-21T23:54:03.870006803Z"} +2026/03/21 23:54:08 [metric_collector] {"stage_name":"metric_collector","events_processed":20894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4178.8,"last_update":"2026-03-21T23:54:03.870631028Z"} +2026/03/21 23:54:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8360,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:54:03.879219951Z"} +2026/03/21 23:54:08 [transform_engine] {"stage_name":"transform_engine","events_processed":696,"events_dropped":0,"avg_latency_ms":2132.009923400361,"throughput_eps":0,"last_update":"2026-03-21T23:54:03.965524949Z"} +2026/03/21 23:54:08 [detection_layer] {"stage_name":"detection_layer","events_processed":695,"events_dropped":0,"avg_latency_ms":20.07713533411727,"throughput_eps":0,"last_update":"2026-03-21T23:54:03.96547854Z"} +2026/03/21 23:54:08 ───────────────────────────────────────────────── +2026/03/21 23:54:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:54:13 [metric_collector] {"stage_name":"metric_collector","events_processed":20899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4179.8,"last_update":"2026-03-21T23:54:08.870412618Z"} +2026/03/21 23:54:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:54:08.878483187Z"} +2026/03/21 23:54:13 [transform_engine] {"stage_name":"transform_engine","events_processed":696,"events_dropped":0,"avg_latency_ms":2132.009923400361,"throughput_eps":0,"last_update":"2026-03-21T23:54:08.96568341Z"} +2026/03/21 23:54:13 [detection_layer] {"stage_name":"detection_layer","events_processed":695,"events_dropped":0,"avg_latency_ms":20.07713533411727,"throughput_eps":0,"last_update":"2026-03-21T23:54:08.965649455Z"} +2026/03/21 23:54:13 [log_collector] {"stage_name":"log_collector","events_processed":33298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6659.6,"last_update":"2026-03-21T23:54:08.869776278Z"} +2026/03/21 23:54:13 ───────────────────────────────────────────────── +2026/03/21 23:54:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:54:18 [log_collector] {"stage_name":"log_collector","events_processed":33298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6659.6,"last_update":"2026-03-21T23:54:13.870271241Z"} +2026/03/21 23:54:18 [metric_collector] {"stage_name":"metric_collector","events_processed":20904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4180.8,"last_update":"2026-03-21T23:54:13.870699311Z"} +2026/03/21 23:54:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:54:13.880171476Z"} +2026/03/21 23:54:18 [transform_engine] {"stage_name":"transform_engine","events_processed":696,"events_dropped":0,"avg_latency_ms":2132.009923400361,"throughput_eps":0,"last_update":"2026-03-21T23:54:13.965450448Z"} +2026/03/21 23:54:18 [detection_layer] {"stage_name":"detection_layer","events_processed":695,"events_dropped":0,"avg_latency_ms":20.07713533411727,"throughput_eps":0,"last_update":"2026-03-21T23:54:13.965344916Z"} +2026/03/21 23:54:18 ───────────────────────────────────────────────── +2026/03/21 23:54:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:54:23 [metric_collector] {"stage_name":"metric_collector","events_processed":20908,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4181.6,"last_update":"2026-03-21T23:54:18.86950283Z"} +2026/03/21 23:54:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:54:18.877937577Z"} +2026/03/21 23:54:23 [transform_engine] {"stage_name":"transform_engine","events_processed":697,"events_dropped":0,"avg_latency_ms":1718.378043120289,"throughput_eps":0,"last_update":"2026-03-21T23:54:19.029046985Z"} +2026/03/21 23:54:23 [detection_layer] {"stage_name":"detection_layer","events_processed":695,"events_dropped":0,"avg_latency_ms":20.07713533411727,"throughput_eps":0,"last_update":"2026-03-21T23:54:18.965428657Z"} +2026/03/21 23:54:23 [log_collector] {"stage_name":"log_collector","events_processed":33298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6659.6,"last_update":"2026-03-21T23:54:23.869425248Z"} +2026/03/21 23:54:23 ───────────────────────────────────────────────── +2026/03/21 23:54:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:54:28 [log_collector] {"stage_name":"log_collector","events_processed":33298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6659.6,"last_update":"2026-03-21T23:54:23.869425248Z"} +2026/03/21 23:54:28 [metric_collector] {"stage_name":"metric_collector","events_processed":20913,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4182.6,"last_update":"2026-03-21T23:54:23.869479572Z"} +2026/03/21 23:54:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:54:23.87879672Z"} +2026/03/21 23:54:28 [transform_engine] {"stage_name":"transform_engine","events_processed":697,"events_dropped":0,"avg_latency_ms":1718.378043120289,"throughput_eps":0,"last_update":"2026-03-21T23:54:23.966083007Z"} +2026/03/21 23:54:28 [detection_layer] {"stage_name":"detection_layer","events_processed":696,"events_dropped":0,"avg_latency_ms":20.754147267293817,"throughput_eps":0,"last_update":"2026-03-21T23:54:23.966107424Z"} +2026/03/21 23:54:28 ───────────────────────────────────────────────── +Saved state: 27 clusters, 33299 messages, reason: none +2026/03/21 23:54:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:54:33 [metric_collector] {"stage_name":"metric_collector","events_processed":20919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4183.8,"last_update":"2026-03-21T23:54:28.869829886Z"} +2026/03/21 23:54:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:54:28.878848212Z"} +2026/03/21 23:54:33 [transform_engine] {"stage_name":"transform_engine","events_processed":697,"events_dropped":0,"avg_latency_ms":1718.378043120289,"throughput_eps":0,"last_update":"2026-03-21T23:54:28.966204663Z"} +2026/03/21 23:54:33 [detection_layer] {"stage_name":"detection_layer","events_processed":696,"events_dropped":0,"avg_latency_ms":20.754147267293817,"throughput_eps":0,"last_update":"2026-03-21T23:54:28.96615084Z"} +2026/03/21 23:54:33 [log_collector] {"stage_name":"log_collector","events_processed":33298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6659.6,"last_update":"2026-03-21T23:54:28.869603483Z"} +2026/03/21 23:54:33 ───────────────────────────────────────────────── +2026/03/21 23:54:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:54:38 [log_collector] {"stage_name":"log_collector","events_processed":33311,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6662.2,"last_update":"2026-03-21T23:54:33.869617085Z"} +2026/03/21 23:54:38 [metric_collector] {"stage_name":"metric_collector","events_processed":20924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4184.8,"last_update":"2026-03-21T23:54:33.870029275Z"} +2026/03/21 23:54:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:54:33.875751046Z"} +2026/03/21 23:54:38 [transform_engine] {"stage_name":"transform_engine","events_processed":697,"events_dropped":0,"avg_latency_ms":1718.378043120289,"throughput_eps":0,"last_update":"2026-03-21T23:54:33.965961784Z"} +2026/03/21 23:54:38 [detection_layer] {"stage_name":"detection_layer","events_processed":696,"events_dropped":0,"avg_latency_ms":20.754147267293817,"throughput_eps":0,"last_update":"2026-03-21T23:54:33.965984738Z"} +2026/03/21 23:54:38 ───────────────────────────────────────────────── +2026/03/21 23:54:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:54:43 [log_collector] {"stage_name":"log_collector","events_processed":33312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6662.4,"last_update":"2026-03-21T23:54:38.869894921Z"} +2026/03/21 23:54:43 [metric_collector] {"stage_name":"metric_collector","events_processed":20929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4185.8,"last_update":"2026-03-21T23:54:38.870227247Z"} +2026/03/21 23:54:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:54:38.878939646Z"} +2026/03/21 23:54:43 [transform_engine] {"stage_name":"transform_engine","events_processed":697,"events_dropped":0,"avg_latency_ms":1718.378043120289,"throughput_eps":0,"last_update":"2026-03-21T23:54:38.965055481Z"} +2026/03/21 23:54:43 [detection_layer] {"stage_name":"detection_layer","events_processed":696,"events_dropped":0,"avg_latency_ms":20.754147267293817,"throughput_eps":0,"last_update":"2026-03-21T23:54:38.966205905Z"} +2026/03/21 23:54:43 ───────────────────────────────────────────────── +2026/03/21 23:54:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:54:48 [transform_engine] {"stage_name":"transform_engine","events_processed":697,"events_dropped":0,"avg_latency_ms":1718.378043120289,"throughput_eps":0,"last_update":"2026-03-21T23:54:43.965388709Z"} +2026/03/21 23:54:48 [detection_layer] {"stage_name":"detection_layer","events_processed":696,"events_dropped":0,"avg_latency_ms":20.754147267293817,"throughput_eps":0,"last_update":"2026-03-21T23:54:43.965425059Z"} +2026/03/21 23:54:48 [log_collector] {"stage_name":"log_collector","events_processed":33312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6662.4,"last_update":"2026-03-21T23:54:43.869429579Z"} +2026/03/21 23:54:48 [metric_collector] {"stage_name":"metric_collector","events_processed":20934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4186.8,"last_update":"2026-03-21T23:54:43.869897335Z"} +2026/03/21 23:54:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:54:43.879191258Z"} +2026/03/21 23:54:48 ───────────────────────────────────────────────── +2026/03/21 23:54:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:54:53 [transform_engine] {"stage_name":"transform_engine","events_processed":698,"events_dropped":0,"avg_latency_ms":1400.5978580962312,"throughput_eps":0,"last_update":"2026-03-21T23:54:49.095214711Z"} +2026/03/21 23:54:53 [detection_layer] {"stage_name":"detection_layer","events_processed":696,"events_dropped":0,"avg_latency_ms":20.754147267293817,"throughput_eps":0,"last_update":"2026-03-21T23:54:48.965776728Z"} +2026/03/21 23:54:53 [log_collector] {"stage_name":"log_collector","events_processed":33312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6662.4,"last_update":"2026-03-21T23:54:48.869424224Z"} +2026/03/21 23:54:53 [metric_collector] {"stage_name":"metric_collector","events_processed":20939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4187.8,"last_update":"2026-03-21T23:54:48.869763945Z"} +2026/03/21 23:54:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:54:48.87853162Z"} +2026/03/21 23:54:53 ───────────────────────────────────────────────── +2026/03/21 23:54:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:54:58 [metric_collector] {"stage_name":"metric_collector","events_processed":20944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4188.8,"last_update":"2026-03-21T23:54:53.870229257Z"} +2026/03/21 23:54:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8380,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:54:53.879360289Z"} +2026/03/21 23:54:58 [transform_engine] {"stage_name":"transform_engine","events_processed":698,"events_dropped":0,"avg_latency_ms":1400.5978580962312,"throughput_eps":0,"last_update":"2026-03-21T23:54:53.965691717Z"} +2026/03/21 23:54:58 [detection_layer] {"stage_name":"detection_layer","events_processed":697,"events_dropped":0,"avg_latency_ms":20.897916613835054,"throughput_eps":0,"last_update":"2026-03-21T23:54:53.965680266Z"} +2026/03/21 23:54:58 [log_collector] {"stage_name":"log_collector","events_processed":33312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6662.4,"last_update":"2026-03-21T23:54:53.869790197Z"} +2026/03/21 23:54:58 ───────────────────────────────────────────────── +2026/03/21 23:55:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:55:03 [metric_collector] {"stage_name":"metric_collector","events_processed":20949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4189.8,"last_update":"2026-03-21T23:54:58.870718023Z"} +2026/03/21 23:55:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:54:58.879423088Z"} +2026/03/21 23:55:03 [transform_engine] {"stage_name":"transform_engine","events_processed":698,"events_dropped":0,"avg_latency_ms":1400.5978580962312,"throughput_eps":0,"last_update":"2026-03-21T23:54:58.965691414Z"} +2026/03/21 23:55:03 [detection_layer] {"stage_name":"detection_layer","events_processed":697,"events_dropped":0,"avg_latency_ms":20.897916613835054,"throughput_eps":0,"last_update":"2026-03-21T23:54:58.965702406Z"} +2026/03/21 23:55:03 [log_collector] {"stage_name":"log_collector","events_processed":33312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6662.4,"last_update":"2026-03-21T23:54:58.870033722Z"} +2026/03/21 23:55:03 ───────────────────────────────────────────────── +2026/03/21 23:55:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:55:08 [log_collector] {"stage_name":"log_collector","events_processed":33312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6662.4,"last_update":"2026-03-21T23:55:03.869771743Z"} +2026/03/21 23:55:08 [metric_collector] {"stage_name":"metric_collector","events_processed":20954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4190.8,"last_update":"2026-03-21T23:55:03.870023826Z"} +2026/03/21 23:55:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:55:03.878366948Z"} +2026/03/21 23:55:08 [transform_engine] {"stage_name":"transform_engine","events_processed":698,"events_dropped":0,"avg_latency_ms":1400.5978580962312,"throughput_eps":0,"last_update":"2026-03-21T23:55:03.965683032Z"} +2026/03/21 23:55:08 [detection_layer] {"stage_name":"detection_layer","events_processed":697,"events_dropped":0,"avg_latency_ms":20.897916613835054,"throughput_eps":0,"last_update":"2026-03-21T23:55:03.965667812Z"} +2026/03/21 23:55:08 ───────────────────────────────────────────────── +2026/03/21 23:55:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:55:13 [transform_engine] {"stage_name":"transform_engine","events_processed":698,"events_dropped":0,"avg_latency_ms":1400.5978580962312,"throughput_eps":0,"last_update":"2026-03-21T23:55:08.965687519Z"} +2026/03/21 23:55:13 [detection_layer] {"stage_name":"detection_layer","events_processed":697,"events_dropped":0,"avg_latency_ms":20.897916613835054,"throughput_eps":0,"last_update":"2026-03-21T23:55:08.965800396Z"} +2026/03/21 23:55:13 [log_collector] {"stage_name":"log_collector","events_processed":33312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6662.4,"last_update":"2026-03-21T23:55:08.869664817Z"} +2026/03/21 23:55:13 [metric_collector] {"stage_name":"metric_collector","events_processed":20959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4191.8,"last_update":"2026-03-21T23:55:08.869814814Z"} +2026/03/21 23:55:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:55:08.87936594Z"} +2026/03/21 23:55:13 ───────────────────────────────────────────────── +2026/03/21 23:55:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:55:18 [log_collector] {"stage_name":"log_collector","events_processed":33312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6662.4,"last_update":"2026-03-21T23:55:13.869429182Z"} +2026/03/21 23:55:18 [metric_collector] {"stage_name":"metric_collector","events_processed":20964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4192.8,"last_update":"2026-03-21T23:55:13.86996092Z"} +2026/03/21 23:55:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8388,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:55:13.878601462Z"} +2026/03/21 23:55:18 [transform_engine] {"stage_name":"transform_engine","events_processed":698,"events_dropped":0,"avg_latency_ms":1400.5978580962312,"throughput_eps":0,"last_update":"2026-03-21T23:55:13.965556684Z"} +2026/03/21 23:55:18 [detection_layer] {"stage_name":"detection_layer","events_processed":697,"events_dropped":0,"avg_latency_ms":20.897916613835054,"throughput_eps":0,"last_update":"2026-03-21T23:55:13.965301726Z"} +2026/03/21 23:55:18 ───────────────────────────────────────────────── +2026/03/21 23:55:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:55:23 [detection_layer] {"stage_name":"detection_layer","events_processed":697,"events_dropped":0,"avg_latency_ms":20.897916613835054,"throughput_eps":0,"last_update":"2026-03-21T23:55:18.966322744Z"} +2026/03/21 23:55:23 [log_collector] {"stage_name":"log_collector","events_processed":33312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6662.4,"last_update":"2026-03-21T23:55:18.869918331Z"} +2026/03/21 23:55:23 [metric_collector] {"stage_name":"metric_collector","events_processed":20969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4193.8,"last_update":"2026-03-21T23:55:18.870319249Z"} +2026/03/21 23:55:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8390,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:55:18.879008303Z"} +2026/03/21 23:55:23 [transform_engine] {"stage_name":"transform_engine","events_processed":699,"events_dropped":0,"avg_latency_ms":1135.458554676985,"throughput_eps":0,"last_update":"2026-03-21T23:55:19.040102627Z"} +2026/03/21 23:55:23 ───────────────────────────────────────────────── +2026/03/21 23:55:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:55:28 [log_collector] {"stage_name":"log_collector","events_processed":33312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6662.4,"last_update":"2026-03-21T23:55:23.870337914Z"} +2026/03/21 23:55:28 [metric_collector] {"stage_name":"metric_collector","events_processed":20974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4194.8,"last_update":"2026-03-21T23:55:23.870673646Z"} +2026/03/21 23:55:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:55:23.879535161Z"} +2026/03/21 23:55:28 [transform_engine] {"stage_name":"transform_engine","events_processed":699,"events_dropped":0,"avg_latency_ms":1135.458554676985,"throughput_eps":0,"last_update":"2026-03-21T23:55:23.965723133Z"} +2026/03/21 23:55:28 [detection_layer] {"stage_name":"detection_layer","events_processed":698,"events_dropped":0,"avg_latency_ms":21.735965091068046,"throughput_eps":0,"last_update":"2026-03-21T23:55:23.965747099Z"} +2026/03/21 23:55:28 ───────────────────────────────────────────────── +2026/03/21 23:55:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:55:33 [log_collector] {"stage_name":"log_collector","events_processed":33312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6662.4,"last_update":"2026-03-21T23:55:28.869853459Z"} +2026/03/21 23:55:33 [metric_collector] {"stage_name":"metric_collector","events_processed":20979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4195.8,"last_update":"2026-03-21T23:55:28.870284154Z"} +2026/03/21 23:55:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:55:28.878507467Z"} +2026/03/21 23:55:33 [transform_engine] {"stage_name":"transform_engine","events_processed":699,"events_dropped":0,"avg_latency_ms":1135.458554676985,"throughput_eps":0,"last_update":"2026-03-21T23:55:28.965776269Z"} +2026/03/21 23:55:33 [detection_layer] {"stage_name":"detection_layer","events_processed":698,"events_dropped":0,"avg_latency_ms":21.735965091068046,"throughput_eps":0,"last_update":"2026-03-21T23:55:28.96581366Z"} +2026/03/21 23:55:33 ───────────────────────────────────────────────── +2026/03/21 23:55:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:55:38 [detection_layer] {"stage_name":"detection_layer","events_processed":698,"events_dropped":0,"avg_latency_ms":21.735965091068046,"throughput_eps":0,"last_update":"2026-03-21T23:55:33.965366696Z"} +2026/03/21 23:55:38 [log_collector] {"stage_name":"log_collector","events_processed":33312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6662.4,"last_update":"2026-03-21T23:55:33.86996804Z"} +2026/03/21 23:55:38 [metric_collector] {"stage_name":"metric_collector","events_processed":20984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4196.8,"last_update":"2026-03-21T23:55:33.870469851Z"} +2026/03/21 23:55:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:55:33.879179225Z"} +2026/03/21 23:55:38 [transform_engine] {"stage_name":"transform_engine","events_processed":699,"events_dropped":0,"avg_latency_ms":1135.458554676985,"throughput_eps":0,"last_update":"2026-03-21T23:55:33.965403326Z"} +2026/03/21 23:55:38 ───────────────────────────────────────────────── +Saved state: 27 clusters, 33313 messages, reason: none +2026/03/21 23:55:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:55:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:55:38.878413744Z"} +2026/03/21 23:55:43 [transform_engine] {"stage_name":"transform_engine","events_processed":699,"events_dropped":0,"avg_latency_ms":1135.458554676985,"throughput_eps":0,"last_update":"2026-03-21T23:55:38.965639294Z"} +2026/03/21 23:55:43 [detection_layer] {"stage_name":"detection_layer","events_processed":698,"events_dropped":0,"avg_latency_ms":21.735965091068046,"throughput_eps":0,"last_update":"2026-03-21T23:55:38.965619036Z"} +2026/03/21 23:55:43 [log_collector] {"stage_name":"log_collector","events_processed":33312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6662.4,"last_update":"2026-03-21T23:55:38.869853828Z"} +2026/03/21 23:55:43 [metric_collector] {"stage_name":"metric_collector","events_processed":20989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.8,"last_update":"2026-03-21T23:55:38.870329599Z"} +2026/03/21 23:55:43 ───────────────────────────────────────────────── +2026/03/21 23:55:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:55:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8400,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:55:43.880481339Z"} +2026/03/21 23:55:48 [transform_engine] {"stage_name":"transform_engine","events_processed":699,"events_dropped":0,"avg_latency_ms":1135.458554676985,"throughput_eps":0,"last_update":"2026-03-21T23:55:43.965389549Z"} +2026/03/21 23:55:48 [detection_layer] {"stage_name":"detection_layer","events_processed":698,"events_dropped":0,"avg_latency_ms":21.735965091068046,"throughput_eps":0,"last_update":"2026-03-21T23:55:43.965360283Z"} +2026/03/21 23:55:48 [log_collector] {"stage_name":"log_collector","events_processed":33317,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6663.4,"last_update":"2026-03-21T23:55:43.869408628Z"} +2026/03/21 23:55:48 [metric_collector] {"stage_name":"metric_collector","events_processed":20994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4198.8,"last_update":"2026-03-21T23:55:43.869640902Z"} +2026/03/21 23:55:48 ───────────────────────────────────────────────── +2026/03/21 23:55:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:55:53 [detection_layer] {"stage_name":"detection_layer","events_processed":698,"events_dropped":0,"avg_latency_ms":21.735965091068046,"throughput_eps":0,"last_update":"2026-03-21T23:55:48.96532232Z"} +2026/03/21 23:55:53 [log_collector] {"stage_name":"log_collector","events_processed":33317,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6663.4,"last_update":"2026-03-21T23:55:48.870089612Z"} +2026/03/21 23:55:53 [metric_collector] {"stage_name":"metric_collector","events_processed":20999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4199.8,"last_update":"2026-03-21T23:55:48.870042371Z"} +2026/03/21 23:55:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8402,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:55:48.876124402Z"} +2026/03/21 23:55:53 [transform_engine] {"stage_name":"transform_engine","events_processed":700,"events_dropped":0,"avg_latency_ms":942.1129537415881,"throughput_eps":0,"last_update":"2026-03-21T23:55:49.134126201Z"} +2026/03/21 23:55:53 ───────────────────────────────────────────────── +2026/03/21 23:55:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:55:58 [metric_collector] {"stage_name":"metric_collector","events_processed":21004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4200.8,"last_update":"2026-03-21T23:55:53.869985849Z"} +2026/03/21 23:55:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:55:53.876094992Z"} +2026/03/21 23:55:58 [transform_engine] {"stage_name":"transform_engine","events_processed":700,"events_dropped":0,"avg_latency_ms":942.1129537415881,"throughput_eps":0,"last_update":"2026-03-21T23:55:53.965317337Z"} +2026/03/21 23:55:58 [detection_layer] {"stage_name":"detection_layer","events_processed":699,"events_dropped":0,"avg_latency_ms":19.674290272854435,"throughput_eps":0,"last_update":"2026-03-21T23:55:53.965291277Z"} +2026/03/21 23:55:58 [log_collector] {"stage_name":"log_collector","events_processed":33317,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6663.4,"last_update":"2026-03-21T23:55:53.869491713Z"} +2026/03/21 23:55:58 ───────────────────────────────────────────────── +2026/03/21 23:56:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:56:03 [metric_collector] {"stage_name":"metric_collector","events_processed":21009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4201.8,"last_update":"2026-03-21T23:55:58.870289134Z"} +2026/03/21 23:56:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:55:58.881388396Z"} +2026/03/21 23:56:03 [transform_engine] {"stage_name":"transform_engine","events_processed":700,"events_dropped":0,"avg_latency_ms":942.1129537415881,"throughput_eps":0,"last_update":"2026-03-21T23:55:58.965497365Z"} +2026/03/21 23:56:03 [detection_layer] {"stage_name":"detection_layer","events_processed":699,"events_dropped":0,"avg_latency_ms":19.674290272854435,"throughput_eps":0,"last_update":"2026-03-21T23:55:58.965487246Z"} +2026/03/21 23:56:03 [log_collector] {"stage_name":"log_collector","events_processed":33317,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6663.4,"last_update":"2026-03-21T23:55:58.869747636Z"} +2026/03/21 23:56:03 ───────────────────────────────────────────────── +2026/03/21 23:56:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:56:08 [log_collector] {"stage_name":"log_collector","events_processed":33317,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6663.4,"last_update":"2026-03-21T23:56:03.869414327Z"} +2026/03/21 23:56:08 [metric_collector] {"stage_name":"metric_collector","events_processed":21014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202.8,"last_update":"2026-03-21T23:56:03.869874139Z"} +2026/03/21 23:56:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8408,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:56:03.876833881Z"} +2026/03/21 23:56:08 [transform_engine] {"stage_name":"transform_engine","events_processed":700,"events_dropped":0,"avg_latency_ms":942.1129537415881,"throughput_eps":0,"last_update":"2026-03-21T23:56:03.966003263Z"} +2026/03/21 23:56:08 [detection_layer] {"stage_name":"detection_layer","events_processed":699,"events_dropped":0,"avg_latency_ms":19.674290272854435,"throughput_eps":0,"last_update":"2026-03-21T23:56:03.965988284Z"} +2026/03/21 23:56:08 ───────────────────────────────────────────────── +2026/03/21 23:56:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:56:13 [log_collector] {"stage_name":"log_collector","events_processed":33317,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6663.4,"last_update":"2026-03-21T23:56:08.869919291Z"} +2026/03/21 23:56:13 [metric_collector] {"stage_name":"metric_collector","events_processed":21019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4203.8,"last_update":"2026-03-21T23:56:08.870169701Z"} +2026/03/21 23:56:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:56:08.877322803Z"} +2026/03/21 23:56:13 [transform_engine] {"stage_name":"transform_engine","events_processed":700,"events_dropped":0,"avg_latency_ms":942.1129537415881,"throughput_eps":0,"last_update":"2026-03-21T23:56:08.965511367Z"} +2026/03/21 23:56:13 [detection_layer] {"stage_name":"detection_layer","events_processed":699,"events_dropped":0,"avg_latency_ms":19.674290272854435,"throughput_eps":0,"last_update":"2026-03-21T23:56:08.965500787Z"} +2026/03/21 23:56:13 ───────────────────────────────────────────────── +2026/03/21 23:56:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:56:18 [log_collector] {"stage_name":"log_collector","events_processed":33317,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6663.4,"last_update":"2026-03-21T23:56:13.869896529Z"} +2026/03/21 23:56:18 [metric_collector] {"stage_name":"metric_collector","events_processed":21024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4204.8,"last_update":"2026-03-21T23:56:13.870375196Z"} +2026/03/21 23:56:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:56:13.877117682Z"} +2026/03/21 23:56:18 [transform_engine] {"stage_name":"transform_engine","events_processed":700,"events_dropped":0,"avg_latency_ms":942.1129537415881,"throughput_eps":0,"last_update":"2026-03-21T23:56:13.965326365Z"} +2026/03/21 23:56:18 [detection_layer] {"stage_name":"detection_layer","events_processed":699,"events_dropped":0,"avg_latency_ms":19.674290272854435,"throughput_eps":0,"last_update":"2026-03-21T23:56:13.965314161Z"} +2026/03/21 23:56:18 ───────────────────────────────────────────────── +2026/03/21 23:56:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:56:23 [log_collector] {"stage_name":"log_collector","events_processed":33317,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6663.4,"last_update":"2026-03-21T23:56:18.869426207Z"} +2026/03/21 23:56:23 [metric_collector] {"stage_name":"metric_collector","events_processed":21029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4205.8,"last_update":"2026-03-21T23:56:18.869861462Z"} +2026/03/21 23:56:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:56:18.875772034Z"} +2026/03/21 23:56:23 [transform_engine] {"stage_name":"transform_engine","events_processed":701,"events_dropped":0,"avg_latency_ms":1210.6991257932705,"throughput_eps":0,"last_update":"2026-03-21T23:56:21.251039711Z"} +2026/03/21 23:56:23 [detection_layer] {"stage_name":"detection_layer","events_processed":699,"events_dropped":0,"avg_latency_ms":19.674290272854435,"throughput_eps":0,"last_update":"2026-03-21T23:56:18.965979775Z"} +2026/03/21 23:56:23 ───────────────────────────────────────────────── +2026/03/21 23:56:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:56:28 [log_collector] {"stage_name":"log_collector","events_processed":33328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6665.6,"last_update":"2026-03-21T23:56:28.869622301Z"} +2026/03/21 23:56:28 [metric_collector] {"stage_name":"metric_collector","events_processed":21034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4206.8,"last_update":"2026-03-21T23:56:23.870834251Z"} +2026/03/21 23:56:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:56:23.877652172Z"} +2026/03/21 23:56:28 [transform_engine] {"stage_name":"transform_engine","events_processed":701,"events_dropped":0,"avg_latency_ms":1210.6991257932705,"throughput_eps":0,"last_update":"2026-03-21T23:56:23.965878307Z"} +2026/03/21 23:56:28 [detection_layer] {"stage_name":"detection_layer","events_processed":700,"events_dropped":0,"avg_latency_ms":18.72735781828355,"throughput_eps":0,"last_update":"2026-03-21T23:56:23.965864261Z"} +2026/03/21 23:56:28 ───────────────────────────────────────────────── +2026/03/21 23:56:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:56:33 [metric_collector] {"stage_name":"metric_collector","events_processed":21039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4207.8,"last_update":"2026-03-21T23:56:28.870038519Z"} +2026/03/21 23:56:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:56:28.878192778Z"} +2026/03/21 23:56:33 [transform_engine] {"stage_name":"transform_engine","events_processed":701,"events_dropped":0,"avg_latency_ms":1210.6991257932705,"throughput_eps":0,"last_update":"2026-03-21T23:56:28.965416985Z"} +2026/03/21 23:56:33 [detection_layer] {"stage_name":"detection_layer","events_processed":700,"events_dropped":0,"avg_latency_ms":18.72735781828355,"throughput_eps":0,"last_update":"2026-03-21T23:56:28.965409361Z"} +2026/03/21 23:56:33 [log_collector] {"stage_name":"log_collector","events_processed":33328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6665.6,"last_update":"2026-03-21T23:56:28.869622301Z"} +2026/03/21 23:56:33 ───────────────────────────────────────────────── +2026/03/21 23:56:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:56:38 [log_collector] {"stage_name":"log_collector","events_processed":33443,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6688.6,"last_update":"2026-03-21T23:56:33.870429427Z"} +2026/03/21 23:56:38 [metric_collector] {"stage_name":"metric_collector","events_processed":21044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4208.8,"last_update":"2026-03-21T23:56:33.870731836Z"} +2026/03/21 23:56:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8420,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:56:33.880377112Z"} +2026/03/21 23:56:38 [transform_engine] {"stage_name":"transform_engine","events_processed":701,"events_dropped":0,"avg_latency_ms":1210.6991257932705,"throughput_eps":0,"last_update":"2026-03-21T23:56:33.965500304Z"} +2026/03/21 23:56:38 [detection_layer] {"stage_name":"detection_layer","events_processed":700,"events_dropped":0,"avg_latency_ms":18.72735781828355,"throughput_eps":0,"last_update":"2026-03-21T23:56:33.965486297Z"} +2026/03/21 23:56:38 ───────────────────────────────────────────────── +2026/03/21 23:56:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:56:43 [detection_layer] {"stage_name":"detection_layer","events_processed":700,"events_dropped":0,"avg_latency_ms":18.72735781828355,"throughput_eps":0,"last_update":"2026-03-21T23:56:38.965398505Z"} +2026/03/21 23:56:43 [log_collector] {"stage_name":"log_collector","events_processed":33676,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6735.2,"last_update":"2026-03-21T23:56:38.869410271Z"} +2026/03/21 23:56:43 [metric_collector] {"stage_name":"metric_collector","events_processed":21049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4209.8,"last_update":"2026-03-21T23:56:38.869913575Z"} +2026/03/21 23:56:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:56:38.879184453Z"} +2026/03/21 23:56:43 [transform_engine] {"stage_name":"transform_engine","events_processed":701,"events_dropped":0,"avg_latency_ms":1210.6991257932705,"throughput_eps":0,"last_update":"2026-03-21T23:56:38.965575314Z"} +2026/03/21 23:56:43 ───────────────────────────────────────────────── +2026/03/21 23:56:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:56:48 [log_collector] {"stage_name":"log_collector","events_processed":33676,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6735.2,"last_update":"2026-03-21T23:56:48.869441001Z"} +2026/03/21 23:56:48 [metric_collector] {"stage_name":"metric_collector","events_processed":21054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4210.8,"last_update":"2026-03-21T23:56:43.869783609Z"} +2026/03/21 23:56:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:56:43.878404232Z"} +2026/03/21 23:56:48 [transform_engine] {"stage_name":"transform_engine","events_processed":701,"events_dropped":0,"avg_latency_ms":1210.6991257932705,"throughput_eps":0,"last_update":"2026-03-21T23:56:43.965590365Z"} +2026/03/21 23:56:48 [detection_layer] {"stage_name":"detection_layer","events_processed":700,"events_dropped":0,"avg_latency_ms":18.72735781828355,"throughput_eps":0,"last_update":"2026-03-21T23:56:43.965622807Z"} +2026/03/21 23:56:48 ───────────────────────────────────────────────── +2026/03/21 23:56:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:56:53 [transform_engine] {"stage_name":"transform_engine","events_processed":702,"events_dropped":0,"avg_latency_ms":993.7151392346165,"throughput_eps":0,"last_update":"2026-03-21T23:56:49.091474137Z"} +2026/03/21 23:56:53 [detection_layer] {"stage_name":"detection_layer","events_processed":700,"events_dropped":0,"avg_latency_ms":18.72735781828355,"throughput_eps":0,"last_update":"2026-03-21T23:56:48.965669435Z"} +2026/03/21 23:56:53 [log_collector] {"stage_name":"log_collector","events_processed":33676,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6735.2,"last_update":"2026-03-21T23:56:53.869741092Z"} +2026/03/21 23:56:53 [metric_collector] {"stage_name":"metric_collector","events_processed":21059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4211.8,"last_update":"2026-03-21T23:56:48.869792304Z"} +2026/03/21 23:56:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:56:48.878473765Z"} +2026/03/21 23:56:53 ───────────────────────────────────────────────── +Saved state: 27 clusters, 33677 messages, reason: none +2026/03/21 23:56:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:56:58 [log_collector] {"stage_name":"log_collector","events_processed":33676,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6735.2,"last_update":"2026-03-21T23:56:53.869741092Z"} +2026/03/21 23:56:58 [metric_collector] {"stage_name":"metric_collector","events_processed":21064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4212.8,"last_update":"2026-03-21T23:56:53.870073559Z"} +2026/03/21 23:56:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:56:53.878885419Z"} +2026/03/21 23:56:58 [transform_engine] {"stage_name":"transform_engine","events_processed":702,"events_dropped":0,"avg_latency_ms":993.7151392346165,"throughput_eps":0,"last_update":"2026-03-21T23:56:53.965067058Z"} +2026/03/21 23:56:58 [detection_layer] {"stage_name":"detection_layer","events_processed":701,"events_dropped":0,"avg_latency_ms":19.138260254626843,"throughput_eps":0,"last_update":"2026-03-21T23:56:53.966228373Z"} +2026/03/21 23:56:58 ───────────────────────────────────────────────── +2026/03/21 23:57:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:57:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:56:58.876595466Z"} +2026/03/21 23:57:03 [transform_engine] {"stage_name":"transform_engine","events_processed":702,"events_dropped":0,"avg_latency_ms":993.7151392346165,"throughput_eps":0,"last_update":"2026-03-21T23:56:58.965668062Z"} +2026/03/21 23:57:03 [detection_layer] {"stage_name":"detection_layer","events_processed":701,"events_dropped":0,"avg_latency_ms":19.138260254626843,"throughput_eps":0,"last_update":"2026-03-21T23:56:58.965657071Z"} +2026/03/21 23:57:03 [log_collector] {"stage_name":"log_collector","events_processed":33679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6735.8,"last_update":"2026-03-21T23:56:58.869624202Z"} +2026/03/21 23:57:03 [metric_collector] {"stage_name":"metric_collector","events_processed":21069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4213.8,"last_update":"2026-03-21T23:56:58.869804998Z"} +2026/03/21 23:57:03 ───────────────────────────────────────────────── +2026/03/21 23:57:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:57:08 [detection_layer] {"stage_name":"detection_layer","events_processed":701,"events_dropped":0,"avg_latency_ms":19.138260254626843,"throughput_eps":0,"last_update":"2026-03-21T23:57:03.966224158Z"} +2026/03/21 23:57:08 [log_collector] {"stage_name":"log_collector","events_processed":33679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6735.8,"last_update":"2026-03-21T23:57:03.869443295Z"} +2026/03/21 23:57:08 [metric_collector] {"stage_name":"metric_collector","events_processed":21073,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4214.6,"last_update":"2026-03-21T23:57:03.869413859Z"} +2026/03/21 23:57:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:57:03.877910725Z"} +2026/03/21 23:57:08 [transform_engine] {"stage_name":"transform_engine","events_processed":702,"events_dropped":0,"avg_latency_ms":993.7151392346165,"throughput_eps":0,"last_update":"2026-03-21T23:57:03.965122868Z"} +2026/03/21 23:57:08 ───────────────────────────────────────────────── +2026/03/21 23:57:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:57:13 [metric_collector] {"stage_name":"metric_collector","events_processed":21079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4215.8,"last_update":"2026-03-21T23:57:08.870332716Z"} +2026/03/21 23:57:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:57:08.879085031Z"} +2026/03/21 23:57:13 [transform_engine] {"stage_name":"transform_engine","events_processed":702,"events_dropped":0,"avg_latency_ms":993.7151392346165,"throughput_eps":0,"last_update":"2026-03-21T23:57:08.965253615Z"} +2026/03/21 23:57:13 [detection_layer] {"stage_name":"detection_layer","events_processed":701,"events_dropped":0,"avg_latency_ms":19.138260254626843,"throughput_eps":0,"last_update":"2026-03-21T23:57:08.96526149Z"} +2026/03/21 23:57:13 [log_collector] {"stage_name":"log_collector","events_processed":33706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6741.2,"last_update":"2026-03-21T23:57:13.869989222Z"} +2026/03/21 23:57:13 ───────────────────────────────────────────────── +2026/03/21 23:57:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:57:18 [log_collector] {"stage_name":"log_collector","events_processed":33706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6741.2,"last_update":"2026-03-21T23:57:13.869989222Z"} +2026/03/21 23:57:18 [metric_collector] {"stage_name":"metric_collector","events_processed":21084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4216.8,"last_update":"2026-03-21T23:57:13.87021285Z"} +2026/03/21 23:57:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:57:13.878248724Z"} +2026/03/21 23:57:18 [transform_engine] {"stage_name":"transform_engine","events_processed":702,"events_dropped":0,"avg_latency_ms":993.7151392346165,"throughput_eps":0,"last_update":"2026-03-21T23:57:13.965631874Z"} +2026/03/21 23:57:18 [detection_layer] {"stage_name":"detection_layer","events_processed":701,"events_dropped":0,"avg_latency_ms":19.138260254626843,"throughput_eps":0,"last_update":"2026-03-21T23:57:13.965621213Z"} +2026/03/21 23:57:18 ───────────────────────────────────────────────── +2026/03/21 23:57:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:57:23 [metric_collector] {"stage_name":"metric_collector","events_processed":21089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4217.8,"last_update":"2026-03-21T23:57:18.869876506Z"} +2026/03/21 23:57:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:57:18.878788469Z"} +2026/03/21 23:57:23 [transform_engine] {"stage_name":"transform_engine","events_processed":703,"events_dropped":0,"avg_latency_ms":818.6222051876932,"throughput_eps":0,"last_update":"2026-03-21T23:57:19.08440766Z"} +2026/03/21 23:57:23 [detection_layer] {"stage_name":"detection_layer","events_processed":701,"events_dropped":0,"avg_latency_ms":19.138260254626843,"throughput_eps":0,"last_update":"2026-03-21T23:57:18.966143475Z"} +2026/03/21 23:57:23 [log_collector] {"stage_name":"log_collector","events_processed":33706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6741.2,"last_update":"2026-03-21T23:57:18.869561273Z"} +2026/03/21 23:57:23 ───────────────────────────────────────────────── +2026/03/21 23:57:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:57:28 [transform_engine] {"stage_name":"transform_engine","events_processed":703,"events_dropped":0,"avg_latency_ms":818.6222051876932,"throughput_eps":0,"last_update":"2026-03-21T23:57:23.966131601Z"} +2026/03/21 23:57:28 [detection_layer] {"stage_name":"detection_layer","events_processed":702,"events_dropped":0,"avg_latency_ms":20.029154803701477,"throughput_eps":0,"last_update":"2026-03-21T23:57:23.966147771Z"} +2026/03/21 23:57:28 [log_collector] {"stage_name":"log_collector","events_processed":33706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6741.2,"last_update":"2026-03-21T23:57:23.869559066Z"} +2026/03/21 23:57:28 [metric_collector] {"stage_name":"metric_collector","events_processed":21094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4218.8,"last_update":"2026-03-21T23:57:23.869870553Z"} +2026/03/21 23:57:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:57:23.877876238Z"} +2026/03/21 23:57:28 ───────────────────────────────────────────────── +2026/03/21 23:57:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:57:33 [log_collector] {"stage_name":"log_collector","events_processed":33706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6741.2,"last_update":"2026-03-21T23:57:28.869635338Z"} +2026/03/21 23:57:33 [metric_collector] {"stage_name":"metric_collector","events_processed":21099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4219.8,"last_update":"2026-03-21T23:57:28.869755579Z"} +2026/03/21 23:57:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8442,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:57:28.878842125Z"} +2026/03/21 23:57:33 [transform_engine] {"stage_name":"transform_engine","events_processed":703,"events_dropped":0,"avg_latency_ms":818.6222051876932,"throughput_eps":0,"last_update":"2026-03-21T23:57:28.966052054Z"} +2026/03/21 23:57:33 [detection_layer] {"stage_name":"detection_layer","events_processed":702,"events_dropped":0,"avg_latency_ms":20.029154803701477,"throughput_eps":0,"last_update":"2026-03-21T23:57:28.966022887Z"} +2026/03/21 23:57:33 ───────────────────────────────────────────────── +2026/03/21 23:57:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:57:38 [log_collector] {"stage_name":"log_collector","events_processed":33706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6741.2,"last_update":"2026-03-21T23:57:33.86956757Z"} +2026/03/21 23:57:38 [metric_collector] {"stage_name":"metric_collector","events_processed":21104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4220.8,"last_update":"2026-03-21T23:57:33.869678703Z"} +2026/03/21 23:57:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:57:33.878982445Z"} +2026/03/21 23:57:38 [transform_engine] {"stage_name":"transform_engine","events_processed":703,"events_dropped":0,"avg_latency_ms":818.6222051876932,"throughput_eps":0,"last_update":"2026-03-21T23:57:33.965171077Z"} +2026/03/21 23:57:38 [detection_layer] {"stage_name":"detection_layer","events_processed":702,"events_dropped":0,"avg_latency_ms":20.029154803701477,"throughput_eps":0,"last_update":"2026-03-21T23:57:33.966369663Z"} +2026/03/21 23:57:38 ───────────────────────────────────────────────── +2026/03/21 23:57:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:57:43 [log_collector] {"stage_name":"log_collector","events_processed":33706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6741.2,"last_update":"2026-03-21T23:57:43.869715009Z"} +2026/03/21 23:57:43 [metric_collector] {"stage_name":"metric_collector","events_processed":21109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4221.8,"last_update":"2026-03-21T23:57:38.869840854Z"} +2026/03/21 23:57:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8446,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:57:38.877898468Z"} +2026/03/21 23:57:43 [transform_engine] {"stage_name":"transform_engine","events_processed":703,"events_dropped":0,"avg_latency_ms":818.6222051876932,"throughput_eps":0,"last_update":"2026-03-21T23:57:38.965081114Z"} +2026/03/21 23:57:43 [detection_layer] {"stage_name":"detection_layer","events_processed":702,"events_dropped":0,"avg_latency_ms":20.029154803701477,"throughput_eps":0,"last_update":"2026-03-21T23:57:38.966260985Z"} +2026/03/21 23:57:43 ───────────────────────────────────────────────── +2026/03/21 23:57:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:57:48 [metric_collector] {"stage_name":"metric_collector","events_processed":21114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4222.8,"last_update":"2026-03-21T23:57:43.870173969Z"} +2026/03/21 23:57:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:57:43.87827685Z"} +2026/03/21 23:57:48 [transform_engine] {"stage_name":"transform_engine","events_processed":703,"events_dropped":0,"avg_latency_ms":818.6222051876932,"throughput_eps":0,"last_update":"2026-03-21T23:57:43.965465617Z"} +2026/03/21 23:57:48 [detection_layer] {"stage_name":"detection_layer","events_processed":702,"events_dropped":0,"avg_latency_ms":20.029154803701477,"throughput_eps":0,"last_update":"2026-03-21T23:57:43.965579435Z"} +2026/03/21 23:57:48 [log_collector] {"stage_name":"log_collector","events_processed":33706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6741.2,"last_update":"2026-03-21T23:57:43.869715009Z"} +2026/03/21 23:57:48 ───────────────────────────────────────────────── +2026/03/21 23:57:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:57:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:57:48.878476275Z"} +2026/03/21 23:57:53 [transform_engine] {"stage_name":"transform_engine","events_processed":704,"events_dropped":0,"avg_latency_ms":669.7609379501547,"throughput_eps":0,"last_update":"2026-03-21T23:57:49.040153882Z"} +2026/03/21 23:57:53 [detection_layer] {"stage_name":"detection_layer","events_processed":702,"events_dropped":0,"avg_latency_ms":20.029154803701477,"throughput_eps":0,"last_update":"2026-03-21T23:57:48.965821543Z"} +2026/03/21 23:57:53 [log_collector] {"stage_name":"log_collector","events_processed":33706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6741.2,"last_update":"2026-03-21T23:57:53.869435938Z"} +2026/03/21 23:57:53 [metric_collector] {"stage_name":"metric_collector","events_processed":21119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4223.8,"last_update":"2026-03-21T23:57:48.870233715Z"} +2026/03/21 23:57:53 ───────────────────────────────────────────────── +2026/03/21 23:57:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:57:58 [log_collector] {"stage_name":"log_collector","events_processed":33706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6741.2,"last_update":"2026-03-21T23:57:58.869443362Z"} +2026/03/21 23:57:58 [metric_collector] {"stage_name":"metric_collector","events_processed":21124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4224.8,"last_update":"2026-03-21T23:57:53.869861503Z"} +2026/03/21 23:57:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8452,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:57:53.878092701Z"} +2026/03/21 23:57:58 [transform_engine] {"stage_name":"transform_engine","events_processed":704,"events_dropped":0,"avg_latency_ms":669.7609379501547,"throughput_eps":0,"last_update":"2026-03-21T23:57:53.965373585Z"} +2026/03/21 23:57:58 [detection_layer] {"stage_name":"detection_layer","events_processed":703,"events_dropped":0,"avg_latency_ms":20.898236242961183,"throughput_eps":0,"last_update":"2026-03-21T23:57:53.965368204Z"} +2026/03/21 23:57:58 ───────────────────────────────────────────────── +2026/03/21 23:58:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:58:03 [detection_layer] {"stage_name":"detection_layer","events_processed":703,"events_dropped":0,"avg_latency_ms":20.898236242961183,"throughput_eps":0,"last_update":"2026-03-21T23:57:58.966140845Z"} +2026/03/21 23:58:03 [log_collector] {"stage_name":"log_collector","events_processed":33706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6741.2,"last_update":"2026-03-21T23:57:58.869443362Z"} +2026/03/21 23:58:03 [metric_collector] {"stage_name":"metric_collector","events_processed":21129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4225.8,"last_update":"2026-03-21T23:57:58.870136991Z"} +2026/03/21 23:58:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:57:58.87884451Z"} +2026/03/21 23:58:03 [transform_engine] {"stage_name":"transform_engine","events_processed":704,"events_dropped":0,"avg_latency_ms":669.7609379501547,"throughput_eps":0,"last_update":"2026-03-21T23:57:58.966153789Z"} +2026/03/21 23:58:03 ───────────────────────────────────────────────── +2026/03/21 23:58:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:58:08 [log_collector] {"stage_name":"log_collector","events_processed":33706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6741.2,"last_update":"2026-03-21T23:58:03.869976539Z"} +2026/03/21 23:58:08 [metric_collector] {"stage_name":"metric_collector","events_processed":21134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4226.8,"last_update":"2026-03-21T23:58:03.870487818Z"} +2026/03/21 23:58:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:58:03.879215607Z"} +2026/03/21 23:58:08 [transform_engine] {"stage_name":"transform_engine","events_processed":704,"events_dropped":0,"avg_latency_ms":669.7609379501547,"throughput_eps":0,"last_update":"2026-03-21T23:58:03.965416431Z"} +2026/03/21 23:58:08 [detection_layer] {"stage_name":"detection_layer","events_processed":703,"events_dropped":0,"avg_latency_ms":20.898236242961183,"throughput_eps":0,"last_update":"2026-03-21T23:58:03.965398538Z"} +2026/03/21 23:58:08 ───────────────────────────────────────────────── +2026/03/21 23:58:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:58:13 [log_collector] {"stage_name":"log_collector","events_processed":33706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6741.2,"last_update":"2026-03-21T23:58:08.86953204Z"} +2026/03/21 23:58:13 [metric_collector] {"stage_name":"metric_collector","events_processed":21139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4227.8,"last_update":"2026-03-21T23:58:08.869873313Z"} +2026/03/21 23:58:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:58:08.879224727Z"} +2026/03/21 23:58:13 [transform_engine] {"stage_name":"transform_engine","events_processed":704,"events_dropped":0,"avg_latency_ms":669.7609379501547,"throughput_eps":0,"last_update":"2026-03-21T23:58:08.965492199Z"} +2026/03/21 23:58:13 [detection_layer] {"stage_name":"detection_layer","events_processed":703,"events_dropped":0,"avg_latency_ms":20.898236242961183,"throughput_eps":0,"last_update":"2026-03-21T23:58:08.965483333Z"} +2026/03/21 23:58:13 ───────────────────────────────────────────────── +Saved state: 27 clusters, 33707 messages, reason: none +2026/03/21 23:58:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:58:18 [log_collector] {"stage_name":"log_collector","events_processed":33706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6741.2,"last_update":"2026-03-21T23:58:13.869441826Z"} +2026/03/21 23:58:18 [metric_collector] {"stage_name":"metric_collector","events_processed":21144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4228.8,"last_update":"2026-03-21T23:58:13.869805143Z"} +2026/03/21 23:58:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:58:13.878852183Z"} +2026/03/21 23:58:18 [transform_engine] {"stage_name":"transform_engine","events_processed":704,"events_dropped":0,"avg_latency_ms":669.7609379501547,"throughput_eps":0,"last_update":"2026-03-21T23:58:13.966034038Z"} +2026/03/21 23:58:18 [detection_layer] {"stage_name":"detection_layer","events_processed":703,"events_dropped":0,"avg_latency_ms":20.898236242961183,"throughput_eps":0,"last_update":"2026-03-21T23:58:13.966023026Z"} +2026/03/21 23:58:18 ───────────────────────────────────────────────── +2026/03/21 23:58:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:58:23 [log_collector] {"stage_name":"log_collector","events_processed":33709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6741.8,"last_update":"2026-03-21T23:58:18.869936641Z"} +2026/03/21 23:58:23 [metric_collector] {"stage_name":"metric_collector","events_processed":21149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4229.8,"last_update":"2026-03-21T23:58:18.870332951Z"} +2026/03/21 23:58:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:58:18.876509623Z"} +2026/03/21 23:58:23 [transform_engine] {"stage_name":"transform_engine","events_processed":705,"events_dropped":0,"avg_latency_ms":553.2846789601238,"throughput_eps":0,"last_update":"2026-03-21T23:58:19.053130545Z"} +2026/03/21 23:58:23 [detection_layer] {"stage_name":"detection_layer","events_processed":703,"events_dropped":0,"avg_latency_ms":20.898236242961183,"throughput_eps":0,"last_update":"2026-03-21T23:58:18.965737846Z"} +2026/03/21 23:58:23 ───────────────────────────────────────────────── +2026/03/21 23:58:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:58:28 [metric_collector] {"stage_name":"metric_collector","events_processed":21154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4230.8,"last_update":"2026-03-21T23:58:23.870795532Z"} +2026/03/21 23:58:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:58:23.878443643Z"} +2026/03/21 23:58:28 [transform_engine] {"stage_name":"transform_engine","events_processed":705,"events_dropped":0,"avg_latency_ms":553.2846789601238,"throughput_eps":0,"last_update":"2026-03-21T23:58:23.965655785Z"} +2026/03/21 23:58:28 [detection_layer] {"stage_name":"detection_layer","events_processed":704,"events_dropped":0,"avg_latency_ms":21.193719394368948,"throughput_eps":0,"last_update":"2026-03-21T23:58:23.965648651Z"} +2026/03/21 23:58:28 [log_collector] {"stage_name":"log_collector","events_processed":33720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6744,"last_update":"2026-03-21T23:58:23.870314441Z"} +2026/03/21 23:58:28 ───────────────────────────────────────────────── +2026/03/21 23:58:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:58:33 [detection_layer] {"stage_name":"detection_layer","events_processed":704,"events_dropped":0,"avg_latency_ms":21.193719394368948,"throughput_eps":0,"last_update":"2026-03-21T23:58:28.965632202Z"} +2026/03/21 23:58:33 [log_collector] {"stage_name":"log_collector","events_processed":33720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6744,"last_update":"2026-03-21T23:58:28.869990131Z"} +2026/03/21 23:58:33 [metric_collector] {"stage_name":"metric_collector","events_processed":21159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4231.8,"last_update":"2026-03-21T23:58:28.870237615Z"} +2026/03/21 23:58:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:58:28.878480194Z"} +2026/03/21 23:58:33 [transform_engine] {"stage_name":"transform_engine","events_processed":705,"events_dropped":0,"avg_latency_ms":553.2846789601238,"throughput_eps":0,"last_update":"2026-03-21T23:58:28.965643203Z"} +2026/03/21 23:58:33 ───────────────────────────────────────────────── +2026/03/21 23:58:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:58:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:58:33.879199001Z"} +2026/03/21 23:58:38 [transform_engine] {"stage_name":"transform_engine","events_processed":705,"events_dropped":0,"avg_latency_ms":553.2846789601238,"throughput_eps":0,"last_update":"2026-03-21T23:58:33.965432859Z"} +2026/03/21 23:58:38 [detection_layer] {"stage_name":"detection_layer","events_processed":704,"events_dropped":0,"avg_latency_ms":21.193719394368948,"throughput_eps":0,"last_update":"2026-03-21T23:58:33.965422069Z"} +2026/03/21 23:58:38 [log_collector] {"stage_name":"log_collector","events_processed":33720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6744,"last_update":"2026-03-21T23:58:33.870476953Z"} +2026/03/21 23:58:38 [metric_collector] {"stage_name":"metric_collector","events_processed":21164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4232.8,"last_update":"2026-03-21T23:58:33.871098674Z"} +2026/03/21 23:58:38 ───────────────────────────────────────────────── +2026/03/21 23:58:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:58:43 [log_collector] {"stage_name":"log_collector","events_processed":33720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6744,"last_update":"2026-03-21T23:58:38.870121849Z"} +2026/03/21 23:58:43 [metric_collector] {"stage_name":"metric_collector","events_processed":21169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4233.8,"last_update":"2026-03-21T23:58:38.870615634Z"} +2026/03/21 23:58:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8470,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:58:38.879207834Z"} +2026/03/21 23:58:43 [transform_engine] {"stage_name":"transform_engine","events_processed":705,"events_dropped":0,"avg_latency_ms":553.2846789601238,"throughput_eps":0,"last_update":"2026-03-21T23:58:38.965474315Z"} +2026/03/21 23:58:43 [detection_layer] {"stage_name":"detection_layer","events_processed":704,"events_dropped":0,"avg_latency_ms":21.193719394368948,"throughput_eps":0,"last_update":"2026-03-21T23:58:38.965468203Z"} +2026/03/21 23:58:43 ───────────────────────────────────────────────── +2026/03/21 23:58:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:58:48 [log_collector] {"stage_name":"log_collector","events_processed":33720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6744,"last_update":"2026-03-21T23:58:43.869979661Z"} +2026/03/21 23:58:48 [metric_collector] {"stage_name":"metric_collector","events_processed":21174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4234.8,"last_update":"2026-03-21T23:58:43.870385549Z"} +2026/03/21 23:58:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:58:43.878333013Z"} +2026/03/21 23:58:48 [transform_engine] {"stage_name":"transform_engine","events_processed":705,"events_dropped":0,"avg_latency_ms":553.2846789601238,"throughput_eps":0,"last_update":"2026-03-21T23:58:43.965524826Z"} +2026/03/21 23:58:48 [detection_layer] {"stage_name":"detection_layer","events_processed":704,"events_dropped":0,"avg_latency_ms":21.193719394368948,"throughput_eps":0,"last_update":"2026-03-21T23:58:43.965513344Z"} +2026/03/21 23:58:48 ───────────────────────────────────────────────── +2026/03/21 23:58:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:58:53 [metric_collector] {"stage_name":"metric_collector","events_processed":21179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4235.8,"last_update":"2026-03-21T23:58:48.870389608Z"} +2026/03/21 23:58:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:58:48.878528729Z"} +2026/03/21 23:58:53 [transform_engine] {"stage_name":"transform_engine","events_processed":706,"events_dropped":0,"avg_latency_ms":459.64556616809904,"throughput_eps":0,"last_update":"2026-03-21T23:58:49.051022584Z"} +2026/03/21 23:58:53 [detection_layer] {"stage_name":"detection_layer","events_processed":704,"events_dropped":0,"avg_latency_ms":21.193719394368948,"throughput_eps":0,"last_update":"2026-03-21T23:58:48.965913412Z"} +2026/03/21 23:58:53 [log_collector] {"stage_name":"log_collector","events_processed":33720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6744,"last_update":"2026-03-21T23:58:48.870031051Z"} +2026/03/21 23:58:53 ───────────────────────────────────────────────── +2026/03/21 23:58:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:58:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8476,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:58:53.878641396Z"} +2026/03/21 23:58:58 [transform_engine] {"stage_name":"transform_engine","events_processed":706,"events_dropped":0,"avg_latency_ms":459.64556616809904,"throughput_eps":0,"last_update":"2026-03-21T23:58:53.965758475Z"} +2026/03/21 23:58:58 [detection_layer] {"stage_name":"detection_layer","events_processed":705,"events_dropped":0,"avg_latency_ms":21.776122715495163,"throughput_eps":0,"last_update":"2026-03-21T23:58:53.965750359Z"} +2026/03/21 23:58:58 [log_collector] {"stage_name":"log_collector","events_processed":33720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6744,"last_update":"2026-03-21T23:58:53.869860775Z"} +2026/03/21 23:58:58 [metric_collector] {"stage_name":"metric_collector","events_processed":21183,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4236.6,"last_update":"2026-03-21T23:58:53.869944625Z"} +2026/03/21 23:58:58 ───────────────────────────────────────────────── +2026/03/21 23:59:03 ── Pipeline Health ────────────────────────────── +2026/03/21 23:59:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:58:58.87933958Z"} +2026/03/21 23:59:03 [transform_engine] {"stage_name":"transform_engine","events_processed":706,"events_dropped":0,"avg_latency_ms":459.64556616809904,"throughput_eps":0,"last_update":"2026-03-21T23:58:58.965688698Z"} +2026/03/21 23:59:03 [detection_layer] {"stage_name":"detection_layer","events_processed":705,"events_dropped":0,"avg_latency_ms":21.776122715495163,"throughput_eps":0,"last_update":"2026-03-21T23:58:58.965677486Z"} +2026/03/21 23:59:03 [log_collector] {"stage_name":"log_collector","events_processed":33720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6744,"last_update":"2026-03-21T23:58:58.869524618Z"} +2026/03/21 23:59:03 [metric_collector] {"stage_name":"metric_collector","events_processed":21189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4237.8,"last_update":"2026-03-21T23:58:58.870059683Z"} +2026/03/21 23:59:03 ───────────────────────────────────────────────── +2026/03/21 23:59:08 ── Pipeline Health ────────────────────────────── +2026/03/21 23:59:08 [transform_engine] {"stage_name":"transform_engine","events_processed":706,"events_dropped":0,"avg_latency_ms":459.64556616809904,"throughput_eps":0,"last_update":"2026-03-21T23:59:03.965827758Z"} +2026/03/21 23:59:08 [detection_layer] {"stage_name":"detection_layer","events_processed":705,"events_dropped":0,"avg_latency_ms":21.776122715495163,"throughput_eps":0,"last_update":"2026-03-21T23:59:03.965816417Z"} +2026/03/21 23:59:08 [log_collector] {"stage_name":"log_collector","events_processed":33720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6744,"last_update":"2026-03-21T23:59:03.869407558Z"} +2026/03/21 23:59:08 [metric_collector] {"stage_name":"metric_collector","events_processed":21193,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4238.6,"last_update":"2026-03-21T23:59:03.869546464Z"} +2026/03/21 23:59:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8480,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:59:03.878609355Z"} +2026/03/21 23:59:08 ───────────────────────────────────────────────── +2026/03/21 23:59:13 ── Pipeline Health ────────────────────────────── +2026/03/21 23:59:13 [log_collector] {"stage_name":"log_collector","events_processed":33720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6744,"last_update":"2026-03-21T23:59:08.869437978Z"} +2026/03/21 23:59:13 [metric_collector] {"stage_name":"metric_collector","events_processed":21198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4239.6,"last_update":"2026-03-21T23:59:08.869443729Z"} +2026/03/21 23:59:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8482,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:59:08.878816343Z"} +2026/03/21 23:59:13 [transform_engine] {"stage_name":"transform_engine","events_processed":706,"events_dropped":0,"avg_latency_ms":459.64556616809904,"throughput_eps":0,"last_update":"2026-03-21T23:59:08.966056127Z"} +2026/03/21 23:59:13 [detection_layer] {"stage_name":"detection_layer","events_processed":705,"events_dropped":0,"avg_latency_ms":21.776122715495163,"throughput_eps":0,"last_update":"2026-03-21T23:59:08.966043473Z"} +2026/03/21 23:59:13 ───────────────────────────────────────────────── +2026/03/21 23:59:18 ── Pipeline Health ────────────────────────────── +2026/03/21 23:59:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:59:13.878574599Z"} +2026/03/21 23:59:18 [transform_engine] {"stage_name":"transform_engine","events_processed":706,"events_dropped":0,"avg_latency_ms":459.64556616809904,"throughput_eps":0,"last_update":"2026-03-21T23:59:13.965940204Z"} +2026/03/21 23:59:18 [detection_layer] {"stage_name":"detection_layer","events_processed":705,"events_dropped":0,"avg_latency_ms":21.776122715495163,"throughput_eps":0,"last_update":"2026-03-21T23:59:13.965926338Z"} +2026/03/21 23:59:18 [log_collector] {"stage_name":"log_collector","events_processed":33720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6744,"last_update":"2026-03-21T23:59:18.869537505Z"} +2026/03/21 23:59:18 [metric_collector] {"stage_name":"metric_collector","events_processed":21204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4240.8,"last_update":"2026-03-21T23:59:13.870166783Z"} +2026/03/21 23:59:18 ───────────────────────────────────────────────── +2026/03/21 23:59:23 ── Pipeline Health ────────────────────────────── +2026/03/21 23:59:23 [detection_layer] {"stage_name":"detection_layer","events_processed":705,"events_dropped":0,"avg_latency_ms":21.776122715495163,"throughput_eps":0,"last_update":"2026-03-21T23:59:18.965731081Z"} +2026/03/21 23:59:23 [log_collector] {"stage_name":"log_collector","events_processed":33720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6744,"last_update":"2026-03-21T23:59:23.869804982Z"} +2026/03/21 23:59:23 [metric_collector] {"stage_name":"metric_collector","events_processed":21209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4241.8,"last_update":"2026-03-21T23:59:18.869909287Z"} +2026/03/21 23:59:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8486,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:59:18.878551111Z"} +2026/03/21 23:59:23 [transform_engine] {"stage_name":"transform_engine","events_processed":707,"events_dropped":0,"avg_latency_ms":378.59505593447926,"throughput_eps":0,"last_update":"2026-03-21T23:59:19.020132351Z"} +2026/03/21 23:59:23 ───────────────────────────────────────────────── +Saved state: 27 clusters, 33721 messages, reason: none +2026/03/21 23:59:28 ── Pipeline Health ────────────────────────────── +2026/03/21 23:59:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:59:23.879094406Z"} +2026/03/21 23:59:28 [transform_engine] {"stage_name":"transform_engine","events_processed":707,"events_dropped":0,"avg_latency_ms":378.59505593447926,"throughput_eps":0,"last_update":"2026-03-21T23:59:23.9654623Z"} +2026/03/21 23:59:28 [detection_layer] {"stage_name":"detection_layer","events_processed":706,"events_dropped":0,"avg_latency_ms":22.42749457239613,"throughput_eps":0,"last_update":"2026-03-21T23:59:23.965535099Z"} +2026/03/21 23:59:28 [log_collector] {"stage_name":"log_collector","events_processed":33720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6744,"last_update":"2026-03-21T23:59:23.869804982Z"} +2026/03/21 23:59:28 [metric_collector] {"stage_name":"metric_collector","events_processed":21214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4242.8,"last_update":"2026-03-21T23:59:23.870260394Z"} +2026/03/21 23:59:28 ───────────────────────────────────────────────── +2026/03/21 23:59:33 ── Pipeline Health ────────────────────────────── +2026/03/21 23:59:33 [log_collector] {"stage_name":"log_collector","events_processed":33725,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6745,"last_update":"2026-03-21T23:59:33.869659926Z"} +2026/03/21 23:59:33 [metric_collector] {"stage_name":"metric_collector","events_processed":21219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4243.8,"last_update":"2026-03-21T23:59:28.870174903Z"} +2026/03/21 23:59:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8490,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:59:28.87915304Z"} +2026/03/21 23:59:33 [transform_engine] {"stage_name":"transform_engine","events_processed":707,"events_dropped":0,"avg_latency_ms":378.59505593447926,"throughput_eps":0,"last_update":"2026-03-21T23:59:28.965381308Z"} +2026/03/21 23:59:33 [detection_layer] {"stage_name":"detection_layer","events_processed":706,"events_dropped":0,"avg_latency_ms":22.42749457239613,"throughput_eps":0,"last_update":"2026-03-21T23:59:28.96540337Z"} +2026/03/21 23:59:33 ───────────────────────────────────────────────── +2026/03/21 23:59:38 ── Pipeline Health ────────────────────────────── +2026/03/21 23:59:38 [detection_layer] {"stage_name":"detection_layer","events_processed":706,"events_dropped":0,"avg_latency_ms":22.42749457239613,"throughput_eps":0,"last_update":"2026-03-21T23:59:33.966012477Z"} +2026/03/21 23:59:38 [log_collector] {"stage_name":"log_collector","events_processed":33725,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6745,"last_update":"2026-03-21T23:59:33.869659926Z"} +2026/03/21 23:59:38 [metric_collector] {"stage_name":"metric_collector","events_processed":21224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4244.8,"last_update":"2026-03-21T23:59:33.870044754Z"} +2026/03/21 23:59:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:59:33.878806077Z"} +2026/03/21 23:59:38 [transform_engine] {"stage_name":"transform_engine","events_processed":707,"events_dropped":0,"avg_latency_ms":378.59505593447926,"throughput_eps":0,"last_update":"2026-03-21T23:59:33.966039148Z"} +2026/03/21 23:59:38 ───────────────────────────────────────────────── +2026/03/21 23:59:43 ── Pipeline Health ────────────────────────────── +2026/03/21 23:59:43 [log_collector] {"stage_name":"log_collector","events_processed":33725,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6745,"last_update":"2026-03-21T23:59:38.870030195Z"} +2026/03/21 23:59:43 [metric_collector] {"stage_name":"metric_collector","events_processed":21229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4245.8,"last_update":"2026-03-21T23:59:38.870263301Z"} +2026/03/21 23:59:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:59:38.877749552Z"} +2026/03/21 23:59:43 [transform_engine] {"stage_name":"transform_engine","events_processed":707,"events_dropped":0,"avg_latency_ms":378.59505593447926,"throughput_eps":0,"last_update":"2026-03-21T23:59:38.965990955Z"} +2026/03/21 23:59:43 [detection_layer] {"stage_name":"detection_layer","events_processed":706,"events_dropped":0,"avg_latency_ms":22.42749457239613,"throughput_eps":0,"last_update":"2026-03-21T23:59:38.966029578Z"} +2026/03/21 23:59:43 ───────────────────────────────────────────────── +2026/03/21 23:59:48 ── Pipeline Health ────────────────────────────── +2026/03/21 23:59:48 [log_collector] {"stage_name":"log_collector","events_processed":33725,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6745,"last_update":"2026-03-21T23:59:43.869642206Z"} +2026/03/21 23:59:48 [metric_collector] {"stage_name":"metric_collector","events_processed":21234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4246.8,"last_update":"2026-03-21T23:59:43.869634191Z"} +2026/03/21 23:59:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8496,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:59:43.875622963Z"} +2026/03/21 23:59:48 [transform_engine] {"stage_name":"transform_engine","events_processed":707,"events_dropped":0,"avg_latency_ms":378.59505593447926,"throughput_eps":0,"last_update":"2026-03-21T23:59:43.965866782Z"} +2026/03/21 23:59:48 [detection_layer] {"stage_name":"detection_layer","events_processed":706,"events_dropped":0,"avg_latency_ms":22.42749457239613,"throughput_eps":0,"last_update":"2026-03-21T23:59:43.965824841Z"} +2026/03/21 23:59:48 ───────────────────────────────────────────────── +2026/03/21 23:59:53 ── Pipeline Health ────────────────────────────── +2026/03/21 23:59:53 [log_collector] {"stage_name":"log_collector","events_processed":33725,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6745,"last_update":"2026-03-21T23:59:48.869952654Z"} +2026/03/21 23:59:53 [metric_collector] {"stage_name":"metric_collector","events_processed":21239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4247.8,"last_update":"2026-03-21T23:59:48.870412995Z"} +2026/03/21 23:59:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8498,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:59:48.878798118Z"} +2026/03/21 23:59:53 [transform_engine] {"stage_name":"transform_engine","events_processed":708,"events_dropped":0,"avg_latency_ms":336.27626134758344,"throughput_eps":0,"last_update":"2026-03-21T23:59:49.133010339Z"} +2026/03/21 23:59:53 [detection_layer] {"stage_name":"detection_layer","events_processed":706,"events_dropped":0,"avg_latency_ms":22.42749457239613,"throughput_eps":0,"last_update":"2026-03-21T23:59:48.96625651Z"} +2026/03/21 23:59:53 ───────────────────────────────────────────────── +2026/03/21 23:59:58 ── Pipeline Health ────────────────────────────── +2026/03/21 23:59:58 [log_collector] {"stage_name":"log_collector","events_processed":33725,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6745,"last_update":"2026-03-21T23:59:53.869796425Z"} +2026/03/21 23:59:58 [metric_collector] {"stage_name":"metric_collector","events_processed":21244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4248.8,"last_update":"2026-03-21T23:59:53.870171002Z"} +2026/03/21 23:59:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:59:53.877184808Z"} +2026/03/21 23:59:58 [transform_engine] {"stage_name":"transform_engine","events_processed":708,"events_dropped":0,"avg_latency_ms":336.27626134758344,"throughput_eps":0,"last_update":"2026-03-21T23:59:53.965538646Z"} +2026/03/21 23:59:58 [detection_layer] {"stage_name":"detection_layer","events_processed":707,"events_dropped":0,"avg_latency_ms":21.415415057916906,"throughput_eps":0,"last_update":"2026-03-21T23:59:53.965399981Z"} +2026/03/21 23:59:58 ───────────────────────────────────────────────── +2026/03/22 00:00:03 ── Pipeline Health ────────────────────────────── +2026/03/22 00:00:03 [log_collector] {"stage_name":"log_collector","events_processed":33725,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6745,"last_update":"2026-03-21T23:59:58.869649473Z"} +2026/03/22 00:00:03 [metric_collector] {"stage_name":"metric_collector","events_processed":21249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4249.8,"last_update":"2026-03-21T23:59:58.869975467Z"} +2026/03/22 00:00:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-21T23:59:58.875488517Z"} +2026/03/22 00:00:03 [transform_engine] {"stage_name":"transform_engine","events_processed":708,"events_dropped":0,"avg_latency_ms":336.27626134758344,"throughput_eps":0,"last_update":"2026-03-21T23:59:58.966534693Z"} +2026/03/22 00:00:03 [detection_layer] {"stage_name":"detection_layer","events_processed":707,"events_dropped":0,"avg_latency_ms":21.415415057916906,"throughput_eps":0,"last_update":"2026-03-21T23:59:58.965689805Z"} +2026/03/22 00:00:03 ───────────────────────────────────────────────── +2026/03/22 00:00:08 ── Pipeline Health ────────────────────────────── +2026/03/22 00:00:08 [metric_collector] {"stage_name":"metric_collector","events_processed":21254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4250.8,"last_update":"2026-03-22T00:00:03.870548592Z"} +2026/03/22 00:00:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:00:03.889388271Z"} +2026/03/22 00:00:08 [transform_engine] {"stage_name":"transform_engine","events_processed":708,"events_dropped":0,"avg_latency_ms":336.27626134758344,"throughput_eps":0,"last_update":"2026-03-22T00:00:03.965548512Z"} +2026/03/22 00:00:08 [detection_layer] {"stage_name":"detection_layer","events_processed":707,"events_dropped":0,"avg_latency_ms":21.415415057916906,"throughput_eps":0,"last_update":"2026-03-22T00:00:03.965534625Z"} +2026/03/22 00:00:08 [log_collector] {"stage_name":"log_collector","events_processed":33725,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6745,"last_update":"2026-03-22T00:00:03.870075636Z"} +2026/03/22 00:00:08 ───────────────────────────────────────────────── +2026/03/22 00:00:13 ── Pipeline Health ────────────────────────────── +2026/03/22 00:00:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8506,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:00:08.877479413Z"} +2026/03/22 00:00:13 [transform_engine] {"stage_name":"transform_engine","events_processed":708,"events_dropped":0,"avg_latency_ms":336.27626134758344,"throughput_eps":0,"last_update":"2026-03-22T00:00:08.965736726Z"} +2026/03/22 00:00:13 [detection_layer] {"stage_name":"detection_layer","events_processed":707,"events_dropped":0,"avg_latency_ms":21.415415057916906,"throughput_eps":0,"last_update":"2026-03-22T00:00:08.965692371Z"} +2026/03/22 00:00:13 [log_collector] {"stage_name":"log_collector","events_processed":33734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6746.8,"last_update":"2026-03-22T00:00:08.870564397Z"} +2026/03/22 00:00:13 [metric_collector] {"stage_name":"metric_collector","events_processed":21259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4251.8,"last_update":"2026-03-22T00:00:08.870485085Z"} +2026/03/22 00:00:13 ───────────────────────────────────────────────── +2026/03/22 00:00:18 ── Pipeline Health ────────────────────────────── +2026/03/22 00:00:18 [metric_collector] {"stage_name":"metric_collector","events_processed":21263,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4252.6,"last_update":"2026-03-22T00:00:13.869389809Z"} +2026/03/22 00:00:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:00:13.877057958Z"} +2026/03/22 00:00:18 [transform_engine] {"stage_name":"transform_engine","events_processed":708,"events_dropped":0,"avg_latency_ms":336.27626134758344,"throughput_eps":0,"last_update":"2026-03-22T00:00:13.965155045Z"} +2026/03/22 00:00:18 [detection_layer] {"stage_name":"detection_layer","events_processed":707,"events_dropped":0,"avg_latency_ms":21.415415057916906,"throughput_eps":0,"last_update":"2026-03-22T00:00:13.966237568Z"} +2026/03/22 00:00:18 [log_collector] {"stage_name":"log_collector","events_processed":33736,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6747.2,"last_update":"2026-03-22T00:00:13.869697379Z"} +2026/03/22 00:00:18 ───────────────────────────────────────────────── +2026/03/22 00:00:23 ── Pipeline Health ────────────────────────────── +2026/03/22 00:00:23 [metric_collector] {"stage_name":"metric_collector","events_processed":21269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4253.8,"last_update":"2026-03-22T00:00:18.870627119Z"} +2026/03/22 00:00:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:00:18.880223753Z"} +2026/03/22 00:00:23 [transform_engine] {"stage_name":"transform_engine","events_processed":709,"events_dropped":0,"avg_latency_ms":288.13439407806675,"throughput_eps":0,"last_update":"2026-03-22T00:00:19.06069067Z"} +2026/03/22 00:00:23 [detection_layer] {"stage_name":"detection_layer","events_processed":707,"events_dropped":0,"avg_latency_ms":21.415415057916906,"throughput_eps":0,"last_update":"2026-03-22T00:00:18.966238499Z"} +2026/03/22 00:00:23 [log_collector] {"stage_name":"log_collector","events_processed":33802,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6760.4,"last_update":"2026-03-22T00:00:18.870413751Z"} +2026/03/22 00:00:23 ───────────────────────────────────────────────── +2026/03/22 00:00:28 ── Pipeline Health ────────────────────────────── +2026/03/22 00:00:28 [detection_layer] {"stage_name":"detection_layer","events_processed":708,"events_dropped":0,"avg_latency_ms":20.74729064633353,"throughput_eps":0,"last_update":"2026-03-22T00:00:23.965305811Z"} +2026/03/22 00:00:28 [log_collector] {"stage_name":"log_collector","events_processed":34085,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6817,"last_update":"2026-03-22T00:00:28.869409881Z"} +2026/03/22 00:00:28 [metric_collector] {"stage_name":"metric_collector","events_processed":21274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4254.8,"last_update":"2026-03-22T00:00:23.87048248Z"} +2026/03/22 00:00:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8512,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:00:23.877103764Z"} +2026/03/22 00:00:28 [transform_engine] {"stage_name":"transform_engine","events_processed":709,"events_dropped":0,"avg_latency_ms":288.13439407806675,"throughput_eps":0,"last_update":"2026-03-22T00:00:23.965377088Z"} +2026/03/22 00:00:28 ───────────────────────────────────────────────── +Saved state: 27 clusters, 34086 messages, reason: none +2026/03/22 00:00:33 ── Pipeline Health ────────────────────────────── +2026/03/22 00:00:33 [log_collector] {"stage_name":"log_collector","events_processed":34085,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6817,"last_update":"2026-03-22T00:00:28.869409881Z"} +2026/03/22 00:00:33 [metric_collector] {"stage_name":"metric_collector","events_processed":21279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4255.8,"last_update":"2026-03-22T00:00:28.870243838Z"} +2026/03/22 00:00:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:00:28.878688524Z"} +2026/03/22 00:00:33 [transform_engine] {"stage_name":"transform_engine","events_processed":709,"events_dropped":0,"avg_latency_ms":288.13439407806675,"throughput_eps":0,"last_update":"2026-03-22T00:00:28.965878363Z"} +2026/03/22 00:00:33 [detection_layer] {"stage_name":"detection_layer","events_processed":708,"events_dropped":0,"avg_latency_ms":20.74729064633353,"throughput_eps":0,"last_update":"2026-03-22T00:00:28.965922788Z"} +2026/03/22 00:00:33 ───────────────────────────────────────────────── +2026/03/22 00:00:38 ── Pipeline Health ────────────────────────────── +2026/03/22 00:00:38 [transform_engine] {"stage_name":"transform_engine","events_processed":709,"events_dropped":0,"avg_latency_ms":288.13439407806675,"throughput_eps":0,"last_update":"2026-03-22T00:00:33.966056418Z"} +2026/03/22 00:00:38 [detection_layer] {"stage_name":"detection_layer","events_processed":708,"events_dropped":0,"avg_latency_ms":20.74729064633353,"throughput_eps":0,"last_update":"2026-03-22T00:00:33.966027122Z"} +2026/03/22 00:00:38 [log_collector] {"stage_name":"log_collector","events_processed":34088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6817.6,"last_update":"2026-03-22T00:00:33.870338223Z"} +2026/03/22 00:00:38 [metric_collector] {"stage_name":"metric_collector","events_processed":21289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4257.8,"last_update":"2026-03-22T00:00:38.869811907Z"} +2026/03/22 00:00:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:00:33.876837322Z"} +2026/03/22 00:00:38 ───────────────────────────────────────────────── +2026/03/22 00:00:43 ── Pipeline Health ────────────────────────────── +2026/03/22 00:00:43 [log_collector] {"stage_name":"log_collector","events_processed":34088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6817.6,"last_update":"2026-03-22T00:00:38.869851584Z"} +2026/03/22 00:00:43 [metric_collector] {"stage_name":"metric_collector","events_processed":21289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4257.8,"last_update":"2026-03-22T00:00:38.869811907Z"} +2026/03/22 00:00:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:00:38.876747603Z"} +2026/03/22 00:00:43 [transform_engine] {"stage_name":"transform_engine","events_processed":709,"events_dropped":0,"avg_latency_ms":288.13439407806675,"throughput_eps":0,"last_update":"2026-03-22T00:00:38.965961028Z"} +2026/03/22 00:00:43 [detection_layer] {"stage_name":"detection_layer","events_processed":708,"events_dropped":0,"avg_latency_ms":20.74729064633353,"throughput_eps":0,"last_update":"2026-03-22T00:00:38.965984753Z"} +2026/03/22 00:00:43 ───────────────────────────────────────────────── +2026/03/22 00:00:48 ── Pipeline Health ────────────────────────────── +2026/03/22 00:00:48 [detection_layer] {"stage_name":"detection_layer","events_processed":708,"events_dropped":0,"avg_latency_ms":20.74729064633353,"throughput_eps":0,"last_update":"2026-03-22T00:00:43.965906633Z"} +2026/03/22 00:00:48 [log_collector] {"stage_name":"log_collector","events_processed":34099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6819.8,"last_update":"2026-03-22T00:00:43.869899475Z"} +2026/03/22 00:00:48 [metric_collector] {"stage_name":"metric_collector","events_processed":21294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4258.8,"last_update":"2026-03-22T00:00:43.87023075Z"} +2026/03/22 00:00:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8520,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:00:43.879661675Z"} +2026/03/22 00:00:48 [transform_engine] {"stage_name":"transform_engine","events_processed":709,"events_dropped":0,"avg_latency_ms":288.13439407806675,"throughput_eps":0,"last_update":"2026-03-22T00:00:43.965848632Z"} +2026/03/22 00:00:48 ───────────────────────────────────────────────── +2026/03/22 00:00:53 ── Pipeline Health ────────────────────────────── +2026/03/22 00:00:53 [metric_collector] {"stage_name":"metric_collector","events_processed":21299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4259.8,"last_update":"2026-03-22T00:00:48.870392168Z"} +2026/03/22 00:00:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8522,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:00:48.878927258Z"} +2026/03/22 00:00:53 [transform_engine] {"stage_name":"transform_engine","events_processed":710,"events_dropped":0,"avg_latency_ms":271.7236516624534,"throughput_eps":0,"last_update":"2026-03-22T00:00:49.171205106Z"} +2026/03/22 00:00:53 [detection_layer] {"stage_name":"detection_layer","events_processed":708,"events_dropped":0,"avg_latency_ms":20.74729064633353,"throughput_eps":0,"last_update":"2026-03-22T00:00:48.965502308Z"} +2026/03/22 00:00:53 [log_collector] {"stage_name":"log_collector","events_processed":34113,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6822.6,"last_update":"2026-03-22T00:00:48.869837255Z"} +2026/03/22 00:00:53 ───────────────────────────────────────────────── +2026/03/22 00:00:58 ── Pipeline Health ────────────────────────────── +2026/03/22 00:00:58 [transform_engine] {"stage_name":"transform_engine","events_processed":710,"events_dropped":0,"avg_latency_ms":271.7236516624534,"throughput_eps":0,"last_update":"2026-03-22T00:00:53.965589941Z"} +2026/03/22 00:00:58 [detection_layer] {"stage_name":"detection_layer","events_processed":709,"events_dropped":0,"avg_latency_ms":20.497823317066825,"throughput_eps":0,"last_update":"2026-03-22T00:00:53.965573479Z"} +2026/03/22 00:00:58 [log_collector] {"stage_name":"log_collector","events_processed":34115,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6823,"last_update":"2026-03-22T00:00:53.869423127Z"} +2026/03/22 00:00:58 [metric_collector] {"stage_name":"metric_collector","events_processed":21304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4260.8,"last_update":"2026-03-22T00:00:53.869883369Z"} +2026/03/22 00:00:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:00:53.879291211Z"} +2026/03/22 00:00:58 ───────────────────────────────────────────────── +2026/03/22 00:01:03 ── Pipeline Health ────────────────────────────── +2026/03/22 00:01:03 [log_collector] {"stage_name":"log_collector","events_processed":34115,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6823,"last_update":"2026-03-22T00:00:58.869831665Z"} +2026/03/22 00:01:03 [metric_collector] {"stage_name":"metric_collector","events_processed":21309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4261.8,"last_update":"2026-03-22T00:00:58.869815193Z"} +2026/03/22 00:01:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8526,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:00:58.879574147Z"} +2026/03/22 00:01:03 [transform_engine] {"stage_name":"transform_engine","events_processed":710,"events_dropped":0,"avg_latency_ms":271.7236516624534,"throughput_eps":0,"last_update":"2026-03-22T00:00:58.965794108Z"} +2026/03/22 00:01:03 [detection_layer] {"stage_name":"detection_layer","events_processed":709,"events_dropped":0,"avg_latency_ms":20.497823317066825,"throughput_eps":0,"last_update":"2026-03-22T00:00:58.965781855Z"} +2026/03/22 00:01:03 ───────────────────────────────────────────────── +2026/03/22 00:01:08 ── Pipeline Health ────────────────────────────── +2026/03/22 00:01:08 [log_collector] {"stage_name":"log_collector","events_processed":34115,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6823,"last_update":"2026-03-22T00:01:03.869612177Z"} +2026/03/22 00:01:08 [metric_collector] {"stage_name":"metric_collector","events_processed":21314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4262.8,"last_update":"2026-03-22T00:01:03.869975172Z"} +2026/03/22 00:01:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:01:03.879317518Z"} +2026/03/22 00:01:08 [transform_engine] {"stage_name":"transform_engine","events_processed":710,"events_dropped":0,"avg_latency_ms":271.7236516624534,"throughput_eps":0,"last_update":"2026-03-22T00:01:03.965525306Z"} +2026/03/22 00:01:08 [detection_layer] {"stage_name":"detection_layer","events_processed":709,"events_dropped":0,"avg_latency_ms":20.497823317066825,"throughput_eps":0,"last_update":"2026-03-22T00:01:03.965511719Z"} +2026/03/22 00:01:08 ───────────────────────────────────────────────── +2026/03/22 00:01:13 ── Pipeline Health ────────────────────────────── +2026/03/22 00:01:13 [log_collector] {"stage_name":"log_collector","events_processed":34115,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6823,"last_update":"2026-03-22T00:01:08.870021231Z"} +2026/03/22 00:01:13 [metric_collector] {"stage_name":"metric_collector","events_processed":21318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4263.6,"last_update":"2026-03-22T00:01:08.870033285Z"} +2026/03/22 00:01:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:01:08.878188096Z"} +2026/03/22 00:01:13 [transform_engine] {"stage_name":"transform_engine","events_processed":710,"events_dropped":0,"avg_latency_ms":271.7236516624534,"throughput_eps":0,"last_update":"2026-03-22T00:01:08.965399926Z"} +2026/03/22 00:01:13 [detection_layer] {"stage_name":"detection_layer","events_processed":709,"events_dropped":0,"avg_latency_ms":20.497823317066825,"throughput_eps":0,"last_update":"2026-03-22T00:01:08.965388374Z"} +2026/03/22 00:01:13 ───────────────────────────────────────────────── +2026/03/22 00:01:18 ── Pipeline Health ────────────────────────────── +2026/03/22 00:01:18 [log_collector] {"stage_name":"log_collector","events_processed":34115,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6823,"last_update":"2026-03-22T00:01:18.86990413Z"} +2026/03/22 00:01:18 [metric_collector] {"stage_name":"metric_collector","events_processed":21324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4264.8,"last_update":"2026-03-22T00:01:13.870277961Z"} +2026/03/22 00:01:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8532,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:01:13.87692818Z"} +2026/03/22 00:01:18 [transform_engine] {"stage_name":"transform_engine","events_processed":710,"events_dropped":0,"avg_latency_ms":271.7236516624534,"throughput_eps":0,"last_update":"2026-03-22T00:01:13.965056766Z"} +2026/03/22 00:01:18 [detection_layer] {"stage_name":"detection_layer","events_processed":709,"events_dropped":0,"avg_latency_ms":20.497823317066825,"throughput_eps":0,"last_update":"2026-03-22T00:01:13.966212519Z"} +2026/03/22 00:01:18 ───────────────────────────────────────────────── +2026/03/22 00:01:23 ── Pipeline Health ────────────────────────────── +2026/03/22 00:01:23 [log_collector] {"stage_name":"log_collector","events_processed":34115,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6823,"last_update":"2026-03-22T00:01:23.869867254Z"} +2026/03/22 00:01:23 [metric_collector] {"stage_name":"metric_collector","events_processed":21329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4265.8,"last_update":"2026-03-22T00:01:18.870467891Z"} +2026/03/22 00:01:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:01:18.878977701Z"} +2026/03/22 00:01:23 [transform_engine] {"stage_name":"transform_engine","events_processed":711,"events_dropped":0,"avg_latency_ms":235.37245512996273,"throughput_eps":0,"last_update":"2026-03-22T00:01:19.055140964Z"} +2026/03/22 00:01:23 [detection_layer] {"stage_name":"detection_layer","events_processed":709,"events_dropped":0,"avg_latency_ms":20.497823317066825,"throughput_eps":0,"last_update":"2026-03-22T00:01:18.965487116Z"} +2026/03/22 00:01:23 ───────────────────────────────────────────────── +2026/03/22 00:01:28 ── Pipeline Health ────────────────────────────── +2026/03/22 00:01:28 [log_collector] {"stage_name":"log_collector","events_processed":34115,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6823,"last_update":"2026-03-22T00:01:23.869867254Z"} +2026/03/22 00:01:28 [metric_collector] {"stage_name":"metric_collector","events_processed":21334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4266.8,"last_update":"2026-03-22T00:01:23.870304692Z"} +2026/03/22 00:01:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8536,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:01:23.879184121Z"} +2026/03/22 00:01:28 [transform_engine] {"stage_name":"transform_engine","events_processed":711,"events_dropped":0,"avg_latency_ms":235.37245512996273,"throughput_eps":0,"last_update":"2026-03-22T00:01:23.965404653Z"} +2026/03/22 00:01:28 [detection_layer] {"stage_name":"detection_layer","events_processed":710,"events_dropped":0,"avg_latency_ms":21.87245285365346,"throughput_eps":0,"last_update":"2026-03-22T00:01:23.965369456Z"} +2026/03/22 00:01:28 ───────────────────────────────────────────────── +2026/03/22 00:01:33 ── Pipeline Health ────────────────────────────── +2026/03/22 00:01:33 [detection_layer] {"stage_name":"detection_layer","events_processed":710,"events_dropped":0,"avg_latency_ms":21.87245285365346,"throughput_eps":0,"last_update":"2026-03-22T00:01:28.965898198Z"} +2026/03/22 00:01:33 [log_collector] {"stage_name":"log_collector","events_processed":34115,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6823,"last_update":"2026-03-22T00:01:28.870075604Z"} +2026/03/22 00:01:33 [metric_collector] {"stage_name":"metric_collector","events_processed":21343,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4268.6,"last_update":"2026-03-22T00:01:33.869567422Z"} +2026/03/22 00:01:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:01:28.879631208Z"} +2026/03/22 00:01:33 [transform_engine] {"stage_name":"transform_engine","events_processed":711,"events_dropped":0,"avg_latency_ms":235.37245512996273,"throughput_eps":0,"last_update":"2026-03-22T00:01:28.965934729Z"} +2026/03/22 00:01:33 ───────────────────────────────────────────────── +2026/03/22 00:01:38 ── Pipeline Health ────────────────────────────── +2026/03/22 00:01:38 [log_collector] {"stage_name":"log_collector","events_processed":34115,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6823,"last_update":"2026-03-22T00:01:33.869581568Z"} +2026/03/22 00:01:38 [metric_collector] {"stage_name":"metric_collector","events_processed":21348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4269.6,"last_update":"2026-03-22T00:01:38.870114039Z"} +2026/03/22 00:01:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8540,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:01:33.879927456Z"} +2026/03/22 00:01:38 [transform_engine] {"stage_name":"transform_engine","events_processed":711,"events_dropped":0,"avg_latency_ms":235.37245512996273,"throughput_eps":0,"last_update":"2026-03-22T00:01:33.965113004Z"} +2026/03/22 00:01:38 [detection_layer] {"stage_name":"detection_layer","events_processed":710,"events_dropped":0,"avg_latency_ms":21.87245285365346,"throughput_eps":0,"last_update":"2026-03-22T00:01:33.966239202Z"} +2026/03/22 00:01:38 ───────────────────────────────────────────────── +2026/03/22 00:01:43 ── Pipeline Health ────────────────────────────── +2026/03/22 00:01:43 [log_collector] {"stage_name":"log_collector","events_processed":34115,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6823,"last_update":"2026-03-22T00:01:38.870149497Z"} +2026/03/22 00:01:43 [metric_collector] {"stage_name":"metric_collector","events_processed":21353,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4270.6,"last_update":"2026-03-22T00:01:43.869907371Z"} +2026/03/22 00:01:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8542,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:01:38.879258927Z"} +2026/03/22 00:01:43 [transform_engine] {"stage_name":"transform_engine","events_processed":711,"events_dropped":0,"avg_latency_ms":235.37245512996273,"throughput_eps":0,"last_update":"2026-03-22T00:01:38.965506279Z"} +2026/03/22 00:01:43 [detection_layer] {"stage_name":"detection_layer","events_processed":710,"events_dropped":0,"avg_latency_ms":21.87245285365346,"throughput_eps":0,"last_update":"2026-03-22T00:01:38.965478356Z"} +2026/03/22 00:01:43 ───────────────────────────────────────────────── +2026/03/22 00:01:48 ── Pipeline Health ────────────────────────────── +2026/03/22 00:01:48 [log_collector] {"stage_name":"log_collector","events_processed":34115,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6823,"last_update":"2026-03-22T00:01:43.870530254Z"} +2026/03/22 00:01:48 [metric_collector] {"stage_name":"metric_collector","events_processed":21353,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4270.6,"last_update":"2026-03-22T00:01:43.869907371Z"} +2026/03/22 00:01:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:01:43.878540958Z"} +2026/03/22 00:01:48 [transform_engine] {"stage_name":"transform_engine","events_processed":711,"events_dropped":0,"avg_latency_ms":235.37245512996273,"throughput_eps":0,"last_update":"2026-03-22T00:01:43.965747358Z"} +2026/03/22 00:01:48 [detection_layer] {"stage_name":"detection_layer","events_processed":710,"events_dropped":0,"avg_latency_ms":21.87245285365346,"throughput_eps":0,"last_update":"2026-03-22T00:01:43.965772216Z"} +2026/03/22 00:01:48 ───────────────────────────────────────────────── +2026/03/22 00:01:53 ── Pipeline Health ────────────────────────────── +2026/03/22 00:01:53 [metric_collector] {"stage_name":"metric_collector","events_processed":21359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4271.8,"last_update":"2026-03-22T00:01:48.869833914Z"} +2026/03/22 00:01:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:01:48.878503381Z"} +2026/03/22 00:01:53 [transform_engine] {"stage_name":"transform_engine","events_processed":712,"events_dropped":0,"avg_latency_ms":203.15956450397022,"throughput_eps":0,"last_update":"2026-03-22T00:01:49.040195614Z"} +2026/03/22 00:01:53 [detection_layer] {"stage_name":"detection_layer","events_processed":710,"events_dropped":0,"avg_latency_ms":21.87245285365346,"throughput_eps":0,"last_update":"2026-03-22T00:01:48.965850611Z"} +2026/03/22 00:01:53 [log_collector] {"stage_name":"log_collector","events_processed":34115,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6823,"last_update":"2026-03-22T00:01:48.869826641Z"} +2026/03/22 00:01:53 ───────────────────────────────────────────────── +2026/03/22 00:01:58 ── Pipeline Health ────────────────────────────── +2026/03/22 00:01:58 [metric_collector] {"stage_name":"metric_collector","events_processed":21363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4272.6,"last_update":"2026-03-22T00:01:53.870285653Z"} +2026/03/22 00:01:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:01:53.879734914Z"} +2026/03/22 00:01:58 [transform_engine] {"stage_name":"transform_engine","events_processed":712,"events_dropped":0,"avg_latency_ms":203.15956450397022,"throughput_eps":0,"last_update":"2026-03-22T00:01:53.965970614Z"} +2026/03/22 00:01:58 [detection_layer] {"stage_name":"detection_layer","events_processed":711,"events_dropped":0,"avg_latency_ms":22.723393882922768,"throughput_eps":0,"last_update":"2026-03-22T00:01:53.965942891Z"} +2026/03/22 00:01:58 [log_collector] {"stage_name":"log_collector","events_processed":34115,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6823,"last_update":"2026-03-22T00:01:53.870568535Z"} +2026/03/22 00:01:58 ───────────────────────────────────────────────── +2026/03/22 00:02:03 ── Pipeline Health ────────────────────────────── +2026/03/22 00:02:03 [log_collector] {"stage_name":"log_collector","events_processed":34115,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6823,"last_update":"2026-03-22T00:02:03.869402665Z"} +2026/03/22 00:02:03 [metric_collector] {"stage_name":"metric_collector","events_processed":21369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4273.8,"last_update":"2026-03-22T00:01:58.8696873Z"} +2026/03/22 00:02:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:01:58.879254757Z"} +2026/03/22 00:02:03 [transform_engine] {"stage_name":"transform_engine","events_processed":712,"events_dropped":0,"avg_latency_ms":203.15956450397022,"throughput_eps":0,"last_update":"2026-03-22T00:01:58.965512579Z"} +2026/03/22 00:02:03 [detection_layer] {"stage_name":"detection_layer","events_processed":711,"events_dropped":0,"avg_latency_ms":22.723393882922768,"throughput_eps":0,"last_update":"2026-03-22T00:01:58.965536485Z"} +2026/03/22 00:02:03 ───────────────────────────────────────────────── +Saved state: 27 clusters, 34116 messages, reason: none +2026/03/22 00:02:08 ── Pipeline Health ────────────────────────────── +2026/03/22 00:02:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:02:03.877961741Z"} +2026/03/22 00:02:08 [transform_engine] {"stage_name":"transform_engine","events_processed":712,"events_dropped":0,"avg_latency_ms":203.15956450397022,"throughput_eps":0,"last_update":"2026-03-22T00:02:03.96516269Z"} +2026/03/22 00:02:08 [detection_layer] {"stage_name":"detection_layer","events_processed":711,"events_dropped":0,"avg_latency_ms":22.723393882922768,"throughput_eps":0,"last_update":"2026-03-22T00:02:03.966329706Z"} +2026/03/22 00:02:08 [log_collector] {"stage_name":"log_collector","events_processed":34115,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6823,"last_update":"2026-03-22T00:02:03.869402665Z"} +2026/03/22 00:02:08 [metric_collector] {"stage_name":"metric_collector","events_processed":21374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4274.8,"last_update":"2026-03-22T00:02:03.869891482Z"} +2026/03/22 00:02:08 ───────────────────────────────────────────────── +2026/03/22 00:02:13 ── Pipeline Health ────────────────────────────── +2026/03/22 00:02:13 [log_collector] {"stage_name":"log_collector","events_processed":34129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6825.8,"last_update":"2026-03-22T00:02:08.869694304Z"} +2026/03/22 00:02:13 [metric_collector] {"stage_name":"metric_collector","events_processed":21379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4275.8,"last_update":"2026-03-22T00:02:08.870255598Z"} +2026/03/22 00:02:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:02:08.877878801Z"} +2026/03/22 00:02:13 [transform_engine] {"stage_name":"transform_engine","events_processed":712,"events_dropped":0,"avg_latency_ms":203.15956450397022,"throughput_eps":0,"last_update":"2026-03-22T00:02:08.966140321Z"} +2026/03/22 00:02:13 [detection_layer] {"stage_name":"detection_layer","events_processed":711,"events_dropped":0,"avg_latency_ms":22.723393882922768,"throughput_eps":0,"last_update":"2026-03-22T00:02:08.966177062Z"} +2026/03/22 00:02:13 ───────────────────────────────────────────────── +2026/03/22 00:02:18 ── Pipeline Health ────────────────────────────── +2026/03/22 00:02:18 [transform_engine] {"stage_name":"transform_engine","events_processed":712,"events_dropped":0,"avg_latency_ms":203.15956450397022,"throughput_eps":0,"last_update":"2026-03-22T00:02:13.965404958Z"} +2026/03/22 00:02:18 [detection_layer] {"stage_name":"detection_layer","events_processed":711,"events_dropped":0,"avg_latency_ms":22.723393882922768,"throughput_eps":0,"last_update":"2026-03-22T00:02:13.965543734Z"} +2026/03/22 00:02:18 [log_collector] {"stage_name":"log_collector","events_processed":34129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6825.8,"last_update":"2026-03-22T00:02:13.86974173Z"} +2026/03/22 00:02:18 [metric_collector] {"stage_name":"metric_collector","events_processed":21384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4276.8,"last_update":"2026-03-22T00:02:13.86997711Z"} +2026/03/22 00:02:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:02:13.8790863Z"} +2026/03/22 00:02:18 ───────────────────────────────────────────────── +2026/03/22 00:02:23 ── Pipeline Health ────────────────────────────── +2026/03/22 00:02:23 [log_collector] {"stage_name":"log_collector","events_processed":34129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6825.8,"last_update":"2026-03-22T00:02:18.870429925Z"} +2026/03/22 00:02:23 [metric_collector] {"stage_name":"metric_collector","events_processed":21389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4277.8,"last_update":"2026-03-22T00:02:18.870598607Z"} +2026/03/22 00:02:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:02:18.878458714Z"} +2026/03/22 00:02:23 [transform_engine] {"stage_name":"transform_engine","events_processed":713,"events_dropped":0,"avg_latency_ms":186.7478350031762,"throughput_eps":0,"last_update":"2026-03-22T00:02:19.086256535Z"} +2026/03/22 00:02:23 [detection_layer] {"stage_name":"detection_layer","events_processed":711,"events_dropped":0,"avg_latency_ms":22.723393882922768,"throughput_eps":0,"last_update":"2026-03-22T00:02:18.965478026Z"} +2026/03/22 00:02:23 ───────────────────────────────────────────────── +2026/03/22 00:02:28 ── Pipeline Health ────────────────────────────── +2026/03/22 00:02:28 [transform_engine] {"stage_name":"transform_engine","events_processed":713,"events_dropped":0,"avg_latency_ms":186.7478350031762,"throughput_eps":0,"last_update":"2026-03-22T00:02:23.965199886Z"} +2026/03/22 00:02:28 [detection_layer] {"stage_name":"detection_layer","events_processed":712,"events_dropped":0,"avg_latency_ms":22.553310906338215,"throughput_eps":0,"last_update":"2026-03-22T00:02:23.965314035Z"} +2026/03/22 00:02:28 [log_collector] {"stage_name":"log_collector","events_processed":34129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6825.8,"last_update":"2026-03-22T00:02:23.869710571Z"} +2026/03/22 00:02:28 [metric_collector] {"stage_name":"metric_collector","events_processed":21394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4278.8,"last_update":"2026-03-22T00:02:23.869991259Z"} +2026/03/22 00:02:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8560,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:02:23.879008632Z"} +2026/03/22 00:02:28 ───────────────────────────────────────────────── +2026/03/22 00:02:33 ── Pipeline Health ────────────────────────────── +2026/03/22 00:02:33 [log_collector] {"stage_name":"log_collector","events_processed":34129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6825.8,"last_update":"2026-03-22T00:02:28.869712787Z"} +2026/03/22 00:02:33 [metric_collector] {"stage_name":"metric_collector","events_processed":21399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4279.8,"last_update":"2026-03-22T00:02:28.870136418Z"} +2026/03/22 00:02:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:02:28.878733717Z"} +2026/03/22 00:02:33 [transform_engine] {"stage_name":"transform_engine","events_processed":713,"events_dropped":0,"avg_latency_ms":186.7478350031762,"throughput_eps":0,"last_update":"2026-03-22T00:02:28.96599402Z"} +2026/03/22 00:02:33 [detection_layer] {"stage_name":"detection_layer","events_processed":712,"events_dropped":0,"avg_latency_ms":22.553310906338215,"throughput_eps":0,"last_update":"2026-03-22T00:02:28.965976536Z"} +2026/03/22 00:02:33 ───────────────────────────────────────────────── +2026/03/22 00:02:38 ── Pipeline Health ────────────────────────────── +2026/03/22 00:02:38 [log_collector] {"stage_name":"log_collector","events_processed":34129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6825.8,"last_update":"2026-03-22T00:02:33.869422341Z"} +2026/03/22 00:02:38 [metric_collector] {"stage_name":"metric_collector","events_processed":21404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4280.8,"last_update":"2026-03-22T00:02:33.869965701Z"} +2026/03/22 00:02:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:02:33.87880829Z"} +2026/03/22 00:02:38 [transform_engine] {"stage_name":"transform_engine","events_processed":713,"events_dropped":0,"avg_latency_ms":186.7478350031762,"throughput_eps":0,"last_update":"2026-03-22T00:02:33.966131373Z"} +2026/03/22 00:02:38 [detection_layer] {"stage_name":"detection_layer","events_processed":712,"events_dropped":0,"avg_latency_ms":22.553310906338215,"throughput_eps":0,"last_update":"2026-03-22T00:02:33.96605663Z"} +2026/03/22 00:02:38 ───────────────────────────────────────────────── +2026/03/22 00:02:43 ── Pipeline Health ────────────────────────────── +2026/03/22 00:02:43 [log_collector] {"stage_name":"log_collector","events_processed":34129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6825.8,"last_update":"2026-03-22T00:02:38.869598266Z"} +2026/03/22 00:02:43 [metric_collector] {"stage_name":"metric_collector","events_processed":21409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4281.8,"last_update":"2026-03-22T00:02:38.870018922Z"} +2026/03/22 00:02:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8566,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:02:38.8779058Z"} +2026/03/22 00:02:43 [transform_engine] {"stage_name":"transform_engine","events_processed":713,"events_dropped":0,"avg_latency_ms":186.7478350031762,"throughput_eps":0,"last_update":"2026-03-22T00:02:38.966090503Z"} +2026/03/22 00:02:43 [detection_layer] {"stage_name":"detection_layer","events_processed":712,"events_dropped":0,"avg_latency_ms":22.553310906338215,"throughput_eps":0,"last_update":"2026-03-22T00:02:38.966125149Z"} +2026/03/22 00:02:43 ───────────────────────────────────────────────── +2026/03/22 00:02:48 ── Pipeline Health ────────────────────────────── +2026/03/22 00:02:48 [log_collector] {"stage_name":"log_collector","events_processed":34129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6825.8,"last_update":"2026-03-22T00:02:43.869489516Z"} +2026/03/22 00:02:48 [metric_collector] {"stage_name":"metric_collector","events_processed":21414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4282.8,"last_update":"2026-03-22T00:02:43.869819768Z"} +2026/03/22 00:02:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:02:43.878823305Z"} +2026/03/22 00:02:48 [transform_engine] {"stage_name":"transform_engine","events_processed":713,"events_dropped":0,"avg_latency_ms":186.7478350031762,"throughput_eps":0,"last_update":"2026-03-22T00:02:43.966158812Z"} +2026/03/22 00:02:48 [detection_layer] {"stage_name":"detection_layer","events_processed":712,"events_dropped":0,"avg_latency_ms":22.553310906338215,"throughput_eps":0,"last_update":"2026-03-22T00:02:43.966043821Z"} +2026/03/22 00:02:48 ───────────────────────────────────────────────── +2026/03/22 00:02:53 ── Pipeline Health ────────────────────────────── +2026/03/22 00:02:53 [log_collector] {"stage_name":"log_collector","events_processed":34129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6825.8,"last_update":"2026-03-22T00:02:48.870084641Z"} +2026/03/22 00:02:53 [metric_collector] {"stage_name":"metric_collector","events_processed":21419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4283.8,"last_update":"2026-03-22T00:02:48.870424111Z"} +2026/03/22 00:02:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8570,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:02:48.87885962Z"} +2026/03/22 00:02:53 [transform_engine] {"stage_name":"transform_engine","events_processed":714,"events_dropped":0,"avg_latency_ms":164.00523040254097,"throughput_eps":0,"last_update":"2026-03-22T00:02:49.039251872Z"} +2026/03/22 00:02:53 [detection_layer] {"stage_name":"detection_layer","events_processed":712,"events_dropped":0,"avg_latency_ms":22.553310906338215,"throughput_eps":0,"last_update":"2026-03-22T00:02:48.966312712Z"} +2026/03/22 00:02:53 ───────────────────────────────────────────────── +2026/03/22 00:02:58 ── Pipeline Health ────────────────────────────── +2026/03/22 00:02:58 [metric_collector] {"stage_name":"metric_collector","events_processed":21424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4284.8,"last_update":"2026-03-22T00:02:53.870283047Z"} +2026/03/22 00:02:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8572,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:02:53.879748499Z"} +2026/03/22 00:02:58 [transform_engine] {"stage_name":"transform_engine","events_processed":714,"events_dropped":0,"avg_latency_ms":164.00523040254097,"throughput_eps":0,"last_update":"2026-03-22T00:02:53.966055295Z"} +2026/03/22 00:02:58 [detection_layer] {"stage_name":"detection_layer","events_processed":713,"events_dropped":0,"avg_latency_ms":22.924959125070576,"throughput_eps":0,"last_update":"2026-03-22T00:02:53.966043301Z"} +2026/03/22 00:02:58 [log_collector] {"stage_name":"log_collector","events_processed":34129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6825.8,"last_update":"2026-03-22T00:02:53.869855969Z"} +2026/03/22 00:02:58 ───────────────────────────────────────────────── +2026/03/22 00:03:03 ── Pipeline Health ────────────────────────────── +2026/03/22 00:03:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:02:58.879140065Z"} +2026/03/22 00:03:03 [transform_engine] {"stage_name":"transform_engine","events_processed":714,"events_dropped":0,"avg_latency_ms":164.00523040254097,"throughput_eps":0,"last_update":"2026-03-22T00:02:58.965463874Z"} +2026/03/22 00:03:03 [detection_layer] {"stage_name":"detection_layer","events_processed":713,"events_dropped":0,"avg_latency_ms":22.924959125070576,"throughput_eps":0,"last_update":"2026-03-22T00:02:58.965437964Z"} +2026/03/22 00:03:03 [log_collector] {"stage_name":"log_collector","events_processed":34129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6825.8,"last_update":"2026-03-22T00:02:58.869987221Z"} +2026/03/22 00:03:03 [metric_collector] {"stage_name":"metric_collector","events_processed":21429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4285.8,"last_update":"2026-03-22T00:02:58.870275163Z"} +2026/03/22 00:03:03 ───────────────────────────────────────────────── +2026/03/22 00:03:08 ── Pipeline Health ────────────────────────────── +2026/03/22 00:03:08 [log_collector] {"stage_name":"log_collector","events_processed":34129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6825.8,"last_update":"2026-03-22T00:03:03.870413597Z"} +2026/03/22 00:03:08 [metric_collector] {"stage_name":"metric_collector","events_processed":21434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4286.8,"last_update":"2026-03-22T00:03:03.870665089Z"} +2026/03/22 00:03:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8576,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:03:03.879180201Z"} +2026/03/22 00:03:08 [transform_engine] {"stage_name":"transform_engine","events_processed":714,"events_dropped":0,"avg_latency_ms":164.00523040254097,"throughput_eps":0,"last_update":"2026-03-22T00:03:03.965612727Z"} +2026/03/22 00:03:08 [detection_layer] {"stage_name":"detection_layer","events_processed":713,"events_dropped":0,"avg_latency_ms":22.924959125070576,"throughput_eps":0,"last_update":"2026-03-22T00:03:03.965598641Z"} +2026/03/22 00:03:08 ───────────────────────────────────────────────── +Saved state: 27 clusters, 34130 messages, reason: none +2026/03/22 00:03:13 ── Pipeline Health ────────────────────────────── +2026/03/22 00:03:13 [detection_layer] {"stage_name":"detection_layer","events_processed":713,"events_dropped":0,"avg_latency_ms":22.924959125070576,"throughput_eps":0,"last_update":"2026-03-22T00:03:08.965303535Z"} +2026/03/22 00:03:13 [log_collector] {"stage_name":"log_collector","events_processed":34129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6825.8,"last_update":"2026-03-22T00:03:08.870343803Z"} +2026/03/22 00:03:13 [metric_collector] {"stage_name":"metric_collector","events_processed":21438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4287.6,"last_update":"2026-03-22T00:03:08.870165251Z"} +2026/03/22 00:03:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:03:08.879020444Z"} +2026/03/22 00:03:13 [transform_engine] {"stage_name":"transform_engine","events_processed":714,"events_dropped":0,"avg_latency_ms":164.00523040254097,"throughput_eps":0,"last_update":"2026-03-22T00:03:08.96518126Z"} +2026/03/22 00:03:13 ───────────────────────────────────────────────── +2026/03/22 00:03:18 ── Pipeline Health ────────────────────────────── +2026/03/22 00:03:18 [log_collector] {"stage_name":"log_collector","events_processed":34134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6826.8,"last_update":"2026-03-22T00:03:13.869804539Z"} +2026/03/22 00:03:18 [metric_collector] {"stage_name":"metric_collector","events_processed":21443,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4288.6,"last_update":"2026-03-22T00:03:13.869788759Z"} +2026/03/22 00:03:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8580,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:03:13.877547601Z"} +2026/03/22 00:03:18 [transform_engine] {"stage_name":"transform_engine","events_processed":714,"events_dropped":0,"avg_latency_ms":164.00523040254097,"throughput_eps":0,"last_update":"2026-03-22T00:03:13.965799914Z"} +2026/03/22 00:03:18 [detection_layer] {"stage_name":"detection_layer","events_processed":713,"events_dropped":0,"avg_latency_ms":22.924959125070576,"throughput_eps":0,"last_update":"2026-03-22T00:03:13.965781909Z"} +2026/03/22 00:03:18 ───────────────────────────────────────────────── +2026/03/22 00:03:23 ── Pipeline Health ────────────────────────────── +2026/03/22 00:03:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:03:18.878942161Z"} +2026/03/22 00:03:23 [transform_engine] {"stage_name":"transform_engine","events_processed":714,"events_dropped":0,"avg_latency_ms":164.00523040254097,"throughput_eps":0,"last_update":"2026-03-22T00:03:18.965083269Z"} +2026/03/22 00:03:23 [detection_layer] {"stage_name":"detection_layer","events_processed":713,"events_dropped":0,"avg_latency_ms":22.924959125070576,"throughput_eps":0,"last_update":"2026-03-22T00:03:18.965505608Z"} +2026/03/22 00:03:23 [log_collector] {"stage_name":"log_collector","events_processed":34134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6826.8,"last_update":"2026-03-22T00:03:18.869405613Z"} +2026/03/22 00:03:23 [metric_collector] {"stage_name":"metric_collector","events_processed":21448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4289.6,"last_update":"2026-03-22T00:03:18.869410031Z"} +2026/03/22 00:03:23 ───────────────────────────────────────────────── +2026/03/22 00:03:26 [ANOMALY] time=2026-03-22T00:03:25Z score=0.8019 method=SEAD details=MAD!:w=0.28,s=0.92 RRCF-fast:w=0.19,s=0.87 RRCF-mid:w=0.15,s=0.82 RRCF-slow:w=0.12,s=0.89 COPOD!:w=0.26,s=0.58 +2026/03/22 00:03:28 ── Pipeline Health ────────────────────────────── +2026/03/22 00:03:28 [log_collector] {"stage_name":"log_collector","events_processed":34134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6826.8,"last_update":"2026-03-22T00:03:23.869435275Z"} +2026/03/22 00:03:28 [metric_collector] {"stage_name":"metric_collector","events_processed":21454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4290.8,"last_update":"2026-03-22T00:03:23.869842164Z"} +2026/03/22 00:03:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:03:23.878535697Z"} +2026/03/22 00:03:28 [transform_engine] {"stage_name":"transform_engine","events_processed":715,"events_dropped":0,"avg_latency_ms":1548.8921993220329,"throughput_eps":0,"last_update":"2026-03-22T00:03:26.05355229Z"} +2026/03/22 00:03:28 [detection_layer] {"stage_name":"detection_layer","events_processed":713,"events_dropped":0,"avg_latency_ms":22.924959125070576,"throughput_eps":0,"last_update":"2026-03-22T00:03:23.965735213Z"} +2026/03/22 00:03:28 ───────────────────────────────────────────────── +2026/03/22 00:03:33 ── Pipeline Health ────────────────────────────── +2026/03/22 00:03:33 [transform_engine] {"stage_name":"transform_engine","events_processed":715,"events_dropped":0,"avg_latency_ms":1548.8921993220329,"throughput_eps":0,"last_update":"2026-03-22T00:03:28.965587544Z"} +2026/03/22 00:03:33 [detection_layer] {"stage_name":"detection_layer","events_processed":714,"events_dropped":0,"avg_latency_ms":21.22151110005646,"throughput_eps":0,"last_update":"2026-03-22T00:03:28.965651746Z"} +2026/03/22 00:03:33 [log_collector] {"stage_name":"log_collector","events_processed":34134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6826.8,"last_update":"2026-03-22T00:03:33.869775011Z"} +2026/03/22 00:03:33 [metric_collector] {"stage_name":"metric_collector","events_processed":21464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4292.8,"last_update":"2026-03-22T00:03:33.869622619Z"} +2026/03/22 00:03:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8586,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:03:28.875361309Z"} +2026/03/22 00:03:33 ───────────────────────────────────────────────── +2026/03/22 00:03:38 ── Pipeline Health ────────────────────────────── +2026/03/22 00:03:38 [log_collector] {"stage_name":"log_collector","events_processed":34134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6826.8,"last_update":"2026-03-22T00:03:33.869775011Z"} +2026/03/22 00:03:38 [metric_collector] {"stage_name":"metric_collector","events_processed":21464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4292.8,"last_update":"2026-03-22T00:03:33.869622619Z"} +2026/03/22 00:03:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8588,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:03:33.877617825Z"} +2026/03/22 00:03:38 [transform_engine] {"stage_name":"transform_engine","events_processed":715,"events_dropped":0,"avg_latency_ms":1548.8921993220329,"throughput_eps":0,"last_update":"2026-03-22T00:03:33.96576768Z"} +2026/03/22 00:03:38 [detection_layer] {"stage_name":"detection_layer","events_processed":714,"events_dropped":0,"avg_latency_ms":21.22151110005646,"throughput_eps":0,"last_update":"2026-03-22T00:03:33.965815862Z"} +2026/03/22 00:03:38 ───────────────────────────────────────────────── +2026/03/22 00:03:43 ── Pipeline Health ────────────────────────────── +2026/03/22 00:03:43 [log_collector] {"stage_name":"log_collector","events_processed":34134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6826.8,"last_update":"2026-03-22T00:03:43.869864562Z"} +2026/03/22 00:03:43 [metric_collector] {"stage_name":"metric_collector","events_processed":21469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4293.8,"last_update":"2026-03-22T00:03:38.869610376Z"} +2026/03/22 00:03:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:03:38.876824826Z"} +2026/03/22 00:03:43 [transform_engine] {"stage_name":"transform_engine","events_processed":715,"events_dropped":0,"avg_latency_ms":1548.8921993220329,"throughput_eps":0,"last_update":"2026-03-22T00:03:38.966014704Z"} +2026/03/22 00:03:43 [detection_layer] {"stage_name":"detection_layer","events_processed":714,"events_dropped":0,"avg_latency_ms":21.22151110005646,"throughput_eps":0,"last_update":"2026-03-22T00:03:38.966086191Z"} +2026/03/22 00:03:43 ───────────────────────────────────────────────── +2026/03/22 00:03:48 ── Pipeline Health ────────────────────────────── +2026/03/22 00:03:48 [transform_engine] {"stage_name":"transform_engine","events_processed":715,"events_dropped":0,"avg_latency_ms":1548.8921993220329,"throughput_eps":0,"last_update":"2026-03-22T00:03:43.965323479Z"} +2026/03/22 00:03:48 [detection_layer] {"stage_name":"detection_layer","events_processed":714,"events_dropped":0,"avg_latency_ms":21.22151110005646,"throughput_eps":0,"last_update":"2026-03-22T00:03:43.965370779Z"} +2026/03/22 00:03:48 [log_collector] {"stage_name":"log_collector","events_processed":34134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6826.8,"last_update":"2026-03-22T00:03:43.869864562Z"} +2026/03/22 00:03:48 [metric_collector] {"stage_name":"metric_collector","events_processed":21474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4294.8,"last_update":"2026-03-22T00:03:43.870112677Z"} +2026/03/22 00:03:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8592,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:03:43.876174318Z"} +2026/03/22 00:03:48 ───────────────────────────────────────────────── +2026/03/22 00:03:53 ── Pipeline Health ────────────────────────────── +2026/03/22 00:03:53 [detection_layer] {"stage_name":"detection_layer","events_processed":714,"events_dropped":0,"avg_latency_ms":21.22151110005646,"throughput_eps":0,"last_update":"2026-03-22T00:03:48.965776436Z"} +2026/03/22 00:03:53 [log_collector] {"stage_name":"log_collector","events_processed":34134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6826.8,"last_update":"2026-03-22T00:03:48.869429116Z"} +2026/03/22 00:03:53 [metric_collector] {"stage_name":"metric_collector","events_processed":21479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4295.8,"last_update":"2026-03-22T00:03:48.86968718Z"} +2026/03/22 00:03:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:03:48.876622867Z"} +2026/03/22 00:03:53 [transform_engine] {"stage_name":"transform_engine","events_processed":716,"events_dropped":0,"avg_latency_ms":1546.2793828576264,"throughput_eps":0,"last_update":"2026-03-22T00:03:50.50164576Z"} +2026/03/22 00:03:53 ───────────────────────────────────────────────── +2026/03/22 00:03:58 ── Pipeline Health ────────────────────────────── +2026/03/22 00:03:58 [transform_engine] {"stage_name":"transform_engine","events_processed":716,"events_dropped":0,"avg_latency_ms":1546.2793828576264,"throughput_eps":0,"last_update":"2026-03-22T00:03:53.965405882Z"} +2026/03/22 00:03:58 [detection_layer] {"stage_name":"detection_layer","events_processed":715,"events_dropped":0,"avg_latency_ms":20.05218928004517,"throughput_eps":0,"last_update":"2026-03-22T00:03:53.965301462Z"} +2026/03/22 00:03:58 [log_collector] {"stage_name":"log_collector","events_processed":34143,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6828.6,"last_update":"2026-03-22T00:03:53.869442819Z"} +2026/03/22 00:03:58 [metric_collector] {"stage_name":"metric_collector","events_processed":21484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4296.8,"last_update":"2026-03-22T00:03:53.869817497Z"} +2026/03/22 00:03:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:03:53.876063582Z"} +2026/03/22 00:03:58 ───────────────────────────────────────────────── +2026/03/22 00:04:03 ── Pipeline Health ────────────────────────────── +2026/03/22 00:04:03 [log_collector] {"stage_name":"log_collector","events_processed":34220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6844,"last_update":"2026-03-22T00:04:03.869408403Z"} +2026/03/22 00:04:03 [metric_collector] {"stage_name":"metric_collector","events_processed":21489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4297.8,"last_update":"2026-03-22T00:03:58.869930359Z"} +2026/03/22 00:04:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:03:58.879472037Z"} +2026/03/22 00:04:03 [transform_engine] {"stage_name":"transform_engine","events_processed":716,"events_dropped":0,"avg_latency_ms":1546.2793828576264,"throughput_eps":0,"last_update":"2026-03-22T00:03:58.965781707Z"} +2026/03/22 00:04:03 [detection_layer] {"stage_name":"detection_layer","events_processed":715,"events_dropped":0,"avg_latency_ms":20.05218928004517,"throughput_eps":0,"last_update":"2026-03-22T00:03:58.965812857Z"} +2026/03/22 00:04:03 ───────────────────────────────────────────────── +2026/03/22 00:04:08 ── Pipeline Health ────────────────────────────── +2026/03/22 00:04:08 [metric_collector] {"stage_name":"metric_collector","events_processed":21494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4298.8,"last_update":"2026-03-22T00:04:03.869904754Z"} +2026/03/22 00:04:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:04:03.879788347Z"} +2026/03/22 00:04:08 [transform_engine] {"stage_name":"transform_engine","events_processed":716,"events_dropped":0,"avg_latency_ms":1546.2793828576264,"throughput_eps":0,"last_update":"2026-03-22T00:04:03.965135434Z"} +2026/03/22 00:04:08 [detection_layer] {"stage_name":"detection_layer","events_processed":715,"events_dropped":0,"avg_latency_ms":20.05218928004517,"throughput_eps":0,"last_update":"2026-03-22T00:04:03.96626147Z"} +2026/03/22 00:04:08 [log_collector] {"stage_name":"log_collector","events_processed":34220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6844,"last_update":"2026-03-22T00:04:03.869408403Z"} +2026/03/22 00:04:08 ───────────────────────────────────────────────── +2026/03/22 00:04:13 ── Pipeline Health ────────────────────────────── +2026/03/22 00:04:13 [log_collector] {"stage_name":"log_collector","events_processed":34495,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6899,"last_update":"2026-03-22T00:04:08.870035748Z"} +2026/03/22 00:04:13 [metric_collector] {"stage_name":"metric_collector","events_processed":21499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4299.8,"last_update":"2026-03-22T00:04:08.870282801Z"} +2026/03/22 00:04:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8602,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:04:08.876042213Z"} +2026/03/22 00:04:13 [transform_engine] {"stage_name":"transform_engine","events_processed":716,"events_dropped":0,"avg_latency_ms":1546.2793828576264,"throughput_eps":0,"last_update":"2026-03-22T00:04:08.965145987Z"} +2026/03/22 00:04:13 [detection_layer] {"stage_name":"detection_layer","events_processed":715,"events_dropped":0,"avg_latency_ms":20.05218928004517,"throughput_eps":0,"last_update":"2026-03-22T00:04:08.966290078Z"} +2026/03/22 00:04:13 ───────────────────────────────────────────────── +2026/03/22 00:04:18 ── Pipeline Health ────────────────────────────── +2026/03/22 00:04:18 [log_collector] {"stage_name":"log_collector","events_processed":34495,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6899,"last_update":"2026-03-22T00:04:13.870029919Z"} +2026/03/22 00:04:18 [metric_collector] {"stage_name":"metric_collector","events_processed":21504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4300.8,"last_update":"2026-03-22T00:04:13.870601043Z"} +2026/03/22 00:04:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:04:13.876928364Z"} +2026/03/22 00:04:18 [transform_engine] {"stage_name":"transform_engine","events_processed":716,"events_dropped":0,"avg_latency_ms":1546.2793828576264,"throughput_eps":0,"last_update":"2026-03-22T00:04:13.965056537Z"} +2026/03/22 00:04:18 [detection_layer] {"stage_name":"detection_layer","events_processed":715,"events_dropped":0,"avg_latency_ms":20.05218928004517,"throughput_eps":0,"last_update":"2026-03-22T00:04:13.966215638Z"} +2026/03/22 00:04:18 ───────────────────────────────────────────────── +2026/03/22 00:04:23 ── Pipeline Health ────────────────────────────── +2026/03/22 00:04:23 [log_collector] {"stage_name":"log_collector","events_processed":34495,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6899,"last_update":"2026-03-22T00:04:18.869411493Z"} +2026/03/22 00:04:23 [metric_collector] {"stage_name":"metric_collector","events_processed":21509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4301.8,"last_update":"2026-03-22T00:04:18.870186167Z"} +2026/03/22 00:04:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:04:18.878782174Z"} +2026/03/22 00:04:23 [transform_engine] {"stage_name":"transform_engine","events_processed":717,"events_dropped":0,"avg_latency_ms":1261.106742886101,"throughput_eps":0,"last_update":"2026-03-22T00:04:19.086469279Z"} +2026/03/22 00:04:23 [detection_layer] {"stage_name":"detection_layer","events_processed":715,"events_dropped":0,"avg_latency_ms":20.05218928004517,"throughput_eps":0,"last_update":"2026-03-22T00:04:18.965996648Z"} +2026/03/22 00:04:23 ───────────────────────────────────────────────── +2026/03/22 00:04:28 ── Pipeline Health ────────────────────────────── +2026/03/22 00:04:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:04:23.879925162Z"} +2026/03/22 00:04:28 [transform_engine] {"stage_name":"transform_engine","events_processed":717,"events_dropped":0,"avg_latency_ms":1261.106742886101,"throughput_eps":0,"last_update":"2026-03-22T00:04:23.966023718Z"} +2026/03/22 00:04:28 [detection_layer] {"stage_name":"detection_layer","events_processed":716,"events_dropped":0,"avg_latency_ms":20.240366024036135,"throughput_eps":0,"last_update":"2026-03-22T00:04:23.966140512Z"} +2026/03/22 00:04:28 [log_collector] {"stage_name":"log_collector","events_processed":34495,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6899,"last_update":"2026-03-22T00:04:23.870210092Z"} +2026/03/22 00:04:28 [metric_collector] {"stage_name":"metric_collector","events_processed":21514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4302.8,"last_update":"2026-03-22T00:04:23.8707051Z"} +2026/03/22 00:04:28 ───────────────────────────────────────────────── +Saved state: 27 clusters, 34496 messages, reason: none +2026/03/22 00:04:33 ── Pipeline Health ────────────────────────────── +2026/03/22 00:04:33 [metric_collector] {"stage_name":"metric_collector","events_processed":21519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4303.8,"last_update":"2026-03-22T00:04:28.869778322Z"} +2026/03/22 00:04:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:04:28.879153913Z"} +2026/03/22 00:04:33 [transform_engine] {"stage_name":"transform_engine","events_processed":717,"events_dropped":0,"avg_latency_ms":1261.106742886101,"throughput_eps":0,"last_update":"2026-03-22T00:04:28.965537055Z"} +2026/03/22 00:04:33 [detection_layer] {"stage_name":"detection_layer","events_processed":716,"events_dropped":0,"avg_latency_ms":20.240366024036135,"throughput_eps":0,"last_update":"2026-03-22T00:04:28.965520382Z"} +2026/03/22 00:04:33 [log_collector] {"stage_name":"log_collector","events_processed":34495,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6899,"last_update":"2026-03-22T00:04:28.869909124Z"} +2026/03/22 00:04:33 ───────────────────────────────────────────────── +2026/03/22 00:04:38 ── Pipeline Health ────────────────────────────── +2026/03/22 00:04:38 [metric_collector] {"stage_name":"metric_collector","events_processed":21524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4304.8,"last_update":"2026-03-22T00:04:33.86998816Z"} +2026/03/22 00:04:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:04:33.876641495Z"} +2026/03/22 00:04:38 [transform_engine] {"stage_name":"transform_engine","events_processed":717,"events_dropped":0,"avg_latency_ms":1261.106742886101,"throughput_eps":0,"last_update":"2026-03-22T00:04:33.965822797Z"} +2026/03/22 00:04:38 [detection_layer] {"stage_name":"detection_layer","events_processed":716,"events_dropped":0,"avg_latency_ms":20.240366024036135,"throughput_eps":0,"last_update":"2026-03-22T00:04:33.965810374Z"} +2026/03/22 00:04:38 [log_collector] {"stage_name":"log_collector","events_processed":34498,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6899.6,"last_update":"2026-03-22T00:04:33.869560331Z"} +2026/03/22 00:04:38 ───────────────────────────────────────────────── +2026/03/22 00:04:43 ── Pipeline Health ────────────────────────────── +2026/03/22 00:04:43 [metric_collector] {"stage_name":"metric_collector","events_processed":21534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4306.8,"last_update":"2026-03-22T00:04:43.86977912Z"} +2026/03/22 00:04:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:04:38.87594099Z"} +2026/03/22 00:04:43 [transform_engine] {"stage_name":"transform_engine","events_processed":717,"events_dropped":0,"avg_latency_ms":1261.106742886101,"throughput_eps":0,"last_update":"2026-03-22T00:04:38.965085101Z"} +2026/03/22 00:04:43 [detection_layer] {"stage_name":"detection_layer","events_processed":716,"events_dropped":0,"avg_latency_ms":20.240366024036135,"throughput_eps":0,"last_update":"2026-03-22T00:04:38.966240233Z"} +2026/03/22 00:04:43 [log_collector] {"stage_name":"log_collector","events_processed":34498,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6899.6,"last_update":"2026-03-22T00:04:38.869537313Z"} +2026/03/22 00:04:43 ───────────────────────────────────────────────── +2026/03/22 00:04:48 ── Pipeline Health ────────────────────────────── +2026/03/22 00:04:48 [metric_collector] {"stage_name":"metric_collector","events_processed":21534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4306.8,"last_update":"2026-03-22T00:04:43.86977912Z"} +2026/03/22 00:04:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:04:43.879448272Z"} +2026/03/22 00:04:48 [transform_engine] {"stage_name":"transform_engine","events_processed":717,"events_dropped":0,"avg_latency_ms":1261.106742886101,"throughput_eps":0,"last_update":"2026-03-22T00:04:43.965121063Z"} +2026/03/22 00:04:48 [detection_layer] {"stage_name":"detection_layer","events_processed":716,"events_dropped":0,"avg_latency_ms":20.240366024036135,"throughput_eps":0,"last_update":"2026-03-22T00:04:43.966226631Z"} +2026/03/22 00:04:48 [log_collector] {"stage_name":"log_collector","events_processed":34509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6901.8,"last_update":"2026-03-22T00:04:43.869933606Z"} +2026/03/22 00:04:48 ───────────────────────────────────────────────── +2026/03/22 00:04:53 ── Pipeline Health ────────────────────────────── +2026/03/22 00:04:53 [metric_collector] {"stage_name":"metric_collector","events_processed":21539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4307.8,"last_update":"2026-03-22T00:04:48.869946513Z"} +2026/03/22 00:04:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:04:48.879403028Z"} +2026/03/22 00:04:53 [transform_engine] {"stage_name":"transform_engine","events_processed":718,"events_dropped":0,"avg_latency_ms":1060.387980308881,"throughput_eps":0,"last_update":"2026-03-22T00:04:49.223210049Z"} +2026/03/22 00:04:53 [detection_layer] {"stage_name":"detection_layer","events_processed":716,"events_dropped":0,"avg_latency_ms":20.240366024036135,"throughput_eps":0,"last_update":"2026-03-22T00:04:48.965731615Z"} +2026/03/22 00:04:53 [log_collector] {"stage_name":"log_collector","events_processed":34525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6905,"last_update":"2026-03-22T00:04:53.870292568Z"} +2026/03/22 00:04:53 ───────────────────────────────────────────────── +2026/03/22 00:04:58 ── Pipeline Health ────────────────────────────── +2026/03/22 00:04:58 [transform_engine] {"stage_name":"transform_engine","events_processed":718,"events_dropped":0,"avg_latency_ms":1060.387980308881,"throughput_eps":0,"last_update":"2026-03-22T00:04:53.965612498Z"} +2026/03/22 00:04:58 [detection_layer] {"stage_name":"detection_layer","events_processed":717,"events_dropped":0,"avg_latency_ms":20.41676301922891,"throughput_eps":0,"last_update":"2026-03-22T00:04:53.965511094Z"} +2026/03/22 00:04:58 [log_collector] {"stage_name":"log_collector","events_processed":34525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6905,"last_update":"2026-03-22T00:04:53.870292568Z"} +2026/03/22 00:04:58 [metric_collector] {"stage_name":"metric_collector","events_processed":21544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4308.8,"last_update":"2026-03-22T00:04:53.870897296Z"} +2026/03/22 00:04:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8620,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:04:53.879313979Z"} +2026/03/22 00:04:58 ───────────────────────────────────────────────── +2026/03/22 00:05:03 ── Pipeline Health ────────────────────────────── +2026/03/22 00:05:03 [log_collector] {"stage_name":"log_collector","events_processed":34525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6905,"last_update":"2026-03-22T00:05:03.870191925Z"} +2026/03/22 00:05:03 [metric_collector] {"stage_name":"metric_collector","events_processed":21549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4309.8,"last_update":"2026-03-22T00:04:58.870464038Z"} +2026/03/22 00:05:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8622,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:04:58.879108787Z"} +2026/03/22 00:05:03 [transform_engine] {"stage_name":"transform_engine","events_processed":718,"events_dropped":0,"avg_latency_ms":1060.387980308881,"throughput_eps":0,"last_update":"2026-03-22T00:04:58.965478011Z"} +2026/03/22 00:05:03 [detection_layer] {"stage_name":"detection_layer","events_processed":717,"events_dropped":0,"avg_latency_ms":20.41676301922891,"throughput_eps":0,"last_update":"2026-03-22T00:04:58.965441933Z"} +2026/03/22 00:05:03 ───────────────────────────────────────────────── +2026/03/22 00:05:08 ── Pipeline Health ────────────────────────────── +2026/03/22 00:05:08 [transform_engine] {"stage_name":"transform_engine","events_processed":718,"events_dropped":0,"avg_latency_ms":1060.387980308881,"throughput_eps":0,"last_update":"2026-03-22T00:05:03.965515432Z"} +2026/03/22 00:05:08 [detection_layer] {"stage_name":"detection_layer","events_processed":717,"events_dropped":0,"avg_latency_ms":20.41676301922891,"throughput_eps":0,"last_update":"2026-03-22T00:05:03.965494261Z"} +2026/03/22 00:05:08 [log_collector] {"stage_name":"log_collector","events_processed":34525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6905,"last_update":"2026-03-22T00:05:03.870191925Z"} +2026/03/22 00:05:08 [metric_collector] {"stage_name":"metric_collector","events_processed":21554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4310.8,"last_update":"2026-03-22T00:05:03.870621848Z"} +2026/03/22 00:05:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:05:03.879209198Z"} +2026/03/22 00:05:08 ───────────────────────────────────────────────── +2026/03/22 00:05:13 ── Pipeline Health ────────────────────────────── +2026/03/22 00:05:13 [log_collector] {"stage_name":"log_collector","events_processed":34525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6905,"last_update":"2026-03-22T00:05:08.869516698Z"} +2026/03/22 00:05:13 [metric_collector] {"stage_name":"metric_collector","events_processed":21559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4311.8,"last_update":"2026-03-22T00:05:08.869892468Z"} +2026/03/22 00:05:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:05:08.878768661Z"} +2026/03/22 00:05:13 [transform_engine] {"stage_name":"transform_engine","events_processed":718,"events_dropped":0,"avg_latency_ms":1060.387980308881,"throughput_eps":0,"last_update":"2026-03-22T00:05:08.966113204Z"} +2026/03/22 00:05:13 [detection_layer] {"stage_name":"detection_layer","events_processed":717,"events_dropped":0,"avg_latency_ms":20.41676301922891,"throughput_eps":0,"last_update":"2026-03-22T00:05:08.966099548Z"} +2026/03/22 00:05:13 ───────────────────────────────────────────────── +2026/03/22 00:05:18 ── Pipeline Health ────────────────────────────── +2026/03/22 00:05:18 [transform_engine] {"stage_name":"transform_engine","events_processed":718,"events_dropped":0,"avg_latency_ms":1060.387980308881,"throughput_eps":0,"last_update":"2026-03-22T00:05:13.965686724Z"} +2026/03/22 00:05:18 [detection_layer] {"stage_name":"detection_layer","events_processed":717,"events_dropped":0,"avg_latency_ms":20.41676301922891,"throughput_eps":0,"last_update":"2026-03-22T00:05:13.965595791Z"} +2026/03/22 00:05:18 [log_collector] {"stage_name":"log_collector","events_processed":34525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6905,"last_update":"2026-03-22T00:05:13.869455338Z"} +2026/03/22 00:05:18 [metric_collector] {"stage_name":"metric_collector","events_processed":21564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4312.8,"last_update":"2026-03-22T00:05:13.869645633Z"} +2026/03/22 00:05:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:05:13.875384135Z"} +2026/03/22 00:05:18 ───────────────────────────────────────────────── +2026/03/22 00:05:23 ── Pipeline Health ────────────────────────────── +2026/03/22 00:05:23 [log_collector] {"stage_name":"log_collector","events_processed":34525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6905,"last_update":"2026-03-22T00:05:18.869430506Z"} +2026/03/22 00:05:23 [metric_collector] {"stage_name":"metric_collector","events_processed":21569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4313.8,"last_update":"2026-03-22T00:05:18.872668509Z"} +2026/03/22 00:05:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:05:18.879369255Z"} +2026/03/22 00:05:23 [transform_engine] {"stage_name":"transform_engine","events_processed":719,"events_dropped":0,"avg_latency_ms":871.6526054471049,"throughput_eps":0,"last_update":"2026-03-22T00:05:19.081942944Z"} +2026/03/22 00:05:23 [detection_layer] {"stage_name":"detection_layer","events_processed":717,"events_dropped":0,"avg_latency_ms":20.41676301922891,"throughput_eps":0,"last_update":"2026-03-22T00:05:18.965345487Z"} +2026/03/22 00:05:23 ───────────────────────────────────────────────── +2026/03/22 00:05:28 ── Pipeline Health ────────────────────────────── +2026/03/22 00:05:28 [log_collector] {"stage_name":"log_collector","events_processed":34525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6905,"last_update":"2026-03-22T00:05:23.86949898Z"} +2026/03/22 00:05:28 [metric_collector] {"stage_name":"metric_collector","events_processed":21574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4314.8,"last_update":"2026-03-22T00:05:23.869905829Z"} +2026/03/22 00:05:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8632,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:05:23.878007889Z"} +2026/03/22 00:05:28 [transform_engine] {"stage_name":"transform_engine","events_processed":719,"events_dropped":0,"avg_latency_ms":871.6526054471049,"throughput_eps":0,"last_update":"2026-03-22T00:05:23.965189489Z"} +2026/03/22 00:05:28 [detection_layer] {"stage_name":"detection_layer","events_processed":718,"events_dropped":0,"avg_latency_ms":21.54493321538313,"throughput_eps":0,"last_update":"2026-03-22T00:05:23.965278049Z"} +2026/03/22 00:05:28 ───────────────────────────────────────────────── +2026/03/22 00:05:33 ── Pipeline Health ────────────────────────────── +2026/03/22 00:05:33 [log_collector] {"stage_name":"log_collector","events_processed":34525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6905,"last_update":"2026-03-22T00:05:28.869973994Z"} +2026/03/22 00:05:33 [metric_collector] {"stage_name":"metric_collector","events_processed":21579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4315.8,"last_update":"2026-03-22T00:05:28.870335768Z"} +2026/03/22 00:05:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:05:28.879531873Z"} +2026/03/22 00:05:33 [transform_engine] {"stage_name":"transform_engine","events_processed":719,"events_dropped":0,"avg_latency_ms":871.6526054471049,"throughput_eps":0,"last_update":"2026-03-22T00:05:28.965773835Z"} +2026/03/22 00:05:33 [detection_layer] {"stage_name":"detection_layer","events_processed":718,"events_dropped":0,"avg_latency_ms":21.54493321538313,"throughput_eps":0,"last_update":"2026-03-22T00:05:28.965725773Z"} +2026/03/22 00:05:33 ───────────────────────────────────────────────── +2026/03/22 00:05:38 ── Pipeline Health ────────────────────────────── +2026/03/22 00:05:38 [detection_layer] {"stage_name":"detection_layer","events_processed":718,"events_dropped":0,"avg_latency_ms":21.54493321538313,"throughput_eps":0,"last_update":"2026-03-22T00:05:33.965751202Z"} +2026/03/22 00:05:38 [log_collector] {"stage_name":"log_collector","events_processed":34525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6905,"last_update":"2026-03-22T00:05:33.870083585Z"} +2026/03/22 00:05:38 [metric_collector] {"stage_name":"metric_collector","events_processed":21584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4316.8,"last_update":"2026-03-22T00:05:33.870251507Z"} +2026/03/22 00:05:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:05:33.879421192Z"} +2026/03/22 00:05:38 [transform_engine] {"stage_name":"transform_engine","events_processed":719,"events_dropped":0,"avg_latency_ms":871.6526054471049,"throughput_eps":0,"last_update":"2026-03-22T00:05:33.965867425Z"} +2026/03/22 00:05:38 ───────────────────────────────────────────────── +2026/03/22 00:05:43 ── Pipeline Health ────────────────────────────── +2026/03/22 00:05:43 [log_collector] {"stage_name":"log_collector","events_processed":34525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6905,"last_update":"2026-03-22T00:05:38.869973005Z"} +2026/03/22 00:05:43 [metric_collector] {"stage_name":"metric_collector","events_processed":21589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4317.8,"last_update":"2026-03-22T00:05:38.870327715Z"} +2026/03/22 00:05:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:05:38.879385045Z"} +2026/03/22 00:05:43 [transform_engine] {"stage_name":"transform_engine","events_processed":719,"events_dropped":0,"avg_latency_ms":871.6526054471049,"throughput_eps":0,"last_update":"2026-03-22T00:05:38.965610454Z"} +2026/03/22 00:05:43 [detection_layer] {"stage_name":"detection_layer","events_processed":718,"events_dropped":0,"avg_latency_ms":21.54493321538313,"throughput_eps":0,"last_update":"2026-03-22T00:05:38.965716808Z"} +2026/03/22 00:05:43 ───────────────────────────────────────────────── +2026/03/22 00:05:48 ── Pipeline Health ────────────────────────────── +2026/03/22 00:05:48 [log_collector] {"stage_name":"log_collector","events_processed":34525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6905,"last_update":"2026-03-22T00:05:43.869880567Z"} +2026/03/22 00:05:48 [metric_collector] {"stage_name":"metric_collector","events_processed":21594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4318.8,"last_update":"2026-03-22T00:05:43.870587432Z"} +2026/03/22 00:05:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8640,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:05:43.878769866Z"} +2026/03/22 00:05:48 [transform_engine] {"stage_name":"transform_engine","events_processed":719,"events_dropped":0,"avg_latency_ms":871.6526054471049,"throughput_eps":0,"last_update":"2026-03-22T00:05:43.966069182Z"} +2026/03/22 00:05:48 [detection_layer] {"stage_name":"detection_layer","events_processed":718,"events_dropped":0,"avg_latency_ms":21.54493321538313,"throughput_eps":0,"last_update":"2026-03-22T00:05:43.966037301Z"} +2026/03/22 00:05:48 ───────────────────────────────────────────────── +Saved state: 27 clusters, 34526 messages, reason: none +2026/03/22 00:05:53 ── Pipeline Health ────────────────────────────── +2026/03/22 00:05:53 [log_collector] {"stage_name":"log_collector","events_processed":34525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6905,"last_update":"2026-03-22T00:05:48.869414064Z"} +2026/03/22 00:05:53 [metric_collector] {"stage_name":"metric_collector","events_processed":21599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4319.8,"last_update":"2026-03-22T00:05:48.869760126Z"} +2026/03/22 00:05:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:05:48.878868126Z"} +2026/03/22 00:05:53 [transform_engine] {"stage_name":"transform_engine","events_processed":720,"events_dropped":0,"avg_latency_ms":711.2206191576839,"throughput_eps":0,"last_update":"2026-03-22T00:05:49.035651072Z"} +2026/03/22 00:05:53 [detection_layer] {"stage_name":"detection_layer","events_processed":718,"events_dropped":0,"avg_latency_ms":21.54493321538313,"throughput_eps":0,"last_update":"2026-03-22T00:05:48.966044119Z"} +2026/03/22 00:05:53 ───────────────────────────────────────────────── +2026/03/22 00:05:58 ── Pipeline Health ────────────────────────────── +2026/03/22 00:05:58 [log_collector] {"stage_name":"log_collector","events_processed":34539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6907.8,"last_update":"2026-03-22T00:05:53.86984254Z"} +2026/03/22 00:05:58 [metric_collector] {"stage_name":"metric_collector","events_processed":21604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4320.8,"last_update":"2026-03-22T00:05:53.87020276Z"} +2026/03/22 00:05:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:05:53.878507742Z"} +2026/03/22 00:05:58 [transform_engine] {"stage_name":"transform_engine","events_processed":720,"events_dropped":0,"avg_latency_ms":711.2206191576839,"throughput_eps":0,"last_update":"2026-03-22T00:05:53.965933695Z"} +2026/03/22 00:05:58 [detection_layer] {"stage_name":"detection_layer","events_processed":719,"events_dropped":0,"avg_latency_ms":22.188133172306504,"throughput_eps":0,"last_update":"2026-03-22T00:05:53.965813304Z"} +2026/03/22 00:05:58 ───────────────────────────────────────────────── +2026/03/22 00:06:03 ── Pipeline Health ────────────────────────────── +2026/03/22 00:06:03 [transform_engine] {"stage_name":"transform_engine","events_processed":720,"events_dropped":0,"avg_latency_ms":711.2206191576839,"throughput_eps":0,"last_update":"2026-03-22T00:05:58.966173695Z"} +2026/03/22 00:06:03 [detection_layer] {"stage_name":"detection_layer","events_processed":719,"events_dropped":0,"avg_latency_ms":22.188133172306504,"throughput_eps":0,"last_update":"2026-03-22T00:05:58.966200436Z"} +2026/03/22 00:06:03 [log_collector] {"stage_name":"log_collector","events_processed":34539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6907.8,"last_update":"2026-03-22T00:05:58.869536213Z"} +2026/03/22 00:06:03 [metric_collector] {"stage_name":"metric_collector","events_processed":21609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4321.8,"last_update":"2026-03-22T00:05:58.87013107Z"} +2026/03/22 00:06:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8646,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:05:58.878825269Z"} +2026/03/22 00:06:03 ───────────────────────────────────────────────── +2026/03/22 00:06:08 ── Pipeline Health ────────────────────────────── +2026/03/22 00:06:08 [detection_layer] {"stage_name":"detection_layer","events_processed":719,"events_dropped":0,"avg_latency_ms":22.188133172306504,"throughput_eps":0,"last_update":"2026-03-22T00:06:03.966143988Z"} +2026/03/22 00:06:08 [log_collector] {"stage_name":"log_collector","events_processed":34539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6907.8,"last_update":"2026-03-22T00:06:08.869532292Z"} +2026/03/22 00:06:08 [metric_collector] {"stage_name":"metric_collector","events_processed":21614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4322.8,"last_update":"2026-03-22T00:06:03.870009517Z"} +2026/03/22 00:06:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:06:03.879941143Z"} +2026/03/22 00:06:08 [transform_engine] {"stage_name":"transform_engine","events_processed":720,"events_dropped":0,"avg_latency_ms":711.2206191576839,"throughput_eps":0,"last_update":"2026-03-22T00:06:03.966127476Z"} +2026/03/22 00:06:08 ───────────────────────────────────────────────── +2026/03/22 00:06:13 ── Pipeline Health ────────────────────────────── +2026/03/22 00:06:13 [log_collector] {"stage_name":"log_collector","events_processed":34539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6907.8,"last_update":"2026-03-22T00:06:08.869532292Z"} +2026/03/22 00:06:13 [metric_collector] {"stage_name":"metric_collector","events_processed":21619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4323.8,"last_update":"2026-03-22T00:06:08.869911539Z"} +2026/03/22 00:06:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8650,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:06:08.878861736Z"} +2026/03/22 00:06:13 [transform_engine] {"stage_name":"transform_engine","events_processed":720,"events_dropped":0,"avg_latency_ms":711.2206191576839,"throughput_eps":0,"last_update":"2026-03-22T00:06:08.966180929Z"} +2026/03/22 00:06:13 [detection_layer] {"stage_name":"detection_layer","events_processed":719,"events_dropped":0,"avg_latency_ms":22.188133172306504,"throughput_eps":0,"last_update":"2026-03-22T00:06:08.966151383Z"} +2026/03/22 00:06:13 ───────────────────────────────────────────────── +2026/03/22 00:06:18 ── Pipeline Health ────────────────────────────── +2026/03/22 00:06:18 [log_collector] {"stage_name":"log_collector","events_processed":34539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6907.8,"last_update":"2026-03-22T00:06:18.869407669Z"} +2026/03/22 00:06:18 [metric_collector] {"stage_name":"metric_collector","events_processed":21624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4324.8,"last_update":"2026-03-22T00:06:13.870056224Z"} +2026/03/22 00:06:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:06:13.876176386Z"} +2026/03/22 00:06:18 [transform_engine] {"stage_name":"transform_engine","events_processed":720,"events_dropped":0,"avg_latency_ms":711.2206191576839,"throughput_eps":0,"last_update":"2026-03-22T00:06:13.965550082Z"} +2026/03/22 00:06:18 [detection_layer] {"stage_name":"detection_layer","events_processed":719,"events_dropped":0,"avg_latency_ms":22.188133172306504,"throughput_eps":0,"last_update":"2026-03-22T00:06:13.96560169Z"} +2026/03/22 00:06:18 ───────────────────────────────────────────────── +2026/03/22 00:06:23 ── Pipeline Health ────────────────────────────── +2026/03/22 00:06:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:06:18.877968101Z"} +2026/03/22 00:06:23 [transform_engine] {"stage_name":"transform_engine","events_processed":721,"events_dropped":0,"avg_latency_ms":592.7693503261472,"throughput_eps":0,"last_update":"2026-03-22T00:06:19.084136703Z"} +2026/03/22 00:06:23 [detection_layer] {"stage_name":"detection_layer","events_processed":719,"events_dropped":0,"avg_latency_ms":22.188133172306504,"throughput_eps":0,"last_update":"2026-03-22T00:06:18.966306598Z"} +2026/03/22 00:06:23 [log_collector] {"stage_name":"log_collector","events_processed":34539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6907.8,"last_update":"2026-03-22T00:06:18.869407669Z"} +2026/03/22 00:06:23 [metric_collector] {"stage_name":"metric_collector","events_processed":21629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4325.8,"last_update":"2026-03-22T00:06:18.869937804Z"} +2026/03/22 00:06:23 ───────────────────────────────────────────────── +2026/03/22 00:06:28 ── Pipeline Health ────────────────────────────── +2026/03/22 00:06:28 [metric_collector] {"stage_name":"metric_collector","events_processed":21634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4326.8,"last_update":"2026-03-22T00:06:23.925728676Z"} +2026/03/22 00:06:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:06:24.094868408Z"} +2026/03/22 00:06:28 [transform_engine] {"stage_name":"transform_engine","events_processed":721,"events_dropped":0,"avg_latency_ms":592.7693503261472,"throughput_eps":0,"last_update":"2026-03-22T00:06:23.966004614Z"} +2026/03/22 00:06:28 [detection_layer] {"stage_name":"detection_layer","events_processed":720,"events_dropped":0,"avg_latency_ms":22.643901337845204,"throughput_eps":0,"last_update":"2026-03-22T00:06:23.96598161Z"} +2026/03/22 00:06:28 [log_collector] {"stage_name":"log_collector","events_processed":34539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6907.8,"last_update":"2026-03-22T00:06:23.91911008Z"} +2026/03/22 00:06:28 ───────────────────────────────────────────────── +2026/03/22 00:06:33 ── Pipeline Health ────────────────────────────── +2026/03/22 00:06:33 [detection_layer] {"stage_name":"detection_layer","events_processed":720,"events_dropped":0,"avg_latency_ms":22.643901337845204,"throughput_eps":0,"last_update":"2026-03-22T00:06:28.965732595Z"} +2026/03/22 00:06:33 [log_collector] {"stage_name":"log_collector","events_processed":34539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6907.8,"last_update":"2026-03-22T00:06:28.871391268Z"} +2026/03/22 00:06:33 [metric_collector] {"stage_name":"metric_collector","events_processed":21639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4327.8,"last_update":"2026-03-22T00:06:28.872292162Z"} +2026/03/22 00:06:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:06:28.895443899Z"} +2026/03/22 00:06:33 [transform_engine] {"stage_name":"transform_engine","events_processed":721,"events_dropped":0,"avg_latency_ms":592.7693503261472,"throughput_eps":0,"last_update":"2026-03-22T00:06:28.965709912Z"} +2026/03/22 00:06:33 ───────────────────────────────────────────────── +2026/03/22 00:06:38 ── Pipeline Health ────────────────────────────── +2026/03/22 00:06:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8660,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:06:33.921106939Z"} +2026/03/22 00:06:38 [transform_engine] {"stage_name":"transform_engine","events_processed":721,"events_dropped":0,"avg_latency_ms":592.7693503261472,"throughput_eps":0,"last_update":"2026-03-22T00:06:33.965106845Z"} +2026/03/22 00:06:38 [detection_layer] {"stage_name":"detection_layer","events_processed":720,"events_dropped":0,"avg_latency_ms":22.643901337845204,"throughput_eps":0,"last_update":"2026-03-22T00:06:33.966177403Z"} +2026/03/22 00:06:38 [log_collector] {"stage_name":"log_collector","events_processed":34539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6907.8,"last_update":"2026-03-22T00:06:33.872693456Z"} +2026/03/22 00:06:38 [metric_collector] {"stage_name":"metric_collector","events_processed":21644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4328.8,"last_update":"2026-03-22T00:06:33.873654465Z"} +2026/03/22 00:06:38 ───────────────────────────────────────────────── +2026/03/22 00:06:43 ── Pipeline Health ────────────────────────────── +2026/03/22 00:06:43 [log_collector] {"stage_name":"log_collector","events_processed":34539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6907.8,"last_update":"2026-03-22T00:06:38.870775096Z"} +2026/03/22 00:06:43 [metric_collector] {"stage_name":"metric_collector","events_processed":21649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4329.8,"last_update":"2026-03-22T00:06:38.871396555Z"} +2026/03/22 00:06:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8662,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:06:38.892994229Z"} +2026/03/22 00:06:43 [transform_engine] {"stage_name":"transform_engine","events_processed":721,"events_dropped":0,"avg_latency_ms":592.7693503261472,"throughput_eps":0,"last_update":"2026-03-22T00:06:38.965145151Z"} +2026/03/22 00:06:43 [detection_layer] {"stage_name":"detection_layer","events_processed":720,"events_dropped":0,"avg_latency_ms":22.643901337845204,"throughput_eps":0,"last_update":"2026-03-22T00:06:38.966388611Z"} +2026/03/22 00:06:43 ───────────────────────────────────────────────── +2026/03/22 00:06:48 ── Pipeline Health ────────────────────────────── +2026/03/22 00:06:48 [metric_collector] {"stage_name":"metric_collector","events_processed":21654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4330.8,"last_update":"2026-03-22T00:06:43.871306108Z"} +2026/03/22 00:06:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:06:43.893016487Z"} +2026/03/22 00:06:48 [transform_engine] {"stage_name":"transform_engine","events_processed":721,"events_dropped":0,"avg_latency_ms":592.7693503261472,"throughput_eps":0,"last_update":"2026-03-22T00:06:43.96519863Z"} +2026/03/22 00:06:48 [detection_layer] {"stage_name":"detection_layer","events_processed":720,"events_dropped":0,"avg_latency_ms":22.643901337845204,"throughput_eps":0,"last_update":"2026-03-22T00:06:43.965273393Z"} +2026/03/22 00:06:48 [log_collector] {"stage_name":"log_collector","events_processed":34539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6907.8,"last_update":"2026-03-22T00:06:43.870818054Z"} +2026/03/22 00:06:48 ───────────────────────────────────────────────── +2026/03/22 00:06:53 ── Pipeline Health ────────────────────────────── +2026/03/22 00:06:53 [log_collector] {"stage_name":"log_collector","events_processed":34539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6907.8,"last_update":"2026-03-22T00:06:48.870575991Z"} +2026/03/22 00:06:53 [metric_collector] {"stage_name":"metric_collector","events_processed":21659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4331.8,"last_update":"2026-03-22T00:06:48.871277824Z"} +2026/03/22 00:06:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:06:48.890200257Z"} +2026/03/22 00:06:53 [transform_engine] {"stage_name":"transform_engine","events_processed":722,"events_dropped":0,"avg_latency_ms":501.6171484609178,"throughput_eps":0,"last_update":"2026-03-22T00:06:49.102464134Z"} +2026/03/22 00:06:53 [detection_layer] {"stage_name":"detection_layer","events_processed":720,"events_dropped":0,"avg_latency_ms":22.643901337845204,"throughput_eps":0,"last_update":"2026-03-22T00:06:48.965423391Z"} +2026/03/22 00:06:53 ───────────────────────────────────────────────── +Saved state: 27 clusters, 34540 messages, reason: none +2026/03/22 00:06:58 ── Pipeline Health ────────────────────────────── +2026/03/22 00:06:58 [log_collector] {"stage_name":"log_collector","events_processed":34539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6907.8,"last_update":"2026-03-22T00:06:53.87110743Z"} +2026/03/22 00:06:58 [metric_collector] {"stage_name":"metric_collector","events_processed":21664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4332.8,"last_update":"2026-03-22T00:06:53.87169305Z"} +2026/03/22 00:06:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8668,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:06:53.89206087Z"} +2026/03/22 00:06:58 [transform_engine] {"stage_name":"transform_engine","events_processed":722,"events_dropped":0,"avg_latency_ms":501.6171484609178,"throughput_eps":0,"last_update":"2026-03-22T00:06:53.965414458Z"} +2026/03/22 00:06:58 [detection_layer] {"stage_name":"detection_layer","events_processed":721,"events_dropped":0,"avg_latency_ms":21.307112070276165,"throughput_eps":0,"last_update":"2026-03-22T00:06:53.965466457Z"} +2026/03/22 00:06:58 ───────────────────────────────────────────────── +2026/03/22 00:07:03 ── Pipeline Health ────────────────────────────── +2026/03/22 00:07:03 [log_collector] {"stage_name":"log_collector","events_processed":34544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6908.8,"last_update":"2026-03-22T00:06:58.869845398Z"} +2026/03/22 00:07:03 [metric_collector] {"stage_name":"metric_collector","events_processed":21669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4333.8,"last_update":"2026-03-22T00:06:58.86979384Z"} +2026/03/22 00:07:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8670,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:06:58.879443718Z"} +2026/03/22 00:07:03 [transform_engine] {"stage_name":"transform_engine","events_processed":722,"events_dropped":0,"avg_latency_ms":501.6171484609178,"throughput_eps":0,"last_update":"2026-03-22T00:06:58.965609407Z"} +2026/03/22 00:07:03 [detection_layer] {"stage_name":"detection_layer","events_processed":721,"events_dropped":0,"avg_latency_ms":21.307112070276165,"throughput_eps":0,"last_update":"2026-03-22T00:06:58.96563166Z"} +2026/03/22 00:07:03 ───────────────────────────────────────────────── +2026/03/22 00:07:08 ── Pipeline Health ────────────────────────────── +2026/03/22 00:07:08 [detection_layer] {"stage_name":"detection_layer","events_processed":721,"events_dropped":0,"avg_latency_ms":21.307112070276165,"throughput_eps":0,"last_update":"2026-03-22T00:07:03.965314231Z"} +2026/03/22 00:07:08 [log_collector] {"stage_name":"log_collector","events_processed":34544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6908.8,"last_update":"2026-03-22T00:07:08.870381759Z"} +2026/03/22 00:07:08 [metric_collector] {"stage_name":"metric_collector","events_processed":21674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4334.8,"last_update":"2026-03-22T00:07:03.869826259Z"} +2026/03/22 00:07:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:07:03.886159138Z"} +2026/03/22 00:07:08 [transform_engine] {"stage_name":"transform_engine","events_processed":722,"events_dropped":0,"avg_latency_ms":501.6171484609178,"throughput_eps":0,"last_update":"2026-03-22T00:07:03.965392951Z"} +2026/03/22 00:07:08 ───────────────────────────────────────────────── +2026/03/22 00:07:13 ── Pipeline Health ────────────────────────────── +2026/03/22 00:07:13 [log_collector] {"stage_name":"log_collector","events_processed":34544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6908.8,"last_update":"2026-03-22T00:07:08.870381759Z"} +2026/03/22 00:07:13 [metric_collector] {"stage_name":"metric_collector","events_processed":21679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4335.8,"last_update":"2026-03-22T00:07:08.870541414Z"} +2026/03/22 00:07:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:07:08.876466745Z"} +2026/03/22 00:07:13 [transform_engine] {"stage_name":"transform_engine","events_processed":722,"events_dropped":0,"avg_latency_ms":501.6171484609178,"throughput_eps":0,"last_update":"2026-03-22T00:07:08.965733782Z"} +2026/03/22 00:07:13 [detection_layer] {"stage_name":"detection_layer","events_processed":721,"events_dropped":0,"avg_latency_ms":21.307112070276165,"throughput_eps":0,"last_update":"2026-03-22T00:07:08.96576976Z"} +2026/03/22 00:07:13 ───────────────────────────────────────────────── +2026/03/22 00:07:18 ── Pipeline Health ────────────────────────────── +2026/03/22 00:07:18 [detection_layer] {"stage_name":"detection_layer","events_processed":721,"events_dropped":0,"avg_latency_ms":21.307112070276165,"throughput_eps":0,"last_update":"2026-03-22T00:07:13.966273062Z"} +2026/03/22 00:07:18 [log_collector] {"stage_name":"log_collector","events_processed":34544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6908.8,"last_update":"2026-03-22T00:07:13.869408183Z"} +2026/03/22 00:07:18 [metric_collector] {"stage_name":"metric_collector","events_processed":21684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4336.8,"last_update":"2026-03-22T00:07:13.869853505Z"} +2026/03/22 00:07:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8676,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:07:13.877924011Z"} +2026/03/22 00:07:18 [transform_engine] {"stage_name":"transform_engine","events_processed":722,"events_dropped":0,"avg_latency_ms":501.6171484609178,"throughput_eps":0,"last_update":"2026-03-22T00:07:13.965116738Z"} +2026/03/22 00:07:18 ───────────────────────────────────────────────── +2026/03/22 00:07:23 ── Pipeline Health ────────────────────────────── +2026/03/22 00:07:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:07:18.881851154Z"} +2026/03/22 00:07:23 [transform_engine] {"stage_name":"transform_engine","events_processed":722,"events_dropped":0,"avg_latency_ms":501.6171484609178,"throughput_eps":0,"last_update":"2026-03-22T00:07:13.965116738Z"} +2026/03/22 00:07:23 [detection_layer] {"stage_name":"detection_layer","events_processed":721,"events_dropped":0,"avg_latency_ms":21.307112070276165,"throughput_eps":0,"last_update":"2026-03-22T00:07:18.965502675Z"} +2026/03/22 00:07:23 [log_collector] {"stage_name":"log_collector","events_processed":34544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6908.8,"last_update":"2026-03-22T00:07:23.870271136Z"} +2026/03/22 00:07:23 [metric_collector] {"stage_name":"metric_collector","events_processed":21689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4337.8,"last_update":"2026-03-22T00:07:18.869987567Z"} +2026/03/22 00:07:23 ───────────────────────────────────────────────── +2026/03/22 00:07:28 ── Pipeline Health ────────────────────────────── +2026/03/22 00:07:28 [detection_layer] {"stage_name":"detection_layer","events_processed":721,"events_dropped":0,"avg_latency_ms":21.307112070276165,"throughput_eps":0,"last_update":"2026-03-22T00:07:23.965789801Z"} +2026/03/22 00:07:28 [log_collector] {"stage_name":"log_collector","events_processed":34544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6908.8,"last_update":"2026-03-22T00:07:23.870271136Z"} +2026/03/22 00:07:28 [metric_collector] {"stage_name":"metric_collector","events_processed":21694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4338.8,"last_update":"2026-03-22T00:07:23.870741456Z"} +2026/03/22 00:07:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:07:23.879639225Z"} +2026/03/22 00:07:28 [transform_engine] {"stage_name":"transform_engine","events_processed":723,"events_dropped":0,"avg_latency_ms":1666.5861221687342,"throughput_eps":0,"last_update":"2026-03-22T00:07:25.291684275Z"} +2026/03/22 00:07:28 ───────────────────────────────────────────────── +2026/03/22 00:07:33 ── Pipeline Health ────────────────────────────── +2026/03/22 00:07:33 [log_collector] {"stage_name":"log_collector","events_processed":34544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6908.8,"last_update":"2026-03-22T00:07:28.869424861Z"} +2026/03/22 00:07:33 [metric_collector] {"stage_name":"metric_collector","events_processed":21699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4339.8,"last_update":"2026-03-22T00:07:28.869811491Z"} +2026/03/22 00:07:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:07:28.877176857Z"} +2026/03/22 00:07:33 [transform_engine] {"stage_name":"transform_engine","events_processed":723,"events_dropped":0,"avg_latency_ms":1666.5861221687342,"throughput_eps":0,"last_update":"2026-03-22T00:07:28.965456339Z"} +2026/03/22 00:07:33 [detection_layer] {"stage_name":"detection_layer","events_processed":722,"events_dropped":0,"avg_latency_ms":20.242969056220932,"throughput_eps":0,"last_update":"2026-03-22T00:07:28.96547797Z"} +2026/03/22 00:07:33 ───────────────────────────────────────────────── +2026/03/22 00:07:38 ── Pipeline Health ────────────────────────────── +2026/03/22 00:07:38 [transform_engine] {"stage_name":"transform_engine","events_processed":723,"events_dropped":0,"avg_latency_ms":1666.5861221687342,"throughput_eps":0,"last_update":"2026-03-22T00:07:33.965286325Z"} +2026/03/22 00:07:38 [detection_layer] {"stage_name":"detection_layer","events_processed":722,"events_dropped":0,"avg_latency_ms":20.242969056220932,"throughput_eps":0,"last_update":"2026-03-22T00:07:33.96530975Z"} +2026/03/22 00:07:38 [log_collector] {"stage_name":"log_collector","events_processed":34544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6908.8,"last_update":"2026-03-22T00:07:33.87024411Z"} +2026/03/22 00:07:38 [metric_collector] {"stage_name":"metric_collector","events_processed":21704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4340.8,"last_update":"2026-03-22T00:07:33.870418073Z"} +2026/03/22 00:07:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:07:33.877130039Z"} +2026/03/22 00:07:38 ───────────────────────────────────────────────── +2026/03/22 00:07:43 ── Pipeline Health ────────────────────────────── +2026/03/22 00:07:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:07:38.876495395Z"} +2026/03/22 00:07:43 [transform_engine] {"stage_name":"transform_engine","events_processed":723,"events_dropped":0,"avg_latency_ms":1666.5861221687342,"throughput_eps":0,"last_update":"2026-03-22T00:07:38.965694749Z"} +2026/03/22 00:07:43 [detection_layer] {"stage_name":"detection_layer","events_processed":722,"events_dropped":0,"avg_latency_ms":20.242969056220932,"throughput_eps":0,"last_update":"2026-03-22T00:07:38.965735346Z"} +2026/03/22 00:07:43 [log_collector] {"stage_name":"log_collector","events_processed":34553,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6910.6,"last_update":"2026-03-22T00:07:38.870481504Z"} +2026/03/22 00:07:43 [metric_collector] {"stage_name":"metric_collector","events_processed":21709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4341.8,"last_update":"2026-03-22T00:07:38.870755709Z"} +2026/03/22 00:07:43 ───────────────────────────────────────────────── +2026/03/22 00:07:48 ── Pipeline Health ────────────────────────────── +2026/03/22 00:07:48 [log_collector] {"stage_name":"log_collector","events_processed":34865,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6973,"last_update":"2026-03-22T00:07:48.869921119Z"} +2026/03/22 00:07:48 [metric_collector] {"stage_name":"metric_collector","events_processed":21714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4342.8,"last_update":"2026-03-22T00:07:43.86964579Z"} +2026/03/22 00:07:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8688,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:07:43.876264478Z"} +2026/03/22 00:07:48 [transform_engine] {"stage_name":"transform_engine","events_processed":723,"events_dropped":0,"avg_latency_ms":1666.5861221687342,"throughput_eps":0,"last_update":"2026-03-22T00:07:43.966043263Z"} +2026/03/22 00:07:48 [detection_layer] {"stage_name":"detection_layer","events_processed":722,"events_dropped":0,"avg_latency_ms":20.242969056220932,"throughput_eps":0,"last_update":"2026-03-22T00:07:43.966022583Z"} +2026/03/22 00:07:48 ───────────────────────────────────────────────── +2026/03/22 00:07:53 ── Pipeline Health ────────────────────────────── +2026/03/22 00:07:53 [log_collector] {"stage_name":"log_collector","events_processed":34865,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6973,"last_update":"2026-03-22T00:07:48.869921119Z"} +2026/03/22 00:07:53 [metric_collector] {"stage_name":"metric_collector","events_processed":21719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4343.8,"last_update":"2026-03-22T00:07:48.870337065Z"} +2026/03/22 00:07:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:07:48.879899647Z"} +2026/03/22 00:07:53 [transform_engine] {"stage_name":"transform_engine","events_processed":724,"events_dropped":0,"avg_latency_ms":1709.8113271349873,"throughput_eps":0,"last_update":"2026-03-22T00:07:50.848824074Z"} +2026/03/22 00:07:53 [detection_layer] {"stage_name":"detection_layer","events_processed":722,"events_dropped":0,"avg_latency_ms":20.242969056220932,"throughput_eps":0,"last_update":"2026-03-22T00:07:48.966165168Z"} +2026/03/22 00:07:53 ───────────────────────────────────────────────── +2026/03/22 00:07:58 ── Pipeline Health ────────────────────────────── +2026/03/22 00:07:58 [log_collector] {"stage_name":"log_collector","events_processed":34908,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6981.6,"last_update":"2026-03-22T00:07:53.872895735Z"} +2026/03/22 00:07:58 [metric_collector] {"stage_name":"metric_collector","events_processed":21724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4344.8,"last_update":"2026-03-22T00:07:53.873754299Z"} +2026/03/22 00:07:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:07:53.900801667Z"} +2026/03/22 00:07:58 [transform_engine] {"stage_name":"transform_engine","events_processed":724,"events_dropped":0,"avg_latency_ms":1709.8113271349873,"throughput_eps":0,"last_update":"2026-03-22T00:07:53.966064089Z"} +2026/03/22 00:07:58 [detection_layer] {"stage_name":"detection_layer","events_processed":723,"events_dropped":0,"avg_latency_ms":20.450355044976746,"throughput_eps":0,"last_update":"2026-03-22T00:07:53.96598641Z"} +2026/03/22 00:07:58 ───────────────────────────────────────────────── +2026/03/22 00:08:03 ── Pipeline Health ────────────────────────────── +2026/03/22 00:08:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:07:58.893063916Z"} +2026/03/22 00:08:03 [transform_engine] {"stage_name":"transform_engine","events_processed":724,"events_dropped":0,"avg_latency_ms":1709.8113271349873,"throughput_eps":0,"last_update":"2026-03-22T00:07:58.967667138Z"} +2026/03/22 00:08:03 [detection_layer] {"stage_name":"detection_layer","events_processed":723,"events_dropped":0,"avg_latency_ms":20.450355044976746,"throughput_eps":0,"last_update":"2026-03-22T00:07:58.967666146Z"} +2026/03/22 00:08:03 [log_collector] {"stage_name":"log_collector","events_processed":34908,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6981.6,"last_update":"2026-03-22T00:07:58.870604309Z"} +2026/03/22 00:08:03 [metric_collector] {"stage_name":"metric_collector","events_processed":21729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4345.8,"last_update":"2026-03-22T00:07:58.87118485Z"} +2026/03/22 00:08:03 ───────────────────────────────────────────────── +2026/03/22 00:08:08 ── Pipeline Health ────────────────────────────── +2026/03/22 00:08:08 [log_collector] {"stage_name":"log_collector","events_processed":34908,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6981.6,"last_update":"2026-03-22T00:08:03.870938882Z"} +2026/03/22 00:08:08 [metric_collector] {"stage_name":"metric_collector","events_processed":21734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4346.8,"last_update":"2026-03-22T00:08:03.871876857Z"} +2026/03/22 00:08:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:08:03.895648606Z"} +2026/03/22 00:08:08 [transform_engine] {"stage_name":"transform_engine","events_processed":724,"events_dropped":0,"avg_latency_ms":1709.8113271349873,"throughput_eps":0,"last_update":"2026-03-22T00:08:03.965878428Z"} +2026/03/22 00:08:08 [detection_layer] {"stage_name":"detection_layer","events_processed":723,"events_dropped":0,"avg_latency_ms":20.450355044976746,"throughput_eps":0,"last_update":"2026-03-22T00:08:03.965815368Z"} +2026/03/22 00:08:08 ───────────────────────────────────────────────── +Saved state: 27 clusters, 34909 messages, reason: none +2026/03/22 00:08:13 ── Pipeline Health ────────────────────────────── +2026/03/22 00:08:13 [log_collector] {"stage_name":"log_collector","events_processed":34908,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6981.6,"last_update":"2026-03-22T00:08:08.870889754Z"} +2026/03/22 00:08:13 [metric_collector] {"stage_name":"metric_collector","events_processed":21739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4347.8,"last_update":"2026-03-22T00:08:08.871494732Z"} +2026/03/22 00:08:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:08:08.894493513Z"} +2026/03/22 00:08:13 [transform_engine] {"stage_name":"transform_engine","events_processed":724,"events_dropped":0,"avg_latency_ms":1709.8113271349873,"throughput_eps":0,"last_update":"2026-03-22T00:08:08.965702229Z"} +2026/03/22 00:08:13 [detection_layer] {"stage_name":"detection_layer","events_processed":723,"events_dropped":0,"avg_latency_ms":20.450355044976746,"throughput_eps":0,"last_update":"2026-03-22T00:08:08.965688082Z"} +2026/03/22 00:08:13 ───────────────────────────────────────────────── +2026/03/22 00:08:18 ── Pipeline Health ────────────────────────────── +2026/03/22 00:08:18 [log_collector] {"stage_name":"log_collector","events_processed":34911,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6982.2,"last_update":"2026-03-22T00:08:13.875379106Z"} +2026/03/22 00:08:18 [metric_collector] {"stage_name":"metric_collector","events_processed":21744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4348.8,"last_update":"2026-03-22T00:08:13.875425243Z"} +2026/03/22 00:08:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8700,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:08:13.908457539Z"} +2026/03/22 00:08:18 [transform_engine] {"stage_name":"transform_engine","events_processed":724,"events_dropped":0,"avg_latency_ms":1709.8113271349873,"throughput_eps":0,"last_update":"2026-03-22T00:08:13.975805006Z"} +2026/03/22 00:08:18 [detection_layer] {"stage_name":"detection_layer","events_processed":723,"events_dropped":0,"avg_latency_ms":20.450355044976746,"throughput_eps":0,"last_update":"2026-03-22T00:08:13.97596373Z"} +2026/03/22 00:08:18 ───────────────────────────────────────────────── +2026/03/22 00:08:22 [ANOMALY] time=2026-03-22T00:08:22Z score=0.9381 method=SEAD details=MAD!:w=0.28,s=0.84 RRCF-fast!:w=0.18,s=0.99 RRCF-mid!:w=0.14,s=1.00 RRCF-slow!:w=0.12,s=1.00 COPOD!:w=0.27,s=0.95 +2026/03/22 00:08:23 ── Pipeline Health ────────────────────────────── +2026/03/22 00:08:23 [detection_layer] {"stage_name":"detection_layer","events_processed":723,"events_dropped":0,"avg_latency_ms":20.450355044976746,"throughput_eps":0,"last_update":"2026-03-22T00:08:18.966706883Z"} +2026/03/22 00:08:23 [log_collector] {"stage_name":"log_collector","events_processed":34922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6984.4,"last_update":"2026-03-22T00:08:23.870045389Z"} +2026/03/22 00:08:23 [metric_collector] {"stage_name":"metric_collector","events_processed":21749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4349.8,"last_update":"2026-03-22T00:08:18.871496475Z"} +2026/03/22 00:08:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8702,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:08:18.907369598Z"} +2026/03/22 00:08:23 [transform_engine] {"stage_name":"transform_engine","events_processed":725,"events_dropped":0,"avg_latency_ms":1981.27382590799,"throughput_eps":0,"last_update":"2026-03-22T00:08:22.032616189Z"} +2026/03/22 00:08:23 ───────────────────────────────────────────────── +2026/03/22 00:08:28 ── Pipeline Health ────────────────────────────── +2026/03/22 00:08:28 [detection_layer] {"stage_name":"detection_layer","events_processed":724,"events_dropped":0,"avg_latency_ms":18.171929635981396,"throughput_eps":0,"last_update":"2026-03-22T00:08:23.965545293Z"} +2026/03/22 00:08:28 [log_collector] {"stage_name":"log_collector","events_processed":34922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6984.4,"last_update":"2026-03-22T00:08:23.870045389Z"} +2026/03/22 00:08:28 [metric_collector] {"stage_name":"metric_collector","events_processed":21754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4350.8,"last_update":"2026-03-22T00:08:23.870532422Z"} +2026/03/22 00:08:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:08:23.890337419Z"} +2026/03/22 00:08:28 [transform_engine] {"stage_name":"transform_engine","events_processed":725,"events_dropped":0,"avg_latency_ms":1981.27382590799,"throughput_eps":0,"last_update":"2026-03-22T00:08:23.965568517Z"} +2026/03/22 00:08:28 ───────────────────────────────────────────────── +2026/03/22 00:08:33 ── Pipeline Health ────────────────────────────── +2026/03/22 00:08:33 [log_collector] {"stage_name":"log_collector","events_processed":34938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6987.6,"last_update":"2026-03-22T00:08:28.870489661Z"} +2026/03/22 00:08:33 [metric_collector] {"stage_name":"metric_collector","events_processed":21759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4351.8,"last_update":"2026-03-22T00:08:28.870684423Z"} +2026/03/22 00:08:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:08:28.878896913Z"} +2026/03/22 00:08:33 [transform_engine] {"stage_name":"transform_engine","events_processed":725,"events_dropped":0,"avg_latency_ms":1981.27382590799,"throughput_eps":0,"last_update":"2026-03-22T00:08:28.965112157Z"} +2026/03/22 00:08:33 [detection_layer] {"stage_name":"detection_layer","events_processed":724,"events_dropped":0,"avg_latency_ms":18.171929635981396,"throughput_eps":0,"last_update":"2026-03-22T00:08:28.966283418Z"} +2026/03/22 00:08:33 ───────────────────────────────────────────────── +2026/03/22 00:08:38 ── Pipeline Health ────────────────────────────── +2026/03/22 00:08:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:08:33.878856138Z"} +2026/03/22 00:08:38 [transform_engine] {"stage_name":"transform_engine","events_processed":725,"events_dropped":0,"avg_latency_ms":1981.27382590799,"throughput_eps":0,"last_update":"2026-03-22T00:08:33.966103728Z"} +2026/03/22 00:08:38 [detection_layer] {"stage_name":"detection_layer","events_processed":724,"events_dropped":0,"avg_latency_ms":18.171929635981396,"throughput_eps":0,"last_update":"2026-03-22T00:08:33.966071056Z"} +2026/03/22 00:08:38 [log_collector] {"stage_name":"log_collector","events_processed":34938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6987.6,"last_update":"2026-03-22T00:08:33.870289701Z"} +2026/03/22 00:08:38 [metric_collector] {"stage_name":"metric_collector","events_processed":21764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4352.8,"last_update":"2026-03-22T00:08:33.870901872Z"} +2026/03/22 00:08:38 ───────────────────────────────────────────────── +2026/03/22 00:08:43 ── Pipeline Health ────────────────────────────── +2026/03/22 00:08:43 [log_collector] {"stage_name":"log_collector","events_processed":34938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6987.6,"last_update":"2026-03-22T00:08:43.87025734Z"} +2026/03/22 00:08:43 [metric_collector] {"stage_name":"metric_collector","events_processed":21769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4353.8,"last_update":"2026-03-22T00:08:38.870254295Z"} +2026/03/22 00:08:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:08:38.879483871Z"} +2026/03/22 00:08:43 [transform_engine] {"stage_name":"transform_engine","events_processed":725,"events_dropped":0,"avg_latency_ms":1981.27382590799,"throughput_eps":0,"last_update":"2026-03-22T00:08:38.965825408Z"} +2026/03/22 00:08:43 [detection_layer] {"stage_name":"detection_layer","events_processed":724,"events_dropped":0,"avg_latency_ms":18.171929635981396,"throughput_eps":0,"last_update":"2026-03-22T00:08:38.965859283Z"} +2026/03/22 00:08:43 ───────────────────────────────────────────────── +2026/03/22 00:08:48 ── Pipeline Health ────────────────────────────── +2026/03/22 00:08:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8712,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:08:43.87873648Z"} +2026/03/22 00:08:48 [transform_engine] {"stage_name":"transform_engine","events_processed":725,"events_dropped":0,"avg_latency_ms":1981.27382590799,"throughput_eps":0,"last_update":"2026-03-22T00:08:43.966008339Z"} +2026/03/22 00:08:48 [detection_layer] {"stage_name":"detection_layer","events_processed":724,"events_dropped":0,"avg_latency_ms":18.171929635981396,"throughput_eps":0,"last_update":"2026-03-22T00:08:43.96611346Z"} +2026/03/22 00:08:48 [log_collector] {"stage_name":"log_collector","events_processed":34938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6987.6,"last_update":"2026-03-22T00:08:43.87025734Z"} +2026/03/22 00:08:48 [metric_collector] {"stage_name":"metric_collector","events_processed":21774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4354.8,"last_update":"2026-03-22T00:08:43.870862468Z"} +2026/03/22 00:08:48 ───────────────────────────────────────────────── +2026/03/22 00:08:53 ── Pipeline Health ────────────────────────────── +2026/03/22 00:08:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:08:48.879675937Z"} +2026/03/22 00:08:53 [transform_engine] {"stage_name":"transform_engine","events_processed":726,"events_dropped":0,"avg_latency_ms":1615.3917021263921,"throughput_eps":0,"last_update":"2026-03-22T00:08:49.117973602Z"} +2026/03/22 00:08:53 [detection_layer] {"stage_name":"detection_layer","events_processed":724,"events_dropped":0,"avg_latency_ms":18.171929635981396,"throughput_eps":0,"last_update":"2026-03-22T00:08:48.965992037Z"} +2026/03/22 00:08:53 [log_collector] {"stage_name":"log_collector","events_processed":34938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6987.6,"last_update":"2026-03-22T00:08:48.870721436Z"} +2026/03/22 00:08:53 [metric_collector] {"stage_name":"metric_collector","events_processed":21779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4355.8,"last_update":"2026-03-22T00:08:48.871315624Z"} +2026/03/22 00:08:53 ───────────────────────────────────────────────── +2026/03/22 00:08:58 ── Pipeline Health ────────────────────────────── +2026/03/22 00:08:58 [log_collector] {"stage_name":"log_collector","events_processed":34938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6987.6,"last_update":"2026-03-22T00:08:53.870255412Z"} +2026/03/22 00:08:58 [metric_collector] {"stage_name":"metric_collector","events_processed":21784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4356.8,"last_update":"2026-03-22T00:08:53.870822297Z"} +2026/03/22 00:08:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:08:53.878927662Z"} +2026/03/22 00:08:58 [transform_engine] {"stage_name":"transform_engine","events_processed":726,"events_dropped":0,"avg_latency_ms":1615.3917021263921,"throughput_eps":0,"last_update":"2026-03-22T00:08:53.965128173Z"} +2026/03/22 00:08:58 [detection_layer] {"stage_name":"detection_layer","events_processed":725,"events_dropped":0,"avg_latency_ms":17.666553108785116,"throughput_eps":0,"last_update":"2026-03-22T00:08:53.966339731Z"} +2026/03/22 00:08:58 ───────────────────────────────────────────────── +2026/03/22 00:09:03 ── Pipeline Health ────────────────────────────── +2026/03/22 00:09:03 [transform_engine] {"stage_name":"transform_engine","events_processed":726,"events_dropped":0,"avg_latency_ms":1615.3917021263921,"throughput_eps":0,"last_update":"2026-03-22T00:08:58.965497193Z"} +2026/03/22 00:09:03 [detection_layer] {"stage_name":"detection_layer","events_processed":725,"events_dropped":0,"avg_latency_ms":17.666553108785116,"throughput_eps":0,"last_update":"2026-03-22T00:08:58.965454621Z"} +2026/03/22 00:09:03 [log_collector] {"stage_name":"log_collector","events_processed":34938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6987.6,"last_update":"2026-03-22T00:08:58.86955265Z"} +2026/03/22 00:09:03 [metric_collector] {"stage_name":"metric_collector","events_processed":21789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4357.8,"last_update":"2026-03-22T00:08:58.869916436Z"} +2026/03/22 00:09:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8718,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:08:58.879242398Z"} +2026/03/22 00:09:03 ───────────────────────────────────────────────── +2026/03/22 00:09:08 ── Pipeline Health ────────────────────────────── +2026/03/22 00:09:08 [log_collector] {"stage_name":"log_collector","events_processed":34938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6987.6,"last_update":"2026-03-22T00:09:03.870294712Z"} +2026/03/22 00:09:08 [metric_collector] {"stage_name":"metric_collector","events_processed":21794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4358.8,"last_update":"2026-03-22T00:09:03.870710287Z"} +2026/03/22 00:09:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:09:03.879400572Z"} +2026/03/22 00:09:08 [transform_engine] {"stage_name":"transform_engine","events_processed":726,"events_dropped":0,"avg_latency_ms":1615.3917021263921,"throughput_eps":0,"last_update":"2026-03-22T00:09:03.965610132Z"} +2026/03/22 00:09:08 [detection_layer] {"stage_name":"detection_layer","events_processed":725,"events_dropped":0,"avg_latency_ms":17.666553108785116,"throughput_eps":0,"last_update":"2026-03-22T00:09:03.965708589Z"} +2026/03/22 00:09:08 ───────────────────────────────────────────────── +2026/03/22 00:09:13 ── Pipeline Health ────────────────────────────── +2026/03/22 00:09:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8722,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:09:08.877909805Z"} +2026/03/22 00:09:13 [transform_engine] {"stage_name":"transform_engine","events_processed":726,"events_dropped":0,"avg_latency_ms":1615.3917021263921,"throughput_eps":0,"last_update":"2026-03-22T00:09:08.966139221Z"} +2026/03/22 00:09:13 [detection_layer] {"stage_name":"detection_layer","events_processed":725,"events_dropped":0,"avg_latency_ms":17.666553108785116,"throughput_eps":0,"last_update":"2026-03-22T00:09:08.966155061Z"} +2026/03/22 00:09:13 [log_collector] {"stage_name":"log_collector","events_processed":34938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6987.6,"last_update":"2026-03-22T00:09:13.870062034Z"} +2026/03/22 00:09:13 [metric_collector] {"stage_name":"metric_collector","events_processed":21799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4359.8,"last_update":"2026-03-22T00:09:08.869667817Z"} +2026/03/22 00:09:13 ───────────────────────────────────────────────── +2026/03/22 00:09:18 ── Pipeline Health ────────────────────────────── +2026/03/22 00:09:18 [metric_collector] {"stage_name":"metric_collector","events_processed":21804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4360.8,"last_update":"2026-03-22T00:09:13.87033654Z"} +2026/03/22 00:09:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:09:13.879372246Z"} +2026/03/22 00:09:18 [transform_engine] {"stage_name":"transform_engine","events_processed":726,"events_dropped":0,"avg_latency_ms":1615.3917021263921,"throughput_eps":0,"last_update":"2026-03-22T00:09:13.965705855Z"} +2026/03/22 00:09:18 [detection_layer] {"stage_name":"detection_layer","events_processed":725,"events_dropped":0,"avg_latency_ms":17.666553108785116,"throughput_eps":0,"last_update":"2026-03-22T00:09:13.965740731Z"} +2026/03/22 00:09:18 [log_collector] {"stage_name":"log_collector","events_processed":34938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6987.6,"last_update":"2026-03-22T00:09:13.870062034Z"} +2026/03/22 00:09:18 ───────────────────────────────────────────────── +2026/03/22 00:09:23 ── Pipeline Health ────────────────────────────── +2026/03/22 00:09:23 [transform_engine] {"stage_name":"transform_engine","events_processed":727,"events_dropped":0,"avg_latency_ms":1307.3906367011139,"throughput_eps":0,"last_update":"2026-03-22T00:09:19.041454982Z"} +2026/03/22 00:09:23 [detection_layer] {"stage_name":"detection_layer","events_processed":725,"events_dropped":0,"avg_latency_ms":17.666553108785116,"throughput_eps":0,"last_update":"2026-03-22T00:09:18.966135034Z"} +2026/03/22 00:09:23 [log_collector] {"stage_name":"log_collector","events_processed":34938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6987.6,"last_update":"2026-03-22T00:09:18.869749603Z"} +2026/03/22 00:09:23 [metric_collector] {"stage_name":"metric_collector","events_processed":21809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4361.8,"last_update":"2026-03-22T00:09:18.870138427Z"} +2026/03/22 00:09:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:09:18.879717002Z"} +2026/03/22 00:09:23 ───────────────────────────────────────────────── +Saved state: 27 clusters, 34939 messages, reason: none +2026/03/22 00:09:28 ── Pipeline Health ────────────────────────────── +2026/03/22 00:09:28 [log_collector] {"stage_name":"log_collector","events_processed":34938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6987.6,"last_update":"2026-03-22T00:09:23.87080164Z"} +2026/03/22 00:09:28 [metric_collector] {"stage_name":"metric_collector","events_processed":21814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4362.8,"last_update":"2026-03-22T00:09:23.871343748Z"} +2026/03/22 00:09:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8728,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:09:23.891883626Z"} +2026/03/22 00:09:28 [transform_engine] {"stage_name":"transform_engine","events_processed":727,"events_dropped":0,"avg_latency_ms":1307.3906367011139,"throughput_eps":0,"last_update":"2026-03-22T00:09:23.966090714Z"} +2026/03/22 00:09:28 [detection_layer] {"stage_name":"detection_layer","events_processed":726,"events_dropped":0,"avg_latency_ms":17.777508287028095,"throughput_eps":0,"last_update":"2026-03-22T00:09:23.966165808Z"} +2026/03/22 00:09:28 ───────────────────────────────────────────────── +2026/03/22 00:09:33 ── Pipeline Health ────────────────────────────── +2026/03/22 00:09:33 [log_collector] {"stage_name":"log_collector","events_processed":34941,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6988.2,"last_update":"2026-03-22T00:09:28.870819079Z"} +2026/03/22 00:09:33 [metric_collector] {"stage_name":"metric_collector","events_processed":21819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4363.8,"last_update":"2026-03-22T00:09:28.871385964Z"} +2026/03/22 00:09:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8730,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:09:28.898055095Z"} +2026/03/22 00:09:33 [transform_engine] {"stage_name":"transform_engine","events_processed":727,"events_dropped":0,"avg_latency_ms":1307.3906367011139,"throughput_eps":0,"last_update":"2026-03-22T00:09:28.965117848Z"} +2026/03/22 00:09:33 [detection_layer] {"stage_name":"detection_layer","events_processed":726,"events_dropped":0,"avg_latency_ms":17.777508287028095,"throughput_eps":0,"last_update":"2026-03-22T00:09:28.96624214Z"} +2026/03/22 00:09:33 ───────────────────────────────────────────────── +2026/03/22 00:09:38 ── Pipeline Health ────────────────────────────── +2026/03/22 00:09:38 [metric_collector] {"stage_name":"metric_collector","events_processed":21824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4364.8,"last_update":"2026-03-22T00:09:33.872474978Z"} +2026/03/22 00:09:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:09:33.893233785Z"} +2026/03/22 00:09:38 [transform_engine] {"stage_name":"transform_engine","events_processed":727,"events_dropped":0,"avg_latency_ms":1307.3906367011139,"throughput_eps":0,"last_update":"2026-03-22T00:09:33.965708339Z"} +2026/03/22 00:09:38 [detection_layer] {"stage_name":"detection_layer","events_processed":726,"events_dropped":0,"avg_latency_ms":17.777508287028095,"throughput_eps":0,"last_update":"2026-03-22T00:09:33.965695994Z"} +2026/03/22 00:09:38 [log_collector] {"stage_name":"log_collector","events_processed":34952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6990.4,"last_update":"2026-03-22T00:09:33.870878442Z"} +2026/03/22 00:09:38 ───────────────────────────────────────────────── +2026/03/22 00:09:43 ── Pipeline Health ────────────────────────────── +2026/03/22 00:09:43 [log_collector] {"stage_name":"log_collector","events_processed":34952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6990.4,"last_update":"2026-03-22T00:09:38.870328961Z"} +2026/03/22 00:09:43 [metric_collector] {"stage_name":"metric_collector","events_processed":21829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4365.8,"last_update":"2026-03-22T00:09:38.870914843Z"} +2026/03/22 00:09:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:09:38.891862862Z"} +2026/03/22 00:09:43 [transform_engine] {"stage_name":"transform_engine","events_processed":727,"events_dropped":0,"avg_latency_ms":1307.3906367011139,"throughput_eps":0,"last_update":"2026-03-22T00:09:38.966049043Z"} +2026/03/22 00:09:43 [detection_layer] {"stage_name":"detection_layer","events_processed":726,"events_dropped":0,"avg_latency_ms":17.777508287028095,"throughput_eps":0,"last_update":"2026-03-22T00:09:38.966085192Z"} +2026/03/22 00:09:43 ───────────────────────────────────────────────── +2026/03/22 00:09:48 ── Pipeline Health ────────────────────────────── +2026/03/22 00:09:48 [detection_layer] {"stage_name":"detection_layer","events_processed":726,"events_dropped":0,"avg_latency_ms":17.777508287028095,"throughput_eps":0,"last_update":"2026-03-22T00:09:43.96576751Z"} +2026/03/22 00:09:48 [log_collector] {"stage_name":"log_collector","events_processed":34952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6990.4,"last_update":"2026-03-22T00:09:43.869416669Z"} +2026/03/22 00:09:48 [metric_collector] {"stage_name":"metric_collector","events_processed":21834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4366.8,"last_update":"2026-03-22T00:09:43.869994466Z"} +2026/03/22 00:09:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8736,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:09:43.887603333Z"} +2026/03/22 00:09:48 [transform_engine] {"stage_name":"transform_engine","events_processed":727,"events_dropped":0,"avg_latency_ms":1307.3906367011139,"throughput_eps":0,"last_update":"2026-03-22T00:09:43.965784912Z"} +2026/03/22 00:09:48 ───────────────────────────────────────────────── +2026/03/22 00:09:53 ── Pipeline Health ────────────────────────────── +2026/03/22 00:09:53 [metric_collector] {"stage_name":"metric_collector","events_processed":21844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4368.8,"last_update":"2026-03-22T00:09:53.869751843Z"} +2026/03/22 00:09:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8738,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:09:48.875433673Z"} +2026/03/22 00:09:53 [transform_engine] {"stage_name":"transform_engine","events_processed":728,"events_dropped":0,"avg_latency_ms":1074.6207305608912,"throughput_eps":0,"last_update":"2026-03-22T00:09:49.10926562Z"} +2026/03/22 00:09:53 [detection_layer] {"stage_name":"detection_layer","events_processed":726,"events_dropped":0,"avg_latency_ms":17.777508287028095,"throughput_eps":0,"last_update":"2026-03-22T00:09:48.96582167Z"} +2026/03/22 00:09:53 [log_collector] {"stage_name":"log_collector","events_processed":34952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6990.4,"last_update":"2026-03-22T00:09:53.869756833Z"} +2026/03/22 00:09:53 ───────────────────────────────────────────────── +2026/03/22 00:09:58 ── Pipeline Health ────────────────────────────── +2026/03/22 00:09:58 [metric_collector] {"stage_name":"metric_collector","events_processed":21844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4368.8,"last_update":"2026-03-22T00:09:53.869751843Z"} +2026/03/22 00:09:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8740,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:09:53.876462009Z"} +2026/03/22 00:09:58 [transform_engine] {"stage_name":"transform_engine","events_processed":728,"events_dropped":0,"avg_latency_ms":1074.6207305608912,"throughput_eps":0,"last_update":"2026-03-22T00:09:53.965768606Z"} +2026/03/22 00:09:58 [detection_layer] {"stage_name":"detection_layer","events_processed":727,"events_dropped":0,"avg_latency_ms":17.054158029622478,"throughput_eps":0,"last_update":"2026-03-22T00:09:53.965737046Z"} +2026/03/22 00:09:58 [log_collector] {"stage_name":"log_collector","events_processed":34952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6990.4,"last_update":"2026-03-22T00:09:58.869784614Z"} +2026/03/22 00:09:58 ───────────────────────────────────────────────── +2026/03/22 00:10:03 ── Pipeline Health ────────────────────────────── +2026/03/22 00:10:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:09:58.878674042Z"} +2026/03/22 00:10:03 [transform_engine] {"stage_name":"transform_engine","events_processed":728,"events_dropped":0,"avg_latency_ms":1074.6207305608912,"throughput_eps":0,"last_update":"2026-03-22T00:09:58.965905959Z"} +2026/03/22 00:10:03 [detection_layer] {"stage_name":"detection_layer","events_processed":727,"events_dropped":0,"avg_latency_ms":17.054158029622478,"throughput_eps":0,"last_update":"2026-03-22T00:09:58.965876873Z"} +2026/03/22 00:10:03 [log_collector] {"stage_name":"log_collector","events_processed":34952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6990.4,"last_update":"2026-03-22T00:09:58.869784614Z"} +2026/03/22 00:10:03 [metric_collector] {"stage_name":"metric_collector","events_processed":21849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4369.8,"last_update":"2026-03-22T00:09:58.870068799Z"} +2026/03/22 00:10:03 ───────────────────────────────────────────────── +2026/03/22 00:10:08 ── Pipeline Health ────────────────────────────── +2026/03/22 00:10:08 [log_collector] {"stage_name":"log_collector","events_processed":34952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6990.4,"last_update":"2026-03-22T00:10:08.869958406Z"} +2026/03/22 00:10:08 [metric_collector] {"stage_name":"metric_collector","events_processed":21854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4370.8,"last_update":"2026-03-22T00:10:03.870249153Z"} +2026/03/22 00:10:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:10:03.889886554Z"} +2026/03/22 00:10:08 [transform_engine] {"stage_name":"transform_engine","events_processed":728,"events_dropped":0,"avg_latency_ms":1074.6207305608912,"throughput_eps":0,"last_update":"2026-03-22T00:10:03.966149926Z"} +2026/03/22 00:10:08 [detection_layer] {"stage_name":"detection_layer","events_processed":727,"events_dropped":0,"avg_latency_ms":17.054158029622478,"throughput_eps":0,"last_update":"2026-03-22T00:10:03.966254265Z"} +2026/03/22 00:10:08 ───────────────────────────────────────────────── +2026/03/22 00:10:13 ── Pipeline Health ────────────────────────────── +2026/03/22 00:10:13 [metric_collector] {"stage_name":"metric_collector","events_processed":21859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4371.8,"last_update":"2026-03-22T00:10:08.870491967Z"} +2026/03/22 00:10:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:10:08.879552822Z"} +2026/03/22 00:10:13 [transform_engine] {"stage_name":"transform_engine","events_processed":728,"events_dropped":0,"avg_latency_ms":1074.6207305608912,"throughput_eps":0,"last_update":"2026-03-22T00:10:08.965990329Z"} +2026/03/22 00:10:13 [detection_layer] {"stage_name":"detection_layer","events_processed":727,"events_dropped":0,"avg_latency_ms":17.054158029622478,"throughput_eps":0,"last_update":"2026-03-22T00:10:08.965877424Z"} +2026/03/22 00:10:13 [log_collector] {"stage_name":"log_collector","events_processed":34952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6990.4,"last_update":"2026-03-22T00:10:08.869958406Z"} +2026/03/22 00:10:13 ───────────────────────────────────────────────── +2026/03/22 00:10:18 ── Pipeline Health ────────────────────────────── +2026/03/22 00:10:18 [log_collector] {"stage_name":"log_collector","events_processed":34952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6990.4,"last_update":"2026-03-22T00:10:18.869403706Z"} +2026/03/22 00:10:18 [metric_collector] {"stage_name":"metric_collector","events_processed":21864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4372.8,"last_update":"2026-03-22T00:10:13.869855074Z"} +2026/03/22 00:10:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:10:13.87557322Z"} +2026/03/22 00:10:18 [transform_engine] {"stage_name":"transform_engine","events_processed":728,"events_dropped":0,"avg_latency_ms":1074.6207305608912,"throughput_eps":0,"last_update":"2026-03-22T00:10:13.965852573Z"} +2026/03/22 00:10:18 [detection_layer] {"stage_name":"detection_layer","events_processed":727,"events_dropped":0,"avg_latency_ms":17.054158029622478,"throughput_eps":0,"last_update":"2026-03-22T00:10:13.965741952Z"} +2026/03/22 00:10:18 ───────────────────────────────────────────────── +2026/03/22 00:10:23 ── Pipeline Health ────────────────────────────── +2026/03/22 00:10:23 [transform_engine] {"stage_name":"transform_engine","events_processed":729,"events_dropped":0,"avg_latency_ms":874.697144448713,"throughput_eps":0,"last_update":"2026-03-22T00:10:19.041258012Z"} +2026/03/22 00:10:23 [detection_layer] {"stage_name":"detection_layer","events_processed":727,"events_dropped":0,"avg_latency_ms":17.054158029622478,"throughput_eps":0,"last_update":"2026-03-22T00:10:18.966125894Z"} +2026/03/22 00:10:23 [log_collector] {"stage_name":"log_collector","events_processed":34952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6990.4,"last_update":"2026-03-22T00:10:18.869403706Z"} +2026/03/22 00:10:23 [metric_collector] {"stage_name":"metric_collector","events_processed":21869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4373.8,"last_update":"2026-03-22T00:10:18.869689273Z"} +2026/03/22 00:10:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8750,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:10:18.877716309Z"} +2026/03/22 00:10:23 ───────────────────────────────────────────────── +2026/03/22 00:10:28 ── Pipeline Health ────────────────────────────── +2026/03/22 00:10:28 [transform_engine] {"stage_name":"transform_engine","events_processed":729,"events_dropped":0,"avg_latency_ms":874.697144448713,"throughput_eps":0,"last_update":"2026-03-22T00:10:23.965559246Z"} +2026/03/22 00:10:28 [detection_layer] {"stage_name":"detection_layer","events_processed":728,"events_dropped":0,"avg_latency_ms":17.498574823697982,"throughput_eps":0,"last_update":"2026-03-22T00:10:23.96544602Z"} +2026/03/22 00:10:28 [log_collector] {"stage_name":"log_collector","events_processed":34952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6990.4,"last_update":"2026-03-22T00:10:28.869863755Z"} +2026/03/22 00:10:28 [metric_collector] {"stage_name":"metric_collector","events_processed":21874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4374.8,"last_update":"2026-03-22T00:10:23.869797065Z"} +2026/03/22 00:10:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8752,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:10:23.878083317Z"} +2026/03/22 00:10:28 ───────────────────────────────────────────────── +2026/03/22 00:10:33 ── Pipeline Health ────────────────────────────── +2026/03/22 00:10:33 [transform_engine] {"stage_name":"transform_engine","events_processed":729,"events_dropped":0,"avg_latency_ms":874.697144448713,"throughput_eps":0,"last_update":"2026-03-22T00:10:28.966121896Z"} +2026/03/22 00:10:33 [detection_layer] {"stage_name":"detection_layer","events_processed":728,"events_dropped":0,"avg_latency_ms":17.498574823697982,"throughput_eps":0,"last_update":"2026-03-22T00:10:28.966243559Z"} +2026/03/22 00:10:33 [log_collector] {"stage_name":"log_collector","events_processed":34952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6990.4,"last_update":"2026-03-22T00:10:33.869411159Z"} +2026/03/22 00:10:33 [metric_collector] {"stage_name":"metric_collector","events_processed":21879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4375.8,"last_update":"2026-03-22T00:10:28.870309067Z"} +2026/03/22 00:10:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:10:28.879764378Z"} +2026/03/22 00:10:33 ───────────────────────────────────────────────── +2026/03/22 00:10:38 ── Pipeline Health ────────────────────────────── +2026/03/22 00:10:38 [log_collector] {"stage_name":"log_collector","events_processed":34952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6990.4,"last_update":"2026-03-22T00:10:38.870395881Z"} +2026/03/22 00:10:38 [metric_collector] {"stage_name":"metric_collector","events_processed":21884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4376.8,"last_update":"2026-03-22T00:10:33.869867973Z"} +2026/03/22 00:10:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:10:33.87869952Z"} +2026/03/22 00:10:38 [transform_engine] {"stage_name":"transform_engine","events_processed":729,"events_dropped":0,"avg_latency_ms":874.697144448713,"throughput_eps":0,"last_update":"2026-03-22T00:10:33.965878291Z"} +2026/03/22 00:10:38 [detection_layer] {"stage_name":"detection_layer","events_processed":728,"events_dropped":0,"avg_latency_ms":17.498574823697982,"throughput_eps":0,"last_update":"2026-03-22T00:10:33.965985065Z"} +2026/03/22 00:10:38 ───────────────────────────────────────────────── +2026/03/22 00:10:43 ── Pipeline Health ────────────────────────────── +2026/03/22 00:10:43 [log_collector] {"stage_name":"log_collector","events_processed":34952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6990.4,"last_update":"2026-03-22T00:10:43.869402432Z"} +2026/03/22 00:10:43 [metric_collector] {"stage_name":"metric_collector","events_processed":21889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4377.8,"last_update":"2026-03-22T00:10:38.870681588Z"} +2026/03/22 00:10:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8758,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:10:38.879566096Z"} +2026/03/22 00:10:43 [transform_engine] {"stage_name":"transform_engine","events_processed":729,"events_dropped":0,"avg_latency_ms":874.697144448713,"throughput_eps":0,"last_update":"2026-03-22T00:10:38.965936772Z"} +2026/03/22 00:10:43 [detection_layer] {"stage_name":"detection_layer","events_processed":728,"events_dropped":0,"avg_latency_ms":17.498574823697982,"throughput_eps":0,"last_update":"2026-03-22T00:10:38.965850156Z"} +2026/03/22 00:10:43 ───────────────────────────────────────────────── +2026/03/22 00:10:48 ── Pipeline Health ────────────────────────────── +2026/03/22 00:10:48 [log_collector] {"stage_name":"log_collector","events_processed":34952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6990.4,"last_update":"2026-03-22T00:10:43.869402432Z"} +2026/03/22 00:10:48 [metric_collector] {"stage_name":"metric_collector","events_processed":21894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4378.8,"last_update":"2026-03-22T00:10:43.869644506Z"} +2026/03/22 00:10:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:10:43.88253857Z"} +2026/03/22 00:10:48 [transform_engine] {"stage_name":"transform_engine","events_processed":729,"events_dropped":0,"avg_latency_ms":874.697144448713,"throughput_eps":0,"last_update":"2026-03-22T00:10:43.966005618Z"} +2026/03/22 00:10:48 [detection_layer] {"stage_name":"detection_layer","events_processed":728,"events_dropped":0,"avg_latency_ms":17.498574823697982,"throughput_eps":0,"last_update":"2026-03-22T00:10:43.965995047Z"} +2026/03/22 00:10:48 ───────────────────────────────────────────────── +2026/03/22 00:10:53 ── Pipeline Health ────────────────────────────── +2026/03/22 00:10:53 [transform_engine] {"stage_name":"transform_engine","events_processed":730,"events_dropped":0,"avg_latency_ms":713.5735243589704,"throughput_eps":0,"last_update":"2026-03-22T00:10:49.034761073Z"} +2026/03/22 00:10:53 [detection_layer] {"stage_name":"detection_layer","events_processed":728,"events_dropped":0,"avg_latency_ms":17.498574823697982,"throughput_eps":0,"last_update":"2026-03-22T00:10:48.965649658Z"} +2026/03/22 00:10:53 [log_collector] {"stage_name":"log_collector","events_processed":34952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6990.4,"last_update":"2026-03-22T00:10:48.869575234Z"} +2026/03/22 00:10:53 [metric_collector] {"stage_name":"metric_collector","events_processed":21899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4379.8,"last_update":"2026-03-22T00:10:48.869893523Z"} +2026/03/22 00:10:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:10:48.876491624Z"} +2026/03/22 00:10:53 ───────────────────────────────────────────────── +Saved state: 27 clusters, 34953 messages, reason: none +2026/03/22 00:10:58 ── Pipeline Health ────────────────────────────── +2026/03/22 00:10:58 [transform_engine] {"stage_name":"transform_engine","events_processed":730,"events_dropped":0,"avg_latency_ms":713.5735243589704,"throughput_eps":0,"last_update":"2026-03-22T00:10:53.965248236Z"} +2026/03/22 00:10:58 [detection_layer] {"stage_name":"detection_layer","events_processed":729,"events_dropped":0,"avg_latency_ms":17.684419458958388,"throughput_eps":0,"last_update":"2026-03-22T00:10:53.96525542Z"} +2026/03/22 00:10:58 [log_collector] {"stage_name":"log_collector","events_processed":34952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6990.4,"last_update":"2026-03-22T00:10:53.8710845Z"} +2026/03/22 00:10:58 [metric_collector] {"stage_name":"metric_collector","events_processed":21904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4380.8,"last_update":"2026-03-22T00:10:53.871626287Z"} +2026/03/22 00:10:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:10:53.893122499Z"} +2026/03/22 00:10:58 ───────────────────────────────────────────────── +2026/03/22 00:11:03 ── Pipeline Health ────────────────────────────── +2026/03/22 00:11:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8766,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:10:58.892274106Z"} +2026/03/22 00:11:03 [transform_engine] {"stage_name":"transform_engine","events_processed":730,"events_dropped":0,"avg_latency_ms":713.5735243589704,"throughput_eps":0,"last_update":"2026-03-22T00:10:58.965438192Z"} +2026/03/22 00:11:03 [detection_layer] {"stage_name":"detection_layer","events_processed":729,"events_dropped":0,"avg_latency_ms":17.684419458958388,"throughput_eps":0,"last_update":"2026-03-22T00:10:58.965454393Z"} +2026/03/22 00:11:03 [log_collector] {"stage_name":"log_collector","events_processed":34957,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6991.4,"last_update":"2026-03-22T00:10:58.871046879Z"} +2026/03/22 00:11:03 [metric_collector] {"stage_name":"metric_collector","events_processed":21909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4381.8,"last_update":"2026-03-22T00:10:58.87158583Z"} +2026/03/22 00:11:03 ───────────────────────────────────────────────── +2026/03/22 00:11:08 ── Pipeline Health ────────────────────────────── +2026/03/22 00:11:08 [log_collector] {"stage_name":"log_collector","events_processed":34957,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6991.4,"last_update":"2026-03-22T00:11:03.870836452Z"} +2026/03/22 00:11:08 [metric_collector] {"stage_name":"metric_collector","events_processed":21914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4382.8,"last_update":"2026-03-22T00:11:03.871439065Z"} +2026/03/22 00:11:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8768,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:11:03.899155146Z"} +2026/03/22 00:11:08 [transform_engine] {"stage_name":"transform_engine","events_processed":730,"events_dropped":0,"avg_latency_ms":713.5735243589704,"throughput_eps":0,"last_update":"2026-03-22T00:11:03.965582134Z"} +2026/03/22 00:11:08 [detection_layer] {"stage_name":"detection_layer","events_processed":729,"events_dropped":0,"avg_latency_ms":17.684419458958388,"throughput_eps":0,"last_update":"2026-03-22T00:11:03.965570402Z"} +2026/03/22 00:11:08 ───────────────────────────────────────────────── +2026/03/22 00:11:13 ── Pipeline Health ────────────────────────────── +2026/03/22 00:11:13 [log_collector] {"stage_name":"log_collector","events_processed":34957,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6991.4,"last_update":"2026-03-22T00:11:08.871053148Z"} +2026/03/22 00:11:13 [metric_collector] {"stage_name":"metric_collector","events_processed":21919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4383.8,"last_update":"2026-03-22T00:11:08.872368365Z"} +2026/03/22 00:11:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8770,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:11:08.900686899Z"} +2026/03/22 00:11:13 [transform_engine] {"stage_name":"transform_engine","events_processed":730,"events_dropped":0,"avg_latency_ms":713.5735243589704,"throughput_eps":0,"last_update":"2026-03-22T00:11:08.96582967Z"} +2026/03/22 00:11:13 [detection_layer] {"stage_name":"detection_layer","events_processed":729,"events_dropped":0,"avg_latency_ms":17.684419458958388,"throughput_eps":0,"last_update":"2026-03-22T00:11:08.965838917Z"} +2026/03/22 00:11:13 ───────────────────────────────────────────────── +2026/03/22 00:11:18 ── Pipeline Health ────────────────────────────── +2026/03/22 00:11:18 [transform_engine] {"stage_name":"transform_engine","events_processed":730,"events_dropped":0,"avg_latency_ms":713.5735243589704,"throughput_eps":0,"last_update":"2026-03-22T00:11:13.966080444Z"} +2026/03/22 00:11:18 [detection_layer] {"stage_name":"detection_layer","events_processed":729,"events_dropped":0,"avg_latency_ms":17.684419458958388,"throughput_eps":0,"last_update":"2026-03-22T00:11:13.966137284Z"} +2026/03/22 00:11:18 [log_collector] {"stage_name":"log_collector","events_processed":34957,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6991.4,"last_update":"2026-03-22T00:11:13.870492959Z"} +2026/03/22 00:11:18 [metric_collector] {"stage_name":"metric_collector","events_processed":21924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4384.8,"last_update":"2026-03-22T00:11:13.87119854Z"} +2026/03/22 00:11:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:11:13.897919616Z"} +2026/03/22 00:11:18 ───────────────────────────────────────────────── +2026/03/22 00:11:23 ── Pipeline Health ────────────────────────────── +2026/03/22 00:11:23 [log_collector] {"stage_name":"log_collector","events_processed":34957,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6991.4,"last_update":"2026-03-22T00:11:18.874013196Z"} +2026/03/22 00:11:23 [metric_collector] {"stage_name":"metric_collector","events_processed":21929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4385.8,"last_update":"2026-03-22T00:11:18.874475331Z"} +2026/03/22 00:11:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:11:18.902128541Z"} +2026/03/22 00:11:23 [transform_engine] {"stage_name":"transform_engine","events_processed":731,"events_dropped":0,"avg_latency_ms":601.1088550871764,"throughput_eps":0,"last_update":"2026-03-22T00:11:19.11653026Z"} +2026/03/22 00:11:23 [detection_layer] {"stage_name":"detection_layer","events_processed":729,"events_dropped":0,"avg_latency_ms":17.684419458958388,"throughput_eps":0,"last_update":"2026-03-22T00:11:18.965397956Z"} +2026/03/22 00:11:23 ───────────────────────────────────────────────── +2026/03/22 00:11:28 ── Pipeline Health ────────────────────────────── +2026/03/22 00:11:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:11:23.899587848Z"} +2026/03/22 00:11:28 [transform_engine] {"stage_name":"transform_engine","events_processed":731,"events_dropped":0,"avg_latency_ms":601.1088550871764,"throughput_eps":0,"last_update":"2026-03-22T00:11:23.966262313Z"} +2026/03/22 00:11:28 [detection_layer] {"stage_name":"detection_layer","events_processed":730,"events_dropped":0,"avg_latency_ms":16.66518756716671,"throughput_eps":0,"last_update":"2026-03-22T00:11:23.966267232Z"} +2026/03/22 00:11:28 [log_collector] {"stage_name":"log_collector","events_processed":34957,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6991.4,"last_update":"2026-03-22T00:11:28.869402354Z"} +2026/03/22 00:11:28 [metric_collector] {"stage_name":"metric_collector","events_processed":21934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4386.8,"last_update":"2026-03-22T00:11:23.872596204Z"} +2026/03/22 00:11:28 ───────────────────────────────────────────────── +2026/03/22 00:11:33 ── Pipeline Health ────────────────────────────── +2026/03/22 00:11:33 [log_collector] {"stage_name":"log_collector","events_processed":34957,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6991.4,"last_update":"2026-03-22T00:11:33.869981379Z"} +2026/03/22 00:11:33 [metric_collector] {"stage_name":"metric_collector","events_processed":21939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4387.8,"last_update":"2026-03-22T00:11:28.869584623Z"} +2026/03/22 00:11:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:11:28.877529183Z"} +2026/03/22 00:11:33 [transform_engine] {"stage_name":"transform_engine","events_processed":731,"events_dropped":0,"avg_latency_ms":601.1088550871764,"throughput_eps":0,"last_update":"2026-03-22T00:11:28.965665214Z"} +2026/03/22 00:11:33 [detection_layer] {"stage_name":"detection_layer","events_processed":730,"events_dropped":0,"avg_latency_ms":16.66518756716671,"throughput_eps":0,"last_update":"2026-03-22T00:11:28.965638864Z"} +2026/03/22 00:11:33 ───────────────────────────────────────────────── +2026/03/22 00:11:38 ── Pipeline Health ────────────────────────────── +2026/03/22 00:11:38 [log_collector] {"stage_name":"log_collector","events_processed":34957,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6991.4,"last_update":"2026-03-22T00:11:33.869981379Z"} +2026/03/22 00:11:38 [metric_collector] {"stage_name":"metric_collector","events_processed":21944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4388.8,"last_update":"2026-03-22T00:11:33.870491526Z"} +2026/03/22 00:11:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8780,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:11:33.878033594Z"} +2026/03/22 00:11:38 [transform_engine] {"stage_name":"transform_engine","events_processed":731,"events_dropped":0,"avg_latency_ms":601.1088550871764,"throughput_eps":0,"last_update":"2026-03-22T00:11:33.965151889Z"} +2026/03/22 00:11:38 [detection_layer] {"stage_name":"detection_layer","events_processed":730,"events_dropped":0,"avg_latency_ms":16.66518756716671,"throughput_eps":0,"last_update":"2026-03-22T00:11:33.96629146Z"} +2026/03/22 00:11:38 ───────────────────────────────────────────────── +2026/03/22 00:11:43 ── Pipeline Health ────────────────────────────── +2026/03/22 00:11:43 [log_collector] {"stage_name":"log_collector","events_processed":34957,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6991.4,"last_update":"2026-03-22T00:11:38.869436041Z"} +2026/03/22 00:11:43 [metric_collector] {"stage_name":"metric_collector","events_processed":21949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4389.8,"last_update":"2026-03-22T00:11:38.86970157Z"} +2026/03/22 00:11:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8782,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:11:38.876985965Z"} +2026/03/22 00:11:43 [transform_engine] {"stage_name":"transform_engine","events_processed":731,"events_dropped":0,"avg_latency_ms":601.1088550871764,"throughput_eps":0,"last_update":"2026-03-22T00:11:38.966115471Z"} +2026/03/22 00:11:43 [detection_layer] {"stage_name":"detection_layer","events_processed":730,"events_dropped":0,"avg_latency_ms":16.66518756716671,"throughput_eps":0,"last_update":"2026-03-22T00:11:38.966134528Z"} +2026/03/22 00:11:43 ───────────────────────────────────────────────── +Saved state: 28 clusters, 35173 messages, reason: cluster_created +Saved state: 29 clusters, 35174 messages, reason: cluster_created +2026/03/22 00:11:48 ── Pipeline Health ────────────────────────────── +2026/03/22 00:11:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:11:43.877707035Z"} +2026/03/22 00:11:48 [transform_engine] {"stage_name":"transform_engine","events_processed":731,"events_dropped":0,"avg_latency_ms":601.1088550871764,"throughput_eps":0,"last_update":"2026-03-22T00:11:43.965421552Z"} +2026/03/22 00:11:48 [detection_layer] {"stage_name":"detection_layer","events_processed":730,"events_dropped":0,"avg_latency_ms":16.66518756716671,"throughput_eps":0,"last_update":"2026-03-22T00:11:43.965404971Z"} +2026/03/22 00:11:48 [log_collector] {"stage_name":"log_collector","events_processed":35009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7001.8,"last_update":"2026-03-22T00:11:43.869672102Z"} +2026/03/22 00:11:48 [metric_collector] {"stage_name":"metric_collector","events_processed":21954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4390.8,"last_update":"2026-03-22T00:11:43.86978586Z"} +2026/03/22 00:11:48 ───────────────────────────────────────────────── +2026/03/22 00:11:53 ── Pipeline Health ────────────────────────────── +2026/03/22 00:11:53 [log_collector] {"stage_name":"log_collector","events_processed":35229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7045.8,"last_update":"2026-03-22T00:11:48.870002244Z"} +2026/03/22 00:11:53 [metric_collector] {"stage_name":"metric_collector","events_processed":21959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4391.8,"last_update":"2026-03-22T00:11:48.870143915Z"} +2026/03/22 00:11:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:11:48.875467557Z"} +2026/03/22 00:11:53 [transform_engine] {"stage_name":"transform_engine","events_processed":732,"events_dropped":0,"avg_latency_ms":873.7713832697411,"throughput_eps":0,"last_update":"2026-03-22T00:11:50.930086404Z"} +2026/03/22 00:11:53 [detection_layer] {"stage_name":"detection_layer","events_processed":730,"events_dropped":0,"avg_latency_ms":16.66518756716671,"throughput_eps":0,"last_update":"2026-03-22T00:11:48.965652835Z"} +2026/03/22 00:11:53 ───────────────────────────────────────────────── +2026/03/22 00:11:58 ── Pipeline Health ────────────────────────────── +2026/03/22 00:11:58 [log_collector] {"stage_name":"log_collector","events_processed":35323,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7064.6,"last_update":"2026-03-22T00:11:53.869404861Z"} +2026/03/22 00:11:58 [metric_collector] {"stage_name":"metric_collector","events_processed":21964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4392.8,"last_update":"2026-03-22T00:11:53.869847048Z"} +2026/03/22 00:11:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:11:53.878568905Z"} +2026/03/22 00:11:58 [transform_engine] {"stage_name":"transform_engine","events_processed":732,"events_dropped":0,"avg_latency_ms":873.7713832697411,"throughput_eps":0,"last_update":"2026-03-22T00:11:53.966025611Z"} +2026/03/22 00:11:58 [detection_layer] {"stage_name":"detection_layer","events_processed":731,"events_dropped":0,"avg_latency_ms":17.46974725373337,"throughput_eps":0,"last_update":"2026-03-22T00:11:53.96600969Z"} +2026/03/22 00:11:58 ───────────────────────────────────────────────── +2026/03/22 00:12:03 ── Pipeline Health ────────────────────────────── +2026/03/22 00:12:03 [log_collector] {"stage_name":"log_collector","events_processed":35323,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7064.6,"last_update":"2026-03-22T00:11:58.869418907Z"} +2026/03/22 00:12:03 [metric_collector] {"stage_name":"metric_collector","events_processed":21969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4393.8,"last_update":"2026-03-22T00:11:58.869835775Z"} +2026/03/22 00:12:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:11:58.878730084Z"} +2026/03/22 00:12:03 [transform_engine] {"stage_name":"transform_engine","events_processed":732,"events_dropped":0,"avg_latency_ms":873.7713832697411,"throughput_eps":0,"last_update":"2026-03-22T00:11:58.965931571Z"} +2026/03/22 00:12:03 [detection_layer] {"stage_name":"detection_layer","events_processed":731,"events_dropped":0,"avg_latency_ms":17.46974725373337,"throughput_eps":0,"last_update":"2026-03-22T00:11:58.965921853Z"} +2026/03/22 00:12:03 ───────────────────────────────────────────────── +2026/03/22 00:12:08 ── Pipeline Health ────────────────────────────── +2026/03/22 00:12:08 [log_collector] {"stage_name":"log_collector","events_processed":35323,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7064.6,"last_update":"2026-03-22T00:12:03.869508549Z"} +2026/03/22 00:12:08 [metric_collector] {"stage_name":"metric_collector","events_processed":21974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4394.8,"last_update":"2026-03-22T00:12:03.869867647Z"} +2026/03/22 00:12:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:12:03.878105418Z"} +2026/03/22 00:12:08 [transform_engine] {"stage_name":"transform_engine","events_processed":732,"events_dropped":0,"avg_latency_ms":873.7713832697411,"throughput_eps":0,"last_update":"2026-03-22T00:12:03.965463616Z"} +2026/03/22 00:12:08 [detection_layer] {"stage_name":"detection_layer","events_processed":731,"events_dropped":0,"avg_latency_ms":17.46974725373337,"throughput_eps":0,"last_update":"2026-03-22T00:12:03.965439731Z"} +2026/03/22 00:12:08 ───────────────────────────────────────────────── +2026/03/22 00:12:13 ── Pipeline Health ────────────────────────────── +2026/03/22 00:12:13 [metric_collector] {"stage_name":"metric_collector","events_processed":21979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4395.8,"last_update":"2026-03-22T00:12:08.869607949Z"} +2026/03/22 00:12:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:12:08.877716373Z"} +2026/03/22 00:12:13 [transform_engine] {"stage_name":"transform_engine","events_processed":732,"events_dropped":0,"avg_latency_ms":873.7713832697411,"throughput_eps":0,"last_update":"2026-03-22T00:12:08.965124117Z"} +2026/03/22 00:12:13 [detection_layer] {"stage_name":"detection_layer","events_processed":731,"events_dropped":0,"avg_latency_ms":17.46974725373337,"throughput_eps":0,"last_update":"2026-03-22T00:12:08.966230455Z"} +2026/03/22 00:12:13 [log_collector] {"stage_name":"log_collector","events_processed":35326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7065.2,"last_update":"2026-03-22T00:12:08.869391976Z"} +2026/03/22 00:12:13 ───────────────────────────────────────────────── +2026/03/22 00:12:18 ── Pipeline Health ────────────────────────────── +2026/03/22 00:12:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8796,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:12:13.878058798Z"} +2026/03/22 00:12:18 [transform_engine] {"stage_name":"transform_engine","events_processed":732,"events_dropped":0,"avg_latency_ms":873.7713832697411,"throughput_eps":0,"last_update":"2026-03-22T00:12:13.965194081Z"} +2026/03/22 00:12:18 [detection_layer] {"stage_name":"detection_layer","events_processed":731,"events_dropped":0,"avg_latency_ms":17.46974725373337,"throughput_eps":0,"last_update":"2026-03-22T00:12:13.966238741Z"} +2026/03/22 00:12:18 [log_collector] {"stage_name":"log_collector","events_processed":35326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7065.2,"last_update":"2026-03-22T00:12:13.869607928Z"} +2026/03/22 00:12:18 [metric_collector] {"stage_name":"metric_collector","events_processed":21984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4396.8,"last_update":"2026-03-22T00:12:13.869886582Z"} +2026/03/22 00:12:18 ───────────────────────────────────────────────── +2026/03/22 00:12:23 ── Pipeline Health ────────────────────────────── +2026/03/22 00:12:23 [log_collector] {"stage_name":"log_collector","events_processed":35337,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7067.4,"last_update":"2026-03-22T00:12:18.869404428Z"} +2026/03/22 00:12:23 [metric_collector] {"stage_name":"metric_collector","events_processed":21989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4397.8,"last_update":"2026-03-22T00:12:18.869848528Z"} +2026/03/22 00:12:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:12:18.877626799Z"} +2026/03/22 00:12:23 [transform_engine] {"stage_name":"transform_engine","events_processed":733,"events_dropped":0,"avg_latency_ms":723.182576215793,"throughput_eps":0,"last_update":"2026-03-22T00:12:19.086735776Z"} +2026/03/22 00:12:23 [detection_layer] {"stage_name":"detection_layer","events_processed":731,"events_dropped":0,"avg_latency_ms":17.46974725373337,"throughput_eps":0,"last_update":"2026-03-22T00:12:18.965878421Z"} +2026/03/22 00:12:23 ───────────────────────────────────────────────── +2026/03/22 00:12:28 ── Pipeline Health ────────────────────────────── +2026/03/22 00:12:28 [transform_engine] {"stage_name":"transform_engine","events_processed":733,"events_dropped":0,"avg_latency_ms":723.182576215793,"throughput_eps":0,"last_update":"2026-03-22T00:12:23.965466247Z"} +2026/03/22 00:12:28 [detection_layer] {"stage_name":"detection_layer","events_processed":732,"events_dropped":0,"avg_latency_ms":17.535693602986697,"throughput_eps":0,"last_update":"2026-03-22T00:12:23.965453422Z"} +2026/03/22 00:12:28 [log_collector] {"stage_name":"log_collector","events_processed":35337,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7067.4,"last_update":"2026-03-22T00:12:23.87124678Z"} +2026/03/22 00:12:28 [metric_collector] {"stage_name":"metric_collector","events_processed":21994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4398.8,"last_update":"2026-03-22T00:12:23.871963181Z"} +2026/03/22 00:12:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8800,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:12:23.891145987Z"} +2026/03/22 00:12:28 ───────────────────────────────────────────────── +2026/03/22 00:12:33 ── Pipeline Health ────────────────────────────── +2026/03/22 00:12:33 [log_collector] {"stage_name":"log_collector","events_processed":35351,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7070.2,"last_update":"2026-03-22T00:12:28.873382333Z"} +2026/03/22 00:12:33 [metric_collector] {"stage_name":"metric_collector","events_processed":21999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4399.8,"last_update":"2026-03-22T00:12:28.87282217Z"} +2026/03/22 00:12:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8802,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:12:28.936155215Z"} +2026/03/22 00:12:33 [transform_engine] {"stage_name":"transform_engine","events_processed":733,"events_dropped":0,"avg_latency_ms":723.182576215793,"throughput_eps":0,"last_update":"2026-03-22T00:12:28.965316465Z"} +2026/03/22 00:12:33 [detection_layer] {"stage_name":"detection_layer","events_processed":732,"events_dropped":0,"avg_latency_ms":17.535693602986697,"throughput_eps":0,"last_update":"2026-03-22T00:12:28.965300815Z"} +2026/03/22 00:12:33 ───────────────────────────────────────────────── +2026/03/22 00:12:38 ── Pipeline Health ────────────────────────────── +2026/03/22 00:12:38 [detection_layer] {"stage_name":"detection_layer","events_processed":732,"events_dropped":0,"avg_latency_ms":17.535693602986697,"throughput_eps":0,"last_update":"2026-03-22T00:12:33.965893082Z"} +2026/03/22 00:12:38 [log_collector] {"stage_name":"log_collector","events_processed":35353,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7070.6,"last_update":"2026-03-22T00:12:33.871062152Z"} +2026/03/22 00:12:38 [metric_collector] {"stage_name":"metric_collector","events_processed":22004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4400.8,"last_update":"2026-03-22T00:12:33.872039383Z"} +2026/03/22 00:12:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:12:33.8937031Z"} +2026/03/22 00:12:38 [transform_engine] {"stage_name":"transform_engine","events_processed":733,"events_dropped":0,"avg_latency_ms":723.182576215793,"throughput_eps":0,"last_update":"2026-03-22T00:12:33.965866571Z"} +2026/03/22 00:12:38 ───────────────────────────────────────────────── +2026/03/22 00:12:43 ── Pipeline Health ────────────────────────────── +2026/03/22 00:12:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:12:38.891049458Z"} +2026/03/22 00:12:43 [transform_engine] {"stage_name":"transform_engine","events_processed":733,"events_dropped":0,"avg_latency_ms":723.182576215793,"throughput_eps":0,"last_update":"2026-03-22T00:12:38.965130742Z"} +2026/03/22 00:12:43 [detection_layer] {"stage_name":"detection_layer","events_processed":732,"events_dropped":0,"avg_latency_ms":17.535693602986697,"throughput_eps":0,"last_update":"2026-03-22T00:12:38.966214276Z"} +2026/03/22 00:12:43 [log_collector] {"stage_name":"log_collector","events_processed":35353,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7070.6,"last_update":"2026-03-22T00:12:38.870246519Z"} +2026/03/22 00:12:43 [metric_collector] {"stage_name":"metric_collector","events_processed":22009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4401.8,"last_update":"2026-03-22T00:12:38.870901744Z"} +2026/03/22 00:12:43 ───────────────────────────────────────────────── +2026/03/22 00:12:48 ── Pipeline Health ────────────────────────────── +2026/03/22 00:12:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:12:43.896890687Z"} +2026/03/22 00:12:48 [transform_engine] {"stage_name":"transform_engine","events_processed":733,"events_dropped":0,"avg_latency_ms":723.182576215793,"throughput_eps":0,"last_update":"2026-03-22T00:12:43.966068874Z"} +2026/03/22 00:12:48 [detection_layer] {"stage_name":"detection_layer","events_processed":732,"events_dropped":0,"avg_latency_ms":17.535693602986697,"throughput_eps":0,"last_update":"2026-03-22T00:12:43.966094443Z"} +2026/03/22 00:12:48 [log_collector] {"stage_name":"log_collector","events_processed":35353,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7070.6,"last_update":"2026-03-22T00:12:43.870265592Z"} +2026/03/22 00:12:48 [metric_collector] {"stage_name":"metric_collector","events_processed":22014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4402.8,"last_update":"2026-03-22T00:12:43.870960742Z"} +2026/03/22 00:12:48 ───────────────────────────────────────────────── +2026/03/22 00:12:53 ── Pipeline Health ────────────────────────────── +2026/03/22 00:12:53 [log_collector] {"stage_name":"log_collector","events_processed":35353,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7070.6,"last_update":"2026-03-22T00:12:48.870334035Z"} +2026/03/22 00:12:53 [metric_collector] {"stage_name":"metric_collector","events_processed":22018,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4403.6,"last_update":"2026-03-22T00:12:48.870364143Z"} +2026/03/22 00:12:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:12:48.894003742Z"} +2026/03/22 00:12:53 [transform_engine] {"stage_name":"transform_engine","events_processed":734,"events_dropped":0,"avg_latency_ms":610.5508047726345,"throughput_eps":0,"last_update":"2026-03-22T00:12:49.128765583Z"} +2026/03/22 00:12:53 [detection_layer] {"stage_name":"detection_layer","events_processed":732,"events_dropped":0,"avg_latency_ms":17.535693602986697,"throughput_eps":0,"last_update":"2026-03-22T00:12:48.9687812Z"} +2026/03/22 00:12:53 ───────────────────────────────────────────────── +2026/03/22 00:12:58 ── Pipeline Health ────────────────────────────── +2026/03/22 00:12:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8812,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:12:53.888176344Z"} +2026/03/22 00:12:58 [transform_engine] {"stage_name":"transform_engine","events_processed":734,"events_dropped":0,"avg_latency_ms":610.5508047726345,"throughput_eps":0,"last_update":"2026-03-22T00:12:53.965380929Z"} +2026/03/22 00:12:58 [detection_layer] {"stage_name":"detection_layer","events_processed":733,"events_dropped":0,"avg_latency_ms":17.19098768238936,"throughput_eps":0,"last_update":"2026-03-22T00:12:53.965375418Z"} +2026/03/22 00:12:58 [log_collector] {"stage_name":"log_collector","events_processed":35353,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7070.6,"last_update":"2026-03-22T00:12:58.869945315Z"} +2026/03/22 00:12:58 [metric_collector] {"stage_name":"metric_collector","events_processed":22024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4404.8,"last_update":"2026-03-22T00:12:53.871758451Z"} +2026/03/22 00:12:58 ───────────────────────────────────────────────── +2026/03/22 00:13:03 ── Pipeline Health ────────────────────────────── +2026/03/22 00:13:03 [metric_collector] {"stage_name":"metric_collector","events_processed":22029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4405.8,"last_update":"2026-03-22T00:12:58.870414262Z"} +2026/03/22 00:13:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:12:58.878683925Z"} +2026/03/22 00:13:03 [transform_engine] {"stage_name":"transform_engine","events_processed":734,"events_dropped":0,"avg_latency_ms":610.5508047726345,"throughput_eps":0,"last_update":"2026-03-22T00:12:58.965888146Z"} +2026/03/22 00:13:03 [detection_layer] {"stage_name":"detection_layer","events_processed":733,"events_dropped":0,"avg_latency_ms":17.19098768238936,"throughput_eps":0,"last_update":"2026-03-22T00:12:58.965877576Z"} +2026/03/22 00:13:03 [log_collector] {"stage_name":"log_collector","events_processed":35353,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7070.6,"last_update":"2026-03-22T00:12:58.869945315Z"} +2026/03/22 00:13:03 ───────────────────────────────────────────────── +2026/03/22 00:13:08 ── Pipeline Health ────────────────────────────── +2026/03/22 00:13:08 [detection_layer] {"stage_name":"detection_layer","events_processed":733,"events_dropped":0,"avg_latency_ms":17.19098768238936,"throughput_eps":0,"last_update":"2026-03-22T00:13:03.965467419Z"} +2026/03/22 00:13:08 [log_collector] {"stage_name":"log_collector","events_processed":35353,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7070.6,"last_update":"2026-03-22T00:13:03.870218055Z"} +2026/03/22 00:13:08 [metric_collector] {"stage_name":"metric_collector","events_processed":22034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4406.8,"last_update":"2026-03-22T00:13:03.870408809Z"} +2026/03/22 00:13:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8816,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:13:03.879302778Z"} +2026/03/22 00:13:08 [transform_engine] {"stage_name":"transform_engine","events_processed":734,"events_dropped":0,"avg_latency_ms":610.5508047726345,"throughput_eps":0,"last_update":"2026-03-22T00:13:03.965474723Z"} +2026/03/22 00:13:08 ───────────────────────────────────────────────── +2026/03/22 00:13:13 ── Pipeline Health ────────────────────────────── +2026/03/22 00:13:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8818,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:13:08.87868971Z"} +2026/03/22 00:13:13 [transform_engine] {"stage_name":"transform_engine","events_processed":734,"events_dropped":0,"avg_latency_ms":610.5508047726345,"throughput_eps":0,"last_update":"2026-03-22T00:13:08.966110095Z"} +2026/03/22 00:13:13 [detection_layer] {"stage_name":"detection_layer","events_processed":733,"events_dropped":0,"avg_latency_ms":17.19098768238936,"throughput_eps":0,"last_update":"2026-03-22T00:13:08.966092922Z"} +2026/03/22 00:13:13 [log_collector] {"stage_name":"log_collector","events_processed":35353,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7070.6,"last_update":"2026-03-22T00:13:13.869408499Z"} +2026/03/22 00:13:13 [metric_collector] {"stage_name":"metric_collector","events_processed":22039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4407.8,"last_update":"2026-03-22T00:13:08.870169847Z"} +2026/03/22 00:13:13 ───────────────────────────────────────────────── +2026/03/22 00:13:18 ── Pipeline Health ────────────────────────────── +2026/03/22 00:13:18 [transform_engine] {"stage_name":"transform_engine","events_processed":734,"events_dropped":0,"avg_latency_ms":610.5508047726345,"throughput_eps":0,"last_update":"2026-03-22T00:13:13.965230923Z"} +2026/03/22 00:13:18 [detection_layer] {"stage_name":"detection_layer","events_processed":733,"events_dropped":0,"avg_latency_ms":17.19098768238936,"throughput_eps":0,"last_update":"2026-03-22T00:13:13.965320664Z"} +2026/03/22 00:13:18 [log_collector] {"stage_name":"log_collector","events_processed":35353,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7070.6,"last_update":"2026-03-22T00:13:18.869706432Z"} +2026/03/22 00:13:18 [metric_collector] {"stage_name":"metric_collector","events_processed":22044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4408.8,"last_update":"2026-03-22T00:13:13.86988933Z"} +2026/03/22 00:13:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8820,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:13:13.878967421Z"} +2026/03/22 00:13:18 ───────────────────────────────────────────────── +2026/03/22 00:13:23 ── Pipeline Health ────────────────────────────── +2026/03/22 00:13:23 [log_collector] {"stage_name":"log_collector","events_processed":35353,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7070.6,"last_update":"2026-03-22T00:13:23.870160779Z"} +2026/03/22 00:13:23 [metric_collector] {"stage_name":"metric_collector","events_processed":22049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4409.8,"last_update":"2026-03-22T00:13:18.870136345Z"} +2026/03/22 00:13:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:13:18.877065431Z"} +2026/03/22 00:13:23 [transform_engine] {"stage_name":"transform_engine","events_processed":735,"events_dropped":0,"avg_latency_ms":504.1090250181076,"throughput_eps":0,"last_update":"2026-03-22T00:13:19.043599872Z"} +2026/03/22 00:13:23 [detection_layer] {"stage_name":"detection_layer","events_processed":733,"events_dropped":0,"avg_latency_ms":17.19098768238936,"throughput_eps":0,"last_update":"2026-03-22T00:13:18.965277534Z"} +2026/03/22 00:13:23 ───────────────────────────────────────────────── +2026/03/22 00:13:28 ── Pipeline Health ────────────────────────────── +2026/03/22 00:13:28 [detection_layer] {"stage_name":"detection_layer","events_processed":734,"events_dropped":0,"avg_latency_ms":16.75127114591149,"throughput_eps":0,"last_update":"2026-03-22T00:13:23.966012931Z"} +2026/03/22 00:13:28 [log_collector] {"stage_name":"log_collector","events_processed":35353,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7070.6,"last_update":"2026-03-22T00:13:28.869427547Z"} +2026/03/22 00:13:28 [metric_collector] {"stage_name":"metric_collector","events_processed":22054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4410.8,"last_update":"2026-03-22T00:13:23.870788742Z"} +2026/03/22 00:13:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:13:23.87980291Z"} +2026/03/22 00:13:28 [transform_engine] {"stage_name":"transform_engine","events_processed":735,"events_dropped":0,"avg_latency_ms":504.1090250181076,"throughput_eps":0,"last_update":"2026-03-22T00:13:23.966024322Z"} +2026/03/22 00:13:28 ───────────────────────────────────────────────── +Saved state: 29 clusters, 35354 messages, reason: none +2026/03/22 00:13:33 ── Pipeline Health ────────────────────────────── +2026/03/22 00:13:33 [metric_collector] {"stage_name":"metric_collector","events_processed":22059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4411.8,"last_update":"2026-03-22T00:13:28.870025722Z"} +2026/03/22 00:13:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8826,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:13:28.878456985Z"} +2026/03/22 00:13:33 [transform_engine] {"stage_name":"transform_engine","events_processed":735,"events_dropped":0,"avg_latency_ms":504.1090250181076,"throughput_eps":0,"last_update":"2026-03-22T00:13:28.965798021Z"} +2026/03/22 00:13:33 [detection_layer] {"stage_name":"detection_layer","events_processed":734,"events_dropped":0,"avg_latency_ms":16.75127114591149,"throughput_eps":0,"last_update":"2026-03-22T00:13:28.965784876Z"} +2026/03/22 00:13:33 [log_collector] {"stage_name":"log_collector","events_processed":35353,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7070.6,"last_update":"2026-03-22T00:13:28.869427547Z"} +2026/03/22 00:13:33 ───────────────────────────────────────────────── +2026/03/22 00:13:38 ── Pipeline Health ────────────────────────────── +2026/03/22 00:13:38 [detection_layer] {"stage_name":"detection_layer","events_processed":734,"events_dropped":0,"avg_latency_ms":16.75127114591149,"throughput_eps":0,"last_update":"2026-03-22T00:13:33.966262346Z"} +2026/03/22 00:13:38 [log_collector] {"stage_name":"log_collector","events_processed":35367,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7073.4,"last_update":"2026-03-22T00:13:38.869413032Z"} +2026/03/22 00:13:38 [metric_collector] {"stage_name":"metric_collector","events_processed":22064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4412.8,"last_update":"2026-03-22T00:13:33.870109457Z"} +2026/03/22 00:13:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:13:33.878997314Z"} +2026/03/22 00:13:38 [transform_engine] {"stage_name":"transform_engine","events_processed":735,"events_dropped":0,"avg_latency_ms":504.1090250181076,"throughput_eps":0,"last_update":"2026-03-22T00:13:33.965145978Z"} +2026/03/22 00:13:38 ───────────────────────────────────────────────── +2026/03/22 00:13:43 ── Pipeline Health ────────────────────────────── +2026/03/22 00:13:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8830,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:13:38.878205446Z"} +2026/03/22 00:13:43 [transform_engine] {"stage_name":"transform_engine","events_processed":735,"events_dropped":0,"avg_latency_ms":504.1090250181076,"throughput_eps":0,"last_update":"2026-03-22T00:13:38.965538679Z"} +2026/03/22 00:13:43 [detection_layer] {"stage_name":"detection_layer","events_processed":734,"events_dropped":0,"avg_latency_ms":16.75127114591149,"throughput_eps":0,"last_update":"2026-03-22T00:13:38.965527518Z"} +2026/03/22 00:13:43 [log_collector] {"stage_name":"log_collector","events_processed":35367,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7073.4,"last_update":"2026-03-22T00:13:43.869425506Z"} +2026/03/22 00:13:43 [metric_collector] {"stage_name":"metric_collector","events_processed":22069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4413.8,"last_update":"2026-03-22T00:13:38.869762421Z"} +2026/03/22 00:13:43 ───────────────────────────────────────────────── +2026/03/22 00:13:48 ── Pipeline Health ────────────────────────────── +2026/03/22 00:13:48 [log_collector] {"stage_name":"log_collector","events_processed":35367,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7073.4,"last_update":"2026-03-22T00:13:48.869422494Z"} +2026/03/22 00:13:48 [metric_collector] {"stage_name":"metric_collector","events_processed":22074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4414.8,"last_update":"2026-03-22T00:13:43.870167677Z"} +2026/03/22 00:13:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8832,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:13:43.87835862Z"} +2026/03/22 00:13:48 [transform_engine] {"stage_name":"transform_engine","events_processed":735,"events_dropped":0,"avg_latency_ms":504.1090250181076,"throughput_eps":0,"last_update":"2026-03-22T00:13:43.965588906Z"} +2026/03/22 00:13:48 [detection_layer] {"stage_name":"detection_layer","events_processed":734,"events_dropped":0,"avg_latency_ms":16.75127114591149,"throughput_eps":0,"last_update":"2026-03-22T00:13:43.965576001Z"} +2026/03/22 00:13:48 ───────────────────────────────────────────────── +2026/03/22 00:13:53 ── Pipeline Health ────────────────────────────── +2026/03/22 00:13:53 [log_collector] {"stage_name":"log_collector","events_processed":35367,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7073.4,"last_update":"2026-03-22T00:13:48.869422494Z"} +2026/03/22 00:13:53 [metric_collector] {"stage_name":"metric_collector","events_processed":22079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4415.8,"last_update":"2026-03-22T00:13:48.869802181Z"} +2026/03/22 00:13:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:13:48.87920769Z"} +2026/03/22 00:13:53 [transform_engine] {"stage_name":"transform_engine","events_processed":736,"events_dropped":0,"avg_latency_ms":427.50272661448616,"throughput_eps":0,"last_update":"2026-03-22T00:13:49.086677794Z"} +2026/03/22 00:13:53 [detection_layer] {"stage_name":"detection_layer","events_processed":734,"events_dropped":0,"avg_latency_ms":16.75127114591149,"throughput_eps":0,"last_update":"2026-03-22T00:13:48.965580334Z"} +2026/03/22 00:13:53 ───────────────────────────────────────────────── +2026/03/22 00:13:58 ── Pipeline Health ────────────────────────────── +2026/03/22 00:13:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:13:53.895293985Z"} +2026/03/22 00:13:58 [transform_engine] {"stage_name":"transform_engine","events_processed":736,"events_dropped":0,"avg_latency_ms":427.50272661448616,"throughput_eps":0,"last_update":"2026-03-22T00:13:53.965527439Z"} +2026/03/22 00:13:58 [detection_layer] {"stage_name":"detection_layer","events_processed":735,"events_dropped":0,"avg_latency_ms":17.36039551672919,"throughput_eps":0,"last_update":"2026-03-22T00:13:53.965516908Z"} +2026/03/22 00:13:58 [log_collector] {"stage_name":"log_collector","events_processed":35367,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7073.4,"last_update":"2026-03-22T00:13:53.870853269Z"} +2026/03/22 00:13:58 [metric_collector] {"stage_name":"metric_collector","events_processed":22084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4416.8,"last_update":"2026-03-22T00:13:53.871665163Z"} +2026/03/22 00:13:58 ───────────────────────────────────────────────── +2026/03/22 00:14:03 ── Pipeline Health ────────────────────────────── +2026/03/22 00:14:03 [log_collector] {"stage_name":"log_collector","events_processed":35367,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7073.4,"last_update":"2026-03-22T00:13:58.870755639Z"} +2026/03/22 00:14:03 [metric_collector] {"stage_name":"metric_collector","events_processed":22089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4417.8,"last_update":"2026-03-22T00:13:58.871466801Z"} +2026/03/22 00:14:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:13:58.891331925Z"} +2026/03/22 00:14:03 [transform_engine] {"stage_name":"transform_engine","events_processed":736,"events_dropped":0,"avg_latency_ms":427.50272661448616,"throughput_eps":0,"last_update":"2026-03-22T00:13:58.96561825Z"} +2026/03/22 00:14:03 [detection_layer] {"stage_name":"detection_layer","events_processed":735,"events_dropped":0,"avg_latency_ms":17.36039551672919,"throughput_eps":0,"last_update":"2026-03-22T00:13:58.965649079Z"} +2026/03/22 00:14:03 ───────────────────────────────────────────────── +2026/03/22 00:14:08 ── Pipeline Health ────────────────────────────── +2026/03/22 00:14:08 [detection_layer] {"stage_name":"detection_layer","events_processed":735,"events_dropped":0,"avg_latency_ms":17.36039551672919,"throughput_eps":0,"last_update":"2026-03-22T00:14:03.96558222Z"} +2026/03/22 00:14:08 [log_collector] {"stage_name":"log_collector","events_processed":35367,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7073.4,"last_update":"2026-03-22T00:14:03.870565403Z"} +2026/03/22 00:14:08 [metric_collector] {"stage_name":"metric_collector","events_processed":22094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4418.8,"last_update":"2026-03-22T00:14:03.871656773Z"} +2026/03/22 00:14:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:14:03.895395184Z"} +2026/03/22 00:14:08 [transform_engine] {"stage_name":"transform_engine","events_processed":736,"events_dropped":0,"avg_latency_ms":427.50272661448616,"throughput_eps":0,"last_update":"2026-03-22T00:14:03.965589314Z"} +2026/03/22 00:14:08 ───────────────────────────────────────────────── +2026/03/22 00:14:13 ── Pipeline Health ────────────────────────────── +2026/03/22 00:14:13 [log_collector] {"stage_name":"log_collector","events_processed":35367,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7073.4,"last_update":"2026-03-22T00:14:08.870652061Z"} +2026/03/22 00:14:13 [metric_collector] {"stage_name":"metric_collector","events_processed":22099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4419.8,"last_update":"2026-03-22T00:14:08.871204889Z"} +2026/03/22 00:14:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:14:08.892526302Z"} +2026/03/22 00:14:13 [transform_engine] {"stage_name":"transform_engine","events_processed":736,"events_dropped":0,"avg_latency_ms":427.50272661448616,"throughput_eps":0,"last_update":"2026-03-22T00:14:08.96580048Z"} +2026/03/22 00:14:13 [detection_layer] {"stage_name":"detection_layer","events_processed":735,"events_dropped":0,"avg_latency_ms":17.36039551672919,"throughput_eps":0,"last_update":"2026-03-22T00:14:08.965816541Z"} +2026/03/22 00:14:13 ───────────────────────────────────────────────── +2026/03/22 00:14:18 ── Pipeline Health ────────────────────────────── +2026/03/22 00:14:18 [log_collector] {"stage_name":"log_collector","events_processed":35367,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7073.4,"last_update":"2026-03-22T00:14:13.872295658Z"} +2026/03/22 00:14:18 [metric_collector] {"stage_name":"metric_collector","events_processed":22104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4420.8,"last_update":"2026-03-22T00:14:13.8721923Z"} +2026/03/22 00:14:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:14:13.894022519Z"} +2026/03/22 00:14:18 [transform_engine] {"stage_name":"transform_engine","events_processed":736,"events_dropped":0,"avg_latency_ms":427.50272661448616,"throughput_eps":0,"last_update":"2026-03-22T00:14:13.965189351Z"} +2026/03/22 00:14:18 [detection_layer] {"stage_name":"detection_layer","events_processed":735,"events_dropped":0,"avg_latency_ms":17.36039551672919,"throughput_eps":0,"last_update":"2026-03-22T00:14:13.965276848Z"} +2026/03/22 00:14:18 ───────────────────────────────────────────────── +2026/03/22 00:14:23 ── Pipeline Health ────────────────────────────── +2026/03/22 00:14:23 [log_collector] {"stage_name":"log_collector","events_processed":35367,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7073.4,"last_update":"2026-03-22T00:14:18.870682661Z"} +2026/03/22 00:14:23 [metric_collector] {"stage_name":"metric_collector","events_processed":22109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4421.8,"last_update":"2026-03-22T00:14:18.871319691Z"} +2026/03/22 00:14:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:14:18.894950667Z"} +2026/03/22 00:14:23 [transform_engine] {"stage_name":"transform_engine","events_processed":737,"events_dropped":0,"avg_latency_ms":372.36958789158894,"throughput_eps":0,"last_update":"2026-03-22T00:14:19.116958385Z"} +2026/03/22 00:14:23 [detection_layer] {"stage_name":"detection_layer","events_processed":735,"events_dropped":0,"avg_latency_ms":17.36039551672919,"throughput_eps":0,"last_update":"2026-03-22T00:14:18.966244964Z"} +2026/03/22 00:14:23 ───────────────────────────────────────────────── +2026/03/22 00:14:28 ── Pipeline Health ────────────────────────────── +2026/03/22 00:14:28 [metric_collector] {"stage_name":"metric_collector","events_processed":22114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4422.8,"last_update":"2026-03-22T00:14:23.8719244Z"} +2026/03/22 00:14:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8848,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:14:23.889105087Z"} +2026/03/22 00:14:28 [transform_engine] {"stage_name":"transform_engine","events_processed":737,"events_dropped":0,"avg_latency_ms":372.36958789158894,"throughput_eps":0,"last_update":"2026-03-22T00:14:23.965335124Z"} +2026/03/22 00:14:28 [detection_layer] {"stage_name":"detection_layer","events_processed":736,"events_dropped":0,"avg_latency_ms":16.765934213383353,"throughput_eps":0,"last_update":"2026-03-22T00:14:23.965358389Z"} +2026/03/22 00:14:28 [log_collector] {"stage_name":"log_collector","events_processed":35367,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7073.4,"last_update":"2026-03-22T00:14:23.87118258Z"} +2026/03/22 00:14:28 ───────────────────────────────────────────────── +2026/03/22 00:14:33 ── Pipeline Health ────────────────────────────── +2026/03/22 00:14:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:14:28.878886622Z"} +2026/03/22 00:14:33 [transform_engine] {"stage_name":"transform_engine","events_processed":737,"events_dropped":0,"avg_latency_ms":372.36958789158894,"throughput_eps":0,"last_update":"2026-03-22T00:14:28.966159936Z"} +2026/03/22 00:14:33 [detection_layer] {"stage_name":"detection_layer","events_processed":736,"events_dropped":0,"avg_latency_ms":16.765934213383353,"throughput_eps":0,"last_update":"2026-03-22T00:14:28.966192748Z"} +2026/03/22 00:14:33 [log_collector] {"stage_name":"log_collector","events_processed":35367,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7073.4,"last_update":"2026-03-22T00:14:28.869625309Z"} +2026/03/22 00:14:33 [metric_collector] {"stage_name":"metric_collector","events_processed":22119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4423.8,"last_update":"2026-03-22T00:14:28.869780788Z"} +2026/03/22 00:14:33 ───────────────────────────────────────────────── +Saved state: 29 clusters, 35368 messages, reason: none +2026/03/22 00:14:38 ── Pipeline Health ────────────────────────────── +2026/03/22 00:14:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:14:33.878881213Z"} +2026/03/22 00:14:38 [transform_engine] {"stage_name":"transform_engine","events_processed":737,"events_dropped":0,"avg_latency_ms":372.36958789158894,"throughput_eps":0,"last_update":"2026-03-22T00:14:33.966108398Z"} +2026/03/22 00:14:38 [detection_layer] {"stage_name":"detection_layer","events_processed":736,"events_dropped":0,"avg_latency_ms":16.765934213383353,"throughput_eps":0,"last_update":"2026-03-22T00:14:33.966066118Z"} +2026/03/22 00:14:38 [log_collector] {"stage_name":"log_collector","events_processed":35367,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7073.4,"last_update":"2026-03-22T00:14:33.870121Z"} +2026/03/22 00:14:38 [metric_collector] {"stage_name":"metric_collector","events_processed":22124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4424.8,"last_update":"2026-03-22T00:14:33.870176506Z"} +2026/03/22 00:14:38 ───────────────────────────────────────────────── +2026/03/22 00:14:43 ── Pipeline Health ────────────────────────────── +2026/03/22 00:14:43 [log_collector] {"stage_name":"log_collector","events_processed":35372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7074.4,"last_update":"2026-03-22T00:14:38.869402454Z"} +2026/03/22 00:14:43 [metric_collector] {"stage_name":"metric_collector","events_processed":22129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4425.8,"last_update":"2026-03-22T00:14:38.869602036Z"} +2026/03/22 00:14:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:14:38.875211065Z"} +2026/03/22 00:14:43 [transform_engine] {"stage_name":"transform_engine","events_processed":737,"events_dropped":0,"avg_latency_ms":372.36958789158894,"throughput_eps":0,"last_update":"2026-03-22T00:14:38.965364234Z"} +2026/03/22 00:14:43 [detection_layer] {"stage_name":"detection_layer","events_processed":736,"events_dropped":0,"avg_latency_ms":16.765934213383353,"throughput_eps":0,"last_update":"2026-03-22T00:14:38.965402336Z"} +2026/03/22 00:14:43 ───────────────────────────────────────────────── +2026/03/22 00:14:48 ── Pipeline Health ────────────────────────────── +2026/03/22 00:14:48 [log_collector] {"stage_name":"log_collector","events_processed":35372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7074.4,"last_update":"2026-03-22T00:14:43.869697308Z"} +2026/03/22 00:14:48 [metric_collector] {"stage_name":"metric_collector","events_processed":22134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4426.8,"last_update":"2026-03-22T00:14:43.870144383Z"} +2026/03/22 00:14:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:14:43.878721636Z"} +2026/03/22 00:14:48 [transform_engine] {"stage_name":"transform_engine","events_processed":737,"events_dropped":0,"avg_latency_ms":372.36958789158894,"throughput_eps":0,"last_update":"2026-03-22T00:14:43.965888367Z"} +2026/03/22 00:14:48 [detection_layer] {"stage_name":"detection_layer","events_processed":736,"events_dropped":0,"avg_latency_ms":16.765934213383353,"throughput_eps":0,"last_update":"2026-03-22T00:14:43.96590545Z"} +2026/03/22 00:14:48 ───────────────────────────────────────────────── +2026/03/22 00:14:53 ── Pipeline Health ────────────────────────────── +2026/03/22 00:14:53 [detection_layer] {"stage_name":"detection_layer","events_processed":736,"events_dropped":0,"avg_latency_ms":16.765934213383353,"throughput_eps":0,"last_update":"2026-03-22T00:14:48.965518577Z"} +2026/03/22 00:14:53 [log_collector] {"stage_name":"log_collector","events_processed":35372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7074.4,"last_update":"2026-03-22T00:14:48.869546436Z"} +2026/03/22 00:14:53 [metric_collector] {"stage_name":"metric_collector","events_processed":22139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4427.8,"last_update":"2026-03-22T00:14:48.869732282Z"} +2026/03/22 00:14:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:14:48.87636969Z"} +2026/03/22 00:14:53 [transform_engine] {"stage_name":"transform_engine","events_processed":738,"events_dropped":0,"avg_latency_ms":1207.9183307132712,"throughput_eps":0,"last_update":"2026-03-22T00:14:53.515667137Z"} +2026/03/22 00:14:53 ───────────────────────────────────────────────── +2026/03/22 00:14:58 ── Pipeline Health ────────────────────────────── +2026/03/22 00:14:58 [detection_layer] {"stage_name":"detection_layer","events_processed":737,"events_dropped":0,"avg_latency_ms":16.426223570706682,"throughput_eps":0,"last_update":"2026-03-22T00:14:53.965543783Z"} +2026/03/22 00:14:58 [log_collector] {"stage_name":"log_collector","events_processed":35372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7074.4,"last_update":"2026-03-22T00:14:58.869935984Z"} +2026/03/22 00:14:58 [metric_collector] {"stage_name":"metric_collector","events_processed":22144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4428.8,"last_update":"2026-03-22T00:14:53.869697723Z"} +2026/03/22 00:14:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8860,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:14:53.877451199Z"} +2026/03/22 00:14:58 [transform_engine] {"stage_name":"transform_engine","events_processed":738,"events_dropped":0,"avg_latency_ms":1207.9183307132712,"throughput_eps":0,"last_update":"2026-03-22T00:14:53.96555773Z"} +2026/03/22 00:14:58 ───────────────────────────────────────────────── +2026/03/22 00:15:03 ── Pipeline Health ────────────────────────────── +2026/03/22 00:15:03 [log_collector] {"stage_name":"log_collector","events_processed":35372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7074.4,"last_update":"2026-03-22T00:14:58.869935984Z"} +2026/03/22 00:15:03 [metric_collector] {"stage_name":"metric_collector","events_processed":22149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4429.8,"last_update":"2026-03-22T00:14:58.870161786Z"} +2026/03/22 00:15:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8862,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:14:58.877632089Z"} +2026/03/22 00:15:03 [transform_engine] {"stage_name":"transform_engine","events_processed":738,"events_dropped":0,"avg_latency_ms":1207.9183307132712,"throughput_eps":0,"last_update":"2026-03-22T00:14:58.965156637Z"} +2026/03/22 00:15:03 [detection_layer] {"stage_name":"detection_layer","events_processed":737,"events_dropped":0,"avg_latency_ms":16.426223570706682,"throughput_eps":0,"last_update":"2026-03-22T00:14:58.966280008Z"} +2026/03/22 00:15:03 ───────────────────────────────────────────────── +2026/03/22 00:15:08 ── Pipeline Health ────────────────────────────── +2026/03/22 00:15:08 [log_collector] {"stage_name":"log_collector","events_processed":35372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7074.4,"last_update":"2026-03-22T00:15:08.8694097Z"} +2026/03/22 00:15:08 [metric_collector] {"stage_name":"metric_collector","events_processed":22154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4430.8,"last_update":"2026-03-22T00:15:03.869626383Z"} +2026/03/22 00:15:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:15:03.879303132Z"} +2026/03/22 00:15:08 [transform_engine] {"stage_name":"transform_engine","events_processed":738,"events_dropped":0,"avg_latency_ms":1207.9183307132712,"throughput_eps":0,"last_update":"2026-03-22T00:15:03.965486572Z"} +2026/03/22 00:15:08 [detection_layer] {"stage_name":"detection_layer","events_processed":737,"events_dropped":0,"avg_latency_ms":16.426223570706682,"throughput_eps":0,"last_update":"2026-03-22T00:15:03.965474518Z"} +2026/03/22 00:15:08 ───────────────────────────────────────────────── +2026/03/22 00:15:13 ── Pipeline Health ────────────────────────────── +2026/03/22 00:15:13 [log_collector] {"stage_name":"log_collector","events_processed":35372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7074.4,"last_update":"2026-03-22T00:15:08.8694097Z"} +2026/03/22 00:15:13 [metric_collector] {"stage_name":"metric_collector","events_processed":22159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4431.8,"last_update":"2026-03-22T00:15:08.86996342Z"} +2026/03/22 00:15:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:15:08.877054648Z"} +2026/03/22 00:15:13 [transform_engine] {"stage_name":"transform_engine","events_processed":738,"events_dropped":0,"avg_latency_ms":1207.9183307132712,"throughput_eps":0,"last_update":"2026-03-22T00:15:08.965258016Z"} +2026/03/22 00:15:13 [detection_layer] {"stage_name":"detection_layer","events_processed":737,"events_dropped":0,"avg_latency_ms":16.426223570706682,"throughput_eps":0,"last_update":"2026-03-22T00:15:08.965279056Z"} +2026/03/22 00:15:13 ───────────────────────────────────────────────── +2026/03/22 00:15:18 ── Pipeline Health ────────────────────────────── +2026/03/22 00:15:18 [metric_collector] {"stage_name":"metric_collector","events_processed":22164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4432.8,"last_update":"2026-03-22T00:15:13.870012783Z"} +2026/03/22 00:15:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8868,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:15:13.876740044Z"} +2026/03/22 00:15:18 [transform_engine] {"stage_name":"transform_engine","events_processed":738,"events_dropped":0,"avg_latency_ms":1207.9183307132712,"throughput_eps":0,"last_update":"2026-03-22T00:15:13.96597122Z"} +2026/03/22 00:15:18 [detection_layer] {"stage_name":"detection_layer","events_processed":737,"events_dropped":0,"avg_latency_ms":16.426223570706682,"throughput_eps":0,"last_update":"2026-03-22T00:15:13.965958697Z"} +2026/03/22 00:15:18 [log_collector] {"stage_name":"log_collector","events_processed":35372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7074.4,"last_update":"2026-03-22T00:15:13.869831707Z"} +2026/03/22 00:15:18 ───────────────────────────────────────────────── +2026/03/22 00:15:23 ── Pipeline Health ────────────────────────────── +2026/03/22 00:15:23 [log_collector] {"stage_name":"log_collector","events_processed":35381,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7076.2,"last_update":"2026-03-22T00:15:18.870433134Z"} +2026/03/22 00:15:23 [metric_collector] {"stage_name":"metric_collector","events_processed":22169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4433.8,"last_update":"2026-03-22T00:15:18.870733669Z"} +2026/03/22 00:15:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:15:18.877271067Z"} +2026/03/22 00:15:23 [transform_engine] {"stage_name":"transform_engine","events_processed":739,"events_dropped":0,"avg_latency_ms":987.823450570617,"throughput_eps":0,"last_update":"2026-03-22T00:15:19.072908116Z"} +2026/03/22 00:15:23 [detection_layer] {"stage_name":"detection_layer","events_processed":737,"events_dropped":0,"avg_latency_ms":16.426223570706682,"throughput_eps":0,"last_update":"2026-03-22T00:15:18.965454798Z"} +2026/03/22 00:15:23 ───────────────────────────────────────────────── +2026/03/22 00:15:28 ── Pipeline Health ────────────────────────────── +2026/03/22 00:15:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:15:23.895924205Z"} +2026/03/22 00:15:28 [transform_engine] {"stage_name":"transform_engine","events_processed":739,"events_dropped":0,"avg_latency_ms":987.823450570617,"throughput_eps":0,"last_update":"2026-03-22T00:15:23.966073305Z"} +2026/03/22 00:15:28 [detection_layer] {"stage_name":"detection_layer","events_processed":738,"events_dropped":0,"avg_latency_ms":15.731547256565348,"throughput_eps":0,"last_update":"2026-03-22T00:15:23.966060991Z"} +2026/03/22 00:15:28 [log_collector] {"stage_name":"log_collector","events_processed":35383,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7076.6,"last_update":"2026-03-22T00:15:23.870605055Z"} +2026/03/22 00:15:28 [metric_collector] {"stage_name":"metric_collector","events_processed":22174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4434.8,"last_update":"2026-03-22T00:15:23.870921932Z"} +2026/03/22 00:15:28 ───────────────────────────────────────────────── +2026/03/22 00:15:33 ── Pipeline Health ────────────────────────────── +2026/03/22 00:15:33 [log_collector] {"stage_name":"log_collector","events_processed":35397,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7079.4,"last_update":"2026-03-22T00:15:28.869740599Z"} +2026/03/22 00:15:33 [metric_collector] {"stage_name":"metric_collector","events_processed":22179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4435.8,"last_update":"2026-03-22T00:15:28.870162648Z"} +2026/03/22 00:15:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:15:28.886847315Z"} +2026/03/22 00:15:33 [transform_engine] {"stage_name":"transform_engine","events_processed":739,"events_dropped":0,"avg_latency_ms":987.823450570617,"throughput_eps":0,"last_update":"2026-03-22T00:15:28.966153989Z"} +2026/03/22 00:15:33 [detection_layer] {"stage_name":"detection_layer","events_processed":738,"events_dropped":0,"avg_latency_ms":15.731547256565348,"throughput_eps":0,"last_update":"2026-03-22T00:15:28.96613905Z"} +2026/03/22 00:15:33 ───────────────────────────────────────────────── +2026/03/22 00:15:38 ── Pipeline Health ────────────────────────────── +2026/03/22 00:15:38 [detection_layer] {"stage_name":"detection_layer","events_processed":738,"events_dropped":0,"avg_latency_ms":15.731547256565348,"throughput_eps":0,"last_update":"2026-03-22T00:15:33.965272919Z"} +2026/03/22 00:15:38 [log_collector] {"stage_name":"log_collector","events_processed":35397,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7079.4,"last_update":"2026-03-22T00:15:33.869781945Z"} +2026/03/22 00:15:38 [metric_collector] {"stage_name":"metric_collector","events_processed":22184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4436.8,"last_update":"2026-03-22T00:15:33.869930529Z"} +2026/03/22 00:15:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8876,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:15:33.87708624Z"} +2026/03/22 00:15:38 [transform_engine] {"stage_name":"transform_engine","events_processed":739,"events_dropped":0,"avg_latency_ms":987.823450570617,"throughput_eps":0,"last_update":"2026-03-22T00:15:33.965231861Z"} +2026/03/22 00:15:38 ───────────────────────────────────────────────── +2026/03/22 00:15:43 ── Pipeline Health ────────────────────────────── +2026/03/22 00:15:43 [metric_collector] {"stage_name":"metric_collector","events_processed":22189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4437.8,"last_update":"2026-03-22T00:15:38.873201584Z"} +2026/03/22 00:15:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:15:38.976492475Z"} +2026/03/22 00:15:43 [transform_engine] {"stage_name":"transform_engine","events_processed":739,"events_dropped":0,"avg_latency_ms":987.823450570617,"throughput_eps":0,"last_update":"2026-03-22T00:15:38.966699954Z"} +2026/03/22 00:15:43 [detection_layer] {"stage_name":"detection_layer","events_processed":738,"events_dropped":0,"avg_latency_ms":15.731547256565348,"throughput_eps":0,"last_update":"2026-03-22T00:15:38.967504184Z"} +2026/03/22 00:15:43 [log_collector] {"stage_name":"log_collector","events_processed":35397,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7079.4,"last_update":"2026-03-22T00:15:38.871765103Z"} +2026/03/22 00:15:43 ───────────────────────────────────────────────── +2026/03/22 00:15:48 ── Pipeline Health ────────────────────────────── +2026/03/22 00:15:48 [log_collector] {"stage_name":"log_collector","events_processed":35397,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7079.4,"last_update":"2026-03-22T00:15:43.871320991Z"} +2026/03/22 00:15:48 [metric_collector] {"stage_name":"metric_collector","events_processed":22194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4438.8,"last_update":"2026-03-22T00:15:43.875444537Z"} +2026/03/22 00:15:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:15:44.149573578Z"} +2026/03/22 00:15:48 [transform_engine] {"stage_name":"transform_engine","events_processed":739,"events_dropped":0,"avg_latency_ms":987.823450570617,"throughput_eps":0,"last_update":"2026-03-22T00:15:43.968341376Z"} +2026/03/22 00:15:48 [detection_layer] {"stage_name":"detection_layer","events_processed":738,"events_dropped":0,"avg_latency_ms":15.731547256565348,"throughput_eps":0,"last_update":"2026-03-22T00:15:43.968418764Z"} +2026/03/22 00:15:48 ───────────────────────────────────────────────── +2026/03/22 00:15:49 [ANOMALY] time=2026-03-22T00:15:49Z score=0.8810 method=SEAD details=MAD!:w=0.29,s=0.86 RRCF-fast!:w=0.17,s=0.97 RRCF-mid!:w=0.14,s=0.98 RRCF-slow!:w=0.11,s=0.98 COPOD!:w=0.29,s=0.76 +2026/03/22 00:15:53 ── Pipeline Health ────────────────────────────── +2026/03/22 00:15:53 [transform_engine] {"stage_name":"transform_engine","events_processed":740,"events_dropped":0,"avg_latency_ms":824.7432774564936,"throughput_eps":0,"last_update":"2026-03-22T00:15:49.137544901Z"} +2026/03/22 00:15:53 [detection_layer] {"stage_name":"detection_layer","events_processed":738,"events_dropped":0,"avg_latency_ms":15.731547256565348,"throughput_eps":0,"last_update":"2026-03-22T00:15:48.966222542Z"} +2026/03/22 00:15:53 [log_collector] {"stage_name":"log_collector","events_processed":35397,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7079.4,"last_update":"2026-03-22T00:15:48.871536307Z"} +2026/03/22 00:15:53 [metric_collector] {"stage_name":"metric_collector","events_processed":22199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4439.8,"last_update":"2026-03-22T00:15:48.872337692Z"} +2026/03/22 00:15:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:15:48.896419183Z"} +2026/03/22 00:15:53 ───────────────────────────────────────────────── +Saved state: 29 clusters, 35398 messages, reason: none +2026/03/22 00:15:58 ── Pipeline Health ────────────────────────────── +2026/03/22 00:15:58 [log_collector] {"stage_name":"log_collector","events_processed":35397,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7079.4,"last_update":"2026-03-22T00:15:53.871142333Z"} +2026/03/22 00:15:58 [metric_collector] {"stage_name":"metric_collector","events_processed":22204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4440.8,"last_update":"2026-03-22T00:15:53.871707144Z"} +2026/03/22 00:15:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:15:53.895320459Z"} +2026/03/22 00:15:58 [transform_engine] {"stage_name":"transform_engine","events_processed":740,"events_dropped":0,"avg_latency_ms":824.7432774564936,"throughput_eps":0,"last_update":"2026-03-22T00:15:53.965685765Z"} +2026/03/22 00:15:58 [detection_layer] {"stage_name":"detection_layer","events_processed":739,"events_dropped":0,"avg_latency_ms":14.995589205252278,"throughput_eps":0,"last_update":"2026-03-22T00:15:53.965678661Z"} +2026/03/22 00:15:58 ───────────────────────────────────────────────── +2026/03/22 00:16:03 ── Pipeline Health ────────────────────────────── +2026/03/22 00:16:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8886,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:15:58.876864875Z"} +2026/03/22 00:16:03 [transform_engine] {"stage_name":"transform_engine","events_processed":740,"events_dropped":0,"avg_latency_ms":824.7432774564936,"throughput_eps":0,"last_update":"2026-03-22T00:15:58.965838081Z"} +2026/03/22 00:16:03 [detection_layer] {"stage_name":"detection_layer","events_processed":739,"events_dropped":0,"avg_latency_ms":14.995589205252278,"throughput_eps":0,"last_update":"2026-03-22T00:15:58.96582698Z"} +2026/03/22 00:16:03 [log_collector] {"stage_name":"log_collector","events_processed":35531,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7106.2,"last_update":"2026-03-22T00:16:03.869918473Z"} +2026/03/22 00:16:03 [metric_collector] {"stage_name":"metric_collector","events_processed":22208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4441.6,"last_update":"2026-03-22T00:15:58.870369377Z"} +2026/03/22 00:16:03 ───────────────────────────────────────────────── +2026/03/22 00:16:08 ── Pipeline Health ────────────────────────────── +2026/03/22 00:16:08 [metric_collector] {"stage_name":"metric_collector","events_processed":22214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4442.8,"last_update":"2026-03-22T00:16:03.870149074Z"} +2026/03/22 00:16:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:16:03.876804408Z"} +2026/03/22 00:16:08 [transform_engine] {"stage_name":"transform_engine","events_processed":740,"events_dropped":0,"avg_latency_ms":824.7432774564936,"throughput_eps":0,"last_update":"2026-03-22T00:16:03.965583363Z"} +2026/03/22 00:16:08 [detection_layer] {"stage_name":"detection_layer","events_processed":739,"events_dropped":0,"avg_latency_ms":14.995589205252278,"throughput_eps":0,"last_update":"2026-03-22T00:16:03.965550069Z"} +2026/03/22 00:16:08 [log_collector] {"stage_name":"log_collector","events_processed":35531,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7106.2,"last_update":"2026-03-22T00:16:03.869918473Z"} +2026/03/22 00:16:08 ───────────────────────────────────────────────── +2026/03/22 00:16:13 ── Pipeline Health ────────────────────────────── +2026/03/22 00:16:13 [detection_layer] {"stage_name":"detection_layer","events_processed":739,"events_dropped":0,"avg_latency_ms":14.995589205252278,"throughput_eps":0,"last_update":"2026-03-22T00:16:08.96545484Z"} +2026/03/22 00:16:13 [log_collector] {"stage_name":"log_collector","events_processed":35563,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7112.6,"last_update":"2026-03-22T00:16:08.870343639Z"} +2026/03/22 00:16:13 [metric_collector] {"stage_name":"metric_collector","events_processed":22219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4443.8,"last_update":"2026-03-22T00:16:08.870651559Z"} +2026/03/22 00:16:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:16:08.879069598Z"} +2026/03/22 00:16:13 [transform_engine] {"stage_name":"transform_engine","events_processed":740,"events_dropped":0,"avg_latency_ms":824.7432774564936,"throughput_eps":0,"last_update":"2026-03-22T00:16:08.965493744Z"} +2026/03/22 00:16:13 ───────────────────────────────────────────────── +2026/03/22 00:16:18 ── Pipeline Health ────────────────────────────── +2026/03/22 00:16:18 [log_collector] {"stage_name":"log_collector","events_processed":35563,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7112.6,"last_update":"2026-03-22T00:16:13.86963831Z"} +2026/03/22 00:16:18 [metric_collector] {"stage_name":"metric_collector","events_processed":22224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4444.8,"last_update":"2026-03-22T00:16:13.869891204Z"} +2026/03/22 00:16:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8892,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:16:13.876745027Z"} +2026/03/22 00:16:18 [transform_engine] {"stage_name":"transform_engine","events_processed":740,"events_dropped":0,"avg_latency_ms":824.7432774564936,"throughput_eps":0,"last_update":"2026-03-22T00:16:13.966008822Z"} +2026/03/22 00:16:18 [detection_layer] {"stage_name":"detection_layer","events_processed":739,"events_dropped":0,"avg_latency_ms":14.995589205252278,"throughput_eps":0,"last_update":"2026-03-22T00:16:13.965946321Z"} +2026/03/22 00:16:18 ───────────────────────────────────────────────── +2026/03/22 00:16:23 ── Pipeline Health ────────────────────────────── +2026/03/22 00:16:23 [metric_collector] {"stage_name":"metric_collector","events_processed":22229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4445.8,"last_update":"2026-03-22T00:16:18.869866337Z"} +2026/03/22 00:16:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:16:18.878284677Z"} +2026/03/22 00:16:23 [transform_engine] {"stage_name":"transform_engine","events_processed":741,"events_dropped":0,"avg_latency_ms":688.4740963651949,"throughput_eps":0,"last_update":"2026-03-22T00:16:19.109117092Z"} +2026/03/22 00:16:23 [detection_layer] {"stage_name":"detection_layer","events_processed":739,"events_dropped":0,"avg_latency_ms":14.995589205252278,"throughput_eps":0,"last_update":"2026-03-22T00:16:18.965602486Z"} +2026/03/22 00:16:23 [log_collector] {"stage_name":"log_collector","events_processed":35563,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7112.6,"last_update":"2026-03-22T00:16:18.86948684Z"} +2026/03/22 00:16:23 ───────────────────────────────────────────────── +2026/03/22 00:16:28 ── Pipeline Health ────────────────────────────── +2026/03/22 00:16:28 [log_collector] {"stage_name":"log_collector","events_processed":35563,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7112.6,"last_update":"2026-03-22T00:16:23.869408035Z"} +2026/03/22 00:16:28 [metric_collector] {"stage_name":"metric_collector","events_processed":22233,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4446.6,"last_update":"2026-03-22T00:16:23.869400411Z"} +2026/03/22 00:16:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8896,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:16:23.87903481Z"} +2026/03/22 00:16:28 [transform_engine] {"stage_name":"transform_engine","events_processed":741,"events_dropped":0,"avg_latency_ms":688.4740963651949,"throughput_eps":0,"last_update":"2026-03-22T00:16:23.965221653Z"} +2026/03/22 00:16:28 [detection_layer] {"stage_name":"detection_layer","events_processed":740,"events_dropped":0,"avg_latency_ms":15.475098164201825,"throughput_eps":0,"last_update":"2026-03-22T00:16:23.965342184Z"} +2026/03/22 00:16:28 ───────────────────────────────────────────────── +2026/03/22 00:16:33 ── Pipeline Health ────────────────────────────── +2026/03/22 00:16:33 [log_collector] {"stage_name":"log_collector","events_processed":35563,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7112.6,"last_update":"2026-03-22T00:16:28.869704934Z"} +2026/03/22 00:16:33 [metric_collector] {"stage_name":"metric_collector","events_processed":22238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4447.6,"last_update":"2026-03-22T00:16:28.869824913Z"} +2026/03/22 00:16:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8898,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:16:28.878397469Z"} +2026/03/22 00:16:33 [transform_engine] {"stage_name":"transform_engine","events_processed":741,"events_dropped":0,"avg_latency_ms":688.4740963651949,"throughput_eps":0,"last_update":"2026-03-22T00:16:28.965663989Z"} +2026/03/22 00:16:33 [detection_layer] {"stage_name":"detection_layer","events_processed":740,"events_dropped":0,"avg_latency_ms":15.475098164201825,"throughput_eps":0,"last_update":"2026-03-22T00:16:28.965749563Z"} +2026/03/22 00:16:33 ───────────────────────────────────────────────── +2026/03/22 00:16:38 ── Pipeline Health ────────────────────────────── +2026/03/22 00:16:38 [detection_layer] {"stage_name":"detection_layer","events_processed":740,"events_dropped":0,"avg_latency_ms":15.475098164201825,"throughput_eps":0,"last_update":"2026-03-22T00:16:33.966040475Z"} +2026/03/22 00:16:38 [log_collector] {"stage_name":"log_collector","events_processed":35563,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7112.6,"last_update":"2026-03-22T00:16:33.869404652Z"} +2026/03/22 00:16:38 [metric_collector] {"stage_name":"metric_collector","events_processed":22244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4448.8,"last_update":"2026-03-22T00:16:33.869864643Z"} +2026/03/22 00:16:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8900,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:16:33.878789222Z"} +2026/03/22 00:16:38 [transform_engine] {"stage_name":"transform_engine","events_processed":741,"events_dropped":0,"avg_latency_ms":688.4740963651949,"throughput_eps":0,"last_update":"2026-03-22T00:16:33.966001511Z"} +2026/03/22 00:16:38 ───────────────────────────────────────────────── +2026/03/22 00:16:43 ── Pipeline Health ────────────────────────────── +2026/03/22 00:16:43 [log_collector] {"stage_name":"log_collector","events_processed":35563,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7112.6,"last_update":"2026-03-22T00:16:38.869562802Z"} +2026/03/22 00:16:43 [metric_collector] {"stage_name":"metric_collector","events_processed":22249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4449.8,"last_update":"2026-03-22T00:16:38.869840534Z"} +2026/03/22 00:16:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:16:38.879072381Z"} +2026/03/22 00:16:43 [transform_engine] {"stage_name":"transform_engine","events_processed":741,"events_dropped":0,"avg_latency_ms":688.4740963651949,"throughput_eps":0,"last_update":"2026-03-22T00:16:38.965175947Z"} +2026/03/22 00:16:43 [detection_layer] {"stage_name":"detection_layer","events_processed":740,"events_dropped":0,"avg_latency_ms":15.475098164201825,"throughput_eps":0,"last_update":"2026-03-22T00:16:38.965289785Z"} +2026/03/22 00:16:43 ───────────────────────────────────────────────── +2026/03/22 00:16:48 ── Pipeline Health ────────────────────────────── +2026/03/22 00:16:48 [metric_collector] {"stage_name":"metric_collector","events_processed":22254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4450.8,"last_update":"2026-03-22T00:16:43.869877325Z"} +2026/03/22 00:16:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:16:43.878399143Z"} +2026/03/22 00:16:48 [transform_engine] {"stage_name":"transform_engine","events_processed":741,"events_dropped":0,"avg_latency_ms":688.4740963651949,"throughput_eps":0,"last_update":"2026-03-22T00:16:43.965665956Z"} +2026/03/22 00:16:48 [detection_layer] {"stage_name":"detection_layer","events_processed":740,"events_dropped":0,"avg_latency_ms":15.475098164201825,"throughput_eps":0,"last_update":"2026-03-22T00:16:43.965560675Z"} +2026/03/22 00:16:48 [log_collector] {"stage_name":"log_collector","events_processed":35563,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7112.6,"last_update":"2026-03-22T00:16:43.86970734Z"} +2026/03/22 00:16:48 ───────────────────────────────────────────────── +2026/03/22 00:16:54 ── Pipeline Health ────────────────────────────── +2026/03/22 00:16:54 [log_collector] {"stage_name":"log_collector","events_processed":35566,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7113.2,"last_update":"2026-03-22T00:16:48.869425543Z"} +2026/03/22 00:16:54 [metric_collector] {"stage_name":"metric_collector","events_processed":22259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4451.8,"last_update":"2026-03-22T00:16:48.869711351Z"} +2026/03/22 00:16:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8906,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:16:48.87658907Z"} +2026/03/22 00:16:54 [transform_engine] {"stage_name":"transform_engine","events_processed":742,"events_dropped":0,"avg_latency_ms":574.1557874921559,"throughput_eps":0,"last_update":"2026-03-22T00:16:49.082614991Z"} +2026/03/22 00:16:54 [detection_layer] {"stage_name":"detection_layer","events_processed":740,"events_dropped":0,"avg_latency_ms":15.475098164201825,"throughput_eps":0,"last_update":"2026-03-22T00:16:48.965792542Z"} +2026/03/22 00:16:54 ───────────────────────────────────────────────── +Saved state: 29 clusters, 35577 messages, reason: none +2026/03/22 00:16:58 ── Pipeline Health ────────────────────────────── +2026/03/22 00:16:58 [log_collector] {"stage_name":"log_collector","events_processed":35566,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7113.2,"last_update":"2026-03-22T00:16:54.454227101Z"} +2026/03/22 00:16:58 [metric_collector] {"stage_name":"metric_collector","events_processed":22264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4452.8,"last_update":"2026-03-22T00:16:54.455341976Z"} +2026/03/22 00:16:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8908,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:16:54.517802129Z"} +2026/03/22 00:16:58 [transform_engine] {"stage_name":"transform_engine","events_processed":742,"events_dropped":0,"avg_latency_ms":574.1557874921559,"throughput_eps":0,"last_update":"2026-03-22T00:16:54.454334066Z"} +2026/03/22 00:16:58 [detection_layer] {"stage_name":"detection_layer","events_processed":741,"events_dropped":0,"avg_latency_ms":15.77262273136146,"throughput_eps":0,"last_update":"2026-03-22T00:16:54.454274362Z"} +2026/03/22 00:16:58 ───────────────────────────────────────────────── +2026/03/22 00:17:03 ── Pipeline Health ────────────────────────────── +2026/03/22 00:17:03 [log_collector] {"stage_name":"log_collector","events_processed":35577,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7115.4,"last_update":"2026-03-22T00:16:58.880575626Z"} +2026/03/22 00:17:03 [metric_collector] {"stage_name":"metric_collector","events_processed":22269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4453.8,"last_update":"2026-03-22T00:16:58.879855747Z"} +2026/03/22 00:17:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:16:58.899367279Z"} +2026/03/22 00:17:03 [transform_engine] {"stage_name":"transform_engine","events_processed":742,"events_dropped":0,"avg_latency_ms":574.1557874921559,"throughput_eps":0,"last_update":"2026-03-22T00:16:58.965604836Z"} +2026/03/22 00:17:03 [detection_layer] {"stage_name":"detection_layer","events_processed":741,"events_dropped":0,"avg_latency_ms":15.77262273136146,"throughput_eps":0,"last_update":"2026-03-22T00:16:58.965614173Z"} +2026/03/22 00:17:03 ───────────────────────────────────────────────── +2026/03/22 00:17:08 ── Pipeline Health ────────────────────────────── +2026/03/22 00:17:08 [detection_layer] {"stage_name":"detection_layer","events_processed":741,"events_dropped":0,"avg_latency_ms":15.77262273136146,"throughput_eps":0,"last_update":"2026-03-22T00:17:03.965988831Z"} +2026/03/22 00:17:08 [log_collector] {"stage_name":"log_collector","events_processed":35584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7116.8,"last_update":"2026-03-22T00:17:03.881611168Z"} +2026/03/22 00:17:08 [metric_collector] {"stage_name":"metric_collector","events_processed":22274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4454.8,"last_update":"2026-03-22T00:17:03.882474221Z"} +2026/03/22 00:17:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8912,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:17:03.903787343Z"} +2026/03/22 00:17:08 [transform_engine] {"stage_name":"transform_engine","events_processed":742,"events_dropped":0,"avg_latency_ms":574.1557874921559,"throughput_eps":0,"last_update":"2026-03-22T00:17:03.965990785Z"} +2026/03/22 00:17:08 ───────────────────────────────────────────────── +2026/03/22 00:17:13 ── Pipeline Health ────────────────────────────── +2026/03/22 00:17:13 [transform_engine] {"stage_name":"transform_engine","events_processed":742,"events_dropped":0,"avg_latency_ms":574.1557874921559,"throughput_eps":0,"last_update":"2026-03-22T00:17:08.965429212Z"} +2026/03/22 00:17:13 [detection_layer] {"stage_name":"detection_layer","events_processed":741,"events_dropped":0,"avg_latency_ms":15.77262273136146,"throughput_eps":0,"last_update":"2026-03-22T00:17:08.965387662Z"} +2026/03/22 00:17:13 [log_collector] {"stage_name":"log_collector","events_processed":35596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7119.2,"last_update":"2026-03-22T00:17:08.871670866Z"} +2026/03/22 00:17:13 [metric_collector] {"stage_name":"metric_collector","events_processed":22279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4455.8,"last_update":"2026-03-22T00:17:08.873539194Z"} +2026/03/22 00:17:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:17:08.901481229Z"} +2026/03/22 00:17:13 ───────────────────────────────────────────────── +2026/03/22 00:17:18 ── Pipeline Health ────────────────────────────── +2026/03/22 00:17:18 [log_collector] {"stage_name":"log_collector","events_processed":35607,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7121.4,"last_update":"2026-03-22T00:17:13.870252013Z"} +2026/03/22 00:17:18 [metric_collector] {"stage_name":"metric_collector","events_processed":22284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4456.8,"last_update":"2026-03-22T00:17:13.871177776Z"} +2026/03/22 00:17:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:17:13.894766785Z"} +2026/03/22 00:17:18 [transform_engine] {"stage_name":"transform_engine","events_processed":742,"events_dropped":0,"avg_latency_ms":574.1557874921559,"throughput_eps":0,"last_update":"2026-03-22T00:17:13.965921838Z"} +2026/03/22 00:17:18 [detection_layer] {"stage_name":"detection_layer","events_processed":741,"events_dropped":0,"avg_latency_ms":15.77262273136146,"throughput_eps":0,"last_update":"2026-03-22T00:17:13.965917741Z"} +2026/03/22 00:17:18 ───────────────────────────────────────────────── +2026/03/22 00:17:23 ── Pipeline Health ────────────────────────────── +2026/03/22 00:17:23 [log_collector] {"stage_name":"log_collector","events_processed":35607,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7121.4,"last_update":"2026-03-22T00:17:18.870580607Z"} +2026/03/22 00:17:23 [metric_collector] {"stage_name":"metric_collector","events_processed":22289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4457.8,"last_update":"2026-03-22T00:17:18.8710936Z"} +2026/03/22 00:17:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8918,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:17:18.93745315Z"} +2026/03/22 00:17:23 [transform_engine] {"stage_name":"transform_engine","events_processed":742,"events_dropped":0,"avg_latency_ms":574.1557874921559,"throughput_eps":0,"last_update":"2026-03-22T00:17:18.965556685Z"} +2026/03/22 00:17:23 [detection_layer] {"stage_name":"detection_layer","events_processed":741,"events_dropped":0,"avg_latency_ms":15.77262273136146,"throughput_eps":0,"last_update":"2026-03-22T00:17:18.965583286Z"} +2026/03/22 00:17:23 ───────────────────────────────────────────────── +2026/03/22 00:17:28 ── Pipeline Health ────────────────────────────── +2026/03/22 00:17:28 [log_collector] {"stage_name":"log_collector","events_processed":35607,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7121.4,"last_update":"2026-03-22T00:17:28.869449364Z"} +2026/03/22 00:17:28 [metric_collector] {"stage_name":"metric_collector","events_processed":22294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4458.8,"last_update":"2026-03-22T00:17:23.872953337Z"} +2026/03/22 00:17:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8920,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:17:23.892985997Z"} +2026/03/22 00:17:28 [transform_engine] {"stage_name":"transform_engine","events_processed":743,"events_dropped":0,"avg_latency_ms":486.53020159372477,"throughput_eps":0,"last_update":"2026-03-22T00:17:23.965171014Z"} +2026/03/22 00:17:28 [detection_layer] {"stage_name":"detection_layer","events_processed":742,"events_dropped":0,"avg_latency_ms":15.186969385089169,"throughput_eps":0,"last_update":"2026-03-22T00:17:23.96639108Z"} +2026/03/22 00:17:28 ───────────────────────────────────────────────── +2026/03/22 00:17:33 ── Pipeline Health ────────────────────────────── +2026/03/22 00:17:33 [log_collector] {"stage_name":"log_collector","events_processed":35607,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7121.4,"last_update":"2026-03-22T00:17:33.869788842Z"} +2026/03/22 00:17:33 [metric_collector] {"stage_name":"metric_collector","events_processed":22299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4459.8,"last_update":"2026-03-22T00:17:28.870328207Z"} +2026/03/22 00:17:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:17:28.878657407Z"} +2026/03/22 00:17:33 [transform_engine] {"stage_name":"transform_engine","events_processed":743,"events_dropped":0,"avg_latency_ms":486.53020159372477,"throughput_eps":0,"last_update":"2026-03-22T00:17:28.965857966Z"} +2026/03/22 00:17:33 [detection_layer] {"stage_name":"detection_layer","events_processed":742,"events_dropped":0,"avg_latency_ms":15.186969385089169,"throughput_eps":0,"last_update":"2026-03-22T00:17:28.965852856Z"} +2026/03/22 00:17:33 ───────────────────────────────────────────────── +2026/03/22 00:17:38 ── Pipeline Health ────────────────────────────── +2026/03/22 00:17:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:17:33.879151441Z"} +2026/03/22 00:17:38 [transform_engine] {"stage_name":"transform_engine","events_processed":743,"events_dropped":0,"avg_latency_ms":486.53020159372477,"throughput_eps":0,"last_update":"2026-03-22T00:17:33.965533433Z"} +2026/03/22 00:17:38 [detection_layer] {"stage_name":"detection_layer","events_processed":742,"events_dropped":0,"avg_latency_ms":15.186969385089169,"throughput_eps":0,"last_update":"2026-03-22T00:17:33.965522632Z"} +2026/03/22 00:17:38 [log_collector] {"stage_name":"log_collector","events_processed":35607,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7121.4,"last_update":"2026-03-22T00:17:38.869912558Z"} +2026/03/22 00:17:38 [metric_collector] {"stage_name":"metric_collector","events_processed":22304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4460.8,"last_update":"2026-03-22T00:17:33.870219236Z"} +2026/03/22 00:17:38 ───────────────────────────────────────────────── +2026/03/22 00:17:43 ── Pipeline Health ────────────────────────────── +2026/03/22 00:17:43 [transform_engine] {"stage_name":"transform_engine","events_processed":743,"events_dropped":0,"avg_latency_ms":486.53020159372477,"throughput_eps":0,"last_update":"2026-03-22T00:17:38.966136749Z"} +2026/03/22 00:17:43 [detection_layer] {"stage_name":"detection_layer","events_processed":742,"events_dropped":0,"avg_latency_ms":15.186969385089169,"throughput_eps":0,"last_update":"2026-03-22T00:17:38.966097884Z"} +2026/03/22 00:17:43 [log_collector] {"stage_name":"log_collector","events_processed":35607,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7121.4,"last_update":"2026-03-22T00:17:43.869433221Z"} +2026/03/22 00:17:43 [metric_collector] {"stage_name":"metric_collector","events_processed":22309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4461.8,"last_update":"2026-03-22T00:17:38.870184249Z"} +2026/03/22 00:17:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:17:38.878735513Z"} +2026/03/22 00:17:43 ───────────────────────────────────────────────── +2026/03/22 00:17:48 ── Pipeline Health ────────────────────────────── +2026/03/22 00:17:48 [detection_layer] {"stage_name":"detection_layer","events_processed":742,"events_dropped":0,"avg_latency_ms":15.186969385089169,"throughput_eps":0,"last_update":"2026-03-22T00:17:43.96566746Z"} +2026/03/22 00:17:48 [log_collector] {"stage_name":"log_collector","events_processed":35607,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7121.4,"last_update":"2026-03-22T00:17:43.869433221Z"} +2026/03/22 00:17:48 [metric_collector] {"stage_name":"metric_collector","events_processed":22314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4462.8,"last_update":"2026-03-22T00:17:43.869971962Z"} +2026/03/22 00:17:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:17:43.879373846Z"} +2026/03/22 00:17:48 [transform_engine] {"stage_name":"transform_engine","events_processed":743,"events_dropped":0,"avg_latency_ms":486.53020159372477,"throughput_eps":0,"last_update":"2026-03-22T00:17:43.96569353Z"} +2026/03/22 00:17:48 ───────────────────────────────────────────────── +2026/03/22 00:17:53 ── Pipeline Health ────────────────────────────── +2026/03/22 00:17:53 [log_collector] {"stage_name":"log_collector","events_processed":35607,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7121.4,"last_update":"2026-03-22T00:17:48.869496683Z"} +2026/03/22 00:17:53 [metric_collector] {"stage_name":"metric_collector","events_processed":22319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4463.8,"last_update":"2026-03-22T00:17:48.870206231Z"} +2026/03/22 00:17:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8930,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:17:48.878082113Z"} +2026/03/22 00:17:53 [transform_engine] {"stage_name":"transform_engine","events_processed":744,"events_dropped":0,"avg_latency_ms":410.38224107497985,"throughput_eps":0,"last_update":"2026-03-22T00:17:49.070997659Z"} +2026/03/22 00:17:53 [detection_layer] {"stage_name":"detection_layer","events_processed":742,"events_dropped":0,"avg_latency_ms":15.186969385089169,"throughput_eps":0,"last_update":"2026-03-22T00:17:48.965309435Z"} +2026/03/22 00:17:53 ───────────────────────────────────────────────── +2026/03/22 00:17:58 ── Pipeline Health ────────────────────────────── +2026/03/22 00:17:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:17:53.878515322Z"} +2026/03/22 00:17:58 [transform_engine] {"stage_name":"transform_engine","events_processed":744,"events_dropped":0,"avg_latency_ms":410.38224107497985,"throughput_eps":0,"last_update":"2026-03-22T00:17:53.965717155Z"} +2026/03/22 00:17:58 [detection_layer] {"stage_name":"detection_layer","events_processed":743,"events_dropped":0,"avg_latency_ms":16.365690908071336,"throughput_eps":0,"last_update":"2026-03-22T00:17:53.965707617Z"} +2026/03/22 00:17:58 [log_collector] {"stage_name":"log_collector","events_processed":35607,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7121.4,"last_update":"2026-03-22T00:17:53.87022171Z"} +2026/03/22 00:17:58 [metric_collector] {"stage_name":"metric_collector","events_processed":22324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4464.8,"last_update":"2026-03-22T00:17:53.870824915Z"} +2026/03/22 00:17:58 ───────────────────────────────────────────────── +2026/03/22 00:18:03 ── Pipeline Health ────────────────────────────── +2026/03/22 00:18:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:17:58.878549478Z"} +2026/03/22 00:18:03 [transform_engine] {"stage_name":"transform_engine","events_processed":744,"events_dropped":0,"avg_latency_ms":410.38224107497985,"throughput_eps":0,"last_update":"2026-03-22T00:17:58.965884016Z"} +2026/03/22 00:18:03 [detection_layer] {"stage_name":"detection_layer","events_processed":743,"events_dropped":0,"avg_latency_ms":16.365690908071336,"throughput_eps":0,"last_update":"2026-03-22T00:17:58.965871883Z"} +2026/03/22 00:18:03 [log_collector] {"stage_name":"log_collector","events_processed":35607,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7121.4,"last_update":"2026-03-22T00:17:58.869815594Z"} +2026/03/22 00:18:03 [metric_collector] {"stage_name":"metric_collector","events_processed":22329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4465.8,"last_update":"2026-03-22T00:17:58.870335749Z"} +2026/03/22 00:18:03 ───────────────────────────────────────────────── +2026/03/22 00:18:08 ── Pipeline Health ────────────────────────────── +2026/03/22 00:18:08 [detection_layer] {"stage_name":"detection_layer","events_processed":743,"events_dropped":0,"avg_latency_ms":16.365690908071336,"throughput_eps":0,"last_update":"2026-03-22T00:18:03.96593843Z"} +2026/03/22 00:18:08 [log_collector] {"stage_name":"log_collector","events_processed":35607,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7121.4,"last_update":"2026-03-22T00:18:08.869628853Z"} +2026/03/22 00:18:08 [metric_collector] {"stage_name":"metric_collector","events_processed":22334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4466.8,"last_update":"2026-03-22T00:18:03.870742367Z"} +2026/03/22 00:18:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:18:03.879536718Z"} +2026/03/22 00:18:08 [transform_engine] {"stage_name":"transform_engine","events_processed":744,"events_dropped":0,"avg_latency_ms":410.38224107497985,"throughput_eps":0,"last_update":"2026-03-22T00:18:03.965951194Z"} +2026/03/22 00:18:08 ───────────────────────────────────────────────── +2026/03/22 00:18:13 ── Pipeline Health ────────────────────────────── +2026/03/22 00:18:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:18:08.879003755Z"} +2026/03/22 00:18:13 [transform_engine] {"stage_name":"transform_engine","events_processed":744,"events_dropped":0,"avg_latency_ms":410.38224107497985,"throughput_eps":0,"last_update":"2026-03-22T00:18:08.965192781Z"} +2026/03/22 00:18:13 [detection_layer] {"stage_name":"detection_layer","events_processed":743,"events_dropped":0,"avg_latency_ms":16.365690908071336,"throughput_eps":0,"last_update":"2026-03-22T00:18:08.965279617Z"} +2026/03/22 00:18:13 [log_collector] {"stage_name":"log_collector","events_processed":35607,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7121.4,"last_update":"2026-03-22T00:18:08.869628853Z"} +2026/03/22 00:18:13 [metric_collector] {"stage_name":"metric_collector","events_processed":22339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4467.8,"last_update":"2026-03-22T00:18:08.870056242Z"} +2026/03/22 00:18:13 ───────────────────────────────────────────────── +Saved state: 29 clusters, 35608 messages, reason: none +2026/03/22 00:18:18 ── Pipeline Health ────────────────────────────── +2026/03/22 00:18:18 [metric_collector] {"stage_name":"metric_collector","events_processed":22344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4468.8,"last_update":"2026-03-22T00:18:13.870520879Z"} +2026/03/22 00:18:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8940,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:18:13.880248457Z"} +2026/03/22 00:18:18 [transform_engine] {"stage_name":"transform_engine","events_processed":744,"events_dropped":0,"avg_latency_ms":410.38224107497985,"throughput_eps":0,"last_update":"2026-03-22T00:18:13.965444101Z"} +2026/03/22 00:18:18 [detection_layer] {"stage_name":"detection_layer","events_processed":743,"events_dropped":0,"avg_latency_ms":16.365690908071336,"throughput_eps":0,"last_update":"2026-03-22T00:18:13.965431858Z"} +2026/03/22 00:18:18 [log_collector] {"stage_name":"log_collector","events_processed":35607,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7121.4,"last_update":"2026-03-22T00:18:13.870224843Z"} +2026/03/22 00:18:18 ───────────────────────────────────────────────── +2026/03/22 00:18:23 ── Pipeline Health ────────────────────────────── +2026/03/22 00:18:23 [transform_engine] {"stage_name":"transform_engine","events_processed":745,"events_dropped":0,"avg_latency_ms":352.5479266599839,"throughput_eps":0,"last_update":"2026-03-22T00:18:19.08705243Z"} +2026/03/22 00:18:23 [detection_layer] {"stage_name":"detection_layer","events_processed":743,"events_dropped":0,"avg_latency_ms":16.365690908071336,"throughput_eps":0,"last_update":"2026-03-22T00:18:18.965827954Z"} +2026/03/22 00:18:23 [log_collector] {"stage_name":"log_collector","events_processed":35612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7122.4,"last_update":"2026-03-22T00:18:18.86960278Z"} +2026/03/22 00:18:23 [metric_collector] {"stage_name":"metric_collector","events_processed":22349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4469.8,"last_update":"2026-03-22T00:18:18.869862847Z"} +2026/03/22 00:18:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:18:18.876615649Z"} +2026/03/22 00:18:23 ───────────────────────────────────────────────── +2026/03/22 00:18:28 ── Pipeline Health ────────────────────────────── +2026/03/22 00:18:28 [log_collector] {"stage_name":"log_collector","events_processed":35612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7122.4,"last_update":"2026-03-22T00:18:23.871376032Z"} +2026/03/22 00:18:28 [metric_collector] {"stage_name":"metric_collector","events_processed":22354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4470.8,"last_update":"2026-03-22T00:18:23.871412141Z"} +2026/03/22 00:18:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:18:23.895171659Z"} +2026/03/22 00:18:28 [transform_engine] {"stage_name":"transform_engine","events_processed":745,"events_dropped":0,"avg_latency_ms":352.5479266599839,"throughput_eps":0,"last_update":"2026-03-22T00:18:23.965131548Z"} +2026/03/22 00:18:28 [detection_layer] {"stage_name":"detection_layer","events_processed":744,"events_dropped":0,"avg_latency_ms":16.68662112645707,"throughput_eps":0,"last_update":"2026-03-22T00:18:23.966225623Z"} +2026/03/22 00:18:28 ───────────────────────────────────────────────── +2026/03/22 00:18:33 ── Pipeline Health ────────────────────────────── +2026/03/22 00:18:33 [metric_collector] {"stage_name":"metric_collector","events_processed":22359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4471.8,"last_update":"2026-03-22T00:18:28.871640323Z"} +2026/03/22 00:18:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:18:28.891283739Z"} +2026/03/22 00:18:33 [transform_engine] {"stage_name":"transform_engine","events_processed":745,"events_dropped":0,"avg_latency_ms":352.5479266599839,"throughput_eps":0,"last_update":"2026-03-22T00:18:28.965389677Z"} +2026/03/22 00:18:33 [detection_layer] {"stage_name":"detection_layer","events_processed":744,"events_dropped":0,"avg_latency_ms":16.68662112645707,"throughput_eps":0,"last_update":"2026-03-22T00:18:28.965462757Z"} +2026/03/22 00:18:33 [log_collector] {"stage_name":"log_collector","events_processed":35612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7122.4,"last_update":"2026-03-22T00:18:28.87047936Z"} +2026/03/22 00:18:33 ───────────────────────────────────────────────── +2026/03/22 00:18:38 ── Pipeline Health ────────────────────────────── +2026/03/22 00:18:38 [log_collector] {"stage_name":"log_collector","events_processed":35612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7122.4,"last_update":"2026-03-22T00:18:33.870725355Z"} +2026/03/22 00:18:38 [metric_collector] {"stage_name":"metric_collector","events_processed":22364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4472.8,"last_update":"2026-03-22T00:18:33.871429493Z"} +2026/03/22 00:18:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:18:33.902210707Z"} +2026/03/22 00:18:38 [transform_engine] {"stage_name":"transform_engine","events_processed":745,"events_dropped":0,"avg_latency_ms":352.5479266599839,"throughput_eps":0,"last_update":"2026-03-22T00:18:33.965774548Z"} +2026/03/22 00:18:38 [detection_layer] {"stage_name":"detection_layer","events_processed":744,"events_dropped":0,"avg_latency_ms":16.68662112645707,"throughput_eps":0,"last_update":"2026-03-22T00:18:33.965776171Z"} +2026/03/22 00:18:38 ───────────────────────────────────────────────── +2026/03/22 00:18:43 ── Pipeline Health ────────────────────────────── +2026/03/22 00:18:43 [log_collector] {"stage_name":"log_collector","events_processed":35612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7122.4,"last_update":"2026-03-22T00:18:38.871272064Z"} +2026/03/22 00:18:43 [metric_collector] {"stage_name":"metric_collector","events_processed":22369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4473.8,"last_update":"2026-03-22T00:18:38.872565731Z"} +2026/03/22 00:18:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:18:38.987646515Z"} +2026/03/22 00:18:43 [transform_engine] {"stage_name":"transform_engine","events_processed":745,"events_dropped":0,"avg_latency_ms":352.5479266599839,"throughput_eps":0,"last_update":"2026-03-22T00:18:38.965618873Z"} +2026/03/22 00:18:43 [detection_layer] {"stage_name":"detection_layer","events_processed":744,"events_dropped":0,"avg_latency_ms":16.68662112645707,"throughput_eps":0,"last_update":"2026-03-22T00:18:38.965629513Z"} +2026/03/22 00:18:43 ───────────────────────────────────────────────── +2026/03/22 00:18:48 ── Pipeline Health ────────────────────────────── +2026/03/22 00:18:48 [detection_layer] {"stage_name":"detection_layer","events_processed":744,"events_dropped":0,"avg_latency_ms":16.68662112645707,"throughput_eps":0,"last_update":"2026-03-22T00:18:43.965748231Z"} +2026/03/22 00:18:48 [log_collector] {"stage_name":"log_collector","events_processed":35612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7122.4,"last_update":"2026-03-22T00:18:43.871907451Z"} +2026/03/22 00:18:48 [metric_collector] {"stage_name":"metric_collector","events_processed":22374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4474.8,"last_update":"2026-03-22T00:18:43.872777386Z"} +2026/03/22 00:18:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:18:44.08711342Z"} +2026/03/22 00:18:48 [transform_engine] {"stage_name":"transform_engine","events_processed":745,"events_dropped":0,"avg_latency_ms":352.5479266599839,"throughput_eps":0,"last_update":"2026-03-22T00:18:43.965638732Z"} +2026/03/22 00:18:48 ───────────────────────────────────────────────── +2026/03/22 00:18:53 ── Pipeline Health ────────────────────────────── +2026/03/22 00:18:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:18:48.978711575Z"} +2026/03/22 00:18:53 [transform_engine] {"stage_name":"transform_engine","events_processed":746,"events_dropped":0,"avg_latency_ms":767.7910497279872,"throughput_eps":0,"last_update":"2026-03-22T00:18:51.397796632Z"} +2026/03/22 00:18:53 [detection_layer] {"stage_name":"detection_layer","events_processed":744,"events_dropped":0,"avg_latency_ms":16.68662112645707,"throughput_eps":0,"last_update":"2026-03-22T00:18:48.968368488Z"} +2026/03/22 00:18:53 [log_collector] {"stage_name":"log_collector","events_processed":35612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7122.4,"last_update":"2026-03-22T00:18:48.87059669Z"} +2026/03/22 00:18:53 [metric_collector] {"stage_name":"metric_collector","events_processed":22379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4475.8,"last_update":"2026-03-22T00:18:48.871370051Z"} +2026/03/22 00:18:53 ───────────────────────────────────────────────── +2026/03/22 00:18:58 ── Pipeline Health ────────────────────────────── +2026/03/22 00:18:58 [log_collector] {"stage_name":"log_collector","events_processed":35612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7122.4,"last_update":"2026-03-22T00:18:53.870548042Z"} +2026/03/22 00:18:58 [metric_collector] {"stage_name":"metric_collector","events_processed":22389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4477.8,"last_update":"2026-03-22T00:18:58.870613803Z"} +2026/03/22 00:18:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:18:53.897907435Z"} +2026/03/22 00:18:58 [transform_engine] {"stage_name":"transform_engine","events_processed":746,"events_dropped":0,"avg_latency_ms":767.7910497279872,"throughput_eps":0,"last_update":"2026-03-22T00:18:53.966029346Z"} +2026/03/22 00:18:58 [detection_layer] {"stage_name":"detection_layer","events_processed":745,"events_dropped":0,"avg_latency_ms":18.480236301165657,"throughput_eps":0,"last_update":"2026-03-22T00:18:53.966009818Z"} +2026/03/22 00:18:58 ───────────────────────────────────────────────── +2026/03/22 00:19:03 ── Pipeline Health ────────────────────────────── +2026/03/22 00:19:03 [metric_collector] {"stage_name":"metric_collector","events_processed":22394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4478.8,"last_update":"2026-03-22T00:19:03.870155987Z"} +2026/03/22 00:19:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8958,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:18:58.880138572Z"} +2026/03/22 00:19:03 [transform_engine] {"stage_name":"transform_engine","events_processed":746,"events_dropped":0,"avg_latency_ms":767.7910497279872,"throughput_eps":0,"last_update":"2026-03-22T00:18:58.965280727Z"} +2026/03/22 00:19:03 [detection_layer] {"stage_name":"detection_layer","events_processed":745,"events_dropped":0,"avg_latency_ms":18.480236301165657,"throughput_eps":0,"last_update":"2026-03-22T00:18:58.96529836Z"} +2026/03/22 00:19:03 [log_collector] {"stage_name":"log_collector","events_processed":35621,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7124.2,"last_update":"2026-03-22T00:19:03.869815676Z"} +2026/03/22 00:19:03 ───────────────────────────────────────────────── +2026/03/22 00:19:08 ── Pipeline Health ────────────────────────────── +2026/03/22 00:19:08 [log_collector] {"stage_name":"log_collector","events_processed":35621,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7124.2,"last_update":"2026-03-22T00:19:03.869815676Z"} +2026/03/22 00:19:08 [metric_collector] {"stage_name":"metric_collector","events_processed":22394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4478.8,"last_update":"2026-03-22T00:19:03.870155987Z"} +2026/03/22 00:19:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:19:03.881392936Z"} +2026/03/22 00:19:08 [transform_engine] {"stage_name":"transform_engine","events_processed":746,"events_dropped":0,"avg_latency_ms":767.7910497279872,"throughput_eps":0,"last_update":"2026-03-22T00:19:03.965314954Z"} +2026/03/22 00:19:08 [detection_layer] {"stage_name":"detection_layer","events_processed":745,"events_dropped":0,"avg_latency_ms":18.480236301165657,"throughput_eps":0,"last_update":"2026-03-22T00:19:03.96529743Z"} +2026/03/22 00:19:08 ───────────────────────────────────────────────── +2026/03/22 00:19:13 ── Pipeline Health ────────────────────────────── +2026/03/22 00:19:13 [log_collector] {"stage_name":"log_collector","events_processed":35623,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7124.6,"last_update":"2026-03-22T00:19:13.869838232Z"} +2026/03/22 00:19:13 [metric_collector] {"stage_name":"metric_collector","events_processed":22399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4479.8,"last_update":"2026-03-22T00:19:08.870107413Z"} +2026/03/22 00:19:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8962,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:19:08.876510224Z"} +2026/03/22 00:19:13 [transform_engine] {"stage_name":"transform_engine","events_processed":746,"events_dropped":0,"avg_latency_ms":767.7910497279872,"throughput_eps":0,"last_update":"2026-03-22T00:19:08.965732442Z"} +2026/03/22 00:19:13 [detection_layer] {"stage_name":"detection_layer","events_processed":745,"events_dropped":0,"avg_latency_ms":18.480236301165657,"throughput_eps":0,"last_update":"2026-03-22T00:19:08.965714668Z"} +2026/03/22 00:19:13 ───────────────────────────────────────────────── +Saved state: 29 clusters, 35753 messages, reason: none +2026/03/22 00:19:18 ── Pipeline Health ────────────────────────────── +2026/03/22 00:19:18 [log_collector] {"stage_name":"log_collector","events_processed":35838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7167.6,"last_update":"2026-03-22T00:19:18.869450462Z"} +2026/03/22 00:19:18 [metric_collector] {"stage_name":"metric_collector","events_processed":22404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4480.8,"last_update":"2026-03-22T00:19:13.870328782Z"} +2026/03/22 00:19:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:19:13.879605006Z"} +2026/03/22 00:19:18 [transform_engine] {"stage_name":"transform_engine","events_processed":746,"events_dropped":0,"avg_latency_ms":767.7910497279872,"throughput_eps":0,"last_update":"2026-03-22T00:19:13.966003636Z"} +2026/03/22 00:19:18 [detection_layer] {"stage_name":"detection_layer","events_processed":745,"events_dropped":0,"avg_latency_ms":18.480236301165657,"throughput_eps":0,"last_update":"2026-03-22T00:19:13.965983748Z"} +2026/03/22 00:19:18 ───────────────────────────────────────────────── +2026/03/22 00:19:23 ── Pipeline Health ────────────────────────────── +2026/03/22 00:19:23 [log_collector] {"stage_name":"log_collector","events_processed":35838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7167.6,"last_update":"2026-03-22T00:19:18.869450462Z"} +2026/03/22 00:19:23 [metric_collector] {"stage_name":"metric_collector","events_processed":22409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4481.8,"last_update":"2026-03-22T00:19:18.869738895Z"} +2026/03/22 00:19:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:19:18.877552728Z"} +2026/03/22 00:19:23 [transform_engine] {"stage_name":"transform_engine","events_processed":747,"events_dropped":0,"avg_latency_ms":676.2226105823897,"throughput_eps":0,"last_update":"2026-03-22T00:19:19.275973243Z"} +2026/03/22 00:19:23 [detection_layer] {"stage_name":"detection_layer","events_processed":745,"events_dropped":0,"avg_latency_ms":18.480236301165657,"throughput_eps":0,"last_update":"2026-03-22T00:19:18.966050028Z"} +2026/03/22 00:19:23 ───────────────────────────────────────────────── +2026/03/22 00:19:28 ── Pipeline Health ────────────────────────────── +2026/03/22 00:19:28 [metric_collector] {"stage_name":"metric_collector","events_processed":22414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4482.8,"last_update":"2026-03-22T00:19:23.870620712Z"} +2026/03/22 00:19:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:19:23.877630906Z"} +2026/03/22 00:19:28 [transform_engine] {"stage_name":"transform_engine","events_processed":747,"events_dropped":0,"avg_latency_ms":676.2226105823897,"throughput_eps":0,"last_update":"2026-03-22T00:19:23.965242941Z"} +2026/03/22 00:19:28 [detection_layer] {"stage_name":"detection_layer","events_processed":746,"events_dropped":0,"avg_latency_ms":17.808737040932527,"throughput_eps":0,"last_update":"2026-03-22T00:19:23.965405774Z"} +2026/03/22 00:19:28 [log_collector] {"stage_name":"log_collector","events_processed":35957,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7191.4,"last_update":"2026-03-22T00:19:23.870394519Z"} +2026/03/22 00:19:28 ───────────────────────────────────────────────── +2026/03/22 00:19:33 ── Pipeline Health ────────────────────────────── +2026/03/22 00:19:33 [log_collector] {"stage_name":"log_collector","events_processed":35957,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7191.4,"last_update":"2026-03-22T00:19:33.869714705Z"} +2026/03/22 00:19:33 [metric_collector] {"stage_name":"metric_collector","events_processed":22419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4483.8,"last_update":"2026-03-22T00:19:28.869861543Z"} +2026/03/22 00:19:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8970,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:19:28.878497501Z"} +2026/03/22 00:19:33 [transform_engine] {"stage_name":"transform_engine","events_processed":747,"events_dropped":0,"avg_latency_ms":676.2226105823897,"throughput_eps":0,"last_update":"2026-03-22T00:19:28.965867031Z"} +2026/03/22 00:19:33 [detection_layer] {"stage_name":"detection_layer","events_processed":746,"events_dropped":0,"avg_latency_ms":17.808737040932527,"throughput_eps":0,"last_update":"2026-03-22T00:19:28.965792148Z"} +2026/03/22 00:19:33 ───────────────────────────────────────────────── +2026/03/22 00:19:38 ── Pipeline Health ────────────────────────────── +2026/03/22 00:19:38 [log_collector] {"stage_name":"log_collector","events_processed":35957,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7191.4,"last_update":"2026-03-22T00:19:33.869714705Z"} +2026/03/22 00:19:38 [metric_collector] {"stage_name":"metric_collector","events_processed":22424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4484.8,"last_update":"2026-03-22T00:19:33.870285799Z"} +2026/03/22 00:19:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:19:33.878056639Z"} +2026/03/22 00:19:38 [transform_engine] {"stage_name":"transform_engine","events_processed":747,"events_dropped":0,"avg_latency_ms":676.2226105823897,"throughput_eps":0,"last_update":"2026-03-22T00:19:33.965304367Z"} +2026/03/22 00:19:38 [detection_layer] {"stage_name":"detection_layer","events_processed":746,"events_dropped":0,"avg_latency_ms":17.808737040932527,"throughput_eps":0,"last_update":"2026-03-22T00:19:33.965275372Z"} +2026/03/22 00:19:38 ───────────────────────────────────────────────── +2026/03/22 00:19:43 ── Pipeline Health ────────────────────────────── +2026/03/22 00:19:43 [log_collector] {"stage_name":"log_collector","events_processed":35957,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7191.4,"last_update":"2026-03-22T00:19:38.869443133Z"} +2026/03/22 00:19:43 [metric_collector] {"stage_name":"metric_collector","events_processed":22429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4485.8,"last_update":"2026-03-22T00:19:38.869728801Z"} +2026/03/22 00:19:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:19:38.879541051Z"} +2026/03/22 00:19:43 [transform_engine] {"stage_name":"transform_engine","events_processed":747,"events_dropped":0,"avg_latency_ms":676.2226105823897,"throughput_eps":0,"last_update":"2026-03-22T00:19:38.965834853Z"} +2026/03/22 00:19:43 [detection_layer] {"stage_name":"detection_layer","events_processed":746,"events_dropped":0,"avg_latency_ms":17.808737040932527,"throughput_eps":0,"last_update":"2026-03-22T00:19:38.965819262Z"} +2026/03/22 00:19:43 ───────────────────────────────────────────────── +2026/03/22 00:19:48 ── Pipeline Health ────────────────────────────── +2026/03/22 00:19:48 [metric_collector] {"stage_name":"metric_collector","events_processed":22434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4486.8,"last_update":"2026-03-22T00:19:43.870241988Z"} +2026/03/22 00:19:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:19:43.877976138Z"} +2026/03/22 00:19:48 [transform_engine] {"stage_name":"transform_engine","events_processed":747,"events_dropped":0,"avg_latency_ms":676.2226105823897,"throughput_eps":0,"last_update":"2026-03-22T00:19:43.965087655Z"} +2026/03/22 00:19:48 [detection_layer] {"stage_name":"detection_layer","events_processed":746,"events_dropped":0,"avg_latency_ms":17.808737040932527,"throughput_eps":0,"last_update":"2026-03-22T00:19:43.966201698Z"} +2026/03/22 00:19:48 [log_collector] {"stage_name":"log_collector","events_processed":35957,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7191.4,"last_update":"2026-03-22T00:19:48.869927396Z"} +2026/03/22 00:19:48 ───────────────────────────────────────────────── +2026/03/22 00:19:54 ── Pipeline Health ────────────────────────────── +2026/03/22 00:19:54 [log_collector] {"stage_name":"log_collector","events_processed":35960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7192,"last_update":"2026-03-22T00:19:54.0839624Z"} +2026/03/22 00:19:54 [metric_collector] {"stage_name":"metric_collector","events_processed":22444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4488.8,"last_update":"2026-03-22T00:19:54.089415303Z"} +2026/03/22 00:19:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:19:48.879821002Z"} +2026/03/22 00:19:54 [transform_engine] {"stage_name":"transform_engine","events_processed":748,"events_dropped":0,"avg_latency_ms":565.7134686659118,"throughput_eps":0,"last_update":"2026-03-22T00:19:54.083532006Z"} +2026/03/22 00:19:54 [detection_layer] {"stage_name":"detection_layer","events_processed":747,"events_dropped":0,"avg_latency_ms":18.88108383274602,"throughput_eps":0,"last_update":"2026-03-22T00:19:54.083859523Z"} +2026/03/22 00:19:54 ───────────────────────────────────────────────── +2026/03/22 00:19:58 ── Pipeline Health ────────────────────────────── +2026/03/22 00:19:58 [detection_layer] {"stage_name":"detection_layer","events_processed":747,"events_dropped":0,"avg_latency_ms":18.88108383274602,"throughput_eps":0,"last_update":"2026-03-22T00:19:54.083859523Z"} +2026/03/22 00:19:58 [log_collector] {"stage_name":"log_collector","events_processed":35960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7192,"last_update":"2026-03-22T00:19:54.0839624Z"} +2026/03/22 00:19:58 [metric_collector] {"stage_name":"metric_collector","events_processed":22444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4488.8,"last_update":"2026-03-22T00:19:54.089415303Z"} +2026/03/22 00:19:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:19:54.472594209Z"} +2026/03/22 00:19:58 [transform_engine] {"stage_name":"transform_engine","events_processed":748,"events_dropped":0,"avg_latency_ms":565.7134686659118,"throughput_eps":0,"last_update":"2026-03-22T00:19:54.083532006Z"} +2026/03/22 00:19:58 ───────────────────────────────────────────────── +2026/03/22 00:20:03 ── Pipeline Health ────────────────────────────── +2026/03/22 00:20:03 [transform_engine] {"stage_name":"transform_engine","events_processed":748,"events_dropped":0,"avg_latency_ms":565.7134686659118,"throughput_eps":0,"last_update":"2026-03-22T00:19:58.965553331Z"} +2026/03/22 00:20:03 [detection_layer] {"stage_name":"detection_layer","events_processed":747,"events_dropped":0,"avg_latency_ms":18.88108383274602,"throughput_eps":0,"last_update":"2026-03-22T00:19:58.965525067Z"} +2026/03/22 00:20:03 [log_collector] {"stage_name":"log_collector","events_processed":35970,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7194,"last_update":"2026-03-22T00:19:58.869587917Z"} +2026/03/22 00:20:03 [metric_collector] {"stage_name":"metric_collector","events_processed":22449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4489.8,"last_update":"2026-03-22T00:19:58.870021918Z"} +2026/03/22 00:20:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:19:58.876297576Z"} +2026/03/22 00:20:03 ───────────────────────────────────────────────── +2026/03/22 00:20:08 ── Pipeline Health ────────────────────────────── +2026/03/22 00:20:08 [metric_collector] {"stage_name":"metric_collector","events_processed":22454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4490.8,"last_update":"2026-03-22T00:20:03.870416964Z"} +2026/03/22 00:20:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:20:03.876368341Z"} +2026/03/22 00:20:08 [transform_engine] {"stage_name":"transform_engine","events_processed":748,"events_dropped":0,"avg_latency_ms":565.7134686659118,"throughput_eps":0,"last_update":"2026-03-22T00:20:03.965680413Z"} +2026/03/22 00:20:08 [detection_layer] {"stage_name":"detection_layer","events_processed":747,"events_dropped":0,"avg_latency_ms":18.88108383274602,"throughput_eps":0,"last_update":"2026-03-22T00:20:03.965770857Z"} +2026/03/22 00:20:08 [log_collector] {"stage_name":"log_collector","events_processed":35971,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7194.2,"last_update":"2026-03-22T00:20:03.870141666Z"} +2026/03/22 00:20:08 ───────────────────────────────────────────────── +2026/03/22 00:20:13 ── Pipeline Health ────────────────────────────── +2026/03/22 00:20:13 [detection_layer] {"stage_name":"detection_layer","events_processed":747,"events_dropped":0,"avg_latency_ms":18.88108383274602,"throughput_eps":0,"last_update":"2026-03-22T00:20:08.966034326Z"} +2026/03/22 00:20:13 [log_collector] {"stage_name":"log_collector","events_processed":35971,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7194.2,"last_update":"2026-03-22T00:20:08.869720665Z"} +2026/03/22 00:20:13 [metric_collector] {"stage_name":"metric_collector","events_processed":22459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4491.8,"last_update":"2026-03-22T00:20:08.870112766Z"} +2026/03/22 00:20:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:20:08.887476688Z"} +2026/03/22 00:20:13 [transform_engine] {"stage_name":"transform_engine","events_processed":748,"events_dropped":0,"avg_latency_ms":565.7134686659118,"throughput_eps":0,"last_update":"2026-03-22T00:20:08.966059113Z"} +2026/03/22 00:20:13 ───────────────────────────────────────────────── +2026/03/22 00:20:18 ── Pipeline Health ────────────────────────────── +2026/03/22 00:20:18 [transform_engine] {"stage_name":"transform_engine","events_processed":748,"events_dropped":0,"avg_latency_ms":565.7134686659118,"throughput_eps":0,"last_update":"2026-03-22T00:20:13.967219476Z"} +2026/03/22 00:20:18 [detection_layer] {"stage_name":"detection_layer","events_processed":747,"events_dropped":0,"avg_latency_ms":18.88108383274602,"throughput_eps":0,"last_update":"2026-03-22T00:20:13.966086416Z"} +2026/03/22 00:20:18 [log_collector] {"stage_name":"log_collector","events_processed":35971,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7194.2,"last_update":"2026-03-22T00:20:13.87346744Z"} +2026/03/22 00:20:18 [metric_collector] {"stage_name":"metric_collector","events_processed":22464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4492.8,"last_update":"2026-03-22T00:20:13.874285065Z"} +2026/03/22 00:20:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:20:14.360728119Z"} +2026/03/22 00:20:18 ───────────────────────────────────────────────── +2026/03/22 00:20:23 ── Pipeline Health ────────────────────────────── +2026/03/22 00:20:23 [metric_collector] {"stage_name":"metric_collector","events_processed":22469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4493.8,"last_update":"2026-03-22T00:20:18.875255158Z"} +2026/03/22 00:20:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8990,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:20:19.153293063Z"} +2026/03/22 00:20:23 [transform_engine] {"stage_name":"transform_engine","events_processed":749,"events_dropped":0,"avg_latency_ms":1369.7786247327294,"throughput_eps":0,"last_update":"2026-03-22T00:20:23.555450437Z"} +2026/03/22 00:20:23 [detection_layer] {"stage_name":"detection_layer","events_processed":747,"events_dropped":0,"avg_latency_ms":18.88108383274602,"throughput_eps":0,"last_update":"2026-03-22T00:20:18.967121583Z"} +2026/03/22 00:20:23 [log_collector] {"stage_name":"log_collector","events_processed":35971,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7194.2,"last_update":"2026-03-22T00:20:18.871176096Z"} +2026/03/22 00:20:23 ───────────────────────────────────────────────── +2026/03/22 00:20:28 ── Pipeline Health ────────────────────────────── +2026/03/22 00:20:28 [transform_engine] {"stage_name":"transform_engine","events_processed":749,"events_dropped":0,"avg_latency_ms":1369.7786247327294,"throughput_eps":0,"last_update":"2026-03-22T00:20:23.965860137Z"} +2026/03/22 00:20:28 [detection_layer] {"stage_name":"detection_layer","events_processed":748,"events_dropped":0,"avg_latency_ms":17.376319066196817,"throughput_eps":0,"last_update":"2026-03-22T00:20:23.965847604Z"} +2026/03/22 00:20:28 [log_collector] {"stage_name":"log_collector","events_processed":35971,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7194.2,"last_update":"2026-03-22T00:20:23.870329695Z"} +2026/03/22 00:20:28 [metric_collector] {"stage_name":"metric_collector","events_processed":22474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4494.8,"last_update":"2026-03-22T00:20:23.869653841Z"} +2026/03/22 00:20:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8992,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:20:23.897549181Z"} +2026/03/22 00:20:28 ───────────────────────────────────────────────── +Saved state: 29 clusters, 35972 messages, reason: none +2026/03/22 00:20:33 ── Pipeline Health ────────────────────────────── +2026/03/22 00:20:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:20:28.882937294Z"} +2026/03/22 00:20:33 [transform_engine] {"stage_name":"transform_engine","events_processed":749,"events_dropped":0,"avg_latency_ms":1369.7786247327294,"throughput_eps":0,"last_update":"2026-03-22T00:20:28.966091376Z"} +2026/03/22 00:20:33 [detection_layer] {"stage_name":"detection_layer","events_processed":748,"events_dropped":0,"avg_latency_ms":17.376319066196817,"throughput_eps":0,"last_update":"2026-03-22T00:20:28.966075294Z"} +2026/03/22 00:20:33 [log_collector] {"stage_name":"log_collector","events_processed":35971,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7194.2,"last_update":"2026-03-22T00:20:28.869840062Z"} +2026/03/22 00:20:33 [metric_collector] {"stage_name":"metric_collector","events_processed":22479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4495.8,"last_update":"2026-03-22T00:20:28.869784807Z"} +2026/03/22 00:20:33 ───────────────────────────────────────────────── +2026/03/22 00:20:38 ── Pipeline Health ────────────────────────────── +2026/03/22 00:20:38 [log_collector] {"stage_name":"log_collector","events_processed":35985,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7197,"last_update":"2026-03-22T00:20:33.869462729Z"} +2026/03/22 00:20:38 [metric_collector] {"stage_name":"metric_collector","events_processed":22484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4496.8,"last_update":"2026-03-22T00:20:33.869878917Z"} +2026/03/22 00:20:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8996,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:20:33.878392691Z"} +2026/03/22 00:20:38 [transform_engine] {"stage_name":"transform_engine","events_processed":749,"events_dropped":0,"avg_latency_ms":1369.7786247327294,"throughput_eps":0,"last_update":"2026-03-22T00:20:33.965677673Z"} +2026/03/22 00:20:38 [detection_layer] {"stage_name":"detection_layer","events_processed":748,"events_dropped":0,"avg_latency_ms":17.376319066196817,"throughput_eps":0,"last_update":"2026-03-22T00:20:33.965740994Z"} +2026/03/22 00:20:38 ───────────────────────────────────────────────── +2026/03/22 00:20:43 ── Pipeline Health ────────────────────────────── +2026/03/22 00:20:43 [detection_layer] {"stage_name":"detection_layer","events_processed":748,"events_dropped":0,"avg_latency_ms":17.376319066196817,"throughput_eps":0,"last_update":"2026-03-22T00:20:38.965928097Z"} +2026/03/22 00:20:43 [log_collector] {"stage_name":"log_collector","events_processed":35987,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7197.4,"last_update":"2026-03-22T00:20:43.870032494Z"} +2026/03/22 00:20:43 [metric_collector] {"stage_name":"metric_collector","events_processed":22489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4497.8,"last_update":"2026-03-22T00:20:38.869746828Z"} +2026/03/22 00:20:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:20:38.877582584Z"} +2026/03/22 00:20:43 [transform_engine] {"stage_name":"transform_engine","events_processed":749,"events_dropped":0,"avg_latency_ms":1369.7786247327294,"throughput_eps":0,"last_update":"2026-03-22T00:20:38.965969116Z"} +2026/03/22 00:20:43 ───────────────────────────────────────────────── +2026/03/22 00:20:48 ── Pipeline Health ────────────────────────────── +2026/03/22 00:20:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:20:43.879279592Z"} +2026/03/22 00:20:48 [transform_engine] {"stage_name":"transform_engine","events_processed":749,"events_dropped":0,"avg_latency_ms":1369.7786247327294,"throughput_eps":0,"last_update":"2026-03-22T00:20:43.965490439Z"} +2026/03/22 00:20:48 [detection_layer] {"stage_name":"detection_layer","events_processed":748,"events_dropped":0,"avg_latency_ms":17.376319066196817,"throughput_eps":0,"last_update":"2026-03-22T00:20:43.965516559Z"} +2026/03/22 00:20:48 [log_collector] {"stage_name":"log_collector","events_processed":35987,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7197.4,"last_update":"2026-03-22T00:20:43.870032494Z"} +2026/03/22 00:20:48 [metric_collector] {"stage_name":"metric_collector","events_processed":22494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4498.8,"last_update":"2026-03-22T00:20:43.870424465Z"} +2026/03/22 00:20:48 ───────────────────────────────────────────────── +2026/03/22 00:20:53 ── Pipeline Health ────────────────────────────── +2026/03/22 00:20:53 [log_collector] {"stage_name":"log_collector","events_processed":35987,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7197.4,"last_update":"2026-03-22T00:20:53.869409639Z"} +2026/03/22 00:20:53 [metric_collector] {"stage_name":"metric_collector","events_processed":22499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4499.8,"last_update":"2026-03-22T00:20:48.870529919Z"} +2026/03/22 00:20:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:20:48.879161198Z"} +2026/03/22 00:20:53 [transform_engine] {"stage_name":"transform_engine","events_processed":750,"events_dropped":0,"avg_latency_ms":1122.2676063861836,"throughput_eps":0,"last_update":"2026-03-22T00:20:49.097797473Z"} +2026/03/22 00:20:53 [detection_layer] {"stage_name":"detection_layer","events_processed":748,"events_dropped":0,"avg_latency_ms":17.376319066196817,"throughput_eps":0,"last_update":"2026-03-22T00:20:48.965669855Z"} +2026/03/22 00:20:53 ───────────────────────────────────────────────── +2026/03/22 00:20:58 ── Pipeline Health ────────────────────────────── +2026/03/22 00:20:58 [transform_engine] {"stage_name":"transform_engine","events_processed":750,"events_dropped":0,"avg_latency_ms":1122.2676063861836,"throughput_eps":0,"last_update":"2026-03-22T00:20:53.966196109Z"} +2026/03/22 00:20:58 [detection_layer] {"stage_name":"detection_layer","events_processed":749,"events_dropped":0,"avg_latency_ms":18.037871452957454,"throughput_eps":0,"last_update":"2026-03-22T00:20:53.966183164Z"} +2026/03/22 00:20:58 [log_collector] {"stage_name":"log_collector","events_processed":35987,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7197.4,"last_update":"2026-03-22T00:20:53.869409639Z"} +2026/03/22 00:20:58 [metric_collector] {"stage_name":"metric_collector","events_processed":22504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4500.8,"last_update":"2026-03-22T00:20:53.869871635Z"} +2026/03/22 00:20:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:20:53.878830931Z"} +2026/03/22 00:20:58 ───────────────────────────────────────────────── +2026/03/22 00:21:03 ── Pipeline Health ────────────────────────────── +2026/03/22 00:21:03 [metric_collector] {"stage_name":"metric_collector","events_processed":22509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4501.8,"last_update":"2026-03-22T00:20:58.869981956Z"} +2026/03/22 00:21:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9006,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:20:58.88029687Z"} +2026/03/22 00:21:03 [transform_engine] {"stage_name":"transform_engine","events_processed":750,"events_dropped":0,"avg_latency_ms":1122.2676063861836,"throughput_eps":0,"last_update":"2026-03-22T00:20:58.965501228Z"} +2026/03/22 00:21:03 [detection_layer] {"stage_name":"detection_layer","events_processed":749,"events_dropped":0,"avg_latency_ms":18.037871452957454,"throughput_eps":0,"last_update":"2026-03-22T00:20:58.965489266Z"} +2026/03/22 00:21:03 [log_collector] {"stage_name":"log_collector","events_processed":35987,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7197.4,"last_update":"2026-03-22T00:21:03.87009117Z"} +2026/03/22 00:21:03 ───────────────────────────────────────────────── +2026/03/22 00:21:08 ── Pipeline Health ────────────────────────────── +2026/03/22 00:21:08 [detection_layer] {"stage_name":"detection_layer","events_processed":749,"events_dropped":0,"avg_latency_ms":18.037871452957454,"throughput_eps":0,"last_update":"2026-03-22T00:21:03.965446209Z"} +2026/03/22 00:21:08 [log_collector] {"stage_name":"log_collector","events_processed":35987,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7197.4,"last_update":"2026-03-22T00:21:08.869653091Z"} +2026/03/22 00:21:08 [metric_collector] {"stage_name":"metric_collector","events_processed":22514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4502.8,"last_update":"2026-03-22T00:21:03.870548005Z"} +2026/03/22 00:21:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9008,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:21:03.879168253Z"} +2026/03/22 00:21:08 [transform_engine] {"stage_name":"transform_engine","events_processed":750,"events_dropped":0,"avg_latency_ms":1122.2676063861836,"throughput_eps":0,"last_update":"2026-03-22T00:21:03.965454705Z"} +2026/03/22 00:21:08 ───────────────────────────────────────────────── +2026/03/22 00:21:13 ── Pipeline Health ────────────────────────────── +2026/03/22 00:21:13 [log_collector] {"stage_name":"log_collector","events_processed":35987,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7197.4,"last_update":"2026-03-22T00:21:13.870320569Z"} +2026/03/22 00:21:13 [metric_collector] {"stage_name":"metric_collector","events_processed":22519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4503.8,"last_update":"2026-03-22T00:21:08.869998763Z"} +2026/03/22 00:21:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:21:08.878499111Z"} +2026/03/22 00:21:13 [transform_engine] {"stage_name":"transform_engine","events_processed":750,"events_dropped":0,"avg_latency_ms":1122.2676063861836,"throughput_eps":0,"last_update":"2026-03-22T00:21:08.965935336Z"} +2026/03/22 00:21:13 [detection_layer] {"stage_name":"detection_layer","events_processed":749,"events_dropped":0,"avg_latency_ms":18.037871452957454,"throughput_eps":0,"last_update":"2026-03-22T00:21:08.965900179Z"} +2026/03/22 00:21:13 ───────────────────────────────────────────────── +2026/03/22 00:21:18 ── Pipeline Health ────────────────────────────── +2026/03/22 00:21:18 [transform_engine] {"stage_name":"transform_engine","events_processed":750,"events_dropped":0,"avg_latency_ms":1122.2676063861836,"throughput_eps":0,"last_update":"2026-03-22T00:21:13.965220818Z"} +2026/03/22 00:21:18 [detection_layer] {"stage_name":"detection_layer","events_processed":749,"events_dropped":0,"avg_latency_ms":18.037871452957454,"throughput_eps":0,"last_update":"2026-03-22T00:21:13.965339344Z"} +2026/03/22 00:21:18 [log_collector] {"stage_name":"log_collector","events_processed":35987,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7197.4,"last_update":"2026-03-22T00:21:13.870320569Z"} +2026/03/22 00:21:18 [metric_collector] {"stage_name":"metric_collector","events_processed":22524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4504.8,"last_update":"2026-03-22T00:21:13.870716598Z"} +2026/03/22 00:21:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9012,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:21:13.877022614Z"} +2026/03/22 00:21:18 ───────────────────────────────────────────────── +2026/03/22 00:21:23 ── Pipeline Health ────────────────────────────── +2026/03/22 00:21:23 [log_collector] {"stage_name":"log_collector","events_processed":35987,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7197.4,"last_update":"2026-03-22T00:21:23.8700051Z"} +2026/03/22 00:21:23 [metric_collector] {"stage_name":"metric_collector","events_processed":22529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4505.8,"last_update":"2026-03-22T00:21:18.871029052Z"} +2026/03/22 00:21:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:21:18.879410423Z"} +2026/03/22 00:21:23 [transform_engine] {"stage_name":"transform_engine","events_processed":751,"events_dropped":0,"avg_latency_ms":912.654681508947,"throughput_eps":0,"last_update":"2026-03-22T00:21:19.039913534Z"} +2026/03/22 00:21:23 [detection_layer] {"stage_name":"detection_layer","events_processed":749,"events_dropped":0,"avg_latency_ms":18.037871452957454,"throughput_eps":0,"last_update":"2026-03-22T00:21:18.965665516Z"} +2026/03/22 00:21:23 ───────────────────────────────────────────────── +2026/03/22 00:21:28 ── Pipeline Health ────────────────────────────── +2026/03/22 00:21:28 [log_collector] {"stage_name":"log_collector","events_processed":35987,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7197.4,"last_update":"2026-03-22T00:21:23.8700051Z"} +2026/03/22 00:21:28 [metric_collector] {"stage_name":"metric_collector","events_processed":22534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4506.8,"last_update":"2026-03-22T00:21:23.870341565Z"} +2026/03/22 00:21:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:21:23.880598688Z"} +2026/03/22 00:21:28 [transform_engine] {"stage_name":"transform_engine","events_processed":751,"events_dropped":0,"avg_latency_ms":912.654681508947,"throughput_eps":0,"last_update":"2026-03-22T00:21:23.96589314Z"} +2026/03/22 00:21:28 [detection_layer] {"stage_name":"detection_layer","events_processed":750,"events_dropped":0,"avg_latency_ms":18.318118562365964,"throughput_eps":0,"last_update":"2026-03-22T00:21:23.96599696Z"} +2026/03/22 00:21:28 ───────────────────────────────────────────────── +2026/03/22 00:21:33 ── Pipeline Health ────────────────────────────── +2026/03/22 00:21:33 [log_collector] {"stage_name":"log_collector","events_processed":36007,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7201.4,"last_update":"2026-03-22T00:21:28.86949206Z"} +2026/03/22 00:21:33 [metric_collector] {"stage_name":"metric_collector","events_processed":22539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4507.8,"last_update":"2026-03-22T00:21:28.869898378Z"} +2026/03/22 00:21:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9018,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:21:28.879360298Z"} +2026/03/22 00:21:33 [transform_engine] {"stage_name":"transform_engine","events_processed":751,"events_dropped":0,"avg_latency_ms":912.654681508947,"throughput_eps":0,"last_update":"2026-03-22T00:21:28.965550807Z"} +2026/03/22 00:21:33 [detection_layer] {"stage_name":"detection_layer","events_processed":750,"events_dropped":0,"avg_latency_ms":18.318118562365964,"throughput_eps":0,"last_update":"2026-03-22T00:21:28.965517995Z"} +2026/03/22 00:21:33 ───────────────────────────────────────────────── +2026/03/22 00:21:38 ── Pipeline Health ────────────────────────────── +2026/03/22 00:21:38 [log_collector] {"stage_name":"log_collector","events_processed":36007,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7201.4,"last_update":"2026-03-22T00:21:33.869848567Z"} +2026/03/22 00:21:38 [metric_collector] {"stage_name":"metric_collector","events_processed":22549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4509.8,"last_update":"2026-03-22T00:21:38.869802517Z"} +2026/03/22 00:21:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9020,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:21:33.87893088Z"} +2026/03/22 00:21:38 [transform_engine] {"stage_name":"transform_engine","events_processed":751,"events_dropped":0,"avg_latency_ms":912.654681508947,"throughput_eps":0,"last_update":"2026-03-22T00:21:33.96511662Z"} +2026/03/22 00:21:38 [detection_layer] {"stage_name":"detection_layer","events_processed":750,"events_dropped":0,"avg_latency_ms":18.318118562365964,"throughput_eps":0,"last_update":"2026-03-22T00:21:33.966295999Z"} +2026/03/22 00:21:38 ───────────────────────────────────────────────── +Saved state: 29 clusters, 36008 messages, reason: none +2026/03/22 00:21:43 ── Pipeline Health ────────────────────────────── +2026/03/22 00:21:43 [transform_engine] {"stage_name":"transform_engine","events_processed":751,"events_dropped":0,"avg_latency_ms":912.654681508947,"throughput_eps":0,"last_update":"2026-03-22T00:21:38.965992907Z"} +2026/03/22 00:21:43 [detection_layer] {"stage_name":"detection_layer","events_processed":750,"events_dropped":0,"avg_latency_ms":18.318118562365964,"throughput_eps":0,"last_update":"2026-03-22T00:21:38.965965584Z"} +2026/03/22 00:21:43 [log_collector] {"stage_name":"log_collector","events_processed":36007,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7201.4,"last_update":"2026-03-22T00:21:38.869825601Z"} +2026/03/22 00:21:43 [metric_collector] {"stage_name":"metric_collector","events_processed":22549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4509.8,"last_update":"2026-03-22T00:21:38.869802517Z"} +2026/03/22 00:21:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9022,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:21:38.878758137Z"} +2026/03/22 00:21:43 ───────────────────────────────────────────────── +2026/03/22 00:21:48 ── Pipeline Health ────────────────────────────── +2026/03/22 00:21:48 [metric_collector] {"stage_name":"metric_collector","events_processed":22554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4510.8,"last_update":"2026-03-22T00:21:43.870751096Z"} +2026/03/22 00:21:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:21:43.87662239Z"} +2026/03/22 00:21:48 [transform_engine] {"stage_name":"transform_engine","events_processed":751,"events_dropped":0,"avg_latency_ms":912.654681508947,"throughput_eps":0,"last_update":"2026-03-22T00:21:43.965898919Z"} +2026/03/22 00:21:48 [detection_layer] {"stage_name":"detection_layer","events_processed":750,"events_dropped":0,"avg_latency_ms":18.318118562365964,"throughput_eps":0,"last_update":"2026-03-22T00:21:43.96597242Z"} +2026/03/22 00:21:48 [log_collector] {"stage_name":"log_collector","events_processed":36021,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7204.2,"last_update":"2026-03-22T00:21:43.870369164Z"} +2026/03/22 00:21:48 ───────────────────────────────────────────────── +2026/03/22 00:21:53 ── Pipeline Health ────────────────────────────── +2026/03/22 00:21:53 [metric_collector] {"stage_name":"metric_collector","events_processed":22559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4511.8,"last_update":"2026-03-22T00:21:48.86988076Z"} +2026/03/22 00:21:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:21:48.878518313Z"} +2026/03/22 00:21:53 [transform_engine] {"stage_name":"transform_engine","events_processed":752,"events_dropped":0,"avg_latency_ms":754.4349708071577,"throughput_eps":0,"last_update":"2026-03-22T00:21:49.087426945Z"} +2026/03/22 00:21:53 [detection_layer] {"stage_name":"detection_layer","events_processed":750,"events_dropped":0,"avg_latency_ms":18.318118562365964,"throughput_eps":0,"last_update":"2026-03-22T00:21:48.965909031Z"} +2026/03/22 00:21:53 [log_collector] {"stage_name":"log_collector","events_processed":36021,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7204.2,"last_update":"2026-03-22T00:21:53.869494338Z"} +2026/03/22 00:21:53 ───────────────────────────────────────────────── +2026/03/22 00:21:58 ── Pipeline Health ────────────────────────────── +2026/03/22 00:21:58 [metric_collector] {"stage_name":"metric_collector","events_processed":22564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4512.8,"last_update":"2026-03-22T00:21:53.869983395Z"} +2026/03/22 00:21:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:21:53.878649791Z"} +2026/03/22 00:21:58 [transform_engine] {"stage_name":"transform_engine","events_processed":752,"events_dropped":0,"avg_latency_ms":754.4349708071577,"throughput_eps":0,"last_update":"2026-03-22T00:21:53.965145136Z"} +2026/03/22 00:21:58 [detection_layer] {"stage_name":"detection_layer","events_processed":751,"events_dropped":0,"avg_latency_ms":18.848133849892772,"throughput_eps":0,"last_update":"2026-03-22T00:21:53.966319375Z"} +2026/03/22 00:21:58 [log_collector] {"stage_name":"log_collector","events_processed":36021,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7204.2,"last_update":"2026-03-22T00:21:53.869494338Z"} +2026/03/22 00:21:58 ───────────────────────────────────────────────── +2026/03/22 00:22:03 ── Pipeline Health ────────────────────────────── +2026/03/22 00:22:03 [metric_collector] {"stage_name":"metric_collector","events_processed":22569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4513.8,"last_update":"2026-03-22T00:21:58.869923198Z"} +2026/03/22 00:22:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:21:58.87792403Z"} +2026/03/22 00:22:03 [transform_engine] {"stage_name":"transform_engine","events_processed":752,"events_dropped":0,"avg_latency_ms":754.4349708071577,"throughput_eps":0,"last_update":"2026-03-22T00:21:58.965051024Z"} +2026/03/22 00:22:03 [detection_layer] {"stage_name":"detection_layer","events_processed":751,"events_dropped":0,"avg_latency_ms":18.848133849892772,"throughput_eps":0,"last_update":"2026-03-22T00:21:58.966257906Z"} +2026/03/22 00:22:03 [log_collector] {"stage_name":"log_collector","events_processed":36021,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7204.2,"last_update":"2026-03-22T00:22:03.86958476Z"} +2026/03/22 00:22:03 ───────────────────────────────────────────────── +2026/03/22 00:22:08 ── Pipeline Health ────────────────────────────── +2026/03/22 00:22:08 [log_collector] {"stage_name":"log_collector","events_processed":36021,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7204.2,"last_update":"2026-03-22T00:22:03.86958476Z"} +2026/03/22 00:22:08 [metric_collector] {"stage_name":"metric_collector","events_processed":22574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4514.8,"last_update":"2026-03-22T00:22:03.870039471Z"} +2026/03/22 00:22:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:22:03.879252765Z"} +2026/03/22 00:22:08 [transform_engine] {"stage_name":"transform_engine","events_processed":752,"events_dropped":0,"avg_latency_ms":754.4349708071577,"throughput_eps":0,"last_update":"2026-03-22T00:22:03.965663968Z"} +2026/03/22 00:22:08 [detection_layer] {"stage_name":"detection_layer","events_processed":751,"events_dropped":0,"avg_latency_ms":18.848133849892772,"throughput_eps":0,"last_update":"2026-03-22T00:22:03.965744403Z"} +2026/03/22 00:22:08 ───────────────────────────────────────────────── +2026/03/22 00:22:13 ── Pipeline Health ────────────────────────────── +2026/03/22 00:22:13 [log_collector] {"stage_name":"log_collector","events_processed":36021,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7204.2,"last_update":"2026-03-22T00:22:08.869496863Z"} +2026/03/22 00:22:13 [metric_collector] {"stage_name":"metric_collector","events_processed":22579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4515.8,"last_update":"2026-03-22T00:22:08.870155716Z"} +2026/03/22 00:22:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:22:08.878570731Z"} +2026/03/22 00:22:13 [transform_engine] {"stage_name":"transform_engine","events_processed":752,"events_dropped":0,"avg_latency_ms":754.4349708071577,"throughput_eps":0,"last_update":"2026-03-22T00:22:08.965895996Z"} +2026/03/22 00:22:13 [detection_layer] {"stage_name":"detection_layer","events_processed":751,"events_dropped":0,"avg_latency_ms":18.848133849892772,"throughput_eps":0,"last_update":"2026-03-22T00:22:08.965931704Z"} +2026/03/22 00:22:13 ───────────────────────────────────────────────── +2026/03/22 00:22:18 ── Pipeline Health ────────────────────────────── +2026/03/22 00:22:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9036,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:22:13.87841125Z"} +2026/03/22 00:22:18 [transform_engine] {"stage_name":"transform_engine","events_processed":752,"events_dropped":0,"avg_latency_ms":754.4349708071577,"throughput_eps":0,"last_update":"2026-03-22T00:22:13.965850322Z"} +2026/03/22 00:22:18 [detection_layer] {"stage_name":"detection_layer","events_processed":751,"events_dropped":0,"avg_latency_ms":18.848133849892772,"throughput_eps":0,"last_update":"2026-03-22T00:22:13.965813572Z"} +2026/03/22 00:22:18 [log_collector] {"stage_name":"log_collector","events_processed":36021,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7204.2,"last_update":"2026-03-22T00:22:13.869515925Z"} +2026/03/22 00:22:18 [metric_collector] {"stage_name":"metric_collector","events_processed":22584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4516.8,"last_update":"2026-03-22T00:22:13.869869743Z"} +2026/03/22 00:22:18 ───────────────────────────────────────────────── +2026/03/22 00:22:23 ── Pipeline Health ────────────────────────────── +2026/03/22 00:22:23 [log_collector] {"stage_name":"log_collector","events_processed":36021,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7204.2,"last_update":"2026-03-22T00:22:23.869873936Z"} +2026/03/22 00:22:23 [metric_collector] {"stage_name":"metric_collector","events_processed":22589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4517.8,"last_update":"2026-03-22T00:22:18.869819744Z"} +2026/03/22 00:22:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:22:18.878413001Z"} +2026/03/22 00:22:23 [transform_engine] {"stage_name":"transform_engine","events_processed":753,"events_dropped":0,"avg_latency_ms":618.2716316457262,"throughput_eps":0,"last_update":"2026-03-22T00:22:19.039569166Z"} +2026/03/22 00:22:23 [detection_layer] {"stage_name":"detection_layer","events_processed":751,"events_dropped":0,"avg_latency_ms":18.848133849892772,"throughput_eps":0,"last_update":"2026-03-22T00:22:18.965834289Z"} +2026/03/22 00:22:23 ───────────────────────────────────────────────── +2026/03/22 00:22:28 ── Pipeline Health ────────────────────────────── +2026/03/22 00:22:28 [log_collector] {"stage_name":"log_collector","events_processed":36021,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7204.2,"last_update":"2026-03-22T00:22:28.869409178Z"} +2026/03/22 00:22:28 [metric_collector] {"stage_name":"metric_collector","events_processed":22594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4518.8,"last_update":"2026-03-22T00:22:23.87037737Z"} +2026/03/22 00:22:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:22:23.879172613Z"} +2026/03/22 00:22:28 [transform_engine] {"stage_name":"transform_engine","events_processed":753,"events_dropped":0,"avg_latency_ms":618.2716316457262,"throughput_eps":0,"last_update":"2026-03-22T00:22:23.965376642Z"} +2026/03/22 00:22:28 [detection_layer] {"stage_name":"detection_layer","events_processed":752,"events_dropped":0,"avg_latency_ms":19.18601927991422,"throughput_eps":0,"last_update":"2026-03-22T00:22:23.965368867Z"} +2026/03/22 00:22:28 ───────────────────────────────────────────────── +2026/03/22 00:22:33 ── Pipeline Health ────────────────────────────── +2026/03/22 00:22:33 [transform_engine] {"stage_name":"transform_engine","events_processed":753,"events_dropped":0,"avg_latency_ms":618.2716316457262,"throughput_eps":0,"last_update":"2026-03-22T00:22:28.965572276Z"} +2026/03/22 00:22:33 [detection_layer] {"stage_name":"detection_layer","events_processed":752,"events_dropped":0,"avg_latency_ms":19.18601927991422,"throughput_eps":0,"last_update":"2026-03-22T00:22:28.965556437Z"} +2026/03/22 00:22:33 [log_collector] {"stage_name":"log_collector","events_processed":36021,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7204.2,"last_update":"2026-03-22T00:22:33.870028336Z"} +2026/03/22 00:22:33 [metric_collector] {"stage_name":"metric_collector","events_processed":22599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4519.8,"last_update":"2026-03-22T00:22:28.870117324Z"} +2026/03/22 00:22:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:22:28.878149726Z"} +2026/03/22 00:22:33 ───────────────────────────────────────────────── +2026/03/22 00:22:38 ── Pipeline Health ────────────────────────────── +2026/03/22 00:22:38 [log_collector] {"stage_name":"log_collector","events_processed":36021,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7204.2,"last_update":"2026-03-22T00:22:33.870028336Z"} +2026/03/22 00:22:38 [metric_collector] {"stage_name":"metric_collector","events_processed":22604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4520.8,"last_update":"2026-03-22T00:22:33.870452739Z"} +2026/03/22 00:22:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:22:33.880456357Z"} +2026/03/22 00:22:38 [transform_engine] {"stage_name":"transform_engine","events_processed":753,"events_dropped":0,"avg_latency_ms":618.2716316457262,"throughput_eps":0,"last_update":"2026-03-22T00:22:33.965800577Z"} +2026/03/22 00:22:38 [detection_layer] {"stage_name":"detection_layer","events_processed":752,"events_dropped":0,"avg_latency_ms":19.18601927991422,"throughput_eps":0,"last_update":"2026-03-22T00:22:33.965787944Z"} +2026/03/22 00:22:38 ───────────────────────────────────────────────── +2026/03/22 00:22:43 ── Pipeline Health ────────────────────────────── +2026/03/22 00:22:43 [transform_engine] {"stage_name":"transform_engine","events_processed":753,"events_dropped":0,"avg_latency_ms":618.2716316457262,"throughput_eps":0,"last_update":"2026-03-22T00:22:38.965062359Z"} +2026/03/22 00:22:43 [detection_layer] {"stage_name":"detection_layer","events_processed":752,"events_dropped":0,"avg_latency_ms":19.18601927991422,"throughput_eps":0,"last_update":"2026-03-22T00:22:38.966147437Z"} +2026/03/22 00:22:43 [log_collector] {"stage_name":"log_collector","events_processed":36021,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7204.2,"last_update":"2026-03-22T00:22:38.870060312Z"} +2026/03/22 00:22:43 [metric_collector] {"stage_name":"metric_collector","events_processed":22609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4521.8,"last_update":"2026-03-22T00:22:38.870844514Z"} +2026/03/22 00:22:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:22:38.878936962Z"} +2026/03/22 00:22:43 ───────────────────────────────────────────────── +Saved state: 29 clusters, 36022 messages, reason: none +2026/03/22 00:22:48 ── Pipeline Health ────────────────────────────── +2026/03/22 00:22:48 [log_collector] {"stage_name":"log_collector","events_processed":36026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7205.2,"last_update":"2026-03-22T00:22:48.870037439Z"} +2026/03/22 00:22:48 [metric_collector] {"stage_name":"metric_collector","events_processed":22614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4522.8,"last_update":"2026-03-22T00:22:43.87010895Z"} +2026/03/22 00:22:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9048,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:22:43.877960567Z"} +2026/03/22 00:22:48 [transform_engine] {"stage_name":"transform_engine","events_processed":753,"events_dropped":0,"avg_latency_ms":618.2716316457262,"throughput_eps":0,"last_update":"2026-03-22T00:22:43.96515424Z"} +2026/03/22 00:22:48 [detection_layer] {"stage_name":"detection_layer","events_processed":752,"events_dropped":0,"avg_latency_ms":19.18601927991422,"throughput_eps":0,"last_update":"2026-03-22T00:22:43.966387211Z"} +2026/03/22 00:22:48 ───────────────────────────────────────────────── +2026/03/22 00:22:53 ── Pipeline Health ────────────────────────────── +2026/03/22 00:22:53 [detection_layer] {"stage_name":"detection_layer","events_processed":752,"events_dropped":0,"avg_latency_ms":19.18601927991422,"throughput_eps":0,"last_update":"2026-03-22T00:22:48.965455664Z"} +2026/03/22 00:22:53 [log_collector] {"stage_name":"log_collector","events_processed":36026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7205.2,"last_update":"2026-03-22T00:22:48.870037439Z"} +2026/03/22 00:22:53 [metric_collector] {"stage_name":"metric_collector","events_processed":22619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4523.8,"last_update":"2026-03-22T00:22:48.87034081Z"} +2026/03/22 00:22:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9050,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:22:48.87775016Z"} +2026/03/22 00:22:53 [transform_engine] {"stage_name":"transform_engine","events_processed":754,"events_dropped":0,"avg_latency_ms":509.748871516581,"throughput_eps":0,"last_update":"2026-03-22T00:22:49.041127883Z"} +2026/03/22 00:22:53 ───────────────────────────────────────────────── +2026/03/22 00:22:58 ── Pipeline Health ────────────────────────────── +2026/03/22 00:22:58 [log_collector] {"stage_name":"log_collector","events_processed":36026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7205.2,"last_update":"2026-03-22T00:22:53.869854447Z"} +2026/03/22 00:22:58 [metric_collector] {"stage_name":"metric_collector","events_processed":22624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4524.8,"last_update":"2026-03-22T00:22:53.870134152Z"} +2026/03/22 00:22:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:22:53.877049295Z"} +2026/03/22 00:22:58 [transform_engine] {"stage_name":"transform_engine","events_processed":754,"events_dropped":0,"avg_latency_ms":509.748871516581,"throughput_eps":0,"last_update":"2026-03-22T00:22:53.965199641Z"} +2026/03/22 00:22:58 [detection_layer] {"stage_name":"detection_layer","events_processed":753,"events_dropped":0,"avg_latency_ms":19.758131623931376,"throughput_eps":0,"last_update":"2026-03-22T00:22:53.966314697Z"} +2026/03/22 00:22:58 ───────────────────────────────────────────────── +2026/03/22 00:23:03 ── Pipeline Health ────────────────────────────── +2026/03/22 00:23:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:22:58.880476477Z"} +2026/03/22 00:23:03 [transform_engine] {"stage_name":"transform_engine","events_processed":754,"events_dropped":0,"avg_latency_ms":509.748871516581,"throughput_eps":0,"last_update":"2026-03-22T00:22:58.965337414Z"} +2026/03/22 00:23:03 [detection_layer] {"stage_name":"detection_layer","events_processed":753,"events_dropped":0,"avg_latency_ms":19.758131623931376,"throughput_eps":0,"last_update":"2026-03-22T00:22:58.965319659Z"} +2026/03/22 00:23:03 [log_collector] {"stage_name":"log_collector","events_processed":36026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7205.2,"last_update":"2026-03-22T00:22:58.869655504Z"} +2026/03/22 00:23:03 [metric_collector] {"stage_name":"metric_collector","events_processed":22629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4525.8,"last_update":"2026-03-22T00:22:58.869646386Z"} +2026/03/22 00:23:03 ───────────────────────────────────────────────── +2026/03/22 00:23:08 ── Pipeline Health ────────────────────────────── +2026/03/22 00:23:08 [log_collector] {"stage_name":"log_collector","events_processed":36026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7205.2,"last_update":"2026-03-22T00:23:03.869861897Z"} +2026/03/22 00:23:08 [metric_collector] {"stage_name":"metric_collector","events_processed":22634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4526.8,"last_update":"2026-03-22T00:23:03.869933103Z"} +2026/03/22 00:23:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9056,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:23:03.876335584Z"} +2026/03/22 00:23:08 [transform_engine] {"stage_name":"transform_engine","events_processed":754,"events_dropped":0,"avg_latency_ms":509.748871516581,"throughput_eps":0,"last_update":"2026-03-22T00:23:03.965651553Z"} +2026/03/22 00:23:08 [detection_layer] {"stage_name":"detection_layer","events_processed":753,"events_dropped":0,"avg_latency_ms":19.758131623931376,"throughput_eps":0,"last_update":"2026-03-22T00:23:03.965630503Z"} +2026/03/22 00:23:08 ───────────────────────────────────────────────── +2026/03/22 00:23:13 ── Pipeline Health ────────────────────────────── +2026/03/22 00:23:13 [log_collector] {"stage_name":"log_collector","events_processed":36026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7205.2,"last_update":"2026-03-22T00:23:08.869754389Z"} +2026/03/22 00:23:13 [metric_collector] {"stage_name":"metric_collector","events_processed":22639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4527.8,"last_update":"2026-03-22T00:23:08.870118808Z"} +2026/03/22 00:23:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:23:08.876761288Z"} +2026/03/22 00:23:13 [transform_engine] {"stage_name":"transform_engine","events_processed":754,"events_dropped":0,"avg_latency_ms":509.748871516581,"throughput_eps":0,"last_update":"2026-03-22T00:23:08.96599482Z"} +2026/03/22 00:23:13 [detection_layer] {"stage_name":"detection_layer","events_processed":753,"events_dropped":0,"avg_latency_ms":19.758131623931376,"throughput_eps":0,"last_update":"2026-03-22T00:23:08.965960123Z"} +2026/03/22 00:23:13 ───────────────────────────────────────────────── +2026/03/22 00:23:18 ── Pipeline Health ────────────────────────────── +2026/03/22 00:23:18 [transform_engine] {"stage_name":"transform_engine","events_processed":754,"events_dropped":0,"avg_latency_ms":509.748871516581,"throughput_eps":0,"last_update":"2026-03-22T00:23:13.965168228Z"} +2026/03/22 00:23:18 [detection_layer] {"stage_name":"detection_layer","events_processed":753,"events_dropped":0,"avg_latency_ms":19.758131623931376,"throughput_eps":0,"last_update":"2026-03-22T00:23:13.967291474Z"} +2026/03/22 00:23:18 [log_collector] {"stage_name":"log_collector","events_processed":36026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7205.2,"last_update":"2026-03-22T00:23:18.86944463Z"} +2026/03/22 00:23:18 [metric_collector] {"stage_name":"metric_collector","events_processed":22644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4528.8,"last_update":"2026-03-22T00:23:13.870463749Z"} +2026/03/22 00:23:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:23:13.877055113Z"} +2026/03/22 00:23:18 ───────────────────────────────────────────────── +2026/03/22 00:23:23 ── Pipeline Health ────────────────────────────── +2026/03/22 00:23:23 [log_collector] {"stage_name":"log_collector","events_processed":36026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7205.2,"last_update":"2026-03-22T00:23:23.86976227Z"} +2026/03/22 00:23:23 [metric_collector] {"stage_name":"metric_collector","events_processed":22649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4529.8,"last_update":"2026-03-22T00:23:18.869860596Z"} +2026/03/22 00:23:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9062,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:23:18.876386023Z"} +2026/03/22 00:23:23 [transform_engine] {"stage_name":"transform_engine","events_processed":755,"events_dropped":0,"avg_latency_ms":522.3959582132647,"throughput_eps":0,"last_update":"2026-03-22T00:23:19.53856823Z"} +2026/03/22 00:23:23 [detection_layer] {"stage_name":"detection_layer","events_processed":753,"events_dropped":0,"avg_latency_ms":19.758131623931376,"throughput_eps":0,"last_update":"2026-03-22T00:23:18.965569478Z"} +2026/03/22 00:23:23 ───────────────────────────────────────────────── +2026/03/22 00:23:28 ── Pipeline Health ────────────────────────────── +2026/03/22 00:23:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:23:23.877220373Z"} +2026/03/22 00:23:28 [transform_engine] {"stage_name":"transform_engine","events_processed":755,"events_dropped":0,"avg_latency_ms":522.3959582132647,"throughput_eps":0,"last_update":"2026-03-22T00:23:23.965773512Z"} +2026/03/22 00:23:28 [detection_layer] {"stage_name":"detection_layer","events_processed":754,"events_dropped":0,"avg_latency_ms":18.5107480991451,"throughput_eps":0,"last_update":"2026-03-22T00:23:23.965369358Z"} +2026/03/22 00:23:28 [log_collector] {"stage_name":"log_collector","events_processed":36029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7205.8,"last_update":"2026-03-22T00:23:28.869974829Z"} +2026/03/22 00:23:28 [metric_collector] {"stage_name":"metric_collector","events_processed":22654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4530.8,"last_update":"2026-03-22T00:23:23.870036655Z"} +2026/03/22 00:23:28 ───────────────────────────────────────────────── +2026/03/22 00:23:33 ── Pipeline Health ────────────────────────────── +2026/03/22 00:23:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:23:28.878729214Z"} +2026/03/22 00:23:33 [transform_engine] {"stage_name":"transform_engine","events_processed":755,"events_dropped":0,"avg_latency_ms":522.3959582132647,"throughput_eps":0,"last_update":"2026-03-22T00:23:28.965936987Z"} +2026/03/22 00:23:33 [detection_layer] {"stage_name":"detection_layer","events_processed":754,"events_dropped":0,"avg_latency_ms":18.5107480991451,"throughput_eps":0,"last_update":"2026-03-22T00:23:28.965975761Z"} +2026/03/22 00:23:33 [log_collector] {"stage_name":"log_collector","events_processed":36029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7205.8,"last_update":"2026-03-22T00:23:28.869974829Z"} +2026/03/22 00:23:33 [metric_collector] {"stage_name":"metric_collector","events_processed":22659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4531.8,"last_update":"2026-03-22T00:23:28.870245478Z"} +2026/03/22 00:23:33 ───────────────────────────────────────────────── +2026/03/22 00:23:38 ── Pipeline Health ────────────────────────────── +2026/03/22 00:23:38 [log_collector] {"stage_name":"log_collector","events_processed":36037,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7207.4,"last_update":"2026-03-22T00:23:33.87005274Z"} +2026/03/22 00:23:38 [metric_collector] {"stage_name":"metric_collector","events_processed":22669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4533.8,"last_update":"2026-03-22T00:23:38.870462429Z"} +2026/03/22 00:23:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:23:33.879746505Z"} +2026/03/22 00:23:38 [transform_engine] {"stage_name":"transform_engine","events_processed":755,"events_dropped":0,"avg_latency_ms":522.3959582132647,"throughput_eps":0,"last_update":"2026-03-22T00:23:33.965938613Z"} +2026/03/22 00:23:38 [detection_layer] {"stage_name":"detection_layer","events_processed":754,"events_dropped":0,"avg_latency_ms":18.5107480991451,"throughput_eps":0,"last_update":"2026-03-22T00:23:33.96597936Z"} +2026/03/22 00:23:38 ───────────────────────────────────────────────── +2026/03/22 00:23:43 ── Pipeline Health ────────────────────────────── +2026/03/22 00:23:43 [log_collector] {"stage_name":"log_collector","events_processed":36239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7247.8,"last_update":"2026-03-22T00:23:43.870289812Z"} +2026/03/22 00:23:43 [metric_collector] {"stage_name":"metric_collector","events_processed":22669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4533.8,"last_update":"2026-03-22T00:23:38.870462429Z"} +2026/03/22 00:23:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:23:38.87765878Z"} +2026/03/22 00:23:43 [transform_engine] {"stage_name":"transform_engine","events_processed":755,"events_dropped":0,"avg_latency_ms":522.3959582132647,"throughput_eps":0,"last_update":"2026-03-22T00:23:38.965608374Z"} +2026/03/22 00:23:43 [detection_layer] {"stage_name":"detection_layer","events_processed":754,"events_dropped":0,"avg_latency_ms":18.5107480991451,"throughput_eps":0,"last_update":"2026-03-22T00:23:38.965660403Z"} +2026/03/22 00:23:43 ───────────────────────────────────────────────── +2026/03/22 00:23:48 ── Pipeline Health ────────────────────────────── +2026/03/22 00:23:48 [log_collector] {"stage_name":"log_collector","events_processed":36239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7247.8,"last_update":"2026-03-22T00:23:43.870289812Z"} +2026/03/22 00:23:48 [metric_collector] {"stage_name":"metric_collector","events_processed":22674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4534.8,"last_update":"2026-03-22T00:23:43.871194114Z"} +2026/03/22 00:23:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9072,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:23:43.883513286Z"} +2026/03/22 00:23:48 [transform_engine] {"stage_name":"transform_engine","events_processed":755,"events_dropped":0,"avg_latency_ms":522.3959582132647,"throughput_eps":0,"last_update":"2026-03-22T00:23:43.965137325Z"} +2026/03/22 00:23:48 [detection_layer] {"stage_name":"detection_layer","events_processed":754,"events_dropped":0,"avg_latency_ms":18.5107480991451,"throughput_eps":0,"last_update":"2026-03-22T00:23:43.966237051Z"} +2026/03/22 00:23:48 ───────────────────────────────────────────────── +2026/03/22 00:23:53 ── Pipeline Health ────────────────────────────── +2026/03/22 00:23:53 [log_collector] {"stage_name":"log_collector","events_processed":36392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7278.4,"last_update":"2026-03-22T00:23:48.86977555Z"} +2026/03/22 00:23:53 [metric_collector] {"stage_name":"metric_collector","events_processed":22679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4535.8,"last_update":"2026-03-22T00:23:48.87009913Z"} +2026/03/22 00:23:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:23:48.878492524Z"} +2026/03/22 00:23:53 [transform_engine] {"stage_name":"transform_engine","events_processed":756,"events_dropped":0,"avg_latency_ms":442.5678401706118,"throughput_eps":0,"last_update":"2026-03-22T00:23:49.089006282Z"} +2026/03/22 00:23:53 [detection_layer] {"stage_name":"detection_layer","events_processed":754,"events_dropped":0,"avg_latency_ms":18.5107480991451,"throughput_eps":0,"last_update":"2026-03-22T00:23:48.965724563Z"} +2026/03/22 00:23:53 ───────────────────────────────────────────────── +2026/03/22 00:23:58 ── Pipeline Health ────────────────────────────── +2026/03/22 00:23:58 [log_collector] {"stage_name":"log_collector","events_processed":36392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7278.4,"last_update":"2026-03-22T00:23:53.869887026Z"} +2026/03/22 00:23:58 [metric_collector] {"stage_name":"metric_collector","events_processed":22684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4536.8,"last_update":"2026-03-22T00:23:53.87029654Z"} +2026/03/22 00:23:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9076,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:23:53.880360224Z"} +2026/03/22 00:23:58 [transform_engine] {"stage_name":"transform_engine","events_processed":756,"events_dropped":0,"avg_latency_ms":442.5678401706118,"throughput_eps":0,"last_update":"2026-03-22T00:23:53.965620997Z"} +2026/03/22 00:23:58 [detection_layer] {"stage_name":"detection_layer","events_processed":755,"events_dropped":0,"avg_latency_ms":18.59848267931608,"throughput_eps":0,"last_update":"2026-03-22T00:23:53.965514854Z"} +2026/03/22 00:23:58 ───────────────────────────────────────────────── +2026/03/22 00:24:03 ── Pipeline Health ────────────────────────────── +2026/03/22 00:24:03 [metric_collector] {"stage_name":"metric_collector","events_processed":22689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4537.8,"last_update":"2026-03-22T00:23:58.870397637Z"} +2026/03/22 00:24:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:23:58.878618471Z"} +2026/03/22 00:24:03 [transform_engine] {"stage_name":"transform_engine","events_processed":756,"events_dropped":0,"avg_latency_ms":442.5678401706118,"throughput_eps":0,"last_update":"2026-03-22T00:23:58.966035295Z"} +2026/03/22 00:24:03 [detection_layer] {"stage_name":"detection_layer","events_processed":755,"events_dropped":0,"avg_latency_ms":18.59848267931608,"throughput_eps":0,"last_update":"2026-03-22T00:23:58.965981652Z"} +2026/03/22 00:24:03 [log_collector] {"stage_name":"log_collector","events_processed":36392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7278.4,"last_update":"2026-03-22T00:23:58.86996543Z"} +2026/03/22 00:24:03 ───────────────────────────────────────────────── +2026/03/22 00:24:08 ── Pipeline Health ────────────────────────────── +2026/03/22 00:24:08 [log_collector] {"stage_name":"log_collector","events_processed":36392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7278.4,"last_update":"2026-03-22T00:24:03.870422468Z"} +2026/03/22 00:24:08 [metric_collector] {"stage_name":"metric_collector","events_processed":22694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4538.8,"last_update":"2026-03-22T00:24:03.870635766Z"} +2026/03/22 00:24:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:24:03.878994284Z"} +2026/03/22 00:24:08 [transform_engine] {"stage_name":"transform_engine","events_processed":756,"events_dropped":0,"avg_latency_ms":442.5678401706118,"throughput_eps":0,"last_update":"2026-03-22T00:24:03.965227902Z"} +2026/03/22 00:24:08 [detection_layer] {"stage_name":"detection_layer","events_processed":755,"events_dropped":0,"avg_latency_ms":18.59848267931608,"throughput_eps":0,"last_update":"2026-03-22T00:24:03.965266857Z"} +2026/03/22 00:24:08 ───────────────────────────────────────────────── +2026/03/22 00:24:13 ── Pipeline Health ────────────────────────────── +2026/03/22 00:24:13 [log_collector] {"stage_name":"log_collector","events_processed":36392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7278.4,"last_update":"2026-03-22T00:24:08.870174015Z"} +2026/03/22 00:24:13 [metric_collector] {"stage_name":"metric_collector","events_processed":22698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4539.6,"last_update":"2026-03-22T00:24:08.870143707Z"} +2026/03/22 00:24:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9082,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:24:08.878201258Z"} +2026/03/22 00:24:13 [transform_engine] {"stage_name":"transform_engine","events_processed":756,"events_dropped":0,"avg_latency_ms":442.5678401706118,"throughput_eps":0,"last_update":"2026-03-22T00:24:08.965464859Z"} +2026/03/22 00:24:13 [detection_layer] {"stage_name":"detection_layer","events_processed":755,"events_dropped":0,"avg_latency_ms":18.59848267931608,"throughput_eps":0,"last_update":"2026-03-22T00:24:08.965379636Z"} +2026/03/22 00:24:13 ───────────────────────────────────────────────── +2026/03/22 00:24:18 ── Pipeline Health ────────────────────────────── +2026/03/22 00:24:18 [metric_collector] {"stage_name":"metric_collector","events_processed":22704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4540.8,"last_update":"2026-03-22T00:24:13.870261384Z"} +2026/03/22 00:24:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:24:13.876417994Z"} +2026/03/22 00:24:18 [transform_engine] {"stage_name":"transform_engine","events_processed":756,"events_dropped":0,"avg_latency_ms":442.5678401706118,"throughput_eps":0,"last_update":"2026-03-22T00:24:13.965748624Z"} +2026/03/22 00:24:18 [detection_layer] {"stage_name":"detection_layer","events_processed":755,"events_dropped":0,"avg_latency_ms":18.59848267931608,"throughput_eps":0,"last_update":"2026-03-22T00:24:13.965887109Z"} +2026/03/22 00:24:18 [log_collector] {"stage_name":"log_collector","events_processed":36392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7278.4,"last_update":"2026-03-22T00:24:18.869949069Z"} +2026/03/22 00:24:18 ───────────────────────────────────────────────── +2026/03/22 00:24:23 ── Pipeline Health ────────────────────────────── +2026/03/22 00:24:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:24:18.879236586Z"} +2026/03/22 00:24:23 [transform_engine] {"stage_name":"transform_engine","events_processed":757,"events_dropped":0,"avg_latency_ms":369.19207493648946,"throughput_eps":0,"last_update":"2026-03-22T00:24:19.041256725Z"} +2026/03/22 00:24:23 [detection_layer] {"stage_name":"detection_layer","events_processed":755,"events_dropped":0,"avg_latency_ms":18.59848267931608,"throughput_eps":0,"last_update":"2026-03-22T00:24:18.965670678Z"} +2026/03/22 00:24:23 [log_collector] {"stage_name":"log_collector","events_processed":36392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7278.4,"last_update":"2026-03-22T00:24:23.870046977Z"} +2026/03/22 00:24:23 [metric_collector] {"stage_name":"metric_collector","events_processed":22709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4541.8,"last_update":"2026-03-22T00:24:18.870295362Z"} +2026/03/22 00:24:23 ───────────────────────────────────────────────── +2026/03/22 00:24:28 ── Pipeline Health ────────────────────────────── +2026/03/22 00:24:28 [detection_layer] {"stage_name":"detection_layer","events_processed":756,"events_dropped":0,"avg_latency_ms":19.185748543452867,"throughput_eps":0,"last_update":"2026-03-22T00:24:23.965912973Z"} +2026/03/22 00:24:28 [log_collector] {"stage_name":"log_collector","events_processed":36392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7278.4,"last_update":"2026-03-22T00:24:23.870046977Z"} +2026/03/22 00:24:28 [metric_collector] {"stage_name":"metric_collector","events_processed":22714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4542.8,"last_update":"2026-03-22T00:24:23.870666434Z"} +2026/03/22 00:24:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:24:23.879761913Z"} +2026/03/22 00:24:28 [transform_engine] {"stage_name":"transform_engine","events_processed":757,"events_dropped":0,"avg_latency_ms":369.19207493648946,"throughput_eps":0,"last_update":"2026-03-22T00:24:23.966018135Z"} +2026/03/22 00:24:28 ───────────────────────────────────────────────── +2026/03/22 00:24:33 ── Pipeline Health ────────────────────────────── +2026/03/22 00:24:33 [log_collector] {"stage_name":"log_collector","events_processed":36392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7278.4,"last_update":"2026-03-22T00:24:28.869435698Z"} +2026/03/22 00:24:33 [metric_collector] {"stage_name":"metric_collector","events_processed":22719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4543.8,"last_update":"2026-03-22T00:24:28.869878065Z"} +2026/03/22 00:24:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:24:28.878916324Z"} +2026/03/22 00:24:33 [transform_engine] {"stage_name":"transform_engine","events_processed":757,"events_dropped":0,"avg_latency_ms":369.19207493648946,"throughput_eps":0,"last_update":"2026-03-22T00:24:28.965116018Z"} +2026/03/22 00:24:33 [detection_layer] {"stage_name":"detection_layer","events_processed":756,"events_dropped":0,"avg_latency_ms":19.185748543452867,"throughput_eps":0,"last_update":"2026-03-22T00:24:28.965343674Z"} +2026/03/22 00:24:33 ───────────────────────────────────────────────── +2026/03/22 00:24:38 ── Pipeline Health ────────────────────────────── +2026/03/22 00:24:38 [log_collector] {"stage_name":"log_collector","events_processed":36392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7278.4,"last_update":"2026-03-22T00:24:38.869566816Z"} +2026/03/22 00:24:38 [metric_collector] {"stage_name":"metric_collector","events_processed":22724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4544.8,"last_update":"2026-03-22T00:24:33.870035054Z"} +2026/03/22 00:24:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:24:33.878703355Z"} +2026/03/22 00:24:38 [transform_engine] {"stage_name":"transform_engine","events_processed":757,"events_dropped":0,"avg_latency_ms":369.19207493648946,"throughput_eps":0,"last_update":"2026-03-22T00:24:33.966038204Z"} +2026/03/22 00:24:38 [detection_layer] {"stage_name":"detection_layer","events_processed":756,"events_dropped":0,"avg_latency_ms":19.185748543452867,"throughput_eps":0,"last_update":"2026-03-22T00:24:33.966087097Z"} +2026/03/22 00:24:38 ───────────────────────────────────────────────── +2026/03/22 00:24:43 ── Pipeline Health ────────────────────────────── +2026/03/22 00:24:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:24:38.878571281Z"} +2026/03/22 00:24:43 [transform_engine] {"stage_name":"transform_engine","events_processed":757,"events_dropped":0,"avg_latency_ms":369.19207493648946,"throughput_eps":0,"last_update":"2026-03-22T00:24:38.965775699Z"} +2026/03/22 00:24:43 [detection_layer] {"stage_name":"detection_layer","events_processed":756,"events_dropped":0,"avg_latency_ms":19.185748543452867,"throughput_eps":0,"last_update":"2026-03-22T00:24:38.965752054Z"} +2026/03/22 00:24:43 [log_collector] {"stage_name":"log_collector","events_processed":36392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7278.4,"last_update":"2026-03-22T00:24:38.869566816Z"} +2026/03/22 00:24:43 [metric_collector] {"stage_name":"metric_collector","events_processed":22729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4545.8,"last_update":"2026-03-22T00:24:38.870070039Z"} +2026/03/22 00:24:43 ───────────────────────────────────────────────── +2026/03/22 00:24:48 ── Pipeline Health ────────────────────────────── +2026/03/22 00:24:48 [log_collector] {"stage_name":"log_collector","events_processed":36392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7278.4,"last_update":"2026-03-22T00:24:43.869446694Z"} +2026/03/22 00:24:48 [metric_collector] {"stage_name":"metric_collector","events_processed":22734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4546.8,"last_update":"2026-03-22T00:24:43.86994078Z"} +2026/03/22 00:24:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:24:43.878434146Z"} +2026/03/22 00:24:48 [transform_engine] {"stage_name":"transform_engine","events_processed":757,"events_dropped":0,"avg_latency_ms":369.19207493648946,"throughput_eps":0,"last_update":"2026-03-22T00:24:43.965734228Z"} +2026/03/22 00:24:48 [detection_layer] {"stage_name":"detection_layer","events_processed":756,"events_dropped":0,"avg_latency_ms":19.185748543452867,"throughput_eps":0,"last_update":"2026-03-22T00:24:43.965704361Z"} +2026/03/22 00:24:48 ───────────────────────────────────────────────── +2026/03/22 00:24:53 ── Pipeline Health ────────────────────────────── +2026/03/22 00:24:53 [detection_layer] {"stage_name":"detection_layer","events_processed":756,"events_dropped":0,"avg_latency_ms":19.185748543452867,"throughput_eps":0,"last_update":"2026-03-22T00:24:48.966068675Z"} +2026/03/22 00:24:53 [log_collector] {"stage_name":"log_collector","events_processed":36392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7278.4,"last_update":"2026-03-22T00:24:48.869494744Z"} +2026/03/22 00:24:53 [metric_collector] {"stage_name":"metric_collector","events_processed":22739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4547.8,"last_update":"2026-03-22T00:24:48.869855525Z"} +2026/03/22 00:24:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:24:48.878693451Z"} +2026/03/22 00:24:53 [transform_engine] {"stage_name":"transform_engine","events_processed":758,"events_dropped":0,"avg_latency_ms":310.62560374919155,"throughput_eps":0,"last_update":"2026-03-22T00:24:49.042444617Z"} +2026/03/22 00:24:53 ───────────────────────────────────────────────── +2026/03/22 00:24:58 ── Pipeline Health ────────────────────────────── +2026/03/22 00:24:58 [log_collector] {"stage_name":"log_collector","events_processed":36392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7278.4,"last_update":"2026-03-22T00:24:53.869768653Z"} +2026/03/22 00:24:58 [metric_collector] {"stage_name":"metric_collector","events_processed":22744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4548.8,"last_update":"2026-03-22T00:24:53.870211331Z"} +2026/03/22 00:24:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:24:53.879061139Z"} +2026/03/22 00:24:58 [transform_engine] {"stage_name":"transform_engine","events_processed":758,"events_dropped":0,"avg_latency_ms":310.62560374919155,"throughput_eps":0,"last_update":"2026-03-22T00:24:53.965184808Z"} +2026/03/22 00:24:58 [detection_layer] {"stage_name":"detection_layer","events_processed":757,"events_dropped":0,"avg_latency_ms":19.679867634762296,"throughput_eps":0,"last_update":"2026-03-22T00:24:53.96632428Z"} +2026/03/22 00:24:58 ───────────────────────────────────────────────── +2026/03/22 00:25:03 ── Pipeline Health ────────────────────────────── +2026/03/22 00:25:03 [log_collector] {"stage_name":"log_collector","events_processed":36392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7278.4,"last_update":"2026-03-22T00:24:58.869951087Z"} +2026/03/22 00:25:03 [metric_collector] {"stage_name":"metric_collector","events_processed":22749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4549.8,"last_update":"2026-03-22T00:24:58.870194483Z"} +2026/03/22 00:25:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:24:58.880491824Z"} +2026/03/22 00:25:03 [transform_engine] {"stage_name":"transform_engine","events_processed":758,"events_dropped":0,"avg_latency_ms":310.62560374919155,"throughput_eps":0,"last_update":"2026-03-22T00:24:58.965718736Z"} +2026/03/22 00:25:03 [detection_layer] {"stage_name":"detection_layer","events_processed":757,"events_dropped":0,"avg_latency_ms":19.679867634762296,"throughput_eps":0,"last_update":"2026-03-22T00:24:58.965701172Z"} +2026/03/22 00:25:03 ───────────────────────────────────────────────── +2026/03/22 00:25:08 ── Pipeline Health ────────────────────────────── +2026/03/22 00:25:08 [log_collector] {"stage_name":"log_collector","events_processed":36392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7278.4,"last_update":"2026-03-22T00:25:03.869739695Z"} +2026/03/22 00:25:08 [metric_collector] {"stage_name":"metric_collector","events_processed":22754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4550.8,"last_update":"2026-03-22T00:25:03.869937694Z"} +2026/03/22 00:25:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:25:03.877850969Z"} +2026/03/22 00:25:08 [transform_engine] {"stage_name":"transform_engine","events_processed":758,"events_dropped":0,"avg_latency_ms":310.62560374919155,"throughput_eps":0,"last_update":"2026-03-22T00:25:03.966049111Z"} +2026/03/22 00:25:08 [detection_layer] {"stage_name":"detection_layer","events_processed":757,"events_dropped":0,"avg_latency_ms":19.679867634762296,"throughput_eps":0,"last_update":"2026-03-22T00:25:03.966040144Z"} +2026/03/22 00:25:08 ───────────────────────────────────────────────── +2026/03/22 00:25:13 ── Pipeline Health ────────────────────────────── +2026/03/22 00:25:13 [log_collector] {"stage_name":"log_collector","events_processed":36392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7278.4,"last_update":"2026-03-22T00:25:08.869794891Z"} +2026/03/22 00:25:13 [metric_collector] {"stage_name":"metric_collector","events_processed":22759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4551.8,"last_update":"2026-03-22T00:25:08.869784892Z"} +2026/03/22 00:25:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:25:08.878390322Z"} +2026/03/22 00:25:13 [transform_engine] {"stage_name":"transform_engine","events_processed":758,"events_dropped":0,"avg_latency_ms":310.62560374919155,"throughput_eps":0,"last_update":"2026-03-22T00:25:08.96577695Z"} +2026/03/22 00:25:13 [detection_layer] {"stage_name":"detection_layer","events_processed":757,"events_dropped":0,"avg_latency_ms":19.679867634762296,"throughput_eps":0,"last_update":"2026-03-22T00:25:08.965763445Z"} +2026/03/22 00:25:13 ───────────────────────────────────────────────── +2026/03/22 00:25:18 ── Pipeline Health ────────────────────────────── +2026/03/22 00:25:18 [detection_layer] {"stage_name":"detection_layer","events_processed":757,"events_dropped":0,"avg_latency_ms":19.679867634762296,"throughput_eps":0,"last_update":"2026-03-22T00:25:13.966099778Z"} +2026/03/22 00:25:18 [log_collector] {"stage_name":"log_collector","events_processed":36392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7278.4,"last_update":"2026-03-22T00:25:13.870132446Z"} +2026/03/22 00:25:18 [metric_collector] {"stage_name":"metric_collector","events_processed":22764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4552.8,"last_update":"2026-03-22T00:25:13.870293946Z"} +2026/03/22 00:25:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:25:13.875894812Z"} +2026/03/22 00:25:18 [transform_engine] {"stage_name":"transform_engine","events_processed":758,"events_dropped":0,"avg_latency_ms":310.62560374919155,"throughput_eps":0,"last_update":"2026-03-22T00:25:13.966110749Z"} +2026/03/22 00:25:18 ───────────────────────────────────────────────── +Saved state: 29 clusters, 36393 messages, reason: none +2026/03/22 00:25:23 ── Pipeline Health ────────────────────────────── +2026/03/22 00:25:23 [detection_layer] {"stage_name":"detection_layer","events_processed":757,"events_dropped":0,"avg_latency_ms":19.679867634762296,"throughput_eps":0,"last_update":"2026-03-22T00:25:18.965676658Z"} +2026/03/22 00:25:23 [log_collector] {"stage_name":"log_collector","events_processed":36392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7278.4,"last_update":"2026-03-22T00:25:18.869567715Z"} +2026/03/22 00:25:23 [metric_collector] {"stage_name":"metric_collector","events_processed":22769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4553.8,"last_update":"2026-03-22T00:25:18.869780211Z"} +2026/03/22 00:25:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:25:18.878455966Z"} +2026/03/22 00:25:23 [transform_engine] {"stage_name":"transform_engine","events_processed":759,"events_dropped":0,"avg_latency_ms":263.9763735993533,"throughput_eps":0,"last_update":"2026-03-22T00:25:19.043069205Z"} +2026/03/22 00:25:23 ───────────────────────────────────────────────── +2026/03/22 00:25:28 ── Pipeline Health ────────────────────────────── +2026/03/22 00:25:28 [log_collector] {"stage_name":"log_collector","events_processed":36395,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7279,"last_update":"2026-03-22T00:25:23.869736724Z"} +2026/03/22 00:25:28 [metric_collector] {"stage_name":"metric_collector","events_processed":22774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4554.8,"last_update":"2026-03-22T00:25:23.870054392Z"} +2026/03/22 00:25:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:25:23.87646484Z"} +2026/03/22 00:25:28 [transform_engine] {"stage_name":"transform_engine","events_processed":759,"events_dropped":0,"avg_latency_ms":263.9763735993533,"throughput_eps":0,"last_update":"2026-03-22T00:25:23.965764952Z"} +2026/03/22 00:25:28 [detection_layer] {"stage_name":"detection_layer","events_processed":758,"events_dropped":0,"avg_latency_ms":20.238974707809838,"throughput_eps":0,"last_update":"2026-03-22T00:25:23.965751777Z"} +2026/03/22 00:25:28 ───────────────────────────────────────────────── +2026/03/22 00:25:33 ── Pipeline Health ────────────────────────────── +2026/03/22 00:25:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:25:28.881487776Z"} +2026/03/22 00:25:33 [transform_engine] {"stage_name":"transform_engine","events_processed":759,"events_dropped":0,"avg_latency_ms":263.9763735993533,"throughput_eps":0,"last_update":"2026-03-22T00:25:28.966394044Z"} +2026/03/22 00:25:33 [detection_layer] {"stage_name":"detection_layer","events_processed":758,"events_dropped":0,"avg_latency_ms":20.238974707809838,"throughput_eps":0,"last_update":"2026-03-22T00:25:28.96638146Z"} +2026/03/22 00:25:33 [log_collector] {"stage_name":"log_collector","events_processed":36405,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7281,"last_update":"2026-03-22T00:25:33.870015359Z"} +2026/03/22 00:25:33 [metric_collector] {"stage_name":"metric_collector","events_processed":22779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4555.8,"last_update":"2026-03-22T00:25:28.869980388Z"} +2026/03/22 00:25:33 ───────────────────────────────────────────────── +2026/03/22 00:25:38 ── Pipeline Health ────────────────────────────── +2026/03/22 00:25:38 [transform_engine] {"stage_name":"transform_engine","events_processed":759,"events_dropped":0,"avg_latency_ms":263.9763735993533,"throughput_eps":0,"last_update":"2026-03-22T00:25:33.965836331Z"} +2026/03/22 00:25:38 [detection_layer] {"stage_name":"detection_layer","events_processed":758,"events_dropped":0,"avg_latency_ms":20.238974707809838,"throughput_eps":0,"last_update":"2026-03-22T00:25:33.965828656Z"} +2026/03/22 00:25:38 [log_collector] {"stage_name":"log_collector","events_processed":36405,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7281,"last_update":"2026-03-22T00:25:33.870015359Z"} +2026/03/22 00:25:38 [metric_collector] {"stage_name":"metric_collector","events_processed":22784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4556.8,"last_update":"2026-03-22T00:25:33.870492162Z"} +2026/03/22 00:25:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:25:33.879510944Z"} +2026/03/22 00:25:38 ───────────────────────────────────────────────── +2026/03/22 00:25:43 ── Pipeline Health ────────────────────────────── +2026/03/22 00:25:43 [log_collector] {"stage_name":"log_collector","events_processed":36422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7284.4,"last_update":"2026-03-22T00:25:38.869964032Z"} +2026/03/22 00:25:43 [metric_collector] {"stage_name":"metric_collector","events_processed":22789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4557.8,"last_update":"2026-03-22T00:25:38.870207699Z"} +2026/03/22 00:25:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:25:38.87602529Z"} +2026/03/22 00:25:43 [transform_engine] {"stage_name":"transform_engine","events_processed":759,"events_dropped":0,"avg_latency_ms":263.9763735993533,"throughput_eps":0,"last_update":"2026-03-22T00:25:38.965222226Z"} +2026/03/22 00:25:43 [detection_layer] {"stage_name":"detection_layer","events_processed":758,"events_dropped":0,"avg_latency_ms":20.238974707809838,"throughput_eps":0,"last_update":"2026-03-22T00:25:38.965337317Z"} +2026/03/22 00:25:43 ───────────────────────────────────────────────── +2026/03/22 00:25:48 ── Pipeline Health ────────────────────────────── +2026/03/22 00:25:48 [log_collector] {"stage_name":"log_collector","events_processed":36425,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7285,"last_update":"2026-03-22T00:25:43.869739172Z"} +2026/03/22 00:25:48 [metric_collector] {"stage_name":"metric_collector","events_processed":22793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4558.6,"last_update":"2026-03-22T00:25:43.869638379Z"} +2026/03/22 00:25:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:25:43.875560841Z"} +2026/03/22 00:25:48 [transform_engine] {"stage_name":"transform_engine","events_processed":759,"events_dropped":0,"avg_latency_ms":263.9763735993533,"throughput_eps":0,"last_update":"2026-03-22T00:25:43.966005737Z"} +2026/03/22 00:25:48 [detection_layer] {"stage_name":"detection_layer","events_processed":758,"events_dropped":0,"avg_latency_ms":20.238974707809838,"throughput_eps":0,"last_update":"2026-03-22T00:25:43.965995447Z"} +2026/03/22 00:25:48 ───────────────────────────────────────────────── +2026/03/22 00:25:53 ── Pipeline Health ────────────────────────────── +2026/03/22 00:25:53 [detection_layer] {"stage_name":"detection_layer","events_processed":758,"events_dropped":0,"avg_latency_ms":20.238974707809838,"throughput_eps":0,"last_update":"2026-03-22T00:25:48.965437085Z"} +2026/03/22 00:25:53 [log_collector] {"stage_name":"log_collector","events_processed":36436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7287.2,"last_update":"2026-03-22T00:25:48.870027011Z"} +2026/03/22 00:25:53 [metric_collector] {"stage_name":"metric_collector","events_processed":22799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4559.8,"last_update":"2026-03-22T00:25:48.870586482Z"} +2026/03/22 00:25:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9122,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:25:48.879236018Z"} +2026/03/22 00:25:53 [transform_engine] {"stage_name":"transform_engine","events_processed":760,"events_dropped":0,"avg_latency_ms":235.00888487948265,"throughput_eps":0,"last_update":"2026-03-22T00:25:49.084587648Z"} +2026/03/22 00:25:53 ───────────────────────────────────────────────── +2026/03/22 00:25:58 ── Pipeline Health ────────────────────────────── +2026/03/22 00:25:58 [transform_engine] {"stage_name":"transform_engine","events_processed":760,"events_dropped":0,"avg_latency_ms":235.00888487948265,"throughput_eps":0,"last_update":"2026-03-22T00:25:53.966095644Z"} +2026/03/22 00:25:58 [detection_layer] {"stage_name":"detection_layer","events_processed":759,"events_dropped":0,"avg_latency_ms":20.302389366247873,"throughput_eps":0,"last_update":"2026-03-22T00:25:53.966085243Z"} +2026/03/22 00:25:58 [log_collector] {"stage_name":"log_collector","events_processed":36436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7287.2,"last_update":"2026-03-22T00:25:53.869803851Z"} +2026/03/22 00:25:58 [metric_collector] {"stage_name":"metric_collector","events_processed":22804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4560.8,"last_update":"2026-03-22T00:25:53.870270033Z"} +2026/03/22 00:25:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:25:53.878903928Z"} +2026/03/22 00:25:58 ───────────────────────────────────────────────── +2026/03/22 00:26:03 ── Pipeline Health ────────────────────────────── +2026/03/22 00:26:03 [metric_collector] {"stage_name":"metric_collector","events_processed":22809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4561.8,"last_update":"2026-03-22T00:25:58.870056336Z"} +2026/03/22 00:26:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9126,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:25:58.879517145Z"} +2026/03/22 00:26:03 [transform_engine] {"stage_name":"transform_engine","events_processed":760,"events_dropped":0,"avg_latency_ms":235.00888487948265,"throughput_eps":0,"last_update":"2026-03-22T00:25:58.965885855Z"} +2026/03/22 00:26:03 [detection_layer] {"stage_name":"detection_layer","events_processed":759,"events_dropped":0,"avg_latency_ms":20.302389366247873,"throughput_eps":0,"last_update":"2026-03-22T00:25:58.965869263Z"} +2026/03/22 00:26:03 [log_collector] {"stage_name":"log_collector","events_processed":36436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7287.2,"last_update":"2026-03-22T00:25:58.869716526Z"} +2026/03/22 00:26:03 ───────────────────────────────────────────────── +2026/03/22 00:26:08 ── Pipeline Health ────────────────────────────── +2026/03/22 00:26:08 [log_collector] {"stage_name":"log_collector","events_processed":36436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7287.2,"last_update":"2026-03-22T00:26:03.869997004Z"} +2026/03/22 00:26:08 [metric_collector] {"stage_name":"metric_collector","events_processed":22814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4562.8,"last_update":"2026-03-22T00:26:03.870551706Z"} +2026/03/22 00:26:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9128,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:26:03.879061444Z"} +2026/03/22 00:26:08 [transform_engine] {"stage_name":"transform_engine","events_processed":760,"events_dropped":0,"avg_latency_ms":235.00888487948265,"throughput_eps":0,"last_update":"2026-03-22T00:26:03.965319011Z"} +2026/03/22 00:26:08 [detection_layer] {"stage_name":"detection_layer","events_processed":759,"events_dropped":0,"avg_latency_ms":20.302389366247873,"throughput_eps":0,"last_update":"2026-03-22T00:26:03.965301778Z"} +2026/03/22 00:26:08 ───────────────────────────────────────────────── +2026/03/22 00:26:13 ── Pipeline Health ────────────────────────────── +2026/03/22 00:26:13 [metric_collector] {"stage_name":"metric_collector","events_processed":22819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4563.8,"last_update":"2026-03-22T00:26:08.87013113Z"} +2026/03/22 00:26:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9130,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:26:08.878649824Z"} +2026/03/22 00:26:13 [transform_engine] {"stage_name":"transform_engine","events_processed":760,"events_dropped":0,"avg_latency_ms":235.00888487948265,"throughput_eps":0,"last_update":"2026-03-22T00:26:08.965988131Z"} +2026/03/22 00:26:13 [detection_layer] {"stage_name":"detection_layer","events_processed":759,"events_dropped":0,"avg_latency_ms":20.302389366247873,"throughput_eps":0,"last_update":"2026-03-22T00:26:08.965976089Z"} +2026/03/22 00:26:13 [log_collector] {"stage_name":"log_collector","events_processed":36436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7287.2,"last_update":"2026-03-22T00:26:08.869723459Z"} +2026/03/22 00:26:13 ───────────────────────────────────────────────── +2026/03/22 00:26:18 ── Pipeline Health ────────────────────────────── +2026/03/22 00:26:18 [log_collector] {"stage_name":"log_collector","events_processed":36436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7287.2,"last_update":"2026-03-22T00:26:13.870390172Z"} +2026/03/22 00:26:18 [metric_collector] {"stage_name":"metric_collector","events_processed":22824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4564.8,"last_update":"2026-03-22T00:26:13.871171629Z"} +2026/03/22 00:26:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:26:13.877085395Z"} +2026/03/22 00:26:18 [transform_engine] {"stage_name":"transform_engine","events_processed":760,"events_dropped":0,"avg_latency_ms":235.00888487948265,"throughput_eps":0,"last_update":"2026-03-22T00:26:13.965337293Z"} +2026/03/22 00:26:18 [detection_layer] {"stage_name":"detection_layer","events_processed":759,"events_dropped":0,"avg_latency_ms":20.302389366247873,"throughput_eps":0,"last_update":"2026-03-22T00:26:13.965321161Z"} +2026/03/22 00:26:18 ───────────────────────────────────────────────── +2026/03/22 00:26:23 ── Pipeline Health ────────────────────────────── +2026/03/22 00:26:23 [log_collector] {"stage_name":"log_collector","events_processed":36436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7287.2,"last_update":"2026-03-22T00:26:18.869401342Z"} +2026/03/22 00:26:23 [metric_collector] {"stage_name":"metric_collector","events_processed":22829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4565.8,"last_update":"2026-03-22T00:26:18.869914454Z"} +2026/03/22 00:26:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:26:18.87833981Z"} +2026/03/22 00:26:23 [transform_engine] {"stage_name":"transform_engine","events_processed":761,"events_dropped":0,"avg_latency_ms":204.81323250358614,"throughput_eps":0,"last_update":"2026-03-22T00:26:19.049766872Z"} +2026/03/22 00:26:23 [detection_layer] {"stage_name":"detection_layer","events_processed":759,"events_dropped":0,"avg_latency_ms":20.302389366247873,"throughput_eps":0,"last_update":"2026-03-22T00:26:18.965719117Z"} +2026/03/22 00:26:23 ───────────────────────────────────────────────── +2026/03/22 00:26:28 ── Pipeline Health ────────────────────────────── +2026/03/22 00:26:28 [log_collector] {"stage_name":"log_collector","events_processed":36436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7287.2,"last_update":"2026-03-22T00:26:23.86941593Z"} +2026/03/22 00:26:28 [metric_collector] {"stage_name":"metric_collector","events_processed":22834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4566.8,"last_update":"2026-03-22T00:26:23.8699486Z"} +2026/03/22 00:26:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:26:23.877941539Z"} +2026/03/22 00:26:28 [transform_engine] {"stage_name":"transform_engine","events_processed":761,"events_dropped":0,"avg_latency_ms":204.81323250358614,"throughput_eps":0,"last_update":"2026-03-22T00:26:23.965138675Z"} +2026/03/22 00:26:28 [detection_layer] {"stage_name":"detection_layer","events_processed":760,"events_dropped":0,"avg_latency_ms":20.3742756929983,"throughput_eps":0,"last_update":"2026-03-22T00:26:23.96531349Z"} +2026/03/22 00:26:28 ───────────────────────────────────────────────── +2026/03/22 00:26:33 ── Pipeline Health ────────────────────────────── +2026/03/22 00:26:33 [log_collector] {"stage_name":"log_collector","events_processed":36436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7287.2,"last_update":"2026-03-22T00:26:28.870257259Z"} +2026/03/22 00:26:33 [metric_collector] {"stage_name":"metric_collector","events_processed":22839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4567.8,"last_update":"2026-03-22T00:26:28.870636055Z"} +2026/03/22 00:26:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:26:28.878834096Z"} +2026/03/22 00:26:33 [transform_engine] {"stage_name":"transform_engine","events_processed":761,"events_dropped":0,"avg_latency_ms":204.81323250358614,"throughput_eps":0,"last_update":"2026-03-22T00:26:28.966270301Z"} +2026/03/22 00:26:33 [detection_layer] {"stage_name":"detection_layer","events_processed":760,"events_dropped":0,"avg_latency_ms":20.3742756929983,"throughput_eps":0,"last_update":"2026-03-22T00:26:28.966246675Z"} +2026/03/22 00:26:33 ───────────────────────────────────────────────── +2026/03/22 00:26:38 ── Pipeline Health ────────────────────────────── +2026/03/22 00:26:38 [log_collector] {"stage_name":"log_collector","events_processed":36436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7287.2,"last_update":"2026-03-22T00:26:33.869645593Z"} +2026/03/22 00:26:38 [metric_collector] {"stage_name":"metric_collector","events_processed":22844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4568.8,"last_update":"2026-03-22T00:26:33.869834695Z"} +2026/03/22 00:26:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:26:33.878063374Z"} +2026/03/22 00:26:38 [transform_engine] {"stage_name":"transform_engine","events_processed":761,"events_dropped":0,"avg_latency_ms":204.81323250358614,"throughput_eps":0,"last_update":"2026-03-22T00:26:33.965325066Z"} +2026/03/22 00:26:38 [detection_layer] {"stage_name":"detection_layer","events_processed":760,"events_dropped":0,"avg_latency_ms":20.3742756929983,"throughput_eps":0,"last_update":"2026-03-22T00:26:33.965346156Z"} +2026/03/22 00:26:38 ───────────────────────────────────────────────── +2026/03/22 00:26:43 ── Pipeline Health ────────────────────────────── +2026/03/22 00:26:43 [log_collector] {"stage_name":"log_collector","events_processed":36436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7287.2,"last_update":"2026-03-22T00:26:38.869409054Z"} +2026/03/22 00:26:43 [metric_collector] {"stage_name":"metric_collector","events_processed":22849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4569.8,"last_update":"2026-03-22T00:26:38.870163809Z"} +2026/03/22 00:26:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:26:38.878688616Z"} +2026/03/22 00:26:43 [transform_engine] {"stage_name":"transform_engine","events_processed":761,"events_dropped":0,"avg_latency_ms":204.81323250358614,"throughput_eps":0,"last_update":"2026-03-22T00:26:38.966021934Z"} +2026/03/22 00:26:43 [detection_layer] {"stage_name":"detection_layer","events_processed":760,"events_dropped":0,"avg_latency_ms":20.3742756929983,"throughput_eps":0,"last_update":"2026-03-22T00:26:38.96613475Z"} +2026/03/22 00:26:43 ───────────────────────────────────────────────── +Saved state: 29 clusters, 36437 messages, reason: none +2026/03/22 00:26:48 ── Pipeline Health ────────────────────────────── +2026/03/22 00:26:48 [log_collector] {"stage_name":"log_collector","events_processed":36436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7287.2,"last_update":"2026-03-22T00:26:43.869516709Z"} +2026/03/22 00:26:48 [metric_collector] {"stage_name":"metric_collector","events_processed":22854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4570.8,"last_update":"2026-03-22T00:26:43.8700023Z"} +2026/03/22 00:26:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:26:43.878717862Z"} +2026/03/22 00:26:48 [transform_engine] {"stage_name":"transform_engine","events_processed":761,"events_dropped":0,"avg_latency_ms":204.81323250358614,"throughput_eps":0,"last_update":"2026-03-22T00:26:43.966036031Z"} +2026/03/22 00:26:48 [detection_layer] {"stage_name":"detection_layer","events_processed":760,"events_dropped":0,"avg_latency_ms":20.3742756929983,"throughput_eps":0,"last_update":"2026-03-22T00:26:43.96606671Z"} +2026/03/22 00:26:48 ───────────────────────────────────────────────── +2026/03/22 00:26:53 ── Pipeline Health ────────────────────────────── +2026/03/22 00:26:53 [detection_layer] {"stage_name":"detection_layer","events_processed":760,"events_dropped":0,"avg_latency_ms":20.3742756929983,"throughput_eps":0,"last_update":"2026-03-22T00:26:48.965793815Z"} +2026/03/22 00:26:53 [log_collector] {"stage_name":"log_collector","events_processed":36441,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7288.2,"last_update":"2026-03-22T00:26:53.87007045Z"} +2026/03/22 00:26:53 [metric_collector] {"stage_name":"metric_collector","events_processed":22859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4571.8,"last_update":"2026-03-22T00:26:48.871015427Z"} +2026/03/22 00:26:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:26:48.876534316Z"} +2026/03/22 00:26:53 [transform_engine] {"stage_name":"transform_engine","events_processed":762,"events_dropped":0,"avg_latency_ms":186.3373984028689,"throughput_eps":0,"last_update":"2026-03-22T00:26:49.078272091Z"} +2026/03/22 00:26:53 ───────────────────────────────────────────────── +2026/03/22 00:26:58 ── Pipeline Health ────────────────────────────── +2026/03/22 00:26:58 [detection_layer] {"stage_name":"detection_layer","events_processed":761,"events_dropped":0,"avg_latency_ms":19.03219835439864,"throughput_eps":0,"last_update":"2026-03-22T00:26:53.965341782Z"} +2026/03/22 00:26:58 [log_collector] {"stage_name":"log_collector","events_processed":36441,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7288.2,"last_update":"2026-03-22T00:26:53.87007045Z"} +2026/03/22 00:26:58 [metric_collector] {"stage_name":"metric_collector","events_processed":22864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4572.8,"last_update":"2026-03-22T00:26:53.870329146Z"} +2026/03/22 00:26:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:26:53.876117862Z"} +2026/03/22 00:26:58 [transform_engine] {"stage_name":"transform_engine","events_processed":762,"events_dropped":0,"avg_latency_ms":186.3373984028689,"throughput_eps":0,"last_update":"2026-03-22T00:26:53.965367972Z"} +2026/03/22 00:26:58 ───────────────────────────────────────────────── +2026/03/22 00:27:03 ── Pipeline Health ────────────────────────────── +2026/03/22 00:27:03 [log_collector] {"stage_name":"log_collector","events_processed":36441,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7288.2,"last_update":"2026-03-22T00:26:58.869521359Z"} +2026/03/22 00:27:03 [metric_collector] {"stage_name":"metric_collector","events_processed":22869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4573.8,"last_update":"2026-03-22T00:26:58.869874365Z"} +2026/03/22 00:27:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:26:58.87647702Z"} +2026/03/22 00:27:03 [transform_engine] {"stage_name":"transform_engine","events_processed":762,"events_dropped":0,"avg_latency_ms":186.3373984028689,"throughput_eps":0,"last_update":"2026-03-22T00:26:58.965681022Z"} +2026/03/22 00:27:03 [detection_layer] {"stage_name":"detection_layer","events_processed":761,"events_dropped":0,"avg_latency_ms":19.03219835439864,"throughput_eps":0,"last_update":"2026-03-22T00:26:58.965667326Z"} +2026/03/22 00:27:03 ───────────────────────────────────────────────── +2026/03/22 00:27:08 ── Pipeline Health ────────────────────────────── +2026/03/22 00:27:08 [log_collector] {"stage_name":"log_collector","events_processed":36441,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7288.2,"last_update":"2026-03-22T00:27:03.870185466Z"} +2026/03/22 00:27:08 [metric_collector] {"stage_name":"metric_collector","events_processed":22874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4574.8,"last_update":"2026-03-22T00:27:03.870405919Z"} +2026/03/22 00:27:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:27:03.876754808Z"} +2026/03/22 00:27:08 [transform_engine] {"stage_name":"transform_engine","events_processed":762,"events_dropped":0,"avg_latency_ms":186.3373984028689,"throughput_eps":0,"last_update":"2026-03-22T00:27:03.966015418Z"} +2026/03/22 00:27:08 [detection_layer] {"stage_name":"detection_layer","events_processed":761,"events_dropped":0,"avg_latency_ms":19.03219835439864,"throughput_eps":0,"last_update":"2026-03-22T00:27:03.965942669Z"} +2026/03/22 00:27:08 ───────────────────────────────────────────────── +2026/03/22 00:27:13 ── Pipeline Health ────────────────────────────── +2026/03/22 00:27:13 [log_collector] {"stage_name":"log_collector","events_processed":36441,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7288.2,"last_update":"2026-03-22T00:27:08.869564041Z"} +2026/03/22 00:27:13 [metric_collector] {"stage_name":"metric_collector","events_processed":22879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4575.8,"last_update":"2026-03-22T00:27:08.870766013Z"} +2026/03/22 00:27:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:27:08.875695504Z"} +2026/03/22 00:27:13 [transform_engine] {"stage_name":"transform_engine","events_processed":762,"events_dropped":0,"avg_latency_ms":186.3373984028689,"throughput_eps":0,"last_update":"2026-03-22T00:27:08.965876617Z"} +2026/03/22 00:27:13 [detection_layer] {"stage_name":"detection_layer","events_processed":761,"events_dropped":0,"avg_latency_ms":19.03219835439864,"throughput_eps":0,"last_update":"2026-03-22T00:27:08.965842521Z"} +2026/03/22 00:27:13 ───────────────────────────────────────────────── +2026/03/22 00:27:18 ── Pipeline Health ────────────────────────────── +2026/03/22 00:27:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:27:13.876582151Z"} +2026/03/22 00:27:18 [transform_engine] {"stage_name":"transform_engine","events_processed":762,"events_dropped":0,"avg_latency_ms":186.3373984028689,"throughput_eps":0,"last_update":"2026-03-22T00:27:13.965749103Z"} +2026/03/22 00:27:18 [detection_layer] {"stage_name":"detection_layer","events_processed":761,"events_dropped":0,"avg_latency_ms":19.03219835439864,"throughput_eps":0,"last_update":"2026-03-22T00:27:13.965731819Z"} +2026/03/22 00:27:18 [log_collector] {"stage_name":"log_collector","events_processed":36441,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7288.2,"last_update":"2026-03-22T00:27:18.870336788Z"} +2026/03/22 00:27:18 [metric_collector] {"stage_name":"metric_collector","events_processed":22884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4576.8,"last_update":"2026-03-22T00:27:13.870337281Z"} +2026/03/22 00:27:18 ───────────────────────────────────────────────── +2026/03/22 00:27:23 ── Pipeline Health ────────────────────────────── +2026/03/22 00:27:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:27:18.879529975Z"} +2026/03/22 00:27:23 [transform_engine] {"stage_name":"transform_engine","events_processed":763,"events_dropped":0,"avg_latency_ms":212.3137963222951,"throughput_eps":0,"last_update":"2026-03-22T00:27:19.282714888Z"} +2026/03/22 00:27:23 [detection_layer] {"stage_name":"detection_layer","events_processed":761,"events_dropped":0,"avg_latency_ms":19.03219835439864,"throughput_eps":0,"last_update":"2026-03-22T00:27:18.966472395Z"} +2026/03/22 00:27:23 [log_collector] {"stage_name":"log_collector","events_processed":36441,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7288.2,"last_update":"2026-03-22T00:27:18.870336788Z"} +2026/03/22 00:27:23 [metric_collector] {"stage_name":"metric_collector","events_processed":22889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4577.8,"last_update":"2026-03-22T00:27:18.870601505Z"} +2026/03/22 00:27:23 ───────────────────────────────────────────────── +2026/03/22 00:27:28 ── Pipeline Health ────────────────────────────── +2026/03/22 00:27:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:27:23.879207051Z"} +2026/03/22 00:27:28 [transform_engine] {"stage_name":"transform_engine","events_processed":763,"events_dropped":0,"avg_latency_ms":212.3137963222951,"throughput_eps":0,"last_update":"2026-03-22T00:27:23.965383596Z"} +2026/03/22 00:27:28 [detection_layer] {"stage_name":"detection_layer","events_processed":762,"events_dropped":0,"avg_latency_ms":18.230403083518915,"throughput_eps":0,"last_update":"2026-03-22T00:27:23.965493436Z"} +2026/03/22 00:27:28 [log_collector] {"stage_name":"log_collector","events_processed":36441,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7288.2,"last_update":"2026-03-22T00:27:23.871456157Z"} +2026/03/22 00:27:28 [metric_collector] {"stage_name":"metric_collector","events_processed":22894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4578.8,"last_update":"2026-03-22T00:27:23.871686608Z"} +2026/03/22 00:27:28 ───────────────────────────────────────────────── +2026/03/22 00:27:33 ── Pipeline Health ────────────────────────────── +2026/03/22 00:27:33 [log_collector] {"stage_name":"log_collector","events_processed":36452,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7290.4,"last_update":"2026-03-22T00:27:33.869837183Z"} +2026/03/22 00:27:33 [metric_collector] {"stage_name":"metric_collector","events_processed":22899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4579.8,"last_update":"2026-03-22T00:27:28.870242742Z"} +2026/03/22 00:27:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:27:28.877290249Z"} +2026/03/22 00:27:33 [transform_engine] {"stage_name":"transform_engine","events_processed":763,"events_dropped":0,"avg_latency_ms":212.3137963222951,"throughput_eps":0,"last_update":"2026-03-22T00:27:28.965521899Z"} +2026/03/22 00:27:33 [detection_layer] {"stage_name":"detection_layer","events_processed":762,"events_dropped":0,"avg_latency_ms":18.230403083518915,"throughput_eps":0,"last_update":"2026-03-22T00:27:28.96556918Z"} +2026/03/22 00:27:33 ───────────────────────────────────────────────── +2026/03/22 00:27:38 ── Pipeline Health ────────────────────────────── +2026/03/22 00:27:38 [detection_layer] {"stage_name":"detection_layer","events_processed":762,"events_dropped":0,"avg_latency_ms":18.230403083518915,"throughput_eps":0,"last_update":"2026-03-22T00:27:33.965652237Z"} +2026/03/22 00:27:38 [log_collector] {"stage_name":"log_collector","events_processed":36500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7300,"last_update":"2026-03-22T00:27:38.869885748Z"} +2026/03/22 00:27:38 [metric_collector] {"stage_name":"metric_collector","events_processed":22909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4581.8,"last_update":"2026-03-22T00:27:38.869796286Z"} +2026/03/22 00:27:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:27:33.878464445Z"} +2026/03/22 00:27:38 [transform_engine] {"stage_name":"transform_engine","events_processed":763,"events_dropped":0,"avg_latency_ms":212.3137963222951,"throughput_eps":0,"last_update":"2026-03-22T00:27:33.965760555Z"} +2026/03/22 00:27:38 ───────────────────────────────────────────────── +2026/03/22 00:27:43 ── Pipeline Health ────────────────────────────── +2026/03/22 00:27:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:27:38.875788121Z"} +2026/03/22 00:27:43 [transform_engine] {"stage_name":"transform_engine","events_processed":763,"events_dropped":0,"avg_latency_ms":212.3137963222951,"throughput_eps":0,"last_update":"2026-03-22T00:27:38.966080699Z"} +2026/03/22 00:27:43 [detection_layer] {"stage_name":"detection_layer","events_processed":762,"events_dropped":0,"avg_latency_ms":18.230403083518915,"throughput_eps":0,"last_update":"2026-03-22T00:27:38.966032487Z"} +2026/03/22 00:27:43 [log_collector] {"stage_name":"log_collector","events_processed":36500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7300,"last_update":"2026-03-22T00:27:38.869885748Z"} +2026/03/22 00:27:43 [metric_collector] {"stage_name":"metric_collector","events_processed":22909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4581.8,"last_update":"2026-03-22T00:27:38.869796286Z"} +2026/03/22 00:27:43 ───────────────────────────────────────────────── +2026/03/22 00:27:48 ── Pipeline Health ────────────────────────────── +2026/03/22 00:27:48 [log_collector] {"stage_name":"log_collector","events_processed":36725,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7345,"last_update":"2026-03-22T00:27:43.870339426Z"} +2026/03/22 00:27:48 [metric_collector] {"stage_name":"metric_collector","events_processed":22914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4582.8,"last_update":"2026-03-22T00:27:43.870538788Z"} +2026/03/22 00:27:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:27:43.879858678Z"} +2026/03/22 00:27:48 [transform_engine] {"stage_name":"transform_engine","events_processed":763,"events_dropped":0,"avg_latency_ms":212.3137963222951,"throughput_eps":0,"last_update":"2026-03-22T00:27:43.965359558Z"} +2026/03/22 00:27:48 [detection_layer] {"stage_name":"detection_layer","events_processed":762,"events_dropped":0,"avg_latency_ms":18.230403083518915,"throughput_eps":0,"last_update":"2026-03-22T00:27:43.965373284Z"} +2026/03/22 00:27:48 ───────────────────────────────────────────────── +2026/03/22 00:27:53 ── Pipeline Health ────────────────────────────── +2026/03/22 00:27:53 [metric_collector] {"stage_name":"metric_collector","events_processed":22919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4583.8,"last_update":"2026-03-22T00:27:48.869940208Z"} +2026/03/22 00:27:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9170,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:27:48.879275678Z"} +2026/03/22 00:27:53 [transform_engine] {"stage_name":"transform_engine","events_processed":764,"events_dropped":0,"avg_latency_ms":316.18508885783615,"throughput_eps":0,"last_update":"2026-03-22T00:27:49.697137219Z"} +2026/03/22 00:27:53 [detection_layer] {"stage_name":"detection_layer","events_processed":762,"events_dropped":0,"avg_latency_ms":18.230403083518915,"throughput_eps":0,"last_update":"2026-03-22T00:27:48.966483468Z"} +2026/03/22 00:27:53 [log_collector] {"stage_name":"log_collector","events_processed":36807,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7361.4,"last_update":"2026-03-22T00:27:53.869594589Z"} +2026/03/22 00:27:53 ───────────────────────────────────────────────── +Saved state: 29 clusters, 36808 messages, reason: none +2026/03/22 00:27:58 ── Pipeline Health ────────────────────────────── +2026/03/22 00:27:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:27:53.878928785Z"} +2026/03/22 00:27:58 [transform_engine] {"stage_name":"transform_engine","events_processed":764,"events_dropped":0,"avg_latency_ms":316.18508885783615,"throughput_eps":0,"last_update":"2026-03-22T00:27:53.965080302Z"} +2026/03/22 00:27:58 [detection_layer] {"stage_name":"detection_layer","events_processed":763,"events_dropped":0,"avg_latency_ms":18.63853506681513,"throughput_eps":0,"last_update":"2026-03-22T00:27:53.966205828Z"} +2026/03/22 00:27:58 [log_collector] {"stage_name":"log_collector","events_processed":36807,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7361.4,"last_update":"2026-03-22T00:27:53.869594589Z"} +2026/03/22 00:27:58 [metric_collector] {"stage_name":"metric_collector","events_processed":22924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4584.8,"last_update":"2026-03-22T00:27:53.869992872Z"} +2026/03/22 00:27:58 ───────────────────────────────────────────────── +2026/03/22 00:28:03 ── Pipeline Health ────────────────────────────── +2026/03/22 00:28:03 [detection_layer] {"stage_name":"detection_layer","events_processed":763,"events_dropped":0,"avg_latency_ms":18.63853506681513,"throughput_eps":0,"last_update":"2026-03-22T00:27:58.965515144Z"} +2026/03/22 00:28:03 [log_collector] {"stage_name":"log_collector","events_processed":36810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7362,"last_update":"2026-03-22T00:27:58.86964276Z"} +2026/03/22 00:28:03 [metric_collector] {"stage_name":"metric_collector","events_processed":22929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4585.8,"last_update":"2026-03-22T00:27:58.870023008Z"} +2026/03/22 00:28:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:27:58.8752557Z"} +2026/03/22 00:28:03 [transform_engine] {"stage_name":"transform_engine","events_processed":764,"events_dropped":0,"avg_latency_ms":316.18508885783615,"throughput_eps":0,"last_update":"2026-03-22T00:27:58.965529251Z"} +2026/03/22 00:28:03 ───────────────────────────────────────────────── +2026/03/22 00:28:08 ── Pipeline Health ────────────────────────────── +2026/03/22 00:28:08 [detection_layer] {"stage_name":"detection_layer","events_processed":763,"events_dropped":0,"avg_latency_ms":18.63853506681513,"throughput_eps":0,"last_update":"2026-03-22T00:28:03.966280634Z"} +2026/03/22 00:28:08 [log_collector] {"stage_name":"log_collector","events_processed":36810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7362,"last_update":"2026-03-22T00:28:03.869942568Z"} +2026/03/22 00:28:08 [metric_collector] {"stage_name":"metric_collector","events_processed":22934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4586.8,"last_update":"2026-03-22T00:28:03.870152209Z"} +2026/03/22 00:28:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:28:03.876416938Z"} +2026/03/22 00:28:08 [transform_engine] {"stage_name":"transform_engine","events_processed":764,"events_dropped":0,"avg_latency_ms":316.18508885783615,"throughput_eps":0,"last_update":"2026-03-22T00:28:03.966232261Z"} +2026/03/22 00:28:08 ───────────────────────────────────────────────── +2026/03/22 00:28:13 ── Pipeline Health ────────────────────────────── +2026/03/22 00:28:13 [metric_collector] {"stage_name":"metric_collector","events_processed":22939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4587.8,"last_update":"2026-03-22T00:28:08.870452624Z"} +2026/03/22 00:28:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:28:08.879139521Z"} +2026/03/22 00:28:13 [transform_engine] {"stage_name":"transform_engine","events_processed":764,"events_dropped":0,"avg_latency_ms":316.18508885783615,"throughput_eps":0,"last_update":"2026-03-22T00:28:08.96554778Z"} +2026/03/22 00:28:13 [detection_layer] {"stage_name":"detection_layer","events_processed":763,"events_dropped":0,"avg_latency_ms":18.63853506681513,"throughput_eps":0,"last_update":"2026-03-22T00:28:08.965499508Z"} +2026/03/22 00:28:13 [log_collector] {"stage_name":"log_collector","events_processed":36821,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7364.2,"last_update":"2026-03-22T00:28:13.870112358Z"} +2026/03/22 00:28:13 ───────────────────────────────────────────────── +2026/03/22 00:28:18 ── Pipeline Health ────────────────────────────── +2026/03/22 00:28:18 [log_collector] {"stage_name":"log_collector","events_processed":36821,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7364.2,"last_update":"2026-03-22T00:28:13.870112358Z"} +2026/03/22 00:28:18 [metric_collector] {"stage_name":"metric_collector","events_processed":22944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4588.8,"last_update":"2026-03-22T00:28:13.870589061Z"} +2026/03/22 00:28:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:28:13.879204541Z"} +2026/03/22 00:28:18 [transform_engine] {"stage_name":"transform_engine","events_processed":764,"events_dropped":0,"avg_latency_ms":316.18508885783615,"throughput_eps":0,"last_update":"2026-03-22T00:28:13.965447403Z"} +2026/03/22 00:28:18 [detection_layer] {"stage_name":"detection_layer","events_processed":763,"events_dropped":0,"avg_latency_ms":18.63853506681513,"throughput_eps":0,"last_update":"2026-03-22T00:28:13.965413158Z"} +2026/03/22 00:28:18 ───────────────────────────────────────────────── +2026/03/22 00:28:23 ── Pipeline Health ────────────────────────────── +2026/03/22 00:28:23 [detection_layer] {"stage_name":"detection_layer","events_processed":763,"events_dropped":0,"avg_latency_ms":18.63853506681513,"throughput_eps":0,"last_update":"2026-03-22T00:28:18.966176091Z"} +2026/03/22 00:28:23 [log_collector] {"stage_name":"log_collector","events_processed":36837,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7367.4,"last_update":"2026-03-22T00:28:18.869698768Z"} +2026/03/22 00:28:23 [metric_collector] {"stage_name":"metric_collector","events_processed":22949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4589.8,"last_update":"2026-03-22T00:28:18.869866799Z"} +2026/03/22 00:28:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:28:18.875859277Z"} +2026/03/22 00:28:23 [transform_engine] {"stage_name":"transform_engine","events_processed":764,"events_dropped":0,"avg_latency_ms":316.18508885783615,"throughput_eps":0,"last_update":"2026-03-22T00:28:18.966151674Z"} +2026/03/22 00:28:23 ───────────────────────────────────────────────── +2026/03/22 00:28:28 ── Pipeline Health ────────────────────────────── +2026/03/22 00:28:28 [log_collector] {"stage_name":"log_collector","events_processed":36837,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7367.4,"last_update":"2026-03-22T00:28:23.870444985Z"} +2026/03/22 00:28:28 [metric_collector] {"stage_name":"metric_collector","events_processed":22954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4590.8,"last_update":"2026-03-22T00:28:23.871042971Z"} +2026/03/22 00:28:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:28:23.879143124Z"} +2026/03/22 00:28:28 [transform_engine] {"stage_name":"transform_engine","events_processed":765,"events_dropped":0,"avg_latency_ms":275.63418948626895,"throughput_eps":0,"last_update":"2026-03-22T00:28:23.965403029Z"} +2026/03/22 00:28:28 [detection_layer] {"stage_name":"detection_layer","events_processed":764,"events_dropped":0,"avg_latency_ms":18.044383453452106,"throughput_eps":0,"last_update":"2026-03-22T00:28:23.965376949Z"} +2026/03/22 00:28:28 ───────────────────────────────────────────────── +2026/03/22 00:28:33 ── Pipeline Health ────────────────────────────── +2026/03/22 00:28:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:28:28.879181382Z"} +2026/03/22 00:28:33 [transform_engine] {"stage_name":"transform_engine","events_processed":765,"events_dropped":0,"avg_latency_ms":275.63418948626895,"throughput_eps":0,"last_update":"2026-03-22T00:28:28.965367615Z"} +2026/03/22 00:28:33 [detection_layer] {"stage_name":"detection_layer","events_processed":764,"events_dropped":0,"avg_latency_ms":18.044383453452106,"throughput_eps":0,"last_update":"2026-03-22T00:28:28.965462788Z"} +2026/03/22 00:28:33 [log_collector] {"stage_name":"log_collector","events_processed":36837,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7367.4,"last_update":"2026-03-22T00:28:33.869865589Z"} +2026/03/22 00:28:33 [metric_collector] {"stage_name":"metric_collector","events_processed":22959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4591.8,"last_update":"2026-03-22T00:28:28.870749562Z"} +2026/03/22 00:28:33 ───────────────────────────────────────────────── +2026/03/22 00:28:38 ── Pipeline Health ────────────────────────────── +2026/03/22 00:28:38 [log_collector] {"stage_name":"log_collector","events_processed":36837,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7367.4,"last_update":"2026-03-22T00:28:38.869408819Z"} +2026/03/22 00:28:38 [metric_collector] {"stage_name":"metric_collector","events_processed":22964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4592.8,"last_update":"2026-03-22T00:28:33.870433917Z"} +2026/03/22 00:28:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:28:33.880074772Z"} +2026/03/22 00:28:38 [transform_engine] {"stage_name":"transform_engine","events_processed":765,"events_dropped":0,"avg_latency_ms":275.63418948626895,"throughput_eps":0,"last_update":"2026-03-22T00:28:33.965446195Z"} +2026/03/22 00:28:38 [detection_layer] {"stage_name":"detection_layer","events_processed":764,"events_dropped":0,"avg_latency_ms":18.044383453452106,"throughput_eps":0,"last_update":"2026-03-22T00:28:33.965268696Z"} +2026/03/22 00:28:38 ───────────────────────────────────────────────── +2026/03/22 00:28:43 ── Pipeline Health ────────────────────────────── +2026/03/22 00:28:43 [log_collector] {"stage_name":"log_collector","events_processed":36837,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7367.4,"last_update":"2026-03-22T00:28:43.869682424Z"} +2026/03/22 00:28:43 [metric_collector] {"stage_name":"metric_collector","events_processed":22968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4593.6,"last_update":"2026-03-22T00:28:38.86956576Z"} +2026/03/22 00:28:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:28:38.878552211Z"} +2026/03/22 00:28:43 [transform_engine] {"stage_name":"transform_engine","events_processed":765,"events_dropped":0,"avg_latency_ms":275.63418948626895,"throughput_eps":0,"last_update":"2026-03-22T00:28:38.965935588Z"} +2026/03/22 00:28:43 [detection_layer] {"stage_name":"detection_layer","events_processed":764,"events_dropped":0,"avg_latency_ms":18.044383453452106,"throughput_eps":0,"last_update":"2026-03-22T00:28:38.965822912Z"} +2026/03/22 00:28:43 ───────────────────────────────────────────────── +2026/03/22 00:28:48 ── Pipeline Health ────────────────────────────── +2026/03/22 00:28:48 [log_collector] {"stage_name":"log_collector","events_processed":36837,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7367.4,"last_update":"2026-03-22T00:28:43.869682424Z"} +2026/03/22 00:28:48 [metric_collector] {"stage_name":"metric_collector","events_processed":22974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4594.8,"last_update":"2026-03-22T00:28:43.870079895Z"} +2026/03/22 00:28:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:28:43.879238436Z"} +2026/03/22 00:28:48 [transform_engine] {"stage_name":"transform_engine","events_processed":765,"events_dropped":0,"avg_latency_ms":275.63418948626895,"throughput_eps":0,"last_update":"2026-03-22T00:28:43.965602271Z"} +2026/03/22 00:28:48 [detection_layer] {"stage_name":"detection_layer","events_processed":764,"events_dropped":0,"avg_latency_ms":18.044383453452106,"throughput_eps":0,"last_update":"2026-03-22T00:28:43.965653469Z"} +2026/03/22 00:28:48 ───────────────────────────────────────────────── +2026/03/22 00:28:53 ── Pipeline Health ────────────────────────────── +2026/03/22 00:28:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:28:48.879344344Z"} +2026/03/22 00:28:53 [transform_engine] {"stage_name":"transform_engine","events_processed":766,"events_dropped":0,"avg_latency_ms":235.96777358901517,"throughput_eps":0,"last_update":"2026-03-22T00:28:49.043010949Z"} +2026/03/22 00:28:53 [detection_layer] {"stage_name":"detection_layer","events_processed":764,"events_dropped":0,"avg_latency_ms":18.044383453452106,"throughput_eps":0,"last_update":"2026-03-22T00:28:48.965595863Z"} +2026/03/22 00:28:53 [log_collector] {"stage_name":"log_collector","events_processed":36837,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7367.4,"last_update":"2026-03-22T00:28:48.869546689Z"} +2026/03/22 00:28:53 [metric_collector] {"stage_name":"metric_collector","events_processed":22979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4595.8,"last_update":"2026-03-22T00:28:48.869879658Z"} +2026/03/22 00:28:53 ───────────────────────────────────────────────── +2026/03/22 00:28:58 ── Pipeline Health ────────────────────────────── +2026/03/22 00:28:58 [log_collector] {"stage_name":"log_collector","events_processed":36837,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7367.4,"last_update":"2026-03-22T00:28:53.870325202Z"} +2026/03/22 00:28:58 [metric_collector] {"stage_name":"metric_collector","events_processed":22984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4596.8,"last_update":"2026-03-22T00:28:53.870795794Z"} +2026/03/22 00:28:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:28:53.880941975Z"} +2026/03/22 00:28:58 [transform_engine] {"stage_name":"transform_engine","events_processed":766,"events_dropped":0,"avg_latency_ms":235.96777358901517,"throughput_eps":0,"last_update":"2026-03-22T00:28:53.965104263Z"} +2026/03/22 00:28:58 [detection_layer] {"stage_name":"detection_layer","events_processed":765,"events_dropped":0,"avg_latency_ms":18.850155562761685,"throughput_eps":0,"last_update":"2026-03-22T00:28:53.966275997Z"} +2026/03/22 00:28:58 ───────────────────────────────────────────────── +2026/03/22 00:29:03 ── Pipeline Health ────────────────────────────── +2026/03/22 00:29:03 [log_collector] {"stage_name":"log_collector","events_processed":36837,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7367.4,"last_update":"2026-03-22T00:28:58.870019903Z"} +2026/03/22 00:29:03 [metric_collector] {"stage_name":"metric_collector","events_processed":22988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4597.6,"last_update":"2026-03-22T00:28:58.870131968Z"} +2026/03/22 00:29:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:28:58.879121075Z"} +2026/03/22 00:29:03 [transform_engine] {"stage_name":"transform_engine","events_processed":766,"events_dropped":0,"avg_latency_ms":235.96777358901517,"throughput_eps":0,"last_update":"2026-03-22T00:28:58.965161089Z"} +2026/03/22 00:29:03 [detection_layer] {"stage_name":"detection_layer","events_processed":765,"events_dropped":0,"avg_latency_ms":18.850155562761685,"throughput_eps":0,"last_update":"2026-03-22T00:28:58.966261737Z"} +2026/03/22 00:29:03 ───────────────────────────────────────────────── +2026/03/22 00:29:08 ── Pipeline Health ────────────────────────────── +2026/03/22 00:29:08 [log_collector] {"stage_name":"log_collector","events_processed":36837,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7367.4,"last_update":"2026-03-22T00:29:03.870264725Z"} +2026/03/22 00:29:08 [metric_collector] {"stage_name":"metric_collector","events_processed":22994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4598.8,"last_update":"2026-03-22T00:29:03.870710468Z"} +2026/03/22 00:29:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:29:03.879297504Z"} +2026/03/22 00:29:08 [transform_engine] {"stage_name":"transform_engine","events_processed":766,"events_dropped":0,"avg_latency_ms":235.96777358901517,"throughput_eps":0,"last_update":"2026-03-22T00:29:03.965678142Z"} +2026/03/22 00:29:08 [detection_layer] {"stage_name":"detection_layer","events_processed":765,"events_dropped":0,"avg_latency_ms":18.850155562761685,"throughput_eps":0,"last_update":"2026-03-22T00:29:03.965651429Z"} +2026/03/22 00:29:08 ───────────────────────────────────────────────── +2026/03/22 00:29:13 ── Pipeline Health ────────────────────────────── +2026/03/22 00:29:13 [log_collector] {"stage_name":"log_collector","events_processed":36837,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7367.4,"last_update":"2026-03-22T00:29:08.869849577Z"} +2026/03/22 00:29:13 [metric_collector] {"stage_name":"metric_collector","events_processed":22999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4599.8,"last_update":"2026-03-22T00:29:08.870462141Z"} +2026/03/22 00:29:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:29:08.880111712Z"} +2026/03/22 00:29:13 [transform_engine] {"stage_name":"transform_engine","events_processed":766,"events_dropped":0,"avg_latency_ms":235.96777358901517,"throughput_eps":0,"last_update":"2026-03-22T00:29:08.965274616Z"} +2026/03/22 00:29:13 [detection_layer] {"stage_name":"detection_layer","events_processed":765,"events_dropped":0,"avg_latency_ms":18.850155562761685,"throughput_eps":0,"last_update":"2026-03-22T00:29:08.965419845Z"} +2026/03/22 00:29:13 ───────────────────────────────────────────────── +2026/03/22 00:29:18 ── Pipeline Health ────────────────────────────── +2026/03/22 00:29:18 [log_collector] {"stage_name":"log_collector","events_processed":36837,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7367.4,"last_update":"2026-03-22T00:29:13.870209269Z"} +2026/03/22 00:29:18 [metric_collector] {"stage_name":"metric_collector","events_processed":23004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4600.8,"last_update":"2026-03-22T00:29:13.87053888Z"} +2026/03/22 00:29:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:29:13.878117816Z"} +2026/03/22 00:29:18 [transform_engine] {"stage_name":"transform_engine","events_processed":766,"events_dropped":0,"avg_latency_ms":235.96777358901517,"throughput_eps":0,"last_update":"2026-03-22T00:29:13.965307121Z"} +2026/03/22 00:29:18 [detection_layer] {"stage_name":"detection_layer","events_processed":765,"events_dropped":0,"avg_latency_ms":18.850155562761685,"throughput_eps":0,"last_update":"2026-03-22T00:29:13.965345545Z"} +2026/03/22 00:29:18 ───────────────────────────────────────────────── +2026/03/22 00:29:23 ── Pipeline Health ────────────────────────────── +2026/03/22 00:29:23 [log_collector] {"stage_name":"log_collector","events_processed":36837,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7367.4,"last_update":"2026-03-22T00:29:18.869480761Z"} +2026/03/22 00:29:23 [metric_collector] {"stage_name":"metric_collector","events_processed":23009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4601.8,"last_update":"2026-03-22T00:29:18.870157157Z"} +2026/03/22 00:29:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9206,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:29:18.878069571Z"} +2026/03/22 00:29:23 [transform_engine] {"stage_name":"transform_engine","events_processed":767,"events_dropped":0,"avg_latency_ms":203.69303567121216,"throughput_eps":0,"last_update":"2026-03-22T00:29:19.040040169Z"} +2026/03/22 00:29:23 [detection_layer] {"stage_name":"detection_layer","events_processed":765,"events_dropped":0,"avg_latency_ms":18.850155562761685,"throughput_eps":0,"last_update":"2026-03-22T00:29:18.965277203Z"} +2026/03/22 00:29:23 ───────────────────────────────────────────────── +Saved state: 29 clusters, 36838 messages, reason: none +2026/03/22 00:29:28 ── Pipeline Health ────────────────────────────── +2026/03/22 00:29:28 [log_collector] {"stage_name":"log_collector","events_processed":36837,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7367.4,"last_update":"2026-03-22T00:29:23.869616926Z"} +2026/03/22 00:29:28 [metric_collector] {"stage_name":"metric_collector","events_processed":23014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4602.8,"last_update":"2026-03-22T00:29:23.869886573Z"} +2026/03/22 00:29:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:29:23.879077154Z"} +2026/03/22 00:29:28 [transform_engine] {"stage_name":"transform_engine","events_processed":767,"events_dropped":0,"avg_latency_ms":203.69303567121216,"throughput_eps":0,"last_update":"2026-03-22T00:29:23.965553876Z"} +2026/03/22 00:29:28 [detection_layer] {"stage_name":"detection_layer","events_processed":766,"events_dropped":0,"avg_latency_ms":19.24411325020935,"throughput_eps":0,"last_update":"2026-03-22T00:29:23.965429919Z"} +2026/03/22 00:29:28 ───────────────────────────────────────────────── +2026/03/22 00:29:33 ── Pipeline Health ────────────────────────────── +2026/03/22 00:29:33 [log_collector] {"stage_name":"log_collector","events_processed":36851,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7370.2,"last_update":"2026-03-22T00:29:28.869713992Z"} +2026/03/22 00:29:33 [metric_collector] {"stage_name":"metric_collector","events_processed":23019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4603.8,"last_update":"2026-03-22T00:29:28.870126792Z"} +2026/03/22 00:29:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9210,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:29:28.875784899Z"} +2026/03/22 00:29:33 [transform_engine] {"stage_name":"transform_engine","events_processed":767,"events_dropped":0,"avg_latency_ms":203.69303567121216,"throughput_eps":0,"last_update":"2026-03-22T00:29:28.966073451Z"} +2026/03/22 00:29:33 [detection_layer] {"stage_name":"detection_layer","events_processed":766,"events_dropped":0,"avg_latency_ms":19.24411325020935,"throughput_eps":0,"last_update":"2026-03-22T00:29:28.965970855Z"} +2026/03/22 00:29:33 ───────────────────────────────────────────────── +2026/03/22 00:29:38 ── Pipeline Health ────────────────────────────── +2026/03/22 00:29:38 [transform_engine] {"stage_name":"transform_engine","events_processed":767,"events_dropped":0,"avg_latency_ms":203.69303567121216,"throughput_eps":0,"last_update":"2026-03-22T00:29:33.966032907Z"} +2026/03/22 00:29:38 [detection_layer] {"stage_name":"detection_layer","events_processed":766,"events_dropped":0,"avg_latency_ms":19.24411325020935,"throughput_eps":0,"last_update":"2026-03-22T00:29:33.966138519Z"} +2026/03/22 00:29:38 [log_collector] {"stage_name":"log_collector","events_processed":36851,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7370.2,"last_update":"2026-03-22T00:29:33.869943445Z"} +2026/03/22 00:29:38 [metric_collector] {"stage_name":"metric_collector","events_processed":23024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4604.8,"last_update":"2026-03-22T00:29:33.870240924Z"} +2026/03/22 00:29:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:29:33.879858885Z"} +2026/03/22 00:29:38 ───────────────────────────────────────────────── +2026/03/22 00:29:43 ── Pipeline Health ────────────────────────────── +2026/03/22 00:29:43 [transform_engine] {"stage_name":"transform_engine","events_processed":767,"events_dropped":0,"avg_latency_ms":203.69303567121216,"throughput_eps":0,"last_update":"2026-03-22T00:29:38.96519412Z"} +2026/03/22 00:29:43 [detection_layer] {"stage_name":"detection_layer","events_processed":766,"events_dropped":0,"avg_latency_ms":19.24411325020935,"throughput_eps":0,"last_update":"2026-03-22T00:29:38.965323598Z"} +2026/03/22 00:29:43 [log_collector] {"stage_name":"log_collector","events_processed":36851,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7370.2,"last_update":"2026-03-22T00:29:43.869481314Z"} +2026/03/22 00:29:43 [metric_collector] {"stage_name":"metric_collector","events_processed":23029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4605.8,"last_update":"2026-03-22T00:29:38.870483959Z"} +2026/03/22 00:29:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:29:38.879019948Z"} +2026/03/22 00:29:43 ───────────────────────────────────────────────── +2026/03/22 00:29:48 ── Pipeline Health ────────────────────────────── +2026/03/22 00:29:48 [log_collector] {"stage_name":"log_collector","events_processed":36851,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7370.2,"last_update":"2026-03-22T00:29:48.869932258Z"} +2026/03/22 00:29:48 [metric_collector] {"stage_name":"metric_collector","events_processed":23034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4606.8,"last_update":"2026-03-22T00:29:43.870138452Z"} +2026/03/22 00:29:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:29:43.877924554Z"} +2026/03/22 00:29:48 [transform_engine] {"stage_name":"transform_engine","events_processed":767,"events_dropped":0,"avg_latency_ms":203.69303567121216,"throughput_eps":0,"last_update":"2026-03-22T00:29:43.965059516Z"} +2026/03/22 00:29:48 [detection_layer] {"stage_name":"detection_layer","events_processed":766,"events_dropped":0,"avg_latency_ms":19.24411325020935,"throughput_eps":0,"last_update":"2026-03-22T00:29:43.966152088Z"} +2026/03/22 00:29:48 ───────────────────────────────────────────────── +2026/03/22 00:29:53 ── Pipeline Health ────────────────────────────── +2026/03/22 00:29:53 [log_collector] {"stage_name":"log_collector","events_processed":36851,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7370.2,"last_update":"2026-03-22T00:29:48.869932258Z"} +2026/03/22 00:29:53 [metric_collector] {"stage_name":"metric_collector","events_processed":23039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4607.8,"last_update":"2026-03-22T00:29:48.870437535Z"} +2026/03/22 00:29:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:29:48.879041864Z"} +2026/03/22 00:29:53 [transform_engine] {"stage_name":"transform_engine","events_processed":768,"events_dropped":0,"avg_latency_ms":186.73736613696974,"throughput_eps":0,"last_update":"2026-03-22T00:29:49.0845307Z"} +2026/03/22 00:29:53 [detection_layer] {"stage_name":"detection_layer","events_processed":766,"events_dropped":0,"avg_latency_ms":19.24411325020935,"throughput_eps":0,"last_update":"2026-03-22T00:29:48.965497605Z"} +2026/03/22 00:29:53 ───────────────────────────────────────────────── +2026/03/22 00:29:58 ── Pipeline Health ────────────────────────────── +2026/03/22 00:29:58 [transform_engine] {"stage_name":"transform_engine","events_processed":768,"events_dropped":0,"avg_latency_ms":186.73736613696974,"throughput_eps":0,"last_update":"2026-03-22T00:29:53.965517398Z"} +2026/03/22 00:29:58 [detection_layer] {"stage_name":"detection_layer","events_processed":767,"events_dropped":0,"avg_latency_ms":19.534980800167478,"throughput_eps":0,"last_update":"2026-03-22T00:29:53.965486439Z"} +2026/03/22 00:29:58 [log_collector] {"stage_name":"log_collector","events_processed":36851,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7370.2,"last_update":"2026-03-22T00:29:58.869625685Z"} +2026/03/22 00:29:58 [metric_collector] {"stage_name":"metric_collector","events_processed":23044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4608.8,"last_update":"2026-03-22T00:29:53.870454632Z"} +2026/03/22 00:29:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:29:53.87827457Z"} +2026/03/22 00:29:58 ───────────────────────────────────────────────── +2026/03/22 00:30:03 ── Pipeline Health ────────────────────────────── +2026/03/22 00:30:03 [log_collector] {"stage_name":"log_collector","events_processed":36851,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7370.2,"last_update":"2026-03-22T00:29:58.869625685Z"} +2026/03/22 00:30:03 [metric_collector] {"stage_name":"metric_collector","events_processed":23049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4609.8,"last_update":"2026-03-22T00:29:58.869928665Z"} +2026/03/22 00:30:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9222,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:29:58.879088007Z"} +2026/03/22 00:30:03 [transform_engine] {"stage_name":"transform_engine","events_processed":768,"events_dropped":0,"avg_latency_ms":186.73736613696974,"throughput_eps":0,"last_update":"2026-03-22T00:29:58.965255436Z"} +2026/03/22 00:30:03 [detection_layer] {"stage_name":"detection_layer","events_processed":767,"events_dropped":0,"avg_latency_ms":19.534980800167478,"throughput_eps":0,"last_update":"2026-03-22T00:29:58.965275786Z"} +2026/03/22 00:30:03 ───────────────────────────────────────────────── +2026/03/22 00:30:08 ── Pipeline Health ────────────────────────────── +2026/03/22 00:30:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:30:03.891300101Z"} +2026/03/22 00:30:08 [transform_engine] {"stage_name":"transform_engine","events_processed":768,"events_dropped":0,"avg_latency_ms":186.73736613696974,"throughput_eps":0,"last_update":"2026-03-22T00:30:03.965602888Z"} +2026/03/22 00:30:08 [detection_layer] {"stage_name":"detection_layer","events_processed":767,"events_dropped":0,"avg_latency_ms":19.534980800167478,"throughput_eps":0,"last_update":"2026-03-22T00:30:03.965547481Z"} +2026/03/22 00:30:08 [log_collector] {"stage_name":"log_collector","events_processed":36851,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7370.2,"last_update":"2026-03-22T00:30:03.870423878Z"} +2026/03/22 00:30:08 [metric_collector] {"stage_name":"metric_collector","events_processed":23054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4610.8,"last_update":"2026-03-22T00:30:03.870771605Z"} +2026/03/22 00:30:08 ───────────────────────────────────────────────── +2026/03/22 00:30:13 ── Pipeline Health ────────────────────────────── +2026/03/22 00:30:13 [detection_layer] {"stage_name":"detection_layer","events_processed":767,"events_dropped":0,"avg_latency_ms":19.534980800167478,"throughput_eps":0,"last_update":"2026-03-22T00:30:08.965718738Z"} +2026/03/22 00:30:13 [log_collector] {"stage_name":"log_collector","events_processed":36851,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7370.2,"last_update":"2026-03-22T00:30:08.870267157Z"} +2026/03/22 00:30:13 [metric_collector] {"stage_name":"metric_collector","events_processed":23059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4611.8,"last_update":"2026-03-22T00:30:08.870645612Z"} +2026/03/22 00:30:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:30:08.879260371Z"} +2026/03/22 00:30:13 [transform_engine] {"stage_name":"transform_engine","events_processed":768,"events_dropped":0,"avg_latency_ms":186.73736613696974,"throughput_eps":0,"last_update":"2026-03-22T00:30:08.965600381Z"} +2026/03/22 00:30:13 ───────────────────────────────────────────────── +2026/03/22 00:30:18 ── Pipeline Health ────────────────────────────── +2026/03/22 00:30:18 [detection_layer] {"stage_name":"detection_layer","events_processed":767,"events_dropped":0,"avg_latency_ms":19.534980800167478,"throughput_eps":0,"last_update":"2026-03-22T00:30:13.966220653Z"} +2026/03/22 00:30:18 [log_collector] {"stage_name":"log_collector","events_processed":36851,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7370.2,"last_update":"2026-03-22T00:30:13.870049614Z"} +2026/03/22 00:30:18 [metric_collector] {"stage_name":"metric_collector","events_processed":23064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4612.8,"last_update":"2026-03-22T00:30:13.870704458Z"} +2026/03/22 00:30:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:30:13.876986599Z"} +2026/03/22 00:30:18 [transform_engine] {"stage_name":"transform_engine","events_processed":768,"events_dropped":0,"avg_latency_ms":186.73736613696974,"throughput_eps":0,"last_update":"2026-03-22T00:30:13.965129683Z"} +2026/03/22 00:30:18 ───────────────────────────────────────────────── +2026/03/22 00:30:23 ── Pipeline Health ────────────────────────────── +2026/03/22 00:30:23 [log_collector] {"stage_name":"log_collector","events_processed":36851,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7370.2,"last_update":"2026-03-22T00:30:18.869497496Z"} +2026/03/22 00:30:23 [metric_collector] {"stage_name":"metric_collector","events_processed":23069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4613.8,"last_update":"2026-03-22T00:30:18.869814262Z"} +2026/03/22 00:30:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:30:18.878724317Z"} +2026/03/22 00:30:23 [transform_engine] {"stage_name":"transform_engine","events_processed":769,"events_dropped":0,"avg_latency_ms":164.4011787095758,"throughput_eps":0,"last_update":"2026-03-22T00:30:19.041262213Z"} +2026/03/22 00:30:23 [detection_layer] {"stage_name":"detection_layer","events_processed":767,"events_dropped":0,"avg_latency_ms":19.534980800167478,"throughput_eps":0,"last_update":"2026-03-22T00:30:18.966080753Z"} +2026/03/22 00:30:23 ───────────────────────────────────────────────── +2026/03/22 00:30:28 ── Pipeline Health ────────────────────────────── +2026/03/22 00:30:28 [log_collector] {"stage_name":"log_collector","events_processed":36851,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7370.2,"last_update":"2026-03-22T00:30:23.869868099Z"} +2026/03/22 00:30:28 [metric_collector] {"stage_name":"metric_collector","events_processed":23074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4614.8,"last_update":"2026-03-22T00:30:23.870327709Z"} +2026/03/22 00:30:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:30:23.879118165Z"} +2026/03/22 00:30:28 [transform_engine] {"stage_name":"transform_engine","events_processed":769,"events_dropped":0,"avg_latency_ms":164.4011787095758,"throughput_eps":0,"last_update":"2026-03-22T00:30:23.965285795Z"} +2026/03/22 00:30:28 [detection_layer] {"stage_name":"detection_layer","events_processed":768,"events_dropped":0,"avg_latency_ms":19.633349640133982,"throughput_eps":0,"last_update":"2026-03-22T00:30:23.965278351Z"} +2026/03/22 00:30:28 ───────────────────────────────────────────────── +Saved state: 29 clusters, 36852 messages, reason: none +2026/03/22 00:30:33 ── Pipeline Health ────────────────────────────── +2026/03/22 00:30:33 [log_collector] {"stage_name":"log_collector","events_processed":36856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7371.2,"last_update":"2026-03-22T00:30:33.869396227Z"} +2026/03/22 00:30:33 [metric_collector] {"stage_name":"metric_collector","events_processed":23079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4615.8,"last_update":"2026-03-22T00:30:28.870468978Z"} +2026/03/22 00:30:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:30:28.879167958Z"} +2026/03/22 00:30:33 [transform_engine] {"stage_name":"transform_engine","events_processed":769,"events_dropped":0,"avg_latency_ms":164.4011787095758,"throughput_eps":0,"last_update":"2026-03-22T00:30:28.965656985Z"} +2026/03/22 00:30:33 [detection_layer] {"stage_name":"detection_layer","events_processed":768,"events_dropped":0,"avg_latency_ms":19.633349640133982,"throughput_eps":0,"last_update":"2026-03-22T00:30:28.96564463Z"} +2026/03/22 00:30:33 ───────────────────────────────────────────────── +2026/03/22 00:30:38 ── Pipeline Health ────────────────────────────── +2026/03/22 00:30:38 [metric_collector] {"stage_name":"metric_collector","events_processed":23084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4616.8,"last_update":"2026-03-22T00:30:33.869619835Z"} +2026/03/22 00:30:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:30:33.875554852Z"} +2026/03/22 00:30:38 [transform_engine] {"stage_name":"transform_engine","events_processed":769,"events_dropped":0,"avg_latency_ms":164.4011787095758,"throughput_eps":0,"last_update":"2026-03-22T00:30:33.965745457Z"} +2026/03/22 00:30:38 [detection_layer] {"stage_name":"detection_layer","events_processed":768,"events_dropped":0,"avg_latency_ms":19.633349640133982,"throughput_eps":0,"last_update":"2026-03-22T00:30:33.9657681Z"} +2026/03/22 00:30:38 [log_collector] {"stage_name":"log_collector","events_processed":36856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7371.2,"last_update":"2026-03-22T00:30:33.869396227Z"} +2026/03/22 00:30:38 ───────────────────────────────────────────────── +2026/03/22 00:30:43 ── Pipeline Health ────────────────────────────── +2026/03/22 00:30:43 [log_collector] {"stage_name":"log_collector","events_processed":36856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7371.2,"last_update":"2026-03-22T00:30:38.869649228Z"} +2026/03/22 00:30:43 [metric_collector] {"stage_name":"metric_collector","events_processed":23089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4617.8,"last_update":"2026-03-22T00:30:38.869956226Z"} +2026/03/22 00:30:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:30:38.876335905Z"} +2026/03/22 00:30:43 [transform_engine] {"stage_name":"transform_engine","events_processed":769,"events_dropped":0,"avg_latency_ms":164.4011787095758,"throughput_eps":0,"last_update":"2026-03-22T00:30:38.965541663Z"} +2026/03/22 00:30:43 [detection_layer] {"stage_name":"detection_layer","events_processed":768,"events_dropped":0,"avg_latency_ms":19.633349640133982,"throughput_eps":0,"last_update":"2026-03-22T00:30:38.965524521Z"} +2026/03/22 00:30:43 ───────────────────────────────────────────────── +2026/03/22 00:30:48 ── Pipeline Health ────────────────────────────── +2026/03/22 00:30:48 [log_collector] {"stage_name":"log_collector","events_processed":36856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7371.2,"last_update":"2026-03-22T00:30:43.870216606Z"} +2026/03/22 00:30:48 [metric_collector] {"stage_name":"metric_collector","events_processed":23094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4618.8,"last_update":"2026-03-22T00:30:43.870631319Z"} +2026/03/22 00:30:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:30:43.877676393Z"} +2026/03/22 00:30:48 [transform_engine] {"stage_name":"transform_engine","events_processed":769,"events_dropped":0,"avg_latency_ms":164.4011787095758,"throughput_eps":0,"last_update":"2026-03-22T00:30:43.965931741Z"} +2026/03/22 00:30:48 [detection_layer] {"stage_name":"detection_layer","events_processed":768,"events_dropped":0,"avg_latency_ms":19.633349640133982,"throughput_eps":0,"last_update":"2026-03-22T00:30:43.965918056Z"} +2026/03/22 00:30:48 ───────────────────────────────────────────────── +2026/03/22 00:30:53 ── Pipeline Health ────────────────────────────── +2026/03/22 00:30:53 [log_collector] {"stage_name":"log_collector","events_processed":36856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7371.2,"last_update":"2026-03-22T00:30:48.869549243Z"} +2026/03/22 00:30:53 [metric_collector] {"stage_name":"metric_collector","events_processed":23099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4619.8,"last_update":"2026-03-22T00:30:48.86975632Z"} +2026/03/22 00:30:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:30:48.877164037Z"} +2026/03/22 00:30:53 [transform_engine] {"stage_name":"transform_engine","events_processed":770,"events_dropped":0,"avg_latency_ms":441.79534176766066,"throughput_eps":0,"last_update":"2026-03-22T00:30:50.516867345Z"} +2026/03/22 00:30:53 [detection_layer] {"stage_name":"detection_layer","events_processed":768,"events_dropped":0,"avg_latency_ms":19.633349640133982,"throughput_eps":0,"last_update":"2026-03-22T00:30:48.965480744Z"} +2026/03/22 00:30:53 ───────────────────────────────────────────────── +2026/03/22 00:30:58 ── Pipeline Health ────────────────────────────── +2026/03/22 00:30:58 [log_collector] {"stage_name":"log_collector","events_processed":36856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7371.2,"last_update":"2026-03-22T00:30:53.869732274Z"} +2026/03/22 00:30:58 [metric_collector] {"stage_name":"metric_collector","events_processed":23104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4620.8,"last_update":"2026-03-22T00:30:53.870192035Z"} +2026/03/22 00:30:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:30:53.876995014Z"} +2026/03/22 00:30:58 [transform_engine] {"stage_name":"transform_engine","events_processed":770,"events_dropped":0,"avg_latency_ms":441.79534176766066,"throughput_eps":0,"last_update":"2026-03-22T00:30:53.965143178Z"} +2026/03/22 00:30:58 [detection_layer] {"stage_name":"detection_layer","events_processed":769,"events_dropped":0,"avg_latency_ms":17.882416712107187,"throughput_eps":0,"last_update":"2026-03-22T00:30:53.966229218Z"} +2026/03/22 00:30:58 ───────────────────────────────────────────────── +2026/03/22 00:31:03 ── Pipeline Health ────────────────────────────── +2026/03/22 00:31:03 [log_collector] {"stage_name":"log_collector","events_processed":36856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7371.2,"last_update":"2026-03-22T00:30:58.870544494Z"} +2026/03/22 00:31:03 [metric_collector] {"stage_name":"metric_collector","events_processed":23109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4621.8,"last_update":"2026-03-22T00:30:58.870647411Z"} +2026/03/22 00:31:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9246,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:30:58.878267675Z"} +2026/03/22 00:31:03 [transform_engine] {"stage_name":"transform_engine","events_processed":770,"events_dropped":0,"avg_latency_ms":441.79534176766066,"throughput_eps":0,"last_update":"2026-03-22T00:30:58.965456733Z"} +2026/03/22 00:31:03 [detection_layer] {"stage_name":"detection_layer","events_processed":769,"events_dropped":0,"avg_latency_ms":17.882416712107187,"throughput_eps":0,"last_update":"2026-03-22T00:30:58.96544Z"} +2026/03/22 00:31:03 ───────────────────────────────────────────────── +2026/03/22 00:31:08 ── Pipeline Health ────────────────────────────── +2026/03/22 00:31:08 [detection_layer] {"stage_name":"detection_layer","events_processed":769,"events_dropped":0,"avg_latency_ms":17.882416712107187,"throughput_eps":0,"last_update":"2026-03-22T00:31:03.965412997Z"} +2026/03/22 00:31:08 [log_collector] {"stage_name":"log_collector","events_processed":36856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7371.2,"last_update":"2026-03-22T00:31:03.870321355Z"} +2026/03/22 00:31:08 [metric_collector] {"stage_name":"metric_collector","events_processed":23119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4623.8,"last_update":"2026-03-22T00:31:08.869995764Z"} +2026/03/22 00:31:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:31:03.876977764Z"} +2026/03/22 00:31:08 [transform_engine] {"stage_name":"transform_engine","events_processed":770,"events_dropped":0,"avg_latency_ms":441.79534176766066,"throughput_eps":0,"last_update":"2026-03-22T00:31:03.965271928Z"} +2026/03/22 00:31:08 ───────────────────────────────────────────────── +2026/03/22 00:31:13 ── Pipeline Health ────────────────────────────── +2026/03/22 00:31:13 [log_collector] {"stage_name":"log_collector","events_processed":36856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7371.2,"last_update":"2026-03-22T00:31:08.870006134Z"} +2026/03/22 00:31:13 [metric_collector] {"stage_name":"metric_collector","events_processed":23119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4623.8,"last_update":"2026-03-22T00:31:08.869995764Z"} +2026/03/22 00:31:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:31:08.875926684Z"} +2026/03/22 00:31:13 [transform_engine] {"stage_name":"transform_engine","events_processed":770,"events_dropped":0,"avg_latency_ms":441.79534176766066,"throughput_eps":0,"last_update":"2026-03-22T00:31:08.966115035Z"} +2026/03/22 00:31:13 [detection_layer] {"stage_name":"detection_layer","events_processed":769,"events_dropped":0,"avg_latency_ms":17.882416712107187,"throughput_eps":0,"last_update":"2026-03-22T00:31:08.966105486Z"} +2026/03/22 00:31:13 ───────────────────────────────────────────────── +2026/03/22 00:31:18 ── Pipeline Health ────────────────────────────── +2026/03/22 00:31:18 [log_collector] {"stage_name":"log_collector","events_processed":36859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7371.8,"last_update":"2026-03-22T00:31:13.870213058Z"} +2026/03/22 00:31:18 [metric_collector] {"stage_name":"metric_collector","events_processed":23124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4624.8,"last_update":"2026-03-22T00:31:13.870713276Z"} +2026/03/22 00:31:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:31:13.878395099Z"} +2026/03/22 00:31:18 [transform_engine] {"stage_name":"transform_engine","events_processed":770,"events_dropped":0,"avg_latency_ms":441.79534176766066,"throughput_eps":0,"last_update":"2026-03-22T00:31:13.965605386Z"} +2026/03/22 00:31:18 [detection_layer] {"stage_name":"detection_layer","events_processed":769,"events_dropped":0,"avg_latency_ms":17.882416712107187,"throughput_eps":0,"last_update":"2026-03-22T00:31:13.965621517Z"} +2026/03/22 00:31:18 ───────────────────────────────────────────────── +2026/03/22 00:31:23 ── Pipeline Health ────────────────────────────── +2026/03/22 00:31:23 [log_collector] {"stage_name":"log_collector","events_processed":36867,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7373.4,"last_update":"2026-03-22T00:31:18.869881604Z"} +2026/03/22 00:31:23 [metric_collector] {"stage_name":"metric_collector","events_processed":23129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4625.8,"last_update":"2026-03-22T00:31:18.870187128Z"} +2026/03/22 00:31:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:31:18.879110369Z"} +2026/03/22 00:31:23 [transform_engine] {"stage_name":"transform_engine","events_processed":771,"events_dropped":0,"avg_latency_ms":377.20448521412857,"throughput_eps":0,"last_update":"2026-03-22T00:31:19.084275739Z"} +2026/03/22 00:31:23 [detection_layer] {"stage_name":"detection_layer","events_processed":769,"events_dropped":0,"avg_latency_ms":17.882416712107187,"throughput_eps":0,"last_update":"2026-03-22T00:31:18.965420333Z"} +2026/03/22 00:31:23 ───────────────────────────────────────────────── +2026/03/22 00:31:28 ── Pipeline Health ────────────────────────────── +2026/03/22 00:31:28 [log_collector] {"stage_name":"log_collector","events_processed":36953,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7390.6,"last_update":"2026-03-22T00:31:23.869765297Z"} +2026/03/22 00:31:28 [metric_collector] {"stage_name":"metric_collector","events_processed":23134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4626.8,"last_update":"2026-03-22T00:31:23.870076262Z"} +2026/03/22 00:31:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:31:23.879397394Z"} +2026/03/22 00:31:28 [transform_engine] {"stage_name":"transform_engine","events_processed":771,"events_dropped":0,"avg_latency_ms":377.20448521412857,"throughput_eps":0,"last_update":"2026-03-22T00:31:23.965727386Z"} +2026/03/22 00:31:28 [detection_layer] {"stage_name":"detection_layer","events_processed":770,"events_dropped":0,"avg_latency_ms":18.07296816968575,"throughput_eps":0,"last_update":"2026-03-22T00:31:23.965719722Z"} +2026/03/22 00:31:28 ───────────────────────────────────────────────── +Saved state: 29 clusters, 37157 messages, reason: none +2026/03/22 00:31:33 ── Pipeline Health ────────────────────────────── +2026/03/22 00:31:33 [transform_engine] {"stage_name":"transform_engine","events_processed":771,"events_dropped":0,"avg_latency_ms":377.20448521412857,"throughput_eps":0,"last_update":"2026-03-22T00:31:28.965217349Z"} +2026/03/22 00:31:33 [detection_layer] {"stage_name":"detection_layer","events_processed":770,"events_dropped":0,"avg_latency_ms":18.07296816968575,"throughput_eps":0,"last_update":"2026-03-22T00:31:28.966312066Z"} +2026/03/22 00:31:33 [log_collector] {"stage_name":"log_collector","events_processed":36971,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7394.2,"last_update":"2026-03-22T00:31:28.869888122Z"} +2026/03/22 00:31:33 [metric_collector] {"stage_name":"metric_collector","events_processed":23139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4627.8,"last_update":"2026-03-22T00:31:28.870228624Z"} +2026/03/22 00:31:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:31:28.879113481Z"} +2026/03/22 00:31:33 ───────────────────────────────────────────────── +2026/03/22 00:31:38 ── Pipeline Health ────────────────────────────── +2026/03/22 00:31:38 [transform_engine] {"stage_name":"transform_engine","events_processed":771,"events_dropped":0,"avg_latency_ms":377.20448521412857,"throughput_eps":0,"last_update":"2026-03-22T00:31:33.965174912Z"} +2026/03/22 00:31:38 [detection_layer] {"stage_name":"detection_layer","events_processed":770,"events_dropped":0,"avg_latency_ms":18.07296816968575,"throughput_eps":0,"last_update":"2026-03-22T00:31:33.966289887Z"} +2026/03/22 00:31:38 [log_collector] {"stage_name":"log_collector","events_processed":37218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7443.6,"last_update":"2026-03-22T00:31:33.869800948Z"} +2026/03/22 00:31:38 [metric_collector] {"stage_name":"metric_collector","events_processed":23144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4628.8,"last_update":"2026-03-22T00:31:33.870245099Z"} +2026/03/22 00:31:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:31:33.876949981Z"} +2026/03/22 00:31:38 ───────────────────────────────────────────────── +2026/03/22 00:31:43 ── Pipeline Health ────────────────────────────── +2026/03/22 00:31:43 [log_collector] {"stage_name":"log_collector","events_processed":37218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7443.6,"last_update":"2026-03-22T00:31:38.869401712Z"} +2026/03/22 00:31:43 [metric_collector] {"stage_name":"metric_collector","events_processed":23148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4629.6,"last_update":"2026-03-22T00:31:38.869393496Z"} +2026/03/22 00:31:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:31:38.878151359Z"} +2026/03/22 00:31:43 [transform_engine] {"stage_name":"transform_engine","events_processed":771,"events_dropped":0,"avg_latency_ms":377.20448521412857,"throughput_eps":0,"last_update":"2026-03-22T00:31:38.965604313Z"} +2026/03/22 00:31:43 [detection_layer] {"stage_name":"detection_layer","events_processed":770,"events_dropped":0,"avg_latency_ms":18.07296816968575,"throughput_eps":0,"last_update":"2026-03-22T00:31:38.965724022Z"} +2026/03/22 00:31:43 ───────────────────────────────────────────────── +2026/03/22 00:31:48 ── Pipeline Health ────────────────────────────── +2026/03/22 00:31:48 [transform_engine] {"stage_name":"transform_engine","events_processed":771,"events_dropped":0,"avg_latency_ms":377.20448521412857,"throughput_eps":0,"last_update":"2026-03-22T00:31:43.965607762Z"} +2026/03/22 00:31:48 [detection_layer] {"stage_name":"detection_layer","events_processed":770,"events_dropped":0,"avg_latency_ms":18.07296816968575,"throughput_eps":0,"last_update":"2026-03-22T00:31:43.965575559Z"} +2026/03/22 00:31:48 [log_collector] {"stage_name":"log_collector","events_processed":37221,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7444.2,"last_update":"2026-03-22T00:31:43.869632475Z"} +2026/03/22 00:31:48 [metric_collector] {"stage_name":"metric_collector","events_processed":23154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4630.8,"last_update":"2026-03-22T00:31:43.869602979Z"} +2026/03/22 00:31:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:31:43.881426494Z"} +2026/03/22 00:31:48 ───────────────────────────────────────────────── +2026/03/22 00:31:53 ── Pipeline Health ────────────────────────────── +2026/03/22 00:31:53 [metric_collector] {"stage_name":"metric_collector","events_processed":23159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4631.8,"last_update":"2026-03-22T00:31:48.870047195Z"} +2026/03/22 00:31:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:31:48.876310251Z"} +2026/03/22 00:31:53 [transform_engine] {"stage_name":"transform_engine","events_processed":771,"events_dropped":0,"avg_latency_ms":377.20448521412857,"throughput_eps":0,"last_update":"2026-03-22T00:31:48.965636742Z"} +2026/03/22 00:31:53 [detection_layer] {"stage_name":"detection_layer","events_processed":770,"events_dropped":0,"avg_latency_ms":18.07296816968575,"throughput_eps":0,"last_update":"2026-03-22T00:31:48.965658464Z"} +2026/03/22 00:31:53 [log_collector] {"stage_name":"log_collector","events_processed":37221,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7444.2,"last_update":"2026-03-22T00:31:48.869807727Z"} +2026/03/22 00:31:53 ───────────────────────────────────────────────── +2026/03/22 00:31:58 ── Pipeline Health ────────────────────────────── +2026/03/22 00:31:58 [log_collector] {"stage_name":"log_collector","events_processed":37232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7446.4,"last_update":"2026-03-22T00:31:53.870451569Z"} +2026/03/22 00:31:58 [metric_collector] {"stage_name":"metric_collector","events_processed":23164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4632.8,"last_update":"2026-03-22T00:31:53.870538817Z"} +2026/03/22 00:31:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:31:53.878674949Z"} +2026/03/22 00:31:58 [transform_engine] {"stage_name":"transform_engine","events_processed":772,"events_dropped":0,"avg_latency_ms":962.6598229713029,"throughput_eps":0,"last_update":"2026-03-22T00:31:53.965497896Z"} +2026/03/22 00:31:58 [detection_layer] {"stage_name":"detection_layer","events_processed":771,"events_dropped":0,"avg_latency_ms":17.2340487357486,"throughput_eps":0,"last_update":"2026-03-22T00:31:53.965477808Z"} +2026/03/22 00:31:58 ───────────────────────────────────────────────── +2026/03/22 00:32:03 ── Pipeline Health ────────────────────────────── +2026/03/22 00:32:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:31:58.878381682Z"} +2026/03/22 00:32:03 [transform_engine] {"stage_name":"transform_engine","events_processed":772,"events_dropped":0,"avg_latency_ms":962.6598229713029,"throughput_eps":0,"last_update":"2026-03-22T00:31:58.965520513Z"} +2026/03/22 00:32:03 [detection_layer] {"stage_name":"detection_layer","events_processed":771,"events_dropped":0,"avg_latency_ms":17.2340487357486,"throughput_eps":0,"last_update":"2026-03-22T00:31:58.965545401Z"} +2026/03/22 00:32:03 [log_collector] {"stage_name":"log_collector","events_processed":37248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7449.6,"last_update":"2026-03-22T00:31:58.869692179Z"} +2026/03/22 00:32:03 [metric_collector] {"stage_name":"metric_collector","events_processed":23169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4633.8,"last_update":"2026-03-22T00:31:58.869893425Z"} +2026/03/22 00:32:03 ───────────────────────────────────────────────── +2026/03/22 00:32:08 ── Pipeline Health ────────────────────────────── +2026/03/22 00:32:08 [log_collector] {"stage_name":"log_collector","events_processed":37248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7449.6,"last_update":"2026-03-22T00:32:03.869786747Z"} +2026/03/22 00:32:08 [metric_collector] {"stage_name":"metric_collector","events_processed":23174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4634.8,"last_update":"2026-03-22T00:32:03.870251588Z"} +2026/03/22 00:32:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:32:03.880000209Z"} +2026/03/22 00:32:08 [transform_engine] {"stage_name":"transform_engine","events_processed":772,"events_dropped":0,"avg_latency_ms":962.6598229713029,"throughput_eps":0,"last_update":"2026-03-22T00:32:03.965197281Z"} +2026/03/22 00:32:08 [detection_layer] {"stage_name":"detection_layer","events_processed":771,"events_dropped":0,"avg_latency_ms":17.2340487357486,"throughput_eps":0,"last_update":"2026-03-22T00:32:03.965333913Z"} +2026/03/22 00:32:08 ───────────────────────────────────────────────── +2026/03/22 00:32:13 ── Pipeline Health ────────────────────────────── +2026/03/22 00:32:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:32:08.878663659Z"} +2026/03/22 00:32:13 [transform_engine] {"stage_name":"transform_engine","events_processed":772,"events_dropped":0,"avg_latency_ms":962.6598229713029,"throughput_eps":0,"last_update":"2026-03-22T00:32:08.965849461Z"} +2026/03/22 00:32:13 [detection_layer] {"stage_name":"detection_layer","events_processed":771,"events_dropped":0,"avg_latency_ms":17.2340487357486,"throughput_eps":0,"last_update":"2026-03-22T00:32:08.965895429Z"} +2026/03/22 00:32:13 [log_collector] {"stage_name":"log_collector","events_processed":37248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7449.6,"last_update":"2026-03-22T00:32:08.869630669Z"} +2026/03/22 00:32:13 [metric_collector] {"stage_name":"metric_collector","events_processed":23179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4635.8,"last_update":"2026-03-22T00:32:08.869791436Z"} +2026/03/22 00:32:13 ───────────────────────────────────────────────── +2026/03/22 00:32:18 ── Pipeline Health ────────────────────────────── +2026/03/22 00:32:18 [log_collector] {"stage_name":"log_collector","events_processed":37248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7449.6,"last_update":"2026-03-22T00:32:13.869949744Z"} +2026/03/22 00:32:18 [metric_collector] {"stage_name":"metric_collector","events_processed":23184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4636.8,"last_update":"2026-03-22T00:32:13.870325244Z"} +2026/03/22 00:32:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9276,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:32:13.880019541Z"} +2026/03/22 00:32:18 [transform_engine] {"stage_name":"transform_engine","events_processed":772,"events_dropped":0,"avg_latency_ms":962.6598229713029,"throughput_eps":0,"last_update":"2026-03-22T00:32:13.965155346Z"} +2026/03/22 00:32:18 [detection_layer] {"stage_name":"detection_layer","events_processed":771,"events_dropped":0,"avg_latency_ms":17.2340487357486,"throughput_eps":0,"last_update":"2026-03-22T00:32:13.965299433Z"} +2026/03/22 00:32:18 ───────────────────────────────────────────────── +2026/03/22 00:32:23 ── Pipeline Health ────────────────────────────── +2026/03/22 00:32:23 [log_collector] {"stage_name":"log_collector","events_processed":37248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7449.6,"last_update":"2026-03-22T00:32:18.870162622Z"} +2026/03/22 00:32:23 [metric_collector] {"stage_name":"metric_collector","events_processed":23189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4637.8,"last_update":"2026-03-22T00:32:18.870670404Z"} +2026/03/22 00:32:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:32:18.878639467Z"} +2026/03/22 00:32:23 [transform_engine] {"stage_name":"transform_engine","events_processed":773,"events_dropped":0,"avg_latency_ms":794.0042213770423,"throughput_eps":0,"last_update":"2026-03-22T00:32:19.085241109Z"} +2026/03/22 00:32:23 [detection_layer] {"stage_name":"detection_layer","events_processed":771,"events_dropped":0,"avg_latency_ms":17.2340487357486,"throughput_eps":0,"last_update":"2026-03-22T00:32:18.965897106Z"} +2026/03/22 00:32:23 ───────────────────────────────────────────────── +2026/03/22 00:32:28 ── Pipeline Health ────────────────────────────── +2026/03/22 00:32:28 [log_collector] {"stage_name":"log_collector","events_processed":37248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7449.6,"last_update":"2026-03-22T00:32:23.870107297Z"} +2026/03/22 00:32:28 [metric_collector] {"stage_name":"metric_collector","events_processed":23194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4638.8,"last_update":"2026-03-22T00:32:23.87064649Z"} +2026/03/22 00:32:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:32:23.879427608Z"} +2026/03/22 00:32:28 [transform_engine] {"stage_name":"transform_engine","events_processed":773,"events_dropped":0,"avg_latency_ms":794.0042213770423,"throughput_eps":0,"last_update":"2026-03-22T00:32:23.9658044Z"} +2026/03/22 00:32:28 [detection_layer] {"stage_name":"detection_layer","events_processed":772,"events_dropped":0,"avg_latency_ms":18.23695338859888,"throughput_eps":0,"last_update":"2026-03-22T00:32:23.965776797Z"} +2026/03/22 00:32:28 ───────────────────────────────────────────────── +2026/03/22 00:32:33 ── Pipeline Health ────────────────────────────── +2026/03/22 00:32:33 [detection_layer] {"stage_name":"detection_layer","events_processed":772,"events_dropped":0,"avg_latency_ms":18.23695338859888,"throughput_eps":0,"last_update":"2026-03-22T00:32:28.965689396Z"} +2026/03/22 00:32:33 [log_collector] {"stage_name":"log_collector","events_processed":37248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7449.6,"last_update":"2026-03-22T00:32:28.869404226Z"} +2026/03/22 00:32:33 [metric_collector] {"stage_name":"metric_collector","events_processed":23199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4639.8,"last_update":"2026-03-22T00:32:28.869823929Z"} +2026/03/22 00:32:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:32:28.878236742Z"} +2026/03/22 00:32:33 [transform_engine] {"stage_name":"transform_engine","events_processed":773,"events_dropped":0,"avg_latency_ms":794.0042213770423,"throughput_eps":0,"last_update":"2026-03-22T00:32:28.965581719Z"} +2026/03/22 00:32:33 ───────────────────────────────────────────────── +2026/03/22 00:32:38 ── Pipeline Health ────────────────────────────── +2026/03/22 00:32:38 [log_collector] {"stage_name":"log_collector","events_processed":37248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7449.6,"last_update":"2026-03-22T00:32:33.870479033Z"} +2026/03/22 00:32:38 [metric_collector] {"stage_name":"metric_collector","events_processed":23204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4640.8,"last_update":"2026-03-22T00:32:33.870819075Z"} +2026/03/22 00:32:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:32:33.88078897Z"} +2026/03/22 00:32:38 [transform_engine] {"stage_name":"transform_engine","events_processed":773,"events_dropped":0,"avg_latency_ms":794.0042213770423,"throughput_eps":0,"last_update":"2026-03-22T00:32:33.96506506Z"} +2026/03/22 00:32:38 [detection_layer] {"stage_name":"detection_layer","events_processed":772,"events_dropped":0,"avg_latency_ms":18.23695338859888,"throughput_eps":0,"last_update":"2026-03-22T00:32:33.966291859Z"} +2026/03/22 00:32:38 ───────────────────────────────────────────────── +2026/03/22 00:32:43 ── Pipeline Health ────────────────────────────── +2026/03/22 00:32:43 [log_collector] {"stage_name":"log_collector","events_processed":37248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7449.6,"last_update":"2026-03-22T00:32:38.869997785Z"} +2026/03/22 00:32:43 [metric_collector] {"stage_name":"metric_collector","events_processed":23209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4641.8,"last_update":"2026-03-22T00:32:38.870335552Z"} +2026/03/22 00:32:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9286,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:32:38.879058769Z"} +2026/03/22 00:32:43 [transform_engine] {"stage_name":"transform_engine","events_processed":773,"events_dropped":0,"avg_latency_ms":794.0042213770423,"throughput_eps":0,"last_update":"2026-03-22T00:32:38.96546018Z"} +2026/03/22 00:32:43 [detection_layer] {"stage_name":"detection_layer","events_processed":772,"events_dropped":0,"avg_latency_ms":18.23695338859888,"throughput_eps":0,"last_update":"2026-03-22T00:32:38.96541371Z"} +2026/03/22 00:32:43 ───────────────────────────────────────────────── +2026/03/22 00:32:48 ── Pipeline Health ────────────────────────────── +2026/03/22 00:32:48 [log_collector] {"stage_name":"log_collector","events_processed":37248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7449.6,"last_update":"2026-03-22T00:32:43.869407752Z"} +2026/03/22 00:32:48 [metric_collector] {"stage_name":"metric_collector","events_processed":23214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4642.8,"last_update":"2026-03-22T00:32:43.870006489Z"} +2026/03/22 00:32:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:32:43.878212275Z"} +2026/03/22 00:32:48 [transform_engine] {"stage_name":"transform_engine","events_processed":773,"events_dropped":0,"avg_latency_ms":794.0042213770423,"throughput_eps":0,"last_update":"2026-03-22T00:32:43.965476198Z"} +2026/03/22 00:32:48 [detection_layer] {"stage_name":"detection_layer","events_processed":772,"events_dropped":0,"avg_latency_ms":18.23695338859888,"throughput_eps":0,"last_update":"2026-03-22T00:32:43.965426302Z"} +2026/03/22 00:32:48 ───────────────────────────────────────────────── +2026/03/22 00:32:53 ── Pipeline Health ────────────────────────────── +2026/03/22 00:32:53 [detection_layer] {"stage_name":"detection_layer","events_processed":772,"events_dropped":0,"avg_latency_ms":18.23695338859888,"throughput_eps":0,"last_update":"2026-03-22T00:32:48.965582241Z"} +2026/03/22 00:32:53 [log_collector] {"stage_name":"log_collector","events_processed":37248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7449.6,"last_update":"2026-03-22T00:32:48.870148961Z"} +2026/03/22 00:32:53 [metric_collector] {"stage_name":"metric_collector","events_processed":23218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4643.6,"last_update":"2026-03-22T00:32:48.870193767Z"} +2026/03/22 00:32:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:32:48.879208322Z"} +2026/03/22 00:32:53 [transform_engine] {"stage_name":"transform_engine","events_processed":774,"events_dropped":0,"avg_latency_ms":652.1062221016339,"throughput_eps":0,"last_update":"2026-03-22T00:32:49.050127916Z"} +2026/03/22 00:32:53 ───────────────────────────────────────────────── +2026/03/22 00:32:58 ── Pipeline Health ────────────────────────────── +2026/03/22 00:32:58 [log_collector] {"stage_name":"log_collector","events_processed":37248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7449.6,"last_update":"2026-03-22T00:32:53.86947873Z"} +2026/03/22 00:32:58 [metric_collector] {"stage_name":"metric_collector","events_processed":23223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4644.6,"last_update":"2026-03-22T00:32:53.869557341Z"} +2026/03/22 00:32:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:32:53.878475651Z"} +2026/03/22 00:32:58 [transform_engine] {"stage_name":"transform_engine","events_processed":774,"events_dropped":0,"avg_latency_ms":652.1062221016339,"throughput_eps":0,"last_update":"2026-03-22T00:32:53.965681393Z"} +2026/03/22 00:32:58 [detection_layer] {"stage_name":"detection_layer","events_processed":773,"events_dropped":0,"avg_latency_ms":19.198670310879105,"throughput_eps":0,"last_update":"2026-03-22T00:32:53.965767468Z"} +2026/03/22 00:32:58 ───────────────────────────────────────────────── +2026/03/22 00:33:03 ── Pipeline Health ────────────────────────────── +2026/03/22 00:33:03 [log_collector] {"stage_name":"log_collector","events_processed":37248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7449.6,"last_update":"2026-03-22T00:32:58.870310119Z"} +2026/03/22 00:33:03 [metric_collector] {"stage_name":"metric_collector","events_processed":23229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4645.8,"last_update":"2026-03-22T00:32:58.870725835Z"} +2026/03/22 00:33:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:32:58.880016599Z"} +2026/03/22 00:33:03 [transform_engine] {"stage_name":"transform_engine","events_processed":774,"events_dropped":0,"avg_latency_ms":652.1062221016339,"throughput_eps":0,"last_update":"2026-03-22T00:32:58.965217901Z"} +2026/03/22 00:33:03 [detection_layer] {"stage_name":"detection_layer","events_processed":773,"events_dropped":0,"avg_latency_ms":19.198670310879105,"throughput_eps":0,"last_update":"2026-03-22T00:32:58.965392996Z"} +2026/03/22 00:33:03 ───────────────────────────────────────────────── +2026/03/22 00:33:08 ── Pipeline Health ────────────────────────────── +2026/03/22 00:33:08 [transform_engine] {"stage_name":"transform_engine","events_processed":774,"events_dropped":0,"avg_latency_ms":652.1062221016339,"throughput_eps":0,"last_update":"2026-03-22T00:33:03.965825927Z"} +2026/03/22 00:33:08 [detection_layer] {"stage_name":"detection_layer","events_processed":773,"events_dropped":0,"avg_latency_ms":19.198670310879105,"throughput_eps":0,"last_update":"2026-03-22T00:33:03.965857126Z"} +2026/03/22 00:33:08 [log_collector] {"stage_name":"log_collector","events_processed":37248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7449.6,"last_update":"2026-03-22T00:33:03.869611321Z"} +2026/03/22 00:33:08 [metric_collector] {"stage_name":"metric_collector","events_processed":23234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4646.8,"last_update":"2026-03-22T00:33:03.869905224Z"} +2026/03/22 00:33:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:33:03.878651996Z"} +2026/03/22 00:33:08 ───────────────────────────────────────────────── +Saved state: 29 clusters, 37249 messages, reason: none +2026/03/22 00:33:13 ── Pipeline Health ────────────────────────────── +2026/03/22 00:33:13 [log_collector] {"stage_name":"log_collector","events_processed":37248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7449.6,"last_update":"2026-03-22T00:33:08.869691577Z"} +2026/03/22 00:33:13 [metric_collector] {"stage_name":"metric_collector","events_processed":23238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4647.6,"last_update":"2026-03-22T00:33:08.869417643Z"} +2026/03/22 00:33:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:33:08.878613756Z"} +2026/03/22 00:33:13 [transform_engine] {"stage_name":"transform_engine","events_processed":774,"events_dropped":0,"avg_latency_ms":652.1062221016339,"throughput_eps":0,"last_update":"2026-03-22T00:33:08.965848694Z"} +2026/03/22 00:33:13 [detection_layer] {"stage_name":"detection_layer","events_processed":773,"events_dropped":0,"avg_latency_ms":19.198670310879105,"throughput_eps":0,"last_update":"2026-03-22T00:33:08.966039198Z"} +2026/03/22 00:33:13 ───────────────────────────────────────────────── +2026/03/22 00:33:18 ── Pipeline Health ────────────────────────────── +2026/03/22 00:33:18 [transform_engine] {"stage_name":"transform_engine","events_processed":774,"events_dropped":0,"avg_latency_ms":652.1062221016339,"throughput_eps":0,"last_update":"2026-03-22T00:33:13.965546001Z"} +2026/03/22 00:33:18 [detection_layer] {"stage_name":"detection_layer","events_processed":773,"events_dropped":0,"avg_latency_ms":19.198670310879105,"throughput_eps":0,"last_update":"2026-03-22T00:33:13.965445539Z"} +2026/03/22 00:33:18 [log_collector] {"stage_name":"log_collector","events_processed":37261,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7452.2,"last_update":"2026-03-22T00:33:13.869684833Z"} +2026/03/22 00:33:18 [metric_collector] {"stage_name":"metric_collector","events_processed":23244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4648.8,"last_update":"2026-03-22T00:33:13.869841904Z"} +2026/03/22 00:33:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:33:13.876220951Z"} +2026/03/22 00:33:18 ───────────────────────────────────────────────── +2026/03/22 00:33:23 ── Pipeline Health ────────────────────────────── +2026/03/22 00:33:23 [transform_engine] {"stage_name":"transform_engine","events_processed":775,"events_dropped":0,"avg_latency_ms":543.0045620813072,"throughput_eps":0,"last_update":"2026-03-22T00:33:19.072516427Z"} +2026/03/22 00:33:23 [detection_layer] {"stage_name":"detection_layer","events_processed":773,"events_dropped":0,"avg_latency_ms":19.198670310879105,"throughput_eps":0,"last_update":"2026-03-22T00:33:18.965872307Z"} +2026/03/22 00:33:23 [log_collector] {"stage_name":"log_collector","events_processed":37262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7452.4,"last_update":"2026-03-22T00:33:18.869914834Z"} +2026/03/22 00:33:23 [metric_collector] {"stage_name":"metric_collector","events_processed":23249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4649.8,"last_update":"2026-03-22T00:33:18.87028368Z"} +2026/03/22 00:33:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:33:18.876661796Z"} +2026/03/22 00:33:23 ───────────────────────────────────────────────── +2026/03/22 00:33:28 ── Pipeline Health ────────────────────────────── +2026/03/22 00:33:28 [log_collector] {"stage_name":"log_collector","events_processed":37262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7452.4,"last_update":"2026-03-22T00:33:23.869413707Z"} +2026/03/22 00:33:28 [metric_collector] {"stage_name":"metric_collector","events_processed":23254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4650.8,"last_update":"2026-03-22T00:33:23.869898014Z"} +2026/03/22 00:33:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:33:23.879022681Z"} +2026/03/22 00:33:28 [transform_engine] {"stage_name":"transform_engine","events_processed":775,"events_dropped":0,"avg_latency_ms":543.0045620813072,"throughput_eps":0,"last_update":"2026-03-22T00:33:23.965191616Z"} +2026/03/22 00:33:28 [detection_layer] {"stage_name":"detection_layer","events_processed":774,"events_dropped":0,"avg_latency_ms":18.558253848703284,"throughput_eps":0,"last_update":"2026-03-22T00:33:23.966387357Z"} +2026/03/22 00:33:28 ───────────────────────────────────────────────── +2026/03/22 00:33:33 ── Pipeline Health ────────────────────────────── +2026/03/22 00:33:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:33:28.88005789Z"} +2026/03/22 00:33:33 [transform_engine] {"stage_name":"transform_engine","events_processed":775,"events_dropped":0,"avg_latency_ms":543.0045620813072,"throughput_eps":0,"last_update":"2026-03-22T00:33:28.96512256Z"} +2026/03/22 00:33:33 [detection_layer] {"stage_name":"detection_layer","events_processed":774,"events_dropped":0,"avg_latency_ms":18.558253848703284,"throughput_eps":0,"last_update":"2026-03-22T00:33:28.965268319Z"} +2026/03/22 00:33:33 [log_collector] {"stage_name":"log_collector","events_processed":37262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7452.4,"last_update":"2026-03-22T00:33:33.869413644Z"} +2026/03/22 00:33:33 [metric_collector] {"stage_name":"metric_collector","events_processed":23259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4651.8,"last_update":"2026-03-22T00:33:28.870363793Z"} +2026/03/22 00:33:33 ───────────────────────────────────────────────── +2026/03/22 00:33:38 ── Pipeline Health ────────────────────────────── +2026/03/22 00:33:38 [transform_engine] {"stage_name":"transform_engine","events_processed":775,"events_dropped":0,"avg_latency_ms":543.0045620813072,"throughput_eps":0,"last_update":"2026-03-22T00:33:33.965163068Z"} +2026/03/22 00:33:38 [detection_layer] {"stage_name":"detection_layer","events_processed":774,"events_dropped":0,"avg_latency_ms":18.558253848703284,"throughput_eps":0,"last_update":"2026-03-22T00:33:33.965309319Z"} +2026/03/22 00:33:38 [log_collector] {"stage_name":"log_collector","events_processed":37262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7452.4,"last_update":"2026-03-22T00:33:33.869413644Z"} +2026/03/22 00:33:38 [metric_collector] {"stage_name":"metric_collector","events_processed":23264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4652.8,"last_update":"2026-03-22T00:33:33.870226471Z"} +2026/03/22 00:33:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:33:33.878043362Z"} +2026/03/22 00:33:38 ───────────────────────────────────────────────── +2026/03/22 00:33:43 ── Pipeline Health ────────────────────────────── +2026/03/22 00:33:43 [log_collector] {"stage_name":"log_collector","events_processed":37262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7452.4,"last_update":"2026-03-22T00:33:38.869578232Z"} +2026/03/22 00:33:43 [metric_collector] {"stage_name":"metric_collector","events_processed":23269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4653.8,"last_update":"2026-03-22T00:33:38.869787002Z"} +2026/03/22 00:33:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:33:38.878527592Z"} +2026/03/22 00:33:43 [transform_engine] {"stage_name":"transform_engine","events_processed":775,"events_dropped":0,"avg_latency_ms":543.0045620813072,"throughput_eps":0,"last_update":"2026-03-22T00:33:38.96575749Z"} +2026/03/22 00:33:43 [detection_layer] {"stage_name":"detection_layer","events_processed":774,"events_dropped":0,"avg_latency_ms":18.558253848703284,"throughput_eps":0,"last_update":"2026-03-22T00:33:38.965729497Z"} +2026/03/22 00:33:43 ───────────────────────────────────────────────── +2026/03/22 00:33:48 ── Pipeline Health ────────────────────────────── +2026/03/22 00:33:48 [detection_layer] {"stage_name":"detection_layer","events_processed":774,"events_dropped":0,"avg_latency_ms":18.558253848703284,"throughput_eps":0,"last_update":"2026-03-22T00:33:43.9658637Z"} +2026/03/22 00:33:48 [log_collector] {"stage_name":"log_collector","events_processed":37262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7452.4,"last_update":"2026-03-22T00:33:43.870323767Z"} +2026/03/22 00:33:48 [metric_collector] {"stage_name":"metric_collector","events_processed":23274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4654.8,"last_update":"2026-03-22T00:33:43.870754592Z"} +2026/03/22 00:33:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:33:43.87938939Z"} +2026/03/22 00:33:48 [transform_engine] {"stage_name":"transform_engine","events_processed":775,"events_dropped":0,"avg_latency_ms":543.0045620813072,"throughput_eps":0,"last_update":"2026-03-22T00:33:43.965837079Z"} +2026/03/22 00:33:48 ───────────────────────────────────────────────── +2026/03/22 00:33:53 ── Pipeline Health ────────────────────────────── +2026/03/22 00:33:53 [log_collector] {"stage_name":"log_collector","events_processed":37262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7452.4,"last_update":"2026-03-22T00:33:53.869855471Z"} +2026/03/22 00:33:53 [metric_collector] {"stage_name":"metric_collector","events_processed":23279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4655.8,"last_update":"2026-03-22T00:33:48.870052767Z"} +2026/03/22 00:33:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:33:48.879828771Z"} +2026/03/22 00:33:53 [transform_engine] {"stage_name":"transform_engine","events_processed":776,"events_dropped":0,"avg_latency_ms":451.7950206650458,"throughput_eps":0,"last_update":"2026-03-22T00:33:49.053127251Z"} +2026/03/22 00:33:53 [detection_layer] {"stage_name":"detection_layer","events_processed":774,"events_dropped":0,"avg_latency_ms":18.558253848703284,"throughput_eps":0,"last_update":"2026-03-22T00:33:48.966159676Z"} +2026/03/22 00:33:53 ───────────────────────────────────────────────── +2026/03/22 00:33:58 ── Pipeline Health ────────────────────────────── +2026/03/22 00:33:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:33:53.87974918Z"} +2026/03/22 00:33:58 [transform_engine] {"stage_name":"transform_engine","events_processed":776,"events_dropped":0,"avg_latency_ms":451.7950206650458,"throughput_eps":0,"last_update":"2026-03-22T00:33:53.966063063Z"} +2026/03/22 00:33:58 [detection_layer] {"stage_name":"detection_layer","events_processed":775,"events_dropped":0,"avg_latency_ms":19.37100247896263,"throughput_eps":0,"last_update":"2026-03-22T00:33:53.96610304Z"} +2026/03/22 00:33:58 [log_collector] {"stage_name":"log_collector","events_processed":37262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7452.4,"last_update":"2026-03-22T00:33:58.869514664Z"} +2026/03/22 00:33:58 [metric_collector] {"stage_name":"metric_collector","events_processed":23284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4656.8,"last_update":"2026-03-22T00:33:53.870443979Z"} +2026/03/22 00:33:58 ───────────────────────────────────────────────── +2026/03/22 00:34:03 ── Pipeline Health ────────────────────────────── +2026/03/22 00:34:03 [log_collector] {"stage_name":"log_collector","events_processed":37262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7452.4,"last_update":"2026-03-22T00:34:03.869404162Z"} +2026/03/22 00:34:03 [metric_collector] {"stage_name":"metric_collector","events_processed":23289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4657.8,"last_update":"2026-03-22T00:33:58.870156753Z"} +2026/03/22 00:34:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:33:58.878923865Z"} +2026/03/22 00:34:03 [transform_engine] {"stage_name":"transform_engine","events_processed":776,"events_dropped":0,"avg_latency_ms":451.7950206650458,"throughput_eps":0,"last_update":"2026-03-22T00:33:58.965185609Z"} +2026/03/22 00:34:03 [detection_layer] {"stage_name":"detection_layer","events_processed":775,"events_dropped":0,"avg_latency_ms":19.37100247896263,"throughput_eps":0,"last_update":"2026-03-22T00:33:58.966378062Z"} +2026/03/22 00:34:03 ───────────────────────────────────────────────── +2026/03/22 00:34:08 ── Pipeline Health ────────────────────────────── +2026/03/22 00:34:08 [metric_collector] {"stage_name":"metric_collector","events_processed":23294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4658.8,"last_update":"2026-03-22T00:34:03.869864613Z"} +2026/03/22 00:34:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9320,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:34:03.87827401Z"} +2026/03/22 00:34:08 [transform_engine] {"stage_name":"transform_engine","events_processed":776,"events_dropped":0,"avg_latency_ms":451.7950206650458,"throughput_eps":0,"last_update":"2026-03-22T00:34:03.965570955Z"} +2026/03/22 00:34:08 [detection_layer] {"stage_name":"detection_layer","events_processed":775,"events_dropped":0,"avg_latency_ms":19.37100247896263,"throughput_eps":0,"last_update":"2026-03-22T00:34:03.965465774Z"} +2026/03/22 00:34:08 [log_collector] {"stage_name":"log_collector","events_processed":37262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7452.4,"last_update":"2026-03-22T00:34:03.869404162Z"} +2026/03/22 00:34:08 ───────────────────────────────────────────────── +2026/03/22 00:34:13 ── Pipeline Health ────────────────────────────── +2026/03/22 00:34:13 [log_collector] {"stage_name":"log_collector","events_processed":37262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7452.4,"last_update":"2026-03-22T00:34:08.869644453Z"} +2026/03/22 00:34:13 [metric_collector] {"stage_name":"metric_collector","events_processed":23299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4659.8,"last_update":"2026-03-22T00:34:08.869860757Z"} +2026/03/22 00:34:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:34:08.878635984Z"} +2026/03/22 00:34:13 [transform_engine] {"stage_name":"transform_engine","events_processed":776,"events_dropped":0,"avg_latency_ms":451.7950206650458,"throughput_eps":0,"last_update":"2026-03-22T00:34:08.965989829Z"} +2026/03/22 00:34:13 [detection_layer] {"stage_name":"detection_layer","events_processed":775,"events_dropped":0,"avg_latency_ms":19.37100247896263,"throughput_eps":0,"last_update":"2026-03-22T00:34:08.965967737Z"} +2026/03/22 00:34:13 ───────────────────────────────────────────────── +2026/03/22 00:34:18 ── Pipeline Health ────────────────────────────── +2026/03/22 00:34:18 [detection_layer] {"stage_name":"detection_layer","events_processed":775,"events_dropped":0,"avg_latency_ms":19.37100247896263,"throughput_eps":0,"last_update":"2026-03-22T00:34:13.965905462Z"} +2026/03/22 00:34:18 [log_collector] {"stage_name":"log_collector","events_processed":37262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7452.4,"last_update":"2026-03-22T00:34:18.870133301Z"} +2026/03/22 00:34:18 [metric_collector] {"stage_name":"metric_collector","events_processed":23304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4660.8,"last_update":"2026-03-22T00:34:13.869846704Z"} +2026/03/22 00:34:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:34:13.877400472Z"} +2026/03/22 00:34:18 [transform_engine] {"stage_name":"transform_engine","events_processed":776,"events_dropped":0,"avg_latency_ms":451.7950206650458,"throughput_eps":0,"last_update":"2026-03-22T00:34:13.96576362Z"} +2026/03/22 00:34:18 ───────────────────────────────────────────────── +Saved state: 29 clusters, 37263 messages, reason: none +2026/03/22 00:34:23 ── Pipeline Health ────────────────────────────── +2026/03/22 00:34:23 [log_collector] {"stage_name":"log_collector","events_processed":37267,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7453.4,"last_update":"2026-03-22T00:34:23.869418782Z"} +2026/03/22 00:34:23 [metric_collector] {"stage_name":"metric_collector","events_processed":23309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4661.8,"last_update":"2026-03-22T00:34:18.870462952Z"} +2026/03/22 00:34:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:34:18.878896084Z"} +2026/03/22 00:34:23 [transform_engine] {"stage_name":"transform_engine","events_processed":777,"events_dropped":0,"avg_latency_ms":376.30203673203664,"throughput_eps":0,"last_update":"2026-03-22T00:34:19.039523558Z"} +2026/03/22 00:34:23 [detection_layer] {"stage_name":"detection_layer","events_processed":775,"events_dropped":0,"avg_latency_ms":19.37100247896263,"throughput_eps":0,"last_update":"2026-03-22T00:34:18.965507727Z"} +2026/03/22 00:34:23 ───────────────────────────────────────────────── +2026/03/22 00:34:28 ── Pipeline Health ────────────────────────────── +2026/03/22 00:34:28 [log_collector] {"stage_name":"log_collector","events_processed":37267,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7453.4,"last_update":"2026-03-22T00:34:28.869435077Z"} +2026/03/22 00:34:28 [metric_collector] {"stage_name":"metric_collector","events_processed":23314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4662.8,"last_update":"2026-03-22T00:34:23.86966327Z"} +2026/03/22 00:34:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:34:23.875697838Z"} +2026/03/22 00:34:28 [transform_engine] {"stage_name":"transform_engine","events_processed":777,"events_dropped":0,"avg_latency_ms":376.30203673203664,"throughput_eps":0,"last_update":"2026-03-22T00:34:23.965862537Z"} +2026/03/22 00:34:28 [detection_layer] {"stage_name":"detection_layer","events_processed":776,"events_dropped":0,"avg_latency_ms":19.717774383170106,"throughput_eps":0,"last_update":"2026-03-22T00:34:23.966362565Z"} +2026/03/22 00:34:28 ───────────────────────────────────────────────── +2026/03/22 00:34:33 ── Pipeline Health ────────────────────────────── +2026/03/22 00:34:33 [transform_engine] {"stage_name":"transform_engine","events_processed":777,"events_dropped":0,"avg_latency_ms":376.30203673203664,"throughput_eps":0,"last_update":"2026-03-22T00:34:28.965060786Z"} +2026/03/22 00:34:33 [detection_layer] {"stage_name":"detection_layer","events_processed":776,"events_dropped":0,"avg_latency_ms":19.717774383170106,"throughput_eps":0,"last_update":"2026-03-22T00:34:28.966154119Z"} +2026/03/22 00:34:33 [log_collector] {"stage_name":"log_collector","events_processed":37267,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7453.4,"last_update":"2026-03-22T00:34:33.869938076Z"} +2026/03/22 00:34:33 [metric_collector] {"stage_name":"metric_collector","events_processed":23319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4663.8,"last_update":"2026-03-22T00:34:28.869631142Z"} +2026/03/22 00:34:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9330,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:34:28.875937851Z"} +2026/03/22 00:34:33 ───────────────────────────────────────────────── +2026/03/22 00:34:38 ── Pipeline Health ────────────────────────────── +2026/03/22 00:34:38 [detection_layer] {"stage_name":"detection_layer","events_processed":776,"events_dropped":0,"avg_latency_ms":19.717774383170106,"throughput_eps":0,"last_update":"2026-03-22T00:34:33.965999078Z"} +2026/03/22 00:34:38 [log_collector] {"stage_name":"log_collector","events_processed":37267,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7453.4,"last_update":"2026-03-22T00:34:33.869938076Z"} +2026/03/22 00:34:38 [metric_collector] {"stage_name":"metric_collector","events_processed":23324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4664.8,"last_update":"2026-03-22T00:34:33.870003161Z"} +2026/03/22 00:34:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:34:33.875805735Z"} +2026/03/22 00:34:38 [transform_engine] {"stage_name":"transform_engine","events_processed":777,"events_dropped":0,"avg_latency_ms":376.30203673203664,"throughput_eps":0,"last_update":"2026-03-22T00:34:33.966020408Z"} +2026/03/22 00:34:38 ───────────────────────────────────────────────── +2026/03/22 00:34:43 ── Pipeline Health ────────────────────────────── +2026/03/22 00:34:43 [log_collector] {"stage_name":"log_collector","events_processed":37267,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7453.4,"last_update":"2026-03-22T00:34:38.869538359Z"} +2026/03/22 00:34:43 [metric_collector] {"stage_name":"metric_collector","events_processed":23329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4665.8,"last_update":"2026-03-22T00:34:38.869675342Z"} +2026/03/22 00:34:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:34:38.876505994Z"} +2026/03/22 00:34:43 [transform_engine] {"stage_name":"transform_engine","events_processed":777,"events_dropped":0,"avg_latency_ms":376.30203673203664,"throughput_eps":0,"last_update":"2026-03-22T00:34:38.965842046Z"} +2026/03/22 00:34:43 [detection_layer] {"stage_name":"detection_layer","events_processed":776,"events_dropped":0,"avg_latency_ms":19.717774383170106,"throughput_eps":0,"last_update":"2026-03-22T00:34:38.965977645Z"} +2026/03/22 00:34:43 ───────────────────────────────────────────────── +2026/03/22 00:34:48 ── Pipeline Health ────────────────────────────── +2026/03/22 00:34:48 [log_collector] {"stage_name":"log_collector","events_processed":37267,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7453.4,"last_update":"2026-03-22T00:34:43.869495449Z"} +2026/03/22 00:34:48 [metric_collector] {"stage_name":"metric_collector","events_processed":23334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4666.8,"last_update":"2026-03-22T00:34:43.869910344Z"} +2026/03/22 00:34:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:34:43.877908302Z"} +2026/03/22 00:34:48 [transform_engine] {"stage_name":"transform_engine","events_processed":777,"events_dropped":0,"avg_latency_ms":376.30203673203664,"throughput_eps":0,"last_update":"2026-03-22T00:34:43.966330434Z"} +2026/03/22 00:34:48 [detection_layer] {"stage_name":"detection_layer","events_processed":776,"events_dropped":0,"avg_latency_ms":19.717774383170106,"throughput_eps":0,"last_update":"2026-03-22T00:34:43.966305015Z"} +2026/03/22 00:34:48 ───────────────────────────────────────────────── +2026/03/22 00:34:53 ── Pipeline Health ────────────────────────────── +2026/03/22 00:34:53 [log_collector] {"stage_name":"log_collector","events_processed":37267,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7453.4,"last_update":"2026-03-22T00:34:48.869684427Z"} +2026/03/22 00:34:53 [metric_collector] {"stage_name":"metric_collector","events_processed":23339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4667.8,"last_update":"2026-03-22T00:34:48.869784038Z"} +2026/03/22 00:34:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:34:48.881868654Z"} +2026/03/22 00:34:53 [transform_engine] {"stage_name":"transform_engine","events_processed":778,"events_dropped":0,"avg_latency_ms":434.67608438562934,"throughput_eps":0,"last_update":"2026-03-22T00:34:49.634237287Z"} +2026/03/22 00:34:53 [detection_layer] {"stage_name":"detection_layer","events_processed":776,"events_dropped":0,"avg_latency_ms":19.717774383170106,"throughput_eps":0,"last_update":"2026-03-22T00:34:48.966052227Z"} +2026/03/22 00:34:53 ───────────────────────────────────────────────── +2026/03/22 00:34:58 ── Pipeline Health ────────────────────────────── +2026/03/22 00:34:58 [log_collector] {"stage_name":"log_collector","events_processed":37267,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7453.4,"last_update":"2026-03-22T00:34:53.869484781Z"} +2026/03/22 00:34:58 [metric_collector] {"stage_name":"metric_collector","events_processed":23344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4668.8,"last_update":"2026-03-22T00:34:53.869632844Z"} +2026/03/22 00:34:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:34:53.876733434Z"} +2026/03/22 00:34:58 [transform_engine] {"stage_name":"transform_engine","events_processed":778,"events_dropped":0,"avg_latency_ms":434.67608438562934,"throughput_eps":0,"last_update":"2026-03-22T00:34:53.966013519Z"} +2026/03/22 00:34:58 [detection_layer] {"stage_name":"detection_layer","events_processed":777,"events_dropped":0,"avg_latency_ms":18.540966506536083,"throughput_eps":0,"last_update":"2026-03-22T00:34:53.965975165Z"} +2026/03/22 00:34:58 ───────────────────────────────────────────────── +2026/03/22 00:35:03 ── Pipeline Health ────────────────────────────── +2026/03/22 00:35:03 [log_collector] {"stage_name":"log_collector","events_processed":37270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7454,"last_update":"2026-03-22T00:35:03.869440205Z"} +2026/03/22 00:35:03 [metric_collector] {"stage_name":"metric_collector","events_processed":23349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4669.8,"last_update":"2026-03-22T00:34:58.870061505Z"} +2026/03/22 00:35:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9342,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:34:58.878306376Z"} +2026/03/22 00:35:03 [transform_engine] {"stage_name":"transform_engine","events_processed":778,"events_dropped":0,"avg_latency_ms":434.67608438562934,"throughput_eps":0,"last_update":"2026-03-22T00:34:58.965492581Z"} +2026/03/22 00:35:03 [detection_layer] {"stage_name":"detection_layer","events_processed":777,"events_dropped":0,"avg_latency_ms":18.540966506536083,"throughput_eps":0,"last_update":"2026-03-22T00:34:58.96551817Z"} +2026/03/22 00:35:03 ───────────────────────────────────────────────── +2026/03/22 00:35:08 ── Pipeline Health ────────────────────────────── +2026/03/22 00:35:08 [log_collector] {"stage_name":"log_collector","events_processed":37270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7454,"last_update":"2026-03-22T00:35:03.869440205Z"} +2026/03/22 00:35:08 [metric_collector] {"stage_name":"metric_collector","events_processed":23354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4670.8,"last_update":"2026-03-22T00:35:03.869780528Z"} +2026/03/22 00:35:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:35:03.875784767Z"} +2026/03/22 00:35:08 [transform_engine] {"stage_name":"transform_engine","events_processed":778,"events_dropped":0,"avg_latency_ms":434.67608438562934,"throughput_eps":0,"last_update":"2026-03-22T00:35:03.96608702Z"} +2026/03/22 00:35:08 [detection_layer] {"stage_name":"detection_layer","events_processed":777,"events_dropped":0,"avg_latency_ms":18.540966506536083,"throughput_eps":0,"last_update":"2026-03-22T00:35:03.966116446Z"} +2026/03/22 00:35:08 ───────────────────────────────────────────────── +2026/03/22 00:35:13 ── Pipeline Health ────────────────────────────── +2026/03/22 00:35:13 [transform_engine] {"stage_name":"transform_engine","events_processed":778,"events_dropped":0,"avg_latency_ms":434.67608438562934,"throughput_eps":0,"last_update":"2026-03-22T00:35:08.965846756Z"} +2026/03/22 00:35:13 [detection_layer] {"stage_name":"detection_layer","events_processed":777,"events_dropped":0,"avg_latency_ms":18.540966506536083,"throughput_eps":0,"last_update":"2026-03-22T00:35:08.965890749Z"} +2026/03/22 00:35:13 [log_collector] {"stage_name":"log_collector","events_processed":37504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7500.8,"last_update":"2026-03-22T00:35:13.869540361Z"} +2026/03/22 00:35:13 [metric_collector] {"stage_name":"metric_collector","events_processed":23359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4671.8,"last_update":"2026-03-22T00:35:08.870322541Z"} +2026/03/22 00:35:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:35:08.879627782Z"} +2026/03/22 00:35:13 ───────────────────────────────────────────────── +2026/03/22 00:35:18 ── Pipeline Health ────────────────────────────── +2026/03/22 00:35:18 [metric_collector] {"stage_name":"metric_collector","events_processed":23369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4673.8,"last_update":"2026-03-22T00:35:18.869682906Z"} +2026/03/22 00:35:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:35:13.882929365Z"} +2026/03/22 00:35:18 [transform_engine] {"stage_name":"transform_engine","events_processed":778,"events_dropped":0,"avg_latency_ms":434.67608438562934,"throughput_eps":0,"last_update":"2026-03-22T00:35:13.965545056Z"} +2026/03/22 00:35:18 [detection_layer] {"stage_name":"detection_layer","events_processed":777,"events_dropped":0,"avg_latency_ms":18.540966506536083,"throughput_eps":0,"last_update":"2026-03-22T00:35:13.965564844Z"} +2026/03/22 00:35:18 [log_collector] {"stage_name":"log_collector","events_processed":37627,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7525.4,"last_update":"2026-03-22T00:35:18.869793037Z"} +2026/03/22 00:35:18 ───────────────────────────────────────────────── +2026/03/22 00:35:23 ── Pipeline Health ────────────────────────────── +2026/03/22 00:35:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9350,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:35:18.878825517Z"} +2026/03/22 00:35:23 [transform_engine] {"stage_name":"transform_engine","events_processed":779,"events_dropped":0,"avg_latency_ms":371.41618390850346,"throughput_eps":0,"last_update":"2026-03-22T00:35:19.084445364Z"} +2026/03/22 00:35:23 [detection_layer] {"stage_name":"detection_layer","events_processed":777,"events_dropped":0,"avg_latency_ms":18.540966506536083,"throughput_eps":0,"last_update":"2026-03-22T00:35:18.966028023Z"} +2026/03/22 00:35:23 [log_collector] {"stage_name":"log_collector","events_processed":37633,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7526.6,"last_update":"2026-03-22T00:35:23.869402671Z"} +2026/03/22 00:35:23 [metric_collector] {"stage_name":"metric_collector","events_processed":23369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4673.8,"last_update":"2026-03-22T00:35:18.869682906Z"} +2026/03/22 00:35:23 ───────────────────────────────────────────────── +2026/03/22 00:35:28 ── Pipeline Health ────────────────────────────── +2026/03/22 00:35:28 [log_collector] {"stage_name":"log_collector","events_processed":37633,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7526.6,"last_update":"2026-03-22T00:35:28.869473593Z"} +2026/03/22 00:35:28 [metric_collector] {"stage_name":"metric_collector","events_processed":23374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4674.8,"last_update":"2026-03-22T00:35:23.869837615Z"} +2026/03/22 00:35:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:35:23.878448147Z"} +2026/03/22 00:35:28 [transform_engine] {"stage_name":"transform_engine","events_processed":779,"events_dropped":0,"avg_latency_ms":371.41618390850346,"throughput_eps":0,"last_update":"2026-03-22T00:35:23.965817993Z"} +2026/03/22 00:35:28 [detection_layer] {"stage_name":"detection_layer","events_processed":778,"events_dropped":0,"avg_latency_ms":18.45162440522887,"throughput_eps":0,"last_update":"2026-03-22T00:35:23.965719064Z"} +2026/03/22 00:35:28 ───────────────────────────────────────────────── +Saved state: 29 clusters, 37634 messages, reason: none +2026/03/22 00:35:33 ── Pipeline Health ────────────────────────────── +2026/03/22 00:35:33 [log_collector] {"stage_name":"log_collector","events_processed":37633,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7526.6,"last_update":"2026-03-22T00:35:28.869473593Z"} +2026/03/22 00:35:33 [metric_collector] {"stage_name":"metric_collector","events_processed":23379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4675.8,"last_update":"2026-03-22T00:35:28.870309684Z"} +2026/03/22 00:35:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:35:28.878269078Z"} +2026/03/22 00:35:33 [transform_engine] {"stage_name":"transform_engine","events_processed":779,"events_dropped":0,"avg_latency_ms":371.41618390850346,"throughput_eps":0,"last_update":"2026-03-22T00:35:28.965227677Z"} +2026/03/22 00:35:33 [detection_layer] {"stage_name":"detection_layer","events_processed":778,"events_dropped":0,"avg_latency_ms":18.45162440522887,"throughput_eps":0,"last_update":"2026-03-22T00:35:28.965270088Z"} +2026/03/22 00:35:33 ───────────────────────────────────────────────── +2026/03/22 00:35:38 ── Pipeline Health ────────────────────────────── +2026/03/22 00:35:38 [log_collector] {"stage_name":"log_collector","events_processed":37636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7527.2,"last_update":"2026-03-22T00:35:38.870143845Z"} +2026/03/22 00:35:38 [metric_collector] {"stage_name":"metric_collector","events_processed":23384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4676.8,"last_update":"2026-03-22T00:35:33.869898374Z"} +2026/03/22 00:35:38 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:35:33.878341885Z"} +2026/03/22 00:35:38 [transform_engine] {"stage_name":"transform_engine","events_processed":779,"events_dropped":0,"avg_latency_ms":371.41618390850346,"throughput_eps":0,"last_update":"2026-03-22T00:35:33.965613946Z"} +2026/03/22 00:35:38 [detection_layer] {"stage_name":"detection_layer","events_processed":778,"events_dropped":0,"avg_latency_ms":18.45162440522887,"throughput_eps":0,"last_update":"2026-03-22T00:35:33.965590631Z"} +2026/03/22 00:35:38 ───────────────────────────────────────────────── +2026/03/22 00:35:43 ── Pipeline Health ────────────────────────────── +2026/03/22 00:35:43 [log_collector] {"stage_name":"log_collector","events_processed":37646,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7529.2,"last_update":"2026-03-22T00:35:43.869411386Z"} +2026/03/22 00:35:43 [metric_collector] {"stage_name":"metric_collector","events_processed":23389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4677.8,"last_update":"2026-03-22T00:35:38.870417749Z"} +2026/03/22 00:35:43 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:35:38.877548497Z"} +2026/03/22 00:35:43 [transform_engine] {"stage_name":"transform_engine","events_processed":779,"events_dropped":0,"avg_latency_ms":371.41618390850346,"throughput_eps":0,"last_update":"2026-03-22T00:35:38.965116072Z"} +2026/03/22 00:35:43 [detection_layer] {"stage_name":"detection_layer","events_processed":778,"events_dropped":0,"avg_latency_ms":18.45162440522887,"throughput_eps":0,"last_update":"2026-03-22T00:35:38.966190039Z"} +2026/03/22 00:35:43 ───────────────────────────────────────────────── +2026/03/22 00:35:48 ── Pipeline Health ────────────────────────────── +2026/03/22 00:35:48 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9360,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:35:43.876011898Z"} +2026/03/22 00:35:48 [transform_engine] {"stage_name":"transform_engine","events_processed":779,"events_dropped":0,"avg_latency_ms":371.41618390850346,"throughput_eps":0,"last_update":"2026-03-22T00:35:43.96510727Z"} +2026/03/22 00:35:48 [detection_layer] {"stage_name":"detection_layer","events_processed":778,"events_dropped":0,"avg_latency_ms":18.45162440522887,"throughput_eps":0,"last_update":"2026-03-22T00:35:43.966158203Z"} +2026/03/22 00:35:48 [log_collector] {"stage_name":"log_collector","events_processed":37646,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7529.2,"last_update":"2026-03-22T00:35:43.869411386Z"} +2026/03/22 00:35:48 [metric_collector] {"stage_name":"metric_collector","events_processed":23394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4678.8,"last_update":"2026-03-22T00:35:43.86995152Z"} +2026/03/22 00:35:48 ───────────────────────────────────────────────── +2026/03/22 00:35:53 ── Pipeline Health ────────────────────────────── +2026/03/22 00:35:53 [transform_engine] {"stage_name":"transform_engine","events_processed":780,"events_dropped":0,"avg_latency_ms":699.7381045268028,"throughput_eps":0,"last_update":"2026-03-22T00:35:50.978409161Z"} +2026/03/22 00:35:53 [detection_layer] {"stage_name":"detection_layer","events_processed":778,"events_dropped":0,"avg_latency_ms":18.45162440522887,"throughput_eps":0,"last_update":"2026-03-22T00:35:48.965477665Z"} +2026/03/22 00:35:53 [log_collector] {"stage_name":"log_collector","events_processed":37663,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7532.6,"last_update":"2026-03-22T00:35:53.870115489Z"} +2026/03/22 00:35:53 [metric_collector] {"stage_name":"metric_collector","events_processed":23399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4679.8,"last_update":"2026-03-22T00:35:48.870322787Z"} +2026/03/22 00:35:53 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:35:48.879223956Z"} +2026/03/22 00:35:53 ───────────────────────────────────────────────── +2026/03/22 00:35:58 ── Pipeline Health ────────────────────────────── +2026/03/22 00:35:58 [log_collector] {"stage_name":"log_collector","events_processed":37663,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7532.6,"last_update":"2026-03-22T00:35:53.870115489Z"} +2026/03/22 00:35:58 [metric_collector] {"stage_name":"metric_collector","events_processed":23404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4680.8,"last_update":"2026-03-22T00:35:53.870608833Z"} +2026/03/22 00:35:58 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:35:53.87614167Z"} +2026/03/22 00:35:58 [transform_engine] {"stage_name":"transform_engine","events_processed":780,"events_dropped":0,"avg_latency_ms":699.7381045268028,"throughput_eps":0,"last_update":"2026-03-22T00:35:53.965524923Z"} +2026/03/22 00:35:58 [detection_layer] {"stage_name":"detection_layer","events_processed":779,"events_dropped":0,"avg_latency_ms":18.763604924183095,"throughput_eps":0,"last_update":"2026-03-22T00:35:53.96551306Z"} +2026/03/22 00:35:58 ───────────────────────────────────────────────── +2026/03/22 00:36:03 ── Pipeline Health ────────────────────────────── +2026/03/22 00:36:03 [metric_collector] {"stage_name":"metric_collector","events_processed":23409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4681.8,"last_update":"2026-03-22T00:35:58.870415432Z"} +2026/03/22 00:36:03 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:35:58.878186135Z"} +2026/03/22 00:36:03 [transform_engine] {"stage_name":"transform_engine","events_processed":780,"events_dropped":0,"avg_latency_ms":699.7381045268028,"throughput_eps":0,"last_update":"2026-03-22T00:35:58.965557474Z"} +2026/03/22 00:36:03 [detection_layer] {"stage_name":"detection_layer","events_processed":779,"events_dropped":0,"avg_latency_ms":18.763604924183095,"throughput_eps":0,"last_update":"2026-03-22T00:35:58.965548307Z"} +2026/03/22 00:36:03 [log_collector] {"stage_name":"log_collector","events_processed":37663,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7532.6,"last_update":"2026-03-22T00:36:03.869481537Z"} +2026/03/22 00:36:03 ───────────────────────────────────────────────── +2026/03/22 00:36:08 ── Pipeline Health ────────────────────────────── +2026/03/22 00:36:08 [metric_collector] {"stage_name":"metric_collector","events_processed":23414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4682.8,"last_update":"2026-03-22T00:36:03.870045828Z"} +2026/03/22 00:36:08 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:36:03.878979317Z"} +2026/03/22 00:36:08 [transform_engine] {"stage_name":"transform_engine","events_processed":780,"events_dropped":0,"avg_latency_ms":699.7381045268028,"throughput_eps":0,"last_update":"2026-03-22T00:36:03.965126102Z"} +2026/03/22 00:36:08 [detection_layer] {"stage_name":"detection_layer","events_processed":779,"events_dropped":0,"avg_latency_ms":18.763604924183095,"throughput_eps":0,"last_update":"2026-03-22T00:36:03.966274983Z"} +2026/03/22 00:36:08 [log_collector] {"stage_name":"log_collector","events_processed":37663,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7532.6,"last_update":"2026-03-22T00:36:03.869481537Z"} +2026/03/22 00:36:08 ───────────────────────────────────────────────── +2026/03/22 00:36:13 ── Pipeline Health ────────────────────────────── +2026/03/22 00:36:13 [detection_layer] {"stage_name":"detection_layer","events_processed":779,"events_dropped":0,"avg_latency_ms":18.763604924183095,"throughput_eps":0,"last_update":"2026-03-22T00:36:08.965869911Z"} +2026/03/22 00:36:13 [log_collector] {"stage_name":"log_collector","events_processed":37663,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7532.6,"last_update":"2026-03-22T00:36:08.870419057Z"} +2026/03/22 00:36:13 [metric_collector] {"stage_name":"metric_collector","events_processed":23419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4683.8,"last_update":"2026-03-22T00:36:08.870965184Z"} +2026/03/22 00:36:13 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:36:08.879686066Z"} +2026/03/22 00:36:13 [transform_engine] {"stage_name":"transform_engine","events_processed":780,"events_dropped":0,"avg_latency_ms":699.7381045268028,"throughput_eps":0,"last_update":"2026-03-22T00:36:08.965878508Z"} +2026/03/22 00:36:13 ───────────────────────────────────────────────── +2026/03/22 00:36:18 ── Pipeline Health ────────────────────────────── +2026/03/22 00:36:18 [log_collector] {"stage_name":"log_collector","events_processed":37663,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7532.6,"last_update":"2026-03-22T00:36:18.869594565Z"} +2026/03/22 00:36:18 [metric_collector] {"stage_name":"metric_collector","events_processed":23424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4684.8,"last_update":"2026-03-22T00:36:13.869800792Z"} +2026/03/22 00:36:18 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:36:13.877453358Z"} +2026/03/22 00:36:18 [transform_engine] {"stage_name":"transform_engine","events_processed":780,"events_dropped":0,"avg_latency_ms":699.7381045268028,"throughput_eps":0,"last_update":"2026-03-22T00:36:13.965717197Z"} +2026/03/22 00:36:18 [detection_layer] {"stage_name":"detection_layer","events_processed":779,"events_dropped":0,"avg_latency_ms":18.763604924183095,"throughput_eps":0,"last_update":"2026-03-22T00:36:13.965704513Z"} +2026/03/22 00:36:18 ───────────────────────────────────────────────── +2026/03/22 00:36:23 ── Pipeline Health ────────────────────────────── +2026/03/22 00:36:23 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:36:18.87821728Z"} +2026/03/22 00:36:23 [transform_engine] {"stage_name":"transform_engine","events_processed":781,"events_dropped":0,"avg_latency_ms":585.8931252214422,"throughput_eps":0,"last_update":"2026-03-22T00:36:19.096046953Z"} +2026/03/22 00:36:23 [detection_layer] {"stage_name":"detection_layer","events_processed":779,"events_dropped":0,"avg_latency_ms":18.763604924183095,"throughput_eps":0,"last_update":"2026-03-22T00:36:18.965518485Z"} +2026/03/22 00:36:23 [log_collector] {"stage_name":"log_collector","events_processed":37663,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7532.6,"last_update":"2026-03-22T00:36:23.869637347Z"} +2026/03/22 00:36:23 [metric_collector] {"stage_name":"metric_collector","events_processed":23429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4685.8,"last_update":"2026-03-22T00:36:18.869985635Z"} +2026/03/22 00:36:23 ───────────────────────────────────────────────── +2026/03/22 00:36:28 ── Pipeline Health ────────────────────────────── +2026/03/22 00:36:28 [log_collector] {"stage_name":"log_collector","events_processed":37663,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7532.6,"last_update":"2026-03-22T00:36:23.869637347Z"} +2026/03/22 00:36:28 [metric_collector] {"stage_name":"metric_collector","events_processed":23434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4686.8,"last_update":"2026-03-22T00:36:23.870288655Z"} +2026/03/22 00:36:28 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:36:23.878909035Z"} +2026/03/22 00:36:28 [transform_engine] {"stage_name":"transform_engine","events_processed":781,"events_dropped":0,"avg_latency_ms":585.8931252214422,"throughput_eps":0,"last_update":"2026-03-22T00:36:23.96508231Z"} +2026/03/22 00:36:28 [detection_layer] {"stage_name":"detection_layer","events_processed":780,"events_dropped":0,"avg_latency_ms":19.496945939346478,"throughput_eps":0,"last_update":"2026-03-22T00:36:23.965327059Z"} +2026/03/22 00:36:28 ───────────────────────────────────────────────── +2026/03/22 00:36:33 ── Pipeline Health ────────────────────────────── +2026/03/22 00:36:33 [log_collector] {"stage_name":"log_collector","events_processed":37663,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7532.6,"last_update":"2026-03-22T00:36:33.86991591Z"} +2026/03/22 00:36:33 [metric_collector] {"stage_name":"metric_collector","events_processed":23439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4687.8,"last_update":"2026-03-22T00:36:28.870288779Z"} +2026/03/22 00:36:33 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T00:36:28.878673809Z"} +2026/03/22 00:36:33 [transform_engine] {"stage_name":"transform_engine","events_processed":781,"events_dropped":0,"avg_latency_ms":585.8931252214422,"throughput_eps":0,"last_update":"2026-03-22T00:36:28.965427175Z"} +2026/03/22 00:36:33 [detection_layer] {"stage_name":"detection_layer","events_processed":780,"events_dropped":0,"avg_latency_ms":19.496945939346478,"throughput_eps":0,"last_update":"2026-03-22T00:36:28.965392628Z"} +2026/03/22 00:36:33 ───────────────────────────────────────────────── +2026/03/22 00:36:36 shutting down… +2026/03/22 00:36:36 pipeline stopped diff --git a/evaluation/data/pipeline_full_cycle_run3/anomalies.jsonl b/evaluation/data/pipeline_full_cycle_run3/anomalies.jsonl new file mode 100644 index 0000000..ffc7a1a --- /dev/null +++ b/evaluation/data/pipeline_full_cycle_run3/anomalies.jsonl @@ -0,0 +1,778 @@ +{"timestamp":"2026-03-22T06:01:57.533538537Z","score":0.5,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=0.50 RRCF-fast:w=0.20,s=0.50 RRCF-mid:w=0.20,s=0.50 RRCF-slow:w=0.20,s=0.50 COPOD:w=0.20,s=0.50"} +{"timestamp":"2026-03-22T06:02:27.578067629Z","score":1,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=1.00 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-22T06:02:59.715567134Z","score":0.8999999999999999,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=0.50 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-22T06:03:27.923330901Z","score":0.7325309328184485,"is_anomaly":false,"confidence":0.8139232586871651,"method":"SEAD","details":"MAD!:w=0.20,s=0.33 RRCF-fast:w=0.20,s=0.67 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=0.67"} +{"timestamp":"2026-03-22T06:03:57.577139684Z","score":0.5980908968754816,"is_anomaly":false,"confidence":0.6645454409727574,"method":"SEAD","details":"MAD!:w=0.20,s=0.25 RRCF-fast:w=0.20,s=0.50 RRCF-mid:w=0.20,s=0.75 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=0.50"} +{"timestamp":"2026-03-22T06:04:27.530779049Z","score":0.7561775317971341,"is_anomaly":false,"confidence":0.8401972575523713,"method":"SEAD","details":"MAD!:w=0.20,s=0.20 RRCF-fast:w=0.20,s=0.60 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-22T06:04:57.752800157Z","score":0.7291843191102315,"is_anomaly":false,"confidence":0.8102047990113684,"method":"SEAD","details":"MAD!:w=0.21,s=0.33 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=0.33"} +{"timestamp":"2026-03-22T06:05:27.582009154Z","score":0.7069769550675764,"is_anomaly":false,"confidence":0.9349351512565741,"method":"SEAD","details":"MAD!:w=0.21,s=0.00 RRCF-fast:w=0.20,s=0.86 RRCF-mid:w=0.20,s=0.86 RRCF-slow:w=0.19,s=0.86 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-22T06:05:58.160909942Z","score":0.9501036828087712,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.21,s=1.00 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.19,s=1.00 COPOD!:w=0.20,s=0.75"} +{"timestamp":"2026-03-22T06:06:27.685252337Z","score":0.9319706672035355,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.21,s=0.89 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.19,s=1.00 COPOD!:w=0.20,s=0.78"} +{"timestamp":"2026-03-22T06:06:57.58042147Z","score":0.7163962431369779,"is_anomaly":false,"confidence":0.7686896898660892,"method":"SEAD","details":"MAD!:w=0.21,s=0.50 RRCF-fast:w=0.20,s=0.80 RRCF-mid:w=0.19,s=0.80 RRCF-slow:w=0.19,s=0.80 COPOD!:w=0.20,s=0.70"} +{"timestamp":"2026-03-22T06:07:27.622808449Z","score":0.7238621990393046,"is_anomaly":false,"confidence":0.7767006242925223,"method":"SEAD","details":"MAD!:w=0.21,s=0.45 RRCF-fast:w=0.20,s=0.82 RRCF-mid:w=0.19,s=0.73 RRCF-slow:w=0.19,s=0.73 COPOD!:w=0.20,s=0.91"} +{"timestamp":"2026-03-22T06:07:57.53241825Z","score":0.6443309573946671,"is_anomaly":false,"confidence":0.691363988233709,"method":"SEAD","details":"MAD!:w=0.21,s=0.25 RRCF-fast:w=0.20,s=0.67 RRCF-mid:w=0.19,s=0.67 RRCF-slow:w=0.19,s=0.67 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-22T06:08:27.568931854Z","score":0.5329033431791894,"is_anomaly":false,"confidence":0.5718026993040621,"method":"SEAD","details":"MAD!:w=0.22,s=0.31 RRCF-fast:w=0.20,s=0.69 RRCF-mid:w=0.19,s=0.69 RRCF-slow:w=0.19,s=0.69 COPOD!:w=0.20,s=0.31"} +{"timestamp":"2026-03-22T06:08:57.533960294Z","score":0.4775600786059019,"is_anomaly":false,"confidence":0.5306223095621132,"method":"SEAD","details":"MAD!:w=0.22,s=0.07 RRCF-fast:w=0.20,s=0.50 RRCF-mid:w=0.19,s=0.57 RRCF-slow:w=0.19,s=0.57 COPOD!:w=0.20,s=0.71"} +{"timestamp":"2026-03-22T06:09:27.533878761Z","score":0.561523226669138,"is_anomaly":false,"confidence":0.6239146962990423,"method":"SEAD","details":"MAD!:w=0.22,s=0.00 RRCF-fast:w=0.20,s=0.67 RRCF-mid:w=0.19,s=0.60 RRCF-slow:w=0.19,s=0.60 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-22T06:09:58.306872506Z","score":0.8873092931049025,"is_anomaly":false,"confidence":0.9858992145610028,"method":"SEAD","details":"MAD!:w=0.22,s=0.88 RRCF-fast:w=0.20,s=0.88 RRCF-mid:w=0.19,s=0.88 RRCF-slow:w=0.19,s=0.88 COPOD!:w=0.20,s=0.94"} +{"timestamp":"2026-03-22T06:10:27.572527099Z","score":0.7051812774119696,"is_anomaly":false,"confidence":0.7835347526799663,"method":"SEAD","details":"MAD!:w=0.22,s=0.71 RRCF-fast:w=0.20,s=0.82 RRCF-mid:w=0.19,s=0.82 RRCF-slow:w=0.19,s=0.76 COPOD!:w=0.20,s=0.41"} +{"timestamp":"2026-03-22T06:10:57.577540509Z","score":0.6764730069027409,"is_anomaly":false,"confidence":0.7516366743363789,"method":"SEAD","details":"MAD!:w=0.22,s=0.67 RRCF-fast:w=0.20,s=0.83 RRCF-mid:w=0.19,s=0.78 RRCF-slow:w=0.19,s=0.72 COPOD!:w=0.20,s=0.39"} +{"timestamp":"2026-03-22T06:11:27.545929476Z","score":0.42235848569744466,"is_anomaly":false,"confidence":0.46928720633049414,"method":"SEAD","details":"MAD!:w=0.22,s=0.11 RRCF-fast:w=0.20,s=0.63 RRCF-mid:w=0.19,s=0.58 RRCF-slow:w=0.19,s=0.47 COPOD!:w=0.20,s=0.37"} +{"timestamp":"2026-03-22T06:11:57.529686012Z","score":0.4025834062564715,"is_anomaly":false,"confidence":0.4473148958405239,"method":"SEAD","details":"MAD!:w=0.22,s=0.15 RRCF-fast:w=0.19,s=0.40 RRCF-mid:w=0.19,s=0.55 RRCF-slow:w=0.19,s=0.45 COPOD!:w=0.20,s=0.50"} +{"timestamp":"2026-03-22T06:12:27.588601753Z","score":0.7847960995423058,"is_anomaly":false,"confidence":0.8844673504952494,"method":"SEAD","details":"MAD!:w=0.22,s=0.57 RRCF-fast:w=0.19,s=0.76 RRCF-mid:w=0.19,s=0.81 RRCF-slow:w=0.19,s=0.81 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-22T06:12:59.037473237Z","score":0.6295290400120633,"is_anomaly":false,"confidence":0.7094809497702815,"method":"SEAD","details":"MAD!:w=0.22,s=0.50 RRCF-fast!:w=0.19,s=0.86 RRCF-mid:w=0.19,s=0.77 RRCF-slow!:w=0.19,s=0.86 COPOD!:w=0.20,s=0.18"} +{"timestamp":"2026-03-22T06:13:27.531081844Z","score":0.4989699130766131,"is_anomaly":false,"confidence":0.5623404566524947,"method":"SEAD","details":"MAD!:w=0.23,s=0.00 RRCF-fast:w=0.19,s=0.48 RRCF-mid:w=0.19,s=0.57 RRCF-slow:w=0.19,s=0.57 COPOD!:w=0.20,s=0.96"} +{"timestamp":"2026-03-22T06:13:58.964862635Z","score":0.8837092156511008,"is_anomaly":false,"confidence":0.9959427028638411,"method":"SEAD","details":"MAD!:w=0.23,s=0.92 RRCF-fast!:w=0.19,s=0.92 RRCF-mid!:w=0.19,s=0.92 RRCF-slow!:w=0.19,s=0.92 COPOD!:w=0.20,s=0.75"} +{"timestamp":"2026-03-22T06:14:27.603201857Z","score":0.734529881499525,"is_anomaly":false,"confidence":0.8278171852897352,"method":"SEAD","details":"MAD!:w=0.23,s=0.76 RRCF-fast!:w=0.19,s=0.84 RRCF-mid!:w=0.19,s=0.84 RRCF-slow!:w=0.19,s=0.84 COPOD!:w=0.20,s=0.40"} +{"timestamp":"2026-03-22T06:14:57.819642792Z","score":0.6842078719238989,"is_anomaly":false,"confidence":0.771104142874122,"method":"SEAD","details":"MAD!:w=0.23,s=0.65 RRCF-fast:w=0.19,s=0.77 RRCF-mid:w=0.19,s=0.62 RRCF-slow:w=0.19,s=0.65 COPOD!:w=0.20,s=0.73"} +{"timestamp":"2026-03-22T06:15:27.579679829Z","score":0.46540531343992453,"is_anomaly":false,"confidence":0.5266498359384227,"method":"SEAD","details":"MAD!:w=0.23,s=0.52 RRCF-fast:w=0.19,s=0.63 RRCF-mid:w=0.19,s=0.56 RRCF-slow:w=0.19,s=0.56 COPOD!:w=0.20,s=0.07"} +{"timestamp":"2026-03-22T06:15:57.533416406Z","score":0.4359265441668722,"is_anomaly":false,"confidence":0.4932918390419743,"method":"SEAD","details":"MAD!:w=0.23,s=0.39 RRCF-fast:w=0.19,s=0.39 RRCF-mid:w=0.19,s=0.43 RRCF-slow:w=0.19,s=0.36 COPOD!:w=0.20,s=0.61"} +{"timestamp":"2026-03-22T06:16:27.574821238Z","score":0.5168270111441352,"is_anomaly":false,"confidence":0.5848383178434395,"method":"SEAD","details":"MAD!:w=0.23,s=0.38 RRCF-fast:w=0.19,s=0.69 RRCF-mid:w=0.19,s=0.62 RRCF-slow:w=0.19,s=0.62 COPOD!:w=0.20,s=0.31"} +{"timestamp":"2026-03-22T06:16:57.540805322Z","score":0.475713842638801,"is_anomaly":false,"confidence":0.5383149051900559,"method":"SEAD","details":"MAD!:w=0.23,s=0.07 RRCF-fast:w=0.19,s=0.43 RRCF-mid:w=0.19,s=0.50 RRCF-slow:w=0.19,s=0.47 COPOD!:w=0.20,s=0.97"} +{"timestamp":"2026-03-22T06:17:28.717927728Z","score":0.8704184526486888,"is_anomaly":false,"confidence":0.9849602530255163,"method":"SEAD","details":"MAD!:w=0.23,s=0.94 RRCF-fast!:w=0.19,s=0.97 RRCF-mid!:w=0.19,s=0.97 RRCF-slow!:w=0.19,s=0.97 COPOD!:w=0.20,s=0.52"} +{"timestamp":"2026-03-22T06:17:57.598724845Z","score":0.7597517884375866,"is_anomaly":false,"confidence":0.8597305255867626,"method":"SEAD","details":"MAD!:w=0.23,s=0.81 RRCF-fast!:w=0.19,s=0.91 RRCF-mid!:w=0.19,s=0.91 RRCF-slow!:w=0.19,s=0.88 COPOD!:w=0.20,s=0.31"} +{"timestamp":"2026-03-22T06:18:29.515728056Z","score":0.736511190398812,"is_anomaly":false,"confidence":0.8334316055040389,"method":"SEAD","details":"MAD!:w=0.23,s=0.67 RRCF-fast:w=0.19,s=0.70 RRCF-mid:w=0.19,s=0.79 RRCF-slow:w=0.19,s=0.79 COPOD!:w=0.20,s=0.76"} +{"timestamp":"2026-03-22T06:18:57.576083068Z","score":0.5809567521626363,"is_anomaly":false,"confidence":0.6674453538924655,"method":"SEAD","details":"MAD!:w=0.23,s=0.53 RRCF-fast:w=0.19,s=0.56 RRCF-mid:w=0.19,s=0.59 RRCF-slow:w=0.19,s=0.59 COPOD!:w=0.20,s=0.65"} +{"timestamp":"2026-03-22T06:19:27.533194641Z","score":0.3895971959424485,"is_anomaly":false,"confidence":0.4475975833886584,"method":"SEAD","details":"MAD!:w=0.23,s=0.40 RRCF-fast:w=0.19,s=0.51 RRCF-mid:w=0.19,s=0.34 RRCF-slow:w=0.19,s=0.29 COPOD!:w=0.20,s=0.40"} +{"timestamp":"2026-03-22T06:19:57.582867701Z","score":0.37160182152582544,"is_anomaly":false,"confidence":0.4269231889501409,"method":"SEAD","details":"MAD!:w=0.23,s=0.17 RRCF-fast:w=0.19,s=0.50 RRCF-mid:w=0.19,s=0.56 RRCF-slow:w=0.19,s=0.53 COPOD!:w=0.20,s=0.17"} +{"timestamp":"2026-03-22T06:20:27.576920067Z","score":0.4598883267579499,"is_anomaly":false,"confidence":0.5283531448104148,"method":"SEAD","details":"MAD!:w=0.23,s=0.19 RRCF-fast:w=0.19,s=0.65 RRCF-mid:w=0.19,s=0.46 RRCF-slow:w=0.19,s=0.49 COPOD!:w=0.20,s=0.57"} +{"timestamp":"2026-03-22T06:20:57.54035767Z","score":0.4091201995997909,"is_anomaly":false,"confidence":0.4700270293613785,"method":"SEAD","details":"MAD!:w=0.23,s=0.11 RRCF-fast:w=0.19,s=0.45 RRCF-mid:w=0.19,s=0.26 RRCF-slow:w=0.19,s=0.34 COPOD!:w=0.20,s=0.92"} +{"timestamp":"2026-03-22T06:21:29.618889993Z","score":0.9095552173707484,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.23,s=0.87 RRCF-fast!:w=0.19,s=0.95 RRCF-mid!:w=0.19,s=0.97 RRCF-slow!:w=0.19,s=0.97 COPOD!:w=0.20,s=0.79"} +{"timestamp":"2026-03-22T06:21:57.753575636Z","score":0.8159343307531552,"is_anomaly":false,"confidence":0.9233063504401612,"method":"SEAD","details":"MAD!:w=0.23,s=0.72 RRCF-fast:w=0.19,s=0.82 RRCF-mid!:w=0.19,s=0.85 RRCF-slow!:w=0.19,s=0.85 COPOD!:w=0.20,s=0.85"} +{"timestamp":"2026-03-22T06:22:27.579661643Z","score":0.445775732530135,"is_anomaly":false,"confidence":0.5121395705406252,"method":"SEAD","details":"MAD!:w=0.24,s=0.59 RRCF-fast:w=0.19,s=0.34 RRCF-mid:w=0.19,s=0.63 RRCF-slow:w=0.19,s=0.59 COPOD!:w=0.20,s=0.07"} +{"timestamp":"2026-03-22T06:22:57.532622015Z","score":0.3290105443106369,"is_anomaly":false,"confidence":0.3779912331930186,"method":"SEAD","details":"MAD!:w=0.23,s=0.24 RRCF-fast:w=0.19,s=0.26 RRCF-mid:w=0.19,s=0.38 RRCF-slow:w=0.19,s=0.43 COPOD!:w=0.20,s=0.36"} +{"timestamp":"2026-03-22T06:23:27.612752129Z","score":0.6527323690808783,"is_anomaly":false,"confidence":0.7499064008749006,"method":"SEAD","details":"MAD!:w=0.23,s=0.49 RRCF-fast:w=0.19,s=0.81 RRCF-mid:w=0.19,s=0.81 RRCF-slow:w=0.19,s=0.84 COPOD!:w=0.20,s=0.37"} +{"timestamp":"2026-03-22T06:23:57.575076046Z","score":0.7345260668905209,"is_anomaly":false,"confidence":0.8438769475248985,"method":"SEAD","details":"MAD!:w=0.24,s=0.55 RRCF-fast:w=0.19,s=0.66 RRCF-mid:w=0.19,s=0.77 RRCF-slow:w=0.19,s=0.77 COPOD!:w=0.20,s=0.95"} +{"timestamp":"2026-03-22T06:24:27.529572282Z","score":0.48838512515280696,"is_anomaly":false,"confidence":0.5610923385948999,"method":"SEAD","details":"MAD!:w=0.24,s=0.42 RRCF-fast:w=0.19,s=0.18 RRCF-mid:w=0.19,s=0.40 RRCF-slow:w=0.19,s=0.42 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-22T06:24:59.531458738Z","score":0.7857001625468323,"is_anomaly":false,"confidence":0.9026694690995369,"method":"SEAD","details":"MAD!:w=0.24,s=0.87 RRCF-fast:w=0.19,s=0.83 RRCF-mid!:w=0.19,s=0.93 RRCF-slow!:w=0.19,s=0.93 COPOD!:w=0.20,s=0.37"} +{"timestamp":"2026-03-22T06:25:27.550050845Z","score":0.7477587516172256,"is_anomaly":false,"confidence":0.9164447718813357,"method":"SEAD","details":"MAD!:w=0.24,s=0.83 RRCF-fast!:w=0.19,s=0.91 RRCF-mid!:w=0.19,s=0.85 RRCF-slow:w=0.19,s=0.79 COPOD!:w=0.20,s=0.36"} +{"timestamp":"2026-03-22T06:25:57.593003633Z","score":0.7023287397479816,"is_anomaly":false,"confidence":0.8607662568869862,"method":"SEAD","details":"MAD!:w=0.24,s=0.69 RRCF-fast:w=0.19,s=0.62 RRCF-mid:w=0.19,s=0.77 RRCF-slow:w=0.19,s=0.77 COPOD!:w=0.20,s=0.67"} +{"timestamp":"2026-03-22T06:26:27.578154275Z","score":0.6656450838784815,"is_anomaly":false,"confidence":0.8158071780899966,"method":"SEAD","details":"MAD!:w=0.24,s=0.51 RRCF-fast:w=0.19,s=0.65 RRCF-mid:w=0.19,s=0.65 RRCF-slow:w=0.19,s=0.61 COPOD!:w=0.20,s=0.92"} +{"timestamp":"2026-03-22T06:26:57.532893942Z","score":0.4068758078132436,"is_anomaly":false,"confidence":0.4986624443632288,"method":"SEAD","details":"MAD!:w=0.24,s=0.36 RRCF-fast:w=0.19,s=0.24 RRCF-mid:w=0.19,s=0.36 RRCF-slow:w=0.19,s=0.30 COPOD!:w=0.20,s=0.76"} +{"timestamp":"2026-03-22T06:27:27.531165305Z","score":0.383936334230848,"is_anomaly":false,"confidence":0.47054808182473734,"method":"SEAD","details":"MAD!:w=0.24,s=0.10 RRCF-fast:w=0.19,s=0.29 RRCF-mid:w=0.19,s=0.47 RRCF-slow:w=0.19,s=0.47 COPOD!:w=0.20,s=0.65"} +{"timestamp":"2026-03-22T06:27:57.591886182Z","score":0.48448558419661325,"is_anomaly":false,"confidence":0.5937801192277381,"method":"SEAD","details":"MAD!:w=0.24,s=0.38 RRCF-fast:w=0.19,s=0.63 RRCF-mid:w=0.19,s=0.69 RRCF-slow:w=0.19,s=0.73 COPOD!:w=0.20,s=0.04"} +{"timestamp":"2026-03-22T06:28:27.53070609Z","score":0.41078153048020755,"is_anomaly":false,"confidence":0.5034492544283952,"method":"SEAD","details":"MAD!:w=0.24,s=0.11 RRCF-fast:w=0.19,s=0.13 RRCF-mid:w=0.18,s=0.53 RRCF-slow:w=0.18,s=0.51 COPOD!:w=0.20,s=0.83"} +{"timestamp":"2026-03-22T06:28:59.86091024Z","score":0.8294234529040265,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.24,s=0.89 RRCF-fast:w=0.19,s=0.72 RRCF-mid!:w=0.18,s=0.93 RRCF-slow!:w=0.18,s=0.96 COPOD!:w=0.20,s=0.65"} +{"timestamp":"2026-03-22T06:29:27.58288863Z","score":0.7214919418171049,"is_anomaly":false,"confidence":0.8842524632480232,"method":"SEAD","details":"MAD!:w=0.24,s=0.75 RRCF-fast:w=0.19,s=0.78 RRCF-mid:w=0.18,s=0.82 RRCF-slow:w=0.18,s=0.78 COPOD!:w=0.20,s=0.49"} +{"timestamp":"2026-03-22T06:29:57.576829506Z","score":0.5337290683910021,"is_anomaly":false,"confidence":0.6541323832989585,"method":"SEAD","details":"MAD!:w=0.24,s=0.66 RRCF-fast:w=0.19,s=0.48 RRCF-mid:w=0.18,s=0.68 RRCF-slow:w=0.18,s=0.61 COPOD!:w=0.20,s=0.23"} +{"timestamp":"2026-03-22T06:30:27.534062523Z","score":0.3675719451570115,"is_anomaly":false,"confidence":0.45049206940186115,"method":"SEAD","details":"MAD!:w=0.24,s=0.21 RRCF-fast:w=0.19,s=0.39 RRCF-mid:w=0.18,s=0.51 RRCF-slow:w=0.18,s=0.51 COPOD!:w=0.20,s=0.28"} +{"timestamp":"2026-03-22T06:30:58.209405732Z","score":0.8545995210875394,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.24,s=0.53 RRCF-fast!:w=0.19,s=0.86 RRCF-mid!:w=0.18,s=1.00 RRCF-slow!:w=0.18,s=1.00 COPOD!:w=0.20,s=0.97"} +{"timestamp":"2026-03-22T06:31:27.576417687Z","score":0.6067731512646914,"is_anomaly":false,"confidence":0.7315601568055754,"method":"SEAD","details":"MAD!:w=0.24,s=0.47 RRCF-fast:w=0.19,s=0.64 RRCF-mid:w=0.18,s=0.73 RRCF-slow:w=0.18,s=0.71 COPOD!:w=0.20,s=0.53"} +{"timestamp":"2026-03-22T06:31:57.533781788Z","score":0.5022370849883551,"is_anomaly":false,"confidence":0.605525540940388,"method":"SEAD","details":"MAD!:w=0.24,s=0.32 RRCF-fast:w=0.19,s=0.27 RRCF-mid:w=0.18,s=0.50 RRCF-slow:w=0.18,s=0.48 COPOD!:w=0.20,s=0.97"} +{"timestamp":"2026-03-22T06:32:29.696787427Z","score":0.8108151829364877,"is_anomaly":false,"confidence":0.9937260296279699,"method":"SEAD","details":"MAD!:w=0.24,s=0.79 RRCF-fast!:w=0.19,s=0.97 RRCF-mid!:w=0.18,s=0.98 RRCF-slow!:w=0.18,s=0.98 COPOD!:w=0.20,s=0.38"} +{"timestamp":"2026-03-22T06:32:57.552226016Z","score":0.7897889239796518,"is_anomaly":false,"confidence":0.9679564815597725,"method":"SEAD","details":"MAD!:w=0.24,s=0.85 RRCF-fast:w=0.19,s=0.79 RRCF-mid!:w=0.18,s=0.94 RRCF-slow!:w=0.18,s=0.95 COPOD!:w=0.20,s=0.44"} +{"timestamp":"2026-03-22T06:33:27.578909377Z","score":0.6921352628206119,"is_anomaly":false,"confidence":0.8482732454482341,"method":"SEAD","details":"MAD!:w=0.24,s=0.63 RRCF-fast:w=0.19,s=0.79 RRCF-mid:w=0.18,s=0.76 RRCF-slow:w=0.18,s=0.75 COPOD!:w=0.20,s=0.56"} +{"timestamp":"2026-03-22T06:33:57.538223646Z","score":0.49952017581061975,"is_anomaly":false,"confidence":0.6122063467405928,"method":"SEAD","details":"MAD!:w=0.24,s=0.56 RRCF-fast:w=0.19,s=0.44 RRCF-mid:w=0.18,s=0.47 RRCF-slow:w=0.18,s=0.42 COPOD!:w=0.20,s=0.58"} +{"timestamp":"2026-03-22T06:34:27.534224516Z","score":0.40657214883501525,"is_anomaly":false,"confidence":0.49829028331204706,"method":"SEAD","details":"MAD!:w=0.24,s=0.12 RRCF-fast:w=0.19,s=0.68 RRCF-mid:w=0.18,s=0.54 RRCF-slow:w=0.18,s=0.57 COPOD!:w=0.20,s=0.23"} +{"timestamp":"2026-03-22T06:34:57.580698601Z","score":0.5058998806947759,"is_anomaly":false,"confidence":0.6200252417713575,"method":"SEAD","details":"MAD!:w=0.25,s=0.24 RRCF-fast!:w=0.19,s=0.88 RRCF-mid:w=0.18,s=0.77 RRCF-slow:w=0.18,s=0.73 COPOD!:w=0.20,s=0.05"} +{"timestamp":"2026-03-22T06:35:27.622500361Z","score":0.8459762389737325,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.69 RRCF-fast!:w=0.19,s=0.85 RRCF-mid!:w=0.18,s=0.88 RRCF-slow!:w=0.18,s=0.87 COPOD!:w=0.21,s=0.99"} +{"timestamp":"2026-03-22T06:35:59.005861216Z","score":0.6192374085832248,"is_anomaly":false,"confidence":0.7589304497233649,"method":"SEAD","details":"MAD!:w=0.25,s=0.59 RRCF-fast:w=0.19,s=0.50 RRCF-mid:w=0.18,s=0.56 RRCF-slow:w=0.18,s=0.65 COPOD!:w=0.21,s=0.79"} +{"timestamp":"2026-03-22T06:36:28.009196016Z","score":0.7615400368130572,"is_anomaly":false,"confidence":0.933334961050249,"method":"SEAD","details":"MAD!:w=0.25,s=0.78 RRCF-fast!:w=0.19,s=0.88 RRCF-mid!:w=0.18,s=0.99 RRCF-slow!:w=0.18,s=0.99 COPOD!:w=0.20,s=0.23"} +{"timestamp":"2026-03-22T06:36:57.560717346Z","score":0.8143295459122852,"is_anomaly":false,"confidence":0.9980331936279864,"method":"SEAD","details":"MAD!:w=0.25,s=0.83 RRCF-fast!:w=0.19,s=0.91 RRCF-mid:w=0.18,s=0.84 RRCF-slow:w=0.18,s=0.84 COPOD!:w=0.21,s=0.66"} +{"timestamp":"2026-03-22T06:37:27.625382758Z","score":0.6568393703530286,"is_anomaly":false,"confidence":0.8050149939722813,"method":"SEAD","details":"MAD!:w=0.25,s=0.65 RRCF-fast:w=0.19,s=0.75 RRCF-mid:w=0.18,s=0.76 RRCF-slow:w=0.18,s=0.76 COPOD!:w=0.21,s=0.41"} +{"timestamp":"2026-03-22T06:37:57.533748962Z","score":0.41112731103769623,"is_anomaly":false,"confidence":0.5038730392165282,"method":"SEAD","details":"MAD!:w=0.25,s=0.56 RRCF-fast:w=0.19,s=0.32 RRCF-mid:w=0.18,s=0.46 RRCF-slow:w=0.18,s=0.42 COPOD!:w=0.21,s=0.28"} +{"timestamp":"2026-03-22T06:38:27.535497885Z","score":0.3297371190187353,"is_anomaly":false,"confidence":0.4041221291845492,"method":"SEAD","details":"MAD!:w=0.25,s=0.14 RRCF-fast:w=0.19,s=0.51 RRCF-mid:w=0.18,s=0.44 RRCF-slow:w=0.18,s=0.48 COPOD!:w=0.21,s=0.18"} +{"timestamp":"2026-03-22T06:38:57.575087143Z","score":0.7225400701057646,"is_anomaly":false,"confidence":0.8872821497546306,"method":"SEAD","details":"MAD!:w=0.25,s=0.46 RRCF-fast:w=0.19,s=0.84 RRCF-mid:w=0.18,s=0.81 RRCF-slow:w=0.18,s=0.74 COPOD!:w=0.21,s=0.84"} +{"timestamp":"2026-03-22T06:39:27.637952708Z","score":0.5439474399406041,"is_anomaly":false,"confidence":0.6679696723164149,"method":"SEAD","details":"MAD!:w=0.25,s=0.32 RRCF-fast:w=0.19,s=0.57 RRCF-mid:w=0.18,s=0.67 RRCF-slow!:w=0.18,s=0.91 COPOD!:w=0.21,s=0.37"} +{"timestamp":"2026-03-22T06:39:57.518742957Z","score":0.528995532240562,"is_anomaly":false,"confidence":0.6496086687459357,"method":"SEAD","details":"MAD!:w=0.25,s=0.01 RRCF-fast:w=0.19,s=0.62 RRCF-mid:w=0.18,s=0.64 RRCF-slow:w=0.18,s=0.55 COPOD!:w=0.21,s=0.95"} +{"timestamp":"2026-03-22T06:40:29.522023201Z","score":0.9940041683236895,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.99 RRCF-fast!:w=0.19,s=1.00 RRCF-mid!:w=0.18,s=1.00 RRCF-slow!:w=0.18,s=1.00 COPOD!:w=0.21,s=0.99"} +{"timestamp":"2026-03-22T06:40:57.584964022Z","score":0.9538059449754738,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.92 RRCF-fast!:w=0.19,s=1.00 RRCF-mid!:w=0.18,s=1.00 RRCF-slow!:w=0.18,s=1.00 COPOD!:w=0.21,s=0.87"} +{"timestamp":"2026-03-22T06:41:27.578526307Z","score":0.7667180608690713,"is_anomaly":false,"confidence":0.9243988196675567,"method":"SEAD","details":"MAD!:w=0.25,s=0.65 RRCF-fast!:w=0.19,s=0.97 RRCF-mid!:w=0.18,s=0.97 RRCF-slow!:w=0.18,s=0.99 COPOD!:w=0.21,s=0.37"} +{"timestamp":"2026-03-22T06:41:57.534676168Z","score":0.5965062813410015,"is_anomaly":false,"confidence":0.7191818355901058,"method":"SEAD","details":"MAD!:w=0.25,s=0.25 RRCF-fast!:w=0.19,s=0.96 RRCF-mid!:w=0.17,s=0.96 RRCF-slow:w=0.18,s=0.84 COPOD!:w=0.21,s=0.19"} +{"timestamp":"2026-03-22T06:42:27.534460881Z","score":0.6044970020370082,"is_anomaly":false,"confidence":0.7408647721429027,"method":"SEAD","details":"MAD!:w=0.26,s=0.25 RRCF-fast!:w=0.18,s=0.94 RRCF-mid!:w=0.17,s=0.95 RRCF-slow:w=0.17,s=0.78 COPOD!:w=0.21,s=0.32"} +{"timestamp":"2026-03-22T06:42:58.967287538Z","score":0.8660679113032941,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.26,s=0.70 RRCF-fast!:w=0.18,s=0.94 RRCF-mid!:w=0.17,s=0.95 RRCF-slow!:w=0.17,s=0.91 COPOD!:w=0.21,s=0.90"} +{"timestamp":"2026-03-22T06:43:27.577987134Z","score":0.6075111173268943,"is_anomaly":false,"confidence":0.7324498905834413,"method":"SEAD","details":"MAD!:w=0.26,s=0.57 RRCF-fast:w=0.18,s=0.82 RRCF-mid:w=0.17,s=0.89 RRCF-slow:w=0.17,s=0.75 COPOD!:w=0.21,s=0.13"} +{"timestamp":"2026-03-22T06:43:57.533664727Z","score":0.5972460646512124,"is_anomaly":false,"confidence":0.7200737603453328,"method":"SEAD","details":"MAD!:w=0.26,s=0.17 RRCF-fast:w=0.18,s=0.69 RRCF-mid:w=0.17,s=0.82 RRCF-slow:w=0.17,s=0.63 COPOD!:w=0.21,s=0.83"} +{"timestamp":"2026-03-22T06:44:29.672145975Z","score":0.9256862428433176,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.26,s=0.99 RRCF-fast!:w=0.18,s=0.96 RRCF-mid!:w=0.17,s=0.96 RRCF-slow!:w=0.17,s=0.96 COPOD!:w=0.21,s=0.75"} +{"timestamp":"2026-03-22T06:44:57.577832686Z","score":0.9353590720163261,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.26,s=0.88 RRCF-fast!:w=0.18,s=0.97 RRCF-mid!:w=0.17,s=0.97 RRCF-slow!:w=0.17,s=0.99 COPOD!:w=0.21,s=0.91"} +{"timestamp":"2026-03-22T06:45:28.786160601Z","score":0.8805219871906806,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.26,s=0.72 RRCF-fast!:w=0.18,s=0.91 RRCF-mid!:w=0.17,s=0.92 RRCF-slow!:w=0.17,s=0.93 COPOD!:w=0.21,s=0.98"} +{"timestamp":"2026-03-22T06:45:57.578298317Z","score":0.686973449447823,"is_anomaly":false,"confidence":0.8038542410761006,"method":"SEAD","details":"MAD!:w=0.26,s=0.67 RRCF-fast:w=0.18,s=0.62 RRCF-mid:w=0.17,s=0.88 RRCF-slow:w=0.17,s=0.85 COPOD!:w=0.21,s=0.48"} +{"timestamp":"2026-03-22T06:46:27.532784878Z","score":0.47498092320421,"is_anomaly":false,"confidence":0.5557935752172697,"method":"SEAD","details":"MAD!:w=0.26,s=0.21 RRCF-fast:w=0.18,s=0.69 RRCF-mid:w=0.17,s=0.81 RRCF-slow:w=0.17,s=0.82 COPOD!:w=0.21,s=0.08"} +{"timestamp":"2026-03-22T06:46:57.576211103Z","score":0.5033759774563643,"is_anomaly":false,"confidence":0.5890197279958478,"method":"SEAD","details":"MAD!:w=0.26,s=0.22 RRCF-fast:w=0.18,s=0.69 RRCF-mid:w=0.17,s=0.81 RRCF-slow:w=0.17,s=0.81 COPOD!:w=0.22,s=0.21"} +{"timestamp":"2026-03-22T06:47:27.55671474Z","score":0.47171219322908564,"is_anomaly":false,"confidence":0.5519687076688247,"method":"SEAD","details":"MAD!:w=0.27,s=0.14 RRCF-fast:w=0.18,s=0.37 RRCF-mid:w=0.17,s=0.69 RRCF-slow:w=0.17,s=0.75 COPOD!:w=0.22,s=0.57"} +{"timestamp":"2026-03-22T06:47:57.544012171Z","score":0.8371562759720093,"is_anomaly":false,"confidence":0.9795889832780009,"method":"SEAD","details":"MAD!:w=0.27,s=0.97 RRCF-fast:w=0.18,s=0.80 RRCF-mid:w=0.17,s=0.90 RRCF-slow!:w=0.17,s=0.98 COPOD!:w=0.22,s=0.54"} +{"timestamp":"2026-03-22T06:48:27.561570497Z","score":0.8352907350804682,"is_anomaly":false,"confidence":0.9774060416246204,"method":"SEAD","details":"MAD!:w=0.27,s=0.82 RRCF-fast:w=0.18,s=0.86 RRCF-mid!:w=0.17,s=0.91 RRCF-slow!:w=0.17,s=0.98 COPOD!:w=0.22,s=0.67"} +{"timestamp":"2026-03-22T06:48:57.581084022Z","score":0.7075508424305844,"is_anomaly":false,"confidence":0.8363720041226286,"method":"SEAD","details":"MAD!:w=0.27,s=0.66 RRCF-fast:w=0.18,s=0.56 RRCF-mid:w=0.17,s=0.82 RRCF-slow:w=0.17,s=0.90 COPOD!:w=0.22,s=0.65"} +{"timestamp":"2026-03-22T06:49:27.535372455Z","score":0.5435594517152227,"is_anomaly":false,"confidence":0.6425233081896289,"method":"SEAD","details":"MAD!:w=0.27,s=0.55 RRCF-fast:w=0.18,s=0.33 RRCF-mid:w=0.17,s=0.66 RRCF-slow:w=0.17,s=0.80 COPOD!:w=0.22,s=0.43"} +{"timestamp":"2026-03-22T06:49:57.534577611Z","score":0.4113749024208503,"is_anomaly":false,"confidence":0.48627240750862677,"method":"SEAD","details":"MAD!:w=0.27,s=0.20 RRCF-fast:w=0.18,s=0.43 RRCF-mid:w=0.17,s=0.61 RRCF-slow:w=0.17,s=0.67 COPOD!:w=0.22,s=0.31"} +{"timestamp":"2026-03-22T06:50:30.123781824Z","score":0.6533241756942139,"is_anomaly":false,"confidence":0.7722724889847639,"method":"SEAD","details":"MAD!:w=0.27,s=0.45 RRCF-fast!:w=0.18,s=0.93 RRCF-mid:w=0.16,s=0.85 RRCF-slow:w=0.17,s=0.88 COPOD!:w=0.22,s=0.36"} +{"timestamp":"2026-03-22T06:50:57.577284756Z","score":0.6437423321926908,"is_anomaly":false,"confidence":0.7609461147202256,"method":"SEAD","details":"MAD!:w=0.27,s=0.54 RRCF-fast:w=0.18,s=0.55 RRCF-mid:w=0.16,s=0.69 RRCF-slow:w=0.16,s=0.71 COPOD!:w=0.22,s=0.76"} +{"timestamp":"2026-03-22T06:51:27.53400168Z","score":0.3438176698740399,"is_anomaly":false,"confidence":0.4064152798087221,"method":"SEAD","details":"MAD!:w=0.27,s=0.00 RRCF-fast:w=0.18,s=0.13 RRCF-mid:w=0.16,s=0.47 RRCF-slow:w=0.16,s=0.57 COPOD!:w=0.22,s=0.68"} +{"timestamp":"2026-03-22T06:52:01.202236855Z","score":0.5414561472319478,"is_anomaly":false,"confidence":0.6400370628480027,"method":"SEAD","details":"MAD!:w=0.27,s=0.01 RRCF-fast:w=0.18,s=0.74 RRCF-mid:w=0.16,s=0.75 RRCF-slow:w=0.16,s=0.87 COPOD!:w=0.22,s=0.64"} +{"timestamp":"2026-03-22T06:52:27.556155207Z","score":0.6810978978973662,"is_anomaly":false,"confidence":0.8135851303348994,"method":"SEAD","details":"MAD!:w=0.28,s=0.41 RRCF-fast:w=0.18,s=0.79 RRCF-mid!:w=0.16,s=0.94 RRCF-slow:w=0.16,s=0.91 COPOD!:w=0.22,s=0.57"} +{"timestamp":"2026-03-22T06:52:57.551159076Z","score":0.42415149389921136,"is_anomaly":false,"confidence":0.506657485672834,"method":"SEAD","details":"MAD!:w=0.28,s=0.00 RRCF-fast:w=0.18,s=0.55 RRCF-mid:w=0.16,s=0.66 RRCF-slow:w=0.16,s=0.81 COPOD!:w=0.22,s=0.40"} +{"timestamp":"2026-03-22T06:53:27.583181988Z","score":0.5466474625318214,"is_anomaly":false,"confidence":0.6529813825944474,"method":"SEAD","details":"MAD!:w=0.28,s=0.38 RRCF-fast:w=0.18,s=0.41 RRCF-mid:w=0.16,s=0.58 RRCF-slow:w=0.16,s=0.66 COPOD!:w=0.22,s=0.77"} +{"timestamp":"2026-03-22T06:53:57.535635673Z","score":0.3277896300912164,"is_anomaly":false,"confidence":0.39155130230687807,"method":"SEAD","details":"MAD!:w=0.28,s=0.01 RRCF-fast:w=0.18,s=0.11 RRCF-mid:w=0.16,s=0.48 RRCF-slow:w=0.16,s=0.53 COPOD!:w=0.22,s=0.66"} +{"timestamp":"2026-03-22T06:54:27.577189767Z","score":0.36105276102260164,"is_anomaly":false,"confidence":0.4312847808533584,"method":"SEAD","details":"MAD!:w=0.29,s=0.30 RRCF-fast:w=0.18,s=0.41 RRCF-mid:w=0.16,s=0.53 RRCF-slow:w=0.16,s=0.61 COPOD!:w=0.22,s=0.10"} +{"timestamp":"2026-03-22T06:54:57.584632266Z","score":0.2586651981734519,"is_anomaly":false,"confidence":0.30898077885532155,"method":"SEAD","details":"MAD!:w=0.29,s=0.02 RRCF-fast:w=0.18,s=0.15 RRCF-mid:w=0.16,s=0.47 RRCF-slow:w=0.16,s=0.54 COPOD!:w=0.22,s=0.30"} +{"timestamp":"2026-03-22T06:55:27.53529494Z","score":0.35006957123919014,"is_anomaly":false,"confidence":0.4190990711820429,"method":"SEAD","details":"MAD!:w=0.29,s=0.01 RRCF-fast:w=0.18,s=0.30 RRCF-mid:w=0.16,s=0.41 RRCF-slow:w=0.16,s=0.49 COPOD!:w=0.22,s=0.70"} +{"timestamp":"2026-03-22T06:55:57.569837021Z","score":0.7715486791111726,"is_anomaly":false,"confidence":0.9236887788978588,"method":"SEAD","details":"MAD!:w=0.29,s=0.46 RRCF-fast:w=0.18,s=0.82 RRCF-mid:w=0.16,s=0.89 RRCF-slow!:w=0.16,s=0.93 COPOD!:w=0.21,s=0.94"} +{"timestamp":"2026-03-22T06:56:27.575368949Z","score":0.5012466314640845,"is_anomaly":false,"confidence":0.6000864254956648,"method":"SEAD","details":"MAD!:w=0.29,s=0.01 RRCF-fast:w=0.18,s=0.67 RRCF-mid:w=0.16,s=0.82 RRCF-slow!:w=0.16,s=0.93 COPOD!:w=0.21,s=0.49"} +{"timestamp":"2026-03-22T06:56:57.578058626Z","score":0.20317218669552617,"is_anomaly":false,"confidence":0.2432352930096291,"method":"SEAD","details":"MAD!:w=0.30,s=0.00 RRCF-fast:w=0.18,s=0.16 RRCF-mid:w=0.16,s=0.51 RRCF-slow:w=0.16,s=0.49 COPOD!:w=0.21,s=0.08"} +{"timestamp":"2026-03-22T06:57:27.532199064Z","score":0.31449749987699477,"is_anomaly":false,"confidence":0.37651261610928494,"method":"SEAD","details":"MAD!:w=0.30,s=0.07 RRCF-fast:w=0.18,s=0.25 RRCF-mid:w=0.16,s=0.41 RRCF-slow:w=0.16,s=0.52 COPOD!:w=0.21,s=0.49"} +{"timestamp":"2026-03-22T06:57:57.579837536Z","score":0.32128573223389945,"is_anomaly":false,"confidence":0.3846394060661384,"method":"SEAD","details":"MAD!:w=0.30,s=0.03 RRCF-fast:w=0.18,s=0.43 RRCF-mid:w=0.16,s=0.62 RRCF-slow:w=0.15,s=0.68 COPOD!:w=0.21,s=0.17"} +{"timestamp":"2026-03-22T06:58:27.582263798Z","score":0.6412701947551476,"is_anomaly":false,"confidence":0.7677209477169292,"method":"SEAD","details":"MAD!:w=0.30,s=0.42 RRCF-fast:w=0.18,s=0.41 RRCF-mid:w=0.16,s=0.73 RRCF-slow:w=0.15,s=0.83 COPOD!:w=0.21,s=0.94"} +{"timestamp":"2026-03-22T06:58:57.545189394Z","score":0.3709349760401068,"is_anomaly":false,"confidence":0.44722026456011976,"method":"SEAD","details":"MAD!:w=0.30,s=0.05 RRCF-fast:w=0.18,s=0.24 RRCF-mid:w=0.15,s=0.32 RRCF-slow:w=0.15,s=0.42 COPOD!:w=0.21,s=0.94"} +{"timestamp":"2026-03-22T06:59:27.548850828Z","score":0.4547956296468327,"is_anomaly":false,"confidence":0.5483274291973241,"method":"SEAD","details":"MAD!:w=0.31,s=0.10 RRCF-fast:w=0.18,s=0.80 RRCF-mid:w=0.15,s=0.77 RRCF-slow:w=0.15,s=0.88 COPOD!:w=0.21,s=0.14"} +{"timestamp":"2026-03-22T06:59:59.517630491Z","score":0.6333830786365082,"is_anomaly":false,"confidence":0.76364259585242,"method":"SEAD","details":"MAD!:w=0.31,s=0.40 RRCF-fast:w=0.18,s=0.71 RRCF-mid:w=0.15,s=0.72 RRCF-slow:w=0.15,s=0.84 COPOD!:w=0.21,s=0.71"} +{"timestamp":"2026-03-22T07:00:27.583935789Z","score":0.42530503365618677,"is_anomaly":false,"confidence":0.5127718925321965,"method":"SEAD","details":"MAD!:w=0.31,s=0.02 RRCF-fast:w=0.18,s=0.56 RRCF-mid:w=0.15,s=0.50 RRCF-slow:w=0.15,s=0.64 COPOD!:w=0.21,s=0.70"} +{"timestamp":"2026-03-22T07:00:57.542790714Z","score":0.2419102369002184,"is_anomaly":false,"confidence":0.29166071450382547,"method":"SEAD","details":"MAD!:w=0.31,s=0.04 RRCF-fast:w=0.18,s=0.15 RRCF-mid:w=0.15,s=0.26 RRCF-slow:w=0.15,s=0.49 COPOD!:w=0.21,s=0.42"} +{"timestamp":"2026-03-22T07:01:27.534174996Z","score":0.28379248769661924,"is_anomaly":false,"confidence":0.3421563336592282,"method":"SEAD","details":"MAD!:w=0.32,s=0.10 RRCF-fast:w=0.18,s=0.39 RRCF-mid:w=0.15,s=0.39 RRCF-slow:w=0.15,s=0.50 COPOD!:w=0.21,s=0.23"} +{"timestamp":"2026-03-22T07:01:57.532666335Z","score":0.2527539494032537,"is_anomaly":false,"confidence":0.30473450987947903,"method":"SEAD","details":"MAD!:w=0.32,s=0.04 RRCF-fast:w=0.18,s=0.30 RRCF-mid:w=0.15,s=0.36 RRCF-slow:w=0.15,s=0.45 COPOD!:w=0.21,s=0.32"} +{"timestamp":"2026-03-22T07:02:27.576272854Z","score":0.7421987187389274,"is_anomaly":false,"confidence":0.9096304577034213,"method":"SEAD","details":"MAD!:w=0.32,s=0.49 RRCF-fast:w=0.18,s=0.74 RRCF-mid:w=0.15,s=0.83 RRCF-slow:w=0.15,s=0.83 COPOD!:w=0.21,s=1.00"} +{"timestamp":"2026-03-22T07:02:57.525640894Z","score":0.4649207834770707,"is_anomaly":false,"confidence":0.5698017180474826,"method":"SEAD","details":"MAD!:w=0.32,s=0.10 RRCF-fast:w=0.17,s=0.36 RRCF-mid:w=0.15,s=0.58 RRCF-slow:w=0.15,s=0.56 COPOD!:w=0.20,s=0.98"} +{"timestamp":"2026-03-22T07:03:27.534615773Z","score":0.348900127183073,"is_anomaly":false,"confidence":0.42760809789804743,"method":"SEAD","details":"MAD!:w=0.32,s=0.04 RRCF-fast:w=0.18,s=0.24 RRCF-mid:w=0.15,s=0.29 RRCF-slow:w=0.15,s=0.50 COPOD!:w=0.20,s=0.87"} +{"timestamp":"2026-03-22T07:03:57.800529869Z","score":0.7550689917035727,"is_anomaly":false,"confidence":0.925404120459792,"method":"SEAD","details":"MAD!:w=0.33,s=0.37 RRCF-fast!:w=0.18,s=0.98 RRCF-mid:w=0.15,s=0.90 RRCF-slow!:w=0.15,s=0.94 COPOD!:w=0.20,s=0.95"} +{"timestamp":"2026-03-22T07:04:29.153208901Z","score":0.6289933786099674,"is_anomaly":false,"confidence":0.7708872575926173,"method":"SEAD","details":"MAD!:w=0.33,s=0.12 RRCF-fast!:w=0.17,s=0.98 RRCF-mid:w=0.15,s=0.86 RRCF-slow!:w=0.15,s=0.97 COPOD!:w=0.20,s=0.74"} +{"timestamp":"2026-03-22T07:04:57.638843477Z","score":0.7021697993852438,"is_anomaly":false,"confidence":0.8605714613541263,"method":"SEAD","details":"MAD!:w=0.34,s=0.48 RRCF-fast:w=0.17,s=0.78 RRCF-mid:w=0.15,s=0.66 RRCF-slow:w=0.15,s=0.84 COPOD!:w=0.20,s=0.94"} +{"timestamp":"2026-03-22T07:05:27.546615182Z","score":0.29190375277862224,"is_anomaly":false,"confidence":0.35845899764278527,"method":"SEAD","details":"MAD!:w=0.34,s=0.11 RRCF-fast:w=0.17,s=0.57 RRCF-mid:w=0.15,s=0.47 RRCF-slow:w=0.14,s=0.48 COPOD!:w=0.20,s=0.09"} +{"timestamp":"2026-03-22T07:05:57.533460634Z","score":0.34988115407099113,"is_anomaly":false,"confidence":0.4296554826326764,"method":"SEAD","details":"MAD!:w=0.34,s=0.13 RRCF-fast:w=0.17,s=0.40 RRCF-mid:w=0.15,s=0.59 RRCF-slow:w=0.14,s=0.70 COPOD!:w=0.20,s=0.25"} +{"timestamp":"2026-03-22T07:06:27.575423478Z","score":0.5182281134552895,"is_anomaly":false,"confidence":0.636386234610613,"method":"SEAD","details":"MAD!:w=0.34,s=0.47 RRCF-fast:w=0.17,s=0.61 RRCF-mid:w=0.15,s=0.69 RRCF-slow:w=0.14,s=0.71 COPOD!:w=0.20,s=0.26"} +{"timestamp":"2026-03-22T07:06:57.532615056Z","score":0.39046698039247507,"is_anomaly":false,"confidence":0.4794950427041657,"method":"SEAD","details":"MAD!:w=0.34,s=0.07 RRCF-fast:w=0.17,s=0.32 RRCF-mid:w=0.15,s=0.42 RRCF-slow:w=0.14,s=0.59 COPOD!:w=0.20,s=0.84"} +{"timestamp":"2026-03-22T07:07:29.926174527Z","score":0.47664808055398983,"is_anomaly":false,"confidence":0.5853257848086622,"method":"SEAD","details":"MAD!:w=0.34,s=0.16 RRCF-fast:w=0.17,s=0.82 RRCF-mid:w=0.15,s=0.75 RRCF-slow:w=0.14,s=0.83 COPOD!:w=0.20,s=0.27"} +{"timestamp":"2026-03-22T07:07:59.093122166Z","score":0.6255970581973106,"is_anomaly":false,"confidence":0.7682357361803206,"method":"SEAD","details":"MAD!:w=0.35,s=0.31 RRCF-fast:w=0.17,s=0.69 RRCF-mid:w=0.15,s=0.65 RRCF-slow:w=0.14,s=0.87 COPOD!:w=0.20,s=0.93"} +{"timestamp":"2026-03-22T07:08:27.581625351Z","score":0.4588962145685559,"is_anomaly":false,"confidence":0.5635264210565504,"method":"SEAD","details":"MAD!:w=0.35,s=0.01 RRCF-fast:w=0.17,s=0.68 RRCF-mid:w=0.15,s=0.64 RRCF-slow:w=0.14,s=0.75 COPOD!:w=0.19,s=0.73"} +{"timestamp":"2026-03-22T07:08:57.576596571Z","score":0.5654694918593931,"is_anomaly":false,"confidence":0.6974086126649248,"method":"SEAD","details":"MAD!:w=0.35,s=0.49 RRCF-fast:w=0.17,s=0.57 RRCF-mid:w=0.15,s=0.54 RRCF-slow:w=0.14,s=0.61 COPOD!:w=0.19,s=0.68"} +{"timestamp":"2026-03-22T07:09:27.526544146Z","score":0.28904278936132405,"is_anomaly":false,"confidence":0.3564841846134561,"method":"SEAD","details":"MAD!:w=0.36,s=0.09 RRCF-fast:w=0.17,s=0.35 RRCF-mid:w=0.15,s=0.32 RRCF-slow:w=0.14,s=0.37 COPOD!:w=0.19,s=0.53"} +{"timestamp":"2026-03-22T07:09:57.578008656Z","score":0.41966187311267167,"is_anomaly":false,"confidence":0.517580185897363,"method":"SEAD","details":"MAD!:w=0.36,s=0.43 RRCF-fast:w=0.17,s=0.50 RRCF-mid:w=0.15,s=0.46 RRCF-slow:w=0.14,s=0.60 COPOD!:w=0.19,s=0.18"} +{"timestamp":"2026-03-22T07:10:27.544042862Z","score":0.3428984293113568,"is_anomaly":false,"confidence":0.42290578238742293,"method":"SEAD","details":"MAD!:w=0.36,s=0.07 RRCF-fast:w=0.17,s=0.26 RRCF-mid:w=0.15,s=0.22 RRCF-slow:w=0.14,s=0.40 COPOD!:w=0.19,s=0.98"} +{"timestamp":"2026-03-22T07:10:58.140640805Z","score":0.4343830892057944,"is_anomaly":false,"confidence":0.5357362545094574,"method":"SEAD","details":"MAD!:w=0.36,s=0.09 RRCF-fast:w=0.17,s=0.71 RRCF-mid:w=0.15,s=0.87 RRCF-slow:w=0.14,s=0.90 COPOD!:w=0.19,s=0.18"} +{"timestamp":"2026-03-22T07:11:28.386460737Z","score":0.6678951036649149,"is_anomaly":false,"confidence":0.823732852715009,"method":"SEAD","details":"MAD!:w=0.36,s=0.56 RRCF-fast:w=0.17,s=0.69 RRCF-mid:w=0.14,s=0.70 RRCF-slow!:w=0.14,s=0.92 COPOD!:w=0.19,s=0.65"} +{"timestamp":"2026-03-22T07:11:57.556648507Z","score":0.3767612619598334,"is_anomaly":false,"confidence":0.4646697174506976,"method":"SEAD","details":"MAD!:w=0.36,s=0.03 RRCF-fast:w=0.17,s=0.54 RRCF-mid:w=0.14,s=0.55 RRCF-slow:w=0.14,s=0.72 COPOD!:w=0.19,s=0.53"} +{"timestamp":"2026-03-22T07:12:27.535369657Z","score":0.28512599812136097,"is_anomaly":false,"confidence":0.36101544281558823,"method":"SEAD","details":"MAD!:w=0.37,s=0.10 RRCF-fast:w=0.16,s=0.30 RRCF-mid:w=0.14,s=0.39 RRCF-slow:w=0.14,s=0.67 COPOD!:w=0.19,s=0.28"} +{"timestamp":"2026-03-22T07:12:58.583003608Z","score":0.5516784187363724,"is_anomaly":false,"confidence":0.6985137446047367,"method":"SEAD","details":"MAD!:w=0.37,s=0.58 RRCF-fast:w=0.16,s=0.54 RRCF-mid:w=0.14,s=0.65 RRCF-slow:w=0.13,s=0.64 COPOD!:w=0.19,s=0.37"} +{"timestamp":"2026-03-22T07:13:27.576766625Z","score":0.34045819271916056,"is_anomaly":false,"confidence":0.4310749142994213,"method":"SEAD","details":"MAD!:w=0.37,s=0.20 RRCF-fast:w=0.16,s=0.32 RRCF-mid:w=0.14,s=0.45 RRCF-slow:w=0.13,s=0.52 COPOD!:w=0.19,s=0.42"} +{"timestamp":"2026-03-22T07:13:57.578496851Z","score":0.35474990462256695,"is_anomaly":false,"confidence":0.44917052373313193,"method":"SEAD","details":"MAD!:w=0.37,s=0.50 RRCF-fast:w=0.16,s=0.30 RRCF-mid:w=0.14,s=0.40 RRCF-slow:w=0.13,s=0.46 COPOD!:w=0.19,s=0.01"} +{"timestamp":"2026-03-22T07:14:27.554521292Z","score":0.30962579720942957,"is_anomaly":false,"confidence":0.3920361349830816,"method":"SEAD","details":"MAD!:w=0.37,s=0.08 RRCF-fast:w=0.16,s=0.22 RRCF-mid:w=0.14,s=0.19 RRCF-slow:w=0.13,s=0.44 COPOD!:w=0.19,s=0.83"} +{"timestamp":"2026-03-22T07:14:57.584131514Z","score":0.677757223580969,"is_anomaly":false,"confidence":0.8581498207974753,"method":"SEAD","details":"MAD!:w=0.37,s=0.36 RRCF-fast!:w=0.16,s=0.95 RRCF-mid:w=0.14,s=0.86 RRCF-slow:w=0.13,s=0.63 COPOD!:w=0.19,s=0.97"} +{"timestamp":"2026-03-22T07:15:27.613237349Z","score":0.6388132175283369,"is_anomaly":false,"confidence":0.8130496186454077,"method":"SEAD","details":"MAD!:w=0.38,s=0.36 RRCF-fast:w=0.16,s=0.82 RRCF-mid:w=0.14,s=0.73 RRCF-slow:w=0.13,s=0.84 COPOD!:w=0.19,s=0.83"} +{"timestamp":"2026-03-22T07:15:57.576978519Z","score":0.4223307602380646,"is_anomaly":false,"confidence":0.5375215385842449,"method":"SEAD","details":"MAD!:w=0.38,s=0.03 RRCF-fast!:w=0.16,s=0.89 RRCF-mid:w=0.14,s=0.78 RRCF-slow:w=0.13,s=0.88 COPOD!:w=0.19,s=0.21"} +{"timestamp":"2026-03-22T07:16:27.533905076Z","score":0.3311046096710823,"is_anomaly":false,"confidence":0.4214134417356017,"method":"SEAD","details":"MAD!:w=0.38,s=0.19 RRCF-fast:w=0.16,s=0.56 RRCF-mid:w=0.14,s=0.44 RRCF-slow:w=0.13,s=0.38 COPOD!:w=0.19,s=0.32"} +{"timestamp":"2026-03-22T07:16:57.787054718Z","score":0.5020617031846758,"is_anomaly":false,"confidence":0.6389991082059245,"method":"SEAD","details":"MAD!:w=0.38,s=0.52 RRCF-fast:w=0.16,s=0.65 RRCF-mid:w=0.14,s=0.51 RRCF-slow:w=0.13,s=0.61 COPOD!:w=0.19,s=0.25"} +{"timestamp":"2026-03-22T07:17:27.577272565Z","score":0.5097625844253476,"is_anomaly":false,"confidence":0.6488004059627044,"method":"SEAD","details":"MAD!:w=0.38,s=0.45 RRCF-fast:w=0.16,s=0.44 RRCF-mid:w=0.14,s=0.50 RRCF-slow:w=0.13,s=0.52 COPOD!:w=0.19,s=0.69"} +{"timestamp":"2026-03-22T07:17:57.543310466Z","score":0.283613616914223,"is_anomaly":false,"confidence":0.3609692735647334,"method":"SEAD","details":"MAD!:w=0.38,s=0.13 RRCF-fast:w=0.16,s=0.12 RRCF-mid:w=0.14,s=0.19 RRCF-slow:w=0.13,s=0.34 COPOD!:w=0.19,s=0.76"} +{"timestamp":"2026-03-22T07:18:29.651681245Z","score":0.44593559816156714,"is_anomaly":false,"confidence":0.5675645996000246,"method":"SEAD","details":"MAD!:w=0.39,s=0.22 RRCF-fast:w=0.16,s=0.80 RRCF-mid:w=0.14,s=0.73 RRCF-slow:w=0.13,s=0.84 COPOD!:w=0.18,s=0.13"} +{"timestamp":"2026-03-22T07:19:00.132752143Z","score":0.5618718867117615,"is_anomaly":false,"confidence":0.7159463292942536,"method":"SEAD","details":"MAD!:w=0.39,s=0.45 RRCF-fast:w=0.16,s=0.53 RRCF-mid:w=0.14,s=0.62 RRCF-slow:w=0.13,s=0.83 COPOD!:w=0.18,s=0.60"} +{"timestamp":"2026-03-22T07:19:27.581088912Z","score":0.33868987342936757,"is_anomaly":false,"confidence":0.43156416504477024,"method":"SEAD","details":"MAD!:w=0.39,s=0.03 RRCF-fast:w=0.16,s=0.45 RRCF-mid:w=0.14,s=0.51 RRCF-slow:w=0.13,s=0.56 COPOD!:w=0.18,s=0.61"} +{"timestamp":"2026-03-22T07:19:57.574537654Z","score":0.558395938147376,"is_anomaly":false,"confidence":0.7115172188967724,"method":"SEAD","details":"MAD!:w=0.39,s=0.55 RRCF-fast:w=0.16,s=0.42 RRCF-mid:w=0.14,s=0.47 RRCF-slow:w=0.13,s=0.57 COPOD!:w=0.18,s=0.75"} +{"timestamp":"2026-03-22T07:20:27.537159976Z","score":0.24953163111157461,"is_anomaly":false,"confidence":0.3179572773833889,"method":"SEAD","details":"MAD!:w=0.39,s=0.11 RRCF-fast:w=0.16,s=0.22 RRCF-mid:w=0.14,s=0.24 RRCF-slow:w=0.13,s=0.32 COPOD!:w=0.18,s=0.52"} +{"timestamp":"2026-03-22T07:20:57.585790054Z","score":0.22241906730600508,"is_anomaly":false,"confidence":0.28341000603305777,"method":"SEAD","details":"MAD!:w=0.40,s=0.18 RRCF-fast:w=0.16,s=0.30 RRCF-mid:w=0.14,s=0.37 RRCF-slow:w=0.13,s=0.37 COPOD!:w=0.18,s=0.04"} +{"timestamp":"2026-03-22T07:21:27.577595951Z","score":0.27265061070267277,"is_anomaly":false,"confidence":0.3474158585417066,"method":"SEAD","details":"MAD!:w=0.40,s=0.07 RRCF-fast:w=0.16,s=0.38 RRCF-mid:w=0.14,s=0.41 RRCF-slow:w=0.13,s=0.43 COPOD!:w=0.18,s=0.41"} +{"timestamp":"2026-03-22T07:21:57.534624675Z","score":0.2892172171688504,"is_anomaly":false,"confidence":0.3685252989120643,"method":"SEAD","details":"MAD!:w=0.40,s=0.07 RRCF-fast:w=0.16,s=0.09 RRCF-mid:w=0.14,s=0.22 RRCF-slow:w=0.13,s=0.32 COPOD!:w=0.18,s=0.97"} +{"timestamp":"2026-03-22T07:22:28.876199055Z","score":0.6958561508105986,"is_anomaly":false,"confidence":0.901895330327346,"method":"SEAD","details":"MAD!:w=0.40,s=0.39 RRCF-fast!:w=0.16,s=0.98 RRCF-mid!:w=0.14,s=0.91 RRCF-slow!:w=0.13,s=0.89 COPOD!:w=0.18,s=0.84"} +{"timestamp":"2026-03-22T07:22:57.879107421Z","score":0.368569258980458,"is_anomaly":false,"confidence":0.47770058968288476,"method":"SEAD","details":"MAD!:w=0.40,s=0.05 RRCF-fast:w=0.16,s=0.55 RRCF-mid:w=0.14,s=0.66 RRCF-slow:w=0.13,s=0.79 COPOD!:w=0.18,s=0.41"} +{"timestamp":"2026-03-22T07:23:30.473820587Z","score":0.6130370566557193,"is_anomaly":false,"confidence":0.7945539578422202,"method":"SEAD","details":"MAD!:w=0.41,s=0.66 RRCF-fast:w=0.16,s=0.60 RRCF-mid!:w=0.13,s=0.81 RRCF-slow:w=0.13,s=0.77 COPOD!:w=0.18,s=0.26"} +{"timestamp":"2026-03-22T07:23:57.579099838Z","score":0.38615465673016425,"is_anomaly":false,"confidence":0.5004929269984831,"method":"SEAD","details":"MAD!:w=0.41,s=0.12 RRCF-fast:w=0.16,s=0.59 RRCF-mid:w=0.13,s=0.42 RRCF-slow!:w=0.12,s=0.91 COPOD!:w=0.18,s=0.43"} +{"timestamp":"2026-03-22T07:24:27.53480191Z","score":0.28663246922842117,"is_anomaly":false,"confidence":0.37150276708220537,"method":"SEAD","details":"MAD!:w=0.41,s=0.23 RRCF-fast:w=0.15,s=0.12 RRCF-mid:w=0.13,s=0.27 RRCF-slow:w=0.12,s=0.38 COPOD!:w=0.18,s=0.52"} +{"timestamp":"2026-03-22T07:24:57.577062344Z","score":0.35140693892453306,"is_anomaly":false,"confidence":0.4554566010395551,"method":"SEAD","details":"MAD!:w=0.41,s=0.49 RRCF-fast:w=0.15,s=0.26 RRCF-mid:w=0.13,s=0.42 RRCF-slow:w=0.12,s=0.41 COPOD!:w=0.18,s=0.02"} +{"timestamp":"2026-03-22T07:25:27.545095407Z","score":0.26172928969886783,"is_anomaly":false,"confidence":0.34136314645072907,"method":"SEAD","details":"MAD!:w=0.41,s=0.10 RRCF-fast:w=0.16,s=0.10 RRCF-mid:w=0.13,s=0.19 RRCF-slow:w=0.12,s=0.32 COPOD!:w=0.18,s=0.79"} +{"timestamp":"2026-03-22T07:25:58.975952134Z","score":0.6386400173213503,"is_anomaly":false,"confidence":0.8329528804857614,"method":"SEAD","details":"MAD!:w=0.41,s=0.26 RRCF-fast!:w=0.16,s=0.93 RRCF-mid!:w=0.13,s=0.89 RRCF-slow!:w=0.12,s=0.95 COPOD!:w=0.18,s=0.85"} +{"timestamp":"2026-03-22T07:26:27.579366322Z","score":0.7381214403180731,"is_anomaly":false,"confidence":0.9627025604189053,"method":"SEAD","details":"MAD!:w=0.42,s=0.47 RRCF-fast!:w=0.15,s=0.90 RRCF-mid!:w=0.13,s=0.96 RRCF-slow!:w=0.12,s=0.99 COPOD!:w=0.17,s=0.89"} +{"timestamp":"2026-03-22T07:26:57.593391989Z","score":0.76522361806095,"is_anomaly":false,"confidence":0.9980508574345732,"method":"SEAD","details":"MAD!:w=0.42,s=0.57 RRCF-fast!:w=0.15,s=0.85 RRCF-mid!:w=0.13,s=0.91 RRCF-slow!:w=0.12,s=0.94 COPOD!:w=0.17,s=0.92"} +{"timestamp":"2026-03-22T07:27:27.584478228Z","score":0.40289366787386094,"is_anomaly":false,"confidence":0.5254782539192866,"method":"SEAD","details":"MAD!:w=0.42,s=0.15 RRCF-fast:w=0.15,s=0.71 RRCF-mid:w=0.13,s=0.73 RRCF-slow:w=0.12,s=0.82 COPOD!:w=0.17,s=0.20"} +{"timestamp":"2026-03-22T07:27:57.533493702Z","score":0.3588560247120472,"is_anomaly":false,"confidence":0.46804170010718876,"method":"SEAD","details":"MAD!:w=0.43,s=0.23 RRCF-fast:w=0.15,s=0.36 RRCF-mid:w=0.13,s=0.64 RRCF-slow:w=0.12,s=0.56 COPOD!:w=0.17,s=0.33"} +{"timestamp":"2026-03-22T07:28:27.577893856Z","score":0.4804417589968,"is_anomaly":false,"confidence":0.6266211577854596,"method":"SEAD","details":"MAD!:w=0.43,s=0.46 RRCF-fast:w=0.15,s=0.56 RRCF-mid:w=0.13,s=0.58 RRCF-slow:w=0.12,s=0.75 COPOD!:w=0.17,s=0.20"} +{"timestamp":"2026-03-22T07:28:57.542020101Z","score":0.35286626508400754,"is_anomaly":false,"confidence":0.46112829865099875,"method":"SEAD","details":"MAD!:w=0.43,s=0.07 RRCF-fast:w=0.15,s=0.22 RRCF-mid:w=0.13,s=0.46 RRCF-slow:w=0.12,s=0.47 COPOD!:w=0.17,s=0.99"} +{"timestamp":"2026-03-22T07:29:27.573896209Z","score":0.45871478167462004,"is_anomaly":false,"confidence":0.5994519390776089,"method":"SEAD","details":"MAD!:w=0.43,s=0.13 RRCF-fast!:w=0.15,s=0.94 RRCF-mid!:w=0.13,s=0.91 RRCF-slow:w=0.12,s=0.87 COPOD!:w=0.17,s=0.24"} +{"timestamp":"2026-03-22T07:29:57.567541416Z","score":0.6595565526929836,"is_anomaly":false,"confidence":0.8619134814007401,"method":"SEAD","details":"MAD!:w=0.43,s=0.52 RRCF-fast:w=0.15,s=0.68 RRCF-mid:w=0.13,s=0.78 RRCF-slow:w=0.12,s=0.81 COPOD!:w=0.17,s=0.79"} +{"timestamp":"2026-03-22T07:30:27.581179238Z","score":0.34324314294255276,"is_anomaly":false,"confidence":0.44855273000109297,"method":"SEAD","details":"MAD!:w=0.44,s=0.03 RRCF-fast:w=0.15,s=0.56 RRCF-mid:w=0.13,s=0.55 RRCF-slow:w=0.12,s=0.68 COPOD!:w=0.17,s=0.56"} +{"timestamp":"2026-03-22T07:30:57.537771071Z","score":0.19676470518844041,"is_anomaly":false,"confidence":0.25713360192284096,"method":"SEAD","details":"MAD!:w=0.44,s=0.11 RRCF-fast:w=0.15,s=0.10 RRCF-mid:w=0.13,s=0.22 RRCF-slow:w=0.12,s=0.37 COPOD!:w=0.17,s=0.39"} +{"timestamp":"2026-03-22T07:31:27.538719914Z","score":0.28425927657756106,"is_anomaly":false,"confidence":0.3714721682243214,"method":"SEAD","details":"MAD!:w=0.44,s=0.26 RRCF-fast:w=0.15,s=0.22 RRCF-mid:w=0.13,s=0.25 RRCF-slow:w=0.12,s=0.34 COPOD!:w=0.17,s=0.39"} +{"timestamp":"2026-03-22T07:31:57.534967951Z","score":0.20799452745372188,"is_anomaly":false,"confidence":0.2718088184219572,"method":"SEAD","details":"MAD!:w=0.44,s=0.07 RRCF-fast:w=0.15,s=0.21 RRCF-mid:w=0.13,s=0.35 RRCF-slow:w=0.12,s=0.36 COPOD!:w=0.17,s=0.35"} +{"timestamp":"2026-03-22T07:32:27.581651037Z","score":0.6980744270149524,"is_anomaly":false,"confidence":0.9166614928563706,"method":"SEAD","details":"MAD!:w=0.44,s=0.61 RRCF-fast:w=0.15,s=0.52 RRCF-mid:w=0.13,s=0.77 RRCF-slow:w=0.12,s=0.73 COPOD!:w=0.17,s=0.99"} +{"timestamp":"2026-03-22T07:32:57.546647802Z","score":0.3068668284324667,"is_anomaly":false,"confidence":0.40295560784520695,"method":"SEAD","details":"MAD!:w=0.44,s=0.20 RRCF-fast:w=0.15,s=0.12 RRCF-mid:w=0.13,s=0.15 RRCF-slow:w=0.12,s=0.36 COPOD!:w=0.17,s=0.84"} +{"timestamp":"2026-03-22T07:33:27.56970443Z","score":0.40471132301702667,"is_anomaly":false,"confidence":0.5314380117304,"method":"SEAD","details":"MAD!:w=0.45,s=0.14 RRCF-fast:w=0.15,s=0.83 RRCF-mid:w=0.13,s=0.84 RRCF-slow!:w=0.12,s=0.95 COPOD!:w=0.16,s=0.04"} +{"timestamp":"2026-03-22T07:33:57.624547381Z","score":0.6357282746783917,"is_anomaly":false,"confidence":0.8347929773184732,"method":"SEAD","details":"MAD!:w=0.45,s=0.47 RRCF-fast:w=0.15,s=0.81 RRCF-mid:w=0.12,s=0.76 RRCF-slow:w=0.11,s=0.75 COPOD!:w=0.16,s=0.77"} +{"timestamp":"2026-03-22T07:34:27.587215862Z","score":0.43353867393203976,"is_anomaly":false,"confidence":0.5692920305888853,"method":"SEAD","details":"MAD!:w=0.45,s=0.17 RRCF-fast:w=0.15,s=0.68 RRCF-mid:w=0.12,s=0.56 RRCF-slow:w=0.11,s=0.69 COPOD!:w=0.16,s=0.66"} +{"timestamp":"2026-03-22T07:34:57.536395078Z","score":0.2542040566239322,"is_anomaly":false,"confidence":0.33380261619302654,"method":"SEAD","details":"MAD!:w=0.46,s=0.05 RRCF-fast:w=0.15,s=0.28 RRCF-mid:w=0.12,s=0.43 RRCF-slow:w=0.11,s=0.36 COPOD!:w=0.16,s=0.58"} +{"timestamp":"2026-03-22T07:35:27.525886403Z","score":0.30360650886487794,"is_anomaly":false,"confidence":0.39961275970042565,"method":"SEAD","details":"MAD!:w=0.46,s=0.28 RRCF-fast:w=0.14,s=0.37 RRCF-mid:w=0.12,s=0.31 RRCF-slow:w=0.11,s=0.32 COPOD!:w=0.16,s=0.30"} +{"timestamp":"2026-03-22T07:35:57.538638121Z","score":0.20246615036290383,"is_anomaly":false,"confidence":0.2664898634582633,"method":"SEAD","details":"MAD!:w=0.46,s=0.05 RRCF-fast:w=0.14,s=0.33 RRCF-mid:w=0.12,s=0.32 RRCF-slow:w=0.11,s=0.40 COPOD!:w=0.16,s=0.30"} +{"timestamp":"2026-03-22T07:36:29.653061144Z","score":0.6468980446538655,"is_anomaly":false,"confidence":0.8514597194752217,"method":"SEAD","details":"MAD!:w=0.46,s=0.63 RRCF-fast:w=0.14,s=0.60 RRCF-mid:w=0.12,s=0.51 RRCF-slow:w=0.11,s=0.53 COPOD!:w=0.16,s=0.90"} +{"timestamp":"2026-03-22T07:36:57.584778568Z","score":0.26783325913313055,"is_anomaly":false,"confidence":0.35252731643307345,"method":"SEAD","details":"MAD!:w=0.46,s=0.23 RRCF-fast:w=0.14,s=0.25 RRCF-mid:w=0.12,s=0.15 RRCF-slow:w=0.11,s=0.27 COPOD!:w=0.16,s=0.48"} +{"timestamp":"2026-03-22T07:37:27.534633201Z","score":0.270700634491391,"is_anomaly":false,"confidence":0.35630141134393517,"method":"SEAD","details":"MAD!:w=0.46,s=0.15 RRCF-fast:w=0.14,s=0.27 RRCF-mid:w=0.12,s=0.30 RRCF-slow:w=0.11,s=0.47 COPOD!:w=0.16,s=0.46"} +{"timestamp":"2026-03-22T07:37:57.581471089Z","score":0.6087179147706805,"is_anomaly":false,"confidence":0.8012062939956955,"method":"SEAD","details":"MAD!:w=0.46,s=0.48 RRCF-fast:w=0.14,s=0.62 RRCF-mid:w=0.12,s=0.71 RRCF-slow:w=0.11,s=0.76 COPOD!:w=0.16,s=0.79"} +{"timestamp":"2026-03-22T07:38:27.606537877Z","score":0.2512568448128767,"is_anomaly":false,"confidence":0.3307091192632544,"method":"SEAD","details":"MAD!:w=0.46,s=0.04 RRCF-fast:w=0.14,s=0.34 RRCF-mid:w=0.12,s=0.48 RRCF-slow:w=0.11,s=0.47 COPOD!:w=0.16,s=0.47"} +{"timestamp":"2026-03-22T07:38:57.576074241Z","score":0.14044855769187786,"is_anomaly":false,"confidence":0.18573489926113956,"method":"SEAD","details":"MAD!:w=0.47,s=0.08 RRCF-fast:w=0.14,s=0.09 RRCF-mid:w=0.12,s=0.15 RRCF-slow:w=0.11,s=0.23 COPOD!:w=0.16,s=0.29"} +{"timestamp":"2026-03-22T07:39:27.606140196Z","score":0.6002637968191779,"is_anomaly":false,"confidence":0.7938133197274307,"method":"SEAD","details":"MAD!:w=0.47,s=0.63 RRCF-fast:w=0.14,s=0.41 RRCF-mid:w=0.12,s=0.52 RRCF-slow:w=0.11,s=0.57 COPOD!:w=0.16,s=0.76"} +{"timestamp":"2026-03-22T07:39:57.57884192Z","score":0.19459839210656665,"is_anomaly":false,"confidence":0.2573448481655934,"method":"SEAD","details":"MAD!:w=0.47,s=0.18 RRCF-fast:w=0.14,s=0.16 RRCF-mid:w=0.12,s=0.15 RRCF-slow:w=0.11,s=0.20 COPOD!:w=0.16,s=0.29"} +{"timestamp":"2026-03-22T07:40:27.572959398Z","score":0.5323105514889596,"is_anomaly":false,"confidence":0.7039491774158755,"method":"SEAD","details":"MAD!:w=0.47,s=0.60 RRCF-fast!:w=0.14,s=0.85 RRCF-mid:w=0.12,s=0.42 RRCF-slow:w=0.11,s=0.55 COPOD!:w=0.16,s=0.11"} +{"timestamp":"2026-03-22T07:40:57.536875951Z","score":0.27252749096364975,"is_anomaly":false,"confidence":0.36040146593083766,"method":"SEAD","details":"MAD!:w=0.47,s=0.10 RRCF-fast:w=0.14,s=0.30 RRCF-mid:w=0.12,s=0.25 RRCF-slow:w=0.11,s=0.27 COPOD!:w=0.16,s=0.79"} +{"timestamp":"2026-03-22T07:41:27.636168736Z","score":0.5413439767028011,"is_anomaly":false,"confidence":0.7158953472423879,"method":"SEAD","details":"MAD!:w=0.47,s=0.42 RRCF-fast:w=0.14,s=0.77 RRCF-mid:w=0.12,s=0.70 RRCF-slow:w=0.11,s=0.69 COPOD!:w=0.16,s=0.47"} +{"timestamp":"2026-03-22T07:41:57.743284411Z","score":0.5417345071434857,"is_anomaly":false,"confidence":0.7164118006204147,"method":"SEAD","details":"MAD!:w=0.47,s=0.32 RRCF-fast:w=0.14,s=0.78 RRCF-mid:w=0.12,s=0.71 RRCF-slow:w=0.11,s=0.60 COPOD!:w=0.16,s=0.84"} +{"timestamp":"2026-03-22T07:42:27.587587062Z","score":0.6701869183824748,"is_anomaly":false,"confidence":0.8875836853933194,"method":"SEAD","details":"MAD!:w=0.47,s=0.64 RRCF-fast:w=0.14,s=0.64 RRCF-mid:w=0.12,s=0.64 RRCF-slow:w=0.11,s=0.51 COPOD!:w=0.15,s=0.95"} +{"timestamp":"2026-03-22T07:42:57.578644909Z","score":0.208299246594988,"is_anomaly":false,"confidence":0.27586783311684815,"method":"SEAD","details":"MAD!:w=0.48,s=0.20 RRCF-fast:w=0.14,s=0.41 RRCF-mid:w=0.12,s=0.17 RRCF-slow:w=0.11,s=0.30 COPOD!:w=0.15,s=0.01"} +{"timestamp":"2026-03-22T07:43:27.534267716Z","score":0.3144197620797573,"is_anomaly":false,"confidence":0.4164119643827106,"method":"SEAD","details":"MAD!:w=0.48,s=0.26 RRCF-fast:w=0.14,s=0.64 RRCF-mid:w=0.12,s=0.28 RRCF-slow:w=0.11,s=0.30 COPOD!:w=0.15,s=0.22"} +{"timestamp":"2026-03-22T07:43:57.590950685Z","score":0.48933502948818236,"is_anomaly":false,"confidence":0.648066646710195,"method":"SEAD","details":"MAD!:w=0.48,s=0.55 RRCF-fast:w=0.14,s=0.67 RRCF-mid:w=0.12,s=0.48 RRCF-slow:w=0.11,s=0.50 COPOD!:w=0.15,s=0.13"} +{"timestamp":"2026-03-22T07:44:27.53899329Z","score":0.298949656683851,"is_anomaly":false,"confidence":0.3959236307789124,"method":"SEAD","details":"MAD!:w=0.47,s=0.12 RRCF-fast:w=0.14,s=0.33 RRCF-mid:w=0.12,s=0.19 RRCF-slow:w=0.11,s=0.19 COPOD!:w=0.16,s=0.98"} +{"timestamp":"2026-03-22T07:44:57.624042173Z","score":0.5461639650197292,"is_anomaly":false,"confidence":0.72332988246211,"method":"SEAD","details":"MAD!:w=0.48,s=0.41 RRCF-fast!:w=0.14,s=0.92 RRCF-mid:w=0.12,s=0.69 RRCF-slow:w=0.11,s=0.73 COPOD!:w=0.15,s=0.37"} +{"timestamp":"2026-03-22T07:45:27.783146429Z","score":0.6406131904010798,"is_anomaly":false,"confidence":0.8567110568958033,"method":"SEAD","details":"MAD!:w=0.48,s=0.48 RRCF-fast:w=0.14,s=0.81 RRCF-mid:w=0.12,s=0.69 RRCF-slow:w=0.11,s=0.79 COPOD!:w=0.15,s=0.84"} +{"timestamp":"2026-03-22T07:45:57.571854403Z","score":0.6603305122664895,"is_anomaly":false,"confidence":0.8830796173743879,"method":"SEAD","details":"MAD!:w=0.48,s=0.66 RRCF-fast:w=0.14,s=0.63 RRCF-mid:w=0.12,s=0.54 RRCF-slow:w=0.11,s=0.60 COPOD!:w=0.15,s=0.83"} +{"timestamp":"2026-03-22T07:46:27.584150937Z","score":0.3045520087892193,"is_anomaly":false,"confidence":0.4072864518543517,"method":"SEAD","details":"MAD!:w=0.48,s=0.21 RRCF-fast:w=0.14,s=0.61 RRCF-mid:w=0.12,s=0.44 RRCF-slow:w=0.11,s=0.34 COPOD!:w=0.15,s=0.21"} +{"timestamp":"2026-03-22T07:46:57.54227897Z","score":0.30951367472923985,"is_anomaly":false,"confidence":0.41392183516386116,"method":"SEAD","details":"MAD!:w=0.48,s=0.30 RRCF-fast:w=0.14,s=0.34 RRCF-mid:w=0.12,s=0.11 RRCF-slow:w=0.11,s=0.33 COPOD!:w=0.15,s=0.46"} +{"timestamp":"2026-03-22T07:47:27.584047474Z","score":0.43795145722852497,"is_anomaly":false,"confidence":0.5856854985399227,"method":"SEAD","details":"MAD!:w=0.48,s=0.57 RRCF-fast:w=0.14,s=0.46 RRCF-mid:w=0.12,s=0.32 RRCF-slow:w=0.11,s=0.42 COPOD!:w=0.15,s=0.10"} +{"timestamp":"2026-03-22T07:47:57.535499369Z","score":0.2825394066002027,"is_anomaly":false,"confidence":0.377848344789194,"method":"SEAD","details":"MAD!:w=0.48,s=0.09 RRCF-fast:w=0.14,s=0.36 RRCF-mid:w=0.12,s=0.25 RRCF-slow:w=0.11,s=0.21 COPOD!:w=0.15,s=0.90"} +{"timestamp":"2026-03-22T07:48:27.5362417Z","score":0.2116528815589212,"is_anomaly":false,"confidence":0.2830496882867181,"method":"SEAD","details":"MAD!:w=0.48,s=0.11 RRCF-fast:w=0.14,s=0.24 RRCF-mid:w=0.12,s=0.15 RRCF-slow:w=0.11,s=0.28 COPOD!:w=0.15,s=0.52"} +{"timestamp":"2026-03-22T07:48:57.635911401Z","score":0.6453409866515658,"is_anomaly":false,"confidence":0.8694989230755708,"method":"SEAD","details":"MAD!:w=0.49,s=0.51 RRCF-fast:w=0.14,s=0.72 RRCF-mid:w=0.12,s=0.70 RRCF-slow:w=0.11,s=0.64 COPOD!:w=0.15,s=0.98"} +{"timestamp":"2026-03-22T07:49:27.577990132Z","score":0.4588554716242338,"is_anomaly":false,"confidence":0.6182380271470649,"method":"SEAD","details":"MAD!:w=0.49,s=0.26 RRCF-fast:w=0.14,s=0.63 RRCF-mid:w=0.12,s=0.53 RRCF-slow:w=0.11,s=0.50 COPOD!:w=0.15,s=0.88"} +{"timestamp":"2026-03-22T07:49:57.535257999Z","score":0.4216981494455068,"is_anomaly":false,"confidence":0.5681741813863755,"method":"SEAD","details":"MAD!:w=0.49,s=0.06 RRCF-fast!:w=0.13,s=0.98 RRCF-mid!:w=0.12,s=0.93 RRCF-slow!:w=0.11,s=0.87 COPOD!:w=0.15,s=0.36"} +{"timestamp":"2026-03-22T07:50:27.533773381Z","score":0.4065296222946116,"is_anomaly":false,"confidence":0.5477368958347807,"method":"SEAD","details":"MAD!:w=0.50,s=0.30 RRCF-fast:w=0.13,s=0.73 RRCF-mid:w=0.12,s=0.55 RRCF-slow:w=0.11,s=0.45 COPOD!:w=0.15,s=0.31"} +{"timestamp":"2026-03-22T07:50:57.580459757Z","score":0.6886808117700521,"is_anomaly":false,"confidence":0.9278927521462073,"method":"SEAD","details":"MAD!:w=0.50,s=0.65 RRCF-fast:w=0.13,s=0.64 RRCF-mid:w=0.12,s=0.64 RRCF-slow:w=0.11,s=0.58 COPOD!:w=0.15,s=0.99"} +{"timestamp":"2026-03-22T07:51:29.662558258Z","score":0.5226548668464301,"is_anomaly":false,"confidence":0.7041980181998629,"method":"SEAD","details":"MAD!:w=0.50,s=0.59 RRCF-fast:w=0.13,s=0.57 RRCF-mid:w=0.12,s=0.61 RRCF-slow:w=0.11,s=0.33 COPOD!:w=0.15,s=0.31"} +{"timestamp":"2026-03-22T07:51:57.534104102Z","score":0.3401912089747425,"is_anomaly":false,"confidence":0.45835596368687165,"method":"SEAD","details":"MAD!:w=0.50,s=0.25 RRCF-fast:w=0.13,s=0.44 RRCF-mid:w=0.12,s=0.50 RRCF-slow:w=0.11,s=0.35 COPOD!:w=0.15,s=0.40"} +{"timestamp":"2026-03-22T07:52:27.623518049Z","score":0.5347649396446178,"is_anomaly":false,"confidence":0.7244945214085308,"method":"SEAD","details":"MAD!:w=0.50,s=0.34 RRCF-fast:w=0.13,s=0.77 RRCF-mid:w=0.12,s=0.75 RRCF-slow:w=0.11,s=0.69 COPOD!:w=0.15,s=0.69"} +{"timestamp":"2026-03-22T07:52:59.9332132Z","score":0.5246236694213738,"is_anomaly":false,"confidence":0.7107552236869067,"method":"SEAD","details":"MAD!:w=0.50,s=0.41 RRCF-fast:w=0.13,s=0.65 RRCF-mid:w=0.12,s=0.64 RRCF-slow:w=0.11,s=0.54 COPOD!:w=0.15,s=0.68"} +{"timestamp":"2026-03-22T07:53:29.296491137Z","score":0.645487553707456,"is_anomaly":false,"confidence":0.8745004797981494,"method":"SEAD","details":"MAD!:w=0.50,s=0.64 RRCF-fast:w=0.13,s=0.71 RRCF-mid:w=0.12,s=0.63 RRCF-slow:w=0.11,s=0.43 COPOD!:w=0.14,s=0.77"} +{"timestamp":"2026-03-22T07:53:57.574825389Z","score":0.24926195673147833,"is_anomaly":false,"confidence":0.3376977596316207,"method":"SEAD","details":"MAD!:w=0.50,s=0.20 RRCF-fast:w=0.13,s=0.42 RRCF-mid:w=0.12,s=0.41 RRCF-slow:w=0.11,s=0.39 COPOD!:w=0.14,s=0.04"} +{"timestamp":"2026-03-22T07:54:27.530550401Z","score":0.27770560881881945,"is_anomaly":false,"confidence":0.3762329525330545,"method":"SEAD","details":"MAD!:w=0.50,s=0.28 RRCF-fast:w=0.13,s=0.28 RRCF-mid:w=0.12,s=0.36 RRCF-slow:w=0.11,s=0.31 COPOD!:w=0.14,s=0.18"} +{"timestamp":"2026-03-22T07:54:57.572099416Z","score":0.4793408267807715,"is_anomaly":false,"confidence":0.649406453461388,"method":"SEAD","details":"MAD!:w=0.50,s=0.62 RRCF-fast:w=0.13,s=0.49 RRCF-mid:w=0.12,s=0.41 RRCF-slow:w=0.11,s=0.41 COPOD!:w=0.15,s=0.10"} +{"timestamp":"2026-03-22T07:55:27.539629295Z","score":0.24833234565740558,"is_anomaly":false,"confidence":0.3371738934787082,"method":"SEAD","details":"MAD!:w=0.50,s=0.09 RRCF-fast:w=0.13,s=0.11 RRCF-mid:w=0.12,s=0.26 RRCF-slow:w=0.11,s=0.17 COPOD!:w=0.15,s=0.95"} +{"timestamp":"2026-03-22T07:55:57.579475813Z","score":0.38383594982666014,"is_anomaly":false,"confidence":0.5211542673490372,"method":"SEAD","details":"MAD!:w=0.50,s=0.15 RRCF-fast:w=0.13,s=0.75 RRCF-mid:w=0.12,s=0.75 RRCF-slow!:w=0.11,s=0.89 COPOD!:w=0.14,s=0.19"} +{"timestamp":"2026-03-22T07:56:29.069816886Z","score":0.5624630044493409,"is_anomaly":false,"confidence":0.763685619148263,"method":"SEAD","details":"MAD!:w=0.51,s=0.50 RRCF-fast:w=0.13,s=0.57 RRCF-mid!:w=0.11,s=0.82 RRCF-slow:w=0.11,s=0.58 COPOD!:w=0.14,s=0.55"} +{"timestamp":"2026-03-22T07:56:57.581950059Z","score":0.27812545797328947,"is_anomaly":false,"confidence":0.3776255698473337,"method":"SEAD","details":"MAD!:w=0.51,s=0.04 RRCF-fast:w=0.13,s=0.57 RRCF-mid:w=0.11,s=0.65 RRCF-slow:w=0.10,s=0.52 COPOD!:w=0.14,s=0.39"} +{"timestamp":"2026-03-22T07:57:27.538263539Z","score":0.20883874894927587,"is_anomaly":false,"confidence":0.28355135899047534,"method":"SEAD","details":"MAD!:w=0.51,s=0.17 RRCF-fast:w=0.13,s=0.13 RRCF-mid:w=0.11,s=0.19 RRCF-slow:w=0.10,s=0.23 COPOD!:w=0.14,s=0.41"} +{"timestamp":"2026-03-22T07:57:57.536386635Z","score":0.3284896234818821,"is_anomaly":false,"confidence":0.4460076476285566,"method":"SEAD","details":"MAD!:w=0.51,s=0.31 RRCF-fast:w=0.13,s=0.17 RRCF-mid:w=0.11,s=0.27 RRCF-slow:w=0.10,s=0.31 COPOD!:w=0.14,s=0.61"} +{"timestamp":"2026-03-22T07:58:27.535156967Z","score":0.14407091704833336,"is_anomaly":false,"confidence":0.19561266539659863,"method":"SEAD","details":"MAD!:w=0.51,s=0.03 RRCF-fast:w=0.13,s=0.06 RRCF-mid:w=0.11,s=0.23 RRCF-slow:w=0.10,s=0.28 COPOD!:w=0.14,s=0.45"} +{"timestamp":"2026-03-22T07:58:57.623016276Z","score":0.671663901495254,"is_anomaly":false,"confidence":0.9144133117145192,"method":"SEAD","details":"MAD!:w=0.51,s=0.71 RRCF-fast:w=0.13,s=0.48 RRCF-mid:w=0.11,s=0.59 RRCF-slow:w=0.10,s=0.54 COPOD!:w=0.14,s=0.89"} +{"timestamp":"2026-03-22T07:59:27.542486609Z","score":0.326457499150414,"is_anomaly":false,"confidence":0.44444413681844896,"method":"SEAD","details":"MAD!:w=0.51,s=0.25 RRCF-fast:w=0.13,s=0.08 RRCF-mid:w=0.11,s=0.29 RRCF-slow:w=0.10,s=0.20 COPOD!:w=0.14,s=0.96"} +{"timestamp":"2026-03-22T07:59:57.528451791Z","score":0.2508082648744775,"is_anomaly":false,"confidence":0.3414541343947213,"method":"SEAD","details":"MAD!:w=0.51,s=0.06 RRCF-fast:w=0.13,s=0.26 RRCF-mid:w=0.11,s=0.24 RRCF-slow:w=0.10,s=0.22 COPOD!:w=0.14,s=0.96"} +{"timestamp":"2026-03-22T08:00:28.228903065Z","score":0.7156313924476443,"is_anomaly":false,"confidence":0.9742713134919713,"method":"SEAD","details":"MAD!:w=0.52,s=0.47 RRCF-fast!:w=0.13,s=0.99 RRCF-mid!:w=0.11,s=0.99 RRCF-slow!:w=0.10,s=0.97 COPOD!:w=0.14,s=0.95"} +{"timestamp":"2026-03-22T08:00:57.616903204Z","score":0.5130888385527641,"is_anomaly":false,"confidence":0.6985268421011077,"method":"SEAD","details":"MAD!:w=0.52,s=0.19 RRCF-fast!:w=0.13,s=0.84 RRCF-mid!:w=0.11,s=0.93 RRCF-slow!:w=0.10,s=0.92 COPOD!:w=0.14,s=0.78"} +{"timestamp":"2026-03-22T08:01:27.57944894Z","score":0.15427432493738558,"is_anomaly":false,"confidence":0.2100313803741221,"method":"SEAD","details":"MAD!:w=0.53,s=0.00 RRCF-fast:w=0.13,s=0.32 RRCF-mid:w=0.11,s=0.51 RRCF-slow:w=0.10,s=0.43 COPOD!:w=0.14,s=0.10"} +{"timestamp":"2026-03-22T08:01:57.529022362Z","score":0.8191921806885262,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.53,s=0.88 RRCF-fast!:w=0.13,s=0.95 RRCF-mid!:w=0.11,s=0.98 RRCF-slow!:w=0.10,s=1.00 COPOD!:w=0.13,s=0.18"} +{"timestamp":"2026-03-22T08:02:27.579130471Z","score":0.3151741267305686,"is_anomaly":false,"confidence":0.42908278433431224,"method":"SEAD","details":"MAD!:w=0.53,s=0.03 RRCF-fast!:w=0.13,s=0.86 RRCF-mid!:w=0.11,s=0.84 RRCF-slow:w=0.10,s=0.64 COPOD!:w=0.14,s=0.25"} +{"timestamp":"2026-03-22T08:02:57.583385603Z","score":0.9830393726642567,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.53,s=1.00 RRCF-fast!:w=0.12,s=0.97 RRCF-mid!:w=0.11,s=0.98 RRCF-slow!:w=0.10,s=1.00 COPOD!:w=0.14,s=0.92"} +{"timestamp":"2026-03-22T08:03:27.535885575Z","score":0.9548362775320592,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.53,s=1.00 RRCF-fast!:w=0.12,s=0.98 RRCF-mid!:w=0.11,s=0.99 RRCF-slow!:w=0.10,s=1.00 COPOD!:w=0.14,s=0.70"} +{"timestamp":"2026-03-22T08:03:57.866778825Z","score":0.895359523303065,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.53,s=0.99 RRCF-fast!:w=0.12,s=0.95 RRCF-mid!:w=0.11,s=0.98 RRCF-slow!:w=0.10,s=1.00 COPOD!:w=0.14,s=0.33"} +{"timestamp":"2026-03-22T08:04:27.535841309Z","score":0.8901648442034054,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.53,s=0.99 RRCF-fast!:w=0.12,s=0.87 RRCF-mid!:w=0.11,s=0.96 RRCF-slow!:w=0.10,s=0.99 COPOD!:w=0.14,s=0.39"} +{"timestamp":"2026-03-22T08:04:57.535142805Z","score":0.8803725266361377,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.53,s=1.00 RRCF-fast!:w=0.12,s=0.92 RRCF-mid!:w=0.11,s=0.95 RRCF-slow!:w=0.10,s=0.98 COPOD!:w=0.14,s=0.28"} +{"timestamp":"2026-03-22T08:05:27.535782661Z","score":0.8436854060275817,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.52,s=0.98 RRCF-fast:w=0.12,s=0.85 RRCF-mid!:w=0.11,s=0.94 RRCF-slow!:w=0.10,s=0.96 COPOD!:w=0.14,s=0.15"} +{"timestamp":"2026-03-22T08:05:57.534646459Z","score":0.9047057626174274,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.52,s=1.00 RRCF-fast!:w=0.13,s=0.87 RRCF-mid!:w=0.11,s=0.94 RRCF-slow!:w=0.10,s=0.97 COPOD!:w=0.14,s=0.52"} +{"timestamp":"2026-03-22T08:06:28.395545126Z","score":0.8259657836958382,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.52,s=0.97 RRCF-fast:w=0.13,s=0.82 RRCF-mid:w=0.11,s=0.92 RRCF-slow!:w=0.10,s=0.98 COPOD!:w=0.14,s=0.12"} +{"timestamp":"2026-03-22T08:06:57.534217594Z","score":0.7939868978919666,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.52,s=0.98 RRCF-fast:w=0.13,s=0.60 RRCF-mid:w=0.11,s=0.90 RRCF-slow:w=0.10,s=0.94 COPOD!:w=0.15,s=0.13"} +{"timestamp":"2026-03-22T08:07:27.628120184Z","score":0.8674067002232964,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.51,s=0.98 RRCF-fast:w=0.13,s=0.61 RRCF-mid:w=0.11,s=0.87 RRCF-slow:w=0.10,s=0.92 COPOD!:w=0.15,s=0.68"} +{"timestamp":"2026-03-22T08:07:57.576864204Z","score":0.8486142656422364,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.51,s=0.96 RRCF-fast:w=0.13,s=0.65 RRCF-mid:w=0.11,s=0.87 RRCF-slow:w=0.10,s=0.92 COPOD!:w=0.15,s=0.58"} +{"timestamp":"2026-03-22T08:08:27.585935158Z","score":0.8145697016212003,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.51,s=0.96 RRCF-fast:w=0.13,s=0.43 RRCF-mid:w=0.11,s=0.82 RRCF-slow:w=0.10,s=0.90 COPOD!:w=0.15,s=0.58"} +{"timestamp":"2026-03-22T08:08:57.571248952Z","score":0.7246749864469506,"is_anomaly":false,"confidence":0.9451648831977884,"method":"SEAD","details":"MAD!:w=0.51,s=0.94 RRCF-fast:w=0.13,s=0.39 RRCF-mid:w=0.11,s=0.72 RRCF-slow:w=0.10,s=0.80 COPOD!:w=0.15,s=0.24"} +{"timestamp":"2026-03-22T08:09:28.442006404Z","score":0.7821511300101136,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.50,s=0.96 RRCF-fast:w=0.13,s=0.63 RRCF-mid:w=0.11,s=0.77 RRCF-slow:w=0.10,s=0.86 COPOD!:w=0.15,s=0.27"} +{"timestamp":"2026-03-22T08:09:57.530142091Z","score":0.7441536389748049,"is_anomaly":false,"confidence":0.9644934391334492,"method":"SEAD","details":"MAD!:w=0.50,s=0.96 RRCF-fast:w=0.13,s=0.32 RRCF-mid:w=0.11,s=0.79 RRCF-slow:w=0.10,s=0.90 COPOD!:w=0.15,s=0.24"} +{"timestamp":"2026-03-22T08:10:27.528658417Z","score":0.7043474280375372,"is_anomaly":false,"confidence":0.9129008280448986,"method":"SEAD","details":"MAD!:w=0.50,s=0.96 RRCF-fast:w=0.13,s=0.26 RRCF-mid:w=0.11,s=0.79 RRCF-slow:w=0.10,s=0.90 COPOD!:w=0.15,s=0.07"} +{"timestamp":"2026-03-22T08:10:57.529061051Z","score":0.7541397492034053,"is_anomaly":false,"confidence":0.9774363816838848,"method":"SEAD","details":"MAD!:w=0.49,s=0.99 RRCF-fast:w=0.13,s=0.31 RRCF-mid:w=0.11,s=0.85 RRCF-slow:w=0.10,s=0.90 COPOD!:w=0.16,s=0.22"} +{"timestamp":"2026-03-22T08:11:27.526649057Z","score":0.8158148996797919,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=1.00 RRCF-fast:w=0.13,s=0.44 RRCF-mid:w=0.11,s=0.89 RRCF-slow!:w=0.10,s=0.98 COPOD!:w=0.16,s=0.40"} +{"timestamp":"2026-03-22T08:11:57.533500641Z","score":0.7173069075799595,"is_anomaly":false,"confidence":0.917095021739193,"method":"SEAD","details":"MAD!:w=0.49,s=0.98 RRCF-fast:w=0.14,s=0.38 RRCF-mid:w=0.11,s=0.68 RRCF-slow:w=0.10,s=0.86 COPOD!:w=0.16,s=0.15"} +{"timestamp":"2026-03-22T08:12:27.528734012Z","score":0.6649906803139634,"is_anomaly":false,"confidence":0.8618907637558727,"method":"SEAD","details":"MAD!:w=0.48,s=0.98 RRCF-fast:w=0.14,s=0.19 RRCF-mid:w=0.11,s=0.60 RRCF-slow:w=0.10,s=0.88 COPOD!:w=0.16,s=0.05"} +{"timestamp":"2026-03-22T08:12:57.532678251Z","score":0.7172856643269957,"is_anomaly":false,"confidence":0.9296700049481154,"method":"SEAD","details":"MAD!:w=0.48,s=0.99 RRCF-fast:w=0.14,s=0.37 RRCF-mid:w=0.11,s=0.67 RRCF-slow:w=0.10,s=0.85 COPOD!:w=0.17,s=0.16"} +{"timestamp":"2026-03-22T08:13:27.536646418Z","score":0.6708775678473079,"is_anomaly":false,"confidence":0.8695207263139401,"method":"SEAD","details":"MAD!:w=0.47,s=0.94 RRCF-fast:w=0.14,s=0.26 RRCF-mid:w=0.11,s=0.59 RRCF-slow:w=0.10,s=0.86 COPOD!:w=0.17,s=0.21"} +{"timestamp":"2026-03-22T08:13:57.537219303Z","score":0.5936254889708943,"is_anomaly":false,"confidence":0.769394731716414,"method":"SEAD","details":"MAD!:w=0.47,s=0.94 RRCF-fast:w=0.14,s=0.08 RRCF-mid:w=0.12,s=0.48 RRCF-slow:w=0.10,s=0.75 COPOD!:w=0.17,s=0.03"} +{"timestamp":"2026-03-22T08:14:27.567429365Z","score":0.7593177412203134,"is_anomaly":false,"confidence":0.9841475486615447,"method":"SEAD","details":"MAD!:w=0.46,s=0.98 RRCF-fast:w=0.14,s=0.13 RRCF-mid:w=0.12,s=0.49 RRCF-slow:w=0.11,s=0.82 COPOD!:w=0.17,s=0.84"} +{"timestamp":"2026-03-22T08:14:57.569116228Z","score":0.7646836550643857,"is_anomaly":false,"confidence":0.9911022800859494,"method":"SEAD","details":"MAD!:w=0.46,s=0.94 RRCF-fast:w=0.14,s=0.63 RRCF-mid:w=0.12,s=0.74 RRCF-slow:w=0.11,s=0.88 COPOD!:w=0.17,s=0.36"} +{"timestamp":"2026-03-22T08:15:27.572052786Z","score":0.6789904458966166,"is_anomaly":false,"confidence":0.8855803463491966,"method":"SEAD","details":"MAD!:w=0.46,s=0.93 RRCF-fast:w=0.15,s=0.32 RRCF-mid:w=0.12,s=0.43 RRCF-slow:w=0.11,s=0.85 COPOD!:w=0.17,s=0.39"} +{"timestamp":"2026-03-22T08:15:59.650739804Z","score":0.6018584304242771,"is_anomaly":false,"confidence":0.7849801134749237,"method":"SEAD","details":"MAD!:w=0.45,s=0.91 RRCF-fast:w=0.15,s=0.26 RRCF-mid:w=0.12,s=0.44 RRCF-slow:w=0.11,s=0.67 COPOD!:w=0.18,s=0.15"} +{"timestamp":"2026-03-22T08:16:27.528233285Z","score":0.6288058300310931,"is_anomaly":false,"confidence":0.8201265394979018,"method":"SEAD","details":"MAD!:w=0.45,s=0.96 RRCF-fast:w=0.15,s=0.30 RRCF-mid:w=0.12,s=0.23 RRCF-slow:w=0.11,s=0.66 COPOD!:w=0.18,s=0.31"} +{"timestamp":"2026-03-22T08:16:58.202457481Z","score":0.7823316832175924,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.44,s=0.99 RRCF-fast:w=0.15,s=0.42 RRCF-mid:w=0.12,s=0.65 RRCF-slow:w=0.11,s=0.76 COPOD!:w=0.18,s=0.68"} +{"timestamp":"2026-03-22T08:17:27.581305367Z","score":0.48598292726553804,"is_anomaly":false,"confidence":0.6298797994514,"method":"SEAD","details":"MAD!:w=0.44,s=0.03 RRCF-fast!:w=0.15,s=0.96 RRCF-mid!:w=0.12,s=0.98 RRCF-slow!:w=0.11,s=1.00 COPOD!:w=0.18,s=0.56"} +{"timestamp":"2026-03-22T08:17:57.589929382Z","score":0.4685392940320057,"is_anomaly":false,"confidence":0.6072712023456057,"method":"SEAD","details":"MAD!:w=0.45,s=0.15 RRCF-fast!:w=0.15,s=0.95 RRCF-mid:w=0.12,s=0.81 RRCF-slow:w=0.11,s=0.80 COPOD!:w=0.18,s=0.44"} +{"timestamp":"2026-03-22T08:18:28.928155874Z","score":0.8291875580575739,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.45,s=0.70 RRCF-fast!:w=0.15,s=0.99 RRCF-mid!:w=0.12,s=0.98 RRCF-slow!:w=0.10,s=0.99 COPOD!:w=0.18,s=0.83"} +{"timestamp":"2026-03-22T08:18:57.585979361Z","score":0.51035033912292,"is_anomaly":false,"confidence":0.6614622679554656,"method":"SEAD","details":"MAD!:w=0.45,s=0.11 RRCF-fast:w=0.15,s=0.81 RRCF-mid:w=0.12,s=0.83 RRCF-slow:w=0.10,s=0.88 COPOD!:w=0.18,s=0.86"} +{"timestamp":"2026-03-22T08:19:27.579627688Z","score":0.7699300338665023,"is_anomaly":false,"confidence":0.997902082799837,"method":"SEAD","details":"MAD!:w=0.46,s=0.59 RRCF-fast!:w=0.14,s=0.95 RRCF-mid:w=0.12,s=0.80 RRCF-slow:w=0.10,s=0.93 COPOD!:w=0.18,s=0.98"} +{"timestamp":"2026-03-22T08:19:57.537686519Z","score":0.5128501428970291,"is_anomaly":false,"confidence":0.664702249879858,"method":"SEAD","details":"MAD!:w=0.46,s=0.20 RRCF-fast:w=0.14,s=0.85 RRCF-mid:w=0.12,s=0.72 RRCF-slow:w=0.10,s=0.86 COPOD!:w=0.17,s=0.72"} +{"timestamp":"2026-03-22T08:20:27.538562407Z","score":0.44462672908962314,"is_anomaly":false,"confidence":0.5762782584267204,"method":"SEAD","details":"MAD!:w=0.47,s=0.23 RRCF-fast:w=0.14,s=0.85 RRCF-mid:w=0.12,s=0.63 RRCF-slow:w=0.10,s=0.80 COPOD!:w=0.17,s=0.34"} +{"timestamp":"2026-03-22T08:20:57.583793191Z","score":0.5906654754148498,"is_anomaly":false,"confidence":0.7655582744244976,"method":"SEAD","details":"MAD!:w=0.47,s=0.56 RRCF-fast:w=0.14,s=0.87 RRCF-mid:w=0.11,s=0.63 RRCF-slow:w=0.10,s=0.85 COPOD!:w=0.17,s=0.26"} +{"timestamp":"2026-03-22T08:21:27.53638778Z","score":0.3811083829490485,"is_anomaly":false,"confidence":0.49395247930187236,"method":"SEAD","details":"MAD!:w=0.47,s=0.03 RRCF-fast:w=0.14,s=0.60 RRCF-mid:w=0.11,s=0.46 RRCF-slow:w=0.10,s=0.68 COPOD!:w=0.17,s=0.92"} +{"timestamp":"2026-03-22T08:21:57.628993353Z","score":0.7161218783361443,"is_anomaly":false,"confidence":0.9281616283254087,"method":"SEAD","details":"MAD!:w=0.47,s=0.56 RRCF-fast:w=0.14,s=0.91 RRCF-mid:w=0.11,s=0.84 RRCF-slow:w=0.10,s=0.85 COPOD!:w=0.17,s=0.84"} +{"timestamp":"2026-03-22T08:22:27.689797809Z","score":0.5030303286911949,"is_anomaly":false,"confidence":0.65334550746778,"method":"SEAD","details":"MAD!:w=0.48,s=0.33 RRCF-fast:w=0.14,s=0.73 RRCF-mid:w=0.11,s=0.47 RRCF-slow:w=0.10,s=0.78 COPOD!:w=0.17,s=0.65"} +{"timestamp":"2026-03-22T08:22:59.098973172Z","score":0.6701799771175705,"is_anomaly":false,"confidence":0.8704426995164766,"method":"SEAD","details":"MAD!:w=0.48,s=0.61 RRCF-fast:w=0.14,s=0.69 RRCF-mid:w=0.11,s=0.48 RRCF-slow:w=0.10,s=0.72 COPOD!:w=0.17,s=0.92"} +{"timestamp":"2026-03-22T08:23:27.582511638Z","score":0.37379993079907214,"is_anomaly":false,"confidence":0.4854985704634625,"method":"SEAD","details":"MAD!:w=0.48,s=0.20 RRCF-fast:w=0.14,s=0.47 RRCF-mid:w=0.11,s=0.36 RRCF-slow:w=0.10,s=0.76 COPOD!:w=0.17,s=0.57"} +{"timestamp":"2026-03-22T08:23:57.536999009Z","score":0.3894845679368119,"is_anomaly":false,"confidence":0.5058700801433399,"method":"SEAD","details":"MAD!:w=0.48,s=0.22 RRCF-fast:w=0.14,s=0.62 RRCF-mid:w=0.11,s=0.32 RRCF-slow:w=0.10,s=0.57 COPOD!:w=0.17,s=0.62"} +{"timestamp":"2026-03-22T08:24:27.680325247Z","score":0.4749036989853088,"is_anomaly":false,"confidence":0.616814097510128,"method":"SEAD","details":"MAD!:w=0.49,s=0.49 RRCF-fast:w=0.14,s=0.58 RRCF-mid:w=0.11,s=0.42 RRCF-slow:w=0.10,s=0.53 COPOD!:w=0.17,s=0.34"} +{"timestamp":"2026-03-22T08:24:57.536762338Z","score":0.26145717155965703,"is_anomaly":false,"confidence":0.3395856247439114,"method":"SEAD","details":"MAD!:w=0.49,s=0.03 RRCF-fast:w=0.14,s=0.12 RRCF-mid:w=0.11,s=0.11 RRCF-slow:w=0.10,s=0.53 COPOD!:w=0.17,s=0.99"} +{"timestamp":"2026-03-22T08:25:28.321621671Z","score":0.40580218670382345,"is_anomaly":false,"confidence":0.5292717198338182,"method":"SEAD","details":"MAD!:w=0.49,s=0.19 RRCF-fast:w=0.14,s=0.82 RRCF-mid:w=0.11,s=0.78 RRCF-slow:w=0.10,s=0.86 COPOD!:w=0.16,s=0.19"} +{"timestamp":"2026-03-22T08:25:57.942812588Z","score":0.8074436147919124,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=0.76 RRCF-fast:w=0.13,s=0.90 RRCF-mid!:w=0.11,s=0.95 RRCF-slow!:w=0.10,s=1.00 COPOD!:w=0.16,s=0.67"} +{"timestamp":"2026-03-22T08:26:27.582037821Z","score":0.3508183196817315,"is_anomaly":false,"confidence":0.45564961003009746,"method":"SEAD","details":"MAD!:w=0.49,s=0.02 RRCF-fast:w=0.13,s=0.60 RRCF-mid:w=0.11,s=0.54 RRCF-slow:w=0.10,s=0.74 COPOD!:w=0.16,s=0.78"} +{"timestamp":"2026-03-22T08:26:57.543850111Z","score":0.2600719708110463,"is_anomaly":false,"confidence":0.33778649925499604,"method":"SEAD","details":"MAD!:w=0.50,s=0.03 RRCF-fast:w=0.13,s=0.20 RRCF-mid:w=0.11,s=0.11 RRCF-slow:w=0.10,s=0.54 COPOD!:w=0.16,s=0.93"} +{"timestamp":"2026-03-22T08:27:27.537192871Z","score":0.2865263265218511,"is_anomaly":false,"confidence":0.37214592744609276,"method":"SEAD","details":"MAD!:w=0.50,s=0.11 RRCF-fast:w=0.13,s=0.13 RRCF-mid:w=0.11,s=0.32 RRCF-slow:w=0.10,s=0.41 COPOD!:w=0.16,s=0.87"} +{"timestamp":"2026-03-22T08:27:57.622324285Z","score":0.7136381326219634,"is_anomaly":false,"confidence":0.9268869913258907,"method":"SEAD","details":"MAD!:w=0.50,s=0.70 RRCF-fast:w=0.13,s=0.40 RRCF-mid:w=0.11,s=0.86 RRCF-slow:w=0.09,s=0.83 COPOD!:w=0.16,s=0.87"} +{"timestamp":"2026-03-22T08:28:27.581559628Z","score":0.4349993253709346,"is_anomaly":false,"confidence":0.5649855262645318,"method":"SEAD","details":"MAD!:w=0.50,s=0.42 RRCF-fast:w=0.13,s=0.14 RRCF-mid:w=0.11,s=0.39 RRCF-slow:w=0.09,s=0.42 COPOD!:w=0.16,s=0.78"} +{"timestamp":"2026-03-22T08:28:57.548137511Z","score":0.2220461981173581,"is_anomaly":false,"confidence":0.2896060617975658,"method":"SEAD","details":"MAD!:w=0.50,s=0.03 RRCF-fast:w=0.13,s=0.02 RRCF-mid:w=0.11,s=0.16 RRCF-slow:w=0.09,s=0.33 COPOD!:w=0.16,s=0.98"} +{"timestamp":"2026-03-22T08:29:33.615536091Z","score":0.5253425925513453,"is_anomaly":false,"confidence":0.6851835366391029,"method":"SEAD","details":"MAD!:w=0.51,s=0.27 RRCF-fast:w=0.13,s=0.93 RRCF-mid:w=0.11,s=0.92 RRCF-slow:w=0.09,s=0.85 COPOD!:w=0.15,s=0.53"} +{"timestamp":"2026-03-22T08:29:57.554988825Z","score":0.7434813065371141,"is_anomaly":false,"confidence":0.9696932216444484,"method":"SEAD","details":"MAD!:w=0.51,s=0.54 RRCF-fast!:w=0.13,s=0.94 RRCF-mid!:w=0.11,s=0.96 RRCF-slow!:w=0.09,s=0.98 COPOD!:w=0.15,s=0.97"} +{"timestamp":"2026-03-22T08:30:27.581835936Z","score":0.4545976459048522,"is_anomaly":false,"confidence":0.5929137046668339,"method":"SEAD","details":"MAD!:w=0.51,s=0.21 RRCF-fast:w=0.13,s=0.78 RRCF-mid:w=0.11,s=0.72 RRCF-slow:w=0.09,s=0.86 COPOD!:w=0.15,s=0.55"} +{"timestamp":"2026-03-22T08:30:57.58045639Z","score":0.6539521383132361,"is_anomaly":false,"confidence":0.8529238734404982,"method":"SEAD","details":"MAD!:w=0.52,s=0.61 RRCF-fast:w=0.13,s=0.42 RRCF-mid:w=0.11,s=0.63 RRCF-slow:w=0.09,s=0.69 COPOD!:w=0.15,s=1.00"} +{"timestamp":"2026-03-22T08:31:27.520476265Z","score":0.343982561899275,"is_anomaly":false,"confidence":0.4486428316418846,"method":"SEAD","details":"MAD!:w=0.52,s=0.20 RRCF-fast:w=0.13,s=0.38 RRCF-mid:w=0.11,s=0.45 RRCF-slow:w=0.09,s=0.55 COPOD!:w=0.15,s=0.61"} +{"timestamp":"2026-03-22T08:31:57.534419542Z","score":0.8117833250384614,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.52,s=0.82 RRCF-fast:w=0.13,s=0.91 RRCF-mid:w=0.11,s=0.76 RRCF-slow:w=0.09,s=0.87 COPOD!:w=0.15,s=0.70"} +{"timestamp":"2026-03-22T08:32:27.571866306Z","score":0.1921148751625191,"is_anomaly":false,"confidence":0.25056782273363665,"method":"SEAD","details":"MAD!:w=0.52,s=0.04 RRCF-fast:w=0.13,s=0.38 RRCF-mid:w=0.11,s=0.45 RRCF-slow:w=0.09,s=0.66 COPOD!:w=0.15,s=0.08"} +{"timestamp":"2026-03-22T08:32:57.583550933Z","score":0.20860117895942126,"is_anomaly":false,"confidence":0.27207025581603334,"method":"SEAD","details":"MAD!:w=0.52,s=0.04 RRCF-fast:w=0.13,s=0.61 RRCF-mid:w=0.11,s=0.46 RRCF-slow:w=0.09,s=0.63 COPOD!:w=0.15,s=0.03"} +{"timestamp":"2026-03-22T08:33:27.578571842Z","score":0.4154849967399117,"is_anomaly":false,"confidence":0.5419006254645434,"method":"SEAD","details":"MAD!:w=0.53,s=0.27 RRCF-fast:w=0.13,s=0.40 RRCF-mid:w=0.11,s=0.26 RRCF-slow:w=0.09,s=0.46 COPOD!:w=0.15,s=1.00"} +{"timestamp":"2026-03-22T08:33:57.53602328Z","score":0.32118128798015466,"is_anomaly":false,"confidence":0.41890403314107033,"method":"SEAD","details":"MAD!:w=0.53,s=0.21 RRCF-fast:w=0.13,s=0.20 RRCF-mid:w=0.11,s=0.14 RRCF-slow:w=0.09,s=0.27 COPOD!:w=0.15,s=0.99"} +{"timestamp":"2026-03-22T08:34:27.569317257Z","score":0.8173871415315828,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.53,s=0.92 RRCF-fast:w=0.13,s=0.82 RRCF-mid:w=0.11,s=0.85 RRCF-slow:w=0.09,s=0.76 COPOD!:w=0.15,s=0.44"} +{"timestamp":"2026-03-22T08:34:57.526723533Z","score":0.7527287140057481,"is_anomaly":false,"confidence":0.9776585935031382,"method":"SEAD","details":"MAD!:w=0.53,s=0.96 RRCF-fast!:w=0.13,s=0.94 RRCF-mid:w=0.11,s=0.55 RRCF-slow:w=0.09,s=0.75 COPOD!:w=0.15,s=0.00"} +{"timestamp":"2026-03-22T08:35:27.529613002Z","score":0.7498570475966261,"is_anomaly":false,"confidence":0.9780088481894722,"method":"SEAD","details":"MAD!:w=0.52,s=0.99 RRCF-fast:w=0.13,s=0.84 RRCF-mid:w=0.11,s=0.50 RRCF-slow:w=0.09,s=0.76 COPOD!:w=0.15,s=0.00"} +{"timestamp":"2026-03-22T08:35:57.535092874Z","score":0.8602980130413063,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.52,s=1.00 RRCF-fast!:w=0.13,s=0.94 RRCF-mid!:w=0.11,s=0.94 RRCF-slow!:w=0.09,s=1.00 COPOD!:w=0.15,s=0.18"} +{"timestamp":"2026-03-22T08:36:27.527717074Z","score":0.7939407252901626,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.52,s=1.00 RRCF-fast:w=0.13,s=0.70 RRCF-mid:w=0.11,s=0.77 RRCF-slow!:w=0.09,s=0.92 COPOD!:w=0.15,s=0.13"} +{"timestamp":"2026-03-22T08:36:57.528221841Z","score":0.7562962518963083,"is_anomaly":false,"confidence":0.98023141296485,"method":"SEAD","details":"MAD!:w=0.51,s=0.96 RRCF-fast:w=0.13,s=0.83 RRCF-mid:w=0.11,s=0.56 RRCF-slow:w=0.09,s=0.80 COPOD!:w=0.16,s=0.12"} +{"timestamp":"2026-03-22T08:37:27.534449133Z","score":0.7572590455237838,"is_anomaly":false,"confidence":0.9814792844907069,"method":"SEAD","details":"MAD!:w=0.51,s=0.98 RRCF-fast:w=0.13,s=0.76 RRCF-mid:w=0.11,s=0.48 RRCF-slow:w=0.09,s=0.84 COPOD!:w=0.16,s=0.19"} +{"timestamp":"2026-03-22T08:37:57.527307226Z","score":0.749591391897721,"is_anomaly":false,"confidence":0.9715412807928767,"method":"SEAD","details":"MAD!:w=0.51,s=0.99 RRCF-fast:w=0.13,s=0.64 RRCF-mid:w=0.11,s=0.64 RRCF-slow!:w=0.09,s=0.90 COPOD!:w=0.16,s=0.06"} +{"timestamp":"2026-03-22T08:38:27.526732127Z","score":0.7164108343502825,"is_anomaly":false,"confidence":0.9285361426262706,"method":"SEAD","details":"MAD!:w=0.50,s=0.99 RRCF-fast:w=0.13,s=0.65 RRCF-mid:w=0.11,s=0.39 RRCF-slow:w=0.09,s=0.87 COPOD!:w=0.16,s=0.08"} +{"timestamp":"2026-03-22T08:38:57.527810926Z","score":0.7098017075429239,"is_anomaly":false,"confidence":0.9219041683286199,"method":"SEAD","details":"MAD!:w=0.50,s=0.99 RRCF-fast:w=0.13,s=0.61 RRCF-mid:w=0.11,s=0.40 RRCF-slow:w=0.09,s=0.84 COPOD!:w=0.17,s=0.07"} +{"timestamp":"2026-03-22T08:39:27.578807792Z","score":0.6970063718771874,"is_anomaly":false,"confidence":0.9052853392104989,"method":"SEAD","details":"MAD!:w=0.49,s=0.93 RRCF-fast:w=0.13,s=0.68 RRCF-mid:w=0.11,s=0.34 RRCF-slow:w=0.09,s=0.63 COPOD!:w=0.17,s=0.31"} +{"timestamp":"2026-03-22T08:39:59.703110378Z","score":0.8754877352885037,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=1.00 RRCF-fast:w=0.13,s=0.58 RRCF-mid:w=0.11,s=0.77 RRCF-slow:w=0.09,s=0.84 COPOD!:w=0.17,s=0.85"} +{"timestamp":"2026-03-22T08:40:27.569002211Z","score":0.8067153006563741,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=0.99 RRCF-fast:w=0.13,s=0.71 RRCF-mid:w=0.11,s=0.48 RRCF-slow:w=0.09,s=0.76 COPOD!:w=0.17,s=0.60"} +{"timestamp":"2026-03-22T08:40:57.568490987Z","score":0.7755657227023223,"is_anomaly":false,"confidence":0.9915803902147323,"method":"SEAD","details":"MAD!:w=0.48,s=0.99 RRCF-fast:w=0.14,s=0.72 RRCF-mid:w=0.11,s=0.30 RRCF-slow:w=0.09,s=0.75 COPOD!:w=0.17,s=0.55"} +{"timestamp":"2026-03-22T08:41:27.568798432Z","score":0.6948718289825326,"is_anomaly":false,"confidence":0.8884112063784241,"method":"SEAD","details":"MAD!:w=0.48,s=0.95 RRCF-fast:w=0.14,s=0.51 RRCF-mid:w=0.12,s=0.43 RRCF-slow:w=0.09,s=0.48 COPOD!:w=0.17,s=0.44"} +{"timestamp":"2026-03-22T08:41:57.578441998Z","score":0.6599070905565383,"is_anomaly":false,"confidence":0.8437079040568609,"method":"SEAD","details":"MAD!:w=0.48,s=0.98 RRCF-fast:w=0.14,s=0.39 RRCF-mid:w=0.12,s=0.38 RRCF-slow:w=0.10,s=0.49 COPOD!:w=0.17,s=0.27"} +{"timestamp":"2026-03-22T08:42:27.568565373Z","score":0.7780175792251168,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.47,s=1.00 RRCF-fast:w=0.14,s=0.48 RRCF-mid:w=0.12,s=0.53 RRCF-slow:w=0.10,s=0.73 COPOD!:w=0.18,s=0.62"} +{"timestamp":"2026-03-22T08:42:57.660082683Z","score":0.7721439342768126,"is_anomaly":false,"confidence":0.9924504984139892,"method":"SEAD","details":"MAD!:w=0.47,s=0.86 RRCF-fast!:w=0.14,s=0.92 RRCF-mid!:w=0.12,s=0.91 RRCF-slow!:w=0.10,s=0.96 COPOD!:w=0.18,s=0.22"} +{"timestamp":"2026-03-22T08:43:29.622644658Z","score":0.6283546024134838,"is_anomaly":false,"confidence":0.8076354817577606,"method":"SEAD","details":"MAD!:w=0.47,s=0.86 RRCF-fast:w=0.14,s=0.48 RRCF-mid:w=0.12,s=0.43 RRCF-slow:w=0.10,s=0.84 COPOD!:w=0.18,s=0.14"} +{"timestamp":"2026-03-22T08:43:57.526043479Z","score":0.6747416060828516,"is_anomaly":false,"confidence":0.867257532605979,"method":"SEAD","details":"MAD!:w=0.46,s=0.85 RRCF-fast:w=0.14,s=0.66 RRCF-mid:w=0.12,s=0.59 RRCF-slow:w=0.10,s=0.85 COPOD!:w=0.18,s=0.20"} +{"timestamp":"2026-03-22T08:44:27.534224688Z","score":0.594148022718674,"is_anomaly":false,"confidence":0.7636691491089806,"method":"SEAD","details":"MAD!:w=0.46,s=0.91 RRCF-fast:w=0.14,s=0.28 RRCF-mid:w=0.12,s=0.35 RRCF-slow:w=0.10,s=0.72 COPOD!:w=0.18,s=0.14"} +{"timestamp":"2026-03-22T08:44:57.52765043Z","score":0.5812788756527044,"is_anomaly":false,"confidence":0.7471282027221563,"method":"SEAD","details":"MAD!:w=0.46,s=0.90 RRCF-fast:w=0.14,s=0.40 RRCF-mid:w=0.12,s=0.42 RRCF-slow:w=0.10,s=0.57 COPOD!:w=0.19,s=0.05"} +{"timestamp":"2026-03-22T08:45:27.527701058Z","score":0.5096029762779246,"is_anomaly":false,"confidence":0.6570725876103739,"method":"SEAD","details":"MAD!:w=0.45,s=0.87 RRCF-fast:w=0.14,s=0.22 RRCF-mid:w=0.12,s=0.29 RRCF-slow:w=0.10,s=0.44 COPOD!:w=0.19,s=0.05"} +{"timestamp":"2026-03-22T08:45:57.533074552Z","score":0.5712154995419572,"is_anomaly":false,"confidence":0.7365146277373597,"method":"SEAD","details":"MAD!:w=0.45,s=0.88 RRCF-fast:w=0.14,s=0.26 RRCF-mid:w=0.12,s=0.47 RRCF-slow:w=0.10,s=0.48 COPOD!:w=0.19,s=0.19"} +{"timestamp":"2026-03-22T08:46:27.57190988Z","score":0.5934227701058494,"is_anomaly":false,"confidence":0.7651482688509907,"method":"SEAD","details":"MAD!:w=0.44,s=0.95 RRCF-fast:w=0.14,s=0.20 RRCF-mid:w=0.12,s=0.27 RRCF-slow:w=0.10,s=0.57 COPOD!:w=0.19,s=0.28"} +{"timestamp":"2026-03-22T08:46:59.242580622Z","score":0.9218096089787695,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.44,s=0.99 RRCF-fast:w=0.15,s=0.89 RRCF-mid:w=0.12,s=0.79 RRCF-slow!:w=0.10,s=0.92 COPOD!:w=0.20,s=0.87"} +{"timestamp":"2026-03-22T08:47:27.577991251Z","score":0.6674805205190791,"is_anomaly":false,"confidence":0.8579247286210044,"method":"SEAD","details":"MAD!:w=0.44,s=0.46 RRCF-fast!:w=0.15,s=0.98 RRCF-mid!:w=0.12,s=0.95 RRCF-slow!:w=0.10,s=0.99 COPOD!:w=0.20,s=0.55"} +{"timestamp":"2026-03-22T08:47:58.287719702Z","score":0.464484210862261,"is_anomaly":false,"confidence":0.5970099175970727,"method":"SEAD","details":"MAD!:w=0.44,s=0.04 RRCF-fast:w=0.15,s=0.87 RRCF-mid:w=0.12,s=0.77 RRCF-slow:w=0.10,s=0.90 COPOD!:w=0.20,s=0.70"} +{"timestamp":"2026-03-22T08:48:27.632593215Z","score":0.7041468888875364,"is_anomaly":false,"confidence":0.9050526719317146,"method":"SEAD","details":"MAD!:w=0.44,s=0.46 RRCF-fast!:w=0.14,s=0.97 RRCF-mid!:w=0.12,s=0.84 RRCF-slow:w=0.10,s=0.84 COPOD!:w=0.19,s=0.92"} +{"timestamp":"2026-03-22T08:48:57.572606538Z","score":0.5376608364192736,"is_anomaly":false,"confidence":0.6932498699734809,"method":"SEAD","details":"MAD!:w=0.45,s=0.30 RRCF-fast:w=0.14,s=0.61 RRCF-mid:w=0.12,s=0.73 RRCF-slow:w=0.10,s=0.82 COPOD!:w=0.19,s=0.78"} +{"timestamp":"2026-03-22T08:49:27.580779432Z","score":0.2904515140641588,"is_anomaly":false,"confidence":0.37450277334605714,"method":"SEAD","details":"MAD!:w=0.45,s=0.01 RRCF-fast:w=0.14,s=0.68 RRCF-mid:w=0.12,s=0.39 RRCF-slow:w=0.10,s=0.60 COPOD!:w=0.19,s=0.44"} +{"timestamp":"2026-03-22T08:49:57.545481851Z","score":0.40197050320343375,"is_anomaly":false,"confidence":0.5182932811971606,"method":"SEAD","details":"MAD!:w=0.45,s=0.13 RRCF-fast:w=0.14,s=0.68 RRCF-mid:w=0.12,s=0.29 RRCF-slow:w=0.10,s=0.69 COPOD!:w=0.19,s=0.77"} +{"timestamp":"2026-03-22T08:50:27.536056976Z","score":0.28369447247477864,"is_anomaly":false,"confidence":0.36579036975266926,"method":"SEAD","details":"MAD!:w=0.46,s=0.04 RRCF-fast:w=0.14,s=0.60 RRCF-mid:w=0.12,s=0.29 RRCF-slow:w=0.09,s=0.50 COPOD!:w=0.19,s=0.53"} +{"timestamp":"2026-03-22T08:50:59.290564423Z","score":0.7008886077387252,"is_anomaly":false,"confidence":0.9037127186289283,"method":"SEAD","details":"MAD!:w=0.46,s=0.61 RRCF-fast:w=0.14,s=0.77 RRCF-mid:w=0.12,s=0.58 RRCF-slow:w=0.09,s=0.60 COPOD!:w=0.19,s=1.00"} +{"timestamp":"2026-03-22T08:51:27.590015866Z","score":0.43471408025474584,"is_anomaly":false,"confidence":0.5605122396849375,"method":"SEAD","details":"MAD!:w=0.46,s=0.48 RRCF-fast:w=0.14,s=0.68 RRCF-mid:w=0.12,s=0.32 RRCF-slow:w=0.09,s=0.54 COPOD!:w=0.19,s=0.17"} +{"timestamp":"2026-03-22T08:51:57.538485307Z","score":0.2523661045130163,"is_anomaly":false,"confidence":0.325396155510446,"method":"SEAD","details":"MAD!:w=0.46,s=0.05 RRCF-fast:w=0.14,s=0.43 RRCF-mid:w=0.12,s=0.05 RRCF-slow:w=0.09,s=0.36 COPOD!:w=0.19,s=0.71"} +{"timestamp":"2026-03-22T08:52:27.679210426Z","score":0.6524910380063373,"is_anomaly":false,"confidence":0.8450380933413124,"method":"SEAD","details":"MAD!:w=0.46,s=0.46 RRCF-fast!:w=0.14,s=0.90 RRCF-mid:w=0.12,s=0.73 RRCF-slow:w=0.09,s=0.82 COPOD!:w=0.18,s=0.81"} +{"timestamp":"2026-03-22T08:52:57.636256064Z","score":0.45279223039333505,"is_anomaly":false,"confidence":0.5864091010666538,"method":"SEAD","details":"MAD!:w=0.47,s=0.38 RRCF-fast:w=0.14,s=0.41 RRCF-mid:w=0.12,s=0.31 RRCF-slow:w=0.09,s=0.51 COPOD!:w=0.18,s=0.73"} +{"timestamp":"2026-03-22T08:53:30.024044536Z","score":0.5493513055894226,"is_anomaly":false,"confidence":0.7114623080008303,"method":"SEAD","details":"MAD!:w=0.47,s=0.50 RRCF-fast:w=0.14,s=0.67 RRCF-mid:w=0.12,s=0.32 RRCF-slow:w=0.09,s=0.41 COPOD!:w=0.18,s=0.80"} +{"timestamp":"2026-03-22T08:53:57.58277641Z","score":0.5364953548880067,"is_anomaly":false,"confidence":0.6948126263408213,"method":"SEAD","details":"MAD!:w=0.47,s=0.55 RRCF-fast:w=0.14,s=0.45 RRCF-mid:w=0.12,s=0.25 RRCF-slow:w=0.09,s=0.40 COPOD!:w=0.18,s=0.83"} +{"timestamp":"2026-03-22T08:54:27.526585636Z","score":0.2109749619291959,"is_anomaly":false,"confidence":0.27323268702070985,"method":"SEAD","details":"MAD!:w=0.47,s=0.05 RRCF-fast:w=0.14,s=0.34 RRCF-mid:w=0.12,s=0.04 RRCF-slow:w=0.09,s=0.11 COPOD!:w=0.18,s=0.69"} +{"timestamp":"2026-03-22T08:54:57.587026818Z","score":0.3619775715369062,"is_anomaly":false,"confidence":0.4687954608824754,"method":"SEAD","details":"MAD!:w=0.47,s=0.48 RRCF-fast:w=0.14,s=0.25 RRCF-mid:w=0.12,s=0.14 RRCF-slow:w=0.09,s=0.38 COPOD!:w=0.18,s=0.26"} +{"timestamp":"2026-03-22T08:55:27.534849423Z","score":0.18917550488682452,"is_anomaly":false,"confidence":0.24518933154646252,"method":"SEAD","details":"MAD!:w=0.47,s=0.05 RRCF-fast:w=0.14,s=0.01 RRCF-mid:w=0.12,s=0.04 RRCF-slow:w=0.09,s=0.21 COPOD!:w=0.18,s=0.77"} +{"timestamp":"2026-03-22T08:55:57.571961999Z","score":0.39040965111592374,"is_anomaly":false,"confidence":0.5060078018222742,"method":"SEAD","details":"MAD!:w=0.47,s=0.19 RRCF-fast:w=0.14,s=0.87 RRCF-mid:w=0.12,s=0.69 RRCF-slow:w=0.09,s=0.71 COPOD!:w=0.18,s=0.18"} +{"timestamp":"2026-03-22T08:56:30.406624104Z","score":0.6866814164015079,"is_anomaly":false,"confidence":0.8900040075145587,"method":"SEAD","details":"MAD!:w=0.47,s=0.54 RRCF-fast!:w=0.14,s=0.93 RRCF-mid:w=0.12,s=0.66 RRCF-slow:w=0.09,s=0.76 COPOD!:w=0.18,s=0.88"} +{"timestamp":"2026-03-22T08:56:57.593644853Z","score":0.550881848839134,"is_anomaly":false,"confidence":0.7139949348027558,"method":"SEAD","details":"MAD!:w=0.48,s=0.40 RRCF-fast:w=0.13,s=0.71 RRCF-mid:w=0.12,s=0.42 RRCF-slow:w=0.09,s=0.47 COPOD!:w=0.18,s=0.97"} +{"timestamp":"2026-03-22T08:57:27.536420048Z","score":0.20957706784439004,"is_anomaly":false,"confidence":0.271631685100963,"method":"SEAD","details":"MAD!:w=0.48,s=0.04 RRCF-fast:w=0.13,s=0.10 RRCF-mid:w=0.12,s=0.19 RRCF-slow:w=0.09,s=0.26 COPOD!:w=0.17,s=0.76"} +{"timestamp":"2026-03-22T08:57:57.53572724Z","score":0.21678268914725562,"is_anomaly":false,"confidence":0.28097085124556265,"method":"SEAD","details":"MAD!:w=0.48,s=0.15 RRCF-fast:w=0.13,s=0.25 RRCF-mid:w=0.12,s=0.07 RRCF-slow:w=0.09,s=0.15 COPOD!:w=0.17,s=0.50"} +{"timestamp":"2026-03-22T08:58:27.572720377Z","score":0.8101916395470473,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.48,s=0.75 RRCF-fast:w=0.13,s=0.85 RRCF-mid:w=0.12,s=0.75 RRCF-slow!:w=0.09,s=0.86 COPOD!:w=0.17,s=0.96"} +{"timestamp":"2026-03-22T08:58:57.579751144Z","score":0.49349448608826585,"is_anomaly":false,"confidence":0.6396154895330436,"method":"SEAD","details":"MAD!:w=0.48,s=0.44 RRCF-fast:w=0.13,s=0.66 RRCF-mid:w=0.12,s=0.19 RRCF-slow:w=0.09,s=0.28 COPOD!:w=0.17,s=0.85"} +{"timestamp":"2026-03-22T08:59:27.520701937Z","score":0.20913283839778513,"is_anomaly":false,"confidence":0.27105592175818,"method":"SEAD","details":"MAD!:w=0.48,s=0.04 RRCF-fast:w=0.13,s=0.13 RRCF-mid:w=0.12,s=0.00 RRCF-slow:w=0.09,s=0.08 COPOD!:w=0.17,s=0.97"} +{"timestamp":"2026-03-22T08:59:59.819845086Z","score":0.5450154050312352,"is_anomaly":false,"confidence":0.706391469244812,"method":"SEAD","details":"MAD!:w=0.49,s=0.42 RRCF-fast:w=0.13,s=0.84 RRCF-mid:w=0.12,s=0.54 RRCF-slow:w=0.09,s=0.78 COPOD!:w=0.17,s=0.54"} +{"timestamp":"2026-03-22T09:00:27.959239808Z","score":0.5781318141178722,"is_anomaly":false,"confidence":0.7493134649441465,"method":"SEAD","details":"MAD!:w=0.49,s=0.49 RRCF-fast:w=0.13,s=0.68 RRCF-mid:w=0.12,s=0.35 RRCF-slow:w=0.09,s=0.59 COPOD!:w=0.17,s=0.91"} +{"timestamp":"2026-03-22T09:00:57.582720107Z","score":0.26003373728524637,"is_anomaly":false,"confidence":0.3370282968856953,"method":"SEAD","details":"MAD!:w=0.49,s=0.10 RRCF-fast:w=0.13,s=0.23 RRCF-mid:w=0.12,s=0.36 RRCF-slow:w=0.09,s=0.39 COPOD!:w=0.17,s=0.62"} +{"timestamp":"2026-03-22T09:01:29.418417244Z","score":0.6144354068867095,"is_anomaly":false,"confidence":0.7963663518866259,"method":"SEAD","details":"MAD!:w=0.49,s=0.63 RRCF-fast:w=0.13,s=0.47 RRCF-mid:w=0.12,s=0.35 RRCF-slow:w=0.09,s=0.40 COPOD!:w=0.16,s=0.99"} +{"timestamp":"2026-03-22T09:01:57.580543274Z","score":0.2518983553673802,"is_anomaly":false,"confidence":0.32648407312104816,"method":"SEAD","details":"MAD!:w=0.49,s=0.25 RRCF-fast:w=0.13,s=0.09 RRCF-mid:w=0.12,s=0.01 RRCF-slow:w=0.09,s=0.13 COPOD!:w=0.16,s=0.64"} +{"timestamp":"2026-03-22T09:02:27.582774309Z","score":0.31025212045689815,"is_anomaly":false,"confidence":0.40296144689777436,"method":"SEAD","details":"MAD!:w=0.49,s=0.44 RRCF-fast:w=0.13,s=0.29 RRCF-mid:w=0.12,s=0.13 RRCF-slow:w=0.09,s=0.20 COPOD!:w=0.16,s=0.11"} +{"timestamp":"2026-03-22T09:02:57.579907335Z","score":0.15935845567733953,"is_anomaly":false,"confidence":0.20697784041110753,"method":"SEAD","details":"MAD!:w=0.49,s=0.07 RRCF-fast:w=0.13,s=0.13 RRCF-mid:w=0.12,s=0.02 RRCF-slow:w=0.09,s=0.01 COPOD!:w=0.16,s=0.64"} +{"timestamp":"2026-03-22T09:03:27.532293101Z","score":0.19915966273429925,"is_anomaly":false,"confidence":0.2586724169391623,"method":"SEAD","details":"MAD!:w=0.49,s=0.07 RRCF-fast:w=0.13,s=0.13 RRCF-mid:w=0.12,s=0.00 RRCF-slow:w=0.09,s=0.01 COPOD!:w=0.16,s=0.90"} +{"timestamp":"2026-03-22T09:03:57.650069954Z","score":0.9687510133169105,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=0.96 RRCF-fast!:w=0.13,s=1.00 RRCF-mid!:w=0.12,s=0.97 RRCF-slow!:w=0.09,s=0.93 COPOD!:w=0.16,s=0.98"} +{"timestamp":"2026-03-22T09:04:27.58313957Z","score":0.8536596174167818,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=0.85 RRCF-fast!:w=0.13,s=0.99 RRCF-mid!:w=0.12,s=0.78 RRCF-slow:w=0.09,s=0.73 COPOD!:w=0.16,s=0.87"} +{"timestamp":"2026-03-22T09:04:57.578508375Z","score":0.6511253008269549,"is_anomaly":false,"confidence":0.843269333504247,"method":"SEAD","details":"MAD!:w=0.49,s=0.64 RRCF-fast:w=0.13,s=0.61 RRCF-mid:w=0.12,s=0.62 RRCF-slow:w=0.09,s=0.31 COPOD!:w=0.16,s=0.96"} +{"timestamp":"2026-03-22T09:05:27.532333552Z","score":0.3494138083857235,"is_anomaly":false,"confidence":0.45287331550907417,"method":"SEAD","details":"MAD!:w=0.49,s=0.27 RRCF-fast:w=0.13,s=0.33 RRCF-mid:w=0.12,s=0.42 RRCF-slow:w=0.09,s=0.04 COPOD!:w=0.16,s=0.75"} +{"timestamp":"2026-03-22T09:05:57.53824454Z","score":0.23464696016434344,"is_anomaly":false,"confidence":0.30412463466939993,"method":"SEAD","details":"MAD!:w=0.50,s=0.14 RRCF-fast:w=0.13,s=0.51 RRCF-mid:w=0.12,s=0.24 RRCF-slow:w=0.09,s=0.01 COPOD!:w=0.16,s=0.41"} +{"timestamp":"2026-03-22T09:06:27.578890656Z","score":0.3643536400934555,"is_anomaly":false,"confidence":0.47223674922649395,"method":"SEAD","details":"MAD!:w=0.50,s=0.56 RRCF-fast:w=0.13,s=0.36 RRCF-mid:w=0.12,s=0.14 RRCF-slow:w=0.09,s=0.03 COPOD!:w=0.16,s=0.12"} +{"timestamp":"2026-03-22T09:06:57.553486769Z","score":0.1823923857647024,"is_anomaly":false,"confidence":0.23639776815484825,"method":"SEAD","details":"MAD!:w=0.49,s=0.05 RRCF-fast:w=0.13,s=0.15 RRCF-mid:w=0.12,s=0.09 RRCF-slow:w=0.09,s=0.10 COPOD!:w=0.16,s=0.74"} +{"timestamp":"2026-03-22T09:07:27.707134281Z","score":0.8099573930335487,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.50,s=0.90 RRCF-fast:w=0.13,s=0.82 RRCF-mid:w=0.12,s=0.73 RRCF-slow:w=0.09,s=0.60 COPOD!:w=0.16,s=0.71"} +{"timestamp":"2026-03-22T09:07:57.59926156Z","score":0.8085683747028883,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=0.94 RRCF-fast:w=0.13,s=0.80 RRCF-mid:w=0.12,s=0.49 RRCF-slow:w=0.09,s=0.48 COPOD!:w=0.16,s=0.86"} +{"timestamp":"2026-03-22T09:08:27.582462232Z","score":0.23583103766011804,"is_anomaly":false,"confidence":0.3040761482320367,"method":"SEAD","details":"MAD!:w=0.49,s=0.10 RRCF-fast:w=0.13,s=0.46 RRCF-mid:w=0.12,s=0.36 RRCF-slow:w=0.09,s=0.32 COPOD!:w=0.16,s=0.32"} +{"timestamp":"2026-03-22T09:08:57.535840614Z","score":0.19850266065503896,"is_anomaly":false,"confidence":0.25707986794062676,"method":"SEAD","details":"MAD!:w=0.49,s=0.16 RRCF-fast:w=0.13,s=0.13 RRCF-mid:w=0.12,s=0.08 RRCF-slow:w=0.09,s=0.02 COPOD!:w=0.16,s=0.57"} +{"timestamp":"2026-03-22T09:09:27.545142955Z","score":0.12734202251109944,"is_anomaly":false,"confidence":0.16492005811114419,"method":"SEAD","details":"MAD!:w=0.50,s=0.04 RRCF-fast:w=0.13,s=0.26 RRCF-mid:w=0.12,s=0.06 RRCF-slow:w=0.09,s=0.07 COPOD!:w=0.16,s=0.39"} +{"timestamp":"2026-03-22T09:09:57.865798505Z","score":0.5914284370303563,"is_anomaly":false,"confidence":0.7659562042461503,"method":"SEAD","details":"MAD!:w=0.50,s=0.65 RRCF-fast:w=0.13,s=0.54 RRCF-mid:w=0.12,s=0.47 RRCF-slow:w=0.09,s=0.25 COPOD!:w=0.16,s=0.75"} +{"timestamp":"2026-03-22T09:10:27.571824944Z","score":0.3765275121001179,"is_anomaly":false,"confidence":0.4876390208941709,"method":"SEAD","details":"MAD!:w=0.50,s=0.59 RRCF-fast:w=0.13,s=0.40 RRCF-mid:w=0.12,s=0.22 RRCF-slow:w=0.09,s=0.03 COPOD!:w=0.15,s=0.02"} +{"timestamp":"2026-03-22T09:10:57.535470786Z","score":0.13338673195155595,"is_anomaly":false,"confidence":0.17274853305230653,"method":"SEAD","details":"MAD!:w=0.49,s=0.04 RRCF-fast:w=0.13,s=0.08 RRCF-mid:w=0.12,s=0.03 RRCF-slow:w=0.10,s=0.02 COPOD!:w=0.16,s=0.61"} +{"timestamp":"2026-03-22T09:11:32.941742737Z","score":0.8744937183718109,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=0.93 RRCF-fast:w=0.13,s=0.79 RRCF-mid!:w=0.12,s=0.87 RRCF-slow:w=0.10,s=0.59 COPOD!:w=0.16,s=0.97"} +{"timestamp":"2026-03-22T09:11:57.563215529Z","score":0.8120395963738837,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=0.92 RRCF-fast:w=0.13,s=0.76 RRCF-mid:w=0.12,s=0.67 RRCF-slow:w=0.10,s=0.63 COPOD!:w=0.16,s=0.74"} +{"timestamp":"2026-03-22T09:12:27.648774016Z","score":0.5969718133974088,"is_anomaly":false,"confidence":0.7697243391796192,"method":"SEAD","details":"MAD!:w=0.49,s=0.69 RRCF-fast:w=0.13,s=0.57 RRCF-mid:w=0.12,s=0.53 RRCF-slow:w=0.10,s=0.39 COPOD!:w=0.16,s=0.52"} +{"timestamp":"2026-03-22T09:12:57.577664319Z","score":0.2484838539804512,"is_anomaly":false,"confidence":0.3203904539703649,"method":"SEAD","details":"MAD!:w=0.49,s=0.30 RRCF-fast:w=0.13,s=0.38 RRCF-mid:w=0.12,s=0.20 RRCF-slow:w=0.10,s=0.05 COPOD!:w=0.16,s=0.13"} +{"timestamp":"2026-03-22T09:13:27.530227184Z","score":0.15248493682728503,"is_anomaly":false,"confidence":0.19661123791801693,"method":"SEAD","details":"MAD!:w=0.49,s=0.08 RRCF-fast:w=0.13,s=0.17 RRCF-mid:w=0.12,s=0.18 RRCF-slow:w=0.10,s=0.04 COPOD!:w=0.16,s=0.39"} +{"timestamp":"2026-03-22T09:13:57.577569441Z","score":0.34011716653336993,"is_anomaly":false,"confidence":0.43854074074894844,"method":"SEAD","details":"MAD!:w=0.49,s=0.54 RRCF-fast:w=0.13,s=0.40 RRCF-mid:w=0.12,s=0.12 RRCF-slow:w=0.10,s=0.04 COPOD!:w=0.16,s=0.01"} +{"timestamp":"2026-03-22T09:14:27.52982038Z","score":0.20253275011814037,"is_anomaly":false,"confidence":0.2611419563676056,"method":"SEAD","details":"MAD!:w=0.49,s=0.06 RRCF-fast:w=0.13,s=0.10 RRCF-mid:w=0.12,s=0.15 RRCF-slow:w=0.10,s=0.04 COPOD!:w=0.16,s=0.86"} +{"timestamp":"2026-03-22T09:14:57.624684288Z","score":0.7691223923422528,"is_anomaly":false,"confidence":0.9916920898236466,"method":"SEAD","details":"MAD!:w=0.49,s=0.87 RRCF-fast:w=0.13,s=0.75 RRCF-mid:w=0.12,s=0.66 RRCF-slow:w=0.10,s=0.60 COPOD!:w=0.16,s=0.67"} +{"timestamp":"2026-03-22T09:15:28.202960431Z","score":0.7883857959379286,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=0.96 RRCF-fast:w=0.13,s=0.59 RRCF-mid:w=0.13,s=0.59 RRCF-slow:w=0.10,s=0.32 COPOD!:w=0.16,s=0.88"} +{"timestamp":"2026-03-22T09:15:57.58145786Z","score":0.5689753435935782,"is_anomaly":false,"confidence":0.7336262123744764,"method":"SEAD","details":"MAD!:w=0.48,s=0.62 RRCF-fast:w=0.13,s=0.81 RRCF-mid:w=0.13,s=0.54 RRCF-slow:w=0.10,s=0.46 COPOD!:w=0.16,s=0.32"} +{"timestamp":"2026-03-22T09:16:27.531182093Z","score":0.21257343308456386,"is_anomaly":false,"confidence":0.27408822600345095,"method":"SEAD","details":"MAD!:w=0.48,s=0.09 RRCF-fast:w=0.13,s=0.54 RRCF-mid:w=0.13,s=0.20 RRCF-slow:w=0.10,s=0.03 COPOD!:w=0.16,s=0.43"} +{"timestamp":"2026-03-22T09:16:57.537611183Z","score":0.19677894936452023,"is_anomaly":false,"confidence":0.25372311282514987,"method":"SEAD","details":"MAD!:w=0.49,s=0.18 RRCF-fast:w=0.13,s=0.36 RRCF-mid:w=0.13,s=0.17 RRCF-slow:w=0.10,s=0.02 COPOD!:w=0.16,s=0.25"} +{"timestamp":"2026-03-22T09:17:28.530908479Z","score":0.6549737898739589,"is_anomaly":false,"confidence":0.8445110075156727,"method":"SEAD","details":"MAD!:w=0.49,s=0.75 RRCF-fast!:w=0.13,s=0.92 RRCF-mid:w=0.13,s=0.58 RRCF-slow:w=0.10,s=0.53 COPOD!:w=0.16,s=0.29"} +{"timestamp":"2026-03-22T09:17:57.582213883Z","score":0.4675728953953826,"is_anomaly":false,"confidence":0.6028797840190863,"method":"SEAD","details":"MAD!:w=0.48,s=0.55 RRCF-fast:w=0.13,s=0.43 RRCF-mid:w=0.13,s=0.29 RRCF-slow:w=0.10,s=0.14 COPOD!:w=0.16,s=0.60"} +{"timestamp":"2026-03-22T09:18:27.539399804Z","score":0.23089007465208844,"is_anomaly":false,"confidence":0.2977053625418006,"method":"SEAD","details":"MAD!:w=0.48,s=0.09 RRCF-fast:w=0.13,s=0.24 RRCF-mid:w=0.13,s=0.17 RRCF-slow:w=0.10,s=0.00 COPOD!:w=0.16,s=0.85"} +{"timestamp":"2026-03-22T09:18:57.621383104Z","score":0.568364749570039,"is_anomaly":false,"confidence":0.7360865304243664,"method":"SEAD","details":"MAD!:w=0.49,s=0.42 RRCF-fast!:w=0.13,s=0.87 RRCF-mid!:w=0.13,s=0.81 RRCF-slow!:w=0.10,s=0.76 COPOD!:w=0.16,s=0.46"} +{"timestamp":"2026-03-22T09:19:29.075118503Z","score":0.6373860785315695,"is_anomaly":false,"confidence":0.8254757309316211,"method":"SEAD","details":"MAD!:w=0.49,s=0.65 RRCF-fast!:w=0.13,s=0.92 RRCF-mid!:w=0.13,s=0.87 RRCF-slow:w=0.10,s=0.52 COPOD!:w=0.15,s=0.25"} +{"timestamp":"2026-03-22T09:19:57.587851473Z","score":0.2553420630267724,"is_anomaly":false,"confidence":0.3306923122641958,"method":"SEAD","details":"MAD!:w=0.49,s=0.02 RRCF-fast:w=0.13,s=0.57 RRCF-mid:w=0.13,s=0.51 RRCF-slow:w=0.10,s=0.25 COPOD!:w=0.16,s=0.53"} +{"timestamp":"2026-03-22T09:20:27.573451023Z","score":0.5537214292080546,"is_anomaly":false,"confidence":0.7171220346717716,"method":"SEAD","details":"MAD!:w=0.49,s=0.75 RRCF-fast:w=0.13,s=0.26 RRCF-mid:w=0.12,s=0.29 RRCF-slow:w=0.10,s=0.12 COPOD!:w=0.15,s=0.69"} +{"timestamp":"2026-03-22T09:20:57.537278335Z","score":0.22792673958740947,"is_anomaly":false,"confidence":0.29518685502708103,"method":"SEAD","details":"MAD!:w=0.49,s=0.28 RRCF-fast:w=0.13,s=0.10 RRCF-mid:w=0.13,s=0.01 RRCF-slow:w=0.10,s=0.05 COPOD!:w=0.15,s=0.47"} +{"timestamp":"2026-03-22T09:21:27.575289609Z","score":0.37715946764100544,"is_anomaly":false,"confidence":0.48845746356118397,"method":"SEAD","details":"MAD!:w=0.49,s=0.56 RRCF-fast:w=0.13,s=0.27 RRCF-mid:w=0.13,s=0.26 RRCF-slow:w=0.10,s=0.20 COPOD!:w=0.15,s=0.12"} +{"timestamp":"2026-03-22T09:21:57.545198789Z","score":0.17811272291804942,"is_anomaly":false,"confidence":0.2306729548874449,"method":"SEAD","details":"MAD!:w=0.48,s=0.07 RRCF-fast:w=0.13,s=0.00 RRCF-mid:w=0.13,s=0.07 RRCF-slow:w=0.10,s=0.01 COPOD!:w=0.16,s=0.85"} +{"timestamp":"2026-03-22T09:22:27.539875575Z","score":0.20019898391150137,"is_anomaly":false,"confidence":0.25947680208866597,"method":"SEAD","details":"MAD!:w=0.49,s=0.06 RRCF-fast:w=0.13,s=0.22 RRCF-mid:w=0.13,s=0.19 RRCF-slow:w=0.10,s=0.03 COPOD!:w=0.15,s=0.74"} +{"timestamp":"2026-03-22T09:22:57.655958192Z","score":0.7997909034811266,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=0.77 RRCF-fast!:w=0.13,s=0.96 RRCF-mid!:w=0.13,s=0.96 RRCF-slow!:w=0.10,s=0.94 COPOD!:w=0.15,s=0.52"} +{"timestamp":"2026-03-22T09:23:27.575874374Z","score":0.3205744120584729,"is_anomaly":false,"confidence":0.41517442257539955,"method":"SEAD","details":"MAD!:w=0.49,s=0.11 RRCF-fast:w=0.13,s=0.48 RRCF-mid:w=0.13,s=0.71 RRCF-slow:w=0.10,s=0.32 COPOD!:w=0.15,s=0.52"} +{"timestamp":"2026-03-22T09:23:57.540444799Z","score":0.27583722389227544,"is_anomaly":false,"confidence":0.35723549929926424,"method":"SEAD","details":"MAD!:w=0.49,s=0.02 RRCF-fast:w=0.13,s=0.53 RRCF-mid:w=0.13,s=0.46 RRCF-slow:w=0.10,s=0.38 COPOD!:w=0.15,s=0.66"} +{"timestamp":"2026-03-22T09:24:27.539153544Z","score":0.21919100043346906,"is_anomaly":false,"confidence":0.28387324008283843,"method":"SEAD","details":"MAD!:w=0.50,s=0.24 RRCF-fast:w=0.13,s=0.36 RRCF-mid:w=0.12,s=0.18 RRCF-slow:w=0.10,s=0.07 COPOD!:w=0.15,s=0.16"} +{"timestamp":"2026-03-22T09:24:57.539690286Z","score":0.1310095284939266,"is_anomaly":false,"confidence":0.1696698279662453,"method":"SEAD","details":"MAD!:w=0.50,s=0.05 RRCF-fast:w=0.13,s=0.10 RRCF-mid:w=0.12,s=0.27 RRCF-slow:w=0.10,s=0.10 COPOD!:w=0.15,s=0.33"} +{"timestamp":"2026-03-22T09:25:27.585204508Z","score":0.7093607660930334,"is_anomaly":false,"confidence":0.919398587928658,"method":"SEAD","details":"MAD!:w=0.50,s=0.69 RRCF-fast:w=0.13,s=0.73 RRCF-mid!:w=0.12,s=0.76 RRCF-slow:w=0.10,s=0.44 COPOD!:w=0.15,s=0.90"} +{"timestamp":"2026-03-22T09:25:57.548073473Z","score":0.3444670297710846,"is_anomaly":false,"confidence":0.4464618229505779,"method":"SEAD","details":"MAD!:w=0.50,s=0.38 RRCF-fast:w=0.13,s=0.15 RRCF-mid:w=0.12,s=0.20 RRCF-slow:w=0.10,s=0.03 COPOD!:w=0.15,s=0.73"} +{"timestamp":"2026-03-22T09:26:27.570429472Z","score":0.420658100565149,"is_anomaly":false,"confidence":0.5452126508073981,"method":"SEAD","details":"MAD!:w=0.50,s=0.26 RRCF-fast!:w=0.13,s=0.86 RRCF-mid!:w=0.12,s=0.80 RRCF-slow!:w=0.10,s=0.78 COPOD!:w=0.15,s=0.01"} +{"timestamp":"2026-03-22T09:26:58.185590091Z","score":0.6733277359914924,"is_anomaly":false,"confidence":0.8726963757713497,"method":"SEAD","details":"MAD!:w=0.50,s=0.72 RRCF-fast:w=0.13,s=0.53 RRCF-mid!:w=0.12,s=0.80 RRCF-slow!:w=0.10,s=0.65 COPOD!:w=0.15,s=0.56"} +{"timestamp":"2026-03-22T09:27:27.582437473Z","score":0.2743844254155051,"is_anomaly":false,"confidence":0.3556281448522433,"method":"SEAD","details":"MAD!:w=0.50,s=0.11 RRCF-fast:w=0.13,s=0.46 RRCF-mid:w=0.12,s=0.46 RRCF-slow:w=0.10,s=0.37 COPOD!:w=0.15,s=0.44"} +{"timestamp":"2026-03-22T09:27:57.602697227Z","score":0.5459195547422687,"is_anomaly":false,"confidence":0.7075633327130705,"method":"SEAD","details":"MAD!:w=0.50,s=0.69 RRCF-fast:w=0.13,s=0.38 RRCF-mid:w=0.12,s=0.41 RRCF-slow:w=0.10,s=0.23 COPOD!:w=0.15,s=0.54"} +{"timestamp":"2026-03-22T09:28:27.536743443Z","score":0.28430886555760304,"is_anomaly":false,"confidence":0.36849115714270686,"method":"SEAD","details":"MAD!:w=0.50,s=0.33 RRCF-fast:w=0.13,s=0.22 RRCF-mid:w=0.12,s=0.27 RRCF-slow:w=0.10,s=0.19 COPOD!:w=0.15,s=0.27"} +{"timestamp":"2026-03-22T09:28:57.535200746Z","score":0.1671311119345296,"is_anomaly":false,"confidence":0.21707311649503513,"method":"SEAD","details":"MAD!:w=0.50,s=0.20 RRCF-fast:w=0.13,s=0.25 RRCF-mid:w=0.12,s=0.14 RRCF-slow:w=0.10,s=0.03 COPOD!:w=0.15,s=0.08"} +{"timestamp":"2026-03-22T09:29:27.598152533Z","score":0.15194268010229936,"is_anomaly":false,"confidence":0.19734608785068464,"method":"SEAD","details":"MAD!:w=0.50,s=0.15 RRCF-fast:w=0.13,s=0.18 RRCF-mid:w=0.12,s=0.31 RRCF-slow:w=0.10,s=0.05 COPOD!:w=0.15,s=0.05"} +{"timestamp":"2026-03-22T09:29:57.536388985Z","score":0.19561309887481276,"is_anomaly":false,"confidence":0.2540660712928235,"method":"SEAD","details":"MAD!:w=0.50,s=0.08 RRCF-fast:w=0.13,s=0.07 RRCF-mid:w=0.12,s=0.15 RRCF-slow:w=0.10,s=0.05 COPOD!:w=0.15,s=0.81"} +{"timestamp":"2026-03-22T09:30:30.595606395Z","score":0.5891062735293308,"is_anomaly":false,"confidence":0.7651426072716051,"method":"SEAD","details":"MAD!:w=0.50,s=0.49 RRCF-fast:w=0.13,s=0.64 RRCF-mid!:w=0.12,s=0.83 RRCF-slow!:w=0.10,s=0.75 COPOD!:w=0.15,s=0.57"} +{"timestamp":"2026-03-22T09:30:57.617898711Z","score":0.4690441339990456,"is_anomaly":false,"confidence":0.6092035813222645,"method":"SEAD","details":"MAD!:w=0.50,s=0.40 RRCF-fast:w=0.13,s=0.64 RRCF-mid:w=0.12,s=0.58 RRCF-slow:w=0.10,s=0.46 COPOD!:w=0.15,s=0.45"} +{"timestamp":"2026-03-22T09:31:28.914860614Z","score":0.15477957860621477,"is_anomaly":false,"confidence":0.20103070642526968,"method":"SEAD","details":"MAD!:w=0.50,s=0.00 RRCF-fast:w=0.13,s=0.43 RRCF-mid:w=0.12,s=0.34 RRCF-slow:w=0.10,s=0.22 COPOD!:w=0.15,s=0.22"} +{"timestamp":"2026-03-22T09:31:57.538096401Z","score":0.6512205727757582,"is_anomaly":false,"confidence":0.8458178589363523,"method":"SEAD","details":"MAD!:w=0.50,s=0.75 RRCF-fast!:w=0.13,s=0.84 RRCF-mid!:w=0.12,s=0.84 RRCF-slow:w=0.10,s=0.13 COPOD!:w=0.15,s=0.34"} +{"timestamp":"2026-03-22T09:32:27.53875193Z","score":0.30423009132178075,"is_anomaly":false,"confidence":0.3955548484231376,"method":"SEAD","details":"MAD!:w=0.50,s=0.36 RRCF-fast:w=0.13,s=0.18 RRCF-mid:w=0.12,s=0.20 RRCF-slow:w=0.10,s=0.01 COPOD!:w=0.15,s=0.49"} +{"timestamp":"2026-03-22T09:32:57.56986829Z","score":0.24193341982110922,"is_anomaly":false,"confidence":0.3145577637966507,"method":"SEAD","details":"MAD!:w=0.50,s=0.03 RRCF-fast:w=0.13,s=0.79 RRCF-mid:w=0.12,s=0.58 RRCF-slow:w=0.10,s=0.33 COPOD!:w=0.15,s=0.15"} +{"timestamp":"2026-03-22T09:33:27.541029564Z","score":0.24120397580101113,"is_anomaly":false,"confidence":0.3136093529489614,"method":"SEAD","details":"MAD!:w=0.50,s=0.09 RRCF-fast:w=0.13,s=0.68 RRCF-mid:w=0.12,s=0.38 RRCF-slow:w=0.10,s=0.42 COPOD!:w=0.15,s=0.14"} +{"timestamp":"2026-03-22T09:33:57.535799993Z","score":0.2224781890520252,"is_anomaly":false,"confidence":0.28926239993416336,"method":"SEAD","details":"MAD!:w=0.51,s=0.09 RRCF-fast:w=0.13,s=0.43 RRCF-mid:w=0.12,s=0.69 RRCF-slow:w=0.10,s=0.26 COPOD!:w=0.15,s=0.09"} +{"timestamp":"2026-03-22T09:34:27.524463224Z","score":0.23294181061436214,"is_anomaly":false,"confidence":0.30286702472017624,"method":"SEAD","details":"MAD!:w=0.51,s=0.09 RRCF-fast:w=0.13,s=0.48 RRCF-mid:w=0.12,s=0.60 RRCF-slow:w=0.10,s=0.27 COPOD!:w=0.15,s=0.17"} +{"timestamp":"2026-03-22T09:34:57.535364948Z","score":0.21402742016225337,"is_anomaly":false,"confidence":0.2782748523423734,"method":"SEAD","details":"MAD!:w=0.51,s=0.10 RRCF-fast:w=0.12,s=0.49 RRCF-mid:w=0.12,s=0.63 RRCF-slow:w=0.10,s=0.26 COPOD!:w=0.15,s=0.01"} +{"timestamp":"2026-03-22T09:35:27.535836945Z","score":0.22207370740124824,"is_anomaly":false,"confidence":0.2896419410670054,"method":"SEAD","details":"MAD!:w=0.51,s=0.10 RRCF-fast:w=0.12,s=0.39 RRCF-mid:w=0.12,s=0.52 RRCF-slow:w=0.10,s=0.19 COPOD!:w=0.15,s=0.29"} +{"timestamp":"2026-03-22T09:35:57.53700847Z","score":0.18641479177902479,"is_anomaly":false,"confidence":0.24313342973520735,"method":"SEAD","details":"MAD!:w=0.51,s=0.10 RRCF-fast:w=0.12,s=0.33 RRCF-mid:w=0.12,s=0.49 RRCF-slow:w=0.10,s=0.23 COPOD!:w=0.15,s=0.10"} +{"timestamp":"2026-03-22T09:36:27.578593756Z","score":0.288928871443339,"is_anomaly":false,"confidence":0.37683848364787376,"method":"SEAD","details":"MAD!:w=0.51,s=0.16 RRCF-fast:w=0.12,s=0.44 RRCF-mid:w=0.12,s=0.43 RRCF-slow:w=0.10,s=0.29 COPOD!:w=0.15,s=0.51"} +{"timestamp":"2026-03-22T09:36:57.53673356Z","score":0.1941408954493588,"is_anomaly":false,"confidence":0.25321028075078994,"method":"SEAD","details":"MAD!:w=0.52,s=0.11 RRCF-fast:w=0.12,s=0.35 RRCF-mid:w=0.12,s=0.38 RRCF-slow:w=0.10,s=0.19 COPOD!:w=0.15,s=0.21"} +{"timestamp":"2026-03-22T09:37:27.58854644Z","score":0.09168505382235206,"is_anomaly":false,"confidence":0.11958118440359614,"method":"SEAD","details":"MAD!:w=0.52,s=0.02 RRCF-fast:w=0.12,s=0.24 RRCF-mid:w=0.12,s=0.26 RRCF-slow:w=0.10,s=0.09 COPOD!:w=0.15,s=0.10"} +{"timestamp":"2026-03-22T09:37:57.546803746Z","score":0.20579467092726844,"is_anomaly":false,"confidence":0.2684098385448246,"method":"SEAD","details":"MAD!:w=0.52,s=0.13 RRCF-fast:w=0.12,s=0.07 RRCF-mid:w=0.12,s=0.02 RRCF-slow:w=0.10,s=0.00 COPOD!:w=0.15,s=0.88"} +{"timestamp":"2026-03-22T09:38:27.572639457Z","score":0.776739438980734,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.52,s=0.80 RRCF-fast:w=0.12,s=0.54 RRCF-mid!:w=0.12,s=0.89 RRCF-slow!:w=0.10,s=0.80 COPOD!:w=0.14,s=0.80"} +{"timestamp":"2026-03-22T09:38:57.537409546Z","score":0.6013340948906244,"is_anomaly":false,"confidence":0.7842962434053203,"method":"SEAD","details":"MAD!:w=0.52,s=0.79 RRCF-fast:w=0.12,s=0.42 RRCF-mid:w=0.12,s=0.64 RRCF-slow:w=0.10,s=0.38 COPOD!:w=0.14,s=0.20"} +{"timestamp":"2026-03-22T09:39:27.528300902Z","score":0.6309715358740277,"is_anomaly":false,"confidence":0.822951183853455,"method":"SEAD","details":"MAD!:w=0.52,s=0.79 RRCF-fast:w=0.12,s=0.75 RRCF-mid!:w=0.12,s=0.80 RRCF-slow:w=0.10,s=0.35 COPOD!:w=0.15,s=0.02"} +{"timestamp":"2026-03-22T09:39:57.530096518Z","score":0.5820583364460457,"is_anomaly":false,"confidence":0.7591556351056674,"method":"SEAD","details":"MAD!:w=0.51,s=0.79 RRCF-fast:w=0.12,s=0.50 RRCF-mid:w=0.12,s=0.75 RRCF-slow:w=0.10,s=0.22 COPOD!:w=0.15,s=0.04"} +{"timestamp":"2026-03-22T09:40:28.524822835Z","score":0.5474041778413103,"is_anomaly":false,"confidence":0.7139575885571683,"method":"SEAD","details":"MAD!:w=0.51,s=0.78 RRCF-fast:w=0.12,s=0.37 RRCF-mid:w=0.12,s=0.46 RRCF-slow:w=0.10,s=0.27 COPOD!:w=0.15,s=0.14"} +{"timestamp":"2026-03-22T09:40:57.533493299Z","score":0.5708266940957063,"is_anomaly":false,"confidence":0.7445066488308322,"method":"SEAD","details":"MAD!:w=0.51,s=0.79 RRCF-fast:w=0.12,s=0.44 RRCF-mid:w=0.12,s=0.54 RRCF-slow:w=0.10,s=0.25 COPOD!:w=0.15,s=0.17"} +{"timestamp":"2026-03-22T09:41:27.531962053Z","score":0.5325384850851919,"is_anomaly":false,"confidence":0.694568854269015,"method":"SEAD","details":"MAD!:w=0.50,s=0.77 RRCF-fast:w=0.13,s=0.35 RRCF-mid:w=0.12,s=0.56 RRCF-slow:w=0.10,s=0.33 COPOD!:w=0.15,s=0.01"} +{"timestamp":"2026-03-22T09:41:57.53093063Z","score":0.521959096080276,"is_anomaly":false,"confidence":0.680770576199337,"method":"SEAD","details":"MAD!:w=0.50,s=0.77 RRCF-fast:w=0.13,s=0.29 RRCF-mid:w=0.12,s=0.36 RRCF-slow:w=0.10,s=0.29 COPOD!:w=0.15,s=0.17"} +{"timestamp":"2026-03-22T09:42:27.533277517Z","score":0.480815891779085,"is_anomaly":false,"confidence":0.6283338365815939,"method":"SEAD","details":"MAD!:w=0.49,s=0.77 RRCF-fast:w=0.13,s=0.09 RRCF-mid:w=0.12,s=0.48 RRCF-slow:w=0.10,s=0.30 COPOD!:w=0.16,s=0.00"} +{"timestamp":"2026-03-22T09:42:57.534050753Z","score":0.5096912003874928,"is_anomaly":false,"confidence":0.6660683078222711,"method":"SEAD","details":"MAD!:w=0.49,s=0.78 RRCF-fast:w=0.13,s=0.35 RRCF-mid:w=0.12,s=0.31 RRCF-slow:w=0.10,s=0.22 COPOD!:w=0.16,s=0.15"} +{"timestamp":"2026-03-22T09:43:27.559308473Z","score":0.6893079579535053,"is_anomaly":false,"confidence":0.9007928423591887,"method":"SEAD","details":"MAD!:w=0.49,s=0.77 RRCF-fast!:w=0.13,s=0.83 RRCF-mid:w=0.12,s=0.59 RRCF-slow:w=0.11,s=0.33 COPOD!:w=0.16,s=0.64"} +{"timestamp":"2026-03-22T09:43:57.572584304Z","score":0.8300092825374769,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.48,s=0.78 RRCF-fast!:w=0.13,s=0.98 RRCF-mid!:w=0.12,s=0.98 RRCF-slow!:w=0.11,s=0.83 COPOD!:w=0.16,s=0.75"} +{"timestamp":"2026-03-22T09:44:27.53284935Z","score":0.7281470840116756,"is_anomaly":false,"confidence":0.9496934025348566,"method":"SEAD","details":"MAD!:w=0.49,s=0.78 RRCF-fast!:w=0.13,s=0.96 RRCF-mid!:w=0.12,s=0.98 RRCF-slow!:w=0.11,s=0.64 COPOD!:w=0.16,s=0.25"} +{"timestamp":"2026-03-22T09:44:57.531938691Z","score":0.7945818626582466,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.48,s=0.79 RRCF-fast!:w=0.13,s=0.90 RRCF-mid!:w=0.12,s=0.94 RRCF-slow!:w=0.11,s=0.67 COPOD!:w=0.16,s=0.70"} +{"timestamp":"2026-03-22T09:45:27.535732857Z","score":0.7519342515672637,"is_anomaly":false,"confidence":0.9807180630582116,"method":"SEAD","details":"MAD!:w=0.48,s=0.79 RRCF-fast!:w=0.13,s=0.90 RRCF-mid!:w=0.12,s=0.94 RRCF-slow!:w=0.11,s=0.89 COPOD!:w=0.16,s=0.30"} +{"timestamp":"2026-03-22T09:45:57.530715487Z","score":0.7460192127635814,"is_anomaly":false,"confidence":0.9730033122187993,"method":"SEAD","details":"MAD!:w=0.48,s=0.79 RRCF-fast:w=0.13,s=0.80 RRCF-mid!:w=0.12,s=0.89 RRCF-slow:w=0.11,s=0.63 COPOD!:w=0.16,s=0.53"} +{"timestamp":"2026-03-22T09:46:27.541390294Z","score":0.7363540129399244,"is_anomaly":false,"confidence":0.9603973748906743,"method":"SEAD","details":"MAD!:w=0.48,s=0.81 RRCF-fast!:w=0.13,s=0.91 RRCF-mid!:w=0.12,s=0.88 RRCF-slow:w=0.11,s=0.43 COPOD!:w=0.16,s=0.48"} +{"timestamp":"2026-03-22T09:47:06.352212847Z","score":0.8423876861679299,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.48,s=0.81 RRCF-fast!:w=0.13,s=0.95 RRCF-mid!:w=0.12,s=0.88 RRCF-slow:w=0.11,s=0.59 COPOD!:w=0.16,s=1.00"} +{"timestamp":"2026-03-22T09:47:28.926862308Z","score":0.6666100655180278,"is_anomaly":false,"confidence":0.8667151966385502,"method":"SEAD","details":"MAD!:w=0.48,s=0.49 RRCF-fast!:w=0.13,s=0.92 RRCF-mid:w=0.12,s=0.78 RRCF-slow:w=0.11,s=0.54 COPOD!:w=0.16,s=1.00"} +{"timestamp":"2026-03-22T09:47:57.589190744Z","score":0.48746825716979214,"is_anomaly":false,"confidence":0.6337980300967144,"method":"SEAD","details":"MAD!:w=0.48,s=0.14 RRCF-fast!:w=0.13,s=0.99 RRCF-mid!:w=0.12,s=0.87 RRCF-slow:w=0.11,s=0.55 COPOD!:w=0.16,s=0.81"} +{"timestamp":"2026-03-22T09:48:27.537336237Z","score":0.38091089830432223,"is_anomaly":false,"confidence":0.4952539441015523,"method":"SEAD","details":"MAD!:w=0.49,s=0.13 RRCF-fast:w=0.13,s=0.81 RRCF-mid:w=0.12,s=0.68 RRCF-slow:w=0.11,s=0.20 COPOD!:w=0.16,s=0.71"} +{"timestamp":"2026-03-22T09:48:57.626768813Z","score":0.7568243020857861,"is_anomaly":false,"confidence":0.9870959622731846,"method":"SEAD","details":"MAD!:w=0.49,s=0.61 RRCF-fast!:w=0.12,s=0.99 RRCF-mid!:w=0.12,s=0.89 RRCF-slow!:w=0.11,s=0.80 COPOD!:w=0.16,s=0.91"} +{"timestamp":"2026-03-22T09:49:27.584975346Z","score":0.4846437400216875,"is_anomaly":false,"confidence":0.6321016352117049,"method":"SEAD","details":"MAD!:w=0.50,s=0.30 RRCF-fast:w=0.12,s=0.87 RRCF-mid:w=0.12,s=0.63 RRCF-slow:w=0.11,s=0.43 COPOD!:w=0.16,s=0.67"} +{"timestamp":"2026-03-22T09:49:57.583579034Z","score":0.276688280672014,"is_anomaly":false,"confidence":0.36087356590816333,"method":"SEAD","details":"MAD!:w=0.50,s=0.01 RRCF-fast:w=0.12,s=0.76 RRCF-mid:w=0.12,s=0.68 RRCF-slow:w=0.11,s=0.45 COPOD!:w=0.16,s=0.33"} +{"timestamp":"2026-03-22T09:50:27.549488013Z","score":0.31552622754640725,"is_anomaly":false,"confidence":0.41152836179280783,"method":"SEAD","details":"MAD!:w=0.50,s=0.24 RRCF-fast:w=0.12,s=0.52 RRCF-mid:w=0.11,s=0.32 RRCF-slow:w=0.10,s=0.10 COPOD!:w=0.16,s=0.52"} +{"timestamp":"2026-03-22T09:50:57.603869791Z","score":0.624139312782922,"is_anomaly":false,"confidence":0.8140401858741438,"method":"SEAD","details":"MAD!:w=0.50,s=0.60 RRCF-fast:w=0.12,s=0.86 RRCF-mid:w=0.11,s=0.76 RRCF-slow:w=0.10,s=0.46 COPOD!:w=0.16,s=0.53"} +{"timestamp":"2026-03-22T09:51:27.580408798Z","score":0.6785220216171555,"is_anomaly":false,"confidence":0.8849693991140027,"method":"SEAD","details":"MAD!:w=0.50,s=0.61 RRCF-fast:w=0.12,s=0.71 RRCF-mid:w=0.11,s=0.72 RRCF-slow:w=0.10,s=0.51 COPOD!:w=0.16,s=0.96"} +{"timestamp":"2026-03-22T09:51:57.54790802Z","score":0.30449754365296233,"is_anomaly":false,"confidence":0.397144086194886,"method":"SEAD","details":"MAD!:w=0.50,s=0.20 RRCF-fast:w=0.12,s=0.19 RRCF-mid:w=0.11,s=0.22 RRCF-slow:w=0.10,s=0.10 COPOD!:w=0.16,s=0.94"} +{"timestamp":"2026-03-22T09:52:27.589798839Z","score":0.524505937879139,"is_anomaly":false,"confidence":0.6854283185981881,"method":"SEAD","details":"MAD!:w=0.51,s=0.40 RRCF-fast:w=0.12,s=0.84 RRCF-mid:w=0.11,s=0.82 RRCF-slow!:w=0.11,s=0.76 COPOD!:w=0.15,s=0.30"} +{"timestamp":"2026-03-22T09:52:58.208667449Z","score":0.6641532381578372,"is_anomaly":false,"confidence":0.8679204646620532,"method":"SEAD","details":"MAD!:w=0.51,s=0.57 RRCF-fast:w=0.12,s=0.87 RRCF-mid:w=0.11,s=0.74 RRCF-slow:w=0.10,s=0.54 COPOD!:w=0.15,s=0.85"} +{"timestamp":"2026-03-22T09:53:27.589639549Z","score":0.305896469484678,"is_anomaly":false,"confidence":0.39974781523315894,"method":"SEAD","details":"MAD!:w=0.51,s=0.07 RRCF-fast:w=0.12,s=0.41 RRCF-mid:w=0.11,s=0.63 RRCF-slow:w=0.10,s=0.44 COPOD!:w=0.15,s=0.67"} +{"timestamp":"2026-03-22T09:53:57.547662257Z","score":0.452404044239714,"is_anomaly":false,"confidence":0.5912050197641444,"method":"SEAD","details":"MAD!:w=0.51,s=0.45 RRCF-fast:w=0.12,s=0.12 RRCF-mid:w=0.11,s=0.72 RRCF-slow:w=0.10,s=0.65 COPOD!:w=0.15,s=0.39"} +{"timestamp":"2026-03-22T09:54:27.536555433Z","score":0.3084722768564266,"is_anomaly":false,"confidence":0.403113899748788,"method":"SEAD","details":"MAD!:w=0.51,s=0.24 RRCF-fast:w=0.12,s=0.22 RRCF-mid:w=0.11,s=0.23 RRCF-slow:w=0.10,s=0.36 COPOD!:w=0.15,s=0.62"} +{"timestamp":"2026-03-22T09:54:57.605018613Z","score":0.7138090263027539,"is_anomaly":false,"confidence":0.9328110234123734,"method":"SEAD","details":"MAD!:w=0.51,s=0.67 RRCF-fast:w=0.12,s=0.72 RRCF-mid:w=0.11,s=0.67 RRCF-slow:w=0.10,s=0.59 COPOD!:w=0.15,s=0.97"} +{"timestamp":"2026-03-22T09:55:27.583302962Z","score":0.24998381883067028,"is_anomaly":false,"confidence":0.3269114190882266,"method":"SEAD","details":"MAD!:w=0.52,s=0.32 RRCF-fast:w=0.12,s=0.01 RRCF-mid:w=0.11,s=0.07 RRCF-slow:w=0.10,s=0.14 COPOD!:w=0.15,s=0.42"} +{"timestamp":"2026-03-22T09:55:57.539293479Z","score":0.2452005090779773,"is_anomaly":false,"confidence":0.32065613990053393,"method":"SEAD","details":"MAD!:w=0.51,s=0.07 RRCF-fast:w=0.12,s=0.35 RRCF-mid:w=0.11,s=0.43 RRCF-slow:w=0.10,s=0.11 COPOD!:w=0.15,s=0.73"} +{"timestamp":"2026-03-22T09:56:29.528433978Z","score":0.7434593075059422,"is_anomaly":false,"confidence":0.9722442772015881,"method":"SEAD","details":"MAD!:w=0.52,s=0.56 RRCF-fast!:w=0.12,s=1.00 RRCF-mid!:w=0.11,s=1.00 RRCF-slow!:w=0.10,s=0.76 COPOD!:w=0.15,s=0.98"} +{"timestamp":"2026-03-22T09:56:59.060961082Z","score":0.697998042816447,"is_anomaly":false,"confidence":0.912793203037243,"method":"SEAD","details":"MAD!:w=0.52,s=0.50 RRCF-fast!:w=0.12,s=0.97 RRCF-mid!:w=0.11,s=0.99 RRCF-slow!:w=0.10,s=0.95 COPOD!:w=0.15,s=0.77"} +{"timestamp":"2026-03-22T09:57:27.555795586Z","score":0.793802999159901,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.52,s=0.69 RRCF-fast!:w=0.12,s=0.94 RRCF-mid!:w=0.11,s=0.95 RRCF-slow!:w=0.10,s=0.89 COPOD!:w=0.15,s=0.87"} +{"timestamp":"2026-03-22T09:57:57.581638999Z","score":0.4885122765832652,"is_anomaly":false,"confidence":0.6383915303361105,"method":"SEAD","details":"MAD!:w=0.52,s=0.36 RRCF-fast:w=0.12,s=0.80 RRCF-mid:w=0.11,s=0.85 RRCF-slow:w=0.10,s=0.61 COPOD!:w=0.15,s=0.34"} +{"timestamp":"2026-03-22T09:58:27.543881066Z","score":0.4122435237021911,"is_anomaly":false,"confidence":0.5387229483935714,"method":"SEAD","details":"MAD!:w=0.53,s=0.26 RRCF-fast:w=0.12,s=0.71 RRCF-mid:w=0.11,s=0.78 RRCF-slow:w=0.10,s=0.63 COPOD!:w=0.15,s=0.31"} +{"timestamp":"2026-03-22T09:58:57.579238556Z","score":0.5763860546061884,"is_anomaly":false,"confidence":0.7537575189280816,"method":"SEAD","details":"MAD!:w=0.53,s=0.52 RRCF-fast:w=0.12,s=0.74 RRCF-mid:w=0.11,s=0.87 RRCF-slow:w=0.10,s=0.63 COPOD!:w=0.15,s=0.42"} +{"timestamp":"2026-03-22T09:59:27.538630695Z","score":0.30248090300196295,"is_anomaly":false,"confidence":0.3955634477063516,"method":"SEAD","details":"MAD!:w=0.53,s=0.12 RRCF-fast:w=0.12,s=0.22 RRCF-mid:w=0.11,s=0.67 RRCF-slow:w=0.10,s=0.48 COPOD!:w=0.15,s=0.64"} +{"timestamp":"2026-03-22T09:59:59.01186814Z","score":0.5864803530357767,"is_anomaly":false,"confidence":0.7669581390312253,"method":"SEAD","details":"MAD!:w=0.53,s=0.49 RRCF-fast:w=0.12,s=0.73 RRCF-mid!:w=0.11,s=0.91 RRCF-slow:w=0.10,s=0.54 COPOD!:w=0.14,s=0.60"} +{"timestamp":"2026-03-22T10:00:30.334306247Z","score":0.5623711030618228,"is_anomaly":false,"confidence":0.7354297418773409,"method":"SEAD","details":"MAD!:w=0.53,s=0.47 RRCF-fast:w=0.11,s=0.78 RRCF-mid:w=0.11,s=0.74 RRCF-slow:w=0.10,s=0.61 COPOD!:w=0.14,s=0.56"} +{"timestamp":"2026-03-22T10:00:57.57389629Z","score":0.28789208534189115,"is_anomaly":false,"confidence":0.37648520853718376,"method":"SEAD","details":"MAD!:w=0.54,s=0.02 RRCF-fast:w=0.11,s=0.49 RRCF-mid:w=0.11,s=0.77 RRCF-slow:w=0.10,s=0.51 COPOD!:w=0.14,s=0.61"} +{"timestamp":"2026-03-22T10:01:27.589727107Z","score":0.6127614647580039,"is_anomaly":false,"confidence":0.8013267456415161,"method":"SEAD","details":"MAD!:w=0.54,s=0.62 RRCF-fast:w=0.11,s=0.48 RRCF-mid:w=0.10,s=0.56 RRCF-slow:w=0.10,s=0.59 COPOD!:w=0.14,s=0.75"} +{"timestamp":"2026-03-22T10:01:57.538242271Z","score":0.4628690176849528,"is_anomaly":false,"confidence":0.605307848048589,"method":"SEAD","details":"MAD!:w=0.54,s=0.50 RRCF-fast:w=0.11,s=0.23 RRCF-mid:w=0.10,s=0.51 RRCF-slow:w=0.10,s=0.36 COPOD!:w=0.14,s=0.55"} +{"timestamp":"2026-03-22T10:02:27.590288814Z","score":0.473989390432602,"is_anomaly":false,"confidence":0.6224090231896198,"method":"SEAD","details":"MAD!:w=0.54,s=0.55 RRCF-fast:w=0.11,s=0.42 RRCF-mid:w=0.10,s=0.53 RRCF-slow:w=0.10,s=0.36 COPOD!:w=0.14,s=0.26"} +{"timestamp":"2026-03-22T10:02:57.550818384Z","score":0.30222312120197814,"is_anomaly":false,"confidence":0.39685782308536444,"method":"SEAD","details":"MAD!:w=0.54,s=0.20 RRCF-fast:w=0.11,s=0.34 RRCF-mid:w=0.11,s=0.23 RRCF-slow:w=0.10,s=0.26 COPOD!:w=0.14,s=0.72"} +{"timestamp":"2026-03-22T10:03:27.599561908Z","score":0.5326849154102298,"is_anomaly":false,"confidence":0.6994837955459895,"method":"SEAD","details":"MAD!:w=0.54,s=0.28 RRCF-fast:w=0.11,s=0.82 RRCF-mid:w=0.11,s=0.85 RRCF-slow!:w=0.10,s=0.85 COPOD!:w=0.14,s=0.80"} +{"timestamp":"2026-03-22T10:04:01.105857483Z","score":0.7856069920966134,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.54,s=0.70 RRCF-fast!:w=0.11,s=0.91 RRCF-mid:w=0.10,s=0.87 RRCF-slow!:w=0.10,s=0.89 COPOD!:w=0.14,s=0.87"} +{"timestamp":"2026-03-22T10:04:27.586976055Z","score":0.3687626336571993,"is_anomaly":false,"confidence":0.48224207646513617,"method":"SEAD","details":"MAD!:w=0.54,s=0.16 RRCF-fast:w=0.11,s=0.61 RRCF-mid:w=0.10,s=0.63 RRCF-slow:w=0.10,s=0.56 COPOD!:w=0.14,s=0.64"} +{"timestamp":"2026-03-22T10:04:57.536907874Z","score":0.2145104670389504,"is_anomaly":false,"confidence":0.2805218414415943,"method":"SEAD","details":"MAD!:w=0.55,s=0.07 RRCF-fast:w=0.11,s=0.04 RRCF-mid:w=0.10,s=0.19 RRCF-slow:w=0.10,s=0.42 COPOD!:w=0.14,s=0.79"} +{"timestamp":"2026-03-22T10:05:27.538447264Z","score":0.2951435688390049,"is_anomaly":false,"confidence":0.3875614604245118,"method":"SEAD","details":"MAD!:w=0.55,s=0.28 RRCF-fast:w=0.11,s=0.16 RRCF-mid:w=0.10,s=0.28 RRCF-slow:w=0.10,s=0.27 COPOD!:w=0.14,s=0.48"} +{"timestamp":"2026-03-22T10:05:57.581963832Z","score":0.7049847782710845,"is_anomaly":false,"confidence":0.9257356727052083,"method":"SEAD","details":"MAD!:w=0.55,s=0.65 RRCF-fast:w=0.11,s=0.76 RRCF-mid:w=0.10,s=0.72 RRCF-slow:w=0.10,s=0.54 COPOD!:w=0.14,s=0.98"} +{"timestamp":"2026-03-22T10:06:27.581214029Z","score":0.4314173302651012,"is_anomaly":false,"confidence":0.566506433556041,"method":"SEAD","details":"MAD!:w=0.55,s=0.56 RRCF-fast:w=0.11,s=0.33 RRCF-mid:w=0.10,s=0.25 RRCF-slow:w=0.10,s=0.52 COPOD!:w=0.14,s=0.08"} +{"timestamp":"2026-03-22T10:06:57.541553218Z","score":0.24240449492573676,"is_anomaly":false,"confidence":0.31830827429660435,"method":"SEAD","details":"MAD!:w=0.55,s=0.12 RRCF-fast:w=0.11,s=0.30 RRCF-mid:w=0.10,s=0.20 RRCF-slow:w=0.10,s=0.08 COPOD!:w=0.14,s=0.83"} +{"timestamp":"2026-03-22T10:07:28.255038297Z","score":0.6670026929328847,"is_anomaly":false,"confidence":0.8758603102788942,"method":"SEAD","details":"MAD!:w=0.55,s=0.61 RRCF-fast:w=0.11,s=0.86 RRCF-mid:w=0.10,s=0.82 RRCF-slow:w=0.10,s=0.69 COPOD!:w=0.14,s=0.61"} +{"timestamp":"2026-03-22T10:07:57.579377805Z","score":0.4821831735236871,"is_anomaly":false,"confidence":0.6331685140830664,"method":"SEAD","details":"MAD!:w=0.55,s=0.44 RRCF-fast:w=0.11,s=0.59 RRCF-mid:w=0.10,s=0.59 RRCF-slow:w=0.10,s=0.62 COPOD!:w=0.14,s=0.37"} +{"timestamp":"2026-03-22T10:08:27.554631401Z","score":0.18292820030616244,"is_anomaly":false,"confidence":0.24020825099582735,"method":"SEAD","details":"MAD!:w=0.55,s=0.01 RRCF-fast:w=0.11,s=0.34 RRCF-mid:w=0.10,s=0.42 RRCF-slow:w=0.10,s=0.48 COPOD!:w=0.14,s=0.34"} +{"timestamp":"2026-03-22T10:08:57.547074428Z","score":0.12210607873285662,"is_anomaly":false,"confidence":0.16071838275493258,"method":"SEAD","details":"MAD!:w=0.55,s=0.04 RRCF-fast:w=0.11,s=0.02 RRCF-mid:w=0.10,s=0.05 RRCF-slow:w=0.10,s=0.09 COPOD!:w=0.14,s=0.61"} +{"timestamp":"2026-03-22T10:09:27.539642894Z","score":0.14820584486482552,"is_anomaly":false,"confidence":0.19507139979177632,"method":"SEAD","details":"MAD!:w=0.56,s=0.10 RRCF-fast:w=0.11,s=0.20 RRCF-mid:w=0.10,s=0.18 RRCF-slow:w=0.10,s=0.15 COPOD!:w=0.13,s=0.27"} +{"timestamp":"2026-03-22T10:09:57.583025844Z","score":0.6777555807771396,"is_anomaly":false,"confidence":0.892075005405291,"method":"SEAD","details":"MAD!:w=0.56,s=0.68 RRCF-fast:w=0.11,s=0.53 RRCF-mid:w=0.10,s=0.69 RRCF-slow:w=0.10,s=0.45 COPOD!:w=0.13,s=0.94"} +{"timestamp":"2026-03-22T10:10:27.546946222Z","score":0.3432815775320519,"is_anomaly":false,"confidence":0.45183385252439245,"method":"SEAD","details":"MAD!:w=0.56,s=0.38 RRCF-fast:w=0.11,s=0.01 RRCF-mid:w=0.10,s=0.19 RRCF-slow:w=0.10,s=0.01 COPOD!:w=0.13,s=0.80"} +{"timestamp":"2026-03-22T10:10:57.538151389Z","score":0.19038437357264523,"is_anomaly":false,"confidence":0.2505875951462604,"method":"SEAD","details":"MAD!:w=0.56,s=0.09 RRCF-fast:w=0.11,s=0.10 RRCF-mid:w=0.10,s=0.10 RRCF-slow:w=0.10,s=0.12 COPOD!:w=0.13,s=0.80"} +{"timestamp":"2026-03-22T10:11:28.721755806Z","score":0.6659029409175378,"is_anomaly":false,"confidence":0.8764743315536683,"method":"SEAD","details":"MAD!:w=0.56,s=0.57 RRCF-fast:w=0.11,s=0.86 RRCF-mid:w=0.10,s=0.82 RRCF-slow:w=0.10,s=0.70 COPOD!:w=0.13,s=0.76"} +{"timestamp":"2026-03-22T10:11:57.755293585Z","score":0.31374516260917995,"is_anomaly":false,"confidence":0.4129574518730521,"method":"SEAD","details":"MAD!:w=0.56,s=0.22 RRCF-fast:w=0.11,s=0.49 RRCF-mid:w=0.10,s=0.45 RRCF-slow:w=0.10,s=0.35 COPOD!:w=0.13,s=0.43"} +{"timestamp":"2026-03-22T10:12:27.583714209Z","score":0.5332049038834157,"is_anomaly":false,"confidence":0.7022157852212071,"method":"SEAD","details":"MAD!:w=0.56,s=0.64 RRCF-fast:w=0.11,s=0.36 RRCF-mid:w=0.10,s=0.24 RRCF-slow:w=0.10,s=0.27 COPOD!:w=0.13,s=0.67"} +{"timestamp":"2026-03-22T10:12:57.537790497Z","score":0.2894327010040161,"is_anomaly":false,"confidence":0.3811746852363327,"method":"SEAD","details":"MAD!:w=0.56,s=0.35 RRCF-fast:w=0.11,s=0.03 RRCF-mid:w=0.10,s=0.04 RRCF-slow:w=0.10,s=0.12 COPOD!:w=0.13,s=0.57"} +{"timestamp":"2026-03-22T10:13:27.539192633Z","score":0.2491029932999494,"is_anomaly":false,"confidence":0.3280616002723859,"method":"SEAD","details":"MAD!:w=0.56,s=0.29 RRCF-fast:w=0.11,s=0.08 RRCF-mid:w=0.10,s=0.15 RRCF-slow:w=0.10,s=0.07 COPOD!:w=0.13,s=0.43"} +{"timestamp":"2026-03-22T10:13:57.592339708Z","score":0.4263983711440826,"is_anomaly":false,"confidence":0.5615546009221515,"method":"SEAD","details":"MAD!:w=0.56,s=0.56 RRCF-fast:w=0.11,s=0.25 RRCF-mid:w=0.10,s=0.23 RRCF-slow:w=0.10,s=0.34 COPOD!:w=0.13,s=0.21"} +{"timestamp":"2026-03-22T10:14:27.540185373Z","score":0.1701359755026438,"is_anomaly":false,"confidence":0.22406427015548877,"method":"SEAD","details":"MAD!:w=0.55,s=0.15 RRCF-fast:w=0.11,s=0.02 RRCF-mid:w=0.10,s=0.13 RRCF-slow:w=0.10,s=0.03 COPOD!:w=0.13,s=0.53"} +{"timestamp":"2026-03-22T10:14:58.857374688Z","score":0.5108107493194117,"is_anomaly":false,"confidence":0.6727233167217698,"method":"SEAD","details":"MAD!:w=0.56,s=0.45 RRCF-fast:w=0.11,s=0.67 RRCF-mid:w=0.10,s=0.82 RRCF-slow:w=0.10,s=0.52 COPOD!:w=0.13,s=0.38"} +{"timestamp":"2026-03-22T10:15:27.553870367Z","score":0.609919348244908,"is_anomaly":false,"confidence":0.8054302577832355,"method":"SEAD","details":"MAD!:w=0.56,s=0.51 RRCF-fast:w=0.11,s=0.67 RRCF-mid:w=0.10,s=0.68 RRCF-slow!:w=0.10,s=0.75 COPOD!:w=0.13,s=0.85"} +{"timestamp":"2026-03-22T10:15:57.587591156Z","score":0.21105864469833827,"is_anomaly":false,"confidence":0.2787139301219604,"method":"SEAD","details":"MAD!:w=0.56,s=0.02 RRCF-fast:w=0.11,s=0.54 RRCF-mid:w=0.10,s=0.51 RRCF-slow:w=0.10,s=0.34 COPOD!:w=0.13,s=0.43"} +{"timestamp":"2026-03-22T10:16:27.526512063Z","score":0.16232893620989736,"is_anomaly":false,"confidence":0.21436381271301563,"method":"SEAD","details":"MAD!:w=0.56,s=0.15 RRCF-fast:w=0.11,s=0.20 RRCF-mid:w=0.10,s=0.02 RRCF-slow:w=0.10,s=0.07 COPOD!:w=0.13,s=0.35"} +{"timestamp":"2026-03-22T10:16:57.601557996Z","score":0.4714192884759864,"is_anomaly":false,"confidence":0.622533717177209,"method":"SEAD","details":"MAD!:w=0.56,s=0.53 RRCF-fast:w=0.11,s=0.40 RRCF-mid:w=0.10,s=0.50 RRCF-slow:w=0.10,s=0.36 COPOD!:w=0.13,s=0.33"} +{"timestamp":"2026-03-22T10:17:28.095254861Z","score":0.6322109472733153,"is_anomaly":false,"confidence":0.8348674750210812,"method":"SEAD","details":"MAD!:w=0.56,s=0.63 RRCF-fast:w=0.11,s=0.53 RRCF-mid:w=0.10,s=0.59 RRCF-slow:w=0.10,s=0.47 COPOD!:w=0.13,s=0.91"} +{"timestamp":"2026-03-22T10:17:59.719495368Z","score":0.2086663569995115,"is_anomaly":false,"confidence":0.27555478964953184,"method":"SEAD","details":"MAD!:w=0.56,s=0.25 RRCF-fast:w=0.11,s=0.01 RRCF-mid:w=0.10,s=0.11 RRCF-slow:w=0.10,s=0.00 COPOD!:w=0.13,s=0.45"} +{"timestamp":"2026-03-22T10:18:27.549793524Z","score":0.20793757669917665,"is_anomaly":false,"confidence":0.2745923973154386,"method":"SEAD","details":"MAD!:w=0.56,s=0.24 RRCF-fast:w=0.11,s=0.03 RRCF-mid:w=0.10,s=0.12 RRCF-slow:w=0.10,s=0.14 COPOD!:w=0.13,s=0.34"} +{"timestamp":"2026-03-22T10:18:58.931221458Z","score":0.6816845081919908,"is_anomaly":false,"confidence":0.9007169911342537,"method":"SEAD","details":"MAD!:w=0.56,s=0.56 RRCF-fast!:w=0.11,s=0.96 RRCF-mid:w=0.10,s=0.82 RRCF-slow!:w=0.10,s=0.82 COPOD!:w=0.13,s=0.78"} +{"timestamp":"2026-03-22T10:19:27.676071826Z","score":0.5100040896403009,"is_anomaly":false,"confidence":0.6738738280929196,"method":"SEAD","details":"MAD!:w=0.56,s=0.39 RRCF-fast:w=0.11,s=0.84 RRCF-mid:w=0.10,s=0.65 RRCF-slow:w=0.10,s=0.58 COPOD!:w=0.13,s=0.57"} +{"timestamp":"2026-03-22T10:19:57.582653872Z","score":0.19561083481039876,"is_anomaly":false,"confidence":0.2584626765701113,"method":"SEAD","details":"MAD!:w=0.56,s=0.01 RRCF-fast:w=0.11,s=0.77 RRCF-mid:w=0.10,s=0.44 RRCF-slow:w=0.10,s=0.29 COPOD!:w=0.13,s=0.23"} +{"timestamp":"2026-03-22T10:20:27.546874091Z","score":0.2867328076258384,"is_anomaly":false,"confidence":0.3788631084329758,"method":"SEAD","details":"MAD!:w=0.57,s=0.29 RRCF-fast:w=0.11,s=0.32 RRCF-mid:w=0.10,s=0.23 RRCF-slow:w=0.10,s=0.05 COPOD!:w=0.13,s=0.45"} +{"timestamp":"2026-03-22T10:20:57.58222774Z","score":0.6520285801678003,"is_anomaly":false,"confidence":0.8615322980126672,"method":"SEAD","details":"MAD!:w=0.57,s=0.68 RRCF-fast:w=0.11,s=0.70 RRCF-mid:w=0.10,s=0.46 RRCF-slow:w=0.10,s=0.38 COPOD!:w=0.13,s=0.85"} +{"timestamp":"2026-03-22T10:21:27.582916014Z","score":0.40279307107451945,"is_anomaly":false,"confidence":0.5322147689555333,"method":"SEAD","details":"MAD!:w=0.56,s=0.55 RRCF-fast:w=0.11,s=0.40 RRCF-mid:w=0.10,s=0.26 RRCF-slow:w=0.10,s=0.19 COPOD!:w=0.13,s=0.02"} +{"timestamp":"2026-03-22T10:21:59.615821997Z","score":0.20399062471249724,"is_anomaly":false,"confidence":0.2695349820959831,"method":"SEAD","details":"MAD!:w=0.56,s=0.10 RRCF-fast:w=0.11,s=0.15 RRCF-mid:w=0.10,s=0.16 RRCF-slow:w=0.10,s=0.07 COPOD!:w=0.13,s=0.83"} +{"timestamp":"2026-03-22T10:22:29.197657702Z","score":0.4993925497028133,"is_anomaly":false,"confidence":0.6603134002722552,"method":"SEAD","details":"MAD!:w=0.56,s=0.43 RRCF-fast:w=0.11,s=0.79 RRCF-mid:w=0.10,s=0.70 RRCF-slow:w=0.10,s=0.58 COPOD!:w=0.13,s=0.34"} +{"timestamp":"2026-03-22T10:22:57.580614311Z","score":0.688854729268354,"is_anomaly":false,"confidence":0.9108265809081375,"method":"SEAD","details":"MAD!:w=0.56,s=0.70 RRCF-fast:w=0.11,s=0.69 RRCF-mid:w=0.10,s=0.77 RRCF-slow:w=0.10,s=0.68 COPOD!:w=0.13,s=0.58"} +{"timestamp":"2026-03-22T10:23:28.109301911Z","score":0.6504057257525275,"is_anomaly":false,"confidence":0.8599880326283847,"method":"SEAD","details":"MAD!:w=0.56,s=0.68 RRCF-fast:w=0.11,s=0.61 RRCF-mid:w=0.10,s=0.55 RRCF-slow:w=0.10,s=0.40 COPOD!:w=0.13,s=0.82"} +{"timestamp":"2026-03-22T10:23:57.584480971Z","score":0.3588657116791114,"is_anomaly":false,"confidence":0.4745041520162307,"method":"SEAD","details":"MAD!:w=0.56,s=0.38 RRCF-fast:w=0.11,s=0.51 RRCF-mid:w=0.10,s=0.34 RRCF-slow:w=0.10,s=0.39 COPOD!:w=0.13,s=0.10"} +{"timestamp":"2026-03-22T10:24:27.538103597Z","score":0.17942061119215627,"is_anomaly":false,"confidence":0.23723588572901674,"method":"SEAD","details":"MAD!:w=0.56,s=0.22 RRCF-fast:w=0.11,s=0.15 RRCF-mid:w=0.10,s=0.07 RRCF-slow:w=0.10,s=0.07 COPOD!:w=0.13,s=0.19"} +{"timestamp":"2026-03-22T10:24:57.573474481Z","score":0.4231869824544997,"is_anomaly":false,"confidence":0.5595518705711113,"method":"SEAD","details":"MAD!:w=0.56,s=0.54 RRCF-fast:w=0.11,s=0.30 RRCF-mid:w=0.10,s=0.48 RRCF-slow:w=0.10,s=0.30 COPOD!:w=0.13,s=0.06"} +{"timestamp":"2026-03-22T10:25:29.684290939Z","score":0.20442506838985397,"is_anomaly":false,"confidence":0.27034004554990765,"method":"SEAD","details":"MAD!:w=0.56,s=0.09 RRCF-fast:w=0.11,s=0.17 RRCF-mid:w=0.10,s=0.19 RRCF-slow:w=0.10,s=0.07 COPOD!:w=0.13,s=0.86"} +{"timestamp":"2026-03-22T10:25:57.548380373Z","score":0.2330106512694246,"is_anomaly":false,"confidence":0.3081427858821072,"method":"SEAD","details":"MAD!:w=0.56,s=0.22 RRCF-fast:w=0.11,s=0.20 RRCF-mid:w=0.10,s=0.36 RRCF-slow:w=0.10,s=0.05 COPOD!:w=0.13,s=0.34"} +{"timestamp":"2026-03-22T10:26:28.2173187Z","score":0.613891820459701,"is_anomaly":false,"confidence":0.8118355738509231,"method":"SEAD","details":"MAD!:w=0.56,s=0.60 RRCF-fast!:w=0.11,s=0.88 RRCF-mid:w=0.10,s=0.66 RRCF-slow:w=0.10,s=0.43 COPOD!:w=0.13,s=0.58"} +{"timestamp":"2026-03-22T10:26:57.574138072Z","score":0.385806213651128,"is_anomaly":false,"confidence":0.5102058675748004,"method":"SEAD","details":"MAD!:w=0.56,s=0.33 RRCF-fast:w=0.11,s=0.62 RRCF-mid:w=0.10,s=0.41 RRCF-slow:w=0.10,s=0.36 COPOD!:w=0.13,s=0.41"} +{"timestamp":"2026-03-22T10:27:27.5885521Z","score":0.565514378440705,"is_anomaly":false,"confidence":0.7478592720107692,"method":"SEAD","details":"MAD!:w=0.56,s=0.69 RRCF-fast:w=0.11,s=0.49 RRCF-mid:w=0.10,s=0.55 RRCF-slow:w=0.10,s=0.27 COPOD!:w=0.13,s=0.33"} +{"timestamp":"2026-03-22T10:27:57.584038379Z","score":0.2510187249300811,"is_anomaly":false,"confidence":0.3319573967418856,"method":"SEAD","details":"MAD!:w=0.56,s=0.36 RRCF-fast:w=0.11,s=0.10 RRCF-mid:w=0.10,s=0.25 RRCF-slow:w=0.10,s=0.12 COPOD!:w=0.13,s=0.00"} +{"timestamp":"2026-03-22T10:28:27.556406051Z","score":0.21960467315027793,"is_anomaly":false,"confidence":0.2904141738096406,"method":"SEAD","details":"MAD!:w=0.56,s=0.30 RRCF-fast:w=0.11,s=0.21 RRCF-mid:w=0.10,s=0.08 RRCF-slow:w=0.10,s=0.07 COPOD!:w=0.13,s=0.12"} +{"timestamp":"2026-03-22T10:28:57.583297566Z","score":0.3974300713296475,"is_anomaly":false,"confidence":0.5263493478032691,"method":"SEAD","details":"MAD!:w=0.56,s=0.55 RRCF-fast:w=0.11,s=0.34 RRCF-mid:w=0.10,s=0.28 RRCF-slow:w=0.10,s=0.19 COPOD!:w=0.13,s=0.06"} +{"timestamp":"2026-03-22T10:29:27.537976267Z","score":0.17143080907148156,"is_anomaly":false,"confidence":0.22703992741736426,"method":"SEAD","details":"MAD!:w=0.56,s=0.07 RRCF-fast:w=0.11,s=0.26 RRCF-mid:w=0.10,s=0.08 RRCF-slow:w=0.10,s=0.00 COPOD!:w=0.13,s=0.72"} +{"timestamp":"2026-03-22T10:29:59.191528194Z","score":0.5354223144490212,"is_anomaly":false,"confidence":0.7091038306857381,"method":"SEAD","details":"MAD!:w=0.56,s=0.44 RRCF-fast!:w=0.11,s=0.85 RRCF-mid:w=0.10,s=0.63 RRCF-slow:w=0.10,s=0.60 COPOD!:w=0.13,s=0.56"} +{"timestamp":"2026-03-22T10:30:27.55936868Z","score":0.6450276833508704,"is_anomaly":false,"confidence":0.8542632400988562,"method":"SEAD","details":"MAD!:w=0.56,s=0.60 RRCF-fast:w=0.11,s=0.70 RRCF-mid!:w=0.10,s=0.89 RRCF-slow:w=0.10,s=0.49 COPOD!:w=0.13,s=0.73"} +{"timestamp":"2026-03-22T10:30:57.585261185Z","score":0.27118838376538335,"is_anomaly":false,"confidence":0.35915709259035145,"method":"SEAD","details":"MAD!:w=0.56,s=0.03 RRCF-fast:w=0.11,s=0.65 RRCF-mid:w=0.10,s=0.64 RRCF-slow:w=0.10,s=0.42 COPOD!:w=0.13,s=0.59"} +{"timestamp":"2026-03-22T10:31:27.540752588Z","score":0.140241926112373,"is_anomaly":false,"confidence":0.18573392319549734,"method":"SEAD","details":"MAD!:w=0.56,s=0.13 RRCF-fast:w=0.11,s=0.11 RRCF-mid:w=0.10,s=0.03 RRCF-slow:w=0.10,s=0.03 COPOD!:w=0.13,s=0.39"} +{"timestamp":"2026-03-22T10:31:57.538715429Z","score":0.2378938417549815,"is_anomaly":false,"confidence":0.31506239081312265,"method":"SEAD","details":"MAD!:w=0.56,s=0.30 RRCF-fast:w=0.11,s=0.27 RRCF-mid:w=0.10,s=0.23 RRCF-slow:w=0.10,s=0.12 COPOD!:w=0.13,s=0.01"} +{"timestamp":"2026-03-22T10:32:27.553374069Z","score":0.6941795029316882,"is_anomaly":false,"confidence":0.9204918632984763,"method":"SEAD","details":"MAD!:w=0.56,s=0.72 RRCF-fast:w=0.11,s=0.61 RRCF-mid:w=0.10,s=0.60 RRCF-slow:w=0.10,s=0.53 COPOD!:w=0.13,s=0.87"} +{"timestamp":"2026-03-22T10:32:57.540265382Z","score":0.8620737676453949,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.56,s=0.79 RRCF-fast!:w=0.11,s=1.00 RRCF-mid!:w=0.10,s=1.00 RRCF-slow!:w=0.10,s=1.00 COPOD!:w=0.13,s=0.86"} +{"timestamp":"2026-03-22T10:33:27.583645886Z","score":0.446216756055757,"is_anomaly":false,"confidence":0.5909615690203501,"method":"SEAD","details":"MAD!:w=0.56,s=0.46 RRCF-fast:w=0.11,s=0.44 RRCF-mid:w=0.10,s=0.59 RRCF-slow:w=0.10,s=0.50 COPOD!:w=0.13,s=0.21"} +{"timestamp":"2026-03-22T10:33:57.581483749Z","score":0.6646931359926895,"is_anomaly":false,"confidence":0.8803078172936505,"method":"SEAD","details":"MAD!:w=0.56,s=0.63 RRCF-fast!:w=0.11,s=0.78 RRCF-mid!:w=0.10,s=0.89 RRCF-slow!:w=0.10,s=0.82 COPOD!:w=0.13,s=0.43"} +{"timestamp":"2026-03-22T10:34:27.546785409Z","score":0.37144300885931747,"is_anomaly":false,"confidence":0.4919325425101548,"method":"SEAD","details":"MAD!:w=0.56,s=0.26 RRCF-fast:w=0.11,s=0.48 RRCF-mid:w=0.10,s=0.57 RRCF-slow:w=0.10,s=0.31 COPOD!:w=0.13,s=0.68"} +{"timestamp":"2026-03-22T10:34:57.542156521Z","score":0.8481768056925453,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.56,s=0.82 RRCF-fast!:w=0.11,s=0.97 RRCF-mid!:w=0.10,s=1.00 RRCF-slow!:w=0.10,s=1.00 COPOD!:w=0.13,s=0.64"} +{"timestamp":"2026-03-22T10:35:27.581667964Z","score":0.7632158112570127,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.56,s=0.73 RRCF-fast!:w=0.11,s=0.82 RRCF-mid!:w=0.10,s=0.93 RRCF-slow!:w=0.10,s=0.95 COPOD!:w=0.13,s=0.58"} +{"timestamp":"2026-03-22T10:35:57.53757838Z","score":0.8538699327753667,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.57,s=0.81 RRCF-fast!:w=0.11,s=0.95 RRCF-mid!:w=0.10,s=0.97 RRCF-slow!:w=0.10,s=0.98 COPOD!:w=0.13,s=0.77"} +{"timestamp":"2026-03-22T10:36:27.537514462Z","score":0.80321791428831,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.57,s=0.75 RRCF-fast!:w=0.11,s=1.00 RRCF-mid!:w=0.10,s=1.00 RRCF-slow!:w=0.10,s=1.00 COPOD!:w=0.13,s=0.58"} +{"timestamp":"2026-03-22T10:36:57.537943268Z","score":0.8627189499759983,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.57,s=0.78 RRCF-fast!:w=0.11,s=0.98 RRCF-mid!:w=0.10,s=1.00 RRCF-slow!:w=0.10,s=1.00 COPOD!:w=0.13,s=0.92"} +{"timestamp":"2026-03-22T10:37:27.582879886Z","score":0.7853402217142659,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.57,s=0.74 RRCF-fast!:w=0.11,s=0.95 RRCF-mid!:w=0.10,s=0.99 RRCF-slow!:w=0.10,s=0.99 COPOD!:w=0.13,s=0.52"} +{"timestamp":"2026-03-22T10:37:57.538338809Z","score":0.8101826350845825,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.57,s=0.80 RRCF-fast!:w=0.11,s=0.96 RRCF-mid!:w=0.10,s=0.98 RRCF-slow!:w=0.10,s=0.99 COPOD!:w=0.13,s=0.45"} +{"timestamp":"2026-03-22T10:38:27.687502898Z","score":0.7713828127155414,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.57,s=0.74 RRCF-fast!:w=0.11,s=0.95 RRCF-mid!:w=0.10,s=0.98 RRCF-slow!:w=0.10,s=0.98 COPOD!:w=0.13,s=0.43"} +{"timestamp":"2026-03-22T10:38:57.58426394Z","score":0.6050685887291627,"is_anomaly":false,"confidence":0.7964029804700735,"method":"SEAD","details":"MAD!:w=0.57,s=0.46 RRCF-fast!:w=0.11,s=0.96 RRCF-mid!:w=0.10,s=0.98 RRCF-slow!:w=0.10,s=0.98 COPOD!:w=0.13,s=0.37"} +{"timestamp":"2026-03-22T10:39:29.240160617Z","score":0.5539555778689561,"is_anomaly":false,"confidence":0.7291270468848174,"method":"SEAD","details":"MAD!:w=0.57,s=0.44 RRCF-fast:w=0.11,s=0.90 RRCF-mid!:w=0.10,s=0.95 RRCF-slow!:w=0.10,s=0.96 COPOD!:w=0.13,s=0.16"} +{"timestamp":"2026-03-22T10:39:57.53907293Z","score":0.8004900054508393,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.57,s=0.80 RRCF-fast:w=0.10,s=0.75 RRCF-mid:w=0.10,s=0.94 RRCF-slow:w=0.10,s=0.96 COPOD!:w=0.13,s=0.64"} +{"timestamp":"2026-03-22T10:40:27.543372815Z","score":0.7664898064963204,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.57,s=0.75 RRCF-fast:w=0.10,s=0.75 RRCF-mid:w=0.10,s=0.92 RRCF-slow:w=0.10,s=0.95 COPOD!:w=0.13,s=0.59"} +{"timestamp":"2026-03-22T10:40:57.53399005Z","score":0.7872595370772814,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.57,s=0.77 RRCF-fast:w=0.10,s=0.64 RRCF-mid:w=0.10,s=0.92 RRCF-slow:w=0.10,s=0.94 COPOD!:w=0.13,s=0.76"} +{"timestamp":"2026-03-22T10:41:27.540342962Z","score":0.7571463830008628,"is_anomaly":false,"confidence":0.9901432808016691,"method":"SEAD","details":"MAD!:w=0.57,s=0.76 RRCF-fast:w=0.10,s=0.52 RRCF-mid:w=0.10,s=0.90 RRCF-slow:w=0.10,s=0.93 COPOD!:w=0.13,s=0.71"} +{"timestamp":"2026-03-22T10:41:57.577846834Z","score":0.5329213945253942,"is_anomaly":false,"confidence":0.6969174651451425,"method":"SEAD","details":"MAD!:w=0.57,s=0.47 RRCF-fast:w=0.11,s=0.47 RRCF-mid:w=0.10,s=0.89 RRCF-slow:w=0.10,s=0.93 COPOD!:w=0.13,s=0.29"} +{"timestamp":"2026-03-22T10:42:27.555946458Z","score":0.7149886854319695,"is_anomaly":false,"confidence":0.936810630605761,"method":"SEAD","details":"MAD!:w=0.57,s=0.64 RRCF-fast:w=0.11,s=0.63 RRCF-mid:w=0.10,s=0.90 RRCF-slow:w=0.10,s=0.94 COPOD!:w=0.13,s=0.81"} +{"timestamp":"2026-03-22T10:42:57.590842462Z","score":0.6507061941570743,"is_anomaly":false,"confidence":0.852584792609792,"method":"SEAD","details":"MAD!:w=0.57,s=0.65 RRCF-fast:w=0.11,s=0.51 RRCF-mid:w=0.10,s=0.91 RRCF-slow:w=0.10,s=0.94 COPOD!:w=0.13,s=0.38"} +{"timestamp":"2026-03-22T10:43:27.543578259Z","score":0.37721618581677097,"is_anomaly":false,"confidence":0.4942457693525738,"method":"SEAD","details":"MAD!:w=0.57,s=0.20 RRCF-fast:w=0.11,s=0.13 RRCF-mid:w=0.10,s=0.81 RRCF-slow:w=0.10,s=0.90 COPOD!:w=0.13,s=0.65"} +{"timestamp":"2026-03-22T10:43:57.579071886Z","score":0.6733730074233194,"is_anomaly":false,"confidence":0.882283880249123,"method":"SEAD","details":"MAD!:w=0.58,s=0.60 RRCF-fast:w=0.11,s=0.94 RRCF-mid:w=0.09,s=0.91 RRCF-slow:w=0.09,s=0.94 COPOD!:w=0.13,s=0.42"} +{"timestamp":"2026-03-22T10:44:27.613686677Z","score":0.7055093651372408,"is_anomaly":false,"confidence":0.9243903948678296,"method":"SEAD","details":"MAD!:w=0.58,s=0.75 RRCF-fast:w=0.10,s=0.57 RRCF-mid:w=0.09,s=0.88 RRCF-slow:w=0.09,s=0.90 COPOD!:w=0.13,s=0.33"} +{"timestamp":"2026-03-22T10:44:57.562815764Z","score":0.8141046849207123,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.58,s=0.87 RRCF-fast:w=0.10,s=0.44 RRCF-mid:w=0.09,s=0.89 RRCF-slow:w=0.09,s=0.94 COPOD!:w=0.13,s=0.74"} +{"timestamp":"2026-03-22T10:45:27.626576356Z","score":0.7709718080472804,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.58,s=0.79 RRCF-fast:w=0.11,s=0.72 RRCF-mid:w=0.09,s=0.92 RRCF-slow:w=0.09,s=0.95 COPOD!:w=0.13,s=0.51"} +{"timestamp":"2026-03-22T10:45:57.539894094Z","score":0.7256046655410092,"is_anomaly":false,"confidence":0.9488952205731583,"method":"SEAD","details":"MAD!:w=0.58,s=0.83 RRCF-fast:w=0.11,s=0.52 RRCF-mid:w=0.09,s=0.85 RRCF-slow:w=0.09,s=0.92 COPOD!:w=0.13,s=0.22"} +{"timestamp":"2026-03-22T10:46:27.559508829Z","score":0.7539590400482212,"is_anomaly":false,"confidence":0.9859750957861634,"method":"SEAD","details":"MAD!:w=0.57,s=0.78 RRCF-fast:w=0.11,s=0.55 RRCF-mid:w=0.09,s=0.90 RRCF-slow:w=0.09,s=0.93 COPOD!:w=0.13,s=0.57"} +{"timestamp":"2026-03-22T10:46:57.53901119Z","score":0.7751528993164626,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.57,s=0.82 RRCF-fast:w=0.11,s=0.53 RRCF-mid:w=0.09,s=0.89 RRCF-slow:w=0.09,s=0.95 COPOD!:w=0.13,s=0.59"} +{"timestamp":"2026-03-22T10:47:27.664252732Z","score":0.8736931576641479,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.57,s=0.93 RRCF-fast:w=0.11,s=0.93 RRCF-mid:w=0.09,s=0.90 RRCF-slow:w=0.09,s=0.95 COPOD!:w=0.13,s=0.52"} +{"timestamp":"2026-03-22T10:47:58.505138048Z","score":0.747264001282503,"is_anomaly":false,"confidence":0.9749170764557198,"method":"SEAD","details":"MAD!:w=0.57,s=0.71 RRCF-fast:w=0.11,s=0.43 RRCF-mid:w=0.09,s=0.87 RRCF-slow:w=0.09,s=0.90 COPOD!:w=0.13,s=0.99"} +{"timestamp":"2026-03-22T10:48:28.534604635Z","score":0.5080865210712868,"is_anomaly":false,"confidence":0.6628744658637883,"method":"SEAD","details":"MAD!:w=0.57,s=0.39 RRCF-fast:w=0.11,s=0.68 RRCF-mid:w=0.09,s=0.80 RRCF-slow:w=0.09,s=0.89 COPOD!:w=0.13,s=0.41"} +{"timestamp":"2026-03-22T10:48:57.541112476Z","score":0.3294948274066033,"is_anomaly":false,"confidence":0.4305863274862474,"method":"SEAD","details":"MAD!:w=0.57,s=0.27 RRCF-fast:w=0.11,s=0.08 RRCF-mid:w=0.09,s=0.76 RRCF-slow:w=0.09,s=0.86 COPOD!:w=0.13,s=0.11"} +{"timestamp":"2026-03-22T10:49:28.391945131Z","score":0.5361767651355424,"is_anomaly":false,"confidence":0.7006798437484139,"method":"SEAD","details":"MAD!:w=0.57,s=0.56 RRCF-fast:w=0.11,s=0.34 RRCF-mid:w=0.09,s=0.62 RRCF-slow:w=0.09,s=0.86 COPOD!:w=0.13,s=0.30"} +{"timestamp":"2026-03-22T10:49:57.560227305Z","score":0.30358961481666796,"is_anomaly":false,"confidence":0.39673320014083396,"method":"SEAD","details":"MAD!:w=0.57,s=0.24 RRCF-fast:w=0.11,s=0.03 RRCF-mid:w=0.09,s=0.38 RRCF-slow:w=0.09,s=0.83 COPOD!:w=0.13,s=0.36"} +{"timestamp":"2026-03-22T10:50:32.173942614Z","score":0.5029007622571777,"is_anomaly":false,"confidence":0.6571945120192588,"method":"SEAD","details":"MAD!:w=0.58,s=0.41 RRCF-fast:w=0.11,s=0.62 RRCF-mid:w=0.09,s=0.79 RRCF-slow:w=0.09,s=0.87 COPOD!:w=0.13,s=0.33"} +{"timestamp":"2026-03-22T10:50:57.53449764Z","score":0.6476089110898431,"is_anomaly":false,"confidence":0.8463002131727998,"method":"SEAD","details":"MAD!:w=0.58,s=0.54 RRCF-fast:w=0.11,s=0.69 RRCF-mid:w=0.09,s=0.75 RRCF-slow:w=0.09,s=0.87 COPOD!:w=0.13,s=0.88"} +{"timestamp":"2026-03-22T10:51:27.592165499Z","score":0.26302185556428864,"is_anomaly":false,"confidence":0.3437189461438434,"method":"SEAD","details":"MAD!:w=0.58,s=0.02 RRCF-fast:w=0.11,s=0.23 RRCF-mid:w=0.09,s=0.67 RRCF-slow:w=0.09,s=0.81 COPOD!:w=0.13,s=0.69"} +{"timestamp":"2026-03-22T10:51:57.553542467Z","score":0.6662849759449052,"is_anomaly":false,"confidence":0.8707062356925785,"method":"SEAD","details":"MAD!:w=0.58,s=0.72 RRCF-fast:w=0.11,s=0.06 RRCF-mid:w=0.09,s=0.61 RRCF-slow:w=0.09,s=0.83 COPOD!:w=0.13,s=0.84"} +{"timestamp":"2026-03-22T10:52:27.540157567Z","score":0.34446878306684486,"is_anomaly":false,"confidence":0.4504722714883201,"method":"SEAD","details":"MAD!:w=0.58,s=0.37 RRCF-fast:w=0.11,s=0.03 RRCF-mid:w=0.09,s=0.30 RRCF-slow:w=0.09,s=0.65 COPOD!:w=0.13,s=0.32"} +{"timestamp":"2026-03-22T10:52:57.583281626Z","score":0.48709877879226077,"is_anomaly":false,"confidence":0.6369938412653104,"method":"SEAD","details":"MAD!:w=0.58,s=0.54 RRCF-fast:w=0.11,s=0.18 RRCF-mid:w=0.09,s=0.46 RRCF-slow:w=0.09,s=0.77 COPOD!:w=0.13,s=0.33"} +{"timestamp":"2026-03-22T10:53:27.552951374Z","score":0.21691985971106095,"is_anomaly":false,"confidence":0.2836726772887495,"method":"SEAD","details":"MAD!:w=0.58,s=0.09 RRCF-fast:w=0.11,s=0.01 RRCF-mid:w=0.09,s=0.36 RRCF-slow:w=0.09,s=0.62 COPOD!:w=0.13,s=0.59"} +{"timestamp":"2026-03-22T10:53:58.878594261Z","score":0.4939568553661229,"is_anomaly":false,"confidence":0.6459623559294361,"method":"SEAD","details":"MAD!:w=0.58,s=0.46 RRCF-fast:w=0.11,s=0.73 RRCF-mid:w=0.09,s=0.68 RRCF-slow:w=0.09,s=0.84 COPOD!:w=0.13,s=0.09"} +{"timestamp":"2026-03-22T10:54:27.601809839Z","score":0.6939751501660022,"is_anomaly":false,"confidence":0.907532344349076,"method":"SEAD","details":"MAD!:w=0.58,s=0.64 RRCF-fast:w=0.11,s=0.63 RRCF-mid:w=0.09,s=0.77 RRCF-slow:w=0.09,s=0.83 COPOD!:w=0.13,s=0.83"} +{"timestamp":"2026-03-22T10:54:57.593231389Z","score":0.397448759203329,"is_anomaly":false,"confidence":0.5197557925700192,"method":"SEAD","details":"MAD!:w=0.58,s=0.25 RRCF-fast:w=0.11,s=0.41 RRCF-mid:w=0.09,s=0.54 RRCF-slow:w=0.09,s=0.80 COPOD!:w=0.13,s=0.69"} +{"timestamp":"2026-03-22T10:55:28.615930497Z","score":0.651223190883305,"is_anomaly":false,"confidence":0.8532621851881497,"method":"SEAD","details":"MAD!:w=0.59,s=0.72 RRCF-fast:w=0.11,s=0.18 RRCF-mid:w=0.09,s=0.36 RRCF-slow:w=0.09,s=0.73 COPOD!:w=0.13,s=0.90"} +{"timestamp":"2026-03-22T10:55:57.580892066Z","score":0.3394249337210325,"is_anomaly":false,"confidence":0.44472995542637056,"method":"SEAD","details":"MAD!:w=0.58,s=0.36 RRCF-fast:w=0.11,s=0.07 RRCF-mid:w=0.09,s=0.30 RRCF-slow:w=0.09,s=0.56 COPOD!:w=0.13,s=0.33"} +{"timestamp":"2026-03-22T10:56:27.547575013Z","score":0.27060003704721747,"is_anomaly":false,"confidence":0.3545524516866868,"method":"SEAD","details":"MAD!:w=0.58,s=0.27 RRCF-fast:w=0.11,s=0.15 RRCF-mid:w=0.09,s=0.19 RRCF-slow:w=0.09,s=0.52 COPOD!:w=0.13,s=0.26"} +{"timestamp":"2026-03-22T10:56:57.588013004Z","score":0.4724660691428292,"is_anomaly":false,"confidence":0.6190464900939092,"method":"SEAD","details":"MAD!:w=0.58,s=0.59 RRCF-fast:w=0.11,s=0.13 RRCF-mid:w=0.09,s=0.36 RRCF-slow:w=0.09,s=0.63 COPOD!:w=0.13,s=0.19"} +{"timestamp":"2026-03-22T10:57:27.524466929Z","score":0.20315480410335623,"is_anomaly":false,"confidence":0.2661826459920442,"method":"SEAD","details":"MAD!:w=0.58,s=0.15 RRCF-fast:w=0.11,s=0.02 RRCF-mid:w=0.09,s=0.18 RRCF-slow:w=0.09,s=0.64 COPOD!:w=0.13,s=0.30"} +{"timestamp":"2026-03-22T10:57:58.920471739Z","score":0.6072701608551719,"is_anomaly":false,"confidence":0.7956729301178929,"method":"SEAD","details":"MAD!:w=0.58,s=0.51 RRCF-fast:w=0.11,s=0.70 RRCF-mid:w=0.09,s=0.68 RRCF-slow:w=0.09,s=0.86 COPOD!:w=0.13,s=0.77"} +{"timestamp":"2026-03-22T10:58:27.601487604Z","score":0.5124218690257581,"is_anomaly":false,"confidence":0.6713983927846069,"method":"SEAD","details":"MAD!:w=0.58,s=0.45 RRCF-fast:w=0.11,s=0.42 RRCF-mid:w=0.09,s=0.46 RRCF-slow:w=0.09,s=0.75 COPOD!:w=0.13,s=0.76"} +{"timestamp":"2026-03-22T10:58:57.586440652Z","score":0.2820477121405035,"is_anomaly":false,"confidence":0.37036491649320935,"method":"SEAD","details":"MAD!:w=0.59,s=0.00 RRCF-fast:w=0.11,s=0.81 RRCF-mid:w=0.09,s=0.93 RRCF-slow:w=0.09,s=0.75 COPOD!:w=0.13,s=0.32"} +{"timestamp":"2026-03-22T10:59:27.584359432Z","score":0.7769559687743925,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.59,s=0.76 RRCF-fast:w=0.11,s=0.83 RRCF-mid:w=0.09,s=0.77 RRCF-slow:w=0.09,s=0.95 COPOD!:w=0.13,s=0.70"} +{"timestamp":"2026-03-22T10:59:57.582820011Z","score":0.3745438908092829,"is_anomaly":false,"confidence":0.4907444071322513,"method":"SEAD","details":"MAD!:w=0.59,s=0.35 RRCF-fast:w=0.11,s=0.39 RRCF-mid:w=0.09,s=0.51 RRCF-slow:w=0.09,s=0.71 COPOD!:w=0.13,s=0.15"} +{"timestamp":"2026-03-22T11:00:27.584203522Z","score":0.5233720255504137,"is_anomaly":false,"confidence":0.68574578491557,"method":"SEAD","details":"MAD!:w=0.59,s=0.59 RRCF-fast:w=0.11,s=0.38 RRCF-mid:w=0.09,s=0.36 RRCF-slow:w=0.09,s=0.81 COPOD!:w=0.13,s=0.26"} +{"timestamp":"2026-03-22T11:00:57.555009329Z","score":0.2601611457005542,"is_anomaly":false,"confidence":0.34087494239941135,"method":"SEAD","details":"MAD!:w=0.59,s=0.20 RRCF-fast:w=0.11,s=0.09 RRCF-mid:w=0.09,s=0.17 RRCF-slow:w=0.09,s=0.67 COPOD!:w=0.13,s=0.46"} +{"timestamp":"2026-03-22T11:01:28.651982769Z","score":0.5088132927782753,"is_anomaly":false,"confidence":0.666670272383721,"method":"SEAD","details":"MAD!:w=0.59,s=0.46 RRCF-fast:w=0.11,s=0.50 RRCF-mid:w=0.09,s=0.67 RRCF-slow:w=0.08,s=0.77 COPOD!:w=0.13,s=0.46"} +{"timestamp":"2026-03-22T11:01:58.309841642Z","score":0.5942084099729663,"is_anomaly":false,"confidence":0.778558831209626,"method":"SEAD","details":"MAD!:w=0.59,s=0.48 RRCF-fast:w=0.11,s=0.61 RRCF-mid:w=0.09,s=0.62 RRCF-slow:w=0.08,s=0.87 COPOD!:w=0.13,s=0.90"} +{"timestamp":"2026-03-22T11:02:27.560546622Z","score":0.31787805302804273,"is_anomaly":false,"confidence":0.4174147617482066,"method":"SEAD","details":"MAD!:w=0.59,s=0.13 RRCF-fast:w=0.11,s=0.57 RRCF-mid:w=0.09,s=0.36 RRCF-slow:w=0.08,s=0.82 COPOD!:w=0.13,s=0.63"} +{"timestamp":"2026-03-22T11:02:57.585087178Z","score":0.6462992285832099,"is_anomaly":false,"confidence":0.8486739991870754,"method":"SEAD","details":"MAD!:w=0.60,s=0.72 RRCF-fast:w=0.11,s=0.26 RRCF-mid:w=0.09,s=0.27 RRCF-slow:w=0.08,s=0.62 COPOD!:w=0.13,s=0.91"} +{"timestamp":"2026-03-22T11:03:27.54219244Z","score":0.33314966111827005,"is_anomaly":false,"confidence":0.43746834705166215,"method":"SEAD","details":"MAD!:w=0.59,s=0.37 RRCF-fast:w=0.11,s=0.20 RRCF-mid:w=0.09,s=0.08 RRCF-slow:w=0.08,s=0.51 COPOD!:w=0.13,s=0.31"} +{"timestamp":"2026-03-22T11:03:57.577854645Z","score":0.35048220843635963,"is_anomaly":false,"confidence":0.46022821059163305,"method":"SEAD","details":"MAD!:w=0.59,s=0.44 RRCF-fast:w=0.11,s=0.23 RRCF-mid:w=0.09,s=0.12 RRCF-slow:w=0.08,s=0.57 COPOD!:w=0.13,s=0.06"} +{"timestamp":"2026-03-22T11:04:27.593257241Z","score":0.24270365257930665,"is_anomaly":false,"confidence":0.3187011067664792,"method":"SEAD","details":"MAD!:w=0.59,s=0.27 RRCF-fast:w=0.11,s=0.10 RRCF-mid:w=0.09,s=0.02 RRCF-slow:w=0.08,s=0.55 COPOD!:w=0.13,s=0.17"} +{"timestamp":"2026-03-22T11:04:57.540224801Z","score":0.2687670142834103,"is_anomaly":false,"confidence":0.3529256523506817,"method":"SEAD","details":"MAD!:w=0.59,s=0.17 RRCF-fast:w=0.11,s=0.13 RRCF-mid:w=0.09,s=0.02 RRCF-slow:w=0.08,s=0.59 COPOD!:w=0.13,s=0.79"} +{"timestamp":"2026-03-22T11:05:27.631474354Z","score":0.561684626922451,"is_anomaly":false,"confidence":0.7393001707538505,"method":"SEAD","details":"MAD!:w=0.59,s=0.49 RRCF-fast:w=0.11,s=0.44 RRCF-mid:w=0.09,s=0.64 RRCF-slow:w=0.08,s=0.76 COPOD!:w=0.13,s=0.81"} +{"timestamp":"2026-03-22T11:05:57.582497039Z","score":0.4618856909826914,"is_anomaly":false,"confidence":0.6079428808355285,"method":"SEAD","details":"MAD!:w=0.59,s=0.35 RRCF-fast:w=0.11,s=0.43 RRCF-mid:w=0.09,s=0.53 RRCF-slow:w=0.08,s=0.80 COPOD!:w=0.13,s=0.73"} +{"timestamp":"2026-03-22T11:06:27.560984081Z","score":0.5073771120017233,"is_anomaly":false,"confidence":0.6678195691320893,"method":"SEAD","details":"MAD!:w=0.60,s=0.35 RRCF-fast!:w=0.11,s=0.92 RRCF-mid:w=0.09,s=0.92 RRCF-slow!:w=0.08,s=0.96 COPOD!:w=0.12,s=0.30"} +{"timestamp":"2026-03-22T11:06:57.527799022Z","score":0.3527809218916889,"is_anomaly":false,"confidence":0.46433707331861024,"method":"SEAD","details":"MAD!:w=0.60,s=0.29 RRCF-fast:w=0.11,s=0.41 RRCF-mid:w=0.09,s=0.34 RRCF-slow:w=0.08,s=0.71 COPOD!:w=0.12,s=0.37"} +{"timestamp":"2026-03-22T11:07:27.538907185Z","score":0.20747925434565365,"is_anomaly":false,"confidence":0.2730882078900141,"method":"SEAD","details":"MAD!:w=0.60,s=0.11 RRCF-fast:w=0.11,s=0.29 RRCF-mid:w=0.09,s=0.23 RRCF-slow:w=0.08,s=0.66 COPOD!:w=0.12,s=0.28"} +{"timestamp":"2026-03-22T11:07:57.590894775Z","score":0.702454413048744,"is_anomaly":false,"confidence":0.9245840861965282,"method":"SEAD","details":"MAD!:w=0.60,s=0.74 RRCF-fast:w=0.11,s=0.54 RRCF-mid:w=0.09,s=0.54 RRCF-slow:w=0.08,s=0.65 COPOD!:w=0.12,s=0.84"} +{"timestamp":"2026-03-22T11:08:27.588285326Z","score":0.3095673455398927,"is_anomaly":false,"confidence":0.407458528233953,"method":"SEAD","details":"MAD!:w=0.60,s=0.36 RRCF-fast:w=0.11,s=0.15 RRCF-mid:w=0.09,s=0.12 RRCF-slow:w=0.08,s=0.54 COPOD!:w=0.12,s=0.16"} +{"timestamp":"2026-03-22T11:08:57.543236274Z","score":0.23028473934338223,"is_anomaly":false,"confidence":0.3032784917856488,"method":"SEAD","details":"MAD!:w=0.60,s=0.06 RRCF-fast:w=0.11,s=0.23 RRCF-mid:w=0.09,s=0.21 RRCF-slow:w=0.08,s=0.44 COPOD!:w=0.12,s=0.91"} +{"timestamp":"2026-03-22T11:09:35.718899411Z","score":0.6759909146835809,"is_anomaly":false,"confidence":0.8902609250209057,"method":"SEAD","details":"MAD!:w=0.60,s=0.53 RRCF-fast!:w=0.11,s=0.96 RRCF-mid:w=0.09,s=0.87 RRCF-slow:w=0.08,s=0.85 COPOD!:w=0.12,s=0.92"} +{"timestamp":"2026-03-22T11:09:57.739890063Z","score":0.5790295345664064,"is_anomaly":false,"confidence":0.7625655284121736,"method":"SEAD","details":"MAD!:w=0.60,s=0.49 RRCF-fast:w=0.11,s=0.60 RRCF-mid:w=0.09,s=0.59 RRCF-slow:w=0.08,s=0.74 COPOD!:w=0.12,s=0.88"} +{"timestamp":"2026-03-22T11:10:27.585908642Z","score":0.17160368220668665,"is_anomaly":false,"confidence":0.2259971983940468,"method":"SEAD","details":"MAD!:w=0.61,s=0.01 RRCF-fast:w=0.11,s=0.35 RRCF-mid:w=0.09,s=0.36 RRCF-slow:w=0.08,s=0.60 COPOD!:w=0.12,s=0.39"} +{"timestamp":"2026-03-22T11:10:57.537307515Z","score":0.33688268028513796,"is_anomaly":false,"confidence":0.44366496658398585,"method":"SEAD","details":"MAD!:w=0.61,s=0.32 RRCF-fast:w=0.10,s=0.43 RRCF-mid:w=0.09,s=0.13 RRCF-slow:w=0.08,s=0.42 COPOD!:w=0.12,s=0.44"} +{"timestamp":"2026-03-22T11:11:27.540049309Z","score":0.15077293166533817,"is_anomaly":false,"confidence":0.19856368879650863,"method":"SEAD","details":"MAD!:w=0.61,s=0.05 RRCF-fast:w=0.10,s=0.17 RRCF-mid:w=0.09,s=0.15 RRCF-slow:w=0.08,s=0.37 COPOD!:w=0.12,s=0.49"} +{"timestamp":"2026-03-22T11:11:57.577378341Z","score":0.6710467638396117,"is_anomaly":false,"confidence":0.8837496181258194,"method":"SEAD","details":"MAD!:w=0.61,s=0.74 RRCF-fast:w=0.10,s=0.72 RRCF-mid:w=0.09,s=0.40 RRCF-slow:w=0.08,s=0.52 COPOD!:w=0.12,s=0.60"} +{"timestamp":"2026-03-22T11:12:27.583506686Z","score":0.46511268371367964,"is_anomaly":false,"confidence":0.6142055172044446,"method":"SEAD","details":"MAD!:w=0.61,s=0.61 RRCF-fast:w=0.10,s=0.19 RRCF-mid:w=0.09,s=0.29 RRCF-slow:w=0.08,s=0.53 COPOD!:w=0.12,s=0.06"} +{"timestamp":"2026-03-22T11:12:57.539996016Z","score":0.2126450993976853,"is_anomaly":false,"confidence":0.2808089261589502,"method":"SEAD","details":"MAD!:w=0.61,s=0.12 RRCF-fast:w=0.10,s=0.15 RRCF-mid:w=0.09,s=0.06 RRCF-slow:w=0.08,s=0.34 COPOD!:w=0.12,s=0.75"} +{"timestamp":"2026-03-22T11:13:27.576051264Z","score":0.6874971331307564,"is_anomaly":false,"confidence":0.907875762190765,"method":"SEAD","details":"MAD!:w=0.61,s=0.53 RRCF-fast!:w=0.10,s=0.99 RRCF-mid!:w=0.09,s=0.98 RRCF-slow!:w=0.08,s=0.99 COPOD!:w=0.12,s=0.80"} +{"timestamp":"2026-03-22T11:13:57.657315991Z","score":0.5795356268148354,"is_anomaly":false,"confidence":0.7653069715581674,"method":"SEAD","details":"MAD!:w=0.61,s=0.46 RRCF-fast!:w=0.10,s=0.78 RRCF-mid!:w=0.09,s=0.95 RRCF-slow!:w=0.08,s=0.97 COPOD!:w=0.12,s=0.48"} +{"timestamp":"2026-03-22T11:14:27.856929205Z","score":0.7499927127903858,"is_anomaly":false,"confidence":0.9904044292684917,"method":"SEAD","details":"MAD!:w=0.61,s=0.74 RRCF-fast:w=0.10,s=0.70 RRCF-mid:w=0.09,s=0.80 RRCF-slow:w=0.08,s=0.88 COPOD!:w=0.12,s=0.71"} +{"timestamp":"2026-03-22T11:14:57.582771988Z","score":0.46704082006664654,"is_anomaly":false,"confidence":0.6167517216563614,"method":"SEAD","details":"MAD!:w=0.61,s=0.42 RRCF-fast:w=0.10,s=0.52 RRCF-mid:w=0.09,s=0.75 RRCF-slow:w=0.08,s=0.88 COPOD!:w=0.12,s=0.16"} +{"timestamp":"2026-03-22T11:15:27.53399176Z","score":0.32583599868966484,"is_anomaly":false,"confidence":0.4303474281924867,"method":"SEAD","details":"MAD!:w=0.61,s=0.23 RRCF-fast:w=0.10,s=0.27 RRCF-mid:w=0.09,s=0.61 RRCF-slow:w=0.08,s=0.86 COPOD!:w=0.12,s=0.33"} +{"timestamp":"2026-03-22T11:15:57.573287523Z","score":0.5209697963785385,"is_anomaly":false,"confidence":0.688070111771167,"method":"SEAD","details":"MAD!:w=0.62,s=0.59 RRCF-fast:w=0.10,s=0.42 RRCF-mid:w=0.09,s=0.58 RRCF-slow:w=0.08,s=0.76 COPOD!:w=0.12,s=0.04"} +{"timestamp":"2026-03-22T11:16:27.552258521Z","score":0.36797940560137343,"is_anomaly":false,"confidence":0.48600827245971817,"method":"SEAD","details":"MAD!:w=0.61,s=0.17 RRCF-fast:w=0.10,s=0.49 RRCF-mid:w=0.09,s=0.61 RRCF-slow:w=0.08,s=0.65 COPOD!:w=0.12,s=0.92"} +{"timestamp":"2026-03-22T11:16:59.314191087Z","score":0.51592288269178,"is_anomaly":false,"confidence":0.6814044077539918,"method":"SEAD","details":"MAD!:w=0.62,s=0.48 RRCF-fast!:w=0.10,s=0.77 RRCF-mid:w=0.09,s=0.73 RRCF-slow:w=0.08,s=0.86 COPOD!:w=0.12,s=0.11"} +{"timestamp":"2026-03-22T11:17:30.340194551Z","score":0.6374639737972417,"is_anomaly":false,"confidence":0.8419296296057395,"method":"SEAD","details":"MAD!:w=0.62,s=0.56 RRCF-fast!:w=0.10,s=0.79 RRCF-mid:w=0.09,s=0.70 RRCF-slow:w=0.08,s=0.81 COPOD!:w=0.12,s=0.75"} +{"timestamp":"2026-03-22T11:17:57.595928855Z","score":0.26870720014456934,"is_anomaly":false,"confidence":0.35489464940660376,"method":"SEAD","details":"MAD!:w=0.62,s=0.04 RRCF-fast:w=0.10,s=0.64 RRCF-mid:w=0.09,s=0.62 RRCF-slow:w=0.08,s=0.78 COPOD!:w=0.12,s=0.58"} +{"timestamp":"2026-03-22T11:18:27.585247522Z","score":0.6387601065482311,"is_anomaly":false,"confidence":0.8436414950786383,"method":"SEAD","details":"MAD!:w=0.62,s=0.74 RRCF-fast:w=0.10,s=0.38 RRCF-mid:w=0.08,s=0.55 RRCF-slow:w=0.08,s=0.70 COPOD!:w=0.12,s=0.37"} +{"timestamp":"2026-03-22T11:18:57.540437555Z","score":0.32854366304878824,"is_anomaly":false,"confidence":0.4341082364074876,"method":"SEAD","details":"MAD!:w=0.62,s=0.36 RRCF-fast:w=0.10,s=0.26 RRCF-mid:w=0.09,s=0.20 RRCF-slow:w=0.08,s=0.59 COPOD!:w=0.12,s=0.16"} +{"timestamp":"2026-03-22T11:19:27.53872504Z","score":0.28142809060063584,"is_anomaly":false,"confidence":0.3718539294061093,"method":"SEAD","details":"MAD!:w=0.62,s=0.28 RRCF-fast:w=0.10,s=0.09 RRCF-mid:w=0.09,s=0.32 RRCF-slow:w=0.08,s=0.51 COPOD!:w=0.12,s=0.29"} +{"timestamp":"2026-03-22T11:19:57.589992261Z","score":0.48625602264649986,"is_anomaly":false,"confidence":0.642495254587349,"method":"SEAD","details":"MAD!:w=0.62,s=0.58 RRCF-fast:w=0.10,s=0.36 RRCF-mid:w=0.09,s=0.43 RRCF-slow:w=0.08,s=0.66 COPOD!:w=0.12,s=0.04"} +{"timestamp":"2026-03-22T11:20:27.540321507Z","score":0.2439017506672147,"is_anomaly":false,"confidence":0.32226997731841917,"method":"SEAD","details":"MAD!:w=0.62,s=0.24 RRCF-fast:w=0.10,s=0.05 RRCF-mid:w=0.09,s=0.26 RRCF-slow:w=0.08,s=0.49 COPOD!:w=0.12,s=0.24"} +{"timestamp":"2026-03-22T11:21:05.562009677Z","score":0.7145073919107758,"is_anomaly":false,"confidence":0.944086216499145,"method":"SEAD","details":"MAD!:w=0.62,s=0.60 RRCF-fast!:w=0.10,s=0.91 RRCF-mid!:w=0.09,s=0.88 RRCF-slow!:w=0.08,s=0.92 COPOD!:w=0.12,s=0.90"} +{"timestamp":"2026-03-22T11:21:27.77273054Z","score":0.5801148598970949,"is_anomaly":false,"confidence":0.7665119345379303,"method":"SEAD","details":"MAD!:w=0.62,s=0.46 RRCF-fast:w=0.10,s=0.69 RRCF-mid!:w=0.09,s=0.82 RRCF-slow:w=0.07,s=0.80 COPOD!:w=0.12,s=0.82"} +{"timestamp":"2026-03-22T11:22:03.893953364Z","score":0.6065463568047588,"is_anomaly":false,"confidence":0.8014361525298994,"method":"SEAD","details":"MAD!:w=0.62,s=0.72 RRCF-fast:w=0.10,s=0.27 RRCF-mid:w=0.08,s=0.37 RRCF-slow:w=0.07,s=0.63 COPOD!:w=0.12,s=0.44"} +{"timestamp":"2026-03-22T11:22:27.586582813Z","score":0.5050099798128633,"is_anomaly":false,"confidence":0.6677409527637095,"method":"SEAD","details":"MAD!:w=0.62,s=0.46 RRCF-fast:w=0.10,s=0.45 RRCF-mid:w=0.09,s=0.56 RRCF-slow:w=0.07,s=0.69 COPOD!:w=0.12,s=0.61"} +{"timestamp":"2026-03-22T11:22:57.527117704Z","score":0.14121619398348156,"is_anomaly":false,"confidence":0.1867207375805466,"method":"SEAD","details":"MAD!:w=0.62,s=0.05 RRCF-fast:w=0.10,s=0.23 RRCF-mid:w=0.09,s=0.10 RRCF-slow:w=0.07,s=0.40 COPOD!:w=0.12,s=0.41"} +{"timestamp":"2026-03-22T11:23:27.59880687Z","score":0.4606456031947182,"is_anomaly":false,"confidence":0.6090809018816542,"method":"SEAD","details":"MAD!:w=0.62,s=0.60 RRCF-fast:w=0.10,s=0.04 RRCF-mid:w=0.09,s=0.39 RRCF-slow:w=0.07,s=0.60 COPOD!:w=0.12,s=0.07"} +{"timestamp":"2026-03-22T11:23:57.540392995Z","score":0.15505972466179657,"is_anomaly":false,"confidence":0.2050251132053157,"method":"SEAD","details":"MAD!:w=0.62,s=0.05 RRCF-fast:w=0.10,s=0.10 RRCF-mid:w=0.09,s=0.10 RRCF-slow:w=0.07,s=0.41 COPOD!:w=0.12,s=0.62"} +{"timestamp":"2026-03-22T11:24:30.18101436Z","score":0.5198655386565397,"is_anomaly":false,"confidence":0.6873834656102668,"method":"SEAD","details":"MAD!:w=0.62,s=0.48 RRCF-fast:w=0.10,s=0.76 RRCF-mid:w=0.09,s=0.71 RRCF-slow:w=0.07,s=0.80 COPOD!:w=0.12,s=0.18"} +{"timestamp":"2026-03-22T11:24:57.557309714Z","score":0.6645250769656484,"is_anomaly":false,"confidence":0.8786571073166681,"method":"SEAD","details":"MAD!:w=0.62,s=0.65 RRCF-fast:w=0.10,s=0.69 RRCF-mid:w=0.09,s=0.72 RRCF-slow:w=0.07,s=0.73 COPOD!:w=0.12,s=0.67"} +{"timestamp":"2026-03-22T11:25:27.58820498Z","score":0.17779524679417075,"is_anomaly":false,"confidence":0.2351236836826161,"method":"SEAD","details":"MAD!:w=0.62,s=0.02 RRCF-fast:w=0.10,s=0.29 RRCF-mid:w=0.09,s=0.45 RRCF-slow:w=0.07,s=0.68 COPOD!:w=0.12,s=0.38"} +{"timestamp":"2026-03-22T11:25:57.58793342Z","score":0.6492081539221168,"is_anomaly":false,"confidence":0.8585393331896631,"method":"SEAD","details":"MAD!:w=0.62,s=0.78 RRCF-fast:w=0.10,s=0.28 RRCF-mid:w=0.08,s=0.25 RRCF-slow:w=0.07,s=0.53 COPOD!:w=0.12,s=0.62"} +{"timestamp":"2026-03-22T11:26:27.54394372Z","score":0.32900804936711137,"is_anomaly":false,"confidence":0.43509365926965554,"method":"SEAD","details":"MAD!:w=0.62,s=0.41 RRCF-fast:w=0.10,s=0.00 RRCF-mid:w=0.09,s=0.02 RRCF-slow:w=0.07,s=0.34 COPOD!:w=0.12,s=0.42"} +{"timestamp":"2026-03-22T11:26:57.584924894Z","score":0.4450048430353984,"is_anomaly":false,"confidence":0.5884925488037159,"method":"SEAD","details":"MAD!:w=0.62,s=0.58 RRCF-fast:w=0.10,s=0.22 RRCF-mid:w=0.09,s=0.30 RRCF-slow:w=0.07,s=0.38 COPOD!:w=0.12,s=0.10"} +{"timestamp":"2026-03-22T11:27:27.54782731Z","score":0.2193909136952245,"is_anomaly":false,"confidence":0.29013148959057183,"method":"SEAD","details":"MAD!:w=0.62,s=0.13 RRCF-fast:w=0.10,s=0.43 RRCF-mid:w=0.09,s=0.33 RRCF-slow:w=0.07,s=0.31 COPOD!:w=0.12,s=0.34"} +{"timestamp":"2026-03-22T11:27:57.540712443Z","score":0.1653929507366636,"is_anomaly":false,"confidence":0.21872238169202166,"method":"SEAD","details":"MAD!:w=0.62,s=0.07 RRCF-fast:w=0.10,s=0.05 RRCF-mid:w=0.09,s=0.11 RRCF-slow:w=0.07,s=0.40 COPOD!:w=0.12,s=0.66"} +{"timestamp":"2026-03-22T11:28:29.754445457Z","score":0.6145292060250004,"is_anomaly":false,"confidence":0.8126784785108706,"method":"SEAD","details":"MAD!:w=0.62,s=0.57 RRCF-fast:w=0.10,s=0.61 RRCF-mid:w=0.09,s=0.72 RRCF-slow:w=0.07,s=0.81 COPOD!:w=0.12,s=0.65"} +{"timestamp":"2026-03-22T11:28:57.586549754Z","score":0.384008691235336,"is_anomaly":false,"confidence":0.5085743097050545,"method":"SEAD","details":"MAD!:w=0.62,s=0.29 RRCF-fast:w=0.10,s=0.38 RRCF-mid:w=0.09,s=0.51 RRCF-slow:w=0.07,s=0.60 COPOD!:w=0.12,s=0.65"} +{"timestamp":"2026-03-22T11:29:27.584650106Z","score":0.6183404159798265,"is_anomaly":false,"confidence":0.8189190958361808,"method":"SEAD","details":"MAD!:w=0.62,s=0.76 RRCF-fast:w=0.10,s=0.42 RRCF-mid:w=0.09,s=0.21 RRCF-slow:w=0.07,s=0.33 COPOD!:w=0.12,s=0.49"} +{"timestamp":"2026-03-22T11:29:57.540965547Z","score":0.2954846769849924,"is_anomaly":false,"confidence":0.3913346730320965,"method":"SEAD","details":"MAD!:w=0.62,s=0.40 RRCF-fast:w=0.10,s=0.02 RRCF-mid:w=0.09,s=0.01 RRCF-slow:w=0.07,s=0.28 COPOD!:w=0.12,s=0.21"} +{"timestamp":"2026-03-22T11:30:27.541514793Z","score":0.22468536603862446,"is_anomaly":false,"confidence":0.2975693195024384,"method":"SEAD","details":"MAD!:w=0.62,s=0.28 RRCF-fast:w=0.10,s=0.10 RRCF-mid:w=0.09,s=0.05 RRCF-slow:w=0.07,s=0.26 COPOD!:w=0.12,s=0.16"} +{"timestamp":"2026-03-22T11:30:57.58405607Z","score":0.4865288558513448,"is_anomaly":false,"confidence":0.6443502000441674,"method":"SEAD","details":"MAD!:w=0.62,s=0.62 RRCF-fast:w=0.10,s=0.33 RRCF-mid:w=0.09,s=0.32 RRCF-slow:w=0.07,s=0.28 COPOD!:w=0.12,s=0.20"} +{"timestamp":"2026-03-22T11:31:27.555986344Z","score":0.17227307963870214,"is_anomaly":false,"confidence":0.2281554156395998,"method":"SEAD","details":"MAD!:w=0.61,s=0.13 RRCF-fast:w=0.10,s=0.16 RRCF-mid:w=0.09,s=0.01 RRCF-slow:w=0.07,s=0.18 COPOD!:w=0.12,s=0.50"} +{"timestamp":"2026-03-22T11:32:43.378025833Z","score":0.596396737295676,"is_anomaly":false,"confidence":0.7898572764193332,"method":"SEAD","details":"MAD!:w=0.62,s=0.49 RRCF-fast:w=0.10,s=0.62 RRCF-mid:w=0.09,s=0.68 RRCF-slow:w=0.07,s=0.76 COPOD!:w=0.12,s=0.96"} +{"timestamp":"2026-03-22T11:32:57.589748377Z","score":0.3879920778299456,"is_anomaly":false,"confidence":0.5144829963409037,"method":"SEAD","details":"MAD!:w=0.62,s=0.04 RRCF-fast!:w=0.10,s=0.90 RRCF-mid!:w=0.09,s=0.95 RRCF-slow!:w=0.07,s=0.96 COPOD!:w=0.12,s=0.99"} +{"timestamp":"2026-03-22T11:34:12.880678117Z","score":0.7452038290636978,"is_anomaly":false,"confidence":0.9881508431969718,"method":"SEAD","details":"MAD!:w=0.62,s=0.78 RRCF-fast:w=0.10,s=0.61 RRCF-mid:w=0.09,s=0.52 RRCF-slow:w=0.07,s=0.61 COPOD!:w=0.12,s=0.94"} +{"timestamp":"2026-03-22T11:34:27.586055208Z","score":0.8751203135345819,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.62,s=0.87 RRCF-fast!:w=0.10,s=0.98 RRCF-mid!:w=0.09,s=0.99 RRCF-slow!:w=0.07,s=0.98 COPOD!:w=0.11,s=0.64"} +{"timestamp":"2026-03-22T11:34:57.541576728Z","score":0.19792218739717796,"is_anomaly":false,"confidence":0.2621246396976647,"method":"SEAD","details":"MAD!:w=0.62,s=0.08 RRCF-fast:w=0.10,s=0.25 RRCF-mid:w=0.09,s=0.54 RRCF-slow:w=0.07,s=0.48 COPOD!:w=0.12,s=0.35"} +{"timestamp":"2026-03-22T11:35:40.135755295Z","score":0.9593328423993654,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.62,s=0.98 RRCF-fast!:w=0.10,s=1.00 RRCF-mid!:w=0.09,s=1.00 RRCF-slow!:w=0.07,s=1.00 COPOD!:w=0.11,s=0.78"} +{"timestamp":"2026-03-22T11:35:57.579911073Z","score":0.7143829368622374,"is_anomaly":false,"confidence":0.9447291235491122,"method":"SEAD","details":"MAD!:w=0.62,s=0.66 RRCF-fast!:w=0.10,s=0.80 RRCF-mid!:w=0.09,s=0.86 RRCF-slow!:w=0.07,s=0.89 COPOD!:w=0.12,s=0.72"} +{"timestamp":"2026-03-22T11:36:27.569432047Z","score":0.2960231430841901,"is_anomaly":false,"confidence":0.3920478079973966,"method":"SEAD","details":"MAD!:w=0.62,s=0.07 RRCF-fast:w=0.10,s=0.51 RRCF-mid:w=0.09,s=0.63 RRCF-slow:w=0.07,s=0.80 COPOD!:w=0.11,s=0.79"} +{"timestamp":"2026-03-22T11:37:11.425535868Z","score":0.8907691666615299,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.63,s=0.92 RRCF-fast!:w=0.10,s=0.93 RRCF-mid!:w=0.08,s=0.95 RRCF-slow!:w=0.07,s=0.96 COPOD!:w=0.11,s=0.60"} +{"timestamp":"2026-03-22T11:37:29.362699796Z","score":0.566379428766588,"is_anomaly":false,"confidence":0.7490032498327855,"method":"SEAD","details":"MAD!:w=0.63,s=0.36 RRCF-fast!:w=0.10,s=0.92 RRCF-mid!:w=0.08,s=0.92 RRCF-slow!:w=0.07,s=0.91 COPOD!:w=0.11,s=0.89"} +{"timestamp":"2026-03-22T11:37:57.769756611Z","score":0.5990186494568441,"is_anomaly":false,"confidence":0.7921666860865522,"method":"SEAD","details":"MAD!:w=0.63,s=0.53 RRCF-fast!:w=0.10,s=0.84 RRCF-mid!:w=0.08,s=0.88 RRCF-slow!:w=0.07,s=0.90 COPOD!:w=0.11,s=0.36"} +{"timestamp":"2026-03-22T11:38:51.36721628Z","score":0.601711339358158,"is_anomaly":false,"confidence":0.7957276090022521,"method":"SEAD","details":"MAD!:w=0.63,s=0.50 RRCF-fast:w=0.10,s=0.65 RRCF-mid:w=0.08,s=0.84 RRCF-slow:w=0.07,s=0.88 COPOD!:w=0.11,s=0.77"} +{"timestamp":"2026-03-22T11:38:57.534204753Z","score":0.8504207478541237,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.63,s=0.93 RRCF-fast!:w=0.10,s=0.90 RRCF-mid!:w=0.08,s=0.94 RRCF-slow!:w=0.07,s=0.95 COPOD!:w=0.11,s=0.22"} +{"timestamp":"2026-03-22T11:39:27.543899525Z","score":0.20248776594057324,"is_anomaly":false,"confidence":0.2677360431614769,"method":"SEAD","details":"MAD!:w=0.63,s=0.04 RRCF-fast:w=0.10,s=0.10 RRCF-mid:w=0.08,s=0.56 RRCF-slow:w=0.07,s=0.73 COPOD!:w=0.11,s=0.62"} +{"timestamp":"2026-03-22T11:40:03.912662279Z","score":0.7768909236291774,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.64,s=0.86 RRCF-fast:w=0.10,s=0.66 RRCF-mid:w=0.08,s=0.86 RRCF-slow:w=0.07,s=0.87 COPOD!:w=0.11,s=0.28"} +{"timestamp":"2026-03-22T11:40:30.720676501Z","score":0.8500266620980987,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.63,s=0.84 RRCF-fast!:w=0.10,s=0.90 RRCF-mid!:w=0.08,s=0.89 RRCF-slow:w=0.07,s=0.88 COPOD!:w=0.11,s=0.84"} +{"timestamp":"2026-03-22T11:40:57.584759468Z","score":0.7339472903721753,"is_anomaly":false,"confidence":0.9697723611007701,"method":"SEAD","details":"MAD!:w=0.63,s=0.74 RRCF-fast:w=0.10,s=0.74 RRCF-mid:w=0.08,s=0.72 RRCF-slow:w=0.07,s=0.78 COPOD!:w=0.11,s=0.69"} +{"timestamp":"2026-03-22T11:41:55.156911272Z","score":0.7318806549321801,"is_anomaly":false,"confidence":0.9670416937129768,"method":"SEAD","details":"MAD!:w=0.63,s=0.84 RRCF-fast:w=0.10,s=0.65 RRCF-mid:w=0.08,s=0.75 RRCF-slow:w=0.07,s=0.83 COPOD!:w=0.11,s=0.11"} +{"timestamp":"2026-03-22T11:41:57.542688927Z","score":0.6200077447970368,"is_anomaly":false,"confidence":0.8192228276606779,"method":"SEAD","details":"MAD!:w=0.63,s=0.53 RRCF-fast!:w=0.10,s=0.88 RRCF-mid:w=0.08,s=0.83 RRCF-slow:w=0.07,s=0.84 COPOD!:w=0.11,s=0.59"} +{"timestamp":"2026-03-22T11:42:29.082791195Z","score":0.7272127515336045,"is_anomaly":false,"confidence":0.9608739433041817,"method":"SEAD","details":"MAD!:w=0.63,s=0.68 RRCF-fast:w=0.10,s=0.84 RRCF-mid!:w=0.08,s=0.90 RRCF-slow:w=0.07,s=0.86 COPOD!:w=0.11,s=0.69"} +{"timestamp":"2026-03-22T11:43:33.59275371Z","score":0.2957414826803754,"is_anomaly":false,"confidence":0.39076636659964586,"method":"SEAD","details":"MAD!:w=0.63,s=0.07 RRCF-fast:w=0.10,s=0.70 RRCF-mid:w=0.08,s=0.74 RRCF-slow:w=0.07,s=0.83 COPOD!:w=0.11,s=0.53"} +{"timestamp":"2026-03-22T11:43:57.587166366Z","score":0.7015752349895226,"is_anomaly":false,"confidence":0.9276460556698776,"method":"SEAD","details":"MAD!:w=0.64,s=0.72 RRCF-fast!:w=0.10,s=0.94 RRCF-mid:w=0.08,s=0.83 RRCF-slow:w=0.07,s=0.81 COPOD!:w=0.11,s=0.25"} +{"timestamp":"2026-03-22T11:44:27.548649176Z","score":0.36850898924343445,"is_anomaly":false,"confidence":0.487254813599101,"method":"SEAD","details":"MAD!:w=0.64,s=0.28 RRCF-fast:w=0.10,s=0.48 RRCF-mid:w=0.08,s=0.51 RRCF-slow:w=0.07,s=0.69 COPOD!:w=0.11,s=0.47"} +{"timestamp":"2026-03-22T11:45:17.732023848Z","score":0.9130726787376985,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.64,s=0.99 RRCF-fast!:w=0.10,s=0.92 RRCF-mid!:w=0.08,s=0.95 RRCF-slow!:w=0.07,s=0.96 COPOD!:w=0.11,s=0.44"} +{"timestamp":"2026-03-22T11:45:27.588724293Z","score":0.8216193313170843,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.64,s=0.81 RRCF-fast:w=0.10,s=0.76 RRCF-mid:w=0.08,s=0.80 RRCF-slow:w=0.07,s=0.86 COPOD!:w=0.11,s=0.91"} +{"timestamp":"2026-03-22T11:45:57.582400121Z","score":0.5675501139874329,"is_anomaly":false,"confidence":0.749590999481518,"method":"SEAD","details":"MAD!:w=0.64,s=0.58 RRCF-fast:w=0.10,s=0.77 RRCF-mid:w=0.08,s=0.65 RRCF-slow:w=0.07,s=0.69 COPOD!:w=0.11,s=0.18"} +{"timestamp":"2026-03-22T11:46:48.386386159Z","score":0.8547719810957752,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.64,s=0.97 RRCF-fast:w=0.10,s=0.82 RRCF-mid!:w=0.08,s=0.90 RRCF-slow!:w=0.07,s=0.92 COPOD!:w=0.11,s=0.17"} +{"timestamp":"2026-03-22T11:46:57.558532959Z","score":0.5513684287923101,"is_anomaly":false,"confidence":0.7282190619560575,"method":"SEAD","details":"MAD!:w=0.63,s=0.49 RRCF-fast:w=0.10,s=0.67 RRCF-mid:w=0.08,s=0.77 RRCF-slow:w=0.07,s=0.79 COPOD!:w=0.12,s=0.50"} +{"timestamp":"2026-03-22T11:47:29.28276336Z","score":0.5057778411626168,"is_anomaly":false,"confidence":0.6680053586969859,"method":"SEAD","details":"MAD!:w=0.64,s=0.44 RRCF-fast:w=0.10,s=0.71 RRCF-mid:w=0.08,s=0.73 RRCF-slow:w=0.07,s=0.74 COPOD!:w=0.12,s=0.39"} +{"timestamp":"2026-03-22T11:47:57.544060669Z","score":0.8193549753920487,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.64,s=0.87 RRCF-fast!:w=0.10,s=0.98 RRCF-mid!:w=0.08,s=0.99 RRCF-slow!:w=0.07,s=0.99 COPOD!:w=0.12,s=0.17"} +{"timestamp":"2026-03-22T11:48:27.643813223Z","score":0.5955305052407891,"is_anomaly":false,"confidence":0.7864290413710018,"method":"SEAD","details":"MAD!:w=0.64,s=0.59 RRCF-fast:w=0.10,s=0.65 RRCF-mid:w=0.08,s=0.68 RRCF-slow:w=0.07,s=0.78 COPOD!:w=0.12,s=0.42"} +{"timestamp":"2026-03-22T11:48:57.585250338Z","score":0.5790084887327527,"is_anomaly":false,"confidence":0.7646108582727618,"method":"SEAD","details":"MAD!:w=0.64,s=0.69 RRCF-fast:w=0.10,s=0.31 RRCF-mid:w=0.08,s=0.58 RRCF-slow:w=0.07,s=0.61 COPOD!:w=0.12,s=0.19"} +{"timestamp":"2026-03-22T11:49:27.545047608Z","score":0.23853814093294695,"is_anomaly":false,"confidence":0.31500203575376773,"method":"SEAD","details":"MAD!:w=0.63,s=0.20 RRCF-fast:w=0.10,s=0.17 RRCF-mid:w=0.08,s=0.25 RRCF-slow:w=0.07,s=0.60 COPOD!:w=0.12,s=0.27"} +{"timestamp":"2026-03-22T11:49:57.590424856Z","score":0.5064450722888836,"is_anomaly":false,"confidence":0.6687870884904171,"method":"SEAD","details":"MAD!:w=0.63,s=0.59 RRCF-fast:w=0.10,s=0.46 RRCF-mid:w=0.08,s=0.46 RRCF-slow:w=0.07,s=0.70 COPOD!:w=0.12,s=0.00"} +{"timestamp":"2026-03-22T11:50:27.552130028Z","score":0.23681922436399558,"is_anomaly":false,"confidence":0.3127786511049419,"method":"SEAD","details":"MAD!:w=0.63,s=0.14 RRCF-fast:w=0.10,s=0.16 RRCF-mid:w=0.08,s=0.46 RRCF-slow:w=0.07,s=0.53 COPOD!:w=0.12,s=0.51"} +{"timestamp":"2026-03-22T11:50:57.542223487Z","score":0.26145769938259106,"is_anomaly":false,"confidence":0.3453198816671797,"method":"SEAD","details":"MAD!:w=0.63,s=0.20 RRCF-fast:w=0.10,s=0.20 RRCF-mid:w=0.08,s=0.18 RRCF-slow:w=0.07,s=0.54 COPOD!:w=0.12,s=0.56"} +{"timestamp":"2026-03-22T11:51:27.869547275Z","score":0.8111636842351517,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.63,s=0.84 RRCF-fast!:w=0.10,s=0.90 RRCF-mid!:w=0.08,s=0.92 RRCF-slow!:w=0.07,s=0.93 COPOD!:w=0.12,s=0.42"} +{"timestamp":"2026-03-22T11:51:57.60490004Z","score":0.41963389628182945,"is_anomaly":false,"confidence":0.5541484103257895,"method":"SEAD","details":"MAD!:w=0.63,s=0.27 RRCF-fast:w=0.10,s=0.79 RRCF-mid:w=0.08,s=0.67 RRCF-slow:w=0.07,s=0.75 COPOD!:w=0.12,s=0.54"} +{"timestamp":"2026-03-22T11:52:27.583638003Z","score":0.17594332747988345,"is_anomaly":false,"confidence":0.23234232528471985,"method":"SEAD","details":"MAD!:w=0.64,s=0.06 RRCF-fast:w=0.10,s=0.10 RRCF-mid:w=0.08,s=0.30 RRCF-slow:w=0.07,s=0.42 COPOD!:w=0.12,s=0.62"} +{"timestamp":"2026-03-22T11:52:57.54170898Z","score":0.313095168250592,"is_anomaly":false,"confidence":0.4134584725020078,"method":"SEAD","details":"MAD!:w=0.64,s=0.27 RRCF-fast:w=0.10,s=0.43 RRCF-mid:w=0.08,s=0.24 RRCF-slow:w=0.07,s=0.45 COPOD!:w=0.12,s=0.39"} +{"timestamp":"2026-03-22T11:53:27.598967033Z","score":0.7668280139914195,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.64,s=0.78 RRCF-fast:w=0.10,s=0.78 RRCF-mid:w=0.08,s=0.65 RRCF-slow:w=0.07,s=0.78 COPOD!:w=0.12,s=0.76"} +{"timestamp":"2026-03-22T11:53:57.589946386Z","score":0.36842391761092746,"is_anomaly":false,"confidence":0.48652296699354003,"method":"SEAD","details":"MAD!:w=0.64,s=0.46 RRCF-fast:w=0.10,s=0.35 RRCF-mid:w=0.08,s=0.05 RRCF-slow:w=0.07,s=0.38 COPOD!:w=0.12,s=0.10"} +{"timestamp":"2026-03-22T11:54:27.533458918Z","score":0.21846220133933814,"is_anomaly":false,"confidence":0.2884907121686891,"method":"SEAD","details":"MAD!:w=0.64,s=0.05 RRCF-fast:w=0.10,s=0.38 RRCF-mid:w=0.08,s=0.21 RRCF-slow:w=0.07,s=0.48 COPOD!:w=0.12,s=0.83"} +{"timestamp":"2026-03-22T11:54:58.423337098Z","score":0.7146687074806878,"is_anomaly":false,"confidence":0.9437572409404011,"method":"SEAD","details":"MAD!:w=0.64,s=0.61 RRCF-fast!:w=0.10,s=0.96 RRCF-mid!:w=0.08,s=0.95 RRCF-slow:w=0.07,s=0.88 COPOD!:w=0.12,s=0.81"} +{"timestamp":"2026-03-22T11:55:28.366750656Z","score":0.45371496374476794,"is_anomaly":false,"confidence":0.5991542345076125,"method":"SEAD","details":"MAD!:w=0.64,s=0.36 RRCF-fast:w=0.10,s=0.74 RRCF-mid:w=0.08,s=0.75 RRCF-slow:w=0.07,s=0.74 COPOD!:w=0.12,s=0.35"} +{"timestamp":"2026-03-22T11:55:57.591772569Z","score":0.7214214389642506,"is_anomaly":false,"confidence":0.9526745744783479,"method":"SEAD","details":"MAD!:w=0.64,s=0.79 RRCF-fast:w=0.10,s=0.71 RRCF-mid:w=0.08,s=0.64 RRCF-slow:w=0.07,s=0.60 COPOD!:w=0.12,s=0.49"} +{"timestamp":"2026-03-22T11:56:27.54086477Z","score":0.37308633658877205,"is_anomaly":false,"confidence":0.49267993402536947,"method":"SEAD","details":"MAD!:w=0.64,s=0.40 RRCF-fast:w=0.10,s=0.16 RRCF-mid:w=0.08,s=0.12 RRCF-slow:w=0.07,s=0.37 COPOD!:w=0.12,s=0.55"} +{"timestamp":"2026-03-22T11:56:58.452016521Z","score":0.2985193110660272,"is_anomaly":false,"confidence":0.39426895217128316,"method":"SEAD","details":"MAD!:w=0.64,s=0.26 RRCF-fast:w=0.10,s=0.31 RRCF-mid:w=0.08,s=0.30 RRCF-slow:w=0.07,s=0.34 COPOD!:w=0.12,s=0.44"} +{"timestamp":"2026-03-22T11:57:27.569835743Z","score":0.5216925448950539,"is_anomaly":false,"confidence":0.6890246808383147,"method":"SEAD","details":"MAD!:w=0.64,s=0.62 RRCF-fast:w=0.10,s=0.58 RRCF-mid:w=0.08,s=0.45 RRCF-slow:w=0.07,s=0.51 COPOD!:w=0.12,s=0.01"} +{"timestamp":"2026-03-22T11:57:57.552845255Z","score":0.2003859782388558,"is_anomaly":false,"confidence":0.2646594935112137,"method":"SEAD","details":"MAD!:w=0.64,s=0.09 RRCF-fast:w=0.10,s=0.33 RRCF-mid:w=0.08,s=0.12 RRCF-slow:w=0.07,s=0.36 COPOD!:w=0.12,s=0.68"} +{"timestamp":"2026-03-22T11:58:28.045712644Z","score":0.5553470080733811,"is_anomaly":false,"confidence":0.7334737648383487,"method":"SEAD","details":"MAD!:w=0.64,s=0.52 RRCF-fast:w=0.10,s=0.85 RRCF-mid:w=0.08,s=0.81 RRCF-slow:w=0.07,s=0.82 COPOD!:w=0.12,s=0.18"} +{"timestamp":"2026-03-22T11:58:58.153002381Z","score":0.7690514275432137,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.64,s=0.82 RRCF-fast:w=0.10,s=0.88 RRCF-mid:w=0.08,s=0.87 RRCF-slow:w=0.07,s=0.79 COPOD!:w=0.12,s=0.30"} +{"timestamp":"2026-03-22T11:59:27.58972675Z","score":0.19775938215973732,"is_anomaly":false,"confidence":0.2611515614487647,"method":"SEAD","details":"MAD!:w=0.64,s=0.02 RRCF-fast:w=0.10,s=0.69 RRCF-mid:w=0.08,s=0.58 RRCF-slow:w=0.07,s=0.57 COPOD!:w=0.12,s=0.28"} +{"timestamp":"2026-03-22T11:59:57.582717166Z","score":0.6964257807651741,"is_anomaly":false,"confidence":0.9196665063056034,"method":"SEAD","details":"MAD!:w=0.64,s=0.78 RRCF-fast:w=0.10,s=0.59 RRCF-mid:w=0.08,s=0.61 RRCF-slow:w=0.07,s=0.58 COPOD!:w=0.12,s=0.45"} +{"timestamp":"2026-03-22T12:00:28.070958844Z","score":0.3333583084904308,"is_anomaly":false,"confidence":0.4402825080788254,"method":"SEAD","details":"MAD!:w=0.64,s=0.38 RRCF-fast:w=0.10,s=0.36 RRCF-mid:w=0.08,s=0.09 RRCF-slow:w=0.07,s=0.33 COPOD!:w=0.12,s=0.21"} +{"timestamp":"2026-03-22T12:00:57.608903958Z","score":0.49204241462982495,"is_anomaly":false,"confidence":0.6498643137931549,"method":"SEAD","details":"MAD!:w=0.64,s=0.58 RRCF-fast:w=0.10,s=0.40 RRCF-mid:w=0.08,s=0.50 RRCF-slow:w=0.07,s=0.51 COPOD!:w=0.12,s=0.10"} +{"timestamp":"2026-03-22T12:01:27.608858807Z","score":0.291954840148215,"is_anomaly":false,"confidence":0.3855989366165701,"method":"SEAD","details":"MAD!:w=0.64,s=0.18 RRCF-fast:w=0.10,s=0.43 RRCF-mid:w=0.08,s=0.19 RRCF-slow:w=0.07,s=0.31 COPOD!:w=0.12,s=0.83"} +{"timestamp":"2026-03-22T12:01:57.539724774Z","score":0.2606907530804382,"is_anomaly":false,"confidence":0.34430693843800764,"method":"SEAD","details":"MAD!:w=0.64,s=0.14 RRCF-fast:w=0.10,s=0.46 RRCF-mid:w=0.08,s=0.12 RRCF-slow:w=0.07,s=0.22 COPOD!:w=0.12,s=0.85"} +{"timestamp":"2026-03-22T12:02:28.198708481Z","score":0.9030626583142785,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.64,s=0.88 RRCF-fast!:w=0.10,s=0.98 RRCF-mid!:w=0.08,s=0.99 RRCF-slow!:w=0.07,s=0.95 COPOD!:w=0.12,s=0.86"} +{"timestamp":"2026-03-22T12:02:57.605283354Z","score":0.686559920817092,"is_anomaly":false,"confidence":0.9066381245300408,"method":"SEAD","details":"MAD!:w=0.64,s=0.64 RRCF-fast!:w=0.09,s=0.94 RRCF-mid!:w=0.08,s=0.95 RRCF-slow:w=0.07,s=0.82 COPOD!:w=0.12,s=0.51"} +{"timestamp":"2026-03-22T12:03:29.290780325Z","score":0.762734640989008,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.64,s=0.76 RRCF-fast!:w=0.09,s=0.95 RRCF-mid:w=0.08,s=0.86 RRCF-slow:w=0.07,s=0.59 COPOD!:w=0.12,s=0.65"} +{"timestamp":"2026-03-22T12:03:57.618090393Z","score":0.7904641120281389,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.64,s=0.88 RRCF-fast!:w=0.09,s=0.95 RRCF-mid:w=0.08,s=0.85 RRCF-slow:w=0.07,s=0.83 COPOD!:w=0.12,s=0.10"} +{"timestamp":"2026-03-22T12:04:27.552361829Z","score":0.5139886015856076,"is_anomaly":false,"confidence":0.676908458321502,"method":"SEAD","details":"MAD!:w=0.64,s=0.52 RRCF-fast:w=0.09,s=0.84 RRCF-mid:w=0.08,s=0.72 RRCF-slow:w=0.07,s=0.39 COPOD!:w=0.12,s=0.18"} +{"timestamp":"2026-03-22T12:04:57.597792852Z","score":0.5557666787009617,"is_anomaly":false,"confidence":0.7319290048560949,"method":"SEAD","details":"MAD!:w=0.64,s=0.59 RRCF-fast:w=0.09,s=0.79 RRCF-mid:w=0.08,s=0.75 RRCF-slow:w=0.07,s=0.58 COPOD!:w=0.12,s=0.03"} +{"timestamp":"2026-03-22T12:05:27.575757837Z","score":0.781858315490792,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.64,s=0.88 RRCF-fast:w=0.09,s=0.89 RRCF-mid:w=0.08,s=0.87 RRCF-slow:w=0.07,s=0.73 COPOD!:w=0.12,s=0.15"} +{"timestamp":"2026-03-22T12:05:59.755529747Z","score":0.5610992856061204,"is_anomaly":false,"confidence":0.7385297331909007,"method":"SEAD","details":"MAD!:w=0.64,s=0.53 RRCF-fast:w=0.09,s=0.90 RRCF-mid:w=0.08,s=0.84 RRCF-slow:w=0.07,s=0.77 COPOD!:w=0.12,s=0.19"} +{"timestamp":"2026-03-22T12:06:29.148593239Z","score":0.3769807698476012,"is_anomaly":false,"confidence":0.4961893813015618,"method":"SEAD","details":"MAD!:w=0.64,s=0.26 RRCF-fast:w=0.09,s=0.81 RRCF-mid:w=0.08,s=0.73 RRCF-slow:w=0.07,s=0.70 COPOD!:w=0.12,s=0.25"} +{"timestamp":"2026-03-22T12:06:58.986826943Z","score":0.866743002750608,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.64,s=0.89 RRCF-fast:w=0.09,s=0.86 RRCF-mid!:w=0.08,s=0.91 RRCF-slow!:w=0.07,s=0.92 COPOD!:w=0.12,s=0.71"} +{"timestamp":"2026-03-22T12:07:27.608976106Z","score":0.834009509789895,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.64,s=0.89 RRCF-fast:w=0.09,s=0.78 RRCF-mid:w=0.08,s=0.89 RRCF-slow:w=0.07,s=0.84 COPOD!:w=0.12,s=0.56"} +{"timestamp":"2026-03-22T12:07:57.548697941Z","score":0.411870771585817,"is_anomaly":false,"confidence":0.5408392883838923,"method":"SEAD","details":"MAD!:w=0.64,s=0.32 RRCF-fast:w=0.09,s=0.76 RRCF-mid:w=0.08,s=0.86 RRCF-slow:w=0.07,s=0.72 COPOD!:w=0.12,s=0.18"} +{"timestamp":"2026-03-22T12:08:27.74415315Z","score":0.8039073298730404,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.64,s=0.87 RRCF-fast:w=0.09,s=0.82 RRCF-mid:w=0.08,s=0.81 RRCF-slow:w=0.07,s=0.70 COPOD!:w=0.12,s=0.48"} +{"timestamp":"2026-03-22T12:08:57.606158693Z","score":0.516942819406686,"is_anomaly":false,"confidence":0.677749234958552,"method":"SEAD","details":"MAD!:w=0.64,s=0.60 RRCF-fast:w=0.09,s=0.61 RRCF-mid:w=0.08,s=0.59 RRCF-slow:w=0.07,s=0.42 COPOD!:w=0.12,s=0.04"} +{"timestamp":"2026-03-22T12:09:27.581510121Z","score":0.33750416322546944,"is_anomaly":false,"confidence":0.4424922444689821,"method":"SEAD","details":"MAD!:w=0.64,s=0.39 RRCF-fast:w=0.09,s=0.33 RRCF-mid:w=0.08,s=0.54 RRCF-slow:w=0.07,s=0.17 COPOD!:w=0.12,s=0.04"} +{"timestamp":"2026-03-22T12:09:57.631935063Z","score":0.7888585143081376,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.64,s=0.88 RRCF-fast:w=0.09,s=0.72 RRCF-mid:w=0.08,s=0.71 RRCF-slow:w=0.07,s=0.72 COPOD!:w=0.12,s=0.48"} +{"timestamp":"2026-03-22T12:10:27.591036989Z","score":0.5154574212379014,"is_anomaly":false,"confidence":0.675801771071428,"method":"SEAD","details":"MAD!:w=0.64,s=0.65 RRCF-fast:w=0.09,s=0.28 RRCF-mid:w=0.08,s=0.46 RRCF-slow:w=0.07,s=0.35 COPOD!:w=0.12,s=0.12"} +{"timestamp":"2026-03-22T12:10:57.587757361Z","score":0.3553135075283534,"is_anomaly":false,"confidence":0.4658415763936359,"method":"SEAD","details":"MAD!:w=0.63,s=0.39 RRCF-fast:w=0.09,s=0.34 RRCF-mid:w=0.08,s=0.57 RRCF-slow:w=0.07,s=0.41 COPOD!:w=0.13,s=0.02"} +{"timestamp":"2026-03-22T12:11:27.631751995Z","score":0.728073581702372,"is_anomaly":false,"confidence":0.9545568570981746,"method":"SEAD","details":"MAD!:w=0.63,s=0.88 RRCF-fast:w=0.09,s=0.52 RRCF-mid:w=0.08,s=0.75 RRCF-slow:w=0.07,s=0.62 COPOD!:w=0.13,s=0.15"} +{"timestamp":"2026-03-22T12:11:57.637961637Z","score":0.7576504103437286,"is_anomaly":false,"confidence":0.9933342077676098,"method":"SEAD","details":"MAD!:w=0.63,s=0.81 RRCF-fast:w=0.10,s=0.44 RRCF-mid:w=0.08,s=0.64 RRCF-slow:w=0.07,s=0.55 COPOD!:w=0.13,s=0.94"} +{"timestamp":"2026-03-22T12:12:27.585512502Z","score":0.3213424042264914,"is_anomaly":false,"confidence":0.4213030154364293,"method":"SEAD","details":"MAD!:w=0.63,s=0.39 RRCF-fast:w=0.10,s=0.27 RRCF-mid:w=0.08,s=0.33 RRCF-slow:w=0.07,s=0.10 COPOD!:w=0.13,s=0.13"} +{"timestamp":"2026-03-22T12:12:58.510110614Z","score":0.7312600069374638,"is_anomaly":false,"confidence":0.9587344898735264,"method":"SEAD","details":"MAD!:w=0.63,s=0.90 RRCF-fast:w=0.10,s=0.30 RRCF-mid:w=0.08,s=0.67 RRCF-slow:w=0.07,s=0.63 COPOD!:w=0.13,s=0.34"} +{"timestamp":"2026-03-22T12:13:31.537756372Z","score":0.7310467753122388,"is_anomaly":false,"confidence":0.9584549278689103,"method":"SEAD","details":"MAD!:w=0.62,s=0.71 RRCF-fast:w=0.10,s=0.69 RRCF-mid:w=0.08,s=0.85 RRCF-slow:w=0.07,s=0.71 COPOD!:w=0.13,s=0.81"} +{"timestamp":"2026-03-22T12:13:57.578110324Z","score":0.43043937717062264,"is_anomaly":false,"confidence":0.5652222553812846,"method":"SEAD","details":"MAD!:w=0.62,s=0.31 RRCF-fast:w=0.10,s=0.37 RRCF-mid:w=0.08,s=0.74 RRCF-slow:w=0.07,s=0.56 COPOD!:w=0.13,s=0.80"} +{"timestamp":"2026-03-22T12:14:27.660600234Z","score":0.9405464184060975,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.63,s=0.91 RRCF-fast!:w=0.10,s=0.99 RRCF-mid!:w=0.08,s=1.00 RRCF-slow!:w=0.07,s=1.00 COPOD!:w=0.13,s=0.99"} +{"timestamp":"2026-03-22T12:14:57.604249968Z","score":0.6014280421881266,"is_anomaly":false,"confidence":0.7885154415017502,"method":"SEAD","details":"MAD!:w=0.63,s=0.56 RRCF-fast!:w=0.10,s=1.00 RRCF-mid!:w=0.08,s=0.99 RRCF-slow!:w=0.07,s=1.00 COPOD!:w=0.13,s=0.05"} +{"timestamp":"2026-03-22T12:15:27.575404014Z","score":0.4661747273661596,"is_anomaly":false,"confidence":0.6111886130695325,"method":"SEAD","details":"MAD!:w=0.63,s=0.39 RRCF-fast:w=0.10,s=0.83 RRCF-mid!:w=0.08,s=0.93 RRCF-slow!:w=0.07,s=0.94 COPOD!:w=0.13,s=0.00"} +{"timestamp":"2026-03-22T12:15:57.605970161Z","score":0.8962657128857662,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.63,s=0.92 RRCF-fast!:w=0.10,s=0.90 RRCF-mid!:w=0.08,s=0.93 RRCF-slow!:w=0.07,s=0.94 COPOD!:w=0.13,s=0.75"} +{"timestamp":"2026-03-22T12:16:27.592634505Z","score":0.6229212439180962,"is_anomaly":false,"confidence":0.8161796895849787,"method":"SEAD","details":"MAD!:w=0.63,s=0.62 RRCF-fast:w=0.10,s=0.86 RRCF-mid!:w=0.08,s=0.94 RRCF-slow!:w=0.07,s=0.94 COPOD!:w=0.13,s=0.09"} +{"timestamp":"2026-03-22T12:16:57.738624839Z","score":0.43431876073858844,"is_anomaly":false,"confidence":0.5694231484955559,"method":"SEAD","details":"MAD!:w=0.63,s=0.31 RRCF-fast:w=0.10,s=0.77 RRCF-mid:w=0.08,s=0.91 RRCF-slow!:w=0.07,s=0.92 COPOD!:w=0.13,s=0.25"} +{"timestamp":"2026-03-22T12:17:29.027513643Z","score":0.47397569062356115,"is_anomaly":false,"confidence":0.6214162372499242,"method":"SEAD","details":"MAD!:w=0.63,s=0.31 RRCF-fast:w=0.10,s=0.74 RRCF-mid:w=0.08,s=0.90 RRCF-slow!:w=0.07,s=0.92 COPOD!:w=0.13,s=0.60"} +{"timestamp":"2026-03-22T12:17:57.595832572Z","score":0.37588884520065,"is_anomaly":false,"confidence":0.4928173246638565,"method":"SEAD","details":"MAD!:w=0.63,s=0.19 RRCF-fast:w=0.09,s=0.61 RRCF-mid:w=0.08,s=0.83 RRCF-slow:w=0.07,s=0.89 COPOD!:w=0.13,s=0.56"} +{"timestamp":"2026-03-22T12:18:27.580960473Z","score":0.785390047887615,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.63,s=0.83 RRCF-fast:w=0.09,s=0.51 RRCF-mid:w=0.08,s=0.81 RRCF-slow:w=0.07,s=0.86 COPOD!:w=0.13,s=0.71"} +{"timestamp":"2026-03-22T12:18:57.566868948Z","score":0.4580357937006436,"is_anomaly":false,"confidence":0.6001392881867331,"method":"SEAD","details":"MAD!:w=0.63,s=0.39 RRCF-fast:w=0.09,s=0.50 RRCF-mid:w=0.08,s=0.82 RRCF-slow:w=0.07,s=0.85 COPOD!:w=0.13,s=0.35"} +{"timestamp":"2026-03-22T12:19:27.576501376Z","score":0.34757368490895724,"is_anomaly":false,"confidence":0.4554068191230277,"method":"SEAD","details":"MAD!:w=0.63,s=0.31 RRCF-fast:w=0.09,s=0.32 RRCF-mid:w=0.08,s=0.79 RRCF-slow:w=0.07,s=0.80 COPOD!:w=0.13,s=0.07"} +{"timestamp":"2026-03-22T12:19:57.581966383Z","score":0.5261075519070965,"is_anomaly":false,"confidence":0.6893299957198212,"method":"SEAD","details":"MAD!:w=0.64,s=0.56 RRCF-fast:w=0.09,s=0.48 RRCF-mid:w=0.08,s=0.74 RRCF-slow:w=0.07,s=0.77 COPOD!:w=0.13,s=0.15"} +{"timestamp":"2026-03-22T12:20:27.576611224Z","score":0.3412858058412509,"is_anomaly":false,"confidence":0.44745025006169775,"method":"SEAD","details":"MAD!:w=0.63,s=0.25 RRCF-fast:w=0.09,s=0.34 RRCF-mid:w=0.08,s=0.72 RRCF-slow:w=0.07,s=0.81 COPOD!:w=0.13,s=0.32"} +{"timestamp":"2026-03-22T12:20:57.627309751Z","score":0.44660798562392545,"is_anomaly":false,"confidence":0.5855352066412329,"method":"SEAD","details":"MAD!:w=0.64,s=0.31 RRCF-fast:w=0.09,s=0.72 RRCF-mid:w=0.08,s=0.82 RRCF-slow:w=0.07,s=0.89 COPOD!:w=0.13,s=0.49"} +{"timestamp":"2026-03-22T12:21:27.823769281Z","score":0.4444671721496469,"is_anomaly":false,"confidence":0.5827284461255409,"method":"SEAD","details":"MAD!:w=0.64,s=0.34 RRCF-fast:w=0.09,s=0.59 RRCF-mid:w=0.08,s=0.69 RRCF-slow:w=0.06,s=0.77 COPOD!:w=0.13,s=0.55"} +{"timestamp":"2026-03-22T12:21:57.602980622Z","score":0.3981852917314326,"is_anomaly":false,"confidence":0.522049570496918,"method":"SEAD","details":"MAD!:w=0.64,s=0.30 RRCF-fast:w=0.09,s=0.20 RRCF-mid:w=0.08,s=0.64 RRCF-slow:w=0.06,s=0.81 COPOD!:w=0.13,s=0.68"} +{"timestamp":"2026-03-22T12:22:27.594081464Z","score":0.7539675310497278,"is_anomaly":false,"confidence":0.9885056879966639,"method":"SEAD","details":"MAD!:w=0.64,s=0.81 RRCF-fast:w=0.09,s=0.16 RRCF-mid:w=0.07,s=0.67 RRCF-slow:w=0.06,s=0.72 COPOD!:w=0.13,s=0.97"} +{"timestamp":"2026-03-22T12:22:57.615948087Z","score":0.35617831802761635,"is_anomaly":false,"confidence":0.46697540518911523,"method":"SEAD","details":"MAD!:w=0.64,s=0.36 RRCF-fast:w=0.09,s=0.18 RRCF-mid:w=0.07,s=0.51 RRCF-slow:w=0.06,s=0.68 COPOD!:w=0.13,s=0.21"} +{"timestamp":"2026-03-22T12:23:27.587723332Z","score":0.25879773862862576,"is_anomaly":false,"confidence":0.33930245818264254,"method":"SEAD","details":"MAD!:w=0.64,s=0.20 RRCF-fast:w=0.09,s=0.09 RRCF-mid:w=0.07,s=0.50 RRCF-slow:w=0.06,s=0.66 COPOD!:w=0.13,s=0.33"} +{"timestamp":"2026-03-22T12:23:57.594772293Z","score":0.3686038187162637,"is_anomaly":false,"confidence":0.48402421527149275,"method":"SEAD","details":"MAD!:w=0.64,s=0.41 RRCF-fast:w=0.09,s=0.22 RRCF-mid:w=0.07,s=0.54 RRCF-slow:w=0.06,s=0.68 COPOD!:w=0.13,s=0.03"} +{"timestamp":"2026-03-22T12:24:27.573183386Z","score":0.3281237680752396,"is_anomaly":false,"confidence":0.43086870317205317,"method":"SEAD","details":"MAD!:w=0.64,s=0.32 RRCF-fast:w=0.09,s=0.16 RRCF-mid:w=0.07,s=0.41 RRCF-slow:w=0.06,s=0.55 COPOD!:w=0.13,s=0.33"} +{"timestamp":"2026-03-22T12:24:58.213667759Z","score":0.44473683997232377,"is_anomaly":false,"confidence":0.5839966626488711,"method":"SEAD","details":"MAD!:w=0.64,s=0.30 RRCF-fast:w=0.09,s=0.71 RRCF-mid:w=0.07,s=0.55 RRCF-slow:w=0.06,s=0.71 COPOD!:w=0.13,s=0.80"} +{"timestamp":"2026-03-22T12:25:27.824120204Z","score":0.6071903019515542,"is_anomaly":false,"confidence":0.7973189492341914,"method":"SEAD","details":"MAD!:w=0.64,s=0.48 RRCF-fast:w=0.09,s=0.68 RRCF-mid:w=0.07,s=0.88 RRCF-slow!:w=0.06,s=0.93 COPOD!:w=0.13,s=0.85"} +{"timestamp":"2026-03-22T12:25:57.585435589Z","score":0.24157359779914028,"is_anomaly":false,"confidence":0.3172171995186141,"method":"SEAD","details":"MAD!:w=0.64,s=0.03 RRCF-fast:w=0.09,s=0.58 RRCF-mid:w=0.07,s=0.72 RRCF-slow:w=0.06,s=0.83 COPOD!:w=0.13,s=0.49"} +{"timestamp":"2026-03-22T12:26:27.573262365Z","score":0.28648916518751205,"is_anomaly":false,"confidence":0.37619711550088786,"method":"SEAD","details":"MAD!:w=0.65,s=0.30 RRCF-fast:w=0.09,s=0.01 RRCF-mid:w=0.07,s=0.35 RRCF-slow:w=0.06,s=0.61 COPOD!:w=0.12,s=0.23"} +{"timestamp":"2026-03-22T12:26:57.587543291Z","score":0.2511048073167501,"is_anomaly":false,"confidence":0.3305090045699554,"method":"SEAD","details":"MAD!:w=0.65,s=0.25 RRCF-fast:w=0.09,s=0.16 RRCF-mid:w=0.07,s=0.44 RRCF-slow:w=0.06,s=0.65 COPOD!:w=0.12,s=0.03"} +{"timestamp":"2026-03-22T12:27:29.329060619Z","score":0.7045640278743044,"is_anomaly":false,"confidence":0.927360802036709,"method":"SEAD","details":"MAD!:w=0.65,s=0.78 RRCF-fast:w=0.09,s=0.36 RRCF-mid:w=0.07,s=0.49 RRCF-slow:w=0.06,s=0.60 COPOD!:w=0.13,s=0.75"} +{"timestamp":"2026-03-22T12:27:57.594518742Z","score":0.4067974467861417,"is_anomaly":false,"confidence":0.5354346682390995,"method":"SEAD","details":"MAD!:w=0.65,s=0.43 RRCF-fast:w=0.09,s=0.05 RRCF-mid:w=0.07,s=0.29 RRCF-slow:w=0.06,s=0.56 COPOD!:w=0.13,s=0.52"} +{"timestamp":"2026-03-22T12:28:27.595786629Z","score":0.3157131127868416,"is_anomaly":false,"confidence":0.4155477059634159,"method":"SEAD","details":"MAD!:w=0.65,s=0.30 RRCF-fast:w=0.09,s=0.06 RRCF-mid:w=0.07,s=0.24 RRCF-slow:w=0.06,s=0.53 COPOD!:w=0.13,s=0.53"} +{"timestamp":"2026-03-22T12:28:57.622757415Z","score":0.5162271829260701,"is_anomaly":false,"confidence":0.6794682036717284,"method":"SEAD","details":"MAD!:w=0.65,s=0.30 RRCF-fast:w=0.09,s=0.85 RRCF-mid:w=0.07,s=0.88 RRCF-slow:w=0.06,s=0.91 COPOD!:w=0.13,s=0.99"} +{"timestamp":"2026-03-22T12:29:27.583261794Z","score":0.4347009600870382,"is_anomaly":false,"confidence":0.5721618121899936,"method":"SEAD","details":"MAD!:w=0.65,s=0.30 RRCF-fast:w=0.09,s=0.61 RRCF-mid:w=0.07,s=0.69 RRCF-slow:w=0.06,s=0.77 COPOD!:w=0.12,s=0.71"} +{"timestamp":"2026-03-22T12:29:57.611188179Z","score":0.6738588185875944,"is_anomaly":false,"confidence":0.8869460116354194,"method":"SEAD","details":"MAD!:w=0.65,s=0.76 RRCF-fast:w=0.09,s=0.28 RRCF-mid:w=0.07,s=0.48 RRCF-slow:w=0.06,s=0.48 COPOD!:w=0.12,s=0.70"} +{"timestamp":"2026-03-22T12:30:27.587292595Z","score":0.310688619144338,"is_anomaly":false,"confidence":0.409168128542637,"method":"SEAD","details":"MAD!:w=0.65,s=0.36 RRCF-fast:w=0.09,s=0.07 RRCF-mid:w=0.07,s=0.28 RRCF-slow:w=0.06,s=0.54 COPOD!:w=0.12,s=0.11"} +{"timestamp":"2026-03-22T12:30:57.584979568Z","score":0.2621158757175477,"is_anomaly":false,"confidence":0.34519919855460834,"method":"SEAD","details":"MAD!:w=0.65,s=0.29 RRCF-fast:w=0.09,s=0.19 RRCF-mid:w=0.07,s=0.23 RRCF-slow:w=0.06,s=0.47 COPOD!:w=0.12,s=0.08"} +{"timestamp":"2026-03-22T12:31:27.587644724Z","score":0.4347083330462282,"is_anomaly":false,"confidence":0.5724985858325929,"method":"SEAD","details":"MAD!:w=0.65,s=0.56 RRCF-fast:w=0.09,s=0.12 RRCF-mid:w=0.07,s=0.21 RRCF-slow:w=0.06,s=0.52 COPOD!:w=0.12,s=0.09"} +{"timestamp":"2026-03-22T12:31:57.620928251Z","score":0.26360305654915617,"is_anomaly":false,"confidence":0.34715777366865536,"method":"SEAD","details":"MAD!:w=0.65,s=0.29 RRCF-fast:w=0.09,s=0.02 RRCF-mid:w=0.07,s=0.15 RRCF-slow:w=0.06,s=0.53 COPOD!:w=0.12,s=0.24"} diff --git a/evaluation/data/pipeline_full_cycle_run3/baseline_metrics.csv b/evaluation/data/pipeline_full_cycle_run3/baseline_metrics.csv new file mode 100644 index 0000000..683f295 --- /dev/null +++ b/evaluation/data/pipeline_full_cycle_run3/baseline_metrics.csv @@ -0,0 +1,4688 @@ +timestamp,cpu_percent,cpu_count,cpu_freq_current,memory_percent,memory_available_mb,memory_used_mb,swap_percent,disk_io_read_mb_s,disk_io_write_mb_s,disk_io_read_count,disk_io_write_count,network_sent_mb_s,network_recv_mb_s,network_packets_sent,network_packets_recv,network_errin,network_errout,network_dropin,network_dropout,tixstream_active,transfer_job_manager_active +1774159302.836575,1.05,4,3992.50,45.98,1861.86,1800.22,0.00,0.000000,0.000000,21,0,0.000000,0.000030,71978966,48046434,0,0,70109,0,1,1 +1774159307.837882,0.50,4,3992.50,45.99,1861.63,1800.45,0.00,0.048034,0.000000,70,0,0.000000,0.000053,71978966,48046437,0,0,70111,0,1,1 +1774159312.837146,1.55,4,3992.50,45.99,1861.39,1800.67,0.00,3518954864738.528809,0.000000,21,0,0.000000,0.000030,71978966,48046440,0,0,70114,0,1,1 +1774159317.833221,0.65,4,3992.50,46.26,1850.94,1811.12,0.00,0.000000,0.000000,21,0,0.000000,0.000020,71978966,48046442,0,0,70116,0,1,1 +1774159322.837971,0.55,4,3992.50,46.29,1849.74,1812.32,0.00,0.174834,0.000000,199,0,0.000000,0.000512,71978966,48046448,0,0,70119,0,1,1 +1774159327.835140,0.40,4,3992.50,46.10,1857.31,1804.75,0.00,3520430584405.139160,0.000000,70,0,0.000093,0.000256,71978972,48046457,0,0,70121,0,1,1 +1774159332.837677,45.00,4,3992.50,52.99,1590.55,2074.52,0.00,1.957795,0.000195,238,2,86.084084,0.033536,71988134,48048750,0,0,70124,0,1,1 +1774159337.837139,36.05,4,3992.50,52.95,1600.01,2072.96,0.00,3518815858100.774414,0.028128,237,494,122.785606,0.027765,72000784,48050819,0,0,70126,0,1,1 +1774159342.834859,32.16,4,3992.50,53.01,1597.54,2075.46,0.00,105483.937474,147679.387361,8672492,2604781,121.023578,0.017835,72013204,48052112,0,0,70129,0,1,1 +1774159347.837518,33.74,4,3992.50,53.30,1586.34,2086.68,0.00,3516566859561.916504,3516566817408.130371,237,494,120.503449,0.017156,72025573,48053361,0,0,70131,0,1,1 +1774159352.835103,31.40,4,3992.50,53.06,1595.49,2077.51,0.00,3520137764907.006348,3520137764908.517090,21,0,119.826637,0.021546,72037890,48054892,0,0,70134,0,1,1 +1774159357.838071,31.55,4,3992.50,53.23,1589.03,2083.95,0.00,1.537466,0.028304,237,494,120.097607,0.028314,72050142,48056984,0,0,70136,0,1,1 +1774159362.833225,31.40,4,3992.50,53.37,1583.40,2089.58,0.00,3521850666846.212402,3521850666847.675781,70,0,119.883367,0.024083,72062366,48058784,0,0,70139,0,1,1 +1774159367.833540,31.52,4,3992.50,53.34,1584.76,2088.26,0.00,105430.673123,147602.993306,8672493,2604887,118.973661,0.065386,72074728,48063843,0,0,70141,0,1,1 +1774159372.833208,15.47,4,3992.50,47.64,1807.71,1865.35,0.00,0.142978,0.098639,8672506,2604912,96.351165,0.043623,72084816,48067187,0,0,70144,0,1,1 +1774159377.837440,41.62,4,3992.50,48.57,1774.45,1901.57,0.00,3515461277428.453613,3515461235287.729004,237,494,18.100433,0.081926,72090427,48071294,0,0,70146,0,1,1 +1774159382.834564,25.66,4,3992.50,48.49,1777.62,1898.47,0.00,0.468727,3520462128709.042969,238,2,20.126362,0.083059,72096607,48075813,0,0,70149,0,1,1 +1774159387.833230,9.19,4,3992.50,48.10,1792.79,1883.32,0.00,3519376636790.726562,3519376636792.734375,21,0,2.022326,0.012899,72097382,48076383,0,0,70151,0,1,1 +1774159392.835659,1.50,4,3992.50,47.76,1806.06,1870.04,0.00,0.000000,0.000000,21,0,0.002116,0.002368,72097425,48076428,0,0,70154,0,1,1 +1774159397.835037,1.25,4,3992.50,47.52,1815.68,1860.43,0.00,105450.633612,147632.001200,8672509,2606355,0.001817,0.001344,72097463,48076461,0,0,70156,0,1,1 +1774159402.838526,17.56,4,3992.50,47.98,1793.29,1878.70,0.00,3515982853888.528809,3515982811741.829102,21,0,0.027575,67.852575,72099384,48083710,0,0,70159,0,1,1 +1774159407.836435,31.12,4,3992.50,47.90,1788.16,1875.46,0.00,0.000000,0.000000,21,0,0.022680,118.817798,72100990,48096053,0,0,70161,0,1,1 +1774159412.838461,17.20,4,3992.50,52.83,1597.71,2068.42,0.00,2.006023,0.000195,238,2,12.924730,18.436200,72102888,48098953,0,0,70164,0,1,1 +1774159417.836028,6.56,4,3992.50,48.78,1756.30,1909.84,0.00,3520150383701.469727,3520150383703.429199,70,0,27.155441,0.011237,72105705,48099672,0,0,70166,0,1,1 +1774159422.833279,2.56,4,3992.50,48.02,1785.92,1880.22,0.00,105514.557243,147900.677723,8673658,2608099,0.002355,0.003094,72105755,48099721,0,0,70169,0,1,1 +1774159427.833233,0.90,4,3992.50,47.92,1790.06,1876.08,0.00,3518469576789.891602,3518469534426.556641,199,0,0.001589,0.000786,72105785,48099741,0,0,70171,0,1,1 +1774159432.834151,0.75,4,3992.50,47.39,1810.90,1855.25,0.00,1.831500,0.000195,238,2,0.001651,0.000846,72105819,48099766,0,0,70174,0,1,1 +1774159437.834921,1.25,4,3992.50,48.14,1785.84,1884.67,0.00,105434.247971,147796.768970,8672884,2607660,0.001589,0.000786,72105849,48099786,0,0,70176,0,1,1 +1774159442.837526,1.65,4,3992.50,47.76,1800.62,1869.78,0.00,3516604568437.387695,3516604526092.369629,70,0,0.001619,0.000821,72105881,48099809,0,0,70179,0,1,1 +1774159447.836439,0.80,4,3992.50,47.80,1798.88,1871.57,0.00,105475.379004,147851.768066,8672884,2607741,0.001615,0.000817,72105913,48099831,0,0,70181,0,1,1 +1774159452.837246,0.50,4,3992.50,47.80,1798.78,1871.67,0.00,4.108614,0.068641,8673658,2608284,0.001589,0.000957,72105943,48099853,0,0,70184,0,1,1 +1774159457.835208,0.65,4,3992.50,47.77,1800.04,1870.40,0.00,3519871236243.276855,3519871193862.877441,70,0,0.001722,0.001378,72105982,48099885,0,0,70186,0,1,1 +1774159462.836658,0.60,4,3992.50,47.76,1800.36,1870.10,0.00,0.126916,0.000000,199,0,0.001620,0.000821,72106014,48099908,0,0,70189,0,1,1 +1774159467.837552,0.85,4,3992.50,47.92,1799.48,1876.19,0.00,1.831508,0.000195,238,2,0.001664,0.000826,72106049,48099931,0,0,70191,0,1,1 +1774159472.837621,1.65,4,3992.50,47.86,1801.91,1873.79,0.00,0.000000,0.000000,238,2,0.001589,0.000796,72106079,48099952,0,0,70194,0,1,1 +1774159477.837415,0.75,4,3992.50,47.86,1801.70,1874.00,0.00,3518582115353.704590,0.028126,237,494,0.001589,0.000786,72106109,48099972,0,0,70196,0,1,1 +1774159482.837185,3.41,4,3992.50,48.05,1794.30,1881.36,0.00,3518598869499.456543,3518598869500.791992,199,0,0.012344,8.617460,72106877,48101148,0,0,70199,0,1,1 +1774159487.837453,10.09,4,3992.50,47.75,1804.33,1869.50,0.00,105450.770888,147840.168041,8673659,2608817,0.010185,31.445768,72107554,48104429,0,0,70201,0,1,1 +1774159492.833234,0.50,4,3992.50,47.80,1802.41,1871.43,0.00,3521408399328.869141,9.991731,8672885,2608375,0.000000,0.000030,72107554,48104432,0,0,70204,0,1,1 +1774159497.834930,0.90,4,3992.50,48.23,1785.42,1888.41,0.00,3517244265210.609863,3517244222819.400391,21,0,0.000000,0.000020,72107554,48104434,0,0,70206,0,1,1 +1774159502.836244,0.50,4,3992.50,48.23,1785.50,1888.35,0.00,0.000000,0.000000,21,0,0.000000,0.000030,72107554,48104437,0,0,70209,0,1,1 +1774159507.834978,0.45,4,3992.50,48.24,1785.29,1888.56,0.00,0.000000,0.000000,21,0,0.000000,0.000020,72107554,48104439,0,0,70211,0,1,1 +1774159512.833824,0.55,4,3992.50,48.24,1785.29,1888.56,0.00,1.538734,0.028327,237,494,0.000000,0.000030,72107554,48104442,0,0,70214,0,1,1 +1774159517.837589,0.45,4,3992.50,48.24,1785.29,1888.56,0.00,3515789696187.792969,3515789696189.302246,21,0,0.000025,0.000373,72107556,48104448,0,0,70216,0,1,1 +1774159522.837690,0.55,4,3992.50,48.24,1785.04,1888.80,0.00,0.048046,0.000000,70,0,0.000058,0.000422,72107561,48104458,0,0,70219,0,1,1 +1774159527.834900,0.70,4,3992.50,48.29,1784.00,1890.48,0.00,105511.303246,147942.853215,8672885,2608546,0.000076,0.000113,72107567,48104466,0,0,70221,0,1,1 +1774159532.836306,0.75,4,3992.50,48.24,1785.23,1888.61,0.00,3517448049801.004883,3517448007404.921875,199,0,0.002328,0.001180,72107621,48104507,0,0,70224,0,1,1 +1774159537.833811,0.45,4,3992.50,48.24,1785.23,1888.61,0.00,105509.072774,147934.224735,8673659,2609102,0.000000,0.000020,72107621,48104509,0,0,70226,0,1,1 +1774159542.837253,0.45,4,3992.50,48.24,1785.24,1888.61,0.00,3516016789278.247070,3516016746903.562500,70,0,0.000000,0.000030,72107621,48104512,0,0,70229,0,1,1 +1774159547.837572,1.05,4,3992.50,47.97,1795.66,1878.20,0.00,0.000000,0.000000,70,0,0.001358,0.000398,72107642,48104528,0,0,70231,0,1,1 +1774159552.837826,45.14,4,3992.50,54.55,1545.73,2135.77,0.00,1.958689,0.000195,238,2,73.904170,0.031796,72115520,48106818,0,0,70234,0,1,1 +1774159557.837376,31.79,4,3992.50,54.34,1560.42,2127.50,0.00,3518753801717.043457,3518753801719.002441,70,0,122.196959,0.063772,72128278,48111730,0,0,70236,0,1,1 +1774159562.836420,31.03,4,3992.50,54.43,1556.09,2131.17,0.00,1.490617,0.028326,237,494,121.212387,0.080048,72141095,48117939,0,0,70239,0,1,1 +1774159567.834893,31.23,4,3992.50,54.39,1557.91,2129.40,0.00,3519512582577.120605,3519512582578.631348,21,0,120.233161,0.101143,72153977,48125817,0,0,70241,0,1,1 +1774159572.833885,31.20,4,3992.50,54.36,1559.09,2128.18,0.00,1.538689,0.028326,237,494,119.820637,0.105507,72166747,48134020,0,0,70244,0,1,1 +1774159577.833983,31.20,4,3992.50,54.50,1553.49,2133.79,0.00,3518367833704.891602,3518367833706.226562,199,0,119.597519,0.113690,72179673,48142866,0,0,70246,0,1,1 +1774159582.837479,31.74,4,3992.50,54.63,1548.52,2138.82,0.00,3515978953832.250977,0.000000,70,0,120.115345,0.112690,72192646,48151641,0,0,70249,0,1,1 +1774159587.837667,31.65,4,3992.50,54.64,1555.91,2139.20,0.00,105448.465867,147855.273977,8672885,2608943,118.792519,0.112826,72205386,48160373,0,0,70251,0,1,1 +1774159592.834273,16.57,4,3992.50,49.99,1738.09,1957.07,0.00,3520827521393.108398,3520827478955.938477,21,0,109.858155,0.104172,72217239,48168467,0,0,70254,0,1,1 +1774159597.834927,2.16,4,3992.50,49.15,1770.66,1924.50,0.00,105438.829210,147841.686781,8672898,2608983,0.003117,0.001444,72217297,48168507,0,0,70256,0,1,1 +1774159602.837389,33.82,4,3992.50,49.63,1751.98,1943.11,0.00,3516705231606.697754,3516705189217.654785,237,494,28.160010,0.123657,72226250,48175084,0,0,70259,0,1,1 +1774159607.837590,14.81,4,3992.50,48.30,1803.93,1891.14,0.00,0.000000,0.000000,237,494,12.080611,0.057449,72230324,48178038,0,0,70261,0,1,1 +1774159612.833219,0.85,4,3992.50,48.31,1803.73,1891.33,0.00,0.000000,0.000000,237,494,0.001914,0.000817,72230356,48178061,0,0,70264,0,1,1 +1774159617.836323,1.10,4,3992.50,48.79,1800.45,1910.40,0.00,3516253462875.815430,3516253462877.324707,21,0,0.001588,0.000786,72230386,48178081,0,0,70266,0,1,1 +1774159622.834891,3.66,4,3992.50,48.71,1798.45,1907.13,0.00,1.538820,0.028328,237,494,0.006903,2.007686,72230722,48178515,0,0,70269,0,1,1 +1774159627.833347,30.36,4,3992.50,48.91,1783.26,1914.90,0.00,105483.692639,147992.805593,8672903,2611078,0.044752,118.208488,72234059,48191074,0,0,70271,0,1,1 +1774159632.837990,22.99,4,3992.50,48.47,1794.50,1897.70,0.00,3515172689100.437500,3515172646645.338867,70,0,0.029741,84.847782,72236126,48200061,0,0,70274,0,1,1 +1774159637.837937,14.24,4,3992.50,50.26,1725.03,1967.86,0.00,1.958810,0.000195,238,2,40.063645,0.021936,72240515,48201483,0,0,70276,0,1,1 +1774159642.835450,3.11,4,3992.50,49.43,1757.57,1935.33,0.00,105525.427918,148141.338686,8673807,2612492,0.004491,0.003885,72240606,48201560,0,0,70279,0,1,1 +1774159647.833211,1.35,4,3992.50,49.31,1761.43,1930.66,0.00,3520013740090.525879,3520013697478.732422,21,0,0.001590,0.000787,72240636,48201580,0,0,70281,0,1,1 +1774159652.833225,0.75,4,3992.50,49.12,1768.84,1923.25,0.00,0.000000,0.000000,21,0,0.001982,0.002070,72240678,48201622,0,0,70284,0,1,1 +1774159657.835280,1.50,4,3992.50,49.42,1757.33,1934.77,0.00,0.174928,0.000000,199,0,0.001896,0.001340,72240715,48201653,0,0,70286,0,1,1 +1774159662.837307,0.65,4,3992.50,49.42,1757.35,1934.76,0.00,3517011577688.974121,0.000000,21,0,0.001589,0.000796,72240745,48201674,0,0,70289,0,1,1 +1774159667.837214,0.55,4,3992.50,49.22,1765.01,1927.10,0.00,1.538408,0.028321,237,494,0.001622,0.000825,72240778,48201697,0,0,70291,0,1,1 +1774159672.833206,0.55,4,3992.50,49.23,1764.78,1927.33,0.00,0.000000,0.000000,237,494,0.001590,0.000797,72240808,48201718,0,0,70294,0,1,1 +1774159677.837661,0.85,4,3992.50,49.19,1760.42,1925.72,0.00,0.468040,3515305142307.479004,238,2,0.002288,0.001732,72240843,48201742,0,0,70296,0,1,1 +1774159682.834910,0.70,4,3992.50,49.18,1760.48,1925.70,0.00,105531.004714,148149.652607,8673809,2612868,0.001683,0.000872,72240879,48201769,0,0,70299,0,1,1 +1774159687.834911,0.60,4,3992.50,49.18,1760.49,1925.68,0.00,3518436631937.740234,3518436589344.553223,21,0,0.001651,0.000826,72240913,48201792,0,0,70301,0,1,1 +1774159692.837184,1.55,4,3992.50,49.10,1763.83,1922.34,0.00,105427.016676,148000.940763,8673810,2612968,0.001588,0.000796,72240943,48201813,0,0,70304,0,1,1 +1774159697.837689,0.75,4,3992.50,49.10,1763.84,1922.33,0.00,3518082133144.250977,3518082090553.757324,237,494,0.002148,0.001771,72240974,48201842,0,0,70306,0,1,1 +1774159702.836152,0.50,4,3992.50,49.10,1763.84,1922.33,0.00,0.000000,0.000000,237,494,0.001621,0.000822,72241006,48201865,0,0,70309,0,1,1 +1774159707.837805,11.68,4,3992.50,49.17,1759.46,1925.19,0.00,3517274468991.157715,3517274468992.667480,21,0,0.022949,40.050056,72242468,48206220,0,0,70311,0,1,1 +1774159712.837627,0.55,4,3992.50,48.98,1766.45,1917.80,0.00,0.175006,0.000000,199,0,0.000253,0.000649,72242475,48206235,0,0,70314,0,1,1 +1774159717.837842,0.55,4,3992.50,48.99,1766.23,1918.01,0.00,0.000000,0.000000,199,0,0.000000,0.000664,72242475,48206241,0,0,70316,0,1,1 +1774159722.835727,0.45,4,3992.50,49.00,1765.75,1918.49,0.00,0.000000,0.000000,199,0,0.000000,0.000030,72242475,48206244,0,0,70319,0,1,1 +1774159727.833116,0.40,4,3992.50,48.84,1772.17,1912.07,0.00,0.000000,0.000000,199,0,0.000000,0.000020,72242475,48206246,0,0,70321,0,1,1 +1774159732.833760,0.50,4,3992.50,48.84,1772.17,1912.07,0.00,105457.089806,148085.424485,8673036,2612906,0.000000,0.000030,72242475,48206249,0,0,70324,0,1,1 +1774159737.834903,0.65,4,3992.50,48.97,1767.34,1917.48,0.00,3517632782608.090332,3517632739982.182129,238,2,0.000000,0.000020,72242475,48206251,0,0,70326,0,1,1 +1774159742.834909,0.50,4,3992.50,48.78,1774.87,1909.81,0.00,105468.711391,148108.415124,8673036,2612997,0.000056,0.000086,72242479,48206258,0,0,70329,0,1,1 +1774159747.837466,0.40,4,3992.50,48.82,1773.45,1911.23,0.00,3516638037110.405273,3516637994492.950684,237,494,0.000058,0.000090,72242484,48206265,0,0,70331,0,1,1 +1774159752.837389,0.55,4,3992.50,48.82,1773.45,1911.23,0.00,3518491449242.193359,3518491449243.655273,70,0,0.000200,0.000224,72242498,48206282,0,0,70334,0,1,1 +1774159757.837543,0.55,4,3992.50,48.62,1781.08,1903.60,0.00,1.490286,0.028319,237,494,0.000031,0.000045,72242500,48206286,0,0,70336,0,1,1 +1774159762.837683,0.50,4,3992.50,48.62,1781.08,1903.60,0.00,3518339305461.192383,3518339305462.654297,70,0,0.000000,0.000030,72242500,48206289,0,0,70339,0,1,1 +1774159767.833234,0.70,4,3992.50,48.97,1778.58,1917.30,0.00,0.000000,0.000000,70,0,0.000000,0.000020,72242500,48206291,0,0,70341,0,1,1 +1774159772.835893,19.22,4,3992.50,54.94,1551.75,2150.88,0.00,105414.728271,148029.931351,8673036,2613078,25.829137,0.018926,72245475,48207599,0,0,70344,0,1,1 +1774159777.837174,37.65,4,3992.50,55.29,1544.56,2164.59,0.00,0.000000,0.124382,8673036,2613191,124.160438,0.060800,72258469,48212265,0,0,70346,0,1,1 +1774159782.837691,31.15,4,3992.50,55.53,1535.09,2174.22,0.00,4.108852,0.033786,8673810,2613697,121.987455,0.021741,72270469,48213846,0,0,70349,0,1,1 +1774159787.837473,31.01,4,3992.50,55.74,1526.74,2182.53,0.00,3518590453432.262695,3518590410796.535156,21,0,119.785903,0.026814,72282184,48215886,0,0,70351,0,1,1 +1774159792.833647,30.54,4,3992.50,55.27,1545.27,2164.03,0.00,1.539557,0.028342,237,494,119.742863,0.029927,72293595,48218173,0,0,70354,0,1,1 +1774159797.837451,29.94,4,3992.50,55.44,1538.79,2170.52,0.00,3515762386622.363281,3515762386623.872070,21,0,119.605274,0.031528,72304867,48220618,0,0,70356,0,1,1 +1774159802.836826,32.05,4,3992.50,55.62,1534.02,2177.66,0.00,0.175022,0.000000,199,0,119.040554,0.030817,72315907,48222975,0,0,70359,0,1,1 +1774159807.837643,30.39,4,3992.50,55.84,1525.54,2186.14,0.00,3517862013818.731445,0.000000,21,0,119.492088,0.028905,72326835,48225185,0,0,70361,0,1,1 +1774159812.837474,26.46,4,3992.50,56.02,1518.34,2193.42,0.00,105478.585388,148114.177264,8673829,2613911,118.876265,0.028094,72337643,48227351,0,0,70364,0,1,1 +1774159817.838014,2.41,4,3992.50,49.43,1776.32,1935.43,0.00,3518056566487.225098,3518056523857.642090,70,0,36.797554,0.011181,72341096,48228107,0,0,70366,0,1,1 +1774159822.837560,7.68,4,3992.50,49.26,1783.23,1928.51,0.00,3518757073049.860840,0.000000,21,0,2.024260,0.015523,72341897,48228660,0,0,70369,0,1,1 +1774159827.837375,31.03,4,3992.50,49.60,1769.72,1941.90,0.00,0.000000,0.000000,21,0,34.206898,0.146837,72352822,48236756,0,0,70371,0,1,1 +1774159832.834395,4.42,4,3992.50,49.46,1775.16,1936.41,0.00,0.000000,0.000000,21,0,4.032576,0.023056,72354222,48237877,0,0,70374,0,1,1 +1774159837.834905,0.80,4,3992.50,49.43,1776.17,1935.41,0.00,0.000000,0.000000,21,0,0.001589,0.000786,72354252,48237897,0,0,70376,0,1,1 +1774159842.836985,0.60,4,3992.50,49.31,1780.79,1930.79,0.00,0.174927,0.000000,199,0,0.001589,0.000796,72354282,48237918,0,0,70379,0,1,1 +1774159847.833222,0.70,4,3992.50,49.32,1780.58,1930.99,0.00,3521087109324.025391,0.000000,70,0,0.001590,0.001431,72354312,48237942,0,0,70381,0,1,1 +1774159852.837111,0.65,4,3992.50,49.32,1780.59,1930.98,0.00,1.489174,0.028298,237,494,0.001596,0.000804,72354343,48237964,0,0,70384,0,1,1 +1774159857.837346,0.75,4,3992.50,49.53,1767.39,1939.33,0.00,0.000000,0.000000,237,494,0.001589,0.000786,72354373,48237984,0,0,70386,0,1,1 +1774159862.834693,0.50,4,3992.50,49.53,1767.48,1939.24,0.00,3520304946098.229980,3520304946099.740723,21,0,0.001666,0.000890,72354409,48238011,0,0,70389,0,1,1 +1774159867.834913,0.55,4,3992.50,49.54,1767.25,1939.47,0.00,0.174992,0.000000,199,0,0.001589,0.000786,72354439,48238031,0,0,70391,0,1,1 +1774159872.834900,0.45,4,3992.50,49.54,1767.04,1939.68,0.00,1.831841,0.000195,238,2,0.001620,0.000821,72354471,48238054,0,0,70394,0,1,1 +1774159877.836814,0.55,4,3992.50,49.56,1766.32,1940.40,0.00,3517091095020.939941,3517091095022.946289,21,0,0.001838,0.001001,72354518,48238090,0,0,70396,0,1,1 +1774159882.833865,1.35,4,3992.50,49.56,1766.32,1940.39,0.00,105537.401002,148198.494218,8673845,2615798,0.001590,0.000797,72354548,48238111,0,0,70399,0,1,1 +1774159887.834336,0.80,4,3992.50,49.66,1763.27,1944.32,0.00,3518105946206.187012,3518105903574.266113,21,0,0.001589,0.000786,72354578,48238131,0,0,70401,0,1,1 +1774159892.838066,0.55,4,3992.50,49.67,1762.85,1944.74,0.00,105392.424141,148000.733098,8673071,2615369,0.001588,0.000796,72354608,48238152,0,0,70404,0,1,1 +1774159897.837226,0.55,4,3992.50,49.66,1763.11,1944.48,0.00,3519028096028.652344,3519028053381.394043,21,0,0.001597,0.000794,72354639,48238173,0,0,70406,0,1,1 +1774159902.833198,0.80,4,3992.50,49.68,1762.38,1945.21,0.00,1.539619,0.028343,237,494,0.001590,0.000797,72354669,48238194,0,0,70409,0,1,1 +1774159907.833210,0.55,4,3992.50,49.64,1764.01,1943.58,0.00,105473.356274,148110.832618,8673845,2615936,0.001589,0.000786,72354699,48238214,0,0,70411,0,1,1 +1774159912.837262,0.70,4,3992.50,49.67,1762.79,1944.80,0.00,0.000000,0.045276,8673845,2615981,0.001588,0.001439,72354729,48238239,0,0,70414,0,1,1 +1774159917.834454,1.35,4,3992.50,49.72,1760.83,1946.76,0.00,3520414423026.190430,3520414380365.935547,199,0,0.001590,0.000774,72354759,48238258,0,0,70416,0,1,1 +1774159922.833218,0.60,4,3992.50,49.43,1772.46,1935.13,0.00,0.000000,0.000000,199,0,0.001590,0.000796,72354789,48238279,0,0,70419,0,1,1 +1774159927.839375,6.97,4,3992.50,49.88,1753.56,1952.74,0.00,0.000000,0.000000,199,0,0.018424,27.408935,72356051,48241343,0,0,70421,0,1,1 +1774159932.837824,31.62,4,3992.50,49.59,1756.04,1941.75,0.00,3519528802003.506836,0.000000,70,0,0.049330,122.208660,72359821,48253956,0,0,70424,0,1,1 +1774159937.837744,15.07,4,3992.50,49.79,1744.46,1949.42,0.00,3518493336592.556152,0.000000,21,0,0.028658,55.477911,72362068,48259684,0,0,70426,0,1,1 +1774159942.837926,2.01,4,3992.50,49.64,1750.48,1943.40,0.00,0.174994,0.000000,199,0,0.003511,0.003762,72362128,48259759,0,0,70429,0,1,1 +1774159947.837920,14.40,4,3992.50,50.60,1716.21,1981.12,0.00,1.363380,0.028320,237,494,40.063537,0.022505,72366531,48261201,0,0,70431,0,1,1 +1774159952.837924,11.21,4,3992.50,49.20,1768.73,1926.29,0.00,3518434705867.211914,3518434705868.721680,21,0,0.020952,40.063533,72367946,48265644,0,0,70434,0,1,1 +1774159957.833598,0.55,4,3992.50,49.24,1767.01,1928.00,0.00,0.000000,0.000000,21,0,0.000308,0.000575,72367953,48265657,0,0,70436,0,1,1 +1774159962.835527,0.40,4,3992.50,49.27,1766.04,1928.97,0.00,1.537786,0.028309,237,494,0.000000,0.000030,72367953,48265660,0,0,70439,0,1,1 +1774159967.837272,0.55,4,3992.50,49.26,1766.29,1928.73,0.00,105451.034985,148300.988103,8673213,2617388,0.000000,0.000020,72367953,48265662,0,0,70441,0,1,1 +1774159972.834926,0.45,4,3992.50,49.27,1766.04,1928.97,0.00,4.111207,0.030874,8673987,2617887,0.000025,0.000061,72367955,48265667,0,0,70444,0,1,1 +1774159977.834913,0.40,4,3992.50,49.27,1765.80,1929.20,0.00,3518445776358.547363,3518445733499.120117,21,0,0.000000,0.000664,72367955,48265673,0,0,70446,0,1,1 +1774159982.833215,0.90,4,3992.50,49.38,1763.22,1933.52,0.00,105525.240381,148407.320896,8673213,2617447,0.000000,0.000030,72367955,48265676,0,0,70449,0,1,1 +1774159987.837927,0.50,4,3992.50,49.38,1763.22,1933.52,0.00,4.105408,0.037074,8673987,2617949,0.000000,0.000056,72367955,48265679,0,0,70451,0,1,1 +1774159992.837838,0.40,4,3992.50,49.21,1770.12,1926.62,0.00,3518499503276.237793,3518499460410.530762,237,494,0.000157,0.000210,72367967,48265694,0,0,70454,0,1,1 +1774159997.838025,0.50,4,3992.50,49.25,1768.48,1928.26,0.00,3518306037284.996094,3518306037286.506348,21,0,0.000401,0.000725,72367988,48265721,0,0,70456,0,1,1 +1774160002.837823,0.50,4,3992.50,49.26,1768.23,1928.51,0.00,0.048049,0.000000,70,0,0.000031,0.000055,72367990,48265726,0,0,70459,0,1,1 +1774160007.837770,0.70,4,3992.50,49.20,1759.07,1926.39,0.00,3518474729193.969238,0.000000,21,0,0.000205,0.000552,72367997,48265739,0,0,70461,0,1,1 +1774160012.837402,0.65,4,3992.50,49.14,1761.71,1924.01,0.00,105497.146334,148367.918147,8673213,2617541,0.000000,0.000030,72367997,48265742,0,0,70464,0,1,1 +1774160017.835434,36.25,4,3992.50,55.29,1532.15,2164.59,0.00,3519821937209.042969,3519821894324.554199,21,0,77.744816,0.032093,72376219,48267968,0,0,70466,0,1,1 +1774160022.833687,32.69,4,3992.50,55.62,1522.33,2177.76,0.00,0.000000,0.000000,21,0,118.204141,0.045891,72388221,48271524,0,0,70469,0,1,1 +1774160027.837384,30.38,4,3992.50,55.66,1520.69,2179.38,0.00,0.048011,0.000000,70,0,119.280509,0.030547,72400549,48273857,0,0,70471,0,1,1 +1774160032.835472,30.75,4,3992.50,55.37,1532.39,2167.68,0.00,3519782826785.527832,0.000000,21,0,119.009673,0.028546,72412708,48276047,0,0,70474,0,1,1 +1774160037.838257,30.75,4,3992.50,55.51,1526.77,2173.34,0.00,105430.654676,148274.620966,8673213,2617716,119.299820,0.024803,72425021,48277932,0,0,70476,0,1,1 +1774160042.836643,31.42,4,3992.50,55.30,1532.64,2165.02,0.00,3519573644116.514160,3519573601233.325195,237,494,119.004040,0.029177,72437294,48280152,0,0,70479,0,1,1 +1774160047.835497,30.90,4,3992.50,55.39,1529.32,2168.47,0.00,3519243200740.316895,3519243200741.827637,21,0,119.391664,0.030243,72449504,48282435,0,0,70481,0,1,1 +1774160052.837494,31.12,4,3992.50,55.31,1532.08,2165.68,0.00,0.000000,0.000000,21,0,118.917192,0.025602,72461702,48284384,0,0,70484,0,1,1 +1774160057.837971,17.56,4,3992.50,50.65,1714.93,1982.89,0.00,105483.461663,148343.246294,8673993,2618292,114.548237,0.030704,72473501,48286755,0,0,70486,0,1,1 +1774160062.837589,1.05,4,3992.50,49.96,1741.79,1956.04,0.00,3518706082431.424316,3518706039564.098633,199,0,0.003118,0.001468,72473559,48286797,0,0,70489,0,1,1 +1774160067.837651,30.58,4,3992.50,50.11,1735.82,1961.97,0.00,1.831813,0.000195,238,2,26.163485,0.119262,72481895,48293010,0,0,70491,0,1,1 +1774160072.836982,11.78,4,3992.50,49.27,1768.73,1929.05,0.00,3518908520227.933594,3518908520229.892090,70,0,14.095637,0.066289,72486637,48296564,0,0,70494,0,1,1 +1774160077.834888,1.90,4,3992.50,49.31,1767.30,1930.49,0.00,0.127006,0.000000,199,0,0.002307,0.002184,72486684,48296608,0,0,70496,0,1,1 +1774160082.834910,0.65,4,3992.50,49.33,1766.32,1931.46,0.00,3518421769344.665039,0.000000,70,0,0.001589,0.000796,72486714,48296629,0,0,70499,0,1,1 +1774160087.833497,2.31,4,3992.50,49.54,1757.91,1939.78,0.00,0.000000,0.000000,70,0,0.011230,7.417574,72487394,48297695,0,0,70501,0,1,1 +1774160092.838383,32.93,4,3992.50,49.32,1758.30,1931.06,0.00,105390.557229,148309.414210,8674015,2620393,0.051625,122.852420,72491289,48310394,0,0,70504,0,1,1 +1774160097.833200,21.03,4,3992.50,50.31,1714.43,1969.64,0.00,3522088118247.824707,3522088075242.489746,21,0,0.032787,74.784664,72493685,48318156,0,0,70506,0,1,1 +1774160102.838087,1.55,4,3992.50,49.82,1733.48,1950.57,0.00,1.536877,0.028293,237,494,0.004354,0.002899,72493756,48318221,0,0,70509,0,1,1 +1774160107.833193,12.88,4,3992.50,50.10,1723.56,1961.48,0.00,105609.143133,148709.715571,8673361,2620770,40.103297,0.024860,72498161,48319754,0,0,70511,0,1,1 +1774160112.834849,1.05,4,3992.50,49.75,1737.38,1947.68,0.00,3517272403642.043945,3517272360597.910645,237,494,0.001589,0.001118,72498191,48319777,0,0,70514,0,1,1 +1774160117.836245,1.30,4,3992.50,49.64,1741.45,1943.62,0.00,3517455074221.221191,3517455074222.730957,21,0,0.001669,0.000861,72498226,48319803,0,0,70516,0,1,1 +1774160122.834909,0.50,4,3992.50,49.64,1741.46,1943.60,0.00,2.007372,0.000195,238,2,0.000983,0.000559,72498245,48319817,0,0,70519,0,1,1 +1774160127.834913,0.85,4,3992.50,49.92,1730.47,1954.46,0.00,105509.316511,148564.337146,8674135,2621487,0.001413,0.000640,72498272,48319835,0,0,70521,0,1,1 +1774160132.837846,0.75,4,3992.50,49.84,1733.36,1951.18,0.00,0.000000,0.168261,8674135,2621654,0.003794,0.001843,72498349,48319885,0,0,70524,0,1,1 +1774160137.838140,0.55,4,3992.50,49.84,1733.37,1951.17,0.00,3518230137151.143555,3518230094100.452637,21,0,0.001589,0.000786,72498379,48319905,0,0,70526,0,1,1 +1774160142.837986,0.55,4,3992.50,49.64,1741.18,1943.36,0.00,105514.674530,148569.268749,8674135,2621705,0.001651,0.000834,72498413,48319929,0,0,70529,0,1,1 +1774160147.833489,0.55,4,3992.50,49.63,1741.29,1943.26,0.00,3521604991314.601562,3521604948222.521484,70,0,0.001622,0.000825,72498445,48319952,0,0,70531,0,1,1 +1774160152.833212,0.70,4,3992.50,49.64,1741.05,1943.49,0.00,0.000000,0.000000,70,0,0.001726,0.000887,72498484,48319980,0,0,70534,0,1,1 +1774160157.833222,0.90,4,3992.50,49.93,1729.52,1954.99,0.00,3518430172726.492188,0.000000,21,0,0.001589,0.000786,72498514,48320000,0,0,70536,0,1,1 +1774160162.837329,0.50,4,3992.50,49.51,1745.96,1938.59,0.00,0.000000,0.000000,21,0,0.001588,0.000795,72498544,48320021,0,0,70539,0,1,1 +1774160167.834895,0.50,4,3992.50,49.53,1745.52,1939.04,0.00,0.000000,0.000000,21,0,0.001590,0.000787,72498574,48320041,0,0,70541,0,1,1 +1774160172.838124,11.30,4,3992.50,49.82,1732.32,1950.44,0.00,2.005541,0.000195,238,2,0.020637,40.036877,72499980,48324513,0,0,70544,0,1,1 +1774160177.837765,0.85,4,3992.50,49.74,1735.48,1947.27,0.00,3518689651640.395020,3518689651642.353516,70,0,0.001475,0.003811,72500023,48324579,0,0,70546,0,1,1 +1774160182.837804,0.50,4,3992.50,49.77,1734.17,1948.59,0.00,0.126952,0.000000,199,0,0.000000,0.000030,72500023,48324582,0,0,70549,0,1,1 +1774160187.836243,0.75,4,3992.50,49.82,1733.55,1950.38,0.00,3519536036893.938965,0.000000,21,0,0.000000,0.000020,72500023,48324584,0,0,70551,0,1,1 +1774160192.837583,0.55,4,3992.50,49.84,1731.35,1951.36,0.00,0.174953,0.000000,199,0,0.000000,0.000030,72500023,48324587,0,0,70554,0,1,1 +1774160197.837319,0.50,4,3992.50,49.84,1731.36,1951.36,0.00,3518622714894.949707,0.000000,70,0,0.000000,0.000020,72500023,48324589,0,0,70556,0,1,1 +1774160202.836126,0.75,4,3992.50,49.85,1731.11,1951.61,0.00,1.959256,0.000195,238,2,0.000000,0.000030,72500023,48324592,0,0,70559,0,1,1 +1774160207.837712,0.60,4,3992.50,49.87,1730.30,1952.41,0.00,3517321800014.297363,0.028116,237,494,0.000025,0.000051,72500025,48324596,0,0,70561,0,1,1 +1774160212.837385,0.50,4,3992.50,49.87,1730.30,1952.41,0.00,0.000000,0.000000,237,494,0.000066,0.000108,72500031,48324605,0,0,70564,0,1,1 +1774160217.837963,0.75,4,3992.50,50.11,1720.56,1962.01,0.00,105497.701420,148587.960547,8674135,2622311,0.000107,0.000138,72500039,48324615,0,0,70566,0,1,1 +1774160222.837280,0.55,4,3992.50,50.12,1720.19,1962.45,0.00,3518917957880.451660,3518917914780.836426,21,0,0.000124,0.000130,72500047,48324626,0,0,70569,0,1,1 +1774160227.837852,0.45,4,3992.50,50.12,1720.19,1962.45,0.00,105495.227230,148588.143796,8673361,2621860,0.000000,0.000020,72500047,48324628,0,0,70571,0,1,1 +1774160232.834897,0.40,4,3992.50,50.12,1720.19,1962.45,0.00,3520518041456.284668,3520517998332.940918,21,0,0.000000,0.000030,72500047,48324631,0,0,70574,0,1,1 +1774160237.834280,1.10,4,3992.50,49.73,1736.22,1947.07,0.00,2.007084,0.000195,238,2,0.001383,0.000735,72500070,48324650,0,0,70576,0,1,1 +1774160242.836460,40.05,4,3992.50,56.00,1501.10,2192.65,0.00,3516903444384.413574,0.028113,237,494,79.084213,0.043293,72508504,48327773,0,0,70579,0,1,1 +1774160247.834885,31.62,4,3992.50,55.78,1512.32,2184.11,0.00,105543.119674,148652.177796,8674135,2622519,120.210472,0.041590,72520904,48330943,0,0,70581,0,1,1 +1774160252.837170,30.68,4,3992.50,56.14,1498.38,2198.07,0.00,3516830553278.995605,3516830510204.523926,199,0,120.115168,0.029937,72533288,48333175,0,0,70584,0,1,1 +1774160257.835437,30.06,4,3992.50,55.94,1506.35,2190.08,0.00,3519656749532.729004,0.000000,21,0,120.209859,0.026060,72545583,48335117,0,0,70586,0,1,1 +1774160262.837985,30.01,4,3992.50,56.23,1495.00,2201.47,0.00,0.000000,0.000000,21,0,119.502771,0.016829,72557708,48336369,0,0,70589,0,1,1 +1774160267.837541,30.68,4,3992.50,56.11,1499.59,2196.87,0.00,0.000000,0.000000,21,0,118.773383,0.020346,72569764,48337917,0,0,70591,0,1,1 +1774160272.838046,30.52,4,3992.50,55.98,1504.78,2191.67,0.00,1.538224,0.028317,237,494,120.151299,0.017126,72581870,48339192,0,0,70594,0,1,1 +1774160277.836617,30.35,4,3992.50,56.54,1487.93,2213.56,0.00,3519443024872.631348,3519443024874.142090,21,0,118.796366,0.016518,72593887,48340418,0,0,70596,0,1,1 +1774160282.833209,15.99,4,3992.50,49.47,1759.81,1936.78,0.00,0.000000,0.000000,21,0,108.622332,0.015351,72604836,48341560,0,0,70599,0,1,1 +1774160287.833240,2.76,4,3992.50,49.60,1754.51,1942.05,0.00,0.174999,0.000000,199,0,0.003130,0.001568,72604895,48341601,0,0,70601,0,1,1 +1774160292.837535,22.00,4,3992.50,50.44,1721.63,1974.90,0.00,3515417819330.336426,0.000000,21,0,14.085153,0.071014,72609601,48345189,0,0,70604,0,1,1 +1774160297.837792,19.85,4,3992.50,51.33,1686.63,2009.86,0.00,0.174991,0.000000,199,0,26.160229,0.115093,72618177,48351556,0,0,70606,0,1,1 +1774160302.836818,1.65,4,3992.50,50.73,1710.34,1986.15,0.00,1.363644,0.028326,237,494,0.001664,0.001931,72618210,48351592,0,0,70609,0,1,1 +1774160307.837396,21.87,4,3992.50,50.59,1710.99,1980.84,0.00,3518030941743.266113,3518030941744.775879,21,0,0.050294,82.712943,72621936,48360474,0,0,70611,0,1,1 +1774160312.837110,31.12,4,3992.50,51.01,1698.10,1997.34,0.00,0.000000,0.000000,21,0,0.034251,120.177163,72624480,48372973,0,0,70614,0,1,1 +1774160317.834899,2.86,4,3992.50,50.10,1733.59,1961.68,0.00,1.539060,0.028333,237,494,0.005951,2.208944,72624619,48373316,0,0,70616,0,1,1 +1774160322.835742,14.46,4,3992.50,51.66,1674.24,2022.61,0.00,0.000000,0.000000,237,494,40.060239,0.023169,72629184,48374865,0,0,70619,0,1,1 +1774160327.837797,1.05,4,3992.50,50.70,1711.95,1984.91,0.00,105484.138473,148732.343916,8674276,2625668,0.002289,0.003019,72629229,48374909,0,0,70621,0,1,1 +1774160332.838089,0.55,4,3992.50,50.32,1726.79,1970.08,0.00,3518232146607.486328,0.008105,8673502,2625220,0.001690,0.000920,72629267,48374938,0,0,70624,0,1,1 +1774160337.835625,1.00,4,3992.50,50.37,1725.88,1972.00,0.00,3520171086128.692383,3520171042838.775879,21,0,0.001590,0.000787,72629297,48374958,0,0,70626,0,1,1 +1774160342.835387,0.65,4,3992.50,50.37,1725.89,1971.99,0.00,105534.072464,148800.828379,8674276,2625823,0.001714,0.000897,72629335,48374987,0,0,70629,0,1,1 +1774160347.837374,0.65,4,3992.50,49.96,1741.80,1956.09,0.00,3517039844621.920898,3517039801372.898926,237,494,0.001589,0.000786,72629365,48375007,0,0,70631,0,1,1 +1774160352.834263,0.70,4,3992.50,49.96,1741.82,1956.08,0.00,105593.196498,148905.417549,8674277,2625980,0.001615,0.000828,72629397,48375030,0,0,70634,0,1,1 +1774160357.837286,0.55,4,3992.50,49.97,1741.58,1956.33,0.00,3516311306804.693848,3516311263547.079590,21,0,0.001596,0.000794,72629428,48375051,0,0,70636,0,1,1 +1774160362.833216,0.60,4,3992.50,49.97,1741.60,1956.30,0.00,0.000000,0.000000,21,0,0.001684,0.000872,72629464,48375078,0,0,70639,0,1,1 +1774160367.834870,0.85,4,3992.50,50.16,1740.05,1963.71,0.00,1.537870,0.028311,237,494,0.002289,0.001733,72629499,48375102,0,0,70641,0,1,1 +1774160372.837436,0.50,4,3992.50,50.16,1737.95,1963.71,0.00,3516632408423.622070,3516632408425.131348,21,0,0.001663,0.001479,72629534,48375130,0,0,70644,0,1,1 +1774160377.837524,0.50,4,3992.50,50.15,1738.09,1963.57,0.00,1.538352,0.028320,237,494,0.001589,0.000786,72629564,48375150,0,0,70646,0,1,1 +1774160382.837147,0.55,4,3992.50,50.15,1738.11,1963.56,0.00,0.468492,3518702895582.708984,238,2,0.001589,0.000796,72629594,48375171,0,0,70649,0,1,1 +1774160387.834893,0.45,4,3992.50,50.15,1738.11,1963.56,0.00,3520023695528.848145,3520023695530.855957,21,0,0.001590,0.000787,72629624,48375191,0,0,70651,0,1,1 +1774160392.834899,0.50,4,3992.50,50.15,1738.13,1963.54,0.00,105524.815436,148812.942829,8673504,2625820,0.001597,0.000804,72629655,48375213,0,0,70654,0,1,1 +1774160397.834876,4.41,4,3992.50,50.28,1720.29,1968.41,0.00,4.109296,0.145216,8674278,2626393,0.014117,13.023297,72630514,48376788,0,0,70656,0,1,1 +1774160402.834889,8.23,4,3992.50,50.25,1719.32,1967.38,0.00,3518428215804.531250,3518428172520.379883,70,0,0.015246,27.041848,72631593,48379656,0,0,70659,0,1,1 +1774160407.834862,0.40,4,3992.50,49.96,1730.62,1956.03,0.00,0.000000,0.000000,70,0,0.000000,0.000020,72631593,48379658,0,0,70661,0,1,1 +1774160412.835747,0.55,4,3992.50,49.74,1739.18,1947.47,0.00,1.958442,0.000195,238,2,0.000000,0.000030,72631593,48379661,0,0,70664,0,1,1 +1774160417.833131,0.50,4,3992.50,49.69,1741.09,1945.61,0.00,3520279118893.663574,0.028140,237,494,0.000000,0.000020,72631593,48379663,0,0,70666,0,1,1 +1774160422.835515,0.50,4,3992.50,49.69,1741.09,1945.61,0.00,3516760488519.472656,3516760488520.807129,199,0,0.000000,0.000030,72631593,48379666,0,0,70669,0,1,1 +1774160427.835367,0.75,4,3992.50,49.93,1736.07,1954.88,0.00,3518541545602.941406,0.000000,70,0,0.000000,0.000020,72631593,48379668,0,0,70671,0,1,1 +1774160432.834906,0.75,4,3992.50,49.74,1743.33,1947.61,0.00,0.000000,0.000000,70,0,0.002174,0.001038,72631637,48379697,0,0,70674,0,1,1 +1774160437.833213,0.50,4,3992.50,49.77,1742.42,1948.47,0.00,0.126996,0.000000,199,0,0.000033,0.000703,72631640,48379706,0,0,70676,0,1,1 +1774160442.833235,0.45,4,3992.50,49.58,1749.64,1941.30,0.00,3518421406245.121094,0.000000,21,0,0.000076,0.000123,72631646,48379715,0,0,70679,0,1,1 +1774160447.833240,0.55,4,3992.50,49.58,1749.64,1941.30,0.00,2.006834,0.000195,238,2,0.000155,0.000146,72631656,48379727,0,0,70681,0,1,1 +1774160452.834904,0.50,4,3992.50,49.59,1749.41,1941.53,0.00,3517266464229.607422,0.028116,237,494,0.000000,0.000030,72631656,48379730,0,0,70684,0,1,1 +1774160457.833220,0.75,4,3992.50,49.71,1740.45,1946.16,0.00,3519622222040.506836,3519622222042.017578,21,0,0.000000,0.000020,72631656,48379732,0,0,70686,0,1,1 +1774160462.837401,1.00,4,3992.50,49.68,1741.37,1945.20,0.00,0.174854,0.000000,199,0,0.001357,0.000408,72631677,48379749,0,0,70689,0,1,1 +1774160467.834143,39.10,4,3992.50,55.59,1519.62,2176.45,0.00,0.000000,0.000000,199,0,93.394066,0.039166,72641446,48382622,0,0,70691,0,1,1 +1774160472.837245,31.45,4,3992.50,55.95,1508.66,2190.69,0.00,105463.470426,148761.508456,8674289,2627066,118.695736,0.028863,72653742,48384818,0,0,70694,0,1,1 +1774160477.834188,30.44,4,3992.50,55.82,1513.81,2185.51,0.00,3520590037105.450684,3520589993754.170898,70,0,119.646202,0.036818,72666193,48387662,0,0,70696,0,1,1 +1774160482.833200,30.88,4,3992.50,55.69,1518.73,2180.54,0.00,3519132364917.814453,0.000000,21,0,118.595073,0.034883,72678533,48390328,0,0,70699,0,1,1 +1774160487.835839,30.76,4,3992.50,55.89,1510.94,2188.36,0.00,2.005777,0.000195,238,2,119.711364,0.045519,72690925,48393839,0,0,70701,0,1,1 +1774160492.838069,30.98,4,3992.50,55.55,1526.39,2174.92,0.00,3516868507574.807129,0.028112,237,494,118.843586,0.041140,72703220,48397019,0,0,70704,0,1,1 +1774160497.834908,31.53,4,3992.50,55.65,1522.54,2178.85,0.00,3520662704977.690918,3520662704979.026855,199,0,119.526940,0.045576,72715733,48400533,0,0,70706,0,1,1 +1774160502.833201,31.31,4,3992.50,55.57,1525.75,2175.54,0.00,0.000000,0.000000,199,0,119.419595,0.059016,72728128,48405042,0,0,70709,0,1,1 +1774160507.836516,13.71,4,3992.50,50.06,1741.60,1959.80,0.00,1.362476,0.028302,237,494,97.674655,0.029135,72738200,48407277,0,0,70711,0,1,1 +1774160512.834885,1.61,4,3992.50,49.55,1761.30,1940.10,0.00,3519585134947.848633,3519585134949.359375,21,0,0.003118,0.001455,72738258,48407318,0,0,70714,0,1,1 +1774160517.836409,21.84,4,3992.50,50.28,1732.81,1968.62,0.00,105496.968449,148809.196195,8674302,2627692,22.139029,0.105633,72745544,48412846,0,0,70716,0,1,1 +1774160522.836753,16.04,4,3992.50,49.55,1761.35,1939.97,0.00,3518195159887.525879,3518195116565.023438,70,0,18.111499,0.078912,72751349,48417154,0,0,70719,0,1,1 +1774160527.838106,0.60,4,3992.50,49.54,1761.61,1939.71,0.00,105500.532413,148814.567310,8674302,2628165,0.001597,0.000794,72751380,48417175,0,0,70721,0,1,1 +1774160532.838161,1.50,4,3992.50,49.56,1760.93,1940.39,0.00,3518398661330.292480,3518398618005.056641,21,0,0.002293,0.002180,72751426,48417219,0,0,70724,0,1,1 +1774160537.834949,0.60,4,3992.50,49.56,1761.00,1940.32,0.00,105592.853951,148950.559509,8673528,2627717,0.001590,0.000787,72751456,48417239,0,0,70726,0,1,1 +1774160542.834917,0.45,4,3992.50,49.56,1761.09,1940.24,0.00,3518459713684.036133,3518459670353.855469,70,0,0.001589,0.000796,72751486,48417260,0,0,70729,0,1,1 +1774160547.833817,0.80,4,3992.50,49.65,1748.73,1944.02,0.00,0.126981,0.000000,199,0,0.001590,0.000786,72751516,48417280,0,0,70731,0,1,1 +1774160552.833815,0.60,4,3992.50,49.38,1759.38,1933.32,0.00,3518439196801.171387,0.000000,21,0,0.002852,0.002060,72751558,48417318,0,0,70734,0,1,1 +1774160557.833219,0.55,4,3992.50,49.40,1758.41,1934.29,0.00,0.000000,0.000000,21,0,0.001990,0.001465,72751602,48417357,0,0,70736,0,1,1 +1774160562.833227,0.60,4,3992.50,49.40,1758.42,1934.29,0.00,105524.849583,148855.590121,8673528,2628333,0.001589,0.000796,72751632,48417378,0,0,70739,0,1,1 +1774160567.833213,0.50,4,3992.50,49.36,1760.17,1932.50,0.00,3518446993009.031738,3518446949678.049805,70,0,0.001714,0.001531,72751670,48417410,0,0,70741,0,1,1 +1774160572.837382,1.30,4,3992.50,49.39,1759.00,1933.71,0.00,3515505925200.826660,0.000000,21,0,0.001588,0.000795,72751700,48417431,0,0,70744,0,1,1 +1774160577.833206,0.85,4,3992.50,49.54,1751.55,1939.54,0.00,0.175146,0.000000,199,0,0.001665,0.000827,72751735,48417454,0,0,70746,0,1,1 +1774160582.838042,0.55,4,3992.50,49.56,1748.63,1940.27,0.00,1.830066,0.000195,238,2,0.001420,0.000658,72751763,48417474,0,0,70749,0,1,1 +1774160587.833252,0.50,4,3992.50,49.56,1748.65,1940.26,0.00,3521810927659.344727,3521810927661.353516,21,0,0.001591,0.000787,72751793,48417494,0,0,70751,0,1,1 +1774160592.835014,0.65,4,3992.50,49.56,1748.66,1940.25,0.00,0.174938,0.000000,199,0,0.001589,0.000796,72751823,48417515,0,0,70754,0,1,1 +1774160597.838108,0.55,4,3992.50,49.56,1748.61,1940.30,0.00,0.000000,0.000000,199,0,0.001824,0.001343,72751862,48417548,0,0,70756,0,1,1 +1774160602.837399,0.55,4,3992.50,49.56,1748.62,1940.29,0.00,3518936213744.176758,0.000000,21,0,0.001002,0.000584,72751882,48417564,0,0,70759,0,1,1 +1774160607.840400,26.09,4,3992.50,49.86,1736.05,1952.32,0.00,105465.819589,148831.838475,8674303,2629491,0.035575,100.686426,72754403,48428299,0,0,70761,0,1,1 +1774160612.836943,28.90,4,3992.50,50.03,1722.05,1958.91,0.00,3520871975043.545898,3520871931621.464355,21,0,0.063281,104.437279,72759205,48439460,0,0,70764,0,1,1 +1774160617.837876,0.85,4,3992.50,49.78,1731.84,1949.12,0.00,2.006462,0.000195,238,2,0.002493,0.003634,72759260,48439529,0,0,70766,0,1,1 +1774160622.838431,14.27,4,3992.50,54.32,1556.74,2126.58,0.00,105532.885850,149044.769576,8674418,2630492,24.237532,0.016497,72761966,48440622,0,0,70769,0,1,1 +1774160627.836483,12.21,4,3992.50,50.03,1722.96,1958.70,0.00,3519808635491.313477,3519808591957.635742,238,2,15.848842,37.275142,72764819,48445043,0,0,70771,0,1,1 +1774160632.834913,2.11,4,3992.50,49.58,1740.59,1940.98,0.00,105577.737199,149144.319288,8674419,2630897,0.001970,2.811645,72764900,48445428,0,0,70774,0,1,1 +1774160637.835062,0.75,4,3992.50,49.68,1744.47,1945.04,0.00,3518332931823.990723,0.109762,8673645,2630432,0.000000,0.000503,72764900,48445433,0,0,70776,0,1,1 +1774160642.837731,0.55,4,3992.50,49.55,1749.35,1940.16,0.00,4.107085,0.031624,8674419,2630932,0.000031,0.000055,72764902,48445438,0,0,70779,0,1,1 +1774160647.834383,0.45,4,3992.50,49.38,1756.21,1933.30,0.00,3520794037644.814941,3520793994063.086426,237,494,0.000008,0.000028,72764903,48445441,0,0,70781,0,1,1 +1774160652.834195,0.60,4,3992.50,49.35,1757.34,1932.17,0.00,0.468475,3518569558469.686035,238,2,0.000025,0.000061,72764905,48445446,0,0,70784,0,1,1 +1774160657.836733,0.55,4,3992.50,49.39,1755.71,1933.80,0.00,3516652692615.796875,3516652692617.627930,199,0,0.000000,0.000020,72764905,48445448,0,0,70786,0,1,1 +1774160662.837489,0.50,4,3992.50,49.40,1755.25,1934.27,0.00,1.363173,0.028316,237,494,0.000000,0.000030,72764905,48445451,0,0,70789,0,1,1 +1774160667.837395,0.70,4,3992.50,49.54,1745.31,1939.43,0.00,0.000000,0.000000,237,494,0.000031,0.000045,72764907,48445455,0,0,70791,0,1,1 +1774160672.837400,0.60,4,3992.50,49.53,1745.29,1939.28,0.00,105540.848193,149101.587580,8673645,2630574,0.000190,0.000249,72764922,48445473,0,0,70794,0,1,1 +1774160677.834905,0.45,4,3992.50,49.53,1745.29,1939.28,0.00,4.111329,0.030093,8674419,2631072,0.000132,0.000129,72764931,48445484,0,0,70796,0,1,1 +1774160682.833223,0.45,4,3992.50,49.54,1744.82,1939.75,0.00,3519621401032.119629,3519621357462.087891,199,0,0.000000,0.000030,72764931,48445487,0,0,70799,0,1,1 +1774160687.833233,0.40,4,3992.50,49.54,1744.82,1939.75,0.00,1.363376,0.028320,237,494,0.000000,0.000020,72764931,48445489,0,0,70801,0,1,1 +1774160692.833513,21.62,4,3992.50,55.78,1507.84,2183.95,0.00,105539.149759,149093.431954,8674419,2631113,23.838241,0.018602,72767694,48446772,0,0,70804,0,1,1 +1774160697.833537,34.48,4,3992.50,55.93,1502.16,2189.85,0.00,3518420321175.343750,3518420277620.335938,21,0,118.564426,0.025909,72779877,48448671,0,0,70806,0,1,1 +1774160702.837824,30.79,4,3992.50,55.53,1518.12,2174.03,0.00,1.537061,0.028296,237,494,119.666759,0.030024,72792213,48450918,0,0,70809,0,1,1 +1774160707.837455,30.03,4,3992.50,56.08,1496.48,2195.60,0.00,3518696514295.282227,3518696514296.617676,199,0,118.980007,0.035402,72804561,48453629,0,0,70811,0,1,1 +1774160712.837518,30.38,4,3992.50,55.68,1512.04,2180.10,0.00,105541.006803,149100.258943,8673654,2630856,119.364676,0.020225,72816856,48455149,0,0,70814,0,1,1 +1774160717.836052,29.84,4,3992.50,55.91,1502.96,2189.18,0.00,3519468951806.391113,3519468908233.993164,21,0,119.400272,0.018544,72829045,48456516,0,0,70816,0,1,1 +1774160722.837360,30.16,4,3992.50,55.57,1516.52,2175.55,0.00,2.006311,0.000195,238,2,118.933176,0.019074,72841213,48457946,0,0,70819,0,1,1 +1774160727.838013,30.65,4,3992.50,56.22,1492.13,2201.25,0.00,0.000000,0.000000,238,2,119.749842,0.024330,72853429,48459808,0,0,70821,0,1,1 +1774160732.836046,30.11,4,3992.50,55.61,1515.61,2177.25,0.00,0.000000,0.000000,238,2,118.823378,0.045897,72865836,48463222,0,0,70824,0,1,1 +1774160737.834893,1.66,4,3992.50,51.02,1695.28,1997.59,0.00,105569.090052,149136.759698,8674445,2631450,48.084606,0.019491,72870907,48464646,0,0,70826,0,1,1 +1774160742.838052,8.99,4,3992.50,50.38,1720.50,1972.34,0.00,3516215861254.642090,3516215817725.009277,237,494,8.041718,0.034368,72873349,48466503,0,0,70829,0,1,1 +1774160747.834891,25.42,4,3992.50,50.21,1727.01,1965.78,0.00,3520663037538.326172,3520663037539.836914,21,0,32.219345,0.143225,72883903,48474329,0,0,70831,0,1,1 +1774160752.837330,2.56,4,3992.50,50.01,1734.65,1958.12,0.00,0.174915,0.000000,199,0,0.014091,0.008279,72884171,48474530,0,0,70834,0,1,1 +1774160757.837159,0.80,4,3992.50,50.30,1723.20,1969.55,0.00,3518557332430.354004,0.000000,21,0,0.001589,0.000786,72884201,48474550,0,0,70836,0,1,1 +1774160762.836207,16.72,4,3992.50,50.49,1712.32,1976.76,0.00,0.048056,0.000000,70,0,0.050640,68.425060,72887953,48482125,0,0,70839,0,1,1 +1774160767.833208,30.90,4,3992.50,51.23,1674.82,2005.86,0.00,0.000000,0.000000,70,0,0.051238,122.560646,72891768,48494777,0,0,70841,0,1,1 +1774160772.837744,7.32,4,3992.50,50.00,1722.70,1957.56,0.00,3515247761314.851562,0.000000,21,0,0.008827,14.213279,72892061,48496313,0,0,70844,0,1,1 +1774160777.836973,14.11,4,3992.50,50.32,1711.91,1970.33,0.00,0.000000,0.000000,21,0,40.069806,0.023942,72896504,48497912,0,0,70846,0,1,1 +1774160782.834913,0.50,4,3992.50,50.13,1719.35,1962.89,0.00,0.048067,0.000000,70,0,0.001691,0.000921,72896542,48497941,0,0,70849,0,1,1 +1774160787.837245,0.95,4,3992.50,50.23,1715.64,1966.74,0.00,105510.890121,149239.699028,8673784,2634185,0.001588,0.000786,72896572,48497961,0,0,70851,0,1,1 +1774160792.833219,0.50,4,3992.50,50.20,1716.65,1965.59,0.00,3521272973188.588867,3521272929404.169922,21,0,0.001671,0.000739,72896607,48497987,0,0,70854,0,1,1 +1774160797.836958,0.50,4,3992.50,50.21,1716.27,1965.97,0.00,105481.267088,149197.780833,8673784,2634243,0.001456,0.000798,72896637,48498008,0,0,70856,0,1,1 +1774160802.837760,0.95,4,3992.50,50.38,1709.67,1972.57,0.00,3517872396856.542969,3517872353114.357422,21,0,0.001589,0.000796,72896667,48498029,0,0,70859,0,1,1 +1774160807.837837,0.60,4,3992.50,50.19,1717.31,1964.93,0.00,0.000000,0.000000,21,0,0.001622,0.000825,72896700,48498052,0,0,70861,0,1,1 +1774160812.833250,0.50,4,3992.50,50.19,1717.08,1965.15,0.00,105661.185777,149446.639979,8674558,2634882,0.001591,0.000797,72896730,48498073,0,0,70864,0,1,1 +1774160817.837545,0.80,4,3992.50,50.19,1717.71,1965.10,0.00,3515417123071.106445,3515417079363.365723,21,0,0.001681,0.000861,72896766,48498099,0,0,70866,0,1,1 +1774160822.837911,0.50,4,3992.50,50.13,1719.89,1962.89,0.00,1.538266,0.028318,237,494,0.001695,0.000861,72896803,48498125,0,0,70869,0,1,1 +1774160827.834906,0.45,4,3992.50,50.18,1717.98,1964.80,0.00,0.468739,3520553132430.936523,238,2,0.001590,0.000787,72896833,48498145,0,0,70871,0,1,1 +1774160832.834888,0.45,4,3992.50,50.18,1717.98,1964.79,0.00,3518449336272.364746,3518449336274.372070,21,0,0.001589,0.001440,72896863,48498170,0,0,70874,0,1,1 +1774160837.836342,0.90,4,3992.50,50.17,1718.39,1964.38,0.00,105533.588566,149266.379576,8674558,2635087,0.001589,0.000786,72896893,48498190,0,0,70876,0,1,1 +1774160842.834961,0.50,4,3992.50,50.16,1719.00,1963.78,0.00,3519408982479.935547,3519408938720.839844,237,494,0.001598,0.000804,72896924,48498212,0,0,70879,0,1,1 +1774160847.835702,0.70,4,3992.50,50.35,1716.16,1971.39,0.00,3517916066202.828613,3517916066204.290527,70,0,0.000970,0.000549,72896942,48498225,0,0,70881,0,1,1 +1774160852.834896,12.05,4,3992.50,50.55,1706.30,1979.05,0.00,105581.227511,149361.949902,8674559,2635353,0.022685,40.070574,72898459,48502699,0,0,70884,0,1,1 +1774160857.838063,0.60,4,3992.50,50.39,1712.49,1972.86,0.00,0.000000,8.075646,8674559,2635474,0.001229,0.001243,72898468,48502715,0,0,70886,0,1,1 +1774160862.838042,0.50,4,3992.50,50.39,1712.49,1972.86,0.00,3518452506402.328125,3518452462618.429688,238,2,0.000000,0.000030,72898468,48502718,0,0,70889,0,1,1 +1774160867.837464,0.55,4,3992.50,50.39,1712.49,1972.86,0.00,105574.443215,149363.213845,8674559,2635483,0.000000,0.000020,72898468,48502720,0,0,70891,0,1,1 +1774160872.834903,0.45,4,3992.50,50.39,1712.49,1972.86,0.00,3520240517607.947266,3520240473803.622559,199,0,0.000000,0.000030,72898468,48502723,0,0,70894,0,1,1 +1774160877.836187,0.75,4,3992.50,50.63,1710.62,1982.41,0.00,1.831366,0.000195,238,2,0.000000,0.000020,72898468,48502725,0,0,70896,0,1,1 +1774160882.834903,0.60,4,3992.50,50.66,1708.41,1983.40,0.00,105585.249862,149388.377919,8673785,2635042,0.000000,0.000030,72898468,48502728,0,0,70899,0,1,1 +1774160887.834885,0.55,4,3992.50,50.44,1716.98,1974.83,0.00,0.000000,0.010156,8673785,2635047,0.000050,0.000082,72898472,48502734,0,0,70901,0,1,1 +1774160892.834911,0.45,4,3992.50,50.50,1714.80,1977.01,0.00,0.000000,0.002344,8673785,2635050,0.000066,0.000108,72898478,48502743,0,0,70904,0,1,1 +1774160897.834887,0.55,4,3992.50,50.50,1714.80,1977.01,0.00,3518454295898.166992,3518454252108.016113,70,0,0.000410,0.001384,72898499,48502774,0,0,70906,0,1,1 +1774160902.837705,0.50,4,3992.50,50.50,1714.80,1977.01,0.00,0.126882,0.000000,199,0,0.000031,0.000055,72898501,48502779,0,0,70909,0,1,1 +1774160907.837651,0.75,4,3992.50,50.72,1703.16,1985.62,0.00,105561.117348,149351.694503,8673785,2635071,0.001126,0.001222,72898510,48502795,0,0,70911,0,1,1 +1774160912.837316,0.75,4,3992.50,50.63,1706.38,1982.36,0.00,3518672941675.235840,3518672897880.364746,238,2,0.000000,0.000030,72898510,48502798,0,0,70914,0,1,1 +1774160917.836778,37.33,4,3992.50,56.81,1473.47,2224.41,0.00,3518815404827.084473,3518815404829.043457,70,0,80.326401,0.035874,72907027,48505395,0,0,70916,0,1,1 +1774160922.837067,32.41,4,3992.50,56.61,1484.59,2216.29,0.00,3518234081527.514160,0.000000,21,0,119.156326,0.033935,72919101,48508005,0,0,70919,0,1,1 +1774160927.837955,30.07,4,3992.50,56.50,1488.86,2212.06,0.00,1.538106,0.028315,237,494,119.143298,0.024750,72931281,48509886,0,0,70921,0,1,1 +1774160932.836386,30.34,4,3992.50,56.74,1479.63,2221.31,0.00,3519541613587.581055,3519541613589.091797,21,0,118.797777,0.035291,72943191,48512614,0,0,70924,0,1,1 +1774160937.833483,30.80,4,3992.50,56.68,1481.78,2219.17,0.00,0.000000,0.000000,21,0,119.633693,0.030769,72955351,48514971,0,0,70926,0,1,1 +1774160942.836928,31.34,4,3992.50,56.50,1488.92,2212.05,0.00,105491.584109,149247.596637,8674559,2635795,119.081557,0.034769,72967520,48517678,0,0,70929,0,1,1 +1774160947.838106,31.39,4,3992.50,56.78,1477.95,2222.98,0.00,3517608037577.040039,3517607993801.199707,21,0,119.138915,0.034890,72979810,48520377,0,0,70931,0,1,1 +1774160952.837516,32.61,4,3992.50,57.10,1465.37,2235.62,0.00,0.175021,0.000000,199,0,119.781382,0.027411,72992140,48522474,0,0,70934,0,1,1 +1774160957.834882,16.69,4,3992.50,50.88,1708.91,1992.12,0.00,3520292016247.524414,0.000000,21,0,110.411919,0.026396,73003467,48524455,0,0,70936,0,1,1 +1774160962.837225,0.85,4,3992.50,50.52,1723.00,1978.02,0.00,0.048024,0.000000,70,0,0.003137,0.002229,73003527,48524502,0,0,70939,0,1,1 +1774160967.834902,24.45,4,3992.50,51.07,1701.38,1999.64,0.00,3520073193172.308594,0.000000,21,0,26.178728,0.121284,73012176,48531002,0,0,70941,0,1,1 +1774160972.834877,11.32,4,3992.50,50.45,1725.72,1975.21,0.00,105564.931600,149351.808503,8674576,2636664,14.089916,0.063950,73016825,48534560,0,0,70944,0,1,1 +1774160977.833273,1.55,4,3992.50,49.96,1744.99,1955.94,0.00,3519566088613.295898,3519566044810.573730,238,2,0.007533,0.005098,73016967,48534673,0,0,70946,0,1,1 +1774160982.837848,0.50,4,3992.50,50.01,1743.08,1957.85,0.00,3515221226486.140625,3515221226487.970703,199,0,0.001588,0.000795,73016997,48534694,0,0,70949,0,1,1 +1774160987.835094,0.80,4,3992.50,50.15,1737.34,1963.59,0.00,105618.293666,149433.398797,8673802,2636259,0.001590,0.000787,73017027,48534714,0,0,70951,0,1,1 +1774160992.836000,0.50,4,3992.50,50.15,1737.36,1963.58,0.00,3517800020593.054688,3517799976810.005371,199,0,0.001589,0.000796,73017057,48534735,0,0,70954,0,1,1 +1774160997.833944,0.85,4,3992.50,50.24,1731.31,1967.19,0.00,3519884865018.427246,0.000000,70,0,0.001598,0.000795,73017088,48534756,0,0,70956,0,1,1 +1774161002.835447,0.95,4,3992.50,50.24,1731.43,1967.08,0.00,105528.567448,149307.333945,8673814,2636953,0.001589,0.000796,73017118,48534777,0,0,70959,0,1,1 +1774161007.837183,0.60,4,3992.50,50.24,1731.51,1967.00,0.00,3517215977990.099121,3517215934213.418945,21,0,0.001714,0.000941,73017158,48534807,0,0,70961,0,1,1 +1774161012.833219,0.85,4,3992.50,50.24,1731.52,1967.00,0.00,1.539599,0.028343,237,494,0.001590,0.000797,73017188,48534828,0,0,70964,0,1,1 +1774161017.833232,0.60,4,3992.50,50.25,1731.05,1967.46,0.00,0.000000,0.000000,237,494,0.001714,0.000887,73017226,48534856,0,0,70966,0,1,1 +1774161022.833236,0.75,4,3992.50,50.17,1734.07,1964.45,0.00,0.468457,3518434161215.500977,238,2,0.001695,0.000861,73017263,48534882,0,0,70969,0,1,1 +1774161027.833207,1.15,4,3992.50,50.24,1725.46,1967.09,0.00,3518457827747.754883,3518457827749.761719,21,0,0.001589,0.001430,73017293,48534906,0,0,70971,0,1,1 +1774161032.833275,2.61,4,3992.50,50.06,1732.62,1959.93,0.00,0.000000,0.000000,21,0,0.005110,0.003656,73017374,48534958,0,0,70974,0,1,1 +1774161037.836665,0.55,4,3992.50,50.08,1731.89,1960.66,0.00,2.005476,0.000195,238,2,0.001588,0.000786,73017404,48534978,0,0,70976,0,1,1 +1774161042.837219,0.50,4,3992.50,50.08,1731.90,1960.64,0.00,3518046859066.679688,3518046859068.686523,21,0,0.001589,0.000796,73017434,48534999,0,0,70979,0,1,1 +1774161047.833228,0.60,4,3992.50,50.08,1731.91,1960.64,0.00,1.539608,0.028343,237,494,0.002406,0.001354,73017465,48535023,0,0,70981,0,1,1 +1774161052.837635,25.52,4,3992.50,51.02,1688.81,1997.63,0.00,3515338858112.762695,3515338858114.271484,21,0,0.032329,101.257825,73019828,48545784,0,0,70984,0,1,1 +1774161057.838027,28.23,4,3992.50,51.82,1650.27,2028.79,0.00,0.048043,0.000000,70,0,0.039084,103.744154,73022829,48556520,0,0,70986,0,1,1 +1774161062.834901,2.11,4,3992.50,51.18,1677.96,2003.64,0.00,105630.462031,149651.253082,8674592,2639022,0.005496,0.004775,73022922,48556616,0,0,70989,0,1,1 +1774161067.837860,14.84,4,3992.50,52.39,1632.40,2051.00,0.00,3516356012713.618164,3516355968746.375488,70,0,40.040412,0.026732,73027348,48558478,0,0,70991,0,1,1 +1774161072.834919,0.80,4,3992.50,51.50,1667.21,2016.19,0.00,3520507672252.818848,0.000000,21,0,0.001681,0.002802,73027382,48558517,0,0,70994,0,1,1 +1774161077.834920,11.60,4,3992.50,50.57,1701.64,1979.93,0.00,105577.792617,149589.992051,8673921,2639036,0.019908,40.062320,73028678,48562864,0,0,70996,0,1,1 +1774161082.834837,0.70,4,3992.50,50.50,1704.50,1977.07,0.00,3518495917075.735840,3518495873062.791016,21,0,0.000253,0.000649,73028685,48562879,0,0,70999,0,1,1 +1774161087.836838,0.80,4,3992.50,50.63,1705.01,1982.39,0.00,0.174930,0.000000,199,0,0.000000,0.000020,73028685,48562881,0,0,71001,0,1,1 +1774161092.836429,0.55,4,3992.50,50.68,1703.30,1984.10,0.00,1.363490,0.028323,237,494,0.000000,0.000674,73028685,48562888,0,0,71004,0,1,1 +1774161097.837852,0.45,4,3992.50,50.68,1703.30,1984.10,0.00,3517435652143.608887,3517435652145.118652,21,0,0.000025,0.000051,73028687,48562892,0,0,71006,0,1,1 +1774161102.833218,0.80,4,3992.50,50.67,1703.68,1983.73,0.00,0.175162,0.000000,199,0,0.000000,0.000030,73028687,48562895,0,0,71009,0,1,1 +1774161107.834836,0.50,4,3992.50,50.63,1705.11,1982.30,0.00,1.362938,0.028311,237,494,0.000000,0.000020,73028687,48562897,0,0,71011,0,1,1 +1774161112.836596,0.50,4,3992.50,50.67,1703.41,1983.99,0.00,3517199006405.657227,3517199006407.118652,70,0,0.000081,0.000117,73028693,48562906,0,0,71014,0,1,1 +1774161117.833214,0.85,4,3992.50,50.87,1696.41,1991.58,0.00,1.491341,0.028339,237,494,0.000058,0.000090,73028698,48562913,0,0,71016,0,1,1 +1774161122.835825,0.50,4,3992.50,50.68,1703.16,1984.18,0.00,3516600814616.742676,3516600814618.251953,21,0,0.000175,0.000193,73028710,48562928,0,0,71019,0,1,1 +1774161127.833228,0.50,4,3992.50,50.68,1703.16,1984.18,0.00,0.175091,0.000000,199,0,0.000031,0.000045,73028712,48562932,0,0,71021,0,1,1 +1774161132.838119,0.60,4,3992.50,50.68,1702.93,1984.41,0.00,0.000000,0.000000,199,0,0.000000,0.000030,73028712,48562935,0,0,71024,0,1,1 +1774161137.837396,0.50,4,3992.50,50.68,1702.93,1984.41,0.00,0.000000,0.000000,199,0,0.000000,0.000020,73028712,48562937,0,0,71026,0,1,1 +1774161142.833377,22.16,4,3992.50,57.22,1456.08,2240.12,0.00,105666.700020,149718.767119,8674695,2639853,48.512509,0.024857,73033977,48564687,0,0,71029,0,1,1 +1774161147.837295,35.47,4,3992.50,56.87,1473.04,2226.56,0.00,3515681864127.494629,3515681820145.486816,21,0,122.072711,0.046343,73046434,48568294,0,0,71031,0,1,1 +1774161152.837635,31.85,4,3992.50,56.46,1482.93,2210.61,0.00,105570.638096,149588.440771,8673921,2639518,120.759290,0.030257,73058883,48570599,0,0,71034,0,1,1 +1774161157.836757,29.48,4,3992.50,56.52,1480.65,2212.88,0.00,4.109999,0.033990,8674695,2640028,119.987107,0.051327,73071112,48574490,0,0,71036,0,1,1 +1774161162.836594,30.11,4,3992.50,56.37,1486.53,2207.01,0.00,3518551827091.018066,3518551783072.862793,21,0,119.768433,0.044930,73083345,48577946,0,0,71039,0,1,1 +1774161167.835017,30.24,4,3992.50,56.69,1474.11,2219.46,0.00,0.000000,0.000000,21,0,120.203668,0.041731,73095622,48581183,0,0,71041,0,1,1 +1774161172.834888,30.23,4,3992.50,56.42,1484.42,2209.11,0.00,0.000000,0.000000,21,0,119.567498,0.048913,73107796,48584974,0,0,71044,0,1,1 +1774161177.833593,30.41,4,3992.50,56.93,1471.54,2229.00,0.00,105609.264340,149637.509098,8674695,2640102,118.994811,0.047620,73119945,48588670,0,0,71046,0,1,1 +1774161182.837885,22.09,4,3992.50,56.47,1489.71,2210.93,0.00,3515419644257.801270,3515419600276.698730,238,2,119.461245,0.047325,73132066,48592347,0,0,71049,0,1,1 +1774161187.836401,1.20,4,3992.50,50.59,1720.10,1980.54,0.00,3519481312989.374512,3519481312991.333496,70,0,16.030852,0.007677,73133797,48592853,0,0,71051,0,1,1 +1774161192.837993,16.98,4,3992.50,51.40,1688.22,2012.41,0.00,0.126913,0.000000,199,0,14.131871,0.066932,73138505,48596196,0,0,71054,0,1,1 +1774161197.836957,14.54,4,3992.50,51.80,1672.44,2028.12,0.00,105603.738857,149630.343292,8674707,2640911,20.082508,0.086999,73144920,48601051,0,0,71056,0,1,1 +1774161202.834903,5.83,4,3992.50,51.48,1684.83,2015.71,0.00,3519883142399.234375,3519883098362.322266,237,494,6.047897,0.030903,73147041,48602658,0,0,71059,0,1,1 +1774161207.837721,1.15,4,3992.50,51.63,1679.09,2021.49,0.00,3516455663609.949219,3516455663611.410645,70,0,0.002323,0.002543,73147091,48602709,0,0,71061,0,1,1 +1774161212.837571,0.50,4,3992.50,51.26,1693.59,2006.97,0.00,0.126957,0.000000,199,0,0.001589,0.000796,73147121,48602730,0,0,71064,0,1,1 +1774161217.838082,0.50,4,3992.50,51.28,1692.89,2007.68,0.00,1.831649,0.000195,238,2,0.001589,0.000786,73147151,48602750,0,0,71066,0,1,1 +1774161222.837913,0.70,4,3992.50,51.61,1680.09,2020.48,0.00,105579.501709,149605.425454,8673934,2641170,0.001589,0.000957,73147181,48602772,0,0,71069,0,1,1 +1774161227.837859,0.50,4,3992.50,51.24,1694.54,2006.02,0.00,3518475362502.662109,3518475318479.756836,21,0,0.001589,0.001269,73147211,48602795,0,0,71071,0,1,1 +1774161232.834142,0.55,4,3992.50,51.27,1693.09,2007.48,0.00,2.008329,0.000195,238,2,0.001716,0.000952,73147251,48602826,0,0,71074,0,1,1 +1774161237.834908,0.80,4,3992.50,51.29,1692.96,2008.03,0.00,0.000000,0.000000,238,2,0.001576,0.000786,73147280,48602846,0,0,71076,0,1,1 +1774161242.837966,0.55,4,3992.50,51.29,1691.46,2008.16,0.00,105515.495317,149509.115900,8674708,2641834,0.001417,0.000631,73147308,48602866,0,0,71079,0,1,1 +1774161247.834890,0.60,4,3992.50,51.29,1691.47,2008.15,0.00,3520603417190.772949,3520603373144.972168,199,0,0.001319,0.000848,73147340,48602891,0,0,71081,0,1,1 +1774161252.834900,0.50,4,3992.50,51.29,1691.48,2008.14,0.00,1.363376,0.028320,237,494,0.001695,0.000861,73147377,48602917,0,0,71084,0,1,1 +1774161257.834910,0.55,4,3992.50,51.34,1689.56,2010.07,0.00,3518429687886.361328,3518429687887.871094,21,0,0.001589,0.000786,73147407,48602937,0,0,71086,0,1,1 +1774161262.837987,0.50,4,3992.50,51.34,1689.57,2010.05,0.00,105513.002778,149508.650624,8673934,2641485,0.001588,0.000783,73147437,48602957,0,0,71089,0,1,1 +1774161267.833920,0.85,4,3992.50,51.27,1696.08,2007.45,0.00,3521301932439.742188,3521301888381.175293,21,0,0.001590,0.000787,73147467,48602977,0,0,71091,0,1,1 +1774161272.835772,0.75,4,3992.50,51.25,1696.65,2006.70,0.00,0.000000,0.000000,21,0,0.001589,0.000796,73147497,48602998,0,0,71094,0,1,1 +1774161277.837169,0.50,4,3992.50,51.29,1695.39,2007.96,0.00,105552.552193,149558.998500,8674708,2642061,0.001589,0.000786,73147527,48603018,0,0,71096,0,1,1 +1774161282.837153,0.45,4,3992.50,51.29,1695.39,2007.95,0.00,3518448484074.797852,3518448440055.738770,199,0,0.001597,0.000804,73147558,48603040,0,0,71099,0,1,1 +1774161287.837213,0.60,4,3992.50,51.20,1698.74,2004.61,0.00,105576.493014,149599.004177,8673934,2641619,0.001589,0.000786,73147588,48603060,0,0,71101,0,1,1 +1774161292.837537,0.45,4,3992.50,51.24,1697.28,2006.07,0.00,3518209428011.267090,3518209383991.251953,21,0,0.001589,0.001440,73147618,48603085,0,0,71104,0,1,1 +1774161297.837642,10.08,4,3992.50,52.07,1667.62,2038.72,0.00,105579.809993,149611.676439,8674708,2642323,0.025367,38.458844,73149339,48607326,0,0,71106,0,1,1 +1774161302.837382,31.31,4,3992.50,52.10,1658.61,2039.64,0.00,0.001563,107.961779,8674710,2643016,0.025587,118.173353,73151260,48619718,0,0,71109,0,1,1 +1774161307.835104,13.37,4,3992.50,51.52,1677.46,2017.29,0.00,3520041009964.050293,57.106195,8673936,2642969,0.008591,48.494005,73151827,48624851,0,0,71111,0,1,1 +1774161312.835435,15.61,4,3992.50,52.92,1626.11,2071.88,0.00,17.467593,26.223459,8674039,2643139,40.059756,0.024948,73156225,48626598,0,0,71114,0,1,1 +1774161317.833211,11.81,4,3992.50,52.00,1661.22,2035.93,0.00,3520002904069.148926,3520002859837.265137,237,494,0.024490,40.082078,73157753,48631021,0,0,71116,0,1,1 +1774161322.834902,0.80,4,3992.50,51.36,1686.46,2010.70,0.00,105562.266328,149789.625107,8674813,2644032,0.000920,0.002250,73157781,48631066,0,0,71119,0,1,1 +1774161327.833238,0.75,4,3992.50,51.26,1680.65,2006.96,0.00,3519608583883.355469,3519608539627.640625,199,0,0.000000,0.000020,73157781,48631068,0,0,71121,0,1,1 +1774161332.833232,0.90,4,3992.50,51.18,1683.80,2003.80,0.00,105595.342556,149840.596042,8674039,2643575,0.002843,0.001960,73157828,48631099,0,0,71124,0,1,1 +1774161337.833211,0.55,4,3992.50,51.13,1685.84,2001.76,0.00,0.000000,0.003906,8674039,2643580,0.000000,0.000020,73157828,48631101,0,0,71126,0,1,1 +1774161342.837233,0.40,4,3992.50,51.13,1685.86,2001.75,0.00,3515608642151.573730,3515608597942.059082,70,0,0.000025,0.000061,73157830,48631106,0,0,71129,0,1,1 +1774161347.834907,0.50,4,3992.50,51.11,1686.53,2001.07,0.00,105648.622307,149916.234891,8674813,2644121,0.000000,0.000020,73157830,48631108,0,0,71131,0,1,1 +1774161352.837764,0.50,4,3992.50,50.95,1692.72,1994.89,0.00,3516427613295.933105,3516427569074.236328,21,0,0.000000,0.000030,73157830,48631111,0,0,71134,0,1,1 +1774161357.834913,0.50,4,3992.50,50.95,1692.71,1994.89,0.00,2.007981,0.000195,238,2,0.000062,0.000715,73157834,48631121,0,0,71136,0,1,1 +1774161362.837566,0.70,4,3992.50,51.16,1685.24,2002.97,0.00,3516570907029.069824,3516570907031.075684,21,0,0.000163,0.000204,73157846,48631136,0,0,71139,0,1,1 +1774161367.837518,0.45,4,3992.50,51.01,1690.93,1997.29,0.00,1.538394,0.028321,237,494,0.000101,0.000103,73157853,48631145,0,0,71141,0,1,1 +1774161372.833595,0.55,4,3992.50,51.01,1690.93,1997.29,0.00,3521200117849.892578,3521200117851.403809,21,0,0.000000,0.000030,73157853,48631148,0,0,71144,0,1,1 +1774161377.836379,0.40,4,3992.50,51.01,1690.93,1997.29,0.00,0.000000,0.000000,21,0,0.000101,0.000144,73157861,48631158,0,0,71146,0,1,1 +1774161382.834033,27.36,4,3992.50,57.49,1446.20,2251.01,0.00,105649.083657,149917.130956,8674813,2644406,50.900859,0.023765,73163387,48632822,0,0,71149,0,1,1 +1774161387.834057,34.19,4,3992.50,57.58,1445.64,2254.45,0.00,3518420664520.664062,3518420620271.587402,238,2,119.164351,0.024643,73175591,48634677,0,0,71151,0,1,1 +1774161392.837599,30.75,4,3992.50,57.82,1440.52,2263.91,0.00,3515946514479.903320,3515946514481.908691,21,0,119.080384,0.020150,73187762,48636191,0,0,71154,0,1,1 +1774161397.837389,30.66,4,3992.50,58.04,1431.94,2272.46,0.00,0.048049,0.000000,70,0,119.169411,0.018991,73199974,48637616,0,0,71156,0,1,1 +1774161402.833206,30.56,4,3992.50,57.81,1441.14,2263.25,0.00,3521383058503.126465,0.000000,21,0,119.264441,0.016065,73212185,48638832,0,0,71159,0,1,1 +1774161407.833481,30.33,4,3992.50,57.57,1450.39,2253.98,0.00,1.538294,0.028319,237,494,119.359491,0.028578,73224397,48641055,0,0,71161,0,1,1 +1774161412.833201,30.40,4,3992.50,57.48,1454.06,2250.37,0.00,3518634486050.385254,3518634486051.720703,199,0,118.975483,0.033647,73236680,48643629,0,0,71164,0,1,1 +1774161417.834855,30.74,4,3992.50,57.80,1451.37,2262.82,0.00,3517273291798.579102,0.000000,21,0,119.526171,0.025090,73248921,48645535,0,0,71166,0,1,1 +1774161422.837522,23.59,4,3992.50,57.47,1462.24,2249.97,0.00,0.000000,0.000000,21,0,119.102447,0.028230,73261224,48647646,0,0,71169,0,1,1 +1774161427.837658,2.00,4,3992.50,51.91,1679.73,2032.48,0.00,0.000000,0.000000,21,0,20.832165,0.006689,73263450,48648074,0,0,71171,0,1,1 +1774161432.837690,12.17,4,3992.50,52.13,1671.28,2040.89,0.00,0.000000,0.000000,21,0,10.076903,0.052521,73266922,48650675,0,0,71174,0,1,1 +1774161437.837894,17.19,4,3992.50,51.79,1684.27,2027.86,0.00,105591.250648,149841.840204,8674055,2645189,22.130709,0.100067,73273939,48656180,0,0,71176,0,1,1 +1774161442.837225,5.92,4,3992.50,51.51,1695.23,2016.90,0.00,3518907428491.789551,3518907384231.970215,237,494,8.049818,0.035805,73276561,48658144,0,0,71179,0,1,1 +1774161447.833222,1.40,4,3992.50,51.34,1703.92,2010.02,0.00,105682.753277,149968.355757,8674829,2645887,0.002307,0.002185,73276608,48658188,0,0,71181,0,1,1 +1774161452.834914,0.60,4,3992.50,51.31,1702.77,2009.06,0.00,3517246138416.943359,3517246094183.243164,70,0,0.001904,0.001358,73276646,48658221,0,0,71184,0,1,1 +1774161457.834907,2.70,4,3992.50,51.49,1695.86,2015.96,0.00,0.126953,0.000000,199,0,0.001889,0.001341,73276682,48658252,0,0,71186,0,1,1 +1774161462.838067,0.60,4,3992.50,51.49,1695.87,2015.95,0.00,105532.778496,149753.964695,8674829,2646064,0.001588,0.000796,73276712,48658273,0,0,71189,0,1,1 +1774161467.837285,0.50,4,3992.50,51.49,1695.88,2015.94,0.00,3518987646085.623535,3518987601829.686523,70,0,0.001589,0.000786,73276742,48658293,0,0,71191,0,1,1 +1774161472.834871,0.55,4,3992.50,51.49,1695.89,2015.93,0.00,105646.512277,149921.079730,8674055,2645662,0.001716,0.000952,73276782,48658324,0,0,71194,0,1,1 +1774161477.834903,1.00,4,3992.50,51.50,1693.78,2016.48,0.00,3518414500289.386719,3518414456036.351562,199,0,0.001585,0.000782,73276812,48658344,0,0,71196,0,1,1 +1774161482.838048,0.50,4,3992.50,51.47,1695.14,2015.16,0.00,1.830685,0.000195,238,2,0.000982,0.000559,73276831,48658358,0,0,71199,0,1,1 +1774161487.835941,0.50,4,3992.50,51.51,1693.43,2016.87,0.00,105642.164539,149912.196524,8674829,2646486,0.001714,0.001531,73276869,48658390,0,0,71201,0,1,1 +1774161492.837240,0.55,4,3992.50,51.51,1693.45,2016.85,0.00,0.000000,0.048034,8674829,2646533,0.001664,0.000849,73276904,48658415,0,0,71204,0,1,1 +1774161497.838074,0.60,4,3992.50,51.51,1693.46,2016.84,0.00,3517850653658.234375,3517850609416.139160,70,0,0.002754,0.002021,73276946,48658452,0,0,71206,0,1,1 +1774161502.837825,0.55,4,3992.50,51.52,1693.23,2017.06,0.00,0.126959,0.000000,199,0,0.001620,0.000821,73276978,48658475,0,0,71209,0,1,1 +1774161507.836405,1.00,4,3992.50,51.38,1692.20,2011.70,0.00,105629.480013,149891.783019,8674829,2646675,0.001794,0.001319,73277015,48658506,0,0,71211,0,1,1 +1774161512.833209,0.50,4,3992.50,51.33,1694.01,2009.88,0.00,3520687612710.357422,3520687568432.493164,21,0,0.001590,0.000797,73277045,48658527,0,0,71214,0,1,1 +1774161517.833211,11.87,4,3992.50,51.73,1676.24,2025.32,0.00,0.175000,0.000000,199,0,0.029291,47.673046,73279092,48663806,0,0,71216,0,1,1 +1774161522.835481,30.82,4,3992.50,51.76,1666.61,2026.67,0.00,0.000000,0.000000,199,0,0.023911,118.513796,73280811,48676205,0,0,71219,0,1,1 +1774161527.837462,11.33,4,3992.50,51.55,1672.31,2018.14,0.00,3517043697787.083984,0.000000,70,0,0.010893,38.844968,73281446,48680386,0,0,71221,0,1,1 +1774161532.835422,12.26,4,3992.50,54.09,1575.25,2117.90,0.00,1.490940,0.028332,237,494,40.082332,0.023140,73285934,48681952,0,0,71224,0,1,1 +1774161537.833200,3.71,4,3992.50,52.22,1650.74,2044.56,0.00,105662.553710,150098.781465,8674957,2648167,0.014069,11.628868,73286743,48683460,0,0,71226,0,1,1 +1774161542.835763,8.62,4,3992.50,51.81,1663.12,2028.34,0.00,0.001562,39.960277,8674959,2648496,0.008440,28.428764,73287309,48686487,0,0,71229,0,1,1 +1774161547.837868,0.60,4,3992.50,51.43,1677.90,2013.55,0.00,3516956807809.283203,10.607742,8674185,2648092,0.000000,0.000020,73287309,48686489,0,0,71231,0,1,1 +1774161552.834718,0.60,4,3992.50,51.46,1676.69,2014.76,0.00,3520655439393.197754,3520655394895.437012,70,0,0.000000,0.000674,73287309,48686496,0,0,71234,0,1,1 +1774161557.838014,0.50,4,3992.50,51.46,1676.69,2014.76,0.00,105543.393240,149983.823550,8674185,2648101,0.000000,0.000020,73287309,48686498,0,0,71236,0,1,1 +1774161562.837473,0.50,4,3992.50,51.47,1676.48,2014.98,0.00,3518818312340.913574,3518818267866.233887,199,0,0.000025,0.000061,73287311,48686503,0,0,71239,0,1,1 +1774161567.837784,0.75,4,3992.50,51.58,1672.19,2019.41,0.00,3518218065412.522949,0.000000,21,0,0.000008,0.000028,73287312,48686506,0,0,71241,0,1,1 +1774161572.837777,0.65,4,3992.50,51.58,1672.11,2019.31,0.00,2.006839,0.000195,238,2,0.000000,0.000030,73287312,48686509,0,0,71244,0,1,1 +1774161577.837639,0.45,4,3992.50,51.60,1671.14,2020.28,0.00,0.000000,0.000000,238,2,0.000056,0.000076,73287316,48686515,0,0,71246,0,1,1 +1774161582.833242,0.45,4,3992.50,51.58,1671.82,2019.60,0.00,3521534540779.979492,3521534540781.813477,199,0,0.000134,0.000193,73287327,48686529,0,0,71249,0,1,1 +1774161587.834900,0.50,4,3992.50,51.59,1671.60,2019.82,0.00,0.000000,0.000000,199,0,0.000163,0.000154,73287338,48686542,0,0,71251,0,1,1 +1774161592.837477,0.55,4,3992.50,51.59,1671.60,2019.82,0.00,3516624706749.568848,0.000000,21,0,0.000000,0.000030,73287338,48686545,0,0,71254,0,1,1 +1774161597.836950,0.80,4,3992.50,51.78,1664.27,2027.45,0.00,0.000000,0.000000,21,0,0.000000,0.000020,73287338,48686547,0,0,71256,0,1,1 +1774161602.833229,0.65,4,3992.50,51.61,1670.79,2020.62,0.00,0.175130,0.000000,199,0,0.000000,0.000030,73287338,48686550,0,0,71259,0,1,1 +1774161607.836508,31.80,4,3992.50,57.89,1433.45,2266.44,0.00,105543.667620,149996.724399,8674197,2648449,51.245846,0.028051,73292951,48688468,0,0,71261,0,1,1 +1774161612.837431,33.47,4,3992.50,57.65,1445.32,2257.19,0.00,3517787389749.541992,3517787345275.724121,21,0,118.970282,0.090896,73305728,48695528,0,0,71264,0,1,1 +1774161617.837486,42.27,4,3992.50,58.03,1430.63,2271.89,0.00,105625.466366,150093.498207,8674987,2648482,119.399542,0.114637,73318677,48704402,0,0,71266,0,1,1 +1774161622.836391,31.29,4,3992.50,57.96,1433.15,2269.20,0.00,3519207502120.990234,3519207457642.563965,199,0,119.426570,0.111629,73331633,48713086,0,0,71269,0,1,1 +1774161627.837391,31.23,4,3992.50,57.89,1435.91,2266.57,0.00,0.000000,0.000000,199,0,118.976680,0.109133,73344553,48721576,0,0,71271,0,1,1 +1774161632.833212,31.30,4,3992.50,57.91,1433.26,2267.44,0.00,1.833368,0.000195,238,2,119.904563,0.113365,73357609,48730267,0,0,71274,0,1,1 +1774161637.835009,31.23,4,3992.50,57.74,1440.15,2260.54,0.00,3517173501104.119629,3517173501106.077637,70,0,118.957157,0.106802,73370573,48738585,0,0,71276,0,1,1 +1774161642.834890,31.22,4,3992.50,57.69,1441.86,2258.84,0.00,0.126956,0.000000,199,0,119.803687,0.109185,73383627,48747098,0,0,71279,0,1,1 +1774161647.834900,24.21,4,3992.50,57.58,1446.52,2254.26,0.00,3518430414793.941895,0.000000,70,0,118.699150,0.109817,73396528,48755649,0,0,71281,0,1,1 +1774161652.837828,2.36,4,3992.50,51.99,1665.39,2035.37,0.00,105568.990440,150007.697097,8675778,2649176,20.325359,0.021014,73398810,48757219,0,0,71284,0,1,1 +1774161657.837378,14.88,4,3992.50,52.92,1630.14,2072.00,0.00,3518753946636.446777,3518753902167.754395,21,0,16.185696,0.074000,73404157,48761021,0,0,71286,0,1,1 +1774161662.834881,15.33,4,3992.50,52.20,1658.50,2043.60,0.00,2.007839,0.000195,238,2,22.065141,0.096518,73411233,48766358,0,0,71289,0,1,1 +1774161667.837569,2.61,4,3992.50,51.88,1670.84,2031.28,0.00,3516546598791.801758,0.028110,237,494,2.020875,0.012819,73412089,48766982,0,0,71291,0,1,1 +1774161672.833280,1.00,4,3992.50,51.59,1682.10,2020.01,0.00,3521457776617.007324,3521457776618.518555,21,0,0.002119,0.002036,73412132,48767024,0,0,71294,0,1,1 +1774161677.834627,0.45,4,3992.50,51.63,1680.70,2021.41,0.00,0.174953,0.000000,199,0,0.001589,0.000786,73412162,48767044,0,0,71296,0,1,1 +1774161682.837037,0.90,4,3992.50,51.82,1673.16,2028.95,0.00,3516742280476.875000,0.000000,21,0,0.001588,0.001452,73412192,48767070,0,0,71299,0,1,1 +1774161687.837900,1.40,4,3992.50,52.15,1660.23,2041.91,0.00,105608.534473,150071.355649,8675005,2650390,0.002047,0.002069,73412236,48767114,0,0,71301,0,1,1 +1774161692.837824,0.65,4,3992.50,51.99,1666.47,2035.59,0.00,3518490285237.268066,3518490240765.922852,199,0,0.002047,0.002055,73412280,48767159,0,0,71304,0,1,1 +1774161697.835230,0.55,4,3992.50,51.99,1666.57,2035.48,0.00,3520263778006.257812,0.000000,21,0,0.002632,0.003478,73412348,48767237,0,0,71306,0,1,1 +1774161702.835627,0.75,4,3992.50,51.98,1666.98,2035.07,0.00,105618.387263,150085.478090,8675005,2650524,0.002741,0.003972,73412414,48767319,0,0,71309,0,1,1 +1774161707.837876,0.70,4,3992.50,52.00,1666.23,2035.82,0.00,3516855055153.868652,3516855010703.069824,199,0,0.002732,0.003953,73412479,48767399,0,0,71311,0,1,1 +1774161712.833606,0.60,4,3992.50,52.00,1666.24,2035.81,0.00,1.833402,0.000195,238,2,0.002736,0.003955,73412544,48767479,0,0,71314,0,1,1 +1774161717.836558,0.85,4,3992.50,52.01,1675.30,2036.42,0.00,3516361487333.046875,3516361487335.052734,21,0,0.002578,0.003371,73412607,48767551,0,0,71316,0,1,1 +1774161722.836270,0.75,4,3992.50,51.70,1687.63,2024.08,0.00,0.000000,0.000000,21,0,0.002735,0.003952,73412672,48767631,0,0,71319,0,1,1 +1774161727.836121,0.60,4,3992.50,51.69,1687.89,2023.82,0.00,105629.932121,150102.063218,8675005,2650702,0.002734,0.003954,73412737,48767711,0,0,71321,0,1,1 +1774161732.837003,0.65,4,3992.50,51.69,1687.90,2023.81,0.00,3517816641310.686523,3517816596847.729980,21,0,0.003403,0.004885,73412805,48767794,0,0,71324,0,1,1 +1774161737.833228,0.80,4,3992.50,51.67,1688.62,2023.10,0.00,105706.572442,150211.015764,8675005,2650754,0.002736,0.003957,73412870,48767874,0,0,71326,0,1,1 +1774161742.835810,0.65,4,3992.50,51.67,1688.63,2023.08,0.00,3516620916251.313965,3516620871803.376465,70,0,0.002745,0.003962,73412936,48767955,0,0,71329,0,1,1 +1774161747.834892,0.75,4,3992.50,51.74,1685.13,2025.75,0.00,1.490606,0.028326,237,494,0.002730,0.004607,73413001,48768040,0,0,71331,0,1,1 +1774161752.833201,2.10,4,3992.50,51.63,1689.40,2021.48,0.00,0.468616,3519627691977.259766,238,2,0.002801,0.003887,73413065,48768120,0,0,71334,0,1,1 +1774161757.838115,0.55,4,3992.50,51.64,1688.95,2021.93,0.00,3514982911446.715820,3514982911448.720703,21,0,0.003030,0.004505,73413136,48768211,0,0,71336,0,1,1 +1774161762.836150,14.94,4,3992.50,52.20,1664.04,2043.70,0.00,1.538984,0.028331,237,494,0.025503,58.913188,73414911,48774613,0,0,71339,0,1,1 +1774161767.834400,29.15,4,3992.50,52.42,1646.96,2052.50,0.00,0.468621,3519669267702.463867,238,2,0.042303,118.419813,73418095,48787195,0,0,71341,0,1,1 +1774161772.837964,8.12,4,3992.50,51.64,1675.98,2021.85,0.00,3515931197979.813477,3515931197981.644043,199,0,0.022784,27.831284,73419760,48790328,0,0,71344,0,1,1 +1774161777.834872,16.69,4,3992.50,51.67,1679.07,2022.89,0.00,105709.441041,150396.041273,8675118,2652353,40.087568,0.023848,73424107,48791888,0,0,71346,0,1,1 +1774161782.833251,1.25,4,3992.50,51.82,1677.32,2028.86,0.00,0.000000,0.040247,8675118,2652396,0.004256,0.004724,73424200,48791988,0,0,71349,0,1,1 +1774161787.834880,11.14,4,3992.50,52.07,1665.50,2038.84,0.00,3517291451069.520996,3517291406423.225586,238,2,0.026831,40.056293,73426049,48796679,0,0,71351,0,1,1 +1774161792.837150,0.85,4,3992.50,52.08,1665.32,2039.02,0.00,3516840554829.058105,3516840554830.889160,199,0,0.002315,0.005647,73426113,48796786,0,0,71354,0,1,1 +1774161797.837522,0.60,4,3992.50,52.03,1667.26,2037.07,0.00,0.000000,0.000000,199,0,0.001349,0.003728,73426155,48796860,0,0,71356,0,1,1 +1774161802.834959,0.60,4,3992.50,51.91,1672.12,2032.21,0.00,3520241391736.393066,0.000000,70,0,0.002067,0.003870,73426192,48796926,0,0,71359,0,1,1 +1774161807.834903,0.90,4,3992.50,51.98,1674.09,2035.12,0.00,1.958811,0.000195,238,2,0.001366,0.003751,73426235,48797001,0,0,71361,0,1,1 +1774161812.837834,0.50,4,3992.50,51.89,1677.59,2031.49,0.00,105580.363070,150251.128190,8675123,2652836,0.000902,0.003206,73426262,48797056,0,0,71364,0,1,1 +1774161817.837254,0.55,4,3992.50,51.94,1675.67,2033.41,0.00,3518844740992.888184,3518844696292.767578,21,0,0.001145,0.003188,73426297,48797118,0,0,71366,0,1,1 +1774161822.837840,0.60,4,3992.50,51.93,1675.89,2033.19,0.00,0.174980,0.000000,199,0,0.001144,0.003197,73426332,48797181,0,0,71369,0,1,1 +1774161827.835129,0.55,4,3992.50,51.95,1675.16,2033.92,0.00,0.000000,0.000000,199,0,0.001271,0.003345,73426377,48797253,0,0,71371,0,1,1 +1774161832.837919,0.55,4,3992.50,51.95,1675.16,2033.92,0.00,105585.147198,150259.557004,8675123,2652876,0.000940,0.002594,73426407,48797306,0,0,71374,0,1,1 +1774161837.834909,0.85,4,3992.50,51.75,1665.19,2026.11,0.00,3520556421171.475098,3520556376445.380371,21,0,0.001270,0.003291,73426450,48797376,0,0,71376,0,1,1 +1774161842.834913,1.55,4,3992.50,51.76,1664.72,2026.36,0.00,1.538378,0.028320,237,494,0.001157,0.003198,73426486,48797439,0,0,71379,0,1,1 +1774161847.835697,0.50,4,3992.50,51.75,1664.94,2026.13,0.00,3517885986401.412109,3517885986402.922363,21,0,0.001152,0.003195,73426522,48797502,0,0,71381,0,1,1 +1774161852.835803,33.86,4,3992.50,58.08,1425.62,2273.79,0.00,0.048046,0.000000,70,0,55.282710,0.032951,73432508,48799705,0,0,71384,0,1,1 +1774161857.837675,29.62,4,3992.50,57.91,1434.09,2267.49,0.00,1.489774,0.028310,237,494,120.121716,0.021649,73444766,48801158,0,0,71386,0,1,1 +1774161862.837548,27.86,4,3992.50,58.08,1427.64,2273.97,0.00,3518526828574.807129,3518526828576.317383,21,0,120.167663,0.019260,73456907,48802449,0,0,71389,0,1,1 +1774161867.837608,27.88,4,3992.50,57.89,1434.90,2266.69,0.00,0.048046,0.000000,70,0,120.171819,0.047556,73469134,48806033,0,0,71391,0,1,1 +1774161872.837385,28.42,4,3992.50,57.73,1436.57,2260.28,0.00,0.000000,0.000000,70,0,119.398236,0.098743,73481813,48813565,0,0,71394,0,1,1 +1774161877.834270,28.55,4,3992.50,57.60,1441.67,2255.16,0.00,0.127032,0.000000,199,0,119.074829,0.113324,73494755,48822234,0,0,71396,0,1,1 +1774161882.837250,29.39,4,3992.50,57.85,1431.93,2264.94,0.00,0.000000,0.000000,199,0,120.127551,0.112647,73507642,48830856,0,0,71399,0,1,1 +1774161887.837590,28.15,4,3992.50,57.68,1438.64,2258.22,0.00,105641.010898,150333.798407,8675897,2653718,118.790827,0.113389,73520489,48839529,0,0,71401,0,1,1 +1774161892.837079,20.19,4,3992.50,57.64,1440.36,2256.59,0.00,3518796551821.574219,3518796507121.183594,199,0,119.595874,0.069987,73533060,48844798,0,0,71404,0,1,1 +1774161897.835955,1.30,4,3992.50,52.35,1647.91,2049.51,0.00,105667.986032,150378.027176,8675136,2653317,12.826217,0.010854,73534487,48845427,0,0,71406,0,1,1 +1774161902.838048,10.25,4,3992.50,51.96,1662.29,2034.54,0.00,3516964641585.978516,3516964596903.359863,237,494,6.049191,0.035090,73536578,48846968,0,0,71409,0,1,1 +1774161907.838911,23.19,4,3992.50,52.55,1639.40,2057.38,0.00,3517830488657.282715,3517830488658.792969,21,0,32.200141,0.137066,73546906,48854559,0,0,71411,0,1,1 +1774161912.835810,4.72,4,3992.50,52.59,1637.71,2059.03,0.00,105714.141275,150440.155531,8675930,2655403,2.011313,1.223554,73547951,48855518,0,0,71414,0,1,1 +1774161917.837377,26.81,4,3992.50,52.61,1630.04,2059.96,0.00,3517334812712.340332,3517334768028.070312,21,0,0.037317,110.124874,73550722,48867046,0,0,71416,0,1,1 +1774161922.834834,23.25,4,3992.50,51.88,1652.89,2031.04,0.00,105698.217595,150625.379530,8675158,2656363,0.046950,93.794017,73554184,48877029,0,0,71419,0,1,1 +1774161927.833218,13.90,4,3992.50,52.87,1618.09,2069.96,0.00,3519574957889.558105,3519574912970.673828,70,0,40.079097,0.026585,73558660,48878579,0,0,71421,0,1,1 +1774161932.833218,3.16,4,3992.50,52.53,1638.11,2056.55,0.00,0.000000,0.000000,70,0,0.007409,0.006203,73558816,48878712,0,0,71424,0,1,1 +1774161937.833204,1.05,4,3992.50,52.19,1651.11,2043.55,0.00,0.000000,0.000000,70,0,0.003206,0.005567,73558889,48878805,0,0,71426,0,1,1 +1774161942.833244,0.90,4,3992.50,52.01,1658.45,2036.21,0.00,1.958773,0.000195,238,2,0.002784,0.004348,73558958,48878892,0,0,71429,0,1,1 +1774161947.834928,0.95,4,3992.50,51.81,1666.27,2028.39,0.00,105624.357953,150498.621982,8675263,2656693,0.002741,0.004283,73559024,48878975,0,0,71431,0,1,1 +1774161952.835680,0.75,4,3992.50,51.76,1668.23,2026.43,0.00,3517908636655.168945,3517908591773.032227,237,494,0.002721,0.003964,73559088,48879056,0,0,71434,0,1,1 +1774161957.833223,1.10,4,3992.50,51.80,1660.16,2028.28,0.00,3520166715367.396973,3520166715368.732910,199,0,0.002154,0.003750,73559144,48879131,0,0,71436,0,1,1 +1774161962.838133,0.65,4,3992.50,51.60,1668.30,2020.13,0.00,1.362041,0.028293,237,494,0.002502,0.003327,73559202,48879200,0,0,71439,0,1,1 +1774161967.838038,0.65,4,3992.50,51.62,1667.56,2020.88,0.00,3518503950679.449707,3518503950680.911621,70,0,0.002734,0.003954,73559267,48879280,0,0,71441,0,1,1 +1774161972.833230,1.31,4,3992.50,51.42,1675.19,2013.27,0.00,1.960675,0.000196,238,2,0.002830,0.004044,73559338,48879367,0,0,71444,0,1,1 +1774161977.833212,0.85,4,3992.50,51.51,1671.76,2016.70,0.00,3518450027298.332520,3518450027300.339355,21,0,0.002555,0.003383,73559400,48879439,0,0,71446,0,1,1 +1774161982.834717,0.75,4,3992.50,51.51,1671.77,2016.69,0.00,105634.244689,150508.123075,8676037,2657656,0.002808,0.004003,73559470,48879523,0,0,71449,0,1,1 +1774161987.834904,0.85,4,3992.50,51.61,1667.70,2020.79,0.00,3518305398973.024902,3518305354087.143555,199,0,0.002734,0.003954,73559535,48879603,0,0,71451,0,1,1 +1774161992.834902,0.95,4,3992.50,51.50,1671.96,2016.49,0.00,105665.921936,150553.666352,8676037,2657801,0.002746,0.003964,73559601,48879684,0,0,71454,0,1,1 +1774161997.834908,0.80,4,3992.50,51.50,1672.26,2016.20,0.00,3518432806507.012207,3518432761619.520020,21,0,0.002742,0.003962,73559667,48879765,0,0,71456,0,1,1 +1774162002.833236,0.80,4,3992.50,51.53,1671.10,2017.36,0.00,105697.268429,150603.980613,8675263,2657392,0.002722,0.003966,73559731,48879846,0,0,71459,0,1,1 +1774162007.834039,10.89,4,3992.50,51.96,1651.79,2034.50,0.00,4.108617,34.058785,8676037,2658095,0.024996,40.060503,73561338,48884362,0,0,71461,0,1,1 +1774162012.834889,0.85,4,3992.50,51.85,1656.07,2030.21,0.00,0.000000,0.094613,8676037,2658168,0.002569,0.006765,73561412,48884484,0,0,71464,0,1,1 +1774162017.835328,1.00,4,3992.50,51.86,1655.94,2030.34,0.00,3518128184121.189941,3518128139203.384277,21,0,0.000915,0.002554,73561440,48884534,0,0,71466,0,1,1 +1774162022.837948,0.65,4,3992.50,51.82,1657.44,2028.85,0.00,105610.737947,150509.046506,8676043,2658237,0.001152,0.003204,73561476,48884598,0,0,71469,0,1,1 +1774162027.833805,0.60,4,3992.50,51.80,1658.05,2028.23,0.00,3521355210138.325195,3521355165177.226074,238,2,0.001145,0.003191,73561511,48884660,0,0,71471,0,1,1 +1774162032.834811,0.55,4,3992.50,51.79,1658.68,2027.61,0.00,3517728873366.885742,3517728873368.892578,21,0,0.001144,0.003197,73561546,48884723,0,0,71474,0,1,1 +1774162037.836388,0.45,4,3992.50,51.79,1658.44,2027.84,0.00,1.537894,0.028311,237,494,0.000915,0.002554,73561574,48884773,0,0,71476,0,1,1 +1774162042.836395,0.65,4,3992.50,51.70,1662.22,2024.06,0.00,0.000000,0.000000,237,494,0.001170,0.003229,73561611,48884838,0,0,71479,0,1,1 +1774162047.835833,0.70,4,3992.50,51.89,1655.41,2031.65,0.00,0.468510,3518832422324.086426,238,2,0.001203,0.003258,73561651,48884905,0,0,71481,0,1,1 +1774162052.837794,0.55,4,3992.50,51.87,1656.28,2030.79,0.00,0.000000,0.000000,238,2,0.001519,0.003844,73561698,48884985,0,0,71484,0,1,1 +1774162057.834935,0.65,4,3992.50,51.87,1656.28,2030.79,0.00,0.000000,0.000000,238,2,0.001569,0.003846,73561747,48885066,0,0,71486,0,1,1 +1774162062.835327,0.55,4,3992.50,51.91,1654.84,2032.22,0.00,3518161062088.278320,0.028123,237,494,0.001144,0.003198,73561782,48885129,0,0,71489,0,1,1 +1774162067.837232,0.55,4,3992.50,51.74,1661.23,2025.84,0.00,3517097678618.748535,3517097678620.258301,21,0,0.000915,0.002553,73561810,48885179,0,0,71491,0,1,1 +1774162072.833238,28.04,4,3992.50,57.78,1431.82,2262.41,0.00,1.539609,0.028343,237,494,40.697116,0.027525,73566360,48886950,0,0,71494,0,1,1 +1774162077.838078,31.64,4,3992.50,58.16,1421.03,2277.04,0.00,0.468004,3515035053556.304688,238,2,118.051290,0.028130,73578531,48888898,0,0,71496,0,1,1 +1774162082.837622,29.23,4,3992.50,58.13,1422.18,2276.00,0.00,3518757977450.914062,3518757977452.921387,21,0,119.381136,0.041757,73590685,48891981,0,0,71499,0,1,1 +1774162087.837498,29.82,4,3992.50,57.84,1433.63,2264.55,0.00,0.048048,0.000000,70,0,118.980395,0.058704,73602951,48896298,0,0,71501,0,1,1 +1774162092.834910,28.79,4,3992.50,57.91,1431.05,2267.22,0.00,1.959803,0.000195,238,2,119.856496,0.100050,73615728,48903958,0,0,71504,0,1,1 +1774162097.833538,29.54,4,3992.50,58.05,1425.13,2272.95,0.00,105688.968369,150635.689734,8675269,2658180,118.627336,0.099875,73628440,48911538,0,0,71506,0,1,1 +1774162102.833539,29.48,4,3992.50,57.90,1431.33,2266.80,0.00,3518436381941.824707,3518436337009.408203,70,0,119.656458,0.095201,73641251,48918677,0,0,71509,0,1,1 +1774162107.835024,29.45,4,3992.50,58.39,1423.04,2286.24,0.00,1.958208,0.000195,238,2,119.495647,0.097947,73653999,48926110,0,0,71511,0,1,1 +1774162112.837199,25.49,4,3992.50,57.84,1444.88,2264.46,0.00,3516907401991.315918,3516907401993.273438,70,0,119.337525,0.089099,73666707,48932938,0,0,71514,0,1,1 +1774162117.833208,10.22,4,3992.50,52.94,1636.55,2072.80,0.00,1.491522,0.028343,237,494,39.547083,0.067593,73672931,48936756,0,0,71516,0,1,1 +1774162122.837389,22.53,4,3992.50,52.77,1643.37,2065.94,0.00,3515498038076.449219,3515498038077.958008,21,0,30.147908,0.129464,73682495,48943988,0,0,71519,0,1,1 +1774162127.835414,4.46,4,3992.50,52.03,1672.33,2036.98,0.00,0.175069,0.000000,199,0,2.027646,0.019241,73683462,48944726,0,0,71521,0,1,1 +1774162132.837703,1.05,4,3992.50,51.86,1678.72,2030.60,0.00,105617.726736,150526.552443,8676061,2659823,0.002794,0.003342,73683519,48944796,0,0,71524,0,1,1 +1774162137.837783,0.95,4,3992.50,52.13,1666.45,2040.91,0.00,3518380256747.337891,3518380211818.689453,199,0,0.002734,0.003954,73683584,48944876,0,0,71526,0,1,1 +1774162142.837448,1.00,4,3992.50,52.09,1667.73,2039.48,0.00,3518673273154.247559,0.000000,21,0,0.002734,0.004608,73683649,48944961,0,0,71529,0,1,1 +1774162147.835281,0.70,4,3992.50,52.11,1667.00,2040.20,0.00,105707.935261,150661.451293,8675287,2659847,0.002743,0.003964,73683715,48945042,0,0,71531,0,1,1 +1774162152.838004,0.60,4,3992.50,51.92,1674.42,2032.79,0.00,3516521908333.796875,3516521863424.224121,21,0,0.002763,0.003987,73683782,48945125,0,0,71534,0,1,1 +1774162157.837128,0.70,4,3992.50,51.92,1674.43,2032.79,0.00,105680.637027,150622.566734,8675287,2659870,0.002734,0.003955,73683847,48945205,0,0,71536,0,1,1 +1774162162.836286,0.50,4,3992.50,51.92,1674.45,2032.77,0.00,4.109969,0.078040,8676061,2660422,0.002631,0.003487,73683915,48945284,0,0,71539,0,1,1 +1774162167.837963,0.90,4,3992.50,52.24,1662.16,2045.24,0.00,3517257438990.822754,3517257394074.353516,237,494,0.002733,0.003953,73683980,48945364,0,0,71541,0,1,1 +1774162172.835546,0.65,4,3992.50,51.90,1675.25,2031.98,0.00,105715.775282,150669.146696,8676061,2660520,0.002774,0.003999,73684048,48945448,0,0,71544,0,1,1 +1774162177.835768,0.60,4,3992.50,51.89,1675.59,2031.59,0.00,3518281184957.009766,3518281140028.862793,21,0,0.002777,0.003969,73684116,48945529,0,0,71546,0,1,1 +1774162182.837966,0.70,4,3992.50,51.88,1675.93,2031.29,0.00,1.537703,0.028308,237,494,0.002732,0.003962,73684181,48945610,0,0,71549,0,1,1 +1774162187.837962,0.60,4,3992.50,51.93,1674.23,2033.00,0.00,0.468457,3518440012376.173828,238,2,0.002746,0.003954,73684247,48945690,0,0,71551,0,1,1 +1774162192.837268,0.60,4,3992.50,51.95,1673.23,2034.00,0.00,105678.907016,150617.404306,8676061,2660642,0.002734,0.003965,73684312,48945771,0,0,71554,0,1,1 +1774162197.834920,1.05,4,3992.50,51.95,1663.59,2033.97,0.00,3520089734659.640625,3520089689706.779297,237,494,0.002514,0.003330,73684371,48945840,0,0,71556,0,1,1 +1774162202.833227,0.70,4,3992.50,51.93,1664.34,2033.07,0.00,0.000000,0.000000,237,494,0.002735,0.003966,73684436,48945921,0,0,71559,0,1,1 +1774162207.837583,0.75,4,3992.50,51.93,1664.32,2033.04,0.00,3515375154009.112793,3515375154010.621582,21,0,0.002731,0.004594,73684501,48946005,0,0,71561,0,1,1 +1774162212.835627,0.65,4,3992.50,51.93,1664.16,2033.25,0.00,0.048066,0.000000,70,0,0.002735,0.003966,73684566,48946086,0,0,71564,0,1,1 +1774162217.834901,0.75,4,3992.50,51.93,1664.18,2033.23,0.00,3518947887045.995117,0.000000,21,0,0.002734,0.003955,73684631,48946166,0,0,71566,0,1,1 +1774162222.834911,8.72,4,3992.50,52.59,1637.50,2058.89,0.00,0.000000,0.000000,21,0,0.025204,32.653509,73686303,48949822,0,0,71569,0,1,1 +1774162227.834866,31.39,4,3992.50,52.57,1630.23,2058.05,0.00,105663.090888,150717.424507,8675297,2661131,0.027969,118.172678,73688366,48962196,0,0,71571,0,1,1 +1774162232.837287,15.23,4,3992.50,51.95,1651.28,2033.99,0.00,3516734260401.457520,3516734215369.289062,70,0,0.028046,54.262300,73690292,48968060,0,0,71574,0,1,1 +1774162237.834897,15.63,4,3992.50,53.78,1584.06,2105.54,0.00,105730.124600,150874.085436,8675404,2661842,40.081681,0.025146,73694663,48969688,0,0,71576,0,1,1 +1774162242.834894,0.90,4,3992.50,53.49,1595.44,2094.15,0.00,3518439157972.211914,3518439112849.677734,199,0,0.003807,0.003692,73694744,48969772,0,0,71579,0,1,1 +1774162247.838022,11.30,4,3992.50,51.97,1652.71,2034.57,0.00,0.000000,0.000000,199,0,0.022707,40.040945,73696268,48974232,0,0,71581,0,1,1 +1774162252.834923,1.00,4,3992.50,51.76,1660.68,2026.61,0.00,3520619962278.181641,0.000000,21,0,0.002547,0.006286,73696339,48974351,0,0,71584,0,1,1 +1774162257.836274,0.85,4,3992.50,52.19,1650.54,2043.51,0.00,0.048034,0.000000,70,0,0.001144,0.003174,73696374,48974412,0,0,71586,0,1,1 +1774162262.833226,0.55,4,3992.50,52.13,1652.57,2041.16,0.00,0.127031,0.000000,199,0,0.000916,0.002578,73696402,48974464,0,0,71589,0,1,1 +1774162267.833264,0.60,4,3992.50,52.10,1654.04,2039.69,0.00,1.831822,0.000195,238,2,0.001170,0.003219,73696439,48974528,0,0,71591,0,1,1 +1774162272.833591,0.55,4,3992.50,52.10,1653.79,2039.93,0.00,0.000000,0.000000,238,2,0.001144,0.003842,73696474,48974595,0,0,71594,0,1,1 +1774162277.838127,0.55,4,3992.50,52.10,1653.80,2039.93,0.00,3515248558551.143066,3515248558552.973633,199,0,0.001202,0.003255,73696514,48974662,0,0,71596,0,1,1 +1774162282.837235,1.60,4,3992.50,52.11,1653.56,2040.17,0.00,105698.310850,150869.268154,8675404,2662355,0.001170,0.003230,73696551,48974727,0,0,71599,0,1,1 +1774162287.837923,0.80,4,3992.50,52.11,1653.32,2040.40,0.00,3517952818300.823730,3517952773144.140625,199,0,0.001245,0.003312,73696594,48974797,0,0,71601,0,1,1 +1774162292.835187,0.65,4,3992.50,51.92,1660.97,2032.77,0.00,3520363514482.296387,0.000000,21,0,0.000972,0.002622,73696626,48974852,0,0,71604,0,1,1 +1774162297.837427,0.60,4,3992.50,51.92,1660.97,2032.77,0.00,1.537690,0.028308,237,494,0.001268,0.003287,73696669,48974922,0,0,71606,0,1,1 +1774162302.838107,1.05,4,3992.50,51.92,1660.98,2032.76,0.00,3517958398561.009277,3517958398562.519043,21,0,0.001152,0.003205,73696705,48974986,0,0,71609,0,1,1 +1774162307.836365,0.55,4,3992.50,51.92,1660.98,2032.76,0.00,0.000000,0.000000,21,0,0.001145,0.003189,73696740,48975048,0,0,71611,0,1,1 +1774162312.837588,26.87,4,3992.50,58.25,1420.81,2280.77,0.00,1.538003,0.028313,237,494,60.085410,0.049818,73703446,48978496,0,0,71614,0,1,1 +1774162317.834848,36.21,4,3992.50,58.17,1426.59,2277.40,0.00,3520366640164.677734,3520366640166.141113,70,0,122.246844,0.048922,73715924,48982143,0,0,71616,0,1,1 +1774162322.836034,31.69,4,3992.50,58.49,1414.02,2290.14,0.00,1.489978,0.028314,237,494,121.418996,0.020224,73727806,48983643,0,0,71619,0,1,1 +1774162327.837930,31.41,4,3992.50,58.40,1417.39,2286.65,0.00,105638.046911,150785.580862,8675404,2662666,120.645266,0.026837,73739687,48985554,0,0,71621,0,1,1 +1774162332.837131,31.31,4,3992.50,58.44,1415.98,2288.07,0.00,3518999321056.744629,3518999275886.341309,70,0,118.971364,0.033854,73751279,48988039,0,0,71624,0,1,1 +1774162337.834163,31.01,4,3992.50,58.64,1408.20,2295.90,0.00,105746.454363,150932.391199,8676178,2663195,119.256899,0.033178,73762589,48990424,0,0,71626,0,1,1 +1774162342.837654,31.18,4,3992.50,58.31,1421.23,2282.85,0.00,3515982435533.952637,3515982390404.878906,237,494,119.041613,0.031417,73773570,48992644,0,0,71629,0,1,1 +1774162347.835337,31.40,4,3992.50,58.63,1408.41,2295.55,0.00,0.000000,0.000000,237,494,119.941568,0.029613,73784541,48994752,0,0,71631,0,1,1 +1774162352.834910,19.62,4,3992.50,58.61,1409.17,2294.67,0.00,0.000000,0.000000,237,494,119.395571,0.028978,73795411,48996856,0,0,71634,0,1,1 +1774162357.836787,1.00,4,3992.50,52.68,1641.18,2062.66,0.00,105642.626207,150786.410413,8676187,2663286,4.424909,0.005962,73795925,48997060,0,0,71636,0,1,1 +1774162362.834923,12.32,4,3992.50,51.98,1668.59,2035.26,0.00,3519749029112.315430,3519748983934.253418,238,2,12.087904,0.061060,73800008,49000111,0,0,71639,0,1,1 +1774162367.834883,24.69,4,3992.50,52.72,1639.89,2063.95,0.00,3518465168012.804199,3518465168014.811523,21,0,28.174900,0.126123,73809111,49006932,0,0,71641,0,1,1 +1774162372.833224,1.35,4,3992.50,52.12,1663.06,2040.77,0.00,1.538890,0.028330,237,494,0.003235,0.004729,73809187,49007025,0,0,71644,0,1,1 +1774162377.837085,0.95,4,3992.50,52.38,1652.92,2050.90,0.00,3515722513507.817871,3515722513509.151855,199,0,0.002113,0.003702,73809240,49007097,0,0,71646,0,1,1 +1774162382.837746,20.56,4,3992.50,52.47,1645.12,2054.20,0.00,3517971757297.326660,0.000000,21,0,0.033290,79.509618,73811542,49015708,0,0,71649,0,1,1 +1774162387.833194,31.04,4,3992.50,52.54,1634.26,2057.03,0.00,1.539781,0.028346,237,494,0.024639,120.284504,73813301,49028360,0,0,71651,0,1,1 +1774162392.833205,15.12,4,3992.50,56.83,1470.67,2224.89,0.00,0.000000,0.000000,237,494,40.067196,5.436466,73817863,49030550,0,0,71654,0,1,1 +1774162397.837754,0.85,4,3992.50,52.40,1643.88,2051.68,0.00,105603.677100,150912.280692,8676329,2666254,0.005214,0.004617,73817985,49030666,0,0,71656,0,1,1 +1774162402.833239,1.05,4,3992.50,52.26,1649.54,2046.03,0.00,3521617374411.701172,3521617329020.886719,237,494,0.004461,0.007321,73818075,49030784,0,0,71659,0,1,1 +1774162407.833238,0.90,4,3992.50,52.36,1645.78,2049.85,0.00,105695.672062,151049.775626,8675559,2665870,0.002938,0.004816,73818147,49030878,0,0,71661,0,1,1 +1774162412.837382,0.80,4,3992.50,52.15,1653.84,2041.73,0.00,3515523126143.712402,3515523080828.688477,21,0,0.002731,0.003961,73818212,49030959,0,0,71664,0,1,1 +1774162417.838095,0.60,4,3992.50,52.15,1653.94,2041.61,0.00,0.048040,0.000000,70,0,0.002504,0.003320,73818270,49031027,0,0,71666,0,1,1 +1774162422.837617,0.65,4,3992.50,52.05,1657.59,2037.98,0.00,0.126965,0.000000,199,0,0.003391,0.004899,73818337,49031111,0,0,71669,0,1,1 +1774162427.833215,0.70,4,3992.50,52.05,1657.61,2037.96,0.00,1.364580,0.028345,237,494,0.002761,0.003989,73818404,49031193,0,0,71671,0,1,1 +1774162432.834910,0.60,4,3992.50,52.22,1650.93,2044.64,0.00,3517244168101.228027,3517244168102.737793,21,0,0.002733,0.003963,73818469,49031274,0,0,71674,0,1,1 +1774162437.837614,0.95,4,3992.50,52.41,1643.82,2051.97,0.00,0.174905,0.000000,199,0,0.002802,0.004011,73818539,49031359,0,0,71676,0,1,1 +1774162442.837723,0.85,4,3992.50,52.22,1651.19,2044.39,0.00,3518360595877.377930,0.000000,21,0,0.002734,0.003964,73818604,49031440,0,0,71679,0,1,1 +1774162447.833234,0.85,4,3992.50,52.22,1651.20,2044.38,0.00,0.175157,0.000000,199,0,0.002811,0.003998,73818674,49031523,0,0,71681,0,1,1 +1774162452.833231,0.70,4,3992.50,52.22,1651.20,2044.40,0.00,1.831837,0.000195,238,2,0.002563,0.003426,73818736,49031599,0,0,71684,0,1,1 +1774162457.837624,0.55,4,3992.50,52.22,1651.21,2044.39,0.00,3515348655894.870117,0.028100,237,494,0.002705,0.003881,73818799,49031674,0,0,71686,0,1,1 +1774162462.834928,0.65,4,3992.50,52.22,1651.23,2044.37,0.00,3520335183514.687988,3520335183516.023926,199,0,0.002743,0.003974,73818865,49031756,0,0,71689,0,1,1 +1774162467.838006,11.14,4,3992.50,52.52,1640.44,2056.30,0.00,105632.006802,150991.469613,8675559,2666581,0.022703,40.039359,73820371,49036179,0,0,71691,0,1,1 +1774162472.837703,0.95,4,3992.50,51.83,1667.24,2029.21,0.00,3518649926617.637695,3518649881225.682129,238,2,0.002587,0.006098,73820458,49036298,0,0,71694,0,1,1 +1774162477.833272,0.55,4,3992.50,51.82,1667.46,2028.98,0.00,3521558357601.795410,3521558357603.804199,21,0,0.001145,0.003191,73820493,49036360,0,0,71696,0,1,1 +1774162482.837928,0.60,4,3992.50,51.84,1666.73,2029.72,0.00,1.536948,0.028294,237,494,0.001143,0.003195,73820528,49036423,0,0,71699,0,1,1 +1774162487.837517,0.55,4,3992.50,51.85,1666.48,2029.96,0.00,3518726577695.534180,3518726577696.996582,70,0,0.001145,0.003188,73820563,49036485,0,0,71701,0,1,1 +1774162492.837697,0.70,4,3992.50,51.78,1669.11,2027.33,0.00,0.000000,0.000000,70,0,0.001165,0.003193,73820600,49036548,0,0,71704,0,1,1 +1774162497.834899,0.95,4,3992.50,52.27,1650.58,2046.48,0.00,3520406576424.020996,0.000000,21,0,0.000916,0.002568,73820628,49036599,0,0,71706,0,1,1 +1774162502.837399,0.65,4,3992.50,52.21,1652.57,2044.29,0.00,105648.497081,151015.210055,8676334,2667332,0.001169,0.003227,73820665,49036664,0,0,71709,0,1,1 +1774162507.836261,0.65,4,3992.50,52.21,1652.66,2044.20,0.00,3519238061353.074219,3519238015953.350586,21,0,0.001195,0.003251,73820704,49036730,0,0,71711,0,1,1 +1774162512.837385,0.65,4,3992.50,52.21,1652.82,2044.04,0.00,0.000000,0.000000,21,0,0.001251,0.003316,73820747,49036801,0,0,71714,0,1,1 +1774162517.838120,0.65,4,3992.50,52.21,1652.71,2044.14,0.00,105681.666980,151068.513281,8675560,2666885,0.001277,0.003296,73820791,49036872,0,0,71716,0,1,1 +1774162522.837217,0.50,4,3992.50,52.21,1652.72,2044.13,0.00,4.110020,0.038679,8676334,2667387,0.001145,0.003198,73820826,49036935,0,0,71719,0,1,1 +1774162527.837294,1.05,4,3992.50,52.22,1660.19,2044.59,0.00,3518383369727.566895,3518383324338.638672,199,0,0.001132,0.003188,73820860,49036997,0,0,71721,0,1,1 +1774162532.837399,16.23,4,3992.50,58.66,1415.45,2296.82,0.00,105694.804318,151087.612263,8675560,2666950,14.522100,0.019306,73822743,49038055,0,0,71724,0,1,1 +1774162537.836333,34.54,4,3992.50,58.36,1430.63,2285.02,0.00,3519187139096.444824,3519187093691.671387,237,494,118.698835,0.045015,73834929,49041329,0,0,71726,0,1,1 +1774162542.833206,29.56,4,3992.50,58.42,1428.78,2287.25,0.00,0.000000,0.000000,237,494,118.241135,0.026872,73847168,49043265,0,0,71729,0,1,1 +1774162547.837195,29.28,4,3992.50,58.26,1434.94,2281.14,0.00,105615.516403,150970.437412,8676334,2667560,120.072440,0.027829,73859589,49045320,0,0,71731,0,1,1 +1774162552.833192,28.99,4,3992.50,58.33,1432.16,2283.77,0.00,0.000000,0.009871,8676334,2667572,118.258489,0.028763,73871740,49047431,0,0,71734,0,1,1 +1774162557.833739,29.26,4,3992.50,58.48,1421.27,2289.64,0.00,3518052331843.155273,0.060345,8675560,2667112,120.152637,0.029077,73884040,49049569,0,0,71736,0,1,1 +1774162562.833420,29.48,4,3992.50,58.50,1420.55,2290.28,0.00,3518661700068.054688,3518661654669.377930,238,2,118.571899,0.044444,73896169,49052860,0,0,71739,0,1,1 +1774162567.837298,29.20,4,3992.50,58.33,1427.03,2283.87,0.00,0.000000,0.000000,238,2,119.675270,0.025410,73908530,49054621,0,0,71741,0,1,1 +1774162572.837729,29.51,4,3992.50,58.19,1432.59,2278.32,0.00,105686.077494,151078.139319,8675560,2667190,119.555049,0.028848,73920759,49056730,0,0,71744,0,1,1 +1774162577.834962,3.62,4,3992.50,52.90,1639.86,2071.11,0.00,3520385323852.535645,3520385278433.429688,21,0,57.715686,0.021950,73926715,49058186,0,0,71746,0,1,1 +1774162582.837476,6.52,4,3992.50,52.91,1639.56,2071.41,0.00,0.000000,0.000000,21,0,6.146256,0.033594,73928867,49059816,0,0,71749,0,1,1 +1774162587.833515,23.08,4,3992.50,52.79,1644.25,2066.98,0.00,0.000000,0.000000,21,0,30.101788,0.132979,73938668,49067106,0,0,71751,0,1,1 +1774162592.837219,4.46,4,3992.50,52.85,1641.92,2069.03,0.00,105623.191113,150980.447464,8676345,2669022,4.033192,0.024074,73940180,49068204,0,0,71754,0,1,1 +1774162597.833213,1.96,4,3992.50,51.87,1680.07,2030.88,0.00,0.000000,0.067730,8676345,2669057,0.003461,0.005524,73940263,49068310,0,0,71756,0,1,1 +1774162602.835808,1.05,4,3992.50,51.87,1680.08,2030.87,0.00,3516612504059.726562,3516612504063.808105,8675571,2668568,0.002732,0.004445,73940328,49068394,0,0,71759,0,1,1 +1774162607.834930,0.70,4,3992.50,51.89,1679.42,2031.53,0.00,3519054571281.145996,3519054525877.993164,199,0,0.002734,0.003955,73940393,49068474,0,0,71761,0,1,1 +1774162612.837292,0.70,4,3992.50,51.82,1681.89,2029.06,0.00,1.362735,0.028307,237,494,0.002720,0.003962,73940457,49068555,0,0,71764,0,1,1 +1774162617.833197,3.06,4,3992.50,52.75,1643.74,2065.30,0.00,3521321485984.824219,3521321485986.335449,21,0,0.002507,0.003337,73940515,49068624,0,0,71766,0,1,1 +1774162622.836590,1.00,4,3992.50,52.65,1647.39,2061.55,0.00,1.537336,0.028301,237,494,0.002858,0.004117,73940590,49068715,0,0,71769,0,1,1 +1774162627.835732,0.60,4,3992.50,52.63,1648.40,2060.54,0.00,3519040972148.869629,3519040972150.380371,21,0,0.002734,0.003955,73940655,49068795,0,0,71771,0,1,1 +1774162632.837916,0.70,4,3992.50,52.43,1656.15,2052.80,0.00,0.000000,0.000000,21,0,0.002740,0.003971,73940721,49068877,0,0,71774,0,1,1 +1774162637.835330,0.60,4,3992.50,52.43,1656.16,2052.78,0.00,2.007875,0.000195,238,2,0.002506,0.003322,73940779,49068945,0,0,71776,0,1,1 +1774162642.835934,0.60,4,3992.50,52.43,1656.18,2052.77,0.00,3518011568179.618652,3518011568181.577148,70,0,0.002808,0.004004,73940849,49069029,0,0,71779,0,1,1 +1774162647.833725,0.85,4,3992.50,52.44,1652.30,2053.13,0.00,0.127009,0.000000,199,0,0.002735,0.003956,73940914,49069109,0,0,71781,0,1,1 +1774162652.834883,0.75,4,3992.50,52.32,1657.16,2048.27,0.00,0.000000,0.000000,199,0,0.003041,0.004518,73940986,49069201,0,0,71784,0,1,1 +1774162657.835261,0.70,4,3992.50,52.32,1657.18,2048.25,0.00,105694.040693,151081.792127,8676560,2669584,0.003033,0.004509,73941057,49069292,0,0,71786,0,1,1 +1774162662.838125,0.65,4,3992.50,52.31,1657.19,2048.24,0.00,3516422740107.830078,3516422694741.301270,237,494,0.002732,0.003962,73941122,49069373,0,0,71789,0,1,1 +1774162667.833219,0.60,4,3992.50,52.32,1656.98,2048.46,0.00,3521892872558.751953,3521892872560.263672,21,0,0.002736,0.004603,73941187,49069457,0,0,71791,0,1,1 +1774162672.833237,0.60,4,3992.50,52.32,1656.98,2048.45,0.00,2.006829,0.000195,238,2,0.002513,0.003339,73941246,49069527,0,0,71794,0,1,1 +1774162677.837396,2.76,4,3992.50,52.48,1646.17,2054.57,0.00,3515513100003.512207,3515513100005.469238,70,0,0.011500,4.811816,73941842,49070373,0,0,71796,0,1,1 +1774162682.839672,29.22,4,3992.50,52.47,1639.30,2054.42,0.00,3516836158671.408203,0.000000,21,0,0.037299,114.514998,73944516,49082352,0,0,71799,0,1,1 +1774162687.838117,23.47,4,3992.50,52.10,1648.31,2039.90,0.00,0.000000,0.000000,21,0,0.016141,85.749495,73945617,49091263,0,0,71801,0,1,1 +1774162692.837211,14.92,4,3992.50,57.10,1456.01,2235.70,0.00,105734.714609,151325.927230,8675898,2670656,30.856441,0.023931,73949092,49092648,0,0,71804,0,1,1 +1774162697.837166,10.05,4,3992.50,52.34,1640.79,2049.21,0.00,3518468947422.687500,3518468901839.318359,21,0,9.238272,37.465717,73951546,49097010,0,0,71806,0,1,1 +1774162702.837896,2.06,4,3992.50,51.92,1657.09,2032.61,0.00,1.538154,0.028316,237,494,0.003819,2.609853,73951658,49097414,0,0,71809,0,1,1 +1774162707.834899,0.90,4,3992.50,52.48,1641.61,2054.74,0.00,0.000000,0.000000,237,494,0.001350,0.003730,73951700,49097488,0,0,71811,0,1,1 +1774162712.838129,0.70,4,3992.50,52.25,1650.32,2045.90,0.00,105645.845904,151235.210093,8675904,2671145,0.000915,0.002563,73951728,49097539,0,0,71814,0,1,1 +1774162717.834588,0.55,4,3992.50,52.23,1651.33,2044.89,0.00,3520930445133.174805,3520930399483.374023,199,0,0.001145,0.003190,73951763,49097601,0,0,71816,0,1,1 +1774162722.833309,0.65,4,3992.50,52.25,1650.48,2045.74,0.00,3519337428650.309082,0.000000,21,0,0.001170,0.003230,73951800,49097666,0,0,71819,0,1,1 +1774162727.834898,0.60,4,3992.50,52.25,1650.57,2045.64,0.00,0.174944,0.000000,199,0,0.001144,0.003187,73951835,49097728,0,0,71821,0,1,1 +1774162732.837749,0.60,4,3992.50,52.25,1650.58,2045.64,0.00,0.000000,0.000000,199,0,0.001144,0.003840,73951870,49097795,0,0,71824,0,1,1 +1774162737.837750,0.80,4,3992.50,51.96,1648.75,2034.27,0.00,1.363378,0.028320,237,494,0.001144,0.003188,73951905,49097857,0,0,71826,0,1,1 +1774162742.837264,0.50,4,3992.50,51.98,1648.03,2035.00,0.00,105724.367402,151353.772832,8675904,2671312,0.001067,0.002751,73951945,49097920,0,0,71829,0,1,1 +1774162747.836185,0.60,4,3992.50,51.98,1648.04,2035.00,0.00,3519196252923.372070,3519196207288.562500,237,494,0.001048,0.002664,73951982,49097979,0,0,71831,0,1,1 +1774162752.837396,0.70,4,3992.50,51.98,1648.04,2035.00,0.00,3517585301781.880859,3517585301783.342773,70,0,0.001175,0.003222,73952019,49098044,0,0,71834,0,1,1 +1774162757.834615,0.55,4,3992.50,51.98,1648.04,2035.00,0.00,1.959879,0.000195,238,2,0.001145,0.003190,73952054,49098106,0,0,71836,0,1,1 +1774162762.837235,16.93,4,3992.50,58.29,1407.52,2282.36,0.00,105658.251689,151259.855004,8675904,2671365,18.823451,0.019134,73954304,49099241,0,0,71839,0,1,1 +1774162767.835074,35.31,4,3992.50,58.42,1413.10,2287.31,0.00,3519958794027.629395,3519958748382.897461,237,494,124.023681,0.041640,73966856,49102309,0,0,71841,0,1,1 +1774162772.837578,30.01,4,3992.50,58.47,1411.02,2289.38,0.00,3516676146087.987793,3516676146089.448730,70,0,122.110810,0.028866,73979472,49104361,0,0,71844,0,1,1 +1774162777.836379,29.31,4,3992.50,58.57,1407.33,2293.11,0.00,3519280653761.755371,0.000000,21,0,121.198010,0.030505,73991900,49106707,0,0,71846,0,1,1 +1774162782.837035,29.81,4,3992.50,58.35,1415.92,2284.46,0.00,0.000000,0.000000,21,0,120.150285,0.050427,74004161,49110501,0,0,71849,0,1,1 +1774162787.838076,29.58,4,3992.50,58.11,1425.39,2274.99,0.00,1.538059,0.028314,237,494,119.939945,0.041163,74016361,49113636,0,0,71851,0,1,1 +1774162792.833237,28.86,4,3992.50,58.16,1423.16,2277.27,0.00,3521845068025.322266,3521845068026.833496,21,0,119.479285,0.049066,74028433,49117291,0,0,71854,0,1,1 +1774162797.837822,29.42,4,3992.50,58.39,1414.38,2286.16,0.00,1.536970,0.028294,237,494,120.055185,0.049938,74040610,49121021,0,0,71856,0,1,1 +1774162802.833291,28.35,4,3992.50,58.04,1423.77,2272.21,0.00,3521628185057.668945,3521628185059.005371,199,0,119.070892,0.045951,74052631,49124429,0,0,71859,0,1,1 +1774162807.835311,1.45,4,3992.50,51.68,1672.65,2023.34,0.00,3517016469985.986328,0.000000,21,0,40.642582,0.019892,74056782,49125744,0,0,71861,0,1,1 +1774162812.834913,5.87,4,3992.50,51.67,1673.07,2022.90,0.00,1.538501,0.028323,237,494,2.021481,0.015640,74057574,49126342,0,0,71864,0,1,1 +1774162817.837089,19.99,4,3992.50,52.80,1628.79,2067.07,0.00,0.468253,3516906946400.281738,238,2,26.143732,0.115559,74065971,49132656,0,0,71866,0,1,1 +1774162822.834866,11.83,4,3992.50,52.44,1642.62,2053.20,0.00,3520001758144.181152,0.028138,237,494,12.089474,0.058512,74069974,49135626,0,0,71869,0,1,1 +1774162827.837801,1.55,4,3992.50,52.50,1642.09,2055.66,0.00,3516373504127.516113,3516373504129.025391,21,0,0.003435,0.005335,74070055,49135729,0,0,71871,0,1,1 +1774162832.837493,1.35,4,3992.50,52.81,1627.40,2067.60,0.00,0.175011,0.000000,199,0,0.004679,0.004323,74070157,49135822,0,0,71874,0,1,1 +1774162837.834893,0.80,4,3992.50,52.76,1629.45,2065.54,0.00,3520267772766.738281,0.000000,21,0,0.002735,0.003956,74070222,49135902,0,0,71876,0,1,1 +1774162842.833192,0.90,4,3992.50,52.32,1646.73,2048.28,0.00,1.538903,0.028330,237,494,0.002735,0.003966,74070287,49135983,0,0,71879,0,1,1 +1774162847.834899,0.80,4,3992.50,52.32,1646.40,2048.60,0.00,105682.281487,151289.444936,8676708,2673665,0.002733,0.003953,74070352,49136063,0,0,71881,0,1,1 +1774162852.837785,0.90,4,3992.50,52.33,1646.18,2048.83,0.00,3516407924807.741211,3516407879211.315918,237,494,0.002808,0.004055,74070423,49136150,0,0,71884,0,1,1 +1774162857.834905,1.05,4,3992.50,52.62,1631.65,2060.35,0.00,3520464747327.218262,3520464747328.729492,21,0,0.002743,0.003965,74070489,49136231,0,0,71886,0,1,1 +1774162862.837608,0.85,4,3992.50,52.60,1632.46,2059.56,0.00,0.174905,0.000000,199,0,0.002732,0.004606,74070554,49136316,0,0,71889,0,1,1 +1774162867.837643,0.75,4,3992.50,52.57,1633.59,2058.43,0.00,3518412991646.403320,0.000000,21,0,0.002734,0.003954,74070619,49136396,0,0,71891,0,1,1 +1774162872.838137,0.75,4,3992.50,52.38,1641.27,2050.76,0.00,105705.347675,151326.502138,8675934,2673553,0.002579,0.003370,74070682,49136468,0,0,71894,0,1,1 +1774162877.837343,0.80,4,3992.50,52.38,1641.03,2050.99,0.00,3518996241408.800293,3518996195773.877930,238,2,0.002784,0.004017,74070751,49136552,0,0,71896,0,1,1 +1774162882.834880,0.60,4,3992.50,52.38,1641.04,2050.98,0.00,3520170868392.728516,3520170868394.687988,70,0,0.002559,0.003833,74070813,49136632,0,0,71899,0,1,1 +1774162887.834901,1.50,4,3992.50,52.48,1637.47,2054.66,0.00,3518422482174.010742,0.000000,21,0,0.002734,0.003954,74070878,49136712,0,0,71901,0,1,1 +1774162892.833520,0.45,4,3992.50,52.48,1637.33,2054.67,0.00,1.538804,0.028328,237,494,0.002730,0.003973,74070943,49136794,0,0,71904,0,1,1 +1774162897.837340,1.20,4,3992.50,52.57,1633.82,2058.17,0.00,0.000000,0.000000,237,494,0.002732,0.003939,74071008,49136873,0,0,71906,0,1,1 +1774162902.835414,0.75,4,3992.50,52.56,1633.96,2058.03,0.00,105754.973109,151399.961065,8675934,2673800,0.002735,0.003953,74071073,49136953,0,0,71909,0,1,1 +1774162907.836079,0.55,4,3992.50,52.56,1633.98,2058.02,0.00,0.000000,0.037104,8675934,2673847,0.002504,0.003353,74071131,49137022,0,0,71911,0,1,1 +1774162912.837929,0.65,4,3992.50,52.56,1634.01,2057.98,0.00,3517135758013.121582,3517135712403.879883,199,0,0.002733,0.003963,74071196,49137103,0,0,71914,0,1,1 +1774162917.834790,0.75,4,3992.50,52.56,1633.12,2057.94,0.00,3520647063418.557129,0.000000,70,0,0.002116,0.003719,74071249,49137176,0,0,71916,0,1,1 +1774162922.833202,23.07,4,3992.50,52.27,1639.41,2046.50,0.00,0.126993,0.000000,199,0,0.039621,92.368672,74074056,49147171,0,0,71919,0,1,1 +1774162927.833229,29.52,4,3992.50,52.37,1628.38,2050.41,0.00,1.831826,0.000195,238,2,0.029733,112.758210,74076308,49158778,0,0,71921,0,1,1 +1774162932.837970,0.80,4,3992.50,52.55,1621.22,2057.56,0.00,3515103557080.330078,0.028098,237,494,0.002220,0.005025,74076367,49158874,0,0,71924,0,1,1 +1774162937.833205,16.10,4,3992.50,56.96,1452.82,2230.07,0.00,3521794267700.871582,3521794267702.208008,199,0,40.093205,0.030916,74080870,49160968,0,0,71926,0,1,1 +1774162942.837509,8.02,4,3992.50,52.25,1635.64,2045.74,0.00,1.362206,0.028296,237,494,0.033962,28.208531,74082184,49164255,0,0,71929,0,1,1 +1774162947.836987,4.61,4,3992.50,52.22,1635.88,2044.45,0.00,3518804105436.845215,3518804105438.355469,21,0,0.005901,11.842708,74082474,49165631,0,0,71931,0,1,1 +1774162952.834892,0.70,4,3992.50,51.85,1650.04,2029.96,0.00,105781.712913,151646.899916,8676836,2676269,0.001224,0.003128,74082509,49165694,0,0,71934,0,1,1 +1774162957.834907,0.50,4,3992.50,51.85,1650.04,2029.96,0.00,3518426416277.417480,3518426370431.589355,21,0,0.001444,0.003743,74082550,49165767,0,0,71936,0,1,1 +1774162962.837250,0.75,4,3992.50,52.15,1638.16,2041.84,0.00,0.048024,0.000000,70,0,0.001144,0.003196,74082585,49165830,0,0,71939,0,1,1 +1774162967.835635,0.50,4,3992.50,52.16,1637.93,2042.07,0.00,105767.379182,151632.329915,8676062,2675823,0.001157,0.003220,74082621,49165894,0,0,71941,0,1,1 +1774162972.838069,0.55,4,3992.50,52.16,1637.71,2042.29,0.00,3516725506515.795898,3516725460688.007324,21,0,0.000902,0.002563,74082648,49165945,0,0,71944,0,1,1 +1774162977.837853,0.95,4,3992.50,52.37,1639.11,2050.38,0.00,0.048049,0.000000,70,0,0.001152,0.003196,74082684,49166008,0,0,71946,0,1,1 +1774162982.838082,0.65,4,3992.50,52.39,1638.15,2051.11,0.00,3518275862863.046875,0.000000,21,0,0.001144,0.003198,74082719,49166071,0,0,71949,0,1,1 +1774162987.834322,0.70,4,3992.50,52.39,1638.15,2051.11,0.00,105816.962892,151701.647804,8676836,2676451,0.001296,0.003377,74082766,49166145,0,0,71951,0,1,1 +1774162992.837388,0.65,4,3992.50,52.45,1635.68,2053.59,0.00,3516281052521.370605,3516281006697.779297,237,494,0.001293,0.003971,74082811,49166222,0,0,71954,0,1,1 +1774162997.838152,0.55,4,3992.50,52.45,1635.68,2053.59,0.00,0.468385,3517899245398.347168,238,2,0.001372,0.003745,74082854,49166297,0,0,71956,0,1,1 +1774163002.837243,0.55,4,3992.50,52.45,1635.68,2053.58,0.00,105754.613386,151615.159019,8676836,2676469,0.002075,0.003876,74082892,49166364,0,0,71959,0,1,1 +1774163007.837495,0.85,4,3992.50,52.49,1638.93,2055.29,0.00,3518259783556.423340,3518259737708.488281,70,0,0.001349,0.003707,74082934,49166436,0,0,71961,0,1,1 +1774163012.836617,21.69,4,3992.50,58.23,1419.82,2279.91,0.00,1.490594,0.028325,237,494,18.236423,0.020953,74085141,49167681,0,0,71964,0,1,1 +1774163017.833205,35.20,4,3992.50,58.22,1423.99,2279.45,0.00,3520839797567.843750,3520839797569.306641,70,0,118.253918,0.043629,74097518,49170857,0,0,71966,0,1,1 +1774163022.833407,30.72,4,3992.50,58.49,1413.04,2290.18,0.00,105728.965701,151581.641943,8676062,2676151,119.775738,0.060529,74110119,49175413,0,0,71969,0,1,1 +1774163027.833895,31.67,4,3992.50,58.43,1415.58,2287.59,0.00,3518093775896.475586,3518093730046.425781,70,0,118.687743,0.047948,74122487,49178992,0,0,71971,0,1,1 +1774163032.837406,31.09,4,3992.50,58.85,1399.36,2303.93,0.00,105663.145831,151481.455740,8676836,2676677,119.963081,0.035592,74134908,49181566,0,0,71974,0,1,1 +1774163037.835931,31.27,4,3992.50,58.34,1418.54,2284.18,0.00,3519475446245.412598,3519475400379.937500,237,494,119.019111,0.067847,74147466,49186636,0,0,71976,0,1,1 +1774163042.836987,31.31,4,3992.50,58.19,1424.46,2278.23,0.00,3517694278181.958984,3517694278183.469238,21,0,119.362499,0.077876,74160176,49192563,0,0,71979,0,1,1 +1774163047.837389,31.32,4,3992.50,58.40,1416.24,2286.45,0.00,105728.887085,151575.849977,8676836,2676781,119.372308,0.063452,74172781,49197320,0,0,71981,0,1,1 +1774163052.837850,31.64,4,3992.50,58.29,1420.34,2282.38,0.00,3518112499760.567383,3518112499764.654297,8676062,2676301,118.970251,0.061916,74185289,49202003,0,0,71984,0,1,1 +1774163057.835805,2.71,4,3992.50,53.21,1619.31,2083.43,0.00,3519876965140.593262,3519876919267.044922,70,0,53.906174,0.029516,74190989,49204024,0,0,71986,0,1,1 +1774163062.834657,8.40,4,3992.50,52.62,1642.66,2060.05,0.00,105757.632492,151623.219308,8676077,2676628,6.044246,0.031886,74193006,49205530,0,0,71989,0,1,1 +1774163067.833228,22.53,4,3992.50,52.75,1637.35,2065.25,0.00,3519442915591.618652,3519442869721.984863,237,494,28.173114,0.122658,74201901,49212154,0,0,71991,0,1,1 +1774163072.834891,5.68,4,3992.50,52.87,1632.80,2069.88,0.00,3517267985995.640625,3517267985997.102051,70,0,6.047385,0.032494,74204031,49213723,0,0,71994,0,1,1 +1774163077.837866,1.15,4,3992.50,52.48,1647.88,2054.81,0.00,3516345027897.500000,0.000000,21,0,0.003443,0.005331,74204113,49213826,0,0,71996,0,1,1 +1774163082.834878,6.69,4,3992.50,52.90,1630.98,2071.28,0.00,0.175105,0.000000,199,0,0.024972,24.257768,74205771,49216727,0,0,71999,0,1,1 +1774163087.834881,33.30,4,3992.50,52.77,1627.60,2066.04,0.00,3518435162561.182617,0.000000,70,0,0.039688,128.189901,74208690,49230361,0,0,72001,0,1,1 +1774163092.834895,15.22,4,3992.50,52.03,1653.84,2037.26,0.00,105733.083854,151766.983964,8676081,2678934,0.016805,52.680591,74209781,49236030,0,0,72004,0,1,1 +1774163097.840386,12.54,4,3992.50,57.43,1445.78,2248.59,0.00,21.555136,27.465052,8676962,2679708,19.014377,0.018143,74212031,49237089,0,0,72006,0,1,1 +1774163102.837608,3.36,4,3992.50,52.07,1655.61,2038.65,0.00,3520393025044.146484,3520392978978.483398,199,0,21.047219,0.015893,74214326,49237862,0,0,72009,0,1,1 +1774163107.834894,0.70,4,3992.50,52.01,1657.80,2036.46,0.00,105808.142262,151877.461636,8676188,2679380,0.002531,0.003354,74214386,49237932,0,0,72011,0,1,1 +1774163112.833217,0.55,4,3992.50,52.02,1657.58,2036.69,0.00,3519617977903.235352,3519617931843.641113,21,0,0.002735,0.003966,74214451,49238013,0,0,72014,0,1,1 +1774163117.833197,0.65,4,3992.50,52.02,1657.68,2036.59,0.00,105751.302704,151795.673377,8676188,2679436,0.003403,0.004876,74214519,49238095,0,0,72016,0,1,1 +1774163122.834903,0.75,4,3992.50,52.02,1657.69,2036.58,0.00,0.000000,0.049592,8676188,2679485,0.002733,0.003963,74214584,49238176,0,0,72019,0,1,1 +1774163127.834893,0.90,4,3992.50,52.15,1657.29,2041.92,0.00,4.109285,0.128028,8676962,2680046,0.002354,0.003850,74214641,49238248,0,0,72021,0,1,1 +1774163132.834893,0.90,4,3992.50,52.10,1659.35,2039.90,0.00,3518437542229.253906,3518437496188.940430,70,0,0.004915,0.004981,74214751,49238356,0,0,72024,0,1,1 +1774163137.837494,0.70,4,3992.50,52.15,1657.64,2041.61,0.00,3516607710601.428223,0.000000,21,0,0.002825,0.004028,74214822,49238442,0,0,72026,0,1,1 +1774163142.834874,0.55,4,3992.50,52.14,1657.65,2041.59,0.00,1.539185,0.028335,237,494,0.002735,0.003966,74214887,49238523,0,0,72029,0,1,1 +1774163147.837223,0.65,4,3992.50,52.16,1657.16,2042.09,0.00,3516785003592.977539,3516785003594.486816,21,0,0.002820,0.003992,74214958,49238606,0,0,72031,0,1,1 +1774163152.837791,1.05,4,3992.50,52.16,1657.17,2042.07,0.00,0.000000,0.000000,21,0,0.002733,0.003964,74215023,49238687,0,0,72034,0,1,1 +1774163157.837696,1.85,4,3992.50,52.16,1652.51,2042.03,0.00,1.538408,0.028321,237,494,0.002742,0.003962,74215089,49238768,0,0,72036,0,1,1 +1774163162.834579,0.60,4,3992.50,52.16,1652.52,2042.03,0.00,3520631617864.998535,3520631617866.461426,70,0,0.002506,0.003333,74215147,49238837,0,0,72039,0,1,1 +1774163167.837963,0.50,4,3992.50,52.16,1652.53,2042.02,0.00,0.000000,0.000000,70,0,0.002101,0.003715,74215199,49238910,0,0,72041,0,1,1 +1774163172.833197,11.51,4,3992.50,52.19,1648.64,2043.38,0.00,3521793901791.186035,0.000000,21,0,0.023477,40.104689,74216711,49243358,0,0,72044,0,1,1 +1774163177.837957,0.65,4,3992.50,52.16,1649.77,2042.26,0.00,0.174834,0.000000,199,0,0.001181,0.003247,74216749,49243424,0,0,72046,0,1,1 +1774163182.835829,0.55,4,3992.50,52.18,1648.98,2043.04,0.00,105799.865521,151896.440557,8676962,2680759,0.000924,0.002573,74216778,49243476,0,0,72049,0,1,1 +1774163187.837495,1.00,4,3992.50,52.19,1646.20,2043.23,0.00,3517264933790.748047,3517264887727.316406,238,2,0.001131,0.003187,74216812,49243538,0,0,72051,0,1,1 +1774163192.837536,0.60,4,3992.50,52.12,1648.25,2040.80,0.00,105752.115099,151830.611303,8676962,2680794,0.001132,0.003829,74216846,49243604,0,0,72054,0,1,1 +1774163197.835805,0.65,4,3992.50,52.14,1647.76,2041.29,0.00,3519656066317.753906,3519656020224.743652,199,0,0.001145,0.003189,74216881,49243666,0,0,72056,0,1,1 +1774163202.837336,0.80,4,3992.50,52.16,1646.76,2042.28,0.00,3517359797961.647461,0.000000,21,0,0.001144,0.003197,74216916,49243729,0,0,72059,0,1,1 +1774163207.833216,0.50,4,3992.50,51.96,1654.64,2034.40,0.00,0.048086,0.000000,70,0,0.001204,0.003261,74216956,49243796,0,0,72061,0,1,1 +1774163212.838094,0.55,4,3992.50,51.94,1655.48,2033.57,0.00,1.956880,0.000195,238,2,0.001194,0.003257,74216995,49243863,0,0,72064,0,1,1 +1774163217.833510,0.90,4,3992.50,52.10,1647.25,2039.68,0.00,105845.928128,151975.253754,8676188,2680367,0.001351,0.003379,74217044,49243939,0,0,72066,0,1,1 +1774163222.833246,0.70,4,3992.50,52.10,1647.04,2039.68,0.00,0.000000,0.056253,8676188,2680424,0.000916,0.002564,74217072,49243990,0,0,72069,0,1,1 +1774163227.837268,1.35,4,3992.50,52.10,1647.04,2039.68,0.00,3515609055803.523926,3515609009753.976074,237,494,0.001143,0.003185,74217107,49244052,0,0,72071,0,1,1 +1774163232.836604,0.60,4,3992.50,52.10,1647.05,2039.68,0.00,0.000000,0.000000,237,494,0.001145,0.003198,74217142,49244115,0,0,72074,0,1,1 +1774163237.837277,21.21,4,3992.50,58.44,1406.02,2288.16,0.00,105739.237003,151815.666858,8676962,2681048,32.047936,0.023539,74220745,49245549,0,0,72076,0,1,1 +1774163242.835190,36.19,4,3992.50,58.26,1415.77,2281.03,0.00,3519906620495.589844,3519906574395.050781,199,0,118.214081,0.034960,74232854,49248067,0,0,72079,0,1,1 +1774163247.837241,30.77,4,3992.50,58.29,1414.59,2282.20,0.00,105707.339049,151773.914376,8676188,2680600,119.316034,0.025072,74245111,49249917,0,0,72081,0,1,1 +1774163252.833209,31.03,4,3992.50,58.37,1411.43,2285.46,0.00,3521276924941.889648,3521276878817.878906,237,494,119.061513,0.024692,74257351,49251616,0,0,72084,0,1,1 +1774163257.837356,30.75,4,3992.50,58.21,1417.83,2279.09,0.00,105665.862642,151710.527469,8676975,2681222,119.470728,0.027099,74269759,49253444,0,0,72086,0,1,1 +1774163262.837153,30.62,4,3992.50,58.49,1406.79,2290.10,0.00,3518579481039.434570,3518579434956.229004,21,0,118.972403,0.033394,74282058,49255936,0,0,72089,0,1,1 +1774163267.836416,31.08,4,3992.50,58.39,1410.54,2286.29,0.00,105770.633784,151858.859581,8676975,2681252,119.588155,0.036931,74294380,49258719,0,0,72091,0,1,1 +1774163272.834860,30.65,4,3992.50,58.32,1413.63,2283.26,0.00,0.000000,0.030087,8676975,2681266,119.006734,0.037754,74306642,49261574,0,0,72094,0,1,1 +1774163277.836416,28.58,4,3992.50,58.21,1417.76,2279.21,0.00,3517341992770.092285,3517341946700.971191,238,2,119.532174,0.037355,74318898,49264416,0,0,72096,0,1,1 +1774163282.833215,1.76,4,3992.50,52.90,1626.50,2071.01,0.00,3520691373076.963379,3520691373078.971680,21,0,40.285705,0.014284,74323083,49265308,0,0,72099,0,1,1 +1774163287.835527,8.83,4,3992.50,52.55,1639.78,2057.56,0.00,0.000000,0.000000,21,0,8.048416,0.038699,74325696,49267237,0,0,72101,0,1,1 +1774163292.833530,12.62,4,3992.50,52.22,1652.99,2044.45,0.00,0.000000,0.000000,21,0,14.100823,0.067249,74330422,49270740,0,0,72104,0,1,1 +1774163297.834879,12.92,4,3992.50,52.05,1659.59,2037.81,0.00,2.006295,0.000195,238,2,18.107104,0.081840,74336344,49275125,0,0,72106,0,1,1 +1774163302.833228,1.30,4,3992.50,52.05,1659.38,2038.03,0.00,3519599351022.440918,3519599351024.273438,199,0,0.003451,0.005363,74336426,49275230,0,0,72109,0,1,1 +1774163307.833223,1.00,4,3992.50,52.44,1644.22,2053.18,0.00,3518440782915.172363,0.000000,21,0,0.003631,0.004523,74336493,49275312,0,0,72111,0,1,1 +1774163312.837395,14.59,4,3992.50,52.51,1638.83,2055.95,0.00,0.048007,0.000000,70,0,0.030986,53.838631,74338620,49281185,0,0,72114,0,1,1 +1774163317.835718,31.20,4,3992.50,52.32,1638.04,2048.50,0.00,0.000000,0.000000,70,0,0.056015,119.206967,74342881,49293453,0,0,72116,0,1,1 +1774163322.838375,18.62,4,3992.50,57.30,1446.00,2243.40,0.00,3516568411591.825684,0.000000,21,0,12.233948,32.045936,74345535,49297612,0,0,72119,0,1,1 +1774163327.834922,4.42,4,3992.50,52.41,1637.57,2051.84,0.00,0.000000,0.000000,21,0,27.864126,0.010320,74348584,49298143,0,0,72121,0,1,1 +1774163332.836375,0.95,4,3992.50,52.46,1635.39,2054.02,0.00,105741.938640,151999.174622,8677102,2684413,0.003434,0.006196,74348664,49298248,0,0,72124,0,1,1 +1774163337.837766,0.85,4,3992.50,52.50,1636.93,2055.43,0.00,3517458816913.990723,3517458770654.166504,238,2,0.002745,0.003953,74348730,49298328,0,0,72126,0,1,1 +1774163342.834921,0.90,4,3992.50,52.52,1635.82,2056.39,0.00,3520440508511.680664,3520440508513.688965,21,0,0.003354,0.004219,74348807,49298416,0,0,72129,0,1,1 +1774163347.837813,0.60,4,3992.50,52.53,1635.59,2056.62,0.00,105711.543420,151955.727183,8677102,2684552,0.002732,0.003939,74348872,49298495,0,0,72131,0,1,1 +1774163352.834931,0.60,4,3992.50,52.35,1642.79,2049.43,0.00,3520466312016.933594,0.007719,8676328,2684099,0.002514,0.003341,74348931,49298565,0,0,72134,0,1,1 +1774163357.833459,0.55,4,3992.50,52.07,1653.71,2038.50,0.00,3519473093102.806641,3519473046813.960938,199,0,0.002760,0.003987,74348998,49298647,0,0,72136,0,1,1 +1774163362.834611,0.55,4,3992.50,52.08,1653.29,2038.92,0.00,3517626761044.262207,0.000000,21,0,0.002733,0.003963,74349063,49298728,0,0,72139,0,1,1 +1774163367.834931,0.90,4,3992.50,52.38,1648.50,2050.95,0.00,2.006707,0.000195,238,2,0.002827,0.004030,74349134,49298814,0,0,72141,0,1,1 +1774163372.835919,0.65,4,3992.50,52.43,1646.81,2052.64,0.00,3517742573624.139648,0.028119,237,494,0.002733,0.003963,74349199,49298895,0,0,72144,0,1,1 +1774163377.837337,0.70,4,3992.50,52.45,1645.73,2053.73,0.00,3517439017374.579102,3517439017376.040527,70,0,0.002808,0.003993,74349269,49298978,0,0,72146,0,1,1 +1774163382.837221,0.75,4,3992.50,52.45,1645.74,2053.71,0.00,105770.993951,152047.494049,8676328,2684390,0.002742,0.003972,74349335,49299060,0,0,72149,0,1,1 +1774163387.833500,2.86,4,3992.50,52.71,1635.82,2063.52,0.00,3521056887746.624512,3521056841436.798340,21,0,0.013257,7.024776,74350080,49300156,0,0,72151,0,1,1 +1774163392.838056,10.12,4,3992.50,52.12,1656.67,2040.48,0.00,0.174841,0.000000,199,0,0.014978,33.023937,74351082,49303733,0,0,72154,0,1,1 +1774163397.833230,0.85,4,3992.50,52.21,1652.78,2044.09,0.00,3521836392392.481445,0.000000,21,0,0.001133,0.003191,74351116,49303795,0,0,72156,0,1,1 +1774163402.837149,0.60,4,3992.50,52.22,1652.19,2044.57,0.00,0.000000,0.000000,21,0,0.001144,0.003195,74351151,49303858,0,0,72159,0,1,1 +1774163407.837765,0.50,4,3992.50,52.24,1651.55,2045.21,0.00,105755.568576,152059.472285,8676340,2684777,0.001144,0.003188,74351186,49303920,0,0,72161,0,1,1 +1774163412.837462,0.65,4,3992.50,52.20,1652.97,2043.79,0.00,3518650188347.639160,3518650142035.230957,21,0,0.001152,0.003206,74351222,49303984,0,0,72164,0,1,1 +1774163417.838110,0.55,4,3992.50,52.23,1651.75,2045.01,0.00,0.000000,0.000000,21,0,0.001157,0.003188,74351258,49304046,0,0,72166,0,1,1 +1774163422.835275,0.60,4,3992.50,52.23,1651.75,2045.01,0.00,0.000000,0.000000,21,0,0.000941,0.002597,74351288,49304099,0,0,72169,0,1,1 +1774163427.835675,0.85,4,3992.50,52.23,1649.29,2044.97,0.00,105764.238821,152072.125909,8677114,2685333,0.001207,0.003250,74351328,49304165,0,0,72171,0,1,1 +1774163432.833232,0.65,4,3992.50,52.11,1654.20,2040.07,0.00,3520156796157.723145,3520156749823.497559,21,0,0.004065,0.005240,74351416,49304264,0,0,72174,0,1,1 +1774163437.833241,0.50,4,3992.50,52.14,1652.75,2041.52,0.00,0.000000,0.000000,21,0,0.001300,0.003314,74351461,49304336,0,0,72176,0,1,1 +1774163442.834917,0.70,4,3992.50,52.06,1656.09,2038.18,0.00,0.048031,0.000000,70,0,0.001152,0.003205,74351497,49304400,0,0,72179,0,1,1 +1774163447.834910,0.65,4,3992.50,52.06,1656.08,2038.20,0.00,3518442285995.370605,0.000000,21,0,0.001144,0.003188,74351532,49304462,0,0,72181,0,1,1 +1774163452.837409,2.00,4,3992.50,53.38,1605.51,2089.78,0.00,0.048023,0.000000,70,0,0.004058,0.006517,74351626,49304575,0,0,72184,0,1,1 +1774163457.835346,45.05,4,3992.50,58.69,1406.25,2298.00,0.00,105812.204118,152147.240538,8676340,2685033,108.196643,0.044098,74362784,49307818,0,0,72186,0,1,1 +1774163462.837388,31.07,4,3992.50,58.92,1400.19,2306.88,0.00,0.000000,0.040413,8676340,2685067,119.317236,0.019550,74375104,49309191,0,0,72189,0,1,1 +1774163467.835089,30.61,4,3992.50,58.64,1411.13,2295.95,0.00,0.000000,0.081874,8676340,2685113,119.221138,0.023066,74387315,49310817,0,0,72191,0,1,1 +1774163472.837393,31.07,4,3992.50,58.90,1400.95,2306.18,0.00,3516816609586.618164,3516816563291.960449,21,0,119.310217,0.029278,74399497,49313015,0,0,72194,0,1,1 +1774163477.835556,30.54,4,3992.50,58.59,1413.22,2293.87,0.00,0.175064,0.000000,199,0,119.211634,0.027276,74411806,49314974,0,0,72196,0,1,1 +1774163482.835830,30.79,4,3992.50,58.35,1422.71,2284.42,0.00,3518244162825.858887,0.000000,70,0,119.157901,0.021936,74423949,49316504,0,0,72199,0,1,1 +1774163487.836499,30.56,4,3992.50,58.71,1408.61,2298.47,0.00,105758.498464,152064.338283,8677114,2685663,119.548541,0.020002,74436095,49317854,0,0,72201,0,1,1 +1774163492.833195,30.83,4,3992.50,58.81,1403.76,2302.50,0.00,3520763692767.660156,3520763646423.041016,238,2,118.842406,0.023657,74448084,49319488,0,0,72204,0,1,1 +1774163497.837304,9.34,4,3992.50,53.34,1617.80,2088.50,0.00,105683.884710,151959.923671,8677120,2685700,82.651550,0.029208,74456608,49321576,0,0,72206,0,1,1 +1774163502.837564,6.57,4,3992.50,53.27,1620.76,2085.54,0.00,0.046091,0.025585,8677126,2685800,4.027667,0.022643,74457883,49322542,0,0,72209,0,1,1 +1774163507.837472,15.87,4,3992.50,52.98,1631.74,2074.47,0.00,0.000000,0.327838,8677126,2686338,16.118896,0.081473,74463430,49326710,0,0,72211,0,1,1 +1774163512.833235,14.94,4,3992.50,52.66,1644.27,2061.91,0.00,3521421022175.063477,3521420975823.242676,199,0,20.131882,0.087242,74469827,49331539,0,0,72214,0,1,1 +1774163517.835827,1.75,4,3992.50,52.59,1647.21,2059.00,0.00,1.362672,0.028306,237,494,0.003448,0.005992,74469909,49331647,0,0,72216,0,1,1 +1774163522.834918,1.91,4,3992.50,52.36,1656.36,2049.84,0.00,3519077377619.966797,3519077377621.429199,70,0,0.002722,0.003965,74469973,49331728,0,0,72219,0,1,1 +1774163527.835273,0.65,4,3992.50,52.37,1655.62,2050.56,0.00,105765.222903,152075.362422,8677126,2687265,0.002733,0.003954,74470038,49331808,0,0,72221,0,1,1 +1774163532.838022,0.60,4,3992.50,52.42,1653.68,2052.51,0.00,3516504068166.732910,3516504021876.789551,238,2,0.002740,0.003970,74470104,49331890,0,0,72224,0,1,1 +1774163537.837564,0.60,4,3992.50,52.42,1653.67,2052.52,0.00,105776.346425,152100.280836,8676352,2686889,0.002734,0.003955,74470169,49331970,0,0,72226,0,1,1 +1774163542.833527,0.60,4,3992.50,52.42,1653.69,2052.50,0.00,3521280623841.952148,3521280577486.653320,199,0,0.002761,0.003999,74470236,49332053,0,0,72229,0,1,1 +1774163547.837228,1.00,4,3992.50,52.53,1651.22,2056.60,0.00,1.362370,0.028299,237,494,0.002604,0.003443,74470302,49332129,0,0,72231,0,1,1 +1774163552.833832,0.60,4,3992.50,52.48,1653.27,2054.53,0.00,3520828508425.530273,3520828508426.993652,70,0,0.003974,0.005200,74470377,49332225,0,0,72234,0,1,1 +1774163557.837543,0.60,4,3992.50,52.49,1652.55,2055.25,0.00,1.957336,0.000195,238,2,0.003006,0.004493,74470446,49332315,0,0,72236,0,1,1 +1774163562.837595,0.65,4,3992.50,52.50,1652.40,2055.41,0.00,105765.564121,152085.106090,8676352,2687046,0.002808,0.004004,74470516,49332399,0,0,72239,0,1,1 +1774163567.836770,0.60,4,3992.50,52.46,1653.84,2053.97,0.00,3519018229562.128906,3519018183236.458496,21,0,0.002734,0.003955,74470581,49332479,0,0,72241,0,1,1 +1774163572.833221,8.04,4,3992.50,52.57,1648.77,2058.20,0.00,0.175124,0.000000,199,0,0.025405,30.071797,74472291,49335932,0,0,72244,0,1,1 +1774163577.833191,31.88,4,3992.50,52.43,1645.85,2052.88,0.00,3518458769998.416016,0.000000,70,0,0.065043,118.567684,74477243,49348157,0,0,72246,0,1,1 +1774163582.833232,15.71,4,3992.50,52.48,1641.92,2054.80,0.00,0.126952,0.000000,199,0,0.029517,56.485436,74479314,49354098,0,0,72249,0,1,1 +1774163587.833855,10.12,4,3992.50,57.29,1457.55,2243.14,0.00,105772.797341,152273.097418,8676465,2688632,10.021679,0.015490,74480682,49354925,0,0,72251,0,1,1 +1774163592.837625,6.56,4,3992.50,51.96,1666.46,2034.25,0.00,4.106182,0.098754,8677239,2689223,30.023782,0.015481,74483834,49355725,0,0,72254,0,1,1 +1774163597.837856,0.55,4,3992.50,52.02,1664.05,2036.66,0.00,3518274680536.539062,3518274634035.266602,237,494,0.003246,0.004499,74483906,49355817,0,0,72256,0,1,1 +1774163602.837888,0.55,4,3992.50,52.07,1662.10,2038.61,0.00,3518414625585.545898,3518414625587.056152,21,0,0.002505,0.003331,74483964,49355886,0,0,72259,0,1,1 +1774163607.837372,0.85,4,3992.50,52.30,1662.11,2047.70,0.00,0.175018,0.000000,199,0,0.003246,0.004933,74484026,49355974,0,0,72261,0,1,1 +1774163612.834901,11.70,4,3992.50,52.37,1657.06,2050.57,0.00,3520176878888.548828,0.000000,70,0,0.024321,40.085504,74485603,49360361,0,0,72264,0,1,1 +1774163617.837282,0.60,4,3992.50,52.39,1656.38,2051.25,0.00,105735.757969,152253.961921,8676465,2689152,0.001169,0.003218,74485640,49360425,0,0,72266,0,1,1 +1774163622.835384,0.70,4,3992.50,52.39,1656.26,2051.38,0.00,3519773405485.299805,3519773358927.143066,199,0,0.001132,0.003199,74485674,49360488,0,0,72269,0,1,1 +1774163627.837269,0.45,4,3992.50,52.40,1656.02,2051.61,0.00,0.000000,0.000000,199,0,0.000915,0.002553,74485702,49360538,0,0,72271,0,1,1 +1774163632.833221,0.60,4,3992.50,52.40,1656.25,2051.39,0.00,105875.804123,152449.967690,8677239,2689691,0.001145,0.003200,74485737,49360601,0,0,72274,0,1,1 +1774163637.833612,1.10,4,3992.50,52.38,1640.81,2050.90,0.00,3518162096101.842285,3518162049569.197266,21,0,0.001152,0.003196,74485773,49360664,0,0,72276,0,1,1 +1774163642.835065,0.60,4,3992.50,52.48,1634.83,2054.67,0.00,2.006253,0.000195,238,2,0.001144,0.003197,74485808,49360727,0,0,72279,0,1,1 +1774163647.837932,0.60,4,3992.50,52.46,1635.43,2054.07,0.00,3516421042854.804688,3516421042856.762207,70,0,0.001194,0.003892,74485847,49360797,0,0,72281,0,1,1 +1774163652.833234,0.60,4,3992.50,52.46,1635.43,2054.07,0.00,0.000000,0.000000,70,0,0.001196,0.003263,74485886,49360864,0,0,72284,0,1,1 +1774163657.834899,0.65,4,3992.50,52.50,1634.19,2055.32,0.00,1.958137,0.000195,238,2,0.001358,0.003383,74485936,49360941,0,0,72286,0,1,1 +1774163662.833227,0.70,4,3992.50,52.48,1634.91,2054.59,0.00,3519614140396.926270,3519614140398.758789,199,0,0.000916,0.002565,74485964,49360992,0,0,72289,0,1,1 +1774163667.833204,0.80,4,3992.50,52.64,1628.56,2060.93,0.00,0.000000,0.000000,199,0,0.001144,0.003188,74485999,49361054,0,0,72291,0,1,1 +1774163672.836412,0.70,4,3992.50,52.64,1628.57,2060.93,0.00,3516181035850.175293,0.000000,21,0,0.001144,0.003196,74486034,49361117,0,0,72294,0,1,1 +1774163677.833928,32.83,4,3992.50,58.50,1406.25,2290.52,0.00,1.539143,0.028334,237,494,66.333188,0.031079,74493205,49363142,0,0,72296,0,1,1 +1774163682.835861,31.85,4,3992.50,58.41,1412.09,2287.00,0.00,3517077186084.082520,3517077186085.591797,21,0,120.135239,0.062794,74505792,49367857,0,0,72299,0,1,1 +1774163687.837460,29.46,4,3992.50,58.67,1402.00,2297.08,0.00,2.006195,0.000195,238,2,118.560806,0.110653,74518590,49376337,0,0,72301,0,1,1 +1774163692.838011,30.01,4,3992.50,58.63,1403.54,2295.59,0.00,3518049946164.827148,3518049946166.785645,70,0,119.785366,0.108067,74531427,49384503,0,0,72304,0,1,1 +1774163697.837417,30.31,4,3992.50,58.83,1395.58,2303.52,0.00,105798.660256,152351.101105,8676465,2689568,119.013099,0.113501,74544257,49393221,0,0,72306,0,1,1 +1774163702.833510,30.24,4,3992.50,58.26,1418.12,2280.95,0.00,3521188654984.145508,3521188608400.875488,21,0,119.492961,0.115098,74557137,49402077,0,0,72309,0,1,1 +1774163707.837440,30.27,4,3992.50,58.61,1404.59,2294.53,0.00,105707.186960,152213.509042,8677240,2690158,119.306824,0.114497,74570060,49410826,0,0,72311,0,1,1 +1774163712.835180,30.06,4,3992.50,58.41,1412.42,2286.73,0.00,3520028236113.841309,3520028189548.410156,237,494,119.053250,0.114912,74582852,49419556,0,0,72314,0,1,1 +1774163717.833237,19.74,4,3992.50,58.27,1417.86,2281.32,0.00,0.000000,0.000000,237,494,119.445195,0.114050,74595669,49428277,0,0,72316,0,1,1 +1774163722.835366,1.35,4,3992.50,53.16,1618.01,2081.17,0.00,3516939482923.475098,3516939482924.809570,199,0,4.609833,0.007719,74596278,49428688,0,0,72319,0,1,1 +1774163727.833200,18.66,4,3992.50,52.80,1637.71,2067.31,0.00,1.832630,0.000195,238,2,18.141286,0.091760,74602460,49433097,0,0,72321,0,1,1 +1774163732.836912,17.07,4,3992.50,52.42,1652.21,2052.54,0.00,3515826951368.192383,3515826951370.197754,21,0,22.108964,0.090040,74609354,49438187,0,0,72324,0,1,1 +1774163737.837459,2.20,4,3992.50,52.06,1666.36,2038.40,0.00,0.048042,0.000000,70,0,0.006194,0.007317,74609490,49438337,0,0,72326,0,1,1 +1774163742.833235,1.15,4,3992.50,52.55,1647.43,2057.32,0.00,3521412343825.797852,0.000000,21,0,0.002736,0.003968,74609555,49438418,0,0,72329,0,1,1 +1774163747.833219,0.70,4,3992.50,52.44,1651.75,2053.01,0.00,0.000000,0.000000,21,0,0.002734,0.003954,74609620,49438498,0,0,72331,0,1,1 +1774163752.833219,1.00,4,3992.50,52.33,1655.82,2048.94,0.00,0.175000,0.000000,199,0,0.002721,0.003818,74609684,49438577,0,0,72334,0,1,1 +1774163757.837605,1.00,4,3992.50,52.57,1647.98,2058.16,0.00,3515353799962.808105,0.000000,21,0,0.002568,0.003951,74609747,49438657,0,0,72336,0,1,1 +1774163762.834888,0.80,4,3992.50,52.27,1657.45,2046.68,0.00,0.000000,0.000000,21,0,0.002743,0.003974,74609813,49438739,0,0,72339,0,1,1 +1774163767.834920,0.80,4,3992.50,52.28,1657.19,2046.95,0.00,0.000000,0.000000,21,0,0.002580,0.003414,74609877,49438813,0,0,72341,0,1,1 +1774163772.834646,1.00,4,3992.50,52.32,1655.62,2048.52,0.00,0.175010,0.000000,199,0,0.002734,0.003964,74609942,49438894,0,0,72344,0,1,1 +1774163777.838026,0.90,4,3992.50,52.32,1655.64,2048.49,0.00,3516060593123.830078,0.000000,21,0,0.002782,0.004496,74610011,49438981,0,0,72346,0,1,1 +1774163782.837391,1.80,4,3992.50,52.32,1655.65,2048.49,0.00,0.175022,0.000000,199,0,0.002817,0.004174,74610082,49439067,0,0,72349,0,1,1 +1774163787.833699,1.05,4,3992.50,52.72,1640.43,2064.09,0.00,3521036468989.602051,0.000000,70,0,0.002723,0.003957,74610146,49439147,0,0,72351,0,1,1 +1774163792.837928,0.95,4,3992.50,52.43,1651.61,2052.59,0.00,3515464430914.994629,0.000000,21,0,0.002731,0.003961,74610211,49439228,0,0,72354,0,1,1 +1774163797.834904,0.60,4,3992.50,52.43,1651.62,2052.60,0.00,2.008050,0.000195,238,2,0.002723,0.003957,74610275,49439308,0,0,72356,0,1,1 +1774163802.836003,0.95,4,3992.50,52.43,1651.63,2052.59,0.00,105761.000499,152301.748396,8676477,2691722,0.002512,0.003338,74610334,49439378,0,0,72359,0,1,1 +1774163807.837884,0.55,4,3992.50,52.42,1651.88,2052.34,0.00,3517113295416.842285,3517113248885.386719,21,0,0.002733,0.003940,74610399,49439457,0,0,72361,0,1,1 +1774163812.837775,0.55,4,3992.50,52.42,1652.02,2052.20,0.00,1.538413,0.028321,237,494,0.002115,0.003727,74610452,49439531,0,0,72364,0,1,1 +1774163817.837656,25.06,4,3992.50,53.40,1603.51,2090.69,0.00,0.468468,3518520708305.508789,238,2,0.068386,101.565670,74615487,49450499,0,0,72366,0,1,1 +1774163822.833294,27.08,4,3992.50,53.06,1610.58,2077.39,0.00,3521509353921.101074,3521509353923.109863,21,0,0.028196,103.643638,74617463,49460984,0,0,72369,0,1,1 +1774163827.833210,1.35,4,3992.50,53.05,1611.66,2076.96,0.00,2.006870,0.000195,238,2,0.003904,0.006407,74617557,49461108,0,0,72371,0,1,1 +1774163832.837617,13.42,4,3992.50,52.76,1625.99,2065.73,0.00,3515338911498.440430,3515338911500.397461,70,0,40.027139,0.024200,74621867,49462643,0,0,72374,0,1,1 +1774163837.837159,0.80,4,3992.50,52.29,1644.38,2047.34,0.00,1.958968,0.000195,238,2,0.003129,0.003455,74621936,49462719,0,0,72376,0,1,1 +1774163842.834918,11.29,4,3992.50,52.08,1650.44,2039.23,0.00,3520014735164.889648,3520014735166.897461,21,0,0.027390,40.083365,74623822,49467110,0,0,72379,0,1,1 +1774163847.834900,1.10,4,3992.50,52.32,1641.27,2048.38,0.00,2.006843,0.000195,238,2,0.002285,0.006080,74623891,49467225,0,0,72381,0,1,1 +1774163852.834880,0.70,4,3992.50,52.32,1641.30,2048.36,0.00,105806.242866,152575.717945,8677412,2694394,0.001444,0.003753,74623932,49467299,0,0,72384,0,1,1 +1774163857.834907,0.75,4,3992.50,51.96,1655.27,2034.39,0.00,3518418530751.309570,3518418483984.271973,21,0,0.001444,0.003743,74623973,49467372,0,0,72386,0,1,1 +1774163862.834894,0.65,4,3992.50,51.88,1658.55,2031.12,0.00,0.048047,0.000000,70,0,0.001157,0.003229,74624009,49467437,0,0,72389,0,1,1 +1774163867.837378,1.55,4,3992.50,51.87,1658.85,2030.81,0.00,1.489592,0.028306,237,494,0.001144,0.003186,74624044,49467499,0,0,72391,0,1,1 +1774163872.837125,0.55,4,3992.50,51.87,1658.69,2030.97,0.00,3518615254332.146484,3518615254333.656738,21,0,0.000924,0.002572,74624073,49467551,0,0,72394,0,1,1 +1774163877.834903,0.95,4,3992.50,52.20,1643.88,2043.72,0.00,0.175078,0.000000,199,0,0.001183,0.003252,74624111,49467617,0,0,72396,0,1,1 +1774163882.834895,0.70,4,3992.50,52.21,1643.47,2043.96,0.00,1.831839,0.000195,238,2,0.001220,0.003291,74624152,49467686,0,0,72399,0,1,1 +1774163887.834892,0.60,4,3992.50,52.31,1639.22,2048.21,0.00,3518438861141.620605,0.028125,237,494,0.001157,0.003219,74624188,49467750,0,0,72401,0,1,1 +1774163892.833209,0.65,4,3992.50,52.13,1646.40,2041.03,0.00,3519622292456.836426,3519622292458.171875,199,0,0.001269,0.003300,74624231,49467821,0,0,72404,0,1,1 +1774163897.833219,0.70,4,3992.50,52.13,1646.41,2041.03,0.00,1.831832,0.000195,238,2,0.001372,0.003745,74624274,49467896,0,0,72406,0,1,1 +1774163902.833211,0.70,4,3992.50,52.14,1645.93,2041.50,0.00,3518442847537.700684,3518442847539.707520,21,0,0.001144,0.003198,74624309,49467959,0,0,72409,0,1,1 +1774163907.837405,34.15,4,3992.50,58.54,1404.22,2291.88,0.00,105715.058554,152453.416206,8676638,2694096,75.850789,0.034817,74632405,49470167,0,0,72411,0,1,1 +1774163912.834882,29.54,4,3992.50,58.48,1407.12,2289.70,0.00,3520213221732.249512,3520213174931.029297,70,0,119.226253,0.020373,74644672,49471531,0,0,72414,0,1,1 +1774163917.836065,27.90,4,3992.50,58.55,1404.52,2292.29,0.00,3517605016702.384277,0.000000,21,0,118.336861,0.024776,74656754,49473256,0,0,72416,0,1,1 +1774163922.836584,27.81,4,3992.50,58.58,1403.39,2293.41,0.00,1.538219,0.028317,237,494,119.962436,0.056885,74669022,49477564,0,0,72419,0,1,1 +1774163927.833207,28.37,4,3992.50,58.50,1406.39,2290.46,0.00,3520815076547.333008,3520815076548.844238,21,0,119.053455,0.047586,74681226,49481100,0,0,72421,0,1,1 +1774163932.833448,28.20,4,3992.50,58.73,1397.50,2299.28,0.00,1.538305,0.028319,237,494,119.362133,0.030855,74693395,49483339,0,0,72424,0,1,1 +1774163937.836104,28.16,4,3992.50,58.78,1395.32,2301.53,0.00,3516568954963.309082,3516568954964.643555,199,0,119.498513,0.019876,74705440,49484749,0,0,72426,0,1,1 +1774163942.835387,28.43,4,3992.50,58.62,1400.80,2294.93,0.00,105822.846007,152603.577074,8677412,2694855,118.781394,0.023430,74717466,49486412,0,0,72429,0,1,1 +1774163947.837416,16.52,4,3992.50,58.42,1408.36,2287.44,0.00,3517009529212.253906,3517009482457.341309,70,0,115.318974,0.040614,74729319,49489417,0,0,72431,0,1,1 +1774163952.837276,12.82,4,3992.50,53.05,1618.51,2077.22,0.00,105810.840006,152586.219918,8677423,2695193,12.103168,0.070924,74733800,49492875,0,0,72434,0,1,1 +1774163957.837409,16.88,4,3992.50,53.26,1610.33,2085.36,0.00,3518343577764.626953,3518343530989.840820,238,2,26.148494,0.108941,74742070,49499035,0,0,72436,0,1,1 +1774163962.836454,2.36,4,3992.50,52.51,1639.93,2055.76,0.00,3519109945868.392578,3519109945870.400391,21,0,2.015007,0.013041,74742762,49499588,0,0,72439,0,1,1 +1774163967.837154,1.15,4,3992.50,52.77,1629.42,2065.89,0.00,2.006555,0.000195,238,2,0.002826,0.005108,74742832,49499685,0,0,72441,0,1,1 +1774163972.837764,21.40,4,3992.50,52.99,1616.20,2074.77,0.00,3518007656628.359375,3518007656630.317871,70,0,0.041031,88.521209,74745750,49509167,0,0,72444,0,1,1 +1774163977.837392,28.76,4,3992.50,53.02,1608.54,2075.66,0.00,0.000000,0.000000,70,0,0.034814,116.574637,74748334,49521262,0,0,72446,0,1,1 +1774163982.834857,0.90,4,3992.50,52.45,1630.65,2053.64,0.00,105861.555515,152843.546202,8677426,2697516,0.004257,0.006559,74748447,49521398,0,0,72449,0,1,1 +1774163987.837122,16.42,4,3992.50,52.61,1628.61,2059.76,0.00,3516843898935.503906,3516843851998.470215,199,0,40.046796,0.024804,74752850,49522947,0,0,72451,0,1,1 +1774163992.837452,1.05,4,3992.50,52.66,1626.69,2061.67,0.00,1.831715,0.000195,238,2,0.005888,0.007345,74752973,49523081,0,0,72454,0,1,1 +1774163997.834903,0.85,4,3992.50,52.85,1619.27,2069.21,0.00,105873.241904,152866.460613,8676780,2697384,0.002607,0.003447,74753039,49523157,0,0,72456,0,1,1 +1774164002.834820,0.65,4,3992.50,52.85,1619.14,2069.36,0.00,3518495588199.275879,3518495541231.233398,21,0,0.002734,0.003964,74753104,49523238,0,0,72459,0,1,1 +1774164007.834905,0.55,4,3992.50,52.85,1619.15,2069.34,0.00,0.000000,0.000000,21,0,0.002721,0.003954,74753168,49523318,0,0,72461,0,1,1 +1774164012.834900,1.50,4,3992.50,52.90,1617.51,2070.98,0.00,0.000000,0.000000,21,0,0.002734,0.003964,74753233,49523399,0,0,72464,0,1,1 +1774164017.838088,0.60,4,3992.50,52.70,1625.16,2063.34,0.00,2.005557,0.000195,238,2,0.002752,0.003991,74753300,49523482,0,0,72466,0,1,1 +1774164022.834905,0.60,4,3992.50,52.71,1624.95,2063.54,0.00,3520678283263.827148,3520678283265.835449,21,0,0.002735,0.003967,74753365,49523563,0,0,72469,0,1,1 +1774164027.838012,0.90,4,3992.50,52.64,1624.48,2060.91,0.00,2.005590,0.000195,238,2,0.002825,0.004027,74753436,49523649,0,0,72471,0,1,1 +1774164032.833490,0.75,4,3992.50,52.44,1632.06,2053.14,0.00,105919.201329,152927.307830,8677565,2698251,0.005353,0.005253,74753541,49523745,0,0,72474,0,1,1 +1774164037.837535,0.65,4,3992.50,52.48,1630.62,2054.58,0.00,3515592915267.008301,3515592868339.381836,238,2,0.003475,0.005086,74753614,49523832,0,0,72476,0,1,1 +1774164042.837651,0.70,4,3992.50,52.62,1624.96,2060.24,0.00,3518355405710.667969,3518355405712.675293,21,0,0.002721,0.004434,74753678,49523915,0,0,72479,0,1,1 +1774164047.835032,0.55,4,3992.50,52.62,1624.98,2060.23,0.00,1.539185,0.028335,237,494,0.002735,0.003956,74753743,49523995,0,0,72481,0,1,1 +1774164052.837514,0.60,4,3992.50,52.62,1624.99,2060.21,0.00,0.468225,3516691036039.504395,238,2,0.002732,0.003962,74753808,49524076,0,0,72484,0,1,1 +1774164057.837535,6.56,4,3992.50,53.11,1609.27,2079.30,0.00,3518422759422.779785,3518422759424.611816,199,0,0.018756,20.836973,74755012,49526562,0,0,72486,0,1,1 +1774164062.837609,5.88,4,3992.50,53.34,1599.29,2088.25,0.00,105823.675575,152821.089937,8677565,2698741,0.013704,19.233099,74755941,49528662,0,0,72489,0,1,1 +1774164067.834895,0.60,4,3992.50,53.10,1608.53,2079.00,0.00,0.000000,0.007817,8677565,2698747,0.001153,0.003185,74755977,49528724,0,0,72491,0,1,1 +1774164072.834887,0.55,4,3992.50,52.90,1616.41,2071.12,0.00,3518442851489.764160,3518442804491.697754,70,0,0.000916,0.002577,74756005,49528776,0,0,72494,0,1,1 +1774164077.833225,0.60,4,3992.50,52.91,1616.11,2071.43,0.00,1.490827,0.028330,237,494,0.001195,0.003251,74756044,49528842,0,0,72496,0,1,1 +1774164082.836486,0.60,4,3992.50,52.91,1615.96,2071.57,0.00,3516143992427.918945,3516143992429.428223,21,0,0.001144,0.003196,74756079,49528905,0,0,72499,0,1,1 +1774164087.837412,0.90,4,3992.50,52.93,1615.25,2072.23,0.00,2.006464,0.000195,238,2,0.001144,0.003187,74756114,49528967,0,0,72501,0,1,1 +1774164092.837370,0.70,4,3992.50,53.04,1610.86,2076.56,0.00,3518466450152.341797,3518466450154.173828,199,0,0.001170,0.003229,74756151,49529032,0,0,72504,0,1,1 +1774164097.837642,0.60,4,3992.50,53.04,1610.87,2076.55,0.00,3518246386235.576172,0.000000,70,0,0.001195,0.003250,74756190,49529098,0,0,72506,0,1,1 +1774164102.837214,0.85,4,3992.50,53.04,1610.87,2076.55,0.00,105830.300777,152842.552755,8676791,2698381,0.001220,0.003452,74756231,49529168,0,0,72509,0,1,1 +1774164107.837577,0.65,4,3992.50,52.88,1617.05,2070.37,0.00,4.108980,0.035544,8677565,2698883,0.001071,0.003163,74756269,49529231,0,0,72511,0,1,1 +1774164112.837795,0.55,4,3992.50,52.88,1617.06,2070.36,0.00,3518283653389.038086,3518283653393.125977,8676791,2698391,0.001144,0.003198,74756304,49529294,0,0,72514,0,1,1 +1774164117.834873,0.85,4,3992.50,52.97,1618.95,2074.02,0.00,4.111680,0.109830,8677565,2698947,0.001153,0.003198,74756340,49529357,0,0,72516,0,1,1 +1774164122.834762,0.60,4,3992.50,52.93,1620.21,2072.39,0.00,0.000000,0.019532,8677565,2698969,0.001144,0.003198,74756375,49529420,0,0,72519,0,1,1 +1774164127.834886,30.85,4,3992.50,58.73,1399.79,2299.25,0.00,3518349847981.555664,3518349800978.500977,21,0,57.285525,0.033466,74762595,49531664,0,0,72521,0,1,1 +1774164132.838218,34.14,4,3992.50,59.04,1390.22,2311.46,0.00,0.000000,0.000000,21,0,119.088664,0.036072,74774966,49534273,0,0,72524,0,1,1 +1774164137.837682,30.42,4,3992.50,58.86,1397.07,2304.59,0.00,0.000000,0.000000,21,0,119.185674,0.037663,74787427,49537111,0,0,72526,0,1,1 +1774164142.837617,30.84,4,3992.50,58.99,1392.12,2309.48,0.00,105822.686950,152831.810936,8676791,2698646,119.367344,0.037321,74799691,49539919,0,0,72529,0,1,1 +1774164147.833211,30.80,4,3992.50,59.06,1389.44,2312.16,0.00,3521539604103.887207,3521539557053.925293,21,0,119.069798,0.035128,74811928,49542535,0,0,72531,0,1,1 +1774164152.833158,30.89,4,3992.50,58.82,1401.30,2302.77,0.00,2.006857,0.000195,238,2,119.568764,0.046479,74824206,49545951,0,0,72534,0,1,1 +1774164157.833210,30.59,4,3992.50,59.27,1383.58,2320.36,0.00,105818.202830,152828.312836,8676791,2698713,118.764070,0.046705,74836393,49549389,0,0,72536,0,1,1 +1774164162.834955,30.92,4,3992.50,58.78,1402.84,2301.22,0.00,3517209596912.620117,3517209549920.382812,70,0,119.523070,0.037180,74848605,49552154,0,0,72539,0,1,1 +1774164167.834852,22.31,4,3992.50,58.98,1394.89,2309.25,0.00,0.126956,0.000000,199,0,119.568340,0.045178,74860851,49555504,0,0,72541,0,1,1 +1774164172.837389,16.61,4,3992.50,53.02,1628.08,2076.04,0.00,0.000000,0.000000,199,0,30.138377,0.089127,74867696,49560051,0,0,72544,0,1,1 +1774164177.838387,14.42,4,3992.50,54.53,1561.56,2135.11,0.00,0.000000,0.000000,199,0,20.096549,0.085674,74874135,49564768,0,0,72546,0,1,1 +1774164182.833211,4.27,4,3992.50,52.70,1633.38,2063.44,0.00,1.364792,0.028350,237,494,4.032267,0.020292,74875494,49565719,0,0,72549,0,1,1 +1774164187.836505,0.95,4,3992.50,52.68,1634.17,2062.65,0.00,105750.251060,152730.795041,8676807,2700179,0.003448,0.005348,74875576,49565823,0,0,72551,0,1,1 +1774164192.837546,0.60,4,3992.50,52.74,1632.02,2064.79,0.00,3517704415185.475098,3517704368183.276367,238,2,0.002114,0.003714,74875629,49565896,0,0,72554,0,1,1 +1774164197.834919,0.65,4,3992.50,52.74,1632.04,2064.78,0.00,105879.181600,152911.948809,8677581,2700836,0.002558,0.003747,74875692,49565976,0,0,72556,0,1,1 +1774164202.834480,20.14,4,3992.50,53.14,1612.34,2080.62,0.00,3518746322039.604004,3518746275029.247559,199,0,0.046572,75.921372,74879065,49574158,0,0,72559,0,1,1 +1774164207.836406,31.28,4,3992.50,52.96,1611.89,2073.31,0.00,105784.627327,152931.996586,8677581,2701860,0.063298,119.123210,74883736,49586422,0,0,72561,0,1,1 +1774164212.834914,4.12,4,3992.50,52.97,1608.97,2074.01,0.00,3519487488468.931641,3519487441287.980469,237,494,0.007933,10.022825,74884152,49587586,0,0,72564,0,1,1 +1774164217.838382,12.93,4,3992.50,57.75,1426.29,2260.90,0.00,105768.126928,152930.879840,8677697,2702294,21.023748,0.019077,74886634,49588708,0,0,72566,0,1,1 +1774164222.838053,3.36,4,3992.50,52.18,1644.11,2043.11,0.00,3518669069893.138184,3518669022694.062012,238,2,19.032801,0.011688,74888690,49589225,0,0,72569,0,1,1 +1774164227.837948,0.70,4,3992.50,52.20,1643.63,2043.58,0.00,0.000000,0.000000,238,2,0.002734,0.003954,74888755,49589305,0,0,72571,0,1,1 +1774164232.833225,0.60,4,3992.50,52.20,1643.65,2043.57,0.00,0.000000,0.000000,238,2,0.002515,0.003342,74888814,49589375,0,0,72574,0,1,1 +1774164237.833253,0.85,4,3992.50,52.48,1633.47,2054.55,0.00,105840.433433,153036.411525,8677697,2702539,0.002734,0.004598,74888879,49589459,0,0,72576,0,1,1 +1774164242.835620,0.95,4,3992.50,52.61,1627.77,2059.68,0.00,3516772202592.516113,3516772155419.103027,237,494,0.002732,0.003962,74888944,49589540,0,0,72579,0,1,1 +1774164247.834273,0.70,4,3992.50,52.61,1627.78,2059.67,0.00,0.468583,3519385443942.104004,238,2,0.002760,0.003986,74889011,49589622,0,0,72581,0,1,1 +1774164252.834926,0.60,4,3992.50,52.61,1627.55,2059.89,0.00,3517977454258.081055,3517977454260.039551,70,0,0.002733,0.003964,74889076,49589703,0,0,72584,0,1,1 +1774164257.833198,0.60,4,3992.50,52.61,1627.56,2059.89,0.00,1.490847,0.028330,237,494,0.002828,0.004031,74889147,49589789,0,0,72586,0,1,1 +1774164262.833190,0.55,4,3992.50,52.61,1627.57,2059.88,0.00,3518442421102.439453,3518442421103.774414,199,0,0.002505,0.003331,74889205,49589858,0,0,72589,0,1,1 +1774164267.833245,1.00,4,3992.50,52.65,1624.30,2061.54,0.00,105841.693293,153035.890674,8677697,2702837,0.002816,0.004002,74889276,49589942,0,0,72591,0,1,1 +1774164272.834932,0.50,4,3992.50,52.71,1622.07,2063.80,0.00,3517250875713.273438,3517250828534.643066,21,0,0.002733,0.003963,74889341,49590023,0,0,72594,0,1,1 +1774164277.838060,3.66,4,3992.50,53.28,1599.35,2085.85,0.00,0.000000,0.000000,21,0,0.014180,12.416875,74890200,49591593,0,0,72596,0,1,1 +1774164282.834888,8.48,4,3992.50,52.61,1623.75,2059.81,0.00,0.175111,0.000000,199,0,0.018128,27.662915,74891452,49594540,0,0,72599,0,1,1 +1774164287.837934,0.55,4,3992.50,52.43,1630.90,2052.66,0.00,105778.415628,152978.567477,8677697,2703232,0.001144,0.003186,74891487,49594602,0,0,72601,0,1,1 +1774164292.837209,0.55,4,3992.50,52.29,1636.35,2047.21,0.00,3518947704465.459961,3518947657227.866699,238,2,0.001145,0.003198,74891522,49594665,0,0,72604,0,1,1 +1774164297.837464,0.90,4,3992.50,52.61,1629.35,2059.92,0.00,3518257649676.529297,3518257649678.487793,70,0,0.001144,0.003175,74891557,49594726,0,0,72606,0,1,1 +1774164302.837525,0.70,4,3992.50,52.61,1629.34,2059.84,0.00,105837.581575,153069.973602,8676923,2702776,0.000924,0.003229,74891586,49594783,0,0,72609,0,1,1 +1774164307.837853,0.65,4,3992.50,52.90,1617.88,2071.29,0.00,3518206454354.617188,3518206407124.791992,21,0,0.001144,0.003188,74891621,49594845,0,0,72611,0,1,1 +1774164312.837297,0.55,4,3992.50,52.90,1617.89,2071.29,0.00,2.007059,0.000195,238,2,0.001170,0.003229,74891658,49594910,0,0,72614,0,1,1 +1774164317.837834,0.65,4,3992.50,52.90,1617.89,2071.29,0.00,3518059158949.122559,0.028122,237,494,0.001195,0.003250,74891697,49594976,0,0,72616,0,1,1 +1774164322.837626,0.55,4,3992.50,52.91,1617.66,2071.52,0.00,3518583738894.034180,3518583738895.544434,21,0,0.000991,0.002658,74891731,49595033,0,0,72619,0,1,1 +1774164327.837677,0.85,4,3992.50,53.10,1610.60,2079.10,0.00,1.538363,0.028320,237,494,0.001287,0.003314,74891775,49595105,0,0,72621,0,1,1 +1774164332.838144,0.80,4,3992.50,52.89,1618.95,2070.60,0.00,0.000000,0.000000,237,494,0.004000,0.005144,74891858,49595198,0,0,72624,0,1,1 +1774164337.835136,0.50,4,3992.50,53.03,1613.18,2076.37,0.00,3520554458363.083984,3520554458364.546875,70,0,0.001153,0.003185,74891894,49595260,0,0,72626,0,1,1 +1774164342.834910,19.88,4,3992.50,59.19,1378.31,2317.45,0.00,1.958878,0.000195,238,2,13.025834,0.018163,74893549,49596355,0,0,72629,0,1,1 +1774164347.837590,35.75,4,3992.50,59.05,1386.96,2311.80,0.00,0.000000,0.000000,238,2,121.506901,0.032981,74906153,49598706,0,0,72631,0,1,1 +1774164352.837516,30.85,4,3992.50,58.95,1390.72,2308.07,0.00,3518489299411.621094,3518489299413.580078,70,0,120.783709,0.054761,74918853,49602780,0,0,72634,0,1,1 +1774164357.833577,30.57,4,3992.50,58.87,1393.78,2304.93,0.00,0.000000,0.000000,70,0,120.296412,0.103617,74931811,49610725,0,0,72636,0,1,1 +1774164362.833453,31.57,4,3992.50,58.88,1393.57,2305.21,0.00,0.000000,0.000000,70,0,120.165685,0.115195,74944739,49619484,0,0,72639,0,1,1 +1774164367.837425,30.37,4,3992.50,59.01,1388.29,2310.56,0.00,3515644307216.968262,0.000000,21,0,118.943690,0.114422,74957595,49628244,0,0,72641,0,1,1 +1774164372.837966,30.39,4,3992.50,58.84,1395.15,2303.61,0.00,105827.467642,153061.805013,8676923,2703195,119.385322,0.109377,74970528,49636669,0,0,72644,0,1,1 +1774164377.835031,30.73,4,3992.50,58.87,1393.89,2304.98,0.00,0.000000,0.004593,8676923,2703209,119.872256,0.114420,74983546,49645418,0,0,72646,0,1,1 +1774164382.838375,30.87,4,3992.50,58.91,1392.14,2306.60,0.00,3516085409401.619141,3516085362193.689941,70,0,118.918336,0.109115,74996404,49653844,0,0,72649,0,1,1 +1774164387.834109,2.61,4,3992.50,54.07,1586.02,2116.79,0.00,3521441607783.989746,0.000000,21,0,52.737951,0.052945,75002221,49657719,0,0,72651,0,1,1 +1774164392.837436,3.36,4,3992.50,53.09,1624.31,2078.51,0.00,0.000000,0.000000,21,0,0.011582,0.006458,75002416,49657870,0,0,72654,0,1,1 +1774164397.837964,24.42,4,3992.50,52.40,1651.26,2051.46,0.00,0.048042,0.000000,70,0,32.184233,0.143534,75012671,49665768,0,0,72656,0,1,1 +1774164402.837230,8.86,4,3992.50,53.96,1590.05,2112.68,0.00,3518953946156.421387,0.000000,21,0,8.061173,0.041420,75015407,49667888,0,0,72659,0,1,1 +1774164407.834861,5.12,4,3992.50,53.26,1617.49,2085.15,0.00,0.048070,0.000000,70,0,0.018272,16.439931,75016522,49669919,0,0,72661,0,1,1 +1774164412.837730,30.92,4,3992.50,53.05,1617.83,2077.01,0.00,1.957666,0.000195,238,2,0.036754,118.101465,75019208,49682245,0,0,72664,0,1,1 +1774164417.834917,18.96,4,3992.50,52.91,1614.54,2071.54,0.00,0.000000,0.000000,238,2,0.023878,70.546655,75020806,49689711,0,0,72666,0,1,1 +1774164422.837242,12.49,4,3992.50,57.14,1451.79,2237.20,0.00,105809.450004,153213.846315,8677823,2706516,40.045948,0.024130,75025241,49691282,0,0,72669,0,1,1 +1774164427.834412,1.30,4,3992.50,52.28,1641.91,2047.06,0.00,0.000000,0.022474,8677823,2706552,0.005589,0.007493,75025376,49691430,0,0,72671,0,1,1 +1774164432.837588,0.50,4,3992.50,52.32,1640.60,2048.39,0.00,0.000000,0.045772,8677823,2706606,0.002428,0.003468,75025439,49691506,0,0,72674,0,1,1 +1774164437.836684,0.70,4,3992.50,52.30,1641.33,2047.65,0.00,3519073041750.113281,3519072994316.993164,70,0,0.002730,0.004446,75025504,49691590,0,0,72676,0,1,1 +1774164442.837723,0.50,4,3992.50,52.26,1642.84,2046.14,0.00,105838.613961,153253.350964,8677823,2706663,0.002733,0.003963,75025569,49691671,0,0,72679,0,1,1 +1774164447.835555,1.20,4,3992.50,52.82,1619.12,2068.14,0.00,3519963725371.630859,3519963677925.000488,237,494,0.002735,0.003956,75025634,49691751,0,0,72681,0,1,1 +1774164452.837597,2.25,4,3992.50,52.61,1627.56,2059.61,0.00,3517000638622.606934,3517000638624.116211,21,0,0.003070,0.004548,75025708,49691845,0,0,72684,0,1,1 +1774164457.837303,0.55,4,3992.50,52.60,1627.57,2059.60,0.00,0.175010,0.000000,199,0,0.002805,0.003876,75025772,49691924,0,0,72686,0,1,1 +1774164462.834920,0.70,4,3992.50,52.61,1627.34,2059.83,0.00,3520114534306.372559,0.000000,70,0,0.002797,0.004017,75025841,49692009,0,0,72689,0,1,1 +1774164467.833227,0.85,4,3992.50,52.61,1627.36,2059.82,0.00,1.959453,0.000195,238,2,0.002735,0.003956,75025906,49692089,0,0,72691,0,1,1 +1774164472.834905,0.75,4,3992.50,52.62,1627.14,2060.04,0.00,3517256856170.087891,3517256856172.094238,21,0,0.002807,0.004003,75025976,49692173,0,0,72694,0,1,1 +1774164477.834915,0.85,4,3992.50,52.66,1626.32,2061.73,0.00,1.538376,0.028320,237,494,0.002734,0.003954,75026041,49692253,0,0,72696,0,1,1 +1774164482.834895,0.45,4,3992.50,52.70,1624.79,2063.19,0.00,105859.528665,153286.358205,8677823,2707207,0.002734,0.003964,75026106,49692334,0,0,72699,0,1,1 +1774164487.833238,0.65,4,3992.50,52.70,1624.88,2063.18,0.00,3519603718615.782715,3519603671173.411621,237,494,0.002743,0.003964,75026172,49692415,0,0,72701,0,1,1 +1774164492.833233,0.65,4,3992.50,52.70,1624.89,2063.16,0.00,3518441015131.199707,3518441015132.662109,70,0,0.002734,0.003952,75026237,49692495,0,0,72704,0,1,1 +1774164497.833281,0.55,4,3992.50,52.70,1624.91,2063.15,0.00,3518403235885.187012,0.000000,21,0,0.002732,0.003891,75026303,49692577,0,0,72706,0,1,1 +1774164502.834891,11.26,4,3992.50,52.59,1626.81,2058.91,0.00,0.000000,0.000000,21,0,0.028993,40.052860,75028318,49697101,0,0,72709,0,1,1 +1774164507.835706,1.45,4,3992.50,52.91,1616.75,2071.57,0.00,0.000000,0.000000,21,0,0.003687,0.007448,75028400,49697231,0,0,72711,0,1,1 +1774164512.837336,0.70,4,3992.50,52.82,1620.23,2068.06,0.00,105822.058035,153270.079869,8677049,2707103,0.000915,0.002576,75028428,49697283,0,0,72714,0,1,1 +1774164517.837960,0.55,4,3992.50,52.80,1620.96,2067.38,0.00,3517997968226.669434,3517997920769.107910,21,0,0.001132,0.003188,75028462,49697345,0,0,72716,0,1,1 +1774164522.837375,0.60,4,3992.50,52.84,1619.50,2068.83,0.00,0.175020,0.000000,199,0,0.001145,0.003198,75028497,49697408,0,0,72719,0,1,1 +1774164527.834058,0.60,4,3992.50,52.84,1619.50,2068.83,0.00,1.364284,0.028339,237,494,0.001145,0.003190,75028532,49697470,0,0,72721,0,1,1 +1774164532.838103,0.60,4,3992.50,52.84,1619.51,2068.82,0.00,105773.547088,153202.112824,8677823,2707649,0.001139,0.003203,75028567,49697534,0,0,72724,0,1,1 +1774164537.833233,0.80,4,3992.50,52.83,1620.52,2068.52,0.00,3521867470264.817383,3521867422751.105957,238,2,0.001171,0.003222,75028604,49697598,0,0,72726,0,1,1 +1774164542.833238,0.70,4,3992.50,52.84,1620.31,2068.73,0.00,3518433268236.107910,3518433268237.939941,199,0,0.001195,0.003260,75028643,49697665,0,0,72729,0,1,1 +1774164547.833228,0.65,4,3992.50,53.02,1613.30,2075.75,0.00,0.000000,0.000000,199,0,0.000991,0.002648,75028677,49697721,0,0,72731,0,1,1 +1774164552.835709,0.50,4,3992.50,53.02,1613.05,2076.00,0.00,1.830927,0.000195,238,2,0.001299,0.003322,75028722,49697794,0,0,72734,0,1,1 +1774164557.834730,0.70,4,3992.50,53.02,1613.06,2076.00,0.00,3519125861694.466797,3519125861696.299316,199,0,0.001145,0.003189,75028757,49697856,0,0,72736,0,1,1 +1774164562.837674,1.10,4,3992.50,52.82,1620.93,2068.12,0.00,3516367103174.504883,0.000000,70,0,0.001144,0.003196,75028792,49697919,0,0,72739,0,1,1 +1774164567.837590,19.77,4,3992.50,58.77,1395.11,2300.98,0.00,3518496066989.059570,0.000000,21,0,31.251931,0.021742,75032309,49699161,0,0,72741,0,1,1 +1774164572.835583,35.13,4,3992.50,58.62,1404.37,2294.98,0.00,105899.054382,153387.989657,8677049,2707458,122.225430,0.034635,75045032,49701639,0,0,72744,0,1,1 +1774164577.837176,29.82,4,3992.50,58.72,1400.17,2299.18,0.00,3517316658289.845215,3517316610833.082520,238,2,122.136973,0.033484,75057767,49704047,0,0,72746,0,1,1 +1774164582.837226,29.55,4,3992.50,58.67,1402.14,2297.16,0.00,3518402136746.552246,0.028125,237,494,120.170737,0.043231,75070206,49707284,0,0,72749,0,1,1 +1774164587.838023,30.23,4,3992.50,58.90,1393.23,2306.15,0.00,105838.144000,153302.026351,8677049,2707503,120.146771,0.033683,75082528,49709836,0,0,72751,0,1,1 +1774164592.837525,30.06,4,3992.50,58.60,1405.13,2294.21,0.00,0.000000,0.004200,8677049,2707512,119.377944,0.022100,75094875,49711484,0,0,72754,0,1,1 +1774164597.833728,29.99,4,3992.50,59.46,1371.83,2327.92,0.00,3521110873357.177734,3521110825850.989258,199,0,119.055082,0.029596,75107080,49713614,0,0,72756,0,1,1 +1774164602.834492,30.92,4,3992.50,58.59,1405.41,2293.91,0.00,1.831556,0.000195,238,2,120.150834,0.023408,75119597,49715282,0,0,72759,0,1,1 +1774164607.833668,26.82,4,3992.50,58.68,1401.92,2297.50,0.00,3519017435736.901855,3519017435738.860840,70,0,119.136329,0.037861,75131912,49718050,0,0,72761,0,1,1 +1774164612.834905,1.80,4,3992.50,52.99,1624.70,2074.73,0.00,0.000000,0.000000,70,0,31.890427,0.015878,75135265,49719046,0,0,72764,0,1,1 +1774164617.837615,6.92,4,3992.50,52.25,1653.57,2045.84,0.00,1.957728,0.000195,238,2,4.035661,0.026595,75136774,49720146,0,0,72766,0,1,1 +1774164622.837400,25.82,4,3992.50,53.36,1610.06,2089.32,0.00,0.000000,0.000000,238,2,36.209336,0.153789,75148098,49728652,0,0,72769,0,1,1 +1774164627.835664,3.21,4,3992.50,53.07,1626.09,2077.68,0.00,3519659325406.233398,3519659325408.192383,70,0,0.012636,0.009278,75148345,49728867,0,0,72771,0,1,1 +1774164632.837977,1.50,4,3992.50,52.68,1636.97,2062.45,0.00,105807.738608,153256.945841,8677076,2708915,0.004998,0.006765,75148459,49728994,0,0,72774,0,1,1 +1774164637.837307,0.75,4,3992.50,52.48,1644.76,2054.66,0.00,3518908624114.205566,3518908576636.561035,199,0,0.002734,0.003955,75148524,49729074,0,0,72776,0,1,1 +1774164642.833847,0.90,4,3992.50,52.66,1637.52,2061.85,0.00,3520873291254.798828,0.000000,21,0,0.002736,0.003967,75148589,49729155,0,0,72779,0,1,1 +1774164647.837584,0.80,4,3992.50,52.66,1637.59,2061.83,0.00,0.000000,0.000000,21,0,0.002732,0.003951,75148654,49729235,0,0,72781,0,1,1 +1774164652.833236,0.80,4,3992.50,52.66,1637.60,2061.82,0.00,105948.848511,153461.774717,8677076,2709333,0.002736,0.003968,75148719,49729316,0,0,72784,0,1,1 +1774164657.833215,1.15,4,3992.50,53.11,1619.88,2079.54,0.00,0.000000,0.125391,8677076,2709386,0.002809,0.004048,75148790,49729402,0,0,72786,0,1,1 +1774164662.838131,0.90,4,3992.50,52.84,1630.46,2068.93,0.00,3514981373693.792969,3514981326268.677734,21,0,0.002502,0.003327,75148848,49729471,0,0,72789,0,1,1 +1774164667.837191,1.55,4,3992.50,52.41,1647.52,2051.88,0.00,105880.742816,153357.403342,8677850,2709964,0.002734,0.003955,75148913,49729551,0,0,72791,0,1,1 +1774164672.837097,0.85,4,3992.50,52.42,1646.89,2052.50,0.00,3518503161511.816895,3518503114043.190430,21,0,0.002734,0.003964,75148978,49729632,0,0,72794,0,1,1 +1774164677.833224,0.90,4,3992.50,52.45,1645.73,2053.65,0.00,0.000000,0.000000,21,0,0.002848,0.004060,75149051,49729719,0,0,72796,0,1,1 +1774164682.833258,0.85,4,3992.50,52.45,1645.75,2053.64,0.00,0.000000,0.000000,21,0,0.002729,0.003960,75149116,49729800,0,0,72799,0,1,1 +1774164687.833228,1.10,4,3992.50,52.65,1640.56,2061.21,0.00,105861.475201,153329.642856,8677850,2710109,0.002734,0.003954,75149181,49729880,0,0,72801,0,1,1 +1774164692.833212,0.85,4,3992.50,52.45,1645.95,2053.47,0.00,3518448297317.463867,3518448249849.430664,21,0,0.002734,0.003964,75149246,49729961,0,0,72804,0,1,1 +1774164697.836253,0.70,4,3992.50,52.40,1647.94,2051.48,0.00,0.000000,0.000000,21,0,0.003401,0.005517,75149314,49730047,0,0,72806,0,1,1 +1774164702.833225,0.85,4,3992.50,52.20,1655.59,2043.83,0.00,105924.970060,153421.727757,8677850,2710236,0.002506,0.003333,75149372,49730116,0,0,72809,0,1,1 +1774164707.833214,0.95,4,3992.50,52.25,1653.84,2045.58,0.00,3518445144077.068359,3518445096608.783691,199,0,0.002734,0.003954,75149437,49730196,0,0,72811,0,1,1 +1774164712.833223,0.80,4,3992.50,52.25,1653.86,2045.57,0.00,3518430582270.914062,0.000000,70,0,0.002734,0.003964,75149502,49730277,0,0,72814,0,1,1 +1774164717.834908,0.90,4,3992.50,52.29,1652.23,2047.46,0.00,3517252317625.840332,0.000000,21,0,0.002745,0.003953,75149568,49730357,0,0,72816,0,1,1 +1774164722.833211,9.19,4,3992.50,52.91,1627.20,2071.61,0.00,0.000000,0.000000,21,0,0.023361,34.668782,75151114,49734253,0,0,72819,0,1,1 +1774164727.833717,30.88,4,3992.50,53.82,1584.04,2107.15,0.00,0.174982,0.000000,199,0,0.023936,118.432855,75152915,49746749,0,0,72821,0,1,1 +1774164732.833285,15.40,4,3992.50,53.27,1604.24,2085.54,0.00,3518740919856.796387,0.000000,21,0,0.012426,52.006663,75153785,49752249,0,0,72824,0,1,1 +1774164737.833277,14.53,4,3992.50,57.46,1442.96,2249.72,0.00,2.006839,0.000195,238,2,39.060899,0.027233,75158095,49754112,0,0,72826,0,1,1 +1774164742.833971,10.28,4,3992.50,52.74,1625.61,2064.99,0.00,3517949398761.661133,0.028121,237,494,1.027174,35.455783,75159763,49758109,0,0,72829,0,1,1 +1774164747.837524,3.31,4,3992.50,52.75,1632.06,2065.22,0.00,105797.488882,153459.229991,8677196,2711621,0.003472,4.608379,75159930,49758702,0,0,72831,0,1,1 +1774164752.834468,0.65,4,3992.50,52.78,1630.85,2066.44,0.00,3520588531844.508301,3520588484121.070312,199,0,0.001445,0.003755,75159971,49758776,0,0,72834,0,1,1 +1774164757.837265,0.65,4,3992.50,52.78,1630.85,2066.44,0.00,3516470411816.991699,0.000000,21,0,0.001431,0.003741,75160011,49758849,0,0,72836,0,1,1 +1774164762.834915,0.55,4,3992.50,52.79,1630.62,2066.67,0.00,2.007779,0.000195,238,2,0.001145,0.003844,75160046,49758916,0,0,72839,0,1,1 +1774164767.834885,0.70,4,3992.50,52.55,1639.91,2057.38,0.00,3518458494852.933594,0.028125,237,494,0.001170,0.003219,75160083,49758980,0,0,72841,0,1,1 +1774164772.836858,0.55,4,3992.50,52.55,1639.92,2057.37,0.00,105835.016924,153507.812068,8677970,2712179,0.001144,0.003197,75160118,49759043,0,0,72844,0,1,1 +1774164777.834906,0.95,4,3992.50,52.75,1632.09,2065.18,0.00,3519811295061.388672,3519811247350.659180,238,2,0.001132,0.003189,75160152,49759105,0,0,72846,0,1,1 +1774164782.838033,0.60,4,3992.50,52.75,1632.08,2065.18,0.00,3516238187979.104004,0.028107,237,494,0.001027,0.003191,75160187,49759168,0,0,72849,0,1,1 +1774164787.833281,0.55,4,3992.50,52.77,1631.35,2065.91,0.00,0.000000,0.000000,237,494,0.001193,0.002756,75160228,49759231,0,0,72851,0,1,1 +1774164792.833230,0.55,4,3992.50,52.77,1631.35,2065.91,0.00,0.468462,3518473714455.348633,238,2,0.001269,0.003299,75160271,49759302,0,0,72854,0,1,1 +1774164797.834895,0.60,4,3992.50,52.70,1633.88,2063.37,0.00,0.000000,0.000000,238,2,0.001372,0.003744,75160314,49759377,0,0,72856,0,1,1 +1774164802.834887,0.65,4,3992.50,52.72,1633.14,2064.11,0.00,3518442624468.128906,3518442624470.087402,70,0,0.001144,0.003198,75160349,49759440,0,0,72859,0,1,1 +1774164807.838385,21.25,4,3992.50,58.82,1407.79,2303.05,0.00,105800.137198,153467.268721,8677196,2711896,34.031297,0.025758,75164221,49761070,0,0,72861,0,1,1 +1774164812.833188,34.98,4,3992.50,58.83,1410.41,2303.16,0.00,3522097685348.813477,3522097637598.752930,21,0,118.692347,0.029530,75176506,49763092,0,0,72864,0,1,1 +1774164817.838065,30.14,4,3992.50,58.91,1406.93,2306.64,0.00,105771.036871,153425.143632,8677196,2712040,118.863322,0.061094,75188926,49767676,0,0,72866,0,1,1 +1774164822.837840,30.14,4,3992.50,58.76,1412.82,2300.77,0.00,3518595970431.935547,3518595922729.192871,21,0,119.388417,0.071380,75201445,49773045,0,0,72869,0,1,1 +1774164827.839523,30.28,4,3992.50,58.97,1404.80,2308.84,0.00,2.006161,0.000195,238,2,119.147755,0.083982,75214091,49779392,0,0,72871,0,1,1 +1774164832.837540,30.59,4,3992.50,59.03,1402.42,2311.21,0.00,105914.211247,153635.816769,8677196,2712089,119.235058,0.077708,75226733,49785305,0,0,72874,0,1,1 +1774164837.837065,30.61,4,3992.50,59.34,1390.43,2323.14,0.00,3518771365881.885742,3518771318174.677246,238,2,119.389046,0.052336,75239276,49789275,0,0,72876,0,1,1 +1774164842.833206,30.66,4,3992.50,58.71,1414.96,2298.64,0.00,3521154250516.079590,3521154250517.913086,199,0,119.065334,0.043172,75251605,49792438,0,0,72879,0,1,1 +1774164847.837158,27.80,4,3992.50,58.76,1413.00,2300.64,0.00,3515658948149.189941,0.000000,70,0,119.888496,0.073181,75264081,49797999,0,0,72881,0,1,1 +1774164852.834915,1.30,4,3992.50,52.51,1657.69,2055.95,0.00,3520016221984.029297,0.000000,21,0,37.881775,0.030794,75268141,49800166,0,0,72884,0,1,1 +1774164857.834873,9.94,4,3992.50,52.66,1651.88,2061.75,0.00,0.000000,0.000000,21,0,6.051762,0.037531,75270312,49801825,0,0,72886,0,1,1 +1774164862.837191,23.67,4,3992.50,54.97,1561.46,2152.10,0.00,1.537666,0.028307,237,494,34.175044,0.143051,75280975,49809840,0,0,72889,0,1,1 +1774164867.835082,2.20,4,3992.50,54.47,1571.30,2132.71,0.00,105917.462680,153640.884044,8677210,2713353,0.016283,0.010949,75281287,49810102,0,0,72891,0,1,1 +1774164872.834901,1.05,4,3992.50,53.74,1597.82,2104.18,0.00,4.109426,0.042580,8677984,2713880,0.003753,0.005781,75281359,49810202,0,0,72894,0,1,1 +1774164877.834888,0.50,4,3992.50,53.37,1612.40,2089.61,0.00,3518446300223.449707,3518446252525.564941,70,0,0.002734,0.003942,75281424,49810281,0,0,72896,0,1,1 +1774164882.834893,0.65,4,3992.50,53.36,1612.80,2089.20,0.00,105878.285251,153576.425589,8677984,2714241,0.002505,0.003343,75281482,49810351,0,0,72899,0,1,1 +1774164887.835233,0.55,4,3992.50,53.36,1612.87,2089.14,0.00,3518197231615.888184,3518197183918.999023,238,2,0.002733,0.003954,75281547,49810431,0,0,72901,0,1,1 +1774164892.834915,0.70,4,3992.50,53.34,1613.51,2088.50,0.00,3518661030909.369141,3518661030911.375977,21,0,0.002734,0.004608,75281612,49810516,0,0,72904,0,1,1 +1774164897.834912,1.00,4,3992.50,53.30,1609.43,2086.98,0.00,0.000000,0.000000,21,0,0.002868,0.004118,75281688,49810607,0,0,72906,0,1,1 +1774164902.837837,0.60,4,3992.50,52.97,1622.36,2074.05,0.00,0.048019,0.000000,70,0,0.002719,0.003962,75281752,49810688,0,0,72909,0,1,1 +1774164907.838100,0.60,4,3992.50,52.97,1622.50,2073.91,0.00,0.126946,0.000000,199,0,0.002733,0.003954,75281817,49810768,0,0,72911,0,1,1 +1774164912.834891,0.65,4,3992.50,52.97,1622.52,2073.89,0.00,105946.280167,153675.514732,8677985,2714511,0.002735,0.003967,75281882,49810849,0,0,72914,0,1,1 +1774164917.836761,0.45,4,3992.50,52.94,1623.62,2072.79,0.00,3517121674880.498047,3517121627197.900879,238,2,0.002579,0.003359,75281945,49810920,0,0,72916,0,1,1 +1774164922.834893,0.60,4,3992.50,52.94,1623.64,2072.78,0.00,3519752572799.371582,3519752572801.379395,21,0,0.002735,0.003966,75282010,49811001,0,0,72919,0,1,1 +1774164927.834918,0.80,4,3992.50,53.06,1622.45,2077.41,0.00,1.538371,0.028320,237,494,0.002742,0.003962,75282076,49811082,0,0,72921,0,1,1 +1774164932.834917,0.90,4,3992.50,52.19,1652.87,2043.51,0.00,105872.820500,153577.037576,8677211,2714196,0.004907,0.004973,75282185,49811189,0,0,72924,0,1,1 +1774164937.834924,0.50,4,3992.50,52.20,1652.66,2043.72,0.00,3518432927334.197266,3518432879630.043945,237,494,0.002734,0.003954,75282250,49811269,0,0,72926,0,1,1 +1774164942.834903,0.65,4,3992.50,52.20,1652.68,2043.70,0.00,3518451626089.044434,3518451626090.554688,21,0,0.002734,0.003964,75282315,49811350,0,0,72929,0,1,1 +1774164947.833775,0.60,4,3992.50,52.22,1651.95,2044.43,0.00,105898.226606,153611.755636,8677211,2714285,0.002505,0.003321,75282373,49811418,0,0,72931,0,1,1 +1774164952.833211,0.60,4,3992.50,52.24,1651.05,2045.32,0.00,3518834509622.044922,3518834461913.713867,199,0,0.002742,0.003973,75282439,49811500,0,0,72934,0,1,1 +1774164957.837427,0.85,4,3992.50,52.62,1638.26,2060.29,0.00,105784.962522,153447.818958,8677211,2714379,0.002731,0.004594,75282504,49811584,0,0,72936,0,1,1 +1774164962.837262,10.30,4,3992.50,53.18,1612.89,2082.09,0.00,3518553493239.859863,3518553445535.407715,21,0,0.022613,39.462764,75284041,49815920,0,0,72939,0,1,1 +1774164967.834864,30.66,4,3992.50,53.03,1610.71,2076.09,0.00,105929.245518,153773.549301,8677985,2715726,0.021450,118.827257,75285586,49828313,0,0,72941,0,1,1 +1774164972.834901,13.22,4,3992.50,53.32,1597.64,2087.56,0.00,3518410987953.037598,3518410940130.023926,238,2,0.009023,46.871405,75286154,49833332,0,0,72944,0,1,1 +1774164977.837599,7.21,4,3992.50,57.78,1427.15,2262.34,0.00,3516539572302.020020,3516539572304.025879,21,0,0.606091,0.005739,75286386,49833505,0,0,72946,0,1,1 +1774164982.837390,8.83,4,3992.50,53.55,1593.00,2096.73,0.00,0.000000,0.000000,21,0,39.463074,0.021729,75290672,49834907,0,0,72949,0,1,1 +1774164987.833244,11.16,4,3992.50,53.00,1611.91,2075.23,0.00,1.539656,0.028344,237,494,0.023249,40.098596,75292255,49839353,0,0,72951,0,1,1 +1774164992.833215,1.15,4,3992.50,52.91,1616.57,2071.36,0.00,3518457152904.362305,3518457152905.697754,199,0,0.001939,0.004791,75292310,49839446,0,0,72954,0,1,1 +1774164997.835078,0.60,4,3992.50,52.65,1626.50,2061.44,0.00,3517126837157.857422,0.000000,21,0,0.001144,0.003187,75292345,49839508,0,0,72956,0,1,1 +1774165002.834933,0.65,4,3992.50,52.64,1626.88,2061.05,0.00,0.175005,0.000000,199,0,0.001144,0.003198,75292380,49839571,0,0,72959,0,1,1 +1774165007.834921,0.80,4,3992.50,52.64,1626.89,2061.05,0.00,1.363382,0.028320,237,494,0.001170,0.003219,75292417,49839635,0,0,72961,0,1,1 +1774165012.834916,0.55,4,3992.50,52.63,1627.52,2060.41,0.00,3518440882134.117676,3518440882135.453125,199,0,0.001152,0.003206,75292453,49839699,0,0,72964,0,1,1 +1774165017.833218,1.00,4,3992.50,52.65,1626.10,2061.39,0.00,105927.603701,153869.036458,8677325,2716343,0.001145,0.003189,75292488,49839761,0,0,72966,0,1,1 +1774165022.838002,0.60,4,3992.50,52.65,1625.89,2061.52,0.00,3515074096624.343262,3515074048745.120605,70,0,0.001143,0.003838,75292523,49839828,0,0,72969,0,1,1 +1774165027.837412,0.70,4,3992.50,52.60,1627.84,2059.56,0.00,105908.383681,153841.096638,8678099,2716962,0.001270,0.003331,75292568,49839899,0,0,72971,0,1,1 +1774165032.837936,0.70,4,3992.50,52.60,1627.84,2059.56,0.00,3518067902871.280273,3518067854947.296875,238,2,0.000972,0.002633,75292600,49839955,0,0,72974,0,1,1 +1774165037.837719,0.60,4,3992.50,52.61,1627.61,2059.81,0.00,105894.410387,153829.597782,8677325,2716477,0.001256,0.003289,75292642,49840025,0,0,72976,0,1,1 +1774165042.838002,0.75,4,3992.50,52.44,1634.36,2053.05,0.00,3518237989719.696289,3518237941791.261719,70,0,0.001152,0.003206,75292678,49840089,0,0,72979,0,1,1 +1774165047.834920,0.90,4,3992.50,52.65,1626.40,2061.38,0.00,105957.094192,153917.981592,8677325,2716521,0.001145,0.003190,75292713,49840151,0,0,72981,0,1,1 +1774165052.834114,22.55,4,3992.50,58.60,1400.44,2294.28,0.00,3519004296807.741211,3519004248868.743652,21,0,49.086252,0.029641,75298155,49841992,0,0,72984,0,1,1 +1774165057.833226,35.25,4,3992.50,58.89,1391.62,2305.53,0.00,0.000000,0.000000,21,0,120.392980,0.035828,75310662,49844622,0,0,72986,0,1,1 +1774165062.833681,30.86,4,3992.50,58.82,1394.10,2303.02,0.00,0.000000,0.000000,21,0,119.954668,0.042025,75322988,49847808,0,0,72989,0,1,1 +1774165067.836644,31.30,4,3992.50,58.81,1394.60,2302.51,0.00,0.000000,0.000000,21,0,120.095054,0.040136,75335266,49850806,0,0,72991,0,1,1 +1774165072.836281,31.20,4,3992.50,58.62,1402.04,2295.06,0.00,1.538491,0.028322,237,494,120.175985,0.036124,75347611,49853454,0,0,72994,0,1,1 +1774165077.837938,31.64,4,3992.50,58.98,1392.45,2309.33,0.00,3517271848083.141113,3517271848084.650879,21,0,119.526835,0.034407,75359907,49855949,0,0,72996,0,1,1 +1774165082.834295,30.81,4,3992.50,58.54,1409.61,2291.98,0.00,105973.136545,153935.691651,8678099,2717305,119.253702,0.030095,75372230,49858099,0,0,72999,0,1,1 +1774165087.833683,31.03,4,3992.50,58.82,1398.69,2302.89,0.00,3518867926432.963379,3518867878499.308594,199,0,119.782007,0.035480,75384591,49860678,0,0,73001,0,1,1 +1774165092.836833,23.49,4,3992.50,59.07,1388.92,2312.73,0.00,3516221325585.320312,0.000000,21,0,118.891566,0.037136,75396889,49863344,0,0,73004,0,1,1 +1774165097.837201,1.15,4,3992.50,52.15,1659.82,2041.84,0.00,0.174987,0.000000,199,0,18.228423,0.010615,75398843,49863899,0,0,73006,0,1,1 +1774165102.835397,10.24,4,3992.50,53.22,1618.13,2083.49,0.00,0.000000,0.000000,199,0,8.262268,0.046284,75401742,49866012,0,0,73009,0,1,1 +1774165107.837445,15.82,4,3992.50,54.34,1567.31,2127.43,0.00,3516996734242.198730,0.000000,21,0,22.082874,0.096131,75408787,49871293,0,0,73011,0,1,1 +1774165112.834905,6.38,4,3992.50,53.00,1619.50,2075.24,0.00,0.048071,0.000000,70,0,9.918047,0.049379,75412149,49873867,0,0,73014,0,1,1 +1774165117.834922,0.95,4,3992.50,52.63,1633.98,2060.75,0.00,0.000000,0.000000,70,0,0.003437,0.005338,75412230,49873970,0,0,73016,0,1,1 +1774165122.834948,0.60,4,3992.50,52.60,1635.31,2059.43,0.00,105891.375418,153823.861218,8677339,2718135,0.002492,0.003343,75412287,49874040,0,0,73019,0,1,1 +1774165127.834899,0.60,4,3992.50,52.60,1635.29,2059.45,0.00,3518471277201.054199,3518471229265.894531,238,2,0.002734,0.003954,75412352,49874120,0,0,73021,0,1,1 +1774165132.837592,0.60,4,3992.50,52.59,1635.54,2059.20,0.00,3516543325241.952148,3516543325243.783203,199,0,0.001951,0.003579,75412403,49874192,0,0,73024,0,1,1 +1774165137.837478,1.05,4,3992.50,52.69,1632.03,2062.86,0.00,0.000000,0.000000,199,0,0.002734,0.003954,75412468,49874272,0,0,73026,0,1,1 +1774165142.833248,0.55,4,3992.50,52.81,1627.36,2067.50,0.00,1.833387,0.000195,238,2,0.002870,0.004131,75412544,49874364,0,0,73029,0,1,1 +1774165147.837197,0.70,4,3992.50,52.88,1624.57,2070.30,0.00,3515660646275.715820,3515660646277.721191,21,0,0.002515,0.003318,75412603,49874432,0,0,73031,0,1,1 +1774165152.834882,19.91,4,3992.50,53.00,1615.94,2075.15,0.00,0.175081,0.000000,199,0,0.037922,82.561600,75415287,49883263,0,0,73034,0,1,1 +1774165157.837593,30.95,4,3992.50,53.00,1608.98,2074.93,0.00,0.000000,0.000000,199,0,0.032764,121.707349,75417664,49895894,0,0,73036,0,1,1 +1774165162.836069,1.61,4,3992.50,52.55,1626.65,2057.29,0.00,3519510309688.154785,0.000000,21,0,0.004286,0.808103,75417788,49896124,0,0,73039,0,1,1 +1774165167.833521,13.15,4,3992.50,57.59,1433.14,2254.95,0.00,0.048071,0.000000,70,0,26.659722,0.020620,75420846,49897368,0,0,73041,0,1,1 +1774165172.834707,1.61,4,3992.50,52.74,1623.30,2064.82,0.00,3517602413588.920410,0.000000,21,0,13.421975,0.010817,75422336,49897727,0,0,73044,0,1,1 +1774165177.837327,0.55,4,3992.50,52.55,1630.75,2057.36,0.00,0.000000,0.000000,21,0,0.002503,0.003319,75422394,49897795,0,0,73046,0,1,1 +1774165182.833738,0.50,4,3992.50,52.54,1631.24,2056.88,0.00,2.008277,0.000195,238,2,0.002736,0.003967,75422459,49897876,0,0,73049,0,1,1 +1774165187.838074,0.70,4,3992.50,52.55,1630.71,2057.40,0.00,3515388819077.649902,3515388819079.479980,199,0,0.002731,0.003951,75422524,49897956,0,0,73051,0,1,1 +1774165192.837656,0.90,4,3992.50,52.20,1644.27,2043.84,0.00,1.363493,0.028323,237,494,0.002754,0.003960,75422591,49898037,0,0,73054,0,1,1 +1774165197.834875,0.95,4,3992.50,52.46,1651.46,2054.00,0.00,0.468718,3520394827222.377930,238,2,0.002773,0.003988,75422659,49898119,0,0,73056,0,1,1 +1774165202.836508,0.75,4,3992.50,52.46,1648.02,2054.07,0.00,105877.024230,153980.865858,8678238,2720972,0.002733,0.003963,75422724,49898200,0,0,73059,0,1,1 +1774165207.833606,10.81,4,3992.50,53.23,1615.69,2083.95,0.00,3520480673705.354980,3520480625557.852539,238,2,0.020008,40.086768,75424015,49902634,0,0,73061,0,1,1 +1774165212.837029,1.00,4,3992.50,52.71,1636.27,2063.54,0.00,3516030120596.687500,3516030120598.518066,199,0,0.003091,0.006655,75424112,49902767,0,0,73064,0,1,1 +1774165217.833239,0.60,4,3992.50,52.71,1636.27,2063.55,0.00,3521106358910.652832,0.000000,21,0,0.000916,0.002556,75424140,49902817,0,0,73066,0,1,1 +1774165222.836374,0.80,4,3992.50,52.68,1637.37,2062.44,0.00,0.000000,0.000000,21,0,0.001144,0.003839,75424175,49902884,0,0,73069,0,1,1 +1774165227.833205,0.80,4,3992.50,53.07,1622.15,2077.93,0.00,1.539354,0.028338,237,494,0.001145,0.003190,75424210,49902946,0,0,73071,0,1,1 +1774165232.836615,0.65,4,3992.50,52.74,1635.08,2064.73,0.00,0.468138,3516039737415.539551,238,2,0.003316,0.004204,75424289,49903035,0,0,73074,0,1,1 +1774165237.835662,0.60,4,3992.50,52.72,1635.74,2064.06,0.00,3519107502437.036621,3519107502438.868652,199,0,0.001153,0.003197,75424325,49903098,0,0,73076,0,1,1 +1774165242.837190,0.60,4,3992.50,52.72,1635.75,2064.06,0.00,105876.984427,154024.395982,8677464,2720951,0.001144,0.003197,75424360,49903161,0,0,73079,0,1,1 +1774165247.838126,0.60,4,3992.50,52.72,1635.75,2064.06,0.00,3517778542468.521973,3517778494314.082031,237,494,0.001169,0.003218,75424397,49903225,0,0,73081,0,1,1 +1774165252.835630,0.60,4,3992.50,52.72,1635.75,2064.05,0.00,3520194317395.432129,3520194317396.895020,70,0,0.000992,0.002659,75424431,49903282,0,0,73084,0,1,1 +1774165257.837698,1.00,4,3992.50,52.82,1624.96,2067.94,0.00,1.957979,0.000195,238,2,0.001299,0.003312,75424476,49903354,0,0,73086,0,1,1 +1774165262.837836,0.60,4,3992.50,52.69,1629.95,2062.74,0.00,3518339773388.383301,0.028124,237,494,0.001144,0.003198,75424511,49903417,0,0,73089,0,1,1 +1774165267.833212,0.70,4,3992.50,52.68,1630.20,2062.49,0.00,106010.117762,154214.186025,8678238,2721539,0.001145,0.003191,75424546,49903479,0,0,73091,0,1,1 +1774165272.833240,16.83,4,3992.50,58.46,1409.51,2288.69,0.00,3518417463163.482422,3518417415005.599609,199,0,30.249083,0.019710,75427993,49904659,0,0,73094,0,1,1 +1774165277.837948,34.72,4,3992.50,58.82,1398.43,2302.96,0.00,105809.690468,153926.708586,8677464,2721173,122.054866,0.024046,75440535,49906331,0,0,73096,0,1,1 +1774165282.838294,29.34,4,3992.50,58.78,1399.80,2301.56,0.00,4.108993,0.094818,8678238,2721691,121.158728,0.018523,75452890,49907602,0,0,73099,0,1,1 +1774165287.837404,30.33,4,3992.50,58.70,1405.00,2298.18,0.00,3519063266790.157227,3519063218621.440430,238,2,120.186892,0.020406,75465092,49908922,0,0,73101,0,1,1 +1774165292.833503,29.50,4,3992.50,58.52,1411.98,2291.35,0.00,0.000000,0.000000,238,2,119.861144,0.024654,75477369,49910611,0,0,73104,0,1,1 +1774165297.836607,30.61,4,3992.50,58.47,1413.99,2289.26,0.00,0.000000,0.000000,238,2,119.497514,0.040901,75489620,49913638,0,0,73106,0,1,1 +1774165302.833755,31.20,4,3992.50,58.74,1403.57,2299.68,0.00,0.000000,0.000000,238,2,120.053314,0.072881,75502247,49919179,0,0,73109,0,1,1 +1774165307.837179,30.65,4,3992.50,58.59,1409.36,2293.79,0.00,3516029620256.604004,3516029620258.434570,199,0,119.105210,0.086520,75514826,49925840,0,0,73111,0,1,1 +1774165312.836408,27.58,4,3992.50,58.28,1421.63,2281.66,0.00,3518979837685.431641,0.000000,70,0,119.403189,0.071967,75527468,49931264,0,0,73114,0,1,1 +1774165317.837513,9.16,4,3992.50,54.00,1588.72,2114.38,0.00,105890.207308,154038.346983,8678247,2722053,41.897699,0.056479,75533802,49934516,0,0,73116,0,1,1 +1774165322.833250,18.89,4,3992.50,54.08,1585.20,2117.45,0.00,3521439675411.734863,3521439627211.853516,70,0,24.175226,0.110400,75541722,49940476,0,0,73119,0,1,1 +1774165327.836771,7.33,4,3992.50,54.07,1585.65,2116.94,0.00,0.000000,0.000000,70,0,8.049019,0.040952,75544402,49942515,0,0,73121,0,1,1 +1774165332.837317,13.47,4,3992.50,53.03,1624.25,2076.26,0.00,0.126939,0.000000,199,0,0.029236,49.674095,75546349,49948016,0,0,73124,0,1,1 +1774165337.836381,30.41,4,3992.50,52.95,1619.20,2073.03,0.00,3519095702774.747559,0.000000,21,0,0.039537,119.993391,75549254,49960495,0,0,73126,0,1,1 +1774165342.834882,10.47,4,3992.50,52.81,1623.96,2067.45,0.00,105945.426324,154297.585604,8678250,2724363,0.017955,35.467161,75550426,49964331,0,0,73129,0,1,1 +1774165347.834897,1.66,4,3992.50,52.67,1623.64,2062.06,0.00,3518426806645.321777,3518426758307.796875,21,0,0.004739,0.004022,75550508,49964414,0,0,73131,0,1,1 +1774165352.837241,14.60,4,3992.50,53.65,1587.46,2100.35,0.00,0.000000,0.000000,21,0,40.046745,0.026433,75554965,49965876,0,0,73134,0,1,1 +1774165357.833219,0.55,4,3992.50,52.72,1623.55,2064.26,0.00,106016.416497,154402.974398,8678382,2724765,0.002819,0.004523,75555030,49965959,0,0,73136,0,1,1 +1774165362.833203,0.65,4,3992.50,52.34,1638.73,2049.08,0.00,3518448434468.626953,3518448386119.323730,237,494,0.002834,0.004089,75555103,49966048,0,0,73139,0,1,1 +1774165367.833223,0.60,4,3992.50,52.28,1641.04,2046.77,0.00,105925.074330,154278.187189,8677608,2724360,0.002747,0.003954,75555169,49966128,0,0,73141,0,1,1 +1774165372.837380,0.80,4,3992.50,52.63,1627.34,2060.47,0.00,3515514302958.658691,3515514254646.856934,199,0,0.002503,0.003328,75555227,49966197,0,0,73144,0,1,1 +1774165377.834506,1.10,4,3992.50,52.24,1641.91,2045.45,0.00,3520460329422.835938,0.000000,21,0,0.002773,0.003988,75555295,49966279,0,0,73146,0,1,1 +1774165382.834946,0.60,4,3992.50,52.25,1641.75,2045.66,0.00,1.538244,0.028318,237,494,0.002733,0.003964,75555360,49966360,0,0,73149,0,1,1 +1774165387.834906,0.70,4,3992.50,52.25,1641.76,2045.65,0.00,3518465294679.029785,3518465294680.540039,21,0,0.002804,0.004013,75555430,49966445,0,0,73151,0,1,1 +1774165392.837378,0.55,4,3992.50,52.25,1641.78,2045.63,0.00,1.537619,0.028306,237,494,0.002732,0.003962,75555495,49966526,0,0,73154,0,1,1 +1774165397.837210,0.65,4,3992.50,52.25,1641.79,2045.62,0.00,105933.160073,154284.497610,8678382,2725329,0.003036,0.004552,75555573,49966622,0,0,73156,0,1,1 +1774165402.834426,0.70,4,3992.50,52.11,1647.19,2040.22,0.00,3520397607452.632812,3520397559075.978516,237,494,0.003405,0.004876,75555641,49966704,0,0,73159,0,1,1 +1774165407.834896,0.75,4,3992.50,52.32,1643.87,2048.45,0.00,105919.641752,154264.946282,8678382,2725442,0.002709,0.003865,75555706,49966784,0,0,73161,0,1,1 +1774165412.837427,0.65,4,3992.50,52.15,1650.55,2041.79,0.00,3516657031651.145996,3516656983325.261230,238,2,0.003654,0.004632,75555773,49966868,0,0,73164,0,1,1 +1774165417.837172,0.90,4,3992.50,52.16,1650.32,2042.02,0.00,3518616601326.446289,3518616601328.278320,199,0,0.002742,0.004124,75555839,49966950,0,0,73166,0,1,1 +1774165422.836738,1.60,4,3992.50,52.33,1643.52,2048.75,0.00,105940.166166,154292.940788,8678382,2725515,0.009219,2.012966,75556253,49967535,0,0,73169,0,1,1 +1774165427.837378,10.45,4,3992.50,53.08,1612.23,2078.09,0.00,3517987180219.424805,30.087264,8677608,2725259,0.019539,38.053790,75557629,49971513,0,0,73171,0,1,1 +1774165432.837410,0.60,4,3992.50,52.88,1620.13,2070.19,0.00,3518414062270.016113,3518414013887.558105,199,0,0.001144,0.003198,75557664,49971576,0,0,73174,0,1,1 +1774165437.837873,0.90,4,3992.50,52.98,1617.98,2074.12,0.00,3518111446539.191406,0.000000,70,0,0.001144,0.003188,75557699,49971638,0,0,73176,0,1,1 +1774165442.835296,0.60,4,3992.50,52.90,1620.95,2071.08,0.00,3520251566958.221680,0.000000,21,0,0.001128,0.003208,75557733,49971702,0,0,73179,0,1,1 +1774165447.834910,0.65,4,3992.50,52.77,1626.05,2065.99,0.00,0.000000,0.000000,21,0,0.001132,0.003188,75557767,49971764,0,0,73181,0,1,1 +1774165452.837049,0.55,4,3992.50,52.83,1623.63,2068.40,0.00,2.005977,0.000195,238,2,0.001144,0.003196,75557802,49971827,0,0,73184,0,1,1 +1774165457.834712,0.65,4,3992.50,52.67,1629.94,2062.10,0.00,3520083107516.265137,3520083107518.097656,199,0,0.001170,0.003221,75557839,49971891,0,0,73186,0,1,1 +1774165462.834917,0.60,4,3992.50,52.67,1629.94,2062.10,0.00,1.363323,0.028319,237,494,0.001195,0.003260,75557878,49971958,0,0,73189,0,1,1 +1774165467.837399,0.85,4,3992.50,52.86,1620.58,2069.73,0.00,105872.940434,154243.251836,8677608,2725465,0.001227,0.003275,75557920,49972026,0,0,73191,0,1,1 +1774165472.834912,0.45,4,3992.50,52.65,1628.29,2061.29,0.00,0.000000,0.003908,8677608,2725469,0.001072,0.002704,75557958,49972088,0,0,73194,0,1,1 +1774165477.834906,0.60,4,3992.50,52.65,1628.29,2061.29,0.00,3518441230089.739746,3518441181694.861816,238,2,0.001144,0.003188,75557993,49972150,0,0,73196,0,1,1 +1774165482.837444,0.60,4,3992.50,52.66,1627.91,2061.67,0.00,3516652047285.825684,3516652047287.783203,70,0,0.001144,0.003357,75558028,49972214,0,0,73199,0,1,1 +1774165487.834914,0.85,4,3992.50,52.26,1643.56,2046.00,0.00,1.491087,0.028335,237,494,0.002516,0.004378,75558085,49972295,0,0,73201,0,1,1 +1774165492.835735,41.26,4,3992.50,58.46,1409.49,2288.94,0.00,0.000000,0.000000,237,494,109.939351,0.047205,75569563,49975631,0,0,73204,0,1,1 +1774165497.836206,30.74,4,3992.50,58.78,1398.26,2301.39,0.00,105919.613219,154305.465159,8678382,2726132,121.960127,0.023702,75582187,49977272,0,0,73206,0,1,1 +1774165502.837762,30.23,4,3992.50,58.55,1407.44,2292.25,0.00,0.014839,0.054378,8678383,2726183,120.738683,0.042588,75594697,49980546,0,0,73209,0,1,1 +1774165507.833859,30.84,4,3992.50,58.43,1411.80,2287.71,0.00,3521186111964.235840,3521186063537.310059,199,0,120.260871,0.021806,75607132,49982171,0,0,73211,0,1,1 +1774165512.836849,30.58,4,3992.50,58.89,1393.93,2305.75,0.00,3516334212462.296875,0.000000,70,0,120.093322,0.027776,75619333,49984260,0,0,73214,0,1,1 +1774165517.835512,29.94,4,3992.50,58.95,1391.63,2307.95,0.00,105959.452465,154361.453335,8678384,2726274,120.197092,0.026838,75631562,49986181,0,0,73216,0,1,1 +1774165522.833914,30.06,4,3992.50,58.58,1405.97,2293.69,0.00,3519561645836.711426,3519561597432.063965,199,0,118.601369,0.024872,75643700,49988023,0,0,73219,0,1,1 +1774165527.833194,30.64,4,3992.50,58.73,1403.25,2299.48,0.00,105942.145252,154342.576635,8677610,2725820,119.783610,0.037359,75655975,49990760,0,0,73221,0,1,1 +1774165532.837531,7.74,4,3992.50,52.90,1631.52,2071.34,0.00,3515387800739.276855,3515387752386.428223,237,494,73.844688,0.030654,75663644,49992822,0,0,73224,0,1,1 +1774165537.837475,21.08,4,3992.50,54.58,1565.89,2136.91,0.00,0.468462,3518476015562.538086,238,2,26.171440,0.121350,75672246,49999186,0,0,73226,0,1,1 +1774165542.834889,9.98,4,3992.50,53.41,1611.70,2091.08,0.00,3520258415980.979004,3520258415982.812012,199,0,14.094937,0.063947,75676865,50002636,0,0,73229,0,1,1 +1774165547.838377,3.36,4,3992.50,52.83,1634.12,2068.61,0.00,3515984139798.937988,0.000000,21,0,0.013297,9.415984,75677614,50003973,0,0,73231,0,1,1 +1774165552.834886,30.73,4,3992.50,52.85,1626.02,2069.17,0.00,106005.304877,154526.743379,8678395,2728047,0.038283,122.261110,75680399,50016736,0,0,73234,0,1,1 +1774165557.834892,19.84,4,3992.50,52.84,1627.10,2068.83,0.00,0.005469,77.899917,8678400,2728734,0.028347,73.508667,75682377,50024435,0,0,73236,0,1,1 +1774165562.833274,1.55,4,3992.50,52.84,1627.31,2068.62,0.00,3519575534297.033691,3519575485714.351562,237,494,0.004442,0.005051,75682459,50024535,0,0,73239,0,1,1 +1774165567.833205,13.72,4,3992.50,53.20,1616.69,2082.80,0.00,105948.695311,154507.194645,8678526,2729188,40.066711,0.023601,75686988,50025852,0,0,73241,0,1,1 +1774165572.834601,1.00,4,3992.50,52.68,1636.79,2062.70,0.00,3517455162412.888184,3517455113870.121094,21,0,0.002504,0.003330,75687046,50025921,0,0,73244,0,1,1 +1774165577.837740,1.60,4,3992.50,52.38,1648.62,2050.88,0.00,2.005577,0.000195,238,2,0.002815,0.004053,75687118,50026008,0,0,73246,0,1,1 +1774165582.833229,0.85,4,3992.50,52.39,1648.43,2051.07,0.00,106038.308529,154666.652620,8677752,2728874,0.002761,0.003999,75687185,50026091,0,0,73249,0,1,1 +1774165587.834184,1.35,4,3992.50,52.68,1629.21,2062.51,0.00,3517765646606.704590,3517765598033.329590,199,0,0.002733,0.003954,75687250,50026171,0,0,73251,0,1,1 +1774165592.837181,0.85,4,3992.50,52.58,1632.68,2058.70,0.00,105881.011802,154434.699762,8677752,2728981,0.002757,0.003980,75687317,50026253,0,0,73254,0,1,1 +1774165597.836168,0.70,4,3992.50,52.59,1632.45,2058.93,0.00,3519150530473.497559,3519150481879.516113,237,494,0.002505,0.003334,75687375,50026322,0,0,73256,0,1,1 +1774165602.833225,0.75,4,3992.50,52.59,1632.23,2059.16,0.00,0.468733,3520508748048.902832,238,2,0.002829,0.004042,75687446,50026409,0,0,73259,0,1,1 +1774165607.833289,1.05,4,3992.50,52.59,1632.24,2059.14,0.00,3518392452819.696289,0.028125,237,494,0.002742,0.003962,75687512,50026490,0,0,73261,0,1,1 +1774165612.837202,0.75,4,3992.50,52.59,1632.25,2059.13,0.00,105860.286827,154406.587190,8677752,2729162,0.002819,0.004001,75687583,50026574,0,0,73264,0,1,1 +1774165617.836506,1.00,4,3992.50,52.81,1625.74,2067.64,0.00,0.000000,0.076866,8677752,2729217,0.002734,0.004599,75687648,50026658,0,0,73266,0,1,1 +1774165622.834888,0.65,4,3992.50,52.47,1639.07,2054.28,0.00,4.110608,0.075806,8678526,2729769,0.002734,0.003966,75687713,50026739,0,0,73269,0,1,1 +1774165627.834910,0.70,4,3992.50,52.48,1638.62,2054.73,0.00,3518421276763.865234,3518421276767.954102,8677752,2729282,0.002734,0.003942,75687778,50026818,0,0,73271,0,1,1 +1774165632.836240,0.80,4,3992.50,52.48,1638.63,2054.72,0.00,4.108185,0.063264,8678526,2729821,0.002504,0.003330,75687836,50026887,0,0,73274,0,1,1 +1774165637.834913,0.75,4,3992.50,52.48,1638.65,2054.70,0.00,3519371177832.527832,3519371129239.255859,237,494,0.002742,0.003963,75687902,50026968,0,0,73276,0,1,1 +1774165642.833224,11.04,4,3992.50,52.61,1630.98,2059.61,0.00,3519626069583.343750,3519626069584.806641,70,0,0.024907,40.077179,75689591,50031371,0,0,73279,0,1,1 +1774165647.833256,1.35,4,3992.50,52.76,1623.44,2065.62,0.00,105948.047263,154560.896361,8678526,2730186,0.002353,0.005639,75689659,50031477,0,0,73281,0,1,1 +1774165652.838080,0.55,4,3992.50,52.68,1626.54,2062.57,0.00,3515045215764.082520,3515045167197.661621,199,0,0.001443,0.003749,75689700,50031551,0,0,73284,0,1,1 +1774165657.834903,0.70,4,3992.50,52.56,1631.12,2057.98,0.00,3520674430603.705078,0.000000,21,0,0.001445,0.003745,75689741,50031624,0,0,73286,0,1,1 +1774165662.834918,0.55,4,3992.50,52.57,1630.88,2058.23,0.00,0.174999,0.000000,199,0,0.001152,0.003206,75689777,50031688,0,0,73289,0,1,1 +1774165667.834924,0.50,4,3992.50,52.58,1630.65,2058.46,0.00,105944.363704,154561.729564,8677752,2729744,0.001144,0.003188,75689812,50031750,0,0,73291,0,1,1 +1774165672.837826,0.60,4,3992.50,52.58,1630.65,2058.46,0.00,3516396427676.757812,3516396379087.660156,70,0,0.001144,0.003196,75689847,50031813,0,0,73294,0,1,1 +1774165677.837661,0.80,4,3992.50,52.62,1631.46,2060.13,0.00,3518553149431.689453,0.000000,21,0,0.001170,0.003219,75689884,50031877,0,0,73296,0,1,1 +1774165682.835523,0.55,4,3992.50,52.59,1632.47,2059.14,0.00,0.000000,0.000000,21,0,0.001195,0.003893,75689923,50031947,0,0,73299,0,1,1 +1774165687.837476,0.60,4,3992.50,52.61,1631.98,2059.62,0.00,2.006052,0.000195,238,2,0.000991,0.002659,75689957,50032004,0,0,73301,0,1,1 +1774165692.833220,0.55,4,3992.50,52.61,1631.98,2059.62,0.00,3521435023421.057617,0.028149,237,494,0.001265,0.003297,75690000,50032075,0,0,73304,0,1,1 +1774165697.834906,0.70,4,3992.50,52.61,1631.99,2059.62,0.00,3517251310622.989258,3517251310624.323730,199,0,0.001372,0.003744,75690043,50032150,0,0,73306,0,1,1 +1774165702.834880,0.55,4,3992.50,52.61,1631.77,2059.84,0.00,1.831845,0.000195,238,2,0.001144,0.003198,75690078,50032213,0,0,73309,0,1,1 +1774165707.844395,3.80,4,3992.50,58.59,1399.46,2293.77,0.00,105741.427242,154274.554486,8677752,2729935,0.404910,0.007391,75690289,50032412,0,0,73311,0,1,1 +1774165712.837044,41.31,4,3992.50,58.78,1395.81,2301.50,0.00,0.000000,0.083717,8677752,2730036,112.524279,0.036328,75701927,50034988,0,0,73314,0,1,1 +1774165717.835320,29.60,4,3992.50,58.81,1395.15,2302.54,0.00,3519650855239.897949,3519650806599.561035,21,0,118.612536,0.041941,75714181,50038056,0,0,73316,0,1,1 +1774165722.833194,29.52,4,3992.50,59.44,1370.48,2327.05,0.00,2.007689,0.000195,238,2,119.824144,0.047157,75726474,50041533,0,0,73319,0,1,1 +1774165727.833458,30.35,4,3992.50,58.89,1391.61,2305.69,0.00,3518251735797.136230,3518251735799.143066,21,0,118.655722,0.089040,75739025,50048317,0,0,73321,0,1,1 +1774165732.834874,30.49,4,3992.50,58.59,1403.65,2293.86,0.00,0.000000,0.000000,21,0,119.686623,0.097256,75751954,50055792,0,0,73324,0,1,1 +1774165737.837592,29.62,4,3992.50,59.07,1385.14,2312.78,0.00,105891.201431,154484.488568,8678526,2730644,119.118877,0.074247,75764528,50061484,0,0,73326,0,1,1 +1774165742.834835,29.74,4,3992.50,58.65,1401.52,2296.44,0.00,3520378581160.852051,3520378532514.269531,70,0,119.246516,0.063198,75777063,50066370,0,0,73329,0,1,1 +1774165747.837903,28.93,4,3992.50,58.93,1390.84,2307.14,0.00,3516279105240.915039,0.000000,21,0,119.512983,0.083876,75789665,50072815,0,0,73331,0,1,1 +1774165752.836364,8.30,4,3992.50,53.57,1600.46,2097.58,0.00,2.007454,0.000195,238,2,78.148199,0.050373,75798014,50076498,0,0,73334,0,1,1 +1774165757.833237,1.71,4,3992.50,52.85,1628.99,2069.05,0.00,3520639051750.723145,3520639051752.556641,199,0,0.006486,0.007685,75798135,50076626,0,0,73336,0,1,1 +1774165762.833643,21.17,4,3992.50,52.76,1632.32,2065.70,0.00,1.831687,0.000195,238,2,24.147189,0.106432,75805745,50082229,0,0,73339,0,1,1 +1774165767.837965,11.61,4,3992.50,54.99,1545.09,2153.11,0.00,105851.266603,154435.760105,8677764,2731062,16.093288,0.076216,75811256,50086341,0,0,73341,0,1,1 +1774165772.834518,1.05,4,3992.50,53.73,1594.23,2103.73,0.00,3520863885131.829590,3520863836471.800781,238,2,0.003231,0.004751,75811332,50086436,0,0,73344,0,1,1 +1774165777.837210,0.65,4,3992.50,53.30,1611.27,2086.68,0.00,105885.762511,154486.757036,8677764,2731692,0.002732,0.003952,75811397,50086516,0,0,73346,0,1,1 +1774165782.837733,0.55,4,3992.50,53.26,1612.59,2085.37,0.00,0.000000,0.007323,8677764,2731701,0.002733,0.003964,75811462,50086597,0,0,73349,0,1,1 +1774165787.836442,0.65,4,3992.50,53.25,1613.23,2084.73,0.00,3519345398826.638672,3519345350188.927734,21,0,0.002747,0.003955,75811528,50086677,0,0,73351,0,1,1 +1774165792.834931,0.55,4,3992.50,53.25,1613.03,2084.93,0.00,0.175053,0.000000,199,0,0.002734,0.003965,75811593,50086758,0,0,73354,0,1,1 +1774165797.836412,1.00,4,3992.50,53.14,1619.34,2080.44,0.00,105917.331800,154524.525081,8678538,2732360,0.002841,0.004085,75811667,50086847,0,0,73356,0,1,1 +1774165802.834914,0.70,4,3992.50,53.17,1617.96,2081.82,0.00,3519491441210.760742,3519491392572.768066,238,2,0.002760,0.003997,75811734,50086930,0,0,73359,0,1,1 +1774165807.835561,0.45,4,3992.50,53.17,1617.97,2081.80,0.00,3517982436477.243652,3517982436479.250488,21,0,0.002504,0.003320,75811792,50086998,0,0,73361,0,1,1 +1774165812.834642,0.60,4,3992.50,53.18,1617.52,2082.26,0.00,1.538662,0.028326,237,494,0.002734,0.004609,75811857,50087083,0,0,73364,0,1,1 +1774165817.837318,0.55,4,3992.50,53.19,1617.28,2082.50,0.00,3516554799207.578613,3516554799209.087891,21,0,0.002794,0.003992,75811926,50087166,0,0,73366,0,1,1 +1774165822.837955,0.60,4,3992.50,53.01,1624.47,2075.31,0.00,1.538183,0.028317,237,494,0.002733,0.003964,75811991,50087247,0,0,73369,0,1,1 +1774165827.833638,0.85,4,3992.50,53.18,1616.62,2082.31,0.00,3521477613212.408203,3521477613213.871582,70,0,0.002744,0.003966,75812057,50087328,0,0,73371,0,1,1 +1774165832.835064,0.75,4,3992.50,52.85,1629.82,2069.12,0.00,3517434334185.986816,0.000000,21,0,0.004906,0.004971,75812166,50087435,0,0,73374,0,1,1 +1774165837.837867,4.61,4,3992.50,52.70,1635.62,2063.28,0.00,105885.410516,154484.021049,8677774,2732257,0.018440,18.024578,75813253,50089657,0,0,73376,0,1,1 +1774165842.834230,29.98,4,3992.50,52.95,1618.25,2073.15,0.00,3520998286952.678223,3520998238289.909180,237,494,0.048716,118.253719,75816905,50101915,0,0,73379,0,1,1 +1774165847.834928,18.15,4,3992.50,52.85,1619.31,2069.02,0.00,3517946024111.290527,3517946024112.625488,199,0,0.021962,68.888005,75818531,50109071,0,0,73381,0,1,1 +1774165852.837391,7.57,4,3992.50,57.30,1448.81,2243.52,0.00,105914.025766,154668.163615,8678667,2733973,2.011046,0.011935,75819058,50109489,0,0,73384,0,1,1 +1774165857.834874,9.36,4,3992.50,53.94,1586.70,2111.97,0.00,3520209324139.567871,3520209275336.846191,199,0,38.078546,0.021983,75823090,50110726,0,0,73386,0,1,1 +1774165862.837502,0.65,4,3992.50,53.26,1613.32,2085.17,0.00,3516588925612.930176,0.000000,21,0,0.002503,0.003329,75823148,50110795,0,0,73389,0,1,1 +1774165867.834887,11.06,4,3992.50,52.89,1625.78,2070.65,0.00,1.539184,0.028335,237,494,0.026506,40.083216,75824975,50115168,0,0,73391,0,1,1 +1774165872.834903,1.05,4,3992.50,53.05,1619.53,2076.84,0.00,3518425859143.700684,3518425859145.035645,199,0,0.003428,0.006644,75825069,50115305,0,0,73394,0,1,1 +1774165877.833282,0.50,4,3992.50,52.87,1626.49,2069.88,0.00,3519578244183.223633,0.000000,21,0,0.000966,0.003274,75825101,50115364,0,0,73396,0,1,1 +1774165882.837671,0.60,4,3992.50,52.70,1633.18,2063.20,0.00,2.005076,0.000195,238,2,0.001177,0.003234,75825139,50115430,0,0,73399,0,1,1 +1774165887.837710,0.55,4,3992.50,52.70,1632.93,2063.43,0.00,3518409783580.660645,3518409783582.619141,70,0,0.001144,0.003188,75825174,50115492,0,0,73401,0,1,1 +1774165892.837604,1.00,4,3992.50,52.87,1626.31,2070.06,0.00,1.490364,0.028321,237,494,0.000903,0.002564,75825201,50115543,0,0,73404,0,1,1 +1774165897.837390,0.55,4,3992.50,52.68,1633.74,2062.64,0.00,3518587455381.051270,3518587455382.386230,199,0,0.001132,0.003188,75825235,50115605,0,0,73406,0,1,1 +1774165902.837380,0.75,4,3992.50,52.68,1633.73,2062.65,0.00,3518444661652.555176,0.000000,70,0,0.001170,0.003229,75825272,50115670,0,0,73409,0,1,1 +1774165907.837639,0.85,4,3992.50,52.48,1641.49,2054.89,0.00,3518254731083.270020,0.000000,21,0,0.001195,0.003250,75825311,50115736,0,0,73411,0,1,1 +1774165912.836600,0.50,4,3992.50,52.49,1641.25,2055.13,0.00,0.175036,0.000000,199,0,0.000987,0.002666,75825345,50115794,0,0,73414,0,1,1 +1774165917.837311,1.00,4,3992.50,52.79,1629.98,2066.85,0.00,1.363185,0.028316,237,494,0.001325,0.003344,75825392,50115868,0,0,73416,0,1,1 +1774165922.837273,0.45,4,3992.50,52.79,1628.02,2066.83,0.00,105965.641146,154817.641934,8678667,2734903,0.001144,0.003198,75825427,50115931,0,0,73419,0,1,1 +1774165927.837120,0.65,4,3992.50,52.79,1628.02,2066.84,0.00,3518544951247.086914,3518544902393.961914,237,494,0.001144,0.003188,75825462,50115993,0,0,73421,0,1,1 +1774165932.837693,9.53,4,3992.50,58.84,1396.84,2303.80,0.00,105952.688216,154798.722695,8678668,2734937,2.210268,0.010608,75826056,50116478,0,0,73424,0,1,1 +1774165937.833980,37.03,4,3992.50,58.86,1399.17,2304.45,0.00,3521051953702.783203,3521051904814.343262,238,2,118.254619,0.036039,75838375,50119101,0,0,73426,0,1,1 +1774165942.836852,30.62,4,3992.50,58.88,1398.31,2305.32,0.00,0.000000,0.000000,238,2,120.101650,0.025858,75850851,50120846,0,0,73429,0,1,1 +1774165947.836190,30.45,4,3992.50,59.18,1386.72,2316.84,0.00,3518903439658.452637,3518903439660.411133,70,0,118.180366,0.018899,75863009,50122108,0,0,73431,0,1,1 +1774165952.837428,30.42,4,3992.50,58.98,1394.25,2309.32,0.00,105935.980854,154778.365124,8677894,2734616,120.134934,0.017862,75875258,50123363,0,0,73434,0,1,1 +1774165957.837966,30.75,4,3992.50,59.08,1390.79,2312.97,0.00,3518058679421.194824,3518058630571.840332,199,0,118.955821,0.033084,75887465,50125837,0,0,73436,0,1,1 +1774165962.837843,30.03,4,3992.50,58.97,1394.73,2308.84,0.00,1.831881,0.000195,238,2,119.371862,0.041723,75899764,50128984,0,0,73439,0,1,1 +1774165967.838075,30.04,4,3992.50,58.83,1400.20,2303.38,0.00,3518274268452.308105,3518274268454.314941,21,0,118.959416,0.039699,75911937,50131899,0,0,73441,0,1,1 +1774165972.837387,30.44,4,3992.50,58.98,1394.27,2309.27,0.00,0.000000,0.000000,21,0,119.382001,0.036762,75924161,50134580,0,0,73444,0,1,1 +1774165977.837302,6.33,4,3992.50,53.99,1589.95,2113.76,0.00,105964.147614,154819.585939,8677902,2734687,69.898699,0.024987,75931328,50136374,0,0,73446,0,1,1 +1774165982.833975,2.36,4,3992.50,53.12,1624.25,2079.89,0.00,3520779929171.892090,3520779880284.578125,199,0,0.009373,0.006219,75931503,50136522,0,0,73449,0,1,1 +1774165987.835105,17.90,4,3992.50,52.79,1637.30,2066.79,0.00,0.000000,0.000000,199,0,22.130335,0.098841,75938595,50141832,0,0,73451,0,1,1 +1774165992.837263,13.62,4,3992.50,52.91,1632.50,2071.52,0.00,105916.555763,154750.882072,8677909,2735753,18.108996,0.084748,75944545,50146319,0,0,73454,0,1,1 +1774165997.837149,12.04,4,3992.50,53.12,1622.91,2079.62,0.00,3518516790289.216797,3518516741432.715820,199,0,0.027037,44.474208,75946307,50151318,0,0,73456,0,1,1 +1774166002.835901,30.31,4,3992.50,53.17,1612.55,2081.83,0.00,1.832293,0.000195,238,2,0.024026,120.203372,75947984,50163913,0,0,73459,0,1,1 +1774166007.833235,12.06,4,3992.50,53.07,1615.51,2077.95,0.00,3520314984321.406250,3520314984323.365723,70,0,0.009785,40.485650,75948517,50168273,0,0,73461,0,1,1 +1774166012.833220,12.39,4,3992.50,57.45,1448.32,2249.15,0.00,0.000000,0.000000,70,0,37.860983,0.023211,75952677,50169689,0,0,73464,0,1,1 +1774166017.833224,1.15,4,3992.50,53.07,1619.53,2077.94,0.00,3518434526428.668945,0.000000,21,0,2.209897,0.008029,75953044,50169865,0,0,73466,0,1,1 +1774166022.833281,0.55,4,3992.50,52.68,1634.91,2062.58,0.00,0.048046,0.000000,70,0,0.002721,0.003978,75953108,50169947,0,0,73469,0,1,1 +1774166027.833224,0.60,4,3992.50,52.61,1637.67,2059.81,0.00,105981.054356,155011.221539,8678059,2737619,0.002834,0.004079,75953181,50170035,0,0,73471,0,1,1 +1774166032.833231,0.45,4,3992.50,52.64,1636.46,2061.03,0.00,3518431866069.484375,3518431817039.819336,199,0,0.002729,0.003960,75953246,50170116,0,0,73474,0,1,1 +1774166037.833225,1.00,4,3992.50,52.90,1622.38,2071.13,0.00,1.831838,0.000195,238,2,0.002505,0.003333,75953304,50170185,0,0,73476,0,1,1 +1774166042.833211,0.60,4,3992.50,52.91,1621.64,2071.57,0.00,3518447045051.752441,3518447045053.759277,21,0,0.002759,0.003995,75953371,50170268,0,0,73479,0,1,1 +1774166047.836296,0.55,4,3992.50,52.91,1621.66,2071.56,0.00,2.005598,0.000195,238,2,0.002732,0.003952,75953436,50170348,0,0,73481,0,1,1 +1774166052.837597,0.55,4,3992.50,52.72,1629.29,2063.96,0.00,105950.322798,154983.850880,8678059,2738135,0.002795,0.004014,75953505,50170433,0,0,73484,0,1,1 +1774166057.834902,1.81,4,3992.50,52.72,1629.08,2064.16,0.00,3520334548439.502930,3520334499368.772949,21,0,0.002766,0.003982,75953572,50170515,0,0,73486,0,1,1 +1774166062.836137,0.80,4,3992.50,52.72,1629.09,2064.15,0.00,0.000000,0.000000,21,0,0.003477,0.004925,75953645,50170601,0,0,73489,0,1,1 +1774166067.834910,1.25,4,3992.50,52.82,1624.43,2068.07,0.00,0.000000,0.000000,21,0,0.002734,0.003955,75953710,50170681,0,0,73491,0,1,1 +1774166072.837928,0.70,4,3992.50,52.86,1623.12,2069.40,0.00,2.005625,0.000195,238,2,0.002503,0.003972,75953768,50170754,0,0,73494,0,1,1 +1774166077.835394,1.15,4,3992.50,52.67,1630.27,2062.25,0.00,3520221588082.862305,3520221588084.870605,21,0,0.002567,0.003818,75953831,50170833,0,0,73496,0,1,1 +1774166082.834879,0.55,4,3992.50,52.68,1630.07,2062.46,0.00,0.175018,0.000000,199,0,0.002734,0.003965,75953896,50170914,0,0,73499,0,1,1 +1774166087.834934,0.50,4,3992.50,52.67,1630.34,2062.19,0.00,0.000000,0.000000,199,0,0.002115,0.003717,75953949,50170987,0,0,73501,0,1,1 +1774166092.837753,11.13,4,3992.50,52.58,1631.30,2058.48,0.00,3516454314756.234375,0.000000,70,0,0.021204,40.046152,75955244,50175579,0,0,73504,0,1,1 +1774166097.835328,0.95,4,3992.50,52.44,1636.49,2053.29,0.00,0.000000,0.000000,70,0,0.001145,0.003189,75955279,50175641,0,0,73506,0,1,1 +1774166102.837797,0.55,4,3992.50,52.64,1628.91,2060.87,0.00,105931.674037,154982.982563,8678834,2739252,0.001144,0.003196,75955314,50175704,0,0,73509,0,1,1 +1774166107.834893,0.55,4,3992.50,52.64,1628.70,2061.09,0.00,3520481824796.584961,3520481775690.576172,238,2,0.001158,0.003190,75955350,50175766,0,0,73511,0,1,1 +1774166112.834899,0.65,4,3992.50,52.46,1635.88,2053.91,0.00,105977.786121,155059.338023,8678060,2738798,0.001144,0.003198,75955385,50175829,0,0,73514,0,1,1 +1774166117.837540,0.50,4,3992.50,52.26,1643.52,2046.26,0.00,3516579238529.787598,3516579189475.924805,199,0,0.001144,0.003186,75955420,50175891,0,0,73516,0,1,1 +1774166122.834930,0.55,4,3992.50,52.27,1643.28,2046.50,0.00,106035.103513,155145.740126,8678060,2738838,0.001153,0.003208,75955456,50175955,0,0,73519,0,1,1 +1774166127.835826,0.75,4,3992.50,52.41,1637.65,2051.88,0.00,3517806673251.607422,3517806624175.532715,70,0,0.001195,0.003250,75955495,50176021,0,0,73521,0,1,1 +1774166132.833265,0.50,4,3992.50,52.46,1635.75,2053.79,0.00,3520239915295.199219,0.000000,21,0,0.003141,0.003640,75955571,50176103,0,0,73524,0,1,1 +1774166137.834897,0.55,4,3992.50,52.53,1632.94,2056.60,0.00,105945.357746,155014.287821,8678060,2738921,0.001121,0.003398,75955613,50176172,0,0,73526,0,1,1 +1774166142.838121,0.55,4,3992.50,52.53,1632.72,2056.82,0.00,0.000000,0.004684,8678060,2738926,0.001144,0.003183,75955648,50176234,0,0,73529,0,1,1 +1774166147.834914,0.55,4,3992.50,52.54,1632.48,2057.05,0.00,3520695402977.183105,3520695353859.224609,237,494,0.001145,0.003190,75955683,50176296,0,0,73531,0,1,1 +1774166152.834544,0.70,4,3992.50,52.55,1632.23,2057.30,0.00,3518697478489.271484,3518697478490.781738,21,0,0.001144,0.003198,75955718,50176359,0,0,73534,0,1,1 +1774166157.836188,23.14,4,3992.50,58.90,1394.04,2306.07,0.00,105949.195007,155014.009824,8678834,2739492,36.246342,0.026673,75959767,50178042,0,0,73536,0,1,1 +1774166162.837736,34.14,4,3992.50,58.71,1404.23,2298.81,0.00,3517348458226.439941,3517348409160.679688,21,0,118.127650,0.046188,75971841,50181445,0,0,73539,0,1,1 +1774166167.837204,30.16,4,3992.50,58.81,1400.58,2302.42,0.00,2.007049,0.000195,238,2,119.378047,0.033037,75984120,50183944,0,0,73541,0,1,1 +1774166172.836859,30.72,4,3992.50,59.13,1388.00,2314.98,0.00,105989.331193,155075.828667,8678834,2739635,118.971591,0.041982,75996253,50187087,0,0,73544,0,1,1 +1774166177.833631,29.43,4,3992.50,58.75,1402.79,2300.21,0.00,3520710803643.877930,0.024430,8678060,2739159,119.240041,0.039287,76008349,50190071,0,0,73546,0,1,1 +1774166182.833250,30.03,4,3992.50,58.83,1399.79,2303.19,0.00,0.000000,0.026369,8678060,2739173,119.173801,0.042172,76020475,50193228,0,0,73549,0,1,1 +1774166187.837183,30.26,4,3992.50,58.82,1399.94,2303.07,0.00,3515671770411.986328,3515671721365.124023,199,0,119.272436,0.036587,76032739,50196024,0,0,73551,0,1,1 +1774166192.833719,32.56,4,3992.50,58.83,1400.85,2303.36,0.00,3520876879398.439453,0.000000,21,0,119.047023,0.033181,76044936,50198439,0,0,73554,0,1,1 +1774166197.835396,26.65,4,3992.50,58.66,1407.74,2296.51,0.00,2.006163,0.000195,238,2,119.724852,0.045406,76057113,50201808,0,0,73556,0,1,1 +1774166202.833224,1.26,4,3992.50,53.27,1618.44,2085.82,0.00,106024.081089,155132.844881,8678073,2739252,36.268876,0.016327,76060872,50202899,0,0,73559,0,1,1 +1774166207.837554,8.78,4,3992.50,52.19,1660.86,2043.40,0.00,0.000000,0.209096,8678073,2739590,6.048076,0.038326,76063120,50204577,0,0,73561,0,1,1 +1774166212.836401,22.33,4,3992.50,53.31,1616.81,2087.37,0.00,3519248039007.236816,3519247989908.779297,237,494,34.215476,0.151559,76074320,50213058,0,0,73564,0,1,1 +1774166217.837841,1.95,4,3992.50,53.87,1595.19,2109.08,0.00,0.000000,0.000000,237,494,0.006201,0.007299,76074456,50213207,0,0,73566,0,1,1 +1774166222.834903,0.65,4,3992.50,53.40,1613.32,2090.86,0.00,3520505519956.833008,3520505519958.168945,199,0,0.002723,0.003967,76074520,50213288,0,0,73569,0,1,1 +1774166227.838021,0.55,4,3992.50,53.33,1616.07,2088.11,0.00,1.830694,0.000195,238,2,0.002732,0.003952,76074585,50213368,0,0,73571,0,1,1 +1774166232.837682,0.65,4,3992.50,53.32,1616.67,2087.51,0.00,3518676162883.149414,3518676162885.156738,21,0,0.002505,0.003331,76074643,50213437,0,0,73574,0,1,1 +1774166237.834899,0.60,4,3992.50,53.13,1624.09,2080.10,0.00,1.539235,0.028336,237,494,0.002506,0.003323,76074701,50213505,0,0,73576,0,1,1 +1774166242.834972,0.60,4,3992.50,53.13,1624.10,2080.09,0.00,3518385732787.359863,3518385732788.870117,21,0,0.002734,0.003964,76074766,50213586,0,0,73579,0,1,1 +1774166247.834909,1.00,4,3992.50,52.91,1633.01,2071.64,0.00,105985.483877,155069.024633,8678847,2741457,0.002830,0.004087,76074839,50213675,0,0,73581,0,1,1 +1774166252.837561,0.60,4,3992.50,52.78,1637.69,2066.50,0.00,3516571937056.381348,3516571887999.433594,70,0,0.003065,0.004548,76074913,50213769,0,0,73584,0,1,1 +1774166257.838140,0.55,4,3992.50,52.72,1640.06,2064.13,0.00,0.000000,0.000000,70,0,0.003033,0.004508,76074984,50213860,0,0,73586,0,1,1 +1774166262.835228,0.55,4,3992.50,52.76,1638.38,2065.80,0.00,106045.862100,155157.518353,8678847,2741561,0.002810,0.004007,76075054,50213944,0,0,73589,0,1,1 +1774166267.834294,0.65,4,3992.50,52.76,1638.39,2065.79,0.00,3519094422582.870117,3519094373489.187988,237,494,0.002722,0.003955,76075118,50214024,0,0,73591,0,1,1 +1774166272.833781,0.50,4,3992.50,52.76,1638.41,2065.78,0.00,105993.477954,155083.104677,8678847,2741636,0.002128,0.004359,76075172,50214101,0,0,73594,0,1,1 +1774166277.837250,0.85,4,3992.50,52.70,1640.01,2063.31,0.00,0.000000,0.048014,8678847,2741659,0.002503,0.003331,76075230,50214170,0,0,73596,0,1,1 +1774166282.837729,0.65,4,3992.50,52.69,1640.41,2062.97,0.00,3518100341892.898438,3518100292812.461914,238,2,0.002733,0.003964,76075295,50214251,0,0,73599,0,1,1 +1774166287.833215,0.55,4,3992.50,52.69,1640.42,2062.96,0.00,106077.897342,155207.439606,8678847,2741728,0.002736,0.003958,76075360,50214331,0,0,73601,0,1,1 +1774166292.833307,0.50,4,3992.50,52.69,1640.44,2062.94,0.00,3518372274075.210449,3518372224992.931641,21,0,0.002742,0.003960,76075426,50214412,0,0,73604,0,1,1 +1774166297.836414,0.65,4,3992.50,52.69,1640.45,2062.93,0.00,0.048017,0.000000,70,0,0.002960,0.004496,76075499,50214504,0,0,73606,0,1,1 +1774166302.836782,0.55,4,3992.50,52.69,1640.59,2062.79,0.00,1.958645,0.000195,238,2,0.002733,0.003964,76075564,50214585,0,0,73609,0,1,1 +1774166307.837319,0.85,4,3992.50,52.69,1641.88,2062.97,0.00,3518059164577.413086,0.028122,237,494,0.002925,0.004486,76075635,50214676,0,0,73611,0,1,1 +1774166312.836471,12.25,4,3992.50,53.11,1623.78,2079.50,0.00,3519034047613.414062,3519034047614.749512,199,0,0.026995,46.881060,76077503,50219832,0,0,73614,0,1,1 +1774166317.838037,31.39,4,3992.50,53.11,1615.73,2079.20,0.00,1.831263,0.000195,238,2,0.029401,120.137605,76079612,50232492,0,0,73616,0,1,1 +1774166322.837368,11.06,4,3992.50,52.90,1622.98,2071.18,0.00,0.000000,0.000000,238,2,0.015151,38.064690,76080683,50236589,0,0,73619,0,1,1 +1774166327.834883,13.91,4,3992.50,57.39,1451.52,2246.99,0.00,3520186888204.404785,3520186888206.412598,21,0,38.880498,0.020905,76084951,50237899,0,0,73621,0,1,1 +1774166332.837377,0.95,4,3992.50,53.39,1608.09,2090.42,0.00,0.000000,0.000000,21,0,1.206296,0.005040,76085199,50238042,0,0,73624,0,1,1 +1774166337.833212,11.75,4,3992.50,53.53,1600.93,2095.65,0.00,106089.987257,155430.434350,8678980,2743701,0.022879,40.099807,76086734,50242487,0,0,73626,0,1,1 +1774166342.833222,0.85,4,3992.50,53.02,1620.76,2075.66,0.00,3518429776103.416992,3518429726804.171875,21,0,0.002532,0.006283,76086804,50242606,0,0,73629,0,1,1 +1774166347.833195,0.65,4,3992.50,53.07,1618.50,2077.92,0.00,0.048047,0.000000,70,0,0.001144,0.003188,76086839,50242668,0,0,73631,0,1,1 +1774166352.833232,0.60,4,3992.50,52.95,1623.14,2073.29,0.00,3518411449889.245117,0.000000,21,0,0.000916,0.002564,76086867,50242719,0,0,73634,0,1,1 +1774166357.833243,0.70,4,3992.50,52.96,1622.92,2073.51,0.00,1.538375,0.028320,237,494,0.001170,0.003219,76086904,50242783,0,0,73636,0,1,1 +1774166362.833213,0.55,4,3992.50,52.96,1622.92,2073.50,0.00,0.468460,3518458316114.610352,238,2,0.001157,0.003198,76086940,50242846,0,0,73639,0,1,1 +1774166367.833241,0.75,4,3992.50,53.16,1615.70,2081.31,0.00,3518417250307.547363,3518417250309.505859,70,0,0.000916,0.002554,76086968,50242896,0,0,73641,0,1,1 +1774166372.833241,0.65,4,3992.50,52.92,1624.46,2071.96,0.00,3518437515690.903320,0.000000,21,0,0.001144,0.003198,76087003,50242959,0,0,73644,0,1,1 +1774166377.834905,0.50,4,3992.50,52.92,1624.46,2071.96,0.00,0.000000,0.000000,21,0,0.001270,0.003342,76087048,50243031,0,0,73646,0,1,1 +1774166382.834907,0.55,4,3992.50,52.93,1624.22,2072.20,0.00,1.538378,0.028320,237,494,0.001209,0.003262,76087088,50243099,0,0,73649,0,1,1 +1774166387.837245,0.60,4,3992.50,52.94,1623.87,2072.55,0.00,3516792309461.823730,3516792309463.285156,70,0,0.001268,0.003287,76087131,50243169,0,0,73651,0,1,1 +1774166392.837519,0.50,4,3992.50,52.94,1623.88,2072.54,0.00,0.126946,0.000000,199,0,0.001144,0.003198,76087166,50243232,0,0,73654,0,1,1 +1774166397.837700,0.80,4,3992.50,53.14,1617.64,2080.64,0.00,0.000000,0.000000,199,0,0.001144,0.003188,76087201,50243294,0,0,73656,0,1,1 +1774166402.834077,24.94,4,3992.50,58.69,1405.85,2298.04,0.00,106074.217256,155426.042370,8678216,2743699,43.901260,0.029023,76092065,50245065,0,0,73659,0,1,1 +1774166407.837983,34.94,4,3992.50,58.89,1400.81,2305.71,0.00,3515690280008.684570,3515690230729.791016,237,494,120.073971,0.034835,76104470,50247634,0,0,73661,0,1,1 +1774166412.833282,31.30,4,3992.50,59.02,1395.86,2310.74,0.00,3521748673942.458008,3521748673943.794434,199,0,118.274687,0.028548,76116610,50249775,0,0,73664,0,1,1 +1774166417.837130,30.77,4,3992.50,59.05,1394.68,2311.82,0.00,1.830427,0.000195,238,2,119.875793,0.025301,76129054,50251629,0,0,73666,0,1,1 +1774166422.837275,31.13,4,3992.50,58.55,1414.14,2292.46,0.00,3518335086390.642578,3518335086392.649414,21,0,118.764859,0.023635,76141502,50253306,0,0,73669,0,1,1 +1774166427.837593,32.23,4,3992.50,59.02,1395.68,2310.93,0.00,105994.881110,155303.694747,8678990,2744269,119.763915,0.038122,76153980,50256111,0,0,73671,0,1,1 +1774166432.837671,31.94,4,3992.50,59.17,1393.97,2316.64,0.00,3518382628467.184082,3518382579155.818848,199,0,118.969532,0.038685,76166397,50258927,0,0,73674,0,1,1 +1774166437.836409,30.80,4,3992.50,58.64,1414.91,2295.79,0.00,0.000000,0.000000,199,0,119.394750,0.030035,76178688,50261225,0,0,73676,0,1,1 +1774166442.833740,26.91,4,3992.50,58.99,1401.30,2309.47,0.00,3520316629188.445801,0.000000,21,0,119.231388,0.025598,76191060,50263064,0,0,73679,0,1,1 +1774166447.836233,1.55,4,3992.50,53.69,1608.86,2101.92,0.00,0.000000,0.000000,21,0,27.229715,0.009832,76193988,50263539,0,0,73681,0,1,1 +1774166452.833615,8.04,4,3992.50,53.53,1615.06,2095.70,0.00,0.000000,0.000000,21,0,6.050213,0.033408,76196075,50265074,0,0,73684,0,1,1 +1774166457.833822,16.61,4,3992.50,53.10,1624.35,2079.11,0.00,0.000000,0.000000,21,0,22.127800,0.094956,76203029,50270183,0,0,73686,0,1,1 +1774166462.837727,8.54,4,3992.50,52.17,1660.53,2042.70,0.00,105919.046213,155193.179712,8679008,2745247,12.072636,0.059478,76207138,50273152,0,0,73689,0,1,1 +1774166467.834945,1.66,4,3992.50,52.25,1657.33,2045.90,0.00,0.000000,0.016025,8679008,2745277,0.005494,0.009838,76207255,50273323,0,0,73691,0,1,1 +1774166472.834916,1.00,4,3992.50,52.25,1657.35,2045.88,0.00,3518457452231.955078,3518457402919.039062,21,0,0.003899,0.007140,76207357,50273465,0,0,73694,0,1,1 +1774166477.835750,0.75,4,3992.50,52.26,1657.24,2045.99,0.00,105984.094023,155288.724709,8679008,2745298,0.003877,0.007121,76207457,50273605,0,0,73696,0,1,1 +1774166482.837911,0.80,4,3992.50,52.52,1646.91,2056.33,0.00,3516916961734.791992,0.581682,8678234,2745341,0.003419,0.005863,76207543,50273722,0,0,73699,0,1,1 +1774166487.833218,1.15,4,3992.50,52.88,1635.60,2070.48,0.00,3521742522373.528320,3521742473009.605957,70,0,0.003882,0.007129,76207643,50273862,0,0,73701,0,1,1 +1774166492.833232,0.85,4,3992.50,52.68,1643.35,2062.61,0.00,3518427654944.697754,0.000000,21,0,0.003991,0.007288,76207752,50274013,0,0,73704,0,1,1 +1774166497.837641,0.80,4,3992.50,52.64,1644.79,2061.16,0.00,0.000000,0.000000,21,0,0.003875,0.007116,76207852,50274153,0,0,73706,0,1,1 +1774166502.833264,1.05,4,3992.50,52.26,1660.57,2046.00,0.00,0.048089,0.000000,70,0,0.003423,0.005870,76207938,50274270,0,0,73709,0,1,1 +1774166507.837584,1.60,4,3992.50,52.27,1660.24,2046.34,0.00,105906.094649,155181.397501,8678234,2745512,0.003862,0.007149,76208037,50274411,0,0,73711,0,1,1 +1774166512.837805,0.70,4,3992.50,52.18,1663.52,2043.07,0.00,3518281958613.327637,3518281909297.668945,21,0,0.002852,0.003625,76208120,50274501,0,0,73714,0,1,1 +1774166517.835647,0.75,4,3992.50,52.47,1654.74,2054.37,0.00,106047.533891,155382.715248,8679008,2746095,0.001588,0.002321,76208164,50274558,0,0,73716,0,1,1 +1774166522.837561,1.25,4,3992.50,52.51,1653.09,2056.03,0.00,3517090491232.259277,3517090441937.244141,21,0,0.001564,0.002861,76208204,50274615,0,0,73719,0,1,1 +1774166527.834931,0.85,4,3992.50,52.51,1653.09,2056.02,0.00,0.000000,0.000000,21,0,0.002446,0.002954,76208259,50274679,0,0,73721,0,1,1 +1774166532.834900,0.65,4,3992.50,52.46,1655.16,2053.96,0.00,0.048047,0.000000,70,0,0.001522,0.003019,76208296,50274734,0,0,73724,0,1,1 +1774166537.834874,1.76,4,3992.50,52.62,1649.05,2060.05,0.00,3518455466852.260742,0.000000,21,0,0.038442,2.690882,76211098,50277975,0,0,73726,0,1,1 +1774166542.836832,2.32,4,3992.50,52.72,1644.90,2064.20,0.00,0.000000,0.000000,21,0,0.053986,3.474144,76214954,50282238,0,0,73729,0,1,1 +1774166547.836713,3.48,4,3992.50,53.11,1631.91,2079.21,0.00,0.000000,0.000000,21,0,0.042500,3.462928,76218120,50285689,0,0,73731,0,1,1 +1774166552.837323,2.11,4,3992.50,53.00,1635.87,2075.10,0.00,105988.835067,155299.387472,8679008,2746401,0.044104,3.464901,76221388,50289308,0,0,73734,0,1,1 +1774166557.837457,2.42,4,3992.50,52.92,1638.98,2071.93,0.00,3518342844367.635254,3518342795050.381348,238,2,0.045335,3.463700,76224647,50292898,0,0,73736,0,1,1 +1774166562.833202,18.55,4,3992.50,60.42,1345.52,2365.39,0.00,106085.920924,155450.600111,8678234,2745942,1.797596,3.492633,76231874,50301133,0,0,73739,0,1,1 +1774166567.836372,3.06,4,3992.50,60.19,1354.34,2356.58,0.00,3516207635964.653809,3516207586673.233887,238,2,3.776586,3.529057,76244361,50314791,0,0,73741,0,1,1 +1774166572.834560,3.06,4,3992.50,60.22,1352.82,2357.89,0.00,3519713090799.293945,0.028135,237,494,3.451132,3.544206,76257491,50329533,0,0,73744,0,1,1 +1774166577.833385,3.22,4,3992.50,60.14,1349.81,2354.62,0.00,3519263945921.604004,3519263945923.114258,21,0,3.540573,3.531925,76270312,50343653,0,0,73746,0,1,1 +1774166582.837554,3.22,4,3992.50,59.72,1366.13,2338.03,0.00,105913.446833,155210.559018,8679008,2746770,3.769185,3.526801,76282643,50357692,0,0,73749,0,1,1 +1774166587.833891,3.38,4,3992.50,59.81,1362.07,2341.89,0.00,0.000000,0.007720,8679008,2746784,3.580063,3.526810,76295278,50370932,0,0,73751,0,1,1 +1774166592.833991,3.68,4,3992.50,59.81,1362.23,2341.52,0.00,3518366866429.359863,3518366817090.110352,238,2,3.619531,3.516865,76308080,50383807,0,0,73754,0,1,1 +1774166597.833603,3.22,4,3992.50,59.74,1364.48,2339.07,0.00,3518710276984.802734,3518710276986.761719,70,0,3.599581,3.521867,76320373,50397112,0,0,73756,0,1,1 +1774166602.836195,3.52,4,3992.50,59.99,1354.47,2348.87,0.00,105942.697285,155280.391824,8678234,2746521,3.539217,3.515829,76331866,50409784,0,0,73759,0,1,1 +1774166607.834034,3.21,4,3992.50,60.37,1347.85,2363.64,0.00,3519957911262.985352,3519957861876.422363,238,2,3.584359,3.507295,76343534,50421930,0,0,73761,0,1,1 +1774166612.837251,3.37,4,3992.50,59.90,1366.16,2345.26,0.00,3516175122623.270020,3516175122625.100586,199,0,3.650539,3.508248,76355577,50434091,0,0,73764,0,1,1 +1774166617.833218,3.32,4,3992.50,59.84,1368.64,2342.71,0.00,1.833315,0.000195,238,2,3.575344,3.499797,76367153,50445661,0,0,73766,0,1,1 +1774166622.837942,3.51,4,3992.50,59.86,1367.79,2343.61,0.00,3515115584944.229980,0.028098,237,494,3.444969,3.490365,76378176,50456878,0,0,73769,0,1,1 +1774166627.835068,3.58,4,3992.50,60.30,1350.38,2360.89,0.00,3520461530589.310059,3520461530590.645996,199,0,3.631796,3.501648,76388988,50468889,0,0,73771,0,1,1 +1774166632.833413,3.32,4,3992.50,60.26,1351.76,2359.37,0.00,3519601656420.485840,0.000000,21,0,3.592587,3.511484,76400884,50481189,0,0,73774,0,1,1 +1774166637.836500,3.73,4,3992.50,60.21,1353.59,2357.26,0.00,0.174892,0.000000,199,0,3.541956,3.502960,76412658,50492886,0,0,73776,0,1,1 +1774166642.835636,3.48,4,3992.50,59.75,1355.50,2339.25,0.00,0.000000,0.000000,199,0,3.508467,3.512614,76423880,50505612,0,0,73779,0,1,1 +1774166647.833198,3.47,4,3992.50,59.73,1357.93,2338.57,0.00,3520153667492.677246,0.000000,21,0,3.814113,3.500198,76436046,50517368,0,0,73781,0,1,1 +1774166652.836910,3.41,4,3992.50,59.76,1356.78,2339.61,0.00,2.005347,0.000195,238,2,3.650798,3.496630,76447713,50528824,0,0,73784,0,1,1 +1774166657.836784,3.52,4,3992.50,59.66,1360.56,2335.81,0.00,3518525910215.732910,3518525910217.691895,70,0,3.421210,3.496368,76458473,50539836,0,0,73786,0,1,1 +1774166662.837434,3.01,4,3992.50,59.69,1359.45,2337.01,0.00,0.126937,0.000000,199,0,3.469467,3.495123,76469534,50551045,0,0,73789,0,1,1 +1774166667.835108,4.43,4,3992.50,60.22,1338.97,2357.68,0.00,3520074794846.589844,0.000000,21,0,3.676994,3.496354,76481113,50562278,0,0,73791,0,1,1 +1774166672.836365,3.42,4,3992.50,60.15,1341.55,2354.90,0.00,0.174956,0.000000,199,0,3.606494,3.491370,76492565,50573303,0,0,73794,0,1,1 +1774166677.835371,3.62,4,3992.50,60.19,1339.71,2356.75,0.00,106018.576517,155433.375869,8678234,2747114,3.661126,3.491208,76503911,50584241,0,0,73796,0,1,1 +1774166682.838066,3.21,4,3992.50,59.87,1352.22,2344.20,0.00,3516541496423.959961,3516541447044.276855,237,494,3.349777,3.476105,76514367,50594745,0,0,73799,0,1,1 +1774166687.833820,3.48,4,3992.50,60.17,1340.80,2355.73,0.00,3521427270384.129395,3521427270385.592773,70,0,3.571458,3.499215,76524918,50606340,0,0,73801,0,1,1 +1774166692.838119,3.16,4,3992.50,60.13,1342.24,2354.38,0.00,1.489052,0.028296,237,494,3.775745,3.508036,76537153,50618553,0,0,73804,0,1,1 +1774166697.835580,4.08,4,3992.50,60.33,1345.05,2362.23,0.00,3520224705062.221191,3520224705063.684082,70,0,3.735689,3.500005,76549225,50630200,0,0,73806,0,1,1 +1774166702.833982,3.72,4,3992.50,60.10,1346.93,2353.24,0.00,1.959415,0.000195,238,2,3.507510,3.493687,76560495,50641232,0,0,73809,0,1,1 +1774166707.833878,3.22,4,3992.50,60.00,1351.15,2348.98,0.00,3518510833720.388184,3518510833722.395508,21,0,3.543036,3.491487,76571890,50652027,0,0,73811,0,1,1 +1774166712.835509,3.77,4,3992.50,60.05,1349.15,2351.07,0.00,105963.080548,155372.324298,8678234,2747408,3.470554,3.488446,76582591,50662703,0,0,73814,0,1,1 +1774166717.834021,3.27,4,3992.50,60.00,1351.30,2348.96,0.00,4.110501,0.040832,8679008,2747925,3.738727,3.496565,76593821,50674232,0,0,73816,0,1,1 +1774166722.837035,3.16,4,3992.50,60.16,1344.68,2355.55,0.00,3516317433679.203613,3516317384287.505371,199,0,3.555607,3.496214,76604769,50685224,0,0,73819,0,1,1 +1774166727.837766,3.57,4,3992.50,60.56,1329.61,2371.18,0.00,105981.983682,155421.395301,8678234,2747588,3.489445,3.490184,76615627,50695945,0,0,73821,0,1,1 +1774166732.833180,3.83,4,3992.50,60.17,1344.55,2355.69,0.00,3521666828464.310059,3521666778972.406738,70,0,3.566069,3.493032,76626793,50707190,0,0,73824,0,1,1 +1774166737.836808,2.90,4,3992.50,60.08,1348.15,2352.16,0.00,105920.750822,155331.459968,8678234,2747656,3.695263,3.492596,76638344,50718107,0,0,73826,0,1,1 +1774166742.833533,3.63,4,3992.50,59.96,1352.79,2347.44,0.00,3520743338349.069824,3520743288868.633789,237,494,3.451955,3.498808,76649058,50729597,0,0,73829,0,1,1 +1774166747.837534,3.32,4,3992.50,59.96,1352.57,2347.59,0.00,0.000000,0.000000,237,494,3.613012,3.498476,76660551,50741122,0,0,73831,0,1,1 +1774166752.837344,3.26,4,3992.50,60.05,1349.25,2351.00,0.00,106000.140479,155450.074135,8678234,2747710,3.694231,3.500261,76672365,50752599,0,0,73834,0,1,1 +1774166757.837857,3.62,4,3992.50,60.45,1332.36,2366.79,0.00,4.108856,20.099697,8679008,2748355,3.528035,3.493562,76683550,50763756,0,0,73836,0,1,1 +1774166762.837213,3.67,4,3992.50,60.18,1342.88,2356.18,0.00,3518890366927.104492,3518890317458.018555,199,0,3.552762,3.484958,76694436,50774038,0,0,73839,0,1,1 +1774166767.833454,3.62,4,3992.50,60.17,1343.05,2355.89,0.00,106081.342532,155581.288007,8679008,2748392,3.675593,3.490122,76705430,50785157,0,0,73841,0,1,1 +1774166772.833199,3.37,4,3992.50,60.01,1349.57,2349.42,0.00,3518616430575.265137,3518616381110.187988,21,0,3.527776,3.487741,76716022,50795811,0,0,73844,0,1,1 +1774166777.833220,3.47,4,3992.50,60.08,1346.64,2352.38,0.00,1.538372,0.028320,237,494,3.521850,3.492521,76727196,50806702,0,0,73846,0,1,1 +1774166782.835825,3.21,4,3992.50,60.14,1344.46,2354.52,0.00,3516605712800.597168,3516605712802.106934,21,0,3.661664,3.497365,76738580,50818318,0,0,73849,0,1,1 +1774166787.837660,3.11,4,3992.50,60.11,1345.47,2353.49,0.00,0.000000,0.000000,21,0,3.696278,3.496890,76749451,50829963,0,0,73851,0,1,1 +1774166792.837794,4.07,4,3992.50,60.11,1344.39,2353.61,0.00,2.006782,0.000195,238,2,3.437444,3.490671,76760791,50840384,0,0,73854,0,1,1 +1774166797.834893,3.68,4,3992.50,60.17,1342.00,2355.98,0.00,3520479981472.361816,3520479981474.370117,21,0,3.468513,3.491398,76771980,50851115,0,0,73856,0,1,1 +1774166802.835508,3.57,4,3992.50,60.04,1347.23,2350.71,0.00,105988.719914,155466.357548,8679008,2748677,3.610606,3.490385,76783190,50862031,0,0,73859,0,1,1 +1774166807.833394,3.67,4,3992.50,60.20,1340.96,2356.99,0.00,3519925653394.812012,3519925603888.141602,238,2,3.553408,3.485179,76794303,50872797,0,0,73861,0,1,1 +1774166812.837438,4.38,4,3992.50,60.28,1337.99,2360.07,0.00,3515593201558.332520,3515593201560.289551,70,0,3.590029,3.492184,76805428,50883705,0,0,73864,0,1,1 +1774166817.833470,4.49,4,3992.50,60.69,1322.29,2376.00,0.00,0.000000,0.000000,70,0,3.465608,3.496604,76816073,50895001,0,0,73866,0,1,1 +1774166822.833270,3.32,4,3992.50,60.47,1330.41,2367.67,0.00,106001.833360,155511.964949,8678234,2748384,3.556278,3.489005,76826946,50905746,0,0,73869,0,1,1 +1774166827.837385,3.47,4,3992.50,60.10,1344.88,2353.08,0.00,3515543919223.891113,3515543869754.485840,238,2,3.577494,3.492982,76838152,50916741,0,0,73871,0,1,1 +1774166832.836420,3.68,4,3992.50,60.37,1334.22,2363.74,0.00,106016.108920,155535.818743,8678234,2748442,3.718748,3.482131,76849617,50927950,0,0,73874,0,1,1 +1774166837.833385,5.01,4,3992.50,60.20,1340.94,2357.00,0.00,3520574719108.464355,3520574669568.231445,238,2,3.772423,3.321979,76861667,50939928,0,0,73876,0,1,1 +1774166842.834955,3.10,4,3992.50,60.12,1344.18,2353.79,0.00,3517332088463.788574,3517332088465.794922,21,0,3.498365,1.277925,76870326,50947847,0,0,73879,0,1,1 +1774166847.837582,8.97,4,3992.50,60.01,1350.52,2349.54,0.00,1.537571,0.028305,237,494,3.508235,0.084472,76877470,50953630,0,0,73881,0,1,1 +1774166852.835114,3.81,4,3992.50,60.20,1343.27,2356.88,0.00,106048.489230,155599.451511,8678253,2748995,3.553058,0.083526,76884626,50959331,0,0,73884,0,1,1 +1774166857.837456,5.24,4,3992.50,60.63,1322.45,2373.92,0.00,3516789332344.582520,3516789282842.781738,21,0,5.549534,0.117929,76895241,50968274,0,0,73886,0,1,1 +1774166862.834882,3.57,4,3992.50,60.74,1322.27,2378.14,0.00,0.048072,0.000000,70,0,6.482374,0.149263,76907928,50979293,0,0,73889,0,1,1 +1774166867.834886,8.20,4,3992.50,61.00,1312.25,2388.29,0.00,0.126953,0.000000,199,0,7.078220,0.152451,76921393,50991097,0,0,73891,0,1,1 +1774166872.837116,2.90,4,3992.50,60.39,1336.00,2364.55,0.00,105954.364691,155453.543161,8679027,2749826,5.298196,0.124569,76931832,51000275,0,0,73894,0,1,1 +1774166877.836167,4.43,4,3992.50,60.77,1323.94,2379.34,0.00,3519104611570.924805,3519104562040.402344,70,0,4.664359,0.101902,76940963,51007830,0,0,73896,0,1,1 +1774166882.833742,4.38,4,3992.50,60.86,1320.68,2382.75,0.00,1.959740,0.000195,238,2,5.971821,0.130941,76952692,51017567,0,0,73899,0,1,1 +1774166887.837235,4.28,4,3992.50,60.47,1335.80,2367.66,0.00,105921.663453,155414.556453,8678253,2749622,7.096366,0.156397,76966450,51029292,0,0,73901,0,1,1 +1774166892.836179,4.69,4,3992.50,60.54,1333.11,2370.44,0.00,3519180477677.729492,3519180428141.621094,199,0,6.506858,0.148821,76978956,51040710,0,0,73904,0,1,1 +1774166897.835433,3.05,4,3992.50,60.00,1354.30,2349.22,0.00,1.832109,0.000195,238,2,5.650140,0.131494,76990092,51050284,0,0,73906,0,1,1 +1774166902.833202,3.41,4,3992.50,60.67,1328.11,2375.56,0.00,106047.109587,155592.851075,8679027,2750472,4.650442,0.100405,76999074,51057763,0,0,73909,0,1,1 +1774166907.833195,4.48,4,3992.50,60.79,1323.73,2379.96,0.00,0.000000,0.137305,8679027,2750538,7.183294,0.155320,77012990,51069515,0,0,73911,0,1,1 +1774166912.836995,3.71,4,3992.50,60.71,1326.83,2376.87,0.00,3515764916929.029785,3515764867442.873535,238,2,5.802201,0.135889,77024355,51079589,0,0,73914,0,1,1 +1774166917.835755,4.18,4,3992.50,61.00,1315.55,2388.20,0.00,3519310127304.916016,0.028132,237,494,7.073162,0.157704,77038140,51091358,0,0,73916,0,1,1 +1774166922.837440,4.83,4,3992.50,60.94,1317.79,2386.04,0.00,3517252148149.890137,3517252148151.399902,21,0,6.330910,0.146043,77050585,51102287,0,0,73919,0,1,1 +1774166927.835324,2.09,4,3992.50,60.86,1320.85,2382.98,0.00,0.175074,0.000000,199,0,6.558330,0.149229,77063196,51113643,0,0,73921,0,1,1 +1774166932.837757,2.90,4,3992.50,60.72,1326.40,2377.43,0.00,0.000000,0.000000,199,0,5.138424,0.112293,77073433,51121785,0,0,73924,0,1,1 +1774166937.833206,2.34,4,3992.50,60.44,1344.17,2366.47,0.00,3521642306257.599609,0.000000,21,0,3.985339,0.089106,77081168,51128618,0,0,73926,0,1,1 +1774166942.836885,1.52,4,3992.50,60.37,1347.25,2363.43,0.00,0.000000,0.000000,21,0,3.490580,0.075497,77088082,51133997,0,0,73929,0,1,1 +1774166947.833366,2.34,4,3992.50,60.28,1350.68,2360.04,0.00,106072.346718,155633.721907,8678253,2750790,3.545622,0.076280,77095021,51139684,0,0,73931,0,1,1 +1774166952.835385,2.03,4,3992.50,60.62,1337.28,2373.52,0.00,3517016874497.458984,3517016824989.452148,237,494,3.556131,0.103500,77102120,51145352,0,0,73934,0,1,1 +1774166957.836568,1.83,4,3992.50,60.74,1332.51,2378.30,0.00,3517604823981.918457,3517604823983.253418,199,0,3.398401,1.451217,77111124,51153350,0,0,73936,0,1,1 +1774166962.836090,2.76,4,3992.50,60.45,1343.96,2366.88,0.00,1.832011,0.000195,238,2,3.542502,3.220420,77122700,51165040,0,0,73939,0,1,1 +1774166967.833709,2.65,4,3992.50,60.61,1338.07,2373.01,0.00,3520113895451.467285,3520113895453.426758,70,0,3.794933,3.508596,77135505,51177274,0,0,73941,0,1,1 +1774166972.838055,2.86,4,3992.50,60.19,1350.71,2356.52,0.00,3515381386274.741699,0.000000,21,0,3.567116,3.505803,77147809,51189191,0,0,73944,0,1,1 +1774166977.838002,2.95,4,3992.50,60.01,1357.74,2349.55,0.00,0.000000,0.000000,21,0,3.484673,3.506064,77159704,51201201,0,0,73946,0,1,1 +1774166982.833212,2.66,4,3992.50,60.24,1348.94,2358.39,0.00,2.008760,0.000195,238,2,3.635577,3.505862,77172146,51213289,0,0,73949,0,1,1 +1774166987.833201,2.60,4,3992.50,60.18,1351.23,2356.06,0.00,3518445071903.778320,0.028125,237,494,3.452488,3.506996,77184057,51225259,0,0,73951,0,1,1 +1774166992.833184,2.91,4,3992.50,59.96,1359.66,2347.63,0.00,3518448955575.393066,3518448955576.854980,70,0,3.607392,3.505104,77196393,51237449,0,0,73954,0,1,1 +1774166997.837604,2.95,4,3992.50,60.32,1334.92,2361.81,0.00,0.000000,0.000000,70,0,3.821032,3.507810,77209172,51249733,0,0,73956,0,1,1 +1774167002.836766,2.71,4,3992.50,60.02,1346.70,2349.95,0.00,3519026830978.151855,0.000000,21,0,3.508428,3.509303,77221516,51261913,0,0,73959,0,1,1 +1774167007.837614,2.80,4,3992.50,60.00,1347.41,2349.00,0.00,0.174970,0.000000,199,0,3.508061,3.508229,77233743,51273934,0,0,73961,0,1,1 +1774167012.833148,2.71,4,3992.50,60.11,1342.72,2353.46,0.00,3521582389756.317871,0.000000,21,0,3.562163,3.508380,77245952,51286272,0,0,73964,0,1,1 +1774167017.833472,2.75,4,3992.50,60.22,1338.34,2357.61,0.00,105990.834822,155535.886331,8678263,2751490,3.365156,3.505012,77258021,51298051,0,0,73966,0,1,1 +1774167022.836390,2.91,4,3992.50,60.03,1345.60,2350.15,0.00,3516385443183.979004,3516385393664.611816,21,0,3.512130,3.508325,77270166,51310233,0,0,73969,0,1,1 +1774167027.838397,2.91,4,3992.50,60.42,1329.84,2365.68,0.00,1.537762,0.028309,237,494,3.635249,3.507529,77282605,51322386,0,0,73971,0,1,1 +1774167032.833980,3.01,4,3992.50,60.38,1331.13,2364.11,0.00,106089.878002,155704.407411,8678263,2751706,3.648260,3.507347,77295004,51334766,0,0,73974,0,1,1 +1774167037.833277,2.55,4,3992.50,60.37,1331.48,2363.55,0.00,0.000000,0.011427,8678263,2751723,3.597537,3.504250,77307257,51346675,0,0,73976,0,1,1 +1774167042.834903,2.60,4,3992.50,59.94,1348.13,2346.63,0.00,4.107941,0.037585,8679037,2752236,3.608548,3.511798,77320190,51359022,0,0,73979,0,1,1 +1774167047.836006,2.50,4,3992.50,59.86,1350.88,2343.67,0.00,3517661555597.849609,3517661506041.638672,238,2,3.680909,3.509236,77332334,51371793,0,0,73981,0,1,1 +1774167052.834890,2.95,4,3992.50,59.94,1347.79,2346.68,0.00,3519222365692.473633,0.028131,237,494,3.654020,3.509519,77344871,51384116,0,0,73984,0,1,1 +1774167057.834912,3.06,4,3992.50,60.38,1323.66,2363.99,0.00,3518421653939.704590,3518421653941.039551,199,0,3.515775,3.504204,77357218,51395998,0,0,73986,0,1,1 +1774167062.834889,2.65,4,3992.50,60.00,1338.63,2348.98,0.00,105998.008369,155588.129498,8678263,2751951,3.791264,3.507452,77369798,51408452,0,0,73989,0,1,1 +1774167067.833840,2.60,4,3992.50,60.12,1333.79,2353.82,0.00,3519175620190.650879,3519175570589.012695,237,494,3.535438,3.510069,77382165,51420435,0,0,73991,0,1,1 +1774167072.834058,2.90,4,3992.50,60.03,1337.10,2350.48,0.00,3518283650577.105469,3518283650578.615723,21,0,3.534202,3.507698,77394432,51432498,0,0,73994,0,1,1 +1774167077.834872,2.65,4,3992.50,60.06,1336.09,2351.46,0.00,0.174972,0.000000,199,0,3.544815,3.509241,77406689,51444651,0,0,73996,0,1,1 +1774167082.834048,3.05,4,3992.50,60.19,1330.81,2356.70,0.00,0.000000,0.000000,199,0,3.652326,3.508505,77419160,51456878,0,0,73999,0,1,1 +1774167087.833222,3.10,4,3992.50,60.41,1325.78,2365.00,0.00,106019.140770,155633.992806,8679037,2752706,3.685885,3.508276,77431385,51469557,0,0,74001,0,1,1 +1774167092.833656,2.45,4,3992.50,60.27,1331.12,2359.62,0.00,3518131702312.006348,3518131652709.654297,199,0,3.393980,3.504178,77443724,51481080,0,0,74004,0,1,1 +1774167097.838134,2.85,4,3992.50,60.42,1325.16,2365.64,0.00,3515288585285.858398,0.000000,21,0,3.630444,3.508925,77455777,51493779,0,0,74006,0,1,1 +1774167102.833247,2.86,4,3992.50,60.20,1333.85,2357.04,0.00,106101.395588,155760.554106,8678263,2752293,3.577442,3.508538,77468120,51505854,0,0,74009,0,1,1 +1774167107.836420,3.00,4,3992.50,60.24,1332.29,2358.59,0.00,3516206434884.970703,3516206385305.624023,199,0,3.443637,3.503590,77480437,51517563,0,0,74011,0,1,1 +1774167112.833693,2.55,4,3992.50,60.31,1329.57,2361.09,0.00,1.832835,0.000195,238,2,3.569209,3.509112,77492619,51529813,0,0,74014,0,1,1 +1774167117.836211,3.20,4,3992.50,60.39,1334.03,2364.36,0.00,3516666002069.433105,3516666002071.264160,199,0,3.749976,3.507966,77505393,51542102,0,0,74016,0,1,1 +1774167122.833497,2.90,4,3992.50,60.15,1341.34,2354.90,0.00,3520348832226.249512,0.000000,21,0,3.435860,3.505304,77517474,51554116,0,0,74019,0,1,1 +1774167127.834901,2.44,4,3992.50,60.16,1341.02,2355.21,0.00,1.537947,0.028312,237,494,3.672280,3.508945,77529819,51566388,0,0,74021,0,1,1 +1774167132.836958,2.96,4,3992.50,59.82,1354.34,2341.93,0.00,0.468264,3516990057509.452148,238,2,3.707691,3.509913,77542510,51578790,0,0,74024,0,1,1 +1774167137.833200,2.70,4,3992.50,59.82,1353.87,2342.25,0.00,106079.543833,155746.360646,8679037,2753054,3.600351,3.508010,77554886,51590909,0,0,74026,0,1,1 +1774167142.833199,2.70,4,3992.50,59.83,1353.46,2342.55,0.00,0.000000,0.013086,8679037,2753074,3.498710,3.506830,77567056,51602956,0,0,74029,0,1,1 +1774167147.833209,2.81,4,3992.50,60.34,1333.37,2362.64,0.00,3518430700041.205078,3518430650413.809082,21,0,3.529261,3.507578,77579037,51615330,0,0,74031,0,1,1 +1774167152.833283,2.75,4,3992.50,60.22,1338.39,2357.63,0.00,0.000000,0.000000,21,0,3.711129,3.505005,77591793,51627173,0,0,74034,0,1,1 +1774167157.833195,3.06,4,3992.50,59.73,1357.25,2338.74,0.00,106003.657696,155655.717949,8679039,2753296,3.756892,3.510983,77604420,51639643,0,0,74036,0,1,1 +1774167162.834790,3.31,4,3992.50,59.84,1352.95,2343.00,0.00,0.000000,0.010836,8679039,2753318,3.557971,3.508577,77616720,51651905,0,0,74039,0,1,1 +1774167167.835284,2.86,4,3992.50,59.76,1356.25,2339.67,0.00,3518089800325.780273,3518089800329.874023,8678265,2752845,3.469990,3.506286,77628685,51664115,0,0,74041,0,1,1 +1774167172.836569,2.75,4,3992.50,59.75,1356.42,2339.40,0.00,3517532909091.606934,3517532859449.068848,21,0,3.648391,3.506271,77641439,51676031,0,0,74044,0,1,1 +1774167177.834723,3.37,4,3992.50,60.08,1346.93,2352.24,0.00,0.000000,0.000000,21,0,3.650445,3.510809,77653923,51688449,0,0,74046,0,1,1 +1774167182.837318,2.75,4,3992.50,59.97,1351.32,2347.82,0.00,0.000000,0.000000,21,0,3.605433,3.507705,77666370,51700646,0,0,74049,0,1,1 +1774167187.837725,2.76,4,3992.50,59.88,1354.51,2344.53,0.00,105989.093986,155661.662789,8678279,2753119,3.534981,3.510217,77678525,51712923,0,0,74051,0,1,1 +1774167192.834393,3.73,4,3992.50,59.72,1360.95,2338.13,0.00,4.112018,0.039382,8679053,2753638,3.367881,3.506395,77690526,51724643,0,0,74054,0,1,1 +1774167197.837342,3.32,4,3992.50,59.83,1356.62,2342.54,0.00,3516362762513.040039,3516362712867.771484,238,2,3.502482,3.507165,77702727,51736677,0,0,74056,0,1,1 +1774167202.833535,3.62,4,3992.50,59.89,1354.49,2344.73,0.00,3521118498364.450684,3521118498366.284180,199,0,3.504238,3.507874,77714901,51748764,0,0,74059,0,1,1 +1774167207.833532,3.37,4,3992.50,60.22,1337.34,2357.85,0.00,106001.725544,155674.565800,8679053,2753713,3.545259,3.507864,77727335,51760803,0,0,74061,0,1,1 +1774167212.837698,3.78,4,3992.50,60.16,1339.83,2355.24,0.00,3515508142508.830078,3515508092876.033203,237,494,3.583979,3.509415,77739687,51773172,0,0,74064,0,1,1 +1774167217.837067,3.43,4,3992.50,59.99,1346.30,2348.82,0.00,0.468516,3518881043941.691406,238,2,3.570805,3.508443,77751944,51785375,0,0,74066,0,1,1 +1774167222.834888,3.37,4,3992.50,59.88,1350.63,2344.38,0.00,3519971575050.672363,3519971575052.680176,21,0,3.610850,3.507795,77764369,51797578,0,0,74069,0,1,1 +1774167227.836200,3.32,4,3992.50,60.07,1342.96,2351.97,0.00,105974.021344,155654.078171,8679055,2753923,3.598235,3.509147,77776593,51809923,0,0,74071,0,1,1 +1774167232.836689,3.58,4,3992.50,59.88,1350.36,2344.60,0.00,3518093480137.045410,3518093430448.623535,199,0,3.659484,3.507034,77789046,51822320,0,0,74074,0,1,1 +1774167237.835394,4.14,4,3992.50,60.62,1321.35,2373.55,0.00,3519348494200.849609,0.000000,21,0,3.584039,3.507954,77801297,51834515,0,0,74076,0,1,1 +1774167242.837772,5.21,4,3992.50,60.27,1335.22,2359.66,0.00,105951.448760,155641.430161,8679056,2754134,3.592540,3.504449,77813662,51846689,0,0,74079,0,1,1 +1774167247.837320,3.82,4,3992.50,59.94,1349.83,2346.86,0.00,3518755392604.191895,3518755342886.029785,70,0,3.539837,3.508209,77826019,51858651,0,0,74081,0,1,1 +1774167252.837875,3.77,4,3992.50,60.06,1345.38,2351.31,0.00,1.490167,0.028317,237,494,3.516083,3.508454,77838128,51870909,0,0,74084,0,1,1 +1774167257.833769,3.68,4,3992.50,59.85,1353.30,2343.41,0.00,3521328671859.859863,3521328671861.371582,21,0,3.552070,3.504503,77850541,51882921,0,0,74086,0,1,1 +1774167262.838126,8.61,4,3992.50,65.46,1134.93,2563.03,0.00,0.000000,0.000000,21,0,3.817062,2.911711,77862380,51894039,0,0,74089,0,1,1 +1774167267.837422,7.27,4,3992.50,65.92,1124.88,2581.11,0.00,106034.259855,155737.759748,8679170,2754412,6.936920,0.179555,77875480,51905076,0,0,74091,0,1,1 +1774167272.834063,1.68,4,3992.50,65.50,1139.49,2564.46,0.00,3520802276434.121094,3520802226704.164062,70,0,7.190885,0.146251,77889433,51915790,0,0,74094,0,1,1 +1774167277.833218,1.72,4,3992.50,65.89,1124.24,2579.82,0.00,3519031871076.272949,0.000000,21,0,7.015543,0.149353,77903163,51926876,0,0,74096,0,1,1 +1774167282.835382,1.57,4,3992.50,66.27,1109.55,2594.71,0.00,2.005968,0.000195,238,2,7.092132,0.149420,77916603,51938413,0,0,74099,0,1,1 +1774167287.834154,1.32,4,3992.50,65.95,1122.00,2582.27,0.00,3519302055541.669922,3519302055543.677246,21,0,7.044494,0.145554,77930318,51949207,0,0,74101,0,1,1 +1774167292.833211,1.42,4,3992.50,65.64,1134.40,2569.86,0.00,106035.226269,155760.747493,8678406,2754189,6.989065,0.144573,77943954,51959927,0,0,74104,0,1,1 +1774167297.834879,1.68,4,3992.50,65.97,1111.05,2582.69,0.00,3517264056616.713867,3517264006915.631836,237,494,7.057747,0.147922,77957451,51971383,0,0,74106,0,1,1 +1774167302.834678,1.82,4,3992.50,65.86,1114.76,2578.73,0.00,3518578512179.895996,3518578512181.357910,70,0,7.064389,0.147058,77971223,51982224,0,0,74109,0,1,1 +1774167307.833285,1.68,4,3992.50,65.47,1130.07,2563.41,0.00,0.126989,0.000000,199,0,7.037816,0.144125,77985025,51992889,0,0,74111,0,1,1 +1774167312.833204,1.68,4,3992.50,65.42,1132.20,2561.36,0.00,3518494579344.586914,0.000000,70,0,7.108120,0.149382,77998413,52004564,0,0,74114,0,1,1 +1774167317.833558,1.73,4,3992.50,60.00,1344.32,2349.24,0.00,106007.696599,155720.601575,8678407,2754393,7.066620,0.147554,78012406,52015181,0,0,74116,0,1,1 +1774167322.833215,1.83,4,3992.50,59.31,1371.37,2322.21,0.00,0.000000,0.009180,8678407,2754409,6.009786,0.136278,78024121,52025411,0,0,74119,0,1,1 +1774167327.833217,2.28,4,3992.50,59.81,1352.95,2341.56,0.00,3518436253519.435547,3518436203801.050781,238,2,3.492315,0.075008,78031031,52030875,0,0,74121,0,1,1 +1774167332.837138,2.69,4,3992.50,59.85,1351.27,2343.09,0.00,0.000000,0.000000,238,2,3.527835,0.077973,78037941,52036595,0,0,74124,0,1,1 +1774167337.836701,2.69,4,3992.50,59.68,1357.81,2336.55,0.00,3518744591629.990723,3518744591631.997559,21,0,3.560053,0.079285,78044901,52042222,0,0,74126,0,1,1 +1774167342.836528,1.98,4,3992.50,59.67,1357.98,2336.39,0.00,0.175006,0.000000,199,0,3.490065,0.909418,78053187,52049330,0,0,74129,0,1,1 +1774167347.837001,3.11,4,3992.50,60.08,1341.93,2352.43,0.00,106005.054945,155718.582634,8678408,2754727,3.175323,2.758680,78063599,52059412,0,0,74131,0,1,1 +1774167352.836131,3.67,4,3992.50,59.83,1351.85,2342.48,0.00,3519049016929.282227,3519048967202.404297,199,0,3.538959,3.508230,78075780,52071753,0,0,74134,0,1,1 +1774167357.837421,3.57,4,3992.50,59.76,1348.90,2339.61,0.00,3517529689740.602051,0.000000,21,0,3.634955,3.505126,78088204,52083946,0,0,74136,0,1,1 +1774167362.837614,4.08,4,3992.50,59.77,1349.89,2340.31,0.00,106011.208487,155727.468003,8678410,2754807,3.421489,3.504110,78100163,52095701,0,0,74139,0,1,1 +1774167367.838131,3.32,4,3992.50,59.97,1342.36,2347.91,0.00,3518073031562.166504,3518072981849.138184,21,0,3.833706,3.507314,78112602,52108384,0,0,74141,0,1,1 +1774167372.837710,3.97,4,3992.50,59.82,1348.31,2341.99,0.00,0.000000,0.000000,21,0,3.652395,3.505099,78125154,52120295,0,0,74144,0,1,1 +1774167377.833775,3.38,4,3992.50,59.76,1350.58,2339.72,0.00,2.008417,0.000195,238,2,3.475640,3.506375,78137263,52132240,0,0,74146,0,1,1 +1774167382.837916,3.82,4,3992.50,59.79,1349.44,2340.89,0.00,105925.546774,155622.050087,8678410,2755016,3.591168,3.509524,78149235,52144832,0,0,74149,0,1,1 +1774167387.833983,3.57,4,3992.50,60.34,1339.47,2362.43,0.00,4.112512,0.090012,8679184,2755539,3.544145,3.507325,78161773,52156708,0,0,74151,0,1,1 +1774167392.835292,3.01,4,3992.50,59.89,1356.82,2345.00,0.00,3517516316989.477051,3517516267270.852539,21,0,3.576606,3.508153,78173907,52169033,0,0,74154,0,1,1 +1774167397.835840,3.92,4,3992.50,59.97,1353.41,2348.06,0.00,0.174981,0.000000,199,0,3.595760,3.508220,78186235,52181225,0,0,74156,0,1,1 +1774167402.835753,3.57,4,3992.50,59.91,1355.76,2345.54,0.00,106016.969771,155753.782201,8678410,2755116,3.687160,2.700017,78197646,52191750,0,0,74159,0,1,1 +1774167407.835463,2.79,4,3992.50,59.59,1368.01,2333.24,0.00,3518640937033.665039,3518640887295.017090,21,0,3.516833,0.602688,78205190,52198313,0,0,74161,0,1,1 +1774167412.837457,39.67,4,3992.50,59.18,1384.46,2316.98,0.00,1.537766,0.028309,237,494,161.092229,0.131112,78225260,52208072,0,0,74164,0,1,1 +1774167417.837628,31.04,4,3992.50,59.28,1380.65,2320.97,0.00,3518316606617.868164,3518316606619.203125,199,0,125.395976,0.040534,78237607,52210949,0,0,74166,0,1,1 +1774167422.837187,28.01,4,3992.50,59.51,1371.84,2329.77,0.00,0.000000,0.000000,199,0,119.607209,0.039361,78249046,52213760,0,0,74169,0,1,1 +1774167427.834535,0.86,4,3992.50,53.71,1598.61,2103.00,0.00,3520304547389.626465,0.000000,70,0,47.717836,0.015826,78253575,52214870,0,0,74171,0,1,1 +1774167432.837867,1.10,4,3992.50,53.04,1625.06,2076.55,0.00,105944.758035,155667.036521,8678430,2755518,0.004284,0.006752,78253680,52215008,0,0,74174,0,1,1 +1774167437.838000,0.75,4,3992.50,52.67,1639.37,2062.25,0.00,0.000000,2.071038,8678430,2755569,0.002284,0.006364,78253750,52215131,0,0,74176,0,1,1 +1774167442.834909,0.90,4,3992.50,52.63,1641.05,2060.56,0.00,3520613610276.892090,3520613560488.632812,70,0,0.001832,0.005102,78253806,52215230,0,0,74179,0,1,1 +1774167447.837813,1.45,4,3992.50,52.92,1618.71,2071.91,0.00,3516394917659.250977,0.000000,21,0,0.002275,0.006996,78253875,52215356,0,0,74181,0,1,1 +1774167452.837871,0.80,4,3992.50,52.92,1618.69,2071.79,0.00,106018.286908,155771.195834,8679204,2756147,0.002320,0.006391,78253947,52215481,0,0,74184,0,1,1 +1774167457.833412,1.00,4,3992.50,52.73,1626.09,2064.39,0.00,3521577172790.907227,3521577122992.848145,199,0,0.002415,0.006463,78254025,52215611,0,0,74186,0,1,1 +1774167462.834909,0.70,4,3992.50,52.74,1625.64,2064.84,0.00,1.362971,0.028312,237,494,0.002450,0.006206,78254095,52215732,0,0,74189,0,1,1 +1774167467.835664,0.70,4,3992.50,52.74,1625.64,2064.83,0.00,105997.859908,155749.471101,8678430,2755699,0.002301,0.006355,78254166,52215854,0,0,74191,0,1,1 +1774167472.834884,1.15,4,3992.50,52.54,1633.56,2057.19,0.00,3518986052025.576172,3518986002258.195801,238,2,0.003253,0.005851,78254248,52215972,0,0,74194,0,1,1 +1774167477.836005,33.40,4,3992.50,59.21,1373.54,2318.22,0.00,3517648642812.347656,0.028119,237,494,62.480030,0.034616,78260989,52218203,0,0,74196,0,1,1 +1774167482.837882,29.93,4,3992.50,58.86,1387.49,2304.60,0.00,105974.071196,155714.798645,8678430,2755916,118.529366,0.045433,78273301,52221475,0,0,74199,0,1,1 +1774167487.834797,28.15,4,3992.50,59.00,1382.02,2310.04,0.00,3520609189885.672852,3520609140095.055176,238,2,119.859278,0.074270,78285907,52227086,0,0,74201,0,1,1 +1774167492.837399,28.40,4,3992.50,59.13,1377.02,2315.05,0.00,3516607862437.937012,3516607862439.942871,21,0,118.722086,0.077927,78298286,52232903,0,0,74204,0,1,1 +1774167497.834060,28.24,4,3992.50,58.87,1387.00,2305.07,0.00,106086.215161,155877.365406,8678430,2755959,119.665039,0.078052,78310832,52238934,0,0,74206,0,1,1 +1774167502.839162,28.54,4,3992.50,58.94,1384.45,2307.59,0.00,3514850797262.742676,3514850747555.548340,21,0,119.271024,0.096670,78323575,52246395,0,0,74209,0,1,1 +1774167507.837766,28.78,4,3992.50,59.13,1376.84,2315.23,0.00,106045.003821,155816.843140,8678430,2755987,119.010187,0.048203,78336122,52249870,0,0,74211,0,1,1 +1774167512.836631,28.77,4,3992.50,59.19,1374.63,2317.44,0.00,3519236557280.349609,3519236507509.589844,237,494,120.004571,0.057247,78348480,52254021,0,0,74214,0,1,1 +1774167517.834875,19.50,4,3992.50,58.85,1387.93,2304.18,0.00,0.000000,0.000000,237,494,118.416016,0.060618,78360644,52258657,0,0,74216,0,1,1 +1774167522.833916,3.20,4,3992.50,53.22,1608.38,2083.73,0.00,3519111832473.507812,3519111832474.970215,70,0,9.630211,0.015060,78361911,52259193,0,0,74219,0,1,1 +1774167527.836404,23.23,4,3992.50,53.02,1616.23,2075.80,0.00,105962.775872,155696.723864,8678445,2756873,30.171278,0.135643,78371698,52266462,0,0,74221,0,1,1 +1774167532.837675,8.04,4,3992.50,53.43,1600.02,2092.01,0.00,3517543158670.530273,3517543108924.349609,199,0,10.065058,0.048978,78375061,52268962,0,0,74224,0,1,1 +1774167537.833213,1.46,4,3992.50,53.68,1593.79,2101.53,0.00,1.833472,0.000195,238,2,0.003899,0.006612,78375156,52269089,0,0,74226,0,1,1 +1774167542.834898,0.60,4,3992.50,53.18,1613.30,2081.95,0.00,3517252081344.140137,3517252081346.146484,21,0,0.003648,0.006497,78375249,52269218,0,0,74229,0,1,1 +1774167547.837814,3.26,4,3992.50,53.33,1607.39,2087.81,0.00,2.005667,0.000195,238,2,0.017114,11.021416,78376246,52270797,0,0,74231,0,1,1 +1774167552.837664,29.06,4,3992.50,53.49,1594.12,2094.44,0.00,3518542159956.915039,3518542159958.747070,199,0,0.031540,118.775178,78378490,52283197,0,0,74234,0,1,1 +1774167557.833210,18.92,4,3992.50,53.32,1598.55,2087.45,0.00,3521574220860.133789,0.000000,21,0,0.034829,75.386363,78380983,52291197,0,0,74236,0,1,1 +1774167562.840382,4.46,4,3992.50,57.72,1429.11,2260.05,0.00,0.174749,0.000000,199,0,1.811649,0.016761,78381580,52291748,0,0,74239,0,1,1 +1774167567.837893,8.80,4,3992.50,53.56,1591.41,2096.87,0.00,1.832748,0.000195,238,2,38.278299,0.022868,78385620,52293043,0,0,74241,0,1,1 +1774167572.837775,0.65,4,3992.50,53.26,1602.69,2085.44,0.00,106033.532486,155984.155870,8678562,2759294,0.002814,0.005628,78385695,52293153,0,0,74244,0,1,1 +1774167577.834898,0.65,4,3992.50,52.83,1619.72,2068.41,0.00,3520462692592.559082,3520462642616.194824,199,0,0.003717,0.006981,78385793,52293291,0,0,74246,0,1,1 +1774167582.834879,0.60,4,3992.50,52.84,1619.49,2068.64,0.00,1.363384,0.028320,237,494,0.003886,0.007784,78385894,52293437,0,0,74249,0,1,1 +1774167587.834889,0.70,4,3992.50,52.85,1618.77,2069.36,0.00,3518430354979.330078,3518430354980.840332,21,0,0.003865,0.007122,78385993,52293577,0,0,74251,0,1,1 +1774167592.834907,0.85,4,3992.50,52.85,1619.10,2069.03,0.00,106032.648576,155980.044659,8678562,2759423,0.003903,0.007138,78386095,52293718,0,0,74254,0,1,1 +1774167597.837327,0.85,4,3992.50,53.13,1610.54,2080.30,0.00,4.107290,0.082675,8679336,2759942,0.003419,0.005878,78386181,52293836,0,0,74256,0,1,1 +1774167602.833217,0.75,4,3992.50,52.96,1614.96,2073.54,0.00,3521331770667.940430,3521331720683.254395,70,0,0.003881,0.007126,78386281,52293976,0,0,74259,0,1,1 +1774167607.833530,0.60,4,3992.50,52.96,1614.91,2073.59,0.00,3518216729980.760742,0.000000,21,0,0.003501,0.005930,78386372,52294098,0,0,74261,0,1,1 +1774167612.835087,0.70,4,3992.50,52.98,1614.19,2074.31,0.00,0.048032,0.000000,70,0,0.003507,0.005903,78386464,52294218,0,0,74264,0,1,1 +1774167617.837641,0.65,4,3992.50,52.98,1614.21,2074.30,0.00,1.957789,0.000195,238,2,0.003863,0.007119,78386563,52294358,0,0,74266,0,1,1 +1774167622.837211,0.65,4,3992.50,52.77,1622.52,2065.98,0.00,3518739861328.188477,0.028127,237,494,0.003878,0.007133,78386663,52294499,0,0,74269,0,1,1 +1774167627.837531,0.90,4,3992.50,52.80,1623.43,2067.32,0.00,3518212004613.034180,3518212004614.544434,21,0,0.003865,0.007122,78386762,52294639,0,0,74271,0,1,1 +1774167632.834885,11.11,4,3992.50,52.74,1623.54,2064.79,0.00,1.539193,0.028335,237,494,0.022792,40.092577,78388116,52299234,0,0,74274,0,1,1 +1774167637.837194,0.75,4,3992.50,52.75,1623.06,2065.27,0.00,3516813224717.828613,3516813224719.338379,21,0,0.002091,0.005738,78388180,52299347,0,0,74276,0,1,1 +1774167642.835764,0.75,4,3992.50,52.75,1623.07,2065.25,0.00,2.007410,0.000195,238,2,0.005134,0.008299,78388297,52299498,0,0,74279,0,1,1 +1774167647.834895,0.70,4,3992.50,52.75,1623.08,2065.25,0.00,3519049138447.481934,3519049138449.314453,199,0,0.002277,0.007001,78388366,52299624,0,0,74281,0,1,1 +1774167652.837874,0.70,4,3992.50,52.76,1622.77,2065.55,0.00,105973.865980,155922.336865,8679348,2760613,0.002287,0.006362,78388436,52299747,0,0,74284,0,1,1 +1774167657.835794,1.81,4,3992.50,53.03,1615.09,2076.08,0.00,3519901326619.483398,0.021493,8678574,2760145,0.001832,0.005091,78388492,52299845,0,0,74286,0,1,1 +1774167662.838104,0.60,4,3992.50,52.78,1621.53,2066.56,0.00,3516811887716.175293,3516811837757.079590,21,0,0.002288,0.006363,78388562,52299968,0,0,74289,0,1,1 +1774167667.837676,0.75,4,3992.50,52.77,1621.86,2066.23,0.00,106046.270308,156034.683849,8679348,2760694,0.002289,0.006357,78388632,52300090,0,0,74291,0,1,1 +1774167672.836285,0.65,4,3992.50,52.75,1622.67,2065.43,0.00,3519415700313.523926,3519415650315.496094,21,0,0.002340,0.006399,78388706,52300215,0,0,74294,0,1,1 +1774167677.834618,0.60,4,3992.50,52.75,1622.68,2065.42,0.00,2.007506,0.000195,238,2,0.002032,0.005285,78388776,52300327,0,0,74296,0,1,1 +1774167682.837734,0.85,4,3992.50,52.77,1621.98,2066.11,0.00,3516245474708.670898,0.028107,237,494,0.002318,0.006387,78388848,52300452,0,0,74299,0,1,1 +1774167687.837692,0.90,4,3992.50,52.99,1623.77,2074.67,0.00,106036.520155,156022.632257,8679348,2760729,0.002410,0.006488,78388928,52300583,0,0,74301,0,1,1 +1774167692.834915,0.60,4,3992.50,52.97,1624.58,2073.87,0.00,3520392431599.532715,3520392381586.058105,237,494,0.001832,0.005102,78388984,52300682,0,0,74304,0,1,1 +1774167697.834895,11.59,4,3992.50,59.27,1380.64,2320.74,0.00,3518451529683.077637,3518451529684.587891,21,0,3.213151,0.013749,78389675,52301251,0,0,74306,0,1,1 +1774167702.837312,34.09,4,3992.50,59.29,1385.38,2321.32,0.00,0.000000,0.000000,21,0,120.113684,0.035964,78402199,52303592,0,0,74309,0,1,1 +1774167707.834850,28.15,4,3992.50,59.18,1389.72,2317.02,0.00,0.000000,0.000000,21,0,118.223834,0.027478,78414315,52305556,0,0,74311,0,1,1 +1774167712.837767,28.38,4,3992.50,59.44,1379.58,2327.14,0.00,1.537482,0.028304,237,494,120.099856,0.033934,78426623,52307981,0,0,74314,0,1,1 +1774167717.833916,28.25,4,3992.50,59.38,1380.35,2324.74,0.00,3521148858998.517090,3521148858999.853516,199,0,118.263060,0.050101,78438678,52311732,0,0,74316,0,1,1 +1774167722.837377,28.20,4,3992.50,59.35,1380.96,2323.73,0.00,1.362436,0.028301,237,494,120.091719,0.045505,78451142,52315154,0,0,74319,0,1,1 +1774167727.837969,27.90,4,3992.50,59.29,1383.13,2321.52,0.00,0.468402,3518020695637.328125,238,2,118.554309,0.030978,78463468,52317294,0,0,74321,0,1,1 +1774167732.835227,28.04,4,3992.50,59.18,1387.52,2317.18,0.00,0.000000,0.000000,238,2,119.830459,0.019302,78475662,52318578,0,0,74324,0,1,1 +1774167737.834414,27.81,4,3992.50,59.41,1378.44,2326.22,0.00,106052.399087,156047.103737,8679348,2761027,118.981509,0.018400,78487682,52319829,0,0,74326,0,1,1 +1774167742.834882,5.82,4,3992.50,52.96,1631.16,2073.60,0.00,3518108154106.181641,3518108104124.770020,237,494,68.091693,0.016748,78494661,52320721,0,0,74329,0,1,1 +1774167747.834887,3.31,4,3992.50,53.02,1628.83,2075.88,0.00,3518433857925.430664,3518433857926.765625,199,0,0.007389,0.007915,78494811,52320883,0,0,74331,0,1,1 +1774167752.834876,21.43,4,3992.50,54.28,1577.07,2125.35,0.00,1.363382,0.028320,237,494,28.176627,0.126809,78504069,52327669,0,0,74334,0,1,1 +1774167757.834303,8.61,4,3992.50,54.54,1567.20,2135.21,0.00,3518840046394.116211,3518840046395.451660,199,0,12.074402,0.053349,78507903,52330510,0,0,74336,0,1,1 +1774167762.834913,1.56,4,3992.50,53.73,1598.59,2103.83,0.00,1.831612,0.000195,238,2,0.008839,0.011837,78508104,52330750,0,0,74339,0,1,1 +1774167767.838011,3.26,4,3992.50,53.47,1608.96,2093.38,0.00,3516259047446.013184,3516259047447.970703,70,0,0.017676,11.021295,78509185,52332415,0,0,74341,0,1,1 +1774167772.833207,27.95,4,3992.50,53.40,1604.55,2090.88,0.00,3521821052030.005859,0.000000,21,0,0.035249,114.275476,78511665,52344307,0,0,74344,0,1,1 +1774167777.834903,19.63,4,3992.50,53.28,1606.25,2085.97,0.00,0.048031,0.000000,70,0,0.014593,79.890743,78512660,52352802,0,0,74346,0,1,1 +1774167782.834898,1.85,4,3992.50,53.41,1601.09,2090.95,0.00,3518440652029.173828,0.000000,21,0,0.005975,0.009043,78512787,52352979,0,0,74349,0,1,1 +1774167787.837640,15.25,4,3992.50,52.83,1626.46,2068.57,0.00,0.000000,0.000000,21,0,40.045637,0.027667,78517342,52354465,0,0,74351,0,1,1 +1774167792.834890,0.70,4,3992.50,52.86,1625.26,2069.77,0.00,106113.152624,156314.648360,8679475,2764278,0.003876,0.007119,78517442,52354605,0,0,74354,0,1,1 +1774167797.838011,0.65,4,3992.50,52.77,1629.06,2065.98,0.00,3516242506876.403320,3516242456733.768066,70,0,0.002961,0.004585,78517514,52354697,0,0,74356,0,1,1 +1774167802.834902,0.75,4,3992.50,52.62,1634.75,2060.29,0.00,3520626242040.044922,0.000000,21,0,0.003880,0.007137,78517614,52354838,0,0,74359,0,1,1 +1774167807.834901,0.95,4,3992.50,52.82,1625.46,2068.11,0.00,106054.807208,156228.883867,8679475,2764430,0.003878,0.007122,78517714,52354978,0,0,74361,0,1,1 +1774167812.838062,0.95,4,3992.50,53.10,1614.71,2078.97,0.00,3516213694018.328613,3516213643874.459473,237,494,0.003640,0.006424,78517808,52355108,0,0,74364,0,1,1 +1774167817.834893,0.75,4,3992.50,53.10,1614.71,2078.96,0.00,0.468754,3520668699538.191406,238,2,0.004077,0.007659,78517914,52355259,0,0,74366,0,1,1 +1774167822.836482,0.65,4,3992.50,53.03,1617.29,2076.38,0.00,3517319769052.916016,3517319769054.922363,21,0,0.003877,0.007130,78518014,52355400,0,0,74369,0,1,1 +1774167827.834119,0.70,4,3992.50,53.06,1616.32,2077.36,0.00,106100.823109,156302.887125,8678701,2764115,0.004864,0.007846,78518120,52355547,0,0,74371,0,1,1 +1774167832.834114,1.70,4,3992.50,53.06,1616.34,2077.34,0.00,3518440490387.027832,3518440440208.643066,21,0,0.003520,0.005905,78518213,52355667,0,0,74374,0,1,1 +1774167837.838040,1.00,4,3992.50,53.01,1624.97,2075.64,0.00,2.005261,0.000195,238,2,0.003875,0.007117,78518313,52355807,0,0,74376,0,1,1 +1774167842.833236,0.75,4,3992.50,53.07,1622.84,2077.85,0.00,3521821704898.255371,0.028152,237,494,0.003869,0.007784,78518412,52355952,0,0,74379,0,1,1 +1774167847.833522,0.60,4,3992.50,53.07,1622.86,2077.84,0.00,3518235450744.383789,3518235450745.719238,199,0,0.003873,0.007117,78518512,52356092,0,0,74381,0,1,1 +1774167852.834880,0.60,4,3992.50,53.08,1622.62,2078.08,0.00,106025.824052,156186.839488,8679475,2764810,0.003419,0.005864,78518598,52356209,0,0,74384,0,1,1 +1774167857.834886,8.89,4,3992.50,53.41,1607.82,2091.04,0.00,3518432479609.674316,3518432429433.770996,237,494,0.024772,33.256284,78520213,52359924,0,0,74386,0,1,1 +1774167862.834902,3.06,4,3992.50,52.74,1633.41,2064.87,0.00,106048.824663,156256.796834,8678704,2764586,0.006511,6.820195,78520514,52360848,0,0,74389,0,1,1 +1774167867.834902,0.90,4,3992.50,52.77,1628.80,2066.25,0.00,3518437312531.541992,3518437262324.743652,199,0,0.001831,0.005089,78520570,52360946,0,0,74391,0,1,1 +1774167872.837659,0.65,4,3992.50,52.77,1628.81,2066.25,0.00,1.830826,0.000195,238,2,0.002275,0.006337,78520639,52361067,0,0,74394,0,1,1 +1774167877.834906,0.70,4,3992.50,52.90,1623.75,2071.30,0.00,3520375729827.603027,3520375729829.610840,21,0,0.001832,0.005117,78520695,52361167,0,0,74396,0,1,1 +1774167882.834906,0.70,4,3992.50,52.91,1623.52,2071.54,0.00,1.538379,0.028320,237,494,0.002297,0.006374,78520766,52361291,0,0,74399,0,1,1 +1774167887.834888,0.65,4,3992.50,52.91,1623.52,2071.53,0.00,0.000000,0.000000,237,494,0.002289,0.006356,78520836,52361413,0,0,74401,0,1,1 +1774167892.834893,0.80,4,3992.50,52.52,1638.84,2056.21,0.00,0.468457,3518433607414.531250,238,2,0.002314,0.006397,78520908,52361538,0,0,74404,0,1,1 +1774167897.834896,1.00,4,3992.50,52.77,1625.54,2066.00,0.00,0.000000,0.000000,238,2,0.001881,0.005151,78520968,52361640,0,0,74406,0,1,1 +1774167902.837437,0.65,4,3992.50,52.68,1628.88,2062.68,0.00,105998.930350,156190.248706,8679478,2765314,0.002363,0.006456,78521044,52361769,0,0,74409,0,1,1 +1774167907.834903,0.80,4,3992.50,52.70,1628.05,2063.50,0.00,3520220978329.558105,3520220928089.104980,199,0,0.002446,0.007129,78521124,52361905,0,0,74411,0,1,1 +1774167912.836768,0.60,4,3992.50,52.70,1628.06,2063.50,0.00,1.362870,0.028310,237,494,0.002296,0.006372,78521195,52362029,0,0,74414,0,1,1 +1774167917.837377,0.65,4,3992.50,52.70,1628.06,2063.49,0.00,106040.346872,156250.601704,8679478,2765360,0.001831,0.005088,78521251,52362127,0,0,74416,0,1,1 +1774167922.837499,1.36,4,3992.50,52.47,1638.48,2054.13,0.00,3518351286722.159180,3518351236508.521484,21,0,0.003784,0.007702,78521351,52362278,0,0,74419,0,1,1 +1774167927.837046,39.07,4,3992.50,59.16,1384.71,2316.08,0.00,106060.314539,156283.962963,8678704,2764987,114.375167,0.043520,78533414,52365255,0,0,74421,0,1,1 +1774167932.834138,29.36,4,3992.50,58.99,1392.90,2309.70,0.00,3520484400402.209961,3520484350153.719727,199,0,121.240547,0.047603,78545895,52368647,0,0,74424,0,1,1 +1774167937.837180,28.32,4,3992.50,59.02,1391.76,2310.80,0.00,105990.153408,156174.957475,8679478,2765592,120.095947,0.027174,78558360,52370491,0,0,74426,0,1,1 +1774167942.836686,29.03,4,3992.50,59.04,1391.20,2311.40,0.00,3518785074076.854980,3518785023856.730469,21,0,120.182366,0.026769,78570746,52372362,0,0,74429,0,1,1 +1774167947.833401,27.98,4,3992.50,59.11,1388.18,2314.44,0.00,0.000000,0.000000,21,0,120.244843,0.019807,78583023,52373740,0,0,74431,0,1,1 +1774167952.833524,28.05,4,3992.50,59.24,1383.41,2319.19,0.00,0.048046,0.000000,70,0,119.564144,0.029306,78595150,52375668,0,0,74434,0,1,1 +1774167957.833838,28.41,4,3992.50,59.03,1391.51,2311.04,0.00,1.958666,0.000195,238,2,118.758495,0.027252,78607345,52377601,0,0,74436,0,1,1 +1774167962.837341,28.82,4,3992.50,59.10,1388.65,2313.82,0.00,105974.460766,156160.753684,8678704,2765180,120.083587,0.030337,78619680,52379696,0,0,74439,0,1,1 +1774167967.836883,6.43,4,3992.50,53.79,1596.66,2105.97,0.00,4.268262,0.150209,8679493,2765706,70.906453,0.013575,78626959,52380511,0,0,74441,0,1,1 +1774167972.834725,2.41,4,3992.50,53.26,1617.45,2085.18,0.00,3519956469510.578125,3519956419273.572266,21,0,0.008373,0.010464,78627131,52380714,0,0,74444,0,1,1 +1774167977.837425,23.31,4,3992.50,53.66,1601.66,2100.89,0.00,105997.715134,156186.134958,8679493,2766357,32.185923,0.144464,78637555,52388522,0,0,74446,0,1,1 +1774167982.837987,6.29,4,3992.50,53.07,1624.77,2077.77,0.00,3518041640471.086426,3518041590261.155762,70,0,8.051326,0.041740,78640382,52390644,0,0,74449,0,1,1 +1774167987.838100,1.40,4,3992.50,53.19,1618.11,2082.46,0.00,0.126950,0.000000,199,0,0.004594,0.008534,78640499,52390808,0,0,74451,0,1,1 +1774167992.833233,0.80,4,3992.50,53.21,1617.39,2083.18,0.00,1.364707,0.028348,237,494,0.005027,0.010302,78640634,52391009,0,0,74454,0,1,1 +1774167997.836175,0.95,4,3992.50,53.42,1609.04,2091.53,0.00,105991.062231,156179.586513,8679493,2767340,0.005019,0.010284,78640769,52391209,0,0,74456,0,1,1 +1774168002.833200,0.75,4,3992.50,53.42,1609.06,2091.51,0.00,3520532041187.799316,3520531990939.844238,237,494,0.004338,0.008405,78640883,52391374,0,0,74459,0,1,1 +1774168007.837156,1.10,4,3992.50,52.70,1637.18,2063.40,0.00,0.468087,3515655595457.063477,238,2,0.005026,0.010290,78641019,52391575,0,0,74461,0,1,1 +1774168012.837645,0.75,4,3992.50,52.74,1635.50,2065.07,0.00,106042.582712,156256.624703,8679493,2767452,0.005123,0.010424,78641162,52391784,0,0,74464,0,1,1 +1774168017.837623,0.95,4,3992.50,52.84,1636.18,2068.72,0.00,0.000000,0.085450,8679493,2767506,0.004386,0.008421,78641280,52391950,0,0,74466,0,1,1 +1774168022.833221,0.80,4,3992.50,52.83,1636.46,2068.44,0.00,3521537363607.186035,3521537313345.903809,21,0,0.005039,0.010310,78641416,52392151,0,0,74469,0,1,1 +1774168027.834893,0.70,4,3992.50,53.05,1627.74,2077.17,0.00,1.537865,0.028311,237,494,0.005033,0.010287,78641552,52392351,0,0,74471,0,1,1 +1774168032.837957,0.70,4,3992.50,53.06,1627.54,2077.36,0.00,105984.354094,156176.306713,8678719,2767109,0.004408,0.008434,78641671,52392519,0,0,74474,0,1,1 +1774168037.837866,0.75,4,3992.50,53.06,1627.55,2077.36,0.00,3518501596264.441895,3518501546040.803711,237,494,0.005031,0.010930,78641807,52392723,0,0,74476,0,1,1 +1774168042.836550,0.70,4,3992.50,53.06,1627.34,2077.58,0.00,3519363651096.285645,3519363651097.796387,21,0,0.005036,0.010291,78641943,52392923,0,0,74479,0,1,1 +1774168047.836971,1.05,4,3992.50,53.32,1609.88,2087.64,0.00,2.006667,0.000195,238,2,0.004348,0.008389,78642058,52393087,0,0,74481,0,1,1 +1774168052.837589,0.75,4,3992.50,53.16,1616.31,2081.20,0.00,3518002091126.494629,0.028122,237,494,0.005022,0.010299,78642193,52393288,0,0,74484,0,1,1 +1774168057.834843,0.65,4,3992.50,53.16,1616.29,2081.22,0.00,3520370802115.886719,3520370802117.349609,70,0,0.005013,0.010284,78642327,52393487,0,0,74486,0,1,1 +1774168062.837006,0.75,4,3992.50,53.16,1616.04,2081.46,0.00,3516915550658.913086,0.000000,21,0,0.005862,0.010174,78642456,52393677,0,0,74489,0,1,1 +1774168067.834995,2.41,4,3992.50,52.99,1622.68,2074.78,0.00,106097.647487,156335.237117,8679494,2767867,0.015610,9.140909,78643316,52395126,0,0,74491,0,1,1 +1774168072.834404,30.09,4,3992.50,53.20,1607.31,2082.96,0.00,3518853017179.451660,3518852966956.135254,21,0,0.068394,120.878256,78648447,52407576,0,0,74494,0,1,1 +1774168077.837753,19.39,4,3992.50,53.02,1601.92,2075.83,0.00,0.174883,0.000000,199,0,0.032077,75.064167,78650675,52415460,0,0,74496,0,1,1 +1774168082.837522,1.45,4,3992.50,53.06,1600.54,2077.23,0.00,106059.692066,156484.746639,8679497,2769230,0.004534,0.006736,78650768,52415597,0,0,74499,0,1,1 +1774168087.833197,14.23,4,3992.50,57.60,1425.91,2255.12,0.00,13.371039,0.012413,8678844,2768797,26.264888,0.022337,78653717,52416845,0,0,74501,0,1,1 +1774168092.835810,2.45,4,3992.50,53.47,1587.63,2093.42,0.00,3516599349094.625488,3516599298711.749023,21,0,13.817821,0.012394,78655244,52417266,0,0,74504,0,1,1 +1774168097.837763,10.94,4,3992.50,52.87,1608.91,2069.80,0.00,0.048028,0.000000,70,0,0.026093,40.057735,78656943,52421911,0,0,74506,0,1,1 +1774168102.834721,3.41,4,3992.50,52.70,1615.36,2063.36,0.00,1.491240,0.028338,237,494,0.004491,0.012620,78657077,52422141,0,0,74509,0,1,1 +1774168107.836842,0.90,4,3992.50,53.08,1600.39,2078.21,0.00,3516944945226.225098,3516944945227.686523,70,0,0.002870,0.007645,78657162,52422289,0,0,74511,0,1,1 +1774168112.837620,0.75,4,3992.50,52.90,1607.48,2071.12,0.00,106051.791681,156487.668119,8678844,2769375,0.003654,0.010096,78657275,52422485,0,0,74514,0,1,1 +1774168117.833231,0.75,4,3992.50,52.90,1607.48,2071.12,0.00,3521528025436.457031,3521527974948.421875,70,0,0.003633,0.010040,78657386,52422676,0,0,74516,0,1,1 +1774168122.837497,0.65,4,3992.50,52.90,1607.49,2071.11,0.00,3515437967280.672852,0.000000,21,0,0.002732,0.007652,78657469,52422825,0,0,74519,0,1,1 +1774168127.834898,0.80,4,3992.50,52.90,1607.50,2071.11,0.00,2.007879,0.000195,238,2,0.004332,0.010199,78657574,52423010,0,0,74521,0,1,1 +1774168132.835510,0.75,4,3992.50,52.90,1607.50,2071.10,0.00,106053.359919,156498.899361,8678844,2769427,0.003212,0.008882,78657673,52423180,0,0,74524,0,1,1 +1774168137.834909,1.00,4,3992.50,53.17,1597.14,2081.71,0.00,3518860035307.820312,3518859984850.545410,237,494,0.003114,0.008439,78657775,52423350,0,0,74526,0,1,1 +1774168142.834916,0.80,4,3992.50,52.85,1609.50,2069.32,0.00,3518432043119.911133,3518432043121.246094,199,0,0.003458,0.009565,78657882,52423535,0,0,74529,0,1,1 +1774168147.833463,0.80,4,3992.50,52.85,1609.50,2069.31,0.00,3519460251924.082520,0.000000,21,0,0.003101,0.008347,78657981,52423700,0,0,74531,0,1,1 +1774168152.837516,0.75,4,3992.50,52.85,1609.50,2069.31,0.00,0.000000,0.000000,21,0,0.003189,0.008906,78658078,52423872,0,0,74534,0,1,1 +1774168157.837781,0.60,4,3992.50,52.85,1609.51,2069.30,0.00,0.048044,0.000000,70,0,0.003433,0.009524,78658183,52424054,0,0,74536,0,1,1 +1774168162.838045,28.22,4,3992.50,58.75,1383.72,2300.36,0.00,3518251194016.972656,0.000000,21,0,32.252419,0.029436,78661872,52425710,0,0,74539,0,1,1 +1774168167.834003,31.75,4,3992.50,58.94,1379.33,2307.61,0.00,0.175142,0.000000,199,0,118.263675,0.030956,78674154,52427771,0,0,74541,0,1,1 +1774168172.837779,28.46,4,3992.50,58.67,1389.86,2296.98,0.00,105988.112246,156400.247094,8678844,2769639,120.096771,0.086056,78686735,52434436,0,0,74544,0,1,1 +1774168177.834078,28.26,4,3992.50,58.80,1382.41,2302.12,0.00,3521043699071.687012,3521043648584.278809,21,0,120.284623,0.107452,78699478,52442465,0,0,74546,0,1,1 +1774168182.837921,28.29,4,3992.50,58.82,1381.86,2302.75,0.00,105986.862540,156398.269550,8678844,2769725,119.819435,0.115744,78712319,52451254,0,0,74549,0,1,1 +1774168187.834893,28.25,4,3992.50,59.13,1369.36,2315.25,0.00,4.111767,0.057261,8679618,2770239,118.555992,0.113363,78724997,52459871,0,0,74551,0,1,1 +1774168192.836748,28.28,4,3992.50,58.78,1383.19,2301.34,0.00,3517132688186.231445,3517132688190.337402,8678844,2769750,120.151324,0.111997,78737822,52468654,0,0,74554,0,1,1 +1774168197.837635,29.00,4,3992.50,59.14,1374.41,2315.38,0.00,3517812923900.089355,3517812873458.826660,21,0,118.578074,0.117590,78750642,52477488,0,0,74556,0,1,1 +1774168202.837672,26.41,4,3992.50,58.84,1386.35,2303.55,0.00,2.006821,0.000195,238,2,119.800559,0.116179,78763629,52486191,0,0,74559,0,1,1 +1774168207.834899,1.55,4,3992.50,53.73,1586.24,2103.65,0.00,106125.334169,156605.635345,8678868,2769889,37.887922,0.038834,78767774,52488946,0,0,74561,0,1,1 +1774168212.833196,15.61,4,3992.50,53.43,1597.98,2091.88,0.00,3519636036563.243164,3519635986094.245117,237,494,12.136664,0.070553,78772127,52492180,0,0,74564,0,1,1 +1774168217.837378,18.72,4,3992.50,52.88,1619.44,2070.37,0.00,3515496548751.080078,3515496548752.588867,21,0,28.113493,0.125192,78781444,52499087,0,0,74566,0,1,1 +1774168222.835434,1.35,4,3992.50,52.70,1626.55,2063.25,0.00,1.538977,0.028331,237,494,0.005754,0.011702,78781597,52499312,0,0,74569,0,1,1 +1774168227.834912,1.10,4,3992.50,52.65,1629.29,2061.41,0.00,3518804754372.279785,3518804754373.614746,199,0,0.004336,0.008391,78781711,52499476,0,0,74571,0,1,1 +1774168232.834921,0.95,4,3992.50,52.61,1631.04,2059.61,0.00,1.363376,0.028320,237,494,0.004404,0.010707,78781834,52499674,0,0,74574,0,1,1 +1774168237.837576,21.30,4,3992.50,52.87,1616.64,2070.03,0.00,106014.759065,156516.104859,8679642,2772505,0.033369,88.288628,78784038,52509210,0,0,74576,0,1,1 +1774168242.836037,29.29,4,3992.50,53.07,1603.67,2077.76,0.00,3519520361904.894043,3519520311362.512207,199,0,0.029532,116.807358,78785917,52521378,0,0,74579,0,1,1 +1774168247.834888,1.10,4,3992.50,53.10,1602.33,2079.11,0.00,3519246105488.823730,0.000000,21,0,0.002908,0.004911,78786004,52521480,0,0,74581,0,1,1 +1774168252.834192,14.73,4,3992.50,53.51,1589.85,2094.89,0.00,106100.729228,156747.277685,8679000,2772931,40.074725,0.031886,78790593,52523253,0,0,74584,0,1,1 +1774168257.837141,1.50,4,3992.50,53.23,1606.30,2083.96,0.00,3516363285355.351074,3516363234743.696289,238,2,0.006861,0.009705,78790756,52523450,0,0,74586,0,1,1 +1774168262.837793,1.30,4,3992.50,52.88,1619.73,2070.45,0.00,106070.119569,156705.229166,8679000,2773095,0.005036,0.010632,78790885,52523639,0,0,74589,0,1,1 +1774168267.838072,0.85,4,3992.50,52.88,1619.75,2070.43,0.00,4.109048,0.140812,8679774,2773691,0.004997,0.010290,78791018,52523839,0,0,74591,0,1,1 +1774168272.836631,0.85,4,3992.50,52.88,1619.80,2070.39,0.00,3519450972151.386230,3519450921501.058105,21,0,0.005032,0.010286,78791154,52524039,0,0,74594,0,1,1 +1774168277.838019,1.15,4,3992.50,52.71,1626.32,2063.86,0.00,0.174951,0.000000,199,0,0.004335,0.008400,78791268,52524204,0,0,74596,0,1,1 +1774168282.834914,0.95,4,3992.50,52.71,1626.33,2063.86,0.00,0.000000,0.000000,199,0,0.005038,0.010338,78791404,52524407,0,0,74599,0,1,1 +1774168287.833211,1.71,4,3992.50,52.93,1613.97,2072.18,0.00,106121.931623,156779.409043,8679000,2773381,0.005075,0.010356,78791543,52524611,0,0,74601,0,1,1 +1774168292.837600,0.95,4,3992.50,52.93,1613.73,2072.41,0.00,3515351573261.018555,3515351522665.206543,199,0,0.003708,0.006556,78791640,52524745,0,0,74604,0,1,1 +1774168297.833226,0.80,4,3992.50,52.74,1621.16,2064.98,0.00,106182.770189,156863.299923,8679774,2773947,0.005058,0.010969,78791777,52524951,0,0,74606,0,1,1 +1774168302.833209,1.20,4,3992.50,52.55,1628.57,2057.57,0.00,3518449589069.041504,3518449538430.830566,238,2,0.005035,0.010288,78791913,52525151,0,0,74609,0,1,1 +1774168307.838036,1.15,4,3992.50,52.62,1626.12,2060.03,0.00,3515043459026.806641,3515043459028.812012,21,0,0.004427,0.008442,78792034,52525320,0,0,74611,0,1,1 +1774168312.837746,0.70,4,3992.50,52.51,1630.20,2055.95,0.00,1.538468,0.028322,237,494,0.001917,0.002429,78792100,52525380,0,0,74614,0,1,1 +1774168317.835795,0.95,4,3992.50,52.65,1624.22,2061.51,0.00,3519810590400.649902,3519810590402.160645,21,0,0.001862,0.002231,78792164,52525446,0,0,74616,0,1,1 +1774168322.833241,0.80,4,3992.50,52.65,1623.96,2061.47,0.00,0.048071,0.000000,70,0,0.001222,0.001563,78792201,52525484,0,0,74619,0,1,1 +1774168327.833241,0.85,4,3992.50,52.65,1623.98,2061.46,0.00,3518437156810.282227,0.000000,21,0,0.001835,0.002076,78792253,52525536,0,0,74621,0,1,1 +1774168332.833224,0.70,4,3992.50,52.67,1623.26,2062.18,0.00,0.000000,0.000000,21,0,0.003090,0.004084,78792327,52525623,0,0,74624,0,1,1 +1774168337.837820,0.90,4,3992.50,52.49,1630.16,2055.29,0.00,105992.650504,156582.469088,8679774,2774272,0.020434,0.624237,78793528,52526896,0,0,74626,0,1,1 +1774168342.837305,2.83,4,3992.50,53.00,1610.17,2074.88,0.00,3518799310400.197266,3518799259758.621094,70,0,0.199645,7.252993,78805013,52540614,0,0,74629,0,1,1 +1774168347.834873,4.30,4,3992.50,53.35,1597.23,2088.61,0.00,3520149359545.514160,0.000000,21,0,0.204835,7.572138,78817001,52554704,0,0,74631,0,1,1 +1774168352.834873,2.32,4,3992.50,53.57,1588.17,2097.23,0.00,0.175000,0.000000,199,0,0.237972,8.890703,78830741,52571271,0,0,74634,0,1,1 +1774168357.836596,2.92,4,3992.50,53.06,1607.31,2077.58,0.00,3517224689988.230469,0.000000,70,0,0.176189,6.169849,78840969,52583201,0,0,74636,0,1,1 +1774168362.833204,2.58,4,3992.50,52.96,1611.26,2073.34,0.00,1.960119,0.000195,238,2,0.157269,5.466139,78850315,52593479,0,0,74639,0,1,1 +1774168367.837591,2.67,4,3992.50,52.96,1610.70,2073.55,0.00,105990.953441,156609.316205,8679000,2774039,0.135118,4.697790,78858334,52602375,0,0,74641,0,1,1 +1774168372.837875,1.20,4,3992.50,52.95,1611.25,2072.97,0.00,3518237564546.648926,3518237513888.577637,199,0,0.018652,0.592358,78859389,52603565,0,0,74644,0,1,1 +1774168377.837154,1.26,4,3992.50,53.04,1611.85,2076.66,0.00,106101.082279,156789.251958,8679000,2774207,0.001906,0.004248,78859459,52603650,0,0,74646,0,1,1 +1774168382.833222,0.75,4,3992.50,52.90,1614.25,2071.20,0.00,3521206200480.537109,3521206149759.964355,21,0,0.000602,0.001381,78859483,52603683,0,0,74649,0,1,1 +1774168387.833221,0.60,4,3992.50,52.92,1613.51,2071.93,0.00,0.048047,0.000000,70,0,0.000680,0.001550,78859505,52603717,0,0,74651,0,1,1 +1774168392.836535,0.50,4,3992.50,52.92,1613.51,2071.93,0.00,106019.728290,156662.919830,8679774,2774827,0.000736,0.001729,78859538,52603753,0,0,74654,0,1,1 +1774168397.837225,0.55,4,3992.50,52.92,1613.51,2071.93,0.00,3517951907571.637695,3517951856899.899902,238,2,0.000580,0.001364,78859561,52603785,0,0,74656,0,1,1 +1774168402.834912,0.50,4,3992.50,52.92,1613.52,2071.93,0.00,0.000000,0.000000,238,2,0.000765,0.001549,78859589,52603819,0,0,74659,0,1,1 +1774168407.837642,0.95,4,3992.50,53.05,1616.69,2077.14,0.00,106026.064126,156681.305779,8679000,2774374,0.000563,0.001362,78859611,52603851,0,0,74661,0,1,1 +1774168412.838114,0.50,4,3992.50,53.05,1616.34,2077.06,0.00,3518105049268.189453,3518104998590.571777,237,494,0.000778,0.002108,78859645,52603892,0,0,74664,0,1,1 +1774168417.835217,0.55,4,3992.50,53.05,1616.34,2077.06,0.00,3520476793591.600586,3520476793593.063477,70,0,0.000976,0.002033,78859681,52603940,0,0,74666,0,1,1 +1774168422.838083,0.65,4,3992.50,53.05,1616.34,2077.05,0.00,3516421671232.625000,0.000000,21,0,0.000831,0.001625,78859713,52603980,0,0,74669,0,1,1 +1774168427.833553,0.50,4,3992.50,53.06,1616.11,2077.29,0.00,0.000000,0.000000,21,0,0.001491,0.002694,78859737,52604020,0,0,74671,0,1,1 +1774168432.833289,0.50,4,3992.50,53.06,1616.12,2077.29,0.00,106095.662329,156775.213418,8679774,2774933,0.000653,0.001405,78859765,52604055,0,0,74674,0,1,1 +1774168437.834909,0.85,4,3992.50,53.08,1617.24,2078.16,0.00,3517297567320.528320,3517297516659.888184,199,0,0.000615,0.001312,78859790,52604083,0,0,74676,0,1,1 +1774168442.837799,1.10,4,3992.50,52.97,1621.03,2074.01,0.00,106024.502546,156676.411363,8679000,2774479,0.002046,0.002479,78859840,52604138,0,0,74679,0,1,1 +1774168447.834882,0.95,4,3992.50,53.00,1620.12,2074.93,0.00,0.000000,0.080418,8679000,2774584,0.002320,0.003485,78859894,52604200,0,0,74681,0,1,1 +1774168452.836909,13.78,4,3992.50,59.95,1352.91,2347.00,0.00,3517012130469.200684,3517012079806.630371,238,2,0.084904,0.003876,78860152,52604336,0,0,74684,0,1,1 +1774168457.835738,6.74,4,3992.50,60.76,1321.16,2378.93,0.00,3519260994679.418945,3519260994681.426270,21,0,5.721913,0.142811,78871136,52612514,0,0,74686,0,1,1 +1774168462.835391,2.34,4,3992.50,60.68,1324.25,2375.93,0.00,0.000000,0.000000,21,0,7.662613,0.209896,78885429,52624702,0,0,74689,0,1,1 +1774168467.835771,2.94,4,3992.50,60.48,1332.39,2367.80,0.00,0.048043,0.000000,70,0,8.855220,0.238132,78901912,52638453,0,0,74691,0,1,1 +1774168472.834968,2.53,4,3992.50,60.37,1337.18,2363.43,0.00,106107.070076,156792.440473,8679774,2775233,6.602407,0.198228,78914682,52649742,0,0,74694,0,1,1 +1774168477.833995,2.38,4,3992.50,60.64,1326.49,2374.25,0.00,3519121861268.973633,3519121810579.926270,238,2,5.164619,0.146751,78924442,52658543,0,0,74696,0,1,1 +1774168482.834651,2.64,4,3992.50,60.53,1331.21,2369.94,0.00,3517975575904.552246,3517975575906.558594,21,0,6.786576,0.180058,78937202,52669182,0,0,74699,0,1,1 +1774168487.837736,2.78,4,3992.50,60.23,1343.61,2358.12,0.00,2.005599,0.000195,238,2,8.071207,0.228557,78952712,52682145,0,0,74701,0,1,1 +1774168492.837798,2.29,4,3992.50,60.24,1343.20,2358.69,0.00,3518393017864.888184,3518393017866.895508,21,0,6.178022,0.173587,78964338,52692398,0,0,74704,0,1,1 +1774168497.834884,2.85,4,3992.50,60.52,1343.47,2369.43,0.00,1.539276,0.028337,237,494,7.252119,0.198917,78977935,52704040,0,0,74706,0,1,1 +1774168502.837674,2.43,4,3992.50,60.27,1353.19,2359.64,0.00,106029.343394,156679.885961,8679774,2775363,8.422485,0.232995,78994062,52717223,0,0,74709,0,1,1 +1774168507.835089,2.84,4,3992.50,60.46,1345.50,2367.34,0.00,3520257756871.285156,3520257706167.756348,21,0,6.660401,0.186472,79006566,52728105,0,0,74711,0,1,1 +1774168512.835806,2.89,4,3992.50,60.76,1333.82,2378.99,0.00,106070.748209,156744.913476,8679000,2774929,7.280864,0.201528,79020180,52739878,0,0,74714,0,1,1 +1774168517.835867,2.48,4,3992.50,60.34,1350.28,2362.50,0.00,0.000000,0.009766,8679000,2774941,8.692967,0.241088,79036749,52753546,0,0,74716,0,1,1 +1774168522.834899,2.54,4,3992.50,60.32,1351.02,2361.78,0.00,3519118390745.088379,3519118340053.785645,70,0,5.090010,0.149011,79046482,52762313,0,0,74719,0,1,1 +1774168527.837376,2.28,4,3992.50,60.49,1332.50,2368.28,0.00,1.957819,0.000195,238,2,5.381063,0.149927,79056665,52771320,0,0,74721,0,1,1 +1774168532.834961,2.44,4,3992.50,60.11,1347.15,2353.60,0.00,3520137288755.489258,0.028139,237,494,8.704126,0.225465,79073043,52784294,0,0,74724,0,1,1 +1774168537.837690,2.69,4,3992.50,59.96,1353.20,2347.72,0.00,3516517633335.082520,3516517633336.591797,21,0,5.782991,0.179942,79084281,52794517,0,0,74726,0,1,1 +1774168542.835169,2.23,4,3992.50,60.08,1348.98,2352.13,0.00,0.175088,0.000000,199,0,4.067726,0.119053,79092122,52801808,0,0,74729,0,1,1 +1774168547.837591,2.58,4,3992.50,60.21,1343.97,2357.45,0.00,106034.427146,156691.617877,8679000,2775049,5.696670,0.153181,79102953,52811015,0,0,74731,0,1,1 +1774168552.835922,2.69,4,3992.50,59.97,1353.32,2348.07,0.00,0.000000,0.013676,8679000,2775066,8.753332,0.235903,79119399,52824340,0,0,74734,0,1,1 +1774168557.837334,2.64,4,3992.50,60.31,1340.04,2361.18,0.00,3517443549512.054688,3517443498844.754395,70,0,4.500582,0.137927,79128145,52832501,0,0,74736,0,1,1 +1774168562.835414,2.08,4,3992.50,60.26,1342.11,2359.15,0.00,106130.759721,156827.821170,8679774,2775617,4.773491,0.133699,79137177,52840632,0,0,74739,0,1,1 +1774168567.837572,2.84,4,3992.50,60.68,1325.52,2375.73,0.00,0.000000,0.008883,8679774,2775628,8.601104,0.216456,79153374,52853187,0,0,74741,0,1,1 +1774168572.833120,2.74,4,3992.50,60.08,1349.11,2352.12,0.00,0.000000,0.027759,8679774,2775649,6.706852,0.197325,79166161,52864343,0,0,74744,0,1,1 +1774168577.833128,3.05,4,3992.50,60.61,1328.26,2372.98,0.00,3518431360011.473633,3518431309331.961426,238,2,5.890083,0.158319,79177237,52873729,0,0,74746,0,1,1 +1774168582.833891,2.64,4,3992.50,60.34,1338.68,2362.55,0.00,3517900385725.292480,3517900385727.298828,21,0,7.381591,0.190159,79191072,52884895,0,0,74749,0,1,1 +1774168587.833384,2.79,4,3992.50,60.40,1327.02,2364.99,0.00,106096.717747,156783.589127,8679000,2775210,8.126162,0.225361,79206464,52897645,0,0,74751,0,1,1 +1774168592.835966,2.18,4,3992.50,60.02,1341.94,2350.07,0.00,3516621190652.144531,3516621139994.565430,238,2,4.627952,0.133672,79215316,52905641,0,0,74754,0,1,1 +1774168597.833290,2.64,4,3992.50,60.23,1333.95,2358.05,0.00,106140.752400,156851.646727,8679000,2775245,5.332437,0.146927,79225385,52914461,0,0,74756,0,1,1 +1774168602.834885,2.44,4,3992.50,60.20,1334.89,2357.12,0.00,3517315004743.650879,3517314954078.064941,21,0,8.977923,0.231037,79242212,52927664,0,0,74759,0,1,1 +1774168607.834905,2.94,4,3992.50,60.04,1341.19,2350.83,0.00,106085.534221,156767.102506,8679000,2775269,5.964601,0.177060,79253703,52937862,0,0,74761,0,1,1 +1774168612.836418,2.69,4,3992.50,60.07,1339.92,2352.06,0.00,3517373105171.324219,3517373054504.705078,199,0,5.894754,0.160973,79264772,52947421,0,0,74764,0,1,1 +1774168617.833198,2.69,4,3992.50,60.52,1320.44,2369.64,0.00,3520704180446.842773,0.000000,21,0,8.459854,0.215358,79280595,52959908,0,0,74766,0,1,1 +1774168622.834889,2.39,4,3992.50,59.75,1350.80,2339.24,0.00,106050.100818,156714.799927,8679000,2775325,6.745312,0.199003,79293636,52971199,0,0,74769,0,1,1 +1774168627.834989,2.64,4,3992.50,60.15,1335.21,2354.84,0.00,3518366397002.502930,3518366346321.644043,70,0,5.564706,0.157882,79304134,52980630,0,0,74771,0,1,1 +1774168632.833218,2.64,4,3992.50,60.12,1336.33,2353.72,0.00,0.000000,0.000000,70,0,7.162107,0.193266,79317611,52991945,0,0,74774,0,1,1 +1774168637.833199,2.83,4,3992.50,59.88,1345.54,2344.50,0.00,3518450704252.672852,0.000000,21,0,8.036475,0.231702,79333126,53004998,0,0,74776,0,1,1 +1774168642.833199,2.03,4,3992.50,59.86,1346.31,2343.73,0.00,2.006836,0.000195,238,2,4.480180,0.129611,79341705,53012789,0,0,74779,0,1,1 +1774168647.835388,2.89,4,3992.50,60.53,1330.33,2369.92,0.00,106041.627094,156699.272876,8679774,2775894,5.064451,0.139865,79351296,53021294,0,0,74781,0,1,1 +1774168652.837313,2.29,4,3992.50,59.91,1352.75,2345.52,0.00,3517083229039.370117,3517083178379.044434,238,2,8.871586,0.228212,79368076,53034363,0,0,74784,0,1,1 +1774168657.837229,2.28,4,3992.50,59.82,1356.04,2342.22,0.00,3518496169025.371582,3518496169027.203613,199,0,4.706203,0.152425,79377353,53043149,0,0,74786,0,1,1 +1774168662.833212,2.33,4,3992.50,60.05,1347.32,2350.95,0.00,3521266639589.374512,0.000000,21,0,3.875190,0.109015,79384764,53049935,0,0,74789,0,1,1 +1774168667.833190,2.69,4,3992.50,60.33,1336.32,2361.91,0.00,0.175001,0.000000,199,0,5.987577,0.158468,79396155,53059380,0,0,74791,0,1,1 +1774168672.833196,2.38,4,3992.50,59.93,1351.91,2346.35,0.00,106089.777012,156767.767595,8679774,2775966,8.499532,0.227674,79412259,53072227,0,0,74794,0,1,1 +1774168677.837375,2.69,4,3992.50,60.41,1336.70,2365.15,0.00,3515498334618.109863,3515498283980.562988,238,2,6.798820,0.185398,79425031,53083099,0,0,74796,0,1,1 +1774168682.833201,2.49,4,3992.50,60.16,1346.28,2355.56,0.00,106176.705984,156898.974377,8679774,2776003,7.498038,0.198804,79439022,53094756,0,0,74799,0,1,1 +1774168687.836195,2.53,4,3992.50,59.98,1353.42,2348.43,0.00,3516331526991.102051,3516331476343.516113,21,0,8.800229,0.235954,79455643,53108122,0,0,74801,0,1,1 +1774168692.833208,2.74,4,3992.50,60.03,1351.48,2350.35,0.00,0.048076,0.000000,70,0,6.202218,0.176246,79467400,53118395,0,0,74804,0,1,1 +1774168697.838048,2.78,4,3992.50,60.31,1340.48,2361.35,0.00,0.126830,0.000000,199,0,6.692582,0.184116,79479918,53129238,0,0,74806,0,1,1 +1774168702.834886,1.93,4,3992.50,60.00,1352.61,2349.24,0.00,0.000000,0.000000,199,0,8.990130,0.237337,79496913,53142736,0,0,74809,0,1,1 +1774168707.833205,2.53,4,3992.50,60.21,1343.41,2357.38,0.00,3519620396856.140137,0.000000,21,0,5.340843,0.162406,79507250,53152043,0,0,74811,0,1,1 +1774168712.833212,2.54,4,3992.50,60.21,1343.35,2357.43,0.00,0.000000,0.000000,21,0,5.117957,0.142320,79516911,53160570,0,0,74814,0,1,1 +1774168717.833937,2.89,4,3992.50,60.41,1335.73,2365.04,0.00,1.538156,0.028316,237,494,7.499089,0.193715,79531051,53171932,0,0,74816,0,1,1 +1774168722.834905,2.23,4,3992.50,59.87,1356.58,2344.20,0.00,0.000000,0.000000,237,494,7.246368,0.210638,79545079,53183829,0,0,74819,0,1,1 +1774168727.833953,2.54,4,3992.50,60.33,1338.85,2361.96,0.00,3519107296882.486816,3519107296883.822266,199,0,4.531798,0.130631,79553737,53191724,0,0,74821,0,1,1 +1774168732.836322,2.49,4,3992.50,60.28,1340.62,2360.20,0.00,106039.660602,156693.896943,8679774,2776158,5.506027,0.150378,79564153,53200741,0,0,74824,0,1,1 +1774168737.834164,2.64,4,3992.50,60.09,1352.98,2352.53,0.00,3519955747572.976562,3519955696872.997559,70,0,8.842782,0.234315,79580974,53214038,0,0,74826,0,1,1 +1774168742.836520,4.21,4,3992.50,60.24,1344.52,2358.64,0.00,106040.054653,156694.349017,8679774,2776202,4.823657,0.146751,79590335,53222653,0,0,74829,0,1,1 +1774168747.833224,6.07,4,3992.50,60.14,1348.59,2354.55,0.00,3520758487439.910156,3520758436728.360352,21,0,4.572895,0.136523,79599145,53230662,0,0,74831,0,1,1 +1774168752.834887,2.89,4,3992.50,60.28,1342.94,2360.21,0.00,2.006169,0.000195,238,2,7.838823,0.205957,79614025,53242539,0,0,74834,0,1,1 +1774168757.836584,3.04,4,3992.50,59.91,1357.55,2345.56,0.00,0.000000,0.000000,238,2,6.588295,0.198352,79626947,53253670,0,0,74836,0,1,1 +1774168762.833226,3.56,4,3992.50,60.05,1349.98,2351.15,0.00,3520801306547.183105,3520801306549.143066,70,0,5.018516,0.144896,79636495,53262140,0,0,74839,0,1,1 +1774168767.835642,3.20,4,3992.50,60.72,1321.77,2377.17,0.00,106034.692215,156692.821895,8679001,2776076,6.324110,0.171916,79648491,53272261,0,0,74841,0,1,1 +1774168772.836998,3.71,4,3992.50,60.41,1333.75,2365.12,0.00,3517482630368.056641,3517482579699.206543,70,0,9.172681,0.246299,79666178,53286179,0,0,74844,0,1,1 +1774168777.836981,3.46,4,3992.50,60.37,1335.15,2363.75,0.00,1.490337,0.028320,237,494,6.598428,0.195053,79678970,53297641,0,0,74846,0,1,1 +1774168782.834880,3.71,4,3992.50,60.96,1310.01,2386.89,0.00,3519916316436.907715,3519916316438.418457,21,0,6.882972,0.203687,79692222,53309840,0,0,74849,0,1,1 +1774168787.834951,4.42,4,3992.50,60.73,1321.05,2377.84,0.00,106088.571606,156766.607578,8679775,2776951,10.917474,0.284965,79713099,53326485,0,0,74851,0,1,1 +1774168792.833464,3.46,4,3992.50,60.42,1333.20,2365.73,0.00,3519483633219.721680,3519483582523.889648,238,2,7.719743,0.236935,79728192,53340169,0,0,74854,0,1,1 +1774168797.835253,2.89,4,3992.50,60.48,1331.11,2367.82,0.00,3517178816466.753418,0.028115,237,494,6.341673,0.192068,79740400,53351678,0,0,74856,0,1,1 +1774168802.834436,4.11,4,3992.50,60.49,1333.98,2368.47,0.00,0.000000,0.000000,237,494,6.462653,0.175105,79752659,53361977,0,0,74859,0,1,1 +1774168807.836992,3.15,4,3992.50,60.02,1352.47,2349.98,0.00,0.000000,0.000000,237,494,7.701436,0.220701,79767561,53374365,0,0,74861,0,1,1 +1774168812.833277,4.27,4,3992.50,60.54,1331.91,2370.46,0.00,3521053105569.768555,3521053105571.104492,199,0,5.277264,0.144065,79777693,53383039,0,0,74864,0,1,1 +1774168817.835191,3.15,4,3992.50,60.77,1323.21,2379.16,0.00,3517090356013.223633,0.000000,21,0,7.434918,0.211783,79791940,53395745,0,0,74866,0,1,1 +1774168822.836124,4.12,4,3992.50,60.38,1338.36,2364.04,0.00,106070.295801,156740.145660,8679785,2777585,10.717464,0.289971,79812484,53412287,0,0,74869,0,1,1 +1774168827.837166,4.83,4,3992.50,60.60,1327.59,2372.71,0.00,0.000000,0.158268,8679785,2777698,7.483185,0.225745,79827108,53425454,0,0,74871,0,1,1 +1774168832.837990,3.29,4,3992.50,60.65,1325.71,2374.57,0.00,3517857419695.467285,3517857369022.847168,237,494,7.100531,0.209096,79840761,53437884,0,0,74874,0,1,1 +1774168837.837707,3.46,4,3992.50,60.11,1346.98,2353.35,0.00,3518636293323.186035,3518636293324.648438,70,0,9.416753,0.255048,79858544,53452637,0,0,74876,0,1,1 +1774168842.836187,2.90,4,3992.50,60.01,1350.80,2349.50,0.00,3519507220026.706055,0.000000,21,0,6.536354,0.198962,79871360,53463813,0,0,74879,0,1,1 +1774168847.833308,4.63,4,3992.50,60.52,1330.84,2369.39,0.00,106147.100020,156860.064602,8679011,2777535,6.876388,0.187945,79884502,53474917,0,0,74881,0,1,1 +1774168852.837456,3.46,4,3992.50,60.82,1319.18,2381.05,0.00,3515520331826.236328,3515520281184.493164,21,0,9.011398,0.245726,79901675,53489360,0,0,74884,0,1,1 +1774168857.834886,4.33,4,3992.50,61.12,1307.41,2392.89,0.00,0.175090,0.000000,199,0,10.415568,0.289656,79921699,53505798,0,0,74886,0,1,1 +1774168862.837483,4.01,4,3992.50,61.00,1312.14,2388.25,0.00,1.362671,0.028306,237,494,6.813056,0.207483,79934916,53517991,0,0,74889,0,1,1 +1774168867.836427,3.16,4,3992.50,60.99,1312.53,2387.74,0.00,3519180458386.849121,3519180458388.311523,70,0,6.597823,0.190948,79947661,53529383,0,0,74891,0,1,1 +1774168872.837643,3.96,4,3992.50,60.89,1316.20,2384.03,0.00,106064.254299,156732.059431,8679785,2778538,10.594986,0.279549,79967856,53545447,0,0,74894,0,1,1 +1774168877.837390,3.56,4,3992.50,60.65,1325.59,2374.64,0.00,0.000000,0.098345,8679785,2778639,8.158333,0.243036,79983784,53559548,0,0,74896,0,1,1 +1774168882.837228,3.70,4,3992.50,61.02,1311.27,2388.95,0.00,3518550944101.494141,3518550893419.684082,21,0,7.930115,0.228998,79998988,53573127,0,0,74899,0,1,1 +1774168887.834872,3.25,4,3992.50,60.51,1332.17,2369.10,0.00,0.000000,0.000000,21,0,9.270941,0.257960,80016484,53588071,0,0,74901,0,1,1 +1774168892.837428,2.94,4,3992.50,59.95,1353.20,2347.04,0.00,0.000000,0.000000,21,0,7.371304,0.215492,80030873,53600121,0,0,74904,0,1,1 +1774168897.837479,3.19,4,3992.50,60.02,1350.29,2349.98,0.00,0.174998,0.000000,199,0,4.476930,0.132410,80039451,53607934,0,0,74906,0,1,1 +1774168902.833569,3.66,4,3992.50,60.45,1333.38,2366.86,0.00,106172.939171,156893.342363,8679785,2779072,5.032705,0.136985,80049002,53616142,0,0,74909,0,1,1 +1774168907.837256,3.25,4,3992.50,60.52,1330.73,2369.55,0.00,3515844590014.041016,3515844539369.312988,237,494,10.849549,0.275260,80069577,53632037,0,0,74911,0,1,1 +1774168912.837688,2.74,4,3992.50,60.11,1346.75,2353.48,0.00,3518133536963.658691,3518133536965.168457,21,0,7.977886,0.241034,80084985,53645931,0,0,74914,0,1,1 +1774168917.836118,2.79,4,3992.50,60.32,1335.10,2361.52,0.00,106123.396984,156820.006914,8679785,2779159,5.552424,0.157452,80095503,53655268,0,0,74916,0,1,1 +1774168922.837531,2.69,4,3992.50,59.94,1349.95,2346.66,0.00,3517442951570.673828,0.013766,8679011,2778729,7.356361,0.190902,80109333,53666426,0,0,74919,0,1,1 +1774168927.837714,2.64,4,3992.50,59.91,1351.16,2345.42,0.00,3518308785150.375488,3518308734467.230957,199,0,7.574830,0.216615,80123905,53678622,0,0,74921,0,1,1 +1774168932.833179,2.69,4,3992.50,60.23,1338.62,2358.00,0.00,1.364617,0.028346,237,494,4.747713,0.137178,80132958,53686765,0,0,74924,0,1,1 +1774168937.837260,2.79,4,3992.50,60.48,1328.54,2368.07,0.00,106002.012530,156643.032346,8679785,2779399,5.676593,0.153261,80143712,53695943,0,0,74926,0,1,1 +1774168942.838066,2.59,4,3992.50,60.39,1332.25,2364.36,0.00,3517870307750.752441,3517870257077.893555,199,0,7.585958,3.285768,80163095,53713062,0,0,74929,0,1,1 +1774168947.833640,3.05,4,3992.50,60.74,1317.02,2378.20,0.00,3521554155482.435059,0.000000,21,0,4.160864,4.278319,80178311,53728015,0,0,74931,0,1,1 +1774168952.833658,2.89,4,3992.50,60.65,1320.17,2374.66,0.00,2.006829,0.000195,238,2,4.122715,4.605237,80193638,53743409,0,0,74934,0,1,1 +1774168957.833396,3.09,4,3992.50,60.73,1317.06,2377.77,0.00,3518622080803.940430,3518622080805.947754,21,0,5.448810,5.283621,80212498,53761848,0,0,74936,0,1,1 +1774168962.833507,2.89,4,3992.50,60.46,1327.69,2367.08,0.00,106087.729871,156767.693894,8679785,2779627,4.955634,5.184060,80230202,53779565,0,0,74939,0,1,1 +1774168967.835585,2.95,4,3992.50,60.68,1318.93,2375.86,0.00,3516974918362.630859,3516974867700.599121,238,2,5.431983,4.918240,80248338,53797555,0,0,74941,0,1,1 +1774168972.835754,3.10,4,3992.50,60.59,1322.39,2372.19,0.00,3518318148995.030762,3518318148997.037598,21,0,4.910218,4.996398,80265855,53814865,0,0,74944,0,1,1 +1774168977.833198,3.10,4,3992.50,60.87,1311.24,2383.33,0.00,106140.238772,156883.682322,8679011,2779409,4.281204,5.696914,80282791,53832662,0,0,74946,0,1,1 +1774168982.834085,2.80,4,3992.50,61.04,1304.31,2389.82,0.00,3517813398001.582520,3517813347291.066895,238,2,5.530464,4.997023,80301149,53850808,0,0,74949,0,1,1 +1774168987.833704,2.95,4,3992.50,60.81,1313.15,2380.75,0.00,106092.046287,156815.437692,8679011,2779446,4.568478,4.410689,80317087,53866726,0,0,74951,0,1,1 +1774168992.833908,2.94,4,3992.50,60.68,1317.96,2375.60,0.00,3518293363625.515137,3518293312910.066406,21,0,4.708318,5.363123,80334303,53884488,0,0,74954,0,1,1 +1774168997.834095,2.80,4,3992.50,60.48,1325.29,2367.95,0.00,0.000000,0.000000,21,0,6.217547,3.955153,80352554,53901552,0,0,74956,0,1,1 +1774169002.837792,2.85,4,3992.50,60.52,1323.64,2369.47,0.00,0.048011,0.000000,70,0,6.174631,4.348129,80371290,53919376,0,0,74959,0,1,1 +1774169007.833750,3.25,4,3992.50,60.51,1324.01,2369.05,0.00,1.491538,0.028343,237,494,4.913395,5.221518,80388865,53937321,0,0,74961,0,1,1 +1774169012.836401,3.15,4,3992.50,60.93,1300.06,2385.46,0.00,3516572920956.997559,3516572920958.507324,21,0,5.584716,5.023814,80407054,53955417,0,0,74964,0,1,1 +1774169017.836907,3.10,4,3992.50,60.87,1302.34,2383.09,0.00,1.538223,0.028317,237,494,5.129422,4.419530,80423854,53972002,0,0,74966,0,1,1 +1774169022.834897,2.90,4,3992.50,60.83,1303.87,2381.52,0.00,106131.208712,156894.942149,8679785,2780283,5.741804,4.686381,80441791,53990021,0,0,74969,0,1,1 +1774169027.833202,2.74,4,3992.50,60.61,1312.43,2373.01,0.00,3519629799745.364746,3519629748984.340820,238,2,5.620977,3.909474,80458915,54006497,0,0,74971,0,1,1 +1774169032.837607,2.84,4,3992.50,60.83,1304.23,2381.46,0.00,105990.595851,156693.856886,8679011,2779832,4.902551,5.037765,80475780,54023734,0,0,74974,0,1,1 +1774169037.837021,3.10,4,3992.50,61.03,1296.42,2389.30,0.00,4.109759,0.078916,8679785,2780356,5.816459,4.270818,80493303,54040772,0,0,74976,0,1,1 +1774169042.837377,3.15,4,3992.50,60.59,1313.42,2372.12,0.00,0.000000,26.847890,8679785,2780527,6.001502,4.086889,80511453,54058088,0,0,74979,0,1,1 +1774169047.834016,2.85,4,3992.50,60.74,1307.73,2377.98,0.00,0.000000,0.031857,8679785,2780571,4.084337,5.836960,80528379,54075919,0,0,74981,0,1,1 +1774169052.835181,2.59,4,3992.50,61.00,1297.27,2388.40,0.00,3517617068163.604980,3517617017406.491699,199,0,4.662508,3.726492,80543405,54090730,0,0,74984,0,1,1 +1774169057.833186,2.80,4,3992.50,60.75,1307.27,2378.39,0.00,3519841757386.352051,0.000000,70,0,6.489148,3.648101,80561884,54107552,0,0,74986,0,1,1 +1774169062.833188,2.74,4,3992.50,60.80,1304.88,2380.53,0.00,1.958788,0.000195,238,2,4.659804,5.460773,80579309,54125396,0,0,74989,0,1,1 +1774169067.834078,3.26,4,3992.50,61.21,1290.28,2396.35,0.00,3517811118708.204590,3517811118710.162598,70,0,5.101661,4.244040,80595824,54141436,0,0,74991,0,1,1 +1774169072.836129,3.00,4,3992.50,60.84,1304.72,2381.89,0.00,3516994023046.973145,0.000000,21,0,5.534858,4.608092,80613929,54158854,0,0,74994,0,1,1 +1774169077.838072,2.94,4,3992.50,61.07,1295.51,2391.14,0.00,0.048028,0.000000,70,0,4.027920,5.887991,80630844,54176803,0,0,74996,0,1,1 +1774169082.835176,2.65,4,3992.50,60.56,1315.38,2371.01,0.00,0.000000,0.000000,70,0,4.926335,4.300014,80647288,54192733,0,0,74999,0,1,1 +1774169087.837631,3.56,4,3992.50,60.50,1317.73,2368.56,0.00,106033.835242,156807.933606,8679011,2780393,4.685010,5.000755,80664513,54209785,0,0,75001,0,1,1 +1774169092.834878,2.49,4,3992.50,60.77,1306.86,2379.40,0.00,4.111541,0.041624,8679785,2780909,3.829360,5.914930,80680933,54227361,0,0,75004,0,1,1 +1774169097.837683,2.85,4,3992.50,61.01,1302.37,2388.54,0.00,3516464198993.786621,3516464148227.343750,21,0,5.227257,4.709491,80698489,54244348,0,0,75006,0,1,1 +1774169102.835228,3.51,4,3992.50,60.69,1314.78,2375.97,0.00,0.000000,0.000000,21,0,4.151910,4.987626,80714684,54260831,0,0,75009,0,1,1 +1774169107.837895,2.64,4,3992.50,60.82,1309.60,2381.17,0.00,0.000000,0.000000,21,0,4.288066,5.247605,80731094,54277939,0,0,75011,0,1,1 +1774169112.833502,3.16,4,3992.50,60.80,1310.14,2380.55,0.00,0.048089,0.000000,70,0,5.063256,4.815187,80748774,54295040,0,0,75014,0,1,1 +1774169117.837789,2.54,4,3992.50,61.21,1293.94,2396.65,0.00,1.957111,0.000195,238,2,3.796773,6.017844,80765583,54312651,0,0,75016,0,1,1 +1774169122.837443,3.15,4,3992.50,60.64,1316.43,2374.04,0.00,3518680396846.932617,3518680396848.939453,21,0,4.316700,5.110887,80782048,54329389,0,0,75019,0,1,1 +1774169127.837313,2.95,4,3992.50,61.23,1297.82,2397.38,0.00,0.000000,0.000000,21,0,5.083340,4.774098,80799505,54346470,0,0,75021,0,1,1 +1774169132.835431,3.35,4,3992.50,61.08,1303.61,2391.53,0.00,0.048065,0.000000,70,0,4.263205,5.569580,80816321,54363931,0,0,75024,0,1,1 +1774169137.833229,3.00,4,3992.50,60.98,1307.58,2387.51,0.00,106132.669436,157015.532264,8679011,2781114,5.388548,4.475850,80833725,54380824,0,0,75026,0,1,1 +1774169142.834878,2.79,4,3992.50,60.95,1308.67,2386.44,0.00,3517276929705.419434,3517276878861.786621,21,0,4.519021,4.636469,80850124,54397080,0,0,75029,0,1,1 +1774169147.835816,2.94,4,3992.50,61.07,1304.24,2390.94,0.00,0.048038,0.000000,70,0,3.869512,5.946401,80866803,54414741,0,0,75031,0,1,1 +1774169152.836797,2.79,4,3992.50,61.15,1301.00,2394.15,0.00,106065.125183,156915.642577,8679011,2781178,5.400647,4.463833,80884291,54431396,0,0,75034,0,1,1 +1774169157.837794,3.51,4,3992.50,60.94,1307.69,2386.09,0.00,3517736045441.711914,3517735994591.405273,21,0,4.805025,4.784305,80901347,54448279,0,0,75036,0,1,1 +1774169162.833929,2.75,4,3992.50,60.92,1308.69,2385.11,0.00,0.175135,0.000000,199,0,4.719425,3.852777,80916337,54463388,0,0,75039,0,1,1 +1774169167.833188,2.84,4,3992.50,61.15,1299.93,2394.05,0.00,3518958803736.589844,0.000000,70,0,7.408204,1.418163,80932371,54476980,0,0,75041,0,1,1 +1774169172.837496,2.84,4,3992.50,60.34,1331.54,2362.48,0.00,3515408529054.314453,0.000000,21,0,6.677785,0.465618,80945905,54488581,0,0,75044,0,1,1 +1774169177.837419,2.44,4,3992.50,60.68,1318.56,2375.59,0.00,0.000000,0.000000,21,0,4.962040,0.143413,80955377,54497134,0,0,75046,0,1,1 +1774169182.834874,3.96,4,3992.50,60.67,1320.08,2375.39,0.00,1.539162,0.028335,237,494,6.114478,0.165548,80966932,54506971,0,0,75049,0,1,1 +1774169187.833397,2.84,4,3992.50,60.55,1331.82,2370.55,0.00,0.468595,3519476834888.278320,238,2,8.097062,0.225580,80982446,54519718,0,0,75051,0,1,1 +1774169192.835579,2.49,4,3992.50,60.23,1344.21,2358.26,0.00,3516902384147.673340,3516902384149.504395,199,0,5.458998,0.156938,80992813,54528954,0,0,75054,0,1,1 +1774169197.838361,2.99,4,3992.50,60.76,1323.68,2378.82,0.00,1.362621,0.028305,237,494,6.031936,0.165962,81004184,54538822,0,0,75056,0,1,1 +1774169202.835397,11.84,4,3992.50,65.81,1126.93,2576.60,0.00,3520523664129.721680,3520523664131.232910,21,0,9.454914,0.241164,81022111,54552610,0,0,75059,0,1,1 +1774169207.834872,2.49,4,3992.50,65.92,1122.85,2580.81,0.00,106118.717547,156994.035841,8679915,2782270,8.366531,0.251455,81038398,54567224,0,0,75061,0,1,1 +1774169212.835841,14.77,4,3992.50,60.01,1354.23,2349.42,0.00,3517755892866.262207,3517755842004.623047,237,494,100.291819,0.121730,81054314,54575878,0,0,75064,0,1,1 +1774169217.837094,11.09,4,3992.50,59.06,1391.54,2312.27,0.00,3517555698870.905762,3517555698872.367676,70,0,82.098728,0.056336,81062819,54579758,0,0,75066,0,1,1 +1774169222.837475,11.44,4,3992.50,52.87,1625.86,2070.02,0.00,1.958640,0.000195,238,2,6.242309,40.074668,81065614,54584712,0,0,75069,0,1,1 +1774169227.838102,1.00,4,3992.50,52.85,1626.51,2069.37,0.00,0.000000,0.000000,238,2,0.003299,0.008513,81065712,54584878,0,0,75071,0,1,1 +1774169232.837568,0.80,4,3992.50,52.84,1626.93,2068.95,0.00,0.000000,0.000000,238,2,0.003434,0.009535,81065817,54585061,0,0,75074,0,1,1 +1774169237.836413,0.90,4,3992.50,52.87,1625.72,2070.16,0.00,3519249805772.944336,3519249805774.903809,70,0,0.002747,0.007625,81065901,54585207,0,0,75076,0,1,1 +1774169242.837953,0.95,4,3992.50,52.65,1634.35,2061.53,0.00,1.958186,0.000195,238,2,0.003432,0.009531,81066006,54585390,0,0,75079,0,1,1 +1774169247.836593,1.35,4,3992.50,52.94,1624.72,2072.63,0.00,106130.488599,157053.767425,8679174,2782381,0.003434,0.009514,81066111,54585571,0,0,75081,0,1,1 +1774169252.834889,1.00,4,3992.50,52.90,1626.08,2071.28,0.00,3519636822377.352051,3519636771452.397461,199,0,0.002760,0.007648,81066196,54585719,0,0,75084,0,1,1 +1774169257.834899,0.90,4,3992.50,52.90,1626.08,2071.27,0.00,106103.237871,157017.943220,8679174,2782428,0.003484,0.009586,81066305,54585905,0,0,75086,0,1,1 +1774169262.834898,0.75,4,3992.50,52.87,1627.51,2069.85,0.00,3518437671361.106934,3518437620444.458496,238,2,0.003529,0.009623,81066418,54586094,0,0,75089,0,1,1 +1774169267.834882,0.85,4,3992.50,52.90,1626.28,2071.08,0.00,3518448885909.403809,3518448885911.362305,70,0,0.004226,0.009116,81066529,54586273,0,0,75091,0,1,1 +1774169272.836906,0.80,4,3992.50,52.90,1626.05,2071.31,0.00,3517013105563.668457,0.000000,21,0,0.003089,0.008210,81066622,54586433,0,0,75094,0,1,1 +1774169277.834905,0.75,4,3992.50,52.87,1627.20,2070.15,0.00,0.000000,0.000000,21,0,0.001374,0.004145,81066664,54586509,0,0,75096,0,1,1 +1774169282.837873,1.15,4,3992.50,52.94,1624.50,2072.59,0.00,1.537466,0.028304,237,494,0.003419,0.009850,81066768,54586694,0,0,75099,0,1,1 +1774169287.833381,26.26,4,3992.50,59.54,1366.12,2331.02,0.00,3521600545734.756836,3521600545736.268555,21,0,52.135386,0.046942,81072654,54589717,0,0,75101,0,1,1 +1774169292.837791,32.85,4,3992.50,59.70,1360.45,2337.52,0.00,0.174846,0.000000,199,0,122.900642,0.049593,81085295,54593064,0,0,75104,0,1,1 +1774169297.834826,28.75,4,3992.50,59.30,1376.16,2321.74,0.00,0.000000,0.000000,199,0,121.043307,0.025097,81097161,54594624,0,0,75106,0,1,1 +1774169302.836502,28.81,4,3992.50,59.70,1360.48,2337.40,0.00,106072.022513,156966.024504,8679948,2783204,120.994991,0.027057,81109045,54596544,0,0,75109,0,1,1 +1774169307.837746,29.14,4,3992.50,59.95,1358.53,2347.24,0.00,3517561892572.872070,3517561841674.657227,21,0,119.596116,0.033955,81120813,54598882,0,0,75111,0,1,1 +1774169312.833498,28.90,4,3992.50,59.87,1357.82,2343.85,0.00,0.048088,0.000000,70,0,119.836330,0.036332,81132178,54601418,0,0,75114,0,1,1 +1774169317.833194,28.65,4,3992.50,59.57,1369.39,2332.28,0.00,3518651076014.203125,0.000000,21,0,118.438110,0.031723,81143004,54603647,0,0,75116,0,1,1 +1774169322.833186,28.40,4,3992.50,60.17,1345.91,2355.74,0.00,0.000000,0.000000,21,0,118.662356,0.028989,81153693,54605798,0,0,75119,0,1,1 +1774169327.836998,19.38,4,3992.50,60.07,1349.78,2351.98,0.00,1.537207,0.028299,237,494,119.605917,0.032971,81164516,54608016,0,0,75121,0,1,1 +1774169332.834517,1.00,4,3992.50,53.15,1620.77,2080.99,0.00,3520183421213.123047,3520183421214.585938,70,0,12.153946,0.010094,81165747,54608396,0,0,75124,0,1,1 +1774169337.838386,16.05,4,3992.50,53.88,1592.35,2109.49,0.00,0.126855,0.000000,199,0,16.193855,0.082510,81171251,54612564,0,0,75126,0,1,1 +1774169342.837390,15.97,4,3992.50,53.84,1593.74,2108.09,0.00,106124.649264,157051.146183,8679183,2784023,20.035414,0.093037,81177852,54617510,0,0,75129,0,1,1 +1774169347.834889,3.01,4,3992.50,53.96,1589.22,2112.61,0.00,0.000000,0.022863,8679183,2784096,4.028795,0.023568,81179194,54618568,0,0,75131,0,1,1 +1774169352.837301,1.25,4,3992.50,53.44,1609.67,2092.17,0.00,0.000000,0.317425,8679183,2784144,0.005548,0.011546,81179342,54618791,0,0,75134,0,1,1 +1774169357.834892,0.75,4,3992.50,53.58,1603.99,2097.85,0.00,3520133011342.913086,3520132960399.837402,238,2,0.004338,0.008394,81179456,54618955,0,0,75136,0,1,1 +1774169362.834892,0.70,4,3992.50,53.57,1604.60,2097.23,0.00,3518437186363.194824,3518437186365.202148,21,0,0.005035,0.010300,81179592,54619156,0,0,75139,0,1,1 +1774169367.834914,1.05,4,3992.50,53.76,1609.71,2104.85,0.00,0.048047,0.000000,70,0,0.005030,0.010298,81179728,54619357,0,0,75141,0,1,1 +1774169372.837555,0.75,4,3992.50,53.76,1609.61,2104.98,0.00,106051.754540,156937.688896,8679957,2784886,0.004352,0.008420,81179843,54619524,0,0,75144,0,1,1 +1774169377.837521,0.65,4,3992.50,53.76,1609.62,2104.97,0.00,3518460886713.474121,0.012402,8679183,2784433,0.005136,0.010446,81179987,54619734,0,0,75146,0,1,1 +1774169382.834890,0.75,4,3992.50,53.77,1609.41,2105.19,0.00,3520289681274.588379,3520289630330.722656,199,0,0.005025,0.010306,81180122,54619935,0,0,75149,0,1,1 +1774169387.834901,0.60,4,3992.50,53.77,1609.43,2105.17,0.00,3518429634407.708008,0.000000,21,0,0.004336,0.008390,81180236,54620099,0,0,75151,0,1,1 +1774169392.835645,0.60,4,3992.50,53.78,1608.90,2105.70,0.00,2.006537,0.000195,238,2,0.005009,0.010299,81180370,54620300,0,0,75154,0,1,1 +1774169397.837848,1.05,4,3992.50,53.78,1611.32,2105.64,0.00,3516887732155.300781,0.028113,237,494,0.005095,0.010326,81180510,54620503,0,0,75156,0,1,1 +1774169402.837894,0.70,4,3992.50,53.78,1611.45,2105.53,0.00,3518405377868.208008,3518405377869.718262,21,0,0.004336,0.008400,81180624,54620668,0,0,75159,0,1,1 +1774169407.838035,0.65,4,3992.50,53.78,1611.47,2105.52,0.00,0.000000,0.000000,21,0,0.004356,0.008397,81180740,54620833,0,0,75161,0,1,1 +1774169412.835170,0.80,4,3992.50,53.78,1611.48,2105.51,0.00,0.175100,0.000000,199,0,0.005025,0.010951,81180875,54621038,0,0,75164,0,1,1 +1774169417.837624,0.60,4,3992.50,53.78,1611.49,2105.50,0.00,3516711323017.162109,0.000000,21,0,0.004321,0.008373,81180988,54621201,0,0,75166,0,1,1 +1774169422.837444,0.70,4,3992.50,53.79,1610.98,2106.01,0.00,106111.646632,157026.772713,8679967,2785481,0.004416,0.010064,81181112,54621395,0,0,75169,0,1,1 +1774169427.833139,0.90,4,3992.50,53.83,1606.56,2107.67,0.00,3521468964304.235352,3521468913345.062500,238,2,0.005039,0.010299,81181248,54621595,0,0,75171,0,1,1 +1774169432.835807,0.70,4,3992.50,53.84,1605.99,2107.89,0.00,3516560924590.750488,3516560924592.581543,199,0,0.004333,0.008395,81181362,54621760,0,0,75174,0,1,1 +1774169437.838003,0.60,4,3992.50,53.84,1606.01,2107.87,0.00,106061.053454,156952.318846,8679967,2785619,0.005020,0.010286,81181497,54621960,0,0,75176,0,1,1 +1774169442.836388,12.87,4,3992.50,53.89,1602.40,2109.86,0.00,0.000000,17.677197,8679967,2785804,0.030706,54.104845,81183536,54627921,0,0,75179,0,1,1 +1774169447.837715,29.08,4,3992.50,53.85,1596.60,2108.39,0.00,3517503378689.548828,3517503327771.896973,70,0,0.026986,118.142324,81185322,54640206,0,0,75181,0,1,1 +1774169452.837691,8.60,4,3992.50,53.73,1601.48,2103.70,0.00,0.126954,0.000000,199,0,0.013955,32.849070,81186312,54643678,0,0,75184,0,1,1 +1774169457.834895,15.57,4,3992.50,53.44,1616.20,2092.17,0.00,106184.506187,157314.387775,8680092,2786998,40.086704,0.028370,81190647,54645179,0,0,75186,0,1,1 +1774169462.837632,1.30,4,3992.50,53.74,1608.95,2103.91,0.00,3516511887051.328125,3516511835976.666504,237,494,0.005815,0.009140,81190786,54645362,0,0,75189,0,1,1 +1774169467.833242,11.24,4,3992.50,53.40,1619.97,2090.55,0.00,3521528922521.733398,3521528922523.196777,70,0,0.030356,40.104642,81192846,54649864,0,0,75191,0,1,1 +1774169472.837296,0.95,4,3992.50,53.46,1617.57,2092.94,0.00,1.489125,0.028297,237,494,0.004385,0.011343,81192974,54650079,0,0,75194,0,1,1 +1774169477.834083,0.80,4,3992.50,53.46,1617.58,2092.94,0.00,3520699628770.922852,3520699628772.259277,199,0,0.003448,0.010175,81193080,54650265,0,0,75196,0,1,1 +1774169482.837383,0.65,4,3992.50,53.52,1615.02,2095.50,0.00,1.362480,0.028302,237,494,0.002745,0.007628,81193164,54650412,0,0,75199,0,1,1 +1774169487.837232,1.15,4,3992.50,53.45,1607.28,2092.57,0.00,106126.949301,157265.571386,8680092,2787593,0.003459,0.009556,81193271,54650596,0,0,75201,0,1,1 +1774169492.838021,0.75,4,3992.50,53.45,1607.20,2092.57,0.00,3517882586667.110840,3517882535537.586914,238,2,0.003504,0.009572,81193382,54650782,0,0,75204,0,1,1 +1774169497.834902,0.75,4,3992.50,53.45,1607.21,2092.56,0.00,3520633332777.867676,3520633332779.701172,199,0,0.002773,0.007659,81193468,54650930,0,0,75206,0,1,1 +1774169502.837936,0.65,4,3992.50,53.45,1606.98,2092.79,0.00,1.830725,0.000195,238,2,0.003431,0.009528,81193573,54651113,0,0,75209,0,1,1 +1774169507.834904,1.00,4,3992.50,53.45,1606.99,2092.79,0.00,3520572016861.524902,3520572016863.357910,199,0,0.003561,0.009685,81193688,54651305,0,0,75211,0,1,1 +1774169512.835398,0.70,4,3992.50,53.45,1606.99,2092.79,0.00,3518089791887.132324,0.000000,21,0,0.002803,0.007689,81193776,54651456,0,0,75214,0,1,1 +1774169517.834909,1.00,4,3992.50,53.58,1601.80,2097.59,0.00,2.007032,0.000195,238,2,0.003558,0.009626,81193889,54651646,0,0,75216,0,1,1 +1774169522.836089,0.70,4,3992.50,53.57,1601.35,2097.58,0.00,3517607692263.375488,3517607692265.382324,21,0,0.003432,0.009532,81193994,54651829,0,0,75219,0,1,1 +1774169527.837575,1.45,4,3992.50,53.57,1601.36,2097.58,0.00,0.000000,0.000000,21,0,0.002733,0.007621,81194077,54651975,0,0,75221,0,1,1 +1774169532.837625,28.51,4,3992.50,59.40,1379.77,2325.58,0.00,0.048046,0.000000,70,0,56.284648,0.034527,81200134,54654034,0,0,75224,0,1,1 +1774169537.833204,31.21,4,3992.50,59.27,1386.16,2320.45,0.00,106215.056209,157406.274198,8679318,2787376,118.668839,0.036056,81212182,54656504,0,0,75226,0,1,1 +1774169542.837865,28.11,4,3992.50,59.33,1383.77,2322.90,0.00,3515160453678.464355,3515160402580.187012,21,0,118.855987,0.025448,81224526,54658167,0,0,75229,0,1,1 +1774169547.835383,28.90,4,3992.50,59.88,1362.96,2344.49,0.00,1.539143,0.028334,237,494,119.423800,0.035373,81236702,54660807,0,0,75231,0,1,1 +1774169552.837405,28.12,4,3992.50,59.71,1369.66,2337.60,0.00,3517015432180.900391,3517015432182.410156,21,0,118.918320,0.024509,81249012,54662450,0,0,75234,0,1,1 +1774169557.836822,28.12,4,3992.50,59.36,1383.45,2324.04,0.00,1.538558,0.028324,237,494,119.379835,0.045980,81261225,54665748,0,0,75236,0,1,1 +1774169562.836617,28.44,4,3992.50,59.71,1369.57,2337.96,0.00,3518580728270.987305,3518580728272.497559,21,0,119.056972,0.040211,81273381,54668653,0,0,75239,0,1,1 +1774169567.833836,28.85,4,3992.50,59.56,1375.67,2331.90,0.00,1.539235,0.028336,237,494,119.342774,0.042044,81285567,54671853,0,0,75241,0,1,1 +1774169572.834916,21.35,4,3992.50,59.39,1382.21,2325.41,0.00,0.468356,3517677830181.581543,238,2,119.338945,0.042670,81297702,54674800,0,0,75244,0,1,1 +1774169577.837158,3.56,4,3992.50,54.19,1596.31,2121.49,0.00,3516860066653.954102,3516860066655.959961,21,0,16.221237,0.014844,81299489,54675416,0,0,75246,0,1,1 +1774169582.833192,13.91,4,3992.50,53.86,1609.03,2108.68,0.00,106205.560235,157392.588475,8679329,2787884,10.090352,0.060693,81303095,54678135,0,0,75249,0,1,1 +1774169587.837499,12.18,4,3992.50,54.02,1602.74,2114.93,0.00,3515409242816.621582,3515409191712.200684,238,2,20.103499,0.085920,81309666,54682905,0,0,75251,0,1,1 +1774169592.834870,9.00,4,3992.50,53.69,1615.59,2102.07,0.00,3520288084828.705566,3520288084830.713379,21,0,10.065375,0.048822,81312855,54685312,0,0,75254,0,1,1 +1774169597.835503,1.05,4,3992.50,53.40,1627.05,2090.62,0.00,106112.006945,157248.559692,8680103,2789323,0.006090,0.011051,81312995,54685512,0,0,75256,0,1,1 +1774169602.836255,0.70,4,3992.50,53.23,1633.43,2084.24,0.00,3517908151375.787109,3517908151379.879395,8679329,2788841,0.004918,0.009665,81313124,54685701,0,0,75259,0,1,1 +1774169607.837224,18.55,4,3992.50,53.69,1612.32,2102.09,0.00,3517755438446.508301,3517755387307.790527,237,494,0.031842,75.106572,81315245,54694028,0,0,75261,0,1,1 +1774169612.833229,30.04,4,3992.50,53.54,1606.11,2096.23,0.00,106208.750971,157558.767384,8680103,2790720,0.043528,122.483607,81318422,54707060,0,0,75264,0,1,1 +1774169617.837944,3.51,4,3992.50,53.16,1620.95,2081.47,0.00,3515122826316.472656,3515122775057.321289,21,0,0.008400,7.612855,81318838,54708041,0,0,75266,0,1,1 +1774169622.834897,14.50,4,3992.50,58.03,1433.67,2272.13,0.00,0.000000,0.000000,21,0,40.088888,0.031247,81323202,54709859,0,0,75269,0,1,1 +1774169627.837506,1.35,4,3992.50,53.87,1596.60,2109.20,0.00,106087.546077,157392.202455,8680217,2791180,0.009729,0.015483,81323444,54710164,0,0,75271,0,1,1 +1774169632.833209,1.46,4,3992.50,53.33,1617.85,2087.95,0.00,3521463818994.921387,0.007526,8679443,2790727,0.005949,0.010967,81323581,54710367,0,0,75274,0,1,1 +1774169637.837443,1.30,4,3992.50,52.82,1620.83,2068.06,0.00,3515459899831.471191,3515459848539.360840,21,0,0.004332,0.008395,81323695,54710532,0,0,75276,0,1,1 +1774169642.833201,0.70,4,3992.50,52.76,1623.05,2065.86,0.00,2.008540,0.000195,238,2,0.005014,0.010309,81323829,54710733,0,0,75279,0,1,1 +1774169647.834420,1.00,4,3992.50,52.78,1622.62,2066.29,0.00,0.000000,0.000000,238,2,0.004792,0.009629,81323957,54710919,0,0,75281,0,1,1 +1774169652.834921,0.70,4,3992.50,52.78,1622.65,2066.27,0.00,3518084352056.898438,3518084352058.856934,70,0,0.003878,0.007188,81324057,54711064,0,0,75284,0,1,1 +1774169657.834873,0.60,4,3992.50,52.78,1622.44,2066.47,0.00,0.126954,0.000000,199,0,0.005030,0.010273,81324193,54711263,0,0,75286,0,1,1 +1774169662.837923,0.65,4,3992.50,52.78,1622.46,2066.45,0.00,3516292180635.805664,0.000000,70,0,0.004395,0.008470,81324311,54711434,0,0,75289,0,1,1 +1774169667.833199,0.85,4,3992.50,52.89,1614.66,2070.82,0.00,3521764495908.773926,0.000000,21,0,0.005027,0.010300,81324446,54711634,0,0,75291,0,1,1 +1774169672.833225,0.70,4,3992.50,52.84,1616.77,2068.71,0.00,106142.360844,157474.026404,8680217,2791604,0.005141,0.010997,81324589,54711843,0,0,75294,0,1,1 +1774169677.833236,0.60,4,3992.50,52.84,1616.55,2068.95,0.00,3518429140417.385742,0.008496,8679443,2791150,0.004336,0.008402,81324703,54712008,0,0,75296,0,1,1 +1774169682.833211,0.70,4,3992.50,52.84,1616.77,2068.71,0.00,4.109299,0.060938,8680217,2791684,0.005022,0.010300,81324838,54712209,0,0,75299,0,1,1 +1774169687.837379,2.11,4,3992.50,53.25,1600.40,2084.80,0.00,3515506191479.589844,3515506140190.348145,21,0,0.013923,6.418160,81325565,54713342,0,0,75301,0,1,1 +1774169692.837290,9.30,4,3992.50,53.09,1603.96,2078.75,0.00,1.538406,0.028321,237,494,0.017741,33.658633,81326708,54716990,0,0,75304,0,1,1 +1774169697.834432,1.05,4,3992.50,53.22,1599.13,2083.52,0.00,0.468725,3520449204042.739258,238,2,0.003443,0.009538,81326814,54717173,0,0,75306,0,1,1 +1774169702.836413,0.70,4,3992.50,53.22,1598.91,2083.75,0.00,3517043948101.093262,0.028114,237,494,0.003432,0.009518,81326919,54717355,0,0,75309,0,1,1 +1774169707.837991,0.70,4,3992.50,53.23,1598.68,2083.98,0.00,3517327225528.651855,3517327225530.113281,70,0,0.002746,0.007633,81327003,54717502,0,0,75311,0,1,1 +1774169712.837903,0.75,4,3992.50,53.08,1604.54,2078.11,0.00,0.000000,0.000000,70,0,0.003433,0.009534,81327108,54717685,0,0,75314,0,1,1 +1774169717.838081,0.75,4,3992.50,53.08,1604.33,2078.33,0.00,1.490279,0.028319,237,494,0.003231,0.008948,81327208,54717859,0,0,75316,0,1,1 +1774169722.835181,0.85,4,3992.50,53.07,1605.01,2077.64,0.00,3520478965577.395508,3520478965578.731445,199,0,0.002976,0.008245,81327299,54718016,0,0,75319,0,1,1 +1774169727.837429,0.75,4,3992.50,53.06,1597.82,2077.61,0.00,106095.039004,157444.480158,8680217,2792161,0.002117,0.005790,81327367,54718131,0,0,75321,0,1,1 +1774169732.837287,0.55,4,3992.50,52.94,1602.79,2072.67,0.00,0.000000,0.052345,8680217,2792216,0.003521,0.009628,81327479,54718320,0,0,75324,0,1,1 +1774169737.833223,0.70,4,3992.50,52.97,1601.56,2073.89,0.00,3521299571388.965820,3521299519973.254883,237,494,0.002904,0.008239,81327573,54718479,0,0,75326,0,1,1 +1774169742.835944,0.75,4,3992.50,52.91,1603.71,2071.74,0.00,106083.635523,157429.611417,8680217,2792223,0.003431,0.009690,81327678,54718663,0,0,75329,0,1,1 +1774169747.834925,0.85,4,3992.50,52.95,1602.42,2073.03,0.00,3519154753411.860352,3519154702028.794434,199,0,0.004543,0.010142,81327805,54718859,0,0,75331,0,1,1 +1774169752.837385,0.75,4,3992.50,52.95,1602.43,2073.03,0.00,3516707063561.990234,0.000000,70,0,0.005148,0.009881,81327917,54719024,0,0,75334,0,1,1 +1774169757.833464,22.82,4,3992.50,59.38,1355.65,2324.85,0.00,1.960326,0.000195,238,2,35.485762,0.030055,81331910,54720640,0,0,75336,0,1,1 +1774169762.837854,34.39,4,3992.50,59.22,1364.68,2318.62,0.00,106047.786216,157377.309634,8680217,2792388,118.671295,0.046045,81344348,54723706,0,0,75339,0,1,1 +1774169767.836378,29.39,4,3992.50,59.36,1359.05,2324.19,0.00,3519476329338.060547,3519476329342.146973,8679443,2791907,119.635130,0.112662,81357263,54732243,0,0,75341,0,1,1 +1774169772.833760,28.98,4,3992.50,59.20,1365.57,2317.64,0.00,3520279916478.480469,3520279865072.889648,238,2,118.858054,0.111223,81370049,54740818,0,0,75344,0,1,1 +1774169777.833426,29.82,4,3992.50,59.20,1365.57,2317.76,0.00,3518672254076.737305,3518672254078.569336,199,0,119.605458,0.109910,81382902,54749262,0,0,75346,0,1,1 +1774169782.835252,29.77,4,3992.50,59.12,1368.55,2314.64,0.00,106103.991451,157458.130252,8680217,2792461,119.381784,0.115717,81395822,54758016,0,0,75349,0,1,1 +1774169787.834878,30.29,4,3992.50,59.23,1364.17,2319.13,0.00,3518700126982.306152,3518700075605.700195,70,0,118.981037,0.113022,81408683,54766689,0,0,75351,0,1,1 +1774169792.837484,29.77,4,3992.50,59.28,1365.92,2320.94,0.00,1.957769,0.000195,238,2,119.936966,0.111869,81421625,54775341,0,0,75354,0,1,1 +1774169797.835559,26.98,4,3992.50,59.18,1370.07,2316.88,0.00,0.000000,0.000000,238,2,118.842277,0.111482,81434467,54783954,0,0,75356,0,1,1 +1774169802.836551,1.36,4,3992.50,54.21,1564.61,2122.33,0.00,106115.831903,157484.531616,8679452,2792033,36.260975,0.045528,81438548,54786965,0,0,75359,0,1,1 +1774169807.833216,11.87,4,3992.50,54.62,1548.48,2138.41,0.00,3520785563186.481934,3520785511773.295410,238,2,10.076487,0.054104,81441925,54789500,0,0,75361,0,1,1 +1774169812.834881,17.31,4,3992.50,54.38,1557.61,2129.25,0.00,3517266263812.140625,0.028116,237,494,24.134986,0.104734,81449667,54795148,0,0,75364,0,1,1 +1774169817.834898,6.68,4,3992.50,53.92,1571.55,2111.27,0.00,3518425546708.392578,3518425546709.854980,70,0,6.049620,0.037032,81451870,54796897,0,0,75366,0,1,1 +1774169822.835696,1.25,4,3992.50,53.50,1588.15,2094.63,0.00,106126.017803,157491.368649,8680226,2793595,0.005039,0.009795,81452000,54797086,0,0,75369,0,1,1 +1774169827.837636,0.75,4,3992.50,53.43,1590.98,2091.80,0.00,3517072071499.556641,3517072020145.938477,70,0,0.005020,0.010287,81452135,54797286,0,0,75371,0,1,1 +1774169832.834908,0.65,4,3992.50,53.40,1592.10,2090.68,0.00,1.491146,0.028336,237,494,0.005033,0.010314,81452271,54797488,0,0,75374,0,1,1 +1774169837.837885,0.65,4,3992.50,53.40,1592.11,2090.67,0.00,3516343517470.251953,3516343517471.761230,21,0,0.004333,0.008385,81452385,54797652,0,0,75376,0,1,1 +1774169842.837139,0.70,4,3992.50,53.52,1587.34,2095.45,0.00,0.175026,0.000000,199,0,0.005023,0.010302,81452520,54797853,0,0,75379,0,1,1 +1774169847.837516,1.00,4,3992.50,53.52,1595.65,2095.41,0.00,3518172252516.198242,0.000000,70,0,0.005148,0.010445,81452665,54798063,0,0,75381,0,1,1 +1774169852.835979,0.75,4,3992.50,53.51,1596.17,2094.90,0.00,0.000000,0.000000,70,0,0.004350,0.008402,81452780,54798228,0,0,75384,0,1,1 +1774169857.834767,0.75,4,3992.50,53.51,1596.19,2094.88,0.00,3519290156714.978027,0.000000,21,0,0.005024,0.010293,81452915,54798428,0,0,75386,0,1,1 +1774169862.833241,0.65,4,3992.50,53.31,1603.85,2087.22,0.00,0.000000,0.000000,21,0,0.005024,0.010304,81453050,54798629,0,0,75389,0,1,1 +1774169867.833186,0.65,4,3992.50,53.32,1603.39,2087.67,0.00,1.538396,0.028321,237,494,0.004040,0.007092,81453156,54798772,0,0,75391,0,1,1 +1774169872.835979,0.55,4,3992.50,53.17,1609.32,2081.75,0.00,3516473034341.002930,3516473034342.512207,21,0,0.005319,0.010849,81453297,54798984,0,0,75394,0,1,1 +1774169877.837908,1.00,4,3992.50,53.39,1600.61,2090.52,0.00,0.174933,0.000000,199,0,0.004347,0.009018,81453412,54799151,0,0,75396,0,1,1 +1774169882.837678,0.75,4,3992.50,53.39,1600.46,2090.50,0.00,3518598740714.013672,0.000000,21,0,0.005023,0.010288,81453547,54799351,0,0,75399,0,1,1 +1774169887.833213,0.65,4,3992.50,53.39,1600.47,2090.48,0.00,0.175156,0.000000,199,0,0.005014,0.010300,81453681,54799551,0,0,75401,0,1,1 +1774169892.837945,0.65,4,3992.50,53.39,1600.48,2090.47,0.00,3515110877035.688477,0.000000,70,0,0.004332,0.008392,81453795,54799716,0,0,75404,0,1,1 +1774169897.838379,9.89,4,3992.50,53.42,1598.38,2091.65,0.00,0.000000,0.000000,70,0,0.028889,39.868974,81455572,54804368,0,0,75406,0,1,1 +1774169902.837226,29.66,4,3992.50,53.16,1600.47,2081.25,0.00,106167.433309,157680.567445,8680226,2795165,0.029600,118.602960,81457607,54816936,0,0,75409,0,1,1 +1774169907.837420,12.50,4,3992.50,53.26,1595.60,2085.35,0.00,3518300761549.132812,3518300710049.870605,70,0,0.010358,46.668532,81458220,54821886,0,0,75411,0,1,1 +1774169912.838385,6.92,4,3992.50,57.73,1424.66,2260.21,0.00,1.958411,0.000195,238,2,0.809175,0.011078,81458543,54822186,0,0,75414,0,1,1 +1774169917.833253,8.99,4,3992.50,53.07,1607.16,2077.73,0.00,106267.546070,157884.939881,8680355,2795819,39.302063,0.023396,81462776,54823450,0,0,75416,0,1,1 +1774169922.837457,11.50,4,3992.50,53.20,1599.77,2082.78,0.00,0.000000,28.076492,8680355,2796117,0.020931,40.036753,81464080,54827992,0,0,75419,0,1,1 +1774169927.835100,1.15,4,3992.50,53.01,1607.20,2075.36,0.00,0.000000,6.117239,8680355,2796257,0.004042,0.010907,81464202,54828201,0,0,75421,0,1,1 +1774169932.834902,0.70,4,3992.50,53.01,1607.20,2075.35,0.00,3518576128702.714355,3518576077104.053223,21,0,0.004363,0.010200,81464310,54828387,0,0,75424,0,1,1 +1774169937.837152,1.20,4,3992.50,53.26,1597.69,2085.12,0.00,2.005933,0.000195,238,2,0.003444,0.009495,81464416,54828567,0,0,75426,0,1,1 +1774169942.833215,0.80,4,3992.50,53.11,1603.11,2079.43,0.00,3521210228134.776367,3521210228136.609863,199,0,0.002774,0.008340,81464502,54828722,0,0,75429,0,1,1 +1774169947.833207,0.80,4,3992.50,53.13,1602.38,2080.16,0.00,106160.471274,157757.503355,8680355,2796311,0.003433,0.009524,81464607,54828904,0,0,75431,0,1,1 +1774169952.835428,0.70,4,3992.50,53.13,1602.39,2080.16,0.00,3516874908295.250488,3516874856721.333984,70,0,0.003216,0.008871,81464706,54829073,0,0,75434,0,1,1 +1774169957.833225,0.70,4,3992.50,53.14,1602.16,2080.38,0.00,3519988420612.270996,0.000000,21,0,0.002977,0.008286,81464797,54829233,0,0,75436,0,1,1 +1774169962.835868,0.65,4,3992.50,53.14,1602.16,2080.38,0.00,2.005776,0.000195,238,2,0.003545,0.009684,81464911,54829426,0,0,75439,0,1,1 +1774169967.837253,0.95,4,3992.50,53.13,1595.10,2080.35,0.00,3517462953951.629883,3517462953953.587891,70,0,0.003497,0.009548,81465021,54829610,0,0,75441,0,1,1 +1774169972.835563,0.65,4,3992.50,53.07,1597.71,2077.76,0.00,1.959451,0.000195,238,2,0.002872,0.007774,81465113,54829768,0,0,75444,0,1,1 +1774169977.835301,0.75,4,3992.50,52.92,1603.66,2071.81,0.00,3518621766222.626465,3518621766224.633301,21,0,0.003433,0.009525,81465218,54829950,0,0,75446,0,1,1 +1774169982.838006,0.85,4,3992.50,52.92,1603.66,2071.80,0.00,1.537547,0.028305,237,494,0.003444,0.009516,81465324,54830132,0,0,75449,0,1,1 +1774169987.837399,23.83,4,3992.50,59.03,1370.14,2311.03,0.00,0.468514,3518864593989.980957,238,2,43.474280,0.030646,81470127,54831892,0,0,75451,0,1,1 +1774169992.838365,34.98,4,3992.50,59.08,1370.00,2313.14,0.00,3517757483859.459473,3517757483861.417480,70,0,118.543879,0.030040,81482345,54833959,0,0,75454,0,1,1 +1774169997.837547,30.41,4,3992.50,59.11,1368.72,2314.39,0.00,3519012770870.127441,0.000000,21,0,118.991565,0.036148,81494715,54836383,0,0,75456,0,1,1 +1774170002.837664,31.40,4,3992.50,59.15,1367.58,2316.02,0.00,0.048046,0.000000,70,0,119.568005,0.039283,81507018,54839288,0,0,75459,0,1,1 +1774170007.835475,30.86,4,3992.50,59.33,1360.65,2322.95,0.00,0.127009,0.000000,199,0,119.033204,0.070491,81519435,54844541,0,0,75461,0,1,1 +1774170012.836593,31.86,4,3992.50,59.12,1368.78,2314.82,0.00,0.000000,0.000000,199,0,119.361956,0.083062,81532076,54850610,0,0,75464,0,1,1 +1774170017.836663,30.75,4,3992.50,59.13,1368.40,2315.21,0.00,1.831810,0.000195,238,2,119.589603,0.095748,81544828,54857854,0,0,75466,0,1,1 +1774170022.833580,30.98,4,3992.50,59.07,1370.82,2312.79,0.00,3520608308176.042480,0.028142,237,494,118.864682,0.095311,81557515,54865158,0,0,75469,0,1,1 +1774170027.837386,26.37,4,3992.50,59.06,1371.20,2312.49,0.00,0.468101,3515760505716.707520,238,2,119.510209,0.116521,81570551,54873960,0,0,75471,0,1,1 +1774170032.834904,1.96,4,3992.50,55.21,1522.20,2161.48,0.00,3520184643322.961914,3520184643324.921875,70,0,28.668185,0.036933,81573802,54876297,0,0,75474,0,1,1 +1774170037.836421,6.22,4,3992.50,54.04,1568.01,2115.65,0.00,3517370483977.416504,0.000000,21,0,0.022828,0.015835,81574212,54876628,0,0,75476,0,1,1 +1774170042.833460,25.93,4,3992.50,53.08,1605.35,2078.22,0.00,0.175104,0.000000,199,0,34.217207,0.147813,81584743,54884541,0,0,75479,0,1,1 +1774170047.837613,4.42,4,3992.50,52.93,1611.23,2072.32,0.00,106072.376709,157633.831381,8680381,2798049,6.035164,0.032493,81586819,54886143,0,0,75481,0,1,1 +1774170052.836397,1.30,4,3992.50,52.93,1611.28,2072.28,0.00,0.000000,0.009475,8680381,2798075,0.006817,0.012068,81586994,54886378,0,0,75484,0,1,1 +1774170057.834896,1.25,4,3992.50,53.12,1612.49,2079.77,0.00,3519493348431.375000,3519493296810.263672,237,494,0.005020,0.009339,81587112,54886546,0,0,75486,0,1,1 +1774170062.834909,1.10,4,3992.50,53.12,1608.27,2079.87,0.00,3518428455031.665527,3518428455033.175781,21,0,0.005030,0.010308,81587248,54886748,0,0,75489,0,1,1 +1774170067.837609,4.76,4,3992.50,53.26,1602.62,2085.43,0.00,2.005753,0.000195,238,2,0.019294,15.827311,81588346,54888787,0,0,75491,0,1,1 +1774170072.834897,31.17,4,3992.50,53.53,1584.93,2095.75,0.00,106216.236842,157951.807104,8680381,2799225,0.052186,118.235999,81592218,54901138,0,0,75494,0,1,1 +1774170077.833204,19.44,4,3992.50,53.84,1568.85,2108.09,0.00,3519629227892.766602,3519629176168.229980,237,494,0.031642,71.124394,81594609,54908458,0,0,75496,0,1,1 +1774170082.833266,2.01,4,3992.50,53.37,1587.40,2089.56,0.00,0.468451,3518393416847.669434,238,2,0.004953,0.011019,81594745,54908669,0,0,75499,0,1,1 +1774170087.834893,13.51,4,3992.50,54.39,1552.64,2129.44,0.00,0.000000,0.000000,238,2,40.053885,0.024957,81599258,54910046,0,0,75501,0,1,1 +1774170092.834921,1.25,4,3992.50,53.87,1564.40,2109.07,0.00,3518417526853.547852,3518417526855.555176,21,0,0.005968,0.009202,81599404,54910233,0,0,75504,0,1,1 +1774170097.834899,1.30,4,3992.50,53.35,1584.70,2088.77,0.00,2.006845,0.000195,238,2,0.005062,0.010655,81599535,54910423,0,0,75506,0,1,1 +1774170102.834909,0.95,4,3992.50,53.28,1587.54,2085.93,0.00,0.000000,0.000000,238,2,0.005022,0.010300,81599670,54910624,0,0,75509,0,1,1 +1774170107.834905,1.15,4,3992.50,53.28,1587.63,2085.84,0.00,3518440538031.168457,0.028125,237,494,0.005030,0.010331,81599806,54910826,0,0,75511,0,1,1 +1774170112.837794,1.00,4,3992.50,53.26,1588.24,2085.23,0.00,3516405127588.275391,3516405127589.609863,199,0,0.004371,0.008426,81599923,54910993,0,0,75514,0,1,1 +1774170117.833302,1.35,4,3992.50,53.41,1582.97,2091.06,0.00,3521601695515.403320,0.000000,21,0,0.005027,0.010300,81600058,54911193,0,0,75516,0,1,1 +1774170122.837386,1.05,4,3992.50,53.19,1591.54,2082.64,0.00,0.000000,0.000000,21,0,0.005018,0.010292,81600193,54911394,0,0,75519,0,1,1 +1774170127.837992,0.95,4,3992.50,53.22,1590.32,2083.85,0.00,106165.259266,157952.235582,8680510,2800449,0.004416,0.008464,81600312,54911564,0,0,75521,0,1,1 +1774170132.835791,0.75,4,3992.50,53.23,1590.09,2084.08,0.00,3519986489526.197266,3519986437710.140625,21,0,0.004338,0.008403,81600426,54911729,0,0,75524,0,1,1 +1774170137.833214,0.90,4,3992.50,53.23,1590.11,2084.07,0.00,0.048072,0.000000,70,0,0.005040,0.010940,81600562,54911933,0,0,75526,0,1,1 +1774170142.836410,0.95,4,3992.50,53.23,1590.12,2084.04,0.00,0.126872,0.000000,199,0,0.005094,0.010309,81600702,54912135,0,0,75529,0,1,1 +1774170147.836838,10.71,4,3992.50,53.73,1578.27,2103.52,0.00,106168.851127,157992.081185,8680510,2800826,0.026234,39.152481,81602406,54916518,0,0,75531,0,1,1 +1774170152.837805,2.06,4,3992.50,53.39,1591.11,2090.47,0.00,3517757334092.046875,3517757282274.567383,21,0,0.006072,0.925198,81602617,54916890,0,0,75534,0,1,1 +1774170157.837923,1.00,4,3992.50,53.39,1591.12,2090.46,0.00,106175.600112,158001.952159,8680510,2800934,0.002755,0.007631,81602702,54917037,0,0,75536,0,1,1 +1774170162.833561,0.85,4,3992.50,53.30,1594.79,2086.79,0.00,3521509526801.370605,3521509474926.523438,238,2,0.003449,0.009542,81602808,54917220,0,0,75539,0,1,1 +1774170167.836006,0.95,4,3992.50,53.11,1602.21,2079.37,0.00,0.000000,0.000000,238,2,0.003731,0.010074,81602919,54917413,0,0,75541,0,1,1 +1774170172.837980,0.80,4,3992.50,53.11,1602.22,2079.36,0.00,106130.101322,157943.339521,8679736,2800451,0.003045,0.008185,81603009,54917571,0,0,75544,0,1,1 +1774170177.835714,1.35,4,3992.50,53.25,1596.80,2084.78,0.00,3520032225730.474121,3520032173873.280273,238,2,0.003435,0.009528,81603114,54917753,0,0,75546,0,1,1 +1774170182.837892,0.90,4,3992.50,53.25,1596.86,2084.68,0.00,3516905038955.588379,3516905038957.594727,21,0,0.003469,0.009561,81603222,54917938,0,0,75549,0,1,1 +1774170187.838095,0.95,4,3992.50,53.21,1598.37,2083.18,0.00,0.000000,0.000000,21,0,0.002797,0.007685,81603310,54918088,0,0,75551,0,1,1 +1774170192.838069,0.90,4,3992.50,53.19,1598.98,2082.56,0.00,2.006846,0.000195,238,2,0.003509,0.009627,81603421,54918277,0,0,75554,0,1,1 +1774170197.837517,0.90,4,3992.50,53.20,1598.77,2082.77,0.00,106187.853292,158029.304826,8680510,2801022,0.002197,0.005824,81603493,54918395,0,0,75556,0,1,1 +1774170202.834911,0.80,4,3992.50,53.00,1606.42,2075.13,0.00,3520271454909.518066,3520271403046.773926,238,2,0.002763,0.007637,81603578,54918542,0,0,75559,0,1,1 +1774170207.834897,1.05,4,3992.50,53.32,1597.00,2087.64,0.00,3518447075310.481445,3518447075312.488770,21,0,0.002742,0.008275,81603662,54918693,0,0,75561,0,1,1 +1774170212.836879,28.40,4,3992.50,59.24,1371.00,2319.42,0.00,0.000000,0.000000,21,0,47.295449,0.037380,81608965,54920813,0,0,75564,0,1,1 +1774170217.836901,35.45,4,3992.50,59.58,1359.42,2332.72,0.00,2.006827,0.000195,238,2,124.936119,0.054975,81621928,54924704,0,0,75566,0,1,1 +1774170222.835187,31.13,4,3992.50,59.47,1363.69,2328.43,0.00,0.000000,0.000000,238,2,122.885133,0.054524,81635245,54928678,0,0,75569,0,1,1 +1774170227.834049,31.38,4,3992.50,59.19,1374.80,2317.35,0.00,3519237871393.161133,3519237871395.168945,21,0,121.099971,0.056443,81648282,54932900,0,0,75571,0,1,1 +1774170232.837628,30.95,4,3992.50,59.63,1357.60,2334.53,0.00,2.005401,0.000195,238,2,120.663822,0.068879,81661891,54937920,0,0,75574,0,1,1 +1774170237.838209,31.08,4,3992.50,59.84,1348.07,2342.80,0.00,3518028480814.263672,3518028480816.270508,21,0,120.128208,0.073687,81675774,54943283,0,0,75576,0,1,1 +1774170242.834883,30.99,4,3992.50,59.45,1363.41,2327.54,0.00,0.175116,0.000000,199,0,119.673522,0.072906,81689444,54948905,0,0,75579,0,1,1 +1774170247.836478,31.17,4,3992.50,59.62,1356.53,2334.38,0.00,106144.088622,157961.942432,8680510,2801388,119.690651,0.072598,81702962,54954372,0,0,75581,0,1,1 +1774170252.833199,21.73,4,3992.50,59.27,1370.34,2320.66,0.00,3520745375196.265625,3520745323328.053711,21,0,119.981474,0.074319,81716315,54959998,0,0,75584,0,1,1 +1774170257.837388,8.43,4,3992.50,54.20,1568.77,2122.21,0.00,0.174854,0.000000,199,0,14.279559,0.040905,81719131,54961778,0,0,75586,0,1,1 +1774170262.833228,21.99,4,3992.50,54.98,1538.23,2152.70,0.00,1.364514,0.028344,237,494,32.210095,0.131705,81729100,54969128,0,0,75589,0,1,1 +1774170267.837719,4.81,4,3992.50,54.67,1551.31,2140.56,0.00,106081.453278,157871.401370,8680529,2802473,4.034631,0.027951,81730619,54970312,0,0,75591,0,1,1 +1774170272.834547,14.45,4,3992.50,54.07,1573.18,2117.08,0.00,3520670896567.167969,3520670844699.258789,70,0,0.035253,54.528288,81732934,54976541,0,0,75594,0,1,1 +1774170277.834914,31.25,4,3992.50,54.17,1562.59,2120.76,0.00,106166.298636,158142.367337,8679755,2803297,0.051609,118.938525,81736765,54989232,0,0,75596,0,1,1 +1774170282.833313,9.44,4,3992.50,53.84,1575.80,2107.80,0.00,0.005471,64.860619,8679759,2803644,0.017761,31.687227,81738015,54992653,0,0,75599,0,1,1 +1774170287.834872,14.41,4,3992.50,53.28,1601.86,2085.88,0.00,3517340149836.507812,3517340097808.055664,21,0,40.055760,0.030084,81742561,54994294,0,0,75601,0,1,1 +1774170292.838039,0.95,4,3992.50,53.21,1604.45,2083.29,0.00,0.000000,0.000000,21,0,0.006810,0.009554,81742720,54994489,0,0,75604,0,1,1 +1774170297.838100,1.31,4,3992.50,53.53,1591.76,2095.98,0.00,2.006811,0.000195,238,2,0.005052,0.010623,81742850,54994677,0,0,75606,0,1,1 +1774170302.838029,0.80,4,3992.50,53.43,1595.97,2091.77,0.00,106195.249418,158221.438276,8680654,2804417,0.005123,0.010425,81742993,54994886,0,0,75609,0,1,1 +1774170307.837623,0.70,4,3992.50,53.43,1595.99,2091.75,0.00,3518722959518.393555,3518722907490.549805,199,0,0.005018,0.010299,81743128,54995087,0,0,75611,0,1,1 +1774170312.834907,1.81,4,3992.50,53.29,1601.39,2086.36,0.00,106249.170481,158305.243274,8679880,2804038,0.004140,0.008206,81743238,54995248,0,0,75614,0,1,1 +1774170317.834922,0.65,4,3992.50,53.29,1601.39,2086.35,0.00,0.000000,0.059472,8679880,2804080,0.004476,0.010136,81743366,54995445,0,0,75616,0,1,1 +1774170322.837288,0.70,4,3992.50,53.28,1601.70,2086.05,0.00,3516772437754.846191,3516772385751.730957,70,0,0.005020,0.010296,81743501,54995646,0,0,75619,0,1,1 +1774170327.838018,1.00,4,3992.50,53.04,1604.48,2076.63,0.00,1.958503,0.000195,238,2,0.004348,0.008388,81743616,54995810,0,0,75621,0,1,1 +1774170332.835178,0.70,4,3992.50,53.06,1603.52,2077.59,0.00,3520437138241.119629,0.028141,237,494,0.005131,0.010704,81743758,54996019,0,0,75624,0,1,1 +1774170337.837744,0.75,4,3992.50,53.06,1603.53,2077.58,0.00,3516632164494.539062,3516632164496.048828,21,0,0.004336,0.008707,81743872,54996185,0,0,75626,0,1,1 +1774170342.837390,0.65,4,3992.50,53.06,1603.55,2077.57,0.00,2.006978,0.000195,238,2,0.005098,0.010341,81744012,54996389,0,0,75629,0,1,1 +1774170347.837438,0.80,4,3992.50,53.20,1598.28,2082.84,0.00,106192.718767,158218.158257,8680654,2804881,0.006132,0.010898,81744169,54996602,0,0,75631,0,1,1 +1774170352.836301,0.70,4,3992.50,53.20,1598.29,2082.82,0.00,3519237715894.892090,3519237663858.947266,199,0,0.005401,0.008803,81744305,54996780,0,0,75634,0,1,1 +1774170357.837898,1.15,4,3992.50,53.20,1598.00,2082.77,0.00,3517313197987.495117,0.000000,70,0,0.005698,0.011217,81744444,54996983,0,0,75636,0,1,1 +1774170362.837514,0.75,4,3992.50,53.04,1604.16,2076.51,0.00,106199.761606,158231.974639,8679880,2804521,0.005023,0.010289,81744579,54997183,0,0,75639,0,1,1 +1774170367.837968,11.21,4,3992.50,54.01,1564.12,2114.53,0.00,4.108904,34.081086,8680654,2805251,0.027599,40.064503,81746423,55001709,0,0,75641,0,1,1 +1774170372.838112,1.05,4,3992.50,53.50,1584.07,2094.75,0.00,0.000000,0.090622,8680654,2805316,0.004016,0.010441,81746543,55001910,0,0,75644,0,1,1 +1774170377.837693,0.85,4,3992.50,53.14,1598.31,2080.51,0.00,3518732341220.798340,3518732289158.204102,21,0,0.002747,0.007624,81746627,55002056,0,0,75646,0,1,1 +1774170382.833222,0.60,4,3992.50,53.06,1601.43,2077.39,0.00,106290.770469,158395.625554,8680654,2805356,0.003436,0.009543,81746732,55002239,0,0,75649,0,1,1 +1774170387.837618,1.15,4,3992.50,53.49,1584.48,2094.29,0.00,0.000000,0.056201,8680654,2805382,0.003430,0.009516,81746837,55002421,0,0,75651,0,1,1 +1774170392.833255,0.70,4,3992.50,53.47,1585.23,2093.58,0.00,3521510046307.581055,3521509994201.776855,238,2,0.002774,0.007671,81746923,55002570,0,0,75654,0,1,1 +1774170397.837818,0.70,4,3992.50,53.48,1584.78,2094.04,0.00,3515228912884.058594,3515228912885.888672,199,0,0.003455,0.009547,81747030,55002754,0,0,75656,0,1,1 +1774170402.837330,0.70,4,3992.50,53.28,1592.80,2086.01,0.00,1.363512,0.028323,237,494,0.003467,0.010218,81747138,55002944,0,0,75659,0,1,1 +1774170407.837816,0.95,4,3992.50,53.31,1591.57,2087.23,0.00,3518095305603.862793,3518095305605.372559,21,0,0.002797,0.007685,81747226,55003094,0,0,75661,0,1,1 +1774170412.837644,0.75,4,3992.50,53.31,1591.58,2087.23,0.00,1.538432,0.028321,237,494,0.003584,0.009678,81747342,55003287,0,0,75664,0,1,1 +1774170417.837289,1.15,4,3992.50,53.71,1574.82,2102.91,0.00,106201.739479,158271.388077,8680654,2805491,0.003527,0.009600,81747453,55003475,0,0,75666,0,1,1 +1774170422.837689,0.70,4,3992.50,53.50,1583.01,2094.70,0.00,3518156008355.243164,3518155956294.782227,199,0,0.002746,0.007633,81747537,55003622,0,0,75669,0,1,1 +1774170427.833445,0.70,4,3992.50,53.51,1582.80,2094.91,0.00,106285.782450,158394.652374,8680654,2805512,0.003436,0.009532,81747642,55003804,0,0,75671,0,1,1 +1774170432.836872,26.59,4,3992.50,59.81,1342.52,2341.57,0.00,3516027065846.161133,3516027013815.352539,238,2,61.892086,0.050987,81755101,55007101,0,0,75674,0,1,1 +1774170437.837557,34.02,4,3992.50,59.47,1356.29,2328.48,0.00,3517955212430.355957,3517955212432.362793,21,0,122.080294,0.046743,81768580,55010421,0,0,75676,0,1,1 +1774170442.837060,29.60,4,3992.50,59.94,1338.04,2346.62,0.00,106206.292060,158276.054610,8680654,2805648,120.962481,0.045931,81782269,55014006,0,0,75679,0,1,1 +1774170447.837380,31.14,4,3992.50,59.77,1344.79,2339.96,0.00,3518212283235.041504,0.053903,8679880,2805185,120.693514,0.057079,81795733,55018127,0,0,75681,0,1,1 +1774170452.836382,30.01,4,3992.50,59.49,1355.61,2329.19,0.00,3519139265992.064941,3519139213912.743652,199,0,119.919090,0.055915,81809374,55022245,0,0,75684,0,1,1 +1774170457.834410,29.47,4,3992.50,59.64,1349.80,2335.04,0.00,3519825633670.761230,0.000000,21,0,119.778087,0.060738,81823316,55026854,0,0,75686,0,1,1 +1774170462.838062,30.47,4,3992.50,59.56,1352.86,2331.89,0.00,0.174872,0.000000,199,0,119.526652,0.067511,81837457,55032020,0,0,75689,0,1,1 +1774170467.837819,30.57,4,3992.50,59.73,1346.01,2338.74,0.00,1.831925,0.000195,238,2,119.488766,0.055719,81850982,55036304,0,0,75691,0,1,1 +1774170472.833211,19.48,4,3992.50,59.46,1356.83,2328.02,0.00,3521683148465.153320,3521683148467.162109,21,0,119.650348,0.063292,81864885,55040995,0,0,75694,0,1,1 +1774170477.837422,13.50,4,3992.50,53.67,1583.99,2101.19,0.00,0.174853,0.000000,199,0,16.658724,0.078200,81870090,55044760,0,0,75696,0,1,1 +1774170482.837412,13.29,4,3992.50,53.58,1586.98,2097.82,0.00,1.363382,0.028320,237,494,20.119857,0.087317,81876551,55049581,0,0,75699,0,1,1 +1774170487.837507,6.68,4,3992.50,53.16,1603.29,2081.52,0.00,3518370566017.422852,3518370566018.933105,21,0,6.045030,0.032068,81878599,55051089,0,0,75701,0,1,1 +1774170492.835997,0.95,4,3992.50,53.10,1605.77,2079.04,0.00,0.000000,0.000000,21,0,0.004890,0.009653,81878728,55051276,0,0,75704,0,1,1 +1774170497.834927,0.80,4,3992.50,53.14,1604.31,2080.50,0.00,106218.638800,158295.340386,8680669,2806937,0.005049,0.010293,81878865,55051476,0,0,75706,0,1,1 +1774170502.834917,0.65,4,3992.50,53.11,1605.54,2079.27,0.00,3518443799693.400879,3518443747627.572754,199,0,0.004481,0.008408,81878982,55051642,0,0,75709,0,1,1 +1774170507.837777,1.10,4,3992.50,53.46,1589.85,2092.92,0.00,106130.907193,158171.436389,8679895,2806486,0.005032,0.010285,81879118,55051842,0,0,75711,0,1,1 +1774170512.833244,0.70,4,3992.50,53.47,1589.42,2093.36,0.00,4.113007,0.379250,8680669,2807356,0.005073,0.010335,81879256,55052045,0,0,75714,0,1,1 +1774170517.838130,0.70,4,3992.50,53.47,1589.43,2093.35,0.00,3515002440550.068848,3515002388532.993652,237,494,0.004332,0.008381,81879370,55052209,0,0,75716,0,1,1 +1774170522.837247,0.70,4,3992.50,53.47,1589.20,2093.59,0.00,106209.001337,158290.202731,8679895,2806879,0.005162,0.010458,81879516,55052420,0,0,75719,0,1,1 +1774170527.838050,0.65,4,3992.50,53.47,1589.21,2093.55,0.00,3517871819386.621582,3517871767324.489258,21,0,0.006357,0.012023,81879667,55052645,0,0,75721,0,1,1 +1774170532.833534,0.75,4,3992.50,53.34,1594.43,2088.34,0.00,0.048090,0.000000,70,0,0.004340,0.008568,81879781,55052811,0,0,75724,0,1,1 +1774170537.834914,0.90,4,3992.50,53.57,1585.91,2097.37,0.00,3517465897960.568359,0.000000,21,0,0.006030,0.011480,81879924,55053020,0,0,75726,0,1,1 +1774170542.834906,0.80,4,3992.50,53.58,1585.57,2097.59,0.00,0.000000,0.000000,21,0,0.005035,0.010275,81880060,55053219,0,0,75729,0,1,1 +1774170547.837708,0.75,4,3992.50,53.57,1585.59,2097.57,0.00,0.000000,0.000000,21,0,0.004346,0.008410,81880175,55053385,0,0,75731,0,1,1 +1774170552.833948,0.70,4,3992.50,53.57,1585.60,2097.56,0.00,2.008346,0.000195,238,2,0.005059,0.010316,81880313,55053587,0,0,75734,0,1,1 +1774170557.837226,0.65,4,3992.50,53.39,1592.80,2090.37,0.00,3516131442399.012207,0.028107,237,494,0.004574,0.008992,81880435,55053761,0,0,75736,0,1,1 +1774170562.838003,0.80,4,3992.50,53.39,1592.81,2090.35,0.00,106173.758403,158238.004400,8679895,2807214,0.004793,0.009678,81880563,55053951,0,0,75739,0,1,1 +1774170567.838249,0.90,4,3992.50,53.80,1576.95,2106.21,0.00,3518263942887.799316,3518263890819.362305,199,0,0.005022,0.010290,81880698,55054151,0,0,75741,0,1,1 +1774170572.833233,0.70,4,3992.50,53.62,1583.77,2099.35,0.00,3521970594183.904785,0.000000,21,0,0.004613,0.009042,81880822,55054328,0,0,75744,0,1,1 +1774170577.835628,0.70,4,3992.50,53.49,1588.75,2094.37,0.00,106140.960012,158186.991632,8679895,2807321,0.004346,0.008398,81880937,55054493,0,0,75746,0,1,1 +1774170582.833956,9.65,4,3992.50,53.66,1581.55,2100.85,0.00,3519613873624.904785,3519613821535.021484,237,494,0.028982,37.478798,81882916,55058906,0,0,75749,0,1,1 +1774170587.837444,32.38,4,3992.50,53.66,1572.89,2101.01,0.00,3515984822125.774414,3515984822127.283691,21,0,0.048599,121.538762,81886559,55072551,0,0,75751,0,1,1 +1774170592.836077,13.33,4,3992.50,53.34,1585.10,2088.39,0.00,0.000000,0.000000,21,0,0.024058,46.056842,81888245,55077880,0,0,75754,0,1,1 +1774170597.833199,12.81,4,3992.50,55.19,1517.18,2160.89,0.00,0.000000,0.000000,21,0,40.087351,0.025103,81892701,55079293,0,0,75756,0,1,1 +1774170602.838017,11.53,4,3992.50,53.11,1610.23,2079.32,0.00,0.000000,0.000000,21,0,0.027074,40.034254,81894324,55083955,0,0,75759,0,1,1 +1774170607.837711,1.00,4,3992.50,53.08,1611.32,2078.24,0.00,2.006959,0.000195,238,2,0.003565,0.009328,81894429,55084133,0,0,75761,0,1,1 +1774170612.837635,0.80,4,3992.50,53.13,1609.39,2080.17,0.00,106208.901378,158504.722989,8680027,2809286,0.003433,0.009534,81894534,55084316,0,0,75764,0,1,1 +1774170617.833282,0.75,4,3992.50,53.11,1610.04,2079.52,0.00,3521502777906.477539,3521502725567.841797,70,0,0.003411,0.009532,81894637,55084498,0,0,75766,0,1,1 +1774170622.837378,0.65,4,3992.50,53.11,1610.04,2079.52,0.00,3515557637418.799316,0.000000,21,0,0.002757,0.007627,81894722,55084645,0,0,75769,0,1,1 +1774170627.836070,1.05,4,3992.50,53.31,1601.92,2087.08,0.00,0.048059,0.000000,70,0,0.003447,0.009558,81894828,55084829,0,0,75771,0,1,1 +1774170632.833220,0.75,4,3992.50,53.28,1603.13,2085.84,0.00,3520443253909.374512,0.000000,21,0,0.003467,0.009540,81894935,55085012,0,0,75774,0,1,1 +1774170637.834900,0.65,4,3992.50,53.27,1603.33,2085.64,0.00,106173.623708,158455.218300,8680027,2809406,0.002746,0.007621,81895019,55085158,0,0,75776,0,1,1 +1774170642.834900,0.70,4,3992.50,53.24,1604.47,2084.51,0.00,3518437709956.422363,3518437657657.075684,199,0,0.003446,0.009565,81895125,55085343,0,0,75779,0,1,1 +1774170647.835315,0.85,4,3992.50,53.27,1603.43,2085.55,0.00,106204.418163,158495.341671,8680801,2809911,0.004786,0.010370,81895270,55085555,0,0,75781,0,1,1 +1774170652.837668,0.65,4,3992.50,53.27,1603.44,2085.54,0.00,3516782150709.371582,3516782098437.370117,237,494,0.003879,0.008097,81895381,55085721,0,0,75784,0,1,1 +1774170657.836598,1.15,4,3992.50,53.46,1596.98,2093.13,0.00,3519190366296.390625,3519190366297.900879,21,0,0.003459,0.009526,81895488,55085903,0,0,75786,0,1,1 +1774170662.836836,0.75,4,3992.50,53.52,1594.50,2095.62,0.00,0.000000,0.000000,21,0,0.003433,0.009534,81895593,55086086,0,0,75789,0,1,1 +1774170667.837532,30.97,4,3992.50,59.38,1371.77,2324.91,0.00,0.174976,0.000000,199,0,59.307743,0.033071,81902046,55087980,0,0,75791,0,1,1 +1774170672.833480,33.03,4,3992.50,59.71,1359.72,2337.82,0.00,0.000000,0.000000,199,0,120.021453,0.038357,81914816,55090838,0,0,75794,0,1,1 +1774170677.833193,30.29,4,3992.50,59.77,1357.48,2339.98,0.00,106215.224238,158517.800053,8680027,2809613,118.526383,0.055232,81927886,55095003,0,0,75796,0,1,1 +1774170682.833237,30.72,4,3992.50,59.66,1361.84,2335.71,0.00,3518405720606.089355,3518405668306.982910,199,0,119.625182,0.065536,81941516,55099803,0,0,75799,0,1,1 +1774170687.834459,30.44,4,3992.50,59.87,1353.39,2343.97,0.00,1.831388,0.000195,238,2,118.889413,0.064316,81955301,55104533,0,0,75801,0,1,1 +1774170692.836253,30.47,4,3992.50,59.67,1367.44,2336.09,0.00,3517175108578.970703,3517175108580.977051,21,0,119.439873,0.066487,81969440,55109668,0,0,75804,0,1,1 +1774170697.834132,31.11,4,3992.50,59.75,1357.95,2339.32,0.00,0.048067,0.000000,70,0,119.415018,0.058970,81983009,55113966,0,0,75806,0,1,1 +1774170702.837421,31.37,4,3992.50,59.43,1370.42,2326.86,0.00,106143.537273,158404.816816,8680801,2810254,119.436973,0.067030,81997018,55118717,0,0,75809,0,1,1 +1774170707.837604,21.86,4,3992.50,59.54,1366.06,2331.32,0.00,3518308461350.368652,3518308409056.494629,199,0,119.348868,0.065947,82010924,55123629,0,0,75811,0,1,1 +1774170712.833241,1.91,4,3992.50,52.73,1632.81,2064.56,0.00,1.833436,0.000195,238,2,12.648986,0.011785,82012532,55124228,0,0,75814,0,1,1 +1774170717.837436,15.37,4,3992.50,53.96,1584.62,2112.80,0.00,0.000000,0.000000,238,2,16.140264,0.085664,82018073,55128264,0,0,75816,0,1,1 +1774170722.834881,15.67,4,3992.50,53.32,1609.53,2087.74,0.00,3520235595159.976562,3520235595161.936035,70,0,24.123007,0.108828,82026001,55134267,0,0,75819,0,1,1 +1774170727.835506,1.10,4,3992.50,53.33,1609.08,2088.18,0.00,106200.252563,158490.040124,8680816,2811451,0.005039,0.009785,82026131,55134455,0,0,75821,0,1,1 +1774170732.837741,0.95,4,3992.50,53.59,1599.07,2098.19,0.00,0.000000,0.319877,8680816,2811739,0.004429,0.010702,82026256,55134653,0,0,75824,0,1,1 +1774170737.838107,25.51,4,3992.50,53.97,1579.23,2112.99,0.00,3518179265162.366699,3518179212869.433105,199,0,0.065733,98.618957,82030964,55146466,0,0,75826,0,1,1 +1774170742.836408,28.71,4,3992.50,53.73,1584.23,2103.75,0.00,1.832459,0.000195,238,2,0.050694,106.544459,82034685,55158223,0,0,75829,0,1,1 +1774170747.836649,1.25,4,3992.50,53.75,1579.58,2104.52,0.00,106202.338047,158697.334309,8680050,2812470,0.005859,0.011500,82034836,55158445,0,0,75831,0,1,1 +1774170752.833194,15.29,4,3992.50,57.86,1422.82,2265.34,0.00,3520870437496.406738,3520870384964.403809,199,0,40.094453,0.028393,82039330,55160122,0,0,75834,0,1,1 +1774170757.833237,1.20,4,3992.50,53.91,1577.41,2110.75,0.00,106229.939241,158703.916240,8680946,2813331,0.008643,0.014184,82039557,55160405,0,0,75836,0,1,1 +1774170762.833235,0.70,4,3992.50,53.33,1600.24,2087.92,0.00,3518439129978.319336,3518439077502.517090,237,494,0.005050,0.010300,82039694,55160606,0,0,75839,0,1,1 +1774170767.837281,0.70,4,3992.50,53.06,1610.82,2077.34,0.00,0.000000,0.000000,237,494,0.004634,0.008937,82039814,55160781,0,0,75841,0,1,1 +1774170772.834887,0.80,4,3992.50,53.13,1607.99,2080.17,0.00,0.000000,0.000000,237,494,0.005312,0.010860,82039954,55160993,0,0,75844,0,1,1 +1774170777.834895,1.50,4,3992.50,53.32,1598.25,2087.56,0.00,3518432064934.030762,3518432064935.493164,70,0,0.005054,0.010291,82040091,55161193,0,0,75846,0,1,1 +1774170782.838007,0.55,4,3992.50,53.12,1605.83,2079.89,0.00,3516248512260.948242,0.000000,21,0,0.003765,0.008188,82040197,55161353,0,0,75849,0,1,1 +1774170787.837285,0.60,4,3992.50,53.13,1605.59,2080.12,0.00,0.048054,0.000000,70,0,0.002963,0.004625,82040269,55161446,0,0,75851,0,1,1 +1774170792.834895,0.65,4,3992.50,52.99,1610.91,2074.80,0.00,1.491045,0.028334,237,494,0.005100,0.010356,82040409,55161651,0,0,75854,0,1,1 +1774170797.834923,0.65,4,3992.50,52.99,1610.88,2074.84,0.00,3518417102535.462891,3518417102536.797852,199,0,0.004344,0.008398,82040524,55161816,0,0,75856,0,1,1 +1774170802.834947,0.75,4,3992.50,52.98,1611.32,2074.40,0.00,106230.358932,158715.587235,8680946,2813787,0.005085,0.010995,82040663,55162025,0,0,75859,0,1,1 +1774170807.834927,0.85,4,3992.50,53.15,1604.77,2080.95,0.00,0.000000,0.082422,8680946,2813841,0.005022,0.010291,82040798,55162225,0,0,75861,0,1,1 +1774170812.834915,0.70,4,3992.50,53.13,1605.46,2080.27,0.00,3518445397005.218750,3518445397009.304688,8680172,2813353,0.004354,0.008425,82040913,55162392,0,0,75864,0,1,1 +1774170817.833216,0.60,4,3992.50,53.12,1606.06,2079.66,0.00,4.110674,0.085185,8680946,2813906,0.005012,0.010294,82041047,55162592,0,0,75866,0,1,1 +1774170822.833244,11.50,4,3992.50,53.18,1601.44,2081.95,0.00,3518417433291.383301,3518417380806.178223,70,0,0.027800,40.070995,82042809,55167195,0,0,75869,0,1,1 +1774170827.833264,0.95,4,3992.50,53.20,1600.67,2082.72,0.00,106230.565186,158749.986640,8680948,2814244,0.005474,0.012442,82042945,55167422,0,0,75871,0,1,1 +1774170832.833226,1.60,4,3992.50,53.20,1600.43,2082.97,0.00,3518464374269.565918,3518464321749.522461,70,0,0.003454,0.009542,82043052,55167606,0,0,75874,0,1,1 +1774170837.833282,1.10,4,3992.50,53.07,1606.00,2077.72,0.00,0.126952,0.000000,199,0,0.004368,0.010194,82043160,55167791,0,0,75876,0,1,1 +1774170842.837605,0.80,4,3992.50,53.18,1601.51,2082.10,0.00,3515397929418.371582,0.000000,21,0,0.002744,0.007627,82043244,55167938,0,0,75879,0,1,1 +1774170847.837772,0.65,4,3992.50,53.19,1601.27,2082.33,0.00,0.174994,0.000000,199,0,0.003433,0.009524,82043349,55168120,0,0,75881,0,1,1 +1774170852.833946,0.80,4,3992.50,53.19,1601.29,2082.32,0.00,3521131841644.734863,0.000000,70,0,0.003219,0.008938,82043448,55168293,0,0,75884,0,1,1 +1774170857.837168,0.60,4,3992.50,53.19,1601.07,2082.54,0.00,106162.590895,158654.585311,8680948,2814376,0.002313,0.006352,82043520,55168415,0,0,75886,0,1,1 +1774170862.837617,0.65,4,3992.50,53.19,1601.07,2082.53,0.00,3518120967116.543945,3518120914595.492676,21,0,0.002784,0.007695,82043607,55168566,0,0,75889,0,1,1 +1774170867.833614,0.95,4,3992.50,53.28,1597.57,2086.19,0.00,1.539611,0.028343,237,494,0.003520,0.010278,82043719,55168759,0,0,75891,0,1,1 +1774170872.835784,0.60,4,3992.50,53.24,1598.95,2084.45,0.00,0.468254,3516911186653.552734,238,2,0.002901,0.007756,82043813,55168916,0,0,75894,0,1,1 +1774170877.837550,0.70,4,3992.50,53.24,1598.95,2084.45,0.00,3517195027044.760254,3517195027046.717773,70,0,0.003457,0.009521,82043920,55169098,0,0,75896,0,1,1 +1774170882.835807,0.70,4,3992.50,53.24,1598.96,2084.44,0.00,3519664088463.579102,0.000000,21,0,0.003434,0.009537,82044025,55169281,0,0,75899,0,1,1 +1774170887.837743,27.49,4,3992.50,59.79,1345.98,2340.87,0.00,106189.923183,158695.448691,8680948,2814460,42.396698,0.031500,82048819,55171092,0,0,75901,0,1,1 +1774170892.836202,33.57,4,3992.50,60.17,1335.04,2355.67,0.00,3519522015024.145508,3519521962480.579590,237,494,118.172395,0.049608,82061881,55174466,0,0,75904,0,1,1 +1774170897.837614,30.38,4,3992.50,59.77,1349.27,2340.00,0.00,3517443997365.654785,3517443997366.989746,199,0,119.552736,0.066835,82075545,55179308,0,0,75906,0,1,1 +1774170902.837643,31.08,4,3992.50,59.89,1344.26,2344.99,0.00,106230.257331,158756.148170,8680949,2814603,118.895894,0.072286,82089662,55184830,0,0,75909,0,1,1 +1774170907.836486,30.89,4,3992.50,60.04,1338.52,2350.77,0.00,3519251539808.937500,3519251487270.753418,21,0,119.918038,0.071292,82103765,55190311,0,0,75911,0,1,1 +1774170912.833394,30.49,4,3992.50,59.45,1361.55,2327.67,0.00,2.008078,0.000195,238,2,119.292115,0.065567,82117441,55195081,0,0,75914,0,1,1 +1774170917.837597,31.35,4,3992.50,59.58,1356.71,2332.59,0.00,3515481970992.949707,0.028101,237,494,119.481190,0.069073,82131385,55200145,0,0,75916,0,1,1 +1774170922.837419,30.58,4,3992.50,59.70,1352.03,2337.23,0.00,106233.313961,158763.124201,8680950,2814789,119.564667,0.076008,82145365,55205791,0,0,75919,0,1,1 +1774170927.837257,26.20,4,3992.50,59.54,1358.10,2331.23,0.00,3518551286680.026855,3518551234150.383301,237,494,118.842402,0.076869,82159185,55211655,0,0,75921,0,1,1 +1774170932.836766,1.91,4,3992.50,53.55,1596.30,2096.79,0.00,0.468503,3518782902560.598633,238,2,30.609467,0.027778,82162850,55213271,0,0,75924,0,1,1 +1774170937.834899,6.52,4,3992.50,53.44,1600.91,2092.19,0.00,0.000000,0.000000,238,2,2.027150,0.019302,82163737,55213963,0,0,75926,0,1,1 +1774170942.834879,23.27,4,3992.50,53.68,1591.16,2101.86,0.00,3518451120837.099609,3518451120838.931641,199,0,32.193462,0.140164,82173723,55221450,0,0,75929,0,1,1 +1774170947.834867,6.43,4,3992.50,53.31,1605.81,2087.16,0.00,106231.279479,158758.728750,8680961,2815974,6.048797,0.038003,82175895,55223185,0,0,75931,0,1,1 +1774170952.833224,1.21,4,3992.50,53.33,1605.11,2087.86,0.00,3519593990381.137207,3519593937836.542480,199,0,0.006106,0.010193,82176047,55223386,0,0,75934,0,1,1 +1774170957.833237,1.50,4,3992.50,53.72,1589.77,2103.20,0.00,3518428108820.564453,0.000000,21,0,0.005022,0.010291,82176182,55223586,0,0,75936,0,1,1 +1774170962.833218,0.90,4,3992.50,53.45,1600.23,2092.74,0.00,0.175001,0.000000,199,0,0.005035,0.010300,82176318,55223787,0,0,75939,0,1,1 +1774170967.833233,0.85,4,3992.50,53.46,1599.82,2093.15,0.00,3518426535384.287109,0.000000,21,0,0.004344,0.008398,82176433,55223952,0,0,75941,0,1,1 +1774170972.834906,0.95,4,3992.50,53.44,1600.74,2092.22,0.00,0.000000,0.000000,21,0,0.004334,0.008397,82176547,55224117,0,0,75944,0,1,1 +1774170977.838014,0.85,4,3992.50,53.44,1600.75,2092.22,0.00,0.048017,0.000000,70,0,0.004409,0.008465,82176667,55224286,0,0,75946,0,1,1 +1774170982.836642,1.00,4,3992.50,53.29,1606.49,2086.48,0.00,0.126988,0.000000,199,0,0.005036,0.010303,82176803,55224487,0,0,75949,0,1,1 +1774170987.834898,1.15,4,3992.50,53.48,1601.25,2093.77,0.00,106263.975445,158814.821190,8680187,2816235,0.005024,0.010294,82176938,55224687,0,0,75951,0,1,1 +1774170992.837769,0.85,4,3992.50,53.34,1604.77,2088.38,0.00,4.106919,0.036405,8680961,2816744,0.004379,0.008434,82177056,55224855,0,0,75954,0,1,1 +1774170997.837501,0.85,4,3992.50,53.34,1604.79,2088.36,0.00,3518625628501.998535,3518625575970.913574,21,0,0.005123,0.011006,82177198,55225064,0,0,75956,0,1,1 +1774171002.834903,0.90,4,3992.50,53.34,1604.80,2088.34,0.00,0.000000,0.000000,21,0,0.005025,0.010306,82177333,55225265,0,0,75959,0,1,1 +1774171007.834890,1.10,4,3992.50,53.34,1604.82,2088.33,0.00,2.006841,0.000195,238,2,0.004323,0.008390,82177446,55225429,0,0,75961,0,1,1 +1774171012.834885,0.80,4,3992.50,53.34,1604.84,2088.32,0.00,3518441034130.285645,3518441034132.292480,21,0,0.005022,0.010300,82177581,55225630,0,0,75964,0,1,1 +1774171017.837941,1.30,4,3992.50,53.55,1596.66,2096.62,0.00,106166.312033,158662.727250,8680961,2816958,0.005701,0.011206,82177720,55225832,0,0,75966,0,1,1 +1774171022.833216,0.90,4,3992.50,53.36,1603.74,2089.22,0.00,3521765093760.910156,0.043694,8680187,2816535,0.004361,0.008403,82177836,55225997,0,0,75969,0,1,1 +1774171027.836015,0.95,4,3992.50,53.28,1607.07,2085.91,0.00,0.000000,0.069102,8680187,2816608,0.005020,0.010272,82177971,55226196,0,0,75971,0,1,1 +1774171032.837323,0.85,4,3992.50,53.12,1613.26,2079.71,0.00,3517516418763.293457,3517516366244.142578,199,0,0.005021,0.010285,82178106,55226396,0,0,75974,0,1,1 +1774171037.834901,1.30,4,3992.50,53.13,1612.81,2080.16,0.00,0.000000,0.000000,199,0,0.004350,0.008406,82178221,55226561,0,0,75976,0,1,1 +1774171042.834897,4.67,4,3992.50,53.62,1593.43,2099.46,0.00,1.363380,0.028320,237,494,0.019189,14.636183,82179324,55228539,0,0,75979,0,1,1 +1774171047.837685,29.78,4,3992.50,53.48,1592.99,2093.68,0.00,3516476792059.063477,3516476792060.572754,21,0,0.042302,116.104458,82182459,55240638,0,0,75981,0,1,1 +1774171052.837483,20.44,4,3992.50,53.93,1568.61,2111.50,0.00,0.000000,0.000000,21,0,0.027256,74.311161,82184488,55248400,0,0,75984,0,1,1 +1774171057.833214,1.16,4,3992.50,53.73,1576.37,2103.74,0.00,0.048088,0.000000,70,0,0.004273,0.010731,82184609,55248603,0,0,75986,0,1,1 +1774171062.833222,15.08,4,3992.50,54.53,1548.44,2134.79,0.00,1.490330,0.028320,237,494,40.064912,0.027009,82189035,55250128,0,0,75989,0,1,1 +1774171067.837163,12.10,4,3992.50,53.23,1597.11,2083.96,0.00,0.468088,3515666432010.909180,238,2,0.028731,40.039546,82190848,55254648,0,0,75991,0,1,1 +1774171072.834899,1.15,4,3992.50,52.91,1609.47,2071.59,0.00,3520030873995.189453,3520030873997.148926,70,0,0.005148,0.013179,82190996,55254898,0,0,75994,0,1,1 +1774171077.833224,1.35,4,3992.50,53.39,1597.11,2090.24,0.00,0.000000,0.000000,70,0,0.002756,0.007634,82191081,55255045,0,0,75996,0,1,1 +1774171082.836608,0.90,4,3992.50,53.30,1600.57,2086.83,0.00,106176.783315,158892.066999,8681088,2819192,0.003456,0.009528,82191188,55255228,0,0,75999,0,1,1 +1774171087.834679,0.95,4,3992.50,53.53,1591.72,2095.68,0.00,3519794974771.559570,3519794922000.294434,21,0,0.003447,0.009559,82191294,55255412,0,0,76001,0,1,1 +1774171092.837476,0.85,4,3992.50,53.32,1599.76,2087.64,0.00,106189.261355,158910.678500,8681088,2819202,0.002732,0.007629,82191377,55255559,0,0,76004,0,1,1 +1774171097.837427,0.70,4,3992.50,53.27,1601.73,2085.68,0.00,0.000000,6.012560,8681088,2819243,0.002622,0.007598,82191460,55255703,0,0,76006,0,1,1 +1774171102.837247,0.85,4,3992.50,53.26,1602.02,2085.38,0.00,3518563834970.489258,3518563782211.610840,70,0,0.002905,0.007667,82191548,55255853,0,0,76009,0,1,1 +1774171107.838064,1.15,4,3992.50,53.29,1605.20,2086.30,0.00,3517862048991.728027,0.000000,21,0,0.003470,0.009585,82191656,55256039,0,0,76011,0,1,1 +1774171112.837490,0.85,4,3992.50,53.31,1602.48,2087.04,0.00,0.000000,0.000000,21,0,0.003578,0.009660,82191772,55256230,0,0,76014,0,1,1 +1774171117.833205,0.85,4,3992.50,53.33,1601.61,2087.91,0.00,0.175150,0.000000,199,0,0.002873,0.007756,82191864,55256386,0,0,76016,0,1,1 +1774171122.833278,0.85,4,3992.50,53.37,1600.04,2089.48,0.00,106242.830853,159003.317756,8680314,2818800,0.003433,0.009534,82191969,55256569,0,0,76019,0,1,1 +1774171127.833238,0.75,4,3992.50,53.37,1600.05,2089.47,0.00,3518465674692.526367,3518465621929.499023,237,494,0.003389,0.009953,82192074,55256752,0,0,76021,0,1,1 +1774171132.837437,28.36,4,3992.50,59.78,1354.79,2340.56,0.00,3515484962264.305664,3515484962265.814453,21,0,46.435460,0.038052,82197199,55258968,0,0,76024,0,1,1 +1774171137.837471,33.40,4,3992.50,59.71,1354.56,2337.92,0.00,0.048047,0.000000,70,0,120.167873,0.059531,82209469,55263100,0,0,76026,0,1,1 +1774171142.837793,29.36,4,3992.50,59.68,1355.89,2336.54,0.00,3518210551686.570312,0.000000,21,0,118.955409,0.045348,82221479,55266387,0,0,76029,0,1,1 +1774171147.836948,29.95,4,3992.50,59.49,1363.25,2329.12,0.00,106266.640085,159032.841438,8681088,2819543,119.384452,0.045391,82233573,55269685,0,0,76031,0,1,1 +1774171152.837878,30.36,4,3992.50,59.44,1365.12,2327.32,0.00,3517782936423.219727,3517782883675.746094,21,0,119.340320,0.040538,82245664,55272636,0,0,76034,0,1,1 +1774171157.834042,31.25,4,3992.50,59.52,1362.22,2330.23,0.00,0.000000,0.000000,21,0,119.056213,0.043245,82257786,55275762,0,0,76036,0,1,1 +1774171162.837970,30.61,4,3992.50,59.53,1361.66,2330.79,0.00,106165.262176,158881.215358,8681088,2819593,119.470360,0.047694,82269933,55279258,0,0,76039,0,1,1 +1774171167.835035,29.86,4,3992.50,59.77,1352.29,2340.12,0.00,3520504187716.707031,3520504187720.793945,8680314,2819109,118.835294,0.048448,82282122,55282759,0,0,76041,0,1,1 +1774171172.837756,25.79,4,3992.50,59.37,1371.43,2324.61,0.00,3516523197613.182617,3516523144880.424805,21,0,119.698432,0.041639,82294297,55285925,0,0,76044,0,1,1 +1774171177.837477,1.40,4,3992.50,53.59,1597.82,2098.21,0.00,0.000000,0.000000,21,0,24.039974,0.018030,82296886,55286938,0,0,76046,0,1,1 +1774171182.836721,13.35,4,3992.50,54.05,1579.71,2116.31,0.00,0.000000,0.000000,21,0,12.090533,0.068482,82301056,55290143,0,0,76049,0,1,1 +1774171187.837399,15.35,4,3992.50,54.00,1581.59,2114.37,0.00,2.006564,0.000195,238,2,22.124962,0.094289,82308106,55295328,0,0,76051,0,1,1 +1774171192.835009,5.27,4,3992.50,53.51,1600.78,2095.16,0.00,3520119687399.102539,3520119687401.062012,70,0,6.052889,0.037879,82310351,55297058,0,0,76054,0,1,1 +1774171197.837641,1.55,4,3992.50,53.71,1592.00,2102.93,0.00,0.000000,0.000000,70,0,0.004764,0.011107,82310483,55297263,0,0,76056,0,1,1 +1774171202.837808,24.06,4,3992.50,54.77,1545.86,2144.34,0.00,1.958724,0.000195,238,2,0.067551,93.554767,82315381,55307650,0,0,76059,0,1,1 +1774171207.833390,30.67,4,3992.50,53.96,1573.09,2112.67,0.00,3521549082072.526855,3521549082074.360352,199,0,0.031221,111.667337,82317592,55319022,0,0,76061,0,1,1 +1774171212.837612,0.95,4,3992.50,53.32,1598.45,2087.42,0.00,3515468323465.211426,0.000000,21,0,0.005302,0.009710,82317733,55319218,0,0,76064,0,1,1 +1774171217.837510,13.58,4,3992.50,55.12,1529.96,2158.20,0.00,2.006877,0.000195,238,2,40.067630,0.026557,82322277,55320864,0,0,76066,0,1,1 +1774171222.837510,0.90,4,3992.50,54.05,1572.05,2116.10,0.00,3518437043514.651855,3518437043516.659180,21,0,0.006903,0.009795,82322443,55321067,0,0,76069,0,1,1 +1774171227.838122,1.35,4,3992.50,53.70,1585.60,2102.55,0.00,1.538191,0.028317,237,494,0.005761,0.012523,82322596,55321291,0,0,76071,0,1,1 +1774171232.834899,0.70,4,3992.50,53.25,1603.14,2085.01,0.00,3520706693031.387207,3520706693032.850586,70,0,0.005038,0.010307,82322732,55321492,0,0,76074,0,1,1 +1774171237.837460,0.70,4,3992.50,53.27,1602.43,2085.73,0.00,1.957786,0.000195,238,2,0.004334,0.008385,82322846,55321656,0,0,76076,0,1,1 +1774171242.834402,0.85,4,3992.50,53.27,1602.38,2085.78,0.00,3520590318834.309082,3520590318836.269043,70,0,0.005645,0.010560,82322993,55321864,0,0,76079,0,1,1 +1774171247.837288,0.80,4,3992.50,53.24,1603.79,2084.36,0.00,1.489472,0.028304,237,494,0.006174,0.010931,82323154,55322080,0,0,76081,0,1,1 +1774171252.837430,1.05,4,3992.50,53.26,1602.77,2085.39,0.00,0.468444,3518336640748.632812,238,2,0.005387,0.008801,82323289,55322258,0,0,76084,0,1,1 +1774171257.837693,1.05,4,3992.50,53.66,1587.93,2101.07,0.00,3518252413376.878906,3518252413378.837402,70,0,0.005141,0.010687,82323432,55322466,0,0,76086,0,1,1 +1774171262.837561,0.65,4,3992.50,53.43,1596.26,2092.00,0.00,1.490371,0.028321,237,494,0.005023,0.010623,82323567,55322669,0,0,76089,0,1,1 +1774171267.835396,0.75,4,3992.50,53.44,1596.13,2092.12,0.00,106306.679381,159282.407187,8680457,2822647,0.004338,0.008393,82323681,55322833,0,0,76091,0,1,1 +1774171272.838016,0.75,4,3992.50,53.43,1596.21,2092.05,0.00,3516594135812.837891,3516594082889.252441,70,0,0.005095,0.010335,82323821,55323037,0,0,76094,0,1,1 +1774171277.835420,0.85,4,3992.50,53.43,1596.46,2091.81,0.00,1.959807,0.000195,238,2,0.005046,0.010291,82323958,55323237,0,0,76096,0,1,1 +1774171282.837486,0.75,4,3992.50,53.43,1596.20,2092.06,0.00,3516983387830.991699,3516983387832.998047,21,0,0.003082,0.006759,82324043,55323370,0,0,76099,0,1,1 +1774171287.837242,11.45,4,3992.50,53.93,1577.72,2111.38,0.00,0.000000,0.000000,21,0,0.024300,40.072898,82325584,55327994,0,0,76101,0,1,1 +1774171292.834903,0.70,4,3992.50,53.75,1584.34,2104.57,0.00,2.007775,0.000195,238,2,0.003460,0.009570,82325691,55328179,0,0,76104,0,1,1 +1774171297.834892,0.70,4,3992.50,53.36,1599.66,2089.25,0.00,3518445289344.183105,0.028125,237,494,0.002784,0.007654,82325778,55328327,0,0,76106,0,1,1 +1774171302.837163,0.90,4,3992.50,53.19,1606.25,2082.67,0.00,3516839829283.010742,3516839829284.520020,21,0,0.003432,0.009530,82325883,55328510,0,0,76109,0,1,1 +1774171307.837898,0.80,4,3992.50,53.22,1605.41,2083.52,0.00,106250.670782,159223.995896,8681231,2823586,0.003441,0.009531,82325989,55328693,0,0,76111,0,1,1 +1774171312.837451,0.70,4,3992.50,53.22,1605.41,2083.51,0.00,3518751519955.277832,3518751466969.384766,70,0,0.002759,0.007634,82326074,55328840,0,0,76114,0,1,1 +1774171317.833321,1.05,4,3992.50,53.25,1603.97,2084.96,0.00,0.127058,0.000000,199,0,0.003474,0.009563,82326182,55329024,0,0,76116,0,1,1 +1774171322.837573,0.75,4,3992.50,53.23,1604.67,2084.14,0.00,1.362220,0.028296,237,494,0.003481,0.009749,82326291,55329212,0,0,76119,0,1,1 +1774171327.833255,0.70,4,3992.50,53.22,1605.19,2083.63,0.00,3521478772075.177734,3521478772076.641113,70,0,0.002762,0.008144,82326376,55329363,0,0,76121,0,1,1 +1774171332.837328,0.65,4,3992.50,53.24,1604.45,2084.37,0.00,1.489119,0.028297,237,494,0.003636,0.009714,82326495,55329560,0,0,76124,0,1,1 +1774171337.837925,0.70,4,3992.50,53.25,1604.14,2084.67,0.00,3518017448186.637207,3518017448188.099121,70,0,0.002754,0.007630,82326580,55329707,0,0,76126,0,1,1 +1774171342.836877,0.75,4,3992.50,53.25,1604.15,2084.67,0.00,3519174651227.481445,0.000000,21,0,0.003434,0.009536,82326685,55329890,0,0,76129,0,1,1 +1774171347.834951,1.10,4,3992.50,53.33,1599.43,2087.95,0.00,106303.124811,159315.316783,8680457,2823246,0.003447,0.009528,82326791,55330072,0,0,76131,0,1,1 +1774171352.837617,27.50,4,3992.50,59.84,1354.13,2342.81,0.00,3516562158888.645508,3516562105925.112793,21,0,64.667245,0.034521,82333934,55332057,0,0,76134,0,1,1 +1774171357.837888,35.25,4,3992.50,59.48,1368.32,2328.93,0.00,106260.512332,159245.419071,8681231,2823872,122.177469,0.045676,82347013,55335137,0,0,76136,0,1,1 +1774171362.836645,32.02,4,3992.50,59.73,1358.59,2338.65,0.00,3519311802930.349609,3519311749929.391602,21,0,120.611167,0.052554,82359777,55338812,0,0,76139,0,1,1 +1774171367.837386,31.82,4,3992.50,59.99,1348.32,2348.91,0.00,106246.444065,159230.479139,8680457,2823398,120.558072,0.048976,82372367,55342499,0,0,76141,0,1,1 +1774171372.833196,30.92,4,3992.50,60.21,1339.60,2357.46,0.00,3521387989839.889648,3521387936802.054199,237,494,119.673197,0.041696,82384834,55345571,0,0,76144,0,1,1 +1774171377.837312,31.41,4,3992.50,60.69,1325.35,2376.02,0.00,0.468072,3515542995925.260742,238,2,119.873252,0.035131,82397291,55347978,0,0,76146,0,1,1 +1774171382.834905,31.15,4,3992.50,59.58,1364.60,2332.67,0.00,106311.355868,159330.925056,8680457,2823501,120.225001,0.025085,82409679,55349768,0,0,76149,0,1,1 +1774171387.837406,31.14,4,3992.50,60.00,1348.41,2348.96,0.00,4.107222,0.186723,8681231,2824015,119.109265,0.028610,82422017,55351784,0,0,76151,0,1,1 +1774171392.837408,18.44,4,3992.50,59.48,1368.79,2328.61,0.00,3518436441152.870605,3518436388162.761230,238,2,118.565279,0.031287,82434150,55353986,0,0,76154,0,1,1 +1774171397.834888,14.75,4,3992.50,54.51,1563.11,2134.22,0.00,3520211359500.225098,3520211359502.233398,21,0,16.159664,0.084972,82439640,55358146,0,0,76156,0,1,1 +1774171402.838402,15.24,4,3992.50,54.18,1575.82,2121.46,0.00,0.048013,0.000000,70,0,22.077248,0.095321,82446763,55363433,0,0,76159,0,1,1 +1774171407.834621,3.71,4,3992.50,54.39,1567.68,2129.57,0.00,3521099911114.455566,0.000000,21,0,2.029187,0.020944,82447718,55364174,0,0,76161,0,1,1 +1774171412.836199,1.10,4,3992.50,54.17,1576.34,2120.92,0.00,0.000000,0.000000,21,0,0.005756,0.011719,82447871,55364401,0,0,76164,0,1,1 +1774171417.834911,0.80,4,3992.50,53.57,1600.05,2097.23,0.00,0.048059,0.000000,70,0,0.004337,0.008392,82447985,55364565,0,0,76166,0,1,1 +1774171422.834901,0.85,4,3992.50,53.55,1600.86,2096.42,0.00,106262.483180,159256.125722,8680470,2825156,0.005022,0.010300,82448120,55364766,0,0,76169,0,1,1 +1774171427.837755,0.55,4,3992.50,53.56,1600.37,2096.91,0.00,3516429714960.365234,3516429661997.108887,21,0,0.005421,0.011348,82448268,55364988,0,0,76171,0,1,1 +1774171432.837814,0.55,4,3992.50,53.83,1589.86,2107.41,0.00,0.174998,0.000000,199,0,0.003574,0.008024,82448370,55365145,0,0,76174,0,1,1 +1774171437.837998,0.95,4,3992.50,53.82,1587.81,2107.37,0.00,106258.242856,159250.238026,8680470,2825237,0.005969,0.010991,82448509,55365350,0,0,76176,0,1,1 +1774171442.833598,0.75,4,3992.50,53.81,1588.38,2106.79,0.00,0.000000,0.034014,8680470,2825281,0.005128,0.010434,82448652,55365559,0,0,76179,0,1,1 +1774171447.837675,0.70,4,3992.50,53.82,1588.16,2107.03,0.00,4.105929,0.062351,8681244,2825819,0.003887,0.007117,82448753,55365699,0,0,76181,0,1,1 +1774171452.833258,0.75,4,3992.50,53.82,1587.94,2107.24,0.00,3521548169976.199707,3521548116939.415039,199,0,0.004673,0.009650,82448880,55365886,0,0,76184,0,1,1 +1774171457.833227,0.75,4,3992.50,53.82,1587.96,2107.22,0.00,3518459065550.739746,0.000000,21,0,0.004536,0.009099,82449000,55366059,0,0,76186,0,1,1 +1774171462.837811,0.80,4,3992.50,53.81,1588.50,2106.68,0.00,0.000000,0.000000,21,0,0.005038,0.010299,82449137,55366261,0,0,76189,0,1,1 +1774171467.834903,1.05,4,3992.50,53.75,1597.61,2104.54,0.00,0.048075,0.000000,70,0,0.004338,0.008395,82449251,55366425,0,0,76191,0,1,1 +1774171472.837230,0.90,4,3992.50,53.69,1599.92,2102.22,0.00,0.000000,0.000000,70,0,0.005051,0.010321,82449388,55366628,0,0,76194,0,1,1 +1774171477.837512,0.70,4,3992.50,53.69,1599.93,2102.21,0.00,106256.323277,159247.520707,8680482,2825649,0.005022,0.010290,82449523,55366828,0,0,76196,0,1,1 +1774171482.834934,0.75,4,3992.50,53.70,1599.47,2102.67,0.00,3520252124903.079102,3520252071881.559082,70,0,0.004338,0.008404,82449637,55366993,0,0,76199,0,1,1 +1774171487.835013,0.60,4,3992.50,53.70,1599.49,2102.66,0.00,0.126951,0.000000,199,0,0.005010,0.010290,82449771,55367193,0,0,76201,0,1,1 +1774171492.837293,0.80,4,3992.50,53.71,1599.26,2102.88,0.00,106213.762181,159184.013125,8680482,2825747,0.005053,0.010304,82449909,55367395,0,0,76204,0,1,1 +1774171497.834198,0.96,4,3992.50,53.92,1589.67,2110.90,0.00,3520616373311.532715,3520616320282.477051,238,2,0.004326,0.008382,82450022,55367558,0,0,76206,0,1,1 +1774171502.837795,15.20,4,3992.50,53.91,1587.21,2110.86,0.00,3515907935030.890625,3515907935032.895996,21,0,0.032681,59.656867,82452155,55374278,0,0,76209,0,1,1 +1774171507.838080,29.78,4,3992.50,54.15,1570.86,2120.06,0.00,0.000000,0.000000,21,0,0.101945,120.598209,82460052,55387355,0,0,76211,0,1,1 +1774171512.833239,8.04,4,3992.50,53.81,1584.84,2106.76,0.00,0.048093,0.000000,70,0,0.026659,24.875206,82461963,55390252,0,0,76214,0,1,1 +1774171517.835504,12.94,4,3992.50,53.37,1604.52,2089.74,0.00,0.000000,0.000000,70,0,40.046712,0.024669,82466421,55391650,0,0,76216,0,1,1 +1774171522.833189,12.46,4,3992.50,53.43,1599.80,2092.05,0.00,0.000000,0.000000,70,0,0.031968,40.092686,82468418,55396274,0,0,76219,0,1,1 +1774171527.834913,1.05,4,3992.50,53.53,1597.76,2095.68,0.00,0.000000,0.000000,70,0,0.003440,0.009851,82468524,55396459,0,0,76221,0,1,1 +1774171532.837323,0.70,4,3992.50,53.53,1597.01,2095.91,0.00,3516742279773.992188,0.000000,21,0,0.002783,0.007630,82468611,55396606,0,0,76224,0,1,1 +1774171537.837571,0.90,4,3992.50,53.53,1597.26,2095.66,0.00,0.000000,0.000000,21,0,0.003420,0.009524,82468715,55396788,0,0,76226,0,1,1 +1774171542.837823,0.75,4,3992.50,53.53,1597.27,2095.64,0.00,0.000000,0.000000,21,0,0.003446,0.009534,82468821,55396971,0,0,76229,0,1,1 +1774171547.837597,0.95,4,3992.50,53.53,1597.06,2095.86,0.00,0.175008,0.000000,199,0,0.003881,0.008262,82468929,55397132,0,0,76231,0,1,1 +1774171552.838013,0.80,4,3992.50,53.53,1597.07,2095.86,0.00,1.831683,0.000195,238,2,0.003811,0.008034,82469035,55397292,0,0,76234,0,1,1 +1774171557.834887,1.00,4,3992.50,53.59,1595.77,2098.28,0.00,3520638543052.373047,3520638543054.206055,199,0,0.003431,0.009538,82469140,55397475,0,0,76236,0,1,1 +1774171562.833286,0.90,4,3992.50,53.41,1602.91,2091.13,0.00,106317.825816,159553.390422,8681387,2828345,0.002760,0.007636,82469225,55397622,0,0,76239,0,1,1 +1774171567.834885,0.80,4,3992.50,53.44,1601.94,2092.10,0.00,3517311626192.485352,3517311572989.163574,238,2,0.003688,0.009771,82469348,55397822,0,0,76241,0,1,1 +1774171572.833339,0.80,4,3992.50,53.45,1601.18,2092.86,0.00,3519525798210.754395,3519525798212.586914,199,0,0.003434,0.009537,82469453,55398005,0,0,76244,0,1,1 +1774171577.836338,0.80,4,3992.50,53.45,1601.18,2092.86,0.00,1.362562,0.028303,237,494,0.002745,0.007619,82469537,55398151,0,0,76246,0,1,1 +1774171582.836895,0.80,4,3992.50,53.38,1603.97,2090.07,0.00,106266.459097,159484.495991,8680613,2827884,0.003428,0.009541,82469642,55398335,0,0,76249,0,1,1 +1774171587.836030,24.64,4,3992.50,60.10,1349.70,2353.09,0.00,0.000000,0.152565,8680613,2828031,39.471744,0.029703,82474111,55399884,0,0,76251,0,1,1 +1774171592.833195,32.64,4,3992.50,60.04,1353.43,2350.74,0.00,4.111608,0.096344,8681387,2828571,118.232906,0.031439,82486297,55401913,0,0,76254,0,1,1 +1774171597.835134,28.30,4,3992.50,59.88,1359.49,2344.63,0.00,3517073793417.214844,0.001171,8680613,2828096,119.323300,0.025383,82498726,55403618,0,0,76256,0,1,1 +1774171602.833341,28.86,4,3992.50,59.70,1366.63,2337.55,0.00,3519698928748.287598,3519698875506.317383,199,0,119.012126,0.038199,82511045,55406455,0,0,76259,0,1,1 +1774171607.834127,29.45,4,3992.50,59.95,1357.00,2347.18,0.00,3517884590724.860352,0.000000,21,0,119.148146,0.031330,82523310,55408568,0,0,76261,0,1,1 +1774171612.833265,29.32,4,3992.50,59.78,1363.91,2340.33,0.00,106302.278130,159530.145171,8681387,2828635,119.190897,0.037715,82535718,55411135,0,0,76264,0,1,1 +1774171617.834543,29.27,4,3992.50,60.13,1350.01,2354.21,0.00,3517537752616.812988,3517537699411.727051,21,0,119.334883,0.023871,82548022,55412878,0,0,76266,0,1,1 +1774171622.835835,30.87,4,3992.50,60.07,1348.68,2351.88,0.00,0.048034,0.000000,70,0,118.937848,0.024875,82560376,55414497,0,0,76269,0,1,1 +1774171627.835142,25.49,4,3992.50,59.70,1363.13,2337.50,0.00,3518924508845.352051,0.000000,21,0,120.183877,0.020333,82572707,55415805,0,0,76271,0,1,1 +1774171632.837508,1.15,4,3992.50,53.41,1609.39,2091.24,0.00,0.000000,0.000000,21,0,32.633966,0.011840,82576166,55416398,0,0,76274,0,1,1 +1774171637.836388,11.90,4,3992.50,53.34,1612.05,2088.52,0.00,0.175039,0.000000,199,0,10.076012,0.054828,82579663,55418975,0,0,76276,0,1,1 +1774171642.838054,15.04,4,3992.50,54.48,1567.33,2133.21,0.00,3517264540223.162109,0.000000,21,0,22.127439,0.097351,82586860,55424249,0,0,76279,0,1,1 +1774171647.837385,7.88,4,3992.50,54.31,1579.49,2126.53,0.00,106298.271334,159525.067011,8681399,2829724,8.058906,0.042213,82589622,55426351,0,0,76281,0,1,1 +1774171652.834916,1.30,4,3992.50,54.06,1583.85,2116.73,0.00,3520175697633.861816,0.156327,8680625,2829458,0.005731,0.012000,82589773,55426576,0,0,76284,0,1,1 +1774171657.837491,10.95,4,3992.50,54.19,1577.82,2121.61,0.00,3516625635988.839355,3516625582792.260742,70,0,0.027828,44.055359,82591487,55431603,0,0,76286,0,1,1 +1774171662.834885,29.76,4,3992.50,53.49,1596.95,2094.43,0.00,0.127019,0.000000,199,0,0.025940,118.835093,82593294,55444139,0,0,76289,0,1,1 +1774171667.833298,11.71,4,3992.50,53.53,1595.68,2095.79,0.00,1.832417,0.000195,238,2,0.024493,42.289624,82594874,55448799,0,0,76291,0,1,1 +1774171672.837162,14.94,4,3992.50,53.90,1582.64,2110.20,0.00,106217.412898,159586.072618,8681529,2831637,40.035189,0.028143,82599351,55450362,0,0,76294,0,1,1 +1774171677.833184,1.61,4,3992.50,53.63,1592.84,2099.69,0.00,3521239399969.640137,3521239346519.199219,21,0,0.007353,0.011557,82599524,55450579,0,0,76296,0,1,1 +1774171682.836048,0.70,4,3992.50,53.64,1592.39,2100.19,0.00,106236.538923,159618.131676,8680755,2831268,0.004409,0.008457,82599644,55450748,0,0,76299,0,1,1 +1774171687.837499,0.80,4,3992.50,53.40,1601.68,2090.91,0.00,3517416308276.120605,3517416254877.928223,237,494,0.005008,0.010288,82599778,55450948,0,0,76301,0,1,1 +1774171692.833228,0.80,4,3992.50,53.43,1600.72,2091.87,0.00,3521445693328.022949,3521445693329.534668,21,0,0.005022,0.010317,82599913,55451150,0,0,76304,0,1,1 +1774171697.833303,0.85,4,3992.50,53.43,1600.85,2091.74,0.00,106295.806161,159707.196819,8680755,2831293,0.005005,0.009311,82600030,55451316,0,0,76306,0,1,1 +1774171702.836009,0.95,4,3992.50,53.37,1602.91,2089.69,0.00,3516534471765.551270,3516534418380.232422,238,2,0.005057,0.010326,82600168,55451519,0,0,76309,0,1,1 +1774171707.837483,1.05,4,3992.50,53.76,1589.95,2104.94,0.00,3517400048606.959473,0.028117,237,494,0.005021,0.010287,82600303,55451719,0,0,76311,0,1,1 +1774171712.835138,0.75,4,3992.50,53.68,1593.37,2101.52,0.00,3520087782971.395020,3520087782972.730957,199,0,0.004439,0.008487,82600424,55451891,0,0,76314,0,1,1 +1774171717.837853,0.65,4,3992.50,53.68,1593.15,2101.74,0.00,1.362639,0.028305,237,494,0.004952,0.008638,82600550,55452062,0,0,76316,0,1,1 +1774171722.835006,0.70,4,3992.50,53.68,1593.16,2101.73,0.00,3520441571586.403809,3520441571587.866699,70,0,0.005100,0.010991,82600690,55452270,0,0,76319,0,1,1 +1774171727.833294,0.65,4,3992.50,53.68,1593.18,2101.71,0.00,106333.773950,159764.618939,8680755,2831564,0.004751,0.009457,82600818,55452456,0,0,76321,0,1,1 +1774171732.837701,0.70,4,3992.50,53.69,1592.96,2101.94,0.00,3515338777901.143066,3515338724535.629395,70,0,0.005018,0.010291,82600953,55452657,0,0,76324,0,1,1 +1774171737.837416,1.40,4,3992.50,53.77,1585.37,2105.05,0.00,1.958901,0.000195,238,2,0.011123,2.418089,82601457,55453373,0,0,76326,0,1,1 +1774171742.838010,11.24,4,3992.50,53.54,1593.79,2096.14,0.00,106282.765054,159717.070611,8680755,2831851,0.023303,37.658730,82602970,55457358,0,0,76329,0,1,1 +1774171747.834898,0.90,4,3992.50,53.36,1600.72,2089.22,0.00,4.111837,8.070258,8681529,2832420,0.003435,0.009530,82603075,55457540,0,0,76331,0,1,1 +1774171752.836661,0.65,4,3992.50,53.37,1600.47,2089.47,0.00,3517196627428.766602,3517196574003.490234,237,494,0.003457,0.009531,82603182,55457723,0,0,76334,0,1,1 +1774171757.837892,0.70,4,3992.50,53.37,1600.26,2089.69,0.00,3517571525383.578613,3517571525385.088379,21,0,0.002741,0.007629,82603266,55457870,0,0,76336,0,1,1 +1774171762.837466,0.75,4,3992.50,53.38,1600.02,2089.92,0.00,0.175015,0.000000,199,0,0.003434,0.009535,82603371,55458053,0,0,76339,0,1,1 +1774171767.834953,1.20,4,3992.50,54.10,1574.13,2118.26,0.00,1.832757,0.000195,238,2,0.003435,0.009529,82603476,55458235,0,0,76341,0,1,1 +1774171772.835048,0.80,4,3992.50,53.67,1591.14,2101.25,0.00,106297.491848,159747.223262,8681529,2832527,0.002759,0.007664,82603561,55458384,0,0,76344,0,1,1 +1774171777.833217,0.65,4,3992.50,53.67,1591.14,2101.25,0.00,3519725731897.637207,3519725678427.313477,238,2,0.002111,0.005787,82603628,55458498,0,0,76346,0,1,1 +1774171782.834905,0.65,4,3992.50,53.67,1591.14,2101.25,0.00,106263.650091,159696.379640,8681529,2832537,0.002829,0.007732,82603719,55458652,0,0,76349,0,1,1 +1774171787.834914,0.80,4,3992.50,53.67,1591.16,2101.24,0.00,3518430636410.031738,3518430582961.199707,199,0,0.003589,0.010294,82603834,55458848,0,0,76351,0,1,1 +1774171792.837419,0.85,4,3992.50,53.67,1591.15,2101.25,0.00,106244.004879,159670.261277,8680755,2832050,0.003432,0.009504,82603939,55459029,0,0,76354,0,1,1 +1774171797.837635,0.95,4,3992.50,53.67,1588.66,2101.22,0.00,0.000000,0.042186,8680755,2832066,0.002746,0.007648,82604023,55459177,0,0,76356,0,1,1 +1774171802.837215,0.95,4,3992.50,53.63,1590.02,2099.86,0.00,3518732460062.261719,3518732406604.883789,21,0,0.003454,0.009543,82604130,55459361,0,0,76359,0,1,1 +1774171807.837239,26.37,4,3992.50,59.42,1368.71,2326.59,0.00,106296.907247,159749.713250,8680764,2832263,47.675808,0.032758,82609362,55461115,0,0,76361,0,1,1 +1774171812.835603,33.69,4,3992.50,59.95,1349.54,2347.16,0.00,3519588787357.738770,3519588733885.666016,237,494,119.607141,0.023202,82621751,55462651,0,0,76364,0,1,1 +1774171817.837858,29.03,4,3992.50,59.84,1353.82,2342.85,0.00,3516851063333.034668,3516851063334.544434,21,0,118.710601,0.022308,82633899,55464128,0,0,76366,0,1,1 +1774171822.834882,29.68,4,3992.50,59.83,1354.35,2342.39,0.00,106364.847654,159845.738308,8681538,2832841,119.634981,0.025019,82645999,55465746,0,0,76369,0,1,1 +1774171827.835323,29.61,4,3992.50,59.79,1355.73,2340.84,0.00,3518126565291.166016,3518126511845.317871,237,494,118.953731,0.023256,82658098,55467330,0,0,76371,0,1,1 +1774171832.833216,30.48,4,3992.50,59.62,1362.60,2334.08,0.00,3519920435770.998047,3519920435772.333984,199,0,119.412916,0.023445,82670192,55468963,0,0,76374,0,1,1 +1774171837.836943,29.82,4,3992.50,59.81,1354.98,2341.73,0.00,1.362363,0.028299,237,494,119.076348,0.023822,82682311,55470426,0,0,76376,0,1,1 +1774171842.836622,29.65,4,3992.50,59.52,1366.15,2330.51,0.00,0.000000,0.000000,237,494,119.170592,0.023552,82694333,55472105,0,0,76379,0,1,1 +1774171847.837061,23.77,4,3992.50,59.73,1358.13,2338.64,0.00,106290.669119,159736.825185,8681539,2832965,119.955620,0.027723,82706471,55474000,0,0,76381,0,1,1 +1774171852.834909,1.51,4,3992.50,54.14,1577.17,2119.59,0.00,3519952356883.481445,0.072004,8680780,2832496,23.250732,0.015976,82709047,55474637,0,0,76384,0,1,1 +1774171857.837212,9.92,4,3992.50,54.49,1563.64,2133.41,0.00,3516817126496.455566,3516817073066.201660,237,494,8.069892,0.056196,82712138,55477099,0,0,76386,0,1,1 +1774171862.834867,17.99,4,3992.50,54.19,1575.23,2121.50,0.00,0.000000,0.000000,237,494,26.156313,0.107832,82720157,55483111,0,0,76389,0,1,1 +1774171867.837985,6.82,4,3992.50,54.21,1574.32,2122.34,0.00,106233.894010,159652.076122,8681554,2834175,6.038594,0.032663,82722167,55484670,0,0,76391,0,1,1 +1774171872.837585,1.50,4,3992.50,53.81,1589.74,2106.91,0.00,3518718374853.518066,3518718321399.254395,21,0,0.005752,0.011698,82722320,55484895,0,0,76394,0,1,1 +1774171877.837189,0.80,4,3992.50,53.80,1590.45,2106.23,0.00,0.175014,0.000000,199,0,0.004812,0.010081,82722450,55485090,0,0,76396,0,1,1 +1774171882.833200,0.90,4,3992.50,53.80,1590.48,2106.22,0.00,3521246054746.502930,0.000000,70,0,0.003944,0.008380,82722558,55485253,0,0,76399,0,1,1 +1774171887.836696,0.80,4,3992.50,53.80,1590.50,2106.20,0.00,0.000000,0.000000,70,0,0.004341,0.008392,82722673,55485418,0,0,76401,0,1,1 +1774171892.834991,1.35,4,3992.50,53.81,1588.65,2106.70,0.00,0.000000,0.000000,70,0,0.004325,0.008402,82722786,55485583,0,0,76404,0,1,1 +1774171897.837519,1.65,4,3992.50,53.66,1594.65,2100.72,0.00,3516658899887.334473,0.000000,21,0,0.005133,0.010428,82722930,55485792,0,0,76406,0,1,1 +1774171902.838085,1.15,4,3992.50,53.82,1588.26,2107.05,0.00,106285.558316,159734.615073,8680780,2834283,0.005022,0.010287,82723065,55485992,0,0,76409,0,1,1 +1774171907.837534,0.75,4,3992.50,53.80,1588.93,2106.45,0.00,3518824825002.770508,3518824771541.727539,70,0,0.004336,0.008403,82723179,55486157,0,0,76411,0,1,1 +1774171912.837553,1.10,4,3992.50,53.60,1596.82,2098.55,0.00,1.490326,0.028320,237,494,0.004983,0.008518,82723338,55486330,0,0,76414,0,1,1 +1774171917.838044,1.25,4,3992.50,54.13,1576.36,2119.17,0.00,3518091983440.703613,3518091983442.165527,70,0,0.004331,0.007321,82723478,55486474,0,0,76416,0,1,1 +1774171922.835639,0.80,4,3992.50,53.95,1582.96,2112.42,0.00,1.959732,0.000195,238,2,0.004227,0.006550,82723611,55486606,0,0,76419,0,1,1 +1774171927.834901,0.90,4,3992.50,53.89,1585.32,2110.07,0.00,3518956680785.541992,3518956680787.374512,199,0,0.004199,0.006492,82723742,55486734,0,0,76421,0,1,1 +1774171932.835274,0.95,4,3992.50,53.87,1586.38,2109.02,0.00,0.000000,0.000000,199,0,0.004752,0.007775,82723895,55486887,0,0,76424,0,1,1 +1774171937.834898,0.95,4,3992.50,53.88,1585.93,2109.46,0.00,3518701653387.083496,0.000000,21,0,0.004453,0.007172,82724035,55487030,0,0,76426,0,1,1 +1774171942.837615,0.80,4,3992.50,53.88,1585.95,2109.45,0.00,0.048021,0.000000,70,0,0.003930,0.006337,82724157,55487156,0,0,76429,0,1,1 +1774171947.837588,1.25,4,3992.50,53.69,1594.21,2101.98,0.00,3518456115658.935059,0.000000,21,0,0.004185,0.006490,82724287,55487284,0,0,76431,0,1,1 +1774171952.837322,0.85,4,3992.50,53.71,1592.65,2102.70,0.00,2.006943,0.000195,238,2,0.003901,0.007309,82724419,55487425,0,0,76434,0,1,1 +1774171957.837744,1.46,4,3992.50,53.45,1602.77,2092.58,0.00,3518140258845.389160,3518140258847.395996,21,0,0.059347,1.903809,82727838,55491257,0,0,76436,0,1,1 +1774171962.837278,2.08,4,3992.50,53.29,1608.68,2086.62,0.00,0.000000,0.000000,21,0,0.128320,4.673563,82736383,55500396,0,0,76439,0,1,1 +1774171967.837722,2.94,4,3992.50,53.22,1611.53,2083.82,0.00,106288.142760,159741.847522,8680780,2834893,0.127358,4.674021,82745010,55509648,0,0,76441,0,1,1 +1774171972.837717,2.28,4,3992.50,53.30,1608.46,2086.88,0.00,3518440326180.689453,3518440272722.139648,70,0,0.126077,4.674856,82753621,55518914,0,0,76444,0,1,1 +1774171977.836562,2.69,4,3992.50,53.51,1601.75,2094.86,0.00,3519250273239.229492,0.000000,21,0,0.123431,4.672400,82762195,55528029,0,0,76446,0,1,1 +1774171982.836985,2.53,4,3992.50,53.18,1614.54,2082.02,0.00,1.538249,0.028318,237,494,0.123110,4.674147,82770747,55537163,0,0,76449,0,1,1 +1774171987.833476,2.69,4,3992.50,53.19,1614.05,2082.54,0.00,3520908065972.395020,3520908065973.906250,21,0,0.124014,4.674007,82779350,55546363,0,0,76451,0,1,1 +1774171992.833302,2.38,4,3992.50,53.45,1603.73,2092.57,0.00,0.000000,0.000000,21,0,0.123896,4.673509,82787920,55555543,0,0,76454,0,1,1 +1774171997.834916,2.58,4,3992.50,53.48,1602.36,2093.71,0.00,1.537882,0.028311,237,494,0.123339,4.673304,82796512,55564702,0,0,76456,0,1,1 +1774172002.837267,2.78,4,3992.50,53.54,1599.52,2096.25,0.00,3516783354293.253418,3516783354294.587891,199,0,0.124694,4.674364,82805097,55573944,0,0,76459,0,1,1 +1774172007.836344,3.04,4,3992.50,53.92,1584.43,2111.03,0.00,0.000000,0.000000,199,0,0.123338,4.672180,82813651,55583068,0,0,76461,0,1,1 +1774172012.834879,2.68,4,3992.50,53.58,1597.27,2097.90,0.00,106328.570215,159831.972717,8680781,2835346,0.123681,4.674210,82822213,55592242,0,0,76464,0,1,1 +1774172017.833208,2.78,4,3992.50,53.22,1611.35,2083.50,0.00,3519613601008.332520,3519613547502.898926,21,0,0.124609,4.673242,82830799,55601434,0,0,76466,0,1,1 +1774172022.837970,2.63,4,3992.50,53.23,1610.61,2084.00,0.00,1.536915,0.028293,237,494,0.122822,4.673001,82839377,55610535,0,0,76469,0,1,1 +1774172027.834889,2.58,4,3992.50,53.35,1605.42,2088.92,0.00,3520606765902.236328,3520606765903.747559,21,0,0.126475,4.673968,82848004,55619804,0,0,76471,0,1,1 +1774172032.833192,2.38,4,3992.50,53.53,1598.24,2095.74,0.00,0.048063,0.000000,70,0,0.123010,4.673200,82856488,55628919,0,0,76474,0,1,1 +1774172037.837139,2.98,4,3992.50,53.61,1599.40,2098.84,0.00,106213.703657,159686.807663,8680781,2835619,0.123193,4.672431,82864940,55638014,0,0,76476,0,1,1 +1774172042.836518,2.33,4,3992.50,53.40,1604.84,2090.87,0.00,3518873965159.728516,3518873911636.311523,237,494,0.124929,4.675386,82873489,55647258,0,0,76479,0,1,1 +1774172047.837058,2.53,4,3992.50,53.34,1607.02,2088.38,0.00,106284.563286,159795.600983,8680781,2835692,0.123700,4.673485,82882045,55656453,0,0,76481,0,1,1 +1774172052.834925,2.28,4,3992.50,53.38,1605.19,2089.94,0.00,4.111031,0.040056,8681555,2836210,0.122556,4.672899,82890578,55665556,0,0,76484,0,1,1 +1774172057.834886,2.58,4,3992.50,53.39,1604.31,2090.51,0.00,3518464923789.356934,3518464870275.687012,238,2,0.121811,4.673109,82899068,55674643,0,0,76486,0,1,1 +1774172062.836978,2.58,4,3992.50,53.45,1601.99,2092.53,0.00,3516965296302.708008,3516965296304.714355,21,0,0.123429,4.674176,82907586,55683849,0,0,76489,0,1,1 +1774172067.835009,2.84,4,3992.50,53.79,1587.38,2106.08,0.00,106343.580451,159904.811466,8681555,2836460,0.123520,4.672191,82916147,55692941,0,0,76491,0,1,1 +1774172072.837385,2.38,4,3992.50,53.54,1597.02,2096.12,0.00,0.000000,0.034359,8681555,2836505,0.124539,4.674186,82924729,55702181,0,0,76494,0,1,1 +1774172077.837384,2.63,4,3992.50,53.50,1598.28,2094.57,0.00,3518437888600.528809,3518437835060.348145,21,0,0.122918,4.672134,82933327,55711246,0,0,76496,0,1,1 +1774172082.837143,2.58,4,3992.50,53.49,1598.19,2094.37,0.00,0.000000,0.000000,21,0,0.124606,4.674669,82941849,55720500,0,0,76499,0,1,1 +1774172087.836056,2.38,4,3992.50,53.50,1597.61,2094.66,0.00,0.175038,0.000000,199,0,0.123858,4.673147,82950399,55729634,0,0,76501,0,1,1 +1774172092.837111,2.18,4,3992.50,53.54,1595.65,2096.32,0.00,0.000000,0.000000,199,0,0.123571,4.673742,82958908,55738851,0,0,76504,0,1,1 +1774172097.837178,3.64,4,3992.50,53.69,1591.88,2102.00,0.00,0.000000,0.000000,199,0,0.125589,4.674800,82967502,55748138,0,0,76506,0,1,1 +1774172102.834896,2.38,4,3992.50,53.52,1598.12,2095.45,0.00,106350.043069,159942.801390,8681555,2836807,0.122099,4.673179,82976049,55757260,0,0,76509,0,1,1 +1774172107.834903,2.28,4,3992.50,53.51,1598.09,2095.20,0.00,3518431970598.170898,3518431917028.607422,237,494,0.125527,4.673900,82984647,55766490,0,0,76511,0,1,1 +1774172112.834878,2.73,4,3992.50,53.74,1588.82,2104.10,0.00,3518455438703.155762,3518455438704.491211,199,0,0.123249,4.674206,82993194,55775655,0,0,76514,0,1,1 +1774172117.834907,2.13,4,3992.50,53.73,1589.14,2103.56,0.00,106296.783009,159896.725020,8680781,2836562,0.124490,4.674300,83001803,55784868,0,0,76516,0,1,1 +1774172122.833206,2.53,4,3992.50,53.68,1590.61,2101.80,0.00,0.000000,0.014751,8680781,2836586,0.123779,4.673191,83010356,55794015,0,0,76519,0,1,1 +1774172127.837474,2.99,4,3992.50,53.90,1582.34,2110.25,0.00,3515436732878.051270,3515436679323.612793,70,0,0.123336,4.673038,83018918,55803180,0,0,76521,0,1,1 +1774172132.835030,2.28,4,3992.50,53.79,1586.36,2106.10,0.00,1.959747,0.000195,238,2,0.123846,4.673842,83027477,55812359,0,0,76524,0,1,1 +1774172137.833212,2.38,4,3992.50,53.68,1590.60,2101.68,0.00,3519717030789.518555,3519717030791.351074,199,0,0.123985,4.672936,83036052,55821497,0,0,76526,0,1,1 +1774172142.834878,2.63,4,3992.50,53.82,1585.07,2107.18,0.00,3517265197732.538086,0.000000,21,0,0.123858,4.673904,83044638,55830684,0,0,76529,0,1,1 +1774172147.837823,2.63,4,3992.50,53.69,1590.26,2102.01,0.00,106239.128324,159832.142565,8681555,2837386,0.127303,4.674094,83053257,55839934,0,0,76531,0,1,1 +1774172152.834896,2.23,4,3992.50,53.68,1590.47,2101.81,0.00,3520498112698.862305,3520498112702.959961,8680781,2836911,0.124003,4.672334,83061837,55849028,0,0,76534,0,1,1 +1774172157.833412,2.89,4,3992.50,53.65,1579.84,2100.36,0.00,3519481350299.830078,3519481296655.067383,199,0,0.125232,4.674697,83070460,55858261,0,0,76536,0,1,1 +1774172162.836578,2.53,4,3992.50,53.36,1590.83,2089.19,0.00,106230.154935,159825.152631,8680781,2836968,0.124850,4.673413,83079035,55867464,0,0,76539,0,1,1 +1774172167.837604,2.38,4,3992.50,53.57,1582.72,2097.42,0.00,3517715013487.360840,3517714959868.103027,237,494,0.122975,4.672422,83087621,55876560,0,0,76541,0,1,1 +1774172172.837486,3.69,4,3992.50,53.62,1582.71,2099.39,0.00,3518520578819.368164,3518520578820.878418,21,0,0.127337,4.674478,83096185,55885825,0,0,76544,0,1,1 +1774172177.835474,13.76,4,3992.50,53.97,1572.84,2113.21,0.00,0.048066,0.000000,70,0,40.380492,4.674789,83123560,55899747,0,0,76546,0,1,1 +1774172182.834891,2.52,4,3992.50,53.27,1600.26,2085.57,0.00,3518847350247.368652,0.000000,21,0,0.083647,2.970245,83129131,55905632,0,0,76549,0,1,1 +1774172187.837693,1.71,4,3992.50,53.72,1587.20,2103.08,0.00,106255.522830,159869.611548,8680924,2837509,0.006203,0.011338,83129307,55905837,0,0,76551,0,1,1 +1774172192.837578,1.72,4,3992.50,53.60,1591.66,2098.43,0.00,3518518153043.198242,3518518099395.820312,238,2,0.113243,3.865767,83136600,55913656,0,0,76554,0,1,1 +1774172197.837605,2.43,4,3992.50,53.37,1600.20,2089.62,0.00,0.000000,0.000000,238,2,0.124941,4.674285,83145158,55922877,0,0,76556,0,1,1 +1774172202.833317,2.58,4,3992.50,53.36,1600.31,2089.32,0.00,0.000000,0.000000,238,2,0.123621,4.672380,83153640,55931956,0,0,76559,0,1,1 +1774172207.838085,2.32,4,3992.50,53.37,1599.63,2089.61,0.00,106211.776086,159806.891185,8680924,2837651,0.123438,4.673514,83162172,55941125,0,0,76561,0,1,1 +1774172212.837399,2.18,4,3992.50,53.34,1600.43,2088.49,0.00,3518919835732.818359,3518919782081.239258,21,0,0.124606,4.673720,83170667,55950320,0,0,76564,0,1,1 +1774172217.834872,2.84,4,3992.50,53.59,1590.79,2097.99,0.00,0.175089,0.000000,199,0,0.123904,4.673050,83179206,55959460,0,0,76566,0,1,1 +1774172222.837492,2.48,4,3992.50,53.62,1589.22,2099.16,0.00,106263.316134,159876.139615,8681698,2838313,0.123450,4.672924,83187737,55968600,0,0,76569,0,1,1 +1774172227.837448,2.58,4,3992.50,53.93,1576.61,2111.45,0.00,3518468241009.491211,3518468187366.761230,237,494,0.123663,4.673144,83196294,55977730,0,0,76571,0,1,1 +1774172232.837169,2.68,4,3992.50,53.71,1584.85,2102.88,0.00,0.468483,3518633735836.946289,238,2,0.115501,4.351965,83204275,55986169,0,0,76574,0,1,1 +1774172237.834905,1.20,4,3992.50,53.55,1591.10,2096.62,0.00,3520030664810.787598,3520030664812.620605,199,0,0.009732,0.185051,83204772,55986719,0,0,76576,0,1,1 +1774172242.833874,0.85,4,3992.50,53.49,1593.45,2094.27,0.00,3519163402327.749023,0.000000,21,0,0.002505,0.005755,83204866,55986832,0,0,76579,0,1,1 +1774172247.837586,1.05,4,3992.50,53.66,1595.73,2100.87,0.00,106240.286194,159865.440988,8681698,2838655,0.002513,0.006375,83204960,55986947,0,0,76581,0,1,1 +1774172252.837906,0.60,4,3992.50,53.51,1601.67,2094.95,0.00,3518212193109.507812,3518212139447.961914,21,0,0.002663,0.006300,83205063,55987066,0,0,76584,0,1,1 +1774172257.837973,0.85,4,3992.50,53.52,1601.24,2095.37,0.00,0.000000,0.000000,21,0,0.002994,0.006639,83205174,55987197,0,0,76586,0,1,1 +1774172262.834984,0.65,4,3992.50,53.52,1601.25,2095.37,0.00,0.000000,0.000000,21,0,0.002783,0.006343,83205278,55987318,0,0,76589,0,1,1 +1774172267.834875,0.65,4,3992.50,53.52,1601.25,2095.36,0.00,0.048048,0.000000,70,0,0.002420,0.005750,83205366,55987429,0,0,76591,0,1,1 +1774172272.834907,0.80,4,3992.50,53.52,1601.25,2095.36,0.00,0.126952,0.000000,199,0,0.003317,0.006863,83205487,55987564,0,0,76594,0,1,1 +1774172277.836106,0.95,4,3992.50,53.64,1598.39,2100.27,0.00,1.363052,0.028314,237,494,0.002862,0.006750,83205596,55987692,0,0,76596,0,1,1 +1774172282.837021,0.70,4,3992.50,53.50,1604.09,2094.57,0.00,3517793250092.051758,3517793250093.513672,70,0,0.003176,0.006892,83205719,55987831,0,0,76599,0,1,1 +1774172287.836809,0.65,4,3992.50,53.50,1604.09,2094.57,0.00,3518586182303.524414,0.000000,21,0,0.002548,0.005710,83205816,55987940,0,0,76601,0,1,1 +1774172292.836968,0.70,4,3992.50,53.50,1604.11,2094.56,0.00,1.538330,0.028319,237,494,0.002574,0.005746,83205914,55988052,0,0,76604,0,1,1 +1774172297.834377,0.65,4,3992.50,53.50,1603.86,2094.80,0.00,3520261320995.721191,3520261320997.231934,21,0,0.002681,0.006174,83206019,55988171,0,0,76606,0,1,1 +1774172302.835105,1.50,4,3992.50,53.50,1605.07,2094.64,0.00,0.048040,0.000000,70,0,0.005659,0.009657,83206182,55988352,0,0,76609,0,1,1 +1774172307.833258,22.37,4,3992.50,60.66,1321.06,2375.13,0.00,3519737932259.704102,0.000000,21,0,2.421165,0.069189,83211118,55992548,0,0,76611,0,1,1 +1774172312.833233,2.28,4,3992.50,60.45,1329.36,2366.78,0.00,106315.598364,160001.238299,8680924,2838510,4.713098,0.128827,83220376,56001179,0,0,76614,0,1,1 +1774172317.833754,2.03,4,3992.50,60.41,1331.50,2365.07,0.00,3518070260718.997559,3518070207037.214844,238,2,4.675498,0.129977,83229702,56009852,0,0,76616,0,1,1 +1774172322.835048,2.23,4,3992.50,60.50,1327.67,2368.87,0.00,106289.675214,159959.104448,8681698,2839036,4.702165,0.126795,83238970,56018455,0,0,76619,0,1,1 +1774172327.834418,2.33,4,3992.50,60.35,1334.13,2363.00,0.00,3518880263351.512695,3518880263355.601074,8680924,2838556,4.682482,0.128996,83248265,56027119,0,0,76621,0,1,1 +1774172332.833218,2.23,4,3992.50,60.53,1327.33,2369.76,0.00,3519281630915.854492,3519281577217.525391,70,0,4.667806,0.128106,83257512,56035738,0,0,76624,0,1,1 +1774172337.834180,2.59,4,3992.50,60.98,1316.89,2387.32,0.00,0.126929,0.000000,199,0,4.694713,0.129149,83266776,56044395,0,0,76626,0,1,1 +1774172342.834871,2.54,4,3992.50,60.67,1328.92,2375.40,0.00,3517950794491.293945,0.000000,21,0,4.699278,0.128331,83276104,56052941,0,0,76629,0,1,1 +1774172347.833411,2.23,4,3992.50,60.61,1331.78,2372.93,0.00,2.007422,0.000195,238,2,4.674286,0.127485,83285299,56061507,0,0,76631,0,1,1 +1774172352.834901,2.18,4,3992.50,60.65,1330.44,2374.41,0.00,3517388958734.144531,3517388958736.151367,21,0,4.682125,0.128675,83294595,56070135,0,0,76634,0,1,1 +1774172357.837320,2.23,4,3992.50,60.61,1332.04,2373.06,0.00,1.537635,0.028307,237,494,4.676761,0.128962,83303827,56078799,0,0,76636,0,1,1 +1774172362.833392,2.08,4,3992.50,60.74,1327.09,2378.23,0.00,3521203703135.908691,3521203703137.245117,199,0,4.689873,0.129186,83313062,56087397,0,0,76639,0,1,1 +1774172367.833426,2.28,4,3992.50,60.75,1320.98,2378.42,0.00,3518413546848.240234,0.000000,21,0,4.702363,0.128577,83322333,56096058,0,0,76641,0,1,1 +1774172372.837712,2.49,4,3992.50,60.25,1340.68,2358.77,0.00,106228.113801,159863.661922,8681698,2839271,4.679736,0.128870,83331669,56104679,0,0,76644,0,1,1 +1774172377.836026,2.69,4,3992.50,60.53,1329.41,2370.02,0.00,3519623851448.032227,3519623797746.390137,238,2,4.678171,0.127740,83340930,56113269,0,0,76646,0,1,1 +1774172382.837829,2.33,4,3992.50,60.39,1335.05,2364.52,0.00,0.000000,0.000000,238,2,4.701933,0.131422,83350317,56121952,0,0,76649,0,1,1 +1774172387.833228,2.49,4,3992.50,60.18,1343.29,2356.14,0.00,3521677956247.899414,3521677956249.859863,70,0,4.687699,0.128318,83359565,56130488,0,0,76651,0,1,1 +1774172392.833449,2.03,4,3992.50,60.55,1328.91,2370.54,0.00,1.490266,0.028319,237,494,4.706073,0.128169,83368833,56139127,0,0,76654,0,1,1 +1774172397.835305,2.38,4,3992.50,60.58,1332.46,2371.90,0.00,0.000000,0.000000,237,494,4.674733,0.127850,83378117,56147770,0,0,76656,0,1,1 +1774172402.833191,2.39,4,3992.50,60.43,1338.39,2366.00,0.00,0.468655,3519925297429.808594,238,2,4.669063,0.127231,83387293,56156365,0,0,76659,0,1,1 +1774172407.834855,2.18,4,3992.50,60.49,1335.96,2368.43,0.00,106277.704799,159947.634004,8680933,2838994,4.701837,0.129612,83396585,56165064,0,0,76661,0,1,1 +1774172412.833992,2.68,4,3992.50,60.42,1338.73,2365.62,0.00,3519044643103.861816,3519044589408.806152,21,0,4.702124,0.127825,83405881,56173652,0,0,76664,0,1,1 +1774172417.833201,2.18,4,3992.50,60.44,1338.21,2366.38,0.00,0.000000,0.000000,21,0,4.682288,0.128251,83415152,56182268,0,0,76666,0,1,1 +1774172422.837374,1.98,4,3992.50,60.45,1337.96,2366.63,0.00,106230.528308,159867.493158,8681707,2839545,4.654495,0.129710,83424505,56190884,0,0,76669,0,1,1 +1774172427.837409,2.18,4,3992.50,60.45,1337.85,2366.81,0.00,3518413297742.318848,0.003320,8680933,2839070,4.693617,0.127109,83433795,56199480,0,0,76671,0,1,1 +1774172432.834878,2.34,4,3992.50,60.41,1338.97,2365.16,0.00,3520218805697.209961,3520218751984.130371,70,0,4.674129,0.126257,83443025,56207983,0,0,76674,0,1,1 +1774172437.835981,2.13,4,3992.50,60.04,1353.46,2350.67,0.00,0.126925,0.000000,199,0,4.707835,0.127316,83452294,56216599,0,0,76676,0,1,1 +1774172442.835079,2.29,4,3992.50,60.17,1348.28,2355.87,0.00,106334.097350,160029.863845,8680933,2839141,4.712124,0.130026,83461657,56225231,0,0,76679,0,1,1 +1774172447.833362,2.74,4,3992.50,60.49,1335.66,2368.44,0.00,3519645567947.905273,3519645514242.053711,237,494,4.686034,0.131544,83470917,56233818,0,0,76681,0,1,1 +1774172452.834875,2.13,4,3992.50,60.44,1337.89,2366.25,0.00,3517373396181.553711,3517373396182.888672,199,0,4.667533,0.129036,83480183,56242426,0,0,76684,0,1,1 +1774172457.833710,2.63,4,3992.50,60.81,1324.41,2381.01,0.00,3519257104991.654785,0.000000,21,0,4.702699,0.127525,83489469,56251054,0,0,76686,0,1,1 +1774172462.838000,2.18,4,3992.50,60.56,1333.96,2370.95,0.00,0.000000,0.000000,21,0,4.678621,0.127868,83498700,56259609,0,0,76689,0,1,1 +1774172467.833229,2.69,4,3992.50,60.71,1327.99,2376.95,0.00,0.175167,0.000000,199,0,4.703703,0.129842,83507973,56268243,0,0,76691,0,1,1 +1774172472.833257,2.03,4,3992.50,60.45,1338.34,2366.65,0.00,3518417847733.292480,0.000000,21,0,4.679906,0.128328,83517265,56276850,0,0,76694,0,1,1 +1774172477.837457,2.38,4,3992.50,60.71,1328.18,2376.82,0.00,106229.950708,159866.814679,8681707,2839780,4.687133,0.127608,83526465,56285420,0,0,76696,0,1,1 +1774172482.833746,1.98,4,3992.50,60.54,1334.85,2370.12,0.00,3521050500871.382812,3521050500875.476562,8680933,2839301,4.668853,0.126010,83535683,56293927,0,0,76699,0,1,1 +1774172487.837274,2.89,4,3992.50,60.84,1332.06,2382.11,0.00,3515956234709.425293,3515956181059.259766,238,2,4.687142,0.128581,83544944,56302503,0,0,76701,0,1,1 +1774172492.837169,2.28,4,3992.50,60.50,1345.49,2368.61,0.00,3518511537437.596191,3518511537439.428223,199,0,4.700880,0.129906,83554308,56311120,0,0,76704,0,1,1 +1774172497.834572,2.23,4,3992.50,60.61,1341.11,2372.99,0.00,1.364087,0.028335,237,494,4.670656,0.127371,83563529,56319669,0,0,76706,0,1,1 +1774172502.833200,2.03,4,3992.50,60.48,1346.08,2368.06,0.00,3519403423081.911621,3519403423083.422363,21,0,4.684172,0.128438,83572810,56328271,0,0,76709,0,1,1 +1774172507.833949,1.98,4,3992.50,60.63,1340.27,2373.87,0.00,106299.148547,159977.230455,8680933,2839429,4.668498,0.128509,83582063,56336892,0,0,76711,0,1,1 +1774172512.835933,2.38,4,3992.50,60.97,1326.88,2387.25,0.00,3517041564393.253906,3517041510726.412598,238,2,4.704076,0.128886,83591364,56345518,0,0,76714,0,1,1 +1774172517.836895,2.38,4,3992.50,60.81,1335.84,2380.77,0.00,3517760917235.736816,0.028120,237,494,4.702043,0.127380,83600600,56354145,0,0,76716,0,1,1 +1774172522.834093,2.23,4,3992.50,60.79,1334.40,2380.03,0.00,106373.136598,160090.926708,8680933,2839494,4.676684,0.125607,83609764,56362711,0,0,76719,0,1,1 +1774172527.833224,2.03,4,3992.50,60.68,1338.48,2375.95,0.00,3519049186982.841309,3519049133285.307617,238,2,4.676587,0.128948,83619058,56371340,0,0,76721,0,1,1 +1774172532.834840,3.20,4,3992.50,60.76,1335.63,2378.80,0.00,3517300017246.876465,3517300017248.882812,21,0,4.681982,0.129885,83628372,56380017,0,0,76724,0,1,1 +1774172537.836040,2.03,4,3992.50,60.71,1337.34,2377.11,0.00,0.048035,0.000000,70,0,4.695525,0.126339,83637538,56388613,0,0,76726,0,1,1 +1774172542.837339,1.93,4,3992.50,60.80,1333.89,2380.54,0.00,1.489945,0.028313,237,494,4.700520,0.128307,83646900,56397259,0,0,76729,0,1,1 +1774172547.837426,2.49,4,3992.50,60.98,1311.35,2387.55,0.00,106311.697946,159998.554388,8680933,2839605,4.663532,0.128105,83656083,56405865,0,0,76731,0,1,1 +1774172552.833497,2.08,4,3992.50,60.63,1325.42,2373.62,0.00,3521204637720.485352,3521204583991.802246,199,0,4.708618,0.129664,83665433,56414519,0,0,76734,0,1,1 +1774172557.837739,2.13,4,3992.50,60.50,1330.15,2368.73,0.00,1.830283,0.000195,238,2,4.679114,0.128581,83674727,56423144,0,0,76736,0,1,1 +1774172562.833745,2.18,4,3992.50,60.43,1332.78,2366.12,0.00,3521250225825.136230,0.028147,237,494,4.687479,0.126552,83683931,56431727,0,0,76739,0,1,1 +1774172567.833975,1.98,4,3992.50,60.25,1340.05,2358.85,0.00,3518275627147.898926,3518275627149.409180,21,0,4.694991,0.128157,83693162,56440343,0,0,76741,0,1,1 +1774172572.833948,2.23,4,3992.50,60.36,1335.66,2363.21,0.00,106315.653002,160002.273201,8680933,2839703,4.685818,0.130755,83702470,56449029,0,0,76744,0,1,1 +1774172577.833274,2.59,4,3992.50,60.73,1320.90,2377.58,0.00,3518910900698.089844,3518910847002.520020,238,2,4.681704,0.129618,83711823,56457658,0,0,76746,0,1,1 +1774172582.837082,1.83,4,3992.50,60.61,1325.30,2373.20,0.00,3515759973131.046387,3515759973133.003418,70,0,4.658777,0.127777,83721016,56466233,0,0,76749,0,1,1 +1774172587.837881,2.18,4,3992.50,60.64,1324.39,2374.11,0.00,1.490094,0.028316,237,494,4.703336,0.128542,83730338,56474912,0,0,76751,0,1,1 +1774172592.838006,2.13,4,3992.50,60.39,1334.16,2364.36,0.00,3518349715264.612305,3518349715266.122559,21,0,4.677546,0.129454,83739633,56483564,0,0,76754,0,1,1 +1774172597.837423,2.03,4,3992.50,60.44,1331.99,2366.53,0.00,2.007070,0.000195,238,2,4.718550,0.126145,83748910,56492214,0,0,76756,0,1,1 +1774172602.833668,4.68,4,3992.50,60.40,1333.59,2364.95,0.00,3521081710962.312988,3521081710964.272949,70,0,4.672153,0.131335,83758377,56500881,0,0,76759,0,1,1 +1774172607.836083,14.19,4,3992.50,61.27,1308.66,2398.99,0.00,0.000000,0.000000,70,0,15.381350,0.228765,83777622,56515972,0,0,76761,0,1,1 +1774172612.836790,12.02,4,3992.50,61.37,1304.71,2402.91,0.00,106300.019370,159979.637779,8680934,2840729,16.479718,0.227988,83797026,56531410,0,0,76764,0,1,1 +1774172617.836073,13.11,4,3992.50,60.81,1326.85,2380.76,0.00,3518941114171.341797,3518941060474.986816,237,494,22.752748,0.284750,83822003,56550976,0,0,76766,0,1,1 +1774172622.837638,3.74,4,3992.50,60.95,1321.34,2386.28,0.00,3517336246759.644043,3517336246761.105957,70,0,4.703015,0.136091,83831547,56559702,0,0,76769,0,1,1 +1774172627.837438,3.25,4,3992.50,60.71,1330.55,2377.07,0.00,1.958868,0.000195,238,2,4.567356,1.538862,83843097,56570868,0,0,76771,0,1,1 +1774172632.837332,3.83,4,3992.50,60.80,1327.19,2380.42,0.00,0.000000,0.000000,238,2,4.678057,4.576046,83860585,56588054,0,0,76774,0,1,1 +1774172637.837917,3.68,4,3992.50,60.94,1322.73,2385.80,0.00,106300.659032,159984.353138,8680934,2841540,4.515860,4.675793,83877430,56604857,0,0,76776,0,1,1 +1774172642.833392,3.58,4,3992.50,60.73,1330.93,2377.59,0.00,4.113000,0.206339,8681708,2842266,4.666229,4.634875,83894641,56621942,0,0,76779,0,1,1 +1774172647.833979,3.57,4,3992.50,60.83,1327.02,2381.50,0.00,3518024053472.708984,3518023999792.948242,238,2,4.652257,4.400650,83911458,56638626,0,0,76781,0,1,1 +1774172652.837261,3.51,4,3992.50,60.81,1327.76,2380.78,0.00,3516129151385.179688,0.028107,237,494,4.622713,4.499715,83928353,56655418,0,0,76784,0,1,1 +1774172657.838157,3.53,4,3992.50,60.94,1322.65,2385.87,0.00,3517806720122.389160,3517806720123.898926,21,0,4.629654,4.675779,83945635,56672535,0,0,76786,0,1,1 +1774172662.837465,3.32,4,3992.50,61.13,1315.16,2393.32,0.00,106333.908227,160039.455911,8681708,2842444,4.672981,4.586838,83962731,56689553,0,0,76789,0,1,1 +1774172667.836930,3.73,4,3992.50,61.19,1305.59,2395.92,0.00,3518813781728.199707,3518813728022.824707,237,494,4.556688,4.610412,83979706,56706500,0,0,76791,0,1,1 +1774172672.833262,3.48,4,3992.50,60.93,1315.51,2385.64,0.00,0.468801,3521020138414.393066,238,2,4.570078,4.648043,83996677,56723377,0,0,76794,0,1,1 +1774172677.834180,3.52,4,3992.50,60.69,1324.70,2376.16,0.00,106297.662979,160014.422282,8681708,2842664,4.516072,4.563790,84013358,56739943,0,0,76796,0,1,1 +1774172682.837660,3.47,4,3992.50,60.68,1324.70,2375.88,0.00,3515990342466.641602,3515990288777.377930,238,2,4.423413,4.638323,84030096,56756609,0,0,76799,0,1,1 +1774172687.835040,3.73,4,3992.50,60.65,1325.76,2374.62,0.00,106368.821165,160127.732768,8680934,2842228,4.607780,4.676087,84047278,56773722,0,0,76801,0,1,1 +1774172692.834377,3.42,4,3992.50,60.47,1332.55,2367.71,0.00,3518903752842.155273,3518903699104.290039,238,2,4.531460,4.218789,84063422,56789844,0,0,76804,0,1,1 +1774172697.833188,3.58,4,3992.50,60.74,1319.64,2377.97,0.00,0.000000,0.000000,238,2,4.535326,4.664697,84080305,56806782,0,0,76806,0,1,1 +1774172702.836545,4.33,4,3992.50,60.50,1328.88,2368.67,0.00,0.000000,0.000000,238,2,4.355620,4.618148,84096943,56823234,0,0,76809,0,1,1 +1774172707.835329,3.57,4,3992.50,60.54,1327.14,2370.42,0.00,3519293708541.379395,3519293708543.211426,199,0,4.609734,4.448338,84113670,56839916,0,0,76811,0,1,1 +1774172712.836823,3.57,4,3992.50,60.53,1327.82,2369.76,0.00,3517386010638.134766,0.000000,21,0,4.593605,4.639109,84130670,56856861,0,0,76814,0,1,1 +1774172717.833680,3.22,4,3992.50,60.60,1325.07,2372.51,0.00,106381.956799,160171.741638,8680934,2842646,4.603000,4.426691,84147296,56873432,0,0,76816,0,1,1 +1774172722.833261,3.57,4,3992.50,60.67,1322.13,2375.55,0.00,3518731357181.604980,3518731303421.136719,21,0,4.546725,4.584833,84164136,56890197,0,0,76819,0,1,1 +1774172727.833189,3.68,4,3992.50,60.96,1309.72,2386.81,0.00,0.175003,0.000000,199,0,4.618176,4.457986,84180825,56906949,0,0,76821,0,1,1 +1774172732.834855,3.52,4,3992.50,61.00,1308.21,2388.24,0.00,1.831226,0.000195,238,2,4.646603,4.365639,84197515,56923584,0,0,76824,0,1,1 +1774172737.833246,3.58,4,3992.50,61.10,1304.13,2392.38,0.00,106347.302635,160149.447570,8680934,2842960,4.549098,4.471839,84214125,56940133,0,0,76826,0,1,1 +1774172742.837709,3.16,4,3992.50,61.09,1304.55,2391.98,0.00,0.000000,0.013269,8680934,2842985,4.602172,4.517669,84231026,56956905,0,0,76829,0,1,1 +1774172747.837484,3.67,4,3992.50,60.96,1309.77,2386.64,0.00,3518595753237.758789,3518595699450.489746,238,2,4.486302,4.675078,84247874,56973737,0,0,76831,0,1,1 +1774172752.837284,3.47,4,3992.50,60.91,1311.68,2384.69,0.00,3518577805620.756348,3518577805622.588379,199,0,4.753929,4.432168,84264869,56990622,0,0,76834,0,1,1 +1774172757.834878,3.83,4,3992.50,61.12,1303.16,2393.04,0.00,106370.205253,160175.110136,8681708,2843560,4.569113,4.621213,84281896,57007536,0,0,76836,0,1,1 +1774172762.833389,3.58,4,3992.50,60.76,1317.38,2378.84,0.00,3519485562944.383301,3519485509149.519531,21,0,4.710240,4.674885,84299170,57024708,0,0,76839,0,1,1 +1774172767.833805,3.72,4,3992.50,60.59,1324.03,2372.14,0.00,1.538251,0.028318,237,494,4.730554,4.626884,84316518,57042043,0,0,76841,0,1,1 +1774172772.835508,3.27,4,3992.50,60.60,1323.57,2372.57,0.00,3517239105697.693359,3517239105699.027832,199,0,4.637987,4.517723,84333362,57058821,0,0,76844,0,1,1 +1774172777.836393,3.27,4,3992.50,60.45,1329.25,2366.84,0.00,1.363138,0.028315,237,494,4.511934,4.605941,84350255,57075681,0,0,76846,0,1,1 +1774172782.837435,3.82,4,3992.50,60.59,1324.02,2372.11,0.00,3517704693313.029297,3517704693314.491211,70,0,4.665082,4.595764,84367431,57092764,0,0,76849,0,1,1 +1774172787.835386,3.67,4,3992.50,60.92,1318.35,2384.97,0.00,1.490943,0.028332,237,494,4.595860,4.675849,84384494,57109810,0,0,76851,0,1,1 +1774172792.834148,3.32,4,3992.50,60.78,1323.61,2379.68,0.00,3519308914249.286621,3519308914250.622070,199,0,4.404066,4.602122,84401233,57126358,0,0,76854,0,1,1 +1774172797.837876,3.77,4,3992.50,60.82,1322.12,2381.12,0.00,3515815390108.219727,0.000000,70,0,4.492821,4.599426,84417977,57143106,0,0,76856,0,1,1 +1774172802.833221,3.53,4,3992.50,61.03,1313.69,2389.58,0.00,106414.119518,160301.083871,8680934,2843649,4.683649,4.637858,84435162,57160190,0,0,76859,0,1,1 +1774172807.837943,3.42,4,3992.50,60.71,1326.30,2376.77,0.00,3515117547179.625488,3515117493393.677246,21,0,4.019558,4.621500,84451113,57176106,0,0,76861,0,1,1 +1774172812.833495,39.74,4,3992.50,60.26,1343.75,2359.39,0.00,0.000000,0.000000,21,0,108.299925,47.698418,84473929,57191614,0,0,76864,0,1,1 +1774172817.837392,29.67,4,3992.50,59.94,1357.32,2346.80,0.00,1.537181,0.028298,237,494,123.291977,0.066048,84489222,57196632,0,0,76866,0,1,1 +1774172822.836718,31.03,4,3992.50,59.96,1356.65,2347.47,0.00,106327.909502,160230.819247,8680943,2844137,120.451982,0.053030,84503060,57200636,0,0,76869,0,1,1 +1774172827.835688,30.76,4,3992.50,59.51,1368.27,2330.11,0.00,0.000000,0.076871,8680943,2844198,120.061586,0.061672,84516852,57205272,0,0,76871,0,1,1 +1774172832.834895,15.67,4,3992.50,53.28,1612.37,2086.13,0.00,4.172439,0.091128,8681735,2844729,104.034292,0.063638,84529165,57209737,0,0,76874,0,1,1 +1774172837.837958,14.65,4,3992.50,58.14,1422.14,2276.36,0.00,17.504120,0.286446,8681858,2844873,39.242560,0.028639,84533610,57211341,0,0,76876,0,1,1 +1774172842.834910,1.15,4,3992.50,53.32,1610.84,2087.65,0.00,3520583399459.460938,3520583345553.704590,21,0,0.807288,0.006987,84533830,57211527,0,0,76879,0,1,1 +1774172847.834898,11.31,4,3992.50,53.60,1599.30,2098.60,0.00,0.000000,0.000000,21,0,0.029677,40.071085,84535827,57216102,0,0,76881,0,1,1 +1774172852.837371,1.55,4,3992.50,53.70,1595.55,2102.34,0.00,0.048023,0.000000,70,0,0.004145,0.010713,84535947,57216305,0,0,76884,0,1,1 +1774172857.835393,1.00,4,3992.50,53.46,1604.80,2093.09,0.00,0.127003,0.000000,199,0,0.003422,0.009528,84536051,57216487,0,0,76886,0,1,1 +1774172862.837435,0.90,4,3992.50,53.47,1604.33,2093.56,0.00,3517000615421.243652,0.000000,21,0,0.003440,0.009538,84536157,57216671,0,0,76889,0,1,1 +1774172867.837515,0.95,4,3992.50,53.43,1605.83,2092.07,0.00,106330.986780,160241.616621,8681084,2844926,0.002747,0.007623,84536241,57216817,0,0,76891,0,1,1 +1774172872.837407,1.15,4,3992.50,53.45,1605.32,2092.57,0.00,0.000000,0.008594,8681084,2844932,0.004954,0.011313,84536360,57217025,0,0,76894,0,1,1 +1774172877.833593,1.31,4,3992.50,53.64,1603.20,2100.15,0.00,3521123460596.446777,3521123406643.614746,199,0,0.003461,0.009519,84536467,57217206,0,0,76896,0,1,1 +1774172882.833503,0.85,4,3992.50,53.45,1610.59,2092.75,0.00,1.831869,0.000195,238,2,0.002855,0.007778,84536560,57217363,0,0,76899,0,1,1 +1774172887.837924,0.90,4,3992.50,53.45,1610.61,2092.74,0.00,3515328797671.562012,3515328797673.566895,21,0,0.003569,0.009671,84536676,57217555,0,0,76901,0,1,1 +1774172892.837585,0.85,4,3992.50,53.45,1610.61,2092.74,0.00,0.175012,0.000000,199,0,0.003230,0.008907,84536776,57217726,0,0,76904,0,1,1 +1774172897.834905,1.05,4,3992.50,53.46,1610.36,2093.00,0.00,3520323965235.804688,0.000000,70,0,0.003101,0.008387,84536875,57217894,0,0,76906,0,1,1 +1774172902.837914,0.90,4,3992.50,53.57,1605.90,2097.45,0.00,106272.772666,160153.961292,8681858,2845558,0.003452,0.009536,84536982,57218078,0,0,76909,0,1,1 +1774172907.838078,1.30,4,3992.50,53.82,1592.37,2107.24,0.00,0.000000,0.043749,8681858,2845585,0.002975,0.008888,84537073,57218239,0,0,76911,0,1,1 +1774172912.836833,0.95,4,3992.50,53.50,1602.99,2094.53,0.00,3519313037741.941895,3519312983814.729980,199,0,0.003205,0.008915,84537171,57218411,0,0,76914,0,1,1 +1774172917.837715,30.63,4,3992.50,59.81,1356.43,2341.59,0.00,106317.873174,160222.279941,8681858,2845725,69.692951,0.041786,84544654,57220933,0,0,76916,0,1,1 +1774172922.834885,35.21,4,3992.50,59.60,1364.45,2333.59,0.00,0.000000,0.021106,8681858,2845748,122.241043,0.022823,84557330,57222412,0,0,76919,0,1,1 +1774172927.835061,31.55,4,3992.50,59.71,1360.47,2337.60,0.00,3518312981469.690430,3518312981473.777832,8681084,2845270,121.366609,0.022532,84569921,57223849,0,0,76921,0,1,1 +1774172932.837908,31.44,4,3992.50,59.79,1356.99,2341.04,0.00,3516435366094.084961,3516435312204.913574,238,2,120.903591,0.032207,84582486,57226188,0,0,76924,0,1,1 +1774172937.836396,32.61,4,3992.50,59.77,1358.91,2340.20,0.00,106362.825664,160299.060788,8681084,2845321,119.607160,0.029336,84594939,57228223,0,0,76926,0,1,1 +1774172942.838329,30.93,4,3992.50,59.56,1367.29,2331.86,0.00,3517077287924.538574,3517077234027.454590,21,0,119.718959,0.027298,84607143,57230020,0,0,76929,0,1,1 +1774172947.837528,30.81,4,3992.50,59.72,1360.84,2338.31,0.00,2.007157,0.000195,238,2,119.583948,0.022237,84619355,57231593,0,0,76931,0,1,1 +1774172952.837725,30.91,4,3992.50,59.72,1361.14,2337.98,0.00,3518298549217.069824,3518298549219.076660,21,0,119.759885,0.019273,84631564,57232961,0,0,76934,0,1,1 +1774172957.834881,17.46,4,3992.50,53.40,1608.35,2090.85,0.00,0.175100,0.000000,199,0,112.619663,0.020849,84643060,57234329,0,0,76936,0,1,1 +1774172962.834328,1.05,4,3992.50,53.40,1608.42,2090.78,0.00,3518826441054.789062,0.000000,70,0,0.005877,0.009183,84643203,57234515,0,0,76939,0,1,1 +1774172967.837487,19.72,4,3992.50,54.94,1548.06,2151.13,0.00,0.126873,0.000000,199,0,20.118485,0.097532,84649657,57239374,0,0,76941,0,1,1 +1774172972.837402,14.40,4,3992.50,54.91,1549.30,2149.85,0.00,106334.463564,160254.647382,8681095,2846618,20.116664,0.084777,84655908,57244029,0,0,76944,0,1,1 +1774172977.833198,1.56,4,3992.50,53.97,1586.25,2112.89,0.00,0.000000,0.139180,8681095,2846759,0.012168,0.012219,84656187,57244310,0,0,76946,0,1,1 +1774172982.834878,1.05,4,3992.50,53.40,1608.57,2090.58,0.00,0.000000,0.016205,8681095,2846788,0.005737,0.011693,84656339,57244535,0,0,76949,0,1,1 +1774172987.833198,1.00,4,3992.50,53.59,1600.88,2098.27,0.00,3519619970094.794922,3519619916157.254395,199,0,0.005045,0.010289,84656476,57244735,0,0,76951,0,1,1 +1774172992.837125,0.70,4,3992.50,53.63,1599.42,2099.73,0.00,1.830398,0.000195,238,2,0.004332,0.008406,84656590,57244901,0,0,76954,0,1,1 +1774172997.837645,1.10,4,3992.50,54.16,1578.75,2120.57,0.00,3518071371676.933594,0.028122,237,494,0.005047,0.010289,84656727,57245101,0,0,76956,0,1,1 +1774173002.833268,0.85,4,3992.50,54.02,1584.02,2115.15,0.00,3521519304555.748535,3521519304557.260254,21,0,0.004785,0.009650,84656854,57245288,0,0,76959,0,1,1 +1774173007.837292,0.70,4,3992.50,54.02,1584.04,2115.14,0.00,106247.338329,160123.939081,8681105,2847262,0.004695,0.009205,84656986,57245477,0,0,76961,0,1,1 +1774173012.836603,0.85,4,3992.50,54.02,1584.05,2115.11,0.00,4.109844,0.039752,8681879,2847769,0.005023,0.010302,84657121,57245678,0,0,76964,0,1,1 +1774173017.837408,0.70,4,3992.50,54.02,1584.07,2115.10,0.00,0.000000,0.039447,8681879,2847819,0.004564,0.009009,84657242,57245853,0,0,76966,0,1,1 +1774173022.837260,0.80,4,3992.50,54.03,1583.69,2115.48,0.00,3518541517378.918457,3518541463459.387695,238,2,0.004806,0.009680,84657371,57246043,0,0,76969,0,1,1 +1774173027.834906,1.20,4,3992.50,54.05,1582.99,2116.16,0.00,106385.010091,160328.432848,8681879,2847897,0.005100,0.010323,84657511,57246245,0,0,76971,0,1,1 +1774173032.838002,0.60,4,3992.50,53.80,1592.71,2106.46,0.00,3516259887168.021484,3516259833285.359863,21,0,0.003037,0.006266,84657593,57246368,0,0,76974,0,1,1 +1774173037.837159,1.15,4,3992.50,53.82,1591.98,2107.18,0.00,106354.877168,160280.072026,8681879,2847982,0.004161,0.008889,84657704,57246534,0,0,76976,0,1,1 +1774173042.837135,0.80,4,3992.50,53.82,1592.00,2107.16,0.00,3518453613241.858398,3518453559325.329590,199,0,0.005022,0.010300,84657839,57246735,0,0,76979,0,1,1 +1774173047.837864,1.45,4,3992.50,53.63,1599.45,2099.72,0.00,3517924554402.240234,0.000000,21,0,0.004335,0.008388,84657953,57246899,0,0,76981,0,1,1 +1774173052.837162,0.90,4,3992.50,53.69,1597.11,2102.05,0.00,0.175025,0.000000,199,0,0.006773,0.011839,84658111,57247116,0,0,76984,0,1,1 +1774173057.836671,18.48,4,3992.50,54.00,1586.10,2114.19,0.00,0.000000,0.000000,199,0,0.034167,70.522663,84660273,57254943,0,0,76986,0,1,1 +1774173062.833642,31.27,4,3992.50,54.07,1576.54,2116.92,0.00,1.364205,0.028337,237,494,0.095257,118.276046,84667455,57267959,0,0,76989,0,1,1 +1774173067.833511,5.62,4,3992.50,53.75,1589.14,2104.30,0.00,3518529004488.613770,3518529004490.075684,70,0,0.021010,16.441125,84668764,57270005,0,0,76991,0,1,1 +1774173072.837502,17.55,4,3992.50,58.42,1409.53,2287.26,0.00,0.126852,0.000000,199,0,37.219356,0.027658,84672928,57271750,0,0,76994,0,1,1 +1774173077.837454,1.05,4,3992.50,53.59,1598.48,2098.31,0.00,106351.174183,160460.016034,8681258,2849209,2.825339,0.013376,84673426,57272132,0,0,76996,0,1,1 +1774173082.836079,11.74,4,3992.50,53.46,1599.23,2093.19,0.00,3519404625577.910645,3519404571454.892578,21,0,0.024197,40.083127,84674987,57276785,0,0,76999,0,1,1 +1774173087.836697,1.40,4,3992.50,53.60,1593.83,2098.41,0.00,0.000000,0.000000,21,0,0.004858,0.012582,84675130,57277021,0,0,77001,0,1,1 +1774173092.836729,0.85,4,3992.50,53.60,1593.70,2098.39,0.00,0.000000,0.000000,21,0,0.002747,0.007658,84675214,57277170,0,0,77004,0,1,1 +1774173097.837793,0.80,4,3992.50,53.60,1593.70,2098.39,0.00,106327.672035,160458.619174,8681258,2849675,0.003470,0.009553,84675322,57277354,0,0,77006,0,1,1 +1774173102.836420,0.70,4,3992.50,53.60,1593.70,2098.38,0.00,3519404192572.156738,3519404138414.802246,21,0,0.003256,0.009584,84675424,57277531,0,0,77009,0,1,1 +1774173107.834896,0.65,4,3992.50,53.60,1593.71,2098.38,0.00,0.175053,0.000000,199,0,0.001590,0.004482,84675472,57277619,0,0,77011,0,1,1 +1774173112.833222,0.90,4,3992.50,53.60,1593.71,2098.38,0.00,3519615340284.724609,0.000000,21,0,0.002748,0.007636,84675556,57277766,0,0,77014,0,1,1 +1774173117.833231,1.20,4,3992.50,53.82,1585.36,2107.02,0.00,0.175000,0.000000,199,0,0.003433,0.009524,84675661,57277948,0,0,77016,0,1,1 +1774173122.836770,0.80,4,3992.50,53.69,1589.95,2102.20,0.00,3515948587422.930176,0.000000,21,0,0.003565,0.009691,84675777,57278142,0,0,77019,0,1,1 +1774173127.837580,0.70,4,3992.50,53.61,1593.02,2099.13,0.00,1.538130,0.028316,237,494,0.002802,0.007678,84675865,57278292,0,0,77021,0,1,1 +1774173132.834878,0.75,4,3992.50,53.66,1591.33,2100.82,0.00,3520339815963.004883,3520339815964.515625,21,0,0.003560,0.009640,84675978,57278483,0,0,77024,0,1,1 +1774173137.836084,0.70,4,3992.50,53.66,1591.33,2100.82,0.00,0.000000,0.000000,21,0,0.003432,0.009522,84676083,57278665,0,0,77026,0,1,1 +1774173142.834896,0.75,4,3992.50,53.47,1598.77,2093.38,0.00,0.000000,0.000000,21,0,0.002747,0.007635,84676167,57278812,0,0,77029,0,1,1 +1774173147.837457,26.42,4,3992.50,59.75,1353.65,2339.23,0.00,106299.978217,160416.815014,8682032,2850329,51.255882,0.032836,84681847,57280621,0,0,77031,0,1,1 +1774173152.833451,37.33,4,3992.50,59.90,1347.69,2345.38,0.00,3521258179646.952148,3521258125458.985840,21,0,122.475539,0.038894,84694672,57283264,0,0,77034,0,1,1 +1774173157.834303,31.89,4,3992.50,59.58,1360.47,2332.67,0.00,0.000000,0.000000,21,0,121.749397,0.028995,84707198,57285399,0,0,77036,0,1,1 +1774173162.837818,31.04,4,3992.50,59.80,1351.82,2341.35,0.00,0.048013,0.000000,70,0,120.480687,0.023410,84719491,57287052,0,0,77039,0,1,1 +1774173167.837392,31.08,4,3992.50,59.44,1365.98,2327.21,0.00,3518736892666.826660,0.000000,21,0,120.178227,0.043674,84731799,57290064,0,0,77041,0,1,1 +1774173172.837831,31.40,4,3992.50,59.47,1364.71,2328.44,0.00,106345.086884,160485.103710,8682032,2850498,120.158345,0.039494,84744090,57292737,0,0,77044,0,1,1 +1774173177.837939,29.74,4,3992.50,59.72,1354.96,2338.24,0.00,3518361550642.191895,3518361496496.579102,238,2,119.166223,0.037258,84756357,57295498,0,0,77046,0,1,1 +1774173182.833758,32.96,4,3992.50,59.59,1359.93,2333.19,0.00,3521381103204.745117,0.028149,237,494,119.273886,0.046106,84768834,57298772,0,0,77049,0,1,1 +1774173187.836422,22.13,4,3992.50,59.41,1367.10,2326.09,0.00,106296.261833,160413.795269,8682033,2850560,119.904742,0.034075,84781178,57301101,0,0,77051,0,1,1 +1774173192.834881,13.34,4,3992.50,53.34,1604.93,2088.21,0.00,3519521696636.501465,3519521642474.785645,199,0,24.918959,0.074559,84787008,57304868,0,0,77054,0,1,1 +1774173197.833202,16.56,4,3992.50,54.36,1564.87,2128.24,0.00,0.000000,0.000000,199,0,22.138008,0.096668,84793966,57310113,0,0,77056,0,1,1 +1774173202.833207,4.91,4,3992.50,53.61,1594.30,2098.79,0.00,106354.229991,160499.901892,8682043,2851596,4.037009,0.030075,84795547,57311382,0,0,77059,0,1,1 +1774173207.836726,1.60,4,3992.50,53.56,1598.04,2096.83,0.00,3515962861098.520996,3515962806990.869141,199,0,0.006643,0.012336,84795700,57311608,0,0,77061,0,1,1 +1774173212.835082,0.70,4,3992.50,53.57,1595.52,2097.55,0.00,1.832438,0.000195,238,2,0.004350,0.008402,84795815,57311773,0,0,77064,0,1,1 +1774173217.833216,0.80,4,3992.50,53.49,1598.76,2094.32,0.00,106388.111424,160560.707352,8681269,2851609,0.003224,0.005249,84795896,57311879,0,0,77066,0,1,1 +1774173222.833268,0.85,4,3992.50,53.52,1597.55,2095.53,0.00,3518400267696.710938,3518400213546.909668,21,0,0.004802,0.009675,84796025,57312069,0,0,77069,0,1,1 +1774173227.837391,0.80,4,3992.50,53.28,1606.93,2086.14,0.00,0.174856,0.000000,199,0,0.005103,0.010687,84796168,57312277,0,0,77071,0,1,1 +1774173232.834898,0.55,4,3992.50,53.34,1604.84,2088.23,0.00,3520191828787.009766,0.000000,21,0,0.004717,0.009255,84796292,57312459,0,0,77074,0,1,1 +1774173237.834913,1.20,4,3992.50,53.78,1587.43,2105.63,0.00,0.048047,0.000000,70,0,0.005123,0.010898,84796435,57312670,0,0,77076,0,1,1 +1774173242.834924,0.70,4,3992.50,53.67,1591.89,2101.15,0.00,3518430094617.500977,0.000000,21,0,0.004336,0.008400,84796549,57312835,0,0,77079,0,1,1 +1774173247.834908,0.70,4,3992.50,53.69,1590.96,2102.07,0.00,106350.735393,160501.599615,8681269,2851810,0.005022,0.010291,84796684,57313035,0,0,77081,0,1,1 +1774173252.837160,0.80,4,3992.50,53.69,1590.99,2102.05,0.00,3516852953001.008301,3516852898874.692871,21,0,0.006029,0.011005,84796827,57313242,0,0,77084,0,1,1 +1774173257.837858,0.65,4,3992.50,53.69,1591.14,2101.89,0.00,106339.673687,160478.803567,8682043,2852390,0.004335,0.008388,84796941,57313406,0,0,77086,0,1,1 +1774173262.838045,0.65,4,3992.50,53.68,1591.27,2101.77,0.00,3518305632594.788574,3518305578450.125977,21,0,0.005022,0.010300,84797076,57313607,0,0,77089,0,1,1 +1774173267.834906,1.15,4,3992.50,53.70,1599.26,2102.45,0.00,0.000000,0.000000,21,0,0.005026,0.010297,84797211,57313807,0,0,77091,0,1,1 +1774173272.834882,15.99,4,3992.50,53.98,1585.52,2113.52,0.00,0.000000,0.000000,21,0,0.029545,61.499122,84799181,57320602,0,0,77094,0,1,1 +1774173277.833206,31.44,4,3992.50,53.76,1587.40,2104.75,0.00,106390.180908,160712.147077,8682043,2853521,0.036771,118.611179,84801799,57332897,0,0,77096,0,1,1 +1774173282.834907,7.92,4,3992.50,53.50,1597.96,2094.49,0.00,3517241039391.110840,3517240985103.809082,238,2,0.010345,25.035616,84802340,57335670,0,0,77099,0,1,1 +1774173287.837202,15.18,4,3992.50,54.74,1552.36,2143.27,0.00,106321.427114,160632.787942,8682262,2853957,40.047635,0.028829,84806784,57337310,0,0,77101,0,1,1 +1774173292.837467,0.70,4,3992.50,54.03,1580.13,2115.50,0.00,3518250448068.292969,3518250393734.882812,238,2,0.006572,0.008926,84806935,57337493,0,0,77104,0,1,1 +1774173297.835516,1.41,4,3992.50,53.95,1574.09,2112.17,0.00,3519810602372.256836,3519810602374.216309,70,0,0.010599,1.819830,84807356,57338128,0,0,77106,0,1,1 +1774173302.834954,10.99,4,3992.50,53.50,1588.93,2094.78,0.00,1.490500,0.028323,237,494,0.018052,38.268079,84808551,57342235,0,0,77109,0,1,1 +1774173307.837450,0.85,4,3992.50,53.24,1599.23,2084.48,0.00,0.000000,0.000000,237,494,0.003432,0.009519,84808656,57342417,0,0,77111,0,1,1 +1774173312.833202,0.85,4,3992.50,53.29,1597.38,2086.32,0.00,106457.031032,160877.552141,8681488,2854037,0.003436,0.009542,84808761,57342600,0,0,77114,0,1,1 +1774173317.833220,0.70,4,3992.50,53.10,1604.80,2078.91,0.00,3518424681068.748047,3518424626695.984863,199,0,0.002784,0.007654,84808848,57342748,0,0,77116,0,1,1 +1774173322.837381,0.75,4,3992.50,53.10,1604.59,2079.12,0.00,1.830313,0.000195,238,2,0.002765,0.007635,84808934,57342896,0,0,77119,0,1,1 +1774173327.834882,1.15,4,3992.50,53.49,1590.52,2094.32,0.00,0.000000,0.000000,238,2,0.003422,0.009529,84809038,57343078,0,0,77121,0,1,1 +1774173332.836473,0.75,4,3992.50,53.51,1587.76,2095.05,0.00,106332.297556,160695.925087,8681488,2854160,0.002746,0.007631,84809122,57343225,0,0,77124,0,1,1 +1774173337.835822,0.75,4,3992.50,53.51,1587.76,2095.05,0.00,3518895314764.875488,3518895260378.702637,199,0,0.003509,0.009619,84809233,57343413,0,0,77126,0,1,1 +1774173342.838006,0.70,4,3992.50,53.32,1595.39,2087.41,0.00,106321.526062,160676.885810,8681488,2854165,0.003520,0.009623,84809345,57343602,0,0,77129,0,1,1 +1774173347.837795,0.80,4,3992.50,53.19,1600.43,2082.40,0.00,3518585790913.419922,3518585736532.199219,21,0,0.002902,0.007750,84809439,57343758,0,0,77131,0,1,1 +1774173352.834438,0.75,4,3992.50,53.21,1599.71,2083.13,0.00,0.000000,0.000000,21,0,0.004546,0.010156,84809566,57343955,0,0,77134,0,1,1 +1774173357.837178,1.20,4,3992.50,53.45,1587.73,2092.54,0.00,0.000000,0.000000,21,0,0.005164,0.010849,84809696,57344153,0,0,77136,0,1,1 +1774173362.837157,0.70,4,3992.50,53.46,1586.93,2093.00,0.00,106372.691332,160747.813308,8682262,2854688,0.002747,0.007969,84809780,57344303,0,0,77139,0,1,1 +1774173367.837818,29.18,4,3992.50,59.49,1356.53,2329.24,0.00,3517972070226.127441,3517972015858.421875,21,0,49.673548,0.035997,84815331,57346269,0,0,77141,0,1,1 +1774173372.833802,33.57,4,3992.50,59.54,1355.33,2331.20,0.00,106453.629904,160876.428788,8681488,2854329,120.090374,0.091578,84828186,57353132,0,0,77144,0,1,1 +1774173377.837579,30.26,4,3992.50,59.58,1353.77,2332.80,0.00,3515781239179.154785,3515781184839.604004,237,494,118.308022,0.112859,84840916,57361861,0,0,77146,0,1,1 +1774173382.833672,30.74,4,3992.50,59.54,1355.66,2331.03,0.00,3521188481755.441406,3521188481756.777832,199,0,120.293852,0.116291,84853848,57370669,0,0,77149,0,1,1 +1774173387.836381,30.32,4,3992.50,59.66,1350.81,2335.75,0.00,0.000000,0.000000,199,0,118.731438,0.109839,84866588,57378936,0,0,77151,0,1,1 +1774173392.837249,30.99,4,3992.50,59.66,1350.79,2335.75,0.00,1.831518,0.000195,238,2,119.576724,0.113674,84879390,57387568,0,0,77154,0,1,1 +1774173397.838257,30.66,4,3992.50,59.80,1345.23,2341.29,0.00,3517727865390.585938,0.028119,237,494,119.571354,0.103487,84892186,57395559,0,0,77156,0,1,1 +1774173402.837822,30.72,4,3992.50,59.56,1354.77,2331.76,0.00,3518743643598.105469,3518743643599.615723,21,0,118.807398,0.105049,84904951,57403518,0,0,77159,0,1,1 +1774173407.837533,24.02,4,3992.50,59.63,1352.09,2334.57,0.00,0.000000,0.000000,21,0,120.005348,0.107018,84917857,57411502,0,0,77161,0,1,1 +1774173412.837331,2.21,4,3992.50,53.24,1602.09,2084.57,0.00,106376.687011,160754.136111,8682281,2855010,20.641079,0.026737,84920250,57413048,0,0,77164,0,1,1 +1774173417.833916,9.65,4,3992.50,53.27,1600.81,2085.80,0.00,3520841733236.555176,0.158116,8681507,2854755,6.064685,0.043766,84922624,57414877,0,0,77166,0,1,1 +1774173422.837945,19.90,4,3992.50,54.45,1554.62,2131.91,0.00,3515604213873.828125,3515604159538.085449,21,0,30.142377,0.127088,84932064,57421936,0,0,77169,0,1,1 +1774173427.838102,3.97,4,3992.50,53.54,1590.19,2096.35,0.00,0.000000,0.000000,21,0,4.036214,0.025250,84933568,57423040,0,0,77171,0,1,1 +1774173432.834950,0.80,4,3992.50,53.64,1586.30,2100.19,0.00,106439.503408,160849.969511,8682281,2856247,0.004339,0.009049,84933682,57423209,0,0,77174,0,1,1 +1774173437.837716,16.90,4,3992.50,53.94,1571.93,2111.94,0.00,3516491849549.462402,3516491795203.359863,21,0,0.031448,68.271634,84935734,57430673,0,0,77176,0,1,1 +1774173442.837536,29.55,4,3992.50,53.76,1573.17,2104.88,0.00,1.538434,0.028321,237,494,0.035365,122.180636,84938243,57443369,0,0,77179,0,1,1 +1774173447.843048,6.72,4,3992.50,55.77,1512.21,2183.56,0.00,3514563110884.969238,3514563110886.430176,70,0,0.019806,14.619350,84938623,57445199,0,0,77181,0,1,1 +1774173452.836619,12.27,4,3992.50,53.90,1587.48,2110.12,0.00,1.961311,0.000196,238,2,40.107489,0.024527,84943073,57446781,0,0,77184,0,1,1 +1774173457.834891,1.05,4,3992.50,53.46,1604.39,2093.22,0.00,3519654264498.041504,3519654264499.874512,199,0,0.005847,0.012661,84943233,57447014,0,0,77186,0,1,1 +1774173462.838019,0.65,4,3992.50,53.47,1604.16,2093.45,0.00,3516237256758.948242,0.000000,70,0,0.004765,0.009636,84943359,57447201,0,0,77189,0,1,1 +1774173467.834971,0.60,4,3992.50,53.49,1603.32,2094.28,0.00,0.000000,0.000000,70,0,0.004555,0.009041,84943479,57447378,0,0,77191,0,1,1 +1774173472.837859,0.75,4,3992.50,53.49,1603.34,2094.27,0.00,106328.426628,160861.525598,8682428,2858068,0.005606,0.011403,84943625,57447601,0,0,77194,0,1,1 +1774173477.837965,1.45,4,3992.50,54.06,1581.26,2116.40,0.00,3518362606794.670410,3518362552231.103516,199,0,0.004579,0.009393,84943747,57447781,0,0,77196,0,1,1 +1774173482.837964,0.65,4,3992.50,53.96,1585.02,2112.57,0.00,1.831836,0.000195,238,2,0.004080,0.007414,84943852,57447931,0,0,77199,0,1,1 +1774173487.833242,0.60,4,3992.50,53.78,1592.02,2105.57,0.00,3521763110545.050293,3521763110547.059570,21,0,0.004365,0.008398,84943968,57448095,0,0,77201,0,1,1 +1774173492.833229,0.65,4,3992.50,53.78,1592.03,2105.55,0.00,0.000000,0.000000,21,0,0.005093,0.010359,84944108,57448301,0,0,77204,0,1,1 +1774173497.834921,0.75,4,3992.50,53.68,1595.98,2101.60,0.00,106353.883953,160900.371700,8682428,2858447,0.005021,0.010931,84944243,57448505,0,0,77206,0,1,1 +1774173502.834911,0.60,4,3992.50,53.68,1595.99,2101.59,0.00,3518444688963.752441,3518444634398.683105,21,0,0.004423,0.008427,84944363,57448672,0,0,77209,0,1,1 +1774173507.834896,1.05,4,3992.50,53.72,1586.84,2103.29,0.00,0.000000,0.000000,21,0,0.005010,0.010278,84944497,57448871,0,0,77211,0,1,1 +1774173512.833237,0.75,4,3992.50,53.68,1588.48,2101.65,0.00,1.538890,0.028330,237,494,0.005024,0.010304,84944632,57449072,0,0,77214,0,1,1 +1774173517.837291,0.75,4,3992.50,53.68,1588.50,2101.63,0.00,3515586542097.134766,3515586542098.595703,70,0,0.004202,0.008137,84944745,57449236,0,0,77216,0,1,1 +1774173522.837393,11.74,4,3992.50,53.68,1585.87,2101.89,0.00,3518365624919.820801,0.000000,21,0,0.030555,40.069085,84946739,57453694,0,0,77219,0,1,1 +1774173527.833251,0.80,4,3992.50,53.69,1585.64,2102.11,0.00,0.048087,0.000000,70,0,0.003813,0.010593,84946855,57453898,0,0,77221,0,1,1 +1774173532.834910,0.60,4,3992.50,53.70,1585.41,2102.36,0.00,1.958139,0.000195,238,2,0.002746,0.007631,84946939,57454045,0,0,77224,0,1,1 +1774173537.837647,1.10,4,3992.50,53.70,1585.31,2102.31,0.00,3516512123154.819824,3516512123156.777344,70,0,0.003419,0.009519,84947043,57454227,0,0,77226,0,1,1 +1774173542.833673,0.75,4,3992.50,53.70,1585.32,2102.30,0.00,0.127054,0.000000,199,0,0.003436,0.009542,84947148,57454410,0,0,77229,0,1,1 +1774173547.837564,0.70,4,3992.50,53.70,1585.32,2102.30,0.00,3515700517989.000488,0.000000,70,0,0.002744,0.007617,84947232,57454556,0,0,77231,0,1,1 +1774173552.833205,0.70,4,3992.50,53.71,1584.82,2102.75,0.00,1.491633,0.028345,237,494,0.004397,0.010244,84947342,57454744,0,0,77234,0,1,1 +1774173557.833237,1.50,4,3992.50,53.51,1592.54,2095.08,0.00,106383.550359,160994.226034,8681654,2858548,0.003484,0.009586,84947451,57454930,0,0,77236,0,1,1 +1774173562.833214,0.70,4,3992.50,53.52,1592.31,2095.31,0.00,3518453258533.103027,3518453203921.326660,238,2,0.002780,0.008316,84947538,57455084,0,0,77239,0,1,1 +1774173567.833210,1.00,4,3992.50,53.72,1584.51,2103.15,0.00,106387.969932,160995.510404,8682428,2859067,0.003608,0.009687,84947655,57455278,0,0,77241,0,1,1 +1774173572.833309,0.75,4,3992.50,53.62,1588.39,2099.23,0.00,3518367371970.368652,3518367317365.964355,21,0,0.003464,0.009559,84947762,57455463,0,0,77244,0,1,1 +1774173577.834911,0.70,4,3992.50,53.62,1588.40,2099.23,0.00,106351.702932,160943.799824,8681654,2858591,0.002758,0.007621,84947847,57455609,0,0,77246,0,1,1 +1774173582.840385,1.75,4,3992.50,53.91,1577.09,2110.61,0.00,3514588845616.030273,3514588791066.123535,70,0,0.006317,0.012186,84948009,57455837,0,0,77249,0,1,1 +1774173587.834295,42.75,4,3992.50,59.63,1359.49,2334.67,0.00,3522728441670.743652,0.000000,21,0,110.492211,0.049745,84959533,57459296,0,0,77251,0,1,1 +1774173592.838083,28.41,4,3992.50,59.53,1363.51,2330.58,0.00,1.537214,0.028299,237,494,118.477562,0.031316,84971785,57461485,0,0,77254,0,1,1 +1774173597.833246,28.51,4,3992.50,59.81,1352.33,2341.77,0.00,3521843936418.437012,3521843936419.948242,21,0,119.882057,0.020398,84984141,57462884,0,0,77256,0,1,1 +1774173602.837408,30.51,4,3992.50,59.84,1350.96,2343.04,0.00,0.000000,0.000000,21,0,118.668069,0.022366,84996469,57464281,0,0,77259,0,1,1 +1774173607.836386,30.45,4,3992.50,59.69,1356.86,2337.08,0.00,2.007246,0.000195,238,2,119.594526,0.023256,85008947,57465695,0,0,77261,0,1,1 +1774173612.834863,31.00,4,3992.50,59.61,1360.20,2333.71,0.00,3519509030306.706055,3519509030308.665039,70,0,118.998714,0.033747,85021029,57468167,0,0,77264,0,1,1 +1774173617.834827,30.73,4,3992.50,59.58,1361.32,2332.50,0.00,0.126954,0.000000,199,0,119.367107,0.028300,85033330,57470128,0,0,77266,0,1,1 +1774173622.833477,30.35,4,3992.50,60.19,1337.17,2356.61,0.00,1.363747,0.028328,237,494,119.398263,0.028824,85045593,57472128,0,0,77269,0,1,1 +1774173627.833179,9.04,4,3992.50,54.59,1556.88,2137.16,0.00,106390.652770,161005.480943,8681670,2858960,80.719722,0.018326,85053995,57473104,0,0,77271,0,1,1 +1774173632.837457,1.90,4,3992.50,54.09,1576.27,2117.71,0.00,3515428755356.700684,3515428700793.290039,70,0,0.007897,0.008437,85054161,57473285,0,0,77274,0,1,1 +1774173637.834898,22.87,4,3992.50,54.60,1556.10,2137.80,0.00,106440.312883,161078.761036,8681675,2859647,28.194989,0.130715,85063460,57480165,0,0,77276,0,1,1 +1774173642.834868,9.10,4,3992.50,53.78,1588.39,2105.48,0.00,3518458465873.432617,3518458411262.667480,21,0,12.076037,0.056429,85067410,57483105,0,0,77279,0,1,1 +1774173647.835171,1.05,4,3992.50,53.55,1597.11,2096.77,0.00,0.000000,0.000000,21,0,0.005713,0.011661,85067560,57483327,0,0,77281,0,1,1 +1774173652.837650,1.05,4,3992.50,53.72,1590.69,2103.14,0.00,0.048023,0.000000,70,0,0.005442,0.009020,85067696,57483506,0,0,77284,0,1,1 +1774173657.833220,2.76,4,3992.50,54.11,1577.17,2118.62,0.00,0.127066,0.000000,199,0,0.016980,7.432521,85068551,57484737,0,0,77286,0,1,1 +1774173662.837214,29.44,4,3992.50,53.90,1579.40,2110.31,0.00,3515629529406.339844,0.000000,21,0,0.038955,115.480755,85071316,57496887,0,0,77289,0,1,1 +1774173667.833215,22.03,4,3992.50,53.18,1605.49,2082.05,0.00,0.000000,0.000000,21,0,0.047760,82.198181,85074849,57505655,0,0,77291,0,1,1 +1774173672.833216,9.69,4,3992.50,58.45,1402.45,2288.59,0.00,0.175000,0.000000,199,0,14.031296,0.023631,85076701,57506673,0,0,77294,0,1,1 +1774173677.834451,4.62,4,3992.50,53.60,1592.58,2098.46,0.00,1.363042,0.028313,237,494,26.036725,0.016346,85079520,57507338,0,0,77296,0,1,1 +1774173682.833258,0.90,4,3992.50,53.58,1593.43,2097.61,0.00,106431.320283,161241.131377,8682587,2862596,0.005024,0.010290,85079655,57507538,0,0,77299,0,1,1 +1774173687.833243,1.20,4,3992.50,53.73,1587.68,2103.65,0.00,3518448217253.649902,3518448162458.251465,21,0,0.004348,0.008402,85079770,57507703,0,0,77301,0,1,1 +1774173692.833229,0.95,4,3992.50,53.61,1592.48,2098.83,0.00,106407.755068,161203.297435,8682587,2862673,0.005010,0.010944,85079904,57507908,0,0,77304,0,1,1 +1774173697.834903,0.80,4,3992.50,53.61,1592.51,2098.81,0.00,3517259570399.436035,3517259515622.331543,70,0,0.005046,0.010293,85080041,57508108,0,0,77306,0,1,1 +1774173702.833277,1.15,4,3992.50,53.77,1586.04,2105.29,0.00,106442.052132,161255.406917,8682587,2862732,0.004408,0.008498,85080161,57508280,0,0,77309,0,1,1 +1774173707.838119,0.95,4,3992.50,53.77,1586.05,2105.27,0.00,3515032704722.431641,3515032649979.930176,70,0,0.005018,0.010313,85080296,57508481,0,0,77311,0,1,1 +1774173712.837610,0.95,4,3992.50,53.58,1593.71,2097.62,0.00,1.490484,0.028323,237,494,0.004455,0.008495,85080418,57508653,0,0,77314,0,1,1 +1774173717.837380,1.20,4,3992.50,53.49,1602.55,2094.10,0.00,0.000000,0.000000,237,494,0.004391,0.008483,85080535,57508824,0,0,77316,0,1,1 +1774173722.837775,0.95,4,3992.50,53.50,1601.83,2094.82,0.00,3518159921589.456543,3518159921590.791504,199,0,0.005097,0.010367,85080675,57509030,0,0,77319,0,1,1 +1774173727.837860,0.80,4,3992.50,53.47,1603.25,2093.41,0.00,3518376829314.581543,0.000000,21,0,0.004331,0.008398,85080789,57509195,0,0,77321,0,1,1 +1774173732.837848,0.90,4,3992.50,53.50,1601.84,2094.82,0.00,1.538383,0.028320,237,494,0.004087,0.008229,85080895,57509356,0,0,77324,0,1,1 +1774173737.837947,0.85,4,3992.50,53.51,1601.64,2095.02,0.00,3518368022285.523926,3518368022287.034180,21,0,0.004133,0.008977,85081007,57509530,0,0,77326,0,1,1 +1774173742.834928,11.34,4,3992.50,53.96,1581.61,2112.84,0.00,0.000000,0.000000,21,0,0.025982,40.094227,85082616,57514067,0,0,77329,0,1,1 +1774173747.834907,1.60,4,3992.50,53.62,1594.81,2099.46,0.00,0.175001,0.000000,199,0,0.003905,0.010074,85082729,57514257,0,0,77331,0,1,1 +1774173752.835700,0.90,4,3992.50,53.63,1594.61,2099.67,0.00,3517879279561.517090,0.000000,70,0,0.002729,0.007640,85082812,57514405,0,0,77334,0,1,1 +1774173757.837843,1.75,4,3992.50,53.63,1594.61,2099.66,0.00,1.489694,0.028308,237,494,0.003394,0.010164,85082914,57514591,0,0,77336,0,1,1 +1774173762.837837,0.75,4,3992.50,53.63,1594.62,2099.66,0.00,3518441492232.382324,3518441492233.844727,70,0,0.002734,0.007633,85082997,57514738,0,0,77339,0,1,1 +1774173767.837944,1.05,4,3992.50,53.75,1589.96,2104.31,0.00,106401.029290,161234.030262,8681813,2862917,0.002709,0.007623,85083078,57514884,0,0,77341,0,1,1 +1774173772.834907,1.05,4,3992.50,53.75,1589.98,2104.30,0.00,3520575536674.977539,3520575481807.346191,199,0,0.003564,0.009357,85083180,57515063,0,0,77344,0,1,1 +1774173777.834902,1.35,4,3992.50,53.86,1585.62,2108.70,0.00,1.831838,0.000195,238,2,0.003200,0.008942,85083278,57515237,0,0,77346,0,1,1 +1774173782.834898,0.85,4,3992.50,53.75,1589.96,2104.32,0.00,3518439374832.472168,3518439374834.479004,21,0,0.002759,0.007695,85083363,57515388,0,0,77349,0,1,1 +1774173787.834868,1.00,4,3992.50,53.75,1589.96,2104.32,0.00,106408.117517,161244.627442,8682587,2863526,0.002822,0.007717,85083453,57515540,0,0,77351,0,1,1 +1774173792.837449,0.80,4,3992.50,53.61,1595.15,2099.13,0.00,3516621931953.061523,3516621877145.176270,21,0,0.003406,0.009379,85083563,57515724,0,0,77354,0,1,1 +1774173797.837175,1.00,4,3992.50,53.60,1595.63,2098.65,0.00,0.000000,0.000000,21,0,0.002872,0.007875,85083648,57515877,0,0,77356,0,1,1 +1774173802.837376,0.90,4,3992.50,53.61,1595.39,2098.89,0.00,106399.081204,161237.148161,8681813,2863044,0.002754,0.007641,85083733,57516025,0,0,77359,0,1,1 +1774173807.834535,7.73,4,3992.50,60.55,1328.15,2370.64,0.00,0.000000,0.078853,8681813,2863091,2.012068,0.014010,85084282,57516511,0,0,77361,0,1,1 +1774173812.837380,41.29,4,3992.50,60.03,1351.47,2350.26,0.00,3516436471664.499512,3516436416853.822754,237,494,119.712509,0.061629,85096801,57520985,0,0,77364,0,1,1 +1774173817.834386,30.13,4,3992.50,60.27,1341.98,2359.80,0.00,106469.694727,161340.451766,8682587,2863705,122.100561,0.023476,85108785,57522653,0,0,77366,0,1,1 +1774173822.837608,29.19,4,3992.50,60.65,1327.36,2374.48,0.00,3516171048378.446777,3516170993577.331055,70,0,120.187636,0.028887,85120493,57524730,0,0,77369,0,1,1 +1774173827.835030,29.58,4,3992.50,60.19,1345.19,2356.60,0.00,1.959800,0.000195,238,2,119.988441,0.030874,85132103,57526863,0,0,77371,0,1,1 +1774173832.835637,30.42,4,3992.50,60.18,1345.75,2356.09,0.00,3518010134412.109863,3518010134414.116699,21,0,119.159046,0.037511,85143837,57529592,0,0,77374,0,1,1 +1774173837.837570,29.01,4,3992.50,60.19,1345.41,2356.41,0.00,106366.341307,161181.562362,8682587,2863748,119.632043,0.036230,85155100,57532117,0,0,77376,0,1,1 +1774173842.833596,29.05,4,3992.50,60.36,1325.98,2363.36,0.00,3521236033702.071777,3521235978820.025391,238,2,119.875427,0.031961,85166327,57534513,0,0,77379,0,1,1 +1774173847.834155,28.87,4,3992.50,60.33,1327.00,2362.19,0.00,106393.563897,161226.071518,8682587,2863817,118.438965,0.031253,85177386,57536803,0,0,77381,0,1,1 +1774173852.833199,5.13,4,3992.50,54.66,1549.45,2139.91,0.00,3519110026695.083984,3519109971847.915039,70,0,64.316716,0.025665,85183580,57538233,0,0,77384,0,1,1 +1774173857.835549,19.51,4,3992.50,54.50,1555.49,2133.81,0.00,0.126893,0.000000,199,0,26.109652,0.140271,85193711,57546083,0,0,77386,0,1,1 +1774173862.837746,9.90,4,3992.50,54.50,1555.57,2133.68,0.00,3516891738943.479980,0.000000,21,0,14.147221,0.071679,85199127,57550336,0,0,77389,0,1,1 +1774173867.836635,2.50,4,3992.50,54.27,1564.21,2124.60,0.00,2.007282,0.000195,238,2,0.012211,0.012978,85199387,57550609,0,0,77391,0,1,1 +1774173872.833214,0.75,4,3992.50,53.69,1586.74,2102.12,0.00,106478.459049,161355.506558,8682598,2865013,0.004574,0.009027,85199508,57550785,0,0,77394,0,1,1 +1774173877.834989,1.00,4,3992.50,53.96,1576.16,2112.69,0.00,3517188562440.453613,3517188507620.417480,238,2,0.004787,0.009649,85199636,57550973,0,0,77396,0,1,1 +1774173882.838101,0.65,4,3992.50,53.96,1576.19,2112.67,0.00,3516248561455.848145,3516248561457.854004,21,0,0.004321,0.008394,85199749,57551138,0,0,77399,0,1,1 +1774173887.833232,0.60,4,3992.50,53.90,1578.54,2110.30,0.00,0.000000,0.000000,21,0,0.003615,0.006495,85199839,57551266,0,0,77401,0,1,1 +1774173892.836413,0.75,4,3992.50,53.94,1577.11,2111.75,0.00,2.005560,0.000195,238,2,0.004817,0.010312,85199969,57551459,0,0,77404,0,1,1 +1774173897.834654,1.10,4,3992.50,53.94,1576.33,2111.74,0.00,106438.943726,161302.542135,8681824,2865020,0.004628,0.009137,85200095,57551642,0,0,77406,0,1,1 +1774173902.833232,0.60,4,3992.50,53.94,1576.12,2111.96,0.00,3519437633550.295898,3519437578692.239258,199,0,0.004295,0.008397,85200206,57551807,0,0,77409,0,1,1 +1774173907.833227,0.70,4,3992.50,53.95,1575.89,2112.18,0.00,106407.548748,161246.023477,8682598,2865538,0.004298,0.008219,85200317,57551967,0,0,77411,0,1,1 +1774173912.837218,0.70,4,3992.50,53.94,1576.35,2111.72,0.00,3515630400351.726074,3515630345557.232910,21,0,0.004274,0.010108,85200440,57552165,0,0,77414,0,1,1 +1774173917.834900,0.70,4,3992.50,53.94,1576.37,2111.71,0.00,0.000000,0.000000,21,0,0.004313,0.008381,85200552,57552328,0,0,77416,0,1,1 +1774173922.837653,0.65,4,3992.50,53.73,1584.54,2103.53,0.00,0.174904,0.000000,199,0,0.004316,0.008390,85200665,57552493,0,0,77419,0,1,1 +1774173927.837914,1.05,4,3992.50,53.71,1585.02,2103.05,0.00,106397.761607,161237.523713,8681824,2865155,0.004539,0.009010,85200784,57552668,0,0,77421,0,1,1 +1774173932.837609,0.60,4,3992.50,53.72,1584.86,2103.22,0.00,0.000000,0.044925,8681824,2865196,0.004731,0.009667,85200907,57552857,0,0,77424,0,1,1 +1774173937.834534,17.43,4,3992.50,53.88,1576.45,2109.47,0.00,3520601929055.499512,3520601874179.083496,199,0,0.033549,67.347986,85203165,57560166,0,0,77426,0,1,1 +1774173942.833409,30.14,4,3992.50,54.74,1537.73,2143.28,0.00,3519229438106.495117,0.000000,70,0,0.037545,119.803032,85205927,57572666,0,0,77429,0,1,1 +1774173947.836690,12.70,4,3992.50,58.22,1405.53,2279.31,0.00,3516130088170.956543,0.000000,21,0,3.311085,18.032269,85207618,57575239,0,0,77431,0,1,1 +1774173952.834901,6.78,4,3992.50,54.50,1550.92,2133.80,0.00,0.000000,0.000000,21,0,36.788487,0.025852,85211538,57576881,0,0,77434,0,1,1 +1774173957.834883,1.50,4,3992.50,54.01,1570.54,2114.50,0.00,0.000000,0.000000,21,0,0.006771,0.011947,85211692,57577084,0,0,77436,0,1,1 +1774173962.837403,0.85,4,3992.50,53.60,1585.73,2098.56,0.00,106367.367151,161370.030367,8681949,2866787,0.003756,0.009277,85211797,57577255,0,0,77439,0,1,1 +1774173967.838106,11.81,4,3992.50,53.36,1592.92,2089.09,0.00,3517942150516.473633,3517942095493.830078,21,0,0.029571,40.067438,85213691,57581876,0,0,77441,0,1,1 +1774173972.837530,0.65,4,3992.50,53.37,1592.43,2089.57,0.00,2.007067,0.000195,238,2,0.002692,0.007617,85213771,57582022,0,0,77444,0,1,1 +1774173977.833233,0.80,4,3992.50,53.45,1589.39,2092.62,0.00,3521463162031.822266,3521463162033.655762,199,0,0.002724,0.007630,85213853,57582168,0,0,77446,0,1,1 +1774173982.837502,0.75,4,3992.50,53.45,1589.40,2092.61,0.00,106330.013974,161347.819384,8681949,2867179,0.003203,0.008957,85213951,57582343,0,0,77449,0,1,1 +1774173987.834389,1.00,4,3992.50,53.45,1593.36,2092.77,0.00,3520629287771.957520,3520629232673.042480,21,0,0.002201,0.006315,85214014,57582462,0,0,77451,0,1,1 +1774173992.834636,0.70,4,3992.50,53.45,1593.37,2092.77,0.00,1.538303,0.028319,237,494,0.002709,0.007645,85214095,57582610,0,0,77454,0,1,1 +1774173997.837418,0.70,4,3992.50,53.48,1592.42,2093.71,0.00,0.000000,0.000000,237,494,0.002766,0.007658,85214181,57582759,0,0,77456,0,1,1 +1774174002.833804,0.70,4,3992.50,53.48,1592.43,2093.71,0.00,106496.421204,161608.520047,8681949,2867294,0.002799,0.007732,85214269,57582912,0,0,77459,0,1,1 +1774174007.838044,0.75,4,3992.50,53.60,1587.70,2098.43,0.00,3515455800484.068848,3515455745459.981445,21,0,0.003405,0.009578,85214372,57583098,0,0,77461,0,1,1 +1774174012.837541,0.90,4,3992.50,53.60,1587.71,2098.43,0.00,106435.803794,161508.027256,8682723,2867797,0.002940,0.007809,85214469,57583258,0,0,77464,0,1,1 +1774174017.833320,1.05,4,3992.50,54.00,1572.11,2114.17,0.00,3521409869627.232422,3521409814514.027832,21,0,0.002736,0.007630,85214552,57583404,0,0,77466,0,1,1 +1774174022.834906,0.80,4,3992.50,53.61,1587.24,2098.89,0.00,1.537891,0.028311,237,494,0.003036,0.008977,85214646,57583571,0,0,77469,0,1,1 +1774174027.837672,1.15,4,3992.50,53.37,1596.64,2089.48,0.00,3516491983977.948730,3516491983979.409668,70,0,0.004469,0.009515,85214760,57583753,0,0,77471,0,1,1 +1774174032.837405,42.43,4,3992.50,60.16,1336.81,2355.48,0.00,1.958894,0.000195,238,2,96.947745,0.051293,85225058,57587136,0,0,77474,0,1,1 +1774174037.834897,30.26,4,3992.50,59.89,1347.62,2344.75,0.00,3520203111731.787109,3520203111733.794922,21,0,119.625843,0.041912,85237278,57590148,0,0,77476,0,1,1 +1774174042.833200,29.30,4,3992.50,59.81,1350.79,2341.52,0.00,106461.211212,161546.738995,8682723,2867943,118.200849,0.039951,85249184,57593106,0,0,77479,0,1,1 +1774174047.837626,28.77,4,3992.50,59.72,1354.17,2338.22,0.00,0.000000,0.039418,8682723,2867954,120.056850,0.044907,85261315,57596486,0,0,77481,0,1,1 +1774174052.834881,29.29,4,3992.50,59.90,1346.27,2345.40,0.00,3520369164136.102539,3520369109038.988281,21,0,118.228125,0.050234,85273315,57600082,0,0,77484,0,1,1 +1774174057.837384,29.00,4,3992.50,59.99,1343.00,2348.71,0.00,0.048023,0.000000,70,0,119.981280,0.048237,85285549,57603485,0,0,77486,0,1,1 +1774174062.835436,29.07,4,3992.50,59.74,1352.94,2338.77,0.00,3519808276985.439453,0.000000,21,0,118.734104,0.044310,85297568,57606699,0,0,77489,0,1,1 +1774174067.833514,28.93,4,3992.50,59.78,1351.17,2340.47,0.00,2.007608,0.000195,238,2,119.812440,0.042940,85309810,57609696,0,0,77491,0,1,1 +1774174072.834891,12.16,4,3992.50,54.36,1563.55,2128.28,0.00,0.000000,0.000000,238,2,93.907154,0.048103,85319410,57612988,0,0,77494,0,1,1 +1774174077.837607,2.36,4,3992.50,54.26,1568.32,2124.46,0.00,3516526974462.466797,0.028110,237,494,0.007555,0.009983,85319578,57613189,0,0,77496,0,1,1 +1774174082.836384,13.90,4,3992.50,53.59,1594.61,2098.16,0.00,0.468572,3519297970042.437988,238,2,12.102415,0.072398,85324552,57617022,0,0,77499,0,1,1 +1774174087.834656,16.23,4,3992.50,53.58,1594.86,2097.82,0.00,3519653972265.536621,3519653972267.544434,21,0,28.188567,0.139404,85335275,57625358,0,0,77501,0,1,1 +1774174092.833258,1.71,4,3992.50,53.15,1611.57,2081.10,0.00,0.000000,0.000000,21,0,0.009706,0.012452,85335485,57625605,0,0,77504,0,1,1 +1774174097.837679,0.75,4,3992.50,53.05,1615.68,2076.99,0.00,106327.069967,161350.068251,8681960,2868532,0.005005,0.010269,85335619,57625804,0,0,77506,0,1,1 +1774174102.837191,0.65,4,3992.50,53.04,1616.14,2076.54,0.00,4.109678,0.034574,8682734,2869036,0.003018,0.006249,85335699,57625925,0,0,77509,0,1,1 +1774174107.836420,1.05,4,3992.50,53.41,1607.83,2090.96,0.00,3518979891882.097168,0.888907,8681960,2869008,0.004169,0.008253,85335811,57626088,0,0,77511,0,1,1 +1774174112.837413,0.75,4,3992.50,53.45,1606.12,2092.67,0.00,3517738692734.725098,3517738637671.085449,238,2,0.004322,0.008411,85335924,57626254,0,0,77514,0,1,1 +1774174117.838074,0.65,4,3992.50,53.44,1606.40,2092.39,0.00,106404.994793,161472.474380,8681960,2869231,0.005015,0.010401,85336058,57626461,0,0,77516,0,1,1 +1774174122.833233,0.75,4,3992.50,53.44,1606.45,2092.35,0.00,3521846912380.534668,3521846857254.409180,21,0,0.004327,0.008426,85336171,57626627,0,0,77519,0,1,1 +1774174127.834895,0.75,4,3992.50,53.45,1606.00,2092.80,0.00,0.000000,0.000000,21,0,0.004685,0.009426,85336294,57626811,0,0,77521,0,1,1 +1774174132.836668,0.65,4,3992.50,53.45,1606.30,2092.50,0.00,0.000000,0.000000,21,0,0.004333,0.008787,85336406,57626982,0,0,77524,0,1,1 +1774174137.837431,1.10,4,3992.50,53.56,1604.54,2097.11,0.00,0.000000,0.000000,21,0,0.005005,0.009934,85336541,57627179,0,0,77526,0,1,1 +1774174142.837859,0.70,4,3992.50,53.56,1604.43,2097.09,0.00,1.538247,0.028318,237,494,0.004310,0.008386,85336653,57627343,0,0,77529,0,1,1 +1774174147.838028,0.75,4,3992.50,53.56,1604.68,2096.85,0.00,3518318032894.933594,3518318032896.443848,21,0,0.003704,0.008140,85336754,57627499,0,0,77531,0,1,1 +1774174152.837220,0.70,4,3992.50,53.57,1604.24,2097.29,0.00,106442.394683,161520.366069,8682734,2869985,0.005726,0.010404,85336885,57627696,0,0,77534,0,1,1 +1774174157.837889,0.80,4,3992.50,53.57,1604.02,2097.51,0.00,3517966236749.145996,3517966181687.404297,70,0,0.004487,0.009633,85337000,57627874,0,0,77536,0,1,1 +1774174162.834904,0.60,4,3992.50,53.59,1603.29,2098.23,0.00,1.491222,0.028337,237,494,0.004288,0.008379,85337110,57628037,0,0,77539,0,1,1 +1774174167.833715,1.00,4,3992.50,53.65,1599.98,2100.71,0.00,0.468568,3519273799389.086914,238,2,0.004286,0.008366,85337220,57628199,0,0,77541,0,1,1 +1774174172.837892,9.69,4,3992.50,54.19,1577.53,2121.66,0.00,3515500821431.776855,3515500821433.782227,21,0,0.027675,38.236603,85338921,57632589,0,0,77544,0,1,1 +1774174177.835038,29.82,4,3992.50,55.39,1523.62,2168.67,0.00,106485.946066,161738.625432,8682734,2871076,0.033239,119.121214,85341435,57644891,0,0,77546,0,1,1 +1774174182.837566,13.92,4,3992.50,54.59,1555.81,2137.13,0.00,3516659735019.330078,27.307975,8681973,2870780,0.011780,47.764208,85342114,57650032,0,0,77549,0,1,1 +1774174187.836450,14.19,4,3992.50,54.33,1568.81,2127.12,0.00,3519222100143.773926,3519222044878.881836,21,0,40.080090,0.035228,85346785,57652303,0,0,77551,0,1,1 +1774174192.834905,0.90,4,3992.50,54.36,1567.70,2128.23,0.00,0.000000,0.000000,21,0,0.005514,0.008384,85346917,57652472,0,0,77554,0,1,1 +1774174197.834890,12.20,4,3992.50,54.22,1570.94,2122.70,0.00,106442.975119,161734.289563,8682858,2871946,0.027673,40.073038,85348698,57657040,0,0,77556,0,1,1 +1774174202.834947,1.00,4,3992.50,54.21,1571.11,2122.54,0.00,3518396780208.084473,3518396724915.559570,238,2,0.003167,0.008913,85348793,57657212,0,0,77559,0,1,1 +1774174207.835041,0.75,4,3992.50,53.92,1582.37,2111.29,0.00,106434.577491,161730.806868,8682093,2871465,0.002721,0.007623,85348875,57657358,0,0,77561,0,1,1 +1774174212.833225,0.60,4,3992.50,53.93,1582.19,2111.46,0.00,3519715088467.127441,3519715033151.742676,70,0,0.002048,0.005734,85348937,57657469,0,0,77564,0,1,1 +1774174217.834899,0.75,4,3992.50,53.97,1580.73,2112.92,0.00,1.489833,0.028311,237,494,0.001398,0.003851,85348981,57657545,0,0,77566,0,1,1 +1774174222.838111,0.65,4,3992.50,53.97,1580.77,2112.88,0.00,0.000000,0.000000,237,494,0.002728,0.008280,85349064,57657697,0,0,77569,0,1,1 +1774174227.837846,1.10,4,3992.50,54.19,1572.20,2121.80,0.00,3518623833171.324219,3518623833172.659668,199,0,0.003396,0.009512,85349166,57657878,0,0,77571,0,1,1 +1774174232.833255,0.65,4,3992.50,54.11,1575.05,2118.59,0.00,106540.312711,161888.715630,8682867,2872171,0.002711,0.007653,85349247,57658026,0,0,77574,0,1,1 +1774174237.837584,0.75,4,3992.50,54.11,1575.04,2118.60,0.00,3515393585057.988281,3515393529808.359375,70,0,0.002820,0.007772,85349337,57658182,0,0,77576,0,1,1 +1774174242.833211,0.70,4,3992.50,54.14,1573.82,2119.82,0.00,3521517005811.946777,0.000000,21,0,0.002887,0.007805,85349430,57658342,0,0,77579,0,1,1 +1774174247.833211,0.70,4,3992.50,54.11,1575.04,2118.60,0.00,0.000000,0.000000,21,0,0.003370,0.009512,85349530,57658523,0,0,77581,0,1,1 +1774174252.833212,0.85,4,3992.50,54.11,1574.99,2118.65,0.00,2.006836,0.000195,238,2,0.003818,0.008249,85349633,57658684,0,0,77584,0,1,1 +1774174257.834903,1.05,4,3992.50,54.30,1567.46,2125.84,0.00,3517248200314.816895,0.028115,237,494,0.003772,0.008030,85349736,57658844,0,0,77586,0,1,1 +1774174262.835872,36.24,4,3992.50,60.09,1346.57,2352.50,0.00,0.468366,3517755137268.585938,238,2,82.506490,0.036162,85358498,57661006,0,0,77589,0,1,1 +1774174267.836882,30.27,4,3992.50,60.11,1345.60,2353.39,0.00,106415.067332,161707.537385,8682093,2871830,119.341191,0.022482,85370753,57662654,0,0,77591,0,1,1 +1774174272.836467,28.77,4,3992.50,60.36,1335.93,2363.15,0.00,3518729463824.878418,3518729408517.142578,237,494,118.977161,0.032267,85382971,57664922,0,0,77594,0,1,1 +1774174277.835504,29.59,4,3992.50,60.20,1341.98,2357.14,0.00,106461.631816,161771.398767,8682867,2872356,119.586145,0.022478,85395063,57666535,0,0,77596,0,1,1 +1774174282.838107,28.99,4,3992.50,60.42,1333.34,2365.71,0.00,0.000000,0.050852,8682867,2872366,118.704306,0.036092,85407155,57669215,0,0,77599,0,1,1 +1774174287.833614,28.95,4,3992.50,60.13,1344.89,2354.16,0.00,3521601825841.655762,3521601770494.256836,21,0,119.677106,0.038576,85419362,57672096,0,0,77601,0,1,1 +1774174292.833344,29.39,4,3992.50,60.40,1332.96,2364.98,0.00,1.538462,0.028322,237,494,119.175926,0.039896,85431539,57674912,0,0,77604,0,1,1 +1774174297.833941,29.25,4,3992.50,60.36,1334.69,2363.26,0.00,3518017844268.139160,3518017844269.649414,21,0,119.154561,0.032066,85443705,57677195,0,0,77606,0,1,1 +1774174302.837650,15.09,4,3992.50,55.62,1520.54,2177.51,0.00,1.537239,0.028299,237,494,108.273113,0.034987,85454788,57679815,0,0,77609,0,1,1 +1774174307.837725,1.05,4,3992.50,54.65,1558.46,2139.59,0.00,3518383908180.159668,3518383908181.669922,21,0,0.005998,0.009293,85454941,57680010,0,0,77611,0,1,1 +1774174312.837718,14.49,4,3992.50,54.73,1555.20,2142.80,0.00,0.000000,0.000000,21,0,12.171679,0.077716,85460040,57683857,0,0,77614,0,1,1 +1774174317.837402,6.84,4,3992.50,54.48,1565.32,2132.93,0.00,0.175011,0.000000,199,0,10.001931,0.053153,85463879,57686941,0,0,77616,0,1,1 +1774174322.834899,13.05,4,3992.50,54.19,1576.35,2121.70,0.00,0.000000,0.000000,199,0,18.126175,0.093664,85470724,57692356,0,0,77619,0,1,1 +1774174327.837399,21.96,4,3992.50,54.44,1563.08,2131.41,0.00,1.830920,0.000195,238,2,0.039273,89.693537,85473394,57702021,0,0,77621,0,1,1 +1774174332.834875,29.73,4,3992.50,54.33,1563.54,2127.11,0.00,106494.568035,162001.512399,8682879,2875098,0.038320,115.422488,85476224,57713933,0,0,77624,0,1,1 +1774174337.834916,1.35,4,3992.50,53.68,1588.96,2101.78,0.00,3518408137498.782227,3518408082020.816895,237,494,0.004994,0.007838,85476348,57714094,0,0,77626,0,1,1 +1774174342.833505,14.96,4,3992.50,53.95,1582.13,2112.29,0.00,3519430273148.176270,3519430273149.511719,199,0,40.082146,0.030704,85481029,57715930,0,0,77629,0,1,1 +1774174347.833397,1.35,4,3992.50,54.09,1576.79,2117.85,0.00,1.831876,0.000195,238,2,0.005736,0.008568,85481168,57716105,0,0,77631,0,1,1 +1774174352.837528,1.00,4,3992.50,53.90,1584.20,2110.18,0.00,106370.406532,161813.664753,8683005,2875511,0.005526,0.012613,85481314,57716327,0,0,77634,0,1,1 +1774174357.837811,0.65,4,3992.50,53.90,1584.21,2110.16,0.00,0.000000,0.029979,8683005,2875547,0.004298,0.008364,85481425,57716489,0,0,77636,0,1,1 +1774174362.837606,0.70,4,3992.50,53.90,1584.01,2110.36,0.00,3518580741444.697754,3518580685955.175293,199,0,0.004336,0.008387,85481539,57716653,0,0,77639,0,1,1 +1774174367.837739,0.80,4,3992.50,53.90,1584.14,2110.23,0.00,0.000000,0.000000,199,0,0.005010,0.010265,85481673,57716851,0,0,77641,0,1,1 +1774174372.834894,0.70,4,3992.50,53.90,1584.16,2110.20,0.00,3520440293644.384766,0.000000,21,0,0.004950,0.009545,85481800,57717040,0,0,77644,0,1,1 +1774174377.836077,0.95,4,3992.50,53.91,1600.30,2110.75,0.00,0.000000,0.000000,21,0,0.004310,0.008375,85481912,57717203,0,0,77646,0,1,1 +1774174382.834892,0.75,4,3992.50,53.71,1603.43,2102.86,0.00,0.175041,0.000000,199,0,0.004374,0.008439,85482028,57717371,0,0,77649,0,1,1 +1774174387.834902,0.70,4,3992.50,53.72,1603.21,2103.08,0.00,106455.782236,161947.402645,8682231,2875421,0.005010,0.010302,85482162,57717570,0,0,77651,0,1,1 +1774174392.834918,0.65,4,3992.50,53.69,1604.33,2101.96,0.00,3518426335340.759766,3518426279847.363281,238,2,0.004306,0.008408,85482274,57717736,0,0,77654,0,1,1 +1774174397.835146,0.65,4,3992.50,53.69,1604.35,2101.95,0.00,3518276229448.659180,3518276229450.666016,21,0,0.004398,0.008417,85482392,57717902,0,0,77656,0,1,1 +1774174402.834906,0.70,4,3992.50,53.69,1604.36,2101.93,0.00,0.175008,0.000000,199,0,0.004606,0.009404,85482514,57718083,0,0,77659,0,1,1 +1774174407.834902,1.00,4,3992.50,54.03,1592.69,2115.48,0.00,3518440272740.862305,0.000000,70,0,0.004690,0.009262,85482636,57718265,0,0,77661,0,1,1 +1774174412.837791,0.75,4,3992.50,54.04,1591.28,2115.69,0.00,3516405339154.930664,0.000000,21,0,0.004308,0.008357,85482748,57718427,0,0,77664,0,1,1 +1774174417.837857,1.00,4,3992.50,54.02,1591.88,2115.09,0.00,0.000000,0.000000,21,0,0.011582,2.418005,85483271,57719146,0,0,77666,0,1,1 +1774174422.837550,11.10,4,3992.50,54.31,1578.06,2126.37,0.00,106466.815955,161985.965123,8683005,2876353,0.018094,37.665051,85484442,57723144,0,0,77669,0,1,1 +1774174427.834822,0.85,4,3992.50,54.13,1585.26,2119.17,0.00,3520358102697.715820,3520358047151.486816,199,0,0.003437,0.009709,85484548,57723329,0,0,77671,0,1,1 +1774174432.833299,0.70,4,3992.50,53.93,1592.75,2111.67,0.00,3519509002848.004883,0.000000,70,0,0.003038,0.008508,85484635,57723494,0,0,77674,0,1,1 +1774174437.833685,1.00,4,3992.50,53.92,1585.44,2111.24,0.00,1.490217,0.028318,237,494,0.002729,0.007631,85484718,57723641,0,0,77676,0,1,1 +1774174442.833242,0.90,4,3992.50,54.26,1572.42,2124.28,0.00,106468.178151,161996.525201,8683005,2876491,0.002709,0.007621,85484799,57723787,0,0,77679,0,1,1 +1774174447.836203,0.65,4,3992.50,54.24,1573.02,2123.68,0.00,3516354329886.508789,3516354274397.457520,21,0,0.003406,0.009519,85484902,57723969,0,0,77681,0,1,1 +1774174452.833241,0.65,4,3992.50,54.25,1572.79,2123.92,0.00,1.539291,0.028337,237,494,0.003708,0.008364,85484991,57724123,0,0,77684,0,1,1 +1774174457.838051,0.70,4,3992.50,54.25,1572.80,2123.90,0.00,106352.325304,161832.498331,8682231,2876044,0.002757,0.007678,85485076,57724273,0,0,77686,0,1,1 +1774174462.834898,0.75,4,3992.50,54.25,1572.80,2123.89,0.00,0.000000,0.005472,8682231,2876050,0.002799,0.007731,85485164,57724426,0,0,77689,0,1,1 +1774174467.834903,1.10,4,3992.50,54.25,1573.39,2123.89,0.00,4.109273,0.055859,8683005,2876563,0.003507,0.009625,85485273,57724616,0,0,77691,0,1,1 +1774174472.837388,0.75,4,3992.50,53.74,1592.66,2104.15,0.00,3516689784463.171387,3516689728962.760254,21,0,0.002751,0.007655,85485357,57724765,0,0,77694,0,1,1 +1774174477.837976,0.65,4,3992.50,53.77,1591.44,2105.37,0.00,106447.757167,161969.271300,8683005,2876622,0.002734,0.007622,85485440,57724911,0,0,77696,0,1,1 +1774174482.835583,0.70,4,3992.50,53.77,1591.45,2105.36,0.00,3520122144059.907715,3520122088505.217285,70,0,0.002986,0.008634,85485532,57725075,0,0,77699,0,1,1 +1774174487.837933,35.68,4,3992.50,60.27,1342.84,2359.85,0.00,0.000000,0.000000,70,0,71.475004,0.036477,85493197,57727237,0,0,77701,0,1,1 +1774174492.835261,29.57,4,3992.50,60.11,1349.11,2353.50,0.00,106517.179683,162075.069087,8683017,2876766,119.831735,0.022708,85505608,57728706,0,0,77704,0,1,1 +1774174497.833199,27.96,4,3992.50,59.62,1368.27,2334.38,0.00,3519888840448.392578,3519888784897.323242,21,0,118.212639,0.022290,85517747,57730236,0,0,77706,0,1,1 +1774174502.833649,28.17,4,3992.50,60.07,1347.52,2352.02,0.00,1.538240,0.028318,237,494,120.155714,0.031789,85530034,57732751,0,0,77709,0,1,1 +1774174507.833211,28.95,4,3992.50,60.01,1350.22,2349.36,0.00,3518745488285.185547,3518745488286.647949,70,0,118.187679,0.054533,85542507,57736792,0,0,77711,0,1,1 +1774174512.835497,28.79,4,3992.50,59.95,1352.49,2347.00,0.00,1.489651,0.028307,237,494,120.117028,0.035535,85555016,57739428,0,0,77714,0,1,1 +1774174517.837296,28.51,4,3992.50,59.81,1357.87,2341.65,0.00,106420.495186,161930.264825,8683018,2876858,118.525299,0.023814,85567374,57741029,0,0,77716,0,1,1 +1774174522.837390,28.59,4,3992.50,60.01,1349.96,2349.64,0.00,0.000000,0.213375,8683018,2876928,119.763502,0.022309,85579701,57742657,0,0,77719,0,1,1 +1774174527.837326,17.60,4,3992.50,60.20,1346.09,2356.88,0.00,3518482478884.177246,3518482423354.834961,199,0,119.166649,0.040409,85591938,57745485,0,0,77721,0,1,1 +1774174532.837906,2.61,4,3992.50,55.19,1542.12,2160.86,0.00,0.000000,0.000000,199,0,0.006989,0.009786,85592114,57745699,0,0,77724,0,1,1 +1774174537.834884,16.93,4,3992.50,54.81,1557.07,2145.86,0.00,0.000000,0.000000,199,0,18.148770,0.105002,85599391,57751440,0,0,77726,0,1,1 +1774174542.834778,13.37,4,3992.50,54.33,1575.91,2126.97,0.00,106458.462374,161992.676219,8682257,2877236,22.139644,0.112314,85607778,57758172,0,0,77729,0,1,1 +1774174547.838126,2.76,4,3992.50,54.04,1587.02,2115.86,0.00,3516082817056.830078,3516082761559.619141,237,494,0.016085,0.015310,85608109,57758505,0,0,77731,0,1,1 +1774174552.836943,1.05,4,3992.50,53.92,1591.88,2111.02,0.00,106480.027201,162027.602469,8682257,2877314,0.005434,0.009484,85608244,57758685,0,0,77734,0,1,1 +1774174557.837424,1.51,4,3992.50,53.76,1602.05,2104.80,0.00,3518098888582.928711,3518098833055.341309,21,0,0.005846,0.010082,85608393,57758887,0,0,77736,0,1,1 +1774174562.835766,0.95,4,3992.50,53.49,1612.43,2094.34,0.00,0.175058,0.000000,199,0,0.004527,0.008966,85608511,57759059,0,0,77739,0,1,1 +1774174567.837600,0.85,4,3992.50,53.56,1609.68,2097.10,0.00,3517146923134.869141,0.000000,70,0,0.003703,0.008149,85608612,57759216,0,0,77741,0,1,1 +1774174572.834888,0.90,4,3992.50,53.52,1611.21,2095.55,0.00,106518.216698,162078.354712,8683031,2878522,0.004120,0.008254,85608720,57759379,0,0,77744,0,1,1 +1774174577.835411,0.90,4,3992.50,53.53,1610.99,2095.79,0.00,3518069163259.121094,0.000781,8682257,2878037,0.005047,0.010370,85608857,57759584,0,0,77746,0,1,1 +1774174582.835501,0.90,4,3992.50,53.56,1609.78,2097.00,0.00,3518373452236.372070,3518373396703.312988,21,0,0.004285,0.008387,85608967,57759748,0,0,77749,0,1,1 +1774174587.836870,1.10,4,3992.50,53.75,1602.38,2104.59,0.00,0.000000,0.000000,21,0,0.004322,0.008387,85609080,57759912,0,0,77751,0,1,1 +1774174592.833191,1.00,4,3992.50,53.65,1606.30,2100.47,0.00,0.000000,0.000000,21,0,0.004363,0.008433,85609195,57760079,0,0,77754,0,1,1 +1774174597.833226,0.75,4,3992.50,53.66,1605.86,2100.92,0.00,0.174999,0.000000,199,0,0.004552,0.009017,85609315,57760254,0,0,77756,0,1,1 +1774174602.833230,0.90,4,3992.50,53.67,1605.65,2101.12,0.00,1.363378,0.028320,237,494,0.004794,0.009710,85609443,57760446,0,0,77759,0,1,1 +1774174607.833288,1.71,4,3992.50,53.66,1605.68,2101.10,0.00,3518396522144.327637,3518396522145.789551,70,0,0.004323,0.008390,85609556,57760610,0,0,77761,0,1,1 +1774174612.833555,1.10,4,3992.50,53.59,1608.68,2098.11,0.00,1.490252,0.028319,237,494,0.005059,0.009670,85609677,57760781,0,0,77764,0,1,1 +1774174617.833200,13.15,4,3992.50,54.28,1578.27,2125.12,0.00,3518687396000.366699,3518687396001.876953,21,0,0.030410,53.090750,85611716,57766661,0,0,77766,0,1,1 +1774174622.837853,29.38,4,3992.50,54.19,1574.68,2121.77,0.00,0.000000,0.000000,21,0,0.030156,118.259453,85613874,57778947,0,0,77769,0,1,1 +1774174627.837312,9.21,4,3992.50,53.73,1593.70,2103.75,0.00,0.000000,0.000000,21,0,0.006992,33.653659,85614298,57782515,0,0,77771,0,1,1 +1774174632.836015,1.60,4,3992.50,53.78,1592.08,2105.70,0.00,0.000000,0.000000,21,0,0.007766,0.012439,85614474,57782758,0,0,77774,0,1,1 +1774174637.834895,14.36,4,3992.50,53.54,1604.74,2096.12,0.00,0.048058,0.000000,70,0,40.075293,0.030904,85618958,57784338,0,0,77776,0,1,1 +1774174642.837442,1.25,4,3992.50,53.61,1601.87,2098.99,0.00,0.126888,0.000000,199,0,0.005336,0.010308,85619094,57784540,0,0,77779,0,1,1 +1774174647.837224,11.43,4,3992.50,53.48,1604.34,2093.99,0.00,0.000000,0.000000,199,0,0.023399,40.069412,85620596,57789033,0,0,77781,0,1,1 +1774174652.837885,1.45,4,3992.50,53.72,1589.85,2103.23,0.00,1.831594,0.000195,238,2,0.004363,0.011349,85620722,57789248,0,0,77784,0,1,1 +1774174657.833302,1.05,4,3992.50,53.53,1597.24,2095.84,0.00,3521665396996.663574,3521665396998.672852,21,0,0.003436,0.009533,85620827,57789430,0,0,77786,0,1,1 +1774174662.833248,0.75,4,3992.50,53.58,1595.31,2097.77,0.00,106479.145244,162223.479578,8683185,2880715,0.002792,0.007672,85620915,57789580,0,0,77789,0,1,1 +1774174667.835855,1.00,4,3992.50,53.58,1595.31,2097.77,0.00,3516603500327.665039,3516603444612.938965,70,0,0.003444,0.009519,85621021,57789762,0,0,77791,0,1,1 +1774174672.838020,1.00,4,3992.50,53.55,1596.64,2096.43,0.00,1.957941,0.000195,238,2,0.004043,0.010639,85621139,57789967,0,0,77794,0,1,1 +1774174677.837898,1.05,4,3992.50,53.49,1598.62,2094.45,0.00,106478.563703,162240.323157,8683185,2880808,0.002747,0.007784,85621223,57790114,0,0,77796,0,1,1 +1774174682.837801,1.35,4,3992.50,53.92,1578.66,2110.90,0.00,0.000000,0.140628,8683185,2880921,0.002314,0.006868,85621295,57790241,0,0,77799,0,1,1 +1774174687.837661,1.00,4,3992.50,53.89,1579.83,2109.74,0.00,0.000000,0.006250,8683185,2880924,0.003255,0.008966,85621397,57790416,0,0,77801,0,1,1 +1774174692.836432,0.85,4,3992.50,53.70,1587.02,2102.54,0.00,3519302404549.187012,3519302348776.927246,21,0,0.003510,0.009630,85621508,57790605,0,0,77804,0,1,1 +1774174697.837264,0.90,4,3992.50,53.69,1587.65,2101.92,0.00,2.006502,0.000195,238,2,0.002870,0.007723,85621600,57790759,0,0,77806,0,1,1 +1774174702.837443,0.80,4,3992.50,53.69,1587.66,2101.91,0.00,3518311698742.177734,0.028124,237,494,0.003433,0.009534,85621705,57790942,0,0,77809,0,1,1 +1774174707.837664,1.40,4,3992.50,53.55,1592.84,2096.72,0.00,0.000000,0.000000,237,494,0.003428,0.009532,85621810,57791125,0,0,77811,0,1,1 +1774174712.837857,0.85,4,3992.50,53.44,1597.09,2092.46,0.00,106468.224971,162230.270912,8682411,2880469,0.002746,0.007633,85621894,57791272,0,0,77814,0,1,1 +1774174717.834886,36.26,4,3992.50,59.72,1357.38,2338.17,0.00,3520528814747.123047,3520528758951.281738,21,0,79.166015,0.039650,85630363,57793593,0,0,77816,0,1,1 +1774174722.833198,29.73,4,3992.50,59.86,1351.77,2343.79,0.00,106509.839847,162291.485363,8682412,2880610,119.811421,0.026831,85642851,57795332,0,0,77819,0,1,1 +1774174727.835229,28.22,4,3992.50,59.62,1361.14,2334.42,0.00,3517008505513.747559,3517008449772.067383,237,494,118.517828,0.025543,85655019,57797045,0,0,77821,0,1,1 +1774174732.835045,28.33,4,3992.50,59.62,1361.26,2334.25,0.00,3518566544350.747070,3518566544352.209473,70,0,119.772892,0.034783,85667225,57799592,0,0,77824,0,1,1 +1774174737.835473,28.43,4,3992.50,59.77,1355.38,2340.12,0.00,1.490205,0.028318,237,494,118.562573,0.044310,85679489,57802622,0,0,77826,0,1,1 +1774174742.837796,28.86,4,3992.50,59.65,1360.09,2335.53,0.00,3516803209267.206543,3516803209268.541016,199,0,119.723728,0.050846,85692109,57806126,0,0,77829,0,1,1 +1774174747.835207,28.66,4,3992.50,59.82,1353.50,2342.15,0.00,106532.982590,162321.047666,8683186,2881247,119.435151,0.043440,85704561,57809295,0,0,77831,0,1,1 +1774174752.836561,28.57,4,3992.50,59.68,1359.10,2336.57,0.00,3517484184985.812500,3517484129241.739746,199,0,119.336993,0.033560,85716896,57811690,0,0,77834,0,1,1 +1774174757.837909,15.85,4,3992.50,53.53,1599.96,2095.80,0.00,3517488891064.003418,0.000000,21,0,111.129234,0.029104,85728453,57813572,0,0,77836,0,1,1 +1774174762.837751,1.20,4,3992.50,53.50,1600.96,2094.80,0.00,0.000000,0.000000,21,0,0.005839,0.009083,85728593,57813759,0,0,77839,0,1,1 +1774174767.837467,17.03,4,3992.50,54.31,1578.58,2126.27,0.00,2.006950,0.000195,238,2,16.200038,0.087451,85734297,57817935,0,0,77841,0,1,1 +1774174772.837523,13.37,4,3992.50,54.11,1586.06,2118.41,0.00,3518397313070.429199,3518397313072.387695,70,0,22.043419,0.088169,85741215,57823083,0,0,77844,0,1,1 +1774174777.834905,3.02,4,3992.50,53.81,1597.61,2106.88,0.00,1.491113,0.028335,237,494,2.026559,0.022827,85742152,57823898,0,0,77846,0,1,1 +1774174782.834903,1.10,4,3992.50,53.43,1612.55,2091.93,0.00,0.468457,3518439086322.268555,238,2,0.005022,0.010288,85742287,57824098,0,0,77849,0,1,1 +1774174787.834903,0.90,4,3992.50,53.44,1612.35,2092.14,0.00,106472.010027,162238.366363,8682431,2882321,0.005010,0.010291,85742421,57824298,0,0,77851,0,1,1 +1774174792.836767,1.45,4,3992.50,53.34,1615.92,2088.57,0.00,3517126358047.273438,3517126302303.510254,199,0,0.004334,0.008396,85742535,57824463,0,0,77854,0,1,1 +1774174797.835173,0.95,4,3992.50,53.66,1605.23,2100.77,0.00,3519559439415.903320,0.000000,21,0,0.005032,0.010302,85742671,57824664,0,0,77856,0,1,1 +1774174802.837193,0.65,4,3992.50,53.67,1604.60,2101.15,0.00,0.000000,0.000000,21,0,0.003673,0.006527,85742766,57824795,0,0,77859,0,1,1 +1774174807.834890,0.65,4,3992.50,53.67,1604.61,2101.14,0.00,1.539088,0.028333,237,494,0.005125,0.010420,85742909,57825003,0,0,77861,0,1,1 +1774174812.833253,0.70,4,3992.50,53.67,1604.28,2101.46,0.00,3519589241536.118652,3519589241537.629395,21,0,0.005049,0.010948,85743046,57825208,0,0,77864,0,1,1 +1774174817.837464,0.60,4,3992.50,53.67,1604.30,2101.45,0.00,1.537085,0.028296,237,494,0.004332,0.008383,85743160,57825372,0,0,77866,0,1,1 +1774174822.837398,0.65,4,3992.50,53.67,1604.32,2101.43,0.00,3518483697903.065430,3518483697904.575684,21,0,0.005097,0.010328,85743300,57825575,0,0,77869,0,1,1 +1774174827.837506,1.00,4,3992.50,53.80,1596.86,2106.29,0.00,2.006793,0.000195,238,2,0.004391,0.010053,85743422,57825768,0,0,77871,0,1,1 +1774174832.838014,20.92,4,3992.50,53.66,1598.94,2100.93,0.00,3518079195069.985840,3518079195071.992676,21,0,0.037555,87.126969,85745903,57835240,0,0,77874,0,1,1 +1774174837.837377,29.05,4,3992.50,55.45,1525.08,2170.96,0.00,2.007092,0.000195,238,2,0.043629,117.981441,85749219,57847490,0,0,77876,0,1,1 +1774174842.833255,1.96,4,3992.50,54.22,1573.47,2122.95,0.00,3521339735838.305176,3521339735840.313965,21,0,0.007564,0.010607,85749394,57847714,0,0,77879,0,1,1 +1774174847.837526,14.43,4,3992.50,56.06,1504.65,2194.95,0.00,2.005123,0.000195,238,2,40.032861,0.029553,85753943,57849304,0,0,77881,0,1,1 +1774174852.836999,0.85,4,3992.50,54.42,1569.04,2130.57,0.00,3518808246097.895020,3518808246099.901855,21,0,0.006132,0.010909,85754100,57849518,0,0,77884,0,1,1 +1774174857.834896,1.05,4,3992.50,53.99,1585.97,2113.97,0.00,106536.366051,162512.904488,8682564,2884444,0.005402,0.008782,85754236,57849694,0,0,77886,0,1,1 +1774174862.834883,0.70,4,3992.50,53.73,1595.98,2103.70,0.00,3518445997728.821777,3518445941773.679199,238,2,0.005010,0.010300,85754370,57849895,0,0,77889,0,1,1 +1774174867.837184,0.50,4,3992.50,53.73,1596.14,2103.54,0.00,3516819031117.820312,3516819031119.778320,70,0,0.004563,0.009019,85754491,57850071,0,0,77891,0,1,1 +1774174872.837477,5.31,4,3992.50,54.01,1583.98,2114.66,0.00,1.958674,0.000195,238,2,0.018259,19.237501,85755578,57852427,0,0,77894,0,1,1 +1774174877.833218,6.57,4,3992.50,53.81,1590.48,2106.67,0.00,3521437472903.819824,3521437472905.828613,21,0,0.010909,20.857623,85756205,57854715,0,0,77896,0,1,1 +1774174882.837516,0.75,4,3992.50,53.82,1589.79,2107.36,0.00,106400.085361,162339.217178,8682564,2884889,0.003430,0.009526,85756310,57854898,0,0,77899,0,1,1 +1774174887.837727,1.05,4,3992.50,53.95,1585.56,2112.14,0.00,3518288354085.685059,3518288298100.781738,70,0,0.002742,0.007631,85756394,57855045,0,0,77901,0,1,1 +1774174892.837537,0.70,4,3992.50,53.63,1597.20,2099.84,0.00,3518571540907.440430,0.000000,21,0,0.003433,0.009534,85756499,57855228,0,0,77904,0,1,1 +1774174897.838082,0.75,4,3992.50,53.63,1597.29,2099.76,0.00,2.006617,0.000195,238,2,0.003458,0.009554,85756606,57855412,0,0,77906,0,1,1 +1774174902.833228,0.75,4,3992.50,53.63,1597.29,2099.75,0.00,3521856281900.620117,3521856281902.629395,21,0,0.002774,0.007672,85756692,57855561,0,0,77909,0,1,1 +1774174907.833220,0.75,4,3992.50,53.63,1597.29,2099.75,0.00,2.006839,0.000195,238,2,0.003458,0.009555,85756799,57855745,0,0,77911,0,1,1 +1774174912.835388,0.95,4,3992.50,53.65,1596.57,2100.48,0.00,3516912312278.477051,3516912312280.482910,21,0,0.003469,0.009592,85756907,57855932,0,0,77914,0,1,1 +1774174917.834892,0.70,4,3992.50,53.65,1596.57,2100.47,0.00,0.000000,0.000000,21,0,0.002822,0.007717,85756997,57856084,0,0,77916,0,1,1 +1774174922.837685,1.00,4,3992.50,53.95,1580.01,2112.12,0.00,106436.210567,162394.317230,8683338,2885533,0.002750,0.007530,85757088,57856236,0,0,77919,0,1,1 +1774174927.836830,0.75,4,3992.50,53.81,1585.29,2106.84,0.00,3519039090328.609375,3519039034329.616699,70,0,0.002910,0.007849,85757176,57856387,0,0,77921,0,1,1 +1774174932.836380,0.75,4,3992.50,53.81,1585.52,2106.61,0.00,0.000000,0.000000,70,0,0.003467,0.009543,85757284,57856571,0,0,77924,0,1,1 +1774174937.837400,0.95,4,3992.50,53.73,1588.92,2103.84,0.00,3517719346489.025879,0.000000,21,0,0.002937,0.008243,85757372,57856728,0,0,77926,0,1,1 +1774174942.834160,38.26,4,3992.50,59.71,1360.60,2337.94,0.00,106564.721970,162590.418906,8683338,2885583,85.783243,0.047640,85766502,57859675,0,0,77929,0,1,1 +1774174947.833184,28.94,4,3992.50,59.64,1363.38,2335.13,0.00,3519123827730.401367,3519123771730.083008,21,0,120.191523,0.025921,85778896,57861418,0,0,77931,0,1,1 +1774174952.837488,27.94,4,3992.50,59.51,1367.38,2329.96,0.00,106399.973737,162345.491517,8682564,2885227,118.125333,0.025016,85791154,57863234,0,0,77934,0,1,1 +1774174957.835817,28.20,4,3992.50,59.81,1355.69,2341.64,0.00,4.110651,0.031847,8683338,2885731,120.144210,0.027640,85803512,57865245,0,0,77936,0,1,1 +1774174962.837801,28.24,4,3992.50,59.80,1356.25,2341.12,0.00,3517041869368.936523,3517041813401.496094,70,0,119.918048,0.023913,85815749,57866773,0,0,77939,0,1,1 +1774174967.833216,27.98,4,3992.50,59.63,1362.66,2334.59,0.00,1.491700,0.028346,237,494,118.473200,0.029720,85827837,57868701,0,0,77941,0,1,1 +1774174972.837620,28.19,4,3992.50,59.59,1364.13,2333.21,0.00,3515340398583.369141,3515340398584.829590,70,0,120.064091,0.030756,85840178,57870905,0,0,77944,0,1,1 +1774174977.837434,28.28,4,3992.50,60.07,1344.57,2352.07,0.00,106499.594908,162491.496727,8683338,2885830,118.174469,0.039765,85852351,57873635,0,0,77946,0,1,1 +1774174982.837462,13.75,4,3992.50,54.88,1547.73,2148.56,0.00,0.046093,0.093456,8683344,2885841,104.546213,0.027926,85863046,57875596,0,0,77949,0,1,1 +1774174987.837878,0.85,4,3992.50,54.00,1582.01,2114.28,0.00,3518144827580.534180,3518144771595.375488,21,0,0.006092,0.009681,85863195,57875792,0,0,77951,0,1,1 +1774174992.834076,13.62,4,3992.50,54.17,1575.24,2121.02,0.00,2.008363,0.000195,238,2,8.263321,0.057649,85866439,57878222,0,0,77954,0,1,1 +1774174997.833175,20.73,4,3992.50,54.28,1570.91,2125.29,0.00,3519070915431.226562,0.028130,237,494,32.024791,6.754534,85877317,57886998,0,0,77956,0,1,1 +1774175002.837393,30.07,4,3992.50,54.01,1575.78,2114.59,0.00,3515471919567.065430,3515471919568.526367,70,0,0.041320,120.072275,85880357,57899514,0,0,77959,0,1,1 +1774175007.833533,19.71,4,3992.50,53.65,1587.98,2100.69,0.00,106573.880307,162786.813445,8682578,2887694,0.022482,78.378445,85881860,57907810,0,0,77961,0,1,1 +1774175012.836497,1.81,4,3992.50,53.62,1589.87,2099.25,0.00,4.112308,30.775898,8683354,2888473,0.007818,0.011967,85882032,57908045,0,0,77964,0,1,1 +1774175017.833236,15.37,4,3992.50,54.01,1578.41,2114.54,0.00,13.368189,3520732741417.669922,8682713,2888020,40.091486,0.026305,85886486,57909528,0,0,77966,0,1,1 +1774175022.834888,1.00,4,3992.50,53.67,1591.68,2101.27,0.00,3517275084729.857422,3517275028564.106445,237,494,0.005709,0.012530,85886635,57909753,0,0,77969,0,1,1 +1774175027.834874,0.70,4,3992.50,53.67,1591.71,2101.24,0.00,106507.907937,162692.465780,8682713,2888124,0.004717,0.009454,85886760,57909939,0,0,77971,0,1,1 +1774175032.837384,0.60,4,3992.50,53.67,1591.49,2101.46,0.00,3516671390109.109375,3516671333954.424805,21,0,0.005133,0.010420,85886904,57910148,0,0,77974,0,1,1 +1774175037.837767,1.10,4,3992.50,53.67,1592.82,2101.24,0.00,0.048043,0.000000,70,0,0.005043,0.010298,85887041,57910349,0,0,77976,0,1,1 +1774175042.837946,0.70,4,3992.50,53.70,1591.64,2102.44,0.00,1.958719,0.000195,238,2,0.004361,0.008430,85887157,57910516,0,0,77979,0,1,1 +1774175047.837850,0.70,4,3992.50,53.72,1590.91,2103.16,0.00,3518504534761.764648,3518504534763.771484,21,0,0.005023,0.010291,85887292,57910716,0,0,77981,0,1,1 +1774175052.835965,1.00,4,3992.50,53.67,1592.73,2101.35,0.00,0.048065,0.000000,70,0,0.005024,0.010279,85887427,57910915,0,0,77984,0,1,1 +1774175057.837864,0.80,4,3992.50,53.67,1592.74,2101.33,0.00,3517101316731.061523,0.000000,21,0,0.005330,0.009131,85887548,57911088,0,0,77986,0,1,1 +1774175062.834900,0.60,4,3992.50,53.67,1592.76,2101.32,0.00,0.000000,0.000000,21,0,0.003651,0.006503,85887641,57911217,0,0,77989,0,1,1 +1774175067.837952,1.10,4,3992.50,53.85,1592.18,2108.18,0.00,106444.169260,162593.399255,8682713,2888715,0.004416,0.008420,85887761,57911384,0,0,77991,0,1,1 +1774175072.837120,0.70,4,3992.50,53.77,1595.23,2105.14,0.00,3519022731098.936035,3519022674906.088867,21,0,0.005067,0.010959,85887899,57911590,0,0,77994,0,1,1 +1774175077.835604,0.65,4,3992.50,53.77,1595.25,2105.12,0.00,0.048061,0.000000,70,0,0.005011,0.010281,85888033,57911789,0,0,77996,0,1,1 +1774175082.837294,0.60,4,3992.50,53.79,1594.21,2106.15,0.00,106473.091777,162637.747322,8682713,2888819,0.004347,0.008397,85888148,57911954,0,0,77999,0,1,1 +1774175087.838006,0.65,4,3992.50,53.80,1594.00,2106.37,0.00,3517936217911.778320,3517936161736.185547,21,0,0.005022,0.010289,85888283,57912154,0,0,78001,0,1,1 +1774175092.834191,0.70,4,3992.50,53.80,1594.02,2106.35,0.00,0.048084,0.000000,70,0,0.005039,0.010308,85888419,57912355,0,0,78004,0,1,1 +1774175097.837653,11.54,4,3992.50,54.28,1573.09,2125.16,0.00,3516002452427.298340,0.000000,21,0,0.023387,40.041743,85889862,57916882,0,0,78006,0,1,1 +1774175102.837939,0.90,4,3992.50,54.16,1577.04,2120.65,0.00,1.538291,0.028319,237,494,0.005054,0.012794,85890012,57917124,0,0,78009,0,1,1 +1774175107.837223,0.75,4,3992.50,53.78,1592.00,2105.70,0.00,106526.947321,162750.408203,8683487,2889808,0.003434,0.009526,85890117,57917306,0,0,78011,0,1,1 +1774175112.837727,0.70,4,3992.50,53.95,1585.29,2112.41,0.00,3518082450810.692871,3518082394602.408203,70,0,0.002759,0.007632,85890202,57917453,0,0,78014,0,1,1 +1774175117.836921,0.75,4,3992.50,53.95,1585.27,2112.44,0.00,3519004478035.417969,0.000000,21,0,0.003434,0.009526,85890307,57917635,0,0,78016,0,1,1 +1774175122.836254,0.75,4,3992.50,53.96,1585.23,2112.47,0.00,106523.339072,162748.842434,8682713,2889328,0.003446,0.009535,85890413,57917818,0,0,78019,0,1,1 +1774175127.837925,0.75,4,3992.50,53.75,1588.55,2104.57,0.00,3517261920449.005371,3517261864249.605469,199,0,0.002754,0.007629,85890498,57917965,0,0,78021,0,1,1 +1774175132.837409,1.05,4,3992.50,53.85,1584.58,2108.45,0.00,1.832025,0.000195,238,2,0.002759,0.007640,85890583,57918112,0,0,78024,0,1,1 +1774175137.838042,0.70,4,3992.50,53.86,1584.34,2108.69,0.00,3517991410416.861328,3517991410418.868164,21,0,0.002797,0.008354,85890671,57918268,0,0,78026,0,1,1 +1774175142.837608,0.70,4,3992.50,53.86,1584.35,2108.68,0.00,106522.480346,162747.402582,8683487,2889935,0.003540,0.009653,85890784,57918459,0,0,78029,0,1,1 +1774175147.834851,0.75,4,3992.50,53.86,1584.34,2108.68,0.00,0.000000,0.003908,8683487,2889939,0.003102,0.008350,85890883,57918624,0,0,78031,0,1,1 +1774175152.837158,0.70,4,3992.50,53.86,1584.36,2108.68,0.00,3516814499725.458496,3516814443531.338379,21,0,0.004299,0.009524,85891002,57918810,0,0,78034,0,1,1 +1774175157.834909,1.25,4,3992.50,54.09,1575.26,2117.75,0.00,0.000000,0.000000,21,0,0.004520,0.009946,85891131,57919007,0,0,78036,0,1,1 +1774175162.837217,1.46,4,3992.50,53.89,1583.02,2109.98,0.00,0.048025,0.000000,70,0,0.004140,0.008332,85891239,57919170,0,0,78039,0,1,1 +1774175167.835517,36.93,4,3992.50,60.17,1342.91,2355.79,0.00,3519633239387.734375,0.000000,21,0,101.184013,0.062036,85901975,57923239,0,0,78041,0,1,1 +1774175172.837492,28.84,4,3992.50,59.86,1355.08,2343.57,0.00,0.000000,0.000000,21,0,121.119084,0.048437,85914300,57926716,0,0,78044,0,1,1 +1774175177.837970,28.72,4,3992.50,59.98,1350.39,2348.23,0.00,0.000000,0.000000,21,0,121.357781,0.046512,85926750,57929942,0,0,78046,0,1,1 +1774175182.835701,28.90,4,3992.50,60.23,1340.40,2358.24,0.00,0.000000,0.000000,21,0,119.819233,0.050227,85938876,57933585,0,0,78049,0,1,1 +1774175187.838116,29.48,4,3992.50,60.14,1344.30,2354.77,0.00,106461.809054,162655.013645,8683487,2890186,119.309895,0.042379,85951139,57936461,0,0,78051,0,1,1 +1774175192.834890,29.03,4,3992.50,60.20,1342.57,2356.93,0.00,3520708971509.883789,3520708915251.721191,237,494,120.242214,0.043660,85963347,57939764,0,0,78054,0,1,1 +1774175197.833924,28.99,4,3992.50,60.30,1338.64,2360.85,0.00,106528.158595,162765.103704,8682713,2889755,119.587169,0.046959,85975536,57943226,0,0,78056,0,1,1 +1774175202.837510,29.94,4,3992.50,59.84,1356.68,2342.86,0.00,3515915896044.862305,3515915839858.569824,238,2,118.679556,0.045312,85987634,57946397,0,0,78059,0,1,1 +1774175207.836189,9.94,4,3992.50,55.27,1535.46,2164.10,0.00,106535.329267,162776.840080,8682720,2889783,84.140905,0.030740,85996288,57948368,0,0,78061,0,1,1 +1774175212.837430,1.80,4,3992.50,54.97,1547.22,2152.35,0.00,3517563850967.381836,3517563794756.512695,199,0,0.005700,0.007482,85996418,57948524,0,0,78064,0,1,1 +1774175217.838042,20.30,4,3992.50,55.58,1524.49,2176.07,0.00,3518007061456.019531,0.000000,21,0,22.151661,0.112755,86003920,57954153,0,0,78066,0,1,1 +1774175222.837920,12.49,4,3992.50,53.89,1590.21,2110.08,0.00,0.175004,0.000000,199,0,18.106741,0.080114,86009712,57958450,0,0,78069,0,1,1 +1774175227.833204,0.60,4,3992.50,53.91,1589.75,2110.55,0.00,106609.660161,162888.208052,8682727,2890839,0.004340,0.008385,86009826,57958613,0,0,78071,0,1,1 +1774175232.836694,4.56,4,3992.50,54.06,1583.58,2116.66,0.00,4.106410,0.041475,8683501,2891365,0.019919,15.225474,86011010,57960641,0,0,78074,0,1,1 +1774175237.837366,30.86,4,3992.50,55.00,1538.46,2153.49,0.00,3517964491984.218750,3517964435770.381348,199,0,0.061277,124.178807,86015558,57973737,0,0,78076,0,1,1 +1774175242.834890,18.77,4,3992.50,53.88,1583.64,2109.68,0.00,3520180039460.021484,0.000000,21,0,0.016627,65.731651,86016525,57980420,0,0,78079,0,1,1 +1774175247.834901,1.55,4,3992.50,54.03,1579.38,2115.57,0.00,106509.045603,162923.680894,8682736,2892554,0.006578,0.009099,86016664,57980600,0,0,78081,0,1,1 +1774175252.834916,14.86,4,3992.50,54.47,1565.31,2132.50,0.00,3518426939751.555664,3518426883334.953613,238,2,40.065316,0.033776,86021074,57982649,0,0,78084,0,1,1 +1774175257.837445,1.10,4,3992.50,53.97,1584.87,2112.94,0.00,0.000000,0.000000,238,2,0.005834,0.012642,86021233,57982881,0,0,78086,0,1,1 +1774175262.834934,1.55,4,3992.50,53.44,1605.55,2092.27,0.00,106582.387236,163006.051023,8683621,2893218,0.004338,0.008404,86021347,57983046,0,0,78089,0,1,1 +1774175267.834881,0.75,4,3992.50,53.44,1605.43,2092.39,0.00,3518474579032.475098,3518474522638.560059,21,0,0.005022,0.010291,86021482,57983246,0,0,78091,0,1,1 +1774175272.838028,0.90,4,3992.50,53.47,1604.25,2093.58,0.00,0.174890,0.000000,199,0,0.005643,0.012046,86021631,57983473,0,0,78094,0,1,1 +1774175277.837532,0.95,4,3992.50,53.96,1587.32,2112.46,0.00,106537.154944,162956.938760,8682847,2892946,0.004374,0.008422,86021748,57983639,0,0,78096,0,1,1 +1774175282.833234,1.00,4,3992.50,54.23,1574.57,2123.29,0.00,4.112812,0.224314,8683621,2893628,0.003720,0.008169,86021850,57983797,0,0,78099,0,1,1 +1774175287.833232,0.65,4,3992.50,54.23,1574.65,2123.22,0.00,3518438257807.516113,3518438201397.330078,70,0,0.004230,0.008290,86021966,57983963,0,0,78101,0,1,1 +1774175292.833217,0.80,4,3992.50,54.21,1575.51,2122.35,0.00,3518448215996.550781,0.000000,21,0,0.005680,0.011222,86022103,57984166,0,0,78104,0,1,1 +1774175297.834750,0.60,4,3992.50,54.21,1575.29,2122.58,0.00,0.174946,0.000000,199,0,0.005021,0.010287,86022238,57984366,0,0,78106,0,1,1 +1774175302.833232,0.70,4,3992.50,54.21,1575.31,2122.56,0.00,106558.923727,162990.540505,8682847,2893256,0.004412,0.008442,86022357,57984534,0,0,78109,0,1,1 +1774175307.833302,1.20,4,3992.50,54.21,1574.14,2122.52,0.00,0.000000,0.071483,8682847,2893310,0.005010,0.010290,86022491,57984734,0,0,78111,0,1,1 +1774175312.835002,0.80,4,3992.50,54.00,1582.29,2114.39,0.00,3517241181968.428223,3517241125573.175293,70,0,0.005021,0.010297,86022626,57984935,0,0,78114,0,1,1 +1774175317.837400,0.80,4,3992.50,54.08,1579.44,2117.23,0.00,106475.622098,162863.068987,8682847,2893394,0.004365,0.008411,86022742,57985101,0,0,78116,0,1,1 +1774175322.838032,11.71,4,3992.50,53.86,1586.20,2108.72,0.00,3517992529420.926270,3517992473011.600098,238,2,0.028182,40.068071,86024507,57989686,0,0,78119,0,1,1 +1774175327.833229,0.80,4,3992.50,53.87,1585.97,2108.96,0.00,3521820200338.010254,3521820200339.970703,70,0,0.002901,0.008074,86024595,57989843,0,0,78121,0,1,1 +1774175332.837821,0.75,4,3992.50,53.87,1585.72,2109.20,0.00,1.488965,0.028294,237,494,0.002981,0.008267,86024687,57990003,0,0,78124,0,1,1 +1774175337.837142,1.10,4,3992.50,54.18,1570.80,2121.18,0.00,0.468521,3518914607359.859375,238,2,0.003434,0.010169,86024792,57990189,0,0,78126,0,1,1 +1774175342.837435,0.70,4,3992.50,53.81,1584.93,2106.83,0.00,3518231241071.186035,0.028123,237,494,0.002746,0.007633,86024876,57990336,0,0,78129,0,1,1 +1774175347.834897,0.85,4,3992.50,53.82,1584.59,2107.17,0.00,106583.427844,163058.214825,8683621,2894260,0.003435,0.009529,86024981,57990518,0,0,78131,0,1,1 +1774175352.837882,0.80,4,3992.50,53.78,1586.19,2105.57,0.00,3516338123803.409668,5.975730,8682847,2893800,0.003419,0.009516,86025085,57990700,0,0,78134,0,1,1 +1774175357.837939,0.60,4,3992.50,53.82,1584.72,2107.04,0.00,4.109231,0.035546,8683621,2894299,0.003694,0.008324,86025173,57990851,0,0,78136,0,1,1 +1774175362.833223,0.75,4,3992.50,53.82,1584.73,2107.03,0.00,3521758813997.616699,3521758757492.189941,237,494,0.003487,0.009605,86025282,57991038,0,0,78139,0,1,1 +1774175367.833230,0.95,4,3992.50,53.82,1591.00,2107.21,0.00,3518432085340.858887,3518432085342.369141,21,0,0.003646,0.009693,86025402,57991232,0,0,78141,0,1,1 +1774175372.837147,0.80,4,3992.50,53.63,1594.61,2099.57,0.00,0.174863,0.000000,199,0,0.002775,0.007678,86025488,57991383,0,0,78144,0,1,1 +1774175377.834919,0.70,4,3992.50,53.64,1594.15,2100.02,0.00,3520005153642.702637,0.000000,70,0,0.003443,0.009536,86025594,57991566,0,0,78146,0,1,1 +1774175382.834912,0.70,4,3992.50,53.67,1592.89,2101.28,0.00,3518442522435.049805,0.000000,21,0,0.003308,0.009509,86025698,57991747,0,0,78149,0,1,1 +1774175387.836434,1.20,4,3992.50,53.48,1600.12,2094.05,0.00,0.000000,0.000000,21,0,0.004266,0.008349,86025807,57991911,0,0,78151,0,1,1 +1774175392.835932,44.01,4,3992.50,60.27,1340.32,2359.61,0.00,0.000000,0.000000,21,0,97.953494,0.050093,86036189,57995199,0,0,78154,0,1,1 +1774175397.833207,29.82,4,3992.50,60.35,1337.20,2362.65,0.00,0.000000,0.000000,21,0,119.693367,0.023885,86048411,57996942,0,0,78156,0,1,1 +1774175402.836416,29.41,4,3992.50,60.17,1342.65,2355.62,0.00,0.000000,0.000000,21,0,120.622943,0.027876,86060265,57998898,0,0,78159,0,1,1 +1774175407.836314,29.96,4,3992.50,59.92,1352.39,2345.90,0.00,106533.038427,162985.293184,8683631,2894689,118.562978,0.024528,86072008,58000497,0,0,78161,0,1,1 +1774175412.837376,31.06,4,3992.50,59.92,1352.34,2346.00,0.00,3517690065990.851562,3517690009551.731934,21,0,119.741026,0.025439,86083904,58002191,0,0,78164,0,1,1 +1774175417.837378,30.86,4,3992.50,60.16,1342.99,2355.32,0.00,0.048047,0.000000,70,0,119.162974,0.026103,86095840,58004112,0,0,78166,0,1,1 +1774175422.835032,29.77,4,3992.50,60.02,1348.56,2349.78,0.00,0.000000,0.000000,70,0,119.221782,0.030698,86107855,58006353,0,0,78169,0,1,1 +1774175427.835208,30.76,4,3992.50,60.04,1354.47,2350.84,0.00,1.958720,0.000195,238,2,119.375142,0.061616,86120194,58010737,0,0,78171,0,1,1 +1774175432.838102,12.68,4,3992.50,54.47,1572.67,2132.62,0.00,3516402231745.659668,3516402231747.665527,21,0,91.087141,0.052726,86129765,58014460,0,0,78174,0,1,1 +1774175437.838420,1.80,4,3992.50,53.86,1596.48,2108.80,0.00,0.000000,0.000000,21,0,0.007338,0.008810,86129927,58014643,0,0,78176,0,1,1 +1774175442.833971,19.06,4,3992.50,53.93,1593.64,2111.66,0.00,1.539749,0.028346,237,494,24.180267,0.114947,86137980,58020634,0,0,78179,0,1,1 +1774175447.833227,10.91,4,3992.50,53.79,1599.49,2105.81,0.00,106541.182841,163007.161759,8682870,2895485,16.103430,0.071572,86143367,58024607,0,0,78181,0,1,1 +1774175452.836538,1.65,4,3992.50,53.38,1615.35,2089.94,0.00,3516108733746.392090,3516108677327.681152,21,0,0.010452,0.013273,86143602,58024876,0,0,78184,0,1,1 +1774175457.833247,1.75,4,3992.50,53.76,1597.99,2104.80,0.00,0.175115,0.000000,199,0,0.006103,0.010691,86143760,58025088,0,0,78186,0,1,1 +1774175462.837375,1.00,4,3992.50,53.50,1608.16,2094.64,0.00,0.000000,0.000000,199,0,0.004332,0.008393,86143874,58025253,0,0,78189,0,1,1 +1774175467.833280,0.95,4,3992.50,53.32,1615.34,2087.46,0.00,3521321035592.447266,0.000000,21,0,0.005022,0.010939,86144009,58025457,0,0,78191,0,1,1 +1774175472.836006,0.85,4,3992.50,53.27,1617.02,2085.79,0.00,106468.836931,162894.967471,8682870,2896005,0.005032,0.010295,86144145,58025658,0,0,78194,0,1,1 +1774175477.834930,0.75,4,3992.50,53.34,1614.58,2088.22,0.00,4.110161,0.082733,8683644,2896542,0.004337,0.008391,86144259,58025822,0,0,78196,0,1,1 +1774175482.837151,0.85,4,3992.50,53.22,1619.31,2083.49,0.00,3516875167355.011719,3516875110927.208496,21,0,0.005096,0.010389,86144400,58026029,0,0,78199,0,1,1 +1774175487.837732,1.30,4,3992.50,53.48,1607.36,2093.75,0.00,0.000000,0.000000,21,0,0.005047,0.010289,86144537,58026229,0,0,78201,0,1,1 +1774175492.836740,1.05,4,3992.50,53.45,1608.46,2092.66,0.00,1.538684,0.028326,237,494,0.003650,0.006500,86144630,58026358,0,0,78204,0,1,1 +1774175497.836919,0.80,4,3992.50,53.48,1607.25,2093.87,0.00,106521.523564,162978.133283,8682870,2896199,0.005135,0.010361,86144773,58026563,0,0,78206,0,1,1 +1774175502.837340,0.90,4,3992.50,53.49,1607.03,2094.09,0.00,3518140928366.071289,3518140871913.526855,199,0,0.004348,0.008430,86144888,58026730,0,0,78209,0,1,1 +1774175507.834887,0.80,4,3992.50,53.49,1607.05,2094.07,0.00,1.832735,0.000195,238,2,0.005025,0.010296,86145023,58026930,0,0,78211,0,1,1 +1774175512.833209,1.10,4,3992.50,53.43,1609.40,2091.71,0.00,0.000000,0.000000,238,2,0.005032,0.010299,86145159,58027131,0,0,78214,0,1,1 +1774175517.836971,1.25,4,3992.50,53.54,1607.25,2096.34,0.00,3515791360717.360352,0.028104,237,494,0.004157,0.008238,86145270,58027293,0,0,78216,0,1,1 +1774175522.837303,0.85,4,3992.50,53.58,1601.85,2097.70,0.00,3518203700072.961914,3518203700074.472168,21,0,0.004403,0.010063,86145393,58027487,0,0,78219,0,1,1 +1774175527.833380,25.44,4,3992.50,53.68,1593.38,2101.64,0.00,0.000000,0.000000,21,0,0.059901,102.437628,86149624,58038480,0,0,78221,0,1,1 +1774175532.833492,26.08,4,3992.50,53.38,1602.25,2089.86,0.00,1.538345,0.028320,237,494,0.047020,102.750044,86153071,58049246,0,0,78224,0,1,1 +1774175537.837395,3.15,4,3992.50,53.11,1612.91,2079.53,0.00,0.000000,0.000000,237,494,0.008142,0.013506,86153253,58049495,0,0,78226,0,1,1 +1774175542.835753,12.36,4,3992.50,58.72,1397.14,2298.96,0.00,3519593055207.783203,3519593055209.119141,199,0,6.467906,0.007225,86154242,58050023,0,0,78229,0,1,1 +1774175547.834522,1.05,4,3992.50,59.08,1382.12,2313.15,0.00,3519303507261.067383,0.000000,70,0,0.000597,0.000020,86154254,58050025,0,0,78231,0,1,1 +1774175552.837522,0.70,4,3992.50,59.27,1374.64,2320.62,0.00,0.126877,0.000000,199,0,0.000515,0.000030,86154270,58050028,0,0,78234,0,1,1 +1774175557.837387,0.65,4,3992.50,59.08,1382.11,2313.15,0.00,0.000000,0.000000,199,0,0.000042,0.000020,86154273,58050030,0,0,78236,0,1,1 +1774175562.837579,0.75,4,3992.50,59.09,1381.88,2313.38,0.00,106540.097030,163183.410569,8682986,2897965,0.000014,0.000030,86154274,58050033,0,0,78239,0,1,1 +1774175567.834885,0.75,4,3992.50,59.09,1381.66,2313.60,0.00,3520333391878.293457,3520333335202.405273,70,0,0.000517,0.000020,86154290,58050035,0,0,78241,0,1,1 +1774175572.834859,1.05,4,3992.50,59.10,1381.43,2313.83,0.00,1.958799,0.000195,238,2,0.005259,0.012277,86154435,58050272,0,0,78244,0,1,1 +1774175577.834898,1.35,4,3992.50,59.31,1367.30,2322.18,0.00,3518410378892.546387,0.028125,237,494,0.003657,0.010158,86154547,58050466,0,0,78246,0,1,1 +1774175582.837632,1.15,4,3992.50,58.99,1379.74,2309.76,0.00,3516514273381.596191,3516514273383.057617,70,0,0.004808,0.012964,86154704,58050728,0,0,78249,0,1,1 +1774175587.833232,1.21,4,3992.50,59.11,1375.18,2314.32,0.00,1.491645,0.028345,237,494,0.007091,0.011270,86154862,58050936,0,0,78251,0,1,1 +1774175592.837136,1.50,4,3992.50,54.36,1561.24,2128.27,0.00,106459.701031,163062.618321,8682986,2898223,33.577630,0.022920,86158311,58052074,0,0,78254,0,1,1 +1774175597.837451,1.35,4,3992.50,53.83,1582.10,2107.41,0.00,3518215149405.361816,3518215092761.328613,238,2,0.004070,0.010741,86158423,58052254,0,0,78256,0,1,1 +1774175602.833235,0.55,4,3992.50,53.57,1592.22,2097.29,0.00,3521406421448.851074,3521406421450.859863,21,0,0.000802,0.001932,86158452,58052293,0,0,78259,0,1,1 +1774175607.834902,1.05,4,3992.50,53.72,1593.26,2103.31,0.00,0.000000,0.000000,21,0,0.000028,0.000020,86158454,58052295,0,0,78261,0,1,1 +1774175612.834901,0.90,4,3992.50,53.58,1594.73,2097.76,0.00,0.000000,0.000000,21,0,0.000071,0.000030,86158459,58052298,0,0,78264,0,1,1 +1774175617.837230,0.90,4,3992.50,53.29,1606.07,2086.42,0.00,1.537663,0.028307,237,494,0.000146,0.000020,86158468,58052300,0,0,78266,0,1,1 +1774175622.838115,0.75,4,3992.50,53.32,1604.93,2087.55,0.00,0.468374,3517815012238.394531,238,2,0.000089,0.000030,86158474,58052303,0,0,78269,0,1,1 +1774175627.837663,0.65,4,3992.50,53.32,1604.94,2087.55,0.00,0.000000,0.000000,238,2,0.000047,0.000020,86158477,58052305,0,0,78271,0,1,1 +1774175632.834883,11.28,4,3992.50,53.17,1608.38,2081.61,0.00,3520395109008.703125,3520395109010.710938,21,0,0.026358,40.090221,86160215,58056799,0,0,78274,0,1,1 +1774175637.838073,1.80,4,3992.50,53.42,1598.82,2091.64,0.00,0.048016,0.000000,70,0,0.003059,0.008055,86160312,58056958,0,0,78276,0,1,1 +1774175642.838117,0.85,4,3992.50,53.49,1596.09,2094.34,0.00,1.490319,0.028320,237,494,0.003458,0.009565,86160419,58057143,0,0,78279,0,1,1 +1774175647.837528,0.95,4,3992.50,53.36,1601.37,2089.05,0.00,3518851740877.110840,3518851740878.573242,70,0,0.002759,0.007624,86160504,58057289,0,0,78281,0,1,1 +1774175652.833220,1.00,4,3992.50,53.53,1594.71,2095.72,0.00,0.000000,0.000000,70,0,0.003424,0.009542,86160608,58057472,0,0,78284,0,1,1 +1774175657.837286,1.00,4,3992.50,53.53,1594.46,2095.96,0.00,106461.848322,163091.661471,8683760,2899355,0.004339,0.010186,86160714,58057657,0,0,78286,0,1,1 +1774175662.837797,0.70,4,3992.50,53.53,1594.47,2095.96,0.00,3518077665970.063965,3518077609298.529297,237,494,0.000000,0.000674,86160714,58057664,0,0,78289,0,1,1 +1774175667.837656,1.00,4,3992.50,53.73,1590.02,2103.56,0.00,106549.931808,163235.202282,8683760,2899466,0.000000,0.000020,86160714,58057666,0,0,78291,0,1,1 +1774175672.837470,0.85,4,3992.50,53.54,1595.44,2096.14,0.00,3518567731272.896484,3518567674588.629883,21,0,0.000000,0.000030,86160714,58057669,0,0,78294,0,1,1 +1774175677.837524,0.60,4,3992.50,53.28,1605.62,2085.96,0.00,106547.322525,163228.888099,8683760,2899477,0.000143,0.000020,86160723,58057671,0,0,78296,0,1,1 +1774175682.837716,0.75,4,3992.50,53.12,1611.95,2079.63,0.00,3518302034016.035156,3518301977335.988281,70,0,0.000446,0.000030,86160749,58057674,0,0,78299,0,1,1 +1774175687.837204,1.50,4,3992.50,53.14,1610.97,2080.61,0.00,3518797781499.341309,0.000000,21,0,0.000093,0.000020,86160754,58057676,0,0,78301,0,1,1 +1774175692.838126,0.90,4,3992.50,53.03,1615.15,2076.43,0.00,0.000000,0.000000,21,0,0.002853,0.007639,86160845,58057826,0,0,78304,0,1,1 +1774175697.833235,1.66,4,3992.50,53.43,1598.31,2091.86,0.00,1.539885,0.028348,237,494,0.004165,0.008069,86160954,58057990,0,0,78306,0,1,1 +1774175702.833180,40.52,4,3992.50,59.77,1355.98,2339.97,0.00,0.000000,0.000000,237,494,103.952782,0.056028,86171884,58061559,0,0,78309,0,1,1 +1774175707.837166,29.18,4,3992.50,59.75,1356.75,2339.22,0.00,0.000000,0.000000,237,494,122.074639,0.047086,86184434,58064952,0,0,78311,0,1,1 +1774175712.837780,28.56,4,3992.50,59.96,1348.45,2347.50,0.00,3518005182366.044434,3518005182367.554688,21,0,121.753897,0.041843,86196912,58067904,0,0,78314,0,1,1 +1774175717.833200,28.77,4,3992.50,59.86,1352.29,2343.63,0.00,0.048091,0.000000,70,0,120.476698,0.038506,86209265,58070684,0,0,78316,0,1,1 +1774175722.835732,4.54,4,3992.50,60.70,1319.35,2376.64,0.00,1.957798,0.000195,238,2,12.913348,0.004132,86210613,58071013,0,0,78319,0,1,1 +1774175727.835209,1.11,4,3992.50,61.07,1303.14,2390.86,0.00,3518804890915.703125,3518804890917.535156,199,0,0.000372,0.000181,86210629,58071016,0,0,78321,0,1,1 +1774175732.838094,0.61,4,3992.50,61.07,1302.94,2391.07,0.00,0.000000,0.000000,199,0,0.000982,0.000512,86210645,58071022,0,0,78324,0,1,1 +1774175737.836708,0.66,4,3992.50,61.08,1302.70,2391.31,0.00,3519412606344.213379,0.000000,70,0,0.000168,0.000020,86210646,58071024,0,0,78326,0,1,1 +1774175742.834787,0.51,4,3992.50,60.88,1310.23,2383.78,0.00,106585.276330,163293.907030,8682987,2899417,0.000168,0.000030,86210647,58071027,0,0,78329,0,1,1 +1774175747.835861,0.51,4,3992.50,60.90,1309.79,2384.22,0.00,4.108395,0.030853,8683761,2899916,0.000583,0.000020,86210666,58071029,0,0,78331,0,1,1 +1774175752.834072,0.86,4,3992.50,60.87,1310.93,2383.08,0.00,3519696590562.686035,3519696533859.680176,21,0,0.003889,0.008282,86210775,58071193,0,0,78334,0,1,1 +1774175757.838066,1.21,4,3992.50,60.96,1312.88,2386.74,0.00,1.537151,0.028298,237,494,0.004544,0.009980,86210906,58071392,0,0,78336,0,1,1 +1774175762.837505,1.06,4,3992.50,60.96,1312.68,2386.74,0.00,106558.902677,163249.547477,8683761,2899953,0.006915,0.011509,86211071,58071618,0,0,78339,0,1,1 +1774175767.837233,1.06,4,3992.50,60.97,1312.47,2386.95,0.00,3518629023843.821777,3518628967157.783203,199,0,0.006433,0.009826,86211219,58071807,0,0,78341,0,1,1 +1774175772.835972,13.90,4,3992.50,59.88,1354.81,2344.51,0.00,1.363723,0.028327,237,494,54.919861,0.059254,86218451,58075628,0,0,78344,0,1,1 +1774175777.833200,30.78,4,3992.50,60.01,1349.91,2349.42,0.00,3520389056206.295898,3520389056207.807129,21,0,128.048333,0.054258,86231497,58079505,0,0,78346,0,1,1 +1774175782.833931,5.05,4,3992.50,60.83,1317.72,2381.70,0.00,0.174974,0.000000,199,0,14.200881,0.004052,86232996,58079808,0,0,78349,0,1,1 +1774175787.837124,0.91,4,3992.50,61.20,1302.86,2395.95,0.00,1.362509,0.028302,237,494,0.000278,0.000020,86233006,58079810,0,0,78351,0,1,1 +1774175792.837071,0.66,4,3992.50,60.97,1311.80,2387.04,0.00,3518474555377.982422,3518474555379.492676,21,0,0.000278,0.000352,86233016,58079815,0,0,78354,0,1,1 +1774175797.833317,0.56,4,3992.50,61.02,1309.77,2389.07,0.00,1.539535,0.028342,237,494,0.000000,0.000342,86233016,58079819,0,0,78356,0,1,1 +1774175802.833553,0.71,4,3992.50,61.02,1309.77,2389.07,0.00,3518271134521.990723,3518271134523.500488,21,0,0.000000,0.000030,86233016,58079822,0,0,78359,0,1,1 +1774175807.833965,0.56,4,3992.50,61.00,1310.73,2388.11,0.00,106539.705337,163217.958894,8683761,2900077,0.000278,0.000020,86233026,58079824,0,0,78361,0,1,1 +1774175812.833206,1.06,4,3992.50,61.05,1308.70,2390.13,0.00,3518971377203.543945,3518971320510.504395,237,494,0.002742,0.007583,86233110,58079968,0,0,78364,0,1,1 +1774175817.833208,1.11,4,3992.50,61.06,1305.90,2390.57,0.00,106546.905938,163231.357683,8683761,2900099,0.002772,0.007698,86233196,58080119,0,0,78366,0,1,1 +1774175822.833209,0.86,4,3992.50,61.10,1302.56,2392.04,0.00,3518435997545.863770,3518435940862.872070,70,0,0.003540,0.009648,86233309,58080310,0,0,78369,0,1,1 +1774175827.833640,1.21,4,3992.50,61.10,1302.43,2392.17,0.00,3518134194095.895020,0.000000,21,0,0.005181,0.011176,86233438,58080512,0,0,78371,0,1,1 +1774175832.834168,12.94,4,3992.50,59.93,1347.98,2346.55,0.00,1.538216,0.028317,237,494,50.094959,0.056881,86240655,58084199,0,0,78374,0,1,1 +1774175837.837417,29.38,4,3992.50,59.99,1345.93,2348.59,0.00,3516152254919.738281,3516152254921.072754,199,0,119.490450,0.052829,86252921,58087824,0,0,78376,0,1,1 +1774175842.833209,4.65,4,3992.50,60.72,1317.39,2377.20,0.00,0.000000,0.000000,199,0,12.685441,0.005498,86254255,58088205,0,0,78379,0,1,1 +1774175847.834890,1.36,4,3992.50,61.00,1312.51,2388.32,0.00,3517254569316.990723,0.000000,21,0,0.000325,0.000020,86254268,58088207,0,0,78381,0,1,1 +1774175852.834094,0.61,4,3992.50,61.00,1312.53,2388.30,0.00,0.175028,0.000000,199,0,0.000983,0.000030,86254284,58088210,0,0,78384,0,1,1 +1774175857.837866,0.56,4,3992.50,61.00,1312.52,2388.30,0.00,106463.919411,163108.581321,8682991,2899781,0.000336,0.000020,86254286,58088212,0,0,78386,0,1,1 +1774175862.833461,0.61,4,3992.50,61.01,1312.28,2388.55,0.00,3521539604790.069336,3521539548052.826172,70,0,0.000000,0.000674,86254286,58088219,0,0,78389,0,1,1 +1774175867.833260,1.11,4,3992.50,61.01,1312.28,2388.55,0.00,1.490392,0.028321,237,494,0.000465,0.000020,86254298,58088221,0,0,78391,0,1,1 +1774175872.834158,0.81,4,3992.50,61.04,1311.08,2389.74,0.00,3517805010775.690918,3517805010777.025879,199,0,0.004067,0.008757,86254392,58088380,0,0,78394,0,1,1 +1774175877.834489,1.11,4,3992.50,61.24,1303.42,2397.65,0.00,3518203982215.558594,0.000000,21,0,0.003466,0.009555,86254500,58088564,0,0,78396,0,1,1 +1774175882.835966,1.26,4,3992.50,61.24,1303.20,2397.88,0.00,0.048033,0.000000,70,0,0.007071,0.011606,86254672,58088797,0,0,78399,0,1,1 +1774175887.833844,1.92,4,3992.50,61.27,1302.22,2398.85,0.00,1.959621,0.000195,238,2,0.007016,0.010066,86254830,58088994,0,0,78401,0,1,1 +1774175892.835554,15.16,4,3992.50,60.39,1336.77,2364.24,0.00,3517234155117.711914,3517234155119.718262,21,0,58.690247,0.065930,86262800,58093300,0,0,78404,0,1,1 +1774175897.837903,16.44,4,3992.50,55.16,1541.34,2159.74,0.00,0.174918,0.000000,199,0,112.502255,0.057124,86274176,58097409,0,0,78406,0,1,1 +1774175902.837572,0.55,4,3992.50,54.37,1572.23,2128.85,0.00,1.831957,0.000195,238,2,0.000854,0.000030,86274182,58097412,0,0,78409,0,1,1 +1774175907.837650,0.90,4,3992.50,54.24,1577.00,2123.68,0.00,0.000000,0.000000,238,2,0.000168,0.000020,86274183,58097414,0,0,78411,0,1,1 +1774175912.836481,0.60,4,3992.50,54.17,1579.28,2121.05,0.00,3519260185061.600098,0.028132,237,494,0.000000,0.000030,86274183,58097417,0,0,78414,0,1,1 +1774175917.836904,0.60,4,3992.50,54.15,1580.07,2120.26,0.00,3518139502509.751465,3518139502511.213379,70,0,0.000286,0.000020,86274191,58097419,0,0,78416,0,1,1 +1774175922.837062,0.50,4,3992.50,54.12,1581.22,2119.11,0.00,0.000000,0.000000,70,0,0.000019,0.000030,86274192,58097422,0,0,78419,0,1,1 +1774175927.836529,0.85,4,3992.50,54.33,1573.29,2127.04,0.00,3518812584549.471191,0.000000,21,0,0.000187,0.000664,86274194,58097428,0,0,78421,0,1,1 +1774175932.837400,1.05,4,3992.50,54.31,1574.15,2126.17,0.00,1.538111,0.028315,237,494,0.006302,0.010682,86274354,58097643,0,0,78424,0,1,1 +1774175937.837581,24.99,4,3992.50,56.29,1502.15,2204.07,0.00,3518309675785.209961,3518309675786.720215,21,0,26.887528,0.129567,86283271,58104369,0,0,78426,0,1,1 +1774175942.834904,9.54,4,3992.50,54.03,1590.59,2115.48,0.00,0.000000,0.000000,21,0,13.381843,0.068402,86287790,58107898,0,0,78429,0,1,1 +1774175947.834906,0.65,4,3992.50,54.04,1590.36,2115.70,0.00,1.538378,0.028320,237,494,0.003637,0.006489,86287882,58108026,0,0,78431,0,1,1 +1774175952.833220,0.60,4,3992.50,54.04,1590.38,2115.68,0.00,3519624173977.390137,3519624173978.853027,70,0,0.004337,0.008402,86287996,58108191,0,0,78434,0,1,1 +1774175957.837485,0.75,4,3992.50,54.06,1589.41,2116.64,0.00,106457.801159,163094.169243,8683780,2901950,0.004332,0.008383,86288110,58108355,0,0,78436,0,1,1 +1774175962.837879,0.55,4,3992.50,54.08,1588.73,2117.34,0.00,3518159793945.269043,3518159737263.098633,238,2,0.001762,0.002600,86288143,58108397,0,0,78439,0,1,1 +1774175967.837508,0.40,4,3992.50,54.08,1588.73,2117.34,0.00,106550.444101,163245.539229,8683006,2901512,0.000093,0.000020,86288149,58108399,0,0,78441,0,1,1 +1774175972.837854,0.80,4,3992.50,54.27,1575.55,2124.89,0.00,3518193828382.769531,3518193771697.756348,70,0,0.000072,0.000030,86288154,58108402,0,0,78444,0,1,1 +1774175977.836015,0.45,4,3992.50,54.28,1575.30,2125.13,0.00,106587.817799,163293.613348,8683780,2902085,0.000137,0.000020,86288163,58108404,0,0,78446,0,1,1 +1774175982.837240,0.50,4,3992.50,54.28,1575.07,2125.37,0.00,3517575474332.647949,3517575417661.640625,21,0,0.000061,0.000030,86288167,58108407,0,0,78449,0,1,1 +1774175987.837616,0.40,4,3992.50,54.28,1575.08,2125.36,0.00,0.048043,0.000000,70,0,0.000255,0.000020,86288183,58108409,0,0,78451,0,1,1 +1774175992.837740,0.75,4,3992.50,54.29,1574.95,2125.48,0.00,0.126950,0.000000,199,0,0.004844,0.009216,86288308,58108590,0,0,78454,0,1,1 +1774175997.834023,1.05,4,3992.50,54.33,1573.54,2127.17,0.00,3521054960432.369629,0.000000,70,0,0.005068,0.010325,86288446,58108792,0,0,78456,0,1,1 +1774176002.836864,0.65,4,3992.50,54.25,1576.32,2124.13,0.00,1.957676,0.000195,238,2,0.005032,0.010282,86288582,58108992,0,0,78459,0,1,1 +1774176007.837893,0.70,4,3992.50,54.06,1583.75,2116.71,0.00,0.000000,0.000000,238,2,0.004335,0.008388,86288696,58109156,0,0,78461,0,1,1 +1774176012.837399,0.75,4,3992.50,54.06,1583.77,2116.69,0.00,106553.072774,163249.910160,8683015,2901876,0.005023,0.010301,86288831,58109357,0,0,78464,0,1,1 +1774176017.833233,0.70,4,3992.50,54.06,1583.78,2116.67,0.00,0.000000,0.020720,8683015,2901898,0.005014,0.010299,86288965,58109557,0,0,78466,0,1,1 +1774176022.837311,0.40,4,3992.50,54.06,1583.79,2116.67,0.00,3515569859810.268066,3515569803167.034668,199,0,0.000188,0.000030,86288977,58109560,0,0,78469,0,1,1 +1774176027.834166,0.90,4,3992.50,53.75,1587.79,2104.57,0.00,3520652154660.743652,0.000000,70,0,0.000047,0.000020,86288980,58109562,0,0,78471,0,1,1 +1774176032.838055,0.50,4,3992.50,53.66,1591.60,2100.77,0.00,3515702029970.276367,0.000000,21,0,0.000089,0.000030,86288986,58109565,0,0,78474,0,1,1 +1774176037.837859,0.45,4,3992.50,53.66,1591.40,2100.97,0.00,1.538439,0.028321,237,494,0.000028,0.000020,86288988,58109567,0,0,78476,0,1,1 +1774176042.834881,0.50,4,3992.50,53.70,1589.93,2102.44,0.00,3520534103067.344238,3520534103068.680176,199,0,0.000028,0.000030,86288990,58109570,0,0,78479,0,1,1 +1774176047.837205,0.40,4,3992.50,53.70,1589.93,2102.44,0.00,0.000000,0.000000,199,0,0.000075,0.000020,86288995,58109572,0,0,78481,0,1,1 +1774176052.837718,0.80,4,3992.50,53.70,1589.73,2102.64,0.00,106537.574994,163217.290628,8683789,2902572,0.005210,0.009347,86289134,58109757,0,0,78484,0,1,1 +1774176057.837983,1.05,4,3992.50,53.83,1584.17,2107.74,0.00,3518251032181.919922,0.041306,8683015,2902130,0.007330,0.012531,86289307,58109980,0,0,78486,0,1,1 +1774176062.837560,0.70,4,3992.50,53.80,1585.48,2106.41,0.00,3518734471294.090820,3518734414598.287109,237,494,0.004392,0.008470,86289425,58110150,0,0,78489,0,1,1 +1774176067.834899,0.70,4,3992.50,53.80,1585.50,2106.39,0.00,106599.750583,163320.981371,8683015,2902169,0.005025,0.010296,86289560,58110350,0,0,78491,0,1,1 +1774176072.837401,0.75,4,3992.50,53.80,1585.52,2106.37,0.00,0.000000,0.010542,8683015,2902179,0.005051,0.010298,86289697,58110551,0,0,78494,0,1,1 +1774176077.834906,0.50,4,3992.50,53.81,1585.30,2106.59,0.00,3520193237331.833496,3520193180613.990723,21,0,0.004338,0.008419,86289811,58110717,0,0,78496,0,1,1 +1774176082.837166,0.40,4,3992.50,53.66,1591.04,2100.86,0.00,0.048025,0.000000,70,0,0.000860,0.001930,86289843,58110756,0,0,78499,0,1,1 +1774176087.833925,0.70,4,3992.50,53.94,1585.88,2111.89,0.00,0.000000,0.000000,70,0,0.000061,0.000020,86289847,58110758,0,0,78501,0,1,1 +1774176092.833469,0.60,4,3992.50,53.76,1586.99,2104.94,0.00,106558.344538,163249.150278,8683789,2902780,0.000075,0.000030,86289852,58110761,0,0,78504,0,1,1 +1774176097.837438,0.45,4,3992.50,53.76,1586.99,2104.94,0.00,3515645929077.700684,3515645872437.083008,21,0,0.000042,0.000020,86289855,58110763,0,0,78506,0,1,1 +1774176102.834903,0.50,4,3992.50,53.76,1586.99,2104.93,0.00,106602.739814,163317.126105,8683789,2902818,0.000014,0.000030,86289856,58110766,0,0,78509,0,1,1 +1774176107.836056,0.40,4,3992.50,53.77,1586.75,2105.18,0.00,3517625546021.667480,3517625489347.611328,237,494,0.000089,0.000020,86289862,58110768,0,0,78511,0,1,1 +1774176112.838102,0.95,4,3992.50,53.63,1592.31,2099.61,0.00,3516998070856.232910,3516998070857.567383,199,0,0.004554,0.009021,86289983,58110945,0,0,78514,0,1,1 +1774176117.838056,5.32,4,3992.50,54.27,1567.10,2124.81,0.00,106549.489288,163235.964908,8683789,2902952,0.019855,17.840203,86291152,58113271,0,0,78516,0,1,1 +1774176122.833416,30.27,4,3992.50,53.85,1577.47,2108.16,0.00,3521704966328.763184,3521704909590.166992,199,0,0.036006,118.289820,86293768,58125831,0,0,78519,0,1,1 +1774176127.837848,17.90,4,3992.50,53.68,1582.91,2101.75,0.00,106454.134399,163264.905093,8683793,2904059,0.046523,69.052818,86297295,58133307,0,0,78521,0,1,1 +1774176132.837230,1.80,4,3992.50,53.41,1593.96,2091.08,0.00,3518872163726.686035,3518872106856.690918,238,2,0.006049,0.010593,86297433,58133514,0,0,78524,0,1,1 +1774176137.836396,16.19,4,3992.50,53.48,1594.43,2093.98,0.00,3519023883653.299316,0.028130,237,494,40.073773,0.027642,86302010,58135103,0,0,78526,0,1,1 +1774176142.837867,0.50,4,3992.50,53.50,1593.71,2094.70,0.00,3517402545225.704590,3517402545227.039062,199,0,0.000000,0.000030,86302010,58135106,0,0,78529,0,1,1 +1774176147.834894,0.80,4,3992.50,53.75,1585.84,2104.50,0.00,1.832926,0.000195,238,2,0.000000,0.000020,86302010,58135108,0,0,78531,0,1,1 +1774176152.834893,0.55,4,3992.50,53.75,1583.85,2104.50,0.00,3518438092009.153809,3518438092011.161133,21,0,0.000000,0.000030,86302010,58135111,0,0,78534,0,1,1 +1774176157.834912,0.50,4,3992.50,53.75,1583.86,2104.50,0.00,1.538373,0.028320,237,494,0.000000,0.000020,86302010,58135113,0,0,78536,0,1,1 +1774176162.837815,0.50,4,3992.50,53.75,1583.86,2104.50,0.00,3516395726662.195312,3516395726663.704590,21,0,0.000000,0.000030,86302010,58135116,0,0,78539,0,1,1 +1774176167.837826,0.70,4,3992.50,53.70,1585.98,2102.37,0.00,2.006832,0.000195,238,2,0.000000,0.000020,86302010,58135118,0,0,78541,0,1,1 +1774176172.837830,11.05,4,3992.50,53.96,1574.13,2112.59,0.00,3518433977551.428223,3518433977553.435059,21,0,0.026731,40.071085,86303677,58139638,0,0,78544,0,1,1 +1774176177.836414,1.46,4,3992.50,54.30,1560.35,2126.12,0.00,2.007404,0.000195,238,2,0.004035,0.010662,86303797,58139841,0,0,78546,0,1,1 +1774176182.837236,0.70,4,3992.50,54.10,1568.38,2118.09,0.00,0.000000,0.000000,238,2,0.002885,0.007818,86303892,58140000,0,0,78549,0,1,1 +1774176187.837907,0.70,4,3992.50,53.89,1576.37,2110.10,0.00,3517965206303.883789,3517965206305.841797,70,0,0.003420,0.010167,86303996,58140186,0,0,78551,0,1,1 +1774176192.837981,0.80,4,3992.50,53.88,1577.01,2109.47,0.00,3518385107932.796387,0.000000,21,0,0.003446,0.009534,86304102,58140369,0,0,78554,0,1,1 +1774176197.837888,0.60,4,3992.50,53.88,1577.01,2109.46,0.00,1.538408,0.028321,237,494,0.002760,0.007623,86304187,58140515,0,0,78556,0,1,1 +1774176202.833584,0.75,4,3992.50,54.22,1563.79,2122.68,0.00,3521468176686.072754,3521468176687.583984,21,0,0.000687,0.001932,86304208,58140554,0,0,78559,0,1,1 +1774176207.838108,0.80,4,3992.50,54.46,1554.34,2132.28,0.00,106469.812995,163332.470882,8683911,2905024,0.000000,0.000020,86304208,58140556,0,0,78561,0,1,1 +1774176212.837529,0.50,4,3992.50,54.14,1566.69,2119.79,0.00,0.000000,0.007813,8683911,2905029,0.000000,0.000030,86304208,58140559,0,0,78564,0,1,1 +1774176217.837289,0.65,4,3992.50,54.15,1566.45,2120.02,0.00,0.000000,0.022657,8683911,2905057,0.000143,0.000020,86304217,58140561,0,0,78566,0,1,1 +1774176222.834913,0.60,4,3992.50,54.15,1566.36,2120.12,0.00,3520109807810.144043,3520109750866.937988,238,2,0.000446,0.000030,86304243,58140564,0,0,78569,0,1,1 +1774176227.837933,0.50,4,3992.50,54.15,1566.36,2120.12,0.00,3516313004898.371582,3516313004900.202637,199,0,0.000092,0.000020,86304248,58140566,0,0,78571,0,1,1 +1774176232.837883,1.45,4,3992.50,54.19,1564.98,2121.50,0.00,3518472277496.215332,0.000000,21,0,0.003193,0.008700,86304348,58140736,0,0,78574,0,1,1 +1774176237.838464,33.94,4,3992.50,60.60,1319.73,2372.68,0.00,0.000000,0.000000,21,0,58.684916,0.043487,86310769,58143373,0,0,78576,0,1,1 +1774176242.836055,30.61,4,3992.50,60.27,1331.85,2359.79,0.00,106613.394100,163559.211856,8683137,2904686,118.221399,0.027169,86322903,58145215,0,0,78579,0,1,1 +1774176247.838108,29.36,4,3992.50,60.21,1334.13,2357.48,0.00,3516993488334.587891,3516993431439.551758,21,0,120.119701,0.025640,86335304,58146961,0,0,78581,0,1,1 +1774176252.837703,28.79,4,3992.50,60.31,1330.27,2361.32,0.00,106574.780542,163493.750642,8683911,2905210,118.774572,0.027019,86347456,58148709,0,0,78584,0,1,1 +1774176257.834892,28.66,4,3992.50,60.06,1340.35,2351.32,0.00,0.000000,0.006840,8683911,2905221,119.631108,0.024283,86359628,58150414,0,0,78586,0,1,1 +1774176262.835645,4.55,4,3992.50,61.20,1295.41,2396.30,0.00,3517907412407.130371,3517907355499.323242,238,2,12.267868,0.001883,86360921,58150562,0,0,78589,0,1,1 +1774176267.833690,1.01,4,3992.50,61.29,1293.34,2399.57,0.00,3519813308052.531250,3519813308054.490234,70,0,0.000279,0.000020,86360931,58150564,0,0,78591,0,1,1 +1774176272.833246,0.56,4,3992.50,61.28,1293.80,2399.11,0.00,1.490465,0.028323,237,494,0.000278,0.000030,86360941,58150567,0,0,78594,0,1,1 +1774176277.833304,0.66,4,3992.50,61.28,1293.71,2399.20,0.00,3518396033092.886230,3518396033094.396484,21,0,0.000118,0.000020,86360948,58150569,0,0,78596,0,1,1 +1774176282.834144,0.51,4,3992.50,61.28,1293.58,2399.33,0.00,0.174971,0.000000,199,0,0.000136,0.000030,86360956,58150572,0,0,78599,0,1,1 +1774176287.838033,0.71,4,3992.50,61.09,1300.98,2391.94,0.00,1.830412,0.000195,238,2,0.000315,0.000020,86360968,58150574,0,0,78601,0,1,1 +1774176292.836588,0.86,4,3992.50,61.43,1287.72,2405.19,0.00,3519454850100.565430,3519454850102.524414,70,0,0.002997,0.006383,86361034,58150687,0,0,78604,0,1,1 +1774176297.837405,1.11,4,3992.50,61.70,1278.06,2415.65,0.00,0.126932,0.000000,199,0,0.003323,0.008982,86361141,58150864,0,0,78606,0,1,1 +1774176302.835342,1.26,4,3992.50,61.58,1282.07,2410.82,0.00,3519889701223.926270,0.000000,21,0,0.003287,0.008992,86361245,58151041,0,0,78609,0,1,1 +1774176307.833277,1.11,4,3992.50,61.58,1282.09,2410.80,0.00,0.000000,0.000000,21,0,0.006053,0.011657,86361389,58151253,0,0,78611,0,1,1 +1774176312.833910,7.23,4,3992.50,60.41,1327.62,2365.17,0.00,0.000000,0.000000,21,0,27.842633,0.019120,86364494,58152146,0,0,78614,0,1,1 +1774176317.833207,32.73,4,3992.50,60.26,1333.56,2359.25,0.00,2.007118,0.000195,238,2,131.409831,0.052922,86377968,58155728,0,0,78616,0,1,1 +1774176322.837533,5.70,4,3992.50,61.58,1281.88,2411.02,0.00,3515396079105.643066,3515396079107.600098,70,0,14.880049,0.007970,86379571,58156196,0,0,78619,0,1,1 +1774176327.835207,1.06,4,3992.50,61.80,1281.62,2419.57,0.00,1.491026,0.028333,237,494,0.000474,0.000020,86379582,58156198,0,0,78621,0,1,1 +1774176332.833974,0.96,4,3992.50,61.66,1283.76,2414.13,0.00,3519304454889.727539,3519304454891.189941,70,0,0.000306,0.000030,86379592,58156201,0,0,78624,0,1,1 +1774176337.833390,0.81,4,3992.50,61.67,1283.27,2414.62,0.00,106574.474175,163500.095337,8683140,2905116,0.000168,0.000020,86379593,58156203,0,0,78626,0,1,1 +1774176342.833289,0.86,4,3992.50,61.67,1283.28,2414.62,0.00,3518507668807.285645,3518507611887.175781,70,0,0.000000,0.000030,86379593,58156206,0,0,78629,0,1,1 +1774176347.835707,0.81,4,3992.50,61.67,1283.28,2414.62,0.00,3516737006506.638672,0.000000,21,0,0.000474,0.000020,86379604,58156208,0,0,78631,0,1,1 +1774176352.834926,1.21,4,3992.50,61.63,1284.82,2413.07,0.00,106582.817299,163506.558819,8683914,2905628,0.002285,0.006326,86379674,58156329,0,0,78634,0,1,1 +1774176357.835781,1.57,4,3992.50,61.76,1277.19,2417.92,0.00,3517835997016.179688,3517835940110.875000,199,0,0.005601,0.009552,86379806,58156503,0,0,78636,0,1,1 +1774176362.837654,1.21,4,3992.50,61.51,1286.58,2408.24,0.00,106526.085425,163419.835855,8683915,2905651,0.003558,0.009686,86379921,58156696,0,0,78639,0,1,1 +1774176367.833202,1.26,4,3992.50,61.51,1286.64,2408.18,0.00,3521572878434.899414,3521572821469.231934,70,0,0.008387,0.013424,86380097,58156929,0,0,78641,0,1,1 +1774176372.836729,8.58,4,3992.50,61.20,1298.52,2396.23,0.00,3515956683160.207520,0.000000,21,0,27.430728,0.023179,86383223,58158122,0,0,78644,0,1,1 +1774176377.835469,31.58,4,3992.50,60.18,1338.77,2356.05,0.00,1.538767,0.028327,237,494,126.032786,0.085673,86396960,58164243,0,0,78646,0,1,1 +1774176382.833219,6.52,4,3992.50,61.22,1297.87,2396.96,0.00,3520021595241.831055,3520021595243.341797,21,0,16.094496,0.008328,86398745,58164851,0,0,78649,0,1,1 +1774176387.833721,1.26,4,3992.50,61.84,1273.66,2421.29,0.00,0.000000,0.000000,21,0,0.001061,0.000664,86398755,58164857,0,0,78651,0,1,1 +1774176392.835495,0.86,4,3992.50,61.62,1282.33,2412.57,0.00,106528.383016,163423.254720,8683915,2905795,0.001061,0.000030,86398765,58164860,0,0,78654,0,1,1 +1774176397.833876,0.91,4,3992.50,61.58,1284.09,2410.82,0.00,3519577001094.935547,3519576944161.265137,199,0,0.000000,0.000020,86398765,58164862,0,0,78656,0,1,1 +1774176402.833140,0.81,4,3992.50,61.40,1290.98,2403.92,0.00,3518955109693.711914,0.000000,21,0,0.000000,0.000030,86398765,58164865,0,0,78659,0,1,1 +1774176407.836538,0.61,4,3992.50,61.41,1290.52,2404.39,0.00,1.537334,0.028301,237,494,0.001061,0.000020,86398775,58164867,0,0,78661,0,1,1 +1774176412.837717,1.97,4,3992.50,61.43,1289.82,2405.08,0.00,3517607749235.830078,3517607749237.165039,199,0,0.002983,0.008236,86398867,58165024,0,0,78664,0,1,1 +1774176417.833431,1.27,4,3992.50,61.64,1281.40,2413.50,0.00,3521455676733.881348,0.000000,21,0,0.003028,0.008320,86398962,58165186,0,0,78666,0,1,1 +1774176422.835003,1.21,4,3992.50,61.62,1282.30,2412.57,0.00,106528.570651,163429.868569,8683141,2905342,0.006160,0.011250,86399121,58165411,0,0,78669,0,1,1 +1774176427.837382,1.42,4,3992.50,61.59,1283.39,2411.47,0.00,3516764380775.717285,3516764323882.078613,237,494,0.007130,0.010096,86399283,58165611,0,0,78671,0,1,1 +1774176432.837754,10.06,4,3992.50,61.03,1305.26,2389.51,0.00,3518174940901.660645,3518174940903.122559,70,0,37.654007,0.021562,86403283,58166596,0,0,78674,0,1,1 +1774176437.837996,13.21,4,3992.50,55.72,1513.47,2181.40,0.00,0.126947,0.000000,199,0,100.547254,0.033347,86413982,58168753,0,0,78676,0,1,1 +1774176442.833854,1.20,4,3992.50,54.62,1556.18,2138.69,0.00,0.000000,0.000000,199,0,0.005976,0.009290,86414133,58168947,0,0,78679,0,1,1 +1774176447.837549,9.28,4,3992.50,55.04,1540.00,2154.84,0.00,0.000000,0.000000,199,0,2.113344,0.025864,86415255,58169791,0,0,78681,0,1,1 +1774176452.837980,18.30,4,3992.50,55.19,1533.87,2160.90,0.00,0.000000,0.000000,199,0,32.095638,0.133087,86425421,58177394,0,0,78684,0,1,1 +1774176457.834907,6.93,4,3992.50,55.25,1531.54,2163.20,0.00,1.364217,0.028338,237,494,6.053487,0.035865,86427630,58179028,0,0,78686,0,1,1 +1774176462.837445,12.46,4,3992.50,54.70,1552.27,2141.66,0.00,3516652092276.602051,3516652092278.063477,70,0,0.028361,48.457167,86429430,58184466,0,0,78689,0,1,1 +1774176467.836851,31.00,4,3992.50,54.57,1551.32,2136.55,0.00,106574.852013,163639.993419,8683157,2907653,0.029832,119.592990,86431507,58197163,0,0,78691,0,1,1 +1774176472.836606,10.25,4,3992.50,54.19,1566.64,2121.62,0.00,4.116511,40.869194,8683936,2908354,0.014119,37.058758,86432450,58201109,0,0,78694,0,1,1 +1774176477.833809,14.48,4,3992.50,55.34,1524.65,2166.87,0.00,13.373202,0.304076,8683281,2908010,40.091586,0.032301,86436977,58202856,0,0,78696,0,1,1 +1774176482.834413,1.75,4,3992.50,54.94,1542.21,2150.99,0.00,3518012314981.296387,3518012257906.188477,21,0,0.006453,0.012443,86437141,58203082,0,0,78699,0,1,1 +1774176487.835076,0.80,4,3992.50,54.54,1557.90,2135.30,0.00,0.174977,0.000000,199,0,0.004436,0.008500,86437263,58203253,0,0,78701,0,1,1 +1774176492.835557,0.90,4,3992.50,54.50,1559.52,2133.69,0.00,106573.401934,163646.328921,8684055,2908843,0.005022,0.010299,86437398,58203454,0,0,78704,0,1,1 +1774176497.837487,1.05,4,3992.50,54.30,1567.16,2126.05,0.00,3517079319761.672363,3517079262703.454102,238,2,0.004410,0.009924,86437522,58203647,0,0,78706,0,1,1 +1774176502.837867,0.75,4,3992.50,54.32,1566.49,2126.71,0.00,3518170116442.341797,3518170116444.299805,70,0,0.004172,0.008386,86437634,58203811,0,0,78709,0,1,1 +1774176507.834896,1.05,4,3992.50,54.32,1566.52,2126.69,0.00,0.127029,0.000000,199,0,0.004376,0.008426,86437751,58203977,0,0,78711,0,1,1 +1774176512.837243,1.25,4,3992.50,54.26,1572.01,2124.36,0.00,106533.648677,163611.674925,8684055,2909104,0.005020,0.010283,86437886,58204177,0,0,78714,0,1,1 +1774176517.837388,1.60,4,3992.50,54.27,1571.40,2124.97,0.00,0.000000,0.033105,8684055,2909145,0.004348,0.009046,86438001,58204346,0,0,78716,0,1,1 +1774176522.838064,0.90,4,3992.50,54.30,1570.45,2125.92,0.00,3517961371901.190918,3517961314804.064453,199,0,0.005115,0.010362,86438142,58204552,0,0,78719,0,1,1 +1774176527.834899,0.95,4,3992.50,54.30,1570.47,2125.90,0.00,0.000000,0.000000,199,0,0.004917,0.009686,86438279,58204742,0,0,78721,0,1,1 +1774176532.834883,0.80,4,3992.50,54.07,1579.50,2116.88,0.00,3518448384178.783203,0.000000,21,0,0.004979,0.010123,86438414,58204943,0,0,78724,0,1,1 +1774176537.834909,1.30,4,3992.50,54.31,1567.55,2126.21,0.00,0.048047,0.000000,70,0,0.005048,0.010290,86438551,58205143,0,0,78726,0,1,1 +1774176542.837191,1.00,4,3992.50,54.11,1574.87,2118.62,0.00,3516831577622.032715,0.000000,21,0,0.004575,0.009016,86438673,58205319,0,0,78729,0,1,1 +1774176547.834841,1.00,4,3992.50,54.12,1574.66,2118.83,0.00,1.539103,0.028334,237,494,0.004796,0.009674,86438801,58205508,0,0,78731,0,1,1 +1774176552.837666,0.90,4,3992.50,54.05,1577.43,2116.06,0.00,0.000000,0.000000,237,494,0.005020,0.010295,86438936,58205709,0,0,78734,0,1,1 +1774176557.836326,11.85,4,3992.50,53.96,1578.40,2112.73,0.00,3519379845914.650391,3519379845915.985840,199,0,0.025916,40.085587,86440532,58210440,0,0,78736,0,1,1 +1774176562.837677,0.90,4,3992.50,53.82,1584.04,2107.10,0.00,1.363011,0.028313,237,494,0.002998,0.008275,86440623,58210601,0,0,78739,0,1,1 +1774176567.833891,0.95,4,3992.50,53.85,1582.98,2108.54,0.00,0.468812,3521103215704.045410,238,2,0.002749,0.007629,86440707,58210747,0,0,78741,0,1,1 +1774176572.837407,1.30,4,3992.50,54.13,1580.28,2119.38,0.00,106502.820453,163607.399705,8683282,2909142,0.003215,0.008869,86440806,58210916,0,0,78744,0,1,1 +1774176577.833531,0.90,4,3992.50,54.32,1573.07,2126.59,0.00,3521166745272.027344,3521166688084.792969,199,0,0.003016,0.008289,86440900,58211076,0,0,78746,0,1,1 +1774176582.837710,1.10,4,3992.50,54.32,1573.07,2126.59,0.00,3515498483470.643555,0.000000,21,0,0.003430,0.010169,86441005,58211263,0,0,78749,0,1,1 +1774176587.837415,0.85,4,3992.50,54.32,1573.08,2126.59,0.00,0.000000,0.000000,21,0,0.002996,0.008253,86441098,58211421,0,0,78751,0,1,1 +1774176592.833200,2.06,4,3992.50,54.27,1575.05,2124.61,0.00,0.175148,0.000000,199,0,0.004167,0.009622,86441201,58211598,0,0,78754,0,1,1 +1774176597.833254,1.05,4,3992.50,54.00,1579.47,2114.37,0.00,3518399227763.409180,0.000000,70,0,0.003484,0.009586,86441310,58211784,0,0,78756,0,1,1 +1774176602.837549,1.10,4,3992.50,54.00,1579.41,2114.41,0.00,3515416928585.790039,0.000000,21,0,0.002957,0.007820,86441409,58211945,0,0,78759,0,1,1 +1774176607.833710,0.95,4,3992.50,53.98,1580.19,2113.62,0.00,0.000000,0.000000,21,0,0.003467,0.009557,86441516,58212129,0,0,78761,0,1,1 +1774176612.836995,0.95,4,3992.50,54.00,1579.46,2114.35,0.00,2.005518,0.000195,238,2,0.003431,0.009528,86441621,58212312,0,0,78764,0,1,1 +1774176617.833234,0.90,4,3992.50,54.00,1579.47,2114.34,0.00,106662.057207,163852.334292,8684065,2909840,0.002757,0.007637,86441706,58212459,0,0,78766,0,1,1 +1774176622.833272,28.69,4,3992.50,60.37,1335.73,2363.56,0.00,0.000000,0.089355,8684065,2909952,70.305298,0.046109,86449242,58215324,0,0,78769,0,1,1 +1774176627.837209,35.03,4,3992.50,60.04,1348.47,2350.75,0.00,3515669052926.995117,3515668995826.560059,70,0,120.272840,0.043118,86461551,58218342,0,0,78771,0,1,1 +1774176632.837260,30.68,4,3992.50,59.88,1352.71,2344.45,0.00,1.958769,0.000195,238,2,121.165639,0.025548,86473935,58220179,0,0,78774,0,1,1 +1774176637.833461,30.93,4,3992.50,59.67,1360.85,2336.34,0.00,106662.884189,163853.802395,8684065,2910019,119.856785,0.037556,86486198,58222873,0,0,78776,0,1,1 +1774176642.833616,31.00,4,3992.50,59.91,1351.66,2345.56,0.00,3518328078460.037109,3518328021316.179688,199,0,119.962550,0.033042,86498527,58225288,0,0,78779,0,1,1 +1774176647.837788,30.82,4,3992.50,59.74,1358.29,2338.86,0.00,106490.712321,163592.819475,8683291,2909579,119.664641,0.035270,86510791,58227940,0,0,78781,0,1,1 +1774176652.837473,30.70,4,3992.50,59.97,1349.12,2347.99,0.00,3518658307686.111328,3518658250530.939941,238,2,119.975152,0.038824,86523137,58230771,0,0,78784,0,1,1 +1774176657.838106,30.23,4,3992.50,60.14,1340.31,2354.61,0.00,0.000000,0.000000,238,2,118.351647,0.047080,86535250,58233941,0,0,78786,0,1,1 +1774176662.836379,18.00,4,3992.50,54.47,1562.27,2132.70,0.00,3519652742779.297852,0.028135,237,494,115.800682,0.043128,86547091,58237097,0,0,78789,0,1,1 +1774176667.837911,1.00,4,3992.50,53.90,1584.70,2110.26,0.00,106545.686955,163679.460124,8683302,2909704,0.006773,0.010724,86547244,58237296,0,0,78791,0,1,1 +1774176672.837404,16.82,4,3992.50,54.55,1559.16,2135.75,0.00,3518793607472.162109,3518793550314.596680,238,2,18.146290,0.093830,86553490,58241971,0,0,78794,0,1,1 +1774176677.834929,12.02,4,3992.50,53.87,1585.68,2109.18,0.00,3520179791514.823730,3520179791516.783203,70,0,18.100395,0.079235,86559380,58246335,0,0,78796,0,1,1 +1774176682.835130,3.91,4,3992.50,53.53,1598.98,2095.88,0.00,0.000000,0.000000,70,0,4.031669,0.023903,86560806,58247428,0,0,78799,0,1,1 +1774176687.836969,1.40,4,3992.50,53.96,1583.36,2112.75,0.00,106544.762697,163670.105875,8684077,2911067,0.005279,0.010416,86560944,58247628,0,0,78801,0,1,1 +1774176692.834911,0.85,4,3992.50,53.92,1584.92,2111.19,0.00,3519886208476.229004,3519886151306.384766,21,0,0.004177,0.009433,86561060,58247810,0,0,78804,0,1,1 +1774176697.834897,25.06,4,3992.50,53.78,1586.59,2105.48,0.00,0.048047,0.000000,70,0,0.037483,93.743718,86563615,58257897,0,0,78806,0,1,1 +1774176702.837763,29.66,4,3992.50,54.04,1572.66,2115.88,0.00,106522.905271,163826.601751,8684082,2912831,0.023901,111.298873,86565269,58269606,0,0,78809,0,1,1 +1774176707.834924,0.80,4,3992.50,53.85,1580.06,2108.47,0.00,3520435485952.011719,3520435428582.777832,199,0,0.005863,0.011495,86565420,58269827,0,0,78811,0,1,1 +1774176712.834887,11.75,4,3992.50,54.07,1574.87,2116.93,0.00,0.000000,0.000000,199,0,40.068369,0.029047,86569932,58271392,0,0,78814,0,1,1 +1774176717.837831,1.40,4,3992.50,54.40,1561.94,2129.82,0.00,0.000000,0.000000,199,0,0.005968,0.011718,86570080,58271599,0,0,78816,0,1,1 +1774176722.837526,0.95,4,3992.50,54.29,1566.33,2125.48,0.00,0.000000,0.000000,199,0,0.005023,0.010301,86570215,58271800,0,0,78819,0,1,1 +1774176727.836392,0.75,4,3992.50,53.90,1581.54,2110.27,0.00,1.363688,0.028327,237,494,0.004807,0.009647,86570344,58271987,0,0,78821,0,1,1 +1774176732.838026,0.65,4,3992.50,53.87,1582.61,2109.19,0.00,3517288115778.440430,3517288115779.950195,21,0,0.004559,0.009051,86570465,58272166,0,0,78824,0,1,1 +1774176737.837209,0.80,4,3992.50,53.88,1582.38,2109.42,0.00,0.175029,0.000000,199,0,0.005036,0.010292,86570601,58272366,0,0,78826,0,1,1 +1774176742.833568,0.60,4,3992.50,53.87,1582.64,2109.16,0.00,3521000905978.682617,0.000000,21,0,0.003677,0.006535,86570696,58272497,0,0,78829,0,1,1 +1774176747.836323,0.95,4,3992.50,53.70,1576.79,2102.67,0.00,0.000000,0.000000,21,0,0.005032,0.010272,86570832,58272696,0,0,78831,0,1,1 +1774176752.837288,0.75,4,3992.50,53.68,1577.66,2101.76,0.00,0.000000,0.000000,21,0,0.005127,0.010374,86570974,58272903,0,0,78834,0,1,1 +1774176757.834909,0.75,4,3992.50,53.67,1578.21,2101.20,0.00,0.048070,0.000000,70,0,0.004350,0.008394,86571089,58273067,0,0,78836,0,1,1 +1774176762.836050,0.80,4,3992.50,53.67,1578.25,2101.17,0.00,106573.012663,163899.430235,8683501,2913129,0.006341,0.010851,86571254,58273286,0,0,78839,0,1,1 +1774176767.837814,10.60,4,3992.50,53.78,1571.48,2105.42,0.00,3517196425317.117188,3517196367996.378418,237,494,0.023945,39.655475,86572748,58277814,0,0,78841,0,1,1 +1774176772.837435,1.60,4,3992.50,53.31,1589.78,2087.11,0.00,106603.903084,163975.310866,8683501,2913393,0.005665,0.413557,86572925,58278116,0,0,78844,0,1,1 +1774176777.834909,1.30,4,3992.50,53.46,1583.85,2093.26,0.00,4.111355,6.134740,8684275,2913946,0.003435,0.009529,86573030,58278298,0,0,78846,0,1,1 +1774176782.837076,0.75,4,3992.50,53.51,1582.13,2094.98,0.00,3516912330171.476074,3516912272827.248535,237,494,0.002745,0.008274,86573114,58278449,0,0,78849,0,1,1 +1774176787.838027,0.70,4,3992.50,53.81,1570.23,2106.87,0.00,0.468368,3517768564801.895020,238,2,0.002746,0.007622,86573198,58278595,0,0,78851,0,1,1 +1774176792.837227,0.80,4,3992.50,53.81,1570.23,2106.86,0.00,106616.537901,163995.353495,8684275,2913991,0.003442,0.009544,86573304,58278779,0,0,78854,0,1,1 +1774176797.837150,0.70,4,3992.50,53.81,1570.24,2106.86,0.00,3518491052010.252441,3518490994640.234863,237,494,0.003433,0.009524,86573409,58278961,0,0,78856,0,1,1 +1774176802.834875,0.70,4,3992.50,53.82,1570.02,2107.09,0.00,0.468670,3520038896277.748535,238,2,0.002748,0.007637,86573493,58279108,0,0,78859,0,1,1 +1774176807.835218,1.05,4,3992.50,53.82,1569.82,2107.30,0.00,0.000000,0.000000,238,2,0.003521,0.009617,86573605,58279296,0,0,78861,0,1,1 +1774176812.833872,0.70,4,3992.50,53.73,1573.45,2103.64,0.00,3519384775780.918945,3519384775782.877930,70,0,0.003510,0.009630,86573716,58279485,0,0,78864,0,1,1 +1774176817.837137,0.70,4,3992.50,53.73,1573.46,2103.64,0.00,1.957511,0.000195,238,2,0.002900,0.007744,86573810,58279641,0,0,78866,0,1,1 +1774176822.837969,0.75,4,3992.50,53.70,1574.81,2102.29,0.00,3517852056406.009277,3517852056407.841309,199,0,0.003445,0.009532,86573916,58279824,0,0,78869,0,1,1 +1774176827.833545,0.75,4,3992.50,53.70,1574.82,2102.28,0.00,106691.588321,164122.434276,8683501,2913645,0.003436,0.009533,86574021,58280006,0,0,78871,0,1,1 +1774176832.837666,0.80,4,3992.50,53.69,1574.82,2102.28,0.00,3515539981645.505859,3515539924312.841797,70,0,0.004087,0.009367,86574122,58280179,0,0,78874,0,1,1 +1774176837.836744,31.81,4,3992.50,59.95,1335.43,2347.37,0.00,1.490607,0.028326,237,494,70.520221,0.035573,86581786,58282283,0,0,78876,0,1,1 +1774176842.835816,33.60,4,3992.50,60.22,1325.04,2357.90,0.00,3519090345715.463867,3519090345716.974609,21,0,118.789477,0.027124,86594088,58284044,0,0,78879,0,1,1 +1774176847.836374,29.66,4,3992.50,59.82,1340.55,2342.28,0.00,0.174980,0.000000,199,0,119.556942,0.033345,86606475,58286254,0,0,78881,0,1,1 +1774176852.837431,29.58,4,3992.50,60.05,1331.83,2350.99,0.00,3517693328606.672363,0.000000,21,0,119.143919,0.031931,86618826,58288673,0,0,78884,0,1,1 +1774176857.835341,31.16,4,3992.50,60.31,1321.36,2361.46,0.00,106646.061074,164046.032221,8684275,2914340,119.222679,0.037425,86631313,58291406,0,0,78886,0,1,1 +1774176862.837660,30.53,4,3992.50,60.04,1332.20,2350.57,0.00,3516806136310.798340,3516806078961.416016,21,0,119.317659,0.034834,86643854,58293866,0,0,78889,0,1,1 +1774176867.838045,30.95,4,3992.50,60.19,1326.08,2356.73,0.00,0.174987,0.000000,199,0,118.964785,0.039721,86656379,58296744,0,0,78891,0,1,1 +1774176872.838207,30.21,4,3992.50,60.30,1322.02,2360.77,0.00,3518323689465.520020,0.000000,21,0,119.774017,0.055871,86668907,58300983,0,0,78894,0,1,1 +1774176877.837913,18.78,4,3992.50,60.33,1320.76,2362.13,0.00,0.000000,0.000000,21,0,119.385730,0.058267,86681416,58305148,0,0,78896,0,1,1 +1774176882.835207,0.95,4,3992.50,54.03,1567.58,2115.31,0.00,0.175095,0.000000,199,0,0.807352,0.007949,86681652,58305350,0,0,78899,0,1,1 +1774176887.837856,18.42,4,3992.50,55.22,1520.99,2161.87,0.00,3516573770112.457520,0.000000,70,0,20.319264,0.101251,86688324,58310395,0,0,78901,0,1,1 +1774176892.837719,13.56,4,3992.50,56.01,1489.71,2193.11,0.00,1.490373,0.028321,237,494,19.931121,0.093792,86694921,58315324,0,0,78904,0,1,1 +1774176897.837316,1.25,4,3992.50,55.31,1522.92,2165.42,0.00,106608.662904,163991.852995,8684286,2915492,0.004639,0.008403,86695035,58315489,0,0,78906,0,1,1 +1774176902.838113,0.70,4,3992.50,54.63,1549.50,2138.85,0.00,3517876396407.198730,3517876339037.770996,237,494,0.005022,0.010286,86695170,58315689,0,0,78909,0,1,1 +1774176907.834996,0.65,4,3992.50,54.43,1557.40,2130.95,0.00,106666.583446,164081.654102,8684286,2916151,0.002856,0.006097,86695248,58315807,0,0,78911,0,1,1 +1774176912.837715,20.19,4,3992.50,54.72,1543.20,2142.23,0.00,3516524796404.931152,3516524739058.176758,199,0,0.041183,82.082784,86698127,58324679,0,0,78914,0,1,1 +1774176917.837424,30.52,4,3992.50,55.00,1528.54,2153.23,0.00,106607.651431,164160.159060,8684286,2917286,0.033810,122.185795,86700496,58337445,0,0,78916,0,1,1 +1774176922.833330,1.61,4,3992.50,54.47,1549.34,2132.71,0.00,3521320147234.662598,3521320089638.524414,21,0,0.004754,0.809727,86700635,58337698,0,0,78919,0,1,1 +1774176927.833188,14.60,4,3992.50,55.09,1528.08,2156.85,0.00,0.048048,0.000000,70,0,40.074038,0.037527,86705313,58340009,0,0,78921,0,1,1 +1774176932.833232,1.30,4,3992.50,54.30,1563.23,2125.90,0.00,106618.099705,164183.292841,8684431,2917725,0.007260,0.010777,86705485,58340224,0,0,78924,0,1,1 +1774176937.837737,1.05,4,3992.50,54.11,1570.42,2118.72,0.00,3515270038456.192383,0.019319,8683657,2917297,0.005032,0.010614,86705614,58340412,0,0,78926,0,1,1 +1774176942.837708,0.60,4,3992.50,54.12,1570.22,2118.91,0.00,3518457773207.623535,3518457715637.495117,21,0,0.005022,0.010301,86705749,58340613,0,0,78929,0,1,1 +1774176947.837412,0.85,4,3992.50,54.14,1569.50,2119.64,0.00,1.538470,0.028322,237,494,0.005035,0.010279,86705885,58340812,0,0,78931,0,1,1 +1774176952.836993,0.80,4,3992.50,54.09,1571.38,2117.77,0.00,0.468496,3518732175052.702637,238,2,0.004349,0.008400,86706000,58340977,0,0,78934,0,1,1 +1774176957.837941,1.30,4,3992.50,54.09,1573.65,2117.82,0.00,3517770386658.733398,3517770386660.691406,70,0,0.007232,0.011328,86706182,58341205,0,0,78936,0,1,1 +1774176962.837899,0.70,4,3992.50,54.09,1573.67,2117.80,0.00,3518466828040.604004,0.000000,21,0,0.004781,0.009654,86706309,58341393,0,0,78939,0,1,1 +1774176967.833333,0.70,4,3992.50,54.10,1573.20,2118.28,0.00,106716.554131,164335.215599,8684431,2918115,0.004670,0.009128,86706437,58341577,0,0,78941,0,1,1 +1774176972.834203,0.65,4,3992.50,54.10,1573.21,2118.26,0.00,3517825038701.879395,3517824981143.841797,238,2,0.005704,0.011220,86706576,58341780,0,0,78944,0,1,1 +1774176977.837829,0.75,4,3992.50,54.11,1573.00,2118.48,0.00,3515887478140.912598,3515887478142.743652,199,0,0.004345,0.009027,86706691,58341948,0,0,78946,0,1,1 +1774176982.837631,0.75,4,3992.50,53.91,1580.87,2110.62,0.00,1.831909,0.000195,238,2,0.005097,0.010341,86706831,58342152,0,0,78949,0,1,1 +1774176987.833226,1.05,4,3992.50,54.20,1569.25,2122.24,0.00,106711.096588,164330.065485,8684431,2918269,0.005027,0.010300,86706966,58342352,0,0,78951,0,1,1 +1774176992.834876,4.37,4,3992.50,54.21,1568.21,2122.46,0.00,3517276599753.818359,8.426419,8683657,2917884,0.017162,13.627380,86707933,58344128,0,0,78954,0,1,1 +1774176997.837297,8.06,4,3992.50,54.12,1570.25,2119.05,0.00,3516734056983.164062,3516733999432.289062,21,0,0.010893,26.437726,86708529,58347163,0,0,78956,0,1,1 +1774177002.838101,0.65,4,3992.50,54.09,1571.73,2117.57,0.00,2.006513,0.000195,238,2,0.003470,0.009595,86708637,58347350,0,0,78959,0,1,1 +1774177007.834918,0.60,4,3992.50,53.90,1579.14,2110.17,0.00,3520678874410.034180,3520678874412.042480,21,0,0.002990,0.008250,86708729,58347507,0,0,78961,0,1,1 +1774177012.834914,0.90,4,3992.50,53.90,1579.14,2110.16,0.00,1.538380,0.028320,237,494,0.003204,0.008913,86708827,58347679,0,0,78964,0,1,1 +1774177017.837844,1.15,4,3992.50,54.16,1573.96,2120.30,0.00,3516376714805.161133,3516376714806.495605,199,0,0.003477,0.009527,86708936,58347862,0,0,78966,0,1,1 +1774177022.837380,0.75,4,3992.50,54.16,1573.75,2120.30,0.00,106628.825956,164209.208337,8684431,2918540,0.002826,0.008042,86709024,58348016,0,0,78969,0,1,1 +1774177027.837318,0.75,4,3992.50,54.13,1574.79,2119.25,0.00,3518480886240.244629,3518480828664.665527,21,0,0.003392,0.009147,86709128,58348193,0,0,78971,0,1,1 +1774177032.837261,0.75,4,3992.50,54.13,1574.80,2119.25,0.00,1.538396,0.028321,237,494,0.002797,0.007709,86709216,58348345,0,0,78974,0,1,1 +1774177037.838101,0.60,4,3992.50,54.13,1574.56,2119.49,0.00,3517846427381.202148,3517846427382.711914,21,0,0.002822,0.007715,86709306,58348497,0,0,78976,0,1,1 +1774177042.837581,0.70,4,3992.50,53.94,1582.22,2111.83,0.00,106630.197005,164242.687118,8684431,2918708,0.003602,0.010305,86709422,58348694,0,0,78979,0,1,1 +1774177047.835413,1.00,4,3992.50,54.13,1561.70,2119.41,0.00,3519962946363.981445,3519962888730.495605,238,2,0.002977,0.008248,86709513,58348851,0,0,78981,0,1,1 +1774177052.838131,0.85,4,3992.50,54.13,1561.68,2119.44,0.00,106559.180362,164136.500971,8684431,2918785,0.003190,0.008908,86709610,58349023,0,0,78984,0,1,1 +1774177057.837817,0.75,4,3992.50,54.13,1561.86,2119.26,0.00,3518658096513.976074,3518658038901.743164,238,2,0.003433,0.009525,86709715,58349205,0,0,78986,0,1,1 +1774177062.837460,34.21,4,3992.50,59.82,1344.17,2342.20,0.00,3518688803577.040527,0.028127,237,494,81.725580,0.039761,86718351,58351805,0,0,78989,0,1,1 +1774177067.838012,34.34,4,3992.50,60.40,1321.57,2364.76,0.00,0.468405,3518048593274.193359,238,2,122.155906,0.032295,86730947,58354104,0,0,78991,0,1,1 +1774177072.837990,32.17,4,3992.50,59.94,1339.49,2346.88,0.00,0.000000,0.000000,238,2,121.371735,0.037223,86743548,58356688,0,0,78994,0,1,1 +1774177077.837291,30.41,4,3992.50,60.11,1333.00,2353.39,0.00,3518929070007.144531,3518929070009.103516,70,0,120.580508,0.054002,86755705,58360757,0,0,78996,0,1,1 +1774177082.837839,30.63,4,3992.50,60.30,1321.93,2360.91,0.00,106603.260260,164208.013446,8683657,2918530,119.751862,0.049949,86767876,58364390,0,0,78999,0,1,1 +1774177087.836517,30.01,4,3992.50,59.71,1345.14,2337.67,0.00,3519368083522.833984,3519368025896.570312,21,0,119.797599,0.052599,86780155,58368289,0,0,79001,0,1,1 +1774177092.833206,30.53,4,3992.50,59.87,1338.75,2344.13,0.00,0.000000,0.000000,21,0,119.442918,0.036328,86792325,58370906,0,0,79004,0,1,1 +1774177097.837488,29.19,4,3992.50,59.83,1340.20,2342.62,0.00,0.048006,0.000000,70,0,120.064187,0.044599,86804673,58374147,0,0,79006,0,1,1 +1774177102.835632,13.75,4,3992.50,54.91,1533.15,2149.77,0.00,106654.616841,164287.093028,8683666,2918591,100.580525,0.044646,86815036,58377217,0,0,79009,0,1,1 +1774177107.836399,19.02,4,3992.50,55.41,1512.85,2169.25,0.00,3517897573576.530762,3517897515972.315918,238,2,20.137160,0.102128,86821805,58382323,0,0,79011,0,1,1 +1774177112.838485,7.53,4,3992.50,55.42,1511.79,2170.00,0.00,0.000000,0.000000,238,2,9.252701,0.041755,86824889,58384564,0,0,79014,0,1,1 +1774177117.834873,8.35,4,3992.50,55.34,1515.27,2166.50,0.00,3520980649814.628906,3520980649816.462402,199,0,10.875979,0.050149,86828346,58387100,0,0,79016,0,1,1 +1774177122.837379,0.85,4,3992.50,54.24,1557.98,2123.80,0.00,3516674579140.463379,0.000000,21,0,0.005032,0.010283,86828482,58387300,0,0,79019,0,1,1 +1774177127.833249,0.70,4,3992.50,54.23,1558.61,2123.17,0.00,0.000000,0.000000,21,0,0.005027,0.010299,86828617,58387500,0,0,79021,0,1,1 +1774177132.833288,0.75,4,3992.50,54.23,1558.40,2123.38,0.00,106614.234430,164226.195218,8683666,2920008,0.004737,0.009464,86828744,58387687,0,0,79024,0,1,1 +1774177137.834912,1.15,4,3992.50,54.23,1560.80,2123.29,0.00,3517295296765.278320,3517295239171.377441,199,0,0.005033,0.010287,86828880,58387887,0,0,79026,0,1,1 +1774177142.835367,0.70,4,3992.50,54.23,1560.85,2123.28,0.00,1.363255,0.028318,237,494,0.005022,0.010300,86829015,58388088,0,0,79029,0,1,1 +1774177147.833522,0.70,4,3992.50,54.42,1553.57,2130.56,0.00,106657.012867,164288.386167,8684440,2920641,0.003751,0.006616,86829116,58388224,0,0,79031,0,1,1 +1774177152.835383,0.65,4,3992.50,54.42,1553.59,2130.54,0.00,3517128323947.458984,3517128266360.289551,21,0,0.004435,0.010099,86829242,58388421,0,0,79034,0,1,1 +1774177157.833480,24.57,4,3992.50,53.85,1571.67,2108.44,0.00,106659.795072,164352.957162,8684440,2921194,0.037306,97.387974,86831673,58399003,0,0,79036,0,1,1 +1774177162.837950,28.62,4,3992.50,53.76,1571.98,2104.91,0.00,3515294402352.061523,3515294344732.371094,21,0,0.033097,107.666805,86834082,58410494,0,0,79039,0,1,1 +1774177167.837719,1.71,4,3992.50,53.78,1580.91,2105.67,0.00,106620.014436,164422.925932,8683678,2921569,0.008211,0.012811,86834264,58410741,0,0,79041,0,1,1 +1774177172.833520,12.56,4,3992.50,54.47,1557.41,2132.43,0.00,21.596165,17.866372,8684569,2922306,40.100504,0.028245,86838788,58412224,0,0,79044,0,1,1 +1774177177.834909,0.65,4,3992.50,53.82,1582.52,2107.33,0.00,3517460291969.345215,0.024700,8683795,2921874,0.005029,0.010778,86838924,58412428,0,0,79046,0,1,1 +1774177182.836119,0.95,4,3992.50,53.66,1589.04,2100.81,0.00,3517585417434.187988,3517585359647.522949,21,0,0.004335,0.008546,86839038,58412593,0,0,79049,0,1,1 +1774177187.837329,0.75,4,3992.50,53.66,1588.81,2101.04,0.00,106610.879367,164393.535095,8684569,2922453,0.005021,0.010288,86839173,58412793,0,0,79051,0,1,1 +1774177192.833756,1.41,4,3992.50,53.66,1588.93,2100.92,0.00,3520953140150.987305,3520953082312.968750,70,0,0.005949,0.010978,86839310,58412997,0,0,79054,0,1,1 +1774177197.837905,1.00,4,3992.50,53.78,1577.80,2105.77,0.00,0.126848,0.000000,199,0,0.004357,0.008383,86839426,58413161,0,0,79056,0,1,1 +1774177202.837289,1.40,4,3992.50,53.71,1578.36,2102.80,0.00,3518870740796.032715,0.000000,21,0,0.003912,0.007160,86839529,58413304,0,0,79059,0,1,1 +1774177207.834897,0.80,4,3992.50,53.68,1579.67,2101.50,0.00,106683.642166,164512.367880,8683806,2922209,0.004796,0.009662,86839657,58413492,0,0,79061,0,1,1 +1774177212.834887,7.73,4,3992.50,54.10,1559.11,2118.32,0.00,4.109285,0.103125,8684580,2922810,0.022092,29.635816,86841036,58416948,0,0,79064,0,1,1 +1774177217.834884,4.51,4,3992.50,53.75,1574.33,2104.62,0.00,3518439663670.566406,3518439605873.473145,21,0,0.007222,10.446308,86841338,58418311,0,0,79066,0,1,1 +1774177222.834882,1.10,4,3992.50,53.70,1576.45,2102.50,0.00,0.175000,0.000000,199,0,0.003433,0.009534,86841443,58418494,0,0,79069,0,1,1 +1774177227.837332,1.20,4,3992.50,53.69,1576.87,2102.19,0.00,3516714634137.358398,0.000000,21,0,0.002753,0.007628,86841528,58418641,0,0,79071,0,1,1 +1774177232.838104,0.90,4,3992.50,53.69,1576.79,2102.18,0.00,2.006526,0.000195,238,2,0.003445,0.009533,86841634,58418824,0,0,79074,0,1,1 +1774177237.837817,0.90,4,3992.50,53.67,1577.63,2101.35,0.00,3518639289965.438477,3518639289967.445801,21,0,0.003433,0.009525,86841739,58419006,0,0,79076,0,1,1 +1774177242.833245,0.90,4,3992.50,53.68,1577.14,2101.82,0.00,0.175160,0.000000,199,0,0.002736,0.008285,86841822,58419157,0,0,79079,0,1,1 +1774177247.834902,0.80,4,3992.50,53.68,1577.40,2101.57,0.00,3517271873400.474121,0.000000,21,0,0.002771,0.007652,86841908,58419305,0,0,79081,0,1,1 +1774177252.838116,1.15,4,3992.50,53.66,1578.15,2100.82,0.00,0.174888,0.000000,199,0,0.003489,0.009598,86842018,58419493,0,0,79084,0,1,1 +1774177257.833225,1.31,4,3992.50,53.89,1568.54,2109.89,0.00,3521882470687.481445,0.000000,70,0,0.005013,0.008750,86842153,58419673,0,0,79086,0,1,1 +1774177262.833207,0.95,4,3992.50,53.85,1569.97,2108.45,0.00,106632.938898,164474.648487,8683806,2922730,0.003589,0.009660,86842268,58419866,0,0,79089,0,1,1 +1774177267.837920,0.95,4,3992.50,53.85,1569.97,2108.46,0.00,3515123589277.811035,3515123531490.832520,21,0,0.003430,0.009515,86842373,58420048,0,0,79091,0,1,1 +1774177272.837272,0.85,4,3992.50,53.85,1569.98,2108.44,0.00,0.000000,0.000000,21,0,0.002747,0.007634,86842457,58420195,0,0,79094,0,1,1 +1774177277.837165,0.95,4,3992.50,53.86,1569.75,2108.68,0.00,2.006879,0.000195,238,2,0.003466,0.009532,86842565,58420378,0,0,79096,0,1,1 +1774177282.838333,37.98,4,3992.50,60.18,1327.93,2356.18,0.00,106609.808087,164435.716824,8684580,2923290,89.715860,0.044650,86852262,58423093,0,0,79099,0,1,1 +1774177287.837442,32.19,4,3992.50,59.84,1341.22,2342.86,0.00,3519064051659.981934,3519063993812.096680,199,0,122.214250,0.081732,86865252,58429281,0,0,79101,0,1,1 +1774177292.837343,31.91,4,3992.50,59.97,1335.51,2347.80,0.00,1.363406,0.028321,237,494,121.198861,0.094208,86878318,58436440,0,0,79104,0,1,1 +1774177297.834578,30.05,4,3992.50,59.99,1334.33,2348.93,0.00,3520384043216.319824,3520384043217.830566,21,0,120.548312,0.092478,86891157,58443294,0,0,79106,0,1,1 +1774177302.836811,29.89,4,3992.50,59.90,1337.84,2345.39,0.00,106589.104468,164401.001801,8684580,2923494,120.050398,0.091446,86903980,58450380,0,0,79109,0,1,1 +1774177307.837286,29.93,4,3992.50,59.85,1339.87,2343.31,0.00,3518103251136.861328,3518103193302.625977,238,2,119.378452,0.084920,86916751,58456671,0,0,79111,0,1,1 +1774177312.833464,30.99,4,3992.50,59.99,1334.69,2348.57,0.00,0.000000,0.000000,238,2,119.865088,0.039092,86929286,58459499,0,0,79114,0,1,1 +1774177317.836829,29.94,4,3992.50,59.91,1337.55,2345.61,0.00,0.000000,0.000000,238,2,120.087683,0.028130,86941669,58461650,0,0,79116,0,1,1 +1774177322.836391,12.75,4,3992.50,53.67,1582.93,2101.32,0.00,0.000000,0.000000,238,2,92.543439,0.039966,86951145,58464441,0,0,79119,0,1,1 +1774177327.837152,10.41,4,3992.50,54.17,1563.32,2120.88,0.00,3517901637203.770508,3517901637205.728516,70,0,8.062163,0.044508,86953966,58466540,0,0,79121,0,1,1 +1774177332.834882,17.83,4,3992.50,55.52,1510.30,2173.84,0.00,106686.213133,164549.770917,8684666,2924360,24.332451,0.111015,86961743,58472313,0,0,79124,0,1,1 +1774177337.833244,5.78,4,3992.50,54.38,1555.14,2128.96,0.00,3519590399515.740234,3519590341659.546387,21,0,7.876960,0.038687,86964310,58474258,0,0,79126,0,1,1 +1774177342.837618,1.45,4,3992.50,53.69,1582.21,2101.93,0.00,0.174847,0.000000,199,0,0.005721,0.011687,86964461,58474483,0,0,79129,0,1,1 +1774177347.833249,1.35,4,3992.50,54.11,1565.50,2118.56,0.00,3521514164281.996582,0.000000,21,0,0.005027,0.010300,86964596,58474683,0,0,79131,0,1,1 +1774177352.836574,3.56,4,3992.50,54.18,1562.69,2121.32,0.00,0.174884,0.000000,199,0,0.015952,11.019851,86965518,58476197,0,0,79134,0,1,1 +1774177357.837405,30.78,4,3992.50,54.95,1526.58,2151.61,0.00,0.000000,0.000000,199,0,0.080835,123.582945,86971533,58489508,0,0,79136,0,1,1 +1774177362.837948,20.47,4,3992.50,54.14,1558.03,2119.86,0.00,3518054574713.363281,0.000000,70,0,0.013725,70.498277,86972427,58496720,0,0,79139,0,1,1 +1774177367.837887,1.05,4,3992.50,54.15,1557.89,2119.98,0.00,1.490350,0.028321,237,494,0.004403,0.009267,86972544,58496900,0,0,79141,0,1,1 +1774177372.833237,13.68,4,3992.50,55.33,1515.08,2166.30,0.00,3521712184275.567383,3521712184277.079102,21,0,40.105195,0.034629,86977079,58498861,0,0,79144,0,1,1 +1774177377.833243,2.10,4,3992.50,54.41,1551.23,2130.15,0.00,106651.091100,164673.037320,8684029,2926113,0.005252,0.007268,86977202,58499010,0,0,79146,0,1,1 +1774177382.837696,1.30,4,3992.50,54.11,1563.01,2118.37,0.00,3515306449753.939453,3515306391783.380859,199,0,0.005693,0.013154,86977350,58499238,0,0,79149,0,1,1 +1774177387.837532,0.75,4,3992.50,54.09,1563.51,2117.88,0.00,106658.642121,164678.673357,8684803,2926643,0.004794,0.009632,86977478,58499424,0,0,79151,0,1,1 +1774177392.837887,0.75,4,3992.50,53.71,1578.54,2102.85,0.00,3518186902848.097656,3518186844834.270020,21,0,0.004564,0.009058,86977599,58499603,0,0,79154,0,1,1 +1774177397.838012,0.85,4,3992.50,53.74,1577.36,2104.03,0.00,0.000000,0.000000,21,0,0.005047,0.010321,86977736,58499805,0,0,79156,0,1,1 +1774177402.833215,0.75,4,3992.50,53.72,1578.16,2103.23,0.00,2.008763,0.000196,238,2,0.005035,0.010306,86977872,58500006,0,0,79159,0,1,1 +1774177407.833206,1.45,4,3992.50,54.44,1549.79,2131.59,0.00,106649.386809,164681.928991,8684029,2926361,0.004336,0.008402,86977986,58500171,0,0,79161,0,1,1 +1774177412.833205,1.00,4,3992.50,54.17,1560.41,2120.98,0.00,3518438534236.647949,3518438476206.013672,199,0,0.005085,0.010351,86978125,58500376,0,0,79164,0,1,1 +1774177417.834902,0.85,4,3992.50,54.18,1560.24,2121.15,0.00,106614.837317,164625.875170,8684029,2926470,0.004607,0.009033,86978249,58500553,0,0,79166,0,1,1 +1774177422.833217,0.80,4,3992.50,54.18,1560.25,2121.14,0.00,3519622940632.568359,3519622882582.276367,199,0,0.004795,0.009683,86978377,58500743,0,0,79169,0,1,1 +1774177427.836424,0.90,4,3992.50,54.18,1560.26,2121.12,0.00,0.000000,0.000000,199,0,0.005107,0.010324,86978518,58500946,0,0,79171,0,1,1 +1774177432.833247,0.85,4,3992.50,54.18,1560.29,2121.11,0.00,3520673908508.113770,0.000000,70,0,0.004753,0.009470,86978646,58501133,0,0,79174,0,1,1 +1774177437.836624,7.87,4,3992.50,54.88,1530.99,2148.84,0.00,0.000000,0.000000,70,0,0.022968,26.833468,86980063,58504319,0,0,79176,0,1,1 +1774177442.834894,4.92,4,3992.50,54.51,1545.21,2134.15,0.00,0.000000,0.000000,70,0,0.009895,13.232814,86980644,58505893,0,0,79179,0,1,1 +1774177447.838062,1.15,4,3992.50,54.07,1562.30,2117.08,0.00,3516209258527.377930,0.000000,21,0,0.003456,0.010162,86980751,58506079,0,0,79181,0,1,1 +1774177452.837526,0.90,4,3992.50,54.09,1561.66,2117.71,0.00,0.000000,0.000000,21,0,0.003442,0.009543,86980857,58506263,0,0,79184,0,1,1 +1774177457.837276,0.85,4,3992.50,54.09,1561.43,2117.94,0.00,0.000000,0.000000,21,0,0.002734,0.007637,86980940,58506410,0,0,79186,0,1,1 +1774177462.834898,1.10,4,3992.50,54.11,1560.79,2118.58,0.00,0.048070,0.000000,70,0,0.003422,0.009539,86981044,58506593,0,0,79189,0,1,1 +1774177467.837862,1.35,4,3992.50,54.18,1558.11,2121.23,0.00,106587.989229,164616.758243,8684029,2927006,0.003431,0.009519,86981149,58506775,0,0,79191,0,1,1 +1774177472.834903,1.00,4,3992.50,54.03,1563.81,2115.45,0.00,3520520003105.643066,3520519945008.156738,21,0,0.002786,0.007669,86981236,58506924,0,0,79194,0,1,1 +1774177477.837811,0.95,4,3992.50,54.03,1563.82,2115.45,0.00,1.537485,0.028304,237,494,0.003494,0.009581,86981346,58507110,0,0,79196,0,1,1 +1774177482.834896,0.95,4,3992.50,53.85,1571.00,2108.27,0.00,3520489395795.488770,3520489395796.999512,21,0,0.003511,0.009633,86981457,58507299,0,0,79199,0,1,1 +1774177487.834892,0.90,4,3992.50,53.85,1570.79,2108.48,0.00,106651.308775,164722.497975,8684029,2927069,0.002902,0.007749,86981551,58507455,0,0,79201,0,1,1 +1774177492.835571,0.85,4,3992.50,53.85,1570.79,2108.48,0.00,3517959199435.808105,3517959141372.560547,21,0,0.003433,0.009533,86981656,58507638,0,0,79204,0,1,1 +1774177497.834901,1.25,4,3992.50,54.11,1560.36,2118.53,0.00,0.175023,0.000000,199,0,0.004351,0.010203,86981763,58507824,0,0,79206,0,1,1 +1774177502.834898,0.90,4,3992.50,54.08,1561.41,2117.48,0.00,3518439835046.517578,0.000000,21,0,0.002759,0.007633,86981848,58507971,0,0,79209,0,1,1 +1774177507.835605,25.04,4,3992.50,60.36,1320.38,2363.32,0.00,0.000000,0.000000,21,0,48.871166,0.039791,86987235,58510293,0,0,79211,0,1,1 +1774177512.835402,35.65,4,3992.50,60.28,1323.59,2360.08,0.00,1.538441,0.028321,237,494,122.175839,0.038632,86999859,58512925,0,0,79214,0,1,1 +1774177517.838223,31.35,4,3992.50,60.27,1322.21,2359.55,0.00,3516452981364.496094,3516452981365.957520,70,0,120.897508,0.032451,87012231,58515417,0,0,79216,0,1,1 +1774177522.834136,30.17,4,3992.50,60.27,1324.11,2359.68,0.00,106742.510919,164857.444903,8684803,2927863,120.265128,0.039722,87024578,58518283,0,0,79219,0,1,1 +1774177527.837603,30.11,4,3992.50,60.58,1311.76,2371.98,0.00,3515999633372.445312,3515999575345.283691,21,0,119.681858,0.049802,87036779,58521993,0,0,79221,0,1,1 +1774177532.837379,31.58,4,3992.50,60.22,1325.95,2357.75,0.00,0.048049,0.000000,70,0,119.771173,0.041325,87049047,58525047,0,0,79224,0,1,1 +1774177537.837679,31.15,4,3992.50,60.19,1327.15,2356.57,0.00,3518225945044.313477,0.000000,21,0,119.759244,0.044235,87061326,58528263,0,0,79226,0,1,1 +1774177542.834927,30.35,4,3992.50,60.07,1331.77,2352.00,0.00,1.539226,0.028336,237,494,119.430297,0.043633,87073498,58531461,0,0,79229,0,1,1 +1774177547.834887,21.44,4,3992.50,60.20,1326.99,2356.82,0.00,3518465272160.672363,3518465272162.182617,21,0,119.363138,0.049879,87085530,58535278,0,0,79231,0,1,1 +1774177552.833193,6.48,4,3992.50,54.00,1569.50,2114.31,0.00,2.007516,0.000195,238,2,17.257881,0.027721,87087999,58536473,0,0,79234,0,1,1 +1774177557.836392,22.98,4,3992.50,56.17,1487.11,2199.30,0.00,106581.119421,164618.421417,8684044,2928543,34.183934,0.148934,87099061,58544677,0,0,79236,0,1,1 +1774177562.833211,3.26,4,3992.50,54.47,1552.01,2132.73,0.00,3520676417202.422852,3520676359091.526367,237,494,4.034267,0.028314,87100546,58545847,0,0,79239,0,1,1 +1774177567.833249,1.00,4,3992.50,54.17,1563.68,2121.05,0.00,106653.075596,164722.747639,8684818,2929324,0.004353,0.007898,87100655,58546000,0,0,79241,0,1,1 +1774177572.837471,0.75,4,3992.50,54.15,1564.50,2120.24,0.00,3515468962253.183594,3515468904233.393555,199,0,0.005018,0.010292,87100790,58546201,0,0,79244,0,1,1 +1774177577.835388,0.60,4,3992.50,54.16,1564.40,2120.34,0.00,1.832599,0.000195,238,2,0.004338,0.008715,87100904,58546367,0,0,79246,0,1,1 +1774177582.833202,0.80,4,3992.50,54.21,1562.22,2122.52,0.00,3519975799455.246582,3519975799457.079590,199,0,0.005050,0.010627,87101041,58546570,0,0,79249,0,1,1 +1774177587.833230,0.95,4,3992.50,54.21,1565.80,2122.59,0.00,0.000000,0.000000,199,0,0.005022,0.010290,87101176,58546770,0,0,79251,0,1,1 +1774177592.833274,0.75,4,3992.50,54.23,1565.08,2123.31,0.00,1.831820,0.000195,238,2,0.004336,0.008400,87101290,58546935,0,0,79254,0,1,1 +1774177597.833228,0.70,4,3992.50,54.23,1565.09,2123.30,0.00,3518470170614.983887,0.028125,237,494,0.005106,0.010379,87101432,58547141,0,0,79256,0,1,1 +1774177602.833219,0.75,4,3992.50,54.23,1565.11,2123.28,0.00,0.000000,0.000000,237,494,0.005073,0.010363,87101571,58547346,0,0,79259,0,1,1 +1774177607.833244,0.65,4,3992.50,54.23,1565.25,2123.14,0.00,3518419684336.897949,3518419684338.408203,21,0,0.004336,0.008390,87101685,58547510,0,0,79261,0,1,1 +1774177612.833285,1.05,4,3992.50,54.24,1564.77,2123.62,0.00,106654.554066,164723.448289,8684818,2929867,0.005097,0.010340,87101825,58547714,0,0,79264,0,1,1 +1774177617.837734,1.05,4,3992.50,54.28,1571.04,2125.20,0.00,3515309260197.154785,3515309202179.362793,70,0,0.005005,0.010281,87101959,58547914,0,0,79266,0,1,1 +1774177622.833876,0.70,4,3992.50,54.27,1571.58,2124.66,0.00,3521154056704.839355,0.000000,21,0,0.004339,0.008406,87102073,58548079,0,0,79269,0,1,1 +1774177627.834883,1.40,4,3992.50,54.27,1571.33,2124.90,0.00,106629.827537,164691.713011,8684044,2929484,0.005704,0.011210,87102212,58548281,0,0,79271,0,1,1 +1774177632.834873,0.65,4,3992.50,54.28,1571.11,2125.13,0.00,3518444348821.875488,3518444290746.165039,238,2,0.004323,0.008400,87102325,58548446,0,0,79274,0,1,1 +1774177637.834910,0.65,4,3992.50,54.28,1571.12,2125.11,0.00,3518410827836.805664,3518410827838.812500,21,0,0.004336,0.008390,87102439,58548610,0,0,79276,0,1,1 +1774177642.834907,0.65,4,3992.50,54.08,1578.96,2117.28,0.00,106655.484990,164725.120144,8684818,2930100,0.005022,0.010622,87102574,58548813,0,0,79279,0,1,1 +1774177647.834910,1.05,4,3992.50,54.18,1576.64,2121.11,0.00,3518435376789.076172,3518435318717.497070,238,2,0.004802,0.009962,87102703,58549002,0,0,79281,0,1,1 +1774177652.837502,0.60,4,3992.50,54.19,1576.20,2121.56,0.00,106598.164205,164639.784113,8684818,2930179,0.004562,0.009054,87102824,58549181,0,0,79284,0,1,1 +1774177657.833225,1.65,4,3992.50,54.53,1562.86,2134.88,0.00,3521448821636.040527,0.004594,8684044,2929729,0.013468,4.425596,87103500,58550134,0,0,79286,0,1,1 +1774177662.834879,29.52,4,3992.50,54.27,1567.74,2124.81,0.00,0.000000,87.279716,8684044,2930327,0.052976,112.526969,87107446,58561883,0,0,79289,0,1,1 +1774177667.837497,22.50,4,3992.50,54.42,1560.89,2130.68,0.00,3516596402440.621094,3516596344309.754395,199,0,0.031278,88.079175,87109789,58570950,0,0,79291,0,1,1 +1774177672.837788,1.60,4,3992.50,54.22,1568.57,2122.99,0.00,3518232219786.433594,0.000000,70,0,0.005896,0.010423,87109920,58571150,0,0,79294,0,1,1 +1774177677.833199,14.48,4,3992.50,55.37,1532.50,2167.77,0.00,3521669216580.666016,0.000000,21,0,40.107921,2.641710,87114729,58573477,0,0,79296,0,1,1 +1774177682.833761,10.74,4,3992.50,55.12,1540.35,2158.04,0.00,0.048041,0.000000,70,0,0.019285,37.460365,87116052,58577670,0,0,79299,0,1,1 +1774177687.834892,0.90,4,3992.50,54.82,1552.02,2146.37,0.00,0.126924,0.000000,199,0,0.003458,0.009522,87116159,58577852,0,0,79301,0,1,1 +1774177692.834891,0.80,4,3992.50,54.58,1561.61,2136.78,0.00,106668.640730,164962.628077,8684206,2931629,0.003433,0.009534,87116264,58578035,0,0,79304,0,1,1 +1774177697.833221,0.80,4,3992.50,54.42,1567.61,2130.77,0.00,3519613094348.937012,3519613036034.141113,237,494,0.002756,0.007634,87116349,58578182,0,0,79306,0,1,1 +1774177702.837779,0.75,4,3992.50,54.43,1567.37,2131.02,0.00,106570.099512,164812.327551,8684206,2931640,0.003455,0.009556,87116456,58578367,0,0,79309,0,1,1 +1774177707.836609,1.05,4,3992.50,54.62,1559.14,2138.59,0.00,3519260652847.540527,3519260594538.569336,237,494,0.003459,0.009557,87116563,58578551,0,0,79311,0,1,1 +1774177712.837317,0.60,4,3992.50,54.59,1560.22,2137.51,0.00,3517939222773.455078,3517939222774.964844,21,0,0.002746,0.008276,87116647,58578702,0,0,79314,0,1,1 +1774177717.837582,0.70,4,3992.50,54.59,1560.23,2137.50,0.00,2.006729,0.000195,238,2,0.003433,0.009524,87116752,58578884,0,0,79316,0,1,1 +1774177722.834913,0.75,4,3992.50,54.59,1560.23,2137.50,0.00,3520316721468.178223,3520316721470.186523,21,0,0.003599,0.009726,87116870,58579079,0,0,79319,0,1,1 +1774177727.837607,0.70,4,3992.50,54.59,1560.24,2137.49,0.00,106615.452211,164881.914935,8684980,2932230,0.002900,0.007745,87116964,58579235,0,0,79321,0,1,1 +1774177732.834898,0.70,4,3992.50,54.47,1565.11,2132.62,0.00,3520344081047.823730,3520344022718.365234,21,0,0.003824,0.010604,87117081,58579440,0,0,79324,0,1,1 +1774177737.834898,1.15,4,3992.50,54.56,1555.79,2136.27,0.00,106668.812658,164970.817077,8684206,2931756,0.002747,0.007623,87117165,58579586,0,0,79326,0,1,1 +1774177742.834956,0.75,4,3992.50,54.57,1554.43,2136.52,0.00,3518396303594.546387,3518396245293.227539,21,0,0.002759,0.007633,87117250,58579733,0,0,79329,0,1,1 +1774177747.840402,1.60,4,3992.50,55.21,1529.27,2161.53,0.00,0.000000,0.000000,21,0,0.006362,0.012184,87117416,58579961,0,0,79331,0,1,1 +1774177752.836393,43.94,4,3992.50,60.14,1341.27,2354.46,0.00,106754.398014,165103.333117,8684206,2931939,108.644890,0.044642,87128930,58582893,0,0,79334,0,1,1 +1774177757.837419,30.82,4,3992.50,60.48,1327.82,2367.97,0.00,3517715420382.533691,3517715362092.345215,21,0,119.344262,0.021042,87141448,58584325,0,0,79336,0,1,1 +1774177762.837791,30.32,4,3992.50,60.26,1336.45,2359.23,0.00,106660.860492,164958.737716,8684206,2931966,118.957273,0.020386,87153795,58585800,0,0,79339,0,1,1 +1774177767.836038,30.40,4,3992.50,60.28,1335.55,2360.18,0.00,0.000000,0.052655,8684206,2931981,119.808812,0.022686,87166166,58587455,0,0,79341,0,1,1 +1774177772.835720,29.92,4,3992.50,60.28,1335.72,2359.98,0.00,3518660982649.282715,3518660924343.305664,21,0,118.976302,0.032149,87178430,58589889,0,0,79344,0,1,1 +1774177777.835105,30.47,4,3992.50,60.13,1339.91,2354.24,0.00,106681.894847,164991.463521,8684206,2932051,119.779469,0.025349,87190669,58591662,0,0,79346,0,1,1 +1774177782.837335,30.23,4,3992.50,60.16,1338.86,2355.28,0.00,3516868782012.642090,3516868723736.220703,21,0,118.714992,0.029560,87202895,58593691,0,0,79349,0,1,1 +1774177787.837950,29.61,4,3992.50,60.06,1342.79,2351.39,0.00,106655.687927,164950.942924,8684206,2932075,119.558571,0.042853,87215337,58596764,0,0,79351,0,1,1 +1774177792.837532,9.15,4,3992.50,55.19,1533.27,2160.96,0.00,3518731104865.822754,3518731046558.355957,199,0,81.722452,0.023158,87223782,58598434,0,0,79354,0,1,1 +1774177797.835417,4.72,4,3992.50,55.43,1524.05,2170.09,0.00,3519926547532.081055,0.000000,21,0,2.023407,0.022731,87224603,58599144,0,0,79356,0,1,1 +1774177802.836431,13.57,4,3992.50,54.55,1558.21,2135.90,0.00,106651.387292,164938.285662,8685003,2933099,16.105006,0.075530,87230020,58603102,0,0,79359,0,1,1 +1774177807.834897,16.20,4,3992.50,54.14,1574.23,2119.82,0.00,3519517254725.904297,3519517196409.279297,21,0,22.141541,0.097875,87237083,58608329,0,0,79361,0,1,1 +1774177812.835413,1.41,4,3992.50,53.68,1592.43,2101.63,0.00,2.006629,0.000195,238,2,0.006215,0.011073,87237224,58608531,0,0,79364,0,1,1 +1774177817.837820,0.70,4,3992.50,53.67,1592.84,2101.20,0.00,106619.690914,164893.144059,8685004,2934055,0.004816,0.009665,87237354,58608720,0,0,79366,0,1,1 +1774177822.835548,0.60,4,3992.50,53.66,1593.27,2100.79,0.00,0.000000,0.195694,8685004,2934255,0.005025,0.010293,87237489,58608920,0,0,79369,0,1,1 +1774177827.833290,1.15,4,3992.50,53.90,1583.92,2110.24,0.00,3520026697690.648438,3520026639364.433594,199,0,0.004325,0.008393,87237602,58609084,0,0,79371,0,1,1 +1774177832.834893,0.75,4,3992.50,53.92,1582.85,2111.20,0.00,106634.559378,164920.116596,8684230,2933807,0.005029,0.010293,87237738,58609285,0,0,79374,0,1,1 +1774177837.837330,0.70,4,3992.50,53.92,1583.00,2111.05,0.00,3516723381108.981934,3516723322831.303223,238,2,0.004359,0.008417,87237854,58609451,0,0,79376,0,1,1 +1774177842.837173,0.65,4,3992.50,53.92,1583.05,2111.00,0.00,106674.366798,164978.325763,8685004,2934423,0.004437,0.008524,87237976,58609624,0,0,79379,0,1,1 +1774177847.837707,0.75,4,3992.50,53.93,1582.59,2111.45,0.00,3518061832665.311523,3518061774371.402344,21,0,0.004360,0.009033,87238092,58609792,0,0,79381,0,1,1 +1774177852.834903,0.80,4,3992.50,53.75,1589.68,2104.37,0.00,0.000000,0.000000,21,0,0.005038,0.010306,87238228,58609993,0,0,79384,0,1,1 +1774177857.837374,1.15,4,3992.50,53.82,1586.93,2107.25,0.00,0.000000,0.000000,21,0,0.007267,0.011321,87238412,58610221,0,0,79386,0,1,1 +1774177862.837332,0.65,4,3992.50,53.82,1586.64,2107.36,0.00,1.538392,0.028321,237,494,0.004356,0.008408,87238528,58610387,0,0,79389,0,1,1 +1774177867.837514,0.70,4,3992.50,53.84,1586.16,2107.84,0.00,3518309672970.711914,3518309672972.174316,70,0,0.005022,0.010290,87238663,58610587,0,0,79391,0,1,1 +1774177872.834907,0.70,4,3992.50,53.82,1587.01,2106.99,0.00,3520272573394.743164,0.000000,21,0,0.005012,0.010306,87238797,58610788,0,0,79394,0,1,1 +1774177877.838113,0.70,4,3992.50,53.84,1586.03,2107.98,0.00,0.174888,0.000000,199,0,0.004333,0.008384,87238911,58610952,0,0,79396,0,1,1 +1774177882.834305,0.70,4,3992.50,53.85,1585.82,2108.19,0.00,106750.051096,165099.157022,8684230,2934194,0.005026,0.010308,87239046,58611153,0,0,79399,0,1,1 +1774177887.836107,1.00,4,3992.50,53.94,1582.05,2111.86,0.00,3517170161950.651367,3517170103667.153809,21,0,0.005046,0.010262,87239183,58611351,0,0,79401,0,1,1 +1774177892.838015,0.75,4,3992.50,53.83,1586.18,2107.70,0.00,106632.324893,164910.550834,8685004,2934734,0.004342,0.008417,87239298,58611518,0,0,79404,0,1,1 +1774177897.837994,0.75,4,3992.50,53.86,1585.22,2108.66,0.00,0.000000,0.041699,8685004,2934786,0.005022,0.010291,87239433,58611718,0,0,79406,0,1,1 +1774177902.834397,3.37,4,3992.50,54.20,1571.84,2122.00,0.00,3520970254401.025391,3520970196058.485840,70,0,0.017342,12.239908,87240478,58613465,0,0,79409,0,1,1 +1774177907.834884,30.44,4,3992.50,54.17,1566.98,2120.83,0.00,3518094482451.241699,0.000000,21,0,0.060218,118.161395,87244997,58625799,0,0,79411,0,1,1 +1774177912.837127,19.81,4,3992.50,53.94,1575.47,2111.76,0.00,106625.207272,165075.901303,8685011,2935907,0.037859,74.676452,87247867,58633615,0,0,79414,0,1,1 +1774177917.836192,9.64,4,3992.50,58.84,1389.54,2303.57,0.00,13.369003,28.747561,8684354,2935643,16.034692,0.022064,87249888,58634720,0,0,79416,0,1,1 +1774177922.835370,4.11,4,3992.50,55.41,1523.71,2169.41,0.00,3519015806459.579590,3519015747955.659180,238,2,24.046181,0.017740,87252616,58635514,0,0,79419,0,1,1 +1774177927.837679,11.16,4,3992.50,53.88,1581.11,2109.63,0.00,0.000000,0.000000,238,2,0.028669,40.054698,87254465,58640116,0,0,79421,0,1,1 +1774177932.836619,0.70,4,3992.50,53.88,1581.11,2109.63,0.00,3519183245464.255371,3519183245466.262695,21,0,0.002747,0.007635,87254549,58640263,0,0,79424,0,1,1 +1774177937.837771,0.70,4,3992.50,53.89,1580.90,2109.84,0.00,106661.840469,165172.981392,8684354,2936205,0.003445,0.009522,87254655,58640445,0,0,79426,0,1,1 +1774177942.837774,0.70,4,3992.50,53.89,1580.91,2109.83,0.00,3518435239537.350098,3518435181012.587891,199,0,0.003421,0.009534,87254759,58640628,0,0,79429,0,1,1 +1774177947.834908,1.25,4,3992.50,54.29,1562.92,2125.56,0.00,1.832886,0.000195,238,2,0.002786,0.007659,87254846,58640776,0,0,79431,0,1,1 +1774177952.835082,0.65,4,3992.50,54.13,1569.17,2119.31,0.00,0.000000,0.000000,238,2,0.003441,0.009542,87254952,58640960,0,0,79434,0,1,1 +1774177957.835682,0.95,4,3992.50,54.18,1567.33,2121.13,0.00,3518015235618.535156,3518015235620.541992,21,0,0.003433,0.009510,87255057,58641141,0,0,79436,0,1,1 +1774177962.834926,0.70,4,3992.50,54.17,1567.45,2121.03,0.00,1.538612,0.028325,237,494,0.002747,0.007647,87255141,58641289,0,0,79439,0,1,1 +1774177967.834912,0.65,4,3992.50,54.18,1567.21,2121.27,0.00,106685.174418,165219.609405,8684354,2936311,0.002885,0.007779,87255236,58641445,0,0,79441,0,1,1 +1774177972.836408,0.70,4,3992.50,54.18,1567.34,2121.13,0.00,3517384690145.520020,3517384631630.094727,199,0,0.003494,0.008872,87255342,58641624,0,0,79444,0,1,1 +1774177977.837224,1.15,4,3992.50,54.27,1564.57,2124.80,0.00,1.363157,0.028316,237,494,0.003445,0.010166,87255448,58641810,0,0,79446,0,1,1 +1774177982.837334,0.65,4,3992.50,54.24,1565.57,2123.80,0.00,106686.623298,165215.636743,8685128,2936896,0.003441,0.009542,87255554,58641994,0,0,79449,0,1,1 +1774177987.837472,13.36,4,3992.50,60.17,1337.05,2355.80,0.00,3518340012896.405273,3518339954369.176270,70,0,2.812850,0.015439,87256207,58642521,0,0,79451,0,1,1 +1774177992.833205,38.34,4,3992.50,60.30,1333.98,2360.97,0.00,1.491605,0.028345,237,494,113.458738,0.038714,87268009,58644965,0,0,79454,0,1,1 +1774177997.833220,30.87,4,3992.50,60.57,1323.54,2371.39,0.00,106688.651383,165218.926473,8685128,2937045,120.169074,0.027527,87280414,58646772,0,0,79456,0,1,1 +1774178002.836621,30.60,4,3992.50,60.21,1337.53,2357.37,0.00,3516045497187.212891,3516045438698.051758,21,0,118.892004,0.036469,87292874,58649226,0,0,79459,0,1,1 +1774178007.834893,31.32,4,3992.50,60.51,1332.73,2369.07,0.00,106723.303801,165276.696447,8684354,2936607,119.411904,0.037733,87305197,58652060,0,0,79461,0,1,1 +1774178012.835260,30.88,4,3992.50,60.17,1346.43,2355.69,0.00,4.108975,0.120401,8685128,2937153,119.560516,0.041215,87317476,58655158,0,0,79464,0,1,1 +1774178017.837704,31.24,4,3992.50,60.07,1349.96,2352.04,0.00,3516718344084.574707,3516718285581.999023,238,2,119.307199,0.039157,87329639,58657856,0,0,79466,0,1,1 +1774178022.836927,30.22,4,3992.50,60.06,1350.29,2351.64,0.00,106700.973038,165245.335548,8684354,2936688,119.584383,0.042047,87341817,58660765,0,0,79469,0,1,1 +1774178027.835986,29.45,4,3992.50,60.16,1346.44,2355.45,0.00,3519099769800.049805,3519099711253.754395,238,2,119.183309,0.037624,87353798,58663657,0,0,79471,0,1,1 +1774178032.834871,7.22,4,3992.50,53.76,1597.29,2104.77,0.00,3519221845433.874023,3519221845435.881348,21,0,73.117634,0.021903,87361308,58665229,0,0,79474,0,1,1 +1774178037.834738,3.21,4,3992.50,53.98,1592.41,2113.27,0.00,0.000000,0.000000,21,0,0.015335,0.015245,87361609,58665531,0,0,79476,0,1,1 +1774178042.834196,12.58,4,3992.50,53.77,1600.43,2105.23,0.00,1.538546,0.028323,237,494,14.098498,0.069807,87366349,58669069,0,0,79479,0,1,1 +1774178047.836040,16.72,4,3992.50,55.23,1543.21,2162.40,0.00,3517140333726.407227,3517140333727.916504,21,0,26.142730,0.113863,87374587,58675288,0,0,79481,0,1,1 +1774178052.837157,1.66,4,3992.50,54.25,1581.74,2123.87,0.00,106662.714190,165183.585118,8684371,2937813,0.005051,0.009794,87374718,58675477,0,0,79484,0,1,1 +1774178057.833534,8.35,4,3992.50,54.21,1582.98,2122.57,0.00,3520989075643.585449,3520989017067.174805,21,0,0.026621,32.265629,87376412,58679419,0,0,79486,0,1,1 +1774178062.834421,31.80,4,3992.50,54.37,1570.05,2128.88,0.00,106671.723083,165310.203887,8685145,2939386,0.026526,118.574537,87378197,58692058,0,0,79489,0,1,1 +1774178067.837392,15.33,4,3992.50,54.21,1576.60,2122.51,0.00,0.011712,55.297913,8685154,2939757,0.013561,54.253086,87378991,58697913,0,0,79491,0,1,1 +1774178072.833264,1.46,4,3992.50,54.18,1572.50,2121.09,0.00,3521344311016.559082,31.435229,8684380,2939462,0.004784,0.004900,87379079,58698019,0,0,79494,0,1,1 +1774178077.837937,13.98,4,3992.50,54.05,1580.79,2116.33,0.00,21.557879,0.146055,8685270,2940115,40.024798,0.029329,87383455,58699852,0,0,79496,0,1,1 +1774178082.837617,0.90,4,3992.50,54.07,1580.08,2117.03,0.00,3518662283190.253906,3518662224468.192871,21,0,0.006916,0.009672,87383622,58700054,0,0,79499,0,1,1 +1774178087.837112,1.05,4,3992.50,54.08,1579.88,2117.23,0.00,1.538534,0.028323,237,494,0.005083,0.010633,87383755,58700243,0,0,79501,0,1,1 +1774178092.834893,0.70,4,3992.50,54.08,1579.89,2117.22,0.00,3519999221912.557129,3519999221913.893066,199,0,0.005037,0.010305,87383891,58700444,0,0,79504,0,1,1 +1774178097.837281,1.40,4,3992.50,54.22,1572.96,2122.71,0.00,0.000000,0.000000,199,0,0.005941,0.010942,87384028,58700646,0,0,79506,0,1,1 +1774178102.837600,0.95,4,3992.50,54.23,1572.51,2123.17,0.00,106701.156738,165416.359638,8685270,2940567,0.004386,0.008443,87384146,58700814,0,0,79509,0,1,1 +1774178107.833201,1.76,4,3992.50,54.03,1580.41,2115.26,0.00,3521535833614.145996,0.075750,8684496,2940165,0.005039,0.010300,87384282,58701014,0,0,79511,0,1,1 +1774178112.837600,0.90,4,3992.50,54.03,1580.44,2115.24,0.00,3515343724847.575195,3515343666176.189453,70,0,0.004872,0.010322,87384416,58701209,0,0,79514,0,1,1 +1774178117.838079,0.85,4,3992.50,54.03,1580.45,2115.23,0.00,1.490189,0.028318,237,494,0.004595,0.009085,87384539,58701390,0,0,79516,0,1,1 +1774178122.837971,0.80,4,3992.50,54.03,1580.47,2115.21,0.00,3518513163729.204590,3518513163730.540039,199,0,0.005023,0.010301,87384674,58701591,0,0,79519,0,1,1 +1774178127.833417,1.00,4,3992.50,53.92,1583.31,2110.92,0.00,106805.262357,165578.002521,8685270,2940796,0.004798,0.009641,87384802,58701777,0,0,79521,0,1,1 +1774178132.837636,0.85,4,3992.50,53.93,1579.92,2111.65,0.00,3515471073216.263672,3515471014546.557129,199,0,0.004636,0.009091,87384928,58701959,0,0,79524,0,1,1 +1774178137.834424,0.80,4,3992.50,53.93,1579.93,2111.63,0.00,3520698617681.925293,0.000000,70,0,0.005046,0.010280,87385065,58702158,0,0,79526,0,1,1 +1774178142.835398,0.80,4,3992.50,53.93,1579.95,2111.61,0.00,0.000000,0.000000,70,0,0.004576,0.009019,87385187,58702334,0,0,79529,0,1,1 +1774178147.837572,10.09,4,3992.50,54.21,1566.84,2122.29,0.00,1.957938,0.000195,238,2,0.026789,39.326649,87386848,58706829,0,0,79531,0,1,1 +1774178152.833155,1.81,4,3992.50,53.97,1575.82,2113.23,0.00,0.000000,0.000000,238,2,0.004065,0.736181,87386996,58707093,0,0,79534,0,1,1 +1774178157.833216,1.35,4,3992.50,54.09,1571.02,2117.62,0.00,3518394009335.867676,3518394009337.874512,21,0,0.005619,0.010533,87387146,58707301,0,0,79536,0,1,1 +1774178162.833241,0.95,4,3992.50,53.99,1574.63,2114.02,0.00,0.000000,0.000000,21,0,0.002742,0.007641,87387230,58707449,0,0,79539,0,1,1 +1774178167.837990,0.75,4,3992.50,53.99,1574.64,2114.02,0.00,2.004931,0.000195,238,2,0.003417,0.009515,87387334,58707631,0,0,79541,0,1,1 +1774178172.838120,0.85,4,3992.50,53.99,1574.65,2114.01,0.00,106703.377141,165457.207753,8685270,2941260,0.003433,0.009534,87387439,58707814,0,0,79544,0,1,1 +1774178177.834032,0.75,4,3992.50,54.01,1573.92,2114.74,0.00,0.000000,0.004691,8685270,2941264,0.002761,0.008274,87387524,58707964,0,0,79546,0,1,1 +1774178182.835601,0.80,4,3992.50,54.01,1573.92,2114.74,0.00,3517332867882.645020,3517332809145.724609,238,2,0.003445,0.009531,87387630,58708147,0,0,79549,0,1,1 +1774178187.834897,1.26,4,3992.50,54.01,1573.41,2114.72,0.00,106721.187783,165490.891126,8685270,2941321,0.003442,0.009565,87387736,58708332,0,0,79551,0,1,1 +1774178192.834887,0.90,4,3992.50,53.85,1579.81,2108.32,0.00,3518443989177.311035,3518443930417.782715,21,0,0.002853,0.007752,87387828,58708487,0,0,79554,0,1,1 +1774178197.837860,0.95,4,3992.50,53.70,1585.77,2102.35,0.00,0.048018,0.000000,70,0,0.003555,0.009619,87387941,58708677,0,0,79556,0,1,1 +1774178202.833226,1.00,4,3992.50,53.71,1585.07,2103.05,0.00,1.960606,0.000195,238,2,0.003537,0.009667,87388054,58708868,0,0,79559,0,1,1 +1774178207.833222,0.90,4,3992.50,53.58,1590.35,2097.77,0.00,106706.242492,165467.785226,8685270,2941388,0.002747,0.007623,87388138,58709014,0,0,79561,0,1,1 +1774178212.837577,1.25,4,3992.50,53.45,1595.46,2092.66,0.00,3515374826821.953613,3515374768113.612305,21,0,0.003451,0.009534,87388245,58709198,0,0,79564,0,1,1 +1774178217.837487,29.40,4,3992.50,60.18,1336.81,2356.38,0.00,0.000000,0.000000,21,0,63.383159,0.044161,87394972,58712023,0,0,79566,0,1,1 +1774178222.837618,34.91,4,3992.50,60.38,1328.77,2364.12,0.00,0.048046,0.000000,70,0,122.677322,0.052522,87407333,58715889,0,0,79569,0,1,1 +1774178227.837962,30.56,4,3992.50,60.05,1341.66,2351.23,0.00,106696.651867,165456.446403,8684496,2941101,120.954941,0.049566,87419468,58719645,0,0,79571,0,1,1 +1774178232.833197,30.40,4,3992.50,60.05,1341.75,2351.09,0.00,3521793555980.163086,3521793497160.138672,199,0,120.681016,0.048438,87431761,58723232,0,0,79574,0,1,1 +1774178237.836729,31.13,4,3992.50,60.03,1342.37,2350.50,0.00,3515953419844.830566,0.000000,21,0,120.042241,0.052655,87443910,58726998,0,0,79576,0,1,1 +1774178242.835783,29.82,4,3992.50,60.26,1333.73,2359.14,0.00,1.538670,0.028326,237,494,119.422111,0.044986,87455937,58730404,0,0,79579,0,1,1 +1774178247.836851,30.35,4,3992.50,60.26,1333.66,2359.20,0.00,3517685910670.892090,3517685910672.354004,70,0,119.936471,0.052059,87467979,58734371,0,0,79581,0,1,1 +1774178252.837311,30.34,4,3992.50,60.19,1336.18,2356.68,0.00,106698.279956,165452.929316,8685270,2941740,119.153608,0.052064,87480087,58738096,0,0,79584,0,1,1 +1774178257.834879,18.14,4,3992.50,60.04,1342.22,2350.77,0.00,3520149176714.799316,3520149117924.684082,237,494,119.219530,0.047984,87492057,58741743,0,0,79586,0,1,1 +1774178262.837230,1.45,4,3992.50,54.81,1546.94,2146.02,0.00,3516783812666.125977,3516783812667.635254,21,0,0.006153,0.009406,87492221,58741947,0,0,79589,0,1,1 +1774178267.836498,16.98,4,3992.50,56.11,1495.97,2196.96,0.00,106723.941975,165492.757487,8685285,2942124,16.188274,0.081425,87497645,58746044,0,0,79591,0,1,1 +1774178272.837385,13.03,4,3992.50,54.78,1548.28,2144.60,0.00,3517812568024.233398,3517812509274.405762,70,0,18.040383,0.088928,87503670,58750603,0,0,79594,0,1,1 +1774178277.836563,5.22,4,3992.50,54.38,1564.82,2129.21,0.00,0.126974,0.000000,199,0,6.042876,0.036057,87505746,58752220,0,0,79596,0,1,1 +1774178282.837686,27.25,4,3992.50,54.49,1555.87,2133.32,0.00,106684.255062,165507.979375,8685293,2943667,0.037986,110.743579,87508442,58764115,0,0,79599,0,1,1 +1774178287.834902,25.29,4,3992.50,54.48,1554.82,2133.08,0.00,3520397663419.652832,104.170902,8684527,2943829,0.028357,94.393219,87510440,58774024,0,0,79601,0,1,1 +1774178292.834880,14.29,4,3992.50,56.50,1479.24,2212.07,0.00,3518451962714.621582,3518451903767.387695,238,2,40.068293,0.032814,87515012,58775789,0,0,79604,0,1,1 +1774178297.834896,1.96,4,3992.50,55.26,1527.56,2163.74,0.00,3518426071656.844238,0.028125,237,494,0.007825,0.014192,87515203,58776048,0,0,79606,0,1,1 +1774178302.833219,1.00,4,3992.50,54.47,1558.63,2132.68,0.00,106760.154909,165730.421720,8685461,2944657,0.005757,0.012201,87515363,58776285,0,0,79609,0,1,1 +1774178307.837448,1.30,4,3992.50,54.58,1552.81,2136.79,0.00,3515463828315.245605,3515463769416.085938,21,0,0.005843,0.012640,87515530,58776532,0,0,79611,0,1,1 +1774178312.837682,0.85,4,3992.50,54.58,1552.44,2136.77,0.00,106720.881403,165667.331547,8685461,2944796,0.005314,0.011256,87515677,58776747,0,0,79614,0,1,1 +1774178317.835777,0.90,4,3992.50,54.58,1552.45,2136.77,0.00,3519778324248.647949,3519778265275.454590,237,494,0.003396,0.005857,87515761,58776863,0,0,79616,0,1,1 +1774178322.837458,0.85,4,3992.50,54.58,1552.48,2136.74,0.00,3517254103787.713379,3517254103789.223145,21,0,0.006165,0.013495,87515931,58777126,0,0,79619,0,1,1 +1774178327.837268,1.20,4,3992.50,54.75,1545.70,2143.52,0.00,0.000000,0.000000,21,0,0.005272,0.010933,87516075,58777339,0,0,79621,0,1,1 +1774178332.837818,0.85,4,3992.50,54.75,1545.48,2143.73,0.00,1.538210,0.028317,237,494,0.006572,0.014519,87516258,58777621,0,0,79624,0,1,1 +1774178337.833216,1.35,4,3992.50,54.75,1554.13,2143.69,0.00,0.000000,0.000000,237,494,0.005993,0.012849,87516424,58777870,0,0,79626,0,1,1 +1774178342.833683,0.95,4,3992.50,54.75,1554.16,2143.67,0.00,106710.274649,165659.914321,8684687,2944589,0.006224,0.012554,87516581,58778102,0,0,79629,0,1,1 +1774178347.836444,0.95,4,3992.50,54.75,1554.30,2143.53,0.00,3516495070637.635254,3516495011716.544922,21,0,0.006176,0.013439,87516752,58778361,0,0,79631,0,1,1 +1774178352.834589,0.80,4,3992.50,54.74,1554.66,2143.17,0.00,0.000000,0.000000,21,0,0.005274,0.010934,87516896,58778574,0,0,79634,0,1,1 +1774178357.837448,1.00,4,3992.50,54.75,1554.33,2143.51,0.00,0.000000,0.000000,21,0,0.006163,0.013451,87517066,58778834,0,0,79636,0,1,1 +1774178362.833235,0.80,4,3992.50,54.53,1562.84,2135.00,0.00,106815.897598,165815.284856,8685461,2945212,0.005268,0.010943,87517209,58779047,0,0,79639,0,1,1 +1774178367.837174,1.20,4,3992.50,54.73,1554.23,2142.81,0.00,3515666818581.552246,3515666759676.791504,237,494,0.006162,0.013448,87517379,58779307,0,0,79641,0,1,1 +1774178372.837857,11.31,4,3992.50,54.86,1546.94,2147.70,0.00,3517957018302.534668,3517957018304.044922,21,0,0.032388,40.064394,87519482,58783755,0,0,79644,0,1,1 +1774178377.833216,1.26,4,3992.50,54.15,1574.45,2120.27,0.00,2.008700,0.000195,238,2,0.006794,0.017600,87519694,58784094,0,0,79646,0,1,1 +1774178382.836582,1.05,4,3992.50,54.18,1573.52,2121.19,0.00,0.000000,0.000000,238,2,0.004385,0.012118,87519830,58784329,0,0,79649,0,1,1 +1774178387.837829,0.85,4,3992.50,54.22,1572.06,2122.66,0.00,0.000000,0.000000,238,2,0.003863,0.010731,87519947,58784531,0,0,79651,0,1,1 +1774178392.837468,1.15,4,3992.50,54.14,1574.92,2119.79,0.00,106731.583855,165719.751970,8685461,2945613,0.004603,0.012703,87520089,58784774,0,0,79654,0,1,1 +1774178397.833583,1.45,4,3992.50,54.38,1572.66,2129.14,0.00,3521173480015.289551,3521173420985.509277,238,2,0.004587,0.010836,87520203,58784971,0,0,79656,0,1,1 +1774178402.837602,1.05,4,3992.50,54.40,1572.12,2129.73,0.00,3515610799126.249512,3515610799128.254883,21,0,0.004582,0.012700,87520344,58785215,0,0,79659,0,1,1 +1774178407.837906,0.95,4,3992.50,54.41,1571.41,2130.45,0.00,0.174989,0.000000,199,0,0.003674,0.010188,87520457,58785411,0,0,79661,0,1,1 +1774178412.837731,1.00,4,3992.50,54.24,1578.09,2123.76,0.00,3518560268417.276367,0.000000,21,0,0.003713,0.010230,87520573,58785610,0,0,79664,0,1,1 +1774178417.837749,1.00,4,3992.50,54.24,1578.10,2123.76,0.00,106725.523379,165715.385628,8685471,2945751,0.004691,0.012785,87520722,58785858,0,0,79666,0,1,1 +1774178422.837435,1.75,4,3992.50,54.19,1580.35,2121.50,0.00,3518657944389.649414,3518657885395.831055,70,0,0.003818,0.010294,87520844,58786063,0,0,79669,0,1,1 +1774178427.833985,1.50,4,3992.50,54.13,1572.11,2119.30,0.00,0.000000,0.000000,70,0,0.004593,0.012701,87520985,58786305,0,0,79671,0,1,1 +1774178432.835541,1.00,4,3992.50,54.12,1572.36,2119.06,0.00,106688.529545,165664.461983,8684697,2945336,0.003674,0.010165,87521098,58786500,0,0,79674,0,1,1 +1774178437.833193,17.77,4,3992.50,60.49,1326.63,2368.36,0.00,3520090725325.372070,3520090666303.229492,199,0,18.044799,0.029404,87523417,58787873,0,0,79676,0,1,1 +1774178442.836960,36.39,4,3992.50,60.33,1334.12,2362.03,0.00,106645.378957,165591.457689,8685471,2945979,124.105011,0.073868,87536592,58792914,0,0,79679,0,1,1 +1774178447.833494,30.70,4,3992.50,60.40,1331.59,2364.66,0.00,3520877204557.573242,3520877145526.352051,21,0,122.188075,0.023300,87548579,58794386,0,0,79681,0,1,1 +1774178452.837717,29.81,4,3992.50,60.85,1313.63,2382.56,0.00,0.000000,0.000000,21,0,121.271545,0.028268,87560540,58796264,0,0,79684,0,1,1 +1774178457.837888,29.31,4,3992.50,60.78,1316.56,2379.64,0.00,1.538326,0.028319,237,494,119.611543,0.037697,87572359,58798842,0,0,79686,0,1,1 +1774178462.835374,28.89,4,3992.50,60.92,1311.14,2385.04,0.00,106773.948359,165799.745680,8684697,2945590,119.734420,0.034555,87583844,58801448,0,0,79689,0,1,1 +1774178467.837765,28.79,4,3992.50,61.01,1308.83,2388.49,0.00,4.107313,0.093803,8685471,2946123,119.856464,0.032598,87595134,58803790,0,0,79691,0,1,1 +1774178472.834138,28.25,4,3992.50,60.69,1321.16,2376.24,0.00,3520991860298.139648,3520991860302.226562,8684697,2945637,118.879286,0.036690,87606352,58806167,0,0,79694,0,1,1 +1774178477.834860,26.59,4,3992.50,60.91,1312.84,2384.59,0.00,3517929101238.412109,3517929042252.085938,199,0,119.736005,0.030915,87617549,58808441,0,0,79696,0,1,1 +1774178482.834258,1.35,4,3992.50,54.03,1581.91,2115.51,0.00,1.832056,0.000195,238,2,41.957973,0.019523,87621625,58809446,0,0,79699,0,1,1 +1774178487.837648,6.17,4,3992.50,54.73,1553.14,2142.87,0.00,106651.750184,165604.575666,8685486,2946355,4.032989,0.032599,87623166,58810727,0,0,79701,0,1,1 +1774178492.834128,20.86,4,3992.50,55.59,1519.39,2176.57,0.00,3520915905825.363770,3520915846791.009766,238,2,30.204414,0.135231,87633001,58818118,0,0,79704,0,1,1 +1774178497.834906,5.12,4,3992.50,55.65,1517.14,2178.78,0.00,3517889928634.261719,3517889928636.268066,21,0,6.045654,0.034293,87635174,58819726,0,0,79706,0,1,1 +1774178502.835306,1.00,4,3992.50,54.81,1549.95,2145.98,0.00,0.000000,0.000000,21,0,0.006910,0.013007,87635337,58819967,0,0,79709,0,1,1 +1774178507.836406,1.90,4,3992.50,54.42,1565.19,2130.74,0.00,0.048036,0.000000,70,0,0.006178,0.014099,87635508,58820231,0,0,79711,0,1,1 +1774178512.837973,9.74,4,3992.50,54.43,1564.76,2131.16,0.00,0.126913,0.000000,199,0,0.028069,36.458262,87637235,58824543,0,0,79714,0,1,1 +1774178517.837590,29.30,4,3992.50,54.23,1566.43,2123.20,0.00,1.831976,0.000195,238,2,0.028602,120.183087,87639254,58837129,0,0,79716,0,1,1 +1774178522.836834,13.01,4,3992.50,54.68,1550.22,2140.75,0.00,3518969529032.249512,3518969529034.208496,70,0,0.011215,48.478039,87640054,58842276,0,0,79719,0,1,1 +1774178527.835279,15.87,4,3992.50,59.50,1368.91,2329.65,0.00,106772.608782,165954.023595,8684834,2948427,31.835270,0.030399,87643667,58843656,0,0,79721,0,1,1 +1774178532.834891,1.10,4,3992.50,54.74,1555.24,2143.32,0.00,3518710246952.875977,3518710187785.328613,21,0,8.250316,0.011593,87644692,58843983,0,0,79724,0,1,1 +1774178537.837817,1.05,4,3992.50,54.38,1569.52,2129.04,0.00,0.048019,0.000000,70,0,0.005974,0.013150,87644851,58844219,0,0,79726,0,1,1 +1774178542.837783,0.90,4,3992.50,54.20,1576.35,2122.21,0.00,3518460922606.078125,0.000000,21,0,0.006167,0.013469,87645021,58844480,0,0,79729,0,1,1 +1774178547.837578,1.20,4,3992.50,54.21,1578.80,2122.60,0.00,2.006919,0.000195,238,2,0.005252,0.010925,87645163,58844692,0,0,79731,0,1,1 +1774178552.837475,1.20,4,3992.50,54.37,1568.83,2128.77,0.00,3518509027985.308594,0.028126,237,494,0.006175,0.013464,87645334,58844953,0,0,79734,0,1,1 +1774178557.837672,0.80,4,3992.50,54.21,1575.07,2122.55,0.00,3518298406380.252441,3518298406381.762695,21,0,0.005276,0.010955,87645478,58845167,0,0,79736,0,1,1 +1774178562.837083,0.75,4,3992.50,54.22,1574.87,2122.75,0.00,0.000000,0.000000,21,0,0.006205,0.013470,87645651,58845428,0,0,79739,0,1,1 +1774178567.835904,0.75,4,3992.50,54.22,1574.65,2122.97,0.00,0.048058,0.000000,70,0,0.005598,0.012169,87645807,58845662,0,0,79741,0,1,1 +1774178572.836942,0.90,4,3992.50,54.22,1574.67,2122.95,0.00,0.126927,0.000000,199,0,0.006494,0.014015,87645980,58845930,0,0,79744,0,1,1 +1774178577.837447,1.00,4,3992.50,54.36,1577.54,2128.47,0.00,3518082346249.354980,0.000000,70,0,0.006166,0.013457,87646150,58846190,0,0,79746,0,1,1 +1774178582.837494,0.70,4,3992.50,54.38,1576.82,2129.20,0.00,106738.381544,165922.485193,8684834,2949343,0.004960,0.010303,87646288,58846391,0,0,79749,0,1,1 +1774178587.837551,0.95,4,3992.50,54.47,1573.41,2132.61,0.00,4.109231,0.067870,8685608,2949884,0.005605,0.011583,87646438,58846617,0,0,79751,0,1,1 +1774178592.837287,0.70,4,3992.50,54.47,1573.42,2132.59,0.00,3518622361829.397949,3518622302645.660156,70,0,0.005561,0.013232,87646597,58846871,0,0,79754,0,1,1 +1774178597.837752,10.83,4,3992.50,54.49,1570.27,2133.38,0.00,1.490194,0.028318,237,494,0.024786,40.066871,87648118,58851393,0,0,79756,0,1,1 +1774178602.837399,1.10,4,3992.50,54.28,1578.40,2125.25,0.00,3518685849076.252930,3518685849077.587891,199,0,0.006003,0.015796,87648297,58851693,0,0,79759,0,1,1 +1774178607.837645,1.05,4,3992.50,54.48,1570.25,2133.06,0.00,1.831746,0.000195,238,2,0.003662,0.010157,87648409,58851887,0,0,79761,0,1,1 +1774178612.837779,0.85,4,3992.50,54.51,1569.04,2134.01,0.00,106734.577692,165953.919697,8684834,2949783,0.004615,0.012702,87648552,58852130,0,0,79764,0,1,1 +1774178617.837978,0.70,4,3992.50,54.64,1563.79,2139.27,0.00,3518296745324.557129,3518296686107.825684,199,0,0.003687,0.010157,87648666,58852324,0,0,79766,0,1,1 +1774178622.834898,0.95,4,3992.50,54.45,1571.19,2131.87,0.00,3520606208600.263184,0.000000,21,0,0.004580,0.012710,87648806,58852567,0,0,79769,0,1,1 +1774178627.837539,0.70,4,3992.50,54.45,1571.19,2131.86,0.00,2.005776,0.000195,238,2,0.004575,0.012660,87648946,58852807,0,0,79771,0,1,1 +1774178632.837798,0.80,4,3992.50,54.26,1578.59,2124.46,0.00,3518254635389.922852,3518254635391.754395,199,0,0.002936,0.008095,87649037,58852966,0,0,79774,0,1,1 +1774178637.834023,1.10,4,3992.50,54.42,1579.58,2130.79,0.00,3521096087833.905762,0.000000,70,0,0.003970,0.011531,87649162,58853182,0,0,79776,0,1,1 +1774178642.833320,0.90,4,3992.50,54.44,1576.80,2131.27,0.00,106758.505689,165987.844411,8685608,2950411,0.004692,0.012797,87649311,58853431,0,0,79779,0,1,1 +1774178647.837398,0.75,4,3992.50,54.44,1576.56,2131.50,0.00,3515569950105.281738,3515569950109.367188,8684834,2949921,0.003779,0.010258,87649431,58853634,0,0,79781,0,1,1 +1774178652.837511,0.75,4,3992.50,54.49,1574.80,2133.25,0.00,4.109185,0.031640,8685608,2950421,0.004590,0.012702,87649572,58853877,0,0,79784,0,1,1 +1774178657.837269,0.90,4,3992.50,54.49,1574.82,2133.25,0.00,3518607409073.283691,3518607349847.930664,237,494,0.003662,0.010158,87649684,58854071,0,0,79786,0,1,1 +1774178662.833293,16.50,4,3992.50,60.45,1345.49,2366.62,0.00,3521237423645.492188,3521237423647.003418,21,0,30.676636,0.031901,87653198,58855642,0,0,79789,0,1,1 +1774178667.837946,34.39,4,3992.50,60.87,1329.52,2383.36,0.00,106644.288311,165810.352809,8685608,2950568,122.061507,0.042294,87665873,58858509,0,0,79791,0,1,1 +1774178672.835799,29.54,4,3992.50,60.42,1347.34,2365.43,0.00,3519949248401.110352,3519949189154.525391,21,0,120.216624,0.050262,87678091,58862209,0,0,79794,0,1,1 +1774178677.837896,28.35,4,3992.50,60.60,1340.15,2372.71,0.00,106694.684522,165895.216016,8684834,2950156,120.114958,0.048124,87690375,58865787,0,0,79796,0,1,1 +1774178682.834021,28.47,4,3992.50,60.44,1346.53,2366.32,0.00,3521166022008.181641,3521165962736.882812,21,0,120.259115,0.043456,87702693,58869054,0,0,79799,0,1,1 +1774178687.837568,28.64,4,3992.50,60.36,1349.59,2363.25,0.00,0.048013,0.000000,70,0,120.080436,0.051040,87714935,58872786,0,0,79801,0,1,1 +1774178692.837430,28.49,4,3992.50,60.41,1347.79,2365.06,0.00,106742.314663,165969.433656,8684834,2950197,119.766808,0.045291,87727093,58876315,0,0,79804,0,1,1 +1774178697.837502,29.20,4,3992.50,60.75,1333.63,2378.56,0.00,3518386428231.565918,3518386369006.795898,199,0,118.562927,0.047202,87739239,58879671,0,0,79806,0,1,1 +1774178702.835451,25.42,4,3992.50,60.61,1339.18,2373.10,0.00,0.000000,0.000000,199,0,120.216607,0.055697,87751503,58883548,0,0,79809,0,1,1 +1774178707.834902,1.50,4,3992.50,55.06,1556.58,2155.70,0.00,106755.240001,165983.426817,8685621,2950839,33.456459,0.024633,87755060,58884865,0,0,79811,0,1,1 +1774178712.835679,11.11,4,3992.50,54.62,1573.85,2138.39,0.00,3517890109629.376465,3517890050415.569824,237,494,10.063951,0.056475,87758353,58887459,0,0,79814,0,1,1 +1774178717.837224,16.81,4,3992.50,54.16,1591.54,2120.66,0.00,3517349849018.154297,3517349849019.616211,70,0,22.134028,0.099755,87765652,58892765,0,0,79816,0,1,1 +1774178722.833213,7.04,4,3992.50,53.87,1603.12,2109.07,0.00,0.127055,0.000000,199,0,8.067554,0.048212,87768524,58894916,0,0,79819,0,1,1 +1774178727.833261,1.50,4,3992.50,54.29,1588.07,2125.65,0.00,3518403044485.782715,0.000000,21,0,0.006637,0.014204,87768703,58895187,0,0,79821,0,1,1 +1774178732.833940,0.70,4,3992.50,54.30,1587.77,2125.88,0.00,1.538170,0.028316,237,494,0.004577,0.009057,87768825,58895366,0,0,79824,0,1,1 +1774178737.837388,12.80,4,3992.50,54.70,1571.23,2141.51,0.00,106664.496742,165871.587534,8684848,2952117,0.025573,51.048942,87770481,58901049,0,0,79826,0,1,1 +1774178742.837643,29.23,4,3992.50,54.85,1560.44,2147.54,0.00,3518257120071.483398,3518257060828.064453,70,0,0.035106,119.575686,87772920,58913774,0,0,79829,0,1,1 +1774178747.836744,9.74,4,3992.50,54.40,1577.67,2129.78,0.00,0.000000,0.000000,70,0,0.019428,34.468479,87774111,58917596,0,0,79831,0,1,1 +1774178752.833241,1.40,4,3992.50,54.44,1576.03,2131.42,0.00,3520903725174.267090,0.000000,21,0,0.006507,0.009094,87774255,58917783,0,0,79834,0,1,1 +1774178757.833215,14.65,4,3992.50,55.12,1558.00,2158.05,0.00,106757.623064,166172.924337,8685021,2953515,40.069810,0.037546,87778751,58919530,0,0,79836,0,1,1 +1774178762.834912,0.70,4,3992.50,54.66,1576.00,2139.90,0.00,3517243548741.682617,3517243489346.850586,21,0,0.005287,0.010930,87778896,58919743,0,0,79839,0,1,1 +1774178767.834900,0.75,4,3992.50,54.57,1579.34,2136.56,0.00,0.048047,0.000000,70,0,0.006167,0.013459,87779066,58920003,0,0,79841,0,1,1 +1774178772.833236,0.70,4,3992.50,54.56,1579.93,2135.96,0.00,106796.662629,166227.503820,8685795,2954111,0.005049,0.010948,87779203,58920208,0,0,79844,0,1,1 +1774178777.833274,0.75,4,3992.50,54.51,1581.72,2134.18,0.00,3518410453681.303711,3518410394270.690918,70,0,0.005505,0.011558,87779354,58920432,0,0,79846,0,1,1 +1774178782.836389,0.70,4,3992.50,54.34,1588.39,2127.51,0.00,1.957569,0.000195,238,2,0.006234,0.013487,87779530,58920695,0,0,79849,0,1,1 +1774178787.833530,1.20,4,3992.50,54.78,1567.09,2144.64,0.00,3520450722222.734863,3520450722224.694336,70,0,0.005254,0.010943,87779672,58920908,0,0,79851,0,1,1 +1774178792.833319,0.75,4,3992.50,54.76,1567.70,2144.04,0.00,106765.623519,166179.408296,8685795,2954286,0.006892,0.013797,87779861,58921182,0,0,79854,0,1,1 +1774178797.837162,0.70,4,3992.50,54.76,1567.71,2144.02,0.00,3515734504274.116699,3515734444907.012207,237,494,0.005247,0.010916,87780003,58921394,0,0,79856,0,1,1 +1774178802.837621,0.90,4,3992.50,54.76,1567.73,2143.99,0.00,106749.842518,166157.219902,8685795,2954394,0.006329,0.013570,87780185,58921662,0,0,79859,0,1,1 +1774178807.837440,0.60,4,3992.50,54.77,1567.53,2144.20,0.00,3518563967466.449707,3518563908050.986328,238,2,0.005247,0.010920,87780327,58921874,0,0,79861,0,1,1 +1774178812.833243,0.80,4,3992.50,54.77,1567.54,2144.18,0.00,3521393655492.681641,3521393655494.641602,70,0,0.005578,0.013242,87780487,58922128,0,0,79864,0,1,1 +1774178817.834917,12.12,4,3992.50,54.97,1557.61,2152.02,0.00,106725.374466,166149.030302,8685795,2954708,0.031743,40.060773,87782463,58926714,0,0,79866,0,1,1 +1774178822.838004,0.80,4,3992.50,54.87,1561.27,2148.39,0.00,3516266378675.034668,3516266319268.022949,199,0,0.004575,0.012694,87782603,58926957,0,0,79869,0,1,1 +1774178827.834789,0.85,4,3992.50,54.70,1568.06,2141.60,0.00,106825.568888,166313.667770,8685021,2954311,0.004581,0.012700,87782743,58927199,0,0,79871,0,1,1 +1774178832.837765,1.50,4,3992.50,54.81,1563.77,2145.89,0.00,4.106833,0.033964,8685795,2954811,0.002745,0.007616,87782827,58927345,0,0,79874,0,1,1 +1774178837.834892,0.85,4,3992.50,54.82,1563.31,2146.35,0.00,3520460171876.726562,3520460112396.897461,70,0,0.003685,0.010829,87782941,58927545,0,0,79876,0,1,1 +1774178842.834890,0.70,4,3992.50,54.82,1563.32,2146.34,0.00,3518438486076.322266,0.000000,21,0,0.004578,0.012702,87783081,58927788,0,0,79879,0,1,1 +1774178847.834891,1.20,4,3992.50,54.83,1562.90,2146.78,0.00,0.000000,0.000000,21,0,0.003662,0.010158,87783193,58927982,0,0,79881,0,1,1 +1774178852.833228,0.80,4,3992.50,54.67,1569.33,2140.34,0.00,0.048063,0.000000,70,0,0.004630,0.012769,87783337,58928229,0,0,79884,0,1,1 +1774178857.835719,0.80,4,3992.50,54.47,1576.98,2132.69,0.00,3516685306687.278809,0.000000,21,0,0.003711,0.010215,87783453,58928427,0,0,79886,0,1,1 +1774178862.837294,0.80,4,3992.50,54.47,1576.98,2132.68,0.00,2.006204,0.000195,238,2,0.004803,0.012894,87783609,58928685,0,0,79889,0,1,1 +1774178867.837872,0.75,4,3992.50,54.40,1579.67,2129.99,0.00,3518030461235.500488,3518030461237.332520,199,0,0.003662,0.010157,87783721,58928879,0,0,79891,0,1,1 +1774178872.833259,0.90,4,3992.50,54.40,1579.97,2129.70,0.00,1.833527,0.000195,238,2,0.005177,0.013824,87783873,58929144,0,0,79894,0,1,1 +1774178877.833289,1.60,4,3992.50,54.34,1589.98,2127.43,0.00,3518416151160.576660,3518416151162.535645,70,0,0.005999,0.013395,87784039,58929402,0,0,79896,0,1,1 +1774178882.836909,41.53,4,3992.50,60.75,1341.22,2378.52,0.00,106679.777461,166092.780184,8685021,2954594,107.077902,0.045112,87795256,58932144,0,0,79899,0,1,1 +1774178887.834871,29.09,4,3992.50,61.16,1325.27,2394.43,0.00,4.110953,0.079134,8685795,2955123,122.218345,0.031266,87807739,58934378,0,0,79901,0,1,1 +1774178892.837585,28.68,4,3992.50,60.78,1339.80,2379.86,0.00,3516527804757.049805,3516527745337.373535,21,0,121.701183,0.035745,87820141,58936914,0,0,79904,0,1,1 +1774178897.833488,28.37,4,3992.50,60.64,1345.65,2374.11,0.00,1.539641,0.028344,237,494,120.264802,0.035177,87832419,58939502,0,0,79906,0,1,1 +1774178902.837852,28.92,4,3992.50,60.66,1344.96,2374.79,0.00,3515368504505.486328,3515368504506.995117,21,0,119.667369,0.043060,87844853,58942332,0,0,79909,0,1,1 +1774178907.837376,28.89,4,3992.50,60.65,1345.16,2374.71,0.00,2.007027,0.000195,238,2,118.974843,0.029013,87857034,58944446,0,0,79911,0,1,1 +1774178912.833966,29.36,4,3992.50,60.44,1338.58,2366.19,0.00,3520838763848.007812,3520838763849.841309,199,0,120.245601,0.044079,87869180,58947687,0,0,79914,0,1,1 +1774178917.835522,27.90,4,3992.50,60.31,1343.75,2361.11,0.00,106727.777842,166161.688204,8685795,2955247,120.130187,0.024679,87881581,58949323,0,0,79916,0,1,1 +1774178922.837531,7.38,4,3992.50,55.71,1523.60,2181.26,0.00,3517023460570.036133,3517023401139.684570,238,2,75.075374,0.015420,87889346,58950224,0,0,79919,0,1,1 +1774178927.837666,2.01,4,3992.50,54.83,1558.22,2146.63,0.00,3518342306524.692383,0.028124,237,494,0.009832,0.010551,87889555,58950450,0,0,79921,0,1,1 +1774178932.837191,20.12,4,3992.50,54.48,1571.64,2133.14,0.00,0.000000,0.000000,237,494,26.179605,0.127929,87898406,58957025,0,0,79924,0,1,1 +1774178937.834005,11.10,4,3992.50,54.12,1586.18,2118.88,0.00,106823.667276,166320.130600,8685032,2955725,14.088854,0.061334,87902745,58960240,0,0,79926,0,1,1 +1774178942.836416,1.20,4,3992.50,54.12,1585.75,2118.98,0.00,3516741311178.939453,3516741251750.383301,199,0,0.006400,0.013529,87902916,58960496,0,0,79929,0,1,1 +1774178947.834902,5.42,4,3992.50,54.52,1570.03,2134.58,0.00,3519503157284.769043,0.000000,21,0,0.020759,20.251139,87904112,58963073,0,0,79931,0,1,1 +1774178952.834886,29.62,4,3992.50,54.66,1556.40,2139.90,0.00,106761.574367,166321.456900,8685806,2957550,0.053655,118.170597,87908069,58975225,0,0,79934,0,1,1 +1774178957.834911,17.91,4,3992.50,54.59,1561.09,2137.50,0.00,3518419311586.601562,3518419252027.158203,70,0,0.026952,66.703913,87909831,58982284,0,0,79936,0,1,1 +1774178962.834900,1.20,4,3992.50,54.23,1575.30,2123.30,0.00,1.490335,0.028320,237,494,0.006835,0.009720,87909977,58982476,0,0,79939,0,1,1 +1774178967.834920,11.24,4,3992.50,55.07,1545.84,2156.01,0.00,3518423197816.978516,3518423197818.313477,199,0,40.068446,0.032482,87914584,58984028,0,0,79941,0,1,1 +1774178972.835044,0.75,4,3992.50,54.37,1573.01,2128.87,0.00,1.831790,0.000195,238,2,0.006571,0.014249,87914762,58984302,0,0,79944,0,1,1 +1774178977.837590,0.70,4,3992.50,54.21,1579.39,2122.49,0.00,3516646701884.502930,0.028111,237,494,0.005249,0.010919,87914904,58984514,0,0,79946,0,1,1 +1774178982.833191,0.80,4,3992.50,54.22,1579.18,2122.70,0.00,3521535041278.633301,3521535041279.969238,199,0,0.006160,0.013480,87915073,58984775,0,0,79949,0,1,1 +1774178987.833875,0.80,4,3992.50,54.05,1585.55,2116.32,0.00,3517956371088.268066,0.000000,21,0,0.004632,0.010685,87915203,58984980,0,0,79951,0,1,1 +1774178992.836453,0.65,4,3992.50,54.08,1584.62,2117.26,0.00,2.005802,0.000195,238,2,0.004204,0.008288,87915318,58985146,0,0,79954,0,1,1 +1774178997.837443,1.15,4,3992.50,54.07,1580.43,2116.84,0.00,3517741019088.039062,3517741019090.045898,21,0,0.006191,0.013456,87915490,58985406,0,0,79956,0,1,1 +1774179002.834895,1.10,4,3992.50,54.29,1571.78,2125.49,0.00,0.048071,0.000000,70,0,0.006238,0.011660,87915638,58985626,0,0,79959,0,1,1 +1774179007.835938,0.90,4,3992.50,54.29,1571.57,2125.71,0.00,3517703629782.360352,0.000000,21,0,0.006222,0.013481,87915812,58985888,0,0,79961,0,1,1 +1774179012.837423,1.05,4,3992.50,54.29,1571.58,2125.69,0.00,0.000000,0.000000,21,0,0.006866,0.014424,87915987,58986154,0,0,79964,0,1,1 +1774179017.833265,0.85,4,3992.50,54.30,1571.38,2125.89,0.00,0.000000,0.000000,21,0,0.005287,0.010948,87916131,58986367,0,0,79966,0,1,1 +1774179022.833208,1.15,4,3992.50,54.30,1571.40,2125.88,0.00,0.175002,0.000000,199,0,0.006179,0.013469,87916302,58986628,0,0,79969,0,1,1 +1774179027.837346,1.10,4,3992.50,54.32,1570.31,2126.57,0.00,3515527819230.014160,0.000000,21,0,0.005247,0.010915,87916444,58986840,0,0,79971,0,1,1 +1774179032.834902,1.20,4,3992.50,54.34,1567.15,2127.38,0.00,1.539131,0.028334,237,494,0.006157,0.013475,87916613,58987101,0,0,79974,0,1,1 +1774179037.834911,11.29,4,3992.50,53.91,1581.33,2110.77,0.00,106776.991992,166446.790512,8685934,2959260,0.023878,40.071122,87918091,58991673,0,0,79976,0,1,1 +1774179042.834919,1.15,4,3992.50,53.91,1581.35,2110.74,0.00,3518431550723.336914,3518431491054.852051,199,0,0.004078,0.010097,87918209,58991865,0,0,79979,0,1,1 +1774179047.834892,1.10,4,3992.50,53.81,1585.14,2106.94,0.00,3518456643430.140625,0.000000,21,0,0.004603,0.012692,87918351,58992107,0,0,79981,0,1,1 +1774179052.836309,0.95,4,3992.50,53.81,1585.40,2106.69,0.00,0.174950,0.000000,199,0,0.003686,0.010165,87918465,58992302,0,0,79984,0,1,1 +1774179057.837413,1.46,4,3992.50,53.91,1577.54,2110.79,0.00,0.000000,0.000000,199,0,0.006788,0.013698,87918652,58992570,0,0,79986,0,1,1 +1774179062.837316,1.00,4,3992.50,53.92,1576.94,2111.02,0.00,3518505349665.076660,0.000000,70,0,0.004361,0.012044,87918786,58992799,0,0,79989,0,1,1 +1774179067.837667,1.00,4,3992.50,53.92,1576.95,2111.02,0.00,3518189625435.555176,0.000000,21,0,0.003903,0.010816,87918906,58993007,0,0,79991,0,1,1 +1774179072.833940,1.10,4,3992.50,53.70,1585.68,2102.28,0.00,0.048083,0.000000,70,0,0.004581,0.012712,87919046,58993250,0,0,79994,0,1,1 +1774179077.833217,0.90,4,3992.50,53.63,1588.24,2099.72,0.00,0.126971,0.000000,199,0,0.003713,0.010190,87919162,58993446,0,0,79996,0,1,1 +1774179082.833177,1.10,4,3992.50,53.64,1588.01,2099.96,0.00,106779.420177,166462.734682,8685935,2959539,0.004704,0.012796,87919312,58993695,0,0,79999,0,1,1 +1774179087.835068,1.20,4,3992.50,53.93,1575.97,2111.49,0.00,3517107307747.720215,3517107248087.610840,21,0,0.003812,0.010275,87919434,58993899,0,0,80001,0,1,1 +1774179092.836152,2.00,4,3992.50,53.94,1574.95,2111.93,0.00,106751.490463,166425.354410,8685161,2959068,0.004589,0.012699,87919575,58994142,0,0,80004,0,1,1 +1774179097.834564,1.00,4,3992.50,53.94,1574.97,2111.93,0.00,4.110583,0.036340,8685935,2959569,0.003676,0.010161,87919688,58994336,0,0,80006,0,1,1 +1774179102.837128,1.05,4,3992.50,53.75,1582.60,2104.29,0.00,3516634127173.045898,3516634127177.143555,8685161,2959093,0.004676,0.013464,87919836,58994591,0,0,80009,0,1,1 +1774179107.836887,37.32,4,3992.50,59.76,1352.06,2339.71,0.00,4.109475,0.041408,8685935,2959627,92.141009,0.044901,87929620,58997293,0,0,80011,0,1,1 +1774179112.834898,36.73,4,3992.50,60.77,1279.96,2379.27,0.00,3519836872239.912109,3519836812533.229980,199,0,121.216137,0.029006,87942053,58999420,0,0,80014,0,1,1 +1774179117.833193,38.26,4,3992.50,60.16,1305.46,2355.53,0.00,106811.484542,167073.410114,8685222,2962845,121.206811,0.023458,87954435,59001256,0,0,80016,0,1,1 +1774179122.834896,22.56,4,3992.50,60.48,1293.20,2367.82,0.00,4.107878,31.522463,8685996,2963502,87.092786,0.020616,87962828,59002850,0,0,80019,0,1,1 +1774179127.835459,29.19,4,3992.50,61.09,1270.38,2391.68,0.00,3518040821542.427246,3518040761280.596191,21,0,117.545241,0.026948,87973511,59004975,0,0,80021,0,1,1 +1774179132.834400,1.67,4,3992.50,60.63,1286.27,2373.81,0.00,0.000000,0.000000,21,0,6.978815,0.002233,87974253,59005153,0,0,80024,0,1,1 +1774179137.835717,40.05,4,3992.50,60.92,1276.24,2385.32,0.00,106751.221348,167375.609329,8685997,2965809,120.054129,0.027211,87985015,59007272,0,0,80026,0,1,1 +1774179142.834893,22.54,4,3992.50,60.80,1281.37,2380.27,0.00,0.000000,19.129718,8685997,2965901,87.992311,0.020250,87993004,59008871,0,0,80029,0,1,1 +1774179147.833843,11.05,4,3992.50,60.94,1276.78,2386.00,0.00,3519175732748.601074,3519175672076.337402,70,0,38.026241,0.009190,87996572,59009598,0,0,80031,0,1,1 +1774179152.836077,29.89,4,3992.50,60.91,1278.03,2384.75,0.00,3516865570895.636719,0.000000,21,0,124.404501,0.026789,88007736,59011725,0,0,80034,0,1,1 +1774179157.837914,5.34,4,3992.50,60.73,1285.00,2377.81,0.00,2.006099,0.000195,238,2,17.397769,0.005053,88009456,59012127,0,0,80036,0,1,1 +1774179162.837138,11.02,4,3992.50,55.22,1516.91,2162.16,0.00,106790.426162,167566.977635,8685272,2966197,91.306681,0.024156,88017695,59013804,0,0,80039,0,1,1 +1774179167.834143,1.76,4,3992.50,54.60,1542.54,2137.89,0.00,3520545837246.261230,3520545776443.223145,237,500,0.007766,0.012729,88017872,59014045,0,0,80041,0,1,1 +1774179172.838433,19.87,4,3992.50,54.88,1531.94,2148.49,0.00,0.000000,0.000000,237,500,22.129578,0.111576,88025244,59019729,0,0,80044,0,1,1 +1774179177.838052,14.26,4,3992.50,55.19,1518.23,2160.92,0.00,3518705608004.335938,3518705608005.798340,70,0,18.106746,0.077600,88030859,59023930,0,0,80046,0,1,1 +1774179182.837288,1.96,4,3992.50,54.68,1538.10,2141.02,0.00,106792.225606,167567.790618,8685297,2967591,0.010884,0.014626,88031105,59024225,0,0,80049,0,1,1 +1774179187.833202,1.41,4,3992.50,54.69,1538.09,2141.05,0.00,3521315102519.611816,3521315041703.619141,70,0,0.005573,0.013240,88031265,59024479,0,0,80051,0,1,1 +1774179192.836446,21.31,4,3992.50,54.76,1533.50,2143.88,0.00,106706.689413,167512.724964,8685298,2968088,0.040898,85.280946,88034017,59033786,0,0,80054,0,1,1 +1774179197.837438,29.00,4,3992.50,54.93,1519.85,2150.45,0.00,3517739005394.511230,3517738944561.143066,21,0,0.026583,119.745159,88035988,59046257,0,0,80056,0,1,1 +1774179202.833201,2.81,4,3992.50,53.88,1560.77,2109.59,0.00,0.048088,0.000000,70,0,0.009133,0.015014,88036209,59046562,0,0,80059,0,1,1 +1774179207.837814,21.08,4,3992.50,54.83,1512.44,2146.87,0.00,0.000000,0.000000,70,0,40.024098,0.023395,88040569,59048112,0,0,80061,0,1,1 +1774179212.837894,2.67,4,3992.50,54.61,1522.18,2138.10,0.00,106792.023803,168052.528591,8685477,2971363,0.000766,0.000258,88040588,59048129,0,0,80064,0,1,1 +1774179217.833312,6.22,4,3992.50,54.53,1522.91,2134.82,0.00,3521664367290.811035,3521664305971.676758,237,503,0.000435,0.001051,88040599,59048147,0,0,80066,0,1,1 +1774179222.837255,0.65,4,3992.50,54.54,1522.43,2135.27,0.00,0.000000,0.000000,237,503,0.000229,0.000663,88040606,59048162,0,0,80069,0,1,1 +1774179227.837788,4.83,4,3992.50,54.82,1513.89,2146.39,0.00,3518061876007.071777,3518061876008.581543,21,0,0.001931,0.001885,88040647,59048203,0,0,80071,0,1,1 +1774179232.834865,5.91,4,3992.50,54.68,1518.21,2141.00,0.00,0.000000,0.000000,21,0,0.001189,0.001478,88040674,59048237,0,0,80074,0,1,1 +1774179237.837270,11.35,4,3992.50,53.94,1547.17,2111.89,0.00,0.174916,0.000000,199,0,0.000947,0.000796,88040696,59048260,0,0,80076,0,1,1 +1774179242.837234,0.80,4,3992.50,53.96,1546.55,2112.52,0.00,0.000000,0.000000,199,0,0.000000,0.000030,88040696,59048263,0,0,80079,0,1,1 +1774179247.836767,0.65,4,3992.50,53.96,1546.55,2112.52,0.00,1.832007,0.000195,238,2,0.000124,0.000121,88040704,59048273,0,0,80081,0,1,1 +1774179252.838096,1.35,4,3992.50,54.17,1557.46,2120.85,0.00,3517502479028.599121,3517502479030.430664,199,0,0.001990,0.002395,88040749,59048326,0,0,80084,0,1,1 +1774179257.833220,1.51,4,3992.50,54.41,1562.85,2130.15,0.00,1.833624,0.000196,238,2,0.006188,0.013462,88040912,59048566,0,0,80086,0,1,1 +1774179262.835793,0.95,4,3992.50,54.23,1569.80,2123.20,0.00,3516628021922.615723,3516628021924.621582,21,0,0.004334,0.008395,88041026,59048731,0,0,80089,0,1,1 +1774179267.835832,1.20,4,3992.50,54.62,1546.74,2138.61,0.00,106797.043422,169252.247674,8686257,2979655,0.006179,0.014090,88041197,59048994,0,0,80091,0,1,1 +1774179272.837778,1.10,4,3992.50,54.49,1551.73,2133.51,0.00,0.000000,0.067747,8686257,2979732,0.005707,0.012159,88041353,59049228,0,0,80094,0,1,1 +1774179277.834906,0.95,4,3992.50,54.49,1551.80,2133.44,0.00,3520459656148.474609,3520459593656.632812,199,0,0.005756,0.012249,88041512,59049468,0,0,80096,0,1,1 +1774179282.837284,1.05,4,3992.50,54.30,1559.23,2126.01,0.00,1.362731,0.028307,237,506,0.006172,0.013470,88041683,59049730,0,0,80099,0,1,1 +1774179287.833229,0.85,4,3992.50,54.30,1559.38,2125.87,0.00,3521293364438.280762,3521293364439.744141,70,0,0.005268,0.010933,88041826,59049942,0,0,80101,0,1,1 +1774179292.837493,0.95,4,3992.50,53.91,1574.44,2110.80,0.00,1.489062,0.028296,237,506,0.006162,0.013457,88041996,59050203,0,0,80104,0,1,1 +1774179297.834414,1.30,4,3992.50,54.16,1564.88,2120.32,0.00,3520605217994.461426,3520605217995.924316,70,0,0.005255,0.010931,88042138,59050415,0,0,80106,0,1,1 +1774179302.837454,8.36,4,3992.50,55.71,1487.37,2181.05,0.00,106728.864689,169355.884554,8685489,2980858,0.004037,0.006967,88042227,59050543,0,0,80109,0,1,1 +1774179307.834913,8.75,4,3992.50,54.13,1547.29,2119.43,0.00,3520226299348.933594,3520226236651.845215,199,0,0.001482,0.002305,88042263,59050590,0,0,80111,0,1,1 +1774179312.836406,0.70,4,3992.50,54.33,1539.54,2127.22,0.00,1.362972,0.028312,237,510,0.000794,0.000413,88042278,59050602,0,0,80114,0,1,1 +1774179317.837482,1.15,4,3992.50,54.29,1539.88,2125.61,0.00,3517680374320.837891,3517680374322.348145,21,0,0.000008,0.000028,88042279,59050605,0,0,80116,0,1,1 +1774179322.835757,10.53,4,3992.50,54.57,1529.12,2136.52,0.00,0.000000,0.000000,21,0,0.002389,0.003911,88042325,59050670,0,0,80119,0,1,1 +1774179327.837113,2.91,4,3992.50,54.53,1530.75,2134.86,0.00,106768.972874,170313.122249,8686268,2987064,0.000794,0.000403,88042340,59050681,0,0,80121,0,1,1 +1774179332.837533,1.05,4,3992.50,54.55,1533.10,2135.77,0.00,3518141598598.224121,3518141535040.177246,238,2,0.000000,0.000030,88042340,59050684,0,0,80124,0,1,1 +1774179337.837999,0.60,4,3992.50,54.35,1541.08,2127.79,0.00,3518109539195.105957,3518109539196.937988,199,0,0.000000,0.000020,88042340,59050686,0,0,80126,0,1,1 +1774179342.837798,1.00,4,3992.50,54.16,1558.69,2120.45,0.00,106797.926984,170387.817718,8685494,2986804,0.003541,0.008017,88042439,59050842,0,0,80129,0,1,1 +1774179347.835396,8.69,4,3992.50,54.27,1554.43,2124.63,0.00,3520128146307.958008,3520128082688.227051,238,2,0.026623,32.879312,88044038,59054655,0,0,80131,0,1,1 +1774179352.837280,3.71,4,3992.50,54.24,1555.49,2123.64,0.00,0.000000,0.000000,238,2,0.006769,7.219783,88044338,59055648,0,0,80134,0,1,1 +1774179357.837223,1.51,4,3992.50,54.44,1550.15,2131.32,0.00,106793.029863,170416.756817,8685494,2987307,0.005811,0.011156,88044492,59055867,0,0,80136,0,1,1 +1774179362.833193,1.05,4,3992.50,54.20,1559.36,2122.12,0.00,3521274987041.876953,3521274923369.522949,70,0,0.004594,0.012712,88044633,59056110,0,0,80139,0,1,1 +1774179367.837690,0.95,4,3992.50,54.02,1566.53,2114.95,0.00,0.126839,0.000000,199,0,0.004320,0.012035,88044764,59056339,0,0,80141,0,1,1 +1774179372.837829,0.90,4,3992.50,54.00,1567.09,2114.39,0.00,3518339188656.896973,0.000000,21,0,0.003916,0.010814,88044885,59056547,0,0,80144,0,1,1 +1774179377.834656,0.75,4,3992.50,54.00,1567.10,2114.38,0.00,0.000000,0.000000,21,0,0.004601,0.012708,88045027,59056790,0,0,80146,0,1,1 +1774179382.837638,0.80,4,3992.50,54.01,1566.89,2114.59,0.00,106730.148808,170319.745029,8685494,2987474,0.003685,0.010162,88045141,59056985,0,0,80149,0,1,1 +1774179387.838072,1.15,4,3992.50,54.33,1554.38,2127.10,0.00,3518131455272.243652,3518131391650.069336,199,0,0.004628,0.012722,88045285,59057229,0,0,80151,0,1,1 +1774179392.837769,0.80,4,3992.50,54.29,1555.92,2125.56,0.00,3518650829693.594727,0.000000,70,0,0.003776,0.010262,88045406,59057430,0,0,80154,0,1,1 +1774179397.837129,6.23,4,3992.50,53.95,1545.48,2112.30,0.00,3518887315389.882812,0.000000,21,0,0.001987,0.005215,88045472,59057538,0,0,80156,0,1,1 +1774179402.837792,3.87,4,3992.50,54.29,1538.15,2125.52,0.00,1.538175,0.028317,237,521,0.000342,0.000788,88045488,59057561,0,0,80159,0,1,1 +1774179407.837643,5.68,4,3992.50,54.18,1540.62,2121.12,0.00,3518542219070.656738,3518542219071.991699,199,0,0.000903,0.002554,88045515,59057611,0,0,80161,0,1,1 +1774179412.835407,5.17,4,3992.50,54.28,1539.00,2125.01,0.00,0.000000,0.000000,199,0,0.000237,0.000659,88045523,59057626,0,0,80164,0,1,1 +1774179417.836394,6.43,4,3992.50,54.85,1514.78,2147.53,0.00,1.831475,0.000195,238,2,0.001599,0.001042,88045552,59057655,0,0,80166,0,1,1 +1774179422.834903,6.27,4,3992.50,54.69,1519.61,2141.40,0.00,0.000000,0.000000,238,2,0.000000,0.000030,88045552,59057658,0,0,80169,0,1,1 +1774179427.833209,0.55,4,3992.50,54.73,1518.38,2142.62,0.00,3519629714334.632812,3519629714336.640625,21,0,0.000229,0.000654,88045559,59057672,0,0,80171,0,1,1 +1774179432.833538,14.67,4,3992.50,60.35,1319.73,2362.80,0.00,106790.886296,171639.604102,8686268,2994861,27.843130,0.022348,88048711,59058962,0,0,80174,0,1,1 +1774179437.838365,34.67,4,3992.50,60.13,1328.34,2354.21,0.00,3515043490694.569336,3515043425902.622559,237,526,121.654039,0.038675,88061238,59061434,0,0,80176,0,1,1 +1774179442.834231,29.06,4,3992.50,60.18,1326.53,2356.04,0.00,106884.754247,171793.009894,8686268,2994925,120.265741,0.043322,88073532,59064536,0,0,80179,0,1,1 +1774179447.835526,29.11,4,3992.50,59.88,1338.25,2344.36,0.00,3517526030482.192383,3517525965645.856934,70,0,119.931242,0.043391,88085642,59067769,0,0,80181,0,1,1 +1774179452.838100,29.66,4,3992.50,60.35,1327.41,2362.86,0.00,3516626814935.880371,0.000000,21,0,119.303000,0.041645,88097765,59070807,0,0,80184,0,1,1 +1774179457.835774,29.20,4,3992.50,60.70,1313.78,2376.54,0.00,2.007770,0.000195,238,2,119.618950,0.042874,88109838,59073933,0,0,80186,0,1,1 +1774179462.837376,29.20,4,3992.50,60.38,1326.14,2364.16,0.00,3517310388552.412598,3517310388554.418945,21,0,120.124905,0.034525,88121991,59076495,0,0,80189,0,1,1 +1774179467.837549,28.87,4,3992.50,60.28,1330.43,2359.91,0.00,106790.115862,171645.241605,8685494,2994500,119.161655,0.037242,88134241,59079081,0,0,80191,0,1,1 +1774179472.834374,26.82,4,3992.50,60.27,1330.75,2359.63,0.00,3520673028719.832031,3520672963821.245605,21,0,119.242688,0.042182,88146482,59081971,0,0,80194,0,1,1 +1774179477.837492,4.36,4,3992.50,54.34,1562.81,2127.54,0.00,106731.510490,171544.444194,8686285,2995139,38.248147,0.031130,88150788,59083318,0,0,80196,0,1,1 +1774179482.837787,22.32,4,3992.50,55.80,1505.38,2184.88,0.00,3518228936922.859863,3518228872073.172363,199,0,32.192928,0.142648,88161358,59091148,0,0,80199,0,1,1 +1774179487.834056,5.88,4,3992.50,55.53,1516.20,2174.06,0.00,106877.655352,171780.099504,8686285,2996162,8.061307,0.039749,88164081,59093213,0,0,80201,0,1,1 +1774179492.837139,7.92,4,3992.50,55.15,1513.40,2159.09,0.00,3516268728166.342285,3516268663350.970215,237,526,0.004552,0.005325,88164169,59093311,0,0,80204,0,1,1 +1774179497.836448,7.69,4,3992.50,54.86,1524.77,2147.86,0.00,0.468522,3518923456541.535645,238,2,0.001428,0.001816,88164201,59093348,0,0,80206,0,1,1 +1774179502.834898,0.60,4,3992.50,54.77,1527.40,2144.52,0.00,106825.083115,172249.969823,8685511,2999507,0.000008,0.000038,88164202,59093352,0,0,80209,0,1,1 +1774179507.834922,2.56,4,3992.50,54.50,1540.07,2133.96,0.00,3518419823833.171875,3518419758430.905762,21,0,0.001077,0.001524,88164228,59093385,0,0,80211,0,1,1 +1774179512.835531,3.81,4,3992.50,54.38,1542.17,2129.09,0.00,2.006591,0.000195,238,2,0.001873,0.003093,88164273,59093447,0,0,80214,0,1,1 +1774179517.836081,5.27,4,3992.50,54.90,1524.66,2149.37,0.00,3518050409794.326172,0.028122,237,529,0.000489,0.001956,88164289,59093479,0,0,80216,0,1,1 +1774179522.837415,8.83,4,3992.50,53.86,1562.71,2108.56,0.00,3517498767646.943848,3517498767648.453613,21,0,0.001550,0.002585,88164337,59093536,0,0,80219,0,1,1 +1774179527.834903,0.65,4,3992.50,53.91,1560.54,2110.74,0.00,1.539152,0.028335,237,529,0.000795,0.000403,88164352,59093547,0,0,80221,0,1,1 +1774179532.837530,2.25,4,3992.50,55.07,1533.68,2155.97,0.00,106736.323792,172893.846039,8685511,3005132,0.003872,0.007201,88164444,59093691,0,0,80224,0,1,1 +1774179537.837134,1.05,4,3992.50,54.95,1538.33,2151.30,0.00,0.000000,0.067779,8685511,3005195,0.006219,0.014137,88164618,59093958,0,0,80226,0,1,1 +1774179542.834540,0.80,4,3992.50,54.50,1555.73,2133.92,0.00,3520263399956.034180,3520263333730.828125,21,0,0.005241,0.010940,88164759,59094171,0,0,80229,0,1,1 +1774179547.834860,0.80,4,3992.50,54.48,1556.49,2133.15,0.00,0.048044,0.000000,70,0,0.006204,0.013458,88164932,59094431,0,0,80231,0,1,1 +1774179552.837792,0.80,4,3992.50,54.48,1556.52,2133.14,0.00,106735.411356,172883.528455,8686285,3005845,0.005236,0.010928,88165073,59094644,0,0,80234,0,1,1 +1774179557.837602,0.70,4,3992.50,54.49,1556.28,2133.36,0.00,3518571129214.839844,3518571129218.932129,8685511,3005319,0.006192,0.013459,88165245,59094904,0,0,80236,0,1,1 +1774179562.835915,0.65,4,3992.50,54.49,1556.29,2133.36,0.00,3519624650196.905273,3519624583982.092773,237,532,0.005266,0.010938,88165388,59095117,0,0,80239,0,1,1 +1774179567.837282,1.10,4,3992.50,54.55,1550.58,2135.63,0.00,106763.236447,172937.738301,8685511,3005430,0.006204,0.013488,88165561,59095380,0,0,80241,0,1,1 +1774179572.833217,0.75,4,3992.50,54.53,1551.07,2135.16,0.00,3521299794167.937012,3521299727922.954590,70,0,0.005293,0.010930,88165706,59095592,0,0,80244,0,1,1 +1774179577.834236,0.75,4,3992.50,54.55,1550.60,2135.63,0.00,3517720136407.770020,0.000000,21,0,0.006284,0.013511,88165884,59095856,0,0,80246,0,1,1 +1774179582.833225,0.80,4,3992.50,54.55,1550.38,2135.85,0.00,0.000000,0.000000,21,0,0.006206,0.013459,88166057,59096116,0,0,80249,0,1,1 +1774179587.833253,4.89,4,3992.50,54.45,1536.12,2131.70,0.00,106793.345499,173117.294088,8685511,3006232,0.001710,0.003594,88166100,59096180,0,0,80251,0,1,1 +1774179592.834923,3.82,4,3992.50,56.59,1451.56,2215.77,0.00,3517262423667.894043,3517262357365.661133,70,0,0.001710,0.002934,88166143,59096239,0,0,80254,0,1,1 +1774179597.834903,4.82,4,3992.50,54.87,1518.98,2148.37,0.00,0.126954,0.000000,199,0,0.002500,0.003341,88166201,59096309,0,0,80256,0,1,1 +1774179602.835680,5.82,4,3992.50,54.44,1528.29,2131.45,0.00,3517890442168.207520,0.000000,21,0,0.003479,0.004487,88166265,59096391,0,0,80259,0,1,1 +1774179607.835194,3.01,4,3992.50,55.57,1484.27,2175.75,0.00,0.175017,0.000000,199,0,0.001657,0.002450,88166304,59096440,0,0,80261,0,1,1 +1774179612.836715,5.32,4,3992.50,54.60,1523.39,2137.53,0.00,3517367092856.901855,0.000000,21,0,0.001938,0.003580,88166354,59096512,0,0,80264,0,1,1 +1774179617.837411,4.57,4,3992.50,53.72,1554.96,2103.18,0.00,0.000000,0.000000,21,0,0.001816,0.003345,88166403,59096578,0,0,80266,0,1,1 +1774179622.838079,8.23,4,3992.50,54.70,1536.86,2141.46,0.00,2.006568,0.000195,238,2,0.028285,17.439029,88168219,59099083,0,0,80269,0,1,1 +1774179627.837890,40.11,4,3992.50,54.80,1525.41,2145.57,0.00,3518570115831.717285,0.028126,237,550,0.065054,162.451476,88173072,59116409,0,0,80271,0,1,1 +1774179632.835399,36.31,4,3992.50,58.17,1394.25,2277.29,0.00,3520190493968.291504,3520190493969.627441,199,0,0.054262,142.275154,88177200,59131208,0,0,80274,0,1,1 +1774179637.837134,19.42,4,3992.50,55.30,1505.07,2164.98,0.00,3517217432953.220703,0.000000,70,0,0.047205,74.893968,88180573,59139262,0,0,80276,0,1,1 +1774179642.833739,12.61,4,3992.50,58.56,1378.65,2292.72,0.00,106884.865925,174779.604842,8685840,3014702,6.833637,13.246938,88182348,59141407,0,0,80279,0,1,1 +1774179647.838085,8.54,4,3992.50,54.49,1537.76,2133.52,0.00,3515381278150.287598,3515381210360.624512,21,0,33.236796,13.035721,88186675,59143925,0,0,80281,0,1,1 +1774179652.834886,7.89,4,3992.50,53.59,1570.64,2098.11,0.00,0.000000,0.000000,21,0,0.014736,27.066185,88187606,59146916,0,0,80284,0,1,1 +1774179657.838014,1.30,4,3992.50,53.90,1560.27,2110.35,0.00,0.174891,0.000000,199,0,0.006514,0.012402,88187766,59147140,0,0,80286,0,1,1 +1774179662.834570,0.85,4,3992.50,53.71,1567.90,2102.71,0.00,0.000000,0.000000,199,0,0.004581,0.012711,88187906,59147383,0,0,80289,0,1,1 +1774179667.835955,0.70,4,3992.50,53.71,1567.91,2102.71,0.00,0.000000,0.000000,199,0,0.003707,0.010225,88188022,59147582,0,0,80291,0,1,1 +1774179672.838116,0.95,4,3992.50,53.71,1567.93,2102.70,0.00,3516917260547.575195,0.000000,70,0,0.004588,0.012697,88188163,59147825,0,0,80294,0,1,1 +1774179677.833534,0.65,4,3992.50,53.71,1567.93,2102.69,0.00,106914.372432,174876.818380,8686614,3015870,0.004607,0.012691,88188305,59148066,0,0,80296,0,1,1 +1774179682.834901,5.92,4,3992.50,53.68,1557.58,2101.76,0.00,3517475524154.751953,3517475456273.188965,21,0,0.001373,0.003843,88188347,59148142,0,0,80299,0,1,1 +1774179687.836167,4.01,4,3992.50,54.87,1513.04,2148.31,0.00,0.048035,0.000000,70,0,0.000229,0.000653,88188354,59148156,0,0,80301,0,1,1 +1774179692.834968,5.78,4,3992.50,53.85,1550.87,2108.39,0.00,106837.918581,175218.981177,8685841,3017897,0.001024,0.002697,88188391,59148216,0,0,80304,0,1,1 +1774179697.835780,4.77,4,3992.50,54.47,1527.86,2132.61,0.00,0.000000,163.745264,8685841,3018845,0.000613,0.001413,88188415,59148252,0,0,80306,0,1,1 +1774179702.835809,4.46,4,3992.50,54.89,1510.93,2149.05,0.00,0.000000,139.240617,8685841,3019685,0.000787,0.002055,88188444,59148299,0,0,80309,0,1,1 +1774179707.833216,6.34,4,3992.50,54.29,1532.94,2125.59,0.00,3520262210175.822754,3520262141472.577148,21,0,0.000687,0.001922,88188465,59148337,0,0,80311,0,1,1 +1774179712.833213,2.86,4,3992.50,53.99,1546.75,2113.96,0.00,2.006837,0.000195,238,2,0.000229,0.000663,88188472,59148352,0,0,80314,0,1,1 +1774179717.838012,15.31,4,3992.50,60.74,1302.27,2378.05,0.00,0.000000,0.000000,238,2,12.412856,0.018734,88190097,59149369,0,0,80316,0,1,1 +1774179722.837770,35.62,4,3992.50,60.77,1302.11,2379.20,0.00,3518607101306.472656,3518607101308.479492,21,0,122.800434,0.077079,88203116,59154649,0,0,80319,0,1,1 +1774179727.834078,29.26,4,3992.50,60.54,1311.16,2370.12,0.00,0.000000,0.000000,21,0,122.233160,0.025258,88215262,59156120,0,0,80321,0,1,1 +1774179732.837447,28.84,4,3992.50,60.68,1305.56,2375.72,0.00,0.000000,0.000000,21,0,121.221746,0.028081,88227150,59157946,0,0,80324,0,1,1 +1774179737.834144,29.47,4,3992.50,60.56,1309.90,2371.01,0.00,1.539396,0.028339,237,558,119.531361,0.033300,88239072,59160387,0,0,80326,0,1,1 +1774179742.837537,28.74,4,3992.50,60.77,1301.15,2379.10,0.00,0.468139,3516051518000.277344,238,2,119.321296,0.032656,88250460,59162799,0,0,80329,0,1,1 +1774179747.835465,28.56,4,3992.50,60.93,1294.83,2385.38,0.00,106858.710804,175924.831261,8686616,3022642,119.009206,0.033262,88261526,59165050,0,0,80331,0,1,1 +1774179752.835805,30.41,4,3992.50,61.22,1285.26,2396.82,0.00,3518198402859.758789,3518198333828.891602,70,0,119.554031,0.031476,88272439,59167213,0,0,80334,0,1,1 +1774179757.834929,29.00,4,3992.50,60.90,1297.91,2384.22,0.00,3519053666851.160645,0.000000,21,0,118.989224,0.028642,88283154,59169306,0,0,80336,0,1,1 +1774179762.837229,1.31,4,3992.50,53.91,1571.41,2110.72,0.00,0.048025,0.000000,70,0,50.360193,0.020802,88287821,59170387,0,0,80339,0,1,1 +1774179767.838053,5.26,4,3992.50,54.10,1563.98,2118.14,0.00,1.958466,0.000195,238,2,2.024093,0.022564,88288677,59171110,0,0,80341,0,1,1 +1774179772.837995,18.86,4,3992.50,55.53,1507.93,2174.14,0.00,106811.698568,175854.681635,8685855,3023001,24.145237,0.109710,88296401,59176988,0,0,80344,0,1,1 +1774179777.834760,13.54,4,3992.50,54.22,1538.55,2122.83,0.00,4.111938,137.804294,8686629,3024914,14.090699,0.059981,88300879,59180402,0,0,80346,0,1,1 +1774179782.833209,6.99,4,3992.50,54.88,1516.57,2148.67,0.00,3519528947049.103516,280.999274,8685855,3025913,0.000008,0.000038,88300880,59180406,0,0,80349,0,1,1 +1774179787.833191,3.96,4,3992.50,54.63,1524.55,2138.99,0.00,3518449640418.055664,3518449570958.836426,199,0,0.000229,0.000653,88300887,59180420,0,0,80351,0,1,1 +1774179792.835514,3.81,4,3992.50,54.69,1521.80,2141.23,0.00,3516803061631.261230,0.000000,21,0,0.001013,0.001046,88300908,59180444,0,0,80354,0,1,1 +1774179797.837396,0.70,4,3992.50,54.69,1521.81,2141.23,0.00,0.174934,0.000000,199,0,0.000794,0.000403,88300923,59180455,0,0,80356,0,1,1 +1774179802.837251,7.01,4,3992.50,54.74,1516.91,2143.31,0.00,1.831889,0.000195,238,2,0.009367,0.007185,88301109,59180623,0,0,80359,0,1,1 +1774179807.837156,8.79,4,3992.50,54.93,1512.86,2150.79,0.00,106816.589266,177118.170725,8686629,3031351,0.001208,0.001706,88301146,59180662,0,0,80361,0,1,1 +1774179812.837894,0.75,4,3992.50,54.95,1512.43,2151.25,0.00,3517917935479.141602,3517917865189.268555,238,2,0.000000,0.000674,88301146,59180669,0,0,80364,0,1,1 +1774179817.837564,3.21,4,3992.50,55.57,1506.34,2175.67,0.00,3518669680349.634277,3518669680351.641113,21,0,0.010924,0.013671,88301379,59180941,0,0,80366,0,1,1 +1774179822.837487,0.80,4,3992.50,55.18,1521.45,2160.57,0.00,2.006867,0.000195,238,2,0.006154,0.013456,88301548,59181201,0,0,80369,0,1,1 +1774179827.837551,0.70,4,3992.50,55.08,1525.49,2156.53,0.00,3518392682918.112305,3518392682920.119141,21,0,0.005501,0.011553,88301699,59181425,0,0,80371,0,1,1 +1774179832.837174,0.80,4,3992.50,55.10,1524.77,2157.25,0.00,1.538495,0.028322,237,568,0.006340,0.013913,88301875,59181697,0,0,80374,0,1,1 +1774179837.837192,1.20,4,3992.50,55.14,1523.25,2158.76,0.00,106814.661342,177175.746951,8686629,3032061,0.005951,0.012800,88302039,59181943,0,0,80376,0,1,1 +1774179842.837846,0.75,4,3992.50,55.12,1523.89,2158.18,0.00,0.000000,0.035445,8686629,3032105,0.005479,0.011591,88302188,59182170,0,0,80379,0,1,1 +1774179847.834408,1.56,4,3992.50,54.48,1549.22,2132.84,0.00,3520858322396.920410,3520858251988.649414,21,0,0.006184,0.013455,88302359,59182429,0,0,80381,0,1,1 +1774179852.837709,0.75,4,3992.50,54.49,1548.52,2133.55,0.00,0.048015,0.000000,70,0,0.005256,0.010935,88302502,59182643,0,0,80384,0,1,1 +1774179857.837255,0.85,4,3992.50,54.48,1549.14,2132.93,0.00,106822.124008,177192.620431,8685855,3031665,0.006180,0.013472,88302673,59182904,0,0,80386,0,1,1 +1774179862.837174,0.70,4,3992.50,54.29,1556.55,2125.51,0.00,3518493999637.210449,3518493929272.023926,21,0,0.005339,0.011618,88302821,59183124,0,0,80389,0,1,1 +1774179867.834917,1.25,4,3992.50,54.42,1551.67,2130.62,0.00,0.000000,0.000000,21,0,0.006170,0.013465,88302991,59183384,0,0,80391,0,1,1 +1774179872.835927,9.19,4,3992.50,54.75,1521.21,2143.54,0.00,106790.884974,177464.945468,8685855,3033556,0.002746,0.004607,88303057,59183469,0,0,80394,0,1,1 +1774179877.837061,1.60,4,3992.50,56.26,1461.19,2202.70,0.00,4.108346,57.714064,8686629,3034505,0.000901,0.002099,88303084,59183512,0,0,80396,0,1,1 +1774179882.834882,5.43,4,3992.50,54.22,1540.16,2122.95,0.00,3519971434383.117676,3519971363610.264648,70,0,0.000916,0.002565,88303112,59183563,0,0,80399,0,1,1 +1774179887.837821,9.18,4,3992.50,55.11,1505.45,2157.77,0.00,106749.655068,178021.171544,8685855,3036964,0.001131,0.003186,88303146,59183625,0,0,80401,0,1,1 +1774179892.838100,0.45,4,3992.50,55.01,1509.67,2153.57,0.00,4.109048,0.028514,8686629,3037546,0.000000,0.000674,88303146,59183632,0,0,80404,0,1,1 +1774179897.836215,7.68,4,3992.50,54.66,1524.30,2140.04,0.00,3519764810855.719727,3519764739517.517090,238,2,0.000635,0.000132,88303158,59183641,0,0,80406,0,1,1 +1774179902.834902,21.45,4,3992.50,60.35,1302.48,2362.87,0.00,3519361205199.790039,3519361205201.797363,21,0,0.023095,48.688165,88304850,59189082,0,0,80409,0,1,1 +1774179907.834878,6.50,4,3992.50,63.38,1183.65,2481.66,0.00,106817.079351,178822.450611,8686629,3041213,0.010566,30.079327,88305644,59192323,0,0,80411,0,1,1 +1774179912.837376,25.87,4,3992.50,62.27,1223.41,2437.85,0.00,3516680020932.999023,192.145201,8685855,3041732,0.023043,88.079909,88307332,59200783,0,0,80414,0,1,1 +1774179917.834495,14.07,4,3992.50,54.94,1530.00,2150.92,0.00,3520465731723.524414,3520465659480.519043,21,0,0.011288,38.233526,88308093,59204380,0,0,80416,0,1,1 +1774179922.837164,9.88,4,3992.50,59.57,1345.05,2332.15,0.00,0.000000,0.000000,21,0,5.754853,0.023894,88309192,59205267,0,0,80419,0,1,1 +1774179927.834907,6.53,4,3992.50,55.53,1498.65,2173.94,0.00,1.539074,0.028333,237,586,34.338063,0.026795,88313044,59206349,0,0,80421,0,1,1 +1774179932.838093,1.10,4,3992.50,55.14,1513.94,2158.67,0.00,0.000000,0.000000,237,586,0.005489,0.012229,88313194,59206580,0,0,80424,0,1,1 +1774179937.836382,11.38,4,3992.50,54.82,1524.21,2146.18,0.00,0.000000,0.000000,237,586,0.032958,40.087396,88315346,59211248,0,0,80426,0,1,1 +1774179942.833233,1.15,4,3992.50,54.42,1539.68,2130.57,0.00,106894.922073,179216.993608,8685971,3042886,0.003473,0.008315,88315457,59211413,0,0,80429,0,1,1 +1774179947.837663,0.95,4,3992.50,54.37,1541.73,2128.52,0.00,3515321991036.492188,3515321918823.975098,237,586,0.004561,0.012656,88315596,59211653,0,0,80431,0,1,1 +1774179952.833240,0.95,4,3992.50,54.34,1542.59,2127.64,0.00,106922.160845,179262.712188,8685971,3042932,0.003716,0.010233,88315712,59211852,0,0,80434,0,1,1 +1774179957.837193,1.70,4,3992.50,54.59,1537.21,2137.16,0.00,3515657727821.068359,3515657655603.112793,21,0,0.007436,0.014619,88315901,59212123,0,0,80436,0,1,1 +1774179962.833250,1.00,4,3992.50,54.46,1542.24,2132.14,0.00,0.000000,0.000000,21,0,0.003703,0.010176,88316016,59212318,0,0,80439,0,1,1 +1774179967.838122,6.58,4,3992.50,54.44,1527.17,2131.51,0.00,106729.219307,179113.880195,8686745,3044657,0.002060,0.005717,88316079,59212428,0,0,80441,0,1,1 +1774179972.837396,7.33,4,3992.50,54.41,1531.73,2130.14,0.00,3518948137774.334473,3518948065308.612305,21,0,0.000928,0.002577,88316108,59212480,0,0,80444,0,1,1 +1774179977.836085,7.97,4,3992.50,56.47,1449.57,2210.87,0.00,1.538782,0.028328,237,589,0.000254,0.000685,88316117,59212496,0,0,80446,0,1,1 +1774179982.837749,0.75,4,3992.50,55.91,1471.37,2189.07,0.00,3517267012739.616211,3517267012741.125977,21,0,0.000107,0.000148,88316125,59212507,0,0,80449,0,1,1 +1774179987.837545,4.61,4,3992.50,55.12,1503.43,2157.89,0.00,106837.573362,180077.888657,8686745,3048912,0.000582,0.001388,88316147,59212541,0,0,80451,0,1,1 +1774179992.837528,5.67,4,3992.50,56.77,1437.59,2222.61,0.00,3518448850150.685059,3518448776913.105957,21,0,0.001132,0.003185,88316181,59212603,0,0,80454,0,1,1 +1774179997.834892,6.97,4,3992.50,54.87,1511.94,2148.27,0.00,2.007895,0.000195,238,2,0.000008,0.000672,88316182,59212610,0,0,80456,0,1,1 +1774180002.838062,1.15,4,3992.50,54.90,1510.71,2149.49,0.00,3516207647716.654785,3516207647718.485840,199,0,0.000101,0.000154,88316190,59212621,0,0,80459,0,1,1 +1774180007.834750,0.75,4,3992.50,54.70,1518.60,2141.61,0.00,1.833050,0.000195,238,2,0.000229,0.000654,88316197,59212635,0,0,80461,0,1,1 +1774180012.833214,24.77,4,3992.50,55.30,1513.89,2165.26,0.00,3519518159902.990234,0.028134,237,592,43.283412,0.034940,88321027,59214454,0,0,80464,0,1,1 +1774180017.837959,1.85,4,3992.50,54.92,1533.01,2150.06,0.00,0.000000,0.000000,237,592,0.006034,0.011253,88321153,59214641,0,0,80466,0,1,1 +1774180022.833231,0.95,4,3992.50,54.26,1558.79,2124.32,0.00,106928.913823,180819.919746,8686130,3051651,0.004582,0.012714,88321293,59214884,0,0,80469,0,1,1 +1774180027.833222,1.05,4,3992.50,53.60,1584.44,2098.67,0.00,3518443989058.126465,3518443915236.347656,238,2,0.004120,0.011400,88321419,59215100,0,0,80471,0,1,1 +1774180032.833206,1.05,4,3992.50,53.61,1583.98,2099.12,0.00,0.000000,0.000000,238,2,0.004600,0.012743,88321561,59215345,0,0,80474,0,1,1 +1774180037.834899,1.10,4,3992.50,53.46,1590.17,2092.94,0.00,0.000000,0.000000,238,2,0.004622,0.012696,88321705,59215588,0,0,80476,0,1,1 +1774180042.836852,37.62,4,3992.50,60.20,1328.26,2357.09,0.00,3517063123269.087402,3517063123271.093750,21,0,92.101451,0.051036,88331593,59218540,0,0,80479,0,1,1 +1774180047.838089,30.69,4,3992.50,59.93,1339.02,2346.34,0.00,0.174957,0.000000,199,0,122.140811,0.048189,88344071,59222250,0,0,80481,0,1,1 +1774180052.834902,30.34,4,3992.50,59.37,1364.98,2324.66,0.00,3520681343277.313477,0.000000,21,0,121.849061,0.058255,88356585,59226486,0,0,80484,0,1,1 +1774180057.836443,29.78,4,3992.50,59.42,1363.07,2326.56,0.00,1.537905,0.028312,237,592,120.328910,0.053424,88368857,59230397,0,0,80486,0,1,1 +1774180062.833171,29.63,4,3992.50,59.36,1365.65,2323.99,0.00,106901.913135,180767.600404,8686907,3052530,120.046592,0.043307,88381181,59233310,0,0,80489,0,1,1 +1774180067.833552,29.49,4,3992.50,59.47,1361.17,2328.40,0.00,3518169397380.955566,3518169397385.042969,8686133,3051946,119.754754,0.044797,88393379,59236678,0,0,80491,0,1,1 +1774180072.837928,30.08,4,3992.50,59.33,1366.75,2322.91,0.00,0.000000,0.004391,8686133,3051959,118.861584,0.047049,88405540,59239978,0,0,80494,0,1,1 +1774180077.837054,29.79,4,3992.50,59.65,1353.46,2335.46,0.00,3519052335864.270508,3519052262029.424805,238,2,119.988000,0.054381,88417772,59243734,0,0,80496,0,1,1 +1774180082.837740,1.76,4,3992.50,55.41,1519.55,2169.33,0.00,3517954566622.379883,3517954566624.386230,21,0,47.062450,0.022563,88422652,59245164,0,0,80499,0,1,1 +1774180087.837437,12.19,4,3992.50,54.38,1559.96,2128.94,0.00,0.048050,0.000000,70,0,10.075838,0.055316,88426130,59247775,0,0,80501,0,1,1 +1774180092.833200,20.17,4,3992.50,54.24,1565.20,2123.64,0.00,1.960450,0.000195,238,2,30.213556,0.135771,88436107,59255234,0,0,80504,0,1,1 +1774180097.835413,1.50,4,3992.50,53.83,1581.37,2107.47,0.00,0.000000,0.000000,238,2,0.007801,0.015268,88436312,59255530,0,0,80506,0,1,1 +1774180102.834888,0.95,4,3992.50,53.75,1584.30,2104.55,0.00,106838.647266,180668.870188,8686145,3052816,0.006167,0.013470,88436482,59255791,0,0,80509,0,1,1 +1774180107.838393,18.49,4,3992.50,54.50,1556.94,2133.73,0.00,3515972469343.439941,3515972395574.677246,21,0,0.035441,67.058838,88438951,59263159,0,0,80511,0,1,1 +1774180112.834415,31.99,4,3992.50,54.55,1546.71,2135.89,0.00,0.175139,0.000000,199,0,0.030273,122.278069,88441037,59276102,0,0,80514,0,1,1 +1774180117.834839,6.12,4,3992.50,53.80,1575.45,2106.57,0.00,0.000000,0.000000,199,0,0.015644,15.834565,88441721,59278021,0,0,80516,0,1,1 +1774180122.833263,11.70,4,3992.50,53.96,1570.11,2112.73,0.00,1.363809,0.028329,237,592,40.080842,0.034126,88446301,59279704,0,0,80519,0,1,1 +1774180127.837396,0.90,4,3992.50,53.78,1577.23,2105.62,0.00,0.000000,0.000000,237,592,0.004698,0.008457,88446420,59279873,0,0,80521,0,1,1 +1774180132.837806,1.00,4,3992.50,53.79,1576.84,2106.00,0.00,106836.046937,180829.561546,8686294,3054857,0.006623,0.015238,88446607,59280164,0,0,80524,0,1,1 +1774180137.837672,1.50,4,3992.50,53.98,1573.64,2113.54,0.00,3518531147448.498047,3518531073448.459473,21,0,0.005264,0.010924,88446750,59280376,0,0,80526,0,1,1 +1774180142.837329,1.00,4,3992.50,53.98,1573.65,2113.52,0.00,0.000000,0.000000,21,0,0.006167,0.013469,88446920,59280637,0,0,80529,0,1,1 +1774180147.838098,1.10,4,3992.50,54.25,1563.14,2124.04,0.00,0.174973,0.000000,199,0,0.005492,0.011543,88447070,59280860,0,0,80531,0,1,1 +1774180152.837632,1.05,4,3992.50,54.06,1570.79,2116.40,0.00,106860.220162,180873.359903,8687068,3055723,0.005976,0.012880,88447236,59281112,0,0,80534,0,1,1 +1774180157.834898,1.00,4,3992.50,54.09,1569.60,2117.58,0.00,3520362588995.357422,3520362514946.780762,238,2,0.006183,0.013441,88447407,59281370,0,0,80536,0,1,1 +1774180162.834914,0.90,4,3992.50,54.09,1569.61,2117.57,0.00,0.000000,0.000000,238,2,0.005347,0.011018,88447556,59281590,0,0,80539,0,1,1 +1774180167.834886,1.10,4,3992.50,54.08,1571.02,2117.51,0.00,0.000000,0.000000,238,2,0.006211,0.013459,88447729,59281850,0,0,80541,0,1,1 +1774180172.835054,0.90,4,3992.50,54.03,1573.32,2115.26,0.00,106844.832194,180850.571102,8687068,3055867,0.005295,0.010949,88447874,59282064,0,0,80544,0,1,1 +1774180177.834936,0.75,4,3992.50,54.06,1572.11,2116.47,0.00,3518520633119.999512,3518520559112.017090,21,0,0.006198,0.013484,88448046,59282326,0,0,80546,0,1,1 +1774180182.833437,1.40,4,3992.50,54.10,1570.30,2118.27,0.00,106882.474473,180910.962644,8687068,3055951,0.005265,0.010937,88448189,59282539,0,0,80549,0,1,1 +1774180187.834889,0.80,4,3992.50,54.10,1570.33,2118.25,0.00,3517415832305.065430,3517415758320.247070,21,0,0.006165,0.013455,88448359,59282799,0,0,80551,0,1,1 +1774180192.834896,1.50,4,3992.50,54.13,1569.36,2119.23,0.00,2.006833,0.000195,238,2,0.012090,4.819527,88448973,59283741,0,0,80554,0,1,1 +1774180197.834896,11.05,4,3992.50,54.17,1567.02,2120.71,0.00,106844.320660,180890.276435,8686294,3055670,0.016131,35.266416,88449927,59287712,0,0,80556,0,1,1 +1774180202.837590,1.15,4,3992.50,54.07,1570.81,2116.92,0.00,3516542143675.391113,3516542069671.144531,199,0,0.003668,0.010183,88450040,59287909,0,0,80559,0,1,1 +1774180207.837266,0.95,4,3992.50,54.11,1569.33,2118.39,0.00,0.000000,0.000000,199,0,0.004591,0.012693,88450181,59288151,0,0,80561,0,1,1 +1774180212.834766,1.00,4,3992.50,54.30,1561.79,2126.06,0.00,3520197685795.153809,0.000000,21,0,0.003689,0.010173,88450295,59288346,0,0,80564,0,1,1 +1774180217.838064,0.95,4,3992.50,54.31,1561.62,2126.28,0.00,1.537365,0.028302,237,592,0.005496,0.013353,88450437,59288591,0,0,80566,0,1,1 +1774180222.834929,1.10,4,3992.50,54.14,1568.31,2119.58,0.00,106916.018114,181003.931851,8687082,3056429,0.003664,0.010174,88450549,59288786,0,0,80569,0,1,1 +1774180227.833189,1.16,4,3992.50,54.24,1566.20,2123.47,0.00,3519661426820.990234,3519661352753.267578,238,2,0.004617,0.012728,88450692,59289030,0,0,80571,0,1,1 +1774180232.837155,1.00,4,3992.50,54.24,1565.10,2123.47,0.00,3515649185872.892090,3515649185874.897461,21,0,0.003735,0.010222,88450810,59289229,0,0,80574,0,1,1 +1774180237.837264,1.15,4,3992.50,53.87,1579.33,2109.23,0.00,0.000000,0.000000,21,0,0.004674,0.012793,88450958,59289478,0,0,80576,0,1,1 +1774180242.833227,1.15,4,3992.50,53.81,1581.73,2106.84,0.00,106936.865766,181043.348528,8687082,3056495,0.004533,0.012179,88451103,59289717,0,0,80579,0,1,1 +1774180247.833542,1.00,4,3992.50,53.97,1575.33,2113.18,0.00,3518215901245.858398,3518215827202.356934,237,592,0.003916,0.010816,88451224,59289925,0,0,80581,0,1,1 +1774180252.837539,0.95,4,3992.50,53.76,1583.88,2104.69,0.00,0.468083,3515626369272.775391,238,2,0.003189,0.008881,88451321,59290095,0,0,80584,0,1,1 +1774180257.837554,1.40,4,3992.50,54.22,1564.95,2122.91,0.00,3518426627565.128418,3518426627566.960449,199,0,0.005378,0.009915,88451463,59290293,0,0,80586,0,1,1 +1774180262.835787,38.98,4,3992.50,61.01,1306.52,2388.67,0.00,1.832484,0.000195,238,2,100.584255,0.050073,88462099,59293337,0,0,80589,0,1,1 +1774180267.835840,31.92,4,3992.50,60.51,1326.28,2369.09,0.00,3518399543008.263672,0.028125,237,592,121.368894,0.039049,88474584,59295893,0,0,80591,0,1,1 +1774180272.835644,31.44,4,3992.50,60.32,1333.39,2361.79,0.00,3518575392485.620605,3518575392487.130859,21,0,120.974138,0.032983,88487110,59298141,0,0,80594,0,1,1 +1774180277.838048,30.55,4,3992.50,60.64,1320.99,2374.29,0.00,0.048024,0.000000,70,0,120.108916,0.030482,88499468,59300362,0,0,80596,0,1,1 +1774180282.837471,30.68,4,3992.50,60.36,1332.10,2363.11,0.00,3518843378417.792969,0.000000,21,0,119.779719,0.038771,88511708,59303069,0,0,80599,0,1,1 +1774180287.838363,30.51,4,3992.50,60.43,1328.36,2365.80,0.00,0.048038,0.000000,70,0,119.545631,0.037076,88524046,59305651,0,0,80601,0,1,1 +1774180292.834252,30.75,4,3992.50,60.57,1322.65,2371.44,0.00,106938.384481,181046.497613,8687082,3056804,119.461522,0.041658,88536136,59308709,0,0,80604,0,1,1 +1774180297.837380,30.89,4,3992.50,60.64,1319.82,2374.18,0.00,3516237556901.077637,3516237482900.225586,21,0,119.690026,0.036466,88548320,59311291,0,0,80606,0,1,1 +1774180302.836849,10.25,4,3992.50,54.21,1571.79,2122.34,0.00,1.538542,0.028323,237,592,83.926367,0.033541,88556921,59313505,0,0,80609,0,1,1 +1774180307.834911,2.46,4,3992.50,54.19,1572.35,2121.77,0.00,3519801559994.029297,3519801559995.540039,21,0,0.007248,0.012863,88557106,59313762,0,0,80611,0,1,1 +1774180312.834972,18.35,4,3992.50,54.94,1543.14,2150.95,0.00,0.000000,0.000000,21,0,20.146355,0.102716,88564011,59318850,0,0,80614,0,1,1 +1774180317.833394,13.88,4,3992.50,55.75,1511.55,2182.79,0.00,2.007470,0.000195,238,2,20.121199,0.086424,88570298,59323646,0,0,80616,0,1,1 +1774180322.837739,1.65,4,3992.50,55.18,1533.77,2160.55,0.00,3515381876593.872070,3515381876595.877441,21,0,0.010968,0.016755,88570561,59323979,0,0,80619,0,1,1 +1774180327.836469,0.70,4,3992.50,54.55,1558.43,2135.90,0.00,2.007346,0.000195,238,2,0.005253,0.011088,88570703,59324192,0,0,80621,0,1,1 +1774180332.833609,0.90,4,3992.50,54.42,1563.62,2130.70,0.00,3520451268909.399414,3520451268911.407715,21,0,0.006196,0.013959,88570875,59324456,0,0,80624,0,1,1 +1774180337.836399,0.75,4,3992.50,54.74,1550.98,2143.34,0.00,1.537521,0.028305,237,592,0.005581,0.012159,88571030,59324690,0,0,80626,0,1,1 +1774180342.833232,0.70,4,3992.50,54.75,1550.77,2143.55,0.00,106912.751725,181013.813052,8686322,3057761,0.005838,0.012234,88571187,59324929,0,0,80629,0,1,1 +1774180347.837957,1.15,4,3992.50,55.09,1545.92,2156.74,0.00,3515115309634.750488,3515115235650.041504,238,2,0.006207,0.013485,88571361,59325192,0,0,80631,0,1,1 +1774180352.836178,0.85,4,3992.50,55.09,1545.70,2156.97,0.00,0.000000,0.000000,238,2,0.005379,0.011062,88571513,59325413,0,0,80634,0,1,1 +1774180357.837231,0.80,4,3992.50,55.09,1545.71,2156.95,0.00,3517696589523.712891,3517696589525.544434,199,0,0.006203,0.013456,88571686,59325673,0,0,80636,0,1,1 +1774180362.836233,0.95,4,3992.50,54.33,1575.53,2127.14,0.00,0.000000,0.000000,199,0,0.005265,0.010936,88571829,59325886,0,0,80639,0,1,1 +1774180367.837702,0.75,4,3992.50,54.45,1570.94,2131.73,0.00,3517403796351.185547,0.000000,70,0,0.006252,0.013495,88572005,59326149,0,0,80641,0,1,1 +1774180372.834918,0.85,4,3992.50,54.21,1580.18,2122.49,0.00,3520397583818.392578,0.000000,21,0,0.005862,0.012050,88572160,59326384,0,0,80644,0,1,1 +1774180377.834909,1.15,4,3992.50,54.43,1568.11,2130.89,0.00,0.175000,0.000000,199,0,0.006205,0.013446,88572333,59326643,0,0,80646,0,1,1 +1774180382.834916,0.70,4,3992.50,54.42,1568.16,2130.85,0.00,106846.258139,180899.402561,8686322,3058122,0.004653,0.010705,88572465,59326850,0,0,80649,0,1,1 +1774180387.834894,15.40,4,3992.50,54.88,1550.12,2148.53,0.00,3518452505821.743652,3518452431768.303711,70,0,0.032654,58.897039,88574568,59333399,0,0,80651,0,1,1 +1774180392.834877,29.36,4,3992.50,55.22,1528.51,2162.16,0.00,106850.998828,181055.235668,8687096,3059676,0.049906,119.587740,88578156,59346107,0,0,80654,0,1,1 +1774180397.834897,8.44,4,3992.50,54.86,1542.03,2147.70,0.00,0.003906,23.292389,8687099,3059869,0.022749,26.650185,88579539,59349069,0,0,80656,0,1,1 +1774180402.833701,14.41,4,3992.50,54.88,1542.20,2148.69,0.00,3519278591811.616699,3519278517564.631348,238,2,40.078722,0.032755,88584143,59350945,0,0,80659,0,1,1 +1774180407.837417,1.30,4,3992.50,54.78,1551.32,2144.66,0.00,3515823935623.906738,3515823935625.912598,21,0,0.005167,0.012765,88584286,59351172,0,0,80661,0,1,1 +1774180412.836416,11.41,4,3992.50,54.71,1553.64,2142.15,0.00,0.048057,0.000000,70,0,0.031368,40.079951,88586386,59355834,0,0,80664,0,1,1 +1774180417.833582,0.80,4,3992.50,54.74,1552.75,2143.05,0.00,1.959900,0.000195,238,2,0.004866,0.013327,88586536,59356089,0,0,80666,0,1,1 +1774180422.834225,0.75,4,3992.50,54.67,1555.36,2140.43,0.00,3517985244170.288086,3517985244172.119629,199,0,0.003674,0.010166,88586649,59356284,0,0,80669,0,1,1 +1774180427.833283,0.85,4,3992.50,54.60,1557.89,2137.90,0.00,106887.485901,181171.460857,8687205,3060602,0.004578,0.012695,88586789,59356526,0,0,80671,0,1,1 +1774180432.833213,1.00,4,3992.50,54.99,1542.80,2152.98,0.00,3518486012391.173828,0.030860,8686431,3060059,0.005002,0.011933,88586917,59356748,0,0,80674,0,1,1 +1774180437.837579,1.15,4,3992.50,55.12,1539.39,2157.97,0.00,3515367665070.688965,3515367590861.538086,21,0,0.004586,0.012681,88587058,59356990,0,0,80676,0,1,1 +1774180442.834667,0.65,4,3992.50,55.12,1539.05,2158.14,0.00,1.539275,0.028337,237,592,0.003677,0.010174,88587171,59357185,0,0,80679,0,1,1 +1774180447.834536,0.90,4,3992.50,55.12,1539.05,2158.13,0.00,106868.782317,181150.199434,8687205,3060751,0.004641,0.012786,88587316,59357433,0,0,80681,0,1,1 +1774180452.836916,0.75,4,3992.50,55.12,1539.07,2158.13,0.00,3516763078432.944336,3516763078437.027832,8686431,3060161,0.004176,0.011443,88587447,59357653,0,0,80684,0,1,1 +1774180457.837890,0.75,4,3992.50,55.12,1539.07,2158.12,0.00,3517751920632.811035,3517751846365.052246,199,0,0.004263,0.011586,88587583,59357883,0,0,80686,0,1,1 +1774180462.837147,0.90,4,3992.50,55.12,1539.09,2158.11,0.00,1.363582,0.028325,237,592,0.004597,0.013361,88587724,59358131,0,0,80689,0,1,1 +1774180467.838007,0.95,4,3992.50,55.23,1537.49,2162.45,0.00,0.468376,3517831901176.467285,238,2,0.003661,0.010169,88587836,59358326,0,0,80691,0,1,1 +1774180472.834894,1.30,4,3992.50,55.23,1537.30,2162.46,0.00,0.000000,0.000000,238,2,0.005990,0.013413,88588001,59358585,0,0,80694,0,1,1 +1774180477.837588,41.10,4,3992.50,60.93,1321.24,2385.37,0.00,3516542544286.666992,3516542544288.624512,70,0,105.714861,0.078295,88599550,59364090,0,0,80696,0,1,1 +1774180482.836441,33.05,4,3992.50,60.80,1326.18,2380.44,0.00,1.490674,0.028327,237,592,122.204947,0.029124,88611919,59365822,0,0,80699,0,1,1 +1774180487.837942,30.69,4,3992.50,60.72,1329.13,2377.49,0.00,106833.908104,181091.329519,8687205,3060956,120.724002,0.021571,88623781,59367374,0,0,80701,0,1,1 +1774180492.837505,30.66,4,3992.50,60.69,1330.36,2376.23,0.00,3518744964051.607422,3518744889765.389160,237,592,120.239192,0.025850,88635629,59369138,0,0,80704,0,1,1 +1774180497.838078,30.96,4,3992.50,60.91,1321.99,2384.64,0.00,3518033926802.137207,3518033926803.646973,21,0,119.797809,0.036091,88647514,59371664,0,0,80706,0,1,1 +1774180502.837097,31.23,4,3992.50,60.87,1314.36,2383.21,0.00,1.538681,0.028326,237,592,119.263879,0.040243,88659170,59374311,0,0,80709,0,1,1 +1774180507.836405,30.89,4,3992.50,60.97,1310.27,2387.25,0.00,3518924446902.213379,3518924446903.723633,21,0,119.434242,0.034432,88670511,59376734,0,0,80711,0,1,1 +1774180512.836817,30.45,4,3992.50,61.04,1307.80,2389.79,0.00,0.174986,0.000000,199,0,118.816103,0.031629,88681734,59379050,0,0,80714,0,1,1 +1774180517.837678,8.20,4,3992.50,54.12,1578.59,2119.07,0.00,0.000000,0.000000,199,0,79.178973,0.024343,88689152,59380596,0,0,80716,0,1,1 +1774180522.835297,1.40,4,3992.50,54.49,1564.32,2133.35,0.00,1.832708,0.000195,238,2,0.006554,0.010964,88689315,59380817,0,0,80719,0,1,1 +1774180527.836536,14.68,4,3992.50,54.67,1557.16,2140.45,0.00,3517565793866.459473,0.028118,237,592,12.090919,0.067141,88693500,59383910,0,0,80721,0,1,1 +1774180532.837414,18.66,4,3992.50,54.91,1542.79,2150.04,0.00,0.000000,0.000000,237,592,28.156291,0.122705,88702388,59390587,0,0,80724,0,1,1 +1774180537.833226,5.18,4,3992.50,54.48,1559.75,2132.99,0.00,0.468850,3521386858441.334961,238,2,0.022452,11.646852,88703516,59392384,0,0,80726,0,1,1 +1774180542.837664,30.66,4,3992.50,54.73,1545.01,2142.70,0.00,3515316782397.292969,3515316782399.297852,21,0,0.032792,119.671670,88705814,59405061,0,0,80729,0,1,1 +1774180547.837391,19.76,4,3992.50,54.02,1568.25,2115.09,0.00,0.175010,0.000000,199,0,0.052421,73.728331,88709634,59413046,0,0,80731,0,1,1 +1774180552.839382,5.51,4,3992.50,58.95,1376.20,2308.18,0.00,3517037013844.554688,0.000000,21,0,2.215255,0.020696,88710329,59413677,0,0,80734,0,1,1 +1774180557.834886,8.04,4,3992.50,55.54,1511.93,2174.37,0.00,0.175157,0.000000,199,0,37.892653,0.020249,88714280,59414810,0,0,80736,0,1,1 +1774180562.838100,1.15,4,3992.50,54.59,1548.69,2137.52,0.00,0.000000,0.000000,199,0,0.006876,0.015692,88714466,59415095,0,0,80739,0,1,1 +1774180567.834930,0.65,4,3992.50,54.31,1559.90,2126.30,0.00,3520669531647.648438,0.000000,70,0,0.005318,0.010993,88714613,59415311,0,0,80741,0,1,1 +1774180572.838128,0.85,4,3992.50,54.09,1568.65,2117.56,0.00,1.489380,0.028302,237,592,0.006196,0.013468,88714786,59415573,0,0,80744,0,1,1 +1774180577.837574,0.80,4,3992.50,54.09,1568.42,2117.79,0.00,3518827080143.243164,3518827080144.578125,199,0,0.006180,0.013435,88714957,59415831,0,0,80746,0,1,1 +1774180582.834882,0.85,4,3992.50,54.09,1568.44,2117.77,0.00,1.832822,0.000195,238,2,0.005292,0.010996,88715102,59416048,0,0,80749,0,1,1 +1774180587.837990,1.25,4,3992.50,54.30,1560.74,2125.86,0.00,3516251779636.109375,3516251779638.115234,21,0,0.006163,0.013450,88715272,59416308,0,0,80751,0,1,1 +1774180592.837309,0.75,4,3992.50,54.30,1560.75,2125.84,0.00,0.175024,0.000000,199,0,0.005339,0.011469,88715420,59416528,0,0,80754,0,1,1 +1774180597.833205,0.75,4,3992.50,54.30,1560.76,2125.81,0.00,0.000000,0.000000,199,0,0.006216,0.013656,88715593,59416791,0,0,80756,0,1,1 +1774180602.833291,0.80,4,3992.50,54.30,1560.78,2125.80,0.00,106878.376978,181350.216348,8686569,3063928,0.005302,0.010996,88715739,59417008,0,0,80759,0,1,1 +1774180607.833218,0.80,4,3992.50,54.30,1560.80,2125.78,0.00,0.000000,0.036817,8686569,3063973,0.006267,0.013499,88715916,59417271,0,0,80761,0,1,1 +1774180612.833240,0.75,4,3992.50,54.29,1560.81,2125.77,0.00,3518421445732.603516,3518421371258.445801,237,592,0.005942,0.011864,88716063,59417487,0,0,80764,0,1,1 +1774180617.834941,1.05,4,3992.50,54.31,1560.39,2126.18,0.00,106842.493597,181291.709319,8686569,3064018,0.005250,0.010920,88716205,59417699,0,0,80766,0,1,1 +1774180622.834910,1.30,4,3992.50,54.36,1554.44,2128.37,0.00,3518458913634.849609,3518458839159.840332,237,592,0.005493,0.011555,88716355,59417923,0,0,80769,0,1,1 +1774180627.834882,0.65,4,3992.50,54.36,1554.45,2128.35,0.00,106879.445345,181354.537544,8686569,3064142,0.005938,0.012838,88716518,59418172,0,0,80771,0,1,1 +1774180632.837855,11.66,4,3992.50,54.34,1555.44,2127.62,0.00,3516346883441.284668,3516346809012.313965,70,0,0.025487,40.051981,88718043,59422827,0,0,80774,0,1,1 +1774180637.837427,1.00,4,3992.50,54.19,1561.40,2121.66,0.00,0.126964,0.000000,199,0,0.003688,0.010159,88718157,59423021,0,0,80776,0,1,1 +1774180642.837617,0.70,4,3992.50,54.19,1561.40,2121.65,0.00,3518303820133.952637,0.000000,21,0,0.004615,0.012702,88718300,59423264,0,0,80779,0,1,1 +1774180647.835569,1.20,4,3992.50,54.48,1555.01,2133.14,0.00,106928.291063,181460.176312,8687343,3065123,0.003664,0.010162,88718412,59423458,0,0,80781,0,1,1 +1774180652.836392,0.95,4,3992.50,54.79,1543.15,2145.01,0.00,3517857768517.271973,3517857694028.005859,199,0,0.003224,0.008907,88718512,59423630,0,0,80784,0,1,1 +1774180657.837510,0.70,4,3992.50,54.80,1542.67,2145.49,0.00,106856.334262,181345.310341,8686569,3064536,0.003204,0.009532,88718610,59423804,0,0,80786,0,1,1 +1774180662.838120,0.85,4,3992.50,54.80,1542.45,2145.72,0.00,3518007766445.801270,3518007691949.447754,21,0,0.003662,0.010166,88718722,59423999,0,0,80789,0,1,1 +1774180667.833215,0.80,4,3992.50,54.80,1542.45,2145.71,0.00,2.008807,0.000196,238,2,0.004607,0.012736,88718864,59424243,0,0,80791,0,1,1 +1774180672.833190,0.85,4,3992.50,54.80,1542.45,2145.70,0.00,3518455132596.868164,0.028125,237,592,0.005227,0.013874,88719020,59424512,0,0,80794,0,1,1 +1774180677.834902,1.10,4,3992.50,54.80,1545.67,2145.66,0.00,106846.357224,181331.781405,8687343,3065197,0.003861,0.010348,88719146,59424720,0,0,80796,0,1,1 +1774180682.833232,0.85,4,3992.50,54.79,1546.20,2145.21,0.00,3519613086385.890137,3519613011851.557617,21,0,0.004630,0.012706,88719290,59424963,0,0,80799,0,1,1 +1774180687.833261,0.80,4,3992.50,54.80,1545.96,2145.45,0.00,0.000000,0.000000,21,0,0.003637,0.010158,88719400,59425157,0,0,80801,0,1,1 +1774180692.833211,0.85,4,3992.50,54.80,1545.98,2145.44,0.00,0.000000,0.000000,21,0,0.004636,0.012710,88719545,59425401,0,0,80804,0,1,1 +1774180697.833241,1.30,4,3992.50,54.82,1545.27,2146.14,0.00,0.000000,0.000000,21,0,0.005827,0.012418,88719690,59425625,0,0,80806,0,1,1 +1774180702.833216,43.50,4,3992.50,60.40,1333.40,2364.88,0.00,0.175001,0.000000,199,0,103.753591,0.050972,88730743,59428859,0,0,80809,0,1,1 +1774180707.833204,31.23,4,3992.50,60.08,1341.52,2352.23,0.00,0.000000,0.000000,199,0,118.168832,0.039839,88743110,59431524,0,0,80811,0,1,1 +1774180712.838386,30.37,4,3992.50,60.34,1331.29,2362.41,0.00,0.000000,0.000000,199,0,120.045349,0.027087,88755653,59433229,0,0,80814,0,1,1 +1774180717.834096,30.19,4,3992.50,60.27,1333.95,2359.59,0.00,106971.997264,181549.970005,8686569,3064834,118.673711,0.030943,88768139,59435179,0,0,80816,0,1,1 +1774180722.835780,30.43,4,3992.50,60.75,1314.93,2378.65,0.00,3517252727645.064941,3517252653154.832031,237,592,119.731617,0.037357,88780712,59437779,0,0,80819,0,1,1 +1774180727.838005,29.84,4,3992.50,60.65,1318.86,2374.71,0.00,106835.421365,181313.576008,8687343,3065451,118.915404,0.033170,88793106,59440280,0,0,80821,0,1,1 +1774180732.837948,30.60,4,3992.50,60.28,1333.52,2360.08,0.00,0.000000,0.002637,8687343,3065458,119.369360,0.031722,88805472,59442465,0,0,80824,0,1,1 +1774180737.838022,30.19,4,3992.50,60.41,1328.50,2365.14,0.00,3518385559057.619141,3518385484548.925293,21,0,119.565763,0.024369,88817874,59444160,0,0,80826,0,1,1 +1774180742.833197,11.83,4,3992.50,55.14,1534.81,2158.85,0.00,0.000000,0.000000,21,0,87.209926,0.025675,88826953,59445648,0,0,80829,0,1,1 +1774180747.834839,2.46,4,3992.50,54.46,1561.29,2132.39,0.00,0.000000,0.000000,21,0,0.011312,0.013967,88827201,59445931,0,0,80831,0,1,1 +1774180752.833226,19.66,4,3992.50,54.92,1543.40,2150.25,0.00,106914.975416,181453.238613,8686582,3065546,24.151492,0.108312,88834874,59451586,0,0,80834,0,1,1 +1774180757.837784,9.66,4,3992.50,54.44,1562.04,2131.59,0.00,3515233330298.798340,3515233255850.912598,237,592,10.158881,0.049342,88838170,59453951,0,0,80836,0,1,1 +1774180762.834313,3.82,4,3992.50,54.20,1571.39,2122.23,0.00,3520881406866.885254,3520881406868.348633,70,0,5.947909,0.036245,88840236,59455632,0,0,80839,0,1,1 +1774180767.833252,1.10,4,3992.50,54.21,1561.19,2122.28,0.00,106907.227613,181433.904018,8687356,3066705,0.005252,0.010926,88840378,59455844,0,0,80841,0,1,1 +1774180772.837943,0.85,4,3992.50,54.22,1560.82,2122.64,0.00,3515139755381.306152,3515139680940.259766,70,0,0.006174,0.013456,88840549,59456105,0,0,80844,0,1,1 +1774180777.833409,0.70,4,3992.50,54.22,1560.61,2122.86,0.00,3521630250605.920898,0.000000,21,0,0.005605,0.013241,88840711,59456359,0,0,80846,0,1,1 +1774180782.837504,23.61,4,3992.50,54.49,1547.92,2133.31,0.00,106793.040405,181309.760058,8686582,3066764,0.053228,95.468360,88844489,59466604,0,0,80849,0,1,1 +1774180787.836424,26.93,4,3992.50,54.42,1544.64,2130.53,0.00,3519197042338.947266,3519196967745.045898,70,0,0.032903,109.583592,88846849,59478117,0,0,80851,0,1,1 +1774180792.836386,11.50,4,3992.50,59.11,1362.10,2314.48,0.00,106897.807363,181577.762523,8686696,3067712,9.826767,0.026461,88848319,59479159,0,0,80854,0,1,1 +1774180797.838102,5.82,4,3992.50,54.30,1552.29,2126.16,0.00,3517230603255.196777,3517230528601.285156,199,0,30.237827,0.018831,88851510,59480044,0,0,80856,0,1,1 +1774180802.834449,1.75,4,3992.50,54.30,1552.28,2126.02,0.00,0.000000,0.000000,199,0,0.005969,0.013178,88851668,59480281,0,0,80859,0,1,1 +1774180807.837219,0.85,4,3992.50,54.11,1559.96,2118.35,0.00,1.830822,0.000195,238,2,0.006176,0.013451,88851839,59480541,0,0,80861,0,1,1 +1774180812.833205,1.05,4,3992.50,54.12,1559.53,2118.79,0.00,0.000000,0.000000,238,2,0.005968,0.012820,88852004,59480788,0,0,80864,0,1,1 +1774180817.833302,1.05,4,3992.50,54.12,1559.30,2119.02,0.00,3518368991930.020996,0.028124,237,592,0.006422,0.012260,88852157,59481018,0,0,80866,0,1,1 +1774180822.836927,2.01,4,3992.50,53.92,1567.18,2111.13,0.00,3515888518792.702637,3515888518794.211426,21,0,0.006175,0.013459,88852328,59481279,0,0,80869,0,1,1 +1774180827.833221,0.75,4,3992.50,53.96,1565.75,2112.57,0.00,0.175130,0.000000,199,0,0.004364,0.008427,88852444,59481445,0,0,80871,0,1,1 +1774180832.833233,1.25,4,3992.50,54.35,1548.41,2128.03,0.00,1.363376,0.028320,237,592,0.006154,0.013456,88852613,59481705,0,0,80874,0,1,1 +1774180837.835618,0.85,4,3992.50,54.32,1549.59,2126.85,0.00,0.000000,0.000000,237,592,0.005342,0.011008,88852761,59481924,0,0,80876,0,1,1 +1774180842.833224,1.10,4,3992.50,54.13,1557.00,2119.43,0.00,0.468681,3520122997194.577148,238,2,0.006208,0.013475,88852934,59482185,0,0,80879,0,1,1 +1774180847.837562,1.00,4,3992.50,54.13,1557.02,2119.42,0.00,3515387622071.364258,3515387622073.369629,21,0,0.005347,0.010955,88853083,59482400,0,0,80881,0,1,1 +1774180852.834081,1.40,4,3992.50,54.16,1556.12,2120.32,0.00,0.000000,0.000000,21,0,0.006179,0.013486,88853254,59482662,0,0,80884,0,1,1 +1774180857.837778,11.44,4,3992.50,54.66,1544.80,2140.18,0.00,1.537242,0.028299,237,592,0.028614,40.043556,88854951,59487287,0,0,80886,0,1,1 +1774180862.837568,1.40,4,3992.50,53.98,1569.66,2113.47,0.00,3518585313174.711914,3518585313176.173828,70,0,0.006028,0.015788,88855132,59487586,0,0,80889,0,1,1 +1774180867.837124,0.95,4,3992.50,53.99,1569.45,2113.68,0.00,0.126964,0.000000,199,0,0.004591,0.012681,88855273,59487827,0,0,80891,0,1,1 +1774180872.837039,0.90,4,3992.50,53.99,1569.24,2113.89,0.00,1.831867,0.000195,238,2,0.003675,0.010180,88855386,59488023,0,0,80894,0,1,1 +1774180877.836799,1.00,4,3992.50,53.87,1574.12,2109.01,0.00,106900.176006,181642.808199,8686711,3068913,0.004603,0.012693,88855528,59488265,0,0,80896,0,1,1 +1774180882.835295,1.10,4,3992.50,54.37,1554.26,2128.86,0.00,3519495837429.853027,3519495762668.306641,238,2,0.002735,0.007636,88855611,59488412,0,0,80899,0,1,1 +1774180887.835016,1.26,4,3992.50,54.47,1553.04,2132.49,0.00,0.000000,0.000000,238,2,0.004578,0.012693,88855751,59488654,0,0,80901,0,1,1 +1774180892.838052,1.00,4,3992.50,54.35,1557.55,2127.99,0.00,3516302196688.572266,3516302196690.403320,199,0,0.003668,0.010170,88855864,59488850,0,0,80904,0,1,1 +1774180897.837227,1.00,4,3992.50,54.40,1555.86,2129.70,0.00,1.832138,0.000195,238,2,0.004604,0.012725,88856006,59489094,0,0,80906,0,1,1 +1774180902.837872,1.00,4,3992.50,54.39,1555.86,2129.68,0.00,3517983355959.405762,3517983355961.237305,199,0,0.004200,0.011425,88856149,59489322,0,0,80909,0,1,1 +1774180907.837654,1.05,4,3992.50,54.39,1555.87,2129.68,0.00,106905.665064,181650.203077,8687485,3069624,0.004459,0.011810,88856289,59489556,0,0,80911,0,1,1 +1774180912.834919,1.00,4,3992.50,54.21,1563.29,2122.26,0.00,3520362450164.444336,3520362375382.393066,70,0,0.004568,0.012709,88856428,59489799,0,0,80914,0,1,1 +1774180917.833302,1.61,4,3992.50,54.20,1560.29,2122.01,0.00,1.959423,0.000195,238,2,0.003651,0.010161,88856539,59489993,0,0,80916,0,1,1 +1774180922.837308,11.23,4,3992.50,70.26,956.36,2750.78,0.00,3515620606152.941406,0.028102,237,592,0.006932,0.015658,88856717,59490273,0,0,80919,0,1,1 +1774180927.837807,71.92,4,3992.50,73.99,817.48,2896.78,0.00,3518086552751.716309,3518086552753.051270,199,0,104.342671,0.055121,88867849,59493996,0,0,80921,0,1,1 +1774180932.837987,63.13,4,3992.50,68.16,1056.91,2668.60,0.00,0.000000,0.000000,199,0,119.563758,0.035548,88880289,59496486,0,0,80924,0,1,1 +1774180937.833876,60.07,4,3992.50,86.14,338.54,3372.46,0.00,3521332559787.791016,0.000000,21,0,118.262005,0.035810,88892551,59499129,0,0,80926,0,1,1 +1774180942.835678,62.04,4,3992.50,74.52,790.38,2917.48,0.00,107682.506465,181587.934498,8743508,3080159,118.523369,0.039835,88904886,59502102,0,0,80929,0,1,1 +1774180947.837189,61.07,4,3992.50,75.87,743.27,2970.61,0.00,3517374229459.093262,3517374155549.184082,199,0,119.133901,0.039360,88917409,59504846,0,0,80931,0,1,1 +1774180952.834177,56.54,4,3992.50,60.06,1338.13,2351.40,0.00,0.000000,0.000000,199,0,119.038750,0.049371,88929701,59508222,0,0,80934,0,1,1 +1774180957.833692,29.84,4,3992.50,60.00,1340.29,2349.23,0.00,1.363511,0.028323,237,592,120.174875,0.049883,88941830,59512002,0,0,80936,0,1,1 +1774180962.837523,29.61,4,3992.50,59.99,1340.78,2348.57,0.00,3515743298704.975098,3515743298706.483887,21,0,120.072912,0.051919,88954028,59515843,0,0,80939,0,1,1 +1774180967.837904,10.34,4,3992.50,53.72,1583.92,2103.28,0.00,108102.302168,181645.792876,8769407,3086055,86.313386,0.036902,88962782,59518381,0,0,80941,0,1,1 +1774180972.837266,4.82,4,3992.50,54.32,1560.23,2126.82,0.00,3518885955085.814941,3518885881527.287109,70,0,2.026935,0.027947,88963730,59519222,0,0,80944,0,1,1 +1774180977.837177,22.36,4,3992.50,54.94,1543.56,2151.21,0.00,3518500209036.794922,0.000000,21,0,30.184850,0.135783,88973470,59526474,0,0,80946,0,1,1 +1774180982.836124,7.18,4,3992.50,54.61,1556.36,2138.29,0.00,0.000000,0.000000,21,0,8.059081,0.041778,88976209,59528587,0,0,80949,0,1,1 +1774180987.834896,1.41,4,3992.50,54.20,1572.61,2122.05,0.00,0.048059,0.000000,70,0,0.006186,0.013627,88976374,59528841,0,0,80951,0,1,1 +1774180992.834879,6.47,4,3992.50,54.36,1566.69,2128.51,0.00,0.126954,0.000000,199,0,0.022245,23.449929,88977666,59531710,0,0,80954,0,1,1 +1774180997.835459,29.85,4,3992.50,55.56,1514.01,2175.34,0.00,3518029522031.912598,0.000000,70,0,0.026912,118.156586,88979578,59543977,0,0,80956,0,1,1 +1774181002.837909,18.38,4,3992.50,54.85,1518.47,2147.40,0.00,108091.232411,181750.314834,8770540,3088924,0.011077,63.460200,88980337,59550616,0,0,80959,0,1,1 +1774181007.837453,10.89,4,3992.50,58.40,1398.62,2286.62,0.00,3518757855222.499023,3518757781520.651367,21,0,15.836397,0.026964,88982405,59551745,0,0,80961,0,1,1 +1774181012.838263,12.85,4,3992.50,92.47,107.05,3620.38,0.00,0.000000,0.000000,21,0,24.237277,0.018419,88985053,59552462,0,0,80964,0,1,1 +1774181017.837498,30.17,4,3992.50,67.80,1075.70,2654.44,0.00,108408.903169,181897.975939,8796638,3093666,0.006298,0.013635,88985233,59552734,0,0,80966,0,1,1 +1774181022.837908,30.04,4,3992.50,56.56,1523.06,2214.38,0.00,3518149057665.819824,3518148984194.002441,21,0,0.005283,0.010996,88985377,59552952,0,0,80969,0,1,1 +1774181027.835329,29.43,4,3992.50,92.45,106.64,3619.62,0.00,108778.944460,181969.948290,8818103,3100026,0.006225,0.013516,88985551,59553216,0,0,80971,0,1,1 +1774181032.838498,29.61,4,3992.50,79.45,619.48,3110.58,0.00,3516208288245.283203,3516208215138.195312,199,0,0.005686,0.012054,88985708,59553456,0,0,80974,0,1,1 +1774181037.836218,30.42,4,3992.50,61.72,1312.38,2416.51,0.00,1.364001,0.028333,237,592,0.006220,0.013554,88985882,59553723,0,0,80976,0,1,1 +1774181042.837574,22.34,4,3992.50,53.62,1619.65,2099.34,0.00,3517483552961.763184,3517483552963.272949,21,0,0.003394,0.005889,88985966,59553842,0,0,80979,0,1,1 +1774181047.834904,0.90,4,3992.50,53.52,1621.46,2095.40,0.00,0.000000,0.000000,21,0,0.006158,0.013453,88986135,59554101,0,0,80981,0,1,1 +1774181052.837912,1.00,4,3992.50,53.51,1621.20,2095.21,0.00,109126.796929,181775.492656,8848311,3108915,0.005310,0.011621,88986281,59554322,0,0,80984,0,1,1 +1774181057.835274,0.95,4,3992.50,53.51,1620.36,2095.20,0.00,3520294900825.763184,3520294828094.972656,21,0,0.006270,0.013506,88986458,59554585,0,0,80986,0,1,1 +1774181062.836404,1.00,4,3992.50,53.37,1625.54,2089.75,0.00,0.048036,0.000000,70,0,0.006178,0.013440,88986629,59554844,0,0,80989,0,1,1 +1774181067.838034,1.25,4,3992.50,54.07,1586.94,2117.07,0.00,0.000000,0.000000,70,0,0.005237,0.010946,88986770,59555058,0,0,80991,0,1,1 +1774181072.837858,0.95,4,3992.50,53.96,1590.45,2112.48,0.00,0.000000,0.000000,70,0,0.006167,0.013469,88986940,59555319,0,0,80994,0,1,1 +1774181077.833247,1.05,4,3992.50,53.68,1600.61,2101.83,0.00,1.491708,0.028346,237,592,0.005295,0.010967,88987085,59555534,0,0,80996,0,1,1 +1774181082.834873,4.41,4,3992.50,54.87,1529.20,2148.18,0.00,0.468305,3517293425158.455566,238,2,0.018688,14.233220,88988084,59557496,0,0,80999,0,1,1 +1774181087.837455,8.49,4,3992.50,54.23,1551.86,2123.24,0.00,3516621338857.014160,3516621338859.020020,21,0,0.012368,25.838565,88988684,59560471,0,0,81001,0,1,1 +1774181092.837826,1.10,4,3992.50,54.09,1557.54,2117.57,0.00,2.006687,0.000195,238,2,0.003662,0.010167,88988796,59560666,0,0,81004,0,1,1 +1774181097.837725,1.30,4,3992.50,54.22,1552.28,2122.81,0.00,3518508165931.673828,3518508165933.681152,21,0,0.004107,0.011400,88988921,59560882,0,0,81006,0,1,1 +1774181102.836135,8.83,4,3992.50,79.73,604.00,3121.53,0.00,1.538868,0.028329,237,592,0.004174,0.011476,88989051,59561104,0,0,81009,0,1,1 +1774181107.835807,29.81,4,3992.50,66.45,1121.25,2601.80,0.00,0.468488,3518668215785.140625,238,2,0.004354,0.012072,88989184,59561335,0,0,81011,0,1,1 +1774181112.837820,29.60,4,3992.50,58.90,1425.96,2305.97,0.00,3517021410811.680664,0.028114,237,592,0.003940,0.010843,88989307,59561546,0,0,81014,0,1,1 +1774181117.836776,30.87,4,3992.50,87.32,316.01,3418.93,0.00,3519171855713.952148,3519171855715.414551,70,0,0.005354,0.013431,88989448,59561787,0,0,81016,0,1,1 +1774181122.834913,29.29,4,3992.50,87.24,319.11,3415.59,0.00,3519748660898.655273,0.000000,21,0,0.003983,0.010893,88989574,59562000,0,0,81019,0,1,1 +1774181127.834033,31.01,4,3992.50,58.06,1463.61,2273.17,0.00,1.538650,0.028325,237,592,0.003738,0.010253,88989692,59562200,0,0,81021,0,1,1 +1774181132.836910,22.85,4,3992.50,53.82,1618.33,2107.18,0.00,3516414168690.463867,3516414168691.973145,21,0,0.004800,0.012858,88989847,59562456,0,0,81024,0,1,1 +1774181137.834985,0.95,4,3992.50,53.71,1620.90,2103.05,0.00,110217.577569,182013.993121,8922844,3129722,0.003664,0.010162,88989959,59562650,0,0,81026,0,1,1 +1774181142.834910,1.05,4,3992.50,53.90,1612.65,2110.44,0.00,4.458562,0.035547,8923638,3130321,0.004603,0.012702,88990101,59562893,0,0,81029,0,1,1 +1774181147.837943,5.41,4,3992.50,60.64,1314.97,2374.04,0.00,3516304318078.000000,3516304246355.147949,238,2,1.410016,0.017196,88990571,59563365,0,0,81031,0,1,1 +1774181152.834856,39.94,4,3992.50,60.50,1320.28,2368.67,0.00,0.000000,0.000000,238,2,119.242868,0.046871,89002958,59566522,0,0,81034,0,1,1 +1774181157.837893,31.86,4,3992.50,60.63,1315.03,2373.82,0.00,3516301063720.845215,3516301063722.851074,21,0,121.698994,0.039410,89015543,59569149,0,0,81036,0,1,1 +1774181162.837700,34.93,4,3992.50,60.48,1325.38,2367.92,0.00,110191.684920,181951.454787,8924808,3130210,120.171731,0.030505,89027935,59571362,0,0,81039,0,1,1 +1774181167.837651,30.42,4,3992.50,60.57,1321.96,2371.36,0.00,3518471229274.140625,3518471157516.403809,70,0,119.968948,0.041958,89040274,59574273,0,0,81041,0,1,1 +1774181172.837896,31.45,4,3992.50,60.43,1327.40,2365.91,0.00,1.958693,0.000195,238,2,119.360379,0.041124,89052481,59577071,0,0,81044,0,1,1 +1774181177.836514,30.95,4,3992.50,60.37,1329.22,2363.73,0.00,110220.021503,181994.850729,8925587,3130898,119.398897,0.039616,89064688,59579825,0,0,81046,0,1,1 +1774181182.834600,31.05,4,3992.50,60.26,1333.08,2359.15,0.00,3519783739793.756348,3519783668011.802734,237,592,120.012018,0.030682,89076970,59581889,0,0,81049,0,1,1 +1774181187.837585,30.99,4,3992.50,60.40,1326.68,2364.92,0.00,3516338135754.571289,3516338135755.905762,199,0,119.091505,0.034047,89089060,59584463,0,0,81051,0,1,1 +1774181192.837849,16.48,4,3992.50,90.81,151.53,3555.54,0.00,1.363307,0.028319,237,592,65.098999,0.034365,89095926,59586443,0,0,81054,0,1,1 +1774181197.833846,52.65,4,3992.50,89.07,217.27,3487.25,0.00,110571.320055,182094.770721,8944501,3134867,22.148381,0.110663,89102633,59591535,0,0,81056,0,1,0 +1774181202.835407,25.78,4,3992.50,88.92,216.37,3481.34,0.00,2.694471,0.016011,8944665,3134874,0.007929,0.026126,89102922,59592027,0,0,81059,0,1,0 +1774181207.836430,32.95,4,3992.50,90.79,117.16,3554.67,0.00,13.826076,0.004687,8946341,3134881,0.008877,0.029321,89103245,59592585,0,0,81061,0,1,1 +1774181212.837069,81.35,4,3992.50,93.90,39.19,3676.51,0.00,3517987768319.807617,3517987696880.752441,21,0,0.011430,0.038181,89103654,59593308,0,0,81064,0,1,1 +1774181217.839380,78.97,4,3992.50,95.83,2.68,3752.02,0.00,0.000000,0.000000,21,0,0.007136,0.023154,89103918,59593762,0,0,81066,0,1,1 +1774181222.837185,69.78,4,3992.50,44.78,1972.71,1753.07,0.00,0.175077,0.000000,199,0,0.009622,0.031053,89104276,59594378,0,0,81069,0,1,1 +1774181227.834457,75.69,4,3992.50,49.49,1752.79,1937.81,0.00,113686.323249,182050.335558,9229870,3137319,0.013296,0.033519,89104635,59594947,0,0,81071,0,1,1 +1774181232.834402,26.34,4,3992.50,49.94,1735.12,1955.41,0.00,3518475486754.160156,3518475418424.868164,238,2,16.093667,0.080917,89109878,59599027,0,0,81074,0,1,1 +1774181237.833223,10.60,4,3992.50,50.33,1719.99,1970.47,0.00,3519266924624.731445,3519266924626.563965,199,0,2.028095,0.034390,89110858,59599983,0,0,81076,0,1,1 +1774181242.834260,6.17,4,3992.50,50.28,1721.77,1968.64,0.00,3517708047102.355957,0.000000,21,0,0.009408,0.018655,89111085,59600321,0,0,81079,0,1,1 +1774181247.834906,4.11,4,3992.50,50.28,1725.75,1968.76,0.00,113635.861408,181927.810325,9230108,3137179,0.009114,0.022349,89111346,59600742,0,0,81081,0,1,1 +1774181252.837602,3.46,4,3992.50,50.11,1732.80,1961.73,0.00,4.116433,1.087695,9230884,3138656,0.009593,0.022973,89111623,59601184,0,0,81084,0,1,1 +1774181257.837542,4.87,4,3992.50,50.09,1733.38,1961.14,0.00,3518479131906.286133,3518479063607.548828,199,0,0.009221,0.023360,89111896,59601629,0,0,81086,0,1,1 +1774181262.833405,2.86,4,3992.50,50.09,1733.52,1961.00,0.00,113744.702333,182103.902887,9230120,3138258,0.008119,0.018390,89112121,59601983,0,0,81089,0,1,1 +1774181267.837484,2.21,4,3992.50,50.10,1733.00,1961.52,0.00,3515569083427.643066,3515569015180.679688,199,0,0.006409,0.014106,89112300,59602257,0,0,81091,0,1,1 +1774181272.833596,2.16,4,3992.50,50.12,1732.23,1962.29,0.00,113743.212788,182094.975888,9230897,3138950,0.006787,0.014620,89112484,59602542,0,0,81094,0,1,1 +1774181277.833298,3.71,4,3992.50,50.40,1721.49,1973.15,0.00,3518646967741.572754,3518646899439.064453,21,0,0.008592,0.021553,89112737,59602953,0,0,81096,0,1,1 +1774181282.837739,8.92,4,3992.50,85.68,382.69,3354.69,0.00,0.174845,0.000000,199,0,0.010412,0.022289,89112995,59603354,0,0,81099,0,1,1 +1774181287.834382,35.24,4,3992.50,88.03,265.66,3446.55,0.00,3520801761742.250488,0.000000,70,0,0.010505,0.021756,89113253,59603747,0,0,81101,0,1,1 +1774181292.835264,31.95,4,3992.50,84.98,409.56,3327.33,0.00,1.958443,0.000195,238,2,0.006738,0.014125,89113430,59604022,0,0,81104,0,1,1 +1774181297.834061,31.02,4,3992.50,79.13,630.88,3097.95,0.00,3519283945080.633789,0.028132,237,594,0.006226,0.013531,89113604,59604287,0,0,81106,0,1,1 +1774181302.833935,30.39,4,3992.50,75.10,800.39,2940.43,0.00,114387.725003,181971.546797,9278867,3152211,0.005306,0.010985,89113750,59604504,0,0,81109,0,1,1 +1774181307.834073,32.90,4,3992.50,60.44,1337.89,2366.45,0.00,190.953330,3.321490,9291410,3155728,0.007272,0.018219,89113964,59604852,0,0,81111,0,1,1 +1774181312.837744,31.34,4,3992.50,50.25,1752.30,1967.50,0.00,3515855540107.520020,3515855472763.951172,70,0,0.008441,0.020965,89114183,59605219,0,0,81114,0,1,1 +1774181317.835059,5.52,4,3992.50,50.29,1732.14,1968.84,0.00,114821.079937,182071.479098,9303286,3159038,0.009500,0.020954,89114405,59605578,0,0,81116,0,1,1 +1774181322.838115,3.96,4,3992.50,50.29,1730.41,1968.93,0.00,3516288026086.307617,3516287958912.951172,199,0,0.006056,0.015861,89114580,59605881,0,0,81119,0,1,1 +1774181327.833274,1.51,4,3992.50,50.20,1733.34,1965.43,0.00,3521846797518.290039,0.000000,70,0,0.003681,0.010187,89114693,59606076,0,0,81121,0,1,1 +1774181332.837052,4.06,4,3992.50,50.22,1732.34,1966.27,0.00,3515780932321.667480,0.000000,21,0,0.005000,0.013756,89114848,59606341,0,0,81124,0,1,1 +1774181337.833124,1.96,4,3992.50,50.45,1720.43,1975.19,0.00,0.000000,0.000000,21,0,0.003678,0.010166,89114961,59606535,0,0,81126,0,1,1 +1774181342.837891,3.91,4,3992.50,50.48,1719.29,1976.49,0.00,0.048001,0.000000,70,0,0.007585,0.019157,89115175,59606889,0,0,81129,0,1,1 +1774181347.838596,3.77,4,3992.50,50.40,1722.38,1973.36,0.00,1.490122,0.028316,237,594,0.007982,0.019045,89115380,59607226,0,0,81131,0,1,1 +1774181352.837307,5.62,4,3992.50,50.37,1723.54,1972.21,0.00,114797.890457,182022.021084,9304410,3160524,0.008785,0.019708,89115592,59607576,0,0,81134,0,1,1 +1774181357.833219,1.36,4,3992.50,50.38,1723.40,1972.36,0.00,0.000000,0.287735,9304410,3160682,0.004581,0.012703,89115732,59607818,0,0,81136,0,1,1 +1774181362.833221,1.46,4,3992.50,50.38,1723.41,1972.35,0.00,3518435568519.764160,3518435501314.174316,70,0,0.003662,0.010168,89115844,59608013,0,0,81139,0,1,1 +1774181367.834919,1.65,4,3992.50,50.52,1710.97,1978.06,0.00,1.489826,0.028311,237,594,0.004584,0.012696,89115985,59608256,0,0,81141,0,1,1 +1774181372.838242,7.12,4,3992.50,62.68,1289.51,2454.16,0.00,0.468146,3516100627107.854980,238,2,0.009030,0.021615,89116217,59608639,0,0,81144,0,1,1 +1774181377.835359,34.64,4,3992.50,89.28,236.62,3495.60,0.00,3520467125012.976074,0.028141,237,594,0.009608,0.021754,89116445,59609012,0,0,81146,0,1,1 +1774181382.835958,32.33,4,3992.50,79.26,628.35,3103.11,0.00,3518015658433.770996,3518015658435.280762,21,0,0.007497,0.020203,89116667,59609394,0,0,81149,0,1,1 +1774181387.838758,30.83,4,3992.50,66.21,1129.93,2592.33,0.00,115270.687554,181884.665772,9341155,3170668,0.004590,0.012698,89116808,59609637,0,0,81151,0,1,1 +1774181392.836338,31.21,4,3992.50,60.48,1364.77,2368.06,0.00,173.486990,3.169112,9352635,3174696,0.003679,0.010185,89116921,59609833,0,0,81154,0,1,1 +1774181397.854950,32.53,4,3992.50,95.37,22.02,3734.09,0.00,3505388140897.177734,3505388074662.520020,199,0,0.004474,0.012666,89117063,59610077,0,0,81156,0,1,1 +1774181402.835925,30.39,4,3992.50,50.92,1745.64,1993.74,0.00,3531876393423.831543,0.000000,70,0,0.007906,0.019841,89117279,59610440,0,0,81159,0,1,1 +1774181407.834952,2.56,4,3992.50,51.06,1704.24,1999.11,0.00,0.000000,0.000000,70,0,0.005160,0.012667,89117414,59610668,0,0,81161,0,1,1 +1774181412.837872,6.87,4,3992.50,51.73,1675.45,2025.21,0.00,1.489462,0.028304,237,594,0.009659,0.020912,89117631,59611025,0,0,81164,0,1,1 +1774181417.837312,1.30,4,3992.50,50.94,1705.83,1994.61,0.00,0.000000,0.000000,237,594,0.003675,0.010159,89117744,59611219,0,0,81166,0,1,1 +1774181422.837257,1.25,4,3992.50,50.85,1709.23,1991.02,0.00,0.468462,3518475826970.153809,238,2,0.005508,0.013380,89117887,59611466,0,0,81169,0,1,1 +1774181427.837714,1.45,4,3992.50,51.09,1693.27,2000.17,0.00,115879.916439,181980.190087,9377105,3181129,0.003674,0.010157,89118000,59611660,0,0,81171,0,1,1 +1774181432.833877,2.06,4,3992.50,50.80,1704.20,1988.80,0.00,0.256447,0.572705,9377124,3181668,0.006990,0.019132,89118217,59612023,0,0,81174,0,1,1 +1774181437.837500,6.91,4,3992.50,50.73,1706.85,1986.10,0.00,3515889036792.345215,3515888970735.590332,21,0,0.011672,0.025911,89118481,59612459,0,0,81176,0,1,1 +1774181442.834892,5.53,4,3992.50,50.68,1708.73,1984.16,0.00,115958.396319,182093.218644,9377954,3182458,0.007550,0.018770,89118678,59612801,0,0,81179,0,1,1 +1774181447.834901,1.51,4,3992.50,50.68,1708.73,1984.19,0.00,3518431204324.587402,3518431204328.485352,9377191,3181869,0.004578,0.013014,89118818,59613045,0,0,81181,0,1,1 +1774181452.835482,2.56,4,3992.50,50.72,1706.99,1985.93,0.00,3518028151768.177734,3518028085671.462891,199,0,0.003674,0.010167,89118931,59613240,0,0,81184,0,1,1 +1774181457.835998,1.81,4,3992.50,50.73,1706.86,1986.25,0.00,3518074043728.409180,0.000000,21,0,0.004585,0.012699,89119072,59613483,0,0,81186,0,1,1 +1774181462.835337,9.82,4,3992.50,95.82,6.11,3751.58,0.00,2.007101,0.000195,238,2,0.010756,0.024791,89119333,59613912,0,0,81189,0,1,1 +1774181467.837952,31.49,4,3992.50,95.80,5.33,3750.74,0.00,3516598332490.764160,3516598332492.721680,70,0,0.008145,0.020920,89119561,59614297,0,0,81191,0,1,1 +1774181472.838640,33.90,4,3992.50,90.23,181.02,3532.72,0.00,116276.474146,181980.623490,9403288,3188912,0.007870,0.019088,89119772,59614651,0,0,81194,0,1,1 +1774181477.836798,31.69,4,3992.50,81.86,524.75,3204.98,0.00,3519734257567.328613,3519734191828.441895,237,594,0.004637,0.012735,89119916,59614896,0,0,81196,0,1,1 +1774181482.836848,30.16,4,3992.50,94.85,23.26,3713.61,0.00,3518401518920.333984,3518401518921.844238,21,0,0.003744,0.010205,89120034,59615094,0,0,81199,0,1,1 +1774181487.833392,30.82,4,3992.50,53.67,1643.43,2101.16,0.00,1.539443,0.028340,237,594,0.004608,0.012714,89120176,59615337,0,0,81201,0,1,1 +1774181492.835280,30.26,4,3992.50,50.84,1750.11,1990.43,0.00,3517108941036.147461,3517108941037.608887,70,0,0.006120,0.016623,89120369,59615656,0,0,81204,0,1,1 +1774181497.834884,18.62,4,3992.50,51.45,1674.78,2014.41,0.00,117013.546902,182055.280128,9450661,3203502,0.039570,59.311598,89122824,59622435,0,0,81206,0,1,1 +1774181502.837729,34.31,4,3992.50,51.63,1660.23,2021.25,0.00,3516436103299.913086,3516436038298.857422,237,594,0.043771,118.317081,89125807,59635042,0,0,81209,0,1,1 +1774181507.834909,9.32,4,3992.50,50.84,1688.79,1990.31,0.00,117073.526557,182295.507020,9460159,3204387,0.013495,27.468755,89126583,59638185,0,0,81211,0,1,1 +1774181512.834900,11.18,4,3992.50,56.10,1482.33,2196.64,0.00,46.810140,32.063923,9462531,3205153,15.028641,0.019590,89128413,59639168,0,0,81214,0,1,1 +1774181517.836436,14.95,4,3992.50,51.87,1645.93,2031.00,0.00,7.279796,0.200720,9462904,3205247,25.053794,34.867516,89132427,59643815,0,0,81216,0,1,1 +1774181522.838022,5.66,4,3992.50,51.49,1660.49,2015.92,0.00,3517321009986.935059,3517320944845.750488,21,0,0.008593,5.222924,89132735,59644685,0,0,81219,0,1,1 +1774181527.838137,4.66,4,3992.50,51.44,1662.29,2014.12,0.00,0.048046,0.000000,70,0,0.012550,0.025040,89133026,59645124,0,0,81221,0,1,1 +1774181532.833921,3.51,4,3992.50,51.25,1669.81,2006.60,0.00,1.960442,0.000195,238,2,0.008360,0.022859,89133278,59645559,0,0,81224,0,1,1 +1774181537.833325,1.15,4,3992.50,51.19,1672.32,2004.10,0.00,117075.802027,182281.798972,9462952,3205981,0.004555,0.012060,89133411,59645789,0,0,81226,0,1,1 +1774181542.837507,1.10,4,3992.50,51.23,1670.79,2005.62,0.00,3515496271614.005859,3515496206472.233887,70,0,0.004599,0.012723,89133553,59646034,0,0,81229,0,1,1 +1774181547.837392,1.40,4,3992.50,51.49,1660.30,2016.10,0.00,0.000000,0.000000,70,0,0.004374,0.012034,89133688,59646262,0,0,81231,0,1,1 +1774181552.839100,8.14,4,3992.50,95.15,32.83,3725.29,0.00,117025.042830,182204.553534,9462518,3205780,0.007773,0.019759,89133905,59646625,0,0,81234,0,1,1 +1774181557.835156,32.83,4,3992.50,95.40,4.71,3735.17,0.00,3521214458877.920898,3521214393624.557617,199,0,0.008323,0.019694,89134116,59646974,0,0,81236,0,1,1 +1774181562.839409,34.96,4,3992.50,94.10,26.31,3684.40,0.00,117378.091485,182119.078410,9489746,3213419,0.008697,0.020462,89134347,59647347,0,0,81239,0,1,1 +1774181567.838073,31.13,4,3992.50,88.74,250.65,3474.27,0.00,168.300443,3.235435,9501311,3216967,0.006003,0.015332,89134526,59647645,0,0,81241,0,1,1 +1774181572.837615,30.72,4,3992.50,87.66,301.86,3432.04,0.00,3518759555992.601074,3518759491355.764648,70,0,0.004644,0.012086,89134669,59647886,0,0,81244,0,1,1 +1774181577.836970,30.27,4,3992.50,90.77,166.37,3553.68,0.00,118003.318304,182307.141670,9523413,3223856,0.002752,0.008293,89134753,59648038,0,0,81246,0,1,1 +1774181582.839770,46.46,4,3992.50,72.94,881.91,2855.73,0.00,3516467801410.088379,3516467737150.596680,21,0,3.414435,0.023106,89135553,59648786,0,0,81249,0,1,1 +1774181587.836972,40.96,4,3992.50,57.55,1440.76,2253.30,0.00,0.000000,0.000000,21,0,118.041322,0.067116,89147904,59652623,0,0,81251,0,1,1 +1774181592.834892,31.55,4,3992.50,57.47,1443.78,2250.20,0.00,1.539019,0.028332,237,594,120.220226,0.049758,89160260,59655709,0,0,81254,0,1,1 +1774181597.837491,32.70,4,3992.50,57.41,1446.24,2247.74,0.00,118153.345140,182193.008149,9538886,3227298,120.107895,0.043292,89172706,59658489,0,0,81256,0,1,1 +1774181602.833764,31.08,4,3992.50,57.43,1445.48,2248.40,0.00,4.177235,0.059419,9539664,3227908,119.055245,0.036170,89184973,59660986,0,0,81259,0,1,1 +1774181607.834822,30.33,4,3992.50,57.24,1452.14,2241.06,0.00,2.365125,0.051649,9539788,3227923,119.342494,0.049321,89197282,59664418,0,0,81261,0,1,1 +1774181612.837371,31.66,4,3992.50,57.37,1446.34,2246.14,0.00,1.884195,0.334985,9539914,3228293,119.506970,0.040952,89209623,59667014,0,0,81264,0,1,1 +1774181617.837549,30.33,4,3992.50,57.67,1434.16,2257.95,0.00,3518312389006.852539,0.300575,9539143,3227912,119.363219,0.034434,89221950,59669357,0,0,81266,0,1,1 +1774181622.836550,33.05,4,3992.50,57.16,1453.14,2238.06,0.00,3519139841774.093750,3519139777693.471680,21,0,119.598241,0.043201,89234436,59671730,0,0,81269,0,1,1 +1774181627.834891,7.02,4,3992.50,51.08,1691.18,1999.91,0.00,0.000000,0.000000,21,0,66.918580,0.025403,89241357,59673122,0,0,81271,0,1,1 +1774181632.836411,9.57,4,3992.50,50.93,1696.83,1994.14,0.00,118188.624761,182233.969460,9539317,3228199,2.025006,0.025245,89242188,59673862,0,0,81274,0,1,1 +1774181637.833487,32.88,4,3992.50,51.44,1676.71,2014.16,0.00,3520495657544.531738,3520495593442.064453,199,0,28.197022,0.131809,89251352,59680739,0,0,81276,0,1,1 +1774181642.833320,12.55,4,3992.50,91.93,82.19,3599.42,0.00,1.363424,0.028321,237,594,10.057563,0.042930,89254485,59682994,0,0,81279,0,1,1 +1774181647.838867,37.10,4,3992.50,56.61,1509.35,2216.52,0.00,3514538212522.489258,3514538212523.949707,70,0,0.016942,0.034506,89254866,59683583,0,0,81281,0,1,1 +1774181652.839203,39.10,4,3992.50,58.35,1443.40,2284.42,0.00,0.000000,0.000000,70,0,0.517287,27.160154,89295308,59726491,0,0,81284,0,1,1 +1774181657.836550,71.09,4,3992.50,60.79,1338.62,2380.20,0.00,3520305195469.634766,0.000000,21,0,1.984562,120.177404,89452585,59893619,0,0,81286,0,1,1 +1774181662.835240,63.31,4,3992.50,62.64,1292.15,2452.37,0.00,0.000000,0.000000,21,0,0.736287,61.051381,89510624,59956400,0,0,81289,0,1,1 +1774181667.835256,39.86,4,3992.50,81.60,529.82,3194.97,0.00,119336.707708,182510.020237,9753537,3241838,9.827009,0.024786,89512118,59957392,0,0,81291,0,1,1 +1774181672.835295,34.72,4,3992.50,51.38,1749.92,2011.78,0.00,3518409546030.358887,3518409482855.829102,237,594,30.249208,0.019185,89515371,59958294,0,0,81294,0,1,1 +1774181677.836307,2.81,4,3992.50,51.22,1726.72,2005.50,0.00,3517725115083.245117,3517725115084.580078,199,0,0.008409,0.019694,89515609,59958658,0,0,81296,0,1,1 +1774181682.837707,5.27,4,3992.50,51.44,1709.96,2013.95,0.00,3517452710450.877930,0.000000,21,0,0.012850,0.025457,89515892,59959091,0,0,81299,0,1,1 +1774181687.835718,3.31,4,3992.50,51.58,1694.86,2019.36,0.00,119554.688533,182585.278559,9765194,3244214,0.011119,0.025497,89516193,59959565,0,0,81301,0,1,1 +1774181692.834893,2.26,4,3992.50,51.47,1698.91,2015.29,0.00,3519018089115.821289,3519018026099.894531,21,0,0.009804,0.023610,89516475,59960018,0,0,81304,0,1,1 +1774181697.833221,2.81,4,3992.50,51.33,1693.48,2009.78,0.00,0.000000,0.000000,21,0,0.006774,0.014136,89516655,59960293,0,0,81306,0,1,1 +1774181702.838149,1.95,4,3992.50,51.25,1696.23,2006.36,0.00,0.000000,0.000000,21,0,0.005259,0.010923,89516798,59960506,0,0,81309,0,1,1 +1774181707.837409,3.86,4,3992.50,51.06,1702.71,1998.98,0.00,0.048054,0.000000,70,0,0.010247,0.021842,89517051,59960892,0,0,81311,0,1,1 +1774181712.837589,5.11,4,3992.50,51.10,1699.84,2000.61,0.00,3518310456823.310547,0.000000,21,0,0.010746,0.022950,89517315,59961305,0,0,81314,0,1,1 +1774181717.833298,3.11,4,3992.50,50.98,1704.14,1995.87,0.00,0.175150,0.000000,199,0,0.011150,0.025508,89517618,59961779,0,0,81316,0,1,1 +1774181722.833236,3.86,4,3992.50,51.02,1702.52,1997.46,0.00,119513.236451,182516.763259,9765525,3244994,0.010837,0.024317,89517910,59962238,0,0,81319,0,1,1 +1774181727.837535,2.45,4,3992.50,51.29,1691.91,2008.09,0.00,3515414051244.887207,3515413988294.448730,238,2,0.006733,0.014080,89518087,59962510,0,0,81321,0,1,1 +1774181732.837413,3.61,4,3992.50,80.60,528.15,3155.50,0.00,119510.117058,182519.307847,9764849,3244626,0.005501,0.011563,89518238,59962735,0,0,81324,0,1,1 +1774181737.834000,32.01,4,3992.50,94.52,35.91,3700.53,0.00,3520840707470.871582,3520840644422.010742,199,0,0.007699,0.019066,89518463,59963100,0,0,81326,0,1,1 +1774181742.837159,47.36,4,3992.50,82.29,514.11,3221.98,0.00,119854.498002,182445.097390,9794067,3248925,0.739621,40.756518,89576457,60023430,0,0,81329,0,1,1 +1774181747.838034,32.96,4,3992.50,76.75,740.02,3005.01,0.00,3517821520845.289062,3517821458224.269531,238,2,0.006278,0.014387,89576620,60023695,0,0,81331,0,1,1 +1774181752.835350,30.68,4,3992.50,77.21,720.76,3023.09,0.00,3520326790050.049316,3520326790052.008789,70,0,0.008438,0.023098,89576879,60024138,0,0,81334,0,1,1 +1774181757.834133,32.04,4,3992.50,68.35,1069.52,2676.09,0.00,3519293523383.261719,0.000000,21,0,0.005198,0.013379,89577029,60024396,0,0,81336,0,1,1 +1774181762.833813,30.72,4,3992.50,51.17,1739.88,2003.29,0.00,0.000000,0.000000,21,0,0.004637,0.012753,89577173,60024643,0,0,81339,0,1,1 +1774181767.833216,1.50,4,3992.50,51.36,1722.80,2010.97,0.00,2.007076,0.000195,238,2,0.006045,0.016575,89577360,60024957,0,0,81341,0,1,1 +1774181772.833204,3.96,4,3992.50,51.35,1714.72,2010.49,0.00,3518445511709.086426,3518445511710.918457,199,0,0.007134,0.017126,89577533,60025248,0,0,81344,0,1,1 +1774181777.833755,3.37,4,3992.50,51.21,1718.59,2004.96,0.00,3518049445955.041992,0.000000,21,0,0.011656,0.027292,89577825,60025728,0,0,81346,0,1,1 +1774181782.837711,2.30,4,3992.50,50.96,1728.23,1995.28,0.00,0.174862,0.000000,199,0,0.008303,0.022892,89578085,60026168,0,0,81349,0,1,1 +1774181787.837485,2.91,4,3992.50,51.46,1697.53,2014.77,0.00,120759.645487,182578.015292,9860839,3257651,0.006438,0.016638,89578278,60026492,0,0,81351,0,1,1 +1774181792.837689,1.10,4,3992.50,51.14,1709.89,2002.40,0.00,3518293131536.267090,3518293069723.221191,199,0,0.004652,0.012752,89578423,60026739,0,0,81354,0,1,1 +1774181797.833972,1.76,4,3992.50,50.96,1717.03,1995.23,0.00,3521055202861.154785,0.000000,21,0,0.006080,0.016611,89578612,60027055,0,0,81356,0,1,1 +1774181802.833259,3.51,4,3992.50,50.88,1718.29,1992.26,0.00,2.007122,0.000195,238,2,0.008424,0.018375,89578802,60027364,0,0,81359,0,1,1 +1774181807.833556,17.36,4,3992.50,57.64,1437.47,2256.78,0.00,3518228492086.837402,3518228492088.844238,21,0,15.037487,0.040081,89580924,60028782,0,0,81361,0,1,1 +1774181812.837385,35.65,4,3992.50,57.57,1440.41,2253.86,0.00,0.000000,0.000000,21,0,119.279186,0.056275,89593285,60032136,0,0,81364,0,1,1 +1774181817.837388,30.93,4,3992.50,57.61,1445.11,2255.59,0.00,0.000000,0.000000,21,0,118.967805,0.038459,89605565,60034607,0,0,81366,0,1,1 +1774181822.837075,30.46,4,3992.50,57.53,1447.85,2252.59,0.00,0.048050,0.000000,70,0,118.774283,0.040683,89617804,60037293,0,0,81369,0,1,1 +1774181827.837627,13.80,4,3992.50,50.48,1716.29,1976.28,0.00,3518048720613.471191,0.000000,21,0,38.655542,0.024656,89621847,60038557,0,0,81371,0,1,1 +1774181832.833743,5.18,4,3992.50,50.44,1717.70,1974.80,0.00,0.048084,0.000000,70,0,0.011841,0.025705,89622132,60039007,0,0,81374,0,1,1 +1774181837.837699,1.75,4,3992.50,50.37,1720.34,1972.19,0.00,120676.226031,182428.003458,9873064,3258721,0.006413,0.017747,89622330,60039345,0,0,81376,0,1,1 +1774181842.833730,37.19,4,3992.50,56.60,1475.97,2216.08,0.00,3521231862716.840332,3521231862720.887207,9872294,3258183,83.196471,0.102627,89631369,60043226,0,0,81379,0,1,1 +1774181847.833311,33.84,4,3992.50,56.68,1472.04,2219.25,0.00,3518732378731.242676,3518732316919.416992,238,2,122.179995,0.055630,89643818,60046995,0,0,81381,0,1,1 +1774181852.834336,30.45,4,3992.50,56.48,1473.58,2211.46,0.00,120740.949812,182535.275680,9872296,3258434,120.540808,0.049080,89656010,60050635,0,0,81384,0,1,1 +1774181857.835378,30.47,4,3992.50,56.48,1473.04,2211.30,0.00,4.108421,0.040909,9873070,3259043,120.142305,0.047874,89668280,60053893,0,0,81386,0,1,1 +1774181862.833270,30.56,4,3992.50,56.56,1469.00,2214.57,0.00,3519921666467.080566,3519921604638.079102,238,2,119.816422,0.050807,89680435,60057388,0,0,81389,0,1,1 +1774181867.833208,1.96,4,3992.50,50.85,1692.78,1990.97,0.00,120767.244972,182575.800236,9872305,3258521,48.869159,0.025724,89685414,60059007,0,0,81391,0,1,1 +1774181872.833199,11.35,4,3992.50,50.51,1706.24,1977.48,0.00,3518443085655.529785,3518443023847.632324,238,2,4.041936,0.044459,89687025,60060425,0,0,81394,0,1,1 +1774181877.834395,21.37,4,3992.50,51.29,1675.42,2007.93,0.00,3517596012377.879883,3517596012379.837891,70,0,16.103428,0.077160,89692273,60064251,0,0,81396,0,1,1 +1774181882.833206,16.79,4,3992.50,50.96,1688.00,1995.29,0.00,1.490687,0.028327,237,594,20.134013,0.102358,89698957,60069438,0,0,81399,0,1,1 +1774181887.836466,16.81,4,3992.50,51.31,1670.13,2009.06,0.00,0.468152,3516144563781.899902,238,2,0.034428,59.660572,89701182,60076025,0,0,81401,0,1,1 +1774181892.834880,31.07,4,3992.50,51.57,1651.52,2019.15,0.00,0.000000,0.000000,238,2,0.038999,123.020112,89703961,60088982,0,0,81404,0,1,1 +1774181897.834858,8.47,4,3992.50,51.45,1654.48,2014.53,0.00,3518452219303.589844,0.028125,237,594,0.012659,22.447503,89704564,60091628,0,0,81406,0,1,1 +1774181902.837612,14.30,4,3992.50,56.05,1474.30,2194.61,0.00,0.000000,0.000000,237,594,40.048813,0.036131,89709199,60093334,0,0,81409,0,1,1 +1774181907.835216,5.17,4,3992.50,52.52,1612.68,2056.11,0.00,3520124242505.379395,3520124242506.890625,21,0,0.014765,0.028648,89709556,60093847,0,0,81411,0,1,1 +1774181912.834911,1.25,4,3992.50,51.87,1637.96,2030.87,0.00,1.538473,0.028322,237,594,0.005811,0.012039,89709704,60094074,0,0,81414,0,1,1 +1774181917.836474,1.05,4,3992.50,51.54,1651.00,2017.84,0.00,0.000000,0.000000,237,594,0.005821,0.012287,89709869,60094316,0,0,81416,0,1,1 +1774181922.838021,1.25,4,3992.50,51.54,1650.77,2018.06,0.00,120773.551614,182725.556667,9873409,3262242,0.005707,0.012223,89710025,60094555,0,0,81419,0,1,1 +1774181927.837886,1.35,4,3992.50,51.34,1658.66,2010.16,0.00,3518532269998.290527,3518532208026.947754,21,0,0.008537,0.019875,89710269,60094935,0,0,81421,0,1,1 +1774181932.834887,2.41,4,3992.50,51.16,1665.52,2003.17,0.00,2.008040,0.000195,238,2,0.008908,0.017721,89710478,60095252,0,0,81424,0,1,1 +1774181937.835425,4.62,4,3992.50,51.38,1657.35,2011.65,0.00,120797.466117,182762.748371,9873409,3262564,0.012254,0.024966,89710752,60095674,0,0,81426,0,1,1 +1774181942.833233,2.06,4,3992.50,51.42,1655.94,2013.05,0.00,3519979851593.945312,3519979789594.825684,238,2,0.006415,0.012904,89710921,60095928,0,0,81429,0,1,1 +1774181947.833214,1.00,4,3992.50,51.42,1655.96,2013.04,0.00,3518450741546.434570,3518450741548.441895,21,0,0.005277,0.010924,89711065,60096140,0,0,81431,0,1,1 +1774181952.833217,2.36,4,3992.50,51.42,1655.98,2013.02,0.00,0.000000,0.000000,21,0,0.006254,0.013509,89711241,60096404,0,0,81434,0,1,1 +1774181957.836404,1.35,4,3992.50,51.41,1655.99,2013.00,0.00,120731.391644,182666.904954,9872635,3262150,0.006978,0.015981,89711439,60096709,0,0,81436,0,1,1 +1774181962.837082,4.07,4,3992.50,51.19,1664.86,2004.08,0.00,0.000000,0.129670,9872635,3262273,0.011281,0.022385,89711694,60097099,0,0,81439,0,1,1 +1774181967.837001,3.26,4,3992.50,51.24,1665.96,2006.16,0.00,3518493967344.669922,3518493905368.494629,70,0,0.011454,0.024842,89711981,60097547,0,0,81441,0,1,1 +1774181972.836766,1.71,4,3992.50,51.28,1664.56,2007.55,0.00,1.490402,0.028322,237,594,0.007642,0.016947,89712185,60097869,0,0,81444,0,1,1 +1774181977.837230,0.85,4,3992.50,51.29,1663.89,2008.21,0.00,0.000000,0.000000,237,594,0.004663,0.011046,89712317,60098079,0,0,81446,0,1,1 +1774181982.833266,11.60,4,3992.50,51.71,1644.92,2024.41,0.00,3521228936368.508301,3521228936369.844238,199,0,0.026087,40.103315,89713989,60102710,0,0,81449,0,1,1 +1774181987.833242,1.15,4,3992.50,51.52,1652.30,2017.04,0.00,120812.913985,182819.741522,9873419,3263481,0.003303,0.008478,89714085,60102874,0,0,81451,0,1,1 +1774181992.833226,2.96,4,3992.50,51.49,1653.37,2015.94,0.00,3518448778946.055664,3518448778950.163086,9872646,3262966,0.009714,0.023539,89714338,60103294,0,0,81454,0,1,1 +1774181997.834908,4.76,4,3992.50,51.84,1643.81,2029.61,0.00,3517253957004.542969,3517253895012.921875,238,2,0.010416,0.024044,89714587,60103709,0,0,81456,0,1,1 +1774182002.834913,2.11,4,3992.50,51.77,1646.50,2026.90,0.00,3518433982477.405762,3518433982479.237793,199,0,0.005390,0.013969,89714742,60103976,0,0,81459,0,1,1 +1774182007.837812,1.05,4,3992.50,51.59,1653.39,2020.00,0.00,120742.476549,182713.809338,9873447,3263949,0.004575,0.012685,89714882,60104218,0,0,81461,0,1,1 +1774182012.833220,1.20,4,3992.50,51.55,1655.06,2018.34,0.00,3521671527137.618164,3521671465073.470703,70,0,0.003678,0.010177,89714995,60104413,0,0,81464,0,1,1 +1774182017.833271,1.40,4,3992.50,51.56,1654.62,2018.78,0.00,120811.391059,182824.318576,9873449,3263990,0.004628,0.012754,89715139,60104659,0,0,81466,0,1,1 +1774182022.834799,3.16,4,3992.50,51.60,1652.95,2020.39,0.00,3517362181295.755371,3517362181299.854004,9872675,3263458,0.008921,0.021099,89715365,60105039,0,0,81469,0,1,1 +1774182027.833203,2.91,4,3992.50,51.51,1659.19,2016.61,0.00,3519560691636.998047,3519560629598.068359,237,594,0.009921,0.022309,89715606,60105429,0,0,81471,0,1,1 +1774182032.833591,2.66,4,3992.50,51.48,1659.90,2015.62,0.00,120797.641655,182812.428694,9872677,3263821,0.007637,0.018443,89715809,60105770,0,0,81474,0,1,1 +1774182037.834881,1.70,4,3992.50,51.48,1659.91,2015.62,0.00,3517530055663.960449,3517529993661.852051,21,0,0.004564,0.012850,89715948,60106013,0,0,81476,0,1,1 +1774182042.834851,0.95,4,3992.50,51.49,1659.71,2015.85,0.00,120809.291978,182828.543006,9872677,3263875,0.003683,0.010659,89716062,60106212,0,0,81479,0,1,1 +1774182047.833417,22.92,4,3992.50,57.88,1417.04,2265.98,0.00,3519446152704.584473,3519446090667.743652,199,0,22.447832,0.029860,89718764,60107622,0,0,81481,0,1,1 +1774182052.835313,34.54,4,3992.50,57.59,1434.16,2254.89,0.00,3517103864959.927734,0.000000,21,0,120.124542,0.055644,89731179,60111234,0,0,81484,0,1,1 +1774182057.835525,33.35,4,3992.50,57.73,1424.66,2260.34,0.00,1.538314,0.028319,237,594,120.168643,0.061622,89743485,60114827,0,0,81486,0,1,1 +1774182062.836595,29.94,4,3992.50,57.54,1432.06,2252.91,0.00,0.468357,3517684525000.599121,238,2,120.137975,0.034048,89755669,60117389,0,0,81489,0,1,1 +1774182067.833202,31.28,4,3992.50,57.50,1433.80,2251.22,0.00,120888.609168,182952.164753,9872679,3264371,120.047625,0.033615,89767997,60119637,0,0,81491,0,1,1 +1774182072.838463,29.96,4,3992.50,57.41,1437.10,2247.87,0.00,3514739330644.973633,3514739268689.208984,237,594,119.239716,0.036192,89780172,60122237,0,0,81494,0,1,1 +1774182077.837370,30.04,4,3992.50,57.34,1440.12,2245.05,0.00,0.468559,3519205893541.992188,238,2,119.189674,0.039453,89792262,60125045,0,0,81496,0,1,1 +1774182082.837811,30.54,4,3992.50,57.60,1430.19,2254.98,0.00,120795.952601,182812.872221,9872679,3264483,120.151678,0.045706,89804337,60128533,0,0,81499,0,1,1 +1774182087.837381,32.21,4,3992.50,57.80,1424.81,2263.06,0.00,3518739110603.201660,3518739048575.500488,238,2,118.780362,0.060320,89816631,60132229,0,0,81501,0,1,1 +1774182092.834891,2.61,4,3992.50,52.77,1619.96,2065.95,0.00,3520190648933.393555,3520190648935.226562,199,0,45.094408,0.039557,89821426,60134207,0,0,81504,0,1,1 +1774182097.837957,15.50,4,3992.50,52.19,1642.57,2043.28,0.00,3516280696436.097168,0.000000,21,0,8.308785,0.052285,89824240,60136418,0,0,81506,0,1,1 +1774182102.834951,23.92,4,3992.50,53.08,1607.57,2078.27,0.00,120885.638511,182940.680875,9873515,3266270,25.925639,0.117078,89832594,60142653,0,0,81509,0,1,1 +1774182107.837204,7.18,4,3992.50,52.60,1626.47,2059.39,0.00,3516852046369.982910,3516851984380.020996,199,0,6.037618,0.035908,89834707,60144344,0,0,81511,0,1,1 +1774182112.836105,2.16,4,3992.50,51.99,1650.46,2035.40,0.00,120839.338159,182871.281751,9873523,3266691,0.007807,0.015538,89834896,60144632,0,0,81514,0,1,1 +1774182117.834404,4.32,4,3992.50,52.00,1652.22,2036.07,0.00,3519634427578.678711,3519634365539.440430,21,0,0.012801,0.026820,89835201,60145102,0,0,81516,0,1,1 +1774182122.836995,3.46,4,3992.50,51.40,1675.64,2012.26,0.00,0.000000,0.000000,21,0,0.011005,0.023573,89835475,60145527,0,0,81519,0,1,1 +1774182127.837564,14.91,4,3992.50,51.71,1660.29,2024.41,0.00,0.048041,0.000000,70,0,0.033116,50.687512,89837380,60151342,0,0,81521,0,1,1 +1774182132.837505,31.36,4,3992.50,54.03,1562.43,2115.21,0.00,1.490350,0.028321,237,594,0.029733,121.973719,89839629,60164047,0,0,81524,0,1,1 +1774182137.837306,13.39,4,3992.50,51.89,1642.36,2031.52,0.00,120812.124090,183027.614433,9872770,3267696,0.013431,32.456728,89840443,60167640,0,0,81526,0,1,1 +1774182142.837321,13.51,4,3992.50,56.50,1461.82,2212.15,0.00,3518426678457.170410,3518426616245.848145,21,0,40.066290,0.030973,89844898,60169247,0,0,81529,0,1,1 +1774182147.837710,3.66,4,3992.50,51.72,1651.07,2024.95,0.00,2.006680,0.000195,238,2,0.011420,0.018598,89845161,60169591,0,0,81531,0,1,1 +1774182152.837942,4.96,4,3992.50,51.85,1646.11,2029.91,0.00,3518274058069.262695,3518274058071.269531,21,0,0.012736,0.027074,89845457,60170050,0,0,81534,0,1,1 +1774182157.837931,3.31,4,3992.50,51.85,1646.00,2030.03,0.00,1.538382,0.028320,237,594,0.008344,0.018528,89845684,60170406,0,0,81536,0,1,1 +1774182162.838020,1.20,4,3992.50,51.85,1646.12,2029.91,0.00,120825.182588,183018.512846,9872923,3268280,0.005276,0.010934,89845828,60170619,0,0,81539,0,1,1 +1774182167.837951,1.15,4,3992.50,51.85,1646.16,2029.86,0.00,3518485993602.235352,3518485931408.438965,21,0,0.005264,0.010924,89845971,60170831,0,0,81541,0,1,1 +1774182172.838065,1.71,4,3992.50,51.84,1646.18,2029.84,0.00,1.538344,0.028320,237,594,0.005939,0.012780,89846132,60171076,0,0,81544,0,1,1 +1774182177.833553,3.52,4,3992.50,52.03,1639.01,2037.02,0.00,120936.483439,183205.018743,9872926,3268596,0.011218,0.024654,89846418,60171518,0,0,81546,0,1,1 +1774182182.837791,3.56,4,3992.50,51.79,1648.18,2027.79,0.00,3515457261329.508789,3515457199171.189453,199,0,0.010045,0.020164,89846659,60171885,0,0,81549,0,1,1 +1774182187.837736,2.71,4,3992.50,51.80,1647.72,2028.23,0.00,120830.033775,183042.412031,9872928,3268759,0.009590,0.020360,89846900,60172259,0,0,81551,0,1,1 +1774182192.834902,1.00,4,3992.50,51.76,1649.63,2026.33,0.00,0.000000,0.258740,9872928,3268889,0.006183,0.013489,89847071,60172521,0,0,81554,0,1,1 +1774182197.837501,0.85,4,3992.50,51.77,1649.19,2026.78,0.00,0.000000,0.014348,9872928,3268898,0.005319,0.010954,89847218,60172736,0,0,81556,0,1,1 +1774182202.833208,0.90,4,3992.50,51.77,1649.22,2026.76,0.00,3521460490077.219727,3521460427810.452637,237,594,0.006185,0.013480,89847389,60172997,0,0,81559,0,1,1 +1774182207.837427,2.15,4,3992.50,52.20,1632.17,2043.80,0.00,3515470867922.098145,3515470867923.606934,21,0,0.011510,0.422346,89847715,60173488,0,0,81561,0,1,1 +1774182212.834928,11.14,4,3992.50,51.95,1639.61,2034.13,0.00,2.007840,0.000195,238,2,0.021207,39.686923,89849176,60177934,0,0,81564,0,1,1 +1774182217.833221,4.52,4,3992.50,51.73,1648.42,2025.21,0.00,120872.287350,183137.806356,9873708,3270120,0.011899,0.023430,89849411,60178311,0,0,81566,0,1,1 +1774182222.837821,0.85,4,3992.50,51.73,1648.47,2025.20,0.00,3515202505566.718262,3515202443381.690918,21,0,0.003659,0.010158,89849523,60178506,0,0,81569,0,1,1 +1774182227.837960,0.80,4,3992.50,51.73,1648.48,2025.19,0.00,0.048046,0.000000,70,0,0.004590,0.012692,89849664,60178748,0,0,81571,0,1,1 +1774182232.833504,0.90,4,3992.50,51.73,1648.48,2025.18,0.00,1.960536,0.000195,238,2,0.004072,0.011242,89849789,60178965,0,0,81574,0,1,1 +1774182237.837273,2.26,4,3992.50,51.77,1653.05,2026.80,0.00,120740.002049,182938.456731,9873708,3270353,0.008468,0.022246,89850028,60179364,0,0,81576,0,1,1 +1774182242.833213,3.41,4,3992.50,51.61,1659.35,2020.52,0.00,3521296375779.509766,3521296313483.589355,238,2,0.008316,0.019676,89850239,60179712,0,0,81579,0,1,1 +1774182247.837245,4.51,4,3992.50,51.62,1658.88,2021.01,0.00,120733.667388,182935.625912,9873708,3270642,0.008895,0.020349,89850459,60180076,0,0,81581,0,1,1 +1774182252.838064,2.81,4,3992.50,51.64,1658.15,2021.74,0.00,3517860577540.876465,3517860515300.974609,21,0,0.004665,0.012793,89850606,60180325,0,0,81584,0,1,1 +1774182257.834007,1.15,4,3992.50,51.64,1658.16,2021.73,0.00,120931.126659,183231.954717,9873708,3270746,0.003784,0.010242,89850726,60180525,0,0,81586,0,1,1 +1774182262.837026,1.00,4,3992.50,51.53,1662.28,2017.61,0.00,0.000000,0.005465,9873708,3270750,0.004593,0.012720,89850867,60180770,0,0,81589,0,1,1 +1774182267.838020,1.55,4,3992.50,51.83,1651.46,2029.08,0.00,3517737984582.157227,0.058777,9872934,3270222,0.006056,0.016570,89851055,60181084,0,0,81591,0,1,1 +1774182272.838003,3.31,4,3992.50,51.70,1655.80,2024.24,0.00,3518449106374.758301,3518449044118.082031,238,2,0.010366,0.022163,89851281,60181451,0,0,81594,0,1,1 +1774182277.833202,26.46,4,3992.50,58.19,1411.22,2278.25,0.00,120943.024638,183260.678605,9872946,3270620,44.920135,0.046612,89856343,60183466,0,0,81596,0,1,1 +1774182282.837994,32.76,4,3992.50,57.84,1431.64,2264.51,0.00,3515068236113.127441,3515068173915.411133,237,594,118.851937,0.025697,89868563,60185322,0,0,81599,0,1,1 +1774182287.837419,29.10,4,3992.50,58.13,1420.40,2275.80,0.00,0.000000,0.000000,237,594,119.384710,0.040297,89880901,60188143,0,0,81601,0,1,1 +1774182292.833506,28.95,4,3992.50,57.70,1436.90,2259.25,0.00,0.468824,3521192559667.073730,238,2,119.056281,0.020813,89893012,60189651,0,0,81604,0,1,1 +1774182297.833188,29.15,4,3992.50,57.97,1426.51,2269.69,0.00,120834.663870,183096.638489,9872949,3270685,119.369735,0.017398,89905114,60190872,0,0,81606,0,1,1 +1774182302.837173,30.14,4,3992.50,57.73,1436.51,2260.36,0.00,0.009368,0.108605,9872954,3270808,118.880280,0.055717,89917345,60194375,0,0,81609,0,1,1 +1774182307.833441,28.95,4,3992.50,57.82,1433.04,2263.82,0.00,3521065835526.750977,3521065773224.079590,70,0,119.673556,0.081755,89929868,60200726,0,0,81611,0,1,1 +1774182312.835919,31.03,4,3992.50,57.93,1428.70,2268.14,0.00,1.957818,0.000195,238,2,118.730759,0.091284,89942392,60206688,0,0,81614,0,1,1 +1774182317.837329,24.18,4,3992.50,57.74,1436.21,2260.76,0.00,120792.949775,183033.891545,9872957,3271093,120.145129,0.059643,89954927,60210657,0,0,81616,0,1,1 +1774182322.834908,2.76,4,3992.50,52.25,1651.10,2045.86,0.00,4.250398,0.126722,9873747,3271713,26.461021,0.025759,89957882,60211963,0,0,81619,0,1,1 +1774182327.837225,10.05,4,3992.50,52.41,1645.03,2051.90,0.00,3516807069777.296875,3516807007553.773926,21,0,6.050058,0.048618,89960129,60213854,0,0,81621,0,1,1 +1774182332.837728,19.33,4,3992.50,52.60,1637.13,2059.59,0.00,0.000000,0.000000,21,0,20.119601,0.092045,89966566,60218643,0,0,81624,0,1,1 +1774182337.833306,11.16,4,3992.50,52.34,1647.45,2049.23,0.00,120940.233757,183249.749590,9873782,3272742,10.088087,0.069581,89970312,60221624,0,0,81626,0,1,1 +1774182342.834894,2.56,4,3992.50,52.01,1660.22,2036.45,0.00,0.000000,0.044029,9873782,3272838,0.009730,0.022359,89970583,60222055,0,0,81629,0,1,1 +1774182347.837980,1.20,4,3992.50,51.91,1664.13,2032.55,0.00,0.000000,0.030938,9873782,3272849,0.007118,0.015983,89970785,60222363,0,0,81631,0,1,1 +1774182352.835652,1.40,4,3992.50,51.86,1666.22,2030.47,0.00,3520075951635.229980,3520075889351.690430,70,0,0.007062,0.016010,89970982,60222672,0,0,81634,0,1,1 +1774182357.837245,1.91,4,3992.50,52.06,1657.80,2038.33,0.00,1.489857,0.028311,237,594,0.005712,0.012831,89971139,60222912,0,0,81636,0,1,1 +1774182362.834179,2.91,4,3992.50,51.98,1660.81,2035.31,0.00,3520595870689.380371,3520595870690.716309,199,0,0.011001,0.024957,89971438,60223375,0,0,81639,0,1,1 +1774182367.834899,4.92,4,3992.50,51.96,1661.56,2034.52,0.00,120815.727260,183062.668465,9873782,3273327,0.014686,0.032596,89971808,60223955,0,0,81641,0,1,1 +1774182372.834897,2.71,4,3992.50,51.79,1668.58,2027.50,0.00,3518438305429.561523,3518438243173.814453,21,0,0.010372,0.022316,89972072,60224369,0,0,81644,0,1,1 +1774182377.836869,1.05,4,3992.50,51.78,1668.60,2027.48,0.00,0.048028,0.000000,70,0,0.006159,0.013466,89972242,60224630,0,0,81646,0,1,1 +1774182382.833227,1.20,4,3992.50,51.89,1664.33,2031.75,0.00,120917.223615,183222.955328,9873008,3273015,0.006179,0.013478,89972413,60224891,0,0,81649,0,1,1 +1774182387.834906,1.35,4,3992.50,52.03,1662.44,2037.07,0.00,4.107898,0.142921,9873782,3273684,0.007315,0.017265,89972619,60225215,0,0,81651,0,1,1 +1774182392.833236,1.91,4,3992.50,52.03,1662.23,2037.27,0.00,0.000000,0.148487,9873782,3273804,0.009019,0.021181,89972879,60225621,0,0,81654,0,1,1 +1774182397.834960,3.61,4,3992.50,51.97,1664.87,2034.62,0.00,3517224100865.914551,3517224038628.895996,238,2,0.011359,0.022922,89973140,60226019,0,0,81656,0,1,1 +1774182402.833206,6.23,4,3992.50,52.02,1662.62,2036.86,0.00,120869.569606,183154.540745,9873012,3273549,4.033520,0.038147,89974629,60227264,0,0,81659,0,1,1 +1774182407.837116,0.85,4,3992.50,52.03,1662.43,2037.05,0.00,3515688120185.801758,3515688057971.320801,238,2,0.005575,0.010928,89974773,60227477,0,0,81661,0,1,1 +1774182412.836572,0.95,4,3992.50,51.85,1669.59,2029.88,0.00,3518819829866.733398,3518819829868.692383,70,0,0.006180,0.013470,89974944,60227738,0,0,81664,0,1,1 +1774182417.834872,1.65,4,3992.50,52.05,1666.80,2037.73,0.00,0.000000,0.000000,70,0,0.005266,0.011572,89975087,60227954,0,0,81666,0,1,1 +1774182422.839380,3.21,4,3992.50,51.98,1663.92,2035.26,0.00,0.000000,0.000000,70,0,0.020783,8.229421,89976099,60229452,0,0,81669,0,1,1 +1774182427.834878,31.04,4,3992.50,52.15,1649.02,2041.83,0.00,120938.034748,183349.333027,9873018,3274407,0.045228,118.290106,89978913,60241922,0,0,81671,0,1,1 +1774182432.837614,21.54,4,3992.50,51.77,1658.29,2026.95,0.00,0.005466,112.743579,9873025,3275139,0.025762,78.677049,89980522,60250173,0,0,81674,0,1,1 +1774182437.834444,2.31,4,3992.50,51.83,1656.17,2029.09,0.00,0.001563,0.238921,9873027,3275254,0.006023,0.015154,89980691,60250459,0,0,81676,0,1,1 +1774182442.834919,15.74,4,3992.50,51.99,1650.65,2035.45,0.00,3518103369211.846680,3518103306749.679688,21,0,40.064898,0.032884,89985184,60252034,0,0,81679,0,1,1 +1774182447.833216,10.96,4,3992.50,52.26,1628.61,2046.07,0.00,0.000000,0.000000,21,0,0.024955,40.089035,89986747,60256732,0,0,81681,0,1,1 +1774182452.834935,2.06,4,3992.50,52.47,1617.68,2054.33,0.00,0.048030,0.000000,70,0,0.006778,0.018050,89986950,60257077,0,0,81684,0,1,1 +1774182457.833223,2.56,4,3992.50,52.25,1626.19,2045.80,0.00,0.000000,0.000000,70,0,0.008274,0.019634,89987158,60257422,0,0,81686,0,1,1 +1774182462.834913,2.86,4,3992.50,52.20,1628.16,2043.76,0.00,0.000000,0.000000,70,0,0.010316,0.025344,89987429,60257877,0,0,81689,0,1,1 +1774182467.835119,1.15,4,3992.50,52.22,1627.53,2044.43,0.00,0.000000,0.000000,70,0,0.005175,0.013356,89987578,60258133,0,0,81691,0,1,1 +1774182472.838042,0.85,4,3992.50,52.03,1634.94,2037.02,0.00,1.957645,0.000195,238,2,0.004551,0.012597,89987714,60258369,0,0,81694,0,1,1 +1774182477.833231,1.21,4,3992.50,52.02,1635.29,2036.56,0.00,3521825906247.897461,0.028152,237,594,0.004353,0.012083,89987847,60258600,0,0,81696,0,1,1 +1774182482.833245,1.20,4,3992.50,52.03,1634.85,2037.00,0.00,3518427569797.491699,3518427569799.001465,21,0,0.006947,0.019117,89988061,60258963,0,0,81699,0,1,1 +1774182487.836887,2.51,4,3992.50,52.02,1635.20,2036.54,0.00,120764.833550,183205.531229,9873912,3276896,0.009009,0.019758,89988276,60259304,0,0,81701,0,1,1 +1774182492.833205,2.51,4,3992.50,51.77,1644.93,2026.87,0.00,3521029417066.291016,3521029354534.081055,21,0,0.008622,0.020401,89988500,60259671,0,0,81704,0,1,1 +1774182497.838073,1.40,4,3992.50,51.79,1643.91,2027.88,0.00,0.174830,0.000000,199,0,0.006122,0.015895,89988679,60259977,0,0,81706,0,1,1 +1774182502.838029,0.95,4,3992.50,51.61,1651.33,2020.46,0.00,1.363391,0.028321,237,594,0.003650,0.010168,89988790,60260172,0,0,81709,0,1,1 +1774182507.837837,1.55,4,3992.50,51.85,1641.80,2029.98,0.00,3518571766807.057129,3518571766808.392578,199,0,0.004590,0.012693,89988931,60260414,0,0,81711,0,1,1 +1774182512.839854,35.95,4,3992.50,57.79,1421.73,2262.79,0.00,3517019141841.208008,0.000000,21,0,69.291366,0.067326,89996756,60264385,0,0,81714,0,1,1 +1774182517.835174,31.69,4,3992.50,58.07,1415.34,2273.70,0.00,120966.001164,183511.964015,9873913,3277373,124.289690,0.034072,90009112,60266514,0,0,81716,0,1,1 +1774182522.836384,31.63,4,3992.50,57.95,1420.14,2268.84,0.00,3517585624069.861328,3517585561596.050293,237,594,123.640833,0.036130,90021330,60268342,0,0,81719,0,1,1 +1774182527.834446,29.90,4,3992.50,57.83,1424.93,2264.18,0.00,0.000000,0.000000,237,594,120.515298,0.028310,90033040,60270305,0,0,81721,0,1,1 +1774182532.836379,29.04,4,3992.50,57.90,1421.93,2267.08,0.00,120804.549398,183269.861859,9873913,3277686,120.386960,0.037094,90044997,60273064,0,0,81724,0,1,1 +1774182537.837969,32.43,4,3992.50,58.15,1412.27,2276.80,0.00,0.000000,0.166060,9873913,3277789,119.702141,0.037740,90056448,60275622,0,0,81726,0,1,1 +1774182542.833207,30.23,4,3992.50,58.00,1418.27,2270.85,0.00,3521791318859.555664,3521791256309.861816,238,2,119.719009,0.042663,90068014,60278173,0,0,81729,0,1,1 +1774182547.834399,30.52,4,3992.50,58.18,1411.23,2277.79,0.00,120817.852002,183297.328059,9873141,3277271,119.543899,0.037480,90079435,60280601,0,0,81731,0,1,1 +1774182552.834507,14.98,4,3992.50,53.12,1609.47,2079.66,0.00,3518361111841.045898,3518361049349.973145,70,0,108.429132,0.026741,90089602,60282699,0,0,81734,0,1,1 +1774182557.833332,4.72,4,3992.50,52.58,1630.65,2058.48,0.00,1.959250,0.000195,238,2,0.012830,0.023557,90089897,60283120,0,0,81736,0,1,1 +1774182562.837993,11.64,4,3992.50,51.93,1655.78,2033.36,0.00,3515159902273.706543,3515159902275.711426,21,0,4.047158,0.039861,90091693,60284535,0,0,81739,0,1,1 +1774182567.835760,26.78,4,3992.50,52.18,1646.11,2043.03,0.00,0.048068,0.000000,70,0,36.220239,0.151854,90103033,60292880,0,0,81741,0,1,1 +1774182572.837750,3.41,4,3992.50,51.75,1663.04,2026.08,0.00,3517037385096.027832,0.000000,21,0,0.013318,0.015751,90103321,60293203,0,0,81744,0,1,1 +1774182577.839385,14.27,4,3992.50,51.96,1652.02,2034.21,0.00,0.000000,0.000000,21,0,0.035428,44.480242,90105270,60298546,0,0,81746,0,1,1 +1774182582.837652,31.12,4,3992.50,52.07,1639.38,2038.52,0.00,0.000000,0.000000,21,0,0.039395,118.819283,90107923,60311092,0,0,81749,0,1,1 +1774182587.837415,13.47,4,3992.50,51.39,1662.93,2012.07,0.00,0.175008,0.000000,199,0,0.020242,41.881690,90108990,60315870,0,0,81751,0,1,1 +1774182592.833221,11.80,4,3992.50,52.01,1640.22,2036.23,0.00,120969.805625,183681.863693,9873319,3280265,40.103103,0.033549,90113609,60317562,0,0,81754,0,1,1 +1774182597.837516,2.80,4,3992.50,52.20,1640.78,2043.57,0.00,3515417091622.946289,3515417029017.444824,21,0,0.008751,0.014604,90113817,60317843,0,0,81756,0,1,1 +1774182602.837178,1.46,4,3992.50,52.19,1640.80,2043.54,0.00,0.000000,0.000000,21,0,0.006066,0.013293,90113983,60318088,0,0,81759,0,1,1 +1774182607.837368,5.22,4,3992.50,52.11,1643.98,2040.32,0.00,2.006760,0.000195,238,2,0.014313,0.029978,90114312,60318596,0,0,81761,0,1,1 +1774182612.837223,2.01,4,3992.50,52.09,1644.77,2039.54,0.00,3518539106477.424316,3518539106479.431641,21,0,0.010662,0.024249,90114599,60319048,0,0,81764,0,1,1 +1774182617.837715,1.95,4,3992.50,51.54,1666.54,2017.80,0.00,120856.633959,183533.984763,9873334,3281006,0.009826,0.023594,90114883,60319500,0,0,81766,0,1,1 +1774182622.837155,1.35,4,3992.50,51.56,1665.60,2018.74,0.00,4.109738,0.035160,9874108,3281611,0.007330,0.014779,90115064,60319776,0,0,81769,0,1,1 +1774182627.836095,2.41,4,3992.50,51.78,1651.07,2027.19,0.00,3519182995034.641602,3519182932341.855957,70,0,0.008987,0.020123,90115292,60320140,0,0,81771,0,1,1 +1774182632.833208,1.10,4,3992.50,51.78,1651.09,2027.17,0.00,3520469532994.821777,0.000000,21,0,0.006276,0.013552,90115469,60320407,0,0,81774,0,1,1 +1774182637.833221,2.51,4,3992.50,51.75,1652.27,2025.95,0.00,0.048047,0.000000,70,0,0.010861,0.023028,90115739,60320820,0,0,81776,0,1,1 +1774182642.834920,4.22,4,3992.50,51.69,1654.38,2023.82,0.00,0.126910,0.000000,199,0,0.012295,0.025466,90116030,60321267,0,0,81779,0,1,1 +1774182647.837382,1.65,4,3992.50,51.81,1649.78,2028.44,0.00,3516705353174.591797,0.000000,21,0,0.009948,0.023625,90116323,60321722,0,0,81781,0,1,1 +1774182652.836696,1.61,4,3992.50,51.68,1654.71,2023.51,0.00,120885.119956,183578.690443,9873334,3281554,0.009879,0.023610,90116611,60322175,0,0,81784,0,1,1 +1774182657.837172,2.51,4,3992.50,51.84,1661.23,2029.73,0.00,0.000000,0.094718,9873334,3281679,0.009026,0.021070,90116859,60322571,0,0,81786,0,1,1 +1774182662.836417,2.36,4,3992.50,51.85,1660.39,2029.93,0.00,3518968241784.919922,3518968179090.343750,70,0,0.006143,0.013458,90117027,60322831,0,0,81789,0,1,1 +1774182667.837708,2.56,4,3992.50,51.66,1667.81,2022.50,0.00,3517528717043.240234,0.000000,21,0,0.006825,0.016952,90117228,60323154,0,0,81791,0,1,1 +1774182672.834864,12.76,4,3992.50,51.87,1657.19,2030.88,0.00,0.175100,0.000000,199,0,0.030745,40.102551,90118975,60327905,0,0,81794,0,1,1 +1774182677.833259,3.16,4,3992.50,51.87,1657.06,2030.97,0.00,1.363817,0.028329,237,594,0.009324,0.021831,90119209,60328293,0,0,81796,0,1,1 +1774182682.833235,1.76,4,3992.50,51.66,1665.54,2022.49,0.00,3518454004573.872559,3518454004575.208008,199,0,0.008213,0.022840,90119461,60328728,0,0,81799,0,1,1 +1774182687.836798,2.61,4,3992.50,52.28,1640.96,2047.05,0.00,3515931550729.572754,0.000000,21,0,0.008603,0.022822,90119717,60329163,0,0,81801,0,1,1 +1774182692.837986,1.05,4,3992.50,51.87,1657.27,2030.76,0.00,0.174958,0.000000,199,0,0.004614,0.012699,90119860,60329406,0,0,81804,0,1,1 +1774182697.837251,3.62,4,3992.50,51.69,1664.26,2023.70,0.00,120890.255103,183616.473039,9874114,3283236,0.010971,0.025415,90120127,60329846,0,0,81806,0,1,1 +1774182702.837520,2.31,4,3992.50,51.70,1663.68,2024.29,0.00,3518247457990.976074,3518247395277.359375,199,0,0.008147,0.020946,90120355,60330232,0,0,81809,0,1,1 +1774182707.837112,2.01,4,3992.50,51.72,1663.00,2024.97,0.00,3518724620421.255859,0.000000,21,0,0.009539,0.024784,90120627,60330692,0,0,81811,0,1,1 +1774182712.833224,1.61,4,3992.50,51.73,1662.76,2025.20,0.00,0.175136,0.000000,199,0,0.008295,0.023533,90120885,60331133,0,0,81814,0,1,1 +1774182717.834870,4.01,4,3992.50,52.12,1636.95,2040.47,0.00,0.000000,0.000000,199,0,0.008773,0.022986,90121152,60331579,0,0,81816,0,1,1 +1774182722.834860,0.90,4,3992.50,51.65,1655.12,2022.34,0.00,3518444194402.176270,0.000000,70,0,0.003706,0.010193,90121267,60331776,0,0,81819,0,1,1 +1774182727.837721,2.01,4,3992.50,51.43,1663.69,2013.62,0.00,1.957669,0.000195,238,2,0.010481,0.022630,90121546,60332199,0,0,81821,0,1,1 +1774182732.833218,3.67,4,3992.50,51.29,1669.18,2008.21,0.00,0.000000,0.000000,238,2,0.008307,0.017746,90121729,60332496,0,0,81824,0,1,1 diff --git a/evaluation/data/pipeline_full_cycle_run3/pipeline.duckdb b/evaluation/data/pipeline_full_cycle_run3/pipeline.duckdb new file mode 100644 index 0000000..90e2c91 Binary files /dev/null and b/evaluation/data/pipeline_full_cycle_run3/pipeline.duckdb differ diff --git a/evaluation/data/pipeline_full_cycle_run3/pipeline.log b/evaluation/data/pipeline_full_cycle_run3/pipeline.log new file mode 100644 index 0000000..1b0010d --- /dev/null +++ b/evaluation/data/pipeline_full_cycle_run3/pipeline.log @@ -0,0 +1,33215 @@ +2026/03/22 06:01:27 detector: Ensemble method=sead contamination=0.15 +2026/03/22 06:01:27 detector: SEAD η=0.100 λ=0.010 quantile_window=300 +2026/03/22 06:01:27 detector: auto-scaling enabled +2026/03/22 06:01:27 pipeline started – waiting for SIGINT / SIGTERM +2026/03/22 06:01:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:01:32 ───────────────────────────────────────────────── +2026/03/22 06:01:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:01:37 [metric_collector] {"stage_name":"metric_collector","events_processed":9,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1.8,"last_update":"2026-03-22T06:01:37.368893218Z"} +2026/03/22 06:01:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:01:32.37708812Z"} +2026/03/22 06:01:37 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:01:32.479298852Z"} +2026/03/22 06:01:37 [transform_engine] {"stage_name":"transform_engine","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:01:32.479322207Z"} +2026/03/22 06:01:37 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:01:32.368571063Z"} +2026/03/22 06:01:37 ───────────────────────────────────────────────── +2026/03/22 06:01:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:01:42 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:01:37.480122129Z"} +2026/03/22 06:01:42 [transform_engine] {"stage_name":"transform_engine","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:01:37.48014369Z"} +2026/03/22 06:01:42 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:01:37.368905943Z"} +2026/03/22 06:01:42 [metric_collector] {"stage_name":"metric_collector","events_processed":9,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1.8,"last_update":"2026-03-22T06:01:37.368893218Z"} +2026/03/22 06:01:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:01:37.377604467Z"} +2026/03/22 06:01:42 ───────────────────────────────────────────────── +2026/03/22 06:01:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:01:47 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:01:42.368014563Z"} +2026/03/22 06:01:47 [metric_collector] {"stage_name":"metric_collector","events_processed":14,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2.8,"last_update":"2026-03-22T06:01:42.368865953Z"} +2026/03/22 06:01:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:01:42.378586646Z"} +2026/03/22 06:01:47 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:01:42.479953362Z"} +2026/03/22 06:01:47 [transform_engine] {"stage_name":"transform_engine","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:01:42.480007556Z"} +2026/03/22 06:01:47 ───────────────────────────────────────────────── +2026/03/22 06:01:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:01:52 [transform_engine] {"stage_name":"transform_engine","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:01:47.479789824Z"} +2026/03/22 06:01:52 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:01:47.368848966Z"} +2026/03/22 06:01:52 [metric_collector] {"stage_name":"metric_collector","events_processed":19,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3.8,"last_update":"2026-03-22T06:01:47.369392366Z"} +2026/03/22 06:01:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":10,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:01:47.378410803Z"} +2026/03/22 06:01:52 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:01:47.479929762Z"} +2026/03/22 06:01:52 ───────────────────────────────────────────────── +2026/03/22 06:01:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:01:57 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:01:52.367994173Z"} +2026/03/22 06:01:57 [metric_collector] {"stage_name":"metric_collector","events_processed":24,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4.8,"last_update":"2026-03-22T06:01:52.368793623Z"} +2026/03/22 06:01:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":12,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:01:52.378413652Z"} +2026/03/22 06:01:57 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:01:52.479707719Z"} +2026/03/22 06:01:57 [transform_engine] {"stage_name":"transform_engine","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:01:52.47966083Z"} +2026/03/22 06:01:57 ───────────────────────────────────────────────── +2026/03/22 06:02:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:02:02 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:01:57.368459726Z"} +2026/03/22 06:02:02 [metric_collector] {"stage_name":"metric_collector","events_processed":29,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5.8,"last_update":"2026-03-22T06:01:57.368804556Z"} +2026/03/22 06:02:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":14,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:01:57.376971844Z"} +2026/03/22 06:02:02 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:01:57.479409992Z"} +2026/03/22 06:02:02 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":66.243189,"throughput_eps":0,"last_update":"2026-03-22T06:01:57.545775146Z"} +2026/03/22 06:02:02 ───────────────────────────────────────────────── +2026/03/22 06:02:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:02:07 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:02:02.368039711Z"} +2026/03/22 06:02:07 [metric_collector] {"stage_name":"metric_collector","events_processed":34,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6.8,"last_update":"2026-03-22T06:02:02.368599813Z"} +2026/03/22 06:02:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":16,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:02:02.375849013Z"} +2026/03/22 06:02:07 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.584362,"throughput_eps":0,"last_update":"2026-03-22T06:02:02.479030665Z"} +2026/03/22 06:02:07 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":66.243189,"throughput_eps":0,"last_update":"2026-03-22T06:02:02.479060622Z"} +2026/03/22 06:02:07 ───────────────────────────────────────────────── +Saved state: 1 clusters, 1 messages, reason: cluster_created +Saved state: 2 clusters, 2 messages, reason: cluster_created +Saved state: 2 clusters, 3 messages, reason: cluster_template_changed +Saved state: 3 clusters, 4 messages, reason: cluster_created +Saved state: 4 clusters, 5 messages, reason: cluster_created +2026/03/22 06:02:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:02:12 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":66.243189,"throughput_eps":0,"last_update":"2026-03-22T06:02:07.479242137Z"} +2026/03/22 06:02:12 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:02:07.368623837Z"} +2026/03/22 06:02:12 [metric_collector] {"stage_name":"metric_collector","events_processed":39,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7.8,"last_update":"2026-03-22T06:02:07.369097433Z"} +2026/03/22 06:02:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":18,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:02:07.379009762Z"} +2026/03/22 06:02:12 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.584362,"throughput_eps":0,"last_update":"2026-03-22T06:02:07.479287274Z"} +2026/03/22 06:02:12 ───────────────────────────────────────────────── +2026/03/22 06:02:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:02:17 [log_collector] {"stage_name":"log_collector","events_processed":5,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1,"last_update":"2026-03-22T06:02:12.367979357Z"} +2026/03/22 06:02:17 [metric_collector] {"stage_name":"metric_collector","events_processed":44,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":8.8,"last_update":"2026-03-22T06:02:12.368198547Z"} +2026/03/22 06:02:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":20,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:02:12.377578426Z"} +2026/03/22 06:02:17 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.584362,"throughput_eps":0,"last_update":"2026-03-22T06:02:12.479794229Z"} +2026/03/22 06:02:17 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":66.243189,"throughput_eps":0,"last_update":"2026-03-22T06:02:12.479755976Z"} +2026/03/22 06:02:17 ───────────────────────────────────────────────── +2026/03/22 06:02:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:02:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":22,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:02:17.375821056Z"} +2026/03/22 06:02:22 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.584362,"throughput_eps":0,"last_update":"2026-03-22T06:02:17.479975792Z"} +2026/03/22 06:02:22 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":66.243189,"throughput_eps":0,"last_update":"2026-03-22T06:02:17.478890233Z"} +2026/03/22 06:02:22 [log_collector] {"stage_name":"log_collector","events_processed":5,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1,"last_update":"2026-03-22T06:02:17.367980725Z"} +2026/03/22 06:02:22 [metric_collector] {"stage_name":"metric_collector","events_processed":49,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":9.8,"last_update":"2026-03-22T06:02:17.368225714Z"} +2026/03/22 06:02:22 ───────────────────────────────────────────────── +2026/03/22 06:02:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:02:27 [metric_collector] {"stage_name":"metric_collector","events_processed":54,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":10.8,"last_update":"2026-03-22T06:02:22.36834231Z"} +2026/03/22 06:02:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":24,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:02:22.377394741Z"} +2026/03/22 06:02:27 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.584362,"throughput_eps":0,"last_update":"2026-03-22T06:02:22.479449305Z"} +2026/03/22 06:02:27 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":66.243189,"throughput_eps":0,"last_update":"2026-03-22T06:02:22.479459184Z"} +2026/03/22 06:02:27 [log_collector] {"stage_name":"log_collector","events_processed":5,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1,"last_update":"2026-03-22T06:02:22.36795096Z"} +2026/03/22 06:02:27 ───────────────────────────────────────────────── +2026/03/22 06:02:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:02:32 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.584362,"throughput_eps":0,"last_update":"2026-03-22T06:02:27.479988026Z"} +2026/03/22 06:02:32 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":75.5821838,"throughput_eps":0,"last_update":"2026-03-22T06:02:27.591826843Z"} +2026/03/22 06:02:32 [log_collector] {"stage_name":"log_collector","events_processed":5,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1,"last_update":"2026-03-22T06:02:27.368319936Z"} +2026/03/22 06:02:32 [metric_collector] {"stage_name":"metric_collector","events_processed":59,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":11.8,"last_update":"2026-03-22T06:02:27.36832752Z"} +2026/03/22 06:02:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":26,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:02:27.37575971Z"} +2026/03/22 06:02:32 ───────────────────────────────────────────────── +2026/03/22 06:02:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:02:37 [log_collector] {"stage_name":"log_collector","events_processed":5,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1,"last_update":"2026-03-22T06:02:37.368395393Z"} +2026/03/22 06:02:37 [metric_collector] {"stage_name":"metric_collector","events_processed":64,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":12.8,"last_update":"2026-03-22T06:02:32.368658019Z"} +2026/03/22 06:02:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":28,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:02:32.37740156Z"} +2026/03/22 06:02:37 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.963775999999999,"throughput_eps":0,"last_update":"2026-03-22T06:02:32.479593668Z"} +2026/03/22 06:02:37 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":75.5821838,"throughput_eps":0,"last_update":"2026-03-22T06:02:32.479603406Z"} +2026/03/22 06:02:37 ───────────────────────────────────────────────── +2026/03/22 06:02:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:02:42 [log_collector] {"stage_name":"log_collector","events_processed":5,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1,"last_update":"2026-03-22T06:02:37.368395393Z"} +2026/03/22 06:02:42 [metric_collector] {"stage_name":"metric_collector","events_processed":69,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":13.8,"last_update":"2026-03-22T06:02:37.36879061Z"} +2026/03/22 06:02:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":30,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:02:37.376522253Z"} +2026/03/22 06:02:42 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.963775999999999,"throughput_eps":0,"last_update":"2026-03-22T06:02:37.479705738Z"} +2026/03/22 06:02:42 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":75.5821838,"throughput_eps":0,"last_update":"2026-03-22T06:02:37.479720928Z"} +2026/03/22 06:02:42 ───────────────────────────────────────────────── +2026/03/22 06:02:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:02:47 [log_collector] {"stage_name":"log_collector","events_processed":5,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1,"last_update":"2026-03-22T06:02:42.368290708Z"} +2026/03/22 06:02:47 [metric_collector] {"stage_name":"metric_collector","events_processed":74,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":14.8,"last_update":"2026-03-22T06:02:42.368739427Z"} +2026/03/22 06:02:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":32,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:02:42.378148271Z"} +2026/03/22 06:02:47 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.963775999999999,"throughput_eps":0,"last_update":"2026-03-22T06:02:42.479333701Z"} +2026/03/22 06:02:47 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":75.5821838,"throughput_eps":0,"last_update":"2026-03-22T06:02:42.479345334Z"} +2026/03/22 06:02:47 ───────────────────────────────────────────────── +Saved state: 5 clusters, 6 messages, reason: cluster_created +Saved state: 6 clusters, 9 messages, reason: cluster_created +Saved state: 6 clusters, 10 messages, reason: cluster_template_changed +Saved state: 7 clusters, 11 messages, reason: cluster_created +Saved state: 7 clusters, 12 messages, reason: cluster_template_changed +Saved state: 7 clusters, 13 messages, reason: cluster_template_changed +Saved state: 7 clusters, 14 messages, reason: cluster_template_changed +2026/03/22 06:02:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:02:52 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.963775999999999,"throughput_eps":0,"last_update":"2026-03-22T06:02:47.479290771Z"} +2026/03/22 06:02:52 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":75.5821838,"throughput_eps":0,"last_update":"2026-03-22T06:02:47.479302674Z"} +2026/03/22 06:02:52 [log_collector] {"stage_name":"log_collector","events_processed":5,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1,"last_update":"2026-03-22T06:02:47.368973707Z"} +2026/03/22 06:02:52 [metric_collector] {"stage_name":"metric_collector","events_processed":79,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":15.8,"last_update":"2026-03-22T06:02:47.369197787Z"} +2026/03/22 06:02:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":34,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:02:47.378104139Z"} +2026/03/22 06:02:52 ───────────────────────────────────────────────── +Saved state: 8 clusters, 15 messages, reason: cluster_created +Saved state: 8 clusters, 16 messages, reason: cluster_template_changed +Saved state: 9 clusters, 32 messages, reason: cluster_created +2026/03/22 06:02:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:02:57 [log_collector] {"stage_name":"log_collector","events_processed":137,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":27.4,"last_update":"2026-03-22T06:02:57.368758066Z"} +2026/03/22 06:02:57 [metric_collector] {"stage_name":"metric_collector","events_processed":89,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":17.8,"last_update":"2026-03-22T06:02:57.369105211Z"} +2026/03/22 06:02:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":36,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:02:52.382387792Z"} +2026/03/22 06:02:57 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.963775999999999,"throughput_eps":0,"last_update":"2026-03-22T06:02:52.47980637Z"} +2026/03/22 06:02:57 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":75.5821838,"throughput_eps":0,"last_update":"2026-03-22T06:02:52.479819456Z"} +2026/03/22 06:02:57 ───────────────────────────────────────────────── +2026/03/22 06:03:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:03:02 [log_collector] {"stage_name":"log_collector","events_processed":300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":60,"last_update":"2026-03-22T06:03:02.368252455Z"} +2026/03/22 06:03:02 [metric_collector] {"stage_name":"metric_collector","events_processed":94,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":18.8,"last_update":"2026-03-22T06:03:02.368507633Z"} +2026/03/22 06:03:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":38,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:02:57.378896016Z"} +2026/03/22 06:03:02 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.963775999999999,"throughput_eps":0,"last_update":"2026-03-22T06:02:57.479463512Z"} +2026/03/22 06:03:02 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":515.38927904,"throughput_eps":0,"last_update":"2026-03-22T06:02:59.754090931Z"} +2026/03/22 06:03:02 ───────────────────────────────────────────────── +2026/03/22 06:03:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:03:07 [log_collector] {"stage_name":"log_collector","events_processed":369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":73.8,"last_update":"2026-03-22T06:03:07.368383Z"} +2026/03/22 06:03:07 [metric_collector] {"stage_name":"metric_collector","events_processed":94,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":18.8,"last_update":"2026-03-22T06:03:02.368507633Z"} +2026/03/22 06:03:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":40,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:03:02.376845638Z"} +2026/03/22 06:03:07 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.6221896,"throughput_eps":0,"last_update":"2026-03-22T06:03:02.479489429Z"} +2026/03/22 06:03:07 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":515.38927904,"throughput_eps":0,"last_update":"2026-03-22T06:03:02.479502485Z"} +2026/03/22 06:03:07 ───────────────────────────────────────────────── +2026/03/22 06:03:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:03:12 [log_collector] {"stage_name":"log_collector","events_processed":369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":73.8,"last_update":"2026-03-22T06:03:07.368383Z"} +2026/03/22 06:03:12 [metric_collector] {"stage_name":"metric_collector","events_processed":99,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":19.8,"last_update":"2026-03-22T06:03:07.369394646Z"} +2026/03/22 06:03:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":42,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:03:07.377792905Z"} +2026/03/22 06:03:12 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.6221896,"throughput_eps":0,"last_update":"2026-03-22T06:03:07.478984567Z"} +2026/03/22 06:03:12 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":515.38927904,"throughput_eps":0,"last_update":"2026-03-22T06:03:07.478931075Z"} +2026/03/22 06:03:12 ───────────────────────────────────────────────── +2026/03/22 06:03:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:03:17 [log_collector] {"stage_name":"log_collector","events_processed":369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":73.8,"last_update":"2026-03-22T06:03:17.36800838Z"} +2026/03/22 06:03:17 [metric_collector] {"stage_name":"metric_collector","events_processed":104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":20.8,"last_update":"2026-03-22T06:03:12.368581793Z"} +2026/03/22 06:03:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":44,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:03:12.37725046Z"} +2026/03/22 06:03:17 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.6221896,"throughput_eps":0,"last_update":"2026-03-22T06:03:12.479473888Z"} +2026/03/22 06:03:17 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":515.38927904,"throughput_eps":0,"last_update":"2026-03-22T06:03:12.479485451Z"} +2026/03/22 06:03:17 ───────────────────────────────────────────────── +Saved state: 9 clusters, 370 messages, reason: cluster_template_changed +Saved state: 10 clusters, 371 messages, reason: cluster_created +2026/03/22 06:03:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:03:22 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":515.38927904,"throughput_eps":0,"last_update":"2026-03-22T06:03:17.478870767Z"} +2026/03/22 06:03:22 [log_collector] {"stage_name":"log_collector","events_processed":369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":73.8,"last_update":"2026-03-22T06:03:17.36800838Z"} +2026/03/22 06:03:22 [metric_collector] {"stage_name":"metric_collector","events_processed":109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":21.8,"last_update":"2026-03-22T06:03:17.368530068Z"} +2026/03/22 06:03:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":46,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:03:17.377710716Z"} +2026/03/22 06:03:22 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.6221896,"throughput_eps":0,"last_update":"2026-03-22T06:03:17.480015549Z"} +2026/03/22 06:03:22 ───────────────────────────────────────────────── +2026/03/22 06:03:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:03:27 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.6221896,"throughput_eps":0,"last_update":"2026-03-22T06:03:22.479371966Z"} +2026/03/22 06:03:27 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":515.38927904,"throughput_eps":0,"last_update":"2026-03-22T06:03:22.479370514Z"} +2026/03/22 06:03:27 [log_collector] {"stage_name":"log_collector","events_processed":372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":74.4,"last_update":"2026-03-22T06:03:22.368495883Z"} +2026/03/22 06:03:27 [metric_collector] {"stage_name":"metric_collector","events_processed":114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":22.8,"last_update":"2026-03-22T06:03:22.368418795Z"} +2026/03/22 06:03:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":48,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:03:22.377122971Z"} +2026/03/22 06:03:27 ───────────────────────────────────────────────── +Saved state: 10 clusters, 376 messages, reason: cluster_template_changed +Saved state: 11 clusters, 382 messages, reason: cluster_created +2026/03/22 06:03:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:03:32 [log_collector] {"stage_name":"log_collector","events_processed":372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":74.4,"last_update":"2026-03-22T06:03:27.367952843Z"} +2026/03/22 06:03:32 [metric_collector] {"stage_name":"metric_collector","events_processed":119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":23.8,"last_update":"2026-03-22T06:03:27.368169157Z"} +2026/03/22 06:03:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":50,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:03:27.37441737Z"} +2026/03/22 06:03:32 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.6221896,"throughput_eps":0,"last_update":"2026-03-22T06:03:27.479656521Z"} +2026/03/22 06:03:32 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":515.38927904,"throughput_eps":0,"last_update":"2026-03-22T06:03:27.479627857Z"} +2026/03/22 06:03:32 ───────────────────────────────────────────────── +2026/03/22 06:03:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:03:37 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.247564479999999,"throughput_eps":0,"last_update":"2026-03-22T06:03:32.47920831Z"} +2026/03/22 06:03:37 [transform_engine] {"stage_name":"transform_engine","events_processed":4,"events_dropped":0,"avg_latency_ms":504.501382232,"throughput_eps":0,"last_update":"2026-03-22T06:03:32.479199453Z"} +2026/03/22 06:03:37 [log_collector] {"stage_name":"log_collector","events_processed":389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":77.8,"last_update":"2026-03-22T06:03:32.368593406Z"} +2026/03/22 06:03:37 [metric_collector] {"stage_name":"metric_collector","events_processed":124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":24.8,"last_update":"2026-03-22T06:03:32.368852253Z"} +2026/03/22 06:03:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":52,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:03:32.384092662Z"} +2026/03/22 06:03:37 ───────────────────────────────────────────────── +2026/03/22 06:03:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:03:42 [log_collector] {"stage_name":"log_collector","events_processed":399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":79.8,"last_update":"2026-03-22T06:03:37.368944594Z"} +2026/03/22 06:03:42 [metric_collector] {"stage_name":"metric_collector","events_processed":129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":25.8,"last_update":"2026-03-22T06:03:37.369780926Z"} +2026/03/22 06:03:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":54,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:03:37.378957966Z"} +2026/03/22 06:03:42 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.247564479999999,"throughput_eps":0,"last_update":"2026-03-22T06:03:37.479185422Z"} +2026/03/22 06:03:42 [transform_engine] {"stage_name":"transform_engine","events_processed":4,"events_dropped":0,"avg_latency_ms":504.501382232,"throughput_eps":0,"last_update":"2026-03-22T06:03:37.479235427Z"} +2026/03/22 06:03:42 ───────────────────────────────────────────────── +2026/03/22 06:03:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:03:47 [transform_engine] {"stage_name":"transform_engine","events_processed":4,"events_dropped":0,"avg_latency_ms":504.501382232,"throughput_eps":0,"last_update":"2026-03-22T06:03:42.479611293Z"} +2026/03/22 06:03:47 [log_collector] {"stage_name":"log_collector","events_processed":399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":79.8,"last_update":"2026-03-22T06:03:42.367972168Z"} +2026/03/22 06:03:47 [metric_collector] {"stage_name":"metric_collector","events_processed":134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":26.8,"last_update":"2026-03-22T06:03:42.368257774Z"} +2026/03/22 06:03:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":56,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:03:42.37739023Z"} +2026/03/22 06:03:47 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.247564479999999,"throughput_eps":0,"last_update":"2026-03-22T06:03:42.479633875Z"} +2026/03/22 06:03:47 ───────────────────────────────────────────────── +2026/03/22 06:03:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:03:52 [log_collector] {"stage_name":"log_collector","events_processed":399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":79.8,"last_update":"2026-03-22T06:03:47.36829591Z"} +2026/03/22 06:03:52 [metric_collector] {"stage_name":"metric_collector","events_processed":139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":27.8,"last_update":"2026-03-22T06:03:47.368785638Z"} +2026/03/22 06:03:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":58,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:03:47.375747467Z"} +2026/03/22 06:03:52 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.247564479999999,"throughput_eps":0,"last_update":"2026-03-22T06:03:47.478956932Z"} +2026/03/22 06:03:52 [transform_engine] {"stage_name":"transform_engine","events_processed":4,"events_dropped":0,"avg_latency_ms":504.501382232,"throughput_eps":0,"last_update":"2026-03-22T06:03:47.478889322Z"} +2026/03/22 06:03:52 ───────────────────────────────────────────────── +2026/03/22 06:03:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:03:57 [log_collector] {"stage_name":"log_collector","events_processed":399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":79.8,"last_update":"2026-03-22T06:03:52.368183848Z"} +2026/03/22 06:03:57 [metric_collector] {"stage_name":"metric_collector","events_processed":144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":28.8,"last_update":"2026-03-22T06:03:52.368776021Z"} +2026/03/22 06:03:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":60,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:03:52.378269638Z"} +2026/03/22 06:03:57 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.247564479999999,"throughput_eps":0,"last_update":"2026-03-22T06:03:52.479583393Z"} +2026/03/22 06:03:57 [transform_engine] {"stage_name":"transform_engine","events_processed":4,"events_dropped":0,"avg_latency_ms":504.501382232,"throughput_eps":0,"last_update":"2026-03-22T06:03:52.479702451Z"} +2026/03/22 06:03:57 ───────────────────────────────────────────────── +2026/03/22 06:04:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:04:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":62,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:03:57.377027269Z"} +2026/03/22 06:04:02 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.247564479999999,"throughput_eps":0,"last_update":"2026-03-22T06:03:57.47921611Z"} +2026/03/22 06:04:02 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":425.7402673856001,"throughput_eps":0,"last_update":"2026-03-22T06:03:57.589928219Z"} +2026/03/22 06:04:02 [log_collector] {"stage_name":"log_collector","events_processed":399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":79.8,"last_update":"2026-03-22T06:03:57.368039291Z"} +2026/03/22 06:04:02 [metric_collector] {"stage_name":"metric_collector","events_processed":148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":29.6,"last_update":"2026-03-22T06:03:57.367931925Z"} +2026/03/22 06:04:02 ───────────────────────────────────────────────── +2026/03/22 06:04:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:04:07 [log_collector] {"stage_name":"log_collector","events_processed":399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":79.8,"last_update":"2026-03-22T06:04:02.368020121Z"} +2026/03/22 06:04:07 [metric_collector] {"stage_name":"metric_collector","events_processed":153,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":30.6,"last_update":"2026-03-22T06:04:02.367907525Z"} +2026/03/22 06:04:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":64,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:04:02.377643977Z"} +2026/03/22 06:04:07 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":4.616766984,"throughput_eps":0,"last_update":"2026-03-22T06:04:02.479849841Z"} +2026/03/22 06:04:07 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":425.7402673856001,"throughput_eps":0,"last_update":"2026-03-22T06:04:02.479862975Z"} +2026/03/22 06:04:07 ───────────────────────────────────────────────── +2026/03/22 06:04:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:04:12 [log_collector] {"stage_name":"log_collector","events_processed":399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":79.8,"last_update":"2026-03-22T06:04:07.367995802Z"} +2026/03/22 06:04:12 [metric_collector] {"stage_name":"metric_collector","events_processed":158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":31.6,"last_update":"2026-03-22T06:04:07.368141642Z"} +2026/03/22 06:04:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":66,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:04:07.378982737Z"} +2026/03/22 06:04:12 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":4.616766984,"throughput_eps":0,"last_update":"2026-03-22T06:04:07.479338478Z"} +2026/03/22 06:04:12 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":425.7402673856001,"throughput_eps":0,"last_update":"2026-03-22T06:04:07.479388203Z"} +2026/03/22 06:04:12 ───────────────────────────────────────────────── +2026/03/22 06:04:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:04:17 [log_collector] {"stage_name":"log_collector","events_processed":399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":79.8,"last_update":"2026-03-22T06:04:12.368124073Z"} +2026/03/22 06:04:17 [metric_collector] {"stage_name":"metric_collector","events_processed":164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":32.8,"last_update":"2026-03-22T06:04:12.368609873Z"} +2026/03/22 06:04:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":68,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:04:12.378164075Z"} +2026/03/22 06:04:17 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":4.616766984,"throughput_eps":0,"last_update":"2026-03-22T06:04:12.479417905Z"} +2026/03/22 06:04:17 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":425.7402673856001,"throughput_eps":0,"last_update":"2026-03-22T06:04:12.479430831Z"} +2026/03/22 06:04:17 ───────────────────────────────────────────────── +2026/03/22 06:04:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:04:22 [log_collector] {"stage_name":"log_collector","events_processed":399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":79.8,"last_update":"2026-03-22T06:04:17.369154079Z"} +2026/03/22 06:04:22 [metric_collector] {"stage_name":"metric_collector","events_processed":169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":33.8,"last_update":"2026-03-22T06:04:17.369655468Z"} +2026/03/22 06:04:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":70,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:04:17.378544979Z"} +2026/03/22 06:04:22 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":4.616766984,"throughput_eps":0,"last_update":"2026-03-22T06:04:17.479745928Z"} +2026/03/22 06:04:22 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":425.7402673856001,"throughput_eps":0,"last_update":"2026-03-22T06:04:17.479758663Z"} +2026/03/22 06:04:22 ───────────────────────────────────────────────── +2026/03/22 06:04:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:04:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":72,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:04:22.37862319Z"} +2026/03/22 06:04:27 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":4.616766984,"throughput_eps":0,"last_update":"2026-03-22T06:04:22.479789563Z"} +2026/03/22 06:04:27 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":425.7402673856001,"throughput_eps":0,"last_update":"2026-03-22T06:04:22.479802397Z"} +2026/03/22 06:04:27 [log_collector] {"stage_name":"log_collector","events_processed":399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":79.8,"last_update":"2026-03-22T06:04:22.368586163Z"} +2026/03/22 06:04:27 [metric_collector] {"stage_name":"metric_collector","events_processed":174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":34.8,"last_update":"2026-03-22T06:04:22.368930813Z"} +2026/03/22 06:04:27 ───────────────────────────────────────────────── +2026/03/22 06:04:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:04:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":74,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:04:27.37873203Z"} +2026/03/22 06:04:32 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":4.616766984,"throughput_eps":0,"last_update":"2026-03-22T06:04:27.478965436Z"} +2026/03/22 06:04:32 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":353.4278029084801,"throughput_eps":0,"last_update":"2026-03-22T06:04:27.543029644Z"} +2026/03/22 06:04:32 [log_collector] {"stage_name":"log_collector","events_processed":399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":79.8,"last_update":"2026-03-22T06:04:27.368665306Z"} +2026/03/22 06:04:32 [metric_collector] {"stage_name":"metric_collector","events_processed":179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":35.8,"last_update":"2026-03-22T06:04:27.368987753Z"} +2026/03/22 06:04:32 ───────────────────────────────────────────────── +2026/03/22 06:04:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:04:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":76,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:04:32.378100511Z"} +2026/03/22 06:04:37 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":4.953423987200001,"throughput_eps":0,"last_update":"2026-03-22T06:04:32.47933812Z"} +2026/03/22 06:04:37 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":353.4278029084801,"throughput_eps":0,"last_update":"2026-03-22T06:04:32.479367005Z"} +2026/03/22 06:04:37 [log_collector] {"stage_name":"log_collector","events_processed":399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":79.8,"last_update":"2026-03-22T06:04:32.368565354Z"} +2026/03/22 06:04:37 [metric_collector] {"stage_name":"metric_collector","events_processed":184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":36.8,"last_update":"2026-03-22T06:04:32.369096692Z"} +2026/03/22 06:04:37 ───────────────────────────────────────────────── +Saved state: 11 clusters, 400 messages, reason: none +2026/03/22 06:04:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:04:42 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":4.953423987200001,"throughput_eps":0,"last_update":"2026-03-22T06:04:37.479126474Z"} +2026/03/22 06:04:42 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":353.4278029084801,"throughput_eps":0,"last_update":"2026-03-22T06:04:37.47914068Z"} +2026/03/22 06:04:42 [log_collector] {"stage_name":"log_collector","events_processed":399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":79.8,"last_update":"2026-03-22T06:04:37.36801521Z"} +2026/03/22 06:04:42 [metric_collector] {"stage_name":"metric_collector","events_processed":189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":37.8,"last_update":"2026-03-22T06:04:37.368333129Z"} +2026/03/22 06:04:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":78,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:04:37.376901694Z"} +2026/03/22 06:04:42 ───────────────────────────────────────────────── +2026/03/22 06:04:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:04:47 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":353.4278029084801,"throughput_eps":0,"last_update":"2026-03-22T06:04:42.479661904Z"} +2026/03/22 06:04:47 [log_collector] {"stage_name":"log_collector","events_processed":402,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":80.4,"last_update":"2026-03-22T06:04:42.368453143Z"} +2026/03/22 06:04:47 [metric_collector] {"stage_name":"metric_collector","events_processed":194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":38.8,"last_update":"2026-03-22T06:04:42.368666933Z"} +2026/03/22 06:04:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":80,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:04:42.377530794Z"} +2026/03/22 06:04:47 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":4.953423987200001,"throughput_eps":0,"last_update":"2026-03-22T06:04:42.479649039Z"} +2026/03/22 06:04:47 ───────────────────────────────────────────────── +2026/03/22 06:04:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:04:52 [log_collector] {"stage_name":"log_collector","events_processed":413,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":82.6,"last_update":"2026-03-22T06:04:47.368718437Z"} +2026/03/22 06:04:52 [metric_collector] {"stage_name":"metric_collector","events_processed":198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":39.6,"last_update":"2026-03-22T06:04:47.368815894Z"} +2026/03/22 06:04:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":82,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:04:47.378047189Z"} +2026/03/22 06:04:52 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":4.953423987200001,"throughput_eps":0,"last_update":"2026-03-22T06:04:47.479417Z"} +2026/03/22 06:04:52 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":353.4278029084801,"throughput_eps":0,"last_update":"2026-03-22T06:04:47.479436398Z"} +2026/03/22 06:04:52 ───────────────────────────────────────────────── +2026/03/22 06:04:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:04:57 [log_collector] {"stage_name":"log_collector","events_processed":413,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":82.6,"last_update":"2026-03-22T06:04:52.368366237Z"} +2026/03/22 06:04:57 [metric_collector] {"stage_name":"metric_collector","events_processed":204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":40.8,"last_update":"2026-03-22T06:04:52.368822271Z"} +2026/03/22 06:04:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":84,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:04:52.378228751Z"} +2026/03/22 06:04:57 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":4.953423987200001,"throughput_eps":0,"last_update":"2026-03-22T06:04:52.479405433Z"} +2026/03/22 06:04:57 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":353.4278029084801,"throughput_eps":0,"last_update":"2026-03-22T06:04:52.479421413Z"} +2026/03/22 06:04:57 ───────────────────────────────────────────────── +2026/03/22 06:05:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:05:02 [metric_collector] {"stage_name":"metric_collector","events_processed":209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":41.8,"last_update":"2026-03-22T06:04:57.369482899Z"} +2026/03/22 06:05:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":86,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:04:57.378120626Z"} +2026/03/22 06:05:02 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":4.953423987200001,"throughput_eps":0,"last_update":"2026-03-22T06:04:57.479364637Z"} +2026/03/22 06:05:02 [transform_engine] {"stage_name":"transform_engine","events_processed":7,"events_dropped":0,"avg_latency_ms":339.7918655267841,"throughput_eps":0,"last_update":"2026-03-22T06:04:57.764656537Z"} +2026/03/22 06:05:02 [log_collector] {"stage_name":"log_collector","events_processed":413,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":82.6,"last_update":"2026-03-22T06:04:57.368735928Z"} +2026/03/22 06:05:02 ───────────────────────────────────────────────── +2026/03/22 06:05:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:05:07 [log_collector] {"stage_name":"log_collector","events_processed":413,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":82.6,"last_update":"2026-03-22T06:05:02.368786676Z"} +2026/03/22 06:05:07 [metric_collector] {"stage_name":"metric_collector","events_processed":214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":42.8,"last_update":"2026-03-22T06:05:02.369409838Z"} +2026/03/22 06:05:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":88,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:05:02.37858709Z"} +2026/03/22 06:05:07 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.363821789760001,"throughput_eps":0,"last_update":"2026-03-22T06:05:02.479897317Z"} +2026/03/22 06:05:07 [transform_engine] {"stage_name":"transform_engine","events_processed":7,"events_dropped":0,"avg_latency_ms":339.7918655267841,"throughput_eps":0,"last_update":"2026-03-22T06:05:02.480008039Z"} +2026/03/22 06:05:07 ───────────────────────────────────────────────── +2026/03/22 06:05:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:05:12 [log_collector] {"stage_name":"log_collector","events_processed":413,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":82.6,"last_update":"2026-03-22T06:05:07.368468946Z"} +2026/03/22 06:05:12 [metric_collector] {"stage_name":"metric_collector","events_processed":219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":43.8,"last_update":"2026-03-22T06:05:07.369258949Z"} +2026/03/22 06:05:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":90,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:05:07.379549501Z"} +2026/03/22 06:05:12 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.363821789760001,"throughput_eps":0,"last_update":"2026-03-22T06:05:07.47991476Z"} +2026/03/22 06:05:12 [transform_engine] {"stage_name":"transform_engine","events_processed":7,"events_dropped":0,"avg_latency_ms":339.7918655267841,"throughput_eps":0,"last_update":"2026-03-22T06:05:07.479870915Z"} +2026/03/22 06:05:12 ───────────────────────────────────────────────── +2026/03/22 06:05:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:05:17 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.363821789760001,"throughput_eps":0,"last_update":"2026-03-22T06:05:12.47994196Z"} +2026/03/22 06:05:17 [transform_engine] {"stage_name":"transform_engine","events_processed":7,"events_dropped":0,"avg_latency_ms":339.7918655267841,"throughput_eps":0,"last_update":"2026-03-22T06:05:12.479839604Z"} +2026/03/22 06:05:17 [log_collector] {"stage_name":"log_collector","events_processed":413,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":82.6,"last_update":"2026-03-22T06:05:12.368223554Z"} +2026/03/22 06:05:17 [metric_collector] {"stage_name":"metric_collector","events_processed":224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":44.8,"last_update":"2026-03-22T06:05:12.36863399Z"} +2026/03/22 06:05:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":92,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:05:12.378541339Z"} +2026/03/22 06:05:17 ───────────────────────────────────────────────── +2026/03/22 06:05:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:05:22 [log_collector] {"stage_name":"log_collector","events_processed":413,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":82.6,"last_update":"2026-03-22T06:05:17.368012245Z"} +2026/03/22 06:05:22 [metric_collector] {"stage_name":"metric_collector","events_processed":229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":45.8,"last_update":"2026-03-22T06:05:17.368325305Z"} +2026/03/22 06:05:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":94,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:05:17.377357468Z"} +2026/03/22 06:05:22 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.363821789760001,"throughput_eps":0,"last_update":"2026-03-22T06:05:17.479646771Z"} +2026/03/22 06:05:22 [transform_engine] {"stage_name":"transform_engine","events_processed":7,"events_dropped":0,"avg_latency_ms":339.7918655267841,"throughput_eps":0,"last_update":"2026-03-22T06:05:17.479728527Z"} +2026/03/22 06:05:22 ───────────────────────────────────────────────── +2026/03/22 06:05:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:05:27 [log_collector] {"stage_name":"log_collector","events_processed":413,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":82.6,"last_update":"2026-03-22T06:05:22.368561152Z"} +2026/03/22 06:05:27 [metric_collector] {"stage_name":"metric_collector","events_processed":234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":46.8,"last_update":"2026-03-22T06:05:22.369270731Z"} +2026/03/22 06:05:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":96,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:05:22.377930962Z"} +2026/03/22 06:05:27 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.363821789760001,"throughput_eps":0,"last_update":"2026-03-22T06:05:22.479237172Z"} +2026/03/22 06:05:27 [transform_engine] {"stage_name":"transform_engine","events_processed":7,"events_dropped":0,"avg_latency_ms":339.7918655267841,"throughput_eps":0,"last_update":"2026-03-22T06:05:22.479203146Z"} +2026/03/22 06:05:27 ───────────────────────────────────────────────── +2026/03/22 06:05:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:05:32 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":294.85114222142727,"throughput_eps":0,"last_update":"2026-03-22T06:05:27.594856722Z"} +2026/03/22 06:05:32 [log_collector] {"stage_name":"log_collector","events_processed":413,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":82.6,"last_update":"2026-03-22T06:05:27.368795787Z"} +2026/03/22 06:05:32 [metric_collector] {"stage_name":"metric_collector","events_processed":239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":47.8,"last_update":"2026-03-22T06:05:27.369302697Z"} +2026/03/22 06:05:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":98,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:05:27.378475319Z"} +2026/03/22 06:05:32 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.363821789760001,"throughput_eps":0,"last_update":"2026-03-22T06:05:27.479809823Z"} +2026/03/22 06:05:32 ───────────────────────────────────────────────── +2026/03/22 06:05:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:05:37 [metric_collector] {"stage_name":"metric_collector","events_processed":244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":48.8,"last_update":"2026-03-22T06:05:32.36925609Z"} +2026/03/22 06:05:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:05:32.379067586Z"} +2026/03/22 06:05:37 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":5.964064631808001,"throughput_eps":0,"last_update":"2026-03-22T06:05:32.479520743Z"} +2026/03/22 06:05:37 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":294.85114222142727,"throughput_eps":0,"last_update":"2026-03-22T06:05:32.47939892Z"} +2026/03/22 06:05:37 [log_collector] {"stage_name":"log_collector","events_processed":413,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":82.6,"last_update":"2026-03-22T06:05:32.36881181Z"} +2026/03/22 06:05:37 ───────────────────────────────────────────────── +2026/03/22 06:05:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:05:42 [log_collector] {"stage_name":"log_collector","events_processed":413,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":82.6,"last_update":"2026-03-22T06:05:37.368337133Z"} +2026/03/22 06:05:42 [metric_collector] {"stage_name":"metric_collector","events_processed":249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":49.8,"last_update":"2026-03-22T06:05:37.36904027Z"} +2026/03/22 06:05:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:05:37.37820689Z"} +2026/03/22 06:05:42 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":5.964064631808001,"throughput_eps":0,"last_update":"2026-03-22T06:05:37.479514223Z"} +2026/03/22 06:05:42 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":294.85114222142727,"throughput_eps":0,"last_update":"2026-03-22T06:05:37.479483323Z"} +2026/03/22 06:05:42 ───────────────────────────────────────────────── +2026/03/22 06:05:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:05:47 [log_collector] {"stage_name":"log_collector","events_processed":413,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":82.6,"last_update":"2026-03-22T06:05:42.368821311Z"} +2026/03/22 06:05:47 [metric_collector] {"stage_name":"metric_collector","events_processed":254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":50.8,"last_update":"2026-03-22T06:05:42.369223371Z"} +2026/03/22 06:05:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:05:42.377964446Z"} +2026/03/22 06:05:47 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":5.964064631808001,"throughput_eps":0,"last_update":"2026-03-22T06:05:42.479090732Z"} +2026/03/22 06:05:47 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":294.85114222142727,"throughput_eps":0,"last_update":"2026-03-22T06:05:42.479113566Z"} +2026/03/22 06:05:47 ───────────────────────────────────────────────── +Saved state: 11 clusters, 414 messages, reason: none +2026/03/22 06:05:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:05:52 [log_collector] {"stage_name":"log_collector","events_processed":418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":83.6,"last_update":"2026-03-22T06:05:52.368663397Z"} +2026/03/22 06:05:52 [metric_collector] {"stage_name":"metric_collector","events_processed":259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":51.8,"last_update":"2026-03-22T06:05:47.369119111Z"} +2026/03/22 06:05:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:05:47.378183405Z"} +2026/03/22 06:05:52 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":5.964064631808001,"throughput_eps":0,"last_update":"2026-03-22T06:05:47.47941873Z"} +2026/03/22 06:05:52 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":294.85114222142727,"throughput_eps":0,"last_update":"2026-03-22T06:05:47.479375236Z"} +2026/03/22 06:05:52 ───────────────────────────────────────────────── +2026/03/22 06:05:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:05:57 [log_collector] {"stage_name":"log_collector","events_processed":418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":83.6,"last_update":"2026-03-22T06:05:52.368663397Z"} +2026/03/22 06:05:57 [metric_collector] {"stage_name":"metric_collector","events_processed":264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":52.8,"last_update":"2026-03-22T06:05:52.369442979Z"} +2026/03/22 06:05:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:05:52.378804482Z"} +2026/03/22 06:05:57 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":5.964064631808001,"throughput_eps":0,"last_update":"2026-03-22T06:05:52.478946323Z"} +2026/03/22 06:05:57 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":294.85114222142727,"throughput_eps":0,"last_update":"2026-03-22T06:05:52.478938078Z"} +2026/03/22 06:05:57 ───────────────────────────────────────────────── +2026/03/22 06:06:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:06:02 [log_collector] {"stage_name":"log_collector","events_processed":418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":83.6,"last_update":"2026-03-22T06:05:57.368203832Z"} +2026/03/22 06:06:02 [metric_collector] {"stage_name":"metric_collector","events_processed":269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":53.8,"last_update":"2026-03-22T06:05:57.368196559Z"} +2026/03/22 06:06:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:05:57.382195771Z"} +2026/03/22 06:06:02 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":5.964064631808001,"throughput_eps":0,"last_update":"2026-03-22T06:05:57.479482094Z"} +2026/03/22 06:06:02 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":375.74442337714186,"throughput_eps":0,"last_update":"2026-03-22T06:05:58.178825562Z"} +2026/03/22 06:06:02 ───────────────────────────────────────────────── +2026/03/22 06:06:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:06:07 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":5.390128505446401,"throughput_eps":0,"last_update":"2026-03-22T06:06:02.479983078Z"} +2026/03/22 06:06:07 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":375.74442337714186,"throughput_eps":0,"last_update":"2026-03-22T06:06:02.478889886Z"} +2026/03/22 06:06:07 [log_collector] {"stage_name":"log_collector","events_processed":418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":83.6,"last_update":"2026-03-22T06:06:02.368542495Z"} +2026/03/22 06:06:07 [metric_collector] {"stage_name":"metric_collector","events_processed":274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":54.8,"last_update":"2026-03-22T06:06:02.368799858Z"} +2026/03/22 06:06:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:06:02.374782252Z"} +2026/03/22 06:06:07 ───────────────────────────────────────────────── +2026/03/22 06:06:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:06:12 [log_collector] {"stage_name":"log_collector","events_processed":418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":83.6,"last_update":"2026-03-22T06:06:07.367994872Z"} +2026/03/22 06:06:12 [metric_collector] {"stage_name":"metric_collector","events_processed":279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":55.8,"last_update":"2026-03-22T06:06:07.368313963Z"} +2026/03/22 06:06:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:06:07.374233586Z"} +2026/03/22 06:06:12 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":5.390128505446401,"throughput_eps":0,"last_update":"2026-03-22T06:06:07.47950076Z"} +2026/03/22 06:06:12 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":375.74442337714186,"throughput_eps":0,"last_update":"2026-03-22T06:06:07.479481283Z"} +2026/03/22 06:06:12 ───────────────────────────────────────────────── +2026/03/22 06:06:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:06:17 [log_collector] {"stage_name":"log_collector","events_processed":418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":83.6,"last_update":"2026-03-22T06:06:17.368380135Z"} +2026/03/22 06:06:17 [metric_collector] {"stage_name":"metric_collector","events_processed":284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":56.8,"last_update":"2026-03-22T06:06:12.368666511Z"} +2026/03/22 06:06:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:06:12.37696521Z"} +2026/03/22 06:06:17 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":5.390128505446401,"throughput_eps":0,"last_update":"2026-03-22T06:06:12.479303436Z"} +2026/03/22 06:06:17 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":375.74442337714186,"throughput_eps":0,"last_update":"2026-03-22T06:06:12.479230416Z"} +2026/03/22 06:06:17 ───────────────────────────────────────────────── +2026/03/22 06:06:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:06:22 [log_collector] {"stage_name":"log_collector","events_processed":418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":83.6,"last_update":"2026-03-22T06:06:17.368380135Z"} +2026/03/22 06:06:22 [metric_collector] {"stage_name":"metric_collector","events_processed":289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":57.8,"last_update":"2026-03-22T06:06:17.368802283Z"} +2026/03/22 06:06:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:06:17.377163421Z"} +2026/03/22 06:06:22 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":5.390128505446401,"throughput_eps":0,"last_update":"2026-03-22T06:06:17.479090199Z"} +2026/03/22 06:06:22 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":375.74442337714186,"throughput_eps":0,"last_update":"2026-03-22T06:06:17.479114205Z"} +2026/03/22 06:06:22 ───────────────────────────────────────────────── +2026/03/22 06:06:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:06:27 [log_collector] {"stage_name":"log_collector","events_processed":418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":83.6,"last_update":"2026-03-22T06:06:22.368434951Z"} +2026/03/22 06:06:27 [metric_collector] {"stage_name":"metric_collector","events_processed":294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":58.8,"last_update":"2026-03-22T06:06:22.368685972Z"} +2026/03/22 06:06:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:06:22.37946044Z"} +2026/03/22 06:06:27 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":5.390128505446401,"throughput_eps":0,"last_update":"2026-03-22T06:06:22.479710328Z"} +2026/03/22 06:06:27 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":375.74442337714186,"throughput_eps":0,"last_update":"2026-03-22T06:06:22.479683747Z"} +2026/03/22 06:06:27 ───────────────────────────────────────────────── +2026/03/22 06:06:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:06:32 [log_collector] {"stage_name":"log_collector","events_processed":418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":83.6,"last_update":"2026-03-22T06:06:27.368004597Z"} +2026/03/22 06:06:32 [metric_collector] {"stage_name":"metric_collector","events_processed":299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":59.8,"last_update":"2026-03-22T06:06:27.368391518Z"} +2026/03/22 06:06:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":122,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:06:27.375117234Z"} +2026/03/22 06:06:32 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":5.390128505446401,"throughput_eps":0,"last_update":"2026-03-22T06:06:27.479376579Z"} +2026/03/22 06:06:32 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":345.3401285017135,"throughput_eps":0,"last_update":"2026-03-22T06:06:27.703167037Z"} +2026/03/22 06:06:32 ───────────────────────────────────────────────── +2026/03/22 06:06:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:06:37 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":345.3401285017135,"throughput_eps":0,"last_update":"2026-03-22T06:06:32.479271636Z"} +2026/03/22 06:06:37 [log_collector] {"stage_name":"log_collector","events_processed":421,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":84.2,"last_update":"2026-03-22T06:06:32.368822952Z"} +2026/03/22 06:06:37 [metric_collector] {"stage_name":"metric_collector","events_processed":304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":60.8,"last_update":"2026-03-22T06:06:32.369209773Z"} +2026/03/22 06:06:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:06:32.376020403Z"} +2026/03/22 06:06:37 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":4.960670604357121,"throughput_eps":0,"last_update":"2026-03-22T06:06:32.47925254Z"} +2026/03/22 06:06:37 ───────────────────────────────────────────────── +2026/03/22 06:06:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:06:42 [log_collector] {"stage_name":"log_collector","events_processed":429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":85.8,"last_update":"2026-03-22T06:06:37.368248849Z"} +2026/03/22 06:06:42 [metric_collector] {"stage_name":"metric_collector","events_processed":309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":61.8,"last_update":"2026-03-22T06:06:37.368756852Z"} +2026/03/22 06:06:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":126,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:06:37.377272687Z"} +2026/03/22 06:06:42 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":4.960670604357121,"throughput_eps":0,"last_update":"2026-03-22T06:06:37.47957311Z"} +2026/03/22 06:06:42 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":345.3401285017135,"throughput_eps":0,"last_update":"2026-03-22T06:06:37.479589862Z"} +2026/03/22 06:06:42 ───────────────────────────────────────────────── +2026/03/22 06:06:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:06:47 [log_collector] {"stage_name":"log_collector","events_processed":623,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":124.6,"last_update":"2026-03-22T06:06:42.368200413Z"} +2026/03/22 06:06:47 [metric_collector] {"stage_name":"metric_collector","events_processed":314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":62.8,"last_update":"2026-03-22T06:06:42.368296266Z"} +2026/03/22 06:06:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":128,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:06:42.374684757Z"} +2026/03/22 06:06:47 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":4.960670604357121,"throughput_eps":0,"last_update":"2026-03-22T06:06:42.479150737Z"} +2026/03/22 06:06:47 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":345.3401285017135,"throughput_eps":0,"last_update":"2026-03-22T06:06:42.479163431Z"} +2026/03/22 06:06:47 ───────────────────────────────────────────────── +2026/03/22 06:06:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:06:52 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":4.960670604357121,"throughput_eps":0,"last_update":"2026-03-22T06:06:47.47999105Z"} +2026/03/22 06:06:52 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":345.3401285017135,"throughput_eps":0,"last_update":"2026-03-22T06:06:47.478839776Z"} +2026/03/22 06:06:52 [log_collector] {"stage_name":"log_collector","events_processed":780,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":156,"last_update":"2026-03-22T06:06:47.368532022Z"} +2026/03/22 06:06:52 [metric_collector] {"stage_name":"metric_collector","events_processed":319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":63.8,"last_update":"2026-03-22T06:06:47.368892222Z"} +2026/03/22 06:06:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":130,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:06:47.37563426Z"} +2026/03/22 06:06:52 ───────────────────────────────────────────────── +2026/03/22 06:06:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:06:57 [log_collector] {"stage_name":"log_collector","events_processed":780,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":156,"last_update":"2026-03-22T06:06:57.368264937Z"} +2026/03/22 06:06:57 [metric_collector] {"stage_name":"metric_collector","events_processed":324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":64.8,"last_update":"2026-03-22T06:06:52.36873261Z"} +2026/03/22 06:06:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:06:52.377820409Z"} +2026/03/22 06:06:57 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":4.960670604357121,"throughput_eps":0,"last_update":"2026-03-22T06:06:52.479033822Z"} +2026/03/22 06:06:57 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":345.3401285017135,"throughput_eps":0,"last_update":"2026-03-22T06:06:52.479046977Z"} +2026/03/22 06:06:57 ───────────────────────────────────────────────── +Saved state: 11 clusters, 781 messages, reason: none +2026/03/22 06:07:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:07:02 [metric_collector] {"stage_name":"metric_collector","events_processed":329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":65.8,"last_update":"2026-03-22T06:06:57.368915644Z"} +2026/03/22 06:07:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:06:57.377523544Z"} +2026/03/22 06:07:02 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":4.960670604357121,"throughput_eps":0,"last_update":"2026-03-22T06:06:57.479935921Z"} +2026/03/22 06:07:02 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":298.8300580013708,"throughput_eps":0,"last_update":"2026-03-22T06:06:57.592744884Z"} +2026/03/22 06:07:02 [log_collector] {"stage_name":"log_collector","events_processed":780,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":156,"last_update":"2026-03-22T06:06:57.368264937Z"} +2026/03/22 06:07:02 ───────────────────────────────────────────────── +2026/03/22 06:07:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:07:07 [log_collector] {"stage_name":"log_collector","events_processed":783,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":156.6,"last_update":"2026-03-22T06:07:02.368723637Z"} +2026/03/22 06:07:07 [metric_collector] {"stage_name":"metric_collector","events_processed":334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":66.8,"last_update":"2026-03-22T06:07:02.369505705Z"} +2026/03/22 06:07:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:07:02.378000578Z"} +2026/03/22 06:07:07 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":5.485925683485697,"throughput_eps":0,"last_update":"2026-03-22T06:07:02.479147574Z"} +2026/03/22 06:07:07 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":298.8300580013708,"throughput_eps":0,"last_update":"2026-03-22T06:07:02.479160408Z"} +2026/03/22 06:07:07 ───────────────────────────────────────────────── +2026/03/22 06:07:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:07:12 [log_collector] {"stage_name":"log_collector","events_processed":783,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":156.6,"last_update":"2026-03-22T06:07:07.367970516Z"} +2026/03/22 06:07:12 [metric_collector] {"stage_name":"metric_collector","events_processed":339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":67.8,"last_update":"2026-03-22T06:07:07.368574361Z"} +2026/03/22 06:07:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:07:07.377556699Z"} +2026/03/22 06:07:12 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":5.485925683485697,"throughput_eps":0,"last_update":"2026-03-22T06:07:07.47978287Z"} +2026/03/22 06:07:12 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":298.8300580013708,"throughput_eps":0,"last_update":"2026-03-22T06:07:07.479795304Z"} +2026/03/22 06:07:12 ───────────────────────────────────────────────── +2026/03/22 06:07:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:07:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:07:12.375493549Z"} +2026/03/22 06:07:17 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":5.485925683485697,"throughput_eps":0,"last_update":"2026-03-22T06:07:12.479726963Z"} +2026/03/22 06:07:17 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":298.8300580013708,"throughput_eps":0,"last_update":"2026-03-22T06:07:12.479754446Z"} +2026/03/22 06:07:17 [log_collector] {"stage_name":"log_collector","events_processed":793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":158.6,"last_update":"2026-03-22T06:07:12.368252225Z"} +2026/03/22 06:07:17 [metric_collector] {"stage_name":"metric_collector","events_processed":344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":68.8,"last_update":"2026-03-22T06:07:12.368719831Z"} +2026/03/22 06:07:17 ───────────────────────────────────────────────── +2026/03/22 06:07:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:07:22 [log_collector] {"stage_name":"log_collector","events_processed":808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":161.6,"last_update":"2026-03-22T06:07:17.368822126Z"} +2026/03/22 06:07:22 [metric_collector] {"stage_name":"metric_collector","events_processed":349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":69.8,"last_update":"2026-03-22T06:07:17.369403408Z"} +2026/03/22 06:07:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:07:17.376427556Z"} +2026/03/22 06:07:22 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":5.485925683485697,"throughput_eps":0,"last_update":"2026-03-22T06:07:17.479646339Z"} +2026/03/22 06:07:22 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":298.8300580013708,"throughput_eps":0,"last_update":"2026-03-22T06:07:17.479666266Z"} +2026/03/22 06:07:22 ───────────────────────────────────────────────── +2026/03/22 06:07:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:07:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:07:22.377178272Z"} +2026/03/22 06:07:27 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":5.485925683485697,"throughput_eps":0,"last_update":"2026-03-22T06:07:22.479395666Z"} +2026/03/22 06:07:27 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":298.8300580013708,"throughput_eps":0,"last_update":"2026-03-22T06:07:22.479408139Z"} +2026/03/22 06:07:27 [log_collector] {"stage_name":"log_collector","events_processed":810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":162,"last_update":"2026-03-22T06:07:22.368527449Z"} +2026/03/22 06:07:27 [metric_collector] {"stage_name":"metric_collector","events_processed":354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":70.8,"last_update":"2026-03-22T06:07:22.368770625Z"} +2026/03/22 06:07:27 ───────────────────────────────────────────────── +2026/03/22 06:07:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:07:32 [metric_collector] {"stage_name":"metric_collector","events_processed":359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":71.8,"last_update":"2026-03-22T06:07:27.368745562Z"} +2026/03/22 06:07:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:07:27.37727341Z"} +2026/03/22 06:07:32 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":5.485925683485697,"throughput_eps":0,"last_update":"2026-03-22T06:07:27.47963978Z"} +2026/03/22 06:07:32 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":270.2150378010966,"throughput_eps":0,"last_update":"2026-03-22T06:07:27.635413252Z"} +2026/03/22 06:07:32 [log_collector] {"stage_name":"log_collector","events_processed":810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":162,"last_update":"2026-03-22T06:07:27.368087172Z"} +2026/03/22 06:07:32 ───────────────────────────────────────────────── +2026/03/22 06:07:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:07:37 [log_collector] {"stage_name":"log_collector","events_processed":810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":162,"last_update":"2026-03-22T06:07:32.367969953Z"} +2026/03/22 06:07:37 [metric_collector] {"stage_name":"metric_collector","events_processed":364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":72.8,"last_update":"2026-03-22T06:07:32.368322548Z"} +2026/03/22 06:07:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:07:32.377397182Z"} +2026/03/22 06:07:37 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":5.899416946788558,"throughput_eps":0,"last_update":"2026-03-22T06:07:32.479658491Z"} +2026/03/22 06:07:37 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":270.2150378010966,"throughput_eps":0,"last_update":"2026-03-22T06:07:32.479624817Z"} +2026/03/22 06:07:37 ───────────────────────────────────────────────── +2026/03/22 06:07:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:07:42 [log_collector] {"stage_name":"log_collector","events_processed":810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":162,"last_update":"2026-03-22T06:07:37.368806943Z"} +2026/03/22 06:07:42 [metric_collector] {"stage_name":"metric_collector","events_processed":369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":73.8,"last_update":"2026-03-22T06:07:37.369101056Z"} +2026/03/22 06:07:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:07:37.377921914Z"} +2026/03/22 06:07:42 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":5.899416946788558,"throughput_eps":0,"last_update":"2026-03-22T06:07:37.479242842Z"} +2026/03/22 06:07:42 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":270.2150378010966,"throughput_eps":0,"last_update":"2026-03-22T06:07:37.479150184Z"} +2026/03/22 06:07:42 ───────────────────────────────────────────────── +2026/03/22 06:07:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:07:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:07:42.37885811Z"} +2026/03/22 06:07:47 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":5.899416946788558,"throughput_eps":0,"last_update":"2026-03-22T06:07:42.479097027Z"} +2026/03/22 06:07:47 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":270.2150378010966,"throughput_eps":0,"last_update":"2026-03-22T06:07:42.479076938Z"} +2026/03/22 06:07:47 [log_collector] {"stage_name":"log_collector","events_processed":810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":162,"last_update":"2026-03-22T06:07:42.368831523Z"} +2026/03/22 06:07:47 [metric_collector] {"stage_name":"metric_collector","events_processed":374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":74.8,"last_update":"2026-03-22T06:07:42.36906978Z"} +2026/03/22 06:07:47 ───────────────────────────────────────────────── +2026/03/22 06:07:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:07:52 [log_collector] {"stage_name":"log_collector","events_processed":810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":162,"last_update":"2026-03-22T06:07:47.36796701Z"} +2026/03/22 06:07:52 [metric_collector] {"stage_name":"metric_collector","events_processed":379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":75.8,"last_update":"2026-03-22T06:07:47.36833238Z"} +2026/03/22 06:07:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:07:47.374231966Z"} +2026/03/22 06:07:52 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":5.899416946788558,"throughput_eps":0,"last_update":"2026-03-22T06:07:47.479607016Z"} +2026/03/22 06:07:52 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":270.2150378010966,"throughput_eps":0,"last_update":"2026-03-22T06:07:47.479491544Z"} +2026/03/22 06:07:52 ───────────────────────────────────────────────── +2026/03/22 06:07:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:07:57 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":270.2150378010966,"throughput_eps":0,"last_update":"2026-03-22T06:07:52.478944889Z"} +2026/03/22 06:07:57 [log_collector] {"stage_name":"log_collector","events_processed":810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":162,"last_update":"2026-03-22T06:07:52.368143751Z"} +2026/03/22 06:07:57 [metric_collector] {"stage_name":"metric_collector","events_processed":384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":76.8,"last_update":"2026-03-22T06:07:52.368611707Z"} +2026/03/22 06:07:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:07:52.376729549Z"} +2026/03/22 06:07:57 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":5.899416946788558,"throughput_eps":0,"last_update":"2026-03-22T06:07:52.478986379Z"} +2026/03/22 06:07:57 ───────────────────────────────────────────────── +2026/03/22 06:08:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:08:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:07:57.377035116Z"} +2026/03/22 06:08:02 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":5.899416946788558,"throughput_eps":0,"last_update":"2026-03-22T06:07:57.479260845Z"} +2026/03/22 06:08:02 [transform_engine] {"stage_name":"transform_engine","events_processed":13,"events_dropped":0,"avg_latency_ms":229.2333814408773,"throughput_eps":0,"last_update":"2026-03-22T06:07:57.5445829Z"} +2026/03/22 06:08:02 [log_collector] {"stage_name":"log_collector","events_processed":810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":162,"last_update":"2026-03-22T06:08:02.368773127Z"} +2026/03/22 06:08:02 [metric_collector] {"stage_name":"metric_collector","events_processed":389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":77.8,"last_update":"2026-03-22T06:07:57.369033155Z"} +2026/03/22 06:08:02 ───────────────────────────────────────────────── +2026/03/22 06:08:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:08:07 [log_collector] {"stage_name":"log_collector","events_processed":810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":162,"last_update":"2026-03-22T06:08:02.368773127Z"} +2026/03/22 06:08:07 [metric_collector] {"stage_name":"metric_collector","events_processed":394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":78.8,"last_update":"2026-03-22T06:08:02.369292742Z"} +2026/03/22 06:08:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:08:02.378770167Z"} +2026/03/22 06:08:07 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":6.545958357430846,"throughput_eps":0,"last_update":"2026-03-22T06:08:02.480000611Z"} +2026/03/22 06:08:07 [transform_engine] {"stage_name":"transform_engine","events_processed":13,"events_dropped":0,"avg_latency_ms":229.2333814408773,"throughput_eps":0,"last_update":"2026-03-22T06:08:02.478874205Z"} +2026/03/22 06:08:07 ───────────────────────────────────────────────── +2026/03/22 06:08:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:08:12 [log_collector] {"stage_name":"log_collector","events_processed":810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":162,"last_update":"2026-03-22T06:08:12.369157419Z"} +2026/03/22 06:08:12 [metric_collector] {"stage_name":"metric_collector","events_processed":399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":79.8,"last_update":"2026-03-22T06:08:07.368480426Z"} +2026/03/22 06:08:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:08:07.376893574Z"} +2026/03/22 06:08:12 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":6.545958357430846,"throughput_eps":0,"last_update":"2026-03-22T06:08:07.479121117Z"} +2026/03/22 06:08:12 [transform_engine] {"stage_name":"transform_engine","events_processed":13,"events_dropped":0,"avg_latency_ms":229.2333814408773,"throughput_eps":0,"last_update":"2026-03-22T06:08:07.47914317Z"} +2026/03/22 06:08:12 ───────────────────────────────────────────────── +2026/03/22 06:08:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:08:17 [transform_engine] {"stage_name":"transform_engine","events_processed":13,"events_dropped":0,"avg_latency_ms":229.2333814408773,"throughput_eps":0,"last_update":"2026-03-22T06:08:12.478815248Z"} +2026/03/22 06:08:17 [log_collector] {"stage_name":"log_collector","events_processed":810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":162,"last_update":"2026-03-22T06:08:12.369157419Z"} +2026/03/22 06:08:17 [metric_collector] {"stage_name":"metric_collector","events_processed":404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":80.8,"last_update":"2026-03-22T06:08:12.369652527Z"} +2026/03/22 06:08:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:08:12.377670127Z"} +2026/03/22 06:08:17 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":6.545958357430846,"throughput_eps":0,"last_update":"2026-03-22T06:08:12.47895223Z"} +2026/03/22 06:08:17 ───────────────────────────────────────────────── +2026/03/22 06:08:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:08:22 [transform_engine] {"stage_name":"transform_engine","events_processed":13,"events_dropped":0,"avg_latency_ms":229.2333814408773,"throughput_eps":0,"last_update":"2026-03-22T06:08:17.479306166Z"} +2026/03/22 06:08:22 [log_collector] {"stage_name":"log_collector","events_processed":810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":162,"last_update":"2026-03-22T06:08:17.368837243Z"} +2026/03/22 06:08:22 [metric_collector] {"stage_name":"metric_collector","events_processed":409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":81.8,"last_update":"2026-03-22T06:08:17.369575246Z"} +2026/03/22 06:08:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:08:17.378089157Z"} +2026/03/22 06:08:22 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":6.545958357430846,"throughput_eps":0,"last_update":"2026-03-22T06:08:17.479391339Z"} +2026/03/22 06:08:22 ───────────────────────────────────────────────── +Saved state: 11 clusters, 811 messages, reason: none +2026/03/22 06:08:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:08:27 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":6.545958357430846,"throughput_eps":0,"last_update":"2026-03-22T06:08:22.479636295Z"} +2026/03/22 06:08:27 [transform_engine] {"stage_name":"transform_engine","events_processed":13,"events_dropped":0,"avg_latency_ms":229.2333814408773,"throughput_eps":0,"last_update":"2026-03-22T06:08:22.47958681Z"} +2026/03/22 06:08:27 [log_collector] {"stage_name":"log_collector","events_processed":810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":162,"last_update":"2026-03-22T06:08:22.368816841Z"} +2026/03/22 06:08:27 [metric_collector] {"stage_name":"metric_collector","events_processed":414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":82.8,"last_update":"2026-03-22T06:08:22.369410328Z"} +2026/03/22 06:08:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:08:22.378375752Z"} +2026/03/22 06:08:27 ───────────────────────────────────────────────── +2026/03/22 06:08:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:08:32 [metric_collector] {"stage_name":"metric_collector","events_processed":419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":83.8,"last_update":"2026-03-22T06:08:27.368623085Z"} +2026/03/22 06:08:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":170,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:08:27.376302218Z"} +2026/03/22 06:08:32 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":6.545958357430846,"throughput_eps":0,"last_update":"2026-03-22T06:08:27.47957372Z"} +2026/03/22 06:08:32 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":203.50650835270187,"throughput_eps":0,"last_update":"2026-03-22T06:08:27.580193686Z"} +2026/03/22 06:08:32 [log_collector] {"stage_name":"log_collector","events_processed":823,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":164.6,"last_update":"2026-03-22T06:08:27.368538584Z"} +2026/03/22 06:08:32 ───────────────────────────────────────────────── +2026/03/22 06:08:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:08:37 [log_collector] {"stage_name":"log_collector","events_processed":824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":164.8,"last_update":"2026-03-22T06:08:32.368960686Z"} +2026/03/22 06:08:37 [metric_collector] {"stage_name":"metric_collector","events_processed":424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":84.8,"last_update":"2026-03-22T06:08:32.369237666Z"} +2026/03/22 06:08:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:08:32.378126875Z"} +2026/03/22 06:08:37 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":6.755101685944678,"throughput_eps":0,"last_update":"2026-03-22T06:08:32.479369092Z"} +2026/03/22 06:08:37 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":203.50650835270187,"throughput_eps":0,"last_update":"2026-03-22T06:08:32.479379863Z"} +2026/03/22 06:08:37 ───────────────────────────────────────────────── +2026/03/22 06:08:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:08:42 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":6.755101685944678,"throughput_eps":0,"last_update":"2026-03-22T06:08:37.479723294Z"} +2026/03/22 06:08:42 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":203.50650835270187,"throughput_eps":0,"last_update":"2026-03-22T06:08:37.479735396Z"} +2026/03/22 06:08:42 [log_collector] {"stage_name":"log_collector","events_processed":824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":164.8,"last_update":"2026-03-22T06:08:37.367963109Z"} +2026/03/22 06:08:42 [metric_collector] {"stage_name":"metric_collector","events_processed":429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":85.8,"last_update":"2026-03-22T06:08:37.368624365Z"} +2026/03/22 06:08:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:08:37.377489287Z"} +2026/03/22 06:08:42 ───────────────────────────────────────────────── +2026/03/22 06:08:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:08:47 [log_collector] {"stage_name":"log_collector","events_processed":824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":164.8,"last_update":"2026-03-22T06:08:42.36866154Z"} +2026/03/22 06:08:47 [metric_collector] {"stage_name":"metric_collector","events_processed":434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":86.8,"last_update":"2026-03-22T06:08:42.368976823Z"} +2026/03/22 06:08:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:08:42.378229428Z"} +2026/03/22 06:08:47 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":6.755101685944678,"throughput_eps":0,"last_update":"2026-03-22T06:08:42.479377334Z"} +2026/03/22 06:08:47 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":203.50650835270187,"throughput_eps":0,"last_update":"2026-03-22T06:08:42.479394868Z"} +2026/03/22 06:08:47 ───────────────────────────────────────────────── +2026/03/22 06:08:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:08:52 [metric_collector] {"stage_name":"metric_collector","events_processed":439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":87.8,"last_update":"2026-03-22T06:08:47.368717338Z"} +2026/03/22 06:08:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:08:47.377850334Z"} +2026/03/22 06:08:52 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":6.755101685944678,"throughput_eps":0,"last_update":"2026-03-22T06:08:47.479218031Z"} +2026/03/22 06:08:52 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":203.50650835270187,"throughput_eps":0,"last_update":"2026-03-22T06:08:47.479234693Z"} +2026/03/22 06:08:52 [log_collector] {"stage_name":"log_collector","events_processed":824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":164.8,"last_update":"2026-03-22T06:08:47.368141386Z"} +2026/03/22 06:08:52 ───────────────────────────────────────────────── +2026/03/22 06:08:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:08:57 [log_collector] {"stage_name":"log_collector","events_processed":824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":164.8,"last_update":"2026-03-22T06:08:52.368418007Z"} +2026/03/22 06:08:57 [metric_collector] {"stage_name":"metric_collector","events_processed":444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":88.8,"last_update":"2026-03-22T06:08:52.369091486Z"} +2026/03/22 06:08:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:08:52.377741378Z"} +2026/03/22 06:08:57 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":6.755101685944678,"throughput_eps":0,"last_update":"2026-03-22T06:08:52.478968115Z"} +2026/03/22 06:08:57 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":203.50650835270187,"throughput_eps":0,"last_update":"2026-03-22T06:08:52.478984567Z"} +2026/03/22 06:08:57 ───────────────────────────────────────────────── +2026/03/22 06:09:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:09:02 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":176.0240672821615,"throughput_eps":0,"last_update":"2026-03-22T06:08:57.54580377Z"} +2026/03/22 06:09:02 [log_collector] {"stage_name":"log_collector","events_processed":824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":164.8,"last_update":"2026-03-22T06:08:57.368181667Z"} +2026/03/22 06:09:02 [metric_collector] {"stage_name":"metric_collector","events_processed":449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":89.8,"last_update":"2026-03-22T06:08:57.368668859Z"} +2026/03/22 06:09:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:08:57.378462941Z"} +2026/03/22 06:09:02 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":6.755101685944678,"throughput_eps":0,"last_update":"2026-03-22T06:08:57.479694247Z"} +2026/03/22 06:09:02 ───────────────────────────────────────────────── +2026/03/22 06:09:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:09:07 [log_collector] {"stage_name":"log_collector","events_processed":824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":164.8,"last_update":"2026-03-22T06:09:02.368578206Z"} +2026/03/22 06:09:07 [metric_collector] {"stage_name":"metric_collector","events_processed":454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":90.8,"last_update":"2026-03-22T06:09:02.369284017Z"} +2026/03/22 06:09:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:09:02.378434588Z"} +2026/03/22 06:09:07 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":7.297067348755743,"throughput_eps":0,"last_update":"2026-03-22T06:09:02.47961706Z"} +2026/03/22 06:09:07 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":176.0240672821615,"throughput_eps":0,"last_update":"2026-03-22T06:09:02.479628311Z"} +2026/03/22 06:09:07 ───────────────────────────────────────────────── +2026/03/22 06:09:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:09:12 [log_collector] {"stage_name":"log_collector","events_processed":824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":164.8,"last_update":"2026-03-22T06:09:07.368376278Z"} +2026/03/22 06:09:12 [metric_collector] {"stage_name":"metric_collector","events_processed":459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":91.8,"last_update":"2026-03-22T06:09:07.368851797Z"} +2026/03/22 06:09:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:09:07.377905221Z"} +2026/03/22 06:09:12 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":7.297067348755743,"throughput_eps":0,"last_update":"2026-03-22T06:09:07.479155203Z"} +2026/03/22 06:09:12 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":176.0240672821615,"throughput_eps":0,"last_update":"2026-03-22T06:09:07.479164952Z"} +2026/03/22 06:09:12 ───────────────────────────────────────────────── +2026/03/22 06:09:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:09:17 [log_collector] {"stage_name":"log_collector","events_processed":824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":164.8,"last_update":"2026-03-22T06:09:12.368540089Z"} +2026/03/22 06:09:17 [metric_collector] {"stage_name":"metric_collector","events_processed":464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":92.8,"last_update":"2026-03-22T06:09:12.368936158Z"} +2026/03/22 06:09:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:09:12.37742508Z"} +2026/03/22 06:09:17 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":7.297067348755743,"throughput_eps":0,"last_update":"2026-03-22T06:09:12.479867576Z"} +2026/03/22 06:09:17 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":176.0240672821615,"throughput_eps":0,"last_update":"2026-03-22T06:09:12.479884197Z"} +2026/03/22 06:09:17 ───────────────────────────────────────────────── +2026/03/22 06:09:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:09:22 [log_collector] {"stage_name":"log_collector","events_processed":824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":164.8,"last_update":"2026-03-22T06:09:17.368601244Z"} +2026/03/22 06:09:22 [metric_collector] {"stage_name":"metric_collector","events_processed":469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":93.8,"last_update":"2026-03-22T06:09:17.369312495Z"} +2026/03/22 06:09:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:09:17.378843193Z"} +2026/03/22 06:09:22 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":7.297067348755743,"throughput_eps":0,"last_update":"2026-03-22T06:09:17.479230082Z"} +2026/03/22 06:09:22 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":176.0240672821615,"throughput_eps":0,"last_update":"2026-03-22T06:09:17.479246143Z"} +2026/03/22 06:09:22 ───────────────────────────────────────────────── +2026/03/22 06:09:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:09:27 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":176.0240672821615,"throughput_eps":0,"last_update":"2026-03-22T06:09:22.479690399Z"} +2026/03/22 06:09:27 [log_collector] {"stage_name":"log_collector","events_processed":824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":164.8,"last_update":"2026-03-22T06:09:22.368803777Z"} +2026/03/22 06:09:27 [metric_collector] {"stage_name":"metric_collector","events_processed":474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":94.8,"last_update":"2026-03-22T06:09:22.369257556Z"} +2026/03/22 06:09:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:09:22.379373904Z"} +2026/03/22 06:09:27 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":7.297067348755743,"throughput_eps":0,"last_update":"2026-03-22T06:09:22.479678436Z"} +2026/03/22 06:09:27 ───────────────────────────────────────────────── +Saved state: 11 clusters, 825 messages, reason: none +2026/03/22 06:09:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:09:32 [metric_collector] {"stage_name":"metric_collector","events_processed":484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":96.8,"last_update":"2026-03-22T06:09:32.369761408Z"} +2026/03/22 06:09:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:09:27.378334228Z"} +2026/03/22 06:09:32 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":7.297067348755743,"throughput_eps":0,"last_update":"2026-03-22T06:09:27.479664604Z"} +2026/03/22 06:09:32 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":154.1909610257292,"throughput_eps":0,"last_update":"2026-03-22T06:09:27.546551885Z"} +2026/03/22 06:09:32 [log_collector] {"stage_name":"log_collector","events_processed":824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":164.8,"last_update":"2026-03-22T06:09:27.368634367Z"} +2026/03/22 06:09:32 ───────────────────────────────────────────────── +2026/03/22 06:09:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:09:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:09:32.383174498Z"} +2026/03/22 06:09:37 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":7.9362938790045945,"throughput_eps":0,"last_update":"2026-03-22T06:09:32.47947815Z"} +2026/03/22 06:09:37 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":154.1909610257292,"throughput_eps":0,"last_update":"2026-03-22T06:09:32.479491646Z"} +2026/03/22 06:09:37 [log_collector] {"stage_name":"log_collector","events_processed":829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":165.8,"last_update":"2026-03-22T06:09:32.369781867Z"} +2026/03/22 06:09:37 [metric_collector] {"stage_name":"metric_collector","events_processed":484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":96.8,"last_update":"2026-03-22T06:09:32.369761408Z"} +2026/03/22 06:09:37 ───────────────────────────────────────────────── +2026/03/22 06:09:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:09:42 [log_collector] {"stage_name":"log_collector","events_processed":829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":165.8,"last_update":"2026-03-22T06:09:37.367988657Z"} +2026/03/22 06:09:42 [metric_collector] {"stage_name":"metric_collector","events_processed":489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":97.8,"last_update":"2026-03-22T06:09:37.368335882Z"} +2026/03/22 06:09:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:09:37.381396637Z"} +2026/03/22 06:09:42 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":7.9362938790045945,"throughput_eps":0,"last_update":"2026-03-22T06:09:37.480964699Z"} +2026/03/22 06:09:42 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":154.1909610257292,"throughput_eps":0,"last_update":"2026-03-22T06:09:37.480976933Z"} +2026/03/22 06:09:42 ───────────────────────────────────────────────── +2026/03/22 06:09:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:09:47 [log_collector] {"stage_name":"log_collector","events_processed":829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":165.8,"last_update":"2026-03-22T06:09:42.368947056Z"} +2026/03/22 06:09:47 [metric_collector] {"stage_name":"metric_collector","events_processed":499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":99.8,"last_update":"2026-03-22T06:09:47.368606306Z"} +2026/03/22 06:09:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:09:42.379638485Z"} +2026/03/22 06:09:47 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":7.9362938790045945,"throughput_eps":0,"last_update":"2026-03-22T06:09:42.479008316Z"} +2026/03/22 06:09:47 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":154.1909610257292,"throughput_eps":0,"last_update":"2026-03-22T06:09:42.478916742Z"} +2026/03/22 06:09:47 ───────────────────────────────────────────────── +2026/03/22 06:09:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:09:52 [log_collector] {"stage_name":"log_collector","events_processed":829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":165.8,"last_update":"2026-03-22T06:09:47.368803604Z"} +2026/03/22 06:09:52 [metric_collector] {"stage_name":"metric_collector","events_processed":499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":99.8,"last_update":"2026-03-22T06:09:47.368606306Z"} +2026/03/22 06:09:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:09:47.376491243Z"} +2026/03/22 06:09:52 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":7.9362938790045945,"throughput_eps":0,"last_update":"2026-03-22T06:09:47.47936321Z"} +2026/03/22 06:09:52 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":154.1909610257292,"throughput_eps":0,"last_update":"2026-03-22T06:09:47.479338673Z"} +2026/03/22 06:09:52 ───────────────────────────────────────────────── +2026/03/22 06:09:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:09:57 [metric_collector] {"stage_name":"metric_collector","events_processed":504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":100.8,"last_update":"2026-03-22T06:09:52.36918767Z"} +2026/03/22 06:09:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:09:52.37723664Z"} +2026/03/22 06:09:57 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":7.9362938790045945,"throughput_eps":0,"last_update":"2026-03-22T06:09:52.479466778Z"} +2026/03/22 06:09:57 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":154.1909610257292,"throughput_eps":0,"last_update":"2026-03-22T06:09:52.479483521Z"} +2026/03/22 06:09:57 [log_collector] {"stage_name":"log_collector","events_processed":829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":165.8,"last_update":"2026-03-22T06:09:52.368850675Z"} +2026/03/22 06:09:57 ───────────────────────────────────────────────── +2026/03/22 06:10:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:10:02 [log_collector] {"stage_name":"log_collector","events_processed":829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":165.8,"last_update":"2026-03-22T06:10:02.368730054Z"} +2026/03/22 06:10:02 [metric_collector] {"stage_name":"metric_collector","events_processed":509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":101.8,"last_update":"2026-03-22T06:09:57.36815911Z"} +2026/03/22 06:10:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":206,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:09:57.377613261Z"} +2026/03/22 06:10:02 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":7.9362938790045945,"throughput_eps":0,"last_update":"2026-03-22T06:09:57.479866694Z"} +2026/03/22 06:10:02 [transform_engine] {"stage_name":"transform_engine","events_processed":17,"events_dropped":0,"avg_latency_ms":290.9796846205834,"throughput_eps":0,"last_update":"2026-03-22T06:09:58.318015029Z"} +2026/03/22 06:10:02 ───────────────────────────────────────────────── +2026/03/22 06:10:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:10:07 [log_collector] {"stage_name":"log_collector","events_processed":829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":165.8,"last_update":"2026-03-22T06:10:02.368730054Z"} +2026/03/22 06:10:07 [metric_collector] {"stage_name":"metric_collector","events_processed":514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":102.8,"last_update":"2026-03-22T06:10:02.369000962Z"} +2026/03/22 06:10:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:10:02.38894697Z"} +2026/03/22 06:10:07 [detection_layer] {"stage_name":"detection_layer","events_processed":17,"events_dropped":0,"avg_latency_ms":7.711008703203675,"throughput_eps":0,"last_update":"2026-03-22T06:10:02.479142417Z"} +2026/03/22 06:10:07 [transform_engine] {"stage_name":"transform_engine","events_processed":17,"events_dropped":0,"avg_latency_ms":290.9796846205834,"throughput_eps":0,"last_update":"2026-03-22T06:10:02.479107721Z"} +2026/03/22 06:10:07 ───────────────────────────────────────────────── +2026/03/22 06:10:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:10:12 [metric_collector] {"stage_name":"metric_collector","events_processed":519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":103.8,"last_update":"2026-03-22T06:10:07.368155023Z"} +2026/03/22 06:10:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":210,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:10:07.374028999Z"} +2026/03/22 06:10:12 [detection_layer] {"stage_name":"detection_layer","events_processed":17,"events_dropped":0,"avg_latency_ms":7.711008703203675,"throughput_eps":0,"last_update":"2026-03-22T06:10:07.47940495Z"} +2026/03/22 06:10:12 [transform_engine] {"stage_name":"transform_engine","events_processed":17,"events_dropped":0,"avg_latency_ms":290.9796846205834,"throughput_eps":0,"last_update":"2026-03-22T06:10:07.479421251Z"} +2026/03/22 06:10:12 [log_collector] {"stage_name":"log_collector","events_processed":829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":165.8,"last_update":"2026-03-22T06:10:07.367946424Z"} +2026/03/22 06:10:12 ───────────────────────────────────────────────── +2026/03/22 06:10:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:10:17 [log_collector] {"stage_name":"log_collector","events_processed":832,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":166.4,"last_update":"2026-03-22T06:10:12.36799262Z"} +2026/03/22 06:10:17 [metric_collector] {"stage_name":"metric_collector","events_processed":524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":104.8,"last_update":"2026-03-22T06:10:12.368263439Z"} +2026/03/22 06:10:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:10:12.37489783Z"} +2026/03/22 06:10:17 [detection_layer] {"stage_name":"detection_layer","events_processed":17,"events_dropped":0,"avg_latency_ms":7.711008703203675,"throughput_eps":0,"last_update":"2026-03-22T06:10:12.47918674Z"} +2026/03/22 06:10:17 [transform_engine] {"stage_name":"transform_engine","events_processed":17,"events_dropped":0,"avg_latency_ms":290.9796846205834,"throughput_eps":0,"last_update":"2026-03-22T06:10:12.479170288Z"} +2026/03/22 06:10:17 ───────────────────────────────────────────────── +2026/03/22 06:10:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:10:22 [log_collector] {"stage_name":"log_collector","events_processed":840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":168,"last_update":"2026-03-22T06:10:17.368013457Z"} +2026/03/22 06:10:22 [metric_collector] {"stage_name":"metric_collector","events_processed":529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":105.8,"last_update":"2026-03-22T06:10:17.368280769Z"} +2026/03/22 06:10:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:10:17.376545463Z"} +2026/03/22 06:10:22 [detection_layer] {"stage_name":"detection_layer","events_processed":17,"events_dropped":0,"avg_latency_ms":7.711008703203675,"throughput_eps":0,"last_update":"2026-03-22T06:10:17.478940667Z"} +2026/03/22 06:10:22 [transform_engine] {"stage_name":"transform_engine","events_processed":17,"events_dropped":0,"avg_latency_ms":290.9796846205834,"throughput_eps":0,"last_update":"2026-03-22T06:10:17.478922051Z"} +2026/03/22 06:10:22 ───────────────────────────────────────────────── +2026/03/22 06:10:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:10:27 [log_collector] {"stage_name":"log_collector","events_processed":854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":170.8,"last_update":"2026-03-22T06:10:22.368175665Z"} +2026/03/22 06:10:27 [metric_collector] {"stage_name":"metric_collector","events_processed":534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":106.8,"last_update":"2026-03-22T06:10:22.368654061Z"} +2026/03/22 06:10:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:10:22.375494578Z"} +2026/03/22 06:10:27 [detection_layer] {"stage_name":"detection_layer","events_processed":17,"events_dropped":0,"avg_latency_ms":7.711008703203675,"throughput_eps":0,"last_update":"2026-03-22T06:10:22.479763139Z"} +2026/03/22 06:10:27 [transform_engine] {"stage_name":"transform_engine","events_processed":17,"events_dropped":0,"avg_latency_ms":290.9796846205834,"throughput_eps":0,"last_update":"2026-03-22T06:10:22.479724304Z"} +2026/03/22 06:10:27 ───────────────────────────────────────────────── +2026/03/22 06:10:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:10:32 [metric_collector] {"stage_name":"metric_collector","events_processed":539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":107.8,"last_update":"2026-03-22T06:10:27.368783214Z"} +2026/03/22 06:10:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:10:27.376663161Z"} +2026/03/22 06:10:32 [detection_layer] {"stage_name":"detection_layer","events_processed":17,"events_dropped":0,"avg_latency_ms":7.711008703203675,"throughput_eps":0,"last_update":"2026-03-22T06:10:27.479797781Z"} +2026/03/22 06:10:32 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":254.28333649646672,"throughput_eps":0,"last_update":"2026-03-22T06:10:27.587325933Z"} +2026/03/22 06:10:32 [log_collector] {"stage_name":"log_collector","events_processed":1192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":238.4,"last_update":"2026-03-22T06:10:32.368136432Z"} +2026/03/22 06:10:32 ───────────────────────────────────────────────── +2026/03/22 06:10:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:10:37 [log_collector] {"stage_name":"log_collector","events_processed":1192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":238.4,"last_update":"2026-03-22T06:10:32.368136432Z"} +2026/03/22 06:10:37 [metric_collector] {"stage_name":"metric_collector","events_processed":544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":108.8,"last_update":"2026-03-22T06:10:32.36876287Z"} +2026/03/22 06:10:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:10:32.376961267Z"} +2026/03/22 06:10:37 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":7.417700162562941,"throughput_eps":0,"last_update":"2026-03-22T06:10:32.479260687Z"} +2026/03/22 06:10:37 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":254.28333649646672,"throughput_eps":0,"last_update":"2026-03-22T06:10:32.479316665Z"} +2026/03/22 06:10:37 ───────────────────────────────────────────────── +2026/03/22 06:10:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:10:42 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":254.28333649646672,"throughput_eps":0,"last_update":"2026-03-22T06:10:37.479442479Z"} +2026/03/22 06:10:42 [log_collector] {"stage_name":"log_collector","events_processed":1192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":238.4,"last_update":"2026-03-22T06:10:37.368053507Z"} +2026/03/22 06:10:42 [metric_collector] {"stage_name":"metric_collector","events_processed":549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":109.8,"last_update":"2026-03-22T06:10:37.368470215Z"} +2026/03/22 06:10:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":222,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:10:37.376143085Z"} +2026/03/22 06:10:42 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":7.417700162562941,"throughput_eps":0,"last_update":"2026-03-22T06:10:37.479545157Z"} +2026/03/22 06:10:42 ───────────────────────────────────────────────── +2026/03/22 06:10:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:10:47 [log_collector] {"stage_name":"log_collector","events_processed":1192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":238.4,"last_update":"2026-03-22T06:10:42.368417218Z"} +2026/03/22 06:10:47 [metric_collector] {"stage_name":"metric_collector","events_processed":554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":110.8,"last_update":"2026-03-22T06:10:42.369105105Z"} +2026/03/22 06:10:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:10:42.3770994Z"} +2026/03/22 06:10:47 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":7.417700162562941,"throughput_eps":0,"last_update":"2026-03-22T06:10:42.479498743Z"} +2026/03/22 06:10:47 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":254.28333649646672,"throughput_eps":0,"last_update":"2026-03-22T06:10:42.479472212Z"} +2026/03/22 06:10:47 ───────────────────────────────────────────────── +2026/03/22 06:10:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:10:52 [log_collector] {"stage_name":"log_collector","events_processed":1192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":238.4,"last_update":"2026-03-22T06:10:47.36870908Z"} +2026/03/22 06:10:52 [metric_collector] {"stage_name":"metric_collector","events_processed":559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":111.8,"last_update":"2026-03-22T06:10:47.369067546Z"} +2026/03/22 06:10:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:10:47.378140888Z"} +2026/03/22 06:10:52 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":7.417700162562941,"throughput_eps":0,"last_update":"2026-03-22T06:10:47.479373576Z"} +2026/03/22 06:10:52 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":254.28333649646672,"throughput_eps":0,"last_update":"2026-03-22T06:10:47.479369398Z"} +2026/03/22 06:10:52 ───────────────────────────────────────────────── +2026/03/22 06:10:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:10:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:10:52.377526663Z"} +2026/03/22 06:10:57 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":7.417700162562941,"throughput_eps":0,"last_update":"2026-03-22T06:10:52.479851413Z"} +2026/03/22 06:10:57 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":254.28333649646672,"throughput_eps":0,"last_update":"2026-03-22T06:10:52.479788502Z"} +2026/03/22 06:10:57 [log_collector] {"stage_name":"log_collector","events_processed":1192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":238.4,"last_update":"2026-03-22T06:10:57.368695077Z"} +2026/03/22 06:10:57 [metric_collector] {"stage_name":"metric_collector","events_processed":564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":112.8,"last_update":"2026-03-22T06:10:52.368883967Z"} +2026/03/22 06:10:57 ───────────────────────────────────────────────── +2026/03/22 06:11:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:11:02 [log_collector] {"stage_name":"log_collector","events_processed":1192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":238.4,"last_update":"2026-03-22T06:10:57.368695077Z"} +2026/03/22 06:11:02 [metric_collector] {"stage_name":"metric_collector","events_processed":569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":113.8,"last_update":"2026-03-22T06:10:57.369278013Z"} +2026/03/22 06:11:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:10:57.377856758Z"} +2026/03/22 06:11:02 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":7.417700162562941,"throughput_eps":0,"last_update":"2026-03-22T06:10:57.479055502Z"} +2026/03/22 06:11:02 [transform_engine] {"stage_name":"transform_engine","events_processed":19,"events_dropped":0,"avg_latency_ms":225.5030721971734,"throughput_eps":0,"last_update":"2026-03-22T06:10:57.589541566Z"} +2026/03/22 06:11:02 ───────────────────────────────────────────────── +2026/03/22 06:11:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:11:07 [log_collector] {"stage_name":"log_collector","events_processed":1192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":238.4,"last_update":"2026-03-22T06:11:02.368509506Z"} +2026/03/22 06:11:07 [metric_collector] {"stage_name":"metric_collector","events_processed":574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":114.8,"last_update":"2026-03-22T06:11:02.368880195Z"} +2026/03/22 06:11:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:11:02.377519685Z"} +2026/03/22 06:11:07 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":8.171203330050353,"throughput_eps":0,"last_update":"2026-03-22T06:11:02.479738963Z"} +2026/03/22 06:11:07 [transform_engine] {"stage_name":"transform_engine","events_processed":19,"events_dropped":0,"avg_latency_ms":225.5030721971734,"throughput_eps":0,"last_update":"2026-03-22T06:11:02.479762909Z"} +2026/03/22 06:11:07 ───────────────────────────────────────────────── +2026/03/22 06:11:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:11:12 [log_collector] {"stage_name":"log_collector","events_processed":1192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":238.4,"last_update":"2026-03-22T06:11:07.368040988Z"} +2026/03/22 06:11:12 [metric_collector] {"stage_name":"metric_collector","events_processed":579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":115.8,"last_update":"2026-03-22T06:11:07.368578668Z"} +2026/03/22 06:11:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:11:07.37715068Z"} +2026/03/22 06:11:12 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":8.171203330050353,"throughput_eps":0,"last_update":"2026-03-22T06:11:07.479019716Z"} +2026/03/22 06:11:12 [transform_engine] {"stage_name":"transform_engine","events_processed":19,"events_dropped":0,"avg_latency_ms":225.5030721971734,"throughput_eps":0,"last_update":"2026-03-22T06:11:07.47898522Z"} +2026/03/22 06:11:12 ───────────────────────────────────────────────── +2026/03/22 06:11:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:11:17 [log_collector] {"stage_name":"log_collector","events_processed":1192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":238.4,"last_update":"2026-03-22T06:11:17.368513645Z"} +2026/03/22 06:11:17 [metric_collector] {"stage_name":"metric_collector","events_processed":584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":116.8,"last_update":"2026-03-22T06:11:12.369269851Z"} +2026/03/22 06:11:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:11:12.379448729Z"} +2026/03/22 06:11:17 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":8.171203330050353,"throughput_eps":0,"last_update":"2026-03-22T06:11:12.4796332Z"} +2026/03/22 06:11:17 [transform_engine] {"stage_name":"transform_engine","events_processed":19,"events_dropped":0,"avg_latency_ms":225.5030721971734,"throughput_eps":0,"last_update":"2026-03-22T06:11:12.479676022Z"} +2026/03/22 06:11:17 ───────────────────────────────────────────────── +2026/03/22 06:11:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:11:22 [metric_collector] {"stage_name":"metric_collector","events_processed":589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":117.8,"last_update":"2026-03-22T06:11:17.369123041Z"} +2026/03/22 06:11:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:11:17.377984056Z"} +2026/03/22 06:11:22 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":8.171203330050353,"throughput_eps":0,"last_update":"2026-03-22T06:11:17.479261611Z"} +2026/03/22 06:11:22 [transform_engine] {"stage_name":"transform_engine","events_processed":19,"events_dropped":0,"avg_latency_ms":225.5030721971734,"throughput_eps":0,"last_update":"2026-03-22T06:11:17.479314782Z"} +2026/03/22 06:11:22 [log_collector] {"stage_name":"log_collector","events_processed":1192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":238.4,"last_update":"2026-03-22T06:11:17.368513645Z"} +2026/03/22 06:11:22 ───────────────────────────────────────────────── +2026/03/22 06:11:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:11:27 [log_collector] {"stage_name":"log_collector","events_processed":1192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":238.4,"last_update":"2026-03-22T06:11:27.368542916Z"} +2026/03/22 06:11:27 [metric_collector] {"stage_name":"metric_collector","events_processed":594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":118.8,"last_update":"2026-03-22T06:11:22.368780003Z"} +2026/03/22 06:11:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:11:22.378306352Z"} +2026/03/22 06:11:27 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":8.171203330050353,"throughput_eps":0,"last_update":"2026-03-22T06:11:22.479584056Z"} +2026/03/22 06:11:27 [transform_engine] {"stage_name":"transform_engine","events_processed":19,"events_dropped":0,"avg_latency_ms":225.5030721971734,"throughput_eps":0,"last_update":"2026-03-22T06:11:22.47956007Z"} +2026/03/22 06:11:27 ───────────────────────────────────────────────── +2026/03/22 06:11:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:11:32 [log_collector] {"stage_name":"log_collector","events_processed":1192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":238.4,"last_update":"2026-03-22T06:11:27.368542916Z"} +2026/03/22 06:11:32 [metric_collector] {"stage_name":"metric_collector","events_processed":599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":119.8,"last_update":"2026-03-22T06:11:27.368958331Z"} +2026/03/22 06:11:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:11:27.377556764Z"} +2026/03/22 06:11:32 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":8.171203330050353,"throughput_eps":0,"last_update":"2026-03-22T06:11:27.480255058Z"} +2026/03/22 06:11:32 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":195.97743295773873,"throughput_eps":0,"last_update":"2026-03-22T06:11:27.557742744Z"} +2026/03/22 06:11:32 ───────────────────────────────────────────────── +2026/03/22 06:11:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:11:37 [log_collector] {"stage_name":"log_collector","events_processed":1192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":238.4,"last_update":"2026-03-22T06:11:32.368824703Z"} +2026/03/22 06:11:37 [metric_collector] {"stage_name":"metric_collector","events_processed":604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":120.8,"last_update":"2026-03-22T06:11:32.36919412Z"} +2026/03/22 06:11:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:11:32.378499486Z"} +2026/03/22 06:11:37 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":8.768372864040284,"throughput_eps":0,"last_update":"2026-03-22T06:11:32.479796137Z"} +2026/03/22 06:11:37 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":195.97743295773873,"throughput_eps":0,"last_update":"2026-03-22T06:11:32.479853256Z"} +2026/03/22 06:11:37 ───────────────────────────────────────────────── +2026/03/22 06:11:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:11:42 [log_collector] {"stage_name":"log_collector","events_processed":1192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":238.4,"last_update":"2026-03-22T06:11:37.368754014Z"} +2026/03/22 06:11:42 [metric_collector] {"stage_name":"metric_collector","events_processed":609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":121.8,"last_update":"2026-03-22T06:11:37.369072023Z"} +2026/03/22 06:11:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":246,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:11:37.375616763Z"} +2026/03/22 06:11:42 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":8.768372864040284,"throughput_eps":0,"last_update":"2026-03-22T06:11:37.479849336Z"} +2026/03/22 06:11:42 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":195.97743295773873,"throughput_eps":0,"last_update":"2026-03-22T06:11:37.479855377Z"} +2026/03/22 06:11:42 ───────────────────────────────────────────────── +2026/03/22 06:11:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:11:47 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":195.97743295773873,"throughput_eps":0,"last_update":"2026-03-22T06:11:42.478879886Z"} +2026/03/22 06:11:47 [log_collector] {"stage_name":"log_collector","events_processed":1192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":238.4,"last_update":"2026-03-22T06:11:42.368233174Z"} +2026/03/22 06:11:47 [metric_collector] {"stage_name":"metric_collector","events_processed":614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":122.8,"last_update":"2026-03-22T06:11:42.368377891Z"} +2026/03/22 06:11:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:11:42.375724467Z"} +2026/03/22 06:11:47 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":8.768372864040284,"throughput_eps":0,"last_update":"2026-03-22T06:11:42.479979642Z"} +2026/03/22 06:11:47 ───────────────────────────────────────────────── +2026/03/22 06:11:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:11:52 [log_collector] {"stage_name":"log_collector","events_processed":1192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":238.4,"last_update":"2026-03-22T06:11:52.368020766Z"} +2026/03/22 06:11:52 [metric_collector] {"stage_name":"metric_collector","events_processed":619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":123.8,"last_update":"2026-03-22T06:11:47.368429614Z"} +2026/03/22 06:11:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:11:47.378734203Z"} +2026/03/22 06:11:52 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":8.768372864040284,"throughput_eps":0,"last_update":"2026-03-22T06:11:47.48000311Z"} +2026/03/22 06:11:52 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":195.97743295773873,"throughput_eps":0,"last_update":"2026-03-22T06:11:47.478880241Z"} +2026/03/22 06:11:52 ───────────────────────────────────────────────── +2026/03/22 06:11:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:11:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:11:52.37654109Z"} +2026/03/22 06:11:57 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":8.768372864040284,"throughput_eps":0,"last_update":"2026-03-22T06:11:52.479790218Z"} +2026/03/22 06:11:57 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":195.97743295773873,"throughput_eps":0,"last_update":"2026-03-22T06:11:52.479753748Z"} +2026/03/22 06:11:57 [log_collector] {"stage_name":"log_collector","events_processed":1192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":238.4,"last_update":"2026-03-22T06:11:52.368020766Z"} +2026/03/22 06:11:57 [metric_collector] {"stage_name":"metric_collector","events_processed":624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":124.8,"last_update":"2026-03-22T06:11:52.368609764Z"} +2026/03/22 06:11:57 ───────────────────────────────────────────────── +2026/03/22 06:12:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:12:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:11:57.377610471Z"} +2026/03/22 06:12:02 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":8.768372864040284,"throughput_eps":0,"last_update":"2026-03-22T06:11:57.479816463Z"} +2026/03/22 06:12:02 [transform_engine] {"stage_name":"transform_engine","events_processed":21,"events_dropped":0,"avg_latency_ms":169.245462766191,"throughput_eps":0,"last_update":"2026-03-22T06:11:57.542166777Z"} +2026/03/22 06:12:02 [log_collector] {"stage_name":"log_collector","events_processed":1192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":238.4,"last_update":"2026-03-22T06:12:02.368391514Z"} +2026/03/22 06:12:02 [metric_collector] {"stage_name":"metric_collector","events_processed":629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":125.8,"last_update":"2026-03-22T06:11:57.369083986Z"} +2026/03/22 06:12:02 ───────────────────────────────────────────────── +Saved state: 11 clusters, 1193 messages, reason: none +2026/03/22 06:12:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:12:07 [transform_engine] {"stage_name":"transform_engine","events_processed":21,"events_dropped":0,"avg_latency_ms":169.245462766191,"throughput_eps":0,"last_update":"2026-03-22T06:12:02.479161412Z"} +2026/03/22 06:12:07 [log_collector] {"stage_name":"log_collector","events_processed":1192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":238.4,"last_update":"2026-03-22T06:12:02.368391514Z"} +2026/03/22 06:12:07 [metric_collector] {"stage_name":"metric_collector","events_processed":634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":126.8,"last_update":"2026-03-22T06:12:02.368976714Z"} +2026/03/22 06:12:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:12:02.375928865Z"} +2026/03/22 06:12:07 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":9.041196091232228,"throughput_eps":0,"last_update":"2026-03-22T06:12:02.479150982Z"} +2026/03/22 06:12:07 ───────────────────────────────────────────────── +2026/03/22 06:12:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:12:12 [log_collector] {"stage_name":"log_collector","events_processed":1195,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":239,"last_update":"2026-03-22T06:12:07.368050052Z"} +2026/03/22 06:12:12 [metric_collector] {"stage_name":"metric_collector","events_processed":639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":127.8,"last_update":"2026-03-22T06:12:07.368124224Z"} +2026/03/22 06:12:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:12:07.375821251Z"} +2026/03/22 06:12:12 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":9.041196091232228,"throughput_eps":0,"last_update":"2026-03-22T06:12:07.48047051Z"} +2026/03/22 06:12:12 [transform_engine] {"stage_name":"transform_engine","events_processed":21,"events_dropped":0,"avg_latency_ms":169.245462766191,"throughput_eps":0,"last_update":"2026-03-22T06:12:07.47890869Z"} +2026/03/22 06:12:12 ───────────────────────────────────────────────── +2026/03/22 06:12:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:12:17 [transform_engine] {"stage_name":"transform_engine","events_processed":21,"events_dropped":0,"avg_latency_ms":169.245462766191,"throughput_eps":0,"last_update":"2026-03-22T06:12:12.479681573Z"} +2026/03/22 06:12:17 [log_collector] {"stage_name":"log_collector","events_processed":1195,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":239,"last_update":"2026-03-22T06:12:12.368143574Z"} +2026/03/22 06:12:17 [metric_collector] {"stage_name":"metric_collector","events_processed":644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":128.8,"last_update":"2026-03-22T06:12:12.368216534Z"} +2026/03/22 06:12:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:12:12.375593979Z"} +2026/03/22 06:12:17 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":9.041196091232228,"throughput_eps":0,"last_update":"2026-03-22T06:12:12.479668357Z"} +2026/03/22 06:12:17 ───────────────────────────────────────────────── +2026/03/22 06:12:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:12:22 [log_collector] {"stage_name":"log_collector","events_processed":1205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":241,"last_update":"2026-03-22T06:12:17.367966948Z"} +2026/03/22 06:12:22 [metric_collector] {"stage_name":"metric_collector","events_processed":649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":129.8,"last_update":"2026-03-22T06:12:17.368326707Z"} +2026/03/22 06:12:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:12:17.375203673Z"} +2026/03/22 06:12:22 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":9.041196091232228,"throughput_eps":0,"last_update":"2026-03-22T06:12:17.479468065Z"} +2026/03/22 06:12:22 [transform_engine] {"stage_name":"transform_engine","events_processed":21,"events_dropped":0,"avg_latency_ms":169.245462766191,"throughput_eps":0,"last_update":"2026-03-22T06:12:17.47948084Z"} +2026/03/22 06:12:22 ───────────────────────────────────────────────── +2026/03/22 06:12:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:12:27 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":9.041196091232228,"throughput_eps":0,"last_update":"2026-03-22T06:12:22.479504516Z"} +2026/03/22 06:12:27 [transform_engine] {"stage_name":"transform_engine","events_processed":21,"events_dropped":0,"avg_latency_ms":169.245462766191,"throughput_eps":0,"last_update":"2026-03-22T06:12:22.479517221Z"} +2026/03/22 06:12:27 [log_collector] {"stage_name":"log_collector","events_processed":1206,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":241.2,"last_update":"2026-03-22T06:12:22.367964274Z"} +2026/03/22 06:12:27 [metric_collector] {"stage_name":"metric_collector","events_processed":654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":130.8,"last_update":"2026-03-22T06:12:22.368265431Z"} +2026/03/22 06:12:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:12:22.377232739Z"} +2026/03/22 06:12:27 ───────────────────────────────────────────────── +2026/03/22 06:12:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:12:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:12:27.377302253Z"} +2026/03/22 06:12:32 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":9.041196091232228,"throughput_eps":0,"last_update":"2026-03-22T06:12:27.479841423Z"} +2026/03/22 06:12:32 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":159.6141590129528,"throughput_eps":0,"last_update":"2026-03-22T06:12:27.600941548Z"} +2026/03/22 06:12:32 [log_collector] {"stage_name":"log_collector","events_processed":1220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":244,"last_update":"2026-03-22T06:12:27.36796219Z"} +2026/03/22 06:12:32 [metric_collector] {"stage_name":"metric_collector","events_processed":659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":131.8,"last_update":"2026-03-22T06:12:27.36861457Z"} +2026/03/22 06:12:32 ───────────────────────────────────────────────── +2026/03/22 06:12:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:12:37 [log_collector] {"stage_name":"log_collector","events_processed":1236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":247.2,"last_update":"2026-03-22T06:12:32.368732586Z"} +2026/03/22 06:12:37 [metric_collector] {"stage_name":"metric_collector","events_processed":664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":132.8,"last_update":"2026-03-22T06:12:32.369174042Z"} +2026/03/22 06:12:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:12:32.377285511Z"} +2026/03/22 06:12:37 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":9.118967672985782,"throughput_eps":0,"last_update":"2026-03-22T06:12:32.479668993Z"} +2026/03/22 06:12:37 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":159.6141590129528,"throughput_eps":0,"last_update":"2026-03-22T06:12:32.479685544Z"} +2026/03/22 06:12:37 ───────────────────────────────────────────────── +2026/03/22 06:12:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:12:42 [log_collector] {"stage_name":"log_collector","events_processed":1236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":247.2,"last_update":"2026-03-22T06:12:37.367957782Z"} +2026/03/22 06:12:42 [metric_collector] {"stage_name":"metric_collector","events_processed":669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":133.8,"last_update":"2026-03-22T06:12:37.368601294Z"} +2026/03/22 06:12:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:12:37.377140783Z"} +2026/03/22 06:12:42 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":9.118967672985782,"throughput_eps":0,"last_update":"2026-03-22T06:12:37.479381561Z"} +2026/03/22 06:12:42 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":159.6141590129528,"throughput_eps":0,"last_update":"2026-03-22T06:12:37.479392012Z"} +2026/03/22 06:12:42 ───────────────────────────────────────────────── +2026/03/22 06:12:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:12:47 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":159.6141590129528,"throughput_eps":0,"last_update":"2026-03-22T06:12:42.479376512Z"} +2026/03/22 06:12:47 [log_collector] {"stage_name":"log_collector","events_processed":1236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":247.2,"last_update":"2026-03-22T06:12:42.36843747Z"} +2026/03/22 06:12:47 [metric_collector] {"stage_name":"metric_collector","events_processed":674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":134.8,"last_update":"2026-03-22T06:12:42.368848918Z"} +2026/03/22 06:12:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:12:42.377140433Z"} +2026/03/22 06:12:47 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":9.118967672985782,"throughput_eps":0,"last_update":"2026-03-22T06:12:42.479346215Z"} +2026/03/22 06:12:47 ───────────────────────────────────────────────── +2026/03/22 06:12:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:12:52 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":9.118967672985782,"throughput_eps":0,"last_update":"2026-03-22T06:12:47.478960967Z"} +2026/03/22 06:12:52 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":159.6141590129528,"throughput_eps":0,"last_update":"2026-03-22T06:12:47.478918035Z"} +2026/03/22 06:12:52 [log_collector] {"stage_name":"log_collector","events_processed":1236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":247.2,"last_update":"2026-03-22T06:12:47.368236576Z"} +2026/03/22 06:12:52 [metric_collector] {"stage_name":"metric_collector","events_processed":679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":135.8,"last_update":"2026-03-22T06:12:47.368525449Z"} +2026/03/22 06:12:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:12:47.374757471Z"} +2026/03/22 06:12:52 ───────────────────────────────────────────────── +2026/03/22 06:12:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:12:57 [log_collector] {"stage_name":"log_collector","events_processed":1236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":247.2,"last_update":"2026-03-22T06:12:52.368517611Z"} +2026/03/22 06:12:57 [metric_collector] {"stage_name":"metric_collector","events_processed":684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":136.8,"last_update":"2026-03-22T06:12:52.368842854Z"} +2026/03/22 06:12:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":276,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:12:52.376945316Z"} +2026/03/22 06:12:57 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":9.118967672985782,"throughput_eps":0,"last_update":"2026-03-22T06:12:52.479166618Z"} +2026/03/22 06:12:57 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":159.6141590129528,"throughput_eps":0,"last_update":"2026-03-22T06:12:52.479178821Z"} +2026/03/22 06:12:57 ───────────────────────────────────────────────── +2026/03/22 06:13:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:13:02 [log_collector] {"stage_name":"log_collector","events_processed":1236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":247.2,"last_update":"2026-03-22T06:12:57.368274343Z"} +2026/03/22 06:13:02 [metric_collector] {"stage_name":"metric_collector","events_processed":689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":137.8,"last_update":"2026-03-22T06:12:57.368642558Z"} +2026/03/22 06:13:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:12:57.378194646Z"} +2026/03/22 06:13:02 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":9.118967672985782,"throughput_eps":0,"last_update":"2026-03-22T06:12:57.479415161Z"} +2026/03/22 06:13:02 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":442.92045241036226,"throughput_eps":0,"last_update":"2026-03-22T06:12:59.055579984Z"} +2026/03/22 06:13:02 ───────────────────────────────────────────────── +2026/03/22 06:13:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:13:07 [log_collector] {"stage_name":"log_collector","events_processed":1236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":247.2,"last_update":"2026-03-22T06:13:02.368133941Z"} +2026/03/22 06:13:07 [metric_collector] {"stage_name":"metric_collector","events_processed":694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":138.8,"last_update":"2026-03-22T06:13:02.368645882Z"} +2026/03/22 06:13:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:13:02.377386246Z"} +2026/03/22 06:13:07 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":9.723290938388626,"throughput_eps":0,"last_update":"2026-03-22T06:13:02.479628967Z"} +2026/03/22 06:13:07 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":442.92045241036226,"throughput_eps":0,"last_update":"2026-03-22T06:13:02.479601976Z"} +2026/03/22 06:13:07 ───────────────────────────────────────────────── +2026/03/22 06:13:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:13:12 [log_collector] {"stage_name":"log_collector","events_processed":1236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":247.2,"last_update":"2026-03-22T06:13:07.368267965Z"} +2026/03/22 06:13:12 [metric_collector] {"stage_name":"metric_collector","events_processed":699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":139.8,"last_update":"2026-03-22T06:13:07.368513745Z"} +2026/03/22 06:13:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:13:07.377429796Z"} +2026/03/22 06:13:12 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":9.723290938388626,"throughput_eps":0,"last_update":"2026-03-22T06:13:07.479726471Z"} +2026/03/22 06:13:12 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":442.92045241036226,"throughput_eps":0,"last_update":"2026-03-22T06:13:07.479674171Z"} +2026/03/22 06:13:12 ───────────────────────────────────────────────── +2026/03/22 06:13:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:13:17 [log_collector] {"stage_name":"log_collector","events_processed":1236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":247.2,"last_update":"2026-03-22T06:13:17.368536201Z"} +2026/03/22 06:13:17 [metric_collector] {"stage_name":"metric_collector","events_processed":704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":140.8,"last_update":"2026-03-22T06:13:12.368761726Z"} +2026/03/22 06:13:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:13:12.378007097Z"} +2026/03/22 06:13:17 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":9.723290938388626,"throughput_eps":0,"last_update":"2026-03-22T06:13:12.47922148Z"} +2026/03/22 06:13:17 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":442.92045241036226,"throughput_eps":0,"last_update":"2026-03-22T06:13:12.479329968Z"} +2026/03/22 06:13:17 ───────────────────────────────────────────────── +2026/03/22 06:13:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:13:22 [metric_collector] {"stage_name":"metric_collector","events_processed":709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":141.8,"last_update":"2026-03-22T06:13:17.368931417Z"} +2026/03/22 06:13:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":286,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:13:17.377390152Z"} +2026/03/22 06:13:22 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":9.723290938388626,"throughput_eps":0,"last_update":"2026-03-22T06:13:17.479865489Z"} +2026/03/22 06:13:22 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":442.92045241036226,"throughput_eps":0,"last_update":"2026-03-22T06:13:17.479836453Z"} +2026/03/22 06:13:22 [log_collector] {"stage_name":"log_collector","events_processed":1236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":247.2,"last_update":"2026-03-22T06:13:22.368156979Z"} +2026/03/22 06:13:22 ───────────────────────────────────────────────── +2026/03/22 06:13:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:13:27 [log_collector] {"stage_name":"log_collector","events_processed":1236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":247.2,"last_update":"2026-03-22T06:13:27.368390088Z"} +2026/03/22 06:13:27 [metric_collector] {"stage_name":"metric_collector","events_processed":714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":142.8,"last_update":"2026-03-22T06:13:22.368979203Z"} +2026/03/22 06:13:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:13:22.377851219Z"} +2026/03/22 06:13:27 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":9.723290938388626,"throughput_eps":0,"last_update":"2026-03-22T06:13:22.479047357Z"} +2026/03/22 06:13:27 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":442.92045241036226,"throughput_eps":0,"last_update":"2026-03-22T06:13:22.47909062Z"} +2026/03/22 06:13:27 ───────────────────────────────────────────────── +2026/03/22 06:13:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:13:32 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":367.07709692828985,"throughput_eps":0,"last_update":"2026-03-22T06:13:27.543103471Z"} +2026/03/22 06:13:32 [log_collector] {"stage_name":"log_collector","events_processed":1236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":247.2,"last_update":"2026-03-22T06:13:32.3687762Z"} +2026/03/22 06:13:32 [metric_collector] {"stage_name":"metric_collector","events_processed":719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":143.8,"last_update":"2026-03-22T06:13:27.368908771Z"} +2026/03/22 06:13:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:13:27.378091031Z"} +2026/03/22 06:13:32 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":9.723290938388626,"throughput_eps":0,"last_update":"2026-03-22T06:13:27.479334411Z"} +2026/03/22 06:13:32 ───────────────────────────────────────────────── +Saved state: 11 clusters, 1237 messages, reason: none +2026/03/22 06:13:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:13:37 [log_collector] {"stage_name":"log_collector","events_processed":1236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":247.2,"last_update":"2026-03-22T06:13:32.3687762Z"} +2026/03/22 06:13:37 [metric_collector] {"stage_name":"metric_collector","events_processed":724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":144.8,"last_update":"2026-03-22T06:13:32.369163442Z"} +2026/03/22 06:13:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:13:32.377719743Z"} +2026/03/22 06:13:37 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":10.192103750710903,"throughput_eps":0,"last_update":"2026-03-22T06:13:32.478966228Z"} +2026/03/22 06:13:37 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":367.07709692828985,"throughput_eps":0,"last_update":"2026-03-22T06:13:32.478920219Z"} +2026/03/22 06:13:37 ───────────────────────────────────────────────── +2026/03/22 06:13:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:13:42 [log_collector] {"stage_name":"log_collector","events_processed":1241,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":248.2,"last_update":"2026-03-22T06:13:42.369473452Z"} +2026/03/22 06:13:42 [metric_collector] {"stage_name":"metric_collector","events_processed":734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":146.8,"last_update":"2026-03-22T06:13:42.369713832Z"} +2026/03/22 06:13:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:13:37.376272898Z"} +2026/03/22 06:13:42 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":10.192103750710903,"throughput_eps":0,"last_update":"2026-03-22T06:13:37.4794616Z"} +2026/03/22 06:13:42 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":367.07709692828985,"throughput_eps":0,"last_update":"2026-03-22T06:13:37.479473273Z"} +2026/03/22 06:13:42 ───────────────────────────────────────────────── +2026/03/22 06:13:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:13:47 [metric_collector] {"stage_name":"metric_collector","events_processed":734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":146.8,"last_update":"2026-03-22T06:13:42.369713832Z"} +2026/03/22 06:13:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:13:42.378323826Z"} +2026/03/22 06:13:47 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":10.192103750710903,"throughput_eps":0,"last_update":"2026-03-22T06:13:42.479445892Z"} +2026/03/22 06:13:47 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":367.07709692828985,"throughput_eps":0,"last_update":"2026-03-22T06:13:42.479966129Z"} +2026/03/22 06:13:47 [log_collector] {"stage_name":"log_collector","events_processed":1241,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":248.2,"last_update":"2026-03-22T06:13:42.369473452Z"} +2026/03/22 06:13:47 ───────────────────────────────────────────────── +2026/03/22 06:13:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:13:52 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":10.192103750710903,"throughput_eps":0,"last_update":"2026-03-22T06:13:47.479300006Z"} +2026/03/22 06:13:52 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":367.07709692828985,"throughput_eps":0,"last_update":"2026-03-22T06:13:47.479266882Z"} +2026/03/22 06:13:52 [log_collector] {"stage_name":"log_collector","events_processed":1241,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":248.2,"last_update":"2026-03-22T06:13:47.367963885Z"} +2026/03/22 06:13:52 [metric_collector] {"stage_name":"metric_collector","events_processed":739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":147.8,"last_update":"2026-03-22T06:13:47.368273768Z"} +2026/03/22 06:13:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:13:47.37605219Z"} +2026/03/22 06:13:52 ───────────────────────────────────────────────── +2026/03/22 06:13:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:13:57 [log_collector] {"stage_name":"log_collector","events_processed":1241,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":248.2,"last_update":"2026-03-22T06:13:52.368848559Z"} +2026/03/22 06:13:57 [metric_collector] {"stage_name":"metric_collector","events_processed":744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":148.8,"last_update":"2026-03-22T06:13:52.369100261Z"} +2026/03/22 06:13:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:13:52.380718155Z"} +2026/03/22 06:13:57 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":10.192103750710903,"throughput_eps":0,"last_update":"2026-03-22T06:13:52.479906528Z"} +2026/03/22 06:13:57 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":367.07709692828985,"throughput_eps":0,"last_update":"2026-03-22T06:13:52.478827172Z"} +2026/03/22 06:13:57 ───────────────────────────────────────────────── +2026/03/22 06:14:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:14:02 [log_collector] {"stage_name":"log_collector","events_processed":1241,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":248.2,"last_update":"2026-03-22T06:14:02.367998636Z"} +2026/03/22 06:14:02 [metric_collector] {"stage_name":"metric_collector","events_processed":754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":150.8,"last_update":"2026-03-22T06:14:02.368261709Z"} +2026/03/22 06:14:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:13:57.377647637Z"} +2026/03/22 06:14:02 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":10.192103750710903,"throughput_eps":0,"last_update":"2026-03-22T06:13:57.479969921Z"} +2026/03/22 06:14:02 [transform_engine] {"stage_name":"transform_engine","events_processed":25,"events_dropped":0,"avg_latency_ms":611.6573491426319,"throughput_eps":0,"last_update":"2026-03-22T06:13:59.068869724Z"} +2026/03/22 06:14:02 ───────────────────────────────────────────────── +2026/03/22 06:14:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:14:07 [metric_collector] {"stage_name":"metric_collector","events_processed":759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":151.8,"last_update":"2026-03-22T06:14:07.368720559Z"} +2026/03/22 06:14:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:14:02.376125625Z"} +2026/03/22 06:14:07 [detection_layer] {"stage_name":"detection_layer","events_processed":25,"events_dropped":0,"avg_latency_ms":10.358127400568723,"throughput_eps":0,"last_update":"2026-03-22T06:14:02.479329548Z"} +2026/03/22 06:14:07 [transform_engine] {"stage_name":"transform_engine","events_processed":25,"events_dropped":0,"avg_latency_ms":611.6573491426319,"throughput_eps":0,"last_update":"2026-03-22T06:14:02.479367379Z"} +2026/03/22 06:14:07 [log_collector] {"stage_name":"log_collector","events_processed":1241,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":248.2,"last_update":"2026-03-22T06:14:07.368475249Z"} +2026/03/22 06:14:07 ───────────────────────────────────────────────── +2026/03/22 06:14:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:14:12 [log_collector] {"stage_name":"log_collector","events_processed":1241,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":248.2,"last_update":"2026-03-22T06:14:12.368207777Z"} +2026/03/22 06:14:12 [metric_collector] {"stage_name":"metric_collector","events_processed":759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":151.8,"last_update":"2026-03-22T06:14:07.368720559Z"} +2026/03/22 06:14:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:14:07.379622091Z"} +2026/03/22 06:14:12 [detection_layer] {"stage_name":"detection_layer","events_processed":25,"events_dropped":0,"avg_latency_ms":10.358127400568723,"throughput_eps":0,"last_update":"2026-03-22T06:14:07.479811561Z"} +2026/03/22 06:14:12 [transform_engine] {"stage_name":"transform_engine","events_processed":25,"events_dropped":0,"avg_latency_ms":611.6573491426319,"throughput_eps":0,"last_update":"2026-03-22T06:14:07.479828694Z"} +2026/03/22 06:14:12 ───────────────────────────────────────────────── +2026/03/22 06:14:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:14:17 [metric_collector] {"stage_name":"metric_collector","events_processed":764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":152.8,"last_update":"2026-03-22T06:14:12.368640035Z"} +2026/03/22 06:14:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:14:12.376423967Z"} +2026/03/22 06:14:17 [detection_layer] {"stage_name":"detection_layer","events_processed":25,"events_dropped":0,"avg_latency_ms":10.358127400568723,"throughput_eps":0,"last_update":"2026-03-22T06:14:12.4796542Z"} +2026/03/22 06:14:17 [transform_engine] {"stage_name":"transform_engine","events_processed":25,"events_dropped":0,"avg_latency_ms":611.6573491426319,"throughput_eps":0,"last_update":"2026-03-22T06:14:12.479625324Z"} +2026/03/22 06:14:17 [log_collector] {"stage_name":"log_collector","events_processed":1241,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":248.2,"last_update":"2026-03-22T06:14:12.368207777Z"} +2026/03/22 06:14:17 ───────────────────────────────────────────────── +2026/03/22 06:14:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:14:22 [transform_engine] {"stage_name":"transform_engine","events_processed":25,"events_dropped":0,"avg_latency_ms":611.6573491426319,"throughput_eps":0,"last_update":"2026-03-22T06:14:17.479402988Z"} +2026/03/22 06:14:22 [log_collector] {"stage_name":"log_collector","events_processed":1244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":248.8,"last_update":"2026-03-22T06:14:17.368695429Z"} +2026/03/22 06:14:22 [metric_collector] {"stage_name":"metric_collector","events_processed":769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":153.8,"last_update":"2026-03-22T06:14:17.369184766Z"} +2026/03/22 06:14:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:14:17.3762746Z"} +2026/03/22 06:14:22 [detection_layer] {"stage_name":"detection_layer","events_processed":25,"events_dropped":0,"avg_latency_ms":10.358127400568723,"throughput_eps":0,"last_update":"2026-03-22T06:14:17.47937809Z"} +2026/03/22 06:14:22 ───────────────────────────────────────────────── +2026/03/22 06:14:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:14:27 [transform_engine] {"stage_name":"transform_engine","events_processed":25,"events_dropped":0,"avg_latency_ms":611.6573491426319,"throughput_eps":0,"last_update":"2026-03-22T06:14:22.478927806Z"} +2026/03/22 06:14:27 [log_collector] {"stage_name":"log_collector","events_processed":1252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":250.4,"last_update":"2026-03-22T06:14:22.368456972Z"} +2026/03/22 06:14:27 [metric_collector] {"stage_name":"metric_collector","events_processed":774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":154.8,"last_update":"2026-03-22T06:14:22.368841267Z"} +2026/03/22 06:14:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:14:22.37774335Z"} +2026/03/22 06:14:27 [detection_layer] {"stage_name":"detection_layer","events_processed":25,"events_dropped":0,"avg_latency_ms":10.358127400568723,"throughput_eps":0,"last_update":"2026-03-22T06:14:22.478959427Z"} +2026/03/22 06:14:27 ───────────────────────────────────────────────── +2026/03/22 06:14:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:14:32 [log_collector] {"stage_name":"log_collector","events_processed":1431,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":286.2,"last_update":"2026-03-22T06:14:27.368370754Z"} +2026/03/22 06:14:32 [metric_collector] {"stage_name":"metric_collector","events_processed":779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":155.8,"last_update":"2026-03-22T06:14:27.368707319Z"} +2026/03/22 06:14:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:14:27.380140078Z"} +2026/03/22 06:14:32 [detection_layer] {"stage_name":"detection_layer","events_processed":25,"events_dropped":0,"avg_latency_ms":10.358127400568723,"throughput_eps":0,"last_update":"2026-03-22T06:14:27.479895617Z"} +2026/03/22 06:14:32 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":516.9339531141056,"throughput_eps":0,"last_update":"2026-03-22T06:14:27.616865377Z"} +2026/03/22 06:14:32 ───────────────────────────────────────────────── +2026/03/22 06:14:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:14:37 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":10.13639772045498,"throughput_eps":0,"last_update":"2026-03-22T06:14:32.479855739Z"} +2026/03/22 06:14:37 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":516.9339531141056,"throughput_eps":0,"last_update":"2026-03-22T06:14:32.479834799Z"} +2026/03/22 06:14:37 [log_collector] {"stage_name":"log_collector","events_processed":1601,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":320.2,"last_update":"2026-03-22T06:14:32.368294327Z"} +2026/03/22 06:14:37 [metric_collector] {"stage_name":"metric_collector","events_processed":784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":156.8,"last_update":"2026-03-22T06:14:32.368801166Z"} +2026/03/22 06:14:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:14:32.38739221Z"} +2026/03/22 06:14:37 ───────────────────────────────────────────────── +2026/03/22 06:14:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:14:42 [metric_collector] {"stage_name":"metric_collector","events_processed":789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":157.8,"last_update":"2026-03-22T06:14:37.369221628Z"} +2026/03/22 06:14:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:14:37.37537504Z"} +2026/03/22 06:14:42 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":10.13639772045498,"throughput_eps":0,"last_update":"2026-03-22T06:14:37.479615547Z"} +2026/03/22 06:14:42 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":516.9339531141056,"throughput_eps":0,"last_update":"2026-03-22T06:14:37.479572915Z"} +2026/03/22 06:14:42 [log_collector] {"stage_name":"log_collector","events_processed":1607,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":321.4,"last_update":"2026-03-22T06:14:37.368699539Z"} +2026/03/22 06:14:42 ───────────────────────────────────────────────── +Saved state: 11 clusters, 1608 messages, reason: none +2026/03/22 06:14:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:14:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":320,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:14:42.377455972Z"} +2026/03/22 06:14:47 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":10.13639772045498,"throughput_eps":0,"last_update":"2026-03-22T06:14:42.479720345Z"} +2026/03/22 06:14:47 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":516.9339531141056,"throughput_eps":0,"last_update":"2026-03-22T06:14:42.479697241Z"} +2026/03/22 06:14:47 [log_collector] {"stage_name":"log_collector","events_processed":1607,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":321.4,"last_update":"2026-03-22T06:14:42.368462583Z"} +2026/03/22 06:14:47 [metric_collector] {"stage_name":"metric_collector","events_processed":794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":158.8,"last_update":"2026-03-22T06:14:42.369020582Z"} +2026/03/22 06:14:47 ───────────────────────────────────────────────── +2026/03/22 06:14:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:14:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:14:47.374949259Z"} +2026/03/22 06:14:52 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":10.13639772045498,"throughput_eps":0,"last_update":"2026-03-22T06:14:47.479192831Z"} +2026/03/22 06:14:52 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":516.9339531141056,"throughput_eps":0,"last_update":"2026-03-22T06:14:47.479215836Z"} +2026/03/22 06:14:52 [log_collector] {"stage_name":"log_collector","events_processed":1610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":322,"last_update":"2026-03-22T06:14:47.368312573Z"} +2026/03/22 06:14:52 [metric_collector] {"stage_name":"metric_collector","events_processed":799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":159.8,"last_update":"2026-03-22T06:14:47.36859319Z"} +2026/03/22 06:14:52 ───────────────────────────────────────────────── +2026/03/22 06:14:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:14:57 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":10.13639772045498,"throughput_eps":0,"last_update":"2026-03-22T06:14:52.479998811Z"} +2026/03/22 06:14:57 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":516.9339531141056,"throughput_eps":0,"last_update":"2026-03-22T06:14:52.478870551Z"} +2026/03/22 06:14:57 [log_collector] {"stage_name":"log_collector","events_processed":1610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":322,"last_update":"2026-03-22T06:14:52.368005691Z"} +2026/03/22 06:14:57 [metric_collector] {"stage_name":"metric_collector","events_processed":804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":160.8,"last_update":"2026-03-22T06:14:52.368611501Z"} +2026/03/22 06:14:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:14:52.375626823Z"} +2026/03/22 06:14:57 ───────────────────────────────────────────────── +2026/03/22 06:15:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:15:02 [log_collector] {"stage_name":"log_collector","events_processed":1620,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":324,"last_update":"2026-03-22T06:14:57.368955877Z"} +2026/03/22 06:15:02 [metric_collector] {"stage_name":"metric_collector","events_processed":809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":161.8,"last_update":"2026-03-22T06:14:57.369195145Z"} +2026/03/22 06:15:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:14:57.377125519Z"} +2026/03/22 06:15:02 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":10.13639772045498,"throughput_eps":0,"last_update":"2026-03-22T06:14:57.479374452Z"} +2026/03/22 06:15:02 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":485.5386396912846,"throughput_eps":0,"last_update":"2026-03-22T06:14:57.839366586Z"} +2026/03/22 06:15:02 ───────────────────────────────────────────────── +2026/03/22 06:15:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:15:07 [log_collector] {"stage_name":"log_collector","events_processed":1621,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":324.2,"last_update":"2026-03-22T06:15:02.367989251Z"} +2026/03/22 06:15:07 [metric_collector] {"stage_name":"metric_collector","events_processed":814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":162.8,"last_update":"2026-03-22T06:15:02.368473117Z"} +2026/03/22 06:15:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:15:02.375883014Z"} +2026/03/22 06:15:07 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":9.960210176363983,"throughput_eps":0,"last_update":"2026-03-22T06:15:02.479088149Z"} +2026/03/22 06:15:07 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":485.5386396912846,"throughput_eps":0,"last_update":"2026-03-22T06:15:02.479098087Z"} +2026/03/22 06:15:07 ───────────────────────────────────────────────── +2026/03/22 06:15:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:15:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":330,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:15:07.375798217Z"} +2026/03/22 06:15:12 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":9.960210176363983,"throughput_eps":0,"last_update":"2026-03-22T06:15:07.479333673Z"} +2026/03/22 06:15:12 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":485.5386396912846,"throughput_eps":0,"last_update":"2026-03-22T06:15:07.479368981Z"} +2026/03/22 06:15:12 [log_collector] {"stage_name":"log_collector","events_processed":1635,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":327,"last_update":"2026-03-22T06:15:07.368185231Z"} +2026/03/22 06:15:12 [metric_collector] {"stage_name":"metric_collector","events_processed":819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":163.8,"last_update":"2026-03-22T06:15:07.368305111Z"} +2026/03/22 06:15:12 ───────────────────────────────────────────────── +2026/03/22 06:15:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:15:17 [log_collector] {"stage_name":"log_collector","events_processed":1637,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":327.4,"last_update":"2026-03-22T06:15:12.368414676Z"} +2026/03/22 06:15:17 [metric_collector] {"stage_name":"metric_collector","events_processed":824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":164.8,"last_update":"2026-03-22T06:15:12.368874637Z"} +2026/03/22 06:15:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:15:12.378019706Z"} +2026/03/22 06:15:17 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":9.960210176363983,"throughput_eps":0,"last_update":"2026-03-22T06:15:12.479271841Z"} +2026/03/22 06:15:17 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":485.5386396912846,"throughput_eps":0,"last_update":"2026-03-22T06:15:12.479345171Z"} +2026/03/22 06:15:17 ───────────────────────────────────────────────── +2026/03/22 06:15:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:15:22 [log_collector] {"stage_name":"log_collector","events_processed":1637,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":327.4,"last_update":"2026-03-22T06:15:17.368469065Z"} +2026/03/22 06:15:22 [metric_collector] {"stage_name":"metric_collector","events_processed":829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":165.8,"last_update":"2026-03-22T06:15:17.36904139Z"} +2026/03/22 06:15:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:15:17.376310468Z"} +2026/03/22 06:15:22 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":9.960210176363983,"throughput_eps":0,"last_update":"2026-03-22T06:15:17.479625882Z"} +2026/03/22 06:15:22 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":485.5386396912846,"throughput_eps":0,"last_update":"2026-03-22T06:15:17.479652884Z"} +2026/03/22 06:15:22 ───────────────────────────────────────────────── +2026/03/22 06:15:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:15:27 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":485.5386396912846,"throughput_eps":0,"last_update":"2026-03-22T06:15:22.479324437Z"} +2026/03/22 06:15:27 [log_collector] {"stage_name":"log_collector","events_processed":1637,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":327.4,"last_update":"2026-03-22T06:15:22.36874757Z"} +2026/03/22 06:15:27 [metric_collector] {"stage_name":"metric_collector","events_processed":834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":166.8,"last_update":"2026-03-22T06:15:22.369389168Z"} +2026/03/22 06:15:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:15:22.37895878Z"} +2026/03/22 06:15:27 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":9.960210176363983,"throughput_eps":0,"last_update":"2026-03-22T06:15:22.47926847Z"} +2026/03/22 06:15:27 ───────────────────────────────────────────────── +2026/03/22 06:15:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:15:32 [log_collector] {"stage_name":"log_collector","events_processed":1637,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":327.4,"last_update":"2026-03-22T06:15:32.368422184Z"} +2026/03/22 06:15:32 [metric_collector] {"stage_name":"metric_collector","events_processed":839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":167.8,"last_update":"2026-03-22T06:15:27.368881891Z"} +2026/03/22 06:15:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:15:27.377437962Z"} +2026/03/22 06:15:32 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":9.960210176363983,"throughput_eps":0,"last_update":"2026-03-22T06:15:27.480430609Z"} +2026/03/22 06:15:32 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":410.81065715302765,"throughput_eps":0,"last_update":"2026-03-22T06:15:27.591539386Z"} +2026/03/22 06:15:32 ───────────────────────────────────────────────── +2026/03/22 06:15:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:15:37 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":410.81065715302765,"throughput_eps":0,"last_update":"2026-03-22T06:15:32.479791889Z"} +2026/03/22 06:15:37 [log_collector] {"stage_name":"log_collector","events_processed":1637,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":327.4,"last_update":"2026-03-22T06:15:37.36799658Z"} +2026/03/22 06:15:37 [metric_collector] {"stage_name":"metric_collector","events_processed":844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":168.8,"last_update":"2026-03-22T06:15:32.369045578Z"} +2026/03/22 06:15:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:15:32.377465598Z"} +2026/03/22 06:15:37 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":10.221468141091187,"throughput_eps":0,"last_update":"2026-03-22T06:15:32.479763715Z"} +2026/03/22 06:15:37 ───────────────────────────────────────────────── +2026/03/22 06:15:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:15:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":342,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:15:37.376358148Z"} +2026/03/22 06:15:42 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":10.221468141091187,"throughput_eps":0,"last_update":"2026-03-22T06:15:37.479610904Z"} +2026/03/22 06:15:42 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":410.81065715302765,"throughput_eps":0,"last_update":"2026-03-22T06:15:37.479696568Z"} +2026/03/22 06:15:42 [log_collector] {"stage_name":"log_collector","events_processed":1637,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":327.4,"last_update":"2026-03-22T06:15:37.36799658Z"} +2026/03/22 06:15:42 [metric_collector] {"stage_name":"metric_collector","events_processed":849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":169.8,"last_update":"2026-03-22T06:15:37.368207473Z"} +2026/03/22 06:15:42 ───────────────────────────────────────────────── +2026/03/22 06:15:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:15:47 [log_collector] {"stage_name":"log_collector","events_processed":1637,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":327.4,"last_update":"2026-03-22T06:15:42.369155382Z"} +2026/03/22 06:15:47 [metric_collector] {"stage_name":"metric_collector","events_processed":854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":170.8,"last_update":"2026-03-22T06:15:42.369758766Z"} +2026/03/22 06:15:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:15:42.379835349Z"} +2026/03/22 06:15:47 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":10.221468141091187,"throughput_eps":0,"last_update":"2026-03-22T06:15:42.479053069Z"} +2026/03/22 06:15:47 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":410.81065715302765,"throughput_eps":0,"last_update":"2026-03-22T06:15:42.478976673Z"} +2026/03/22 06:15:47 ───────────────────────────────────────────────── +2026/03/22 06:15:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:15:52 [log_collector] {"stage_name":"log_collector","events_processed":1637,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":327.4,"last_update":"2026-03-22T06:15:47.368167032Z"} +2026/03/22 06:15:52 [metric_collector] {"stage_name":"metric_collector","events_processed":859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":171.8,"last_update":"2026-03-22T06:15:47.368723718Z"} +2026/03/22 06:15:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:15:47.377303234Z"} +2026/03/22 06:15:52 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":10.221468141091187,"throughput_eps":0,"last_update":"2026-03-22T06:15:47.479607253Z"} +2026/03/22 06:15:52 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":410.81065715302765,"throughput_eps":0,"last_update":"2026-03-22T06:15:47.479554211Z"} +2026/03/22 06:15:52 ───────────────────────────────────────────────── +2026/03/22 06:15:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:15:57 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":10.221468141091187,"throughput_eps":0,"last_update":"2026-03-22T06:15:52.479175727Z"} +2026/03/22 06:15:57 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":410.81065715302765,"throughput_eps":0,"last_update":"2026-03-22T06:15:52.47920339Z"} +2026/03/22 06:15:57 [log_collector] {"stage_name":"log_collector","events_processed":1637,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":327.4,"last_update":"2026-03-22T06:15:57.368000545Z"} +2026/03/22 06:15:57 [metric_collector] {"stage_name":"metric_collector","events_processed":864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":172.8,"last_update":"2026-03-22T06:15:52.369302135Z"} +2026/03/22 06:15:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:15:52.377986011Z"} +2026/03/22 06:15:57 ───────────────────────────────────────────────── +2026/03/22 06:16:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:16:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":350,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:15:57.380791624Z"} +2026/03/22 06:16:02 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":10.221468141091187,"throughput_eps":0,"last_update":"2026-03-22T06:15:57.479066679Z"} +2026/03/22 06:16:02 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":342.16651492242215,"throughput_eps":0,"last_update":"2026-03-22T06:15:57.54654433Z"} +2026/03/22 06:16:02 [log_collector] {"stage_name":"log_collector","events_processed":1637,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":327.4,"last_update":"2026-03-22T06:15:57.368000545Z"} +2026/03/22 06:16:02 [metric_collector] {"stage_name":"metric_collector","events_processed":869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":173.8,"last_update":"2026-03-22T06:15:57.368481355Z"} +2026/03/22 06:16:02 ───────────────────────────────────────────────── +2026/03/22 06:16:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:16:07 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":10.97970811287295,"throughput_eps":0,"last_update":"2026-03-22T06:16:02.479020843Z"} +2026/03/22 06:16:07 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":342.16651492242215,"throughput_eps":0,"last_update":"2026-03-22T06:16:02.478896165Z"} +2026/03/22 06:16:07 [log_collector] {"stage_name":"log_collector","events_processed":1637,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":327.4,"last_update":"2026-03-22T06:16:02.36891642Z"} +2026/03/22 06:16:07 [metric_collector] {"stage_name":"metric_collector","events_processed":874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":174.8,"last_update":"2026-03-22T06:16:02.369193521Z"} +2026/03/22 06:16:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:16:02.37776978Z"} +2026/03/22 06:16:07 ───────────────────────────────────────────────── +Saved state: 11 clusters, 1638 messages, reason: none +2026/03/22 06:16:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:16:12 [log_collector] {"stage_name":"log_collector","events_processed":1650,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":330,"last_update":"2026-03-22T06:16:12.367986672Z"} +2026/03/22 06:16:12 [metric_collector] {"stage_name":"metric_collector","events_processed":879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":175.8,"last_update":"2026-03-22T06:16:07.368835687Z"} +2026/03/22 06:16:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:16:07.378330416Z"} +2026/03/22 06:16:12 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":10.97970811287295,"throughput_eps":0,"last_update":"2026-03-22T06:16:07.479715705Z"} +2026/03/22 06:16:12 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":342.16651492242215,"throughput_eps":0,"last_update":"2026-03-22T06:16:07.479675308Z"} +2026/03/22 06:16:12 ───────────────────────────────────────────────── +2026/03/22 06:16:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:16:17 [metric_collector] {"stage_name":"metric_collector","events_processed":884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":176.8,"last_update":"2026-03-22T06:16:12.368382679Z"} +2026/03/22 06:16:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:16:12.37583648Z"} +2026/03/22 06:16:17 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":10.97970811287295,"throughput_eps":0,"last_update":"2026-03-22T06:16:12.479181673Z"} +2026/03/22 06:16:17 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":342.16651492242215,"throughput_eps":0,"last_update":"2026-03-22T06:16:12.479297825Z"} +2026/03/22 06:16:17 [log_collector] {"stage_name":"log_collector","events_processed":1650,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":330,"last_update":"2026-03-22T06:16:12.367986672Z"} +2026/03/22 06:16:17 ───────────────────────────────────────────────── +2026/03/22 06:16:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:16:22 [metric_collector] {"stage_name":"metric_collector","events_processed":889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":177.8,"last_update":"2026-03-22T06:16:17.369287452Z"} +2026/03/22 06:16:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:16:17.378223941Z"} +2026/03/22 06:16:22 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":10.97970811287295,"throughput_eps":0,"last_update":"2026-03-22T06:16:17.479449525Z"} +2026/03/22 06:16:22 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":342.16651492242215,"throughput_eps":0,"last_update":"2026-03-22T06:16:17.479460838Z"} +2026/03/22 06:16:22 [log_collector] {"stage_name":"log_collector","events_processed":1651,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":330.2,"last_update":"2026-03-22T06:16:17.368968111Z"} +2026/03/22 06:16:22 ───────────────────────────────────────────────── +2026/03/22 06:16:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:16:27 [log_collector] {"stage_name":"log_collector","events_processed":1651,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":330.2,"last_update":"2026-03-22T06:16:27.368006456Z"} +2026/03/22 06:16:27 [metric_collector] {"stage_name":"metric_collector","events_processed":894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":178.8,"last_update":"2026-03-22T06:16:22.369613395Z"} +2026/03/22 06:16:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":360,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:16:22.378506942Z"} +2026/03/22 06:16:27 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":10.97970811287295,"throughput_eps":0,"last_update":"2026-03-22T06:16:22.479896861Z"} +2026/03/22 06:16:27 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":342.16651492242215,"throughput_eps":0,"last_update":"2026-03-22T06:16:22.479913173Z"} +2026/03/22 06:16:27 ───────────────────────────────────────────────── +2026/03/22 06:16:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:16:32 [log_collector] {"stage_name":"log_collector","events_processed":1651,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":330.2,"last_update":"2026-03-22T06:16:32.368267013Z"} +2026/03/22 06:16:32 [metric_collector] {"stage_name":"metric_collector","events_processed":899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":179.8,"last_update":"2026-03-22T06:16:27.368388979Z"} +2026/03/22 06:16:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:16:27.377527365Z"} +2026/03/22 06:16:32 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":10.97970811287295,"throughput_eps":0,"last_update":"2026-03-22T06:16:27.479753485Z"} +2026/03/22 06:16:32 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":295.2130167379377,"throughput_eps":0,"last_update":"2026-03-22T06:16:27.587168188Z"} +2026/03/22 06:16:32 ───────────────────────────────────────────────── +2026/03/22 06:16:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:16:37 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":11.11242489029836,"throughput_eps":0,"last_update":"2026-03-22T06:16:32.479645476Z"} +2026/03/22 06:16:37 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":295.2130167379377,"throughput_eps":0,"last_update":"2026-03-22T06:16:32.479656837Z"} +2026/03/22 06:16:37 [log_collector] {"stage_name":"log_collector","events_processed":1651,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":330.2,"last_update":"2026-03-22T06:16:32.368267013Z"} +2026/03/22 06:16:37 [metric_collector] {"stage_name":"metric_collector","events_processed":904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":180.8,"last_update":"2026-03-22T06:16:32.369094668Z"} +2026/03/22 06:16:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:16:32.378376548Z"} +2026/03/22 06:16:37 ───────────────────────────────────────────────── +2026/03/22 06:16:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:16:42 [log_collector] {"stage_name":"log_collector","events_processed":1651,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":330.2,"last_update":"2026-03-22T06:16:37.368086887Z"} +2026/03/22 06:16:42 [metric_collector] {"stage_name":"metric_collector","events_processed":909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":181.8,"last_update":"2026-03-22T06:16:37.368408654Z"} +2026/03/22 06:16:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:16:37.377052683Z"} +2026/03/22 06:16:42 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":11.11242489029836,"throughput_eps":0,"last_update":"2026-03-22T06:16:37.479257872Z"} +2026/03/22 06:16:42 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":295.2130167379377,"throughput_eps":0,"last_update":"2026-03-22T06:16:37.479270337Z"} +2026/03/22 06:16:42 ───────────────────────────────────────────────── +2026/03/22 06:16:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:16:47 [log_collector] {"stage_name":"log_collector","events_processed":1651,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":330.2,"last_update":"2026-03-22T06:16:42.367965544Z"} +2026/03/22 06:16:47 [metric_collector] {"stage_name":"metric_collector","events_processed":914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":182.8,"last_update":"2026-03-22T06:16:42.368571545Z"} +2026/03/22 06:16:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:16:42.377095765Z"} +2026/03/22 06:16:47 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":11.11242489029836,"throughput_eps":0,"last_update":"2026-03-22T06:16:42.479310443Z"} +2026/03/22 06:16:47 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":295.2130167379377,"throughput_eps":0,"last_update":"2026-03-22T06:16:42.479325261Z"} +2026/03/22 06:16:47 ───────────────────────────────────────────────── +2026/03/22 06:16:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:16:52 [log_collector] {"stage_name":"log_collector","events_processed":1651,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":330.2,"last_update":"2026-03-22T06:16:47.369073424Z"} +2026/03/22 06:16:52 [metric_collector] {"stage_name":"metric_collector","events_processed":919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":183.8,"last_update":"2026-03-22T06:16:47.369391332Z"} +2026/03/22 06:16:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:16:47.378724973Z"} +2026/03/22 06:16:52 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":11.11242489029836,"throughput_eps":0,"last_update":"2026-03-22T06:16:47.478957145Z"} +2026/03/22 06:16:52 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":295.2130167379377,"throughput_eps":0,"last_update":"2026-03-22T06:16:47.47892391Z"} +2026/03/22 06:16:52 ───────────────────────────────────────────────── +2026/03/22 06:16:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:16:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:16:52.377798145Z"} +2026/03/22 06:16:57 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":11.11242489029836,"throughput_eps":0,"last_update":"2026-03-22T06:16:52.479094824Z"} +2026/03/22 06:16:57 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":295.2130167379377,"throughput_eps":0,"last_update":"2026-03-22T06:16:52.478918407Z"} +2026/03/22 06:16:57 [log_collector] {"stage_name":"log_collector","events_processed":1651,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":330.2,"last_update":"2026-03-22T06:16:52.368008131Z"} +2026/03/22 06:16:57 [metric_collector] {"stage_name":"metric_collector","events_processed":924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":184.8,"last_update":"2026-03-22T06:16:52.368260153Z"} +2026/03/22 06:16:57 ───────────────────────────────────────────────── +2026/03/22 06:17:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:17:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:16:57.377284089Z"} +2026/03/22 06:17:02 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":11.11242489029836,"throughput_eps":0,"last_update":"2026-03-22T06:16:57.47952199Z"} +2026/03/22 06:17:02 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":250.93009199035018,"throughput_eps":0,"last_update":"2026-03-22T06:16:57.553334059Z"} +2026/03/22 06:17:02 [log_collector] {"stage_name":"log_collector","events_processed":1651,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":330.2,"last_update":"2026-03-22T06:16:57.368497676Z"} +2026/03/22 06:17:02 [metric_collector] {"stage_name":"metric_collector","events_processed":929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":185.8,"last_update":"2026-03-22T06:16:57.369096673Z"} +2026/03/22 06:17:02 ───────────────────────────────────────────────── +2026/03/22 06:17:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:17:07 [log_collector] {"stage_name":"log_collector","events_processed":1651,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":330.2,"last_update":"2026-03-22T06:17:02.367970203Z"} +2026/03/22 06:17:07 [metric_collector] {"stage_name":"metric_collector","events_processed":934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":186.8,"last_update":"2026-03-22T06:17:02.368298261Z"} +2026/03/22 06:17:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:17:02.376526935Z"} +2026/03/22 06:17:07 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":11.392719712238689,"throughput_eps":0,"last_update":"2026-03-22T06:17:02.479726358Z"} +2026/03/22 06:17:07 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":250.93009199035018,"throughput_eps":0,"last_update":"2026-03-22T06:17:02.479740145Z"} +2026/03/22 06:17:07 ───────────────────────────────────────────────── +2026/03/22 06:17:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:17:12 [log_collector] {"stage_name":"log_collector","events_processed":1651,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":330.2,"last_update":"2026-03-22T06:17:12.368487496Z"} +2026/03/22 06:17:12 [metric_collector] {"stage_name":"metric_collector","events_processed":939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":187.8,"last_update":"2026-03-22T06:17:07.369149267Z"} +2026/03/22 06:17:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:17:07.377692163Z"} +2026/03/22 06:17:12 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":11.392719712238689,"throughput_eps":0,"last_update":"2026-03-22T06:17:07.478957534Z"} +2026/03/22 06:17:12 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":250.93009199035018,"throughput_eps":0,"last_update":"2026-03-22T06:17:07.478869885Z"} +2026/03/22 06:17:12 ───────────────────────────────────────────────── +2026/03/22 06:17:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:17:17 [log_collector] {"stage_name":"log_collector","events_processed":1651,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":330.2,"last_update":"2026-03-22T06:17:17.368426374Z"} +2026/03/22 06:17:17 [metric_collector] {"stage_name":"metric_collector","events_processed":944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":188.8,"last_update":"2026-03-22T06:17:12.369039653Z"} +2026/03/22 06:17:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":380,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:17:12.377011866Z"} +2026/03/22 06:17:17 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":11.392719712238689,"throughput_eps":0,"last_update":"2026-03-22T06:17:12.479324331Z"} +2026/03/22 06:17:17 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":250.93009199035018,"throughput_eps":0,"last_update":"2026-03-22T06:17:12.479340533Z"} +2026/03/22 06:17:17 ───────────────────────────────────────────────── +Saved state: 11 clusters, 1652 messages, reason: none +2026/03/22 06:17:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:17:22 [metric_collector] {"stage_name":"metric_collector","events_processed":949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":189.8,"last_update":"2026-03-22T06:17:17.368879532Z"} +2026/03/22 06:17:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:17:17.378748717Z"} +2026/03/22 06:17:22 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":11.392719712238689,"throughput_eps":0,"last_update":"2026-03-22T06:17:17.478987772Z"} +2026/03/22 06:17:22 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":250.93009199035018,"throughput_eps":0,"last_update":"2026-03-22T06:17:17.478949319Z"} +2026/03/22 06:17:22 [log_collector] {"stage_name":"log_collector","events_processed":1651,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":330.2,"last_update":"2026-03-22T06:17:17.368426374Z"} +2026/03/22 06:17:22 ───────────────────────────────────────────────── +2026/03/22 06:17:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:17:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:17:22.376476342Z"} +2026/03/22 06:17:27 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":11.392719712238689,"throughput_eps":0,"last_update":"2026-03-22T06:17:22.479663892Z"} +2026/03/22 06:17:27 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":250.93009199035018,"throughput_eps":0,"last_update":"2026-03-22T06:17:22.479691605Z"} +2026/03/22 06:17:27 [log_collector] {"stage_name":"log_collector","events_processed":1656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":331.2,"last_update":"2026-03-22T06:17:22.368486234Z"} +2026/03/22 06:17:27 [metric_collector] {"stage_name":"metric_collector","events_processed":954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":190.8,"last_update":"2026-03-22T06:17:22.36875068Z"} +2026/03/22 06:17:27 ───────────────────────────────────────────────── +2026/03/22 06:17:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:17:32 [log_collector] {"stage_name":"log_collector","events_processed":1656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":331.2,"last_update":"2026-03-22T06:17:27.368382822Z"} +2026/03/22 06:17:32 [metric_collector] {"stage_name":"metric_collector","events_processed":959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":191.8,"last_update":"2026-03-22T06:17:27.368676775Z"} +2026/03/22 06:17:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:17:27.376030865Z"} +2026/03/22 06:17:32 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":11.392719712238689,"throughput_eps":0,"last_update":"2026-03-22T06:17:27.480581455Z"} +2026/03/22 06:17:32 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":450.8728559922802,"throughput_eps":0,"last_update":"2026-03-22T06:17:28.729889319Z"} +2026/03/22 06:17:32 ───────────────────────────────────────────────── +2026/03/22 06:17:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:17:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":388,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:17:32.377214206Z"} +2026/03/22 06:17:37 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":10.389290969790952,"throughput_eps":0,"last_update":"2026-03-22T06:17:32.479429143Z"} +2026/03/22 06:17:37 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":450.8728559922802,"throughput_eps":0,"last_update":"2026-03-22T06:17:32.479380771Z"} +2026/03/22 06:17:37 [log_collector] {"stage_name":"log_collector","events_processed":1656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":331.2,"last_update":"2026-03-22T06:17:32.367946362Z"} +2026/03/22 06:17:37 [metric_collector] {"stage_name":"metric_collector","events_processed":964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":192.8,"last_update":"2026-03-22T06:17:32.368429386Z"} +2026/03/22 06:17:37 ───────────────────────────────────────────────── +2026/03/22 06:17:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:17:42 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":450.8728559922802,"throughput_eps":0,"last_update":"2026-03-22T06:17:37.47933031Z"} +2026/03/22 06:17:42 [log_collector] {"stage_name":"log_collector","events_processed":1656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":331.2,"last_update":"2026-03-22T06:17:37.367971665Z"} +2026/03/22 06:17:42 [metric_collector] {"stage_name":"metric_collector","events_processed":969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":193.8,"last_update":"2026-03-22T06:17:37.369336829Z"} +2026/03/22 06:17:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":390,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:17:37.380257276Z"} +2026/03/22 06:17:42 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":10.389290969790952,"throughput_eps":0,"last_update":"2026-03-22T06:17:37.479305843Z"} +2026/03/22 06:17:42 ───────────────────────────────────────────────── +2026/03/22 06:17:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:17:47 [log_collector] {"stage_name":"log_collector","events_processed":1656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":331.2,"last_update":"2026-03-22T06:17:42.367972591Z"} +2026/03/22 06:17:47 [metric_collector] {"stage_name":"metric_collector","events_processed":974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":194.8,"last_update":"2026-03-22T06:17:42.368460114Z"} +2026/03/22 06:17:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:17:42.376294354Z"} +2026/03/22 06:17:47 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":10.389290969790952,"throughput_eps":0,"last_update":"2026-03-22T06:17:42.479488817Z"} +2026/03/22 06:17:47 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":450.8728559922802,"throughput_eps":0,"last_update":"2026-03-22T06:17:42.47950639Z"} +2026/03/22 06:17:47 ───────────────────────────────────────────────── +2026/03/22 06:17:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:17:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:17:47.384628744Z"} +2026/03/22 06:17:52 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":10.389290969790952,"throughput_eps":0,"last_update":"2026-03-22T06:17:47.479855673Z"} +2026/03/22 06:17:52 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":450.8728559922802,"throughput_eps":0,"last_update":"2026-03-22T06:17:47.47881501Z"} +2026/03/22 06:17:52 [log_collector] {"stage_name":"log_collector","events_processed":1656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":331.2,"last_update":"2026-03-22T06:17:47.368710027Z"} +2026/03/22 06:17:52 [metric_collector] {"stage_name":"metric_collector","events_processed":979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":195.8,"last_update":"2026-03-22T06:17:47.369121985Z"} +2026/03/22 06:17:52 ───────────────────────────────────────────────── +2026/03/22 06:17:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:17:57 [metric_collector] {"stage_name":"metric_collector","events_processed":984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":196.8,"last_update":"2026-03-22T06:17:52.36832873Z"} +2026/03/22 06:17:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:17:52.37546342Z"} +2026/03/22 06:17:57 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":10.389290969790952,"throughput_eps":0,"last_update":"2026-03-22T06:17:52.479686422Z"} +2026/03/22 06:17:57 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":450.8728559922802,"throughput_eps":0,"last_update":"2026-03-22T06:17:52.479653299Z"} +2026/03/22 06:17:57 [log_collector] {"stage_name":"log_collector","events_processed":1656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":331.2,"last_update":"2026-03-22T06:17:52.367950466Z"} +2026/03/22 06:17:57 ───────────────────────────────────────────────── +2026/03/22 06:18:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:18:02 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":388.2946681938242,"throughput_eps":0,"last_update":"2026-03-22T06:17:57.617386724Z"} +2026/03/22 06:18:02 [log_collector] {"stage_name":"log_collector","events_processed":1656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":331.2,"last_update":"2026-03-22T06:17:57.368160611Z"} +2026/03/22 06:18:02 [metric_collector] {"stage_name":"metric_collector","events_processed":989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":197.8,"last_update":"2026-03-22T06:17:57.37089174Z"} +2026/03/22 06:18:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:17:57.377286645Z"} +2026/03/22 06:18:02 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":10.389290969790952,"throughput_eps":0,"last_update":"2026-03-22T06:17:57.479434875Z"} +2026/03/22 06:18:02 ───────────────────────────────────────────────── +2026/03/22 06:18:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:18:07 [log_collector] {"stage_name":"log_collector","events_processed":1659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":331.8,"last_update":"2026-03-22T06:18:02.368673618Z"} +2026/03/22 06:18:07 [metric_collector] {"stage_name":"metric_collector","events_processed":994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":198.8,"last_update":"2026-03-22T06:18:02.368998329Z"} +2026/03/22 06:18:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":400,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:18:02.375803818Z"} +2026/03/22 06:18:07 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":10.165207975832761,"throughput_eps":0,"last_update":"2026-03-22T06:18:02.479760201Z"} +2026/03/22 06:18:07 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":388.2946681938242,"throughput_eps":0,"last_update":"2026-03-22T06:18:02.479771293Z"} +2026/03/22 06:18:07 ───────────────────────────────────────────────── +2026/03/22 06:18:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:18:12 [log_collector] {"stage_name":"log_collector","events_processed":1667,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":333.4,"last_update":"2026-03-22T06:18:07.368126172Z"} +2026/03/22 06:18:12 [metric_collector] {"stage_name":"metric_collector","events_processed":998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":199.6,"last_update":"2026-03-22T06:18:07.368007085Z"} +2026/03/22 06:18:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":402,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:18:07.377154207Z"} +2026/03/22 06:18:12 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":10.165207975832761,"throughput_eps":0,"last_update":"2026-03-22T06:18:07.479386679Z"} +2026/03/22 06:18:12 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":388.2946681938242,"throughput_eps":0,"last_update":"2026-03-22T06:18:07.479399374Z"} +2026/03/22 06:18:12 ───────────────────────────────────────────────── +2026/03/22 06:18:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:18:17 [log_collector] {"stage_name":"log_collector","events_processed":1739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":347.8,"last_update":"2026-03-22T06:18:12.368555778Z"} +2026/03/22 06:18:17 [metric_collector] {"stage_name":"metric_collector","events_processed":1004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":200.8,"last_update":"2026-03-22T06:18:12.368643586Z"} +2026/03/22 06:18:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:18:12.384409681Z"} +2026/03/22 06:18:17 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":10.165207975832761,"throughput_eps":0,"last_update":"2026-03-22T06:18:12.479985559Z"} +2026/03/22 06:18:17 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":388.2946681938242,"throughput_eps":0,"last_update":"2026-03-22T06:18:12.478903126Z"} +2026/03/22 06:18:17 ───────────────────────────────────────────────── +2026/03/22 06:18:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:18:22 [log_collector] {"stage_name":"log_collector","events_processed":2017,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":403.4,"last_update":"2026-03-22T06:18:17.368371948Z"} +2026/03/22 06:18:22 [metric_collector] {"stage_name":"metric_collector","events_processed":1009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":201.8,"last_update":"2026-03-22T06:18:17.368766845Z"} +2026/03/22 06:18:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:18:17.37521494Z"} +2026/03/22 06:18:22 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":10.165207975832761,"throughput_eps":0,"last_update":"2026-03-22T06:18:17.479417854Z"} +2026/03/22 06:18:22 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":388.2946681938242,"throughput_eps":0,"last_update":"2026-03-22T06:18:17.47943123Z"} +2026/03/22 06:18:22 ───────────────────────────────────────────────── +Saved state: 11 clusters, 2018 messages, reason: none +2026/03/22 06:18:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:18:27 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":388.2946681938242,"throughput_eps":0,"last_update":"2026-03-22T06:18:22.479207053Z"} +2026/03/22 06:18:27 [log_collector] {"stage_name":"log_collector","events_processed":2017,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":403.4,"last_update":"2026-03-22T06:18:22.368863091Z"} +2026/03/22 06:18:27 [metric_collector] {"stage_name":"metric_collector","events_processed":1014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":202.8,"last_update":"2026-03-22T06:18:22.369549916Z"} +2026/03/22 06:18:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":408,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:18:22.377947835Z"} +2026/03/22 06:18:27 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":10.165207975832761,"throughput_eps":0,"last_update":"2026-03-22T06:18:22.479234866Z"} +2026/03/22 06:18:27 ───────────────────────────────────────────────── +2026/03/22 06:18:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:18:32 [log_collector] {"stage_name":"log_collector","events_processed":2020,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":404,"last_update":"2026-03-22T06:18:27.368193851Z"} +2026/03/22 06:18:32 [metric_collector] {"stage_name":"metric_collector","events_processed":1019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":203.8,"last_update":"2026-03-22T06:18:27.36853821Z"} +2026/03/22 06:18:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:18:27.375778042Z"} +2026/03/22 06:18:32 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":10.165207975832761,"throughput_eps":0,"last_update":"2026-03-22T06:18:27.480520379Z"} +2026/03/22 06:18:32 [transform_engine] {"stage_name":"transform_engine","events_processed":34,"events_dropped":0,"avg_latency_ms":783.3261111550594,"throughput_eps":0,"last_update":"2026-03-22T06:18:29.84237245Z"} +2026/03/22 06:18:32 ───────────────────────────────────────────────── +2026/03/22 06:18:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:18:37 [transform_engine] {"stage_name":"transform_engine","events_processed":34,"events_dropped":0,"avg_latency_ms":783.3261111550594,"throughput_eps":0,"last_update":"2026-03-22T06:18:32.479407239Z"} +2026/03/22 06:18:37 [log_collector] {"stage_name":"log_collector","events_processed":2020,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":404,"last_update":"2026-03-22T06:18:32.36799364Z"} +2026/03/22 06:18:37 [metric_collector] {"stage_name":"metric_collector","events_processed":1023,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":204.6,"last_update":"2026-03-22T06:18:32.367921642Z"} +2026/03/22 06:18:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:18:32.375187272Z"} +2026/03/22 06:18:37 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":9.88631878066621,"throughput_eps":0,"last_update":"2026-03-22T06:18:32.479383123Z"} +2026/03/22 06:18:37 ───────────────────────────────────────────────── +2026/03/22 06:18:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:18:42 [log_collector] {"stage_name":"log_collector","events_processed":2031,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":406.2,"last_update":"2026-03-22T06:18:37.368002679Z"} +2026/03/22 06:18:42 [metric_collector] {"stage_name":"metric_collector","events_processed":1028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":205.6,"last_update":"2026-03-22T06:18:37.367915922Z"} +2026/03/22 06:18:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:18:37.379028067Z"} +2026/03/22 06:18:42 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":9.88631878066621,"throughput_eps":0,"last_update":"2026-03-22T06:18:37.479379026Z"} +2026/03/22 06:18:42 [transform_engine] {"stage_name":"transform_engine","events_processed":34,"events_dropped":0,"avg_latency_ms":783.3261111550594,"throughput_eps":0,"last_update":"2026-03-22T06:18:37.479342637Z"} +2026/03/22 06:18:42 ───────────────────────────────────────────────── +2026/03/22 06:18:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:18:47 [log_collector] {"stage_name":"log_collector","events_processed":2047,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":409.4,"last_update":"2026-03-22T06:18:47.368507989Z"} +2026/03/22 06:18:47 [metric_collector] {"stage_name":"metric_collector","events_processed":1033,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":206.6,"last_update":"2026-03-22T06:18:42.368191211Z"} +2026/03/22 06:18:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:18:42.376830983Z"} +2026/03/22 06:18:47 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":9.88631878066621,"throughput_eps":0,"last_update":"2026-03-22T06:18:42.479057012Z"} +2026/03/22 06:18:47 [transform_engine] {"stage_name":"transform_engine","events_processed":34,"events_dropped":0,"avg_latency_ms":783.3261111550594,"throughput_eps":0,"last_update":"2026-03-22T06:18:42.47908689Z"} +2026/03/22 06:18:47 ───────────────────────────────────────────────── +2026/03/22 06:18:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:18:52 [metric_collector] {"stage_name":"metric_collector","events_processed":1039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":207.8,"last_update":"2026-03-22T06:18:47.368950286Z"} +2026/03/22 06:18:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:18:47.378173294Z"} +2026/03/22 06:18:52 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":9.88631878066621,"throughput_eps":0,"last_update":"2026-03-22T06:18:47.479466356Z"} +2026/03/22 06:18:52 [transform_engine] {"stage_name":"transform_engine","events_processed":34,"events_dropped":0,"avg_latency_ms":783.3261111550594,"throughput_eps":0,"last_update":"2026-03-22T06:18:47.479409247Z"} +2026/03/22 06:18:52 [log_collector] {"stage_name":"log_collector","events_processed":2047,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":409.4,"last_update":"2026-03-22T06:18:47.368507989Z"} +2026/03/22 06:18:52 ───────────────────────────────────────────────── +2026/03/22 06:18:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:18:57 [metric_collector] {"stage_name":"metric_collector","events_processed":1044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":208.8,"last_update":"2026-03-22T06:18:52.36907233Z"} +2026/03/22 06:18:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":420,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:18:52.378335935Z"} +2026/03/22 06:18:57 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":9.88631878066621,"throughput_eps":0,"last_update":"2026-03-22T06:18:52.479690827Z"} +2026/03/22 06:18:57 [transform_engine] {"stage_name":"transform_engine","events_processed":34,"events_dropped":0,"avg_latency_ms":783.3261111550594,"throughput_eps":0,"last_update":"2026-03-22T06:18:52.479653977Z"} +2026/03/22 06:18:57 [log_collector] {"stage_name":"log_collector","events_processed":2047,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":409.4,"last_update":"2026-03-22T06:18:57.368055614Z"} +2026/03/22 06:18:57 ───────────────────────────────────────────────── +2026/03/22 06:19:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:19:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:18:57.377416896Z"} +2026/03/22 06:19:02 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":9.88631878066621,"throughput_eps":0,"last_update":"2026-03-22T06:18:57.480509675Z"} +2026/03/22 06:19:02 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":648.2139839240475,"throughput_eps":0,"last_update":"2026-03-22T06:18:57.587464338Z"} +2026/03/22 06:19:02 [log_collector] {"stage_name":"log_collector","events_processed":2047,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":409.4,"last_update":"2026-03-22T06:19:02.368378011Z"} +2026/03/22 06:19:02 [metric_collector] {"stage_name":"metric_collector","events_processed":1049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":209.8,"last_update":"2026-03-22T06:18:57.368849854Z"} +2026/03/22 06:19:02 ───────────────────────────────────────────────── +2026/03/22 06:19:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:19:07 [log_collector] {"stage_name":"log_collector","events_processed":2047,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":409.4,"last_update":"2026-03-22T06:19:02.368378011Z"} +2026/03/22 06:19:07 [metric_collector] {"stage_name":"metric_collector","events_processed":1054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":210.8,"last_update":"2026-03-22T06:19:02.369113149Z"} +2026/03/22 06:19:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:19:02.377982319Z"} +2026/03/22 06:19:07 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":10.428921624532968,"throughput_eps":0,"last_update":"2026-03-22T06:19:02.479152336Z"} +2026/03/22 06:19:07 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":648.2139839240475,"throughput_eps":0,"last_update":"2026-03-22T06:19:02.479165221Z"} +2026/03/22 06:19:07 ───────────────────────────────────────────────── +2026/03/22 06:19:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:19:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:19:07.377744883Z"} +2026/03/22 06:19:12 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":10.428921624532968,"throughput_eps":0,"last_update":"2026-03-22T06:19:07.478956379Z"} +2026/03/22 06:19:12 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":648.2139839240475,"throughput_eps":0,"last_update":"2026-03-22T06:19:07.478944637Z"} +2026/03/22 06:19:12 [log_collector] {"stage_name":"log_collector","events_processed":2047,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":409.4,"last_update":"2026-03-22T06:19:12.36814325Z"} +2026/03/22 06:19:12 [metric_collector] {"stage_name":"metric_collector","events_processed":1059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":211.8,"last_update":"2026-03-22T06:19:07.369128757Z"} +2026/03/22 06:19:12 ───────────────────────────────────────────────── +2026/03/22 06:19:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:19:17 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":648.2139839240475,"throughput_eps":0,"last_update":"2026-03-22T06:19:12.479695104Z"} +2026/03/22 06:19:17 [log_collector] {"stage_name":"log_collector","events_processed":2047,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":409.4,"last_update":"2026-03-22T06:19:12.36814325Z"} +2026/03/22 06:19:17 [metric_collector] {"stage_name":"metric_collector","events_processed":1064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":212.8,"last_update":"2026-03-22T06:19:12.3683048Z"} +2026/03/22 06:19:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:19:12.379312815Z"} +2026/03/22 06:19:17 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":10.428921624532968,"throughput_eps":0,"last_update":"2026-03-22T06:19:12.479677631Z"} +2026/03/22 06:19:17 ───────────────────────────────────────────────── +2026/03/22 06:19:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:19:22 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":648.2139839240475,"throughput_eps":0,"last_update":"2026-03-22T06:19:17.479193223Z"} +2026/03/22 06:19:22 [log_collector] {"stage_name":"log_collector","events_processed":2047,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":409.4,"last_update":"2026-03-22T06:19:17.368380854Z"} +2026/03/22 06:19:22 [metric_collector] {"stage_name":"metric_collector","events_processed":1069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":213.8,"last_update":"2026-03-22T06:19:17.368879829Z"} +2026/03/22 06:19:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:19:17.378954098Z"} +2026/03/22 06:19:22 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":10.428921624532968,"throughput_eps":0,"last_update":"2026-03-22T06:19:17.479179767Z"} +2026/03/22 06:19:22 ───────────────────────────────────────────────── +2026/03/22 06:19:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:19:27 [log_collector] {"stage_name":"log_collector","events_processed":2047,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":409.4,"last_update":"2026-03-22T06:19:22.368432693Z"} +2026/03/22 06:19:27 [metric_collector] {"stage_name":"metric_collector","events_processed":1074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":214.8,"last_update":"2026-03-22T06:19:22.368810917Z"} +2026/03/22 06:19:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:19:22.377661272Z"} +2026/03/22 06:19:27 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":10.428921624532968,"throughput_eps":0,"last_update":"2026-03-22T06:19:22.479958938Z"} +2026/03/22 06:19:27 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":648.2139839240475,"throughput_eps":0,"last_update":"2026-03-22T06:19:22.478824426Z"} +2026/03/22 06:19:27 ───────────────────────────────────────────────── +2026/03/22 06:19:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:19:32 [metric_collector] {"stage_name":"metric_collector","events_processed":1079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":215.8,"last_update":"2026-03-22T06:19:27.369064972Z"} +2026/03/22 06:19:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:19:27.377757194Z"} +2026/03/22 06:19:32 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":10.428921624532968,"throughput_eps":0,"last_update":"2026-03-22T06:19:27.480062545Z"} +2026/03/22 06:19:32 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":532.0715587392381,"throughput_eps":0,"last_update":"2026-03-22T06:19:27.546401857Z"} +2026/03/22 06:19:32 [log_collector] {"stage_name":"log_collector","events_processed":2047,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":409.4,"last_update":"2026-03-22T06:19:27.368019149Z"} +2026/03/22 06:19:32 ───────────────────────────────────────────────── +2026/03/22 06:19:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:19:37 [metric_collector] {"stage_name":"metric_collector","events_processed":1084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":216.8,"last_update":"2026-03-22T06:19:32.369050193Z"} +2026/03/22 06:19:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:19:32.37850738Z"} +2026/03/22 06:19:37 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":11.223425899626376,"throughput_eps":0,"last_update":"2026-03-22T06:19:32.479879635Z"} +2026/03/22 06:19:37 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":532.0715587392381,"throughput_eps":0,"last_update":"2026-03-22T06:19:32.479780375Z"} +2026/03/22 06:19:37 [log_collector] {"stage_name":"log_collector","events_processed":2047,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":409.4,"last_update":"2026-03-22T06:19:32.368889696Z"} +2026/03/22 06:19:37 ───────────────────────────────────────────────── +2026/03/22 06:19:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:19:42 [log_collector] {"stage_name":"log_collector","events_processed":2047,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":409.4,"last_update":"2026-03-22T06:19:42.368287018Z"} +2026/03/22 06:19:42 [metric_collector] {"stage_name":"metric_collector","events_processed":1089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":217.8,"last_update":"2026-03-22T06:19:37.368998734Z"} +2026/03/22 06:19:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:19:37.376737991Z"} +2026/03/22 06:19:42 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":11.223425899626376,"throughput_eps":0,"last_update":"2026-03-22T06:19:37.480045301Z"} +2026/03/22 06:19:42 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":532.0715587392381,"throughput_eps":0,"last_update":"2026-03-22T06:19:37.478842318Z"} +2026/03/22 06:19:42 ───────────────────────────────────────────────── +2026/03/22 06:19:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:19:47 [metric_collector] {"stage_name":"metric_collector","events_processed":1094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":218.8,"last_update":"2026-03-22T06:19:42.368746819Z"} +2026/03/22 06:19:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:19:42.37790847Z"} +2026/03/22 06:19:47 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":11.223425899626376,"throughput_eps":0,"last_update":"2026-03-22T06:19:42.479145806Z"} +2026/03/22 06:19:47 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":532.0715587392381,"throughput_eps":0,"last_update":"2026-03-22T06:19:42.479094107Z"} +2026/03/22 06:19:47 [log_collector] {"stage_name":"log_collector","events_processed":2047,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":409.4,"last_update":"2026-03-22T06:19:42.368287018Z"} +2026/03/22 06:19:47 ───────────────────────────────────────────────── +2026/03/22 06:19:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:19:52 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":11.223425899626376,"throughput_eps":0,"last_update":"2026-03-22T06:19:47.479186801Z"} +2026/03/22 06:19:52 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":532.0715587392381,"throughput_eps":0,"last_update":"2026-03-22T06:19:47.479138409Z"} +2026/03/22 06:19:52 [log_collector] {"stage_name":"log_collector","events_processed":2047,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":409.4,"last_update":"2026-03-22T06:19:52.368836877Z"} +2026/03/22 06:19:52 [metric_collector] {"stage_name":"metric_collector","events_processed":1099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":219.8,"last_update":"2026-03-22T06:19:47.368227772Z"} +2026/03/22 06:19:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":442,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:19:47.378982483Z"} +2026/03/22 06:19:52 ───────────────────────────────────────────────── +Saved state: 11 clusters, 2048 messages, reason: none +2026/03/22 06:19:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:19:57 [log_collector] {"stage_name":"log_collector","events_processed":2047,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":409.4,"last_update":"2026-03-22T06:19:52.368836877Z"} +2026/03/22 06:19:57 [metric_collector] {"stage_name":"metric_collector","events_processed":1104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":220.8,"last_update":"2026-03-22T06:19:52.369392531Z"} +2026/03/22 06:19:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:19:52.380331523Z"} +2026/03/22 06:19:57 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":11.223425899626376,"throughput_eps":0,"last_update":"2026-03-22T06:19:52.479626842Z"} +2026/03/22 06:19:57 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":532.0715587392381,"throughput_eps":0,"last_update":"2026-03-22T06:19:52.479649235Z"} +2026/03/22 06:19:57 ───────────────────────────────────────────────── +2026/03/22 06:20:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:20:02 [log_collector] {"stage_name":"log_collector","events_processed":2050,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":410,"last_update":"2026-03-22T06:19:57.367971045Z"} +2026/03/22 06:20:02 [metric_collector] {"stage_name":"metric_collector","events_processed":1109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":221.8,"last_update":"2026-03-22T06:19:57.368518153Z"} +2026/03/22 06:20:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":446,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:19:57.377236905Z"} +2026/03/22 06:20:02 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":11.223425899626376,"throughput_eps":0,"last_update":"2026-03-22T06:19:57.480436198Z"} +2026/03/22 06:20:02 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":449.2420979913905,"throughput_eps":0,"last_update":"2026-03-22T06:19:57.59734631Z"} +2026/03/22 06:20:02 ───────────────────────────────────────────────── +2026/03/22 06:20:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:20:07 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":449.2420979913905,"throughput_eps":0,"last_update":"2026-03-22T06:20:02.479184397Z"} +2026/03/22 06:20:07 [log_collector] {"stage_name":"log_collector","events_processed":2061,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":412.2,"last_update":"2026-03-22T06:20:02.368422505Z"} +2026/03/22 06:20:07 [metric_collector] {"stage_name":"metric_collector","events_processed":1114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":222.8,"last_update":"2026-03-22T06:20:02.368930888Z"} +2026/03/22 06:20:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:20:02.384968694Z"} +2026/03/22 06:20:07 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.9967569197011,"throughput_eps":0,"last_update":"2026-03-22T06:20:02.479205487Z"} +2026/03/22 06:20:07 ───────────────────────────────────────────────── +2026/03/22 06:20:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:20:12 [log_collector] {"stage_name":"log_collector","events_processed":2061,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":412.2,"last_update":"2026-03-22T06:20:07.36861594Z"} +2026/03/22 06:20:12 [metric_collector] {"stage_name":"metric_collector","events_processed":1119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":223.8,"last_update":"2026-03-22T06:20:07.368966913Z"} +2026/03/22 06:20:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:20:07.379632101Z"} +2026/03/22 06:20:12 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.9967569197011,"throughput_eps":0,"last_update":"2026-03-22T06:20:07.479852722Z"} +2026/03/22 06:20:12 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":449.2420979913905,"throughput_eps":0,"last_update":"2026-03-22T06:20:07.479908058Z"} +2026/03/22 06:20:12 ───────────────────────────────────────────────── +2026/03/22 06:20:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:20:17 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.9967569197011,"throughput_eps":0,"last_update":"2026-03-22T06:20:12.479784767Z"} +2026/03/22 06:20:17 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":449.2420979913905,"throughput_eps":0,"last_update":"2026-03-22T06:20:12.479806138Z"} +2026/03/22 06:20:17 [log_collector] {"stage_name":"log_collector","events_processed":2061,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":412.2,"last_update":"2026-03-22T06:20:12.368869692Z"} +2026/03/22 06:20:17 [metric_collector] {"stage_name":"metric_collector","events_processed":1124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":224.8,"last_update":"2026-03-22T06:20:12.368869512Z"} +2026/03/22 06:20:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":452,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:20:12.379572203Z"} +2026/03/22 06:20:17 ───────────────────────────────────────────────── +2026/03/22 06:20:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:20:22 [log_collector] {"stage_name":"log_collector","events_processed":2061,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":412.2,"last_update":"2026-03-22T06:20:22.368337855Z"} +2026/03/22 06:20:22 [metric_collector] {"stage_name":"metric_collector","events_processed":1129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":225.8,"last_update":"2026-03-22T06:20:17.368370992Z"} +2026/03/22 06:20:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:20:17.377085818Z"} +2026/03/22 06:20:22 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.9967569197011,"throughput_eps":0,"last_update":"2026-03-22T06:20:17.479265399Z"} +2026/03/22 06:20:22 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":449.2420979913905,"throughput_eps":0,"last_update":"2026-03-22T06:20:17.479284616Z"} +2026/03/22 06:20:22 ───────────────────────────────────────────────── +2026/03/22 06:20:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:20:27 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.9967569197011,"throughput_eps":0,"last_update":"2026-03-22T06:20:22.479501256Z"} +2026/03/22 06:20:27 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":449.2420979913905,"throughput_eps":0,"last_update":"2026-03-22T06:20:22.479478001Z"} +2026/03/22 06:20:27 [log_collector] {"stage_name":"log_collector","events_processed":2061,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":412.2,"last_update":"2026-03-22T06:20:27.368038227Z"} +2026/03/22 06:20:27 [metric_collector] {"stage_name":"metric_collector","events_processed":1134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":226.8,"last_update":"2026-03-22T06:20:22.368806262Z"} +2026/03/22 06:20:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:20:22.378382927Z"} +2026/03/22 06:20:27 ───────────────────────────────────────────────── +2026/03/22 06:20:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:20:32 [log_collector] {"stage_name":"log_collector","events_processed":2061,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":412.2,"last_update":"2026-03-22T06:20:32.367982237Z"} +2026/03/22 06:20:32 [metric_collector] {"stage_name":"metric_collector","events_processed":1139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":227.8,"last_update":"2026-03-22T06:20:27.368385061Z"} +2026/03/22 06:20:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:20:27.378366331Z"} +2026/03/22 06:20:32 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.9967569197011,"throughput_eps":0,"last_update":"2026-03-22T06:20:27.479584892Z"} +2026/03/22 06:20:32 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":381.3110827931124,"throughput_eps":0,"last_update":"2026-03-22T06:20:27.589283618Z"} +2026/03/22 06:20:32 ───────────────────────────────────────────────── +2026/03/22 06:20:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:20:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:20:32.378643108Z"} +2026/03/22 06:20:37 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":12.456705735760881,"throughput_eps":0,"last_update":"2026-03-22T06:20:32.480037474Z"} +2026/03/22 06:20:37 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":381.3110827931124,"throughput_eps":0,"last_update":"2026-03-22T06:20:32.478864058Z"} +2026/03/22 06:20:37 [log_collector] {"stage_name":"log_collector","events_processed":2061,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":412.2,"last_update":"2026-03-22T06:20:32.367982237Z"} +2026/03/22 06:20:37 [metric_collector] {"stage_name":"metric_collector","events_processed":1144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":228.8,"last_update":"2026-03-22T06:20:32.368557869Z"} +2026/03/22 06:20:37 ───────────────────────────────────────────────── +2026/03/22 06:20:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:20:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:20:37.376190608Z"} +2026/03/22 06:20:42 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":12.456705735760881,"throughput_eps":0,"last_update":"2026-03-22T06:20:37.479507145Z"} +2026/03/22 06:20:42 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":381.3110827931124,"throughput_eps":0,"last_update":"2026-03-22T06:20:37.479523768Z"} +2026/03/22 06:20:42 [log_collector] {"stage_name":"log_collector","events_processed":2061,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":412.2,"last_update":"2026-03-22T06:20:37.368484323Z"} +2026/03/22 06:20:42 [metric_collector] {"stage_name":"metric_collector","events_processed":1149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":229.8,"last_update":"2026-03-22T06:20:37.368903667Z"} +2026/03/22 06:20:42 ───────────────────────────────────────────────── +2026/03/22 06:20:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:20:47 [log_collector] {"stage_name":"log_collector","events_processed":2061,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":412.2,"last_update":"2026-03-22T06:20:42.369014523Z"} +2026/03/22 06:20:47 [metric_collector] {"stage_name":"metric_collector","events_processed":1154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":230.8,"last_update":"2026-03-22T06:20:42.369003542Z"} +2026/03/22 06:20:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:20:42.377837876Z"} +2026/03/22 06:20:47 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":12.456705735760881,"throughput_eps":0,"last_update":"2026-03-22T06:20:42.479079981Z"} +2026/03/22 06:20:47 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":381.3110827931124,"throughput_eps":0,"last_update":"2026-03-22T06:20:42.479093638Z"} +2026/03/22 06:20:47 ───────────────────────────────────────────────── +2026/03/22 06:20:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:20:52 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":381.3110827931124,"throughput_eps":0,"last_update":"2026-03-22T06:20:47.480079952Z"} +2026/03/22 06:20:52 [log_collector] {"stage_name":"log_collector","events_processed":2061,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":412.2,"last_update":"2026-03-22T06:20:52.368728326Z"} +2026/03/22 06:20:52 [metric_collector] {"stage_name":"metric_collector","events_processed":1159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":231.8,"last_update":"2026-03-22T06:20:47.368991144Z"} +2026/03/22 06:20:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:20:47.378504298Z"} +2026/03/22 06:20:52 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":12.456705735760881,"throughput_eps":0,"last_update":"2026-03-22T06:20:47.480067829Z"} +2026/03/22 06:20:52 ───────────────────────────────────────────────── +2026/03/22 06:20:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:20:57 [log_collector] {"stage_name":"log_collector","events_processed":2061,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":412.2,"last_update":"2026-03-22T06:20:52.368728326Z"} +2026/03/22 06:20:57 [metric_collector] {"stage_name":"metric_collector","events_processed":1164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":232.8,"last_update":"2026-03-22T06:20:52.369180061Z"} +2026/03/22 06:20:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:20:52.378508471Z"} +2026/03/22 06:20:57 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":12.456705735760881,"throughput_eps":0,"last_update":"2026-03-22T06:20:52.479747511Z"} +2026/03/22 06:20:57 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":381.3110827931124,"throughput_eps":0,"last_update":"2026-03-22T06:20:52.479772128Z"} +2026/03/22 06:20:57 ───────────────────────────────────────────────── +2026/03/22 06:21:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:21:02 [metric_collector] {"stage_name":"metric_collector","events_processed":1169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":233.8,"last_update":"2026-03-22T06:20:57.368588344Z"} +2026/03/22 06:21:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":470,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:20:57.378026715Z"} +2026/03/22 06:21:02 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":12.456705735760881,"throughput_eps":0,"last_update":"2026-03-22T06:20:57.479383029Z"} +2026/03/22 06:21:02 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":381.3110827931124,"throughput_eps":0,"last_update":"2026-03-22T06:20:57.479316351Z"} +2026/03/22 06:21:02 [log_collector] {"stage_name":"log_collector","events_processed":2061,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":412.2,"last_update":"2026-03-22T06:20:57.367968748Z"} +2026/03/22 06:21:02 ───────────────────────────────────────────────── +Saved state: 11 clusters, 2062 messages, reason: none +2026/03/22 06:21:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:21:07 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":12.982292988608705,"throughput_eps":0,"last_update":"2026-03-22T06:21:02.478965744Z"} +2026/03/22 06:21:07 [transform_engine] {"stage_name":"transform_engine","events_processed":39,"events_dropped":0,"avg_latency_ms":319.7692374344899,"throughput_eps":0,"last_update":"2026-03-22T06:21:02.478863308Z"} +2026/03/22 06:21:07 [log_collector] {"stage_name":"log_collector","events_processed":2061,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":412.2,"last_update":"2026-03-22T06:21:02.368496383Z"} +2026/03/22 06:21:07 [metric_collector] {"stage_name":"metric_collector","events_processed":1174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":234.8,"last_update":"2026-03-22T06:21:02.368304335Z"} +2026/03/22 06:21:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:21:02.378717793Z"} +2026/03/22 06:21:07 ───────────────────────────────────────────────── +2026/03/22 06:21:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:21:12 [log_collector] {"stage_name":"log_collector","events_processed":2066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":413.2,"last_update":"2026-03-22T06:21:07.368948422Z"} +2026/03/22 06:21:12 [metric_collector] {"stage_name":"metric_collector","events_processed":1179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":235.8,"last_update":"2026-03-22T06:21:07.369253216Z"} +2026/03/22 06:21:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:21:07.38274663Z"} +2026/03/22 06:21:12 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":12.982292988608705,"throughput_eps":0,"last_update":"2026-03-22T06:21:07.479865Z"} +2026/03/22 06:21:12 [transform_engine] {"stage_name":"transform_engine","events_processed":39,"events_dropped":0,"avg_latency_ms":319.7692374344899,"throughput_eps":0,"last_update":"2026-03-22T06:21:07.479885739Z"} +2026/03/22 06:21:12 ───────────────────────────────────────────────── +2026/03/22 06:21:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:21:17 [log_collector] {"stage_name":"log_collector","events_processed":2066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":413.2,"last_update":"2026-03-22T06:21:17.368765177Z"} +2026/03/22 06:21:17 [metric_collector] {"stage_name":"metric_collector","events_processed":1183,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":236.6,"last_update":"2026-03-22T06:21:12.368035448Z"} +2026/03/22 06:21:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":476,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:21:12.375010542Z"} +2026/03/22 06:21:17 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":12.982292988608705,"throughput_eps":0,"last_update":"2026-03-22T06:21:12.479248092Z"} +2026/03/22 06:21:17 [transform_engine] {"stage_name":"transform_engine","events_processed":39,"events_dropped":0,"avg_latency_ms":319.7692374344899,"throughput_eps":0,"last_update":"2026-03-22T06:21:12.479224817Z"} +2026/03/22 06:21:17 ───────────────────────────────────────────────── +2026/03/22 06:21:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:21:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:21:17.376621479Z"} +2026/03/22 06:21:22 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":12.982292988608705,"throughput_eps":0,"last_update":"2026-03-22T06:21:17.481410134Z"} +2026/03/22 06:21:22 [transform_engine] {"stage_name":"transform_engine","events_processed":39,"events_dropped":0,"avg_latency_ms":319.7692374344899,"throughput_eps":0,"last_update":"2026-03-22T06:21:17.479117154Z"} +2026/03/22 06:21:22 [log_collector] {"stage_name":"log_collector","events_processed":2066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":413.2,"last_update":"2026-03-22T06:21:22.368702842Z"} +2026/03/22 06:21:22 [metric_collector] {"stage_name":"metric_collector","events_processed":1189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":237.8,"last_update":"2026-03-22T06:21:17.369126038Z"} +2026/03/22 06:21:22 ───────────────────────────────────────────────── +2026/03/22 06:21:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:21:27 [log_collector] {"stage_name":"log_collector","events_processed":2066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":413.2,"last_update":"2026-03-22T06:21:22.368702842Z"} +2026/03/22 06:21:27 [metric_collector] {"stage_name":"metric_collector","events_processed":1194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":238.8,"last_update":"2026-03-22T06:21:22.368970505Z"} +2026/03/22 06:21:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":480,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:21:22.377005283Z"} +2026/03/22 06:21:27 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":12.982292988608705,"throughput_eps":0,"last_update":"2026-03-22T06:21:22.479188742Z"} +2026/03/22 06:21:27 [transform_engine] {"stage_name":"transform_engine","events_processed":39,"events_dropped":0,"avg_latency_ms":319.7692374344899,"throughput_eps":0,"last_update":"2026-03-22T06:21:22.479208159Z"} +2026/03/22 06:21:27 ───────────────────────────────────────────────── +2026/03/22 06:21:29 [ANOMALY] time=2026-03-22T06:21:29Z score=0.9096 method=SEAD details=MAD!:w=0.23,s=0.87 RRCF-fast!:w=0.19,s=0.95 RRCF-mid!:w=0.19,s=0.97 RRCF-slow!:w=0.19,s=0.97 COPOD!:w=0.20,s=0.79 +2026/03/22 06:21:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:21:32 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":685.304196547592,"throughput_eps":0,"last_update":"2026-03-22T06:21:29.626665994Z"} +2026/03/22 06:21:32 [log_collector] {"stage_name":"log_collector","events_processed":2066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":413.2,"last_update":"2026-03-22T06:21:27.367954846Z"} +2026/03/22 06:21:32 [metric_collector] {"stage_name":"metric_collector","events_processed":1199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":239.8,"last_update":"2026-03-22T06:21:27.368146564Z"} +2026/03/22 06:21:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":482,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:21:27.375003424Z"} +2026/03/22 06:21:32 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":12.982292988608705,"throughput_eps":0,"last_update":"2026-03-22T06:21:27.479190361Z"} +2026/03/22 06:21:32 ───────────────────────────────────────────────── +2026/03/22 06:21:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:21:37 [log_collector] {"stage_name":"log_collector","events_processed":2066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":413.2,"last_update":"2026-03-22T06:21:32.368625456Z"} +2026/03/22 06:21:37 [metric_collector] {"stage_name":"metric_collector","events_processed":1204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":240.8,"last_update":"2026-03-22T06:21:32.368930221Z"} +2026/03/22 06:21:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:21:32.377051554Z"} +2026/03/22 06:21:37 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":11.900583190886964,"throughput_eps":0,"last_update":"2026-03-22T06:21:32.479291608Z"} +2026/03/22 06:21:37 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":685.304196547592,"throughput_eps":0,"last_update":"2026-03-22T06:21:32.479269035Z"} +2026/03/22 06:21:37 ───────────────────────────────────────────────── +2026/03/22 06:21:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:21:42 [log_collector] {"stage_name":"log_collector","events_processed":2066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":413.2,"last_update":"2026-03-22T06:21:37.368425506Z"} +2026/03/22 06:21:42 [metric_collector] {"stage_name":"metric_collector","events_processed":1209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":241.8,"last_update":"2026-03-22T06:21:37.368751741Z"} +2026/03/22 06:21:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":486,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:21:37.378863538Z"} +2026/03/22 06:21:42 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":11.900583190886964,"throughput_eps":0,"last_update":"2026-03-22T06:21:37.479088691Z"} +2026/03/22 06:21:42 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":685.304196547592,"throughput_eps":0,"last_update":"2026-03-22T06:21:37.479124719Z"} +2026/03/22 06:21:42 ───────────────────────────────────────────────── +2026/03/22 06:21:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:21:47 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":11.900583190886964,"throughput_eps":0,"last_update":"2026-03-22T06:21:42.479593697Z"} +2026/03/22 06:21:47 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":685.304196547592,"throughput_eps":0,"last_update":"2026-03-22T06:21:42.479567497Z"} +2026/03/22 06:21:47 [log_collector] {"stage_name":"log_collector","events_processed":2075,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":415,"last_update":"2026-03-22T06:21:47.368326437Z"} +2026/03/22 06:21:47 [metric_collector] {"stage_name":"metric_collector","events_processed":1214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":242.8,"last_update":"2026-03-22T06:21:42.368384187Z"} +2026/03/22 06:21:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:21:42.376407412Z"} +2026/03/22 06:21:47 ───────────────────────────────────────────────── +2026/03/22 06:21:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:21:52 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":685.304196547592,"throughput_eps":0,"last_update":"2026-03-22T06:21:47.478830153Z"} +2026/03/22 06:21:52 [log_collector] {"stage_name":"log_collector","events_processed":2075,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":415,"last_update":"2026-03-22T06:21:47.368326437Z"} +2026/03/22 06:21:52 [metric_collector] {"stage_name":"metric_collector","events_processed":1219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":243.8,"last_update":"2026-03-22T06:21:47.368568941Z"} +2026/03/22 06:21:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":490,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:21:47.37669804Z"} +2026/03/22 06:21:52 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":11.900583190886964,"throughput_eps":0,"last_update":"2026-03-22T06:21:47.4799558Z"} +2026/03/22 06:21:52 ───────────────────────────────────────────────── +2026/03/22 06:21:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:21:57 [log_collector] {"stage_name":"log_collector","events_processed":2077,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":415.4,"last_update":"2026-03-22T06:21:52.367964617Z"} +2026/03/22 06:21:57 [metric_collector] {"stage_name":"metric_collector","events_processed":1224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":244.8,"last_update":"2026-03-22T06:21:52.368179287Z"} +2026/03/22 06:21:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:21:52.37583589Z"} +2026/03/22 06:21:57 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":11.900583190886964,"throughput_eps":0,"last_update":"2026-03-22T06:21:52.479087838Z"} +2026/03/22 06:21:57 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":685.304196547592,"throughput_eps":0,"last_update":"2026-03-22T06:21:52.47904766Z"} +2026/03/22 06:21:57 ───────────────────────────────────────────────── +2026/03/22 06:22:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:22:02 [log_collector] {"stage_name":"log_collector","events_processed":2232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":446.4,"last_update":"2026-03-22T06:21:57.368437565Z"} +2026/03/22 06:22:02 [metric_collector] {"stage_name":"metric_collector","events_processed":1229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":245.8,"last_update":"2026-03-22T06:21:57.368556113Z"} +2026/03/22 06:22:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:21:57.377034389Z"} +2026/03/22 06:22:02 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":11.900583190886964,"throughput_eps":0,"last_update":"2026-03-22T06:21:57.479313372Z"} +2026/03/22 06:22:02 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":609.6766866380736,"throughput_eps":0,"last_update":"2026-03-22T06:21:57.786408141Z"} +2026/03/22 06:22:02 ───────────────────────────────────────────────── +2026/03/22 06:22:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:22:07 [log_collector] {"stage_name":"log_collector","events_processed":2424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":484.8,"last_update":"2026-03-22T06:22:02.368397012Z"} +2026/03/22 06:22:07 [metric_collector] {"stage_name":"metric_collector","events_processed":1234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":246.8,"last_update":"2026-03-22T06:22:02.368605923Z"} +2026/03/22 06:22:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":496,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:22:02.376650438Z"} +2026/03/22 06:22:07 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":11.818995152709572,"throughput_eps":0,"last_update":"2026-03-22T06:22:02.479863879Z"} +2026/03/22 06:22:07 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":609.6766866380736,"throughput_eps":0,"last_update":"2026-03-22T06:22:02.479909647Z"} +2026/03/22 06:22:07 ───────────────────────────────────────────────── +2026/03/22 06:22:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:22:12 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":609.6766866380736,"throughput_eps":0,"last_update":"2026-03-22T06:22:07.479602895Z"} +2026/03/22 06:22:12 [log_collector] {"stage_name":"log_collector","events_processed":2424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":484.8,"last_update":"2026-03-22T06:22:07.368554851Z"} +2026/03/22 06:22:12 [metric_collector] {"stage_name":"metric_collector","events_processed":1244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":248.8,"last_update":"2026-03-22T06:22:12.368597013Z"} +2026/03/22 06:22:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":498,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:22:07.37837076Z"} +2026/03/22 06:22:12 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":11.818995152709572,"throughput_eps":0,"last_update":"2026-03-22T06:22:07.479580812Z"} +2026/03/22 06:22:12 ───────────────────────────────────────────────── +2026/03/22 06:22:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:22:17 [log_collector] {"stage_name":"log_collector","events_processed":2424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":484.8,"last_update":"2026-03-22T06:22:12.36862147Z"} +2026/03/22 06:22:17 [metric_collector] {"stage_name":"metric_collector","events_processed":1244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":248.8,"last_update":"2026-03-22T06:22:12.368597013Z"} +2026/03/22 06:22:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:22:12.378310676Z"} +2026/03/22 06:22:17 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":11.818995152709572,"throughput_eps":0,"last_update":"2026-03-22T06:22:12.479673229Z"} +2026/03/22 06:22:17 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":609.6766866380736,"throughput_eps":0,"last_update":"2026-03-22T06:22:12.479788148Z"} +2026/03/22 06:22:17 ───────────────────────────────────────────────── +2026/03/22 06:22:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:22:22 [metric_collector] {"stage_name":"metric_collector","events_processed":1249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":249.8,"last_update":"2026-03-22T06:22:17.368576137Z"} +2026/03/22 06:22:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:22:17.377774824Z"} +2026/03/22 06:22:22 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":11.818995152709572,"throughput_eps":0,"last_update":"2026-03-22T06:22:17.478942791Z"} +2026/03/22 06:22:22 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":609.6766866380736,"throughput_eps":0,"last_update":"2026-03-22T06:22:17.478926429Z"} +2026/03/22 06:22:22 [log_collector] {"stage_name":"log_collector","events_processed":2424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":484.8,"last_update":"2026-03-22T06:22:17.368037666Z"} +2026/03/22 06:22:22 ───────────────────────────────────────────────── +2026/03/22 06:22:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:22:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:22:22.377718923Z"} +2026/03/22 06:22:27 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":11.818995152709572,"throughput_eps":0,"last_update":"2026-03-22T06:22:22.478979748Z"} +2026/03/22 06:22:27 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":609.6766866380736,"throughput_eps":0,"last_update":"2026-03-22T06:22:22.478875287Z"} +2026/03/22 06:22:27 [log_collector] {"stage_name":"log_collector","events_processed":2424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":484.8,"last_update":"2026-03-22T06:22:27.368443252Z"} +2026/03/22 06:22:27 [metric_collector] {"stage_name":"metric_collector","events_processed":1254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":250.8,"last_update":"2026-03-22T06:22:22.369283138Z"} +2026/03/22 06:22:27 ───────────────────────────────────────────────── +2026/03/22 06:22:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:22:32 [log_collector] {"stage_name":"log_collector","events_processed":2424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":484.8,"last_update":"2026-03-22T06:22:27.368443252Z"} +2026/03/22 06:22:32 [metric_collector] {"stage_name":"metric_collector","events_processed":1259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":251.8,"last_update":"2026-03-22T06:22:27.368819914Z"} +2026/03/22 06:22:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":506,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:22:27.377801564Z"} +2026/03/22 06:22:32 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":11.818995152709572,"throughput_eps":0,"last_update":"2026-03-22T06:22:27.47933Z"} +2026/03/22 06:22:32 [transform_engine] {"stage_name":"transform_engine","events_processed":42,"events_dropped":0,"avg_latency_ms":510.40179451045896,"throughput_eps":0,"last_update":"2026-03-22T06:22:27.592304478Z"} +2026/03/22 06:22:32 ───────────────────────────────────────────────── +2026/03/22 06:22:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:22:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:22:32.378142135Z"} +2026/03/22 06:22:37 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":12.242366922167658,"throughput_eps":0,"last_update":"2026-03-22T06:22:32.47948841Z"} +2026/03/22 06:22:37 [transform_engine] {"stage_name":"transform_engine","events_processed":42,"events_dropped":0,"avg_latency_ms":510.40179451045896,"throughput_eps":0,"last_update":"2026-03-22T06:22:32.479537785Z"} +2026/03/22 06:22:37 [log_collector] {"stage_name":"log_collector","events_processed":2424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":484.8,"last_update":"2026-03-22T06:22:32.368002486Z"} +2026/03/22 06:22:37 [metric_collector] {"stage_name":"metric_collector","events_processed":1264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":252.8,"last_update":"2026-03-22T06:22:32.368704171Z"} +2026/03/22 06:22:37 ───────────────────────────────────────────────── +2026/03/22 06:22:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:22:42 [log_collector] {"stage_name":"log_collector","events_processed":2424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":484.8,"last_update":"2026-03-22T06:22:42.368010877Z"} +2026/03/22 06:22:42 [metric_collector] {"stage_name":"metric_collector","events_processed":1269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":253.8,"last_update":"2026-03-22T06:22:37.36939565Z"} +2026/03/22 06:22:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:22:37.378199028Z"} +2026/03/22 06:22:42 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":12.242366922167658,"throughput_eps":0,"last_update":"2026-03-22T06:22:37.479450761Z"} +2026/03/22 06:22:42 [transform_engine] {"stage_name":"transform_engine","events_processed":42,"events_dropped":0,"avg_latency_ms":510.40179451045896,"throughput_eps":0,"last_update":"2026-03-22T06:22:37.479416516Z"} +2026/03/22 06:22:42 ───────────────────────────────────────────────── +2026/03/22 06:22:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:22:47 [metric_collector] {"stage_name":"metric_collector","events_processed":1274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":254.8,"last_update":"2026-03-22T06:22:42.368685701Z"} +2026/03/22 06:22:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":512,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:22:42.377389478Z"} +2026/03/22 06:22:47 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":12.242366922167658,"throughput_eps":0,"last_update":"2026-03-22T06:22:42.479620075Z"} +2026/03/22 06:22:47 [transform_engine] {"stage_name":"transform_engine","events_processed":42,"events_dropped":0,"avg_latency_ms":510.40179451045896,"throughput_eps":0,"last_update":"2026-03-22T06:22:42.479582924Z"} +2026/03/22 06:22:47 [log_collector] {"stage_name":"log_collector","events_processed":2424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":484.8,"last_update":"2026-03-22T06:22:42.368010877Z"} +2026/03/22 06:22:47 ───────────────────────────────────────────────── +2026/03/22 06:22:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:22:52 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":12.242366922167658,"throughput_eps":0,"last_update":"2026-03-22T06:22:47.479418697Z"} +2026/03/22 06:22:52 [transform_engine] {"stage_name":"transform_engine","events_processed":42,"events_dropped":0,"avg_latency_ms":510.40179451045896,"throughput_eps":0,"last_update":"2026-03-22T06:22:47.479383339Z"} +2026/03/22 06:22:52 [log_collector] {"stage_name":"log_collector","events_processed":2424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":484.8,"last_update":"2026-03-22T06:22:52.368861571Z"} +2026/03/22 06:22:52 [metric_collector] {"stage_name":"metric_collector","events_processed":1279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":255.8,"last_update":"2026-03-22T06:22:47.368713342Z"} +2026/03/22 06:22:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:22:47.375152992Z"} +2026/03/22 06:22:52 ───────────────────────────────────────────────── +2026/03/22 06:22:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:22:57 [log_collector] {"stage_name":"log_collector","events_processed":2424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":484.8,"last_update":"2026-03-22T06:22:52.368861571Z"} +2026/03/22 06:22:57 [metric_collector] {"stage_name":"metric_collector","events_processed":1284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":256.8,"last_update":"2026-03-22T06:22:52.369522938Z"} +2026/03/22 06:22:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:22:52.378369319Z"} +2026/03/22 06:22:57 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":12.242366922167658,"throughput_eps":0,"last_update":"2026-03-22T06:22:52.479726499Z"} +2026/03/22 06:22:57 [transform_engine] {"stage_name":"transform_engine","events_processed":42,"events_dropped":0,"avg_latency_ms":510.40179451045896,"throughput_eps":0,"last_update":"2026-03-22T06:22:52.479698506Z"} +2026/03/22 06:22:57 ───────────────────────────────────────────────── +2026/03/22 06:23:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:23:02 [metric_collector] {"stage_name":"metric_collector","events_processed":1289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":257.8,"last_update":"2026-03-22T06:22:57.369501661Z"} +2026/03/22 06:23:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:22:57.377774874Z"} +2026/03/22 06:23:02 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":12.242366922167658,"throughput_eps":0,"last_update":"2026-03-22T06:22:57.480016418Z"} +2026/03/22 06:23:02 [transform_engine] {"stage_name":"transform_engine","events_processed":43,"events_dropped":0,"avg_latency_ms":421.5452576083672,"throughput_eps":0,"last_update":"2026-03-22T06:22:57.545011815Z"} +2026/03/22 06:23:02 [log_collector] {"stage_name":"log_collector","events_processed":2424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":484.8,"last_update":"2026-03-22T06:22:57.368841016Z"} +2026/03/22 06:23:02 ───────────────────────────────────────────────── +2026/03/22 06:23:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:23:07 [metric_collector] {"stage_name":"metric_collector","events_processed":1294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":258.8,"last_update":"2026-03-22T06:23:02.368992321Z"} +2026/03/22 06:23:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":520,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:23:02.378097508Z"} +2026/03/22 06:23:07 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":12.81390613773413,"throughput_eps":0,"last_update":"2026-03-22T06:23:02.479370384Z"} +2026/03/22 06:23:07 [transform_engine] {"stage_name":"transform_engine","events_processed":43,"events_dropped":0,"avg_latency_ms":421.5452576083672,"throughput_eps":0,"last_update":"2026-03-22T06:23:02.479304458Z"} +2026/03/22 06:23:07 [log_collector] {"stage_name":"log_collector","events_processed":2424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":484.8,"last_update":"2026-03-22T06:23:02.36862684Z"} +2026/03/22 06:23:07 ───────────────────────────────────────────────── +2026/03/22 06:23:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:23:12 [log_collector] {"stage_name":"log_collector","events_processed":2424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":484.8,"last_update":"2026-03-22T06:23:12.36866447Z"} +2026/03/22 06:23:12 [metric_collector] {"stage_name":"metric_collector","events_processed":1299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":259.8,"last_update":"2026-03-22T06:23:07.368997395Z"} +2026/03/22 06:23:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":522,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:23:07.377813036Z"} +2026/03/22 06:23:12 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":12.81390613773413,"throughput_eps":0,"last_update":"2026-03-22T06:23:07.478959028Z"} +2026/03/22 06:23:12 [transform_engine] {"stage_name":"transform_engine","events_processed":43,"events_dropped":0,"avg_latency_ms":421.5452576083672,"throughput_eps":0,"last_update":"2026-03-22T06:23:07.478950112Z"} +2026/03/22 06:23:12 ───────────────────────────────────────────────── +2026/03/22 06:23:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:23:17 [log_collector] {"stage_name":"log_collector","events_processed":2424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":484.8,"last_update":"2026-03-22T06:23:12.36866447Z"} +2026/03/22 06:23:17 [metric_collector] {"stage_name":"metric_collector","events_processed":1304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":260.8,"last_update":"2026-03-22T06:23:12.36895699Z"} +2026/03/22 06:23:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:23:12.378136018Z"} +2026/03/22 06:23:17 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":12.81390613773413,"throughput_eps":0,"last_update":"2026-03-22T06:23:12.479344299Z"} +2026/03/22 06:23:17 [transform_engine] {"stage_name":"transform_engine","events_processed":43,"events_dropped":0,"avg_latency_ms":421.5452576083672,"throughput_eps":0,"last_update":"2026-03-22T06:23:12.479453248Z"} +2026/03/22 06:23:17 ───────────────────────────────────────────────── +2026/03/22 06:23:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:23:22 [log_collector] {"stage_name":"log_collector","events_processed":2424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":484.8,"last_update":"2026-03-22T06:23:22.368523191Z"} +2026/03/22 06:23:22 [metric_collector] {"stage_name":"metric_collector","events_processed":1314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":262.8,"last_update":"2026-03-22T06:23:22.368839327Z"} +2026/03/22 06:23:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":526,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:23:17.37738241Z"} +2026/03/22 06:23:22 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":12.81390613773413,"throughput_eps":0,"last_update":"2026-03-22T06:23:17.479596968Z"} +2026/03/22 06:23:22 [transform_engine] {"stage_name":"transform_engine","events_processed":43,"events_dropped":0,"avg_latency_ms":421.5452576083672,"throughput_eps":0,"last_update":"2026-03-22T06:23:17.479638137Z"} +2026/03/22 06:23:22 ───────────────────────────────────────────────── +Saved state: 11 clusters, 2425 messages, reason: none +2026/03/22 06:23:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:23:27 [log_collector] {"stage_name":"log_collector","events_processed":2424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":484.8,"last_update":"2026-03-22T06:23:22.368523191Z"} +2026/03/22 06:23:27 [metric_collector] {"stage_name":"metric_collector","events_processed":1314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":262.8,"last_update":"2026-03-22T06:23:22.368839327Z"} +2026/03/22 06:23:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:23:22.378563169Z"} +2026/03/22 06:23:27 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":12.81390613773413,"throughput_eps":0,"last_update":"2026-03-22T06:23:22.479776197Z"} +2026/03/22 06:23:27 [transform_engine] {"stage_name":"transform_engine","events_processed":43,"events_dropped":0,"avg_latency_ms":421.5452576083672,"throughput_eps":0,"last_update":"2026-03-22T06:23:22.479827435Z"} +2026/03/22 06:23:27 ───────────────────────────────────────────────── +2026/03/22 06:23:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:23:32 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":366.16708428669375,"throughput_eps":0,"last_update":"2026-03-22T06:23:27.624249077Z"} +2026/03/22 06:23:32 [log_collector] {"stage_name":"log_collector","events_processed":2427,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":485.4,"last_update":"2026-03-22T06:23:27.368541516Z"} +2026/03/22 06:23:32 [metric_collector] {"stage_name":"metric_collector","events_processed":1319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":263.8,"last_update":"2026-03-22T06:23:27.369007327Z"} +2026/03/22 06:23:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:23:27.379252217Z"} +2026/03/22 06:23:32 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":12.81390613773413,"throughput_eps":0,"last_update":"2026-03-22T06:23:27.479624644Z"} +2026/03/22 06:23:32 ───────────────────────────────────────────────── +2026/03/22 06:23:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:23:37 [metric_collector] {"stage_name":"metric_collector","events_processed":1324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":264.8,"last_update":"2026-03-22T06:23:32.369115547Z"} +2026/03/22 06:23:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":532,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:23:32.375822578Z"} +2026/03/22 06:23:37 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":12.403034110187305,"throughput_eps":0,"last_update":"2026-03-22T06:23:32.4794874Z"} +2026/03/22 06:23:37 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":366.16708428669375,"throughput_eps":0,"last_update":"2026-03-22T06:23:32.479512449Z"} +2026/03/22 06:23:37 [log_collector] {"stage_name":"log_collector","events_processed":2432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":486.4,"last_update":"2026-03-22T06:23:32.36913303Z"} +2026/03/22 06:23:37 ───────────────────────────────────────────────── +2026/03/22 06:23:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:23:42 [log_collector] {"stage_name":"log_collector","events_processed":2438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":487.6,"last_update":"2026-03-22T06:23:37.368011797Z"} +2026/03/22 06:23:42 [metric_collector] {"stage_name":"metric_collector","events_processed":1329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":265.8,"last_update":"2026-03-22T06:23:37.368546271Z"} +2026/03/22 06:23:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:23:37.377160495Z"} +2026/03/22 06:23:42 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":12.403034110187305,"throughput_eps":0,"last_update":"2026-03-22T06:23:37.479381711Z"} +2026/03/22 06:23:42 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":366.16708428669375,"throughput_eps":0,"last_update":"2026-03-22T06:23:37.479415666Z"} +2026/03/22 06:23:42 ───────────────────────────────────────────────── +2026/03/22 06:23:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:23:47 [log_collector] {"stage_name":"log_collector","events_processed":2445,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":489,"last_update":"2026-03-22T06:23:42.367992129Z"} +2026/03/22 06:23:47 [metric_collector] {"stage_name":"metric_collector","events_processed":1334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":266.8,"last_update":"2026-03-22T06:23:42.36833729Z"} +2026/03/22 06:23:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":536,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:23:42.376414535Z"} +2026/03/22 06:23:47 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":12.403034110187305,"throughput_eps":0,"last_update":"2026-03-22T06:23:42.479946953Z"} +2026/03/22 06:23:47 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":366.16708428669375,"throughput_eps":0,"last_update":"2026-03-22T06:23:42.478824473Z"} +2026/03/22 06:23:47 ───────────────────────────────────────────────── +2026/03/22 06:23:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:23:52 [log_collector] {"stage_name":"log_collector","events_processed":2457,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":491.4,"last_update":"2026-03-22T06:23:47.36847151Z"} +2026/03/22 06:23:52 [metric_collector] {"stage_name":"metric_collector","events_processed":1339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":267.8,"last_update":"2026-03-22T06:23:47.368704126Z"} +2026/03/22 06:23:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:23:47.376604833Z"} +2026/03/22 06:23:52 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":12.403034110187305,"throughput_eps":0,"last_update":"2026-03-22T06:23:47.479805253Z"} +2026/03/22 06:23:52 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":366.16708428669375,"throughput_eps":0,"last_update":"2026-03-22T06:23:47.479784533Z"} +2026/03/22 06:23:52 ───────────────────────────────────────────────── +2026/03/22 06:23:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:23:57 [log_collector] {"stage_name":"log_collector","events_processed":2468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":493.6,"last_update":"2026-03-22T06:23:57.368030595Z"} +2026/03/22 06:23:57 [metric_collector] {"stage_name":"metric_collector","events_processed":1344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":268.8,"last_update":"2026-03-22T06:23:52.368427403Z"} +2026/03/22 06:23:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":540,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:23:52.378089285Z"} +2026/03/22 06:23:57 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":12.403034110187305,"throughput_eps":0,"last_update":"2026-03-22T06:23:52.479416324Z"} +2026/03/22 06:23:57 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":366.16708428669375,"throughput_eps":0,"last_update":"2026-03-22T06:23:52.479521486Z"} +2026/03/22 06:23:57 ───────────────────────────────────────────────── +2026/03/22 06:24:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:24:02 [log_collector] {"stage_name":"log_collector","events_processed":2468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":493.6,"last_update":"2026-03-22T06:24:02.367974266Z"} +2026/03/22 06:24:02 [metric_collector] {"stage_name":"metric_collector","events_processed":1349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":269.8,"last_update":"2026-03-22T06:23:57.368328396Z"} +2026/03/22 06:24:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":542,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:23:57.377896959Z"} +2026/03/22 06:24:02 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":12.403034110187305,"throughput_eps":0,"last_update":"2026-03-22T06:23:57.479143895Z"} +2026/03/22 06:24:02 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":314.661378629355,"throughput_eps":0,"last_update":"2026-03-22T06:23:57.587738467Z"} +2026/03/22 06:24:02 ───────────────────────────────────────────────── +2026/03/22 06:24:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:24:07 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":12.353148288149844,"throughput_eps":0,"last_update":"2026-03-22T06:24:02.479685149Z"} +2026/03/22 06:24:07 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":314.661378629355,"throughput_eps":0,"last_update":"2026-03-22T06:24:02.479725096Z"} +2026/03/22 06:24:07 [log_collector] {"stage_name":"log_collector","events_processed":2468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":493.6,"last_update":"2026-03-22T06:24:07.368021382Z"} +2026/03/22 06:24:07 [metric_collector] {"stage_name":"metric_collector","events_processed":1354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":270.8,"last_update":"2026-03-22T06:24:02.368719976Z"} +2026/03/22 06:24:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:24:02.379470252Z"} +2026/03/22 06:24:07 ───────────────────────────────────────────────── +2026/03/22 06:24:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:24:12 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":314.661378629355,"throughput_eps":0,"last_update":"2026-03-22T06:24:07.478836566Z"} +2026/03/22 06:24:12 [log_collector] {"stage_name":"log_collector","events_processed":2468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":493.6,"last_update":"2026-03-22T06:24:12.368904517Z"} +2026/03/22 06:24:12 [metric_collector] {"stage_name":"metric_collector","events_processed":1359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":271.8,"last_update":"2026-03-22T06:24:07.368594339Z"} +2026/03/22 06:24:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:24:07.37765542Z"} +2026/03/22 06:24:12 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":12.353148288149844,"throughput_eps":0,"last_update":"2026-03-22T06:24:07.480027959Z"} +2026/03/22 06:24:12 ───────────────────────────────────────────────── +2026/03/22 06:24:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:24:17 [metric_collector] {"stage_name":"metric_collector","events_processed":1364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":272.8,"last_update":"2026-03-22T06:24:12.369577436Z"} +2026/03/22 06:24:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:24:12.379429632Z"} +2026/03/22 06:24:17 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":12.353148288149844,"throughput_eps":0,"last_update":"2026-03-22T06:24:12.479721484Z"} +2026/03/22 06:24:17 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":314.661378629355,"throughput_eps":0,"last_update":"2026-03-22T06:24:12.479831524Z"} +2026/03/22 06:24:17 [log_collector] {"stage_name":"log_collector","events_processed":2468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":493.6,"last_update":"2026-03-22T06:24:12.368904517Z"} +2026/03/22 06:24:17 ───────────────────────────────────────────────── +2026/03/22 06:24:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:24:22 [metric_collector] {"stage_name":"metric_collector","events_processed":1369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":273.8,"last_update":"2026-03-22T06:24:17.368968008Z"} +2026/03/22 06:24:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:24:17.377566392Z"} +2026/03/22 06:24:22 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":12.353148288149844,"throughput_eps":0,"last_update":"2026-03-22T06:24:17.479773061Z"} +2026/03/22 06:24:22 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":314.661378629355,"throughput_eps":0,"last_update":"2026-03-22T06:24:17.479801116Z"} +2026/03/22 06:24:22 [log_collector] {"stage_name":"log_collector","events_processed":2468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":493.6,"last_update":"2026-03-22T06:24:17.368598029Z"} +2026/03/22 06:24:22 ───────────────────────────────────────────────── +2026/03/22 06:24:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:24:27 [log_collector] {"stage_name":"log_collector","events_processed":2468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":493.6,"last_update":"2026-03-22T06:24:27.368506628Z"} +2026/03/22 06:24:27 [metric_collector] {"stage_name":"metric_collector","events_processed":1374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":274.8,"last_update":"2026-03-22T06:24:22.368457827Z"} +2026/03/22 06:24:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:24:22.377008639Z"} +2026/03/22 06:24:27 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":12.353148288149844,"throughput_eps":0,"last_update":"2026-03-22T06:24:22.479194108Z"} +2026/03/22 06:24:27 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":314.661378629355,"throughput_eps":0,"last_update":"2026-03-22T06:24:22.479214857Z"} +2026/03/22 06:24:27 ───────────────────────────────────────────────── +2026/03/22 06:24:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:24:32 [log_collector] {"stage_name":"log_collector","events_processed":2468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":493.6,"last_update":"2026-03-22T06:24:32.36850499Z"} +2026/03/22 06:24:32 [metric_collector] {"stage_name":"metric_collector","events_processed":1379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":275.8,"last_update":"2026-03-22T06:24:27.369032866Z"} +2026/03/22 06:24:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:24:27.377392201Z"} +2026/03/22 06:24:32 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":12.353148288149844,"throughput_eps":0,"last_update":"2026-03-22T06:24:27.479593668Z"} +2026/03/22 06:24:32 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":263.807950703484,"throughput_eps":0,"last_update":"2026-03-22T06:24:27.540019508Z"} +2026/03/22 06:24:32 ───────────────────────────────────────────────── +2026/03/22 06:24:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:24:37 [metric_collector] {"stage_name":"metric_collector","events_processed":1384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":276.8,"last_update":"2026-03-22T06:24:32.368544957Z"} +2026/03/22 06:24:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:24:32.377675169Z"} +2026/03/22 06:24:37 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":13.000161430519876,"throughput_eps":0,"last_update":"2026-03-22T06:24:32.479850194Z"} +2026/03/22 06:24:37 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":263.807950703484,"throughput_eps":0,"last_update":"2026-03-22T06:24:32.479862569Z"} +2026/03/22 06:24:37 [log_collector] {"stage_name":"log_collector","events_processed":2468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":493.6,"last_update":"2026-03-22T06:24:32.36850499Z"} +2026/03/22 06:24:37 ───────────────────────────────────────────────── +2026/03/22 06:24:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:24:42 [log_collector] {"stage_name":"log_collector","events_processed":2468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":493.6,"last_update":"2026-03-22T06:24:42.368052674Z"} +2026/03/22 06:24:42 [metric_collector] {"stage_name":"metric_collector","events_processed":1389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":277.8,"last_update":"2026-03-22T06:24:37.369306352Z"} +2026/03/22 06:24:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:24:37.377122526Z"} +2026/03/22 06:24:42 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":13.000161430519876,"throughput_eps":0,"last_update":"2026-03-22T06:24:37.479339651Z"} +2026/03/22 06:24:42 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":263.807950703484,"throughput_eps":0,"last_update":"2026-03-22T06:24:37.47936001Z"} +2026/03/22 06:24:42 ───────────────────────────────────────────────── +2026/03/22 06:24:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:24:47 [metric_collector] {"stage_name":"metric_collector","events_processed":1394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":278.8,"last_update":"2026-03-22T06:24:42.368760641Z"} +2026/03/22 06:24:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":560,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:24:42.378252637Z"} +2026/03/22 06:24:47 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":13.000161430519876,"throughput_eps":0,"last_update":"2026-03-22T06:24:42.47946193Z"} +2026/03/22 06:24:47 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":263.807950703484,"throughput_eps":0,"last_update":"2026-03-22T06:24:42.479487168Z"} +2026/03/22 06:24:47 [log_collector] {"stage_name":"log_collector","events_processed":2468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":493.6,"last_update":"2026-03-22T06:24:42.368052674Z"} +2026/03/22 06:24:47 ───────────────────────────────────────────────── +Saved state: 11 clusters, 2469 messages, reason: none +2026/03/22 06:24:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:24:52 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":13.000161430519876,"throughput_eps":0,"last_update":"2026-03-22T06:24:47.479135469Z"} +2026/03/22 06:24:52 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":263.807950703484,"throughput_eps":0,"last_update":"2026-03-22T06:24:47.479148865Z"} +2026/03/22 06:24:52 [log_collector] {"stage_name":"log_collector","events_processed":2468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":493.6,"last_update":"2026-03-22T06:24:47.368734598Z"} +2026/03/22 06:24:52 [metric_collector] {"stage_name":"metric_collector","events_processed":1399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":279.8,"last_update":"2026-03-22T06:24:47.369124305Z"} +2026/03/22 06:24:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:24:47.376905974Z"} +2026/03/22 06:24:52 ───────────────────────────────────────────────── +2026/03/22 06:24:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:24:57 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":13.000161430519876,"throughput_eps":0,"last_update":"2026-03-22T06:24:52.479975623Z"} +2026/03/22 06:24:57 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":263.807950703484,"throughput_eps":0,"last_update":"2026-03-22T06:24:52.478887778Z"} +2026/03/22 06:24:57 [log_collector] {"stage_name":"log_collector","events_processed":2473,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":494.6,"last_update":"2026-03-22T06:24:52.368877236Z"} +2026/03/22 06:24:57 [metric_collector] {"stage_name":"metric_collector","events_processed":1404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":280.8,"last_update":"2026-03-22T06:24:52.369149928Z"} +2026/03/22 06:24:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:24:52.37583734Z"} +2026/03/22 06:24:57 ───────────────────────────────────────────────── +2026/03/22 06:25:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:25:02 [log_collector] {"stage_name":"log_collector","events_processed":2473,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":494.6,"last_update":"2026-03-22T06:24:57.368909947Z"} +2026/03/22 06:25:02 [metric_collector] {"stage_name":"metric_collector","events_processed":1409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":281.8,"last_update":"2026-03-22T06:24:57.369398673Z"} +2026/03/22 06:25:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":566,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:24:57.375776291Z"} +2026/03/22 06:25:02 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":13.000161430519876,"throughput_eps":0,"last_update":"2026-03-22T06:24:57.480035976Z"} +2026/03/22 06:25:02 [transform_engine] {"stage_name":"transform_engine","events_processed":47,"events_dropped":0,"avg_latency_ms":625.2167755627872,"throughput_eps":0,"last_update":"2026-03-22T06:24:59.549750612Z"} +2026/03/22 06:25:02 ───────────────────────────────────────────────── +2026/03/22 06:25:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:25:07 [log_collector] {"stage_name":"log_collector","events_processed":2473,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":494.6,"last_update":"2026-03-22T06:25:07.368220197Z"} +2026/03/22 06:25:07 [metric_collector] {"stage_name":"metric_collector","events_processed":1414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":282.8,"last_update":"2026-03-22T06:25:02.368206449Z"} +2026/03/22 06:25:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:25:02.382502107Z"} +2026/03/22 06:25:07 [detection_layer] {"stage_name":"detection_layer","events_processed":47,"events_dropped":0,"avg_latency_ms":11.8989907444159,"throughput_eps":0,"last_update":"2026-03-22T06:25:02.47975179Z"} +2026/03/22 06:25:07 [transform_engine] {"stage_name":"transform_engine","events_processed":47,"events_dropped":0,"avg_latency_ms":625.2167755627872,"throughput_eps":0,"last_update":"2026-03-22T06:25:02.479774444Z"} +2026/03/22 06:25:07 ───────────────────────────────────────────────── +2026/03/22 06:25:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:25:12 [log_collector] {"stage_name":"log_collector","events_processed":2473,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":494.6,"last_update":"2026-03-22T06:25:07.368220197Z"} +2026/03/22 06:25:12 [metric_collector] {"stage_name":"metric_collector","events_processed":1419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":283.8,"last_update":"2026-03-22T06:25:07.368557163Z"} +2026/03/22 06:25:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":570,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:25:07.375989863Z"} +2026/03/22 06:25:12 [detection_layer] {"stage_name":"detection_layer","events_processed":47,"events_dropped":0,"avg_latency_ms":11.8989907444159,"throughput_eps":0,"last_update":"2026-03-22T06:25:07.479169676Z"} +2026/03/22 06:25:12 [transform_engine] {"stage_name":"transform_engine","events_processed":47,"events_dropped":0,"avg_latency_ms":625.2167755627872,"throughput_eps":0,"last_update":"2026-03-22T06:25:07.479196507Z"} +2026/03/22 06:25:12 ───────────────────────────────────────────────── +2026/03/22 06:25:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:25:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":572,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:25:12.377329463Z"} +2026/03/22 06:25:17 [detection_layer] {"stage_name":"detection_layer","events_processed":47,"events_dropped":0,"avg_latency_ms":11.8989907444159,"throughput_eps":0,"last_update":"2026-03-22T06:25:12.479968329Z"} +2026/03/22 06:25:17 [transform_engine] {"stage_name":"transform_engine","events_processed":47,"events_dropped":0,"avg_latency_ms":625.2167755627872,"throughput_eps":0,"last_update":"2026-03-22T06:25:12.478891407Z"} +2026/03/22 06:25:17 [log_collector] {"stage_name":"log_collector","events_processed":2473,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":494.6,"last_update":"2026-03-22T06:25:12.370469Z"} +2026/03/22 06:25:17 [metric_collector] {"stage_name":"metric_collector","events_processed":1424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":284.8,"last_update":"2026-03-22T06:25:12.370767862Z"} +2026/03/22 06:25:17 ───────────────────────────────────────────────── +2026/03/22 06:25:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:25:22 [log_collector] {"stage_name":"log_collector","events_processed":2473,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":494.6,"last_update":"2026-03-22T06:25:22.368698849Z"} +2026/03/22 06:25:22 [metric_collector] {"stage_name":"metric_collector","events_processed":1429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":285.8,"last_update":"2026-03-22T06:25:17.368336013Z"} +2026/03/22 06:25:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:25:17.375362904Z"} +2026/03/22 06:25:22 [detection_layer] {"stage_name":"detection_layer","events_processed":47,"events_dropped":0,"avg_latency_ms":11.8989907444159,"throughput_eps":0,"last_update":"2026-03-22T06:25:17.479590633Z"} +2026/03/22 06:25:22 [transform_engine] {"stage_name":"transform_engine","events_processed":47,"events_dropped":0,"avg_latency_ms":625.2167755627872,"throughput_eps":0,"last_update":"2026-03-22T06:25:17.479565435Z"} +2026/03/22 06:25:22 ───────────────────────────────────────────────── +2026/03/22 06:25:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:25:27 [detection_layer] {"stage_name":"detection_layer","events_processed":47,"events_dropped":0,"avg_latency_ms":11.8989907444159,"throughput_eps":0,"last_update":"2026-03-22T06:25:22.480370227Z"} +2026/03/22 06:25:27 [transform_engine] {"stage_name":"transform_engine","events_processed":47,"events_dropped":0,"avg_latency_ms":625.2167755627872,"throughput_eps":0,"last_update":"2026-03-22T06:25:22.479039388Z"} +2026/03/22 06:25:27 [log_collector] {"stage_name":"log_collector","events_processed":2473,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":494.6,"last_update":"2026-03-22T06:25:22.368698849Z"} +2026/03/22 06:25:27 [metric_collector] {"stage_name":"metric_collector","events_processed":1434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":286.8,"last_update":"2026-03-22T06:25:22.369041877Z"} +2026/03/22 06:25:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":576,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:25:22.378863863Z"} +2026/03/22 06:25:27 ───────────────────────────────────────────────── +2026/03/22 06:25:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:25:32 [log_collector] {"stage_name":"log_collector","events_processed":2473,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":494.6,"last_update":"2026-03-22T06:25:27.368844455Z"} +2026/03/22 06:25:32 [metric_collector] {"stage_name":"metric_collector","events_processed":1444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":288.8,"last_update":"2026-03-22T06:25:32.368327626Z"} +2026/03/22 06:25:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:25:27.37568554Z"} +2026/03/22 06:25:32 [detection_layer] {"stage_name":"detection_layer","events_processed":47,"events_dropped":0,"avg_latency_ms":11.8989907444159,"throughput_eps":0,"last_update":"2026-03-22T06:25:27.479868021Z"} +2026/03/22 06:25:32 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":517.8792608502298,"throughput_eps":0,"last_update":"2026-03-22T06:25:27.568419275Z"} +2026/03/22 06:25:32 ───────────────────────────────────────────────── +2026/03/22 06:25:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:25:37 [log_collector] {"stage_name":"log_collector","events_processed":2473,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":494.6,"last_update":"2026-03-22T06:25:32.368368734Z"} +2026/03/22 06:25:37 [metric_collector] {"stage_name":"metric_collector","events_processed":1444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":288.8,"last_update":"2026-03-22T06:25:32.368327626Z"} +2026/03/22 06:25:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":580,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:25:32.37568Z"} +2026/03/22 06:25:37 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":11.83098939553272,"throughput_eps":0,"last_update":"2026-03-22T06:25:32.479906254Z"} +2026/03/22 06:25:37 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":517.8792608502298,"throughput_eps":0,"last_update":"2026-03-22T06:25:32.479862571Z"} +2026/03/22 06:25:37 ───────────────────────────────────────────────── +2026/03/22 06:25:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:25:42 [log_collector] {"stage_name":"log_collector","events_processed":2482,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":496.4,"last_update":"2026-03-22T06:25:37.368810236Z"} +2026/03/22 06:25:42 [metric_collector] {"stage_name":"metric_collector","events_processed":1449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":289.8,"last_update":"2026-03-22T06:25:37.368922973Z"} +2026/03/22 06:25:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:25:37.378182671Z"} +2026/03/22 06:25:42 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":11.83098939553272,"throughput_eps":0,"last_update":"2026-03-22T06:25:37.479381806Z"} +2026/03/22 06:25:42 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":517.8792608502298,"throughput_eps":0,"last_update":"2026-03-22T06:25:37.479394079Z"} +2026/03/22 06:25:42 ───────────────────────────────────────────────── +2026/03/22 06:25:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:25:47 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":517.8792608502298,"throughput_eps":0,"last_update":"2026-03-22T06:25:42.479090007Z"} +2026/03/22 06:25:47 [log_collector] {"stage_name":"log_collector","events_processed":2514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":502.8,"last_update":"2026-03-22T06:25:42.369468399Z"} +2026/03/22 06:25:47 [metric_collector] {"stage_name":"metric_collector","events_processed":1454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":290.8,"last_update":"2026-03-22T06:25:42.369624207Z"} +2026/03/22 06:25:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:25:42.377164212Z"} +2026/03/22 06:25:47 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":11.83098939553272,"throughput_eps":0,"last_update":"2026-03-22T06:25:42.479080118Z"} +2026/03/22 06:25:47 ───────────────────────────────────────────────── +2026/03/22 06:25:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:25:52 [metric_collector] {"stage_name":"metric_collector","events_processed":1459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":291.8,"last_update":"2026-03-22T06:25:47.36870321Z"} +2026/03/22 06:25:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":586,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:25:47.377057375Z"} +2026/03/22 06:25:52 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":11.83098939553272,"throughput_eps":0,"last_update":"2026-03-22T06:25:47.479581445Z"} +2026/03/22 06:25:52 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":517.8792608502298,"throughput_eps":0,"last_update":"2026-03-22T06:25:47.479502653Z"} +2026/03/22 06:25:52 [log_collector] {"stage_name":"log_collector","events_processed":2785,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":557,"last_update":"2026-03-22T06:25:47.368338762Z"} +2026/03/22 06:25:52 ───────────────────────────────────────────────── +2026/03/22 06:25:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:25:57 [log_collector] {"stage_name":"log_collector","events_processed":2836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":567.2,"last_update":"2026-03-22T06:25:52.368071985Z"} +2026/03/22 06:25:57 [metric_collector] {"stage_name":"metric_collector","events_processed":1464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":292.8,"last_update":"2026-03-22T06:25:52.368656546Z"} +2026/03/22 06:25:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":588,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:25:52.377332305Z"} +2026/03/22 06:25:57 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":11.83098939553272,"throughput_eps":0,"last_update":"2026-03-22T06:25:52.479542363Z"} +2026/03/22 06:25:57 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":517.8792608502298,"throughput_eps":0,"last_update":"2026-03-22T06:25:52.479495292Z"} +2026/03/22 06:25:57 ───────────────────────────────────────────────── +Saved state: 11 clusters, 2837 messages, reason: none +2026/03/22 06:26:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:26:02 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":440.34621148018385,"throughput_eps":0,"last_update":"2026-03-22T06:25:57.609726911Z"} +2026/03/22 06:26:02 [log_collector] {"stage_name":"log_collector","events_processed":2836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":567.2,"last_update":"2026-03-22T06:25:57.368503914Z"} +2026/03/22 06:26:02 [metric_collector] {"stage_name":"metric_collector","events_processed":1469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":293.8,"last_update":"2026-03-22T06:25:57.368969226Z"} +2026/03/22 06:26:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:25:57.377211335Z"} +2026/03/22 06:26:02 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":11.83098939553272,"throughput_eps":0,"last_update":"2026-03-22T06:25:57.480423762Z"} +2026/03/22 06:26:02 ───────────────────────────────────────────────── +2026/03/22 06:26:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:26:07 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":11.952940116426177,"throughput_eps":0,"last_update":"2026-03-22T06:26:02.479950141Z"} +2026/03/22 06:26:07 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":440.34621148018385,"throughput_eps":0,"last_update":"2026-03-22T06:26:02.478867808Z"} +2026/03/22 06:26:07 [log_collector] {"stage_name":"log_collector","events_processed":2839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":567.8,"last_update":"2026-03-22T06:26:02.36799134Z"} +2026/03/22 06:26:07 [metric_collector] {"stage_name":"metric_collector","events_processed":1474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":294.8,"last_update":"2026-03-22T06:26:02.368177948Z"} +2026/03/22 06:26:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":592,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:26:02.376742595Z"} +2026/03/22 06:26:07 ───────────────────────────────────────────────── +2026/03/22 06:26:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:26:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:26:07.378108999Z"} +2026/03/22 06:26:12 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":11.952940116426177,"throughput_eps":0,"last_update":"2026-03-22T06:26:07.479117251Z"} +2026/03/22 06:26:12 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":440.34621148018385,"throughput_eps":0,"last_update":"2026-03-22T06:26:07.479095589Z"} +2026/03/22 06:26:12 [log_collector] {"stage_name":"log_collector","events_processed":2839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":567.8,"last_update":"2026-03-22T06:26:07.368530068Z"} +2026/03/22 06:26:12 [metric_collector] {"stage_name":"metric_collector","events_processed":1479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":295.8,"last_update":"2026-03-22T06:26:07.368615792Z"} +2026/03/22 06:26:12 ───────────────────────────────────────────────── +2026/03/22 06:26:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:26:17 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":440.34621148018385,"throughput_eps":0,"last_update":"2026-03-22T06:26:12.479111131Z"} +2026/03/22 06:26:17 [log_collector] {"stage_name":"log_collector","events_processed":2866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":573.2,"last_update":"2026-03-22T06:26:17.368637748Z"} +2026/03/22 06:26:17 [metric_collector] {"stage_name":"metric_collector","events_processed":1484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":296.8,"last_update":"2026-03-22T06:26:12.368925028Z"} +2026/03/22 06:26:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:26:12.377896123Z"} +2026/03/22 06:26:17 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":11.952940116426177,"throughput_eps":0,"last_update":"2026-03-22T06:26:12.47915735Z"} +2026/03/22 06:26:17 ───────────────────────────────────────────────── +2026/03/22 06:26:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:26:22 [log_collector] {"stage_name":"log_collector","events_processed":2866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":573.2,"last_update":"2026-03-22T06:26:17.368637748Z"} +2026/03/22 06:26:22 [metric_collector] {"stage_name":"metric_collector","events_processed":1489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":297.8,"last_update":"2026-03-22T06:26:17.369083322Z"} +2026/03/22 06:26:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:26:17.378142997Z"} +2026/03/22 06:26:22 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":11.952940116426177,"throughput_eps":0,"last_update":"2026-03-22T06:26:17.479593635Z"} +2026/03/22 06:26:22 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":440.34621148018385,"throughput_eps":0,"last_update":"2026-03-22T06:26:17.479628994Z"} +2026/03/22 06:26:22 ───────────────────────────────────────────────── +2026/03/22 06:26:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:26:27 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":11.952940116426177,"throughput_eps":0,"last_update":"2026-03-22T06:26:22.479887238Z"} +2026/03/22 06:26:27 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":440.34621148018385,"throughput_eps":0,"last_update":"2026-03-22T06:26:22.479933657Z"} +2026/03/22 06:26:27 [log_collector] {"stage_name":"log_collector","events_processed":2866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":573.2,"last_update":"2026-03-22T06:26:27.368314841Z"} +2026/03/22 06:26:27 [metric_collector] {"stage_name":"metric_collector","events_processed":1494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":298.8,"last_update":"2026-03-22T06:26:22.368337625Z"} +2026/03/22 06:26:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:26:27.368254605Z"} +2026/03/22 06:26:27 ───────────────────────────────────────────────── +2026/03/22 06:26:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:26:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:26:27.368254605Z"} +2026/03/22 06:26:32 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":11.952940116426177,"throughput_eps":0,"last_update":"2026-03-22T06:26:27.47898609Z"} +2026/03/22 06:26:32 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":374.5310107841471,"throughput_eps":0,"last_update":"2026-03-22T06:26:27.590122212Z"} +2026/03/22 06:26:32 [log_collector] {"stage_name":"log_collector","events_processed":2866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":573.2,"last_update":"2026-03-22T06:26:27.368314841Z"} +2026/03/22 06:26:32 [metric_collector] {"stage_name":"metric_collector","events_processed":1499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":299.8,"last_update":"2026-03-22T06:26:27.368608884Z"} +2026/03/22 06:26:32 ───────────────────────────────────────────────── +2026/03/22 06:26:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:26:37 [log_collector] {"stage_name":"log_collector","events_processed":2866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":573.2,"last_update":"2026-03-22T06:26:32.368149935Z"} +2026/03/22 06:26:37 [metric_collector] {"stage_name":"metric_collector","events_processed":1504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":300.8,"last_update":"2026-03-22T06:26:32.368345579Z"} +2026/03/22 06:26:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:26:32.377341582Z"} +2026/03/22 06:26:37 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":12.385257893140944,"throughput_eps":0,"last_update":"2026-03-22T06:26:32.479552865Z"} +2026/03/22 06:26:37 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":374.5310107841471,"throughput_eps":0,"last_update":"2026-03-22T06:26:32.479584957Z"} +2026/03/22 06:26:37 ───────────────────────────────────────────────── +2026/03/22 06:26:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:26:42 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":374.5310107841471,"throughput_eps":0,"last_update":"2026-03-22T06:26:37.478907749Z"} +2026/03/22 06:26:42 [log_collector] {"stage_name":"log_collector","events_processed":2866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":573.2,"last_update":"2026-03-22T06:26:37.368035384Z"} +2026/03/22 06:26:42 [metric_collector] {"stage_name":"metric_collector","events_processed":1509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":301.8,"last_update":"2026-03-22T06:26:37.368527036Z"} +2026/03/22 06:26:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:26:37.375630845Z"} +2026/03/22 06:26:42 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":12.385257893140944,"throughput_eps":0,"last_update":"2026-03-22T06:26:37.478966702Z"} +2026/03/22 06:26:42 ───────────────────────────────────────────────── +2026/03/22 06:26:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:26:47 [log_collector] {"stage_name":"log_collector","events_processed":2866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":573.2,"last_update":"2026-03-22T06:26:42.368861408Z"} +2026/03/22 06:26:47 [metric_collector] {"stage_name":"metric_collector","events_processed":1514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":302.8,"last_update":"2026-03-22T06:26:42.369111368Z"} +2026/03/22 06:26:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:26:42.377472945Z"} +2026/03/22 06:26:47 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":12.385257893140944,"throughput_eps":0,"last_update":"2026-03-22T06:26:42.478950611Z"} +2026/03/22 06:26:47 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":374.5310107841471,"throughput_eps":0,"last_update":"2026-03-22T06:26:42.478933959Z"} +2026/03/22 06:26:47 ───────────────────────────────────────────────── +2026/03/22 06:26:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:26:52 [log_collector] {"stage_name":"log_collector","events_processed":2866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":573.2,"last_update":"2026-03-22T06:26:52.368485804Z"} +2026/03/22 06:26:52 [metric_collector] {"stage_name":"metric_collector","events_processed":1519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":303.8,"last_update":"2026-03-22T06:26:47.369477501Z"} +2026/03/22 06:26:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:26:47.377276191Z"} +2026/03/22 06:26:52 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":12.385257893140944,"throughput_eps":0,"last_update":"2026-03-22T06:26:47.479543508Z"} +2026/03/22 06:26:52 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":374.5310107841471,"throughput_eps":0,"last_update":"2026-03-22T06:26:47.479588385Z"} +2026/03/22 06:26:52 ───────────────────────────────────────────────── +2026/03/22 06:26:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:26:57 [log_collector] {"stage_name":"log_collector","events_processed":2866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":573.2,"last_update":"2026-03-22T06:26:52.368485804Z"} +2026/03/22 06:26:57 [metric_collector] {"stage_name":"metric_collector","events_processed":1524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":304.8,"last_update":"2026-03-22T06:26:52.369306666Z"} +2026/03/22 06:26:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:26:52.37718599Z"} +2026/03/22 06:26:57 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":12.385257893140944,"throughput_eps":0,"last_update":"2026-03-22T06:26:52.479417489Z"} +2026/03/22 06:26:57 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":374.5310107841471,"throughput_eps":0,"last_update":"2026-03-22T06:26:52.47945976Z"} +2026/03/22 06:26:57 ───────────────────────────────────────────────── +2026/03/22 06:27:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:27:02 [log_collector] {"stage_name":"log_collector","events_processed":2866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":573.2,"last_update":"2026-03-22T06:26:57.36842985Z"} +2026/03/22 06:27:02 [metric_collector] {"stage_name":"metric_collector","events_processed":1529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":305.8,"last_update":"2026-03-22T06:26:57.368788888Z"} +2026/03/22 06:27:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:26:57.377548337Z"} +2026/03/22 06:27:02 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":12.385257893140944,"throughput_eps":0,"last_update":"2026-03-22T06:26:57.47985041Z"} +2026/03/22 06:27:02 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":314.5350372273177,"throughput_eps":0,"last_update":"2026-03-22T06:26:57.554339263Z"} +2026/03/22 06:27:02 ───────────────────────────────────────────────── +2026/03/22 06:27:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:27:07 [metric_collector] {"stage_name":"metric_collector","events_processed":1534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":306.8,"last_update":"2026-03-22T06:27:02.368453773Z"} +2026/03/22 06:27:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:27:02.376836291Z"} +2026/03/22 06:27:07 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":13.190157314512756,"throughput_eps":0,"last_update":"2026-03-22T06:27:02.479101322Z"} +2026/03/22 06:27:07 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":314.5350372273177,"throughput_eps":0,"last_update":"2026-03-22T06:27:02.479112885Z"} +2026/03/22 06:27:07 [log_collector] {"stage_name":"log_collector","events_processed":2866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":573.2,"last_update":"2026-03-22T06:27:02.368234062Z"} +2026/03/22 06:27:07 ───────────────────────────────────────────────── +2026/03/22 06:27:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:27:12 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":13.190157314512756,"throughput_eps":0,"last_update":"2026-03-22T06:27:07.479468153Z"} +2026/03/22 06:27:12 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":314.5350372273177,"throughput_eps":0,"last_update":"2026-03-22T06:27:07.479479876Z"} +2026/03/22 06:27:12 [log_collector] {"stage_name":"log_collector","events_processed":2866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":573.2,"last_update":"2026-03-22T06:27:07.3688753Z"} +2026/03/22 06:27:12 [metric_collector] {"stage_name":"metric_collector","events_processed":1539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":307.8,"last_update":"2026-03-22T06:27:07.369279665Z"} +2026/03/22 06:27:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:27:07.378304712Z"} +2026/03/22 06:27:12 ───────────────────────────────────────────────── +2026/03/22 06:27:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:27:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":620,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:27:12.37720634Z"} +2026/03/22 06:27:17 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":13.190157314512756,"throughput_eps":0,"last_update":"2026-03-22T06:27:12.479417637Z"} +2026/03/22 06:27:17 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":314.5350372273177,"throughput_eps":0,"last_update":"2026-03-22T06:27:12.47943463Z"} +2026/03/22 06:27:17 [log_collector] {"stage_name":"log_collector","events_processed":2866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":573.2,"last_update":"2026-03-22T06:27:12.368209095Z"} +2026/03/22 06:27:17 [metric_collector] {"stage_name":"metric_collector","events_processed":1544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":308.8,"last_update":"2026-03-22T06:27:12.368736456Z"} +2026/03/22 06:27:17 ───────────────────────────────────────────────── +2026/03/22 06:27:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:27:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":622,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:27:17.378603973Z"} +2026/03/22 06:27:22 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":13.190157314512756,"throughput_eps":0,"last_update":"2026-03-22T06:27:17.48003292Z"} +2026/03/22 06:27:22 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":314.5350372273177,"throughput_eps":0,"last_update":"2026-03-22T06:27:17.478819175Z"} +2026/03/22 06:27:22 [log_collector] {"stage_name":"log_collector","events_processed":2866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":573.2,"last_update":"2026-03-22T06:27:17.368410305Z"} +2026/03/22 06:27:22 [metric_collector] {"stage_name":"metric_collector","events_processed":1549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":309.8,"last_update":"2026-03-22T06:27:17.368872942Z"} +2026/03/22 06:27:22 ───────────────────────────────────────────────── +2026/03/22 06:27:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:27:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:27:22.377618Z"} +2026/03/22 06:27:27 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":13.190157314512756,"throughput_eps":0,"last_update":"2026-03-22T06:27:22.479828174Z"} +2026/03/22 06:27:27 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":314.5350372273177,"throughput_eps":0,"last_update":"2026-03-22T06:27:22.479841278Z"} +2026/03/22 06:27:27 [log_collector] {"stage_name":"log_collector","events_processed":2866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":573.2,"last_update":"2026-03-22T06:27:22.368656875Z"} +2026/03/22 06:27:27 [metric_collector] {"stage_name":"metric_collector","events_processed":1554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":310.8,"last_update":"2026-03-22T06:27:22.368879221Z"} +2026/03/22 06:27:27 ───────────────────────────────────────────────── +Saved state: 11 clusters, 2867 messages, reason: none +2026/03/22 06:27:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:27:32 [metric_collector] {"stage_name":"metric_collector","events_processed":1559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":311.8,"last_update":"2026-03-22T06:27:27.368674741Z"} +2026/03/22 06:27:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:27:27.377866128Z"} +2026/03/22 06:27:32 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":13.190157314512756,"throughput_eps":0,"last_update":"2026-03-22T06:27:27.47915267Z"} +2026/03/22 06:27:32 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":264.64270838185416,"throughput_eps":0,"last_update":"2026-03-22T06:27:27.544010862Z"} +2026/03/22 06:27:32 [log_collector] {"stage_name":"log_collector","events_processed":2866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":573.2,"last_update":"2026-03-22T06:27:27.368193048Z"} +2026/03/22 06:27:32 ───────────────────────────────────────────────── +2026/03/22 06:27:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:27:37 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":13.732476051610206,"throughput_eps":0,"last_update":"2026-03-22T06:27:32.478989572Z"} +2026/03/22 06:27:37 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":264.64270838185416,"throughput_eps":0,"last_update":"2026-03-22T06:27:32.479024921Z"} +2026/03/22 06:27:37 [log_collector] {"stage_name":"log_collector","events_processed":2880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":576,"last_update":"2026-03-22T06:27:37.368392765Z"} +2026/03/22 06:27:37 [metric_collector] {"stage_name":"metric_collector","events_processed":1564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":312.8,"last_update":"2026-03-22T06:27:32.368256355Z"} +2026/03/22 06:27:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:27:32.377784808Z"} +2026/03/22 06:27:37 ───────────────────────────────────────────────── +2026/03/22 06:27:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:27:42 [metric_collector] {"stage_name":"metric_collector","events_processed":1569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":313.8,"last_update":"2026-03-22T06:27:37.368784215Z"} +2026/03/22 06:27:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:27:37.378275777Z"} +2026/03/22 06:27:42 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":13.732476051610206,"throughput_eps":0,"last_update":"2026-03-22T06:27:37.479464461Z"} +2026/03/22 06:27:42 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":264.64270838185416,"throughput_eps":0,"last_update":"2026-03-22T06:27:37.479476896Z"} +2026/03/22 06:27:42 [log_collector] {"stage_name":"log_collector","events_processed":2880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":576,"last_update":"2026-03-22T06:27:37.368392765Z"} +2026/03/22 06:27:42 ───────────────────────────────────────────────── +2026/03/22 06:27:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:27:47 [log_collector] {"stage_name":"log_collector","events_processed":2880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":576,"last_update":"2026-03-22T06:27:42.36802646Z"} +2026/03/22 06:27:47 [metric_collector] {"stage_name":"metric_collector","events_processed":1574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":314.8,"last_update":"2026-03-22T06:27:42.368577916Z"} +2026/03/22 06:27:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":632,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:27:42.37744944Z"} +2026/03/22 06:27:47 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":13.732476051610206,"throughput_eps":0,"last_update":"2026-03-22T06:27:42.479663538Z"} +2026/03/22 06:27:47 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":264.64270838185416,"throughput_eps":0,"last_update":"2026-03-22T06:27:42.479677083Z"} +2026/03/22 06:27:47 ───────────────────────────────────────────────── +2026/03/22 06:27:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:27:52 [log_collector] {"stage_name":"log_collector","events_processed":2880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":576,"last_update":"2026-03-22T06:27:47.368646578Z"} +2026/03/22 06:27:52 [metric_collector] {"stage_name":"metric_collector","events_processed":1579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":315.8,"last_update":"2026-03-22T06:27:47.368627251Z"} +2026/03/22 06:27:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:27:47.377047592Z"} +2026/03/22 06:27:52 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":13.732476051610206,"throughput_eps":0,"last_update":"2026-03-22T06:27:47.479271487Z"} +2026/03/22 06:27:52 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":264.64270838185416,"throughput_eps":0,"last_update":"2026-03-22T06:27:47.479284943Z"} +2026/03/22 06:27:52 ───────────────────────────────────────────────── +2026/03/22 06:27:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:27:57 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":13.732476051610206,"throughput_eps":0,"last_update":"2026-03-22T06:27:52.479259471Z"} +2026/03/22 06:27:57 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":264.64270838185416,"throughput_eps":0,"last_update":"2026-03-22T06:27:52.479273066Z"} +2026/03/22 06:27:57 [log_collector] {"stage_name":"log_collector","events_processed":2880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":576,"last_update":"2026-03-22T06:27:52.367965521Z"} +2026/03/22 06:27:57 [metric_collector] {"stage_name":"metric_collector","events_processed":1584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":316.8,"last_update":"2026-03-22T06:27:52.368393922Z"} +2026/03/22 06:27:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:27:52.378026574Z"} +2026/03/22 06:27:57 ───────────────────────────────────────────────── +2026/03/22 06:28:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:28:02 [log_collector] {"stage_name":"log_collector","events_processed":2880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":576,"last_update":"2026-03-22T06:28:02.368089227Z"} +2026/03/22 06:28:02 [metric_collector] {"stage_name":"metric_collector","events_processed":1589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":317.8,"last_update":"2026-03-22T06:27:57.368406537Z"} +2026/03/22 06:28:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:27:57.378051963Z"} +2026/03/22 06:28:02 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":13.732476051610206,"throughput_eps":0,"last_update":"2026-03-22T06:27:57.479337881Z"} +2026/03/22 06:28:02 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":236.66858010548333,"throughput_eps":0,"last_update":"2026-03-22T06:27:57.604122902Z"} +2026/03/22 06:28:02 ───────────────────────────────────────────────── +2026/03/22 06:28:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:28:07 [log_collector] {"stage_name":"log_collector","events_processed":2880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":576,"last_update":"2026-03-22T06:28:07.368424472Z"} +2026/03/22 06:28:07 [metric_collector] {"stage_name":"metric_collector","events_processed":1594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":318.8,"last_update":"2026-03-22T06:28:02.368608271Z"} +2026/03/22 06:28:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":640,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:28:02.378073282Z"} +2026/03/22 06:28:07 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":13.753412041288167,"throughput_eps":0,"last_update":"2026-03-22T06:28:02.479218269Z"} +2026/03/22 06:28:07 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":236.66858010548333,"throughput_eps":0,"last_update":"2026-03-22T06:28:02.47922974Z"} +2026/03/22 06:28:07 ───────────────────────────────────────────────── +2026/03/22 06:28:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:28:12 [log_collector] {"stage_name":"log_collector","events_processed":2880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":576,"last_update":"2026-03-22T06:28:07.368424472Z"} +2026/03/22 06:28:12 [metric_collector] {"stage_name":"metric_collector","events_processed":1599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":319.8,"last_update":"2026-03-22T06:28:07.368801574Z"} +2026/03/22 06:28:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:28:07.378188055Z"} +2026/03/22 06:28:12 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":13.753412041288167,"throughput_eps":0,"last_update":"2026-03-22T06:28:07.47941132Z"} +2026/03/22 06:28:12 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":236.66858010548333,"throughput_eps":0,"last_update":"2026-03-22T06:28:07.479422102Z"} +2026/03/22 06:28:12 ───────────────────────────────────────────────── +2026/03/22 06:28:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:28:17 [log_collector] {"stage_name":"log_collector","events_processed":2880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":576,"last_update":"2026-03-22T06:28:12.36797493Z"} +2026/03/22 06:28:17 [metric_collector] {"stage_name":"metric_collector","events_processed":1604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":320.8,"last_update":"2026-03-22T06:28:12.368560021Z"} +2026/03/22 06:28:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:28:12.37719421Z"} +2026/03/22 06:28:17 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":13.753412041288167,"throughput_eps":0,"last_update":"2026-03-22T06:28:12.479390419Z"} +2026/03/22 06:28:17 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":236.66858010548333,"throughput_eps":0,"last_update":"2026-03-22T06:28:12.479403574Z"} +2026/03/22 06:28:17 ───────────────────────────────────────────────── +2026/03/22 06:28:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:28:22 [log_collector] {"stage_name":"log_collector","events_processed":2880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":576,"last_update":"2026-03-22T06:28:17.368714877Z"} +2026/03/22 06:28:22 [metric_collector] {"stage_name":"metric_collector","events_processed":1609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":321.8,"last_update":"2026-03-22T06:28:17.369174056Z"} +2026/03/22 06:28:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":646,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:28:17.378944111Z"} +2026/03/22 06:28:22 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":13.753412041288167,"throughput_eps":0,"last_update":"2026-03-22T06:28:17.479138866Z"} +2026/03/22 06:28:22 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":236.66858010548333,"throughput_eps":0,"last_update":"2026-03-22T06:28:17.479150378Z"} +2026/03/22 06:28:22 ───────────────────────────────────────────────── +2026/03/22 06:28:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:28:27 [log_collector] {"stage_name":"log_collector","events_processed":2880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":576,"last_update":"2026-03-22T06:28:22.368440336Z"} +2026/03/22 06:28:27 [metric_collector] {"stage_name":"metric_collector","events_processed":1614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":322.8,"last_update":"2026-03-22T06:28:22.368749668Z"} +2026/03/22 06:28:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:28:22.378154232Z"} +2026/03/22 06:28:27 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":13.753412041288167,"throughput_eps":0,"last_update":"2026-03-22T06:28:22.479457089Z"} +2026/03/22 06:28:27 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":236.66858010548333,"throughput_eps":0,"last_update":"2026-03-22T06:28:22.47946823Z"} +2026/03/22 06:28:27 ───────────────────────────────────────────────── +2026/03/22 06:28:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:28:32 [metric_collector] {"stage_name":"metric_collector","events_processed":1619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":323.8,"last_update":"2026-03-22T06:28:27.368336852Z"} +2026/03/22 06:28:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":650,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:28:27.377331911Z"} +2026/03/22 06:28:32 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":13.753412041288167,"throughput_eps":0,"last_update":"2026-03-22T06:28:27.479561773Z"} +2026/03/22 06:28:32 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":202.30484408438667,"throughput_eps":0,"last_update":"2026-03-22T06:28:27.544427203Z"} +2026/03/22 06:28:32 [log_collector] {"stage_name":"log_collector","events_processed":2880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":576,"last_update":"2026-03-22T06:28:27.368002731Z"} +2026/03/22 06:28:32 ───────────────────────────────────────────────── +Saved state: 11 clusters, 2881 messages, reason: none +2026/03/22 06:28:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:28:37 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":14.248132233030534,"throughput_eps":0,"last_update":"2026-03-22T06:28:32.479183329Z"} +2026/03/22 06:28:37 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":202.30484408438667,"throughput_eps":0,"last_update":"2026-03-22T06:28:32.479196604Z"} +2026/03/22 06:28:37 [log_collector] {"stage_name":"log_collector","events_processed":2880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":576,"last_update":"2026-03-22T06:28:32.368859573Z"} +2026/03/22 06:28:37 [metric_collector] {"stage_name":"metric_collector","events_processed":1624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":324.8,"last_update":"2026-03-22T06:28:32.369050489Z"} +2026/03/22 06:28:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:28:32.37899605Z"} +2026/03/22 06:28:37 ───────────────────────────────────────────────── +2026/03/22 06:28:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:28:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:28:37.378218671Z"} +2026/03/22 06:28:42 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":14.248132233030534,"throughput_eps":0,"last_update":"2026-03-22T06:28:37.479517017Z"} +2026/03/22 06:28:42 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":202.30484408438667,"throughput_eps":0,"last_update":"2026-03-22T06:28:37.479530553Z"} +2026/03/22 06:28:42 [log_collector] {"stage_name":"log_collector","events_processed":2885,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":577,"last_update":"2026-03-22T06:28:37.369401863Z"} +2026/03/22 06:28:42 [metric_collector] {"stage_name":"metric_collector","events_processed":1629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":325.8,"last_update":"2026-03-22T06:28:37.369805476Z"} +2026/03/22 06:28:42 ───────────────────────────────────────────────── +2026/03/22 06:28:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:28:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:28:42.377202473Z"} +2026/03/22 06:28:47 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":14.248132233030534,"throughput_eps":0,"last_update":"2026-03-22T06:28:42.478946723Z"} +2026/03/22 06:28:47 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":202.30484408438667,"throughput_eps":0,"last_update":"2026-03-22T06:28:42.478938528Z"} +2026/03/22 06:28:47 [log_collector] {"stage_name":"log_collector","events_processed":2885,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":577,"last_update":"2026-03-22T06:28:42.368486388Z"} +2026/03/22 06:28:47 [metric_collector] {"stage_name":"metric_collector","events_processed":1634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":326.8,"last_update":"2026-03-22T06:28:42.36829927Z"} +2026/03/22 06:28:47 ───────────────────────────────────────────────── +2026/03/22 06:28:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:28:52 [log_collector] {"stage_name":"log_collector","events_processed":2885,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":577,"last_update":"2026-03-22T06:28:47.367960579Z"} +2026/03/22 06:28:52 [metric_collector] {"stage_name":"metric_collector","events_processed":1639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":327.8,"last_update":"2026-03-22T06:28:47.368169238Z"} +2026/03/22 06:28:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:28:47.3790551Z"} +2026/03/22 06:28:52 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":14.248132233030534,"throughput_eps":0,"last_update":"2026-03-22T06:28:47.479264028Z"} +2026/03/22 06:28:52 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":202.30484408438667,"throughput_eps":0,"last_update":"2026-03-22T06:28:47.479282273Z"} +2026/03/22 06:28:52 ───────────────────────────────────────────────── +2026/03/22 06:28:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:28:57 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":14.248132233030534,"throughput_eps":0,"last_update":"2026-03-22T06:28:52.479427538Z"} +2026/03/22 06:28:57 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":202.30484408438667,"throughput_eps":0,"last_update":"2026-03-22T06:28:52.479379205Z"} +2026/03/22 06:28:57 [log_collector] {"stage_name":"log_collector","events_processed":2885,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":577,"last_update":"2026-03-22T06:28:52.367964233Z"} +2026/03/22 06:28:57 [metric_collector] {"stage_name":"metric_collector","events_processed":1644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":328.8,"last_update":"2026-03-22T06:28:52.368280539Z"} +2026/03/22 06:28:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":660,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:28:52.378181303Z"} +2026/03/22 06:28:57 ───────────────────────────────────────────────── +2026/03/22 06:28:59 [ANOMALY] time=2026-03-22T06:28:59Z score=0.8294 method=SEAD details=MAD!:w=0.24,s=0.89 RRCF-fast:w=0.19,s=0.72 RRCF-mid!:w=0.18,s=0.93 RRCF-slow!:w=0.18,s=0.96 COPOD!:w=0.20,s=0.65 +2026/03/22 06:29:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:29:02 [log_collector] {"stage_name":"log_collector","events_processed":2885,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":577,"last_update":"2026-03-22T06:28:57.368179812Z"} +2026/03/22 06:29:02 [metric_collector] {"stage_name":"metric_collector","events_processed":1649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":329.8,"last_update":"2026-03-22T06:28:57.368583596Z"} +2026/03/22 06:29:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":662,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:28:57.382575877Z"} +2026/03/22 06:29:02 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":14.248132233030534,"throughput_eps":0,"last_update":"2026-03-22T06:28:57.479753417Z"} +2026/03/22 06:29:02 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":640.5055448675093,"throughput_eps":0,"last_update":"2026-03-22T06:28:59.873077827Z"} +2026/03/22 06:29:02 ───────────────────────────────────────────────── +2026/03/22 06:29:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:29:07 [metric_collector] {"stage_name":"metric_collector","events_processed":1654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":330.8,"last_update":"2026-03-22T06:29:02.368207882Z"} +2026/03/22 06:29:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:29:02.374953603Z"} +2026/03/22 06:29:07 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":13.882850586424428,"throughput_eps":0,"last_update":"2026-03-22T06:29:02.479191266Z"} +2026/03/22 06:29:07 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":640.5055448675093,"throughput_eps":0,"last_update":"2026-03-22T06:29:02.479170256Z"} +2026/03/22 06:29:07 [log_collector] {"stage_name":"log_collector","events_processed":2885,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":577,"last_update":"2026-03-22T06:29:02.367962362Z"} +2026/03/22 06:29:07 ───────────────────────────────────────────────── +2026/03/22 06:29:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:29:12 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":640.5055448675093,"throughput_eps":0,"last_update":"2026-03-22T06:29:07.479499893Z"} +2026/03/22 06:29:12 [log_collector] {"stage_name":"log_collector","events_processed":2885,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":577,"last_update":"2026-03-22T06:29:07.368005822Z"} +2026/03/22 06:29:12 [metric_collector] {"stage_name":"metric_collector","events_processed":1659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":331.8,"last_update":"2026-03-22T06:29:07.368503324Z"} +2026/03/22 06:29:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:29:07.378304799Z"} +2026/03/22 06:29:12 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":13.882850586424428,"throughput_eps":0,"last_update":"2026-03-22T06:29:07.479471369Z"} +2026/03/22 06:29:12 ───────────────────────────────────────────────── +2026/03/22 06:29:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:29:17 [log_collector] {"stage_name":"log_collector","events_processed":2885,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":577,"last_update":"2026-03-22T06:29:12.368586261Z"} +2026/03/22 06:29:17 [metric_collector] {"stage_name":"metric_collector","events_processed":1664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":332.8,"last_update":"2026-03-22T06:29:12.368873621Z"} +2026/03/22 06:29:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":668,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:29:12.375685008Z"} +2026/03/22 06:29:17 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":13.882850586424428,"throughput_eps":0,"last_update":"2026-03-22T06:29:12.479918191Z"} +2026/03/22 06:29:17 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":640.5055448675093,"throughput_eps":0,"last_update":"2026-03-22T06:29:12.478817212Z"} +2026/03/22 06:29:17 ───────────────────────────────────────────────── +2026/03/22 06:29:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:29:22 [log_collector] {"stage_name":"log_collector","events_processed":2888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":577.6,"last_update":"2026-03-22T06:29:17.368840455Z"} +2026/03/22 06:29:22 [metric_collector] {"stage_name":"metric_collector","events_processed":1669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":333.8,"last_update":"2026-03-22T06:29:17.369091706Z"} +2026/03/22 06:29:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":670,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:29:17.375812109Z"} +2026/03/22 06:29:22 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":13.882850586424428,"throughput_eps":0,"last_update":"2026-03-22T06:29:17.478960103Z"} +2026/03/22 06:29:22 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":640.5055448675093,"throughput_eps":0,"last_update":"2026-03-22T06:29:17.47892787Z"} +2026/03/22 06:29:22 ───────────────────────────────────────────────── +2026/03/22 06:29:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:29:27 [log_collector] {"stage_name":"log_collector","events_processed":2896,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":579.2,"last_update":"2026-03-22T06:29:22.368117499Z"} +2026/03/22 06:29:27 [metric_collector] {"stage_name":"metric_collector","events_processed":1674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":334.8,"last_update":"2026-03-22T06:29:22.368450337Z"} +2026/03/22 06:29:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:29:22.377078693Z"} +2026/03/22 06:29:27 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":13.882850586424428,"throughput_eps":0,"last_update":"2026-03-22T06:29:22.479421715Z"} +2026/03/22 06:29:27 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":640.5055448675093,"throughput_eps":0,"last_update":"2026-03-22T06:29:22.479313839Z"} +2026/03/22 06:29:27 ───────────────────────────────────────────────── +2026/03/22 06:29:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:29:32 [log_collector] {"stage_name":"log_collector","events_processed":3237,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":647.4,"last_update":"2026-03-22T06:29:32.368394725Z"} +2026/03/22 06:29:32 [metric_collector] {"stage_name":"metric_collector","events_processed":1679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":335.8,"last_update":"2026-03-22T06:29:27.36816407Z"} +2026/03/22 06:29:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:29:27.374657878Z"} +2026/03/22 06:29:32 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":13.882850586424428,"throughput_eps":0,"last_update":"2026-03-22T06:29:27.479567164Z"} +2026/03/22 06:29:32 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":535.5954626940076,"throughput_eps":0,"last_update":"2026-03-22T06:29:27.595536636Z"} +2026/03/22 06:29:32 ───────────────────────────────────────────────── +2026/03/22 06:29:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:29:37 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":13.656449069139544,"throughput_eps":0,"last_update":"2026-03-22T06:29:32.479875698Z"} +2026/03/22 06:29:37 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":535.5954626940076,"throughput_eps":0,"last_update":"2026-03-22T06:29:32.479908952Z"} +2026/03/22 06:29:37 [log_collector] {"stage_name":"log_collector","events_processed":3237,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":647.4,"last_update":"2026-03-22T06:29:32.368394725Z"} +2026/03/22 06:29:37 [metric_collector] {"stage_name":"metric_collector","events_processed":1684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":336.8,"last_update":"2026-03-22T06:29:32.368806714Z"} +2026/03/22 06:29:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":676,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:29:32.376500832Z"} +2026/03/22 06:29:37 ───────────────────────────────────────────────── +2026/03/22 06:29:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:29:42 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":13.656449069139544,"throughput_eps":0,"last_update":"2026-03-22T06:29:37.479953662Z"} +2026/03/22 06:29:42 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":535.5954626940076,"throughput_eps":0,"last_update":"2026-03-22T06:29:37.478839838Z"} +2026/03/22 06:29:42 [log_collector] {"stage_name":"log_collector","events_processed":3248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":649.6,"last_update":"2026-03-22T06:29:37.36845799Z"} +2026/03/22 06:29:42 [metric_collector] {"stage_name":"metric_collector","events_processed":1689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":337.8,"last_update":"2026-03-22T06:29:37.368654076Z"} +2026/03/22 06:29:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:29:37.374683685Z"} +2026/03/22 06:29:42 ───────────────────────────────────────────────── +2026/03/22 06:29:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:29:47 [log_collector] {"stage_name":"log_collector","events_processed":3248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":649.6,"last_update":"2026-03-22T06:29:42.368013006Z"} +2026/03/22 06:29:47 [metric_collector] {"stage_name":"metric_collector","events_processed":1694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":338.8,"last_update":"2026-03-22T06:29:42.368320605Z"} +2026/03/22 06:29:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:29:42.377003306Z"} +2026/03/22 06:29:47 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":13.656449069139544,"throughput_eps":0,"last_update":"2026-03-22T06:29:42.47920275Z"} +2026/03/22 06:29:47 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":535.5954626940076,"throughput_eps":0,"last_update":"2026-03-22T06:29:42.479234982Z"} +2026/03/22 06:29:47 ───────────────────────────────────────────────── +2026/03/22 06:29:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:29:52 [metric_collector] {"stage_name":"metric_collector","events_processed":1699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":339.8,"last_update":"2026-03-22T06:29:47.368400555Z"} +2026/03/22 06:29:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:29:47.377315772Z"} +2026/03/22 06:29:52 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":13.656449069139544,"throughput_eps":0,"last_update":"2026-03-22T06:29:47.479605058Z"} +2026/03/22 06:29:52 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":535.5954626940076,"throughput_eps":0,"last_update":"2026-03-22T06:29:47.479534854Z"} +2026/03/22 06:29:52 [log_collector] {"stage_name":"log_collector","events_processed":3248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":649.6,"last_update":"2026-03-22T06:29:47.368008304Z"} +2026/03/22 06:29:52 ───────────────────────────────────────────────── +2026/03/22 06:29:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:29:57 [log_collector] {"stage_name":"log_collector","events_processed":3248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":649.6,"last_update":"2026-03-22T06:29:57.368009633Z"} +2026/03/22 06:29:57 [metric_collector] {"stage_name":"metric_collector","events_processed":1704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":340.8,"last_update":"2026-03-22T06:29:52.368692477Z"} +2026/03/22 06:29:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:29:52.376985141Z"} +2026/03/22 06:29:57 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":13.656449069139544,"throughput_eps":0,"last_update":"2026-03-22T06:29:52.479418121Z"} +2026/03/22 06:29:57 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":535.5954626940076,"throughput_eps":0,"last_update":"2026-03-22T06:29:52.479309333Z"} +2026/03/22 06:29:57 ───────────────────────────────────────────────── +2026/03/22 06:30:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:30:02 [metric_collector] {"stage_name":"metric_collector","events_processed":1709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":341.8,"last_update":"2026-03-22T06:29:57.368586167Z"} +2026/03/22 06:30:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:29:57.377287413Z"} +2026/03/22 06:30:02 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":13.656449069139544,"throughput_eps":0,"last_update":"2026-03-22T06:29:57.479605142Z"} +2026/03/22 06:30:02 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":450.381180555206,"throughput_eps":0,"last_update":"2026-03-22T06:29:57.589072726Z"} +2026/03/22 06:30:02 [log_collector] {"stage_name":"log_collector","events_processed":3248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":649.6,"last_update":"2026-03-22T06:29:57.368009633Z"} +2026/03/22 06:30:02 ───────────────────────────────────────────────── +2026/03/22 06:30:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:30:07 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":14.202164055311636,"throughput_eps":0,"last_update":"2026-03-22T06:30:02.479321026Z"} +2026/03/22 06:30:07 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":450.381180555206,"throughput_eps":0,"last_update":"2026-03-22T06:30:02.479343088Z"} +2026/03/22 06:30:07 [log_collector] {"stage_name":"log_collector","events_processed":3248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":649.6,"last_update":"2026-03-22T06:30:02.368138437Z"} +2026/03/22 06:30:07 [metric_collector] {"stage_name":"metric_collector","events_processed":1714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":342.8,"last_update":"2026-03-22T06:30:02.368336587Z"} +2026/03/22 06:30:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":688,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:30:02.388086456Z"} +2026/03/22 06:30:07 ───────────────────────────────────────────────── +2026/03/22 06:30:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:30:12 [metric_collector] {"stage_name":"metric_collector","events_processed":1719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":343.8,"last_update":"2026-03-22T06:30:07.368340518Z"} +2026/03/22 06:30:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:30:07.377005034Z"} +2026/03/22 06:30:12 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":14.202164055311636,"throughput_eps":0,"last_update":"2026-03-22T06:30:07.479390452Z"} +2026/03/22 06:30:12 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":450.381180555206,"throughput_eps":0,"last_update":"2026-03-22T06:30:07.479321169Z"} +2026/03/22 06:30:12 [log_collector] {"stage_name":"log_collector","events_processed":3248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":649.6,"last_update":"2026-03-22T06:30:07.367963857Z"} +2026/03/22 06:30:12 ───────────────────────────────────────────────── +2026/03/22 06:30:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:30:17 [log_collector] {"stage_name":"log_collector","events_processed":3248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":649.6,"last_update":"2026-03-22T06:30:17.368083031Z"} +2026/03/22 06:30:17 [metric_collector] {"stage_name":"metric_collector","events_processed":1724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":344.8,"last_update":"2026-03-22T06:30:12.368424134Z"} +2026/03/22 06:30:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:30:12.37826319Z"} +2026/03/22 06:30:17 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":14.202164055311636,"throughput_eps":0,"last_update":"2026-03-22T06:30:12.479588707Z"} +2026/03/22 06:30:17 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":450.381180555206,"throughput_eps":0,"last_update":"2026-03-22T06:30:12.479478776Z"} +2026/03/22 06:30:17 ───────────────────────────────────────────────── +2026/03/22 06:30:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:30:22 [log_collector] {"stage_name":"log_collector","events_processed":3248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":649.6,"last_update":"2026-03-22T06:30:22.368810086Z"} +2026/03/22 06:30:22 [metric_collector] {"stage_name":"metric_collector","events_processed":1729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":345.8,"last_update":"2026-03-22T06:30:17.368305186Z"} +2026/03/22 06:30:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:30:17.376826878Z"} +2026/03/22 06:30:22 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":14.202164055311636,"throughput_eps":0,"last_update":"2026-03-22T06:30:17.479059473Z"} +2026/03/22 06:30:22 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":450.381180555206,"throughput_eps":0,"last_update":"2026-03-22T06:30:17.478946666Z"} +2026/03/22 06:30:22 ───────────────────────────────────────────────── +2026/03/22 06:30:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:30:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:30:22.377706115Z"} +2026/03/22 06:30:27 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":14.202164055311636,"throughput_eps":0,"last_update":"2026-03-22T06:30:22.479975829Z"} +2026/03/22 06:30:27 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":450.381180555206,"throughput_eps":0,"last_update":"2026-03-22T06:30:22.478844082Z"} +2026/03/22 06:30:27 [log_collector] {"stage_name":"log_collector","events_processed":3248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":649.6,"last_update":"2026-03-22T06:30:22.368810086Z"} +2026/03/22 06:30:27 [metric_collector] {"stage_name":"metric_collector","events_processed":1734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":346.8,"last_update":"2026-03-22T06:30:22.369388314Z"} +2026/03/22 06:30:27 ───────────────────────────────────────────────── +2026/03/22 06:30:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:30:32 [metric_collector] {"stage_name":"metric_collector","events_processed":1739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":347.8,"last_update":"2026-03-22T06:30:27.369135217Z"} +2026/03/22 06:30:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:30:27.377068231Z"} +2026/03/22 06:30:32 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":14.202164055311636,"throughput_eps":0,"last_update":"2026-03-22T06:30:27.479396026Z"} +2026/03/22 06:30:32 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":373.5628602441648,"throughput_eps":0,"last_update":"2026-03-22T06:30:27.54563078Z"} +2026/03/22 06:30:32 [log_collector] {"stage_name":"log_collector","events_processed":3248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":649.6,"last_update":"2026-03-22T06:30:27.368498467Z"} +2026/03/22 06:30:32 ───────────────────────────────────────────────── +2026/03/22 06:30:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:30:37 [metric_collector] {"stage_name":"metric_collector","events_processed":1744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":348.8,"last_update":"2026-03-22T06:30:32.369137984Z"} +2026/03/22 06:30:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":700,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:30:32.379197633Z"} +2026/03/22 06:30:37 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":14.791452444249309,"throughput_eps":0,"last_update":"2026-03-22T06:30:32.479487194Z"} +2026/03/22 06:30:37 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":373.5628602441648,"throughput_eps":0,"last_update":"2026-03-22T06:30:32.479590903Z"} +2026/03/22 06:30:37 [log_collector] {"stage_name":"log_collector","events_processed":3248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":649.6,"last_update":"2026-03-22T06:30:37.368512485Z"} +2026/03/22 06:30:37 ───────────────────────────────────────────────── +2026/03/22 06:30:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:30:42 [log_collector] {"stage_name":"log_collector","events_processed":3248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":649.6,"last_update":"2026-03-22T06:30:37.368512485Z"} +2026/03/22 06:30:42 [metric_collector] {"stage_name":"metric_collector","events_processed":1749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":349.8,"last_update":"2026-03-22T06:30:37.368879908Z"} +2026/03/22 06:30:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":702,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:30:37.376016176Z"} +2026/03/22 06:30:42 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":14.791452444249309,"throughput_eps":0,"last_update":"2026-03-22T06:30:37.479386476Z"} +2026/03/22 06:30:42 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":373.5628602441648,"throughput_eps":0,"last_update":"2026-03-22T06:30:37.479425401Z"} +2026/03/22 06:30:42 ───────────────────────────────────────────────── +2026/03/22 06:30:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:30:47 [log_collector] {"stage_name":"log_collector","events_processed":3248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":649.6,"last_update":"2026-03-22T06:30:47.368443333Z"} +2026/03/22 06:30:47 [metric_collector] {"stage_name":"metric_collector","events_processed":1754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":350.8,"last_update":"2026-03-22T06:30:42.369069674Z"} +2026/03/22 06:30:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:30:42.376994313Z"} +2026/03/22 06:30:47 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":14.791452444249309,"throughput_eps":0,"last_update":"2026-03-22T06:30:42.479311596Z"} +2026/03/22 06:30:47 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":373.5628602441648,"throughput_eps":0,"last_update":"2026-03-22T06:30:42.479288562Z"} +2026/03/22 06:30:47 ───────────────────────────────────────────────── +Saved state: 11 clusters, 3249 messages, reason: none +2026/03/22 06:30:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:30:52 [log_collector] {"stage_name":"log_collector","events_processed":3248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":649.6,"last_update":"2026-03-22T06:30:47.368443333Z"} +2026/03/22 06:30:52 [metric_collector] {"stage_name":"metric_collector","events_processed":1759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":351.8,"last_update":"2026-03-22T06:30:47.368777342Z"} +2026/03/22 06:30:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:30:47.377169686Z"} +2026/03/22 06:30:52 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":14.791452444249309,"throughput_eps":0,"last_update":"2026-03-22T06:30:47.479392579Z"} +2026/03/22 06:30:52 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":373.5628602441648,"throughput_eps":0,"last_update":"2026-03-22T06:30:47.479418448Z"} +2026/03/22 06:30:52 ───────────────────────────────────────────────── +2026/03/22 06:30:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:30:57 [log_collector] {"stage_name":"log_collector","events_processed":3251,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":650.2,"last_update":"2026-03-22T06:30:52.368343164Z"} +2026/03/22 06:30:57 [metric_collector] {"stage_name":"metric_collector","events_processed":1764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":352.8,"last_update":"2026-03-22T06:30:52.368480376Z"} +2026/03/22 06:30:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:30:52.376080193Z"} +2026/03/22 06:30:57 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":14.791452444249309,"throughput_eps":0,"last_update":"2026-03-22T06:30:52.479594008Z"} +2026/03/22 06:30:57 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":373.5628602441648,"throughput_eps":0,"last_update":"2026-03-22T06:30:52.479528542Z"} +2026/03/22 06:30:57 ───────────────────────────────────────────────── +2026/03/22 06:30:58 [ANOMALY] time=2026-03-22T06:30:58Z score=0.8546 method=SEAD details=MAD!:w=0.24,s=0.53 RRCF-fast!:w=0.19,s=0.86 RRCF-mid!:w=0.18,s=1.00 RRCF-slow!:w=0.18,s=1.00 COPOD!:w=0.20,s=0.97 +2026/03/22 06:31:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:31:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:30:57.375750081Z"} +2026/03/22 06:31:02 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":14.791452444249309,"throughput_eps":0,"last_update":"2026-03-22T06:30:57.479969216Z"} +2026/03/22 06:31:02 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":448.46063259533184,"throughput_eps":0,"last_update":"2026-03-22T06:30:58.226911021Z"} +2026/03/22 06:31:02 [log_collector] {"stage_name":"log_collector","events_processed":3262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":652.4,"last_update":"2026-03-22T06:31:02.368141172Z"} +2026/03/22 06:31:02 [metric_collector] {"stage_name":"metric_collector","events_processed":1769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":353.8,"last_update":"2026-03-22T06:30:57.368418247Z"} +2026/03/22 06:31:02 ───────────────────────────────────────────────── +2026/03/22 06:31:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:31:07 [log_collector] {"stage_name":"log_collector","events_processed":3262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":652.4,"last_update":"2026-03-22T06:31:02.368141172Z"} +2026/03/22 06:31:07 [metric_collector] {"stage_name":"metric_collector","events_processed":1774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":354.8,"last_update":"2026-03-22T06:31:02.368595793Z"} +2026/03/22 06:31:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":712,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:31:02.377495529Z"} +2026/03/22 06:31:07 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.747564555399448,"throughput_eps":0,"last_update":"2026-03-22T06:31:02.479706987Z"} +2026/03/22 06:31:07 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":448.46063259533184,"throughput_eps":0,"last_update":"2026-03-22T06:31:02.479735863Z"} +2026/03/22 06:31:07 ───────────────────────────────────────────────── +2026/03/22 06:31:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:31:12 [log_collector] {"stage_name":"log_collector","events_processed":3278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":655.6,"last_update":"2026-03-22T06:31:07.368553374Z"} +2026/03/22 06:31:12 [metric_collector] {"stage_name":"metric_collector","events_processed":1779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":355.8,"last_update":"2026-03-22T06:31:07.368838681Z"} +2026/03/22 06:31:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:31:07.375762372Z"} +2026/03/22 06:31:12 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.747564555399448,"throughput_eps":0,"last_update":"2026-03-22T06:31:07.479028429Z"} +2026/03/22 06:31:12 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":448.46063259533184,"throughput_eps":0,"last_update":"2026-03-22T06:31:07.478925202Z"} +2026/03/22 06:31:12 ───────────────────────────────────────────────── +2026/03/22 06:31:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:31:17 [metric_collector] {"stage_name":"metric_collector","events_processed":1784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":356.8,"last_update":"2026-03-22T06:31:12.368381394Z"} +2026/03/22 06:31:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:31:12.376949795Z"} +2026/03/22 06:31:17 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.747564555399448,"throughput_eps":0,"last_update":"2026-03-22T06:31:12.479293336Z"} +2026/03/22 06:31:17 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":448.46063259533184,"throughput_eps":0,"last_update":"2026-03-22T06:31:12.479407986Z"} +2026/03/22 06:31:17 [log_collector] {"stage_name":"log_collector","events_processed":3278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":655.6,"last_update":"2026-03-22T06:31:12.367998691Z"} +2026/03/22 06:31:17 ───────────────────────────────────────────────── +2026/03/22 06:31:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:31:22 [log_collector] {"stage_name":"log_collector","events_processed":3291,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":658.2,"last_update":"2026-03-22T06:31:17.367999638Z"} +2026/03/22 06:31:22 [metric_collector] {"stage_name":"metric_collector","events_processed":1789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":357.8,"last_update":"2026-03-22T06:31:17.368655184Z"} +2026/03/22 06:31:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":718,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:31:17.378100685Z"} +2026/03/22 06:31:22 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.747564555399448,"throughput_eps":0,"last_update":"2026-03-22T06:31:17.479393794Z"} +2026/03/22 06:31:22 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":448.46063259533184,"throughput_eps":0,"last_update":"2026-03-22T06:31:17.479368876Z"} +2026/03/22 06:31:22 ───────────────────────────────────────────────── +2026/03/22 06:31:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:31:27 [log_collector] {"stage_name":"log_collector","events_processed":3292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":658.4,"last_update":"2026-03-22T06:31:22.36800377Z"} +2026/03/22 06:31:27 [metric_collector] {"stage_name":"metric_collector","events_processed":1794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":358.8,"last_update":"2026-03-22T06:31:22.368549124Z"} +2026/03/22 06:31:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:31:22.376301152Z"} +2026/03/22 06:31:27 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.747564555399448,"throughput_eps":0,"last_update":"2026-03-22T06:31:22.479806457Z"} +2026/03/22 06:31:27 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":448.46063259533184,"throughput_eps":0,"last_update":"2026-03-22T06:31:22.479690695Z"} +2026/03/22 06:31:27 ───────────────────────────────────────────────── +2026/03/22 06:31:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:31:32 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.747564555399448,"throughput_eps":0,"last_update":"2026-03-22T06:31:27.479142776Z"} +2026/03/22 06:31:32 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":380.76783147626554,"throughput_eps":0,"last_update":"2026-03-22T06:31:27.589166646Z"} +2026/03/22 06:31:32 [log_collector] {"stage_name":"log_collector","events_processed":3292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":658.4,"last_update":"2026-03-22T06:31:27.368049588Z"} +2026/03/22 06:31:32 [metric_collector] {"stage_name":"metric_collector","events_processed":1799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":359.8,"last_update":"2026-03-22T06:31:27.36864568Z"} +2026/03/22 06:31:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":722,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:31:27.376938282Z"} +2026/03/22 06:31:32 ───────────────────────────────────────────────── +2026/03/22 06:31:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:31:37 [log_collector] {"stage_name":"log_collector","events_processed":3292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":658.4,"last_update":"2026-03-22T06:31:37.368440533Z"} +2026/03/22 06:31:37 [metric_collector] {"stage_name":"metric_collector","events_processed":1804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":360.8,"last_update":"2026-03-22T06:31:32.368894834Z"} +2026/03/22 06:31:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:31:32.377706943Z"} +2026/03/22 06:31:37 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":13.80914784431956,"throughput_eps":0,"last_update":"2026-03-22T06:31:32.478984029Z"} +2026/03/22 06:31:37 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":380.76783147626554,"throughput_eps":0,"last_update":"2026-03-22T06:31:32.478913875Z"} +2026/03/22 06:31:37 ───────────────────────────────────────────────── +2026/03/22 06:31:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:31:42 [metric_collector] {"stage_name":"metric_collector","events_processed":1809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":361.8,"last_update":"2026-03-22T06:31:37.368928988Z"} +2026/03/22 06:31:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:31:37.375742218Z"} +2026/03/22 06:31:42 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":13.80914784431956,"throughput_eps":0,"last_update":"2026-03-22T06:31:37.478967645Z"} +2026/03/22 06:31:42 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":380.76783147626554,"throughput_eps":0,"last_update":"2026-03-22T06:31:37.478932658Z"} +2026/03/22 06:31:42 [log_collector] {"stage_name":"log_collector","events_processed":3292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":658.4,"last_update":"2026-03-22T06:31:37.368440533Z"} +2026/03/22 06:31:42 ───────────────────────────────────────────────── +2026/03/22 06:31:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:31:47 [log_collector] {"stage_name":"log_collector","events_processed":3292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":658.4,"last_update":"2026-03-22T06:31:42.368226357Z"} +2026/03/22 06:31:47 [metric_collector] {"stage_name":"metric_collector","events_processed":1814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":362.8,"last_update":"2026-03-22T06:31:42.368623909Z"} +2026/03/22 06:31:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":728,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:31:42.377811515Z"} +2026/03/22 06:31:47 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":13.80914784431956,"throughput_eps":0,"last_update":"2026-03-22T06:31:42.479241524Z"} +2026/03/22 06:31:47 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":380.76783147626554,"throughput_eps":0,"last_update":"2026-03-22T06:31:42.479257615Z"} +2026/03/22 06:31:47 ───────────────────────────────────────────────── +2026/03/22 06:31:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:31:52 [log_collector] {"stage_name":"log_collector","events_processed":3292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":658.4,"last_update":"2026-03-22T06:31:52.367981322Z"} +2026/03/22 06:31:52 [metric_collector] {"stage_name":"metric_collector","events_processed":1819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":363.8,"last_update":"2026-03-22T06:31:47.368375785Z"} +2026/03/22 06:31:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":730,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:31:47.377025392Z"} +2026/03/22 06:31:52 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":13.80914784431956,"throughput_eps":0,"last_update":"2026-03-22T06:31:47.479302523Z"} +2026/03/22 06:31:52 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":380.76783147626554,"throughput_eps":0,"last_update":"2026-03-22T06:31:47.479316269Z"} +2026/03/22 06:31:52 ───────────────────────────────────────────────── +2026/03/22 06:31:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:31:57 [log_collector] {"stage_name":"log_collector","events_processed":3292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":658.4,"last_update":"2026-03-22T06:31:57.368249495Z"} +2026/03/22 06:31:57 [metric_collector] {"stage_name":"metric_collector","events_processed":1824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":364.8,"last_update":"2026-03-22T06:31:52.368380938Z"} +2026/03/22 06:31:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:31:52.377115326Z"} +2026/03/22 06:31:57 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":13.80914784431956,"throughput_eps":0,"last_update":"2026-03-22T06:31:52.479472359Z"} +2026/03/22 06:31:57 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":380.76783147626554,"throughput_eps":0,"last_update":"2026-03-22T06:31:52.47948861Z"} +2026/03/22 06:31:57 ───────────────────────────────────────────────── +2026/03/22 06:32:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:32:02 [metric_collector] {"stage_name":"metric_collector","events_processed":1829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":365.8,"last_update":"2026-03-22T06:31:57.368797094Z"} +2026/03/22 06:32:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:31:57.378085253Z"} +2026/03/22 06:32:02 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":13.80914784431956,"throughput_eps":0,"last_update":"2026-03-22T06:31:57.479402295Z"} +2026/03/22 06:32:02 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":318.02574978101245,"throughput_eps":0,"last_update":"2026-03-22T06:31:57.546471221Z"} +2026/03/22 06:32:02 [log_collector] {"stage_name":"log_collector","events_processed":3292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":658.4,"last_update":"2026-03-22T06:31:57.368249495Z"} +2026/03/22 06:32:02 ───────────────────────────────────────────────── +2026/03/22 06:32:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:32:07 [log_collector] {"stage_name":"log_collector","events_processed":3292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":658.4,"last_update":"2026-03-22T06:32:07.368172403Z"} +2026/03/22 06:32:07 [metric_collector] {"stage_name":"metric_collector","events_processed":1834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":366.8,"last_update":"2026-03-22T06:32:02.369211826Z"} +2026/03/22 06:32:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":736,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:32:02.378703224Z"} +2026/03/22 06:32:07 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.360628275455648,"throughput_eps":0,"last_update":"2026-03-22T06:32:02.478945777Z"} +2026/03/22 06:32:07 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":318.02574978101245,"throughput_eps":0,"last_update":"2026-03-22T06:32:02.478913104Z"} +2026/03/22 06:32:07 ───────────────────────────────────────────────── +2026/03/22 06:32:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:32:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":738,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:32:07.376927481Z"} +2026/03/22 06:32:12 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.360628275455648,"throughput_eps":0,"last_update":"2026-03-22T06:32:07.479170274Z"} +2026/03/22 06:32:12 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":318.02574978101245,"throughput_eps":0,"last_update":"2026-03-22T06:32:07.479181195Z"} +2026/03/22 06:32:12 [log_collector] {"stage_name":"log_collector","events_processed":3292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":658.4,"last_update":"2026-03-22T06:32:07.368172403Z"} +2026/03/22 06:32:12 [metric_collector] {"stage_name":"metric_collector","events_processed":1839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":367.8,"last_update":"2026-03-22T06:32:07.369082776Z"} +2026/03/22 06:32:12 ───────────────────────────────────────────────── +2026/03/22 06:32:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:32:17 [log_collector] {"stage_name":"log_collector","events_processed":3292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":658.4,"last_update":"2026-03-22T06:32:17.368599484Z"} +2026/03/22 06:32:17 [metric_collector] {"stage_name":"metric_collector","events_processed":1844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":368.8,"last_update":"2026-03-22T06:32:12.368573767Z"} +2026/03/22 06:32:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":740,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:32:12.377443836Z"} +2026/03/22 06:32:17 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.360628275455648,"throughput_eps":0,"last_update":"2026-03-22T06:32:12.479715514Z"} +2026/03/22 06:32:17 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":318.02574978101245,"throughput_eps":0,"last_update":"2026-03-22T06:32:12.479728298Z"} +2026/03/22 06:32:17 ───────────────────────────────────────────────── +Saved state: 11 clusters, 3293 messages, reason: none +2026/03/22 06:32:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:32:22 [log_collector] {"stage_name":"log_collector","events_processed":3297,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":659.4,"last_update":"2026-03-22T06:32:22.369379704Z"} +2026/03/22 06:32:22 [metric_collector] {"stage_name":"metric_collector","events_processed":1849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":369.8,"last_update":"2026-03-22T06:32:17.369020951Z"} +2026/03/22 06:32:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:32:17.378006361Z"} +2026/03/22 06:32:22 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.360628275455648,"throughput_eps":0,"last_update":"2026-03-22T06:32:17.479324551Z"} +2026/03/22 06:32:22 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":318.02574978101245,"throughput_eps":0,"last_update":"2026-03-22T06:32:17.479335463Z"} +2026/03/22 06:32:22 ───────────────────────────────────────────────── +2026/03/22 06:32:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:32:27 [log_collector] {"stage_name":"log_collector","events_processed":3297,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":659.4,"last_update":"2026-03-22T06:32:22.369379704Z"} +2026/03/22 06:32:27 [metric_collector] {"stage_name":"metric_collector","events_processed":1859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":371.8,"last_update":"2026-03-22T06:32:27.368705568Z"} +2026/03/22 06:32:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:32:22.379524814Z"} +2026/03/22 06:32:27 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.360628275455648,"throughput_eps":0,"last_update":"2026-03-22T06:32:22.479727489Z"} +2026/03/22 06:32:27 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":318.02574978101245,"throughput_eps":0,"last_update":"2026-03-22T06:32:22.479744411Z"} +2026/03/22 06:32:27 ───────────────────────────────────────────────── +2026/03/22 06:32:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:32:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:32:27.376847162Z"} +2026/03/22 06:32:32 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.360628275455648,"throughput_eps":0,"last_update":"2026-03-22T06:32:27.479044035Z"} +2026/03/22 06:32:32 [transform_engine] {"stage_name":"transform_engine","events_processed":62,"events_dropped":0,"avg_latency_ms":702.09766902481,"throughput_eps":0,"last_update":"2026-03-22T06:32:29.7174447Z"} +2026/03/22 06:32:32 [log_collector] {"stage_name":"log_collector","events_processed":3297,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":659.4,"last_update":"2026-03-22T06:32:27.368770763Z"} +2026/03/22 06:32:32 [metric_collector] {"stage_name":"metric_collector","events_processed":1859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":371.8,"last_update":"2026-03-22T06:32:27.368705568Z"} +2026/03/22 06:32:32 ───────────────────────────────────────────────── +2026/03/22 06:32:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:32:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:32:32.374341429Z"} +2026/03/22 06:32:37 [detection_layer] {"stage_name":"detection_layer","events_processed":62,"events_dropped":0,"avg_latency_ms":13.53284202036452,"throughput_eps":0,"last_update":"2026-03-22T06:32:32.479516576Z"} +2026/03/22 06:32:37 [transform_engine] {"stage_name":"transform_engine","events_processed":62,"events_dropped":0,"avg_latency_ms":702.09766902481,"throughput_eps":0,"last_update":"2026-03-22T06:32:32.479526294Z"} +2026/03/22 06:32:37 [log_collector] {"stage_name":"log_collector","events_processed":3297,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":659.4,"last_update":"2026-03-22T06:32:32.367977329Z"} +2026/03/22 06:32:37 [metric_collector] {"stage_name":"metric_collector","events_processed":1864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":372.8,"last_update":"2026-03-22T06:32:32.368129441Z"} +2026/03/22 06:32:37 ───────────────────────────────────────────────── +2026/03/22 06:32:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:32:42 [metric_collector] {"stage_name":"metric_collector","events_processed":1874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":374.8,"last_update":"2026-03-22T06:32:42.368622187Z"} +2026/03/22 06:32:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":750,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:32:37.375423708Z"} +2026/03/22 06:32:42 [detection_layer] {"stage_name":"detection_layer","events_processed":62,"events_dropped":0,"avg_latency_ms":13.53284202036452,"throughput_eps":0,"last_update":"2026-03-22T06:32:37.479648654Z"} +2026/03/22 06:32:42 [transform_engine] {"stage_name":"transform_engine","events_processed":62,"events_dropped":0,"avg_latency_ms":702.09766902481,"throughput_eps":0,"last_update":"2026-03-22T06:32:37.479659375Z"} +2026/03/22 06:32:42 [log_collector] {"stage_name":"log_collector","events_processed":3297,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":659.4,"last_update":"2026-03-22T06:32:42.368378901Z"} +2026/03/22 06:32:42 ───────────────────────────────────────────────── +2026/03/22 06:32:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:32:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":752,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:32:42.376809348Z"} +2026/03/22 06:32:47 [detection_layer] {"stage_name":"detection_layer","events_processed":62,"events_dropped":0,"avg_latency_ms":13.53284202036452,"throughput_eps":0,"last_update":"2026-03-22T06:32:42.47895897Z"} +2026/03/22 06:32:47 [transform_engine] {"stage_name":"transform_engine","events_processed":62,"events_dropped":0,"avg_latency_ms":702.09766902481,"throughput_eps":0,"last_update":"2026-03-22T06:32:42.478936036Z"} +2026/03/22 06:32:47 [log_collector] {"stage_name":"log_collector","events_processed":3297,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":659.4,"last_update":"2026-03-22T06:32:42.368378901Z"} +2026/03/22 06:32:47 [metric_collector] {"stage_name":"metric_collector","events_processed":1874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":374.8,"last_update":"2026-03-22T06:32:42.368622187Z"} +2026/03/22 06:32:47 ───────────────────────────────────────────────── +2026/03/22 06:32:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:32:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:32:47.377595581Z"} +2026/03/22 06:32:52 [detection_layer] {"stage_name":"detection_layer","events_processed":62,"events_dropped":0,"avg_latency_ms":13.53284202036452,"throughput_eps":0,"last_update":"2026-03-22T06:32:47.479793865Z"} +2026/03/22 06:32:52 [transform_engine] {"stage_name":"transform_engine","events_processed":62,"events_dropped":0,"avg_latency_ms":702.09766902481,"throughput_eps":0,"last_update":"2026-03-22T06:32:47.479812811Z"} +2026/03/22 06:32:52 [log_collector] {"stage_name":"log_collector","events_processed":3297,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":659.4,"last_update":"2026-03-22T06:32:47.368639217Z"} +2026/03/22 06:32:52 [metric_collector] {"stage_name":"metric_collector","events_processed":1879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":375.8,"last_update":"2026-03-22T06:32:47.368949341Z"} +2026/03/22 06:32:52 ───────────────────────────────────────────────── +2026/03/22 06:32:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:32:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:32:52.376451698Z"} +2026/03/22 06:32:57 [detection_layer] {"stage_name":"detection_layer","events_processed":62,"events_dropped":0,"avg_latency_ms":13.53284202036452,"throughput_eps":0,"last_update":"2026-03-22T06:32:52.48129636Z"} +2026/03/22 06:32:57 [transform_engine] {"stage_name":"transform_engine","events_processed":62,"events_dropped":0,"avg_latency_ms":702.09766902481,"throughput_eps":0,"last_update":"2026-03-22T06:32:52.481274619Z"} +2026/03/22 06:32:57 [log_collector] {"stage_name":"log_collector","events_processed":3297,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":659.4,"last_update":"2026-03-22T06:32:57.368495518Z"} +2026/03/22 06:32:57 [metric_collector] {"stage_name":"metric_collector","events_processed":1884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":376.8,"last_update":"2026-03-22T06:32:52.368774774Z"} +2026/03/22 06:32:57 ───────────────────────────────────────────────── +2026/03/22 06:33:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:33:02 [metric_collector] {"stage_name":"metric_collector","events_processed":1894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":378.8,"last_update":"2026-03-22T06:33:02.368332826Z"} +2026/03/22 06:33:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":758,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:32:57.375148069Z"} +2026/03/22 06:33:02 [detection_layer] {"stage_name":"detection_layer","events_processed":62,"events_dropped":0,"avg_latency_ms":13.53284202036452,"throughput_eps":0,"last_update":"2026-03-22T06:32:57.47943853Z"} +2026/03/22 06:33:02 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":579.983376019848,"throughput_eps":0,"last_update":"2026-03-22T06:32:57.57092606Z"} +2026/03/22 06:33:02 [log_collector] {"stage_name":"log_collector","events_processed":3300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":660,"last_update":"2026-03-22T06:33:02.368395656Z"} +2026/03/22 06:33:02 ───────────────────────────────────────────────── +2026/03/22 06:33:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:33:07 [log_collector] {"stage_name":"log_collector","events_processed":3300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":660,"last_update":"2026-03-22T06:33:02.368395656Z"} +2026/03/22 06:33:07 [metric_collector] {"stage_name":"metric_collector","events_processed":1894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":378.8,"last_update":"2026-03-22T06:33:02.368332826Z"} +2026/03/22 06:33:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:33:02.375965324Z"} +2026/03/22 06:33:07 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":12.460734016291616,"throughput_eps":0,"last_update":"2026-03-22T06:33:02.479184303Z"} +2026/03/22 06:33:07 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":579.983376019848,"throughput_eps":0,"last_update":"2026-03-22T06:33:02.479195644Z"} +2026/03/22 06:33:07 ───────────────────────────────────────────────── +2026/03/22 06:33:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:33:12 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":579.983376019848,"throughput_eps":0,"last_update":"2026-03-22T06:33:07.479295677Z"} +2026/03/22 06:33:12 [log_collector] {"stage_name":"log_collector","events_processed":3386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":677.2,"last_update":"2026-03-22T06:33:12.368609991Z"} +2026/03/22 06:33:12 [metric_collector] {"stage_name":"metric_collector","events_processed":1899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":379.8,"last_update":"2026-03-22T06:33:07.368416348Z"} +2026/03/22 06:33:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:33:07.378850782Z"} +2026/03/22 06:33:12 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":12.460734016291616,"throughput_eps":0,"last_update":"2026-03-22T06:33:07.479272663Z"} +2026/03/22 06:33:12 ───────────────────────────────────────────────── +2026/03/22 06:33:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:33:17 [log_collector] {"stage_name":"log_collector","events_processed":3594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":718.8,"last_update":"2026-03-22T06:33:17.368743622Z"} +2026/03/22 06:33:17 [metric_collector] {"stage_name":"metric_collector","events_processed":1904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":380.8,"last_update":"2026-03-22T06:33:12.368848428Z"} +2026/03/22 06:33:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:33:12.375786957Z"} +2026/03/22 06:33:17 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":12.460734016291616,"throughput_eps":0,"last_update":"2026-03-22T06:33:12.479508677Z"} +2026/03/22 06:33:17 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":579.983376019848,"throughput_eps":0,"last_update":"2026-03-22T06:33:12.479521231Z"} +2026/03/22 06:33:17 ───────────────────────────────────────────────── +2026/03/22 06:33:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:33:22 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":12.460734016291616,"throughput_eps":0,"last_update":"2026-03-22T06:33:17.479761135Z"} +2026/03/22 06:33:22 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":579.983376019848,"throughput_eps":0,"last_update":"2026-03-22T06:33:17.479738702Z"} +2026/03/22 06:33:22 [log_collector] {"stage_name":"log_collector","events_processed":3659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":731.8,"last_update":"2026-03-22T06:33:22.368222128Z"} +2026/03/22 06:33:22 [metric_collector] {"stage_name":"metric_collector","events_processed":1914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":382.8,"last_update":"2026-03-22T06:33:22.36821762Z"} +2026/03/22 06:33:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":766,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:33:17.378559882Z"} +2026/03/22 06:33:22 ───────────────────────────────────────────────── +2026/03/22 06:33:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:33:27 [log_collector] {"stage_name":"log_collector","events_processed":3659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":731.8,"last_update":"2026-03-22T06:33:22.368222128Z"} +2026/03/22 06:33:27 [metric_collector] {"stage_name":"metric_collector","events_processed":1914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":382.8,"last_update":"2026-03-22T06:33:22.36821762Z"} +2026/03/22 06:33:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":768,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:33:22.376193205Z"} +2026/03/22 06:33:27 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":12.460734016291616,"throughput_eps":0,"last_update":"2026-03-22T06:33:22.479397053Z"} +2026/03/22 06:33:27 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":579.983376019848,"throughput_eps":0,"last_update":"2026-03-22T06:33:22.479450856Z"} +2026/03/22 06:33:27 ───────────────────────────────────────────────── +2026/03/22 06:33:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:33:32 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":579.983376019848,"throughput_eps":0,"last_update":"2026-03-22T06:33:27.479869875Z"} +2026/03/22 06:33:32 [log_collector] {"stage_name":"log_collector","events_processed":3659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":731.8,"last_update":"2026-03-22T06:33:27.368330253Z"} +2026/03/22 06:33:32 [metric_collector] {"stage_name":"metric_collector","events_processed":1919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":383.8,"last_update":"2026-03-22T06:33:27.368779423Z"} +2026/03/22 06:33:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":770,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:33:27.376632463Z"} +2026/03/22 06:33:32 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":12.460734016291616,"throughput_eps":0,"last_update":"2026-03-22T06:33:27.479897007Z"} +2026/03/22 06:33:32 ───────────────────────────────────────────────── +2026/03/22 06:33:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:33:37 [log_collector] {"stage_name":"log_collector","events_processed":3659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":731.8,"last_update":"2026-03-22T06:33:37.367980637Z"} +2026/03/22 06:33:37 [metric_collector] {"stage_name":"metric_collector","events_processed":1924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":384.8,"last_update":"2026-03-22T06:33:32.369434158Z"} +2026/03/22 06:33:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:33:32.376764297Z"} +2026/03/22 06:33:37 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":12.254427013033293,"throughput_eps":0,"last_update":"2026-03-22T06:33:32.48000832Z"} +2026/03/22 06:33:37 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":486.17145141587844,"throughput_eps":0,"last_update":"2026-03-22T06:33:32.478899076Z"} +2026/03/22 06:33:37 ───────────────────────────────────────────────── +2026/03/22 06:33:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:33:42 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":486.17145141587844,"throughput_eps":0,"last_update":"2026-03-22T06:33:37.479575013Z"} +2026/03/22 06:33:42 [log_collector] {"stage_name":"log_collector","events_processed":3659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":731.8,"last_update":"2026-03-22T06:33:42.367958993Z"} +2026/03/22 06:33:42 [metric_collector] {"stage_name":"metric_collector","events_processed":1929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":385.8,"last_update":"2026-03-22T06:33:37.368748979Z"} +2026/03/22 06:33:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:33:37.377425637Z"} +2026/03/22 06:33:42 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":12.254427013033293,"throughput_eps":0,"last_update":"2026-03-22T06:33:37.479553543Z"} +2026/03/22 06:33:42 ───────────────────────────────────────────────── +2026/03/22 06:33:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:33:47 [log_collector] {"stage_name":"log_collector","events_processed":3659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":731.8,"last_update":"2026-03-22T06:33:42.367958993Z"} +2026/03/22 06:33:47 [metric_collector] {"stage_name":"metric_collector","events_processed":1934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":386.8,"last_update":"2026-03-22T06:33:42.368283173Z"} +2026/03/22 06:33:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:33:42.376666991Z"} +2026/03/22 06:33:47 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":12.254427013033293,"throughput_eps":0,"last_update":"2026-03-22T06:33:42.479875036Z"} +2026/03/22 06:33:47 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":486.17145141587844,"throughput_eps":0,"last_update":"2026-03-22T06:33:42.479987701Z"} +2026/03/22 06:33:47 ───────────────────────────────────────────────── +2026/03/22 06:33:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:33:52 [log_collector] {"stage_name":"log_collector","events_processed":3659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":731.8,"last_update":"2026-03-22T06:33:47.368060844Z"} +2026/03/22 06:33:52 [metric_collector] {"stage_name":"metric_collector","events_processed":1939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":387.8,"last_update":"2026-03-22T06:33:47.368793217Z"} +2026/03/22 06:33:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:33:47.377192434Z"} +2026/03/22 06:33:52 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":12.254427013033293,"throughput_eps":0,"last_update":"2026-03-22T06:33:47.479390372Z"} +2026/03/22 06:33:52 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":486.17145141587844,"throughput_eps":0,"last_update":"2026-03-22T06:33:47.47936298Z"} +2026/03/22 06:33:52 ───────────────────────────────────────────────── +2026/03/22 06:33:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:33:57 [log_collector] {"stage_name":"log_collector","events_processed":3659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":731.8,"last_update":"2026-03-22T06:33:57.368533858Z"} +2026/03/22 06:33:57 [metric_collector] {"stage_name":"metric_collector","events_processed":1944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":388.8,"last_update":"2026-03-22T06:33:52.369200701Z"} +2026/03/22 06:33:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":780,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:33:52.378660037Z"} +2026/03/22 06:33:57 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":12.254427013033293,"throughput_eps":0,"last_update":"2026-03-22T06:33:52.478983536Z"} +2026/03/22 06:33:57 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":486.17145141587844,"throughput_eps":0,"last_update":"2026-03-22T06:33:52.478920535Z"} +2026/03/22 06:33:57 ───────────────────────────────────────────────── +2026/03/22 06:34:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:34:02 [log_collector] {"stage_name":"log_collector","events_processed":3659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":731.8,"last_update":"2026-03-22T06:34:02.36832661Z"} +2026/03/22 06:34:02 [metric_collector] {"stage_name":"metric_collector","events_processed":1949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":389.8,"last_update":"2026-03-22T06:33:57.369391641Z"} +2026/03/22 06:34:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":782,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:33:57.379054588Z"} +2026/03/22 06:34:02 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":12.254427013033293,"throughput_eps":0,"last_update":"2026-03-22T06:33:57.479292051Z"} +2026/03/22 06:34:02 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":486.17145141587844,"throughput_eps":0,"last_update":"2026-03-22T06:33:57.479251964Z"} +2026/03/22 06:34:02 ───────────────────────────────────────────────── +2026/03/22 06:34:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:34:07 [log_collector] {"stage_name":"log_collector","events_processed":3659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":731.8,"last_update":"2026-03-22T06:34:02.36832661Z"} +2026/03/22 06:34:07 [metric_collector] {"stage_name":"metric_collector","events_processed":1954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":390.8,"last_update":"2026-03-22T06:34:02.368756293Z"} +2026/03/22 06:34:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:34:02.378333726Z"} +2026/03/22 06:34:07 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":13.438699610426635,"throughput_eps":0,"last_update":"2026-03-22T06:34:02.479572297Z"} +2026/03/22 06:34:07 [transform_engine] {"stage_name":"transform_engine","events_processed":65,"events_dropped":0,"avg_latency_ms":403.1114237327028,"throughput_eps":0,"last_update":"2026-03-22T06:34:02.479541057Z"} +2026/03/22 06:34:07 ───────────────────────────────────────────────── +2026/03/22 06:34:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:34:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:34:07.379324004Z"} +2026/03/22 06:34:12 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":13.438699610426635,"throughput_eps":0,"last_update":"2026-03-22T06:34:07.479551639Z"} +2026/03/22 06:34:12 [transform_engine] {"stage_name":"transform_engine","events_processed":65,"events_dropped":0,"avg_latency_ms":403.1114237327028,"throughput_eps":0,"last_update":"2026-03-22T06:34:07.479506553Z"} +2026/03/22 06:34:12 [log_collector] {"stage_name":"log_collector","events_processed":3659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":731.8,"last_update":"2026-03-22T06:34:07.368174811Z"} +2026/03/22 06:34:12 [metric_collector] {"stage_name":"metric_collector","events_processed":1959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":391.8,"last_update":"2026-03-22T06:34:07.368734823Z"} +2026/03/22 06:34:12 ───────────────────────────────────────────────── +2026/03/22 06:34:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:34:17 [log_collector] {"stage_name":"log_collector","events_processed":3659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":731.8,"last_update":"2026-03-22T06:34:12.368598716Z"} +2026/03/22 06:34:17 [metric_collector] {"stage_name":"metric_collector","events_processed":1964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":392.8,"last_update":"2026-03-22T06:34:12.36896107Z"} +2026/03/22 06:34:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:34:12.378219271Z"} +2026/03/22 06:34:17 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":13.438699610426635,"throughput_eps":0,"last_update":"2026-03-22T06:34:12.479463552Z"} +2026/03/22 06:34:17 [transform_engine] {"stage_name":"transform_engine","events_processed":65,"events_dropped":0,"avg_latency_ms":403.1114237327028,"throughput_eps":0,"last_update":"2026-03-22T06:34:12.479408677Z"} +2026/03/22 06:34:17 ───────────────────────────────────────────────── +2026/03/22 06:34:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:34:22 [metric_collector] {"stage_name":"metric_collector","events_processed":1969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":393.8,"last_update":"2026-03-22T06:34:17.369271352Z"} +2026/03/22 06:34:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:34:17.378661336Z"} +2026/03/22 06:34:22 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":13.438699610426635,"throughput_eps":0,"last_update":"2026-03-22T06:34:17.479914374Z"} +2026/03/22 06:34:22 [transform_engine] {"stage_name":"transform_engine","events_processed":65,"events_dropped":0,"avg_latency_ms":403.1114237327028,"throughput_eps":0,"last_update":"2026-03-22T06:34:17.479935675Z"} +2026/03/22 06:34:22 [log_collector] {"stage_name":"log_collector","events_processed":3659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":731.8,"last_update":"2026-03-22T06:34:17.368626617Z"} +2026/03/22 06:34:22 ───────────────────────────────────────────────── +2026/03/22 06:34:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:34:27 [log_collector] {"stage_name":"log_collector","events_processed":3659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":731.8,"last_update":"2026-03-22T06:34:22.368244839Z"} +2026/03/22 06:34:27 [metric_collector] {"stage_name":"metric_collector","events_processed":1974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":394.8,"last_update":"2026-03-22T06:34:22.368710071Z"} +2026/03/22 06:34:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:34:22.377519041Z"} +2026/03/22 06:34:27 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":13.438699610426635,"throughput_eps":0,"last_update":"2026-03-22T06:34:22.479742758Z"} +2026/03/22 06:34:27 [transform_engine] {"stage_name":"transform_engine","events_processed":65,"events_dropped":0,"avg_latency_ms":403.1114237327028,"throughput_eps":0,"last_update":"2026-03-22T06:34:22.479720475Z"} +2026/03/22 06:34:27 ───────────────────────────────────────────────── +2026/03/22 06:34:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:34:32 [log_collector] {"stage_name":"log_collector","events_processed":3659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":731.8,"last_update":"2026-03-22T06:34:32.368651755Z"} +2026/03/22 06:34:32 [metric_collector] {"stage_name":"metric_collector","events_processed":1979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":395.8,"last_update":"2026-03-22T06:34:27.368717512Z"} +2026/03/22 06:34:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:34:27.377504911Z"} +2026/03/22 06:34:32 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":13.438699610426635,"throughput_eps":0,"last_update":"2026-03-22T06:34:27.480441252Z"} +2026/03/22 06:34:32 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":335.8988809861623,"throughput_eps":0,"last_update":"2026-03-22T06:34:27.546694959Z"} +2026/03/22 06:34:32 ───────────────────────────────────────────────── +2026/03/22 06:34:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:34:37 [log_collector] {"stage_name":"log_collector","events_processed":3659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":731.8,"last_update":"2026-03-22T06:34:37.368768414Z"} +2026/03/22 06:34:37 [metric_collector] {"stage_name":"metric_collector","events_processed":1984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":396.8,"last_update":"2026-03-22T06:34:32.3692602Z"} +2026/03/22 06:34:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":796,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:34:32.377817078Z"} +2026/03/22 06:34:37 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":14.34613528834131,"throughput_eps":0,"last_update":"2026-03-22T06:34:32.479056219Z"} +2026/03/22 06:34:37 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":335.8988809861623,"throughput_eps":0,"last_update":"2026-03-22T06:34:32.478951338Z"} +2026/03/22 06:34:37 ───────────────────────────────────────────────── +2026/03/22 06:34:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:34:42 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":335.8988809861623,"throughput_eps":0,"last_update":"2026-03-22T06:34:37.479219497Z"} +2026/03/22 06:34:42 [log_collector] {"stage_name":"log_collector","events_processed":3659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":731.8,"last_update":"2026-03-22T06:34:42.368021933Z"} +2026/03/22 06:34:42 [metric_collector] {"stage_name":"metric_collector","events_processed":1989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":397.8,"last_update":"2026-03-22T06:34:37.369197155Z"} +2026/03/22 06:34:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:34:37.376950755Z"} +2026/03/22 06:34:42 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":14.34613528834131,"throughput_eps":0,"last_update":"2026-03-22T06:34:37.479204528Z"} +2026/03/22 06:34:42 ───────────────────────────────────────────────── +2026/03/22 06:34:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:34:47 [log_collector] {"stage_name":"log_collector","events_processed":3659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":731.8,"last_update":"2026-03-22T06:34:47.368772968Z"} +2026/03/22 06:34:47 [metric_collector] {"stage_name":"metric_collector","events_processed":1994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":398.8,"last_update":"2026-03-22T06:34:42.368700723Z"} +2026/03/22 06:34:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":800,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:34:42.377869483Z"} +2026/03/22 06:34:47 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":14.34613528834131,"throughput_eps":0,"last_update":"2026-03-22T06:34:42.479114524Z"} +2026/03/22 06:34:47 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":335.8988809861623,"throughput_eps":0,"last_update":"2026-03-22T06:34:42.479129753Z"} +2026/03/22 06:34:47 ───────────────────────────────────────────────── +2026/03/22 06:34:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:34:52 [log_collector] {"stage_name":"log_collector","events_processed":3659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":731.8,"last_update":"2026-03-22T06:34:47.368772968Z"} +2026/03/22 06:34:52 [metric_collector] {"stage_name":"metric_collector","events_processed":1999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":399.8,"last_update":"2026-03-22T06:34:47.369205276Z"} +2026/03/22 06:34:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":802,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:34:47.377960443Z"} +2026/03/22 06:34:52 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":14.34613528834131,"throughput_eps":0,"last_update":"2026-03-22T06:34:47.479239099Z"} +2026/03/22 06:34:52 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":335.8988809861623,"throughput_eps":0,"last_update":"2026-03-22T06:34:47.479256091Z"} +2026/03/22 06:34:52 ───────────────────────────────────────────────── +Saved state: 11 clusters, 3660 messages, reason: none +2026/03/22 06:34:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:34:57 [log_collector] {"stage_name":"log_collector","events_processed":3659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":731.8,"last_update":"2026-03-22T06:34:52.368135877Z"} +2026/03/22 06:34:57 [metric_collector] {"stage_name":"metric_collector","events_processed":2004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":400.8,"last_update":"2026-03-22T06:34:52.368511666Z"} +2026/03/22 06:34:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:34:52.377198102Z"} +2026/03/22 06:34:57 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":14.34613528834131,"throughput_eps":0,"last_update":"2026-03-22T06:34:52.479433139Z"} +2026/03/22 06:34:57 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":335.8988809861623,"throughput_eps":0,"last_update":"2026-03-22T06:34:52.479446414Z"} +2026/03/22 06:34:57 ───────────────────────────────────────────────── +2026/03/22 06:35:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:35:02 [log_collector] {"stage_name":"log_collector","events_processed":3662,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":732.4,"last_update":"2026-03-22T06:34:57.367966125Z"} +2026/03/22 06:35:02 [metric_collector] {"stage_name":"metric_collector","events_processed":2009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":401.8,"last_update":"2026-03-22T06:34:57.368371923Z"} +2026/03/22 06:35:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:34:57.374447007Z"} +2026/03/22 06:35:02 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":14.34613528834131,"throughput_eps":0,"last_update":"2026-03-22T06:34:57.481148136Z"} +2026/03/22 06:35:02 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":291.02230078892984,"throughput_eps":0,"last_update":"2026-03-22T06:34:57.592676941Z"} +2026/03/22 06:35:02 ───────────────────────────────────────────────── +2026/03/22 06:35:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:35:07 [metric_collector] {"stage_name":"metric_collector","events_processed":2014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":402.8,"last_update":"2026-03-22T06:35:02.368426036Z"} +2026/03/22 06:35:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:35:02.375616156Z"} +2026/03/22 06:35:07 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.401595430673048,"throughput_eps":0,"last_update":"2026-03-22T06:35:02.479826064Z"} +2026/03/22 06:35:07 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":291.02230078892984,"throughput_eps":0,"last_update":"2026-03-22T06:35:02.479841775Z"} +2026/03/22 06:35:07 [log_collector] {"stage_name":"log_collector","events_processed":3673,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":734.6,"last_update":"2026-03-22T06:35:07.3679611Z"} +2026/03/22 06:35:07 ───────────────────────────────────────────────── +2026/03/22 06:35:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:35:12 [log_collector] {"stage_name":"log_collector","events_processed":3673,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":734.6,"last_update":"2026-03-22T06:35:07.3679611Z"} +2026/03/22 06:35:12 [metric_collector] {"stage_name":"metric_collector","events_processed":2019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":403.8,"last_update":"2026-03-22T06:35:07.368417654Z"} +2026/03/22 06:35:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:35:07.377421047Z"} +2026/03/22 06:35:12 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.401595430673048,"throughput_eps":0,"last_update":"2026-03-22T06:35:07.479683505Z"} +2026/03/22 06:35:12 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":291.02230078892984,"throughput_eps":0,"last_update":"2026-03-22T06:35:07.479700728Z"} +2026/03/22 06:35:12 ───────────────────────────────────────────────── +2026/03/22 06:35:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:35:17 [log_collector] {"stage_name":"log_collector","events_processed":3687,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":737.4,"last_update":"2026-03-22T06:35:12.367983313Z"} +2026/03/22 06:35:17 [metric_collector] {"stage_name":"metric_collector","events_processed":2024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":404.8,"last_update":"2026-03-22T06:35:12.36848332Z"} +2026/03/22 06:35:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":812,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:35:12.375376031Z"} +2026/03/22 06:35:17 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.401595430673048,"throughput_eps":0,"last_update":"2026-03-22T06:35:12.479574897Z"} +2026/03/22 06:35:17 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":291.02230078892984,"throughput_eps":0,"last_update":"2026-03-22T06:35:12.479587903Z"} +2026/03/22 06:35:17 ───────────────────────────────────────────────── +2026/03/22 06:35:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:35:22 [log_collector] {"stage_name":"log_collector","events_processed":3702,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":740.4,"last_update":"2026-03-22T06:35:17.368271409Z"} +2026/03/22 06:35:22 [metric_collector] {"stage_name":"metric_collector","events_processed":2029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":405.8,"last_update":"2026-03-22T06:35:17.368547288Z"} +2026/03/22 06:35:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:35:17.374963285Z"} +2026/03/22 06:35:22 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.401595430673048,"throughput_eps":0,"last_update":"2026-03-22T06:35:17.479196307Z"} +2026/03/22 06:35:22 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":291.02230078892984,"throughput_eps":0,"last_update":"2026-03-22T06:35:17.479210644Z"} +2026/03/22 06:35:22 ───────────────────────────────────────────────── +2026/03/22 06:35:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:35:27 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.401595430673048,"throughput_eps":0,"last_update":"2026-03-22T06:35:22.479579631Z"} +2026/03/22 06:35:27 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":291.02230078892984,"throughput_eps":0,"last_update":"2026-03-22T06:35:22.479592857Z"} +2026/03/22 06:35:27 [log_collector] {"stage_name":"log_collector","events_processed":3703,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":740.6,"last_update":"2026-03-22T06:35:27.368011019Z"} +2026/03/22 06:35:27 [metric_collector] {"stage_name":"metric_collector","events_processed":2034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":406.8,"last_update":"2026-03-22T06:35:22.368670585Z"} +2026/03/22 06:35:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":816,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:35:22.377395324Z"} +2026/03/22 06:35:27 ───────────────────────────────────────────────── +2026/03/22 06:35:27 [ANOMALY] time=2026-03-22T06:35:27Z score=0.8460 method=SEAD details=MAD!:w=0.25,s=0.69 RRCF-fast!:w=0.19,s=0.85 RRCF-mid!:w=0.18,s=0.88 RRCF-slow!:w=0.18,s=0.87 COPOD!:w=0.21,s=0.99 +2026/03/22 06:35:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:35:32 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.401595430673048,"throughput_eps":0,"last_update":"2026-03-22T06:35:27.47998821Z"} +2026/03/22 06:35:32 [transform_engine] {"stage_name":"transform_engine","events_processed":68,"events_dropped":0,"avg_latency_ms":264.0494394311439,"throughput_eps":0,"last_update":"2026-03-22T06:35:27.635018826Z"} +2026/03/22 06:35:32 [log_collector] {"stage_name":"log_collector","events_processed":3703,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":740.6,"last_update":"2026-03-22T06:35:27.368011019Z"} +2026/03/22 06:35:32 [metric_collector] {"stage_name":"metric_collector","events_processed":2039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":407.8,"last_update":"2026-03-22T06:35:27.368426054Z"} +2026/03/22 06:35:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":818,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:35:27.377734089Z"} +2026/03/22 06:35:32 ───────────────────────────────────────────────── +2026/03/22 06:35:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:35:37 [log_collector] {"stage_name":"log_collector","events_processed":3703,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":740.6,"last_update":"2026-03-22T06:35:37.368463688Z"} +2026/03/22 06:35:37 [metric_collector] {"stage_name":"metric_collector","events_processed":2044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":408.8,"last_update":"2026-03-22T06:35:32.369224386Z"} +2026/03/22 06:35:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":820,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:35:32.377801552Z"} +2026/03/22 06:35:37 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":14.179084344538438,"throughput_eps":0,"last_update":"2026-03-22T06:35:32.478959223Z"} +2026/03/22 06:35:37 [transform_engine] {"stage_name":"transform_engine","events_processed":68,"events_dropped":0,"avg_latency_ms":264.0494394311439,"throughput_eps":0,"last_update":"2026-03-22T06:35:32.478926641Z"} +2026/03/22 06:35:37 ───────────────────────────────────────────────── +2026/03/22 06:35:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:35:42 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":14.179084344538438,"throughput_eps":0,"last_update":"2026-03-22T06:35:37.479695632Z"} +2026/03/22 06:35:42 [transform_engine] {"stage_name":"transform_engine","events_processed":68,"events_dropped":0,"avg_latency_ms":264.0494394311439,"throughput_eps":0,"last_update":"2026-03-22T06:35:37.479709869Z"} +2026/03/22 06:35:42 [log_collector] {"stage_name":"log_collector","events_processed":3703,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":740.6,"last_update":"2026-03-22T06:35:37.368463688Z"} +2026/03/22 06:35:42 [metric_collector] {"stage_name":"metric_collector","events_processed":2049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":409.8,"last_update":"2026-03-22T06:35:37.368604528Z"} +2026/03/22 06:35:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:35:37.375383841Z"} +2026/03/22 06:35:42 ───────────────────────────────────────────────── +2026/03/22 06:35:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:35:47 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":14.179084344538438,"throughput_eps":0,"last_update":"2026-03-22T06:35:42.479602531Z"} +2026/03/22 06:35:47 [transform_engine] {"stage_name":"transform_engine","events_processed":68,"events_dropped":0,"avg_latency_ms":264.0494394311439,"throughput_eps":0,"last_update":"2026-03-22T06:35:42.479614033Z"} +2026/03/22 06:35:47 [log_collector] {"stage_name":"log_collector","events_processed":3703,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":740.6,"last_update":"2026-03-22T06:35:42.368307516Z"} +2026/03/22 06:35:47 [metric_collector] {"stage_name":"metric_collector","events_processed":2054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":410.8,"last_update":"2026-03-22T06:35:42.368560119Z"} +2026/03/22 06:35:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:35:42.377423484Z"} +2026/03/22 06:35:47 ───────────────────────────────────────────────── +2026/03/22 06:35:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:35:52 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":14.179084344538438,"throughput_eps":0,"last_update":"2026-03-22T06:35:47.479858172Z"} +2026/03/22 06:35:52 [transform_engine] {"stage_name":"transform_engine","events_processed":68,"events_dropped":0,"avg_latency_ms":264.0494394311439,"throughput_eps":0,"last_update":"2026-03-22T06:35:47.479869233Z"} +2026/03/22 06:35:52 [log_collector] {"stage_name":"log_collector","events_processed":3703,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":740.6,"last_update":"2026-03-22T06:35:47.368725669Z"} +2026/03/22 06:35:52 [metric_collector] {"stage_name":"metric_collector","events_processed":2059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":411.8,"last_update":"2026-03-22T06:35:47.368832283Z"} +2026/03/22 06:35:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":826,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:35:47.378565673Z"} +2026/03/22 06:35:52 ───────────────────────────────────────────────── +2026/03/22 06:35:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:35:57 [log_collector] {"stage_name":"log_collector","events_processed":3703,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":740.6,"last_update":"2026-03-22T06:35:52.368346552Z"} +2026/03/22 06:35:57 [metric_collector] {"stage_name":"metric_collector","events_processed":2064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":412.8,"last_update":"2026-03-22T06:35:52.368699858Z"} +2026/03/22 06:35:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:35:52.377288717Z"} +2026/03/22 06:35:57 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":14.179084344538438,"throughput_eps":0,"last_update":"2026-03-22T06:35:52.479519292Z"} +2026/03/22 06:35:57 [transform_engine] {"stage_name":"transform_engine","events_processed":68,"events_dropped":0,"avg_latency_ms":264.0494394311439,"throughput_eps":0,"last_update":"2026-03-22T06:35:52.479530994Z"} +2026/03/22 06:35:57 ───────────────────────────────────────────────── +2026/03/22 06:36:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:36:02 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":519.5749913449151,"throughput_eps":0,"last_update":"2026-03-22T06:35:59.020963127Z"} +2026/03/22 06:36:02 [log_collector] {"stage_name":"log_collector","events_processed":3703,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":740.6,"last_update":"2026-03-22T06:35:57.368847636Z"} +2026/03/22 06:36:02 [metric_collector] {"stage_name":"metric_collector","events_processed":2069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":413.8,"last_update":"2026-03-22T06:35:57.369275405Z"} +2026/03/22 06:36:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":830,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:35:57.377990065Z"} +2026/03/22 06:36:02 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":14.179084344538438,"throughput_eps":0,"last_update":"2026-03-22T06:35:57.479308232Z"} +2026/03/22 06:36:02 ───────────────────────────────────────────────── +2026/03/22 06:36:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:36:07 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":519.5749913449151,"throughput_eps":0,"last_update":"2026-03-22T06:36:02.479566137Z"} +2026/03/22 06:36:07 [log_collector] {"stage_name":"log_collector","events_processed":3703,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":740.6,"last_update":"2026-03-22T06:36:02.368724602Z"} +2026/03/22 06:36:07 [metric_collector] {"stage_name":"metric_collector","events_processed":2074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":414.8,"last_update":"2026-03-22T06:36:02.369055115Z"} +2026/03/22 06:36:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":832,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:36:02.378328163Z"} +2026/03/22 06:36:07 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":14.947137275630752,"throughput_eps":0,"last_update":"2026-03-22T06:36:02.479598759Z"} +2026/03/22 06:36:07 ───────────────────────────────────────────────── +2026/03/22 06:36:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:36:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:36:07.377654743Z"} +2026/03/22 06:36:12 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":14.947137275630752,"throughput_eps":0,"last_update":"2026-03-22T06:36:07.479894714Z"} +2026/03/22 06:36:12 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":519.5749913449151,"throughput_eps":0,"last_update":"2026-03-22T06:36:07.479870037Z"} +2026/03/22 06:36:12 [log_collector] {"stage_name":"log_collector","events_processed":3703,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":740.6,"last_update":"2026-03-22T06:36:07.368188484Z"} +2026/03/22 06:36:12 [metric_collector] {"stage_name":"metric_collector","events_processed":2079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":415.8,"last_update":"2026-03-22T06:36:07.368755419Z"} +2026/03/22 06:36:12 ───────────────────────────────────────────────── +2026/03/22 06:36:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:36:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:36:12.377776362Z"} +2026/03/22 06:36:17 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":14.947137275630752,"throughput_eps":0,"last_update":"2026-03-22T06:36:12.478974046Z"} +2026/03/22 06:36:17 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":519.5749913449151,"throughput_eps":0,"last_update":"2026-03-22T06:36:12.479009425Z"} +2026/03/22 06:36:17 [log_collector] {"stage_name":"log_collector","events_processed":3703,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":740.6,"last_update":"2026-03-22T06:36:12.368013816Z"} +2026/03/22 06:36:17 [metric_collector] {"stage_name":"metric_collector","events_processed":2084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":416.8,"last_update":"2026-03-22T06:36:12.368967141Z"} +2026/03/22 06:36:17 ───────────────────────────────────────────────── +Saved state: 11 clusters, 3704 messages, reason: none +2026/03/22 06:36:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:36:22 [log_collector] {"stage_name":"log_collector","events_processed":3703,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":740.6,"last_update":"2026-03-22T06:36:17.368053042Z"} +2026/03/22 06:36:22 [metric_collector] {"stage_name":"metric_collector","events_processed":2089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":417.8,"last_update":"2026-03-22T06:36:17.368788079Z"} +2026/03/22 06:36:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:36:17.377578214Z"} +2026/03/22 06:36:22 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":14.947137275630752,"throughput_eps":0,"last_update":"2026-03-22T06:36:17.47993536Z"} +2026/03/22 06:36:22 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":519.5749913449151,"throughput_eps":0,"last_update":"2026-03-22T06:36:17.479906555Z"} +2026/03/22 06:36:22 ───────────────────────────────────────────────── +2026/03/22 06:36:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:36:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:36:22.380750428Z"} +2026/03/22 06:36:27 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":14.947137275630752,"throughput_eps":0,"last_update":"2026-03-22T06:36:22.479656374Z"} +2026/03/22 06:36:27 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":519.5749913449151,"throughput_eps":0,"last_update":"2026-03-22T06:36:22.479671534Z"} +2026/03/22 06:36:27 [log_collector] {"stage_name":"log_collector","events_processed":3708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":741.6,"last_update":"2026-03-22T06:36:22.371434588Z"} +2026/03/22 06:36:27 [metric_collector] {"stage_name":"metric_collector","events_processed":2094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":418.8,"last_update":"2026-03-22T06:36:22.371632848Z"} +2026/03/22 06:36:27 ───────────────────────────────────────────────── +2026/03/22 06:36:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:36:32 [transform_engine] {"stage_name":"transform_engine","events_processed":70,"events_dropped":0,"avg_latency_ms":524.0874190759321,"throughput_eps":0,"last_update":"2026-03-22T06:36:28.021403625Z"} +2026/03/22 06:36:32 [log_collector] {"stage_name":"log_collector","events_processed":3708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":741.6,"last_update":"2026-03-22T06:36:27.3680586Z"} +2026/03/22 06:36:32 [metric_collector] {"stage_name":"metric_collector","events_processed":2099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":419.8,"last_update":"2026-03-22T06:36:27.368404272Z"} +2026/03/22 06:36:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:36:27.380061547Z"} +2026/03/22 06:36:32 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":14.947137275630752,"throughput_eps":0,"last_update":"2026-03-22T06:36:27.479254332Z"} +2026/03/22 06:36:32 ───────────────────────────────────────────────── +2026/03/22 06:36:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:36:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:36:32.382538235Z"} +2026/03/22 06:36:37 [detection_layer] {"stage_name":"detection_layer","events_processed":70,"events_dropped":0,"avg_latency_ms":14.575002220504603,"throughput_eps":0,"last_update":"2026-03-22T06:36:32.479697284Z"} +2026/03/22 06:36:37 [transform_engine] {"stage_name":"transform_engine","events_processed":70,"events_dropped":0,"avg_latency_ms":524.0874190759321,"throughput_eps":0,"last_update":"2026-03-22T06:36:32.479720178Z"} +2026/03/22 06:36:37 [log_collector] {"stage_name":"log_collector","events_processed":3708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":741.6,"last_update":"2026-03-22T06:36:32.368389929Z"} +2026/03/22 06:36:37 [metric_collector] {"stage_name":"metric_collector","events_processed":2104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":420.8,"last_update":"2026-03-22T06:36:32.368694142Z"} +2026/03/22 06:36:37 ───────────────────────────────────────────────── +2026/03/22 06:36:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:36:42 [log_collector] {"stage_name":"log_collector","events_processed":3708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":741.6,"last_update":"2026-03-22T06:36:37.367972462Z"} +2026/03/22 06:36:42 [metric_collector] {"stage_name":"metric_collector","events_processed":2109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":421.8,"last_update":"2026-03-22T06:36:37.368146966Z"} +2026/03/22 06:36:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:36:37.375300897Z"} +2026/03/22 06:36:42 [detection_layer] {"stage_name":"detection_layer","events_processed":70,"events_dropped":0,"avg_latency_ms":14.575002220504603,"throughput_eps":0,"last_update":"2026-03-22T06:36:37.479565615Z"} +2026/03/22 06:36:42 [transform_engine] {"stage_name":"transform_engine","events_processed":70,"events_dropped":0,"avg_latency_ms":524.0874190759321,"throughput_eps":0,"last_update":"2026-03-22T06:36:37.479539795Z"} +2026/03/22 06:36:42 ───────────────────────────────────────────────── +2026/03/22 06:36:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:36:47 [log_collector] {"stage_name":"log_collector","events_processed":3708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":741.6,"last_update":"2026-03-22T06:36:42.368622637Z"} +2026/03/22 06:36:47 [metric_collector] {"stage_name":"metric_collector","events_processed":2114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":422.8,"last_update":"2026-03-22T06:36:42.36879631Z"} +2026/03/22 06:36:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":848,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:36:42.379450253Z"} +2026/03/22 06:36:47 [detection_layer] {"stage_name":"detection_layer","events_processed":70,"events_dropped":0,"avg_latency_ms":14.575002220504603,"throughput_eps":0,"last_update":"2026-03-22T06:36:42.479651067Z"} +2026/03/22 06:36:47 [transform_engine] {"stage_name":"transform_engine","events_processed":70,"events_dropped":0,"avg_latency_ms":524.0874190759321,"throughput_eps":0,"last_update":"2026-03-22T06:36:42.479609698Z"} +2026/03/22 06:36:47 ───────────────────────────────────────────────── +2026/03/22 06:36:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:36:52 [transform_engine] {"stage_name":"transform_engine","events_processed":70,"events_dropped":0,"avg_latency_ms":524.0874190759321,"throughput_eps":0,"last_update":"2026-03-22T06:36:47.480533175Z"} +2026/03/22 06:36:52 [log_collector] {"stage_name":"log_collector","events_processed":3708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":741.6,"last_update":"2026-03-22T06:36:47.368744659Z"} +2026/03/22 06:36:52 [metric_collector] {"stage_name":"metric_collector","events_processed":2119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":423.8,"last_update":"2026-03-22T06:36:47.368859399Z"} +2026/03/22 06:36:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:36:47.376538075Z"} +2026/03/22 06:36:52 [detection_layer] {"stage_name":"detection_layer","events_processed":70,"events_dropped":0,"avg_latency_ms":14.575002220504603,"throughput_eps":0,"last_update":"2026-03-22T06:36:47.480504861Z"} +2026/03/22 06:36:52 ───────────────────────────────────────────────── +2026/03/22 06:36:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:36:57 [metric_collector] {"stage_name":"metric_collector","events_processed":2124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":424.8,"last_update":"2026-03-22T06:36:52.36912306Z"} +2026/03/22 06:36:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:36:52.376247944Z"} +2026/03/22 06:36:57 [detection_layer] {"stage_name":"detection_layer","events_processed":70,"events_dropped":0,"avg_latency_ms":14.575002220504603,"throughput_eps":0,"last_update":"2026-03-22T06:36:52.479475385Z"} +2026/03/22 06:36:57 [transform_engine] {"stage_name":"transform_engine","events_processed":70,"events_dropped":0,"avg_latency_ms":524.0874190759321,"throughput_eps":0,"last_update":"2026-03-22T06:36:52.479458473Z"} +2026/03/22 06:36:57 [log_collector] {"stage_name":"log_collector","events_processed":3708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":741.6,"last_update":"2026-03-22T06:36:52.369181161Z"} +2026/03/22 06:36:57 ───────────────────────────────────────────────── +2026/03/22 06:37:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:37:02 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":439.2218890607457,"throughput_eps":0,"last_update":"2026-03-22T06:36:57.579402098Z"} +2026/03/22 06:37:02 [log_collector] {"stage_name":"log_collector","events_processed":3708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":741.6,"last_update":"2026-03-22T06:36:57.368971535Z"} +2026/03/22 06:37:02 [metric_collector] {"stage_name":"metric_collector","events_processed":2129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":425.8,"last_update":"2026-03-22T06:36:57.369252112Z"} +2026/03/22 06:37:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:36:57.37634233Z"} +2026/03/22 06:37:02 [detection_layer] {"stage_name":"detection_layer","events_processed":70,"events_dropped":0,"avg_latency_ms":14.575002220504603,"throughput_eps":0,"last_update":"2026-03-22T06:36:57.479606982Z"} +2026/03/22 06:37:02 ───────────────────────────────────────────────── +2026/03/22 06:37:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:37:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:37:02.376043019Z"} +2026/03/22 06:37:07 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.808149576403682,"throughput_eps":0,"last_update":"2026-03-22T06:37:02.479302842Z"} +2026/03/22 06:37:07 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":439.2218890607457,"throughput_eps":0,"last_update":"2026-03-22T06:37:02.479273345Z"} +2026/03/22 06:37:07 [log_collector] {"stage_name":"log_collector","events_processed":3711,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":742.2,"last_update":"2026-03-22T06:37:02.367983805Z"} +2026/03/22 06:37:07 [metric_collector] {"stage_name":"metric_collector","events_processed":2134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":426.8,"last_update":"2026-03-22T06:37:02.368415892Z"} +2026/03/22 06:37:07 ───────────────────────────────────────────────── +2026/03/22 06:37:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:37:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:37:07.377993075Z"} +2026/03/22 06:37:12 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.808149576403682,"throughput_eps":0,"last_update":"2026-03-22T06:37:07.47939581Z"} +2026/03/22 06:37:12 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":439.2218890607457,"throughput_eps":0,"last_update":"2026-03-22T06:37:07.479279648Z"} +2026/03/22 06:37:12 [log_collector] {"stage_name":"log_collector","events_processed":3719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":743.8,"last_update":"2026-03-22T06:37:07.368026558Z"} +2026/03/22 06:37:12 [metric_collector] {"stage_name":"metric_collector","events_processed":2139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":427.8,"last_update":"2026-03-22T06:37:07.368657206Z"} +2026/03/22 06:37:12 ───────────────────────────────────────────────── +2026/03/22 06:37:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:37:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":860,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:37:12.37717128Z"} +2026/03/22 06:37:17 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.808149576403682,"throughput_eps":0,"last_update":"2026-03-22T06:37:12.479429273Z"} +2026/03/22 06:37:17 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":439.2218890607457,"throughput_eps":0,"last_update":"2026-03-22T06:37:12.479492654Z"} +2026/03/22 06:37:17 [log_collector] {"stage_name":"log_collector","events_processed":3794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":758.8,"last_update":"2026-03-22T06:37:12.36825732Z"} +2026/03/22 06:37:17 [metric_collector] {"stage_name":"metric_collector","events_processed":2144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":428.8,"last_update":"2026-03-22T06:37:12.368521545Z"} +2026/03/22 06:37:17 ───────────────────────────────────────────────── +2026/03/22 06:37:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:37:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":862,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:37:17.375782479Z"} +2026/03/22 06:37:22 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.808149576403682,"throughput_eps":0,"last_update":"2026-03-22T06:37:17.479125971Z"} +2026/03/22 06:37:22 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":439.2218890607457,"throughput_eps":0,"last_update":"2026-03-22T06:37:17.479098158Z"} +2026/03/22 06:37:22 [log_collector] {"stage_name":"log_collector","events_processed":3986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":797.2,"last_update":"2026-03-22T06:37:17.368238001Z"} +2026/03/22 06:37:22 [metric_collector] {"stage_name":"metric_collector","events_processed":2149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":429.8,"last_update":"2026-03-22T06:37:17.368463814Z"} +2026/03/22 06:37:22 ───────────────────────────────────────────────── +2026/03/22 06:37:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:37:27 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.808149576403682,"throughput_eps":0,"last_update":"2026-03-22T06:37:22.479443738Z"} +2026/03/22 06:37:27 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":439.2218890607457,"throughput_eps":0,"last_update":"2026-03-22T06:37:22.479398281Z"} +2026/03/22 06:37:27 [log_collector] {"stage_name":"log_collector","events_processed":4065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":813,"last_update":"2026-03-22T06:37:22.367991868Z"} +2026/03/22 06:37:27 [metric_collector] {"stage_name":"metric_collector","events_processed":2154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":430.8,"last_update":"2026-03-22T06:37:22.368489041Z"} +2026/03/22 06:37:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:37:22.378172445Z"} +2026/03/22 06:37:27 ───────────────────────────────────────────────── +2026/03/22 06:37:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:37:32 [log_collector] {"stage_name":"log_collector","events_processed":4065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":813,"last_update":"2026-03-22T06:37:27.368989735Z"} +2026/03/22 06:37:32 [metric_collector] {"stage_name":"metric_collector","events_processed":2159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":431.8,"last_update":"2026-03-22T06:37:27.369182092Z"} +2026/03/22 06:37:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:37:27.377951707Z"} +2026/03/22 06:37:32 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.808149576403682,"throughput_eps":0,"last_update":"2026-03-22T06:37:27.479187092Z"} +2026/03/22 06:37:32 [transform_engine] {"stage_name":"transform_engine","events_processed":72,"events_dropped":0,"avg_latency_ms":383.0987518485966,"throughput_eps":0,"last_update":"2026-03-22T06:37:27.637850795Z"} +2026/03/22 06:37:32 ───────────────────────────────────────────────── +2026/03/22 06:37:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:37:37 [transform_engine] {"stage_name":"transform_engine","events_processed":72,"events_dropped":0,"avg_latency_ms":383.0987518485966,"throughput_eps":0,"last_update":"2026-03-22T06:37:32.479154263Z"} +2026/03/22 06:37:37 [log_collector] {"stage_name":"log_collector","events_processed":4065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":813,"last_update":"2026-03-22T06:37:32.367988913Z"} +2026/03/22 06:37:37 [metric_collector] {"stage_name":"metric_collector","events_processed":2164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":432.8,"last_update":"2026-03-22T06:37:32.368468812Z"} +2026/03/22 06:37:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":868,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:37:32.377849246Z"} +2026/03/22 06:37:37 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":14.107634061122948,"throughput_eps":0,"last_update":"2026-03-22T06:37:32.479136789Z"} +2026/03/22 06:37:37 ───────────────────────────────────────────────── +2026/03/22 06:37:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:37:42 [log_collector] {"stage_name":"log_collector","events_processed":4065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":813,"last_update":"2026-03-22T06:37:37.369147715Z"} +2026/03/22 06:37:42 [metric_collector] {"stage_name":"metric_collector","events_processed":2169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":433.8,"last_update":"2026-03-22T06:37:37.369389938Z"} +2026/03/22 06:37:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:37:37.37811133Z"} +2026/03/22 06:37:42 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":14.107634061122948,"throughput_eps":0,"last_update":"2026-03-22T06:37:37.479328699Z"} +2026/03/22 06:37:42 [transform_engine] {"stage_name":"transform_engine","events_processed":72,"events_dropped":0,"avg_latency_ms":383.0987518485966,"throughput_eps":0,"last_update":"2026-03-22T06:37:37.479340983Z"} +2026/03/22 06:37:42 ───────────────────────────────────────────────── +2026/03/22 06:37:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:37:47 [transform_engine] {"stage_name":"transform_engine","events_processed":72,"events_dropped":0,"avg_latency_ms":383.0987518485966,"throughput_eps":0,"last_update":"2026-03-22T06:37:42.479324985Z"} +2026/03/22 06:37:47 [log_collector] {"stage_name":"log_collector","events_processed":4065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":813,"last_update":"2026-03-22T06:37:47.368373458Z"} +2026/03/22 06:37:47 [metric_collector] {"stage_name":"metric_collector","events_processed":2174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":434.8,"last_update":"2026-03-22T06:37:42.368840789Z"} +2026/03/22 06:37:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:37:42.378090573Z"} +2026/03/22 06:37:47 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":14.107634061122948,"throughput_eps":0,"last_update":"2026-03-22T06:37:42.47931223Z"} +2026/03/22 06:37:47 ───────────────────────────────────────────────── +2026/03/22 06:37:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:37:52 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":14.107634061122948,"throughput_eps":0,"last_update":"2026-03-22T06:37:47.479744451Z"} +2026/03/22 06:37:52 [transform_engine] {"stage_name":"transform_engine","events_processed":72,"events_dropped":0,"avg_latency_ms":383.0987518485966,"throughput_eps":0,"last_update":"2026-03-22T06:37:47.479757195Z"} +2026/03/22 06:37:52 [log_collector] {"stage_name":"log_collector","events_processed":4065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":813,"last_update":"2026-03-22T06:37:52.368687358Z"} +2026/03/22 06:37:52 [metric_collector] {"stage_name":"metric_collector","events_processed":2179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":435.8,"last_update":"2026-03-22T06:37:47.369151467Z"} +2026/03/22 06:37:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:37:47.377546414Z"} +2026/03/22 06:37:52 ───────────────────────────────────────────────── +2026/03/22 06:37:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:37:57 [log_collector] {"stage_name":"log_collector","events_processed":4065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":813,"last_update":"2026-03-22T06:37:52.368687358Z"} +2026/03/22 06:37:57 [metric_collector] {"stage_name":"metric_collector","events_processed":2184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":436.8,"last_update":"2026-03-22T06:37:52.369103426Z"} +2026/03/22 06:37:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":876,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:37:52.379104027Z"} +2026/03/22 06:37:57 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":14.107634061122948,"throughput_eps":0,"last_update":"2026-03-22T06:37:52.479297715Z"} +2026/03/22 06:37:57 [transform_engine] {"stage_name":"transform_engine","events_processed":72,"events_dropped":0,"avg_latency_ms":383.0987518485966,"throughput_eps":0,"last_update":"2026-03-22T06:37:52.47931096Z"} +2026/03/22 06:37:57 ───────────────────────────────────────────────── +2026/03/22 06:38:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:38:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:37:57.378322751Z"} +2026/03/22 06:38:02 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":14.107634061122948,"throughput_eps":0,"last_update":"2026-03-22T06:37:57.479545148Z"} +2026/03/22 06:38:02 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":319.6825950788772,"throughput_eps":0,"last_update":"2026-03-22T06:37:57.545578206Z"} +2026/03/22 06:38:02 [log_collector] {"stage_name":"log_collector","events_processed":4065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":813,"last_update":"2026-03-22T06:37:57.368694712Z"} +2026/03/22 06:38:02 [metric_collector] {"stage_name":"metric_collector","events_processed":2189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":437.8,"last_update":"2026-03-22T06:37:57.368996109Z"} +2026/03/22 06:38:02 ───────────────────────────────────────────────── +2026/03/22 06:38:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:38:07 [log_collector] {"stage_name":"log_collector","events_processed":4065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":813,"last_update":"2026-03-22T06:38:02.367968824Z"} +2026/03/22 06:38:07 [metric_collector] {"stage_name":"metric_collector","events_processed":2194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":438.8,"last_update":"2026-03-22T06:38:02.368316859Z"} +2026/03/22 06:38:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:38:02.368069967Z"} +2026/03/22 06:38:07 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.97026084889836,"throughput_eps":0,"last_update":"2026-03-22T06:38:02.479120676Z"} +2026/03/22 06:38:07 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":319.6825950788772,"throughput_eps":0,"last_update":"2026-03-22T06:38:02.479062665Z"} +2026/03/22 06:38:07 ───────────────────────────────────────────────── +2026/03/22 06:38:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:38:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:38:07.378668865Z"} +2026/03/22 06:38:12 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.97026084889836,"throughput_eps":0,"last_update":"2026-03-22T06:38:07.479884008Z"} +2026/03/22 06:38:12 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":319.6825950788772,"throughput_eps":0,"last_update":"2026-03-22T06:38:07.479930547Z"} +2026/03/22 06:38:12 [log_collector] {"stage_name":"log_collector","events_processed":4065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":813,"last_update":"2026-03-22T06:38:07.368380963Z"} +2026/03/22 06:38:12 [metric_collector] {"stage_name":"metric_collector","events_processed":2199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":439.8,"last_update":"2026-03-22T06:38:07.368621623Z"} +2026/03/22 06:38:12 ───────────────────────────────────────────────── +2026/03/22 06:38:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:38:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:38:12.377717802Z"} +2026/03/22 06:38:17 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.97026084889836,"throughput_eps":0,"last_update":"2026-03-22T06:38:12.478965297Z"} +2026/03/22 06:38:17 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":319.6825950788772,"throughput_eps":0,"last_update":"2026-03-22T06:38:12.478853543Z"} +2026/03/22 06:38:17 [log_collector] {"stage_name":"log_collector","events_processed":4065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":813,"last_update":"2026-03-22T06:38:12.368309916Z"} +2026/03/22 06:38:17 [metric_collector] {"stage_name":"metric_collector","events_processed":2204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":440.8,"last_update":"2026-03-22T06:38:12.368904915Z"} +2026/03/22 06:38:17 ───────────────────────────────────────────────── +2026/03/22 06:38:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:38:22 [log_collector] {"stage_name":"log_collector","events_processed":4065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":813,"last_update":"2026-03-22T06:38:17.36816162Z"} +2026/03/22 06:38:22 [metric_collector] {"stage_name":"metric_collector","events_processed":2209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":441.8,"last_update":"2026-03-22T06:38:17.368345604Z"} +2026/03/22 06:38:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":886,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:38:17.377663568Z"} +2026/03/22 06:38:22 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.97026084889836,"throughput_eps":0,"last_update":"2026-03-22T06:38:17.478966659Z"} +2026/03/22 06:38:22 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":319.6825950788772,"throughput_eps":0,"last_update":"2026-03-22T06:38:17.478885613Z"} +2026/03/22 06:38:22 ───────────────────────────────────────────────── +2026/03/22 06:38:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:38:27 [log_collector] {"stage_name":"log_collector","events_processed":4065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":813,"last_update":"2026-03-22T06:38:22.368232646Z"} +2026/03/22 06:38:27 [metric_collector] {"stage_name":"metric_collector","events_processed":2214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":442.8,"last_update":"2026-03-22T06:38:22.368295687Z"} +2026/03/22 06:38:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:38:22.377852638Z"} +2026/03/22 06:38:27 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.97026084889836,"throughput_eps":0,"last_update":"2026-03-22T06:38:22.479099531Z"} +2026/03/22 06:38:27 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":319.6825950788772,"throughput_eps":0,"last_update":"2026-03-22T06:38:22.478968801Z"} +2026/03/22 06:38:27 ───────────────────────────────────────────────── +2026/03/22 06:38:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:38:32 [log_collector] {"stage_name":"log_collector","events_processed":4065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":813,"last_update":"2026-03-22T06:38:27.36894625Z"} +2026/03/22 06:38:32 [metric_collector] {"stage_name":"metric_collector","events_processed":2219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":443.8,"last_update":"2026-03-22T06:38:27.369324134Z"} +2026/03/22 06:38:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:38:27.379519529Z"} +2026/03/22 06:38:32 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.97026084889836,"throughput_eps":0,"last_update":"2026-03-22T06:38:27.479824458Z"} +2026/03/22 06:38:32 [transform_engine] {"stage_name":"transform_engine","events_processed":74,"events_dropped":0,"avg_latency_ms":269.43608506310176,"throughput_eps":0,"last_update":"2026-03-22T06:38:27.548303498Z"} +2026/03/22 06:38:32 ───────────────────────────────────────────────── +Saved state: 11 clusters, 4066 messages, reason: none +2026/03/22 06:38:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:38:37 [log_collector] {"stage_name":"log_collector","events_processed":4068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":813.6,"last_update":"2026-03-22T06:38:37.368859804Z"} +2026/03/22 06:38:37 [metric_collector] {"stage_name":"metric_collector","events_processed":2224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":444.8,"last_update":"2026-03-22T06:38:32.368576382Z"} +2026/03/22 06:38:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":892,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:38:32.376649532Z"} +2026/03/22 06:38:37 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":15.536063879118688,"throughput_eps":0,"last_update":"2026-03-22T06:38:32.479876798Z"} +2026/03/22 06:38:37 [transform_engine] {"stage_name":"transform_engine","events_processed":74,"events_dropped":0,"avg_latency_ms":269.43608506310176,"throughput_eps":0,"last_update":"2026-03-22T06:38:32.479904101Z"} +2026/03/22 06:38:37 ───────────────────────────────────────────────── +2026/03/22 06:38:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:38:42 [log_collector] {"stage_name":"log_collector","events_processed":4068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":813.6,"last_update":"2026-03-22T06:38:37.368859804Z"} +2026/03/22 06:38:42 [metric_collector] {"stage_name":"metric_collector","events_processed":2229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":445.8,"last_update":"2026-03-22T06:38:37.369092199Z"} +2026/03/22 06:38:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:38:37.375193424Z"} +2026/03/22 06:38:42 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":15.536063879118688,"throughput_eps":0,"last_update":"2026-03-22T06:38:37.479416226Z"} +2026/03/22 06:38:42 [transform_engine] {"stage_name":"transform_engine","events_processed":74,"events_dropped":0,"avg_latency_ms":269.43608506310176,"throughput_eps":0,"last_update":"2026-03-22T06:38:37.479450421Z"} +2026/03/22 06:38:42 ───────────────────────────────────────────────── +2026/03/22 06:38:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:38:47 [log_collector] {"stage_name":"log_collector","events_processed":4079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":815.8,"last_update":"2026-03-22T06:38:47.368041499Z"} +2026/03/22 06:38:47 [metric_collector] {"stage_name":"metric_collector","events_processed":2234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":446.8,"last_update":"2026-03-22T06:38:42.368219499Z"} +2026/03/22 06:38:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":896,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:38:42.375860412Z"} +2026/03/22 06:38:47 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":15.536063879118688,"throughput_eps":0,"last_update":"2026-03-22T06:38:42.479100412Z"} +2026/03/22 06:38:47 [transform_engine] {"stage_name":"transform_engine","events_processed":74,"events_dropped":0,"avg_latency_ms":269.43608506310176,"throughput_eps":0,"last_update":"2026-03-22T06:38:42.479116321Z"} +2026/03/22 06:38:47 ───────────────────────────────────────────────── +2026/03/22 06:38:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:38:52 [transform_engine] {"stage_name":"transform_engine","events_processed":74,"events_dropped":0,"avg_latency_ms":269.43608506310176,"throughput_eps":0,"last_update":"2026-03-22T06:38:47.479779763Z"} +2026/03/22 06:38:52 [log_collector] {"stage_name":"log_collector","events_processed":4079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":815.8,"last_update":"2026-03-22T06:38:47.368041499Z"} +2026/03/22 06:38:52 [metric_collector] {"stage_name":"metric_collector","events_processed":2239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":447.8,"last_update":"2026-03-22T06:38:47.368497663Z"} +2026/03/22 06:38:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":898,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:38:47.375431812Z"} +2026/03/22 06:38:52 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":15.536063879118688,"throughput_eps":0,"last_update":"2026-03-22T06:38:47.479732091Z"} +2026/03/22 06:38:52 ───────────────────────────────────────────────── +2026/03/22 06:38:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:38:57 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":15.536063879118688,"throughput_eps":0,"last_update":"2026-03-22T06:38:52.479265508Z"} +2026/03/22 06:38:57 [transform_engine] {"stage_name":"transform_engine","events_processed":74,"events_dropped":0,"avg_latency_ms":269.43608506310176,"throughput_eps":0,"last_update":"2026-03-22T06:38:52.479217776Z"} +2026/03/22 06:38:57 [log_collector] {"stage_name":"log_collector","events_processed":4093,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":818.6,"last_update":"2026-03-22T06:38:52.3688307Z"} +2026/03/22 06:38:57 [metric_collector] {"stage_name":"metric_collector","events_processed":2244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":448.8,"last_update":"2026-03-22T06:38:52.369283758Z"} +2026/03/22 06:38:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":900,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:38:52.376021571Z"} +2026/03/22 06:38:57 ───────────────────────────────────────────────── +2026/03/22 06:39:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:39:02 [metric_collector] {"stage_name":"metric_collector","events_processed":2249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":449.8,"last_update":"2026-03-22T06:38:57.369618482Z"} +2026/03/22 06:39:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:38:57.375529011Z"} +2026/03/22 06:39:02 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":15.536063879118688,"throughput_eps":0,"last_update":"2026-03-22T06:38:57.480415182Z"} +2026/03/22 06:39:02 [transform_engine] {"stage_name":"transform_engine","events_processed":75,"events_dropped":0,"avg_latency_ms":237.11837245048142,"throughput_eps":0,"last_update":"2026-03-22T06:38:57.587639311Z"} +2026/03/22 06:39:02 [log_collector] {"stage_name":"log_collector","events_processed":4098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":819.6,"last_update":"2026-03-22T06:38:57.369384725Z"} +2026/03/22 06:39:02 ───────────────────────────────────────────────── +2026/03/22 06:39:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:39:07 [transform_engine] {"stage_name":"transform_engine","events_processed":75,"events_dropped":0,"avg_latency_ms":237.11837245048142,"throughput_eps":0,"last_update":"2026-03-22T06:39:02.479731957Z"} +2026/03/22 06:39:07 [log_collector] {"stage_name":"log_collector","events_processed":4109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":821.8,"last_update":"2026-03-22T06:39:02.367967965Z"} +2026/03/22 06:39:07 [metric_collector] {"stage_name":"metric_collector","events_processed":2254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":450.8,"last_update":"2026-03-22T06:39:02.368412026Z"} +2026/03/22 06:39:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:39:02.376490094Z"} +2026/03/22 06:39:07 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":15.561963303294952,"throughput_eps":0,"last_update":"2026-03-22T06:39:02.479719073Z"} +2026/03/22 06:39:07 ───────────────────────────────────────────────── +2026/03/22 06:39:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:39:12 [transform_engine] {"stage_name":"transform_engine","events_processed":75,"events_dropped":0,"avg_latency_ms":237.11837245048142,"throughput_eps":0,"last_update":"2026-03-22T06:39:07.47930332Z"} +2026/03/22 06:39:12 [log_collector] {"stage_name":"log_collector","events_processed":4109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":821.8,"last_update":"2026-03-22T06:39:07.368907017Z"} +2026/03/22 06:39:12 [metric_collector] {"stage_name":"metric_collector","events_processed":2259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":451.8,"last_update":"2026-03-22T06:39:07.369224685Z"} +2026/03/22 06:39:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":906,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:39:07.377945977Z"} +2026/03/22 06:39:12 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":15.561963303294952,"throughput_eps":0,"last_update":"2026-03-22T06:39:07.479286237Z"} +2026/03/22 06:39:12 ───────────────────────────────────────────────── +2026/03/22 06:39:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:39:17 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":15.561963303294952,"throughput_eps":0,"last_update":"2026-03-22T06:39:12.479213613Z"} +2026/03/22 06:39:17 [transform_engine] {"stage_name":"transform_engine","events_processed":75,"events_dropped":0,"avg_latency_ms":237.11837245048142,"throughput_eps":0,"last_update":"2026-03-22T06:39:12.479226217Z"} +2026/03/22 06:39:17 [log_collector] {"stage_name":"log_collector","events_processed":4109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":821.8,"last_update":"2026-03-22T06:39:12.368918534Z"} +2026/03/22 06:39:17 [metric_collector] {"stage_name":"metric_collector","events_processed":2264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":452.8,"last_update":"2026-03-22T06:39:12.369301597Z"} +2026/03/22 06:39:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":908,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:39:12.377989084Z"} +2026/03/22 06:39:17 ───────────────────────────────────────────────── +2026/03/22 06:39:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:39:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:39:17.376891176Z"} +2026/03/22 06:39:22 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":15.561963303294952,"throughput_eps":0,"last_update":"2026-03-22T06:39:17.479188779Z"} +2026/03/22 06:39:22 [transform_engine] {"stage_name":"transform_engine","events_processed":75,"events_dropped":0,"avg_latency_ms":237.11837245048142,"throughput_eps":0,"last_update":"2026-03-22T06:39:17.479202055Z"} +2026/03/22 06:39:22 [log_collector] {"stage_name":"log_collector","events_processed":4109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":821.8,"last_update":"2026-03-22T06:39:22.368621935Z"} +2026/03/22 06:39:22 [metric_collector] {"stage_name":"metric_collector","events_processed":2269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":453.8,"last_update":"2026-03-22T06:39:17.368639654Z"} +2026/03/22 06:39:22 ───────────────────────────────────────────────── +2026/03/22 06:39:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:39:27 [metric_collector] {"stage_name":"metric_collector","events_processed":2274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":454.8,"last_update":"2026-03-22T06:39:22.368954974Z"} +2026/03/22 06:39:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":912,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:39:22.378308356Z"} +2026/03/22 06:39:27 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":15.561963303294952,"throughput_eps":0,"last_update":"2026-03-22T06:39:22.479507055Z"} +2026/03/22 06:39:27 [transform_engine] {"stage_name":"transform_engine","events_processed":75,"events_dropped":0,"avg_latency_ms":237.11837245048142,"throughput_eps":0,"last_update":"2026-03-22T06:39:22.479519238Z"} +2026/03/22 06:39:27 [log_collector] {"stage_name":"log_collector","events_processed":4109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":821.8,"last_update":"2026-03-22T06:39:22.368621935Z"} +2026/03/22 06:39:27 ───────────────────────────────────────────────── +2026/03/22 06:39:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:39:32 [metric_collector] {"stage_name":"metric_collector","events_processed":2279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":455.8,"last_update":"2026-03-22T06:39:27.368976071Z"} +2026/03/22 06:39:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:39:27.378155038Z"} +2026/03/22 06:39:32 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":15.561963303294952,"throughput_eps":0,"last_update":"2026-03-22T06:39:27.479503213Z"} +2026/03/22 06:39:32 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":223.91690456038515,"throughput_eps":0,"last_update":"2026-03-22T06:39:27.650497753Z"} +2026/03/22 06:39:32 [log_collector] {"stage_name":"log_collector","events_processed":4109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":821.8,"last_update":"2026-03-22T06:39:27.368493527Z"} +2026/03/22 06:39:32 ───────────────────────────────────────────────── +2026/03/22 06:39:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:39:37 [metric_collector] {"stage_name":"metric_collector","events_processed":2284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":456.8,"last_update":"2026-03-22T06:39:32.369145511Z"} +2026/03/22 06:39:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:39:32.378689768Z"} +2026/03/22 06:39:37 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.992537242635962,"throughput_eps":0,"last_update":"2026-03-22T06:39:32.479268741Z"} +2026/03/22 06:39:37 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":223.91690456038515,"throughput_eps":0,"last_update":"2026-03-22T06:39:32.479289361Z"} +2026/03/22 06:39:37 [log_collector] {"stage_name":"log_collector","events_processed":4109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":821.8,"last_update":"2026-03-22T06:39:32.368845727Z"} +2026/03/22 06:39:37 ───────────────────────────────────────────────── +2026/03/22 06:39:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:39:42 [log_collector] {"stage_name":"log_collector","events_processed":4109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":821.8,"last_update":"2026-03-22T06:39:37.368829305Z"} +2026/03/22 06:39:42 [metric_collector] {"stage_name":"metric_collector","events_processed":2289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":457.8,"last_update":"2026-03-22T06:39:37.369391573Z"} +2026/03/22 06:39:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":918,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:39:37.375951374Z"} +2026/03/22 06:39:42 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.992537242635962,"throughput_eps":0,"last_update":"2026-03-22T06:39:37.479255955Z"} +2026/03/22 06:39:42 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":223.91690456038515,"throughput_eps":0,"last_update":"2026-03-22T06:39:37.4792738Z"} +2026/03/22 06:39:42 ───────────────────────────────────────────────── +2026/03/22 06:39:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:39:47 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":223.91690456038515,"throughput_eps":0,"last_update":"2026-03-22T06:39:42.479396084Z"} +2026/03/22 06:39:47 [log_collector] {"stage_name":"log_collector","events_processed":4109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":821.8,"last_update":"2026-03-22T06:39:42.36896696Z"} +2026/03/22 06:39:47 [metric_collector] {"stage_name":"metric_collector","events_processed":2294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":458.8,"last_update":"2026-03-22T06:39:42.369128138Z"} +2026/03/22 06:39:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":920,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:39:42.378167078Z"} +2026/03/22 06:39:47 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.992537242635962,"throughput_eps":0,"last_update":"2026-03-22T06:39:42.479382739Z"} +2026/03/22 06:39:47 ───────────────────────────────────────────────── +2026/03/22 06:39:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:39:52 [log_collector] {"stage_name":"log_collector","events_processed":4109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":821.8,"last_update":"2026-03-22T06:39:47.368416277Z"} +2026/03/22 06:39:52 [metric_collector] {"stage_name":"metric_collector","events_processed":2299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":459.8,"last_update":"2026-03-22T06:39:47.369130315Z"} +2026/03/22 06:39:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:39:47.377538697Z"} +2026/03/22 06:39:52 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.992537242635962,"throughput_eps":0,"last_update":"2026-03-22T06:39:47.479791303Z"} +2026/03/22 06:39:52 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":223.91690456038515,"throughput_eps":0,"last_update":"2026-03-22T06:39:47.479804879Z"} +2026/03/22 06:39:52 ───────────────────────────────────────────────── +2026/03/22 06:39:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:39:57 [log_collector] {"stage_name":"log_collector","events_processed":4109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":821.8,"last_update":"2026-03-22T06:39:52.368410471Z"} +2026/03/22 06:39:57 [metric_collector] {"stage_name":"metric_collector","events_processed":2304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":460.8,"last_update":"2026-03-22T06:39:52.368678413Z"} +2026/03/22 06:39:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:39:52.378560948Z"} +2026/03/22 06:39:57 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.992537242635962,"throughput_eps":0,"last_update":"2026-03-22T06:39:52.479799192Z"} +2026/03/22 06:39:57 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":223.91690456038515,"throughput_eps":0,"last_update":"2026-03-22T06:39:52.479812208Z"} +2026/03/22 06:39:57 ───────────────────────────────────────────────── +2026/03/22 06:40:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:40:02 [log_collector] {"stage_name":"log_collector","events_processed":4109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":821.8,"last_update":"2026-03-22T06:39:57.368437168Z"} +2026/03/22 06:40:02 [metric_collector] {"stage_name":"metric_collector","events_processed":2309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":461.8,"last_update":"2026-03-22T06:39:57.368879886Z"} +2026/03/22 06:40:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:39:57.378176098Z"} +2026/03/22 06:40:02 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.992537242635962,"throughput_eps":0,"last_update":"2026-03-22T06:39:57.479420995Z"} +2026/03/22 06:40:02 [transform_engine] {"stage_name":"transform_engine","events_processed":77,"events_dropped":0,"avg_latency_ms":188.58943764830815,"throughput_eps":0,"last_update":"2026-03-22T06:39:57.526669206Z"} +2026/03/22 06:40:02 ───────────────────────────────────────────────── +Saved state: 11 clusters, 4110 messages, reason: none +2026/03/22 06:40:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:40:07 [metric_collector] {"stage_name":"metric_collector","events_processed":2314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":462.8,"last_update":"2026-03-22T06:40:02.36821471Z"} +2026/03/22 06:40:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:40:02.386150146Z"} +2026/03/22 06:40:07 [detection_layer] {"stage_name":"detection_layer","events_processed":77,"events_dropped":0,"avg_latency_ms":16.81243499410877,"throughput_eps":0,"last_update":"2026-03-22T06:40:02.479382218Z"} +2026/03/22 06:40:07 [transform_engine] {"stage_name":"transform_engine","events_processed":77,"events_dropped":0,"avg_latency_ms":188.58943764830815,"throughput_eps":0,"last_update":"2026-03-22T06:40:02.47939398Z"} +2026/03/22 06:40:07 [log_collector] {"stage_name":"log_collector","events_processed":4109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":821.8,"last_update":"2026-03-22T06:40:02.367947427Z"} +2026/03/22 06:40:07 ───────────────────────────────────────────────── +2026/03/22 06:40:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:40:12 [log_collector] {"stage_name":"log_collector","events_processed":4114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":822.8,"last_update":"2026-03-22T06:40:07.36798014Z"} +2026/03/22 06:40:12 [metric_collector] {"stage_name":"metric_collector","events_processed":2319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":463.8,"last_update":"2026-03-22T06:40:07.368214298Z"} +2026/03/22 06:40:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":930,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:40:07.376020417Z"} +2026/03/22 06:40:12 [detection_layer] {"stage_name":"detection_layer","events_processed":77,"events_dropped":0,"avg_latency_ms":16.81243499410877,"throughput_eps":0,"last_update":"2026-03-22T06:40:07.47921676Z"} +2026/03/22 06:40:12 [transform_engine] {"stage_name":"transform_engine","events_processed":77,"events_dropped":0,"avg_latency_ms":188.58943764830815,"throughput_eps":0,"last_update":"2026-03-22T06:40:07.479229374Z"} +2026/03/22 06:40:12 ───────────────────────────────────────────────── +2026/03/22 06:40:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:40:17 [transform_engine] {"stage_name":"transform_engine","events_processed":77,"events_dropped":0,"avg_latency_ms":188.58943764830815,"throughput_eps":0,"last_update":"2026-03-22T06:40:12.479587932Z"} +2026/03/22 06:40:17 [log_collector] {"stage_name":"log_collector","events_processed":4114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":822.8,"last_update":"2026-03-22T06:40:12.368459228Z"} +2026/03/22 06:40:17 [metric_collector] {"stage_name":"metric_collector","events_processed":2324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":464.8,"last_update":"2026-03-22T06:40:12.368680993Z"} +2026/03/22 06:40:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:40:12.37533742Z"} +2026/03/22 06:40:17 [detection_layer] {"stage_name":"detection_layer","events_processed":77,"events_dropped":0,"avg_latency_ms":16.81243499410877,"throughput_eps":0,"last_update":"2026-03-22T06:40:12.479564407Z"} +2026/03/22 06:40:17 ───────────────────────────────────────────────── +2026/03/22 06:40:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:40:22 [log_collector] {"stage_name":"log_collector","events_processed":4114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":822.8,"last_update":"2026-03-22T06:40:17.368681847Z"} +2026/03/22 06:40:22 [metric_collector] {"stage_name":"metric_collector","events_processed":2328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":465.6,"last_update":"2026-03-22T06:40:17.368687288Z"} +2026/03/22 06:40:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:40:17.384083211Z"} +2026/03/22 06:40:22 [detection_layer] {"stage_name":"detection_layer","events_processed":77,"events_dropped":0,"avg_latency_ms":16.81243499410877,"throughput_eps":0,"last_update":"2026-03-22T06:40:17.479254536Z"} +2026/03/22 06:40:22 [transform_engine] {"stage_name":"transform_engine","events_processed":77,"events_dropped":0,"avg_latency_ms":188.58943764830815,"throughput_eps":0,"last_update":"2026-03-22T06:40:17.47926749Z"} +2026/03/22 06:40:22 ───────────────────────────────────────────────── +2026/03/22 06:40:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:40:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:40:22.374535653Z"} +2026/03/22 06:40:27 [detection_layer] {"stage_name":"detection_layer","events_processed":77,"events_dropped":0,"avg_latency_ms":16.81243499410877,"throughput_eps":0,"last_update":"2026-03-22T06:40:22.479747635Z"} +2026/03/22 06:40:27 [transform_engine] {"stage_name":"transform_engine","events_processed":77,"events_dropped":0,"avg_latency_ms":188.58943764830815,"throughput_eps":0,"last_update":"2026-03-22T06:40:22.479761141Z"} +2026/03/22 06:40:27 [log_collector] {"stage_name":"log_collector","events_processed":4114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":822.8,"last_update":"2026-03-22T06:40:22.368383231Z"} +2026/03/22 06:40:27 [metric_collector] {"stage_name":"metric_collector","events_processed":2334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":466.8,"last_update":"2026-03-22T06:40:22.368444488Z"} +2026/03/22 06:40:27 ───────────────────────────────────────────────── +2026/03/22 06:40:29 [ANOMALY] time=2026-03-22T06:40:29Z score=0.9940 method=SEAD details=MAD!:w=0.25,s=0.99 RRCF-fast!:w=0.19,s=1.00 RRCF-mid!:w=0.18,s=1.00 RRCF-slow!:w=0.18,s=1.00 COPOD!:w=0.21,s=0.99 +2026/03/22 06:40:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:40:32 [log_collector] {"stage_name":"log_collector","events_processed":4114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":822.8,"last_update":"2026-03-22T06:40:32.368495262Z"} +2026/03/22 06:40:32 [metric_collector] {"stage_name":"metric_collector","events_processed":2338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":467.6,"last_update":"2026-03-22T06:40:27.367919791Z"} +2026/03/22 06:40:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:40:27.379657288Z"} +2026/03/22 06:40:32 [detection_layer] {"stage_name":"detection_layer","events_processed":77,"events_dropped":0,"avg_latency_ms":16.81243499410877,"throughput_eps":0,"last_update":"2026-03-22T06:40:27.479822866Z"} +2026/03/22 06:40:32 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":563.1024405186465,"throughput_eps":0,"last_update":"2026-03-22T06:40:29.540991015Z"} +2026/03/22 06:40:32 ───────────────────────────────────────────────── +2026/03/22 06:40:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:40:37 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":563.1024405186465,"throughput_eps":0,"last_update":"2026-03-22T06:40:32.479206596Z"} +2026/03/22 06:40:37 [log_collector] {"stage_name":"log_collector","events_processed":4114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":822.8,"last_update":"2026-03-22T06:40:32.368495262Z"} +2026/03/22 06:40:37 [metric_collector] {"stage_name":"metric_collector","events_processed":2344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":468.8,"last_update":"2026-03-22T06:40:32.369019265Z"} +2026/03/22 06:40:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":940,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:40:32.377042841Z"} +2026/03/22 06:40:37 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":14.934458995287017,"throughput_eps":0,"last_update":"2026-03-22T06:40:32.479181357Z"} +2026/03/22 06:40:37 ───────────────────────────────────────────────── +2026/03/22 06:40:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:40:42 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":563.1024405186465,"throughput_eps":0,"last_update":"2026-03-22T06:40:37.479315464Z"} +2026/03/22 06:40:42 [log_collector] {"stage_name":"log_collector","events_processed":4114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":822.8,"last_update":"2026-03-22T06:40:42.367989057Z"} +2026/03/22 06:40:42 [metric_collector] {"stage_name":"metric_collector","events_processed":2353,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":470.6,"last_update":"2026-03-22T06:40:42.367965031Z"} +2026/03/22 06:40:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:40:37.376181312Z"} +2026/03/22 06:40:42 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":14.934458995287017,"throughput_eps":0,"last_update":"2026-03-22T06:40:37.479338118Z"} +2026/03/22 06:40:42 ───────────────────────────────────────────────── +2026/03/22 06:40:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:40:47 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":563.1024405186465,"throughput_eps":0,"last_update":"2026-03-22T06:40:42.479309306Z"} +2026/03/22 06:40:47 [log_collector] {"stage_name":"log_collector","events_processed":4114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":822.8,"last_update":"2026-03-22T06:40:42.367989057Z"} +2026/03/22 06:40:47 [metric_collector] {"stage_name":"metric_collector","events_processed":2353,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":470.6,"last_update":"2026-03-22T06:40:42.367965031Z"} +2026/03/22 06:40:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:40:42.375105786Z"} +2026/03/22 06:40:47 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":14.934458995287017,"throughput_eps":0,"last_update":"2026-03-22T06:40:42.479338282Z"} +2026/03/22 06:40:47 ───────────────────────────────────────────────── +2026/03/22 06:40:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:40:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:40:47.374268379Z"} +2026/03/22 06:40:52 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":14.934458995287017,"throughput_eps":0,"last_update":"2026-03-22T06:40:47.479559963Z"} +2026/03/22 06:40:52 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":563.1024405186465,"throughput_eps":0,"last_update":"2026-03-22T06:40:47.479528964Z"} +2026/03/22 06:40:52 [log_collector] {"stage_name":"log_collector","events_processed":4117,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":823.4,"last_update":"2026-03-22T06:40:47.368166364Z"} +2026/03/22 06:40:52 [metric_collector] {"stage_name":"metric_collector","events_processed":2359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":471.8,"last_update":"2026-03-22T06:40:47.36816424Z"} +2026/03/22 06:40:52 ───────────────────────────────────────────────── +2026/03/22 06:40:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:40:57 [metric_collector] {"stage_name":"metric_collector","events_processed":2364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":472.8,"last_update":"2026-03-22T06:40:52.369173572Z"} +2026/03/22 06:40:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:40:52.378467579Z"} +2026/03/22 06:40:57 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":14.934458995287017,"throughput_eps":0,"last_update":"2026-03-22T06:40:52.47971606Z"} +2026/03/22 06:40:57 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":563.1024405186465,"throughput_eps":0,"last_update":"2026-03-22T06:40:52.479673009Z"} +2026/03/22 06:40:57 [log_collector] {"stage_name":"log_collector","events_processed":4125,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":825,"last_update":"2026-03-22T06:40:52.369029726Z"} +2026/03/22 06:40:57 ───────────────────────────────────────────────── +2026/03/22 06:40:57 [ANOMALY] time=2026-03-22T06:40:57Z score=0.9538 method=SEAD details=MAD!:w=0.25,s=0.92 RRCF-fast!:w=0.19,s=1.00 RRCF-mid!:w=0.18,s=1.00 RRCF-slow!:w=0.18,s=1.00 COPOD!:w=0.21,s=0.87 +2026/03/22 06:41:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:41:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:40:57.376016868Z"} +2026/03/22 06:41:02 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":14.934458995287017,"throughput_eps":0,"last_update":"2026-03-22T06:40:57.479429563Z"} +2026/03/22 06:41:02 [transform_engine] {"stage_name":"transform_engine","events_processed":79,"events_dropped":0,"avg_latency_ms":473.79599481491726,"throughput_eps":0,"last_update":"2026-03-22T06:40:57.596013691Z"} +2026/03/22 06:41:02 [log_collector] {"stage_name":"log_collector","events_processed":4223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":844.6,"last_update":"2026-03-22T06:40:57.36823747Z"} +2026/03/22 06:41:02 [metric_collector] {"stage_name":"metric_collector","events_processed":2369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":473.8,"last_update":"2026-03-22T06:40:57.368547123Z"} +2026/03/22 06:41:02 ───────────────────────────────────────────────── +2026/03/22 06:41:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:41:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:41:02.376016691Z"} +2026/03/22 06:41:07 [detection_layer] {"stage_name":"detection_layer","events_processed":79,"events_dropped":0,"avg_latency_ms":14.338467796229613,"throughput_eps":0,"last_update":"2026-03-22T06:41:02.47947311Z"} +2026/03/22 06:41:07 [transform_engine] {"stage_name":"transform_engine","events_processed":79,"events_dropped":0,"avg_latency_ms":473.79599481491726,"throughput_eps":0,"last_update":"2026-03-22T06:41:02.479490544Z"} +2026/03/22 06:41:07 [log_collector] {"stage_name":"log_collector","events_processed":4403,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":880.6,"last_update":"2026-03-22T06:41:02.367973459Z"} +2026/03/22 06:41:07 [metric_collector] {"stage_name":"metric_collector","events_processed":2374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":474.8,"last_update":"2026-03-22T06:41:02.368602223Z"} +2026/03/22 06:41:07 ───────────────────────────────────────────────── +2026/03/22 06:41:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:41:12 [detection_layer] {"stage_name":"detection_layer","events_processed":79,"events_dropped":0,"avg_latency_ms":14.338467796229613,"throughput_eps":0,"last_update":"2026-03-22T06:41:07.478946869Z"} +2026/03/22 06:41:12 [transform_engine] {"stage_name":"transform_engine","events_processed":79,"events_dropped":0,"avg_latency_ms":473.79599481491726,"throughput_eps":0,"last_update":"2026-03-22T06:41:07.478894639Z"} +2026/03/22 06:41:12 [log_collector] {"stage_name":"log_collector","events_processed":4481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":896.2,"last_update":"2026-03-22T06:41:07.368219856Z"} +2026/03/22 06:41:12 [metric_collector] {"stage_name":"metric_collector","events_processed":2379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":475.8,"last_update":"2026-03-22T06:41:07.368663566Z"} +2026/03/22 06:41:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:41:07.376746586Z"} +2026/03/22 06:41:12 ───────────────────────────────────────────────── +2026/03/22 06:41:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:41:17 [detection_layer] {"stage_name":"detection_layer","events_processed":79,"events_dropped":0,"avg_latency_ms":14.338467796229613,"throughput_eps":0,"last_update":"2026-03-22T06:41:12.479476913Z"} +2026/03/22 06:41:17 [transform_engine] {"stage_name":"transform_engine","events_processed":79,"events_dropped":0,"avg_latency_ms":473.79599481491726,"throughput_eps":0,"last_update":"2026-03-22T06:41:12.479591141Z"} +2026/03/22 06:41:17 [log_collector] {"stage_name":"log_collector","events_processed":4481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":896.2,"last_update":"2026-03-22T06:41:12.368750893Z"} +2026/03/22 06:41:17 [metric_collector] {"stage_name":"metric_collector","events_processed":2384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":476.8,"last_update":"2026-03-22T06:41:12.369015529Z"} +2026/03/22 06:41:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:41:12.379270708Z"} +2026/03/22 06:41:17 ───────────────────────────────────────────────── +2026/03/22 06:41:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:41:22 [detection_layer] {"stage_name":"detection_layer","events_processed":79,"events_dropped":0,"avg_latency_ms":14.338467796229613,"throughput_eps":0,"last_update":"2026-03-22T06:41:17.479557188Z"} +2026/03/22 06:41:22 [transform_engine] {"stage_name":"transform_engine","events_processed":79,"events_dropped":0,"avg_latency_ms":473.79599481491726,"throughput_eps":0,"last_update":"2026-03-22T06:41:17.479598839Z"} +2026/03/22 06:41:22 [log_collector] {"stage_name":"log_collector","events_processed":4481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":896.2,"last_update":"2026-03-22T06:41:17.36841444Z"} +2026/03/22 06:41:22 [metric_collector] {"stage_name":"metric_collector","events_processed":2389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":477.8,"last_update":"2026-03-22T06:41:17.368982969Z"} +2026/03/22 06:41:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":958,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:41:17.37827872Z"} +2026/03/22 06:41:22 ───────────────────────────────────────────────── +2026/03/22 06:41:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:41:27 [detection_layer] {"stage_name":"detection_layer","events_processed":79,"events_dropped":0,"avg_latency_ms":14.338467796229613,"throughput_eps":0,"last_update":"2026-03-22T06:41:22.479107052Z"} +2026/03/22 06:41:27 [transform_engine] {"stage_name":"transform_engine","events_processed":79,"events_dropped":0,"avg_latency_ms":473.79599481491726,"throughput_eps":0,"last_update":"2026-03-22T06:41:22.479134985Z"} +2026/03/22 06:41:27 [log_collector] {"stage_name":"log_collector","events_processed":4481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":896.2,"last_update":"2026-03-22T06:41:22.368070166Z"} +2026/03/22 06:41:27 [metric_collector] {"stage_name":"metric_collector","events_processed":2393,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":478.6,"last_update":"2026-03-22T06:41:22.368177792Z"} +2026/03/22 06:41:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:41:22.3759152Z"} +2026/03/22 06:41:27 ───────────────────────────────────────────────── +2026/03/22 06:41:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:41:32 [metric_collector] {"stage_name":"metric_collector","events_processed":2398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":479.6,"last_update":"2026-03-22T06:41:27.368565293Z"} +2026/03/22 06:41:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":962,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:41:27.377779388Z"} +2026/03/22 06:41:32 [detection_layer] {"stage_name":"detection_layer","events_processed":79,"events_dropped":0,"avg_latency_ms":14.338467796229613,"throughput_eps":0,"last_update":"2026-03-22T06:41:27.478968654Z"} +2026/03/22 06:41:32 [transform_engine] {"stage_name":"transform_engine","events_processed":80,"events_dropped":0,"avg_latency_ms":401.56532585193384,"throughput_eps":0,"last_update":"2026-03-22T06:41:27.591553744Z"} +2026/03/22 06:41:32 [log_collector] {"stage_name":"log_collector","events_processed":4481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":896.2,"last_update":"2026-03-22T06:41:27.368509556Z"} +2026/03/22 06:41:32 ───────────────────────────────────────────────── +2026/03/22 06:41:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:41:37 [log_collector] {"stage_name":"log_collector","events_processed":4481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":896.2,"last_update":"2026-03-22T06:41:32.368502493Z"} +2026/03/22 06:41:37 [metric_collector] {"stage_name":"metric_collector","events_processed":2404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":480.8,"last_update":"2026-03-22T06:41:32.36862615Z"} +2026/03/22 06:41:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:41:32.37824478Z"} +2026/03/22 06:41:37 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":14.499416236983691,"throughput_eps":0,"last_update":"2026-03-22T06:41:32.47948321Z"} +2026/03/22 06:41:37 [transform_engine] {"stage_name":"transform_engine","events_processed":80,"events_dropped":0,"avg_latency_ms":401.56532585193384,"throughput_eps":0,"last_update":"2026-03-22T06:41:32.479588441Z"} +2026/03/22 06:41:37 ───────────────────────────────────────────────── +2026/03/22 06:41:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:41:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:41:37.377781266Z"} +2026/03/22 06:41:42 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":14.499416236983691,"throughput_eps":0,"last_update":"2026-03-22T06:41:37.478995821Z"} +2026/03/22 06:41:42 [transform_engine] {"stage_name":"transform_engine","events_processed":80,"events_dropped":0,"avg_latency_ms":401.56532585193384,"throughput_eps":0,"last_update":"2026-03-22T06:41:37.479055636Z"} +2026/03/22 06:41:42 [log_collector] {"stage_name":"log_collector","events_processed":4481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":896.2,"last_update":"2026-03-22T06:41:37.368715365Z"} +2026/03/22 06:41:42 [metric_collector] {"stage_name":"metric_collector","events_processed":2409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":481.8,"last_update":"2026-03-22T06:41:37.369106364Z"} +2026/03/22 06:41:42 ───────────────────────────────────────────────── +2026/03/22 06:41:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:41:47 [log_collector] {"stage_name":"log_collector","events_processed":4481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":896.2,"last_update":"2026-03-22T06:41:42.36809236Z"} +2026/03/22 06:41:47 [metric_collector] {"stage_name":"metric_collector","events_processed":2414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":482.8,"last_update":"2026-03-22T06:41:42.36885474Z"} +2026/03/22 06:41:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:41:42.376674324Z"} +2026/03/22 06:41:47 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":14.499416236983691,"throughput_eps":0,"last_update":"2026-03-22T06:41:42.479995593Z"} +2026/03/22 06:41:47 [transform_engine] {"stage_name":"transform_engine","events_processed":80,"events_dropped":0,"avg_latency_ms":401.56532585193384,"throughput_eps":0,"last_update":"2026-03-22T06:41:42.478842855Z"} +2026/03/22 06:41:47 ───────────────────────────────────────────────── +2026/03/22 06:41:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:41:52 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":14.499416236983691,"throughput_eps":0,"last_update":"2026-03-22T06:41:47.478961703Z"} +2026/03/22 06:41:52 [transform_engine] {"stage_name":"transform_engine","events_processed":80,"events_dropped":0,"avg_latency_ms":401.56532585193384,"throughput_eps":0,"last_update":"2026-03-22T06:41:47.47892901Z"} +2026/03/22 06:41:52 [log_collector] {"stage_name":"log_collector","events_processed":4481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":896.2,"last_update":"2026-03-22T06:41:47.367994753Z"} +2026/03/22 06:41:52 [metric_collector] {"stage_name":"metric_collector","events_processed":2419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":483.8,"last_update":"2026-03-22T06:41:47.368376233Z"} +2026/03/22 06:41:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":970,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:41:47.377786544Z"} +2026/03/22 06:41:52 ───────────────────────────────────────────────── +2026/03/22 06:41:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:41:57 [transform_engine] {"stage_name":"transform_engine","events_processed":80,"events_dropped":0,"avg_latency_ms":401.56532585193384,"throughput_eps":0,"last_update":"2026-03-22T06:41:52.479878293Z"} +2026/03/22 06:41:57 [log_collector] {"stage_name":"log_collector","events_processed":4481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":896.2,"last_update":"2026-03-22T06:41:52.367984208Z"} +2026/03/22 06:41:57 [metric_collector] {"stage_name":"metric_collector","events_processed":2424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":484.8,"last_update":"2026-03-22T06:41:52.368448296Z"} +2026/03/22 06:41:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:41:52.377413174Z"} +2026/03/22 06:41:57 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":14.499416236983691,"throughput_eps":0,"last_update":"2026-03-22T06:41:52.479836011Z"} +2026/03/22 06:41:57 ───────────────────────────────────────────────── +2026/03/22 06:42:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:42:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:41:57.377813848Z"} +2026/03/22 06:42:02 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":14.499416236983691,"throughput_eps":0,"last_update":"2026-03-22T06:41:57.47903253Z"} +2026/03/22 06:42:02 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":334.9415174815471,"throughput_eps":0,"last_update":"2026-03-22T06:41:57.547407468Z"} +2026/03/22 06:42:02 [log_collector] {"stage_name":"log_collector","events_processed":4481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":896.2,"last_update":"2026-03-22T06:41:57.368476347Z"} +2026/03/22 06:42:02 [metric_collector] {"stage_name":"metric_collector","events_processed":2429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":485.8,"last_update":"2026-03-22T06:41:57.368873268Z"} +2026/03/22 06:42:02 ───────────────────────────────────────────────── +2026/03/22 06:42:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:42:07 [log_collector] {"stage_name":"log_collector","events_processed":4481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":896.2,"last_update":"2026-03-22T06:42:02.368838311Z"} +2026/03/22 06:42:07 [metric_collector] {"stage_name":"metric_collector","events_processed":2434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":486.8,"last_update":"2026-03-22T06:42:02.369246793Z"} +2026/03/22 06:42:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:42:02.376027038Z"} +2026/03/22 06:42:07 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":14.730195989586955,"throughput_eps":0,"last_update":"2026-03-22T06:42:02.479362883Z"} +2026/03/22 06:42:07 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":334.9415174815471,"throughput_eps":0,"last_update":"2026-03-22T06:42:02.479434661Z"} +2026/03/22 06:42:07 ───────────────────────────────────────────────── +2026/03/22 06:42:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:42:12 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":334.9415174815471,"throughput_eps":0,"last_update":"2026-03-22T06:42:07.479572027Z"} +2026/03/22 06:42:12 [log_collector] {"stage_name":"log_collector","events_processed":4481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":896.2,"last_update":"2026-03-22T06:42:07.368419473Z"} +2026/03/22 06:42:12 [metric_collector] {"stage_name":"metric_collector","events_processed":2439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":487.8,"last_update":"2026-03-22T06:42:07.36883073Z"} +2026/03/22 06:42:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:42:07.378267702Z"} +2026/03/22 06:42:12 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":14.730195989586955,"throughput_eps":0,"last_update":"2026-03-22T06:42:07.479513596Z"} +2026/03/22 06:42:12 ───────────────────────────────────────────────── +2026/03/22 06:42:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:42:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:42:12.378309759Z"} +2026/03/22 06:42:17 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":14.730195989586955,"throughput_eps":0,"last_update":"2026-03-22T06:42:12.479707373Z"} +2026/03/22 06:42:17 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":334.9415174815471,"throughput_eps":0,"last_update":"2026-03-22T06:42:12.479628552Z"} +2026/03/22 06:42:17 [log_collector] {"stage_name":"log_collector","events_processed":4481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":896.2,"last_update":"2026-03-22T06:42:12.368933655Z"} +2026/03/22 06:42:17 [metric_collector] {"stage_name":"metric_collector","events_processed":2444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":488.8,"last_update":"2026-03-22T06:42:12.369252415Z"} +2026/03/22 06:42:17 ───────────────────────────────────────────────── +2026/03/22 06:42:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:42:22 [log_collector] {"stage_name":"log_collector","events_processed":4481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":896.2,"last_update":"2026-03-22T06:42:22.36910029Z"} +2026/03/22 06:42:22 [metric_collector] {"stage_name":"metric_collector","events_processed":2449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":489.8,"last_update":"2026-03-22T06:42:17.369028547Z"} +2026/03/22 06:42:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:42:17.37828344Z"} +2026/03/22 06:42:22 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":14.730195989586955,"throughput_eps":0,"last_update":"2026-03-22T06:42:17.47954296Z"} +2026/03/22 06:42:22 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":334.9415174815471,"throughput_eps":0,"last_update":"2026-03-22T06:42:17.479581634Z"} +2026/03/22 06:42:22 ───────────────────────────────────────────────── +2026/03/22 06:42:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:42:27 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":334.9415174815471,"throughput_eps":0,"last_update":"2026-03-22T06:42:22.479529529Z"} +2026/03/22 06:42:27 [log_collector] {"stage_name":"log_collector","events_processed":4481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":896.2,"last_update":"2026-03-22T06:42:27.369094098Z"} +2026/03/22 06:42:27 [metric_collector] {"stage_name":"metric_collector","events_processed":2459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":491.8,"last_update":"2026-03-22T06:42:27.369080321Z"} +2026/03/22 06:42:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:42:22.37933557Z"} +2026/03/22 06:42:27 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":14.730195989586955,"throughput_eps":0,"last_update":"2026-03-22T06:42:22.479517857Z"} +2026/03/22 06:42:27 ───────────────────────────────────────────────── +2026/03/22 06:42:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:42:32 [log_collector] {"stage_name":"log_collector","events_processed":4481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":896.2,"last_update":"2026-03-22T06:42:27.369094098Z"} +2026/03/22 06:42:32 [metric_collector] {"stage_name":"metric_collector","events_processed":2459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":491.8,"last_update":"2026-03-22T06:42:27.369080321Z"} +2026/03/22 06:42:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:42:27.378639988Z"} +2026/03/22 06:42:32 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":14.730195989586955,"throughput_eps":0,"last_update":"2026-03-22T06:42:27.47896126Z"} +2026/03/22 06:42:32 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":281.5695169852377,"throughput_eps":0,"last_update":"2026-03-22T06:42:27.547062884Z"} +2026/03/22 06:42:32 ───────────────────────────────────────────────── +2026/03/22 06:42:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:42:37 [log_collector] {"stage_name":"log_collector","events_processed":4481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":896.2,"last_update":"2026-03-22T06:42:37.368654387Z"} +2026/03/22 06:42:37 [metric_collector] {"stage_name":"metric_collector","events_processed":2464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":492.8,"last_update":"2026-03-22T06:42:32.368504891Z"} +2026/03/22 06:42:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:42:32.378795999Z"} +2026/03/22 06:42:37 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":15.126737791669566,"throughput_eps":0,"last_update":"2026-03-22T06:42:32.479016318Z"} +2026/03/22 06:42:37 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":281.5695169852377,"throughput_eps":0,"last_update":"2026-03-22T06:42:32.478957105Z"} +2026/03/22 06:42:37 ───────────────────────────────────────────────── +Saved state: 11 clusters, 4482 messages, reason: none +2026/03/22 06:42:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:42:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":990,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:42:37.378646992Z"} +2026/03/22 06:42:42 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":15.126737791669566,"throughput_eps":0,"last_update":"2026-03-22T06:42:37.479142929Z"} +2026/03/22 06:42:42 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":281.5695169852377,"throughput_eps":0,"last_update":"2026-03-22T06:42:37.47910231Z"} +2026/03/22 06:42:42 [log_collector] {"stage_name":"log_collector","events_processed":4484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":896.8,"last_update":"2026-03-22T06:42:42.368467629Z"} +2026/03/22 06:42:42 [metric_collector] {"stage_name":"metric_collector","events_processed":2469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":493.8,"last_update":"2026-03-22T06:42:37.369237734Z"} +2026/03/22 06:42:42 ───────────────────────────────────────────────── +2026/03/22 06:42:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:42:47 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":15.126737791669566,"throughput_eps":0,"last_update":"2026-03-22T06:42:42.479842288Z"} +2026/03/22 06:42:47 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":281.5695169852377,"throughput_eps":0,"last_update":"2026-03-22T06:42:42.479805598Z"} +2026/03/22 06:42:47 [log_collector] {"stage_name":"log_collector","events_processed":4484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":896.8,"last_update":"2026-03-22T06:42:47.367968609Z"} +2026/03/22 06:42:47 [metric_collector] {"stage_name":"metric_collector","events_processed":2479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":495.8,"last_update":"2026-03-22T06:42:47.368252683Z"} +2026/03/22 06:42:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":992,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:42:42.375224939Z"} +2026/03/22 06:42:47 ───────────────────────────────────────────────── +2026/03/22 06:42:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:42:52 [log_collector] {"stage_name":"log_collector","events_processed":4495,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":899,"last_update":"2026-03-22T06:42:52.368126791Z"} +2026/03/22 06:42:52 [metric_collector] {"stage_name":"metric_collector","events_processed":2479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":495.8,"last_update":"2026-03-22T06:42:47.368252683Z"} +2026/03/22 06:42:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:42:47.377392345Z"} +2026/03/22 06:42:52 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":15.126737791669566,"throughput_eps":0,"last_update":"2026-03-22T06:42:47.479976601Z"} +2026/03/22 06:42:52 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":281.5695169852377,"throughput_eps":0,"last_update":"2026-03-22T06:42:47.478893727Z"} +2026/03/22 06:42:52 ───────────────────────────────────────────────── +2026/03/22 06:42:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:42:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":996,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:42:52.377174758Z"} +2026/03/22 06:42:57 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":15.126737791669566,"throughput_eps":0,"last_update":"2026-03-22T06:42:52.479322839Z"} +2026/03/22 06:42:57 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":281.5695169852377,"throughput_eps":0,"last_update":"2026-03-22T06:42:52.479376902Z"} +2026/03/22 06:42:57 [log_collector] {"stage_name":"log_collector","events_processed":4509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":901.8,"last_update":"2026-03-22T06:42:57.368624456Z"} +2026/03/22 06:42:57 [metric_collector] {"stage_name":"metric_collector","events_processed":2484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":496.8,"last_update":"2026-03-22T06:42:52.368565722Z"} +2026/03/22 06:42:57 ───────────────────────────────────────────────── +2026/03/22 06:42:58 [ANOMALY] time=2026-03-22T06:42:58Z score=0.8661 method=SEAD details=MAD!:w=0.26,s=0.70 RRCF-fast!:w=0.18,s=0.94 RRCF-mid!:w=0.17,s=0.95 RRCF-slow!:w=0.17,s=0.91 COPOD!:w=0.21,s=0.90 +2026/03/22 06:43:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:43:02 [metric_collector] {"stage_name":"metric_collector","events_processed":2489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":497.8,"last_update":"2026-03-22T06:42:57.36901311Z"} +2026/03/22 06:43:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:42:57.375650381Z"} +2026/03/22 06:43:02 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":15.126737791669566,"throughput_eps":0,"last_update":"2026-03-22T06:42:57.480013072Z"} +2026/03/22 06:43:02 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":525.4097875881902,"throughput_eps":0,"last_update":"2026-03-22T06:42:58.97962325Z"} +2026/03/22 06:43:02 [log_collector] {"stage_name":"log_collector","events_processed":4511,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":902.2,"last_update":"2026-03-22T06:43:02.368853971Z"} +2026/03/22 06:43:02 ───────────────────────────────────────────────── +2026/03/22 06:43:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:43:07 [log_collector] {"stage_name":"log_collector","events_processed":4511,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":902.2,"last_update":"2026-03-22T06:43:02.368853971Z"} +2026/03/22 06:43:07 [metric_collector] {"stage_name":"metric_collector","events_processed":2494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":498.8,"last_update":"2026-03-22T06:43:02.369392853Z"} +2026/03/22 06:43:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:43:02.377706754Z"} +2026/03/22 06:43:07 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":15.090666633335653,"throughput_eps":0,"last_update":"2026-03-22T06:43:02.478959029Z"} +2026/03/22 06:43:07 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":525.4097875881902,"throughput_eps":0,"last_update":"2026-03-22T06:43:02.478929974Z"} +2026/03/22 06:43:07 ───────────────────────────────────────────────── +2026/03/22 06:43:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:43:12 [metric_collector] {"stage_name":"metric_collector","events_processed":2499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":499.8,"last_update":"2026-03-22T06:43:07.368287818Z"} +2026/03/22 06:43:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:43:07.374495847Z"} +2026/03/22 06:43:12 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":15.090666633335653,"throughput_eps":0,"last_update":"2026-03-22T06:43:07.479787206Z"} +2026/03/22 06:43:12 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":525.4097875881902,"throughput_eps":0,"last_update":"2026-03-22T06:43:07.479853323Z"} +2026/03/22 06:43:12 [log_collector] {"stage_name":"log_collector","events_processed":4524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":904.8,"last_update":"2026-03-22T06:43:07.368124576Z"} +2026/03/22 06:43:12 ───────────────────────────────────────────────── +2026/03/22 06:43:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:43:17 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":15.090666633335653,"throughput_eps":0,"last_update":"2026-03-22T06:43:12.479910218Z"} +2026/03/22 06:43:17 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":525.4097875881902,"throughput_eps":0,"last_update":"2026-03-22T06:43:12.479829794Z"} +2026/03/22 06:43:17 [log_collector] {"stage_name":"log_collector","events_processed":4525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":905,"last_update":"2026-03-22T06:43:12.36796674Z"} +2026/03/22 06:43:17 [metric_collector] {"stage_name":"metric_collector","events_processed":2504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":500.8,"last_update":"2026-03-22T06:43:12.368401703Z"} +2026/03/22 06:43:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:43:12.378537984Z"} +2026/03/22 06:43:17 ───────────────────────────────────────────────── +2026/03/22 06:43:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:43:22 [log_collector] {"stage_name":"log_collector","events_processed":4525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":905,"last_update":"2026-03-22T06:43:17.36877627Z"} +2026/03/22 06:43:22 [metric_collector] {"stage_name":"metric_collector","events_processed":2509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":501.8,"last_update":"2026-03-22T06:43:17.369503402Z"} +2026/03/22 06:43:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1006,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:43:17.378078563Z"} +2026/03/22 06:43:22 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":15.090666633335653,"throughput_eps":0,"last_update":"2026-03-22T06:43:17.479376154Z"} +2026/03/22 06:43:22 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":525.4097875881902,"throughput_eps":0,"last_update":"2026-03-22T06:43:17.479313054Z"} +2026/03/22 06:43:22 ───────────────────────────────────────────────── +2026/03/22 06:43:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:43:27 [log_collector] {"stage_name":"log_collector","events_processed":4525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":905,"last_update":"2026-03-22T06:43:22.368041277Z"} +2026/03/22 06:43:27 [metric_collector] {"stage_name":"metric_collector","events_processed":2514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":502.8,"last_update":"2026-03-22T06:43:22.368431774Z"} +2026/03/22 06:43:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1008,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:43:22.377142996Z"} +2026/03/22 06:43:27 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":15.090666633335653,"throughput_eps":0,"last_update":"2026-03-22T06:43:22.479331223Z"} +2026/03/22 06:43:27 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":525.4097875881902,"throughput_eps":0,"last_update":"2026-03-22T06:43:22.479368323Z"} +2026/03/22 06:43:27 ───────────────────────────────────────────────── +2026/03/22 06:43:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:43:32 [log_collector] {"stage_name":"log_collector","events_processed":4525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":905,"last_update":"2026-03-22T06:43:27.367990629Z"} +2026/03/22 06:43:32 [metric_collector] {"stage_name":"metric_collector","events_processed":2519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":503.8,"last_update":"2026-03-22T06:43:27.368639611Z"} +2026/03/22 06:43:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:43:27.377255571Z"} +2026/03/22 06:43:32 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":15.090666633335653,"throughput_eps":0,"last_update":"2026-03-22T06:43:27.479540643Z"} +2026/03/22 06:43:32 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":442.5530244705522,"throughput_eps":0,"last_update":"2026-03-22T06:43:27.590774381Z"} +2026/03/22 06:43:32 ───────────────────────────────────────────────── +2026/03/22 06:43:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:43:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1012,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:43:32.377619561Z"} +2026/03/22 06:43:37 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":15.245870306668523,"throughput_eps":0,"last_update":"2026-03-22T06:43:32.479931885Z"} +2026/03/22 06:43:37 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":442.5530244705522,"throughput_eps":0,"last_update":"2026-03-22T06:43:32.479909072Z"} +2026/03/22 06:43:37 [log_collector] {"stage_name":"log_collector","events_processed":4525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":905,"last_update":"2026-03-22T06:43:37.368200482Z"} +2026/03/22 06:43:37 [metric_collector] {"stage_name":"metric_collector","events_processed":2524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":504.8,"last_update":"2026-03-22T06:43:32.36833953Z"} +2026/03/22 06:43:37 ───────────────────────────────────────────────── +2026/03/22 06:43:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:43:42 [log_collector] {"stage_name":"log_collector","events_processed":4525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":905,"last_update":"2026-03-22T06:43:37.368200482Z"} +2026/03/22 06:43:42 [metric_collector] {"stage_name":"metric_collector","events_processed":2529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":505.8,"last_update":"2026-03-22T06:43:37.368598694Z"} +2026/03/22 06:43:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:43:37.37817884Z"} +2026/03/22 06:43:42 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":15.245870306668523,"throughput_eps":0,"last_update":"2026-03-22T06:43:37.479468094Z"} +2026/03/22 06:43:42 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":442.5530244705522,"throughput_eps":0,"last_update":"2026-03-22T06:43:37.479362563Z"} +2026/03/22 06:43:42 ───────────────────────────────────────────────── +2026/03/22 06:43:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:43:47 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":15.245870306668523,"throughput_eps":0,"last_update":"2026-03-22T06:43:42.479402502Z"} +2026/03/22 06:43:47 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":442.5530244705522,"throughput_eps":0,"last_update":"2026-03-22T06:43:42.479434935Z"} +2026/03/22 06:43:47 [log_collector] {"stage_name":"log_collector","events_processed":4525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":905,"last_update":"2026-03-22T06:43:42.368989716Z"} +2026/03/22 06:43:47 [metric_collector] {"stage_name":"metric_collector","events_processed":2534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":506.8,"last_update":"2026-03-22T06:43:42.36903828Z"} +2026/03/22 06:43:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:43:42.378016793Z"} +2026/03/22 06:43:47 ───────────────────────────────────────────────── +2026/03/22 06:43:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:43:52 [log_collector] {"stage_name":"log_collector","events_processed":4525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":905,"last_update":"2026-03-22T06:43:52.368414233Z"} +2026/03/22 06:43:52 [metric_collector] {"stage_name":"metric_collector","events_processed":2539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":507.8,"last_update":"2026-03-22T06:43:47.368659501Z"} +2026/03/22 06:43:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1018,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:43:47.377027936Z"} +2026/03/22 06:43:52 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":15.245870306668523,"throughput_eps":0,"last_update":"2026-03-22T06:43:47.479323507Z"} +2026/03/22 06:43:52 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":442.5530244705522,"throughput_eps":0,"last_update":"2026-03-22T06:43:47.479394393Z"} +2026/03/22 06:43:52 ───────────────────────────────────────────────── +2026/03/22 06:43:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:43:57 [log_collector] {"stage_name":"log_collector","events_processed":4525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":905,"last_update":"2026-03-22T06:43:52.368414233Z"} +2026/03/22 06:43:57 [metric_collector] {"stage_name":"metric_collector","events_processed":2544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":508.8,"last_update":"2026-03-22T06:43:52.369241146Z"} +2026/03/22 06:43:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1020,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:43:52.375630081Z"} +2026/03/22 06:43:57 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":15.245870306668523,"throughput_eps":0,"last_update":"2026-03-22T06:43:52.480024231Z"} +2026/03/22 06:43:57 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":442.5530244705522,"throughput_eps":0,"last_update":"2026-03-22T06:43:52.478861705Z"} +2026/03/22 06:43:57 ───────────────────────────────────────────────── +2026/03/22 06:44:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:44:02 [transform_engine] {"stage_name":"transform_engine","events_processed":85,"events_dropped":0,"avg_latency_ms":367.4558697764418,"throughput_eps":0,"last_update":"2026-03-22T06:43:57.546529943Z"} +2026/03/22 06:44:02 [log_collector] {"stage_name":"log_collector","events_processed":4525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":905,"last_update":"2026-03-22T06:44:02.368004857Z"} +2026/03/22 06:44:02 [metric_collector] {"stage_name":"metric_collector","events_processed":2549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":509.8,"last_update":"2026-03-22T06:43:57.368859342Z"} +2026/03/22 06:44:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1022,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:43:57.378209296Z"} +2026/03/22 06:44:02 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":15.245870306668523,"throughput_eps":0,"last_update":"2026-03-22T06:43:57.480564311Z"} +2026/03/22 06:44:02 ───────────────────────────────────────────────── +2026/03/22 06:44:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:44:07 [transform_engine] {"stage_name":"transform_engine","events_processed":85,"events_dropped":0,"avg_latency_ms":367.4558697764418,"throughput_eps":0,"last_update":"2026-03-22T06:44:02.479685641Z"} +2026/03/22 06:44:07 [log_collector] {"stage_name":"log_collector","events_processed":4525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":905,"last_update":"2026-03-22T06:44:02.368004857Z"} +2026/03/22 06:44:07 [metric_collector] {"stage_name":"metric_collector","events_processed":2554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":510.8,"last_update":"2026-03-22T06:44:02.368834937Z"} +2026/03/22 06:44:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:44:02.379298093Z"} +2026/03/22 06:44:07 [detection_layer] {"stage_name":"detection_layer","events_processed":85,"events_dropped":0,"avg_latency_ms":15.59650464533482,"throughput_eps":0,"last_update":"2026-03-22T06:44:02.479673167Z"} +2026/03/22 06:44:07 ───────────────────────────────────────────────── +Saved state: 11 clusters, 4526 messages, reason: none +2026/03/22 06:44:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:44:12 [log_collector] {"stage_name":"log_collector","events_processed":4525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":905,"last_update":"2026-03-22T06:44:07.368768586Z"} +2026/03/22 06:44:12 [metric_collector] {"stage_name":"metric_collector","events_processed":2559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":511.8,"last_update":"2026-03-22T06:44:07.369169223Z"} +2026/03/22 06:44:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:44:07.377455871Z"} +2026/03/22 06:44:12 [detection_layer] {"stage_name":"detection_layer","events_processed":85,"events_dropped":0,"avg_latency_ms":15.59650464533482,"throughput_eps":0,"last_update":"2026-03-22T06:44:07.479765599Z"} +2026/03/22 06:44:12 [transform_engine] {"stage_name":"transform_engine","events_processed":85,"events_dropped":0,"avg_latency_ms":367.4558697764418,"throughput_eps":0,"last_update":"2026-03-22T06:44:07.47977608Z"} +2026/03/22 06:44:12 ───────────────────────────────────────────────── +2026/03/22 06:44:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:44:17 [log_collector] {"stage_name":"log_collector","events_processed":4530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":906,"last_update":"2026-03-22T06:44:17.368604388Z"} +2026/03/22 06:44:17 [metric_collector] {"stage_name":"metric_collector","events_processed":2569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":513.8,"last_update":"2026-03-22T06:44:17.368797908Z"} +2026/03/22 06:44:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:44:12.37432136Z"} +2026/03/22 06:44:17 [detection_layer] {"stage_name":"detection_layer","events_processed":85,"events_dropped":0,"avg_latency_ms":15.59650464533482,"throughput_eps":0,"last_update":"2026-03-22T06:44:12.480270187Z"} +2026/03/22 06:44:17 [transform_engine] {"stage_name":"transform_engine","events_processed":85,"events_dropped":0,"avg_latency_ms":367.4558697764418,"throughput_eps":0,"last_update":"2026-03-22T06:44:12.478890054Z"} +2026/03/22 06:44:17 ───────────────────────────────────────────────── +2026/03/22 06:44:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:44:22 [log_collector] {"stage_name":"log_collector","events_processed":4530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":906,"last_update":"2026-03-22T06:44:17.368604388Z"} +2026/03/22 06:44:22 [metric_collector] {"stage_name":"metric_collector","events_processed":2569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":513.8,"last_update":"2026-03-22T06:44:17.368797908Z"} +2026/03/22 06:44:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:44:17.378170857Z"} +2026/03/22 06:44:22 [detection_layer] {"stage_name":"detection_layer","events_processed":85,"events_dropped":0,"avg_latency_ms":15.59650464533482,"throughput_eps":0,"last_update":"2026-03-22T06:44:17.479378024Z"} +2026/03/22 06:44:22 [transform_engine] {"stage_name":"transform_engine","events_processed":85,"events_dropped":0,"avg_latency_ms":367.4558697764418,"throughput_eps":0,"last_update":"2026-03-22T06:44:17.479402581Z"} +2026/03/22 06:44:22 ───────────────────────────────────────────────── +2026/03/22 06:44:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:44:27 [log_collector] {"stage_name":"log_collector","events_processed":4530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":906,"last_update":"2026-03-22T06:44:22.368765437Z"} +2026/03/22 06:44:27 [metric_collector] {"stage_name":"metric_collector","events_processed":2574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":514.8,"last_update":"2026-03-22T06:44:22.369138872Z"} +2026/03/22 06:44:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:44:22.376658873Z"} +2026/03/22 06:44:27 [detection_layer] {"stage_name":"detection_layer","events_processed":85,"events_dropped":0,"avg_latency_ms":15.59650464533482,"throughput_eps":0,"last_update":"2026-03-22T06:44:22.479836072Z"} +2026/03/22 06:44:27 [transform_engine] {"stage_name":"transform_engine","events_processed":85,"events_dropped":0,"avg_latency_ms":367.4558697764418,"throughput_eps":0,"last_update":"2026-03-22T06:44:22.479846271Z"} +2026/03/22 06:44:27 ───────────────────────────────────────────────── +2026/03/22 06:44:29 [ANOMALY] time=2026-03-22T06:44:29Z score=0.9257 method=SEAD details=MAD!:w=0.26,s=0.99 RRCF-fast!:w=0.18,s=0.96 RRCF-mid!:w=0.17,s=0.96 RRCF-slow!:w=0.17,s=0.96 COPOD!:w=0.21,s=0.75 +2026/03/22 06:44:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:44:32 [log_collector] {"stage_name":"log_collector","events_processed":4530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":906,"last_update":"2026-03-22T06:44:27.367965973Z"} +2026/03/22 06:44:32 [metric_collector] {"stage_name":"metric_collector","events_processed":2579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":515.8,"last_update":"2026-03-22T06:44:27.368287789Z"} +2026/03/22 06:44:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:44:27.37480017Z"} +2026/03/22 06:44:32 [detection_layer] {"stage_name":"detection_layer","events_processed":85,"events_dropped":0,"avg_latency_ms":15.59650464533482,"throughput_eps":0,"last_update":"2026-03-22T06:44:27.478999307Z"} +2026/03/22 06:44:32 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":736.6296914211534,"throughput_eps":0,"last_update":"2026-03-22T06:44:29.692339124Z"} +2026/03/22 06:44:32 ───────────────────────────────────────────────── +2026/03/22 06:44:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:44:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1036,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:44:32.375171553Z"} +2026/03/22 06:44:37 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":14.347875916267856,"throughput_eps":0,"last_update":"2026-03-22T06:44:32.479366802Z"} +2026/03/22 06:44:37 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":736.6296914211534,"throughput_eps":0,"last_update":"2026-03-22T06:44:32.479342315Z"} +2026/03/22 06:44:37 [log_collector] {"stage_name":"log_collector","events_processed":4530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":906,"last_update":"2026-03-22T06:44:32.36864218Z"} +2026/03/22 06:44:37 [metric_collector] {"stage_name":"metric_collector","events_processed":2584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":516.8,"last_update":"2026-03-22T06:44:32.36887174Z"} +2026/03/22 06:44:37 ───────────────────────────────────────────────── +2026/03/22 06:44:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:44:42 [metric_collector] {"stage_name":"metric_collector","events_processed":2589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":517.8,"last_update":"2026-03-22T06:44:37.36814803Z"} +2026/03/22 06:44:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:44:37.374903647Z"} +2026/03/22 06:44:42 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":14.347875916267856,"throughput_eps":0,"last_update":"2026-03-22T06:44:37.479186012Z"} +2026/03/22 06:44:42 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":736.6296914211534,"throughput_eps":0,"last_update":"2026-03-22T06:44:37.480896869Z"} +2026/03/22 06:44:42 [log_collector] {"stage_name":"log_collector","events_processed":4530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":906,"last_update":"2026-03-22T06:44:37.367952586Z"} +2026/03/22 06:44:42 ───────────────────────────────────────────────── +2026/03/22 06:44:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:44:47 [log_collector] {"stage_name":"log_collector","events_processed":4530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":906,"last_update":"2026-03-22T06:44:47.368461159Z"} +2026/03/22 06:44:47 [metric_collector] {"stage_name":"metric_collector","events_processed":2594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":518.8,"last_update":"2026-03-22T06:44:42.370249205Z"} +2026/03/22 06:44:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:44:42.381461807Z"} +2026/03/22 06:44:47 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":14.347875916267856,"throughput_eps":0,"last_update":"2026-03-22T06:44:42.479600898Z"} +2026/03/22 06:44:47 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":736.6296914211534,"throughput_eps":0,"last_update":"2026-03-22T06:44:42.479589386Z"} +2026/03/22 06:44:47 ───────────────────────────────────────────────── +2026/03/22 06:44:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:44:52 [log_collector] {"stage_name":"log_collector","events_processed":4533,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":906.6,"last_update":"2026-03-22T06:44:52.368501119Z"} +2026/03/22 06:44:52 [metric_collector] {"stage_name":"metric_collector","events_processed":2599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":519.8,"last_update":"2026-03-22T06:44:47.368853129Z"} +2026/03/22 06:44:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:44:47.375068361Z"} +2026/03/22 06:44:52 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":14.347875916267856,"throughput_eps":0,"last_update":"2026-03-22T06:44:47.478978624Z"} +2026/03/22 06:44:52 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":736.6296914211534,"throughput_eps":0,"last_update":"2026-03-22T06:44:47.479086701Z"} +2026/03/22 06:44:52 ───────────────────────────────────────────────── +2026/03/22 06:44:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:44:57 [metric_collector] {"stage_name":"metric_collector","events_processed":2604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":520.8,"last_update":"2026-03-22T06:44:52.369071462Z"} +2026/03/22 06:44:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:44:52.376300153Z"} +2026/03/22 06:44:57 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":14.347875916267856,"throughput_eps":0,"last_update":"2026-03-22T06:44:52.479607592Z"} +2026/03/22 06:44:57 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":736.6296914211534,"throughput_eps":0,"last_update":"2026-03-22T06:44:52.4795544Z"} +2026/03/22 06:44:57 [log_collector] {"stage_name":"log_collector","events_processed":4541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":908.2,"last_update":"2026-03-22T06:44:57.368001361Z"} +2026/03/22 06:44:57 ───────────────────────────────────────────────── +2026/03/22 06:44:57 [ANOMALY] time=2026-03-22T06:44:57Z score=0.9354 method=SEAD details=MAD!:w=0.26,s=0.88 RRCF-fast!:w=0.18,s=0.97 RRCF-mid!:w=0.17,s=0.97 RRCF-slow!:w=0.17,s=0.99 COPOD!:w=0.21,s=0.91 +2026/03/22 06:45:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:45:02 [log_collector] {"stage_name":"log_collector","events_processed":4541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":908.2,"last_update":"2026-03-22T06:44:57.368001361Z"} +2026/03/22 06:45:02 [metric_collector] {"stage_name":"metric_collector","events_processed":2609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":521.8,"last_update":"2026-03-22T06:44:57.36881568Z"} +2026/03/22 06:45:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:44:57.376429059Z"} +2026/03/22 06:45:02 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":14.347875916267856,"throughput_eps":0,"last_update":"2026-03-22T06:44:57.479647737Z"} +2026/03/22 06:45:02 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":611.4545207369227,"throughput_eps":0,"last_update":"2026-03-22T06:44:57.590418908Z"} +2026/03/22 06:45:02 ───────────────────────────────────────────────── +2026/03/22 06:45:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:45:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1048,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:45:02.375213946Z"} +2026/03/22 06:45:07 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":13.891072933014287,"throughput_eps":0,"last_update":"2026-03-22T06:45:02.479431025Z"} +2026/03/22 06:45:07 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":611.4545207369227,"throughput_eps":0,"last_update":"2026-03-22T06:45:02.479444541Z"} +2026/03/22 06:45:07 [log_collector] {"stage_name":"log_collector","events_processed":4590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":918,"last_update":"2026-03-22T06:45:02.368883923Z"} +2026/03/22 06:45:07 [metric_collector] {"stage_name":"metric_collector","events_processed":2614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":522.8,"last_update":"2026-03-22T06:45:02.368982632Z"} +2026/03/22 06:45:07 ───────────────────────────────────────────────── +2026/03/22 06:45:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:45:12 [log_collector] {"stage_name":"log_collector","events_processed":4885,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":977,"last_update":"2026-03-22T06:45:12.368121235Z"} +2026/03/22 06:45:12 [metric_collector] {"stage_name":"metric_collector","events_processed":2619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":523.8,"last_update":"2026-03-22T06:45:07.369068135Z"} +2026/03/22 06:45:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1050,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:45:07.375026464Z"} +2026/03/22 06:45:12 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":13.891072933014287,"throughput_eps":0,"last_update":"2026-03-22T06:45:07.479047669Z"} +2026/03/22 06:45:12 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":611.4545207369227,"throughput_eps":0,"last_update":"2026-03-22T06:45:07.479019085Z"} +2026/03/22 06:45:12 ───────────────────────────────────────────────── +Saved state: 11 clusters, 4886 messages, reason: none +2026/03/22 06:45:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:45:17 [log_collector] {"stage_name":"log_collector","events_processed":4885,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":977,"last_update":"2026-03-22T06:45:12.368121235Z"} +2026/03/22 06:45:17 [metric_collector] {"stage_name":"metric_collector","events_processed":2624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":524.8,"last_update":"2026-03-22T06:45:12.368747865Z"} +2026/03/22 06:45:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:45:12.377239006Z"} +2026/03/22 06:45:17 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":13.891072933014287,"throughput_eps":0,"last_update":"2026-03-22T06:45:12.479483439Z"} +2026/03/22 06:45:17 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":611.4545207369227,"throughput_eps":0,"last_update":"2026-03-22T06:45:12.479497014Z"} +2026/03/22 06:45:17 ───────────────────────────────────────────────── +2026/03/22 06:45:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:45:22 [log_collector] {"stage_name":"log_collector","events_processed":4888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":977.6,"last_update":"2026-03-22T06:45:17.367967902Z"} +2026/03/22 06:45:22 [metric_collector] {"stage_name":"metric_collector","events_processed":2629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":525.8,"last_update":"2026-03-22T06:45:17.368329664Z"} +2026/03/22 06:45:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:45:17.376319434Z"} +2026/03/22 06:45:22 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":13.891072933014287,"throughput_eps":0,"last_update":"2026-03-22T06:45:17.479488888Z"} +2026/03/22 06:45:22 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":611.4545207369227,"throughput_eps":0,"last_update":"2026-03-22T06:45:17.479498526Z"} +2026/03/22 06:45:22 ───────────────────────────────────────────────── +2026/03/22 06:45:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:45:27 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":611.4545207369227,"throughput_eps":0,"last_update":"2026-03-22T06:45:22.479844124Z"} +2026/03/22 06:45:27 [log_collector] {"stage_name":"log_collector","events_processed":4898,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":979.6,"last_update":"2026-03-22T06:45:22.36838712Z"} +2026/03/22 06:45:27 [metric_collector] {"stage_name":"metric_collector","events_processed":2634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":526.8,"last_update":"2026-03-22T06:45:22.368578788Z"} +2026/03/22 06:45:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1056,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:45:22.375458602Z"} +2026/03/22 06:45:27 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":13.891072933014287,"throughput_eps":0,"last_update":"2026-03-22T06:45:22.479810479Z"} +2026/03/22 06:45:27 ───────────────────────────────────────────────── +2026/03/22 06:45:28 [ANOMALY] time=2026-03-22T06:45:28Z score=0.8805 method=SEAD details=MAD!:w=0.26,s=0.72 RRCF-fast!:w=0.18,s=0.91 RRCF-mid!:w=0.17,s=0.92 RRCF-slow!:w=0.17,s=0.93 COPOD!:w=0.21,s=0.98 +2026/03/22 06:45:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:45:32 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":753.1994213895382,"throughput_eps":0,"last_update":"2026-03-22T06:45:28.799275154Z"} +2026/03/22 06:45:32 [log_collector] {"stage_name":"log_collector","events_processed":4907,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":981.4,"last_update":"2026-03-22T06:45:27.368863453Z"} +2026/03/22 06:45:32 [metric_collector] {"stage_name":"metric_collector","events_processed":2639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":527.8,"last_update":"2026-03-22T06:45:27.369065169Z"} +2026/03/22 06:45:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:45:27.375899135Z"} +2026/03/22 06:45:32 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":13.891072933014287,"throughput_eps":0,"last_update":"2026-03-22T06:45:27.479074741Z"} +2026/03/22 06:45:32 ───────────────────────────────────────────────── +2026/03/22 06:45:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:45:37 [log_collector] {"stage_name":"log_collector","events_processed":4915,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":983,"last_update":"2026-03-22T06:45:32.368173799Z"} +2026/03/22 06:45:37 [metric_collector] {"stage_name":"metric_collector","events_processed":2644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":528.8,"last_update":"2026-03-22T06:45:32.368636525Z"} +2026/03/22 06:45:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:45:32.377003236Z"} +2026/03/22 06:45:37 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":13.78150474641143,"throughput_eps":0,"last_update":"2026-03-22T06:45:32.479505683Z"} +2026/03/22 06:45:37 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":753.1994213895382,"throughput_eps":0,"last_update":"2026-03-22T06:45:32.479522655Z"} +2026/03/22 06:45:37 ───────────────────────────────────────────────── +2026/03/22 06:45:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:45:42 [log_collector] {"stage_name":"log_collector","events_processed":4915,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":983,"last_update":"2026-03-22T06:45:42.368373332Z"} +2026/03/22 06:45:42 [metric_collector] {"stage_name":"metric_collector","events_processed":2649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":529.8,"last_update":"2026-03-22T06:45:37.369534598Z"} +2026/03/22 06:45:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1062,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:45:37.376479386Z"} +2026/03/22 06:45:42 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":13.78150474641143,"throughput_eps":0,"last_update":"2026-03-22T06:45:37.479729513Z"} +2026/03/22 06:45:42 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":753.1994213895382,"throughput_eps":0,"last_update":"2026-03-22T06:45:37.479739863Z"} +2026/03/22 06:45:42 ───────────────────────────────────────────────── +2026/03/22 06:45:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:45:47 [log_collector] {"stage_name":"log_collector","events_processed":4915,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":983,"last_update":"2026-03-22T06:45:47.368448642Z"} +2026/03/22 06:45:47 [metric_collector] {"stage_name":"metric_collector","events_processed":2654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":530.8,"last_update":"2026-03-22T06:45:42.368917974Z"} +2026/03/22 06:45:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:45:42.37786638Z"} +2026/03/22 06:45:47 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":13.78150474641143,"throughput_eps":0,"last_update":"2026-03-22T06:45:42.479098704Z"} +2026/03/22 06:45:47 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":753.1994213895382,"throughput_eps":0,"last_update":"2026-03-22T06:45:42.47911221Z"} +2026/03/22 06:45:47 ───────────────────────────────────────────────── +2026/03/22 06:45:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:45:52 [log_collector] {"stage_name":"log_collector","events_processed":4915,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":983,"last_update":"2026-03-22T06:45:47.368448642Z"} +2026/03/22 06:45:52 [metric_collector] {"stage_name":"metric_collector","events_processed":2659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":531.8,"last_update":"2026-03-22T06:45:47.368986923Z"} +2026/03/22 06:45:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:45:47.378878906Z"} +2026/03/22 06:45:52 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":13.78150474641143,"throughput_eps":0,"last_update":"2026-03-22T06:45:47.479100664Z"} +2026/03/22 06:45:52 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":753.1994213895382,"throughput_eps":0,"last_update":"2026-03-22T06:45:47.479115953Z"} +2026/03/22 06:45:52 ───────────────────────────────────────────────── +2026/03/22 06:45:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:45:57 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":753.1994213895382,"throughput_eps":0,"last_update":"2026-03-22T06:45:52.479840842Z"} +2026/03/22 06:45:57 [log_collector] {"stage_name":"log_collector","events_processed":4915,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":983,"last_update":"2026-03-22T06:45:57.368499045Z"} +2026/03/22 06:45:57 [metric_collector] {"stage_name":"metric_collector","events_processed":2664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":532.8,"last_update":"2026-03-22T06:45:52.368663705Z"} +2026/03/22 06:45:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:45:52.379518391Z"} +2026/03/22 06:45:57 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":13.78150474641143,"throughput_eps":0,"last_update":"2026-03-22T06:45:52.479828428Z"} +2026/03/22 06:45:57 ───────────────────────────────────────────────── +2026/03/22 06:46:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:46:02 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":13.78150474641143,"throughput_eps":0,"last_update":"2026-03-22T06:45:57.479433197Z"} +2026/03/22 06:46:02 [transform_engine] {"stage_name":"transform_engine","events_processed":89,"events_dropped":0,"avg_latency_ms":624.9085479116305,"throughput_eps":0,"last_update":"2026-03-22T06:45:57.590667404Z"} +2026/03/22 06:46:02 [log_collector] {"stage_name":"log_collector","events_processed":4915,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":983,"last_update":"2026-03-22T06:46:02.368463688Z"} +2026/03/22 06:46:02 [metric_collector] {"stage_name":"metric_collector","events_processed":2669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":533.8,"last_update":"2026-03-22T06:45:57.36907035Z"} +2026/03/22 06:46:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:45:57.377764127Z"} +2026/03/22 06:46:02 ───────────────────────────────────────────────── +2026/03/22 06:46:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:46:07 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":14.511351597129144,"throughput_eps":0,"last_update":"2026-03-22T06:46:02.479905001Z"} +2026/03/22 06:46:07 [transform_engine] {"stage_name":"transform_engine","events_processed":89,"events_dropped":0,"avg_latency_ms":624.9085479116305,"throughput_eps":0,"last_update":"2026-03-22T06:46:02.479922265Z"} +2026/03/22 06:46:07 [log_collector] {"stage_name":"log_collector","events_processed":4915,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":983,"last_update":"2026-03-22T06:46:02.368463688Z"} +2026/03/22 06:46:07 [metric_collector] {"stage_name":"metric_collector","events_processed":2674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":534.8,"last_update":"2026-03-22T06:46:02.368859937Z"} +2026/03/22 06:46:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1072,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:46:02.377524118Z"} +2026/03/22 06:46:07 ───────────────────────────────────────────────── +2026/03/22 06:46:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:46:12 [log_collector] {"stage_name":"log_collector","events_processed":4915,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":983,"last_update":"2026-03-22T06:46:07.368979464Z"} +2026/03/22 06:46:12 [metric_collector] {"stage_name":"metric_collector","events_processed":2679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":535.8,"last_update":"2026-03-22T06:46:07.369116195Z"} +2026/03/22 06:46:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:46:07.378239837Z"} +2026/03/22 06:46:12 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":14.511351597129144,"throughput_eps":0,"last_update":"2026-03-22T06:46:07.479899198Z"} +2026/03/22 06:46:12 [transform_engine] {"stage_name":"transform_engine","events_processed":89,"events_dropped":0,"avg_latency_ms":624.9085479116305,"throughput_eps":0,"last_update":"2026-03-22T06:46:07.479911982Z"} +2026/03/22 06:46:12 ───────────────────────────────────────────────── +2026/03/22 06:46:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:46:17 [log_collector] {"stage_name":"log_collector","events_processed":4915,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":983,"last_update":"2026-03-22T06:46:12.368021562Z"} +2026/03/22 06:46:17 [metric_collector] {"stage_name":"metric_collector","events_processed":2684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":536.8,"last_update":"2026-03-22T06:46:12.368312609Z"} +2026/03/22 06:46:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1076,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:46:12.37790062Z"} +2026/03/22 06:46:17 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":14.511351597129144,"throughput_eps":0,"last_update":"2026-03-22T06:46:12.479102845Z"} +2026/03/22 06:46:17 [transform_engine] {"stage_name":"transform_engine","events_processed":89,"events_dropped":0,"avg_latency_ms":624.9085479116305,"throughput_eps":0,"last_update":"2026-03-22T06:46:12.47911596Z"} +2026/03/22 06:46:17 ───────────────────────────────────────────────── +2026/03/22 06:46:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:46:22 [log_collector] {"stage_name":"log_collector","events_processed":4915,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":983,"last_update":"2026-03-22T06:46:22.36797149Z"} +2026/03/22 06:46:22 [metric_collector] {"stage_name":"metric_collector","events_processed":2689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":537.8,"last_update":"2026-03-22T06:46:17.369136927Z"} +2026/03/22 06:46:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:46:17.378495598Z"} +2026/03/22 06:46:22 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":14.511351597129144,"throughput_eps":0,"last_update":"2026-03-22T06:46:17.479705528Z"} +2026/03/22 06:46:22 [transform_engine] {"stage_name":"transform_engine","events_processed":89,"events_dropped":0,"avg_latency_ms":624.9085479116305,"throughput_eps":0,"last_update":"2026-03-22T06:46:17.47971707Z"} +2026/03/22 06:46:22 ───────────────────────────────────────────────── +2026/03/22 06:46:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:46:27 [log_collector] {"stage_name":"log_collector","events_processed":4915,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":983,"last_update":"2026-03-22T06:46:22.36797149Z"} +2026/03/22 06:46:27 [metric_collector] {"stage_name":"metric_collector","events_processed":2694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":538.8,"last_update":"2026-03-22T06:46:22.368434658Z"} +2026/03/22 06:46:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:46:22.377795092Z"} +2026/03/22 06:46:27 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":14.511351597129144,"throughput_eps":0,"last_update":"2026-03-22T06:46:22.478950779Z"} +2026/03/22 06:46:27 [transform_engine] {"stage_name":"transform_engine","events_processed":89,"events_dropped":0,"avg_latency_ms":624.9085479116305,"throughput_eps":0,"last_update":"2026-03-22T06:46:22.478908618Z"} +2026/03/22 06:46:27 ───────────────────────────────────────────────── +2026/03/22 06:46:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:46:32 [log_collector] {"stage_name":"log_collector","events_processed":4915,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":983,"last_update":"2026-03-22T06:46:32.367973633Z"} +2026/03/22 06:46:32 [metric_collector] {"stage_name":"metric_collector","events_processed":2699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":539.8,"last_update":"2026-03-22T06:46:27.368667695Z"} +2026/03/22 06:46:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1082,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:46:27.377824399Z"} +2026/03/22 06:46:32 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":14.511351597129144,"throughput_eps":0,"last_update":"2026-03-22T06:46:27.479021364Z"} +2026/03/22 06:46:32 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":513.2725945293045,"throughput_eps":0,"last_update":"2026-03-22T06:46:27.545649653Z"} +2026/03/22 06:46:32 ───────────────────────────────────────────────── +2026/03/22 06:46:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:46:37 [log_collector] {"stage_name":"log_collector","events_processed":4915,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":983,"last_update":"2026-03-22T06:46:32.367973633Z"} +2026/03/22 06:46:37 [metric_collector] {"stage_name":"metric_collector","events_processed":2704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":540.8,"last_update":"2026-03-22T06:46:32.368603659Z"} +2026/03/22 06:46:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:46:32.378632033Z"} +2026/03/22 06:46:37 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":14.938967677703316,"throughput_eps":0,"last_update":"2026-03-22T06:46:32.479044877Z"} +2026/03/22 06:46:37 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":513.2725945293045,"throughput_eps":0,"last_update":"2026-03-22T06:46:32.478890722Z"} +2026/03/22 06:46:37 ───────────────────────────────────────────────── +2026/03/22 06:46:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:46:42 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":14.938967677703316,"throughput_eps":0,"last_update":"2026-03-22T06:46:37.479113892Z"} +2026/03/22 06:46:42 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":513.2725945293045,"throughput_eps":0,"last_update":"2026-03-22T06:46:37.479155472Z"} +2026/03/22 06:46:42 [log_collector] {"stage_name":"log_collector","events_processed":4915,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":983,"last_update":"2026-03-22T06:46:42.368272529Z"} +2026/03/22 06:46:42 [metric_collector] {"stage_name":"metric_collector","events_processed":2709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":541.8,"last_update":"2026-03-22T06:46:37.36865391Z"} +2026/03/22 06:46:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:46:37.37490484Z"} +2026/03/22 06:46:42 ───────────────────────────────────────────────── +Saved state: 11 clusters, 4916 messages, reason: none +2026/03/22 06:46:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:46:47 [log_collector] {"stage_name":"log_collector","events_processed":4915,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":983,"last_update":"2026-03-22T06:46:42.368272529Z"} +2026/03/22 06:46:47 [metric_collector] {"stage_name":"metric_collector","events_processed":2714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":542.8,"last_update":"2026-03-22T06:46:42.368884911Z"} +2026/03/22 06:46:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:46:42.378173488Z"} +2026/03/22 06:46:47 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":14.938967677703316,"throughput_eps":0,"last_update":"2026-03-22T06:46:42.479411211Z"} +2026/03/22 06:46:47 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":513.2725945293045,"throughput_eps":0,"last_update":"2026-03-22T06:46:42.4793741Z"} +2026/03/22 06:46:47 ───────────────────────────────────────────────── +2026/03/22 06:46:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:46:52 [log_collector] {"stage_name":"log_collector","events_processed":4918,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":983.6,"last_update":"2026-03-22T06:46:47.368407172Z"} +2026/03/22 06:46:52 [metric_collector] {"stage_name":"metric_collector","events_processed":2719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":543.8,"last_update":"2026-03-22T06:46:47.368843707Z"} +2026/03/22 06:46:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:46:47.375973791Z"} +2026/03/22 06:46:52 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":14.938967677703316,"throughput_eps":0,"last_update":"2026-03-22T06:46:47.479186967Z"} +2026/03/22 06:46:52 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":513.2725945293045,"throughput_eps":0,"last_update":"2026-03-22T06:46:47.47915736Z"} +2026/03/22 06:46:52 ───────────────────────────────────────────────── +2026/03/22 06:46:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:46:57 [log_collector] {"stage_name":"log_collector","events_processed":4929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":985.8,"last_update":"2026-03-22T06:46:52.367988865Z"} +2026/03/22 06:46:57 [metric_collector] {"stage_name":"metric_collector","events_processed":2724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":544.8,"last_update":"2026-03-22T06:46:52.368772856Z"} +2026/03/22 06:46:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:46:52.377402831Z"} +2026/03/22 06:46:57 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":14.938967677703316,"throughput_eps":0,"last_update":"2026-03-22T06:46:52.479597137Z"} +2026/03/22 06:46:57 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":513.2725945293045,"throughput_eps":0,"last_update":"2026-03-22T06:46:52.479712557Z"} +2026/03/22 06:46:57 ───────────────────────────────────────────────── +2026/03/22 06:47:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:47:02 [log_collector] {"stage_name":"log_collector","events_processed":4929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":985.8,"last_update":"2026-03-22T06:46:57.368194326Z"} +2026/03/22 06:47:02 [metric_collector] {"stage_name":"metric_collector","events_processed":2729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":545.8,"last_update":"2026-03-22T06:46:57.368533106Z"} +2026/03/22 06:47:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:46:57.377882649Z"} +2026/03/22 06:47:02 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":14.938967677703316,"throughput_eps":0,"last_update":"2026-03-22T06:46:57.479159145Z"} +2026/03/22 06:47:02 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":432.6814736234436,"throughput_eps":0,"last_update":"2026-03-22T06:46:57.589442431Z"} +2026/03/22 06:47:02 ───────────────────────────────────────────────── +2026/03/22 06:47:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:47:07 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":15.190942142162653,"throughput_eps":0,"last_update":"2026-03-22T06:47:02.479296325Z"} +2026/03/22 06:47:07 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":432.6814736234436,"throughput_eps":0,"last_update":"2026-03-22T06:47:02.479406015Z"} +2026/03/22 06:47:07 [log_collector] {"stage_name":"log_collector","events_processed":4929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":985.8,"last_update":"2026-03-22T06:47:02.368950962Z"} +2026/03/22 06:47:07 [metric_collector] {"stage_name":"metric_collector","events_processed":2734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":546.8,"last_update":"2026-03-22T06:47:02.369726597Z"} +2026/03/22 06:47:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:47:02.37806799Z"} +2026/03/22 06:47:07 ───────────────────────────────────────────────── +2026/03/22 06:47:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:47:12 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":15.190942142162653,"throughput_eps":0,"last_update":"2026-03-22T06:47:07.478950916Z"} +2026/03/22 06:47:12 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":432.6814736234436,"throughput_eps":0,"last_update":"2026-03-22T06:47:07.479015839Z"} +2026/03/22 06:47:12 [log_collector] {"stage_name":"log_collector","events_processed":4929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":985.8,"last_update":"2026-03-22T06:47:07.368389068Z"} +2026/03/22 06:47:12 [metric_collector] {"stage_name":"metric_collector","events_processed":2744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":548.8,"last_update":"2026-03-22T06:47:12.368273656Z"} +2026/03/22 06:47:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:47:07.377795201Z"} +2026/03/22 06:47:12 ───────────────────────────────────────────────── +2026/03/22 06:47:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:47:17 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":15.190942142162653,"throughput_eps":0,"last_update":"2026-03-22T06:47:12.479793979Z"} +2026/03/22 06:47:17 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":432.6814736234436,"throughput_eps":0,"last_update":"2026-03-22T06:47:12.479822443Z"} +2026/03/22 06:47:17 [log_collector] {"stage_name":"log_collector","events_processed":4929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":985.8,"last_update":"2026-03-22T06:47:17.367973497Z"} +2026/03/22 06:47:17 [metric_collector] {"stage_name":"metric_collector","events_processed":2744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":548.8,"last_update":"2026-03-22T06:47:12.368273656Z"} +2026/03/22 06:47:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:47:12.375589215Z"} +2026/03/22 06:47:17 ───────────────────────────────────────────────── +2026/03/22 06:47:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:47:22 [log_collector] {"stage_name":"log_collector","events_processed":4929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":985.8,"last_update":"2026-03-22T06:47:17.367973497Z"} +2026/03/22 06:47:22 [metric_collector] {"stage_name":"metric_collector","events_processed":2749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":549.8,"last_update":"2026-03-22T06:47:17.368301586Z"} +2026/03/22 06:47:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:47:17.377495912Z"} +2026/03/22 06:47:22 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":15.190942142162653,"throughput_eps":0,"last_update":"2026-03-22T06:47:17.479844672Z"} +2026/03/22 06:47:22 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":432.6814736234436,"throughput_eps":0,"last_update":"2026-03-22T06:47:17.479714684Z"} +2026/03/22 06:47:22 ───────────────────────────────────────────────── +2026/03/22 06:47:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:47:27 [log_collector] {"stage_name":"log_collector","events_processed":4929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":985.8,"last_update":"2026-03-22T06:47:22.368080995Z"} +2026/03/22 06:47:27 [metric_collector] {"stage_name":"metric_collector","events_processed":2754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":550.8,"last_update":"2026-03-22T06:47:22.368727843Z"} +2026/03/22 06:47:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:47:22.377926628Z"} +2026/03/22 06:47:27 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":15.190942142162653,"throughput_eps":0,"last_update":"2026-03-22T06:47:22.479123243Z"} +2026/03/22 06:47:27 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":432.6814736234436,"throughput_eps":0,"last_update":"2026-03-22T06:47:22.479143722Z"} +2026/03/22 06:47:27 ───────────────────────────────────────────────── +2026/03/22 06:47:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:47:32 [log_collector] {"stage_name":"log_collector","events_processed":4929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":985.8,"last_update":"2026-03-22T06:47:32.368572726Z"} +2026/03/22 06:47:32 [metric_collector] {"stage_name":"metric_collector","events_processed":2759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":551.8,"last_update":"2026-03-22T06:47:27.368710688Z"} +2026/03/22 06:47:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:47:27.377675314Z"} +2026/03/22 06:47:32 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":15.190942142162653,"throughput_eps":0,"last_update":"2026-03-22T06:47:27.480065984Z"} +2026/03/22 06:47:32 [transform_engine] {"stage_name":"transform_engine","events_processed":92,"events_dropped":0,"avg_latency_ms":364.09055469875494,"throughput_eps":0,"last_update":"2026-03-22T06:47:27.568617323Z"} +2026/03/22 06:47:32 ───────────────────────────────────────────────── +2026/03/22 06:47:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:47:37 [log_collector] {"stage_name":"log_collector","events_processed":4929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":985.8,"last_update":"2026-03-22T06:47:32.368572726Z"} +2026/03/22 06:47:37 [metric_collector] {"stage_name":"metric_collector","events_processed":2764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":552.8,"last_update":"2026-03-22T06:47:32.368946683Z"} +2026/03/22 06:47:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:47:32.377706347Z"} +2026/03/22 06:47:37 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":15.640965513730123,"throughput_eps":0,"last_update":"2026-03-22T06:47:32.479970244Z"} +2026/03/22 06:47:37 [transform_engine] {"stage_name":"transform_engine","events_processed":92,"events_dropped":0,"avg_latency_ms":364.09055469875494,"throughput_eps":0,"last_update":"2026-03-22T06:47:32.478832044Z"} +2026/03/22 06:47:37 ───────────────────────────────────────────────── +2026/03/22 06:47:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:47:42 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":15.640965513730123,"throughput_eps":0,"last_update":"2026-03-22T06:47:37.47925739Z"} +2026/03/22 06:47:42 [transform_engine] {"stage_name":"transform_engine","events_processed":92,"events_dropped":0,"avg_latency_ms":364.09055469875494,"throughput_eps":0,"last_update":"2026-03-22T06:47:37.4792155Z"} +2026/03/22 06:47:42 [log_collector] {"stage_name":"log_collector","events_processed":4929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":985.8,"last_update":"2026-03-22T06:47:42.368573106Z"} +2026/03/22 06:47:42 [metric_collector] {"stage_name":"metric_collector","events_processed":2769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":553.8,"last_update":"2026-03-22T06:47:37.369563384Z"} +2026/03/22 06:47:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:47:37.378025038Z"} +2026/03/22 06:47:42 ───────────────────────────────────────────────── +2026/03/22 06:47:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:47:47 [log_collector] {"stage_name":"log_collector","events_processed":4929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":985.8,"last_update":"2026-03-22T06:47:47.368004813Z"} +2026/03/22 06:47:47 [metric_collector] {"stage_name":"metric_collector","events_processed":2774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":554.8,"last_update":"2026-03-22T06:47:42.369061341Z"} +2026/03/22 06:47:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:47:42.379617055Z"} +2026/03/22 06:47:47 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":15.640965513730123,"throughput_eps":0,"last_update":"2026-03-22T06:47:42.479840224Z"} +2026/03/22 06:47:47 [transform_engine] {"stage_name":"transform_engine","events_processed":92,"events_dropped":0,"avg_latency_ms":364.09055469875494,"throughput_eps":0,"last_update":"2026-03-22T06:47:42.479811769Z"} +2026/03/22 06:47:47 ───────────────────────────────────────────────── +Saved state: 11 clusters, 4930 messages, reason: none +2026/03/22 06:47:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:47:52 [log_collector] {"stage_name":"log_collector","events_processed":4929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":985.8,"last_update":"2026-03-22T06:47:47.368004813Z"} +2026/03/22 06:47:52 [metric_collector] {"stage_name":"metric_collector","events_processed":2779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":555.8,"last_update":"2026-03-22T06:47:47.368409107Z"} +2026/03/22 06:47:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:47:47.375926793Z"} +2026/03/22 06:47:52 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":15.640965513730123,"throughput_eps":0,"last_update":"2026-03-22T06:47:47.479173732Z"} +2026/03/22 06:47:52 [transform_engine] {"stage_name":"transform_engine","events_processed":92,"events_dropped":0,"avg_latency_ms":364.09055469875494,"throughput_eps":0,"last_update":"2026-03-22T06:47:47.479225593Z"} +2026/03/22 06:47:52 ───────────────────────────────────────────────── +2026/03/22 06:47:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:47:57 [transform_engine] {"stage_name":"transform_engine","events_processed":92,"events_dropped":0,"avg_latency_ms":364.09055469875494,"throughput_eps":0,"last_update":"2026-03-22T06:47:52.480905611Z"} +2026/03/22 06:47:57 [log_collector] {"stage_name":"log_collector","events_processed":4934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":986.8,"last_update":"2026-03-22T06:47:52.368629561Z"} +2026/03/22 06:47:57 [metric_collector] {"stage_name":"metric_collector","events_processed":2784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":556.8,"last_update":"2026-03-22T06:47:52.368726848Z"} +2026/03/22 06:47:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:47:52.376456219Z"} +2026/03/22 06:47:57 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":15.640965513730123,"throughput_eps":0,"last_update":"2026-03-22T06:47:52.480415663Z"} +2026/03/22 06:47:57 ───────────────────────────────────────────────── +2026/03/22 06:48:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:48:02 [log_collector] {"stage_name":"log_collector","events_processed":4934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":986.8,"last_update":"2026-03-22T06:48:02.368189239Z"} +2026/03/22 06:48:02 [metric_collector] {"stage_name":"metric_collector","events_processed":2789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":557.8,"last_update":"2026-03-22T06:47:57.36906918Z"} +2026/03/22 06:48:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:47:57.383232391Z"} +2026/03/22 06:48:02 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":15.640965513730123,"throughput_eps":0,"last_update":"2026-03-22T06:47:57.479365409Z"} +2026/03/22 06:48:02 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":305.89026955900397,"throughput_eps":0,"last_update":"2026-03-22T06:47:57.552487681Z"} +2026/03/22 06:48:02 ───────────────────────────────────────────────── +2026/03/22 06:48:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:48:07 [log_collector] {"stage_name":"log_collector","events_processed":4934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":986.8,"last_update":"2026-03-22T06:48:02.368189239Z"} +2026/03/22 06:48:07 [metric_collector] {"stage_name":"metric_collector","events_processed":2794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":558.8,"last_update":"2026-03-22T06:48:02.368548066Z"} +2026/03/22 06:48:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:48:02.374361308Z"} +2026/03/22 06:48:07 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":14.594270410984098,"throughput_eps":0,"last_update":"2026-03-22T06:48:02.479535338Z"} +2026/03/22 06:48:07 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":305.89026955900397,"throughput_eps":0,"last_update":"2026-03-22T06:48:02.479516541Z"} +2026/03/22 06:48:07 ───────────────────────────────────────────────── +2026/03/22 06:48:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:48:12 [log_collector] {"stage_name":"log_collector","events_processed":4934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":986.8,"last_update":"2026-03-22T06:48:12.368724604Z"} +2026/03/22 06:48:12 [metric_collector] {"stage_name":"metric_collector","events_processed":2799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":559.8,"last_update":"2026-03-22T06:48:07.368738332Z"} +2026/03/22 06:48:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1122,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:48:07.376036698Z"} +2026/03/22 06:48:12 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":14.594270410984098,"throughput_eps":0,"last_update":"2026-03-22T06:48:07.479246156Z"} +2026/03/22 06:48:12 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":305.89026955900397,"throughput_eps":0,"last_update":"2026-03-22T06:48:07.479257196Z"} +2026/03/22 06:48:12 ───────────────────────────────────────────────── +2026/03/22 06:48:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:48:17 [log_collector] {"stage_name":"log_collector","events_processed":4934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":986.8,"last_update":"2026-03-22T06:48:12.368724604Z"} +2026/03/22 06:48:17 [metric_collector] {"stage_name":"metric_collector","events_processed":2804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":560.8,"last_update":"2026-03-22T06:48:12.369109402Z"} +2026/03/22 06:48:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:48:12.375828819Z"} +2026/03/22 06:48:17 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":14.594270410984098,"throughput_eps":0,"last_update":"2026-03-22T06:48:12.478940078Z"} +2026/03/22 06:48:17 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":305.89026955900397,"throughput_eps":0,"last_update":"2026-03-22T06:48:12.478927223Z"} +2026/03/22 06:48:17 ───────────────────────────────────────────────── +2026/03/22 06:48:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:48:22 [log_collector] {"stage_name":"log_collector","events_processed":4934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":986.8,"last_update":"2026-03-22T06:48:22.368017228Z"} +2026/03/22 06:48:22 [metric_collector] {"stage_name":"metric_collector","events_processed":2809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":561.8,"last_update":"2026-03-22T06:48:17.368367164Z"} +2026/03/22 06:48:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1126,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:48:17.373943723Z"} +2026/03/22 06:48:22 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":14.594270410984098,"throughput_eps":0,"last_update":"2026-03-22T06:48:17.47916869Z"} +2026/03/22 06:48:22 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":305.89026955900397,"throughput_eps":0,"last_update":"2026-03-22T06:48:17.479181334Z"} +2026/03/22 06:48:22 ───────────────────────────────────────────────── +2026/03/22 06:48:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:48:27 [log_collector] {"stage_name":"log_collector","events_processed":4934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":986.8,"last_update":"2026-03-22T06:48:22.368017228Z"} +2026/03/22 06:48:27 [metric_collector] {"stage_name":"metric_collector","events_processed":2814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":562.8,"last_update":"2026-03-22T06:48:22.368233422Z"} +2026/03/22 06:48:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1128,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:48:22.378073255Z"} +2026/03/22 06:48:27 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":14.594270410984098,"throughput_eps":0,"last_update":"2026-03-22T06:48:22.479246442Z"} +2026/03/22 06:48:27 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":305.89026955900397,"throughput_eps":0,"last_update":"2026-03-22T06:48:22.479256822Z"} +2026/03/22 06:48:27 ───────────────────────────────────────────────── +2026/03/22 06:48:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:48:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1130,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:48:27.37614893Z"} +2026/03/22 06:48:32 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":14.594270410984098,"throughput_eps":0,"last_update":"2026-03-22T06:48:27.479329623Z"} +2026/03/22 06:48:32 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":265.22100204720317,"throughput_eps":0,"last_update":"2026-03-22T06:48:27.581890648Z"} +2026/03/22 06:48:32 [log_collector] {"stage_name":"log_collector","events_processed":4934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":986.8,"last_update":"2026-03-22T06:48:27.368809786Z"} +2026/03/22 06:48:32 [metric_collector] {"stage_name":"metric_collector","events_processed":2819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":563.8,"last_update":"2026-03-22T06:48:27.368802943Z"} +2026/03/22 06:48:32 ───────────────────────────────────────────────── +2026/03/22 06:48:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:48:37 [log_collector] {"stage_name":"log_collector","events_processed":4937,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":987.4,"last_update":"2026-03-22T06:48:32.368841694Z"} +2026/03/22 06:48:37 [metric_collector] {"stage_name":"metric_collector","events_processed":2824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":564.8,"last_update":"2026-03-22T06:48:32.369130918Z"} +2026/03/22 06:48:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:48:32.374944471Z"} +2026/03/22 06:48:37 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":13.838784928787279,"throughput_eps":0,"last_update":"2026-03-22T06:48:32.479108596Z"} +2026/03/22 06:48:37 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":265.22100204720317,"throughput_eps":0,"last_update":"2026-03-22T06:48:32.479119406Z"} +2026/03/22 06:48:37 ───────────────────────────────────────────────── +2026/03/22 06:48:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:48:42 [log_collector] {"stage_name":"log_collector","events_processed":5009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1001.8,"last_update":"2026-03-22T06:48:37.368115055Z"} +2026/03/22 06:48:42 [metric_collector] {"stage_name":"metric_collector","events_processed":2829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":565.8,"last_update":"2026-03-22T06:48:37.368225065Z"} +2026/03/22 06:48:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:48:37.375269556Z"} +2026/03/22 06:48:42 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":13.838784928787279,"throughput_eps":0,"last_update":"2026-03-22T06:48:37.479535626Z"} +2026/03/22 06:48:42 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":265.22100204720317,"throughput_eps":0,"last_update":"2026-03-22T06:48:37.479560494Z"} +2026/03/22 06:48:42 ───────────────────────────────────────────────── +2026/03/22 06:48:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:48:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:48:42.381146109Z"} +2026/03/22 06:48:47 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":13.838784928787279,"throughput_eps":0,"last_update":"2026-03-22T06:48:42.479805553Z"} +2026/03/22 06:48:47 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":265.22100204720317,"throughput_eps":0,"last_update":"2026-03-22T06:48:42.479816023Z"} +2026/03/22 06:48:47 [log_collector] {"stage_name":"log_collector","events_processed":5213,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1042.6,"last_update":"2026-03-22T06:48:42.369018877Z"} +2026/03/22 06:48:47 [metric_collector] {"stage_name":"metric_collector","events_processed":2834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":566.8,"last_update":"2026-03-22T06:48:42.369013577Z"} +2026/03/22 06:48:47 ───────────────────────────────────────────────── +2026/03/22 06:48:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:48:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:48:47.377515383Z"} +2026/03/22 06:48:52 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":13.838784928787279,"throughput_eps":0,"last_update":"2026-03-22T06:48:47.479997466Z"} +2026/03/22 06:48:52 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":265.22100204720317,"throughput_eps":0,"last_update":"2026-03-22T06:48:47.478828588Z"} +2026/03/22 06:48:52 [log_collector] {"stage_name":"log_collector","events_processed":5295,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1059,"last_update":"2026-03-22T06:48:52.36856094Z"} +2026/03/22 06:48:52 [metric_collector] {"stage_name":"metric_collector","events_processed":2839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":567.8,"last_update":"2026-03-22T06:48:47.369458463Z"} +2026/03/22 06:48:52 ───────────────────────────────────────────────── +2026/03/22 06:48:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:48:57 [log_collector] {"stage_name":"log_collector","events_processed":5295,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1059,"last_update":"2026-03-22T06:48:52.36856094Z"} +2026/03/22 06:48:57 [metric_collector] {"stage_name":"metric_collector","events_processed":2844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":568.8,"last_update":"2026-03-22T06:48:52.368623409Z"} +2026/03/22 06:48:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:48:52.379325423Z"} +2026/03/22 06:48:57 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":13.838784928787279,"throughput_eps":0,"last_update":"2026-03-22T06:48:52.479528722Z"} +2026/03/22 06:48:57 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":265.22100204720317,"throughput_eps":0,"last_update":"2026-03-22T06:48:52.47954304Z"} +2026/03/22 06:48:57 ───────────────────────────────────────────────── +2026/03/22 06:49:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:49:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:48:57.377643723Z"} +2026/03/22 06:49:02 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":13.838784928787279,"throughput_eps":0,"last_update":"2026-03-22T06:48:57.480008312Z"} +2026/03/22 06:49:02 [transform_engine] {"stage_name":"transform_engine","events_processed":95,"events_dropped":0,"avg_latency_ms":235.01563563776253,"throughput_eps":0,"last_update":"2026-03-22T06:48:57.593087278Z"} +2026/03/22 06:49:02 [log_collector] {"stage_name":"log_collector","events_processed":5295,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1059,"last_update":"2026-03-22T06:48:57.368103113Z"} +2026/03/22 06:49:02 [metric_collector] {"stage_name":"metric_collector","events_processed":2854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":570.8,"last_update":"2026-03-22T06:49:02.368955775Z"} +2026/03/22 06:49:02 ───────────────────────────────────────────────── +2026/03/22 06:49:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:49:07 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":14.157243943029824,"throughput_eps":0,"last_update":"2026-03-22T06:49:02.479312698Z"} +2026/03/22 06:49:07 [transform_engine] {"stage_name":"transform_engine","events_processed":95,"events_dropped":0,"avg_latency_ms":235.01563563776253,"throughput_eps":0,"last_update":"2026-03-22T06:49:02.479331383Z"} +2026/03/22 06:49:07 [log_collector] {"stage_name":"log_collector","events_processed":5295,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1059,"last_update":"2026-03-22T06:49:02.369070063Z"} +2026/03/22 06:49:07 [metric_collector] {"stage_name":"metric_collector","events_processed":2854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":570.8,"last_update":"2026-03-22T06:49:02.368955775Z"} +2026/03/22 06:49:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:49:02.378112459Z"} +2026/03/22 06:49:07 ───────────────────────────────────────────────── +2026/03/22 06:49:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:49:12 [log_collector] {"stage_name":"log_collector","events_processed":5295,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1059,"last_update":"2026-03-22T06:49:07.368516649Z"} +2026/03/22 06:49:12 [metric_collector] {"stage_name":"metric_collector","events_processed":2859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":571.8,"last_update":"2026-03-22T06:49:07.368859224Z"} +2026/03/22 06:49:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:49:07.378243163Z"} +2026/03/22 06:49:12 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":14.157243943029824,"throughput_eps":0,"last_update":"2026-03-22T06:49:07.479397936Z"} +2026/03/22 06:49:12 [transform_engine] {"stage_name":"transform_engine","events_processed":95,"events_dropped":0,"avg_latency_ms":235.01563563776253,"throughput_eps":0,"last_update":"2026-03-22T06:49:07.47941058Z"} +2026/03/22 06:49:12 ───────────────────────────────────────────────── +2026/03/22 06:49:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:49:17 [transform_engine] {"stage_name":"transform_engine","events_processed":95,"events_dropped":0,"avg_latency_ms":235.01563563776253,"throughput_eps":0,"last_update":"2026-03-22T06:49:12.478861522Z"} +2026/03/22 06:49:17 [log_collector] {"stage_name":"log_collector","events_processed":5295,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1059,"last_update":"2026-03-22T06:49:12.36865691Z"} +2026/03/22 06:49:17 [metric_collector] {"stage_name":"metric_collector","events_processed":2864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":572.8,"last_update":"2026-03-22T06:49:12.368947597Z"} +2026/03/22 06:49:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:49:12.377739031Z"} +2026/03/22 06:49:17 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":14.157243943029824,"throughput_eps":0,"last_update":"2026-03-22T06:49:12.480007186Z"} +2026/03/22 06:49:17 ───────────────────────────────────────────────── +2026/03/22 06:49:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:49:22 [log_collector] {"stage_name":"log_collector","events_processed":5295,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1059,"last_update":"2026-03-22T06:49:17.367960365Z"} +2026/03/22 06:49:22 [metric_collector] {"stage_name":"metric_collector","events_processed":2869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":573.8,"last_update":"2026-03-22T06:49:17.36829775Z"} +2026/03/22 06:49:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:49:17.376947012Z"} +2026/03/22 06:49:22 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":14.157243943029824,"throughput_eps":0,"last_update":"2026-03-22T06:49:17.479275653Z"} +2026/03/22 06:49:22 [transform_engine] {"stage_name":"transform_engine","events_processed":95,"events_dropped":0,"avg_latency_ms":235.01563563776253,"throughput_eps":0,"last_update":"2026-03-22T06:49:17.479287746Z"} +2026/03/22 06:49:22 ───────────────────────────────────────────────── +2026/03/22 06:49:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:49:27 [log_collector] {"stage_name":"log_collector","events_processed":5295,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1059,"last_update":"2026-03-22T06:49:22.368660652Z"} +2026/03/22 06:49:27 [metric_collector] {"stage_name":"metric_collector","events_processed":2874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":574.8,"last_update":"2026-03-22T06:49:22.368942382Z"} +2026/03/22 06:49:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:49:22.377524115Z"} +2026/03/22 06:49:27 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":14.157243943029824,"throughput_eps":0,"last_update":"2026-03-22T06:49:22.479833378Z"} +2026/03/22 06:49:27 [transform_engine] {"stage_name":"transform_engine","events_processed":95,"events_dropped":0,"avg_latency_ms":235.01563563776253,"throughput_eps":0,"last_update":"2026-03-22T06:49:22.479851262Z"} +2026/03/22 06:49:27 ───────────────────────────────────────────────── +2026/03/22 06:49:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:49:32 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":201.77147771021004,"throughput_eps":0,"last_update":"2026-03-22T06:49:27.547904182Z"} +2026/03/22 06:49:32 [log_collector] {"stage_name":"log_collector","events_processed":5295,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1059,"last_update":"2026-03-22T06:49:27.368224863Z"} +2026/03/22 06:49:32 [metric_collector] {"stage_name":"metric_collector","events_processed":2879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":575.8,"last_update":"2026-03-22T06:49:27.368541749Z"} +2026/03/22 06:49:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:49:27.377858039Z"} +2026/03/22 06:49:32 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":14.157243943029824,"throughput_eps":0,"last_update":"2026-03-22T06:49:27.479093677Z"} +2026/03/22 06:49:32 ───────────────────────────────────────────────── +2026/03/22 06:49:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:49:37 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":15.31115475442386,"throughput_eps":0,"last_update":"2026-03-22T06:49:32.479024274Z"} +2026/03/22 06:49:37 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":201.77147771021004,"throughput_eps":0,"last_update":"2026-03-22T06:49:32.478911328Z"} +2026/03/22 06:49:37 [log_collector] {"stage_name":"log_collector","events_processed":5295,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1059,"last_update":"2026-03-22T06:49:32.368830264Z"} +2026/03/22 06:49:37 [metric_collector] {"stage_name":"metric_collector","events_processed":2884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":576.8,"last_update":"2026-03-22T06:49:32.368924164Z"} +2026/03/22 06:49:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:49:32.378780157Z"} +2026/03/22 06:49:37 ───────────────────────────────────────────────── +2026/03/22 06:49:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:49:42 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":15.31115475442386,"throughput_eps":0,"last_update":"2026-03-22T06:49:37.479667986Z"} +2026/03/22 06:49:42 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":201.77147771021004,"throughput_eps":0,"last_update":"2026-03-22T06:49:37.479681652Z"} +2026/03/22 06:49:42 [log_collector] {"stage_name":"log_collector","events_processed":5295,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1059,"last_update":"2026-03-22T06:49:37.36854198Z"} +2026/03/22 06:49:42 [metric_collector] {"stage_name":"metric_collector","events_processed":2889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":577.8,"last_update":"2026-03-22T06:49:37.368771981Z"} +2026/03/22 06:49:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:49:37.375418067Z"} +2026/03/22 06:49:42 ───────────────────────────────────────────────── +2026/03/22 06:49:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:49:47 [metric_collector] {"stage_name":"metric_collector","events_processed":2894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":578.8,"last_update":"2026-03-22T06:49:42.368267221Z"} +2026/03/22 06:49:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:49:42.377135532Z"} +2026/03/22 06:49:47 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":15.31115475442386,"throughput_eps":0,"last_update":"2026-03-22T06:49:42.479377786Z"} +2026/03/22 06:49:47 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":201.77147771021004,"throughput_eps":0,"last_update":"2026-03-22T06:49:42.479391833Z"} +2026/03/22 06:49:47 [log_collector] {"stage_name":"log_collector","events_processed":5295,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1059,"last_update":"2026-03-22T06:49:42.367975082Z"} +2026/03/22 06:49:47 ───────────────────────────────────────────────── +2026/03/22 06:49:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:49:52 [log_collector] {"stage_name":"log_collector","events_processed":5295,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1059,"last_update":"2026-03-22T06:49:52.368224193Z"} +2026/03/22 06:49:52 [metric_collector] {"stage_name":"metric_collector","events_processed":2899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":579.8,"last_update":"2026-03-22T06:49:47.369615987Z"} +2026/03/22 06:49:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:49:47.377055101Z"} +2026/03/22 06:49:52 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":15.31115475442386,"throughput_eps":0,"last_update":"2026-03-22T06:49:47.479394823Z"} +2026/03/22 06:49:52 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":201.77147771021004,"throughput_eps":0,"last_update":"2026-03-22T06:49:47.479412105Z"} +2026/03/22 06:49:52 ───────────────────────────────────────────────── +2026/03/22 06:49:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:49:57 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":201.77147771021004,"throughput_eps":0,"last_update":"2026-03-22T06:49:52.479287608Z"} +2026/03/22 06:49:57 [log_collector] {"stage_name":"log_collector","events_processed":5295,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1059,"last_update":"2026-03-22T06:49:52.368224193Z"} +2026/03/22 06:49:57 [metric_collector] {"stage_name":"metric_collector","events_processed":2904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":580.8,"last_update":"2026-03-22T06:49:52.368439154Z"} +2026/03/22 06:49:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:49:52.377025907Z"} +2026/03/22 06:49:57 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":15.31115475442386,"throughput_eps":0,"last_update":"2026-03-22T06:49:52.479274343Z"} +2026/03/22 06:49:57 ───────────────────────────────────────────────── +2026/03/22 06:50:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:50:02 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":15.31115475442386,"throughput_eps":0,"last_update":"2026-03-22T06:49:57.479306592Z"} +2026/03/22 06:50:02 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":175.05344016816804,"throughput_eps":0,"last_update":"2026-03-22T06:49:57.547505417Z"} +2026/03/22 06:50:02 [log_collector] {"stage_name":"log_collector","events_processed":5295,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1059,"last_update":"2026-03-22T06:49:57.368170227Z"} +2026/03/22 06:50:02 [metric_collector] {"stage_name":"metric_collector","events_processed":2909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":581.8,"last_update":"2026-03-22T06:49:57.368671808Z"} +2026/03/22 06:50:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:49:57.378094081Z"} +2026/03/22 06:50:02 ───────────────────────────────────────────────── +2026/03/22 06:50:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:50:07 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":15.67733300353909,"throughput_eps":0,"last_update":"2026-03-22T06:50:02.479285157Z"} +2026/03/22 06:50:07 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":175.05344016816804,"throughput_eps":0,"last_update":"2026-03-22T06:50:02.479298933Z"} +2026/03/22 06:50:07 [log_collector] {"stage_name":"log_collector","events_processed":5295,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1059,"last_update":"2026-03-22T06:50:07.367980573Z"} +2026/03/22 06:50:07 [metric_collector] {"stage_name":"metric_collector","events_processed":2914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":582.8,"last_update":"2026-03-22T06:50:02.36914543Z"} +2026/03/22 06:50:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:50:02.384067143Z"} +2026/03/22 06:50:07 ───────────────────────────────────────────────── +2026/03/22 06:50:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:50:12 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":175.05344016816804,"throughput_eps":0,"last_update":"2026-03-22T06:50:07.479561619Z"} +2026/03/22 06:50:12 [log_collector] {"stage_name":"log_collector","events_processed":5295,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1059,"last_update":"2026-03-22T06:50:07.367980573Z"} +2026/03/22 06:50:12 [metric_collector] {"stage_name":"metric_collector","events_processed":2919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":583.8,"last_update":"2026-03-22T06:50:07.368562818Z"} +2026/03/22 06:50:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1170,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:50:07.377397905Z"} +2026/03/22 06:50:12 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":15.67733300353909,"throughput_eps":0,"last_update":"2026-03-22T06:50:07.479549686Z"} +2026/03/22 06:50:12 ───────────────────────────────────────────────── +2026/03/22 06:50:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:50:17 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":15.67733300353909,"throughput_eps":0,"last_update":"2026-03-22T06:50:12.479343231Z"} +2026/03/22 06:50:17 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":175.05344016816804,"throughput_eps":0,"last_update":"2026-03-22T06:50:12.479376956Z"} +2026/03/22 06:50:17 [log_collector] {"stage_name":"log_collector","events_processed":5295,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1059,"last_update":"2026-03-22T06:50:12.368196436Z"} +2026/03/22 06:50:17 [metric_collector] {"stage_name":"metric_collector","events_processed":2924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":584.8,"last_update":"2026-03-22T06:50:12.368633473Z"} +2026/03/22 06:50:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:50:12.378116912Z"} +2026/03/22 06:50:17 ───────────────────────────────────────────────── +Saved state: 11 clusters, 5296 messages, reason: none +2026/03/22 06:50:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:50:22 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":15.67733300353909,"throughput_eps":0,"last_update":"2026-03-22T06:50:17.479372405Z"} +2026/03/22 06:50:22 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":175.05344016816804,"throughput_eps":0,"last_update":"2026-03-22T06:50:17.479385409Z"} +2026/03/22 06:50:22 [log_collector] {"stage_name":"log_collector","events_processed":5298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1059.6,"last_update":"2026-03-22T06:50:22.369378433Z"} +2026/03/22 06:50:22 [metric_collector] {"stage_name":"metric_collector","events_processed":2934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":586.8,"last_update":"2026-03-22T06:50:22.36819703Z"} +2026/03/22 06:50:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:50:17.377121674Z"} +2026/03/22 06:50:22 ───────────────────────────────────────────────── +2026/03/22 06:50:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:50:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:50:22.377249415Z"} +2026/03/22 06:50:27 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":15.67733300353909,"throughput_eps":0,"last_update":"2026-03-22T06:50:22.479449247Z"} +2026/03/22 06:50:27 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":175.05344016816804,"throughput_eps":0,"last_update":"2026-03-22T06:50:22.479462604Z"} +2026/03/22 06:50:27 [log_collector] {"stage_name":"log_collector","events_processed":5298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1059.6,"last_update":"2026-03-22T06:50:22.369378433Z"} +2026/03/22 06:50:27 [metric_collector] {"stage_name":"metric_collector","events_processed":2934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":586.8,"last_update":"2026-03-22T06:50:22.36819703Z"} +2026/03/22 06:50:27 ───────────────────────────────────────────────── +2026/03/22 06:50:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:50:32 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":15.67733300353909,"throughput_eps":0,"last_update":"2026-03-22T06:50:27.479972542Z"} +2026/03/22 06:50:32 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":673.0149729345345,"throughput_eps":0,"last_update":"2026-03-22T06:50:30.143742447Z"} +2026/03/22 06:50:32 [log_collector] {"stage_name":"log_collector","events_processed":5298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1059.6,"last_update":"2026-03-22T06:50:27.368553837Z"} +2026/03/22 06:50:32 [metric_collector] {"stage_name":"metric_collector","events_processed":2939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":587.8,"last_update":"2026-03-22T06:50:27.368734463Z"} +2026/03/22 06:50:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:50:27.378746054Z"} +2026/03/22 06:50:32 ───────────────────────────────────────────────── +2026/03/22 06:50:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:50:37 [log_collector] {"stage_name":"log_collector","events_processed":5323,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1064.6,"last_update":"2026-03-22T06:50:37.368524562Z"} +2026/03/22 06:50:37 [metric_collector] {"stage_name":"metric_collector","events_processed":2944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":588.8,"last_update":"2026-03-22T06:50:32.368415263Z"} +2026/03/22 06:50:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:50:32.377202099Z"} +2026/03/22 06:50:37 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":14.887233602831273,"throughput_eps":0,"last_update":"2026-03-22T06:50:32.479485972Z"} +2026/03/22 06:50:37 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":673.0149729345345,"throughput_eps":0,"last_update":"2026-03-22T06:50:32.47951632Z"} +2026/03/22 06:50:37 ───────────────────────────────────────────────── +2026/03/22 06:50:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:50:42 [log_collector] {"stage_name":"log_collector","events_processed":5325,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1065,"last_update":"2026-03-22T06:50:42.368910917Z"} +2026/03/22 06:50:42 [metric_collector] {"stage_name":"metric_collector","events_processed":2949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":589.8,"last_update":"2026-03-22T06:50:37.36884239Z"} +2026/03/22 06:50:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:50:37.375407071Z"} +2026/03/22 06:50:42 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":14.887233602831273,"throughput_eps":0,"last_update":"2026-03-22T06:50:37.479710111Z"} +2026/03/22 06:50:42 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":673.0149729345345,"throughput_eps":0,"last_update":"2026-03-22T06:50:37.479622503Z"} +2026/03/22 06:50:42 ───────────────────────────────────────────────── +2026/03/22 06:50:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:50:47 [metric_collector] {"stage_name":"metric_collector","events_processed":2954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":590.8,"last_update":"2026-03-22T06:50:42.369401708Z"} +2026/03/22 06:50:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:50:42.378087711Z"} +2026/03/22 06:50:47 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":14.887233602831273,"throughput_eps":0,"last_update":"2026-03-22T06:50:42.479417807Z"} +2026/03/22 06:50:47 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":673.0149729345345,"throughput_eps":0,"last_update":"2026-03-22T06:50:42.479271276Z"} +2026/03/22 06:50:47 [log_collector] {"stage_name":"log_collector","events_processed":5325,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1065,"last_update":"2026-03-22T06:50:42.368910917Z"} +2026/03/22 06:50:47 ───────────────────────────────────────────────── +2026/03/22 06:50:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:50:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:50:47.375881188Z"} +2026/03/22 06:50:52 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":14.887233602831273,"throughput_eps":0,"last_update":"2026-03-22T06:50:47.479163213Z"} +2026/03/22 06:50:52 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":673.0149729345345,"throughput_eps":0,"last_update":"2026-03-22T06:50:47.479119769Z"} +2026/03/22 06:50:52 [log_collector] {"stage_name":"log_collector","events_processed":5339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1067.8,"last_update":"2026-03-22T06:50:52.36800089Z"} +2026/03/22 06:50:52 [metric_collector] {"stage_name":"metric_collector","events_processed":2959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":591.8,"last_update":"2026-03-22T06:50:47.369261171Z"} +2026/03/22 06:50:52 ───────────────────────────────────────────────── +2026/03/22 06:50:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:50:57 [log_collector] {"stage_name":"log_collector","events_processed":5339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1067.8,"last_update":"2026-03-22T06:50:52.36800089Z"} +2026/03/22 06:50:57 [metric_collector] {"stage_name":"metric_collector","events_processed":2964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":592.8,"last_update":"2026-03-22T06:50:52.368861538Z"} +2026/03/22 06:50:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:50:52.378017731Z"} +2026/03/22 06:50:57 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":14.887233602831273,"throughput_eps":0,"last_update":"2026-03-22T06:50:52.479400729Z"} +2026/03/22 06:50:57 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":673.0149729345345,"throughput_eps":0,"last_update":"2026-03-22T06:50:52.479436547Z"} +2026/03/22 06:50:57 ───────────────────────────────────────────────── +2026/03/22 06:51:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:51:02 [log_collector] {"stage_name":"log_collector","events_processed":5339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1067.8,"last_update":"2026-03-22T06:50:57.368642678Z"} +2026/03/22 06:51:02 [metric_collector] {"stage_name":"metric_collector","events_processed":2969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":593.8,"last_update":"2026-03-22T06:50:57.368830317Z"} +2026/03/22 06:51:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:50:57.377823568Z"} +2026/03/22 06:51:02 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":14.887233602831273,"throughput_eps":0,"last_update":"2026-03-22T06:50:57.47901542Z"} +2026/03/22 06:51:02 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":560.6361175476276,"throughput_eps":0,"last_update":"2026-03-22T06:50:57.590046754Z"} +2026/03/22 06:51:02 ───────────────────────────────────────────────── +2026/03/22 06:51:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:51:07 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":560.6361175476276,"throughput_eps":0,"last_update":"2026-03-22T06:51:02.479596731Z"} +2026/03/22 06:51:07 [log_collector] {"stage_name":"log_collector","events_processed":5339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1067.8,"last_update":"2026-03-22T06:51:07.36852296Z"} +2026/03/22 06:51:07 [metric_collector] {"stage_name":"metric_collector","events_processed":2974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":594.8,"last_update":"2026-03-22T06:51:02.36924053Z"} +2026/03/22 06:51:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:51:02.378526341Z"} +2026/03/22 06:51:07 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":15.450923682265019,"throughput_eps":0,"last_update":"2026-03-22T06:51:02.479636216Z"} +2026/03/22 06:51:07 ───────────────────────────────────────────────── +2026/03/22 06:51:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:51:12 [metric_collector] {"stage_name":"metric_collector","events_processed":2979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":595.8,"last_update":"2026-03-22T06:51:07.369461517Z"} +2026/03/22 06:51:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:51:07.377037013Z"} +2026/03/22 06:51:12 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":15.450923682265019,"throughput_eps":0,"last_update":"2026-03-22T06:51:07.479293955Z"} +2026/03/22 06:51:12 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":560.6361175476276,"throughput_eps":0,"last_update":"2026-03-22T06:51:07.479248498Z"} +2026/03/22 06:51:12 [log_collector] {"stage_name":"log_collector","events_processed":5339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1067.8,"last_update":"2026-03-22T06:51:07.36852296Z"} +2026/03/22 06:51:12 ───────────────────────────────────────────────── +2026/03/22 06:51:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:51:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:51:12.376300164Z"} +2026/03/22 06:51:17 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":15.450923682265019,"throughput_eps":0,"last_update":"2026-03-22T06:51:12.479625331Z"} +2026/03/22 06:51:17 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":560.6361175476276,"throughput_eps":0,"last_update":"2026-03-22T06:51:12.479523046Z"} +2026/03/22 06:51:17 [log_collector] {"stage_name":"log_collector","events_processed":5339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1067.8,"last_update":"2026-03-22T06:51:17.368325514Z"} +2026/03/22 06:51:17 [metric_collector] {"stage_name":"metric_collector","events_processed":2984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":596.8,"last_update":"2026-03-22T06:51:12.368900855Z"} +2026/03/22 06:51:17 ───────────────────────────────────────────────── +2026/03/22 06:51:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:51:22 [log_collector] {"stage_name":"log_collector","events_processed":5339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1067.8,"last_update":"2026-03-22T06:51:22.368582494Z"} +2026/03/22 06:51:22 [metric_collector] {"stage_name":"metric_collector","events_processed":2989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":597.8,"last_update":"2026-03-22T06:51:17.368966872Z"} +2026/03/22 06:51:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:51:17.376744956Z"} +2026/03/22 06:51:22 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":15.450923682265019,"throughput_eps":0,"last_update":"2026-03-22T06:51:17.478943987Z"} +2026/03/22 06:51:22 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":560.6361175476276,"throughput_eps":0,"last_update":"2026-03-22T06:51:17.478886487Z"} +2026/03/22 06:51:22 ───────────────────────────────────────────────── +2026/03/22 06:51:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:51:27 [log_collector] {"stage_name":"log_collector","events_processed":5339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1067.8,"last_update":"2026-03-22T06:51:22.368582494Z"} +2026/03/22 06:51:27 [metric_collector] {"stage_name":"metric_collector","events_processed":2994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":598.8,"last_update":"2026-03-22T06:51:22.368964626Z"} +2026/03/22 06:51:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:51:22.377032725Z"} +2026/03/22 06:51:27 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":15.450923682265019,"throughput_eps":0,"last_update":"2026-03-22T06:51:22.479231645Z"} +2026/03/22 06:51:27 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":560.6361175476276,"throughput_eps":0,"last_update":"2026-03-22T06:51:22.479338079Z"} +2026/03/22 06:51:27 ───────────────────────────────────────────────── +2026/03/22 06:51:27 mad: auto-calibrated on 100 vectors (51 features) +2026/03/22 06:51:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:51:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:51:27.378210527Z"} +2026/03/22 06:51:32 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":15.450923682265019,"throughput_eps":0,"last_update":"2026-03-22T06:51:27.480503155Z"} +2026/03/22 06:51:32 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":461.9166804381021,"throughput_eps":0,"last_update":"2026-03-22T06:51:27.546507697Z"} +2026/03/22 06:51:32 [log_collector] {"stage_name":"log_collector","events_processed":5339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1067.8,"last_update":"2026-03-22T06:51:27.368803844Z"} +2026/03/22 06:51:32 [metric_collector] {"stage_name":"metric_collector","events_processed":2998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":599.6,"last_update":"2026-03-22T06:51:27.368810177Z"} +2026/03/22 06:51:32 ───────────────────────────────────────────────── +2026/03/22 06:51:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:51:37 [log_collector] {"stage_name":"log_collector","events_processed":5339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1067.8,"last_update":"2026-03-22T06:51:32.368427547Z"} +2026/03/22 06:51:37 [metric_collector] {"stage_name":"metric_collector","events_processed":3003,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":600.6,"last_update":"2026-03-22T06:51:32.368435191Z"} +2026/03/22 06:51:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:51:32.377466415Z"} +2026/03/22 06:51:37 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":16.24942934581202,"throughput_eps":0,"last_update":"2026-03-22T06:51:32.479707826Z"} +2026/03/22 06:51:37 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":461.9166804381021,"throughput_eps":0,"last_update":"2026-03-22T06:51:32.479721292Z"} +2026/03/22 06:51:37 ───────────────────────────────────────────────── +2026/03/22 06:51:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:51:42 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":16.24942934581202,"throughput_eps":0,"last_update":"2026-03-22T06:51:37.479465485Z"} +2026/03/22 06:51:42 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":461.9166804381021,"throughput_eps":0,"last_update":"2026-03-22T06:51:37.479478509Z"} +2026/03/22 06:51:42 [log_collector] {"stage_name":"log_collector","events_processed":5339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1067.8,"last_update":"2026-03-22T06:51:37.368658681Z"} +2026/03/22 06:51:42 [metric_collector] {"stage_name":"metric_collector","events_processed":3008,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":601.6,"last_update":"2026-03-22T06:51:37.368645094Z"} +2026/03/22 06:51:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1206,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:51:37.378404502Z"} +2026/03/22 06:51:42 ───────────────────────────────────────────────── +2026/03/22 06:51:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:51:47 [log_collector] {"stage_name":"log_collector","events_processed":5339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1067.8,"last_update":"2026-03-22T06:51:42.36816259Z"} +2026/03/22 06:51:47 [metric_collector] {"stage_name":"metric_collector","events_processed":3014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":602.8,"last_update":"2026-03-22T06:51:42.36832453Z"} +2026/03/22 06:51:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:51:42.378899941Z"} +2026/03/22 06:51:47 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":16.24942934581202,"throughput_eps":0,"last_update":"2026-03-22T06:51:42.479216005Z"} +2026/03/22 06:51:47 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":461.9166804381021,"throughput_eps":0,"last_update":"2026-03-22T06:51:42.479229241Z"} +2026/03/22 06:51:47 ───────────────────────────────────────────────── +Saved state: 11 clusters, 5340 messages, reason: none +2026/03/22 06:51:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:51:52 [log_collector] {"stage_name":"log_collector","events_processed":5339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1067.8,"last_update":"2026-03-22T06:51:47.368078517Z"} +2026/03/22 06:51:52 [metric_collector] {"stage_name":"metric_collector","events_processed":3019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":603.8,"last_update":"2026-03-22T06:51:47.368282447Z"} +2026/03/22 06:51:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1210,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:51:47.378238462Z"} +2026/03/22 06:51:52 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":16.24942934581202,"throughput_eps":0,"last_update":"2026-03-22T06:51:47.47949674Z"} +2026/03/22 06:51:52 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":461.9166804381021,"throughput_eps":0,"last_update":"2026-03-22T06:51:47.479510016Z"} +2026/03/22 06:51:52 ───────────────────────────────────────────────── +2026/03/22 06:51:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:51:57 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":16.24942934581202,"throughput_eps":0,"last_update":"2026-03-22T06:51:52.479453593Z"} +2026/03/22 06:51:57 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":461.9166804381021,"throughput_eps":0,"last_update":"2026-03-22T06:51:52.479465946Z"} +2026/03/22 06:51:57 [log_collector] {"stage_name":"log_collector","events_processed":5344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1068.8,"last_update":"2026-03-22T06:51:57.368324495Z"} +2026/03/22 06:51:57 [metric_collector] {"stage_name":"metric_collector","events_processed":3024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":604.8,"last_update":"2026-03-22T06:51:52.368439913Z"} +2026/03/22 06:51:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:51:52.377246187Z"} +2026/03/22 06:51:57 ───────────────────────────────────────────────── +2026/03/22 06:52:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:52:02 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":16.24942934581202,"throughput_eps":0,"last_update":"2026-03-22T06:51:57.479149043Z"} +2026/03/22 06:52:02 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":1117.7673879504819,"throughput_eps":0,"last_update":"2026-03-22T06:52:01.220340902Z"} +2026/03/22 06:52:02 [log_collector] {"stage_name":"log_collector","events_processed":5344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1068.8,"last_update":"2026-03-22T06:51:57.368324495Z"} +2026/03/22 06:52:02 [metric_collector] {"stage_name":"metric_collector","events_processed":3034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":606.8,"last_update":"2026-03-22T06:52:02.368578243Z"} +2026/03/22 06:52:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:51:57.379920671Z"} +2026/03/22 06:52:02 ───────────────────────────────────────────────── +2026/03/22 06:52:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:52:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:52:02.376659578Z"} +2026/03/22 06:52:07 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":15.124903276649615,"throughput_eps":0,"last_update":"2026-03-22T06:52:02.479815129Z"} +2026/03/22 06:52:07 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":1117.7673879504819,"throughput_eps":0,"last_update":"2026-03-22T06:52:02.479797135Z"} +2026/03/22 06:52:07 [log_collector] {"stage_name":"log_collector","events_processed":5344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1068.8,"last_update":"2026-03-22T06:52:02.368763648Z"} +2026/03/22 06:52:07 [metric_collector] {"stage_name":"metric_collector","events_processed":3034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":606.8,"last_update":"2026-03-22T06:52:02.368578243Z"} +2026/03/22 06:52:07 ───────────────────────────────────────────────── +2026/03/22 06:52:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:52:12 [log_collector] {"stage_name":"log_collector","events_processed":5344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1068.8,"last_update":"2026-03-22T06:52:07.368411973Z"} +2026/03/22 06:52:12 [metric_collector] {"stage_name":"metric_collector","events_processed":3039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":607.8,"last_update":"2026-03-22T06:52:07.368417704Z"} +2026/03/22 06:52:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:52:07.376193413Z"} +2026/03/22 06:52:12 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":15.124903276649615,"throughput_eps":0,"last_update":"2026-03-22T06:52:07.479406606Z"} +2026/03/22 06:52:12 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":1117.7673879504819,"throughput_eps":0,"last_update":"2026-03-22T06:52:07.479437304Z"} +2026/03/22 06:52:12 ───────────────────────────────────────────────── +2026/03/22 06:52:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:52:17 [log_collector] {"stage_name":"log_collector","events_processed":5344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1068.8,"last_update":"2026-03-22T06:52:12.367951529Z"} +2026/03/22 06:52:17 [metric_collector] {"stage_name":"metric_collector","events_processed":3044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":608.8,"last_update":"2026-03-22T06:52:12.368306238Z"} +2026/03/22 06:52:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:52:12.376537911Z"} +2026/03/22 06:52:17 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":15.124903276649615,"throughput_eps":0,"last_update":"2026-03-22T06:52:12.479743829Z"} +2026/03/22 06:52:17 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":1117.7673879504819,"throughput_eps":0,"last_update":"2026-03-22T06:52:12.479724792Z"} +2026/03/22 06:52:17 ───────────────────────────────────────────────── +2026/03/22 06:52:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:52:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1222,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:52:17.376251406Z"} +2026/03/22 06:52:22 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":15.124903276649615,"throughput_eps":0,"last_update":"2026-03-22T06:52:17.481369846Z"} +2026/03/22 06:52:22 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":1117.7673879504819,"throughput_eps":0,"last_update":"2026-03-22T06:52:17.479435502Z"} +2026/03/22 06:52:22 [log_collector] {"stage_name":"log_collector","events_processed":5344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1068.8,"last_update":"2026-03-22T06:52:17.368685087Z"} +2026/03/22 06:52:22 [metric_collector] {"stage_name":"metric_collector","events_processed":3049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":609.8,"last_update":"2026-03-22T06:52:17.368935286Z"} +2026/03/22 06:52:22 ───────────────────────────────────────────────── +2026/03/22 06:52:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:52:27 [metric_collector] {"stage_name":"metric_collector","events_processed":3054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":610.8,"last_update":"2026-03-22T06:52:22.368464608Z"} +2026/03/22 06:52:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:52:22.37711304Z"} +2026/03/22 06:52:27 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":15.124903276649615,"throughput_eps":0,"last_update":"2026-03-22T06:52:22.479307962Z"} +2026/03/22 06:52:27 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":1117.7673879504819,"throughput_eps":0,"last_update":"2026-03-22T06:52:22.47929138Z"} +2026/03/22 06:52:27 [log_collector] {"stage_name":"log_collector","events_processed":5344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1068.8,"last_update":"2026-03-22T06:52:22.367964892Z"} +2026/03/22 06:52:27 ───────────────────────────────────────────────── +2026/03/22 06:52:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:52:32 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":15.124903276649615,"throughput_eps":0,"last_update":"2026-03-22T06:52:27.479325035Z"} +2026/03/22 06:52:32 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":915.5192899603855,"throughput_eps":0,"last_update":"2026-03-22T06:52:27.585888633Z"} +2026/03/22 06:52:32 [log_collector] {"stage_name":"log_collector","events_processed":5344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1068.8,"last_update":"2026-03-22T06:52:27.369110236Z"} +2026/03/22 06:52:32 [metric_collector] {"stage_name":"metric_collector","events_processed":3059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":611.8,"last_update":"2026-03-22T06:52:27.369644749Z"} +2026/03/22 06:52:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:52:27.379229223Z"} +2026/03/22 06:52:32 ───────────────────────────────────────────────── +2026/03/22 06:52:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:52:37 [log_collector] {"stage_name":"log_collector","events_processed":5347,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1069.4,"last_update":"2026-03-22T06:52:32.368531036Z"} +2026/03/22 06:52:37 [metric_collector] {"stage_name":"metric_collector","events_processed":3064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":612.8,"last_update":"2026-03-22T06:52:32.368743985Z"} +2026/03/22 06:52:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:52:32.375588631Z"} +2026/03/22 06:52:37 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":14.017648821319693,"throughput_eps":0,"last_update":"2026-03-22T06:52:32.479906007Z"} +2026/03/22 06:52:37 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":915.5192899603855,"throughput_eps":0,"last_update":"2026-03-22T06:52:32.479840642Z"} +2026/03/22 06:52:37 ───────────────────────────────────────────────── +2026/03/22 06:52:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:52:42 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":915.5192899603855,"throughput_eps":0,"last_update":"2026-03-22T06:52:37.478917512Z"} +2026/03/22 06:52:42 [log_collector] {"stage_name":"log_collector","events_processed":5355,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1071,"last_update":"2026-03-22T06:52:37.367970871Z"} +2026/03/22 06:52:42 [metric_collector] {"stage_name":"metric_collector","events_processed":3069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":613.8,"last_update":"2026-03-22T06:52:37.368443255Z"} +2026/03/22 06:52:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:52:37.375738144Z"} +2026/03/22 06:52:42 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":14.017648821319693,"throughput_eps":0,"last_update":"2026-03-22T06:52:37.478959992Z"} +2026/03/22 06:52:42 ───────────────────────────────────────────────── +2026/03/22 06:52:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:52:47 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":915.5192899603855,"throughput_eps":0,"last_update":"2026-03-22T06:52:42.478820431Z"} +2026/03/22 06:52:47 [log_collector] {"stage_name":"log_collector","events_processed":5416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1083.2,"last_update":"2026-03-22T06:52:42.368186299Z"} +2026/03/22 06:52:47 [metric_collector] {"stage_name":"metric_collector","events_processed":3074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":614.8,"last_update":"2026-03-22T06:52:42.368413464Z"} +2026/03/22 06:52:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:52:42.3760625Z"} +2026/03/22 06:52:47 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":14.017648821319693,"throughput_eps":0,"last_update":"2026-03-22T06:52:42.47991109Z"} +2026/03/22 06:52:47 ───────────────────────────────────────────────── +2026/03/22 06:52:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:52:52 [log_collector] {"stage_name":"log_collector","events_processed":5710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1142,"last_update":"2026-03-22T06:52:47.368778107Z"} +2026/03/22 06:52:52 [metric_collector] {"stage_name":"metric_collector","events_processed":3079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":615.8,"last_update":"2026-03-22T06:52:47.369051459Z"} +2026/03/22 06:52:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:52:47.376036305Z"} +2026/03/22 06:52:52 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":14.017648821319693,"throughput_eps":0,"last_update":"2026-03-22T06:52:47.479299542Z"} +2026/03/22 06:52:52 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":915.5192899603855,"throughput_eps":0,"last_update":"2026-03-22T06:52:47.479256129Z"} +2026/03/22 06:52:52 ───────────────────────────────────────────────── +2026/03/22 06:52:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:52:57 [log_collector] {"stage_name":"log_collector","events_processed":5712,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1142.4,"last_update":"2026-03-22T06:52:57.368308868Z"} +2026/03/22 06:52:57 [metric_collector] {"stage_name":"metric_collector","events_processed":3083,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":616.6,"last_update":"2026-03-22T06:52:52.368007993Z"} +2026/03/22 06:52:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:52:52.378054791Z"} +2026/03/22 06:52:57 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":14.017648821319693,"throughput_eps":0,"last_update":"2026-03-22T06:52:52.479314242Z"} +2026/03/22 06:52:57 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":915.5192899603855,"throughput_eps":0,"last_update":"2026-03-22T06:52:52.479339019Z"} +2026/03/22 06:52:57 ───────────────────────────────────────────────── +Saved state: 11 clusters, 5713 messages, reason: none +2026/03/22 06:53:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:53:02 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":14.017648821319693,"throughput_eps":0,"last_update":"2026-03-22T06:52:57.479188821Z"} +2026/03/22 06:53:02 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":748.8223251683085,"throughput_eps":0,"last_update":"2026-03-22T06:52:57.561331525Z"} +2026/03/22 06:53:02 [log_collector] {"stage_name":"log_collector","events_processed":5712,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1142.4,"last_update":"2026-03-22T06:52:57.368308868Z"} +2026/03/22 06:53:02 [metric_collector] {"stage_name":"metric_collector","events_processed":3089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":617.8,"last_update":"2026-03-22T06:52:57.368851357Z"} +2026/03/22 06:53:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:52:57.379023886Z"} +2026/03/22 06:53:02 ───────────────────────────────────────────────── +2026/03/22 06:53:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:53:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:53:02.382529928Z"} +2026/03/22 06:53:07 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":14.384742257055754,"throughput_eps":0,"last_update":"2026-03-22T06:53:02.479736879Z"} +2026/03/22 06:53:07 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":748.8223251683085,"throughput_eps":0,"last_update":"2026-03-22T06:53:02.479750163Z"} +2026/03/22 06:53:07 [log_collector] {"stage_name":"log_collector","events_processed":5715,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1143,"last_update":"2026-03-22T06:53:02.36931888Z"} +2026/03/22 06:53:07 [metric_collector] {"stage_name":"metric_collector","events_processed":3094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":618.8,"last_update":"2026-03-22T06:53:02.369694149Z"} +2026/03/22 06:53:07 ───────────────────────────────────────────────── +2026/03/22 06:53:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:53:12 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":14.384742257055754,"throughput_eps":0,"last_update":"2026-03-22T06:53:07.47974009Z"} +2026/03/22 06:53:12 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":748.8223251683085,"throughput_eps":0,"last_update":"2026-03-22T06:53:07.479751843Z"} +2026/03/22 06:53:12 [log_collector] {"stage_name":"log_collector","events_processed":5715,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1143,"last_update":"2026-03-22T06:53:07.368118507Z"} +2026/03/22 06:53:12 [metric_collector] {"stage_name":"metric_collector","events_processed":3099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":619.8,"last_update":"2026-03-22T06:53:07.36811443Z"} +2026/03/22 06:53:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:53:07.375516253Z"} +2026/03/22 06:53:12 ───────────────────────────────────────────────── +2026/03/22 06:53:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:53:17 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":748.8223251683085,"throughput_eps":0,"last_update":"2026-03-22T06:53:12.478919073Z"} +2026/03/22 06:53:17 [log_collector] {"stage_name":"log_collector","events_processed":5734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1146.8,"last_update":"2026-03-22T06:53:12.368713813Z"} +2026/03/22 06:53:17 [metric_collector] {"stage_name":"metric_collector","events_processed":3104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":620.8,"last_update":"2026-03-22T06:53:12.368955105Z"} +2026/03/22 06:53:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:53:12.374764719Z"} +2026/03/22 06:53:17 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":14.384742257055754,"throughput_eps":0,"last_update":"2026-03-22T06:53:12.478947878Z"} +2026/03/22 06:53:17 ───────────────────────────────────────────────── +2026/03/22 06:53:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:53:22 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":14.384742257055754,"throughput_eps":0,"last_update":"2026-03-22T06:53:17.479513495Z"} +2026/03/22 06:53:22 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":748.8223251683085,"throughput_eps":0,"last_update":"2026-03-22T06:53:17.479524215Z"} +2026/03/22 06:53:22 [log_collector] {"stage_name":"log_collector","events_processed":5742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1148.4,"last_update":"2026-03-22T06:53:17.368805642Z"} +2026/03/22 06:53:22 [metric_collector] {"stage_name":"metric_collector","events_processed":3109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":621.8,"last_update":"2026-03-22T06:53:17.368969516Z"} +2026/03/22 06:53:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1246,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:53:17.37532741Z"} +2026/03/22 06:53:22 ───────────────────────────────────────────────── +2026/03/22 06:53:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:53:27 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":14.384742257055754,"throughput_eps":0,"last_update":"2026-03-22T06:53:22.47944317Z"} +2026/03/22 06:53:27 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":748.8223251683085,"throughput_eps":0,"last_update":"2026-03-22T06:53:22.479456717Z"} +2026/03/22 06:53:27 [log_collector] {"stage_name":"log_collector","events_processed":5742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1148.4,"last_update":"2026-03-22T06:53:22.368865848Z"} +2026/03/22 06:53:27 [metric_collector] {"stage_name":"metric_collector","events_processed":3114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":622.8,"last_update":"2026-03-22T06:53:22.369254893Z"} +2026/03/22 06:53:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:53:22.378224119Z"} +2026/03/22 06:53:27 ───────────────────────────────────────────────── +2026/03/22 06:53:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:53:32 [log_collector] {"stage_name":"log_collector","events_processed":5742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1148.4,"last_update":"2026-03-22T06:53:27.368217354Z"} +2026/03/22 06:53:32 [metric_collector] {"stage_name":"metric_collector","events_processed":3119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":623.8,"last_update":"2026-03-22T06:53:27.368637239Z"} +2026/03/22 06:53:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:53:27.379172393Z"} +2026/03/22 06:53:32 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":14.384742257055754,"throughput_eps":0,"last_update":"2026-03-22T06:53:27.479451686Z"} +2026/03/22 06:53:32 [transform_engine] {"stage_name":"transform_engine","events_processed":104,"events_dropped":0,"avg_latency_ms":622.7692509346468,"throughput_eps":0,"last_update":"2026-03-22T06:53:27.598027004Z"} +2026/03/22 06:53:32 ───────────────────────────────────────────────── +2026/03/22 06:53:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:53:37 [metric_collector] {"stage_name":"metric_collector","events_processed":3124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":624.8,"last_update":"2026-03-22T06:53:32.368294681Z"} +2026/03/22 06:53:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:53:32.377846462Z"} +2026/03/22 06:53:37 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":14.915170405644602,"throughput_eps":0,"last_update":"2026-03-22T06:53:32.47909469Z"} +2026/03/22 06:53:37 [transform_engine] {"stage_name":"transform_engine","events_processed":104,"events_dropped":0,"avg_latency_ms":622.7692509346468,"throughput_eps":0,"last_update":"2026-03-22T06:53:32.479199371Z"} +2026/03/22 06:53:37 [log_collector] {"stage_name":"log_collector","events_processed":5742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1148.4,"last_update":"2026-03-22T06:53:32.367999827Z"} +2026/03/22 06:53:37 ───────────────────────────────────────────────── +2026/03/22 06:53:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:53:42 [metric_collector] {"stage_name":"metric_collector","events_processed":3129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":625.8,"last_update":"2026-03-22T06:53:37.368652002Z"} +2026/03/22 06:53:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:53:37.377900792Z"} +2026/03/22 06:53:42 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":14.915170405644602,"throughput_eps":0,"last_update":"2026-03-22T06:53:37.47914844Z"} +2026/03/22 06:53:42 [transform_engine] {"stage_name":"transform_engine","events_processed":104,"events_dropped":0,"avg_latency_ms":622.7692509346468,"throughput_eps":0,"last_update":"2026-03-22T06:53:37.479264121Z"} +2026/03/22 06:53:42 [log_collector] {"stage_name":"log_collector","events_processed":5742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1148.4,"last_update":"2026-03-22T06:53:37.368059847Z"} +2026/03/22 06:53:42 ───────────────────────────────────────────────── +2026/03/22 06:53:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:53:47 [metric_collector] {"stage_name":"metric_collector","events_processed":3134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":626.8,"last_update":"2026-03-22T06:53:42.369049397Z"} +2026/03/22 06:53:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:53:42.377862163Z"} +2026/03/22 06:53:47 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":14.915170405644602,"throughput_eps":0,"last_update":"2026-03-22T06:53:42.479101635Z"} +2026/03/22 06:53:47 [transform_engine] {"stage_name":"transform_engine","events_processed":104,"events_dropped":0,"avg_latency_ms":622.7692509346468,"throughput_eps":0,"last_update":"2026-03-22T06:53:42.479129007Z"} +2026/03/22 06:53:47 [log_collector] {"stage_name":"log_collector","events_processed":5742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1148.4,"last_update":"2026-03-22T06:53:42.368746326Z"} +2026/03/22 06:53:47 ───────────────────────────────────────────────── +2026/03/22 06:53:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:53:52 [log_collector] {"stage_name":"log_collector","events_processed":5742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1148.4,"last_update":"2026-03-22T06:53:47.368462957Z"} +2026/03/22 06:53:52 [metric_collector] {"stage_name":"metric_collector","events_processed":3139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":627.8,"last_update":"2026-03-22T06:53:47.369053597Z"} +2026/03/22 06:53:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:53:47.377387626Z"} +2026/03/22 06:53:52 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":14.915170405644602,"throughput_eps":0,"last_update":"2026-03-22T06:53:47.479685375Z"} +2026/03/22 06:53:52 [transform_engine] {"stage_name":"transform_engine","events_processed":104,"events_dropped":0,"avg_latency_ms":622.7692509346468,"throughput_eps":0,"last_update":"2026-03-22T06:53:47.479650267Z"} +2026/03/22 06:53:52 ───────────────────────────────────────────────── +2026/03/22 06:53:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:53:57 [transform_engine] {"stage_name":"transform_engine","events_processed":104,"events_dropped":0,"avg_latency_ms":622.7692509346468,"throughput_eps":0,"last_update":"2026-03-22T06:53:52.47988074Z"} +2026/03/22 06:53:57 [log_collector] {"stage_name":"log_collector","events_processed":5742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1148.4,"last_update":"2026-03-22T06:53:52.367992798Z"} +2026/03/22 06:53:57 [metric_collector] {"stage_name":"metric_collector","events_processed":3144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":628.8,"last_update":"2026-03-22T06:53:52.368263156Z"} +2026/03/22 06:53:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:53:52.376666246Z"} +2026/03/22 06:53:57 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":14.915170405644602,"throughput_eps":0,"last_update":"2026-03-22T06:53:52.479829001Z"} +2026/03/22 06:53:57 ───────────────────────────────────────────────── +2026/03/22 06:54:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:54:02 [log_collector] {"stage_name":"log_collector","events_processed":5742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1148.4,"last_update":"2026-03-22T06:53:57.368039646Z"} +2026/03/22 06:54:02 [metric_collector] {"stage_name":"metric_collector","events_processed":3149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":629.8,"last_update":"2026-03-22T06:53:57.368678049Z"} +2026/03/22 06:54:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:53:57.377505743Z"} +2026/03/22 06:54:02 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":14.915170405644602,"throughput_eps":0,"last_update":"2026-03-22T06:53:57.480067877Z"} +2026/03/22 06:54:02 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":512.0241851477175,"throughput_eps":0,"last_update":"2026-03-22T06:53:57.548788269Z"} +2026/03/22 06:54:02 ───────────────────────────────────────────────── +2026/03/22 06:54:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:54:07 [log_collector] {"stage_name":"log_collector","events_processed":5742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1148.4,"last_update":"2026-03-22T06:54:02.368833114Z"} +2026/03/22 06:54:07 [metric_collector] {"stage_name":"metric_collector","events_processed":3154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":630.8,"last_update":"2026-03-22T06:54:02.368881427Z"} +2026/03/22 06:54:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:54:02.377592036Z"} +2026/03/22 06:54:07 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":15.77924892451568,"throughput_eps":0,"last_update":"2026-03-22T06:54:02.479810102Z"} +2026/03/22 06:54:07 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":512.0241851477175,"throughput_eps":0,"last_update":"2026-03-22T06:54:02.479779433Z"} +2026/03/22 06:54:07 ───────────────────────────────────────────────── +2026/03/22 06:54:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:54:12 [log_collector] {"stage_name":"log_collector","events_processed":5742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1148.4,"last_update":"2026-03-22T06:54:07.368778725Z"} +2026/03/22 06:54:12 [metric_collector] {"stage_name":"metric_collector","events_processed":3159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":631.8,"last_update":"2026-03-22T06:54:07.369149144Z"} +2026/03/22 06:54:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:54:07.379360338Z"} +2026/03/22 06:54:12 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":15.77924892451568,"throughput_eps":0,"last_update":"2026-03-22T06:54:07.479518519Z"} +2026/03/22 06:54:12 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":512.0241851477175,"throughput_eps":0,"last_update":"2026-03-22T06:54:07.479586388Z"} +2026/03/22 06:54:12 ───────────────────────────────────────────────── +2026/03/22 06:54:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:54:17 [metric_collector] {"stage_name":"metric_collector","events_processed":3164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":632.8,"last_update":"2026-03-22T06:54:12.368912987Z"} +2026/03/22 06:54:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:54:12.376577834Z"} +2026/03/22 06:54:17 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":15.77924892451568,"throughput_eps":0,"last_update":"2026-03-22T06:54:12.479919702Z"} +2026/03/22 06:54:17 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":512.0241851477175,"throughput_eps":0,"last_update":"2026-03-22T06:54:12.479847353Z"} +2026/03/22 06:54:17 [log_collector] {"stage_name":"log_collector","events_processed":5742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1148.4,"last_update":"2026-03-22T06:54:12.368588365Z"} +2026/03/22 06:54:17 ───────────────────────────────────────────────── +2026/03/22 06:54:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:54:22 [log_collector] {"stage_name":"log_collector","events_processed":5742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1148.4,"last_update":"2026-03-22T06:54:17.368023175Z"} +2026/03/22 06:54:22 [metric_collector] {"stage_name":"metric_collector","events_processed":3169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":633.8,"last_update":"2026-03-22T06:54:17.368514507Z"} +2026/03/22 06:54:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:54:17.377116208Z"} +2026/03/22 06:54:22 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":15.77924892451568,"throughput_eps":0,"last_update":"2026-03-22T06:54:17.479506683Z"} +2026/03/22 06:54:22 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":512.0241851477175,"throughput_eps":0,"last_update":"2026-03-22T06:54:17.479384279Z"} +2026/03/22 06:54:22 ───────────────────────────────────────────────── +Saved state: 11 clusters, 5743 messages, reason: none +2026/03/22 06:54:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:54:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:54:22.376272613Z"} +2026/03/22 06:54:27 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":15.77924892451568,"throughput_eps":0,"last_update":"2026-03-22T06:54:22.479646993Z"} +2026/03/22 06:54:27 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":512.0241851477175,"throughput_eps":0,"last_update":"2026-03-22T06:54:22.479514409Z"} +2026/03/22 06:54:27 [log_collector] {"stage_name":"log_collector","events_processed":5742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1148.4,"last_update":"2026-03-22T06:54:22.368335855Z"} +2026/03/22 06:54:27 [metric_collector] {"stage_name":"metric_collector","events_processed":3174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":634.8,"last_update":"2026-03-22T06:54:22.368653674Z"} +2026/03/22 06:54:27 ───────────────────────────────────────────────── +2026/03/22 06:54:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:54:32 [metric_collector] {"stage_name":"metric_collector","events_processed":3179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":635.8,"last_update":"2026-03-22T06:54:27.368841033Z"} +2026/03/22 06:54:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:54:27.377791963Z"} +2026/03/22 06:54:32 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":15.77924892451568,"throughput_eps":0,"last_update":"2026-03-22T06:54:27.48019842Z"} +2026/03/22 06:54:32 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":512.0241851477175,"throughput_eps":0,"last_update":"2026-03-22T06:54:27.478918799Z"} +2026/03/22 06:54:32 [log_collector] {"stage_name":"log_collector","events_processed":5745,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1149,"last_update":"2026-03-22T06:54:27.368654877Z"} +2026/03/22 06:54:32 ───────────────────────────────────────────────── +2026/03/22 06:54:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:54:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1276,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:54:32.377491927Z"} +2026/03/22 06:54:37 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":16.961973139612546,"throughput_eps":0,"last_update":"2026-03-22T06:54:32.479717417Z"} +2026/03/22 06:54:37 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":431.564931518174,"throughput_eps":0,"last_update":"2026-03-22T06:54:32.479827007Z"} +2026/03/22 06:54:37 [log_collector] {"stage_name":"log_collector","events_processed":5756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1151.2,"last_update":"2026-03-22T06:54:32.368414836Z"} +2026/03/22 06:54:37 [metric_collector] {"stage_name":"metric_collector","events_processed":3184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":636.8,"last_update":"2026-03-22T06:54:32.368786016Z"} +2026/03/22 06:54:37 ───────────────────────────────────────────────── +2026/03/22 06:54:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:54:42 [log_collector] {"stage_name":"log_collector","events_processed":5756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1151.2,"last_update":"2026-03-22T06:54:42.367984675Z"} +2026/03/22 06:54:42 [metric_collector] {"stage_name":"metric_collector","events_processed":3189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":637.8,"last_update":"2026-03-22T06:54:37.368468305Z"} +2026/03/22 06:54:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:54:37.375726513Z"} +2026/03/22 06:54:42 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":16.961973139612546,"throughput_eps":0,"last_update":"2026-03-22T06:54:37.478976234Z"} +2026/03/22 06:54:42 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":431.564931518174,"throughput_eps":0,"last_update":"2026-03-22T06:54:37.47891088Z"} +2026/03/22 06:54:42 ───────────────────────────────────────────────── +2026/03/22 06:54:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:54:47 [log_collector] {"stage_name":"log_collector","events_processed":5756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1151.2,"last_update":"2026-03-22T06:54:42.367984675Z"} +2026/03/22 06:54:47 [metric_collector] {"stage_name":"metric_collector","events_processed":3194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":638.8,"last_update":"2026-03-22T06:54:42.36879671Z"} +2026/03/22 06:54:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:54:42.378022796Z"} +2026/03/22 06:54:47 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":16.961973139612546,"throughput_eps":0,"last_update":"2026-03-22T06:54:42.47942016Z"} +2026/03/22 06:54:47 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":431.564931518174,"throughput_eps":0,"last_update":"2026-03-22T06:54:42.479325058Z"} +2026/03/22 06:54:47 ───────────────────────────────────────────────── +2026/03/22 06:54:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:54:52 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":16.961973139612546,"throughput_eps":0,"last_update":"2026-03-22T06:54:47.479539863Z"} +2026/03/22 06:54:52 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":431.564931518174,"throughput_eps":0,"last_update":"2026-03-22T06:54:47.479587514Z"} +2026/03/22 06:54:52 [log_collector] {"stage_name":"log_collector","events_processed":5756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1151.2,"last_update":"2026-03-22T06:54:47.368366158Z"} +2026/03/22 06:54:52 [metric_collector] {"stage_name":"metric_collector","events_processed":3199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":639.8,"last_update":"2026-03-22T06:54:47.368654721Z"} +2026/03/22 06:54:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:54:47.375309273Z"} +2026/03/22 06:54:52 ───────────────────────────────────────────────── +2026/03/22 06:54:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:54:57 [log_collector] {"stage_name":"log_collector","events_processed":5756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1151.2,"last_update":"2026-03-22T06:54:52.36858437Z"} +2026/03/22 06:54:57 [metric_collector] {"stage_name":"metric_collector","events_processed":3204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":640.8,"last_update":"2026-03-22T06:54:52.368988975Z"} +2026/03/22 06:54:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:54:52.378915052Z"} +2026/03/22 06:54:57 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":16.961973139612546,"throughput_eps":0,"last_update":"2026-03-22T06:54:52.479241635Z"} +2026/03/22 06:54:57 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":431.564931518174,"throughput_eps":0,"last_update":"2026-03-22T06:54:52.479218801Z"} +2026/03/22 06:54:57 ───────────────────────────────────────────────── +2026/03/22 06:55:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:55:02 [transform_engine] {"stage_name":"transform_engine","events_processed":107,"events_dropped":0,"avg_latency_ms":368.8611200145392,"throughput_eps":0,"last_update":"2026-03-22T06:54:57.597150197Z"} +2026/03/22 06:55:02 [log_collector] {"stage_name":"log_collector","events_processed":5756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1151.2,"last_update":"2026-03-22T06:55:02.368662299Z"} +2026/03/22 06:55:02 [metric_collector] {"stage_name":"metric_collector","events_processed":3209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":641.8,"last_update":"2026-03-22T06:54:57.368607675Z"} +2026/03/22 06:55:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1286,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:54:57.37787936Z"} +2026/03/22 06:55:02 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":16.961973139612546,"throughput_eps":0,"last_update":"2026-03-22T06:54:57.479085927Z"} +2026/03/22 06:55:02 ───────────────────────────────────────────────── +2026/03/22 06:55:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:55:07 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":17.473860711690037,"throughput_eps":0,"last_update":"2026-03-22T06:55:02.479385601Z"} +2026/03/22 06:55:07 [transform_engine] {"stage_name":"transform_engine","events_processed":107,"events_dropped":0,"avg_latency_ms":368.8611200145392,"throughput_eps":0,"last_update":"2026-03-22T06:55:02.479420879Z"} +2026/03/22 06:55:07 [log_collector] {"stage_name":"log_collector","events_processed":5756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1151.2,"last_update":"2026-03-22T06:55:02.368662299Z"} +2026/03/22 06:55:07 [metric_collector] {"stage_name":"metric_collector","events_processed":3214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":642.8,"last_update":"2026-03-22T06:55:02.369127179Z"} +2026/03/22 06:55:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:55:02.377071562Z"} +2026/03/22 06:55:07 ───────────────────────────────────────────────── +2026/03/22 06:55:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:55:12 [transform_engine] {"stage_name":"transform_engine","events_processed":107,"events_dropped":0,"avg_latency_ms":368.8611200145392,"throughput_eps":0,"last_update":"2026-03-22T06:55:07.479663051Z"} +2026/03/22 06:55:12 [log_collector] {"stage_name":"log_collector","events_processed":5756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1151.2,"last_update":"2026-03-22T06:55:07.368013415Z"} +2026/03/22 06:55:12 [metric_collector] {"stage_name":"metric_collector","events_processed":3219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":643.8,"last_update":"2026-03-22T06:55:07.368418291Z"} +2026/03/22 06:55:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:55:07.377411852Z"} +2026/03/22 06:55:12 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":17.473860711690037,"throughput_eps":0,"last_update":"2026-03-22T06:55:07.479630188Z"} +2026/03/22 06:55:12 ───────────────────────────────────────────────── +2026/03/22 06:55:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:55:17 [log_collector] {"stage_name":"log_collector","events_processed":5756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1151.2,"last_update":"2026-03-22T06:55:17.367977247Z"} +2026/03/22 06:55:17 [metric_collector] {"stage_name":"metric_collector","events_processed":3229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":645.8,"last_update":"2026-03-22T06:55:17.368433521Z"} +2026/03/22 06:55:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:55:12.377150047Z"} +2026/03/22 06:55:17 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":17.473860711690037,"throughput_eps":0,"last_update":"2026-03-22T06:55:12.479385625Z"} +2026/03/22 06:55:17 [transform_engine] {"stage_name":"transform_engine","events_processed":107,"events_dropped":0,"avg_latency_ms":368.8611200145392,"throughput_eps":0,"last_update":"2026-03-22T06:55:12.479344115Z"} +2026/03/22 06:55:17 ───────────────────────────────────────────────── +2026/03/22 06:55:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:55:22 [log_collector] {"stage_name":"log_collector","events_processed":5756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1151.2,"last_update":"2026-03-22T06:55:17.367977247Z"} +2026/03/22 06:55:22 [metric_collector] {"stage_name":"metric_collector","events_processed":3229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":645.8,"last_update":"2026-03-22T06:55:17.368433521Z"} +2026/03/22 06:55:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:55:17.378456754Z"} +2026/03/22 06:55:22 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":17.473860711690037,"throughput_eps":0,"last_update":"2026-03-22T06:55:17.479743626Z"} +2026/03/22 06:55:22 [transform_engine] {"stage_name":"transform_engine","events_processed":107,"events_dropped":0,"avg_latency_ms":368.8611200145392,"throughput_eps":0,"last_update":"2026-03-22T06:55:17.479690815Z"} +2026/03/22 06:55:22 ───────────────────────────────────────────────── +2026/03/22 06:55:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:55:27 [log_collector] {"stage_name":"log_collector","events_processed":5756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1151.2,"last_update":"2026-03-22T06:55:27.368469164Z"} +2026/03/22 06:55:27 [metric_collector] {"stage_name":"metric_collector","events_processed":3234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":646.8,"last_update":"2026-03-22T06:55:22.36887538Z"} +2026/03/22 06:55:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:55:22.37782115Z"} +2026/03/22 06:55:27 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":17.473860711690037,"throughput_eps":0,"last_update":"2026-03-22T06:55:22.479036757Z"} +2026/03/22 06:55:27 [transform_engine] {"stage_name":"transform_engine","events_processed":107,"events_dropped":0,"avg_latency_ms":368.8611200145392,"throughput_eps":0,"last_update":"2026-03-22T06:55:22.478926845Z"} +2026/03/22 06:55:27 ───────────────────────────────────────────────── +Saved state: 11 clusters, 5757 messages, reason: none +2026/03/22 06:55:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:55:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:55:27.379473793Z"} +2026/03/22 06:55:32 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":17.473860711690037,"throughput_eps":0,"last_update":"2026-03-22T06:55:27.479733598Z"} +2026/03/22 06:55:32 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":308.5426336116314,"throughput_eps":0,"last_update":"2026-03-22T06:55:27.547045189Z"} +2026/03/22 06:55:32 [log_collector] {"stage_name":"log_collector","events_processed":5761,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1152.2,"last_update":"2026-03-22T06:55:32.368316296Z"} +2026/03/22 06:55:32 [metric_collector] {"stage_name":"metric_collector","events_processed":3239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":647.8,"last_update":"2026-03-22T06:55:27.369183894Z"} +2026/03/22 06:55:32 ───────────────────────────────────────────────── +2026/03/22 06:55:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:55:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:55:32.375575724Z"} +2026/03/22 06:55:37 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":17.62232596935203,"throughput_eps":0,"last_update":"2026-03-22T06:55:32.479781432Z"} +2026/03/22 06:55:37 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":308.5426336116314,"throughput_eps":0,"last_update":"2026-03-22T06:55:32.479807412Z"} +2026/03/22 06:55:37 [log_collector] {"stage_name":"log_collector","events_processed":5761,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1152.2,"last_update":"2026-03-22T06:55:37.368663207Z"} +2026/03/22 06:55:37 [metric_collector] {"stage_name":"metric_collector","events_processed":3244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":648.8,"last_update":"2026-03-22T06:55:32.368822526Z"} +2026/03/22 06:55:37 ───────────────────────────────────────────────── +2026/03/22 06:55:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:55:42 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":17.62232596935203,"throughput_eps":0,"last_update":"2026-03-22T06:55:37.479141268Z"} +2026/03/22 06:55:42 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":308.5426336116314,"throughput_eps":0,"last_update":"2026-03-22T06:55:37.47917319Z"} +2026/03/22 06:55:42 [log_collector] {"stage_name":"log_collector","events_processed":5761,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1152.2,"last_update":"2026-03-22T06:55:37.368663207Z"} +2026/03/22 06:55:42 [metric_collector] {"stage_name":"metric_collector","events_processed":3249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":649.8,"last_update":"2026-03-22T06:55:37.369070909Z"} +2026/03/22 06:55:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:55:37.374914593Z"} +2026/03/22 06:55:42 ───────────────────────────────────────────────── +2026/03/22 06:55:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:55:47 [metric_collector] {"stage_name":"metric_collector","events_processed":3254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":650.8,"last_update":"2026-03-22T06:55:42.368378561Z"} +2026/03/22 06:55:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:55:42.376902003Z"} +2026/03/22 06:55:47 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":17.62232596935203,"throughput_eps":0,"last_update":"2026-03-22T06:55:42.479130205Z"} +2026/03/22 06:55:47 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":308.5426336116314,"throughput_eps":0,"last_update":"2026-03-22T06:55:42.479082253Z"} +2026/03/22 06:55:47 [log_collector] {"stage_name":"log_collector","events_processed":5761,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1152.2,"last_update":"2026-03-22T06:55:42.367959137Z"} +2026/03/22 06:55:47 ───────────────────────────────────────────────── +2026/03/22 06:55:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:55:52 [metric_collector] {"stage_name":"metric_collector","events_processed":3259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":651.8,"last_update":"2026-03-22T06:55:47.368341784Z"} +2026/03/22 06:55:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:55:47.375984437Z"} +2026/03/22 06:55:52 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":17.62232596935203,"throughput_eps":0,"last_update":"2026-03-22T06:55:47.479187557Z"} +2026/03/22 06:55:52 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":308.5426336116314,"throughput_eps":0,"last_update":"2026-03-22T06:55:47.479171876Z"} +2026/03/22 06:55:52 [log_collector] {"stage_name":"log_collector","events_processed":5761,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1152.2,"last_update":"2026-03-22T06:55:52.368655795Z"} +2026/03/22 06:55:52 ───────────────────────────────────────────────── +2026/03/22 06:55:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:55:57 [log_collector] {"stage_name":"log_collector","events_processed":5761,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1152.2,"last_update":"2026-03-22T06:55:52.368655795Z"} +2026/03/22 06:55:57 [metric_collector] {"stage_name":"metric_collector","events_processed":3264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":652.8,"last_update":"2026-03-22T06:55:52.369126137Z"} +2026/03/22 06:55:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:55:52.376630324Z"} +2026/03/22 06:55:57 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":17.62232596935203,"throughput_eps":0,"last_update":"2026-03-22T06:55:52.479859151Z"} +2026/03/22 06:55:57 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":308.5426336116314,"throughput_eps":0,"last_update":"2026-03-22T06:55:52.479833751Z"} +2026/03/22 06:55:57 ───────────────────────────────────────────────── +2026/03/22 06:56:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:56:02 [metric_collector] {"stage_name":"metric_collector","events_processed":3269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":653.8,"last_update":"2026-03-22T06:55:57.368617024Z"} +2026/03/22 06:56:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:55:57.37703816Z"} +2026/03/22 06:56:02 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":17.62232596935203,"throughput_eps":0,"last_update":"2026-03-22T06:55:57.479259773Z"} +2026/03/22 06:56:02 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":267.2149878893051,"throughput_eps":0,"last_update":"2026-03-22T06:55:57.581189376Z"} +2026/03/22 06:56:02 [log_collector] {"stage_name":"log_collector","events_processed":5761,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1152.2,"last_update":"2026-03-22T06:55:57.368011303Z"} +2026/03/22 06:56:02 ───────────────────────────────────────────────── +2026/03/22 06:56:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:56:07 [metric_collector] {"stage_name":"metric_collector","events_processed":3279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":655.8,"last_update":"2026-03-22T06:56:07.369655085Z"} +2026/03/22 06:56:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:56:02.375755581Z"} +2026/03/22 06:56:07 [detection_layer] {"stage_name":"detection_layer","events_processed":109,"events_dropped":0,"avg_latency_ms":15.799659575481625,"throughput_eps":0,"last_update":"2026-03-22T06:56:02.4799897Z"} +2026/03/22 06:56:07 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":267.2149878893051,"throughput_eps":0,"last_update":"2026-03-22T06:56:02.478879511Z"} +2026/03/22 06:56:07 [log_collector] {"stage_name":"log_collector","events_processed":5761,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1152.2,"last_update":"2026-03-22T06:56:02.367975103Z"} +2026/03/22 06:56:07 ───────────────────────────────────────────────── +2026/03/22 06:56:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:56:12 [log_collector] {"stage_name":"log_collector","events_processed":5761,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1152.2,"last_update":"2026-03-22T06:56:07.370399872Z"} +2026/03/22 06:56:12 [metric_collector] {"stage_name":"metric_collector","events_processed":3279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":655.8,"last_update":"2026-03-22T06:56:07.369655085Z"} +2026/03/22 06:56:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:56:07.37822779Z"} +2026/03/22 06:56:12 [detection_layer] {"stage_name":"detection_layer","events_processed":109,"events_dropped":0,"avg_latency_ms":15.799659575481625,"throughput_eps":0,"last_update":"2026-03-22T06:56:07.479381912Z"} +2026/03/22 06:56:12 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":267.2149878893051,"throughput_eps":0,"last_update":"2026-03-22T06:56:07.479393805Z"} +2026/03/22 06:56:12 ───────────────────────────────────────────────── +2026/03/22 06:56:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:56:17 [log_collector] {"stage_name":"log_collector","events_processed":5761,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1152.2,"last_update":"2026-03-22T06:56:12.368682469Z"} +2026/03/22 06:56:17 [metric_collector] {"stage_name":"metric_collector","events_processed":3284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":656.8,"last_update":"2026-03-22T06:56:12.369091413Z"} +2026/03/22 06:56:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:56:12.377411954Z"} +2026/03/22 06:56:17 [detection_layer] {"stage_name":"detection_layer","events_processed":109,"events_dropped":0,"avg_latency_ms":15.799659575481625,"throughput_eps":0,"last_update":"2026-03-22T06:56:12.479697644Z"} +2026/03/22 06:56:17 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":267.2149878893051,"throughput_eps":0,"last_update":"2026-03-22T06:56:12.479717893Z"} +2026/03/22 06:56:17 ───────────────────────────────────────────────── +2026/03/22 06:56:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:56:22 [log_collector] {"stage_name":"log_collector","events_processed":5772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1154.4,"last_update":"2026-03-22T06:56:17.369075251Z"} +2026/03/22 06:56:22 [metric_collector] {"stage_name":"metric_collector","events_processed":3289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":657.8,"last_update":"2026-03-22T06:56:17.369246869Z"} +2026/03/22 06:56:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:56:17.378455263Z"} +2026/03/22 06:56:22 [detection_layer] {"stage_name":"detection_layer","events_processed":109,"events_dropped":0,"avg_latency_ms":15.799659575481625,"throughput_eps":0,"last_update":"2026-03-22T06:56:17.479663415Z"} +2026/03/22 06:56:22 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":267.2149878893051,"throughput_eps":0,"last_update":"2026-03-22T06:56:17.47967629Z"} +2026/03/22 06:56:22 ───────────────────────────────────────────────── +2026/03/22 06:56:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:56:27 [detection_layer] {"stage_name":"detection_layer","events_processed":109,"events_dropped":0,"avg_latency_ms":15.799659575481625,"throughput_eps":0,"last_update":"2026-03-22T06:56:22.479924954Z"} +2026/03/22 06:56:27 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":267.2149878893051,"throughput_eps":0,"last_update":"2026-03-22T06:56:22.478835535Z"} +2026/03/22 06:56:27 [log_collector] {"stage_name":"log_collector","events_processed":6048,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1209.6,"last_update":"2026-03-22T06:56:27.368627111Z"} +2026/03/22 06:56:27 [metric_collector] {"stage_name":"metric_collector","events_processed":3294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":658.8,"last_update":"2026-03-22T06:56:22.368828506Z"} +2026/03/22 06:56:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1320,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:56:22.375375898Z"} +2026/03/22 06:56:27 ───────────────────────────────────────────────── +2026/03/22 06:56:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:56:32 [log_collector] {"stage_name":"log_collector","events_processed":6048,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1209.6,"last_update":"2026-03-22T06:56:27.368627111Z"} +2026/03/22 06:56:32 [metric_collector] {"stage_name":"metric_collector","events_processed":3299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":659.8,"last_update":"2026-03-22T06:56:27.36893958Z"} +2026/03/22 06:56:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:56:27.377163236Z"} +2026/03/22 06:56:32 [detection_layer] {"stage_name":"detection_layer","events_processed":109,"events_dropped":0,"avg_latency_ms":15.799659575481625,"throughput_eps":0,"last_update":"2026-03-22T06:56:27.480726078Z"} +2026/03/22 06:56:32 [transform_engine] {"stage_name":"transform_engine","events_processed":110,"events_dropped":0,"avg_latency_ms":236.47134951144412,"throughput_eps":0,"last_update":"2026-03-22T06:56:27.594187347Z"} +2026/03/22 06:56:32 ───────────────────────────────────────────────── +2026/03/22 06:56:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:56:37 [log_collector] {"stage_name":"log_collector","events_processed":6125,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1225,"last_update":"2026-03-22T06:56:32.367989665Z"} +2026/03/22 06:56:37 [metric_collector] {"stage_name":"metric_collector","events_processed":3304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":660.8,"last_update":"2026-03-22T06:56:32.36854552Z"} +2026/03/22 06:56:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:56:32.376436618Z"} +2026/03/22 06:56:37 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":15.3820288603853,"throughput_eps":0,"last_update":"2026-03-22T06:56:32.479688813Z"} +2026/03/22 06:56:37 [transform_engine] {"stage_name":"transform_engine","events_processed":110,"events_dropped":0,"avg_latency_ms":236.47134951144412,"throughput_eps":0,"last_update":"2026-03-22T06:56:32.47969823Z"} +2026/03/22 06:56:37 ───────────────────────────────────────────────── +2026/03/22 06:56:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:56:42 [log_collector] {"stage_name":"log_collector","events_processed":6125,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1225,"last_update":"2026-03-22T06:56:37.368205167Z"} +2026/03/22 06:56:42 [metric_collector] {"stage_name":"metric_collector","events_processed":3309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":661.8,"last_update":"2026-03-22T06:56:37.36886449Z"} +2026/03/22 06:56:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:56:37.37776842Z"} +2026/03/22 06:56:42 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":15.3820288603853,"throughput_eps":0,"last_update":"2026-03-22T06:56:37.479017893Z"} +2026/03/22 06:56:42 [transform_engine] {"stage_name":"transform_engine","events_processed":110,"events_dropped":0,"avg_latency_ms":236.47134951144412,"throughput_eps":0,"last_update":"2026-03-22T06:56:37.478910387Z"} +2026/03/22 06:56:42 ───────────────────────────────────────────────── +2026/03/22 06:56:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:56:47 [transform_engine] {"stage_name":"transform_engine","events_processed":110,"events_dropped":0,"avg_latency_ms":236.47134951144412,"throughput_eps":0,"last_update":"2026-03-22T06:56:42.479228978Z"} +2026/03/22 06:56:47 [log_collector] {"stage_name":"log_collector","events_processed":6125,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1225,"last_update":"2026-03-22T06:56:42.368164081Z"} +2026/03/22 06:56:47 [metric_collector] {"stage_name":"metric_collector","events_processed":3314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":662.8,"last_update":"2026-03-22T06:56:42.368608803Z"} +2026/03/22 06:56:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:56:42.377980369Z"} +2026/03/22 06:56:47 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":15.3820288603853,"throughput_eps":0,"last_update":"2026-03-22T06:56:42.479196306Z"} +2026/03/22 06:56:47 ───────────────────────────────────────────────── +2026/03/22 06:56:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:56:52 [log_collector] {"stage_name":"log_collector","events_processed":6125,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1225,"last_update":"2026-03-22T06:56:47.36893105Z"} +2026/03/22 06:56:52 [metric_collector] {"stage_name":"metric_collector","events_processed":3319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":663.8,"last_update":"2026-03-22T06:56:47.369292653Z"} +2026/03/22 06:56:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1330,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:56:47.378000006Z"} +2026/03/22 06:56:52 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":15.3820288603853,"throughput_eps":0,"last_update":"2026-03-22T06:56:47.479233946Z"} +2026/03/22 06:56:52 [transform_engine] {"stage_name":"transform_engine","events_processed":110,"events_dropped":0,"avg_latency_ms":236.47134951144412,"throughput_eps":0,"last_update":"2026-03-22T06:56:47.479276006Z"} +2026/03/22 06:56:52 ───────────────────────────────────────────────── +2026/03/22 06:56:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:56:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:56:52.377490644Z"} +2026/03/22 06:56:57 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":15.3820288603853,"throughput_eps":0,"last_update":"2026-03-22T06:56:52.479843377Z"} +2026/03/22 06:56:57 [transform_engine] {"stage_name":"transform_engine","events_processed":110,"events_dropped":0,"avg_latency_ms":236.47134951144412,"throughput_eps":0,"last_update":"2026-03-22T06:56:52.479768263Z"} +2026/03/22 06:56:57 [log_collector] {"stage_name":"log_collector","events_processed":6125,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1225,"last_update":"2026-03-22T06:56:52.367987226Z"} +2026/03/22 06:56:57 [metric_collector] {"stage_name":"metric_collector","events_processed":3324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":664.8,"last_update":"2026-03-22T06:56:52.368393776Z"} +2026/03/22 06:56:57 ───────────────────────────────────────────────── +2026/03/22 06:57:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:57:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:56:57.382805606Z"} +2026/03/22 06:57:02 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":15.3820288603853,"throughput_eps":0,"last_update":"2026-03-22T06:56:57.479462116Z"} +2026/03/22 06:57:02 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":211.3683684091553,"throughput_eps":0,"last_update":"2026-03-22T06:56:57.589968167Z"} +2026/03/22 06:57:02 [log_collector] {"stage_name":"log_collector","events_processed":6125,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1225,"last_update":"2026-03-22T06:57:02.368189208Z"} +2026/03/22 06:57:02 [metric_collector] {"stage_name":"metric_collector","events_processed":3329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":665.8,"last_update":"2026-03-22T06:56:57.369393845Z"} +2026/03/22 06:57:02 ───────────────────────────────────────────────── +2026/03/22 06:57:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:57:07 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":16.075201288308243,"throughput_eps":0,"last_update":"2026-03-22T06:57:02.479837286Z"} +2026/03/22 06:57:07 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":211.3683684091553,"throughput_eps":0,"last_update":"2026-03-22T06:57:02.479950613Z"} +2026/03/22 06:57:07 [log_collector] {"stage_name":"log_collector","events_processed":6125,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1225,"last_update":"2026-03-22T06:57:07.367971392Z"} +2026/03/22 06:57:07 [metric_collector] {"stage_name":"metric_collector","events_processed":3334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":666.8,"last_update":"2026-03-22T06:57:02.368664871Z"} +2026/03/22 06:57:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:57:02.378631196Z"} +2026/03/22 06:57:07 ───────────────────────────────────────────────── +2026/03/22 06:57:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:57:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:57:07.377607805Z"} +2026/03/22 06:57:12 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":16.075201288308243,"throughput_eps":0,"last_update":"2026-03-22T06:57:07.479965431Z"} +2026/03/22 06:57:12 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":211.3683684091553,"throughput_eps":0,"last_update":"2026-03-22T06:57:07.478818993Z"} +2026/03/22 06:57:12 [log_collector] {"stage_name":"log_collector","events_processed":6125,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1225,"last_update":"2026-03-22T06:57:07.367971392Z"} +2026/03/22 06:57:12 [metric_collector] {"stage_name":"metric_collector","events_processed":3339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":667.8,"last_update":"2026-03-22T06:57:07.368574298Z"} +2026/03/22 06:57:12 ───────────────────────────────────────────────── +2026/03/22 06:57:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:57:17 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":211.3683684091553,"throughput_eps":0,"last_update":"2026-03-22T06:57:12.478901342Z"} +2026/03/22 06:57:17 [log_collector] {"stage_name":"log_collector","events_processed":6125,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1225,"last_update":"2026-03-22T06:57:12.368028805Z"} +2026/03/22 06:57:17 [metric_collector] {"stage_name":"metric_collector","events_processed":3343,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":668.6,"last_update":"2026-03-22T06:57:12.368236442Z"} +2026/03/22 06:57:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:57:12.378728245Z"} +2026/03/22 06:57:17 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":16.075201288308243,"throughput_eps":0,"last_update":"2026-03-22T06:57:12.47901001Z"} +2026/03/22 06:57:17 ───────────────────────────────────────────────── +2026/03/22 06:57:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:57:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1342,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:57:17.37815077Z"} +2026/03/22 06:57:22 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":16.075201288308243,"throughput_eps":0,"last_update":"2026-03-22T06:57:17.47946394Z"} +2026/03/22 06:57:22 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":211.3683684091553,"throughput_eps":0,"last_update":"2026-03-22T06:57:17.479475543Z"} +2026/03/22 06:57:22 [log_collector] {"stage_name":"log_collector","events_processed":6125,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1225,"last_update":"2026-03-22T06:57:17.368205977Z"} +2026/03/22 06:57:22 [metric_collector] {"stage_name":"metric_collector","events_processed":3349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":669.8,"last_update":"2026-03-22T06:57:17.368571106Z"} +2026/03/22 06:57:22 ───────────────────────────────────────────────── +2026/03/22 06:57:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:57:27 [log_collector] {"stage_name":"log_collector","events_processed":6125,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1225,"last_update":"2026-03-22T06:57:22.368203025Z"} +2026/03/22 06:57:27 [metric_collector] {"stage_name":"metric_collector","events_processed":3354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":670.8,"last_update":"2026-03-22T06:57:22.368444277Z"} +2026/03/22 06:57:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:57:22.37778882Z"} +2026/03/22 06:57:27 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":16.075201288308243,"throughput_eps":0,"last_update":"2026-03-22T06:57:22.478952241Z"} +2026/03/22 06:57:27 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":211.3683684091553,"throughput_eps":0,"last_update":"2026-03-22T06:57:22.478943254Z"} +2026/03/22 06:57:27 ───────────────────────────────────────────────── +2026/03/22 06:57:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:57:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:57:27.377127188Z"} +2026/03/22 06:57:32 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":16.075201288308243,"throughput_eps":0,"last_update":"2026-03-22T06:57:27.479335159Z"} +2026/03/22 06:57:32 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":211.3683684091553,"throughput_eps":0,"last_update":"2026-03-22T06:57:27.479360287Z"} +2026/03/22 06:57:32 [log_collector] {"stage_name":"log_collector","events_processed":6125,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1225,"last_update":"2026-03-22T06:57:32.368381885Z"} +2026/03/22 06:57:32 [metric_collector] {"stage_name":"metric_collector","events_processed":3359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":671.8,"last_update":"2026-03-22T06:57:27.368432581Z"} +2026/03/22 06:57:32 ───────────────────────────────────────────────── +2026/03/22 06:57:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:57:37 [log_collector] {"stage_name":"log_collector","events_processed":6125,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1225,"last_update":"2026-03-22T06:57:32.368381885Z"} +2026/03/22 06:57:37 [metric_collector] {"stage_name":"metric_collector","events_processed":3364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":672.8,"last_update":"2026-03-22T06:57:32.368793774Z"} +2026/03/22 06:57:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:57:32.37834357Z"} +2026/03/22 06:57:37 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":16.686151230646594,"throughput_eps":0,"last_update":"2026-03-22T06:57:32.479516867Z"} +2026/03/22 06:57:37 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":181.99822172732425,"throughput_eps":0,"last_update":"2026-03-22T06:57:32.4795288Z"} +2026/03/22 06:57:37 ───────────────────────────────────────────────── +2026/03/22 06:57:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:57:42 [log_collector] {"stage_name":"log_collector","events_processed":6125,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1225,"last_update":"2026-03-22T06:57:37.367986971Z"} +2026/03/22 06:57:42 [metric_collector] {"stage_name":"metric_collector","events_processed":3369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":673.8,"last_update":"2026-03-22T06:57:37.368416675Z"} +2026/03/22 06:57:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1350,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:57:37.377539984Z"} +2026/03/22 06:57:42 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":16.686151230646594,"throughput_eps":0,"last_update":"2026-03-22T06:57:37.479754815Z"} +2026/03/22 06:57:42 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":181.99822172732425,"throughput_eps":0,"last_update":"2026-03-22T06:57:37.479768832Z"} +2026/03/22 06:57:42 ───────────────────────────────────────────────── +2026/03/22 06:57:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:57:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:57:42.377519525Z"} +2026/03/22 06:57:47 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":16.686151230646594,"throughput_eps":0,"last_update":"2026-03-22T06:57:42.479715839Z"} +2026/03/22 06:57:47 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":181.99822172732425,"throughput_eps":0,"last_update":"2026-03-22T06:57:42.479727791Z"} +2026/03/22 06:57:47 [log_collector] {"stage_name":"log_collector","events_processed":6125,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1225,"last_update":"2026-03-22T06:57:42.368020757Z"} +2026/03/22 06:57:47 [metric_collector] {"stage_name":"metric_collector","events_processed":3374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":674.8,"last_update":"2026-03-22T06:57:42.368276406Z"} +2026/03/22 06:57:47 ───────────────────────────────────────────────── +2026/03/22 06:57:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:57:52 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":181.99822172732425,"throughput_eps":0,"last_update":"2026-03-22T06:57:47.479398736Z"} +2026/03/22 06:57:52 [log_collector] {"stage_name":"log_collector","events_processed":6125,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1225,"last_update":"2026-03-22T06:57:47.368343141Z"} +2026/03/22 06:57:52 [metric_collector] {"stage_name":"metric_collector","events_processed":3379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":675.8,"last_update":"2026-03-22T06:57:47.368969281Z"} +2026/03/22 06:57:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:57:47.378211337Z"} +2026/03/22 06:57:52 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":16.686151230646594,"throughput_eps":0,"last_update":"2026-03-22T06:57:47.479433281Z"} +2026/03/22 06:57:52 ───────────────────────────────────────────────── +2026/03/22 06:57:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:57:57 [metric_collector] {"stage_name":"metric_collector","events_processed":3384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":676.8,"last_update":"2026-03-22T06:57:52.36838197Z"} +2026/03/22 06:57:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:57:52.377815371Z"} +2026/03/22 06:57:57 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":16.686151230646594,"throughput_eps":0,"last_update":"2026-03-22T06:57:52.478964435Z"} +2026/03/22 06:57:57 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":181.99822172732425,"throughput_eps":0,"last_update":"2026-03-22T06:57:52.478997338Z"} +2026/03/22 06:57:57 [log_collector] {"stage_name":"log_collector","events_processed":6125,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1225,"last_update":"2026-03-22T06:57:52.368017341Z"} +2026/03/22 06:57:57 ───────────────────────────────────────────────── +Saved state: 11 clusters, 6126 messages, reason: none +2026/03/22 06:58:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:58:02 [log_collector] {"stage_name":"log_collector","events_processed":6125,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1225,"last_update":"2026-03-22T06:57:57.368004385Z"} +2026/03/22 06:58:02 [metric_collector] {"stage_name":"metric_collector","events_processed":3388,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":677.6,"last_update":"2026-03-22T06:57:57.367901148Z"} +2026/03/22 06:58:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:57:57.377073308Z"} +2026/03/22 06:58:02 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":16.686151230646594,"throughput_eps":0,"last_update":"2026-03-22T06:57:57.479089813Z"} +2026/03/22 06:58:02 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":181.99822172732425,"throughput_eps":0,"last_update":"2026-03-22T06:57:57.479127656Z"} +2026/03/22 06:58:02 ───────────────────────────────────────────────── +2026/03/22 06:58:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:58:07 [log_collector] {"stage_name":"log_collector","events_processed":6138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1227.6,"last_update":"2026-03-22T06:58:07.36831639Z"} +2026/03/22 06:58:07 [metric_collector] {"stage_name":"metric_collector","events_processed":3394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":678.8,"last_update":"2026-03-22T06:58:02.368230809Z"} +2026/03/22 06:58:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1360,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:58:02.37659943Z"} +2026/03/22 06:58:07 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.814916784517276,"throughput_eps":0,"last_update":"2026-03-22T06:58:02.480431262Z"} +2026/03/22 06:58:07 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":168.2480997818594,"throughput_eps":0,"last_update":"2026-03-22T06:58:02.480410843Z"} +2026/03/22 06:58:07 ───────────────────────────────────────────────── +2026/03/22 06:58:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:58:12 [log_collector] {"stage_name":"log_collector","events_processed":6138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1227.6,"last_update":"2026-03-22T06:58:07.36831639Z"} +2026/03/22 06:58:12 [metric_collector] {"stage_name":"metric_collector","events_processed":3399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":679.8,"last_update":"2026-03-22T06:58:07.36929688Z"} +2026/03/22 06:58:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:58:07.375371704Z"} +2026/03/22 06:58:12 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.814916784517276,"throughput_eps":0,"last_update":"2026-03-22T06:58:07.479594084Z"} +2026/03/22 06:58:12 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":168.2480997818594,"throughput_eps":0,"last_update":"2026-03-22T06:58:07.479636185Z"} +2026/03/22 06:58:12 ───────────────────────────────────────────────── +2026/03/22 06:58:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:58:17 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":168.2480997818594,"throughput_eps":0,"last_update":"2026-03-22T06:58:12.479529478Z"} +2026/03/22 06:58:17 [log_collector] {"stage_name":"log_collector","events_processed":6146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1229.2,"last_update":"2026-03-22T06:58:12.367958063Z"} +2026/03/22 06:58:17 [metric_collector] {"stage_name":"metric_collector","events_processed":3404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":680.8,"last_update":"2026-03-22T06:58:12.368170641Z"} +2026/03/22 06:58:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:58:12.375308112Z"} +2026/03/22 06:58:17 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.814916784517276,"throughput_eps":0,"last_update":"2026-03-22T06:58:12.479559245Z"} +2026/03/22 06:58:17 ───────────────────────────────────────────────── +2026/03/22 06:58:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:58:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:58:17.375392674Z"} +2026/03/22 06:58:22 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.814916784517276,"throughput_eps":0,"last_update":"2026-03-22T06:58:17.479618447Z"} +2026/03/22 06:58:22 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":168.2480997818594,"throughput_eps":0,"last_update":"2026-03-22T06:58:17.479642964Z"} +2026/03/22 06:58:22 [log_collector] {"stage_name":"log_collector","events_processed":6169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1233.8,"last_update":"2026-03-22T06:58:22.368162977Z"} +2026/03/22 06:58:22 [metric_collector] {"stage_name":"metric_collector","events_processed":3409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":681.8,"last_update":"2026-03-22T06:58:17.369196026Z"} +2026/03/22 06:58:22 ───────────────────────────────────────────────── +2026/03/22 06:58:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:58:27 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":168.2480997818594,"throughput_eps":0,"last_update":"2026-03-22T06:58:22.479095282Z"} +2026/03/22 06:58:27 [log_collector] {"stage_name":"log_collector","events_processed":6169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1233.8,"last_update":"2026-03-22T06:58:22.368162977Z"} +2026/03/22 06:58:27 [metric_collector] {"stage_name":"metric_collector","events_processed":3414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":682.8,"last_update":"2026-03-22T06:58:22.368537605Z"} +2026/03/22 06:58:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:58:22.376929159Z"} +2026/03/22 06:58:27 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.814916784517276,"throughput_eps":0,"last_update":"2026-03-22T06:58:22.479216615Z"} +2026/03/22 06:58:27 ───────────────────────────────────────────────── +2026/03/22 06:58:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:58:32 [log_collector] {"stage_name":"log_collector","events_processed":6169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1233.8,"last_update":"2026-03-22T06:58:32.368476021Z"} +2026/03/22 06:58:32 [metric_collector] {"stage_name":"metric_collector","events_processed":3419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":683.8,"last_update":"2026-03-22T06:58:27.36829782Z"} +2026/03/22 06:58:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:58:27.378421974Z"} +2026/03/22 06:58:32 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.814916784517276,"throughput_eps":0,"last_update":"2026-03-22T06:58:27.480433089Z"} +2026/03/22 06:58:32 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":168.2480997818594,"throughput_eps":0,"last_update":"2026-03-22T06:58:27.479651962Z"} +2026/03/22 06:58:32 ───────────────────────────────────────────────── +2026/03/22 06:58:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:58:37 [log_collector] {"stage_name":"log_collector","events_processed":6169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1233.8,"last_update":"2026-03-22T06:58:32.368476021Z"} +2026/03/22 06:58:37 [metric_collector] {"stage_name":"metric_collector","events_processed":3424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":684.8,"last_update":"2026-03-22T06:58:32.369008732Z"} +2026/03/22 06:58:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:58:32.377311576Z"} +2026/03/22 06:58:37 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":16.41302882761382,"throughput_eps":0,"last_update":"2026-03-22T06:58:32.479800776Z"} +2026/03/22 06:58:37 [transform_engine] {"stage_name":"transform_engine","events_processed":114,"events_dropped":0,"avg_latency_ms":157.65225902548752,"throughput_eps":0,"last_update":"2026-03-22T06:58:32.479678862Z"} +2026/03/22 06:58:37 ───────────────────────────────────────────────── +2026/03/22 06:58:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:58:42 [transform_engine] {"stage_name":"transform_engine","events_processed":114,"events_dropped":0,"avg_latency_ms":157.65225902548752,"throughput_eps":0,"last_update":"2026-03-22T06:58:37.479921235Z"} +2026/03/22 06:58:42 [log_collector] {"stage_name":"log_collector","events_processed":6169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1233.8,"last_update":"2026-03-22T06:58:37.368322027Z"} +2026/03/22 06:58:42 [metric_collector] {"stage_name":"metric_collector","events_processed":3429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":685.8,"last_update":"2026-03-22T06:58:37.368985769Z"} +2026/03/22 06:58:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:58:37.377514466Z"} +2026/03/22 06:58:42 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":16.41302882761382,"throughput_eps":0,"last_update":"2026-03-22T06:58:37.479966342Z"} +2026/03/22 06:58:42 ───────────────────────────────────────────────── +2026/03/22 06:58:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:58:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:58:42.376630527Z"} +2026/03/22 06:58:47 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":16.41302882761382,"throughput_eps":0,"last_update":"2026-03-22T06:58:42.479846927Z"} +2026/03/22 06:58:47 [transform_engine] {"stage_name":"transform_engine","events_processed":114,"events_dropped":0,"avg_latency_ms":157.65225902548752,"throughput_eps":0,"last_update":"2026-03-22T06:58:42.479876333Z"} +2026/03/22 06:58:47 [log_collector] {"stage_name":"log_collector","events_processed":6169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1233.8,"last_update":"2026-03-22T06:58:42.367980097Z"} +2026/03/22 06:58:47 [metric_collector] {"stage_name":"metric_collector","events_processed":3434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":686.8,"last_update":"2026-03-22T06:58:42.368224525Z"} +2026/03/22 06:58:47 ───────────────────────────────────────────────── +2026/03/22 06:58:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:58:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:58:47.377485668Z"} +2026/03/22 06:58:52 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":16.41302882761382,"throughput_eps":0,"last_update":"2026-03-22T06:58:47.479693543Z"} +2026/03/22 06:58:52 [transform_engine] {"stage_name":"transform_engine","events_processed":114,"events_dropped":0,"avg_latency_ms":157.65225902548752,"throughput_eps":0,"last_update":"2026-03-22T06:58:47.479806299Z"} +2026/03/22 06:58:52 [log_collector] {"stage_name":"log_collector","events_processed":6169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1233.8,"last_update":"2026-03-22T06:58:47.368021128Z"} +2026/03/22 06:58:52 [metric_collector] {"stage_name":"metric_collector","events_processed":3439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":687.8,"last_update":"2026-03-22T06:58:47.368396988Z"} +2026/03/22 06:58:52 ───────────────────────────────────────────────── +2026/03/22 06:58:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:58:57 [transform_engine] {"stage_name":"transform_engine","events_processed":114,"events_dropped":0,"avg_latency_ms":157.65225902548752,"throughput_eps":0,"last_update":"2026-03-22T06:58:52.478892374Z"} +2026/03/22 06:58:57 [log_collector] {"stage_name":"log_collector","events_processed":6169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1233.8,"last_update":"2026-03-22T06:58:52.368006658Z"} +2026/03/22 06:58:57 [metric_collector] {"stage_name":"metric_collector","events_processed":3444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":688.8,"last_update":"2026-03-22T06:58:52.368502118Z"} +2026/03/22 06:58:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1380,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:58:52.378661519Z"} +2026/03/22 06:58:57 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":16.41302882761382,"throughput_eps":0,"last_update":"2026-03-22T06:58:52.478957479Z"} +2026/03/22 06:58:57 ───────────────────────────────────────────────── +2026/03/22 06:59:02 ── Pipeline Health ────────────────────────────── +2026/03/22 06:59:02 [log_collector] {"stage_name":"log_collector","events_processed":6169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1233.8,"last_update":"2026-03-22T06:58:57.368207989Z"} +2026/03/22 06:59:02 [metric_collector] {"stage_name":"metric_collector","events_processed":3449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":689.8,"last_update":"2026-03-22T06:58:57.368412902Z"} +2026/03/22 06:59:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:58:57.37613936Z"} +2026/03/22 06:59:02 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":16.41302882761382,"throughput_eps":0,"last_update":"2026-03-22T06:58:57.47936818Z"} +2026/03/22 06:59:02 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":141.76971022039004,"throughput_eps":0,"last_update":"2026-03-22T06:58:57.557640347Z"} +2026/03/22 06:59:02 ───────────────────────────────────────────────── +2026/03/22 06:59:07 ── Pipeline Health ────────────────────────────── +2026/03/22 06:59:07 [log_collector] {"stage_name":"log_collector","events_processed":6169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1233.8,"last_update":"2026-03-22T06:59:02.368542042Z"} +2026/03/22 06:59:07 [metric_collector] {"stage_name":"metric_collector","events_processed":3454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":690.8,"last_update":"2026-03-22T06:59:02.36883326Z"} +2026/03/22 06:59:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:59:02.374812019Z"} +2026/03/22 06:59:07 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":16.041374262091058,"throughput_eps":0,"last_update":"2026-03-22T06:59:02.479177224Z"} +2026/03/22 06:59:07 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":141.76971022039004,"throughput_eps":0,"last_update":"2026-03-22T06:59:02.47920086Z"} +2026/03/22 06:59:07 ───────────────────────────────────────────────── +2026/03/22 06:59:12 ── Pipeline Health ────────────────────────────── +2026/03/22 06:59:12 [metric_collector] {"stage_name":"metric_collector","events_processed":3459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":691.8,"last_update":"2026-03-22T06:59:07.368684835Z"} +2026/03/22 06:59:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:59:07.376812422Z"} +2026/03/22 06:59:12 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":16.041374262091058,"throughput_eps":0,"last_update":"2026-03-22T06:59:07.479057133Z"} +2026/03/22 06:59:12 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":141.76971022039004,"throughput_eps":0,"last_update":"2026-03-22T06:59:07.479113401Z"} +2026/03/22 06:59:12 [log_collector] {"stage_name":"log_collector","events_processed":6169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1233.8,"last_update":"2026-03-22T06:59:12.369033724Z"} +2026/03/22 06:59:12 ───────────────────────────────────────────────── +2026/03/22 06:59:17 ── Pipeline Health ────────────────────────────── +2026/03/22 06:59:17 [metric_collector] {"stage_name":"metric_collector","events_processed":3464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":692.8,"last_update":"2026-03-22T06:59:12.369559001Z"} +2026/03/22 06:59:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1388,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:59:12.378313199Z"} +2026/03/22 06:59:17 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":16.041374262091058,"throughput_eps":0,"last_update":"2026-03-22T06:59:12.479621564Z"} +2026/03/22 06:59:17 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":141.76971022039004,"throughput_eps":0,"last_update":"2026-03-22T06:59:12.479675107Z"} +2026/03/22 06:59:17 [log_collector] {"stage_name":"log_collector","events_processed":6169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1233.8,"last_update":"2026-03-22T06:59:17.36864052Z"} +2026/03/22 06:59:17 ───────────────────────────────────────────────── +Saved state: 11 clusters, 6170 messages, reason: none +2026/03/22 06:59:22 ── Pipeline Health ────────────────────────────── +2026/03/22 06:59:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1390,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:59:17.379782153Z"} +2026/03/22 06:59:22 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":16.041374262091058,"throughput_eps":0,"last_update":"2026-03-22T06:59:17.479059174Z"} +2026/03/22 06:59:22 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":141.76971022039004,"throughput_eps":0,"last_update":"2026-03-22T06:59:17.479084602Z"} +2026/03/22 06:59:22 [log_collector] {"stage_name":"log_collector","events_processed":6169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1233.8,"last_update":"2026-03-22T06:59:17.36864052Z"} +2026/03/22 06:59:22 [metric_collector] {"stage_name":"metric_collector","events_processed":3469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":693.8,"last_update":"2026-03-22T06:59:17.369041288Z"} +2026/03/22 06:59:22 ───────────────────────────────────────────────── +2026/03/22 06:59:27 ── Pipeline Health ────────────────────────────── +2026/03/22 06:59:27 [log_collector] {"stage_name":"log_collector","events_processed":6174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1234.8,"last_update":"2026-03-22T06:59:22.368002577Z"} +2026/03/22 06:59:27 [metric_collector] {"stage_name":"metric_collector","events_processed":3474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":694.8,"last_update":"2026-03-22T06:59:22.36829636Z"} +2026/03/22 06:59:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:59:22.374111465Z"} +2026/03/22 06:59:27 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":16.041374262091058,"throughput_eps":0,"last_update":"2026-03-22T06:59:22.479334399Z"} +2026/03/22 06:59:27 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":141.76971022039004,"throughput_eps":0,"last_update":"2026-03-22T06:59:22.47937646Z"} +2026/03/22 06:59:27 ───────────────────────────────────────────────── +2026/03/22 06:59:32 ── Pipeline Health ────────────────────────────── +2026/03/22 06:59:32 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":128.94732877631205,"throughput_eps":0,"last_update":"2026-03-22T06:59:27.55659537Z"} +2026/03/22 06:59:32 [log_collector] {"stage_name":"log_collector","events_processed":6174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1234.8,"last_update":"2026-03-22T06:59:27.368614981Z"} +2026/03/22 06:59:32 [metric_collector] {"stage_name":"metric_collector","events_processed":3479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":695.8,"last_update":"2026-03-22T06:59:27.368747064Z"} +2026/03/22 06:59:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:59:27.375824127Z"} +2026/03/22 06:59:32 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":16.041374262091058,"throughput_eps":0,"last_update":"2026-03-22T06:59:27.478999476Z"} +2026/03/22 06:59:32 ───────────────────────────────────────────────── +2026/03/22 06:59:37 ── Pipeline Health ────────────────────────────── +2026/03/22 06:59:37 [log_collector] {"stage_name":"log_collector","events_processed":6174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1234.8,"last_update":"2026-03-22T06:59:32.367979034Z"} +2026/03/22 06:59:37 [metric_collector] {"stage_name":"metric_collector","events_processed":3484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":696.8,"last_update":"2026-03-22T06:59:32.368177083Z"} +2026/03/22 06:59:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:59:32.374138438Z"} +2026/03/22 06:59:37 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":15.126723009672848,"throughput_eps":0,"last_update":"2026-03-22T06:59:32.479377751Z"} +2026/03/22 06:59:37 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":128.94732877631205,"throughput_eps":0,"last_update":"2026-03-22T06:59:32.479313698Z"} +2026/03/22 06:59:37 ───────────────────────────────────────────────── +2026/03/22 06:59:42 ── Pipeline Health ────────────────────────────── +2026/03/22 06:59:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:59:37.375110935Z"} +2026/03/22 06:59:42 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":15.126723009672848,"throughput_eps":0,"last_update":"2026-03-22T06:59:37.47938672Z"} +2026/03/22 06:59:42 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":128.94732877631205,"throughput_eps":0,"last_update":"2026-03-22T06:59:37.479399093Z"} +2026/03/22 06:59:42 [log_collector] {"stage_name":"log_collector","events_processed":6174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1234.8,"last_update":"2026-03-22T06:59:37.368861949Z"} +2026/03/22 06:59:42 [metric_collector] {"stage_name":"metric_collector","events_processed":3489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":697.8,"last_update":"2026-03-22T06:59:37.368932685Z"} +2026/03/22 06:59:42 ───────────────────────────────────────────────── +2026/03/22 06:59:47 ── Pipeline Health ────────────────────────────── +2026/03/22 06:59:47 [log_collector] {"stage_name":"log_collector","events_processed":6174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1234.8,"last_update":"2026-03-22T06:59:42.368382247Z"} +2026/03/22 06:59:47 [metric_collector] {"stage_name":"metric_collector","events_processed":3499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":699.8,"last_update":"2026-03-22T06:59:47.368634633Z"} +2026/03/22 06:59:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1400,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:59:42.37512515Z"} +2026/03/22 06:59:47 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":15.126723009672848,"throughput_eps":0,"last_update":"2026-03-22T06:59:42.479371497Z"} +2026/03/22 06:59:47 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":128.94732877631205,"throughput_eps":0,"last_update":"2026-03-22T06:59:42.479386174Z"} +2026/03/22 06:59:47 ───────────────────────────────────────────────── +2026/03/22 06:59:52 ── Pipeline Health ────────────────────────────── +2026/03/22 06:59:52 [log_collector] {"stage_name":"log_collector","events_processed":6174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1234.8,"last_update":"2026-03-22T06:59:47.368646255Z"} +2026/03/22 06:59:52 [metric_collector] {"stage_name":"metric_collector","events_processed":3499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":699.8,"last_update":"2026-03-22T06:59:47.368634633Z"} +2026/03/22 06:59:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1402,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:59:47.375185368Z"} +2026/03/22 06:59:52 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":15.126723009672848,"throughput_eps":0,"last_update":"2026-03-22T06:59:47.479385744Z"} +2026/03/22 06:59:52 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":128.94732877631205,"throughput_eps":0,"last_update":"2026-03-22T06:59:47.479399872Z"} +2026/03/22 06:59:52 ───────────────────────────────────────────────── +2026/03/22 06:59:57 ── Pipeline Health ────────────────────────────── +2026/03/22 06:59:57 [log_collector] {"stage_name":"log_collector","events_processed":6174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1234.8,"last_update":"2026-03-22T06:59:52.368392453Z"} +2026/03/22 06:59:57 [metric_collector] {"stage_name":"metric_collector","events_processed":3504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":700.8,"last_update":"2026-03-22T06:59:52.368778433Z"} +2026/03/22 06:59:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:59:52.37665118Z"} +2026/03/22 06:59:57 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":15.126723009672848,"throughput_eps":0,"last_update":"2026-03-22T06:59:52.479754344Z"} +2026/03/22 06:59:57 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":128.94732877631205,"throughput_eps":0,"last_update":"2026-03-22T06:59:52.479764033Z"} +2026/03/22 06:59:57 ───────────────────────────────────────────────── +2026/03/22 07:00:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:00:02 [transform_engine] {"stage_name":"transform_engine","events_processed":117,"events_dropped":0,"avg_latency_ms":558.2858046210497,"throughput_eps":0,"last_update":"2026-03-22T06:59:59.755101891Z"} +2026/03/22 07:00:02 [log_collector] {"stage_name":"log_collector","events_processed":6174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1234.8,"last_update":"2026-03-22T06:59:57.368565185Z"} +2026/03/22 07:00:02 [metric_collector] {"stage_name":"metric_collector","events_processed":3509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":701.8,"last_update":"2026-03-22T06:59:57.368903694Z"} +2026/03/22 07:00:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T06:59:57.375243854Z"} +2026/03/22 07:00:02 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":15.126723009672848,"throughput_eps":0,"last_update":"2026-03-22T06:59:57.48035747Z"} +2026/03/22 07:00:02 ───────────────────────────────────────────────── +2026/03/22 07:00:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:00:07 [transform_engine] {"stage_name":"transform_engine","events_processed":117,"events_dropped":0,"avg_latency_ms":558.2858046210497,"throughput_eps":0,"last_update":"2026-03-22T07:00:02.479105035Z"} +2026/03/22 07:00:07 [log_collector] {"stage_name":"log_collector","events_processed":6174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1234.8,"last_update":"2026-03-22T07:00:02.368305134Z"} +2026/03/22 07:00:07 [metric_collector] {"stage_name":"metric_collector","events_processed":3514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":702.8,"last_update":"2026-03-22T07:00:02.36821971Z"} +2026/03/22 07:00:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1408,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:00:02.377890704Z"} +2026/03/22 07:00:07 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":14.74333760773828,"throughput_eps":0,"last_update":"2026-03-22T07:00:02.479123931Z"} +2026/03/22 07:00:07 ───────────────────────────────────────────────── +2026/03/22 07:00:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:00:12 [log_collector] {"stage_name":"log_collector","events_processed":6185,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1237,"last_update":"2026-03-22T07:00:07.368740431Z"} +2026/03/22 07:00:12 [metric_collector] {"stage_name":"metric_collector","events_processed":3519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":703.8,"last_update":"2026-03-22T07:00:07.36948126Z"} +2026/03/22 07:00:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:00:07.378969534Z"} +2026/03/22 07:00:12 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":14.74333760773828,"throughput_eps":0,"last_update":"2026-03-22T07:00:07.479313635Z"} +2026/03/22 07:00:12 [transform_engine] {"stage_name":"transform_engine","events_processed":117,"events_dropped":0,"avg_latency_ms":558.2858046210497,"throughput_eps":0,"last_update":"2026-03-22T07:00:07.479329045Z"} +2026/03/22 07:00:12 ───────────────────────────────────────────────── +2026/03/22 07:00:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:00:17 [log_collector] {"stage_name":"log_collector","events_processed":6199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1239.8,"last_update":"2026-03-22T07:00:12.368060326Z"} +2026/03/22 07:00:17 [metric_collector] {"stage_name":"metric_collector","events_processed":3524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":704.8,"last_update":"2026-03-22T07:00:12.368624618Z"} +2026/03/22 07:00:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:00:12.377031349Z"} +2026/03/22 07:00:17 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":14.74333760773828,"throughput_eps":0,"last_update":"2026-03-22T07:00:12.479338842Z"} +2026/03/22 07:00:17 [transform_engine] {"stage_name":"transform_engine","events_processed":117,"events_dropped":0,"avg_latency_ms":558.2858046210497,"throughput_eps":0,"last_update":"2026-03-22T07:00:12.479363709Z"} +2026/03/22 07:00:17 ───────────────────────────────────────────────── +Saved state: 11 clusters, 6530 messages, reason: none +2026/03/22 07:00:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:00:22 [log_collector] {"stage_name":"log_collector","events_processed":6362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1272.4,"last_update":"2026-03-22T07:00:17.36869562Z"} +2026/03/22 07:00:22 [metric_collector] {"stage_name":"metric_collector","events_processed":3529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":705.8,"last_update":"2026-03-22T07:00:17.368605067Z"} +2026/03/22 07:00:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:00:17.37500915Z"} +2026/03/22 07:00:22 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":14.74333760773828,"throughput_eps":0,"last_update":"2026-03-22T07:00:17.479520004Z"} +2026/03/22 07:00:22 [transform_engine] {"stage_name":"transform_engine","events_processed":117,"events_dropped":0,"avg_latency_ms":558.2858046210497,"throughput_eps":0,"last_update":"2026-03-22T07:00:17.479525915Z"} +2026/03/22 07:00:22 ───────────────────────────────────────────────── +2026/03/22 07:00:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:00:27 [log_collector] {"stage_name":"log_collector","events_processed":6533,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1306.6,"last_update":"2026-03-22T07:00:22.368038474Z"} +2026/03/22 07:00:27 [metric_collector] {"stage_name":"metric_collector","events_processed":3534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":706.8,"last_update":"2026-03-22T07:00:22.369074911Z"} +2026/03/22 07:00:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:00:22.377697255Z"} +2026/03/22 07:00:27 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":14.74333760773828,"throughput_eps":0,"last_update":"2026-03-22T07:00:22.479983053Z"} +2026/03/22 07:00:27 [transform_engine] {"stage_name":"transform_engine","events_processed":117,"events_dropped":0,"avg_latency_ms":558.2858046210497,"throughput_eps":0,"last_update":"2026-03-22T07:00:22.478887725Z"} +2026/03/22 07:00:27 ───────────────────────────────────────────────── +2026/03/22 07:00:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:00:32 [log_collector] {"stage_name":"log_collector","events_processed":6533,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1306.6,"last_update":"2026-03-22T07:00:32.367994248Z"} +2026/03/22 07:00:32 [metric_collector] {"stage_name":"metric_collector","events_processed":3539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":707.8,"last_update":"2026-03-22T07:00:27.368904158Z"} +2026/03/22 07:00:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:00:27.377667892Z"} +2026/03/22 07:00:32 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":14.74333760773828,"throughput_eps":0,"last_update":"2026-03-22T07:00:27.479008829Z"} +2026/03/22 07:00:32 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":470.17152449683977,"throughput_eps":0,"last_update":"2026-03-22T07:00:27.596569069Z"} +2026/03/22 07:00:32 ───────────────────────────────────────────────── +2026/03/22 07:00:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:00:37 [log_collector] {"stage_name":"log_collector","events_processed":6533,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1306.6,"last_update":"2026-03-22T07:00:32.367994248Z"} +2026/03/22 07:00:37 [metric_collector] {"stage_name":"metric_collector","events_processed":3544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":708.8,"last_update":"2026-03-22T07:00:32.368644093Z"} +2026/03/22 07:00:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1420,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:00:32.376929651Z"} +2026/03/22 07:00:37 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":15.029701686190624,"throughput_eps":0,"last_update":"2026-03-22T07:00:32.479243962Z"} +2026/03/22 07:00:37 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":470.17152449683977,"throughput_eps":0,"last_update":"2026-03-22T07:00:32.479256255Z"} +2026/03/22 07:00:37 ───────────────────────────────────────────────── +2026/03/22 07:00:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:00:42 [log_collector] {"stage_name":"log_collector","events_processed":6533,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1306.6,"last_update":"2026-03-22T07:00:37.368546339Z"} +2026/03/22 07:00:42 [metric_collector] {"stage_name":"metric_collector","events_processed":3549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":709.8,"last_update":"2026-03-22T07:00:37.368911068Z"} +2026/03/22 07:00:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:00:37.377338969Z"} +2026/03/22 07:00:42 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":15.029701686190624,"throughput_eps":0,"last_update":"2026-03-22T07:00:37.479551554Z"} +2026/03/22 07:00:42 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":470.17152449683977,"throughput_eps":0,"last_update":"2026-03-22T07:00:37.47956534Z"} +2026/03/22 07:00:42 ───────────────────────────────────────────────── +2026/03/22 07:00:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:00:47 [metric_collector] {"stage_name":"metric_collector","events_processed":3554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":710.8,"last_update":"2026-03-22T07:00:42.369193443Z"} +2026/03/22 07:00:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:00:42.37882022Z"} +2026/03/22 07:00:47 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":15.029701686190624,"throughput_eps":0,"last_update":"2026-03-22T07:00:42.479107855Z"} +2026/03/22 07:00:47 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":470.17152449683977,"throughput_eps":0,"last_update":"2026-03-22T07:00:42.479064553Z"} +2026/03/22 07:00:47 [log_collector] {"stage_name":"log_collector","events_processed":6533,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1306.6,"last_update":"2026-03-22T07:00:42.368657606Z"} +2026/03/22 07:00:47 ───────────────────────────────────────────────── +2026/03/22 07:00:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:00:52 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":15.029701686190624,"throughput_eps":0,"last_update":"2026-03-22T07:00:47.47958888Z"} +2026/03/22 07:00:52 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":470.17152449683977,"throughput_eps":0,"last_update":"2026-03-22T07:00:47.479543052Z"} +2026/03/22 07:00:52 [log_collector] {"stage_name":"log_collector","events_processed":6533,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1306.6,"last_update":"2026-03-22T07:00:52.367976841Z"} +2026/03/22 07:00:52 [metric_collector] {"stage_name":"metric_collector","events_processed":3559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":711.8,"last_update":"2026-03-22T07:00:47.368687416Z"} +2026/03/22 07:00:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:00:47.377342522Z"} +2026/03/22 07:00:52 ───────────────────────────────────────────────── +2026/03/22 07:00:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:00:57 [metric_collector] {"stage_name":"metric_collector","events_processed":3564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":712.8,"last_update":"2026-03-22T07:00:52.368385534Z"} +2026/03/22 07:00:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:00:52.376285102Z"} +2026/03/22 07:00:57 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":15.029701686190624,"throughput_eps":0,"last_update":"2026-03-22T07:00:52.479192184Z"} +2026/03/22 07:00:57 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":470.17152449683977,"throughput_eps":0,"last_update":"2026-03-22T07:00:52.479060292Z"} +2026/03/22 07:00:57 [log_collector] {"stage_name":"log_collector","events_processed":6533,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1306.6,"last_update":"2026-03-22T07:00:57.368006144Z"} +2026/03/22 07:00:57 ───────────────────────────────────────────────── +2026/03/22 07:01:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:01:02 [log_collector] {"stage_name":"log_collector","events_processed":6533,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1306.6,"last_update":"2026-03-22T07:00:57.368006144Z"} +2026/03/22 07:01:02 [metric_collector] {"stage_name":"metric_collector","events_processed":3569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":713.8,"last_update":"2026-03-22T07:00:57.368718499Z"} +2026/03/22 07:01:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:00:57.377202206Z"} +2026/03/22 07:01:02 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":15.029701686190624,"throughput_eps":0,"last_update":"2026-03-22T07:00:57.480443438Z"} +2026/03/22 07:01:02 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":391.3934253974718,"throughput_eps":0,"last_update":"2026-03-22T07:00:57.555715512Z"} +2026/03/22 07:01:02 ───────────────────────────────────────────────── +2026/03/22 07:01:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:01:07 [log_collector] {"stage_name":"log_collector","events_processed":6533,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1306.6,"last_update":"2026-03-22T07:01:02.367965435Z"} +2026/03/22 07:01:07 [metric_collector] {"stage_name":"metric_collector","events_processed":3574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":714.8,"last_update":"2026-03-22T07:01:02.368379539Z"} +2026/03/22 07:01:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:01:02.378175561Z"} +2026/03/22 07:01:07 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":16.0074071489525,"throughput_eps":0,"last_update":"2026-03-22T07:01:02.479568409Z"} +2026/03/22 07:01:07 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":391.3934253974718,"throughput_eps":0,"last_update":"2026-03-22T07:01:02.479584901Z"} +2026/03/22 07:01:07 ───────────────────────────────────────────────── +2026/03/22 07:01:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:01:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:01:07.37749496Z"} +2026/03/22 07:01:12 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":16.0074071489525,"throughput_eps":0,"last_update":"2026-03-22T07:01:07.479710985Z"} +2026/03/22 07:01:12 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":391.3934253974718,"throughput_eps":0,"last_update":"2026-03-22T07:01:07.47972373Z"} +2026/03/22 07:01:12 [log_collector] {"stage_name":"log_collector","events_processed":6533,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1306.6,"last_update":"2026-03-22T07:01:12.368604722Z"} +2026/03/22 07:01:12 [metric_collector] {"stage_name":"metric_collector","events_processed":3579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":715.8,"last_update":"2026-03-22T07:01:07.368571411Z"} +2026/03/22 07:01:12 ───────────────────────────────────────────────── +2026/03/22 07:01:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:01:17 [log_collector] {"stage_name":"log_collector","events_processed":6533,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1306.6,"last_update":"2026-03-22T07:01:12.368604722Z"} +2026/03/22 07:01:17 [metric_collector] {"stage_name":"metric_collector","events_processed":3584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":716.8,"last_update":"2026-03-22T07:01:12.369323058Z"} +2026/03/22 07:01:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:01:12.378671843Z"} +2026/03/22 07:01:17 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":16.0074071489525,"throughput_eps":0,"last_update":"2026-03-22T07:01:12.479968224Z"} +2026/03/22 07:01:17 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":391.3934253974718,"throughput_eps":0,"last_update":"2026-03-22T07:01:12.480001648Z"} +2026/03/22 07:01:17 ───────────────────────────────────────────────── +2026/03/22 07:01:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:01:22 [metric_collector] {"stage_name":"metric_collector","events_processed":3589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":717.8,"last_update":"2026-03-22T07:01:17.368917182Z"} +2026/03/22 07:01:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:01:17.377876831Z"} +2026/03/22 07:01:22 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":16.0074071489525,"throughput_eps":0,"last_update":"2026-03-22T07:01:17.479246251Z"} +2026/03/22 07:01:22 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":391.3934253974718,"throughput_eps":0,"last_update":"2026-03-22T07:01:17.479263644Z"} +2026/03/22 07:01:22 [log_collector] {"stage_name":"log_collector","events_processed":6533,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1306.6,"last_update":"2026-03-22T07:01:17.368738009Z"} +2026/03/22 07:01:22 ───────────────────────────────────────────────── +2026/03/22 07:01:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:01:27 [metric_collector] {"stage_name":"metric_collector","events_processed":3594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":718.8,"last_update":"2026-03-22T07:01:22.368913823Z"} +2026/03/22 07:01:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:01:22.375600587Z"} +2026/03/22 07:01:27 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":16.0074071489525,"throughput_eps":0,"last_update":"2026-03-22T07:01:22.479832892Z"} +2026/03/22 07:01:27 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":391.3934253974718,"throughput_eps":0,"last_update":"2026-03-22T07:01:22.479846598Z"} +2026/03/22 07:01:27 [log_collector] {"stage_name":"log_collector","events_processed":6533,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1306.6,"last_update":"2026-03-22T07:01:22.368390882Z"} +2026/03/22 07:01:27 ───────────────────────────────────────────────── +2026/03/22 07:01:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:01:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1442,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:01:27.377821055Z"} +2026/03/22 07:01:32 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":16.0074071489525,"throughput_eps":0,"last_update":"2026-03-22T07:01:27.479061204Z"} +2026/03/22 07:01:32 [transform_engine] {"stage_name":"transform_engine","events_processed":120,"events_dropped":0,"avg_latency_ms":326.59384931797746,"throughput_eps":0,"last_update":"2026-03-22T07:01:27.546468773Z"} +2026/03/22 07:01:32 [log_collector] {"stage_name":"log_collector","events_processed":6533,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1306.6,"last_update":"2026-03-22T07:01:27.367980268Z"} +2026/03/22 07:01:32 [metric_collector] {"stage_name":"metric_collector","events_processed":3599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":719.8,"last_update":"2026-03-22T07:01:27.368323966Z"} +2026/03/22 07:01:32 ───────────────────────────────────────────────── +2026/03/22 07:01:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:01:37 [log_collector] {"stage_name":"log_collector","events_processed":6533,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1306.6,"last_update":"2026-03-22T07:01:37.368770527Z"} +2026/03/22 07:01:37 [metric_collector] {"stage_name":"metric_collector","events_processed":3604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":720.8,"last_update":"2026-03-22T07:01:32.368742528Z"} +2026/03/22 07:01:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:01:32.377675115Z"} +2026/03/22 07:01:37 [detection_layer] {"stage_name":"detection_layer","events_processed":120,"events_dropped":0,"avg_latency_ms":16.470538119162,"throughput_eps":0,"last_update":"2026-03-22T07:01:32.478977353Z"} +2026/03/22 07:01:37 [transform_engine] {"stage_name":"transform_engine","events_processed":120,"events_dropped":0,"avg_latency_ms":326.59384931797746,"throughput_eps":0,"last_update":"2026-03-22T07:01:32.478942977Z"} +2026/03/22 07:01:37 ───────────────────────────────────────────────── +2026/03/22 07:01:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:01:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1446,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:01:37.377291364Z"} +2026/03/22 07:01:42 [detection_layer] {"stage_name":"detection_layer","events_processed":120,"events_dropped":0,"avg_latency_ms":16.470538119162,"throughput_eps":0,"last_update":"2026-03-22T07:01:37.479504777Z"} +2026/03/22 07:01:42 [transform_engine] {"stage_name":"transform_engine","events_processed":120,"events_dropped":0,"avg_latency_ms":326.59384931797746,"throughput_eps":0,"last_update":"2026-03-22T07:01:37.479608806Z"} +2026/03/22 07:01:42 [log_collector] {"stage_name":"log_collector","events_processed":6533,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1306.6,"last_update":"2026-03-22T07:01:42.367980385Z"} +2026/03/22 07:01:42 [metric_collector] {"stage_name":"metric_collector","events_processed":3609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":721.8,"last_update":"2026-03-22T07:01:37.369378793Z"} +2026/03/22 07:01:42 ───────────────────────────────────────────────── +2026/03/22 07:01:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:01:47 [detection_layer] {"stage_name":"detection_layer","events_processed":120,"events_dropped":0,"avg_latency_ms":16.470538119162,"throughput_eps":0,"last_update":"2026-03-22T07:01:42.479601083Z"} +2026/03/22 07:01:47 [transform_engine] {"stage_name":"transform_engine","events_processed":120,"events_dropped":0,"avg_latency_ms":326.59384931797746,"throughput_eps":0,"last_update":"2026-03-22T07:01:42.47970905Z"} +2026/03/22 07:01:47 [log_collector] {"stage_name":"log_collector","events_processed":6533,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1306.6,"last_update":"2026-03-22T07:01:42.367980385Z"} +2026/03/22 07:01:47 [metric_collector] {"stage_name":"metric_collector","events_processed":3614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":722.8,"last_update":"2026-03-22T07:01:42.368606546Z"} +2026/03/22 07:01:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:01:42.377385176Z"} +2026/03/22 07:01:47 ───────────────────────────────────────────────── +2026/03/22 07:01:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:01:52 [detection_layer] {"stage_name":"detection_layer","events_processed":120,"events_dropped":0,"avg_latency_ms":16.470538119162,"throughput_eps":0,"last_update":"2026-03-22T07:01:47.479791326Z"} +2026/03/22 07:01:52 [transform_engine] {"stage_name":"transform_engine","events_processed":120,"events_dropped":0,"avg_latency_ms":326.59384931797746,"throughput_eps":0,"last_update":"2026-03-22T07:01:47.479671266Z"} +2026/03/22 07:01:52 [log_collector] {"stage_name":"log_collector","events_processed":6533,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1306.6,"last_update":"2026-03-22T07:01:47.368208392Z"} +2026/03/22 07:01:52 [metric_collector] {"stage_name":"metric_collector","events_processed":3619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":723.8,"last_update":"2026-03-22T07:01:47.36840544Z"} +2026/03/22 07:01:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:01:47.377302828Z"} +2026/03/22 07:01:52 ───────────────────────────────────────────────── +2026/03/22 07:01:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:01:57 [transform_engine] {"stage_name":"transform_engine","events_processed":120,"events_dropped":0,"avg_latency_ms":326.59384931797746,"throughput_eps":0,"last_update":"2026-03-22T07:01:52.479883878Z"} +2026/03/22 07:01:57 [log_collector] {"stage_name":"log_collector","events_processed":6533,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1306.6,"last_update":"2026-03-22T07:01:52.368053061Z"} +2026/03/22 07:01:57 [metric_collector] {"stage_name":"metric_collector","events_processed":3624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":724.8,"last_update":"2026-03-22T07:01:52.368656136Z"} +2026/03/22 07:01:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1452,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:01:52.37850003Z"} +2026/03/22 07:01:57 [detection_layer] {"stage_name":"detection_layer","events_processed":120,"events_dropped":0,"avg_latency_ms":16.470538119162,"throughput_eps":0,"last_update":"2026-03-22T07:01:52.47985846Z"} +2026/03/22 07:01:57 ───────────────────────────────────────────────── +Saved state: 11 clusters, 6534 messages, reason: none +2026/03/22 07:02:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:02:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:01:57.377213701Z"} +2026/03/22 07:02:02 [detection_layer] {"stage_name":"detection_layer","events_processed":120,"events_dropped":0,"avg_latency_ms":16.470538119162,"throughput_eps":0,"last_update":"2026-03-22T07:01:57.479502233Z"} +2026/03/22 07:02:02 [transform_engine] {"stage_name":"transform_engine","events_processed":121,"events_dropped":0,"avg_latency_ms":274.320154254382,"throughput_eps":0,"last_update":"2026-03-22T07:01:57.5447709Z"} +2026/03/22 07:02:02 [log_collector] {"stage_name":"log_collector","events_processed":6533,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1306.6,"last_update":"2026-03-22T07:01:57.367964648Z"} +2026/03/22 07:02:02 [metric_collector] {"stage_name":"metric_collector","events_processed":3629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":725.8,"last_update":"2026-03-22T07:01:57.368648348Z"} +2026/03/22 07:02:02 ───────────────────────────────────────────────── +2026/03/22 07:02:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:02:07 [metric_collector] {"stage_name":"metric_collector","events_processed":3634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":726.8,"last_update":"2026-03-22T07:02:02.368318632Z"} +2026/03/22 07:02:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:02:02.379571844Z"} +2026/03/22 07:02:07 [detection_layer] {"stage_name":"detection_layer","events_processed":121,"events_dropped":0,"avg_latency_ms":16.8688216953296,"throughput_eps":0,"last_update":"2026-03-22T07:02:02.479768638Z"} +2026/03/22 07:02:07 [transform_engine] {"stage_name":"transform_engine","events_processed":121,"events_dropped":0,"avg_latency_ms":274.320154254382,"throughput_eps":0,"last_update":"2026-03-22T07:02:02.479789608Z"} +2026/03/22 07:02:07 [log_collector] {"stage_name":"log_collector","events_processed":6536,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1307.2,"last_update":"2026-03-22T07:02:02.367975053Z"} +2026/03/22 07:02:07 ───────────────────────────────────────────────── +2026/03/22 07:02:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:02:12 [log_collector] {"stage_name":"log_collector","events_processed":6536,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1307.2,"last_update":"2026-03-22T07:02:07.368340158Z"} +2026/03/22 07:02:12 [metric_collector] {"stage_name":"metric_collector","events_processed":3639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":727.8,"last_update":"2026-03-22T07:02:07.368619422Z"} +2026/03/22 07:02:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:02:07.379521312Z"} +2026/03/22 07:02:12 [detection_layer] {"stage_name":"detection_layer","events_processed":121,"events_dropped":0,"avg_latency_ms":16.8688216953296,"throughput_eps":0,"last_update":"2026-03-22T07:02:07.480011847Z"} +2026/03/22 07:02:12 [transform_engine] {"stage_name":"transform_engine","events_processed":121,"events_dropped":0,"avg_latency_ms":274.320154254382,"throughput_eps":0,"last_update":"2026-03-22T07:02:07.478907481Z"} +2026/03/22 07:02:12 ───────────────────────────────────────────────── +2026/03/22 07:02:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:02:17 [transform_engine] {"stage_name":"transform_engine","events_processed":121,"events_dropped":0,"avg_latency_ms":274.320154254382,"throughput_eps":0,"last_update":"2026-03-22T07:02:12.479286943Z"} +2026/03/22 07:02:17 [log_collector] {"stage_name":"log_collector","events_processed":6547,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1309.4,"last_update":"2026-03-22T07:02:12.36796222Z"} +2026/03/22 07:02:17 [metric_collector] {"stage_name":"metric_collector","events_processed":3644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":728.8,"last_update":"2026-03-22T07:02:12.368345243Z"} +2026/03/22 07:02:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:02:12.377041576Z"} +2026/03/22 07:02:17 [detection_layer] {"stage_name":"detection_layer","events_processed":121,"events_dropped":0,"avg_latency_ms":16.8688216953296,"throughput_eps":0,"last_update":"2026-03-22T07:02:12.479312562Z"} +2026/03/22 07:02:17 ───────────────────────────────────────────────── +2026/03/22 07:02:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:02:22 [log_collector] {"stage_name":"log_collector","events_processed":6555,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1311,"last_update":"2026-03-22T07:02:17.368155104Z"} +2026/03/22 07:02:22 [metric_collector] {"stage_name":"metric_collector","events_processed":3649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":729.8,"last_update":"2026-03-22T07:02:17.368716029Z"} +2026/03/22 07:02:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:02:17.375643193Z"} +2026/03/22 07:02:22 [detection_layer] {"stage_name":"detection_layer","events_processed":121,"events_dropped":0,"avg_latency_ms":16.8688216953296,"throughput_eps":0,"last_update":"2026-03-22T07:02:17.479863002Z"} +2026/03/22 07:02:22 [transform_engine] {"stage_name":"transform_engine","events_processed":121,"events_dropped":0,"avg_latency_ms":274.320154254382,"throughput_eps":0,"last_update":"2026-03-22T07:02:17.479887699Z"} +2026/03/22 07:02:22 ───────────────────────────────────────────────── +2026/03/22 07:02:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:02:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:02:22.37449044Z"} +2026/03/22 07:02:27 [detection_layer] {"stage_name":"detection_layer","events_processed":121,"events_dropped":0,"avg_latency_ms":16.8688216953296,"throughput_eps":0,"last_update":"2026-03-22T07:02:22.479735883Z"} +2026/03/22 07:02:27 [transform_engine] {"stage_name":"transform_engine","events_processed":121,"events_dropped":0,"avg_latency_ms":274.320154254382,"throughput_eps":0,"last_update":"2026-03-22T07:02:22.479711085Z"} +2026/03/22 07:02:27 [log_collector] {"stage_name":"log_collector","events_processed":6566,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1313.2,"last_update":"2026-03-22T07:02:22.368218852Z"} +2026/03/22 07:02:27 [metric_collector] {"stage_name":"metric_collector","events_processed":3654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":730.8,"last_update":"2026-03-22T07:02:22.368261043Z"} +2026/03/22 07:02:27 ───────────────────────────────────────────────── +2026/03/22 07:02:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:02:32 [transform_engine] {"stage_name":"transform_engine","events_processed":122,"events_dropped":0,"avg_latency_ms":241.2484698035056,"throughput_eps":0,"last_update":"2026-03-22T07:02:27.58833658Z"} +2026/03/22 07:02:32 [log_collector] {"stage_name":"log_collector","events_processed":6577,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1315.4,"last_update":"2026-03-22T07:02:27.368602145Z"} +2026/03/22 07:02:32 [metric_collector] {"stage_name":"metric_collector","events_processed":3659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":731.8,"last_update":"2026-03-22T07:02:27.368601955Z"} +2026/03/22 07:02:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:02:27.377093906Z"} +2026/03/22 07:02:32 [detection_layer] {"stage_name":"detection_layer","events_processed":121,"events_dropped":0,"avg_latency_ms":16.8688216953296,"throughput_eps":0,"last_update":"2026-03-22T07:02:27.479343839Z"} +2026/03/22 07:02:32 ───────────────────────────────────────────────── +2026/03/22 07:02:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:02:37 [detection_layer] {"stage_name":"detection_layer","events_processed":122,"events_dropped":0,"avg_latency_ms":16.28776875626368,"throughput_eps":0,"last_update":"2026-03-22T07:02:32.479159693Z"} +2026/03/22 07:02:37 [transform_engine] {"stage_name":"transform_engine","events_processed":122,"events_dropped":0,"avg_latency_ms":241.2484698035056,"throughput_eps":0,"last_update":"2026-03-22T07:02:32.479234407Z"} +2026/03/22 07:02:37 [log_collector] {"stage_name":"log_collector","events_processed":6577,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1315.4,"last_update":"2026-03-22T07:02:32.369115708Z"} +2026/03/22 07:02:37 [metric_collector] {"stage_name":"metric_collector","events_processed":3664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":732.8,"last_update":"2026-03-22T07:02:32.369469756Z"} +2026/03/22 07:02:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:02:32.378932308Z"} +2026/03/22 07:02:37 ───────────────────────────────────────────────── +2026/03/22 07:02:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:02:42 [log_collector] {"stage_name":"log_collector","events_processed":6577,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1315.4,"last_update":"2026-03-22T07:02:37.368408504Z"} +2026/03/22 07:02:42 [metric_collector] {"stage_name":"metric_collector","events_processed":3669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":733.8,"last_update":"2026-03-22T07:02:37.368888404Z"} +2026/03/22 07:02:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1470,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:02:37.379205142Z"} +2026/03/22 07:02:42 [detection_layer] {"stage_name":"detection_layer","events_processed":122,"events_dropped":0,"avg_latency_ms":16.28776875626368,"throughput_eps":0,"last_update":"2026-03-22T07:02:37.479538941Z"} +2026/03/22 07:02:42 [transform_engine] {"stage_name":"transform_engine","events_processed":122,"events_dropped":0,"avg_latency_ms":241.2484698035056,"throughput_eps":0,"last_update":"2026-03-22T07:02:37.479507751Z"} +2026/03/22 07:02:42 ───────────────────────────────────────────────── +2026/03/22 07:02:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:02:47 [log_collector] {"stage_name":"log_collector","events_processed":6577,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1315.4,"last_update":"2026-03-22T07:02:42.367949461Z"} +2026/03/22 07:02:47 [metric_collector] {"stage_name":"metric_collector","events_processed":3674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":734.8,"last_update":"2026-03-22T07:02:42.368325571Z"} +2026/03/22 07:02:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:02:42.377491695Z"} +2026/03/22 07:02:47 [detection_layer] {"stage_name":"detection_layer","events_processed":122,"events_dropped":0,"avg_latency_ms":16.28776875626368,"throughput_eps":0,"last_update":"2026-03-22T07:02:42.47971899Z"} +2026/03/22 07:02:47 [transform_engine] {"stage_name":"transform_engine","events_processed":122,"events_dropped":0,"avg_latency_ms":241.2484698035056,"throughput_eps":0,"last_update":"2026-03-22T07:02:42.479761271Z"} +2026/03/22 07:02:47 ───────────────────────────────────────────────── +2026/03/22 07:02:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:02:52 [transform_engine] {"stage_name":"transform_engine","events_processed":122,"events_dropped":0,"avg_latency_ms":241.2484698035056,"throughput_eps":0,"last_update":"2026-03-22T07:02:47.47952694Z"} +2026/03/22 07:02:52 [log_collector] {"stage_name":"log_collector","events_processed":6577,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1315.4,"last_update":"2026-03-22T07:02:47.368599666Z"} +2026/03/22 07:02:52 [metric_collector] {"stage_name":"metric_collector","events_processed":3679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":735.8,"last_update":"2026-03-22T07:02:47.369102539Z"} +2026/03/22 07:02:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:02:47.377264107Z"} +2026/03/22 07:02:52 [detection_layer] {"stage_name":"detection_layer","events_processed":122,"events_dropped":0,"avg_latency_ms":16.28776875626368,"throughput_eps":0,"last_update":"2026-03-22T07:02:47.479484419Z"} +2026/03/22 07:02:52 ───────────────────────────────────────────────── +2026/03/22 07:02:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:02:57 [log_collector] {"stage_name":"log_collector","events_processed":6577,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1315.4,"last_update":"2026-03-22T07:02:52.36797445Z"} +2026/03/22 07:02:57 [metric_collector] {"stage_name":"metric_collector","events_processed":3684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":736.8,"last_update":"2026-03-22T07:02:52.368399955Z"} +2026/03/22 07:02:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1476,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:02:52.377201469Z"} +2026/03/22 07:02:57 [detection_layer] {"stage_name":"detection_layer","events_processed":122,"events_dropped":0,"avg_latency_ms":16.28776875626368,"throughput_eps":0,"last_update":"2026-03-22T07:02:52.479524778Z"} +2026/03/22 07:02:57 [transform_engine] {"stage_name":"transform_engine","events_processed":122,"events_dropped":0,"avg_latency_ms":241.2484698035056,"throughput_eps":0,"last_update":"2026-03-22T07:02:52.47948966Z"} +2026/03/22 07:02:57 ───────────────────────────────────────────────── +2026/03/22 07:03:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:03:02 [log_collector] {"stage_name":"log_collector","events_processed":6577,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1315.4,"last_update":"2026-03-22T07:02:57.367974737Z"} +2026/03/22 07:03:02 [metric_collector] {"stage_name":"metric_collector","events_processed":3689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":737.8,"last_update":"2026-03-22T07:02:57.368873649Z"} +2026/03/22 07:03:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:02:57.377732393Z"} +2026/03/22 07:03:02 [detection_layer] {"stage_name":"detection_layer","events_processed":122,"events_dropped":0,"avg_latency_ms":16.28776875626368,"throughput_eps":0,"last_update":"2026-03-22T07:02:57.479040464Z"} +2026/03/22 07:03:02 [transform_engine] {"stage_name":"transform_engine","events_processed":123,"events_dropped":0,"avg_latency_ms":203.7520478428045,"throughput_eps":0,"last_update":"2026-03-22T07:02:57.532721841Z"} +2026/03/22 07:03:02 ───────────────────────────────────────────────── +2026/03/22 07:03:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:03:07 [log_collector] {"stage_name":"log_collector","events_processed":6577,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1315.4,"last_update":"2026-03-22T07:03:02.368207784Z"} +2026/03/22 07:03:07 [metric_collector] {"stage_name":"metric_collector","events_processed":3694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":738.8,"last_update":"2026-03-22T07:03:02.368561902Z"} +2026/03/22 07:03:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1480,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:03:02.378024022Z"} +2026/03/22 07:03:07 [detection_layer] {"stage_name":"detection_layer","events_processed":123,"events_dropped":0,"avg_latency_ms":17.424428605010945,"throughput_eps":0,"last_update":"2026-03-22T07:03:02.479309911Z"} +2026/03/22 07:03:07 [transform_engine] {"stage_name":"transform_engine","events_processed":123,"events_dropped":0,"avg_latency_ms":203.7520478428045,"throughput_eps":0,"last_update":"2026-03-22T07:03:02.479270926Z"} +2026/03/22 07:03:07 ───────────────────────────────────────────────── +2026/03/22 07:03:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:03:12 [log_collector] {"stage_name":"log_collector","events_processed":6577,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1315.4,"last_update":"2026-03-22T07:03:07.36802489Z"} +2026/03/22 07:03:12 [metric_collector] {"stage_name":"metric_collector","events_processed":3698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":739.6,"last_update":"2026-03-22T07:03:07.367913498Z"} +2026/03/22 07:03:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1482,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:03:07.377391628Z"} +2026/03/22 07:03:12 [detection_layer] {"stage_name":"detection_layer","events_processed":123,"events_dropped":0,"avg_latency_ms":17.424428605010945,"throughput_eps":0,"last_update":"2026-03-22T07:03:07.479560437Z"} +2026/03/22 07:03:12 [transform_engine] {"stage_name":"transform_engine","events_processed":123,"events_dropped":0,"avg_latency_ms":203.7520478428045,"throughput_eps":0,"last_update":"2026-03-22T07:03:07.479584413Z"} +2026/03/22 07:03:12 ───────────────────────────────────────────────── +2026/03/22 07:03:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:03:17 [transform_engine] {"stage_name":"transform_engine","events_processed":123,"events_dropped":0,"avg_latency_ms":203.7520478428045,"throughput_eps":0,"last_update":"2026-03-22T07:03:12.479510803Z"} +2026/03/22 07:03:17 [log_collector] {"stage_name":"log_collector","events_processed":6577,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1315.4,"last_update":"2026-03-22T07:03:12.368498268Z"} +2026/03/22 07:03:17 [metric_collector] {"stage_name":"metric_collector","events_processed":3704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":740.8,"last_update":"2026-03-22T07:03:12.368918383Z"} +2026/03/22 07:03:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:03:12.379174765Z"} +2026/03/22 07:03:17 [detection_layer] {"stage_name":"detection_layer","events_processed":123,"events_dropped":0,"avg_latency_ms":17.424428605010945,"throughput_eps":0,"last_update":"2026-03-22T07:03:12.479404609Z"} +2026/03/22 07:03:17 ───────────────────────────────────────────────── +2026/03/22 07:03:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:03:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1486,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:03:17.377416113Z"} +2026/03/22 07:03:22 [detection_layer] {"stage_name":"detection_layer","events_processed":123,"events_dropped":0,"avg_latency_ms":17.424428605010945,"throughput_eps":0,"last_update":"2026-03-22T07:03:17.479615028Z"} +2026/03/22 07:03:22 [transform_engine] {"stage_name":"transform_engine","events_processed":123,"events_dropped":0,"avg_latency_ms":203.7520478428045,"throughput_eps":0,"last_update":"2026-03-22T07:03:17.479637371Z"} +2026/03/22 07:03:22 [log_collector] {"stage_name":"log_collector","events_processed":6577,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1315.4,"last_update":"2026-03-22T07:03:17.368367044Z"} +2026/03/22 07:03:22 [metric_collector] {"stage_name":"metric_collector","events_processed":3709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":741.8,"last_update":"2026-03-22T07:03:17.368621813Z"} +2026/03/22 07:03:22 ───────────────────────────────────────────────── +2026/03/22 07:03:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:03:27 [log_collector] {"stage_name":"log_collector","events_processed":6577,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1315.4,"last_update":"2026-03-22T07:03:22.368816321Z"} +2026/03/22 07:03:27 [metric_collector] {"stage_name":"metric_collector","events_processed":3714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":742.8,"last_update":"2026-03-22T07:03:22.369225124Z"} +2026/03/22 07:03:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:03:22.378224848Z"} +2026/03/22 07:03:27 [detection_layer] {"stage_name":"detection_layer","events_processed":123,"events_dropped":0,"avg_latency_ms":17.424428605010945,"throughput_eps":0,"last_update":"2026-03-22T07:03:22.479484282Z"} +2026/03/22 07:03:27 [transform_engine] {"stage_name":"transform_engine","events_processed":123,"events_dropped":0,"avg_latency_ms":203.7520478428045,"throughput_eps":0,"last_update":"2026-03-22T07:03:22.479462822Z"} +2026/03/22 07:03:27 ───────────────────────────────────────────────── +Saved state: 11 clusters, 6578 messages, reason: none +2026/03/22 07:03:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:03:32 [log_collector] {"stage_name":"log_collector","events_processed":6577,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1315.4,"last_update":"2026-03-22T07:03:27.368901484Z"} +2026/03/22 07:03:32 [metric_collector] {"stage_name":"metric_collector","events_processed":3719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":743.8,"last_update":"2026-03-22T07:03:27.36896219Z"} +2026/03/22 07:03:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1490,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:03:27.377448871Z"} +2026/03/22 07:03:32 [detection_layer] {"stage_name":"detection_layer","events_processed":123,"events_dropped":0,"avg_latency_ms":17.424428605010945,"throughput_eps":0,"last_update":"2026-03-22T07:03:27.479764938Z"} +2026/03/22 07:03:32 [transform_engine] {"stage_name":"transform_engine","events_processed":124,"events_dropped":0,"avg_latency_ms":176.35886887424363,"throughput_eps":0,"last_update":"2026-03-22T07:03:27.546521645Z"} +2026/03/22 07:03:32 ───────────────────────────────────────────────── +2026/03/22 07:03:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:03:37 [log_collector] {"stage_name":"log_collector","events_processed":6582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1316.4,"last_update":"2026-03-22T07:03:32.367969586Z"} +2026/03/22 07:03:37 [metric_collector] {"stage_name":"metric_collector","events_processed":3724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":744.8,"last_update":"2026-03-22T07:03:32.368416392Z"} +2026/03/22 07:03:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:03:32.374593016Z"} +2026/03/22 07:03:37 [detection_layer] {"stage_name":"detection_layer","events_processed":124,"events_dropped":0,"avg_latency_ms":17.737329484008757,"throughput_eps":0,"last_update":"2026-03-22T07:03:32.481368948Z"} +2026/03/22 07:03:37 [transform_engine] {"stage_name":"transform_engine","events_processed":124,"events_dropped":0,"avg_latency_ms":176.35886887424363,"throughput_eps":0,"last_update":"2026-03-22T07:03:32.478873928Z"} +2026/03/22 07:03:37 ───────────────────────────────────────────────── +2026/03/22 07:03:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:03:42 [transform_engine] {"stage_name":"transform_engine","events_processed":124,"events_dropped":0,"avg_latency_ms":176.35886887424363,"throughput_eps":0,"last_update":"2026-03-22T07:03:37.479085809Z"} +2026/03/22 07:03:42 [log_collector] {"stage_name":"log_collector","events_processed":6582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1316.4,"last_update":"2026-03-22T07:03:37.368641319Z"} +2026/03/22 07:03:42 [metric_collector] {"stage_name":"metric_collector","events_processed":3729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":745.8,"last_update":"2026-03-22T07:03:37.368633504Z"} +2026/03/22 07:03:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:03:37.375838068Z"} +2026/03/22 07:03:42 [detection_layer] {"stage_name":"detection_layer","events_processed":124,"events_dropped":0,"avg_latency_ms":17.737329484008757,"throughput_eps":0,"last_update":"2026-03-22T07:03:37.479050813Z"} +2026/03/22 07:03:42 ───────────────────────────────────────────────── +2026/03/22 07:03:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:03:47 [log_collector] {"stage_name":"log_collector","events_processed":6582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1316.4,"last_update":"2026-03-22T07:03:42.368551052Z"} +2026/03/22 07:03:47 [metric_collector] {"stage_name":"metric_collector","events_processed":3734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":746.8,"last_update":"2026-03-22T07:03:42.368852209Z"} +2026/03/22 07:03:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1496,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:03:42.376255503Z"} +2026/03/22 07:03:47 [detection_layer] {"stage_name":"detection_layer","events_processed":124,"events_dropped":0,"avg_latency_ms":17.737329484008757,"throughput_eps":0,"last_update":"2026-03-22T07:03:42.479480281Z"} +2026/03/22 07:03:47 [transform_engine] {"stage_name":"transform_engine","events_processed":124,"events_dropped":0,"avg_latency_ms":176.35886887424363,"throughput_eps":0,"last_update":"2026-03-22T07:03:42.479465442Z"} +2026/03/22 07:03:47 ───────────────────────────────────────────────── +2026/03/22 07:03:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:03:52 [transform_engine] {"stage_name":"transform_engine","events_processed":124,"events_dropped":0,"avg_latency_ms":176.35886887424363,"throughput_eps":0,"last_update":"2026-03-22T07:03:47.479122687Z"} +2026/03/22 07:03:52 [log_collector] {"stage_name":"log_collector","events_processed":6582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1316.4,"last_update":"2026-03-22T07:03:47.368748133Z"} +2026/03/22 07:03:52 [metric_collector] {"stage_name":"metric_collector","events_processed":3739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":747.8,"last_update":"2026-03-22T07:03:47.368997711Z"} +2026/03/22 07:03:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1498,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:03:47.376999512Z"} +2026/03/22 07:03:52 [detection_layer] {"stage_name":"detection_layer","events_processed":124,"events_dropped":0,"avg_latency_ms":17.737329484008757,"throughput_eps":0,"last_update":"2026-03-22T07:03:47.479142005Z"} +2026/03/22 07:03:52 ───────────────────────────────────────────────── +2026/03/22 07:03:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:03:57 [log_collector] {"stage_name":"log_collector","events_processed":6582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1316.4,"last_update":"2026-03-22T07:03:52.368149637Z"} +2026/03/22 07:03:57 [metric_collector] {"stage_name":"metric_collector","events_processed":3744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":748.8,"last_update":"2026-03-22T07:03:52.368475652Z"} +2026/03/22 07:03:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:03:52.376743403Z"} +2026/03/22 07:03:57 [detection_layer] {"stage_name":"detection_layer","events_processed":124,"events_dropped":0,"avg_latency_ms":17.737329484008757,"throughput_eps":0,"last_update":"2026-03-22T07:03:52.479984319Z"} +2026/03/22 07:03:57 [transform_engine] {"stage_name":"transform_engine","events_processed":124,"events_dropped":0,"avg_latency_ms":176.35886887424363,"throughput_eps":0,"last_update":"2026-03-22T07:03:52.478858281Z"} +2026/03/22 07:03:57 ───────────────────────────────────────────────── +2026/03/22 07:04:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:04:02 [log_collector] {"stage_name":"log_collector","events_processed":6582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1316.4,"last_update":"2026-03-22T07:03:57.368381743Z"} +2026/03/22 07:04:02 [metric_collector] {"stage_name":"metric_collector","events_processed":3749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":749.8,"last_update":"2026-03-22T07:03:57.36872954Z"} +2026/03/22 07:04:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:03:57.376715841Z"} +2026/03/22 07:04:02 [detection_layer] {"stage_name":"detection_layer","events_processed":124,"events_dropped":0,"avg_latency_ms":17.737329484008757,"throughput_eps":0,"last_update":"2026-03-22T07:03:57.479953179Z"} +2026/03/22 07:04:02 [transform_engine] {"stage_name":"transform_engine","events_processed":125,"events_dropped":0,"avg_latency_ms":207.8756610993949,"throughput_eps":0,"last_update":"2026-03-22T07:03:57.812788516Z"} +2026/03/22 07:04:02 ───────────────────────────────────────────────── +2026/03/22 07:04:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:04:07 [log_collector] {"stage_name":"log_collector","events_processed":6582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1316.4,"last_update":"2026-03-22T07:04:02.368170099Z"} +2026/03/22 07:04:07 [metric_collector] {"stage_name":"metric_collector","events_processed":3754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":750.8,"last_update":"2026-03-22T07:04:02.368166542Z"} +2026/03/22 07:04:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:04:02.379240349Z"} +2026/03/22 07:04:07 [detection_layer] {"stage_name":"detection_layer","events_processed":125,"events_dropped":0,"avg_latency_ms":16.115945787207007,"throughput_eps":0,"last_update":"2026-03-22T07:04:02.479448522Z"} +2026/03/22 07:04:07 [transform_engine] {"stage_name":"transform_engine","events_processed":125,"events_dropped":0,"avg_latency_ms":207.8756610993949,"throughput_eps":0,"last_update":"2026-03-22T07:04:02.479472138Z"} +2026/03/22 07:04:07 ───────────────────────────────────────────────── +2026/03/22 07:04:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:04:12 [log_collector] {"stage_name":"log_collector","events_processed":6582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1316.4,"last_update":"2026-03-22T07:04:12.36864397Z"} +2026/03/22 07:04:12 [metric_collector] {"stage_name":"metric_collector","events_processed":3763,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":752.6,"last_update":"2026-03-22T07:04:12.368660452Z"} +2026/03/22 07:04:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1506,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:04:07.376220916Z"} +2026/03/22 07:04:12 [detection_layer] {"stage_name":"detection_layer","events_processed":125,"events_dropped":0,"avg_latency_ms":16.115945787207007,"throughput_eps":0,"last_update":"2026-03-22T07:04:07.479460987Z"} +2026/03/22 07:04:12 [transform_engine] {"stage_name":"transform_engine","events_processed":125,"events_dropped":0,"avg_latency_ms":207.8756610993949,"throughput_eps":0,"last_update":"2026-03-22T07:04:07.479438805Z"} +2026/03/22 07:04:12 ───────────────────────────────────────────────── +2026/03/22 07:04:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:04:17 [log_collector] {"stage_name":"log_collector","events_processed":6582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1316.4,"last_update":"2026-03-22T07:04:12.36864397Z"} +2026/03/22 07:04:17 [metric_collector] {"stage_name":"metric_collector","events_processed":3763,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":752.6,"last_update":"2026-03-22T07:04:12.368660452Z"} +2026/03/22 07:04:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:04:12.376480195Z"} +2026/03/22 07:04:17 [detection_layer] {"stage_name":"detection_layer","events_processed":125,"events_dropped":0,"avg_latency_ms":16.115945787207007,"throughput_eps":0,"last_update":"2026-03-22T07:04:12.479969412Z"} +2026/03/22 07:04:17 [transform_engine] {"stage_name":"transform_engine","events_processed":125,"events_dropped":0,"avg_latency_ms":207.8756610993949,"throughput_eps":0,"last_update":"2026-03-22T07:04:12.478873072Z"} +2026/03/22 07:04:17 ───────────────────────────────────────────────── +2026/03/22 07:04:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:04:22 [log_collector] {"stage_name":"log_collector","events_processed":6641,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1328.2,"last_update":"2026-03-22T07:04:22.368757495Z"} +2026/03/22 07:04:22 [metric_collector] {"stage_name":"metric_collector","events_processed":3769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":753.8,"last_update":"2026-03-22T07:04:17.368579589Z"} +2026/03/22 07:04:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:04:17.375223198Z"} +2026/03/22 07:04:22 [detection_layer] {"stage_name":"detection_layer","events_processed":125,"events_dropped":0,"avg_latency_ms":16.115945787207007,"throughput_eps":0,"last_update":"2026-03-22T07:04:17.479452854Z"} +2026/03/22 07:04:22 [transform_engine] {"stage_name":"transform_engine","events_processed":125,"events_dropped":0,"avg_latency_ms":207.8756610993949,"throughput_eps":0,"last_update":"2026-03-22T07:04:17.479480368Z"} +2026/03/22 07:04:22 ───────────────────────────────────────────────── +2026/03/22 07:04:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:04:27 [log_collector] {"stage_name":"log_collector","events_processed":6641,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1328.2,"last_update":"2026-03-22T07:04:22.368757495Z"} +2026/03/22 07:04:27 [metric_collector] {"stage_name":"metric_collector","events_processed":3774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":754.8,"last_update":"2026-03-22T07:04:22.369001342Z"} +2026/03/22 07:04:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1512,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:04:22.376258497Z"} +2026/03/22 07:04:27 [detection_layer] {"stage_name":"detection_layer","events_processed":125,"events_dropped":0,"avg_latency_ms":16.115945787207007,"throughput_eps":0,"last_update":"2026-03-22T07:04:22.479569512Z"} +2026/03/22 07:04:27 [transform_engine] {"stage_name":"transform_engine","events_processed":125,"events_dropped":0,"avg_latency_ms":207.8756610993949,"throughput_eps":0,"last_update":"2026-03-22T07:04:22.479614157Z"} +2026/03/22 07:04:27 ───────────────────────────────────────────────── +2026/03/22 07:04:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:04:32 [transform_engine] {"stage_name":"transform_engine","events_processed":126,"events_dropped":0,"avg_latency_ms":504.06447887951595,"throughput_eps":0,"last_update":"2026-03-22T07:04:29.168284214Z"} +2026/03/22 07:04:32 [log_collector] {"stage_name":"log_collector","events_processed":6881,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1376.2,"last_update":"2026-03-22T07:04:27.368556053Z"} +2026/03/22 07:04:32 [metric_collector] {"stage_name":"metric_collector","events_processed":3779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":755.8,"last_update":"2026-03-22T07:04:27.368629574Z"} +2026/03/22 07:04:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:04:27.376220377Z"} +2026/03/22 07:04:32 [detection_layer] {"stage_name":"detection_layer","events_processed":125,"events_dropped":0,"avg_latency_ms":16.115945787207007,"throughput_eps":0,"last_update":"2026-03-22T07:04:27.479431751Z"} +2026/03/22 07:04:32 ───────────────────────────────────────────────── +2026/03/22 07:04:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:04:37 [log_collector] {"stage_name":"log_collector","events_processed":6945,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1389,"last_update":"2026-03-22T07:04:32.368780832Z"} +2026/03/22 07:04:37 [metric_collector] {"stage_name":"metric_collector","events_processed":3784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":756.8,"last_update":"2026-03-22T07:04:32.368939696Z"} +2026/03/22 07:04:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:04:32.378455086Z"} +2026/03/22 07:04:37 [detection_layer] {"stage_name":"detection_layer","events_processed":126,"events_dropped":0,"avg_latency_ms":15.154702429765607,"throughput_eps":0,"last_update":"2026-03-22T07:04:32.479872121Z"} +2026/03/22 07:04:37 [transform_engine] {"stage_name":"transform_engine","events_processed":126,"events_dropped":0,"avg_latency_ms":504.06447887951595,"throughput_eps":0,"last_update":"2026-03-22T07:04:32.47975619Z"} +2026/03/22 07:04:37 ───────────────────────────────────────────────── +Saved state: 11 clusters, 6946 messages, reason: none +2026/03/22 07:04:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:04:42 [log_collector] {"stage_name":"log_collector","events_processed":6945,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1389,"last_update":"2026-03-22T07:04:37.368765023Z"} +2026/03/22 07:04:42 [metric_collector] {"stage_name":"metric_collector","events_processed":3789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":757.8,"last_update":"2026-03-22T07:04:37.368811081Z"} +2026/03/22 07:04:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:04:37.376726245Z"} +2026/03/22 07:04:42 [detection_layer] {"stage_name":"detection_layer","events_processed":126,"events_dropped":0,"avg_latency_ms":15.154702429765607,"throughput_eps":0,"last_update":"2026-03-22T07:04:37.478962338Z"} +2026/03/22 07:04:42 [transform_engine] {"stage_name":"transform_engine","events_processed":126,"events_dropped":0,"avg_latency_ms":504.06447887951595,"throughput_eps":0,"last_update":"2026-03-22T07:04:37.478871675Z"} +2026/03/22 07:04:42 ───────────────────────────────────────────────── +2026/03/22 07:04:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:04:47 [transform_engine] {"stage_name":"transform_engine","events_processed":126,"events_dropped":0,"avg_latency_ms":504.06447887951595,"throughput_eps":0,"last_update":"2026-03-22T07:04:42.47895115Z"} +2026/03/22 07:04:47 [log_collector] {"stage_name":"log_collector","events_processed":6948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1389.6,"last_update":"2026-03-22T07:04:47.368392287Z"} +2026/03/22 07:04:47 [metric_collector] {"stage_name":"metric_collector","events_processed":3794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":758.8,"last_update":"2026-03-22T07:04:42.368857873Z"} +2026/03/22 07:04:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1520,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:04:42.379809395Z"} +2026/03/22 07:04:47 [detection_layer] {"stage_name":"detection_layer","events_processed":126,"events_dropped":0,"avg_latency_ms":15.154702429765607,"throughput_eps":0,"last_update":"2026-03-22T07:04:42.478960577Z"} +2026/03/22 07:04:47 ───────────────────────────────────────────────── +2026/03/22 07:04:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:04:52 [log_collector] {"stage_name":"log_collector","events_processed":6948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1389.6,"last_update":"2026-03-22T07:04:47.368392287Z"} +2026/03/22 07:04:52 [metric_collector] {"stage_name":"metric_collector","events_processed":3799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":759.8,"last_update":"2026-03-22T07:04:47.36867048Z"} +2026/03/22 07:04:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1522,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:04:47.377840258Z"} +2026/03/22 07:04:52 [detection_layer] {"stage_name":"detection_layer","events_processed":126,"events_dropped":0,"avg_latency_ms":15.154702429765607,"throughput_eps":0,"last_update":"2026-03-22T07:04:47.479033612Z"} +2026/03/22 07:04:52 [transform_engine] {"stage_name":"transform_engine","events_processed":126,"events_dropped":0,"avg_latency_ms":504.06447887951595,"throughput_eps":0,"last_update":"2026-03-22T07:04:47.47905879Z"} +2026/03/22 07:04:52 ───────────────────────────────────────────────── +2026/03/22 07:04:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:04:57 [metric_collector] {"stage_name":"metric_collector","events_processed":3804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":760.8,"last_update":"2026-03-22T07:04:52.368342692Z"} +2026/03/22 07:04:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:04:52.376247636Z"} +2026/03/22 07:04:57 [detection_layer] {"stage_name":"detection_layer","events_processed":126,"events_dropped":0,"avg_latency_ms":15.154702429765607,"throughput_eps":0,"last_update":"2026-03-22T07:04:52.479600728Z"} +2026/03/22 07:04:57 [transform_engine] {"stage_name":"transform_engine","events_processed":126,"events_dropped":0,"avg_latency_ms":504.06447887951595,"throughput_eps":0,"last_update":"2026-03-22T07:04:52.479622208Z"} +2026/03/22 07:04:57 [log_collector] {"stage_name":"log_collector","events_processed":6959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1391.8,"last_update":"2026-03-22T07:04:52.367986198Z"} +2026/03/22 07:04:57 ───────────────────────────────────────────────── +2026/03/22 07:05:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:05:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1526,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:04:57.375313891Z"} +2026/03/22 07:05:02 [detection_layer] {"stage_name":"detection_layer","events_processed":126,"events_dropped":0,"avg_latency_ms":15.154702429765607,"throughput_eps":0,"last_update":"2026-03-22T07:04:57.479753523Z"} +2026/03/22 07:05:02 [transform_engine] {"stage_name":"transform_engine","events_processed":127,"events_dropped":0,"avg_latency_ms":438.8053133036128,"throughput_eps":0,"last_update":"2026-03-22T07:04:57.657544847Z"} +2026/03/22 07:05:02 [log_collector] {"stage_name":"log_collector","events_processed":6966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1393.2,"last_update":"2026-03-22T07:04:57.36832463Z"} +2026/03/22 07:05:02 [metric_collector] {"stage_name":"metric_collector","events_processed":3809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":761.8,"last_update":"2026-03-22T07:04:57.368458967Z"} +2026/03/22 07:05:02 ───────────────────────────────────────────────── +2026/03/22 07:05:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:05:07 [log_collector] {"stage_name":"log_collector","events_processed":6975,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1395,"last_update":"2026-03-22T07:05:07.367967567Z"} +2026/03/22 07:05:07 [metric_collector] {"stage_name":"metric_collector","events_processed":3814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":762.8,"last_update":"2026-03-22T07:05:02.369144399Z"} +2026/03/22 07:05:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:05:02.375770453Z"} +2026/03/22 07:05:07 [detection_layer] {"stage_name":"detection_layer","events_processed":127,"events_dropped":0,"avg_latency_ms":14.828549943812487,"throughput_eps":0,"last_update":"2026-03-22T07:05:02.480011905Z"} +2026/03/22 07:05:07 [transform_engine] {"stage_name":"transform_engine","events_processed":127,"events_dropped":0,"avg_latency_ms":438.8053133036128,"throughput_eps":0,"last_update":"2026-03-22T07:05:02.478885426Z"} +2026/03/22 07:05:07 ───────────────────────────────────────────────── +2026/03/22 07:05:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:05:12 [log_collector] {"stage_name":"log_collector","events_processed":6975,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1395,"last_update":"2026-03-22T07:05:07.367967567Z"} +2026/03/22 07:05:12 [metric_collector] {"stage_name":"metric_collector","events_processed":3819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":763.8,"last_update":"2026-03-22T07:05:07.368476351Z"} +2026/03/22 07:05:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:05:07.376442012Z"} +2026/03/22 07:05:12 [detection_layer] {"stage_name":"detection_layer","events_processed":127,"events_dropped":0,"avg_latency_ms":14.828549943812487,"throughput_eps":0,"last_update":"2026-03-22T07:05:07.479764122Z"} +2026/03/22 07:05:12 [transform_engine] {"stage_name":"transform_engine","events_processed":127,"events_dropped":0,"avg_latency_ms":438.8053133036128,"throughput_eps":0,"last_update":"2026-03-22T07:05:07.479683367Z"} +2026/03/22 07:05:12 ───────────────────────────────────────────────── +2026/03/22 07:05:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:05:17 [log_collector] {"stage_name":"log_collector","events_processed":6975,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1395,"last_update":"2026-03-22T07:05:17.368415824Z"} +2026/03/22 07:05:17 [metric_collector] {"stage_name":"metric_collector","events_processed":3824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":764.8,"last_update":"2026-03-22T07:05:12.368317694Z"} +2026/03/22 07:05:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1532,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:05:12.374305436Z"} +2026/03/22 07:05:17 [detection_layer] {"stage_name":"detection_layer","events_processed":127,"events_dropped":0,"avg_latency_ms":14.828549943812487,"throughput_eps":0,"last_update":"2026-03-22T07:05:12.479736054Z"} +2026/03/22 07:05:17 [transform_engine] {"stage_name":"transform_engine","events_processed":127,"events_dropped":0,"avg_latency_ms":438.8053133036128,"throughput_eps":0,"last_update":"2026-03-22T07:05:12.479687861Z"} +2026/03/22 07:05:17 ───────────────────────────────────────────────── +2026/03/22 07:05:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:05:22 [log_collector] {"stage_name":"log_collector","events_processed":6975,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1395,"last_update":"2026-03-22T07:05:22.368450316Z"} +2026/03/22 07:05:22 [metric_collector] {"stage_name":"metric_collector","events_processed":3829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":765.8,"last_update":"2026-03-22T07:05:17.368876446Z"} +2026/03/22 07:05:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:05:17.377499166Z"} +2026/03/22 07:05:22 [detection_layer] {"stage_name":"detection_layer","events_processed":127,"events_dropped":0,"avg_latency_ms":14.828549943812487,"throughput_eps":0,"last_update":"2026-03-22T07:05:17.47973369Z"} +2026/03/22 07:05:22 [transform_engine] {"stage_name":"transform_engine","events_processed":127,"events_dropped":0,"avg_latency_ms":438.8053133036128,"throughput_eps":0,"last_update":"2026-03-22T07:05:17.479642907Z"} +2026/03/22 07:05:22 ───────────────────────────────────────────────── +2026/03/22 07:05:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:05:27 [detection_layer] {"stage_name":"detection_layer","events_processed":127,"events_dropped":0,"avg_latency_ms":14.828549943812487,"throughput_eps":0,"last_update":"2026-03-22T07:05:22.479148195Z"} +2026/03/22 07:05:27 [transform_engine] {"stage_name":"transform_engine","events_processed":127,"events_dropped":0,"avg_latency_ms":438.8053133036128,"throughput_eps":0,"last_update":"2026-03-22T07:05:22.479040869Z"} +2026/03/22 07:05:27 [log_collector] {"stage_name":"log_collector","events_processed":6975,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1395,"last_update":"2026-03-22T07:05:22.368450316Z"} +2026/03/22 07:05:27 [metric_collector] {"stage_name":"metric_collector","events_processed":3834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":766.8,"last_update":"2026-03-22T07:05:22.369017363Z"} +2026/03/22 07:05:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1536,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:05:22.377842751Z"} +2026/03/22 07:05:27 ───────────────────────────────────────────────── +2026/03/22 07:05:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:05:32 [metric_collector] {"stage_name":"metric_collector","events_processed":3839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":767.8,"last_update":"2026-03-22T07:05:27.368299951Z"} +2026/03/22 07:05:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:05:27.378952639Z"} +2026/03/22 07:05:32 [detection_layer] {"stage_name":"detection_layer","events_processed":127,"events_dropped":0,"avg_latency_ms":14.828549943812487,"throughput_eps":0,"last_update":"2026-03-22T07:05:27.479238841Z"} +2026/03/22 07:05:32 [transform_engine] {"stage_name":"transform_engine","events_processed":128,"events_dropped":0,"avg_latency_ms":366.5559242428903,"throughput_eps":0,"last_update":"2026-03-22T07:05:27.556846022Z"} +2026/03/22 07:05:32 [log_collector] {"stage_name":"log_collector","events_processed":6975,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1395,"last_update":"2026-03-22T07:05:32.368762818Z"} +2026/03/22 07:05:32 ───────────────────────────────────────────────── +2026/03/22 07:05:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:05:37 [log_collector] {"stage_name":"log_collector","events_processed":6975,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1395,"last_update":"2026-03-22T07:05:37.36802527Z"} +2026/03/22 07:05:37 [metric_collector] {"stage_name":"metric_collector","events_processed":3844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":768.8,"last_update":"2026-03-22T07:05:32.369645499Z"} +2026/03/22 07:05:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1540,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:05:32.380155815Z"} +2026/03/22 07:05:37 [detection_layer] {"stage_name":"detection_layer","events_processed":128,"events_dropped":0,"avg_latency_ms":15.78297235504999,"throughput_eps":0,"last_update":"2026-03-22T07:05:32.479520951Z"} +2026/03/22 07:05:37 [transform_engine] {"stage_name":"transform_engine","events_processed":128,"events_dropped":0,"avg_latency_ms":366.5559242428903,"throughput_eps":0,"last_update":"2026-03-22T07:05:32.479418774Z"} +2026/03/22 07:05:37 ───────────────────────────────────────────────── +2026/03/22 07:05:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:05:42 [log_collector] {"stage_name":"log_collector","events_processed":6975,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1395,"last_update":"2026-03-22T07:05:37.36802527Z"} +2026/03/22 07:05:42 [metric_collector] {"stage_name":"metric_collector","events_processed":3849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":769.8,"last_update":"2026-03-22T07:05:37.368333481Z"} +2026/03/22 07:05:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1542,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:05:37.377020444Z"} +2026/03/22 07:05:42 [detection_layer] {"stage_name":"detection_layer","events_processed":128,"events_dropped":0,"avg_latency_ms":15.78297235504999,"throughput_eps":0,"last_update":"2026-03-22T07:05:37.479251249Z"} +2026/03/22 07:05:42 [transform_engine] {"stage_name":"transform_engine","events_processed":128,"events_dropped":0,"avg_latency_ms":366.5559242428903,"throughput_eps":0,"last_update":"2026-03-22T07:05:37.479277209Z"} +2026/03/22 07:05:42 ───────────────────────────────────────────────── +2026/03/22 07:05:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:05:47 [log_collector] {"stage_name":"log_collector","events_processed":6975,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1395,"last_update":"2026-03-22T07:05:47.368540029Z"} +2026/03/22 07:05:47 [metric_collector] {"stage_name":"metric_collector","events_processed":3854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":770.8,"last_update":"2026-03-22T07:05:42.368781863Z"} +2026/03/22 07:05:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:05:42.378045791Z"} +2026/03/22 07:05:47 [detection_layer] {"stage_name":"detection_layer","events_processed":128,"events_dropped":0,"avg_latency_ms":15.78297235504999,"throughput_eps":0,"last_update":"2026-03-22T07:05:42.479305243Z"} +2026/03/22 07:05:47 [transform_engine] {"stage_name":"transform_engine","events_processed":128,"events_dropped":0,"avg_latency_ms":366.5559242428903,"throughput_eps":0,"last_update":"2026-03-22T07:05:42.479334349Z"} +2026/03/22 07:05:47 ───────────────────────────────────────────────── +2026/03/22 07:05:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:05:52 [transform_engine] {"stage_name":"transform_engine","events_processed":128,"events_dropped":0,"avg_latency_ms":366.5559242428903,"throughput_eps":0,"last_update":"2026-03-22T07:05:47.47954415Z"} +2026/03/22 07:05:52 [log_collector] {"stage_name":"log_collector","events_processed":6975,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1395,"last_update":"2026-03-22T07:05:47.368540029Z"} +2026/03/22 07:05:52 [metric_collector] {"stage_name":"metric_collector","events_processed":3859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":771.8,"last_update":"2026-03-22T07:05:47.368963451Z"} +2026/03/22 07:05:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:05:47.380304537Z"} +2026/03/22 07:05:52 [detection_layer] {"stage_name":"detection_layer","events_processed":128,"events_dropped":0,"avg_latency_ms":15.78297235504999,"throughput_eps":0,"last_update":"2026-03-22T07:05:47.479501899Z"} +2026/03/22 07:05:52 ───────────────────────────────────────────────── +2026/03/22 07:05:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:05:57 [log_collector] {"stage_name":"log_collector","events_processed":6975,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1395,"last_update":"2026-03-22T07:05:52.368792289Z"} +2026/03/22 07:05:57 [metric_collector] {"stage_name":"metric_collector","events_processed":3864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":772.8,"last_update":"2026-03-22T07:05:52.368794182Z"} +2026/03/22 07:05:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:05:52.377392275Z"} +2026/03/22 07:05:57 [detection_layer] {"stage_name":"detection_layer","events_processed":128,"events_dropped":0,"avg_latency_ms":15.78297235504999,"throughput_eps":0,"last_update":"2026-03-22T07:05:52.479720033Z"} +2026/03/22 07:05:57 [transform_engine] {"stage_name":"transform_engine","events_processed":128,"events_dropped":0,"avg_latency_ms":366.5559242428903,"throughput_eps":0,"last_update":"2026-03-22T07:05:52.479753056Z"} +2026/03/22 07:05:57 ───────────────────────────────────────────────── +2026/03/22 07:06:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:06:02 [detection_layer] {"stage_name":"detection_layer","events_processed":128,"events_dropped":0,"avg_latency_ms":15.78297235504999,"throughput_eps":0,"last_update":"2026-03-22T07:05:57.47997656Z"} +2026/03/22 07:06:02 [transform_engine] {"stage_name":"transform_engine","events_processed":129,"events_dropped":0,"avg_latency_ms":306.61968299431226,"throughput_eps":0,"last_update":"2026-03-22T07:05:57.545734628Z"} +2026/03/22 07:06:02 [log_collector] {"stage_name":"log_collector","events_processed":6975,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1395,"last_update":"2026-03-22T07:05:57.36810057Z"} +2026/03/22 07:06:02 [metric_collector] {"stage_name":"metric_collector","events_processed":3869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":773.8,"last_update":"2026-03-22T07:05:57.368704077Z"} +2026/03/22 07:06:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:05:57.377641448Z"} +2026/03/22 07:06:02 ───────────────────────────────────────────────── +2026/03/22 07:06:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:06:07 [detection_layer] {"stage_name":"detection_layer","events_processed":129,"events_dropped":0,"avg_latency_ms":16.455461284039995,"throughput_eps":0,"last_update":"2026-03-22T07:06:02.479555328Z"} +2026/03/22 07:06:07 [transform_engine] {"stage_name":"transform_engine","events_processed":129,"events_dropped":0,"avg_latency_ms":306.61968299431226,"throughput_eps":0,"last_update":"2026-03-22T07:06:02.479586788Z"} +2026/03/22 07:06:07 [log_collector] {"stage_name":"log_collector","events_processed":6975,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1395,"last_update":"2026-03-22T07:06:02.368597648Z"} +2026/03/22 07:06:07 [metric_collector] {"stage_name":"metric_collector","events_processed":3874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":774.8,"last_update":"2026-03-22T07:06:02.36912571Z"} +2026/03/22 07:06:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:06:02.379250746Z"} +2026/03/22 07:06:07 ───────────────────────────────────────────────── +Saved state: 11 clusters, 6976 messages, reason: none +2026/03/22 07:06:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:06:12 [metric_collector] {"stage_name":"metric_collector","events_processed":3879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":775.8,"last_update":"2026-03-22T07:06:07.36907209Z"} +2026/03/22 07:06:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:06:07.378785659Z"} +2026/03/22 07:06:12 [detection_layer] {"stage_name":"detection_layer","events_processed":129,"events_dropped":0,"avg_latency_ms":16.455461284039995,"throughput_eps":0,"last_update":"2026-03-22T07:06:07.47898091Z"} +2026/03/22 07:06:12 [transform_engine] {"stage_name":"transform_engine","events_processed":129,"events_dropped":0,"avg_latency_ms":306.61968299431226,"throughput_eps":0,"last_update":"2026-03-22T07:06:07.479020857Z"} +2026/03/22 07:06:12 [log_collector] {"stage_name":"log_collector","events_processed":6975,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1395,"last_update":"2026-03-22T07:06:07.368944235Z"} +2026/03/22 07:06:12 ───────────────────────────────────────────────── +2026/03/22 07:06:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:06:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:06:12.378642045Z"} +2026/03/22 07:06:17 [detection_layer] {"stage_name":"detection_layer","events_processed":129,"events_dropped":0,"avg_latency_ms":16.455461284039995,"throughput_eps":0,"last_update":"2026-03-22T07:06:12.479916092Z"} +2026/03/22 07:06:17 [transform_engine] {"stage_name":"transform_engine","events_processed":129,"events_dropped":0,"avg_latency_ms":306.61968299431226,"throughput_eps":0,"last_update":"2026-03-22T07:06:12.479851358Z"} +2026/03/22 07:06:17 [log_collector] {"stage_name":"log_collector","events_processed":6988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1397.6,"last_update":"2026-03-22T07:06:12.36840835Z"} +2026/03/22 07:06:17 [metric_collector] {"stage_name":"metric_collector","events_processed":3884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":776.8,"last_update":"2026-03-22T07:06:12.36879963Z"} +2026/03/22 07:06:17 ───────────────────────────────────────────────── +2026/03/22 07:06:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:06:22 [transform_engine] {"stage_name":"transform_engine","events_processed":129,"events_dropped":0,"avg_latency_ms":306.61968299431226,"throughput_eps":0,"last_update":"2026-03-22T07:06:17.478993906Z"} +2026/03/22 07:06:22 [log_collector] {"stage_name":"log_collector","events_processed":6989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1397.8,"last_update":"2026-03-22T07:06:17.368534213Z"} +2026/03/22 07:06:22 [metric_collector] {"stage_name":"metric_collector","events_processed":3889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":777.8,"last_update":"2026-03-22T07:06:17.369055361Z"} +2026/03/22 07:06:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:06:17.37880595Z"} +2026/03/22 07:06:22 [detection_layer] {"stage_name":"detection_layer","events_processed":129,"events_dropped":0,"avg_latency_ms":16.455461284039995,"throughput_eps":0,"last_update":"2026-03-22T07:06:17.478965422Z"} +2026/03/22 07:06:22 ───────────────────────────────────────────────── +2026/03/22 07:06:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:06:27 [log_collector] {"stage_name":"log_collector","events_processed":6989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1397.8,"last_update":"2026-03-22T07:06:27.368627079Z"} +2026/03/22 07:06:27 [metric_collector] {"stage_name":"metric_collector","events_processed":3894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":778.8,"last_update":"2026-03-22T07:06:22.368284854Z"} +2026/03/22 07:06:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1560,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:06:22.376998367Z"} +2026/03/22 07:06:27 [detection_layer] {"stage_name":"detection_layer","events_processed":129,"events_dropped":0,"avg_latency_ms":16.455461284039995,"throughput_eps":0,"last_update":"2026-03-22T07:06:22.479206262Z"} +2026/03/22 07:06:27 [transform_engine] {"stage_name":"transform_engine","events_processed":129,"events_dropped":0,"avg_latency_ms":306.61968299431226,"throughput_eps":0,"last_update":"2026-03-22T07:06:22.479234306Z"} +2026/03/22 07:06:27 ───────────────────────────────────────────────── +2026/03/22 07:06:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:06:32 [log_collector] {"stage_name":"log_collector","events_processed":6989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1397.8,"last_update":"2026-03-22T07:06:27.368627079Z"} +2026/03/22 07:06:32 [metric_collector] {"stage_name":"metric_collector","events_processed":3899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":779.8,"last_update":"2026-03-22T07:06:27.369120053Z"} +2026/03/22 07:06:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:06:27.378537374Z"} +2026/03/22 07:06:32 [detection_layer] {"stage_name":"detection_layer","events_processed":129,"events_dropped":0,"avg_latency_ms":16.455461284039995,"throughput_eps":0,"last_update":"2026-03-22T07:06:27.479741726Z"} +2026/03/22 07:06:32 [transform_engine] {"stage_name":"transform_engine","events_processed":130,"events_dropped":0,"avg_latency_ms":266.8662859954498,"throughput_eps":0,"last_update":"2026-03-22T07:06:27.587621766Z"} +2026/03/22 07:06:32 ───────────────────────────────────────────────── +2026/03/22 07:06:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:06:37 [log_collector] {"stage_name":"log_collector","events_processed":6989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1397.8,"last_update":"2026-03-22T07:06:32.368097894Z"} +2026/03/22 07:06:37 [metric_collector] {"stage_name":"metric_collector","events_processed":3904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":780.8,"last_update":"2026-03-22T07:06:32.368688486Z"} +2026/03/22 07:06:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:06:32.377512531Z"} +2026/03/22 07:06:37 [detection_layer] {"stage_name":"detection_layer","events_processed":130,"events_dropped":0,"avg_latency_ms":16.571778627231996,"throughput_eps":0,"last_update":"2026-03-22T07:06:32.479759068Z"} +2026/03/22 07:06:37 [transform_engine] {"stage_name":"transform_engine","events_processed":130,"events_dropped":0,"avg_latency_ms":266.8662859954498,"throughput_eps":0,"last_update":"2026-03-22T07:06:32.479734752Z"} +2026/03/22 07:06:37 ───────────────────────────────────────────────── +2026/03/22 07:06:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:06:42 [log_collector] {"stage_name":"log_collector","events_processed":6989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1397.8,"last_update":"2026-03-22T07:06:37.368319659Z"} +2026/03/22 07:06:42 [metric_collector] {"stage_name":"metric_collector","events_processed":3909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":781.8,"last_update":"2026-03-22T07:06:37.368968151Z"} +2026/03/22 07:06:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1566,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:06:37.377808606Z"} +2026/03/22 07:06:42 [detection_layer] {"stage_name":"detection_layer","events_processed":130,"events_dropped":0,"avg_latency_ms":16.571778627231996,"throughput_eps":0,"last_update":"2026-03-22T07:06:37.479019862Z"} +2026/03/22 07:06:42 [transform_engine] {"stage_name":"transform_engine","events_processed":130,"events_dropped":0,"avg_latency_ms":266.8662859954498,"throughput_eps":0,"last_update":"2026-03-22T07:06:37.478962983Z"} +2026/03/22 07:06:42 ───────────────────────────────────────────────── +2026/03/22 07:06:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:06:47 [log_collector] {"stage_name":"log_collector","events_processed":6989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1397.8,"last_update":"2026-03-22T07:06:47.36876375Z"} +2026/03/22 07:06:47 [metric_collector] {"stage_name":"metric_collector","events_processed":3914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":782.8,"last_update":"2026-03-22T07:06:42.368258662Z"} +2026/03/22 07:06:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:06:42.378317371Z"} +2026/03/22 07:06:47 [detection_layer] {"stage_name":"detection_layer","events_processed":130,"events_dropped":0,"avg_latency_ms":16.571778627231996,"throughput_eps":0,"last_update":"2026-03-22T07:06:42.479568601Z"} +2026/03/22 07:06:47 [transform_engine] {"stage_name":"transform_engine","events_processed":130,"events_dropped":0,"avg_latency_ms":266.8662859954498,"throughput_eps":0,"last_update":"2026-03-22T07:06:42.479470002Z"} +2026/03/22 07:06:47 ───────────────────────────────────────────────── +2026/03/22 07:06:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:06:52 [log_collector] {"stage_name":"log_collector","events_processed":6989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1397.8,"last_update":"2026-03-22T07:06:52.367977956Z"} +2026/03/22 07:06:52 [metric_collector] {"stage_name":"metric_collector","events_processed":3919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":783.8,"last_update":"2026-03-22T07:06:47.368890383Z"} +2026/03/22 07:06:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1570,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:06:47.378252397Z"} +2026/03/22 07:06:52 [detection_layer] {"stage_name":"detection_layer","events_processed":130,"events_dropped":0,"avg_latency_ms":16.571778627231996,"throughput_eps":0,"last_update":"2026-03-22T07:06:47.479479912Z"} +2026/03/22 07:06:52 [transform_engine] {"stage_name":"transform_engine","events_processed":130,"events_dropped":0,"avg_latency_ms":266.8662859954498,"throughput_eps":0,"last_update":"2026-03-22T07:06:47.479589141Z"} +2026/03/22 07:06:52 ───────────────────────────────────────────────── +2026/03/22 07:06:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:06:57 [metric_collector] {"stage_name":"metric_collector","events_processed":3924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":784.8,"last_update":"2026-03-22T07:06:52.368821983Z"} +2026/03/22 07:06:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1572,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:06:52.377472935Z"} +2026/03/22 07:06:57 [detection_layer] {"stage_name":"detection_layer","events_processed":130,"events_dropped":0,"avg_latency_ms":16.571778627231996,"throughput_eps":0,"last_update":"2026-03-22T07:06:52.479751091Z"} +2026/03/22 07:06:57 [transform_engine] {"stage_name":"transform_engine","events_processed":130,"events_dropped":0,"avg_latency_ms":266.8662859954498,"throughput_eps":0,"last_update":"2026-03-22T07:06:52.479695114Z"} +2026/03/22 07:06:57 [log_collector] {"stage_name":"log_collector","events_processed":6989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1397.8,"last_update":"2026-03-22T07:06:57.368576736Z"} +2026/03/22 07:06:57 ───────────────────────────────────────────────── +2026/03/22 07:07:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:07:02 [transform_engine] {"stage_name":"transform_engine","events_processed":131,"events_dropped":0,"avg_latency_ms":226.72665059635986,"throughput_eps":0,"last_update":"2026-03-22T07:06:57.545090024Z"} +2026/03/22 07:07:02 [log_collector] {"stage_name":"log_collector","events_processed":6989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1397.8,"last_update":"2026-03-22T07:06:57.368576736Z"} +2026/03/22 07:07:02 [metric_collector] {"stage_name":"metric_collector","events_processed":3928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":785.6,"last_update":"2026-03-22T07:06:57.368681256Z"} +2026/03/22 07:07:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:06:57.37787548Z"} +2026/03/22 07:07:02 [detection_layer] {"stage_name":"detection_layer","events_processed":130,"events_dropped":0,"avg_latency_ms":16.571778627231996,"throughput_eps":0,"last_update":"2026-03-22T07:06:57.479516154Z"} +2026/03/22 07:07:02 ───────────────────────────────────────────────── +2026/03/22 07:07:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:07:07 [metric_collector] {"stage_name":"metric_collector","events_processed":3934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":786.8,"last_update":"2026-03-22T07:07:02.368935498Z"} +2026/03/22 07:07:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1576,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:07:02.378940875Z"} +2026/03/22 07:07:07 [detection_layer] {"stage_name":"detection_layer","events_processed":131,"events_dropped":0,"avg_latency_ms":17.189327101785597,"throughput_eps":0,"last_update":"2026-03-22T07:07:02.479152952Z"} +2026/03/22 07:07:07 [transform_engine] {"stage_name":"transform_engine","events_processed":131,"events_dropped":0,"avg_latency_ms":226.72665059635986,"throughput_eps":0,"last_update":"2026-03-22T07:07:02.479170676Z"} +2026/03/22 07:07:07 [log_collector] {"stage_name":"log_collector","events_processed":6989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1397.8,"last_update":"2026-03-22T07:07:02.368497039Z"} +2026/03/22 07:07:07 ───────────────────────────────────────────────── +2026/03/22 07:07:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:07:12 [log_collector] {"stage_name":"log_collector","events_processed":6989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1397.8,"last_update":"2026-03-22T07:07:12.368551468Z"} +2026/03/22 07:07:12 [metric_collector] {"stage_name":"metric_collector","events_processed":3939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":787.8,"last_update":"2026-03-22T07:07:07.369134246Z"} +2026/03/22 07:07:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:07:07.380741753Z"} +2026/03/22 07:07:12 [detection_layer] {"stage_name":"detection_layer","events_processed":131,"events_dropped":0,"avg_latency_ms":17.189327101785597,"throughput_eps":0,"last_update":"2026-03-22T07:07:07.480038445Z"} +2026/03/22 07:07:12 [transform_engine] {"stage_name":"transform_engine","events_processed":131,"events_dropped":0,"avg_latency_ms":226.72665059635986,"throughput_eps":0,"last_update":"2026-03-22T07:07:07.47888759Z"} +2026/03/22 07:07:12 ───────────────────────────────────────────────── +Saved state: 11 clusters, 6990 messages, reason: none +2026/03/22 07:07:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:07:17 [log_collector] {"stage_name":"log_collector","events_processed":6989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1397.8,"last_update":"2026-03-22T07:07:12.368551468Z"} +2026/03/22 07:07:17 [metric_collector] {"stage_name":"metric_collector","events_processed":3944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":788.8,"last_update":"2026-03-22T07:07:12.369049913Z"} +2026/03/22 07:07:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1580,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:07:12.379099976Z"} +2026/03/22 07:07:17 [detection_layer] {"stage_name":"detection_layer","events_processed":131,"events_dropped":0,"avg_latency_ms":17.189327101785597,"throughput_eps":0,"last_update":"2026-03-22T07:07:12.479513327Z"} +2026/03/22 07:07:17 [transform_engine] {"stage_name":"transform_engine","events_processed":131,"events_dropped":0,"avg_latency_ms":226.72665059635986,"throughput_eps":0,"last_update":"2026-03-22T07:07:12.479398006Z"} +2026/03/22 07:07:17 ───────────────────────────────────────────────── +2026/03/22 07:07:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:07:22 [metric_collector] {"stage_name":"metric_collector","events_processed":3949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":789.8,"last_update":"2026-03-22T07:07:17.368770339Z"} +2026/03/22 07:07:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:07:17.375575286Z"} +2026/03/22 07:07:22 [detection_layer] {"stage_name":"detection_layer","events_processed":131,"events_dropped":0,"avg_latency_ms":17.189327101785597,"throughput_eps":0,"last_update":"2026-03-22T07:07:17.479857628Z"} +2026/03/22 07:07:22 [transform_engine] {"stage_name":"transform_engine","events_processed":131,"events_dropped":0,"avg_latency_ms":226.72665059635986,"throughput_eps":0,"last_update":"2026-03-22T07:07:17.479834574Z"} +2026/03/22 07:07:22 [log_collector] {"stage_name":"log_collector","events_processed":6994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1398.8,"last_update":"2026-03-22T07:07:17.367949858Z"} +2026/03/22 07:07:22 ───────────────────────────────────────────────── +2026/03/22 07:07:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:07:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:07:22.376674525Z"} +2026/03/22 07:07:27 [detection_layer] {"stage_name":"detection_layer","events_processed":131,"events_dropped":0,"avg_latency_ms":17.189327101785597,"throughput_eps":0,"last_update":"2026-03-22T07:07:22.479978202Z"} +2026/03/22 07:07:27 [transform_engine] {"stage_name":"transform_engine","events_processed":131,"events_dropped":0,"avg_latency_ms":226.72665059635986,"throughput_eps":0,"last_update":"2026-03-22T07:07:22.478878495Z"} +2026/03/22 07:07:27 [log_collector] {"stage_name":"log_collector","events_processed":6994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1398.8,"last_update":"2026-03-22T07:07:27.368112139Z"} +2026/03/22 07:07:27 [metric_collector] {"stage_name":"metric_collector","events_processed":3954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":790.8,"last_update":"2026-03-22T07:07:22.368140827Z"} +2026/03/22 07:07:27 ───────────────────────────────────────────────── +2026/03/22 07:07:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:07:32 [detection_layer] {"stage_name":"detection_layer","events_processed":131,"events_dropped":0,"avg_latency_ms":17.189327101785597,"throughput_eps":0,"last_update":"2026-03-22T07:07:27.479965073Z"} +2026/03/22 07:07:32 [transform_engine] {"stage_name":"transform_engine","events_processed":132,"events_dropped":0,"avg_latency_ms":849.6616002770879,"throughput_eps":0,"last_update":"2026-03-22T07:07:30.820278419Z"} +2026/03/22 07:07:32 [log_collector] {"stage_name":"log_collector","events_processed":6994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1398.8,"last_update":"2026-03-22T07:07:27.368112139Z"} +2026/03/22 07:07:32 [metric_collector] {"stage_name":"metric_collector","events_processed":3959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":791.8,"last_update":"2026-03-22T07:07:27.368456209Z"} +2026/03/22 07:07:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1586,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:07:27.375720364Z"} +2026/03/22 07:07:32 ───────────────────────────────────────────────── +2026/03/22 07:07:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:07:37 [detection_layer] {"stage_name":"detection_layer","events_processed":132,"events_dropped":0,"avg_latency_ms":16.09781048142848,"throughput_eps":0,"last_update":"2026-03-22T07:07:32.479705847Z"} +2026/03/22 07:07:37 [transform_engine] {"stage_name":"transform_engine","events_processed":132,"events_dropped":0,"avg_latency_ms":849.6616002770879,"throughput_eps":0,"last_update":"2026-03-22T07:07:32.479387108Z"} +2026/03/22 07:07:37 [log_collector] {"stage_name":"log_collector","events_processed":6994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1398.8,"last_update":"2026-03-22T07:07:32.367948598Z"} +2026/03/22 07:07:37 [metric_collector] {"stage_name":"metric_collector","events_processed":3964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":792.8,"last_update":"2026-03-22T07:07:32.368190631Z"} +2026/03/22 07:07:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1588,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:07:32.386104518Z"} +2026/03/22 07:07:37 ───────────────────────────────────────────────── +2026/03/22 07:07:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:07:42 [detection_layer] {"stage_name":"detection_layer","events_processed":132,"events_dropped":0,"avg_latency_ms":16.09781048142848,"throughput_eps":0,"last_update":"2026-03-22T07:07:37.479744344Z"} +2026/03/22 07:07:42 [transform_engine] {"stage_name":"transform_engine","events_processed":132,"events_dropped":0,"avg_latency_ms":849.6616002770879,"throughput_eps":0,"last_update":"2026-03-22T07:07:37.479727842Z"} +2026/03/22 07:07:42 [log_collector] {"stage_name":"log_collector","events_processed":6994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1398.8,"last_update":"2026-03-22T07:07:42.368441963Z"} +2026/03/22 07:07:42 [metric_collector] {"stage_name":"metric_collector","events_processed":3969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":793.8,"last_update":"2026-03-22T07:07:37.368598796Z"} +2026/03/22 07:07:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:07:37.375497672Z"} +2026/03/22 07:07:42 ───────────────────────────────────────────────── +2026/03/22 07:07:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:07:47 [detection_layer] {"stage_name":"detection_layer","events_processed":132,"events_dropped":0,"avg_latency_ms":16.09781048142848,"throughput_eps":0,"last_update":"2026-03-22T07:07:42.479022688Z"} +2026/03/22 07:07:47 [transform_engine] {"stage_name":"transform_engine","events_processed":132,"events_dropped":0,"avg_latency_ms":849.6616002770879,"throughput_eps":0,"last_update":"2026-03-22T07:07:42.479040943Z"} +2026/03/22 07:07:47 [log_collector] {"stage_name":"log_collector","events_processed":6994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1398.8,"last_update":"2026-03-22T07:07:42.368441963Z"} +2026/03/22 07:07:47 [metric_collector] {"stage_name":"metric_collector","events_processed":3974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":794.8,"last_update":"2026-03-22T07:07:42.368807052Z"} +2026/03/22 07:07:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1592,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:07:42.375891934Z"} +2026/03/22 07:07:47 ───────────────────────────────────────────────── +2026/03/22 07:07:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:07:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:07:47.377118776Z"} +2026/03/22 07:07:52 [detection_layer] {"stage_name":"detection_layer","events_processed":132,"events_dropped":0,"avg_latency_ms":16.09781048142848,"throughput_eps":0,"last_update":"2026-03-22T07:07:47.479310461Z"} +2026/03/22 07:07:52 [transform_engine] {"stage_name":"transform_engine","events_processed":132,"events_dropped":0,"avg_latency_ms":849.6616002770879,"throughput_eps":0,"last_update":"2026-03-22T07:07:47.47953978Z"} +2026/03/22 07:07:52 [log_collector] {"stage_name":"log_collector","events_processed":6994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1398.8,"last_update":"2026-03-22T07:07:52.368531061Z"} +2026/03/22 07:07:52 [metric_collector] {"stage_name":"metric_collector","events_processed":3979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":795.8,"last_update":"2026-03-22T07:07:47.368461642Z"} +2026/03/22 07:07:52 ───────────────────────────────────────────────── +2026/03/22 07:07:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:07:57 [log_collector] {"stage_name":"log_collector","events_processed":6994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1398.8,"last_update":"2026-03-22T07:07:57.368011957Z"} +2026/03/22 07:07:57 [metric_collector] {"stage_name":"metric_collector","events_processed":3984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":796.8,"last_update":"2026-03-22T07:07:52.368885079Z"} +2026/03/22 07:07:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:07:52.378573509Z"} +2026/03/22 07:07:57 [detection_layer] {"stage_name":"detection_layer","events_processed":132,"events_dropped":0,"avg_latency_ms":16.09781048142848,"throughput_eps":0,"last_update":"2026-03-22T07:07:52.479778111Z"} +2026/03/22 07:07:57 [transform_engine] {"stage_name":"transform_engine","events_processed":132,"events_dropped":0,"avg_latency_ms":849.6616002770879,"throughput_eps":0,"last_update":"2026-03-22T07:07:52.479816065Z"} +2026/03/22 07:07:57 ───────────────────────────────────────────────── +2026/03/22 07:08:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:08:02 [transform_engine] {"stage_name":"transform_engine","events_processed":133,"events_dropped":0,"avg_latency_ms":1004.8342216216704,"throughput_eps":0,"last_update":"2026-03-22T07:07:59.104543585Z"} +2026/03/22 07:08:02 [log_collector] {"stage_name":"log_collector","events_processed":7005,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1401,"last_update":"2026-03-22T07:08:02.368636439Z"} +2026/03/22 07:08:02 [metric_collector] {"stage_name":"metric_collector","events_processed":3989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":797.8,"last_update":"2026-03-22T07:07:57.36827956Z"} +2026/03/22 07:08:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:07:57.374834587Z"} +2026/03/22 07:08:02 [detection_layer] {"stage_name":"detection_layer","events_processed":132,"events_dropped":0,"avg_latency_ms":16.09781048142848,"throughput_eps":0,"last_update":"2026-03-22T07:07:57.47910339Z"} +2026/03/22 07:08:02 ───────────────────────────────────────────────── +2026/03/22 07:08:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:08:07 [log_collector] {"stage_name":"log_collector","events_processed":7051,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1410.2,"last_update":"2026-03-22T07:08:07.368546877Z"} +2026/03/22 07:08:07 [metric_collector] {"stage_name":"metric_collector","events_processed":3994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":798.8,"last_update":"2026-03-22T07:08:02.368997461Z"} +2026/03/22 07:08:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:08:02.376981165Z"} +2026/03/22 07:08:07 [detection_layer] {"stage_name":"detection_layer","events_processed":133,"events_dropped":0,"avg_latency_ms":15.427197185142782,"throughput_eps":0,"last_update":"2026-03-22T07:08:02.479217021Z"} +2026/03/22 07:08:07 [transform_engine] {"stage_name":"transform_engine","events_processed":133,"events_dropped":0,"avg_latency_ms":1004.8342216216704,"throughput_eps":0,"last_update":"2026-03-22T07:08:02.479229967Z"} +2026/03/22 07:08:07 ───────────────────────────────────────────────── +2026/03/22 07:08:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:08:12 [log_collector] {"stage_name":"log_collector","events_processed":7184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1436.8,"last_update":"2026-03-22T07:08:12.368119474Z"} +2026/03/22 07:08:12 [metric_collector] {"stage_name":"metric_collector","events_processed":3999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":799.8,"last_update":"2026-03-22T07:08:07.368820722Z"} +2026/03/22 07:08:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1602,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:08:07.379287743Z"} +2026/03/22 07:08:12 [detection_layer] {"stage_name":"detection_layer","events_processed":133,"events_dropped":0,"avg_latency_ms":15.427197185142782,"throughput_eps":0,"last_update":"2026-03-22T07:08:07.479111398Z"} +2026/03/22 07:08:12 [transform_engine] {"stage_name":"transform_engine","events_processed":133,"events_dropped":0,"avg_latency_ms":1004.8342216216704,"throughput_eps":0,"last_update":"2026-03-22T07:08:07.47909105Z"} +2026/03/22 07:08:12 ───────────────────────────────────────────────── +Saved state: 11 clusters, 7267 messages, reason: none +2026/03/22 07:08:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:08:17 [log_collector] {"stage_name":"log_collector","events_processed":7184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1436.8,"last_update":"2026-03-22T07:08:12.368119474Z"} +2026/03/22 07:08:17 [metric_collector] {"stage_name":"metric_collector","events_processed":4004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":800.8,"last_update":"2026-03-22T07:08:12.368593522Z"} +2026/03/22 07:08:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:08:12.37646463Z"} +2026/03/22 07:08:17 [detection_layer] {"stage_name":"detection_layer","events_processed":133,"events_dropped":0,"avg_latency_ms":15.427197185142782,"throughput_eps":0,"last_update":"2026-03-22T07:08:12.479827434Z"} +2026/03/22 07:08:17 [transform_engine] {"stage_name":"transform_engine","events_processed":133,"events_dropped":0,"avg_latency_ms":1004.8342216216704,"throughput_eps":0,"last_update":"2026-03-22T07:08:12.479870968Z"} +2026/03/22 07:08:17 ───────────────────────────────────────────────── +2026/03/22 07:08:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:08:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:08:17.37467303Z"} +2026/03/22 07:08:22 [detection_layer] {"stage_name":"detection_layer","events_processed":133,"events_dropped":0,"avg_latency_ms":15.427197185142782,"throughput_eps":0,"last_update":"2026-03-22T07:08:17.47933869Z"} +2026/03/22 07:08:22 [transform_engine] {"stage_name":"transform_engine","events_processed":133,"events_dropped":0,"avg_latency_ms":1004.8342216216704,"throughput_eps":0,"last_update":"2026-03-22T07:08:17.47939069Z"} +2026/03/22 07:08:22 [log_collector] {"stage_name":"log_collector","events_processed":7349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1469.8,"last_update":"2026-03-22T07:08:17.368222393Z"} +2026/03/22 07:08:22 [metric_collector] {"stage_name":"metric_collector","events_processed":4009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":801.8,"last_update":"2026-03-22T07:08:17.368396567Z"} +2026/03/22 07:08:22 ───────────────────────────────────────────────── +2026/03/22 07:08:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:08:27 [transform_engine] {"stage_name":"transform_engine","events_processed":133,"events_dropped":0,"avg_latency_ms":1004.8342216216704,"throughput_eps":0,"last_update":"2026-03-22T07:08:22.479634523Z"} +2026/03/22 07:08:27 [log_collector] {"stage_name":"log_collector","events_processed":7355,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1471,"last_update":"2026-03-22T07:08:22.368378839Z"} +2026/03/22 07:08:27 [metric_collector] {"stage_name":"metric_collector","events_processed":4014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":802.8,"last_update":"2026-03-22T07:08:22.368736836Z"} +2026/03/22 07:08:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:08:22.377236788Z"} +2026/03/22 07:08:27 [detection_layer] {"stage_name":"detection_layer","events_processed":133,"events_dropped":0,"avg_latency_ms":15.427197185142782,"throughput_eps":0,"last_update":"2026-03-22T07:08:22.479666584Z"} +2026/03/22 07:08:27 ───────────────────────────────────────────────── +2026/03/22 07:08:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:08:32 [detection_layer] {"stage_name":"detection_layer","events_processed":133,"events_dropped":0,"avg_latency_ms":15.427197185142782,"throughput_eps":0,"last_update":"2026-03-22T07:08:27.479257894Z"} +2026/03/22 07:08:32 [transform_engine] {"stage_name":"transform_engine","events_processed":134,"events_dropped":0,"avg_latency_ms":827.6652366973364,"throughput_eps":0,"last_update":"2026-03-22T07:08:27.598398502Z"} +2026/03/22 07:08:32 [log_collector] {"stage_name":"log_collector","events_processed":7355,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1471,"last_update":"2026-03-22T07:08:27.368860124Z"} +2026/03/22 07:08:32 [metric_collector] {"stage_name":"metric_collector","events_processed":4019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":803.8,"last_update":"2026-03-22T07:08:27.369474291Z"} +2026/03/22 07:08:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:08:27.377990214Z"} +2026/03/22 07:08:32 ───────────────────────────────────────────────── +2026/03/22 07:08:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:08:37 [log_collector] {"stage_name":"log_collector","events_processed":7358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1471.6,"last_update":"2026-03-22T07:08:32.367949268Z"} +2026/03/22 07:08:37 [metric_collector] {"stage_name":"metric_collector","events_processed":4024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":804.8,"last_update":"2026-03-22T07:08:32.368382349Z"} +2026/03/22 07:08:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:08:32.375229254Z"} +2026/03/22 07:08:37 [detection_layer] {"stage_name":"detection_layer","events_processed":134,"events_dropped":0,"avg_latency_ms":16.128956548114225,"throughput_eps":0,"last_update":"2026-03-22T07:08:32.479442787Z"} +2026/03/22 07:08:37 [transform_engine] {"stage_name":"transform_engine","events_processed":134,"events_dropped":0,"avg_latency_ms":827.6652366973364,"throughput_eps":0,"last_update":"2026-03-22T07:08:32.479467925Z"} +2026/03/22 07:08:37 ───────────────────────────────────────────────── +2026/03/22 07:08:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:08:42 [log_collector] {"stage_name":"log_collector","events_processed":7358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1471.6,"last_update":"2026-03-22T07:08:37.368044447Z"} +2026/03/22 07:08:42 [metric_collector] {"stage_name":"metric_collector","events_processed":4029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":805.8,"last_update":"2026-03-22T07:08:37.368462859Z"} +2026/03/22 07:08:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:08:37.375381792Z"} +2026/03/22 07:08:42 [detection_layer] {"stage_name":"detection_layer","events_processed":134,"events_dropped":0,"avg_latency_ms":16.128956548114225,"throughput_eps":0,"last_update":"2026-03-22T07:08:37.479027878Z"} +2026/03/22 07:08:42 [transform_engine] {"stage_name":"transform_engine","events_processed":134,"events_dropped":0,"avg_latency_ms":827.6652366973364,"throughput_eps":0,"last_update":"2026-03-22T07:08:37.479011055Z"} +2026/03/22 07:08:42 ───────────────────────────────────────────────── +2026/03/22 07:08:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:08:47 [metric_collector] {"stage_name":"metric_collector","events_processed":4034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":806.8,"last_update":"2026-03-22T07:08:42.368304899Z"} +2026/03/22 07:08:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:08:42.389749539Z"} +2026/03/22 07:08:47 [detection_layer] {"stage_name":"detection_layer","events_processed":134,"events_dropped":0,"avg_latency_ms":16.128956548114225,"throughput_eps":0,"last_update":"2026-03-22T07:08:42.479625085Z"} +2026/03/22 07:08:47 [transform_engine] {"stage_name":"transform_engine","events_processed":134,"events_dropped":0,"avg_latency_ms":827.6652366973364,"throughput_eps":0,"last_update":"2026-03-22T07:08:42.479662346Z"} +2026/03/22 07:08:47 [log_collector] {"stage_name":"log_collector","events_processed":7375,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1475,"last_update":"2026-03-22T07:08:42.368465578Z"} +2026/03/22 07:08:47 ───────────────────────────────────────────────── +2026/03/22 07:08:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:08:52 [metric_collector] {"stage_name":"metric_collector","events_processed":4039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":807.8,"last_update":"2026-03-22T07:08:47.368954935Z"} +2026/03/22 07:08:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:08:47.377446922Z"} +2026/03/22 07:08:52 [detection_layer] {"stage_name":"detection_layer","events_processed":134,"events_dropped":0,"avg_latency_ms":16.128956548114225,"throughput_eps":0,"last_update":"2026-03-22T07:08:47.479687113Z"} +2026/03/22 07:08:52 [transform_engine] {"stage_name":"transform_engine","events_processed":134,"events_dropped":0,"avg_latency_ms":827.6652366973364,"throughput_eps":0,"last_update":"2026-03-22T07:08:47.479716661Z"} +2026/03/22 07:08:52 [log_collector] {"stage_name":"log_collector","events_processed":7385,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1477,"last_update":"2026-03-22T07:08:47.368716779Z"} +2026/03/22 07:08:52 ───────────────────────────────────────────────── +2026/03/22 07:08:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:08:57 [detection_layer] {"stage_name":"detection_layer","events_processed":134,"events_dropped":0,"avg_latency_ms":16.128956548114225,"throughput_eps":0,"last_update":"2026-03-22T07:08:52.479691718Z"} +2026/03/22 07:08:57 [transform_engine] {"stage_name":"transform_engine","events_processed":134,"events_dropped":0,"avg_latency_ms":827.6652366973364,"throughput_eps":0,"last_update":"2026-03-22T07:08:52.479656329Z"} +2026/03/22 07:08:57 [log_collector] {"stage_name":"log_collector","events_processed":7385,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1477,"last_update":"2026-03-22T07:08:52.368010411Z"} +2026/03/22 07:08:57 [metric_collector] {"stage_name":"metric_collector","events_processed":4044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":808.8,"last_update":"2026-03-22T07:08:52.368780326Z"} +2026/03/22 07:08:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1620,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:08:52.377447529Z"} +2026/03/22 07:08:57 ───────────────────────────────────────────────── +2026/03/22 07:09:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:09:02 [metric_collector] {"stage_name":"metric_collector","events_processed":4049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":809.8,"last_update":"2026-03-22T07:08:57.368511996Z"} +2026/03/22 07:09:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1622,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:08:57.377468944Z"} +2026/03/22 07:09:02 [detection_layer] {"stage_name":"detection_layer","events_processed":134,"events_dropped":0,"avg_latency_ms":16.128956548114225,"throughput_eps":0,"last_update":"2026-03-22T07:08:57.479673826Z"} +2026/03/22 07:09:02 [transform_engine] {"stage_name":"transform_engine","events_processed":135,"events_dropped":0,"avg_latency_ms":684.1239045578692,"throughput_eps":0,"last_update":"2026-03-22T07:08:57.589760908Z"} +2026/03/22 07:09:02 [log_collector] {"stage_name":"log_collector","events_processed":7385,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1477,"last_update":"2026-03-22T07:08:57.36810137Z"} +2026/03/22 07:09:02 ───────────────────────────────────────────────── +2026/03/22 07:09:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:09:07 [log_collector] {"stage_name":"log_collector","events_processed":7385,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1477,"last_update":"2026-03-22T07:09:02.368261658Z"} +2026/03/22 07:09:07 [metric_collector] {"stage_name":"metric_collector","events_processed":4054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":810.8,"last_update":"2026-03-22T07:09:02.368672455Z"} +2026/03/22 07:09:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:09:02.378721615Z"} +2026/03/22 07:09:07 [detection_layer] {"stage_name":"detection_layer","events_processed":135,"events_dropped":0,"avg_latency_ms":16.60061383849138,"throughput_eps":0,"last_update":"2026-03-22T07:09:02.478968877Z"} +2026/03/22 07:09:07 [transform_engine] {"stage_name":"transform_engine","events_processed":135,"events_dropped":0,"avg_latency_ms":684.1239045578692,"throughput_eps":0,"last_update":"2026-03-22T07:09:02.478862122Z"} +2026/03/22 07:09:07 ───────────────────────────────────────────────── +2026/03/22 07:09:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:09:12 [detection_layer] {"stage_name":"detection_layer","events_processed":135,"events_dropped":0,"avg_latency_ms":16.60061383849138,"throughput_eps":0,"last_update":"2026-03-22T07:09:07.479245576Z"} +2026/03/22 07:09:12 [transform_engine] {"stage_name":"transform_engine","events_processed":135,"events_dropped":0,"avg_latency_ms":684.1239045578692,"throughput_eps":0,"last_update":"2026-03-22T07:09:07.479322223Z"} +2026/03/22 07:09:12 [log_collector] {"stage_name":"log_collector","events_processed":7385,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1477,"last_update":"2026-03-22T07:09:07.368009945Z"} +2026/03/22 07:09:12 [metric_collector] {"stage_name":"metric_collector","events_processed":4059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":811.8,"last_update":"2026-03-22T07:09:07.36849832Z"} +2026/03/22 07:09:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:09:07.377024303Z"} +2026/03/22 07:09:12 ───────────────────────────────────────────────── +2026/03/22 07:09:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:09:17 [log_collector] {"stage_name":"log_collector","events_processed":7385,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1477,"last_update":"2026-03-22T07:09:12.368796909Z"} +2026/03/22 07:09:17 [metric_collector] {"stage_name":"metric_collector","events_processed":4064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":812.8,"last_update":"2026-03-22T07:09:12.369228136Z"} +2026/03/22 07:09:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:09:12.377172414Z"} +2026/03/22 07:09:17 [detection_layer] {"stage_name":"detection_layer","events_processed":135,"events_dropped":0,"avg_latency_ms":16.60061383849138,"throughput_eps":0,"last_update":"2026-03-22T07:09:12.47956808Z"} +2026/03/22 07:09:17 [transform_engine] {"stage_name":"transform_engine","events_processed":135,"events_dropped":0,"avg_latency_ms":684.1239045578692,"throughput_eps":0,"last_update":"2026-03-22T07:09:12.479600943Z"} +2026/03/22 07:09:17 ───────────────────────────────────────────────── +2026/03/22 07:09:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:09:22 [log_collector] {"stage_name":"log_collector","events_processed":7385,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1477,"last_update":"2026-03-22T07:09:17.368986397Z"} +2026/03/22 07:09:22 [metric_collector] {"stage_name":"metric_collector","events_processed":4069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":813.8,"last_update":"2026-03-22T07:09:17.369378948Z"} +2026/03/22 07:09:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:09:17.37882848Z"} +2026/03/22 07:09:22 [detection_layer] {"stage_name":"detection_layer","events_processed":135,"events_dropped":0,"avg_latency_ms":16.60061383849138,"throughput_eps":0,"last_update":"2026-03-22T07:09:17.47895575Z"} +2026/03/22 07:09:22 [transform_engine] {"stage_name":"transform_engine","events_processed":135,"events_dropped":0,"avg_latency_ms":684.1239045578692,"throughput_eps":0,"last_update":"2026-03-22T07:09:17.478946563Z"} +2026/03/22 07:09:22 ───────────────────────────────────────────────── +2026/03/22 07:09:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:09:27 [log_collector] {"stage_name":"log_collector","events_processed":7385,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1477,"last_update":"2026-03-22T07:09:22.368762243Z"} +2026/03/22 07:09:27 [metric_collector] {"stage_name":"metric_collector","events_processed":4074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":814.8,"last_update":"2026-03-22T07:09:22.369086023Z"} +2026/03/22 07:09:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1632,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:09:22.379197613Z"} +2026/03/22 07:09:27 [detection_layer] {"stage_name":"detection_layer","events_processed":135,"events_dropped":0,"avg_latency_ms":16.60061383849138,"throughput_eps":0,"last_update":"2026-03-22T07:09:22.479591804Z"} +2026/03/22 07:09:27 [transform_engine] {"stage_name":"transform_engine","events_processed":135,"events_dropped":0,"avg_latency_ms":684.1239045578692,"throughput_eps":0,"last_update":"2026-03-22T07:09:22.479559763Z"} +2026/03/22 07:09:27 ───────────────────────────────────────────────── +2026/03/22 07:09:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:09:32 [log_collector] {"stage_name":"log_collector","events_processed":7385,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1477,"last_update":"2026-03-22T07:09:27.368802413Z"} +2026/03/22 07:09:32 [metric_collector] {"stage_name":"metric_collector","events_processed":4079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":815.8,"last_update":"2026-03-22T07:09:27.369065938Z"} +2026/03/22 07:09:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:09:27.377968912Z"} +2026/03/22 07:09:32 [detection_layer] {"stage_name":"detection_layer","events_processed":135,"events_dropped":0,"avg_latency_ms":16.60061383849138,"throughput_eps":0,"last_update":"2026-03-22T07:09:27.479179416Z"} +2026/03/22 07:09:32 [transform_engine] {"stage_name":"transform_engine","events_processed":136,"events_dropped":0,"avg_latency_ms":558.4112916462954,"throughput_eps":0,"last_update":"2026-03-22T07:09:27.534830089Z"} +2026/03/22 07:09:32 ───────────────────────────────────────────────── +2026/03/22 07:09:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:09:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:09:32.378674184Z"} +2026/03/22 07:09:37 [detection_layer] {"stage_name":"detection_layer","events_processed":136,"events_dropped":0,"avg_latency_ms":17.864904870793104,"throughput_eps":0,"last_update":"2026-03-22T07:09:32.478994713Z"} +2026/03/22 07:09:37 [transform_engine] {"stage_name":"transform_engine","events_processed":136,"events_dropped":0,"avg_latency_ms":558.4112916462954,"throughput_eps":0,"last_update":"2026-03-22T07:09:32.478874563Z"} +2026/03/22 07:09:37 [log_collector] {"stage_name":"log_collector","events_processed":7385,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1477,"last_update":"2026-03-22T07:09:37.368040486Z"} +2026/03/22 07:09:37 [metric_collector] {"stage_name":"metric_collector","events_processed":4084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":816.8,"last_update":"2026-03-22T07:09:32.368574528Z"} +2026/03/22 07:09:37 ───────────────────────────────────────────────── +2026/03/22 07:09:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:09:42 [detection_layer] {"stage_name":"detection_layer","events_processed":136,"events_dropped":0,"avg_latency_ms":17.864904870793104,"throughput_eps":0,"last_update":"2026-03-22T07:09:37.47999426Z"} +2026/03/22 07:09:42 [transform_engine] {"stage_name":"transform_engine","events_processed":136,"events_dropped":0,"avg_latency_ms":558.4112916462954,"throughput_eps":0,"last_update":"2026-03-22T07:09:37.479957579Z"} +2026/03/22 07:09:42 [log_collector] {"stage_name":"log_collector","events_processed":7385,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1477,"last_update":"2026-03-22T07:09:37.368040486Z"} +2026/03/22 07:09:42 [metric_collector] {"stage_name":"metric_collector","events_processed":4089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":817.8,"last_update":"2026-03-22T07:09:37.368572505Z"} +2026/03/22 07:09:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:09:37.377581743Z"} +2026/03/22 07:09:42 ───────────────────────────────────────────────── +Saved state: 11 clusters, 7386 messages, reason: none +2026/03/22 07:09:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:09:47 [transform_engine] {"stage_name":"transform_engine","events_processed":136,"events_dropped":0,"avg_latency_ms":558.4112916462954,"throughput_eps":0,"last_update":"2026-03-22T07:09:42.479399901Z"} +2026/03/22 07:09:47 [log_collector] {"stage_name":"log_collector","events_processed":7388,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1477.6,"last_update":"2026-03-22T07:09:47.36848082Z"} +2026/03/22 07:09:47 [metric_collector] {"stage_name":"metric_collector","events_processed":4094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":818.8,"last_update":"2026-03-22T07:09:42.368677957Z"} +2026/03/22 07:09:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1640,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:09:42.377159173Z"} +2026/03/22 07:09:47 [detection_layer] {"stage_name":"detection_layer","events_processed":136,"events_dropped":0,"avg_latency_ms":17.864904870793104,"throughput_eps":0,"last_update":"2026-03-22T07:09:42.479374112Z"} +2026/03/22 07:09:47 ───────────────────────────────────────────────── +2026/03/22 07:09:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:09:52 [detection_layer] {"stage_name":"detection_layer","events_processed":136,"events_dropped":0,"avg_latency_ms":17.864904870793104,"throughput_eps":0,"last_update":"2026-03-22T07:09:47.479707841Z"} +2026/03/22 07:09:52 [transform_engine] {"stage_name":"transform_engine","events_processed":136,"events_dropped":0,"avg_latency_ms":558.4112916462954,"throughput_eps":0,"last_update":"2026-03-22T07:09:47.479755883Z"} +2026/03/22 07:09:52 [log_collector] {"stage_name":"log_collector","events_processed":7388,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1477.6,"last_update":"2026-03-22T07:09:47.36848082Z"} +2026/03/22 07:09:52 [metric_collector] {"stage_name":"metric_collector","events_processed":4099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":819.8,"last_update":"2026-03-22T07:09:47.368789773Z"} +2026/03/22 07:09:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:09:47.377530245Z"} +2026/03/22 07:09:52 ───────────────────────────────────────────────── +2026/03/22 07:09:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:09:57 [log_collector] {"stage_name":"log_collector","events_processed":7399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1479.8,"last_update":"2026-03-22T07:09:52.368328206Z"} +2026/03/22 07:09:57 [metric_collector] {"stage_name":"metric_collector","events_processed":4104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":820.8,"last_update":"2026-03-22T07:09:52.368875084Z"} +2026/03/22 07:09:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:09:52.378545358Z"} +2026/03/22 07:09:57 [detection_layer] {"stage_name":"detection_layer","events_processed":136,"events_dropped":0,"avg_latency_ms":17.864904870793104,"throughput_eps":0,"last_update":"2026-03-22T07:09:52.479770218Z"} +2026/03/22 07:09:57 [transform_engine] {"stage_name":"transform_engine","events_processed":136,"events_dropped":0,"avg_latency_ms":558.4112916462954,"throughput_eps":0,"last_update":"2026-03-22T07:09:52.479810426Z"} +2026/03/22 07:09:57 ───────────────────────────────────────────────── +2026/03/22 07:10:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:10:02 [log_collector] {"stage_name":"log_collector","events_processed":7399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1479.8,"last_update":"2026-03-22T07:09:57.368490987Z"} +2026/03/22 07:10:02 [metric_collector] {"stage_name":"metric_collector","events_processed":4108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":821.6,"last_update":"2026-03-22T07:09:57.368520474Z"} +2026/03/22 07:10:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1646,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:09:57.378619749Z"} +2026/03/22 07:10:02 [detection_layer] {"stage_name":"detection_layer","events_processed":136,"events_dropped":0,"avg_latency_ms":17.864904870793104,"throughput_eps":0,"last_update":"2026-03-22T07:09:57.479844228Z"} +2026/03/22 07:10:02 [transform_engine] {"stage_name":"transform_engine","events_processed":137,"events_dropped":0,"avg_latency_ms":468.8527061170363,"throughput_eps":0,"last_update":"2026-03-22T07:09:57.590490695Z"} +2026/03/22 07:10:02 ───────────────────────────────────────────────── +2026/03/22 07:10:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:10:07 [log_collector] {"stage_name":"log_collector","events_processed":7399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1479.8,"last_update":"2026-03-22T07:10:02.368819324Z"} +2026/03/22 07:10:07 [metric_collector] {"stage_name":"metric_collector","events_processed":4114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":822.8,"last_update":"2026-03-22T07:10:02.368935356Z"} +2026/03/22 07:10:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:10:02.385432718Z"} +2026/03/22 07:10:07 [detection_layer] {"stage_name":"detection_layer","events_processed":137,"events_dropped":0,"avg_latency_ms":17.969055496634486,"throughput_eps":0,"last_update":"2026-03-22T07:10:02.479688517Z"} +2026/03/22 07:10:07 [transform_engine] {"stage_name":"transform_engine","events_processed":137,"events_dropped":0,"avg_latency_ms":468.8527061170363,"throughput_eps":0,"last_update":"2026-03-22T07:10:02.479735457Z"} +2026/03/22 07:10:07 ───────────────────────────────────────────────── +2026/03/22 07:10:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:10:12 [log_collector] {"stage_name":"log_collector","events_processed":7399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1479.8,"last_update":"2026-03-22T07:10:07.367985668Z"} +2026/03/22 07:10:12 [metric_collector] {"stage_name":"metric_collector","events_processed":4119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":823.8,"last_update":"2026-03-22T07:10:07.368422435Z"} +2026/03/22 07:10:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1650,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:10:07.37807787Z"} +2026/03/22 07:10:12 [detection_layer] {"stage_name":"detection_layer","events_processed":137,"events_dropped":0,"avg_latency_ms":17.969055496634486,"throughput_eps":0,"last_update":"2026-03-22T07:10:07.479310595Z"} +2026/03/22 07:10:12 [transform_engine] {"stage_name":"transform_engine","events_processed":137,"events_dropped":0,"avg_latency_ms":468.8527061170363,"throughput_eps":0,"last_update":"2026-03-22T07:10:07.479263956Z"} +2026/03/22 07:10:12 ───────────────────────────────────────────────── +2026/03/22 07:10:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:10:17 [metric_collector] {"stage_name":"metric_collector","events_processed":4124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":824.8,"last_update":"2026-03-22T07:10:12.369542288Z"} +2026/03/22 07:10:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:10:12.378118866Z"} +2026/03/22 07:10:17 [detection_layer] {"stage_name":"detection_layer","events_processed":137,"events_dropped":0,"avg_latency_ms":17.969055496634486,"throughput_eps":0,"last_update":"2026-03-22T07:10:12.479377731Z"} +2026/03/22 07:10:17 [transform_engine] {"stage_name":"transform_engine","events_processed":137,"events_dropped":0,"avg_latency_ms":468.8527061170363,"throughput_eps":0,"last_update":"2026-03-22T07:10:12.47941901Z"} +2026/03/22 07:10:17 [log_collector] {"stage_name":"log_collector","events_processed":7399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1479.8,"last_update":"2026-03-22T07:10:12.369028915Z"} +2026/03/22 07:10:17 ───────────────────────────────────────────────── +2026/03/22 07:10:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:10:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:10:17.378939169Z"} +2026/03/22 07:10:22 [detection_layer] {"stage_name":"detection_layer","events_processed":137,"events_dropped":0,"avg_latency_ms":17.969055496634486,"throughput_eps":0,"last_update":"2026-03-22T07:10:17.479342193Z"} +2026/03/22 07:10:22 [transform_engine] {"stage_name":"transform_engine","events_processed":137,"events_dropped":0,"avg_latency_ms":468.8527061170363,"throughput_eps":0,"last_update":"2026-03-22T07:10:17.479173681Z"} +2026/03/22 07:10:22 [log_collector] {"stage_name":"log_collector","events_processed":7399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1479.8,"last_update":"2026-03-22T07:10:17.368574004Z"} +2026/03/22 07:10:22 [metric_collector] {"stage_name":"metric_collector","events_processed":4129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":825.8,"last_update":"2026-03-22T07:10:17.369043344Z"} +2026/03/22 07:10:22 ───────────────────────────────────────────────── +2026/03/22 07:10:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:10:27 [detection_layer] {"stage_name":"detection_layer","events_processed":137,"events_dropped":0,"avg_latency_ms":17.969055496634486,"throughput_eps":0,"last_update":"2026-03-22T07:10:22.479771576Z"} +2026/03/22 07:10:27 [transform_engine] {"stage_name":"transform_engine","events_processed":137,"events_dropped":0,"avg_latency_ms":468.8527061170363,"throughput_eps":0,"last_update":"2026-03-22T07:10:22.479797816Z"} +2026/03/22 07:10:27 [log_collector] {"stage_name":"log_collector","events_processed":7399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1479.8,"last_update":"2026-03-22T07:10:22.368567222Z"} +2026/03/22 07:10:27 [metric_collector] {"stage_name":"metric_collector","events_processed":4134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":826.8,"last_update":"2026-03-22T07:10:22.368773167Z"} +2026/03/22 07:10:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:10:22.378552028Z"} +2026/03/22 07:10:27 ───────────────────────────────────────────────── +2026/03/22 07:10:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:10:32 [log_collector] {"stage_name":"log_collector","events_processed":7399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1479.8,"last_update":"2026-03-22T07:10:27.36860068Z"} +2026/03/22 07:10:32 [metric_collector] {"stage_name":"metric_collector","events_processed":4139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":827.8,"last_update":"2026-03-22T07:10:27.368933908Z"} +2026/03/22 07:10:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:10:27.37795584Z"} +2026/03/22 07:10:32 [detection_layer] {"stage_name":"detection_layer","events_processed":137,"events_dropped":0,"avg_latency_ms":17.969055496634486,"throughput_eps":0,"last_update":"2026-03-22T07:10:27.479189514Z"} +2026/03/22 07:10:32 [transform_engine] {"stage_name":"transform_engine","events_processed":138,"events_dropped":0,"avg_latency_ms":390.37428529362904,"throughput_eps":0,"last_update":"2026-03-22T07:10:27.555684181Z"} +2026/03/22 07:10:32 ───────────────────────────────────────────────── +2026/03/22 07:10:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:10:37 [log_collector] {"stage_name":"log_collector","events_processed":7399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1479.8,"last_update":"2026-03-22T07:10:32.368513577Z"} +2026/03/22 07:10:37 [metric_collector] {"stage_name":"metric_collector","events_processed":4144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":828.8,"last_update":"2026-03-22T07:10:32.368886742Z"} +2026/03/22 07:10:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1660,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:10:32.377605954Z"} +2026/03/22 07:10:37 [detection_layer] {"stage_name":"detection_layer","events_processed":138,"events_dropped":0,"avg_latency_ms":18.37895139730759,"throughput_eps":0,"last_update":"2026-03-22T07:10:32.479836498Z"} +2026/03/22 07:10:37 [transform_engine] {"stage_name":"transform_engine","events_processed":138,"events_dropped":0,"avg_latency_ms":390.37428529362904,"throughput_eps":0,"last_update":"2026-03-22T07:10:32.479880292Z"} +2026/03/22 07:10:37 ───────────────────────────────────────────────── +2026/03/22 07:10:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:10:42 [log_collector] {"stage_name":"log_collector","events_processed":7399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1479.8,"last_update":"2026-03-22T07:10:37.368758523Z"} +2026/03/22 07:10:42 [metric_collector] {"stage_name":"metric_collector","events_processed":4149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":829.8,"last_update":"2026-03-22T07:10:37.369144822Z"} +2026/03/22 07:10:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1662,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:10:37.378185029Z"} +2026/03/22 07:10:42 [detection_layer] {"stage_name":"detection_layer","events_processed":138,"events_dropped":0,"avg_latency_ms":18.37895139730759,"throughput_eps":0,"last_update":"2026-03-22T07:10:37.479416508Z"} +2026/03/22 07:10:42 [transform_engine] {"stage_name":"transform_engine","events_processed":138,"events_dropped":0,"avg_latency_ms":390.37428529362904,"throughput_eps":0,"last_update":"2026-03-22T07:10:37.479462537Z"} +2026/03/22 07:10:42 ───────────────────────────────────────────────── +2026/03/22 07:10:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:10:47 [detection_layer] {"stage_name":"detection_layer","events_processed":138,"events_dropped":0,"avg_latency_ms":18.37895139730759,"throughput_eps":0,"last_update":"2026-03-22T07:10:42.479685209Z"} +2026/03/22 07:10:47 [transform_engine] {"stage_name":"transform_engine","events_processed":138,"events_dropped":0,"avg_latency_ms":390.37428529362904,"throughput_eps":0,"last_update":"2026-03-22T07:10:42.479653408Z"} +2026/03/22 07:10:47 [log_collector] {"stage_name":"log_collector","events_processed":7399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1479.8,"last_update":"2026-03-22T07:10:42.367960921Z"} +2026/03/22 07:10:47 [metric_collector] {"stage_name":"metric_collector","events_processed":4154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":830.8,"last_update":"2026-03-22T07:10:42.368436802Z"} +2026/03/22 07:10:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:10:42.377258651Z"} +2026/03/22 07:10:47 ───────────────────────────────────────────────── +2026/03/22 07:10:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:10:52 [log_collector] {"stage_name":"log_collector","events_processed":7399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1479.8,"last_update":"2026-03-22T07:10:47.368720045Z"} +2026/03/22 07:10:52 [metric_collector] {"stage_name":"metric_collector","events_processed":4159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":831.8,"last_update":"2026-03-22T07:10:47.369134759Z"} +2026/03/22 07:10:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:10:47.379527567Z"} +2026/03/22 07:10:52 [detection_layer] {"stage_name":"detection_layer","events_processed":138,"events_dropped":0,"avg_latency_ms":18.37895139730759,"throughput_eps":0,"last_update":"2026-03-22T07:10:47.479797814Z"} +2026/03/22 07:10:52 [transform_engine] {"stage_name":"transform_engine","events_processed":138,"events_dropped":0,"avg_latency_ms":390.37428529362904,"throughput_eps":0,"last_update":"2026-03-22T07:10:47.47978029Z"} +2026/03/22 07:10:52 ───────────────────────────────────────────────── +Saved state: 11 clusters, 7400 messages, reason: none +2026/03/22 07:10:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:10:57 [log_collector] {"stage_name":"log_collector","events_processed":7399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1479.8,"last_update":"2026-03-22T07:10:52.368427645Z"} +2026/03/22 07:10:57 [metric_collector] {"stage_name":"metric_collector","events_processed":4164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":832.8,"last_update":"2026-03-22T07:10:52.368704475Z"} +2026/03/22 07:10:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1668,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:10:52.378764294Z"} +2026/03/22 07:10:57 [detection_layer] {"stage_name":"detection_layer","events_processed":138,"events_dropped":0,"avg_latency_ms":18.37895139730759,"throughput_eps":0,"last_update":"2026-03-22T07:10:52.480034617Z"} +2026/03/22 07:10:57 [transform_engine] {"stage_name":"transform_engine","events_processed":138,"events_dropped":0,"avg_latency_ms":390.37428529362904,"throughput_eps":0,"last_update":"2026-03-22T07:10:52.478889904Z"} +2026/03/22 07:10:57 ───────────────────────────────────────────────── +2026/03/22 07:11:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:11:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1670,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:10:57.375408267Z"} +2026/03/22 07:11:02 [detection_layer] {"stage_name":"detection_layer","events_processed":138,"events_dropped":0,"avg_latency_ms":18.37895139730759,"throughput_eps":0,"last_update":"2026-03-22T07:10:57.478992653Z"} +2026/03/22 07:11:02 [transform_engine] {"stage_name":"transform_engine","events_processed":139,"events_dropped":0,"avg_latency_ms":448.19270083490323,"throughput_eps":0,"last_update":"2026-03-22T07:10:58.158413519Z"} +2026/03/22 07:11:02 [log_collector] {"stage_name":"log_collector","events_processed":7404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1480.8,"last_update":"2026-03-22T07:10:57.368157279Z"} +2026/03/22 07:11:02 [metric_collector] {"stage_name":"metric_collector","events_processed":4169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":833.8,"last_update":"2026-03-22T07:10:57.368451432Z"} +2026/03/22 07:11:02 ───────────────────────────────────────────────── +2026/03/22 07:11:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:11:07 [log_collector] {"stage_name":"log_collector","events_processed":7404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1480.8,"last_update":"2026-03-22T07:11:02.368255291Z"} +2026/03/22 07:11:07 [metric_collector] {"stage_name":"metric_collector","events_processed":4174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":834.8,"last_update":"2026-03-22T07:11:02.36852662Z"} +2026/03/22 07:11:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:11:02.381058495Z"} +2026/03/22 07:11:07 [detection_layer] {"stage_name":"detection_layer","events_processed":139,"events_dropped":0,"avg_latency_ms":17.380994517846073,"throughput_eps":0,"last_update":"2026-03-22T07:11:02.479220363Z"} +2026/03/22 07:11:07 [transform_engine] {"stage_name":"transform_engine","events_processed":139,"events_dropped":0,"avg_latency_ms":448.19270083490323,"throughput_eps":0,"last_update":"2026-03-22T07:11:02.479242446Z"} +2026/03/22 07:11:07 ───────────────────────────────────────────────── +2026/03/22 07:11:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:11:12 [log_collector] {"stage_name":"log_collector","events_processed":7404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1480.8,"last_update":"2026-03-22T07:11:07.36809474Z"} +2026/03/22 07:11:12 [metric_collector] {"stage_name":"metric_collector","events_processed":4179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":835.8,"last_update":"2026-03-22T07:11:07.368337304Z"} +2026/03/22 07:11:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:11:07.378623567Z"} +2026/03/22 07:11:12 [detection_layer] {"stage_name":"detection_layer","events_processed":139,"events_dropped":0,"avg_latency_ms":17.380994517846073,"throughput_eps":0,"last_update":"2026-03-22T07:11:07.479790171Z"} +2026/03/22 07:11:12 [transform_engine] {"stage_name":"transform_engine","events_processed":139,"events_dropped":0,"avg_latency_ms":448.19270083490323,"throughput_eps":0,"last_update":"2026-03-22T07:11:07.479764321Z"} +2026/03/22 07:11:12 ───────────────────────────────────────────────── +2026/03/22 07:11:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:11:17 [detection_layer] {"stage_name":"detection_layer","events_processed":139,"events_dropped":0,"avg_latency_ms":17.380994517846073,"throughput_eps":0,"last_update":"2026-03-22T07:11:12.479558326Z"} +2026/03/22 07:11:17 [transform_engine] {"stage_name":"transform_engine","events_processed":139,"events_dropped":0,"avg_latency_ms":448.19270083490323,"throughput_eps":0,"last_update":"2026-03-22T07:11:12.479569357Z"} +2026/03/22 07:11:17 [log_collector] {"stage_name":"log_collector","events_processed":7404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1480.8,"last_update":"2026-03-22T07:11:12.368490438Z"} +2026/03/22 07:11:17 [metric_collector] {"stage_name":"metric_collector","events_processed":4184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":836.8,"last_update":"2026-03-22T07:11:12.368739304Z"} +2026/03/22 07:11:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1676,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:11:12.379420693Z"} +2026/03/22 07:11:17 ───────────────────────────────────────────────── +2026/03/22 07:11:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:11:22 [log_collector] {"stage_name":"log_collector","events_processed":7404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1480.8,"last_update":"2026-03-22T07:11:17.368089781Z"} +2026/03/22 07:11:22 [metric_collector] {"stage_name":"metric_collector","events_processed":4189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":837.8,"last_update":"2026-03-22T07:11:17.368458398Z"} +2026/03/22 07:11:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:11:17.376635631Z"} +2026/03/22 07:11:22 [detection_layer] {"stage_name":"detection_layer","events_processed":139,"events_dropped":0,"avg_latency_ms":17.380994517846073,"throughput_eps":0,"last_update":"2026-03-22T07:11:17.479863792Z"} +2026/03/22 07:11:22 [transform_engine] {"stage_name":"transform_engine","events_processed":139,"events_dropped":0,"avg_latency_ms":448.19270083490323,"throughput_eps":0,"last_update":"2026-03-22T07:11:17.479828024Z"} +2026/03/22 07:11:22 ───────────────────────────────────────────────── +2026/03/22 07:11:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:11:27 [detection_layer] {"stage_name":"detection_layer","events_processed":139,"events_dropped":0,"avg_latency_ms":17.380994517846073,"throughput_eps":0,"last_update":"2026-03-22T07:11:22.479446948Z"} +2026/03/22 07:11:27 [transform_engine] {"stage_name":"transform_engine","events_processed":139,"events_dropped":0,"avg_latency_ms":448.19270083490323,"throughput_eps":0,"last_update":"2026-03-22T07:11:22.479413725Z"} +2026/03/22 07:11:27 [log_collector] {"stage_name":"log_collector","events_processed":7404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1480.8,"last_update":"2026-03-22T07:11:22.36888512Z"} +2026/03/22 07:11:27 [metric_collector] {"stage_name":"metric_collector","events_processed":4194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":838.8,"last_update":"2026-03-22T07:11:22.368826027Z"} +2026/03/22 07:11:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:11:22.377411493Z"} +2026/03/22 07:11:27 ───────────────────────────────────────────────── +2026/03/22 07:11:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:11:32 [log_collector] {"stage_name":"log_collector","events_processed":7404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1480.8,"last_update":"2026-03-22T07:11:32.368114265Z"} +2026/03/22 07:11:32 [metric_collector] {"stage_name":"metric_collector","events_processed":4199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":839.8,"last_update":"2026-03-22T07:11:27.368141996Z"} +2026/03/22 07:11:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:11:27.374903818Z"} +2026/03/22 07:11:32 [detection_layer] {"stage_name":"detection_layer","events_processed":139,"events_dropped":0,"avg_latency_ms":17.380994517846073,"throughput_eps":0,"last_update":"2026-03-22T07:11:27.481365602Z"} +2026/03/22 07:11:32 [transform_engine] {"stage_name":"transform_engine","events_processed":139,"events_dropped":0,"avg_latency_ms":448.19270083490323,"throughput_eps":0,"last_update":"2026-03-22T07:11:27.479152924Z"} +2026/03/22 07:11:32 ───────────────────────────────────────────────── +2026/03/22 07:11:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:11:37 [log_collector] {"stage_name":"log_collector","events_processed":7413,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1482.6,"last_update":"2026-03-22T07:11:37.368506329Z"} +2026/03/22 07:11:37 [metric_collector] {"stage_name":"metric_collector","events_processed":4204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":840.8,"last_update":"2026-03-22T07:11:32.368359755Z"} +2026/03/22 07:11:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:11:32.375750392Z"} +2026/03/22 07:11:37 [detection_layer] {"stage_name":"detection_layer","events_processed":140,"events_dropped":0,"avg_latency_ms":17.08363461427686,"throughput_eps":0,"last_update":"2026-03-22T07:11:32.479462629Z"} +2026/03/22 07:11:37 [transform_engine] {"stage_name":"transform_engine","events_processed":140,"events_dropped":0,"avg_latency_ms":561.7151076679226,"throughput_eps":0,"last_update":"2026-03-22T07:11:32.479418374Z"} +2026/03/22 07:11:37 ───────────────────────────────────────────────── +2026/03/22 07:11:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:11:42 [log_collector] {"stage_name":"log_collector","events_processed":7413,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1482.6,"last_update":"2026-03-22T07:11:37.368506329Z"} +2026/03/22 07:11:42 [metric_collector] {"stage_name":"metric_collector","events_processed":4209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":841.8,"last_update":"2026-03-22T07:11:37.368841632Z"} +2026/03/22 07:11:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:11:37.375131681Z"} +2026/03/22 07:11:42 [detection_layer] {"stage_name":"detection_layer","events_processed":140,"events_dropped":0,"avg_latency_ms":17.08363461427686,"throughput_eps":0,"last_update":"2026-03-22T07:11:37.479404051Z"} +2026/03/22 07:11:42 [transform_engine] {"stage_name":"transform_engine","events_processed":140,"events_dropped":0,"avg_latency_ms":561.7151076679226,"throughput_eps":0,"last_update":"2026-03-22T07:11:37.479430682Z"} +2026/03/22 07:11:42 ───────────────────────────────────────────────── +2026/03/22 07:11:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:11:47 [transform_engine] {"stage_name":"transform_engine","events_processed":140,"events_dropped":0,"avg_latency_ms":561.7151076679226,"throughput_eps":0,"last_update":"2026-03-22T07:11:42.479169741Z"} +2026/03/22 07:11:47 [log_collector] {"stage_name":"log_collector","events_processed":7415,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1483,"last_update":"2026-03-22T07:11:42.368392572Z"} +2026/03/22 07:11:47 [metric_collector] {"stage_name":"metric_collector","events_processed":4214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":842.8,"last_update":"2026-03-22T07:11:42.36885622Z"} +2026/03/22 07:11:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1688,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:11:42.377912567Z"} +2026/03/22 07:11:47 [detection_layer] {"stage_name":"detection_layer","events_processed":140,"events_dropped":0,"avg_latency_ms":17.08363461427686,"throughput_eps":0,"last_update":"2026-03-22T07:11:42.479126138Z"} +2026/03/22 07:11:47 ───────────────────────────────────────────────── +2026/03/22 07:11:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:11:52 [log_collector] {"stage_name":"log_collector","events_processed":7587,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1517.4,"last_update":"2026-03-22T07:11:47.36795667Z"} +2026/03/22 07:11:52 [metric_collector] {"stage_name":"metric_collector","events_processed":4219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":843.8,"last_update":"2026-03-22T07:11:47.368321939Z"} +2026/03/22 07:11:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:11:47.376622047Z"} +2026/03/22 07:11:52 [detection_layer] {"stage_name":"detection_layer","events_processed":140,"events_dropped":0,"avg_latency_ms":17.08363461427686,"throughput_eps":0,"last_update":"2026-03-22T07:11:47.479933386Z"} +2026/03/22 07:11:52 [transform_engine] {"stage_name":"transform_engine","events_processed":140,"events_dropped":0,"avg_latency_ms":561.7151076679226,"throughput_eps":0,"last_update":"2026-03-22T07:11:47.479898368Z"} +2026/03/22 07:11:52 ───────────────────────────────────────────────── +2026/03/22 07:11:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:11:57 [detection_layer] {"stage_name":"detection_layer","events_processed":140,"events_dropped":0,"avg_latency_ms":17.08363461427686,"throughput_eps":0,"last_update":"2026-03-22T07:11:52.479345235Z"} +2026/03/22 07:11:57 [transform_engine] {"stage_name":"transform_engine","events_processed":140,"events_dropped":0,"avg_latency_ms":561.7151076679226,"throughput_eps":0,"last_update":"2026-03-22T07:11:52.479392766Z"} +2026/03/22 07:11:57 [log_collector] {"stage_name":"log_collector","events_processed":7762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1552.4,"last_update":"2026-03-22T07:11:57.368383915Z"} +2026/03/22 07:11:57 [metric_collector] {"stage_name":"metric_collector","events_processed":4224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":844.8,"last_update":"2026-03-22T07:11:52.369093944Z"} +2026/03/22 07:11:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:11:52.379103137Z"} +2026/03/22 07:11:57 ───────────────────────────────────────────────── +2026/03/22 07:12:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:12:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:11:57.377941873Z"} +2026/03/22 07:12:02 [detection_layer] {"stage_name":"detection_layer","events_processed":140,"events_dropped":0,"avg_latency_ms":17.08363461427686,"throughput_eps":0,"last_update":"2026-03-22T07:11:57.479219354Z"} +2026/03/22 07:12:02 [transform_engine] {"stage_name":"transform_engine","events_processed":141,"events_dropped":0,"avg_latency_ms":466.8998719343381,"throughput_eps":0,"last_update":"2026-03-22T07:11:57.566873382Z"} +2026/03/22 07:12:02 [log_collector] {"stage_name":"log_collector","events_processed":7762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1552.4,"last_update":"2026-03-22T07:11:57.368383915Z"} +2026/03/22 07:12:02 [metric_collector] {"stage_name":"metric_collector","events_processed":4229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":845.8,"last_update":"2026-03-22T07:11:57.369051353Z"} +2026/03/22 07:12:02 ───────────────────────────────────────────────── +2026/03/22 07:12:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:12:07 [log_collector] {"stage_name":"log_collector","events_processed":7762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1552.4,"last_update":"2026-03-22T07:12:07.368408237Z"} +2026/03/22 07:12:07 [metric_collector] {"stage_name":"metric_collector","events_processed":4234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":846.8,"last_update":"2026-03-22T07:12:02.369612934Z"} +2026/03/22 07:12:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:12:02.380106054Z"} +2026/03/22 07:12:07 [detection_layer] {"stage_name":"detection_layer","events_processed":141,"events_dropped":0,"avg_latency_ms":17.21226289142149,"throughput_eps":0,"last_update":"2026-03-22T07:12:02.479481191Z"} +2026/03/22 07:12:07 [transform_engine] {"stage_name":"transform_engine","events_processed":141,"events_dropped":0,"avg_latency_ms":466.8998719343381,"throughput_eps":0,"last_update":"2026-03-22T07:12:02.479456153Z"} +2026/03/22 07:12:07 ───────────────────────────────────────────────── +2026/03/22 07:12:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:12:12 [log_collector] {"stage_name":"log_collector","events_processed":7762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1552.4,"last_update":"2026-03-22T07:12:07.368408237Z"} +2026/03/22 07:12:12 [metric_collector] {"stage_name":"metric_collector","events_processed":4239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":847.8,"last_update":"2026-03-22T07:12:07.369270729Z"} +2026/03/22 07:12:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:12:07.378076326Z"} +2026/03/22 07:12:12 [detection_layer] {"stage_name":"detection_layer","events_processed":141,"events_dropped":0,"avg_latency_ms":17.21226289142149,"throughput_eps":0,"last_update":"2026-03-22T07:12:07.479444781Z"} +2026/03/22 07:12:12 [transform_engine] {"stage_name":"transform_engine","events_processed":141,"events_dropped":0,"avg_latency_ms":466.8998719343381,"throughput_eps":0,"last_update":"2026-03-22T07:12:07.479333308Z"} +2026/03/22 07:12:12 ───────────────────────────────────────────────── +2026/03/22 07:12:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:12:17 [transform_engine] {"stage_name":"transform_engine","events_processed":141,"events_dropped":0,"avg_latency_ms":466.8998719343381,"throughput_eps":0,"last_update":"2026-03-22T07:12:12.479772644Z"} +2026/03/22 07:12:17 [log_collector] {"stage_name":"log_collector","events_processed":7762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1552.4,"last_update":"2026-03-22T07:12:17.368394395Z"} +2026/03/22 07:12:17 [metric_collector] {"stage_name":"metric_collector","events_processed":4244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":848.8,"last_update":"2026-03-22T07:12:12.368504396Z"} +2026/03/22 07:12:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1700,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:12:12.377455331Z"} +2026/03/22 07:12:17 [detection_layer] {"stage_name":"detection_layer","events_processed":141,"events_dropped":0,"avg_latency_ms":17.21226289142149,"throughput_eps":0,"last_update":"2026-03-22T07:12:12.479883987Z"} +2026/03/22 07:12:17 ───────────────────────────────────────────────── +2026/03/22 07:12:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:12:22 [log_collector] {"stage_name":"log_collector","events_processed":7762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1552.4,"last_update":"2026-03-22T07:12:22.368069545Z"} +2026/03/22 07:12:22 [metric_collector] {"stage_name":"metric_collector","events_processed":4249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":849.8,"last_update":"2026-03-22T07:12:17.369179949Z"} +2026/03/22 07:12:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1702,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:12:17.37738685Z"} +2026/03/22 07:12:22 [detection_layer] {"stage_name":"detection_layer","events_processed":141,"events_dropped":0,"avg_latency_ms":17.21226289142149,"throughput_eps":0,"last_update":"2026-03-22T07:12:17.479716086Z"} +2026/03/22 07:12:22 [transform_engine] {"stage_name":"transform_engine","events_processed":141,"events_dropped":0,"avg_latency_ms":466.8998719343381,"throughput_eps":0,"last_update":"2026-03-22T07:12:17.479665278Z"} +2026/03/22 07:12:22 ───────────────────────────────────────────────── +2026/03/22 07:12:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:12:27 [detection_layer] {"stage_name":"detection_layer","events_processed":141,"events_dropped":0,"avg_latency_ms":17.21226289142149,"throughput_eps":0,"last_update":"2026-03-22T07:12:22.479770883Z"} +2026/03/22 07:12:27 [transform_engine] {"stage_name":"transform_engine","events_processed":141,"events_dropped":0,"avg_latency_ms":466.8998719343381,"throughput_eps":0,"last_update":"2026-03-22T07:12:22.479648759Z"} +2026/03/22 07:12:27 [log_collector] {"stage_name":"log_collector","events_processed":7762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1552.4,"last_update":"2026-03-22T07:12:22.368069545Z"} +2026/03/22 07:12:27 [metric_collector] {"stage_name":"metric_collector","events_processed":4254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":850.8,"last_update":"2026-03-22T07:12:22.36857341Z"} +2026/03/22 07:12:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:12:22.377375391Z"} +2026/03/22 07:12:27 ───────────────────────────────────────────────── +2026/03/22 07:12:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:12:32 [log_collector] {"stage_name":"log_collector","events_processed":7762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1552.4,"last_update":"2026-03-22T07:12:32.367978202Z"} +2026/03/22 07:12:32 [metric_collector] {"stage_name":"metric_collector","events_processed":4259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":851.8,"last_update":"2026-03-22T07:12:27.36929983Z"} +2026/03/22 07:12:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:12:27.377667218Z"} +2026/03/22 07:12:32 [detection_layer] {"stage_name":"detection_layer","events_processed":141,"events_dropped":0,"avg_latency_ms":17.21226289142149,"throughput_eps":0,"last_update":"2026-03-22T07:12:27.479983809Z"} +2026/03/22 07:12:32 [transform_engine] {"stage_name":"transform_engine","events_processed":142,"events_dropped":0,"avg_latency_ms":387.09524194747047,"throughput_eps":0,"last_update":"2026-03-22T07:12:27.54775983Z"} +2026/03/22 07:12:32 ───────────────────────────────────────────────── +2026/03/22 07:12:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:12:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:12:32.377757444Z"} +2026/03/22 07:12:37 [detection_layer] {"stage_name":"detection_layer","events_processed":142,"events_dropped":0,"avg_latency_ms":18.040590713137192,"throughput_eps":0,"last_update":"2026-03-22T07:12:32.479139184Z"} +2026/03/22 07:12:37 [transform_engine] {"stage_name":"transform_engine","events_processed":142,"events_dropped":0,"avg_latency_ms":387.09524194747047,"throughput_eps":0,"last_update":"2026-03-22T07:12:32.479152619Z"} +2026/03/22 07:12:37 [log_collector] {"stage_name":"log_collector","events_processed":7762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1552.4,"last_update":"2026-03-22T07:12:32.367978202Z"} +2026/03/22 07:12:37 [metric_collector] {"stage_name":"metric_collector","events_processed":4264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":852.8,"last_update":"2026-03-22T07:12:32.368769268Z"} +2026/03/22 07:12:37 ───────────────────────────────────────────────── +2026/03/22 07:12:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:12:42 [log_collector] {"stage_name":"log_collector","events_processed":7762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1552.4,"last_update":"2026-03-22T07:12:37.368494299Z"} +2026/03/22 07:12:42 [metric_collector] {"stage_name":"metric_collector","events_processed":4269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":853.8,"last_update":"2026-03-22T07:12:37.368799784Z"} +2026/03/22 07:12:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:12:37.377619618Z"} +2026/03/22 07:12:42 [detection_layer] {"stage_name":"detection_layer","events_processed":142,"events_dropped":0,"avg_latency_ms":18.040590713137192,"throughput_eps":0,"last_update":"2026-03-22T07:12:37.480023135Z"} +2026/03/22 07:12:42 [transform_engine] {"stage_name":"transform_engine","events_processed":142,"events_dropped":0,"avg_latency_ms":387.09524194747047,"throughput_eps":0,"last_update":"2026-03-22T07:12:37.478836341Z"} +2026/03/22 07:12:42 ───────────────────────────────────────────────── +2026/03/22 07:12:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:12:47 [log_collector] {"stage_name":"log_collector","events_processed":7762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1552.4,"last_update":"2026-03-22T07:12:42.367996709Z"} +2026/03/22 07:12:47 [metric_collector] {"stage_name":"metric_collector","events_processed":4279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":855.8,"last_update":"2026-03-22T07:12:47.368930357Z"} +2026/03/22 07:12:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1712,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:12:42.377686169Z"} +2026/03/22 07:12:47 [detection_layer] {"stage_name":"detection_layer","events_processed":142,"events_dropped":0,"avg_latency_ms":18.040590713137192,"throughput_eps":0,"last_update":"2026-03-22T07:12:42.479976027Z"} +2026/03/22 07:12:47 [transform_engine] {"stage_name":"transform_engine","events_processed":142,"events_dropped":0,"avg_latency_ms":387.09524194747047,"throughput_eps":0,"last_update":"2026-03-22T07:12:42.478837256Z"} +2026/03/22 07:12:47 ───────────────────────────────────────────────── +Saved state: 11 clusters, 7763 messages, reason: none +2026/03/22 07:12:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:12:52 [log_collector] {"stage_name":"log_collector","events_processed":7762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1552.4,"last_update":"2026-03-22T07:12:47.369068411Z"} +2026/03/22 07:12:52 [metric_collector] {"stage_name":"metric_collector","events_processed":4279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":855.8,"last_update":"2026-03-22T07:12:47.368930357Z"} +2026/03/22 07:12:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:12:47.377705294Z"} +2026/03/22 07:12:52 [detection_layer] {"stage_name":"detection_layer","events_processed":142,"events_dropped":0,"avg_latency_ms":18.040590713137192,"throughput_eps":0,"last_update":"2026-03-22T07:12:47.478971582Z"} +2026/03/22 07:12:52 [transform_engine] {"stage_name":"transform_engine","events_processed":142,"events_dropped":0,"avg_latency_ms":387.09524194747047,"throughput_eps":0,"last_update":"2026-03-22T07:12:47.4789338Z"} +2026/03/22 07:12:52 ───────────────────────────────────────────────── +2026/03/22 07:12:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:12:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:12:52.376667783Z"} +2026/03/22 07:12:57 [detection_layer] {"stage_name":"detection_layer","events_processed":142,"events_dropped":0,"avg_latency_ms":18.040590713137192,"throughput_eps":0,"last_update":"2026-03-22T07:12:52.479452218Z"} +2026/03/22 07:12:57 [transform_engine] {"stage_name":"transform_engine","events_processed":142,"events_dropped":0,"avg_latency_ms":387.09524194747047,"throughput_eps":0,"last_update":"2026-03-22T07:12:52.479464692Z"} +2026/03/22 07:12:57 [log_collector] {"stage_name":"log_collector","events_processed":7765,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1553,"last_update":"2026-03-22T07:12:52.368683239Z"} +2026/03/22 07:12:57 [metric_collector] {"stage_name":"metric_collector","events_processed":4284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":856.8,"last_update":"2026-03-22T07:12:52.368927898Z"} +2026/03/22 07:12:57 ───────────────────────────────────────────────── +2026/03/22 07:13:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:13:02 [log_collector] {"stage_name":"log_collector","events_processed":7765,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1553,"last_update":"2026-03-22T07:12:57.369070862Z"} +2026/03/22 07:13:02 [metric_collector] {"stage_name":"metric_collector","events_processed":4289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":857.8,"last_update":"2026-03-22T07:12:57.369061283Z"} +2026/03/22 07:13:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1718,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:12:57.377243846Z"} +2026/03/22 07:13:02 [detection_layer] {"stage_name":"detection_layer","events_processed":142,"events_dropped":0,"avg_latency_ms":18.040590713137192,"throughput_eps":0,"last_update":"2026-03-22T07:12:57.478955857Z"} +2026/03/22 07:13:02 [transform_engine] {"stage_name":"transform_engine","events_processed":143,"events_dropped":0,"avg_latency_ms":532.9566867579764,"throughput_eps":0,"last_update":"2026-03-22T07:12:58.595384362Z"} +2026/03/22 07:13:02 ───────────────────────────────────────────────── +2026/03/22 07:13:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:13:07 [log_collector] {"stage_name":"log_collector","events_processed":7776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1555.2,"last_update":"2026-03-22T07:13:02.368958163Z"} +2026/03/22 07:13:07 [metric_collector] {"stage_name":"metric_collector","events_processed":4294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":858.8,"last_update":"2026-03-22T07:13:02.369223401Z"} +2026/03/22 07:13:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:13:02.377411995Z"} +2026/03/22 07:13:07 [detection_layer] {"stage_name":"detection_layer","events_processed":143,"events_dropped":0,"avg_latency_ms":17.535856770509753,"throughput_eps":0,"last_update":"2026-03-22T07:13:02.479677866Z"} +2026/03/22 07:13:07 [transform_engine] {"stage_name":"transform_engine","events_processed":143,"events_dropped":0,"avg_latency_ms":532.9566867579764,"throughput_eps":0,"last_update":"2026-03-22T07:13:02.479638592Z"} +2026/03/22 07:13:07 ───────────────────────────────────────────────── +2026/03/22 07:13:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:13:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1722,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:13:07.37817951Z"} +2026/03/22 07:13:12 [detection_layer] {"stage_name":"detection_layer","events_processed":143,"events_dropped":0,"avg_latency_ms":17.535856770509753,"throughput_eps":0,"last_update":"2026-03-22T07:13:07.480381338Z"} +2026/03/22 07:13:12 [transform_engine] {"stage_name":"transform_engine","events_processed":143,"events_dropped":0,"avg_latency_ms":532.9566867579764,"throughput_eps":0,"last_update":"2026-03-22T07:13:07.480400806Z"} +2026/03/22 07:13:12 [log_collector] {"stage_name":"log_collector","events_processed":7782,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1556.4,"last_update":"2026-03-22T07:13:07.368542251Z"} +2026/03/22 07:13:12 [metric_collector] {"stage_name":"metric_collector","events_processed":4299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":859.8,"last_update":"2026-03-22T07:13:07.368534246Z"} +2026/03/22 07:13:12 ───────────────────────────────────────────────── +2026/03/22 07:13:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:13:17 [metric_collector] {"stage_name":"metric_collector","events_processed":4304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":860.8,"last_update":"2026-03-22T07:13:12.368548622Z"} +2026/03/22 07:13:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:13:12.377441376Z"} +2026/03/22 07:13:17 [detection_layer] {"stage_name":"detection_layer","events_processed":143,"events_dropped":0,"avg_latency_ms":17.535856770509753,"throughput_eps":0,"last_update":"2026-03-22T07:13:12.479837807Z"} +2026/03/22 07:13:17 [transform_engine] {"stage_name":"transform_engine","events_processed":143,"events_dropped":0,"avg_latency_ms":532.9566867579764,"throughput_eps":0,"last_update":"2026-03-22T07:13:12.479856874Z"} +2026/03/22 07:13:17 [log_collector] {"stage_name":"log_collector","events_processed":7792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1558.4,"last_update":"2026-03-22T07:13:17.368110209Z"} +2026/03/22 07:13:17 ───────────────────────────────────────────────── +2026/03/22 07:13:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:13:22 [log_collector] {"stage_name":"log_collector","events_processed":7792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1558.4,"last_update":"2026-03-22T07:13:17.368110209Z"} +2026/03/22 07:13:22 [metric_collector] {"stage_name":"metric_collector","events_processed":4309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":861.8,"last_update":"2026-03-22T07:13:17.368871678Z"} +2026/03/22 07:13:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:13:17.378656249Z"} +2026/03/22 07:13:22 [detection_layer] {"stage_name":"detection_layer","events_processed":143,"events_dropped":0,"avg_latency_ms":17.535856770509753,"throughput_eps":0,"last_update":"2026-03-22T07:13:17.479829858Z"} +2026/03/22 07:13:22 [transform_engine] {"stage_name":"transform_engine","events_processed":143,"events_dropped":0,"avg_latency_ms":532.9566867579764,"throughput_eps":0,"last_update":"2026-03-22T07:13:17.479841491Z"} +2026/03/22 07:13:22 ───────────────────────────────────────────────── +2026/03/22 07:13:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:13:27 [log_collector] {"stage_name":"log_collector","events_processed":7792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1558.4,"last_update":"2026-03-22T07:13:27.368891189Z"} +2026/03/22 07:13:27 [metric_collector] {"stage_name":"metric_collector","events_processed":4314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":862.8,"last_update":"2026-03-22T07:13:22.368811285Z"} +2026/03/22 07:13:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1728,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:13:22.378411894Z"} +2026/03/22 07:13:27 [detection_layer] {"stage_name":"detection_layer","events_processed":143,"events_dropped":0,"avg_latency_ms":17.535856770509753,"throughput_eps":0,"last_update":"2026-03-22T07:13:22.479622723Z"} +2026/03/22 07:13:27 [transform_engine] {"stage_name":"transform_engine","events_processed":143,"events_dropped":0,"avg_latency_ms":532.9566867579764,"throughput_eps":0,"last_update":"2026-03-22T07:13:22.479633514Z"} +2026/03/22 07:13:27 ───────────────────────────────────────────────── +2026/03/22 07:13:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:13:32 [log_collector] {"stage_name":"log_collector","events_processed":7806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1561.2,"last_update":"2026-03-22T07:13:32.368474468Z"} +2026/03/22 07:13:32 [metric_collector] {"stage_name":"metric_collector","events_processed":4319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":863.8,"last_update":"2026-03-22T07:13:27.369206203Z"} +2026/03/22 07:13:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1730,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:13:27.377717746Z"} +2026/03/22 07:13:32 [detection_layer] {"stage_name":"detection_layer","events_processed":143,"events_dropped":0,"avg_latency_ms":17.535856770509753,"throughput_eps":0,"last_update":"2026-03-22T07:13:27.478973051Z"} +2026/03/22 07:13:32 [transform_engine] {"stage_name":"transform_engine","events_processed":144,"events_dropped":0,"avg_latency_ms":448.58806880638116,"throughput_eps":0,"last_update":"2026-03-22T07:13:27.589960646Z"} +2026/03/22 07:13:32 ───────────────────────────────────────────────── +2026/03/22 07:13:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:13:37 [log_collector] {"stage_name":"log_collector","events_processed":7806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1561.2,"last_update":"2026-03-22T07:13:32.368474468Z"} +2026/03/22 07:13:37 [metric_collector] {"stage_name":"metric_collector","events_processed":4324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":864.8,"last_update":"2026-03-22T07:13:32.368858763Z"} +2026/03/22 07:13:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:13:32.377132341Z"} +2026/03/22 07:13:37 [detection_layer] {"stage_name":"detection_layer","events_processed":144,"events_dropped":0,"avg_latency_ms":17.881920016407804,"throughput_eps":0,"last_update":"2026-03-22T07:13:32.479498793Z"} +2026/03/22 07:13:37 [transform_engine] {"stage_name":"transform_engine","events_processed":144,"events_dropped":0,"avg_latency_ms":448.58806880638116,"throughput_eps":0,"last_update":"2026-03-22T07:13:32.47951255Z"} +2026/03/22 07:13:37 ───────────────────────────────────────────────── +2026/03/22 07:13:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:13:42 [log_collector] {"stage_name":"log_collector","events_processed":7806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1561.2,"last_update":"2026-03-22T07:13:42.368325427Z"} +2026/03/22 07:13:42 [metric_collector] {"stage_name":"metric_collector","events_processed":4329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":865.8,"last_update":"2026-03-22T07:13:37.368508147Z"} +2026/03/22 07:13:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:13:37.37678502Z"} +2026/03/22 07:13:42 [detection_layer] {"stage_name":"detection_layer","events_processed":144,"events_dropped":0,"avg_latency_ms":17.881920016407804,"throughput_eps":0,"last_update":"2026-03-22T07:13:37.478948745Z"} +2026/03/22 07:13:42 [transform_engine] {"stage_name":"transform_engine","events_processed":144,"events_dropped":0,"avg_latency_ms":448.58806880638116,"throughput_eps":0,"last_update":"2026-03-22T07:13:37.478917084Z"} +2026/03/22 07:13:42 ───────────────────────────────────────────────── +2026/03/22 07:13:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:13:47 [transform_engine] {"stage_name":"transform_engine","events_processed":144,"events_dropped":0,"avg_latency_ms":448.58806880638116,"throughput_eps":0,"last_update":"2026-03-22T07:13:42.479727054Z"} +2026/03/22 07:13:47 [log_collector] {"stage_name":"log_collector","events_processed":7806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1561.2,"last_update":"2026-03-22T07:13:42.368325427Z"} +2026/03/22 07:13:47 [metric_collector] {"stage_name":"metric_collector","events_processed":4334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":866.8,"last_update":"2026-03-22T07:13:42.368930756Z"} +2026/03/22 07:13:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1736,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:13:42.378369675Z"} +2026/03/22 07:13:47 [detection_layer] {"stage_name":"detection_layer","events_processed":144,"events_dropped":0,"avg_latency_ms":17.881920016407804,"throughput_eps":0,"last_update":"2026-03-22T07:13:42.479712036Z"} +2026/03/22 07:13:47 ───────────────────────────────────────────────── +2026/03/22 07:13:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:13:52 [detection_layer] {"stage_name":"detection_layer","events_processed":144,"events_dropped":0,"avg_latency_ms":17.881920016407804,"throughput_eps":0,"last_update":"2026-03-22T07:13:47.479281238Z"} +2026/03/22 07:13:52 [transform_engine] {"stage_name":"transform_engine","events_processed":144,"events_dropped":0,"avg_latency_ms":448.58806880638116,"throughput_eps":0,"last_update":"2026-03-22T07:13:47.479292429Z"} +2026/03/22 07:13:52 [log_collector] {"stage_name":"log_collector","events_processed":7806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1561.2,"last_update":"2026-03-22T07:13:47.368029328Z"} +2026/03/22 07:13:52 [metric_collector] {"stage_name":"metric_collector","events_processed":4339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":867.8,"last_update":"2026-03-22T07:13:47.368882972Z"} +2026/03/22 07:13:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1738,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:13:47.378043899Z"} +2026/03/22 07:13:52 ───────────────────────────────────────────────── +2026/03/22 07:13:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:13:57 [log_collector] {"stage_name":"log_collector","events_processed":7806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1561.2,"last_update":"2026-03-22T07:13:57.368118135Z"} +2026/03/22 07:13:57 [metric_collector] {"stage_name":"metric_collector","events_processed":4344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":868.8,"last_update":"2026-03-22T07:13:52.36888407Z"} +2026/03/22 07:13:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1740,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:13:52.377965976Z"} +2026/03/22 07:13:57 [detection_layer] {"stage_name":"detection_layer","events_processed":144,"events_dropped":0,"avg_latency_ms":17.881920016407804,"throughput_eps":0,"last_update":"2026-03-22T07:13:52.479382117Z"} +2026/03/22 07:13:57 [transform_engine] {"stage_name":"transform_engine","events_processed":144,"events_dropped":0,"avg_latency_ms":448.58806880638116,"throughput_eps":0,"last_update":"2026-03-22T07:13:52.479394831Z"} +2026/03/22 07:13:57 ───────────────────────────────────────────────── +2026/03/22 07:14:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:14:02 [log_collector] {"stage_name":"log_collector","events_processed":7806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1561.2,"last_update":"2026-03-22T07:14:02.368581983Z"} +2026/03/22 07:14:02 [metric_collector] {"stage_name":"metric_collector","events_processed":4349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":869.8,"last_update":"2026-03-22T07:13:57.368854316Z"} +2026/03/22 07:14:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:13:57.378145862Z"} +2026/03/22 07:14:02 [detection_layer] {"stage_name":"detection_layer","events_processed":144,"events_dropped":0,"avg_latency_ms":17.881920016407804,"throughput_eps":0,"last_update":"2026-03-22T07:13:57.479585297Z"} +2026/03/22 07:14:02 [transform_engine] {"stage_name":"transform_engine","events_processed":145,"events_dropped":0,"avg_latency_ms":381.34990184510497,"throughput_eps":0,"last_update":"2026-03-22T07:13:57.592000706Z"} +2026/03/22 07:14:02 ───────────────────────────────────────────────── +2026/03/22 07:14:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:14:07 [detection_layer] {"stage_name":"detection_layer","events_processed":145,"events_dropped":0,"avg_latency_ms":18.221606613126244,"throughput_eps":0,"last_update":"2026-03-22T07:14:02.479433827Z"} +2026/03/22 07:14:07 [transform_engine] {"stage_name":"transform_engine","events_processed":145,"events_dropped":0,"avg_latency_ms":381.34990184510497,"throughput_eps":0,"last_update":"2026-03-22T07:14:02.479284251Z"} +2026/03/22 07:14:07 [log_collector] {"stage_name":"log_collector","events_processed":7806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1561.2,"last_update":"2026-03-22T07:14:07.368805971Z"} +2026/03/22 07:14:07 [metric_collector] {"stage_name":"metric_collector","events_processed":4354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":870.8,"last_update":"2026-03-22T07:14:02.369156373Z"} +2026/03/22 07:14:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:14:02.377898889Z"} +2026/03/22 07:14:07 ───────────────────────────────────────────────── +2026/03/22 07:14:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:14:12 [log_collector] {"stage_name":"log_collector","events_processed":7806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1561.2,"last_update":"2026-03-22T07:14:07.368805971Z"} +2026/03/22 07:14:12 [metric_collector] {"stage_name":"metric_collector","events_processed":4359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":871.8,"last_update":"2026-03-22T07:14:07.369881211Z"} +2026/03/22 07:14:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:14:07.379303347Z"} +2026/03/22 07:14:12 [detection_layer] {"stage_name":"detection_layer","events_processed":145,"events_dropped":0,"avg_latency_ms":18.221606613126244,"throughput_eps":0,"last_update":"2026-03-22T07:14:07.479636062Z"} +2026/03/22 07:14:12 [transform_engine] {"stage_name":"transform_engine","events_processed":145,"events_dropped":0,"avg_latency_ms":381.34990184510497,"throughput_eps":0,"last_update":"2026-03-22T07:14:07.479534447Z"} +2026/03/22 07:14:12 ───────────────────────────────────────────────── +2026/03/22 07:14:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:14:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:14:12.377431926Z"} +2026/03/22 07:14:17 [detection_layer] {"stage_name":"detection_layer","events_processed":145,"events_dropped":0,"avg_latency_ms":18.221606613126244,"throughput_eps":0,"last_update":"2026-03-22T07:14:12.479634923Z"} +2026/03/22 07:14:17 [transform_engine] {"stage_name":"transform_engine","events_processed":145,"events_dropped":0,"avg_latency_ms":381.34990184510497,"throughput_eps":0,"last_update":"2026-03-22T07:14:12.479655042Z"} +2026/03/22 07:14:17 [log_collector] {"stage_name":"log_collector","events_processed":7806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1561.2,"last_update":"2026-03-22T07:14:12.367969252Z"} +2026/03/22 07:14:17 [metric_collector] {"stage_name":"metric_collector","events_processed":4364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":872.8,"last_update":"2026-03-22T07:14:12.368509175Z"} +2026/03/22 07:14:17 ───────────────────────────────────────────────── +2026/03/22 07:14:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:14:22 [log_collector] {"stage_name":"log_collector","events_processed":7806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1561.2,"last_update":"2026-03-22T07:14:17.368486547Z"} +2026/03/22 07:14:22 [metric_collector] {"stage_name":"metric_collector","events_processed":4369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":873.8,"last_update":"2026-03-22T07:14:17.368761814Z"} +2026/03/22 07:14:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1750,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:14:17.378597893Z"} +2026/03/22 07:14:22 [detection_layer] {"stage_name":"detection_layer","events_processed":145,"events_dropped":0,"avg_latency_ms":18.221606613126244,"throughput_eps":0,"last_update":"2026-03-22T07:14:17.479859418Z"} +2026/03/22 07:14:22 [transform_engine] {"stage_name":"transform_engine","events_processed":145,"events_dropped":0,"avg_latency_ms":381.34990184510497,"throughput_eps":0,"last_update":"2026-03-22T07:14:17.479807017Z"} +2026/03/22 07:14:22 ───────────────────────────────────────────────── +2026/03/22 07:14:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:14:27 [metric_collector] {"stage_name":"metric_collector","events_processed":4374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":874.8,"last_update":"2026-03-22T07:14:22.368468705Z"} +2026/03/22 07:14:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1752,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:14:22.378703347Z"} +2026/03/22 07:14:27 [detection_layer] {"stage_name":"detection_layer","events_processed":145,"events_dropped":0,"avg_latency_ms":18.221606613126244,"throughput_eps":0,"last_update":"2026-03-22T07:14:22.478953784Z"} +2026/03/22 07:14:27 [transform_engine] {"stage_name":"transform_engine","events_processed":145,"events_dropped":0,"avg_latency_ms":381.34990184510497,"throughput_eps":0,"last_update":"2026-03-22T07:14:22.478897086Z"} +2026/03/22 07:14:27 [log_collector] {"stage_name":"log_collector","events_processed":7806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1561.2,"last_update":"2026-03-22T07:14:22.368020847Z"} +2026/03/22 07:14:27 ───────────────────────────────────────────────── +2026/03/22 07:14:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:14:32 [transform_engine] {"stage_name":"transform_engine","events_processed":146,"events_dropped":0,"avg_latency_ms":322.552610276084,"throughput_eps":0,"last_update":"2026-03-22T07:14:27.566876938Z"} +2026/03/22 07:14:32 [log_collector] {"stage_name":"log_collector","events_processed":7806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1561.2,"last_update":"2026-03-22T07:14:27.367989946Z"} +2026/03/22 07:14:32 [metric_collector] {"stage_name":"metric_collector","events_processed":4378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":875.6,"last_update":"2026-03-22T07:14:27.368128Z"} +2026/03/22 07:14:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:14:27.377231347Z"} +2026/03/22 07:14:32 [detection_layer] {"stage_name":"detection_layer","events_processed":145,"events_dropped":0,"avg_latency_ms":18.221606613126244,"throughput_eps":0,"last_update":"2026-03-22T07:14:27.47962614Z"} +2026/03/22 07:14:32 ───────────────────────────────────────────────── +Saved state: 11 clusters, 7807 messages, reason: none +2026/03/22 07:14:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:14:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:14:32.378297576Z"} +2026/03/22 07:14:37 [detection_layer] {"stage_name":"detection_layer","events_processed":146,"events_dropped":0,"avg_latency_ms":18.930865890500996,"throughput_eps":0,"last_update":"2026-03-22T07:14:32.479633532Z"} +2026/03/22 07:14:37 [transform_engine] {"stage_name":"transform_engine","events_processed":146,"events_dropped":0,"avg_latency_ms":322.552610276084,"throughput_eps":0,"last_update":"2026-03-22T07:14:32.479651145Z"} +2026/03/22 07:14:37 [log_collector] {"stage_name":"log_collector","events_processed":7806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1561.2,"last_update":"2026-03-22T07:14:32.368874287Z"} +2026/03/22 07:14:37 [metric_collector] {"stage_name":"metric_collector","events_processed":4384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":876.8,"last_update":"2026-03-22T07:14:32.369443848Z"} +2026/03/22 07:14:37 ───────────────────────────────────────────────── +2026/03/22 07:14:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:14:42 [transform_engine] {"stage_name":"transform_engine","events_processed":146,"events_dropped":0,"avg_latency_ms":322.552610276084,"throughput_eps":0,"last_update":"2026-03-22T07:14:37.479336018Z"} +2026/03/22 07:14:42 [log_collector] {"stage_name":"log_collector","events_processed":7811,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1562.2,"last_update":"2026-03-22T07:14:37.367977074Z"} +2026/03/22 07:14:42 [metric_collector] {"stage_name":"metric_collector","events_processed":4388,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":877.6,"last_update":"2026-03-22T07:14:37.367997263Z"} +2026/03/22 07:14:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1758,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:14:37.376100534Z"} +2026/03/22 07:14:42 [detection_layer] {"stage_name":"detection_layer","events_processed":146,"events_dropped":0,"avg_latency_ms":18.930865890500996,"throughput_eps":0,"last_update":"2026-03-22T07:14:37.479312342Z"} +2026/03/22 07:14:42 ───────────────────────────────────────────────── +2026/03/22 07:14:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:14:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:14:42.37721888Z"} +2026/03/22 07:14:47 [detection_layer] {"stage_name":"detection_layer","events_processed":146,"events_dropped":0,"avg_latency_ms":18.930865890500996,"throughput_eps":0,"last_update":"2026-03-22T07:14:42.479457714Z"} +2026/03/22 07:14:47 [transform_engine] {"stage_name":"transform_engine","events_processed":146,"events_dropped":0,"avg_latency_ms":322.552610276084,"throughput_eps":0,"last_update":"2026-03-22T07:14:42.479476951Z"} +2026/03/22 07:14:47 [log_collector] {"stage_name":"log_collector","events_processed":7811,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1562.2,"last_update":"2026-03-22T07:14:42.367953964Z"} +2026/03/22 07:14:47 [metric_collector] {"stage_name":"metric_collector","events_processed":4394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":878.8,"last_update":"2026-03-22T07:14:42.368324914Z"} +2026/03/22 07:14:47 ───────────────────────────────────────────────── +2026/03/22 07:14:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:14:52 [detection_layer] {"stage_name":"detection_layer","events_processed":146,"events_dropped":0,"avg_latency_ms":18.930865890500996,"throughput_eps":0,"last_update":"2026-03-22T07:14:47.479287921Z"} +2026/03/22 07:14:52 [transform_engine] {"stage_name":"transform_engine","events_processed":146,"events_dropped":0,"avg_latency_ms":322.552610276084,"throughput_eps":0,"last_update":"2026-03-22T07:14:47.47936054Z"} +2026/03/22 07:14:52 [log_collector] {"stage_name":"log_collector","events_processed":7811,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1562.2,"last_update":"2026-03-22T07:14:47.36869723Z"} +2026/03/22 07:14:52 [metric_collector] {"stage_name":"metric_collector","events_processed":4399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":879.8,"last_update":"2026-03-22T07:14:47.368620513Z"} +2026/03/22 07:14:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:14:47.375986702Z"} +2026/03/22 07:14:52 ───────────────────────────────────────────────── +2026/03/22 07:14:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:14:57 [metric_collector] {"stage_name":"metric_collector","events_processed":4404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":880.8,"last_update":"2026-03-22T07:14:52.369697618Z"} +2026/03/22 07:14:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:14:52.37774441Z"} +2026/03/22 07:14:57 [detection_layer] {"stage_name":"detection_layer","events_processed":146,"events_dropped":0,"avg_latency_ms":18.930865890500996,"throughput_eps":0,"last_update":"2026-03-22T07:14:52.479943067Z"} +2026/03/22 07:14:57 [transform_engine] {"stage_name":"transform_engine","events_processed":146,"events_dropped":0,"avg_latency_ms":322.552610276084,"throughput_eps":0,"last_update":"2026-03-22T07:14:52.478863359Z"} +2026/03/22 07:14:57 [log_collector] {"stage_name":"log_collector","events_processed":7811,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1562.2,"last_update":"2026-03-22T07:14:52.368730274Z"} +2026/03/22 07:14:57 ───────────────────────────────────────────────── +2026/03/22 07:15:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:15:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1766,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:14:57.375316219Z"} +2026/03/22 07:15:02 [detection_layer] {"stage_name":"detection_layer","events_processed":146,"events_dropped":0,"avg_latency_ms":18.930865890500996,"throughput_eps":0,"last_update":"2026-03-22T07:14:57.479509025Z"} +2026/03/22 07:15:02 [transform_engine] {"stage_name":"transform_engine","events_processed":146,"events_dropped":0,"avg_latency_ms":322.552610276084,"throughput_eps":0,"last_update":"2026-03-22T07:14:57.479484197Z"} +2026/03/22 07:15:02 [log_collector] {"stage_name":"log_collector","events_processed":7811,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1562.2,"last_update":"2026-03-22T07:14:57.367992641Z"} +2026/03/22 07:15:02 [metric_collector] {"stage_name":"metric_collector","events_processed":4409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":881.8,"last_update":"2026-03-22T07:14:57.368238001Z"} +2026/03/22 07:15:02 ───────────────────────────────────────────────── +2026/03/22 07:15:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:15:07 [log_collector] {"stage_name":"log_collector","events_processed":7811,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1562.2,"last_update":"2026-03-22T07:15:02.367962221Z"} +2026/03/22 07:15:07 [metric_collector] {"stage_name":"metric_collector","events_processed":4414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":882.8,"last_update":"2026-03-22T07:15:02.368171934Z"} +2026/03/22 07:15:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1768,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:15:02.377337379Z"} +2026/03/22 07:15:07 [detection_layer] {"stage_name":"detection_layer","events_processed":147,"events_dropped":0,"avg_latency_ms":17.847182912400797,"throughput_eps":0,"last_update":"2026-03-22T07:15:02.480577861Z"} +2026/03/22 07:15:07 [transform_engine] {"stage_name":"transform_engine","events_processed":147,"events_dropped":0,"avg_latency_ms":281.39197762086724,"throughput_eps":0,"last_update":"2026-03-22T07:15:02.479707824Z"} +2026/03/22 07:15:07 ───────────────────────────────────────────────── +2026/03/22 07:15:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:15:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1770,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:15:07.375066517Z"} +2026/03/22 07:15:12 [detection_layer] {"stage_name":"detection_layer","events_processed":147,"events_dropped":0,"avg_latency_ms":17.847182912400797,"throughput_eps":0,"last_update":"2026-03-22T07:15:07.479088596Z"} +2026/03/22 07:15:12 [transform_engine] {"stage_name":"transform_engine","events_processed":147,"events_dropped":0,"avg_latency_ms":281.39197762086724,"throughput_eps":0,"last_update":"2026-03-22T07:15:07.479062266Z"} +2026/03/22 07:15:12 [log_collector] {"stage_name":"log_collector","events_processed":7811,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1562.2,"last_update":"2026-03-22T07:15:07.368017896Z"} +2026/03/22 07:15:12 [metric_collector] {"stage_name":"metric_collector","events_processed":4419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":883.8,"last_update":"2026-03-22T07:15:07.368178975Z"} +2026/03/22 07:15:12 ───────────────────────────────────────────────── +2026/03/22 07:15:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:15:17 [log_collector] {"stage_name":"log_collector","events_processed":7811,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1562.2,"last_update":"2026-03-22T07:15:12.368230932Z"} +2026/03/22 07:15:17 [metric_collector] {"stage_name":"metric_collector","events_processed":4424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":884.8,"last_update":"2026-03-22T07:15:12.368520706Z"} +2026/03/22 07:15:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:15:12.375820819Z"} +2026/03/22 07:15:17 [detection_layer] {"stage_name":"detection_layer","events_processed":147,"events_dropped":0,"avg_latency_ms":17.847182912400797,"throughput_eps":0,"last_update":"2026-03-22T07:15:12.47894583Z"} +2026/03/22 07:15:17 [transform_engine] {"stage_name":"transform_engine","events_processed":147,"events_dropped":0,"avg_latency_ms":281.39197762086724,"throughput_eps":0,"last_update":"2026-03-22T07:15:12.478925671Z"} +2026/03/22 07:15:17 ───────────────────────────────────────────────── +2026/03/22 07:15:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:15:22 [log_collector] {"stage_name":"log_collector","events_processed":7814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1562.8,"last_update":"2026-03-22T07:15:17.367959639Z"} +2026/03/22 07:15:22 [metric_collector] {"stage_name":"metric_collector","events_processed":4429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":885.8,"last_update":"2026-03-22T07:15:17.368647135Z"} +2026/03/22 07:15:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:15:17.375984148Z"} +2026/03/22 07:15:22 [detection_layer] {"stage_name":"detection_layer","events_processed":147,"events_dropped":0,"avg_latency_ms":17.847182912400797,"throughput_eps":0,"last_update":"2026-03-22T07:15:17.479158833Z"} +2026/03/22 07:15:22 [transform_engine] {"stage_name":"transform_engine","events_processed":147,"events_dropped":0,"avg_latency_ms":281.39197762086724,"throughput_eps":0,"last_update":"2026-03-22T07:15:17.479197838Z"} +2026/03/22 07:15:22 ───────────────────────────────────────────────── +2026/03/22 07:15:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:15:27 [log_collector] {"stage_name":"log_collector","events_processed":7822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1564.4,"last_update":"2026-03-22T07:15:22.368919232Z"} +2026/03/22 07:15:27 [metric_collector] {"stage_name":"metric_collector","events_processed":4434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":886.8,"last_update":"2026-03-22T07:15:22.369397828Z"} +2026/03/22 07:15:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:15:22.377912898Z"} +2026/03/22 07:15:27 [detection_layer] {"stage_name":"detection_layer","events_processed":147,"events_dropped":0,"avg_latency_ms":17.847182912400797,"throughput_eps":0,"last_update":"2026-03-22T07:15:22.47925887Z"} +2026/03/22 07:15:27 [transform_engine] {"stage_name":"transform_engine","events_processed":147,"events_dropped":0,"avg_latency_ms":281.39197762086724,"throughput_eps":0,"last_update":"2026-03-22T07:15:22.47914433Z"} +2026/03/22 07:15:27 ───────────────────────────────────────────────── +2026/03/22 07:15:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:15:32 [log_collector] {"stage_name":"log_collector","events_processed":8166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1633.2,"last_update":"2026-03-22T07:15:32.368725168Z"} +2026/03/22 07:15:32 [metric_collector] {"stage_name":"metric_collector","events_processed":4444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":888.8,"last_update":"2026-03-22T07:15:32.368563308Z"} +2026/03/22 07:15:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:15:27.375866593Z"} +2026/03/22 07:15:32 [detection_layer] {"stage_name":"detection_layer","events_processed":147,"events_dropped":0,"avg_latency_ms":17.847182912400797,"throughput_eps":0,"last_update":"2026-03-22T07:15:27.479386649Z"} +2026/03/22 07:15:32 [transform_engine] {"stage_name":"transform_engine","events_processed":148,"events_dropped":0,"avg_latency_ms":254.3956252966938,"throughput_eps":0,"last_update":"2026-03-22T07:15:27.625455732Z"} +2026/03/22 07:15:32 ───────────────────────────────────────────────── +2026/03/22 07:15:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:15:37 [metric_collector] {"stage_name":"metric_collector","events_processed":4444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":888.8,"last_update":"2026-03-22T07:15:32.368563308Z"} +2026/03/22 07:15:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1780,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:15:32.37692319Z"} +2026/03/22 07:15:37 [detection_layer] {"stage_name":"detection_layer","events_processed":148,"events_dropped":0,"avg_latency_ms":16.95213872992064,"throughput_eps":0,"last_update":"2026-03-22T07:15:32.47915059Z"} +2026/03/22 07:15:37 [transform_engine] {"stage_name":"transform_engine","events_processed":148,"events_dropped":0,"avg_latency_ms":254.3956252966938,"throughput_eps":0,"last_update":"2026-03-22T07:15:32.479124981Z"} +2026/03/22 07:15:37 [log_collector] {"stage_name":"log_collector","events_processed":8166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1633.2,"last_update":"2026-03-22T07:15:32.368725168Z"} +2026/03/22 07:15:37 ───────────────────────────────────────────────── +2026/03/22 07:15:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:15:42 [detection_layer] {"stage_name":"detection_layer","events_processed":148,"events_dropped":0,"avg_latency_ms":16.95213872992064,"throughput_eps":0,"last_update":"2026-03-22T07:15:37.479662646Z"} +2026/03/22 07:15:42 [transform_engine] {"stage_name":"transform_engine","events_processed":148,"events_dropped":0,"avg_latency_ms":254.3956252966938,"throughput_eps":0,"last_update":"2026-03-22T07:15:37.479618932Z"} +2026/03/22 07:15:42 [log_collector] {"stage_name":"log_collector","events_processed":8172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1634.4,"last_update":"2026-03-22T07:15:42.368658387Z"} +2026/03/22 07:15:42 [metric_collector] {"stage_name":"metric_collector","events_processed":4449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":889.8,"last_update":"2026-03-22T07:15:37.369403201Z"} +2026/03/22 07:15:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1782,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:15:37.378250066Z"} +2026/03/22 07:15:42 ───────────────────────────────────────────────── +2026/03/22 07:15:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:15:47 [log_collector] {"stage_name":"log_collector","events_processed":8172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1634.4,"last_update":"2026-03-22T07:15:42.368658387Z"} +2026/03/22 07:15:47 [metric_collector] {"stage_name":"metric_collector","events_processed":4454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":890.8,"last_update":"2026-03-22T07:15:42.369107056Z"} +2026/03/22 07:15:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:15:42.379733561Z"} +2026/03/22 07:15:47 [detection_layer] {"stage_name":"detection_layer","events_processed":148,"events_dropped":0,"avg_latency_ms":16.95213872992064,"throughput_eps":0,"last_update":"2026-03-22T07:15:42.478948521Z"} +2026/03/22 07:15:47 [transform_engine] {"stage_name":"transform_engine","events_processed":148,"events_dropped":0,"avg_latency_ms":254.3956252966938,"throughput_eps":0,"last_update":"2026-03-22T07:15:42.478936998Z"} +2026/03/22 07:15:47 ───────────────────────────────────────────────── +2026/03/22 07:15:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:15:52 [detection_layer] {"stage_name":"detection_layer","events_processed":148,"events_dropped":0,"avg_latency_ms":16.95213872992064,"throughput_eps":0,"last_update":"2026-03-22T07:15:47.479687018Z"} +2026/03/22 07:15:52 [transform_engine] {"stage_name":"transform_engine","events_processed":148,"events_dropped":0,"avg_latency_ms":254.3956252966938,"throughput_eps":0,"last_update":"2026-03-22T07:15:47.479580805Z"} +2026/03/22 07:15:52 [log_collector] {"stage_name":"log_collector","events_processed":8172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1634.4,"last_update":"2026-03-22T07:15:52.3681547Z"} +2026/03/22 07:15:52 [metric_collector] {"stage_name":"metric_collector","events_processed":4459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":891.8,"last_update":"2026-03-22T07:15:47.368647862Z"} +2026/03/22 07:15:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:15:47.377195493Z"} +2026/03/22 07:15:52 ───────────────────────────────────────────────── +2026/03/22 07:15:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:15:57 [detection_layer] {"stage_name":"detection_layer","events_processed":148,"events_dropped":0,"avg_latency_ms":16.95213872992064,"throughput_eps":0,"last_update":"2026-03-22T07:15:52.479830597Z"} +2026/03/22 07:15:57 [transform_engine] {"stage_name":"transform_engine","events_processed":148,"events_dropped":0,"avg_latency_ms":254.3956252966938,"throughput_eps":0,"last_update":"2026-03-22T07:15:52.479877286Z"} +2026/03/22 07:15:57 [log_collector] {"stage_name":"log_collector","events_processed":8172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1634.4,"last_update":"2026-03-22T07:15:52.3681547Z"} +2026/03/22 07:15:57 [metric_collector] {"stage_name":"metric_collector","events_processed":4464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":892.8,"last_update":"2026-03-22T07:15:52.369014787Z"} +2026/03/22 07:15:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:15:52.378635574Z"} +2026/03/22 07:15:57 ───────────────────────────────────────────────── +2026/03/22 07:16:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:16:02 [log_collector] {"stage_name":"log_collector","events_processed":8172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1634.4,"last_update":"2026-03-22T07:15:57.369088621Z"} +2026/03/22 07:16:02 [metric_collector] {"stage_name":"metric_collector","events_processed":4469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":893.8,"last_update":"2026-03-22T07:15:57.369796447Z"} +2026/03/22 07:16:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:15:57.380131653Z"} +2026/03/22 07:16:02 [detection_layer] {"stage_name":"detection_layer","events_processed":148,"events_dropped":0,"avg_latency_ms":16.95213872992064,"throughput_eps":0,"last_update":"2026-03-22T07:15:57.479412357Z"} +2026/03/22 07:16:02 [transform_engine] {"stage_name":"transform_engine","events_processed":149,"events_dropped":0,"avg_latency_ms":225.59933623735503,"throughput_eps":0,"last_update":"2026-03-22T07:15:57.589857206Z"} +2026/03/22 07:16:02 ───────────────────────────────────────────────── +2026/03/22 07:16:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:16:07 [log_collector] {"stage_name":"log_collector","events_processed":8172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1634.4,"last_update":"2026-03-22T07:16:07.368799837Z"} +2026/03/22 07:16:07 [metric_collector] {"stage_name":"metric_collector","events_processed":4474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":894.8,"last_update":"2026-03-22T07:16:02.368290617Z"} +2026/03/22 07:16:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:16:02.377851158Z"} +2026/03/22 07:16:07 [detection_layer] {"stage_name":"detection_layer","events_processed":149,"events_dropped":0,"avg_latency_ms":17.848240983936513,"throughput_eps":0,"last_update":"2026-03-22T07:16:02.479091627Z"} +2026/03/22 07:16:07 [transform_engine] {"stage_name":"transform_engine","events_processed":149,"events_dropped":0,"avg_latency_ms":225.59933623735503,"throughput_eps":0,"last_update":"2026-03-22T07:16:02.479067751Z"} +2026/03/22 07:16:07 ───────────────────────────────────────────────── +2026/03/22 07:16:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:16:12 [transform_engine] {"stage_name":"transform_engine","events_processed":149,"events_dropped":0,"avg_latency_ms":225.59933623735503,"throughput_eps":0,"last_update":"2026-03-22T07:16:07.479431473Z"} +2026/03/22 07:16:12 [log_collector] {"stage_name":"log_collector","events_processed":8172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1634.4,"last_update":"2026-03-22T07:16:07.368799837Z"} +2026/03/22 07:16:12 [metric_collector] {"stage_name":"metric_collector","events_processed":4479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":895.8,"last_update":"2026-03-22T07:16:07.369044115Z"} +2026/03/22 07:16:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:16:07.380044284Z"} +2026/03/22 07:16:12 [detection_layer] {"stage_name":"detection_layer","events_processed":149,"events_dropped":0,"avg_latency_ms":17.848240983936513,"throughput_eps":0,"last_update":"2026-03-22T07:16:07.479549589Z"} +2026/03/22 07:16:12 ───────────────────────────────────────────────── +2026/03/22 07:16:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:16:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1796,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:16:12.377568336Z"} +2026/03/22 07:16:17 [detection_layer] {"stage_name":"detection_layer","events_processed":149,"events_dropped":0,"avg_latency_ms":17.848240983936513,"throughput_eps":0,"last_update":"2026-03-22T07:16:12.479878944Z"} +2026/03/22 07:16:17 [transform_engine] {"stage_name":"transform_engine","events_processed":149,"events_dropped":0,"avg_latency_ms":225.59933623735503,"throughput_eps":0,"last_update":"2026-03-22T07:16:12.47986113Z"} +2026/03/22 07:16:17 [log_collector] {"stage_name":"log_collector","events_processed":8172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1634.4,"last_update":"2026-03-22T07:16:17.368858829Z"} +2026/03/22 07:16:17 [metric_collector] {"stage_name":"metric_collector","events_processed":4484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":896.8,"last_update":"2026-03-22T07:16:12.368627852Z"} +2026/03/22 07:16:17 ───────────────────────────────────────────────── +2026/03/22 07:16:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:16:22 [log_collector] {"stage_name":"log_collector","events_processed":8172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1634.4,"last_update":"2026-03-22T07:16:17.368858829Z"} +2026/03/22 07:16:22 [metric_collector] {"stage_name":"metric_collector","events_processed":4489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":897.8,"last_update":"2026-03-22T07:16:17.369189003Z"} +2026/03/22 07:16:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:16:17.378083067Z"} +2026/03/22 07:16:22 [detection_layer] {"stage_name":"detection_layer","events_processed":149,"events_dropped":0,"avg_latency_ms":17.848240983936513,"throughput_eps":0,"last_update":"2026-03-22T07:16:17.479395974Z"} +2026/03/22 07:16:22 [transform_engine] {"stage_name":"transform_engine","events_processed":149,"events_dropped":0,"avg_latency_ms":225.59933623735503,"throughput_eps":0,"last_update":"2026-03-22T07:16:17.479288097Z"} +2026/03/22 07:16:22 ───────────────────────────────────────────────── +2026/03/22 07:16:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:16:27 [metric_collector] {"stage_name":"metric_collector","events_processed":4494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":898.8,"last_update":"2026-03-22T07:16:22.369114714Z"} +2026/03/22 07:16:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1800,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:16:22.378465444Z"} +2026/03/22 07:16:27 [detection_layer] {"stage_name":"detection_layer","events_processed":149,"events_dropped":0,"avg_latency_ms":17.848240983936513,"throughput_eps":0,"last_update":"2026-03-22T07:16:22.479717875Z"} +2026/03/22 07:16:27 [transform_engine] {"stage_name":"transform_engine","events_processed":149,"events_dropped":0,"avg_latency_ms":225.59933623735503,"throughput_eps":0,"last_update":"2026-03-22T07:16:22.479829999Z"} +2026/03/22 07:16:27 [log_collector] {"stage_name":"log_collector","events_processed":8172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1634.4,"last_update":"2026-03-22T07:16:22.368806273Z"} +2026/03/22 07:16:27 ───────────────────────────────────────────────── +2026/03/22 07:16:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:16:32 [transform_engine] {"stage_name":"transform_engine","events_processed":150,"events_dropped":0,"avg_latency_ms":193.97012218988402,"throughput_eps":0,"last_update":"2026-03-22T07:16:27.546509598Z"} +2026/03/22 07:16:32 [log_collector] {"stage_name":"log_collector","events_processed":8172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1634.4,"last_update":"2026-03-22T07:16:27.368018901Z"} +2026/03/22 07:16:32 [metric_collector] {"stage_name":"metric_collector","events_processed":4499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":899.8,"last_update":"2026-03-22T07:16:27.368650451Z"} +2026/03/22 07:16:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1802,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:16:27.377845823Z"} +2026/03/22 07:16:32 [detection_layer] {"stage_name":"detection_layer","events_processed":149,"events_dropped":0,"avg_latency_ms":17.848240983936513,"throughput_eps":0,"last_update":"2026-03-22T07:16:27.479506636Z"} +2026/03/22 07:16:32 ───────────────────────────────────────────────── +2026/03/22 07:16:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:16:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:16:32.378799847Z"} +2026/03/22 07:16:37 [detection_layer] {"stage_name":"detection_layer","events_processed":150,"events_dropped":0,"avg_latency_ms":18.07204658714921,"throughput_eps":0,"last_update":"2026-03-22T07:16:32.478959865Z"} +2026/03/22 07:16:37 [transform_engine] {"stage_name":"transform_engine","events_processed":150,"events_dropped":0,"avg_latency_ms":193.97012218988402,"throughput_eps":0,"last_update":"2026-03-22T07:16:32.478951039Z"} +2026/03/22 07:16:37 [log_collector] {"stage_name":"log_collector","events_processed":8172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1634.4,"last_update":"2026-03-22T07:16:32.368913983Z"} +2026/03/22 07:16:37 [metric_collector] {"stage_name":"metric_collector","events_processed":4504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":900.8,"last_update":"2026-03-22T07:16:32.369205411Z"} +2026/03/22 07:16:37 ───────────────────────────────────────────────── +2026/03/22 07:16:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:16:42 [log_collector] {"stage_name":"log_collector","events_processed":8172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1634.4,"last_update":"2026-03-22T07:16:37.368175105Z"} +2026/03/22 07:16:42 [metric_collector] {"stage_name":"metric_collector","events_processed":4509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":901.8,"last_update":"2026-03-22T07:16:37.368489287Z"} +2026/03/22 07:16:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:16:37.377386488Z"} +2026/03/22 07:16:42 [detection_layer] {"stage_name":"detection_layer","events_processed":150,"events_dropped":0,"avg_latency_ms":18.07204658714921,"throughput_eps":0,"last_update":"2026-03-22T07:16:37.47961144Z"} +2026/03/22 07:16:42 [transform_engine] {"stage_name":"transform_engine","events_processed":150,"events_dropped":0,"avg_latency_ms":193.97012218988402,"throughput_eps":0,"last_update":"2026-03-22T07:16:37.479593677Z"} +2026/03/22 07:16:42 ───────────────────────────────────────────────── +2026/03/22 07:16:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:16:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:16:42.379031156Z"} +2026/03/22 07:16:47 [detection_layer] {"stage_name":"detection_layer","events_processed":150,"events_dropped":0,"avg_latency_ms":18.07204658714921,"throughput_eps":0,"last_update":"2026-03-22T07:16:42.479202665Z"} +2026/03/22 07:16:47 [transform_engine] {"stage_name":"transform_engine","events_processed":150,"events_dropped":0,"avg_latency_ms":193.97012218988402,"throughput_eps":0,"last_update":"2026-03-22T07:16:42.479269223Z"} +2026/03/22 07:16:47 [log_collector] {"stage_name":"log_collector","events_processed":8172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1634.4,"last_update":"2026-03-22T07:16:47.368495726Z"} +2026/03/22 07:16:47 [metric_collector] {"stage_name":"metric_collector","events_processed":4514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":902.8,"last_update":"2026-03-22T07:16:42.368564929Z"} +2026/03/22 07:16:47 ───────────────────────────────────────────────── +2026/03/22 07:16:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:16:52 [log_collector] {"stage_name":"log_collector","events_processed":8172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1634.4,"last_update":"2026-03-22T07:16:47.368495726Z"} +2026/03/22 07:16:52 [metric_collector] {"stage_name":"metric_collector","events_processed":4519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":903.8,"last_update":"2026-03-22T07:16:47.369126745Z"} +2026/03/22 07:16:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:16:47.377469784Z"} +2026/03/22 07:16:52 [detection_layer] {"stage_name":"detection_layer","events_processed":150,"events_dropped":0,"avg_latency_ms":18.07204658714921,"throughput_eps":0,"last_update":"2026-03-22T07:16:47.479812212Z"} +2026/03/22 07:16:52 [transform_engine] {"stage_name":"transform_engine","events_processed":150,"events_dropped":0,"avg_latency_ms":193.97012218988402,"throughput_eps":0,"last_update":"2026-03-22T07:16:47.479907133Z"} +2026/03/22 07:16:52 ───────────────────────────────────────────────── +Saved state: 11 clusters, 8173 messages, reason: none +2026/03/22 07:16:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:16:57 [log_collector] {"stage_name":"log_collector","events_processed":8175,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1635,"last_update":"2026-03-22T07:16:57.368609215Z"} +2026/03/22 07:16:57 [metric_collector] {"stage_name":"metric_collector","events_processed":4524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":904.8,"last_update":"2026-03-22T07:16:52.369225724Z"} +2026/03/22 07:16:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1812,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:16:52.376819729Z"} +2026/03/22 07:16:57 [detection_layer] {"stage_name":"detection_layer","events_processed":150,"events_dropped":0,"avg_latency_ms":18.07204658714921,"throughput_eps":0,"last_update":"2026-03-22T07:16:52.479283048Z"} +2026/03/22 07:16:57 [transform_engine] {"stage_name":"transform_engine","events_processed":150,"events_dropped":0,"avg_latency_ms":193.97012218988402,"throughput_eps":0,"last_update":"2026-03-22T07:16:52.479181083Z"} +2026/03/22 07:16:57 ───────────────────────────────────────────────── +2026/03/22 07:17:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:17:02 [log_collector] {"stage_name":"log_collector","events_processed":8175,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1635,"last_update":"2026-03-22T07:16:57.368609215Z"} +2026/03/22 07:17:02 [metric_collector] {"stage_name":"metric_collector","events_processed":4529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":905.8,"last_update":"2026-03-22T07:16:57.368680823Z"} +2026/03/22 07:17:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:16:57.376925753Z"} +2026/03/22 07:17:02 [detection_layer] {"stage_name":"detection_layer","events_processed":150,"events_dropped":0,"avg_latency_ms":18.07204658714921,"throughput_eps":0,"last_update":"2026-03-22T07:16:57.4791472Z"} +2026/03/22 07:17:02 [transform_engine] {"stage_name":"transform_engine","events_processed":151,"events_dropped":0,"avg_latency_ms":222.16748315190722,"throughput_eps":0,"last_update":"2026-03-22T07:16:57.814125477Z"} +2026/03/22 07:17:02 ───────────────────────────────────────────────── +2026/03/22 07:17:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:17:07 [log_collector] {"stage_name":"log_collector","events_processed":8175,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1635,"last_update":"2026-03-22T07:17:02.367983561Z"} +2026/03/22 07:17:07 [metric_collector] {"stage_name":"metric_collector","events_processed":4534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":906.8,"last_update":"2026-03-22T07:17:02.368266492Z"} +2026/03/22 07:17:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1816,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:17:02.379613525Z"} +2026/03/22 07:17:07 [detection_layer] {"stage_name":"detection_layer","events_processed":151,"events_dropped":0,"avg_latency_ms":17.810791669719368,"throughput_eps":0,"last_update":"2026-03-22T07:17:02.478992407Z"} +2026/03/22 07:17:07 [transform_engine] {"stage_name":"transform_engine","events_processed":151,"events_dropped":0,"avg_latency_ms":222.16748315190722,"throughput_eps":0,"last_update":"2026-03-22T07:17:02.479002105Z"} +2026/03/22 07:17:07 ───────────────────────────────────────────────── +2026/03/22 07:17:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:17:12 [metric_collector] {"stage_name":"metric_collector","events_processed":4539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":907.8,"last_update":"2026-03-22T07:17:07.368667004Z"} +2026/03/22 07:17:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1818,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:17:07.377466057Z"} +2026/03/22 07:17:12 [detection_layer] {"stage_name":"detection_layer","events_processed":151,"events_dropped":0,"avg_latency_ms":17.810791669719368,"throughput_eps":0,"last_update":"2026-03-22T07:17:07.479703583Z"} +2026/03/22 07:17:12 [transform_engine] {"stage_name":"transform_engine","events_processed":151,"events_dropped":0,"avg_latency_ms":222.16748315190722,"throughput_eps":0,"last_update":"2026-03-22T07:17:07.479716919Z"} +2026/03/22 07:17:12 [log_collector] {"stage_name":"log_collector","events_processed":8200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1640,"last_update":"2026-03-22T07:17:12.368505902Z"} +2026/03/22 07:17:12 ───────────────────────────────────────────────── +2026/03/22 07:17:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:17:17 [transform_engine] {"stage_name":"transform_engine","events_processed":151,"events_dropped":0,"avg_latency_ms":222.16748315190722,"throughput_eps":0,"last_update":"2026-03-22T07:17:12.47899935Z"} +2026/03/22 07:17:17 [log_collector] {"stage_name":"log_collector","events_processed":8202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1640.4,"last_update":"2026-03-22T07:17:17.368224789Z"} +2026/03/22 07:17:17 [metric_collector] {"stage_name":"metric_collector","events_processed":4544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":908.8,"last_update":"2026-03-22T07:17:12.368998525Z"} +2026/03/22 07:17:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1820,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:17:12.378783185Z"} +2026/03/22 07:17:17 [detection_layer] {"stage_name":"detection_layer","events_processed":151,"events_dropped":0,"avg_latency_ms":17.810791669719368,"throughput_eps":0,"last_update":"2026-03-22T07:17:12.478985013Z"} +2026/03/22 07:17:17 ───────────────────────────────────────────────── +2026/03/22 07:17:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:17:22 [log_collector] {"stage_name":"log_collector","events_processed":8215,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1643,"last_update":"2026-03-22T07:17:22.368597471Z"} +2026/03/22 07:17:22 [metric_collector] {"stage_name":"metric_collector","events_processed":4549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":909.8,"last_update":"2026-03-22T07:17:17.368667196Z"} +2026/03/22 07:17:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:17:17.377009625Z"} +2026/03/22 07:17:22 [detection_layer] {"stage_name":"detection_layer","events_processed":151,"events_dropped":0,"avg_latency_ms":17.810791669719368,"throughput_eps":0,"last_update":"2026-03-22T07:17:17.479463365Z"} +2026/03/22 07:17:22 [transform_engine] {"stage_name":"transform_engine","events_processed":151,"events_dropped":0,"avg_latency_ms":222.16748315190722,"throughput_eps":0,"last_update":"2026-03-22T07:17:17.479483764Z"} +2026/03/22 07:17:22 ───────────────────────────────────────────────── +2026/03/22 07:17:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:17:27 [log_collector] {"stage_name":"log_collector","events_processed":8215,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1643,"last_update":"2026-03-22T07:17:22.368597471Z"} +2026/03/22 07:17:27 [metric_collector] {"stage_name":"metric_collector","events_processed":4554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":910.8,"last_update":"2026-03-22T07:17:22.369269058Z"} +2026/03/22 07:17:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:17:22.3778953Z"} +2026/03/22 07:17:27 [detection_layer] {"stage_name":"detection_layer","events_processed":151,"events_dropped":0,"avg_latency_ms":17.810791669719368,"throughput_eps":0,"last_update":"2026-03-22T07:17:22.47921118Z"} +2026/03/22 07:17:27 [transform_engine] {"stage_name":"transform_engine","events_processed":151,"events_dropped":0,"avg_latency_ms":222.16748315190722,"throughput_eps":0,"last_update":"2026-03-22T07:17:22.479222361Z"} +2026/03/22 07:17:27 ───────────────────────────────────────────────── +2026/03/22 07:17:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:17:32 [log_collector] {"stage_name":"log_collector","events_processed":8216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1643.2,"last_update":"2026-03-22T07:17:27.368133821Z"} +2026/03/22 07:17:32 [metric_collector] {"stage_name":"metric_collector","events_processed":4559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":911.8,"last_update":"2026-03-22T07:17:27.368281134Z"} +2026/03/22 07:17:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1826,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:17:27.377260943Z"} +2026/03/22 07:17:32 [detection_layer] {"stage_name":"detection_layer","events_processed":151,"events_dropped":0,"avg_latency_ms":17.810791669719368,"throughput_eps":0,"last_update":"2026-03-22T07:17:27.479523917Z"} +2026/03/22 07:17:32 [transform_engine] {"stage_name":"transform_engine","events_processed":152,"events_dropped":0,"avg_latency_ms":199.6864581215258,"throughput_eps":0,"last_update":"2026-03-22T07:17:27.589299871Z"} +2026/03/22 07:17:32 ───────────────────────────────────────────────── +2026/03/22 07:17:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:17:37 [transform_engine] {"stage_name":"transform_engine","events_processed":152,"events_dropped":0,"avg_latency_ms":199.6864581215258,"throughput_eps":0,"last_update":"2026-03-22T07:17:32.479271005Z"} +2026/03/22 07:17:37 [log_collector] {"stage_name":"log_collector","events_processed":8216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1643.2,"last_update":"2026-03-22T07:17:37.367975524Z"} +2026/03/22 07:17:37 [metric_collector] {"stage_name":"metric_collector","events_processed":4564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":912.8,"last_update":"2026-03-22T07:17:32.368699126Z"} +2026/03/22 07:17:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:17:32.377010997Z"} +2026/03/22 07:17:37 [detection_layer] {"stage_name":"detection_layer","events_processed":152,"events_dropped":0,"avg_latency_ms":17.792068135775494,"throughput_eps":0,"last_update":"2026-03-22T07:17:32.479328334Z"} +2026/03/22 07:17:37 ───────────────────────────────────────────────── +2026/03/22 07:17:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:17:42 [log_collector] {"stage_name":"log_collector","events_processed":8216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1643.2,"last_update":"2026-03-22T07:17:37.367975524Z"} +2026/03/22 07:17:42 [metric_collector] {"stage_name":"metric_collector","events_processed":4569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":913.8,"last_update":"2026-03-22T07:17:37.368871511Z"} +2026/03/22 07:17:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1830,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:17:37.379503414Z"} +2026/03/22 07:17:42 [detection_layer] {"stage_name":"detection_layer","events_processed":152,"events_dropped":0,"avg_latency_ms":17.792068135775494,"throughput_eps":0,"last_update":"2026-03-22T07:17:37.479717423Z"} +2026/03/22 07:17:42 [transform_engine] {"stage_name":"transform_engine","events_processed":152,"events_dropped":0,"avg_latency_ms":199.6864581215258,"throughput_eps":0,"last_update":"2026-03-22T07:17:37.479691984Z"} +2026/03/22 07:17:42 ───────────────────────────────────────────────── +2026/03/22 07:17:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:17:47 [transform_engine] {"stage_name":"transform_engine","events_processed":152,"events_dropped":0,"avg_latency_ms":199.6864581215258,"throughput_eps":0,"last_update":"2026-03-22T07:17:42.479794013Z"} +2026/03/22 07:17:47 [log_collector] {"stage_name":"log_collector","events_processed":8216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1643.2,"last_update":"2026-03-22T07:17:42.367992731Z"} +2026/03/22 07:17:47 [metric_collector] {"stage_name":"metric_collector","events_processed":4574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":914.8,"last_update":"2026-03-22T07:17:42.368339145Z"} +2026/03/22 07:17:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1832,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:17:42.377566488Z"} +2026/03/22 07:17:47 [detection_layer] {"stage_name":"detection_layer","events_processed":152,"events_dropped":0,"avg_latency_ms":17.792068135775494,"throughput_eps":0,"last_update":"2026-03-22T07:17:42.47982385Z"} +2026/03/22 07:17:47 ───────────────────────────────────────────────── +2026/03/22 07:17:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:17:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:17:47.379023057Z"} +2026/03/22 07:17:52 [detection_layer] {"stage_name":"detection_layer","events_processed":152,"events_dropped":0,"avg_latency_ms":17.792068135775494,"throughput_eps":0,"last_update":"2026-03-22T07:17:47.47932783Z"} +2026/03/22 07:17:52 [transform_engine] {"stage_name":"transform_engine","events_processed":152,"events_dropped":0,"avg_latency_ms":199.6864581215258,"throughput_eps":0,"last_update":"2026-03-22T07:17:47.47926526Z"} +2026/03/22 07:17:52 [log_collector] {"stage_name":"log_collector","events_processed":8216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1643.2,"last_update":"2026-03-22T07:17:47.368016346Z"} +2026/03/22 07:17:52 [metric_collector] {"stage_name":"metric_collector","events_processed":4579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":915.8,"last_update":"2026-03-22T07:17:47.368375294Z"} +2026/03/22 07:17:52 ───────────────────────────────────────────────── +2026/03/22 07:17:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:17:57 [detection_layer] {"stage_name":"detection_layer","events_processed":152,"events_dropped":0,"avg_latency_ms":17.792068135775494,"throughput_eps":0,"last_update":"2026-03-22T07:17:52.479554604Z"} +2026/03/22 07:17:57 [transform_engine] {"stage_name":"transform_engine","events_processed":152,"events_dropped":0,"avg_latency_ms":199.6864581215258,"throughput_eps":0,"last_update":"2026-03-22T07:17:52.479511992Z"} +2026/03/22 07:17:57 [log_collector] {"stage_name":"log_collector","events_processed":8216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1643.2,"last_update":"2026-03-22T07:17:52.368037345Z"} +2026/03/22 07:17:57 [metric_collector] {"stage_name":"metric_collector","events_processed":4584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":916.8,"last_update":"2026-03-22T07:17:52.368397124Z"} +2026/03/22 07:17:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:17:52.37724981Z"} +2026/03/22 07:17:57 ───────────────────────────────────────────────── +2026/03/22 07:18:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:18:02 [log_collector] {"stage_name":"log_collector","events_processed":8216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1643.2,"last_update":"2026-03-22T07:17:57.368164551Z"} +2026/03/22 07:18:02 [metric_collector] {"stage_name":"metric_collector","events_processed":4589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":917.8,"last_update":"2026-03-22T07:17:57.368298688Z"} +2026/03/22 07:18:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:17:57.37801623Z"} +2026/03/22 07:18:02 [detection_layer] {"stage_name":"detection_layer","events_processed":152,"events_dropped":0,"avg_latency_ms":17.792068135775494,"throughput_eps":0,"last_update":"2026-03-22T07:17:57.479466857Z"} +2026/03/22 07:18:02 [transform_engine] {"stage_name":"transform_engine","events_processed":153,"events_dropped":0,"avg_latency_ms":175.28814009722063,"throughput_eps":0,"last_update":"2026-03-22T07:17:57.557128211Z"} +2026/03/22 07:18:02 ───────────────────────────────────────────────── +2026/03/22 07:18:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:18:07 [log_collector] {"stage_name":"log_collector","events_processed":8216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1643.2,"last_update":"2026-03-22T07:18:07.368585386Z"} +2026/03/22 07:18:07 [metric_collector] {"stage_name":"metric_collector","events_processed":4594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":918.8,"last_update":"2026-03-22T07:18:02.368565502Z"} +2026/03/22 07:18:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:18:02.377668697Z"} +2026/03/22 07:18:07 [detection_layer] {"stage_name":"detection_layer","events_processed":153,"events_dropped":0,"avg_latency_ms":18.202253508620398,"throughput_eps":0,"last_update":"2026-03-22T07:18:02.479864501Z"} +2026/03/22 07:18:07 [transform_engine] {"stage_name":"transform_engine","events_processed":153,"events_dropped":0,"avg_latency_ms":175.28814009722063,"throughput_eps":0,"last_update":"2026-03-22T07:18:02.479966957Z"} +2026/03/22 07:18:07 ───────────────────────────────────────────────── +2026/03/22 07:18:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:18:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:18:07.377786269Z"} +2026/03/22 07:18:12 [detection_layer] {"stage_name":"detection_layer","events_processed":153,"events_dropped":0,"avg_latency_ms":18.202253508620398,"throughput_eps":0,"last_update":"2026-03-22T07:18:07.478978411Z"} +2026/03/22 07:18:12 [transform_engine] {"stage_name":"transform_engine","events_processed":153,"events_dropped":0,"avg_latency_ms":175.28814009722063,"throughput_eps":0,"last_update":"2026-03-22T07:18:07.479021404Z"} +2026/03/22 07:18:12 [log_collector] {"stage_name":"log_collector","events_processed":8216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1643.2,"last_update":"2026-03-22T07:18:07.368585386Z"} +2026/03/22 07:18:12 [metric_collector] {"stage_name":"metric_collector","events_processed":4599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":919.8,"last_update":"2026-03-22T07:18:07.369172812Z"} +2026/03/22 07:18:12 ───────────────────────────────────────────────── +2026/03/22 07:18:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:18:17 [detection_layer] {"stage_name":"detection_layer","events_processed":153,"events_dropped":0,"avg_latency_ms":18.202253508620398,"throughput_eps":0,"last_update":"2026-03-22T07:18:12.479625748Z"} +2026/03/22 07:18:17 [transform_engine] {"stage_name":"transform_engine","events_processed":153,"events_dropped":0,"avg_latency_ms":175.28814009722063,"throughput_eps":0,"last_update":"2026-03-22T07:18:12.479572616Z"} +2026/03/22 07:18:17 [log_collector] {"stage_name":"log_collector","events_processed":8216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1643.2,"last_update":"2026-03-22T07:18:17.368191472Z"} +2026/03/22 07:18:17 [metric_collector] {"stage_name":"metric_collector","events_processed":4604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":920.8,"last_update":"2026-03-22T07:18:12.369019146Z"} +2026/03/22 07:18:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:18:12.377194674Z"} +2026/03/22 07:18:17 ───────────────────────────────────────────────── +2026/03/22 07:18:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:18:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:18:17.377686869Z"} +2026/03/22 07:18:22 [detection_layer] {"stage_name":"detection_layer","events_processed":153,"events_dropped":0,"avg_latency_ms":18.202253508620398,"throughput_eps":0,"last_update":"2026-03-22T07:18:17.480015757Z"} +2026/03/22 07:18:22 [transform_engine] {"stage_name":"transform_engine","events_processed":153,"events_dropped":0,"avg_latency_ms":175.28814009722063,"throughput_eps":0,"last_update":"2026-03-22T07:18:17.478864082Z"} +2026/03/22 07:18:22 [log_collector] {"stage_name":"log_collector","events_processed":8216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1643.2,"last_update":"2026-03-22T07:18:22.368208348Z"} +2026/03/22 07:18:22 [metric_collector] {"stage_name":"metric_collector","events_processed":4609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":921.8,"last_update":"2026-03-22T07:18:17.368755934Z"} +2026/03/22 07:18:22 ───────────────────────────────────────────────── +Saved state: 11 clusters, 8217 messages, reason: none +2026/03/22 07:18:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:18:27 [metric_collector] {"stage_name":"metric_collector","events_processed":4614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":922.8,"last_update":"2026-03-22T07:18:22.368919611Z"} +2026/03/22 07:18:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1848,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:18:22.377066144Z"} +2026/03/22 07:18:27 [detection_layer] {"stage_name":"detection_layer","events_processed":153,"events_dropped":0,"avg_latency_ms":18.202253508620398,"throughput_eps":0,"last_update":"2026-03-22T07:18:22.479315821Z"} +2026/03/22 07:18:27 [transform_engine] {"stage_name":"transform_engine","events_processed":153,"events_dropped":0,"avg_latency_ms":175.28814009722063,"throughput_eps":0,"last_update":"2026-03-22T07:18:22.479384462Z"} +2026/03/22 07:18:27 [log_collector] {"stage_name":"log_collector","events_processed":8216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1643.2,"last_update":"2026-03-22T07:18:22.368208348Z"} +2026/03/22 07:18:27 ───────────────────────────────────────────────── +2026/03/22 07:18:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:18:32 [transform_engine] {"stage_name":"transform_engine","events_processed":154,"events_dropped":0,"avg_latency_ms":577.1522496777765,"throughput_eps":0,"last_update":"2026-03-22T07:18:29.66355619Z"} +2026/03/22 07:18:32 [log_collector] {"stage_name":"log_collector","events_processed":8221,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1644.2,"last_update":"2026-03-22T07:18:27.367969417Z"} +2026/03/22 07:18:32 [metric_collector] {"stage_name":"metric_collector","events_processed":4619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":923.8,"last_update":"2026-03-22T07:18:27.368240035Z"} +2026/03/22 07:18:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:18:27.379894457Z"} +2026/03/22 07:18:32 [detection_layer] {"stage_name":"detection_layer","events_processed":153,"events_dropped":0,"avg_latency_ms":18.202253508620398,"throughput_eps":0,"last_update":"2026-03-22T07:18:27.47896757Z"} +2026/03/22 07:18:32 ───────────────────────────────────────────────── +2026/03/22 07:18:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:18:37 [log_collector] {"stage_name":"log_collector","events_processed":8221,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1644.2,"last_update":"2026-03-22T07:18:37.368569978Z"} +2026/03/22 07:18:37 [metric_collector] {"stage_name":"metric_collector","events_processed":4624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":924.8,"last_update":"2026-03-22T07:18:32.368861535Z"} +2026/03/22 07:18:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:18:32.378390566Z"} +2026/03/22 07:18:37 [detection_layer] {"stage_name":"detection_layer","events_processed":154,"events_dropped":0,"avg_latency_ms":17.35306080689632,"throughput_eps":0,"last_update":"2026-03-22T07:18:32.479637211Z"} +2026/03/22 07:18:37 [transform_engine] {"stage_name":"transform_engine","events_processed":154,"events_dropped":0,"avg_latency_ms":577.1522496777765,"throughput_eps":0,"last_update":"2026-03-22T07:18:32.479624557Z"} +2026/03/22 07:18:37 ───────────────────────────────────────────────── +2026/03/22 07:18:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:18:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:18:37.375790658Z"} +2026/03/22 07:18:42 [detection_layer] {"stage_name":"detection_layer","events_processed":154,"events_dropped":0,"avg_latency_ms":17.35306080689632,"throughput_eps":0,"last_update":"2026-03-22T07:18:37.478969875Z"} +2026/03/22 07:18:42 [transform_engine] {"stage_name":"transform_engine","events_processed":154,"events_dropped":0,"avg_latency_ms":577.1522496777765,"throughput_eps":0,"last_update":"2026-03-22T07:18:37.478985254Z"} +2026/03/22 07:18:42 [log_collector] {"stage_name":"log_collector","events_processed":8221,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1644.2,"last_update":"2026-03-22T07:18:37.368569978Z"} +2026/03/22 07:18:42 [metric_collector] {"stage_name":"metric_collector","events_processed":4629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":925.8,"last_update":"2026-03-22T07:18:37.368946018Z"} +2026/03/22 07:18:42 ───────────────────────────────────────────────── +2026/03/22 07:18:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:18:47 [metric_collector] {"stage_name":"metric_collector","events_processed":4634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":926.8,"last_update":"2026-03-22T07:18:42.368409987Z"} +2026/03/22 07:18:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:18:42.376446489Z"} +2026/03/22 07:18:47 [detection_layer] {"stage_name":"detection_layer","events_processed":154,"events_dropped":0,"avg_latency_ms":17.35306080689632,"throughput_eps":0,"last_update":"2026-03-22T07:18:42.479624924Z"} +2026/03/22 07:18:47 [transform_engine] {"stage_name":"transform_engine","events_processed":154,"events_dropped":0,"avg_latency_ms":577.1522496777765,"throughput_eps":0,"last_update":"2026-03-22T07:18:42.479637949Z"} +2026/03/22 07:18:47 [log_collector] {"stage_name":"log_collector","events_processed":8221,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1644.2,"last_update":"2026-03-22T07:18:42.368002176Z"} +2026/03/22 07:18:47 ───────────────────────────────────────────────── +2026/03/22 07:18:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:18:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:18:47.374502744Z"} +2026/03/22 07:18:52 [detection_layer] {"stage_name":"detection_layer","events_processed":154,"events_dropped":0,"avg_latency_ms":17.35306080689632,"throughput_eps":0,"last_update":"2026-03-22T07:18:47.47967104Z"} +2026/03/22 07:18:52 [transform_engine] {"stage_name":"transform_engine","events_processed":154,"events_dropped":0,"avg_latency_ms":577.1522496777765,"throughput_eps":0,"last_update":"2026-03-22T07:18:47.479692962Z"} +2026/03/22 07:18:52 [log_collector] {"stage_name":"log_collector","events_processed":8221,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1644.2,"last_update":"2026-03-22T07:18:47.367955754Z"} +2026/03/22 07:18:52 [metric_collector] {"stage_name":"metric_collector","events_processed":4639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":927.8,"last_update":"2026-03-22T07:18:47.368435343Z"} +2026/03/22 07:18:52 ───────────────────────────────────────────────── +2026/03/22 07:18:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:18:57 [log_collector] {"stage_name":"log_collector","events_processed":8221,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1644.2,"last_update":"2026-03-22T07:18:52.368813758Z"} +2026/03/22 07:18:57 [metric_collector] {"stage_name":"metric_collector","events_processed":4644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":928.8,"last_update":"2026-03-22T07:18:52.369116478Z"} +2026/03/22 07:18:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1860,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:18:52.377192656Z"} +2026/03/22 07:18:57 [detection_layer] {"stage_name":"detection_layer","events_processed":154,"events_dropped":0,"avg_latency_ms":17.35306080689632,"throughput_eps":0,"last_update":"2026-03-22T07:18:52.479343192Z"} +2026/03/22 07:18:57 [transform_engine] {"stage_name":"transform_engine","events_processed":154,"events_dropped":0,"avg_latency_ms":577.1522496777765,"throughput_eps":0,"last_update":"2026-03-22T07:18:52.479323615Z"} +2026/03/22 07:18:57 ───────────────────────────────────────────────── +2026/03/22 07:19:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:19:02 [log_collector] {"stage_name":"log_collector","events_processed":8221,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1644.2,"last_update":"2026-03-22T07:18:57.368809643Z"} +2026/03/22 07:19:02 [metric_collector] {"stage_name":"metric_collector","events_processed":4648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":929.6,"last_update":"2026-03-22T07:18:57.368762422Z"} +2026/03/22 07:19:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1862,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:18:57.376083895Z"} +2026/03/22 07:19:02 [detection_layer] {"stage_name":"detection_layer","events_processed":154,"events_dropped":0,"avg_latency_ms":17.35306080689632,"throughput_eps":0,"last_update":"2026-03-22T07:18:57.479265035Z"} +2026/03/22 07:19:02 [transform_engine] {"stage_name":"transform_engine","events_processed":155,"events_dropped":0,"avg_latency_ms":997.8217787422211,"throughput_eps":0,"last_update":"2026-03-22T07:19:00.159789998Z"} +2026/03/22 07:19:02 ───────────────────────────────────────────────── +2026/03/22 07:19:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:19:07 [log_collector] {"stage_name":"log_collector","events_processed":8224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1644.8,"last_update":"2026-03-22T07:19:07.368009367Z"} +2026/03/22 07:19:07 [metric_collector] {"stage_name":"metric_collector","events_processed":4654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":930.8,"last_update":"2026-03-22T07:19:02.368745847Z"} +2026/03/22 07:19:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:19:02.374874755Z"} +2026/03/22 07:19:07 [detection_layer] {"stage_name":"detection_layer","events_processed":155,"events_dropped":0,"avg_latency_ms":16.470521645517056,"throughput_eps":0,"last_update":"2026-03-22T07:19:02.479062553Z"} +2026/03/22 07:19:07 [transform_engine] {"stage_name":"transform_engine","events_processed":155,"events_dropped":0,"avg_latency_ms":997.8217787422211,"throughput_eps":0,"last_update":"2026-03-22T07:19:02.479112959Z"} +2026/03/22 07:19:07 ───────────────────────────────────────────────── +2026/03/22 07:19:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:19:12 [log_collector] {"stage_name":"log_collector","events_processed":8224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1644.8,"last_update":"2026-03-22T07:19:07.368009367Z"} +2026/03/22 07:19:12 [metric_collector] {"stage_name":"metric_collector","events_processed":4659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":931.8,"last_update":"2026-03-22T07:19:07.368450471Z"} +2026/03/22 07:19:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:19:07.373965314Z"} +2026/03/22 07:19:12 [detection_layer] {"stage_name":"detection_layer","events_processed":155,"events_dropped":0,"avg_latency_ms":16.470521645517056,"throughput_eps":0,"last_update":"2026-03-22T07:19:07.479307192Z"} +2026/03/22 07:19:12 [transform_engine] {"stage_name":"transform_engine","events_processed":155,"events_dropped":0,"avg_latency_ms":997.8217787422211,"throughput_eps":0,"last_update":"2026-03-22T07:19:07.479284779Z"} +2026/03/22 07:19:12 ───────────────────────────────────────────────── +2026/03/22 07:19:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:19:17 [transform_engine] {"stage_name":"transform_engine","events_processed":155,"events_dropped":0,"avg_latency_ms":997.8217787422211,"throughput_eps":0,"last_update":"2026-03-22T07:19:12.478840112Z"} +2026/03/22 07:19:17 [log_collector] {"stage_name":"log_collector","events_processed":8322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1664.4,"last_update":"2026-03-22T07:19:12.36900113Z"} +2026/03/22 07:19:17 [metric_collector] {"stage_name":"metric_collector","events_processed":4664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":932.8,"last_update":"2026-03-22T07:19:12.369202365Z"} +2026/03/22 07:19:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1868,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:19:12.375676385Z"} +2026/03/22 07:19:17 [detection_layer] {"stage_name":"detection_layer","events_processed":155,"events_dropped":0,"avg_latency_ms":16.470521645517056,"throughput_eps":0,"last_update":"2026-03-22T07:19:12.478969409Z"} +2026/03/22 07:19:17 ───────────────────────────────────────────────── +2026/03/22 07:19:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:19:22 [transform_engine] {"stage_name":"transform_engine","events_processed":155,"events_dropped":0,"avg_latency_ms":997.8217787422211,"throughput_eps":0,"last_update":"2026-03-22T07:19:17.479647524Z"} +2026/03/22 07:19:22 [log_collector] {"stage_name":"log_collector","events_processed":8570,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1714,"last_update":"2026-03-22T07:19:22.368819197Z"} +2026/03/22 07:19:22 [metric_collector] {"stage_name":"metric_collector","events_processed":4669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":933.8,"last_update":"2026-03-22T07:19:17.369260834Z"} +2026/03/22 07:19:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:19:17.376437269Z"} +2026/03/22 07:19:22 [detection_layer] {"stage_name":"detection_layer","events_processed":155,"events_dropped":0,"avg_latency_ms":16.470521645517056,"throughput_eps":0,"last_update":"2026-03-22T07:19:17.479748548Z"} +2026/03/22 07:19:22 ───────────────────────────────────────────────── +2026/03/22 07:19:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:19:27 [metric_collector] {"stage_name":"metric_collector","events_processed":4674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":934.8,"last_update":"2026-03-22T07:19:22.369291582Z"} +2026/03/22 07:19:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:19:22.377286414Z"} +2026/03/22 07:19:27 [detection_layer] {"stage_name":"detection_layer","events_processed":155,"events_dropped":0,"avg_latency_ms":16.470521645517056,"throughput_eps":0,"last_update":"2026-03-22T07:19:22.479497074Z"} +2026/03/22 07:19:27 [transform_engine] {"stage_name":"transform_engine","events_processed":155,"events_dropped":0,"avg_latency_ms":997.8217787422211,"throughput_eps":0,"last_update":"2026-03-22T07:19:22.479512274Z"} +2026/03/22 07:19:27 [log_collector] {"stage_name":"log_collector","events_processed":8570,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1714,"last_update":"2026-03-22T07:19:22.368819197Z"} +2026/03/22 07:19:27 ───────────────────────────────────────────────── +Saved state: 11 clusters, 8571 messages, reason: none +2026/03/22 07:19:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:19:32 [log_collector] {"stage_name":"log_collector","events_processed":8570,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1714,"last_update":"2026-03-22T07:19:27.368808628Z"} +2026/03/22 07:19:32 [metric_collector] {"stage_name":"metric_collector","events_processed":4679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":935.8,"last_update":"2026-03-22T07:19:27.369216781Z"} +2026/03/22 07:19:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:19:27.377568085Z"} +2026/03/22 07:19:32 [detection_layer] {"stage_name":"detection_layer","events_processed":155,"events_dropped":0,"avg_latency_ms":16.470521645517056,"throughput_eps":0,"last_update":"2026-03-22T07:19:27.479788976Z"} +2026/03/22 07:19:32 [transform_engine] {"stage_name":"transform_engine","events_processed":156,"events_dropped":0,"avg_latency_ms":821.009463393777,"throughput_eps":0,"last_update":"2026-03-22T07:19:27.593564556Z"} +2026/03/22 07:19:32 ───────────────────────────────────────────────── +2026/03/22 07:19:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:19:37 [log_collector] {"stage_name":"log_collector","events_processed":8573,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1714.6,"last_update":"2026-03-22T07:19:32.368484334Z"} +2026/03/22 07:19:37 [metric_collector] {"stage_name":"metric_collector","events_processed":4684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":936.8,"last_update":"2026-03-22T07:19:32.368714906Z"} +2026/03/22 07:19:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1876,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:19:32.374819297Z"} +2026/03/22 07:19:37 [detection_layer] {"stage_name":"detection_layer","events_processed":156,"events_dropped":0,"avg_latency_ms":16.628388916413645,"throughput_eps":0,"last_update":"2026-03-22T07:19:32.479046059Z"} +2026/03/22 07:19:37 [transform_engine] {"stage_name":"transform_engine","events_processed":156,"events_dropped":0,"avg_latency_ms":821.009463393777,"throughput_eps":0,"last_update":"2026-03-22T07:19:32.479059224Z"} +2026/03/22 07:19:37 ───────────────────────────────────────────────── +2026/03/22 07:19:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:19:42 [transform_engine] {"stage_name":"transform_engine","events_processed":156,"events_dropped":0,"avg_latency_ms":821.009463393777,"throughput_eps":0,"last_update":"2026-03-22T07:19:37.47896814Z"} +2026/03/22 07:19:42 [log_collector] {"stage_name":"log_collector","events_processed":8573,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1714.6,"last_update":"2026-03-22T07:19:37.368396035Z"} +2026/03/22 07:19:42 [metric_collector] {"stage_name":"metric_collector","events_processed":4689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":937.8,"last_update":"2026-03-22T07:19:37.368809287Z"} +2026/03/22 07:19:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:19:37.376757609Z"} +2026/03/22 07:19:42 [detection_layer] {"stage_name":"detection_layer","events_processed":156,"events_dropped":0,"avg_latency_ms":16.628388916413645,"throughput_eps":0,"last_update":"2026-03-22T07:19:37.478954303Z"} +2026/03/22 07:19:42 ───────────────────────────────────────────────── +2026/03/22 07:19:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:19:47 [log_collector] {"stage_name":"log_collector","events_processed":8592,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1718.4,"last_update":"2026-03-22T07:19:47.368650031Z"} +2026/03/22 07:19:47 [metric_collector] {"stage_name":"metric_collector","events_processed":4694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":938.8,"last_update":"2026-03-22T07:19:42.369036776Z"} +2026/03/22 07:19:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:19:42.377740164Z"} +2026/03/22 07:19:47 [detection_layer] {"stage_name":"detection_layer","events_processed":156,"events_dropped":0,"avg_latency_ms":16.628388916413645,"throughput_eps":0,"last_update":"2026-03-22T07:19:42.478981648Z"} +2026/03/22 07:19:47 [transform_engine] {"stage_name":"transform_engine","events_processed":156,"events_dropped":0,"avg_latency_ms":821.009463393777,"throughput_eps":0,"last_update":"2026-03-22T07:19:42.478944527Z"} +2026/03/22 07:19:47 ───────────────────────────────────────────────── +2026/03/22 07:19:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:19:52 [log_collector] {"stage_name":"log_collector","events_processed":8592,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1718.4,"last_update":"2026-03-22T07:19:47.368650031Z"} +2026/03/22 07:19:52 [metric_collector] {"stage_name":"metric_collector","events_processed":4699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":939.8,"last_update":"2026-03-22T07:19:47.368900971Z"} +2026/03/22 07:19:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:19:47.375861653Z"} +2026/03/22 07:19:52 [detection_layer] {"stage_name":"detection_layer","events_processed":156,"events_dropped":0,"avg_latency_ms":16.628388916413645,"throughput_eps":0,"last_update":"2026-03-22T07:19:47.479244468Z"} +2026/03/22 07:19:52 [transform_engine] {"stage_name":"transform_engine","events_processed":156,"events_dropped":0,"avg_latency_ms":821.009463393777,"throughput_eps":0,"last_update":"2026-03-22T07:19:47.479262332Z"} +2026/03/22 07:19:52 ───────────────────────────────────────────────── +2026/03/22 07:19:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:19:57 [metric_collector] {"stage_name":"metric_collector","events_processed":4704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":940.8,"last_update":"2026-03-22T07:19:52.368818124Z"} +2026/03/22 07:19:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:19:52.377901982Z"} +2026/03/22 07:19:57 [detection_layer] {"stage_name":"detection_layer","events_processed":156,"events_dropped":0,"avg_latency_ms":16.628388916413645,"throughput_eps":0,"last_update":"2026-03-22T07:19:52.479112246Z"} +2026/03/22 07:19:57 [transform_engine] {"stage_name":"transform_engine","events_processed":156,"events_dropped":0,"avg_latency_ms":821.009463393777,"throughput_eps":0,"last_update":"2026-03-22T07:19:52.479125521Z"} +2026/03/22 07:19:57 [log_collector] {"stage_name":"log_collector","events_processed":8600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1720,"last_update":"2026-03-22T07:19:52.368433397Z"} +2026/03/22 07:19:57 ───────────────────────────────────────────────── +2026/03/22 07:20:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:20:02 [log_collector] {"stage_name":"log_collector","events_processed":8600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1720,"last_update":"2026-03-22T07:19:57.368122536Z"} +2026/03/22 07:20:02 [metric_collector] {"stage_name":"metric_collector","events_processed":4709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":941.8,"last_update":"2026-03-22T07:19:57.36850538Z"} +2026/03/22 07:20:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1886,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:19:57.377703196Z"} +2026/03/22 07:20:02 [detection_layer] {"stage_name":"detection_layer","events_processed":156,"events_dropped":0,"avg_latency_ms":16.628388916413645,"throughput_eps":0,"last_update":"2026-03-22T07:19:57.480023466Z"} +2026/03/22 07:20:02 [transform_engine] {"stage_name":"transform_engine","events_processed":157,"events_dropped":0,"avg_latency_ms":678.5252195150216,"throughput_eps":0,"last_update":"2026-03-22T07:19:57.58744735Z"} +2026/03/22 07:20:02 ───────────────────────────────────────────────── +2026/03/22 07:20:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:20:07 [transform_engine] {"stage_name":"transform_engine","events_processed":157,"events_dropped":0,"avg_latency_ms":678.5252195150216,"throughput_eps":0,"last_update":"2026-03-22T07:20:02.47920658Z"} +2026/03/22 07:20:07 [log_collector] {"stage_name":"log_collector","events_processed":8600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1720,"last_update":"2026-03-22T07:20:07.367999242Z"} +2026/03/22 07:20:07 [metric_collector] {"stage_name":"metric_collector","events_processed":4714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":942.8,"last_update":"2026-03-22T07:20:02.368754035Z"} +2026/03/22 07:20:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:20:02.385925643Z"} +2026/03/22 07:20:07 [detection_layer] {"stage_name":"detection_layer","events_processed":157,"events_dropped":0,"avg_latency_ms":16.641579933130917,"throughput_eps":0,"last_update":"2026-03-22T07:20:02.479230315Z"} +2026/03/22 07:20:07 ───────────────────────────────────────────────── +2026/03/22 07:20:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:20:12 [log_collector] {"stage_name":"log_collector","events_processed":8600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1720,"last_update":"2026-03-22T07:20:07.367999242Z"} +2026/03/22 07:20:12 [metric_collector] {"stage_name":"metric_collector","events_processed":4719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":943.8,"last_update":"2026-03-22T07:20:07.368681949Z"} +2026/03/22 07:20:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:20:07.376875171Z"} +2026/03/22 07:20:12 [detection_layer] {"stage_name":"detection_layer","events_processed":157,"events_dropped":0,"avg_latency_ms":16.641579933130917,"throughput_eps":0,"last_update":"2026-03-22T07:20:07.47920008Z"} +2026/03/22 07:20:12 [transform_engine] {"stage_name":"transform_engine","events_processed":157,"events_dropped":0,"avg_latency_ms":678.5252195150216,"throughput_eps":0,"last_update":"2026-03-22T07:20:07.479091541Z"} +2026/03/22 07:20:12 ───────────────────────────────────────────────── +2026/03/22 07:20:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:20:17 [log_collector] {"stage_name":"log_collector","events_processed":8600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1720,"last_update":"2026-03-22T07:20:12.368813649Z"} +2026/03/22 07:20:17 [metric_collector] {"stage_name":"metric_collector","events_processed":4724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":944.8,"last_update":"2026-03-22T07:20:12.368956632Z"} +2026/03/22 07:20:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1892,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:20:12.378448381Z"} +2026/03/22 07:20:17 [detection_layer] {"stage_name":"detection_layer","events_processed":157,"events_dropped":0,"avg_latency_ms":16.641579933130917,"throughput_eps":0,"last_update":"2026-03-22T07:20:12.479676599Z"} +2026/03/22 07:20:17 [transform_engine] {"stage_name":"transform_engine","events_processed":157,"events_dropped":0,"avg_latency_ms":678.5252195150216,"throughput_eps":0,"last_update":"2026-03-22T07:20:12.479775719Z"} +2026/03/22 07:20:17 ───────────────────────────────────────────────── +2026/03/22 07:20:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:20:22 [log_collector] {"stage_name":"log_collector","events_processed":8600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1720,"last_update":"2026-03-22T07:20:17.368504707Z"} +2026/03/22 07:20:22 [metric_collector] {"stage_name":"metric_collector","events_processed":4729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":945.8,"last_update":"2026-03-22T07:20:17.368951633Z"} +2026/03/22 07:20:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:20:17.377317295Z"} +2026/03/22 07:20:22 [detection_layer] {"stage_name":"detection_layer","events_processed":157,"events_dropped":0,"avg_latency_ms":16.641579933130917,"throughput_eps":0,"last_update":"2026-03-22T07:20:17.479556649Z"} +2026/03/22 07:20:22 [transform_engine] {"stage_name":"transform_engine","events_processed":157,"events_dropped":0,"avg_latency_ms":678.5252195150216,"throughput_eps":0,"last_update":"2026-03-22T07:20:17.479665338Z"} +2026/03/22 07:20:22 ───────────────────────────────────────────────── +2026/03/22 07:20:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:20:27 [log_collector] {"stage_name":"log_collector","events_processed":8600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1720,"last_update":"2026-03-22T07:20:22.36800818Z"} +2026/03/22 07:20:27 [metric_collector] {"stage_name":"metric_collector","events_processed":4734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":946.8,"last_update":"2026-03-22T07:20:22.368425901Z"} +2026/03/22 07:20:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1896,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:20:22.379014992Z"} +2026/03/22 07:20:27 [detection_layer] {"stage_name":"detection_layer","events_processed":157,"events_dropped":0,"avg_latency_ms":16.641579933130917,"throughput_eps":0,"last_update":"2026-03-22T07:20:22.479223405Z"} +2026/03/22 07:20:27 [transform_engine] {"stage_name":"transform_engine","events_processed":157,"events_dropped":0,"avg_latency_ms":678.5252195150216,"throughput_eps":0,"last_update":"2026-03-22T07:20:22.479389223Z"} +2026/03/22 07:20:27 ───────────────────────────────────────────────── +2026/03/22 07:20:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:20:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1898,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:20:27.377006502Z"} +2026/03/22 07:20:32 [detection_layer] {"stage_name":"detection_layer","events_processed":157,"events_dropped":0,"avg_latency_ms":16.641579933130917,"throughput_eps":0,"last_update":"2026-03-22T07:20:27.479249825Z"} +2026/03/22 07:20:32 [transform_engine] {"stage_name":"transform_engine","events_processed":157,"events_dropped":0,"avg_latency_ms":678.5252195150216,"throughput_eps":0,"last_update":"2026-03-22T07:20:27.479207333Z"} +2026/03/22 07:20:32 [log_collector] {"stage_name":"log_collector","events_processed":8600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1720,"last_update":"2026-03-22T07:20:32.368298899Z"} +2026/03/22 07:20:32 [metric_collector] {"stage_name":"metric_collector","events_processed":4744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":948.8,"last_update":"2026-03-22T07:20:32.368293148Z"} +2026/03/22 07:20:32 ───────────────────────────────────────────────── +2026/03/22 07:20:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:20:37 [log_collector] {"stage_name":"log_collector","events_processed":8600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1720,"last_update":"2026-03-22T07:20:32.368298899Z"} +2026/03/22 07:20:37 [metric_collector] {"stage_name":"metric_collector","events_processed":4744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":948.8,"last_update":"2026-03-22T07:20:32.368293148Z"} +2026/03/22 07:20:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1900,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:20:32.378488866Z"} +2026/03/22 07:20:37 [detection_layer] {"stage_name":"detection_layer","events_processed":158,"events_dropped":0,"avg_latency_ms":17.626985946504732,"throughput_eps":0,"last_update":"2026-03-22T07:20:32.479674Z"} +2026/03/22 07:20:37 [transform_engine] {"stage_name":"transform_engine","events_processed":158,"events_dropped":0,"avg_latency_ms":557.0748708120174,"throughput_eps":0,"last_update":"2026-03-22T07:20:32.479682546Z"} +2026/03/22 07:20:37 ───────────────────────────────────────────────── +2026/03/22 07:20:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:20:42 [detection_layer] {"stage_name":"detection_layer","events_processed":158,"events_dropped":0,"avg_latency_ms":17.626985946504732,"throughput_eps":0,"last_update":"2026-03-22T07:20:37.479512586Z"} +2026/03/22 07:20:42 [transform_engine] {"stage_name":"transform_engine","events_processed":158,"events_dropped":0,"avg_latency_ms":557.0748708120174,"throughput_eps":0,"last_update":"2026-03-22T07:20:37.479528577Z"} +2026/03/22 07:20:42 [log_collector] {"stage_name":"log_collector","events_processed":8600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1720,"last_update":"2026-03-22T07:20:37.368869068Z"} +2026/03/22 07:20:42 [metric_collector] {"stage_name":"metric_collector","events_processed":4749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":949.8,"last_update":"2026-03-22T07:20:37.369330912Z"} +2026/03/22 07:20:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:20:37.37814868Z"} +2026/03/22 07:20:42 ───────────────────────────────────────────────── +2026/03/22 07:20:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:20:47 [detection_layer] {"stage_name":"detection_layer","events_processed":158,"events_dropped":0,"avg_latency_ms":17.626985946504732,"throughput_eps":0,"last_update":"2026-03-22T07:20:42.479757917Z"} +2026/03/22 07:20:47 [transform_engine] {"stage_name":"transform_engine","events_processed":158,"events_dropped":0,"avg_latency_ms":557.0748708120174,"throughput_eps":0,"last_update":"2026-03-22T07:20:42.479765942Z"} +2026/03/22 07:20:47 [log_collector] {"stage_name":"log_collector","events_processed":8600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1720,"last_update":"2026-03-22T07:20:42.36893768Z"} +2026/03/22 07:20:47 [metric_collector] {"stage_name":"metric_collector","events_processed":4754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":950.8,"last_update":"2026-03-22T07:20:42.369421877Z"} +2026/03/22 07:20:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:20:42.379541569Z"} +2026/03/22 07:20:47 ───────────────────────────────────────────────── +2026/03/22 07:20:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:20:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1906,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:20:47.378179395Z"} +2026/03/22 07:20:52 [detection_layer] {"stage_name":"detection_layer","events_processed":158,"events_dropped":0,"avg_latency_ms":17.626985946504732,"throughput_eps":0,"last_update":"2026-03-22T07:20:47.479513505Z"} +2026/03/22 07:20:52 [transform_engine] {"stage_name":"transform_engine","events_processed":158,"events_dropped":0,"avg_latency_ms":557.0748708120174,"throughput_eps":0,"last_update":"2026-03-22T07:20:47.47952674Z"} +2026/03/22 07:20:52 [log_collector] {"stage_name":"log_collector","events_processed":8600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1720,"last_update":"2026-03-22T07:20:47.368244517Z"} +2026/03/22 07:20:52 [metric_collector] {"stage_name":"metric_collector","events_processed":4759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":951.8,"last_update":"2026-03-22T07:20:47.368247753Z"} +2026/03/22 07:20:52 ───────────────────────────────────────────────── +Saved state: 11 clusters, 8601 messages, reason: none +2026/03/22 07:20:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:20:57 [detection_layer] {"stage_name":"detection_layer","events_processed":158,"events_dropped":0,"avg_latency_ms":17.626985946504732,"throughput_eps":0,"last_update":"2026-03-22T07:20:52.479791227Z"} +2026/03/22 07:20:57 [transform_engine] {"stage_name":"transform_engine","events_processed":158,"events_dropped":0,"avg_latency_ms":557.0748708120174,"throughput_eps":0,"last_update":"2026-03-22T07:20:52.479804232Z"} +2026/03/22 07:20:57 [log_collector] {"stage_name":"log_collector","events_processed":8600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1720,"last_update":"2026-03-22T07:20:52.368991649Z"} +2026/03/22 07:20:57 [metric_collector] {"stage_name":"metric_collector","events_processed":4764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":952.8,"last_update":"2026-03-22T07:20:52.368978052Z"} +2026/03/22 07:20:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1908,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:20:52.379616468Z"} +2026/03/22 07:20:57 ───────────────────────────────────────────────── +2026/03/22 07:21:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:21:02 [log_collector] {"stage_name":"log_collector","events_processed":8603,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1720.6,"last_update":"2026-03-22T07:20:57.368370172Z"} +2026/03/22 07:21:02 [metric_collector] {"stage_name":"metric_collector","events_processed":4769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":953.8,"last_update":"2026-03-22T07:20:57.368804875Z"} +2026/03/22 07:21:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:20:57.382574256Z"} +2026/03/22 07:21:02 [detection_layer] {"stage_name":"detection_layer","events_processed":158,"events_dropped":0,"avg_latency_ms":17.626985946504732,"throughput_eps":0,"last_update":"2026-03-22T07:20:57.47937316Z"} +2026/03/22 07:21:02 [transform_engine] {"stage_name":"transform_engine","events_processed":159,"events_dropped":0,"avg_latency_ms":469.1677518496139,"throughput_eps":0,"last_update":"2026-03-22T07:20:57.596924148Z"} +2026/03/22 07:21:02 ───────────────────────────────────────────────── +2026/03/22 07:21:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:21:07 [transform_engine] {"stage_name":"transform_engine","events_processed":159,"events_dropped":0,"avg_latency_ms":469.1677518496139,"throughput_eps":0,"last_update":"2026-03-22T07:21:02.479506475Z"} +2026/03/22 07:21:07 [log_collector] {"stage_name":"log_collector","events_processed":8614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1722.8,"last_update":"2026-03-22T07:21:02.368018488Z"} +2026/03/22 07:21:07 [metric_collector] {"stage_name":"metric_collector","events_processed":4774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":954.8,"last_update":"2026-03-22T07:21:02.368775578Z"} +2026/03/22 07:21:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1912,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:21:02.3772087Z"} +2026/03/22 07:21:07 [detection_layer] {"stage_name":"detection_layer","events_processed":159,"events_dropped":0,"avg_latency_ms":17.080766557203788,"throughput_eps":0,"last_update":"2026-03-22T07:21:02.479496616Z"} +2026/03/22 07:21:07 ───────────────────────────────────────────────── +2026/03/22 07:21:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:21:12 [transform_engine] {"stage_name":"transform_engine","events_processed":159,"events_dropped":0,"avg_latency_ms":469.1677518496139,"throughput_eps":0,"last_update":"2026-03-22T07:21:07.478861953Z"} +2026/03/22 07:21:12 [log_collector] {"stage_name":"log_collector","events_processed":8614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1722.8,"last_update":"2026-03-22T07:21:07.368419208Z"} +2026/03/22 07:21:12 [metric_collector] {"stage_name":"metric_collector","events_processed":4779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":955.8,"last_update":"2026-03-22T07:21:07.36912444Z"} +2026/03/22 07:21:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:21:07.377719832Z"} +2026/03/22 07:21:12 [detection_layer] {"stage_name":"detection_layer","events_processed":159,"events_dropped":0,"avg_latency_ms":17.080766557203788,"throughput_eps":0,"last_update":"2026-03-22T07:21:07.480005222Z"} +2026/03/22 07:21:12 ───────────────────────────────────────────────── +2026/03/22 07:21:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:21:17 [detection_layer] {"stage_name":"detection_layer","events_processed":159,"events_dropped":0,"avg_latency_ms":17.080766557203788,"throughput_eps":0,"last_update":"2026-03-22T07:21:12.47915906Z"} +2026/03/22 07:21:17 [transform_engine] {"stage_name":"transform_engine","events_processed":159,"events_dropped":0,"avg_latency_ms":469.1677518496139,"throughput_eps":0,"last_update":"2026-03-22T07:21:12.479167115Z"} +2026/03/22 07:21:17 [log_collector] {"stage_name":"log_collector","events_processed":8614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1722.8,"last_update":"2026-03-22T07:21:12.368655639Z"} +2026/03/22 07:21:17 [metric_collector] {"stage_name":"metric_collector","events_processed":4784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":956.8,"last_update":"2026-03-22T07:21:12.369152661Z"} +2026/03/22 07:21:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:21:12.378901642Z"} +2026/03/22 07:21:17 ───────────────────────────────────────────────── +2026/03/22 07:21:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:21:22 [log_collector] {"stage_name":"log_collector","events_processed":8614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1722.8,"last_update":"2026-03-22T07:21:17.368802131Z"} +2026/03/22 07:21:22 [metric_collector] {"stage_name":"metric_collector","events_processed":4789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":957.8,"last_update":"2026-03-22T07:21:17.369565544Z"} +2026/03/22 07:21:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1918,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:21:17.379299075Z"} +2026/03/22 07:21:22 [detection_layer] {"stage_name":"detection_layer","events_processed":159,"events_dropped":0,"avg_latency_ms":17.080766557203788,"throughput_eps":0,"last_update":"2026-03-22T07:21:17.47970142Z"} +2026/03/22 07:21:22 [transform_engine] {"stage_name":"transform_engine","events_processed":159,"events_dropped":0,"avg_latency_ms":469.1677518496139,"throughput_eps":0,"last_update":"2026-03-22T07:21:17.479716378Z"} +2026/03/22 07:21:22 ───────────────────────────────────────────────── +2026/03/22 07:21:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:21:27 [log_collector] {"stage_name":"log_collector","events_processed":8614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1722.8,"last_update":"2026-03-22T07:21:22.367998991Z"} +2026/03/22 07:21:27 [metric_collector] {"stage_name":"metric_collector","events_processed":4794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":958.8,"last_update":"2026-03-22T07:21:22.368424105Z"} +2026/03/22 07:21:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1920,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:21:22.377808359Z"} +2026/03/22 07:21:27 [detection_layer] {"stage_name":"detection_layer","events_processed":159,"events_dropped":0,"avg_latency_ms":17.080766557203788,"throughput_eps":0,"last_update":"2026-03-22T07:21:22.478990465Z"} +2026/03/22 07:21:27 [transform_engine] {"stage_name":"transform_engine","events_processed":159,"events_dropped":0,"avg_latency_ms":469.1677518496139,"throughput_eps":0,"last_update":"2026-03-22T07:21:22.47900342Z"} +2026/03/22 07:21:27 ───────────────────────────────────────────────── +2026/03/22 07:21:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:21:32 [detection_layer] {"stage_name":"detection_layer","events_processed":159,"events_dropped":0,"avg_latency_ms":17.080766557203788,"throughput_eps":0,"last_update":"2026-03-22T07:21:27.479267359Z"} +2026/03/22 07:21:32 [transform_engine] {"stage_name":"transform_engine","events_processed":160,"events_dropped":0,"avg_latency_ms":397.55780107969116,"throughput_eps":0,"last_update":"2026-03-22T07:21:27.590396207Z"} +2026/03/22 07:21:32 [log_collector] {"stage_name":"log_collector","events_processed":8614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1722.8,"last_update":"2026-03-22T07:21:27.368082503Z"} +2026/03/22 07:21:32 [metric_collector] {"stage_name":"metric_collector","events_processed":4799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":959.8,"last_update":"2026-03-22T07:21:27.368420762Z"} +2026/03/22 07:21:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:21:27.376950467Z"} +2026/03/22 07:21:32 ───────────────────────────────────────────────── +2026/03/22 07:21:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:21:37 [log_collector] {"stage_name":"log_collector","events_processed":8614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1722.8,"last_update":"2026-03-22T07:21:37.368399479Z"} +2026/03/22 07:21:37 [metric_collector] {"stage_name":"metric_collector","events_processed":4804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":960.8,"last_update":"2026-03-22T07:21:32.368287964Z"} +2026/03/22 07:21:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:21:32.376881011Z"} +2026/03/22 07:21:37 [detection_layer] {"stage_name":"detection_layer","events_processed":160,"events_dropped":0,"avg_latency_ms":17.44304584576303,"throughput_eps":0,"last_update":"2026-03-22T07:21:32.479128159Z"} +2026/03/22 07:21:37 [transform_engine] {"stage_name":"transform_engine","events_processed":160,"events_dropped":0,"avg_latency_ms":397.55780107969116,"throughput_eps":0,"last_update":"2026-03-22T07:21:32.479158387Z"} +2026/03/22 07:21:37 ───────────────────────────────────────────────── +2026/03/22 07:21:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:21:42 [metric_collector] {"stage_name":"metric_collector","events_processed":4809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":961.8,"last_update":"2026-03-22T07:21:37.368977717Z"} +2026/03/22 07:21:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:21:37.377711875Z"} +2026/03/22 07:21:42 [detection_layer] {"stage_name":"detection_layer","events_processed":160,"events_dropped":0,"avg_latency_ms":17.44304584576303,"throughput_eps":0,"last_update":"2026-03-22T07:21:37.479993458Z"} +2026/03/22 07:21:42 [transform_engine] {"stage_name":"transform_engine","events_processed":160,"events_dropped":0,"avg_latency_ms":397.55780107969116,"throughput_eps":0,"last_update":"2026-03-22T07:21:37.478880426Z"} +2026/03/22 07:21:42 [log_collector] {"stage_name":"log_collector","events_processed":8614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1722.8,"last_update":"2026-03-22T07:21:37.368399479Z"} +2026/03/22 07:21:42 ───────────────────────────────────────────────── +2026/03/22 07:21:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:21:47 [log_collector] {"stage_name":"log_collector","events_processed":8614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1722.8,"last_update":"2026-03-22T07:21:42.368058983Z"} +2026/03/22 07:21:47 [metric_collector] {"stage_name":"metric_collector","events_processed":4814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":962.8,"last_update":"2026-03-22T07:21:42.368660485Z"} +2026/03/22 07:21:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:21:42.379490998Z"} +2026/03/22 07:21:47 [detection_layer] {"stage_name":"detection_layer","events_processed":160,"events_dropped":0,"avg_latency_ms":17.44304584576303,"throughput_eps":0,"last_update":"2026-03-22T07:21:42.47974063Z"} +2026/03/22 07:21:47 [transform_engine] {"stage_name":"transform_engine","events_processed":160,"events_dropped":0,"avg_latency_ms":397.55780107969116,"throughput_eps":0,"last_update":"2026-03-22T07:21:42.479634417Z"} +2026/03/22 07:21:47 ───────────────────────────────────────────────── +2026/03/22 07:21:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:21:52 [metric_collector] {"stage_name":"metric_collector","events_processed":4819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":963.8,"last_update":"2026-03-22T07:21:47.369689488Z"} +2026/03/22 07:21:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1930,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:21:47.378501876Z"} +2026/03/22 07:21:52 [detection_layer] {"stage_name":"detection_layer","events_processed":160,"events_dropped":0,"avg_latency_ms":17.44304584576303,"throughput_eps":0,"last_update":"2026-03-22T07:21:47.47971954Z"} +2026/03/22 07:21:52 [transform_engine] {"stage_name":"transform_engine","events_processed":160,"events_dropped":0,"avg_latency_ms":397.55780107969116,"throughput_eps":0,"last_update":"2026-03-22T07:21:47.479841403Z"} +2026/03/22 07:21:52 [log_collector] {"stage_name":"log_collector","events_processed":8614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1722.8,"last_update":"2026-03-22T07:21:47.369051907Z"} +2026/03/22 07:21:52 ───────────────────────────────────────────────── +2026/03/22 07:21:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:21:57 [detection_layer] {"stage_name":"detection_layer","events_processed":160,"events_dropped":0,"avg_latency_ms":17.44304584576303,"throughput_eps":0,"last_update":"2026-03-22T07:21:52.479905534Z"} +2026/03/22 07:21:57 [transform_engine] {"stage_name":"transform_engine","events_processed":160,"events_dropped":0,"avg_latency_ms":397.55780107969116,"throughput_eps":0,"last_update":"2026-03-22T07:21:52.479803318Z"} +2026/03/22 07:21:57 [log_collector] {"stage_name":"log_collector","events_processed":8614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1722.8,"last_update":"2026-03-22T07:21:52.368633021Z"} +2026/03/22 07:21:57 [metric_collector] {"stage_name":"metric_collector","events_processed":4824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":964.8,"last_update":"2026-03-22T07:21:52.368955659Z"} +2026/03/22 07:21:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:21:52.377558736Z"} +2026/03/22 07:21:57 ───────────────────────────────────────────────── +2026/03/22 07:22:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:22:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:21:57.378786179Z"} +2026/03/22 07:22:02 [detection_layer] {"stage_name":"detection_layer","events_processed":160,"events_dropped":0,"avg_latency_ms":17.44304584576303,"throughput_eps":0,"last_update":"2026-03-22T07:21:57.478956197Z"} +2026/03/22 07:22:02 [transform_engine] {"stage_name":"transform_engine","events_processed":160,"events_dropped":0,"avg_latency_ms":397.55780107969116,"throughput_eps":0,"last_update":"2026-03-22T07:21:57.478932341Z"} +2026/03/22 07:22:02 [log_collector] {"stage_name":"log_collector","events_processed":8614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1722.8,"last_update":"2026-03-22T07:21:57.368497814Z"} +2026/03/22 07:22:02 [metric_collector] {"stage_name":"metric_collector","events_processed":4829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":965.8,"last_update":"2026-03-22T07:21:57.368906145Z"} +2026/03/22 07:22:02 ───────────────────────────────────────────────── +Saved state: 11 clusters, 8615 messages, reason: none +2026/03/22 07:22:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:22:07 [log_collector] {"stage_name":"log_collector","events_processed":8614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1722.8,"last_update":"2026-03-22T07:22:02.368256357Z"} +2026/03/22 07:22:07 [metric_collector] {"stage_name":"metric_collector","events_processed":4834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":966.8,"last_update":"2026-03-22T07:22:02.368753189Z"} +2026/03/22 07:22:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:22:02.37899852Z"} +2026/03/22 07:22:07 [detection_layer] {"stage_name":"detection_layer","events_processed":161,"events_dropped":0,"avg_latency_ms":18.219651676610425,"throughput_eps":0,"last_update":"2026-03-22T07:22:02.479227242Z"} +2026/03/22 07:22:07 [transform_engine] {"stage_name":"transform_engine","events_processed":161,"events_dropped":0,"avg_latency_ms":331.6223182637529,"throughput_eps":0,"last_update":"2026-03-22T07:22:02.479238713Z"} +2026/03/22 07:22:07 ───────────────────────────────────────────────── +2026/03/22 07:22:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:22:12 [log_collector] {"stage_name":"log_collector","events_processed":8619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1723.8,"last_update":"2026-03-22T07:22:07.368957001Z"} +2026/03/22 07:22:12 [metric_collector] {"stage_name":"metric_collector","events_processed":4839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":967.8,"last_update":"2026-03-22T07:22:07.368903006Z"} +2026/03/22 07:22:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:22:07.377663074Z"} +2026/03/22 07:22:12 [detection_layer] {"stage_name":"detection_layer","events_processed":161,"events_dropped":0,"avg_latency_ms":18.219651676610425,"throughput_eps":0,"last_update":"2026-03-22T07:22:07.479791333Z"} +2026/03/22 07:22:12 [transform_engine] {"stage_name":"transform_engine","events_processed":161,"events_dropped":0,"avg_latency_ms":331.6223182637529,"throughput_eps":0,"last_update":"2026-03-22T07:22:07.479803878Z"} +2026/03/22 07:22:12 ───────────────────────────────────────────────── +2026/03/22 07:22:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:22:17 [log_collector] {"stage_name":"log_collector","events_processed":8619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1723.8,"last_update":"2026-03-22T07:22:12.367954518Z"} +2026/03/22 07:22:17 [metric_collector] {"stage_name":"metric_collector","events_processed":4844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":968.8,"last_update":"2026-03-22T07:22:12.368203163Z"} +2026/03/22 07:22:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1940,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:22:12.374050803Z"} +2026/03/22 07:22:17 [detection_layer] {"stage_name":"detection_layer","events_processed":161,"events_dropped":0,"avg_latency_ms":18.219651676610425,"throughput_eps":0,"last_update":"2026-03-22T07:22:12.479277437Z"} +2026/03/22 07:22:17 [transform_engine] {"stage_name":"transform_engine","events_processed":161,"events_dropped":0,"avg_latency_ms":331.6223182637529,"throughput_eps":0,"last_update":"2026-03-22T07:22:12.479290541Z"} +2026/03/22 07:22:17 ───────────────────────────────────────────────── +2026/03/22 07:22:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:22:22 [log_collector] {"stage_name":"log_collector","events_processed":8619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1723.8,"last_update":"2026-03-22T07:22:17.367970981Z"} +2026/03/22 07:22:22 [metric_collector] {"stage_name":"metric_collector","events_processed":4849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":969.8,"last_update":"2026-03-22T07:22:17.368249224Z"} +2026/03/22 07:22:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:22:17.382470511Z"} +2026/03/22 07:22:22 [detection_layer] {"stage_name":"detection_layer","events_processed":161,"events_dropped":0,"avg_latency_ms":18.219651676610425,"throughput_eps":0,"last_update":"2026-03-22T07:22:17.479668337Z"} +2026/03/22 07:22:22 [transform_engine] {"stage_name":"transform_engine","events_processed":161,"events_dropped":0,"avg_latency_ms":331.6223182637529,"throughput_eps":0,"last_update":"2026-03-22T07:22:17.479680551Z"} +2026/03/22 07:22:22 ───────────────────────────────────────────────── +2026/03/22 07:22:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:22:27 [transform_engine] {"stage_name":"transform_engine","events_processed":161,"events_dropped":0,"avg_latency_ms":331.6223182637529,"throughput_eps":0,"last_update":"2026-03-22T07:22:22.479653396Z"} +2026/03/22 07:22:27 [log_collector] {"stage_name":"log_collector","events_processed":8619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1723.8,"last_update":"2026-03-22T07:22:27.367988044Z"} +2026/03/22 07:22:27 [metric_collector] {"stage_name":"metric_collector","events_processed":4854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":970.8,"last_update":"2026-03-22T07:22:22.368258259Z"} +2026/03/22 07:22:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:22:22.375384457Z"} +2026/03/22 07:22:27 [detection_layer] {"stage_name":"detection_layer","events_processed":161,"events_dropped":0,"avg_latency_ms":18.219651676610425,"throughput_eps":0,"last_update":"2026-03-22T07:22:22.479640871Z"} +2026/03/22 07:22:27 ───────────────────────────────────────────────── +2026/03/22 07:22:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:22:32 [log_collector] {"stage_name":"log_collector","events_processed":8619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1723.8,"last_update":"2026-03-22T07:22:27.367988044Z"} +2026/03/22 07:22:32 [metric_collector] {"stage_name":"metric_collector","events_processed":4859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":971.8,"last_update":"2026-03-22T07:22:27.368572564Z"} +2026/03/22 07:22:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:22:27.376667026Z"} +2026/03/22 07:22:32 [detection_layer] {"stage_name":"detection_layer","events_processed":161,"events_dropped":0,"avg_latency_ms":18.219651676610425,"throughput_eps":0,"last_update":"2026-03-22T07:22:27.479879662Z"} +2026/03/22 07:22:32 [transform_engine] {"stage_name":"transform_engine","events_processed":162,"events_dropped":0,"avg_latency_ms":547.0415688110024,"throughput_eps":0,"last_update":"2026-03-22T07:22:28.888616328Z"} +2026/03/22 07:22:32 ───────────────────────────────────────────────── +2026/03/22 07:22:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:22:37 [log_collector] {"stage_name":"log_collector","events_processed":8619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1723.8,"last_update":"2026-03-22T07:22:37.368157872Z"} +2026/03/22 07:22:37 [metric_collector] {"stage_name":"metric_collector","events_processed":4864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":972.8,"last_update":"2026-03-22T07:22:32.368168358Z"} +2026/03/22 07:22:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:22:32.375309685Z"} +2026/03/22 07:22:37 [detection_layer] {"stage_name":"detection_layer","events_processed":162,"events_dropped":0,"avg_latency_ms":16.674973941288343,"throughput_eps":0,"last_update":"2026-03-22T07:22:32.479480806Z"} +2026/03/22 07:22:37 [transform_engine] {"stage_name":"transform_engine","events_processed":162,"events_dropped":0,"avg_latency_ms":547.0415688110024,"throughput_eps":0,"last_update":"2026-03-22T07:22:32.479495083Z"} +2026/03/22 07:22:37 ───────────────────────────────────────────────── +2026/03/22 07:22:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:22:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:22:37.376031241Z"} +2026/03/22 07:22:42 [detection_layer] {"stage_name":"detection_layer","events_processed":162,"events_dropped":0,"avg_latency_ms":16.674973941288343,"throughput_eps":0,"last_update":"2026-03-22T07:22:37.479190655Z"} +2026/03/22 07:22:42 [transform_engine] {"stage_name":"transform_engine","events_processed":162,"events_dropped":0,"avg_latency_ms":547.0415688110024,"throughput_eps":0,"last_update":"2026-03-22T07:22:37.479210111Z"} +2026/03/22 07:22:42 [log_collector] {"stage_name":"log_collector","events_processed":8619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1723.8,"last_update":"2026-03-22T07:22:37.368157872Z"} +2026/03/22 07:22:42 [metric_collector] {"stage_name":"metric_collector","events_processed":4869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":973.8,"last_update":"2026-03-22T07:22:37.368503214Z"} +2026/03/22 07:22:42 ───────────────────────────────────────────────── +2026/03/22 07:22:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:22:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:22:42.375878638Z"} +2026/03/22 07:22:47 [detection_layer] {"stage_name":"detection_layer","events_processed":162,"events_dropped":0,"avg_latency_ms":16.674973941288343,"throughput_eps":0,"last_update":"2026-03-22T07:22:42.479101162Z"} +2026/03/22 07:22:47 [transform_engine] {"stage_name":"transform_engine","events_processed":162,"events_dropped":0,"avg_latency_ms":547.0415688110024,"throughput_eps":0,"last_update":"2026-03-22T07:22:42.479130027Z"} +2026/03/22 07:22:47 [log_collector] {"stage_name":"log_collector","events_processed":8619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1723.8,"last_update":"2026-03-22T07:22:42.369004051Z"} +2026/03/22 07:22:47 [metric_collector] {"stage_name":"metric_collector","events_processed":4879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":975.8,"last_update":"2026-03-22T07:22:47.368313474Z"} +2026/03/22 07:22:47 ───────────────────────────────────────────────── +2026/03/22 07:22:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:22:52 [log_collector] {"stage_name":"log_collector","events_processed":8622,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1724.4,"last_update":"2026-03-22T07:22:47.368532043Z"} +2026/03/22 07:22:52 [metric_collector] {"stage_name":"metric_collector","events_processed":4879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":975.8,"last_update":"2026-03-22T07:22:47.368313474Z"} +2026/03/22 07:22:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:22:47.376798846Z"} +2026/03/22 07:22:52 [detection_layer] {"stage_name":"detection_layer","events_processed":162,"events_dropped":0,"avg_latency_ms":16.674973941288343,"throughput_eps":0,"last_update":"2026-03-22T07:22:47.478981858Z"} +2026/03/22 07:22:52 [transform_engine] {"stage_name":"transform_engine","events_processed":162,"events_dropped":0,"avg_latency_ms":547.0415688110024,"throughput_eps":0,"last_update":"2026-03-22T07:22:47.478921854Z"} +2026/03/22 07:22:52 ───────────────────────────────────────────────── +2026/03/22 07:22:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:22:57 [log_collector] {"stage_name":"log_collector","events_processed":8728,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1745.6,"last_update":"2026-03-22T07:22:52.368632385Z"} +2026/03/22 07:22:57 [metric_collector] {"stage_name":"metric_collector","events_processed":4884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":976.8,"last_update":"2026-03-22T07:22:52.368608168Z"} +2026/03/22 07:22:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:22:52.376554006Z"} +2026/03/22 07:22:57 [detection_layer] {"stage_name":"detection_layer","events_processed":162,"events_dropped":0,"avg_latency_ms":16.674973941288343,"throughput_eps":0,"last_update":"2026-03-22T07:22:52.479139881Z"} +2026/03/22 07:22:57 [transform_engine] {"stage_name":"transform_engine","events_processed":162,"events_dropped":0,"avg_latency_ms":547.0415688110024,"throughput_eps":0,"last_update":"2026-03-22T07:22:52.479118891Z"} +2026/03/22 07:22:57 ───────────────────────────────────────────────── +2026/03/22 07:23:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:23:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1958,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:22:57.377016587Z"} +2026/03/22 07:23:02 [detection_layer] {"stage_name":"detection_layer","events_processed":162,"events_dropped":0,"avg_latency_ms":16.674973941288343,"throughput_eps":0,"last_update":"2026-03-22T07:22:57.479213216Z"} +2026/03/22 07:23:02 [transform_engine] {"stage_name":"transform_engine","events_processed":163,"events_dropped":0,"avg_latency_ms":520.8438836488019,"throughput_eps":0,"last_update":"2026-03-22T07:22:57.895332074Z"} +2026/03/22 07:23:02 [log_collector] {"stage_name":"log_collector","events_processed":8937,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1787.4,"last_update":"2026-03-22T07:22:57.368672396Z"} +2026/03/22 07:23:02 [metric_collector] {"stage_name":"metric_collector","events_processed":4889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":977.8,"last_update":"2026-03-22T07:22:57.369040491Z"} +2026/03/22 07:23:02 ───────────────────────────────────────────────── +2026/03/22 07:23:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:23:07 [transform_engine] {"stage_name":"transform_engine","events_processed":163,"events_dropped":0,"avg_latency_ms":520.8438836488019,"throughput_eps":0,"last_update":"2026-03-22T07:23:02.478962728Z"} +2026/03/22 07:23:07 [log_collector] {"stage_name":"log_collector","events_processed":8980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1796,"last_update":"2026-03-22T07:23:07.368046226Z"} +2026/03/22 07:23:07 [metric_collector] {"stage_name":"metric_collector","events_processed":4894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":978.8,"last_update":"2026-03-22T07:23:02.368888622Z"} +2026/03/22 07:23:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:23:02.37674074Z"} +2026/03/22 07:23:07 [detection_layer] {"stage_name":"detection_layer","events_processed":163,"events_dropped":0,"avg_latency_ms":17.201180153030677,"throughput_eps":0,"last_update":"2026-03-22T07:23:02.479001111Z"} +2026/03/22 07:23:07 ───────────────────────────────────────────────── +2026/03/22 07:23:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:23:12 [log_collector] {"stage_name":"log_collector","events_processed":8980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1796,"last_update":"2026-03-22T07:23:07.368046226Z"} +2026/03/22 07:23:12 [metric_collector] {"stage_name":"metric_collector","events_processed":4899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":979.8,"last_update":"2026-03-22T07:23:07.368590779Z"} +2026/03/22 07:23:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1962,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:23:07.378071727Z"} +2026/03/22 07:23:12 [detection_layer] {"stage_name":"detection_layer","events_processed":163,"events_dropped":0,"avg_latency_ms":17.201180153030677,"throughput_eps":0,"last_update":"2026-03-22T07:23:07.479282648Z"} +2026/03/22 07:23:12 [transform_engine] {"stage_name":"transform_engine","events_processed":163,"events_dropped":0,"avg_latency_ms":520.8438836488019,"throughput_eps":0,"last_update":"2026-03-22T07:23:07.479326211Z"} +2026/03/22 07:23:12 ───────────────────────────────────────────────── +2026/03/22 07:23:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:23:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:23:12.378068775Z"} +2026/03/22 07:23:17 [detection_layer] {"stage_name":"detection_layer","events_processed":163,"events_dropped":0,"avg_latency_ms":17.201180153030677,"throughput_eps":0,"last_update":"2026-03-22T07:23:12.479220053Z"} +2026/03/22 07:23:17 [transform_engine] {"stage_name":"transform_engine","events_processed":163,"events_dropped":0,"avg_latency_ms":520.8438836488019,"throughput_eps":0,"last_update":"2026-03-22T07:23:12.479324042Z"} +2026/03/22 07:23:17 [log_collector] {"stage_name":"log_collector","events_processed":8980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1796,"last_update":"2026-03-22T07:23:12.367992737Z"} +2026/03/22 07:23:17 [metric_collector] {"stage_name":"metric_collector","events_processed":4904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":980.8,"last_update":"2026-03-22T07:23:12.368473177Z"} +2026/03/22 07:23:17 ───────────────────────────────────────────────── +Saved state: 11 clusters, 8981 messages, reason: none +2026/03/22 07:23:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:23:22 [detection_layer] {"stage_name":"detection_layer","events_processed":163,"events_dropped":0,"avg_latency_ms":17.201180153030677,"throughput_eps":0,"last_update":"2026-03-22T07:23:17.479204402Z"} +2026/03/22 07:23:22 [transform_engine] {"stage_name":"transform_engine","events_processed":163,"events_dropped":0,"avg_latency_ms":520.8438836488019,"throughput_eps":0,"last_update":"2026-03-22T07:23:17.479244599Z"} +2026/03/22 07:23:22 [log_collector] {"stage_name":"log_collector","events_processed":8980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1796,"last_update":"2026-03-22T07:23:17.368013267Z"} +2026/03/22 07:23:22 [metric_collector] {"stage_name":"metric_collector","events_processed":4909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":981.8,"last_update":"2026-03-22T07:23:17.368400039Z"} +2026/03/22 07:23:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:23:17.377980557Z"} +2026/03/22 07:23:22 ───────────────────────────────────────────────── +2026/03/22 07:23:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:23:27 [log_collector] {"stage_name":"log_collector","events_processed":8983,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1796.6,"last_update":"2026-03-22T07:23:22.367958287Z"} +2026/03/22 07:23:27 [metric_collector] {"stage_name":"metric_collector","events_processed":4914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":982.8,"last_update":"2026-03-22T07:23:22.368189289Z"} +2026/03/22 07:23:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:23:22.376709858Z"} +2026/03/22 07:23:27 [detection_layer] {"stage_name":"detection_layer","events_processed":163,"events_dropped":0,"avg_latency_ms":17.201180153030677,"throughput_eps":0,"last_update":"2026-03-22T07:23:22.481280613Z"} +2026/03/22 07:23:27 [transform_engine] {"stage_name":"transform_engine","events_processed":163,"events_dropped":0,"avg_latency_ms":520.8438836488019,"throughput_eps":0,"last_update":"2026-03-22T07:23:22.478817887Z"} +2026/03/22 07:23:27 ───────────────────────────────────────────────── +2026/03/22 07:23:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:23:32 [metric_collector] {"stage_name":"metric_collector","events_processed":4919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":983.8,"last_update":"2026-03-22T07:23:27.368175484Z"} +2026/03/22 07:23:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1970,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:23:27.375249141Z"} +2026/03/22 07:23:32 [detection_layer] {"stage_name":"detection_layer","events_processed":163,"events_dropped":0,"avg_latency_ms":17.201180153030677,"throughput_eps":0,"last_update":"2026-03-22T07:23:27.479447423Z"} +2026/03/22 07:23:32 [transform_engine] {"stage_name":"transform_engine","events_processed":164,"events_dropped":0,"avg_latency_ms":1246.0096917190415,"throughput_eps":0,"last_update":"2026-03-22T07:23:31.626149672Z"} +2026/03/22 07:23:32 [log_collector] {"stage_name":"log_collector","events_processed":8994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1798.8,"last_update":"2026-03-22T07:23:32.367980657Z"} +2026/03/22 07:23:32 ───────────────────────────────────────────────── +2026/03/22 07:23:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:23:37 [metric_collector] {"stage_name":"metric_collector","events_processed":4924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":984.8,"last_update":"2026-03-22T07:23:32.36844711Z"} +2026/03/22 07:23:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:23:32.378125447Z"} +2026/03/22 07:23:37 [detection_layer] {"stage_name":"detection_layer","events_processed":164,"events_dropped":0,"avg_latency_ms":17.525345522424544,"throughput_eps":0,"last_update":"2026-03-22T07:23:32.479386633Z"} +2026/03/22 07:23:37 [transform_engine] {"stage_name":"transform_engine","events_processed":164,"events_dropped":0,"avg_latency_ms":1246.0096917190415,"throughput_eps":0,"last_update":"2026-03-22T07:23:32.479338391Z"} +2026/03/22 07:23:37 [log_collector] {"stage_name":"log_collector","events_processed":8994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1798.8,"last_update":"2026-03-22T07:23:32.367980657Z"} +2026/03/22 07:23:37 ───────────────────────────────────────────────── +2026/03/22 07:23:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:23:42 [metric_collector] {"stage_name":"metric_collector","events_processed":4929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":985.8,"last_update":"2026-03-22T07:23:37.368813696Z"} +2026/03/22 07:23:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:23:37.375644869Z"} +2026/03/22 07:23:42 [detection_layer] {"stage_name":"detection_layer","events_processed":164,"events_dropped":0,"avg_latency_ms":17.525345522424544,"throughput_eps":0,"last_update":"2026-03-22T07:23:37.479825307Z"} +2026/03/22 07:23:42 [transform_engine] {"stage_name":"transform_engine","events_processed":164,"events_dropped":0,"avg_latency_ms":1246.0096917190415,"throughput_eps":0,"last_update":"2026-03-22T07:23:37.479785711Z"} +2026/03/22 07:23:42 [log_collector] {"stage_name":"log_collector","events_processed":9001,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1800.2,"last_update":"2026-03-22T07:23:37.368426024Z"} +2026/03/22 07:23:42 ───────────────────────────────────────────────── +2026/03/22 07:23:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:23:47 [metric_collector] {"stage_name":"metric_collector","events_processed":4934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":986.8,"last_update":"2026-03-22T07:23:42.36872746Z"} +2026/03/22 07:23:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:23:42.377702749Z"} +2026/03/22 07:23:47 [detection_layer] {"stage_name":"detection_layer","events_processed":164,"events_dropped":0,"avg_latency_ms":17.525345522424544,"throughput_eps":0,"last_update":"2026-03-22T07:23:42.479937039Z"} +2026/03/22 07:23:47 [transform_engine] {"stage_name":"transform_engine","events_processed":164,"events_dropped":0,"avg_latency_ms":1246.0096917190415,"throughput_eps":0,"last_update":"2026-03-22T07:23:42.47880988Z"} +2026/03/22 07:23:47 [log_collector] {"stage_name":"log_collector","events_processed":9010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1802,"last_update":"2026-03-22T07:23:42.368101611Z"} +2026/03/22 07:23:47 ───────────────────────────────────────────────── +2026/03/22 07:23:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:23:52 [metric_collector] {"stage_name":"metric_collector","events_processed":4944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":988.8,"last_update":"2026-03-22T07:23:52.368614017Z"} +2026/03/22 07:23:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:23:47.377550381Z"} +2026/03/22 07:23:52 [detection_layer] {"stage_name":"detection_layer","events_processed":164,"events_dropped":0,"avg_latency_ms":17.525345522424544,"throughput_eps":0,"last_update":"2026-03-22T07:23:47.479754934Z"} +2026/03/22 07:23:52 [transform_engine] {"stage_name":"transform_engine","events_processed":164,"events_dropped":0,"avg_latency_ms":1246.0096917190415,"throughput_eps":0,"last_update":"2026-03-22T07:23:47.479789149Z"} +2026/03/22 07:23:52 [log_collector] {"stage_name":"log_collector","events_processed":9010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1802,"last_update":"2026-03-22T07:23:47.368191177Z"} +2026/03/22 07:23:52 ───────────────────────────────────────────────── +2026/03/22 07:23:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:23:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:23:52.379518551Z"} +2026/03/22 07:23:57 [detection_layer] {"stage_name":"detection_layer","events_processed":164,"events_dropped":0,"avg_latency_ms":17.525345522424544,"throughput_eps":0,"last_update":"2026-03-22T07:23:52.479883631Z"} +2026/03/22 07:23:57 [transform_engine] {"stage_name":"transform_engine","events_processed":164,"events_dropped":0,"avg_latency_ms":1246.0096917190415,"throughput_eps":0,"last_update":"2026-03-22T07:23:52.479919009Z"} +2026/03/22 07:23:57 [log_collector] {"stage_name":"log_collector","events_processed":9010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1802,"last_update":"2026-03-22T07:23:57.368590808Z"} +2026/03/22 07:23:57 [metric_collector] {"stage_name":"metric_collector","events_processed":4944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":988.8,"last_update":"2026-03-22T07:23:52.368614017Z"} +2026/03/22 07:23:57 ───────────────────────────────────────────────── +2026/03/22 07:24:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:24:02 [log_collector] {"stage_name":"log_collector","events_processed":9010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1802,"last_update":"2026-03-22T07:23:57.368590808Z"} +2026/03/22 07:24:02 [metric_collector] {"stage_name":"metric_collector","events_processed":4949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":989.8,"last_update":"2026-03-22T07:23:57.369321358Z"} +2026/03/22 07:24:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:23:57.379548045Z"} +2026/03/22 07:24:02 [detection_layer] {"stage_name":"detection_layer","events_processed":164,"events_dropped":0,"avg_latency_ms":17.525345522424544,"throughput_eps":0,"last_update":"2026-03-22T07:23:57.479839804Z"} +2026/03/22 07:24:02 [transform_engine] {"stage_name":"transform_engine","events_processed":165,"events_dropped":0,"avg_latency_ms":1019.1313917752333,"throughput_eps":0,"last_update":"2026-03-22T07:23:57.591491671Z"} +2026/03/22 07:24:02 ───────────────────────────────────────────────── +2026/03/22 07:24:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:24:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:24:02.378141985Z"} +2026/03/22 07:24:07 [detection_layer] {"stage_name":"detection_layer","events_processed":165,"events_dropped":0,"avg_latency_ms":17.813557417939634,"throughput_eps":0,"last_update":"2026-03-22T07:24:02.479389865Z"} +2026/03/22 07:24:07 [transform_engine] {"stage_name":"transform_engine","events_processed":165,"events_dropped":0,"avg_latency_ms":1019.1313917752333,"throughput_eps":0,"last_update":"2026-03-22T07:24:02.479370769Z"} +2026/03/22 07:24:07 [log_collector] {"stage_name":"log_collector","events_processed":9010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1802,"last_update":"2026-03-22T07:24:02.368193973Z"} +2026/03/22 07:24:07 [metric_collector] {"stage_name":"metric_collector","events_processed":4954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":990.8,"last_update":"2026-03-22T07:24:02.36865726Z"} +2026/03/22 07:24:07 ───────────────────────────────────────────────── +2026/03/22 07:24:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:24:12 [metric_collector] {"stage_name":"metric_collector","events_processed":4959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":991.8,"last_update":"2026-03-22T07:24:07.368465171Z"} +2026/03/22 07:24:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:24:07.377443336Z"} +2026/03/22 07:24:12 [detection_layer] {"stage_name":"detection_layer","events_processed":165,"events_dropped":0,"avg_latency_ms":17.813557417939634,"throughput_eps":0,"last_update":"2026-03-22T07:24:07.479680191Z"} +2026/03/22 07:24:12 [transform_engine] {"stage_name":"transform_engine","events_processed":165,"events_dropped":0,"avg_latency_ms":1019.1313917752333,"throughput_eps":0,"last_update":"2026-03-22T07:24:07.479712392Z"} +2026/03/22 07:24:12 [log_collector] {"stage_name":"log_collector","events_processed":9010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1802,"last_update":"2026-03-22T07:24:07.368006884Z"} +2026/03/22 07:24:12 ───────────────────────────────────────────────── +2026/03/22 07:24:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:24:17 [metric_collector] {"stage_name":"metric_collector","events_processed":4964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":992.8,"last_update":"2026-03-22T07:24:12.368709344Z"} +2026/03/22 07:24:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:24:12.37882641Z"} +2026/03/22 07:24:17 [detection_layer] {"stage_name":"detection_layer","events_processed":165,"events_dropped":0,"avg_latency_ms":17.813557417939634,"throughput_eps":0,"last_update":"2026-03-22T07:24:12.479131485Z"} +2026/03/22 07:24:17 [transform_engine] {"stage_name":"transform_engine","events_processed":165,"events_dropped":0,"avg_latency_ms":1019.1313917752333,"throughput_eps":0,"last_update":"2026-03-22T07:24:12.479089805Z"} +2026/03/22 07:24:17 [log_collector] {"stage_name":"log_collector","events_processed":9010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1802,"last_update":"2026-03-22T07:24:12.36831626Z"} +2026/03/22 07:24:17 ───────────────────────────────────────────────── +2026/03/22 07:24:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:24:22 [log_collector] {"stage_name":"log_collector","events_processed":9010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1802,"last_update":"2026-03-22T07:24:17.3680906Z"} +2026/03/22 07:24:22 [metric_collector] {"stage_name":"metric_collector","events_processed":4969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":993.8,"last_update":"2026-03-22T07:24:17.368641255Z"} +2026/03/22 07:24:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1990,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:24:17.379215858Z"} +2026/03/22 07:24:22 [detection_layer] {"stage_name":"detection_layer","events_processed":165,"events_dropped":0,"avg_latency_ms":17.813557417939634,"throughput_eps":0,"last_update":"2026-03-22T07:24:17.47949882Z"} +2026/03/22 07:24:22 [transform_engine] {"stage_name":"transform_engine","events_processed":165,"events_dropped":0,"avg_latency_ms":1019.1313917752333,"throughput_eps":0,"last_update":"2026-03-22T07:24:17.479469213Z"} +2026/03/22 07:24:22 ───────────────────────────────────────────────── +2026/03/22 07:24:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:24:27 [metric_collector] {"stage_name":"metric_collector","events_processed":4974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":994.8,"last_update":"2026-03-22T07:24:22.368343252Z"} +2026/03/22 07:24:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1992,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:24:22.376713303Z"} +2026/03/22 07:24:27 [detection_layer] {"stage_name":"detection_layer","events_processed":165,"events_dropped":0,"avg_latency_ms":17.813557417939634,"throughput_eps":0,"last_update":"2026-03-22T07:24:22.479904385Z"} +2026/03/22 07:24:27 [transform_engine] {"stage_name":"transform_engine","events_processed":165,"events_dropped":0,"avg_latency_ms":1019.1313917752333,"throughput_eps":0,"last_update":"2026-03-22T07:24:22.478823014Z"} +2026/03/22 07:24:27 [log_collector] {"stage_name":"log_collector","events_processed":9010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1802,"last_update":"2026-03-22T07:24:22.367972292Z"} +2026/03/22 07:24:27 ───────────────────────────────────────────────── +2026/03/22 07:24:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:24:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:24:27.378033216Z"} +2026/03/22 07:24:32 [detection_layer] {"stage_name":"detection_layer","events_processed":165,"events_dropped":0,"avg_latency_ms":17.813557417939634,"throughput_eps":0,"last_update":"2026-03-22T07:24:27.479257681Z"} +2026/03/22 07:24:32 [transform_engine] {"stage_name":"transform_engine","events_processed":166,"events_dropped":0,"avg_latency_ms":828.8798298201866,"throughput_eps":0,"last_update":"2026-03-22T07:24:27.547173524Z"} +2026/03/22 07:24:32 [log_collector] {"stage_name":"log_collector","events_processed":9010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1802,"last_update":"2026-03-22T07:24:27.368175887Z"} +2026/03/22 07:24:32 [metric_collector] {"stage_name":"metric_collector","events_processed":4979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":995.8,"last_update":"2026-03-22T07:24:27.368680283Z"} +2026/03/22 07:24:32 ───────────────────────────────────────────────── +Saved state: 11 clusters, 9011 messages, reason: none +2026/03/22 07:24:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:24:37 [transform_engine] {"stage_name":"transform_engine","events_processed":166,"events_dropped":0,"avg_latency_ms":828.8798298201866,"throughput_eps":0,"last_update":"2026-03-22T07:24:32.479510395Z"} +2026/03/22 07:24:37 [log_collector] {"stage_name":"log_collector","events_processed":9013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1802.6,"last_update":"2026-03-22T07:24:37.368107152Z"} +2026/03/22 07:24:37 [metric_collector] {"stage_name":"metric_collector","events_processed":4984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":996.8,"last_update":"2026-03-22T07:24:32.368312008Z"} +2026/03/22 07:24:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1996,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:24:32.378190618Z"} +2026/03/22 07:24:37 [detection_layer] {"stage_name":"detection_layer","events_processed":166,"events_dropped":0,"avg_latency_ms":18.32636553435171,"throughput_eps":0,"last_update":"2026-03-22T07:24:32.479499004Z"} +2026/03/22 07:24:37 ───────────────────────────────────────────────── +2026/03/22 07:24:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:24:42 [log_collector] {"stage_name":"log_collector","events_processed":9024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1804.8,"last_update":"2026-03-22T07:24:42.368604177Z"} +2026/03/22 07:24:42 [metric_collector] {"stage_name":"metric_collector","events_processed":4989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":997.8,"last_update":"2026-03-22T07:24:37.368630314Z"} +2026/03/22 07:24:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:24:37.377821157Z"} +2026/03/22 07:24:42 [detection_layer] {"stage_name":"detection_layer","events_processed":166,"events_dropped":0,"avg_latency_ms":18.32636553435171,"throughput_eps":0,"last_update":"2026-03-22T07:24:37.480022312Z"} +2026/03/22 07:24:42 [transform_engine] {"stage_name":"transform_engine","events_processed":166,"events_dropped":0,"avg_latency_ms":828.8798298201866,"throughput_eps":0,"last_update":"2026-03-22T07:24:37.478905083Z"} +2026/03/22 07:24:42 ───────────────────────────────────────────────── +2026/03/22 07:24:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:24:47 [detection_layer] {"stage_name":"detection_layer","events_processed":166,"events_dropped":0,"avg_latency_ms":18.32636553435171,"throughput_eps":0,"last_update":"2026-03-22T07:24:42.479151528Z"} +2026/03/22 07:24:47 [transform_engine] {"stage_name":"transform_engine","events_processed":166,"events_dropped":0,"avg_latency_ms":828.8798298201866,"throughput_eps":0,"last_update":"2026-03-22T07:24:42.479186985Z"} +2026/03/22 07:24:47 [log_collector] {"stage_name":"log_collector","events_processed":9024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1804.8,"last_update":"2026-03-22T07:24:42.368604177Z"} +2026/03/22 07:24:47 [metric_collector] {"stage_name":"metric_collector","events_processed":4994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":998.8,"last_update":"2026-03-22T07:24:42.369139222Z"} +2026/03/22 07:24:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:24:42.377935489Z"} +2026/03/22 07:24:47 ───────────────────────────────────────────────── +2026/03/22 07:24:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:24:52 [detection_layer] {"stage_name":"detection_layer","events_processed":166,"events_dropped":0,"avg_latency_ms":18.32636553435171,"throughput_eps":0,"last_update":"2026-03-22T07:24:47.47901816Z"} +2026/03/22 07:24:52 [transform_engine] {"stage_name":"transform_engine","events_processed":166,"events_dropped":0,"avg_latency_ms":828.8798298201866,"throughput_eps":0,"last_update":"2026-03-22T07:24:47.479070241Z"} +2026/03/22 07:24:52 [log_collector] {"stage_name":"log_collector","events_processed":9024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1804.8,"last_update":"2026-03-22T07:24:52.368517906Z"} +2026/03/22 07:24:52 [metric_collector] {"stage_name":"metric_collector","events_processed":4999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":999.8,"last_update":"2026-03-22T07:24:47.368902037Z"} +2026/03/22 07:24:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:24:47.379844514Z"} +2026/03/22 07:24:52 ───────────────────────────────────────────────── +2026/03/22 07:24:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:24:57 [detection_layer] {"stage_name":"detection_layer","events_processed":166,"events_dropped":0,"avg_latency_ms":18.32636553435171,"throughput_eps":0,"last_update":"2026-03-22T07:24:52.479138046Z"} +2026/03/22 07:24:57 [transform_engine] {"stage_name":"transform_engine","events_processed":166,"events_dropped":0,"avg_latency_ms":828.8798298201866,"throughput_eps":0,"last_update":"2026-03-22T07:24:52.47916086Z"} +2026/03/22 07:24:57 [log_collector] {"stage_name":"log_collector","events_processed":9024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1804.8,"last_update":"2026-03-22T07:24:52.368517906Z"} +2026/03/22 07:24:57 [metric_collector] {"stage_name":"metric_collector","events_processed":5004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1000.8,"last_update":"2026-03-22T07:24:52.368882946Z"} +2026/03/22 07:24:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:24:52.37794462Z"} +2026/03/22 07:24:57 ───────────────────────────────────────────────── +2026/03/22 07:25:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:25:02 [detection_layer] {"stage_name":"detection_layer","events_processed":166,"events_dropped":0,"avg_latency_ms":18.32636553435171,"throughput_eps":0,"last_update":"2026-03-22T07:24:57.479600966Z"} +2026/03/22 07:25:02 [transform_engine] {"stage_name":"transform_engine","events_processed":167,"events_dropped":0,"avg_latency_ms":685.0543914561493,"throughput_eps":0,"last_update":"2026-03-22T07:24:57.589315421Z"} +2026/03/22 07:25:02 [log_collector] {"stage_name":"log_collector","events_processed":9024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1804.8,"last_update":"2026-03-22T07:25:02.368550641Z"} +2026/03/22 07:25:02 [metric_collector] {"stage_name":"metric_collector","events_processed":5009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1001.8,"last_update":"2026-03-22T07:24:57.368533359Z"} +2026/03/22 07:25:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2006,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:24:57.378330803Z"} +2026/03/22 07:25:02 ───────────────────────────────────────────────── +2026/03/22 07:25:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:25:07 [metric_collector] {"stage_name":"metric_collector","events_processed":5014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1002.8,"last_update":"2026-03-22T07:25:02.369153315Z"} +2026/03/22 07:25:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2008,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:25:02.377911068Z"} +2026/03/22 07:25:07 [detection_layer] {"stage_name":"detection_layer","events_processed":167,"events_dropped":0,"avg_latency_ms":18.53051122748137,"throughput_eps":0,"last_update":"2026-03-22T07:25:02.479219113Z"} +2026/03/22 07:25:07 [transform_engine] {"stage_name":"transform_engine","events_processed":167,"events_dropped":0,"avg_latency_ms":685.0543914561493,"throughput_eps":0,"last_update":"2026-03-22T07:25:02.479260432Z"} +2026/03/22 07:25:07 [log_collector] {"stage_name":"log_collector","events_processed":9024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1804.8,"last_update":"2026-03-22T07:25:02.368550641Z"} +2026/03/22 07:25:07 ───────────────────────────────────────────────── +2026/03/22 07:25:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:25:12 [transform_engine] {"stage_name":"transform_engine","events_processed":167,"events_dropped":0,"avg_latency_ms":685.0543914561493,"throughput_eps":0,"last_update":"2026-03-22T07:25:07.479851741Z"} +2026/03/22 07:25:12 [log_collector] {"stage_name":"log_collector","events_processed":9024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1804.8,"last_update":"2026-03-22T07:25:07.368424003Z"} +2026/03/22 07:25:12 [metric_collector] {"stage_name":"metric_collector","events_processed":5018,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1003.6,"last_update":"2026-03-22T07:25:07.368483288Z"} +2026/03/22 07:25:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:25:07.378510812Z"} +2026/03/22 07:25:12 [detection_layer] {"stage_name":"detection_layer","events_processed":167,"events_dropped":0,"avg_latency_ms":18.53051122748137,"throughput_eps":0,"last_update":"2026-03-22T07:25:07.479970097Z"} +2026/03/22 07:25:12 ───────────────────────────────────────────────── +2026/03/22 07:25:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:25:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2012,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:25:12.379071239Z"} +2026/03/22 07:25:17 [detection_layer] {"stage_name":"detection_layer","events_processed":167,"events_dropped":0,"avg_latency_ms":18.53051122748137,"throughput_eps":0,"last_update":"2026-03-22T07:25:12.479435898Z"} +2026/03/22 07:25:17 [transform_engine] {"stage_name":"transform_engine","events_processed":167,"events_dropped":0,"avg_latency_ms":685.0543914561493,"throughput_eps":0,"last_update":"2026-03-22T07:25:12.479319374Z"} +2026/03/22 07:25:17 [log_collector] {"stage_name":"log_collector","events_processed":9024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1804.8,"last_update":"2026-03-22T07:25:12.369032112Z"} +2026/03/22 07:25:17 [metric_collector] {"stage_name":"metric_collector","events_processed":5023,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1004.6,"last_update":"2026-03-22T07:25:12.368858289Z"} +2026/03/22 07:25:17 ───────────────────────────────────────────────── +2026/03/22 07:25:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:25:22 [log_collector] {"stage_name":"log_collector","events_processed":9024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1804.8,"last_update":"2026-03-22T07:25:17.367999705Z"} +2026/03/22 07:25:22 [metric_collector] {"stage_name":"metric_collector","events_processed":5028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1005.6,"last_update":"2026-03-22T07:25:17.367895905Z"} +2026/03/22 07:25:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:25:17.377693009Z"} +2026/03/22 07:25:22 [detection_layer] {"stage_name":"detection_layer","events_processed":167,"events_dropped":0,"avg_latency_ms":18.53051122748137,"throughput_eps":0,"last_update":"2026-03-22T07:25:17.479880328Z"} +2026/03/22 07:25:22 [transform_engine] {"stage_name":"transform_engine","events_processed":167,"events_dropped":0,"avg_latency_ms":685.0543914561493,"throughput_eps":0,"last_update":"2026-03-22T07:25:17.479981301Z"} +2026/03/22 07:25:22 ───────────────────────────────────────────────── +2026/03/22 07:25:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:25:27 [metric_collector] {"stage_name":"metric_collector","events_processed":5033,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1006.6,"last_update":"2026-03-22T07:25:22.367935678Z"} +2026/03/22 07:25:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:25:22.377461061Z"} +2026/03/22 07:25:27 [detection_layer] {"stage_name":"detection_layer","events_processed":167,"events_dropped":0,"avg_latency_ms":18.53051122748137,"throughput_eps":0,"last_update":"2026-03-22T07:25:22.479699948Z"} +2026/03/22 07:25:27 [transform_engine] {"stage_name":"transform_engine","events_processed":167,"events_dropped":0,"avg_latency_ms":685.0543914561493,"throughput_eps":0,"last_update":"2026-03-22T07:25:22.479656726Z"} +2026/03/22 07:25:27 [log_collector] {"stage_name":"log_collector","events_processed":9024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1804.8,"last_update":"2026-03-22T07:25:22.367944374Z"} +2026/03/22 07:25:27 ───────────────────────────────────────────────── +2026/03/22 07:25:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:25:32 [log_collector] {"stage_name":"log_collector","events_processed":9024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1804.8,"last_update":"2026-03-22T07:25:27.368555508Z"} +2026/03/22 07:25:32 [metric_collector] {"stage_name":"metric_collector","events_processed":5038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1007.6,"last_update":"2026-03-22T07:25:27.368634941Z"} +2026/03/22 07:25:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2018,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:25:27.378029914Z"} +2026/03/22 07:25:32 [detection_layer] {"stage_name":"detection_layer","events_processed":167,"events_dropped":0,"avg_latency_ms":18.53051122748137,"throughput_eps":0,"last_update":"2026-03-22T07:25:27.479395309Z"} +2026/03/22 07:25:32 [transform_engine] {"stage_name":"transform_engine","events_processed":168,"events_dropped":0,"avg_latency_ms":563.9522173649195,"throughput_eps":0,"last_update":"2026-03-22T07:25:27.558810534Z"} +2026/03/22 07:25:32 ───────────────────────────────────────────────── +2026/03/22 07:25:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:25:37 [log_collector] {"stage_name":"log_collector","events_processed":9024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1804.8,"last_update":"2026-03-22T07:25:32.367968725Z"} +2026/03/22 07:25:37 [metric_collector] {"stage_name":"metric_collector","events_processed":5044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1008.8,"last_update":"2026-03-22T07:25:32.368344344Z"} +2026/03/22 07:25:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2020,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:25:32.377404415Z"} +2026/03/22 07:25:37 [detection_layer] {"stage_name":"detection_layer","events_processed":168,"events_dropped":0,"avg_latency_ms":19.005410381985097,"throughput_eps":0,"last_update":"2026-03-22T07:25:32.479670716Z"} +2026/03/22 07:25:37 [transform_engine] {"stage_name":"transform_engine","events_processed":168,"events_dropped":0,"avg_latency_ms":563.9522173649195,"throughput_eps":0,"last_update":"2026-03-22T07:25:32.4797041Z"} +2026/03/22 07:25:37 ───────────────────────────────────────────────── +Saved state: 11 clusters, 9025 messages, reason: none +2026/03/22 07:25:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:25:42 [metric_collector] {"stage_name":"metric_collector","events_processed":5049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1009.8,"last_update":"2026-03-22T07:25:37.369295211Z"} +2026/03/22 07:25:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2022,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:25:37.378919994Z"} +2026/03/22 07:25:42 [detection_layer] {"stage_name":"detection_layer","events_processed":168,"events_dropped":0,"avg_latency_ms":19.005410381985097,"throughput_eps":0,"last_update":"2026-03-22T07:25:37.479270044Z"} +2026/03/22 07:25:42 [transform_engine] {"stage_name":"transform_engine","events_processed":168,"events_dropped":0,"avg_latency_ms":563.9522173649195,"throughput_eps":0,"last_update":"2026-03-22T07:25:37.479144935Z"} +2026/03/22 07:25:42 [log_collector] {"stage_name":"log_collector","events_processed":9024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1804.8,"last_update":"2026-03-22T07:25:37.368912929Z"} +2026/03/22 07:25:42 ───────────────────────────────────────────────── +2026/03/22 07:25:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:25:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:25:42.37460799Z"} +2026/03/22 07:25:47 [detection_layer] {"stage_name":"detection_layer","events_processed":168,"events_dropped":0,"avg_latency_ms":19.005410381985097,"throughput_eps":0,"last_update":"2026-03-22T07:25:42.479716432Z"} +2026/03/22 07:25:47 [transform_engine] {"stage_name":"transform_engine","events_processed":168,"events_dropped":0,"avg_latency_ms":563.9522173649195,"throughput_eps":0,"last_update":"2026-03-22T07:25:42.479696836Z"} +2026/03/22 07:25:47 [log_collector] {"stage_name":"log_collector","events_processed":9029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1805.8,"last_update":"2026-03-22T07:25:42.367955529Z"} +2026/03/22 07:25:47 [metric_collector] {"stage_name":"metric_collector","events_processed":5054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1010.8,"last_update":"2026-03-22T07:25:42.368156644Z"} +2026/03/22 07:25:47 ───────────────────────────────────────────────── +2026/03/22 07:25:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:25:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:25:47.375373125Z"} +2026/03/22 07:25:52 [detection_layer] {"stage_name":"detection_layer","events_processed":168,"events_dropped":0,"avg_latency_ms":19.005410381985097,"throughput_eps":0,"last_update":"2026-03-22T07:25:47.479626279Z"} +2026/03/22 07:25:52 [transform_engine] {"stage_name":"transform_engine","events_processed":168,"events_dropped":0,"avg_latency_ms":563.9522173649195,"throughput_eps":0,"last_update":"2026-03-22T07:25:47.479595711Z"} +2026/03/22 07:25:52 [log_collector] {"stage_name":"log_collector","events_processed":9029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1805.8,"last_update":"2026-03-22T07:25:47.367981789Z"} +2026/03/22 07:25:52 [metric_collector] {"stage_name":"metric_collector","events_processed":5059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1011.8,"last_update":"2026-03-22T07:25:47.368203453Z"} +2026/03/22 07:25:52 ───────────────────────────────────────────────── +2026/03/22 07:25:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:25:57 [metric_collector] {"stage_name":"metric_collector","events_processed":5064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1012.8,"last_update":"2026-03-22T07:25:52.368464901Z"} +2026/03/22 07:25:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:25:52.375924197Z"} +2026/03/22 07:25:57 [detection_layer] {"stage_name":"detection_layer","events_processed":168,"events_dropped":0,"avg_latency_ms":19.005410381985097,"throughput_eps":0,"last_update":"2026-03-22T07:25:52.479697283Z"} +2026/03/22 07:25:57 [transform_engine] {"stage_name":"transform_engine","events_processed":168,"events_dropped":0,"avg_latency_ms":563.9522173649195,"throughput_eps":0,"last_update":"2026-03-22T07:25:52.479709376Z"} +2026/03/22 07:25:57 [log_collector] {"stage_name":"log_collector","events_processed":9029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1805.8,"last_update":"2026-03-22T07:25:52.368409866Z"} +2026/03/22 07:25:57 ───────────────────────────────────────────────── +2026/03/22 07:26:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:26:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:25:57.377927479Z"} +2026/03/22 07:26:02 [detection_layer] {"stage_name":"detection_layer","events_processed":168,"events_dropped":0,"avg_latency_ms":19.005410381985097,"throughput_eps":0,"last_update":"2026-03-22T07:25:57.479148216Z"} +2026/03/22 07:26:02 [transform_engine] {"stage_name":"transform_engine","events_processed":169,"events_dropped":0,"avg_latency_ms":752.9743932919356,"throughput_eps":0,"last_update":"2026-03-22T07:25:58.988237353Z"} +2026/03/22 07:26:02 [log_collector] {"stage_name":"log_collector","events_processed":9029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1805.8,"last_update":"2026-03-22T07:25:57.368375205Z"} +2026/03/22 07:26:02 [metric_collector] {"stage_name":"metric_collector","events_processed":5069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1013.8,"last_update":"2026-03-22T07:25:57.368214046Z"} +2026/03/22 07:26:02 ───────────────────────────────────────────────── +2026/03/22 07:26:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:26:07 [log_collector] {"stage_name":"log_collector","events_processed":9029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1805.8,"last_update":"2026-03-22T07:26:02.368169561Z"} +2026/03/22 07:26:07 [metric_collector] {"stage_name":"metric_collector","events_processed":5074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1014.8,"last_update":"2026-03-22T07:26:02.368694456Z"} +2026/03/22 07:26:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:26:02.375830814Z"} +2026/03/22 07:26:07 [detection_layer] {"stage_name":"detection_layer","events_processed":169,"events_dropped":0,"avg_latency_ms":17.41561150558808,"throughput_eps":0,"last_update":"2026-03-22T07:26:02.479455976Z"} +2026/03/22 07:26:07 [transform_engine] {"stage_name":"transform_engine","events_processed":169,"events_dropped":0,"avg_latency_ms":752.9743932919356,"throughput_eps":0,"last_update":"2026-03-22T07:26:02.47941668Z"} +2026/03/22 07:26:07 ───────────────────────────────────────────────── +2026/03/22 07:26:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:26:12 [log_collector] {"stage_name":"log_collector","events_processed":9029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1805.8,"last_update":"2026-03-22T07:26:07.368313033Z"} +2026/03/22 07:26:12 [metric_collector] {"stage_name":"metric_collector","events_processed":5079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1015.8,"last_update":"2026-03-22T07:26:07.368652323Z"} +2026/03/22 07:26:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:26:07.375413773Z"} +2026/03/22 07:26:12 [detection_layer] {"stage_name":"detection_layer","events_processed":169,"events_dropped":0,"avg_latency_ms":17.41561150558808,"throughput_eps":0,"last_update":"2026-03-22T07:26:07.47965822Z"} +2026/03/22 07:26:12 [transform_engine] {"stage_name":"transform_engine","events_processed":169,"events_dropped":0,"avg_latency_ms":752.9743932919356,"throughput_eps":0,"last_update":"2026-03-22T07:26:07.479670093Z"} +2026/03/22 07:26:12 ───────────────────────────────────────────────── +2026/03/22 07:26:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:26:17 [detection_layer] {"stage_name":"detection_layer","events_processed":169,"events_dropped":0,"avg_latency_ms":17.41561150558808,"throughput_eps":0,"last_update":"2026-03-22T07:26:12.479872075Z"} +2026/03/22 07:26:17 [transform_engine] {"stage_name":"transform_engine","events_processed":169,"events_dropped":0,"avg_latency_ms":752.9743932919356,"throughput_eps":0,"last_update":"2026-03-22T07:26:12.479898606Z"} +2026/03/22 07:26:17 [log_collector] {"stage_name":"log_collector","events_processed":9029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1805.8,"last_update":"2026-03-22T07:26:12.368124377Z"} +2026/03/22 07:26:17 [metric_collector] {"stage_name":"metric_collector","events_processed":5084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1016.8,"last_update":"2026-03-22T07:26:12.368404894Z"} +2026/03/22 07:26:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2036,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:26:12.37964988Z"} +2026/03/22 07:26:17 ───────────────────────────────────────────────── +2026/03/22 07:26:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:26:22 [log_collector] {"stage_name":"log_collector","events_processed":9029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1805.8,"last_update":"2026-03-22T07:26:17.367999991Z"} +2026/03/22 07:26:22 [metric_collector] {"stage_name":"metric_collector","events_processed":5089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1017.8,"last_update":"2026-03-22T07:26:17.36830766Z"} +2026/03/22 07:26:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:26:17.375312075Z"} +2026/03/22 07:26:22 [detection_layer] {"stage_name":"detection_layer","events_processed":169,"events_dropped":0,"avg_latency_ms":17.41561150558808,"throughput_eps":0,"last_update":"2026-03-22T07:26:17.479526606Z"} +2026/03/22 07:26:22 [transform_engine] {"stage_name":"transform_engine","events_processed":169,"events_dropped":0,"avg_latency_ms":752.9743932919356,"throughput_eps":0,"last_update":"2026-03-22T07:26:17.47950248Z"} +2026/03/22 07:26:22 ───────────────────────────────────────────────── +2026/03/22 07:26:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:26:27 [metric_collector] {"stage_name":"metric_collector","events_processed":5094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1018.8,"last_update":"2026-03-22T07:26:22.368121141Z"} +2026/03/22 07:26:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:26:22.37504394Z"} +2026/03/22 07:26:27 [detection_layer] {"stage_name":"detection_layer","events_processed":169,"events_dropped":0,"avg_latency_ms":17.41561150558808,"throughput_eps":0,"last_update":"2026-03-22T07:26:22.479327422Z"} +2026/03/22 07:26:27 [transform_engine] {"stage_name":"transform_engine","events_processed":169,"events_dropped":0,"avg_latency_ms":752.9743932919356,"throughput_eps":0,"last_update":"2026-03-22T07:26:22.479299769Z"} +2026/03/22 07:26:27 [log_collector] {"stage_name":"log_collector","events_processed":9029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1805.8,"last_update":"2026-03-22T07:26:22.368231363Z"} +2026/03/22 07:26:27 ───────────────────────────────────────────────── +2026/03/22 07:26:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:26:32 [log_collector] {"stage_name":"log_collector","events_processed":9040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1808,"last_update":"2026-03-22T07:26:27.368873658Z"} +2026/03/22 07:26:32 [metric_collector] {"stage_name":"metric_collector","events_processed":5099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1019.8,"last_update":"2026-03-22T07:26:27.369228859Z"} +2026/03/22 07:26:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:26:27.378046707Z"} +2026/03/22 07:26:32 [detection_layer] {"stage_name":"detection_layer","events_processed":169,"events_dropped":0,"avg_latency_ms":17.41561150558808,"throughput_eps":0,"last_update":"2026-03-22T07:26:27.479269798Z"} +2026/03/22 07:26:32 [transform_engine] {"stage_name":"transform_engine","events_processed":170,"events_dropped":0,"avg_latency_ms":624.8639666335486,"throughput_eps":0,"last_update":"2026-03-22T07:26:27.591708009Z"} +2026/03/22 07:26:32 ───────────────────────────────────────────────── +2026/03/22 07:26:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:26:37 [detection_layer] {"stage_name":"detection_layer","events_processed":170,"events_dropped":0,"avg_latency_ms":17.016092804470464,"throughput_eps":0,"last_update":"2026-03-22T07:26:32.479799975Z"} +2026/03/22 07:26:37 [transform_engine] {"stage_name":"transform_engine","events_processed":170,"events_dropped":0,"avg_latency_ms":624.8639666335486,"throughput_eps":0,"last_update":"2026-03-22T07:26:32.479822218Z"} +2026/03/22 07:26:37 [log_collector] {"stage_name":"log_collector","events_processed":9040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1808,"last_update":"2026-03-22T07:26:32.36872714Z"} +2026/03/22 07:26:37 [metric_collector] {"stage_name":"metric_collector","events_processed":5104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1020.8,"last_update":"2026-03-22T07:26:32.369069125Z"} +2026/03/22 07:26:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:26:32.377437001Z"} +2026/03/22 07:26:37 ───────────────────────────────────────────────── +Saved state: 11 clusters, 9389 messages, reason: none +2026/03/22 07:26:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:26:42 [log_collector] {"stage_name":"log_collector","events_processed":9258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1851.6,"last_update":"2026-03-22T07:26:37.36873768Z"} +2026/03/22 07:26:42 [metric_collector] {"stage_name":"metric_collector","events_processed":5109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1021.8,"last_update":"2026-03-22T07:26:37.3689774Z"} +2026/03/22 07:26:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:26:37.375784456Z"} +2026/03/22 07:26:42 [detection_layer] {"stage_name":"detection_layer","events_processed":170,"events_dropped":0,"avg_latency_ms":17.016092804470464,"throughput_eps":0,"last_update":"2026-03-22T07:26:37.479142606Z"} +2026/03/22 07:26:42 [transform_engine] {"stage_name":"transform_engine","events_processed":170,"events_dropped":0,"avg_latency_ms":624.8639666335486,"throughput_eps":0,"last_update":"2026-03-22T07:26:37.479114142Z"} +2026/03/22 07:26:42 ───────────────────────────────────────────────── +2026/03/22 07:26:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:26:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2048,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:26:42.375487834Z"} +2026/03/22 07:26:47 [detection_layer] {"stage_name":"detection_layer","events_processed":170,"events_dropped":0,"avg_latency_ms":17.016092804470464,"throughput_eps":0,"last_update":"2026-03-22T07:26:42.479732402Z"} +2026/03/22 07:26:47 [transform_engine] {"stage_name":"transform_engine","events_processed":170,"events_dropped":0,"avg_latency_ms":624.8639666335486,"throughput_eps":0,"last_update":"2026-03-22T07:26:42.479708737Z"} +2026/03/22 07:26:47 [log_collector] {"stage_name":"log_collector","events_processed":9392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1878.4,"last_update":"2026-03-22T07:26:42.368017958Z"} +2026/03/22 07:26:47 [metric_collector] {"stage_name":"metric_collector","events_processed":5114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1022.8,"last_update":"2026-03-22T07:26:42.368387105Z"} +2026/03/22 07:26:47 ───────────────────────────────────────────────── +2026/03/22 07:26:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:26:52 [detection_layer] {"stage_name":"detection_layer","events_processed":170,"events_dropped":0,"avg_latency_ms":17.016092804470464,"throughput_eps":0,"last_update":"2026-03-22T07:26:47.479507927Z"} +2026/03/22 07:26:52 [transform_engine] {"stage_name":"transform_engine","events_processed":170,"events_dropped":0,"avg_latency_ms":624.8639666335486,"throughput_eps":0,"last_update":"2026-03-22T07:26:47.479490664Z"} +2026/03/22 07:26:52 [log_collector] {"stage_name":"log_collector","events_processed":9395,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1879,"last_update":"2026-03-22T07:26:47.368255918Z"} +2026/03/22 07:26:52 [metric_collector] {"stage_name":"metric_collector","events_processed":5119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1023.8,"last_update":"2026-03-22T07:26:47.368763761Z"} +2026/03/22 07:26:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2050,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:26:47.378189273Z"} +2026/03/22 07:26:52 ───────────────────────────────────────────────── +2026/03/22 07:26:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:26:57 [log_collector] {"stage_name":"log_collector","events_processed":9405,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1881,"last_update":"2026-03-22T07:26:57.368320465Z"} +2026/03/22 07:26:57 [metric_collector] {"stage_name":"metric_collector","events_processed":5124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1024.8,"last_update":"2026-03-22T07:26:52.368200435Z"} +2026/03/22 07:26:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:26:52.377968222Z"} +2026/03/22 07:26:57 [detection_layer] {"stage_name":"detection_layer","events_processed":170,"events_dropped":0,"avg_latency_ms":17.016092804470464,"throughput_eps":0,"last_update":"2026-03-22T07:26:52.47915835Z"} +2026/03/22 07:26:57 [transform_engine] {"stage_name":"transform_engine","events_processed":170,"events_dropped":0,"avg_latency_ms":624.8639666335486,"throughput_eps":0,"last_update":"2026-03-22T07:26:52.479141768Z"} +2026/03/22 07:26:57 ───────────────────────────────────────────────── +2026/03/22 07:27:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:27:02 [metric_collector] {"stage_name":"metric_collector","events_processed":5129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1025.8,"last_update":"2026-03-22T07:26:57.368947516Z"} +2026/03/22 07:27:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:26:57.375361931Z"} +2026/03/22 07:27:02 [detection_layer] {"stage_name":"detection_layer","events_processed":170,"events_dropped":0,"avg_latency_ms":17.016092804470464,"throughput_eps":0,"last_update":"2026-03-22T07:26:57.479590287Z"} +2026/03/22 07:27:02 [transform_engine] {"stage_name":"transform_engine","events_processed":171,"events_dropped":0,"avg_latency_ms":524.9885475068389,"throughput_eps":0,"last_update":"2026-03-22T07:26:57.605105312Z"} +2026/03/22 07:27:02 [log_collector] {"stage_name":"log_collector","events_processed":9414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1882.8,"last_update":"2026-03-22T07:27:02.36806965Z"} +2026/03/22 07:27:02 ───────────────────────────────────────────────── +2026/03/22 07:27:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:27:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2056,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:27:02.376121822Z"} +2026/03/22 07:27:07 [detection_layer] {"stage_name":"detection_layer","events_processed":171,"events_dropped":0,"avg_latency_ms":16.161321043576372,"throughput_eps":0,"last_update":"2026-03-22T07:27:02.47938024Z"} +2026/03/22 07:27:07 [transform_engine] {"stage_name":"transform_engine","events_processed":171,"events_dropped":0,"avg_latency_ms":524.9885475068389,"throughput_eps":0,"last_update":"2026-03-22T07:27:02.479393005Z"} +2026/03/22 07:27:07 [log_collector] {"stage_name":"log_collector","events_processed":9422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1884.4,"last_update":"2026-03-22T07:27:07.368219491Z"} +2026/03/22 07:27:07 [metric_collector] {"stage_name":"metric_collector","events_processed":5134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1026.8,"last_update":"2026-03-22T07:27:02.368574877Z"} +2026/03/22 07:27:07 ───────────────────────────────────────────────── +2026/03/22 07:27:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:27:12 [transform_engine] {"stage_name":"transform_engine","events_processed":171,"events_dropped":0,"avg_latency_ms":524.9885475068389,"throughput_eps":0,"last_update":"2026-03-22T07:27:07.47946131Z"} +2026/03/22 07:27:12 [log_collector] {"stage_name":"log_collector","events_processed":9422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1884.4,"last_update":"2026-03-22T07:27:07.368219491Z"} +2026/03/22 07:27:12 [metric_collector] {"stage_name":"metric_collector","events_processed":5139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1027.8,"last_update":"2026-03-22T07:27:07.368560444Z"} +2026/03/22 07:27:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:27:07.379155044Z"} +2026/03/22 07:27:12 [detection_layer] {"stage_name":"detection_layer","events_processed":171,"events_dropped":0,"avg_latency_ms":16.161321043576372,"throughput_eps":0,"last_update":"2026-03-22T07:27:07.479445319Z"} +2026/03/22 07:27:12 ───────────────────────────────────────────────── +2026/03/22 07:27:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:27:17 [detection_layer] {"stage_name":"detection_layer","events_processed":171,"events_dropped":0,"avg_latency_ms":16.161321043576372,"throughput_eps":0,"last_update":"2026-03-22T07:27:12.479009866Z"} +2026/03/22 07:27:17 [transform_engine] {"stage_name":"transform_engine","events_processed":171,"events_dropped":0,"avg_latency_ms":524.9885475068389,"throughput_eps":0,"last_update":"2026-03-22T07:27:12.478967375Z"} +2026/03/22 07:27:17 [log_collector] {"stage_name":"log_collector","events_processed":9422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1884.4,"last_update":"2026-03-22T07:27:12.368472817Z"} +2026/03/22 07:27:17 [metric_collector] {"stage_name":"metric_collector","events_processed":5144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1028.8,"last_update":"2026-03-22T07:27:12.368705012Z"} +2026/03/22 07:27:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:27:12.377376179Z"} +2026/03/22 07:27:17 ───────────────────────────────────────────────── +2026/03/22 07:27:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:27:22 [log_collector] {"stage_name":"log_collector","events_processed":9422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1884.4,"last_update":"2026-03-22T07:27:17.368411831Z"} +2026/03/22 07:27:22 [metric_collector] {"stage_name":"metric_collector","events_processed":5149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1029.8,"last_update":"2026-03-22T07:27:17.369007302Z"} +2026/03/22 07:27:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2062,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:27:17.378789536Z"} +2026/03/22 07:27:22 [detection_layer] {"stage_name":"detection_layer","events_processed":171,"events_dropped":0,"avg_latency_ms":16.161321043576372,"throughput_eps":0,"last_update":"2026-03-22T07:27:17.478996201Z"} +2026/03/22 07:27:22 [transform_engine] {"stage_name":"transform_engine","events_processed":171,"events_dropped":0,"avg_latency_ms":524.9885475068389,"throughput_eps":0,"last_update":"2026-03-22T07:27:17.479011269Z"} +2026/03/22 07:27:22 ───────────────────────────────────────────────── +2026/03/22 07:27:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:27:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:27:22.377068036Z"} +2026/03/22 07:27:27 [detection_layer] {"stage_name":"detection_layer","events_processed":171,"events_dropped":0,"avg_latency_ms":16.161321043576372,"throughput_eps":0,"last_update":"2026-03-22T07:27:22.479404779Z"} +2026/03/22 07:27:27 [transform_engine] {"stage_name":"transform_engine","events_processed":171,"events_dropped":0,"avg_latency_ms":524.9885475068389,"throughput_eps":0,"last_update":"2026-03-22T07:27:22.479415921Z"} +2026/03/22 07:27:27 [log_collector] {"stage_name":"log_collector","events_processed":9422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1884.4,"last_update":"2026-03-22T07:27:27.368744589Z"} +2026/03/22 07:27:27 [metric_collector] {"stage_name":"metric_collector","events_processed":5154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1030.8,"last_update":"2026-03-22T07:27:22.368937224Z"} +2026/03/22 07:27:27 ───────────────────────────────────────────────── +2026/03/22 07:27:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:27:32 [log_collector] {"stage_name":"log_collector","events_processed":9422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1884.4,"last_update":"2026-03-22T07:27:27.368744589Z"} +2026/03/22 07:27:32 [metric_collector] {"stage_name":"metric_collector","events_processed":5159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1031.8,"last_update":"2026-03-22T07:27:27.369198418Z"} +2026/03/22 07:27:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:27:27.377882319Z"} +2026/03/22 07:27:32 [detection_layer] {"stage_name":"detection_layer","events_processed":171,"events_dropped":0,"avg_latency_ms":16.161321043576372,"throughput_eps":0,"last_update":"2026-03-22T07:27:27.479085482Z"} +2026/03/22 07:27:32 [transform_engine] {"stage_name":"transform_engine","events_processed":172,"events_dropped":0,"avg_latency_ms":443.55482120547117,"throughput_eps":0,"last_update":"2026-03-22T07:27:27.596921098Z"} +2026/03/22 07:27:32 ───────────────────────────────────────────────── +2026/03/22 07:27:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:27:37 [log_collector] {"stage_name":"log_collector","events_processed":9422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1884.4,"last_update":"2026-03-22T07:27:32.368006857Z"} +2026/03/22 07:27:37 [metric_collector] {"stage_name":"metric_collector","events_processed":5164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1032.8,"last_update":"2026-03-22T07:27:32.368272526Z"} +2026/03/22 07:27:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:27:32.376278409Z"} +2026/03/22 07:27:37 [detection_layer] {"stage_name":"detection_layer","events_processed":172,"events_dropped":0,"avg_latency_ms":16.8455036348611,"throughput_eps":0,"last_update":"2026-03-22T07:27:32.479551115Z"} +2026/03/22 07:27:37 [transform_engine] {"stage_name":"transform_engine","events_processed":172,"events_dropped":0,"avg_latency_ms":443.55482120547117,"throughput_eps":0,"last_update":"2026-03-22T07:27:32.479515868Z"} +2026/03/22 07:27:37 ───────────────────────────────────────────────── +2026/03/22 07:27:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:27:42 [metric_collector] {"stage_name":"metric_collector","events_processed":5169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1033.8,"last_update":"2026-03-22T07:27:37.36839543Z"} +2026/03/22 07:27:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:27:37.377615328Z"} +2026/03/22 07:27:42 [detection_layer] {"stage_name":"detection_layer","events_processed":172,"events_dropped":0,"avg_latency_ms":16.8455036348611,"throughput_eps":0,"last_update":"2026-03-22T07:27:37.479814798Z"} +2026/03/22 07:27:42 [transform_engine] {"stage_name":"transform_engine","events_processed":172,"events_dropped":0,"avg_latency_ms":443.55482120547117,"throughput_eps":0,"last_update":"2026-03-22T07:27:37.479924558Z"} +2026/03/22 07:27:42 [log_collector] {"stage_name":"log_collector","events_processed":9422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1884.4,"last_update":"2026-03-22T07:27:37.368018458Z"} +2026/03/22 07:27:42 ───────────────────────────────────────────────── +2026/03/22 07:27:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:27:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2072,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:27:42.377926109Z"} +2026/03/22 07:27:47 [detection_layer] {"stage_name":"detection_layer","events_processed":172,"events_dropped":0,"avg_latency_ms":16.8455036348611,"throughput_eps":0,"last_update":"2026-03-22T07:27:42.479403165Z"} +2026/03/22 07:27:47 [transform_engine] {"stage_name":"transform_engine","events_processed":172,"events_dropped":0,"avg_latency_ms":443.55482120547117,"throughput_eps":0,"last_update":"2026-03-22T07:27:42.479301911Z"} +2026/03/22 07:27:47 [log_collector] {"stage_name":"log_collector","events_processed":9422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1884.4,"last_update":"2026-03-22T07:27:47.368595603Z"} +2026/03/22 07:27:47 [metric_collector] {"stage_name":"metric_collector","events_processed":5174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1034.8,"last_update":"2026-03-22T07:27:42.368610216Z"} +2026/03/22 07:27:47 ───────────────────────────────────────────────── +2026/03/22 07:27:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:27:52 [log_collector] {"stage_name":"log_collector","events_processed":9422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1884.4,"last_update":"2026-03-22T07:27:52.368064176Z"} +2026/03/22 07:27:52 [metric_collector] {"stage_name":"metric_collector","events_processed":5179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1035.8,"last_update":"2026-03-22T07:27:47.368933159Z"} +2026/03/22 07:27:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:27:47.376757564Z"} +2026/03/22 07:27:52 [detection_layer] {"stage_name":"detection_layer","events_processed":172,"events_dropped":0,"avg_latency_ms":16.8455036348611,"throughput_eps":0,"last_update":"2026-03-22T07:27:47.478983375Z"} +2026/03/22 07:27:52 [transform_engine] {"stage_name":"transform_engine","events_processed":172,"events_dropped":0,"avg_latency_ms":443.55482120547117,"throughput_eps":0,"last_update":"2026-03-22T07:27:47.478907249Z"} +2026/03/22 07:27:52 ───────────────────────────────────────────────── +2026/03/22 07:27:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:27:57 [metric_collector] {"stage_name":"metric_collector","events_processed":5184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1036.8,"last_update":"2026-03-22T07:27:52.368542823Z"} +2026/03/22 07:27:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2076,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:27:52.378278478Z"} +2026/03/22 07:27:57 [detection_layer] {"stage_name":"detection_layer","events_processed":172,"events_dropped":0,"avg_latency_ms":16.8455036348611,"throughput_eps":0,"last_update":"2026-03-22T07:27:52.479437976Z"} +2026/03/22 07:27:57 [transform_engine] {"stage_name":"transform_engine","events_processed":172,"events_dropped":0,"avg_latency_ms":443.55482120547117,"throughput_eps":0,"last_update":"2026-03-22T07:27:52.479466751Z"} +2026/03/22 07:27:57 [log_collector] {"stage_name":"log_collector","events_processed":9422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1884.4,"last_update":"2026-03-22T07:27:57.368523335Z"} +2026/03/22 07:27:57 ───────────────────────────────────────────────── +2026/03/22 07:28:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:28:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:27:57.37947526Z"} +2026/03/22 07:28:02 [detection_layer] {"stage_name":"detection_layer","events_processed":172,"events_dropped":0,"avg_latency_ms":16.8455036348611,"throughput_eps":0,"last_update":"2026-03-22T07:27:57.480496763Z"} +2026/03/22 07:28:02 [transform_engine] {"stage_name":"transform_engine","events_processed":173,"events_dropped":0,"avg_latency_ms":368.053836364377,"throughput_eps":0,"last_update":"2026-03-22T07:27:57.545739054Z"} +2026/03/22 07:28:02 [log_collector] {"stage_name":"log_collector","events_processed":9422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1884.4,"last_update":"2026-03-22T07:27:57.368523335Z"} +2026/03/22 07:28:02 [metric_collector] {"stage_name":"metric_collector","events_processed":5189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1037.8,"last_update":"2026-03-22T07:27:57.368997513Z"} +2026/03/22 07:28:02 ───────────────────────────────────────────────── +2026/03/22 07:28:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:28:07 [detection_layer] {"stage_name":"detection_layer","events_processed":173,"events_dropped":0,"avg_latency_ms":17.259988907888882,"throughput_eps":0,"last_update":"2026-03-22T07:28:02.479889377Z"} +2026/03/22 07:28:07 [transform_engine] {"stage_name":"transform_engine","events_processed":173,"events_dropped":0,"avg_latency_ms":368.053836364377,"throughput_eps":0,"last_update":"2026-03-22T07:28:02.479919174Z"} +2026/03/22 07:28:07 [log_collector] {"stage_name":"log_collector","events_processed":9422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1884.4,"last_update":"2026-03-22T07:28:02.368270717Z"} +2026/03/22 07:28:07 [metric_collector] {"stage_name":"metric_collector","events_processed":5194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1038.8,"last_update":"2026-03-22T07:28:02.368748843Z"} +2026/03/22 07:28:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:28:02.377625402Z"} +2026/03/22 07:28:07 ───────────────────────────────────────────────── +2026/03/22 07:28:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:28:12 [log_collector] {"stage_name":"log_collector","events_processed":9422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1884.4,"last_update":"2026-03-22T07:28:12.367968993Z"} +2026/03/22 07:28:12 [metric_collector] {"stage_name":"metric_collector","events_processed":5199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1039.8,"last_update":"2026-03-22T07:28:07.368770086Z"} +2026/03/22 07:28:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2082,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:28:07.378895017Z"} +2026/03/22 07:28:12 [detection_layer] {"stage_name":"detection_layer","events_processed":173,"events_dropped":0,"avg_latency_ms":17.259988907888882,"throughput_eps":0,"last_update":"2026-03-22T07:28:07.479184218Z"} +2026/03/22 07:28:12 [transform_engine] {"stage_name":"transform_engine","events_processed":173,"events_dropped":0,"avg_latency_ms":368.053836364377,"throughput_eps":0,"last_update":"2026-03-22T07:28:07.47912764Z"} +2026/03/22 07:28:12 ───────────────────────────────────────────────── +2026/03/22 07:28:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:28:17 [log_collector] {"stage_name":"log_collector","events_processed":9422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1884.4,"last_update":"2026-03-22T07:28:12.367968993Z"} +2026/03/22 07:28:17 [metric_collector] {"stage_name":"metric_collector","events_processed":5204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1040.8,"last_update":"2026-03-22T07:28:12.368334895Z"} +2026/03/22 07:28:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:28:12.377683919Z"} +2026/03/22 07:28:17 [detection_layer] {"stage_name":"detection_layer","events_processed":173,"events_dropped":0,"avg_latency_ms":17.259988907888882,"throughput_eps":0,"last_update":"2026-03-22T07:28:12.478982664Z"} +2026/03/22 07:28:17 [transform_engine] {"stage_name":"transform_engine","events_processed":173,"events_dropped":0,"avg_latency_ms":368.053836364377,"throughput_eps":0,"last_update":"2026-03-22T07:28:12.478900748Z"} +2026/03/22 07:28:17 ───────────────────────────────────────────────── +Saved state: 11 clusters, 9423 messages, reason: none +2026/03/22 07:28:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:28:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:28:17.378397734Z"} +2026/03/22 07:28:22 [detection_layer] {"stage_name":"detection_layer","events_processed":173,"events_dropped":0,"avg_latency_ms":17.259988907888882,"throughput_eps":0,"last_update":"2026-03-22T07:28:17.479722138Z"} +2026/03/22 07:28:22 [transform_engine] {"stage_name":"transform_engine","events_processed":173,"events_dropped":0,"avg_latency_ms":368.053836364377,"throughput_eps":0,"last_update":"2026-03-22T07:28:17.479838631Z"} +2026/03/22 07:28:22 [log_collector] {"stage_name":"log_collector","events_processed":9422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1884.4,"last_update":"2026-03-22T07:28:17.368928228Z"} +2026/03/22 07:28:22 [metric_collector] {"stage_name":"metric_collector","events_processed":5209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1041.8,"last_update":"2026-03-22T07:28:17.369079428Z"} +2026/03/22 07:28:22 ───────────────────────────────────────────────── +2026/03/22 07:28:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:28:27 [log_collector] {"stage_name":"log_collector","events_processed":9435,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1887,"last_update":"2026-03-22T07:28:22.36879524Z"} +2026/03/22 07:28:27 [metric_collector] {"stage_name":"metric_collector","events_processed":5214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1042.8,"last_update":"2026-03-22T07:28:22.369008197Z"} +2026/03/22 07:28:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:28:22.376377922Z"} +2026/03/22 07:28:27 [detection_layer] {"stage_name":"detection_layer","events_processed":173,"events_dropped":0,"avg_latency_ms":17.259988907888882,"throughput_eps":0,"last_update":"2026-03-22T07:28:22.479762281Z"} +2026/03/22 07:28:27 [transform_engine] {"stage_name":"transform_engine","events_processed":173,"events_dropped":0,"avg_latency_ms":368.053836364377,"throughput_eps":0,"last_update":"2026-03-22T07:28:22.479884545Z"} +2026/03/22 07:28:27 ───────────────────────────────────────────────── +2026/03/22 07:28:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:28:32 [transform_engine] {"stage_name":"transform_engine","events_processed":174,"events_dropped":0,"avg_latency_ms":316.42106509150165,"throughput_eps":0,"last_update":"2026-03-22T07:28:27.58984798Z"} +2026/03/22 07:28:32 [log_collector] {"stage_name":"log_collector","events_processed":9436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1887.2,"last_update":"2026-03-22T07:28:27.368506351Z"} +2026/03/22 07:28:32 [metric_collector] {"stage_name":"metric_collector","events_processed":5219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1043.8,"last_update":"2026-03-22T07:28:27.368877522Z"} +2026/03/22 07:28:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:28:27.377444098Z"} +2026/03/22 07:28:32 [detection_layer] {"stage_name":"detection_layer","events_processed":173,"events_dropped":0,"avg_latency_ms":17.259988907888882,"throughput_eps":0,"last_update":"2026-03-22T07:28:27.479848782Z"} +2026/03/22 07:28:32 ───────────────────────────────────────────────── +2026/03/22 07:28:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:28:37 [log_collector] {"stage_name":"log_collector","events_processed":9436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1887.2,"last_update":"2026-03-22T07:28:32.368872835Z"} +2026/03/22 07:28:37 [metric_collector] {"stage_name":"metric_collector","events_processed":5224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1044.8,"last_update":"2026-03-22T07:28:32.369412358Z"} +2026/03/22 07:28:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:28:32.378021707Z"} +2026/03/22 07:28:37 [detection_layer] {"stage_name":"detection_layer","events_processed":174,"events_dropped":0,"avg_latency_ms":17.472293126311108,"throughput_eps":0,"last_update":"2026-03-22T07:28:32.479316654Z"} +2026/03/22 07:28:37 [transform_engine] {"stage_name":"transform_engine","events_processed":174,"events_dropped":0,"avg_latency_ms":316.42106509150165,"throughput_eps":0,"last_update":"2026-03-22T07:28:32.479328286Z"} +2026/03/22 07:28:37 ───────────────────────────────────────────────── +2026/03/22 07:28:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:28:42 [log_collector] {"stage_name":"log_collector","events_processed":9436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1887.2,"last_update":"2026-03-22T07:28:37.368607718Z"} +2026/03/22 07:28:42 [metric_collector] {"stage_name":"metric_collector","events_processed":5229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1045.8,"last_update":"2026-03-22T07:28:37.369256521Z"} +2026/03/22 07:28:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:28:37.377611972Z"} +2026/03/22 07:28:42 [detection_layer] {"stage_name":"detection_layer","events_processed":174,"events_dropped":0,"avg_latency_ms":17.472293126311108,"throughput_eps":0,"last_update":"2026-03-22T07:28:37.479821221Z"} +2026/03/22 07:28:42 [transform_engine] {"stage_name":"transform_engine","events_processed":174,"events_dropped":0,"avg_latency_ms":316.42106509150165,"throughput_eps":0,"last_update":"2026-03-22T07:28:37.479853694Z"} +2026/03/22 07:28:42 ───────────────────────────────────────────────── +2026/03/22 07:28:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:28:47 [detection_layer] {"stage_name":"detection_layer","events_processed":174,"events_dropped":0,"avg_latency_ms":17.472293126311108,"throughput_eps":0,"last_update":"2026-03-22T07:28:42.479749211Z"} +2026/03/22 07:28:47 [transform_engine] {"stage_name":"transform_engine","events_processed":174,"events_dropped":0,"avg_latency_ms":316.42106509150165,"throughput_eps":0,"last_update":"2026-03-22T07:28:42.479724724Z"} +2026/03/22 07:28:47 [log_collector] {"stage_name":"log_collector","events_processed":9436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1887.2,"last_update":"2026-03-22T07:28:47.367966492Z"} +2026/03/22 07:28:47 [metric_collector] {"stage_name":"metric_collector","events_processed":5233,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1046.6,"last_update":"2026-03-22T07:28:42.368613175Z"} +2026/03/22 07:28:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:28:42.378567089Z"} +2026/03/22 07:28:47 ───────────────────────────────────────────────── +2026/03/22 07:28:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:28:52 [transform_engine] {"stage_name":"transform_engine","events_processed":174,"events_dropped":0,"avg_latency_ms":316.42106509150165,"throughput_eps":0,"last_update":"2026-03-22T07:28:47.47888407Z"} +2026/03/22 07:28:52 [log_collector] {"stage_name":"log_collector","events_processed":9436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1887.2,"last_update":"2026-03-22T07:28:47.367966492Z"} +2026/03/22 07:28:52 [metric_collector] {"stage_name":"metric_collector","events_processed":5239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1047.8,"last_update":"2026-03-22T07:28:47.368595677Z"} +2026/03/22 07:28:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:28:47.377727818Z"} +2026/03/22 07:28:52 [detection_layer] {"stage_name":"detection_layer","events_processed":174,"events_dropped":0,"avg_latency_ms":17.472293126311108,"throughput_eps":0,"last_update":"2026-03-22T07:28:47.478943193Z"} +2026/03/22 07:28:52 ───────────────────────────────────────────────── +2026/03/22 07:28:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:28:57 [transform_engine] {"stage_name":"transform_engine","events_processed":174,"events_dropped":0,"avg_latency_ms":316.42106509150165,"throughput_eps":0,"last_update":"2026-03-22T07:28:52.47944625Z"} +2026/03/22 07:28:57 [log_collector] {"stage_name":"log_collector","events_processed":9436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1887.2,"last_update":"2026-03-22T07:28:52.368269408Z"} +2026/03/22 07:28:57 [metric_collector] {"stage_name":"metric_collector","events_processed":5244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1048.8,"last_update":"2026-03-22T07:28:52.368826394Z"} +2026/03/22 07:28:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:28:52.378052404Z"} +2026/03/22 07:28:57 [detection_layer] {"stage_name":"detection_layer","events_processed":174,"events_dropped":0,"avg_latency_ms":17.472293126311108,"throughput_eps":0,"last_update":"2026-03-22T07:28:52.479425981Z"} +2026/03/22 07:28:57 ───────────────────────────────────────────────── +2026/03/22 07:29:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:29:02 [log_collector] {"stage_name":"log_collector","events_processed":9436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1887.2,"last_update":"2026-03-22T07:29:02.368009589Z"} +2026/03/22 07:29:02 [metric_collector] {"stage_name":"metric_collector","events_processed":5249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1049.8,"last_update":"2026-03-22T07:28:57.368697718Z"} +2026/03/22 07:29:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:28:57.377332305Z"} +2026/03/22 07:29:02 [detection_layer] {"stage_name":"detection_layer","events_processed":174,"events_dropped":0,"avg_latency_ms":17.472293126311108,"throughput_eps":0,"last_update":"2026-03-22T07:28:57.479713673Z"} +2026/03/22 07:29:02 [transform_engine] {"stage_name":"transform_engine","events_processed":175,"events_dropped":0,"avg_latency_ms":267.56330927320136,"throughput_eps":0,"last_update":"2026-03-22T07:28:57.551873461Z"} +2026/03/22 07:29:02 ───────────────────────────────────────────────── +2026/03/22 07:29:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:29:07 [log_collector] {"stage_name":"log_collector","events_processed":9436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1887.2,"last_update":"2026-03-22T07:29:02.368009589Z"} +2026/03/22 07:29:07 [metric_collector] {"stage_name":"metric_collector","events_processed":5254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1050.8,"last_update":"2026-03-22T07:29:02.368729798Z"} +2026/03/22 07:29:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:29:02.377660742Z"} +2026/03/22 07:29:07 [detection_layer] {"stage_name":"detection_layer","events_processed":175,"events_dropped":0,"avg_latency_ms":18.104149101048886,"throughput_eps":0,"last_update":"2026-03-22T07:29:02.479861114Z"} +2026/03/22 07:29:07 [transform_engine] {"stage_name":"transform_engine","events_processed":175,"events_dropped":0,"avg_latency_ms":267.56330927320136,"throughput_eps":0,"last_update":"2026-03-22T07:29:02.479967929Z"} +2026/03/22 07:29:07 ───────────────────────────────────────────────── +2026/03/22 07:29:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:29:12 [log_collector] {"stage_name":"log_collector","events_processed":9436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1887.2,"last_update":"2026-03-22T07:29:12.368710121Z"} +2026/03/22 07:29:12 [metric_collector] {"stage_name":"metric_collector","events_processed":5259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1051.8,"last_update":"2026-03-22T07:29:07.368664971Z"} +2026/03/22 07:29:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:29:07.379020034Z"} +2026/03/22 07:29:12 [detection_layer] {"stage_name":"detection_layer","events_processed":175,"events_dropped":0,"avg_latency_ms":18.104149101048886,"throughput_eps":0,"last_update":"2026-03-22T07:29:07.479200376Z"} +2026/03/22 07:29:12 [transform_engine] {"stage_name":"transform_engine","events_processed":175,"events_dropped":0,"avg_latency_ms":267.56330927320136,"throughput_eps":0,"last_update":"2026-03-22T07:29:07.479235223Z"} +2026/03/22 07:29:12 ───────────────────────────────────────────────── +2026/03/22 07:29:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:29:17 [transform_engine] {"stage_name":"transform_engine","events_processed":175,"events_dropped":0,"avg_latency_ms":267.56330927320136,"throughput_eps":0,"last_update":"2026-03-22T07:29:12.479220478Z"} +2026/03/22 07:29:17 [log_collector] {"stage_name":"log_collector","events_processed":9436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1887.2,"last_update":"2026-03-22T07:29:12.368710121Z"} +2026/03/22 07:29:17 [metric_collector] {"stage_name":"metric_collector","events_processed":5264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1052.8,"last_update":"2026-03-22T07:29:12.369461731Z"} +2026/03/22 07:29:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:29:12.379894211Z"} +2026/03/22 07:29:17 [detection_layer] {"stage_name":"detection_layer","events_processed":175,"events_dropped":0,"avg_latency_ms":18.104149101048886,"throughput_eps":0,"last_update":"2026-03-22T07:29:12.479083967Z"} +2026/03/22 07:29:17 ───────────────────────────────────────────────── +2026/03/22 07:29:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:29:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:29:17.377657168Z"} +2026/03/22 07:29:22 [detection_layer] {"stage_name":"detection_layer","events_processed":175,"events_dropped":0,"avg_latency_ms":18.104149101048886,"throughput_eps":0,"last_update":"2026-03-22T07:29:17.479962501Z"} +2026/03/22 07:29:22 [transform_engine] {"stage_name":"transform_engine","events_processed":175,"events_dropped":0,"avg_latency_ms":267.56330927320136,"throughput_eps":0,"last_update":"2026-03-22T07:29:17.478814552Z"} +2026/03/22 07:29:22 [log_collector] {"stage_name":"log_collector","events_processed":9436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1887.2,"last_update":"2026-03-22T07:29:22.368632725Z"} +2026/03/22 07:29:22 [metric_collector] {"stage_name":"metric_collector","events_processed":5269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1053.8,"last_update":"2026-03-22T07:29:17.368861703Z"} +2026/03/22 07:29:22 ───────────────────────────────────────────────── +Saved state: 11 clusters, 9437 messages, reason: none +2026/03/22 07:29:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:29:27 [log_collector] {"stage_name":"log_collector","events_processed":9436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1887.2,"last_update":"2026-03-22T07:29:22.368632725Z"} +2026/03/22 07:29:27 [metric_collector] {"stage_name":"metric_collector","events_processed":5274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1054.8,"last_update":"2026-03-22T07:29:22.36902662Z"} +2026/03/22 07:29:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:29:22.378178767Z"} +2026/03/22 07:29:27 [detection_layer] {"stage_name":"detection_layer","events_processed":175,"events_dropped":0,"avg_latency_ms":18.104149101048886,"throughput_eps":0,"last_update":"2026-03-22T07:29:22.479339978Z"} +2026/03/22 07:29:27 [transform_engine] {"stage_name":"transform_engine","events_processed":175,"events_dropped":0,"avg_latency_ms":267.56330927320136,"throughput_eps":0,"last_update":"2026-03-22T07:29:22.479493483Z"} +2026/03/22 07:29:27 ───────────────────────────────────────────────── +2026/03/22 07:29:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:29:32 [log_collector] {"stage_name":"log_collector","events_processed":9441,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1888.2,"last_update":"2026-03-22T07:29:27.367956929Z"} +2026/03/22 07:29:32 [metric_collector] {"stage_name":"metric_collector","events_processed":5279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1055.8,"last_update":"2026-03-22T07:29:27.368161542Z"} +2026/03/22 07:29:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:29:27.378694294Z"} +2026/03/22 07:29:32 [detection_layer] {"stage_name":"detection_layer","events_processed":175,"events_dropped":0,"avg_latency_ms":18.104149101048886,"throughput_eps":0,"last_update":"2026-03-22T07:29:27.479957991Z"} +2026/03/22 07:29:32 [transform_engine] {"stage_name":"transform_engine","events_processed":176,"events_dropped":0,"avg_latency_ms":235.3192304185611,"throughput_eps":0,"last_update":"2026-03-22T07:29:27.585200929Z"} +2026/03/22 07:29:32 ───────────────────────────────────────────────── +2026/03/22 07:29:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:29:37 [transform_engine] {"stage_name":"transform_engine","events_processed":176,"events_dropped":0,"avg_latency_ms":235.3192304185611,"throughput_eps":0,"last_update":"2026-03-22T07:29:32.479458211Z"} +2026/03/22 07:29:37 [log_collector] {"stage_name":"log_collector","events_processed":9441,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1888.2,"last_update":"2026-03-22T07:29:37.368296322Z"} +2026/03/22 07:29:37 [metric_collector] {"stage_name":"metric_collector","events_processed":5284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1056.8,"last_update":"2026-03-22T07:29:32.368438169Z"} +2026/03/22 07:29:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:29:37.36832111Z"} +2026/03/22 07:29:37 [detection_layer] {"stage_name":"detection_layer","events_processed":176,"events_dropped":0,"avg_latency_ms":17.41076388083911,"throughput_eps":0,"last_update":"2026-03-22T07:29:32.479475534Z"} +2026/03/22 07:29:37 ───────────────────────────────────────────────── +2026/03/22 07:29:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:29:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:29:37.36832111Z"} +2026/03/22 07:29:42 [detection_layer] {"stage_name":"detection_layer","events_processed":176,"events_dropped":0,"avg_latency_ms":17.41076388083911,"throughput_eps":0,"last_update":"2026-03-22T07:29:37.479806241Z"} +2026/03/22 07:29:42 [transform_engine] {"stage_name":"transform_engine","events_processed":176,"events_dropped":0,"avg_latency_ms":235.3192304185611,"throughput_eps":0,"last_update":"2026-03-22T07:29:37.479816962Z"} +2026/03/22 07:29:42 [log_collector] {"stage_name":"log_collector","events_processed":9441,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1888.2,"last_update":"2026-03-22T07:29:37.368296322Z"} +2026/03/22 07:29:42 [metric_collector] {"stage_name":"metric_collector","events_processed":5289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1057.8,"last_update":"2026-03-22T07:29:37.368787543Z"} +2026/03/22 07:29:42 ───────────────────────────────────────────────── +2026/03/22 07:29:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:29:47 [transform_engine] {"stage_name":"transform_engine","events_processed":176,"events_dropped":0,"avg_latency_ms":235.3192304185611,"throughput_eps":0,"last_update":"2026-03-22T07:29:42.478871401Z"} +2026/03/22 07:29:47 [log_collector] {"stage_name":"log_collector","events_processed":9441,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1888.2,"last_update":"2026-03-22T07:29:42.368843644Z"} +2026/03/22 07:29:47 [metric_collector] {"stage_name":"metric_collector","events_processed":5294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1058.8,"last_update":"2026-03-22T07:29:42.368905674Z"} +2026/03/22 07:29:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:29:42.38124024Z"} +2026/03/22 07:29:47 [detection_layer] {"stage_name":"detection_layer","events_processed":176,"events_dropped":0,"avg_latency_ms":17.41076388083911,"throughput_eps":0,"last_update":"2026-03-22T07:29:42.479960789Z"} +2026/03/22 07:29:47 ───────────────────────────────────────────────── +2026/03/22 07:29:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:29:52 [log_collector] {"stage_name":"log_collector","events_processed":9441,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1888.2,"last_update":"2026-03-22T07:29:47.368240025Z"} +2026/03/22 07:29:52 [metric_collector] {"stage_name":"metric_collector","events_processed":5299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1059.8,"last_update":"2026-03-22T07:29:47.368173076Z"} +2026/03/22 07:29:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2122,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:29:47.374412358Z"} +2026/03/22 07:29:52 [detection_layer] {"stage_name":"detection_layer","events_processed":176,"events_dropped":0,"avg_latency_ms":17.41076388083911,"throughput_eps":0,"last_update":"2026-03-22T07:29:47.479595304Z"} +2026/03/22 07:29:52 [transform_engine] {"stage_name":"transform_engine","events_processed":176,"events_dropped":0,"avg_latency_ms":235.3192304185611,"throughput_eps":0,"last_update":"2026-03-22T07:29:47.479568703Z"} +2026/03/22 07:29:52 ───────────────────────────────────────────────── +2026/03/22 07:29:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:29:57 [metric_collector] {"stage_name":"metric_collector","events_processed":5304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1060.8,"last_update":"2026-03-22T07:29:52.368176795Z"} +2026/03/22 07:29:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:29:52.375606428Z"} +2026/03/22 07:29:57 [detection_layer] {"stage_name":"detection_layer","events_processed":176,"events_dropped":0,"avg_latency_ms":17.41076388083911,"throughput_eps":0,"last_update":"2026-03-22T07:29:52.479818441Z"} +2026/03/22 07:29:57 [transform_engine] {"stage_name":"transform_engine","events_processed":176,"events_dropped":0,"avg_latency_ms":235.3192304185611,"throughput_eps":0,"last_update":"2026-03-22T07:29:52.479835855Z"} +2026/03/22 07:29:57 [log_collector] {"stage_name":"log_collector","events_processed":9441,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1888.2,"last_update":"2026-03-22T07:29:52.367947846Z"} +2026/03/22 07:29:57 ───────────────────────────────────────────────── +2026/03/22 07:30:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:30:02 [log_collector] {"stage_name":"log_collector","events_processed":9441,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1888.2,"last_update":"2026-03-22T07:30:02.368297136Z"} +2026/03/22 07:30:02 [metric_collector] {"stage_name":"metric_collector","events_processed":5309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1061.8,"last_update":"2026-03-22T07:29:57.368137456Z"} +2026/03/22 07:30:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2126,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:29:57.37646467Z"} +2026/03/22 07:30:02 [detection_layer] {"stage_name":"detection_layer","events_processed":176,"events_dropped":0,"avg_latency_ms":17.41076388083911,"throughput_eps":0,"last_update":"2026-03-22T07:29:57.479695951Z"} +2026/03/22 07:30:02 [transform_engine] {"stage_name":"transform_engine","events_processed":177,"events_dropped":0,"avg_latency_ms":245.0952281348489,"throughput_eps":0,"last_update":"2026-03-22T07:29:57.763929836Z"} +2026/03/22 07:30:02 ───────────────────────────────────────────────── +2026/03/22 07:30:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:30:07 [log_collector] {"stage_name":"log_collector","events_processed":9444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1888.8,"last_update":"2026-03-22T07:30:07.36803183Z"} +2026/03/22 07:30:07 [metric_collector] {"stage_name":"metric_collector","events_processed":5314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1062.8,"last_update":"2026-03-22T07:30:02.368813357Z"} +2026/03/22 07:30:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2128,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:30:02.393873508Z"} +2026/03/22 07:30:07 [detection_layer] {"stage_name":"detection_layer","events_processed":177,"events_dropped":0,"avg_latency_ms":17.33189330467129,"throughput_eps":0,"last_update":"2026-03-22T07:30:02.479118136Z"} +2026/03/22 07:30:07 [transform_engine] {"stage_name":"transform_engine","events_processed":177,"events_dropped":0,"avg_latency_ms":245.0952281348489,"throughput_eps":0,"last_update":"2026-03-22T07:30:02.479131762Z"} +2026/03/22 07:30:07 ───────────────────────────────────────────────── +2026/03/22 07:30:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:30:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2130,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:30:07.375179553Z"} +2026/03/22 07:30:12 [detection_layer] {"stage_name":"detection_layer","events_processed":177,"events_dropped":0,"avg_latency_ms":17.33189330467129,"throughput_eps":0,"last_update":"2026-03-22T07:30:07.479399876Z"} +2026/03/22 07:30:12 [transform_engine] {"stage_name":"transform_engine","events_processed":177,"events_dropped":0,"avg_latency_ms":245.0952281348489,"throughput_eps":0,"last_update":"2026-03-22T07:30:07.479410056Z"} +2026/03/22 07:30:12 [log_collector] {"stage_name":"log_collector","events_processed":9444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1888.8,"last_update":"2026-03-22T07:30:07.36803183Z"} +2026/03/22 07:30:12 [metric_collector] {"stage_name":"metric_collector","events_processed":5319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1063.8,"last_update":"2026-03-22T07:30:07.368442147Z"} +2026/03/22 07:30:12 ───────────────────────────────────────────────── +2026/03/22 07:30:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:30:17 [log_collector] {"stage_name":"log_collector","events_processed":9452,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1890.4,"last_update":"2026-03-22T07:30:12.368005488Z"} +2026/03/22 07:30:17 [metric_collector] {"stage_name":"metric_collector","events_processed":5324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1064.8,"last_update":"2026-03-22T07:30:12.36874145Z"} +2026/03/22 07:30:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2130,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:30:12.368105301Z"} +2026/03/22 07:30:17 [detection_layer] {"stage_name":"detection_layer","events_processed":177,"events_dropped":0,"avg_latency_ms":17.33189330467129,"throughput_eps":0,"last_update":"2026-03-22T07:30:12.479884763Z"} +2026/03/22 07:30:17 [transform_engine] {"stage_name":"transform_engine","events_processed":177,"events_dropped":0,"avg_latency_ms":245.0952281348489,"throughput_eps":0,"last_update":"2026-03-22T07:30:12.479900533Z"} +2026/03/22 07:30:17 ───────────────────────────────────────────────── +2026/03/22 07:30:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:30:22 [log_collector] {"stage_name":"log_collector","events_processed":9483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1896.6,"last_update":"2026-03-22T07:30:17.368010446Z"} +2026/03/22 07:30:22 [metric_collector] {"stage_name":"metric_collector","events_processed":5329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1065.8,"last_update":"2026-03-22T07:30:17.368150565Z"} +2026/03/22 07:30:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:30:17.376622176Z"} +2026/03/22 07:30:22 [detection_layer] {"stage_name":"detection_layer","events_processed":177,"events_dropped":0,"avg_latency_ms":17.33189330467129,"throughput_eps":0,"last_update":"2026-03-22T07:30:17.479894519Z"} +2026/03/22 07:30:22 [transform_engine] {"stage_name":"transform_engine","events_processed":177,"events_dropped":0,"avg_latency_ms":245.0952281348489,"throughput_eps":0,"last_update":"2026-03-22T07:30:17.479876284Z"} +2026/03/22 07:30:22 ───────────────────────────────────────────────── +2026/03/22 07:30:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:30:27 [metric_collector] {"stage_name":"metric_collector","events_processed":5334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1066.8,"last_update":"2026-03-22T07:30:22.368210236Z"} +2026/03/22 07:30:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:30:22.376510568Z"} +2026/03/22 07:30:27 [detection_layer] {"stage_name":"detection_layer","events_processed":177,"events_dropped":0,"avg_latency_ms":17.33189330467129,"throughput_eps":0,"last_update":"2026-03-22T07:30:22.479842253Z"} +2026/03/22 07:30:27 [transform_engine] {"stage_name":"transform_engine","events_processed":177,"events_dropped":0,"avg_latency_ms":245.0952281348489,"throughput_eps":0,"last_update":"2026-03-22T07:30:22.479822485Z"} +2026/03/22 07:30:27 [log_collector] {"stage_name":"log_collector","events_processed":9790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1958,"last_update":"2026-03-22T07:30:22.368053696Z"} +2026/03/22 07:30:27 ───────────────────────────────────────────────── +2026/03/22 07:30:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:30:32 [transform_engine] {"stage_name":"transform_engine","events_processed":178,"events_dropped":0,"avg_latency_ms":219.05062570787914,"throughput_eps":0,"last_update":"2026-03-22T07:30:27.594058567Z"} +2026/03/22 07:30:32 [log_collector] {"stage_name":"log_collector","events_processed":9808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1961.6,"last_update":"2026-03-22T07:30:27.368123236Z"} +2026/03/22 07:30:32 [metric_collector] {"stage_name":"metric_collector","events_processed":5339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1067.8,"last_update":"2026-03-22T07:30:27.36842801Z"} +2026/03/22 07:30:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:30:27.377967487Z"} +2026/03/22 07:30:32 [detection_layer] {"stage_name":"detection_layer","events_processed":177,"events_dropped":0,"avg_latency_ms":17.33189330467129,"throughput_eps":0,"last_update":"2026-03-22T07:30:27.479281383Z"} +2026/03/22 07:30:32 ───────────────────────────────────────────────── +2026/03/22 07:30:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:30:37 [log_collector] {"stage_name":"log_collector","events_processed":9808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1961.6,"last_update":"2026-03-22T07:30:32.368280635Z"} +2026/03/22 07:30:37 [metric_collector] {"stage_name":"metric_collector","events_processed":5344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1068.8,"last_update":"2026-03-22T07:30:32.36866909Z"} +2026/03/22 07:30:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:30:32.377108087Z"} +2026/03/22 07:30:37 [detection_layer] {"stage_name":"detection_layer","events_processed":178,"events_dropped":0,"avg_latency_ms":17.366762443737034,"throughput_eps":0,"last_update":"2026-03-22T07:30:32.479425615Z"} +2026/03/22 07:30:37 [transform_engine] {"stage_name":"transform_engine","events_processed":178,"events_dropped":0,"avg_latency_ms":219.05062570787914,"throughput_eps":0,"last_update":"2026-03-22T07:30:32.479397972Z"} +2026/03/22 07:30:37 ───────────────────────────────────────────────── +2026/03/22 07:30:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:30:42 [detection_layer] {"stage_name":"detection_layer","events_processed":178,"events_dropped":0,"avg_latency_ms":17.366762443737034,"throughput_eps":0,"last_update":"2026-03-22T07:30:37.478967935Z"} +2026/03/22 07:30:42 [transform_engine] {"stage_name":"transform_engine","events_processed":178,"events_dropped":0,"avg_latency_ms":219.05062570787914,"throughput_eps":0,"last_update":"2026-03-22T07:30:37.478883203Z"} +2026/03/22 07:30:42 [log_collector] {"stage_name":"log_collector","events_processed":9808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1961.6,"last_update":"2026-03-22T07:30:37.368593364Z"} +2026/03/22 07:30:42 [metric_collector] {"stage_name":"metric_collector","events_processed":5349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1069.8,"last_update":"2026-03-22T07:30:37.368851078Z"} +2026/03/22 07:30:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:30:37.377728205Z"} +2026/03/22 07:30:42 ───────────────────────────────────────────────── +2026/03/22 07:30:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:30:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:30:42.377772793Z"} +2026/03/22 07:30:47 [detection_layer] {"stage_name":"detection_layer","events_processed":178,"events_dropped":0,"avg_latency_ms":17.366762443737034,"throughput_eps":0,"last_update":"2026-03-22T07:30:42.480013201Z"} +2026/03/22 07:30:47 [transform_engine] {"stage_name":"transform_engine","events_processed":178,"events_dropped":0,"avg_latency_ms":219.05062570787914,"throughput_eps":0,"last_update":"2026-03-22T07:30:42.478899485Z"} +2026/03/22 07:30:47 [log_collector] {"stage_name":"log_collector","events_processed":9808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1961.6,"last_update":"2026-03-22T07:30:47.368313097Z"} +2026/03/22 07:30:47 [metric_collector] {"stage_name":"metric_collector","events_processed":5354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1070.8,"last_update":"2026-03-22T07:30:42.368608145Z"} +2026/03/22 07:30:47 ───────────────────────────────────────────────── +2026/03/22 07:30:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:30:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:30:47.378797715Z"} +2026/03/22 07:30:52 [detection_layer] {"stage_name":"detection_layer","events_processed":178,"events_dropped":0,"avg_latency_ms":17.366762443737034,"throughput_eps":0,"last_update":"2026-03-22T07:30:47.479013279Z"} +2026/03/22 07:30:52 [transform_engine] {"stage_name":"transform_engine","events_processed":178,"events_dropped":0,"avg_latency_ms":219.05062570787914,"throughput_eps":0,"last_update":"2026-03-22T07:30:47.479077852Z"} +2026/03/22 07:30:52 [log_collector] {"stage_name":"log_collector","events_processed":9808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1961.6,"last_update":"2026-03-22T07:30:47.368313097Z"} +2026/03/22 07:30:52 [metric_collector] {"stage_name":"metric_collector","events_processed":5359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1071.8,"last_update":"2026-03-22T07:30:47.368916825Z"} +2026/03/22 07:30:52 ───────────────────────────────────────────────── +2026/03/22 07:30:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:30:57 [log_collector] {"stage_name":"log_collector","events_processed":9808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1961.6,"last_update":"2026-03-22T07:30:57.367962709Z"} +2026/03/22 07:30:57 [metric_collector] {"stage_name":"metric_collector","events_processed":5364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1072.8,"last_update":"2026-03-22T07:30:52.368978422Z"} +2026/03/22 07:30:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:30:52.377338447Z"} +2026/03/22 07:30:57 [detection_layer] {"stage_name":"detection_layer","events_processed":178,"events_dropped":0,"avg_latency_ms":17.366762443737034,"throughput_eps":0,"last_update":"2026-03-22T07:30:52.479619369Z"} +2026/03/22 07:30:57 [transform_engine] {"stage_name":"transform_engine","events_processed":178,"events_dropped":0,"avg_latency_ms":219.05062570787914,"throughput_eps":0,"last_update":"2026-03-22T07:30:52.479508776Z"} +2026/03/22 07:30:57 ───────────────────────────────────────────────── +2026/03/22 07:31:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:31:02 [detection_layer] {"stage_name":"detection_layer","events_processed":178,"events_dropped":0,"avg_latency_ms":17.366762443737034,"throughput_eps":0,"last_update":"2026-03-22T07:30:57.479096779Z"} +2026/03/22 07:31:02 [transform_engine] {"stage_name":"transform_engine","events_processed":179,"events_dropped":0,"avg_latency_ms":189.39389676630333,"throughput_eps":0,"last_update":"2026-03-22T07:30:57.549902786Z"} +2026/03/22 07:31:02 [log_collector] {"stage_name":"log_collector","events_processed":9808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1961.6,"last_update":"2026-03-22T07:31:02.36801067Z"} +2026/03/22 07:31:02 [metric_collector] {"stage_name":"metric_collector","events_processed":5369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1073.8,"last_update":"2026-03-22T07:30:57.368419886Z"} +2026/03/22 07:31:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:30:57.377865462Z"} +2026/03/22 07:31:02 ───────────────────────────────────────────────── +2026/03/22 07:31:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:31:07 [metric_collector] {"stage_name":"metric_collector","events_processed":5374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1074.8,"last_update":"2026-03-22T07:31:02.368566516Z"} +2026/03/22 07:31:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:31:02.377244891Z"} +2026/03/22 07:31:07 [detection_layer] {"stage_name":"detection_layer","events_processed":179,"events_dropped":0,"avg_latency_ms":18.262488954989628,"throughput_eps":0,"last_update":"2026-03-22T07:31:02.478980855Z"} +2026/03/22 07:31:07 [transform_engine] {"stage_name":"transform_engine","events_processed":179,"events_dropped":0,"avg_latency_ms":189.39389676630333,"throughput_eps":0,"last_update":"2026-03-22T07:31:02.47899354Z"} +2026/03/22 07:31:07 [log_collector] {"stage_name":"log_collector","events_processed":9808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1961.6,"last_update":"2026-03-22T07:31:02.36801067Z"} +2026/03/22 07:31:07 ───────────────────────────────────────────────── +2026/03/22 07:31:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:31:12 [log_collector] {"stage_name":"log_collector","events_processed":9808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1961.6,"last_update":"2026-03-22T07:31:12.368549323Z"} +2026/03/22 07:31:12 [metric_collector] {"stage_name":"metric_collector","events_processed":5379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1075.8,"last_update":"2026-03-22T07:31:07.36878928Z"} +2026/03/22 07:31:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:31:07.379185076Z"} +2026/03/22 07:31:12 [detection_layer] {"stage_name":"detection_layer","events_processed":179,"events_dropped":0,"avg_latency_ms":18.262488954989628,"throughput_eps":0,"last_update":"2026-03-22T07:31:07.479501137Z"} +2026/03/22 07:31:12 [transform_engine] {"stage_name":"transform_engine","events_processed":179,"events_dropped":0,"avg_latency_ms":189.39389676630333,"throughput_eps":0,"last_update":"2026-03-22T07:31:07.479512979Z"} +2026/03/22 07:31:12 ───────────────────────────────────────────────── +2026/03/22 07:31:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:31:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:31:12.377743036Z"} +2026/03/22 07:31:17 [detection_layer] {"stage_name":"detection_layer","events_processed":179,"events_dropped":0,"avg_latency_ms":18.262488954989628,"throughput_eps":0,"last_update":"2026-03-22T07:31:12.478983547Z"} +2026/03/22 07:31:17 [transform_engine] {"stage_name":"transform_engine","events_processed":179,"events_dropped":0,"avg_latency_ms":189.39389676630333,"throughput_eps":0,"last_update":"2026-03-22T07:31:12.478898875Z"} +2026/03/22 07:31:17 [log_collector] {"stage_name":"log_collector","events_processed":9808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1961.6,"last_update":"2026-03-22T07:31:12.368549323Z"} +2026/03/22 07:31:17 [metric_collector] {"stage_name":"metric_collector","events_processed":5384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1076.8,"last_update":"2026-03-22T07:31:12.368929372Z"} +2026/03/22 07:31:17 ───────────────────────────────────────────────── +2026/03/22 07:31:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:31:22 [log_collector] {"stage_name":"log_collector","events_processed":9808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1961.6,"last_update":"2026-03-22T07:31:22.368560065Z"} +2026/03/22 07:31:22 [metric_collector] {"stage_name":"metric_collector","events_processed":5389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1077.8,"last_update":"2026-03-22T07:31:17.368760169Z"} +2026/03/22 07:31:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:31:17.378687528Z"} +2026/03/22 07:31:22 [detection_layer] {"stage_name":"detection_layer","events_processed":179,"events_dropped":0,"avg_latency_ms":18.262488954989628,"throughput_eps":0,"last_update":"2026-03-22T07:31:17.479988623Z"} +2026/03/22 07:31:22 [transform_engine] {"stage_name":"transform_engine","events_processed":179,"events_dropped":0,"avg_latency_ms":189.39389676630333,"throughput_eps":0,"last_update":"2026-03-22T07:31:17.47882346Z"} +2026/03/22 07:31:22 ───────────────────────────────────────────────── +2026/03/22 07:31:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:31:27 [transform_engine] {"stage_name":"transform_engine","events_processed":179,"events_dropped":0,"avg_latency_ms":189.39389676630333,"throughput_eps":0,"last_update":"2026-03-22T07:31:22.47946081Z"} +2026/03/22 07:31:27 [log_collector] {"stage_name":"log_collector","events_processed":9808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1961.6,"last_update":"2026-03-22T07:31:22.368560065Z"} +2026/03/22 07:31:27 [metric_collector] {"stage_name":"metric_collector","events_processed":5394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1078.8,"last_update":"2026-03-22T07:31:22.368914123Z"} +2026/03/22 07:31:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:31:22.380089625Z"} +2026/03/22 07:31:27 [detection_layer] {"stage_name":"detection_layer","events_processed":179,"events_dropped":0,"avg_latency_ms":18.262488954989628,"throughput_eps":0,"last_update":"2026-03-22T07:31:22.479501317Z"} +2026/03/22 07:31:27 ───────────────────────────────────────────────── +2026/03/22 07:31:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:31:32 [transform_engine] {"stage_name":"transform_engine","events_processed":180,"events_dropped":0,"avg_latency_ms":166.13736101304266,"throughput_eps":0,"last_update":"2026-03-22T07:31:27.552055446Z"} +2026/03/22 07:31:32 [log_collector] {"stage_name":"log_collector","events_processed":9808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1961.6,"last_update":"2026-03-22T07:31:27.368045528Z"} +2026/03/22 07:31:32 [metric_collector] {"stage_name":"metric_collector","events_processed":5399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1079.8,"last_update":"2026-03-22T07:31:27.368445274Z"} +2026/03/22 07:31:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:31:27.37884611Z"} +2026/03/22 07:31:32 [detection_layer] {"stage_name":"detection_layer","events_processed":179,"events_dropped":0,"avg_latency_ms":18.262488954989628,"throughput_eps":0,"last_update":"2026-03-22T07:31:27.4790551Z"} +2026/03/22 07:31:32 ───────────────────────────────────────────────── +2026/03/22 07:31:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:31:37 [log_collector] {"stage_name":"log_collector","events_processed":9808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1961.6,"last_update":"2026-03-22T07:31:32.368206785Z"} +2026/03/22 07:31:37 [metric_collector] {"stage_name":"metric_collector","events_processed":5404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1080.8,"last_update":"2026-03-22T07:31:32.368464789Z"} +2026/03/22 07:31:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:31:32.378027509Z"} +2026/03/22 07:31:37 [detection_layer] {"stage_name":"detection_layer","events_processed":180,"events_dropped":0,"avg_latency_ms":18.746946963991704,"throughput_eps":0,"last_update":"2026-03-22T07:31:32.479411739Z"} +2026/03/22 07:31:37 [transform_engine] {"stage_name":"transform_engine","events_processed":180,"events_dropped":0,"avg_latency_ms":166.13736101304266,"throughput_eps":0,"last_update":"2026-03-22T07:31:32.479429283Z"} +2026/03/22 07:31:37 ───────────────────────────────────────────────── +2026/03/22 07:31:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:31:42 [metric_collector] {"stage_name":"metric_collector","events_processed":5409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1081.8,"last_update":"2026-03-22T07:31:37.368445081Z"} +2026/03/22 07:31:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:31:37.37730278Z"} +2026/03/22 07:31:42 [detection_layer] {"stage_name":"detection_layer","events_processed":180,"events_dropped":0,"avg_latency_ms":18.746946963991704,"throughput_eps":0,"last_update":"2026-03-22T07:31:37.47966324Z"} +2026/03/22 07:31:42 [transform_engine] {"stage_name":"transform_engine","events_processed":180,"events_dropped":0,"avg_latency_ms":166.13736101304266,"throughput_eps":0,"last_update":"2026-03-22T07:31:37.479680503Z"} +2026/03/22 07:31:42 [log_collector] {"stage_name":"log_collector","events_processed":9808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1961.6,"last_update":"2026-03-22T07:31:42.368621078Z"} +2026/03/22 07:31:42 ───────────────────────────────────────────────── +2026/03/22 07:31:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:31:47 [log_collector] {"stage_name":"log_collector","events_processed":9808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1961.6,"last_update":"2026-03-22T07:31:42.368621078Z"} +2026/03/22 07:31:47 [metric_collector] {"stage_name":"metric_collector","events_processed":5414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1082.8,"last_update":"2026-03-22T07:31:42.368918598Z"} +2026/03/22 07:31:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:31:42.378124394Z"} +2026/03/22 07:31:47 [detection_layer] {"stage_name":"detection_layer","events_processed":180,"events_dropped":0,"avg_latency_ms":18.746946963991704,"throughput_eps":0,"last_update":"2026-03-22T07:31:42.479297297Z"} +2026/03/22 07:31:47 [transform_engine] {"stage_name":"transform_engine","events_processed":180,"events_dropped":0,"avg_latency_ms":166.13736101304266,"throughput_eps":0,"last_update":"2026-03-22T07:31:42.479310583Z"} +2026/03/22 07:31:47 ───────────────────────────────────────────────── +2026/03/22 07:31:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:31:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2170,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:31:47.376927331Z"} +2026/03/22 07:31:52 [detection_layer] {"stage_name":"detection_layer","events_processed":180,"events_dropped":0,"avg_latency_ms":18.746946963991704,"throughput_eps":0,"last_update":"2026-03-22T07:31:47.479306294Z"} +2026/03/22 07:31:52 [transform_engine] {"stage_name":"transform_engine","events_processed":180,"events_dropped":0,"avg_latency_ms":166.13736101304266,"throughput_eps":0,"last_update":"2026-03-22T07:31:47.479436775Z"} +2026/03/22 07:31:52 [log_collector] {"stage_name":"log_collector","events_processed":9808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1961.6,"last_update":"2026-03-22T07:31:47.368517591Z"} +2026/03/22 07:31:52 [metric_collector] {"stage_name":"metric_collector","events_processed":5419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1083.8,"last_update":"2026-03-22T07:31:47.36884046Z"} +2026/03/22 07:31:52 ───────────────────────────────────────────────── +2026/03/22 07:31:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:31:57 [log_collector] {"stage_name":"log_collector","events_processed":9808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1961.6,"last_update":"2026-03-22T07:31:52.368448304Z"} +2026/03/22 07:31:57 [metric_collector] {"stage_name":"metric_collector","events_processed":5424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1084.8,"last_update":"2026-03-22T07:31:52.368731727Z"} +2026/03/22 07:31:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:31:52.377749341Z"} +2026/03/22 07:31:57 [detection_layer] {"stage_name":"detection_layer","events_processed":180,"events_dropped":0,"avg_latency_ms":18.746946963991704,"throughput_eps":0,"last_update":"2026-03-22T07:31:52.479835111Z"} +2026/03/22 07:31:57 [transform_engine] {"stage_name":"transform_engine","events_processed":180,"events_dropped":0,"avg_latency_ms":166.13736101304266,"throughput_eps":0,"last_update":"2026-03-22T07:31:52.479846853Z"} +2026/03/22 07:31:57 ───────────────────────────────────────────────── +Saved state: 11 clusters, 9809 messages, reason: none +2026/03/22 07:32:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:32:02 [log_collector] {"stage_name":"log_collector","events_processed":9808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1961.6,"last_update":"2026-03-22T07:31:57.368765008Z"} +2026/03/22 07:32:02 [metric_collector] {"stage_name":"metric_collector","events_processed":5429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1085.8,"last_update":"2026-03-22T07:31:57.368855741Z"} +2026/03/22 07:32:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:31:57.377740451Z"} +2026/03/22 07:32:02 [detection_layer] {"stage_name":"detection_layer","events_processed":180,"events_dropped":0,"avg_latency_ms":18.746946963991704,"throughput_eps":0,"last_update":"2026-03-22T07:31:57.480023548Z"} +2026/03/22 07:32:02 [transform_engine] {"stage_name":"transform_engine","events_processed":181,"events_dropped":0,"avg_latency_ms":146.48931461043412,"throughput_eps":0,"last_update":"2026-03-22T07:31:57.546801692Z"} +2026/03/22 07:32:02 ───────────────────────────────────────────────── +2026/03/22 07:32:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:32:07 [log_collector] {"stage_name":"log_collector","events_processed":9811,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1962.2,"last_update":"2026-03-22T07:32:02.368312343Z"} +2026/03/22 07:32:07 [metric_collector] {"stage_name":"metric_collector","events_processed":5434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1086.8,"last_update":"2026-03-22T07:32:02.368675088Z"} +2026/03/22 07:32:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:32:02.374962008Z"} +2026/03/22 07:32:07 [detection_layer] {"stage_name":"detection_layer","events_processed":181,"events_dropped":0,"avg_latency_ms":19.373230371193365,"throughput_eps":0,"last_update":"2026-03-22T07:32:02.479158421Z"} +2026/03/22 07:32:07 [transform_engine] {"stage_name":"transform_engine","events_processed":181,"events_dropped":0,"avg_latency_ms":146.48931461043412,"throughput_eps":0,"last_update":"2026-03-22T07:32:02.479170504Z"} +2026/03/22 07:32:07 ───────────────────────────────────────────────── +2026/03/22 07:32:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:32:12 [log_collector] {"stage_name":"log_collector","events_processed":9811,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1962.2,"last_update":"2026-03-22T07:32:07.371023164Z"} +2026/03/22 07:32:12 [metric_collector] {"stage_name":"metric_collector","events_processed":5439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1087.8,"last_update":"2026-03-22T07:32:07.368557819Z"} +2026/03/22 07:32:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:32:07.376309587Z"} +2026/03/22 07:32:12 [detection_layer] {"stage_name":"detection_layer","events_processed":181,"events_dropped":0,"avg_latency_ms":19.373230371193365,"throughput_eps":0,"last_update":"2026-03-22T07:32:07.479701756Z"} +2026/03/22 07:32:12 [transform_engine] {"stage_name":"transform_engine","events_processed":181,"events_dropped":0,"avg_latency_ms":146.48931461043412,"throughput_eps":0,"last_update":"2026-03-22T07:32:07.479615992Z"} +2026/03/22 07:32:12 ───────────────────────────────────────────────── +2026/03/22 07:32:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:32:17 [metric_collector] {"stage_name":"metric_collector","events_processed":5444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1088.8,"last_update":"2026-03-22T07:32:12.368431247Z"} +2026/03/22 07:32:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:32:12.37685873Z"} +2026/03/22 07:32:17 [detection_layer] {"stage_name":"detection_layer","events_processed":181,"events_dropped":0,"avg_latency_ms":19.373230371193365,"throughput_eps":0,"last_update":"2026-03-22T07:32:12.479922599Z"} +2026/03/22 07:32:17 [transform_engine] {"stage_name":"transform_engine","events_processed":181,"events_dropped":0,"avg_latency_ms":146.48931461043412,"throughput_eps":0,"last_update":"2026-03-22T07:32:12.479875609Z"} +2026/03/22 07:32:17 [log_collector] {"stage_name":"log_collector","events_processed":9821,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1964.2,"last_update":"2026-03-22T07:32:12.368195896Z"} +2026/03/22 07:32:17 ───────────────────────────────────────────────── +2026/03/22 07:32:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:32:22 [transform_engine] {"stage_name":"transform_engine","events_processed":181,"events_dropped":0,"avg_latency_ms":146.48931461043412,"throughput_eps":0,"last_update":"2026-03-22T07:32:17.479588684Z"} +2026/03/22 07:32:22 [log_collector] {"stage_name":"log_collector","events_processed":9829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1965.8,"last_update":"2026-03-22T07:32:17.368569107Z"} +2026/03/22 07:32:22 [metric_collector] {"stage_name":"metric_collector","events_processed":5449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1089.8,"last_update":"2026-03-22T07:32:17.368926051Z"} +2026/03/22 07:32:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:32:17.377655964Z"} +2026/03/22 07:32:22 [detection_layer] {"stage_name":"detection_layer","events_processed":181,"events_dropped":0,"avg_latency_ms":19.373230371193365,"throughput_eps":0,"last_update":"2026-03-22T07:32:17.479614363Z"} +2026/03/22 07:32:22 ───────────────────────────────────────────────── +2026/03/22 07:32:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:32:27 [transform_engine] {"stage_name":"transform_engine","events_processed":181,"events_dropped":0,"avg_latency_ms":146.48931461043412,"throughput_eps":0,"last_update":"2026-03-22T07:32:22.479241088Z"} +2026/03/22 07:32:27 [log_collector] {"stage_name":"log_collector","events_processed":9841,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1968.2,"last_update":"2026-03-22T07:32:22.368278713Z"} +2026/03/22 07:32:27 [metric_collector] {"stage_name":"metric_collector","events_processed":5454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1090.8,"last_update":"2026-03-22T07:32:22.368273523Z"} +2026/03/22 07:32:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:32:22.375026826Z"} +2026/03/22 07:32:27 [detection_layer] {"stage_name":"detection_layer","events_processed":181,"events_dropped":0,"avg_latency_ms":19.373230371193365,"throughput_eps":0,"last_update":"2026-03-22T07:32:22.479265785Z"} +2026/03/22 07:32:27 ───────────────────────────────────────────────── +2026/03/22 07:32:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:32:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:32:27.377563046Z"} +2026/03/22 07:32:32 [detection_layer] {"stage_name":"detection_layer","events_processed":181,"events_dropped":0,"avg_latency_ms":19.373230371193365,"throughput_eps":0,"last_update":"2026-03-22T07:32:27.479896722Z"} +2026/03/22 07:32:32 [transform_engine] {"stage_name":"transform_engine","events_processed":182,"events_dropped":0,"avg_latency_ms":139.9695026883473,"throughput_eps":0,"last_update":"2026-03-22T07:32:27.593677317Z"} +2026/03/22 07:32:32 [log_collector] {"stage_name":"log_collector","events_processed":9852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1970.4,"last_update":"2026-03-22T07:32:27.368062758Z"} +2026/03/22 07:32:32 [metric_collector] {"stage_name":"metric_collector","events_processed":5459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1091.8,"last_update":"2026-03-22T07:32:27.368774612Z"} +2026/03/22 07:32:32 ───────────────────────────────────────────────── +2026/03/22 07:32:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:32:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:32:32.378738454Z"} +2026/03/22 07:32:37 [detection_layer] {"stage_name":"detection_layer","events_processed":182,"events_dropped":0,"avg_latency_ms":19.020143896954693,"throughput_eps":0,"last_update":"2026-03-22T07:32:32.480014391Z"} +2026/03/22 07:32:37 [transform_engine] {"stage_name":"transform_engine","events_processed":182,"events_dropped":0,"avg_latency_ms":139.9695026883473,"throughput_eps":0,"last_update":"2026-03-22T07:32:32.478862203Z"} +2026/03/22 07:32:37 [log_collector] {"stage_name":"log_collector","events_processed":9852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1970.4,"last_update":"2026-03-22T07:32:37.368274554Z"} +2026/03/22 07:32:37 [metric_collector] {"stage_name":"metric_collector","events_processed":5464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1092.8,"last_update":"2026-03-22T07:32:32.368274398Z"} +2026/03/22 07:32:37 ───────────────────────────────────────────────── +2026/03/22 07:32:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:32:42 [log_collector] {"stage_name":"log_collector","events_processed":9852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1970.4,"last_update":"2026-03-22T07:32:42.367991656Z"} +2026/03/22 07:32:42 [metric_collector] {"stage_name":"metric_collector","events_processed":5469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1093.8,"last_update":"2026-03-22T07:32:37.369075981Z"} +2026/03/22 07:32:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:32:37.377525255Z"} +2026/03/22 07:32:42 [detection_layer] {"stage_name":"detection_layer","events_processed":182,"events_dropped":0,"avg_latency_ms":19.020143896954693,"throughput_eps":0,"last_update":"2026-03-22T07:32:37.479758896Z"} +2026/03/22 07:32:42 [transform_engine] {"stage_name":"transform_engine","events_processed":182,"events_dropped":0,"avg_latency_ms":139.9695026883473,"throughput_eps":0,"last_update":"2026-03-22T07:32:37.479806177Z"} +2026/03/22 07:32:42 ───────────────────────────────────────────────── +2026/03/22 07:32:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:32:47 [log_collector] {"stage_name":"log_collector","events_processed":9852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1970.4,"last_update":"2026-03-22T07:32:42.367991656Z"} +2026/03/22 07:32:47 [metric_collector] {"stage_name":"metric_collector","events_processed":5474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1094.8,"last_update":"2026-03-22T07:32:42.368615732Z"} +2026/03/22 07:32:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:32:42.37720294Z"} +2026/03/22 07:32:47 [detection_layer] {"stage_name":"detection_layer","events_processed":182,"events_dropped":0,"avg_latency_ms":19.020143896954693,"throughput_eps":0,"last_update":"2026-03-22T07:32:42.479652905Z"} +2026/03/22 07:32:47 [transform_engine] {"stage_name":"transform_engine","events_processed":182,"events_dropped":0,"avg_latency_ms":139.9695026883473,"throughput_eps":0,"last_update":"2026-03-22T07:32:42.479609131Z"} +2026/03/22 07:32:47 ───────────────────────────────────────────────── +2026/03/22 07:32:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:32:52 [log_collector] {"stage_name":"log_collector","events_processed":9852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1970.4,"last_update":"2026-03-22T07:32:52.368816133Z"} +2026/03/22 07:32:52 [metric_collector] {"stage_name":"metric_collector","events_processed":5479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1095.8,"last_update":"2026-03-22T07:32:47.368464707Z"} +2026/03/22 07:32:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:32:47.37754508Z"} +2026/03/22 07:32:52 [detection_layer] {"stage_name":"detection_layer","events_processed":182,"events_dropped":0,"avg_latency_ms":19.020143896954693,"throughput_eps":0,"last_update":"2026-03-22T07:32:47.480025873Z"} +2026/03/22 07:32:52 [transform_engine] {"stage_name":"transform_engine","events_processed":182,"events_dropped":0,"avg_latency_ms":139.9695026883473,"throughput_eps":0,"last_update":"2026-03-22T07:32:47.479922244Z"} +2026/03/22 07:32:52 ───────────────────────────────────────────────── +2026/03/22 07:32:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:32:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:32:52.378513558Z"} +2026/03/22 07:32:57 [detection_layer] {"stage_name":"detection_layer","events_processed":182,"events_dropped":0,"avg_latency_ms":19.020143896954693,"throughput_eps":0,"last_update":"2026-03-22T07:32:52.479826893Z"} +2026/03/22 07:32:57 [transform_engine] {"stage_name":"transform_engine","events_processed":182,"events_dropped":0,"avg_latency_ms":139.9695026883473,"throughput_eps":0,"last_update":"2026-03-22T07:32:52.479941142Z"} +2026/03/22 07:32:57 [log_collector] {"stage_name":"log_collector","events_processed":9852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1970.4,"last_update":"2026-03-22T07:32:57.36796729Z"} +2026/03/22 07:32:57 [metric_collector] {"stage_name":"metric_collector","events_processed":5484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1096.8,"last_update":"2026-03-22T07:32:52.369530943Z"} +2026/03/22 07:32:57 ───────────────────────────────────────────────── +2026/03/22 07:33:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:33:02 [transform_engine] {"stage_name":"transform_engine","events_processed":183,"events_dropped":0,"avg_latency_ms":127.96733715067785,"throughput_eps":0,"last_update":"2026-03-22T07:32:57.559613712Z"} +2026/03/22 07:33:02 [log_collector] {"stage_name":"log_collector","events_processed":9852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1970.4,"last_update":"2026-03-22T07:32:57.36796729Z"} +2026/03/22 07:33:02 [metric_collector] {"stage_name":"metric_collector","events_processed":5489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1097.8,"last_update":"2026-03-22T07:32:57.368316029Z"} +2026/03/22 07:33:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:32:57.37727054Z"} +2026/03/22 07:33:02 [detection_layer] {"stage_name":"detection_layer","events_processed":182,"events_dropped":0,"avg_latency_ms":19.020143896954693,"throughput_eps":0,"last_update":"2026-03-22T07:32:57.47969386Z"} +2026/03/22 07:33:02 ───────────────────────────────────────────────── +2026/03/22 07:33:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:33:07 [log_collector] {"stage_name":"log_collector","events_processed":9852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1970.4,"last_update":"2026-03-22T07:33:02.368125948Z"} +2026/03/22 07:33:07 [metric_collector] {"stage_name":"metric_collector","events_processed":5494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1098.8,"last_update":"2026-03-22T07:33:02.368800842Z"} +2026/03/22 07:33:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:33:02.378249371Z"} +2026/03/22 07:33:07 [detection_layer] {"stage_name":"detection_layer","events_processed":183,"events_dropped":0,"avg_latency_ms":19.657615517563755,"throughput_eps":0,"last_update":"2026-03-22T07:33:02.479012238Z"} +2026/03/22 07:33:07 [transform_engine] {"stage_name":"transform_engine","events_processed":183,"events_dropped":0,"avg_latency_ms":127.96733715067785,"throughput_eps":0,"last_update":"2026-03-22T07:33:02.479099324Z"} +2026/03/22 07:33:07 ───────────────────────────────────────────────── +2026/03/22 07:33:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:33:12 [transform_engine] {"stage_name":"transform_engine","events_processed":183,"events_dropped":0,"avg_latency_ms":127.96733715067785,"throughput_eps":0,"last_update":"2026-03-22T07:33:07.479102315Z"} +2026/03/22 07:33:12 [log_collector] {"stage_name":"log_collector","events_processed":9852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1970.4,"last_update":"2026-03-22T07:33:07.36827461Z"} +2026/03/22 07:33:12 [metric_collector] {"stage_name":"metric_collector","events_processed":5499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1099.8,"last_update":"2026-03-22T07:33:07.368685838Z"} +2026/03/22 07:33:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:33:07.377849641Z"} +2026/03/22 07:33:12 [detection_layer] {"stage_name":"detection_layer","events_processed":183,"events_dropped":0,"avg_latency_ms":19.657615517563755,"throughput_eps":0,"last_update":"2026-03-22T07:33:07.479125229Z"} +2026/03/22 07:33:12 ───────────────────────────────────────────────── +2026/03/22 07:33:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:33:17 [transform_engine] {"stage_name":"transform_engine","events_processed":183,"events_dropped":0,"avg_latency_ms":127.96733715067785,"throughput_eps":0,"last_update":"2026-03-22T07:33:12.479498471Z"} +2026/03/22 07:33:17 [log_collector] {"stage_name":"log_collector","events_processed":9852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1970.4,"last_update":"2026-03-22T07:33:12.368643776Z"} +2026/03/22 07:33:17 [metric_collector] {"stage_name":"metric_collector","events_processed":5504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1100.8,"last_update":"2026-03-22T07:33:12.369222395Z"} +2026/03/22 07:33:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:33:12.378254906Z"} +2026/03/22 07:33:17 [detection_layer] {"stage_name":"detection_layer","events_processed":183,"events_dropped":0,"avg_latency_ms":19.657615517563755,"throughput_eps":0,"last_update":"2026-03-22T07:33:12.479376718Z"} +2026/03/22 07:33:17 ───────────────────────────────────────────────── +2026/03/22 07:33:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:33:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2206,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:33:17.377230453Z"} +2026/03/22 07:33:22 [detection_layer] {"stage_name":"detection_layer","events_processed":183,"events_dropped":0,"avg_latency_ms":19.657615517563755,"throughput_eps":0,"last_update":"2026-03-22T07:33:17.479673345Z"} +2026/03/22 07:33:22 [transform_engine] {"stage_name":"transform_engine","events_processed":183,"events_dropped":0,"avg_latency_ms":127.96733715067785,"throughput_eps":0,"last_update":"2026-03-22T07:33:17.479588824Z"} +2026/03/22 07:33:22 [log_collector] {"stage_name":"log_collector","events_processed":9852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1970.4,"last_update":"2026-03-22T07:33:22.367964999Z"} +2026/03/22 07:33:22 [metric_collector] {"stage_name":"metric_collector","events_processed":5509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1101.8,"last_update":"2026-03-22T07:33:17.368265782Z"} +2026/03/22 07:33:22 ───────────────────────────────────────────────── +Saved state: 11 clusters, 9853 messages, reason: none +2026/03/22 07:33:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:33:27 [log_collector] {"stage_name":"log_collector","events_processed":9852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1970.4,"last_update":"2026-03-22T07:33:22.367964999Z"} +2026/03/22 07:33:27 [metric_collector] {"stage_name":"metric_collector","events_processed":5514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1102.8,"last_update":"2026-03-22T07:33:22.368304149Z"} +2026/03/22 07:33:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:33:22.377470197Z"} +2026/03/22 07:33:27 [detection_layer] {"stage_name":"detection_layer","events_processed":183,"events_dropped":0,"avg_latency_ms":19.657615517563755,"throughput_eps":0,"last_update":"2026-03-22T07:33:22.479709207Z"} +2026/03/22 07:33:27 [transform_engine] {"stage_name":"transform_engine","events_processed":183,"events_dropped":0,"avg_latency_ms":127.96733715067785,"throughput_eps":0,"last_update":"2026-03-22T07:33:22.479681795Z"} +2026/03/22 07:33:27 ───────────────────────────────────────────────── +2026/03/22 07:33:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:33:32 [log_collector] {"stage_name":"log_collector","events_processed":9857,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1971.4,"last_update":"2026-03-22T07:33:32.367983074Z"} +2026/03/22 07:33:32 [metric_collector] {"stage_name":"metric_collector","events_processed":5519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1103.8,"last_update":"2026-03-22T07:33:27.368426873Z"} +2026/03/22 07:33:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2210,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:33:27.375492765Z"} +2026/03/22 07:33:32 [detection_layer] {"stage_name":"detection_layer","events_processed":183,"events_dropped":0,"avg_latency_ms":19.657615517563755,"throughput_eps":0,"last_update":"2026-03-22T07:33:27.479562443Z"} +2026/03/22 07:33:32 [transform_engine] {"stage_name":"transform_engine","events_processed":184,"events_dropped":0,"avg_latency_ms":122.7917725205423,"throughput_eps":0,"last_update":"2026-03-22T07:33:27.581681374Z"} +2026/03/22 07:33:32 ───────────────────────────────────────────────── +2026/03/22 07:33:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:33:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:33:32.37994087Z"} +2026/03/22 07:33:37 [detection_layer] {"stage_name":"detection_layer","events_processed":184,"events_dropped":0,"avg_latency_ms":18.918092014051005,"throughput_eps":0,"last_update":"2026-03-22T07:33:32.479160123Z"} +2026/03/22 07:33:37 [transform_engine] {"stage_name":"transform_engine","events_processed":184,"events_dropped":0,"avg_latency_ms":122.7917725205423,"throughput_eps":0,"last_update":"2026-03-22T07:33:32.479135535Z"} +2026/03/22 07:33:37 [log_collector] {"stage_name":"log_collector","events_processed":9857,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1971.4,"last_update":"2026-03-22T07:33:32.367983074Z"} +2026/03/22 07:33:37 [metric_collector] {"stage_name":"metric_collector","events_processed":5524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1104.8,"last_update":"2026-03-22T07:33:32.368232653Z"} +2026/03/22 07:33:37 ───────────────────────────────────────────────── +2026/03/22 07:33:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:33:42 [log_collector] {"stage_name":"log_collector","events_processed":9857,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1971.4,"last_update":"2026-03-22T07:33:37.368855543Z"} +2026/03/22 07:33:42 [metric_collector] {"stage_name":"metric_collector","events_processed":5529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1105.8,"last_update":"2026-03-22T07:33:37.368751133Z"} +2026/03/22 07:33:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:33:37.378231752Z"} +2026/03/22 07:33:42 [detection_layer] {"stage_name":"detection_layer","events_processed":184,"events_dropped":0,"avg_latency_ms":18.918092014051005,"throughput_eps":0,"last_update":"2026-03-22T07:33:37.479412952Z"} +2026/03/22 07:33:42 [transform_engine] {"stage_name":"transform_engine","events_processed":184,"events_dropped":0,"avg_latency_ms":122.7917725205423,"throughput_eps":0,"last_update":"2026-03-22T07:33:37.479438812Z"} +2026/03/22 07:33:42 ───────────────────────────────────────────────── +2026/03/22 07:33:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:33:47 [log_collector] {"stage_name":"log_collector","events_processed":9857,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1971.4,"last_update":"2026-03-22T07:33:47.368441162Z"} +2026/03/22 07:33:47 [metric_collector] {"stage_name":"metric_collector","events_processed":5534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1106.8,"last_update":"2026-03-22T07:33:42.368649181Z"} +2026/03/22 07:33:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:33:42.377089096Z"} +2026/03/22 07:33:47 [detection_layer] {"stage_name":"detection_layer","events_processed":184,"events_dropped":0,"avg_latency_ms":18.918092014051005,"throughput_eps":0,"last_update":"2026-03-22T07:33:42.479237249Z"} +2026/03/22 07:33:47 [transform_engine] {"stage_name":"transform_engine","events_processed":184,"events_dropped":0,"avg_latency_ms":122.7917725205423,"throughput_eps":0,"last_update":"2026-03-22T07:33:42.479309547Z"} +2026/03/22 07:33:47 ───────────────────────────────────────────────── +2026/03/22 07:33:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:33:52 [detection_layer] {"stage_name":"detection_layer","events_processed":184,"events_dropped":0,"avg_latency_ms":18.918092014051005,"throughput_eps":0,"last_update":"2026-03-22T07:33:47.478955908Z"} +2026/03/22 07:33:52 [transform_engine] {"stage_name":"transform_engine","events_processed":184,"events_dropped":0,"avg_latency_ms":122.7917725205423,"throughput_eps":0,"last_update":"2026-03-22T07:33:47.478918066Z"} +2026/03/22 07:33:52 [log_collector] {"stage_name":"log_collector","events_processed":9857,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1971.4,"last_update":"2026-03-22T07:33:52.368608149Z"} +2026/03/22 07:33:52 [metric_collector] {"stage_name":"metric_collector","events_processed":5544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1108.8,"last_update":"2026-03-22T07:33:52.368819083Z"} +2026/03/22 07:33:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:33:47.376779672Z"} +2026/03/22 07:33:52 ───────────────────────────────────────────────── +2026/03/22 07:33:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:33:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:33:52.378661165Z"} +2026/03/22 07:33:57 [detection_layer] {"stage_name":"detection_layer","events_processed":184,"events_dropped":0,"avg_latency_ms":18.918092014051005,"throughput_eps":0,"last_update":"2026-03-22T07:33:52.479843765Z"} +2026/03/22 07:33:57 [transform_engine] {"stage_name":"transform_engine","events_processed":184,"events_dropped":0,"avg_latency_ms":122.7917725205423,"throughput_eps":0,"last_update":"2026-03-22T07:33:52.479861058Z"} +2026/03/22 07:33:57 [log_collector] {"stage_name":"log_collector","events_processed":9857,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1971.4,"last_update":"2026-03-22T07:33:52.368608149Z"} +2026/03/22 07:33:57 [metric_collector] {"stage_name":"metric_collector","events_processed":5544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1108.8,"last_update":"2026-03-22T07:33:52.368819083Z"} +2026/03/22 07:33:57 ───────────────────────────────────────────────── +2026/03/22 07:34:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:34:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2222,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:33:57.375939733Z"} +2026/03/22 07:34:02 [detection_layer] {"stage_name":"detection_layer","events_processed":184,"events_dropped":0,"avg_latency_ms":18.918092014051005,"throughput_eps":0,"last_update":"2026-03-22T07:33:57.479007133Z"} +2026/03/22 07:34:02 [transform_engine] {"stage_name":"transform_engine","events_processed":185,"events_dropped":0,"avg_latency_ms":133.56229721643385,"throughput_eps":0,"last_update":"2026-03-22T07:33:57.655666969Z"} +2026/03/22 07:34:02 [log_collector] {"stage_name":"log_collector","events_processed":9857,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1971.4,"last_update":"2026-03-22T07:33:57.367989647Z"} +2026/03/22 07:34:02 [metric_collector] {"stage_name":"metric_collector","events_processed":5549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1109.8,"last_update":"2026-03-22T07:33:57.368302527Z"} +2026/03/22 07:34:02 ───────────────────────────────────────────────── +2026/03/22 07:34:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:34:07 [log_collector] {"stage_name":"log_collector","events_processed":9857,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1971.4,"last_update":"2026-03-22T07:34:02.368577825Z"} +2026/03/22 07:34:07 [metric_collector] {"stage_name":"metric_collector","events_processed":5553,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1110.6,"last_update":"2026-03-22T07:34:02.368406978Z"} +2026/03/22 07:34:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:34:02.376796365Z"} +2026/03/22 07:34:07 [detection_layer] {"stage_name":"detection_layer","events_processed":185,"events_dropped":0,"avg_latency_ms":18.079746011240807,"throughput_eps":0,"last_update":"2026-03-22T07:34:02.479012424Z"} +2026/03/22 07:34:07 [transform_engine] {"stage_name":"transform_engine","events_processed":185,"events_dropped":0,"avg_latency_ms":133.56229721643385,"throughput_eps":0,"last_update":"2026-03-22T07:34:02.478957067Z"} +2026/03/22 07:34:07 ───────────────────────────────────────────────── +2026/03/22 07:34:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:34:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:34:07.376440141Z"} +2026/03/22 07:34:12 [detection_layer] {"stage_name":"detection_layer","events_processed":185,"events_dropped":0,"avg_latency_ms":18.079746011240807,"throughput_eps":0,"last_update":"2026-03-22T07:34:07.47952372Z"} +2026/03/22 07:34:12 [transform_engine] {"stage_name":"transform_engine","events_processed":185,"events_dropped":0,"avg_latency_ms":133.56229721643385,"throughput_eps":0,"last_update":"2026-03-22T07:34:07.479505846Z"} +2026/03/22 07:34:12 [log_collector] {"stage_name":"log_collector","events_processed":9857,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1971.4,"last_update":"2026-03-22T07:34:07.368726819Z"} +2026/03/22 07:34:12 [metric_collector] {"stage_name":"metric_collector","events_processed":5559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1111.8,"last_update":"2026-03-22T07:34:07.369024189Z"} +2026/03/22 07:34:12 ───────────────────────────────────────────────── +2026/03/22 07:34:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:34:17 [log_collector] {"stage_name":"log_collector","events_processed":9868,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1973.6,"last_update":"2026-03-22T07:34:12.368641824Z"} +2026/03/22 07:34:17 [metric_collector] {"stage_name":"metric_collector","events_processed":5564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1112.8,"last_update":"2026-03-22T07:34:12.368830877Z"} +2026/03/22 07:34:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:34:12.378184411Z"} +2026/03/22 07:34:17 [detection_layer] {"stage_name":"detection_layer","events_processed":185,"events_dropped":0,"avg_latency_ms":18.079746011240807,"throughput_eps":0,"last_update":"2026-03-22T07:34:12.479576689Z"} +2026/03/22 07:34:17 [transform_engine] {"stage_name":"transform_engine","events_processed":185,"events_dropped":0,"avg_latency_ms":133.56229721643385,"throughput_eps":0,"last_update":"2026-03-22T07:34:12.479531141Z"} +2026/03/22 07:34:17 ───────────────────────────────────────────────── +2026/03/22 07:34:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:34:22 [log_collector] {"stage_name":"log_collector","events_processed":9914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1982.8,"last_update":"2026-03-22T07:34:17.367971577Z"} +2026/03/22 07:34:22 [metric_collector] {"stage_name":"metric_collector","events_processed":5569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1113.8,"last_update":"2026-03-22T07:34:17.368568571Z"} +2026/03/22 07:34:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:34:17.376052143Z"} +2026/03/22 07:34:22 [detection_layer] {"stage_name":"detection_layer","events_processed":185,"events_dropped":0,"avg_latency_ms":18.079746011240807,"throughput_eps":0,"last_update":"2026-03-22T07:34:17.479358888Z"} +2026/03/22 07:34:22 [transform_engine] {"stage_name":"transform_engine","events_processed":185,"events_dropped":0,"avg_latency_ms":133.56229721643385,"throughput_eps":0,"last_update":"2026-03-22T07:34:17.479376832Z"} +2026/03/22 07:34:22 ───────────────────────────────────────────────── +2026/03/22 07:34:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:34:27 [log_collector] {"stage_name":"log_collector","events_processed":10208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2041.6,"last_update":"2026-03-22T07:34:22.369213032Z"} +2026/03/22 07:34:27 [metric_collector] {"stage_name":"metric_collector","events_processed":5574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1114.8,"last_update":"2026-03-22T07:34:22.369017438Z"} +2026/03/22 07:34:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:34:22.376506088Z"} +2026/03/22 07:34:27 [detection_layer] {"stage_name":"detection_layer","events_processed":185,"events_dropped":0,"avg_latency_ms":18.079746011240807,"throughput_eps":0,"last_update":"2026-03-22T07:34:22.479705237Z"} +2026/03/22 07:34:27 [transform_engine] {"stage_name":"transform_engine","events_processed":185,"events_dropped":0,"avg_latency_ms":133.56229721643385,"throughput_eps":0,"last_update":"2026-03-22T07:34:22.4796654Z"} +2026/03/22 07:34:27 ───────────────────────────────────────────────── +2026/03/22 07:34:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:34:32 [log_collector] {"stage_name":"log_collector","events_processed":10220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2044,"last_update":"2026-03-22T07:34:27.368127769Z"} +2026/03/22 07:34:32 [metric_collector] {"stage_name":"metric_collector","events_processed":5579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1115.8,"last_update":"2026-03-22T07:34:27.368279309Z"} +2026/03/22 07:34:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:34:27.379422924Z"} +2026/03/22 07:34:32 [detection_layer] {"stage_name":"detection_layer","events_processed":185,"events_dropped":0,"avg_latency_ms":18.079746011240807,"throughput_eps":0,"last_update":"2026-03-22T07:34:27.479964389Z"} +2026/03/22 07:34:32 [transform_engine] {"stage_name":"transform_engine","events_processed":185,"events_dropped":0,"avg_latency_ms":133.56229721643385,"throughput_eps":0,"last_update":"2026-03-22T07:34:27.479874797Z"} +2026/03/22 07:34:32 ───────────────────────────────────────────────── +2026/03/22 07:34:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:34:37 [log_collector] {"stage_name":"log_collector","events_processed":10220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2044,"last_update":"2026-03-22T07:34:32.368398695Z"} +2026/03/22 07:34:37 [metric_collector] {"stage_name":"metric_collector","events_processed":5584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1116.8,"last_update":"2026-03-22T07:34:32.368640728Z"} +2026/03/22 07:34:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:34:32.377061295Z"} +2026/03/22 07:34:37 [detection_layer] {"stage_name":"detection_layer","events_processed":186,"events_dropped":0,"avg_latency_ms":17.957167408992646,"throughput_eps":0,"last_update":"2026-03-22T07:34:32.479282457Z"} +2026/03/22 07:34:37 [transform_engine] {"stage_name":"transform_engine","events_processed":186,"events_dropped":0,"avg_latency_ms":130.7550127731471,"throughput_eps":0,"last_update":"2026-03-22T07:34:32.479293639Z"} +2026/03/22 07:34:37 ───────────────────────────────────────────────── +2026/03/22 07:34:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:34:42 [log_collector] {"stage_name":"log_collector","events_processed":10220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2044,"last_update":"2026-03-22T07:34:37.368196646Z"} +2026/03/22 07:34:42 [metric_collector] {"stage_name":"metric_collector","events_processed":5589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1117.8,"last_update":"2026-03-22T07:34:37.368440503Z"} +2026/03/22 07:34:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:34:37.377640223Z"} +2026/03/22 07:34:42 [detection_layer] {"stage_name":"detection_layer","events_processed":186,"events_dropped":0,"avg_latency_ms":17.957167408992646,"throughput_eps":0,"last_update":"2026-03-22T07:34:37.479830244Z"} +2026/03/22 07:34:42 [transform_engine] {"stage_name":"transform_engine","events_processed":186,"events_dropped":0,"avg_latency_ms":130.7550127731471,"throughput_eps":0,"last_update":"2026-03-22T07:34:37.47984379Z"} +2026/03/22 07:34:42 ───────────────────────────────────────────────── +2026/03/22 07:34:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:34:47 [log_collector] {"stage_name":"log_collector","events_processed":10220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2044,"last_update":"2026-03-22T07:34:42.368007994Z"} +2026/03/22 07:34:47 [metric_collector] {"stage_name":"metric_collector","events_processed":5593,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1118.6,"last_update":"2026-03-22T07:34:42.367918021Z"} +2026/03/22 07:34:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:34:42.377050872Z"} +2026/03/22 07:34:47 [detection_layer] {"stage_name":"detection_layer","events_processed":186,"events_dropped":0,"avg_latency_ms":17.957167408992646,"throughput_eps":0,"last_update":"2026-03-22T07:34:42.479279147Z"} +2026/03/22 07:34:47 [transform_engine] {"stage_name":"transform_engine","events_processed":186,"events_dropped":0,"avg_latency_ms":130.7550127731471,"throughput_eps":0,"last_update":"2026-03-22T07:34:42.479290738Z"} +2026/03/22 07:34:47 ───────────────────────────────────────────────── +2026/03/22 07:34:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:34:52 [log_collector] {"stage_name":"log_collector","events_processed":10220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2044,"last_update":"2026-03-22T07:34:47.368507682Z"} +2026/03/22 07:34:52 [metric_collector] {"stage_name":"metric_collector","events_processed":5604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1120.8,"last_update":"2026-03-22T07:34:52.368307042Z"} +2026/03/22 07:34:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:34:47.378642164Z"} +2026/03/22 07:34:52 [detection_layer] {"stage_name":"detection_layer","events_processed":186,"events_dropped":0,"avg_latency_ms":17.957167408992646,"throughput_eps":0,"last_update":"2026-03-22T07:34:47.479841695Z"} +2026/03/22 07:34:52 [transform_engine] {"stage_name":"transform_engine","events_processed":186,"events_dropped":0,"avg_latency_ms":130.7550127731471,"throughput_eps":0,"last_update":"2026-03-22T07:34:47.479852977Z"} +2026/03/22 07:34:52 ───────────────────────────────────────────────── +2026/03/22 07:34:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:34:57 [transform_engine] {"stage_name":"transform_engine","events_processed":186,"events_dropped":0,"avg_latency_ms":130.7550127731471,"throughput_eps":0,"last_update":"2026-03-22T07:34:52.478972352Z"} +2026/03/22 07:34:57 [log_collector] {"stage_name":"log_collector","events_processed":10220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2044,"last_update":"2026-03-22T07:34:52.368335887Z"} +2026/03/22 07:34:57 [metric_collector] {"stage_name":"metric_collector","events_processed":5604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1120.8,"last_update":"2026-03-22T07:34:52.368307042Z"} +2026/03/22 07:34:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:34:52.377752132Z"} +2026/03/22 07:34:57 [detection_layer] {"stage_name":"detection_layer","events_processed":186,"events_dropped":0,"avg_latency_ms":17.957167408992646,"throughput_eps":0,"last_update":"2026-03-22T07:34:52.479036124Z"} +2026/03/22 07:34:57 ───────────────────────────────────────────────── +2026/03/22 07:35:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:35:02 [metric_collector] {"stage_name":"metric_collector","events_processed":5609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1121.8,"last_update":"2026-03-22T07:34:57.369009466Z"} +2026/03/22 07:35:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2246,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:34:57.378317824Z"} +2026/03/22 07:35:02 [detection_layer] {"stage_name":"detection_layer","events_processed":186,"events_dropped":0,"avg_latency_ms":17.957167408992646,"throughput_eps":0,"last_update":"2026-03-22T07:34:57.479673812Z"} +2026/03/22 07:35:02 [transform_engine] {"stage_name":"transform_engine","events_processed":186,"events_dropped":0,"avg_latency_ms":130.7550127731471,"throughput_eps":0,"last_update":"2026-03-22T07:34:57.479733677Z"} +2026/03/22 07:35:02 [log_collector] {"stage_name":"log_collector","events_processed":10220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2044,"last_update":"2026-03-22T07:34:57.36877189Z"} +2026/03/22 07:35:02 ───────────────────────────────────────────────── +2026/03/22 07:35:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:35:07 [log_collector] {"stage_name":"log_collector","events_processed":10220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2044,"last_update":"2026-03-22T07:35:02.368096267Z"} +2026/03/22 07:35:07 [metric_collector] {"stage_name":"metric_collector","events_processed":5614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1122.8,"last_update":"2026-03-22T07:35:02.368812669Z"} +2026/03/22 07:35:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:35:02.378425009Z"} +2026/03/22 07:35:07 [detection_layer] {"stage_name":"detection_layer","events_processed":187,"events_dropped":0,"avg_latency_ms":18.557512727194116,"throughput_eps":0,"last_update":"2026-03-22T07:35:02.479705894Z"} +2026/03/22 07:35:07 [transform_engine] {"stage_name":"transform_engine","events_processed":187,"events_dropped":0,"avg_latency_ms":118.54301941851767,"throughput_eps":0,"last_update":"2026-03-22T07:35:02.479671537Z"} +2026/03/22 07:35:07 ───────────────────────────────────────────────── +2026/03/22 07:35:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:35:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:35:07.37788551Z"} +2026/03/22 07:35:12 [detection_layer] {"stage_name":"detection_layer","events_processed":187,"events_dropped":0,"avg_latency_ms":18.557512727194116,"throughput_eps":0,"last_update":"2026-03-22T07:35:07.479172255Z"} +2026/03/22 07:35:12 [transform_engine] {"stage_name":"transform_engine","events_processed":187,"events_dropped":0,"avg_latency_ms":118.54301941851767,"throughput_eps":0,"last_update":"2026-03-22T07:35:07.479090288Z"} +2026/03/22 07:35:12 [log_collector] {"stage_name":"log_collector","events_processed":10220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2044,"last_update":"2026-03-22T07:35:12.368415644Z"} +2026/03/22 07:35:12 [metric_collector] {"stage_name":"metric_collector","events_processed":5619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1123.8,"last_update":"2026-03-22T07:35:07.368974023Z"} +2026/03/22 07:35:12 ───────────────────────────────────────────────── +2026/03/22 07:35:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:35:17 [log_collector] {"stage_name":"log_collector","events_processed":10220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2044,"last_update":"2026-03-22T07:35:12.368415644Z"} +2026/03/22 07:35:17 [metric_collector] {"stage_name":"metric_collector","events_processed":5624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1124.8,"last_update":"2026-03-22T07:35:12.368871697Z"} +2026/03/22 07:35:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:35:12.377566859Z"} +2026/03/22 07:35:17 [detection_layer] {"stage_name":"detection_layer","events_processed":187,"events_dropped":0,"avg_latency_ms":18.557512727194116,"throughput_eps":0,"last_update":"2026-03-22T07:35:12.479866394Z"} +2026/03/22 07:35:17 [transform_engine] {"stage_name":"transform_engine","events_processed":187,"events_dropped":0,"avg_latency_ms":118.54301941851767,"throughput_eps":0,"last_update":"2026-03-22T07:35:12.479921649Z"} +2026/03/22 07:35:17 ───────────────────────────────────────────────── +2026/03/22 07:35:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:35:22 [metric_collector] {"stage_name":"metric_collector","events_processed":5629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1125.8,"last_update":"2026-03-22T07:35:17.368523875Z"} +2026/03/22 07:35:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:35:17.377215931Z"} +2026/03/22 07:35:22 [detection_layer] {"stage_name":"detection_layer","events_processed":187,"events_dropped":0,"avg_latency_ms":18.557512727194116,"throughput_eps":0,"last_update":"2026-03-22T07:35:17.479579397Z"} +2026/03/22 07:35:22 [transform_engine] {"stage_name":"transform_engine","events_processed":187,"events_dropped":0,"avg_latency_ms":118.54301941851767,"throughput_eps":0,"last_update":"2026-03-22T07:35:17.479526115Z"} +2026/03/22 07:35:22 [log_collector] {"stage_name":"log_collector","events_processed":10220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2044,"last_update":"2026-03-22T07:35:17.368025781Z"} +2026/03/22 07:35:22 ───────────────────────────────────────────────── +2026/03/22 07:35:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:35:27 [log_collector] {"stage_name":"log_collector","events_processed":10220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2044,"last_update":"2026-03-22T07:35:22.368208218Z"} +2026/03/22 07:35:27 [metric_collector] {"stage_name":"metric_collector","events_processed":5634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1126.8,"last_update":"2026-03-22T07:35:22.368701613Z"} +2026/03/22 07:35:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:35:22.377708463Z"} +2026/03/22 07:35:27 [detection_layer] {"stage_name":"detection_layer","events_processed":187,"events_dropped":0,"avg_latency_ms":18.557512727194116,"throughput_eps":0,"last_update":"2026-03-22T07:35:22.47997868Z"} +2026/03/22 07:35:27 [transform_engine] {"stage_name":"transform_engine","events_processed":187,"events_dropped":0,"avg_latency_ms":118.54301941851767,"throughput_eps":0,"last_update":"2026-03-22T07:35:22.479920327Z"} +2026/03/22 07:35:27 ───────────────────────────────────────────────── +2026/03/22 07:35:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:35:32 [log_collector] {"stage_name":"log_collector","events_processed":10220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2044,"last_update":"2026-03-22T07:35:27.36806578Z"} +2026/03/22 07:35:32 [metric_collector] {"stage_name":"metric_collector","events_processed":5639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1127.8,"last_update":"2026-03-22T07:35:27.368308064Z"} +2026/03/22 07:35:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:35:27.377291187Z"} +2026/03/22 07:35:32 [detection_layer] {"stage_name":"detection_layer","events_processed":187,"events_dropped":0,"avg_latency_ms":18.557512727194116,"throughput_eps":0,"last_update":"2026-03-22T07:35:27.479592793Z"} +2026/03/22 07:35:32 [transform_engine] {"stage_name":"transform_engine","events_processed":188,"events_dropped":0,"avg_latency_ms":105.97148313481415,"throughput_eps":0,"last_update":"2026-03-22T07:35:27.535224658Z"} +2026/03/22 07:35:32 ───────────────────────────────────────────────── +2026/03/22 07:35:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:35:37 [transform_engine] {"stage_name":"transform_engine","events_processed":188,"events_dropped":0,"avg_latency_ms":105.97148313481415,"throughput_eps":0,"last_update":"2026-03-22T07:35:32.47929921Z"} +2026/03/22 07:35:37 [log_collector] {"stage_name":"log_collector","events_processed":10220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2044,"last_update":"2026-03-22T07:35:32.367968964Z"} +2026/03/22 07:35:37 [metric_collector] {"stage_name":"metric_collector","events_processed":5644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1128.8,"last_update":"2026-03-22T07:35:32.368403076Z"} +2026/03/22 07:35:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:35:32.377152472Z"} +2026/03/22 07:35:37 [detection_layer] {"stage_name":"detection_layer","events_processed":188,"events_dropped":0,"avg_latency_ms":19.147705381755294,"throughput_eps":0,"last_update":"2026-03-22T07:35:32.479246219Z"} +2026/03/22 07:35:37 ───────────────────────────────────────────────── +2026/03/22 07:35:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:35:42 [log_collector] {"stage_name":"log_collector","events_processed":10220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2044,"last_update":"2026-03-22T07:35:37.368878484Z"} +2026/03/22 07:35:42 [metric_collector] {"stage_name":"metric_collector","events_processed":5649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1129.8,"last_update":"2026-03-22T07:35:37.369260336Z"} +2026/03/22 07:35:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:35:37.378387725Z"} +2026/03/22 07:35:42 [detection_layer] {"stage_name":"detection_layer","events_processed":188,"events_dropped":0,"avg_latency_ms":19.147705381755294,"throughput_eps":0,"last_update":"2026-03-22T07:35:37.4795933Z"} +2026/03/22 07:35:42 [transform_engine] {"stage_name":"transform_engine","events_processed":188,"events_dropped":0,"avg_latency_ms":105.97148313481415,"throughput_eps":0,"last_update":"2026-03-22T07:35:37.479619199Z"} +2026/03/22 07:35:42 ───────────────────────────────────────────────── +2026/03/22 07:35:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:35:47 [log_collector] {"stage_name":"log_collector","events_processed":10220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2044,"last_update":"2026-03-22T07:35:47.367985209Z"} +2026/03/22 07:35:47 [metric_collector] {"stage_name":"metric_collector","events_processed":5654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1130.8,"last_update":"2026-03-22T07:35:42.368623109Z"} +2026/03/22 07:35:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:35:42.377854669Z"} +2026/03/22 07:35:47 [detection_layer] {"stage_name":"detection_layer","events_processed":188,"events_dropped":0,"avg_latency_ms":19.147705381755294,"throughput_eps":0,"last_update":"2026-03-22T07:35:42.479267068Z"} +2026/03/22 07:35:47 [transform_engine] {"stage_name":"transform_engine","events_processed":188,"events_dropped":0,"avg_latency_ms":105.97148313481415,"throughput_eps":0,"last_update":"2026-03-22T07:35:42.479225259Z"} +2026/03/22 07:35:47 ───────────────────────────────────────────────── +2026/03/22 07:35:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:35:52 [metric_collector] {"stage_name":"metric_collector","events_processed":5659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1131.8,"last_update":"2026-03-22T07:35:47.36877931Z"} +2026/03/22 07:35:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:35:47.377261103Z"} +2026/03/22 07:35:52 [detection_layer] {"stage_name":"detection_layer","events_processed":188,"events_dropped":0,"avg_latency_ms":19.147705381755294,"throughput_eps":0,"last_update":"2026-03-22T07:35:47.479536866Z"} +2026/03/22 07:35:52 [transform_engine] {"stage_name":"transform_engine","events_processed":188,"events_dropped":0,"avg_latency_ms":105.97148313481415,"throughput_eps":0,"last_update":"2026-03-22T07:35:47.479658118Z"} +2026/03/22 07:35:52 [log_collector] {"stage_name":"log_collector","events_processed":10220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2044,"last_update":"2026-03-22T07:35:47.367985209Z"} +2026/03/22 07:35:52 ───────────────────────────────────────────────── +2026/03/22 07:35:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:35:57 [transform_engine] {"stage_name":"transform_engine","events_processed":188,"events_dropped":0,"avg_latency_ms":105.97148313481415,"throughput_eps":0,"last_update":"2026-03-22T07:35:52.479176974Z"} +2026/03/22 07:35:57 [log_collector] {"stage_name":"log_collector","events_processed":10220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2044,"last_update":"2026-03-22T07:35:52.368729204Z"} +2026/03/22 07:35:57 [metric_collector] {"stage_name":"metric_collector","events_processed":5664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1132.8,"last_update":"2026-03-22T07:35:52.369314977Z"} +2026/03/22 07:35:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:35:52.377941927Z"} +2026/03/22 07:35:57 [detection_layer] {"stage_name":"detection_layer","events_processed":188,"events_dropped":0,"avg_latency_ms":19.147705381755294,"throughput_eps":0,"last_update":"2026-03-22T07:35:52.479225127Z"} +2026/03/22 07:35:57 ───────────────────────────────────────────────── +Saved state: 11 clusters, 10221 messages, reason: none +2026/03/22 07:36:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:36:02 [log_collector] {"stage_name":"log_collector","events_processed":10220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2044,"last_update":"2026-03-22T07:35:57.368485073Z"} +2026/03/22 07:36:02 [metric_collector] {"stage_name":"metric_collector","events_processed":5669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1133.8,"last_update":"2026-03-22T07:35:57.368940807Z"} +2026/03/22 07:36:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:35:57.377135229Z"} +2026/03/22 07:36:02 [detection_layer] {"stage_name":"detection_layer","events_processed":188,"events_dropped":0,"avg_latency_ms":19.147705381755294,"throughput_eps":0,"last_update":"2026-03-22T07:35:57.479497366Z"} +2026/03/22 07:36:02 [transform_engine] {"stage_name":"transform_engine","events_processed":189,"events_dropped":0,"avg_latency_ms":99.18985190785133,"throughput_eps":0,"last_update":"2026-03-22T07:35:57.55161106Z"} +2026/03/22 07:36:02 ───────────────────────────────────────────────── +2026/03/22 07:36:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:36:07 [log_collector] {"stage_name":"log_collector","events_processed":10223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2044.6,"last_update":"2026-03-22T07:36:02.367959262Z"} +2026/03/22 07:36:07 [metric_collector] {"stage_name":"metric_collector","events_processed":5674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1134.8,"last_update":"2026-03-22T07:36:02.368194914Z"} +2026/03/22 07:36:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:36:02.376901617Z"} +2026/03/22 07:36:07 [detection_layer] {"stage_name":"detection_layer","events_processed":189,"events_dropped":0,"avg_latency_ms":19.403288305404235,"throughput_eps":0,"last_update":"2026-03-22T07:36:02.479104368Z"} +2026/03/22 07:36:07 [transform_engine] {"stage_name":"transform_engine","events_processed":189,"events_dropped":0,"avg_latency_ms":99.18985190785133,"throughput_eps":0,"last_update":"2026-03-22T07:36:02.479117583Z"} +2026/03/22 07:36:07 ───────────────────────────────────────────────── +2026/03/22 07:36:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:36:12 [log_collector] {"stage_name":"log_collector","events_processed":10223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2044.6,"last_update":"2026-03-22T07:36:07.367983232Z"} +2026/03/22 07:36:12 [metric_collector] {"stage_name":"metric_collector","events_processed":5679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1135.8,"last_update":"2026-03-22T07:36:07.368672182Z"} +2026/03/22 07:36:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:36:07.374661219Z"} +2026/03/22 07:36:12 [detection_layer] {"stage_name":"detection_layer","events_processed":189,"events_dropped":0,"avg_latency_ms":19.403288305404235,"throughput_eps":0,"last_update":"2026-03-22T07:36:07.479845932Z"} +2026/03/22 07:36:12 [transform_engine] {"stage_name":"transform_engine","events_processed":189,"events_dropped":0,"avg_latency_ms":99.18985190785133,"throughput_eps":0,"last_update":"2026-03-22T07:36:07.479859819Z"} +2026/03/22 07:36:12 ───────────────────────────────────────────────── +2026/03/22 07:36:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:36:17 [log_collector] {"stage_name":"log_collector","events_processed":10234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2046.8,"last_update":"2026-03-22T07:36:12.368470841Z"} +2026/03/22 07:36:17 [metric_collector] {"stage_name":"metric_collector","events_processed":5684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1136.8,"last_update":"2026-03-22T07:36:12.368815371Z"} +2026/03/22 07:36:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2276,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:36:12.378270359Z"} +2026/03/22 07:36:17 [detection_layer] {"stage_name":"detection_layer","events_processed":189,"events_dropped":0,"avg_latency_ms":19.403288305404235,"throughput_eps":0,"last_update":"2026-03-22T07:36:12.479580126Z"} +2026/03/22 07:36:17 [transform_engine] {"stage_name":"transform_engine","events_processed":189,"events_dropped":0,"avg_latency_ms":99.18985190785133,"throughput_eps":0,"last_update":"2026-03-22T07:36:12.479598481Z"} +2026/03/22 07:36:17 ───────────────────────────────────────────────── +2026/03/22 07:36:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:36:22 [log_collector] {"stage_name":"log_collector","events_processed":10250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2050,"last_update":"2026-03-22T07:36:22.368663237Z"} +2026/03/22 07:36:22 [metric_collector] {"stage_name":"metric_collector","events_processed":5689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1137.8,"last_update":"2026-03-22T07:36:17.368993155Z"} +2026/03/22 07:36:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:36:17.377770964Z"} +2026/03/22 07:36:22 [detection_layer] {"stage_name":"detection_layer","events_processed":189,"events_dropped":0,"avg_latency_ms":19.403288305404235,"throughput_eps":0,"last_update":"2026-03-22T07:36:17.479090721Z"} +2026/03/22 07:36:22 [transform_engine] {"stage_name":"transform_engine","events_processed":189,"events_dropped":0,"avg_latency_ms":99.18985190785133,"throughput_eps":0,"last_update":"2026-03-22T07:36:17.479102293Z"} +2026/03/22 07:36:22 ───────────────────────────────────────────────── +2026/03/22 07:36:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:36:27 [transform_engine] {"stage_name":"transform_engine","events_processed":189,"events_dropped":0,"avg_latency_ms":99.18985190785133,"throughput_eps":0,"last_update":"2026-03-22T07:36:22.479021772Z"} +2026/03/22 07:36:27 [log_collector] {"stage_name":"log_collector","events_processed":10250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2050,"last_update":"2026-03-22T07:36:22.368663237Z"} +2026/03/22 07:36:27 [metric_collector] {"stage_name":"metric_collector","events_processed":5694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1138.8,"last_update":"2026-03-22T07:36:22.368960527Z"} +2026/03/22 07:36:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:36:22.375768071Z"} +2026/03/22 07:36:27 [detection_layer] {"stage_name":"detection_layer","events_processed":189,"events_dropped":0,"avg_latency_ms":19.403288305404235,"throughput_eps":0,"last_update":"2026-03-22T07:36:22.478998357Z"} +2026/03/22 07:36:27 ───────────────────────────────────────────────── +2026/03/22 07:36:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:36:32 [log_collector] {"stage_name":"log_collector","events_processed":10263,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2052.6,"last_update":"2026-03-22T07:36:27.368738928Z"} +2026/03/22 07:36:32 [metric_collector] {"stage_name":"metric_collector","events_processed":5699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1139.8,"last_update":"2026-03-22T07:36:27.369020226Z"} +2026/03/22 07:36:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:36:27.374849567Z"} +2026/03/22 07:36:32 [detection_layer] {"stage_name":"detection_layer","events_processed":189,"events_dropped":0,"avg_latency_ms":19.403288305404235,"throughput_eps":0,"last_update":"2026-03-22T07:36:27.479131336Z"} +2026/03/22 07:36:32 [transform_engine] {"stage_name":"transform_engine","events_processed":190,"events_dropped":0,"avg_latency_ms":516.364215126281,"throughput_eps":0,"last_update":"2026-03-22T07:36:29.664212081Z"} +2026/03/22 07:36:32 ───────────────────────────────────────────────── +2026/03/22 07:36:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:36:37 [log_collector] {"stage_name":"log_collector","events_processed":10264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2052.8,"last_update":"2026-03-22T07:36:32.367988395Z"} +2026/03/22 07:36:37 [metric_collector] {"stage_name":"metric_collector","events_processed":5704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1140.8,"last_update":"2026-03-22T07:36:32.36837704Z"} +2026/03/22 07:36:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:36:32.376950678Z"} +2026/03/22 07:36:37 [detection_layer] {"stage_name":"detection_layer","events_processed":190,"events_dropped":0,"avg_latency_ms":18.16707584432339,"throughput_eps":0,"last_update":"2026-03-22T07:36:32.479121852Z"} +2026/03/22 07:36:37 [transform_engine] {"stage_name":"transform_engine","events_processed":190,"events_dropped":0,"avg_latency_ms":516.364215126281,"throughput_eps":0,"last_update":"2026-03-22T07:36:32.479135269Z"} +2026/03/22 07:36:37 ───────────────────────────────────────────────── +2026/03/22 07:36:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:36:42 [log_collector] {"stage_name":"log_collector","events_processed":10264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2052.8,"last_update":"2026-03-22T07:36:37.368972819Z"} +2026/03/22 07:36:42 [metric_collector] {"stage_name":"metric_collector","events_processed":5709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1141.8,"last_update":"2026-03-22T07:36:37.369101166Z"} +2026/03/22 07:36:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2286,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:36:37.377984027Z"} +2026/03/22 07:36:42 [detection_layer] {"stage_name":"detection_layer","events_processed":190,"events_dropped":0,"avg_latency_ms":18.16707584432339,"throughput_eps":0,"last_update":"2026-03-22T07:36:37.479262881Z"} +2026/03/22 07:36:42 [transform_engine] {"stage_name":"transform_engine","events_processed":190,"events_dropped":0,"avg_latency_ms":516.364215126281,"throughput_eps":0,"last_update":"2026-03-22T07:36:37.479277238Z"} +2026/03/22 07:36:42 ───────────────────────────────────────────────── +2026/03/22 07:36:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:36:47 [log_collector] {"stage_name":"log_collector","events_processed":10264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2052.8,"last_update":"2026-03-22T07:36:42.367972501Z"} +2026/03/22 07:36:47 [metric_collector] {"stage_name":"metric_collector","events_processed":5714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1142.8,"last_update":"2026-03-22T07:36:42.368291002Z"} +2026/03/22 07:36:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:36:42.377457877Z"} +2026/03/22 07:36:47 [detection_layer] {"stage_name":"detection_layer","events_processed":190,"events_dropped":0,"avg_latency_ms":18.16707584432339,"throughput_eps":0,"last_update":"2026-03-22T07:36:42.479657435Z"} +2026/03/22 07:36:47 [transform_engine] {"stage_name":"transform_engine","events_processed":190,"events_dropped":0,"avg_latency_ms":516.364215126281,"throughput_eps":0,"last_update":"2026-03-22T07:36:42.479670289Z"} +2026/03/22 07:36:47 ───────────────────────────────────────────────── +2026/03/22 07:36:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:36:52 [transform_engine] {"stage_name":"transform_engine","events_processed":190,"events_dropped":0,"avg_latency_ms":516.364215126281,"throughput_eps":0,"last_update":"2026-03-22T07:36:47.479408318Z"} +2026/03/22 07:36:52 [log_collector] {"stage_name":"log_collector","events_processed":10264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2052.8,"last_update":"2026-03-22T07:36:47.36896788Z"} +2026/03/22 07:36:52 [metric_collector] {"stage_name":"metric_collector","events_processed":5719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1143.8,"last_update":"2026-03-22T07:36:47.369066359Z"} +2026/03/22 07:36:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:36:47.378021949Z"} +2026/03/22 07:36:52 [detection_layer] {"stage_name":"detection_layer","events_processed":190,"events_dropped":0,"avg_latency_ms":18.16707584432339,"throughput_eps":0,"last_update":"2026-03-22T07:36:47.479391897Z"} +2026/03/22 07:36:52 ───────────────────────────────────────────────── +2026/03/22 07:36:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:36:57 [log_collector] {"stage_name":"log_collector","events_processed":10264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2052.8,"last_update":"2026-03-22T07:36:52.368629236Z"} +2026/03/22 07:36:57 [metric_collector] {"stage_name":"metric_collector","events_processed":5724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1144.8,"last_update":"2026-03-22T07:36:52.368608506Z"} +2026/03/22 07:36:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:36:52.377454095Z"} +2026/03/22 07:36:57 [detection_layer] {"stage_name":"detection_layer","events_processed":190,"events_dropped":0,"avg_latency_ms":18.16707584432339,"throughput_eps":0,"last_update":"2026-03-22T07:36:52.479675773Z"} +2026/03/22 07:36:57 [transform_engine] {"stage_name":"transform_engine","events_processed":190,"events_dropped":0,"avg_latency_ms":516.364215126281,"throughput_eps":0,"last_update":"2026-03-22T07:36:52.47968938Z"} +2026/03/22 07:36:57 ───────────────────────────────────────────────── +2026/03/22 07:37:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:37:02 [transform_engine] {"stage_name":"transform_engine","events_processed":191,"events_dropped":0,"avg_latency_ms":436.63149170102486,"throughput_eps":0,"last_update":"2026-03-22T07:36:57.596797577Z"} +2026/03/22 07:37:02 [log_collector] {"stage_name":"log_collector","events_processed":10264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2052.8,"last_update":"2026-03-22T07:36:57.36872724Z"} +2026/03/22 07:37:02 [metric_collector] {"stage_name":"metric_collector","events_processed":5729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1145.8,"last_update":"2026-03-22T07:36:57.369161332Z"} +2026/03/22 07:37:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:36:57.377850401Z"} +2026/03/22 07:37:02 [detection_layer] {"stage_name":"detection_layer","events_processed":190,"events_dropped":0,"avg_latency_ms":18.16707584432339,"throughput_eps":0,"last_update":"2026-03-22T07:36:57.479081791Z"} +2026/03/22 07:37:02 ───────────────────────────────────────────────── +2026/03/22 07:37:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:37:07 [log_collector] {"stage_name":"log_collector","events_processed":10264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2052.8,"last_update":"2026-03-22T07:37:02.368733823Z"} +2026/03/22 07:37:07 [metric_collector] {"stage_name":"metric_collector","events_processed":5734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1146.8,"last_update":"2026-03-22T07:37:02.368920951Z"} +2026/03/22 07:37:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:37:02.375797166Z"} +2026/03/22 07:37:07 [detection_layer] {"stage_name":"detection_layer","events_processed":191,"events_dropped":0,"avg_latency_ms":18.965051675458714,"throughput_eps":0,"last_update":"2026-03-22T07:37:02.478950148Z"} +2026/03/22 07:37:07 [transform_engine] {"stage_name":"transform_engine","events_processed":191,"events_dropped":0,"avg_latency_ms":436.63149170102486,"throughput_eps":0,"last_update":"2026-03-22T07:37:02.478938996Z"} +2026/03/22 07:37:07 ───────────────────────────────────────────────── +2026/03/22 07:37:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:37:12 [log_collector] {"stage_name":"log_collector","events_processed":10264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2052.8,"last_update":"2026-03-22T07:37:07.368340291Z"} +2026/03/22 07:37:12 [metric_collector] {"stage_name":"metric_collector","events_processed":5739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1147.8,"last_update":"2026-03-22T07:37:07.368548841Z"} +2026/03/22 07:37:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:37:07.37886636Z"} +2026/03/22 07:37:12 [detection_layer] {"stage_name":"detection_layer","events_processed":191,"events_dropped":0,"avg_latency_ms":18.965051675458714,"throughput_eps":0,"last_update":"2026-03-22T07:37:07.479105167Z"} +2026/03/22 07:37:12 [transform_engine] {"stage_name":"transform_engine","events_processed":191,"events_dropped":0,"avg_latency_ms":436.63149170102486,"throughput_eps":0,"last_update":"2026-03-22T07:37:07.479119594Z"} +2026/03/22 07:37:12 ───────────────────────────────────────────────── +2026/03/22 07:37:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:37:17 [transform_engine] {"stage_name":"transform_engine","events_processed":191,"events_dropped":0,"avg_latency_ms":436.63149170102486,"throughput_eps":0,"last_update":"2026-03-22T07:37:12.479485572Z"} +2026/03/22 07:37:17 [log_collector] {"stage_name":"log_collector","events_processed":10264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2052.8,"last_update":"2026-03-22T07:37:12.368457392Z"} +2026/03/22 07:37:17 [metric_collector] {"stage_name":"metric_collector","events_processed":5744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1148.8,"last_update":"2026-03-22T07:37:12.368666373Z"} +2026/03/22 07:37:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:37:12.379292123Z"} +2026/03/22 07:37:17 [detection_layer] {"stage_name":"detection_layer","events_processed":191,"events_dropped":0,"avg_latency_ms":18.965051675458714,"throughput_eps":0,"last_update":"2026-03-22T07:37:12.479469802Z"} +2026/03/22 07:37:17 ───────────────────────────────────────────────── +2026/03/22 07:37:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:37:22 [detection_layer] {"stage_name":"detection_layer","events_processed":191,"events_dropped":0,"avg_latency_ms":18.965051675458714,"throughput_eps":0,"last_update":"2026-03-22T07:37:17.479476664Z"} +2026/03/22 07:37:22 [transform_engine] {"stage_name":"transform_engine","events_processed":191,"events_dropped":0,"avg_latency_ms":436.63149170102486,"throughput_eps":0,"last_update":"2026-03-22T07:37:17.479490191Z"} +2026/03/22 07:37:22 [log_collector] {"stage_name":"log_collector","events_processed":10264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2052.8,"last_update":"2026-03-22T07:37:17.368628371Z"} +2026/03/22 07:37:22 [metric_collector] {"stage_name":"metric_collector","events_processed":5749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1149.8,"last_update":"2026-03-22T07:37:17.368768569Z"} +2026/03/22 07:37:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:37:17.375248405Z"} +2026/03/22 07:37:22 ───────────────────────────────────────────────── +2026/03/22 07:37:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:37:27 [log_collector] {"stage_name":"log_collector","events_processed":10264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2052.8,"last_update":"2026-03-22T07:37:22.36810381Z"} +2026/03/22 07:37:27 [metric_collector] {"stage_name":"metric_collector","events_processed":5754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1150.8,"last_update":"2026-03-22T07:37:22.368679413Z"} +2026/03/22 07:37:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:37:22.378038215Z"} +2026/03/22 07:37:27 [detection_layer] {"stage_name":"detection_layer","events_processed":191,"events_dropped":0,"avg_latency_ms":18.965051675458714,"throughput_eps":0,"last_update":"2026-03-22T07:37:22.479205589Z"} +2026/03/22 07:37:27 [transform_engine] {"stage_name":"transform_engine","events_processed":191,"events_dropped":0,"avg_latency_ms":436.63149170102486,"throughput_eps":0,"last_update":"2026-03-22T07:37:22.47921642Z"} +2026/03/22 07:37:27 ───────────────────────────────────────────────── +Saved state: 11 clusters, 10265 messages, reason: none +2026/03/22 07:37:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:37:32 [log_collector] {"stage_name":"log_collector","events_processed":10264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2052.8,"last_update":"2026-03-22T07:37:27.368703339Z"} +2026/03/22 07:37:32 [metric_collector] {"stage_name":"metric_collector","events_processed":5759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1151.8,"last_update":"2026-03-22T07:37:27.369034352Z"} +2026/03/22 07:37:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:37:27.378060307Z"} +2026/03/22 07:37:32 [detection_layer] {"stage_name":"detection_layer","events_processed":191,"events_dropped":0,"avg_latency_ms":18.965051675458714,"throughput_eps":0,"last_update":"2026-03-22T07:37:27.479303294Z"} +2026/03/22 07:37:32 [transform_engine] {"stage_name":"transform_engine","events_processed":192,"events_dropped":0,"avg_latency_ms":362.8903495608199,"throughput_eps":0,"last_update":"2026-03-22T07:37:27.547243723Z"} +2026/03/22 07:37:32 ───────────────────────────────────────────────── +2026/03/22 07:37:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:37:37 [log_collector] {"stage_name":"log_collector","events_processed":10269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2053.8,"last_update":"2026-03-22T07:37:32.367957926Z"} +2026/03/22 07:37:37 [metric_collector] {"stage_name":"metric_collector","events_processed":5764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1152.8,"last_update":"2026-03-22T07:37:32.368200171Z"} +2026/03/22 07:37:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:37:32.380088299Z"} +2026/03/22 07:37:37 [detection_layer] {"stage_name":"detection_layer","events_processed":192,"events_dropped":0,"avg_latency_ms":19.38956834036697,"throughput_eps":0,"last_update":"2026-03-22T07:37:32.479266059Z"} +2026/03/22 07:37:37 [transform_engine] {"stage_name":"transform_engine","events_processed":192,"events_dropped":0,"avg_latency_ms":362.8903495608199,"throughput_eps":0,"last_update":"2026-03-22T07:37:32.479285326Z"} +2026/03/22 07:37:37 ───────────────────────────────────────────────── +2026/03/22 07:37:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:37:42 [log_collector] {"stage_name":"log_collector","events_processed":10269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2053.8,"last_update":"2026-03-22T07:37:37.368868943Z"} +2026/03/22 07:37:42 [metric_collector] {"stage_name":"metric_collector","events_processed":5769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1153.8,"last_update":"2026-03-22T07:37:37.36922249Z"} +2026/03/22 07:37:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:37:37.377169096Z"} +2026/03/22 07:37:42 [detection_layer] {"stage_name":"detection_layer","events_processed":192,"events_dropped":0,"avg_latency_ms":19.38956834036697,"throughput_eps":0,"last_update":"2026-03-22T07:37:37.479410456Z"} +2026/03/22 07:37:42 [transform_engine] {"stage_name":"transform_engine","events_processed":192,"events_dropped":0,"avg_latency_ms":362.8903495608199,"throughput_eps":0,"last_update":"2026-03-22T07:37:37.479387792Z"} +2026/03/22 07:37:42 ───────────────────────────────────────────────── +2026/03/22 07:37:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:37:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:37:42.376626854Z"} +2026/03/22 07:37:47 [detection_layer] {"stage_name":"detection_layer","events_processed":192,"events_dropped":0,"avg_latency_ms":19.38956834036697,"throughput_eps":0,"last_update":"2026-03-22T07:37:42.479809215Z"} +2026/03/22 07:37:47 [transform_engine] {"stage_name":"transform_engine","events_processed":192,"events_dropped":0,"avg_latency_ms":362.8903495608199,"throughput_eps":0,"last_update":"2026-03-22T07:37:42.479829044Z"} +2026/03/22 07:37:47 [log_collector] {"stage_name":"log_collector","events_processed":10269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2053.8,"last_update":"2026-03-22T07:37:42.367972182Z"} +2026/03/22 07:37:47 [metric_collector] {"stage_name":"metric_collector","events_processed":5774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1154.8,"last_update":"2026-03-22T07:37:42.368279259Z"} +2026/03/22 07:37:47 ───────────────────────────────────────────────── +2026/03/22 07:37:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:37:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:37:47.377863817Z"} +2026/03/22 07:37:52 [detection_layer] {"stage_name":"detection_layer","events_processed":192,"events_dropped":0,"avg_latency_ms":19.38956834036697,"throughput_eps":0,"last_update":"2026-03-22T07:37:47.479072667Z"} +2026/03/22 07:37:52 [transform_engine] {"stage_name":"transform_engine","events_processed":192,"events_dropped":0,"avg_latency_ms":362.8903495608199,"throughput_eps":0,"last_update":"2026-03-22T07:37:47.479101562Z"} +2026/03/22 07:37:52 [log_collector] {"stage_name":"log_collector","events_processed":10269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2053.8,"last_update":"2026-03-22T07:37:47.36869035Z"} +2026/03/22 07:37:52 [metric_collector] {"stage_name":"metric_collector","events_processed":5779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1155.8,"last_update":"2026-03-22T07:37:47.369058656Z"} +2026/03/22 07:37:52 ───────────────────────────────────────────────── +2026/03/22 07:37:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:37:57 [log_collector] {"stage_name":"log_collector","events_processed":10269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2053.8,"last_update":"2026-03-22T07:37:57.368633527Z"} +2026/03/22 07:37:57 [metric_collector] {"stage_name":"metric_collector","events_processed":5784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1156.8,"last_update":"2026-03-22T07:37:52.368896335Z"} +2026/03/22 07:37:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:37:52.380538041Z"} +2026/03/22 07:37:57 [detection_layer] {"stage_name":"detection_layer","events_processed":192,"events_dropped":0,"avg_latency_ms":19.38956834036697,"throughput_eps":0,"last_update":"2026-03-22T07:37:52.480362267Z"} +2026/03/22 07:37:57 [transform_engine] {"stage_name":"transform_engine","events_processed":192,"events_dropped":0,"avg_latency_ms":362.8903495608199,"throughput_eps":0,"last_update":"2026-03-22T07:37:52.480336398Z"} +2026/03/22 07:37:57 ───────────────────────────────────────────────── +2026/03/22 07:38:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:38:02 [transform_engine] {"stage_name":"transform_engine","events_processed":193,"events_dropped":0,"avg_latency_ms":313.26834404865593,"throughput_eps":0,"last_update":"2026-03-22T07:37:57.594108623Z"} +2026/03/22 07:38:02 [log_collector] {"stage_name":"log_collector","events_processed":10269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2053.8,"last_update":"2026-03-22T07:37:57.368633527Z"} +2026/03/22 07:38:02 [metric_collector] {"stage_name":"metric_collector","events_processed":5789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1157.8,"last_update":"2026-03-22T07:37:57.368987896Z"} +2026/03/22 07:38:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:37:57.376161972Z"} +2026/03/22 07:38:02 [detection_layer] {"stage_name":"detection_layer","events_processed":192,"events_dropped":0,"avg_latency_ms":19.38956834036697,"throughput_eps":0,"last_update":"2026-03-22T07:37:57.479345574Z"} +2026/03/22 07:38:02 ───────────────────────────────────────────────── +2026/03/22 07:38:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:38:07 [transform_engine] {"stage_name":"transform_engine","events_processed":193,"events_dropped":0,"avg_latency_ms":313.26834404865593,"throughput_eps":0,"last_update":"2026-03-22T07:38:02.479491225Z"} +2026/03/22 07:38:07 [log_collector] {"stage_name":"log_collector","events_processed":10269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2053.8,"last_update":"2026-03-22T07:38:02.368783958Z"} +2026/03/22 07:38:07 [metric_collector] {"stage_name":"metric_collector","events_processed":5794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1158.8,"last_update":"2026-03-22T07:38:02.369005552Z"} +2026/03/22 07:38:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2320,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:38:02.377285507Z"} +2026/03/22 07:38:07 [detection_layer] {"stage_name":"detection_layer","events_processed":193,"events_dropped":0,"avg_latency_ms":18.527080272293578,"throughput_eps":0,"last_update":"2026-03-22T07:38:02.479476076Z"} +2026/03/22 07:38:07 ───────────────────────────────────────────────── +2026/03/22 07:38:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:38:12 [log_collector] {"stage_name":"log_collector","events_processed":10269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2053.8,"last_update":"2026-03-22T07:38:07.368857022Z"} +2026/03/22 07:38:12 [metric_collector] {"stage_name":"metric_collector","events_processed":5799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1159.8,"last_update":"2026-03-22T07:38:07.369098434Z"} +2026/03/22 07:38:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:38:07.376759081Z"} +2026/03/22 07:38:12 [detection_layer] {"stage_name":"detection_layer","events_processed":193,"events_dropped":0,"avg_latency_ms":18.527080272293578,"throughput_eps":0,"last_update":"2026-03-22T07:38:07.47996775Z"} +2026/03/22 07:38:12 [transform_engine] {"stage_name":"transform_engine","events_processed":193,"events_dropped":0,"avg_latency_ms":313.26834404865593,"throughput_eps":0,"last_update":"2026-03-22T07:38:07.478867663Z"} +2026/03/22 07:38:12 ───────────────────────────────────────────────── +2026/03/22 07:38:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:38:17 [detection_layer] {"stage_name":"detection_layer","events_processed":193,"events_dropped":0,"avg_latency_ms":18.527080272293578,"throughput_eps":0,"last_update":"2026-03-22T07:38:12.47994733Z"} +2026/03/22 07:38:17 [transform_engine] {"stage_name":"transform_engine","events_processed":193,"events_dropped":0,"avg_latency_ms":313.26834404865593,"throughput_eps":0,"last_update":"2026-03-22T07:38:12.478846632Z"} +2026/03/22 07:38:17 [log_collector] {"stage_name":"log_collector","events_processed":10280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2056,"last_update":"2026-03-22T07:38:17.368627542Z"} +2026/03/22 07:38:17 [metric_collector] {"stage_name":"metric_collector","events_processed":5804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1160.8,"last_update":"2026-03-22T07:38:12.368296047Z"} +2026/03/22 07:38:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:38:12.376720368Z"} +2026/03/22 07:38:17 ───────────────────────────────────────────────── +2026/03/22 07:38:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:38:22 [log_collector] {"stage_name":"log_collector","events_processed":10280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2056,"last_update":"2026-03-22T07:38:17.368627542Z"} +2026/03/22 07:38:22 [metric_collector] {"stage_name":"metric_collector","events_processed":5809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1161.8,"last_update":"2026-03-22T07:38:17.369498982Z"} +2026/03/22 07:38:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:38:17.376196273Z"} +2026/03/22 07:38:22 [detection_layer] {"stage_name":"detection_layer","events_processed":193,"events_dropped":0,"avg_latency_ms":18.527080272293578,"throughput_eps":0,"last_update":"2026-03-22T07:38:17.479468533Z"} +2026/03/22 07:38:22 [transform_engine] {"stage_name":"transform_engine","events_processed":193,"events_dropped":0,"avg_latency_ms":313.26834404865593,"throughput_eps":0,"last_update":"2026-03-22T07:38:17.4794044Z"} +2026/03/22 07:38:22 ───────────────────────────────────────────────── +2026/03/22 07:38:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:38:27 [log_collector] {"stage_name":"log_collector","events_processed":10318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2063.6,"last_update":"2026-03-22T07:38:22.368869732Z"} +2026/03/22 07:38:27 [metric_collector] {"stage_name":"metric_collector","events_processed":5819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1163.8,"last_update":"2026-03-22T07:38:27.368112267Z"} +2026/03/22 07:38:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:38:22.37536072Z"} +2026/03/22 07:38:27 [detection_layer] {"stage_name":"detection_layer","events_processed":193,"events_dropped":0,"avg_latency_ms":18.527080272293578,"throughput_eps":0,"last_update":"2026-03-22T07:38:22.479631331Z"} +2026/03/22 07:38:27 [transform_engine] {"stage_name":"transform_engine","events_processed":193,"events_dropped":0,"avg_latency_ms":313.26834404865593,"throughput_eps":0,"last_update":"2026-03-22T07:38:22.479654856Z"} +2026/03/22 07:38:27 ───────────────────────────────────────────────── +2026/03/22 07:38:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:38:32 [log_collector] {"stage_name":"log_collector","events_processed":10623,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2124.6,"last_update":"2026-03-22T07:38:32.367997972Z"} +2026/03/22 07:38:32 [metric_collector] {"stage_name":"metric_collector","events_processed":5819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1163.8,"last_update":"2026-03-22T07:38:27.368112267Z"} +2026/03/22 07:38:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2330,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:38:27.379613032Z"} +2026/03/22 07:38:32 [detection_layer] {"stage_name":"detection_layer","events_processed":193,"events_dropped":0,"avg_latency_ms":18.527080272293578,"throughput_eps":0,"last_update":"2026-03-22T07:38:27.479717782Z"} +2026/03/22 07:38:32 [transform_engine] {"stage_name":"transform_engine","events_processed":194,"events_dropped":0,"avg_latency_ms":282.97203943892475,"throughput_eps":0,"last_update":"2026-03-22T07:38:27.641519742Z"} +2026/03/22 07:38:32 ───────────────────────────────────────────────── +2026/03/22 07:38:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:38:37 [log_collector] {"stage_name":"log_collector","events_processed":10623,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2124.6,"last_update":"2026-03-22T07:38:32.367997972Z"} +2026/03/22 07:38:37 [metric_collector] {"stage_name":"metric_collector","events_processed":5824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1164.8,"last_update":"2026-03-22T07:38:32.368846819Z"} +2026/03/22 07:38:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:38:32.374724821Z"} +2026/03/22 07:38:37 [detection_layer] {"stage_name":"detection_layer","events_processed":194,"events_dropped":0,"avg_latency_ms":18.241827417834863,"throughput_eps":0,"last_update":"2026-03-22T07:38:32.479046579Z"} +2026/03/22 07:38:37 [transform_engine] {"stage_name":"transform_engine","events_processed":194,"events_dropped":0,"avg_latency_ms":282.97203943892475,"throughput_eps":0,"last_update":"2026-03-22T07:38:32.478954342Z"} +2026/03/22 07:38:37 ───────────────────────────────────────────────── +2026/03/22 07:38:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:38:42 [log_collector] {"stage_name":"log_collector","events_processed":10623,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2124.6,"last_update":"2026-03-22T07:38:42.368227078Z"} +2026/03/22 07:38:42 [metric_collector] {"stage_name":"metric_collector","events_processed":5829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1165.8,"last_update":"2026-03-22T07:38:37.368675944Z"} +2026/03/22 07:38:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:38:37.379466839Z"} +2026/03/22 07:38:42 [detection_layer] {"stage_name":"detection_layer","events_processed":194,"events_dropped":0,"avg_latency_ms":18.241827417834863,"throughput_eps":0,"last_update":"2026-03-22T07:38:37.479857234Z"} +2026/03/22 07:38:42 [transform_engine] {"stage_name":"transform_engine","events_processed":194,"events_dropped":0,"avg_latency_ms":282.97203943892475,"throughput_eps":0,"last_update":"2026-03-22T07:38:37.479747113Z"} +2026/03/22 07:38:42 ───────────────────────────────────────────────── +2026/03/22 07:38:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:38:47 [log_collector] {"stage_name":"log_collector","events_processed":10623,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2124.6,"last_update":"2026-03-22T07:38:47.368490062Z"} +2026/03/22 07:38:47 [metric_collector] {"stage_name":"metric_collector","events_processed":5834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1166.8,"last_update":"2026-03-22T07:38:42.368655097Z"} +2026/03/22 07:38:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:38:42.378452048Z"} +2026/03/22 07:38:47 [detection_layer] {"stage_name":"detection_layer","events_processed":194,"events_dropped":0,"avg_latency_ms":18.241827417834863,"throughput_eps":0,"last_update":"2026-03-22T07:38:42.479628218Z"} +2026/03/22 07:38:47 [transform_engine] {"stage_name":"transform_engine","events_processed":194,"events_dropped":0,"avg_latency_ms":282.97203943892475,"throughput_eps":0,"last_update":"2026-03-22T07:38:42.479667704Z"} +2026/03/22 07:38:47 ───────────────────────────────────────────────── +2026/03/22 07:38:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:38:52 [transform_engine] {"stage_name":"transform_engine","events_processed":194,"events_dropped":0,"avg_latency_ms":282.97203943892475,"throughput_eps":0,"last_update":"2026-03-22T07:38:47.479053208Z"} +2026/03/22 07:38:52 [log_collector] {"stage_name":"log_collector","events_processed":10623,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2124.6,"last_update":"2026-03-22T07:38:47.368490062Z"} +2026/03/22 07:38:52 [metric_collector] {"stage_name":"metric_collector","events_processed":5839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1167.8,"last_update":"2026-03-22T07:38:47.369071577Z"} +2026/03/22 07:38:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:38:47.377817214Z"} +2026/03/22 07:38:52 [detection_layer] {"stage_name":"detection_layer","events_processed":194,"events_dropped":0,"avg_latency_ms":18.241827417834863,"throughput_eps":0,"last_update":"2026-03-22T07:38:47.479083867Z"} +2026/03/22 07:38:52 ───────────────────────────────────────────────── +2026/03/22 07:38:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:38:57 [log_collector] {"stage_name":"log_collector","events_processed":10623,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2124.6,"last_update":"2026-03-22T07:38:52.368310654Z"} +2026/03/22 07:38:57 [metric_collector] {"stage_name":"metric_collector","events_processed":5844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1168.8,"last_update":"2026-03-22T07:38:52.368708816Z"} +2026/03/22 07:38:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:38:52.377665878Z"} +2026/03/22 07:38:57 [detection_layer] {"stage_name":"detection_layer","events_processed":194,"events_dropped":0,"avg_latency_ms":18.241827417834863,"throughput_eps":0,"last_update":"2026-03-22T07:38:52.479998912Z"} +2026/03/22 07:38:57 [transform_engine] {"stage_name":"transform_engine","events_processed":194,"events_dropped":0,"avg_latency_ms":282.97203943892475,"throughput_eps":0,"last_update":"2026-03-22T07:38:52.478842608Z"} +2026/03/22 07:38:57 ───────────────────────────────────────────────── +2026/03/22 07:39:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:39:02 [transform_engine] {"stage_name":"transform_engine","events_processed":195,"events_dropped":0,"avg_latency_ms":248.32688335113983,"throughput_eps":0,"last_update":"2026-03-22T07:38:57.589156025Z"} +2026/03/22 07:39:02 [log_collector] {"stage_name":"log_collector","events_processed":10623,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2124.6,"last_update":"2026-03-22T07:39:02.368011487Z"} +2026/03/22 07:39:02 [metric_collector] {"stage_name":"metric_collector","events_processed":5849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1169.8,"last_update":"2026-03-22T07:38:57.369090169Z"} +2026/03/22 07:39:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2342,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:38:57.377178496Z"} +2026/03/22 07:39:02 [detection_layer] {"stage_name":"detection_layer","events_processed":194,"events_dropped":0,"avg_latency_ms":18.241827417834863,"throughput_eps":0,"last_update":"2026-03-22T07:38:57.480390195Z"} +2026/03/22 07:39:02 ───────────────────────────────────────────────── +2026/03/22 07:39:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:39:07 [metric_collector] {"stage_name":"metric_collector","events_processed":5854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1170.8,"last_update":"2026-03-22T07:39:02.368240456Z"} +2026/03/22 07:39:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:39:02.377962734Z"} +2026/03/22 07:39:07 [detection_layer] {"stage_name":"detection_layer","events_processed":195,"events_dropped":0,"avg_latency_ms":19.11712513426789,"throughput_eps":0,"last_update":"2026-03-22T07:39:02.479213795Z"} +2026/03/22 07:39:07 [transform_engine] {"stage_name":"transform_engine","events_processed":195,"events_dropped":0,"avg_latency_ms":248.32688335113983,"throughput_eps":0,"last_update":"2026-03-22T07:39:02.479188377Z"} +2026/03/22 07:39:07 [log_collector] {"stage_name":"log_collector","events_processed":10623,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2124.6,"last_update":"2026-03-22T07:39:02.368011487Z"} +2026/03/22 07:39:07 ───────────────────────────────────────────────── +Saved state: 11 clusters, 10624 messages, reason: none +2026/03/22 07:39:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:39:12 [transform_engine] {"stage_name":"transform_engine","events_processed":195,"events_dropped":0,"avg_latency_ms":248.32688335113983,"throughput_eps":0,"last_update":"2026-03-22T07:39:07.478953422Z"} +2026/03/22 07:39:12 [log_collector] {"stage_name":"log_collector","events_processed":10623,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2124.6,"last_update":"2026-03-22T07:39:07.368821546Z"} +2026/03/22 07:39:12 [metric_collector] {"stage_name":"metric_collector","events_processed":5859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1171.8,"last_update":"2026-03-22T07:39:07.369146639Z"} +2026/03/22 07:39:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:39:07.377809416Z"} +2026/03/22 07:39:12 [detection_layer] {"stage_name":"detection_layer","events_processed":195,"events_dropped":0,"avg_latency_ms":19.11712513426789,"throughput_eps":0,"last_update":"2026-03-22T07:39:07.479054405Z"} +2026/03/22 07:39:12 ───────────────────────────────────────────────── +2026/03/22 07:39:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:39:17 [detection_layer] {"stage_name":"detection_layer","events_processed":195,"events_dropped":0,"avg_latency_ms":19.11712513426789,"throughput_eps":0,"last_update":"2026-03-22T07:39:12.479390454Z"} +2026/03/22 07:39:17 [transform_engine] {"stage_name":"transform_engine","events_processed":195,"events_dropped":0,"avg_latency_ms":248.32688335113983,"throughput_eps":0,"last_update":"2026-03-22T07:39:12.479403398Z"} +2026/03/22 07:39:17 [log_collector] {"stage_name":"log_collector","events_processed":10626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2125.2,"last_update":"2026-03-22T07:39:12.368568086Z"} +2026/03/22 07:39:17 [metric_collector] {"stage_name":"metric_collector","events_processed":5864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1172.8,"last_update":"2026-03-22T07:39:12.368792636Z"} +2026/03/22 07:39:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:39:12.37609171Z"} +2026/03/22 07:39:17 ───────────────────────────────────────────────── +2026/03/22 07:39:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:39:22 [log_collector] {"stage_name":"log_collector","events_processed":10637,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2127.4,"last_update":"2026-03-22T07:39:22.368555511Z"} +2026/03/22 07:39:22 [metric_collector] {"stage_name":"metric_collector","events_processed":5869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1173.8,"last_update":"2026-03-22T07:39:17.36907738Z"} +2026/03/22 07:39:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2350,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:39:17.382270527Z"} +2026/03/22 07:39:22 [detection_layer] {"stage_name":"detection_layer","events_processed":195,"events_dropped":0,"avg_latency_ms":19.11712513426789,"throughput_eps":0,"last_update":"2026-03-22T07:39:17.479673334Z"} +2026/03/22 07:39:22 [transform_engine] {"stage_name":"transform_engine","events_processed":195,"events_dropped":0,"avg_latency_ms":248.32688335113983,"throughput_eps":0,"last_update":"2026-03-22T07:39:17.479785579Z"} +2026/03/22 07:39:22 ───────────────────────────────────────────────── +2026/03/22 07:39:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:39:27 [log_collector] {"stage_name":"log_collector","events_processed":10637,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2127.4,"last_update":"2026-03-22T07:39:22.368555511Z"} +2026/03/22 07:39:27 [metric_collector] {"stage_name":"metric_collector","events_processed":5874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1174.8,"last_update":"2026-03-22T07:39:22.369258849Z"} +2026/03/22 07:39:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:39:22.378753028Z"} +2026/03/22 07:39:27 [detection_layer] {"stage_name":"detection_layer","events_processed":195,"events_dropped":0,"avg_latency_ms":19.11712513426789,"throughput_eps":0,"last_update":"2026-03-22T07:39:22.479087421Z"} +2026/03/22 07:39:27 [transform_engine] {"stage_name":"transform_engine","events_processed":195,"events_dropped":0,"avg_latency_ms":248.32688335113983,"throughput_eps":0,"last_update":"2026-03-22T07:39:22.479168126Z"} +2026/03/22 07:39:27 ───────────────────────────────────────────────── +2026/03/22 07:39:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:39:32 [log_collector] {"stage_name":"log_collector","events_processed":10644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2128.8,"last_update":"2026-03-22T07:39:27.368018185Z"} +2026/03/22 07:39:32 [metric_collector] {"stage_name":"metric_collector","events_processed":5879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1175.8,"last_update":"2026-03-22T07:39:27.368396169Z"} +2026/03/22 07:39:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:39:27.374418517Z"} +2026/03/22 07:39:32 [detection_layer] {"stage_name":"detection_layer","events_processed":195,"events_dropped":0,"avg_latency_ms":19.11712513426789,"throughput_eps":0,"last_update":"2026-03-22T07:39:27.47966474Z"} +2026/03/22 07:39:32 [transform_engine] {"stage_name":"transform_engine","events_processed":195,"events_dropped":0,"avg_latency_ms":248.32688335113983,"throughput_eps":0,"last_update":"2026-03-22T07:39:27.479677725Z"} +2026/03/22 07:39:32 ───────────────────────────────────────────────── +2026/03/22 07:39:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:39:37 [transform_engine] {"stage_name":"transform_engine","events_processed":196,"events_dropped":0,"avg_latency_ms":226.2875640809119,"throughput_eps":0,"last_update":"2026-03-22T07:39:32.479564223Z"} +2026/03/22 07:39:37 [log_collector] {"stage_name":"log_collector","events_processed":10653,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2130.6,"last_update":"2026-03-22T07:39:32.368704065Z"} +2026/03/22 07:39:37 [metric_collector] {"stage_name":"metric_collector","events_processed":5884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1176.8,"last_update":"2026-03-22T07:39:32.369267294Z"} +2026/03/22 07:39:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:39:32.378396945Z"} +2026/03/22 07:39:37 [detection_layer] {"stage_name":"detection_layer","events_processed":196,"events_dropped":0,"avg_latency_ms":17.946372307414315,"throughput_eps":0,"last_update":"2026-03-22T07:39:32.47955255Z"} +2026/03/22 07:39:37 ───────────────────────────────────────────────── +2026/03/22 07:39:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:39:42 [log_collector] {"stage_name":"log_collector","events_processed":10653,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2130.6,"last_update":"2026-03-22T07:39:42.368595696Z"} +2026/03/22 07:39:42 [metric_collector] {"stage_name":"metric_collector","events_processed":5889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1177.8,"last_update":"2026-03-22T07:39:37.369121051Z"} +2026/03/22 07:39:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:39:37.377634082Z"} +2026/03/22 07:39:42 [detection_layer] {"stage_name":"detection_layer","events_processed":196,"events_dropped":0,"avg_latency_ms":17.946372307414315,"throughput_eps":0,"last_update":"2026-03-22T07:39:37.479870326Z"} +2026/03/22 07:39:42 [transform_engine] {"stage_name":"transform_engine","events_processed":196,"events_dropped":0,"avg_latency_ms":226.2875640809119,"throughput_eps":0,"last_update":"2026-03-22T07:39:37.479882138Z"} +2026/03/22 07:39:42 ───────────────────────────────────────────────── +2026/03/22 07:39:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:39:47 [log_collector] {"stage_name":"log_collector","events_processed":10653,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2130.6,"last_update":"2026-03-22T07:39:47.368225272Z"} +2026/03/22 07:39:47 [metric_collector] {"stage_name":"metric_collector","events_processed":5894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1178.8,"last_update":"2026-03-22T07:39:42.368984361Z"} +2026/03/22 07:39:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2360,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:39:42.376751271Z"} +2026/03/22 07:39:47 [detection_layer] {"stage_name":"detection_layer","events_processed":196,"events_dropped":0,"avg_latency_ms":17.946372307414315,"throughput_eps":0,"last_update":"2026-03-22T07:39:42.479987972Z"} +2026/03/22 07:39:47 [transform_engine] {"stage_name":"transform_engine","events_processed":196,"events_dropped":0,"avg_latency_ms":226.2875640809119,"throughput_eps":0,"last_update":"2026-03-22T07:39:42.478892193Z"} +2026/03/22 07:39:47 ───────────────────────────────────────────────── +2026/03/22 07:39:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:39:52 [metric_collector] {"stage_name":"metric_collector","events_processed":5899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1179.8,"last_update":"2026-03-22T07:39:47.368865528Z"} +2026/03/22 07:39:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:39:47.378055085Z"} +2026/03/22 07:39:52 [detection_layer] {"stage_name":"detection_layer","events_processed":196,"events_dropped":0,"avg_latency_ms":17.946372307414315,"throughput_eps":0,"last_update":"2026-03-22T07:39:47.479268689Z"} +2026/03/22 07:39:52 [transform_engine] {"stage_name":"transform_engine","events_processed":196,"events_dropped":0,"avg_latency_ms":226.2875640809119,"throughput_eps":0,"last_update":"2026-03-22T07:39:47.479281854Z"} +2026/03/22 07:39:52 [log_collector] {"stage_name":"log_collector","events_processed":10653,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2130.6,"last_update":"2026-03-22T07:39:47.368225272Z"} +2026/03/22 07:39:52 ───────────────────────────────────────────────── +2026/03/22 07:39:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:39:57 [transform_engine] {"stage_name":"transform_engine","events_processed":196,"events_dropped":0,"avg_latency_ms":226.2875640809119,"throughput_eps":0,"last_update":"2026-03-22T07:39:52.478916832Z"} +2026/03/22 07:39:57 [log_collector] {"stage_name":"log_collector","events_processed":10653,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2130.6,"last_update":"2026-03-22T07:39:52.368777327Z"} +2026/03/22 07:39:57 [metric_collector] {"stage_name":"metric_collector","events_processed":5904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1180.8,"last_update":"2026-03-22T07:39:52.3694155Z"} +2026/03/22 07:39:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:39:52.377760528Z"} +2026/03/22 07:39:57 [detection_layer] {"stage_name":"detection_layer","events_processed":196,"events_dropped":0,"avg_latency_ms":17.946372307414315,"throughput_eps":0,"last_update":"2026-03-22T07:39:52.478974613Z"} +2026/03/22 07:39:57 ───────────────────────────────────────────────── +2026/03/22 07:40:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:40:02 [metric_collector] {"stage_name":"metric_collector","events_processed":5909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1181.8,"last_update":"2026-03-22T07:39:57.368862874Z"} +2026/03/22 07:40:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:39:57.37708129Z"} +2026/03/22 07:40:02 [detection_layer] {"stage_name":"detection_layer","events_processed":196,"events_dropped":0,"avg_latency_ms":17.946372307414315,"throughput_eps":0,"last_update":"2026-03-22T07:39:57.479393518Z"} +2026/03/22 07:40:02 [transform_engine] {"stage_name":"transform_engine","events_processed":196,"events_dropped":0,"avg_latency_ms":226.2875640809119,"throughput_eps":0,"last_update":"2026-03-22T07:39:57.479437823Z"} +2026/03/22 07:40:02 [log_collector] {"stage_name":"log_collector","events_processed":10653,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2130.6,"last_update":"2026-03-22T07:39:57.368194303Z"} +2026/03/22 07:40:02 ───────────────────────────────────────────────── +2026/03/22 07:40:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:40:07 [transform_engine] {"stage_name":"transform_engine","events_processed":197,"events_dropped":0,"avg_latency_ms":203.39575746472954,"throughput_eps":0,"last_update":"2026-03-22T07:40:02.479416868Z"} +2026/03/22 07:40:07 [log_collector] {"stage_name":"log_collector","events_processed":10656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2131.2,"last_update":"2026-03-22T07:40:07.368452865Z"} +2026/03/22 07:40:07 [metric_collector] {"stage_name":"metric_collector","events_processed":5914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1182.8,"last_update":"2026-03-22T07:40:02.369378769Z"} +2026/03/22 07:40:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:40:02.394238877Z"} +2026/03/22 07:40:07 [detection_layer] {"stage_name":"detection_layer","events_processed":197,"events_dropped":0,"avg_latency_ms":18.717938645931454,"throughput_eps":0,"last_update":"2026-03-22T07:40:02.479401389Z"} +2026/03/22 07:40:07 ───────────────────────────────────────────────── +Saved state: 11 clusters, 10667 messages, reason: none +2026/03/22 07:40:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:40:12 [log_collector] {"stage_name":"log_collector","events_processed":10667,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2133.4,"last_update":"2026-03-22T07:40:12.36850506Z"} +2026/03/22 07:40:12 [metric_collector] {"stage_name":"metric_collector","events_processed":5919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1183.8,"last_update":"2026-03-22T07:40:07.368822443Z"} +2026/03/22 07:40:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:40:07.375707353Z"} +2026/03/22 07:40:12 [detection_layer] {"stage_name":"detection_layer","events_processed":197,"events_dropped":0,"avg_latency_ms":18.717938645931454,"throughput_eps":0,"last_update":"2026-03-22T07:40:07.479972733Z"} +2026/03/22 07:40:12 [transform_engine] {"stage_name":"transform_engine","events_processed":197,"events_dropped":0,"avg_latency_ms":203.39575746472954,"throughput_eps":0,"last_update":"2026-03-22T07:40:07.478832849Z"} +2026/03/22 07:40:12 ───────────────────────────────────────────────── +2026/03/22 07:40:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:40:17 [transform_engine] {"stage_name":"transform_engine","events_processed":197,"events_dropped":0,"avg_latency_ms":203.39575746472954,"throughput_eps":0,"last_update":"2026-03-22T07:40:12.479565346Z"} +2026/03/22 07:40:17 [log_collector] {"stage_name":"log_collector","events_processed":10667,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2133.4,"last_update":"2026-03-22T07:40:12.36850506Z"} +2026/03/22 07:40:17 [metric_collector] {"stage_name":"metric_collector","events_processed":5924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1184.8,"last_update":"2026-03-22T07:40:12.368967756Z"} +2026/03/22 07:40:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:40:12.378243136Z"} +2026/03/22 07:40:17 [detection_layer] {"stage_name":"detection_layer","events_processed":197,"events_dropped":0,"avg_latency_ms":18.717938645931454,"throughput_eps":0,"last_update":"2026-03-22T07:40:12.479533766Z"} +2026/03/22 07:40:17 ───────────────────────────────────────────────── +2026/03/22 07:40:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:40:22 [detection_layer] {"stage_name":"detection_layer","events_processed":197,"events_dropped":0,"avg_latency_ms":18.717938645931454,"throughput_eps":0,"last_update":"2026-03-22T07:40:17.479140711Z"} +2026/03/22 07:40:22 [transform_engine] {"stage_name":"transform_engine","events_processed":197,"events_dropped":0,"avg_latency_ms":203.39575746472954,"throughput_eps":0,"last_update":"2026-03-22T07:40:17.479158244Z"} +2026/03/22 07:40:22 [log_collector] {"stage_name":"log_collector","events_processed":10667,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2133.4,"last_update":"2026-03-22T07:40:17.368510038Z"} +2026/03/22 07:40:22 [metric_collector] {"stage_name":"metric_collector","events_processed":5929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1185.8,"last_update":"2026-03-22T07:40:17.368684171Z"} +2026/03/22 07:40:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:40:17.377822308Z"} +2026/03/22 07:40:22 ───────────────────────────────────────────────── +2026/03/22 07:40:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:40:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:40:22.378188836Z"} +2026/03/22 07:40:27 [detection_layer] {"stage_name":"detection_layer","events_processed":197,"events_dropped":0,"avg_latency_ms":18.717938645931454,"throughput_eps":0,"last_update":"2026-03-22T07:40:22.47937818Z"} +2026/03/22 07:40:27 [transform_engine] {"stage_name":"transform_engine","events_processed":197,"events_dropped":0,"avg_latency_ms":203.39575746472954,"throughput_eps":0,"last_update":"2026-03-22T07:40:22.479390223Z"} +2026/03/22 07:40:27 [log_collector] {"stage_name":"log_collector","events_processed":10667,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2133.4,"last_update":"2026-03-22T07:40:27.368866287Z"} +2026/03/22 07:40:27 [metric_collector] {"stage_name":"metric_collector","events_processed":5934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1186.8,"last_update":"2026-03-22T07:40:22.368767336Z"} +2026/03/22 07:40:27 ───────────────────────────────────────────────── +2026/03/22 07:40:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:40:32 [detection_layer] {"stage_name":"detection_layer","events_processed":197,"events_dropped":0,"avg_latency_ms":18.717938645931454,"throughput_eps":0,"last_update":"2026-03-22T07:40:27.478961472Z"} +2026/03/22 07:40:32 [transform_engine] {"stage_name":"transform_engine","events_processed":198,"events_dropped":0,"avg_latency_ms":183.91130997178365,"throughput_eps":0,"last_update":"2026-03-22T07:40:27.584950822Z"} +2026/03/22 07:40:32 [log_collector] {"stage_name":"log_collector","events_processed":10667,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2133.4,"last_update":"2026-03-22T07:40:27.368866287Z"} +2026/03/22 07:40:32 [metric_collector] {"stage_name":"metric_collector","events_processed":5939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1187.8,"last_update":"2026-03-22T07:40:27.369232409Z"} +2026/03/22 07:40:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:40:27.376810537Z"} +2026/03/22 07:40:32 ───────────────────────────────────────────────── +2026/03/22 07:40:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:40:37 [log_collector] {"stage_name":"log_collector","events_processed":10667,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2133.4,"last_update":"2026-03-22T07:40:37.368006879Z"} +2026/03/22 07:40:37 [metric_collector] {"stage_name":"metric_collector","events_processed":5944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1188.8,"last_update":"2026-03-22T07:40:32.368917941Z"} +2026/03/22 07:40:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2380,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:40:32.378386611Z"} +2026/03/22 07:40:37 [detection_layer] {"stage_name":"detection_layer","events_processed":198,"events_dropped":0,"avg_latency_ms":17.905131916745166,"throughput_eps":0,"last_update":"2026-03-22T07:40:32.479751962Z"} +2026/03/22 07:40:37 [transform_engine] {"stage_name":"transform_engine","events_processed":198,"events_dropped":0,"avg_latency_ms":183.91130997178365,"throughput_eps":0,"last_update":"2026-03-22T07:40:32.479695965Z"} +2026/03/22 07:40:37 ───────────────────────────────────────────────── +2026/03/22 07:40:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:40:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:40:37.376999227Z"} +2026/03/22 07:40:42 [detection_layer] {"stage_name":"detection_layer","events_processed":198,"events_dropped":0,"avg_latency_ms":17.905131916745166,"throughput_eps":0,"last_update":"2026-03-22T07:40:37.479396393Z"} +2026/03/22 07:40:42 [transform_engine] {"stage_name":"transform_engine","events_processed":198,"events_dropped":0,"avg_latency_ms":183.91130997178365,"throughput_eps":0,"last_update":"2026-03-22T07:40:37.479448192Z"} +2026/03/22 07:40:42 [log_collector] {"stage_name":"log_collector","events_processed":10667,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2133.4,"last_update":"2026-03-22T07:40:42.368759157Z"} +2026/03/22 07:40:42 [metric_collector] {"stage_name":"metric_collector","events_processed":5949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1189.8,"last_update":"2026-03-22T07:40:37.368912775Z"} +2026/03/22 07:40:42 ───────────────────────────────────────────────── +2026/03/22 07:40:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:40:47 [log_collector] {"stage_name":"log_collector","events_processed":10667,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2133.4,"last_update":"2026-03-22T07:40:47.368008443Z"} +2026/03/22 07:40:47 [metric_collector] {"stage_name":"metric_collector","events_processed":5954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1190.8,"last_update":"2026-03-22T07:40:42.3691939Z"} +2026/03/22 07:40:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:40:42.378585182Z"} +2026/03/22 07:40:47 [detection_layer] {"stage_name":"detection_layer","events_processed":198,"events_dropped":0,"avg_latency_ms":17.905131916745166,"throughput_eps":0,"last_update":"2026-03-22T07:40:42.479866181Z"} +2026/03/22 07:40:47 [transform_engine] {"stage_name":"transform_engine","events_processed":198,"events_dropped":0,"avg_latency_ms":183.91130997178365,"throughput_eps":0,"last_update":"2026-03-22T07:40:42.479824451Z"} +2026/03/22 07:40:47 ───────────────────────────────────────────────── +2026/03/22 07:40:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:40:52 [transform_engine] {"stage_name":"transform_engine","events_processed":198,"events_dropped":0,"avg_latency_ms":183.91130997178365,"throughput_eps":0,"last_update":"2026-03-22T07:40:47.478866248Z"} +2026/03/22 07:40:52 [log_collector] {"stage_name":"log_collector","events_processed":10667,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2133.4,"last_update":"2026-03-22T07:40:52.368153902Z"} +2026/03/22 07:40:52 [metric_collector] {"stage_name":"metric_collector","events_processed":5959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1191.8,"last_update":"2026-03-22T07:40:47.368786664Z"} +2026/03/22 07:40:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:40:47.377704379Z"} +2026/03/22 07:40:52 [detection_layer] {"stage_name":"detection_layer","events_processed":198,"events_dropped":0,"avg_latency_ms":17.905131916745166,"throughput_eps":0,"last_update":"2026-03-22T07:40:47.478980377Z"} +2026/03/22 07:40:52 ───────────────────────────────────────────────── +2026/03/22 07:40:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:40:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2388,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:40:52.378162626Z"} +2026/03/22 07:40:57 [detection_layer] {"stage_name":"detection_layer","events_processed":198,"events_dropped":0,"avg_latency_ms":17.905131916745166,"throughput_eps":0,"last_update":"2026-03-22T07:40:52.479677301Z"} +2026/03/22 07:40:57 [transform_engine] {"stage_name":"transform_engine","events_processed":198,"events_dropped":0,"avg_latency_ms":183.91130997178365,"throughput_eps":0,"last_update":"2026-03-22T07:40:52.479562481Z"} +2026/03/22 07:40:57 [log_collector] {"stage_name":"log_collector","events_processed":10667,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2133.4,"last_update":"2026-03-22T07:40:52.368153902Z"} +2026/03/22 07:40:57 [metric_collector] {"stage_name":"metric_collector","events_processed":5964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1192.8,"last_update":"2026-03-22T07:40:52.368481619Z"} +2026/03/22 07:40:57 ───────────────────────────────────────────────── +2026/03/22 07:41:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:41:02 [log_collector] {"stage_name":"log_collector","events_processed":10667,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2133.4,"last_update":"2026-03-22T07:40:57.367973814Z"} +2026/03/22 07:41:02 [metric_collector] {"stage_name":"metric_collector","events_processed":5969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1193.8,"last_update":"2026-03-22T07:40:57.368575256Z"} +2026/03/22 07:41:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2390,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:40:57.377191342Z"} +2026/03/22 07:41:02 [detection_layer] {"stage_name":"detection_layer","events_processed":198,"events_dropped":0,"avg_latency_ms":17.905131916745166,"throughput_eps":0,"last_update":"2026-03-22T07:40:57.479522Z"} +2026/03/22 07:41:02 [transform_engine] {"stage_name":"transform_engine","events_processed":199,"events_dropped":0,"avg_latency_ms":161.24987917742692,"throughput_eps":0,"last_update":"2026-03-22T07:40:57.550179459Z"} +2026/03/22 07:41:02 ───────────────────────────────────────────────── +2026/03/22 07:41:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:41:07 [log_collector] {"stage_name":"log_collector","events_processed":10667,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2133.4,"last_update":"2026-03-22T07:41:02.368056906Z"} +2026/03/22 07:41:07 [metric_collector] {"stage_name":"metric_collector","events_processed":5974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1194.8,"last_update":"2026-03-22T07:41:02.36828864Z"} +2026/03/22 07:41:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:41:02.377931444Z"} +2026/03/22 07:41:07 [detection_layer] {"stage_name":"detection_layer","events_processed":199,"events_dropped":0,"avg_latency_ms":18.393563933396134,"throughput_eps":0,"last_update":"2026-03-22T07:41:02.479204545Z"} +2026/03/22 07:41:07 [transform_engine] {"stage_name":"transform_engine","events_processed":199,"events_dropped":0,"avg_latency_ms":161.24987917742692,"throughput_eps":0,"last_update":"2026-03-22T07:41:02.479177814Z"} +2026/03/22 07:41:07 ───────────────────────────────────────────────── +Saved state: 11 clusters, 10668 messages, reason: none +2026/03/22 07:41:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:41:12 [log_collector] {"stage_name":"log_collector","events_processed":10667,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2133.4,"last_update":"2026-03-22T07:41:07.368151539Z"} +2026/03/22 07:41:12 [metric_collector] {"stage_name":"metric_collector","events_processed":5979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1195.8,"last_update":"2026-03-22T07:41:07.368709628Z"} +2026/03/22 07:41:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:41:07.378838022Z"} +2026/03/22 07:41:12 [detection_layer] {"stage_name":"detection_layer","events_processed":199,"events_dropped":0,"avg_latency_ms":18.393563933396134,"throughput_eps":0,"last_update":"2026-03-22T07:41:07.479083614Z"} +2026/03/22 07:41:12 [transform_engine] {"stage_name":"transform_engine","events_processed":199,"events_dropped":0,"avg_latency_ms":161.24987917742692,"throughput_eps":0,"last_update":"2026-03-22T07:41:07.479110275Z"} +2026/03/22 07:41:12 ───────────────────────────────────────────────── +2026/03/22 07:41:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:41:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:41:12.376597108Z"} +2026/03/22 07:41:17 [detection_layer] {"stage_name":"detection_layer","events_processed":199,"events_dropped":0,"avg_latency_ms":18.393563933396134,"throughput_eps":0,"last_update":"2026-03-22T07:41:12.479754187Z"} +2026/03/22 07:41:17 [transform_engine] {"stage_name":"transform_engine","events_processed":199,"events_dropped":0,"avg_latency_ms":161.24987917742692,"throughput_eps":0,"last_update":"2026-03-22T07:41:12.479739829Z"} +2026/03/22 07:41:17 [log_collector] {"stage_name":"log_collector","events_processed":10672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2134.4,"last_update":"2026-03-22T07:41:17.368397395Z"} +2026/03/22 07:41:17 [metric_collector] {"stage_name":"metric_collector","events_processed":5984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1196.8,"last_update":"2026-03-22T07:41:12.368462894Z"} +2026/03/22 07:41:17 ───────────────────────────────────────────────── +2026/03/22 07:41:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:41:22 [detection_layer] {"stage_name":"detection_layer","events_processed":199,"events_dropped":0,"avg_latency_ms":18.393563933396134,"throughput_eps":0,"last_update":"2026-03-22T07:41:17.479262731Z"} +2026/03/22 07:41:22 [transform_engine] {"stage_name":"transform_engine","events_processed":199,"events_dropped":0,"avg_latency_ms":161.24987917742692,"throughput_eps":0,"last_update":"2026-03-22T07:41:17.479247171Z"} +2026/03/22 07:41:22 [log_collector] {"stage_name":"log_collector","events_processed":10672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2134.4,"last_update":"2026-03-22T07:41:22.368239406Z"} +2026/03/22 07:41:22 [metric_collector] {"stage_name":"metric_collector","events_processed":5989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1197.8,"last_update":"2026-03-22T07:41:17.368914355Z"} +2026/03/22 07:41:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:41:17.380042003Z"} +2026/03/22 07:41:22 ───────────────────────────────────────────────── +2026/03/22 07:41:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:41:27 [metric_collector] {"stage_name":"metric_collector","events_processed":5994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1198.8,"last_update":"2026-03-22T07:41:22.36852359Z"} +2026/03/22 07:41:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2400,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:41:22.374900576Z"} +2026/03/22 07:41:27 [detection_layer] {"stage_name":"detection_layer","events_processed":199,"events_dropped":0,"avg_latency_ms":18.393563933396134,"throughput_eps":0,"last_update":"2026-03-22T07:41:22.479141622Z"} +2026/03/22 07:41:27 [transform_engine] {"stage_name":"transform_engine","events_processed":199,"events_dropped":0,"avg_latency_ms":161.24987917742692,"throughput_eps":0,"last_update":"2026-03-22T07:41:22.479166009Z"} +2026/03/22 07:41:27 [log_collector] {"stage_name":"log_collector","events_processed":10672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2134.4,"last_update":"2026-03-22T07:41:22.368239406Z"} +2026/03/22 07:41:27 ───────────────────────────────────────────────── +2026/03/22 07:41:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:41:32 [detection_layer] {"stage_name":"detection_layer","events_processed":199,"events_dropped":0,"avg_latency_ms":18.393563933396134,"throughput_eps":0,"last_update":"2026-03-22T07:41:27.479392063Z"} +2026/03/22 07:41:32 [transform_engine] {"stage_name":"transform_engine","events_processed":200,"events_dropped":0,"avg_latency_ms":164.29010214194156,"throughput_eps":0,"last_update":"2026-03-22T07:41:27.655591496Z"} +2026/03/22 07:41:32 [log_collector] {"stage_name":"log_collector","events_processed":10672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2134.4,"last_update":"2026-03-22T07:41:27.368118486Z"} +2026/03/22 07:41:32 [metric_collector] {"stage_name":"metric_collector","events_processed":5999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1199.8,"last_update":"2026-03-22T07:41:27.368166748Z"} +2026/03/22 07:41:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2402,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:41:27.374923683Z"} +2026/03/22 07:41:32 ───────────────────────────────────────────────── +2026/03/22 07:41:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:41:37 [transform_engine] {"stage_name":"transform_engine","events_processed":200,"events_dropped":0,"avg_latency_ms":164.29010214194156,"throughput_eps":0,"last_update":"2026-03-22T07:41:32.479227618Z"} +2026/03/22 07:41:37 [log_collector] {"stage_name":"log_collector","events_processed":10672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2134.4,"last_update":"2026-03-22T07:41:37.368396407Z"} +2026/03/22 07:41:37 [metric_collector] {"stage_name":"metric_collector","events_processed":6004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1200.8,"last_update":"2026-03-22T07:41:32.368643532Z"} +2026/03/22 07:41:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:41:32.378069841Z"} +2026/03/22 07:41:37 [detection_layer] {"stage_name":"detection_layer","events_processed":200,"events_dropped":0,"avg_latency_ms":17.81874934671691,"throughput_eps":0,"last_update":"2026-03-22T07:41:32.479180728Z"} +2026/03/22 07:41:37 ───────────────────────────────────────────────── +2026/03/22 07:41:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:41:42 [log_collector] {"stage_name":"log_collector","events_processed":10672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2134.4,"last_update":"2026-03-22T07:41:37.368396407Z"} +2026/03/22 07:41:42 [metric_collector] {"stage_name":"metric_collector","events_processed":6009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1201.8,"last_update":"2026-03-22T07:41:37.368644433Z"} +2026/03/22 07:41:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:41:37.377247434Z"} +2026/03/22 07:41:42 [detection_layer] {"stage_name":"detection_layer","events_processed":200,"events_dropped":0,"avg_latency_ms":17.81874934671691,"throughput_eps":0,"last_update":"2026-03-22T07:41:37.479322768Z"} +2026/03/22 07:41:42 [transform_engine] {"stage_name":"transform_engine","events_processed":200,"events_dropped":0,"avg_latency_ms":164.29010214194156,"throughput_eps":0,"last_update":"2026-03-22T07:41:37.479292881Z"} +2026/03/22 07:41:42 ───────────────────────────────────────────────── +2026/03/22 07:41:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:41:47 [log_collector] {"stage_name":"log_collector","events_processed":10672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2134.4,"last_update":"2026-03-22T07:41:42.3684565Z"} +2026/03/22 07:41:47 [metric_collector] {"stage_name":"metric_collector","events_processed":6014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1202.8,"last_update":"2026-03-22T07:41:42.368739152Z"} +2026/03/22 07:41:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2408,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:41:42.377866538Z"} +2026/03/22 07:41:47 [detection_layer] {"stage_name":"detection_layer","events_processed":200,"events_dropped":0,"avg_latency_ms":17.81874934671691,"throughput_eps":0,"last_update":"2026-03-22T07:41:42.479608293Z"} +2026/03/22 07:41:47 [transform_engine] {"stage_name":"transform_engine","events_processed":200,"events_dropped":0,"avg_latency_ms":164.29010214194156,"throughput_eps":0,"last_update":"2026-03-22T07:41:42.479596391Z"} +2026/03/22 07:41:47 ───────────────────────────────────────────────── +2026/03/22 07:41:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:41:52 [log_collector] {"stage_name":"log_collector","events_processed":10672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2134.4,"last_update":"2026-03-22T07:41:47.367993068Z"} +2026/03/22 07:41:52 [metric_collector] {"stage_name":"metric_collector","events_processed":6019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1203.8,"last_update":"2026-03-22T07:41:47.368215143Z"} +2026/03/22 07:41:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:41:47.382095555Z"} +2026/03/22 07:41:52 [detection_layer] {"stage_name":"detection_layer","events_processed":200,"events_dropped":0,"avg_latency_ms":17.81874934671691,"throughput_eps":0,"last_update":"2026-03-22T07:41:47.479380281Z"} +2026/03/22 07:41:52 [transform_engine] {"stage_name":"transform_engine","events_processed":200,"events_dropped":0,"avg_latency_ms":164.29010214194156,"throughput_eps":0,"last_update":"2026-03-22T07:41:47.479377826Z"} +2026/03/22 07:41:52 ───────────────────────────────────────────────── +2026/03/22 07:41:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:41:57 [detection_layer] {"stage_name":"detection_layer","events_processed":200,"events_dropped":0,"avg_latency_ms":17.81874934671691,"throughput_eps":0,"last_update":"2026-03-22T07:41:52.479519622Z"} +2026/03/22 07:41:57 [transform_engine] {"stage_name":"transform_engine","events_processed":200,"events_dropped":0,"avg_latency_ms":164.29010214194156,"throughput_eps":0,"last_update":"2026-03-22T07:41:52.47957064Z"} +2026/03/22 07:41:57 [log_collector] {"stage_name":"log_collector","events_processed":10720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2144,"last_update":"2026-03-22T07:41:57.368018286Z"} +2026/03/22 07:41:57 [metric_collector] {"stage_name":"metric_collector","events_processed":6024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1204.8,"last_update":"2026-03-22T07:41:52.368341079Z"} +2026/03/22 07:41:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:41:52.376383156Z"} +2026/03/22 07:41:57 ───────────────────────────────────────────────── +2026/03/22 07:42:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:42:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:41:57.379423817Z"} +2026/03/22 07:42:02 [detection_layer] {"stage_name":"detection_layer","events_processed":200,"events_dropped":0,"avg_latency_ms":17.81874934671691,"throughput_eps":0,"last_update":"2026-03-22T07:41:57.479648444Z"} +2026/03/22 07:42:02 [transform_engine] {"stage_name":"transform_engine","events_processed":201,"events_dropped":0,"avg_latency_ms":191.98724571355325,"throughput_eps":0,"last_update":"2026-03-22T07:41:57.782437239Z"} +2026/03/22 07:42:02 [log_collector] {"stage_name":"log_collector","events_processed":10943,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2188.6,"last_update":"2026-03-22T07:42:02.368551702Z"} +2026/03/22 07:42:02 [metric_collector] {"stage_name":"metric_collector","events_processed":6029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1205.8,"last_update":"2026-03-22T07:41:57.368308423Z"} +2026/03/22 07:42:02 ───────────────────────────────────────────────── +2026/03/22 07:42:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:42:07 [transform_engine] {"stage_name":"transform_engine","events_processed":201,"events_dropped":0,"avg_latency_ms":191.98724571355325,"throughput_eps":0,"last_update":"2026-03-22T07:42:02.479347942Z"} +2026/03/22 07:42:07 [log_collector] {"stage_name":"log_collector","events_processed":10943,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2188.6,"last_update":"2026-03-22T07:42:02.368551702Z"} +2026/03/22 07:42:07 [metric_collector] {"stage_name":"metric_collector","events_processed":6034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1206.8,"last_update":"2026-03-22T07:42:02.36879044Z"} +2026/03/22 07:42:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:42:02.375029252Z"} +2026/03/22 07:42:07 [detection_layer] {"stage_name":"detection_layer","events_processed":201,"events_dropped":0,"avg_latency_ms":16.82320147737353,"throughput_eps":0,"last_update":"2026-03-22T07:42:02.479242731Z"} +2026/03/22 07:42:07 ───────────────────────────────────────────────── +2026/03/22 07:42:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:42:12 [metric_collector] {"stage_name":"metric_collector","events_processed":6039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1207.8,"last_update":"2026-03-22T07:42:07.368298904Z"} +2026/03/22 07:42:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:42:07.377524326Z"} +2026/03/22 07:42:12 [detection_layer] {"stage_name":"detection_layer","events_processed":201,"events_dropped":0,"avg_latency_ms":16.82320147737353,"throughput_eps":0,"last_update":"2026-03-22T07:42:07.479794191Z"} +2026/03/22 07:42:12 [transform_engine] {"stage_name":"transform_engine","events_processed":201,"events_dropped":0,"avg_latency_ms":191.98724571355325,"throughput_eps":0,"last_update":"2026-03-22T07:42:07.479760237Z"} +2026/03/22 07:42:12 [log_collector] {"stage_name":"log_collector","events_processed":11022,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2204.4,"last_update":"2026-03-22T07:42:07.36831283Z"} +2026/03/22 07:42:12 ───────────────────────────────────────────────── +2026/03/22 07:42:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:42:17 [log_collector] {"stage_name":"log_collector","events_processed":11025,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2205,"last_update":"2026-03-22T07:42:12.368306461Z"} +2026/03/22 07:42:17 [metric_collector] {"stage_name":"metric_collector","events_processed":6044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1208.8,"last_update":"2026-03-22T07:42:12.368520682Z"} +2026/03/22 07:42:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2420,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:42:12.376741881Z"} +2026/03/22 07:42:17 [detection_layer] {"stage_name":"detection_layer","events_processed":201,"events_dropped":0,"avg_latency_ms":16.82320147737353,"throughput_eps":0,"last_update":"2026-03-22T07:42:12.480384125Z"} +2026/03/22 07:42:17 [transform_engine] {"stage_name":"transform_engine","events_processed":201,"events_dropped":0,"avg_latency_ms":191.98724571355325,"throughput_eps":0,"last_update":"2026-03-22T07:42:12.480371952Z"} +2026/03/22 07:42:17 ───────────────────────────────────────────────── +Saved state: 11 clusters, 11026 messages, reason: none +2026/03/22 07:42:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:42:22 [log_collector] {"stage_name":"log_collector","events_processed":11025,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2205,"last_update":"2026-03-22T07:42:17.367990852Z"} +2026/03/22 07:42:22 [metric_collector] {"stage_name":"metric_collector","events_processed":6049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1209.8,"last_update":"2026-03-22T07:42:17.368389165Z"} +2026/03/22 07:42:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:42:17.375327026Z"} +2026/03/22 07:42:22 [detection_layer] {"stage_name":"detection_layer","events_processed":201,"events_dropped":0,"avg_latency_ms":16.82320147737353,"throughput_eps":0,"last_update":"2026-03-22T07:42:17.478956264Z"} +2026/03/22 07:42:22 [transform_engine] {"stage_name":"transform_engine","events_processed":201,"events_dropped":0,"avg_latency_ms":191.98724571355325,"throughput_eps":0,"last_update":"2026-03-22T07:42:17.478913031Z"} +2026/03/22 07:42:22 ───────────────────────────────────────────────── +2026/03/22 07:42:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:42:27 [log_collector] {"stage_name":"log_collector","events_processed":11036,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2207.2,"last_update":"2026-03-22T07:42:22.368604271Z"} +2026/03/22 07:42:27 [metric_collector] {"stage_name":"metric_collector","events_processed":6054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1210.8,"last_update":"2026-03-22T07:42:22.369299102Z"} +2026/03/22 07:42:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:42:22.378032703Z"} +2026/03/22 07:42:27 [detection_layer] {"stage_name":"detection_layer","events_processed":201,"events_dropped":0,"avg_latency_ms":16.82320147737353,"throughput_eps":0,"last_update":"2026-03-22T07:42:22.479252435Z"} +2026/03/22 07:42:27 [transform_engine] {"stage_name":"transform_engine","events_processed":201,"events_dropped":0,"avg_latency_ms":191.98724571355325,"throughput_eps":0,"last_update":"2026-03-22T07:42:22.479275419Z"} +2026/03/22 07:42:27 ───────────────────────────────────────────────── +2026/03/22 07:42:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:42:32 [log_collector] {"stage_name":"log_collector","events_processed":11036,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2207.2,"last_update":"2026-03-22T07:42:27.36840257Z"} +2026/03/22 07:42:32 [metric_collector] {"stage_name":"metric_collector","events_processed":6059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1211.8,"last_update":"2026-03-22T07:42:27.368841901Z"} +2026/03/22 07:42:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:42:27.37737074Z"} +2026/03/22 07:42:32 [detection_layer] {"stage_name":"detection_layer","events_processed":201,"events_dropped":0,"avg_latency_ms":16.82320147737353,"throughput_eps":0,"last_update":"2026-03-22T07:42:27.479631086Z"} +2026/03/22 07:42:32 [transform_engine] {"stage_name":"transform_engine","events_processed":202,"events_dropped":0,"avg_latency_ms":177.8857953708426,"throughput_eps":0,"last_update":"2026-03-22T07:42:27.60108423Z"} +2026/03/22 07:42:32 ───────────────────────────────────────────────── +2026/03/22 07:42:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:42:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:42:32.379766125Z"} +2026/03/22 07:42:37 [detection_layer] {"stage_name":"detection_layer","events_processed":202,"events_dropped":0,"avg_latency_ms":17.243952981898826,"throughput_eps":0,"last_update":"2026-03-22T07:42:32.47894158Z"} +2026/03/22 07:42:37 [transform_engine] {"stage_name":"transform_engine","events_processed":202,"events_dropped":0,"avg_latency_ms":177.8857953708426,"throughput_eps":0,"last_update":"2026-03-22T07:42:32.478895622Z"} +2026/03/22 07:42:37 [log_collector] {"stage_name":"log_collector","events_processed":11052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2210.4,"last_update":"2026-03-22T07:42:32.368240795Z"} +2026/03/22 07:42:37 [metric_collector] {"stage_name":"metric_collector","events_processed":6064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1212.8,"last_update":"2026-03-22T07:42:32.368972668Z"} +2026/03/22 07:42:37 ───────────────────────────────────────────────── +2026/03/22 07:42:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:42:42 [log_collector] {"stage_name":"log_collector","events_processed":11052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2210.4,"last_update":"2026-03-22T07:42:37.368327158Z"} +2026/03/22 07:42:42 [metric_collector] {"stage_name":"metric_collector","events_processed":6069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1213.8,"last_update":"2026-03-22T07:42:37.368858525Z"} +2026/03/22 07:42:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:42:37.376847039Z"} +2026/03/22 07:42:42 [detection_layer] {"stage_name":"detection_layer","events_processed":202,"events_dropped":0,"avg_latency_ms":17.243952981898826,"throughput_eps":0,"last_update":"2026-03-22T07:42:37.479284733Z"} +2026/03/22 07:42:42 [transform_engine] {"stage_name":"transform_engine","events_processed":202,"events_dropped":0,"avg_latency_ms":177.8857953708426,"throughput_eps":0,"last_update":"2026-03-22T07:42:37.479205622Z"} +2026/03/22 07:42:42 ───────────────────────────────────────────────── +2026/03/22 07:42:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:42:47 [log_collector] {"stage_name":"log_collector","events_processed":11052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2210.4,"last_update":"2026-03-22T07:42:42.369036335Z"} +2026/03/22 07:42:47 [metric_collector] {"stage_name":"metric_collector","events_processed":6074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1214.8,"last_update":"2026-03-22T07:42:42.369109776Z"} +2026/03/22 07:42:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:42:42.37832976Z"} +2026/03/22 07:42:47 [detection_layer] {"stage_name":"detection_layer","events_processed":202,"events_dropped":0,"avg_latency_ms":17.243952981898826,"throughput_eps":0,"last_update":"2026-03-22T07:42:42.479707372Z"} +2026/03/22 07:42:47 [transform_engine] {"stage_name":"transform_engine","events_processed":202,"events_dropped":0,"avg_latency_ms":177.8857953708426,"throughput_eps":0,"last_update":"2026-03-22T07:42:42.479576231Z"} +2026/03/22 07:42:47 ───────────────────────────────────────────────── +2026/03/22 07:42:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:42:52 [log_collector] {"stage_name":"log_collector","events_processed":11052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2210.4,"last_update":"2026-03-22T07:42:47.368988613Z"} +2026/03/22 07:42:52 [metric_collector] {"stage_name":"metric_collector","events_processed":6078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1215.6,"last_update":"2026-03-22T07:42:47.368647609Z"} +2026/03/22 07:42:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:42:47.378096681Z"} +2026/03/22 07:42:52 [detection_layer] {"stage_name":"detection_layer","events_processed":202,"events_dropped":0,"avg_latency_ms":17.243952981898826,"throughput_eps":0,"last_update":"2026-03-22T07:42:47.47942547Z"} +2026/03/22 07:42:52 [transform_engine] {"stage_name":"transform_engine","events_processed":202,"events_dropped":0,"avg_latency_ms":177.8857953708426,"throughput_eps":0,"last_update":"2026-03-22T07:42:47.479386355Z"} +2026/03/22 07:42:52 ───────────────────────────────────────────────── +2026/03/22 07:42:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:42:57 [transform_engine] {"stage_name":"transform_engine","events_processed":202,"events_dropped":0,"avg_latency_ms":177.8857953708426,"throughput_eps":0,"last_update":"2026-03-22T07:42:52.479396115Z"} +2026/03/22 07:42:57 [log_collector] {"stage_name":"log_collector","events_processed":11052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2210.4,"last_update":"2026-03-22T07:42:52.368880115Z"} +2026/03/22 07:42:57 [metric_collector] {"stage_name":"metric_collector","events_processed":6084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1216.8,"last_update":"2026-03-22T07:42:52.369186092Z"} +2026/03/22 07:42:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:42:52.378010176Z"} +2026/03/22 07:42:57 [detection_layer] {"stage_name":"detection_layer","events_processed":202,"events_dropped":0,"avg_latency_ms":17.243952981898826,"throughput_eps":0,"last_update":"2026-03-22T07:42:52.479429619Z"} +2026/03/22 07:42:57 ───────────────────────────────────────────────── +2026/03/22 07:43:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:43:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:42:57.377493387Z"} +2026/03/22 07:43:02 [detection_layer] {"stage_name":"detection_layer","events_processed":202,"events_dropped":0,"avg_latency_ms":17.243952981898826,"throughput_eps":0,"last_update":"2026-03-22T07:42:57.479722581Z"} +2026/03/22 07:43:02 [transform_engine] {"stage_name":"transform_engine","events_processed":203,"events_dropped":0,"avg_latency_ms":164.68039829667407,"throughput_eps":0,"last_update":"2026-03-22T07:42:57.5916071Z"} +2026/03/22 07:43:02 [log_collector] {"stage_name":"log_collector","events_processed":11052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2210.4,"last_update":"2026-03-22T07:43:02.368313957Z"} +2026/03/22 07:43:02 [metric_collector] {"stage_name":"metric_collector","events_processed":6089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1217.8,"last_update":"2026-03-22T07:42:57.368301418Z"} +2026/03/22 07:43:02 ───────────────────────────────────────────────── +2026/03/22 07:43:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:43:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:43:02.377568756Z"} +2026/03/22 07:43:07 [detection_layer] {"stage_name":"detection_layer","events_processed":203,"events_dropped":0,"avg_latency_ms":17.907620585519062,"throughput_eps":0,"last_update":"2026-03-22T07:43:02.479785685Z"} +2026/03/22 07:43:07 [transform_engine] {"stage_name":"transform_engine","events_processed":203,"events_dropped":0,"avg_latency_ms":164.68039829667407,"throughput_eps":0,"last_update":"2026-03-22T07:43:02.479761399Z"} +2026/03/22 07:43:07 [log_collector] {"stage_name":"log_collector","events_processed":11052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2210.4,"last_update":"2026-03-22T07:43:02.368313957Z"} +2026/03/22 07:43:07 [metric_collector] {"stage_name":"metric_collector","events_processed":6094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1218.8,"last_update":"2026-03-22T07:43:02.36872287Z"} +2026/03/22 07:43:07 ───────────────────────────────────────────────── +2026/03/22 07:43:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:43:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2442,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:43:07.377422732Z"} +2026/03/22 07:43:12 [detection_layer] {"stage_name":"detection_layer","events_processed":203,"events_dropped":0,"avg_latency_ms":17.907620585519062,"throughput_eps":0,"last_update":"2026-03-22T07:43:07.479011878Z"} +2026/03/22 07:43:12 [transform_engine] {"stage_name":"transform_engine","events_processed":203,"events_dropped":0,"avg_latency_ms":164.68039829667407,"throughput_eps":0,"last_update":"2026-03-22T07:43:07.479068356Z"} +2026/03/22 07:43:12 [log_collector] {"stage_name":"log_collector","events_processed":11052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2210.4,"last_update":"2026-03-22T07:43:07.368408322Z"} +2026/03/22 07:43:12 [metric_collector] {"stage_name":"metric_collector","events_processed":6099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1219.8,"last_update":"2026-03-22T07:43:07.36881395Z"} +2026/03/22 07:43:12 ───────────────────────────────────────────────── +2026/03/22 07:43:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:43:17 [transform_engine] {"stage_name":"transform_engine","events_processed":203,"events_dropped":0,"avg_latency_ms":164.68039829667407,"throughput_eps":0,"last_update":"2026-03-22T07:43:12.479477558Z"} +2026/03/22 07:43:17 [log_collector] {"stage_name":"log_collector","events_processed":11052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2210.4,"last_update":"2026-03-22T07:43:12.367984488Z"} +2026/03/22 07:43:17 [metric_collector] {"stage_name":"metric_collector","events_processed":6104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1220.8,"last_update":"2026-03-22T07:43:12.368395817Z"} +2026/03/22 07:43:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:43:12.377225643Z"} +2026/03/22 07:43:17 [detection_layer] {"stage_name":"detection_layer","events_processed":203,"events_dropped":0,"avg_latency_ms":17.907620585519062,"throughput_eps":0,"last_update":"2026-03-22T07:43:12.479432211Z"} +2026/03/22 07:43:17 ───────────────────────────────────────────────── +2026/03/22 07:43:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:43:22 [log_collector] {"stage_name":"log_collector","events_processed":11052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2210.4,"last_update":"2026-03-22T07:43:17.368326684Z"} +2026/03/22 07:43:22 [metric_collector] {"stage_name":"metric_collector","events_processed":6109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1221.8,"last_update":"2026-03-22T07:43:17.368549802Z"} +2026/03/22 07:43:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2446,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:43:17.37731317Z"} +2026/03/22 07:43:22 [detection_layer] {"stage_name":"detection_layer","events_processed":203,"events_dropped":0,"avg_latency_ms":17.907620585519062,"throughput_eps":0,"last_update":"2026-03-22T07:43:17.479660066Z"} +2026/03/22 07:43:22 [transform_engine] {"stage_name":"transform_engine","events_processed":203,"events_dropped":0,"avg_latency_ms":164.68039829667407,"throughput_eps":0,"last_update":"2026-03-22T07:43:17.479616413Z"} +2026/03/22 07:43:22 ───────────────────────────────────────────────── +2026/03/22 07:43:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:43:27 [log_collector] {"stage_name":"log_collector","events_processed":11052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2210.4,"last_update":"2026-03-22T07:43:27.367983585Z"} +2026/03/22 07:43:27 [metric_collector] {"stage_name":"metric_collector","events_processed":6114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1222.8,"last_update":"2026-03-22T07:43:22.369862959Z"} +2026/03/22 07:43:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:43:22.378414171Z"} +2026/03/22 07:43:27 [detection_layer] {"stage_name":"detection_layer","events_processed":203,"events_dropped":0,"avg_latency_ms":17.907620585519062,"throughput_eps":0,"last_update":"2026-03-22T07:43:22.479632245Z"} +2026/03/22 07:43:27 [transform_engine] {"stage_name":"transform_engine","events_processed":203,"events_dropped":0,"avg_latency_ms":164.68039829667407,"throughput_eps":0,"last_update":"2026-03-22T07:43:22.479662063Z"} +2026/03/22 07:43:27 ───────────────────────────────────────────────── +2026/03/22 07:43:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:43:32 [transform_engine] {"stage_name":"transform_engine","events_processed":204,"events_dropped":0,"avg_latency_ms":145.35975583733926,"throughput_eps":0,"last_update":"2026-03-22T07:43:27.547699749Z"} +2026/03/22 07:43:32 [log_collector] {"stage_name":"log_collector","events_processed":11052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2210.4,"last_update":"2026-03-22T07:43:27.367983585Z"} +2026/03/22 07:43:32 [metric_collector] {"stage_name":"metric_collector","events_processed":6119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1223.8,"last_update":"2026-03-22T07:43:27.368491658Z"} +2026/03/22 07:43:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:43:27.377312526Z"} +2026/03/22 07:43:32 [detection_layer] {"stage_name":"detection_layer","events_processed":203,"events_dropped":0,"avg_latency_ms":17.907620585519062,"throughput_eps":0,"last_update":"2026-03-22T07:43:27.479567867Z"} +2026/03/22 07:43:32 ───────────────────────────────────────────────── +2026/03/22 07:43:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:43:37 [log_collector] {"stage_name":"log_collector","events_processed":11052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2210.4,"last_update":"2026-03-22T07:43:32.368823572Z"} +2026/03/22 07:43:37 [metric_collector] {"stage_name":"metric_collector","events_processed":6124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1224.8,"last_update":"2026-03-22T07:43:32.369410677Z"} +2026/03/22 07:43:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2452,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:43:32.376127946Z"} +2026/03/22 07:43:37 [detection_layer] {"stage_name":"detection_layer","events_processed":204,"events_dropped":0,"avg_latency_ms":18.485330468415253,"throughput_eps":0,"last_update":"2026-03-22T07:43:32.479444058Z"} +2026/03/22 07:43:37 [transform_engine] {"stage_name":"transform_engine","events_processed":204,"events_dropped":0,"avg_latency_ms":145.35975583733926,"throughput_eps":0,"last_update":"2026-03-22T07:43:32.479457825Z"} +2026/03/22 07:43:37 ───────────────────────────────────────────────── +2026/03/22 07:43:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:43:42 [log_collector] {"stage_name":"log_collector","events_processed":11052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2210.4,"last_update":"2026-03-22T07:43:37.368472711Z"} +2026/03/22 07:43:42 [metric_collector] {"stage_name":"metric_collector","events_processed":6129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1225.8,"last_update":"2026-03-22T07:43:37.368750703Z"} +2026/03/22 07:43:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:43:37.377285263Z"} +2026/03/22 07:43:42 [detection_layer] {"stage_name":"detection_layer","events_processed":204,"events_dropped":0,"avg_latency_ms":18.485330468415253,"throughput_eps":0,"last_update":"2026-03-22T07:43:37.479748001Z"} +2026/03/22 07:43:42 [transform_engine] {"stage_name":"transform_engine","events_processed":204,"events_dropped":0,"avg_latency_ms":145.35975583733926,"throughput_eps":0,"last_update":"2026-03-22T07:43:37.479730648Z"} +2026/03/22 07:43:42 ───────────────────────────────────────────────── +Saved state: 11 clusters, 11053 messages, reason: none +2026/03/22 07:43:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:43:47 [metric_collector] {"stage_name":"metric_collector","events_processed":6134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1226.8,"last_update":"2026-03-22T07:43:42.368705Z"} +2026/03/22 07:43:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:43:42.37748529Z"} +2026/03/22 07:43:47 [detection_layer] {"stage_name":"detection_layer","events_processed":204,"events_dropped":0,"avg_latency_ms":18.485330468415253,"throughput_eps":0,"last_update":"2026-03-22T07:43:42.479708578Z"} +2026/03/22 07:43:47 [transform_engine] {"stage_name":"transform_engine","events_processed":204,"events_dropped":0,"avg_latency_ms":145.35975583733926,"throughput_eps":0,"last_update":"2026-03-22T07:43:42.479721484Z"} +2026/03/22 07:43:47 [log_collector] {"stage_name":"log_collector","events_processed":11052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2210.4,"last_update":"2026-03-22T07:43:42.368278573Z"} +2026/03/22 07:43:47 ───────────────────────────────────────────────── +2026/03/22 07:43:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:43:52 [log_collector] {"stage_name":"log_collector","events_processed":11066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2213.2,"last_update":"2026-03-22T07:43:47.367971964Z"} +2026/03/22 07:43:52 [metric_collector] {"stage_name":"metric_collector","events_processed":6139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1227.8,"last_update":"2026-03-22T07:43:47.368302246Z"} +2026/03/22 07:43:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:43:47.376829091Z"} +2026/03/22 07:43:52 [detection_layer] {"stage_name":"detection_layer","events_processed":204,"events_dropped":0,"avg_latency_ms":18.485330468415253,"throughput_eps":0,"last_update":"2026-03-22T07:43:47.478983167Z"} +2026/03/22 07:43:52 [transform_engine] {"stage_name":"transform_engine","events_processed":204,"events_dropped":0,"avg_latency_ms":145.35975583733926,"throughput_eps":0,"last_update":"2026-03-22T07:43:47.479037311Z"} +2026/03/22 07:43:52 ───────────────────────────────────────────────── +2026/03/22 07:43:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:43:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:43:52.378549608Z"} +2026/03/22 07:43:57 [detection_layer] {"stage_name":"detection_layer","events_processed":204,"events_dropped":0,"avg_latency_ms":18.485330468415253,"throughput_eps":0,"last_update":"2026-03-22T07:43:52.479917476Z"} +2026/03/22 07:43:57 [transform_engine] {"stage_name":"transform_engine","events_processed":204,"events_dropped":0,"avg_latency_ms":145.35975583733926,"throughput_eps":0,"last_update":"2026-03-22T07:43:52.479931574Z"} +2026/03/22 07:43:57 [log_collector] {"stage_name":"log_collector","events_processed":11066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2213.2,"last_update":"2026-03-22T07:43:52.367993846Z"} +2026/03/22 07:43:57 [metric_collector] {"stage_name":"metric_collector","events_processed":6144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1228.8,"last_update":"2026-03-22T07:43:52.368370978Z"} +2026/03/22 07:43:57 ───────────────────────────────────────────────── +2026/03/22 07:44:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:44:02 [transform_engine] {"stage_name":"transform_engine","events_processed":205,"events_dropped":0,"avg_latency_ms":141.06782926987142,"throughput_eps":0,"last_update":"2026-03-22T07:43:57.603813947Z"} +2026/03/22 07:44:02 [log_collector] {"stage_name":"log_collector","events_processed":11066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2213.2,"last_update":"2026-03-22T07:43:57.368057873Z"} +2026/03/22 07:44:02 [metric_collector] {"stage_name":"metric_collector","events_processed":6148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1229.6,"last_update":"2026-03-22T07:43:57.368200686Z"} +2026/03/22 07:44:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:43:57.377530389Z"} +2026/03/22 07:44:02 [detection_layer] {"stage_name":"detection_layer","events_processed":204,"events_dropped":0,"avg_latency_ms":18.485330468415253,"throughput_eps":0,"last_update":"2026-03-22T07:43:57.480022351Z"} +2026/03/22 07:44:02 ───────────────────────────────────────────────── +2026/03/22 07:44:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:44:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:44:02.379391763Z"} +2026/03/22 07:44:07 [detection_layer] {"stage_name":"detection_layer","events_processed":205,"events_dropped":0,"avg_latency_ms":18.7050195747322,"throughput_eps":0,"last_update":"2026-03-22T07:44:02.479617324Z"} +2026/03/22 07:44:07 [transform_engine] {"stage_name":"transform_engine","events_processed":205,"events_dropped":0,"avg_latency_ms":141.06782926987142,"throughput_eps":0,"last_update":"2026-03-22T07:44:02.47958397Z"} +2026/03/22 07:44:07 [log_collector] {"stage_name":"log_collector","events_processed":11066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2213.2,"last_update":"2026-03-22T07:44:02.36810454Z"} +2026/03/22 07:44:07 [metric_collector] {"stage_name":"metric_collector","events_processed":6153,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1230.6,"last_update":"2026-03-22T07:44:02.368154606Z"} +2026/03/22 07:44:07 ───────────────────────────────────────────────── +2026/03/22 07:44:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:44:12 [log_collector] {"stage_name":"log_collector","events_processed":11066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2213.2,"last_update":"2026-03-22T07:44:07.367971729Z"} +2026/03/22 07:44:12 [metric_collector] {"stage_name":"metric_collector","events_processed":6159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1231.8,"last_update":"2026-03-22T07:44:07.368304267Z"} +2026/03/22 07:44:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:44:07.375338863Z"} +2026/03/22 07:44:12 [detection_layer] {"stage_name":"detection_layer","events_processed":205,"events_dropped":0,"avg_latency_ms":18.7050195747322,"throughput_eps":0,"last_update":"2026-03-22T07:44:07.479649318Z"} +2026/03/22 07:44:12 [transform_engine] {"stage_name":"transform_engine","events_processed":205,"events_dropped":0,"avg_latency_ms":141.06782926987142,"throughput_eps":0,"last_update":"2026-03-22T07:44:07.479627276Z"} +2026/03/22 07:44:12 ───────────────────────────────────────────────── +2026/03/22 07:44:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:44:17 [log_collector] {"stage_name":"log_collector","events_processed":11066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2213.2,"last_update":"2026-03-22T07:44:12.368332087Z"} +2026/03/22 07:44:17 [metric_collector] {"stage_name":"metric_collector","events_processed":6164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1232.8,"last_update":"2026-03-22T07:44:12.368858856Z"} +2026/03/22 07:44:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:44:12.377505911Z"} +2026/03/22 07:44:17 [detection_layer] {"stage_name":"detection_layer","events_processed":205,"events_dropped":0,"avg_latency_ms":18.7050195747322,"throughput_eps":0,"last_update":"2026-03-22T07:44:12.479915565Z"} +2026/03/22 07:44:17 [transform_engine] {"stage_name":"transform_engine","events_processed":205,"events_dropped":0,"avg_latency_ms":141.06782926987142,"throughput_eps":0,"last_update":"2026-03-22T07:44:12.479799833Z"} +2026/03/22 07:44:17 ───────────────────────────────────────────────── +2026/03/22 07:44:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:44:22 [log_collector] {"stage_name":"log_collector","events_processed":11066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2213.2,"last_update":"2026-03-22T07:44:17.368011924Z"} +2026/03/22 07:44:22 [metric_collector] {"stage_name":"metric_collector","events_processed":6169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1233.8,"last_update":"2026-03-22T07:44:17.368515199Z"} +2026/03/22 07:44:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2470,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:44:17.377962557Z"} +2026/03/22 07:44:22 [detection_layer] {"stage_name":"detection_layer","events_processed":205,"events_dropped":0,"avg_latency_ms":18.7050195747322,"throughput_eps":0,"last_update":"2026-03-22T07:44:17.479199473Z"} +2026/03/22 07:44:22 [transform_engine] {"stage_name":"transform_engine","events_processed":205,"events_dropped":0,"avg_latency_ms":141.06782926987142,"throughput_eps":0,"last_update":"2026-03-22T07:44:17.479227928Z"} +2026/03/22 07:44:22 ───────────────────────────────────────────────── +2026/03/22 07:44:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:44:27 [transform_engine] {"stage_name":"transform_engine","events_processed":205,"events_dropped":0,"avg_latency_ms":141.06782926987142,"throughput_eps":0,"last_update":"2026-03-22T07:44:22.479784657Z"} +2026/03/22 07:44:27 [log_collector] {"stage_name":"log_collector","events_processed":11066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2213.2,"last_update":"2026-03-22T07:44:27.368015234Z"} +2026/03/22 07:44:27 [metric_collector] {"stage_name":"metric_collector","events_processed":6174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1234.8,"last_update":"2026-03-22T07:44:22.36866603Z"} +2026/03/22 07:44:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:44:22.376519214Z"} +2026/03/22 07:44:27 [detection_layer] {"stage_name":"detection_layer","events_processed":205,"events_dropped":0,"avg_latency_ms":18.7050195747322,"throughput_eps":0,"last_update":"2026-03-22T07:44:22.479751774Z"} +2026/03/22 07:44:27 ───────────────────────────────────────────────── +2026/03/22 07:44:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:44:32 [detection_layer] {"stage_name":"detection_layer","events_processed":205,"events_dropped":0,"avg_latency_ms":18.7050195747322,"throughput_eps":0,"last_update":"2026-03-22T07:44:27.479814785Z"} +2026/03/22 07:44:32 [transform_engine] {"stage_name":"transform_engine","events_processed":206,"events_dropped":0,"avg_latency_ms":126.38137701589716,"throughput_eps":0,"last_update":"2026-03-22T07:44:27.547504756Z"} +2026/03/22 07:44:32 [log_collector] {"stage_name":"log_collector","events_processed":11066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2213.2,"last_update":"2026-03-22T07:44:32.368152502Z"} +2026/03/22 07:44:32 [metric_collector] {"stage_name":"metric_collector","events_processed":6179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1235.8,"last_update":"2026-03-22T07:44:27.368599623Z"} +2026/03/22 07:44:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:44:27.375567091Z"} +2026/03/22 07:44:32 ───────────────────────────────────────────────── +2026/03/22 07:44:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:44:37 [transform_engine] {"stage_name":"transform_engine","events_processed":206,"events_dropped":0,"avg_latency_ms":126.38137701589716,"throughput_eps":0,"last_update":"2026-03-22T07:44:32.478941436Z"} +2026/03/22 07:44:37 [log_collector] {"stage_name":"log_collector","events_processed":11066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2213.2,"last_update":"2026-03-22T07:44:37.368810962Z"} +2026/03/22 07:44:37 [metric_collector] {"stage_name":"metric_collector","events_processed":6184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1236.8,"last_update":"2026-03-22T07:44:32.368990446Z"} +2026/03/22 07:44:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2476,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:44:32.377703468Z"} +2026/03/22 07:44:37 [detection_layer] {"stage_name":"detection_layer","events_processed":206,"events_dropped":0,"avg_latency_ms":18.337524059785764,"throughput_eps":0,"last_update":"2026-03-22T07:44:32.478997373Z"} +2026/03/22 07:44:37 ───────────────────────────────────────────────── +2026/03/22 07:44:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:44:42 [detection_layer] {"stage_name":"detection_layer","events_processed":206,"events_dropped":0,"avg_latency_ms":18.337524059785764,"throughput_eps":0,"last_update":"2026-03-22T07:44:37.479490546Z"} +2026/03/22 07:44:42 [transform_engine] {"stage_name":"transform_engine","events_processed":206,"events_dropped":0,"avg_latency_ms":126.38137701589716,"throughput_eps":0,"last_update":"2026-03-22T07:44:37.479462974Z"} +2026/03/22 07:44:42 [log_collector] {"stage_name":"log_collector","events_processed":11066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2213.2,"last_update":"2026-03-22T07:44:37.368810962Z"} +2026/03/22 07:44:42 [metric_collector] {"stage_name":"metric_collector","events_processed":6189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1237.8,"last_update":"2026-03-22T07:44:37.370413391Z"} +2026/03/22 07:44:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:44:37.379253576Z"} +2026/03/22 07:44:42 ───────────────────────────────────────────────── +2026/03/22 07:44:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:44:47 [log_collector] {"stage_name":"log_collector","events_processed":11066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2213.2,"last_update":"2026-03-22T07:44:47.368652261Z"} +2026/03/22 07:44:47 [metric_collector] {"stage_name":"metric_collector","events_processed":6194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1238.8,"last_update":"2026-03-22T07:44:42.368317109Z"} +2026/03/22 07:44:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2480,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:44:42.375365271Z"} +2026/03/22 07:44:47 [detection_layer] {"stage_name":"detection_layer","events_processed":206,"events_dropped":0,"avg_latency_ms":18.337524059785764,"throughput_eps":0,"last_update":"2026-03-22T07:44:42.479660685Z"} +2026/03/22 07:44:47 [transform_engine] {"stage_name":"transform_engine","events_processed":206,"events_dropped":0,"avg_latency_ms":126.38137701589716,"throughput_eps":0,"last_update":"2026-03-22T07:44:42.479646358Z"} +2026/03/22 07:44:47 ───────────────────────────────────────────────── +Saved state: 11 clusters, 11067 messages, reason: none +2026/03/22 07:44:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:44:52 [log_collector] {"stage_name":"log_collector","events_processed":11066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2213.2,"last_update":"2026-03-22T07:44:47.368652261Z"} +2026/03/22 07:44:52 [metric_collector] {"stage_name":"metric_collector","events_processed":6199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1239.8,"last_update":"2026-03-22T07:44:47.369077245Z"} +2026/03/22 07:44:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2482,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:44:47.377251925Z"} +2026/03/22 07:44:52 [detection_layer] {"stage_name":"detection_layer","events_processed":206,"events_dropped":0,"avg_latency_ms":18.337524059785764,"throughput_eps":0,"last_update":"2026-03-22T07:44:47.479489247Z"} +2026/03/22 07:44:52 [transform_engine] {"stage_name":"transform_engine","events_processed":206,"events_dropped":0,"avg_latency_ms":126.38137701589716,"throughput_eps":0,"last_update":"2026-03-22T07:44:47.479502493Z"} +2026/03/22 07:44:52 ───────────────────────────────────────────────── +2026/03/22 07:44:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:44:57 [log_collector] {"stage_name":"log_collector","events_processed":11071,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2214.2,"last_update":"2026-03-22T07:44:52.36847682Z"} +2026/03/22 07:44:57 [metric_collector] {"stage_name":"metric_collector","events_processed":6204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1240.8,"last_update":"2026-03-22T07:44:52.368709936Z"} +2026/03/22 07:44:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:44:52.375851777Z"} +2026/03/22 07:44:57 [detection_layer] {"stage_name":"detection_layer","events_processed":206,"events_dropped":0,"avg_latency_ms":18.337524059785764,"throughput_eps":0,"last_update":"2026-03-22T07:44:52.479063966Z"} +2026/03/22 07:44:57 [transform_engine] {"stage_name":"transform_engine","events_processed":206,"events_dropped":0,"avg_latency_ms":126.38137701589716,"throughput_eps":0,"last_update":"2026-03-22T07:44:52.479077422Z"} +2026/03/22 07:44:57 ───────────────────────────────────────────────── +2026/03/22 07:45:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:45:02 [log_collector] {"stage_name":"log_collector","events_processed":11071,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2214.2,"last_update":"2026-03-22T07:44:57.36893665Z"} +2026/03/22 07:45:02 [metric_collector] {"stage_name":"metric_collector","events_processed":6209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1241.8,"last_update":"2026-03-22T07:44:57.369024328Z"} +2026/03/22 07:45:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2486,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:44:57.375256387Z"} +2026/03/22 07:45:02 [detection_layer] {"stage_name":"detection_layer","events_processed":206,"events_dropped":0,"avg_latency_ms":18.337524059785764,"throughput_eps":0,"last_update":"2026-03-22T07:44:57.479456608Z"} +2026/03/22 07:45:02 [transform_engine] {"stage_name":"transform_engine","events_processed":207,"events_dropped":0,"avg_latency_ms":133.53541881271772,"throughput_eps":0,"last_update":"2026-03-22T07:44:57.641620497Z"} +2026/03/22 07:45:02 ───────────────────────────────────────────────── +2026/03/22 07:45:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:45:07 [detection_layer] {"stage_name":"detection_layer","events_processed":207,"events_dropped":0,"avg_latency_ms":17.132286047828615,"throughput_eps":0,"last_update":"2026-03-22T07:45:02.479066917Z"} +2026/03/22 07:45:07 [transform_engine] {"stage_name":"transform_engine","events_processed":207,"events_dropped":0,"avg_latency_ms":133.53541881271772,"throughput_eps":0,"last_update":"2026-03-22T07:45:02.479080955Z"} +2026/03/22 07:45:07 [log_collector] {"stage_name":"log_collector","events_processed":11071,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2214.2,"last_update":"2026-03-22T07:45:02.368646381Z"} +2026/03/22 07:45:07 [metric_collector] {"stage_name":"metric_collector","events_processed":6214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1242.8,"last_update":"2026-03-22T07:45:02.368949361Z"} +2026/03/22 07:45:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:45:02.377876914Z"} +2026/03/22 07:45:07 ───────────────────────────────────────────────── +2026/03/22 07:45:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:45:12 [metric_collector] {"stage_name":"metric_collector","events_processed":6219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1243.8,"last_update":"2026-03-22T07:45:07.368800618Z"} +2026/03/22 07:45:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2490,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:45:07.37806226Z"} +2026/03/22 07:45:12 [detection_layer] {"stage_name":"detection_layer","events_processed":207,"events_dropped":0,"avg_latency_ms":17.132286047828615,"throughput_eps":0,"last_update":"2026-03-22T07:45:07.478948442Z"} +2026/03/22 07:45:12 [transform_engine] {"stage_name":"transform_engine","events_processed":207,"events_dropped":0,"avg_latency_ms":133.53541881271772,"throughput_eps":0,"last_update":"2026-03-22T07:45:07.478970965Z"} +2026/03/22 07:45:12 [log_collector] {"stage_name":"log_collector","events_processed":11071,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2214.2,"last_update":"2026-03-22T07:45:07.36858728Z"} +2026/03/22 07:45:12 ───────────────────────────────────────────────── +2026/03/22 07:45:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:45:17 [log_collector] {"stage_name":"log_collector","events_processed":11071,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2214.2,"last_update":"2026-03-22T07:45:12.368405759Z"} +2026/03/22 07:45:17 [metric_collector] {"stage_name":"metric_collector","events_processed":6224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1244.8,"last_update":"2026-03-22T07:45:12.368540828Z"} +2026/03/22 07:45:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:45:12.376713984Z"} +2026/03/22 07:45:17 [detection_layer] {"stage_name":"detection_layer","events_processed":207,"events_dropped":0,"avg_latency_ms":17.132286047828615,"throughput_eps":0,"last_update":"2026-03-22T07:45:12.479891104Z"} +2026/03/22 07:45:17 [transform_engine] {"stage_name":"transform_engine","events_processed":207,"events_dropped":0,"avg_latency_ms":133.53541881271772,"throughput_eps":0,"last_update":"2026-03-22T07:45:12.478816436Z"} +2026/03/22 07:45:17 ───────────────────────────────────────────────── +2026/03/22 07:45:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:45:22 [log_collector] {"stage_name":"log_collector","events_processed":11071,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2214.2,"last_update":"2026-03-22T07:45:17.368287527Z"} +2026/03/22 07:45:22 [metric_collector] {"stage_name":"metric_collector","events_processed":6229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1245.8,"last_update":"2026-03-22T07:45:17.368629241Z"} +2026/03/22 07:45:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:45:17.377481608Z"} +2026/03/22 07:45:22 [detection_layer] {"stage_name":"detection_layer","events_processed":207,"events_dropped":0,"avg_latency_ms":17.132286047828615,"throughput_eps":0,"last_update":"2026-03-22T07:45:17.48000178Z"} +2026/03/22 07:45:22 [transform_engine] {"stage_name":"transform_engine","events_processed":207,"events_dropped":0,"avg_latency_ms":133.53541881271772,"throughput_eps":0,"last_update":"2026-03-22T07:45:17.478903206Z"} +2026/03/22 07:45:22 ───────────────────────────────────────────────── +2026/03/22 07:45:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:45:27 [detection_layer] {"stage_name":"detection_layer","events_processed":207,"events_dropped":0,"avg_latency_ms":17.132286047828615,"throughput_eps":0,"last_update":"2026-03-22T07:45:22.479785906Z"} +2026/03/22 07:45:27 [transform_engine] {"stage_name":"transform_engine","events_processed":207,"events_dropped":0,"avg_latency_ms":133.53541881271772,"throughput_eps":0,"last_update":"2026-03-22T07:45:22.479754466Z"} +2026/03/22 07:45:27 [log_collector] {"stage_name":"log_collector","events_processed":11071,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2214.2,"last_update":"2026-03-22T07:45:27.368378726Z"} +2026/03/22 07:45:27 [metric_collector] {"stage_name":"metric_collector","events_processed":6234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1246.8,"last_update":"2026-03-22T07:45:22.368375625Z"} +2026/03/22 07:45:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2496,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:45:22.375528747Z"} +2026/03/22 07:45:27 ───────────────────────────────────────────────── +2026/03/22 07:45:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:45:32 [log_collector] {"stage_name":"log_collector","events_processed":11071,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2214.2,"last_update":"2026-03-22T07:45:27.368378726Z"} +2026/03/22 07:45:32 [metric_collector] {"stage_name":"metric_collector","events_processed":6239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1247.8,"last_update":"2026-03-22T07:45:27.368773232Z"} +2026/03/22 07:45:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2498,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:45:27.377355562Z"} +2026/03/22 07:45:32 [detection_layer] {"stage_name":"detection_layer","events_processed":207,"events_dropped":0,"avg_latency_ms":17.132286047828615,"throughput_eps":0,"last_update":"2026-03-22T07:45:27.479526124Z"} +2026/03/22 07:45:32 [transform_engine] {"stage_name":"transform_engine","events_processed":208,"events_dropped":0,"avg_latency_ms":172.4124840501742,"throughput_eps":0,"last_update":"2026-03-22T07:45:27.807439135Z"} +2026/03/22 07:45:32 ───────────────────────────────────────────────── +2026/03/22 07:45:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:45:37 [transform_engine] {"stage_name":"transform_engine","events_processed":208,"events_dropped":0,"avg_latency_ms":172.4124840501742,"throughput_eps":0,"last_update":"2026-03-22T07:45:32.479415484Z"} +2026/03/22 07:45:37 [log_collector] {"stage_name":"log_collector","events_processed":11302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2260.4,"last_update":"2026-03-22T07:45:37.368115384Z"} +2026/03/22 07:45:37 [metric_collector] {"stage_name":"metric_collector","events_processed":6244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1248.8,"last_update":"2026-03-22T07:45:32.368960853Z"} +2026/03/22 07:45:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:45:32.376174582Z"} +2026/03/22 07:45:37 [detection_layer] {"stage_name":"detection_layer","events_processed":208,"events_dropped":0,"avg_latency_ms":16.787928838262893,"throughput_eps":0,"last_update":"2026-03-22T07:45:32.479441053Z"} +2026/03/22 07:45:37 ───────────────────────────────────────────────── +2026/03/22 07:45:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:45:42 [log_collector] {"stage_name":"log_collector","events_processed":11302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2260.4,"last_update":"2026-03-22T07:45:37.368115384Z"} +2026/03/22 07:45:42 [metric_collector] {"stage_name":"metric_collector","events_processed":6249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1249.8,"last_update":"2026-03-22T07:45:37.368522493Z"} +2026/03/22 07:45:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:45:37.375327249Z"} +2026/03/22 07:45:42 [detection_layer] {"stage_name":"detection_layer","events_processed":208,"events_dropped":0,"avg_latency_ms":16.787928838262893,"throughput_eps":0,"last_update":"2026-03-22T07:45:37.4792111Z"} +2026/03/22 07:45:42 [transform_engine] {"stage_name":"transform_engine","events_processed":208,"events_dropped":0,"avg_latency_ms":172.4124840501742,"throughput_eps":0,"last_update":"2026-03-22T07:45:37.479199378Z"} +2026/03/22 07:45:42 ───────────────────────────────────────────────── +2026/03/22 07:45:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:45:47 [log_collector] {"stage_name":"log_collector","events_processed":11431,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2286.2,"last_update":"2026-03-22T07:45:42.368366349Z"} +2026/03/22 07:45:47 [metric_collector] {"stage_name":"metric_collector","events_processed":6254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1250.8,"last_update":"2026-03-22T07:45:42.368586391Z"} +2026/03/22 07:45:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:45:42.375468213Z"} +2026/03/22 07:45:47 [detection_layer] {"stage_name":"detection_layer","events_processed":208,"events_dropped":0,"avg_latency_ms":16.787928838262893,"throughput_eps":0,"last_update":"2026-03-22T07:45:42.479508115Z"} +2026/03/22 07:45:47 [transform_engine] {"stage_name":"transform_engine","events_processed":208,"events_dropped":0,"avg_latency_ms":172.4124840501742,"throughput_eps":0,"last_update":"2026-03-22T07:45:42.479486984Z"} +2026/03/22 07:45:47 ───────────────────────────────────────────────── +2026/03/22 07:45:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:45:52 [detection_layer] {"stage_name":"detection_layer","events_processed":208,"events_dropped":0,"avg_latency_ms":16.787928838262893,"throughput_eps":0,"last_update":"2026-03-22T07:45:47.479561619Z"} +2026/03/22 07:45:52 [transform_engine] {"stage_name":"transform_engine","events_processed":208,"events_dropped":0,"avg_latency_ms":172.4124840501742,"throughput_eps":0,"last_update":"2026-03-22T07:45:47.479531792Z"} +2026/03/22 07:45:52 [log_collector] {"stage_name":"log_collector","events_processed":11438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2287.6,"last_update":"2026-03-22T07:45:47.368455492Z"} +2026/03/22 07:45:52 [metric_collector] {"stage_name":"metric_collector","events_processed":6259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1251.8,"last_update":"2026-03-22T07:45:47.368676135Z"} +2026/03/22 07:45:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2506,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:45:47.375343847Z"} +2026/03/22 07:45:52 ───────────────────────────────────────────────── +Saved state: 11 clusters, 11439 messages, reason: none +2026/03/22 07:45:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:45:57 [log_collector] {"stage_name":"log_collector","events_processed":11438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2287.6,"last_update":"2026-03-22T07:45:52.368242204Z"} +2026/03/22 07:45:57 [metric_collector] {"stage_name":"metric_collector","events_processed":6264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1252.8,"last_update":"2026-03-22T07:45:52.368384677Z"} +2026/03/22 07:45:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:45:52.378825989Z"} +2026/03/22 07:45:57 [detection_layer] {"stage_name":"detection_layer","events_processed":208,"events_dropped":0,"avg_latency_ms":16.787928838262893,"throughput_eps":0,"last_update":"2026-03-22T07:45:52.478983321Z"} +2026/03/22 07:45:57 [transform_engine] {"stage_name":"transform_engine","events_processed":208,"events_dropped":0,"avg_latency_ms":172.4124840501742,"throughput_eps":0,"last_update":"2026-03-22T07:45:52.478948785Z"} +2026/03/22 07:45:57 ───────────────────────────────────────────────── +2026/03/22 07:46:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:46:02 [log_collector] {"stage_name":"log_collector","events_processed":11449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2289.8,"last_update":"2026-03-22T07:45:57.368710017Z"} +2026/03/22 07:46:02 [metric_collector] {"stage_name":"metric_collector","events_processed":6269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1253.8,"last_update":"2026-03-22T07:45:57.368822452Z"} +2026/03/22 07:46:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:45:57.374781507Z"} +2026/03/22 07:46:02 [detection_layer] {"stage_name":"detection_layer","events_processed":208,"events_dropped":0,"avg_latency_ms":16.787928838262893,"throughput_eps":0,"last_update":"2026-03-22T07:45:57.478982557Z"} +2026/03/22 07:46:02 [transform_engine] {"stage_name":"transform_engine","events_processed":209,"events_dropped":0,"avg_latency_ms":158.94941244013938,"throughput_eps":0,"last_update":"2026-03-22T07:45:57.583999308Z"} +2026/03/22 07:46:02 ───────────────────────────────────────────────── +2026/03/22 07:46:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:46:07 [log_collector] {"stage_name":"log_collector","events_processed":11449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2289.8,"last_update":"2026-03-22T07:46:02.368236242Z"} +2026/03/22 07:46:07 [metric_collector] {"stage_name":"metric_collector","events_processed":6274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1254.8,"last_update":"2026-03-22T07:46:02.368578678Z"} +2026/03/22 07:46:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2512,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:46:02.378405843Z"} +2026/03/22 07:46:07 [detection_layer] {"stage_name":"detection_layer","events_processed":209,"events_dropped":0,"avg_latency_ms":15.855055870610315,"throughput_eps":0,"last_update":"2026-03-22T07:46:02.479809103Z"} +2026/03/22 07:46:07 [transform_engine] {"stage_name":"transform_engine","events_processed":209,"events_dropped":0,"avg_latency_ms":158.94941244013938,"throughput_eps":0,"last_update":"2026-03-22T07:46:02.479817509Z"} +2026/03/22 07:46:07 ───────────────────────────────────────────────── +2026/03/22 07:46:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:46:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:46:07.378343975Z"} +2026/03/22 07:46:12 [detection_layer] {"stage_name":"detection_layer","events_processed":209,"events_dropped":0,"avg_latency_ms":15.855055870610315,"throughput_eps":0,"last_update":"2026-03-22T07:46:07.47973413Z"} +2026/03/22 07:46:12 [transform_engine] {"stage_name":"transform_engine","events_processed":209,"events_dropped":0,"avg_latency_ms":158.94941244013938,"throughput_eps":0,"last_update":"2026-03-22T07:46:07.479747326Z"} +2026/03/22 07:46:12 [log_collector] {"stage_name":"log_collector","events_processed":11465,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2293,"last_update":"2026-03-22T07:46:07.368505489Z"} +2026/03/22 07:46:12 [metric_collector] {"stage_name":"metric_collector","events_processed":6279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1255.8,"last_update":"2026-03-22T07:46:07.368301148Z"} +2026/03/22 07:46:12 ───────────────────────────────────────────────── +2026/03/22 07:46:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:46:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:46:12.378704775Z"} +2026/03/22 07:46:17 [detection_layer] {"stage_name":"detection_layer","events_processed":209,"events_dropped":0,"avg_latency_ms":15.855055870610315,"throughput_eps":0,"last_update":"2026-03-22T07:46:12.47900448Z"} +2026/03/22 07:46:17 [transform_engine] {"stage_name":"transform_engine","events_processed":209,"events_dropped":0,"avg_latency_ms":158.94941244013938,"throughput_eps":0,"last_update":"2026-03-22T07:46:12.478829265Z"} +2026/03/22 07:46:17 [log_collector] {"stage_name":"log_collector","events_processed":11465,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2293,"last_update":"2026-03-22T07:46:12.368566094Z"} +2026/03/22 07:46:17 [metric_collector] {"stage_name":"metric_collector","events_processed":6284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1256.8,"last_update":"2026-03-22T07:46:12.368837223Z"} +2026/03/22 07:46:17 ───────────────────────────────────────────────── +2026/03/22 07:46:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:46:22 [log_collector] {"stage_name":"log_collector","events_processed":11465,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2293,"last_update":"2026-03-22T07:46:22.368413119Z"} +2026/03/22 07:46:22 [metric_collector] {"stage_name":"metric_collector","events_processed":6289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1257.8,"last_update":"2026-03-22T07:46:17.368470075Z"} +2026/03/22 07:46:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:46:17.378688309Z"} +2026/03/22 07:46:22 [detection_layer] {"stage_name":"detection_layer","events_processed":209,"events_dropped":0,"avg_latency_ms":15.855055870610315,"throughput_eps":0,"last_update":"2026-03-22T07:46:17.479810429Z"} +2026/03/22 07:46:22 [transform_engine] {"stage_name":"transform_engine","events_processed":209,"events_dropped":0,"avg_latency_ms":158.94941244013938,"throughput_eps":0,"last_update":"2026-03-22T07:46:17.479822112Z"} +2026/03/22 07:46:22 ───────────────────────────────────────────────── +2026/03/22 07:46:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:46:27 [transform_engine] {"stage_name":"transform_engine","events_processed":209,"events_dropped":0,"avg_latency_ms":158.94941244013938,"throughput_eps":0,"last_update":"2026-03-22T07:46:22.478927611Z"} +2026/03/22 07:46:27 [log_collector] {"stage_name":"log_collector","events_processed":11465,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2293,"last_update":"2026-03-22T07:46:22.368413119Z"} +2026/03/22 07:46:27 [metric_collector] {"stage_name":"metric_collector","events_processed":6294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1258.8,"last_update":"2026-03-22T07:46:22.369030712Z"} +2026/03/22 07:46:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2520,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:46:22.377788098Z"} +2026/03/22 07:46:27 [detection_layer] {"stage_name":"detection_layer","events_processed":209,"events_dropped":0,"avg_latency_ms":15.855055870610315,"throughput_eps":0,"last_update":"2026-03-22T07:46:22.478982486Z"} +2026/03/22 07:46:27 ───────────────────────────────────────────────── +2026/03/22 07:46:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:46:32 [metric_collector] {"stage_name":"metric_collector","events_processed":6299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1259.8,"last_update":"2026-03-22T07:46:27.369314197Z"} +2026/03/22 07:46:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2522,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:46:27.379791868Z"} +2026/03/22 07:46:32 [detection_layer] {"stage_name":"detection_layer","events_processed":209,"events_dropped":0,"avg_latency_ms":15.855055870610315,"throughput_eps":0,"last_update":"2026-03-22T07:46:27.479051159Z"} +2026/03/22 07:46:32 [transform_engine] {"stage_name":"transform_engine","events_processed":209,"events_dropped":0,"avg_latency_ms":158.94941244013938,"throughput_eps":0,"last_update":"2026-03-22T07:46:27.478992497Z"} +2026/03/22 07:46:32 [log_collector] {"stage_name":"log_collector","events_processed":11465,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2293,"last_update":"2026-03-22T07:46:27.368959739Z"} +2026/03/22 07:46:32 ───────────────────────────────────────────────── +2026/03/22 07:46:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:46:37 [transform_engine] {"stage_name":"transform_engine","events_processed":210,"events_dropped":0,"avg_latency_ms":150.65886535211152,"throughput_eps":0,"last_update":"2026-03-22T07:46:32.478827159Z"} +2026/03/22 07:46:37 [log_collector] {"stage_name":"log_collector","events_processed":11465,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2293,"last_update":"2026-03-22T07:46:32.368200542Z"} +2026/03/22 07:46:37 [metric_collector] {"stage_name":"metric_collector","events_processed":6303,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1260.6,"last_update":"2026-03-22T07:46:32.36806392Z"} +2026/03/22 07:46:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:46:32.377681193Z"} +2026/03/22 07:46:37 [detection_layer] {"stage_name":"detection_layer","events_processed":210,"events_dropped":0,"avg_latency_ms":16.911693296488252,"throughput_eps":0,"last_update":"2026-03-22T07:46:32.478989429Z"} +2026/03/22 07:46:37 ───────────────────────────────────────────────── +2026/03/22 07:46:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:46:42 [detection_layer] {"stage_name":"detection_layer","events_processed":210,"events_dropped":0,"avg_latency_ms":16.911693296488252,"throughput_eps":0,"last_update":"2026-03-22T07:46:37.479667905Z"} +2026/03/22 07:46:42 [transform_engine] {"stage_name":"transform_engine","events_processed":210,"events_dropped":0,"avg_latency_ms":150.65886535211152,"throughput_eps":0,"last_update":"2026-03-22T07:46:37.479679547Z"} +2026/03/22 07:46:42 [log_collector] {"stage_name":"log_collector","events_processed":11465,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2293,"last_update":"2026-03-22T07:46:37.368326841Z"} +2026/03/22 07:46:42 [metric_collector] {"stage_name":"metric_collector","events_processed":6308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1261.6,"last_update":"2026-03-22T07:46:37.368318054Z"} +2026/03/22 07:46:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2526,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:46:37.376479248Z"} +2026/03/22 07:46:42 ───────────────────────────────────────────────── +2026/03/22 07:46:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:46:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:46:42.377966721Z"} +2026/03/22 07:46:47 [detection_layer] {"stage_name":"detection_layer","events_processed":210,"events_dropped":0,"avg_latency_ms":16.911693296488252,"throughput_eps":0,"last_update":"2026-03-22T07:46:42.479200885Z"} +2026/03/22 07:46:47 [transform_engine] {"stage_name":"transform_engine","events_processed":210,"events_dropped":0,"avg_latency_ms":150.65886535211152,"throughput_eps":0,"last_update":"2026-03-22T07:46:42.479213579Z"} +2026/03/22 07:46:47 [log_collector] {"stage_name":"log_collector","events_processed":11465,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2293,"last_update":"2026-03-22T07:46:47.368818421Z"} +2026/03/22 07:46:47 [metric_collector] {"stage_name":"metric_collector","events_processed":6314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1262.8,"last_update":"2026-03-22T07:46:42.36913885Z"} +2026/03/22 07:46:47 ───────────────────────────────────────────────── +2026/03/22 07:46:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:46:52 [transform_engine] {"stage_name":"transform_engine","events_processed":210,"events_dropped":0,"avg_latency_ms":150.65886535211152,"throughput_eps":0,"last_update":"2026-03-22T07:46:47.479907602Z"} +2026/03/22 07:46:52 [log_collector] {"stage_name":"log_collector","events_processed":11465,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2293,"last_update":"2026-03-22T07:46:47.368818421Z"} +2026/03/22 07:46:52 [metric_collector] {"stage_name":"metric_collector","events_processed":6319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1263.8,"last_update":"2026-03-22T07:46:47.369036048Z"} +2026/03/22 07:46:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:46:47.37766126Z"} +2026/03/22 07:46:52 [detection_layer] {"stage_name":"detection_layer","events_processed":210,"events_dropped":0,"avg_latency_ms":16.911693296488252,"throughput_eps":0,"last_update":"2026-03-22T07:46:47.47989589Z"} +2026/03/22 07:46:52 ───────────────────────────────────────────────── +2026/03/22 07:46:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:46:57 [log_collector] {"stage_name":"log_collector","events_processed":11465,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2293,"last_update":"2026-03-22T07:46:52.368605344Z"} +2026/03/22 07:46:57 [metric_collector] {"stage_name":"metric_collector","events_processed":6324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1264.8,"last_update":"2026-03-22T07:46:52.36945393Z"} +2026/03/22 07:46:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2532,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:46:52.378181287Z"} +2026/03/22 07:46:57 [detection_layer] {"stage_name":"detection_layer","events_processed":210,"events_dropped":0,"avg_latency_ms":16.911693296488252,"throughput_eps":0,"last_update":"2026-03-22T07:46:52.479288195Z"} +2026/03/22 07:46:57 [transform_engine] {"stage_name":"transform_engine","events_processed":210,"events_dropped":0,"avg_latency_ms":150.65886535211152,"throughput_eps":0,"last_update":"2026-03-22T07:46:52.479299648Z"} +2026/03/22 07:46:57 ───────────────────────────────────────────────── +2026/03/22 07:47:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:47:02 [transform_engine] {"stage_name":"transform_engine","events_processed":211,"events_dropped":0,"avg_latency_ms":135.5928320816892,"throughput_eps":0,"last_update":"2026-03-22T07:46:57.555009085Z"} +2026/03/22 07:47:02 [log_collector] {"stage_name":"log_collector","events_processed":11465,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2293,"last_update":"2026-03-22T07:47:02.368526179Z"} +2026/03/22 07:47:02 [metric_collector] {"stage_name":"metric_collector","events_processed":6329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1265.8,"last_update":"2026-03-22T07:46:57.368872355Z"} +2026/03/22 07:47:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:46:57.377453011Z"} +2026/03/22 07:47:02 [detection_layer] {"stage_name":"detection_layer","events_processed":210,"events_dropped":0,"avg_latency_ms":16.911693296488252,"throughput_eps":0,"last_update":"2026-03-22T07:46:57.480436495Z"} +2026/03/22 07:47:02 ───────────────────────────────────────────────── +2026/03/22 07:47:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:47:07 [log_collector] {"stage_name":"log_collector","events_processed":11465,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2293,"last_update":"2026-03-22T07:47:07.368288713Z"} +2026/03/22 07:47:07 [metric_collector] {"stage_name":"metric_collector","events_processed":6334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1266.8,"last_update":"2026-03-22T07:47:02.368800003Z"} +2026/03/22 07:47:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2536,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:47:02.376597471Z"} +2026/03/22 07:47:07 [detection_layer] {"stage_name":"detection_layer","events_processed":211,"events_dropped":0,"avg_latency_ms":17.5328456371906,"throughput_eps":0,"last_update":"2026-03-22T07:47:02.479819893Z"} +2026/03/22 07:47:07 [transform_engine] {"stage_name":"transform_engine","events_processed":211,"events_dropped":0,"avg_latency_ms":135.5928320816892,"throughput_eps":0,"last_update":"2026-03-22T07:47:02.47987613Z"} +2026/03/22 07:47:07 ───────────────────────────────────────────────── +2026/03/22 07:47:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:47:12 [log_collector] {"stage_name":"log_collector","events_processed":11465,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2293,"last_update":"2026-03-22T07:47:07.368288713Z"} +2026/03/22 07:47:12 [metric_collector] {"stage_name":"metric_collector","events_processed":6339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1267.8,"last_update":"2026-03-22T07:47:07.368581213Z"} +2026/03/22 07:47:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:47:07.37738608Z"} +2026/03/22 07:47:12 [detection_layer] {"stage_name":"detection_layer","events_processed":211,"events_dropped":0,"avg_latency_ms":17.5328456371906,"throughput_eps":0,"last_update":"2026-03-22T07:47:07.479736941Z"} +2026/03/22 07:47:12 [transform_engine] {"stage_name":"transform_engine","events_processed":211,"events_dropped":0,"avg_latency_ms":135.5928320816892,"throughput_eps":0,"last_update":"2026-03-22T07:47:07.479785534Z"} +2026/03/22 07:47:12 ───────────────────────────────────────────────── +2026/03/22 07:47:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:47:17 [log_collector] {"stage_name":"log_collector","events_processed":11465,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2293,"last_update":"2026-03-22T07:47:12.368013332Z"} +2026/03/22 07:47:17 [metric_collector] {"stage_name":"metric_collector","events_processed":6344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1268.8,"last_update":"2026-03-22T07:47:12.368307155Z"} +2026/03/22 07:47:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2540,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:47:12.377456521Z"} +2026/03/22 07:47:17 [detection_layer] {"stage_name":"detection_layer","events_processed":211,"events_dropped":0,"avg_latency_ms":17.5328456371906,"throughput_eps":0,"last_update":"2026-03-22T07:47:12.479702091Z"} +2026/03/22 07:47:17 [transform_engine] {"stage_name":"transform_engine","events_processed":211,"events_dropped":0,"avg_latency_ms":135.5928320816892,"throughput_eps":0,"last_update":"2026-03-22T07:47:12.479674578Z"} +2026/03/22 07:47:17 ───────────────────────────────────────────────── +Saved state: 11 clusters, 11466 messages, reason: none +2026/03/22 07:47:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:47:22 [log_collector] {"stage_name":"log_collector","events_processed":11465,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2293,"last_update":"2026-03-22T07:47:17.368422711Z"} +2026/03/22 07:47:22 [metric_collector] {"stage_name":"metric_collector","events_processed":6349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1269.8,"last_update":"2026-03-22T07:47:17.369058159Z"} +2026/03/22 07:47:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2542,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:47:17.37708243Z"} +2026/03/22 07:47:22 [detection_layer] {"stage_name":"detection_layer","events_processed":211,"events_dropped":0,"avg_latency_ms":17.5328456371906,"throughput_eps":0,"last_update":"2026-03-22T07:47:17.479494628Z"} +2026/03/22 07:47:22 [transform_engine] {"stage_name":"transform_engine","events_processed":211,"events_dropped":0,"avg_latency_ms":135.5928320816892,"throughput_eps":0,"last_update":"2026-03-22T07:47:17.479391581Z"} +2026/03/22 07:47:22 ───────────────────────────────────────────────── +2026/03/22 07:47:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:47:27 [log_collector] {"stage_name":"log_collector","events_processed":11478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2295.6,"last_update":"2026-03-22T07:47:22.368793387Z"} +2026/03/22 07:47:27 [metric_collector] {"stage_name":"metric_collector","events_processed":6354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1270.8,"last_update":"2026-03-22T07:47:22.36918708Z"} +2026/03/22 07:47:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:47:22.375332001Z"} +2026/03/22 07:47:27 [detection_layer] {"stage_name":"detection_layer","events_processed":211,"events_dropped":0,"avg_latency_ms":17.5328456371906,"throughput_eps":0,"last_update":"2026-03-22T07:47:22.479553426Z"} +2026/03/22 07:47:27 [transform_engine] {"stage_name":"transform_engine","events_processed":211,"events_dropped":0,"avg_latency_ms":135.5928320816892,"throughput_eps":0,"last_update":"2026-03-22T07:47:22.479585677Z"} +2026/03/22 07:47:27 ───────────────────────────────────────────────── +2026/03/22 07:47:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:47:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:47:27.376919264Z"} +2026/03/22 07:47:32 [detection_layer] {"stage_name":"detection_layer","events_processed":211,"events_dropped":0,"avg_latency_ms":17.5328456371906,"throughput_eps":0,"last_update":"2026-03-22T07:47:27.479200181Z"} +2026/03/22 07:47:32 [transform_engine] {"stage_name":"transform_engine","events_processed":212,"events_dropped":0,"avg_latency_ms":131.98345126535136,"throughput_eps":0,"last_update":"2026-03-22T07:47:27.59675707Z"} +2026/03/22 07:47:32 [log_collector] {"stage_name":"log_collector","events_processed":11479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2295.8,"last_update":"2026-03-22T07:47:32.368002025Z"} +2026/03/22 07:47:32 [metric_collector] {"stage_name":"metric_collector","events_processed":6359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1271.8,"last_update":"2026-03-22T07:47:27.368277981Z"} +2026/03/22 07:47:32 ───────────────────────────────────────────────── +2026/03/22 07:47:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:47:37 [metric_collector] {"stage_name":"metric_collector","events_processed":6364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1272.8,"last_update":"2026-03-22T07:47:32.368824631Z"} +2026/03/22 07:47:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:47:32.377750318Z"} +2026/03/22 07:47:37 [detection_layer] {"stage_name":"detection_layer","events_processed":212,"events_dropped":0,"avg_latency_ms":17.85097710975248,"throughput_eps":0,"last_update":"2026-03-22T07:47:32.479077558Z"} +2026/03/22 07:47:37 [transform_engine] {"stage_name":"transform_engine","events_processed":212,"events_dropped":0,"avg_latency_ms":131.98345126535136,"throughput_eps":0,"last_update":"2026-03-22T07:47:32.478908103Z"} +2026/03/22 07:47:37 [log_collector] {"stage_name":"log_collector","events_processed":11479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2295.8,"last_update":"2026-03-22T07:47:32.368002025Z"} +2026/03/22 07:47:37 ───────────────────────────────────────────────── +2026/03/22 07:47:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:47:42 [detection_layer] {"stage_name":"detection_layer","events_processed":212,"events_dropped":0,"avg_latency_ms":17.85097710975248,"throughput_eps":0,"last_update":"2026-03-22T07:47:37.479505571Z"} +2026/03/22 07:47:42 [transform_engine] {"stage_name":"transform_engine","events_processed":212,"events_dropped":0,"avg_latency_ms":131.98345126535136,"throughput_eps":0,"last_update":"2026-03-22T07:47:37.479522923Z"} +2026/03/22 07:47:42 [log_collector] {"stage_name":"log_collector","events_processed":11479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2295.8,"last_update":"2026-03-22T07:47:37.36885383Z"} +2026/03/22 07:47:42 [metric_collector] {"stage_name":"metric_collector","events_processed":6369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1273.8,"last_update":"2026-03-22T07:47:37.369213328Z"} +2026/03/22 07:47:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:47:37.377120746Z"} +2026/03/22 07:47:42 ───────────────────────────────────────────────── +2026/03/22 07:47:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:47:47 [log_collector] {"stage_name":"log_collector","events_processed":11479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2295.8,"last_update":"2026-03-22T07:47:42.368083304Z"} +2026/03/22 07:47:47 [metric_collector] {"stage_name":"metric_collector","events_processed":6374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1274.8,"last_update":"2026-03-22T07:47:42.368692961Z"} +2026/03/22 07:47:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:47:42.377941698Z"} +2026/03/22 07:47:47 [detection_layer] {"stage_name":"detection_layer","events_processed":212,"events_dropped":0,"avg_latency_ms":17.85097710975248,"throughput_eps":0,"last_update":"2026-03-22T07:47:42.479140722Z"} +2026/03/22 07:47:47 [transform_engine] {"stage_name":"transform_engine","events_processed":212,"events_dropped":0,"avg_latency_ms":131.98345126535136,"throughput_eps":0,"last_update":"2026-03-22T07:47:42.479154147Z"} +2026/03/22 07:47:47 ───────────────────────────────────────────────── +2026/03/22 07:47:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:47:52 [metric_collector] {"stage_name":"metric_collector","events_processed":6379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1275.8,"last_update":"2026-03-22T07:47:47.36893243Z"} +2026/03/22 07:47:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:47:47.375387505Z"} +2026/03/22 07:47:52 [detection_layer] {"stage_name":"detection_layer","events_processed":212,"events_dropped":0,"avg_latency_ms":17.85097710975248,"throughput_eps":0,"last_update":"2026-03-22T07:47:47.479589601Z"} +2026/03/22 07:47:52 [transform_engine] {"stage_name":"transform_engine","events_processed":212,"events_dropped":0,"avg_latency_ms":131.98345126535136,"throughput_eps":0,"last_update":"2026-03-22T07:47:47.479602235Z"} +2026/03/22 07:47:52 [log_collector] {"stage_name":"log_collector","events_processed":11479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2295.8,"last_update":"2026-03-22T07:47:47.368727446Z"} +2026/03/22 07:47:52 ───────────────────────────────────────────────── +2026/03/22 07:47:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:47:57 [log_collector] {"stage_name":"log_collector","events_processed":11479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2295.8,"last_update":"2026-03-22T07:47:52.368533755Z"} +2026/03/22 07:47:57 [metric_collector] {"stage_name":"metric_collector","events_processed":6384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1276.8,"last_update":"2026-03-22T07:47:52.368632054Z"} +2026/03/22 07:47:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:47:52.377392165Z"} +2026/03/22 07:47:57 [detection_layer] {"stage_name":"detection_layer","events_processed":212,"events_dropped":0,"avg_latency_ms":17.85097710975248,"throughput_eps":0,"last_update":"2026-03-22T07:47:52.478952309Z"} +2026/03/22 07:47:57 [transform_engine] {"stage_name":"transform_engine","events_processed":212,"events_dropped":0,"avg_latency_ms":131.98345126535136,"throughput_eps":0,"last_update":"2026-03-22T07:47:52.478940145Z"} +2026/03/22 07:47:57 ───────────────────────────────────────────────── +2026/03/22 07:48:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:48:02 [log_collector] {"stage_name":"log_collector","events_processed":11479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2295.8,"last_update":"2026-03-22T07:47:57.368009202Z"} +2026/03/22 07:48:02 [metric_collector] {"stage_name":"metric_collector","events_processed":6389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1277.8,"last_update":"2026-03-22T07:47:57.368346559Z"} +2026/03/22 07:48:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:47:57.377006396Z"} +2026/03/22 07:48:02 [detection_layer] {"stage_name":"detection_layer","events_processed":212,"events_dropped":0,"avg_latency_ms":17.85097710975248,"throughput_eps":0,"last_update":"2026-03-22T07:47:57.47916134Z"} +2026/03/22 07:48:02 [transform_engine] {"stage_name":"transform_engine","events_processed":213,"events_dropped":0,"avg_latency_ms":119.33313901228111,"throughput_eps":0,"last_update":"2026-03-22T07:47:57.547907588Z"} +2026/03/22 07:48:02 ───────────────────────────────────────────────── +2026/03/22 07:48:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:48:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2560,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:48:02.378010158Z"} +2026/03/22 07:48:07 [detection_layer] {"stage_name":"detection_layer","events_processed":213,"events_dropped":0,"avg_latency_ms":18.756198487801985,"throughput_eps":0,"last_update":"2026-03-22T07:48:02.479236473Z"} +2026/03/22 07:48:07 [transform_engine] {"stage_name":"transform_engine","events_processed":213,"events_dropped":0,"avg_latency_ms":119.33313901228111,"throughput_eps":0,"last_update":"2026-03-22T07:48:02.479316447Z"} +2026/03/22 07:48:07 [log_collector] {"stage_name":"log_collector","events_processed":11479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2295.8,"last_update":"2026-03-22T07:48:02.368845953Z"} +2026/03/22 07:48:07 [metric_collector] {"stage_name":"metric_collector","events_processed":6394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1278.8,"last_update":"2026-03-22T07:48:02.369186226Z"} +2026/03/22 07:48:07 ───────────────────────────────────────────────── +2026/03/22 07:48:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:48:12 [log_collector] {"stage_name":"log_collector","events_processed":11479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2295.8,"last_update":"2026-03-22T07:48:07.367974736Z"} +2026/03/22 07:48:12 [metric_collector] {"stage_name":"metric_collector","events_processed":6399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1279.8,"last_update":"2026-03-22T07:48:07.368395071Z"} +2026/03/22 07:48:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:48:07.37807308Z"} +2026/03/22 07:48:12 [detection_layer] {"stage_name":"detection_layer","events_processed":213,"events_dropped":0,"avg_latency_ms":18.756198487801985,"throughput_eps":0,"last_update":"2026-03-22T07:48:07.479291941Z"} +2026/03/22 07:48:12 [transform_engine] {"stage_name":"transform_engine","events_processed":213,"events_dropped":0,"avg_latency_ms":119.33313901228111,"throughput_eps":0,"last_update":"2026-03-22T07:48:07.479335464Z"} +2026/03/22 07:48:12 ───────────────────────────────────────────────── +2026/03/22 07:48:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:48:17 [log_collector] {"stage_name":"log_collector","events_processed":11479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2295.8,"last_update":"2026-03-22T07:48:17.368512258Z"} +2026/03/22 07:48:17 [metric_collector] {"stage_name":"metric_collector","events_processed":6404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1280.8,"last_update":"2026-03-22T07:48:12.368622878Z"} +2026/03/22 07:48:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:48:12.37805209Z"} +2026/03/22 07:48:17 [detection_layer] {"stage_name":"detection_layer","events_processed":213,"events_dropped":0,"avg_latency_ms":18.756198487801985,"throughput_eps":0,"last_update":"2026-03-22T07:48:12.479324182Z"} +2026/03/22 07:48:17 [transform_engine] {"stage_name":"transform_engine","events_processed":213,"events_dropped":0,"avg_latency_ms":119.33313901228111,"throughput_eps":0,"last_update":"2026-03-22T07:48:12.479293173Z"} +2026/03/22 07:48:17 ───────────────────────────────────────────────── +2026/03/22 07:48:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:48:22 [log_collector] {"stage_name":"log_collector","events_processed":11479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2295.8,"last_update":"2026-03-22T07:48:17.368512258Z"} +2026/03/22 07:48:22 [metric_collector] {"stage_name":"metric_collector","events_processed":6409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1281.8,"last_update":"2026-03-22T07:48:17.369024829Z"} +2026/03/22 07:48:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2566,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:48:17.379564358Z"} +2026/03/22 07:48:22 [detection_layer] {"stage_name":"detection_layer","events_processed":213,"events_dropped":0,"avg_latency_ms":18.756198487801985,"throughput_eps":0,"last_update":"2026-03-22T07:48:17.479774827Z"} +2026/03/22 07:48:22 [transform_engine] {"stage_name":"transform_engine","events_processed":213,"events_dropped":0,"avg_latency_ms":119.33313901228111,"throughput_eps":0,"last_update":"2026-03-22T07:48:17.479893915Z"} +2026/03/22 07:48:22 ───────────────────────────────────────────────── +2026/03/22 07:48:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:48:27 [metric_collector] {"stage_name":"metric_collector","events_processed":6419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1283.8,"last_update":"2026-03-22T07:48:27.368411122Z"} +2026/03/22 07:48:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:48:22.37638135Z"} +2026/03/22 07:48:27 [detection_layer] {"stage_name":"detection_layer","events_processed":213,"events_dropped":0,"avg_latency_ms":18.756198487801985,"throughput_eps":0,"last_update":"2026-03-22T07:48:22.479503526Z"} +2026/03/22 07:48:27 [transform_engine] {"stage_name":"transform_engine","events_processed":213,"events_dropped":0,"avg_latency_ms":119.33313901228111,"throughput_eps":0,"last_update":"2026-03-22T07:48:22.479480452Z"} +2026/03/22 07:48:27 [log_collector] {"stage_name":"log_collector","events_processed":11479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2295.8,"last_update":"2026-03-22T07:48:22.368747067Z"} +2026/03/22 07:48:27 ───────────────────────────────────────────────── +Saved state: 11 clusters, 11480 messages, reason: none +2026/03/22 07:48:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:48:32 [transform_engine] {"stage_name":"transform_engine","events_processed":214,"events_dropped":0,"avg_latency_ms":110.51132240982488,"throughput_eps":0,"last_update":"2026-03-22T07:48:27.554294381Z"} +2026/03/22 07:48:32 [log_collector] {"stage_name":"log_collector","events_processed":11479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2295.8,"last_update":"2026-03-22T07:48:27.368429047Z"} +2026/03/22 07:48:32 [metric_collector] {"stage_name":"metric_collector","events_processed":6419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1283.8,"last_update":"2026-03-22T07:48:27.368411122Z"} +2026/03/22 07:48:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2570,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:48:27.377839853Z"} +2026/03/22 07:48:32 [detection_layer] {"stage_name":"detection_layer","events_processed":213,"events_dropped":0,"avg_latency_ms":18.756198487801985,"throughput_eps":0,"last_update":"2026-03-22T07:48:27.479046579Z"} +2026/03/22 07:48:32 ───────────────────────────────────────────────── +2026/03/22 07:48:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:48:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2572,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:48:32.37510716Z"} +2026/03/22 07:48:37 [detection_layer] {"stage_name":"detection_layer","events_processed":214,"events_dropped":0,"avg_latency_ms":18.98388059024159,"throughput_eps":0,"last_update":"2026-03-22T07:48:32.480381789Z"} +2026/03/22 07:48:37 [transform_engine] {"stage_name":"transform_engine","events_processed":214,"events_dropped":0,"avg_latency_ms":110.51132240982488,"throughput_eps":0,"last_update":"2026-03-22T07:48:32.480398271Z"} +2026/03/22 07:48:37 [log_collector] {"stage_name":"log_collector","events_processed":11484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2296.8,"last_update":"2026-03-22T07:48:32.368656814Z"} +2026/03/22 07:48:37 [metric_collector] {"stage_name":"metric_collector","events_processed":6424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1284.8,"last_update":"2026-03-22T07:48:32.368998729Z"} +2026/03/22 07:48:37 ───────────────────────────────────────────────── +2026/03/22 07:48:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:48:42 [detection_layer] {"stage_name":"detection_layer","events_processed":214,"events_dropped":0,"avg_latency_ms":18.98388059024159,"throughput_eps":0,"last_update":"2026-03-22T07:48:37.479783895Z"} +2026/03/22 07:48:42 [transform_engine] {"stage_name":"transform_engine","events_processed":214,"events_dropped":0,"avg_latency_ms":110.51132240982488,"throughput_eps":0,"last_update":"2026-03-22T07:48:37.479795278Z"} +2026/03/22 07:48:42 [log_collector] {"stage_name":"log_collector","events_processed":11484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2296.8,"last_update":"2026-03-22T07:48:37.368833916Z"} +2026/03/22 07:48:42 [metric_collector] {"stage_name":"metric_collector","events_processed":6429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1285.8,"last_update":"2026-03-22T07:48:37.3691599Z"} +2026/03/22 07:48:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:48:37.375529141Z"} +2026/03/22 07:48:42 ───────────────────────────────────────────────── +2026/03/22 07:48:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:48:47 [log_collector] {"stage_name":"log_collector","events_processed":11484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2296.8,"last_update":"2026-03-22T07:48:42.368594881Z"} +2026/03/22 07:48:47 [metric_collector] {"stage_name":"metric_collector","events_processed":6434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1286.8,"last_update":"2026-03-22T07:48:42.368943759Z"} +2026/03/22 07:48:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2576,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:48:42.379562139Z"} +2026/03/22 07:48:47 [detection_layer] {"stage_name":"detection_layer","events_processed":214,"events_dropped":0,"avg_latency_ms":18.98388059024159,"throughput_eps":0,"last_update":"2026-03-22T07:48:42.479733581Z"} +2026/03/22 07:48:47 [transform_engine] {"stage_name":"transform_engine","events_processed":214,"events_dropped":0,"avg_latency_ms":110.51132240982488,"throughput_eps":0,"last_update":"2026-03-22T07:48:42.479744052Z"} +2026/03/22 07:48:47 ───────────────────────────────────────────────── +2026/03/22 07:48:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:48:52 [log_collector] {"stage_name":"log_collector","events_processed":11484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2296.8,"last_update":"2026-03-22T07:48:47.368887495Z"} +2026/03/22 07:48:52 [metric_collector] {"stage_name":"metric_collector","events_processed":6439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1287.8,"last_update":"2026-03-22T07:48:47.369118888Z"} +2026/03/22 07:48:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:48:47.37720675Z"} +2026/03/22 07:48:52 [detection_layer] {"stage_name":"detection_layer","events_processed":214,"events_dropped":0,"avg_latency_ms":18.98388059024159,"throughput_eps":0,"last_update":"2026-03-22T07:48:47.479416208Z"} +2026/03/22 07:48:52 [transform_engine] {"stage_name":"transform_engine","events_processed":214,"events_dropped":0,"avg_latency_ms":110.51132240982488,"throughput_eps":0,"last_update":"2026-03-22T07:48:47.479427779Z"} +2026/03/22 07:48:52 ───────────────────────────────────────────────── +2026/03/22 07:48:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:48:57 [metric_collector] {"stage_name":"metric_collector","events_processed":6444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1288.8,"last_update":"2026-03-22T07:48:52.368689821Z"} +2026/03/22 07:48:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2580,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:48:52.374865571Z"} +2026/03/22 07:48:57 [detection_layer] {"stage_name":"detection_layer","events_processed":214,"events_dropped":0,"avg_latency_ms":18.98388059024159,"throughput_eps":0,"last_update":"2026-03-22T07:48:52.479104816Z"} +2026/03/22 07:48:57 [transform_engine] {"stage_name":"transform_engine","events_processed":214,"events_dropped":0,"avg_latency_ms":110.51132240982488,"throughput_eps":0,"last_update":"2026-03-22T07:48:52.479118492Z"} +2026/03/22 07:48:57 [log_collector] {"stage_name":"log_collector","events_processed":11484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2296.8,"last_update":"2026-03-22T07:48:52.368204853Z"} +2026/03/22 07:48:57 ───────────────────────────────────────────────── +2026/03/22 07:49:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:49:02 [detection_layer] {"stage_name":"detection_layer","events_processed":214,"events_dropped":0,"avg_latency_ms":18.98388059024159,"throughput_eps":0,"last_update":"2026-03-22T07:48:57.479377765Z"} +2026/03/22 07:49:02 [transform_engine] {"stage_name":"transform_engine","events_processed":215,"events_dropped":0,"avg_latency_ms":123.27534552785991,"throughput_eps":0,"last_update":"2026-03-22T07:48:57.653722529Z"} +2026/03/22 07:49:02 [log_collector] {"stage_name":"log_collector","events_processed":11484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2296.8,"last_update":"2026-03-22T07:48:57.368947502Z"} +2026/03/22 07:49:02 [metric_collector] {"stage_name":"metric_collector","events_processed":6449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1289.8,"last_update":"2026-03-22T07:48:57.368930509Z"} +2026/03/22 07:49:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:48:57.376188823Z"} +2026/03/22 07:49:02 ───────────────────────────────────────────────── +2026/03/22 07:49:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:49:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:49:02.377232578Z"} +2026/03/22 07:49:07 [detection_layer] {"stage_name":"detection_layer","events_processed":215,"events_dropped":0,"avg_latency_ms":17.926427672193274,"throughput_eps":0,"last_update":"2026-03-22T07:49:02.479364115Z"} +2026/03/22 07:49:07 [transform_engine] {"stage_name":"transform_engine","events_processed":215,"events_dropped":0,"avg_latency_ms":123.27534552785991,"throughput_eps":0,"last_update":"2026-03-22T07:49:02.479381548Z"} +2026/03/22 07:49:07 [log_collector] {"stage_name":"log_collector","events_processed":11484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2296.8,"last_update":"2026-03-22T07:49:07.368449108Z"} +2026/03/22 07:49:07 [metric_collector] {"stage_name":"metric_collector","events_processed":6454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1290.8,"last_update":"2026-03-22T07:49:02.368549134Z"} +2026/03/22 07:49:07 ───────────────────────────────────────────────── +2026/03/22 07:49:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:49:12 [log_collector] {"stage_name":"log_collector","events_processed":11493,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2298.6,"last_update":"2026-03-22T07:49:12.368821329Z"} +2026/03/22 07:49:12 [metric_collector] {"stage_name":"metric_collector","events_processed":6459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1291.8,"last_update":"2026-03-22T07:49:07.368840549Z"} +2026/03/22 07:49:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2586,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:49:07.375159954Z"} +2026/03/22 07:49:12 [detection_layer] {"stage_name":"detection_layer","events_processed":215,"events_dropped":0,"avg_latency_ms":17.926427672193274,"throughput_eps":0,"last_update":"2026-03-22T07:49:07.479389018Z"} +2026/03/22 07:49:12 [transform_engine] {"stage_name":"transform_engine","events_processed":215,"events_dropped":0,"avg_latency_ms":123.27534552785991,"throughput_eps":0,"last_update":"2026-03-22T07:49:07.479309776Z"} +2026/03/22 07:49:12 ───────────────────────────────────────────────── +2026/03/22 07:49:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:49:17 [log_collector] {"stage_name":"log_collector","events_processed":11493,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2298.6,"last_update":"2026-03-22T07:49:12.368821329Z"} +2026/03/22 07:49:17 [metric_collector] {"stage_name":"metric_collector","events_processed":6464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1292.8,"last_update":"2026-03-22T07:49:12.369220724Z"} +2026/03/22 07:49:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2588,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:49:12.376870999Z"} +2026/03/22 07:49:17 [detection_layer] {"stage_name":"detection_layer","events_processed":215,"events_dropped":0,"avg_latency_ms":17.926427672193274,"throughput_eps":0,"last_update":"2026-03-22T07:49:12.479102666Z"} +2026/03/22 07:49:17 [transform_engine] {"stage_name":"transform_engine","events_processed":215,"events_dropped":0,"avg_latency_ms":123.27534552785991,"throughput_eps":0,"last_update":"2026-03-22T07:49:12.479112356Z"} +2026/03/22 07:49:17 ───────────────────────────────────────────────── +2026/03/22 07:49:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:49:22 [log_collector] {"stage_name":"log_collector","events_processed":11648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2329.6,"last_update":"2026-03-22T07:49:22.368490127Z"} +2026/03/22 07:49:22 [metric_collector] {"stage_name":"metric_collector","events_processed":6469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1293.8,"last_update":"2026-03-22T07:49:17.368300824Z"} +2026/03/22 07:49:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:49:17.378234011Z"} +2026/03/22 07:49:22 [detection_layer] {"stage_name":"detection_layer","events_processed":215,"events_dropped":0,"avg_latency_ms":17.926427672193274,"throughput_eps":0,"last_update":"2026-03-22T07:49:17.479444042Z"} +2026/03/22 07:49:22 [transform_engine] {"stage_name":"transform_engine","events_processed":215,"events_dropped":0,"avg_latency_ms":123.27534552785991,"throughput_eps":0,"last_update":"2026-03-22T07:49:17.479457027Z"} +2026/03/22 07:49:22 ───────────────────────────────────────────────── +2026/03/22 07:49:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:49:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2592,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:49:22.376668303Z"} +2026/03/22 07:49:27 [detection_layer] {"stage_name":"detection_layer","events_processed":215,"events_dropped":0,"avg_latency_ms":17.926427672193274,"throughput_eps":0,"last_update":"2026-03-22T07:49:22.479117618Z"} +2026/03/22 07:49:27 [transform_engine] {"stage_name":"transform_engine","events_processed":215,"events_dropped":0,"avg_latency_ms":123.27534552785991,"throughput_eps":0,"last_update":"2026-03-22T07:49:22.479098341Z"} +2026/03/22 07:49:27 [log_collector] {"stage_name":"log_collector","events_processed":11648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2329.6,"last_update":"2026-03-22T07:49:22.368490127Z"} +2026/03/22 07:49:27 [metric_collector] {"stage_name":"metric_collector","events_processed":6474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1294.8,"last_update":"2026-03-22T07:49:22.368731911Z"} +2026/03/22 07:49:27 ───────────────────────────────────────────────── +2026/03/22 07:49:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:49:32 [log_collector] {"stage_name":"log_collector","events_processed":11840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2368,"last_update":"2026-03-22T07:49:27.368117195Z"} +2026/03/22 07:49:32 [metric_collector] {"stage_name":"metric_collector","events_processed":6479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1295.8,"last_update":"2026-03-22T07:49:27.36853735Z"} +2026/03/22 07:49:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:49:27.374980582Z"} +2026/03/22 07:49:32 [detection_layer] {"stage_name":"detection_layer","events_processed":215,"events_dropped":0,"avg_latency_ms":17.926427672193274,"throughput_eps":0,"last_update":"2026-03-22T07:49:27.479318244Z"} +2026/03/22 07:49:32 [transform_engine] {"stage_name":"transform_engine","events_processed":215,"events_dropped":0,"avg_latency_ms":123.27534552785991,"throughput_eps":0,"last_update":"2026-03-22T07:49:27.479231428Z"} +2026/03/22 07:49:32 ───────────────────────────────────────────────── +2026/03/22 07:49:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:49:37 [detection_layer] {"stage_name":"detection_layer","events_processed":216,"events_dropped":0,"avg_latency_ms":16.75993553775462,"throughput_eps":0,"last_update":"2026-03-22T07:49:32.47934515Z"} +2026/03/22 07:49:37 [transform_engine] {"stage_name":"transform_engine","events_processed":216,"events_dropped":0,"avg_latency_ms":120.75335102228793,"throughput_eps":0,"last_update":"2026-03-22T07:49:32.479393563Z"} +2026/03/22 07:49:37 [log_collector] {"stage_name":"log_collector","events_processed":11840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2368,"last_update":"2026-03-22T07:49:32.36823233Z"} +2026/03/22 07:49:37 [metric_collector] {"stage_name":"metric_collector","events_processed":6484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1296.8,"last_update":"2026-03-22T07:49:32.368585967Z"} +2026/03/22 07:49:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:49:32.377082112Z"} +2026/03/22 07:49:37 ───────────────────────────────────────────────── +2026/03/22 07:49:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:49:42 [log_collector] {"stage_name":"log_collector","events_processed":11840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2368,"last_update":"2026-03-22T07:49:37.368838007Z"} +2026/03/22 07:49:42 [metric_collector] {"stage_name":"metric_collector","events_processed":6489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1297.8,"last_update":"2026-03-22T07:49:37.369175994Z"} +2026/03/22 07:49:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:49:37.378881335Z"} +2026/03/22 07:49:42 [detection_layer] {"stage_name":"detection_layer","events_processed":216,"events_dropped":0,"avg_latency_ms":16.75993553775462,"throughput_eps":0,"last_update":"2026-03-22T07:49:37.479210528Z"} +2026/03/22 07:49:42 [transform_engine] {"stage_name":"transform_engine","events_processed":216,"events_dropped":0,"avg_latency_ms":120.75335102228793,"throughput_eps":0,"last_update":"2026-03-22T07:49:37.479170381Z"} +2026/03/22 07:49:42 ───────────────────────────────────────────────── +2026/03/22 07:49:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:49:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:49:42.378635008Z"} +2026/03/22 07:49:47 [detection_layer] {"stage_name":"detection_layer","events_processed":216,"events_dropped":0,"avg_latency_ms":16.75993553775462,"throughput_eps":0,"last_update":"2026-03-22T07:49:42.479819289Z"} +2026/03/22 07:49:47 [transform_engine] {"stage_name":"transform_engine","events_processed":216,"events_dropped":0,"avg_latency_ms":120.75335102228793,"throughput_eps":0,"last_update":"2026-03-22T07:49:42.479859636Z"} +2026/03/22 07:49:47 [log_collector] {"stage_name":"log_collector","events_processed":11840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2368,"last_update":"2026-03-22T07:49:42.369011163Z"} +2026/03/22 07:49:47 [metric_collector] {"stage_name":"metric_collector","events_processed":6494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1298.8,"last_update":"2026-03-22T07:49:42.369290809Z"} +2026/03/22 07:49:47 ───────────────────────────────────────────────── +2026/03/22 07:49:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:49:52 [log_collector] {"stage_name":"log_collector","events_processed":11840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2368,"last_update":"2026-03-22T07:49:47.368960757Z"} +2026/03/22 07:49:52 [metric_collector] {"stage_name":"metric_collector","events_processed":6499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1299.8,"last_update":"2026-03-22T07:49:47.369203191Z"} +2026/03/22 07:49:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2602,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:49:47.378517173Z"} +2026/03/22 07:49:52 [detection_layer] {"stage_name":"detection_layer","events_processed":216,"events_dropped":0,"avg_latency_ms":16.75993553775462,"throughput_eps":0,"last_update":"2026-03-22T07:49:47.479807858Z"} +2026/03/22 07:49:52 [transform_engine] {"stage_name":"transform_engine","events_processed":216,"events_dropped":0,"avg_latency_ms":120.75335102228793,"throughput_eps":0,"last_update":"2026-03-22T07:49:47.479843966Z"} +2026/03/22 07:49:52 ───────────────────────────────────────────────── +2026/03/22 07:49:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:49:57 [log_collector] {"stage_name":"log_collector","events_processed":11840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2368,"last_update":"2026-03-22T07:49:52.368565913Z"} +2026/03/22 07:49:57 [metric_collector] {"stage_name":"metric_collector","events_processed":6504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1300.8,"last_update":"2026-03-22T07:49:52.368931795Z"} +2026/03/22 07:49:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:49:52.377661917Z"} +2026/03/22 07:49:57 [detection_layer] {"stage_name":"detection_layer","events_processed":216,"events_dropped":0,"avg_latency_ms":16.75993553775462,"throughput_eps":0,"last_update":"2026-03-22T07:49:52.478956138Z"} +2026/03/22 07:49:57 [transform_engine] {"stage_name":"transform_engine","events_processed":216,"events_dropped":0,"avg_latency_ms":120.75335102228793,"throughput_eps":0,"last_update":"2026-03-22T07:49:52.478875083Z"} +2026/03/22 07:49:57 ───────────────────────────────────────────────── +2026/03/22 07:50:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:50:02 [detection_layer] {"stage_name":"detection_layer","events_processed":216,"events_dropped":0,"avg_latency_ms":16.75993553775462,"throughput_eps":0,"last_update":"2026-03-22T07:49:57.479760633Z"} +2026/03/22 07:50:02 [transform_engine] {"stage_name":"transform_engine","events_processed":216,"events_dropped":0,"avg_latency_ms":120.75335102228793,"throughput_eps":0,"last_update":"2026-03-22T07:49:57.479803203Z"} +2026/03/22 07:50:02 [log_collector] {"stage_name":"log_collector","events_processed":11840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2368,"last_update":"2026-03-22T07:49:57.368440195Z"} +2026/03/22 07:50:02 [metric_collector] {"stage_name":"metric_collector","events_processed":6509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1301.8,"last_update":"2026-03-22T07:49:57.368628246Z"} +2026/03/22 07:50:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:49:57.377375151Z"} +2026/03/22 07:50:02 ───────────────────────────────────────────────── +2026/03/22 07:50:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:50:07 [log_collector] {"stage_name":"log_collector","events_processed":11840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2368,"last_update":"2026-03-22T07:50:02.368845917Z"} +2026/03/22 07:50:07 [metric_collector] {"stage_name":"metric_collector","events_processed":6514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1302.8,"last_update":"2026-03-22T07:50:02.369231947Z"} +2026/03/22 07:50:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:50:02.386236249Z"} +2026/03/22 07:50:07 [detection_layer] {"stage_name":"detection_layer","events_processed":217,"events_dropped":0,"avg_latency_ms":17.6632996302037,"throughput_eps":0,"last_update":"2026-03-22T07:50:02.479415495Z"} +2026/03/22 07:50:07 [transform_engine] {"stage_name":"transform_engine","events_processed":217,"events_dropped":0,"avg_latency_ms":110.08494641783035,"throughput_eps":0,"last_update":"2026-03-22T07:50:02.479428771Z"} +2026/03/22 07:50:07 ───────────────────────────────────────────────── +2026/03/22 07:50:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:50:12 [metric_collector] {"stage_name":"metric_collector","events_processed":6519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1303.8,"last_update":"2026-03-22T07:50:07.369425264Z"} +2026/03/22 07:50:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:50:07.378268715Z"} +2026/03/22 07:50:12 [detection_layer] {"stage_name":"detection_layer","events_processed":217,"events_dropped":0,"avg_latency_ms":17.6632996302037,"throughput_eps":0,"last_update":"2026-03-22T07:50:07.479564438Z"} +2026/03/22 07:50:12 [transform_engine] {"stage_name":"transform_engine","events_processed":217,"events_dropped":0,"avg_latency_ms":110.08494641783035,"throughput_eps":0,"last_update":"2026-03-22T07:50:07.479578736Z"} +2026/03/22 07:50:12 [log_collector] {"stage_name":"log_collector","events_processed":11840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2368,"last_update":"2026-03-22T07:50:12.368558412Z"} +2026/03/22 07:50:12 ───────────────────────────────────────────────── +2026/03/22 07:50:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:50:17 [metric_collector] {"stage_name":"metric_collector","events_processed":6524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1304.8,"last_update":"2026-03-22T07:50:12.369297969Z"} +2026/03/22 07:50:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:50:12.37753623Z"} +2026/03/22 07:50:17 [detection_layer] {"stage_name":"detection_layer","events_processed":217,"events_dropped":0,"avg_latency_ms":17.6632996302037,"throughput_eps":0,"last_update":"2026-03-22T07:50:12.47996842Z"} +2026/03/22 07:50:17 [transform_engine] {"stage_name":"transform_engine","events_processed":217,"events_dropped":0,"avg_latency_ms":110.08494641783035,"throughput_eps":0,"last_update":"2026-03-22T07:50:12.479835525Z"} +2026/03/22 07:50:17 [log_collector] {"stage_name":"log_collector","events_processed":11840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2368,"last_update":"2026-03-22T07:50:17.36801863Z"} +2026/03/22 07:50:17 ───────────────────────────────────────────────── +2026/03/22 07:50:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:50:22 [log_collector] {"stage_name":"log_collector","events_processed":11840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2368,"last_update":"2026-03-22T07:50:17.36801863Z"} +2026/03/22 07:50:22 [metric_collector] {"stage_name":"metric_collector","events_processed":6529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1305.8,"last_update":"2026-03-22T07:50:17.368811569Z"} +2026/03/22 07:50:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:50:17.377103973Z"} +2026/03/22 07:50:22 [detection_layer] {"stage_name":"detection_layer","events_processed":217,"events_dropped":0,"avg_latency_ms":17.6632996302037,"throughput_eps":0,"last_update":"2026-03-22T07:50:17.4796546Z"} +2026/03/22 07:50:22 [transform_engine] {"stage_name":"transform_engine","events_processed":217,"events_dropped":0,"avg_latency_ms":110.08494641783035,"throughput_eps":0,"last_update":"2026-03-22T07:50:17.479765974Z"} +2026/03/22 07:50:22 ───────────────────────────────────────────────── +2026/03/22 07:50:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:50:27 [transform_engine] {"stage_name":"transform_engine","events_processed":217,"events_dropped":0,"avg_latency_ms":110.08494641783035,"throughput_eps":0,"last_update":"2026-03-22T07:50:22.478825183Z"} +2026/03/22 07:50:27 [log_collector] {"stage_name":"log_collector","events_processed":11840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2368,"last_update":"2026-03-22T07:50:22.368013062Z"} +2026/03/22 07:50:27 [metric_collector] {"stage_name":"metric_collector","events_processed":6534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1306.8,"last_update":"2026-03-22T07:50:22.36843537Z"} +2026/03/22 07:50:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:50:22.374681766Z"} +2026/03/22 07:50:27 [detection_layer] {"stage_name":"detection_layer","events_processed":217,"events_dropped":0,"avg_latency_ms":17.6632996302037,"throughput_eps":0,"last_update":"2026-03-22T07:50:22.47997716Z"} +2026/03/22 07:50:27 ───────────────────────────────────────────────── +2026/03/22 07:50:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:50:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:50:27.377306848Z"} +2026/03/22 07:50:32 [detection_layer] {"stage_name":"detection_layer","events_processed":217,"events_dropped":0,"avg_latency_ms":17.6632996302037,"throughput_eps":0,"last_update":"2026-03-22T07:50:27.479637784Z"} +2026/03/22 07:50:32 [transform_engine] {"stage_name":"transform_engine","events_processed":217,"events_dropped":0,"avg_latency_ms":110.08494641783035,"throughput_eps":0,"last_update":"2026-03-22T07:50:27.479525239Z"} +2026/03/22 07:50:32 [log_collector] {"stage_name":"log_collector","events_processed":11840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2368,"last_update":"2026-03-22T07:50:27.367996143Z"} +2026/03/22 07:50:32 [metric_collector] {"stage_name":"metric_collector","events_processed":6539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1307.8,"last_update":"2026-03-22T07:50:27.368485501Z"} +2026/03/22 07:50:32 ───────────────────────────────────────────────── +Saved state: 11 clusters, 11841 messages, reason: none +2026/03/22 07:50:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:50:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2620,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:50:32.375358655Z"} +2026/03/22 07:50:37 [detection_layer] {"stage_name":"detection_layer","events_processed":218,"events_dropped":0,"avg_latency_ms":18.06143310416296,"throughput_eps":0,"last_update":"2026-03-22T07:50:32.479583599Z"} +2026/03/22 07:50:37 [transform_engine] {"stage_name":"transform_engine","events_processed":218,"events_dropped":0,"avg_latency_ms":101.67876073426429,"throughput_eps":0,"last_update":"2026-03-22T07:50:32.479560735Z"} +2026/03/22 07:50:37 [log_collector] {"stage_name":"log_collector","events_processed":11843,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2368.6,"last_update":"2026-03-22T07:50:37.367961856Z"} +2026/03/22 07:50:37 [metric_collector] {"stage_name":"metric_collector","events_processed":6544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1308.8,"last_update":"2026-03-22T07:50:32.368419864Z"} +2026/03/22 07:50:37 ───────────────────────────────────────────────── +2026/03/22 07:50:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:50:42 [transform_engine] {"stage_name":"transform_engine","events_processed":218,"events_dropped":0,"avg_latency_ms":101.67876073426429,"throughput_eps":0,"last_update":"2026-03-22T07:50:37.479793651Z"} +2026/03/22 07:50:42 [log_collector] {"stage_name":"log_collector","events_processed":11843,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2368.6,"last_update":"2026-03-22T07:50:37.367961856Z"} +2026/03/22 07:50:42 [metric_collector] {"stage_name":"metric_collector","events_processed":6549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1309.8,"last_update":"2026-03-22T07:50:37.368797627Z"} +2026/03/22 07:50:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2622,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:50:37.376593851Z"} +2026/03/22 07:50:42 [detection_layer] {"stage_name":"detection_layer","events_processed":218,"events_dropped":0,"avg_latency_ms":18.06143310416296,"throughput_eps":0,"last_update":"2026-03-22T07:50:37.479770076Z"} +2026/03/22 07:50:42 ───────────────────────────────────────────────── +2026/03/22 07:50:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:50:47 [log_collector] {"stage_name":"log_collector","events_processed":11843,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2368.6,"last_update":"2026-03-22T07:50:42.368089284Z"} +2026/03/22 07:50:47 [metric_collector] {"stage_name":"metric_collector","events_processed":6554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1310.8,"last_update":"2026-03-22T07:50:42.368308033Z"} +2026/03/22 07:50:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:50:42.376117853Z"} +2026/03/22 07:50:47 [detection_layer] {"stage_name":"detection_layer","events_processed":218,"events_dropped":0,"avg_latency_ms":18.06143310416296,"throughput_eps":0,"last_update":"2026-03-22T07:50:42.479313645Z"} +2026/03/22 07:50:47 [transform_engine] {"stage_name":"transform_engine","events_processed":218,"events_dropped":0,"avg_latency_ms":101.67876073426429,"throughput_eps":0,"last_update":"2026-03-22T07:50:42.479340867Z"} +2026/03/22 07:50:47 ───────────────────────────────────────────────── +2026/03/22 07:50:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:50:52 [metric_collector] {"stage_name":"metric_collector","events_processed":6559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1311.8,"last_update":"2026-03-22T07:50:47.368734947Z"} +2026/03/22 07:50:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:50:47.375815309Z"} +2026/03/22 07:50:52 [detection_layer] {"stage_name":"detection_layer","events_processed":218,"events_dropped":0,"avg_latency_ms":18.06143310416296,"throughput_eps":0,"last_update":"2026-03-22T07:50:47.479171107Z"} +2026/03/22 07:50:52 [transform_engine] {"stage_name":"transform_engine","events_processed":218,"events_dropped":0,"avg_latency_ms":101.67876073426429,"throughput_eps":0,"last_update":"2026-03-22T07:50:47.479146831Z"} +2026/03/22 07:50:52 [log_collector] {"stage_name":"log_collector","events_processed":11851,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2370.2,"last_update":"2026-03-22T07:50:47.368406317Z"} +2026/03/22 07:50:52 ───────────────────────────────────────────────── +2026/03/22 07:50:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:50:57 [log_collector] {"stage_name":"log_collector","events_processed":11854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2370.8,"last_update":"2026-03-22T07:50:52.368636358Z"} +2026/03/22 07:50:57 [metric_collector] {"stage_name":"metric_collector","events_processed":6564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1312.8,"last_update":"2026-03-22T07:50:52.369257058Z"} +2026/03/22 07:50:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:50:52.377147752Z"} +2026/03/22 07:50:57 [detection_layer] {"stage_name":"detection_layer","events_processed":218,"events_dropped":0,"avg_latency_ms":18.06143310416296,"throughput_eps":0,"last_update":"2026-03-22T07:50:52.479431336Z"} +2026/03/22 07:50:57 [transform_engine] {"stage_name":"transform_engine","events_processed":218,"events_dropped":0,"avg_latency_ms":101.67876073426429,"throughput_eps":0,"last_update":"2026-03-22T07:50:52.479277742Z"} +2026/03/22 07:50:57 ───────────────────────────────────────────────── +2026/03/22 07:51:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:51:02 [log_collector] {"stage_name":"log_collector","events_processed":11870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2374,"last_update":"2026-03-22T07:50:57.36800014Z"} +2026/03/22 07:51:02 [metric_collector] {"stage_name":"metric_collector","events_processed":6569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1313.8,"last_update":"2026-03-22T07:50:57.368566165Z"} +2026/03/22 07:51:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:50:57.378243241Z"} +2026/03/22 07:51:02 [detection_layer] {"stage_name":"detection_layer","events_processed":218,"events_dropped":0,"avg_latency_ms":18.06143310416296,"throughput_eps":0,"last_update":"2026-03-22T07:50:57.479429764Z"} +2026/03/22 07:51:02 [transform_engine] {"stage_name":"transform_engine","events_processed":219,"events_dropped":0,"avg_latency_ms":104.09088218741144,"throughput_eps":0,"last_update":"2026-03-22T07:50:57.593270736Z"} +2026/03/22 07:51:02 ───────────────────────────────────────────────── +2026/03/22 07:51:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:51:07 [log_collector] {"stage_name":"log_collector","events_processed":11870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2374,"last_update":"2026-03-22T07:51:02.368227642Z"} +2026/03/22 07:51:07 [metric_collector] {"stage_name":"metric_collector","events_processed":6574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1314.8,"last_update":"2026-03-22T07:51:02.36868594Z"} +2026/03/22 07:51:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2632,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:51:02.377059409Z"} +2026/03/22 07:51:07 [detection_layer] {"stage_name":"detection_layer","events_processed":219,"events_dropped":0,"avg_latency_ms":17.670016283330366,"throughput_eps":0,"last_update":"2026-03-22T07:51:02.479263401Z"} +2026/03/22 07:51:07 [transform_engine] {"stage_name":"transform_engine","events_processed":219,"events_dropped":0,"avg_latency_ms":104.09088218741144,"throughput_eps":0,"last_update":"2026-03-22T07:51:02.479271737Z"} +2026/03/22 07:51:07 ───────────────────────────────────────────────── +2026/03/22 07:51:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:51:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:51:07.375671126Z"} +2026/03/22 07:51:12 [detection_layer] {"stage_name":"detection_layer","events_processed":219,"events_dropped":0,"avg_latency_ms":17.670016283330366,"throughput_eps":0,"last_update":"2026-03-22T07:51:07.478965827Z"} +2026/03/22 07:51:12 [transform_engine] {"stage_name":"transform_engine","events_processed":219,"events_dropped":0,"avg_latency_ms":104.09088218741144,"throughput_eps":0,"last_update":"2026-03-22T07:51:07.478927103Z"} +2026/03/22 07:51:12 [log_collector] {"stage_name":"log_collector","events_processed":11873,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2374.6,"last_update":"2026-03-22T07:51:07.369568467Z"} +2026/03/22 07:51:12 [metric_collector] {"stage_name":"metric_collector","events_processed":6579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1315.8,"last_update":"2026-03-22T07:51:07.369829367Z"} +2026/03/22 07:51:12 ───────────────────────────────────────────────── +2026/03/22 07:51:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:51:17 [log_collector] {"stage_name":"log_collector","events_processed":11884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2376.8,"last_update":"2026-03-22T07:51:12.368955083Z"} +2026/03/22 07:51:17 [metric_collector] {"stage_name":"metric_collector","events_processed":6584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1316.8,"last_update":"2026-03-22T07:51:12.369311105Z"} +2026/03/22 07:51:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:51:12.377552701Z"} +2026/03/22 07:51:17 [detection_layer] {"stage_name":"detection_layer","events_processed":219,"events_dropped":0,"avg_latency_ms":17.670016283330366,"throughput_eps":0,"last_update":"2026-03-22T07:51:12.47974993Z"} +2026/03/22 07:51:17 [transform_engine] {"stage_name":"transform_engine","events_processed":219,"events_dropped":0,"avg_latency_ms":104.09088218741144,"throughput_eps":0,"last_update":"2026-03-22T07:51:12.479759037Z"} +2026/03/22 07:51:17 ───────────────────────────────────────────────── +2026/03/22 07:51:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:51:22 [transform_engine] {"stage_name":"transform_engine","events_processed":219,"events_dropped":0,"avg_latency_ms":104.09088218741144,"throughput_eps":0,"last_update":"2026-03-22T07:51:17.47885647Z"} +2026/03/22 07:51:22 [log_collector] {"stage_name":"log_collector","events_processed":11884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2376.8,"last_update":"2026-03-22T07:51:17.368419058Z"} +2026/03/22 07:51:22 [metric_collector] {"stage_name":"metric_collector","events_processed":6589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1317.8,"last_update":"2026-03-22T07:51:17.368742587Z"} +2026/03/22 07:51:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:51:17.377737438Z"} +2026/03/22 07:51:22 [detection_layer] {"stage_name":"detection_layer","events_processed":219,"events_dropped":0,"avg_latency_ms":17.670016283330366,"throughput_eps":0,"last_update":"2026-03-22T07:51:17.479013772Z"} +2026/03/22 07:51:22 ───────────────────────────────────────────────── +2026/03/22 07:51:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:51:27 [log_collector] {"stage_name":"log_collector","events_processed":11884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2376.8,"last_update":"2026-03-22T07:51:22.368511372Z"} +2026/03/22 07:51:27 [metric_collector] {"stage_name":"metric_collector","events_processed":6594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1318.8,"last_update":"2026-03-22T07:51:22.368935454Z"} +2026/03/22 07:51:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2640,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:51:22.375712956Z"} +2026/03/22 07:51:27 [detection_layer] {"stage_name":"detection_layer","events_processed":219,"events_dropped":0,"avg_latency_ms":17.670016283330366,"throughput_eps":0,"last_update":"2026-03-22T07:51:22.47898351Z"} +2026/03/22 07:51:27 [transform_engine] {"stage_name":"transform_engine","events_processed":219,"events_dropped":0,"avg_latency_ms":104.09088218741144,"throughput_eps":0,"last_update":"2026-03-22T07:51:22.478875764Z"} +2026/03/22 07:51:27 ───────────────────────────────────────────────── +2026/03/22 07:51:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:51:32 [log_collector] {"stage_name":"log_collector","events_processed":11884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2376.8,"last_update":"2026-03-22T07:51:27.368237047Z"} +2026/03/22 07:51:32 [metric_collector] {"stage_name":"metric_collector","events_processed":6599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1319.8,"last_update":"2026-03-22T07:51:27.368862445Z"} +2026/03/22 07:51:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:51:27.377586766Z"} +2026/03/22 07:51:32 [detection_layer] {"stage_name":"detection_layer","events_processed":219,"events_dropped":0,"avg_latency_ms":17.670016283330366,"throughput_eps":0,"last_update":"2026-03-22T07:51:27.479002757Z"} +2026/03/22 07:51:32 [transform_engine] {"stage_name":"transform_engine","events_processed":220,"events_dropped":0,"avg_latency_ms":523.7583419499292,"throughput_eps":0,"last_update":"2026-03-22T07:51:29.681316359Z"} +2026/03/22 07:51:32 ───────────────────────────────────────────────── +2026/03/22 07:51:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:51:37 [log_collector] {"stage_name":"log_collector","events_processed":11884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2376.8,"last_update":"2026-03-22T07:51:32.368290643Z"} +2026/03/22 07:51:37 [metric_collector] {"stage_name":"metric_collector","events_processed":6604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1320.8,"last_update":"2026-03-22T07:51:32.369167763Z"} +2026/03/22 07:51:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:51:32.377131758Z"} +2026/03/22 07:51:37 [detection_layer] {"stage_name":"detection_layer","events_processed":220,"events_dropped":0,"avg_latency_ms":18.012011226664296,"throughput_eps":0,"last_update":"2026-03-22T07:51:32.479345767Z"} +2026/03/22 07:51:37 [transform_engine] {"stage_name":"transform_engine","events_processed":220,"events_dropped":0,"avg_latency_ms":523.7583419499292,"throughput_eps":0,"last_update":"2026-03-22T07:51:32.479371056Z"} +2026/03/22 07:51:37 ───────────────────────────────────────────────── +2026/03/22 07:51:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:51:42 [detection_layer] {"stage_name":"detection_layer","events_processed":220,"events_dropped":0,"avg_latency_ms":18.012011226664296,"throughput_eps":0,"last_update":"2026-03-22T07:51:37.479205776Z"} +2026/03/22 07:51:42 [transform_engine] {"stage_name":"transform_engine","events_processed":220,"events_dropped":0,"avg_latency_ms":523.7583419499292,"throughput_eps":0,"last_update":"2026-03-22T07:51:37.479222548Z"} +2026/03/22 07:51:42 [log_collector] {"stage_name":"log_collector","events_processed":11884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2376.8,"last_update":"2026-03-22T07:51:37.367987027Z"} +2026/03/22 07:51:42 [metric_collector] {"stage_name":"metric_collector","events_processed":6609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1321.8,"last_update":"2026-03-22T07:51:37.368235624Z"} +2026/03/22 07:51:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2646,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:51:37.377929963Z"} +2026/03/22 07:51:42 ───────────────────────────────────────────────── +2026/03/22 07:51:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:51:47 [log_collector] {"stage_name":"log_collector","events_processed":11884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2376.8,"last_update":"2026-03-22T07:51:42.368476585Z"} +2026/03/22 07:51:47 [metric_collector] {"stage_name":"metric_collector","events_processed":6614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1322.8,"last_update":"2026-03-22T07:51:42.369193869Z"} +2026/03/22 07:51:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:51:42.377637592Z"} +2026/03/22 07:51:47 [detection_layer] {"stage_name":"detection_layer","events_processed":220,"events_dropped":0,"avg_latency_ms":18.012011226664296,"throughput_eps":0,"last_update":"2026-03-22T07:51:42.479821495Z"} +2026/03/22 07:51:47 [transform_engine] {"stage_name":"transform_engine","events_processed":220,"events_dropped":0,"avg_latency_ms":523.7583419499292,"throughput_eps":0,"last_update":"2026-03-22T07:51:42.479832525Z"} +2026/03/22 07:51:47 ───────────────────────────────────────────────── +2026/03/22 07:51:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:51:52 [log_collector] {"stage_name":"log_collector","events_processed":11884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2376.8,"last_update":"2026-03-22T07:51:47.368626907Z"} +2026/03/22 07:51:52 [metric_collector] {"stage_name":"metric_collector","events_processed":6619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1323.8,"last_update":"2026-03-22T07:51:47.369011162Z"} +2026/03/22 07:51:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2650,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:51:47.377406724Z"} +2026/03/22 07:51:52 [detection_layer] {"stage_name":"detection_layer","events_processed":220,"events_dropped":0,"avg_latency_ms":18.012011226664296,"throughput_eps":0,"last_update":"2026-03-22T07:51:47.479854151Z"} +2026/03/22 07:51:52 [transform_engine] {"stage_name":"transform_engine","events_processed":220,"events_dropped":0,"avg_latency_ms":523.7583419499292,"throughput_eps":0,"last_update":"2026-03-22T07:51:47.479829844Z"} +2026/03/22 07:51:52 ───────────────────────────────────────────────── +2026/03/22 07:51:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:51:57 [log_collector] {"stage_name":"log_collector","events_processed":11884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2376.8,"last_update":"2026-03-22T07:51:52.36878709Z"} +2026/03/22 07:51:57 [metric_collector] {"stage_name":"metric_collector","events_processed":6624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1324.8,"last_update":"2026-03-22T07:51:52.369165775Z"} +2026/03/22 07:51:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:51:52.37794378Z"} +2026/03/22 07:51:57 [detection_layer] {"stage_name":"detection_layer","events_processed":220,"events_dropped":0,"avg_latency_ms":18.012011226664296,"throughput_eps":0,"last_update":"2026-03-22T07:51:52.479304455Z"} +2026/03/22 07:51:57 [transform_engine] {"stage_name":"transform_engine","events_processed":220,"events_dropped":0,"avg_latency_ms":523.7583419499292,"throughput_eps":0,"last_update":"2026-03-22T07:51:52.47931735Z"} +2026/03/22 07:51:57 ───────────────────────────────────────────────── +2026/03/22 07:52:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:52:02 [log_collector] {"stage_name":"log_collector","events_processed":11884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2376.8,"last_update":"2026-03-22T07:51:57.368012728Z"} +2026/03/22 07:52:02 [metric_collector] {"stage_name":"metric_collector","events_processed":6629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1325.8,"last_update":"2026-03-22T07:51:57.368578701Z"} +2026/03/22 07:52:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:51:57.378269434Z"} +2026/03/22 07:52:02 [detection_layer] {"stage_name":"detection_layer","events_processed":220,"events_dropped":0,"avg_latency_ms":18.012011226664296,"throughput_eps":0,"last_update":"2026-03-22T07:51:57.479478227Z"} +2026/03/22 07:52:02 [transform_engine] {"stage_name":"transform_engine","events_processed":221,"events_dropped":0,"avg_latency_ms":432.3767437599434,"throughput_eps":0,"last_update":"2026-03-22T07:51:57.546342184Z"} +2026/03/22 07:52:02 ───────────────────────────────────────────────── +2026/03/22 07:52:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:52:07 [metric_collector] {"stage_name":"metric_collector","events_processed":6634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1326.8,"last_update":"2026-03-22T07:52:02.368988529Z"} +2026/03/22 07:52:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:52:02.377395563Z"} +2026/03/22 07:52:07 [detection_layer] {"stage_name":"detection_layer","events_processed":221,"events_dropped":0,"avg_latency_ms":18.502102181331438,"throughput_eps":0,"last_update":"2026-03-22T07:52:02.47962954Z"} +2026/03/22 07:52:07 [transform_engine] {"stage_name":"transform_engine","events_processed":221,"events_dropped":0,"avg_latency_ms":432.3767437599434,"throughput_eps":0,"last_update":"2026-03-22T07:52:02.479640892Z"} +2026/03/22 07:52:07 [log_collector] {"stage_name":"log_collector","events_processed":11884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2376.8,"last_update":"2026-03-22T07:52:02.368641294Z"} +2026/03/22 07:52:07 ───────────────────────────────────────────────── +Saved state: 11 clusters, 11885 messages, reason: none +2026/03/22 07:52:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:52:12 [log_collector] {"stage_name":"log_collector","events_processed":11884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2376.8,"last_update":"2026-03-22T07:52:07.367994382Z"} +2026/03/22 07:52:12 [metric_collector] {"stage_name":"metric_collector","events_processed":6639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1327.8,"last_update":"2026-03-22T07:52:07.36840093Z"} +2026/03/22 07:52:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:52:07.378432766Z"} +2026/03/22 07:52:12 [detection_layer] {"stage_name":"detection_layer","events_processed":221,"events_dropped":0,"avg_latency_ms":18.502102181331438,"throughput_eps":0,"last_update":"2026-03-22T07:52:07.479674092Z"} +2026/03/22 07:52:12 [transform_engine] {"stage_name":"transform_engine","events_processed":221,"events_dropped":0,"avg_latency_ms":432.3767437599434,"throughput_eps":0,"last_update":"2026-03-22T07:52:07.479686807Z"} +2026/03/22 07:52:12 ───────────────────────────────────────────────── +2026/03/22 07:52:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:52:17 [log_collector] {"stage_name":"log_collector","events_processed":11886,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2377.2,"last_update":"2026-03-22T07:52:12.368452451Z"} +2026/03/22 07:52:17 [metric_collector] {"stage_name":"metric_collector","events_processed":6644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1328.8,"last_update":"2026-03-22T07:52:12.368802902Z"} +2026/03/22 07:52:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2660,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:52:12.375678942Z"} +2026/03/22 07:52:17 [detection_layer] {"stage_name":"detection_layer","events_processed":221,"events_dropped":0,"avg_latency_ms":18.502102181331438,"throughput_eps":0,"last_update":"2026-03-22T07:52:12.47914513Z"} +2026/03/22 07:52:17 [transform_engine] {"stage_name":"transform_engine","events_processed":221,"events_dropped":0,"avg_latency_ms":432.3767437599434,"throughput_eps":0,"last_update":"2026-03-22T07:52:12.479159387Z"} +2026/03/22 07:52:17 ───────────────────────────────────────────────── +2026/03/22 07:52:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:52:22 [log_collector] {"stage_name":"log_collector","events_processed":11889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2377.8,"last_update":"2026-03-22T07:52:17.368506429Z"} +2026/03/22 07:52:22 [metric_collector] {"stage_name":"metric_collector","events_processed":6649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1329.8,"last_update":"2026-03-22T07:52:17.368727152Z"} +2026/03/22 07:52:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2662,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:52:17.379137954Z"} +2026/03/22 07:52:22 [detection_layer] {"stage_name":"detection_layer","events_processed":221,"events_dropped":0,"avg_latency_ms":18.502102181331438,"throughput_eps":0,"last_update":"2026-03-22T07:52:17.479291796Z"} +2026/03/22 07:52:22 [transform_engine] {"stage_name":"transform_engine","events_processed":221,"events_dropped":0,"avg_latency_ms":432.3767437599434,"throughput_eps":0,"last_update":"2026-03-22T07:52:17.479302817Z"} +2026/03/22 07:52:22 ───────────────────────────────────────────────── +2026/03/22 07:52:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:52:27 [log_collector] {"stage_name":"log_collector","events_processed":11889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2377.8,"last_update":"2026-03-22T07:52:22.367963618Z"} +2026/03/22 07:52:27 [metric_collector] {"stage_name":"metric_collector","events_processed":6654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1330.8,"last_update":"2026-03-22T07:52:22.368196564Z"} +2026/03/22 07:52:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:52:22.375108504Z"} +2026/03/22 07:52:27 [detection_layer] {"stage_name":"detection_layer","events_processed":221,"events_dropped":0,"avg_latency_ms":18.502102181331438,"throughput_eps":0,"last_update":"2026-03-22T07:52:22.479389252Z"} +2026/03/22 07:52:27 [transform_engine] {"stage_name":"transform_engine","events_processed":221,"events_dropped":0,"avg_latency_ms":432.3767437599434,"throughput_eps":0,"last_update":"2026-03-22T07:52:22.479379252Z"} +2026/03/22 07:52:27 ───────────────────────────────────────────────── +2026/03/22 07:52:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:52:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:52:27.380541284Z"} +2026/03/22 07:52:32 [detection_layer] {"stage_name":"detection_layer","events_processed":221,"events_dropped":0,"avg_latency_ms":18.502102181331438,"throughput_eps":0,"last_update":"2026-03-22T07:52:27.47972652Z"} +2026/03/22 07:52:32 [transform_engine] {"stage_name":"transform_engine","events_processed":222,"events_dropped":0,"avg_latency_ms":378.62815440795475,"throughput_eps":0,"last_update":"2026-03-22T07:52:27.643383071Z"} +2026/03/22 07:52:32 [log_collector] {"stage_name":"log_collector","events_processed":11889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2377.8,"last_update":"2026-03-22T07:52:27.368966622Z"} +2026/03/22 07:52:32 [metric_collector] {"stage_name":"metric_collector","events_processed":6659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1331.8,"last_update":"2026-03-22T07:52:27.369153841Z"} +2026/03/22 07:52:32 ───────────────────────────────────────────────── +2026/03/22 07:52:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:52:37 [log_collector] {"stage_name":"log_collector","events_processed":11889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2377.8,"last_update":"2026-03-22T07:52:32.368225389Z"} +2026/03/22 07:52:37 [metric_collector] {"stage_name":"metric_collector","events_processed":6664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1332.8,"last_update":"2026-03-22T07:52:32.368441082Z"} +2026/03/22 07:52:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2668,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:52:32.376532512Z"} +2026/03/22 07:52:37 [detection_layer] {"stage_name":"detection_layer","events_processed":222,"events_dropped":0,"avg_latency_ms":16.95220514506515,"throughput_eps":0,"last_update":"2026-03-22T07:52:32.47902835Z"} +2026/03/22 07:52:37 [transform_engine] {"stage_name":"transform_engine","events_processed":222,"events_dropped":0,"avg_latency_ms":378.62815440795475,"throughput_eps":0,"last_update":"2026-03-22T07:52:32.478993222Z"} +2026/03/22 07:52:37 ───────────────────────────────────────────────── +2026/03/22 07:52:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:52:42 [log_collector] {"stage_name":"log_collector","events_processed":11889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2377.8,"last_update":"2026-03-22T07:52:42.368380322Z"} +2026/03/22 07:52:42 [metric_collector] {"stage_name":"metric_collector","events_processed":6669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1333.8,"last_update":"2026-03-22T07:52:37.368927786Z"} +2026/03/22 07:52:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2670,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:52:37.377023563Z"} +2026/03/22 07:52:42 [detection_layer] {"stage_name":"detection_layer","events_processed":222,"events_dropped":0,"avg_latency_ms":16.95220514506515,"throughput_eps":0,"last_update":"2026-03-22T07:52:37.479245557Z"} +2026/03/22 07:52:42 [transform_engine] {"stage_name":"transform_engine","events_processed":222,"events_dropped":0,"avg_latency_ms":378.62815440795475,"throughput_eps":0,"last_update":"2026-03-22T07:52:37.479279332Z"} +2026/03/22 07:52:42 ───────────────────────────────────────────────── +2026/03/22 07:52:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:52:47 [log_collector] {"stage_name":"log_collector","events_processed":11889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2377.8,"last_update":"2026-03-22T07:52:42.368380322Z"} +2026/03/22 07:52:47 [metric_collector] {"stage_name":"metric_collector","events_processed":6674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1334.8,"last_update":"2026-03-22T07:52:42.368771261Z"} +2026/03/22 07:52:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:52:42.375470894Z"} +2026/03/22 07:52:47 [detection_layer] {"stage_name":"detection_layer","events_processed":222,"events_dropped":0,"avg_latency_ms":16.95220514506515,"throughput_eps":0,"last_update":"2026-03-22T07:52:42.479608377Z"} +2026/03/22 07:52:47 [transform_engine] {"stage_name":"transform_engine","events_processed":222,"events_dropped":0,"avg_latency_ms":378.62815440795475,"throughput_eps":0,"last_update":"2026-03-22T07:52:42.479623586Z"} +2026/03/22 07:52:47 ───────────────────────────────────────────────── +2026/03/22 07:52:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:52:52 [log_collector] {"stage_name":"log_collector","events_processed":11889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2377.8,"last_update":"2026-03-22T07:52:52.368673287Z"} +2026/03/22 07:52:52 [metric_collector] {"stage_name":"metric_collector","events_processed":6679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1335.8,"last_update":"2026-03-22T07:52:47.368782994Z"} +2026/03/22 07:52:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:52:47.375420878Z"} +2026/03/22 07:52:52 [detection_layer] {"stage_name":"detection_layer","events_processed":222,"events_dropped":0,"avg_latency_ms":16.95220514506515,"throughput_eps":0,"last_update":"2026-03-22T07:52:47.479659154Z"} +2026/03/22 07:52:52 [transform_engine] {"stage_name":"transform_engine","events_processed":222,"events_dropped":0,"avg_latency_ms":378.62815440795475,"throughput_eps":0,"last_update":"2026-03-22T07:52:47.479691135Z"} +2026/03/22 07:52:52 ───────────────────────────────────────────────── +2026/03/22 07:52:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:52:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2676,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:52:52.37783717Z"} +2026/03/22 07:52:57 [detection_layer] {"stage_name":"detection_layer","events_processed":222,"events_dropped":0,"avg_latency_ms":16.95220514506515,"throughput_eps":0,"last_update":"2026-03-22T07:52:52.479071221Z"} +2026/03/22 07:52:57 [transform_engine] {"stage_name":"transform_engine","events_processed":222,"events_dropped":0,"avg_latency_ms":378.62815440795475,"throughput_eps":0,"last_update":"2026-03-22T07:52:52.479082552Z"} +2026/03/22 07:52:57 [log_collector] {"stage_name":"log_collector","events_processed":11898,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2379.6,"last_update":"2026-03-22T07:52:57.368451349Z"} +2026/03/22 07:52:57 [metric_collector] {"stage_name":"metric_collector","events_processed":6684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1336.8,"last_update":"2026-03-22T07:52:52.369077772Z"} +2026/03/22 07:52:57 ───────────────────────────────────────────────── +2026/03/22 07:53:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:53:02 [log_collector] {"stage_name":"log_collector","events_processed":11898,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2379.6,"last_update":"2026-03-22T07:52:57.368451349Z"} +2026/03/22 07:53:02 [metric_collector] {"stage_name":"metric_collector","events_processed":6689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1337.8,"last_update":"2026-03-22T07:52:57.368816649Z"} +2026/03/22 07:53:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:52:57.375775308Z"} +2026/03/22 07:53:02 [detection_layer] {"stage_name":"detection_layer","events_processed":222,"events_dropped":0,"avg_latency_ms":16.95220514506515,"throughput_eps":0,"last_update":"2026-03-22T07:52:57.478977889Z"} +2026/03/22 07:53:02 [transform_engine] {"stage_name":"transform_engine","events_processed":222,"events_dropped":0,"avg_latency_ms":378.62815440795475,"throughput_eps":0,"last_update":"2026-03-22T07:52:57.478884931Z"} +2026/03/22 07:53:02 ───────────────────────────────────────────────── +2026/03/22 07:53:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:53:07 [log_collector] {"stage_name":"log_collector","events_processed":12036,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2407.2,"last_update":"2026-03-22T07:53:07.369451233Z"} +2026/03/22 07:53:07 [metric_collector] {"stage_name":"metric_collector","events_processed":6694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1338.8,"last_update":"2026-03-22T07:53:02.368379223Z"} +2026/03/22 07:53:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:53:02.379124545Z"} +2026/03/22 07:53:07 [detection_layer] {"stage_name":"detection_layer","events_processed":223,"events_dropped":0,"avg_latency_ms":16.163780316052122,"throughput_eps":0,"last_update":"2026-03-22T07:53:02.479377798Z"} +2026/03/22 07:53:07 [transform_engine] {"stage_name":"transform_engine","events_processed":223,"events_dropped":0,"avg_latency_ms":795.976833926364,"throughput_eps":0,"last_update":"2026-03-22T07:53:02.479403787Z"} +2026/03/22 07:53:07 ───────────────────────────────────────────────── +2026/03/22 07:53:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:53:12 [log_collector] {"stage_name":"log_collector","events_processed":12036,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2407.2,"last_update":"2026-03-22T07:53:07.369451233Z"} +2026/03/22 07:53:12 [metric_collector] {"stage_name":"metric_collector","events_processed":6699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1339.8,"last_update":"2026-03-22T07:53:07.369693707Z"} +2026/03/22 07:53:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:53:07.380891587Z"} +2026/03/22 07:53:12 [detection_layer] {"stage_name":"detection_layer","events_processed":223,"events_dropped":0,"avg_latency_ms":16.163780316052122,"throughput_eps":0,"last_update":"2026-03-22T07:53:07.479011833Z"} +2026/03/22 07:53:12 [transform_engine] {"stage_name":"transform_engine","events_processed":223,"events_dropped":0,"avg_latency_ms":795.976833926364,"throughput_eps":0,"last_update":"2026-03-22T07:53:07.479099421Z"} +2026/03/22 07:53:12 ───────────────────────────────────────────────── +Saved state: 11 clusters, 12253 messages, reason: none +2026/03/22 07:53:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:53:17 [log_collector] {"stage_name":"log_collector","events_processed":12252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2450.4,"last_update":"2026-03-22T07:53:12.367962402Z"} +2026/03/22 07:53:17 [metric_collector] {"stage_name":"metric_collector","events_processed":6704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1340.8,"last_update":"2026-03-22T07:53:12.368396383Z"} +2026/03/22 07:53:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:53:12.377561779Z"} +2026/03/22 07:53:17 [detection_layer] {"stage_name":"detection_layer","events_processed":223,"events_dropped":0,"avg_latency_ms":16.163780316052122,"throughput_eps":0,"last_update":"2026-03-22T07:53:12.47994968Z"} +2026/03/22 07:53:17 [transform_engine] {"stage_name":"transform_engine","events_processed":223,"events_dropped":0,"avg_latency_ms":795.976833926364,"throughput_eps":0,"last_update":"2026-03-22T07:53:12.479966873Z"} +2026/03/22 07:53:17 ───────────────────────────────────────────────── +2026/03/22 07:53:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:53:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:53:17.374333171Z"} +2026/03/22 07:53:22 [detection_layer] {"stage_name":"detection_layer","events_processed":223,"events_dropped":0,"avg_latency_ms":16.163780316052122,"throughput_eps":0,"last_update":"2026-03-22T07:53:17.479497239Z"} +2026/03/22 07:53:22 [transform_engine] {"stage_name":"transform_engine","events_processed":223,"events_dropped":0,"avg_latency_ms":795.976833926364,"throughput_eps":0,"last_update":"2026-03-22T07:53:17.479520905Z"} +2026/03/22 07:53:22 [log_collector] {"stage_name":"log_collector","events_processed":12255,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2451,"last_update":"2026-03-22T07:53:17.367969011Z"} +2026/03/22 07:53:22 [metric_collector] {"stage_name":"metric_collector","events_processed":6709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1341.8,"last_update":"2026-03-22T07:53:17.368191737Z"} +2026/03/22 07:53:22 ───────────────────────────────────────────────── +2026/03/22 07:53:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:53:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2688,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:53:22.375712264Z"} +2026/03/22 07:53:27 [detection_layer] {"stage_name":"detection_layer","events_processed":223,"events_dropped":0,"avg_latency_ms":16.163780316052122,"throughput_eps":0,"last_update":"2026-03-22T07:53:22.479953654Z"} +2026/03/22 07:53:27 [transform_engine] {"stage_name":"transform_engine","events_processed":223,"events_dropped":0,"avg_latency_ms":795.976833926364,"throughput_eps":0,"last_update":"2026-03-22T07:53:22.478840051Z"} +2026/03/22 07:53:27 [log_collector] {"stage_name":"log_collector","events_processed":12255,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2451,"last_update":"2026-03-22T07:53:22.367976606Z"} +2026/03/22 07:53:27 [metric_collector] {"stage_name":"metric_collector","events_processed":6714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1342.8,"last_update":"2026-03-22T07:53:22.36842264Z"} +2026/03/22 07:53:27 ───────────────────────────────────────────────── +2026/03/22 07:53:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:53:32 [log_collector] {"stage_name":"log_collector","events_processed":12266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2453.2,"last_update":"2026-03-22T07:53:27.368744059Z"} +2026/03/22 07:53:32 [metric_collector] {"stage_name":"metric_collector","events_processed":6719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1343.8,"last_update":"2026-03-22T07:53:27.36910016Z"} +2026/03/22 07:53:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:53:27.375856733Z"} +2026/03/22 07:53:32 [detection_layer] {"stage_name":"detection_layer","events_processed":223,"events_dropped":0,"avg_latency_ms":16.163780316052122,"throughput_eps":0,"last_update":"2026-03-22T07:53:27.479154756Z"} +2026/03/22 07:53:32 [transform_engine] {"stage_name":"transform_engine","events_processed":223,"events_dropped":0,"avg_latency_ms":795.976833926364,"throughput_eps":0,"last_update":"2026-03-22T07:53:27.479070876Z"} +2026/03/22 07:53:32 ───────────────────────────────────────────────── +2026/03/22 07:53:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:53:37 [detection_layer] {"stage_name":"detection_layer","events_processed":224,"events_dropped":0,"avg_latency_ms":15.881311252841698,"throughput_eps":0,"last_update":"2026-03-22T07:53:32.479621901Z"} +2026/03/22 07:53:37 [transform_engine] {"stage_name":"transform_engine","events_processed":224,"events_dropped":0,"avg_latency_ms":1004.1879243410912,"throughput_eps":0,"last_update":"2026-03-22T07:53:32.479648753Z"} +2026/03/22 07:53:37 [log_collector] {"stage_name":"log_collector","events_processed":12273,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2454.6,"last_update":"2026-03-22T07:53:32.367950949Z"} +2026/03/22 07:53:37 [metric_collector] {"stage_name":"metric_collector","events_processed":6724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1344.8,"last_update":"2026-03-22T07:53:32.368164409Z"} +2026/03/22 07:53:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:53:37.368028563Z"} +2026/03/22 07:53:37 ───────────────────────────────────────────────── +2026/03/22 07:53:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:53:42 [transform_engine] {"stage_name":"transform_engine","events_processed":224,"events_dropped":0,"avg_latency_ms":1004.1879243410912,"throughput_eps":0,"last_update":"2026-03-22T07:53:37.479583331Z"} +2026/03/22 07:53:42 [log_collector] {"stage_name":"log_collector","events_processed":12282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2456.4,"last_update":"2026-03-22T07:53:37.368254796Z"} +2026/03/22 07:53:42 [metric_collector] {"stage_name":"metric_collector","events_processed":6729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1345.8,"last_update":"2026-03-22T07:53:37.368468365Z"} +2026/03/22 07:53:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:53:37.368028563Z"} +2026/03/22 07:53:42 [detection_layer] {"stage_name":"detection_layer","events_processed":224,"events_dropped":0,"avg_latency_ms":15.881311252841698,"throughput_eps":0,"last_update":"2026-03-22T07:53:37.479554165Z"} +2026/03/22 07:53:42 ───────────────────────────────────────────────── +2026/03/22 07:53:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:53:47 [detection_layer] {"stage_name":"detection_layer","events_processed":224,"events_dropped":0,"avg_latency_ms":15.881311252841698,"throughput_eps":0,"last_update":"2026-03-22T07:53:42.479933511Z"} +2026/03/22 07:53:47 [transform_engine] {"stage_name":"transform_engine","events_processed":224,"events_dropped":0,"avg_latency_ms":1004.1879243410912,"throughput_eps":0,"last_update":"2026-03-22T07:53:42.478840879Z"} +2026/03/22 07:53:47 [log_collector] {"stage_name":"log_collector","events_processed":12282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2456.4,"last_update":"2026-03-22T07:53:42.368341922Z"} +2026/03/22 07:53:47 [metric_collector] {"stage_name":"metric_collector","events_processed":6734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1346.8,"last_update":"2026-03-22T07:53:42.368720537Z"} +2026/03/22 07:53:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:53:47.368499458Z"} +2026/03/22 07:53:47 ───────────────────────────────────────────────── +2026/03/22 07:53:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:53:52 [log_collector] {"stage_name":"log_collector","events_processed":12282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2456.4,"last_update":"2026-03-22T07:53:47.368829771Z"} +2026/03/22 07:53:52 [metric_collector] {"stage_name":"metric_collector","events_processed":6739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1347.8,"last_update":"2026-03-22T07:53:47.369111761Z"} +2026/03/22 07:53:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:53:47.368499458Z"} +2026/03/22 07:53:52 [detection_layer] {"stage_name":"detection_layer","events_processed":224,"events_dropped":0,"avg_latency_ms":15.881311252841698,"throughput_eps":0,"last_update":"2026-03-22T07:53:47.479091042Z"} +2026/03/22 07:53:52 [transform_engine] {"stage_name":"transform_engine","events_processed":224,"events_dropped":0,"avg_latency_ms":1004.1879243410912,"throughput_eps":0,"last_update":"2026-03-22T07:53:47.47912686Z"} +2026/03/22 07:53:52 ───────────────────────────────────────────────── +2026/03/22 07:53:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:53:57 [log_collector] {"stage_name":"log_collector","events_processed":12282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2456.4,"last_update":"2026-03-22T07:53:52.368455693Z"} +2026/03/22 07:53:57 [metric_collector] {"stage_name":"metric_collector","events_processed":6744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1348.8,"last_update":"2026-03-22T07:53:52.368445765Z"} +2026/03/22 07:53:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2700,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:53:52.37589897Z"} +2026/03/22 07:53:57 [detection_layer] {"stage_name":"detection_layer","events_processed":224,"events_dropped":0,"avg_latency_ms":15.881311252841698,"throughput_eps":0,"last_update":"2026-03-22T07:53:52.479158069Z"} +2026/03/22 07:53:57 [transform_engine] {"stage_name":"transform_engine","events_processed":224,"events_dropped":0,"avg_latency_ms":1004.1879243410912,"throughput_eps":0,"last_update":"2026-03-22T07:53:52.479109396Z"} +2026/03/22 07:53:57 ───────────────────────────────────────────────── +2026/03/22 07:54:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:54:02 [transform_engine] {"stage_name":"transform_engine","events_processed":225,"events_dropped":0,"avg_latency_ms":824.7218434728729,"throughput_eps":0,"last_update":"2026-03-22T07:53:57.5866301Z"} +2026/03/22 07:54:02 [log_collector] {"stage_name":"log_collector","events_processed":12282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2456.4,"last_update":"2026-03-22T07:53:57.367963845Z"} +2026/03/22 07:54:02 [metric_collector] {"stage_name":"metric_collector","events_processed":6749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1349.8,"last_update":"2026-03-22T07:53:57.368439556Z"} +2026/03/22 07:54:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2702,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:53:57.375494589Z"} +2026/03/22 07:54:02 [detection_layer] {"stage_name":"detection_layer","events_processed":224,"events_dropped":0,"avg_latency_ms":15.881311252841698,"throughput_eps":0,"last_update":"2026-03-22T07:53:57.479736971Z"} +2026/03/22 07:54:02 ───────────────────────────────────────────────── +2026/03/22 07:54:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:54:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:54:02.378257101Z"} +2026/03/22 07:54:07 [detection_layer] {"stage_name":"detection_layer","events_processed":225,"events_dropped":0,"avg_latency_ms":16.14549320227336,"throughput_eps":0,"last_update":"2026-03-22T07:54:02.479531717Z"} +2026/03/22 07:54:07 [transform_engine] {"stage_name":"transform_engine","events_processed":225,"events_dropped":0,"avg_latency_ms":824.7218434728729,"throughput_eps":0,"last_update":"2026-03-22T07:54:02.479481681Z"} +2026/03/22 07:54:07 [log_collector] {"stage_name":"log_collector","events_processed":12282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2456.4,"last_update":"2026-03-22T07:54:02.368785107Z"} +2026/03/22 07:54:07 [metric_collector] {"stage_name":"metric_collector","events_processed":6754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1350.8,"last_update":"2026-03-22T07:54:02.369257081Z"} +2026/03/22 07:54:07 ───────────────────────────────────────────────── +2026/03/22 07:54:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:54:12 [log_collector] {"stage_name":"log_collector","events_processed":12282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2456.4,"last_update":"2026-03-22T07:54:07.368663157Z"} +2026/03/22 07:54:12 [metric_collector] {"stage_name":"metric_collector","events_processed":6759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1351.8,"last_update":"2026-03-22T07:54:07.368957Z"} +2026/03/22 07:54:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:54:07.377454557Z"} +2026/03/22 07:54:12 [detection_layer] {"stage_name":"detection_layer","events_processed":225,"events_dropped":0,"avg_latency_ms":16.14549320227336,"throughput_eps":0,"last_update":"2026-03-22T07:54:07.479709291Z"} +2026/03/22 07:54:12 [transform_engine] {"stage_name":"transform_engine","events_processed":225,"events_dropped":0,"avg_latency_ms":824.7218434728729,"throughput_eps":0,"last_update":"2026-03-22T07:54:07.479734609Z"} +2026/03/22 07:54:12 ───────────────────────────────────────────────── +2026/03/22 07:54:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:54:17 [log_collector] {"stage_name":"log_collector","events_processed":12282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2456.4,"last_update":"2026-03-22T07:54:12.368969563Z"} +2026/03/22 07:54:17 [metric_collector] {"stage_name":"metric_collector","events_processed":6764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1352.8,"last_update":"2026-03-22T07:54:12.369137013Z"} +2026/03/22 07:54:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:54:12.378254758Z"} +2026/03/22 07:54:17 [detection_layer] {"stage_name":"detection_layer","events_processed":225,"events_dropped":0,"avg_latency_ms":16.14549320227336,"throughput_eps":0,"last_update":"2026-03-22T07:54:12.479647281Z"} +2026/03/22 07:54:17 [transform_engine] {"stage_name":"transform_engine","events_processed":225,"events_dropped":0,"avg_latency_ms":824.7218434728729,"throughput_eps":0,"last_update":"2026-03-22T07:54:12.479615871Z"} +2026/03/22 07:54:17 ───────────────────────────────────────────────── +2026/03/22 07:54:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:54:22 [metric_collector] {"stage_name":"metric_collector","events_processed":6769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1353.8,"last_update":"2026-03-22T07:54:17.369191662Z"} +2026/03/22 07:54:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:54:17.379013816Z"} +2026/03/22 07:54:22 [detection_layer] {"stage_name":"detection_layer","events_processed":225,"events_dropped":0,"avg_latency_ms":16.14549320227336,"throughput_eps":0,"last_update":"2026-03-22T07:54:17.479219675Z"} +2026/03/22 07:54:22 [transform_engine] {"stage_name":"transform_engine","events_processed":225,"events_dropped":0,"avg_latency_ms":824.7218434728729,"throughput_eps":0,"last_update":"2026-03-22T07:54:17.479207653Z"} +2026/03/22 07:54:22 [log_collector] {"stage_name":"log_collector","events_processed":12282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2456.4,"last_update":"2026-03-22T07:54:17.368903831Z"} +2026/03/22 07:54:22 ───────────────────────────────────────────────── +2026/03/22 07:54:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:54:27 [log_collector] {"stage_name":"log_collector","events_processed":12282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2456.4,"last_update":"2026-03-22T07:54:22.367971564Z"} +2026/03/22 07:54:27 [metric_collector] {"stage_name":"metric_collector","events_processed":6774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1354.8,"last_update":"2026-03-22T07:54:22.368336743Z"} +2026/03/22 07:54:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2712,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:54:22.375092133Z"} +2026/03/22 07:54:27 [detection_layer] {"stage_name":"detection_layer","events_processed":225,"events_dropped":0,"avg_latency_ms":16.14549320227336,"throughput_eps":0,"last_update":"2026-03-22T07:54:22.479516502Z"} +2026/03/22 07:54:27 [transform_engine] {"stage_name":"transform_engine","events_processed":225,"events_dropped":0,"avg_latency_ms":824.7218434728729,"throughput_eps":0,"last_update":"2026-03-22T07:54:22.479591997Z"} +2026/03/22 07:54:27 ───────────────────────────────────────────────── +2026/03/22 07:54:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:54:32 [log_collector] {"stage_name":"log_collector","events_processed":12282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2456.4,"last_update":"2026-03-22T07:54:27.368444315Z"} +2026/03/22 07:54:32 [metric_collector] {"stage_name":"metric_collector","events_processed":6779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1355.8,"last_update":"2026-03-22T07:54:27.369112936Z"} +2026/03/22 07:54:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:54:27.376318097Z"} +2026/03/22 07:54:32 [detection_layer] {"stage_name":"detection_layer","events_processed":225,"events_dropped":0,"avg_latency_ms":16.14549320227336,"throughput_eps":0,"last_update":"2026-03-22T07:54:27.47959548Z"} +2026/03/22 07:54:32 [transform_engine] {"stage_name":"transform_engine","events_processed":226,"events_dropped":0,"avg_latency_ms":672.3025519782984,"throughput_eps":0,"last_update":"2026-03-22T07:54:27.542169727Z"} +2026/03/22 07:54:32 ───────────────────────────────────────────────── +2026/03/22 07:54:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:54:37 [transform_engine] {"stage_name":"transform_engine","events_processed":226,"events_dropped":0,"avg_latency_ms":672.3025519782984,"throughput_eps":0,"last_update":"2026-03-22T07:54:32.479686584Z"} +2026/03/22 07:54:37 [log_collector] {"stage_name":"log_collector","events_processed":12282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2456.4,"last_update":"2026-03-22T07:54:32.368547764Z"} +2026/03/22 07:54:37 [metric_collector] {"stage_name":"metric_collector","events_processed":6784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1356.8,"last_update":"2026-03-22T07:54:32.368904867Z"} +2026/03/22 07:54:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:54:32.375154989Z"} +2026/03/22 07:54:37 [detection_layer] {"stage_name":"detection_layer","events_processed":226,"events_dropped":0,"avg_latency_ms":16.11781256181869,"throughput_eps":0,"last_update":"2026-03-22T07:54:32.479569399Z"} +2026/03/22 07:54:37 ───────────────────────────────────────────────── +2026/03/22 07:54:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:54:42 [log_collector] {"stage_name":"log_collector","events_processed":12282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2456.4,"last_update":"2026-03-22T07:54:37.36807849Z"} +2026/03/22 07:54:42 [metric_collector] {"stage_name":"metric_collector","events_processed":6789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1357.8,"last_update":"2026-03-22T07:54:37.368324652Z"} +2026/03/22 07:54:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2718,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:54:37.375484726Z"} +2026/03/22 07:54:42 [detection_layer] {"stage_name":"detection_layer","events_processed":226,"events_dropped":0,"avg_latency_ms":16.11781256181869,"throughput_eps":0,"last_update":"2026-03-22T07:54:37.479758047Z"} +2026/03/22 07:54:42 [transform_engine] {"stage_name":"transform_engine","events_processed":226,"events_dropped":0,"avg_latency_ms":672.3025519782984,"throughput_eps":0,"last_update":"2026-03-22T07:54:37.479837168Z"} +2026/03/22 07:54:42 ───────────────────────────────────────────────── +2026/03/22 07:54:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:54:47 [log_collector] {"stage_name":"log_collector","events_processed":12282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2456.4,"last_update":"2026-03-22T07:54:42.368658231Z"} +2026/03/22 07:54:47 [metric_collector] {"stage_name":"metric_collector","events_processed":6794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1358.8,"last_update":"2026-03-22T07:54:42.369010475Z"} +2026/03/22 07:54:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:54:42.375437647Z"} +2026/03/22 07:54:47 [detection_layer] {"stage_name":"detection_layer","events_processed":226,"events_dropped":0,"avg_latency_ms":16.11781256181869,"throughput_eps":0,"last_update":"2026-03-22T07:54:42.479704214Z"} +2026/03/22 07:54:47 [transform_engine] {"stage_name":"transform_engine","events_processed":226,"events_dropped":0,"avg_latency_ms":672.3025519782984,"throughput_eps":0,"last_update":"2026-03-22T07:54:42.479722138Z"} +2026/03/22 07:54:47 ───────────────────────────────────────────────── +Saved state: 11 clusters, 12283 messages, reason: none +2026/03/22 07:54:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:54:52 [log_collector] {"stage_name":"log_collector","events_processed":12282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2456.4,"last_update":"2026-03-22T07:54:47.368673646Z"} +2026/03/22 07:54:52 [metric_collector] {"stage_name":"metric_collector","events_processed":6799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1359.8,"last_update":"2026-03-22T07:54:47.368949394Z"} +2026/03/22 07:54:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2722,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:54:47.378143946Z"} +2026/03/22 07:54:52 [detection_layer] {"stage_name":"detection_layer","events_processed":226,"events_dropped":0,"avg_latency_ms":16.11781256181869,"throughput_eps":0,"last_update":"2026-03-22T07:54:47.479455032Z"} +2026/03/22 07:54:52 [transform_engine] {"stage_name":"transform_engine","events_processed":226,"events_dropped":0,"avg_latency_ms":672.3025519782984,"throughput_eps":0,"last_update":"2026-03-22T07:54:47.479477766Z"} +2026/03/22 07:54:52 ───────────────────────────────────────────────── +2026/03/22 07:54:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:54:57 [log_collector] {"stage_name":"log_collector","events_processed":12296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2459.2,"last_update":"2026-03-22T07:54:52.368287358Z"} +2026/03/22 07:54:57 [metric_collector] {"stage_name":"metric_collector","events_processed":6804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1360.8,"last_update":"2026-03-22T07:54:52.368572404Z"} +2026/03/22 07:54:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:54:52.375637326Z"} +2026/03/22 07:54:57 [detection_layer] {"stage_name":"detection_layer","events_processed":226,"events_dropped":0,"avg_latency_ms":16.11781256181869,"throughput_eps":0,"last_update":"2026-03-22T07:54:52.479958828Z"} +2026/03/22 07:54:57 [transform_engine] {"stage_name":"transform_engine","events_processed":226,"events_dropped":0,"avg_latency_ms":672.3025519782984,"throughput_eps":0,"last_update":"2026-03-22T07:54:52.478829896Z"} +2026/03/22 07:54:57 ───────────────────────────────────────────────── +2026/03/22 07:55:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:55:02 [transform_engine] {"stage_name":"transform_engine","events_processed":227,"events_dropped":0,"avg_latency_ms":558.7022503826388,"throughput_eps":0,"last_update":"2026-03-22T07:54:57.584034576Z"} +2026/03/22 07:55:02 [log_collector] {"stage_name":"log_collector","events_processed":12296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2459.2,"last_update":"2026-03-22T07:54:57.368025162Z"} +2026/03/22 07:55:02 [metric_collector] {"stage_name":"metric_collector","events_processed":6809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1361.8,"last_update":"2026-03-22T07:54:57.368429577Z"} +2026/03/22 07:55:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:54:57.37550003Z"} +2026/03/22 07:55:02 [detection_layer] {"stage_name":"detection_layer","events_processed":226,"events_dropped":0,"avg_latency_ms":16.11781256181869,"throughput_eps":0,"last_update":"2026-03-22T07:54:57.479719847Z"} +2026/03/22 07:55:02 ───────────────────────────────────────────────── +2026/03/22 07:55:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:55:07 [detection_layer] {"stage_name":"detection_layer","events_processed":227,"events_dropped":0,"avg_latency_ms":16.350955049454953,"throughput_eps":0,"last_update":"2026-03-22T07:55:02.478948954Z"} +2026/03/22 07:55:07 [transform_engine] {"stage_name":"transform_engine","events_processed":227,"events_dropped":0,"avg_latency_ms":558.7022503826388,"throughput_eps":0,"last_update":"2026-03-22T07:55:02.478865735Z"} +2026/03/22 07:55:07 [log_collector] {"stage_name":"log_collector","events_processed":12296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2459.2,"last_update":"2026-03-22T07:55:02.368448497Z"} +2026/03/22 07:55:07 [metric_collector] {"stage_name":"metric_collector","events_processed":6814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1362.8,"last_update":"2026-03-22T07:55:02.368871598Z"} +2026/03/22 07:55:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2728,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:55:02.375758519Z"} +2026/03/22 07:55:07 ───────────────────────────────────────────────── +2026/03/22 07:55:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:55:12 [log_collector] {"stage_name":"log_collector","events_processed":12296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2459.2,"last_update":"2026-03-22T07:55:07.368253328Z"} +2026/03/22 07:55:12 [metric_collector] {"stage_name":"metric_collector","events_processed":6819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1363.8,"last_update":"2026-03-22T07:55:07.368654737Z"} +2026/03/22 07:55:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2730,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:55:07.379096899Z"} +2026/03/22 07:55:12 [detection_layer] {"stage_name":"detection_layer","events_processed":227,"events_dropped":0,"avg_latency_ms":16.350955049454953,"throughput_eps":0,"last_update":"2026-03-22T07:55:07.479489275Z"} +2026/03/22 07:55:12 [transform_engine] {"stage_name":"transform_engine","events_processed":227,"events_dropped":0,"avg_latency_ms":558.7022503826388,"throughput_eps":0,"last_update":"2026-03-22T07:55:07.479535985Z"} +2026/03/22 07:55:12 ───────────────────────────────────────────────── +2026/03/22 07:55:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:55:17 [log_collector] {"stage_name":"log_collector","events_processed":12296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2459.2,"last_update":"2026-03-22T07:55:12.368549789Z"} +2026/03/22 07:55:17 [metric_collector] {"stage_name":"metric_collector","events_processed":6824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1364.8,"last_update":"2026-03-22T07:55:12.369180588Z"} +2026/03/22 07:55:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:55:12.37579671Z"} +2026/03/22 07:55:17 [detection_layer] {"stage_name":"detection_layer","events_processed":227,"events_dropped":0,"avg_latency_ms":16.350955049454953,"throughput_eps":0,"last_update":"2026-03-22T07:55:12.478961156Z"} +2026/03/22 07:55:17 [transform_engine] {"stage_name":"transform_engine","events_processed":227,"events_dropped":0,"avg_latency_ms":558.7022503826388,"throughput_eps":0,"last_update":"2026-03-22T07:55:12.478944634Z"} +2026/03/22 07:55:17 ───────────────────────────────────────────────── +2026/03/22 07:55:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:55:22 [transform_engine] {"stage_name":"transform_engine","events_processed":227,"events_dropped":0,"avg_latency_ms":558.7022503826388,"throughput_eps":0,"last_update":"2026-03-22T07:55:17.478878877Z"} +2026/03/22 07:55:22 [log_collector] {"stage_name":"log_collector","events_processed":12296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2459.2,"last_update":"2026-03-22T07:55:17.368548817Z"} +2026/03/22 07:55:22 [metric_collector] {"stage_name":"metric_collector","events_processed":6829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1365.8,"last_update":"2026-03-22T07:55:17.368964001Z"} +2026/03/22 07:55:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:55:17.375690085Z"} +2026/03/22 07:55:22 [detection_layer] {"stage_name":"detection_layer","events_processed":227,"events_dropped":0,"avg_latency_ms":16.350955049454953,"throughput_eps":0,"last_update":"2026-03-22T07:55:17.480015143Z"} +2026/03/22 07:55:22 ───────────────────────────────────────────────── +2026/03/22 07:55:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:55:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2736,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:55:22.375317737Z"} +2026/03/22 07:55:27 [detection_layer] {"stage_name":"detection_layer","events_processed":227,"events_dropped":0,"avg_latency_ms":16.350955049454953,"throughput_eps":0,"last_update":"2026-03-22T07:55:22.479521864Z"} +2026/03/22 07:55:27 [transform_engine] {"stage_name":"transform_engine","events_processed":227,"events_dropped":0,"avg_latency_ms":558.7022503826388,"throughput_eps":0,"last_update":"2026-03-22T07:55:22.479554125Z"} +2026/03/22 07:55:27 [log_collector] {"stage_name":"log_collector","events_processed":12296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2459.2,"last_update":"2026-03-22T07:55:22.367973148Z"} +2026/03/22 07:55:27 [metric_collector] {"stage_name":"metric_collector","events_processed":6834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1366.8,"last_update":"2026-03-22T07:55:22.368313461Z"} +2026/03/22 07:55:27 ───────────────────────────────────────────────── +2026/03/22 07:55:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:55:32 [detection_layer] {"stage_name":"detection_layer","events_processed":227,"events_dropped":0,"avg_latency_ms":16.350955049454953,"throughput_eps":0,"last_update":"2026-03-22T07:55:27.478973433Z"} +2026/03/22 07:55:32 [transform_engine] {"stage_name":"transform_engine","events_processed":228,"events_dropped":0,"avg_latency_ms":461.50218750611106,"throughput_eps":0,"last_update":"2026-03-22T07:55:27.551543095Z"} +2026/03/22 07:55:32 [log_collector] {"stage_name":"log_collector","events_processed":12296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2459.2,"last_update":"2026-03-22T07:55:27.368436506Z"} +2026/03/22 07:55:32 [metric_collector] {"stage_name":"metric_collector","events_processed":6839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1367.8,"last_update":"2026-03-22T07:55:27.368778932Z"} +2026/03/22 07:55:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2738,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:55:27.375670001Z"} +2026/03/22 07:55:32 ───────────────────────────────────────────────── +2026/03/22 07:55:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:55:37 [log_collector] {"stage_name":"log_collector","events_processed":12296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2459.2,"last_update":"2026-03-22T07:55:32.368439798Z"} +2026/03/22 07:55:37 [metric_collector] {"stage_name":"metric_collector","events_processed":6844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1368.8,"last_update":"2026-03-22T07:55:32.368710226Z"} +2026/03/22 07:55:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2740,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:55:32.37543176Z"} +2026/03/22 07:55:37 [detection_layer] {"stage_name":"detection_layer","events_processed":228,"events_dropped":0,"avg_latency_ms":16.293708239563962,"throughput_eps":0,"last_update":"2026-03-22T07:55:32.479603055Z"} +2026/03/22 07:55:37 [transform_engine] {"stage_name":"transform_engine","events_processed":228,"events_dropped":0,"avg_latency_ms":461.50218750611106,"throughput_eps":0,"last_update":"2026-03-22T07:55:32.479556455Z"} +2026/03/22 07:55:37 ───────────────────────────────────────────────── +2026/03/22 07:55:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:55:42 [log_collector] {"stage_name":"log_collector","events_processed":12296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2459.2,"last_update":"2026-03-22T07:55:42.368825234Z"} +2026/03/22 07:55:42 [metric_collector] {"stage_name":"metric_collector","events_processed":6849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1369.8,"last_update":"2026-03-22T07:55:37.368901454Z"} +2026/03/22 07:55:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:55:37.376839249Z"} +2026/03/22 07:55:42 [detection_layer] {"stage_name":"detection_layer","events_processed":228,"events_dropped":0,"avg_latency_ms":16.293708239563962,"throughput_eps":0,"last_update":"2026-03-22T07:55:37.479051931Z"} +2026/03/22 07:55:42 [transform_engine] {"stage_name":"transform_engine","events_processed":228,"events_dropped":0,"avg_latency_ms":461.50218750611106,"throughput_eps":0,"last_update":"2026-03-22T07:55:37.479159777Z"} +2026/03/22 07:55:42 ───────────────────────────────────────────────── +2026/03/22 07:55:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:55:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:55:42.377463341Z"} +2026/03/22 07:55:47 [detection_layer] {"stage_name":"detection_layer","events_processed":228,"events_dropped":0,"avg_latency_ms":16.293708239563962,"throughput_eps":0,"last_update":"2026-03-22T07:55:42.479753271Z"} +2026/03/22 07:55:47 [transform_engine] {"stage_name":"transform_engine","events_processed":228,"events_dropped":0,"avg_latency_ms":461.50218750611106,"throughput_eps":0,"last_update":"2026-03-22T07:55:42.479648981Z"} +2026/03/22 07:55:47 [log_collector] {"stage_name":"log_collector","events_processed":12296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2459.2,"last_update":"2026-03-22T07:55:42.368825234Z"} +2026/03/22 07:55:47 [metric_collector] {"stage_name":"metric_collector","events_processed":6854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1370.8,"last_update":"2026-03-22T07:55:42.3692508Z"} +2026/03/22 07:55:47 ───────────────────────────────────────────────── +2026/03/22 07:55:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:55:52 [log_collector] {"stage_name":"log_collector","events_processed":12296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2459.2,"last_update":"2026-03-22T07:55:47.368775603Z"} +2026/03/22 07:55:52 [metric_collector] {"stage_name":"metric_collector","events_processed":6859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1371.8,"last_update":"2026-03-22T07:55:47.369132456Z"} +2026/03/22 07:55:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:55:47.378071859Z"} +2026/03/22 07:55:52 [detection_layer] {"stage_name":"detection_layer","events_processed":228,"events_dropped":0,"avg_latency_ms":16.293708239563962,"throughput_eps":0,"last_update":"2026-03-22T07:55:47.479402081Z"} +2026/03/22 07:55:52 [transform_engine] {"stage_name":"transform_engine","events_processed":228,"events_dropped":0,"avg_latency_ms":461.50218750611106,"throughput_eps":0,"last_update":"2026-03-22T07:55:47.479264247Z"} +2026/03/22 07:55:52 ───────────────────────────────────────────────── +Saved state: 11 clusters, 12297 messages, reason: none +2026/03/22 07:55:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:55:57 [transform_engine] {"stage_name":"transform_engine","events_processed":228,"events_dropped":0,"avg_latency_ms":461.50218750611106,"throughput_eps":0,"last_update":"2026-03-22T07:55:52.479377194Z"} +2026/03/22 07:55:57 [log_collector] {"stage_name":"log_collector","events_processed":12301,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2460.2,"last_update":"2026-03-22T07:55:57.369079473Z"} +2026/03/22 07:55:57 [metric_collector] {"stage_name":"metric_collector","events_processed":6869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1373.8,"last_update":"2026-03-22T07:55:57.368484633Z"} +2026/03/22 07:55:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:55:52.376108329Z"} +2026/03/22 07:55:57 [detection_layer] {"stage_name":"detection_layer","events_processed":228,"events_dropped":0,"avg_latency_ms":16.293708239563962,"throughput_eps":0,"last_update":"2026-03-22T07:55:52.479331196Z"} +2026/03/22 07:55:57 ───────────────────────────────────────────────── +2026/03/22 07:56:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:56:02 [detection_layer] {"stage_name":"detection_layer","events_processed":228,"events_dropped":0,"avg_latency_ms":16.293708239563962,"throughput_eps":0,"last_update":"2026-03-22T07:55:57.479289733Z"} +2026/03/22 07:56:02 [transform_engine] {"stage_name":"transform_engine","events_processed":229,"events_dropped":0,"avg_latency_ms":391.4954380048889,"throughput_eps":0,"last_update":"2026-03-22T07:55:57.590743215Z"} +2026/03/22 07:56:02 [log_collector] {"stage_name":"log_collector","events_processed":12301,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2460.2,"last_update":"2026-03-22T07:56:02.368454597Z"} +2026/03/22 07:56:02 [metric_collector] {"stage_name":"metric_collector","events_processed":6869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1373.8,"last_update":"2026-03-22T07:55:57.368484633Z"} +2026/03/22 07:56:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2750,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:55:57.385098025Z"} +2026/03/22 07:56:02 ───────────────────────────────────────────────── +2026/03/22 07:56:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:56:07 [log_collector] {"stage_name":"log_collector","events_processed":12301,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2460.2,"last_update":"2026-03-22T07:56:07.368991063Z"} +2026/03/22 07:56:07 [metric_collector] {"stage_name":"metric_collector","events_processed":6879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1375.8,"last_update":"2026-03-22T07:56:07.369413372Z"} +2026/03/22 07:56:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2752,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:56:02.382878475Z"} +2026/03/22 07:56:07 [detection_layer] {"stage_name":"detection_layer","events_processed":229,"events_dropped":0,"avg_latency_ms":15.35233359165117,"throughput_eps":0,"last_update":"2026-03-22T07:56:02.479696444Z"} +2026/03/22 07:56:07 [transform_engine] {"stage_name":"transform_engine","events_processed":229,"events_dropped":0,"avg_latency_ms":391.4954380048889,"throughput_eps":0,"last_update":"2026-03-22T07:56:02.479744256Z"} +2026/03/22 07:56:07 ───────────────────────────────────────────────── +2026/03/22 07:56:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:56:12 [detection_layer] {"stage_name":"detection_layer","events_processed":229,"events_dropped":0,"avg_latency_ms":15.35233359165117,"throughput_eps":0,"last_update":"2026-03-22T07:56:07.479820169Z"} +2026/03/22 07:56:12 [transform_engine] {"stage_name":"transform_engine","events_processed":229,"events_dropped":0,"avg_latency_ms":391.4954380048889,"throughput_eps":0,"last_update":"2026-03-22T07:56:07.479849134Z"} +2026/03/22 07:56:12 [log_collector] {"stage_name":"log_collector","events_processed":12301,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2460.2,"last_update":"2026-03-22T07:56:07.368991063Z"} +2026/03/22 07:56:12 [metric_collector] {"stage_name":"metric_collector","events_processed":6879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1375.8,"last_update":"2026-03-22T07:56:07.369413372Z"} +2026/03/22 07:56:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:56:07.377633878Z"} +2026/03/22 07:56:12 ───────────────────────────────────────────────── +2026/03/22 07:56:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:56:17 [log_collector] {"stage_name":"log_collector","events_processed":12301,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2460.2,"last_update":"2026-03-22T07:56:12.367979869Z"} +2026/03/22 07:56:17 [metric_collector] {"stage_name":"metric_collector","events_processed":6884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1376.8,"last_update":"2026-03-22T07:56:12.368381318Z"} +2026/03/22 07:56:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:56:12.380491705Z"} +2026/03/22 07:56:17 [detection_layer] {"stage_name":"detection_layer","events_processed":229,"events_dropped":0,"avg_latency_ms":15.35233359165117,"throughput_eps":0,"last_update":"2026-03-22T07:56:12.479685413Z"} +2026/03/22 07:56:17 [transform_engine] {"stage_name":"transform_engine","events_processed":229,"events_dropped":0,"avg_latency_ms":391.4954380048889,"throughput_eps":0,"last_update":"2026-03-22T07:56:12.479697647Z"} +2026/03/22 07:56:17 ───────────────────────────────────────────────── +2026/03/22 07:56:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:56:22 [log_collector] {"stage_name":"log_collector","events_processed":12301,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2460.2,"last_update":"2026-03-22T07:56:22.368395209Z"} +2026/03/22 07:56:22 [metric_collector] {"stage_name":"metric_collector","events_processed":6889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1377.8,"last_update":"2026-03-22T07:56:17.368649772Z"} +2026/03/22 07:56:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2758,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:56:17.374472405Z"} +2026/03/22 07:56:22 [detection_layer] {"stage_name":"detection_layer","events_processed":229,"events_dropped":0,"avg_latency_ms":15.35233359165117,"throughput_eps":0,"last_update":"2026-03-22T07:56:17.479849147Z"} +2026/03/22 07:56:22 [transform_engine] {"stage_name":"transform_engine","events_processed":229,"events_dropped":0,"avg_latency_ms":391.4954380048889,"throughput_eps":0,"last_update":"2026-03-22T07:56:17.479874235Z"} +2026/03/22 07:56:22 ───────────────────────────────────────────────── +2026/03/22 07:56:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:56:27 [log_collector] {"stage_name":"log_collector","events_processed":12301,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2460.2,"last_update":"2026-03-22T07:56:27.368803064Z"} +2026/03/22 07:56:27 [metric_collector] {"stage_name":"metric_collector","events_processed":6894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1378.8,"last_update":"2026-03-22T07:56:22.368954451Z"} +2026/03/22 07:56:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:56:22.377749267Z"} +2026/03/22 07:56:27 [detection_layer] {"stage_name":"detection_layer","events_processed":229,"events_dropped":0,"avg_latency_ms":15.35233359165117,"throughput_eps":0,"last_update":"2026-03-22T07:56:22.481371378Z"} +2026/03/22 07:56:27 [transform_engine] {"stage_name":"transform_engine","events_processed":229,"events_dropped":0,"avg_latency_ms":391.4954380048889,"throughput_eps":0,"last_update":"2026-03-22T07:56:22.481403219Z"} +2026/03/22 07:56:27 ───────────────────────────────────────────────── +2026/03/22 07:56:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:56:32 [log_collector] {"stage_name":"log_collector","events_processed":12301,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2460.2,"last_update":"2026-03-22T07:56:27.368803064Z"} +2026/03/22 07:56:32 [metric_collector] {"stage_name":"metric_collector","events_processed":6899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1379.8,"last_update":"2026-03-22T07:56:27.369243887Z"} +2026/03/22 07:56:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:56:27.375799424Z"} +2026/03/22 07:56:32 [detection_layer] {"stage_name":"detection_layer","events_processed":229,"events_dropped":0,"avg_latency_ms":15.35233359165117,"throughput_eps":0,"last_update":"2026-03-22T07:56:27.480397555Z"} +2026/03/22 07:56:32 [transform_engine] {"stage_name":"transform_engine","events_processed":230,"events_dropped":0,"avg_latency_ms":634.6288718039111,"throughput_eps":0,"last_update":"2026-03-22T07:56:29.087543251Z"} +2026/03/22 07:56:32 ───────────────────────────────────────────────── +2026/03/22 07:56:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:56:37 [log_collector] {"stage_name":"log_collector","events_processed":12301,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2460.2,"last_update":"2026-03-22T07:56:32.368576648Z"} +2026/03/22 07:56:37 [metric_collector] {"stage_name":"metric_collector","events_processed":6904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1380.8,"last_update":"2026-03-22T07:56:32.368774386Z"} +2026/03/22 07:56:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:56:32.377156642Z"} +2026/03/22 07:56:37 [detection_layer] {"stage_name":"detection_layer","events_processed":230,"events_dropped":0,"avg_latency_ms":15.188414073320937,"throughput_eps":0,"last_update":"2026-03-22T07:56:32.479338584Z"} +2026/03/22 07:56:37 [transform_engine] {"stage_name":"transform_engine","events_processed":230,"events_dropped":0,"avg_latency_ms":634.6288718039111,"throughput_eps":0,"last_update":"2026-03-22T07:56:32.47936244Z"} +2026/03/22 07:56:37 ───────────────────────────────────────────────── +2026/03/22 07:56:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:56:42 [log_collector] {"stage_name":"log_collector","events_processed":12304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2460.8,"last_update":"2026-03-22T07:56:37.368267332Z"} +2026/03/22 07:56:42 [metric_collector] {"stage_name":"metric_collector","events_processed":6909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1381.8,"last_update":"2026-03-22T07:56:37.368517742Z"} +2026/03/22 07:56:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2766,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:56:37.374430336Z"} +2026/03/22 07:56:42 [detection_layer] {"stage_name":"detection_layer","events_processed":230,"events_dropped":0,"avg_latency_ms":15.188414073320937,"throughput_eps":0,"last_update":"2026-03-22T07:56:37.479652172Z"} +2026/03/22 07:56:42 [transform_engine] {"stage_name":"transform_engine","events_processed":230,"events_dropped":0,"avg_latency_ms":634.6288718039111,"throughput_eps":0,"last_update":"2026-03-22T07:56:37.479689703Z"} +2026/03/22 07:56:42 ───────────────────────────────────────────────── +2026/03/22 07:56:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:56:47 [log_collector] {"stage_name":"log_collector","events_processed":12310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2462,"last_update":"2026-03-22T07:56:42.368023497Z"} +2026/03/22 07:56:47 [metric_collector] {"stage_name":"metric_collector","events_processed":6914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1382.8,"last_update":"2026-03-22T07:56:42.368493518Z"} +2026/03/22 07:56:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2768,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:56:42.378881014Z"} +2026/03/22 07:56:47 [detection_layer] {"stage_name":"detection_layer","events_processed":230,"events_dropped":0,"avg_latency_ms":15.188414073320937,"throughput_eps":0,"last_update":"2026-03-22T07:56:42.479116608Z"} +2026/03/22 07:56:47 [transform_engine] {"stage_name":"transform_engine","events_processed":230,"events_dropped":0,"avg_latency_ms":634.6288718039111,"throughput_eps":0,"last_update":"2026-03-22T07:56:42.479098263Z"} +2026/03/22 07:56:47 ───────────────────────────────────────────────── +2026/03/22 07:56:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:56:52 [detection_layer] {"stage_name":"detection_layer","events_processed":230,"events_dropped":0,"avg_latency_ms":15.188414073320937,"throughput_eps":0,"last_update":"2026-03-22T07:56:47.479692759Z"} +2026/03/22 07:56:52 [transform_engine] {"stage_name":"transform_engine","events_processed":230,"events_dropped":0,"avg_latency_ms":634.6288718039111,"throughput_eps":0,"last_update":"2026-03-22T07:56:47.479663543Z"} +2026/03/22 07:56:52 [log_collector] {"stage_name":"log_collector","events_processed":12358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2471.6,"last_update":"2026-03-22T07:56:47.369123833Z"} +2026/03/22 07:56:52 [metric_collector] {"stage_name":"metric_collector","events_processed":6919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1383.8,"last_update":"2026-03-22T07:56:47.369074378Z"} +2026/03/22 07:56:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2770,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:56:47.376534597Z"} +2026/03/22 07:56:52 ───────────────────────────────────────────────── +2026/03/22 07:56:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:56:57 [log_collector] {"stage_name":"log_collector","events_processed":12656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2531.2,"last_update":"2026-03-22T07:56:52.369121571Z"} +2026/03/22 07:56:57 [metric_collector] {"stage_name":"metric_collector","events_processed":6924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1384.8,"last_update":"2026-03-22T07:56:52.369048371Z"} +2026/03/22 07:56:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:56:52.375010321Z"} +2026/03/22 07:56:57 [detection_layer] {"stage_name":"detection_layer","events_processed":230,"events_dropped":0,"avg_latency_ms":15.188414073320937,"throughput_eps":0,"last_update":"2026-03-22T07:56:52.479645162Z"} +2026/03/22 07:56:57 [transform_engine] {"stage_name":"transform_engine","events_processed":230,"events_dropped":0,"avg_latency_ms":634.6288718039111,"throughput_eps":0,"last_update":"2026-03-22T07:56:52.4796235Z"} +2026/03/22 07:56:57 ───────────────────────────────────────────────── +2026/03/22 07:57:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:57:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:56:57.378757239Z"} +2026/03/22 07:57:02 [detection_layer] {"stage_name":"detection_layer","events_processed":230,"events_dropped":0,"avg_latency_ms":15.188414073320937,"throughput_eps":0,"last_update":"2026-03-22T07:56:57.479017028Z"} +2026/03/22 07:57:02 [transform_engine] {"stage_name":"transform_engine","events_processed":231,"events_dropped":0,"avg_latency_ms":530.7965656431289,"throughput_eps":0,"last_update":"2026-03-22T07:56:57.594455112Z"} +2026/03/22 07:57:02 [log_collector] {"stage_name":"log_collector","events_processed":12666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2533.2,"last_update":"2026-03-22T07:56:57.368630781Z"} +2026/03/22 07:57:02 [metric_collector] {"stage_name":"metric_collector","events_processed":6929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1385.8,"last_update":"2026-03-22T07:56:57.36899568Z"} +2026/03/22 07:57:02 ───────────────────────────────────────────────── +2026/03/22 07:57:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:57:07 [log_collector] {"stage_name":"log_collector","events_processed":12666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2533.2,"last_update":"2026-03-22T07:57:02.368085255Z"} +2026/03/22 07:57:07 [metric_collector] {"stage_name":"metric_collector","events_processed":6934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1386.8,"last_update":"2026-03-22T07:57:02.368399596Z"} +2026/03/22 07:57:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:57:02.377147362Z"} +2026/03/22 07:57:07 [detection_layer] {"stage_name":"detection_layer","events_processed":231,"events_dropped":0,"avg_latency_ms":15.67406805865675,"throughput_eps":0,"last_update":"2026-03-22T07:57:02.479484752Z"} +2026/03/22 07:57:07 [transform_engine] {"stage_name":"transform_engine","events_processed":231,"events_dropped":0,"avg_latency_ms":530.7965656431289,"throughput_eps":0,"last_update":"2026-03-22T07:57:02.479371535Z"} +2026/03/22 07:57:07 ───────────────────────────────────────────────── +2026/03/22 07:57:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:57:12 [detection_layer] {"stage_name":"detection_layer","events_processed":231,"events_dropped":0,"avg_latency_ms":15.67406805865675,"throughput_eps":0,"last_update":"2026-03-22T07:57:07.479849644Z"} +2026/03/22 07:57:12 [transform_engine] {"stage_name":"transform_engine","events_processed":231,"events_dropped":0,"avg_latency_ms":530.7965656431289,"throughput_eps":0,"last_update":"2026-03-22T07:57:07.479887496Z"} +2026/03/22 07:57:12 [log_collector] {"stage_name":"log_collector","events_processed":12666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2533.2,"last_update":"2026-03-22T07:57:07.368588833Z"} +2026/03/22 07:57:12 [metric_collector] {"stage_name":"metric_collector","events_processed":6939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1387.8,"last_update":"2026-03-22T07:57:07.368863338Z"} +2026/03/22 07:57:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:57:07.377626714Z"} +2026/03/22 07:57:12 ───────────────────────────────────────────────── +2026/03/22 07:57:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:57:17 [log_collector] {"stage_name":"log_collector","events_processed":12666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2533.2,"last_update":"2026-03-22T07:57:12.368129703Z"} +2026/03/22 07:57:17 [metric_collector] {"stage_name":"metric_collector","events_processed":6944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1388.8,"last_update":"2026-03-22T07:57:12.368893436Z"} +2026/03/22 07:57:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2780,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:57:12.377657363Z"} +2026/03/22 07:57:17 [detection_layer] {"stage_name":"detection_layer","events_processed":231,"events_dropped":0,"avg_latency_ms":15.67406805865675,"throughput_eps":0,"last_update":"2026-03-22T07:57:12.47896548Z"} +2026/03/22 07:57:17 [transform_engine] {"stage_name":"transform_engine","events_processed":231,"events_dropped":0,"avg_latency_ms":530.7965656431289,"throughput_eps":0,"last_update":"2026-03-22T07:57:12.478880187Z"} +2026/03/22 07:57:17 ───────────────────────────────────────────────── +2026/03/22 07:57:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:57:22 [log_collector] {"stage_name":"log_collector","events_processed":12666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2533.2,"last_update":"2026-03-22T07:57:17.368577897Z"} +2026/03/22 07:57:22 [metric_collector] {"stage_name":"metric_collector","events_processed":6949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1389.8,"last_update":"2026-03-22T07:57:17.369273079Z"} +2026/03/22 07:57:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2782,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:57:17.37761596Z"} +2026/03/22 07:57:22 [detection_layer] {"stage_name":"detection_layer","events_processed":231,"events_dropped":0,"avg_latency_ms":15.67406805865675,"throughput_eps":0,"last_update":"2026-03-22T07:57:17.478974985Z"} +2026/03/22 07:57:22 [transform_engine] {"stage_name":"transform_engine","events_processed":231,"events_dropped":0,"avg_latency_ms":530.7965656431289,"throughput_eps":0,"last_update":"2026-03-22T07:57:17.478834055Z"} +2026/03/22 07:57:22 ───────────────────────────────────────────────── +2026/03/22 07:57:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:57:27 [transform_engine] {"stage_name":"transform_engine","events_processed":231,"events_dropped":0,"avg_latency_ms":530.7965656431289,"throughput_eps":0,"last_update":"2026-03-22T07:57:22.479841477Z"} +2026/03/22 07:57:27 [log_collector] {"stage_name":"log_collector","events_processed":12666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2533.2,"last_update":"2026-03-22T07:57:27.368382126Z"} +2026/03/22 07:57:27 [metric_collector] {"stage_name":"metric_collector","events_processed":6959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1391.8,"last_update":"2026-03-22T07:57:27.368790928Z"} +2026/03/22 07:57:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:57:22.378593104Z"} +2026/03/22 07:57:27 [detection_layer] {"stage_name":"detection_layer","events_processed":231,"events_dropped":0,"avg_latency_ms":15.67406805865675,"throughput_eps":0,"last_update":"2026-03-22T07:57:22.47980658Z"} +2026/03/22 07:57:27 ───────────────────────────────────────────────── +2026/03/22 07:57:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:57:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:57:27.377481824Z"} +2026/03/22 07:57:32 [detection_layer] {"stage_name":"detection_layer","events_processed":231,"events_dropped":0,"avg_latency_ms":15.67406805865675,"throughput_eps":0,"last_update":"2026-03-22T07:57:27.479875983Z"} +2026/03/22 07:57:32 [transform_engine] {"stage_name":"transform_engine","events_processed":232,"events_dropped":0,"avg_latency_ms":438.7431453145032,"throughput_eps":0,"last_update":"2026-03-22T07:57:27.55038112Z"} +2026/03/22 07:57:32 [log_collector] {"stage_name":"log_collector","events_processed":12666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2533.2,"last_update":"2026-03-22T07:57:27.368382126Z"} +2026/03/22 07:57:32 [metric_collector] {"stage_name":"metric_collector","events_processed":6959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1391.8,"last_update":"2026-03-22T07:57:27.368790928Z"} +2026/03/22 07:57:32 ───────────────────────────────────────────────── +2026/03/22 07:57:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:57:37 [log_collector] {"stage_name":"log_collector","events_processed":12666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2533.2,"last_update":"2026-03-22T07:57:32.368743754Z"} +2026/03/22 07:57:37 [metric_collector] {"stage_name":"metric_collector","events_processed":6964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1392.8,"last_update":"2026-03-22T07:57:32.369343924Z"} +2026/03/22 07:57:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:57:32.376181752Z"} +2026/03/22 07:57:37 [detection_layer] {"stage_name":"detection_layer","events_processed":232,"events_dropped":0,"avg_latency_ms":17.0995894469254,"throughput_eps":0,"last_update":"2026-03-22T07:57:32.479436057Z"} +2026/03/22 07:57:37 [transform_engine] {"stage_name":"transform_engine","events_processed":232,"events_dropped":0,"avg_latency_ms":438.7431453145032,"throughput_eps":0,"last_update":"2026-03-22T07:57:32.479450695Z"} +2026/03/22 07:57:37 ───────────────────────────────────────────────── +2026/03/22 07:57:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:57:42 [log_collector] {"stage_name":"log_collector","events_processed":12666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2533.2,"last_update":"2026-03-22T07:57:42.36799757Z"} +2026/03/22 07:57:42 [metric_collector] {"stage_name":"metric_collector","events_processed":6969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1393.8,"last_update":"2026-03-22T07:57:37.368427012Z"} +2026/03/22 07:57:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:57:37.375033686Z"} +2026/03/22 07:57:42 [detection_layer] {"stage_name":"detection_layer","events_processed":232,"events_dropped":0,"avg_latency_ms":17.0995894469254,"throughput_eps":0,"last_update":"2026-03-22T07:57:37.479275413Z"} +2026/03/22 07:57:42 [transform_engine] {"stage_name":"transform_engine","events_processed":232,"events_dropped":0,"avg_latency_ms":438.7431453145032,"throughput_eps":0,"last_update":"2026-03-22T07:57:37.479288509Z"} +2026/03/22 07:57:42 ───────────────────────────────────────────────── +2026/03/22 07:57:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:57:47 [transform_engine] {"stage_name":"transform_engine","events_processed":232,"events_dropped":0,"avg_latency_ms":438.7431453145032,"throughput_eps":0,"last_update":"2026-03-22T07:57:42.479983601Z"} +2026/03/22 07:57:47 [log_collector] {"stage_name":"log_collector","events_processed":12666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2533.2,"last_update":"2026-03-22T07:57:42.36799757Z"} +2026/03/22 07:57:47 [metric_collector] {"stage_name":"metric_collector","events_processed":6974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1394.8,"last_update":"2026-03-22T07:57:42.368453834Z"} +2026/03/22 07:57:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:57:42.377594553Z"} +2026/03/22 07:57:47 [detection_layer] {"stage_name":"detection_layer","events_processed":232,"events_dropped":0,"avg_latency_ms":17.0995894469254,"throughput_eps":0,"last_update":"2026-03-22T07:57:42.479966528Z"} +2026/03/22 07:57:47 ───────────────────────────────────────────────── +2026/03/22 07:57:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:57:52 [transform_engine] {"stage_name":"transform_engine","events_processed":232,"events_dropped":0,"avg_latency_ms":438.7431453145032,"throughput_eps":0,"last_update":"2026-03-22T07:57:47.47923825Z"} +2026/03/22 07:57:52 [log_collector] {"stage_name":"log_collector","events_processed":12666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2533.2,"last_update":"2026-03-22T07:57:52.368661503Z"} +2026/03/22 07:57:52 [metric_collector] {"stage_name":"metric_collector","events_processed":6979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1395.8,"last_update":"2026-03-22T07:57:47.3691371Z"} +2026/03/22 07:57:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:57:47.374873457Z"} +2026/03/22 07:57:52 [detection_layer] {"stage_name":"detection_layer","events_processed":232,"events_dropped":0,"avg_latency_ms":17.0995894469254,"throughput_eps":0,"last_update":"2026-03-22T07:57:47.479221417Z"} +2026/03/22 07:57:52 ───────────────────────────────────────────────── +2026/03/22 07:57:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:57:57 [log_collector] {"stage_name":"log_collector","events_processed":12666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2533.2,"last_update":"2026-03-22T07:57:52.368661503Z"} +2026/03/22 07:57:57 [metric_collector] {"stage_name":"metric_collector","events_processed":6984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1396.8,"last_update":"2026-03-22T07:57:52.369144738Z"} +2026/03/22 07:57:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2796,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:57:52.378607413Z"} +2026/03/22 07:57:57 [detection_layer] {"stage_name":"detection_layer","events_processed":232,"events_dropped":0,"avg_latency_ms":17.0995894469254,"throughput_eps":0,"last_update":"2026-03-22T07:57:52.479806672Z"} +2026/03/22 07:57:57 [transform_engine] {"stage_name":"transform_engine","events_processed":232,"events_dropped":0,"avg_latency_ms":438.7431453145032,"throughput_eps":0,"last_update":"2026-03-22T07:57:52.479819987Z"} +2026/03/22 07:57:57 ───────────────────────────────────────────────── +2026/03/22 07:58:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:58:02 [log_collector] {"stage_name":"log_collector","events_processed":12666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2533.2,"last_update":"2026-03-22T07:57:57.368891082Z"} +2026/03/22 07:58:02 [metric_collector] {"stage_name":"metric_collector","events_processed":6989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1397.8,"last_update":"2026-03-22T07:57:57.36945385Z"} +2026/03/22 07:58:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:57:57.377886491Z"} +2026/03/22 07:58:02 [detection_layer] {"stage_name":"detection_layer","events_processed":232,"events_dropped":0,"avg_latency_ms":17.0995894469254,"throughput_eps":0,"last_update":"2026-03-22T07:57:57.479166816Z"} +2026/03/22 07:58:02 [transform_engine] {"stage_name":"transform_engine","events_processed":233,"events_dropped":0,"avg_latency_ms":364.94069905160256,"throughput_eps":0,"last_update":"2026-03-22T07:57:57.548935602Z"} +2026/03/22 07:58:02 ───────────────────────────────────────────────── +2026/03/22 07:58:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:58:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2800,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:58:02.378621315Z"} +2026/03/22 07:58:07 [detection_layer] {"stage_name":"detection_layer","events_processed":233,"events_dropped":0,"avg_latency_ms":17.686087557540322,"throughput_eps":0,"last_update":"2026-03-22T07:58:02.479860631Z"} +2026/03/22 07:58:07 [transform_engine] {"stage_name":"transform_engine","events_processed":233,"events_dropped":0,"avg_latency_ms":364.94069905160256,"throughput_eps":0,"last_update":"2026-03-22T07:58:02.479872523Z"} +2026/03/22 07:58:07 [log_collector] {"stage_name":"log_collector","events_processed":12666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2533.2,"last_update":"2026-03-22T07:58:02.368736933Z"} +2026/03/22 07:58:07 [metric_collector] {"stage_name":"metric_collector","events_processed":6994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1398.8,"last_update":"2026-03-22T07:58:02.369188197Z"} +2026/03/22 07:58:07 ───────────────────────────────────────────────── +2026/03/22 07:58:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:58:12 [detection_layer] {"stage_name":"detection_layer","events_processed":233,"events_dropped":0,"avg_latency_ms":17.686087557540322,"throughput_eps":0,"last_update":"2026-03-22T07:58:07.479663126Z"} +2026/03/22 07:58:12 [transform_engine] {"stage_name":"transform_engine","events_processed":233,"events_dropped":0,"avg_latency_ms":364.94069905160256,"throughput_eps":0,"last_update":"2026-03-22T07:58:07.479674838Z"} +2026/03/22 07:58:12 [log_collector] {"stage_name":"log_collector","events_processed":12666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2533.2,"last_update":"2026-03-22T07:58:07.368913545Z"} +2026/03/22 07:58:12 [metric_collector] {"stage_name":"metric_collector","events_processed":6999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1399.8,"last_update":"2026-03-22T07:58:07.369194963Z"} +2026/03/22 07:58:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2802,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:58:07.378428319Z"} +2026/03/22 07:58:12 ───────────────────────────────────────────────── +2026/03/22 07:58:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:58:17 [log_collector] {"stage_name":"log_collector","events_processed":12666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2533.2,"last_update":"2026-03-22T07:58:17.368886331Z"} +2026/03/22 07:58:17 [metric_collector] {"stage_name":"metric_collector","events_processed":7004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1400.8,"last_update":"2026-03-22T07:58:12.36937537Z"} +2026/03/22 07:58:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:58:12.378271369Z"} +2026/03/22 07:58:17 [detection_layer] {"stage_name":"detection_layer","events_processed":233,"events_dropped":0,"avg_latency_ms":17.686087557540322,"throughput_eps":0,"last_update":"2026-03-22T07:58:12.47949798Z"} +2026/03/22 07:58:17 [transform_engine] {"stage_name":"transform_engine","events_processed":233,"events_dropped":0,"avg_latency_ms":364.94069905160256,"throughput_eps":0,"last_update":"2026-03-22T07:58:12.479511036Z"} +2026/03/22 07:58:17 ───────────────────────────────────────────────── +2026/03/22 07:58:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:58:22 [log_collector] {"stage_name":"log_collector","events_processed":12666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2533.2,"last_update":"2026-03-22T07:58:17.368886331Z"} +2026/03/22 07:58:22 [metric_collector] {"stage_name":"metric_collector","events_processed":7009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1401.8,"last_update":"2026-03-22T07:58:17.369378284Z"} +2026/03/22 07:58:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:58:17.377888444Z"} +2026/03/22 07:58:22 [detection_layer] {"stage_name":"detection_layer","events_processed":233,"events_dropped":0,"avg_latency_ms":17.686087557540322,"throughput_eps":0,"last_update":"2026-03-22T07:58:17.479106768Z"} +2026/03/22 07:58:22 [transform_engine] {"stage_name":"transform_engine","events_processed":233,"events_dropped":0,"avg_latency_ms":364.94069905160256,"throughput_eps":0,"last_update":"2026-03-22T07:58:17.479136155Z"} +2026/03/22 07:58:22 ───────────────────────────────────────────────── +2026/03/22 07:58:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:58:27 [log_collector] {"stage_name":"log_collector","events_processed":12666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2533.2,"last_update":"2026-03-22T07:58:22.368090061Z"} +2026/03/22 07:58:27 [metric_collector] {"stage_name":"metric_collector","events_processed":7014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1402.8,"last_update":"2026-03-22T07:58:22.368399585Z"} +2026/03/22 07:58:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:58:22.375690309Z"} +2026/03/22 07:58:27 [detection_layer] {"stage_name":"detection_layer","events_processed":233,"events_dropped":0,"avg_latency_ms":17.686087557540322,"throughput_eps":0,"last_update":"2026-03-22T07:58:22.479992521Z"} +2026/03/22 07:58:27 [transform_engine] {"stage_name":"transform_engine","events_processed":233,"events_dropped":0,"avg_latency_ms":364.94069905160256,"throughput_eps":0,"last_update":"2026-03-22T07:58:22.478834513Z"} +2026/03/22 07:58:27 ───────────────────────────────────────────────── +Saved state: 11 clusters, 12667 messages, reason: none +2026/03/22 07:58:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:58:32 [detection_layer] {"stage_name":"detection_layer","events_processed":233,"events_dropped":0,"avg_latency_ms":17.686087557540322,"throughput_eps":0,"last_update":"2026-03-22T07:58:27.479814172Z"} +2026/03/22 07:58:32 [transform_engine] {"stage_name":"transform_engine","events_processed":234,"events_dropped":0,"avg_latency_ms":305.40663924128205,"throughput_eps":0,"last_update":"2026-03-22T07:58:27.547053854Z"} +2026/03/22 07:58:32 [log_collector] {"stage_name":"log_collector","events_processed":12666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2533.2,"last_update":"2026-03-22T07:58:27.368434624Z"} +2026/03/22 07:58:32 [metric_collector] {"stage_name":"metric_collector","events_processed":7019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1403.8,"last_update":"2026-03-22T07:58:27.368908482Z"} +2026/03/22 07:58:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:58:27.377405127Z"} +2026/03/22 07:58:32 ───────────────────────────────────────────────── +2026/03/22 07:58:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:58:37 [log_collector] {"stage_name":"log_collector","events_processed":12669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2533.8,"last_update":"2026-03-22T07:58:32.367967809Z"} +2026/03/22 07:58:37 [metric_collector] {"stage_name":"metric_collector","events_processed":7024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1404.8,"last_update":"2026-03-22T07:58:32.368176338Z"} +2026/03/22 07:58:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2812,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:58:32.378720194Z"} +2026/03/22 07:58:37 [detection_layer] {"stage_name":"detection_layer","events_processed":234,"events_dropped":0,"avg_latency_ms":18.15728584603226,"throughput_eps":0,"last_update":"2026-03-22T07:58:32.479219141Z"} +2026/03/22 07:58:37 [transform_engine] {"stage_name":"transform_engine","events_processed":234,"events_dropped":0,"avg_latency_ms":305.40663924128205,"throughput_eps":0,"last_update":"2026-03-22T07:58:32.479150369Z"} +2026/03/22 07:58:37 ───────────────────────────────────────────────── +2026/03/22 07:58:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:58:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:58:37.37558257Z"} +2026/03/22 07:58:42 [detection_layer] {"stage_name":"detection_layer","events_processed":234,"events_dropped":0,"avg_latency_ms":18.15728584603226,"throughput_eps":0,"last_update":"2026-03-22T07:58:37.479773028Z"} +2026/03/22 07:58:42 [transform_engine] {"stage_name":"transform_engine","events_processed":234,"events_dropped":0,"avg_latency_ms":305.40663924128205,"throughput_eps":0,"last_update":"2026-03-22T07:58:37.479792846Z"} +2026/03/22 07:58:42 [log_collector] {"stage_name":"log_collector","events_processed":12680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2536,"last_update":"2026-03-22T07:58:42.368697877Z"} +2026/03/22 07:58:42 [metric_collector] {"stage_name":"metric_collector","events_processed":7029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1405.8,"last_update":"2026-03-22T07:58:37.368305542Z"} +2026/03/22 07:58:42 ───────────────────────────────────────────────── +2026/03/22 07:58:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:58:47 [metric_collector] {"stage_name":"metric_collector","events_processed":7034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1406.8,"last_update":"2026-03-22T07:58:42.369119555Z"} +2026/03/22 07:58:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2816,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:58:42.377728985Z"} +2026/03/22 07:58:47 [detection_layer] {"stage_name":"detection_layer","events_processed":234,"events_dropped":0,"avg_latency_ms":18.15728584603226,"throughput_eps":0,"last_update":"2026-03-22T07:58:42.480020627Z"} +2026/03/22 07:58:47 [transform_engine] {"stage_name":"transform_engine","events_processed":234,"events_dropped":0,"avg_latency_ms":305.40663924128205,"throughput_eps":0,"last_update":"2026-03-22T07:58:42.478877477Z"} +2026/03/22 07:58:47 [log_collector] {"stage_name":"log_collector","events_processed":12680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2536,"last_update":"2026-03-22T07:58:42.368697877Z"} +2026/03/22 07:58:47 ───────────────────────────────────────────────── +2026/03/22 07:58:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:58:52 [log_collector] {"stage_name":"log_collector","events_processed":12687,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2537.4,"last_update":"2026-03-22T07:58:47.367970105Z"} +2026/03/22 07:58:52 [metric_collector] {"stage_name":"metric_collector","events_processed":7039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1407.8,"last_update":"2026-03-22T07:58:47.368311159Z"} +2026/03/22 07:58:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2818,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:58:47.375258446Z"} +2026/03/22 07:58:52 [detection_layer] {"stage_name":"detection_layer","events_processed":234,"events_dropped":0,"avg_latency_ms":18.15728584603226,"throughput_eps":0,"last_update":"2026-03-22T07:58:47.479992415Z"} +2026/03/22 07:58:52 [transform_engine] {"stage_name":"transform_engine","events_processed":234,"events_dropped":0,"avg_latency_ms":305.40663924128205,"throughput_eps":0,"last_update":"2026-03-22T07:58:47.478910032Z"} +2026/03/22 07:58:52 ───────────────────────────────────────────────── +2026/03/22 07:58:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:58:57 [metric_collector] {"stage_name":"metric_collector","events_processed":7043,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1408.6,"last_update":"2026-03-22T07:58:52.368517592Z"} +2026/03/22 07:58:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2820,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:58:52.37732923Z"} +2026/03/22 07:58:57 [detection_layer] {"stage_name":"detection_layer","events_processed":234,"events_dropped":0,"avg_latency_ms":18.15728584603226,"throughput_eps":0,"last_update":"2026-03-22T07:58:52.479579731Z"} +2026/03/22 07:58:57 [transform_engine] {"stage_name":"transform_engine","events_processed":234,"events_dropped":0,"avg_latency_ms":305.40663924128205,"throughput_eps":0,"last_update":"2026-03-22T07:58:52.479690083Z"} +2026/03/22 07:58:57 [log_collector] {"stage_name":"log_collector","events_processed":12696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2539.2,"last_update":"2026-03-22T07:58:52.368527832Z"} +2026/03/22 07:58:57 ───────────────────────────────────────────────── +2026/03/22 07:59:02 ── Pipeline Health ────────────────────────────── +2026/03/22 07:59:02 [log_collector] {"stage_name":"log_collector","events_processed":12699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2539.8,"last_update":"2026-03-22T07:58:57.367962303Z"} +2026/03/22 07:59:02 [metric_collector] {"stage_name":"metric_collector","events_processed":7049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1409.8,"last_update":"2026-03-22T07:58:57.368408187Z"} +2026/03/22 07:59:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:58:57.374889682Z"} +2026/03/22 07:59:02 [detection_layer] {"stage_name":"detection_layer","events_processed":234,"events_dropped":0,"avg_latency_ms":18.15728584603226,"throughput_eps":0,"last_update":"2026-03-22T07:58:57.479589094Z"} +2026/03/22 07:59:02 [transform_engine] {"stage_name":"transform_engine","events_processed":235,"events_dropped":0,"avg_latency_ms":275.3840975930257,"throughput_eps":0,"last_update":"2026-03-22T07:58:57.634905158Z"} +2026/03/22 07:59:02 ───────────────────────────────────────────────── +2026/03/22 07:59:07 ── Pipeline Health ────────────────────────────── +2026/03/22 07:59:07 [log_collector] {"stage_name":"log_collector","events_processed":12710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2542,"last_update":"2026-03-22T07:59:02.368154814Z"} +2026/03/22 07:59:07 [metric_collector] {"stage_name":"metric_collector","events_processed":7054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1410.8,"last_update":"2026-03-22T07:59:02.368885012Z"} +2026/03/22 07:59:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:59:02.377309098Z"} +2026/03/22 07:59:07 [detection_layer] {"stage_name":"detection_layer","events_processed":235,"events_dropped":0,"avg_latency_ms":17.16535667682581,"throughput_eps":0,"last_update":"2026-03-22T07:59:02.479628662Z"} +2026/03/22 07:59:07 [transform_engine] {"stage_name":"transform_engine","events_processed":235,"events_dropped":0,"avg_latency_ms":275.3840975930257,"throughput_eps":0,"last_update":"2026-03-22T07:59:02.479524843Z"} +2026/03/22 07:59:07 ───────────────────────────────────────────────── +2026/03/22 07:59:12 ── Pipeline Health ────────────────────────────── +2026/03/22 07:59:12 [metric_collector] {"stage_name":"metric_collector","events_processed":7059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1411.8,"last_update":"2026-03-22T07:59:07.369264006Z"} +2026/03/22 07:59:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2826,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:59:07.378834828Z"} +2026/03/22 07:59:12 [detection_layer] {"stage_name":"detection_layer","events_processed":235,"events_dropped":0,"avg_latency_ms":17.16535667682581,"throughput_eps":0,"last_update":"2026-03-22T07:59:07.479120406Z"} +2026/03/22 07:59:12 [transform_engine] {"stage_name":"transform_engine","events_processed":235,"events_dropped":0,"avg_latency_ms":275.3840975930257,"throughput_eps":0,"last_update":"2026-03-22T07:59:07.479219696Z"} +2026/03/22 07:59:12 [log_collector] {"stage_name":"log_collector","events_processed":12710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2542,"last_update":"2026-03-22T07:59:07.368700647Z"} +2026/03/22 07:59:12 ───────────────────────────────────────────────── +2026/03/22 07:59:17 ── Pipeline Health ────────────────────────────── +2026/03/22 07:59:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:59:12.377033524Z"} +2026/03/22 07:59:17 [detection_layer] {"stage_name":"detection_layer","events_processed":235,"events_dropped":0,"avg_latency_ms":17.16535667682581,"throughput_eps":0,"last_update":"2026-03-22T07:59:12.479018918Z"} +2026/03/22 07:59:17 [transform_engine] {"stage_name":"transform_engine","events_processed":235,"events_dropped":0,"avg_latency_ms":275.3840975930257,"throughput_eps":0,"last_update":"2026-03-22T07:59:12.479006804Z"} +2026/03/22 07:59:17 [log_collector] {"stage_name":"log_collector","events_processed":12710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2542,"last_update":"2026-03-22T07:59:12.368055958Z"} +2026/03/22 07:59:17 [metric_collector] {"stage_name":"metric_collector","events_processed":7064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1412.8,"last_update":"2026-03-22T07:59:12.368422821Z"} +2026/03/22 07:59:17 ───────────────────────────────────────────────── +2026/03/22 07:59:22 ── Pipeline Health ────────────────────────────── +2026/03/22 07:59:22 [metric_collector] {"stage_name":"metric_collector","events_processed":7069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1413.8,"last_update":"2026-03-22T07:59:17.36870666Z"} +2026/03/22 07:59:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2830,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:59:17.379162276Z"} +2026/03/22 07:59:22 [detection_layer] {"stage_name":"detection_layer","events_processed":235,"events_dropped":0,"avg_latency_ms":17.16535667682581,"throughput_eps":0,"last_update":"2026-03-22T07:59:17.479486308Z"} +2026/03/22 07:59:22 [transform_engine] {"stage_name":"transform_engine","events_processed":235,"events_dropped":0,"avg_latency_ms":275.3840975930257,"throughput_eps":0,"last_update":"2026-03-22T07:59:17.479407457Z"} +2026/03/22 07:59:22 [log_collector] {"stage_name":"log_collector","events_processed":12710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2542,"last_update":"2026-03-22T07:59:17.367997701Z"} +2026/03/22 07:59:22 ───────────────────────────────────────────────── +2026/03/22 07:59:27 ── Pipeline Health ────────────────────────────── +2026/03/22 07:59:27 [metric_collector] {"stage_name":"metric_collector","events_processed":7074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1414.8,"last_update":"2026-03-22T07:59:22.368830177Z"} +2026/03/22 07:59:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2832,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:59:22.376309995Z"} +2026/03/22 07:59:27 [detection_layer] {"stage_name":"detection_layer","events_processed":235,"events_dropped":0,"avg_latency_ms":17.16535667682581,"throughput_eps":0,"last_update":"2026-03-22T07:59:22.479537167Z"} +2026/03/22 07:59:27 [transform_engine] {"stage_name":"transform_engine","events_processed":235,"events_dropped":0,"avg_latency_ms":275.3840975930257,"throughput_eps":0,"last_update":"2026-03-22T07:59:22.479575951Z"} +2026/03/22 07:59:27 [log_collector] {"stage_name":"log_collector","events_processed":12710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2542,"last_update":"2026-03-22T07:59:22.368439941Z"} +2026/03/22 07:59:27 ───────────────────────────────────────────────── +2026/03/22 07:59:32 ── Pipeline Health ────────────────────────────── +2026/03/22 07:59:32 [log_collector] {"stage_name":"log_collector","events_processed":12710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2542,"last_update":"2026-03-22T07:59:27.368254814Z"} +2026/03/22 07:59:32 [metric_collector] {"stage_name":"metric_collector","events_processed":7079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1415.8,"last_update":"2026-03-22T07:59:27.368682734Z"} +2026/03/22 07:59:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:59:27.375135163Z"} +2026/03/22 07:59:32 [detection_layer] {"stage_name":"detection_layer","events_processed":235,"events_dropped":0,"avg_latency_ms":17.16535667682581,"throughput_eps":0,"last_update":"2026-03-22T07:59:27.479400804Z"} +2026/03/22 07:59:32 [transform_engine] {"stage_name":"transform_engine","events_processed":236,"events_dropped":0,"avg_latency_ms":234.35087727442053,"throughput_eps":0,"last_update":"2026-03-22T07:59:27.549646052Z"} +2026/03/22 07:59:32 ───────────────────────────────────────────────── +2026/03/22 07:59:37 ── Pipeline Health ────────────────────────────── +2026/03/22 07:59:37 [log_collector] {"stage_name":"log_collector","events_processed":12710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2542,"last_update":"2026-03-22T07:59:32.368535908Z"} +2026/03/22 07:59:37 [metric_collector] {"stage_name":"metric_collector","events_processed":7084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1416.8,"last_update":"2026-03-22T07:59:32.369008103Z"} +2026/03/22 07:59:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:59:32.376008391Z"} +2026/03/22 07:59:37 [detection_layer] {"stage_name":"detection_layer","events_processed":236,"events_dropped":0,"avg_latency_ms":17.57033874146065,"throughput_eps":0,"last_update":"2026-03-22T07:59:32.479295067Z"} +2026/03/22 07:59:37 [transform_engine] {"stage_name":"transform_engine","events_processed":236,"events_dropped":0,"avg_latency_ms":234.35087727442053,"throughput_eps":0,"last_update":"2026-03-22T07:59:32.479247916Z"} +2026/03/22 07:59:37 ───────────────────────────────────────────────── +2026/03/22 07:59:42 ── Pipeline Health ────────────────────────────── +2026/03/22 07:59:42 [log_collector] {"stage_name":"log_collector","events_processed":12710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2542,"last_update":"2026-03-22T07:59:37.368851526Z"} +2026/03/22 07:59:42 [metric_collector] {"stage_name":"metric_collector","events_processed":7089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1417.8,"last_update":"2026-03-22T07:59:37.369254148Z"} +2026/03/22 07:59:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:59:37.374793307Z"} +2026/03/22 07:59:42 [detection_layer] {"stage_name":"detection_layer","events_processed":236,"events_dropped":0,"avg_latency_ms":17.57033874146065,"throughput_eps":0,"last_update":"2026-03-22T07:59:37.479011878Z"} +2026/03/22 07:59:42 [transform_engine] {"stage_name":"transform_engine","events_processed":236,"events_dropped":0,"avg_latency_ms":234.35087727442053,"throughput_eps":0,"last_update":"2026-03-22T07:59:37.478959868Z"} +2026/03/22 07:59:42 ───────────────────────────────────────────────── +2026/03/22 07:59:47 ── Pipeline Health ────────────────────────────── +2026/03/22 07:59:47 [detection_layer] {"stage_name":"detection_layer","events_processed":236,"events_dropped":0,"avg_latency_ms":17.57033874146065,"throughput_eps":0,"last_update":"2026-03-22T07:59:42.479388099Z"} +2026/03/22 07:59:47 [transform_engine] {"stage_name":"transform_engine","events_processed":236,"events_dropped":0,"avg_latency_ms":234.35087727442053,"throughput_eps":0,"last_update":"2026-03-22T07:59:42.479375255Z"} +2026/03/22 07:59:47 [log_collector] {"stage_name":"log_collector","events_processed":12710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2542,"last_update":"2026-03-22T07:59:42.368008912Z"} +2026/03/22 07:59:47 [metric_collector] {"stage_name":"metric_collector","events_processed":7093,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1418.6,"last_update":"2026-03-22T07:59:42.367948407Z"} +2026/03/22 07:59:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:59:42.376132112Z"} +2026/03/22 07:59:47 ───────────────────────────────────────────────── +2026/03/22 07:59:52 ── Pipeline Health ────────────────────────────── +2026/03/22 07:59:52 [log_collector] {"stage_name":"log_collector","events_processed":12710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2542,"last_update":"2026-03-22T07:59:52.368379014Z"} +2026/03/22 07:59:52 [metric_collector] {"stage_name":"metric_collector","events_processed":7099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1419.8,"last_update":"2026-03-22T07:59:47.368307111Z"} +2026/03/22 07:59:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:59:47.377262755Z"} +2026/03/22 07:59:52 [detection_layer] {"stage_name":"detection_layer","events_processed":236,"events_dropped":0,"avg_latency_ms":17.57033874146065,"throughput_eps":0,"last_update":"2026-03-22T07:59:47.479590093Z"} +2026/03/22 07:59:52 [transform_engine] {"stage_name":"transform_engine","events_processed":236,"events_dropped":0,"avg_latency_ms":234.35087727442053,"throughput_eps":0,"last_update":"2026-03-22T07:59:47.479559485Z"} +2026/03/22 07:59:52 ───────────────────────────────────────────────── +2026/03/22 07:59:57 ── Pipeline Health ────────────────────────────── +2026/03/22 07:59:57 [log_collector] {"stage_name":"log_collector","events_processed":12710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2542,"last_update":"2026-03-22T07:59:57.368702488Z"} +2026/03/22 07:59:57 [metric_collector] {"stage_name":"metric_collector","events_processed":7104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1420.8,"last_update":"2026-03-22T07:59:52.369223863Z"} +2026/03/22 07:59:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:59:52.376504598Z"} +2026/03/22 07:59:57 [detection_layer] {"stage_name":"detection_layer","events_processed":236,"events_dropped":0,"avg_latency_ms":17.57033874146065,"throughput_eps":0,"last_update":"2026-03-22T07:59:52.479962502Z"} +2026/03/22 07:59:57 [transform_engine] {"stage_name":"transform_engine","events_processed":236,"events_dropped":0,"avg_latency_ms":234.35087727442053,"throughput_eps":0,"last_update":"2026-03-22T07:59:52.479825349Z"} +2026/03/22 07:59:57 ───────────────────────────────────────────────── +Saved state: 11 clusters, 12711 messages, reason: none +2026/03/22 08:00:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:00:02 [log_collector] {"stage_name":"log_collector","events_processed":12715,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2543,"last_update":"2026-03-22T08:00:02.368172122Z"} +2026/03/22 08:00:02 [metric_collector] {"stage_name":"metric_collector","events_processed":7109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1421.8,"last_update":"2026-03-22T07:59:57.36922576Z"} +2026/03/22 08:00:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T07:59:57.374834873Z"} +2026/03/22 08:00:02 [detection_layer] {"stage_name":"detection_layer","events_processed":236,"events_dropped":0,"avg_latency_ms":17.57033874146065,"throughput_eps":0,"last_update":"2026-03-22T07:59:57.479153265Z"} +2026/03/22 08:00:02 [transform_engine] {"stage_name":"transform_engine","events_processed":236,"events_dropped":0,"avg_latency_ms":234.35087727442053,"throughput_eps":0,"last_update":"2026-03-22T07:59:57.479100033Z"} +2026/03/22 08:00:02 ───────────────────────────────────────────────── +2026/03/22 08:00:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:00:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2848,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:00:02.375723676Z"} +2026/03/22 08:00:07 [detection_layer] {"stage_name":"detection_layer","events_processed":237,"events_dropped":0,"avg_latency_ms":17.30059919316852,"throughput_eps":0,"last_update":"2026-03-22T08:00:02.479961884Z"} +2026/03/22 08:00:07 [transform_engine] {"stage_name":"transform_engine","events_processed":237,"events_dropped":0,"avg_latency_ms":199.62257441953642,"throughput_eps":0,"last_update":"2026-03-22T08:00:02.478858661Z"} +2026/03/22 08:00:07 [log_collector] {"stage_name":"log_collector","events_processed":12715,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2543,"last_update":"2026-03-22T08:00:02.368172122Z"} +2026/03/22 08:00:07 [metric_collector] {"stage_name":"metric_collector","events_processed":7114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1422.8,"last_update":"2026-03-22T08:00:02.368641932Z"} +2026/03/22 08:00:07 ───────────────────────────────────────────────── +2026/03/22 08:00:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:00:12 [detection_layer] {"stage_name":"detection_layer","events_processed":237,"events_dropped":0,"avg_latency_ms":17.30059919316852,"throughput_eps":0,"last_update":"2026-03-22T08:00:07.47947005Z"} +2026/03/22 08:00:12 [transform_engine] {"stage_name":"transform_engine","events_processed":237,"events_dropped":0,"avg_latency_ms":199.62257441953642,"throughput_eps":0,"last_update":"2026-03-22T08:00:07.479483396Z"} +2026/03/22 08:00:12 [log_collector] {"stage_name":"log_collector","events_processed":12715,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2543,"last_update":"2026-03-22T08:00:07.368726152Z"} +2026/03/22 08:00:12 [metric_collector] {"stage_name":"metric_collector","events_processed":7119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1423.8,"last_update":"2026-03-22T08:00:07.369022169Z"} +2026/03/22 08:00:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:00:07.378599203Z"} +2026/03/22 08:00:12 ───────────────────────────────────────────────── +2026/03/22 08:00:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:00:17 [log_collector] {"stage_name":"log_collector","events_processed":12715,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2543,"last_update":"2026-03-22T08:00:12.367950392Z"} +2026/03/22 08:00:17 [metric_collector] {"stage_name":"metric_collector","events_processed":7124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1424.8,"last_update":"2026-03-22T08:00:12.368178208Z"} +2026/03/22 08:00:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:00:12.37856861Z"} +2026/03/22 08:00:17 [detection_layer] {"stage_name":"detection_layer","events_processed":237,"events_dropped":0,"avg_latency_ms":17.30059919316852,"throughput_eps":0,"last_update":"2026-03-22T08:00:12.479690108Z"} +2026/03/22 08:00:17 [transform_engine] {"stage_name":"transform_engine","events_processed":237,"events_dropped":0,"avg_latency_ms":199.62257441953642,"throughput_eps":0,"last_update":"2026-03-22T08:00:12.479901704Z"} +2026/03/22 08:00:17 ───────────────────────────────────────────────── +2026/03/22 08:00:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:00:22 [log_collector] {"stage_name":"log_collector","events_processed":12715,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2543,"last_update":"2026-03-22T08:00:22.367980203Z"} +2026/03/22 08:00:22 [metric_collector] {"stage_name":"metric_collector","events_processed":7129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1425.8,"last_update":"2026-03-22T08:00:17.369051905Z"} +2026/03/22 08:00:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:00:17.379625086Z"} +2026/03/22 08:00:22 [detection_layer] {"stage_name":"detection_layer","events_processed":237,"events_dropped":0,"avg_latency_ms":17.30059919316852,"throughput_eps":0,"last_update":"2026-03-22T08:00:17.479536528Z"} +2026/03/22 08:00:22 [transform_engine] {"stage_name":"transform_engine","events_processed":237,"events_dropped":0,"avg_latency_ms":199.62257441953642,"throughput_eps":0,"last_update":"2026-03-22T08:00:17.479552187Z"} +2026/03/22 08:00:22 ───────────────────────────────────────────────── +2026/03/22 08:00:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:00:27 [transform_engine] {"stage_name":"transform_engine","events_processed":237,"events_dropped":0,"avg_latency_ms":199.62257441953642,"throughput_eps":0,"last_update":"2026-03-22T08:00:22.478946909Z"} +2026/03/22 08:00:27 [log_collector] {"stage_name":"log_collector","events_processed":12715,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2543,"last_update":"2026-03-22T08:00:27.368393794Z"} +2026/03/22 08:00:27 [metric_collector] {"stage_name":"metric_collector","events_processed":7134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1426.8,"last_update":"2026-03-22T08:00:22.368428201Z"} +2026/03/22 08:00:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:00:22.376981104Z"} +2026/03/22 08:00:27 [detection_layer] {"stage_name":"detection_layer","events_processed":237,"events_dropped":0,"avg_latency_ms":17.30059919316852,"throughput_eps":0,"last_update":"2026-03-22T08:00:22.47898389Z"} +2026/03/22 08:00:27 ───────────────────────────────────────────────── +2026/03/22 08:00:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:00:32 [log_collector] {"stage_name":"log_collector","events_processed":12715,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2543,"last_update":"2026-03-22T08:00:27.368393794Z"} +2026/03/22 08:00:32 [metric_collector] {"stage_name":"metric_collector","events_processed":7139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1427.8,"last_update":"2026-03-22T08:00:27.368747521Z"} +2026/03/22 08:00:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:00:27.38026927Z"} +2026/03/22 08:00:32 [detection_layer] {"stage_name":"detection_layer","events_processed":237,"events_dropped":0,"avg_latency_ms":17.30059919316852,"throughput_eps":0,"last_update":"2026-03-22T08:00:27.47932425Z"} +2026/03/22 08:00:32 [transform_engine] {"stage_name":"transform_engine","events_processed":238,"events_dropped":0,"avg_latency_ms":447.63932653562915,"throughput_eps":0,"last_update":"2026-03-22T08:00:28.918999336Z"} +2026/03/22 08:00:32 ───────────────────────────────────────────────── +2026/03/22 08:00:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:00:37 [log_collector] {"stage_name":"log_collector","events_processed":12715,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2543,"last_update":"2026-03-22T08:00:32.368694446Z"} +2026/03/22 08:00:37 [metric_collector] {"stage_name":"metric_collector","events_processed":7144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1428.8,"last_update":"2026-03-22T08:00:32.368668507Z"} +2026/03/22 08:00:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2860,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:00:32.376006702Z"} +2026/03/22 08:00:37 [detection_layer] {"stage_name":"detection_layer","events_processed":238,"events_dropped":0,"avg_latency_ms":16.274284954534817,"throughput_eps":0,"last_update":"2026-03-22T08:00:32.47924236Z"} +2026/03/22 08:00:37 [transform_engine] {"stage_name":"transform_engine","events_processed":238,"events_dropped":0,"avg_latency_ms":447.63932653562915,"throughput_eps":0,"last_update":"2026-03-22T08:00:32.479267768Z"} +2026/03/22 08:00:37 ───────────────────────────────────────────────── +2026/03/22 08:00:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:00:42 [transform_engine] {"stage_name":"transform_engine","events_processed":238,"events_dropped":0,"avg_latency_ms":447.63932653562915,"throughput_eps":0,"last_update":"2026-03-22T08:00:37.481369197Z"} +2026/03/22 08:00:42 [log_collector] {"stage_name":"log_collector","events_processed":12715,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2543,"last_update":"2026-03-22T08:00:37.369138971Z"} +2026/03/22 08:00:42 [metric_collector] {"stage_name":"metric_collector","events_processed":7149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1429.8,"last_update":"2026-03-22T08:00:37.369020334Z"} +2026/03/22 08:00:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2862,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:00:37.378043266Z"} +2026/03/22 08:00:42 [detection_layer] {"stage_name":"detection_layer","events_processed":238,"events_dropped":0,"avg_latency_ms":16.274284954534817,"throughput_eps":0,"last_update":"2026-03-22T08:00:37.48141736Z"} +2026/03/22 08:00:42 ───────────────────────────────────────────────── +2026/03/22 08:00:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:00:47 [log_collector] {"stage_name":"log_collector","events_processed":12718,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2543.6,"last_update":"2026-03-22T08:00:42.367981205Z"} +2026/03/22 08:00:47 [metric_collector] {"stage_name":"metric_collector","events_processed":7154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1430.8,"last_update":"2026-03-22T08:00:42.368221566Z"} +2026/03/22 08:00:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:00:42.375849547Z"} +2026/03/22 08:00:47 [detection_layer] {"stage_name":"detection_layer","events_processed":238,"events_dropped":0,"avg_latency_ms":16.274284954534817,"throughput_eps":0,"last_update":"2026-03-22T08:00:42.479104641Z"} +2026/03/22 08:00:47 [transform_engine] {"stage_name":"transform_engine","events_processed":238,"events_dropped":0,"avg_latency_ms":447.63932653562915,"throughput_eps":0,"last_update":"2026-03-22T08:00:42.479062451Z"} +2026/03/22 08:00:47 ───────────────────────────────────────────────── +2026/03/22 08:00:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:00:52 [log_collector] {"stage_name":"log_collector","events_processed":12726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2545.2,"last_update":"2026-03-22T08:00:47.36808701Z"} +2026/03/22 08:00:52 [metric_collector] {"stage_name":"metric_collector","events_processed":7159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1431.8,"last_update":"2026-03-22T08:00:47.368702328Z"} +2026/03/22 08:00:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:00:47.368054096Z"} +2026/03/22 08:00:52 [detection_layer] {"stage_name":"detection_layer","events_processed":238,"events_dropped":0,"avg_latency_ms":16.274284954534817,"throughput_eps":0,"last_update":"2026-03-22T08:00:47.47962024Z"} +2026/03/22 08:00:52 [transform_engine] {"stage_name":"transform_engine","events_processed":238,"events_dropped":0,"avg_latency_ms":447.63932653562915,"throughput_eps":0,"last_update":"2026-03-22T08:00:47.479648414Z"} +2026/03/22 08:00:52 ───────────────────────────────────────────────── +2026/03/22 08:00:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:00:57 [log_collector] {"stage_name":"log_collector","events_processed":12769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2553.8,"last_update":"2026-03-22T08:00:52.36798993Z"} +2026/03/22 08:00:57 [metric_collector] {"stage_name":"metric_collector","events_processed":7164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1432.8,"last_update":"2026-03-22T08:00:52.368431988Z"} +2026/03/22 08:00:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2868,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:00:52.376124882Z"} +2026/03/22 08:00:57 [detection_layer] {"stage_name":"detection_layer","events_processed":238,"events_dropped":0,"avg_latency_ms":16.274284954534817,"throughput_eps":0,"last_update":"2026-03-22T08:00:52.47944908Z"} +2026/03/22 08:00:57 [transform_engine] {"stage_name":"transform_engine","events_processed":238,"events_dropped":0,"avg_latency_ms":447.63932653562915,"throughput_eps":0,"last_update":"2026-03-22T08:00:52.4794751Z"} +2026/03/22 08:00:57 ───────────────────────────────────────────────── +Saved state: 11 clusters, 13079 messages, reason: none +2026/03/22 08:01:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:01:02 [log_collector] {"stage_name":"log_collector","events_processed":12927,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2585.4,"last_update":"2026-03-22T08:00:57.368954504Z"} +2026/03/22 08:01:02 [metric_collector] {"stage_name":"metric_collector","events_processed":7169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1433.8,"last_update":"2026-03-22T08:00:57.368978671Z"} +2026/03/22 08:01:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:00:57.379384151Z"} +2026/03/22 08:01:02 [detection_layer] {"stage_name":"detection_layer","events_processed":238,"events_dropped":0,"avg_latency_ms":16.274284954534817,"throughput_eps":0,"last_update":"2026-03-22T08:00:57.479155473Z"} +2026/03/22 08:01:02 [transform_engine] {"stage_name":"transform_engine","events_processed":239,"events_dropped":0,"avg_latency_ms":387.81456062850333,"throughput_eps":0,"last_update":"2026-03-22T08:00:57.627663455Z"} +2026/03/22 08:01:02 ───────────────────────────────────────────────── +2026/03/22 08:01:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:01:07 [log_collector] {"stage_name":"log_collector","events_processed":13084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2616.8,"last_update":"2026-03-22T08:01:02.368007193Z"} +2026/03/22 08:01:07 [metric_collector] {"stage_name":"metric_collector","events_processed":7174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1434.8,"last_update":"2026-03-22T08:01:02.368384064Z"} +2026/03/22 08:01:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:01:02.374472967Z"} +2026/03/22 08:01:07 [detection_layer] {"stage_name":"detection_layer","events_processed":239,"events_dropped":0,"avg_latency_ms":15.637466563627855,"throughput_eps":0,"last_update":"2026-03-22T08:01:02.479659341Z"} +2026/03/22 08:01:07 [transform_engine] {"stage_name":"transform_engine","events_processed":239,"events_dropped":0,"avg_latency_ms":387.81456062850333,"throughput_eps":0,"last_update":"2026-03-22T08:01:02.479590799Z"} +2026/03/22 08:01:07 ───────────────────────────────────────────────── +2026/03/22 08:01:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:01:12 [log_collector] {"stage_name":"log_collector","events_processed":13084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2616.8,"last_update":"2026-03-22T08:01:12.368288218Z"} +2026/03/22 08:01:12 [metric_collector] {"stage_name":"metric_collector","events_processed":7179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1435.8,"last_update":"2026-03-22T08:01:07.368436805Z"} +2026/03/22 08:01:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:01:07.377405564Z"} +2026/03/22 08:01:12 [detection_layer] {"stage_name":"detection_layer","events_processed":239,"events_dropped":0,"avg_latency_ms":15.637466563627855,"throughput_eps":0,"last_update":"2026-03-22T08:01:07.479734967Z"} +2026/03/22 08:01:12 [transform_engine] {"stage_name":"transform_engine","events_processed":239,"events_dropped":0,"avg_latency_ms":387.81456062850333,"throughput_eps":0,"last_update":"2026-03-22T08:01:07.479757119Z"} +2026/03/22 08:01:12 ───────────────────────────────────────────────── +2026/03/22 08:01:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:01:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2876,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:01:12.379334836Z"} +2026/03/22 08:01:17 [detection_layer] {"stage_name":"detection_layer","events_processed":239,"events_dropped":0,"avg_latency_ms":15.637466563627855,"throughput_eps":0,"last_update":"2026-03-22T08:01:12.479010645Z"} +2026/03/22 08:01:17 [transform_engine] {"stage_name":"transform_engine","events_processed":239,"events_dropped":0,"avg_latency_ms":387.81456062850333,"throughput_eps":0,"last_update":"2026-03-22T08:01:12.478893842Z"} +2026/03/22 08:01:17 [log_collector] {"stage_name":"log_collector","events_processed":13084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2616.8,"last_update":"2026-03-22T08:01:12.368288218Z"} +2026/03/22 08:01:17 [metric_collector] {"stage_name":"metric_collector","events_processed":7184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1436.8,"last_update":"2026-03-22T08:01:12.368779178Z"} +2026/03/22 08:01:17 ───────────────────────────────────────────────── +2026/03/22 08:01:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:01:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:01:17.376846796Z"} +2026/03/22 08:01:22 [detection_layer] {"stage_name":"detection_layer","events_processed":239,"events_dropped":0,"avg_latency_ms":15.637466563627855,"throughput_eps":0,"last_update":"2026-03-22T08:01:17.478957159Z"} +2026/03/22 08:01:22 [transform_engine] {"stage_name":"transform_engine","events_processed":239,"events_dropped":0,"avg_latency_ms":387.81456062850333,"throughput_eps":0,"last_update":"2026-03-22T08:01:17.479000561Z"} +2026/03/22 08:01:22 [log_collector] {"stage_name":"log_collector","events_processed":13084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2616.8,"last_update":"2026-03-22T08:01:17.368865499Z"} +2026/03/22 08:01:22 [metric_collector] {"stage_name":"metric_collector","events_processed":7189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1437.8,"last_update":"2026-03-22T08:01:17.369091001Z"} +2026/03/22 08:01:22 ───────────────────────────────────────────────── +2026/03/22 08:01:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:01:27 [transform_engine] {"stage_name":"transform_engine","events_processed":239,"events_dropped":0,"avg_latency_ms":387.81456062850333,"throughput_eps":0,"last_update":"2026-03-22T08:01:22.478983114Z"} +2026/03/22 08:01:27 [log_collector] {"stage_name":"log_collector","events_processed":13084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2616.8,"last_update":"2026-03-22T08:01:22.368660562Z"} +2026/03/22 08:01:27 [metric_collector] {"stage_name":"metric_collector","events_processed":7194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1438.8,"last_update":"2026-03-22T08:01:22.369030752Z"} +2026/03/22 08:01:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:01:22.376810894Z"} +2026/03/22 08:01:27 [detection_layer] {"stage_name":"detection_layer","events_processed":239,"events_dropped":0,"avg_latency_ms":15.637466563627855,"throughput_eps":0,"last_update":"2026-03-22T08:01:22.47897066Z"} +2026/03/22 08:01:27 ───────────────────────────────────────────────── +2026/03/22 08:01:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:01:32 [metric_collector] {"stage_name":"metric_collector","events_processed":7199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1439.8,"last_update":"2026-03-22T08:01:27.369212654Z"} +2026/03/22 08:01:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:01:27.37903082Z"} +2026/03/22 08:01:32 [detection_layer] {"stage_name":"detection_layer","events_processed":239,"events_dropped":0,"avg_latency_ms":15.637466563627855,"throughput_eps":0,"last_update":"2026-03-22T08:01:27.479269596Z"} +2026/03/22 08:01:32 [transform_engine] {"stage_name":"transform_engine","events_processed":240,"events_dropped":0,"avg_latency_ms":332.7357505028027,"throughput_eps":0,"last_update":"2026-03-22T08:01:27.591705366Z"} +2026/03/22 08:01:32 [log_collector] {"stage_name":"log_collector","events_processed":13084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2616.8,"last_update":"2026-03-22T08:01:27.369223405Z"} +2026/03/22 08:01:32 ───────────────────────────────────────────────── +2026/03/22 08:01:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:01:37 [metric_collector] {"stage_name":"metric_collector","events_processed":7204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1440.8,"last_update":"2026-03-22T08:01:32.369197294Z"} +2026/03/22 08:01:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:01:32.378365004Z"} +2026/03/22 08:01:37 [detection_layer] {"stage_name":"detection_layer","events_processed":240,"events_dropped":0,"avg_latency_ms":16.980652250902285,"throughput_eps":0,"last_update":"2026-03-22T08:01:32.479571464Z"} +2026/03/22 08:01:37 [transform_engine] {"stage_name":"transform_engine","events_processed":240,"events_dropped":0,"avg_latency_ms":332.7357505028027,"throughput_eps":0,"last_update":"2026-03-22T08:01:32.479540976Z"} +2026/03/22 08:01:37 [log_collector] {"stage_name":"log_collector","events_processed":13084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2616.8,"last_update":"2026-03-22T08:01:32.368316257Z"} +2026/03/22 08:01:37 ───────────────────────────────────────────────── +2026/03/22 08:01:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:01:42 [transform_engine] {"stage_name":"transform_engine","events_processed":240,"events_dropped":0,"avg_latency_ms":332.7357505028027,"throughput_eps":0,"last_update":"2026-03-22T08:01:37.479181635Z"} +2026/03/22 08:01:42 [log_collector] {"stage_name":"log_collector","events_processed":13084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2616.8,"last_update":"2026-03-22T08:01:37.368346162Z"} +2026/03/22 08:01:42 [metric_collector] {"stage_name":"metric_collector","events_processed":7209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1441.8,"last_update":"2026-03-22T08:01:37.368789331Z"} +2026/03/22 08:01:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2886,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:01:37.378952517Z"} +2026/03/22 08:01:42 [detection_layer] {"stage_name":"detection_layer","events_processed":240,"events_dropped":0,"avg_latency_ms":16.980652250902285,"throughput_eps":0,"last_update":"2026-03-22T08:01:37.479216583Z"} +2026/03/22 08:01:42 ───────────────────────────────────────────────── +2026/03/22 08:01:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:01:47 [log_collector] {"stage_name":"log_collector","events_processed":13084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2616.8,"last_update":"2026-03-22T08:01:42.368010775Z"} +2026/03/22 08:01:47 [metric_collector] {"stage_name":"metric_collector","events_processed":7214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1442.8,"last_update":"2026-03-22T08:01:42.368391284Z"} +2026/03/22 08:01:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:01:42.376183951Z"} +2026/03/22 08:01:47 [detection_layer] {"stage_name":"detection_layer","events_processed":240,"events_dropped":0,"avg_latency_ms":16.980652250902285,"throughput_eps":0,"last_update":"2026-03-22T08:01:42.47942645Z"} +2026/03/22 08:01:47 [transform_engine] {"stage_name":"transform_engine","events_processed":240,"events_dropped":0,"avg_latency_ms":332.7357505028027,"throughput_eps":0,"last_update":"2026-03-22T08:01:42.479396333Z"} +2026/03/22 08:01:47 ───────────────────────────────────────────────── +2026/03/22 08:01:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:01:52 [log_collector] {"stage_name":"log_collector","events_processed":13084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2616.8,"last_update":"2026-03-22T08:01:47.36836553Z"} +2026/03/22 08:01:52 [metric_collector] {"stage_name":"metric_collector","events_processed":7219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1443.8,"last_update":"2026-03-22T08:01:47.368711963Z"} +2026/03/22 08:01:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:01:47.376309806Z"} +2026/03/22 08:01:52 [detection_layer] {"stage_name":"detection_layer","events_processed":240,"events_dropped":0,"avg_latency_ms":16.980652250902285,"throughput_eps":0,"last_update":"2026-03-22T08:01:47.479550021Z"} +2026/03/22 08:01:52 [transform_engine] {"stage_name":"transform_engine","events_processed":240,"events_dropped":0,"avg_latency_ms":332.7357505028027,"throughput_eps":0,"last_update":"2026-03-22T08:01:47.479581061Z"} +2026/03/22 08:01:52 ───────────────────────────────────────────────── +2026/03/22 08:01:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:01:57 [transform_engine] {"stage_name":"transform_engine","events_processed":240,"events_dropped":0,"avg_latency_ms":332.7357505028027,"throughput_eps":0,"last_update":"2026-03-22T08:01:52.479305675Z"} +2026/03/22 08:01:57 [log_collector] {"stage_name":"log_collector","events_processed":13084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2616.8,"last_update":"2026-03-22T08:01:52.367961757Z"} +2026/03/22 08:01:57 [metric_collector] {"stage_name":"metric_collector","events_processed":7224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1444.8,"last_update":"2026-03-22T08:01:52.368513033Z"} +2026/03/22 08:01:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2892,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:01:52.375974004Z"} +2026/03/22 08:01:57 [detection_layer] {"stage_name":"detection_layer","events_processed":240,"events_dropped":0,"avg_latency_ms":16.980652250902285,"throughput_eps":0,"last_update":"2026-03-22T08:01:52.479332968Z"} +2026/03/22 08:01:57 ───────────────────────────────────────────────── +2026/03/22 08:01:57 [ANOMALY] time=2026-03-22T08:01:57Z score=0.8192 method=SEAD details=MAD!:w=0.53,s=0.88 RRCF-fast!:w=0.13,s=0.95 RRCF-mid!:w=0.11,s=0.98 RRCF-slow!:w=0.10,s=1.00 COPOD!:w=0.13,s=0.18 +2026/03/22 08:02:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:02:02 [detection_layer] {"stage_name":"detection_layer","events_processed":240,"events_dropped":0,"avg_latency_ms":16.980652250902285,"throughput_eps":0,"last_update":"2026-03-22T08:01:57.479442026Z"} +2026/03/22 08:02:02 [transform_engine] {"stage_name":"transform_engine","events_processed":241,"events_dropped":0,"avg_latency_ms":278.3854644022422,"throughput_eps":0,"last_update":"2026-03-22T08:01:57.540459088Z"} +2026/03/22 08:02:02 [log_collector] {"stage_name":"log_collector","events_processed":13084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2616.8,"last_update":"2026-03-22T08:01:57.36825569Z"} +2026/03/22 08:02:02 [metric_collector] {"stage_name":"metric_collector","events_processed":7229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1445.8,"last_update":"2026-03-22T08:01:57.368340443Z"} +2026/03/22 08:02:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:01:57.376215667Z"} +2026/03/22 08:02:02 ───────────────────────────────────────────────── +2026/03/22 08:02:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:02:07 [log_collector] {"stage_name":"log_collector","events_processed":13084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2616.8,"last_update":"2026-03-22T08:02:02.368734936Z"} +2026/03/22 08:02:07 [metric_collector] {"stage_name":"metric_collector","events_processed":7234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1446.8,"last_update":"2026-03-22T08:02:02.369238461Z"} +2026/03/22 08:02:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2896,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:02:02.376023146Z"} +2026/03/22 08:02:07 [detection_layer] {"stage_name":"detection_layer","events_processed":241,"events_dropped":0,"avg_latency_ms":16.32578460072183,"throughput_eps":0,"last_update":"2026-03-22T08:02:02.479224527Z"} +2026/03/22 08:02:07 [transform_engine] {"stage_name":"transform_engine","events_processed":241,"events_dropped":0,"avg_latency_ms":278.3854644022422,"throughput_eps":0,"last_update":"2026-03-22T08:02:02.479237963Z"} +2026/03/22 08:02:07 ───────────────────────────────────────────────── +2026/03/22 08:02:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:02:12 [log_collector] {"stage_name":"log_collector","events_processed":13084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2616.8,"last_update":"2026-03-22T08:02:07.368329747Z"} +2026/03/22 08:02:12 [metric_collector] {"stage_name":"metric_collector","events_processed":7239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1447.8,"last_update":"2026-03-22T08:02:07.368470066Z"} +2026/03/22 08:02:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2898,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:02:07.377914636Z"} +2026/03/22 08:02:12 [detection_layer] {"stage_name":"detection_layer","events_processed":241,"events_dropped":0,"avg_latency_ms":16.32578460072183,"throughput_eps":0,"last_update":"2026-03-22T08:02:07.479136666Z"} +2026/03/22 08:02:12 [transform_engine] {"stage_name":"transform_engine","events_processed":241,"events_dropped":0,"avg_latency_ms":278.3854644022422,"throughput_eps":0,"last_update":"2026-03-22T08:02:07.479149761Z"} +2026/03/22 08:02:12 ───────────────────────────────────────────────── +Saved state: 11 clusters, 13085 messages, reason: none +2026/03/22 08:02:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:02:17 [log_collector] {"stage_name":"log_collector","events_processed":13084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2616.8,"last_update":"2026-03-22T08:02:12.368715999Z"} +2026/03/22 08:02:17 [metric_collector] {"stage_name":"metric_collector","events_processed":7244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1448.8,"last_update":"2026-03-22T08:02:12.369341897Z"} +2026/03/22 08:02:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2900,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:02:12.378073913Z"} +2026/03/22 08:02:17 [detection_layer] {"stage_name":"detection_layer","events_processed":241,"events_dropped":0,"avg_latency_ms":16.32578460072183,"throughput_eps":0,"last_update":"2026-03-22T08:02:12.479295232Z"} +2026/03/22 08:02:17 [transform_engine] {"stage_name":"transform_engine","events_processed":241,"events_dropped":0,"avg_latency_ms":278.3854644022422,"throughput_eps":0,"last_update":"2026-03-22T08:02:12.479308888Z"} +2026/03/22 08:02:17 ───────────────────────────────────────────────── +2026/03/22 08:02:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:02:22 [log_collector] {"stage_name":"log_collector","events_processed":13087,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2617.4,"last_update":"2026-03-22T08:02:22.368119241Z"} +2026/03/22 08:02:22 [metric_collector] {"stage_name":"metric_collector","events_processed":7249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1449.8,"last_update":"2026-03-22T08:02:17.368314113Z"} +2026/03/22 08:02:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:02:17.37572658Z"} +2026/03/22 08:02:22 [detection_layer] {"stage_name":"detection_layer","events_processed":241,"events_dropped":0,"avg_latency_ms":16.32578460072183,"throughput_eps":0,"last_update":"2026-03-22T08:02:17.479967442Z"} +2026/03/22 08:02:22 [transform_engine] {"stage_name":"transform_engine","events_processed":241,"events_dropped":0,"avg_latency_ms":278.3854644022422,"throughput_eps":0,"last_update":"2026-03-22T08:02:17.478851636Z"} +2026/03/22 08:02:22 ───────────────────────────────────────────────── +2026/03/22 08:02:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:02:27 [log_collector] {"stage_name":"log_collector","events_processed":13087,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2617.4,"last_update":"2026-03-22T08:02:22.368119241Z"} +2026/03/22 08:02:27 [metric_collector] {"stage_name":"metric_collector","events_processed":7254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1450.8,"last_update":"2026-03-22T08:02:22.368419216Z"} +2026/03/22 08:02:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:02:22.377089222Z"} +2026/03/22 08:02:27 [detection_layer] {"stage_name":"detection_layer","events_processed":241,"events_dropped":0,"avg_latency_ms":16.32578460072183,"throughput_eps":0,"last_update":"2026-03-22T08:02:22.479277322Z"} +2026/03/22 08:02:27 [transform_engine] {"stage_name":"transform_engine","events_processed":241,"events_dropped":0,"avg_latency_ms":278.3854644022422,"throughput_eps":0,"last_update":"2026-03-22T08:02:22.479290377Z"} +2026/03/22 08:02:27 ───────────────────────────────────────────────── +2026/03/22 08:02:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:02:32 [log_collector] {"stage_name":"log_collector","events_processed":13087,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2617.4,"last_update":"2026-03-22T08:02:27.367983902Z"} +2026/03/22 08:02:32 [metric_collector] {"stage_name":"metric_collector","events_processed":7259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1451.8,"last_update":"2026-03-22T08:02:27.368638737Z"} +2026/03/22 08:02:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2906,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:02:27.376950728Z"} +2026/03/22 08:02:32 [detection_layer] {"stage_name":"detection_layer","events_processed":241,"events_dropped":0,"avg_latency_ms":16.32578460072183,"throughput_eps":0,"last_update":"2026-03-22T08:02:27.479176931Z"} +2026/03/22 08:02:32 [transform_engine] {"stage_name":"transform_engine","events_processed":241,"events_dropped":0,"avg_latency_ms":278.3854644022422,"throughput_eps":0,"last_update":"2026-03-22T08:02:27.479188503Z"} +2026/03/22 08:02:32 ───────────────────────────────────────────────── +2026/03/22 08:02:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:02:37 [log_collector] {"stage_name":"log_collector","events_processed":13089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2617.8,"last_update":"2026-03-22T08:02:32.367973801Z"} +2026/03/22 08:02:37 [metric_collector] {"stage_name":"metric_collector","events_processed":7264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1452.8,"last_update":"2026-03-22T08:02:32.368311529Z"} +2026/03/22 08:02:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2908,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:02:32.375364328Z"} +2026/03/22 08:02:37 [detection_layer] {"stage_name":"detection_layer","events_processed":242,"events_dropped":0,"avg_latency_ms":16.936265080577463,"throughput_eps":0,"last_update":"2026-03-22T08:02:32.479555685Z"} +2026/03/22 08:02:37 [transform_engine] {"stage_name":"transform_engine","events_processed":242,"events_dropped":0,"avg_latency_ms":245.15424812179376,"throughput_eps":0,"last_update":"2026-03-22T08:02:32.47958468Z"} +2026/03/22 08:02:37 ───────────────────────────────────────────────── +2026/03/22 08:02:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:02:42 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:02:37.367945776Z"} +2026/03/22 08:02:42 [metric_collector] {"stage_name":"metric_collector","events_processed":7268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1453.6,"last_update":"2026-03-22T08:02:37.367938301Z"} +2026/03/22 08:02:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:02:37.378392725Z"} +2026/03/22 08:02:42 [detection_layer] {"stage_name":"detection_layer","events_processed":242,"events_dropped":0,"avg_latency_ms":16.936265080577463,"throughput_eps":0,"last_update":"2026-03-22T08:02:37.479658308Z"} +2026/03/22 08:02:42 [transform_engine] {"stage_name":"transform_engine","events_processed":242,"events_dropped":0,"avg_latency_ms":245.15424812179376,"throughput_eps":0,"last_update":"2026-03-22T08:02:37.479675211Z"} +2026/03/22 08:02:42 ───────────────────────────────────────────────── +2026/03/22 08:02:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:02:47 [metric_collector] {"stage_name":"metric_collector","events_processed":7274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1454.8,"last_update":"2026-03-22T08:02:42.368433262Z"} +2026/03/22 08:02:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2912,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:02:42.376522476Z"} +2026/03/22 08:02:47 [detection_layer] {"stage_name":"detection_layer","events_processed":242,"events_dropped":0,"avg_latency_ms":16.936265080577463,"throughput_eps":0,"last_update":"2026-03-22T08:02:42.479728205Z"} +2026/03/22 08:02:47 [transform_engine] {"stage_name":"transform_engine","events_processed":242,"events_dropped":0,"avg_latency_ms":245.15424812179376,"throughput_eps":0,"last_update":"2026-03-22T08:02:42.479707165Z"} +2026/03/22 08:02:47 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:02:42.367974062Z"} +2026/03/22 08:02:47 ───────────────────────────────────────────────── +2026/03/22 08:02:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:02:52 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:02:47.368598008Z"} +2026/03/22 08:02:52 [metric_collector] {"stage_name":"metric_collector","events_processed":7278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1455.6,"last_update":"2026-03-22T08:02:47.368623196Z"} +2026/03/22 08:02:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:02:47.376104686Z"} +2026/03/22 08:02:52 [detection_layer] {"stage_name":"detection_layer","events_processed":242,"events_dropped":0,"avg_latency_ms":16.936265080577463,"throughput_eps":0,"last_update":"2026-03-22T08:02:47.479324322Z"} +2026/03/22 08:02:52 [transform_engine] {"stage_name":"transform_engine","events_processed":242,"events_dropped":0,"avg_latency_ms":245.15424812179376,"throughput_eps":0,"last_update":"2026-03-22T08:02:47.479300727Z"} +2026/03/22 08:02:52 ───────────────────────────────────────────────── +2026/03/22 08:02:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:02:57 [metric_collector] {"stage_name":"metric_collector","events_processed":7284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1456.8,"last_update":"2026-03-22T08:02:52.368329385Z"} +2026/03/22 08:02:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:02:52.37746843Z"} +2026/03/22 08:02:57 [detection_layer] {"stage_name":"detection_layer","events_processed":242,"events_dropped":0,"avg_latency_ms":16.936265080577463,"throughput_eps":0,"last_update":"2026-03-22T08:02:52.479698831Z"} +2026/03/22 08:02:57 [transform_engine] {"stage_name":"transform_engine","events_processed":242,"events_dropped":0,"avg_latency_ms":245.15424812179376,"throughput_eps":0,"last_update":"2026-03-22T08:02:52.479676228Z"} +2026/03/22 08:02:57 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:02:52.368006907Z"} +2026/03/22 08:02:57 ───────────────────────────────────────────────── +2026/03/22 08:02:57 [ANOMALY] time=2026-03-22T08:02:57Z score=0.9830 method=SEAD details=MAD!:w=0.53,s=1.00 RRCF-fast!:w=0.12,s=0.97 RRCF-mid!:w=0.11,s=0.98 RRCF-slow!:w=0.10,s=1.00 COPOD!:w=0.14,s=0.92 +2026/03/22 08:03:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:03:02 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:02:57.367967253Z"} +2026/03/22 08:03:02 [metric_collector] {"stage_name":"metric_collector","events_processed":7289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1457.8,"last_update":"2026-03-22T08:02:57.368293407Z"} +2026/03/22 08:03:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2918,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:02:57.377840344Z"} +2026/03/22 08:03:02 [detection_layer] {"stage_name":"detection_layer","events_processed":242,"events_dropped":0,"avg_latency_ms":16.936265080577463,"throughput_eps":0,"last_update":"2026-03-22T08:02:57.480022492Z"} +2026/03/22 08:03:02 [transform_engine] {"stage_name":"transform_engine","events_processed":243,"events_dropped":0,"avg_latency_ms":219.465125297435,"throughput_eps":0,"last_update":"2026-03-22T08:02:57.595611831Z"} +2026/03/22 08:03:02 ───────────────────────────────────────────────── +2026/03/22 08:03:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:03:07 [transform_engine] {"stage_name":"transform_engine","events_processed":243,"events_dropped":0,"avg_latency_ms":219.465125297435,"throughput_eps":0,"last_update":"2026-03-22T08:03:02.479218172Z"} +2026/03/22 08:03:07 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:03:02.368367961Z"} +2026/03/22 08:03:07 [metric_collector] {"stage_name":"metric_collector","events_processed":7294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1458.8,"last_update":"2026-03-22T08:03:02.368661764Z"} +2026/03/22 08:03:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2920,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:03:02.377997967Z"} +2026/03/22 08:03:07 [detection_layer] {"stage_name":"detection_layer","events_processed":243,"events_dropped":0,"avg_latency_ms":15.804055464461971,"throughput_eps":0,"last_update":"2026-03-22T08:03:02.479204968Z"} +2026/03/22 08:03:07 ───────────────────────────────────────────────── +2026/03/22 08:03:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:03:12 [transform_engine] {"stage_name":"transform_engine","events_processed":243,"events_dropped":0,"avg_latency_ms":219.465125297435,"throughput_eps":0,"last_update":"2026-03-22T08:03:07.479813157Z"} +2026/03/22 08:03:12 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:03:07.367970576Z"} +2026/03/22 08:03:12 [metric_collector] {"stage_name":"metric_collector","events_processed":7299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1459.8,"last_update":"2026-03-22T08:03:07.368290929Z"} +2026/03/22 08:03:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:03:07.376589334Z"} +2026/03/22 08:03:12 [detection_layer] {"stage_name":"detection_layer","events_processed":243,"events_dropped":0,"avg_latency_ms":15.804055464461971,"throughput_eps":0,"last_update":"2026-03-22T08:03:07.479801265Z"} +2026/03/22 08:03:12 ───────────────────────────────────────────────── +2026/03/22 08:03:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:03:17 [transform_engine] {"stage_name":"transform_engine","events_processed":243,"events_dropped":0,"avg_latency_ms":219.465125297435,"throughput_eps":0,"last_update":"2026-03-22T08:03:12.479223191Z"} +2026/03/22 08:03:17 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:03:12.36842529Z"} +2026/03/22 08:03:17 [metric_collector] {"stage_name":"metric_collector","events_processed":7304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1460.8,"last_update":"2026-03-22T08:03:12.368587099Z"} +2026/03/22 08:03:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:03:12.377999749Z"} +2026/03/22 08:03:17 [detection_layer] {"stage_name":"detection_layer","events_processed":243,"events_dropped":0,"avg_latency_ms":15.804055464461971,"throughput_eps":0,"last_update":"2026-03-22T08:03:12.479212169Z"} +2026/03/22 08:03:17 ───────────────────────────────────────────────── +2026/03/22 08:03:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:03:22 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:03:17.368684737Z"} +2026/03/22 08:03:22 [metric_collector] {"stage_name":"metric_collector","events_processed":7309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1461.8,"last_update":"2026-03-22T08:03:17.369055598Z"} +2026/03/22 08:03:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:03:17.374804079Z"} +2026/03/22 08:03:22 [detection_layer] {"stage_name":"detection_layer","events_processed":243,"events_dropped":0,"avg_latency_ms":15.804055464461971,"throughput_eps":0,"last_update":"2026-03-22T08:03:17.480006281Z"} +2026/03/22 08:03:22 [transform_engine] {"stage_name":"transform_engine","events_processed":243,"events_dropped":0,"avg_latency_ms":219.465125297435,"throughput_eps":0,"last_update":"2026-03-22T08:03:17.47889363Z"} +2026/03/22 08:03:22 ───────────────────────────────────────────────── +2026/03/22 08:03:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:03:27 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:03:22.367968076Z"} +2026/03/22 08:03:27 [metric_collector] {"stage_name":"metric_collector","events_processed":7314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1462.8,"last_update":"2026-03-22T08:03:22.368146688Z"} +2026/03/22 08:03:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:03:22.374867761Z"} +2026/03/22 08:03:27 [detection_layer] {"stage_name":"detection_layer","events_processed":243,"events_dropped":0,"avg_latency_ms":15.804055464461971,"throughput_eps":0,"last_update":"2026-03-22T08:03:22.479045782Z"} +2026/03/22 08:03:27 [transform_engine] {"stage_name":"transform_engine","events_processed":243,"events_dropped":0,"avg_latency_ms":219.465125297435,"throughput_eps":0,"last_update":"2026-03-22T08:03:22.479058096Z"} +2026/03/22 08:03:27 ───────────────────────────────────────────────── +2026/03/22 08:03:27 [ANOMALY] time=2026-03-22T08:03:27Z score=0.9548 method=SEAD details=MAD!:w=0.53,s=1.00 RRCF-fast!:w=0.12,s=0.98 RRCF-mid!:w=0.11,s=0.99 RRCF-slow!:w=0.10,s=1.00 COPOD!:w=0.14,s=0.70 +2026/03/22 08:03:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:03:32 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:03:27.368410254Z"} +2026/03/22 08:03:32 [metric_collector] {"stage_name":"metric_collector","events_processed":7319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1463.8,"last_update":"2026-03-22T08:03:27.368696313Z"} +2026/03/22 08:03:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2930,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:03:27.377735386Z"} +2026/03/22 08:03:32 [detection_layer] {"stage_name":"detection_layer","events_processed":243,"events_dropped":0,"avg_latency_ms":15.804055464461971,"throughput_eps":0,"last_update":"2026-03-22T08:03:27.479981417Z"} +2026/03/22 08:03:32 [transform_engine] {"stage_name":"transform_engine","events_processed":244,"events_dropped":0,"avg_latency_ms":189.509734237948,"throughput_eps":0,"last_update":"2026-03-22T08:03:27.548547217Z"} +2026/03/22 08:03:32 ───────────────────────────────────────────────── +2026/03/22 08:03:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:03:37 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:03:32.368029541Z"} +2026/03/22 08:03:37 [metric_collector] {"stage_name":"metric_collector","events_processed":7324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1464.8,"last_update":"2026-03-22T08:03:32.36841497Z"} +2026/03/22 08:03:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:03:32.376955378Z"} +2026/03/22 08:03:37 [detection_layer] {"stage_name":"detection_layer","events_processed":244,"events_dropped":0,"avg_latency_ms":15.177079771569577,"throughput_eps":0,"last_update":"2026-03-22T08:03:32.479161522Z"} +2026/03/22 08:03:37 [transform_engine] {"stage_name":"transform_engine","events_processed":244,"events_dropped":0,"avg_latency_ms":189.509734237948,"throughput_eps":0,"last_update":"2026-03-22T08:03:32.479174838Z"} +2026/03/22 08:03:37 ───────────────────────────────────────────────── +2026/03/22 08:03:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:03:42 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:03:42.368319895Z"} +2026/03/22 08:03:42 [metric_collector] {"stage_name":"metric_collector","events_processed":7329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1465.8,"last_update":"2026-03-22T08:03:37.368249798Z"} +2026/03/22 08:03:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:03:37.37660391Z"} +2026/03/22 08:03:42 [detection_layer] {"stage_name":"detection_layer","events_processed":244,"events_dropped":0,"avg_latency_ms":15.177079771569577,"throughput_eps":0,"last_update":"2026-03-22T08:03:37.479786153Z"} +2026/03/22 08:03:42 [transform_engine] {"stage_name":"transform_engine","events_processed":244,"events_dropped":0,"avg_latency_ms":189.509734237948,"throughput_eps":0,"last_update":"2026-03-22T08:03:37.479797796Z"} +2026/03/22 08:03:42 ───────────────────────────────────────────────── +2026/03/22 08:03:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:03:47 [detection_layer] {"stage_name":"detection_layer","events_processed":244,"events_dropped":0,"avg_latency_ms":15.177079771569577,"throughput_eps":0,"last_update":"2026-03-22T08:03:42.479893993Z"} +2026/03/22 08:03:47 [transform_engine] {"stage_name":"transform_engine","events_processed":244,"events_dropped":0,"avg_latency_ms":189.509734237948,"throughput_eps":0,"last_update":"2026-03-22T08:03:42.479874345Z"} +2026/03/22 08:03:47 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:03:47.36827676Z"} +2026/03/22 08:03:47 [metric_collector] {"stage_name":"metric_collector","events_processed":7334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1466.8,"last_update":"2026-03-22T08:03:42.368679675Z"} +2026/03/22 08:03:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:03:42.377638174Z"} +2026/03/22 08:03:47 ───────────────────────────────────────────────── +2026/03/22 08:03:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:03:52 [transform_engine] {"stage_name":"transform_engine","events_processed":244,"events_dropped":0,"avg_latency_ms":189.509734237948,"throughput_eps":0,"last_update":"2026-03-22T08:03:47.479585891Z"} +2026/03/22 08:03:52 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:03:52.367966075Z"} +2026/03/22 08:03:52 [metric_collector] {"stage_name":"metric_collector","events_processed":7339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1467.8,"last_update":"2026-03-22T08:03:47.368701303Z"} +2026/03/22 08:03:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:03:47.379369835Z"} +2026/03/22 08:03:52 [detection_layer] {"stage_name":"detection_layer","events_processed":244,"events_dropped":0,"avg_latency_ms":15.177079771569577,"throughput_eps":0,"last_update":"2026-03-22T08:03:47.479556414Z"} +2026/03/22 08:03:52 ───────────────────────────────────────────────── +2026/03/22 08:03:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:03:57 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:03:57.368596859Z"} +2026/03/22 08:03:57 [metric_collector] {"stage_name":"metric_collector","events_processed":7344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1468.8,"last_update":"2026-03-22T08:03:52.368439723Z"} +2026/03/22 08:03:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2940,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:03:52.37736819Z"} +2026/03/22 08:03:57 [detection_layer] {"stage_name":"detection_layer","events_processed":244,"events_dropped":0,"avg_latency_ms":15.177079771569577,"throughput_eps":0,"last_update":"2026-03-22T08:03:52.47956476Z"} +2026/03/22 08:03:57 [transform_engine] {"stage_name":"transform_engine","events_processed":244,"events_dropped":0,"avg_latency_ms":189.509734237948,"throughput_eps":0,"last_update":"2026-03-22T08:03:52.479528211Z"} +2026/03/22 08:03:57 ───────────────────────────────────────────────── +2026/03/22 08:03:57 [ANOMALY] time=2026-03-22T08:03:57Z score=0.8954 method=SEAD details=MAD!:w=0.53,s=0.99 RRCF-fast!:w=0.12,s=0.95 RRCF-mid!:w=0.11,s=0.98 RRCF-slow!:w=0.10,s=1.00 COPOD!:w=0.14,s=0.33 +2026/03/22 08:04:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:04:02 [detection_layer] {"stage_name":"detection_layer","events_processed":244,"events_dropped":0,"avg_latency_ms":15.177079771569577,"throughput_eps":0,"last_update":"2026-03-22T08:03:57.479681237Z"} +2026/03/22 08:04:02 [transform_engine] {"stage_name":"transform_engine","events_processed":245,"events_dropped":0,"avg_latency_ms":231.40299899035844,"throughput_eps":0,"last_update":"2026-03-22T08:03:57.878590166Z"} +2026/03/22 08:04:02 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:03:57.368596859Z"} +2026/03/22 08:04:02 [metric_collector] {"stage_name":"metric_collector","events_processed":7349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1469.8,"last_update":"2026-03-22T08:03:57.369369018Z"} +2026/03/22 08:04:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:03:57.377418041Z"} +2026/03/22 08:04:02 ───────────────────────────────────────────────── +2026/03/22 08:04:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:04:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:04:02.377328751Z"} +2026/03/22 08:04:07 [detection_layer] {"stage_name":"detection_layer","events_processed":245,"events_dropped":0,"avg_latency_ms":15.034913417255662,"throughput_eps":0,"last_update":"2026-03-22T08:04:02.479517695Z"} +2026/03/22 08:04:07 [transform_engine] {"stage_name":"transform_engine","events_processed":245,"events_dropped":0,"avg_latency_ms":231.40299899035844,"throughput_eps":0,"last_update":"2026-03-22T08:04:02.479543624Z"} +2026/03/22 08:04:07 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:04:02.368468915Z"} +2026/03/22 08:04:07 [metric_collector] {"stage_name":"metric_collector","events_processed":7354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1470.8,"last_update":"2026-03-22T08:04:02.368851958Z"} +2026/03/22 08:04:07 ───────────────────────────────────────────────── +2026/03/22 08:04:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:04:12 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:04:07.368477741Z"} +2026/03/22 08:04:12 [metric_collector] {"stage_name":"metric_collector","events_processed":7359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1471.8,"last_update":"2026-03-22T08:04:07.368847059Z"} +2026/03/22 08:04:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:04:07.376970383Z"} +2026/03/22 08:04:12 [detection_layer] {"stage_name":"detection_layer","events_processed":245,"events_dropped":0,"avg_latency_ms":15.034913417255662,"throughput_eps":0,"last_update":"2026-03-22T08:04:07.47917713Z"} +2026/03/22 08:04:12 [transform_engine] {"stage_name":"transform_engine","events_processed":245,"events_dropped":0,"avg_latency_ms":231.40299899035844,"throughput_eps":0,"last_update":"2026-03-22T08:04:07.479200044Z"} +2026/03/22 08:04:12 ───────────────────────────────────────────────── +2026/03/22 08:04:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:04:17 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:04:12.368290368Z"} +2026/03/22 08:04:17 [metric_collector] {"stage_name":"metric_collector","events_processed":7364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1472.8,"last_update":"2026-03-22T08:04:12.368762694Z"} +2026/03/22 08:04:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:04:12.37744522Z"} +2026/03/22 08:04:17 [detection_layer] {"stage_name":"detection_layer","events_processed":245,"events_dropped":0,"avg_latency_ms":15.034913417255662,"throughput_eps":0,"last_update":"2026-03-22T08:04:12.47964864Z"} +2026/03/22 08:04:17 [transform_engine] {"stage_name":"transform_engine","events_processed":245,"events_dropped":0,"avg_latency_ms":231.40299899035844,"throughput_eps":0,"last_update":"2026-03-22T08:04:12.479667977Z"} +2026/03/22 08:04:17 ───────────────────────────────────────────────── +2026/03/22 08:04:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:04:22 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:04:17.36796494Z"} +2026/03/22 08:04:22 [metric_collector] {"stage_name":"metric_collector","events_processed":7369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1473.8,"last_update":"2026-03-22T08:04:17.368244876Z"} +2026/03/22 08:04:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:04:17.37628913Z"} +2026/03/22 08:04:22 [detection_layer] {"stage_name":"detection_layer","events_processed":245,"events_dropped":0,"avg_latency_ms":15.034913417255662,"throughput_eps":0,"last_update":"2026-03-22T08:04:17.479491844Z"} +2026/03/22 08:04:22 [transform_engine] {"stage_name":"transform_engine","events_processed":245,"events_dropped":0,"avg_latency_ms":231.40299899035844,"throughput_eps":0,"last_update":"2026-03-22T08:04:17.479518075Z"} +2026/03/22 08:04:22 ───────────────────────────────────────────────── +2026/03/22 08:04:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:04:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:04:22.374203217Z"} +2026/03/22 08:04:27 [detection_layer] {"stage_name":"detection_layer","events_processed":245,"events_dropped":0,"avg_latency_ms":15.034913417255662,"throughput_eps":0,"last_update":"2026-03-22T08:04:22.479303958Z"} +2026/03/22 08:04:27 [transform_engine] {"stage_name":"transform_engine","events_processed":245,"events_dropped":0,"avg_latency_ms":231.40299899035844,"throughput_eps":0,"last_update":"2026-03-22T08:04:22.479318586Z"} +2026/03/22 08:04:27 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:04:22.36798875Z"} +2026/03/22 08:04:27 [metric_collector] {"stage_name":"metric_collector","events_processed":7374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1474.8,"last_update":"2026-03-22T08:04:22.368247766Z"} +2026/03/22 08:04:27 ───────────────────────────────────────────────── +2026/03/22 08:04:27 [ANOMALY] time=2026-03-22T08:04:27Z score=0.8902 method=SEAD details=MAD!:w=0.53,s=0.99 RRCF-fast!:w=0.12,s=0.87 RRCF-mid!:w=0.11,s=0.96 RRCF-slow!:w=0.10,s=0.99 COPOD!:w=0.14,s=0.39 +2026/03/22 08:04:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:04:32 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:04:27.368324016Z"} +2026/03/22 08:04:32 [metric_collector] {"stage_name":"metric_collector","events_processed":7379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1475.8,"last_update":"2026-03-22T08:04:27.368286022Z"} +2026/03/22 08:04:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:04:27.377249057Z"} +2026/03/22 08:04:32 [detection_layer] {"stage_name":"detection_layer","events_processed":245,"events_dropped":0,"avg_latency_ms":15.034913417255662,"throughput_eps":0,"last_update":"2026-03-22T08:04:27.479445191Z"} +2026/03/22 08:04:32 [transform_engine] {"stage_name":"transform_engine","events_processed":245,"events_dropped":0,"avg_latency_ms":231.40299899035844,"throughput_eps":0,"last_update":"2026-03-22T08:04:27.479479807Z"} +2026/03/22 08:04:32 ───────────────────────────────────────────────── +2026/03/22 08:04:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:04:37 [metric_collector] {"stage_name":"metric_collector","events_processed":7384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1476.8,"last_update":"2026-03-22T08:04:32.368417899Z"} +2026/03/22 08:04:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:04:32.376874512Z"} +2026/03/22 08:04:37 [detection_layer] {"stage_name":"detection_layer","events_processed":246,"events_dropped":0,"avg_latency_ms":14.878286133804531,"throughput_eps":0,"last_update":"2026-03-22T08:04:32.479077699Z"} +2026/03/22 08:04:37 [transform_engine] {"stage_name":"transform_engine","events_processed":246,"events_dropped":0,"avg_latency_ms":198.86941139228676,"throughput_eps":0,"last_update":"2026-03-22T08:04:32.479099091Z"} +2026/03/22 08:04:37 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:04:32.368171838Z"} +2026/03/22 08:04:37 ───────────────────────────────────────────────── +2026/03/22 08:04:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:04:42 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:04:42.368559298Z"} +2026/03/22 08:04:42 [metric_collector] {"stage_name":"metric_collector","events_processed":7389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1477.8,"last_update":"2026-03-22T08:04:37.368304492Z"} +2026/03/22 08:04:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2958,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:04:37.376877599Z"} +2026/03/22 08:04:42 [detection_layer] {"stage_name":"detection_layer","events_processed":246,"events_dropped":0,"avg_latency_ms":14.878286133804531,"throughput_eps":0,"last_update":"2026-03-22T08:04:37.479114579Z"} +2026/03/22 08:04:42 [transform_engine] {"stage_name":"transform_engine","events_processed":246,"events_dropped":0,"avg_latency_ms":198.86941139228676,"throughput_eps":0,"last_update":"2026-03-22T08:04:37.479091956Z"} +2026/03/22 08:04:42 ───────────────────────────────────────────────── +2026/03/22 08:04:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:04:47 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:04:42.368559298Z"} +2026/03/22 08:04:47 [metric_collector] {"stage_name":"metric_collector","events_processed":7394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1478.8,"last_update":"2026-03-22T08:04:42.368963542Z"} +2026/03/22 08:04:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:04:42.377753334Z"} +2026/03/22 08:04:47 [detection_layer] {"stage_name":"detection_layer","events_processed":246,"events_dropped":0,"avg_latency_ms":14.878286133804531,"throughput_eps":0,"last_update":"2026-03-22T08:04:42.479937524Z"} +2026/03/22 08:04:47 [transform_engine] {"stage_name":"transform_engine","events_processed":246,"events_dropped":0,"avg_latency_ms":198.86941139228676,"throughput_eps":0,"last_update":"2026-03-22T08:04:42.478844409Z"} +2026/03/22 08:04:47 ───────────────────────────────────────────────── +2026/03/22 08:04:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:04:52 [metric_collector] {"stage_name":"metric_collector","events_processed":7399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1479.8,"last_update":"2026-03-22T08:04:47.368946322Z"} +2026/03/22 08:04:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2962,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:04:47.378295045Z"} +2026/03/22 08:04:52 [detection_layer] {"stage_name":"detection_layer","events_processed":246,"events_dropped":0,"avg_latency_ms":14.878286133804531,"throughput_eps":0,"last_update":"2026-03-22T08:04:47.479532229Z"} +2026/03/22 08:04:52 [transform_engine] {"stage_name":"transform_engine","events_processed":246,"events_dropped":0,"avg_latency_ms":198.86941139228676,"throughput_eps":0,"last_update":"2026-03-22T08:04:47.479498664Z"} +2026/03/22 08:04:52 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:04:47.368623794Z"} +2026/03/22 08:04:52 ───────────────────────────────────────────────── +2026/03/22 08:04:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:04:57 [metric_collector] {"stage_name":"metric_collector","events_processed":7404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1480.8,"last_update":"2026-03-22T08:04:52.368324534Z"} +2026/03/22 08:04:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:04:52.375610384Z"} +2026/03/22 08:04:57 [detection_layer] {"stage_name":"detection_layer","events_processed":246,"events_dropped":0,"avg_latency_ms":14.878286133804531,"throughput_eps":0,"last_update":"2026-03-22T08:04:52.479816436Z"} +2026/03/22 08:04:57 [transform_engine] {"stage_name":"transform_engine","events_processed":246,"events_dropped":0,"avg_latency_ms":198.86941139228676,"throughput_eps":0,"last_update":"2026-03-22T08:04:52.479857134Z"} +2026/03/22 08:04:57 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:04:52.367957321Z"} +2026/03/22 08:04:57 ───────────────────────────────────────────────── +2026/03/22 08:04:57 [ANOMALY] time=2026-03-22T08:04:57Z score=0.8804 method=SEAD details=MAD!:w=0.53,s=1.00 RRCF-fast!:w=0.12,s=0.92 RRCF-mid!:w=0.11,s=0.95 RRCF-slow!:w=0.10,s=0.98 COPOD!:w=0.14,s=0.28 +2026/03/22 08:05:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:05:02 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:04:57.368385123Z"} +2026/03/22 08:05:02 [metric_collector] {"stage_name":"metric_collector","events_processed":7409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1481.8,"last_update":"2026-03-22T08:04:57.368769098Z"} +2026/03/22 08:05:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:04:57.368317614Z"} +2026/03/22 08:05:02 [detection_layer] {"stage_name":"detection_layer","events_processed":246,"events_dropped":0,"avg_latency_ms":14.878286133804531,"throughput_eps":0,"last_update":"2026-03-22T08:04:57.479710235Z"} +2026/03/22 08:05:02 [transform_engine] {"stage_name":"transform_engine","events_processed":247,"events_dropped":0,"avg_latency_ms":172.71384031382942,"throughput_eps":0,"last_update":"2026-03-22T08:04:57.547858268Z"} +2026/03/22 08:05:02 ───────────────────────────────────────────────── +2026/03/22 08:05:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:05:07 [transform_engine] {"stage_name":"transform_engine","events_processed":247,"events_dropped":0,"avg_latency_ms":172.71384031382942,"throughput_eps":0,"last_update":"2026-03-22T08:05:02.479105577Z"} +2026/03/22 08:05:07 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:05:02.368652176Z"} +2026/03/22 08:05:07 [metric_collector] {"stage_name":"metric_collector","events_processed":7414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1482.8,"last_update":"2026-03-22T08:05:02.368968101Z"} +2026/03/22 08:05:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:05:02.368568615Z"} +2026/03/22 08:05:07 [detection_layer] {"stage_name":"detection_layer","events_processed":247,"events_dropped":0,"avg_latency_ms":14.947208307043626,"throughput_eps":0,"last_update":"2026-03-22T08:05:02.479093183Z"} +2026/03/22 08:05:07 ───────────────────────────────────────────────── +2026/03/22 08:05:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:05:12 [detection_layer] {"stage_name":"detection_layer","events_processed":247,"events_dropped":0,"avg_latency_ms":14.947208307043626,"throughput_eps":0,"last_update":"2026-03-22T08:05:07.479824451Z"} +2026/03/22 08:05:12 [transform_engine] {"stage_name":"transform_engine","events_processed":247,"events_dropped":0,"avg_latency_ms":172.71384031382942,"throughput_eps":0,"last_update":"2026-03-22T08:05:07.479835702Z"} +2026/03/22 08:05:12 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:05:07.368036635Z"} +2026/03/22 08:05:12 [metric_collector] {"stage_name":"metric_collector","events_processed":7419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1483.8,"last_update":"2026-03-22T08:05:07.368247438Z"} +2026/03/22 08:05:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:05:07.368063857Z"} +2026/03/22 08:05:12 ───────────────────────────────────────────────── +2026/03/22 08:05:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:05:17 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:05:12.3679864Z"} +2026/03/22 08:05:17 [metric_collector] {"stage_name":"metric_collector","events_processed":7424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1484.8,"last_update":"2026-03-22T08:05:12.368438145Z"} +2026/03/22 08:05:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:05:12.376945645Z"} +2026/03/22 08:05:17 [detection_layer] {"stage_name":"detection_layer","events_processed":247,"events_dropped":0,"avg_latency_ms":14.947208307043626,"throughput_eps":0,"last_update":"2026-03-22T08:05:12.47915024Z"} +2026/03/22 08:05:17 [transform_engine] {"stage_name":"transform_engine","events_processed":247,"events_dropped":0,"avg_latency_ms":172.71384031382942,"throughput_eps":0,"last_update":"2026-03-22T08:05:12.479163005Z"} +2026/03/22 08:05:17 ───────────────────────────────────────────────── +2026/03/22 08:05:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:05:22 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:05:17.367950573Z"} +2026/03/22 08:05:22 [metric_collector] {"stage_name":"metric_collector","events_processed":7429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1485.8,"last_update":"2026-03-22T08:05:17.368232693Z"} +2026/03/22 08:05:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:05:17.376906914Z"} +2026/03/22 08:05:22 [detection_layer] {"stage_name":"detection_layer","events_processed":247,"events_dropped":0,"avg_latency_ms":14.947208307043626,"throughput_eps":0,"last_update":"2026-03-22T08:05:17.479123681Z"} +2026/03/22 08:05:22 [transform_engine] {"stage_name":"transform_engine","events_processed":247,"events_dropped":0,"avg_latency_ms":172.71384031382942,"throughput_eps":0,"last_update":"2026-03-22T08:05:17.479136816Z"} +2026/03/22 08:05:22 ───────────────────────────────────────────────── +2026/03/22 08:05:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:05:27 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:05:22.368810185Z"} +2026/03/22 08:05:27 [metric_collector] {"stage_name":"metric_collector","events_processed":7434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1486.8,"last_update":"2026-03-22T08:05:22.369272551Z"} +2026/03/22 08:05:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:05:22.375677283Z"} +2026/03/22 08:05:27 [detection_layer] {"stage_name":"detection_layer","events_processed":247,"events_dropped":0,"avg_latency_ms":14.947208307043626,"throughput_eps":0,"last_update":"2026-03-22T08:05:22.479921094Z"} +2026/03/22 08:05:27 [transform_engine] {"stage_name":"transform_engine","events_processed":247,"events_dropped":0,"avg_latency_ms":172.71384031382942,"throughput_eps":0,"last_update":"2026-03-22T08:05:22.478850592Z"} +2026/03/22 08:05:27 ───────────────────────────────────────────────── +2026/03/22 08:05:27 [ANOMALY] time=2026-03-22T08:05:27Z score=0.8437 method=SEAD details=MAD!:w=0.52,s=0.98 RRCF-fast:w=0.12,s=0.85 RRCF-mid!:w=0.11,s=0.94 RRCF-slow!:w=0.10,s=0.96 COPOD!:w=0.14,s=0.15 +2026/03/22 08:05:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:05:32 [detection_layer] {"stage_name":"detection_layer","events_processed":247,"events_dropped":0,"avg_latency_ms":14.947208307043626,"throughput_eps":0,"last_update":"2026-03-22T08:05:27.479326262Z"} +2026/03/22 08:05:32 [transform_engine] {"stage_name":"transform_engine","events_processed":248,"events_dropped":0,"avg_latency_ms":151.99806065106355,"throughput_eps":0,"last_update":"2026-03-22T08:05:27.548497022Z"} +2026/03/22 08:05:32 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:05:27.368133828Z"} +2026/03/22 08:05:32 [metric_collector] {"stage_name":"metric_collector","events_processed":7439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1487.8,"last_update":"2026-03-22T08:05:27.368246032Z"} +2026/03/22 08:05:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:05:27.377137719Z"} +2026/03/22 08:05:32 ───────────────────────────────────────────────── +2026/03/22 08:05:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:05:37 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:05:32.368246736Z"} +2026/03/22 08:05:37 [metric_collector] {"stage_name":"metric_collector","events_processed":7444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1488.8,"last_update":"2026-03-22T08:05:32.368542442Z"} +2026/03/22 08:05:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:05:32.378162043Z"} +2026/03/22 08:05:37 [detection_layer] {"stage_name":"detection_layer","events_processed":248,"events_dropped":0,"avg_latency_ms":15.081215245634901,"throughput_eps":0,"last_update":"2026-03-22T08:05:32.479416666Z"} +2026/03/22 08:05:37 [transform_engine] {"stage_name":"transform_engine","events_processed":248,"events_dropped":0,"avg_latency_ms":151.99806065106355,"throughput_eps":0,"last_update":"2026-03-22T08:05:32.479427436Z"} +2026/03/22 08:05:37 ───────────────────────────────────────────────── +2026/03/22 08:05:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:05:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:05:37.376937002Z"} +2026/03/22 08:05:42 [detection_layer] {"stage_name":"detection_layer","events_processed":248,"events_dropped":0,"avg_latency_ms":15.081215245634901,"throughput_eps":0,"last_update":"2026-03-22T08:05:37.479127607Z"} +2026/03/22 08:05:42 [transform_engine] {"stage_name":"transform_engine","events_processed":248,"events_dropped":0,"avg_latency_ms":151.99806065106355,"throughput_eps":0,"last_update":"2026-03-22T08:05:37.479140953Z"} +2026/03/22 08:05:42 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:05:37.368372081Z"} +2026/03/22 08:05:42 [metric_collector] {"stage_name":"metric_collector","events_processed":7449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1489.8,"last_update":"2026-03-22T08:05:37.368803558Z"} +2026/03/22 08:05:42 ───────────────────────────────────────────────── +2026/03/22 08:05:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:05:47 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:05:42.368283178Z"} +2026/03/22 08:05:47 [metric_collector] {"stage_name":"metric_collector","events_processed":7454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1490.8,"last_update":"2026-03-22T08:05:42.368248312Z"} +2026/03/22 08:05:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:05:42.377803579Z"} +2026/03/22 08:05:47 [detection_layer] {"stage_name":"detection_layer","events_processed":248,"events_dropped":0,"avg_latency_ms":15.081215245634901,"throughput_eps":0,"last_update":"2026-03-22T08:05:42.478938101Z"} +2026/03/22 08:05:47 [transform_engine] {"stage_name":"transform_engine","events_processed":248,"events_dropped":0,"avg_latency_ms":151.99806065106355,"throughput_eps":0,"last_update":"2026-03-22T08:05:42.478930135Z"} +2026/03/22 08:05:47 ───────────────────────────────────────────────── +2026/03/22 08:05:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:05:52 [transform_engine] {"stage_name":"transform_engine","events_processed":248,"events_dropped":0,"avg_latency_ms":151.99806065106355,"throughput_eps":0,"last_update":"2026-03-22T08:05:47.479865868Z"} +2026/03/22 08:05:52 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:05:47.368735064Z"} +2026/03/22 08:05:52 [metric_collector] {"stage_name":"metric_collector","events_processed":7458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1491.6,"last_update":"2026-03-22T08:05:47.36875921Z"} +2026/03/22 08:05:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:05:47.376687922Z"} +2026/03/22 08:05:52 [detection_layer] {"stage_name":"detection_layer","events_processed":248,"events_dropped":0,"avg_latency_ms":15.081215245634901,"throughput_eps":0,"last_update":"2026-03-22T08:05:47.479896867Z"} +2026/03/22 08:05:52 ───────────────────────────────────────────────── +2026/03/22 08:05:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:05:57 [metric_collector] {"stage_name":"metric_collector","events_processed":7463,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1492.6,"last_update":"2026-03-22T08:05:52.368751142Z"} +2026/03/22 08:05:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:05:52.379561283Z"} +2026/03/22 08:05:57 [detection_layer] {"stage_name":"detection_layer","events_processed":248,"events_dropped":0,"avg_latency_ms":15.081215245634901,"throughput_eps":0,"last_update":"2026-03-22T08:05:52.479753117Z"} +2026/03/22 08:05:57 [transform_engine] {"stage_name":"transform_engine","events_processed":248,"events_dropped":0,"avg_latency_ms":151.99806065106355,"throughput_eps":0,"last_update":"2026-03-22T08:05:52.479778175Z"} +2026/03/22 08:05:57 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:05:52.368649527Z"} +2026/03/22 08:05:57 ───────────────────────────────────────────────── +2026/03/22 08:05:57 [ANOMALY] time=2026-03-22T08:05:57Z score=0.9047 method=SEAD details=MAD!:w=0.52,s=1.00 RRCF-fast!:w=0.13,s=0.87 RRCF-mid!:w=0.11,s=0.94 RRCF-slow!:w=0.10,s=0.97 COPOD!:w=0.14,s=0.52 +2026/03/22 08:06:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:06:02 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:05:57.367974322Z"} +2026/03/22 08:06:02 [metric_collector] {"stage_name":"metric_collector","events_processed":7468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1493.6,"last_update":"2026-03-22T08:05:57.367922162Z"} +2026/03/22 08:06:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2990,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:05:57.377304789Z"} +2026/03/22 08:06:02 [detection_layer] {"stage_name":"detection_layer","events_processed":248,"events_dropped":0,"avg_latency_ms":15.081215245634901,"throughput_eps":0,"last_update":"2026-03-22T08:05:57.479586246Z"} +2026/03/22 08:06:02 [transform_engine] {"stage_name":"transform_engine","events_processed":249,"events_dropped":0,"avg_latency_ms":135.11209612085085,"throughput_eps":0,"last_update":"2026-03-22T08:05:57.54711004Z"} +2026/03/22 08:06:02 ───────────────────────────────────────────────── +2026/03/22 08:06:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:06:07 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:06:02.367961992Z"} +2026/03/22 08:06:07 [metric_collector] {"stage_name":"metric_collector","events_processed":7474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1494.8,"last_update":"2026-03-22T08:06:02.368281654Z"} +2026/03/22 08:06:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2992,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:06:02.377971971Z"} +2026/03/22 08:06:07 [detection_layer] {"stage_name":"detection_layer","events_processed":249,"events_dropped":0,"avg_latency_ms":15.227888196507923,"throughput_eps":0,"last_update":"2026-03-22T08:06:02.479187957Z"} +2026/03/22 08:06:07 [transform_engine] {"stage_name":"transform_engine","events_processed":249,"events_dropped":0,"avg_latency_ms":135.11209612085085,"throughput_eps":0,"last_update":"2026-03-22T08:06:02.479202063Z"} +2026/03/22 08:06:07 ───────────────────────────────────────────────── +2026/03/22 08:06:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:06:12 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:06:12.368505884Z"} +2026/03/22 08:06:12 [metric_collector] {"stage_name":"metric_collector","events_processed":7479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1495.8,"last_update":"2026-03-22T08:06:07.368467128Z"} +2026/03/22 08:06:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:06:07.377830247Z"} +2026/03/22 08:06:12 [detection_layer] {"stage_name":"detection_layer","events_processed":249,"events_dropped":0,"avg_latency_ms":15.227888196507923,"throughput_eps":0,"last_update":"2026-03-22T08:06:07.478949797Z"} +2026/03/22 08:06:12 [transform_engine] {"stage_name":"transform_engine","events_processed":249,"events_dropped":0,"avg_latency_ms":135.11209612085085,"throughput_eps":0,"last_update":"2026-03-22T08:06:07.478931562Z"} +2026/03/22 08:06:12 ───────────────────────────────────────────────── +2026/03/22 08:06:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:06:17 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:06:17.368842817Z"} +2026/03/22 08:06:17 [metric_collector] {"stage_name":"metric_collector","events_processed":7484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1496.8,"last_update":"2026-03-22T08:06:12.368885903Z"} +2026/03/22 08:06:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2996,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:06:12.377396108Z"} +2026/03/22 08:06:17 [detection_layer] {"stage_name":"detection_layer","events_processed":249,"events_dropped":0,"avg_latency_ms":15.227888196507923,"throughput_eps":0,"last_update":"2026-03-22T08:06:12.479612639Z"} +2026/03/22 08:06:17 [transform_engine] {"stage_name":"transform_engine","events_processed":249,"events_dropped":0,"avg_latency_ms":135.11209612085085,"throughput_eps":0,"last_update":"2026-03-22T08:06:12.479625794Z"} +2026/03/22 08:06:17 ───────────────────────────────────────────────── +2026/03/22 08:06:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:06:22 [metric_collector] {"stage_name":"metric_collector","events_processed":7489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1497.8,"last_update":"2026-03-22T08:06:17.369398121Z"} +2026/03/22 08:06:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":2998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:06:17.37784242Z"} +2026/03/22 08:06:22 [detection_layer] {"stage_name":"detection_layer","events_processed":249,"events_dropped":0,"avg_latency_ms":15.227888196507923,"throughput_eps":0,"last_update":"2026-03-22T08:06:17.479054426Z"} +2026/03/22 08:06:22 [transform_engine] {"stage_name":"transform_engine","events_processed":249,"events_dropped":0,"avg_latency_ms":135.11209612085085,"throughput_eps":0,"last_update":"2026-03-22T08:06:17.479068242Z"} +2026/03/22 08:06:22 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:06:17.368842817Z"} +2026/03/22 08:06:22 ───────────────────────────────────────────────── +2026/03/22 08:06:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:06:27 [transform_engine] {"stage_name":"transform_engine","events_processed":249,"events_dropped":0,"avg_latency_ms":135.11209612085085,"throughput_eps":0,"last_update":"2026-03-22T08:06:22.479546729Z"} +2026/03/22 08:06:27 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:06:27.367972608Z"} +2026/03/22 08:06:27 [metric_collector] {"stage_name":"metric_collector","events_processed":7494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1498.8,"last_update":"2026-03-22T08:06:22.368710575Z"} +2026/03/22 08:06:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:06:22.376373757Z"} +2026/03/22 08:06:27 [detection_layer] {"stage_name":"detection_layer","events_processed":249,"events_dropped":0,"avg_latency_ms":15.227888196507923,"throughput_eps":0,"last_update":"2026-03-22T08:06:22.479532302Z"} +2026/03/22 08:06:27 ───────────────────────────────────────────────── +2026/03/22 08:06:28 [ANOMALY] time=2026-03-22T08:06:28Z score=0.8260 method=SEAD details=MAD!:w=0.52,s=0.97 RRCF-fast:w=0.13,s=0.82 RRCF-mid:w=0.11,s=0.92 RRCF-slow!:w=0.10,s=0.98 COPOD!:w=0.14,s=0.12 +2026/03/22 08:06:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:06:32 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:06:32.36816845Z"} +2026/03/22 08:06:32 [metric_collector] {"stage_name":"metric_collector","events_processed":7499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1499.8,"last_update":"2026-03-22T08:06:27.368486663Z"} +2026/03/22 08:06:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:06:27.377607409Z"} +2026/03/22 08:06:32 [detection_layer] {"stage_name":"detection_layer","events_processed":249,"events_dropped":0,"avg_latency_ms":15.227888196507923,"throughput_eps":0,"last_update":"2026-03-22T08:06:27.47968433Z"} +2026/03/22 08:06:32 [transform_engine] {"stage_name":"transform_engine","events_processed":250,"events_dropped":0,"avg_latency_ms":296.40420829668074,"throughput_eps":0,"last_update":"2026-03-22T08:06:28.421271015Z"} +2026/03/22 08:06:32 ───────────────────────────────────────────────── +2026/03/22 08:06:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:06:37 [transform_engine] {"stage_name":"transform_engine","events_processed":250,"events_dropped":0,"avg_latency_ms":296.40420829668074,"throughput_eps":0,"last_update":"2026-03-22T08:06:32.479863269Z"} +2026/03/22 08:06:37 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:06:37.368408071Z"} +2026/03/22 08:06:37 [metric_collector] {"stage_name":"metric_collector","events_processed":7504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1500.8,"last_update":"2026-03-22T08:06:32.36862291Z"} +2026/03/22 08:06:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:06:32.377669402Z"} +2026/03/22 08:06:37 [detection_layer] {"stage_name":"detection_layer","events_processed":250,"events_dropped":0,"avg_latency_ms":15.620027157206339,"throughput_eps":0,"last_update":"2026-03-22T08:06:32.479852017Z"} +2026/03/22 08:06:37 ───────────────────────────────────────────────── +2026/03/22 08:06:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:06:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3006,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:06:37.377847876Z"} +2026/03/22 08:06:42 [detection_layer] {"stage_name":"detection_layer","events_processed":250,"events_dropped":0,"avg_latency_ms":15.620027157206339,"throughput_eps":0,"last_update":"2026-03-22T08:06:37.479019593Z"} +2026/03/22 08:06:42 [transform_engine] {"stage_name":"transform_engine","events_processed":250,"events_dropped":0,"avg_latency_ms":296.40420829668074,"throughput_eps":0,"last_update":"2026-03-22T08:06:37.479036075Z"} +2026/03/22 08:06:42 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:06:37.368408071Z"} +2026/03/22 08:06:42 [metric_collector] {"stage_name":"metric_collector","events_processed":7509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1501.8,"last_update":"2026-03-22T08:06:37.368978564Z"} +2026/03/22 08:06:42 ───────────────────────────────────────────────── +2026/03/22 08:06:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:06:47 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:06:42.367983899Z"} +2026/03/22 08:06:47 [metric_collector] {"stage_name":"metric_collector","events_processed":7514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1502.8,"last_update":"2026-03-22T08:06:42.368204031Z"} +2026/03/22 08:06:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3008,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:06:42.376922024Z"} +2026/03/22 08:06:47 [detection_layer] {"stage_name":"detection_layer","events_processed":250,"events_dropped":0,"avg_latency_ms":15.620027157206339,"throughput_eps":0,"last_update":"2026-03-22T08:06:42.479188949Z"} +2026/03/22 08:06:47 [transform_engine] {"stage_name":"transform_engine","events_processed":250,"events_dropped":0,"avg_latency_ms":296.40420829668074,"throughput_eps":0,"last_update":"2026-03-22T08:06:42.479201073Z"} +2026/03/22 08:06:47 ───────────────────────────────────────────────── +2026/03/22 08:06:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:06:52 [detection_layer] {"stage_name":"detection_layer","events_processed":250,"events_dropped":0,"avg_latency_ms":15.620027157206339,"throughput_eps":0,"last_update":"2026-03-22T08:06:47.479174002Z"} +2026/03/22 08:06:52 [transform_engine] {"stage_name":"transform_engine","events_processed":250,"events_dropped":0,"avg_latency_ms":296.40420829668074,"throughput_eps":0,"last_update":"2026-03-22T08:06:47.479187778Z"} +2026/03/22 08:06:52 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:06:47.368070346Z"} +2026/03/22 08:06:52 [metric_collector] {"stage_name":"metric_collector","events_processed":7523,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1504.6,"last_update":"2026-03-22T08:06:52.368232106Z"} +2026/03/22 08:06:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:06:47.377944455Z"} +2026/03/22 08:06:52 ───────────────────────────────────────────────── +2026/03/22 08:06:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:06:57 [detection_layer] {"stage_name":"detection_layer","events_processed":250,"events_dropped":0,"avg_latency_ms":15.620027157206339,"throughput_eps":0,"last_update":"2026-03-22T08:06:52.479971459Z"} +2026/03/22 08:06:57 [transform_engine] {"stage_name":"transform_engine","events_processed":250,"events_dropped":0,"avg_latency_ms":296.40420829668074,"throughput_eps":0,"last_update":"2026-03-22T08:06:52.478889375Z"} +2026/03/22 08:06:57 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:06:57.368379526Z"} +2026/03/22 08:06:57 [metric_collector] {"stage_name":"metric_collector","events_processed":7523,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1504.6,"last_update":"2026-03-22T08:06:52.368232106Z"} +2026/03/22 08:06:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3012,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:06:52.375679244Z"} +2026/03/22 08:06:57 ───────────────────────────────────────────────── +2026/03/22 08:06:57 [ANOMALY] time=2026-03-22T08:06:57Z score=0.7940 method=SEAD details=MAD!:w=0.52,s=0.98 RRCF-fast:w=0.13,s=0.60 RRCF-mid:w=0.11,s=0.90 RRCF-slow:w=0.10,s=0.94 COPOD!:w=0.15,s=0.13 +2026/03/22 08:07:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:07:02 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:07:02.368822246Z"} +2026/03/22 08:07:02 [metric_collector] {"stage_name":"metric_collector","events_processed":7529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1505.8,"last_update":"2026-03-22T08:06:57.368683768Z"} +2026/03/22 08:07:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:06:57.377383696Z"} +2026/03/22 08:07:02 [detection_layer] {"stage_name":"detection_layer","events_processed":250,"events_dropped":0,"avg_latency_ms":15.620027157206339,"throughput_eps":0,"last_update":"2026-03-22T08:06:57.479564935Z"} +2026/03/22 08:07:02 [transform_engine] {"stage_name":"transform_engine","events_processed":251,"events_dropped":0,"avg_latency_ms":250.45912663734458,"throughput_eps":0,"last_update":"2026-03-22T08:06:57.546259065Z"} +2026/03/22 08:07:02 ───────────────────────────────────────────────── +2026/03/22 08:07:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:07:07 [metric_collector] {"stage_name":"metric_collector","events_processed":7534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1506.8,"last_update":"2026-03-22T08:07:02.369167357Z"} +2026/03/22 08:07:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:07:02.379136938Z"} +2026/03/22 08:07:07 [detection_layer] {"stage_name":"detection_layer","events_processed":251,"events_dropped":0,"avg_latency_ms":15.803701125765071,"throughput_eps":0,"last_update":"2026-03-22T08:07:02.479462021Z"} +2026/03/22 08:07:07 [transform_engine] {"stage_name":"transform_engine","events_processed":251,"events_dropped":0,"avg_latency_ms":250.45912663734458,"throughput_eps":0,"last_update":"2026-03-22T08:07:02.479475958Z"} +2026/03/22 08:07:07 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:07:02.368822246Z"} +2026/03/22 08:07:07 ───────────────────────────────────────────────── +2026/03/22 08:07:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:07:12 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:07:07.367997249Z"} +2026/03/22 08:07:12 [metric_collector] {"stage_name":"metric_collector","events_processed":7539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1507.8,"last_update":"2026-03-22T08:07:07.368235085Z"} +2026/03/22 08:07:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3018,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:07:07.377087375Z"} +2026/03/22 08:07:12 [detection_layer] {"stage_name":"detection_layer","events_processed":251,"events_dropped":0,"avg_latency_ms":15.803701125765071,"throughput_eps":0,"last_update":"2026-03-22T08:07:07.479291548Z"} +2026/03/22 08:07:12 [transform_engine] {"stage_name":"transform_engine","events_processed":251,"events_dropped":0,"avg_latency_ms":250.45912663734458,"throughput_eps":0,"last_update":"2026-03-22T08:07:07.479312709Z"} +2026/03/22 08:07:12 ───────────────────────────────────────────────── +2026/03/22 08:07:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:07:17 [log_collector] {"stage_name":"log_collector","events_processed":13092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.4,"last_update":"2026-03-22T08:07:12.368792184Z"} +2026/03/22 08:07:17 [metric_collector] {"stage_name":"metric_collector","events_processed":7544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1508.8,"last_update":"2026-03-22T08:07:12.369168124Z"} +2026/03/22 08:07:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3020,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:07:12.378526995Z"} +2026/03/22 08:07:17 [detection_layer] {"stage_name":"detection_layer","events_processed":251,"events_dropped":0,"avg_latency_ms":15.803701125765071,"throughput_eps":0,"last_update":"2026-03-22T08:07:12.479727223Z"} +2026/03/22 08:07:17 [transform_engine] {"stage_name":"transform_engine","events_processed":251,"events_dropped":0,"avg_latency_ms":250.45912663734458,"throughput_eps":0,"last_update":"2026-03-22T08:07:12.479711473Z"} +2026/03/22 08:07:17 ───────────────────────────────────────────────── +Saved state: 11 clusters, 13093 messages, reason: none +2026/03/22 08:07:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:07:22 [detection_layer] {"stage_name":"detection_layer","events_processed":251,"events_dropped":0,"avg_latency_ms":15.803701125765071,"throughput_eps":0,"last_update":"2026-03-22T08:07:17.479997749Z"} +2026/03/22 08:07:22 [transform_engine] {"stage_name":"transform_engine","events_processed":251,"events_dropped":0,"avg_latency_ms":250.45912663734458,"throughput_eps":0,"last_update":"2026-03-22T08:07:17.478864477Z"} +2026/03/22 08:07:22 [log_collector] {"stage_name":"log_collector","events_processed":13102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2620.4,"last_update":"2026-03-22T08:07:22.368242976Z"} +2026/03/22 08:07:22 [metric_collector] {"stage_name":"metric_collector","events_processed":7549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1509.8,"last_update":"2026-03-22T08:07:17.368930276Z"} +2026/03/22 08:07:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3022,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:07:17.377739032Z"} +2026/03/22 08:07:22 ───────────────────────────────────────────────── +2026/03/22 08:07:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:07:27 [metric_collector] {"stage_name":"metric_collector","events_processed":7554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1510.8,"last_update":"2026-03-22T08:07:22.368791536Z"} +2026/03/22 08:07:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:07:22.377793994Z"} +2026/03/22 08:07:27 [detection_layer] {"stage_name":"detection_layer","events_processed":251,"events_dropped":0,"avg_latency_ms":15.803701125765071,"throughput_eps":0,"last_update":"2026-03-22T08:07:22.480008125Z"} +2026/03/22 08:07:27 [transform_engine] {"stage_name":"transform_engine","events_processed":251,"events_dropped":0,"avg_latency_ms":250.45912663734458,"throughput_eps":0,"last_update":"2026-03-22T08:07:22.478899931Z"} +2026/03/22 08:07:27 [log_collector] {"stage_name":"log_collector","events_processed":13102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2620.4,"last_update":"2026-03-22T08:07:22.368242976Z"} +2026/03/22 08:07:27 ───────────────────────────────────────────────── +2026/03/22 08:07:27 [ANOMALY] time=2026-03-22T08:07:27Z score=0.8674 method=SEAD details=MAD!:w=0.51,s=0.98 RRCF-fast:w=0.13,s=0.61 RRCF-mid:w=0.11,s=0.87 RRCF-slow:w=0.10,s=0.92 COPOD!:w=0.15,s=0.68 +2026/03/22 08:07:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:07:32 [metric_collector] {"stage_name":"metric_collector","events_processed":7559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1511.8,"last_update":"2026-03-22T08:07:27.36853533Z"} +2026/03/22 08:07:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:07:27.375553857Z"} +2026/03/22 08:07:32 [detection_layer] {"stage_name":"detection_layer","events_processed":251,"events_dropped":0,"avg_latency_ms":15.803701125765071,"throughput_eps":0,"last_update":"2026-03-22T08:07:27.480251626Z"} +2026/03/22 08:07:32 [transform_engine] {"stage_name":"transform_engine","events_processed":252,"events_dropped":0,"avg_latency_ms":232.32155770987566,"throughput_eps":0,"last_update":"2026-03-22T08:07:27.640103842Z"} +2026/03/22 08:07:32 [log_collector] {"stage_name":"log_collector","events_processed":13102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2620.4,"last_update":"2026-03-22T08:07:27.368216419Z"} +2026/03/22 08:07:32 ───────────────────────────────────────────────── +2026/03/22 08:07:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:07:37 [detection_layer] {"stage_name":"detection_layer","events_processed":252,"events_dropped":0,"avg_latency_ms":15.200284500612058,"throughput_eps":0,"last_update":"2026-03-22T08:07:32.479137897Z"} +2026/03/22 08:07:37 [transform_engine] {"stage_name":"transform_engine","events_processed":252,"events_dropped":0,"avg_latency_ms":232.32155770987566,"throughput_eps":0,"last_update":"2026-03-22T08:07:32.47911301Z"} +2026/03/22 08:07:37 [log_collector] {"stage_name":"log_collector","events_processed":13112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2622.4,"last_update":"2026-03-22T08:07:32.368179515Z"} +2026/03/22 08:07:37 [metric_collector] {"stage_name":"metric_collector","events_processed":7564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1512.8,"last_update":"2026-03-22T08:07:32.368293574Z"} +2026/03/22 08:07:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:07:32.374872799Z"} +2026/03/22 08:07:37 ───────────────────────────────────────────────── +2026/03/22 08:07:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:07:42 [log_collector] {"stage_name":"log_collector","events_processed":13169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2633.8,"last_update":"2026-03-22T08:07:42.368295294Z"} +2026/03/22 08:07:42 [metric_collector] {"stage_name":"metric_collector","events_processed":7569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1513.8,"last_update":"2026-03-22T08:07:37.368438055Z"} +2026/03/22 08:07:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:07:37.375765073Z"} +2026/03/22 08:07:42 [detection_layer] {"stage_name":"detection_layer","events_processed":252,"events_dropped":0,"avg_latency_ms":15.200284500612058,"throughput_eps":0,"last_update":"2026-03-22T08:07:37.479916583Z"} +2026/03/22 08:07:42 [transform_engine] {"stage_name":"transform_engine","events_processed":252,"events_dropped":0,"avg_latency_ms":232.32155770987566,"throughput_eps":0,"last_update":"2026-03-22T08:07:37.478873986Z"} +2026/03/22 08:07:42 ───────────────────────────────────────────────── +2026/03/22 08:07:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:07:47 [log_collector] {"stage_name":"log_collector","events_processed":13169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2633.8,"last_update":"2026-03-22T08:07:42.368295294Z"} +2026/03/22 08:07:47 [metric_collector] {"stage_name":"metric_collector","events_processed":7574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1514.8,"last_update":"2026-03-22T08:07:42.368537929Z"} +2026/03/22 08:07:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:07:42.375144757Z"} +2026/03/22 08:07:47 [detection_layer] {"stage_name":"detection_layer","events_processed":252,"events_dropped":0,"avg_latency_ms":15.200284500612058,"throughput_eps":0,"last_update":"2026-03-22T08:07:42.479202848Z"} +2026/03/22 08:07:47 [transform_engine] {"stage_name":"transform_engine","events_processed":252,"events_dropped":0,"avg_latency_ms":232.32155770987566,"throughput_eps":0,"last_update":"2026-03-22T08:07:42.479214741Z"} +2026/03/22 08:07:47 ───────────────────────────────────────────────── +2026/03/22 08:07:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:07:52 [transform_engine] {"stage_name":"transform_engine","events_processed":252,"events_dropped":0,"avg_latency_ms":232.32155770987566,"throughput_eps":0,"last_update":"2026-03-22T08:07:47.479416639Z"} +2026/03/22 08:07:52 [log_collector] {"stage_name":"log_collector","events_processed":13198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2639.6,"last_update":"2026-03-22T08:07:47.367957699Z"} +2026/03/22 08:07:52 [metric_collector] {"stage_name":"metric_collector","events_processed":7579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1515.8,"last_update":"2026-03-22T08:07:47.368220873Z"} +2026/03/22 08:07:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:07:47.375226795Z"} +2026/03/22 08:07:52 [detection_layer] {"stage_name":"detection_layer","events_processed":252,"events_dropped":0,"avg_latency_ms":15.200284500612058,"throughput_eps":0,"last_update":"2026-03-22T08:07:47.47940655Z"} +2026/03/22 08:07:52 ───────────────────────────────────────────────── +2026/03/22 08:07:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:07:57 [log_collector] {"stage_name":"log_collector","events_processed":13207,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2641.4,"last_update":"2026-03-22T08:07:52.368497623Z"} +2026/03/22 08:07:57 [metric_collector] {"stage_name":"metric_collector","events_processed":7584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1516.8,"last_update":"2026-03-22T08:07:52.368718005Z"} +2026/03/22 08:07:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3036,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:07:52.37538098Z"} +2026/03/22 08:07:57 [detection_layer] {"stage_name":"detection_layer","events_processed":252,"events_dropped":0,"avg_latency_ms":15.200284500612058,"throughput_eps":0,"last_update":"2026-03-22T08:07:52.479608395Z"} +2026/03/22 08:07:57 [transform_engine] {"stage_name":"transform_engine","events_processed":252,"events_dropped":0,"avg_latency_ms":232.32155770987566,"throughput_eps":0,"last_update":"2026-03-22T08:07:52.479618905Z"} +2026/03/22 08:07:57 ───────────────────────────────────────────────── +2026/03/22 08:07:57 [ANOMALY] time=2026-03-22T08:07:57Z score=0.8486 method=SEAD details=MAD!:w=0.51,s=0.96 RRCF-fast:w=0.13,s=0.65 RRCF-mid:w=0.11,s=0.87 RRCF-slow:w=0.10,s=0.92 COPOD!:w=0.15,s=0.58 +2026/03/22 08:08:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:08:02 [log_collector] {"stage_name":"log_collector","events_processed":13230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2646,"last_update":"2026-03-22T08:07:57.368009639Z"} +2026/03/22 08:08:02 [metric_collector] {"stage_name":"metric_collector","events_processed":7589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1517.8,"last_update":"2026-03-22T08:07:57.368253286Z"} +2026/03/22 08:08:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:07:57.374677254Z"} +2026/03/22 08:08:02 [detection_layer] {"stage_name":"detection_layer","events_processed":252,"events_dropped":0,"avg_latency_ms":15.200284500612058,"throughput_eps":0,"last_update":"2026-03-22T08:07:57.479937507Z"} +2026/03/22 08:08:02 [transform_engine] {"stage_name":"transform_engine","events_processed":253,"events_dropped":0,"avg_latency_ms":207.87303116790054,"throughput_eps":0,"last_update":"2026-03-22T08:07:57.588896596Z"} +2026/03/22 08:08:02 ───────────────────────────────────────────────── +2026/03/22 08:08:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:08:07 [log_collector] {"stage_name":"log_collector","events_processed":13257,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2651.4,"last_update":"2026-03-22T08:08:02.368843217Z"} +2026/03/22 08:08:07 [metric_collector] {"stage_name":"metric_collector","events_processed":7594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1518.8,"last_update":"2026-03-22T08:08:02.369125429Z"} +2026/03/22 08:08:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:08:02.376273173Z"} +2026/03/22 08:08:07 [detection_layer] {"stage_name":"detection_layer","events_processed":253,"events_dropped":0,"avg_latency_ms":14.910717000489647,"throughput_eps":0,"last_update":"2026-03-22T08:08:02.479498647Z"} +2026/03/22 08:08:07 [transform_engine] {"stage_name":"transform_engine","events_processed":253,"events_dropped":0,"avg_latency_ms":207.87303116790054,"throughput_eps":0,"last_update":"2026-03-22T08:08:02.479485461Z"} +2026/03/22 08:08:07 ───────────────────────────────────────────────── +2026/03/22 08:08:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:08:12 [metric_collector] {"stage_name":"metric_collector","events_processed":7599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1519.8,"last_update":"2026-03-22T08:08:07.368547411Z"} +2026/03/22 08:08:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:08:07.375369311Z"} +2026/03/22 08:08:12 [detection_layer] {"stage_name":"detection_layer","events_processed":253,"events_dropped":0,"avg_latency_ms":14.910717000489647,"throughput_eps":0,"last_update":"2026-03-22T08:08:07.479608497Z"} +2026/03/22 08:08:12 [transform_engine] {"stage_name":"transform_engine","events_processed":253,"events_dropped":0,"avg_latency_ms":207.87303116790054,"throughput_eps":0,"last_update":"2026-03-22T08:08:07.479586094Z"} +2026/03/22 08:08:12 [log_collector] {"stage_name":"log_collector","events_processed":13291,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2658.2,"last_update":"2026-03-22T08:08:07.368387424Z"} +2026/03/22 08:08:12 ───────────────────────────────────────────────── +2026/03/22 08:08:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:08:17 [log_collector] {"stage_name":"log_collector","events_processed":13313,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2662.6,"last_update":"2026-03-22T08:08:12.368115733Z"} +2026/03/22 08:08:17 [metric_collector] {"stage_name":"metric_collector","events_processed":7604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1520.8,"last_update":"2026-03-22T08:08:12.368329502Z"} +2026/03/22 08:08:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:08:12.376342203Z"} +2026/03/22 08:08:17 [detection_layer] {"stage_name":"detection_layer","events_processed":253,"events_dropped":0,"avg_latency_ms":14.910717000489647,"throughput_eps":0,"last_update":"2026-03-22T08:08:12.479852041Z"} +2026/03/22 08:08:17 [transform_engine] {"stage_name":"transform_engine","events_processed":253,"events_dropped":0,"avg_latency_ms":207.87303116790054,"throughput_eps":0,"last_update":"2026-03-22T08:08:12.479817546Z"} +2026/03/22 08:08:17 ───────────────────────────────────────────────── +Saved state: 11 clusters, 13351 messages, reason: none +2026/03/22 08:08:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:08:22 [metric_collector] {"stage_name":"metric_collector","events_processed":7614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1522.8,"last_update":"2026-03-22T08:08:22.368805444Z"} +2026/03/22 08:08:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:08:17.374767937Z"} +2026/03/22 08:08:22 [detection_layer] {"stage_name":"detection_layer","events_processed":253,"events_dropped":0,"avg_latency_ms":14.910717000489647,"throughput_eps":0,"last_update":"2026-03-22T08:08:17.480001056Z"} +2026/03/22 08:08:22 [transform_engine] {"stage_name":"transform_engine","events_processed":253,"events_dropped":0,"avg_latency_ms":207.87303116790054,"throughput_eps":0,"last_update":"2026-03-22T08:08:17.478897041Z"} +2026/03/22 08:08:22 [log_collector] {"stage_name":"log_collector","events_processed":13326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2665.2,"last_update":"2026-03-22T08:08:17.367965584Z"} +2026/03/22 08:08:22 ───────────────────────────────────────────────── +2026/03/22 08:08:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:08:27 [log_collector] {"stage_name":"log_collector","events_processed":13356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2671.2,"last_update":"2026-03-22T08:08:22.36886538Z"} +2026/03/22 08:08:27 [metric_collector] {"stage_name":"metric_collector","events_processed":7614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1522.8,"last_update":"2026-03-22T08:08:22.368805444Z"} +2026/03/22 08:08:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3048,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:08:22.376060524Z"} +2026/03/22 08:08:27 [detection_layer] {"stage_name":"detection_layer","events_processed":253,"events_dropped":0,"avg_latency_ms":14.910717000489647,"throughput_eps":0,"last_update":"2026-03-22T08:08:22.479294704Z"} +2026/03/22 08:08:27 [transform_engine] {"stage_name":"transform_engine","events_processed":253,"events_dropped":0,"avg_latency_ms":207.87303116790054,"throughput_eps":0,"last_update":"2026-03-22T08:08:22.479275406Z"} +2026/03/22 08:08:27 ───────────────────────────────────────────────── +2026/03/22 08:08:27 [ANOMALY] time=2026-03-22T08:08:27Z score=0.8146 method=SEAD details=MAD!:w=0.51,s=0.96 RRCF-fast:w=0.13,s=0.43 RRCF-mid:w=0.11,s=0.82 RRCF-slow:w=0.10,s=0.90 COPOD!:w=0.15,s=0.58 +2026/03/22 08:08:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:08:32 [transform_engine] {"stage_name":"transform_engine","events_processed":254,"events_dropped":0,"avg_latency_ms":189.91819233432045,"throughput_eps":0,"last_update":"2026-03-22T08:08:27.59734096Z"} +2026/03/22 08:08:32 [log_collector] {"stage_name":"log_collector","events_processed":13390,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2678,"last_update":"2026-03-22T08:08:27.368763364Z"} +2026/03/22 08:08:32 [metric_collector] {"stage_name":"metric_collector","events_processed":7619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1523.8,"last_update":"2026-03-22T08:08:27.368903373Z"} +2026/03/22 08:08:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3050,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:08:27.376048321Z"} +2026/03/22 08:08:32 [detection_layer] {"stage_name":"detection_layer","events_processed":253,"events_dropped":0,"avg_latency_ms":14.910717000489647,"throughput_eps":0,"last_update":"2026-03-22T08:08:27.47940256Z"} +2026/03/22 08:08:32 ───────────────────────────────────────────────── +2026/03/22 08:08:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:08:37 [log_collector] {"stage_name":"log_collector","events_processed":13413,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2682.6,"last_update":"2026-03-22T08:08:32.367962883Z"} +2026/03/22 08:08:37 [metric_collector] {"stage_name":"metric_collector","events_processed":7624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1524.8,"last_update":"2026-03-22T08:08:32.368239032Z"} +2026/03/22 08:08:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:08:32.377128051Z"} +2026/03/22 08:08:37 [detection_layer] {"stage_name":"detection_layer","events_processed":254,"events_dropped":0,"avg_latency_ms":14.382102000391718,"throughput_eps":0,"last_update":"2026-03-22T08:08:32.479365581Z"} +2026/03/22 08:08:37 [transform_engine] {"stage_name":"transform_engine","events_processed":254,"events_dropped":0,"avg_latency_ms":189.91819233432045,"throughput_eps":0,"last_update":"2026-03-22T08:08:32.479321256Z"} +2026/03/22 08:08:37 ───────────────────────────────────────────────── +2026/03/22 08:08:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:08:42 [log_collector] {"stage_name":"log_collector","events_processed":13455,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2691,"last_update":"2026-03-22T08:08:37.36845557Z"} +2026/03/22 08:08:42 [metric_collector] {"stage_name":"metric_collector","events_processed":7629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1525.8,"last_update":"2026-03-22T08:08:37.368666334Z"} +2026/03/22 08:08:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:08:37.375526978Z"} +2026/03/22 08:08:42 [detection_layer] {"stage_name":"detection_layer","events_processed":254,"events_dropped":0,"avg_latency_ms":14.382102000391718,"throughput_eps":0,"last_update":"2026-03-22T08:08:37.479710355Z"} +2026/03/22 08:08:42 [transform_engine] {"stage_name":"transform_engine","events_processed":254,"events_dropped":0,"avg_latency_ms":189.91819233432045,"throughput_eps":0,"last_update":"2026-03-22T08:08:37.479720323Z"} +2026/03/22 08:08:42 ───────────────────────────────────────────────── +2026/03/22 08:08:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:08:47 [log_collector] {"stage_name":"log_collector","events_processed":13474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2694.8,"last_update":"2026-03-22T08:08:42.368921476Z"} +2026/03/22 08:08:47 [metric_collector] {"stage_name":"metric_collector","events_processed":7634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1526.8,"last_update":"2026-03-22T08:08:42.369238294Z"} +2026/03/22 08:08:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3056,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:08:42.37830308Z"} +2026/03/22 08:08:47 [detection_layer] {"stage_name":"detection_layer","events_processed":254,"events_dropped":0,"avg_latency_ms":14.382102000391718,"throughput_eps":0,"last_update":"2026-03-22T08:08:42.479492541Z"} +2026/03/22 08:08:47 [transform_engine] {"stage_name":"transform_engine","events_processed":254,"events_dropped":0,"avg_latency_ms":189.91819233432045,"throughput_eps":0,"last_update":"2026-03-22T08:08:42.479505716Z"} +2026/03/22 08:08:47 ───────────────────────────────────────────────── +2026/03/22 08:08:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:08:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:08:47.376763714Z"} +2026/03/22 08:08:52 [detection_layer] {"stage_name":"detection_layer","events_processed":254,"events_dropped":0,"avg_latency_ms":14.382102000391718,"throughput_eps":0,"last_update":"2026-03-22T08:08:47.479991038Z"} +2026/03/22 08:08:52 [transform_engine] {"stage_name":"transform_engine","events_processed":254,"events_dropped":0,"avg_latency_ms":189.91819233432045,"throughput_eps":0,"last_update":"2026-03-22T08:08:47.478905779Z"} +2026/03/22 08:08:52 [log_collector] {"stage_name":"log_collector","events_processed":13493,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2698.6,"last_update":"2026-03-22T08:08:47.367973403Z"} +2026/03/22 08:08:52 [metric_collector] {"stage_name":"metric_collector","events_processed":7639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1527.8,"last_update":"2026-03-22T08:08:47.368208283Z"} +2026/03/22 08:08:52 ───────────────────────────────────────────────── +2026/03/22 08:08:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:08:57 [log_collector] {"stage_name":"log_collector","events_processed":13509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.8,"last_update":"2026-03-22T08:08:57.368219898Z"} +2026/03/22 08:08:57 [metric_collector] {"stage_name":"metric_collector","events_processed":7644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1528.8,"last_update":"2026-03-22T08:08:52.368823417Z"} +2026/03/22 08:08:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:08:52.375059303Z"} +2026/03/22 08:08:57 [detection_layer] {"stage_name":"detection_layer","events_processed":254,"events_dropped":0,"avg_latency_ms":14.382102000391718,"throughput_eps":0,"last_update":"2026-03-22T08:08:52.479226839Z"} +2026/03/22 08:08:57 [transform_engine] {"stage_name":"transform_engine","events_processed":254,"events_dropped":0,"avg_latency_ms":189.91819233432045,"throughput_eps":0,"last_update":"2026-03-22T08:08:52.479236999Z"} +2026/03/22 08:08:57 ───────────────────────────────────────────────── +2026/03/22 08:09:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:09:02 [detection_layer] {"stage_name":"detection_layer","events_processed":254,"events_dropped":0,"avg_latency_ms":14.382102000391718,"throughput_eps":0,"last_update":"2026-03-22T08:08:57.47902079Z"} +2026/03/22 08:09:02 [transform_engine] {"stage_name":"transform_engine","events_processed":255,"events_dropped":0,"avg_latency_ms":172.61964246745637,"throughput_eps":0,"last_update":"2026-03-22T08:08:57.582472093Z"} +2026/03/22 08:09:02 [log_collector] {"stage_name":"log_collector","events_processed":13511,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.2,"last_update":"2026-03-22T08:09:02.368087735Z"} +2026/03/22 08:09:02 [metric_collector] {"stage_name":"metric_collector","events_processed":7649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1529.8,"last_update":"2026-03-22T08:08:57.368542135Z"} +2026/03/22 08:09:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3062,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:08:57.374832787Z"} +2026/03/22 08:09:02 ───────────────────────────────────────────────── +2026/03/22 08:09:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:09:07 [log_collector] {"stage_name":"log_collector","events_processed":13511,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.2,"last_update":"2026-03-22T08:09:02.368087735Z"} +2026/03/22 08:09:07 [metric_collector] {"stage_name":"metric_collector","events_processed":7654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1530.8,"last_update":"2026-03-22T08:09:02.368407928Z"} +2026/03/22 08:09:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:09:02.374296039Z"} +2026/03/22 08:09:07 [detection_layer] {"stage_name":"detection_layer","events_processed":255,"events_dropped":0,"avg_latency_ms":14.131502200313374,"throughput_eps":0,"last_update":"2026-03-22T08:09:02.479486924Z"} +2026/03/22 08:09:07 [transform_engine] {"stage_name":"transform_engine","events_processed":255,"events_dropped":0,"avg_latency_ms":172.61964246745637,"throughput_eps":0,"last_update":"2026-03-22T08:09:02.479515909Z"} +2026/03/22 08:09:07 ───────────────────────────────────────────────── +2026/03/22 08:09:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:09:12 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:09:12.368412638Z"} +2026/03/22 08:09:12 [metric_collector] {"stage_name":"metric_collector","events_processed":7659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1531.8,"last_update":"2026-03-22T08:09:07.369104449Z"} +2026/03/22 08:09:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:09:07.377734072Z"} +2026/03/22 08:09:12 [detection_layer] {"stage_name":"detection_layer","events_processed":255,"events_dropped":0,"avg_latency_ms":14.131502200313374,"throughput_eps":0,"last_update":"2026-03-22T08:09:07.479948714Z"} +2026/03/22 08:09:12 [transform_engine] {"stage_name":"transform_engine","events_processed":255,"events_dropped":0,"avg_latency_ms":172.61964246745637,"throughput_eps":0,"last_update":"2026-03-22T08:09:07.478844088Z"} +2026/03/22 08:09:12 ───────────────────────────────────────────────── +2026/03/22 08:09:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:09:17 [metric_collector] {"stage_name":"metric_collector","events_processed":7664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1532.8,"last_update":"2026-03-22T08:09:12.368755906Z"} +2026/03/22 08:09:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:09:12.377676366Z"} +2026/03/22 08:09:17 [detection_layer] {"stage_name":"detection_layer","events_processed":255,"events_dropped":0,"avg_latency_ms":14.131502200313374,"throughput_eps":0,"last_update":"2026-03-22T08:09:12.479866901Z"} +2026/03/22 08:09:17 [transform_engine] {"stage_name":"transform_engine","events_processed":255,"events_dropped":0,"avg_latency_ms":172.61964246745637,"throughput_eps":0,"last_update":"2026-03-22T08:09:12.479912008Z"} +2026/03/22 08:09:17 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:09:12.368412638Z"} +2026/03/22 08:09:17 ───────────────────────────────────────────────── +2026/03/22 08:09:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:09:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:09:17.375997816Z"} +2026/03/22 08:09:22 [detection_layer] {"stage_name":"detection_layer","events_processed":255,"events_dropped":0,"avg_latency_ms":14.131502200313374,"throughput_eps":0,"last_update":"2026-03-22T08:09:17.479242631Z"} +2026/03/22 08:09:22 [transform_engine] {"stage_name":"transform_engine","events_processed":255,"events_dropped":0,"avg_latency_ms":172.61964246745637,"throughput_eps":0,"last_update":"2026-03-22T08:09:17.479211962Z"} +2026/03/22 08:09:22 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:09:17.367966279Z"} +2026/03/22 08:09:22 [metric_collector] {"stage_name":"metric_collector","events_processed":7669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1533.8,"last_update":"2026-03-22T08:09:17.368365514Z"} +2026/03/22 08:09:22 ───────────────────────────────────────────────── +2026/03/22 08:09:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:09:27 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:09:27.368699339Z"} +2026/03/22 08:09:27 [metric_collector] {"stage_name":"metric_collector","events_processed":7674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1534.8,"last_update":"2026-03-22T08:09:22.36911974Z"} +2026/03/22 08:09:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3072,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:09:22.376179335Z"} +2026/03/22 08:09:27 [detection_layer] {"stage_name":"detection_layer","events_processed":255,"events_dropped":0,"avg_latency_ms":14.131502200313374,"throughput_eps":0,"last_update":"2026-03-22T08:09:22.47941937Z"} +2026/03/22 08:09:27 [transform_engine] {"stage_name":"transform_engine","events_processed":255,"events_dropped":0,"avg_latency_ms":172.61964246745637,"throughput_eps":0,"last_update":"2026-03-22T08:09:22.479433578Z"} +2026/03/22 08:09:27 ───────────────────────────────────────────────── +2026/03/22 08:09:28 [ANOMALY] time=2026-03-22T08:09:28Z score=0.7822 method=SEAD details=MAD!:w=0.50,s=0.96 RRCF-fast:w=0.13,s=0.63 RRCF-mid:w=0.11,s=0.77 RRCF-slow:w=0.10,s=0.86 COPOD!:w=0.15,s=0.27 +2026/03/22 08:09:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:09:32 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:09:32.368826146Z"} +2026/03/22 08:09:32 [metric_collector] {"stage_name":"metric_collector","events_processed":7679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1535.8,"last_update":"2026-03-22T08:09:27.368983252Z"} +2026/03/22 08:09:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:09:27.375469098Z"} +2026/03/22 08:09:32 [detection_layer] {"stage_name":"detection_layer","events_processed":255,"events_dropped":0,"avg_latency_ms":14.131502200313374,"throughput_eps":0,"last_update":"2026-03-22T08:09:27.479673752Z"} +2026/03/22 08:09:32 [transform_engine] {"stage_name":"transform_engine","events_processed":256,"events_dropped":0,"avg_latency_ms":332.7324659739651,"throughput_eps":0,"last_update":"2026-03-22T08:09:28.452899543Z"} +2026/03/22 08:09:32 ───────────────────────────────────────────────── +2026/03/22 08:09:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:09:37 [detection_layer] {"stage_name":"detection_layer","events_processed":256,"events_dropped":0,"avg_latency_ms":13.8162363602507,"throughput_eps":0,"last_update":"2026-03-22T08:09:32.47970751Z"} +2026/03/22 08:09:37 [transform_engine] {"stage_name":"transform_engine","events_processed":256,"events_dropped":0,"avg_latency_ms":332.7324659739651,"throughput_eps":0,"last_update":"2026-03-22T08:09:32.479736416Z"} +2026/03/22 08:09:37 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:09:32.368826146Z"} +2026/03/22 08:09:37 [metric_collector] {"stage_name":"metric_collector","events_processed":7684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1536.8,"last_update":"2026-03-22T08:09:32.369309131Z"} +2026/03/22 08:09:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3076,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:09:32.378513986Z"} +2026/03/22 08:09:37 ───────────────────────────────────────────────── +2026/03/22 08:09:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:09:42 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:09:37.368647055Z"} +2026/03/22 08:09:42 [metric_collector] {"stage_name":"metric_collector","events_processed":7689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1537.8,"last_update":"2026-03-22T08:09:37.368939235Z"} +2026/03/22 08:09:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:09:37.377170274Z"} +2026/03/22 08:09:42 [detection_layer] {"stage_name":"detection_layer","events_processed":256,"events_dropped":0,"avg_latency_ms":13.8162363602507,"throughput_eps":0,"last_update":"2026-03-22T08:09:37.479365146Z"} +2026/03/22 08:09:42 [transform_engine] {"stage_name":"transform_engine","events_processed":256,"events_dropped":0,"avg_latency_ms":332.7324659739651,"throughput_eps":0,"last_update":"2026-03-22T08:09:37.479390836Z"} +2026/03/22 08:09:42 ───────────────────────────────────────────────── +2026/03/22 08:09:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:09:47 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:09:42.367963852Z"} +2026/03/22 08:09:47 [metric_collector] {"stage_name":"metric_collector","events_processed":7694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1538.8,"last_update":"2026-03-22T08:09:42.36826538Z"} +2026/03/22 08:09:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:09:42.37491067Z"} +2026/03/22 08:09:47 [detection_layer] {"stage_name":"detection_layer","events_processed":256,"events_dropped":0,"avg_latency_ms":13.8162363602507,"throughput_eps":0,"last_update":"2026-03-22T08:09:42.47914517Z"} +2026/03/22 08:09:47 [transform_engine] {"stage_name":"transform_engine","events_processed":256,"events_dropped":0,"avg_latency_ms":332.7324659739651,"throughput_eps":0,"last_update":"2026-03-22T08:09:42.479119331Z"} +2026/03/22 08:09:47 ───────────────────────────────────────────────── +2026/03/22 08:09:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:09:52 [metric_collector] {"stage_name":"metric_collector","events_processed":7699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1539.8,"last_update":"2026-03-22T08:09:47.36819406Z"} +2026/03/22 08:09:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3082,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:09:47.374692349Z"} +2026/03/22 08:09:52 [detection_layer] {"stage_name":"detection_layer","events_processed":256,"events_dropped":0,"avg_latency_ms":13.8162363602507,"throughput_eps":0,"last_update":"2026-03-22T08:09:47.479915343Z"} +2026/03/22 08:09:52 [transform_engine] {"stage_name":"transform_engine","events_processed":256,"events_dropped":0,"avg_latency_ms":332.7324659739651,"throughput_eps":0,"last_update":"2026-03-22T08:09:47.478820375Z"} +2026/03/22 08:09:52 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:09:47.368011471Z"} +2026/03/22 08:09:52 ───────────────────────────────────────────────── +2026/03/22 08:09:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:09:57 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:09:57.368773477Z"} +2026/03/22 08:09:57 [metric_collector] {"stage_name":"metric_collector","events_processed":7704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1540.8,"last_update":"2026-03-22T08:09:52.368128968Z"} +2026/03/22 08:09:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:09:52.37503659Z"} +2026/03/22 08:09:57 [detection_layer] {"stage_name":"detection_layer","events_processed":256,"events_dropped":0,"avg_latency_ms":13.8162363602507,"throughput_eps":0,"last_update":"2026-03-22T08:09:52.479295246Z"} +2026/03/22 08:09:57 [transform_engine] {"stage_name":"transform_engine","events_processed":256,"events_dropped":0,"avg_latency_ms":332.7324659739651,"throughput_eps":0,"last_update":"2026-03-22T08:09:52.479256782Z"} +2026/03/22 08:09:57 ───────────────────────────────────────────────── +2026/03/22 08:10:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:10:02 [detection_layer] {"stage_name":"detection_layer","events_processed":256,"events_dropped":0,"avg_latency_ms":13.8162363602507,"throughput_eps":0,"last_update":"2026-03-22T08:09:57.479234233Z"} +2026/03/22 08:10:02 [transform_engine] {"stage_name":"transform_engine","events_processed":257,"events_dropped":0,"avg_latency_ms":278.71473897917207,"throughput_eps":0,"last_update":"2026-03-22T08:09:57.541911389Z"} +2026/03/22 08:10:02 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:09:57.368773477Z"} +2026/03/22 08:10:02 [metric_collector] {"stage_name":"metric_collector","events_processed":7709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1541.8,"last_update":"2026-03-22T08:09:57.369240612Z"} +2026/03/22 08:10:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:09:57.375005316Z"} +2026/03/22 08:10:02 ───────────────────────────────────────────────── +2026/03/22 08:10:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:10:07 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:10:07.368572879Z"} +2026/03/22 08:10:07 [metric_collector] {"stage_name":"metric_collector","events_processed":7714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1542.8,"last_update":"2026-03-22T08:10:02.369028688Z"} +2026/03/22 08:10:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:10:02.381334112Z"} +2026/03/22 08:10:07 [detection_layer] {"stage_name":"detection_layer","events_processed":257,"events_dropped":0,"avg_latency_ms":13.366904088200561,"throughput_eps":0,"last_update":"2026-03-22T08:10:02.479493161Z"} +2026/03/22 08:10:07 [transform_engine] {"stage_name":"transform_engine","events_processed":257,"events_dropped":0,"avg_latency_ms":278.71473897917207,"throughput_eps":0,"last_update":"2026-03-22T08:10:02.479504372Z"} +2026/03/22 08:10:07 ───────────────────────────────────────────────── +2026/03/22 08:10:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:10:12 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:10:07.368572879Z"} +2026/03/22 08:10:12 [metric_collector] {"stage_name":"metric_collector","events_processed":7719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1543.8,"last_update":"2026-03-22T08:10:07.368942748Z"} +2026/03/22 08:10:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:10:07.377654428Z"} +2026/03/22 08:10:12 [detection_layer] {"stage_name":"detection_layer","events_processed":257,"events_dropped":0,"avg_latency_ms":13.366904088200561,"throughput_eps":0,"last_update":"2026-03-22T08:10:07.479854058Z"} +2026/03/22 08:10:12 [transform_engine] {"stage_name":"transform_engine","events_processed":257,"events_dropped":0,"avg_latency_ms":278.71473897917207,"throughput_eps":0,"last_update":"2026-03-22T08:10:07.479865419Z"} +2026/03/22 08:10:12 ───────────────────────────────────────────────── +2026/03/22 08:10:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:10:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:10:12.376791362Z"} +2026/03/22 08:10:17 [detection_layer] {"stage_name":"detection_layer","events_processed":257,"events_dropped":0,"avg_latency_ms":13.366904088200561,"throughput_eps":0,"last_update":"2026-03-22T08:10:12.479975568Z"} +2026/03/22 08:10:17 [transform_engine] {"stage_name":"transform_engine","events_processed":257,"events_dropped":0,"avg_latency_ms":278.71473897917207,"throughput_eps":0,"last_update":"2026-03-22T08:10:12.478884618Z"} +2026/03/22 08:10:17 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:10:12.369027989Z"} +2026/03/22 08:10:17 [metric_collector] {"stage_name":"metric_collector","events_processed":7724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1544.8,"last_update":"2026-03-22T08:10:12.368961902Z"} +2026/03/22 08:10:17 ───────────────────────────────────────────────── +2026/03/22 08:10:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:10:22 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:10:17.367968924Z"} +2026/03/22 08:10:22 [metric_collector] {"stage_name":"metric_collector","events_processed":7729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1545.8,"last_update":"2026-03-22T08:10:17.368511684Z"} +2026/03/22 08:10:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:10:17.374901645Z"} +2026/03/22 08:10:22 [detection_layer] {"stage_name":"detection_layer","events_processed":257,"events_dropped":0,"avg_latency_ms":13.366904088200561,"throughput_eps":0,"last_update":"2026-03-22T08:10:17.479058343Z"} +2026/03/22 08:10:22 [transform_engine] {"stage_name":"transform_engine","events_processed":257,"events_dropped":0,"avg_latency_ms":278.71473897917207,"throughput_eps":0,"last_update":"2026-03-22T08:10:17.479068674Z"} +2026/03/22 08:10:22 ───────────────────────────────────────────────── +2026/03/22 08:10:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:10:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:10:22.376129965Z"} +2026/03/22 08:10:27 [detection_layer] {"stage_name":"detection_layer","events_processed":257,"events_dropped":0,"avg_latency_ms":13.366904088200561,"throughput_eps":0,"last_update":"2026-03-22T08:10:22.479323789Z"} +2026/03/22 08:10:27 [transform_engine] {"stage_name":"transform_engine","events_processed":257,"events_dropped":0,"avg_latency_ms":278.71473897917207,"throughput_eps":0,"last_update":"2026-03-22T08:10:22.479337876Z"} +2026/03/22 08:10:27 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:10:22.368040898Z"} +2026/03/22 08:10:27 [metric_collector] {"stage_name":"metric_collector","events_processed":7734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1546.8,"last_update":"2026-03-22T08:10:22.368805393Z"} +2026/03/22 08:10:27 ───────────────────────────────────────────────── +2026/03/22 08:10:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:10:32 [transform_engine] {"stage_name":"transform_engine","events_processed":258,"events_dropped":0,"avg_latency_ms":235.23812438333766,"throughput_eps":0,"last_update":"2026-03-22T08:10:27.540211369Z"} +2026/03/22 08:10:32 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:10:27.368579185Z"} +2026/03/22 08:10:32 [metric_collector] {"stage_name":"metric_collector","events_processed":7739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1547.8,"last_update":"2026-03-22T08:10:27.369010663Z"} +2026/03/22 08:10:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:10:27.375735706Z"} +2026/03/22 08:10:32 [detection_layer] {"stage_name":"detection_layer","events_processed":257,"events_dropped":0,"avg_latency_ms":13.366904088200561,"throughput_eps":0,"last_update":"2026-03-22T08:10:27.47996898Z"} +2026/03/22 08:10:32 ───────────────────────────────────────────────── +2026/03/22 08:10:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:10:37 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:10:32.368134383Z"} +2026/03/22 08:10:37 [metric_collector] {"stage_name":"metric_collector","events_processed":7744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1548.8,"last_update":"2026-03-22T08:10:32.368444076Z"} +2026/03/22 08:10:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:10:32.375156625Z"} +2026/03/22 08:10:37 [detection_layer] {"stage_name":"detection_layer","events_processed":258,"events_dropped":0,"avg_latency_ms":13.07883507056045,"throughput_eps":0,"last_update":"2026-03-22T08:10:32.479371074Z"} +2026/03/22 08:10:37 [transform_engine] {"stage_name":"transform_engine","events_processed":258,"events_dropped":0,"avg_latency_ms":235.23812438333766,"throughput_eps":0,"last_update":"2026-03-22T08:10:32.479381183Z"} +2026/03/22 08:10:37 ───────────────────────────────────────────────── +2026/03/22 08:10:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:10:42 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:10:42.368769528Z"} +2026/03/22 08:10:42 [metric_collector] {"stage_name":"metric_collector","events_processed":7749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1549.8,"last_update":"2026-03-22T08:10:37.368152279Z"} +2026/03/22 08:10:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:10:37.374296851Z"} +2026/03/22 08:10:42 [detection_layer] {"stage_name":"detection_layer","events_processed":258,"events_dropped":0,"avg_latency_ms":13.07883507056045,"throughput_eps":0,"last_update":"2026-03-22T08:10:37.479487178Z"} +2026/03/22 08:10:42 [transform_engine] {"stage_name":"transform_engine","events_processed":258,"events_dropped":0,"avg_latency_ms":235.23812438333766,"throughput_eps":0,"last_update":"2026-03-22T08:10:37.479501406Z"} +2026/03/22 08:10:42 ───────────────────────────────────────────────── +2026/03/22 08:10:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:10:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:10:42.37530083Z"} +2026/03/22 08:10:47 [detection_layer] {"stage_name":"detection_layer","events_processed":258,"events_dropped":0,"avg_latency_ms":13.07883507056045,"throughput_eps":0,"last_update":"2026-03-22T08:10:42.479591124Z"} +2026/03/22 08:10:47 [transform_engine] {"stage_name":"transform_engine","events_processed":258,"events_dropped":0,"avg_latency_ms":235.23812438333766,"throughput_eps":0,"last_update":"2026-03-22T08:10:42.479606062Z"} +2026/03/22 08:10:47 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:10:42.368769528Z"} +2026/03/22 08:10:47 [metric_collector] {"stage_name":"metric_collector","events_processed":7754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1550.8,"last_update":"2026-03-22T08:10:42.369282802Z"} +2026/03/22 08:10:47 ───────────────────────────────────────────────── +2026/03/22 08:10:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:10:52 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:10:52.368445249Z"} +2026/03/22 08:10:52 [metric_collector] {"stage_name":"metric_collector","events_processed":7759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1551.8,"last_update":"2026-03-22T08:10:47.368947801Z"} +2026/03/22 08:10:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:10:47.375569597Z"} +2026/03/22 08:10:52 [detection_layer] {"stage_name":"detection_layer","events_processed":258,"events_dropped":0,"avg_latency_ms":13.07883507056045,"throughput_eps":0,"last_update":"2026-03-22T08:10:47.47965644Z"} +2026/03/22 08:10:52 [transform_engine] {"stage_name":"transform_engine","events_processed":258,"events_dropped":0,"avg_latency_ms":235.23812438333766,"throughput_eps":0,"last_update":"2026-03-22T08:10:47.479666859Z"} +2026/03/22 08:10:52 ───────────────────────────────────────────────── +2026/03/22 08:10:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:10:57 [detection_layer] {"stage_name":"detection_layer","events_processed":258,"events_dropped":0,"avg_latency_ms":13.07883507056045,"throughput_eps":0,"last_update":"2026-03-22T08:10:52.479737305Z"} +2026/03/22 08:10:57 [transform_engine] {"stage_name":"transform_engine","events_processed":258,"events_dropped":0,"avg_latency_ms":235.23812438333766,"throughput_eps":0,"last_update":"2026-03-22T08:10:52.479747685Z"} +2026/03/22 08:10:57 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:10:52.368445249Z"} +2026/03/22 08:10:57 [metric_collector] {"stage_name":"metric_collector","events_processed":7764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1552.8,"last_update":"2026-03-22T08:10:52.368682254Z"} +2026/03/22 08:10:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:10:52.37553918Z"} +2026/03/22 08:10:57 ───────────────────────────────────────────────── +2026/03/22 08:11:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:11:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:10:57.374342632Z"} +2026/03/22 08:11:02 [detection_layer] {"stage_name":"detection_layer","events_processed":258,"events_dropped":0,"avg_latency_ms":13.07883507056045,"throughput_eps":0,"last_update":"2026-03-22T08:10:57.479481109Z"} +2026/03/22 08:11:02 [transform_engine] {"stage_name":"transform_engine","events_processed":259,"events_dropped":0,"avg_latency_ms":200.28974230667015,"throughput_eps":0,"last_update":"2026-03-22T08:10:57.539990879Z"} +2026/03/22 08:11:02 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:10:57.367956709Z"} +2026/03/22 08:11:02 [metric_collector] {"stage_name":"metric_collector","events_processed":7769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1553.8,"last_update":"2026-03-22T08:10:57.368191148Z"} +2026/03/22 08:11:02 ───────────────────────────────────────────────── +2026/03/22 08:11:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:11:07 [detection_layer] {"stage_name":"detection_layer","events_processed":259,"events_dropped":0,"avg_latency_ms":13.18089645644836,"throughput_eps":0,"last_update":"2026-03-22T08:11:02.479082203Z"} +2026/03/22 08:11:07 [transform_engine] {"stage_name":"transform_engine","events_processed":259,"events_dropped":0,"avg_latency_ms":200.28974230667015,"throughput_eps":0,"last_update":"2026-03-22T08:11:02.47909614Z"} +2026/03/22 08:11:07 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:11:02.367991193Z"} +2026/03/22 08:11:07 [metric_collector] {"stage_name":"metric_collector","events_processed":7774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1554.8,"last_update":"2026-03-22T08:11:02.368155949Z"} +2026/03/22 08:11:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:11:02.37582992Z"} +2026/03/22 08:11:07 ───────────────────────────────────────────────── +2026/03/22 08:11:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:11:12 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:11:12.368907687Z"} +2026/03/22 08:11:12 [metric_collector] {"stage_name":"metric_collector","events_processed":7779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1555.8,"last_update":"2026-03-22T08:11:07.368844534Z"} +2026/03/22 08:11:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:11:07.375255696Z"} +2026/03/22 08:11:12 [detection_layer] {"stage_name":"detection_layer","events_processed":259,"events_dropped":0,"avg_latency_ms":13.18089645644836,"throughput_eps":0,"last_update":"2026-03-22T08:11:07.479503386Z"} +2026/03/22 08:11:12 [transform_engine] {"stage_name":"transform_engine","events_processed":259,"events_dropped":0,"avg_latency_ms":200.28974230667015,"throughput_eps":0,"last_update":"2026-03-22T08:11:07.479513575Z"} +2026/03/22 08:11:12 ───────────────────────────────────────────────── +2026/03/22 08:11:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:11:17 [metric_collector] {"stage_name":"metric_collector","events_processed":7784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1556.8,"last_update":"2026-03-22T08:11:12.369157315Z"} +2026/03/22 08:11:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:11:12.375104428Z"} +2026/03/22 08:11:17 [detection_layer] {"stage_name":"detection_layer","events_processed":259,"events_dropped":0,"avg_latency_ms":13.18089645644836,"throughput_eps":0,"last_update":"2026-03-22T08:11:12.47928538Z"} +2026/03/22 08:11:17 [transform_engine] {"stage_name":"transform_engine","events_processed":259,"events_dropped":0,"avg_latency_ms":200.28974230667015,"throughput_eps":0,"last_update":"2026-03-22T08:11:12.479296011Z"} +2026/03/22 08:11:17 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:11:17.367978145Z"} +2026/03/22 08:11:17 ───────────────────────────────────────────────── +2026/03/22 08:11:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:11:22 [metric_collector] {"stage_name":"metric_collector","events_processed":7789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1557.8,"last_update":"2026-03-22T08:11:17.368503772Z"} +2026/03/22 08:11:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:11:17.375396968Z"} +2026/03/22 08:11:22 [detection_layer] {"stage_name":"detection_layer","events_processed":259,"events_dropped":0,"avg_latency_ms":13.18089645644836,"throughput_eps":0,"last_update":"2026-03-22T08:11:17.478958332Z"} +2026/03/22 08:11:22 [transform_engine] {"stage_name":"transform_engine","events_processed":259,"events_dropped":0,"avg_latency_ms":200.28974230667015,"throughput_eps":0,"last_update":"2026-03-22T08:11:17.478947942Z"} +2026/03/22 08:11:22 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:11:17.367978145Z"} +2026/03/22 08:11:22 ───────────────────────────────────────────────── +2026/03/22 08:11:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:11:27 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:11:22.368476865Z"} +2026/03/22 08:11:27 [metric_collector] {"stage_name":"metric_collector","events_processed":7794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1558.8,"last_update":"2026-03-22T08:11:22.368762702Z"} +2026/03/22 08:11:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:11:22.376165815Z"} +2026/03/22 08:11:27 [detection_layer] {"stage_name":"detection_layer","events_processed":259,"events_dropped":0,"avg_latency_ms":13.18089645644836,"throughput_eps":0,"last_update":"2026-03-22T08:11:22.479380364Z"} +2026/03/22 08:11:27 [transform_engine] {"stage_name":"transform_engine","events_processed":259,"events_dropped":0,"avg_latency_ms":200.28974230667015,"throughput_eps":0,"last_update":"2026-03-22T08:11:22.479390414Z"} +2026/03/22 08:11:27 ───────────────────────────────────────────────── +2026/03/22 08:11:27 [ANOMALY] time=2026-03-22T08:11:27Z score=0.8158 method=SEAD details=MAD!:w=0.49,s=1.00 RRCF-fast:w=0.13,s=0.44 RRCF-mid:w=0.11,s=0.89 RRCF-slow!:w=0.10,s=0.98 COPOD!:w=0.16,s=0.40 +2026/03/22 08:11:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:11:32 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:11:32.368124245Z"} +2026/03/22 08:11:32 [metric_collector] {"stage_name":"metric_collector","events_processed":7799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1559.8,"last_update":"2026-03-22T08:11:27.368516109Z"} +2026/03/22 08:11:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3122,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:11:27.375821505Z"} +2026/03/22 08:11:32 [detection_layer] {"stage_name":"detection_layer","events_processed":259,"events_dropped":0,"avg_latency_ms":13.18089645644836,"throughput_eps":0,"last_update":"2026-03-22T08:11:27.479037657Z"} +2026/03/22 08:11:32 [transform_engine] {"stage_name":"transform_engine","events_processed":260,"events_dropped":0,"avg_latency_ms":171.93619784533615,"throughput_eps":0,"last_update":"2026-03-22T08:11:27.53757652Z"} +2026/03/22 08:11:32 ───────────────────────────────────────────────── +2026/03/22 08:11:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:11:37 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:11:32.368124245Z"} +2026/03/22 08:11:37 [metric_collector] {"stage_name":"metric_collector","events_processed":7804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1560.8,"last_update":"2026-03-22T08:11:32.368495416Z"} +2026/03/22 08:11:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:11:32.374782501Z"} +2026/03/22 08:11:37 [detection_layer] {"stage_name":"detection_layer","events_processed":260,"events_dropped":0,"avg_latency_ms":12.876680565158688,"throughput_eps":0,"last_update":"2026-03-22T08:11:32.479021733Z"} +2026/03/22 08:11:37 [transform_engine] {"stage_name":"transform_engine","events_processed":260,"events_dropped":0,"avg_latency_ms":171.93619784533615,"throughput_eps":0,"last_update":"2026-03-22T08:11:32.478945206Z"} +2026/03/22 08:11:37 ───────────────────────────────────────────────── +2026/03/22 08:11:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:11:42 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:11:37.368711794Z"} +2026/03/22 08:11:42 [metric_collector] {"stage_name":"metric_collector","events_processed":7809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1561.8,"last_update":"2026-03-22T08:11:37.369088145Z"} +2026/03/22 08:11:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3126,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:11:37.375535737Z"} +2026/03/22 08:11:42 [detection_layer] {"stage_name":"detection_layer","events_processed":260,"events_dropped":0,"avg_latency_ms":12.876680565158688,"throughput_eps":0,"last_update":"2026-03-22T08:11:37.479675638Z"} +2026/03/22 08:11:42 [transform_engine] {"stage_name":"transform_engine","events_processed":260,"events_dropped":0,"avg_latency_ms":171.93619784533615,"throughput_eps":0,"last_update":"2026-03-22T08:11:37.479694715Z"} +2026/03/22 08:11:42 ───────────────────────────────────────────────── +2026/03/22 08:11:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:11:47 [metric_collector] {"stage_name":"metric_collector","events_processed":7814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1562.8,"last_update":"2026-03-22T08:11:42.3689237Z"} +2026/03/22 08:11:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3128,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:11:42.376442954Z"} +2026/03/22 08:11:47 [detection_layer] {"stage_name":"detection_layer","events_processed":260,"events_dropped":0,"avg_latency_ms":12.876680565158688,"throughput_eps":0,"last_update":"2026-03-22T08:11:42.479730894Z"} +2026/03/22 08:11:47 [transform_engine] {"stage_name":"transform_engine","events_processed":260,"events_dropped":0,"avg_latency_ms":171.93619784533615,"throughput_eps":0,"last_update":"2026-03-22T08:11:42.479707269Z"} +2026/03/22 08:11:47 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:11:42.368621Z"} +2026/03/22 08:11:47 ───────────────────────────────────────────────── +2026/03/22 08:11:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:11:52 [transform_engine] {"stage_name":"transform_engine","events_processed":260,"events_dropped":0,"avg_latency_ms":171.93619784533615,"throughput_eps":0,"last_update":"2026-03-22T08:11:47.479881558Z"} +2026/03/22 08:11:52 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:11:47.368710237Z"} +2026/03/22 08:11:52 [metric_collector] {"stage_name":"metric_collector","events_processed":7819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1563.8,"last_update":"2026-03-22T08:11:47.36878946Z"} +2026/03/22 08:11:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3130,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:11:47.375689558Z"} +2026/03/22 08:11:52 [detection_layer] {"stage_name":"detection_layer","events_processed":260,"events_dropped":0,"avg_latency_ms":12.876680565158688,"throughput_eps":0,"last_update":"2026-03-22T08:11:47.479905114Z"} +2026/03/22 08:11:52 ───────────────────────────────────────────────── +2026/03/22 08:11:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:11:57 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:11:52.368294305Z"} +2026/03/22 08:11:57 [metric_collector] {"stage_name":"metric_collector","events_processed":7824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1564.8,"last_update":"2026-03-22T08:11:52.3687668Z"} +2026/03/22 08:11:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:11:52.375337718Z"} +2026/03/22 08:11:57 [detection_layer] {"stage_name":"detection_layer","events_processed":260,"events_dropped":0,"avg_latency_ms":12.876680565158688,"throughput_eps":0,"last_update":"2026-03-22T08:11:52.479493288Z"} +2026/03/22 08:11:57 [transform_engine] {"stage_name":"transform_engine","events_processed":260,"events_dropped":0,"avg_latency_ms":171.93619784533615,"throughput_eps":0,"last_update":"2026-03-22T08:11:52.479520982Z"} +2026/03/22 08:11:57 ───────────────────────────────────────────────── +2026/03/22 08:12:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:12:02 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:11:57.367962941Z"} +2026/03/22 08:12:02 [metric_collector] {"stage_name":"metric_collector","events_processed":7829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1565.8,"last_update":"2026-03-22T08:11:57.368304034Z"} +2026/03/22 08:12:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:11:57.375237747Z"} +2026/03/22 08:12:02 [detection_layer] {"stage_name":"detection_layer","events_processed":260,"events_dropped":0,"avg_latency_ms":12.876680565158688,"throughput_eps":0,"last_update":"2026-03-22T08:11:57.479451709Z"} +2026/03/22 08:12:02 [transform_engine] {"stage_name":"transform_engine","events_processed":261,"events_dropped":0,"avg_latency_ms":150.63916707626893,"throughput_eps":0,"last_update":"2026-03-22T08:11:57.544882535Z"} +2026/03/22 08:12:02 ───────────────────────────────────────────────── +2026/03/22 08:12:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:12:07 [metric_collector] {"stage_name":"metric_collector","events_processed":7834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1566.8,"last_update":"2026-03-22T08:12:02.368212196Z"} +2026/03/22 08:12:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:12:02.374647083Z"} +2026/03/22 08:12:07 [detection_layer] {"stage_name":"detection_layer","events_processed":261,"events_dropped":0,"avg_latency_ms":12.72130045212695,"throughput_eps":0,"last_update":"2026-03-22T08:12:02.479814432Z"} +2026/03/22 08:12:07 [transform_engine] {"stage_name":"transform_engine","events_processed":261,"events_dropped":0,"avg_latency_ms":150.63916707626893,"throughput_eps":0,"last_update":"2026-03-22T08:12:02.479795887Z"} +2026/03/22 08:12:07 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:12:02.367965824Z"} +2026/03/22 08:12:07 ───────────────────────────────────────────────── +2026/03/22 08:12:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:12:12 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:12:07.368228289Z"} +2026/03/22 08:12:12 [metric_collector] {"stage_name":"metric_collector","events_processed":7839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1567.8,"last_update":"2026-03-22T08:12:07.368428151Z"} +2026/03/22 08:12:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:12:07.374572432Z"} +2026/03/22 08:12:12 [detection_layer] {"stage_name":"detection_layer","events_processed":261,"events_dropped":0,"avg_latency_ms":12.72130045212695,"throughput_eps":0,"last_update":"2026-03-22T08:12:07.479777543Z"} +2026/03/22 08:12:12 [transform_engine] {"stage_name":"transform_engine","events_processed":261,"events_dropped":0,"avg_latency_ms":150.63916707626893,"throughput_eps":0,"last_update":"2026-03-22T08:12:07.479805707Z"} +2026/03/22 08:12:12 ───────────────────────────────────────────────── +2026/03/22 08:12:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:12:17 [transform_engine] {"stage_name":"transform_engine","events_processed":261,"events_dropped":0,"avg_latency_ms":150.63916707626893,"throughput_eps":0,"last_update":"2026-03-22T08:12:12.479095809Z"} +2026/03/22 08:12:17 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:12:12.36878101Z"} +2026/03/22 08:12:17 [metric_collector] {"stage_name":"metric_collector","events_processed":7844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1568.8,"last_update":"2026-03-22T08:12:12.369081606Z"} +2026/03/22 08:12:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:12:12.375890039Z"} +2026/03/22 08:12:17 [detection_layer] {"stage_name":"detection_layer","events_processed":261,"events_dropped":0,"avg_latency_ms":12.72130045212695,"throughput_eps":0,"last_update":"2026-03-22T08:12:12.479056013Z"} +2026/03/22 08:12:17 ───────────────────────────────────────────────── +2026/03/22 08:12:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:12:22 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:12:17.368732558Z"} +2026/03/22 08:12:22 [metric_collector] {"stage_name":"metric_collector","events_processed":7849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1569.8,"last_update":"2026-03-22T08:12:17.369175426Z"} +2026/03/22 08:12:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:12:17.376445293Z"} +2026/03/22 08:12:22 [detection_layer] {"stage_name":"detection_layer","events_processed":261,"events_dropped":0,"avg_latency_ms":12.72130045212695,"throughput_eps":0,"last_update":"2026-03-22T08:12:17.479645703Z"} +2026/03/22 08:12:22 [transform_engine] {"stage_name":"transform_engine","events_processed":261,"events_dropped":0,"avg_latency_ms":150.63916707626893,"throughput_eps":0,"last_update":"2026-03-22T08:12:17.479622268Z"} +2026/03/22 08:12:22 ───────────────────────────────────────────────── +2026/03/22 08:12:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:12:27 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:12:22.368456196Z"} +2026/03/22 08:12:27 [metric_collector] {"stage_name":"metric_collector","events_processed":7854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1570.8,"last_update":"2026-03-22T08:12:22.368750961Z"} +2026/03/22 08:12:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:12:22.376035196Z"} +2026/03/22 08:12:27 [detection_layer] {"stage_name":"detection_layer","events_processed":261,"events_dropped":0,"avg_latency_ms":12.72130045212695,"throughput_eps":0,"last_update":"2026-03-22T08:12:22.479222981Z"} +2026/03/22 08:12:27 [transform_engine] {"stage_name":"transform_engine","events_processed":261,"events_dropped":0,"avg_latency_ms":150.63916707626893,"throughput_eps":0,"last_update":"2026-03-22T08:12:22.479266705Z"} +2026/03/22 08:12:27 ───────────────────────────────────────────────── +2026/03/22 08:12:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:12:32 [transform_engine] {"stage_name":"transform_engine","events_processed":262,"events_dropped":0,"avg_latency_ms":132.79778866101515,"throughput_eps":0,"last_update":"2026-03-22T08:12:27.540266945Z"} +2026/03/22 08:12:32 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:12:27.368311854Z"} +2026/03/22 08:12:32 [metric_collector] {"stage_name":"metric_collector","events_processed":7859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1571.8,"last_update":"2026-03-22T08:12:27.368464176Z"} +2026/03/22 08:12:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:12:27.375683847Z"} +2026/03/22 08:12:32 [detection_layer] {"stage_name":"detection_layer","events_processed":261,"events_dropped":0,"avg_latency_ms":12.72130045212695,"throughput_eps":0,"last_update":"2026-03-22T08:12:27.479915802Z"} +2026/03/22 08:12:32 ───────────────────────────────────────────────── +2026/03/22 08:12:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:12:37 [transform_engine] {"stage_name":"transform_engine","events_processed":262,"events_dropped":0,"avg_latency_ms":132.79778866101515,"throughput_eps":0,"last_update":"2026-03-22T08:12:32.47912069Z"} +2026/03/22 08:12:37 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:12:32.368247322Z"} +2026/03/22 08:12:37 [metric_collector] {"stage_name":"metric_collector","events_processed":7864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1572.8,"last_update":"2026-03-22T08:12:32.368681914Z"} +2026/03/22 08:12:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:12:32.374944282Z"} +2026/03/22 08:12:37 [detection_layer] {"stage_name":"detection_layer","events_processed":262,"events_dropped":0,"avg_latency_ms":12.54946716170156,"throughput_eps":0,"last_update":"2026-03-22T08:12:32.47916801Z"} +2026/03/22 08:12:37 ───────────────────────────────────────────────── +2026/03/22 08:12:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:12:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:12:37.374994259Z"} +2026/03/22 08:12:42 [detection_layer] {"stage_name":"detection_layer","events_processed":262,"events_dropped":0,"avg_latency_ms":12.54946716170156,"throughput_eps":0,"last_update":"2026-03-22T08:12:37.479231483Z"} +2026/03/22 08:12:42 [transform_engine] {"stage_name":"transform_engine","events_processed":262,"events_dropped":0,"avg_latency_ms":132.79778866101515,"throughput_eps":0,"last_update":"2026-03-22T08:12:37.479210182Z"} +2026/03/22 08:12:42 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:12:37.367968369Z"} +2026/03/22 08:12:42 [metric_collector] {"stage_name":"metric_collector","events_processed":7869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1573.8,"last_update":"2026-03-22T08:12:37.368173883Z"} +2026/03/22 08:12:42 ───────────────────────────────────────────────── +2026/03/22 08:12:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:12:47 [metric_collector] {"stage_name":"metric_collector","events_processed":7874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1574.8,"last_update":"2026-03-22T08:12:42.36867874Z"} +2026/03/22 08:12:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:12:42.376698754Z"} +2026/03/22 08:12:47 [detection_layer] {"stage_name":"detection_layer","events_processed":262,"events_dropped":0,"avg_latency_ms":12.54946716170156,"throughput_eps":0,"last_update":"2026-03-22T08:12:42.479943728Z"} +2026/03/22 08:12:47 [transform_engine] {"stage_name":"transform_engine","events_processed":262,"events_dropped":0,"avg_latency_ms":132.79778866101515,"throughput_eps":0,"last_update":"2026-03-22T08:12:42.47882252Z"} +2026/03/22 08:12:47 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:12:42.368736832Z"} +2026/03/22 08:12:47 ───────────────────────────────────────────────── +2026/03/22 08:12:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:12:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:12:47.374870962Z"} +2026/03/22 08:12:52 [detection_layer] {"stage_name":"detection_layer","events_processed":262,"events_dropped":0,"avg_latency_ms":12.54946716170156,"throughput_eps":0,"last_update":"2026-03-22T08:12:47.479086656Z"} +2026/03/22 08:12:52 [transform_engine] {"stage_name":"transform_engine","events_processed":262,"events_dropped":0,"avg_latency_ms":132.79778866101515,"throughput_eps":0,"last_update":"2026-03-22T08:12:47.479103478Z"} +2026/03/22 08:12:52 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:12:47.36848015Z"} +2026/03/22 08:12:52 [metric_collector] {"stage_name":"metric_collector","events_processed":7879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1575.8,"last_update":"2026-03-22T08:12:47.368657409Z"} +2026/03/22 08:12:52 ───────────────────────────────────────────────── +2026/03/22 08:12:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:12:57 [detection_layer] {"stage_name":"detection_layer","events_processed":262,"events_dropped":0,"avg_latency_ms":12.54946716170156,"throughput_eps":0,"last_update":"2026-03-22T08:12:52.47985814Z"} +2026/03/22 08:12:57 [transform_engine] {"stage_name":"transform_engine","events_processed":262,"events_dropped":0,"avg_latency_ms":132.79778866101515,"throughput_eps":0,"last_update":"2026-03-22T08:12:52.479887165Z"} +2026/03/22 08:12:57 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:12:52.367980298Z"} +2026/03/22 08:12:57 [metric_collector] {"stage_name":"metric_collector","events_processed":7884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1576.8,"last_update":"2026-03-22T08:12:52.368297807Z"} +2026/03/22 08:12:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:12:52.376694452Z"} +2026/03/22 08:12:57 ───────────────────────────────────────────────── +2026/03/22 08:13:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:13:02 [detection_layer] {"stage_name":"detection_layer","events_processed":262,"events_dropped":0,"avg_latency_ms":12.54946716170156,"throughput_eps":0,"last_update":"2026-03-22T08:12:57.479610241Z"} +2026/03/22 08:13:02 [transform_engine] {"stage_name":"transform_engine","events_processed":263,"events_dropped":0,"avg_latency_ms":119.11800232881214,"throughput_eps":0,"last_update":"2026-03-22T08:12:57.5440623Z"} +2026/03/22 08:13:02 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:12:57.367967411Z"} +2026/03/22 08:13:02 [metric_collector] {"stage_name":"metric_collector","events_processed":7889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1577.8,"last_update":"2026-03-22T08:12:57.368333511Z"} +2026/03/22 08:13:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:12:57.379421152Z"} +2026/03/22 08:13:02 ───────────────────────────────────────────────── +2026/03/22 08:13:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:13:07 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:13:02.368651046Z"} +2026/03/22 08:13:07 [metric_collector] {"stage_name":"metric_collector","events_processed":7894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1578.8,"last_update":"2026-03-22T08:13:02.368827584Z"} +2026/03/22 08:13:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:13:02.36858548Z"} +2026/03/22 08:13:07 [detection_layer] {"stage_name":"detection_layer","events_processed":263,"events_dropped":0,"avg_latency_ms":12.53587972936125,"throughput_eps":0,"last_update":"2026-03-22T08:13:02.479340119Z"} +2026/03/22 08:13:07 [transform_engine] {"stage_name":"transform_engine","events_processed":263,"events_dropped":0,"avg_latency_ms":119.11800232881214,"throughput_eps":0,"last_update":"2026-03-22T08:13:02.479421525Z"} +2026/03/22 08:13:07 ───────────────────────────────────────────────── +2026/03/22 08:13:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:13:12 [transform_engine] {"stage_name":"transform_engine","events_processed":263,"events_dropped":0,"avg_latency_ms":119.11800232881214,"throughput_eps":0,"last_update":"2026-03-22T08:13:07.479613409Z"} +2026/03/22 08:13:12 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:13:07.36865513Z"} +2026/03/22 08:13:12 [metric_collector] {"stage_name":"metric_collector","events_processed":7899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1579.8,"last_update":"2026-03-22T08:13:07.369025179Z"} +2026/03/22 08:13:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:13:07.377413488Z"} +2026/03/22 08:13:12 [detection_layer] {"stage_name":"detection_layer","events_processed":263,"events_dropped":0,"avg_latency_ms":12.53587972936125,"throughput_eps":0,"last_update":"2026-03-22T08:13:07.479649668Z"} +2026/03/22 08:13:12 ───────────────────────────────────────────────── +2026/03/22 08:13:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:13:17 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:13:12.367993937Z"} +2026/03/22 08:13:17 [metric_collector] {"stage_name":"metric_collector","events_processed":7904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1580.8,"last_update":"2026-03-22T08:13:12.368584288Z"} +2026/03/22 08:13:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:13:12.377858424Z"} +2026/03/22 08:13:17 [detection_layer] {"stage_name":"detection_layer","events_processed":263,"events_dropped":0,"avg_latency_ms":12.53587972936125,"throughput_eps":0,"last_update":"2026-03-22T08:13:12.479067226Z"} +2026/03/22 08:13:17 [transform_engine] {"stage_name":"transform_engine","events_processed":263,"events_dropped":0,"avg_latency_ms":119.11800232881214,"throughput_eps":0,"last_update":"2026-03-22T08:13:12.479046466Z"} +2026/03/22 08:13:17 ───────────────────────────────────────────────── +2026/03/22 08:13:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:13:22 [metric_collector] {"stage_name":"metric_collector","events_processed":7909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1581.8,"last_update":"2026-03-22T08:13:17.368811447Z"} +2026/03/22 08:13:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:13:17.377604281Z"} +2026/03/22 08:13:22 [detection_layer] {"stage_name":"detection_layer","events_processed":263,"events_dropped":0,"avg_latency_ms":12.53587972936125,"throughput_eps":0,"last_update":"2026-03-22T08:13:17.479003919Z"} +2026/03/22 08:13:22 [transform_engine] {"stage_name":"transform_engine","events_processed":263,"events_dropped":0,"avg_latency_ms":119.11800232881214,"throughput_eps":0,"last_update":"2026-03-22T08:13:17.478988789Z"} +2026/03/22 08:13:22 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:13:17.368470904Z"} +2026/03/22 08:13:22 ───────────────────────────────────────────────── +2026/03/22 08:13:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:13:27 [detection_layer] {"stage_name":"detection_layer","events_processed":263,"events_dropped":0,"avg_latency_ms":12.53587972936125,"throughput_eps":0,"last_update":"2026-03-22T08:13:22.479855044Z"} +2026/03/22 08:13:27 [transform_engine] {"stage_name":"transform_engine","events_processed":263,"events_dropped":0,"avg_latency_ms":119.11800232881214,"throughput_eps":0,"last_update":"2026-03-22T08:13:22.479840466Z"} +2026/03/22 08:13:27 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:13:22.368117303Z"} +2026/03/22 08:13:27 [metric_collector] {"stage_name":"metric_collector","events_processed":7914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1582.8,"last_update":"2026-03-22T08:13:22.368446082Z"} +2026/03/22 08:13:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:13:22.374621523Z"} +2026/03/22 08:13:27 ───────────────────────────────────────────────── +2026/03/22 08:13:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:13:32 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:13:27.368002906Z"} +2026/03/22 08:13:32 [metric_collector] {"stage_name":"metric_collector","events_processed":7919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1583.8,"last_update":"2026-03-22T08:13:27.368430965Z"} +2026/03/22 08:13:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3170,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:13:27.377221464Z"} +2026/03/22 08:13:32 [detection_layer] {"stage_name":"detection_layer","events_processed":263,"events_dropped":0,"avg_latency_ms":12.53587972936125,"throughput_eps":0,"last_update":"2026-03-22T08:13:27.479431173Z"} +2026/03/22 08:13:32 [transform_engine] {"stage_name":"transform_engine","events_processed":264,"events_dropped":0,"avg_latency_ms":109.12308506304971,"throughput_eps":0,"last_update":"2026-03-22T08:13:27.548540734Z"} +2026/03/22 08:13:32 ───────────────────────────────────────────────── +2026/03/22 08:13:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:13:37 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:13:32.36843799Z"} +2026/03/22 08:13:37 [metric_collector] {"stage_name":"metric_collector","events_processed":7924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1584.8,"last_update":"2026-03-22T08:13:32.368895808Z"} +2026/03/22 08:13:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:13:32.378745396Z"} +2026/03/22 08:13:37 [detection_layer] {"stage_name":"detection_layer","events_processed":264,"events_dropped":0,"avg_latency_ms":13.406157783489,"throughput_eps":0,"last_update":"2026-03-22T08:13:32.479836852Z"} +2026/03/22 08:13:37 [transform_engine] {"stage_name":"transform_engine","events_processed":264,"events_dropped":0,"avg_latency_ms":109.12308506304971,"throughput_eps":0,"last_update":"2026-03-22T08:13:32.479886657Z"} +2026/03/22 08:13:37 ───────────────────────────────────────────────── +2026/03/22 08:13:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:13:42 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:13:37.368518386Z"} +2026/03/22 08:13:42 [metric_collector] {"stage_name":"metric_collector","events_processed":7929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1585.8,"last_update":"2026-03-22T08:13:37.368829071Z"} +2026/03/22 08:13:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:13:37.377262576Z"} +2026/03/22 08:13:42 [detection_layer] {"stage_name":"detection_layer","events_processed":264,"events_dropped":0,"avg_latency_ms":13.406157783489,"throughput_eps":0,"last_update":"2026-03-22T08:13:37.479482504Z"} +2026/03/22 08:13:42 [transform_engine] {"stage_name":"transform_engine","events_processed":264,"events_dropped":0,"avg_latency_ms":109.12308506304971,"throughput_eps":0,"last_update":"2026-03-22T08:13:37.479517842Z"} +2026/03/22 08:13:42 ───────────────────────────────────────────────── +2026/03/22 08:13:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:13:47 [detection_layer] {"stage_name":"detection_layer","events_processed":264,"events_dropped":0,"avg_latency_ms":13.406157783489,"throughput_eps":0,"last_update":"2026-03-22T08:13:42.479982071Z"} +2026/03/22 08:13:47 [transform_engine] {"stage_name":"transform_engine","events_processed":264,"events_dropped":0,"avg_latency_ms":109.12308506304971,"throughput_eps":0,"last_update":"2026-03-22T08:13:42.47888485Z"} +2026/03/22 08:13:47 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:13:42.368496564Z"} +2026/03/22 08:13:47 [metric_collector] {"stage_name":"metric_collector","events_processed":7934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1586.8,"last_update":"2026-03-22T08:13:42.368778434Z"} +2026/03/22 08:13:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:13:42.377782022Z"} +2026/03/22 08:13:47 ───────────────────────────────────────────────── +2026/03/22 08:13:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:13:52 [detection_layer] {"stage_name":"detection_layer","events_processed":264,"events_dropped":0,"avg_latency_ms":13.406157783489,"throughput_eps":0,"last_update":"2026-03-22T08:13:47.479773775Z"} +2026/03/22 08:13:52 [transform_engine] {"stage_name":"transform_engine","events_processed":264,"events_dropped":0,"avg_latency_ms":109.12308506304971,"throughput_eps":0,"last_update":"2026-03-22T08:13:47.479727296Z"} +2026/03/22 08:13:52 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:13:47.367964619Z"} +2026/03/22 08:13:52 [metric_collector] {"stage_name":"metric_collector","events_processed":7939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1587.8,"last_update":"2026-03-22T08:13:47.368281797Z"} +2026/03/22 08:13:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:13:47.377527146Z"} +2026/03/22 08:13:52 ───────────────────────────────────────────────── +2026/03/22 08:13:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:13:57 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:13:57.368335481Z"} +2026/03/22 08:13:57 [metric_collector] {"stage_name":"metric_collector","events_processed":7944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1588.8,"last_update":"2026-03-22T08:13:52.369206488Z"} +2026/03/22 08:13:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:13:52.3793864Z"} +2026/03/22 08:13:57 [detection_layer] {"stage_name":"detection_layer","events_processed":264,"events_dropped":0,"avg_latency_ms":13.406157783489,"throughput_eps":0,"last_update":"2026-03-22T08:13:52.479552362Z"} +2026/03/22 08:13:57 [transform_engine] {"stage_name":"transform_engine","events_processed":264,"events_dropped":0,"avg_latency_ms":109.12308506304971,"throughput_eps":0,"last_update":"2026-03-22T08:13:52.479528706Z"} +2026/03/22 08:13:57 ───────────────────────────────────────────────── +2026/03/22 08:14:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:14:02 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:14:02.368245009Z"} +2026/03/22 08:14:02 [metric_collector] {"stage_name":"metric_collector","events_processed":7954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1590.8,"last_update":"2026-03-22T08:14:02.368665485Z"} +2026/03/22 08:14:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:13:57.377613876Z"} +2026/03/22 08:14:02 [detection_layer] {"stage_name":"detection_layer","events_processed":264,"events_dropped":0,"avg_latency_ms":13.406157783489,"throughput_eps":0,"last_update":"2026-03-22T08:13:57.479823322Z"} +2026/03/22 08:14:02 [transform_engine] {"stage_name":"transform_engine","events_processed":265,"events_dropped":0,"avg_latency_ms":101.31292905043978,"throughput_eps":0,"last_update":"2026-03-22T08:13:57.549875989Z"} +2026/03/22 08:14:02 ───────────────────────────────────────────────── +2026/03/22 08:14:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:14:07 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:14:07.368094602Z"} +2026/03/22 08:14:07 [metric_collector] {"stage_name":"metric_collector","events_processed":7954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1590.8,"last_update":"2026-03-22T08:14:02.368665485Z"} +2026/03/22 08:14:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:14:02.387363043Z"} +2026/03/22 08:14:07 [detection_layer] {"stage_name":"detection_layer","events_processed":265,"events_dropped":0,"avg_latency_ms":14.045082626791201,"throughput_eps":0,"last_update":"2026-03-22T08:14:02.479083266Z"} +2026/03/22 08:14:07 [transform_engine] {"stage_name":"transform_engine","events_processed":265,"events_dropped":0,"avg_latency_ms":101.31292905043978,"throughput_eps":0,"last_update":"2026-03-22T08:14:02.479058198Z"} +2026/03/22 08:14:07 ───────────────────────────────────────────────── +2026/03/22 08:14:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:14:12 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:14:07.368094602Z"} +2026/03/22 08:14:12 [metric_collector] {"stage_name":"metric_collector","events_processed":7959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1591.8,"last_update":"2026-03-22T08:14:07.368480612Z"} +2026/03/22 08:14:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:14:07.376983119Z"} +2026/03/22 08:14:12 [detection_layer] {"stage_name":"detection_layer","events_processed":265,"events_dropped":0,"avg_latency_ms":14.045082626791201,"throughput_eps":0,"last_update":"2026-03-22T08:14:07.479222242Z"} +2026/03/22 08:14:12 [transform_engine] {"stage_name":"transform_engine","events_processed":265,"events_dropped":0,"avg_latency_ms":101.31292905043978,"throughput_eps":0,"last_update":"2026-03-22T08:14:07.479193397Z"} +2026/03/22 08:14:12 ───────────────────────────────────────────────── +Saved state: 11 clusters, 13515 messages, reason: none +2026/03/22 08:14:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:14:17 [log_collector] {"stage_name":"log_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T08:14:12.368523877Z"} +2026/03/22 08:14:17 [metric_collector] {"stage_name":"metric_collector","events_processed":7964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1592.8,"last_update":"2026-03-22T08:14:12.368405701Z"} +2026/03/22 08:14:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:14:12.377643478Z"} +2026/03/22 08:14:17 [detection_layer] {"stage_name":"detection_layer","events_processed":265,"events_dropped":0,"avg_latency_ms":14.045082626791201,"throughput_eps":0,"last_update":"2026-03-22T08:14:12.479892921Z"} +2026/03/22 08:14:17 [transform_engine] {"stage_name":"transform_engine","events_processed":265,"events_dropped":0,"avg_latency_ms":101.31292905043978,"throughput_eps":0,"last_update":"2026-03-22T08:14:12.479846562Z"} +2026/03/22 08:14:17 ───────────────────────────────────────────────── +2026/03/22 08:14:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:14:22 [detection_layer] {"stage_name":"detection_layer","events_processed":265,"events_dropped":0,"avg_latency_ms":14.045082626791201,"throughput_eps":0,"last_update":"2026-03-22T08:14:17.4797499Z"} +2026/03/22 08:14:22 [transform_engine] {"stage_name":"transform_engine","events_processed":265,"events_dropped":0,"avg_latency_ms":101.31292905043978,"throughput_eps":0,"last_update":"2026-03-22T08:14:17.479774167Z"} +2026/03/22 08:14:22 [log_collector] {"stage_name":"log_collector","events_processed":13516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2703.2,"last_update":"2026-03-22T08:14:17.368226242Z"} +2026/03/22 08:14:22 [metric_collector] {"stage_name":"metric_collector","events_processed":7969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1593.8,"last_update":"2026-03-22T08:14:17.368605799Z"} +2026/03/22 08:14:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:14:17.3785564Z"} +2026/03/22 08:14:22 ───────────────────────────────────────────────── +2026/03/22 08:14:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:14:27 [log_collector] {"stage_name":"log_collector","events_processed":13521,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2704.2,"last_update":"2026-03-22T08:14:22.36843388Z"} +2026/03/22 08:14:27 [metric_collector] {"stage_name":"metric_collector","events_processed":7974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1594.8,"last_update":"2026-03-22T08:14:22.368755747Z"} +2026/03/22 08:14:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:14:22.375324199Z"} +2026/03/22 08:14:27 [detection_layer] {"stage_name":"detection_layer","events_processed":265,"events_dropped":0,"avg_latency_ms":14.045082626791201,"throughput_eps":0,"last_update":"2026-03-22T08:14:22.4795511Z"} +2026/03/22 08:14:27 [transform_engine] {"stage_name":"transform_engine","events_processed":265,"events_dropped":0,"avg_latency_ms":101.31292905043978,"throughput_eps":0,"last_update":"2026-03-22T08:14:22.479575727Z"} +2026/03/22 08:14:27 ───────────────────────────────────────────────── +2026/03/22 08:14:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:14:32 [log_collector] {"stage_name":"log_collector","events_processed":13534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2706.8,"last_update":"2026-03-22T08:14:27.368585854Z"} +2026/03/22 08:14:32 [metric_collector] {"stage_name":"metric_collector","events_processed":7979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1595.8,"last_update":"2026-03-22T08:14:27.369091903Z"} +2026/03/22 08:14:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:14:27.376025495Z"} +2026/03/22 08:14:32 [detection_layer] {"stage_name":"detection_layer","events_processed":265,"events_dropped":0,"avg_latency_ms":14.045082626791201,"throughput_eps":0,"last_update":"2026-03-22T08:14:27.479216571Z"} +2026/03/22 08:14:32 [transform_engine] {"stage_name":"transform_engine","events_processed":266,"events_dropped":0,"avg_latency_ms":101.58038504035183,"throughput_eps":0,"last_update":"2026-03-22T08:14:27.581914452Z"} +2026/03/22 08:14:32 ───────────────────────────────────────────────── +2026/03/22 08:14:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:14:37 [log_collector] {"stage_name":"log_collector","events_processed":13535,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2707,"last_update":"2026-03-22T08:14:32.368293149Z"} +2026/03/22 08:14:37 [metric_collector] {"stage_name":"metric_collector","events_processed":7984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1596.8,"last_update":"2026-03-22T08:14:32.368660042Z"} +2026/03/22 08:14:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:14:32.375142129Z"} +2026/03/22 08:14:37 [detection_layer] {"stage_name":"detection_layer","events_processed":266,"events_dropped":0,"avg_latency_ms":13.74077030143296,"throughput_eps":0,"last_update":"2026-03-22T08:14:32.479400129Z"} +2026/03/22 08:14:37 [transform_engine] {"stage_name":"transform_engine","events_processed":266,"events_dropped":0,"avg_latency_ms":101.58038504035183,"throughput_eps":0,"last_update":"2026-03-22T08:14:32.479381705Z"} +2026/03/22 08:14:37 ───────────────────────────────────────────────── +2026/03/22 08:14:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:14:42 [metric_collector] {"stage_name":"metric_collector","events_processed":7989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1597.8,"last_update":"2026-03-22T08:14:37.36823176Z"} +2026/03/22 08:14:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:14:37.37420908Z"} +2026/03/22 08:14:42 [detection_layer] {"stage_name":"detection_layer","events_processed":266,"events_dropped":0,"avg_latency_ms":13.74077030143296,"throughput_eps":0,"last_update":"2026-03-22T08:14:37.479497383Z"} +2026/03/22 08:14:42 [transform_engine] {"stage_name":"transform_engine","events_processed":266,"events_dropped":0,"avg_latency_ms":101.58038504035183,"throughput_eps":0,"last_update":"2026-03-22T08:14:37.479440675Z"} +2026/03/22 08:14:42 [log_collector] {"stage_name":"log_collector","events_processed":13535,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2707,"last_update":"2026-03-22T08:14:37.367973355Z"} +2026/03/22 08:14:42 ───────────────────────────────────────────────── +2026/03/22 08:14:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:14:47 [log_collector] {"stage_name":"log_collector","events_processed":13535,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2707,"last_update":"2026-03-22T08:14:42.368472558Z"} +2026/03/22 08:14:47 [metric_collector] {"stage_name":"metric_collector","events_processed":7994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1598.8,"last_update":"2026-03-22T08:14:42.368722637Z"} +2026/03/22 08:14:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:14:42.376305103Z"} +2026/03/22 08:14:47 [detection_layer] {"stage_name":"detection_layer","events_processed":266,"events_dropped":0,"avg_latency_ms":13.74077030143296,"throughput_eps":0,"last_update":"2026-03-22T08:14:42.479467703Z"} +2026/03/22 08:14:47 [transform_engine] {"stage_name":"transform_engine","events_processed":266,"events_dropped":0,"avg_latency_ms":101.58038504035183,"throughput_eps":0,"last_update":"2026-03-22T08:14:42.479479216Z"} +2026/03/22 08:14:47 ───────────────────────────────────────────────── +2026/03/22 08:14:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:14:52 [log_collector] {"stage_name":"log_collector","events_processed":13535,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2707,"last_update":"2026-03-22T08:14:47.368023482Z"} +2026/03/22 08:14:52 [metric_collector] {"stage_name":"metric_collector","events_processed":7999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1599.8,"last_update":"2026-03-22T08:14:47.368309751Z"} +2026/03/22 08:14:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:14:47.374658372Z"} +2026/03/22 08:14:52 [detection_layer] {"stage_name":"detection_layer","events_processed":266,"events_dropped":0,"avg_latency_ms":13.74077030143296,"throughput_eps":0,"last_update":"2026-03-22T08:14:47.479846584Z"} +2026/03/22 08:14:52 [transform_engine] {"stage_name":"transform_engine","events_processed":266,"events_dropped":0,"avg_latency_ms":101.58038504035183,"throughput_eps":0,"last_update":"2026-03-22T08:14:47.479856713Z"} +2026/03/22 08:14:52 ───────────────────────────────────────────────── +2026/03/22 08:14:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:14:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:14:52.375615792Z"} +2026/03/22 08:14:57 [detection_layer] {"stage_name":"detection_layer","events_processed":266,"events_dropped":0,"avg_latency_ms":13.74077030143296,"throughput_eps":0,"last_update":"2026-03-22T08:14:52.479803747Z"} +2026/03/22 08:14:57 [transform_engine] {"stage_name":"transform_engine","events_processed":266,"events_dropped":0,"avg_latency_ms":101.58038504035183,"throughput_eps":0,"last_update":"2026-03-22T08:14:52.479816151Z"} +2026/03/22 08:14:57 [log_collector] {"stage_name":"log_collector","events_processed":13535,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2707,"last_update":"2026-03-22T08:14:52.368438554Z"} +2026/03/22 08:14:57 [metric_collector] {"stage_name":"metric_collector","events_processed":8004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1600.8,"last_update":"2026-03-22T08:14:52.368806489Z"} +2026/03/22 08:14:57 ───────────────────────────────────────────────── +2026/03/22 08:15:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:15:02 [metric_collector] {"stage_name":"metric_collector","events_processed":8009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1601.8,"last_update":"2026-03-22T08:14:57.368426271Z"} +2026/03/22 08:15:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3206,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:14:57.375225757Z"} +2026/03/22 08:15:02 [detection_layer] {"stage_name":"detection_layer","events_processed":266,"events_dropped":0,"avg_latency_ms":13.74077030143296,"throughput_eps":0,"last_update":"2026-03-22T08:14:57.479523301Z"} +2026/03/22 08:15:02 [transform_engine] {"stage_name":"transform_engine","events_processed":267,"events_dropped":0,"avg_latency_ms":101.49879163228147,"throughput_eps":0,"last_update":"2026-03-22T08:14:57.580660272Z"} +2026/03/22 08:15:02 [log_collector] {"stage_name":"log_collector","events_processed":13535,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2707,"last_update":"2026-03-22T08:14:57.368308436Z"} +2026/03/22 08:15:02 ───────────────────────────────────────────────── +2026/03/22 08:15:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:15:07 [detection_layer] {"stage_name":"detection_layer","events_processed":267,"events_dropped":0,"avg_latency_ms":13.46226924114637,"throughput_eps":0,"last_update":"2026-03-22T08:15:02.479537497Z"} +2026/03/22 08:15:07 [transform_engine] {"stage_name":"transform_engine","events_processed":267,"events_dropped":0,"avg_latency_ms":101.49879163228147,"throughput_eps":0,"last_update":"2026-03-22T08:15:02.479548157Z"} +2026/03/22 08:15:07 [log_collector] {"stage_name":"log_collector","events_processed":13535,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2707,"last_update":"2026-03-22T08:15:07.368532803Z"} +2026/03/22 08:15:07 [metric_collector] {"stage_name":"metric_collector","events_processed":8014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1602.8,"last_update":"2026-03-22T08:15:02.369119197Z"} +2026/03/22 08:15:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:15:02.375317752Z"} +2026/03/22 08:15:07 ───────────────────────────────────────────────── +2026/03/22 08:15:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:15:12 [log_collector] {"stage_name":"log_collector","events_processed":13535,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2707,"last_update":"2026-03-22T08:15:07.368532803Z"} +2026/03/22 08:15:12 [metric_collector] {"stage_name":"metric_collector","events_processed":8019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1603.8,"last_update":"2026-03-22T08:15:07.368868907Z"} +2026/03/22 08:15:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3210,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:15:07.375636311Z"} +2026/03/22 08:15:12 [detection_layer] {"stage_name":"detection_layer","events_processed":267,"events_dropped":0,"avg_latency_ms":13.46226924114637,"throughput_eps":0,"last_update":"2026-03-22T08:15:07.479849032Z"} +2026/03/22 08:15:12 [transform_engine] {"stage_name":"transform_engine","events_processed":267,"events_dropped":0,"avg_latency_ms":101.49879163228147,"throughput_eps":0,"last_update":"2026-03-22T08:15:07.479860976Z"} +2026/03/22 08:15:12 ───────────────────────────────────────────────── +Saved state: 11 clusters, 13536 messages, reason: none +2026/03/22 08:15:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:15:17 [transform_engine] {"stage_name":"transform_engine","events_processed":267,"events_dropped":0,"avg_latency_ms":101.49879163228147,"throughput_eps":0,"last_update":"2026-03-22T08:15:12.479586009Z"} +2026/03/22 08:15:17 [log_collector] {"stage_name":"log_collector","events_processed":13535,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2707,"last_update":"2026-03-22T08:15:12.367953133Z"} +2026/03/22 08:15:17 [metric_collector] {"stage_name":"metric_collector","events_processed":8024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1604.8,"last_update":"2026-03-22T08:15:12.36828079Z"} +2026/03/22 08:15:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:15:12.374343635Z"} +2026/03/22 08:15:17 [detection_layer] {"stage_name":"detection_layer","events_processed":267,"events_dropped":0,"avg_latency_ms":13.46226924114637,"throughput_eps":0,"last_update":"2026-03-22T08:15:12.479625825Z"} +2026/03/22 08:15:17 ───────────────────────────────────────────────── +2026/03/22 08:15:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:15:22 [transform_engine] {"stage_name":"transform_engine","events_processed":267,"events_dropped":0,"avg_latency_ms":101.49879163228147,"throughput_eps":0,"last_update":"2026-03-22T08:15:17.479501307Z"} +2026/03/22 08:15:22 [log_collector] {"stage_name":"log_collector","events_processed":13542,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2708.4,"last_update":"2026-03-22T08:15:22.368248121Z"} +2026/03/22 08:15:22 [metric_collector] {"stage_name":"metric_collector","events_processed":8029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1605.8,"last_update":"2026-03-22T08:15:17.368280811Z"} +2026/03/22 08:15:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:15:17.375293525Z"} +2026/03/22 08:15:22 [detection_layer] {"stage_name":"detection_layer","events_processed":267,"events_dropped":0,"avg_latency_ms":13.46226924114637,"throughput_eps":0,"last_update":"2026-03-22T08:15:17.47955004Z"} +2026/03/22 08:15:22 ───────────────────────────────────────────────── +2026/03/22 08:15:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:15:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:15:22.375422845Z"} +2026/03/22 08:15:27 [detection_layer] {"stage_name":"detection_layer","events_processed":267,"events_dropped":0,"avg_latency_ms":13.46226924114637,"throughput_eps":0,"last_update":"2026-03-22T08:15:22.479619696Z"} +2026/03/22 08:15:27 [transform_engine] {"stage_name":"transform_engine","events_processed":267,"events_dropped":0,"avg_latency_ms":101.49879163228147,"throughput_eps":0,"last_update":"2026-03-22T08:15:22.479580931Z"} +2026/03/22 08:15:27 [log_collector] {"stage_name":"log_collector","events_processed":13542,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2708.4,"last_update":"2026-03-22T08:15:27.368521229Z"} +2026/03/22 08:15:27 [metric_collector] {"stage_name":"metric_collector","events_processed":8034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1606.8,"last_update":"2026-03-22T08:15:22.368481438Z"} +2026/03/22 08:15:27 ───────────────────────────────────────────────── +2026/03/22 08:15:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:15:32 [detection_layer] {"stage_name":"detection_layer","events_processed":267,"events_dropped":0,"avg_latency_ms":13.46226924114637,"throughput_eps":0,"last_update":"2026-03-22T08:15:27.478984604Z"} +2026/03/22 08:15:32 [transform_engine] {"stage_name":"transform_engine","events_processed":268,"events_dropped":0,"avg_latency_ms":102.19397930582518,"throughput_eps":0,"last_update":"2026-03-22T08:15:27.584001334Z"} +2026/03/22 08:15:32 [log_collector] {"stage_name":"log_collector","events_processed":13544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2708.8,"last_update":"2026-03-22T08:15:32.368516147Z"} +2026/03/22 08:15:32 [metric_collector] {"stage_name":"metric_collector","events_processed":8039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1607.8,"last_update":"2026-03-22T08:15:27.368874155Z"} +2026/03/22 08:15:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:15:27.377866601Z"} +2026/03/22 08:15:32 ───────────────────────────────────────────────── +2026/03/22 08:15:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:15:37 [metric_collector] {"stage_name":"metric_collector","events_processed":8044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1608.8,"last_update":"2026-03-22T08:15:32.369005806Z"} +2026/03/22 08:15:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:15:32.377273814Z"} +2026/03/22 08:15:37 [detection_layer] {"stage_name":"detection_layer","events_processed":268,"events_dropped":0,"avg_latency_ms":14.131961992917097,"throughput_eps":0,"last_update":"2026-03-22T08:15:32.479471464Z"} +2026/03/22 08:15:37 [transform_engine] {"stage_name":"transform_engine","events_processed":268,"events_dropped":0,"avg_latency_ms":102.19397930582518,"throughput_eps":0,"last_update":"2026-03-22T08:15:32.479492365Z"} +2026/03/22 08:15:37 [log_collector] {"stage_name":"log_collector","events_processed":13547,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2709.4,"last_update":"2026-03-22T08:15:37.368437776Z"} +2026/03/22 08:15:37 ───────────────────────────────────────────────── +2026/03/22 08:15:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:15:42 [transform_engine] {"stage_name":"transform_engine","events_processed":268,"events_dropped":0,"avg_latency_ms":102.19397930582518,"throughput_eps":0,"last_update":"2026-03-22T08:15:37.479542809Z"} +2026/03/22 08:15:42 [log_collector] {"stage_name":"log_collector","events_processed":13547,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2709.4,"last_update":"2026-03-22T08:15:37.368437776Z"} +2026/03/22 08:15:42 [metric_collector] {"stage_name":"metric_collector","events_processed":8049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1609.8,"last_update":"2026-03-22T08:15:37.368891645Z"} +2026/03/22 08:15:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3222,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:15:37.378371024Z"} +2026/03/22 08:15:42 [detection_layer] {"stage_name":"detection_layer","events_processed":268,"events_dropped":0,"avg_latency_ms":14.131961992917097,"throughput_eps":0,"last_update":"2026-03-22T08:15:37.479582606Z"} +2026/03/22 08:15:42 ───────────────────────────────────────────────── +2026/03/22 08:15:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:15:47 [metric_collector] {"stage_name":"metric_collector","events_processed":8054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1610.8,"last_update":"2026-03-22T08:15:42.36844546Z"} +2026/03/22 08:15:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:15:42.375023681Z"} +2026/03/22 08:15:47 [detection_layer] {"stage_name":"detection_layer","events_processed":268,"events_dropped":0,"avg_latency_ms":14.131961992917097,"throughput_eps":0,"last_update":"2026-03-22T08:15:42.479257242Z"} +2026/03/22 08:15:47 [transform_engine] {"stage_name":"transform_engine","events_processed":268,"events_dropped":0,"avg_latency_ms":102.19397930582518,"throughput_eps":0,"last_update":"2026-03-22T08:15:42.479295636Z"} +2026/03/22 08:15:47 [log_collector] {"stage_name":"log_collector","events_processed":13547,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2709.4,"last_update":"2026-03-22T08:15:47.367993135Z"} +2026/03/22 08:15:47 ───────────────────────────────────────────────── +2026/03/22 08:15:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:15:52 [log_collector] {"stage_name":"log_collector","events_processed":13547,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2709.4,"last_update":"2026-03-22T08:15:52.368133117Z"} +2026/03/22 08:15:52 [metric_collector] {"stage_name":"metric_collector","events_processed":8059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1611.8,"last_update":"2026-03-22T08:15:47.368315703Z"} +2026/03/22 08:15:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:15:47.377073409Z"} +2026/03/22 08:15:52 [detection_layer] {"stage_name":"detection_layer","events_processed":268,"events_dropped":0,"avg_latency_ms":14.131961992917097,"throughput_eps":0,"last_update":"2026-03-22T08:15:47.479295576Z"} +2026/03/22 08:15:52 [transform_engine] {"stage_name":"transform_engine","events_processed":268,"events_dropped":0,"avg_latency_ms":102.19397930582518,"throughput_eps":0,"last_update":"2026-03-22T08:15:47.479268204Z"} +2026/03/22 08:15:52 ───────────────────────────────────────────────── +2026/03/22 08:15:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:15:57 [metric_collector] {"stage_name":"metric_collector","events_processed":8064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1612.8,"last_update":"2026-03-22T08:15:52.36852124Z"} +2026/03/22 08:15:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:15:52.377248338Z"} +2026/03/22 08:15:57 [detection_layer] {"stage_name":"detection_layer","events_processed":268,"events_dropped":0,"avg_latency_ms":14.131961992917097,"throughput_eps":0,"last_update":"2026-03-22T08:15:52.479393438Z"} +2026/03/22 08:15:57 [transform_engine] {"stage_name":"transform_engine","events_processed":268,"events_dropped":0,"avg_latency_ms":102.19397930582518,"throughput_eps":0,"last_update":"2026-03-22T08:15:52.479412353Z"} +2026/03/22 08:15:57 [log_collector] {"stage_name":"log_collector","events_processed":13547,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2709.4,"last_update":"2026-03-22T08:15:52.368133117Z"} +2026/03/22 08:15:57 ───────────────────────────────────────────────── +2026/03/22 08:16:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:16:02 [metric_collector] {"stage_name":"metric_collector","events_processed":8069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1613.8,"last_update":"2026-03-22T08:15:57.368692074Z"} +2026/03/22 08:16:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:15:57.378297254Z"} +2026/03/22 08:16:02 [detection_layer] {"stage_name":"detection_layer","events_processed":268,"events_dropped":0,"avg_latency_ms":14.131961992917097,"throughput_eps":0,"last_update":"2026-03-22T08:15:57.479492984Z"} +2026/03/22 08:16:02 [transform_engine] {"stage_name":"transform_engine","events_processed":269,"events_dropped":0,"avg_latency_ms":519.8399184446602,"throughput_eps":0,"last_update":"2026-03-22T08:15:59.669947819Z"} +2026/03/22 08:16:02 [log_collector] {"stage_name":"log_collector","events_processed":13547,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2709.4,"last_update":"2026-03-22T08:15:57.368416256Z"} +2026/03/22 08:16:02 ───────────────────────────────────────────────── +2026/03/22 08:16:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:16:07 [log_collector] {"stage_name":"log_collector","events_processed":13547,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2709.4,"last_update":"2026-03-22T08:16:07.368397816Z"} +2026/03/22 08:16:07 [metric_collector] {"stage_name":"metric_collector","events_processed":8074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1614.8,"last_update":"2026-03-22T08:16:02.368375564Z"} +2026/03/22 08:16:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:16:02.376694179Z"} +2026/03/22 08:16:07 [detection_layer] {"stage_name":"detection_layer","events_processed":269,"events_dropped":0,"avg_latency_ms":14.710742794333678,"throughput_eps":0,"last_update":"2026-03-22T08:16:02.47991529Z"} +2026/03/22 08:16:07 [transform_engine] {"stage_name":"transform_engine","events_processed":269,"events_dropped":0,"avg_latency_ms":519.8399184446602,"throughput_eps":0,"last_update":"2026-03-22T08:16:02.479887326Z"} +2026/03/22 08:16:07 ───────────────────────────────────────────────── +2026/03/22 08:16:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:16:12 [log_collector] {"stage_name":"log_collector","events_processed":13547,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2709.4,"last_update":"2026-03-22T08:16:07.368397816Z"} +2026/03/22 08:16:12 [metric_collector] {"stage_name":"metric_collector","events_processed":8079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1615.8,"last_update":"2026-03-22T08:16:07.368866985Z"} +2026/03/22 08:16:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:16:07.377882064Z"} +2026/03/22 08:16:12 [detection_layer] {"stage_name":"detection_layer","events_processed":269,"events_dropped":0,"avg_latency_ms":14.710742794333678,"throughput_eps":0,"last_update":"2026-03-22T08:16:07.479001008Z"} +2026/03/22 08:16:12 [transform_engine] {"stage_name":"transform_engine","events_processed":269,"events_dropped":0,"avg_latency_ms":519.8399184446602,"throughput_eps":0,"last_update":"2026-03-22T08:16:07.479052456Z"} +2026/03/22 08:16:12 ───────────────────────────────────────────────── +2026/03/22 08:16:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:16:17 [transform_engine] {"stage_name":"transform_engine","events_processed":269,"events_dropped":0,"avg_latency_ms":519.8399184446602,"throughput_eps":0,"last_update":"2026-03-22T08:16:12.478890026Z"} +2026/03/22 08:16:17 [log_collector] {"stage_name":"log_collector","events_processed":13547,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2709.4,"last_update":"2026-03-22T08:16:12.368570829Z"} +2026/03/22 08:16:17 [metric_collector] {"stage_name":"metric_collector","events_processed":8084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1616.8,"last_update":"2026-03-22T08:16:12.368968411Z"} +2026/03/22 08:16:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:16:12.37775868Z"} +2026/03/22 08:16:17 [detection_layer] {"stage_name":"detection_layer","events_processed":269,"events_dropped":0,"avg_latency_ms":14.710742794333678,"throughput_eps":0,"last_update":"2026-03-22T08:16:12.478944591Z"} +2026/03/22 08:16:17 ───────────────────────────────────────────────── +2026/03/22 08:16:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:16:22 [log_collector] {"stage_name":"log_collector","events_processed":13547,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2709.4,"last_update":"2026-03-22T08:16:17.367960072Z"} +2026/03/22 08:16:22 [metric_collector] {"stage_name":"metric_collector","events_processed":8089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1617.8,"last_update":"2026-03-22T08:16:17.368267321Z"} +2026/03/22 08:16:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:16:17.377022732Z"} +2026/03/22 08:16:22 [detection_layer] {"stage_name":"detection_layer","events_processed":269,"events_dropped":0,"avg_latency_ms":14.710742794333678,"throughput_eps":0,"last_update":"2026-03-22T08:16:17.479243737Z"} +2026/03/22 08:16:22 [transform_engine] {"stage_name":"transform_engine","events_processed":269,"events_dropped":0,"avg_latency_ms":519.8399184446602,"throughput_eps":0,"last_update":"2026-03-22T08:16:17.479274285Z"} +2026/03/22 08:16:22 ───────────────────────────────────────────────── +2026/03/22 08:16:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:16:27 [detection_layer] {"stage_name":"detection_layer","events_processed":269,"events_dropped":0,"avg_latency_ms":14.710742794333678,"throughput_eps":0,"last_update":"2026-03-22T08:16:22.479856396Z"} +2026/03/22 08:16:27 [transform_engine] {"stage_name":"transform_engine","events_processed":269,"events_dropped":0,"avg_latency_ms":519.8399184446602,"throughput_eps":0,"last_update":"2026-03-22T08:16:22.479828603Z"} +2026/03/22 08:16:27 [log_collector] {"stage_name":"log_collector","events_processed":13547,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2709.4,"last_update":"2026-03-22T08:16:22.367952203Z"} +2026/03/22 08:16:27 [metric_collector] {"stage_name":"metric_collector","events_processed":8094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1618.8,"last_update":"2026-03-22T08:16:22.368344906Z"} +2026/03/22 08:16:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:16:22.37763963Z"} +2026/03/22 08:16:27 ───────────────────────────────────────────────── +2026/03/22 08:16:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:16:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:16:27.375215075Z"} +2026/03/22 08:16:32 [detection_layer] {"stage_name":"detection_layer","events_processed":269,"events_dropped":0,"avg_latency_ms":14.710742794333678,"throughput_eps":0,"last_update":"2026-03-22T08:16:27.47945683Z"} +2026/03/22 08:16:32 [transform_engine] {"stage_name":"transform_engine","events_processed":270,"events_dropped":0,"avg_latency_ms":427.95326355572814,"throughput_eps":0,"last_update":"2026-03-22T08:16:27.539848325Z"} +2026/03/22 08:16:32 [log_collector] {"stage_name":"log_collector","events_processed":13547,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2709.4,"last_update":"2026-03-22T08:16:27.368118712Z"} +2026/03/22 08:16:32 [metric_collector] {"stage_name":"metric_collector","events_processed":8099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1619.8,"last_update":"2026-03-22T08:16:27.368319266Z"} +2026/03/22 08:16:32 ───────────────────────────────────────────────── +2026/03/22 08:16:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:16:37 [log_collector] {"stage_name":"log_collector","events_processed":13547,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2709.4,"last_update":"2026-03-22T08:16:32.367963726Z"} +2026/03/22 08:16:37 [metric_collector] {"stage_name":"metric_collector","events_processed":8104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1620.8,"last_update":"2026-03-22T08:16:32.368252028Z"} +2026/03/22 08:16:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:16:32.377250315Z"} +2026/03/22 08:16:37 [detection_layer] {"stage_name":"detection_layer","events_processed":270,"events_dropped":0,"avg_latency_ms":14.271717235466943,"throughput_eps":0,"last_update":"2026-03-22T08:16:32.479440089Z"} +2026/03/22 08:16:37 [transform_engine] {"stage_name":"transform_engine","events_processed":270,"events_dropped":0,"avg_latency_ms":427.95326355572814,"throughput_eps":0,"last_update":"2026-03-22T08:16:32.479463003Z"} +2026/03/22 08:16:37 ───────────────────────────────────────────────── +2026/03/22 08:16:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:16:42 [log_collector] {"stage_name":"log_collector","events_processed":13547,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2709.4,"last_update":"2026-03-22T08:16:37.368257011Z"} +2026/03/22 08:16:42 [metric_collector] {"stage_name":"metric_collector","events_processed":8109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1621.8,"last_update":"2026-03-22T08:16:37.368528712Z"} +2026/03/22 08:16:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3246,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:16:37.377250018Z"} +2026/03/22 08:16:42 [detection_layer] {"stage_name":"detection_layer","events_processed":270,"events_dropped":0,"avg_latency_ms":14.271717235466943,"throughput_eps":0,"last_update":"2026-03-22T08:16:37.479935711Z"} +2026/03/22 08:16:42 [transform_engine] {"stage_name":"transform_engine","events_processed":270,"events_dropped":0,"avg_latency_ms":427.95326355572814,"throughput_eps":0,"last_update":"2026-03-22T08:16:37.478848209Z"} +2026/03/22 08:16:42 ───────────────────────────────────────────────── +Saved state: 11 clusters, 13548 messages, reason: none +2026/03/22 08:16:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:16:47 [detection_layer] {"stage_name":"detection_layer","events_processed":270,"events_dropped":0,"avg_latency_ms":14.271717235466943,"throughput_eps":0,"last_update":"2026-03-22T08:16:42.47971835Z"} +2026/03/22 08:16:47 [transform_engine] {"stage_name":"transform_engine","events_processed":270,"events_dropped":0,"avg_latency_ms":427.95326355572814,"throughput_eps":0,"last_update":"2026-03-22T08:16:42.479739651Z"} +2026/03/22 08:16:47 [log_collector] {"stage_name":"log_collector","events_processed":13547,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2709.4,"last_update":"2026-03-22T08:16:42.367976228Z"} +2026/03/22 08:16:47 [metric_collector] {"stage_name":"metric_collector","events_processed":8114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1622.8,"last_update":"2026-03-22T08:16:42.368476967Z"} +2026/03/22 08:16:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:16:42.377462319Z"} +2026/03/22 08:16:47 ───────────────────────────────────────────────── +2026/03/22 08:16:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:16:52 [log_collector] {"stage_name":"log_collector","events_processed":13557,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2711.4,"last_update":"2026-03-22T08:16:47.368286991Z"} +2026/03/22 08:16:52 [metric_collector] {"stage_name":"metric_collector","events_processed":8119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1623.8,"last_update":"2026-03-22T08:16:47.368635528Z"} +2026/03/22 08:16:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:16:47.377039407Z"} +2026/03/22 08:16:52 [detection_layer] {"stage_name":"detection_layer","events_processed":270,"events_dropped":0,"avg_latency_ms":14.271717235466943,"throughput_eps":0,"last_update":"2026-03-22T08:16:47.479285197Z"} +2026/03/22 08:16:52 [transform_engine] {"stage_name":"transform_engine","events_processed":270,"events_dropped":0,"avg_latency_ms":427.95326355572814,"throughput_eps":0,"last_update":"2026-03-22T08:16:47.479236554Z"} +2026/03/22 08:16:52 ───────────────────────────────────────────────── +2026/03/22 08:16:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:16:57 [detection_layer] {"stage_name":"detection_layer","events_processed":270,"events_dropped":0,"avg_latency_ms":14.271717235466943,"throughput_eps":0,"last_update":"2026-03-22T08:16:52.479486505Z"} +2026/03/22 08:16:57 [transform_engine] {"stage_name":"transform_engine","events_processed":270,"events_dropped":0,"avg_latency_ms":427.95326355572814,"throughput_eps":0,"last_update":"2026-03-22T08:16:52.479447921Z"} +2026/03/22 08:16:57 [log_collector] {"stage_name":"log_collector","events_processed":13558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2711.6,"last_update":"2026-03-22T08:16:52.368453702Z"} +2026/03/22 08:16:57 [metric_collector] {"stage_name":"metric_collector","events_processed":8124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1624.8,"last_update":"2026-03-22T08:16:52.368652062Z"} +2026/03/22 08:16:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:16:52.37532228Z"} +2026/03/22 08:16:57 ───────────────────────────────────────────────── +2026/03/22 08:16:58 [ANOMALY] time=2026-03-22T08:16:58Z score=0.7823 method=SEAD details=MAD!:w=0.44,s=0.99 RRCF-fast:w=0.15,s=0.42 RRCF-mid:w=0.12,s=0.65 RRCF-slow:w=0.11,s=0.76 COPOD!:w=0.18,s=0.68 +2026/03/22 08:17:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:17:02 [log_collector] {"stage_name":"log_collector","events_processed":13558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2711.6,"last_update":"2026-03-22T08:16:57.368733764Z"} +2026/03/22 08:17:02 [metric_collector] {"stage_name":"metric_collector","events_processed":8129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1625.8,"last_update":"2026-03-22T08:16:57.369160992Z"} +2026/03/22 08:17:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:16:57.378731155Z"} +2026/03/22 08:17:02 [detection_layer] {"stage_name":"detection_layer","events_processed":270,"events_dropped":0,"avg_latency_ms":14.271717235466943,"throughput_eps":0,"last_update":"2026-03-22T08:16:57.479968343Z"} +2026/03/22 08:17:02 [transform_engine] {"stage_name":"transform_engine","events_processed":271,"events_dropped":0,"avg_latency_ms":489.77997704458255,"throughput_eps":0,"last_update":"2026-03-22T08:16:58.215913476Z"} +2026/03/22 08:17:02 ───────────────────────────────────────────────── +2026/03/22 08:17:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:17:07 [log_collector] {"stage_name":"log_collector","events_processed":13558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2711.6,"last_update":"2026-03-22T08:17:02.368124395Z"} +2026/03/22 08:17:07 [metric_collector] {"stage_name":"metric_collector","events_processed":8134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1626.8,"last_update":"2026-03-22T08:17:02.368605177Z"} +2026/03/22 08:17:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:17:02.375109666Z"} +2026/03/22 08:17:07 [detection_layer] {"stage_name":"detection_layer","events_processed":271,"events_dropped":0,"avg_latency_ms":13.849033788373555,"throughput_eps":0,"last_update":"2026-03-22T08:17:02.479222593Z"} +2026/03/22 08:17:07 [transform_engine] {"stage_name":"transform_engine","events_processed":271,"events_dropped":0,"avg_latency_ms":489.77997704458255,"throughput_eps":0,"last_update":"2026-03-22T08:17:02.479281346Z"} +2026/03/22 08:17:07 ───────────────────────────────────────────────── +2026/03/22 08:17:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:17:12 [transform_engine] {"stage_name":"transform_engine","events_processed":271,"events_dropped":0,"avg_latency_ms":489.77997704458255,"throughput_eps":0,"last_update":"2026-03-22T08:17:07.479971969Z"} +2026/03/22 08:17:12 [log_collector] {"stage_name":"log_collector","events_processed":13567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2713.4,"last_update":"2026-03-22T08:17:07.368828656Z"} +2026/03/22 08:17:12 [metric_collector] {"stage_name":"metric_collector","events_processed":8139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1627.8,"last_update":"2026-03-22T08:17:07.3691861Z"} +2026/03/22 08:17:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:17:07.377543951Z"} +2026/03/22 08:17:12 [detection_layer] {"stage_name":"detection_layer","events_processed":271,"events_dropped":0,"avg_latency_ms":13.849033788373555,"throughput_eps":0,"last_update":"2026-03-22T08:17:07.479958142Z"} +2026/03/22 08:17:12 ───────────────────────────────────────────────── +2026/03/22 08:17:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:17:17 [log_collector] {"stage_name":"log_collector","events_processed":13569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2713.8,"last_update":"2026-03-22T08:17:12.368148897Z"} +2026/03/22 08:17:17 [metric_collector] {"stage_name":"metric_collector","events_processed":8144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1628.8,"last_update":"2026-03-22T08:17:12.368890557Z"} +2026/03/22 08:17:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:17:12.377130732Z"} +2026/03/22 08:17:17 [detection_layer] {"stage_name":"detection_layer","events_processed":271,"events_dropped":0,"avg_latency_ms":13.849033788373555,"throughput_eps":0,"last_update":"2026-03-22T08:17:12.479581375Z"} +2026/03/22 08:17:17 [transform_engine] {"stage_name":"transform_engine","events_processed":271,"events_dropped":0,"avg_latency_ms":489.77997704458255,"throughput_eps":0,"last_update":"2026-03-22T08:17:12.479534805Z"} +2026/03/22 08:17:17 ───────────────────────────────────────────────── +2026/03/22 08:17:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:17:22 [log_collector] {"stage_name":"log_collector","events_processed":13569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2713.8,"last_update":"2026-03-22T08:17:17.368581013Z"} +2026/03/22 08:17:22 [metric_collector] {"stage_name":"metric_collector","events_processed":8149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1629.8,"last_update":"2026-03-22T08:17:17.369082003Z"} +2026/03/22 08:17:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:17:17.379272613Z"} +2026/03/22 08:17:22 [detection_layer] {"stage_name":"detection_layer","events_processed":271,"events_dropped":0,"avg_latency_ms":13.849033788373555,"throughput_eps":0,"last_update":"2026-03-22T08:17:17.479647358Z"} +2026/03/22 08:17:22 [transform_engine] {"stage_name":"transform_engine","events_processed":271,"events_dropped":0,"avg_latency_ms":489.77997704458255,"throughput_eps":0,"last_update":"2026-03-22T08:17:17.479661496Z"} +2026/03/22 08:17:22 ───────────────────────────────────────────────── +2026/03/22 08:17:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:17:27 [log_collector] {"stage_name":"log_collector","events_processed":13569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2713.8,"last_update":"2026-03-22T08:17:27.368016947Z"} +2026/03/22 08:17:27 [metric_collector] {"stage_name":"metric_collector","events_processed":8154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1630.8,"last_update":"2026-03-22T08:17:22.368533673Z"} +2026/03/22 08:17:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:17:22.37825249Z"} +2026/03/22 08:17:27 [detection_layer] {"stage_name":"detection_layer","events_processed":271,"events_dropped":0,"avg_latency_ms":13.849033788373555,"throughput_eps":0,"last_update":"2026-03-22T08:17:22.479458067Z"} +2026/03/22 08:17:27 [transform_engine] {"stage_name":"transform_engine","events_processed":271,"events_dropped":0,"avg_latency_ms":489.77997704458255,"throughput_eps":0,"last_update":"2026-03-22T08:17:22.47947001Z"} +2026/03/22 08:17:27 ───────────────────────────────────────────────── +2026/03/22 08:17:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:17:32 [log_collector] {"stage_name":"log_collector","events_processed":13569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2713.8,"last_update":"2026-03-22T08:17:27.368016947Z"} +2026/03/22 08:17:32 [metric_collector] {"stage_name":"metric_collector","events_processed":8159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1631.8,"last_update":"2026-03-22T08:17:27.368269079Z"} +2026/03/22 08:17:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:17:27.377409429Z"} +2026/03/22 08:17:32 [detection_layer] {"stage_name":"detection_layer","events_processed":271,"events_dropped":0,"avg_latency_ms":13.849033788373555,"throughput_eps":0,"last_update":"2026-03-22T08:17:27.479763616Z"} +2026/03/22 08:17:32 [transform_engine] {"stage_name":"transform_engine","events_processed":272,"events_dropped":0,"avg_latency_ms":414.7568252356661,"throughput_eps":0,"last_update":"2026-03-22T08:17:27.59444625Z"} +2026/03/22 08:17:32 ───────────────────────────────────────────────── +2026/03/22 08:17:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:17:37 [log_collector] {"stage_name":"log_collector","events_processed":13569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2713.8,"last_update":"2026-03-22T08:17:37.367996807Z"} +2026/03/22 08:17:37 [metric_collector] {"stage_name":"metric_collector","events_processed":8164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1632.8,"last_update":"2026-03-22T08:17:32.369148232Z"} +2026/03/22 08:17:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:17:32.378125559Z"} +2026/03/22 08:17:37 [detection_layer] {"stage_name":"detection_layer","events_processed":272,"events_dropped":0,"avg_latency_ms":14.467042630698845,"throughput_eps":0,"last_update":"2026-03-22T08:17:32.479373476Z"} +2026/03/22 08:17:37 [transform_engine] {"stage_name":"transform_engine","events_processed":272,"events_dropped":0,"avg_latency_ms":414.7568252356661,"throughput_eps":0,"last_update":"2026-03-22T08:17:32.479387443Z"} +2026/03/22 08:17:37 ───────────────────────────────────────────────── +2026/03/22 08:17:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:17:42 [log_collector] {"stage_name":"log_collector","events_processed":13569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2713.8,"last_update":"2026-03-22T08:17:37.367996807Z"} +2026/03/22 08:17:42 [metric_collector] {"stage_name":"metric_collector","events_processed":8169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1633.8,"last_update":"2026-03-22T08:17:37.368533826Z"} +2026/03/22 08:17:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:17:37.376886496Z"} +2026/03/22 08:17:42 [detection_layer] {"stage_name":"detection_layer","events_processed":272,"events_dropped":0,"avg_latency_ms":14.467042630698845,"throughput_eps":0,"last_update":"2026-03-22T08:17:37.479089864Z"} +2026/03/22 08:17:42 [transform_engine] {"stage_name":"transform_engine","events_processed":272,"events_dropped":0,"avg_latency_ms":414.7568252356661,"throughput_eps":0,"last_update":"2026-03-22T08:17:37.479099512Z"} +2026/03/22 08:17:42 ───────────────────────────────────────────────── +2026/03/22 08:17:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:17:47 [detection_layer] {"stage_name":"detection_layer","events_processed":272,"events_dropped":0,"avg_latency_ms":14.467042630698845,"throughput_eps":0,"last_update":"2026-03-22T08:17:42.479256578Z"} +2026/03/22 08:17:47 [transform_engine] {"stage_name":"transform_engine","events_processed":272,"events_dropped":0,"avg_latency_ms":414.7568252356661,"throughput_eps":0,"last_update":"2026-03-22T08:17:42.479269803Z"} +2026/03/22 08:17:47 [log_collector] {"stage_name":"log_collector","events_processed":13569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2713.8,"last_update":"2026-03-22T08:17:42.36887304Z"} +2026/03/22 08:17:47 [metric_collector] {"stage_name":"metric_collector","events_processed":8174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1634.8,"last_update":"2026-03-22T08:17:42.369688983Z"} +2026/03/22 08:17:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:17:42.378885791Z"} +2026/03/22 08:17:47 ───────────────────────────────────────────────── +2026/03/22 08:17:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:17:52 [detection_layer] {"stage_name":"detection_layer","events_processed":272,"events_dropped":0,"avg_latency_ms":14.467042630698845,"throughput_eps":0,"last_update":"2026-03-22T08:17:47.479205857Z"} +2026/03/22 08:17:52 [transform_engine] {"stage_name":"transform_engine","events_processed":272,"events_dropped":0,"avg_latency_ms":414.7568252356661,"throughput_eps":0,"last_update":"2026-03-22T08:17:47.479225154Z"} +2026/03/22 08:17:52 [log_collector] {"stage_name":"log_collector","events_processed":13569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2713.8,"last_update":"2026-03-22T08:17:47.369408553Z"} +2026/03/22 08:17:52 [metric_collector] {"stage_name":"metric_collector","events_processed":8179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1635.8,"last_update":"2026-03-22T08:17:47.369418612Z"} +2026/03/22 08:17:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:17:47.375990221Z"} +2026/03/22 08:17:52 ───────────────────────────────────────────────── +Saved state: 11 clusters, 13570 messages, reason: none +2026/03/22 08:17:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:17:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3276,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:17:52.378477988Z"} +2026/03/22 08:17:57 [detection_layer] {"stage_name":"detection_layer","events_processed":272,"events_dropped":0,"avg_latency_ms":14.467042630698845,"throughput_eps":0,"last_update":"2026-03-22T08:17:52.479845303Z"} +2026/03/22 08:17:57 [transform_engine] {"stage_name":"transform_engine","events_processed":272,"events_dropped":0,"avg_latency_ms":414.7568252356661,"throughput_eps":0,"last_update":"2026-03-22T08:17:52.479962488Z"} +2026/03/22 08:17:57 [log_collector] {"stage_name":"log_collector","events_processed":13569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2713.8,"last_update":"2026-03-22T08:17:52.368809708Z"} +2026/03/22 08:17:57 [metric_collector] {"stage_name":"metric_collector","events_processed":8184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1636.8,"last_update":"2026-03-22T08:17:52.369722987Z"} +2026/03/22 08:17:57 ───────────────────────────────────────────────── +2026/03/22 08:18:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:18:02 [log_collector] {"stage_name":"log_collector","events_processed":13574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2714.8,"last_update":"2026-03-22T08:17:57.368403956Z"} +2026/03/22 08:18:02 [metric_collector] {"stage_name":"metric_collector","events_processed":8189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1637.8,"last_update":"2026-03-22T08:17:57.368610521Z"} +2026/03/22 08:18:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:17:57.377880088Z"} +2026/03/22 08:18:02 [detection_layer] {"stage_name":"detection_layer","events_processed":272,"events_dropped":0,"avg_latency_ms":14.467042630698845,"throughput_eps":0,"last_update":"2026-03-22T08:17:57.47921945Z"} +2026/03/22 08:18:02 [transform_engine] {"stage_name":"transform_engine","events_processed":273,"events_dropped":0,"avg_latency_ms":356.2130003885329,"throughput_eps":0,"last_update":"2026-03-22T08:17:57.601304001Z"} +2026/03/22 08:18:02 ───────────────────────────────────────────────── +2026/03/22 08:18:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:18:07 [log_collector] {"stage_name":"log_collector","events_processed":13574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2714.8,"last_update":"2026-03-22T08:18:02.368362605Z"} +2026/03/22 08:18:07 [metric_collector] {"stage_name":"metric_collector","events_processed":8194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1638.8,"last_update":"2026-03-22T08:18:02.368665595Z"} +2026/03/22 08:18:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:18:02.375221783Z"} +2026/03/22 08:18:07 [detection_layer] {"stage_name":"detection_layer","events_processed":273,"events_dropped":0,"avg_latency_ms":13.920720104559077,"throughput_eps":0,"last_update":"2026-03-22T08:18:02.479442125Z"} +2026/03/22 08:18:07 [transform_engine] {"stage_name":"transform_engine","events_processed":273,"events_dropped":0,"avg_latency_ms":356.2130003885329,"throughput_eps":0,"last_update":"2026-03-22T08:18:02.479459027Z"} +2026/03/22 08:18:07 ───────────────────────────────────────────────── +2026/03/22 08:18:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:18:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:18:07.378263654Z"} +2026/03/22 08:18:12 [detection_layer] {"stage_name":"detection_layer","events_processed":273,"events_dropped":0,"avg_latency_ms":13.920720104559077,"throughput_eps":0,"last_update":"2026-03-22T08:18:07.480522077Z"} +2026/03/22 08:18:12 [transform_engine] {"stage_name":"transform_engine","events_processed":273,"events_dropped":0,"avg_latency_ms":356.2130003885329,"throughput_eps":0,"last_update":"2026-03-22T08:18:07.480500956Z"} +2026/03/22 08:18:12 [log_collector] {"stage_name":"log_collector","events_processed":13574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2714.8,"last_update":"2026-03-22T08:18:12.368656828Z"} +2026/03/22 08:18:12 [metric_collector] {"stage_name":"metric_collector","events_processed":8199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1639.8,"last_update":"2026-03-22T08:18:07.368260512Z"} +2026/03/22 08:18:12 ───────────────────────────────────────────────── +2026/03/22 08:18:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:18:17 [log_collector] {"stage_name":"log_collector","events_processed":13574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2714.8,"last_update":"2026-03-22T08:18:12.368656828Z"} +2026/03/22 08:18:17 [metric_collector] {"stage_name":"metric_collector","events_processed":8204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1640.8,"last_update":"2026-03-22T08:18:12.368748825Z"} +2026/03/22 08:18:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:18:12.375149786Z"} +2026/03/22 08:18:17 [detection_layer] {"stage_name":"detection_layer","events_processed":273,"events_dropped":0,"avg_latency_ms":13.920720104559077,"throughput_eps":0,"last_update":"2026-03-22T08:18:12.479399032Z"} +2026/03/22 08:18:17 [transform_engine] {"stage_name":"transform_engine","events_processed":273,"events_dropped":0,"avg_latency_ms":356.2130003885329,"throughput_eps":0,"last_update":"2026-03-22T08:18:12.479380918Z"} +2026/03/22 08:18:17 ───────────────────────────────────────────────── +2026/03/22 08:18:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:18:22 [log_collector] {"stage_name":"log_collector","events_processed":13574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2714.8,"last_update":"2026-03-22T08:18:22.368652385Z"} +2026/03/22 08:18:22 [metric_collector] {"stage_name":"metric_collector","events_processed":8209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1641.8,"last_update":"2026-03-22T08:18:17.368717185Z"} +2026/03/22 08:18:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3286,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:18:17.377706925Z"} +2026/03/22 08:18:22 [detection_layer] {"stage_name":"detection_layer","events_processed":273,"events_dropped":0,"avg_latency_ms":13.920720104559077,"throughput_eps":0,"last_update":"2026-03-22T08:18:17.47987813Z"} +2026/03/22 08:18:22 [transform_engine] {"stage_name":"transform_engine","events_processed":273,"events_dropped":0,"avg_latency_ms":356.2130003885329,"throughput_eps":0,"last_update":"2026-03-22T08:18:17.479908839Z"} +2026/03/22 08:18:22 ───────────────────────────────────────────────── +2026/03/22 08:18:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:18:27 [log_collector] {"stage_name":"log_collector","events_processed":13574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2714.8,"last_update":"2026-03-22T08:18:22.368652385Z"} +2026/03/22 08:18:27 [metric_collector] {"stage_name":"metric_collector","events_processed":8214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1642.8,"last_update":"2026-03-22T08:18:22.368960737Z"} +2026/03/22 08:18:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:18:22.375442322Z"} +2026/03/22 08:18:27 [detection_layer] {"stage_name":"detection_layer","events_processed":273,"events_dropped":0,"avg_latency_ms":13.920720104559077,"throughput_eps":0,"last_update":"2026-03-22T08:18:22.479631252Z"} +2026/03/22 08:18:27 [transform_engine] {"stage_name":"transform_engine","events_processed":273,"events_dropped":0,"avg_latency_ms":356.2130003885329,"throughput_eps":0,"last_update":"2026-03-22T08:18:22.479708159Z"} +2026/03/22 08:18:27 ───────────────────────────────────────────────── +2026/03/22 08:18:28 [ANOMALY] time=2026-03-22T08:18:28Z score=0.8292 method=SEAD details=MAD!:w=0.45,s=0.70 RRCF-fast!:w=0.15,s=0.99 RRCF-mid!:w=0.12,s=0.98 RRCF-slow!:w=0.10,s=0.99 COPOD!:w=0.18,s=0.83 +2026/03/22 08:18:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:18:32 [log_collector] {"stage_name":"log_collector","events_processed":13574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2714.8,"last_update":"2026-03-22T08:18:32.368177255Z"} +2026/03/22 08:18:32 [metric_collector] {"stage_name":"metric_collector","events_processed":8219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1643.8,"last_update":"2026-03-22T08:18:27.368302763Z"} +2026/03/22 08:18:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:18:27.376490077Z"} +2026/03/22 08:18:32 [detection_layer] {"stage_name":"detection_layer","events_processed":273,"events_dropped":0,"avg_latency_ms":13.920720104559077,"throughput_eps":0,"last_update":"2026-03-22T08:18:27.479616772Z"} +2026/03/22 08:18:32 [transform_engine] {"stage_name":"transform_engine","events_processed":274,"events_dropped":0,"avg_latency_ms":577.6454985108263,"throughput_eps":0,"last_update":"2026-03-22T08:18:28.943029996Z"} +2026/03/22 08:18:32 ───────────────────────────────────────────────── +2026/03/22 08:18:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:18:37 [log_collector] {"stage_name":"log_collector","events_processed":13574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2714.8,"last_update":"2026-03-22T08:18:32.368177255Z"} +2026/03/22 08:18:37 [metric_collector] {"stage_name":"metric_collector","events_processed":8224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1644.8,"last_update":"2026-03-22T08:18:32.368386175Z"} +2026/03/22 08:18:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:18:32.375028419Z"} +2026/03/22 08:18:37 [detection_layer] {"stage_name":"detection_layer","events_processed":274,"events_dropped":0,"avg_latency_ms":13.476310083647263,"throughput_eps":0,"last_update":"2026-03-22T08:18:32.48137388Z"} +2026/03/22 08:18:37 [transform_engine] {"stage_name":"transform_engine","events_processed":274,"events_dropped":0,"avg_latency_ms":577.6454985108263,"throughput_eps":0,"last_update":"2026-03-22T08:18:32.481383147Z"} +2026/03/22 08:18:37 ───────────────────────────────────────────────── +2026/03/22 08:18:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:18:42 [log_collector] {"stage_name":"log_collector","events_processed":13577,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2715.4,"last_update":"2026-03-22T08:18:37.367964213Z"} +2026/03/22 08:18:42 [metric_collector] {"stage_name":"metric_collector","events_processed":8229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1645.8,"last_update":"2026-03-22T08:18:37.36831785Z"} +2026/03/22 08:18:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:18:37.374897514Z"} +2026/03/22 08:18:42 [detection_layer] {"stage_name":"detection_layer","events_processed":274,"events_dropped":0,"avg_latency_ms":13.476310083647263,"throughput_eps":0,"last_update":"2026-03-22T08:18:37.479108516Z"} +2026/03/22 08:18:42 [transform_engine] {"stage_name":"transform_engine","events_processed":274,"events_dropped":0,"avg_latency_ms":577.6454985108263,"throughput_eps":0,"last_update":"2026-03-22T08:18:37.479123565Z"} +2026/03/22 08:18:42 ───────────────────────────────────────────────── +2026/03/22 08:18:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:18:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:18:42.378307819Z"} +2026/03/22 08:18:47 [detection_layer] {"stage_name":"detection_layer","events_processed":274,"events_dropped":0,"avg_latency_ms":13.476310083647263,"throughput_eps":0,"last_update":"2026-03-22T08:18:42.479513163Z"} +2026/03/22 08:18:47 [transform_engine] {"stage_name":"transform_engine","events_processed":274,"events_dropped":0,"avg_latency_ms":577.6454985108263,"throughput_eps":0,"last_update":"2026-03-22T08:18:42.479524444Z"} +2026/03/22 08:18:47 [log_collector] {"stage_name":"log_collector","events_processed":13585,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2717,"last_update":"2026-03-22T08:18:42.367968994Z"} +2026/03/22 08:18:47 [metric_collector] {"stage_name":"metric_collector","events_processed":8234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1646.8,"last_update":"2026-03-22T08:18:42.368240064Z"} +2026/03/22 08:18:47 ───────────────────────────────────────────────── +2026/03/22 08:18:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:18:52 [log_collector] {"stage_name":"log_collector","events_processed":13800,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2760,"last_update":"2026-03-22T08:18:47.368748451Z"} +2026/03/22 08:18:52 [metric_collector] {"stage_name":"metric_collector","events_processed":8239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1647.8,"last_update":"2026-03-22T08:18:47.369060249Z"} +2026/03/22 08:18:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:18:47.376984749Z"} +2026/03/22 08:18:52 [detection_layer] {"stage_name":"detection_layer","events_processed":274,"events_dropped":0,"avg_latency_ms":13.476310083647263,"throughput_eps":0,"last_update":"2026-03-22T08:18:47.479014242Z"} +2026/03/22 08:18:52 [transform_engine] {"stage_name":"transform_engine","events_processed":274,"events_dropped":0,"avg_latency_ms":577.6454985108263,"throughput_eps":0,"last_update":"2026-03-22T08:18:47.479026365Z"} +2026/03/22 08:18:52 ───────────────────────────────────────────────── +2026/03/22 08:18:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:18:57 [log_collector] {"stage_name":"log_collector","events_processed":13923,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2784.6,"last_update":"2026-03-22T08:18:52.368214358Z"} +2026/03/22 08:18:57 [metric_collector] {"stage_name":"metric_collector","events_processed":8244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1648.8,"last_update":"2026-03-22T08:18:52.368730066Z"} +2026/03/22 08:18:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:18:52.3768654Z"} +2026/03/22 08:18:57 [detection_layer] {"stage_name":"detection_layer","events_processed":274,"events_dropped":0,"avg_latency_ms":13.476310083647263,"throughput_eps":0,"last_update":"2026-03-22T08:18:52.479206329Z"} +2026/03/22 08:18:57 [transform_engine] {"stage_name":"transform_engine","events_processed":274,"events_dropped":0,"avg_latency_ms":577.6454985108263,"throughput_eps":0,"last_update":"2026-03-22T08:18:52.479161684Z"} +2026/03/22 08:18:57 ───────────────────────────────────────────────── +2026/03/22 08:19:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:19:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:18:57.378854333Z"} +2026/03/22 08:19:02 [detection_layer] {"stage_name":"detection_layer","events_processed":274,"events_dropped":0,"avg_latency_ms":13.476310083647263,"throughput_eps":0,"last_update":"2026-03-22T08:18:57.479317014Z"} +2026/03/22 08:19:02 [transform_engine] {"stage_name":"transform_engine","events_processed":275,"events_dropped":0,"avg_latency_ms":487.7748108086611,"throughput_eps":0,"last_update":"2026-03-22T08:18:57.607505145Z"} +2026/03/22 08:19:02 [log_collector] {"stage_name":"log_collector","events_processed":13923,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2784.6,"last_update":"2026-03-22T08:18:57.368685194Z"} +2026/03/22 08:19:02 [metric_collector] {"stage_name":"metric_collector","events_processed":8249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1649.8,"last_update":"2026-03-22T08:18:57.369035785Z"} +2026/03/22 08:19:02 ───────────────────────────────────────────────── +Saved state: 11 clusters, 13924 messages, reason: none +2026/03/22 08:19:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:19:07 [log_collector] {"stage_name":"log_collector","events_processed":13923,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2784.6,"last_update":"2026-03-22T08:19:02.368827202Z"} +2026/03/22 08:19:07 [metric_collector] {"stage_name":"metric_collector","events_processed":8254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1650.8,"last_update":"2026-03-22T08:19:02.36921738Z"} +2026/03/22 08:19:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:19:02.37867656Z"} +2026/03/22 08:19:07 [detection_layer] {"stage_name":"detection_layer","events_processed":275,"events_dropped":0,"avg_latency_ms":13.956643066917811,"throughput_eps":0,"last_update":"2026-03-22T08:19:02.47898713Z"} +2026/03/22 08:19:07 [transform_engine] {"stage_name":"transform_engine","events_processed":275,"events_dropped":0,"avg_latency_ms":487.7748108086611,"throughput_eps":0,"last_update":"2026-03-22T08:19:02.478873443Z"} +2026/03/22 08:19:07 ───────────────────────────────────────────────── +2026/03/22 08:19:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:19:12 [transform_engine] {"stage_name":"transform_engine","events_processed":275,"events_dropped":0,"avg_latency_ms":487.7748108086611,"throughput_eps":0,"last_update":"2026-03-22T08:19:07.479267027Z"} +2026/03/22 08:19:12 [log_collector] {"stage_name":"log_collector","events_processed":13926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2785.2,"last_update":"2026-03-22T08:19:07.367967708Z"} +2026/03/22 08:19:12 [metric_collector] {"stage_name":"metric_collector","events_processed":8259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1651.8,"last_update":"2026-03-22T08:19:07.368379127Z"} +2026/03/22 08:19:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:19:07.377080033Z"} +2026/03/22 08:19:12 [detection_layer] {"stage_name":"detection_layer","events_processed":275,"events_dropped":0,"avg_latency_ms":13.956643066917811,"throughput_eps":0,"last_update":"2026-03-22T08:19:07.479309569Z"} +2026/03/22 08:19:12 ───────────────────────────────────────────────── +2026/03/22 08:19:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:19:17 [log_collector] {"stage_name":"log_collector","events_processed":13926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2785.2,"last_update":"2026-03-22T08:19:12.368817622Z"} +2026/03/22 08:19:17 [metric_collector] {"stage_name":"metric_collector","events_processed":8264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1652.8,"last_update":"2026-03-22T08:19:12.369023486Z"} +2026/03/22 08:19:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:19:12.37602053Z"} +2026/03/22 08:19:17 [detection_layer] {"stage_name":"detection_layer","events_processed":275,"events_dropped":0,"avg_latency_ms":13.956643066917811,"throughput_eps":0,"last_update":"2026-03-22T08:19:12.479237227Z"} +2026/03/22 08:19:17 [transform_engine] {"stage_name":"transform_engine","events_processed":275,"events_dropped":0,"avg_latency_ms":487.7748108086611,"throughput_eps":0,"last_update":"2026-03-22T08:19:12.479257145Z"} +2026/03/22 08:19:17 ───────────────────────────────────────────────── +2026/03/22 08:19:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:19:22 [log_collector] {"stage_name":"log_collector","events_processed":13936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2787.2,"last_update":"2026-03-22T08:19:17.368524072Z"} +2026/03/22 08:19:22 [metric_collector] {"stage_name":"metric_collector","events_processed":8269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1653.8,"last_update":"2026-03-22T08:19:17.36888354Z"} +2026/03/22 08:19:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:19:17.374988715Z"} +2026/03/22 08:19:22 [detection_layer] {"stage_name":"detection_layer","events_processed":275,"events_dropped":0,"avg_latency_ms":13.956643066917811,"throughput_eps":0,"last_update":"2026-03-22T08:19:17.479456898Z"} +2026/03/22 08:19:22 [transform_engine] {"stage_name":"transform_engine","events_processed":275,"events_dropped":0,"avg_latency_ms":487.7748108086611,"throughput_eps":0,"last_update":"2026-03-22T08:19:17.479390692Z"} +2026/03/22 08:19:22 ───────────────────────────────────────────────── +2026/03/22 08:19:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:19:27 [log_collector] {"stage_name":"log_collector","events_processed":13937,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2787.4,"last_update":"2026-03-22T08:19:22.36801811Z"} +2026/03/22 08:19:27 [metric_collector] {"stage_name":"metric_collector","events_processed":8274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1654.8,"last_update":"2026-03-22T08:19:22.368410241Z"} +2026/03/22 08:19:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:19:22.375970032Z"} +2026/03/22 08:19:27 [detection_layer] {"stage_name":"detection_layer","events_processed":275,"events_dropped":0,"avg_latency_ms":13.956643066917811,"throughput_eps":0,"last_update":"2026-03-22T08:19:22.479271661Z"} +2026/03/22 08:19:27 [transform_engine] {"stage_name":"transform_engine","events_processed":275,"events_dropped":0,"avg_latency_ms":487.7748108086611,"throughput_eps":0,"last_update":"2026-03-22T08:19:22.479239199Z"} +2026/03/22 08:19:27 ───────────────────────────────────────────────── +2026/03/22 08:19:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:19:32 [log_collector] {"stage_name":"log_collector","events_processed":13953,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2790.6,"last_update":"2026-03-22T08:19:27.368189357Z"} +2026/03/22 08:19:32 [metric_collector] {"stage_name":"metric_collector","events_processed":8279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1655.8,"last_update":"2026-03-22T08:19:27.368750262Z"} +2026/03/22 08:19:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:19:27.377632907Z"} +2026/03/22 08:19:32 [detection_layer] {"stage_name":"detection_layer","events_processed":275,"events_dropped":0,"avg_latency_ms":13.956643066917811,"throughput_eps":0,"last_update":"2026-03-22T08:19:27.480045483Z"} +2026/03/22 08:19:32 [transform_engine] {"stage_name":"transform_engine","events_processed":276,"events_dropped":0,"avg_latency_ms":413.29437104692886,"throughput_eps":0,"last_update":"2026-03-22T08:19:27.594219179Z"} +2026/03/22 08:19:32 ───────────────────────────────────────────────── +2026/03/22 08:19:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:19:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:19:32.376516645Z"} +2026/03/22 08:19:37 [detection_layer] {"stage_name":"detection_layer","events_processed":276,"events_dropped":0,"avg_latency_ms":14.73592625353425,"throughput_eps":0,"last_update":"2026-03-22T08:19:32.47972244Z"} +2026/03/22 08:19:37 [transform_engine] {"stage_name":"transform_engine","events_processed":276,"events_dropped":0,"avg_latency_ms":413.29437104692886,"throughput_eps":0,"last_update":"2026-03-22T08:19:32.479731077Z"} +2026/03/22 08:19:37 [log_collector] {"stage_name":"log_collector","events_processed":13953,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2790.6,"last_update":"2026-03-22T08:19:32.367970645Z"} +2026/03/22 08:19:37 [metric_collector] {"stage_name":"metric_collector","events_processed":8284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1656.8,"last_update":"2026-03-22T08:19:32.368966322Z"} +2026/03/22 08:19:37 ───────────────────────────────────────────────── +2026/03/22 08:19:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:19:42 [log_collector] {"stage_name":"log_collector","events_processed":13953,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2790.6,"last_update":"2026-03-22T08:19:37.368477246Z"} +2026/03/22 08:19:42 [metric_collector] {"stage_name":"metric_collector","events_processed":8289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1657.8,"last_update":"2026-03-22T08:19:37.368960752Z"} +2026/03/22 08:19:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:19:37.379094655Z"} +2026/03/22 08:19:42 [detection_layer] {"stage_name":"detection_layer","events_processed":276,"events_dropped":0,"avg_latency_ms":14.73592625353425,"throughput_eps":0,"last_update":"2026-03-22T08:19:37.479271287Z"} +2026/03/22 08:19:42 [transform_engine] {"stage_name":"transform_engine","events_processed":276,"events_dropped":0,"avg_latency_ms":413.29437104692886,"throughput_eps":0,"last_update":"2026-03-22T08:19:37.479279633Z"} +2026/03/22 08:19:42 ───────────────────────────────────────────────── +2026/03/22 08:19:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:19:47 [metric_collector] {"stage_name":"metric_collector","events_processed":8294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1658.8,"last_update":"2026-03-22T08:19:42.368316706Z"} +2026/03/22 08:19:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3320,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:19:42.377429882Z"} +2026/03/22 08:19:47 [detection_layer] {"stage_name":"detection_layer","events_processed":276,"events_dropped":0,"avg_latency_ms":14.73592625353425,"throughput_eps":0,"last_update":"2026-03-22T08:19:42.479628037Z"} +2026/03/22 08:19:47 [transform_engine] {"stage_name":"transform_engine","events_processed":276,"events_dropped":0,"avg_latency_ms":413.29437104692886,"throughput_eps":0,"last_update":"2026-03-22T08:19:42.479650239Z"} +2026/03/22 08:19:47 [log_collector] {"stage_name":"log_collector","events_processed":13953,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2790.6,"last_update":"2026-03-22T08:19:42.368075453Z"} +2026/03/22 08:19:47 ───────────────────────────────────────────────── +2026/03/22 08:19:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:19:52 [metric_collector] {"stage_name":"metric_collector","events_processed":8299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1659.8,"last_update":"2026-03-22T08:19:47.368299474Z"} +2026/03/22 08:19:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:19:47.378389402Z"} +2026/03/22 08:19:52 [detection_layer] {"stage_name":"detection_layer","events_processed":276,"events_dropped":0,"avg_latency_ms":14.73592625353425,"throughput_eps":0,"last_update":"2026-03-22T08:19:47.479756825Z"} +2026/03/22 08:19:52 [transform_engine] {"stage_name":"transform_engine","events_processed":276,"events_dropped":0,"avg_latency_ms":413.29437104692886,"throughput_eps":0,"last_update":"2026-03-22T08:19:47.479743128Z"} +2026/03/22 08:19:52 [log_collector] {"stage_name":"log_collector","events_processed":13953,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2790.6,"last_update":"2026-03-22T08:19:47.36831296Z"} +2026/03/22 08:19:52 ───────────────────────────────────────────────── +2026/03/22 08:19:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:19:57 [log_collector] {"stage_name":"log_collector","events_processed":13953,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2790.6,"last_update":"2026-03-22T08:19:52.368448466Z"} +2026/03/22 08:19:57 [metric_collector] {"stage_name":"metric_collector","events_processed":8304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1660.8,"last_update":"2026-03-22T08:19:52.368932103Z"} +2026/03/22 08:19:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:19:52.377332815Z"} +2026/03/22 08:19:57 [detection_layer] {"stage_name":"detection_layer","events_processed":276,"events_dropped":0,"avg_latency_ms":14.73592625353425,"throughput_eps":0,"last_update":"2026-03-22T08:19:52.479530819Z"} +2026/03/22 08:19:57 [transform_engine] {"stage_name":"transform_engine","events_processed":276,"events_dropped":0,"avg_latency_ms":413.29437104692886,"throughput_eps":0,"last_update":"2026-03-22T08:19:52.479538113Z"} +2026/03/22 08:19:57 ───────────────────────────────────────────────── +2026/03/22 08:20:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:20:02 [log_collector] {"stage_name":"log_collector","events_processed":13953,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2790.6,"last_update":"2026-03-22T08:19:57.368141649Z"} +2026/03/22 08:20:02 [metric_collector] {"stage_name":"metric_collector","events_processed":8309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1661.8,"last_update":"2026-03-22T08:19:57.368649381Z"} +2026/03/22 08:20:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:19:57.377162018Z"} +2026/03/22 08:20:02 [detection_layer] {"stage_name":"detection_layer","events_processed":276,"events_dropped":0,"avg_latency_ms":14.73592625353425,"throughput_eps":0,"last_update":"2026-03-22T08:19:57.479557421Z"} +2026/03/22 08:20:02 [transform_engine] {"stage_name":"transform_engine","events_processed":277,"events_dropped":0,"avg_latency_ms":344.8338642375431,"throughput_eps":0,"last_update":"2026-03-22T08:19:57.550564718Z"} +2026/03/22 08:20:02 ───────────────────────────────────────────────── +2026/03/22 08:20:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:20:07 [transform_engine] {"stage_name":"transform_engine","events_processed":277,"events_dropped":0,"avg_latency_ms":344.8338642375431,"throughput_eps":0,"last_update":"2026-03-22T08:20:02.478855561Z"} +2026/03/22 08:20:07 [log_collector] {"stage_name":"log_collector","events_processed":13953,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2790.6,"last_update":"2026-03-22T08:20:02.368508017Z"} +2026/03/22 08:20:07 [metric_collector] {"stage_name":"metric_collector","events_processed":8314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1662.8,"last_update":"2026-03-22T08:20:02.368470925Z"} +2026/03/22 08:20:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:20:02.385727922Z"} +2026/03/22 08:20:07 [detection_layer] {"stage_name":"detection_layer","events_processed":277,"events_dropped":0,"avg_latency_ms":15.7675686028274,"throughput_eps":0,"last_update":"2026-03-22T08:20:02.480012939Z"} +2026/03/22 08:20:07 ───────────────────────────────────────────────── +2026/03/22 08:20:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:20:12 [metric_collector] {"stage_name":"metric_collector","events_processed":8319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1663.8,"last_update":"2026-03-22T08:20:07.368498668Z"} +2026/03/22 08:20:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3330,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:20:07.377569974Z"} +2026/03/22 08:20:12 [detection_layer] {"stage_name":"detection_layer","events_processed":277,"events_dropped":0,"avg_latency_ms":15.7675686028274,"throughput_eps":0,"last_update":"2026-03-22T08:20:07.47989928Z"} +2026/03/22 08:20:12 [transform_engine] {"stage_name":"transform_engine","events_processed":277,"events_dropped":0,"avg_latency_ms":344.8338642375431,"throughput_eps":0,"last_update":"2026-03-22T08:20:07.479912877Z"} +2026/03/22 08:20:12 [log_collector] {"stage_name":"log_collector","events_processed":13953,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2790.6,"last_update":"2026-03-22T08:20:07.367990154Z"} +2026/03/22 08:20:12 ───────────────────────────────────────────────── +2026/03/22 08:20:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:20:17 [transform_engine] {"stage_name":"transform_engine","events_processed":277,"events_dropped":0,"avg_latency_ms":344.8338642375431,"throughput_eps":0,"last_update":"2026-03-22T08:20:12.479383448Z"} +2026/03/22 08:20:17 [log_collector] {"stage_name":"log_collector","events_processed":13953,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2790.6,"last_update":"2026-03-22T08:20:17.368535065Z"} +2026/03/22 08:20:17 [metric_collector] {"stage_name":"metric_collector","events_processed":8324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1664.8,"last_update":"2026-03-22T08:20:12.369213153Z"} +2026/03/22 08:20:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:20:12.378067384Z"} +2026/03/22 08:20:17 [detection_layer] {"stage_name":"detection_layer","events_processed":277,"events_dropped":0,"avg_latency_ms":15.7675686028274,"throughput_eps":0,"last_update":"2026-03-22T08:20:12.479371655Z"} +2026/03/22 08:20:17 ───────────────────────────────────────────────── +2026/03/22 08:20:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:20:22 [log_collector] {"stage_name":"log_collector","events_processed":13953,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2790.6,"last_update":"2026-03-22T08:20:22.36905634Z"} +2026/03/22 08:20:22 [metric_collector] {"stage_name":"metric_collector","events_processed":8329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1665.8,"last_update":"2026-03-22T08:20:17.369061504Z"} +2026/03/22 08:20:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:20:17.377107135Z"} +2026/03/22 08:20:22 [detection_layer] {"stage_name":"detection_layer","events_processed":277,"events_dropped":0,"avg_latency_ms":15.7675686028274,"throughput_eps":0,"last_update":"2026-03-22T08:20:17.47932611Z"} +2026/03/22 08:20:22 [transform_engine] {"stage_name":"transform_engine","events_processed":277,"events_dropped":0,"avg_latency_ms":344.8338642375431,"throughput_eps":0,"last_update":"2026-03-22T08:20:17.479335658Z"} +2026/03/22 08:20:22 ───────────────────────────────────────────────── +2026/03/22 08:20:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:20:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:20:22.379496359Z"} +2026/03/22 08:20:27 [detection_layer] {"stage_name":"detection_layer","events_processed":277,"events_dropped":0,"avg_latency_ms":15.7675686028274,"throughput_eps":0,"last_update":"2026-03-22T08:20:22.479796056Z"} +2026/03/22 08:20:27 [transform_engine] {"stage_name":"transform_engine","events_processed":277,"events_dropped":0,"avg_latency_ms":344.8338642375431,"throughput_eps":0,"last_update":"2026-03-22T08:20:22.479807489Z"} +2026/03/22 08:20:27 [log_collector] {"stage_name":"log_collector","events_processed":13953,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2790.6,"last_update":"2026-03-22T08:20:22.36905634Z"} +2026/03/22 08:20:27 [metric_collector] {"stage_name":"metric_collector","events_processed":8334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1666.8,"last_update":"2026-03-22T08:20:22.369444814Z"} +2026/03/22 08:20:27 ───────────────────────────────────────────────── +Saved state: 11 clusters, 13954 messages, reason: none +2026/03/22 08:20:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:20:32 [detection_layer] {"stage_name":"detection_layer","events_processed":277,"events_dropped":0,"avg_latency_ms":15.7675686028274,"throughput_eps":0,"last_update":"2026-03-22T08:20:27.478974835Z"} +2026/03/22 08:20:32 [transform_engine] {"stage_name":"transform_engine","events_processed":278,"events_dropped":0,"avg_latency_ms":290.48830879003447,"throughput_eps":0,"last_update":"2026-03-22T08:20:27.552101401Z"} +2026/03/22 08:20:32 [log_collector] {"stage_name":"log_collector","events_processed":13953,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2790.6,"last_update":"2026-03-22T08:20:27.368071005Z"} +2026/03/22 08:20:32 [metric_collector] {"stage_name":"metric_collector","events_processed":8339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1667.8,"last_update":"2026-03-22T08:20:27.368736018Z"} +2026/03/22 08:20:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:20:27.377773931Z"} +2026/03/22 08:20:32 ───────────────────────────────────────────────── +2026/03/22 08:20:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:20:37 [log_collector] {"stage_name":"log_collector","events_processed":13966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2793.2,"last_update":"2026-03-22T08:20:32.368031807Z"} +2026/03/22 08:20:37 [metric_collector] {"stage_name":"metric_collector","events_processed":8344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1668.8,"last_update":"2026-03-22T08:20:32.368599034Z"} +2026/03/22 08:20:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:20:32.375636644Z"} +2026/03/22 08:20:37 [detection_layer] {"stage_name":"detection_layer","events_processed":278,"events_dropped":0,"avg_latency_ms":16.68139388226192,"throughput_eps":0,"last_update":"2026-03-22T08:20:32.479877491Z"} +2026/03/22 08:20:37 [transform_engine] {"stage_name":"transform_engine","events_processed":278,"events_dropped":0,"avg_latency_ms":290.48830879003447,"throughput_eps":0,"last_update":"2026-03-22T08:20:32.479852463Z"} +2026/03/22 08:20:37 ───────────────────────────────────────────────── +2026/03/22 08:20:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:20:42 [log_collector] {"stage_name":"log_collector","events_processed":13967,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2793.4,"last_update":"2026-03-22T08:20:37.368071667Z"} +2026/03/22 08:20:42 [metric_collector] {"stage_name":"metric_collector","events_processed":8349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1669.8,"last_update":"2026-03-22T08:20:37.368614847Z"} +2026/03/22 08:20:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3342,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:20:37.378580747Z"} +2026/03/22 08:20:42 [detection_layer] {"stage_name":"detection_layer","events_processed":278,"events_dropped":0,"avg_latency_ms":16.68139388226192,"throughput_eps":0,"last_update":"2026-03-22T08:20:37.4789822Z"} +2026/03/22 08:20:42 [transform_engine] {"stage_name":"transform_engine","events_processed":278,"events_dropped":0,"avg_latency_ms":290.48830879003447,"throughput_eps":0,"last_update":"2026-03-22T08:20:37.47884676Z"} +2026/03/22 08:20:42 ───────────────────────────────────────────────── +2026/03/22 08:20:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:20:47 [log_collector] {"stage_name":"log_collector","events_processed":13967,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2793.4,"last_update":"2026-03-22T08:20:47.368392693Z"} +2026/03/22 08:20:47 [metric_collector] {"stage_name":"metric_collector","events_processed":8353,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1670.6,"last_update":"2026-03-22T08:20:42.367972975Z"} +2026/03/22 08:20:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:20:42.377319178Z"} +2026/03/22 08:20:47 [detection_layer] {"stage_name":"detection_layer","events_processed":278,"events_dropped":0,"avg_latency_ms":16.68139388226192,"throughput_eps":0,"last_update":"2026-03-22T08:20:42.479457607Z"} +2026/03/22 08:20:47 [transform_engine] {"stage_name":"transform_engine","events_processed":278,"events_dropped":0,"avg_latency_ms":290.48830879003447,"throughput_eps":0,"last_update":"2026-03-22T08:20:42.479489258Z"} +2026/03/22 08:20:47 ───────────────────────────────────────────────── +2026/03/22 08:20:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:20:52 [detection_layer] {"stage_name":"detection_layer","events_processed":278,"events_dropped":0,"avg_latency_ms":16.68139388226192,"throughput_eps":0,"last_update":"2026-03-22T08:20:47.479878818Z"} +2026/03/22 08:20:52 [transform_engine] {"stage_name":"transform_engine","events_processed":278,"events_dropped":0,"avg_latency_ms":290.48830879003447,"throughput_eps":0,"last_update":"2026-03-22T08:20:47.479920988Z"} +2026/03/22 08:20:52 [log_collector] {"stage_name":"log_collector","events_processed":13967,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2793.4,"last_update":"2026-03-22T08:20:47.368392693Z"} +2026/03/22 08:20:52 [metric_collector] {"stage_name":"metric_collector","events_processed":8359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1671.8,"last_update":"2026-03-22T08:20:47.368782138Z"} +2026/03/22 08:20:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:20:47.377633123Z"} +2026/03/22 08:20:52 ───────────────────────────────────────────────── +2026/03/22 08:20:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:20:57 [detection_layer] {"stage_name":"detection_layer","events_processed":278,"events_dropped":0,"avg_latency_ms":16.68139388226192,"throughput_eps":0,"last_update":"2026-03-22T08:20:52.47969273Z"} +2026/03/22 08:20:57 [transform_engine] {"stage_name":"transform_engine","events_processed":278,"events_dropped":0,"avg_latency_ms":290.48830879003447,"throughput_eps":0,"last_update":"2026-03-22T08:20:52.479714332Z"} +2026/03/22 08:20:57 [log_collector] {"stage_name":"log_collector","events_processed":13967,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2793.4,"last_update":"2026-03-22T08:20:52.368175716Z"} +2026/03/22 08:20:57 [metric_collector] {"stage_name":"metric_collector","events_processed":8364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1672.8,"last_update":"2026-03-22T08:20:52.368250088Z"} +2026/03/22 08:20:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:20:52.377501711Z"} +2026/03/22 08:20:57 ───────────────────────────────────────────────── +2026/03/22 08:21:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:21:02 [transform_engine] {"stage_name":"transform_engine","events_processed":278,"events_dropped":0,"avg_latency_ms":290.48830879003447,"throughput_eps":0,"last_update":"2026-03-22T08:20:57.47986282Z"} +2026/03/22 08:21:02 [log_collector] {"stage_name":"log_collector","events_processed":13967,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2793.4,"last_update":"2026-03-22T08:21:02.36844664Z"} +2026/03/22 08:21:02 [metric_collector] {"stage_name":"metric_collector","events_processed":8369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1673.8,"last_update":"2026-03-22T08:20:57.368953931Z"} +2026/03/22 08:21:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3350,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:20:57.378639745Z"} +2026/03/22 08:21:02 [detection_layer] {"stage_name":"detection_layer","events_processed":278,"events_dropped":0,"avg_latency_ms":16.68139388226192,"throughput_eps":0,"last_update":"2026-03-22T08:20:57.480479842Z"} +2026/03/22 08:21:02 ───────────────────────────────────────────────── +2026/03/22 08:21:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:21:07 [metric_collector] {"stage_name":"metric_collector","events_processed":8379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1675.8,"last_update":"2026-03-22T08:21:07.368864286Z"} +2026/03/22 08:21:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:21:02.378387161Z"} +2026/03/22 08:21:07 [detection_layer] {"stage_name":"detection_layer","events_processed":279,"events_dropped":0,"avg_latency_ms":16.974539505809535,"throughput_eps":0,"last_update":"2026-03-22T08:21:02.479574588Z"} +2026/03/22 08:21:07 [transform_engine] {"stage_name":"transform_engine","events_processed":279,"events_dropped":0,"avg_latency_ms":255.74066663202757,"throughput_eps":0,"last_update":"2026-03-22T08:21:02.479539171Z"} +2026/03/22 08:21:07 [log_collector] {"stage_name":"log_collector","events_processed":13967,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2793.4,"last_update":"2026-03-22T08:21:02.36844664Z"} +2026/03/22 08:21:07 ───────────────────────────────────────────────── +2026/03/22 08:21:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:21:12 [detection_layer] {"stage_name":"detection_layer","events_processed":279,"events_dropped":0,"avg_latency_ms":16.974539505809535,"throughput_eps":0,"last_update":"2026-03-22T08:21:07.479897553Z"} +2026/03/22 08:21:12 [transform_engine] {"stage_name":"transform_engine","events_processed":279,"events_dropped":0,"avg_latency_ms":255.74066663202757,"throughput_eps":0,"last_update":"2026-03-22T08:21:07.479866834Z"} +2026/03/22 08:21:12 [log_collector] {"stage_name":"log_collector","events_processed":13967,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2793.4,"last_update":"2026-03-22T08:21:07.368994485Z"} +2026/03/22 08:21:12 [metric_collector] {"stage_name":"metric_collector","events_processed":8379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1675.8,"last_update":"2026-03-22T08:21:07.368864286Z"} +2026/03/22 08:21:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:21:07.378499702Z"} +2026/03/22 08:21:12 ───────────────────────────────────────────────── +2026/03/22 08:21:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:21:17 [log_collector] {"stage_name":"log_collector","events_processed":13967,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2793.4,"last_update":"2026-03-22T08:21:12.36801489Z"} +2026/03/22 08:21:17 [metric_collector] {"stage_name":"metric_collector","events_processed":8384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1676.8,"last_update":"2026-03-22T08:21:12.368294575Z"} +2026/03/22 08:21:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:21:12.378605576Z"} +2026/03/22 08:21:17 [detection_layer] {"stage_name":"detection_layer","events_processed":279,"events_dropped":0,"avg_latency_ms":16.974539505809535,"throughput_eps":0,"last_update":"2026-03-22T08:21:12.479790278Z"} +2026/03/22 08:21:17 [transform_engine] {"stage_name":"transform_engine","events_processed":279,"events_dropped":0,"avg_latency_ms":255.74066663202757,"throughput_eps":0,"last_update":"2026-03-22T08:21:12.479897002Z"} +2026/03/22 08:21:17 ───────────────────────────────────────────────── +2026/03/22 08:21:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:21:22 [log_collector] {"stage_name":"log_collector","events_processed":13967,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2793.4,"last_update":"2026-03-22T08:21:17.367984699Z"} +2026/03/22 08:21:22 [metric_collector] {"stage_name":"metric_collector","events_processed":8389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1677.8,"last_update":"2026-03-22T08:21:17.368924278Z"} +2026/03/22 08:21:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:21:17.376888865Z"} +2026/03/22 08:21:22 [detection_layer] {"stage_name":"detection_layer","events_processed":279,"events_dropped":0,"avg_latency_ms":16.974539505809535,"throughput_eps":0,"last_update":"2026-03-22T08:21:17.479292371Z"} +2026/03/22 08:21:22 [transform_engine] {"stage_name":"transform_engine","events_processed":279,"events_dropped":0,"avg_latency_ms":255.74066663202757,"throughput_eps":0,"last_update":"2026-03-22T08:21:17.47927585Z"} +2026/03/22 08:21:22 ───────────────────────────────────────────────── +2026/03/22 08:21:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:21:27 [log_collector] {"stage_name":"log_collector","events_processed":13967,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2793.4,"last_update":"2026-03-22T08:21:22.368126032Z"} +2026/03/22 08:21:27 [metric_collector] {"stage_name":"metric_collector","events_processed":8394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1678.8,"last_update":"2026-03-22T08:21:22.368585743Z"} +2026/03/22 08:21:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3360,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:21:22.37744837Z"} +2026/03/22 08:21:27 [detection_layer] {"stage_name":"detection_layer","events_processed":279,"events_dropped":0,"avg_latency_ms":16.974539505809535,"throughput_eps":0,"last_update":"2026-03-22T08:21:22.47965561Z"} +2026/03/22 08:21:27 [transform_engine] {"stage_name":"transform_engine","events_processed":279,"events_dropped":0,"avg_latency_ms":255.74066663202757,"throughput_eps":0,"last_update":"2026-03-22T08:21:22.479695256Z"} +2026/03/22 08:21:27 ───────────────────────────────────────────────── +2026/03/22 08:21:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:21:32 [log_collector] {"stage_name":"log_collector","events_processed":13967,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2793.4,"last_update":"2026-03-22T08:21:27.368418761Z"} +2026/03/22 08:21:32 [metric_collector] {"stage_name":"metric_collector","events_processed":8399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1679.8,"last_update":"2026-03-22T08:21:27.369094325Z"} +2026/03/22 08:21:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:21:27.379788801Z"} +2026/03/22 08:21:32 [detection_layer] {"stage_name":"detection_layer","events_processed":279,"events_dropped":0,"avg_latency_ms":16.974539505809535,"throughput_eps":0,"last_update":"2026-03-22T08:21:27.479049377Z"} +2026/03/22 08:21:32 [transform_engine] {"stage_name":"transform_engine","events_processed":280,"events_dropped":0,"avg_latency_ms":218.63945850562206,"throughput_eps":0,"last_update":"2026-03-22T08:21:27.549170054Z"} +2026/03/22 08:21:32 ───────────────────────────────────────────────── +Saved state: 11 clusters, 13968 messages, reason: none +2026/03/22 08:21:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:21:37 [log_collector] {"stage_name":"log_collector","events_processed":13967,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2793.4,"last_update":"2026-03-22T08:21:32.368712099Z"} +2026/03/22 08:21:37 [metric_collector] {"stage_name":"metric_collector","events_processed":8404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1680.8,"last_update":"2026-03-22T08:21:32.368858049Z"} +2026/03/22 08:21:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:21:32.377367028Z"} +2026/03/22 08:21:37 [detection_layer] {"stage_name":"detection_layer","events_processed":280,"events_dropped":0,"avg_latency_ms":17.47993680464763,"throughput_eps":0,"last_update":"2026-03-22T08:21:32.47968502Z"} +2026/03/22 08:21:37 [transform_engine] {"stage_name":"transform_engine","events_processed":280,"events_dropped":0,"avg_latency_ms":218.63945850562206,"throughput_eps":0,"last_update":"2026-03-22T08:21:32.479567866Z"} +2026/03/22 08:21:37 ───────────────────────────────────────────────── +2026/03/22 08:21:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:21:42 [log_collector] {"stage_name":"log_collector","events_processed":13972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2794.4,"last_update":"2026-03-22T08:21:37.367957161Z"} +2026/03/22 08:21:42 [metric_collector] {"stage_name":"metric_collector","events_processed":8409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1681.8,"last_update":"2026-03-22T08:21:37.368262716Z"} +2026/03/22 08:21:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:21:37.392171935Z"} +2026/03/22 08:21:42 [detection_layer] {"stage_name":"detection_layer","events_processed":280,"events_dropped":0,"avg_latency_ms":17.47993680464763,"throughput_eps":0,"last_update":"2026-03-22T08:21:37.479280103Z"} +2026/03/22 08:21:42 [transform_engine] {"stage_name":"transform_engine","events_processed":280,"events_dropped":0,"avg_latency_ms":218.63945850562206,"throughput_eps":0,"last_update":"2026-03-22T08:21:37.479297726Z"} +2026/03/22 08:21:42 ───────────────────────────────────────────────── +2026/03/22 08:21:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:21:47 [metric_collector] {"stage_name":"metric_collector","events_processed":8414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1682.8,"last_update":"2026-03-22T08:21:42.368267091Z"} +2026/03/22 08:21:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:21:42.374899245Z"} +2026/03/22 08:21:47 [detection_layer] {"stage_name":"detection_layer","events_processed":280,"events_dropped":0,"avg_latency_ms":17.47993680464763,"throughput_eps":0,"last_update":"2026-03-22T08:21:42.479112006Z"} +2026/03/22 08:21:47 [transform_engine] {"stage_name":"transform_engine","events_processed":280,"events_dropped":0,"avg_latency_ms":218.63945850562206,"throughput_eps":0,"last_update":"2026-03-22T08:21:42.479096397Z"} +2026/03/22 08:21:47 [log_collector] {"stage_name":"log_collector","events_processed":13972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2794.4,"last_update":"2026-03-22T08:21:42.367959752Z"} +2026/03/22 08:21:47 ───────────────────────────────────────────────── +2026/03/22 08:21:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:21:52 [detection_layer] {"stage_name":"detection_layer","events_processed":280,"events_dropped":0,"avg_latency_ms":17.47993680464763,"throughput_eps":0,"last_update":"2026-03-22T08:21:47.479365184Z"} +2026/03/22 08:21:52 [transform_engine] {"stage_name":"transform_engine","events_processed":280,"events_dropped":0,"avg_latency_ms":218.63945850562206,"throughput_eps":0,"last_update":"2026-03-22T08:21:47.479384902Z"} +2026/03/22 08:21:52 [log_collector] {"stage_name":"log_collector","events_processed":13972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2794.4,"last_update":"2026-03-22T08:21:47.368125171Z"} +2026/03/22 08:21:52 [metric_collector] {"stage_name":"metric_collector","events_processed":8419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1683.8,"last_update":"2026-03-22T08:21:47.368105944Z"} +2026/03/22 08:21:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:21:47.37522399Z"} +2026/03/22 08:21:52 ───────────────────────────────────────────────── +2026/03/22 08:21:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:21:57 [detection_layer] {"stage_name":"detection_layer","events_processed":280,"events_dropped":0,"avg_latency_ms":17.47993680464763,"throughput_eps":0,"last_update":"2026-03-22T08:21:52.479467588Z"} +2026/03/22 08:21:57 [transform_engine] {"stage_name":"transform_engine","events_processed":280,"events_dropped":0,"avg_latency_ms":218.63945850562206,"throughput_eps":0,"last_update":"2026-03-22T08:21:52.479484411Z"} +2026/03/22 08:21:57 [log_collector] {"stage_name":"log_collector","events_processed":13972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2794.4,"last_update":"2026-03-22T08:21:52.368521188Z"} +2026/03/22 08:21:57 [metric_collector] {"stage_name":"metric_collector","events_processed":8424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1684.8,"last_update":"2026-03-22T08:21:52.368754696Z"} +2026/03/22 08:21:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:21:52.375216303Z"} +2026/03/22 08:21:57 ───────────────────────────────────────────────── +2026/03/22 08:22:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:22:02 [log_collector] {"stage_name":"log_collector","events_processed":13972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2794.4,"last_update":"2026-03-22T08:21:57.368795851Z"} +2026/03/22 08:22:02 [metric_collector] {"stage_name":"metric_collector","events_processed":8429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1685.8,"last_update":"2026-03-22T08:21:57.369147294Z"} +2026/03/22 08:22:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:21:57.375683925Z"} +2026/03/22 08:22:02 [detection_layer] {"stage_name":"detection_layer","events_processed":280,"events_dropped":0,"avg_latency_ms":17.47993680464763,"throughput_eps":0,"last_update":"2026-03-22T08:21:57.479870686Z"} +2026/03/22 08:22:02 [transform_engine] {"stage_name":"transform_engine","events_processed":281,"events_dropped":0,"avg_latency_ms":208.55911120449767,"throughput_eps":0,"last_update":"2026-03-22T08:21:57.648123357Z"} +2026/03/22 08:22:02 ───────────────────────────────────────────────── +2026/03/22 08:22:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:22:07 [log_collector] {"stage_name":"log_collector","events_processed":13972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2794.4,"last_update":"2026-03-22T08:22:07.368647173Z"} +2026/03/22 08:22:07 [metric_collector] {"stage_name":"metric_collector","events_processed":8434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1686.8,"last_update":"2026-03-22T08:22:02.369120583Z"} +2026/03/22 08:22:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:22:02.375067635Z"} +2026/03/22 08:22:07 [detection_layer] {"stage_name":"detection_layer","events_processed":281,"events_dropped":0,"avg_latency_ms":16.523245643718102,"throughput_eps":0,"last_update":"2026-03-22T08:22:02.479270918Z"} +2026/03/22 08:22:07 [transform_engine] {"stage_name":"transform_engine","events_processed":281,"events_dropped":0,"avg_latency_ms":208.55911120449767,"throughput_eps":0,"last_update":"2026-03-22T08:22:02.479258525Z"} +2026/03/22 08:22:07 ───────────────────────────────────────────────── +2026/03/22 08:22:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:22:12 [log_collector] {"stage_name":"log_collector","events_processed":13972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2794.4,"last_update":"2026-03-22T08:22:07.368647173Z"} +2026/03/22 08:22:12 [metric_collector] {"stage_name":"metric_collector","events_processed":8439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1687.8,"last_update":"2026-03-22T08:22:07.368863959Z"} +2026/03/22 08:22:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:22:07.375988455Z"} +2026/03/22 08:22:12 [detection_layer] {"stage_name":"detection_layer","events_processed":281,"events_dropped":0,"avg_latency_ms":16.523245643718102,"throughput_eps":0,"last_update":"2026-03-22T08:22:07.479541293Z"} +2026/03/22 08:22:12 [transform_engine] {"stage_name":"transform_engine","events_processed":281,"events_dropped":0,"avg_latency_ms":208.55911120449767,"throughput_eps":0,"last_update":"2026-03-22T08:22:07.479555731Z"} +2026/03/22 08:22:12 ───────────────────────────────────────────────── +2026/03/22 08:22:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:22:17 [log_collector] {"stage_name":"log_collector","events_processed":13972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2794.4,"last_update":"2026-03-22T08:22:12.369618166Z"} +2026/03/22 08:22:17 [metric_collector] {"stage_name":"metric_collector","events_processed":8444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1688.8,"last_update":"2026-03-22T08:22:12.369610291Z"} +2026/03/22 08:22:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3380,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:22:12.378711405Z"} +2026/03/22 08:22:17 [detection_layer] {"stage_name":"detection_layer","events_processed":281,"events_dropped":0,"avg_latency_ms":16.523245643718102,"throughput_eps":0,"last_update":"2026-03-22T08:22:12.478951657Z"} +2026/03/22 08:22:17 [transform_engine] {"stage_name":"transform_engine","events_processed":281,"events_dropped":0,"avg_latency_ms":208.55911120449767,"throughput_eps":0,"last_update":"2026-03-22T08:22:12.478867906Z"} +2026/03/22 08:22:17 ───────────────────────────────────────────────── +2026/03/22 08:22:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:22:22 [transform_engine] {"stage_name":"transform_engine","events_processed":281,"events_dropped":0,"avg_latency_ms":208.55911120449767,"throughput_eps":0,"last_update":"2026-03-22T08:22:17.479065264Z"} +2026/03/22 08:22:22 [log_collector] {"stage_name":"log_collector","events_processed":13972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2794.4,"last_update":"2026-03-22T08:22:17.367980949Z"} +2026/03/22 08:22:22 [metric_collector] {"stage_name":"metric_collector","events_processed":8449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1689.8,"last_update":"2026-03-22T08:22:17.368410231Z"} +2026/03/22 08:22:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:22:17.374822514Z"} +2026/03/22 08:22:22 [detection_layer] {"stage_name":"detection_layer","events_processed":281,"events_dropped":0,"avg_latency_ms":16.523245643718102,"throughput_eps":0,"last_update":"2026-03-22T08:22:17.479049834Z"} +2026/03/22 08:22:22 ───────────────────────────────────────────────── +2026/03/22 08:22:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:22:27 [log_collector] {"stage_name":"log_collector","events_processed":13983,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2796.6,"last_update":"2026-03-22T08:22:27.368212027Z"} +2026/03/22 08:22:27 [metric_collector] {"stage_name":"metric_collector","events_processed":8459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1691.8,"last_update":"2026-03-22T08:22:27.368190145Z"} +2026/03/22 08:22:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:22:22.37527853Z"} +2026/03/22 08:22:27 [detection_layer] {"stage_name":"detection_layer","events_processed":281,"events_dropped":0,"avg_latency_ms":16.523245643718102,"throughput_eps":0,"last_update":"2026-03-22T08:22:22.479508675Z"} +2026/03/22 08:22:27 [transform_engine] {"stage_name":"transform_engine","events_processed":281,"events_dropped":0,"avg_latency_ms":208.55911120449767,"throughput_eps":0,"last_update":"2026-03-22T08:22:22.479540496Z"} +2026/03/22 08:22:27 ───────────────────────────────────────────────── +2026/03/22 08:22:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:22:32 [log_collector] {"stage_name":"log_collector","events_processed":13983,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2796.6,"last_update":"2026-03-22T08:22:27.368212027Z"} +2026/03/22 08:22:32 [metric_collector] {"stage_name":"metric_collector","events_processed":8459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1691.8,"last_update":"2026-03-22T08:22:27.368190145Z"} +2026/03/22 08:22:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:22:27.3776784Z"} +2026/03/22 08:22:32 [detection_layer] {"stage_name":"detection_layer","events_processed":281,"events_dropped":0,"avg_latency_ms":16.523245643718102,"throughput_eps":0,"last_update":"2026-03-22T08:22:27.480411246Z"} +2026/03/22 08:22:32 [transform_engine] {"stage_name":"transform_engine","events_processed":282,"events_dropped":0,"avg_latency_ms":212.85840396359816,"throughput_eps":0,"last_update":"2026-03-22T08:22:27.709959519Z"} +2026/03/22 08:22:32 ───────────────────────────────────────────────── +Saved state: 11 clusters, 14322 messages, reason: none +2026/03/22 08:22:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:22:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3388,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:22:32.375367452Z"} +2026/03/22 08:22:37 [detection_layer] {"stage_name":"detection_layer","events_processed":282,"events_dropped":0,"avg_latency_ms":16.657788314974482,"throughput_eps":0,"last_update":"2026-03-22T08:22:32.479124832Z"} +2026/03/22 08:22:37 [transform_engine] {"stage_name":"transform_engine","events_processed":282,"events_dropped":0,"avg_latency_ms":212.85840396359816,"throughput_eps":0,"last_update":"2026-03-22T08:22:32.479112397Z"} +2026/03/22 08:22:37 [log_collector] {"stage_name":"log_collector","events_processed":14204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2840.8,"last_update":"2026-03-22T08:22:32.368560675Z"} +2026/03/22 08:22:37 [metric_collector] {"stage_name":"metric_collector","events_processed":8464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1692.8,"last_update":"2026-03-22T08:22:32.368775035Z"} +2026/03/22 08:22:37 ───────────────────────────────────────────────── +2026/03/22 08:22:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:22:42 [log_collector] {"stage_name":"log_collector","events_processed":14328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2865.6,"last_update":"2026-03-22T08:22:37.3679657Z"} +2026/03/22 08:22:42 [metric_collector] {"stage_name":"metric_collector","events_processed":8469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1693.8,"last_update":"2026-03-22T08:22:37.368255224Z"} +2026/03/22 08:22:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3390,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:22:37.374939718Z"} +2026/03/22 08:22:42 [detection_layer] {"stage_name":"detection_layer","events_processed":282,"events_dropped":0,"avg_latency_ms":16.657788314974482,"throughput_eps":0,"last_update":"2026-03-22T08:22:37.479855766Z"} +2026/03/22 08:22:42 [transform_engine] {"stage_name":"transform_engine","events_processed":282,"events_dropped":0,"avg_latency_ms":212.85840396359816,"throughput_eps":0,"last_update":"2026-03-22T08:22:37.478822768Z"} +2026/03/22 08:22:42 ───────────────────────────────────────────────── +2026/03/22 08:22:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:22:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:22:42.377909687Z"} +2026/03/22 08:22:47 [detection_layer] {"stage_name":"detection_layer","events_processed":282,"events_dropped":0,"avg_latency_ms":16.657788314974482,"throughput_eps":0,"last_update":"2026-03-22T08:22:42.479177567Z"} +2026/03/22 08:22:47 [transform_engine] {"stage_name":"transform_engine","events_processed":282,"events_dropped":0,"avg_latency_ms":212.85840396359816,"throughput_eps":0,"last_update":"2026-03-22T08:22:42.479125868Z"} +2026/03/22 08:22:47 [log_collector] {"stage_name":"log_collector","events_processed":14338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2867.6,"last_update":"2026-03-22T08:22:42.368277226Z"} +2026/03/22 08:22:47 [metric_collector] {"stage_name":"metric_collector","events_processed":8474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1694.8,"last_update":"2026-03-22T08:22:42.368826698Z"} +2026/03/22 08:22:47 ───────────────────────────────────────────────── +2026/03/22 08:22:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:22:52 [detection_layer] {"stage_name":"detection_layer","events_processed":282,"events_dropped":0,"avg_latency_ms":16.657788314974482,"throughput_eps":0,"last_update":"2026-03-22T08:22:47.480001061Z"} +2026/03/22 08:22:52 [transform_engine] {"stage_name":"transform_engine","events_processed":282,"events_dropped":0,"avg_latency_ms":212.85840396359816,"throughput_eps":0,"last_update":"2026-03-22T08:22:47.47882569Z"} +2026/03/22 08:22:52 [log_collector] {"stage_name":"log_collector","events_processed":14341,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2868.2,"last_update":"2026-03-22T08:22:47.367970085Z"} +2026/03/22 08:22:52 [metric_collector] {"stage_name":"metric_collector","events_processed":8479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1695.8,"last_update":"2026-03-22T08:22:47.36833294Z"} +2026/03/22 08:22:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:22:47.375645477Z"} +2026/03/22 08:22:52 ───────────────────────────────────────────────── +2026/03/22 08:22:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:22:57 [detection_layer] {"stage_name":"detection_layer","events_processed":282,"events_dropped":0,"avg_latency_ms":16.657788314974482,"throughput_eps":0,"last_update":"2026-03-22T08:22:52.479974885Z"} +2026/03/22 08:22:57 [transform_engine] {"stage_name":"transform_engine","events_processed":282,"events_dropped":0,"avg_latency_ms":212.85840396359816,"throughput_eps":0,"last_update":"2026-03-22T08:22:52.478864878Z"} +2026/03/22 08:22:57 [log_collector] {"stage_name":"log_collector","events_processed":14351,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2870.2,"last_update":"2026-03-22T08:22:57.367974337Z"} +2026/03/22 08:22:57 [metric_collector] {"stage_name":"metric_collector","events_processed":8484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1696.8,"last_update":"2026-03-22T08:22:52.368938854Z"} +2026/03/22 08:22:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:22:52.375691118Z"} +2026/03/22 08:22:57 ───────────────────────────────────────────────── +2026/03/22 08:23:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:23:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:22:57.37549374Z"} +2026/03/22 08:23:02 [detection_layer] {"stage_name":"detection_layer","events_processed":282,"events_dropped":0,"avg_latency_ms":16.657788314974482,"throughput_eps":0,"last_update":"2026-03-22T08:22:57.479034524Z"} +2026/03/22 08:23:02 [transform_engine] {"stage_name":"transform_engine","events_processed":282,"events_dropped":0,"avg_latency_ms":212.85840396359816,"throughput_eps":0,"last_update":"2026-03-22T08:22:57.478955131Z"} +2026/03/22 08:23:02 [log_collector] {"stage_name":"log_collector","events_processed":14351,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2870.2,"last_update":"2026-03-22T08:22:57.367974337Z"} +2026/03/22 08:23:02 [metric_collector] {"stage_name":"metric_collector","events_processed":8489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1697.8,"last_update":"2026-03-22T08:22:57.368979042Z"} +2026/03/22 08:23:02 ───────────────────────────────────────────────── +2026/03/22 08:23:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:23:07 [log_collector] {"stage_name":"log_collector","events_processed":14352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2870.4,"last_update":"2026-03-22T08:23:02.368596475Z"} +2026/03/22 08:23:07 [metric_collector] {"stage_name":"metric_collector","events_processed":8494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1698.8,"last_update":"2026-03-22T08:23:02.368873786Z"} +2026/03/22 08:23:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3400,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:23:02.377466715Z"} +2026/03/22 08:23:07 [detection_layer] {"stage_name":"detection_layer","events_processed":283,"events_dropped":0,"avg_latency_ms":16.764047851979587,"throughput_eps":0,"last_update":"2026-03-22T08:23:02.479734371Z"} +2026/03/22 08:23:07 [transform_engine] {"stage_name":"transform_engine","events_processed":283,"events_dropped":0,"avg_latency_ms":496.0453689708786,"throughput_eps":0,"last_update":"2026-03-22T08:23:02.479746664Z"} +2026/03/22 08:23:07 ───────────────────────────────────────────────── +2026/03/22 08:23:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:23:12 [log_collector] {"stage_name":"log_collector","events_processed":14368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2873.6,"last_update":"2026-03-22T08:23:07.367999205Z"} +2026/03/22 08:23:12 [metric_collector] {"stage_name":"metric_collector","events_processed":8498,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1699.6,"last_update":"2026-03-22T08:23:07.36795523Z"} +2026/03/22 08:23:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3402,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:23:07.376615008Z"} +2026/03/22 08:23:12 [detection_layer] {"stage_name":"detection_layer","events_processed":283,"events_dropped":0,"avg_latency_ms":16.764047851979587,"throughput_eps":0,"last_update":"2026-03-22T08:23:07.479839576Z"} +2026/03/22 08:23:12 [transform_engine] {"stage_name":"transform_engine","events_processed":283,"events_dropped":0,"avg_latency_ms":496.0453689708786,"throughput_eps":0,"last_update":"2026-03-22T08:23:07.479889972Z"} +2026/03/22 08:23:12 ───────────────────────────────────────────────── +2026/03/22 08:23:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:23:17 [log_collector] {"stage_name":"log_collector","events_processed":14368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2873.6,"last_update":"2026-03-22T08:23:17.368560057Z"} +2026/03/22 08:23:17 [metric_collector] {"stage_name":"metric_collector","events_processed":8504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1700.8,"last_update":"2026-03-22T08:23:12.369323221Z"} +2026/03/22 08:23:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:23:12.377531443Z"} +2026/03/22 08:23:17 [detection_layer] {"stage_name":"detection_layer","events_processed":283,"events_dropped":0,"avg_latency_ms":16.764047851979587,"throughput_eps":0,"last_update":"2026-03-22T08:23:12.479851258Z"} +2026/03/22 08:23:17 [transform_engine] {"stage_name":"transform_engine","events_processed":283,"events_dropped":0,"avg_latency_ms":496.0453689708786,"throughput_eps":0,"last_update":"2026-03-22T08:23:12.479833333Z"} +2026/03/22 08:23:17 ───────────────────────────────────────────────── +2026/03/22 08:23:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:23:22 [transform_engine] {"stage_name":"transform_engine","events_processed":283,"events_dropped":0,"avg_latency_ms":496.0453689708786,"throughput_eps":0,"last_update":"2026-03-22T08:23:17.479481398Z"} +2026/03/22 08:23:22 [log_collector] {"stage_name":"log_collector","events_processed":14368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2873.6,"last_update":"2026-03-22T08:23:17.368560057Z"} +2026/03/22 08:23:22 [metric_collector] {"stage_name":"metric_collector","events_processed":8509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1701.8,"last_update":"2026-03-22T08:23:17.369111794Z"} +2026/03/22 08:23:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:23:17.379291273Z"} +2026/03/22 08:23:22 [detection_layer] {"stage_name":"detection_layer","events_processed":283,"events_dropped":0,"avg_latency_ms":16.764047851979587,"throughput_eps":0,"last_update":"2026-03-22T08:23:17.479501846Z"} +2026/03/22 08:23:22 ───────────────────────────────────────────────── +2026/03/22 08:23:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:23:27 [transform_engine] {"stage_name":"transform_engine","events_processed":283,"events_dropped":0,"avg_latency_ms":496.0453689708786,"throughput_eps":0,"last_update":"2026-03-22T08:23:22.478969252Z"} +2026/03/22 08:23:27 [log_collector] {"stage_name":"log_collector","events_processed":14368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2873.6,"last_update":"2026-03-22T08:23:27.368221744Z"} +2026/03/22 08:23:27 [metric_collector] {"stage_name":"metric_collector","events_processed":8514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1702.8,"last_update":"2026-03-22T08:23:22.369004594Z"} +2026/03/22 08:23:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3408,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:23:22.378186692Z"} +2026/03/22 08:23:27 [detection_layer] {"stage_name":"detection_layer","events_processed":283,"events_dropped":0,"avg_latency_ms":16.764047851979587,"throughput_eps":0,"last_update":"2026-03-22T08:23:22.478948462Z"} +2026/03/22 08:23:27 ───────────────────────────────────────────────── +2026/03/22 08:23:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:23:32 [detection_layer] {"stage_name":"detection_layer","events_processed":283,"events_dropped":0,"avg_latency_ms":16.764047851979587,"throughput_eps":0,"last_update":"2026-03-22T08:23:27.47937502Z"} +2026/03/22 08:23:32 [transform_engine] {"stage_name":"transform_engine","events_processed":284,"events_dropped":0,"avg_latency_ms":419.9113153767029,"throughput_eps":0,"last_update":"2026-03-22T08:23:27.594699844Z"} +2026/03/22 08:23:32 [log_collector] {"stage_name":"log_collector","events_processed":14368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2873.6,"last_update":"2026-03-22T08:23:32.368079949Z"} +2026/03/22 08:23:32 [metric_collector] {"stage_name":"metric_collector","events_processed":8519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1703.8,"last_update":"2026-03-22T08:23:27.369266927Z"} +2026/03/22 08:23:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:23:27.376973599Z"} +2026/03/22 08:23:32 ───────────────────────────────────────────────── +2026/03/22 08:23:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:23:37 [log_collector] {"stage_name":"log_collector","events_processed":14368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2873.6,"last_update":"2026-03-22T08:23:37.36805318Z"} +2026/03/22 08:23:37 [metric_collector] {"stage_name":"metric_collector","events_processed":8524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1704.8,"last_update":"2026-03-22T08:23:32.368962229Z"} +2026/03/22 08:23:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:23:32.377813975Z"} +2026/03/22 08:23:37 [detection_layer] {"stage_name":"detection_layer","events_processed":284,"events_dropped":0,"avg_latency_ms":17.331489681583673,"throughput_eps":0,"last_update":"2026-03-22T08:23:32.479305452Z"} +2026/03/22 08:23:37 [transform_engine] {"stage_name":"transform_engine","events_processed":284,"events_dropped":0,"avg_latency_ms":419.9113153767029,"throughput_eps":0,"last_update":"2026-03-22T08:23:32.479169782Z"} +2026/03/22 08:23:37 ───────────────────────────────────────────────── +2026/03/22 08:23:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:23:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:23:37.37974203Z"} +2026/03/22 08:23:42 [detection_layer] {"stage_name":"detection_layer","events_processed":284,"events_dropped":0,"avg_latency_ms":17.331489681583673,"throughput_eps":0,"last_update":"2026-03-22T08:23:37.47894271Z"} +2026/03/22 08:23:42 [transform_engine] {"stage_name":"transform_engine","events_processed":284,"events_dropped":0,"avg_latency_ms":419.9113153767029,"throughput_eps":0,"last_update":"2026-03-22T08:23:37.478935796Z"} +2026/03/22 08:23:42 [log_collector] {"stage_name":"log_collector","events_processed":14368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2873.6,"last_update":"2026-03-22T08:23:42.367974418Z"} +2026/03/22 08:23:42 [metric_collector] {"stage_name":"metric_collector","events_processed":8529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1705.8,"last_update":"2026-03-22T08:23:37.368954907Z"} +2026/03/22 08:23:42 ───────────────────────────────────────────────── +2026/03/22 08:23:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:23:47 [detection_layer] {"stage_name":"detection_layer","events_processed":284,"events_dropped":0,"avg_latency_ms":17.331489681583673,"throughput_eps":0,"last_update":"2026-03-22T08:23:42.479570301Z"} +2026/03/22 08:23:47 [transform_engine] {"stage_name":"transform_engine","events_processed":284,"events_dropped":0,"avg_latency_ms":419.9113153767029,"throughput_eps":0,"last_update":"2026-03-22T08:23:42.47960139Z"} +2026/03/22 08:23:47 [log_collector] {"stage_name":"log_collector","events_processed":14368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2873.6,"last_update":"2026-03-22T08:23:42.367974418Z"} +2026/03/22 08:23:47 [metric_collector] {"stage_name":"metric_collector","events_processed":8534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1706.8,"last_update":"2026-03-22T08:23:42.368860035Z"} +2026/03/22 08:23:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:23:42.378106797Z"} +2026/03/22 08:23:47 ───────────────────────────────────────────────── +2026/03/22 08:23:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:23:52 [transform_engine] {"stage_name":"transform_engine","events_processed":284,"events_dropped":0,"avg_latency_ms":419.9113153767029,"throughput_eps":0,"last_update":"2026-03-22T08:23:47.479272557Z"} +2026/03/22 08:23:52 [log_collector] {"stage_name":"log_collector","events_processed":14368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2873.6,"last_update":"2026-03-22T08:23:47.368479704Z"} +2026/03/22 08:23:52 [metric_collector] {"stage_name":"metric_collector","events_processed":8539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1707.8,"last_update":"2026-03-22T08:23:47.368920197Z"} +2026/03/22 08:23:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:23:47.37689344Z"} +2026/03/22 08:23:52 [detection_layer] {"stage_name":"detection_layer","events_processed":284,"events_dropped":0,"avg_latency_ms":17.331489681583673,"throughput_eps":0,"last_update":"2026-03-22T08:23:47.479221219Z"} +2026/03/22 08:23:52 ───────────────────────────────────────────────── +2026/03/22 08:23:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:23:57 [detection_layer] {"stage_name":"detection_layer","events_processed":284,"events_dropped":0,"avg_latency_ms":17.331489681583673,"throughput_eps":0,"last_update":"2026-03-22T08:23:52.479220282Z"} +2026/03/22 08:23:57 [transform_engine] {"stage_name":"transform_engine","events_processed":284,"events_dropped":0,"avg_latency_ms":419.9113153767029,"throughput_eps":0,"last_update":"2026-03-22T08:23:52.479031741Z"} +2026/03/22 08:23:57 [log_collector] {"stage_name":"log_collector","events_processed":14368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2873.6,"last_update":"2026-03-22T08:23:57.368118587Z"} +2026/03/22 08:23:57 [metric_collector] {"stage_name":"metric_collector","events_processed":8544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1708.8,"last_update":"2026-03-22T08:23:52.368660685Z"} +2026/03/22 08:23:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3420,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:23:52.377777929Z"} +2026/03/22 08:23:57 ───────────────────────────────────────────────── +2026/03/22 08:24:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:24:02 [transform_engine] {"stage_name":"transform_engine","events_processed":285,"events_dropped":0,"avg_latency_ms":349.9609403013623,"throughput_eps":0,"last_update":"2026-03-22T08:23:57.549054852Z"} +2026/03/22 08:24:02 [log_collector] {"stage_name":"log_collector","events_processed":14368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2873.6,"last_update":"2026-03-22T08:23:57.368118587Z"} +2026/03/22 08:24:02 [metric_collector] {"stage_name":"metric_collector","events_processed":8549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1709.8,"last_update":"2026-03-22T08:23:57.368556406Z"} +2026/03/22 08:24:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:23:57.378719774Z"} +2026/03/22 08:24:02 [detection_layer] {"stage_name":"detection_layer","events_processed":284,"events_dropped":0,"avg_latency_ms":17.331489681583673,"throughput_eps":0,"last_update":"2026-03-22T08:23:57.478997967Z"} +2026/03/22 08:24:02 ───────────────────────────────────────────────── +2026/03/22 08:24:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:24:07 [transform_engine] {"stage_name":"transform_engine","events_processed":285,"events_dropped":0,"avg_latency_ms":349.9609403013623,"throughput_eps":0,"last_update":"2026-03-22T08:24:02.478902942Z"} +2026/03/22 08:24:07 [log_collector] {"stage_name":"log_collector","events_processed":14368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2873.6,"last_update":"2026-03-22T08:24:02.368119447Z"} +2026/03/22 08:24:07 [metric_collector] {"stage_name":"metric_collector","events_processed":8554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1710.8,"last_update":"2026-03-22T08:24:02.368318668Z"} +2026/03/22 08:24:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:24:02.376685445Z"} +2026/03/22 08:24:07 [detection_layer] {"stage_name":"detection_layer","events_processed":285,"events_dropped":0,"avg_latency_ms":17.77251414526694,"throughput_eps":0,"last_update":"2026-03-22T08:24:02.479032721Z"} +2026/03/22 08:24:07 ───────────────────────────────────────────────── +2026/03/22 08:24:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:24:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:24:07.368093311Z"} +2026/03/22 08:24:12 [detection_layer] {"stage_name":"detection_layer","events_processed":285,"events_dropped":0,"avg_latency_ms":17.77251414526694,"throughput_eps":0,"last_update":"2026-03-22T08:24:07.479508196Z"} +2026/03/22 08:24:12 [transform_engine] {"stage_name":"transform_engine","events_processed":285,"events_dropped":0,"avg_latency_ms":349.9609403013623,"throughput_eps":0,"last_update":"2026-03-22T08:24:07.479402283Z"} +2026/03/22 08:24:12 [log_collector] {"stage_name":"log_collector","events_processed":14368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2873.6,"last_update":"2026-03-22T08:24:12.368723689Z"} +2026/03/22 08:24:12 [metric_collector] {"stage_name":"metric_collector","events_processed":8559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1711.8,"last_update":"2026-03-22T08:24:07.368807218Z"} +2026/03/22 08:24:12 ───────────────────────────────────────────────── +Saved state: 11 clusters, 14369 messages, reason: none +2026/03/22 08:24:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:24:17 [log_collector] {"stage_name":"log_collector","events_processed":14368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2873.6,"last_update":"2026-03-22T08:24:12.368723689Z"} +2026/03/22 08:24:17 [metric_collector] {"stage_name":"metric_collector","events_processed":8564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1712.8,"last_update":"2026-03-22T08:24:12.369472032Z"} +2026/03/22 08:24:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:24:12.379453011Z"} +2026/03/22 08:24:17 [detection_layer] {"stage_name":"detection_layer","events_processed":285,"events_dropped":0,"avg_latency_ms":17.77251414526694,"throughput_eps":0,"last_update":"2026-03-22T08:24:12.479823711Z"} +2026/03/22 08:24:17 [transform_engine] {"stage_name":"transform_engine","events_processed":285,"events_dropped":0,"avg_latency_ms":349.9609403013623,"throughput_eps":0,"last_update":"2026-03-22T08:24:12.479863417Z"} +2026/03/22 08:24:17 ───────────────────────────────────────────────── +2026/03/22 08:24:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:24:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:24:17.376576168Z"} +2026/03/22 08:24:22 [detection_layer] {"stage_name":"detection_layer","events_processed":285,"events_dropped":0,"avg_latency_ms":17.77251414526694,"throughput_eps":0,"last_update":"2026-03-22T08:24:17.479864979Z"} +2026/03/22 08:24:22 [transform_engine] {"stage_name":"transform_engine","events_processed":285,"events_dropped":0,"avg_latency_ms":349.9609403013623,"throughput_eps":0,"last_update":"2026-03-22T08:24:17.479797109Z"} +2026/03/22 08:24:22 [log_collector] {"stage_name":"log_collector","events_processed":14371,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2874.2,"last_update":"2026-03-22T08:24:17.368848586Z"} +2026/03/22 08:24:22 [metric_collector] {"stage_name":"metric_collector","events_processed":8569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1713.8,"last_update":"2026-03-22T08:24:17.369018962Z"} +2026/03/22 08:24:22 ───────────────────────────────────────────────── +2026/03/22 08:24:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:24:27 [log_collector] {"stage_name":"log_collector","events_processed":14382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2876.4,"last_update":"2026-03-22T08:24:22.367978866Z"} +2026/03/22 08:24:27 [metric_collector] {"stage_name":"metric_collector","events_processed":8574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1714.8,"last_update":"2026-03-22T08:24:22.368325971Z"} +2026/03/22 08:24:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:24:22.377376717Z"} +2026/03/22 08:24:27 [detection_layer] {"stage_name":"detection_layer","events_processed":285,"events_dropped":0,"avg_latency_ms":17.77251414526694,"throughput_eps":0,"last_update":"2026-03-22T08:24:22.479680931Z"} +2026/03/22 08:24:27 [transform_engine] {"stage_name":"transform_engine","events_processed":285,"events_dropped":0,"avg_latency_ms":349.9609403013623,"throughput_eps":0,"last_update":"2026-03-22T08:24:22.479568265Z"} +2026/03/22 08:24:27 ───────────────────────────────────────────────── +2026/03/22 08:24:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:24:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:24:27.379440213Z"} +2026/03/22 08:24:32 [detection_layer] {"stage_name":"detection_layer","events_processed":285,"events_dropped":0,"avg_latency_ms":17.77251414526694,"throughput_eps":0,"last_update":"2026-03-22T08:24:27.479738815Z"} +2026/03/22 08:24:32 [transform_engine] {"stage_name":"transform_engine","events_processed":286,"events_dropped":0,"avg_latency_ms":322.5891012410899,"throughput_eps":0,"last_update":"2026-03-22T08:24:27.692737021Z"} +2026/03/22 08:24:32 [log_collector] {"stage_name":"log_collector","events_processed":14382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2876.4,"last_update":"2026-03-22T08:24:27.368975166Z"} +2026/03/22 08:24:32 [metric_collector] {"stage_name":"metric_collector","events_processed":8579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1715.8,"last_update":"2026-03-22T08:24:27.369267997Z"} +2026/03/22 08:24:32 ───────────────────────────────────────────────── +2026/03/22 08:24:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:24:37 [log_collector] {"stage_name":"log_collector","events_processed":14382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2876.4,"last_update":"2026-03-22T08:24:32.368134657Z"} +2026/03/22 08:24:37 [metric_collector] {"stage_name":"metric_collector","events_processed":8584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1716.8,"last_update":"2026-03-22T08:24:32.36884125Z"} +2026/03/22 08:24:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:24:32.378065408Z"} +2026/03/22 08:24:37 [detection_layer] {"stage_name":"detection_layer","events_processed":286,"events_dropped":0,"avg_latency_ms":17.88611771621355,"throughput_eps":0,"last_update":"2026-03-22T08:24:32.479401658Z"} +2026/03/22 08:24:37 [transform_engine] {"stage_name":"transform_engine","events_processed":286,"events_dropped":0,"avg_latency_ms":322.5891012410899,"throughput_eps":0,"last_update":"2026-03-22T08:24:32.479273873Z"} +2026/03/22 08:24:37 ───────────────────────────────────────────────── +2026/03/22 08:24:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:24:42 [metric_collector] {"stage_name":"metric_collector","events_processed":8589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1717.8,"last_update":"2026-03-22T08:24:37.368804035Z"} +2026/03/22 08:24:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:24:37.37761916Z"} +2026/03/22 08:24:42 [detection_layer] {"stage_name":"detection_layer","events_processed":286,"events_dropped":0,"avg_latency_ms":17.88611771621355,"throughput_eps":0,"last_update":"2026-03-22T08:24:37.479982647Z"} +2026/03/22 08:24:42 [transform_engine] {"stage_name":"transform_engine","events_processed":286,"events_dropped":0,"avg_latency_ms":322.5891012410899,"throughput_eps":0,"last_update":"2026-03-22T08:24:37.478829609Z"} +2026/03/22 08:24:42 [log_collector] {"stage_name":"log_collector","events_processed":14382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2876.4,"last_update":"2026-03-22T08:24:42.3679888Z"} +2026/03/22 08:24:42 ───────────────────────────────────────────────── +2026/03/22 08:24:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:24:47 [log_collector] {"stage_name":"log_collector","events_processed":14382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2876.4,"last_update":"2026-03-22T08:24:42.3679888Z"} +2026/03/22 08:24:47 [metric_collector] {"stage_name":"metric_collector","events_processed":8594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1718.8,"last_update":"2026-03-22T08:24:42.368913812Z"} +2026/03/22 08:24:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:24:42.377798941Z"} +2026/03/22 08:24:47 [detection_layer] {"stage_name":"detection_layer","events_processed":286,"events_dropped":0,"avg_latency_ms":17.88611771621355,"throughput_eps":0,"last_update":"2026-03-22T08:24:42.479075416Z"} +2026/03/22 08:24:47 [transform_engine] {"stage_name":"transform_engine","events_processed":286,"events_dropped":0,"avg_latency_ms":322.5891012410899,"throughput_eps":0,"last_update":"2026-03-22T08:24:42.478889038Z"} +2026/03/22 08:24:47 ───────────────────────────────────────────────── +2026/03/22 08:24:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:24:52 [detection_layer] {"stage_name":"detection_layer","events_processed":286,"events_dropped":0,"avg_latency_ms":17.88611771621355,"throughput_eps":0,"last_update":"2026-03-22T08:24:47.479791858Z"} +2026/03/22 08:24:52 [transform_engine] {"stage_name":"transform_engine","events_processed":286,"events_dropped":0,"avg_latency_ms":322.5891012410899,"throughput_eps":0,"last_update":"2026-03-22T08:24:47.479684954Z"} +2026/03/22 08:24:52 [log_collector] {"stage_name":"log_collector","events_processed":14382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2876.4,"last_update":"2026-03-22T08:24:47.368919272Z"} +2026/03/22 08:24:52 [metric_collector] {"stage_name":"metric_collector","events_processed":8599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1719.8,"last_update":"2026-03-22T08:24:47.369204789Z"} +2026/03/22 08:24:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3442,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:24:47.379512272Z"} +2026/03/22 08:24:52 ───────────────────────────────────────────────── +2026/03/22 08:24:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:24:57 [metric_collector] {"stage_name":"metric_collector","events_processed":8604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1720.8,"last_update":"2026-03-22T08:24:52.368635596Z"} +2026/03/22 08:24:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:24:52.376857706Z"} +2026/03/22 08:24:57 [detection_layer] {"stage_name":"detection_layer","events_processed":286,"events_dropped":0,"avg_latency_ms":17.88611771621355,"throughput_eps":0,"last_update":"2026-03-22T08:24:52.479222786Z"} +2026/03/22 08:24:57 [transform_engine] {"stage_name":"transform_engine","events_processed":286,"events_dropped":0,"avg_latency_ms":322.5891012410899,"throughput_eps":0,"last_update":"2026-03-22T08:24:52.479263744Z"} +2026/03/22 08:24:57 [log_collector] {"stage_name":"log_collector","events_processed":14382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2876.4,"last_update":"2026-03-22T08:24:52.368176697Z"} +2026/03/22 08:24:57 ───────────────────────────────────────────────── +2026/03/22 08:25:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:25:02 [log_collector] {"stage_name":"log_collector","events_processed":14382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2876.4,"last_update":"2026-03-22T08:24:57.368407506Z"} +2026/03/22 08:25:02 [metric_collector] {"stage_name":"metric_collector","events_processed":8609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1721.8,"last_update":"2026-03-22T08:24:57.36864457Z"} +2026/03/22 08:25:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3446,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:24:57.377440157Z"} +2026/03/22 08:25:02 [detection_layer] {"stage_name":"detection_layer","events_processed":286,"events_dropped":0,"avg_latency_ms":17.88611771621355,"throughput_eps":0,"last_update":"2026-03-22T08:24:57.480503966Z"} +2026/03/22 08:25:02 [transform_engine] {"stage_name":"transform_engine","events_processed":287,"events_dropped":0,"avg_latency_ms":272.13590179287195,"throughput_eps":0,"last_update":"2026-03-22T08:24:57.549999042Z"} +2026/03/22 08:25:02 ───────────────────────────────────────────────── +2026/03/22 08:25:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:25:07 [log_collector] {"stage_name":"log_collector","events_processed":14382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2876.4,"last_update":"2026-03-22T08:25:02.368922936Z"} +2026/03/22 08:25:07 [metric_collector] {"stage_name":"metric_collector","events_processed":8614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1722.8,"last_update":"2026-03-22T08:25:02.369271484Z"} +2026/03/22 08:25:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:25:02.378250513Z"} +2026/03/22 08:25:07 [detection_layer] {"stage_name":"detection_layer","events_processed":287,"events_dropped":0,"avg_latency_ms":18.443549972970843,"throughput_eps":0,"last_update":"2026-03-22T08:25:02.479477402Z"} +2026/03/22 08:25:07 [transform_engine] {"stage_name":"transform_engine","events_processed":287,"events_dropped":0,"avg_latency_ms":272.13590179287195,"throughput_eps":0,"last_update":"2026-03-22T08:25:02.47944977Z"} +2026/03/22 08:25:07 ───────────────────────────────────────────────── +2026/03/22 08:25:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:25:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:25:07.377323537Z"} +2026/03/22 08:25:12 [detection_layer] {"stage_name":"detection_layer","events_processed":287,"events_dropped":0,"avg_latency_ms":18.443549972970843,"throughput_eps":0,"last_update":"2026-03-22T08:25:07.479521015Z"} +2026/03/22 08:25:12 [transform_engine] {"stage_name":"transform_engine","events_processed":287,"events_dropped":0,"avg_latency_ms":272.13590179287195,"throughput_eps":0,"last_update":"2026-03-22T08:25:07.479557815Z"} +2026/03/22 08:25:12 [log_collector] {"stage_name":"log_collector","events_processed":14382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2876.4,"last_update":"2026-03-22T08:25:12.36849381Z"} +2026/03/22 08:25:12 [metric_collector] {"stage_name":"metric_collector","events_processed":8619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1723.8,"last_update":"2026-03-22T08:25:07.368308839Z"} +2026/03/22 08:25:12 ───────────────────────────────────────────────── +2026/03/22 08:25:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:25:17 [metric_collector] {"stage_name":"metric_collector","events_processed":8624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1724.8,"last_update":"2026-03-22T08:25:12.36879682Z"} +2026/03/22 08:25:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3452,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:25:12.377582569Z"} +2026/03/22 08:25:17 [detection_layer] {"stage_name":"detection_layer","events_processed":287,"events_dropped":0,"avg_latency_ms":18.443549972970843,"throughput_eps":0,"last_update":"2026-03-22T08:25:12.479935776Z"} +2026/03/22 08:25:17 [transform_engine] {"stage_name":"transform_engine","events_processed":287,"events_dropped":0,"avg_latency_ms":272.13590179287195,"throughput_eps":0,"last_update":"2026-03-22T08:25:12.480055065Z"} +2026/03/22 08:25:17 [log_collector] {"stage_name":"log_collector","events_processed":14382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2876.4,"last_update":"2026-03-22T08:25:12.36849381Z"} +2026/03/22 08:25:17 ───────────────────────────────────────────────── +2026/03/22 08:25:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:25:22 [metric_collector] {"stage_name":"metric_collector","events_processed":8629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1725.8,"last_update":"2026-03-22T08:25:17.368648149Z"} +2026/03/22 08:25:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:25:17.378832878Z"} +2026/03/22 08:25:22 [detection_layer] {"stage_name":"detection_layer","events_processed":287,"events_dropped":0,"avg_latency_ms":18.443549972970843,"throughput_eps":0,"last_update":"2026-03-22T08:25:17.479065172Z"} +2026/03/22 08:25:22 [transform_engine] {"stage_name":"transform_engine","events_processed":287,"events_dropped":0,"avg_latency_ms":272.13590179287195,"throughput_eps":0,"last_update":"2026-03-22T08:25:17.479089168Z"} +2026/03/22 08:25:22 [log_collector] {"stage_name":"log_collector","events_processed":14382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2876.4,"last_update":"2026-03-22T08:25:22.368292408Z"} +2026/03/22 08:25:22 ───────────────────────────────────────────────── +Saved state: 11 clusters, 14383 messages, reason: none +2026/03/22 08:25:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:25:27 [log_collector] {"stage_name":"log_collector","events_processed":14382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2876.4,"last_update":"2026-03-22T08:25:22.368292408Z"} +2026/03/22 08:25:27 [metric_collector] {"stage_name":"metric_collector","events_processed":8634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1726.8,"last_update":"2026-03-22T08:25:22.368746609Z"} +2026/03/22 08:25:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:25:22.378174598Z"} +2026/03/22 08:25:27 [detection_layer] {"stage_name":"detection_layer","events_processed":287,"events_dropped":0,"avg_latency_ms":18.443549972970843,"throughput_eps":0,"last_update":"2026-03-22T08:25:22.478987465Z"} +2026/03/22 08:25:27 [transform_engine] {"stage_name":"transform_engine","events_processed":287,"events_dropped":0,"avg_latency_ms":272.13590179287195,"throughput_eps":0,"last_update":"2026-03-22T08:25:22.479194611Z"} +2026/03/22 08:25:27 ───────────────────────────────────────────────── +2026/03/22 08:25:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:25:32 [detection_layer] {"stage_name":"detection_layer","events_processed":287,"events_dropped":0,"avg_latency_ms":18.443549972970843,"throughput_eps":0,"last_update":"2026-03-22T08:25:27.479192676Z"} +2026/03/22 08:25:32 [transform_engine] {"stage_name":"transform_engine","events_processed":288,"events_dropped":0,"avg_latency_ms":395.8488252342976,"throughput_eps":0,"last_update":"2026-03-22T08:25:28.369931078Z"} +2026/03/22 08:25:32 [log_collector] {"stage_name":"log_collector","events_processed":14387,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2877.4,"last_update":"2026-03-22T08:25:32.368623969Z"} +2026/03/22 08:25:32 [metric_collector] {"stage_name":"metric_collector","events_processed":8639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1727.8,"last_update":"2026-03-22T08:25:27.368138102Z"} +2026/03/22 08:25:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:25:27.375014514Z"} +2026/03/22 08:25:32 ───────────────────────────────────────────────── +2026/03/22 08:25:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:25:37 [log_collector] {"stage_name":"log_collector","events_processed":14387,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2877.4,"last_update":"2026-03-22T08:25:32.368623969Z"} +2026/03/22 08:25:37 [metric_collector] {"stage_name":"metric_collector","events_processed":8644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1728.8,"last_update":"2026-03-22T08:25:32.369184143Z"} +2026/03/22 08:25:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:25:32.377656311Z"} +2026/03/22 08:25:37 [detection_layer] {"stage_name":"detection_layer","events_processed":288,"events_dropped":0,"avg_latency_ms":18.004600778376673,"throughput_eps":0,"last_update":"2026-03-22T08:25:32.479867646Z"} +2026/03/22 08:25:37 [transform_engine] {"stage_name":"transform_engine","events_processed":288,"events_dropped":0,"avg_latency_ms":395.8488252342976,"throughput_eps":0,"last_update":"2026-03-22T08:25:32.479882364Z"} +2026/03/22 08:25:37 ───────────────────────────────────────────────── +2026/03/22 08:25:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:25:42 [log_collector] {"stage_name":"log_collector","events_processed":14387,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2877.4,"last_update":"2026-03-22T08:25:42.368430424Z"} +2026/03/22 08:25:42 [metric_collector] {"stage_name":"metric_collector","events_processed":8649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1729.8,"last_update":"2026-03-22T08:25:37.368181536Z"} +2026/03/22 08:25:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:25:37.379064212Z"} +2026/03/22 08:25:42 [detection_layer] {"stage_name":"detection_layer","events_processed":288,"events_dropped":0,"avg_latency_ms":18.004600778376673,"throughput_eps":0,"last_update":"2026-03-22T08:25:37.479233445Z"} +2026/03/22 08:25:42 [transform_engine] {"stage_name":"transform_engine","events_processed":288,"events_dropped":0,"avg_latency_ms":395.8488252342976,"throughput_eps":0,"last_update":"2026-03-22T08:25:37.479248334Z"} +2026/03/22 08:25:42 ───────────────────────────────────────────────── +2026/03/22 08:25:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:25:47 [metric_collector] {"stage_name":"metric_collector","events_processed":8654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1730.8,"last_update":"2026-03-22T08:25:42.369147016Z"} +2026/03/22 08:25:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:25:42.382374644Z"} +2026/03/22 08:25:47 [detection_layer] {"stage_name":"detection_layer","events_processed":288,"events_dropped":0,"avg_latency_ms":18.004600778376673,"throughput_eps":0,"last_update":"2026-03-22T08:25:42.479563398Z"} +2026/03/22 08:25:47 [transform_engine] {"stage_name":"transform_engine","events_processed":288,"events_dropped":0,"avg_latency_ms":395.8488252342976,"throughput_eps":0,"last_update":"2026-03-22T08:25:42.479574089Z"} +2026/03/22 08:25:47 [log_collector] {"stage_name":"log_collector","events_processed":14387,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2877.4,"last_update":"2026-03-22T08:25:42.368430424Z"} +2026/03/22 08:25:47 ───────────────────────────────────────────────── +2026/03/22 08:25:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:25:52 [metric_collector] {"stage_name":"metric_collector","events_processed":8659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1731.8,"last_update":"2026-03-22T08:25:47.369114864Z"} +2026/03/22 08:25:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:25:47.375905882Z"} +2026/03/22 08:25:52 [detection_layer] {"stage_name":"detection_layer","events_processed":288,"events_dropped":0,"avg_latency_ms":18.004600778376673,"throughput_eps":0,"last_update":"2026-03-22T08:25:47.479083397Z"} +2026/03/22 08:25:52 [transform_engine] {"stage_name":"transform_engine","events_processed":288,"events_dropped":0,"avg_latency_ms":395.8488252342976,"throughput_eps":0,"last_update":"2026-03-22T08:25:47.479094849Z"} +2026/03/22 08:25:52 [log_collector] {"stage_name":"log_collector","events_processed":14387,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2877.4,"last_update":"2026-03-22T08:25:47.368175304Z"} +2026/03/22 08:25:52 ───────────────────────────────────────────────── +2026/03/22 08:25:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:25:57 [transform_engine] {"stage_name":"transform_engine","events_processed":288,"events_dropped":0,"avg_latency_ms":395.8488252342976,"throughput_eps":0,"last_update":"2026-03-22T08:25:52.479302555Z"} +2026/03/22 08:25:57 [log_collector] {"stage_name":"log_collector","events_processed":14387,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2877.4,"last_update":"2026-03-22T08:25:52.368459025Z"} +2026/03/22 08:25:57 [metric_collector] {"stage_name":"metric_collector","events_processed":8664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1732.8,"last_update":"2026-03-22T08:25:52.368494021Z"} +2026/03/22 08:25:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:25:52.377089426Z"} +2026/03/22 08:25:57 [detection_layer] {"stage_name":"detection_layer","events_processed":288,"events_dropped":0,"avg_latency_ms":18.004600778376673,"throughput_eps":0,"last_update":"2026-03-22T08:25:52.479289679Z"} +2026/03/22 08:25:57 ───────────────────────────────────────────────── +2026/03/22 08:25:57 [ANOMALY] time=2026-03-22T08:25:57Z score=0.8074 method=SEAD details=MAD!:w=0.49,s=0.76 RRCF-fast:w=0.13,s=0.90 RRCF-mid!:w=0.11,s=0.95 RRCF-slow!:w=0.10,s=1.00 COPOD!:w=0.16,s=0.67 +2026/03/22 08:26:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:26:02 [log_collector] {"stage_name":"log_collector","events_processed":14387,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2877.4,"last_update":"2026-03-22T08:25:57.368750047Z"} +2026/03/22 08:26:02 [metric_collector] {"stage_name":"metric_collector","events_processed":8669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1733.8,"last_update":"2026-03-22T08:25:57.368857814Z"} +2026/03/22 08:26:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3470,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:25:57.379972544Z"} +2026/03/22 08:26:02 [detection_layer] {"stage_name":"detection_layer","events_processed":288,"events_dropped":0,"avg_latency_ms":18.004600778376673,"throughput_eps":0,"last_update":"2026-03-22T08:25:57.47915668Z"} +2026/03/22 08:26:02 [transform_engine] {"stage_name":"transform_engine","events_processed":289,"events_dropped":0,"avg_latency_ms":413.2564111874381,"throughput_eps":0,"last_update":"2026-03-22T08:25:57.962055127Z"} +2026/03/22 08:26:02 ───────────────────────────────────────────────── +2026/03/22 08:26:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:26:07 [log_collector] {"stage_name":"log_collector","events_processed":14387,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2877.4,"last_update":"2026-03-22T08:26:02.368766201Z"} +2026/03/22 08:26:07 [metric_collector] {"stage_name":"metric_collector","events_processed":8674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1734.8,"last_update":"2026-03-22T08:26:02.369206894Z"} +2026/03/22 08:26:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:26:02.379465905Z"} +2026/03/22 08:26:07 [detection_layer] {"stage_name":"detection_layer","events_processed":289,"events_dropped":0,"avg_latency_ms":17.118035822701337,"throughput_eps":0,"last_update":"2026-03-22T08:26:02.479689552Z"} +2026/03/22 08:26:07 [transform_engine] {"stage_name":"transform_engine","events_processed":289,"events_dropped":0,"avg_latency_ms":413.2564111874381,"throughput_eps":0,"last_update":"2026-03-22T08:26:02.479673913Z"} +2026/03/22 08:26:07 ───────────────────────────────────────────────── +2026/03/22 08:26:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:26:12 [log_collector] {"stage_name":"log_collector","events_processed":14398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2879.6,"last_update":"2026-03-22T08:26:12.368631888Z"} +2026/03/22 08:26:12 [metric_collector] {"stage_name":"metric_collector","events_processed":8679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1735.8,"last_update":"2026-03-22T08:26:07.368319685Z"} +2026/03/22 08:26:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:26:07.377024007Z"} +2026/03/22 08:26:12 [detection_layer] {"stage_name":"detection_layer","events_processed":289,"events_dropped":0,"avg_latency_ms":17.118035822701337,"throughput_eps":0,"last_update":"2026-03-22T08:26:07.479235373Z"} +2026/03/22 08:26:12 [transform_engine] {"stage_name":"transform_engine","events_processed":289,"events_dropped":0,"avg_latency_ms":413.2564111874381,"throughput_eps":0,"last_update":"2026-03-22T08:26:07.479267564Z"} +2026/03/22 08:26:12 ───────────────────────────────────────────────── +2026/03/22 08:26:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:26:17 [log_collector] {"stage_name":"log_collector","events_processed":14621,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2924.2,"last_update":"2026-03-22T08:26:17.368214092Z"} +2026/03/22 08:26:17 [metric_collector] {"stage_name":"metric_collector","events_processed":8684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1736.8,"last_update":"2026-03-22T08:26:12.368974425Z"} +2026/03/22 08:26:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3476,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:26:12.378736063Z"} +2026/03/22 08:26:17 [detection_layer] {"stage_name":"detection_layer","events_processed":289,"events_dropped":0,"avg_latency_ms":17.118035822701337,"throughput_eps":0,"last_update":"2026-03-22T08:26:12.478949821Z"} +2026/03/22 08:26:17 [transform_engine] {"stage_name":"transform_engine","events_processed":289,"events_dropped":0,"avg_latency_ms":413.2564111874381,"throughput_eps":0,"last_update":"2026-03-22T08:26:12.478882261Z"} +2026/03/22 08:26:17 ───────────────────────────────────────────────── +2026/03/22 08:26:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:26:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:26:17.375328038Z"} +2026/03/22 08:26:22 [detection_layer] {"stage_name":"detection_layer","events_processed":289,"events_dropped":0,"avg_latency_ms":17.118035822701337,"throughput_eps":0,"last_update":"2026-03-22T08:26:17.479567998Z"} +2026/03/22 08:26:22 [transform_engine] {"stage_name":"transform_engine","events_processed":289,"events_dropped":0,"avg_latency_ms":413.2564111874381,"throughput_eps":0,"last_update":"2026-03-22T08:26:17.479577357Z"} +2026/03/22 08:26:22 [log_collector] {"stage_name":"log_collector","events_processed":14621,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2924.2,"last_update":"2026-03-22T08:26:17.368214092Z"} +2026/03/22 08:26:22 [metric_collector] {"stage_name":"metric_collector","events_processed":8689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1737.8,"last_update":"2026-03-22T08:26:17.368564873Z"} +2026/03/22 08:26:22 ───────────────────────────────────────────────── +2026/03/22 08:26:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:26:27 [detection_layer] {"stage_name":"detection_layer","events_processed":289,"events_dropped":0,"avg_latency_ms":17.118035822701337,"throughput_eps":0,"last_update":"2026-03-22T08:26:22.479087572Z"} +2026/03/22 08:26:27 [transform_engine] {"stage_name":"transform_engine","events_processed":289,"events_dropped":0,"avg_latency_ms":413.2564111874381,"throughput_eps":0,"last_update":"2026-03-22T08:26:22.479124231Z"} +2026/03/22 08:26:27 [log_collector] {"stage_name":"log_collector","events_processed":14740,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2948,"last_update":"2026-03-22T08:26:22.369092587Z"} +2026/03/22 08:26:27 [metric_collector] {"stage_name":"metric_collector","events_processed":8694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1738.8,"last_update":"2026-03-22T08:26:22.36963171Z"} +2026/03/22 08:26:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3480,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:26:22.378903219Z"} +2026/03/22 08:26:27 ───────────────────────────────────────────────── +2026/03/22 08:26:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:26:32 [metric_collector] {"stage_name":"metric_collector","events_processed":8699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1739.8,"last_update":"2026-03-22T08:26:27.368970655Z"} +2026/03/22 08:26:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3482,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:26:27.377725143Z"} +2026/03/22 08:26:32 [detection_layer] {"stage_name":"detection_layer","events_processed":289,"events_dropped":0,"avg_latency_ms":17.118035822701337,"throughput_eps":0,"last_update":"2026-03-22T08:26:27.480035206Z"} +2026/03/22 08:26:32 [transform_engine] {"stage_name":"transform_engine","events_processed":290,"events_dropped":0,"avg_latency_ms":353.76189114995054,"throughput_eps":0,"last_update":"2026-03-22T08:26:27.594653245Z"} +2026/03/22 08:26:32 [log_collector] {"stage_name":"log_collector","events_processed":14744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2948.8,"last_update":"2026-03-22T08:26:27.368570558Z"} +2026/03/22 08:26:32 ───────────────────────────────────────────────── +2026/03/22 08:26:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:26:37 [detection_layer] {"stage_name":"detection_layer","events_processed":290,"events_dropped":0,"avg_latency_ms":17.593056458161072,"throughput_eps":0,"last_update":"2026-03-22T08:26:32.479430845Z"} +2026/03/22 08:26:37 [transform_engine] {"stage_name":"transform_engine","events_processed":290,"events_dropped":0,"avg_latency_ms":353.76189114995054,"throughput_eps":0,"last_update":"2026-03-22T08:26:32.479439512Z"} +2026/03/22 08:26:37 [log_collector] {"stage_name":"log_collector","events_processed":14744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2948.8,"last_update":"2026-03-22T08:26:32.36798846Z"} +2026/03/22 08:26:37 [metric_collector] {"stage_name":"metric_collector","events_processed":8704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1740.8,"last_update":"2026-03-22T08:26:32.368480192Z"} +2026/03/22 08:26:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:26:32.37821062Z"} +2026/03/22 08:26:37 ───────────────────────────────────────────────── +2026/03/22 08:26:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:26:42 [log_collector] {"stage_name":"log_collector","events_processed":14744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2948.8,"last_update":"2026-03-22T08:26:42.36798503Z"} +2026/03/22 08:26:42 [metric_collector] {"stage_name":"metric_collector","events_processed":8709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1741.8,"last_update":"2026-03-22T08:26:37.369203061Z"} +2026/03/22 08:26:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3486,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:26:37.379265946Z"} +2026/03/22 08:26:42 [detection_layer] {"stage_name":"detection_layer","events_processed":290,"events_dropped":0,"avg_latency_ms":17.593056458161072,"throughput_eps":0,"last_update":"2026-03-22T08:26:37.479509812Z"} +2026/03/22 08:26:42 [transform_engine] {"stage_name":"transform_engine","events_processed":290,"events_dropped":0,"avg_latency_ms":353.76189114995054,"throughput_eps":0,"last_update":"2026-03-22T08:26:37.479520882Z"} +2026/03/22 08:26:42 ───────────────────────────────────────────────── +2026/03/22 08:26:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:26:47 [detection_layer] {"stage_name":"detection_layer","events_processed":290,"events_dropped":0,"avg_latency_ms":17.593056458161072,"throughput_eps":0,"last_update":"2026-03-22T08:26:42.478991502Z"} +2026/03/22 08:26:47 [transform_engine] {"stage_name":"transform_engine","events_processed":290,"events_dropped":0,"avg_latency_ms":353.76189114995054,"throughput_eps":0,"last_update":"2026-03-22T08:26:42.479003826Z"} +2026/03/22 08:26:47 [log_collector] {"stage_name":"log_collector","events_processed":14744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2948.8,"last_update":"2026-03-22T08:26:47.367989098Z"} +2026/03/22 08:26:47 [metric_collector] {"stage_name":"metric_collector","events_processed":8714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1742.8,"last_update":"2026-03-22T08:26:42.368923748Z"} +2026/03/22 08:26:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:26:42.377802034Z"} +2026/03/22 08:26:47 ───────────────────────────────────────────────── +2026/03/22 08:26:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:26:52 [log_collector] {"stage_name":"log_collector","events_processed":14744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2948.8,"last_update":"2026-03-22T08:26:52.367964851Z"} +2026/03/22 08:26:52 [metric_collector] {"stage_name":"metric_collector","events_processed":8719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1743.8,"last_update":"2026-03-22T08:26:47.368754184Z"} +2026/03/22 08:26:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3490,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:26:47.378789987Z"} +2026/03/22 08:26:52 [detection_layer] {"stage_name":"detection_layer","events_processed":290,"events_dropped":0,"avg_latency_ms":17.593056458161072,"throughput_eps":0,"last_update":"2026-03-22T08:26:47.478994958Z"} +2026/03/22 08:26:52 [transform_engine] {"stage_name":"transform_engine","events_processed":290,"events_dropped":0,"avg_latency_ms":353.76189114995054,"throughput_eps":0,"last_update":"2026-03-22T08:26:47.478888855Z"} +2026/03/22 08:26:52 ───────────────────────────────────────────────── +2026/03/22 08:26:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:26:57 [detection_layer] {"stage_name":"detection_layer","events_processed":290,"events_dropped":0,"avg_latency_ms":17.593056458161072,"throughput_eps":0,"last_update":"2026-03-22T08:26:52.479342543Z"} +2026/03/22 08:26:57 [transform_engine] {"stage_name":"transform_engine","events_processed":290,"events_dropped":0,"avg_latency_ms":353.76189114995054,"throughput_eps":0,"last_update":"2026-03-22T08:26:52.479456581Z"} +2026/03/22 08:26:57 [log_collector] {"stage_name":"log_collector","events_processed":14744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2948.8,"last_update":"2026-03-22T08:26:52.367964851Z"} +2026/03/22 08:26:57 [metric_collector] {"stage_name":"metric_collector","events_processed":8724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1744.8,"last_update":"2026-03-22T08:26:52.368722792Z"} +2026/03/22 08:26:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:26:52.379029034Z"} +2026/03/22 08:26:57 ───────────────────────────────────────────────── +2026/03/22 08:27:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:27:02 [metric_collector] {"stage_name":"metric_collector","events_processed":8729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1745.8,"last_update":"2026-03-22T08:26:57.369229809Z"} +2026/03/22 08:27:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:26:57.378263363Z"} +2026/03/22 08:27:02 [detection_layer] {"stage_name":"detection_layer","events_processed":290,"events_dropped":0,"avg_latency_ms":17.593056458161072,"throughput_eps":0,"last_update":"2026-03-22T08:26:57.47969273Z"} +2026/03/22 08:27:02 [transform_engine] {"stage_name":"transform_engine","events_processed":290,"events_dropped":0,"avg_latency_ms":353.76189114995054,"throughput_eps":0,"last_update":"2026-03-22T08:26:57.479579713Z"} +2026/03/22 08:27:02 [log_collector] {"stage_name":"log_collector","events_processed":14744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2948.8,"last_update":"2026-03-22T08:26:57.369158182Z"} +2026/03/22 08:27:02 ───────────────────────────────────────────────── +2026/03/22 08:27:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:27:07 [metric_collector] {"stage_name":"metric_collector","events_processed":8734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1746.8,"last_update":"2026-03-22T08:27:02.368317957Z"} +2026/03/22 08:27:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3496,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:27:02.378149599Z"} +2026/03/22 08:27:07 [detection_layer] {"stage_name":"detection_layer","events_processed":291,"events_dropped":0,"avg_latency_ms":18.35883996652886,"throughput_eps":0,"last_update":"2026-03-22T08:27:02.479554768Z"} +2026/03/22 08:27:07 [transform_engine] {"stage_name":"transform_engine","events_processed":291,"events_dropped":0,"avg_latency_ms":298.4068801199605,"throughput_eps":0,"last_update":"2026-03-22T08:27:02.479667495Z"} +2026/03/22 08:27:07 [log_collector] {"stage_name":"log_collector","events_processed":14744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2948.8,"last_update":"2026-03-22T08:27:07.368844047Z"} +2026/03/22 08:27:07 ───────────────────────────────────────────────── +2026/03/22 08:27:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:27:12 [log_collector] {"stage_name":"log_collector","events_processed":14744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2948.8,"last_update":"2026-03-22T08:27:07.368844047Z"} +2026/03/22 08:27:12 [metric_collector] {"stage_name":"metric_collector","events_processed":8739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1747.8,"last_update":"2026-03-22T08:27:07.369219566Z"} +2026/03/22 08:27:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3498,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:27:07.378128871Z"} +2026/03/22 08:27:12 [detection_layer] {"stage_name":"detection_layer","events_processed":291,"events_dropped":0,"avg_latency_ms":18.35883996652886,"throughput_eps":0,"last_update":"2026-03-22T08:27:07.479642849Z"} +2026/03/22 08:27:12 [transform_engine] {"stage_name":"transform_engine","events_processed":291,"events_dropped":0,"avg_latency_ms":298.4068801199605,"throughput_eps":0,"last_update":"2026-03-22T08:27:07.479709056Z"} +2026/03/22 08:27:12 ───────────────────────────────────────────────── +2026/03/22 08:27:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:27:17 [metric_collector] {"stage_name":"metric_collector","events_processed":8744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1748.8,"last_update":"2026-03-22T08:27:12.369045801Z"} +2026/03/22 08:27:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:27:12.377775814Z"} +2026/03/22 08:27:17 [detection_layer] {"stage_name":"detection_layer","events_processed":291,"events_dropped":0,"avg_latency_ms":18.35883996652886,"throughput_eps":0,"last_update":"2026-03-22T08:27:12.478976141Z"} +2026/03/22 08:27:17 [transform_engine] {"stage_name":"transform_engine","events_processed":291,"events_dropped":0,"avg_latency_ms":298.4068801199605,"throughput_eps":0,"last_update":"2026-03-22T08:27:12.478996821Z"} +2026/03/22 08:27:17 [log_collector] {"stage_name":"log_collector","events_processed":14744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2948.8,"last_update":"2026-03-22T08:27:12.368619845Z"} +2026/03/22 08:27:17 ───────────────────────────────────────────────── +2026/03/22 08:27:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:27:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:27:17.378038625Z"} +2026/03/22 08:27:22 [detection_layer] {"stage_name":"detection_layer","events_processed":291,"events_dropped":0,"avg_latency_ms":18.35883996652886,"throughput_eps":0,"last_update":"2026-03-22T08:27:17.479292034Z"} +2026/03/22 08:27:22 [transform_engine] {"stage_name":"transform_engine","events_processed":291,"events_dropped":0,"avg_latency_ms":298.4068801199605,"throughput_eps":0,"last_update":"2026-03-22T08:27:17.479235576Z"} +2026/03/22 08:27:22 [log_collector] {"stage_name":"log_collector","events_processed":14744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2948.8,"last_update":"2026-03-22T08:27:22.36798408Z"} +2026/03/22 08:27:22 [metric_collector] {"stage_name":"metric_collector","events_processed":8749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1749.8,"last_update":"2026-03-22T08:27:17.369502203Z"} +2026/03/22 08:27:22 ───────────────────────────────────────────────── +2026/03/22 08:27:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:27:27 [metric_collector] {"stage_name":"metric_collector","events_processed":8754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1750.8,"last_update":"2026-03-22T08:27:22.36850045Z"} +2026/03/22 08:27:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:27:22.378116889Z"} +2026/03/22 08:27:27 [detection_layer] {"stage_name":"detection_layer","events_processed":291,"events_dropped":0,"avg_latency_ms":18.35883996652886,"throughput_eps":0,"last_update":"2026-03-22T08:27:22.479288441Z"} +2026/03/22 08:27:27 [transform_engine] {"stage_name":"transform_engine","events_processed":291,"events_dropped":0,"avg_latency_ms":298.4068801199605,"throughput_eps":0,"last_update":"2026-03-22T08:27:22.479304883Z"} +2026/03/22 08:27:27 [log_collector] {"stage_name":"log_collector","events_processed":14744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2948.8,"last_update":"2026-03-22T08:27:27.367965138Z"} +2026/03/22 08:27:27 ───────────────────────────────────────────────── +2026/03/22 08:27:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:27:32 [transform_engine] {"stage_name":"transform_engine","events_processed":292,"events_dropped":0,"avg_latency_ms":252.7709658959684,"throughput_eps":0,"last_update":"2026-03-22T08:27:27.55010313Z"} +2026/03/22 08:27:32 [log_collector] {"stage_name":"log_collector","events_processed":14744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2948.8,"last_update":"2026-03-22T08:27:32.36819001Z"} +2026/03/22 08:27:32 [metric_collector] {"stage_name":"metric_collector","events_processed":8759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1751.8,"last_update":"2026-03-22T08:27:27.368510883Z"} +2026/03/22 08:27:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3506,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:27:27.377573673Z"} +2026/03/22 08:27:32 [detection_layer] {"stage_name":"detection_layer","events_processed":291,"events_dropped":0,"avg_latency_ms":18.35883996652886,"throughput_eps":0,"last_update":"2026-03-22T08:27:27.479983046Z"} +2026/03/22 08:27:32 ───────────────────────────────────────────────── +2026/03/22 08:27:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:27:37 [detection_layer] {"stage_name":"detection_layer","events_processed":292,"events_dropped":0,"avg_latency_ms":18.88949357322309,"throughput_eps":0,"last_update":"2026-03-22T08:27:32.479026586Z"} +2026/03/22 08:27:37 [transform_engine] {"stage_name":"transform_engine","events_processed":292,"events_dropped":0,"avg_latency_ms":252.7709658959684,"throughput_eps":0,"last_update":"2026-03-22T08:27:32.478982912Z"} +2026/03/22 08:27:37 [log_collector] {"stage_name":"log_collector","events_processed":14744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2948.8,"last_update":"2026-03-22T08:27:32.36819001Z"} +2026/03/22 08:27:37 [metric_collector] {"stage_name":"metric_collector","events_processed":8764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1752.8,"last_update":"2026-03-22T08:27:32.368950697Z"} +2026/03/22 08:27:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:27:32.37880362Z"} +2026/03/22 08:27:37 ───────────────────────────────────────────────── +2026/03/22 08:27:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:27:42 [log_collector] {"stage_name":"log_collector","events_processed":14744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2948.8,"last_update":"2026-03-22T08:27:37.368923154Z"} +2026/03/22 08:27:42 [metric_collector] {"stage_name":"metric_collector","events_processed":8769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1753.8,"last_update":"2026-03-22T08:27:37.369178482Z"} +2026/03/22 08:27:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:27:37.378384837Z"} +2026/03/22 08:27:42 [detection_layer] {"stage_name":"detection_layer","events_processed":292,"events_dropped":0,"avg_latency_ms":18.88949357322309,"throughput_eps":0,"last_update":"2026-03-22T08:27:37.479581818Z"} +2026/03/22 08:27:42 [transform_engine] {"stage_name":"transform_engine","events_processed":292,"events_dropped":0,"avg_latency_ms":252.7709658959684,"throughput_eps":0,"last_update":"2026-03-22T08:27:37.479561318Z"} +2026/03/22 08:27:42 ───────────────────────────────────────────────── +Saved state: 11 clusters, 14745 messages, reason: none +2026/03/22 08:27:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:27:47 [transform_engine] {"stage_name":"transform_engine","events_processed":292,"events_dropped":0,"avg_latency_ms":252.7709658959684,"throughput_eps":0,"last_update":"2026-03-22T08:27:42.479294836Z"} +2026/03/22 08:27:47 [log_collector] {"stage_name":"log_collector","events_processed":14747,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2949.4,"last_update":"2026-03-22T08:27:47.368854885Z"} +2026/03/22 08:27:47 [metric_collector] {"stage_name":"metric_collector","events_processed":8774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1754.8,"last_update":"2026-03-22T08:27:42.369158502Z"} +2026/03/22 08:27:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3512,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:27:42.378143683Z"} +2026/03/22 08:27:47 [detection_layer] {"stage_name":"detection_layer","events_processed":292,"events_dropped":0,"avg_latency_ms":18.88949357322309,"throughput_eps":0,"last_update":"2026-03-22T08:27:42.479316387Z"} +2026/03/22 08:27:47 ───────────────────────────────────────────────── +2026/03/22 08:27:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:27:52 [detection_layer] {"stage_name":"detection_layer","events_processed":292,"events_dropped":0,"avg_latency_ms":18.88949357322309,"throughput_eps":0,"last_update":"2026-03-22T08:27:47.479520503Z"} +2026/03/22 08:27:52 [transform_engine] {"stage_name":"transform_engine","events_processed":292,"events_dropped":0,"avg_latency_ms":252.7709658959684,"throughput_eps":0,"last_update":"2026-03-22T08:27:47.479539969Z"} +2026/03/22 08:27:52 [log_collector] {"stage_name":"log_collector","events_processed":14747,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2949.4,"last_update":"2026-03-22T08:27:47.368854885Z"} +2026/03/22 08:27:52 [metric_collector] {"stage_name":"metric_collector","events_processed":8779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1755.8,"last_update":"2026-03-22T08:27:47.369144159Z"} +2026/03/22 08:27:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:27:47.375963141Z"} +2026/03/22 08:27:52 ───────────────────────────────────────────────── +2026/03/22 08:27:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:27:57 [transform_engine] {"stage_name":"transform_engine","events_processed":292,"events_dropped":0,"avg_latency_ms":252.7709658959684,"throughput_eps":0,"last_update":"2026-03-22T08:27:52.479298Z"} +2026/03/22 08:27:57 [log_collector] {"stage_name":"log_collector","events_processed":14747,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2949.4,"last_update":"2026-03-22T08:27:52.367959673Z"} +2026/03/22 08:27:57 [metric_collector] {"stage_name":"metric_collector","events_processed":8784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1756.8,"last_update":"2026-03-22T08:27:52.368408733Z"} +2026/03/22 08:27:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:27:52.376001348Z"} +2026/03/22 08:27:57 [detection_layer] {"stage_name":"detection_layer","events_processed":292,"events_dropped":0,"avg_latency_ms":18.88949357322309,"throughput_eps":0,"last_update":"2026-03-22T08:27:52.479269585Z"} +2026/03/22 08:27:57 ───────────────────────────────────────────────── +2026/03/22 08:28:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:28:02 [log_collector] {"stage_name":"log_collector","events_processed":14758,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2951.6,"last_update":"2026-03-22T08:28:02.368622474Z"} +2026/03/22 08:28:02 [metric_collector] {"stage_name":"metric_collector","events_processed":8789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1757.8,"last_update":"2026-03-22T08:27:57.369119607Z"} +2026/03/22 08:28:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:27:57.375200896Z"} +2026/03/22 08:28:02 [detection_layer] {"stage_name":"detection_layer","events_processed":292,"events_dropped":0,"avg_latency_ms":18.88949357322309,"throughput_eps":0,"last_update":"2026-03-22T08:27:57.479510138Z"} +2026/03/22 08:28:02 [transform_engine] {"stage_name":"transform_engine","events_processed":293,"events_dropped":0,"avg_latency_ms":235.13947751677472,"throughput_eps":0,"last_update":"2026-03-22T08:27:57.644166834Z"} +2026/03/22 08:28:02 ───────────────────────────────────────────────── +2026/03/22 08:28:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:28:07 [log_collector] {"stage_name":"log_collector","events_processed":14765,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2953,"last_update":"2026-03-22T08:28:07.367999779Z"} +2026/03/22 08:28:07 [metric_collector] {"stage_name":"metric_collector","events_processed":8794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1758.8,"last_update":"2026-03-22T08:28:02.369418269Z"} +2026/03/22 08:28:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3520,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:28:02.378265756Z"} +2026/03/22 08:28:07 [detection_layer] {"stage_name":"detection_layer","events_processed":293,"events_dropped":0,"avg_latency_ms":17.69220185857847,"throughput_eps":0,"last_update":"2026-03-22T08:28:02.479368655Z"} +2026/03/22 08:28:07 [transform_engine] {"stage_name":"transform_engine","events_processed":293,"events_dropped":0,"avg_latency_ms":235.13947751677472,"throughput_eps":0,"last_update":"2026-03-22T08:28:02.479387883Z"} +2026/03/22 08:28:07 ───────────────────────────────────────────────── +2026/03/22 08:28:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:28:12 [transform_engine] {"stage_name":"transform_engine","events_processed":293,"events_dropped":0,"avg_latency_ms":235.13947751677472,"throughput_eps":0,"last_update":"2026-03-22T08:28:07.479023653Z"} +2026/03/22 08:28:12 [log_collector] {"stage_name":"log_collector","events_processed":14765,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2953,"last_update":"2026-03-22T08:28:07.367999779Z"} +2026/03/22 08:28:12 [metric_collector] {"stage_name":"metric_collector","events_processed":8799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1759.8,"last_update":"2026-03-22T08:28:07.368190795Z"} +2026/03/22 08:28:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3522,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:28:07.375881977Z"} +2026/03/22 08:28:12 [detection_layer] {"stage_name":"detection_layer","events_processed":293,"events_dropped":0,"avg_latency_ms":17.69220185857847,"throughput_eps":0,"last_update":"2026-03-22T08:28:07.479045575Z"} +2026/03/22 08:28:12 ───────────────────────────────────────────────── +2026/03/22 08:28:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:28:17 [metric_collector] {"stage_name":"metric_collector","events_processed":8804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1760.8,"last_update":"2026-03-22T08:28:12.368800137Z"} +2026/03/22 08:28:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:28:12.37753591Z"} +2026/03/22 08:28:17 [detection_layer] {"stage_name":"detection_layer","events_processed":293,"events_dropped":0,"avg_latency_ms":17.69220185857847,"throughput_eps":0,"last_update":"2026-03-22T08:28:12.479897932Z"} +2026/03/22 08:28:17 [transform_engine] {"stage_name":"transform_engine","events_processed":293,"events_dropped":0,"avg_latency_ms":235.13947751677472,"throughput_eps":0,"last_update":"2026-03-22T08:28:12.479777522Z"} +2026/03/22 08:28:17 [log_collector] {"stage_name":"log_collector","events_processed":14774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2954.8,"last_update":"2026-03-22T08:28:12.368019953Z"} +2026/03/22 08:28:17 ───────────────────────────────────────────────── +2026/03/22 08:28:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:28:22 [log_collector] {"stage_name":"log_collector","events_processed":14787,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2957.4,"last_update":"2026-03-22T08:28:17.36871656Z"} +2026/03/22 08:28:22 [metric_collector] {"stage_name":"metric_collector","events_processed":8809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1761.8,"last_update":"2026-03-22T08:28:17.369571488Z"} +2026/03/22 08:28:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3526,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:28:17.375311543Z"} +2026/03/22 08:28:22 [detection_layer] {"stage_name":"detection_layer","events_processed":293,"events_dropped":0,"avg_latency_ms":17.69220185857847,"throughput_eps":0,"last_update":"2026-03-22T08:28:17.47967073Z"} +2026/03/22 08:28:22 [transform_engine] {"stage_name":"transform_engine","events_processed":293,"events_dropped":0,"avg_latency_ms":235.13947751677472,"throughput_eps":0,"last_update":"2026-03-22T08:28:17.47956623Z"} +2026/03/22 08:28:22 ───────────────────────────────────────────────── +2026/03/22 08:28:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:28:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:28:22.377032321Z"} +2026/03/22 08:28:27 [detection_layer] {"stage_name":"detection_layer","events_processed":293,"events_dropped":0,"avg_latency_ms":17.69220185857847,"throughput_eps":0,"last_update":"2026-03-22T08:28:22.479397279Z"} +2026/03/22 08:28:27 [transform_engine] {"stage_name":"transform_engine","events_processed":293,"events_dropped":0,"avg_latency_ms":235.13947751677472,"throughput_eps":0,"last_update":"2026-03-22T08:28:22.47926204Z"} +2026/03/22 08:28:27 [log_collector] {"stage_name":"log_collector","events_processed":14788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2957.6,"last_update":"2026-03-22T08:28:27.368915563Z"} +2026/03/22 08:28:27 [metric_collector] {"stage_name":"metric_collector","events_processed":8814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1762.8,"last_update":"2026-03-22T08:28:22.368878653Z"} +2026/03/22 08:28:27 ───────────────────────────────────────────────── +2026/03/22 08:28:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:28:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:28:27.378741424Z"} +2026/03/22 08:28:32 [detection_layer] {"stage_name":"detection_layer","events_processed":293,"events_dropped":0,"avg_latency_ms":17.69220185857847,"throughput_eps":0,"last_update":"2026-03-22T08:28:27.478956414Z"} +2026/03/22 08:28:32 [transform_engine] {"stage_name":"transform_engine","events_processed":294,"events_dropped":0,"avg_latency_ms":211.1913148134198,"throughput_eps":0,"last_update":"2026-03-22T08:28:27.594473525Z"} +2026/03/22 08:28:32 [log_collector] {"stage_name":"log_collector","events_processed":14788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2957.6,"last_update":"2026-03-22T08:28:32.368091213Z"} +2026/03/22 08:28:32 [metric_collector] {"stage_name":"metric_collector","events_processed":8819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1763.8,"last_update":"2026-03-22T08:28:27.369169029Z"} +2026/03/22 08:28:32 ───────────────────────────────────────────────── +2026/03/22 08:28:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:28:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3532,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:28:32.377864904Z"} +2026/03/22 08:28:37 [detection_layer] {"stage_name":"detection_layer","events_processed":294,"events_dropped":0,"avg_latency_ms":18.024347486862776,"throughput_eps":0,"last_update":"2026-03-22T08:28:32.479429438Z"} +2026/03/22 08:28:37 [transform_engine] {"stage_name":"transform_engine","events_processed":294,"events_dropped":0,"avg_latency_ms":211.1913148134198,"throughput_eps":0,"last_update":"2026-03-22T08:28:32.47927902Z"} +2026/03/22 08:28:37 [log_collector] {"stage_name":"log_collector","events_processed":14788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2957.6,"last_update":"2026-03-22T08:28:37.36878136Z"} +2026/03/22 08:28:37 [metric_collector] {"stage_name":"metric_collector","events_processed":8824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1764.8,"last_update":"2026-03-22T08:28:32.368988201Z"} +2026/03/22 08:28:37 ───────────────────────────────────────────────── +2026/03/22 08:28:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:28:42 [log_collector] {"stage_name":"log_collector","events_processed":14788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2957.6,"last_update":"2026-03-22T08:28:37.36878136Z"} +2026/03/22 08:28:42 [metric_collector] {"stage_name":"metric_collector","events_processed":8829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1765.8,"last_update":"2026-03-22T08:28:37.369189553Z"} +2026/03/22 08:28:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:28:37.378178501Z"} +2026/03/22 08:28:42 [detection_layer] {"stage_name":"detection_layer","events_processed":294,"events_dropped":0,"avg_latency_ms":18.024347486862776,"throughput_eps":0,"last_update":"2026-03-22T08:28:37.479532251Z"} +2026/03/22 08:28:42 [transform_engine] {"stage_name":"transform_engine","events_processed":294,"events_dropped":0,"avg_latency_ms":211.1913148134198,"throughput_eps":0,"last_update":"2026-03-22T08:28:37.479502064Z"} +2026/03/22 08:28:42 ───────────────────────────────────────────────── +2026/03/22 08:28:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:28:47 [transform_engine] {"stage_name":"transform_engine","events_processed":294,"events_dropped":0,"avg_latency_ms":211.1913148134198,"throughput_eps":0,"last_update":"2026-03-22T08:28:42.478870899Z"} +2026/03/22 08:28:47 [log_collector] {"stage_name":"log_collector","events_processed":14788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2957.6,"last_update":"2026-03-22T08:28:47.367986856Z"} +2026/03/22 08:28:47 [metric_collector] {"stage_name":"metric_collector","events_processed":8834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1766.8,"last_update":"2026-03-22T08:28:42.369467449Z"} +2026/03/22 08:28:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3536,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:28:42.379672186Z"} +2026/03/22 08:28:47 [detection_layer] {"stage_name":"detection_layer","events_processed":294,"events_dropped":0,"avg_latency_ms":18.024347486862776,"throughput_eps":0,"last_update":"2026-03-22T08:28:42.479950577Z"} +2026/03/22 08:28:47 ───────────────────────────────────────────────── +2026/03/22 08:28:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:28:52 [log_collector] {"stage_name":"log_collector","events_processed":14788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2957.6,"last_update":"2026-03-22T08:28:47.367986856Z"} +2026/03/22 08:28:52 [metric_collector] {"stage_name":"metric_collector","events_processed":8839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1767.8,"last_update":"2026-03-22T08:28:47.368489058Z"} +2026/03/22 08:28:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:28:47.37823688Z"} +2026/03/22 08:28:52 [detection_layer] {"stage_name":"detection_layer","events_processed":294,"events_dropped":0,"avg_latency_ms":18.024347486862776,"throughput_eps":0,"last_update":"2026-03-22T08:28:47.479614676Z"} +2026/03/22 08:28:52 [transform_engine] {"stage_name":"transform_engine","events_processed":294,"events_dropped":0,"avg_latency_ms":211.1913148134198,"throughput_eps":0,"last_update":"2026-03-22T08:28:47.479624345Z"} +2026/03/22 08:28:52 ───────────────────────────────────────────────── +2026/03/22 08:28:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:28:57 [log_collector] {"stage_name":"log_collector","events_processed":14788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2957.6,"last_update":"2026-03-22T08:28:52.368120093Z"} +2026/03/22 08:28:57 [metric_collector] {"stage_name":"metric_collector","events_processed":8844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1768.8,"last_update":"2026-03-22T08:28:52.368748186Z"} +2026/03/22 08:28:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3540,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:28:52.378138011Z"} +2026/03/22 08:28:57 [detection_layer] {"stage_name":"detection_layer","events_processed":294,"events_dropped":0,"avg_latency_ms":18.024347486862776,"throughput_eps":0,"last_update":"2026-03-22T08:28:52.479435735Z"} +2026/03/22 08:28:57 [transform_engine] {"stage_name":"transform_engine","events_processed":294,"events_dropped":0,"avg_latency_ms":211.1913148134198,"throughput_eps":0,"last_update":"2026-03-22T08:28:52.479472746Z"} +2026/03/22 08:28:57 ───────────────────────────────────────────────── +2026/03/22 08:29:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:29:02 [log_collector] {"stage_name":"log_collector","events_processed":14788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2957.6,"last_update":"2026-03-22T08:29:02.368724487Z"} +2026/03/22 08:29:02 [metric_collector] {"stage_name":"metric_collector","events_processed":8849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1769.8,"last_update":"2026-03-22T08:28:57.368648674Z"} +2026/03/22 08:29:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3542,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:28:57.378906483Z"} +2026/03/22 08:29:02 [detection_layer] {"stage_name":"detection_layer","events_processed":294,"events_dropped":0,"avg_latency_ms":18.024347486862776,"throughput_eps":0,"last_update":"2026-03-22T08:28:57.479301076Z"} +2026/03/22 08:29:02 [transform_engine] {"stage_name":"transform_engine","events_processed":295,"events_dropped":0,"avg_latency_ms":185.27678745073584,"throughput_eps":0,"last_update":"2026-03-22T08:28:57.560955964Z"} +2026/03/22 08:29:02 ───────────────────────────────────────────────── +2026/03/22 08:29:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:29:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:29:02.379397181Z"} +2026/03/22 08:29:07 [detection_layer] {"stage_name":"detection_layer","events_processed":295,"events_dropped":0,"avg_latency_ms":18.762034189490223,"throughput_eps":0,"last_update":"2026-03-22T08:29:02.479609846Z"} +2026/03/22 08:29:07 [transform_engine] {"stage_name":"transform_engine","events_processed":295,"events_dropped":0,"avg_latency_ms":185.27678745073584,"throughput_eps":0,"last_update":"2026-03-22T08:29:02.4796224Z"} +2026/03/22 08:29:07 [log_collector] {"stage_name":"log_collector","events_processed":14788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2957.6,"last_update":"2026-03-22T08:29:02.368724487Z"} +2026/03/22 08:29:07 [metric_collector] {"stage_name":"metric_collector","events_processed":8854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1770.8,"last_update":"2026-03-22T08:29:02.369604232Z"} +2026/03/22 08:29:07 ───────────────────────────────────────────────── +2026/03/22 08:29:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:29:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:29:07.377203726Z"} +2026/03/22 08:29:12 [detection_layer] {"stage_name":"detection_layer","events_processed":295,"events_dropped":0,"avg_latency_ms":18.762034189490223,"throughput_eps":0,"last_update":"2026-03-22T08:29:07.479454755Z"} +2026/03/22 08:29:12 [transform_engine] {"stage_name":"transform_engine","events_processed":295,"events_dropped":0,"avg_latency_ms":185.27678745073584,"throughput_eps":0,"last_update":"2026-03-22T08:29:07.479484572Z"} +2026/03/22 08:29:12 [log_collector] {"stage_name":"log_collector","events_processed":14788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2957.6,"last_update":"2026-03-22T08:29:12.367986986Z"} +2026/03/22 08:29:12 [metric_collector] {"stage_name":"metric_collector","events_processed":8859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1771.8,"last_update":"2026-03-22T08:29:07.368773688Z"} +2026/03/22 08:29:12 ───────────────────────────────────────────────── +2026/03/22 08:29:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:29:17 [detection_layer] {"stage_name":"detection_layer","events_processed":295,"events_dropped":0,"avg_latency_ms":18.762034189490223,"throughput_eps":0,"last_update":"2026-03-22T08:29:12.478983647Z"} +2026/03/22 08:29:17 [transform_engine] {"stage_name":"transform_engine","events_processed":295,"events_dropped":0,"avg_latency_ms":185.27678745073584,"throughput_eps":0,"last_update":"2026-03-22T08:29:12.478848948Z"} +2026/03/22 08:29:17 [log_collector] {"stage_name":"log_collector","events_processed":14788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2957.6,"last_update":"2026-03-22T08:29:12.367986986Z"} +2026/03/22 08:29:17 [metric_collector] {"stage_name":"metric_collector","events_processed":8864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1772.8,"last_update":"2026-03-22T08:29:12.36864715Z"} +2026/03/22 08:29:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:29:12.377613815Z"} +2026/03/22 08:29:17 ───────────────────────────────────────────────── +Saved state: 11 clusters, 14789 messages, reason: none +2026/03/22 08:29:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:29:22 [detection_layer] {"stage_name":"detection_layer","events_processed":295,"events_dropped":0,"avg_latency_ms":18.762034189490223,"throughput_eps":0,"last_update":"2026-03-22T08:29:17.479161038Z"} +2026/03/22 08:29:22 [transform_engine] {"stage_name":"transform_engine","events_processed":295,"events_dropped":0,"avg_latency_ms":185.27678745073584,"throughput_eps":0,"last_update":"2026-03-22T08:29:17.479237064Z"} +2026/03/22 08:29:22 [log_collector] {"stage_name":"log_collector","events_processed":14793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2958.6,"last_update":"2026-03-22T08:29:22.368746824Z"} +2026/03/22 08:29:22 [metric_collector] {"stage_name":"metric_collector","events_processed":8874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1774.8,"last_update":"2026-03-22T08:29:22.368969491Z"} +2026/03/22 08:29:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:29:17.377955943Z"} +2026/03/22 08:29:22 ───────────────────────────────────────────────── +2026/03/22 08:29:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:29:27 [log_collector] {"stage_name":"log_collector","events_processed":14793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2958.6,"last_update":"2026-03-22T08:29:22.368746824Z"} +2026/03/22 08:29:27 [metric_collector] {"stage_name":"metric_collector","events_processed":8874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1774.8,"last_update":"2026-03-22T08:29:22.368969491Z"} +2026/03/22 08:29:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:29:22.374802324Z"} +2026/03/22 08:29:27 [detection_layer] {"stage_name":"detection_layer","events_processed":295,"events_dropped":0,"avg_latency_ms":18.762034189490223,"throughput_eps":0,"last_update":"2026-03-22T08:29:22.479982653Z"} +2026/03/22 08:29:27 [transform_engine] {"stage_name":"transform_engine","events_processed":295,"events_dropped":0,"avg_latency_ms":185.27678745073584,"throughput_eps":0,"last_update":"2026-03-22T08:29:22.47889516Z"} +2026/03/22 08:29:27 ───────────────────────────────────────────────── +2026/03/22 08:29:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:29:32 [log_collector] {"stage_name":"log_collector","events_processed":14793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2958.6,"last_update":"2026-03-22T08:29:32.368438561Z"} +2026/03/22 08:29:32 [metric_collector] {"stage_name":"metric_collector","events_processed":8879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1775.8,"last_update":"2026-03-22T08:29:27.368308544Z"} +2026/03/22 08:29:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:29:27.375115453Z"} +2026/03/22 08:29:32 [detection_layer] {"stage_name":"detection_layer","events_processed":295,"events_dropped":0,"avg_latency_ms":18.762034189490223,"throughput_eps":0,"last_update":"2026-03-22T08:29:27.479371202Z"} +2026/03/22 08:29:32 [transform_engine] {"stage_name":"transform_engine","events_processed":295,"events_dropped":0,"avg_latency_ms":185.27678745073584,"throughput_eps":0,"last_update":"2026-03-22T08:29:22.47889516Z"} +2026/03/22 08:29:32 ───────────────────────────────────────────────── +2026/03/22 08:29:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:29:37 [metric_collector] {"stage_name":"metric_collector","events_processed":8884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1776.8,"last_update":"2026-03-22T08:29:32.368783631Z"} +2026/03/22 08:29:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:29:32.375818286Z"} +2026/03/22 08:29:37 [detection_layer] {"stage_name":"detection_layer","events_processed":295,"events_dropped":0,"avg_latency_ms":18.762034189490223,"throughput_eps":0,"last_update":"2026-03-22T08:29:32.478972836Z"} +2026/03/22 08:29:37 [transform_engine] {"stage_name":"transform_engine","events_processed":296,"events_dropped":0,"avg_latency_ms":1378.9557683605888,"throughput_eps":0,"last_update":"2026-03-22T08:29:33.633039067Z"} +2026/03/22 08:29:37 [log_collector] {"stage_name":"log_collector","events_processed":14793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2958.6,"last_update":"2026-03-22T08:29:32.368438561Z"} +2026/03/22 08:29:37 ───────────────────────────────────────────────── +2026/03/22 08:29:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:29:42 [log_collector] {"stage_name":"log_collector","events_processed":14793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2958.6,"last_update":"2026-03-22T08:29:37.367944881Z"} +2026/03/22 08:29:42 [metric_collector] {"stage_name":"metric_collector","events_processed":8889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1777.8,"last_update":"2026-03-22T08:29:37.368972339Z"} +2026/03/22 08:29:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:29:37.374957844Z"} +2026/03/22 08:29:42 [detection_layer] {"stage_name":"detection_layer","events_processed":296,"events_dropped":0,"avg_latency_ms":17.21758255159218,"throughput_eps":0,"last_update":"2026-03-22T08:29:37.479235435Z"} +2026/03/22 08:29:42 [transform_engine] {"stage_name":"transform_engine","events_processed":296,"events_dropped":0,"avg_latency_ms":1378.9557683605888,"throughput_eps":0,"last_update":"2026-03-22T08:29:37.479245303Z"} +2026/03/22 08:29:42 ───────────────────────────────────────────────── +2026/03/22 08:29:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:29:47 [log_collector] {"stage_name":"log_collector","events_processed":14793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2958.6,"last_update":"2026-03-22T08:29:47.368728969Z"} +2026/03/22 08:29:47 [metric_collector] {"stage_name":"metric_collector","events_processed":8899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1779.8,"last_update":"2026-03-22T08:29:47.368931537Z"} +2026/03/22 08:29:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3560,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:29:42.374913262Z"} +2026/03/22 08:29:47 [detection_layer] {"stage_name":"detection_layer","events_processed":296,"events_dropped":0,"avg_latency_ms":17.21758255159218,"throughput_eps":0,"last_update":"2026-03-22T08:29:42.47959104Z"} +2026/03/22 08:29:47 [transform_engine] {"stage_name":"transform_engine","events_processed":296,"events_dropped":0,"avg_latency_ms":1378.9557683605888,"throughput_eps":0,"last_update":"2026-03-22T08:29:42.479607701Z"} +2026/03/22 08:29:47 ───────────────────────────────────────────────── +2026/03/22 08:29:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:29:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:29:47.375540116Z"} +2026/03/22 08:29:52 [detection_layer] {"stage_name":"detection_layer","events_processed":296,"events_dropped":0,"avg_latency_ms":17.21758255159218,"throughput_eps":0,"last_update":"2026-03-22T08:29:47.479737152Z"} +2026/03/22 08:29:52 [transform_engine] {"stage_name":"transform_engine","events_processed":296,"events_dropped":0,"avg_latency_ms":1378.9557683605888,"throughput_eps":0,"last_update":"2026-03-22T08:29:47.479750237Z"} +2026/03/22 08:29:52 [log_collector] {"stage_name":"log_collector","events_processed":14793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2958.6,"last_update":"2026-03-22T08:29:47.368728969Z"} +2026/03/22 08:29:52 [metric_collector] {"stage_name":"metric_collector","events_processed":8899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1779.8,"last_update":"2026-03-22T08:29:47.368931537Z"} +2026/03/22 08:29:52 ───────────────────────────────────────────────── +2026/03/22 08:29:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:29:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:29:52.37561967Z"} +2026/03/22 08:29:57 [detection_layer] {"stage_name":"detection_layer","events_processed":296,"events_dropped":0,"avg_latency_ms":17.21758255159218,"throughput_eps":0,"last_update":"2026-03-22T08:29:52.479816535Z"} +2026/03/22 08:29:57 [transform_engine] {"stage_name":"transform_engine","events_processed":296,"events_dropped":0,"avg_latency_ms":1378.9557683605888,"throughput_eps":0,"last_update":"2026-03-22T08:29:52.479828909Z"} +2026/03/22 08:29:57 [log_collector] {"stage_name":"log_collector","events_processed":14793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2958.6,"last_update":"2026-03-22T08:29:52.368014692Z"} +2026/03/22 08:29:57 [metric_collector] {"stage_name":"metric_collector","events_processed":8904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1780.8,"last_update":"2026-03-22T08:29:52.368398808Z"} +2026/03/22 08:29:57 ───────────────────────────────────────────────── +2026/03/22 08:30:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:30:02 [log_collector] {"stage_name":"log_collector","events_processed":14793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2958.6,"last_update":"2026-03-22T08:30:02.368273265Z"} +2026/03/22 08:30:02 [metric_collector] {"stage_name":"metric_collector","events_processed":8914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1782.8,"last_update":"2026-03-22T08:30:02.36816625Z"} +2026/03/22 08:30:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3566,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:29:57.375882713Z"} +2026/03/22 08:30:02 [detection_layer] {"stage_name":"detection_layer","events_processed":296,"events_dropped":0,"avg_latency_ms":17.21758255159218,"throughput_eps":0,"last_update":"2026-03-22T08:29:57.479092318Z"} +2026/03/22 08:30:02 [transform_engine] {"stage_name":"transform_engine","events_processed":297,"events_dropped":0,"avg_latency_ms":1122.1123506884712,"throughput_eps":0,"last_update":"2026-03-22T08:29:57.573847398Z"} +2026/03/22 08:30:02 ───────────────────────────────────────────────── +2026/03/22 08:30:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:30:07 [log_collector] {"stage_name":"log_collector","events_processed":14793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2958.6,"last_update":"2026-03-22T08:30:02.368273265Z"} +2026/03/22 08:30:07 [metric_collector] {"stage_name":"metric_collector","events_processed":8919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1783.8,"last_update":"2026-03-22T08:30:07.368211984Z"} +2026/03/22 08:30:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:30:02.384771557Z"} +2026/03/22 08:30:07 [detection_layer] {"stage_name":"detection_layer","events_processed":297,"events_dropped":0,"avg_latency_ms":16.284111841273745,"throughput_eps":0,"last_update":"2026-03-22T08:30:02.479177058Z"} +2026/03/22 08:30:07 [transform_engine] {"stage_name":"transform_engine","events_processed":297,"events_dropped":0,"avg_latency_ms":1122.1123506884712,"throughput_eps":0,"last_update":"2026-03-22T08:30:02.479188329Z"} +2026/03/22 08:30:07 ───────────────────────────────────────────────── +2026/03/22 08:30:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:30:12 [metric_collector] {"stage_name":"metric_collector","events_processed":8919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1783.8,"last_update":"2026-03-22T08:30:07.368211984Z"} +2026/03/22 08:30:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3570,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:30:07.377209769Z"} +2026/03/22 08:30:12 [detection_layer] {"stage_name":"detection_layer","events_processed":297,"events_dropped":0,"avg_latency_ms":16.284111841273745,"throughput_eps":0,"last_update":"2026-03-22T08:30:07.479439578Z"} +2026/03/22 08:30:12 [transform_engine] {"stage_name":"transform_engine","events_processed":297,"events_dropped":0,"avg_latency_ms":1122.1123506884712,"throughput_eps":0,"last_update":"2026-03-22T08:30:07.479448655Z"} +2026/03/22 08:30:12 [log_collector] {"stage_name":"log_collector","events_processed":14802,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2960.4,"last_update":"2026-03-22T08:30:07.368312737Z"} +2026/03/22 08:30:12 ───────────────────────────────────────────────── +2026/03/22 08:30:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:30:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3572,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:30:12.37566213Z"} +2026/03/22 08:30:17 [detection_layer] {"stage_name":"detection_layer","events_processed":297,"events_dropped":0,"avg_latency_ms":16.284111841273745,"throughput_eps":0,"last_update":"2026-03-22T08:30:12.479188111Z"} +2026/03/22 08:30:17 [transform_engine] {"stage_name":"transform_engine","events_processed":297,"events_dropped":0,"avg_latency_ms":1122.1123506884712,"throughput_eps":0,"last_update":"2026-03-22T08:30:12.479238438Z"} +2026/03/22 08:30:17 [log_collector] {"stage_name":"log_collector","events_processed":15154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3030.8,"last_update":"2026-03-22T08:30:17.369047794Z"} +2026/03/22 08:30:17 [metric_collector] {"stage_name":"metric_collector","events_processed":8924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1784.8,"last_update":"2026-03-22T08:30:12.368234532Z"} +2026/03/22 08:30:17 ───────────────────────────────────────────────── +2026/03/22 08:30:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:30:22 [metric_collector] {"stage_name":"metric_collector","events_processed":8929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1785.8,"last_update":"2026-03-22T08:30:17.36908222Z"} +2026/03/22 08:30:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:30:17.376070385Z"} +2026/03/22 08:30:22 [detection_layer] {"stage_name":"detection_layer","events_processed":297,"events_dropped":0,"avg_latency_ms":16.284111841273745,"throughput_eps":0,"last_update":"2026-03-22T08:30:17.479076231Z"} +2026/03/22 08:30:22 [transform_engine] {"stage_name":"transform_engine","events_processed":297,"events_dropped":0,"avg_latency_ms":1122.1123506884712,"throughput_eps":0,"last_update":"2026-03-22T08:30:17.479086771Z"} +2026/03/22 08:30:22 [log_collector] {"stage_name":"log_collector","events_processed":15154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3030.8,"last_update":"2026-03-22T08:30:17.369047794Z"} +2026/03/22 08:30:22 ───────────────────────────────────────────────── +2026/03/22 08:30:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:30:27 [log_collector] {"stage_name":"log_collector","events_processed":15156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3031.2,"last_update":"2026-03-22T08:30:22.368186006Z"} +2026/03/22 08:30:27 [metric_collector] {"stage_name":"metric_collector","events_processed":8934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1786.8,"last_update":"2026-03-22T08:30:22.368693928Z"} +2026/03/22 08:30:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3576,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:30:22.377742972Z"} +2026/03/22 08:30:27 [detection_layer] {"stage_name":"detection_layer","events_processed":297,"events_dropped":0,"avg_latency_ms":16.284111841273745,"throughput_eps":0,"last_update":"2026-03-22T08:30:22.478971592Z"} +2026/03/22 08:30:27 [transform_engine] {"stage_name":"transform_engine","events_processed":297,"events_dropped":0,"avg_latency_ms":1122.1123506884712,"throughput_eps":0,"last_update":"2026-03-22T08:30:22.478984397Z"} +2026/03/22 08:30:27 ───────────────────────────────────────────────── +2026/03/22 08:30:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:30:32 [transform_engine] {"stage_name":"transform_engine","events_processed":298,"events_dropped":0,"avg_latency_ms":920.493267750777,"throughput_eps":0,"last_update":"2026-03-22T08:30:27.593587917Z"} +2026/03/22 08:30:32 [log_collector] {"stage_name":"log_collector","events_processed":15156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3031.2,"last_update":"2026-03-22T08:30:27.367969402Z"} +2026/03/22 08:30:32 [metric_collector] {"stage_name":"metric_collector","events_processed":8939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1787.8,"last_update":"2026-03-22T08:30:27.368615489Z"} +2026/03/22 08:30:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:30:27.379168955Z"} +2026/03/22 08:30:32 [detection_layer] {"stage_name":"detection_layer","events_processed":297,"events_dropped":0,"avg_latency_ms":16.284111841273745,"throughput_eps":0,"last_update":"2026-03-22T08:30:27.479549601Z"} +2026/03/22 08:30:32 ───────────────────────────────────────────────── +Saved state: 11 clusters, 15157 messages, reason: none +2026/03/22 08:30:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:30:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3580,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:30:32.377072678Z"} +2026/03/22 08:30:37 [detection_layer] {"stage_name":"detection_layer","events_processed":298,"events_dropped":0,"avg_latency_ms":16.373463073018996,"throughput_eps":0,"last_update":"2026-03-22T08:30:32.479385786Z"} +2026/03/22 08:30:37 [transform_engine] {"stage_name":"transform_engine","events_processed":298,"events_dropped":0,"avg_latency_ms":920.493267750777,"throughput_eps":0,"last_update":"2026-03-22T08:30:32.47940326Z"} +2026/03/22 08:30:37 [log_collector] {"stage_name":"log_collector","events_processed":15159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3031.8,"last_update":"2026-03-22T08:30:37.368599376Z"} +2026/03/22 08:30:37 [metric_collector] {"stage_name":"metric_collector","events_processed":8944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1788.8,"last_update":"2026-03-22T08:30:32.368806054Z"} +2026/03/22 08:30:37 ───────────────────────────────────────────────── +2026/03/22 08:30:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:30:42 [log_collector] {"stage_name":"log_collector","events_processed":15159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3031.8,"last_update":"2026-03-22T08:30:37.368599376Z"} +2026/03/22 08:30:42 [metric_collector] {"stage_name":"metric_collector","events_processed":8949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1789.8,"last_update":"2026-03-22T08:30:37.368796223Z"} +2026/03/22 08:30:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:30:37.376397073Z"} +2026/03/22 08:30:42 [detection_layer] {"stage_name":"detection_layer","events_processed":298,"events_dropped":0,"avg_latency_ms":16.373463073018996,"throughput_eps":0,"last_update":"2026-03-22T08:30:37.479602229Z"} +2026/03/22 08:30:42 [transform_engine] {"stage_name":"transform_engine","events_processed":298,"events_dropped":0,"avg_latency_ms":920.493267750777,"throughput_eps":0,"last_update":"2026-03-22T08:30:37.479615263Z"} +2026/03/22 08:30:42 ───────────────────────────────────────────────── +2026/03/22 08:30:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:30:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:30:42.376262813Z"} +2026/03/22 08:30:47 [detection_layer] {"stage_name":"detection_layer","events_processed":298,"events_dropped":0,"avg_latency_ms":16.373463073018996,"throughput_eps":0,"last_update":"2026-03-22T08:30:42.48003766Z"} +2026/03/22 08:30:47 [transform_engine] {"stage_name":"transform_engine","events_processed":298,"events_dropped":0,"avg_latency_ms":920.493267750777,"throughput_eps":0,"last_update":"2026-03-22T08:30:42.478890242Z"} +2026/03/22 08:30:47 [log_collector] {"stage_name":"log_collector","events_processed":15159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3031.8,"last_update":"2026-03-22T08:30:42.36871751Z"} +2026/03/22 08:30:47 [metric_collector] {"stage_name":"metric_collector","events_processed":8954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1790.8,"last_update":"2026-03-22T08:30:42.368956548Z"} +2026/03/22 08:30:47 ───────────────────────────────────────────────── +2026/03/22 08:30:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:30:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3586,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:30:47.377956232Z"} +2026/03/22 08:30:52 [detection_layer] {"stage_name":"detection_layer","events_processed":298,"events_dropped":0,"avg_latency_ms":16.373463073018996,"throughput_eps":0,"last_update":"2026-03-22T08:30:47.479125749Z"} +2026/03/22 08:30:52 [transform_engine] {"stage_name":"transform_engine","events_processed":298,"events_dropped":0,"avg_latency_ms":920.493267750777,"throughput_eps":0,"last_update":"2026-03-22T08:30:47.479135677Z"} +2026/03/22 08:30:52 [log_collector] {"stage_name":"log_collector","events_processed":15170,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3034,"last_update":"2026-03-22T08:30:47.369104928Z"} +2026/03/22 08:30:52 [metric_collector] {"stage_name":"metric_collector","events_processed":8959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1791.8,"last_update":"2026-03-22T08:30:47.369730717Z"} +2026/03/22 08:30:52 ───────────────────────────────────────────────── +2026/03/22 08:30:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:30:57 [log_collector] {"stage_name":"log_collector","events_processed":15186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.2,"last_update":"2026-03-22T08:30:57.367990328Z"} +2026/03/22 08:30:57 [metric_collector] {"stage_name":"metric_collector","events_processed":8964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1792.8,"last_update":"2026-03-22T08:30:52.369378846Z"} +2026/03/22 08:30:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3588,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:30:52.375727818Z"} +2026/03/22 08:30:57 [detection_layer] {"stage_name":"detection_layer","events_processed":298,"events_dropped":0,"avg_latency_ms":16.373463073018996,"throughput_eps":0,"last_update":"2026-03-22T08:30:52.479009189Z"} +2026/03/22 08:30:57 [transform_engine] {"stage_name":"transform_engine","events_processed":298,"events_dropped":0,"avg_latency_ms":920.493267750777,"throughput_eps":0,"last_update":"2026-03-22T08:30:52.478940268Z"} +2026/03/22 08:30:57 ───────────────────────────────────────────────── +2026/03/22 08:31:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:31:02 [log_collector] {"stage_name":"log_collector","events_processed":15186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.2,"last_update":"2026-03-22T08:30:57.367990328Z"} +2026/03/22 08:31:02 [metric_collector] {"stage_name":"metric_collector","events_processed":8969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1793.8,"last_update":"2026-03-22T08:30:57.368647277Z"} +2026/03/22 08:31:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:30:57.377913306Z"} +2026/03/22 08:31:02 [detection_layer] {"stage_name":"detection_layer","events_processed":298,"events_dropped":0,"avg_latency_ms":16.373463073018996,"throughput_eps":0,"last_update":"2026-03-22T08:30:57.479310708Z"} +2026/03/22 08:31:02 [transform_engine] {"stage_name":"transform_engine","events_processed":299,"events_dropped":0,"avg_latency_ms":759.1636978006217,"throughput_eps":0,"last_update":"2026-03-22T08:30:57.593172858Z"} +2026/03/22 08:31:02 ───────────────────────────────────────────────── +2026/03/22 08:31:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:31:07 [log_collector] {"stage_name":"log_collector","events_processed":15186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.2,"last_update":"2026-03-22T08:31:02.368025646Z"} +2026/03/22 08:31:07 [metric_collector] {"stage_name":"metric_collector","events_processed":8974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1794.8,"last_update":"2026-03-22T08:31:02.368588244Z"} +2026/03/22 08:31:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3592,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:31:02.377035584Z"} +2026/03/22 08:31:07 [detection_layer] {"stage_name":"detection_layer","events_processed":299,"events_dropped":0,"avg_latency_ms":16.580451458415197,"throughput_eps":0,"last_update":"2026-03-22T08:31:02.479341498Z"} +2026/03/22 08:31:07 [transform_engine] {"stage_name":"transform_engine","events_processed":299,"events_dropped":0,"avg_latency_ms":759.1636978006217,"throughput_eps":0,"last_update":"2026-03-22T08:31:02.47938931Z"} +2026/03/22 08:31:07 ───────────────────────────────────────────────── +2026/03/22 08:31:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:31:12 [detection_layer] {"stage_name":"detection_layer","events_processed":299,"events_dropped":0,"avg_latency_ms":16.580451458415197,"throughput_eps":0,"last_update":"2026-03-22T08:31:07.47895114Z"} +2026/03/22 08:31:12 [transform_engine] {"stage_name":"transform_engine","events_processed":299,"events_dropped":0,"avg_latency_ms":759.1636978006217,"throughput_eps":0,"last_update":"2026-03-22T08:31:07.478942985Z"} +2026/03/22 08:31:12 [log_collector] {"stage_name":"log_collector","events_processed":15186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.2,"last_update":"2026-03-22T08:31:07.368007281Z"} +2026/03/22 08:31:12 [metric_collector] {"stage_name":"metric_collector","events_processed":8979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1795.8,"last_update":"2026-03-22T08:31:07.368554109Z"} +2026/03/22 08:31:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:31:07.378799614Z"} +2026/03/22 08:31:12 ───────────────────────────────────────────────── +2026/03/22 08:31:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:31:17 [detection_layer] {"stage_name":"detection_layer","events_processed":299,"events_dropped":0,"avg_latency_ms":16.580451458415197,"throughput_eps":0,"last_update":"2026-03-22T08:31:12.479281913Z"} +2026/03/22 08:31:17 [transform_engine] {"stage_name":"transform_engine","events_processed":299,"events_dropped":0,"avg_latency_ms":759.1636978006217,"throughput_eps":0,"last_update":"2026-03-22T08:31:12.479290098Z"} +2026/03/22 08:31:17 [log_collector] {"stage_name":"log_collector","events_processed":15186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.2,"last_update":"2026-03-22T08:31:12.368892376Z"} +2026/03/22 08:31:17 [metric_collector] {"stage_name":"metric_collector","events_processed":8984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1796.8,"last_update":"2026-03-22T08:31:12.369406541Z"} +2026/03/22 08:31:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:31:12.378075987Z"} +2026/03/22 08:31:17 ───────────────────────────────────────────────── +2026/03/22 08:31:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:31:22 [detection_layer] {"stage_name":"detection_layer","events_processed":299,"events_dropped":0,"avg_latency_ms":16.580451458415197,"throughput_eps":0,"last_update":"2026-03-22T08:31:17.479791746Z"} +2026/03/22 08:31:22 [transform_engine] {"stage_name":"transform_engine","events_processed":299,"events_dropped":0,"avg_latency_ms":759.1636978006217,"throughput_eps":0,"last_update":"2026-03-22T08:31:17.479803839Z"} +2026/03/22 08:31:22 [log_collector] {"stage_name":"log_collector","events_processed":15186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.2,"last_update":"2026-03-22T08:31:17.368574853Z"} +2026/03/22 08:31:22 [metric_collector] {"stage_name":"metric_collector","events_processed":8989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1797.8,"last_update":"2026-03-22T08:31:17.368876181Z"} +2026/03/22 08:31:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:31:17.377467196Z"} +2026/03/22 08:31:22 ───────────────────────────────────────────────── +2026/03/22 08:31:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:31:27 [log_collector] {"stage_name":"log_collector","events_processed":15186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.2,"last_update":"2026-03-22T08:31:22.368904099Z"} +2026/03/22 08:31:27 [metric_collector] {"stage_name":"metric_collector","events_processed":8994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1798.8,"last_update":"2026-03-22T08:31:22.369091007Z"} +2026/03/22 08:31:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:31:22.379327174Z"} +2026/03/22 08:31:27 [detection_layer] {"stage_name":"detection_layer","events_processed":299,"events_dropped":0,"avg_latency_ms":16.580451458415197,"throughput_eps":0,"last_update":"2026-03-22T08:31:22.479619952Z"} +2026/03/22 08:31:27 [transform_engine] {"stage_name":"transform_engine","events_processed":299,"events_dropped":0,"avg_latency_ms":759.1636978006217,"throughput_eps":0,"last_update":"2026-03-22T08:31:22.479631995Z"} +2026/03/22 08:31:27 ───────────────────────────────────────────────── +2026/03/22 08:31:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:31:32 [log_collector] {"stage_name":"log_collector","events_processed":15186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.2,"last_update":"2026-03-22T08:31:27.367957029Z"} +2026/03/22 08:31:32 [metric_collector] {"stage_name":"metric_collector","events_processed":8999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1799.8,"last_update":"2026-03-22T08:31:27.368227317Z"} +2026/03/22 08:31:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3602,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:31:27.377131773Z"} +2026/03/22 08:31:32 [detection_layer] {"stage_name":"detection_layer","events_processed":299,"events_dropped":0,"avg_latency_ms":16.580451458415197,"throughput_eps":0,"last_update":"2026-03-22T08:31:27.479413069Z"} +2026/03/22 08:31:32 [transform_engine] {"stage_name":"transform_engine","events_processed":300,"events_dropped":0,"avg_latency_ms":617.6162214404974,"throughput_eps":0,"last_update":"2026-03-22T08:31:27.530850786Z"} +2026/03/22 08:31:32 ───────────────────────────────────────────────── +2026/03/22 08:31:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:31:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3602,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:31:32.36809638Z"} +2026/03/22 08:31:37 [detection_layer] {"stage_name":"detection_layer","events_processed":300,"events_dropped":0,"avg_latency_ms":17.512247966732158,"throughput_eps":0,"last_update":"2026-03-22T08:31:32.479121304Z"} +2026/03/22 08:31:37 [transform_engine] {"stage_name":"transform_engine","events_processed":300,"events_dropped":0,"avg_latency_ms":617.6162214404974,"throughput_eps":0,"last_update":"2026-03-22T08:31:32.47912971Z"} +2026/03/22 08:31:37 [log_collector] {"stage_name":"log_collector","events_processed":15186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.2,"last_update":"2026-03-22T08:31:32.367996158Z"} +2026/03/22 08:31:37 [metric_collector] {"stage_name":"metric_collector","events_processed":9004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1800.8,"last_update":"2026-03-22T08:31:32.368748148Z"} +2026/03/22 08:31:37 ───────────────────────────────────────────────── +2026/03/22 08:31:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:31:42 [transform_engine] {"stage_name":"transform_engine","events_processed":300,"events_dropped":0,"avg_latency_ms":617.6162214404974,"throughput_eps":0,"last_update":"2026-03-22T08:31:37.479766651Z"} +2026/03/22 08:31:42 [log_collector] {"stage_name":"log_collector","events_processed":15186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.2,"last_update":"2026-03-22T08:31:37.368866406Z"} +2026/03/22 08:31:42 [metric_collector] {"stage_name":"metric_collector","events_processed":9009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1801.8,"last_update":"2026-03-22T08:31:37.369068293Z"} +2026/03/22 08:31:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:31:37.379335509Z"} +2026/03/22 08:31:42 [detection_layer] {"stage_name":"detection_layer","events_processed":300,"events_dropped":0,"avg_latency_ms":17.512247966732158,"throughput_eps":0,"last_update":"2026-03-22T08:31:37.47974988Z"} +2026/03/22 08:31:42 ───────────────────────────────────────────────── +2026/03/22 08:31:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:31:47 [log_collector] {"stage_name":"log_collector","events_processed":15186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.2,"last_update":"2026-03-22T08:31:42.368274733Z"} +2026/03/22 08:31:47 [metric_collector] {"stage_name":"metric_collector","events_processed":9014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1802.8,"last_update":"2026-03-22T08:31:42.368631336Z"} +2026/03/22 08:31:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:31:42.377705548Z"} +2026/03/22 08:31:47 [detection_layer] {"stage_name":"detection_layer","events_processed":300,"events_dropped":0,"avg_latency_ms":17.512247966732158,"throughput_eps":0,"last_update":"2026-03-22T08:31:42.479820234Z"} +2026/03/22 08:31:47 [transform_engine] {"stage_name":"transform_engine","events_processed":300,"events_dropped":0,"avg_latency_ms":617.6162214404974,"throughput_eps":0,"last_update":"2026-03-22T08:31:42.479828039Z"} +2026/03/22 08:31:47 ───────────────────────────────────────────────── +2026/03/22 08:31:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:31:52 [log_collector] {"stage_name":"log_collector","events_processed":15186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.2,"last_update":"2026-03-22T08:31:47.368316352Z"} +2026/03/22 08:31:52 [metric_collector] {"stage_name":"metric_collector","events_processed":9019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1803.8,"last_update":"2026-03-22T08:31:47.368756045Z"} +2026/03/22 08:31:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:31:47.37713277Z"} +2026/03/22 08:31:52 [detection_layer] {"stage_name":"detection_layer","events_processed":300,"events_dropped":0,"avg_latency_ms":17.512247966732158,"throughput_eps":0,"last_update":"2026-03-22T08:31:47.479332029Z"} +2026/03/22 08:31:52 [transform_engine] {"stage_name":"transform_engine","events_processed":300,"events_dropped":0,"avg_latency_ms":617.6162214404974,"throughput_eps":0,"last_update":"2026-03-22T08:31:47.479340725Z"} +2026/03/22 08:31:52 ───────────────────────────────────────────────── +2026/03/22 08:31:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:31:57 [log_collector] {"stage_name":"log_collector","events_processed":15186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.2,"last_update":"2026-03-22T08:31:57.368796177Z"} +2026/03/22 08:31:57 [metric_collector] {"stage_name":"metric_collector","events_processed":9024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1804.8,"last_update":"2026-03-22T08:31:52.368953822Z"} +2026/03/22 08:31:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:31:52.378184973Z"} +2026/03/22 08:31:57 [detection_layer] {"stage_name":"detection_layer","events_processed":300,"events_dropped":0,"avg_latency_ms":17.512247966732158,"throughput_eps":0,"last_update":"2026-03-22T08:31:52.479562258Z"} +2026/03/22 08:31:57 [transform_engine] {"stage_name":"transform_engine","events_processed":300,"events_dropped":0,"avg_latency_ms":617.6162214404974,"throughput_eps":0,"last_update":"2026-03-22T08:31:52.479578469Z"} +2026/03/22 08:31:57 ───────────────────────────────────────────────── +2026/03/22 08:31:57 [ANOMALY] time=2026-03-22T08:31:57Z score=0.8118 method=SEAD details=MAD!:w=0.52,s=0.82 RRCF-fast:w=0.13,s=0.91 RRCF-mid:w=0.11,s=0.76 RRCF-slow:w=0.09,s=0.87 COPOD!:w=0.15,s=0.70 +2026/03/22 08:32:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:32:02 [log_collector] {"stage_name":"log_collector","events_processed":15186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.2,"last_update":"2026-03-22T08:31:57.368796177Z"} +2026/03/22 08:32:02 [metric_collector] {"stage_name":"metric_collector","events_processed":9029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1805.8,"last_update":"2026-03-22T08:31:57.369160144Z"} +2026/03/22 08:32:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:31:57.378383882Z"} +2026/03/22 08:32:02 [detection_layer] {"stage_name":"detection_layer","events_processed":300,"events_dropped":0,"avg_latency_ms":17.512247966732158,"throughput_eps":0,"last_update":"2026-03-22T08:31:57.479573957Z"} +2026/03/22 08:32:02 [transform_engine] {"stage_name":"transform_engine","events_processed":301,"events_dropped":0,"avg_latency_ms":507.5355501523979,"throughput_eps":0,"last_update":"2026-03-22T08:31:57.546802651Z"} +2026/03/22 08:32:02 ───────────────────────────────────────────────── +2026/03/22 08:32:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:32:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:32:02.377854331Z"} +2026/03/22 08:32:07 [detection_layer] {"stage_name":"detection_layer","events_processed":301,"events_dropped":0,"avg_latency_ms":17.969074173385728,"throughput_eps":0,"last_update":"2026-03-22T08:32:02.479330926Z"} +2026/03/22 08:32:07 [transform_engine] {"stage_name":"transform_engine","events_processed":301,"events_dropped":0,"avg_latency_ms":507.5355501523979,"throughput_eps":0,"last_update":"2026-03-22T08:32:02.479215946Z"} +2026/03/22 08:32:07 [log_collector] {"stage_name":"log_collector","events_processed":15186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.2,"last_update":"2026-03-22T08:32:07.368520127Z"} +2026/03/22 08:32:07 [metric_collector] {"stage_name":"metric_collector","events_processed":9034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1806.8,"last_update":"2026-03-22T08:32:02.368684767Z"} +2026/03/22 08:32:07 ───────────────────────────────────────────────── +Saved state: 11 clusters, 15187 messages, reason: none +2026/03/22 08:32:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:32:12 [transform_engine] {"stage_name":"transform_engine","events_processed":301,"events_dropped":0,"avg_latency_ms":507.5355501523979,"throughput_eps":0,"last_update":"2026-03-22T08:32:07.479452924Z"} +2026/03/22 08:32:12 [log_collector] {"stage_name":"log_collector","events_processed":15186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.2,"last_update":"2026-03-22T08:32:07.368520127Z"} +2026/03/22 08:32:12 [metric_collector] {"stage_name":"metric_collector","events_processed":9039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1807.8,"last_update":"2026-03-22T08:32:07.368989466Z"} +2026/03/22 08:32:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:32:07.378159992Z"} +2026/03/22 08:32:12 [detection_layer] {"stage_name":"detection_layer","events_processed":301,"events_dropped":0,"avg_latency_ms":17.969074173385728,"throughput_eps":0,"last_update":"2026-03-22T08:32:07.479498171Z"} +2026/03/22 08:32:12 ───────────────────────────────────────────────── +2026/03/22 08:32:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:32:17 [log_collector] {"stage_name":"log_collector","events_processed":15189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.8,"last_update":"2026-03-22T08:32:12.368776221Z"} +2026/03/22 08:32:17 [metric_collector] {"stage_name":"metric_collector","events_processed":9044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1808.8,"last_update":"2026-03-22T08:32:12.369038223Z"} +2026/03/22 08:32:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3620,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:32:12.378076987Z"} +2026/03/22 08:32:17 [detection_layer] {"stage_name":"detection_layer","events_processed":301,"events_dropped":0,"avg_latency_ms":17.969074173385728,"throughput_eps":0,"last_update":"2026-03-22T08:32:12.479269697Z"} +2026/03/22 08:32:17 [transform_engine] {"stage_name":"transform_engine","events_processed":301,"events_dropped":0,"avg_latency_ms":507.5355501523979,"throughput_eps":0,"last_update":"2026-03-22T08:32:12.479319743Z"} +2026/03/22 08:32:17 ───────────────────────────────────────────────── +2026/03/22 08:32:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:32:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3622,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:32:17.37623488Z"} +2026/03/22 08:32:22 [detection_layer] {"stage_name":"detection_layer","events_processed":301,"events_dropped":0,"avg_latency_ms":17.969074173385728,"throughput_eps":0,"last_update":"2026-03-22T08:32:17.479452691Z"} +2026/03/22 08:32:22 [transform_engine] {"stage_name":"transform_engine","events_processed":301,"events_dropped":0,"avg_latency_ms":507.5355501523979,"throughput_eps":0,"last_update":"2026-03-22T08:32:17.4794788Z"} +2026/03/22 08:32:22 [log_collector] {"stage_name":"log_collector","events_processed":15189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.8,"last_update":"2026-03-22T08:32:17.367992462Z"} +2026/03/22 08:32:22 [metric_collector] {"stage_name":"metric_collector","events_processed":9049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1809.8,"last_update":"2026-03-22T08:32:17.368316212Z"} +2026/03/22 08:32:22 ───────────────────────────────────────────────── +2026/03/22 08:32:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:32:27 [detection_layer] {"stage_name":"detection_layer","events_processed":301,"events_dropped":0,"avg_latency_ms":17.969074173385728,"throughput_eps":0,"last_update":"2026-03-22T08:32:22.479464203Z"} +2026/03/22 08:32:27 [transform_engine] {"stage_name":"transform_engine","events_processed":301,"events_dropped":0,"avg_latency_ms":507.5355501523979,"throughput_eps":0,"last_update":"2026-03-22T08:32:22.479498339Z"} +2026/03/22 08:32:27 [log_collector] {"stage_name":"log_collector","events_processed":15189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.8,"last_update":"2026-03-22T08:32:22.367952458Z"} +2026/03/22 08:32:27 [metric_collector] {"stage_name":"metric_collector","events_processed":9054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1810.8,"last_update":"2026-03-22T08:32:22.368386759Z"} +2026/03/22 08:32:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:32:22.377253924Z"} +2026/03/22 08:32:27 ───────────────────────────────────────────────── +2026/03/22 08:32:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:32:32 [log_collector] {"stage_name":"log_collector","events_processed":15189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.8,"last_update":"2026-03-22T08:32:32.367962362Z"} +2026/03/22 08:32:32 [metric_collector] {"stage_name":"metric_collector","events_processed":9059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1811.8,"last_update":"2026-03-22T08:32:27.369260082Z"} +2026/03/22 08:32:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:32:27.37790992Z"} +2026/03/22 08:32:32 [detection_layer] {"stage_name":"detection_layer","events_processed":301,"events_dropped":0,"avg_latency_ms":17.969074173385728,"throughput_eps":0,"last_update":"2026-03-22T08:32:27.4791491Z"} +2026/03/22 08:32:32 [transform_engine] {"stage_name":"transform_engine","events_processed":302,"events_dropped":0,"avg_latency_ms":426.81326672191835,"throughput_eps":0,"last_update":"2026-03-22T08:32:27.583050669Z"} +2026/03/22 08:32:32 ───────────────────────────────────────────────── +2026/03/22 08:32:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:32:37 [log_collector] {"stage_name":"log_collector","events_processed":15189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.8,"last_update":"2026-03-22T08:32:32.367962362Z"} +2026/03/22 08:32:37 [metric_collector] {"stage_name":"metric_collector","events_processed":9064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1812.8,"last_update":"2026-03-22T08:32:32.368220406Z"} +2026/03/22 08:32:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:32:32.374113744Z"} +2026/03/22 08:32:37 [detection_layer] {"stage_name":"detection_layer","events_processed":302,"events_dropped":0,"avg_latency_ms":17.291809738708583,"throughput_eps":0,"last_update":"2026-03-22T08:32:32.479359539Z"} +2026/03/22 08:32:37 [transform_engine] {"stage_name":"transform_engine","events_processed":302,"events_dropped":0,"avg_latency_ms":426.81326672191835,"throughput_eps":0,"last_update":"2026-03-22T08:32:32.479340953Z"} +2026/03/22 08:32:37 ───────────────────────────────────────────────── +2026/03/22 08:32:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:32:42 [log_collector] {"stage_name":"log_collector","events_processed":15189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.8,"last_update":"2026-03-22T08:32:42.368667183Z"} +2026/03/22 08:32:42 [metric_collector] {"stage_name":"metric_collector","events_processed":9069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1813.8,"last_update":"2026-03-22T08:32:37.368434131Z"} +2026/03/22 08:32:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:32:37.37715711Z"} +2026/03/22 08:32:42 [detection_layer] {"stage_name":"detection_layer","events_processed":302,"events_dropped":0,"avg_latency_ms":17.291809738708583,"throughput_eps":0,"last_update":"2026-03-22T08:32:37.479403468Z"} +2026/03/22 08:32:42 [transform_engine] {"stage_name":"transform_engine","events_processed":302,"events_dropped":0,"avg_latency_ms":426.81326672191835,"throughput_eps":0,"last_update":"2026-03-22T08:32:37.479372429Z"} +2026/03/22 08:32:42 ───────────────────────────────────────────────── +2026/03/22 08:32:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:32:47 [log_collector] {"stage_name":"log_collector","events_processed":15189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.8,"last_update":"2026-03-22T08:32:42.368667183Z"} +2026/03/22 08:32:47 [metric_collector] {"stage_name":"metric_collector","events_processed":9074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1814.8,"last_update":"2026-03-22T08:32:42.369076567Z"} +2026/03/22 08:32:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3632,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:32:42.377576108Z"} +2026/03/22 08:32:47 [detection_layer] {"stage_name":"detection_layer","events_processed":302,"events_dropped":0,"avg_latency_ms":17.291809738708583,"throughput_eps":0,"last_update":"2026-03-22T08:32:42.479747513Z"} +2026/03/22 08:32:47 [transform_engine] {"stage_name":"transform_engine","events_processed":302,"events_dropped":0,"avg_latency_ms":426.81326672191835,"throughput_eps":0,"last_update":"2026-03-22T08:32:42.479775386Z"} +2026/03/22 08:32:47 ───────────────────────────────────────────────── +2026/03/22 08:32:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:32:52 [metric_collector] {"stage_name":"metric_collector","events_processed":9079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1815.8,"last_update":"2026-03-22T08:32:47.369231528Z"} +2026/03/22 08:32:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:32:47.375373212Z"} +2026/03/22 08:32:52 [detection_layer] {"stage_name":"detection_layer","events_processed":302,"events_dropped":0,"avg_latency_ms":17.291809738708583,"throughput_eps":0,"last_update":"2026-03-22T08:32:47.479595416Z"} +2026/03/22 08:32:52 [transform_engine] {"stage_name":"transform_engine","events_processed":302,"events_dropped":0,"avg_latency_ms":426.81326672191835,"throughput_eps":0,"last_update":"2026-03-22T08:32:47.479619542Z"} +2026/03/22 08:32:52 [log_collector] {"stage_name":"log_collector","events_processed":15199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3039.8,"last_update":"2026-03-22T08:32:52.368021393Z"} +2026/03/22 08:32:52 ───────────────────────────────────────────────── +2026/03/22 08:32:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:32:57 [metric_collector] {"stage_name":"metric_collector","events_processed":9084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1816.8,"last_update":"2026-03-22T08:32:52.368922219Z"} +2026/03/22 08:32:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:32:52.376930668Z"} +2026/03/22 08:32:57 [detection_layer] {"stage_name":"detection_layer","events_processed":302,"events_dropped":0,"avg_latency_ms":17.291809738708583,"throughput_eps":0,"last_update":"2026-03-22T08:32:52.479145997Z"} +2026/03/22 08:32:57 [transform_engine] {"stage_name":"transform_engine","events_processed":302,"events_dropped":0,"avg_latency_ms":426.81326672191835,"throughput_eps":0,"last_update":"2026-03-22T08:32:52.479283922Z"} +2026/03/22 08:32:57 [log_collector] {"stage_name":"log_collector","events_processed":15199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3039.8,"last_update":"2026-03-22T08:32:52.368021393Z"} +2026/03/22 08:32:57 ───────────────────────────────────────────────── +2026/03/22 08:33:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:33:02 [transform_engine] {"stage_name":"transform_engine","events_processed":303,"events_dropped":0,"avg_latency_ms":365.0357817775347,"throughput_eps":0,"last_update":"2026-03-22T08:32:57.597094986Z"} +2026/03/22 08:33:02 [log_collector] {"stage_name":"log_collector","events_processed":15199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3039.8,"last_update":"2026-03-22T08:32:57.368181582Z"} +2026/03/22 08:33:02 [metric_collector] {"stage_name":"metric_collector","events_processed":9089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1817.8,"last_update":"2026-03-22T08:32:57.368903715Z"} +2026/03/22 08:33:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:32:57.376867108Z"} +2026/03/22 08:33:02 [detection_layer] {"stage_name":"detection_layer","events_processed":302,"events_dropped":0,"avg_latency_ms":17.291809738708583,"throughput_eps":0,"last_update":"2026-03-22T08:32:57.47914643Z"} +2026/03/22 08:33:02 ───────────────────────────────────────────────── +2026/03/22 08:33:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:33:07 [transform_engine] {"stage_name":"transform_engine","events_processed":303,"events_dropped":0,"avg_latency_ms":365.0357817775347,"throughput_eps":0,"last_update":"2026-03-22T08:33:02.47889989Z"} +2026/03/22 08:33:07 [log_collector] {"stage_name":"log_collector","events_processed":15200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3040,"last_update":"2026-03-22T08:33:07.36900984Z"} +2026/03/22 08:33:07 [metric_collector] {"stage_name":"metric_collector","events_processed":9094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1818.8,"last_update":"2026-03-22T08:33:02.368574475Z"} +2026/03/22 08:33:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3640,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:33:02.37769682Z"} +2026/03/22 08:33:07 [detection_layer] {"stage_name":"detection_layer","events_processed":303,"events_dropped":0,"avg_latency_ms":17.655919590966867,"throughput_eps":0,"last_update":"2026-03-22T08:33:02.478949946Z"} +2026/03/22 08:33:07 ───────────────────────────────────────────────── +2026/03/22 08:33:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:33:12 [log_collector] {"stage_name":"log_collector","events_processed":15200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3040,"last_update":"2026-03-22T08:33:07.36900984Z"} +2026/03/22 08:33:12 [metric_collector] {"stage_name":"metric_collector","events_processed":9099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1819.8,"last_update":"2026-03-22T08:33:07.369584611Z"} +2026/03/22 08:33:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:33:07.379533569Z"} +2026/03/22 08:33:12 [detection_layer] {"stage_name":"detection_layer","events_processed":303,"events_dropped":0,"avg_latency_ms":17.655919590966867,"throughput_eps":0,"last_update":"2026-03-22T08:33:07.479908802Z"} +2026/03/22 08:33:12 [transform_engine] {"stage_name":"transform_engine","events_processed":303,"events_dropped":0,"avg_latency_ms":365.0357817775347,"throughput_eps":0,"last_update":"2026-03-22T08:33:07.479924783Z"} +2026/03/22 08:33:12 ───────────────────────────────────────────────── +2026/03/22 08:33:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:33:17 [metric_collector] {"stage_name":"metric_collector","events_processed":9104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1820.8,"last_update":"2026-03-22T08:33:12.368725976Z"} +2026/03/22 08:33:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:33:12.377455297Z"} +2026/03/22 08:33:17 [detection_layer] {"stage_name":"detection_layer","events_processed":303,"events_dropped":0,"avg_latency_ms":17.655919590966867,"throughput_eps":0,"last_update":"2026-03-22T08:33:12.479671588Z"} +2026/03/22 08:33:17 [transform_engine] {"stage_name":"transform_engine","events_processed":303,"events_dropped":0,"avg_latency_ms":365.0357817775347,"throughput_eps":0,"last_update":"2026-03-22T08:33:12.479683652Z"} +2026/03/22 08:33:17 [log_collector] {"stage_name":"log_collector","events_processed":15200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3040,"last_update":"2026-03-22T08:33:12.367997982Z"} +2026/03/22 08:33:17 ───────────────────────────────────────────────── +2026/03/22 08:33:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:33:22 [log_collector] {"stage_name":"log_collector","events_processed":15200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3040,"last_update":"2026-03-22T08:33:22.368764888Z"} +2026/03/22 08:33:22 [metric_collector] {"stage_name":"metric_collector","events_processed":9109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1821.8,"last_update":"2026-03-22T08:33:17.368961828Z"} +2026/03/22 08:33:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3646,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:33:17.378165266Z"} +2026/03/22 08:33:22 [detection_layer] {"stage_name":"detection_layer","events_processed":303,"events_dropped":0,"avg_latency_ms":17.655919590966867,"throughput_eps":0,"last_update":"2026-03-22T08:33:17.479519647Z"} +2026/03/22 08:33:22 [transform_engine] {"stage_name":"transform_engine","events_processed":303,"events_dropped":0,"avg_latency_ms":365.0357817775347,"throughput_eps":0,"last_update":"2026-03-22T08:33:17.479535116Z"} +2026/03/22 08:33:22 ───────────────────────────────────────────────── +2026/03/22 08:33:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:33:27 [log_collector] {"stage_name":"log_collector","events_processed":15200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3040,"last_update":"2026-03-22T08:33:22.368764888Z"} +2026/03/22 08:33:27 [metric_collector] {"stage_name":"metric_collector","events_processed":9114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1822.8,"last_update":"2026-03-22T08:33:22.369075724Z"} +2026/03/22 08:33:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:33:22.37875831Z"} +2026/03/22 08:33:27 [detection_layer] {"stage_name":"detection_layer","events_processed":303,"events_dropped":0,"avg_latency_ms":17.655919590966867,"throughput_eps":0,"last_update":"2026-03-22T08:33:22.479034786Z"} +2026/03/22 08:33:27 [transform_engine] {"stage_name":"transform_engine","events_processed":303,"events_dropped":0,"avg_latency_ms":365.0357817775347,"throughput_eps":0,"last_update":"2026-03-22T08:33:22.4790473Z"} +2026/03/22 08:33:27 ───────────────────────────────────────────────── +2026/03/22 08:33:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:33:32 [log_collector] {"stage_name":"log_collector","events_processed":15200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3040,"last_update":"2026-03-22T08:33:27.368385709Z"} +2026/03/22 08:33:32 [metric_collector] {"stage_name":"metric_collector","events_processed":9119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1823.8,"last_update":"2026-03-22T08:33:27.368945912Z"} +2026/03/22 08:33:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3650,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:33:27.37997102Z"} +2026/03/22 08:33:32 [detection_layer] {"stage_name":"detection_layer","events_processed":303,"events_dropped":0,"avg_latency_ms":17.655919590966867,"throughput_eps":0,"last_update":"2026-03-22T08:33:27.479507789Z"} +2026/03/22 08:33:32 [transform_engine] {"stage_name":"transform_engine","events_processed":304,"events_dropped":0,"avg_latency_ms":314.51110182202774,"throughput_eps":0,"last_update":"2026-03-22T08:33:27.591732641Z"} +2026/03/22 08:33:32 ───────────────────────────────────────────────── +2026/03/22 08:33:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:33:37 [log_collector] {"stage_name":"log_collector","events_processed":15200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3040,"last_update":"2026-03-22T08:33:32.368748199Z"} +2026/03/22 08:33:37 [metric_collector] {"stage_name":"metric_collector","events_processed":9124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1824.8,"last_update":"2026-03-22T08:33:32.368931881Z"} +2026/03/22 08:33:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:33:32.379644912Z"} +2026/03/22 08:33:37 [detection_layer] {"stage_name":"detection_layer","events_processed":304,"events_dropped":0,"avg_latency_ms":18.204636472773494,"throughput_eps":0,"last_update":"2026-03-22T08:33:32.480020387Z"} +2026/03/22 08:33:37 [transform_engine] {"stage_name":"transform_engine","events_processed":304,"events_dropped":0,"avg_latency_ms":314.51110182202774,"throughput_eps":0,"last_update":"2026-03-22T08:33:32.478875924Z"} +2026/03/22 08:33:37 ───────────────────────────────────────────────── +2026/03/22 08:33:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:33:42 [log_collector] {"stage_name":"log_collector","events_processed":15200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3040,"last_update":"2026-03-22T08:33:37.368659684Z"} +2026/03/22 08:33:42 [metric_collector] {"stage_name":"metric_collector","events_processed":9129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1825.8,"last_update":"2026-03-22T08:33:37.368914131Z"} +2026/03/22 08:33:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:33:37.377049094Z"} +2026/03/22 08:33:42 [detection_layer] {"stage_name":"detection_layer","events_processed":304,"events_dropped":0,"avg_latency_ms":18.204636472773494,"throughput_eps":0,"last_update":"2026-03-22T08:33:37.479386577Z"} +2026/03/22 08:33:42 [transform_engine] {"stage_name":"transform_engine","events_processed":304,"events_dropped":0,"avg_latency_ms":314.51110182202774,"throughput_eps":0,"last_update":"2026-03-22T08:33:37.479399392Z"} +2026/03/22 08:33:42 ───────────────────────────────────────────────── +2026/03/22 08:33:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:33:47 [log_collector] {"stage_name":"log_collector","events_processed":15200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3040,"last_update":"2026-03-22T08:33:47.368019394Z"} +2026/03/22 08:33:47 [metric_collector] {"stage_name":"metric_collector","events_processed":9134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1826.8,"last_update":"2026-03-22T08:33:42.368748628Z"} +2026/03/22 08:33:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:33:42.376481359Z"} +2026/03/22 08:33:47 [detection_layer] {"stage_name":"detection_layer","events_processed":304,"events_dropped":0,"avg_latency_ms":18.204636472773494,"throughput_eps":0,"last_update":"2026-03-22T08:33:42.479667478Z"} +2026/03/22 08:33:47 [transform_engine] {"stage_name":"transform_engine","events_processed":304,"events_dropped":0,"avg_latency_ms":314.51110182202774,"throughput_eps":0,"last_update":"2026-03-22T08:33:42.479680463Z"} +2026/03/22 08:33:47 ───────────────────────────────────────────────── +2026/03/22 08:33:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:33:52 [log_collector] {"stage_name":"log_collector","events_processed":15200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3040,"last_update":"2026-03-22T08:33:52.367962617Z"} +2026/03/22 08:33:52 [metric_collector] {"stage_name":"metric_collector","events_processed":9139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1827.8,"last_update":"2026-03-22T08:33:47.368645664Z"} +2026/03/22 08:33:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:33:47.377991655Z"} +2026/03/22 08:33:52 [detection_layer] {"stage_name":"detection_layer","events_processed":304,"events_dropped":0,"avg_latency_ms":18.204636472773494,"throughput_eps":0,"last_update":"2026-03-22T08:33:47.479238079Z"} +2026/03/22 08:33:52 [transform_engine] {"stage_name":"transform_engine","events_processed":304,"events_dropped":0,"avg_latency_ms":314.51110182202774,"throughput_eps":0,"last_update":"2026-03-22T08:33:47.479246285Z"} +2026/03/22 08:33:52 ───────────────────────────────────────────────── +2026/03/22 08:33:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:33:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3660,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:33:52.378480463Z"} +2026/03/22 08:33:57 [detection_layer] {"stage_name":"detection_layer","events_processed":304,"events_dropped":0,"avg_latency_ms":18.204636472773494,"throughput_eps":0,"last_update":"2026-03-22T08:33:52.479772764Z"} +2026/03/22 08:33:57 [transform_engine] {"stage_name":"transform_engine","events_processed":304,"events_dropped":0,"avg_latency_ms":314.51110182202774,"throughput_eps":0,"last_update":"2026-03-22T08:33:52.479787082Z"} +2026/03/22 08:33:57 [log_collector] {"stage_name":"log_collector","events_processed":15200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3040,"last_update":"2026-03-22T08:33:57.368015138Z"} +2026/03/22 08:33:57 [metric_collector] {"stage_name":"metric_collector","events_processed":9144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1828.8,"last_update":"2026-03-22T08:33:52.368922816Z"} +2026/03/22 08:33:57 ───────────────────────────────────────────────── +2026/03/22 08:34:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:34:02 [log_collector] {"stage_name":"log_collector","events_processed":15200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3040,"last_update":"2026-03-22T08:33:57.368015138Z"} +2026/03/22 08:34:02 [metric_collector] {"stage_name":"metric_collector","events_processed":9149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1829.8,"last_update":"2026-03-22T08:33:57.368801864Z"} +2026/03/22 08:34:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3662,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:33:57.37841076Z"} +2026/03/22 08:34:02 [detection_layer] {"stage_name":"detection_layer","events_processed":304,"events_dropped":0,"avg_latency_ms":18.204636472773494,"throughput_eps":0,"last_update":"2026-03-22T08:33:57.479704243Z"} +2026/03/22 08:34:02 [transform_engine] {"stage_name":"transform_engine","events_processed":305,"events_dropped":0,"avg_latency_ms":265.2777416576222,"throughput_eps":0,"last_update":"2026-03-22T08:33:57.548057572Z"} +2026/03/22 08:34:02 ───────────────────────────────────────────────── +Saved state: 11 clusters, 15201 messages, reason: none +2026/03/22 08:34:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:34:07 [metric_collector] {"stage_name":"metric_collector","events_processed":9154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1830.8,"last_update":"2026-03-22T08:34:02.368290746Z"} +2026/03/22 08:34:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:34:02.377152851Z"} +2026/03/22 08:34:07 [detection_layer] {"stage_name":"detection_layer","events_processed":305,"events_dropped":0,"avg_latency_ms":18.539107778218796,"throughput_eps":0,"last_update":"2026-03-22T08:34:02.479463002Z"} +2026/03/22 08:34:07 [transform_engine] {"stage_name":"transform_engine","events_processed":305,"events_dropped":0,"avg_latency_ms":265.2777416576222,"throughput_eps":0,"last_update":"2026-03-22T08:34:02.479478481Z"} +2026/03/22 08:34:07 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:34:07.368826842Z"} +2026/03/22 08:34:07 ───────────────────────────────────────────────── +2026/03/22 08:34:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:34:12 [metric_collector] {"stage_name":"metric_collector","events_processed":9164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1832.8,"last_update":"2026-03-22T08:34:12.368836597Z"} +2026/03/22 08:34:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:34:07.377158811Z"} +2026/03/22 08:34:12 [detection_layer] {"stage_name":"detection_layer","events_processed":305,"events_dropped":0,"avg_latency_ms":18.539107778218796,"throughput_eps":0,"last_update":"2026-03-22T08:34:07.479403045Z"} +2026/03/22 08:34:12 [transform_engine] {"stage_name":"transform_engine","events_processed":305,"events_dropped":0,"avg_latency_ms":265.2777416576222,"throughput_eps":0,"last_update":"2026-03-22T08:34:07.47941586Z"} +2026/03/22 08:34:12 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:34:12.368850574Z"} +2026/03/22 08:34:12 ───────────────────────────────────────────────── +2026/03/22 08:34:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:34:17 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:34:17.368623305Z"} +2026/03/22 08:34:17 [metric_collector] {"stage_name":"metric_collector","events_processed":9164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1832.8,"last_update":"2026-03-22T08:34:12.368836597Z"} +2026/03/22 08:34:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3668,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:34:12.38863982Z"} +2026/03/22 08:34:17 [detection_layer] {"stage_name":"detection_layer","events_processed":305,"events_dropped":0,"avg_latency_ms":18.539107778218796,"throughput_eps":0,"last_update":"2026-03-22T08:34:12.479797488Z"} +2026/03/22 08:34:17 [transform_engine] {"stage_name":"transform_engine","events_processed":305,"events_dropped":0,"avg_latency_ms":265.2777416576222,"throughput_eps":0,"last_update":"2026-03-22T08:34:12.479813379Z"} +2026/03/22 08:34:17 ───────────────────────────────────────────────── +2026/03/22 08:34:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:34:22 [detection_layer] {"stage_name":"detection_layer","events_processed":305,"events_dropped":0,"avg_latency_ms":18.539107778218796,"throughput_eps":0,"last_update":"2026-03-22T08:34:17.479705288Z"} +2026/03/22 08:34:22 [transform_engine] {"stage_name":"transform_engine","events_processed":305,"events_dropped":0,"avg_latency_ms":265.2777416576222,"throughput_eps":0,"last_update":"2026-03-22T08:34:17.479716529Z"} +2026/03/22 08:34:22 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:34:17.368623305Z"} +2026/03/22 08:34:22 [metric_collector] {"stage_name":"metric_collector","events_processed":9169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1833.8,"last_update":"2026-03-22T08:34:17.36883993Z"} +2026/03/22 08:34:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3670,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:34:17.377493496Z"} +2026/03/22 08:34:22 ───────────────────────────────────────────────── +2026/03/22 08:34:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:34:27 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:34:22.368930639Z"} +2026/03/22 08:34:27 [metric_collector] {"stage_name":"metric_collector","events_processed":9174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1834.8,"last_update":"2026-03-22T08:34:22.369067922Z"} +2026/03/22 08:34:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:34:22.375947079Z"} +2026/03/22 08:34:27 [detection_layer] {"stage_name":"detection_layer","events_processed":305,"events_dropped":0,"avg_latency_ms":18.539107778218796,"throughput_eps":0,"last_update":"2026-03-22T08:34:22.479161873Z"} +2026/03/22 08:34:27 [transform_engine] {"stage_name":"transform_engine","events_processed":305,"events_dropped":0,"avg_latency_ms":265.2777416576222,"throughput_eps":0,"last_update":"2026-03-22T08:34:22.479174787Z"} +2026/03/22 08:34:27 ───────────────────────────────────────────────── +2026/03/22 08:34:27 [ANOMALY] time=2026-03-22T08:34:27Z score=0.8174 method=SEAD details=MAD!:w=0.53,s=0.92 RRCF-fast:w=0.13,s=0.82 RRCF-mid:w=0.11,s=0.85 RRCF-slow:w=0.09,s=0.76 COPOD!:w=0.15,s=0.44 +2026/03/22 08:34:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:34:32 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:34:27.368893133Z"} +2026/03/22 08:34:32 [metric_collector] {"stage_name":"metric_collector","events_processed":9184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1836.8,"last_update":"2026-03-22T08:34:32.368330748Z"} +2026/03/22 08:34:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:34:27.374881724Z"} +2026/03/22 08:34:32 [detection_layer] {"stage_name":"detection_layer","events_processed":305,"events_dropped":0,"avg_latency_ms":18.539107778218796,"throughput_eps":0,"last_update":"2026-03-22T08:34:27.479052338Z"} +2026/03/22 08:34:32 [transform_engine] {"stage_name":"transform_engine","events_processed":306,"events_dropped":0,"avg_latency_ms":232.52134732609778,"throughput_eps":0,"last_update":"2026-03-22T08:34:27.580560713Z"} +2026/03/22 08:34:32 ───────────────────────────────────────────────── +2026/03/22 08:34:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:34:37 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:34:32.368424528Z"} +2026/03/22 08:34:37 [metric_collector] {"stage_name":"metric_collector","events_processed":9184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1836.8,"last_update":"2026-03-22T08:34:32.368330748Z"} +2026/03/22 08:34:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3676,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:34:32.376883219Z"} +2026/03/22 08:34:37 [detection_layer] {"stage_name":"detection_layer","events_processed":306,"events_dropped":0,"avg_latency_ms":17.170723222575038,"throughput_eps":0,"last_update":"2026-03-22T08:34:32.47907312Z"} +2026/03/22 08:34:37 [transform_engine] {"stage_name":"transform_engine","events_processed":306,"events_dropped":0,"avg_latency_ms":232.52134732609778,"throughput_eps":0,"last_update":"2026-03-22T08:34:32.479085895Z"} +2026/03/22 08:34:37 ───────────────────────────────────────────────── +2026/03/22 08:34:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:34:42 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:34:37.368395824Z"} +2026/03/22 08:34:42 [metric_collector] {"stage_name":"metric_collector","events_processed":9189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1837.8,"last_update":"2026-03-22T08:34:37.368843361Z"} +2026/03/22 08:34:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:34:37.377641083Z"} +2026/03/22 08:34:42 [detection_layer] {"stage_name":"detection_layer","events_processed":306,"events_dropped":0,"avg_latency_ms":17.170723222575038,"throughput_eps":0,"last_update":"2026-03-22T08:34:37.47982939Z"} +2026/03/22 08:34:42 [transform_engine] {"stage_name":"transform_engine","events_processed":306,"events_dropped":0,"avg_latency_ms":232.52134732609778,"throughput_eps":0,"last_update":"2026-03-22T08:34:37.479842276Z"} +2026/03/22 08:34:42 ───────────────────────────────────────────────── +2026/03/22 08:34:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:34:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:34:42.374680303Z"} +2026/03/22 08:34:47 [detection_layer] {"stage_name":"detection_layer","events_processed":306,"events_dropped":0,"avg_latency_ms":17.170723222575038,"throughput_eps":0,"last_update":"2026-03-22T08:34:42.479885529Z"} +2026/03/22 08:34:47 [transform_engine] {"stage_name":"transform_engine","events_processed":306,"events_dropped":0,"avg_latency_ms":232.52134732609778,"throughput_eps":0,"last_update":"2026-03-22T08:34:42.479898724Z"} +2026/03/22 08:34:47 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:34:42.368600337Z"} +2026/03/22 08:34:47 [metric_collector] {"stage_name":"metric_collector","events_processed":9194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1838.8,"last_update":"2026-03-22T08:34:42.368861637Z"} +2026/03/22 08:34:47 ───────────────────────────────────────────────── +2026/03/22 08:34:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:34:52 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:34:47.368515156Z"} +2026/03/22 08:34:52 [metric_collector] {"stage_name":"metric_collector","events_processed":9199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1839.8,"last_update":"2026-03-22T08:34:47.368800822Z"} +2026/03/22 08:34:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:34:47.374345443Z"} +2026/03/22 08:34:52 [detection_layer] {"stage_name":"detection_layer","events_processed":306,"events_dropped":0,"avg_latency_ms":17.170723222575038,"throughput_eps":0,"last_update":"2026-03-22T08:34:47.479528116Z"} +2026/03/22 08:34:52 [transform_engine] {"stage_name":"transform_engine","events_processed":306,"events_dropped":0,"avg_latency_ms":232.52134732609778,"throughput_eps":0,"last_update":"2026-03-22T08:34:47.47954102Z"} +2026/03/22 08:34:52 ───────────────────────────────────────────────── +2026/03/22 08:34:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:34:57 [transform_engine] {"stage_name":"transform_engine","events_processed":306,"events_dropped":0,"avg_latency_ms":232.52134732609778,"throughput_eps":0,"last_update":"2026-03-22T08:34:52.479696389Z"} +2026/03/22 08:34:57 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:34:52.367962627Z"} +2026/03/22 08:34:57 [metric_collector] {"stage_name":"metric_collector","events_processed":9203,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1840.6,"last_update":"2026-03-22T08:34:52.367954371Z"} +2026/03/22 08:34:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:34:52.377472663Z"} +2026/03/22 08:34:57 [detection_layer] {"stage_name":"detection_layer","events_processed":306,"events_dropped":0,"avg_latency_ms":17.170723222575038,"throughput_eps":0,"last_update":"2026-03-22T08:34:52.479677773Z"} +2026/03/22 08:34:57 ───────────────────────────────────────────────── +2026/03/22 08:35:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:35:02 [transform_engine] {"stage_name":"transform_engine","events_processed":307,"events_dropped":0,"avg_latency_ms":197.84444666087825,"throughput_eps":0,"last_update":"2026-03-22T08:34:57.538018779Z"} +2026/03/22 08:35:02 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:34:57.368546642Z"} +2026/03/22 08:35:02 [metric_collector] {"stage_name":"metric_collector","events_processed":9208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1841.6,"last_update":"2026-03-22T08:34:57.3684566Z"} +2026/03/22 08:35:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:34:57.374757099Z"} +2026/03/22 08:35:02 [detection_layer] {"stage_name":"detection_layer","events_processed":306,"events_dropped":0,"avg_latency_ms":17.170723222575038,"throughput_eps":0,"last_update":"2026-03-22T08:34:57.479998043Z"} +2026/03/22 08:35:02 ───────────────────────────────────────────────── +2026/03/22 08:35:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:35:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3688,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:35:02.375013517Z"} +2026/03/22 08:35:07 [detection_layer] {"stage_name":"detection_layer","events_processed":307,"events_dropped":0,"avg_latency_ms":16.17816917806003,"throughput_eps":0,"last_update":"2026-03-22T08:35:02.479211443Z"} +2026/03/22 08:35:07 [transform_engine] {"stage_name":"transform_engine","events_processed":307,"events_dropped":0,"avg_latency_ms":197.84444666087825,"throughput_eps":0,"last_update":"2026-03-22T08:35:02.479220941Z"} +2026/03/22 08:35:07 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:35:02.368597046Z"} +2026/03/22 08:35:07 [metric_collector] {"stage_name":"metric_collector","events_processed":9214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1842.8,"last_update":"2026-03-22T08:35:02.368825914Z"} +2026/03/22 08:35:07 ───────────────────────────────────────────────── +2026/03/22 08:35:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:35:12 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:35:07.368728285Z"} +2026/03/22 08:35:12 [metric_collector] {"stage_name":"metric_collector","events_processed":9219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1843.8,"last_update":"2026-03-22T08:35:07.369160142Z"} +2026/03/22 08:35:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:35:07.378500092Z"} +2026/03/22 08:35:12 [detection_layer] {"stage_name":"detection_layer","events_processed":307,"events_dropped":0,"avg_latency_ms":16.17816917806003,"throughput_eps":0,"last_update":"2026-03-22T08:35:07.479683885Z"} +2026/03/22 08:35:12 [transform_engine] {"stage_name":"transform_engine","events_processed":307,"events_dropped":0,"avg_latency_ms":197.84444666087825,"throughput_eps":0,"last_update":"2026-03-22T08:35:07.47969719Z"} +2026/03/22 08:35:12 ───────────────────────────────────────────────── +2026/03/22 08:35:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:35:17 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:35:12.368285303Z"} +2026/03/22 08:35:17 [metric_collector] {"stage_name":"metric_collector","events_processed":9224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1844.8,"last_update":"2026-03-22T08:35:12.368275475Z"} +2026/03/22 08:35:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:35:12.375619913Z"} +2026/03/22 08:35:17 [detection_layer] {"stage_name":"detection_layer","events_processed":307,"events_dropped":0,"avg_latency_ms":16.17816917806003,"throughput_eps":0,"last_update":"2026-03-22T08:35:12.479785266Z"} +2026/03/22 08:35:17 [transform_engine] {"stage_name":"transform_engine","events_processed":307,"events_dropped":0,"avg_latency_ms":197.84444666087825,"throughput_eps":0,"last_update":"2026-03-22T08:35:12.479794675Z"} +2026/03/22 08:35:17 ───────────────────────────────────────────────── +2026/03/22 08:35:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:35:22 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:35:17.367948224Z"} +2026/03/22 08:35:22 [metric_collector] {"stage_name":"metric_collector","events_processed":9228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1845.6,"last_update":"2026-03-22T08:35:17.367893649Z"} +2026/03/22 08:35:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:35:17.375459411Z"} +2026/03/22 08:35:22 [detection_layer] {"stage_name":"detection_layer","events_processed":307,"events_dropped":0,"avg_latency_ms":16.17816917806003,"throughput_eps":0,"last_update":"2026-03-22T08:35:17.479652989Z"} +2026/03/22 08:35:22 [transform_engine] {"stage_name":"transform_engine","events_processed":307,"events_dropped":0,"avg_latency_ms":197.84444666087825,"throughput_eps":0,"last_update":"2026-03-22T08:35:17.47966874Z"} +2026/03/22 08:35:22 ───────────────────────────────────────────────── +2026/03/22 08:35:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:35:27 [detection_layer] {"stage_name":"detection_layer","events_processed":307,"events_dropped":0,"avg_latency_ms":16.17816917806003,"throughput_eps":0,"last_update":"2026-03-22T08:35:22.479705914Z"} +2026/03/22 08:35:27 [transform_engine] {"stage_name":"transform_engine","events_processed":307,"events_dropped":0,"avg_latency_ms":197.84444666087825,"throughput_eps":0,"last_update":"2026-03-22T08:35:22.47972006Z"} +2026/03/22 08:35:27 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:35:22.368653659Z"} +2026/03/22 08:35:27 [metric_collector] {"stage_name":"metric_collector","events_processed":9234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1846.8,"last_update":"2026-03-22T08:35:22.368950466Z"} +2026/03/22 08:35:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:35:22.377452332Z"} +2026/03/22 08:35:27 ───────────────────────────────────────────────── +2026/03/22 08:35:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:35:32 [transform_engine] {"stage_name":"transform_engine","events_processed":308,"events_dropped":0,"avg_latency_ms":170.5962431287026,"throughput_eps":0,"last_update":"2026-03-22T08:35:27.540538219Z"} +2026/03/22 08:35:32 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:35:32.368803861Z"} +2026/03/22 08:35:32 [metric_collector] {"stage_name":"metric_collector","events_processed":9239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1847.8,"last_update":"2026-03-22T08:35:27.3686531Z"} +2026/03/22 08:35:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:35:27.375649131Z"} +2026/03/22 08:35:32 [detection_layer] {"stage_name":"detection_layer","events_processed":307,"events_dropped":0,"avg_latency_ms":16.17816917806003,"throughput_eps":0,"last_update":"2026-03-22T08:35:27.479032868Z"} +2026/03/22 08:35:32 ───────────────────────────────────────────────── +2026/03/22 08:35:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:35:37 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:35:32.368803861Z"} +2026/03/22 08:35:37 [metric_collector] {"stage_name":"metric_collector","events_processed":9244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1848.8,"last_update":"2026-03-22T08:35:32.369239495Z"} +2026/03/22 08:35:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3700,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:35:32.376072223Z"} +2026/03/22 08:35:37 [detection_layer] {"stage_name":"detection_layer","events_processed":308,"events_dropped":0,"avg_latency_ms":15.291448542448025,"throughput_eps":0,"last_update":"2026-03-22T08:35:32.479258312Z"} +2026/03/22 08:35:37 [transform_engine] {"stage_name":"transform_engine","events_processed":308,"events_dropped":0,"avg_latency_ms":170.5962431287026,"throughput_eps":0,"last_update":"2026-03-22T08:35:32.479269894Z"} +2026/03/22 08:35:37 ───────────────────────────────────────────────── +2026/03/22 08:35:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:35:42 [detection_layer] {"stage_name":"detection_layer","events_processed":308,"events_dropped":0,"avg_latency_ms":15.291448542448025,"throughput_eps":0,"last_update":"2026-03-22T08:35:37.47980931Z"} +2026/03/22 08:35:42 [transform_engine] {"stage_name":"transform_engine","events_processed":308,"events_dropped":0,"avg_latency_ms":170.5962431287026,"throughput_eps":0,"last_update":"2026-03-22T08:35:37.479820551Z"} +2026/03/22 08:35:42 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:35:37.368030843Z"} +2026/03/22 08:35:42 [metric_collector] {"stage_name":"metric_collector","events_processed":9249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1849.8,"last_update":"2026-03-22T08:35:37.368325207Z"} +2026/03/22 08:35:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3702,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:35:37.377605383Z"} +2026/03/22 08:35:42 ───────────────────────────────────────────────── +2026/03/22 08:35:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:35:47 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:35:42.368303666Z"} +2026/03/22 08:35:47 [metric_collector] {"stage_name":"metric_collector","events_processed":9254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1850.8,"last_update":"2026-03-22T08:35:42.368617377Z"} +2026/03/22 08:35:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:35:42.377946546Z"} +2026/03/22 08:35:47 [detection_layer] {"stage_name":"detection_layer","events_processed":308,"events_dropped":0,"avg_latency_ms":15.291448542448025,"throughput_eps":0,"last_update":"2026-03-22T08:35:42.479142052Z"} +2026/03/22 08:35:47 [transform_engine] {"stage_name":"transform_engine","events_processed":308,"events_dropped":0,"avg_latency_ms":170.5962431287026,"throughput_eps":0,"last_update":"2026-03-22T08:35:42.479163293Z"} +2026/03/22 08:35:47 ───────────────────────────────────────────────── +2026/03/22 08:35:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:35:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:35:47.378245576Z"} +2026/03/22 08:35:52 [detection_layer] {"stage_name":"detection_layer","events_processed":308,"events_dropped":0,"avg_latency_ms":15.291448542448025,"throughput_eps":0,"last_update":"2026-03-22T08:35:47.479461411Z"} +2026/03/22 08:35:52 [transform_engine] {"stage_name":"transform_engine","events_processed":308,"events_dropped":0,"avg_latency_ms":170.5962431287026,"throughput_eps":0,"last_update":"2026-03-22T08:35:47.479473103Z"} +2026/03/22 08:35:52 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:35:47.367962349Z"} +2026/03/22 08:35:52 [metric_collector] {"stage_name":"metric_collector","events_processed":9259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1851.8,"last_update":"2026-03-22T08:35:47.368277062Z"} +2026/03/22 08:35:52 ───────────────────────────────────────────────── +2026/03/22 08:35:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:35:57 [detection_layer] {"stage_name":"detection_layer","events_processed":308,"events_dropped":0,"avg_latency_ms":15.291448542448025,"throughput_eps":0,"last_update":"2026-03-22T08:35:52.479965383Z"} +2026/03/22 08:35:57 [transform_engine] {"stage_name":"transform_engine","events_processed":308,"events_dropped":0,"avg_latency_ms":170.5962431287026,"throughput_eps":0,"last_update":"2026-03-22T08:35:52.478853974Z"} +2026/03/22 08:35:57 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:35:52.368011811Z"} +2026/03/22 08:35:57 [metric_collector] {"stage_name":"metric_collector","events_processed":9264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1852.8,"last_update":"2026-03-22T08:35:52.368133264Z"} +2026/03/22 08:35:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:35:52.374676247Z"} +2026/03/22 08:35:57 ───────────────────────────────────────────────── +2026/03/22 08:35:57 [ANOMALY] time=2026-03-22T08:35:57Z score=0.8603 method=SEAD details=MAD!:w=0.52,s=1.00 RRCF-fast!:w=0.13,s=0.94 RRCF-mid!:w=0.11,s=0.94 RRCF-slow!:w=0.09,s=1.00 COPOD!:w=0.15,s=0.18 +2026/03/22 08:36:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:36:02 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:36:02.368578834Z"} +2026/03/22 08:36:02 [metric_collector] {"stage_name":"metric_collector","events_processed":9269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1853.8,"last_update":"2026-03-22T08:35:57.368246427Z"} +2026/03/22 08:36:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:35:57.376465501Z"} +2026/03/22 08:36:02 [detection_layer] {"stage_name":"detection_layer","events_processed":308,"events_dropped":0,"avg_latency_ms":15.291448542448025,"throughput_eps":0,"last_update":"2026-03-22T08:35:57.479668942Z"} +2026/03/22 08:36:02 [transform_engine] {"stage_name":"transform_engine","events_processed":309,"events_dropped":0,"avg_latency_ms":150.0732975029621,"throughput_eps":0,"last_update":"2026-03-22T08:35:57.547666119Z"} +2026/03/22 08:36:02 ───────────────────────────────────────────────── +2026/03/22 08:36:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:36:07 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:36:02.368578834Z"} +2026/03/22 08:36:07 [metric_collector] {"stage_name":"metric_collector","events_processed":9274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1854.8,"last_update":"2026-03-22T08:36:02.368995732Z"} +2026/03/22 08:36:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3712,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:36:02.378683138Z"} +2026/03/22 08:36:07 [detection_layer] {"stage_name":"detection_layer","events_processed":309,"events_dropped":0,"avg_latency_ms":15.29775303395842,"throughput_eps":0,"last_update":"2026-03-22T08:36:02.479898211Z"} +2026/03/22 08:36:07 [transform_engine] {"stage_name":"transform_engine","events_processed":309,"events_dropped":0,"avg_latency_ms":150.0732975029621,"throughput_eps":0,"last_update":"2026-03-22T08:36:02.478812842Z"} +2026/03/22 08:36:07 ───────────────────────────────────────────────── +2026/03/22 08:36:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:36:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:36:07.375642243Z"} +2026/03/22 08:36:12 [detection_layer] {"stage_name":"detection_layer","events_processed":309,"events_dropped":0,"avg_latency_ms":15.29775303395842,"throughput_eps":0,"last_update":"2026-03-22T08:36:07.479820261Z"} +2026/03/22 08:36:12 [transform_engine] {"stage_name":"transform_engine","events_processed":309,"events_dropped":0,"avg_latency_ms":150.0732975029621,"throughput_eps":0,"last_update":"2026-03-22T08:36:07.479836112Z"} +2026/03/22 08:36:12 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:36:07.368149411Z"} +2026/03/22 08:36:12 [metric_collector] {"stage_name":"metric_collector","events_processed":9279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1855.8,"last_update":"2026-03-22T08:36:07.368610023Z"} +2026/03/22 08:36:12 ───────────────────────────────────────────────── +2026/03/22 08:36:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:36:17 [detection_layer] {"stage_name":"detection_layer","events_processed":309,"events_dropped":0,"avg_latency_ms":15.29775303395842,"throughput_eps":0,"last_update":"2026-03-22T08:36:12.479609819Z"} +2026/03/22 08:36:17 [transform_engine] {"stage_name":"transform_engine","events_processed":309,"events_dropped":0,"avg_latency_ms":150.0732975029621,"throughput_eps":0,"last_update":"2026-03-22T08:36:12.479624898Z"} +2026/03/22 08:36:17 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:36:12.367952225Z"} +2026/03/22 08:36:17 [metric_collector] {"stage_name":"metric_collector","events_processed":9284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1856.8,"last_update":"2026-03-22T08:36:12.368221942Z"} +2026/03/22 08:36:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:36:12.377409981Z"} +2026/03/22 08:36:17 ───────────────────────────────────────────────── +2026/03/22 08:36:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:36:22 [transform_engine] {"stage_name":"transform_engine","events_processed":309,"events_dropped":0,"avg_latency_ms":150.0732975029621,"throughput_eps":0,"last_update":"2026-03-22T08:36:17.47981094Z"} +2026/03/22 08:36:22 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:36:17.368371172Z"} +2026/03/22 08:36:22 [metric_collector] {"stage_name":"metric_collector","events_processed":9289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1857.8,"last_update":"2026-03-22T08:36:17.36857908Z"} +2026/03/22 08:36:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3718,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:36:17.377626259Z"} +2026/03/22 08:36:22 [detection_layer] {"stage_name":"detection_layer","events_processed":309,"events_dropped":0,"avg_latency_ms":15.29775303395842,"throughput_eps":0,"last_update":"2026-03-22T08:36:17.479842129Z"} +2026/03/22 08:36:22 ───────────────────────────────────────────────── +2026/03/22 08:36:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:36:27 [transform_engine] {"stage_name":"transform_engine","events_processed":309,"events_dropped":0,"avg_latency_ms":150.0732975029621,"throughput_eps":0,"last_update":"2026-03-22T08:36:22.479133188Z"} +2026/03/22 08:36:27 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:36:22.368543579Z"} +2026/03/22 08:36:27 [metric_collector] {"stage_name":"metric_collector","events_processed":9294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1858.8,"last_update":"2026-03-22T08:36:22.368775844Z"} +2026/03/22 08:36:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:36:22.374945592Z"} +2026/03/22 08:36:27 [detection_layer] {"stage_name":"detection_layer","events_processed":309,"events_dropped":0,"avg_latency_ms":15.29775303395842,"throughput_eps":0,"last_update":"2026-03-22T08:36:22.479252737Z"} +2026/03/22 08:36:27 ───────────────────────────────────────────────── +2026/03/22 08:36:27 [ANOMALY] time=2026-03-22T08:36:27Z score=0.7939 method=SEAD details=MAD!:w=0.52,s=1.00 RRCF-fast:w=0.13,s=0.70 RRCF-mid:w=0.11,s=0.77 RRCF-slow!:w=0.09,s=0.92 COPOD!:w=0.15,s=0.13 +2026/03/22 08:36:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:36:32 [transform_engine] {"stage_name":"transform_engine","events_processed":310,"events_dropped":0,"avg_latency_ms":131.9671402023697,"throughput_eps":0,"last_update":"2026-03-22T08:36:27.538962844Z"} +2026/03/22 08:36:32 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:36:32.368422576Z"} +2026/03/22 08:36:32 [metric_collector] {"stage_name":"metric_collector","events_processed":9299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1859.8,"last_update":"2026-03-22T08:36:27.369090342Z"} +2026/03/22 08:36:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3722,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:36:27.376175293Z"} +2026/03/22 08:36:32 [detection_layer] {"stage_name":"detection_layer","events_processed":309,"events_dropped":0,"avg_latency_ms":15.29775303395842,"throughput_eps":0,"last_update":"2026-03-22T08:36:27.479381639Z"} +2026/03/22 08:36:32 ───────────────────────────────────────────────── +2026/03/22 08:36:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:36:37 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:36:32.368422576Z"} +2026/03/22 08:36:37 [metric_collector] {"stage_name":"metric_collector","events_processed":9304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1860.8,"last_update":"2026-03-22T08:36:32.368746827Z"} +2026/03/22 08:36:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:36:32.377497048Z"} +2026/03/22 08:36:37 [detection_layer] {"stage_name":"detection_layer","events_processed":310,"events_dropped":0,"avg_latency_ms":14.525417427166737,"throughput_eps":0,"last_update":"2026-03-22T08:36:32.479670506Z"} +2026/03/22 08:36:37 [transform_engine] {"stage_name":"transform_engine","events_processed":310,"events_dropped":0,"avg_latency_ms":131.9671402023697,"throughput_eps":0,"last_update":"2026-03-22T08:36:32.479711134Z"} +2026/03/22 08:36:37 ───────────────────────────────────────────────── +2026/03/22 08:36:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:36:42 [detection_layer] {"stage_name":"detection_layer","events_processed":310,"events_dropped":0,"avg_latency_ms":14.525417427166737,"throughput_eps":0,"last_update":"2026-03-22T08:36:37.479768255Z"} +2026/03/22 08:36:42 [transform_engine] {"stage_name":"transform_engine","events_processed":310,"events_dropped":0,"avg_latency_ms":131.9671402023697,"throughput_eps":0,"last_update":"2026-03-22T08:36:37.479734761Z"} +2026/03/22 08:36:42 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:36:37.368189261Z"} +2026/03/22 08:36:42 [metric_collector] {"stage_name":"metric_collector","events_processed":9309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1861.8,"last_update":"2026-03-22T08:36:37.368205141Z"} +2026/03/22 08:36:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:36:37.377489926Z"} +2026/03/22 08:36:42 ───────────────────────────────────────────────── +2026/03/22 08:36:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:36:47 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:36:47.368407832Z"} +2026/03/22 08:36:47 [metric_collector] {"stage_name":"metric_collector","events_processed":9314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1862.8,"last_update":"2026-03-22T08:36:42.368859016Z"} +2026/03/22 08:36:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3728,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:36:42.37457776Z"} +2026/03/22 08:36:47 [detection_layer] {"stage_name":"detection_layer","events_processed":310,"events_dropped":0,"avg_latency_ms":14.525417427166737,"throughput_eps":0,"last_update":"2026-03-22T08:36:42.479805609Z"} +2026/03/22 08:36:47 [transform_engine] {"stage_name":"transform_engine","events_processed":310,"events_dropped":0,"avg_latency_ms":131.9671402023697,"throughput_eps":0,"last_update":"2026-03-22T08:36:42.479787694Z"} +2026/03/22 08:36:47 ───────────────────────────────────────────────── +2026/03/22 08:36:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:36:52 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:36:47.368407832Z"} +2026/03/22 08:36:52 [metric_collector] {"stage_name":"metric_collector","events_processed":9319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1863.8,"last_update":"2026-03-22T08:36:47.368903431Z"} +2026/03/22 08:36:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3730,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:36:47.377490439Z"} +2026/03/22 08:36:52 [detection_layer] {"stage_name":"detection_layer","events_processed":310,"events_dropped":0,"avg_latency_ms":14.525417427166737,"throughput_eps":0,"last_update":"2026-03-22T08:36:47.479695589Z"} +2026/03/22 08:36:52 [transform_engine] {"stage_name":"transform_engine","events_processed":310,"events_dropped":0,"avg_latency_ms":131.9671402023697,"throughput_eps":0,"last_update":"2026-03-22T08:36:47.47971734Z"} +2026/03/22 08:36:52 ───────────────────────────────────────────────── +2026/03/22 08:36:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:36:57 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:36:52.368052363Z"} +2026/03/22 08:36:57 [metric_collector] {"stage_name":"metric_collector","events_processed":9324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1864.8,"last_update":"2026-03-22T08:36:52.368640571Z"} +2026/03/22 08:36:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:36:52.376824406Z"} +2026/03/22 08:36:57 [detection_layer] {"stage_name":"detection_layer","events_processed":310,"events_dropped":0,"avg_latency_ms":14.525417427166737,"throughput_eps":0,"last_update":"2026-03-22T08:36:52.47907371Z"} +2026/03/22 08:36:57 [transform_engine] {"stage_name":"transform_engine","events_processed":310,"events_dropped":0,"avg_latency_ms":131.9671402023697,"throughput_eps":0,"last_update":"2026-03-22T08:36:52.479107163Z"} +2026/03/22 08:36:57 ───────────────────────────────────────────────── +2026/03/22 08:37:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:37:02 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:36:57.367980897Z"} +2026/03/22 08:37:02 [metric_collector] {"stage_name":"metric_collector","events_processed":9329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1865.8,"last_update":"2026-03-22T08:36:57.368247949Z"} +2026/03/22 08:37:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:36:57.375160319Z"} +2026/03/22 08:37:02 [detection_layer] {"stage_name":"detection_layer","events_processed":310,"events_dropped":0,"avg_latency_ms":14.525417427166737,"throughput_eps":0,"last_update":"2026-03-22T08:36:57.47947058Z"} +2026/03/22 08:37:02 [transform_engine] {"stage_name":"transform_engine","events_processed":311,"events_dropped":0,"avg_latency_ms":117.68103316189577,"throughput_eps":0,"last_update":"2026-03-22T08:36:57.540079454Z"} +2026/03/22 08:37:02 ───────────────────────────────────────────────── +2026/03/22 08:37:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:37:07 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:37:02.368007524Z"} +2026/03/22 08:37:07 [metric_collector] {"stage_name":"metric_collector","events_processed":9334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1866.8,"last_update":"2026-03-22T08:37:02.368597364Z"} +2026/03/22 08:37:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3736,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:37:02.377339079Z"} +2026/03/22 08:37:07 [detection_layer] {"stage_name":"detection_layer","events_processed":311,"events_dropped":0,"avg_latency_ms":14.128263741733392,"throughput_eps":0,"last_update":"2026-03-22T08:37:02.479510643Z"} +2026/03/22 08:37:07 [transform_engine] {"stage_name":"transform_engine","events_processed":311,"events_dropped":0,"avg_latency_ms":117.68103316189577,"throughput_eps":0,"last_update":"2026-03-22T08:37:02.479473572Z"} +2026/03/22 08:37:07 ───────────────────────────────────────────────── +2026/03/22 08:37:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:37:12 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:37:07.368477612Z"} +2026/03/22 08:37:12 [metric_collector] {"stage_name":"metric_collector","events_processed":9339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1867.8,"last_update":"2026-03-22T08:37:07.368772627Z"} +2026/03/22 08:37:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3738,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:37:07.377346029Z"} +2026/03/22 08:37:12 [detection_layer] {"stage_name":"detection_layer","events_processed":311,"events_dropped":0,"avg_latency_ms":14.128263741733392,"throughput_eps":0,"last_update":"2026-03-22T08:37:07.479574733Z"} +2026/03/22 08:37:12 [transform_engine] {"stage_name":"transform_engine","events_processed":311,"events_dropped":0,"avg_latency_ms":117.68103316189577,"throughput_eps":0,"last_update":"2026-03-22T08:37:07.479555537Z"} +2026/03/22 08:37:12 ───────────────────────────────────────────────── +2026/03/22 08:37:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:37:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3740,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:37:12.375306261Z"} +2026/03/22 08:37:17 [detection_layer] {"stage_name":"detection_layer","events_processed":311,"events_dropped":0,"avg_latency_ms":14.128263741733392,"throughput_eps":0,"last_update":"2026-03-22T08:37:12.479496774Z"} +2026/03/22 08:37:17 [transform_engine] {"stage_name":"transform_engine","events_processed":311,"events_dropped":0,"avg_latency_ms":117.68103316189577,"throughput_eps":0,"last_update":"2026-03-22T08:37:12.479514477Z"} +2026/03/22 08:37:17 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:37:17.368464826Z"} +2026/03/22 08:37:17 [metric_collector] {"stage_name":"metric_collector","events_processed":9344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1868.8,"last_update":"2026-03-22T08:37:12.369212178Z"} +2026/03/22 08:37:17 ───────────────────────────────────────────────── +2026/03/22 08:37:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:37:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:37:17.374598385Z"} +2026/03/22 08:37:22 [detection_layer] {"stage_name":"detection_layer","events_processed":311,"events_dropped":0,"avg_latency_ms":14.128263741733392,"throughput_eps":0,"last_update":"2026-03-22T08:37:17.479765246Z"} +2026/03/22 08:37:22 [transform_engine] {"stage_name":"transform_engine","events_processed":311,"events_dropped":0,"avg_latency_ms":117.68103316189577,"throughput_eps":0,"last_update":"2026-03-22T08:37:17.479783772Z"} +2026/03/22 08:37:22 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:37:17.368464826Z"} +2026/03/22 08:37:22 [metric_collector] {"stage_name":"metric_collector","events_processed":9349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1869.8,"last_update":"2026-03-22T08:37:17.368831008Z"} +2026/03/22 08:37:22 ───────────────────────────────────────────────── +2026/03/22 08:37:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:37:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:37:22.377146554Z"} +2026/03/22 08:37:27 [detection_layer] {"stage_name":"detection_layer","events_processed":311,"events_dropped":0,"avg_latency_ms":14.128263741733392,"throughput_eps":0,"last_update":"2026-03-22T08:37:22.479314672Z"} +2026/03/22 08:37:27 [transform_engine] {"stage_name":"transform_engine","events_processed":311,"events_dropped":0,"avg_latency_ms":117.68103316189577,"throughput_eps":0,"last_update":"2026-03-22T08:37:22.479338738Z"} +2026/03/22 08:37:27 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:37:22.368457571Z"} +2026/03/22 08:37:27 [metric_collector] {"stage_name":"metric_collector","events_processed":9354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1870.8,"last_update":"2026-03-22T08:37:22.368869239Z"} +2026/03/22 08:37:27 ───────────────────────────────────────────────── +2026/03/22 08:37:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:37:32 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:37:27.367981412Z"} +2026/03/22 08:37:32 [metric_collector] {"stage_name":"metric_collector","events_processed":9358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1871.6,"last_update":"2026-03-22T08:37:27.367925816Z"} +2026/03/22 08:37:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:37:27.377097133Z"} +2026/03/22 08:37:32 [detection_layer] {"stage_name":"detection_layer","events_processed":311,"events_dropped":0,"avg_latency_ms":14.128263741733392,"throughput_eps":0,"last_update":"2026-03-22T08:37:27.479031112Z"} +2026/03/22 08:37:32 [transform_engine] {"stage_name":"transform_engine","events_processed":312,"events_dropped":0,"avg_latency_ms":107.77563972951663,"throughput_eps":0,"last_update":"2026-03-22T08:37:27.547060179Z"} +2026/03/22 08:37:32 ───────────────────────────────────────────────── +2026/03/22 08:37:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:37:37 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:37:37.368365096Z"} +2026/03/22 08:37:37 [metric_collector] {"stage_name":"metric_collector","events_processed":9363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1872.6,"last_update":"2026-03-22T08:37:32.367902205Z"} +2026/03/22 08:37:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:37:32.375599719Z"} +2026/03/22 08:37:37 [detection_layer] {"stage_name":"detection_layer","events_processed":312,"events_dropped":0,"avg_latency_ms":14.625281193386714,"throughput_eps":0,"last_update":"2026-03-22T08:37:32.47980025Z"} +2026/03/22 08:37:37 [transform_engine] {"stage_name":"transform_engine","events_processed":312,"events_dropped":0,"avg_latency_ms":107.77563972951663,"throughput_eps":0,"last_update":"2026-03-22T08:37:32.479812324Z"} +2026/03/22 08:37:37 ───────────────────────────────────────────────── +2026/03/22 08:37:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:37:42 [metric_collector] {"stage_name":"metric_collector","events_processed":9369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1873.8,"last_update":"2026-03-22T08:37:37.3688893Z"} +2026/03/22 08:37:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3750,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:37:37.377613411Z"} +2026/03/22 08:37:42 [detection_layer] {"stage_name":"detection_layer","events_processed":312,"events_dropped":0,"avg_latency_ms":14.625281193386714,"throughput_eps":0,"last_update":"2026-03-22T08:37:37.479802178Z"} +2026/03/22 08:37:42 [transform_engine] {"stage_name":"transform_engine","events_processed":312,"events_dropped":0,"avg_latency_ms":107.77563972951663,"throughput_eps":0,"last_update":"2026-03-22T08:37:37.479814973Z"} +2026/03/22 08:37:42 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:37:37.368365096Z"} +2026/03/22 08:37:42 ───────────────────────────────────────────────── +2026/03/22 08:37:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:37:47 [metric_collector] {"stage_name":"metric_collector","events_processed":9374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1874.8,"last_update":"2026-03-22T08:37:42.368471555Z"} +2026/03/22 08:37:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3752,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:37:42.376865514Z"} +2026/03/22 08:37:47 [detection_layer] {"stage_name":"detection_layer","events_processed":312,"events_dropped":0,"avg_latency_ms":14.625281193386714,"throughput_eps":0,"last_update":"2026-03-22T08:37:42.479069099Z"} +2026/03/22 08:37:47 [transform_engine] {"stage_name":"transform_engine","events_processed":312,"events_dropped":0,"avg_latency_ms":107.77563972951663,"throughput_eps":0,"last_update":"2026-03-22T08:37:42.479081613Z"} +2026/03/22 08:37:47 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:37:42.368087549Z"} +2026/03/22 08:37:47 ───────────────────────────────────────────────── +2026/03/22 08:37:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:37:52 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:37:47.368672995Z"} +2026/03/22 08:37:52 [metric_collector] {"stage_name":"metric_collector","events_processed":9379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1875.8,"last_update":"2026-03-22T08:37:47.368909487Z"} +2026/03/22 08:37:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:37:47.375722397Z"} +2026/03/22 08:37:52 [detection_layer] {"stage_name":"detection_layer","events_processed":312,"events_dropped":0,"avg_latency_ms":14.625281193386714,"throughput_eps":0,"last_update":"2026-03-22T08:37:47.47999683Z"} +2026/03/22 08:37:52 [transform_engine] {"stage_name":"transform_engine","events_processed":312,"events_dropped":0,"avg_latency_ms":107.77563972951663,"throughput_eps":0,"last_update":"2026-03-22T08:37:47.478866284Z"} +2026/03/22 08:37:52 ───────────────────────────────────────────────── +2026/03/22 08:37:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:37:57 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:37:52.367979527Z"} +2026/03/22 08:37:57 [metric_collector] {"stage_name":"metric_collector","events_processed":9384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1876.8,"last_update":"2026-03-22T08:37:52.368446071Z"} +2026/03/22 08:37:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:37:52.374867488Z"} +2026/03/22 08:37:57 [detection_layer] {"stage_name":"detection_layer","events_processed":312,"events_dropped":0,"avg_latency_ms":14.625281193386714,"throughput_eps":0,"last_update":"2026-03-22T08:37:52.479075682Z"} +2026/03/22 08:37:57 [transform_engine] {"stage_name":"transform_engine","events_processed":312,"events_dropped":0,"avg_latency_ms":107.77563972951663,"throughput_eps":0,"last_update":"2026-03-22T08:37:52.479085491Z"} +2026/03/22 08:37:57 ───────────────────────────────────────────────── +2026/03/22 08:38:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:38:02 [detection_layer] {"stage_name":"detection_layer","events_processed":312,"events_dropped":0,"avg_latency_ms":14.625281193386714,"throughput_eps":0,"last_update":"2026-03-22T08:37:57.479976553Z"} +2026/03/22 08:38:02 [transform_engine] {"stage_name":"transform_engine","events_processed":313,"events_dropped":0,"avg_latency_ms":98.1409441836133,"throughput_eps":0,"last_update":"2026-03-22T08:37:57.53846498Z"} +2026/03/22 08:38:02 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:37:57.367975796Z"} +2026/03/22 08:38:02 [metric_collector] {"stage_name":"metric_collector","events_processed":9389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1877.8,"last_update":"2026-03-22T08:37:57.36843208Z"} +2026/03/22 08:38:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3758,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:37:57.375717904Z"} +2026/03/22 08:38:02 ───────────────────────────────────────────────── +2026/03/22 08:38:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:38:07 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:38:02.367948391Z"} +2026/03/22 08:38:07 [metric_collector] {"stage_name":"metric_collector","events_processed":9394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1878.8,"last_update":"2026-03-22T08:38:02.368427098Z"} +2026/03/22 08:38:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:38:02.375024182Z"} +2026/03/22 08:38:07 [detection_layer] {"stage_name":"detection_layer","events_processed":313,"events_dropped":0,"avg_latency_ms":14.064548554709372,"throughput_eps":0,"last_update":"2026-03-22T08:38:02.479221693Z"} +2026/03/22 08:38:07 [transform_engine] {"stage_name":"transform_engine","events_processed":313,"events_dropped":0,"avg_latency_ms":98.1409441836133,"throughput_eps":0,"last_update":"2026-03-22T08:38:02.479238445Z"} +2026/03/22 08:38:07 ───────────────────────────────────────────────── +2026/03/22 08:38:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:38:12 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:38:07.36797921Z"} +2026/03/22 08:38:12 [metric_collector] {"stage_name":"metric_collector","events_processed":9399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1879.8,"last_update":"2026-03-22T08:38:07.368295006Z"} +2026/03/22 08:38:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:38:07.374437328Z"} +2026/03/22 08:38:12 [detection_layer] {"stage_name":"detection_layer","events_processed":313,"events_dropped":0,"avg_latency_ms":14.064548554709372,"throughput_eps":0,"last_update":"2026-03-22T08:38:07.479633942Z"} +2026/03/22 08:38:12 [transform_engine] {"stage_name":"transform_engine","events_processed":313,"events_dropped":0,"avg_latency_ms":98.1409441836133,"throughput_eps":0,"last_update":"2026-03-22T08:38:07.47964282Z"} +2026/03/22 08:38:12 ───────────────────────────────────────────────── +2026/03/22 08:38:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:38:17 [transform_engine] {"stage_name":"transform_engine","events_processed":313,"events_dropped":0,"avg_latency_ms":98.1409441836133,"throughput_eps":0,"last_update":"2026-03-22T08:38:12.479429505Z"} +2026/03/22 08:38:17 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:38:12.368919487Z"} +2026/03/22 08:38:17 [metric_collector] {"stage_name":"metric_collector","events_processed":9404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1880.8,"last_update":"2026-03-22T08:38:12.369282232Z"} +2026/03/22 08:38:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:38:12.379226631Z"} +2026/03/22 08:38:17 [detection_layer] {"stage_name":"detection_layer","events_processed":313,"events_dropped":0,"avg_latency_ms":14.064548554709372,"throughput_eps":0,"last_update":"2026-03-22T08:38:12.479413023Z"} +2026/03/22 08:38:17 ───────────────────────────────────────────────── +2026/03/22 08:38:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:38:22 [transform_engine] {"stage_name":"transform_engine","events_processed":313,"events_dropped":0,"avg_latency_ms":98.1409441836133,"throughput_eps":0,"last_update":"2026-03-22T08:38:17.479244156Z"} +2026/03/22 08:38:22 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:38:17.368839131Z"} +2026/03/22 08:38:22 [metric_collector] {"stage_name":"metric_collector","events_processed":9409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1881.8,"last_update":"2026-03-22T08:38:17.369227806Z"} +2026/03/22 08:38:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3766,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:38:17.374986673Z"} +2026/03/22 08:38:22 [detection_layer] {"stage_name":"detection_layer","events_processed":313,"events_dropped":0,"avg_latency_ms":14.064548554709372,"throughput_eps":0,"last_update":"2026-03-22T08:38:17.479234348Z"} +2026/03/22 08:38:22 ───────────────────────────────────────────────── +2026/03/22 08:38:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:38:27 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:38:22.368489753Z"} +2026/03/22 08:38:27 [metric_collector] {"stage_name":"metric_collector","events_processed":9414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1882.8,"last_update":"2026-03-22T08:38:22.368940798Z"} +2026/03/22 08:38:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3768,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:38:22.374888476Z"} +2026/03/22 08:38:27 [detection_layer] {"stage_name":"detection_layer","events_processed":313,"events_dropped":0,"avg_latency_ms":14.064548554709372,"throughput_eps":0,"last_update":"2026-03-22T08:38:22.479069192Z"} +2026/03/22 08:38:27 [transform_engine] {"stage_name":"transform_engine","events_processed":313,"events_dropped":0,"avg_latency_ms":98.1409441836133,"throughput_eps":0,"last_update":"2026-03-22T08:38:22.479079041Z"} +2026/03/22 08:38:27 ───────────────────────────────────────────────── +2026/03/22 08:38:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:38:32 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:38:27.368764098Z"} +2026/03/22 08:38:32 [metric_collector] {"stage_name":"metric_collector","events_processed":9419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1883.8,"last_update":"2026-03-22T08:38:27.369017414Z"} +2026/03/22 08:38:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3770,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:38:27.375115821Z"} +2026/03/22 08:38:32 [detection_layer] {"stage_name":"detection_layer","events_processed":313,"events_dropped":0,"avg_latency_ms":14.064548554709372,"throughput_eps":0,"last_update":"2026-03-22T08:38:27.479301315Z"} +2026/03/22 08:38:32 [transform_engine] {"stage_name":"transform_engine","events_processed":314,"events_dropped":0,"avg_latency_ms":90.28580254689064,"throughput_eps":0,"last_update":"2026-03-22T08:38:27.538180528Z"} +2026/03/22 08:38:32 ───────────────────────────────────────────────── +2026/03/22 08:38:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:38:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:38:32.377539943Z"} +2026/03/22 08:38:37 [detection_layer] {"stage_name":"detection_layer","events_processed":314,"events_dropped":0,"avg_latency_ms":13.712751643767499,"throughput_eps":0,"last_update":"2026-03-22T08:38:32.479757053Z"} +2026/03/22 08:38:37 [transform_engine] {"stage_name":"transform_engine","events_processed":314,"events_dropped":0,"avg_latency_ms":90.28580254689064,"throughput_eps":0,"last_update":"2026-03-22T08:38:32.479730783Z"} +2026/03/22 08:38:37 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:38:32.368807036Z"} +2026/03/22 08:38:37 [metric_collector] {"stage_name":"metric_collector","events_processed":9424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1884.8,"last_update":"2026-03-22T08:38:32.369343203Z"} +2026/03/22 08:38:37 ───────────────────────────────────────────────── +2026/03/22 08:38:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:38:42 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:38:37.368869055Z"} +2026/03/22 08:38:42 [metric_collector] {"stage_name":"metric_collector","events_processed":9429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1885.8,"last_update":"2026-03-22T08:38:37.36908576Z"} +2026/03/22 08:38:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:38:37.375123562Z"} +2026/03/22 08:38:42 [detection_layer] {"stage_name":"detection_layer","events_processed":314,"events_dropped":0,"avg_latency_ms":13.712751643767499,"throughput_eps":0,"last_update":"2026-03-22T08:38:37.479334382Z"} +2026/03/22 08:38:42 [transform_engine] {"stage_name":"transform_engine","events_processed":314,"events_dropped":0,"avg_latency_ms":90.28580254689064,"throughput_eps":0,"last_update":"2026-03-22T08:38:37.479411409Z"} +2026/03/22 08:38:42 ───────────────────────────────────────────────── +2026/03/22 08:38:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:38:47 [transform_engine] {"stage_name":"transform_engine","events_processed":314,"events_dropped":0,"avg_latency_ms":90.28580254689064,"throughput_eps":0,"last_update":"2026-03-22T08:38:42.479136799Z"} +2026/03/22 08:38:47 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:38:42.368798477Z"} +2026/03/22 08:38:47 [metric_collector] {"stage_name":"metric_collector","events_processed":9434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1886.8,"last_update":"2026-03-22T08:38:42.369253699Z"} +2026/03/22 08:38:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:38:42.377949385Z"} +2026/03/22 08:38:47 [detection_layer] {"stage_name":"detection_layer","events_processed":314,"events_dropped":0,"avg_latency_ms":13.712751643767499,"throughput_eps":0,"last_update":"2026-03-22T08:38:42.479165946Z"} +2026/03/22 08:38:47 ───────────────────────────────────────────────── +2026/03/22 08:38:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:38:52 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:38:47.368174598Z"} +2026/03/22 08:38:52 [metric_collector] {"stage_name":"metric_collector","events_processed":9439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1887.8,"last_update":"2026-03-22T08:38:47.368591036Z"} +2026/03/22 08:38:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:38:47.377850964Z"} +2026/03/22 08:38:52 [detection_layer] {"stage_name":"detection_layer","events_processed":314,"events_dropped":0,"avg_latency_ms":13.712751643767499,"throughput_eps":0,"last_update":"2026-03-22T08:38:47.479052274Z"} +2026/03/22 08:38:52 [transform_engine] {"stage_name":"transform_engine","events_processed":314,"events_dropped":0,"avg_latency_ms":90.28580254689064,"throughput_eps":0,"last_update":"2026-03-22T08:38:47.479023108Z"} +2026/03/22 08:38:52 ───────────────────────────────────────────────── +2026/03/22 08:38:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:38:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3780,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:38:52.376872412Z"} +2026/03/22 08:38:57 [detection_layer] {"stage_name":"detection_layer","events_processed":314,"events_dropped":0,"avg_latency_ms":13.712751643767499,"throughput_eps":0,"last_update":"2026-03-22T08:38:52.4790852Z"} +2026/03/22 08:38:57 [transform_engine] {"stage_name":"transform_engine","events_processed":314,"events_dropped":0,"avg_latency_ms":90.28580254689064,"throughput_eps":0,"last_update":"2026-03-22T08:38:52.479063198Z"} +2026/03/22 08:38:57 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:38:52.36859039Z"} +2026/03/22 08:38:57 [metric_collector] {"stage_name":"metric_collector","events_processed":9449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1889.8,"last_update":"2026-03-22T08:38:57.368202541Z"} +2026/03/22 08:38:57 ───────────────────────────────────────────────── +2026/03/22 08:39:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:39:02 [metric_collector] {"stage_name":"metric_collector","events_processed":9449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1889.8,"last_update":"2026-03-22T08:38:57.368202541Z"} +2026/03/22 08:39:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3782,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:38:57.374765068Z"} +2026/03/22 08:39:02 [detection_layer] {"stage_name":"detection_layer","events_processed":314,"events_dropped":0,"avg_latency_ms":13.712751643767499,"throughput_eps":0,"last_update":"2026-03-22T08:38:57.479983756Z"} +2026/03/22 08:39:02 [transform_engine] {"stage_name":"transform_engine","events_processed":315,"events_dropped":0,"avg_latency_ms":84.29029963751252,"throughput_eps":0,"last_update":"2026-03-22T08:38:57.539182028Z"} +2026/03/22 08:39:02 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:38:57.368384349Z"} +2026/03/22 08:39:02 ───────────────────────────────────────────────── +2026/03/22 08:39:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:39:07 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:39:02.368191203Z"} +2026/03/22 08:39:07 [metric_collector] {"stage_name":"metric_collector","events_processed":9454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1890.8,"last_update":"2026-03-22T08:39:02.368522118Z"} +2026/03/22 08:39:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:39:02.377775891Z"} +2026/03/22 08:39:07 [detection_layer] {"stage_name":"detection_layer","events_processed":315,"events_dropped":0,"avg_latency_ms":13.507944915014,"throughput_eps":0,"last_update":"2026-03-22T08:39:02.478953355Z"} +2026/03/22 08:39:07 [transform_engine] {"stage_name":"transform_engine","events_processed":315,"events_dropped":0,"avg_latency_ms":84.29029963751252,"throughput_eps":0,"last_update":"2026-03-22T08:39:02.478912857Z"} +2026/03/22 08:39:07 ───────────────────────────────────────────────── +2026/03/22 08:39:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:39:12 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:39:12.368547781Z"} +2026/03/22 08:39:12 [metric_collector] {"stage_name":"metric_collector","events_processed":9459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1891.8,"last_update":"2026-03-22T08:39:07.368765666Z"} +2026/03/22 08:39:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:39:07.377598283Z"} +2026/03/22 08:39:12 [detection_layer] {"stage_name":"detection_layer","events_processed":315,"events_dropped":0,"avg_latency_ms":13.507944915014,"throughput_eps":0,"last_update":"2026-03-22T08:39:07.479775993Z"} +2026/03/22 08:39:12 [transform_engine] {"stage_name":"transform_engine","events_processed":315,"events_dropped":0,"avg_latency_ms":84.29029963751252,"throughput_eps":0,"last_update":"2026-03-22T08:39:07.479805629Z"} +2026/03/22 08:39:12 ───────────────────────────────────────────────── +2026/03/22 08:39:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:39:17 [detection_layer] {"stage_name":"detection_layer","events_processed":315,"events_dropped":0,"avg_latency_ms":13.507944915014,"throughput_eps":0,"last_update":"2026-03-22T08:39:12.479736538Z"} +2026/03/22 08:39:17 [transform_engine] {"stage_name":"transform_engine","events_processed":315,"events_dropped":0,"avg_latency_ms":84.29029963751252,"throughput_eps":0,"last_update":"2026-03-22T08:39:12.479762858Z"} +2026/03/22 08:39:17 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:39:12.368547781Z"} +2026/03/22 08:39:17 [metric_collector] {"stage_name":"metric_collector","events_processed":9464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1892.8,"last_update":"2026-03-22T08:39:12.368806716Z"} +2026/03/22 08:39:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:39:12.376539325Z"} +2026/03/22 08:39:17 ───────────────────────────────────────────────── +Saved state: 11 clusters, 15206 messages, reason: none +2026/03/22 08:39:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:39:22 [log_collector] {"stage_name":"log_collector","events_processed":15205,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041,"last_update":"2026-03-22T08:39:17.367972496Z"} +2026/03/22 08:39:22 [metric_collector] {"stage_name":"metric_collector","events_processed":9469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1893.8,"last_update":"2026-03-22T08:39:17.368396268Z"} +2026/03/22 08:39:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:39:17.377980315Z"} +2026/03/22 08:39:22 [detection_layer] {"stage_name":"detection_layer","events_processed":315,"events_dropped":0,"avg_latency_ms":13.507944915014,"throughput_eps":0,"last_update":"2026-03-22T08:39:17.479216848Z"} +2026/03/22 08:39:22 [transform_engine] {"stage_name":"transform_engine","events_processed":315,"events_dropped":0,"avg_latency_ms":84.29029963751252,"throughput_eps":0,"last_update":"2026-03-22T08:39:17.479165199Z"} +2026/03/22 08:39:22 ───────────────────────────────────────────────── +2026/03/22 08:39:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:39:27 [log_collector] {"stage_name":"log_collector","events_processed":15207,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.4,"last_update":"2026-03-22T08:39:22.368977942Z"} +2026/03/22 08:39:27 [metric_collector] {"stage_name":"metric_collector","events_processed":9474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1894.8,"last_update":"2026-03-22T08:39:22.369188655Z"} +2026/03/22 08:39:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:39:22.377771613Z"} +2026/03/22 08:39:27 [detection_layer] {"stage_name":"detection_layer","events_processed":315,"events_dropped":0,"avg_latency_ms":13.507944915014,"throughput_eps":0,"last_update":"2026-03-22T08:39:22.478946819Z"} +2026/03/22 08:39:27 [transform_engine] {"stage_name":"transform_engine","events_processed":315,"events_dropped":0,"avg_latency_ms":84.29029963751252,"throughput_eps":0,"last_update":"2026-03-22T08:39:22.478917633Z"} +2026/03/22 08:39:27 ───────────────────────────────────────────────── +2026/03/22 08:39:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:39:32 [log_collector] {"stage_name":"log_collector","events_processed":15214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3042.8,"last_update":"2026-03-22T08:39:27.36848199Z"} +2026/03/22 08:39:32 [metric_collector] {"stage_name":"metric_collector","events_processed":9479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1895.8,"last_update":"2026-03-22T08:39:27.368623561Z"} +2026/03/22 08:39:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:39:27.375284576Z"} +2026/03/22 08:39:32 [detection_layer] {"stage_name":"detection_layer","events_processed":315,"events_dropped":0,"avg_latency_ms":13.507944915014,"throughput_eps":0,"last_update":"2026-03-22T08:39:27.479551826Z"} +2026/03/22 08:39:32 [transform_engine] {"stage_name":"transform_engine","events_processed":316,"events_dropped":0,"avg_latency_ms":89.59715291001002,"throughput_eps":0,"last_update":"2026-03-22T08:39:27.590340223Z"} +2026/03/22 08:39:32 ───────────────────────────────────────────────── +2026/03/22 08:39:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:39:37 [transform_engine] {"stage_name":"transform_engine","events_processed":316,"events_dropped":0,"avg_latency_ms":89.59715291001002,"throughput_eps":0,"last_update":"2026-03-22T08:39:32.479880705Z"} +2026/03/22 08:39:37 [log_collector] {"stage_name":"log_collector","events_processed":15233,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3046.6,"last_update":"2026-03-22T08:39:32.368388199Z"} +2026/03/22 08:39:37 [metric_collector] {"stage_name":"metric_collector","events_processed":9484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1896.8,"last_update":"2026-03-22T08:39:32.368750624Z"} +2026/03/22 08:39:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3796,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:39:32.375650878Z"} +2026/03/22 08:39:37 [detection_layer] {"stage_name":"detection_layer","events_processed":316,"events_dropped":0,"avg_latency_ms":13.3400313320112,"throughput_eps":0,"last_update":"2026-03-22T08:39:32.479839976Z"} +2026/03/22 08:39:37 ───────────────────────────────────────────────── +2026/03/22 08:39:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:39:42 [log_collector] {"stage_name":"log_collector","events_processed":15252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3050.4,"last_update":"2026-03-22T08:39:37.36873829Z"} +2026/03/22 08:39:42 [metric_collector] {"stage_name":"metric_collector","events_processed":9489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1897.8,"last_update":"2026-03-22T08:39:37.369074455Z"} +2026/03/22 08:39:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:39:37.377589653Z"} +2026/03/22 08:39:42 [detection_layer] {"stage_name":"detection_layer","events_processed":316,"events_dropped":0,"avg_latency_ms":13.3400313320112,"throughput_eps":0,"last_update":"2026-03-22T08:39:37.479719044Z"} +2026/03/22 08:39:42 [transform_engine] {"stage_name":"transform_engine","events_processed":316,"events_dropped":0,"avg_latency_ms":89.59715291001002,"throughput_eps":0,"last_update":"2026-03-22T08:39:37.479739794Z"} +2026/03/22 08:39:42 ───────────────────────────────────────────────── +2026/03/22 08:39:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:39:47 [log_collector] {"stage_name":"log_collector","events_processed":15271,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3054.2,"last_update":"2026-03-22T08:39:42.367969791Z"} +2026/03/22 08:39:47 [metric_collector] {"stage_name":"metric_collector","events_processed":9494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1898.8,"last_update":"2026-03-22T08:39:42.368131642Z"} +2026/03/22 08:39:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3800,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:39:42.374811482Z"} +2026/03/22 08:39:47 [detection_layer] {"stage_name":"detection_layer","events_processed":316,"events_dropped":0,"avg_latency_ms":13.3400313320112,"throughput_eps":0,"last_update":"2026-03-22T08:39:42.479030117Z"} +2026/03/22 08:39:47 [transform_engine] {"stage_name":"transform_engine","events_processed":316,"events_dropped":0,"avg_latency_ms":89.59715291001002,"throughput_eps":0,"last_update":"2026-03-22T08:39:42.478920086Z"} +2026/03/22 08:39:47 ───────────────────────────────────────────────── +2026/03/22 08:39:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:39:52 [log_collector] {"stage_name":"log_collector","events_processed":15288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3057.6,"last_update":"2026-03-22T08:39:47.367970788Z"} +2026/03/22 08:39:52 [metric_collector] {"stage_name":"metric_collector","events_processed":9499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1899.8,"last_update":"2026-03-22T08:39:47.368192973Z"} +2026/03/22 08:39:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3802,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:39:47.375061176Z"} +2026/03/22 08:39:52 [detection_layer] {"stage_name":"detection_layer","events_processed":316,"events_dropped":0,"avg_latency_ms":13.3400313320112,"throughput_eps":0,"last_update":"2026-03-22T08:39:47.479218421Z"} +2026/03/22 08:39:52 [transform_engine] {"stage_name":"transform_engine","events_processed":316,"events_dropped":0,"avg_latency_ms":89.59715291001002,"throughput_eps":0,"last_update":"2026-03-22T08:39:47.479196739Z"} +2026/03/22 08:39:52 ───────────────────────────────────────────────── +2026/03/22 08:39:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:39:57 [log_collector] {"stage_name":"log_collector","events_processed":15300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3060,"last_update":"2026-03-22T08:39:52.367979368Z"} +2026/03/22 08:39:57 [metric_collector] {"stage_name":"metric_collector","events_processed":9504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1900.8,"last_update":"2026-03-22T08:39:52.368307908Z"} +2026/03/22 08:39:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:39:52.376087837Z"} +2026/03/22 08:39:57 [detection_layer] {"stage_name":"detection_layer","events_processed":316,"events_dropped":0,"avg_latency_ms":13.3400313320112,"throughput_eps":0,"last_update":"2026-03-22T08:39:52.479288408Z"} +2026/03/22 08:39:57 [transform_engine] {"stage_name":"transform_engine","events_processed":316,"events_dropped":0,"avg_latency_ms":89.59715291001002,"throughput_eps":0,"last_update":"2026-03-22T08:39:52.479270504Z"} +2026/03/22 08:39:57 ───────────────────────────────────────────────── +2026/03/22 08:39:59 [ANOMALY] time=2026-03-22T08:39:59Z score=0.8755 method=SEAD details=MAD!:w=0.49,s=1.00 RRCF-fast:w=0.13,s=0.58 RRCF-mid:w=0.11,s=0.77 RRCF-slow:w=0.09,s=0.84 COPOD!:w=0.17,s=0.85 +2026/03/22 08:40:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:40:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:39:57.377878809Z"} +2026/03/22 08:40:02 [detection_layer] {"stage_name":"detection_layer","events_processed":316,"events_dropped":0,"avg_latency_ms":13.3400313320112,"throughput_eps":0,"last_update":"2026-03-22T08:39:57.479056473Z"} +2026/03/22 08:40:02 [transform_engine] {"stage_name":"transform_engine","events_processed":317,"events_dropped":0,"avg_latency_ms":521.1089119280081,"throughput_eps":0,"last_update":"2026-03-22T08:39:59.726236607Z"} +2026/03/22 08:40:02 [log_collector] {"stage_name":"log_collector","events_processed":15302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3060.4,"last_update":"2026-03-22T08:39:57.368134775Z"} +2026/03/22 08:40:02 [metric_collector] {"stage_name":"metric_collector","events_processed":9509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1901.8,"last_update":"2026-03-22T08:39:57.368598795Z"} +2026/03/22 08:40:02 ───────────────────────────────────────────────── +2026/03/22 08:40:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:40:07 [detection_layer] {"stage_name":"detection_layer","events_processed":317,"events_dropped":0,"avg_latency_ms":13.915961665608961,"throughput_eps":0,"last_update":"2026-03-22T08:40:02.479318617Z"} +2026/03/22 08:40:07 [transform_engine] {"stage_name":"transform_engine","events_processed":317,"events_dropped":0,"avg_latency_ms":521.1089119280081,"throughput_eps":0,"last_update":"2026-03-22T08:40:02.479328876Z"} +2026/03/22 08:40:07 [log_collector] {"stage_name":"log_collector","events_processed":15306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3061.2,"last_update":"2026-03-22T08:40:02.367969321Z"} +2026/03/22 08:40:07 [metric_collector] {"stage_name":"metric_collector","events_processed":9514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1902.8,"last_update":"2026-03-22T08:40:02.368446234Z"} +2026/03/22 08:40:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:40:02.378072341Z"} +2026/03/22 08:40:07 ───────────────────────────────────────────────── +2026/03/22 08:40:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:40:12 [detection_layer] {"stage_name":"detection_layer","events_processed":317,"events_dropped":0,"avg_latency_ms":13.915961665608961,"throughput_eps":0,"last_update":"2026-03-22T08:40:07.479926979Z"} +2026/03/22 08:40:12 [transform_engine] {"stage_name":"transform_engine","events_processed":317,"events_dropped":0,"avg_latency_ms":521.1089119280081,"throughput_eps":0,"last_update":"2026-03-22T08:40:07.478815068Z"} +2026/03/22 08:40:12 [log_collector] {"stage_name":"log_collector","events_processed":15317,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3063.4,"last_update":"2026-03-22T08:40:07.368156978Z"} +2026/03/22 08:40:12 [metric_collector] {"stage_name":"metric_collector","events_processed":9519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1903.8,"last_update":"2026-03-22T08:40:07.368549129Z"} +2026/03/22 08:40:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:40:07.374664518Z"} +2026/03/22 08:40:12 ───────────────────────────────────────────────── +2026/03/22 08:40:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:40:17 [detection_layer] {"stage_name":"detection_layer","events_processed":317,"events_dropped":0,"avg_latency_ms":13.915961665608961,"throughput_eps":0,"last_update":"2026-03-22T08:40:12.479476867Z"} +2026/03/22 08:40:17 [transform_engine] {"stage_name":"transform_engine","events_processed":317,"events_dropped":0,"avg_latency_ms":521.1089119280081,"throughput_eps":0,"last_update":"2026-03-22T08:40:12.479521352Z"} +2026/03/22 08:40:17 [log_collector] {"stage_name":"log_collector","events_processed":15336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3067.2,"last_update":"2026-03-22T08:40:12.368323147Z"} +2026/03/22 08:40:17 [metric_collector] {"stage_name":"metric_collector","events_processed":9524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1904.8,"last_update":"2026-03-22T08:40:12.36853832Z"} +2026/03/22 08:40:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3812,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:40:12.374294029Z"} +2026/03/22 08:40:17 ───────────────────────────────────────────────── +2026/03/22 08:40:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:40:22 [log_collector] {"stage_name":"log_collector","events_processed":15355,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3071,"last_update":"2026-03-22T08:40:17.368116289Z"} +2026/03/22 08:40:22 [metric_collector] {"stage_name":"metric_collector","events_processed":9529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1905.8,"last_update":"2026-03-22T08:40:17.368517599Z"} +2026/03/22 08:40:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:40:17.374142067Z"} +2026/03/22 08:40:22 [detection_layer] {"stage_name":"detection_layer","events_processed":317,"events_dropped":0,"avg_latency_ms":13.915961665608961,"throughput_eps":0,"last_update":"2026-03-22T08:40:17.479384759Z"} +2026/03/22 08:40:22 [transform_engine] {"stage_name":"transform_engine","events_processed":317,"events_dropped":0,"avg_latency_ms":521.1089119280081,"throughput_eps":0,"last_update":"2026-03-22T08:40:17.479316608Z"} +2026/03/22 08:40:22 ───────────────────────────────────────────────── +Saved state: 11 clusters, 15375 messages, reason: none +2026/03/22 08:40:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:40:27 [log_collector] {"stage_name":"log_collector","events_processed":15374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3074.8,"last_update":"2026-03-22T08:40:22.367967747Z"} +2026/03/22 08:40:27 [metric_collector] {"stage_name":"metric_collector","events_processed":9534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1906.8,"last_update":"2026-03-22T08:40:22.368181597Z"} +2026/03/22 08:40:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3816,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:40:22.375120183Z"} +2026/03/22 08:40:27 [detection_layer] {"stage_name":"detection_layer","events_processed":317,"events_dropped":0,"avg_latency_ms":13.915961665608961,"throughput_eps":0,"last_update":"2026-03-22T08:40:22.479323362Z"} +2026/03/22 08:40:27 [transform_engine] {"stage_name":"transform_engine","events_processed":317,"events_dropped":0,"avg_latency_ms":521.1089119280081,"throughput_eps":0,"last_update":"2026-03-22T08:40:22.479299497Z"} +2026/03/22 08:40:27 ───────────────────────────────────────────────── +2026/03/22 08:40:27 [ANOMALY] time=2026-03-22T08:40:27Z score=0.8067 method=SEAD details=MAD!:w=0.49,s=0.99 RRCF-fast:w=0.13,s=0.71 RRCF-mid:w=0.11,s=0.48 RRCF-slow:w=0.09,s=0.76 COPOD!:w=0.17,s=0.60 +2026/03/22 08:40:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:40:32 [log_collector] {"stage_name":"log_collector","events_processed":15391,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3078.2,"last_update":"2026-03-22T08:40:27.367987992Z"} +2026/03/22 08:40:32 [metric_collector] {"stage_name":"metric_collector","events_processed":9539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1907.8,"last_update":"2026-03-22T08:40:27.368494722Z"} +2026/03/22 08:40:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3818,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:40:27.375122875Z"} +2026/03/22 08:40:32 [detection_layer] {"stage_name":"detection_layer","events_processed":317,"events_dropped":0,"avg_latency_ms":13.915961665608961,"throughput_eps":0,"last_update":"2026-03-22T08:40:27.479297818Z"} +2026/03/22 08:40:32 [transform_engine] {"stage_name":"transform_engine","events_processed":318,"events_dropped":0,"avg_latency_ms":437.03075754240643,"throughput_eps":0,"last_update":"2026-03-22T08:40:27.580050684Z"} +2026/03/22 08:40:32 ───────────────────────────────────────────────── +2026/03/22 08:40:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:40:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3820,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:40:32.37521529Z"} +2026/03/22 08:40:37 [detection_layer] {"stage_name":"detection_layer","events_processed":318,"events_dropped":0,"avg_latency_ms":13.63729273248717,"throughput_eps":0,"last_update":"2026-03-22T08:40:32.479477992Z"} +2026/03/22 08:40:37 [transform_engine] {"stage_name":"transform_engine","events_processed":318,"events_dropped":0,"avg_latency_ms":437.03075754240643,"throughput_eps":0,"last_update":"2026-03-22T08:40:32.479496517Z"} +2026/03/22 08:40:37 [log_collector] {"stage_name":"log_collector","events_processed":15405,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3081,"last_update":"2026-03-22T08:40:32.368797382Z"} +2026/03/22 08:40:37 [metric_collector] {"stage_name":"metric_collector","events_processed":9544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1908.8,"last_update":"2026-03-22T08:40:32.36917218Z"} +2026/03/22 08:40:37 ───────────────────────────────────────────────── +2026/03/22 08:40:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:40:42 [transform_engine] {"stage_name":"transform_engine","events_processed":318,"events_dropped":0,"avg_latency_ms":437.03075754240643,"throughput_eps":0,"last_update":"2026-03-22T08:40:37.47910426Z"} +2026/03/22 08:40:42 [log_collector] {"stage_name":"log_collector","events_processed":15409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3081.8,"last_update":"2026-03-22T08:40:37.367974229Z"} +2026/03/22 08:40:42 [metric_collector] {"stage_name":"metric_collector","events_processed":9549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1909.8,"last_update":"2026-03-22T08:40:37.368158853Z"} +2026/03/22 08:40:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:40:37.374938195Z"} +2026/03/22 08:40:42 [detection_layer] {"stage_name":"detection_layer","events_processed":318,"events_dropped":0,"avg_latency_ms":13.63729273248717,"throughput_eps":0,"last_update":"2026-03-22T08:40:37.479132203Z"} +2026/03/22 08:40:42 ───────────────────────────────────────────────── +2026/03/22 08:40:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:40:47 [transform_engine] {"stage_name":"transform_engine","events_processed":318,"events_dropped":0,"avg_latency_ms":437.03075754240643,"throughput_eps":0,"last_update":"2026-03-22T08:40:42.479021813Z"} +2026/03/22 08:40:47 [log_collector] {"stage_name":"log_collector","events_processed":15418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3083.6,"last_update":"2026-03-22T08:40:42.367964883Z"} +2026/03/22 08:40:47 [metric_collector] {"stage_name":"metric_collector","events_processed":9554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1910.8,"last_update":"2026-03-22T08:40:42.368369588Z"} +2026/03/22 08:40:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:40:42.376826434Z"} +2026/03/22 08:40:47 [detection_layer] {"stage_name":"detection_layer","events_processed":318,"events_dropped":0,"avg_latency_ms":13.63729273248717,"throughput_eps":0,"last_update":"2026-03-22T08:40:42.479003177Z"} +2026/03/22 08:40:47 ───────────────────────────────────────────────── +2026/03/22 08:40:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:40:52 [log_collector] {"stage_name":"log_collector","events_processed":15458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3091.6,"last_update":"2026-03-22T08:40:52.368643733Z"} +2026/03/22 08:40:52 [metric_collector] {"stage_name":"metric_collector","events_processed":9559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1911.8,"last_update":"2026-03-22T08:40:47.368908597Z"} +2026/03/22 08:40:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3826,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:40:47.375214391Z"} +2026/03/22 08:40:52 [detection_layer] {"stage_name":"detection_layer","events_processed":318,"events_dropped":0,"avg_latency_ms":13.63729273248717,"throughput_eps":0,"last_update":"2026-03-22T08:40:47.479458565Z"} +2026/03/22 08:40:52 [transform_engine] {"stage_name":"transform_engine","events_processed":318,"events_dropped":0,"avg_latency_ms":437.03075754240643,"throughput_eps":0,"last_update":"2026-03-22T08:40:47.479479204Z"} +2026/03/22 08:40:52 ───────────────────────────────────────────────── +2026/03/22 08:40:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:40:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:40:52.376720981Z"} +2026/03/22 08:40:57 [detection_layer] {"stage_name":"detection_layer","events_processed":318,"events_dropped":0,"avg_latency_ms":13.63729273248717,"throughput_eps":0,"last_update":"2026-03-22T08:40:52.479909251Z"} +2026/03/22 08:40:57 [transform_engine] {"stage_name":"transform_engine","events_processed":318,"events_dropped":0,"avg_latency_ms":437.03075754240643,"throughput_eps":0,"last_update":"2026-03-22T08:40:52.478824812Z"} +2026/03/22 08:40:57 [log_collector] {"stage_name":"log_collector","events_processed":15458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3091.6,"last_update":"2026-03-22T08:40:52.368643733Z"} +2026/03/22 08:40:57 [metric_collector] {"stage_name":"metric_collector","events_processed":9564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1912.8,"last_update":"2026-03-22T08:40:52.368974035Z"} +2026/03/22 08:40:57 ───────────────────────────────────────────────── +2026/03/22 08:41:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:41:02 [log_collector] {"stage_name":"log_collector","events_processed":15477,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3095.4,"last_update":"2026-03-22T08:40:57.368876057Z"} +2026/03/22 08:41:02 [metric_collector] {"stage_name":"metric_collector","events_processed":9569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1913.8,"last_update":"2026-03-22T08:40:57.369148769Z"} +2026/03/22 08:41:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3830,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:40:57.375889477Z"} +2026/03/22 08:41:02 [detection_layer] {"stage_name":"detection_layer","events_processed":318,"events_dropped":0,"avg_latency_ms":13.63729273248717,"throughput_eps":0,"last_update":"2026-03-22T08:40:57.479053179Z"} +2026/03/22 08:41:02 [transform_engine] {"stage_name":"transform_engine","events_processed":319,"events_dropped":0,"avg_latency_ms":369.9282296339251,"throughput_eps":0,"last_update":"2026-03-22T08:40:57.580589712Z"} +2026/03/22 08:41:02 ───────────────────────────────────────────────── +2026/03/22 08:41:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:41:07 [detection_layer] {"stage_name":"detection_layer","events_processed":319,"events_dropped":0,"avg_latency_ms":13.671313985989737,"throughput_eps":0,"last_update":"2026-03-22T08:41:02.479306309Z"} +2026/03/22 08:41:07 [transform_engine] {"stage_name":"transform_engine","events_processed":319,"events_dropped":0,"avg_latency_ms":369.9282296339251,"throughput_eps":0,"last_update":"2026-03-22T08:41:02.479268135Z"} +2026/03/22 08:41:07 [log_collector] {"stage_name":"log_collector","events_processed":15496,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3099.2,"last_update":"2026-03-22T08:41:02.367958354Z"} +2026/03/22 08:41:07 [metric_collector] {"stage_name":"metric_collector","events_processed":9574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1914.8,"last_update":"2026-03-22T08:41:02.368323664Z"} +2026/03/22 08:41:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3832,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:41:02.37410799Z"} +2026/03/22 08:41:07 ───────────────────────────────────────────────── +2026/03/22 08:41:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:41:12 [log_collector] {"stage_name":"log_collector","events_processed":15517,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3103.4,"last_update":"2026-03-22T08:41:07.368902282Z"} +2026/03/22 08:41:12 [metric_collector] {"stage_name":"metric_collector","events_processed":9579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1915.8,"last_update":"2026-03-22T08:41:07.368985301Z"} +2026/03/22 08:41:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:41:07.375845187Z"} +2026/03/22 08:41:12 [detection_layer] {"stage_name":"detection_layer","events_processed":319,"events_dropped":0,"avg_latency_ms":13.671313985989737,"throughput_eps":0,"last_update":"2026-03-22T08:41:07.479023615Z"} +2026/03/22 08:41:12 [transform_engine] {"stage_name":"transform_engine","events_processed":319,"events_dropped":0,"avg_latency_ms":369.9282296339251,"throughput_eps":0,"last_update":"2026-03-22T08:41:07.479040999Z"} +2026/03/22 08:41:12 ───────────────────────────────────────────────── +2026/03/22 08:41:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:41:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:41:12.375527259Z"} +2026/03/22 08:41:17 [detection_layer] {"stage_name":"detection_layer","events_processed":319,"events_dropped":0,"avg_latency_ms":13.671313985989737,"throughput_eps":0,"last_update":"2026-03-22T08:41:12.479713217Z"} +2026/03/22 08:41:17 [transform_engine] {"stage_name":"transform_engine","events_processed":319,"events_dropped":0,"avg_latency_ms":369.9282296339251,"throughput_eps":0,"last_update":"2026-03-22T08:41:12.47974094Z"} +2026/03/22 08:41:17 [log_collector] {"stage_name":"log_collector","events_processed":15538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3107.6,"last_update":"2026-03-22T08:41:12.368834763Z"} +2026/03/22 08:41:17 [metric_collector] {"stage_name":"metric_collector","events_processed":9584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1916.8,"last_update":"2026-03-22T08:41:12.369051729Z"} +2026/03/22 08:41:17 ───────────────────────────────────────────────── +2026/03/22 08:41:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:41:22 [log_collector] {"stage_name":"log_collector","events_processed":15555,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3111,"last_update":"2026-03-22T08:41:17.368021746Z"} +2026/03/22 08:41:22 [metric_collector] {"stage_name":"metric_collector","events_processed":9589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1917.8,"last_update":"2026-03-22T08:41:17.368189919Z"} +2026/03/22 08:41:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:41:17.374832497Z"} +2026/03/22 08:41:22 [detection_layer] {"stage_name":"detection_layer","events_processed":319,"events_dropped":0,"avg_latency_ms":13.671313985989737,"throughput_eps":0,"last_update":"2026-03-22T08:41:17.479022514Z"} +2026/03/22 08:41:22 [transform_engine] {"stage_name":"transform_engine","events_processed":319,"events_dropped":0,"avg_latency_ms":369.9282296339251,"throughput_eps":0,"last_update":"2026-03-22T08:41:17.47903671Z"} +2026/03/22 08:41:22 ───────────────────────────────────────────────── +Saved state: 11 clusters, 15568 messages, reason: none +2026/03/22 08:41:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:41:27 [log_collector] {"stage_name":"log_collector","events_processed":15567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3113.4,"last_update":"2026-03-22T08:41:22.367957944Z"} +2026/03/22 08:41:27 [metric_collector] {"stage_name":"metric_collector","events_processed":9594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1918.8,"last_update":"2026-03-22T08:41:22.368322283Z"} +2026/03/22 08:41:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:41:22.375390026Z"} +2026/03/22 08:41:27 [detection_layer] {"stage_name":"detection_layer","events_processed":319,"events_dropped":0,"avg_latency_ms":13.671313985989737,"throughput_eps":0,"last_update":"2026-03-22T08:41:22.479575613Z"} +2026/03/22 08:41:27 [transform_engine] {"stage_name":"transform_engine","events_processed":319,"events_dropped":0,"avg_latency_ms":369.9282296339251,"throughput_eps":0,"last_update":"2026-03-22T08:41:22.479601562Z"} +2026/03/22 08:41:27 ───────────────────────────────────────────────── +2026/03/22 08:41:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:41:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:41:27.37572792Z"} +2026/03/22 08:41:32 [detection_layer] {"stage_name":"detection_layer","events_processed":319,"events_dropped":0,"avg_latency_ms":13.671313985989737,"throughput_eps":0,"last_update":"2026-03-22T08:41:27.479053699Z"} +2026/03/22 08:41:32 [transform_engine] {"stage_name":"transform_engine","events_processed":320,"events_dropped":0,"avg_latency_ms":316.0320521071401,"throughput_eps":0,"last_update":"2026-03-22T08:41:27.579477947Z"} +2026/03/22 08:41:32 [log_collector] {"stage_name":"log_collector","events_processed":15571,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3114.2,"last_update":"2026-03-22T08:41:32.368387402Z"} +2026/03/22 08:41:32 [metric_collector] {"stage_name":"metric_collector","events_processed":9599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1919.8,"last_update":"2026-03-22T08:41:27.368464172Z"} +2026/03/22 08:41:32 ───────────────────────────────────────────────── +2026/03/22 08:41:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:41:37 [log_collector] {"stage_name":"log_collector","events_processed":15571,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3114.2,"last_update":"2026-03-22T08:41:32.368387402Z"} +2026/03/22 08:41:37 [metric_collector] {"stage_name":"metric_collector","events_processed":9604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1920.8,"last_update":"2026-03-22T08:41:32.368719478Z"} +2026/03/22 08:41:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:41:32.377041445Z"} +2026/03/22 08:41:37 [detection_layer] {"stage_name":"detection_layer","events_processed":320,"events_dropped":0,"avg_latency_ms":13.82053458879179,"throughput_eps":0,"last_update":"2026-03-22T08:41:32.479409879Z"} +2026/03/22 08:41:37 [transform_engine] {"stage_name":"transform_engine","events_processed":320,"events_dropped":0,"avg_latency_ms":316.0320521071401,"throughput_eps":0,"last_update":"2026-03-22T08:41:32.479424145Z"} +2026/03/22 08:41:37 ───────────────────────────────────────────────── +2026/03/22 08:41:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:41:42 [log_collector] {"stage_name":"log_collector","events_processed":15582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3116.4,"last_update":"2026-03-22T08:41:37.3680073Z"} +2026/03/22 08:41:42 [metric_collector] {"stage_name":"metric_collector","events_processed":9609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1921.8,"last_update":"2026-03-22T08:41:37.368325901Z"} +2026/03/22 08:41:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:41:37.377977356Z"} +2026/03/22 08:41:42 [detection_layer] {"stage_name":"detection_layer","events_processed":320,"events_dropped":0,"avg_latency_ms":13.82053458879179,"throughput_eps":0,"last_update":"2026-03-22T08:41:37.479254617Z"} +2026/03/22 08:41:42 [transform_engine] {"stage_name":"transform_engine","events_processed":320,"events_dropped":0,"avg_latency_ms":316.0320521071401,"throughput_eps":0,"last_update":"2026-03-22T08:41:37.479232204Z"} +2026/03/22 08:41:42 ───────────────────────────────────────────────── +2026/03/22 08:41:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:41:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3848,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:41:42.377870478Z"} +2026/03/22 08:41:47 [detection_layer] {"stage_name":"detection_layer","events_processed":320,"events_dropped":0,"avg_latency_ms":13.82053458879179,"throughput_eps":0,"last_update":"2026-03-22T08:41:42.479097903Z"} +2026/03/22 08:41:47 [transform_engine] {"stage_name":"transform_engine","events_processed":320,"events_dropped":0,"avg_latency_ms":316.0320521071401,"throughput_eps":0,"last_update":"2026-03-22T08:41:42.479076232Z"} +2026/03/22 08:41:47 [log_collector] {"stage_name":"log_collector","events_processed":15611,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3122.2,"last_update":"2026-03-22T08:41:47.368581143Z"} +2026/03/22 08:41:47 [metric_collector] {"stage_name":"metric_collector","events_processed":9614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1922.8,"last_update":"2026-03-22T08:41:42.368956246Z"} +2026/03/22 08:41:47 ───────────────────────────────────────────────── +2026/03/22 08:41:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:41:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:41:47.375336668Z"} +2026/03/22 08:41:52 [detection_layer] {"stage_name":"detection_layer","events_processed":320,"events_dropped":0,"avg_latency_ms":13.82053458879179,"throughput_eps":0,"last_update":"2026-03-22T08:41:47.479532101Z"} +2026/03/22 08:41:52 [transform_engine] {"stage_name":"transform_engine","events_processed":320,"events_dropped":0,"avg_latency_ms":316.0320521071401,"throughput_eps":0,"last_update":"2026-03-22T08:41:47.479541528Z"} +2026/03/22 08:41:52 [log_collector] {"stage_name":"log_collector","events_processed":15611,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3122.2,"last_update":"2026-03-22T08:41:47.368581143Z"} +2026/03/22 08:41:52 [metric_collector] {"stage_name":"metric_collector","events_processed":9619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1923.8,"last_update":"2026-03-22T08:41:47.368890175Z"} +2026/03/22 08:41:52 ───────────────────────────────────────────────── +2026/03/22 08:41:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:41:57 [metric_collector] {"stage_name":"metric_collector","events_processed":9624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1924.8,"last_update":"2026-03-22T08:41:52.368302177Z"} +2026/03/22 08:41:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:41:52.375043494Z"} +2026/03/22 08:41:57 [detection_layer] {"stage_name":"detection_layer","events_processed":320,"events_dropped":0,"avg_latency_ms":13.82053458879179,"throughput_eps":0,"last_update":"2026-03-22T08:41:52.479250658Z"} +2026/03/22 08:41:57 [transform_engine] {"stage_name":"transform_engine","events_processed":320,"events_dropped":0,"avg_latency_ms":316.0320521071401,"throughput_eps":0,"last_update":"2026-03-22T08:41:52.479265938Z"} +2026/03/22 08:41:57 [log_collector] {"stage_name":"log_collector","events_processed":15611,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3122.2,"last_update":"2026-03-22T08:41:52.367955072Z"} +2026/03/22 08:41:57 ───────────────────────────────────────────────── +2026/03/22 08:42:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:42:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:41:57.377236044Z"} +2026/03/22 08:42:02 [detection_layer] {"stage_name":"detection_layer","events_processed":320,"events_dropped":0,"avg_latency_ms":13.82053458879179,"throughput_eps":0,"last_update":"2026-03-22T08:41:57.479419248Z"} +2026/03/22 08:42:02 [transform_engine] {"stage_name":"transform_engine","events_processed":321,"events_dropped":0,"avg_latency_ms":275.1490700857121,"throughput_eps":0,"last_update":"2026-03-22T08:41:57.591055007Z"} +2026/03/22 08:42:02 [log_collector] {"stage_name":"log_collector","events_processed":15613,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3122.6,"last_update":"2026-03-22T08:42:02.368679205Z"} +2026/03/22 08:42:02 [metric_collector] {"stage_name":"metric_collector","events_processed":9629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1925.8,"last_update":"2026-03-22T08:41:57.368281545Z"} +2026/03/22 08:42:02 ───────────────────────────────────────────────── +2026/03/22 08:42:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:42:07 [log_collector] {"stage_name":"log_collector","events_processed":15613,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3122.6,"last_update":"2026-03-22T08:42:02.368679205Z"} +2026/03/22 08:42:07 [metric_collector] {"stage_name":"metric_collector","events_processed":9634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1926.8,"last_update":"2026-03-22T08:42:02.368894758Z"} +2026/03/22 08:42:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:42:02.375043982Z"} +2026/03/22 08:42:07 [detection_layer] {"stage_name":"detection_layer","events_processed":321,"events_dropped":0,"avg_latency_ms":14.153806871033433,"throughput_eps":0,"last_update":"2026-03-22T08:42:02.479263618Z"} +2026/03/22 08:42:07 [transform_engine] {"stage_name":"transform_engine","events_processed":321,"events_dropped":0,"avg_latency_ms":275.1490700857121,"throughput_eps":0,"last_update":"2026-03-22T08:42:02.479279318Z"} +2026/03/22 08:42:07 ───────────────────────────────────────────────── +2026/03/22 08:42:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:42:12 [log_collector] {"stage_name":"log_collector","events_processed":15615,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123,"last_update":"2026-03-22T08:42:12.368200588Z"} +2026/03/22 08:42:12 [metric_collector] {"stage_name":"metric_collector","events_processed":9639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1927.8,"last_update":"2026-03-22T08:42:07.369081527Z"} +2026/03/22 08:42:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:42:07.376536332Z"} +2026/03/22 08:42:12 [detection_layer] {"stage_name":"detection_layer","events_processed":321,"events_dropped":0,"avg_latency_ms":14.153806871033433,"throughput_eps":0,"last_update":"2026-03-22T08:42:07.479909135Z"} +2026/03/22 08:42:12 [transform_engine] {"stage_name":"transform_engine","events_processed":321,"events_dropped":0,"avg_latency_ms":275.1490700857121,"throughput_eps":0,"last_update":"2026-03-22T08:42:07.478831831Z"} +2026/03/22 08:42:12 ───────────────────────────────────────────────── +2026/03/22 08:42:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:42:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3860,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:42:12.377966541Z"} +2026/03/22 08:42:17 [detection_layer] {"stage_name":"detection_layer","events_processed":321,"events_dropped":0,"avg_latency_ms":14.153806871033433,"throughput_eps":0,"last_update":"2026-03-22T08:42:12.479172723Z"} +2026/03/22 08:42:17 [transform_engine] {"stage_name":"transform_engine","events_processed":321,"events_dropped":0,"avg_latency_ms":275.1490700857121,"throughput_eps":0,"last_update":"2026-03-22T08:42:12.479202991Z"} +2026/03/22 08:42:17 [log_collector] {"stage_name":"log_collector","events_processed":15615,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123,"last_update":"2026-03-22T08:42:12.368200588Z"} +2026/03/22 08:42:17 [metric_collector] {"stage_name":"metric_collector","events_processed":9644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1928.8,"last_update":"2026-03-22T08:42:12.368818642Z"} +2026/03/22 08:42:17 ───────────────────────────────────────────────── +2026/03/22 08:42:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:42:22 [detection_layer] {"stage_name":"detection_layer","events_processed":321,"events_dropped":0,"avg_latency_ms":14.153806871033433,"throughput_eps":0,"last_update":"2026-03-22T08:42:17.479954332Z"} +2026/03/22 08:42:22 [transform_engine] {"stage_name":"transform_engine","events_processed":321,"events_dropped":0,"avg_latency_ms":275.1490700857121,"throughput_eps":0,"last_update":"2026-03-22T08:42:17.478844284Z"} +2026/03/22 08:42:22 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:42:22.368502151Z"} +2026/03/22 08:42:22 [metric_collector] {"stage_name":"metric_collector","events_processed":9649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1929.8,"last_update":"2026-03-22T08:42:17.368990754Z"} +2026/03/22 08:42:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3862,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:42:17.378714156Z"} +2026/03/22 08:42:22 ───────────────────────────────────────────────── +2026/03/22 08:42:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:42:27 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:42:22.368502151Z"} +2026/03/22 08:42:27 [metric_collector] {"stage_name":"metric_collector","events_processed":9654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1930.8,"last_update":"2026-03-22T08:42:22.368835299Z"} +2026/03/22 08:42:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:42:22.374246028Z"} +2026/03/22 08:42:27 [detection_layer] {"stage_name":"detection_layer","events_processed":321,"events_dropped":0,"avg_latency_ms":14.153806871033433,"throughput_eps":0,"last_update":"2026-03-22T08:42:22.479476869Z"} +2026/03/22 08:42:27 [transform_engine] {"stage_name":"transform_engine","events_processed":321,"events_dropped":0,"avg_latency_ms":275.1490700857121,"throughput_eps":0,"last_update":"2026-03-22T08:42:22.479504022Z"} +2026/03/22 08:42:27 ───────────────────────────────────────────────── +2026/03/22 08:42:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:42:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:42:27.375069791Z"} +2026/03/22 08:42:32 [detection_layer] {"stage_name":"detection_layer","events_processed":321,"events_dropped":0,"avg_latency_ms":14.153806871033433,"throughput_eps":0,"last_update":"2026-03-22T08:42:27.479242174Z"} +2026/03/22 08:42:32 [transform_engine] {"stage_name":"transform_engine","events_processed":322,"events_dropped":0,"avg_latency_ms":240.28880246856968,"throughput_eps":0,"last_update":"2026-03-22T08:42:27.580076562Z"} +2026/03/22 08:42:32 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:42:27.367957342Z"} +2026/03/22 08:42:32 [metric_collector] {"stage_name":"metric_collector","events_processed":9659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1931.8,"last_update":"2026-03-22T08:42:27.368136645Z"} +2026/03/22 08:42:32 ───────────────────────────────────────────────── +2026/03/22 08:42:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:42:37 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:42:37.36805071Z"} +2026/03/22 08:42:37 [metric_collector] {"stage_name":"metric_collector","events_processed":9664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1932.8,"last_update":"2026-03-22T08:42:32.368515711Z"} +2026/03/22 08:42:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3868,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:42:32.374134027Z"} +2026/03/22 08:42:37 [detection_layer] {"stage_name":"detection_layer","events_processed":322,"events_dropped":0,"avg_latency_ms":13.727829496826747,"throughput_eps":0,"last_update":"2026-03-22T08:42:32.479327486Z"} +2026/03/22 08:42:37 [transform_engine] {"stage_name":"transform_engine","events_processed":322,"events_dropped":0,"avg_latency_ms":240.28880246856968,"throughput_eps":0,"last_update":"2026-03-22T08:42:32.479360579Z"} +2026/03/22 08:42:37 ───────────────────────────────────────────────── +2026/03/22 08:42:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:42:42 [metric_collector] {"stage_name":"metric_collector","events_processed":9669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1933.8,"last_update":"2026-03-22T08:42:37.368313384Z"} +2026/03/22 08:42:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:42:37.375402398Z"} +2026/03/22 08:42:42 [detection_layer] {"stage_name":"detection_layer","events_processed":322,"events_dropped":0,"avg_latency_ms":13.727829496826747,"throughput_eps":0,"last_update":"2026-03-22T08:42:37.479614466Z"} +2026/03/22 08:42:42 [transform_engine] {"stage_name":"transform_engine","events_processed":322,"events_dropped":0,"avg_latency_ms":240.28880246856968,"throughput_eps":0,"last_update":"2026-03-22T08:42:37.479629084Z"} +2026/03/22 08:42:42 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:42:42.368628127Z"} +2026/03/22 08:42:42 ───────────────────────────────────────────────── +2026/03/22 08:42:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:42:47 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:42:47.368586169Z"} +2026/03/22 08:42:47 [metric_collector] {"stage_name":"metric_collector","events_processed":9674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1934.8,"last_update":"2026-03-22T08:42:42.368879809Z"} +2026/03/22 08:42:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:42:42.375400985Z"} +2026/03/22 08:42:47 [detection_layer] {"stage_name":"detection_layer","events_processed":322,"events_dropped":0,"avg_latency_ms":13.727829496826747,"throughput_eps":0,"last_update":"2026-03-22T08:42:42.479620757Z"} +2026/03/22 08:42:47 [transform_engine] {"stage_name":"transform_engine","events_processed":322,"events_dropped":0,"avg_latency_ms":240.28880246856968,"throughput_eps":0,"last_update":"2026-03-22T08:42:42.479637389Z"} +2026/03/22 08:42:47 ───────────────────────────────────────────────── +2026/03/22 08:42:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:42:52 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:42:47.368586169Z"} +2026/03/22 08:42:52 [metric_collector] {"stage_name":"metric_collector","events_processed":9679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1935.8,"last_update":"2026-03-22T08:42:47.369023477Z"} +2026/03/22 08:42:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:42:47.375705461Z"} +2026/03/22 08:42:52 [detection_layer] {"stage_name":"detection_layer","events_processed":322,"events_dropped":0,"avg_latency_ms":13.727829496826747,"throughput_eps":0,"last_update":"2026-03-22T08:42:47.47992449Z"} +2026/03/22 08:42:52 [transform_engine] {"stage_name":"transform_engine","events_processed":322,"events_dropped":0,"avg_latency_ms":240.28880246856968,"throughput_eps":0,"last_update":"2026-03-22T08:42:47.478824564Z"} +2026/03/22 08:42:52 ───────────────────────────────────────────────── +2026/03/22 08:42:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:42:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3876,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:42:52.375070412Z"} +2026/03/22 08:42:57 [detection_layer] {"stage_name":"detection_layer","events_processed":322,"events_dropped":0,"avg_latency_ms":13.727829496826747,"throughput_eps":0,"last_update":"2026-03-22T08:42:52.47924649Z"} +2026/03/22 08:42:57 [transform_engine] {"stage_name":"transform_engine","events_processed":322,"events_dropped":0,"avg_latency_ms":240.28880246856968,"throughput_eps":0,"last_update":"2026-03-22T08:42:52.47925678Z"} +2026/03/22 08:42:57 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:42:52.368411744Z"} +2026/03/22 08:42:57 [metric_collector] {"stage_name":"metric_collector","events_processed":9684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1936.8,"last_update":"2026-03-22T08:42:52.36883793Z"} +2026/03/22 08:42:57 ───────────────────────────────────────────────── +2026/03/22 08:43:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:43:02 [transform_engine] {"stage_name":"transform_engine","events_processed":323,"events_dropped":0,"avg_latency_ms":232.56049137485576,"throughput_eps":0,"last_update":"2026-03-22T08:42:57.680917566Z"} +2026/03/22 08:43:02 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:42:57.368669462Z"} +2026/03/22 08:43:02 [metric_collector] {"stage_name":"metric_collector","events_processed":9688,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1937.6,"last_update":"2026-03-22T08:42:57.368684269Z"} +2026/03/22 08:43:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:42:57.376049412Z"} +2026/03/22 08:43:02 [detection_layer] {"stage_name":"detection_layer","events_processed":322,"events_dropped":0,"avg_latency_ms":13.727829496826747,"throughput_eps":0,"last_update":"2026-03-22T08:42:57.479255511Z"} +2026/03/22 08:43:02 ───────────────────────────────────────────────── +2026/03/22 08:43:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:43:07 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:43:02.367979389Z"} +2026/03/22 08:43:07 [metric_collector] {"stage_name":"metric_collector","events_processed":9694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1938.8,"last_update":"2026-03-22T08:43:02.368187858Z"} +2026/03/22 08:43:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:43:02.37463916Z"} +2026/03/22 08:43:07 [detection_layer] {"stage_name":"detection_layer","events_processed":323,"events_dropped":0,"avg_latency_ms":13.477017997461397,"throughput_eps":0,"last_update":"2026-03-22T08:43:02.479821044Z"} +2026/03/22 08:43:07 [transform_engine] {"stage_name":"transform_engine","events_processed":323,"events_dropped":0,"avg_latency_ms":232.56049137485576,"throughput_eps":0,"last_update":"2026-03-22T08:43:02.479836404Z"} +2026/03/22 08:43:07 ───────────────────────────────────────────────── +2026/03/22 08:43:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:43:12 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:43:07.368345435Z"} +2026/03/22 08:43:12 [metric_collector] {"stage_name":"metric_collector","events_processed":9699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1939.8,"last_update":"2026-03-22T08:43:07.368579172Z"} +2026/03/22 08:43:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:43:07.374655005Z"} +2026/03/22 08:43:12 [detection_layer] {"stage_name":"detection_layer","events_processed":323,"events_dropped":0,"avg_latency_ms":13.477017997461397,"throughput_eps":0,"last_update":"2026-03-22T08:43:07.478948565Z"} +2026/03/22 08:43:12 [transform_engine] {"stage_name":"transform_engine","events_processed":323,"events_dropped":0,"avg_latency_ms":232.56049137485576,"throughput_eps":0,"last_update":"2026-03-22T08:43:07.47885176Z"} +2026/03/22 08:43:12 ───────────────────────────────────────────────── +2026/03/22 08:43:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:43:17 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:43:12.368175404Z"} +2026/03/22 08:43:17 [metric_collector] {"stage_name":"metric_collector","events_processed":9704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1940.8,"last_update":"2026-03-22T08:43:12.368609436Z"} +2026/03/22 08:43:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:43:12.375437459Z"} +2026/03/22 08:43:17 [detection_layer] {"stage_name":"detection_layer","events_processed":323,"events_dropped":0,"avg_latency_ms":13.477017997461397,"throughput_eps":0,"last_update":"2026-03-22T08:43:12.479673679Z"} +2026/03/22 08:43:17 [transform_engine] {"stage_name":"transform_engine","events_processed":323,"events_dropped":0,"avg_latency_ms":232.56049137485576,"throughput_eps":0,"last_update":"2026-03-22T08:43:12.479653831Z"} +2026/03/22 08:43:17 ───────────────────────────────────────────────── +2026/03/22 08:43:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:43:22 [transform_engine] {"stage_name":"transform_engine","events_processed":323,"events_dropped":0,"avg_latency_ms":232.56049137485576,"throughput_eps":0,"last_update":"2026-03-22T08:43:17.479842416Z"} +2026/03/22 08:43:22 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:43:17.367993038Z"} +2026/03/22 08:43:22 [metric_collector] {"stage_name":"metric_collector","events_processed":9709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1941.8,"last_update":"2026-03-22T08:43:17.368124871Z"} +2026/03/22 08:43:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3886,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:43:17.374536697Z"} +2026/03/22 08:43:22 [detection_layer] {"stage_name":"detection_layer","events_processed":323,"events_dropped":0,"avg_latency_ms":13.477017997461397,"throughput_eps":0,"last_update":"2026-03-22T08:43:17.479857675Z"} +2026/03/22 08:43:22 ───────────────────────────────────────────────── +2026/03/22 08:43:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:43:27 [transform_engine] {"stage_name":"transform_engine","events_processed":323,"events_dropped":0,"avg_latency_ms":232.56049137485576,"throughput_eps":0,"last_update":"2026-03-22T08:43:22.479853322Z"} +2026/03/22 08:43:27 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:43:22.36795943Z"} +2026/03/22 08:43:27 [metric_collector] {"stage_name":"metric_collector","events_processed":9714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1942.8,"last_update":"2026-03-22T08:43:22.368145937Z"} +2026/03/22 08:43:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:43:22.37461342Z"} +2026/03/22 08:43:27 [detection_layer] {"stage_name":"detection_layer","events_processed":323,"events_dropped":0,"avg_latency_ms":13.477017997461397,"throughput_eps":0,"last_update":"2026-03-22T08:43:22.479821622Z"} +2026/03/22 08:43:27 ───────────────────────────────────────────────── +2026/03/22 08:43:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:43:32 [metric_collector] {"stage_name":"metric_collector","events_processed":9719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1943.8,"last_update":"2026-03-22T08:43:27.368119981Z"} +2026/03/22 08:43:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:43:27.3783958Z"} +2026/03/22 08:43:32 [detection_layer] {"stage_name":"detection_layer","events_processed":323,"events_dropped":0,"avg_latency_ms":13.477017997461397,"throughput_eps":0,"last_update":"2026-03-22T08:43:27.4795631Z"} +2026/03/22 08:43:32 [transform_engine] {"stage_name":"transform_engine","events_processed":324,"events_dropped":0,"avg_latency_ms":618.3031726998846,"throughput_eps":0,"last_update":"2026-03-22T08:43:29.640819554Z"} +2026/03/22 08:43:32 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:43:32.368271762Z"} +2026/03/22 08:43:32 ───────────────────────────────────────────────── +2026/03/22 08:43:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:43:37 [metric_collector] {"stage_name":"metric_collector","events_processed":9724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1944.8,"last_update":"2026-03-22T08:43:32.368715722Z"} +2026/03/22 08:43:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3892,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:43:32.374479086Z"} +2026/03/22 08:43:37 [detection_layer] {"stage_name":"detection_layer","events_processed":324,"events_dropped":0,"avg_latency_ms":13.329694797969118,"throughput_eps":0,"last_update":"2026-03-22T08:43:32.479666147Z"} +2026/03/22 08:43:37 [transform_engine] {"stage_name":"transform_engine","events_processed":324,"events_dropped":0,"avg_latency_ms":618.3031726998846,"throughput_eps":0,"last_update":"2026-03-22T08:43:32.479694421Z"} +2026/03/22 08:43:37 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:43:37.368464909Z"} +2026/03/22 08:43:37 ───────────────────────────────────────────────── +2026/03/22 08:43:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:43:42 [detection_layer] {"stage_name":"detection_layer","events_processed":324,"events_dropped":0,"avg_latency_ms":13.329694797969118,"throughput_eps":0,"last_update":"2026-03-22T08:43:37.479195942Z"} +2026/03/22 08:43:42 [transform_engine] {"stage_name":"transform_engine","events_processed":324,"events_dropped":0,"avg_latency_ms":618.3031726998846,"throughput_eps":0,"last_update":"2026-03-22T08:43:37.479178869Z"} +2026/03/22 08:43:42 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:43:37.368464909Z"} +2026/03/22 08:43:42 [metric_collector] {"stage_name":"metric_collector","events_processed":9729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1945.8,"last_update":"2026-03-22T08:43:37.368692405Z"} +2026/03/22 08:43:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:43:37.374969272Z"} +2026/03/22 08:43:42 ───────────────────────────────────────────────── +2026/03/22 08:43:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:43:47 [transform_engine] {"stage_name":"transform_engine","events_processed":324,"events_dropped":0,"avg_latency_ms":618.3031726998846,"throughput_eps":0,"last_update":"2026-03-22T08:43:42.47962773Z"} +2026/03/22 08:43:47 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:43:42.368419653Z"} +2026/03/22 08:43:47 [metric_collector] {"stage_name":"metric_collector","events_processed":9734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1946.8,"last_update":"2026-03-22T08:43:42.36857442Z"} +2026/03/22 08:43:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3896,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:43:42.375418284Z"} +2026/03/22 08:43:47 [detection_layer] {"stage_name":"detection_layer","events_processed":324,"events_dropped":0,"avg_latency_ms":13.329694797969118,"throughput_eps":0,"last_update":"2026-03-22T08:43:42.479655793Z"} +2026/03/22 08:43:47 ───────────────────────────────────────────────── +2026/03/22 08:43:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:43:52 [metric_collector] {"stage_name":"metric_collector","events_processed":9739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1947.8,"last_update":"2026-03-22T08:43:47.368117913Z"} +2026/03/22 08:43:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3898,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:43:47.375393363Z"} +2026/03/22 08:43:52 [detection_layer] {"stage_name":"detection_layer","events_processed":324,"events_dropped":0,"avg_latency_ms":13.329694797969118,"throughput_eps":0,"last_update":"2026-03-22T08:43:47.479605464Z"} +2026/03/22 08:43:52 [transform_engine] {"stage_name":"transform_engine","events_processed":324,"events_dropped":0,"avg_latency_ms":618.3031726998846,"throughput_eps":0,"last_update":"2026-03-22T08:43:47.479567973Z"} +2026/03/22 08:43:52 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:43:47.367956674Z"} +2026/03/22 08:43:52 ───────────────────────────────────────────────── +2026/03/22 08:43:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:43:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3898,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:43:52.368020189Z"} +2026/03/22 08:43:57 [detection_layer] {"stage_name":"detection_layer","events_processed":324,"events_dropped":0,"avg_latency_ms":13.329694797969118,"throughput_eps":0,"last_update":"2026-03-22T08:43:52.479760674Z"} +2026/03/22 08:43:57 [transform_engine] {"stage_name":"transform_engine","events_processed":324,"events_dropped":0,"avg_latency_ms":618.3031726998846,"throughput_eps":0,"last_update":"2026-03-22T08:43:52.479794058Z"} +2026/03/22 08:43:57 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:43:57.36856268Z"} +2026/03/22 08:43:57 [metric_collector] {"stage_name":"metric_collector","events_processed":9744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1948.8,"last_update":"2026-03-22T08:43:52.368301968Z"} +2026/03/22 08:43:57 ───────────────────────────────────────────────── +2026/03/22 08:44:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:44:02 [transform_engine] {"stage_name":"transform_engine","events_processed":325,"events_dropped":0,"avg_latency_ms":506.1821691599077,"throughput_eps":0,"last_update":"2026-03-22T08:43:57.536830627Z"} +2026/03/22 08:44:02 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:43:57.36856268Z"} +2026/03/22 08:44:02 [metric_collector] {"stage_name":"metric_collector","events_processed":9749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1949.8,"last_update":"2026-03-22T08:43:57.36893324Z"} +2026/03/22 08:44:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:43:57.374963576Z"} +2026/03/22 08:44:02 [detection_layer] {"stage_name":"detection_layer","events_processed":324,"events_dropped":0,"avg_latency_ms":13.329694797969118,"throughput_eps":0,"last_update":"2026-03-22T08:43:57.480011958Z"} +2026/03/22 08:44:02 ───────────────────────────────────────────────── +2026/03/22 08:44:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:44:07 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:44:02.368781327Z"} +2026/03/22 08:44:07 [metric_collector] {"stage_name":"metric_collector","events_processed":9754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1950.8,"last_update":"2026-03-22T08:44:02.369161786Z"} +2026/03/22 08:44:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:44:02.375785558Z"} +2026/03/22 08:44:07 [detection_layer] {"stage_name":"detection_layer","events_processed":325,"events_dropped":0,"avg_latency_ms":13.216394838375294,"throughput_eps":0,"last_update":"2026-03-22T08:44:02.479981556Z"} +2026/03/22 08:44:07 [transform_engine] {"stage_name":"transform_engine","events_processed":325,"events_dropped":0,"avg_latency_ms":506.1821691599077,"throughput_eps":0,"last_update":"2026-03-22T08:44:02.478909051Z"} +2026/03/22 08:44:07 ───────────────────────────────────────────────── +2026/03/22 08:44:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:44:12 [metric_collector] {"stage_name":"metric_collector","events_processed":9759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1951.8,"last_update":"2026-03-22T08:44:07.368989961Z"} +2026/03/22 08:44:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3906,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:44:07.374951363Z"} +2026/03/22 08:44:12 [detection_layer] {"stage_name":"detection_layer","events_processed":325,"events_dropped":0,"avg_latency_ms":13.216394838375294,"throughput_eps":0,"last_update":"2026-03-22T08:44:07.479134757Z"} +2026/03/22 08:44:12 [transform_engine] {"stage_name":"transform_engine","events_processed":325,"events_dropped":0,"avg_latency_ms":506.1821691599077,"throughput_eps":0,"last_update":"2026-03-22T08:44:07.479145387Z"} +2026/03/22 08:44:12 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:44:07.368607988Z"} +2026/03/22 08:44:12 ───────────────────────────────────────────────── +2026/03/22 08:44:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:44:17 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:44:17.367997747Z"} +2026/03/22 08:44:17 [metric_collector] {"stage_name":"metric_collector","events_processed":9764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1952.8,"last_update":"2026-03-22T08:44:12.368902483Z"} +2026/03/22 08:44:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3908,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:44:12.375789529Z"} +2026/03/22 08:44:17 [detection_layer] {"stage_name":"detection_layer","events_processed":325,"events_dropped":0,"avg_latency_ms":13.216394838375294,"throughput_eps":0,"last_update":"2026-03-22T08:44:12.478949582Z"} +2026/03/22 08:44:17 [transform_engine] {"stage_name":"transform_engine","events_processed":325,"events_dropped":0,"avg_latency_ms":506.1821691599077,"throughput_eps":0,"last_update":"2026-03-22T08:44:12.47891695Z"} +2026/03/22 08:44:17 ───────────────────────────────────────────────── +2026/03/22 08:44:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:44:22 [detection_layer] {"stage_name":"detection_layer","events_processed":325,"events_dropped":0,"avg_latency_ms":13.216394838375294,"throughput_eps":0,"last_update":"2026-03-22T08:44:17.479239073Z"} +2026/03/22 08:44:22 [transform_engine] {"stage_name":"transform_engine","events_processed":325,"events_dropped":0,"avg_latency_ms":506.1821691599077,"throughput_eps":0,"last_update":"2026-03-22T08:44:17.479248372Z"} +2026/03/22 08:44:22 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:44:22.368423148Z"} +2026/03/22 08:44:22 [metric_collector] {"stage_name":"metric_collector","events_processed":9769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1953.8,"last_update":"2026-03-22T08:44:17.368414415Z"} +2026/03/22 08:44:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:44:17.375062164Z"} +2026/03/22 08:44:22 ───────────────────────────────────────────────── +2026/03/22 08:44:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:44:27 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:44:27.368768113Z"} +2026/03/22 08:44:27 [metric_collector] {"stage_name":"metric_collector","events_processed":9774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1954.8,"last_update":"2026-03-22T08:44:22.368834385Z"} +2026/03/22 08:44:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3912,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:44:22.374636052Z"} +2026/03/22 08:44:27 [detection_layer] {"stage_name":"detection_layer","events_processed":325,"events_dropped":0,"avg_latency_ms":13.216394838375294,"throughput_eps":0,"last_update":"2026-03-22T08:44:22.479843266Z"} +2026/03/22 08:44:27 [transform_engine] {"stage_name":"transform_engine","events_processed":325,"events_dropped":0,"avg_latency_ms":506.1821691599077,"throughput_eps":0,"last_update":"2026-03-22T08:44:22.47985552Z"} +2026/03/22 08:44:27 ───────────────────────────────────────────────── +2026/03/22 08:44:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:44:32 [transform_engine] {"stage_name":"transform_engine","events_processed":326,"events_dropped":0,"avg_latency_ms":418.11640312792616,"throughput_eps":0,"last_update":"2026-03-22T08:44:27.545617357Z"} +2026/03/22 08:44:32 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:44:27.368768113Z"} +2026/03/22 08:44:32 [metric_collector] {"stage_name":"metric_collector","events_processed":9779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1955.8,"last_update":"2026-03-22T08:44:27.369010127Z"} +2026/03/22 08:44:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:44:27.375563152Z"} +2026/03/22 08:44:32 [detection_layer] {"stage_name":"detection_layer","events_processed":325,"events_dropped":0,"avg_latency_ms":13.216394838375294,"throughput_eps":0,"last_update":"2026-03-22T08:44:27.479750311Z"} +2026/03/22 08:44:32 ───────────────────────────────────────────────── +2026/03/22 08:44:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:44:37 [metric_collector] {"stage_name":"metric_collector","events_processed":9784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1956.8,"last_update":"2026-03-22T08:44:32.368632454Z"} +2026/03/22 08:44:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:44:32.374887549Z"} +2026/03/22 08:44:37 [detection_layer] {"stage_name":"detection_layer","events_processed":326,"events_dropped":0,"avg_latency_ms":13.433394470700236,"throughput_eps":0,"last_update":"2026-03-22T08:44:32.479092612Z"} +2026/03/22 08:44:37 [transform_engine] {"stage_name":"transform_engine","events_processed":326,"events_dropped":0,"avg_latency_ms":418.11640312792616,"throughput_eps":0,"last_update":"2026-03-22T08:44:32.479058718Z"} +2026/03/22 08:44:37 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:44:32.36840593Z"} +2026/03/22 08:44:37 ───────────────────────────────────────────────── +2026/03/22 08:44:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:44:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3918,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:44:37.375488201Z"} +2026/03/22 08:44:42 [detection_layer] {"stage_name":"detection_layer","events_processed":326,"events_dropped":0,"avg_latency_ms":13.433394470700236,"throughput_eps":0,"last_update":"2026-03-22T08:44:37.479689717Z"} +2026/03/22 08:44:42 [transform_engine] {"stage_name":"transform_engine","events_processed":326,"events_dropped":0,"avg_latency_ms":418.11640312792616,"throughput_eps":0,"last_update":"2026-03-22T08:44:37.479700447Z"} +2026/03/22 08:44:42 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:44:37.368409608Z"} +2026/03/22 08:44:42 [metric_collector] {"stage_name":"metric_collector","events_processed":9789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1957.8,"last_update":"2026-03-22T08:44:37.368707879Z"} +2026/03/22 08:44:42 ───────────────────────────────────────────────── +2026/03/22 08:44:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:44:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3920,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:44:42.374142822Z"} +2026/03/22 08:44:47 [detection_layer] {"stage_name":"detection_layer","events_processed":326,"events_dropped":0,"avg_latency_ms":13.433394470700236,"throughput_eps":0,"last_update":"2026-03-22T08:44:42.479390582Z"} +2026/03/22 08:44:47 [transform_engine] {"stage_name":"transform_engine","events_processed":326,"events_dropped":0,"avg_latency_ms":418.11640312792616,"throughput_eps":0,"last_update":"2026-03-22T08:44:42.479407935Z"} +2026/03/22 08:44:47 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:44:42.367965415Z"} +2026/03/22 08:44:47 [metric_collector] {"stage_name":"metric_collector","events_processed":9794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1958.8,"last_update":"2026-03-22T08:44:42.368110654Z"} +2026/03/22 08:44:47 ───────────────────────────────────────────────── +2026/03/22 08:44:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:44:52 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:44:47.368606408Z"} +2026/03/22 08:44:52 [metric_collector] {"stage_name":"metric_collector","events_processed":9799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1959.8,"last_update":"2026-03-22T08:44:47.36906703Z"} +2026/03/22 08:44:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:44:47.374710063Z"} +2026/03/22 08:44:52 [detection_layer] {"stage_name":"detection_layer","events_processed":326,"events_dropped":0,"avg_latency_ms":13.433394470700236,"throughput_eps":0,"last_update":"2026-03-22T08:44:47.479978362Z"} +2026/03/22 08:44:52 [transform_engine] {"stage_name":"transform_engine","events_processed":326,"events_dropped":0,"avg_latency_ms":418.11640312792616,"throughput_eps":0,"last_update":"2026-03-22T08:44:47.478836984Z"} +2026/03/22 08:44:52 ───────────────────────────────────────────────── +2026/03/22 08:44:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:44:57 [detection_layer] {"stage_name":"detection_layer","events_processed":326,"events_dropped":0,"avg_latency_ms":13.433394470700236,"throughput_eps":0,"last_update":"2026-03-22T08:44:52.479151189Z"} +2026/03/22 08:44:57 [transform_engine] {"stage_name":"transform_engine","events_processed":326,"events_dropped":0,"avg_latency_ms":418.11640312792616,"throughput_eps":0,"last_update":"2026-03-22T08:44:52.479132243Z"} +2026/03/22 08:44:57 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:44:52.368538471Z"} +2026/03/22 08:44:57 [metric_collector] {"stage_name":"metric_collector","events_processed":9804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1960.8,"last_update":"2026-03-22T08:44:52.368748644Z"} +2026/03/22 08:44:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:44:52.374916461Z"} +2026/03/22 08:44:57 ───────────────────────────────────────────────── +2026/03/22 08:45:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:45:02 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:44:57.367948755Z"} +2026/03/22 08:45:02 [metric_collector] {"stage_name":"metric_collector","events_processed":9809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1961.8,"last_update":"2026-03-22T08:44:57.368143419Z"} +2026/03/22 08:45:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:44:57.374369808Z"} +2026/03/22 08:45:02 [detection_layer] {"stage_name":"detection_layer","events_processed":326,"events_dropped":0,"avg_latency_ms":13.433394470700236,"throughput_eps":0,"last_update":"2026-03-22T08:44:57.47956694Z"} +2026/03/22 08:45:02 [transform_engine] {"stage_name":"transform_engine","events_processed":327,"events_dropped":0,"avg_latency_ms":346.31852650234094,"throughput_eps":0,"last_update":"2026-03-22T08:44:57.538677107Z"} +2026/03/22 08:45:02 ───────────────────────────────────────────────── +2026/03/22 08:45:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:45:07 [metric_collector] {"stage_name":"metric_collector","events_processed":9814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1962.8,"last_update":"2026-03-22T08:45:02.368602724Z"} +2026/03/22 08:45:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:45:02.374963471Z"} +2026/03/22 08:45:07 [detection_layer] {"stage_name":"detection_layer","events_processed":327,"events_dropped":0,"avg_latency_ms":13.36535097656019,"throughput_eps":0,"last_update":"2026-03-22T08:45:02.479163362Z"} +2026/03/22 08:45:07 [transform_engine] {"stage_name":"transform_engine","events_processed":327,"events_dropped":0,"avg_latency_ms":346.31852650234094,"throughput_eps":0,"last_update":"2026-03-22T08:45:02.479175364Z"} +2026/03/22 08:45:07 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:45:02.368436946Z"} +2026/03/22 08:45:07 ───────────────────────────────────────────────── +2026/03/22 08:45:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:45:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3930,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:45:07.374000342Z"} +2026/03/22 08:45:12 [detection_layer] {"stage_name":"detection_layer","events_processed":327,"events_dropped":0,"avg_latency_ms":13.36535097656019,"throughput_eps":0,"last_update":"2026-03-22T08:45:07.479088363Z"} +2026/03/22 08:45:12 [transform_engine] {"stage_name":"transform_engine","events_processed":327,"events_dropped":0,"avg_latency_ms":346.31852650234094,"throughput_eps":0,"last_update":"2026-03-22T08:45:07.479098663Z"} +2026/03/22 08:45:12 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:45:07.368369403Z"} +2026/03/22 08:45:12 [metric_collector] {"stage_name":"metric_collector","events_processed":9819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1963.8,"last_update":"2026-03-22T08:45:07.368417264Z"} +2026/03/22 08:45:12 ───────────────────────────────────────────────── +2026/03/22 08:45:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:45:17 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:45:12.367969695Z"} +2026/03/22 08:45:17 [metric_collector] {"stage_name":"metric_collector","events_processed":9824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1964.8,"last_update":"2026-03-22T08:45:12.368304016Z"} +2026/03/22 08:45:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:45:12.374973314Z"} +2026/03/22 08:45:17 [detection_layer] {"stage_name":"detection_layer","events_processed":327,"events_dropped":0,"avg_latency_ms":13.36535097656019,"throughput_eps":0,"last_update":"2026-03-22T08:45:12.479173685Z"} +2026/03/22 08:45:17 [transform_engine] {"stage_name":"transform_engine","events_processed":327,"events_dropped":0,"avg_latency_ms":346.31852650234094,"throughput_eps":0,"last_update":"2026-03-22T08:45:12.479183484Z"} +2026/03/22 08:45:17 ───────────────────────────────────────────────── +2026/03/22 08:45:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:45:22 [detection_layer] {"stage_name":"detection_layer","events_processed":327,"events_dropped":0,"avg_latency_ms":13.36535097656019,"throughput_eps":0,"last_update":"2026-03-22T08:45:17.479244232Z"} +2026/03/22 08:45:22 [transform_engine] {"stage_name":"transform_engine","events_processed":327,"events_dropped":0,"avg_latency_ms":346.31852650234094,"throughput_eps":0,"last_update":"2026-03-22T08:45:17.47925312Z"} +2026/03/22 08:45:22 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:45:17.368293879Z"} +2026/03/22 08:45:22 [metric_collector] {"stage_name":"metric_collector","events_processed":9829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1965.8,"last_update":"2026-03-22T08:45:17.368537887Z"} +2026/03/22 08:45:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:45:17.375016871Z"} +2026/03/22 08:45:22 ───────────────────────────────────────────────── +2026/03/22 08:45:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:45:27 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:45:22.367945329Z"} +2026/03/22 08:45:27 [metric_collector] {"stage_name":"metric_collector","events_processed":9833,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1966.6,"last_update":"2026-03-22T08:45:22.367939066Z"} +2026/03/22 08:45:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:45:22.37440192Z"} +2026/03/22 08:45:27 [detection_layer] {"stage_name":"detection_layer","events_processed":327,"events_dropped":0,"avg_latency_ms":13.36535097656019,"throughput_eps":0,"last_update":"2026-03-22T08:45:22.479606222Z"} +2026/03/22 08:45:27 [transform_engine] {"stage_name":"transform_engine","events_processed":327,"events_dropped":0,"avg_latency_ms":346.31852650234094,"throughput_eps":0,"last_update":"2026-03-22T08:45:22.479621071Z"} +2026/03/22 08:45:27 ───────────────────────────────────────────────── +2026/03/22 08:45:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:45:32 [metric_collector] {"stage_name":"metric_collector","events_processed":9838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1967.6,"last_update":"2026-03-22T08:45:27.368575622Z"} +2026/03/22 08:45:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:45:27.375084743Z"} +2026/03/22 08:45:32 [detection_layer] {"stage_name":"detection_layer","events_processed":327,"events_dropped":0,"avg_latency_ms":13.36535097656019,"throughput_eps":0,"last_update":"2026-03-22T08:45:27.479284412Z"} +2026/03/22 08:45:32 [transform_engine] {"stage_name":"transform_engine","events_processed":328,"events_dropped":0,"avg_latency_ms":288.91932580187273,"throughput_eps":0,"last_update":"2026-03-22T08:45:27.538595793Z"} +2026/03/22 08:45:32 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:45:27.36862661Z"} +2026/03/22 08:45:32 ───────────────────────────────────────────────── +2026/03/22 08:45:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:45:37 [detection_layer] {"stage_name":"detection_layer","events_processed":328,"events_dropped":0,"avg_latency_ms":12.964113581248153,"throughput_eps":0,"last_update":"2026-03-22T08:45:32.479157836Z"} +2026/03/22 08:45:37 [transform_engine] {"stage_name":"transform_engine","events_processed":328,"events_dropped":0,"avg_latency_ms":288.91932580187273,"throughput_eps":0,"last_update":"2026-03-22T08:45:32.479142026Z"} +2026/03/22 08:45:37 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:45:32.368316162Z"} +2026/03/22 08:45:37 [metric_collector] {"stage_name":"metric_collector","events_processed":9849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1969.8,"last_update":"2026-03-22T08:45:37.369029497Z"} +2026/03/22 08:45:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3940,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:45:32.374930575Z"} +2026/03/22 08:45:37 ───────────────────────────────────────────────── +2026/03/22 08:45:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:45:42 [metric_collector] {"stage_name":"metric_collector","events_processed":9849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1969.8,"last_update":"2026-03-22T08:45:37.369029497Z"} +2026/03/22 08:45:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:45:37.376257907Z"} +2026/03/22 08:45:42 [detection_layer] {"stage_name":"detection_layer","events_processed":328,"events_dropped":0,"avg_latency_ms":12.964113581248153,"throughput_eps":0,"last_update":"2026-03-22T08:45:37.479475643Z"} +2026/03/22 08:45:42 [transform_engine] {"stage_name":"transform_engine","events_processed":328,"events_dropped":0,"avg_latency_ms":288.91932580187273,"throughput_eps":0,"last_update":"2026-03-22T08:45:37.479433022Z"} +2026/03/22 08:45:42 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:45:37.36905688Z"} +2026/03/22 08:45:42 ───────────────────────────────────────────────── +2026/03/22 08:45:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:45:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:45:42.375967361Z"} +2026/03/22 08:45:47 [detection_layer] {"stage_name":"detection_layer","events_processed":328,"events_dropped":0,"avg_latency_ms":12.964113581248153,"throughput_eps":0,"last_update":"2026-03-22T08:45:42.479151532Z"} +2026/03/22 08:45:47 [transform_engine] {"stage_name":"transform_engine","events_processed":328,"events_dropped":0,"avg_latency_ms":288.91932580187273,"throughput_eps":0,"last_update":"2026-03-22T08:45:42.479136744Z"} +2026/03/22 08:45:47 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:45:42.367953396Z"} +2026/03/22 08:45:47 [metric_collector] {"stage_name":"metric_collector","events_processed":9854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1970.8,"last_update":"2026-03-22T08:45:42.368133551Z"} +2026/03/22 08:45:47 ───────────────────────────────────────────────── +2026/03/22 08:45:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:45:52 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:45:47.367972814Z"} +2026/03/22 08:45:52 [metric_collector] {"stage_name":"metric_collector","events_processed":9859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1971.8,"last_update":"2026-03-22T08:45:47.368285614Z"} +2026/03/22 08:45:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:45:47.374525178Z"} +2026/03/22 08:45:52 [detection_layer] {"stage_name":"detection_layer","events_processed":328,"events_dropped":0,"avg_latency_ms":12.964113581248153,"throughput_eps":0,"last_update":"2026-03-22T08:45:47.479717367Z"} +2026/03/22 08:45:52 [transform_engine] {"stage_name":"transform_engine","events_processed":328,"events_dropped":0,"avg_latency_ms":288.91932580187273,"throughput_eps":0,"last_update":"2026-03-22T08:45:47.47975015Z"} +2026/03/22 08:45:52 ───────────────────────────────────────────────── +2026/03/22 08:45:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:45:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:45:52.374816939Z"} +2026/03/22 08:45:57 [detection_layer] {"stage_name":"detection_layer","events_processed":328,"events_dropped":0,"avg_latency_ms":12.964113581248153,"throughput_eps":0,"last_update":"2026-03-22T08:45:52.479046573Z"} +2026/03/22 08:45:57 [transform_engine] {"stage_name":"transform_engine","events_processed":328,"events_dropped":0,"avg_latency_ms":288.91932580187273,"throughput_eps":0,"last_update":"2026-03-22T08:45:52.479028047Z"} +2026/03/22 08:45:57 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:45:52.36868525Z"} +2026/03/22 08:45:57 [metric_collector] {"stage_name":"metric_collector","events_processed":9864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1972.8,"last_update":"2026-03-22T08:45:52.368803096Z"} +2026/03/22 08:45:57 ───────────────────────────────────────────────── +2026/03/22 08:46:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:46:02 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:45:57.36846958Z"} +2026/03/22 08:46:02 [metric_collector] {"stage_name":"metric_collector","events_processed":9869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1973.8,"last_update":"2026-03-22T08:45:57.368591143Z"} +2026/03/22 08:46:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:45:57.374642617Z"} +2026/03/22 08:46:02 [detection_layer] {"stage_name":"detection_layer","events_processed":328,"events_dropped":0,"avg_latency_ms":12.964113581248153,"throughput_eps":0,"last_update":"2026-03-22T08:45:57.479904399Z"} +2026/03/22 08:46:02 [transform_engine] {"stage_name":"transform_engine","events_processed":329,"events_dropped":0,"avg_latency_ms":244.1431892414982,"throughput_eps":0,"last_update":"2026-03-22T08:45:57.544911481Z"} +2026/03/22 08:46:02 ───────────────────────────────────────────────── +2026/03/22 08:46:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:46:07 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:46:02.368473707Z"} +2026/03/22 08:46:07 [metric_collector] {"stage_name":"metric_collector","events_processed":9874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1974.8,"last_update":"2026-03-22T08:46:02.368642932Z"} +2026/03/22 08:46:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:46:02.375712908Z"} +2026/03/22 08:46:07 [detection_layer] {"stage_name":"detection_layer","events_processed":329,"events_dropped":0,"avg_latency_ms":12.918691464998522,"throughput_eps":0,"last_update":"2026-03-22T08:46:02.478973835Z"} +2026/03/22 08:46:07 [transform_engine] {"stage_name":"transform_engine","events_processed":329,"events_dropped":0,"avg_latency_ms":244.1431892414982,"throughput_eps":0,"last_update":"2026-03-22T08:46:02.478872601Z"} +2026/03/22 08:46:07 ───────────────────────────────────────────────── +Saved state: 11 clusters, 15619 messages, reason: none +2026/03/22 08:46:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:46:12 [log_collector] {"stage_name":"log_collector","events_processed":15618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3123.6,"last_update":"2026-03-22T08:46:07.368571245Z"} +2026/03/22 08:46:12 [metric_collector] {"stage_name":"metric_collector","events_processed":9879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1975.8,"last_update":"2026-03-22T08:46:07.368811165Z"} +2026/03/22 08:46:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:46:07.374912685Z"} +2026/03/22 08:46:12 [detection_layer] {"stage_name":"detection_layer","events_processed":329,"events_dropped":0,"avg_latency_ms":12.918691464998522,"throughput_eps":0,"last_update":"2026-03-22T08:46:07.479127189Z"} +2026/03/22 08:46:12 [transform_engine] {"stage_name":"transform_engine","events_processed":329,"events_dropped":0,"avg_latency_ms":244.1431892414982,"throughput_eps":0,"last_update":"2026-03-22T08:46:07.479111648Z"} +2026/03/22 08:46:12 ───────────────────────────────────────────────── +2026/03/22 08:46:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:46:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:46:12.378668531Z"} +2026/03/22 08:46:17 [detection_layer] {"stage_name":"detection_layer","events_processed":329,"events_dropped":0,"avg_latency_ms":12.918691464998522,"throughput_eps":0,"last_update":"2026-03-22T08:46:12.479792613Z"} +2026/03/22 08:46:17 [transform_engine] {"stage_name":"transform_engine","events_processed":329,"events_dropped":0,"avg_latency_ms":244.1431892414982,"throughput_eps":0,"last_update":"2026-03-22T08:46:12.479756083Z"} +2026/03/22 08:46:17 [log_collector] {"stage_name":"log_collector","events_processed":15628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3125.6,"last_update":"2026-03-22T08:46:12.369078076Z"} +2026/03/22 08:46:17 [metric_collector] {"stage_name":"metric_collector","events_processed":9883,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1976.6,"last_update":"2026-03-22T08:46:12.368832165Z"} +2026/03/22 08:46:17 ───────────────────────────────────────────────── +2026/03/22 08:46:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:46:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3958,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:46:17.377835246Z"} +2026/03/22 08:46:22 [detection_layer] {"stage_name":"detection_layer","events_processed":329,"events_dropped":0,"avg_latency_ms":12.918691464998522,"throughput_eps":0,"last_update":"2026-03-22T08:46:17.479023881Z"} +2026/03/22 08:46:22 [transform_engine] {"stage_name":"transform_engine","events_processed":329,"events_dropped":0,"avg_latency_ms":244.1431892414982,"throughput_eps":0,"last_update":"2026-03-22T08:46:17.479061603Z"} +2026/03/22 08:46:22 [log_collector] {"stage_name":"log_collector","events_processed":15628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3125.6,"last_update":"2026-03-22T08:46:17.368689102Z"} +2026/03/22 08:46:22 [metric_collector] {"stage_name":"metric_collector","events_processed":9889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1977.8,"last_update":"2026-03-22T08:46:17.369088147Z"} +2026/03/22 08:46:22 ───────────────────────────────────────────────── +2026/03/22 08:46:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:46:27 [metric_collector] {"stage_name":"metric_collector","events_processed":9894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1978.8,"last_update":"2026-03-22T08:46:22.36897385Z"} +2026/03/22 08:46:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:46:22.377831631Z"} +2026/03/22 08:46:27 [detection_layer] {"stage_name":"detection_layer","events_processed":329,"events_dropped":0,"avg_latency_ms":12.918691464998522,"throughput_eps":0,"last_update":"2026-03-22T08:46:22.479057387Z"} +2026/03/22 08:46:27 [transform_engine] {"stage_name":"transform_engine","events_processed":329,"events_dropped":0,"avg_latency_ms":244.1431892414982,"throughput_eps":0,"last_update":"2026-03-22T08:46:22.479034643Z"} +2026/03/22 08:46:27 [log_collector] {"stage_name":"log_collector","events_processed":15629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3125.8,"last_update":"2026-03-22T08:46:22.368653917Z"} +2026/03/22 08:46:27 ───────────────────────────────────────────────── +2026/03/22 08:46:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:46:32 [log_collector] {"stage_name":"log_collector","events_processed":15629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3125.8,"last_update":"2026-03-22T08:46:27.368177996Z"} +2026/03/22 08:46:32 [metric_collector] {"stage_name":"metric_collector","events_processed":9899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1979.8,"last_update":"2026-03-22T08:46:27.368602899Z"} +2026/03/22 08:46:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3962,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:46:27.374826343Z"} +2026/03/22 08:46:32 [detection_layer] {"stage_name":"detection_layer","events_processed":329,"events_dropped":0,"avg_latency_ms":12.918691464998522,"throughput_eps":0,"last_update":"2026-03-22T08:46:27.479085872Z"} +2026/03/22 08:46:32 [transform_engine] {"stage_name":"transform_engine","events_processed":330,"events_dropped":0,"avg_latency_ms":216.19106819319856,"throughput_eps":0,"last_update":"2026-03-22T08:46:27.583442616Z"} +2026/03/22 08:46:32 ───────────────────────────────────────────────── +2026/03/22 08:46:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:46:37 [metric_collector] {"stage_name":"metric_collector","events_processed":9904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1980.8,"last_update":"2026-03-22T08:46:32.368277586Z"} +2026/03/22 08:46:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:46:32.376669405Z"} +2026/03/22 08:46:37 [detection_layer] {"stage_name":"detection_layer","events_processed":330,"events_dropped":0,"avg_latency_ms":12.98655337199882,"throughput_eps":0,"last_update":"2026-03-22T08:46:32.479900462Z"} +2026/03/22 08:46:37 [transform_engine] {"stage_name":"transform_engine","events_processed":330,"events_dropped":0,"avg_latency_ms":216.19106819319856,"throughput_eps":0,"last_update":"2026-03-22T08:46:32.478815603Z"} +2026/03/22 08:46:37 [log_collector] {"stage_name":"log_collector","events_processed":15636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3127.2,"last_update":"2026-03-22T08:46:37.36861172Z"} +2026/03/22 08:46:37 ───────────────────────────────────────────────── +2026/03/22 08:46:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:46:42 [log_collector] {"stage_name":"log_collector","events_processed":15639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3127.8,"last_update":"2026-03-22T08:46:42.368393055Z"} +2026/03/22 08:46:42 [metric_collector] {"stage_name":"metric_collector","events_processed":9909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1981.8,"last_update":"2026-03-22T08:46:37.368996787Z"} +2026/03/22 08:46:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:46:37.375290916Z"} +2026/03/22 08:46:42 [detection_layer] {"stage_name":"detection_layer","events_processed":330,"events_dropped":0,"avg_latency_ms":12.98655337199882,"throughput_eps":0,"last_update":"2026-03-22T08:46:37.479435945Z"} +2026/03/22 08:46:42 [transform_engine] {"stage_name":"transform_engine","events_processed":330,"events_dropped":0,"avg_latency_ms":216.19106819319856,"throughput_eps":0,"last_update":"2026-03-22T08:46:37.479456955Z"} +2026/03/22 08:46:42 ───────────────────────────────────────────────── +2026/03/22 08:46:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:46:47 [transform_engine] {"stage_name":"transform_engine","events_processed":330,"events_dropped":0,"avg_latency_ms":216.19106819319856,"throughput_eps":0,"last_update":"2026-03-22T08:46:42.479648066Z"} +2026/03/22 08:46:47 [log_collector] {"stage_name":"log_collector","events_processed":15639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3127.8,"last_update":"2026-03-22T08:46:42.368393055Z"} +2026/03/22 08:46:47 [metric_collector] {"stage_name":"metric_collector","events_processed":9914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1982.8,"last_update":"2026-03-22T08:46:42.368626783Z"} +2026/03/22 08:46:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:46:42.375457931Z"} +2026/03/22 08:46:47 [detection_layer] {"stage_name":"detection_layer","events_processed":330,"events_dropped":0,"avg_latency_ms":12.98655337199882,"throughput_eps":0,"last_update":"2026-03-22T08:46:42.479658886Z"} +2026/03/22 08:46:47 ───────────────────────────────────────────────── +2026/03/22 08:46:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:46:52 [detection_layer] {"stage_name":"detection_layer","events_processed":330,"events_dropped":0,"avg_latency_ms":12.98655337199882,"throughput_eps":0,"last_update":"2026-03-22T08:46:47.479053515Z"} +2026/03/22 08:46:52 [transform_engine] {"stage_name":"transform_engine","events_processed":330,"events_dropped":0,"avg_latency_ms":216.19106819319856,"throughput_eps":0,"last_update":"2026-03-22T08:46:47.479069455Z"} +2026/03/22 08:46:52 [log_collector] {"stage_name":"log_collector","events_processed":15646,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3129.2,"last_update":"2026-03-22T08:46:52.36868778Z"} +2026/03/22 08:46:52 [metric_collector] {"stage_name":"metric_collector","events_processed":9919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1983.8,"last_update":"2026-03-22T08:46:47.368297721Z"} +2026/03/22 08:46:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3970,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:46:47.374870776Z"} +2026/03/22 08:46:52 ───────────────────────────────────────────────── +2026/03/22 08:46:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:46:57 [transform_engine] {"stage_name":"transform_engine","events_processed":330,"events_dropped":0,"avg_latency_ms":216.19106819319856,"throughput_eps":0,"last_update":"2026-03-22T08:46:52.47891412Z"} +2026/03/22 08:46:57 [log_collector] {"stage_name":"log_collector","events_processed":15646,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3129.2,"last_update":"2026-03-22T08:46:52.36868778Z"} +2026/03/22 08:46:57 [metric_collector] {"stage_name":"metric_collector","events_processed":9924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1984.8,"last_update":"2026-03-22T08:46:52.368867295Z"} +2026/03/22 08:46:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:46:52.375810457Z"} +2026/03/22 08:46:57 [detection_layer] {"stage_name":"detection_layer","events_processed":330,"events_dropped":0,"avg_latency_ms":12.98655337199882,"throughput_eps":0,"last_update":"2026-03-22T08:46:52.478942985Z"} +2026/03/22 08:46:57 ───────────────────────────────────────────────── +2026/03/22 08:46:59 [ANOMALY] time=2026-03-22T08:46:59Z score=0.9218 method=SEAD details=MAD!:w=0.44,s=0.99 RRCF-fast:w=0.15,s=0.89 RRCF-mid:w=0.12,s=0.79 RRCF-slow!:w=0.10,s=0.92 COPOD!:w=0.20,s=0.87 +2026/03/22 08:47:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:47:02 [log_collector] {"stage_name":"log_collector","events_processed":15651,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3130.2,"last_update":"2026-03-22T08:46:57.368011139Z"} +2026/03/22 08:47:02 [metric_collector] {"stage_name":"metric_collector","events_processed":9929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1985.8,"last_update":"2026-03-22T08:46:57.368325792Z"} +2026/03/22 08:47:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:47:02.368238654Z"} +2026/03/22 08:47:02 [detection_layer] {"stage_name":"detection_layer","events_processed":330,"events_dropped":0,"avg_latency_ms":12.98655337199882,"throughput_eps":0,"last_update":"2026-03-22T08:46:57.479296937Z"} +2026/03/22 08:47:02 [transform_engine] {"stage_name":"transform_engine","events_processed":331,"events_dropped":0,"avg_latency_ms":527.7364645545589,"throughput_eps":0,"last_update":"2026-03-22T08:46:59.253162036Z"} +2026/03/22 08:47:02 ───────────────────────────────────────────────── +2026/03/22 08:47:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:47:07 [log_collector] {"stage_name":"log_collector","events_processed":15672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3134.4,"last_update":"2026-03-22T08:47:02.36870143Z"} +2026/03/22 08:47:07 [metric_collector] {"stage_name":"metric_collector","events_processed":9934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1986.8,"last_update":"2026-03-22T08:47:02.369116846Z"} +2026/03/22 08:47:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:47:02.368238654Z"} +2026/03/22 08:47:07 [detection_layer] {"stage_name":"detection_layer","events_processed":331,"events_dropped":0,"avg_latency_ms":12.596864497599057,"throughput_eps":0,"last_update":"2026-03-22T08:47:02.479705498Z"} +2026/03/22 08:47:07 [transform_engine] {"stage_name":"transform_engine","events_processed":331,"events_dropped":0,"avg_latency_ms":527.7364645545589,"throughput_eps":0,"last_update":"2026-03-22T08:47:02.479734844Z"} +2026/03/22 08:47:07 ───────────────────────────────────────────────── +2026/03/22 08:47:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:47:12 [log_collector] {"stage_name":"log_collector","events_processed":15673,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3134.6,"last_update":"2026-03-22T08:47:07.367978457Z"} +2026/03/22 08:47:12 [metric_collector] {"stage_name":"metric_collector","events_processed":9939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1987.8,"last_update":"2026-03-22T08:47:07.368300795Z"} +2026/03/22 08:47:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:47:07.377328612Z"} +2026/03/22 08:47:12 [detection_layer] {"stage_name":"detection_layer","events_processed":331,"events_dropped":0,"avg_latency_ms":12.596864497599057,"throughput_eps":0,"last_update":"2026-03-22T08:47:07.479550875Z"} +2026/03/22 08:47:12 [transform_engine] {"stage_name":"transform_engine","events_processed":331,"events_dropped":0,"avg_latency_ms":527.7364645545589,"throughput_eps":0,"last_update":"2026-03-22T08:47:07.479589468Z"} +2026/03/22 08:47:12 ───────────────────────────────────────────────── +2026/03/22 08:47:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:47:17 [metric_collector] {"stage_name":"metric_collector","events_processed":9944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1988.8,"last_update":"2026-03-22T08:47:12.368861275Z"} +2026/03/22 08:47:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:47:12.377608645Z"} +2026/03/22 08:47:17 [detection_layer] {"stage_name":"detection_layer","events_processed":331,"events_dropped":0,"avg_latency_ms":12.596864497599057,"throughput_eps":0,"last_update":"2026-03-22T08:47:12.479916761Z"} +2026/03/22 08:47:17 [transform_engine] {"stage_name":"transform_engine","events_processed":331,"events_dropped":0,"avg_latency_ms":527.7364645545589,"throughput_eps":0,"last_update":"2026-03-22T08:47:12.479810407Z"} +2026/03/22 08:47:17 [log_collector] {"stage_name":"log_collector","events_processed":15673,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3134.6,"last_update":"2026-03-22T08:47:12.368768597Z"} +2026/03/22 08:47:17 ───────────────────────────────────────────────── +2026/03/22 08:47:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:47:22 [log_collector] {"stage_name":"log_collector","events_processed":15673,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3134.6,"last_update":"2026-03-22T08:47:17.36816368Z"} +2026/03/22 08:47:22 [metric_collector] {"stage_name":"metric_collector","events_processed":9949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1989.8,"last_update":"2026-03-22T08:47:17.368397989Z"} +2026/03/22 08:47:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:47:17.368053659Z"} +2026/03/22 08:47:22 [detection_layer] {"stage_name":"detection_layer","events_processed":331,"events_dropped":0,"avg_latency_ms":12.596864497599057,"throughput_eps":0,"last_update":"2026-03-22T08:47:17.479759841Z"} +2026/03/22 08:47:22 [transform_engine] {"stage_name":"transform_engine","events_processed":331,"events_dropped":0,"avg_latency_ms":527.7364645545589,"throughput_eps":0,"last_update":"2026-03-22T08:47:17.479644751Z"} +2026/03/22 08:47:22 ───────────────────────────────────────────────── +2026/03/22 08:47:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:47:27 [transform_engine] {"stage_name":"transform_engine","events_processed":331,"events_dropped":0,"avg_latency_ms":527.7364645545589,"throughput_eps":0,"last_update":"2026-03-22T08:47:22.47964155Z"} +2026/03/22 08:47:27 [log_collector] {"stage_name":"log_collector","events_processed":15673,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3134.6,"last_update":"2026-03-22T08:47:27.368429013Z"} +2026/03/22 08:47:27 [metric_collector] {"stage_name":"metric_collector","events_processed":9954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1990.8,"last_update":"2026-03-22T08:47:22.368801457Z"} +2026/03/22 08:47:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:47:22.378472907Z"} +2026/03/22 08:47:27 [detection_layer] {"stage_name":"detection_layer","events_processed":331,"events_dropped":0,"avg_latency_ms":12.596864497599057,"throughput_eps":0,"last_update":"2026-03-22T08:47:22.479681596Z"} +2026/03/22 08:47:27 ───────────────────────────────────────────────── +2026/03/22 08:47:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:47:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:47:27.377447573Z"} +2026/03/22 08:47:32 [detection_layer] {"stage_name":"detection_layer","events_processed":331,"events_dropped":0,"avg_latency_ms":12.596864497599057,"throughput_eps":0,"last_update":"2026-03-22T08:47:27.479745629Z"} +2026/03/22 08:47:32 [transform_engine] {"stage_name":"transform_engine","events_processed":332,"events_dropped":0,"avg_latency_ms":444.2983292436471,"throughput_eps":0,"last_update":"2026-03-22T08:47:27.590264125Z"} +2026/03/22 08:47:32 [log_collector] {"stage_name":"log_collector","events_processed":15673,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3134.6,"last_update":"2026-03-22T08:47:27.368429013Z"} +2026/03/22 08:47:32 [metric_collector] {"stage_name":"metric_collector","events_processed":9959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1991.8,"last_update":"2026-03-22T08:47:27.368760629Z"} +2026/03/22 08:47:32 ───────────────────────────────────────────────── +2026/03/22 08:47:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:47:37 [log_collector] {"stage_name":"log_collector","events_processed":15673,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3134.6,"last_update":"2026-03-22T08:47:37.368516757Z"} +2026/03/22 08:47:37 [metric_collector] {"stage_name":"metric_collector","events_processed":9964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1992.8,"last_update":"2026-03-22T08:47:32.368896654Z"} +2026/03/22 08:47:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:47:32.377446506Z"} +2026/03/22 08:47:37 [detection_layer] {"stage_name":"detection_layer","events_processed":332,"events_dropped":0,"avg_latency_ms":13.391530998079247,"throughput_eps":0,"last_update":"2026-03-22T08:47:32.479670068Z"} +2026/03/22 08:47:37 [transform_engine] {"stage_name":"transform_engine","events_processed":332,"events_dropped":0,"avg_latency_ms":444.2983292436471,"throughput_eps":0,"last_update":"2026-03-22T08:47:32.479773467Z"} +2026/03/22 08:47:37 ───────────────────────────────────────────────── +2026/03/22 08:47:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:47:42 [log_collector] {"stage_name":"log_collector","events_processed":15673,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3134.6,"last_update":"2026-03-22T08:47:42.368565004Z"} +2026/03/22 08:47:42 [metric_collector] {"stage_name":"metric_collector","events_processed":9969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1993.8,"last_update":"2026-03-22T08:47:37.369132306Z"} +2026/03/22 08:47:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3990,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:47:37.37757418Z"} +2026/03/22 08:47:42 [detection_layer] {"stage_name":"detection_layer","events_processed":332,"events_dropped":0,"avg_latency_ms":13.391530998079247,"throughput_eps":0,"last_update":"2026-03-22T08:47:37.479977588Z"} +2026/03/22 08:47:42 [transform_engine] {"stage_name":"transform_engine","events_processed":332,"events_dropped":0,"avg_latency_ms":444.2983292436471,"throughput_eps":0,"last_update":"2026-03-22T08:47:37.479942681Z"} +2026/03/22 08:47:42 ───────────────────────────────────────────────── +2026/03/22 08:47:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:47:47 [metric_collector] {"stage_name":"metric_collector","events_processed":9974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1994.8,"last_update":"2026-03-22T08:47:42.369025457Z"} +2026/03/22 08:47:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3992,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:47:42.376896257Z"} +2026/03/22 08:47:47 [detection_layer] {"stage_name":"detection_layer","events_processed":332,"events_dropped":0,"avg_latency_ms":13.391530998079247,"throughput_eps":0,"last_update":"2026-03-22T08:47:42.47905712Z"} +2026/03/22 08:47:47 [transform_engine] {"stage_name":"transform_engine","events_processed":332,"events_dropped":0,"avg_latency_ms":444.2983292436471,"throughput_eps":0,"last_update":"2026-03-22T08:47:42.479184964Z"} +2026/03/22 08:47:47 [log_collector] {"stage_name":"log_collector","events_processed":15673,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3134.6,"last_update":"2026-03-22T08:47:42.368565004Z"} +2026/03/22 08:47:47 ───────────────────────────────────────────────── +2026/03/22 08:47:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:47:52 [log_collector] {"stage_name":"log_collector","events_processed":15673,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3134.6,"last_update":"2026-03-22T08:47:52.368533077Z"} +2026/03/22 08:47:52 [metric_collector] {"stage_name":"metric_collector","events_processed":9979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1995.8,"last_update":"2026-03-22T08:47:47.368848737Z"} +2026/03/22 08:47:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:47:47.37613113Z"} +2026/03/22 08:47:52 [detection_layer] {"stage_name":"detection_layer","events_processed":332,"events_dropped":0,"avg_latency_ms":13.391530998079247,"throughput_eps":0,"last_update":"2026-03-22T08:47:47.479441294Z"} +2026/03/22 08:47:52 [transform_engine] {"stage_name":"transform_engine","events_processed":332,"events_dropped":0,"avg_latency_ms":444.2983292436471,"throughput_eps":0,"last_update":"2026-03-22T08:47:47.479381599Z"} +2026/03/22 08:47:52 ───────────────────────────────────────────────── +2026/03/22 08:47:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:47:57 [log_collector] {"stage_name":"log_collector","events_processed":15673,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3134.6,"last_update":"2026-03-22T08:47:57.368390505Z"} +2026/03/22 08:47:57 [metric_collector] {"stage_name":"metric_collector","events_processed":9984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1996.8,"last_update":"2026-03-22T08:47:52.368899269Z"} +2026/03/22 08:47:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3996,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:47:52.377609067Z"} +2026/03/22 08:47:57 [detection_layer] {"stage_name":"detection_layer","events_processed":332,"events_dropped":0,"avg_latency_ms":13.391530998079247,"throughput_eps":0,"last_update":"2026-03-22T08:47:52.479955403Z"} +2026/03/22 08:47:57 [transform_engine] {"stage_name":"transform_engine","events_processed":332,"events_dropped":0,"avg_latency_ms":444.2983292436471,"throughput_eps":0,"last_update":"2026-03-22T08:47:52.479912561Z"} +2026/03/22 08:47:57 ───────────────────────────────────────────────── +2026/03/22 08:48:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:48:02 [log_collector] {"stage_name":"log_collector","events_processed":15673,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3134.6,"last_update":"2026-03-22T08:48:02.368535329Z"} +2026/03/22 08:48:02 [metric_collector] {"stage_name":"metric_collector","events_processed":9989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1997.8,"last_update":"2026-03-22T08:47:57.368784059Z"} +2026/03/22 08:48:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":3998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:47:57.377420837Z"} +2026/03/22 08:48:02 [detection_layer] {"stage_name":"detection_layer","events_processed":332,"events_dropped":0,"avg_latency_ms":13.391530998079247,"throughput_eps":0,"last_update":"2026-03-22T08:47:57.479798102Z"} +2026/03/22 08:48:02 [transform_engine] {"stage_name":"transform_engine","events_processed":333,"events_dropped":0,"avg_latency_ms":521.1388531949177,"throughput_eps":0,"last_update":"2026-03-22T08:47:58.308406636Z"} +2026/03/22 08:48:02 ───────────────────────────────────────────────── +Saved state: 11 clusters, 15674 messages, reason: none +2026/03/22 08:48:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:48:07 [detection_layer] {"stage_name":"detection_layer","events_processed":333,"events_dropped":0,"avg_latency_ms":14.425457198463398,"throughput_eps":0,"last_update":"2026-03-22T08:48:02.479753113Z"} +2026/03/22 08:48:07 [transform_engine] {"stage_name":"transform_engine","events_processed":333,"events_dropped":0,"avg_latency_ms":521.1388531949177,"throughput_eps":0,"last_update":"2026-03-22T08:48:02.47983507Z"} +2026/03/22 08:48:07 [log_collector] {"stage_name":"log_collector","events_processed":15678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3135.6,"last_update":"2026-03-22T08:48:07.368413909Z"} +2026/03/22 08:48:07 [metric_collector] {"stage_name":"metric_collector","events_processed":9994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1998.8,"last_update":"2026-03-22T08:48:02.369220182Z"} +2026/03/22 08:48:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:48:02.378547371Z"} +2026/03/22 08:48:07 ───────────────────────────────────────────────── +2026/03/22 08:48:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:48:12 [transform_engine] {"stage_name":"transform_engine","events_processed":333,"events_dropped":0,"avg_latency_ms":521.1388531949177,"throughput_eps":0,"last_update":"2026-03-22T08:48:07.479106395Z"} +2026/03/22 08:48:12 [log_collector] {"stage_name":"log_collector","events_processed":15678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3135.6,"last_update":"2026-03-22T08:48:07.368413909Z"} +2026/03/22 08:48:12 [metric_collector] {"stage_name":"metric_collector","events_processed":9999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1999.8,"last_update":"2026-03-22T08:48:07.368648899Z"} +2026/03/22 08:48:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:48:07.375914609Z"} +2026/03/22 08:48:12 [detection_layer] {"stage_name":"detection_layer","events_processed":333,"events_dropped":0,"avg_latency_ms":14.425457198463398,"throughput_eps":0,"last_update":"2026-03-22T08:48:07.479123508Z"} +2026/03/22 08:48:12 ───────────────────────────────────────────────── +2026/03/22 08:48:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:48:17 [log_collector] {"stage_name":"log_collector","events_processed":15678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3135.6,"last_update":"2026-03-22T08:48:17.369192Z"} +2026/03/22 08:48:17 [metric_collector] {"stage_name":"metric_collector","events_processed":10004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2000.8,"last_update":"2026-03-22T08:48:12.368247327Z"} +2026/03/22 08:48:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:48:12.374526086Z"} +2026/03/22 08:48:17 [detection_layer] {"stage_name":"detection_layer","events_processed":333,"events_dropped":0,"avg_latency_ms":14.425457198463398,"throughput_eps":0,"last_update":"2026-03-22T08:48:12.479537158Z"} +2026/03/22 08:48:17 [transform_engine] {"stage_name":"transform_engine","events_processed":333,"events_dropped":0,"avg_latency_ms":521.1388531949177,"throughput_eps":0,"last_update":"2026-03-22T08:48:12.479568097Z"} +2026/03/22 08:48:17 ───────────────────────────────────────────────── +2026/03/22 08:48:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:48:22 [log_collector] {"stage_name":"log_collector","events_processed":15678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3135.6,"last_update":"2026-03-22T08:48:17.369192Z"} +2026/03/22 08:48:22 [metric_collector] {"stage_name":"metric_collector","events_processed":10009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2001.8,"last_update":"2026-03-22T08:48:17.36940568Z"} +2026/03/22 08:48:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4006,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:48:17.375871228Z"} +2026/03/22 08:48:22 [detection_layer] {"stage_name":"detection_layer","events_processed":333,"events_dropped":0,"avg_latency_ms":14.425457198463398,"throughput_eps":0,"last_update":"2026-03-22T08:48:17.479069044Z"} +2026/03/22 08:48:22 [transform_engine] {"stage_name":"transform_engine","events_processed":333,"events_dropped":0,"avg_latency_ms":521.1388531949177,"throughput_eps":0,"last_update":"2026-03-22T08:48:17.479050579Z"} +2026/03/22 08:48:22 ───────────────────────────────────────────────── +2026/03/22 08:48:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:48:27 [log_collector] {"stage_name":"log_collector","events_processed":15678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3135.6,"last_update":"2026-03-22T08:48:22.368585347Z"} +2026/03/22 08:48:27 [metric_collector] {"stage_name":"metric_collector","events_processed":10014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2002.8,"last_update":"2026-03-22T08:48:22.368945287Z"} +2026/03/22 08:48:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4008,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:48:22.375105338Z"} +2026/03/22 08:48:27 [detection_layer] {"stage_name":"detection_layer","events_processed":333,"events_dropped":0,"avg_latency_ms":14.425457198463398,"throughput_eps":0,"last_update":"2026-03-22T08:48:22.479346915Z"} +2026/03/22 08:48:27 [transform_engine] {"stage_name":"transform_engine","events_processed":333,"events_dropped":0,"avg_latency_ms":521.1388531949177,"throughput_eps":0,"last_update":"2026-03-22T08:48:22.479308201Z"} +2026/03/22 08:48:27 ───────────────────────────────────────────────── +2026/03/22 08:48:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:48:32 [transform_engine] {"stage_name":"transform_engine","events_processed":334,"events_dropped":0,"avg_latency_ms":451.4133073559342,"throughput_eps":0,"last_update":"2026-03-22T08:48:27.652365006Z"} +2026/03/22 08:48:32 [log_collector] {"stage_name":"log_collector","events_processed":15678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3135.6,"last_update":"2026-03-22T08:48:32.368679826Z"} +2026/03/22 08:48:32 [metric_collector] {"stage_name":"metric_collector","events_processed":10019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2003.8,"last_update":"2026-03-22T08:48:27.369063278Z"} +2026/03/22 08:48:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:48:27.375629098Z"} +2026/03/22 08:48:32 [detection_layer] {"stage_name":"detection_layer","events_processed":333,"events_dropped":0,"avg_latency_ms":14.425457198463398,"throughput_eps":0,"last_update":"2026-03-22T08:48:27.479831639Z"} +2026/03/22 08:48:32 ───────────────────────────────────────────────── +2026/03/22 08:48:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:48:37 [log_collector] {"stage_name":"log_collector","events_processed":15678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3135.6,"last_update":"2026-03-22T08:48:37.368384229Z"} +2026/03/22 08:48:37 [metric_collector] {"stage_name":"metric_collector","events_processed":10024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2004.8,"last_update":"2026-03-22T08:48:32.368977997Z"} +2026/03/22 08:48:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4012,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:48:32.375549007Z"} +2026/03/22 08:48:37 [detection_layer] {"stage_name":"detection_layer","events_processed":334,"events_dropped":0,"avg_latency_ms":14.320904958770718,"throughput_eps":0,"last_update":"2026-03-22T08:48:32.479757219Z"} +2026/03/22 08:48:37 [transform_engine] {"stage_name":"transform_engine","events_processed":334,"events_dropped":0,"avg_latency_ms":451.4133073559342,"throughput_eps":0,"last_update":"2026-03-22T08:48:32.479769222Z"} +2026/03/22 08:48:37 ───────────────────────────────────────────────── +2026/03/22 08:48:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:48:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:48:37.374868383Z"} +2026/03/22 08:48:42 [detection_layer] {"stage_name":"detection_layer","events_processed":334,"events_dropped":0,"avg_latency_ms":14.320904958770718,"throughput_eps":0,"last_update":"2026-03-22T08:48:37.479051596Z"} +2026/03/22 08:48:42 [transform_engine] {"stage_name":"transform_engine","events_processed":334,"events_dropped":0,"avg_latency_ms":451.4133073559342,"throughput_eps":0,"last_update":"2026-03-22T08:48:37.479024504Z"} +2026/03/22 08:48:42 [log_collector] {"stage_name":"log_collector","events_processed":15678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3135.6,"last_update":"2026-03-22T08:48:37.368384229Z"} +2026/03/22 08:48:42 [metric_collector] {"stage_name":"metric_collector","events_processed":10034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2006.8,"last_update":"2026-03-22T08:48:42.368813778Z"} +2026/03/22 08:48:42 ───────────────────────────────────────────────── +2026/03/22 08:48:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:48:47 [log_collector] {"stage_name":"log_collector","events_processed":15678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3135.6,"last_update":"2026-03-22T08:48:42.368829298Z"} +2026/03/22 08:48:47 [metric_collector] {"stage_name":"metric_collector","events_processed":10034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2006.8,"last_update":"2026-03-22T08:48:42.368813778Z"} +2026/03/22 08:48:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:48:42.375124539Z"} +2026/03/22 08:48:47 [detection_layer] {"stage_name":"detection_layer","events_processed":334,"events_dropped":0,"avg_latency_ms":14.320904958770718,"throughput_eps":0,"last_update":"2026-03-22T08:48:42.479328101Z"} +2026/03/22 08:48:47 [transform_engine] {"stage_name":"transform_engine","events_processed":334,"events_dropped":0,"avg_latency_ms":451.4133073559342,"throughput_eps":0,"last_update":"2026-03-22T08:48:42.479357268Z"} +2026/03/22 08:48:47 ───────────────────────────────────────────────── +2026/03/22 08:48:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:48:52 [transform_engine] {"stage_name":"transform_engine","events_processed":334,"events_dropped":0,"avg_latency_ms":451.4133073559342,"throughput_eps":0,"last_update":"2026-03-22T08:48:47.479765543Z"} +2026/03/22 08:48:52 [log_collector] {"stage_name":"log_collector","events_processed":15681,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3136.2,"last_update":"2026-03-22T08:48:47.367990964Z"} +2026/03/22 08:48:52 [metric_collector] {"stage_name":"metric_collector","events_processed":10039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2007.8,"last_update":"2026-03-22T08:48:47.368393356Z"} +2026/03/22 08:48:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4018,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:48:47.375616674Z"} +2026/03/22 08:48:52 [detection_layer] {"stage_name":"detection_layer","events_processed":334,"events_dropped":0,"avg_latency_ms":14.320904958770718,"throughput_eps":0,"last_update":"2026-03-22T08:48:47.47981098Z"} +2026/03/22 08:48:52 ───────────────────────────────────────────────── +2026/03/22 08:48:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:48:57 [transform_engine] {"stage_name":"transform_engine","events_processed":334,"events_dropped":0,"avg_latency_ms":451.4133073559342,"throughput_eps":0,"last_update":"2026-03-22T08:48:52.479215085Z"} +2026/03/22 08:48:57 [log_collector] {"stage_name":"log_collector","events_processed":15689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3137.8,"last_update":"2026-03-22T08:48:52.368038934Z"} +2026/03/22 08:48:57 [metric_collector] {"stage_name":"metric_collector","events_processed":10044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2008.8,"last_update":"2026-03-22T08:48:52.368821222Z"} +2026/03/22 08:48:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4020,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:48:52.377016945Z"} +2026/03/22 08:48:57 [detection_layer] {"stage_name":"detection_layer","events_processed":334,"events_dropped":0,"avg_latency_ms":14.320904958770718,"throughput_eps":0,"last_update":"2026-03-22T08:48:52.479321118Z"} +2026/03/22 08:48:57 ───────────────────────────────────────────────── +Saved state: 12 clusters, 15810 messages, reason: cluster_created +Saved state: 13 clusters, 15811 messages, reason: cluster_created +2026/03/22 08:49:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:49:02 [transform_engine] {"stage_name":"transform_engine","events_processed":335,"events_dropped":0,"avg_latency_ms":382.48288808474734,"throughput_eps":0,"last_update":"2026-03-22T08:48:57.585877893Z"} +2026/03/22 08:49:02 [log_collector] {"stage_name":"log_collector","events_processed":15790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3158,"last_update":"2026-03-22T08:48:57.368762476Z"} +2026/03/22 08:49:02 [metric_collector] {"stage_name":"metric_collector","events_processed":10049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2009.8,"last_update":"2026-03-22T08:48:57.369015952Z"} +2026/03/22 08:49:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4022,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:48:57.378681961Z"} +2026/03/22 08:49:02 [detection_layer] {"stage_name":"detection_layer","events_processed":334,"events_dropped":0,"avg_latency_ms":14.320904958770718,"throughput_eps":0,"last_update":"2026-03-22T08:48:57.479099278Z"} +2026/03/22 08:49:02 ───────────────────────────────────────────────── +2026/03/22 08:49:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:49:07 [log_collector] {"stage_name":"log_collector","events_processed":15974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3194.8,"last_update":"2026-03-22T08:49:02.368592705Z"} +2026/03/22 08:49:07 [metric_collector] {"stage_name":"metric_collector","events_processed":10054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2010.8,"last_update":"2026-03-22T08:49:02.368763512Z"} +2026/03/22 08:49:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:49:02.37819475Z"} +2026/03/22 08:49:07 [detection_layer] {"stage_name":"detection_layer","events_processed":335,"events_dropped":0,"avg_latency_ms":14.755608167016575,"throughput_eps":0,"last_update":"2026-03-22T08:49:02.479206457Z"} +2026/03/22 08:49:07 [transform_engine] {"stage_name":"transform_engine","events_processed":335,"events_dropped":0,"avg_latency_ms":382.48288808474734,"throughput_eps":0,"last_update":"2026-03-22T08:49:02.479183082Z"} +2026/03/22 08:49:07 ───────────────────────────────────────────────── +2026/03/22 08:49:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:49:12 [log_collector] {"stage_name":"log_collector","events_processed":16040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208,"last_update":"2026-03-22T08:49:07.368295495Z"} +2026/03/22 08:49:12 [metric_collector] {"stage_name":"metric_collector","events_processed":10059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2011.8,"last_update":"2026-03-22T08:49:07.36860541Z"} +2026/03/22 08:49:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:49:07.377471966Z"} +2026/03/22 08:49:12 [detection_layer] {"stage_name":"detection_layer","events_processed":335,"events_dropped":0,"avg_latency_ms":14.755608167016575,"throughput_eps":0,"last_update":"2026-03-22T08:49:07.479947758Z"} +2026/03/22 08:49:12 [transform_engine] {"stage_name":"transform_engine","events_processed":335,"events_dropped":0,"avg_latency_ms":382.48288808474734,"throughput_eps":0,"last_update":"2026-03-22T08:49:07.478817182Z"} +2026/03/22 08:49:12 ───────────────────────────────────────────────── +2026/03/22 08:49:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:49:17 [metric_collector] {"stage_name":"metric_collector","events_processed":10064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2012.8,"last_update":"2026-03-22T08:49:12.36862759Z"} +2026/03/22 08:49:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:49:12.377943627Z"} +2026/03/22 08:49:17 [detection_layer] {"stage_name":"detection_layer","events_processed":335,"events_dropped":0,"avg_latency_ms":14.755608167016575,"throughput_eps":0,"last_update":"2026-03-22T08:49:12.479252823Z"} +2026/03/22 08:49:17 [transform_engine] {"stage_name":"transform_engine","events_processed":335,"events_dropped":0,"avg_latency_ms":382.48288808474734,"throughput_eps":0,"last_update":"2026-03-22T08:49:12.479307397Z"} +2026/03/22 08:49:17 [log_collector] {"stage_name":"log_collector","events_processed":16040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208,"last_update":"2026-03-22T08:49:12.368331172Z"} +2026/03/22 08:49:17 ───────────────────────────────────────────────── +2026/03/22 08:49:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:49:22 [log_collector] {"stage_name":"log_collector","events_processed":16040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208,"last_update":"2026-03-22T08:49:17.368593259Z"} +2026/03/22 08:49:22 [metric_collector] {"stage_name":"metric_collector","events_processed":10069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2013.8,"last_update":"2026-03-22T08:49:17.369178189Z"} +2026/03/22 08:49:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:49:17.376874433Z"} +2026/03/22 08:49:22 [detection_layer] {"stage_name":"detection_layer","events_processed":335,"events_dropped":0,"avg_latency_ms":14.755608167016575,"throughput_eps":0,"last_update":"2026-03-22T08:49:17.479271654Z"} +2026/03/22 08:49:22 [transform_engine] {"stage_name":"transform_engine","events_processed":335,"events_dropped":0,"avg_latency_ms":382.48288808474734,"throughput_eps":0,"last_update":"2026-03-22T08:49:17.479242538Z"} +2026/03/22 08:49:22 ───────────────────────────────────────────────── +2026/03/22 08:49:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:49:27 [detection_layer] {"stage_name":"detection_layer","events_processed":335,"events_dropped":0,"avg_latency_ms":14.755608167016575,"throughput_eps":0,"last_update":"2026-03-22T08:49:22.479279111Z"} +2026/03/22 08:49:27 [transform_engine] {"stage_name":"transform_engine","events_processed":335,"events_dropped":0,"avg_latency_ms":382.48288808474734,"throughput_eps":0,"last_update":"2026-03-22T08:49:22.479306924Z"} +2026/03/22 08:49:27 [log_collector] {"stage_name":"log_collector","events_processed":16040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208,"last_update":"2026-03-22T08:49:22.36821164Z"} +2026/03/22 08:49:27 [metric_collector] {"stage_name":"metric_collector","events_processed":10074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2014.8,"last_update":"2026-03-22T08:49:22.368723781Z"} +2026/03/22 08:49:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:49:22.378048736Z"} +2026/03/22 08:49:27 ───────────────────────────────────────────────── +2026/03/22 08:49:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:49:32 [log_collector] {"stage_name":"log_collector","events_processed":16040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208,"last_update":"2026-03-22T08:49:27.368416423Z"} +2026/03/22 08:49:32 [metric_collector] {"stage_name":"metric_collector","events_processed":10079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2015.8,"last_update":"2026-03-22T08:49:27.369285869Z"} +2026/03/22 08:49:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:49:27.378090477Z"} +2026/03/22 08:49:32 [detection_layer] {"stage_name":"detection_layer","events_processed":335,"events_dropped":0,"avg_latency_ms":14.755608167016575,"throughput_eps":0,"last_update":"2026-03-22T08:49:27.479406015Z"} +2026/03/22 08:49:32 [transform_engine] {"stage_name":"transform_engine","events_processed":336,"events_dropped":0,"avg_latency_ms":328.6976502677979,"throughput_eps":0,"last_update":"2026-03-22T08:49:27.592848424Z"} +2026/03/22 08:49:32 ───────────────────────────────────────────────── +2026/03/22 08:49:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:49:37 [log_collector] {"stage_name":"log_collector","events_processed":16040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208,"last_update":"2026-03-22T08:49:32.368013239Z"} +2026/03/22 08:49:37 [metric_collector] {"stage_name":"metric_collector","events_processed":10084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2016.8,"last_update":"2026-03-22T08:49:32.368331649Z"} +2026/03/22 08:49:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4036,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:49:32.377848432Z"} +2026/03/22 08:49:37 [detection_layer] {"stage_name":"detection_layer","events_processed":336,"events_dropped":0,"avg_latency_ms":15.450277333613261,"throughput_eps":0,"last_update":"2026-03-22T08:49:32.479331661Z"} +2026/03/22 08:49:37 [transform_engine] {"stage_name":"transform_engine","events_processed":336,"events_dropped":0,"avg_latency_ms":328.6976502677979,"throughput_eps":0,"last_update":"2026-03-22T08:49:32.479215618Z"} +2026/03/22 08:49:37 ───────────────────────────────────────────────── +2026/03/22 08:49:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:49:42 [detection_layer] {"stage_name":"detection_layer","events_processed":336,"events_dropped":0,"avg_latency_ms":15.450277333613261,"throughput_eps":0,"last_update":"2026-03-22T08:49:37.479837258Z"} +2026/03/22 08:49:42 [transform_engine] {"stage_name":"transform_engine","events_processed":336,"events_dropped":0,"avg_latency_ms":328.6976502677979,"throughput_eps":0,"last_update":"2026-03-22T08:49:37.479815106Z"} +2026/03/22 08:49:42 [log_collector] {"stage_name":"log_collector","events_processed":16040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208,"last_update":"2026-03-22T08:49:37.368951806Z"} +2026/03/22 08:49:42 [metric_collector] {"stage_name":"metric_collector","events_processed":10089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2017.8,"last_update":"2026-03-22T08:49:37.36923045Z"} +2026/03/22 08:49:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:49:37.378446346Z"} +2026/03/22 08:49:42 ───────────────────────────────────────────────── +2026/03/22 08:49:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:49:47 [log_collector] {"stage_name":"log_collector","events_processed":16040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208,"last_update":"2026-03-22T08:49:42.368260387Z"} +2026/03/22 08:49:47 [metric_collector] {"stage_name":"metric_collector","events_processed":10094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2018.8,"last_update":"2026-03-22T08:49:42.368854064Z"} +2026/03/22 08:49:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:49:42.37915032Z"} +2026/03/22 08:49:47 [detection_layer] {"stage_name":"detection_layer","events_processed":336,"events_dropped":0,"avg_latency_ms":15.450277333613261,"throughput_eps":0,"last_update":"2026-03-22T08:49:42.47946041Z"} +2026/03/22 08:49:47 [transform_engine] {"stage_name":"transform_engine","events_processed":336,"events_dropped":0,"avg_latency_ms":328.6976502677979,"throughput_eps":0,"last_update":"2026-03-22T08:49:42.479373905Z"} +2026/03/22 08:49:47 ───────────────────────────────────────────────── +2026/03/22 08:49:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:49:52 [detection_layer] {"stage_name":"detection_layer","events_processed":336,"events_dropped":0,"avg_latency_ms":15.450277333613261,"throughput_eps":0,"last_update":"2026-03-22T08:49:47.479142494Z"} +2026/03/22 08:49:52 [transform_engine] {"stage_name":"transform_engine","events_processed":336,"events_dropped":0,"avg_latency_ms":328.6976502677979,"throughput_eps":0,"last_update":"2026-03-22T08:49:47.479066419Z"} +2026/03/22 08:49:52 [log_collector] {"stage_name":"log_collector","events_processed":16040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208,"last_update":"2026-03-22T08:49:47.367983811Z"} +2026/03/22 08:49:52 [metric_collector] {"stage_name":"metric_collector","events_processed":10099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2019.8,"last_update":"2026-03-22T08:49:47.368314093Z"} +2026/03/22 08:49:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:49:47.376819518Z"} +2026/03/22 08:49:52 ───────────────────────────────────────────────── +2026/03/22 08:49:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:49:57 [log_collector] {"stage_name":"log_collector","events_processed":16040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208,"last_update":"2026-03-22T08:49:52.36801386Z"} +2026/03/22 08:49:57 [metric_collector] {"stage_name":"metric_collector","events_processed":10104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2020.8,"last_update":"2026-03-22T08:49:52.368335656Z"} +2026/03/22 08:49:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:49:52.377781002Z"} +2026/03/22 08:49:57 [detection_layer] {"stage_name":"detection_layer","events_processed":336,"events_dropped":0,"avg_latency_ms":15.450277333613261,"throughput_eps":0,"last_update":"2026-03-22T08:49:52.478995013Z"} +2026/03/22 08:49:57 [transform_engine] {"stage_name":"transform_engine","events_processed":336,"events_dropped":0,"avg_latency_ms":328.6976502677979,"throughput_eps":0,"last_update":"2026-03-22T08:49:52.478965737Z"} +2026/03/22 08:49:57 ───────────────────────────────────────────────── +2026/03/22 08:50:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:50:02 [log_collector] {"stage_name":"log_collector","events_processed":16040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208,"last_update":"2026-03-22T08:49:57.36805616Z"} +2026/03/22 08:50:02 [metric_collector] {"stage_name":"metric_collector","events_processed":10109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2021.8,"last_update":"2026-03-22T08:49:57.368324474Z"} +2026/03/22 08:50:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:49:57.377912262Z"} +2026/03/22 08:50:02 [detection_layer] {"stage_name":"detection_layer","events_processed":336,"events_dropped":0,"avg_latency_ms":15.450277333613261,"throughput_eps":0,"last_update":"2026-03-22T08:49:57.47937537Z"} +2026/03/22 08:50:02 [transform_engine] {"stage_name":"transform_engine","events_processed":337,"events_dropped":0,"avg_latency_ms":278.61589021423833,"throughput_eps":0,"last_update":"2026-03-22T08:49:57.557612091Z"} +2026/03/22 08:50:02 ───────────────────────────────────────────────── +2026/03/22 08:50:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:50:07 [metric_collector] {"stage_name":"metric_collector","events_processed":10113,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2022.6,"last_update":"2026-03-22T08:50:02.368282763Z"} +2026/03/22 08:50:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4048,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:50:02.384864962Z"} +2026/03/22 08:50:07 [detection_layer] {"stage_name":"detection_layer","events_processed":337,"events_dropped":0,"avg_latency_ms":16.25745646689061,"throughput_eps":0,"last_update":"2026-03-22T08:50:02.479074624Z"} +2026/03/22 08:50:07 [transform_engine] {"stage_name":"transform_engine","events_processed":337,"events_dropped":0,"avg_latency_ms":278.61589021423833,"throughput_eps":0,"last_update":"2026-03-22T08:50:02.479039246Z"} +2026/03/22 08:50:07 [log_collector] {"stage_name":"log_collector","events_processed":16040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208,"last_update":"2026-03-22T08:50:02.368298863Z"} +2026/03/22 08:50:07 ───────────────────────────────────────────────── +2026/03/22 08:50:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:50:12 [detection_layer] {"stage_name":"detection_layer","events_processed":337,"events_dropped":0,"avg_latency_ms":16.25745646689061,"throughput_eps":0,"last_update":"2026-03-22T08:50:07.479584648Z"} +2026/03/22 08:50:12 [transform_engine] {"stage_name":"transform_engine","events_processed":337,"events_dropped":0,"avg_latency_ms":278.61589021423833,"throughput_eps":0,"last_update":"2026-03-22T08:50:07.47956999Z"} +2026/03/22 08:50:12 [log_collector] {"stage_name":"log_collector","events_processed":16040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208,"last_update":"2026-03-22T08:50:07.368912006Z"} +2026/03/22 08:50:12 [metric_collector] {"stage_name":"metric_collector","events_processed":10119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2023.8,"last_update":"2026-03-22T08:50:07.369546722Z"} +2026/03/22 08:50:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4050,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:50:07.377306318Z"} +2026/03/22 08:50:12 ───────────────────────────────────────────────── +2026/03/22 08:50:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:50:17 [log_collector] {"stage_name":"log_collector","events_processed":16040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208,"last_update":"2026-03-22T08:50:12.368660259Z"} +2026/03/22 08:50:17 [metric_collector] {"stage_name":"metric_collector","events_processed":10124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2024.8,"last_update":"2026-03-22T08:50:12.36893188Z"} +2026/03/22 08:50:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:50:12.380040743Z"} +2026/03/22 08:50:17 [detection_layer] {"stage_name":"detection_layer","events_processed":337,"events_dropped":0,"avg_latency_ms":16.25745646689061,"throughput_eps":0,"last_update":"2026-03-22T08:50:12.479333121Z"} +2026/03/22 08:50:17 [transform_engine] {"stage_name":"transform_engine","events_processed":337,"events_dropped":0,"avg_latency_ms":278.61589021423833,"throughput_eps":0,"last_update":"2026-03-22T08:50:12.479281562Z"} +2026/03/22 08:50:17 ───────────────────────────────────────────────── +2026/03/22 08:50:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:50:22 [detection_layer] {"stage_name":"detection_layer","events_processed":337,"events_dropped":0,"avg_latency_ms":16.25745646689061,"throughput_eps":0,"last_update":"2026-03-22T08:50:17.479923127Z"} +2026/03/22 08:50:22 [transform_engine] {"stage_name":"transform_engine","events_processed":337,"events_dropped":0,"avg_latency_ms":278.61589021423833,"throughput_eps":0,"last_update":"2026-03-22T08:50:17.479891877Z"} +2026/03/22 08:50:22 [log_collector] {"stage_name":"log_collector","events_processed":16040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208,"last_update":"2026-03-22T08:50:17.369272167Z"} +2026/03/22 08:50:22 [metric_collector] {"stage_name":"metric_collector","events_processed":10129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2025.8,"last_update":"2026-03-22T08:50:17.368979175Z"} +2026/03/22 08:50:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:50:17.379535189Z"} +2026/03/22 08:50:22 ───────────────────────────────────────────────── +2026/03/22 08:50:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:50:27 [log_collector] {"stage_name":"log_collector","events_processed":16040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208,"last_update":"2026-03-22T08:50:27.367979648Z"} +2026/03/22 08:50:27 [metric_collector] {"stage_name":"metric_collector","events_processed":10134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2026.8,"last_update":"2026-03-22T08:50:22.36865574Z"} +2026/03/22 08:50:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4056,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:50:22.377344456Z"} +2026/03/22 08:50:27 [detection_layer] {"stage_name":"detection_layer","events_processed":337,"events_dropped":0,"avg_latency_ms":16.25745646689061,"throughput_eps":0,"last_update":"2026-03-22T08:50:22.479672601Z"} +2026/03/22 08:50:27 [transform_engine] {"stage_name":"transform_engine","events_processed":337,"events_dropped":0,"avg_latency_ms":278.61589021423833,"throughput_eps":0,"last_update":"2026-03-22T08:50:22.4796406Z"} +2026/03/22 08:50:27 ───────────────────────────────────────────────── +2026/03/22 08:50:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:50:32 [log_collector] {"stage_name":"log_collector","events_processed":16040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208,"last_update":"2026-03-22T08:50:32.368884764Z"} +2026/03/22 08:50:32 [metric_collector] {"stage_name":"metric_collector","events_processed":10139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2027.8,"last_update":"2026-03-22T08:50:27.368628401Z"} +2026/03/22 08:50:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:50:27.377759715Z"} +2026/03/22 08:50:32 [detection_layer] {"stage_name":"detection_layer","events_processed":337,"events_dropped":0,"avg_latency_ms":16.25745646689061,"throughput_eps":0,"last_update":"2026-03-22T08:50:27.47898194Z"} +2026/03/22 08:50:32 [transform_engine] {"stage_name":"transform_engine","events_processed":338,"events_dropped":0,"avg_latency_ms":236.78245457139067,"throughput_eps":0,"last_update":"2026-03-22T08:50:27.5483296Z"} +2026/03/22 08:50:32 ───────────────────────────────────────────────── +2026/03/22 08:50:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:50:37 [log_collector] {"stage_name":"log_collector","events_processed":16040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208,"last_update":"2026-03-22T08:50:32.368884764Z"} +2026/03/22 08:50:37 [metric_collector] {"stage_name":"metric_collector","events_processed":10144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2028.8,"last_update":"2026-03-22T08:50:32.369045472Z"} +2026/03/22 08:50:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:50:32.37789713Z"} +2026/03/22 08:50:37 [detection_layer] {"stage_name":"detection_layer","events_processed":338,"events_dropped":0,"avg_latency_ms":16.931525773512487,"throughput_eps":0,"last_update":"2026-03-22T08:50:32.479253783Z"} +2026/03/22 08:50:37 [transform_engine] {"stage_name":"transform_engine","events_processed":338,"events_dropped":0,"avg_latency_ms":236.78245457139067,"throughput_eps":0,"last_update":"2026-03-22T08:50:32.479268902Z"} +2026/03/22 08:50:37 ───────────────────────────────────────────────── +Saved state: 13 clusters, 16041 messages, reason: none +2026/03/22 08:50:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:50:42 [log_collector] {"stage_name":"log_collector","events_processed":16040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208,"last_update":"2026-03-22T08:50:37.368713468Z"} +2026/03/22 08:50:42 [metric_collector] {"stage_name":"metric_collector","events_processed":10149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2029.8,"last_update":"2026-03-22T08:50:37.369198347Z"} +2026/03/22 08:50:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4062,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:50:37.378800203Z"} +2026/03/22 08:50:42 [detection_layer] {"stage_name":"detection_layer","events_processed":338,"events_dropped":0,"avg_latency_ms":16.931525773512487,"throughput_eps":0,"last_update":"2026-03-22T08:50:37.478972095Z"} +2026/03/22 08:50:42 [transform_engine] {"stage_name":"transform_engine","events_processed":338,"events_dropped":0,"avg_latency_ms":236.78245457139067,"throughput_eps":0,"last_update":"2026-03-22T08:50:37.478923122Z"} +2026/03/22 08:50:42 ───────────────────────────────────────────────── +2026/03/22 08:50:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:50:47 [log_collector] {"stage_name":"log_collector","events_processed":16043,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208.6,"last_update":"2026-03-22T08:50:42.367967419Z"} +2026/03/22 08:50:47 [metric_collector] {"stage_name":"metric_collector","events_processed":10154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2030.8,"last_update":"2026-03-22T08:50:42.368148887Z"} +2026/03/22 08:50:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:50:42.37650155Z"} +2026/03/22 08:50:47 [detection_layer] {"stage_name":"detection_layer","events_processed":338,"events_dropped":0,"avg_latency_ms":16.931525773512487,"throughput_eps":0,"last_update":"2026-03-22T08:50:42.479728645Z"} +2026/03/22 08:50:47 [transform_engine] {"stage_name":"transform_engine","events_processed":338,"events_dropped":0,"avg_latency_ms":236.78245457139067,"throughput_eps":0,"last_update":"2026-03-22T08:50:42.479743344Z"} +2026/03/22 08:50:47 ───────────────────────────────────────────────── +2026/03/22 08:50:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:50:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:50:47.376907278Z"} +2026/03/22 08:50:52 [detection_layer] {"stage_name":"detection_layer","events_processed":338,"events_dropped":0,"avg_latency_ms":16.931525773512487,"throughput_eps":0,"last_update":"2026-03-22T08:50:47.479073912Z"} +2026/03/22 08:50:52 [transform_engine] {"stage_name":"transform_engine","events_processed":338,"events_dropped":0,"avg_latency_ms":236.78245457139067,"throughput_eps":0,"last_update":"2026-03-22T08:50:47.479083831Z"} +2026/03/22 08:50:52 [log_collector] {"stage_name":"log_collector","events_processed":16043,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208.6,"last_update":"2026-03-22T08:50:47.367956269Z"} +2026/03/22 08:50:52 [metric_collector] {"stage_name":"metric_collector","events_processed":10159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2031.8,"last_update":"2026-03-22T08:50:47.368327691Z"} +2026/03/22 08:50:52 ───────────────────────────────────────────────── +2026/03/22 08:50:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:50:57 [detection_layer] {"stage_name":"detection_layer","events_processed":338,"events_dropped":0,"avg_latency_ms":16.931525773512487,"throughput_eps":0,"last_update":"2026-03-22T08:50:52.479460383Z"} +2026/03/22 08:50:57 [transform_engine] {"stage_name":"transform_engine","events_processed":338,"events_dropped":0,"avg_latency_ms":236.78245457139067,"throughput_eps":0,"last_update":"2026-03-22T08:50:52.479474048Z"} +2026/03/22 08:50:57 [log_collector] {"stage_name":"log_collector","events_processed":16053,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3210.6,"last_update":"2026-03-22T08:50:52.368508768Z"} +2026/03/22 08:50:57 [metric_collector] {"stage_name":"metric_collector","events_processed":10164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2032.8,"last_update":"2026-03-22T08:50:52.369012974Z"} +2026/03/22 08:50:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:50:52.377121318Z"} +2026/03/22 08:50:57 ───────────────────────────────────────────────── +2026/03/22 08:51:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:51:02 [transform_engine] {"stage_name":"transform_engine","events_processed":339,"events_dropped":0,"avg_latency_ms":554.0988558571125,"throughput_eps":0,"last_update":"2026-03-22T08:50:59.302450134Z"} +2026/03/22 08:51:02 [log_collector] {"stage_name":"log_collector","events_processed":16068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3213.6,"last_update":"2026-03-22T08:50:57.368199465Z"} +2026/03/22 08:51:02 [metric_collector] {"stage_name":"metric_collector","events_processed":10169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2033.8,"last_update":"2026-03-22T08:50:57.368866072Z"} +2026/03/22 08:51:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:50:57.375887354Z"} +2026/03/22 08:51:02 [detection_layer] {"stage_name":"detection_layer","events_processed":338,"events_dropped":0,"avg_latency_ms":16.931525773512487,"throughput_eps":0,"last_update":"2026-03-22T08:50:57.479072068Z"} +2026/03/22 08:51:02 ───────────────────────────────────────────────── +2026/03/22 08:51:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:51:07 [log_collector] {"stage_name":"log_collector","events_processed":16070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3214,"last_update":"2026-03-22T08:51:02.36802464Z"} +2026/03/22 08:51:07 [metric_collector] {"stage_name":"metric_collector","events_processed":10174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2034.8,"last_update":"2026-03-22T08:51:02.368410059Z"} +2026/03/22 08:51:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4072,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:51:02.378195205Z"} +2026/03/22 08:51:07 [detection_layer] {"stage_name":"detection_layer","events_processed":339,"events_dropped":0,"avg_latency_ms":17.07590881880999,"throughput_eps":0,"last_update":"2026-03-22T08:51:02.479407841Z"} +2026/03/22 08:51:07 [transform_engine] {"stage_name":"transform_engine","events_processed":339,"events_dropped":0,"avg_latency_ms":554.0988558571125,"throughput_eps":0,"last_update":"2026-03-22T08:51:02.479420255Z"} +2026/03/22 08:51:07 ───────────────────────────────────────────────── +2026/03/22 08:51:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:51:12 [metric_collector] {"stage_name":"metric_collector","events_processed":10179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2035.8,"last_update":"2026-03-22T08:51:07.368767413Z"} +2026/03/22 08:51:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:51:07.375381805Z"} +2026/03/22 08:51:12 [detection_layer] {"stage_name":"detection_layer","events_processed":339,"events_dropped":0,"avg_latency_ms":17.07590881880999,"throughput_eps":0,"last_update":"2026-03-22T08:51:07.479793689Z"} +2026/03/22 08:51:12 [transform_engine] {"stage_name":"transform_engine","events_processed":339,"events_dropped":0,"avg_latency_ms":554.0988558571125,"throughput_eps":0,"last_update":"2026-03-22T08:51:07.479925583Z"} +2026/03/22 08:51:12 [log_collector] {"stage_name":"log_collector","events_processed":16083,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3216.6,"last_update":"2026-03-22T08:51:07.367996015Z"} +2026/03/22 08:51:12 ───────────────────────────────────────────────── +2026/03/22 08:51:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:51:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4076,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:51:12.377831379Z"} +2026/03/22 08:51:17 [detection_layer] {"stage_name":"detection_layer","events_processed":339,"events_dropped":0,"avg_latency_ms":17.07590881880999,"throughput_eps":0,"last_update":"2026-03-22T08:51:12.479058191Z"} +2026/03/22 08:51:17 [transform_engine] {"stage_name":"transform_engine","events_processed":339,"events_dropped":0,"avg_latency_ms":554.0988558571125,"throughput_eps":0,"last_update":"2026-03-22T08:51:12.479168912Z"} +2026/03/22 08:51:17 [log_collector] {"stage_name":"log_collector","events_processed":16084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3216.8,"last_update":"2026-03-22T08:51:12.368272455Z"} +2026/03/22 08:51:17 [metric_collector] {"stage_name":"metric_collector","events_processed":10184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2036.8,"last_update":"2026-03-22T08:51:12.36827999Z"} +2026/03/22 08:51:17 ───────────────────────────────────────────────── +2026/03/22 08:51:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:51:22 [metric_collector] {"stage_name":"metric_collector","events_processed":10189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2037.8,"last_update":"2026-03-22T08:51:17.368865772Z"} +2026/03/22 08:51:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:51:17.377609083Z"} +2026/03/22 08:51:22 [detection_layer] {"stage_name":"detection_layer","events_processed":339,"events_dropped":0,"avg_latency_ms":17.07590881880999,"throughput_eps":0,"last_update":"2026-03-22T08:51:17.479962222Z"} +2026/03/22 08:51:22 [transform_engine] {"stage_name":"transform_engine","events_processed":339,"events_dropped":0,"avg_latency_ms":554.0988558571125,"throughput_eps":0,"last_update":"2026-03-22T08:51:17.480077624Z"} +2026/03/22 08:51:22 [log_collector] {"stage_name":"log_collector","events_processed":16084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3216.8,"last_update":"2026-03-22T08:51:17.36797206Z"} +2026/03/22 08:51:22 ───────────────────────────────────────────────── +2026/03/22 08:51:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:51:27 [transform_engine] {"stage_name":"transform_engine","events_processed":339,"events_dropped":0,"avg_latency_ms":554.0988558571125,"throughput_eps":0,"last_update":"2026-03-22T08:51:22.479161829Z"} +2026/03/22 08:51:27 [log_collector] {"stage_name":"log_collector","events_processed":16084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3216.8,"last_update":"2026-03-22T08:51:22.368032135Z"} +2026/03/22 08:51:27 [metric_collector] {"stage_name":"metric_collector","events_processed":10194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2038.8,"last_update":"2026-03-22T08:51:22.368681149Z"} +2026/03/22 08:51:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:51:22.378981512Z"} +2026/03/22 08:51:27 [detection_layer] {"stage_name":"detection_layer","events_processed":339,"events_dropped":0,"avg_latency_ms":17.07590881880999,"throughput_eps":0,"last_update":"2026-03-22T08:51:22.479238226Z"} +2026/03/22 08:51:27 ───────────────────────────────────────────────── +2026/03/22 08:51:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:51:32 [log_collector] {"stage_name":"log_collector","events_processed":16084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3216.8,"last_update":"2026-03-22T08:51:27.368344304Z"} +2026/03/22 08:51:32 [metric_collector] {"stage_name":"metric_collector","events_processed":10199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2039.8,"last_update":"2026-03-22T08:51:27.368782183Z"} +2026/03/22 08:51:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4082,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:51:27.375212142Z"} +2026/03/22 08:51:32 [detection_layer] {"stage_name":"detection_layer","events_processed":339,"events_dropped":0,"avg_latency_ms":17.07590881880999,"throughput_eps":0,"last_update":"2026-03-22T08:51:27.479420917Z"} +2026/03/22 08:51:32 [transform_engine] {"stage_name":"transform_engine","events_processed":340,"events_dropped":0,"avg_latency_ms":467.86553388569007,"throughput_eps":0,"last_update":"2026-03-22T08:51:27.602384573Z"} +2026/03/22 08:51:32 ───────────────────────────────────────────────── +2026/03/22 08:51:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:51:37 [log_collector] {"stage_name":"log_collector","events_processed":16084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3216.8,"last_update":"2026-03-22T08:51:32.368473031Z"} +2026/03/22 08:51:37 [metric_collector] {"stage_name":"metric_collector","events_processed":10204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2040.8,"last_update":"2026-03-22T08:51:32.368911211Z"} +2026/03/22 08:51:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:51:32.377595698Z"} +2026/03/22 08:51:37 [detection_layer] {"stage_name":"detection_layer","events_processed":340,"events_dropped":0,"avg_latency_ms":17.473836255047992,"throughput_eps":0,"last_update":"2026-03-22T08:51:32.478954573Z"} +2026/03/22 08:51:37 [transform_engine] {"stage_name":"transform_engine","events_processed":340,"events_dropped":0,"avg_latency_ms":467.86553388569007,"throughput_eps":0,"last_update":"2026-03-22T08:51:32.478947821Z"} +2026/03/22 08:51:37 ───────────────────────────────────────────────── +2026/03/22 08:51:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:51:42 [detection_layer] {"stage_name":"detection_layer","events_processed":340,"events_dropped":0,"avg_latency_ms":17.473836255047992,"throughput_eps":0,"last_update":"2026-03-22T08:51:37.479627744Z"} +2026/03/22 08:51:42 [transform_engine] {"stage_name":"transform_engine","events_processed":340,"events_dropped":0,"avg_latency_ms":467.86553388569007,"throughput_eps":0,"last_update":"2026-03-22T08:51:37.479665617Z"} +2026/03/22 08:51:42 [log_collector] {"stage_name":"log_collector","events_processed":16084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3216.8,"last_update":"2026-03-22T08:51:37.368335049Z"} +2026/03/22 08:51:42 [metric_collector] {"stage_name":"metric_collector","events_processed":10209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2041.8,"last_update":"2026-03-22T08:51:37.368788237Z"} +2026/03/22 08:51:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:51:37.377258594Z"} +2026/03/22 08:51:42 ───────────────────────────────────────────────── +2026/03/22 08:51:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:51:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:51:42.378704466Z"} +2026/03/22 08:51:47 [detection_layer] {"stage_name":"detection_layer","events_processed":340,"events_dropped":0,"avg_latency_ms":17.473836255047992,"throughput_eps":0,"last_update":"2026-03-22T08:51:42.479998957Z"} +2026/03/22 08:51:47 [transform_engine] {"stage_name":"transform_engine","events_processed":340,"events_dropped":0,"avg_latency_ms":467.86553388569007,"throughput_eps":0,"last_update":"2026-03-22T08:51:42.478899421Z"} +2026/03/22 08:51:47 [log_collector] {"stage_name":"log_collector","events_processed":16084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3216.8,"last_update":"2026-03-22T08:51:42.368857341Z"} +2026/03/22 08:51:47 [metric_collector] {"stage_name":"metric_collector","events_processed":10213,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2042.6,"last_update":"2026-03-22T08:51:42.368965628Z"} +2026/03/22 08:51:47 ───────────────────────────────────────────────── +2026/03/22 08:51:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:51:52 [log_collector] {"stage_name":"log_collector","events_processed":16084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3216.8,"last_update":"2026-03-22T08:51:47.368011153Z"} +2026/03/22 08:51:52 [metric_collector] {"stage_name":"metric_collector","events_processed":10219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2043.8,"last_update":"2026-03-22T08:51:47.368574983Z"} +2026/03/22 08:51:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:51:47.37857922Z"} +2026/03/22 08:51:52 [detection_layer] {"stage_name":"detection_layer","events_processed":340,"events_dropped":0,"avg_latency_ms":17.473836255047992,"throughput_eps":0,"last_update":"2026-03-22T08:51:47.479684217Z"} +2026/03/22 08:51:52 [transform_engine] {"stage_name":"transform_engine","events_processed":340,"events_dropped":0,"avg_latency_ms":467.86553388569007,"throughput_eps":0,"last_update":"2026-03-22T08:51:47.479695649Z"} +2026/03/22 08:51:52 ───────────────────────────────────────────────── +2026/03/22 08:51:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:51:57 [log_collector] {"stage_name":"log_collector","events_processed":16084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3216.8,"last_update":"2026-03-22T08:51:52.367968966Z"} +2026/03/22 08:51:57 [metric_collector] {"stage_name":"metric_collector","events_processed":10223,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2044.6,"last_update":"2026-03-22T08:51:52.367958977Z"} +2026/03/22 08:51:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:51:52.377365678Z"} +2026/03/22 08:51:57 [detection_layer] {"stage_name":"detection_layer","events_processed":340,"events_dropped":0,"avg_latency_ms":17.473836255047992,"throughput_eps":0,"last_update":"2026-03-22T08:51:52.479770637Z"} +2026/03/22 08:51:57 [transform_engine] {"stage_name":"transform_engine","events_processed":340,"events_dropped":0,"avg_latency_ms":467.86553388569007,"throughput_eps":0,"last_update":"2026-03-22T08:51:52.47978312Z"} +2026/03/22 08:51:57 ───────────────────────────────────────────────── +2026/03/22 08:52:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:52:02 [log_collector] {"stage_name":"log_collector","events_processed":16084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3216.8,"last_update":"2026-03-22T08:51:57.368669473Z"} +2026/03/22 08:52:02 [metric_collector] {"stage_name":"metric_collector","events_processed":10229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2045.8,"last_update":"2026-03-22T08:51:57.369244655Z"} +2026/03/22 08:52:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:51:57.378400095Z"} +2026/03/22 08:52:02 [detection_layer] {"stage_name":"detection_layer","events_processed":340,"events_dropped":0,"avg_latency_ms":17.473836255047992,"throughput_eps":0,"last_update":"2026-03-22T08:51:57.479766714Z"} +2026/03/22 08:52:02 [transform_engine] {"stage_name":"transform_engine","events_processed":341,"events_dropped":0,"avg_latency_ms":388.5718175085521,"throughput_eps":0,"last_update":"2026-03-22T08:51:57.551182031Z"} +2026/03/22 08:52:02 ───────────────────────────────────────────────── +2026/03/22 08:52:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:52:07 [log_collector] {"stage_name":"log_collector","events_processed":16084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3216.8,"last_update":"2026-03-22T08:52:02.368376136Z"} +2026/03/22 08:52:07 [metric_collector] {"stage_name":"metric_collector","events_processed":10234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2046.8,"last_update":"2026-03-22T08:52:02.368805929Z"} +2026/03/22 08:52:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:52:02.377102484Z"} +2026/03/22 08:52:07 [detection_layer] {"stage_name":"detection_layer","events_processed":341,"events_dropped":0,"avg_latency_ms":18.028975804038396,"throughput_eps":0,"last_update":"2026-03-22T08:52:02.479608314Z"} +2026/03/22 08:52:07 [transform_engine] {"stage_name":"transform_engine","events_processed":341,"events_dropped":0,"avg_latency_ms":388.5718175085521,"throughput_eps":0,"last_update":"2026-03-22T08:52:02.479584088Z"} +2026/03/22 08:52:07 ───────────────────────────────────────────────── +Saved state: 13 clusters, 16085 messages, reason: none +2026/03/22 08:52:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:52:12 [detection_layer] {"stage_name":"detection_layer","events_processed":341,"events_dropped":0,"avg_latency_ms":18.028975804038396,"throughput_eps":0,"last_update":"2026-03-22T08:52:07.47901775Z"} +2026/03/22 08:52:12 [transform_engine] {"stage_name":"transform_engine","events_processed":341,"events_dropped":0,"avg_latency_ms":388.5718175085521,"throughput_eps":0,"last_update":"2026-03-22T08:52:07.478848035Z"} +2026/03/22 08:52:12 [log_collector] {"stage_name":"log_collector","events_processed":16084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3216.8,"last_update":"2026-03-22T08:52:07.369212004Z"} +2026/03/22 08:52:12 [metric_collector] {"stage_name":"metric_collector","events_processed":10239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2047.8,"last_update":"2026-03-22T08:52:07.369619996Z"} +2026/03/22 08:52:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:52:07.377687111Z"} +2026/03/22 08:52:12 ───────────────────────────────────────────────── +2026/03/22 08:52:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:52:17 [log_collector] {"stage_name":"log_collector","events_processed":16089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3217.8,"last_update":"2026-03-22T08:52:12.367982806Z"} +2026/03/22 08:52:17 [metric_collector] {"stage_name":"metric_collector","events_processed":10244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2048.8,"last_update":"2026-03-22T08:52:12.368239718Z"} +2026/03/22 08:52:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:52:12.374507726Z"} +2026/03/22 08:52:17 [detection_layer] {"stage_name":"detection_layer","events_processed":341,"events_dropped":0,"avg_latency_ms":18.028975804038396,"throughput_eps":0,"last_update":"2026-03-22T08:52:12.479705385Z"} +2026/03/22 08:52:17 [transform_engine] {"stage_name":"transform_engine","events_processed":341,"events_dropped":0,"avg_latency_ms":388.5718175085521,"throughput_eps":0,"last_update":"2026-03-22T08:52:12.479718429Z"} +2026/03/22 08:52:17 ───────────────────────────────────────────────── +2026/03/22 08:52:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:52:22 [log_collector] {"stage_name":"log_collector","events_processed":16089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3217.8,"last_update":"2026-03-22T08:52:17.367980762Z"} +2026/03/22 08:52:22 [metric_collector] {"stage_name":"metric_collector","events_processed":10249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2049.8,"last_update":"2026-03-22T08:52:17.368210251Z"} +2026/03/22 08:52:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:52:17.376463242Z"} +2026/03/22 08:52:22 [detection_layer] {"stage_name":"detection_layer","events_processed":341,"events_dropped":0,"avg_latency_ms":18.028975804038396,"throughput_eps":0,"last_update":"2026-03-22T08:52:17.479619218Z"} +2026/03/22 08:52:22 [transform_engine] {"stage_name":"transform_engine","events_processed":341,"events_dropped":0,"avg_latency_ms":388.5718175085521,"throughput_eps":0,"last_update":"2026-03-22T08:52:17.479628496Z"} +2026/03/22 08:52:22 ───────────────────────────────────────────────── +2026/03/22 08:52:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:52:27 [transform_engine] {"stage_name":"transform_engine","events_processed":341,"events_dropped":0,"avg_latency_ms":388.5718175085521,"throughput_eps":0,"last_update":"2026-03-22T08:52:22.47961529Z"} +2026/03/22 08:52:27 [log_collector] {"stage_name":"log_collector","events_processed":16089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3217.8,"last_update":"2026-03-22T08:52:22.368806503Z"} +2026/03/22 08:52:27 [metric_collector] {"stage_name":"metric_collector","events_processed":10254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2050.8,"last_update":"2026-03-22T08:52:22.369162716Z"} +2026/03/22 08:52:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:52:22.377324172Z"} +2026/03/22 08:52:27 [detection_layer] {"stage_name":"detection_layer","events_processed":341,"events_dropped":0,"avg_latency_ms":18.028975804038396,"throughput_eps":0,"last_update":"2026-03-22T08:52:22.479603297Z"} +2026/03/22 08:52:27 ───────────────────────────────────────────────── +2026/03/22 08:52:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:52:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:52:27.379392195Z"} +2026/03/22 08:52:32 [detection_layer] {"stage_name":"detection_layer","events_processed":341,"events_dropped":0,"avg_latency_ms":18.028975804038396,"throughput_eps":0,"last_update":"2026-03-22T08:52:27.479032586Z"} +2026/03/22 08:52:32 [transform_engine] {"stage_name":"transform_engine","events_processed":342,"events_dropped":0,"avg_latency_ms":355.7372024068417,"throughput_eps":0,"last_update":"2026-03-22T08:52:27.703445064Z"} +2026/03/22 08:52:32 [log_collector] {"stage_name":"log_collector","events_processed":16089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3217.8,"last_update":"2026-03-22T08:52:27.367997535Z"} +2026/03/22 08:52:32 [metric_collector] {"stage_name":"metric_collector","events_processed":10259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2051.8,"last_update":"2026-03-22T08:52:27.368424815Z"} +2026/03/22 08:52:32 ───────────────────────────────────────────────── +2026/03/22 08:52:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:52:37 [log_collector] {"stage_name":"log_collector","events_processed":16089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3217.8,"last_update":"2026-03-22T08:52:32.367957712Z"} +2026/03/22 08:52:37 [metric_collector] {"stage_name":"metric_collector","events_processed":10264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2052.8,"last_update":"2026-03-22T08:52:32.368859068Z"} +2026/03/22 08:52:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:52:32.374943846Z"} +2026/03/22 08:52:37 [detection_layer] {"stage_name":"detection_layer","events_processed":342,"events_dropped":0,"avg_latency_ms":17.377258043230718,"throughput_eps":0,"last_update":"2026-03-22T08:52:32.479296463Z"} +2026/03/22 08:52:37 [transform_engine] {"stage_name":"transform_engine","events_processed":342,"events_dropped":0,"avg_latency_ms":355.7372024068417,"throughput_eps":0,"last_update":"2026-03-22T08:52:32.479337081Z"} +2026/03/22 08:52:37 ───────────────────────────────────────────────── +2026/03/22 08:52:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:52:42 [log_collector] {"stage_name":"log_collector","events_processed":16089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3217.8,"last_update":"2026-03-22T08:52:37.368057596Z"} +2026/03/22 08:52:42 [metric_collector] {"stage_name":"metric_collector","events_processed":10269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2053.8,"last_update":"2026-03-22T08:52:37.368524311Z"} +2026/03/22 08:52:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:52:37.378409619Z"} +2026/03/22 08:52:42 [detection_layer] {"stage_name":"detection_layer","events_processed":342,"events_dropped":0,"avg_latency_ms":17.377258043230718,"throughput_eps":0,"last_update":"2026-03-22T08:52:37.479210763Z"} +2026/03/22 08:52:42 [transform_engine] {"stage_name":"transform_engine","events_processed":342,"events_dropped":0,"avg_latency_ms":355.7372024068417,"throughput_eps":0,"last_update":"2026-03-22T08:52:37.47919385Z"} +2026/03/22 08:52:42 ───────────────────────────────────────────────── +2026/03/22 08:52:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:52:47 [transform_engine] {"stage_name":"transform_engine","events_processed":342,"events_dropped":0,"avg_latency_ms":355.7372024068417,"throughput_eps":0,"last_update":"2026-03-22T08:52:42.479893497Z"} +2026/03/22 08:52:47 [log_collector] {"stage_name":"log_collector","events_processed":16089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3217.8,"last_update":"2026-03-22T08:52:42.368113841Z"} +2026/03/22 08:52:47 [metric_collector] {"stage_name":"metric_collector","events_processed":10274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2054.8,"last_update":"2026-03-22T08:52:42.368509329Z"} +2026/03/22 08:52:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:52:42.375615803Z"} +2026/03/22 08:52:47 [detection_layer] {"stage_name":"detection_layer","events_processed":342,"events_dropped":0,"avg_latency_ms":17.377258043230718,"throughput_eps":0,"last_update":"2026-03-22T08:52:42.479869231Z"} +2026/03/22 08:52:47 ───────────────────────────────────────────────── +2026/03/22 08:52:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:52:52 [log_collector] {"stage_name":"log_collector","events_processed":16089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3217.8,"last_update":"2026-03-22T08:52:47.367987177Z"} +2026/03/22 08:52:52 [metric_collector] {"stage_name":"metric_collector","events_processed":10279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2055.8,"last_update":"2026-03-22T08:52:47.368238959Z"} +2026/03/22 08:52:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:52:47.374897305Z"} +2026/03/22 08:52:52 [detection_layer] {"stage_name":"detection_layer","events_processed":342,"events_dropped":0,"avg_latency_ms":17.377258043230718,"throughput_eps":0,"last_update":"2026-03-22T08:52:47.479127238Z"} +2026/03/22 08:52:52 [transform_engine] {"stage_name":"transform_engine","events_processed":342,"events_dropped":0,"avg_latency_ms":355.7372024068417,"throughput_eps":0,"last_update":"2026-03-22T08:52:47.479110586Z"} +2026/03/22 08:52:52 ───────────────────────────────────────────────── +2026/03/22 08:52:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:52:57 [transform_engine] {"stage_name":"transform_engine","events_processed":342,"events_dropped":0,"avg_latency_ms":355.7372024068417,"throughput_eps":0,"last_update":"2026-03-22T08:52:52.479145712Z"} +2026/03/22 08:52:57 [log_collector] {"stage_name":"log_collector","events_processed":16100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3220,"last_update":"2026-03-22T08:52:57.368487657Z"} +2026/03/22 08:52:57 [metric_collector] {"stage_name":"metric_collector","events_processed":10284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2056.8,"last_update":"2026-03-22T08:52:52.369217343Z"} +2026/03/22 08:52:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:52:57.368459042Z"} +2026/03/22 08:52:57 [detection_layer] {"stage_name":"detection_layer","events_processed":342,"events_dropped":0,"avg_latency_ms":17.377258043230718,"throughput_eps":0,"last_update":"2026-03-22T08:52:52.479219935Z"} +2026/03/22 08:52:57 ───────────────────────────────────────────────── +2026/03/22 08:53:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:53:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:52:57.368459042Z"} +2026/03/22 08:53:02 [detection_layer] {"stage_name":"detection_layer","events_processed":342,"events_dropped":0,"avg_latency_ms":17.377258043230718,"throughput_eps":0,"last_update":"2026-03-22T08:52:57.479344205Z"} +2026/03/22 08:53:02 [transform_engine] {"stage_name":"transform_engine","events_processed":343,"events_dropped":0,"avg_latency_ms":320.1520257254733,"throughput_eps":0,"last_update":"2026-03-22T08:52:57.657043649Z"} +2026/03/22 08:53:02 [log_collector] {"stage_name":"log_collector","events_processed":16100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3220,"last_update":"2026-03-22T08:52:57.368487657Z"} +2026/03/22 08:53:02 [metric_collector] {"stage_name":"metric_collector","events_processed":10289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2057.8,"last_update":"2026-03-22T08:52:57.368955233Z"} +2026/03/22 08:53:02 ───────────────────────────────────────────────── +2026/03/22 08:53:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:53:07 [log_collector] {"stage_name":"log_collector","events_processed":16162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3232.4,"last_update":"2026-03-22T08:53:02.367978606Z"} +2026/03/22 08:53:07 [metric_collector] {"stage_name":"metric_collector","events_processed":10294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2058.8,"last_update":"2026-03-22T08:53:02.368282458Z"} +2026/03/22 08:53:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:53:02.377068981Z"} +2026/03/22 08:53:07 [detection_layer] {"stage_name":"detection_layer","events_processed":343,"events_dropped":0,"avg_latency_ms":17.468782034584574,"throughput_eps":0,"last_update":"2026-03-22T08:53:02.479301486Z"} +2026/03/22 08:53:07 [transform_engine] {"stage_name":"transform_engine","events_processed":343,"events_dropped":0,"avg_latency_ms":320.1520257254733,"throughput_eps":0,"last_update":"2026-03-22T08:53:02.47925616Z"} +2026/03/22 08:53:07 ───────────────────────────────────────────────── +Saved state: 13 clusters, 16448 messages, reason: none +2026/03/22 08:53:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:53:12 [log_collector] {"stage_name":"log_collector","events_processed":16359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3271.8,"last_update":"2026-03-22T08:53:07.368479069Z"} +2026/03/22 08:53:12 [metric_collector] {"stage_name":"metric_collector","events_processed":10299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2059.8,"last_update":"2026-03-22T08:53:07.368943288Z"} +2026/03/22 08:53:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4122,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:53:07.377253679Z"} +2026/03/22 08:53:12 [detection_layer] {"stage_name":"detection_layer","events_processed":343,"events_dropped":0,"avg_latency_ms":17.468782034584574,"throughput_eps":0,"last_update":"2026-03-22T08:53:07.479598529Z"} +2026/03/22 08:53:12 [transform_engine] {"stage_name":"transform_engine","events_processed":343,"events_dropped":0,"avg_latency_ms":320.1520257254733,"throughput_eps":0,"last_update":"2026-03-22T08:53:07.479557711Z"} +2026/03/22 08:53:12 ───────────────────────────────────────────────── +2026/03/22 08:53:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:53:17 [log_collector] {"stage_name":"log_collector","events_processed":16451,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3290.2,"last_update":"2026-03-22T08:53:12.368912327Z"} +2026/03/22 08:53:17 [metric_collector] {"stage_name":"metric_collector","events_processed":10304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2060.8,"last_update":"2026-03-22T08:53:12.369144782Z"} +2026/03/22 08:53:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:53:12.378044001Z"} +2026/03/22 08:53:17 [detection_layer] {"stage_name":"detection_layer","events_processed":343,"events_dropped":0,"avg_latency_ms":17.468782034584574,"throughput_eps":0,"last_update":"2026-03-22T08:53:12.479275508Z"} +2026/03/22 08:53:17 [transform_engine] {"stage_name":"transform_engine","events_processed":343,"events_dropped":0,"avg_latency_ms":320.1520257254733,"throughput_eps":0,"last_update":"2026-03-22T08:53:12.479251081Z"} +2026/03/22 08:53:17 ───────────────────────────────────────────────── +2026/03/22 08:53:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:53:22 [transform_engine] {"stage_name":"transform_engine","events_processed":343,"events_dropped":0,"avg_latency_ms":320.1520257254733,"throughput_eps":0,"last_update":"2026-03-22T08:53:17.479076597Z"} +2026/03/22 08:53:22 [log_collector] {"stage_name":"log_collector","events_processed":16451,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3290.2,"last_update":"2026-03-22T08:53:17.36796911Z"} +2026/03/22 08:53:22 [metric_collector] {"stage_name":"metric_collector","events_processed":10309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2061.8,"last_update":"2026-03-22T08:53:17.368341864Z"} +2026/03/22 08:53:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4126,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:53:17.376885702Z"} +2026/03/22 08:53:22 [detection_layer] {"stage_name":"detection_layer","events_processed":343,"events_dropped":0,"avg_latency_ms":17.468782034584574,"throughput_eps":0,"last_update":"2026-03-22T08:53:17.47910955Z"} +2026/03/22 08:53:22 ───────────────────────────────────────────────── +2026/03/22 08:53:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:53:27 [detection_layer] {"stage_name":"detection_layer","events_processed":343,"events_dropped":0,"avg_latency_ms":17.468782034584574,"throughput_eps":0,"last_update":"2026-03-22T08:53:22.479121383Z"} +2026/03/22 08:53:27 [transform_engine] {"stage_name":"transform_engine","events_processed":343,"events_dropped":0,"avg_latency_ms":320.1520257254733,"throughput_eps":0,"last_update":"2026-03-22T08:53:22.479070635Z"} +2026/03/22 08:53:27 [log_collector] {"stage_name":"log_collector","events_processed":16451,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3290.2,"last_update":"2026-03-22T08:53:22.36796401Z"} +2026/03/22 08:53:27 [metric_collector] {"stage_name":"metric_collector","events_processed":10314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2062.8,"last_update":"2026-03-22T08:53:22.368237925Z"} +2026/03/22 08:53:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4128,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:53:22.378877449Z"} +2026/03/22 08:53:27 ───────────────────────────────────────────────── +2026/03/22 08:53:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:53:32 [transform_engine] {"stage_name":"transform_engine","events_processed":344,"events_dropped":0,"avg_latency_ms":767.9770197803787,"throughput_eps":0,"last_update":"2026-03-22T08:53:30.04156431Z"} +2026/03/22 08:53:32 [log_collector] {"stage_name":"log_collector","events_processed":16454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3290.8,"last_update":"2026-03-22T08:53:32.368255762Z"} +2026/03/22 08:53:32 [metric_collector] {"stage_name":"metric_collector","events_processed":10319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2063.8,"last_update":"2026-03-22T08:53:27.368192092Z"} +2026/03/22 08:53:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4130,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:53:27.376335353Z"} +2026/03/22 08:53:32 [detection_layer] {"stage_name":"detection_layer","events_processed":343,"events_dropped":0,"avg_latency_ms":17.468782034584574,"throughput_eps":0,"last_update":"2026-03-22T08:53:27.483287259Z"} +2026/03/22 08:53:32 ───────────────────────────────────────────────── +2026/03/22 08:53:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:53:37 [detection_layer] {"stage_name":"detection_layer","events_processed":344,"events_dropped":0,"avg_latency_ms":17.139672427667662,"throughput_eps":0,"last_update":"2026-03-22T08:53:32.478943795Z"} +2026/03/22 08:53:37 [transform_engine] {"stage_name":"transform_engine","events_processed":344,"events_dropped":0,"avg_latency_ms":767.9770197803787,"throughput_eps":0,"last_update":"2026-03-22T08:53:32.478890082Z"} +2026/03/22 08:53:37 [log_collector] {"stage_name":"log_collector","events_processed":16454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3290.8,"last_update":"2026-03-22T08:53:32.368255762Z"} +2026/03/22 08:53:37 [metric_collector] {"stage_name":"metric_collector","events_processed":10324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2064.8,"last_update":"2026-03-22T08:53:32.368537241Z"} +2026/03/22 08:53:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:53:32.374574838Z"} +2026/03/22 08:53:37 ───────────────────────────────────────────────── +2026/03/22 08:53:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:53:42 [log_collector] {"stage_name":"log_collector","events_processed":16465,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3293,"last_update":"2026-03-22T08:53:37.368086219Z"} +2026/03/22 08:53:42 [metric_collector] {"stage_name":"metric_collector","events_processed":10329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2065.8,"last_update":"2026-03-22T08:53:37.368438383Z"} +2026/03/22 08:53:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:53:37.377224095Z"} +2026/03/22 08:53:42 [detection_layer] {"stage_name":"detection_layer","events_processed":344,"events_dropped":0,"avg_latency_ms":17.139672427667662,"throughput_eps":0,"last_update":"2026-03-22T08:53:37.479581308Z"} +2026/03/22 08:53:42 [transform_engine] {"stage_name":"transform_engine","events_processed":344,"events_dropped":0,"avg_latency_ms":767.9770197803787,"throughput_eps":0,"last_update":"2026-03-22T08:53:37.479531893Z"} +2026/03/22 08:53:42 ───────────────────────────────────────────────── +2026/03/22 08:53:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:53:47 [log_collector] {"stage_name":"log_collector","events_processed":16481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3296.2,"last_update":"2026-03-22T08:53:47.368581884Z"} +2026/03/22 08:53:47 [metric_collector] {"stage_name":"metric_collector","events_processed":10334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2066.8,"last_update":"2026-03-22T08:53:42.369107177Z"} +2026/03/22 08:53:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:53:42.37551882Z"} +2026/03/22 08:53:47 [detection_layer] {"stage_name":"detection_layer","events_processed":344,"events_dropped":0,"avg_latency_ms":17.139672427667662,"throughput_eps":0,"last_update":"2026-03-22T08:53:42.479865454Z"} +2026/03/22 08:53:47 [transform_engine] {"stage_name":"transform_engine","events_processed":344,"events_dropped":0,"avg_latency_ms":767.9770197803787,"throughput_eps":0,"last_update":"2026-03-22T08:53:42.479878208Z"} +2026/03/22 08:53:47 ───────────────────────────────────────────────── +2026/03/22 08:53:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:53:52 [log_collector] {"stage_name":"log_collector","events_processed":16481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3296.2,"last_update":"2026-03-22T08:53:47.368581884Z"} +2026/03/22 08:53:52 [metric_collector] {"stage_name":"metric_collector","events_processed":10339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2067.8,"last_update":"2026-03-22T08:53:47.369000867Z"} +2026/03/22 08:53:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:53:47.378789499Z"} +2026/03/22 08:53:52 [detection_layer] {"stage_name":"detection_layer","events_processed":344,"events_dropped":0,"avg_latency_ms":17.139672427667662,"throughput_eps":0,"last_update":"2026-03-22T08:53:47.478987296Z"} +2026/03/22 08:53:52 [transform_engine] {"stage_name":"transform_engine","events_processed":344,"events_dropped":0,"avg_latency_ms":767.9770197803787,"throughput_eps":0,"last_update":"2026-03-22T08:53:47.479004028Z"} +2026/03/22 08:53:52 ───────────────────────────────────────────────── +2026/03/22 08:53:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:53:57 [log_collector] {"stage_name":"log_collector","events_processed":16481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3296.2,"last_update":"2026-03-22T08:53:52.368521257Z"} +2026/03/22 08:53:57 [metric_collector] {"stage_name":"metric_collector","events_processed":10344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2068.8,"last_update":"2026-03-22T08:53:52.368947313Z"} +2026/03/22 08:53:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:53:52.379055979Z"} +2026/03/22 08:53:57 [detection_layer] {"stage_name":"detection_layer","events_processed":344,"events_dropped":0,"avg_latency_ms":17.139672427667662,"throughput_eps":0,"last_update":"2026-03-22T08:53:52.479409964Z"} +2026/03/22 08:53:57 [transform_engine] {"stage_name":"transform_engine","events_processed":344,"events_dropped":0,"avg_latency_ms":767.9770197803787,"throughput_eps":0,"last_update":"2026-03-22T08:53:52.479424292Z"} +2026/03/22 08:53:57 ───────────────────────────────────────────────── +2026/03/22 08:54:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:54:02 [metric_collector] {"stage_name":"metric_collector","events_processed":10349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2069.8,"last_update":"2026-03-22T08:53:57.369346589Z"} +2026/03/22 08:54:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:53:57.377985619Z"} +2026/03/22 08:54:02 [detection_layer] {"stage_name":"detection_layer","events_processed":344,"events_dropped":0,"avg_latency_ms":17.139672427667662,"throughput_eps":0,"last_update":"2026-03-22T08:53:57.47932467Z"} +2026/03/22 08:54:02 [transform_engine] {"stage_name":"transform_engine","events_processed":344,"events_dropped":0,"avg_latency_ms":767.9770197803787,"throughput_eps":0,"last_update":"2026-03-22T08:53:57.479337786Z"} +2026/03/22 08:54:02 [log_collector] {"stage_name":"log_collector","events_processed":16481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3296.2,"last_update":"2026-03-22T08:54:02.368018188Z"} +2026/03/22 08:54:02 ───────────────────────────────────────────────── +2026/03/22 08:54:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:54:07 [log_collector] {"stage_name":"log_collector","events_processed":16481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3296.2,"last_update":"2026-03-22T08:54:02.368018188Z"} +2026/03/22 08:54:07 [metric_collector] {"stage_name":"metric_collector","events_processed":10354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2070.8,"last_update":"2026-03-22T08:54:02.368905217Z"} +2026/03/22 08:54:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:54:02.377970474Z"} +2026/03/22 08:54:07 [detection_layer] {"stage_name":"detection_layer","events_processed":345,"events_dropped":0,"avg_latency_ms":17.59116794213413,"throughput_eps":0,"last_update":"2026-03-22T08:54:02.479273457Z"} +2026/03/22 08:54:07 [transform_engine] {"stage_name":"transform_engine","events_processed":345,"events_dropped":0,"avg_latency_ms":637.5936084243029,"throughput_eps":0,"last_update":"2026-03-22T08:54:02.479253348Z"} +2026/03/22 08:54:07 ───────────────────────────────────────────────── +2026/03/22 08:54:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:54:12 [metric_collector] {"stage_name":"metric_collector","events_processed":10359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2071.8,"last_update":"2026-03-22T08:54:07.368623313Z"} +2026/03/22 08:54:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:54:07.378517398Z"} +2026/03/22 08:54:12 [detection_layer] {"stage_name":"detection_layer","events_processed":345,"events_dropped":0,"avg_latency_ms":17.59116794213413,"throughput_eps":0,"last_update":"2026-03-22T08:54:07.479730358Z"} +2026/03/22 08:54:12 [transform_engine] {"stage_name":"transform_engine","events_processed":345,"events_dropped":0,"avg_latency_ms":637.5936084243029,"throughput_eps":0,"last_update":"2026-03-22T08:54:07.479788078Z"} +2026/03/22 08:54:12 [log_collector] {"stage_name":"log_collector","events_processed":16481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3296.2,"last_update":"2026-03-22T08:54:07.368542017Z"} +2026/03/22 08:54:12 ───────────────────────────────────────────────── +2026/03/22 08:54:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:54:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:54:12.377479479Z"} +2026/03/22 08:54:17 [detection_layer] {"stage_name":"detection_layer","events_processed":345,"events_dropped":0,"avg_latency_ms":17.59116794213413,"throughput_eps":0,"last_update":"2026-03-22T08:54:12.479693486Z"} +2026/03/22 08:54:17 [transform_engine] {"stage_name":"transform_engine","events_processed":345,"events_dropped":0,"avg_latency_ms":637.5936084243029,"throughput_eps":0,"last_update":"2026-03-22T08:54:12.479748622Z"} +2026/03/22 08:54:17 [log_collector] {"stage_name":"log_collector","events_processed":16481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3296.2,"last_update":"2026-03-22T08:54:12.368134195Z"} +2026/03/22 08:54:17 [metric_collector] {"stage_name":"metric_collector","events_processed":10364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2072.8,"last_update":"2026-03-22T08:54:12.368673779Z"} +2026/03/22 08:54:17 ───────────────────────────────────────────────── +2026/03/22 08:54:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:54:22 [log_collector] {"stage_name":"log_collector","events_processed":16481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3296.2,"last_update":"2026-03-22T08:54:17.368064914Z"} +2026/03/22 08:54:22 [metric_collector] {"stage_name":"metric_collector","events_processed":10369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2073.8,"last_update":"2026-03-22T08:54:17.368726381Z"} +2026/03/22 08:54:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:54:17.376904579Z"} +2026/03/22 08:54:22 [detection_layer] {"stage_name":"detection_layer","events_processed":345,"events_dropped":0,"avg_latency_ms":17.59116794213413,"throughput_eps":0,"last_update":"2026-03-22T08:54:17.479318739Z"} +2026/03/22 08:54:22 [transform_engine] {"stage_name":"transform_engine","events_processed":345,"events_dropped":0,"avg_latency_ms":637.5936084243029,"throughput_eps":0,"last_update":"2026-03-22T08:54:17.479332816Z"} +2026/03/22 08:54:22 ───────────────────────────────────────────────── +2026/03/22 08:54:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:54:27 [log_collector] {"stage_name":"log_collector","events_processed":16481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3296.2,"last_update":"2026-03-22T08:54:22.368467551Z"} +2026/03/22 08:54:27 [metric_collector] {"stage_name":"metric_collector","events_processed":10374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2074.8,"last_update":"2026-03-22T08:54:22.368899439Z"} +2026/03/22 08:54:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:54:22.378006545Z"} +2026/03/22 08:54:27 [detection_layer] {"stage_name":"detection_layer","events_processed":345,"events_dropped":0,"avg_latency_ms":17.59116794213413,"throughput_eps":0,"last_update":"2026-03-22T08:54:22.479531473Z"} +2026/03/22 08:54:27 [transform_engine] {"stage_name":"transform_engine","events_processed":345,"events_dropped":0,"avg_latency_ms":637.5936084243029,"throughput_eps":0,"last_update":"2026-03-22T08:54:22.479418046Z"} +2026/03/22 08:54:27 ───────────────────────────────────────────────── +2026/03/22 08:54:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:54:32 [log_collector] {"stage_name":"log_collector","events_processed":16481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3296.2,"last_update":"2026-03-22T08:54:27.36844733Z"} +2026/03/22 08:54:32 [metric_collector] {"stage_name":"metric_collector","events_processed":10379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2075.8,"last_update":"2026-03-22T08:54:27.368265472Z"} +2026/03/22 08:54:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:54:27.375318545Z"} +2026/03/22 08:54:32 [detection_layer] {"stage_name":"detection_layer","events_processed":345,"events_dropped":0,"avg_latency_ms":17.59116794213413,"throughput_eps":0,"last_update":"2026-03-22T08:54:27.479649698Z"} +2026/03/22 08:54:32 [transform_engine] {"stage_name":"transform_engine","events_processed":345,"events_dropped":0,"avg_latency_ms":637.5936084243029,"throughput_eps":0,"last_update":"2026-03-22T08:54:27.479549545Z"} +2026/03/22 08:54:32 ───────────────────────────────────────────────── +2026/03/22 08:54:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:54:37 [log_collector] {"stage_name":"log_collector","events_processed":16481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3296.2,"last_update":"2026-03-22T08:54:32.367990767Z"} +2026/03/22 08:54:37 [metric_collector] {"stage_name":"metric_collector","events_processed":10384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2076.8,"last_update":"2026-03-22T08:54:32.36844056Z"} +2026/03/22 08:54:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:54:32.378159409Z"} +2026/03/22 08:54:37 [detection_layer] {"stage_name":"detection_layer","events_processed":346,"events_dropped":0,"avg_latency_ms":17.059471753707307,"throughput_eps":0,"last_update":"2026-03-22T08:54:32.47937345Z"} +2026/03/22 08:54:37 [transform_engine] {"stage_name":"transform_engine","events_processed":346,"events_dropped":0,"avg_latency_ms":521.8279789394423,"throughput_eps":0,"last_update":"2026-03-22T08:54:32.479393839Z"} +2026/03/22 08:54:37 ───────────────────────────────────────────────── +2026/03/22 08:54:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:54:42 [metric_collector] {"stage_name":"metric_collector","events_processed":10389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2077.8,"last_update":"2026-03-22T08:54:37.368341565Z"} +2026/03/22 08:54:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:54:37.378016478Z"} +2026/03/22 08:54:42 [detection_layer] {"stage_name":"detection_layer","events_processed":346,"events_dropped":0,"avg_latency_ms":17.059471753707307,"throughput_eps":0,"last_update":"2026-03-22T08:54:37.479388042Z"} +2026/03/22 08:54:42 [transform_engine] {"stage_name":"transform_engine","events_processed":346,"events_dropped":0,"avg_latency_ms":521.8279789394423,"throughput_eps":0,"last_update":"2026-03-22T08:54:37.479419482Z"} +2026/03/22 08:54:42 [log_collector] {"stage_name":"log_collector","events_processed":16481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3296.2,"last_update":"2026-03-22T08:54:37.368019257Z"} +2026/03/22 08:54:42 ───────────────────────────────────────────────── +Saved state: 13 clusters, 16482 messages, reason: none +2026/03/22 08:54:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:54:47 [log_collector] {"stage_name":"log_collector","events_processed":16481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3296.2,"last_update":"2026-03-22T08:54:42.368208005Z"} +2026/03/22 08:54:47 [metric_collector] {"stage_name":"metric_collector","events_processed":10394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2078.8,"last_update":"2026-03-22T08:54:42.368603763Z"} +2026/03/22 08:54:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:54:42.376628777Z"} +2026/03/22 08:54:47 [detection_layer] {"stage_name":"detection_layer","events_processed":346,"events_dropped":0,"avg_latency_ms":17.059471753707307,"throughput_eps":0,"last_update":"2026-03-22T08:54:42.47903907Z"} +2026/03/22 08:54:47 [transform_engine] {"stage_name":"transform_engine","events_processed":346,"events_dropped":0,"avg_latency_ms":521.8279789394423,"throughput_eps":0,"last_update":"2026-03-22T08:54:42.478833366Z"} +2026/03/22 08:54:47 ───────────────────────────────────────────────── +2026/03/22 08:54:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:54:52 [detection_layer] {"stage_name":"detection_layer","events_processed":346,"events_dropped":0,"avg_latency_ms":17.059471753707307,"throughput_eps":0,"last_update":"2026-03-22T08:54:47.479953074Z"} +2026/03/22 08:54:52 [transform_engine] {"stage_name":"transform_engine","events_processed":346,"events_dropped":0,"avg_latency_ms":521.8279789394423,"throughput_eps":0,"last_update":"2026-03-22T08:54:47.479838806Z"} +2026/03/22 08:54:52 [log_collector] {"stage_name":"log_collector","events_processed":16484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3296.8,"last_update":"2026-03-22T08:54:47.368257303Z"} +2026/03/22 08:54:52 [metric_collector] {"stage_name":"metric_collector","events_processed":10399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2079.8,"last_update":"2026-03-22T08:54:47.368592084Z"} +2026/03/22 08:54:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:54:47.378649973Z"} +2026/03/22 08:54:52 ───────────────────────────────────────────────── +2026/03/22 08:54:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:54:57 [metric_collector] {"stage_name":"metric_collector","events_processed":10404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2080.8,"last_update":"2026-03-22T08:54:52.369050118Z"} +2026/03/22 08:54:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:54:52.376897902Z"} +2026/03/22 08:54:57 [detection_layer] {"stage_name":"detection_layer","events_processed":346,"events_dropped":0,"avg_latency_ms":17.059471753707307,"throughput_eps":0,"last_update":"2026-03-22T08:54:52.479129693Z"} +2026/03/22 08:54:57 [transform_engine] {"stage_name":"transform_engine","events_processed":346,"events_dropped":0,"avg_latency_ms":521.8279789394423,"throughput_eps":0,"last_update":"2026-03-22T08:54:52.479104164Z"} +2026/03/22 08:54:57 [log_collector] {"stage_name":"log_collector","events_processed":16495,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3299,"last_update":"2026-03-22T08:54:52.368640554Z"} +2026/03/22 08:54:57 ───────────────────────────────────────────────── +2026/03/22 08:55:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:55:02 [log_collector] {"stage_name":"log_collector","events_processed":16495,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3299,"last_update":"2026-03-22T08:54:57.368411166Z"} +2026/03/22 08:55:02 [metric_collector] {"stage_name":"metric_collector","events_processed":10409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2081.8,"last_update":"2026-03-22T08:54:57.369427202Z"} +2026/03/22 08:55:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:54:57.378636445Z"} +2026/03/22 08:55:02 [detection_layer] {"stage_name":"detection_layer","events_processed":346,"events_dropped":0,"avg_latency_ms":17.059471753707307,"throughput_eps":0,"last_update":"2026-03-22T08:54:57.47987386Z"} +2026/03/22 08:55:02 [transform_engine] {"stage_name":"transform_engine","events_processed":347,"events_dropped":0,"avg_latency_ms":441.4635093515539,"throughput_eps":0,"last_update":"2026-03-22T08:54:57.59989523Z"} +2026/03/22 08:55:02 ───────────────────────────────────────────────── +2026/03/22 08:55:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:55:07 [log_collector] {"stage_name":"log_collector","events_processed":16495,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3299,"last_update":"2026-03-22T08:55:02.368050708Z"} +2026/03/22 08:55:07 [metric_collector] {"stage_name":"metric_collector","events_processed":10414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2082.8,"last_update":"2026-03-22T08:55:02.368311086Z"} +2026/03/22 08:55:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:55:02.377111586Z"} +2026/03/22 08:55:07 [detection_layer] {"stage_name":"detection_layer","events_processed":347,"events_dropped":0,"avg_latency_ms":17.445319002965846,"throughput_eps":0,"last_update":"2026-03-22T08:55:02.479389555Z"} +2026/03/22 08:55:07 [transform_engine] {"stage_name":"transform_engine","events_processed":347,"events_dropped":0,"avg_latency_ms":441.4635093515539,"throughput_eps":0,"last_update":"2026-03-22T08:55:02.47941826Z"} +2026/03/22 08:55:07 ───────────────────────────────────────────────── +2026/03/22 08:55:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:55:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4170,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:55:07.378446922Z"} +2026/03/22 08:55:12 [detection_layer] {"stage_name":"detection_layer","events_processed":347,"events_dropped":0,"avg_latency_ms":17.445319002965846,"throughput_eps":0,"last_update":"2026-03-22T08:55:07.479697012Z"} +2026/03/22 08:55:12 [transform_engine] {"stage_name":"transform_engine","events_processed":347,"events_dropped":0,"avg_latency_ms":441.4635093515539,"throughput_eps":0,"last_update":"2026-03-22T08:55:07.479729073Z"} +2026/03/22 08:55:12 [log_collector] {"stage_name":"log_collector","events_processed":16495,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3299,"last_update":"2026-03-22T08:55:07.368439751Z"} +2026/03/22 08:55:12 [metric_collector] {"stage_name":"metric_collector","events_processed":10419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2083.8,"last_update":"2026-03-22T08:55:07.368984735Z"} +2026/03/22 08:55:12 ───────────────────────────────────────────────── +2026/03/22 08:55:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:55:17 [log_collector] {"stage_name":"log_collector","events_processed":16495,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3299,"last_update":"2026-03-22T08:55:12.368178521Z"} +2026/03/22 08:55:17 [metric_collector] {"stage_name":"metric_collector","events_processed":10424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2084.8,"last_update":"2026-03-22T08:55:12.368587014Z"} +2026/03/22 08:55:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:55:12.377529695Z"} +2026/03/22 08:55:17 [detection_layer] {"stage_name":"detection_layer","events_processed":347,"events_dropped":0,"avg_latency_ms":17.445319002965846,"throughput_eps":0,"last_update":"2026-03-22T08:55:12.479839796Z"} +2026/03/22 08:55:17 [transform_engine] {"stage_name":"transform_engine","events_processed":347,"events_dropped":0,"avg_latency_ms":441.4635093515539,"throughput_eps":0,"last_update":"2026-03-22T08:55:12.479792466Z"} +2026/03/22 08:55:17 ───────────────────────────────────────────────── +2026/03/22 08:55:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:55:22 [transform_engine] {"stage_name":"transform_engine","events_processed":347,"events_dropped":0,"avg_latency_ms":441.4635093515539,"throughput_eps":0,"last_update":"2026-03-22T08:55:17.479554433Z"} +2026/03/22 08:55:22 [log_collector] {"stage_name":"log_collector","events_processed":16495,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3299,"last_update":"2026-03-22T08:55:17.368179847Z"} +2026/03/22 08:55:22 [metric_collector] {"stage_name":"metric_collector","events_processed":10434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2086.8,"last_update":"2026-03-22T08:55:22.369086883Z"} +2026/03/22 08:55:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:55:17.37934088Z"} +2026/03/22 08:55:22 [detection_layer] {"stage_name":"detection_layer","events_processed":347,"events_dropped":0,"avg_latency_ms":17.445319002965846,"throughput_eps":0,"last_update":"2026-03-22T08:55:17.47958909Z"} +2026/03/22 08:55:22 ───────────────────────────────────────────────── +2026/03/22 08:55:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:55:27 [detection_layer] {"stage_name":"detection_layer","events_processed":347,"events_dropped":0,"avg_latency_ms":17.445319002965846,"throughput_eps":0,"last_update":"2026-03-22T08:55:22.479210231Z"} +2026/03/22 08:55:27 [transform_engine] {"stage_name":"transform_engine","events_processed":347,"events_dropped":0,"avg_latency_ms":441.4635093515539,"throughput_eps":0,"last_update":"2026-03-22T08:55:22.4791888Z"} +2026/03/22 08:55:27 [log_collector] {"stage_name":"log_collector","events_processed":16495,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3299,"last_update":"2026-03-22T08:55:22.369170112Z"} +2026/03/22 08:55:27 [metric_collector] {"stage_name":"metric_collector","events_processed":10434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2086.8,"last_update":"2026-03-22T08:55:22.369086883Z"} +2026/03/22 08:55:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:55:22.378818406Z"} +2026/03/22 08:55:27 ───────────────────────────────────────────────── +2026/03/22 08:55:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:55:32 [metric_collector] {"stage_name":"metric_collector","events_processed":10439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2087.8,"last_update":"2026-03-22T08:55:27.368300769Z"} +2026/03/22 08:55:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:55:27.374546835Z"} +2026/03/22 08:55:32 [detection_layer] {"stage_name":"detection_layer","events_processed":347,"events_dropped":0,"avg_latency_ms":17.445319002965846,"throughput_eps":0,"last_update":"2026-03-22T08:55:27.479807527Z"} +2026/03/22 08:55:32 [transform_engine] {"stage_name":"transform_engine","events_processed":348,"events_dropped":0,"avg_latency_ms":366.8517906812432,"throughput_eps":0,"last_update":"2026-03-22T08:55:27.548243553Z"} +2026/03/22 08:55:32 [log_collector] {"stage_name":"log_collector","events_processed":16495,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3299,"last_update":"2026-03-22T08:55:32.368390457Z"} +2026/03/22 08:55:32 ───────────────────────────────────────────────── +2026/03/22 08:55:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:55:37 [log_collector] {"stage_name":"log_collector","events_processed":16495,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3299,"last_update":"2026-03-22T08:55:37.368584601Z"} +2026/03/22 08:55:37 [metric_collector] {"stage_name":"metric_collector","events_processed":10444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2088.8,"last_update":"2026-03-22T08:55:32.368849145Z"} +2026/03/22 08:55:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:55:32.375121251Z"} +2026/03/22 08:55:37 [detection_layer] {"stage_name":"detection_layer","events_processed":348,"events_dropped":0,"avg_latency_ms":17.116327202372677,"throughput_eps":0,"last_update":"2026-03-22T08:55:32.479327314Z"} +2026/03/22 08:55:37 [transform_engine] {"stage_name":"transform_engine","events_processed":348,"events_dropped":0,"avg_latency_ms":366.8517906812432,"throughput_eps":0,"last_update":"2026-03-22T08:55:32.479374042Z"} +2026/03/22 08:55:37 ───────────────────────────────────────────────── +2026/03/22 08:55:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:55:42 [log_collector] {"stage_name":"log_collector","events_processed":16495,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3299,"last_update":"2026-03-22T08:55:37.368584601Z"} +2026/03/22 08:55:42 [metric_collector] {"stage_name":"metric_collector","events_processed":10449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2089.8,"last_update":"2026-03-22T08:55:37.369064109Z"} +2026/03/22 08:55:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:55:37.378795461Z"} +2026/03/22 08:55:42 [detection_layer] {"stage_name":"detection_layer","events_processed":348,"events_dropped":0,"avg_latency_ms":17.116327202372677,"throughput_eps":0,"last_update":"2026-03-22T08:55:37.479003224Z"} +2026/03/22 08:55:42 [transform_engine] {"stage_name":"transform_engine","events_processed":348,"events_dropped":0,"avg_latency_ms":366.8517906812432,"throughput_eps":0,"last_update":"2026-03-22T08:55:37.478971844Z"} +2026/03/22 08:55:42 ───────────────────────────────────────────────── +2026/03/22 08:55:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:55:47 [transform_engine] {"stage_name":"transform_engine","events_processed":348,"events_dropped":0,"avg_latency_ms":366.8517906812432,"throughput_eps":0,"last_update":"2026-03-22T08:55:42.479522202Z"} +2026/03/22 08:55:47 [log_collector] {"stage_name":"log_collector","events_processed":16495,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3299,"last_update":"2026-03-22T08:55:47.368905508Z"} +2026/03/22 08:55:47 [metric_collector] {"stage_name":"metric_collector","events_processed":10454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2090.8,"last_update":"2026-03-22T08:55:42.368881512Z"} +2026/03/22 08:55:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:55:42.378324583Z"} +2026/03/22 08:55:47 [detection_layer] {"stage_name":"detection_layer","events_processed":348,"events_dropped":0,"avg_latency_ms":17.116327202372677,"throughput_eps":0,"last_update":"2026-03-22T08:55:42.479547189Z"} +2026/03/22 08:55:47 ───────────────────────────────────────────────── +2026/03/22 08:55:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:55:52 [detection_layer] {"stage_name":"detection_layer","events_processed":348,"events_dropped":0,"avg_latency_ms":17.116327202372677,"throughput_eps":0,"last_update":"2026-03-22T08:55:47.47987721Z"} +2026/03/22 08:55:52 [transform_engine] {"stage_name":"transform_engine","events_processed":348,"events_dropped":0,"avg_latency_ms":366.8517906812432,"throughput_eps":0,"last_update":"2026-03-22T08:55:47.479744446Z"} +2026/03/22 08:55:52 [log_collector] {"stage_name":"log_collector","events_processed":16495,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3299,"last_update":"2026-03-22T08:55:47.368905508Z"} +2026/03/22 08:55:52 [metric_collector] {"stage_name":"metric_collector","events_processed":10459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2091.8,"last_update":"2026-03-22T08:55:47.369849456Z"} +2026/03/22 08:55:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:55:47.379386586Z"} +2026/03/22 08:55:52 ───────────────────────────────────────────────── +Saved state: 13 clusters, 16496 messages, reason: none +2026/03/22 08:55:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:55:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:55:52.378088241Z"} +2026/03/22 08:55:57 [detection_layer] {"stage_name":"detection_layer","events_processed":348,"events_dropped":0,"avg_latency_ms":17.116327202372677,"throughput_eps":0,"last_update":"2026-03-22T08:55:52.479438121Z"} +2026/03/22 08:55:57 [transform_engine] {"stage_name":"transform_engine","events_processed":348,"events_dropped":0,"avg_latency_ms":366.8517906812432,"throughput_eps":0,"last_update":"2026-03-22T08:55:52.47954755Z"} +2026/03/22 08:55:57 [log_collector] {"stage_name":"log_collector","events_processed":16500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3300,"last_update":"2026-03-22T08:55:57.368448531Z"} +2026/03/22 08:55:57 [metric_collector] {"stage_name":"metric_collector","events_processed":10464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2092.8,"last_update":"2026-03-22T08:55:52.369414905Z"} +2026/03/22 08:55:57 ───────────────────────────────────────────────── +2026/03/22 08:56:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:56:02 [log_collector] {"stage_name":"log_collector","events_processed":16500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3300,"last_update":"2026-03-22T08:56:02.368593931Z"} +2026/03/22 08:56:02 [metric_collector] {"stage_name":"metric_collector","events_processed":10469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2093.8,"last_update":"2026-03-22T08:55:57.368743927Z"} +2026/03/22 08:56:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:55:57.383996037Z"} +2026/03/22 08:56:02 [detection_layer] {"stage_name":"detection_layer","events_processed":348,"events_dropped":0,"avg_latency_ms":17.116327202372677,"throughput_eps":0,"last_update":"2026-03-22T08:55:57.479179763Z"} +2026/03/22 08:56:02 [transform_engine] {"stage_name":"transform_engine","events_processed":349,"events_dropped":0,"avg_latency_ms":314.32447414499455,"throughput_eps":0,"last_update":"2026-03-22T08:55:57.583378841Z"} +2026/03/22 08:56:02 ───────────────────────────────────────────────── +2026/03/22 08:56:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:56:07 [metric_collector] {"stage_name":"metric_collector","events_processed":10474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2094.8,"last_update":"2026-03-22T08:56:02.368930024Z"} +2026/03/22 08:56:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:56:02.380107427Z"} +2026/03/22 08:56:07 [detection_layer] {"stage_name":"detection_layer","events_processed":349,"events_dropped":0,"avg_latency_ms":16.462583561898143,"throughput_eps":0,"last_update":"2026-03-22T08:56:02.479262222Z"} +2026/03/22 08:56:07 [transform_engine] {"stage_name":"transform_engine","events_processed":349,"events_dropped":0,"avg_latency_ms":314.32447414499455,"throughput_eps":0,"last_update":"2026-03-22T08:56:02.479275166Z"} +2026/03/22 08:56:07 [log_collector] {"stage_name":"log_collector","events_processed":16500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3300,"last_update":"2026-03-22T08:56:02.368593931Z"} +2026/03/22 08:56:07 ───────────────────────────────────────────────── +2026/03/22 08:56:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:56:12 [transform_engine] {"stage_name":"transform_engine","events_processed":349,"events_dropped":0,"avg_latency_ms":314.32447414499455,"throughput_eps":0,"last_update":"2026-03-22T08:56:07.478881328Z"} +2026/03/22 08:56:12 [log_collector] {"stage_name":"log_collector","events_processed":16500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3300,"last_update":"2026-03-22T08:56:12.3683924Z"} +2026/03/22 08:56:12 [metric_collector] {"stage_name":"metric_collector","events_processed":10479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2095.8,"last_update":"2026-03-22T08:56:07.368901907Z"} +2026/03/22 08:56:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:56:07.375607002Z"} +2026/03/22 08:56:12 [detection_layer] {"stage_name":"detection_layer","events_processed":349,"events_dropped":0,"avg_latency_ms":16.462583561898143,"throughput_eps":0,"last_update":"2026-03-22T08:56:07.47995242Z"} +2026/03/22 08:56:12 ───────────────────────────────────────────────── +2026/03/22 08:56:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:56:17 [log_collector] {"stage_name":"log_collector","events_processed":16500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3300,"last_update":"2026-03-22T08:56:12.3683924Z"} +2026/03/22 08:56:17 [metric_collector] {"stage_name":"metric_collector","events_processed":10484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2096.8,"last_update":"2026-03-22T08:56:12.368641467Z"} +2026/03/22 08:56:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:56:12.375380728Z"} +2026/03/22 08:56:17 [detection_layer] {"stage_name":"detection_layer","events_processed":349,"events_dropped":0,"avg_latency_ms":16.462583561898143,"throughput_eps":0,"last_update":"2026-03-22T08:56:12.479589835Z"} +2026/03/22 08:56:17 [transform_engine] {"stage_name":"transform_engine","events_processed":349,"events_dropped":0,"avg_latency_ms":314.32447414499455,"throughput_eps":0,"last_update":"2026-03-22T08:56:12.479570579Z"} +2026/03/22 08:56:17 ───────────────────────────────────────────────── +2026/03/22 08:56:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:56:22 [log_collector] {"stage_name":"log_collector","events_processed":16500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3300,"last_update":"2026-03-22T08:56:17.367947062Z"} +2026/03/22 08:56:22 [metric_collector] {"stage_name":"metric_collector","events_processed":10489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2097.8,"last_update":"2026-03-22T08:56:17.368402253Z"} +2026/03/22 08:56:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:56:17.379102352Z"} +2026/03/22 08:56:22 [detection_layer] {"stage_name":"detection_layer","events_processed":349,"events_dropped":0,"avg_latency_ms":16.462583561898143,"throughput_eps":0,"last_update":"2026-03-22T08:56:17.479093599Z"} +2026/03/22 08:56:22 [transform_engine] {"stage_name":"transform_engine","events_processed":349,"events_dropped":0,"avg_latency_ms":314.32447414499455,"throughput_eps":0,"last_update":"2026-03-22T08:56:17.479113507Z"} +2026/03/22 08:56:22 ───────────────────────────────────────────────── +2026/03/22 08:56:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:56:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:56:22.376041177Z"} +2026/03/22 08:56:27 [detection_layer] {"stage_name":"detection_layer","events_processed":349,"events_dropped":0,"avg_latency_ms":16.462583561898143,"throughput_eps":0,"last_update":"2026-03-22T08:56:22.479234578Z"} +2026/03/22 08:56:27 [transform_engine] {"stage_name":"transform_engine","events_processed":349,"events_dropped":0,"avg_latency_ms":314.32447414499455,"throughput_eps":0,"last_update":"2026-03-22T08:56:22.479249978Z"} +2026/03/22 08:56:27 [log_collector] {"stage_name":"log_collector","events_processed":16500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3300,"last_update":"2026-03-22T08:56:27.368378552Z"} +2026/03/22 08:56:27 [metric_collector] {"stage_name":"metric_collector","events_processed":10494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2098.8,"last_update":"2026-03-22T08:56:22.368636772Z"} +2026/03/22 08:56:27 ───────────────────────────────────────────────── +2026/03/22 08:56:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:56:32 [detection_layer] {"stage_name":"detection_layer","events_processed":349,"events_dropped":0,"avg_latency_ms":16.462583561898143,"throughput_eps":0,"last_update":"2026-03-22T08:56:27.479250252Z"} +2026/03/22 08:56:32 [transform_engine] {"stage_name":"transform_engine","events_processed":349,"events_dropped":0,"avg_latency_ms":314.32447414499455,"throughput_eps":0,"last_update":"2026-03-22T08:56:22.479249978Z"} +2026/03/22 08:56:32 [log_collector] {"stage_name":"log_collector","events_processed":16500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3300,"last_update":"2026-03-22T08:56:27.368378552Z"} +2026/03/22 08:56:32 [metric_collector] {"stage_name":"metric_collector","events_processed":10499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2099.8,"last_update":"2026-03-22T08:56:27.368779009Z"} +2026/03/22 08:56:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:56:27.377064131Z"} +2026/03/22 08:56:32 ───────────────────────────────────────────────── +2026/03/22 08:56:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:56:37 [log_collector] {"stage_name":"log_collector","events_processed":16500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3300,"last_update":"2026-03-22T08:56:32.36901046Z"} +2026/03/22 08:56:37 [metric_collector] {"stage_name":"metric_collector","events_processed":10504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2100.8,"last_update":"2026-03-22T08:56:32.369008136Z"} +2026/03/22 08:56:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:56:32.376132334Z"} +2026/03/22 08:56:37 [detection_layer] {"stage_name":"detection_layer","events_processed":349,"events_dropped":0,"avg_latency_ms":16.462583561898143,"throughput_eps":0,"last_update":"2026-03-22T08:56:32.479339311Z"} +2026/03/22 08:56:37 [transform_engine] {"stage_name":"transform_engine","events_processed":350,"events_dropped":0,"avg_latency_ms":1618.1749095159955,"throughput_eps":0,"last_update":"2026-03-22T08:56:34.312859114Z"} +2026/03/22 08:56:37 ───────────────────────────────────────────────── +2026/03/22 08:56:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:56:42 [log_collector] {"stage_name":"log_collector","events_processed":16503,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3300.6,"last_update":"2026-03-22T08:56:37.36890826Z"} +2026/03/22 08:56:42 [metric_collector] {"stage_name":"metric_collector","events_processed":10509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2101.8,"last_update":"2026-03-22T08:56:37.369133551Z"} +2026/03/22 08:56:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4206,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:56:37.376642335Z"} +2026/03/22 08:56:42 [detection_layer] {"stage_name":"detection_layer","events_processed":350,"events_dropped":0,"avg_latency_ms":16.548557249518513,"throughput_eps":0,"last_update":"2026-03-22T08:56:37.479980093Z"} +2026/03/22 08:56:42 [transform_engine] {"stage_name":"transform_engine","events_processed":350,"events_dropped":0,"avg_latency_ms":1618.1749095159955,"throughput_eps":0,"last_update":"2026-03-22T08:56:37.478812587Z"} +2026/03/22 08:56:42 ───────────────────────────────────────────────── +2026/03/22 08:56:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:56:47 [metric_collector] {"stage_name":"metric_collector","events_processed":10514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2102.8,"last_update":"2026-03-22T08:56:42.368791874Z"} +2026/03/22 08:56:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:56:42.377581242Z"} +2026/03/22 08:56:47 [detection_layer] {"stage_name":"detection_layer","events_processed":350,"events_dropped":0,"avg_latency_ms":16.548557249518513,"throughput_eps":0,"last_update":"2026-03-22T08:56:42.479833489Z"} +2026/03/22 08:56:47 [transform_engine] {"stage_name":"transform_engine","events_processed":350,"events_dropped":0,"avg_latency_ms":1618.1749095159955,"throughput_eps":0,"last_update":"2026-03-22T08:56:42.479858888Z"} +2026/03/22 08:56:47 [log_collector] {"stage_name":"log_collector","events_processed":16511,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3302.2,"last_update":"2026-03-22T08:56:42.368165184Z"} +2026/03/22 08:56:47 ───────────────────────────────────────────────── +2026/03/22 08:56:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:56:52 [log_collector] {"stage_name":"log_collector","events_processed":16549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3309.8,"last_update":"2026-03-22T08:56:47.367951978Z"} +2026/03/22 08:56:52 [metric_collector] {"stage_name":"metric_collector","events_processed":10519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2103.8,"last_update":"2026-03-22T08:56:47.368207236Z"} +2026/03/22 08:56:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4210,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:56:47.374957919Z"} +2026/03/22 08:56:52 [detection_layer] {"stage_name":"detection_layer","events_processed":350,"events_dropped":0,"avg_latency_ms":16.548557249518513,"throughput_eps":0,"last_update":"2026-03-22T08:56:47.479762626Z"} +2026/03/22 08:56:52 [transform_engine] {"stage_name":"transform_engine","events_processed":350,"events_dropped":0,"avg_latency_ms":1618.1749095159955,"throughput_eps":0,"last_update":"2026-03-22T08:56:47.479768728Z"} +2026/03/22 08:56:52 ───────────────────────────────────────────────── +2026/03/22 08:56:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:56:57 [log_collector] {"stage_name":"log_collector","events_processed":16793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3358.6,"last_update":"2026-03-22T08:56:52.368177137Z"} +2026/03/22 08:56:57 [metric_collector] {"stage_name":"metric_collector","events_processed":10529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2105.8,"last_update":"2026-03-22T08:56:57.368311147Z"} +2026/03/22 08:56:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:56:52.375728052Z"} +2026/03/22 08:56:57 [detection_layer] {"stage_name":"detection_layer","events_processed":350,"events_dropped":0,"avg_latency_ms":16.548557249518513,"throughput_eps":0,"last_update":"2026-03-22T08:56:52.478977449Z"} +2026/03/22 08:56:57 [transform_engine] {"stage_name":"transform_engine","events_processed":350,"events_dropped":0,"avg_latency_ms":1618.1749095159955,"throughput_eps":0,"last_update":"2026-03-22T08:56:52.478939075Z"} +2026/03/22 08:56:57 ───────────────────────────────────────────────── +2026/03/22 08:57:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:57:02 [log_collector] {"stage_name":"log_collector","events_processed":16857,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3371.4,"last_update":"2026-03-22T08:56:57.368581014Z"} +2026/03/22 08:57:02 [metric_collector] {"stage_name":"metric_collector","events_processed":10529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2105.8,"last_update":"2026-03-22T08:56:57.368311147Z"} +2026/03/22 08:57:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:56:57.379311029Z"} +2026/03/22 08:57:02 [detection_layer] {"stage_name":"detection_layer","events_processed":350,"events_dropped":0,"avg_latency_ms":16.548557249518513,"throughput_eps":0,"last_update":"2026-03-22T08:56:57.479529249Z"} +2026/03/22 08:57:02 [transform_engine] {"stage_name":"transform_engine","events_processed":351,"events_dropped":0,"avg_latency_ms":1320.2610162127964,"throughput_eps":0,"last_update":"2026-03-22T08:56:57.608189947Z"} +2026/03/22 08:57:02 ───────────────────────────────────────────────── +2026/03/22 08:57:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:57:07 [log_collector] {"stage_name":"log_collector","events_processed":16857,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3371.4,"last_update":"2026-03-22T08:57:02.369008541Z"} +2026/03/22 08:57:07 [metric_collector] {"stage_name":"metric_collector","events_processed":10534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2106.8,"last_update":"2026-03-22T08:57:02.368999092Z"} +2026/03/22 08:57:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:57:02.380440541Z"} +2026/03/22 08:57:07 [detection_layer] {"stage_name":"detection_layer","events_processed":351,"events_dropped":0,"avg_latency_ms":16.915593399614814,"throughput_eps":0,"last_update":"2026-03-22T08:57:02.479936877Z"} +2026/03/22 08:57:07 [transform_engine] {"stage_name":"transform_engine","events_processed":351,"events_dropped":0,"avg_latency_ms":1320.2610162127964,"throughput_eps":0,"last_update":"2026-03-22T08:57:02.479895498Z"} +2026/03/22 08:57:07 ───────────────────────────────────────────────── +2026/03/22 08:57:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:57:12 [log_collector] {"stage_name":"log_collector","events_processed":16857,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3371.4,"last_update":"2026-03-22T08:57:12.368638622Z"} +2026/03/22 08:57:12 [metric_collector] {"stage_name":"metric_collector","events_processed":10539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2107.8,"last_update":"2026-03-22T08:57:07.368309704Z"} +2026/03/22 08:57:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:57:07.379160651Z"} +2026/03/22 08:57:12 [detection_layer] {"stage_name":"detection_layer","events_processed":351,"events_dropped":0,"avg_latency_ms":16.915593399614814,"throughput_eps":0,"last_update":"2026-03-22T08:57:07.479386476Z"} +2026/03/22 08:57:12 [transform_engine] {"stage_name":"transform_engine","events_processed":351,"events_dropped":0,"avg_latency_ms":1320.2610162127964,"throughput_eps":0,"last_update":"2026-03-22T08:57:07.479413818Z"} +2026/03/22 08:57:12 ───────────────────────────────────────────────── +2026/03/22 08:57:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:57:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:57:12.378912153Z"} +2026/03/22 08:57:17 [detection_layer] {"stage_name":"detection_layer","events_processed":351,"events_dropped":0,"avg_latency_ms":16.915593399614814,"throughput_eps":0,"last_update":"2026-03-22T08:57:12.479180099Z"} +2026/03/22 08:57:17 [transform_engine] {"stage_name":"transform_engine","events_processed":351,"events_dropped":0,"avg_latency_ms":1320.2610162127964,"throughput_eps":0,"last_update":"2026-03-22T08:57:12.479137387Z"} +2026/03/22 08:57:17 [log_collector] {"stage_name":"log_collector","events_processed":16857,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3371.4,"last_update":"2026-03-22T08:57:12.368638622Z"} +2026/03/22 08:57:17 [metric_collector] {"stage_name":"metric_collector","events_processed":10544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2108.8,"last_update":"2026-03-22T08:57:12.369375554Z"} +2026/03/22 08:57:17 ───────────────────────────────────────────────── +2026/03/22 08:57:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:57:22 [detection_layer] {"stage_name":"detection_layer","events_processed":351,"events_dropped":0,"avg_latency_ms":16.915593399614814,"throughput_eps":0,"last_update":"2026-03-22T08:57:17.479642717Z"} +2026/03/22 08:57:22 [transform_engine] {"stage_name":"transform_engine","events_processed":351,"events_dropped":0,"avg_latency_ms":1320.2610162127964,"throughput_eps":0,"last_update":"2026-03-22T08:57:17.479592952Z"} +2026/03/22 08:57:22 [log_collector] {"stage_name":"log_collector","events_processed":16857,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3371.4,"last_update":"2026-03-22T08:57:17.368618626Z"} +2026/03/22 08:57:22 [metric_collector] {"stage_name":"metric_collector","events_processed":10549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2109.8,"last_update":"2026-03-22T08:57:17.3691014Z"} +2026/03/22 08:57:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4222,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:57:17.37839232Z"} +2026/03/22 08:57:22 ───────────────────────────────────────────────── +2026/03/22 08:57:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:57:27 [transform_engine] {"stage_name":"transform_engine","events_processed":351,"events_dropped":0,"avg_latency_ms":1320.2610162127964,"throughput_eps":0,"last_update":"2026-03-22T08:57:22.479061611Z"} +2026/03/22 08:57:27 [log_collector] {"stage_name":"log_collector","events_processed":16857,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3371.4,"last_update":"2026-03-22T08:57:27.368961986Z"} +2026/03/22 08:57:27 [metric_collector] {"stage_name":"metric_collector","events_processed":10554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2110.8,"last_update":"2026-03-22T08:57:22.36856883Z"} +2026/03/22 08:57:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:57:22.378861717Z"} +2026/03/22 08:57:27 [detection_layer] {"stage_name":"detection_layer","events_processed":351,"events_dropped":0,"avg_latency_ms":16.915593399614814,"throughput_eps":0,"last_update":"2026-03-22T08:57:22.479167475Z"} +2026/03/22 08:57:27 ───────────────────────────────────────────────── +2026/03/22 08:57:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:57:32 [transform_engine] {"stage_name":"transform_engine","events_processed":352,"events_dropped":0,"avg_latency_ms":1070.0020409702372,"throughput_eps":0,"last_update":"2026-03-22T08:57:27.548164887Z"} +2026/03/22 08:57:32 [log_collector] {"stage_name":"log_collector","events_processed":16857,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3371.4,"last_update":"2026-03-22T08:57:27.368961986Z"} +2026/03/22 08:57:32 [metric_collector] {"stage_name":"metric_collector","events_processed":10559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2111.8,"last_update":"2026-03-22T08:57:27.369251379Z"} +2026/03/22 08:57:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:57:27.378815552Z"} +2026/03/22 08:57:32 [detection_layer] {"stage_name":"detection_layer","events_processed":351,"events_dropped":0,"avg_latency_ms":16.915593399614814,"throughput_eps":0,"last_update":"2026-03-22T08:57:27.479180483Z"} +2026/03/22 08:57:32 ───────────────────────────────────────────────── +2026/03/22 08:57:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:57:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:57:32.378392708Z"} +2026/03/22 08:57:37 [detection_layer] {"stage_name":"detection_layer","events_processed":352,"events_dropped":0,"avg_latency_ms":17.53940271969185,"throughput_eps":0,"last_update":"2026-03-22T08:57:32.479615042Z"} +2026/03/22 08:57:37 [transform_engine] {"stage_name":"transform_engine","events_processed":352,"events_dropped":0,"avg_latency_ms":1070.0020409702372,"throughput_eps":0,"last_update":"2026-03-22T08:57:32.479622316Z"} +2026/03/22 08:57:37 [log_collector] {"stage_name":"log_collector","events_processed":16857,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3371.4,"last_update":"2026-03-22T08:57:32.368982211Z"} +2026/03/22 08:57:37 [metric_collector] {"stage_name":"metric_collector","events_processed":10564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2112.8,"last_update":"2026-03-22T08:57:32.36943622Z"} +2026/03/22 08:57:37 ───────────────────────────────────────────────── +2026/03/22 08:57:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:57:42 [log_collector] {"stage_name":"log_collector","events_processed":16857,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3371.4,"last_update":"2026-03-22T08:57:37.368617246Z"} +2026/03/22 08:57:42 [metric_collector] {"stage_name":"metric_collector","events_processed":10569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2113.8,"last_update":"2026-03-22T08:57:37.368878176Z"} +2026/03/22 08:57:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:57:37.378233338Z"} +2026/03/22 08:57:42 [detection_layer] {"stage_name":"detection_layer","events_processed":352,"events_dropped":0,"avg_latency_ms":17.53940271969185,"throughput_eps":0,"last_update":"2026-03-22T08:57:37.479451463Z"} +2026/03/22 08:57:42 [transform_engine] {"stage_name":"transform_engine","events_processed":352,"events_dropped":0,"avg_latency_ms":1070.0020409702372,"throughput_eps":0,"last_update":"2026-03-22T08:57:37.479461762Z"} +2026/03/22 08:57:42 ───────────────────────────────────────────────── +2026/03/22 08:57:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:57:47 [log_collector] {"stage_name":"log_collector","events_processed":16857,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3371.4,"last_update":"2026-03-22T08:57:42.367995845Z"} +2026/03/22 08:57:47 [metric_collector] {"stage_name":"metric_collector","events_processed":10574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2114.8,"last_update":"2026-03-22T08:57:42.368479952Z"} +2026/03/22 08:57:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:57:42.377123811Z"} +2026/03/22 08:57:47 [detection_layer] {"stage_name":"detection_layer","events_processed":352,"events_dropped":0,"avg_latency_ms":17.53940271969185,"throughput_eps":0,"last_update":"2026-03-22T08:57:42.479422727Z"} +2026/03/22 08:57:47 [transform_engine] {"stage_name":"transform_engine","events_processed":352,"events_dropped":0,"avg_latency_ms":1070.0020409702372,"throughput_eps":0,"last_update":"2026-03-22T08:57:42.47942943Z"} +2026/03/22 08:57:47 ───────────────────────────────────────────────── +2026/03/22 08:57:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:57:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:57:47.375548036Z"} +2026/03/22 08:57:52 [detection_layer] {"stage_name":"detection_layer","events_processed":352,"events_dropped":0,"avg_latency_ms":17.53940271969185,"throughput_eps":0,"last_update":"2026-03-22T08:57:47.47978279Z"} +2026/03/22 08:57:52 [transform_engine] {"stage_name":"transform_engine","events_processed":352,"events_dropped":0,"avg_latency_ms":1070.0020409702372,"throughput_eps":0,"last_update":"2026-03-22T08:57:47.479796116Z"} +2026/03/22 08:57:52 [log_collector] {"stage_name":"log_collector","events_processed":16857,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3371.4,"last_update":"2026-03-22T08:57:47.368254634Z"} +2026/03/22 08:57:52 [metric_collector] {"stage_name":"metric_collector","events_processed":10579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2115.8,"last_update":"2026-03-22T08:57:47.368507058Z"} +2026/03/22 08:57:52 ───────────────────────────────────────────────── +2026/03/22 08:57:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:57:57 [log_collector] {"stage_name":"log_collector","events_processed":16857,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3371.4,"last_update":"2026-03-22T08:57:57.368773905Z"} +2026/03/22 08:57:57 [metric_collector] {"stage_name":"metric_collector","events_processed":10584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2116.8,"last_update":"2026-03-22T08:57:52.368712813Z"} +2026/03/22 08:57:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:57:52.376990149Z"} +2026/03/22 08:57:57 [detection_layer] {"stage_name":"detection_layer","events_processed":352,"events_dropped":0,"avg_latency_ms":17.53940271969185,"throughput_eps":0,"last_update":"2026-03-22T08:57:52.479215554Z"} +2026/03/22 08:57:57 [transform_engine] {"stage_name":"transform_engine","events_processed":352,"events_dropped":0,"avg_latency_ms":1070.0020409702372,"throughput_eps":0,"last_update":"2026-03-22T08:57:52.479224621Z"} +2026/03/22 08:57:57 ───────────────────────────────────────────────── +2026/03/22 08:58:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:58:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:57:57.377645111Z"} +2026/03/22 08:58:02 [detection_layer] {"stage_name":"detection_layer","events_processed":352,"events_dropped":0,"avg_latency_ms":17.53940271969185,"throughput_eps":0,"last_update":"2026-03-22T08:57:57.480135091Z"} +2026/03/22 08:58:02 [transform_engine] {"stage_name":"transform_engine","events_processed":353,"events_dropped":0,"avg_latency_ms":869.9843237761899,"throughput_eps":0,"last_update":"2026-03-22T08:57:57.548738706Z"} +2026/03/22 08:58:02 [log_collector] {"stage_name":"log_collector","events_processed":16857,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3371.4,"last_update":"2026-03-22T08:58:02.368748418Z"} +2026/03/22 08:58:02 [metric_collector] {"stage_name":"metric_collector","events_processed":10589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2117.8,"last_update":"2026-03-22T08:57:57.369073199Z"} +2026/03/22 08:58:02 ───────────────────────────────────────────────── +2026/03/22 08:58:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:58:07 [transform_engine] {"stage_name":"transform_engine","events_processed":353,"events_dropped":0,"avg_latency_ms":869.9843237761899,"throughput_eps":0,"last_update":"2026-03-22T08:58:02.479622561Z"} +2026/03/22 08:58:07 [log_collector] {"stage_name":"log_collector","events_processed":16857,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3371.4,"last_update":"2026-03-22T08:58:07.367986403Z"} +2026/03/22 08:58:07 [metric_collector] {"stage_name":"metric_collector","events_processed":10594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2118.8,"last_update":"2026-03-22T08:58:02.369150197Z"} +2026/03/22 08:58:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:58:02.378247635Z"} +2026/03/22 08:58:07 [detection_layer] {"stage_name":"detection_layer","events_processed":353,"events_dropped":0,"avg_latency_ms":17.99143217575348,"throughput_eps":0,"last_update":"2026-03-22T08:58:02.479607401Z"} +2026/03/22 08:58:07 ───────────────────────────────────────────────── +2026/03/22 08:58:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:58:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:58:07.378818033Z"} +2026/03/22 08:58:12 [detection_layer] {"stage_name":"detection_layer","events_processed":353,"events_dropped":0,"avg_latency_ms":17.99143217575348,"throughput_eps":0,"last_update":"2026-03-22T08:58:07.479188604Z"} +2026/03/22 08:58:12 [transform_engine] {"stage_name":"transform_engine","events_processed":353,"events_dropped":0,"avg_latency_ms":869.9843237761899,"throughput_eps":0,"last_update":"2026-03-22T08:58:07.479201299Z"} +2026/03/22 08:58:12 [log_collector] {"stage_name":"log_collector","events_processed":16857,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3371.4,"last_update":"2026-03-22T08:58:07.367986403Z"} +2026/03/22 08:58:12 [metric_collector] {"stage_name":"metric_collector","events_processed":10599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2119.8,"last_update":"2026-03-22T08:58:07.368526017Z"} +2026/03/22 08:58:12 ───────────────────────────────────────────────── +Saved state: 13 clusters, 16858 messages, reason: none +2026/03/22 08:58:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:58:17 [log_collector] {"stage_name":"log_collector","events_processed":16857,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3371.4,"last_update":"2026-03-22T08:58:12.367979092Z"} +2026/03/22 08:58:17 [metric_collector] {"stage_name":"metric_collector","events_processed":10604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2120.8,"last_update":"2026-03-22T08:58:12.368676478Z"} +2026/03/22 08:58:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:58:12.377848789Z"} +2026/03/22 08:58:17 [detection_layer] {"stage_name":"detection_layer","events_processed":353,"events_dropped":0,"avg_latency_ms":17.99143217575348,"throughput_eps":0,"last_update":"2026-03-22T08:58:12.479290161Z"} +2026/03/22 08:58:17 [transform_engine] {"stage_name":"transform_engine","events_processed":353,"events_dropped":0,"avg_latency_ms":869.9843237761899,"throughput_eps":0,"last_update":"2026-03-22T08:58:12.479306643Z"} +2026/03/22 08:58:17 ───────────────────────────────────────────────── +2026/03/22 08:58:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:58:22 [log_collector] {"stage_name":"log_collector","events_processed":16860,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3372,"last_update":"2026-03-22T08:58:17.36795779Z"} +2026/03/22 08:58:22 [metric_collector] {"stage_name":"metric_collector","events_processed":10609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2121.8,"last_update":"2026-03-22T08:58:17.368324982Z"} +2026/03/22 08:58:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4246,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:58:17.374862737Z"} +2026/03/22 08:58:22 [detection_layer] {"stage_name":"detection_layer","events_processed":353,"events_dropped":0,"avg_latency_ms":17.99143217575348,"throughput_eps":0,"last_update":"2026-03-22T08:58:17.479294098Z"} +2026/03/22 08:58:22 [transform_engine] {"stage_name":"transform_engine","events_processed":353,"events_dropped":0,"avg_latency_ms":869.9843237761899,"throughput_eps":0,"last_update":"2026-03-22T08:58:17.479305779Z"} +2026/03/22 08:58:22 ───────────────────────────────────────────────── +2026/03/22 08:58:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:58:27 [log_collector] {"stage_name":"log_collector","events_processed":16860,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3372,"last_update":"2026-03-22T08:58:22.368145803Z"} +2026/03/22 08:58:27 [metric_collector] {"stage_name":"metric_collector","events_processed":10614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2122.8,"last_update":"2026-03-22T08:58:22.368142657Z"} +2026/03/22 08:58:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:58:22.376802337Z"} +2026/03/22 08:58:27 [detection_layer] {"stage_name":"detection_layer","events_processed":353,"events_dropped":0,"avg_latency_ms":17.99143217575348,"throughput_eps":0,"last_update":"2026-03-22T08:58:22.479073839Z"} +2026/03/22 08:58:27 [transform_engine] {"stage_name":"transform_engine","events_processed":353,"events_dropped":0,"avg_latency_ms":869.9843237761899,"throughput_eps":0,"last_update":"2026-03-22T08:58:22.479087124Z"} +2026/03/22 08:58:27 ───────────────────────────────────────────────── +2026/03/22 08:58:27 [ANOMALY] time=2026-03-22T08:58:27Z score=0.8102 method=SEAD details=MAD!:w=0.48,s=0.75 RRCF-fast:w=0.13,s=0.85 RRCF-mid:w=0.12,s=0.75 RRCF-slow!:w=0.09,s=0.86 COPOD!:w=0.17,s=0.96 +2026/03/22 08:58:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:58:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:58:27.377615644Z"} +2026/03/22 08:58:32 [detection_layer] {"stage_name":"detection_layer","events_processed":353,"events_dropped":0,"avg_latency_ms":17.99143217575348,"throughput_eps":0,"last_update":"2026-03-22T08:58:27.479614775Z"} +2026/03/22 08:58:32 [transform_engine] {"stage_name":"transform_engine","events_processed":354,"events_dropped":0,"avg_latency_ms":716.8507988209519,"throughput_eps":0,"last_update":"2026-03-22T08:58:27.583948016Z"} +2026/03/22 08:58:32 [log_collector] {"stage_name":"log_collector","events_processed":16870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3374,"last_update":"2026-03-22T08:58:27.368631784Z"} +2026/03/22 08:58:32 [metric_collector] {"stage_name":"metric_collector","events_processed":10619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2123.8,"last_update":"2026-03-22T08:58:27.368931037Z"} +2026/03/22 08:58:32 ───────────────────────────────────────────────── +2026/03/22 08:58:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:58:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:58:32.37684413Z"} +2026/03/22 08:58:37 [detection_layer] {"stage_name":"detection_layer","events_processed":354,"events_dropped":0,"avg_latency_ms":17.147686540602784,"throughput_eps":0,"last_update":"2026-03-22T08:58:32.479049536Z"} +2026/03/22 08:58:37 [transform_engine] {"stage_name":"transform_engine","events_processed":354,"events_dropped":0,"avg_latency_ms":716.8507988209519,"throughput_eps":0,"last_update":"2026-03-22T08:58:32.479021232Z"} +2026/03/22 08:58:37 [log_collector] {"stage_name":"log_collector","events_processed":16871,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3374.2,"last_update":"2026-03-22T08:58:32.368128604Z"} +2026/03/22 08:58:37 [metric_collector] {"stage_name":"metric_collector","events_processed":10624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2124.8,"last_update":"2026-03-22T08:58:32.368600218Z"} +2026/03/22 08:58:37 ───────────────────────────────────────────────── +2026/03/22 08:58:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:58:42 [detection_layer] {"stage_name":"detection_layer","events_processed":354,"events_dropped":0,"avg_latency_ms":17.147686540602784,"throughput_eps":0,"last_update":"2026-03-22T08:58:37.479698401Z"} +2026/03/22 08:58:42 [transform_engine] {"stage_name":"transform_engine","events_processed":354,"events_dropped":0,"avg_latency_ms":716.8507988209519,"throughput_eps":0,"last_update":"2026-03-22T08:58:37.479749128Z"} +2026/03/22 08:58:42 [log_collector] {"stage_name":"log_collector","events_processed":16887,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3377.4,"last_update":"2026-03-22T08:58:37.36848588Z"} +2026/03/22 08:58:42 [metric_collector] {"stage_name":"metric_collector","events_processed":10629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2125.8,"last_update":"2026-03-22T08:58:37.368932806Z"} +2026/03/22 08:58:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:58:37.377470542Z"} +2026/03/22 08:58:42 ───────────────────────────────────────────────── +2026/03/22 08:58:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:58:47 [log_collector] {"stage_name":"log_collector","events_processed":16900,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3380,"last_update":"2026-03-22T08:58:42.368018312Z"} +2026/03/22 08:58:47 [metric_collector] {"stage_name":"metric_collector","events_processed":10634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2126.8,"last_update":"2026-03-22T08:58:42.368707182Z"} +2026/03/22 08:58:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:58:42.374913201Z"} +2026/03/22 08:58:47 [detection_layer] {"stage_name":"detection_layer","events_processed":354,"events_dropped":0,"avg_latency_ms":17.147686540602784,"throughput_eps":0,"last_update":"2026-03-22T08:58:42.479168212Z"} +2026/03/22 08:58:47 [transform_engine] {"stage_name":"transform_engine","events_processed":354,"events_dropped":0,"avg_latency_ms":716.8507988209519,"throughput_eps":0,"last_update":"2026-03-22T08:58:42.479129237Z"} +2026/03/22 08:58:47 ───────────────────────────────────────────────── +2026/03/22 08:58:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:58:52 [detection_layer] {"stage_name":"detection_layer","events_processed":354,"events_dropped":0,"avg_latency_ms":17.147686540602784,"throughput_eps":0,"last_update":"2026-03-22T08:58:47.47948926Z"} +2026/03/22 08:58:52 [transform_engine] {"stage_name":"transform_engine","events_processed":354,"events_dropped":0,"avg_latency_ms":716.8507988209519,"throughput_eps":0,"last_update":"2026-03-22T08:58:47.479384489Z"} +2026/03/22 08:58:52 [log_collector] {"stage_name":"log_collector","events_processed":16901,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3380.2,"last_update":"2026-03-22T08:58:47.368413061Z"} +2026/03/22 08:58:52 [metric_collector] {"stage_name":"metric_collector","events_processed":10639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2127.8,"last_update":"2026-03-22T08:58:47.368425505Z"} +2026/03/22 08:58:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:58:47.377993614Z"} +2026/03/22 08:58:52 ───────────────────────────────────────────────── +2026/03/22 08:58:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:58:57 [transform_engine] {"stage_name":"transform_engine","events_processed":354,"events_dropped":0,"avg_latency_ms":716.8507988209519,"throughput_eps":0,"last_update":"2026-03-22T08:58:52.479228598Z"} +2026/03/22 08:58:57 [log_collector] {"stage_name":"log_collector","events_processed":16901,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3380.2,"last_update":"2026-03-22T08:58:52.368684387Z"} +2026/03/22 08:58:57 [metric_collector] {"stage_name":"metric_collector","events_processed":10644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2128.8,"last_update":"2026-03-22T08:58:52.369125402Z"} +2026/03/22 08:58:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:58:52.378059117Z"} +2026/03/22 08:58:57 [detection_layer] {"stage_name":"detection_layer","events_processed":354,"events_dropped":0,"avg_latency_ms":17.147686540602784,"throughput_eps":0,"last_update":"2026-03-22T08:58:52.479257162Z"} +2026/03/22 08:58:57 ───────────────────────────────────────────────── +2026/03/22 08:59:02 ── Pipeline Health ────────────────────────────── +2026/03/22 08:59:02 [metric_collector] {"stage_name":"metric_collector","events_processed":10649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2129.8,"last_update":"2026-03-22T08:58:57.369304602Z"} +2026/03/22 08:59:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:58:57.37920149Z"} +2026/03/22 08:59:02 [detection_layer] {"stage_name":"detection_layer","events_processed":354,"events_dropped":0,"avg_latency_ms":17.147686540602784,"throughput_eps":0,"last_update":"2026-03-22T08:58:57.479479081Z"} +2026/03/22 08:59:02 [transform_engine] {"stage_name":"transform_engine","events_processed":355,"events_dropped":0,"avg_latency_ms":596.1224502567616,"throughput_eps":0,"last_update":"2026-03-22T08:58:57.592795232Z"} +2026/03/22 08:59:02 [log_collector] {"stage_name":"log_collector","events_processed":16901,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3380.2,"last_update":"2026-03-22T08:58:57.368964269Z"} +2026/03/22 08:59:02 ───────────────────────────────────────────────── +2026/03/22 08:59:07 ── Pipeline Health ────────────────────────────── +2026/03/22 08:59:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:59:02.377980131Z"} +2026/03/22 08:59:07 [detection_layer] {"stage_name":"detection_layer","events_processed":355,"events_dropped":0,"avg_latency_ms":17.56974783248223,"throughput_eps":0,"last_update":"2026-03-22T08:59:02.47928453Z"} +2026/03/22 08:59:07 [transform_engine] {"stage_name":"transform_engine","events_processed":355,"events_dropped":0,"avg_latency_ms":596.1224502567616,"throughput_eps":0,"last_update":"2026-03-22T08:59:02.47930053Z"} +2026/03/22 08:59:07 [log_collector] {"stage_name":"log_collector","events_processed":16901,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3380.2,"last_update":"2026-03-22T08:59:02.36882922Z"} +2026/03/22 08:59:07 [metric_collector] {"stage_name":"metric_collector","events_processed":10654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2130.8,"last_update":"2026-03-22T08:59:02.369662817Z"} +2026/03/22 08:59:07 ───────────────────────────────────────────────── +2026/03/22 08:59:12 ── Pipeline Health ────────────────────────────── +2026/03/22 08:59:12 [log_collector] {"stage_name":"log_collector","events_processed":16901,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3380.2,"last_update":"2026-03-22T08:59:07.368929629Z"} +2026/03/22 08:59:12 [metric_collector] {"stage_name":"metric_collector","events_processed":10659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2131.8,"last_update":"2026-03-22T08:59:07.369478431Z"} +2026/03/22 08:59:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:59:07.378443154Z"} +2026/03/22 08:59:12 [detection_layer] {"stage_name":"detection_layer","events_processed":355,"events_dropped":0,"avg_latency_ms":17.56974783248223,"throughput_eps":0,"last_update":"2026-03-22T08:59:07.479645658Z"} +2026/03/22 08:59:12 [transform_engine] {"stage_name":"transform_engine","events_processed":355,"events_dropped":0,"avg_latency_ms":596.1224502567616,"throughput_eps":0,"last_update":"2026-03-22T08:59:07.479658662Z"} +2026/03/22 08:59:12 ───────────────────────────────────────────────── +2026/03/22 08:59:17 ── Pipeline Health ────────────────────────────── +2026/03/22 08:59:17 [log_collector] {"stage_name":"log_collector","events_processed":16901,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3380.2,"last_update":"2026-03-22T08:59:12.367978571Z"} +2026/03/22 08:59:17 [metric_collector] {"stage_name":"metric_collector","events_processed":10664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2132.8,"last_update":"2026-03-22T08:59:12.368444904Z"} +2026/03/22 08:59:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:59:12.377703591Z"} +2026/03/22 08:59:17 [detection_layer] {"stage_name":"detection_layer","events_processed":355,"events_dropped":0,"avg_latency_ms":17.56974783248223,"throughput_eps":0,"last_update":"2026-03-22T08:59:12.478964416Z"} +2026/03/22 08:59:17 [transform_engine] {"stage_name":"transform_engine","events_processed":355,"events_dropped":0,"avg_latency_ms":596.1224502567616,"throughput_eps":0,"last_update":"2026-03-22T08:59:12.478915302Z"} +2026/03/22 08:59:17 ───────────────────────────────────────────────── +2026/03/22 08:59:22 ── Pipeline Health ────────────────────────────── +2026/03/22 08:59:22 [metric_collector] {"stage_name":"metric_collector","events_processed":10669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2133.8,"last_update":"2026-03-22T08:59:17.368687939Z"} +2026/03/22 08:59:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:59:17.377480713Z"} +2026/03/22 08:59:22 [detection_layer] {"stage_name":"detection_layer","events_processed":355,"events_dropped":0,"avg_latency_ms":17.56974783248223,"throughput_eps":0,"last_update":"2026-03-22T08:59:17.479602348Z"} +2026/03/22 08:59:22 [transform_engine] {"stage_name":"transform_engine","events_processed":355,"events_dropped":0,"avg_latency_ms":596.1224502567616,"throughput_eps":0,"last_update":"2026-03-22T08:59:17.479614431Z"} +2026/03/22 08:59:22 [log_collector] {"stage_name":"log_collector","events_processed":16901,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3380.2,"last_update":"2026-03-22T08:59:17.368169165Z"} +2026/03/22 08:59:22 ───────────────────────────────────────────────── +2026/03/22 08:59:27 ── Pipeline Health ────────────────────────────── +2026/03/22 08:59:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:59:22.378404147Z"} +2026/03/22 08:59:27 [detection_layer] {"stage_name":"detection_layer","events_processed":355,"events_dropped":0,"avg_latency_ms":17.56974783248223,"throughput_eps":0,"last_update":"2026-03-22T08:59:22.479623773Z"} +2026/03/22 08:59:27 [transform_engine] {"stage_name":"transform_engine","events_processed":355,"events_dropped":0,"avg_latency_ms":596.1224502567616,"throughput_eps":0,"last_update":"2026-03-22T08:59:22.479635576Z"} +2026/03/22 08:59:27 [log_collector] {"stage_name":"log_collector","events_processed":16901,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3380.2,"last_update":"2026-03-22T08:59:22.368106981Z"} +2026/03/22 08:59:27 [metric_collector] {"stage_name":"metric_collector","events_processed":10674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2134.8,"last_update":"2026-03-22T08:59:22.368656012Z"} +2026/03/22 08:59:27 ───────────────────────────────────────────────── +2026/03/22 08:59:32 ── Pipeline Health ────────────────────────────── +2026/03/22 08:59:32 [metric_collector] {"stage_name":"metric_collector","events_processed":10679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2135.8,"last_update":"2026-03-22T08:59:27.368492049Z"} +2026/03/22 08:59:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:59:27.375247251Z"} +2026/03/22 08:59:32 [detection_layer] {"stage_name":"detection_layer","events_processed":355,"events_dropped":0,"avg_latency_ms":17.56974783248223,"throughput_eps":0,"last_update":"2026-03-22T08:59:27.479570822Z"} +2026/03/22 08:59:32 [transform_engine] {"stage_name":"transform_engine","events_processed":356,"events_dropped":0,"avg_latency_ms":487.0727160054093,"throughput_eps":0,"last_update":"2026-03-22T08:59:27.530460652Z"} +2026/03/22 08:59:32 [log_collector] {"stage_name":"log_collector","events_processed":16901,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3380.2,"last_update":"2026-03-22T08:59:27.3680747Z"} +2026/03/22 08:59:32 ───────────────────────────────────────────────── +2026/03/22 08:59:37 ── Pipeline Health ────────────────────────────── +2026/03/22 08:59:37 [metric_collector] {"stage_name":"metric_collector","events_processed":10684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2136.8,"last_update":"2026-03-22T08:59:32.368962407Z"} +2026/03/22 08:59:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4276,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:59:32.377814215Z"} +2026/03/22 08:59:37 [detection_layer] {"stage_name":"detection_layer","events_processed":356,"events_dropped":0,"avg_latency_ms":17.348143265985783,"throughput_eps":0,"last_update":"2026-03-22T08:59:32.479092813Z"} +2026/03/22 08:59:37 [transform_engine] {"stage_name":"transform_engine","events_processed":356,"events_dropped":0,"avg_latency_ms":487.0727160054093,"throughput_eps":0,"last_update":"2026-03-22T08:59:32.479067224Z"} +2026/03/22 08:59:37 [log_collector] {"stage_name":"log_collector","events_processed":16901,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3380.2,"last_update":"2026-03-22T08:59:32.368378098Z"} +2026/03/22 08:59:37 ───────────────────────────────────────────────── +2026/03/22 08:59:42 ── Pipeline Health ────────────────────────────── +2026/03/22 08:59:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:59:37.37803367Z"} +2026/03/22 08:59:42 [detection_layer] {"stage_name":"detection_layer","events_processed":356,"events_dropped":0,"avg_latency_ms":17.348143265985783,"throughput_eps":0,"last_update":"2026-03-22T08:59:37.479315485Z"} +2026/03/22 08:59:42 [transform_engine] {"stage_name":"transform_engine","events_processed":356,"events_dropped":0,"avg_latency_ms":487.0727160054093,"throughput_eps":0,"last_update":"2026-03-22T08:59:37.479335082Z"} +2026/03/22 08:59:42 [log_collector] {"stage_name":"log_collector","events_processed":16901,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3380.2,"last_update":"2026-03-22T08:59:37.368471041Z"} +2026/03/22 08:59:42 [metric_collector] {"stage_name":"metric_collector","events_processed":10689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2137.8,"last_update":"2026-03-22T08:59:37.368891657Z"} +2026/03/22 08:59:42 ───────────────────────────────────────────────── +Saved state: 13 clusters, 16902 messages, reason: none +2026/03/22 08:59:47 ── Pipeline Health ────────────────────────────── +2026/03/22 08:59:47 [detection_layer] {"stage_name":"detection_layer","events_processed":356,"events_dropped":0,"avg_latency_ms":17.348143265985783,"throughput_eps":0,"last_update":"2026-03-22T08:59:42.479785165Z"} +2026/03/22 08:59:47 [transform_engine] {"stage_name":"transform_engine","events_processed":356,"events_dropped":0,"avg_latency_ms":487.0727160054093,"throughput_eps":0,"last_update":"2026-03-22T08:59:42.47979839Z"} +2026/03/22 08:59:47 [log_collector] {"stage_name":"log_collector","events_processed":16901,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3380.2,"last_update":"2026-03-22T08:59:42.368513182Z"} +2026/03/22 08:59:47 [metric_collector] {"stage_name":"metric_collector","events_processed":10694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2138.8,"last_update":"2026-03-22T08:59:42.369212732Z"} +2026/03/22 08:59:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:59:42.379540256Z"} +2026/03/22 08:59:47 ───────────────────────────────────────────────── +2026/03/22 08:59:52 ── Pipeline Health ────────────────────────────── +2026/03/22 08:59:52 [log_collector] {"stage_name":"log_collector","events_processed":16906,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3381.2,"last_update":"2026-03-22T08:59:47.368302153Z"} +2026/03/22 08:59:52 [metric_collector] {"stage_name":"metric_collector","events_processed":10698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2139.6,"last_update":"2026-03-22T08:59:47.368376756Z"} +2026/03/22 08:59:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:59:47.376728166Z"} +2026/03/22 08:59:52 [detection_layer] {"stage_name":"detection_layer","events_processed":356,"events_dropped":0,"avg_latency_ms":17.348143265985783,"throughput_eps":0,"last_update":"2026-03-22T08:59:47.480016043Z"} +2026/03/22 08:59:52 [transform_engine] {"stage_name":"transform_engine","events_processed":356,"events_dropped":0,"avg_latency_ms":487.0727160054093,"throughput_eps":0,"last_update":"2026-03-22T08:59:47.478879416Z"} +2026/03/22 08:59:52 ───────────────────────────────────────────────── +2026/03/22 08:59:57 ── Pipeline Health ────────────────────────────── +2026/03/22 08:59:57 [detection_layer] {"stage_name":"detection_layer","events_processed":356,"events_dropped":0,"avg_latency_ms":17.348143265985783,"throughput_eps":0,"last_update":"2026-03-22T08:59:52.479498024Z"} +2026/03/22 08:59:57 [transform_engine] {"stage_name":"transform_engine","events_processed":356,"events_dropped":0,"avg_latency_ms":487.0727160054093,"throughput_eps":0,"last_update":"2026-03-22T08:59:52.479509535Z"} +2026/03/22 08:59:57 [log_collector] {"stage_name":"log_collector","events_processed":16906,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3381.2,"last_update":"2026-03-22T08:59:52.368505165Z"} +2026/03/22 08:59:57 [metric_collector] {"stage_name":"metric_collector","events_processed":10703,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2140.6,"last_update":"2026-03-22T08:59:52.368446964Z"} +2026/03/22 08:59:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:59:52.37823809Z"} +2026/03/22 08:59:57 ───────────────────────────────────────────────── +2026/03/22 09:00:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:00:02 [log_collector] {"stage_name":"log_collector","events_processed":16906,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3381.2,"last_update":"2026-03-22T08:59:57.368566612Z"} +2026/03/22 09:00:02 [metric_collector] {"stage_name":"metric_collector","events_processed":10708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2141.6,"last_update":"2026-03-22T08:59:57.368503802Z"} +2026/03/22 09:00:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4286,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T08:59:57.38185024Z"} +2026/03/22 09:00:02 [detection_layer] {"stage_name":"detection_layer","events_processed":356,"events_dropped":0,"avg_latency_ms":17.348143265985783,"throughput_eps":0,"last_update":"2026-03-22T08:59:57.479103096Z"} +2026/03/22 09:00:02 [transform_engine] {"stage_name":"transform_engine","events_processed":356,"events_dropped":0,"avg_latency_ms":487.0727160054093,"throughput_eps":0,"last_update":"2026-03-22T08:59:52.479509535Z"} +2026/03/22 09:00:02 ───────────────────────────────────────────────── +2026/03/22 09:00:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:00:07 [transform_engine] {"stage_name":"transform_engine","events_processed":357,"events_dropped":0,"avg_latency_ms":1631.7211796043275,"throughput_eps":0,"last_update":"2026-03-22T09:00:03.689433991Z"} +2026/03/22 09:00:07 [log_collector] {"stage_name":"log_collector","events_processed":16906,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3381.2,"last_update":"2026-03-22T09:00:02.368936146Z"} +2026/03/22 09:00:07 [metric_collector] {"stage_name":"metric_collector","events_processed":10713,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2142.6,"last_update":"2026-03-22T09:00:02.368874617Z"} +2026/03/22 09:00:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:00:02.384048305Z"} +2026/03/22 09:00:07 [detection_layer] {"stage_name":"detection_layer","events_processed":356,"events_dropped":0,"avg_latency_ms":17.348143265985783,"throughput_eps":0,"last_update":"2026-03-22T09:00:02.479286893Z"} +2026/03/22 09:00:07 ───────────────────────────────────────────────── +2026/03/22 09:00:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:00:12 [log_collector] {"stage_name":"log_collector","events_processed":16906,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3381.2,"last_update":"2026-03-22T09:00:07.368448334Z"} +2026/03/22 09:00:12 [metric_collector] {"stage_name":"metric_collector","events_processed":10719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2143.8,"last_update":"2026-03-22T09:00:07.368605164Z"} +2026/03/22 09:00:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:00:07.377135736Z"} +2026/03/22 09:00:12 [detection_layer] {"stage_name":"detection_layer","events_processed":357,"events_dropped":0,"avg_latency_ms":17.187663812788628,"throughput_eps":0,"last_update":"2026-03-22T09:00:07.479318897Z"} +2026/03/22 09:00:12 [transform_engine] {"stage_name":"transform_engine","events_processed":357,"events_dropped":0,"avg_latency_ms":1631.7211796043275,"throughput_eps":0,"last_update":"2026-03-22T09:00:07.479331051Z"} +2026/03/22 09:00:12 ───────────────────────────────────────────────── +2026/03/22 09:00:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:00:17 [detection_layer] {"stage_name":"detection_layer","events_processed":357,"events_dropped":0,"avg_latency_ms":17.187663812788628,"throughput_eps":0,"last_update":"2026-03-22T09:00:12.479828352Z"} +2026/03/22 09:00:17 [transform_engine] {"stage_name":"transform_engine","events_processed":357,"events_dropped":0,"avg_latency_ms":1631.7211796043275,"throughput_eps":0,"last_update":"2026-03-22T09:00:12.479841807Z"} +2026/03/22 09:00:17 [log_collector] {"stage_name":"log_collector","events_processed":16906,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3381.2,"last_update":"2026-03-22T09:00:12.368386224Z"} +2026/03/22 09:00:17 [metric_collector] {"stage_name":"metric_collector","events_processed":10724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2144.8,"last_update":"2026-03-22T09:00:12.368137657Z"} +2026/03/22 09:00:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:00:12.376503493Z"} +2026/03/22 09:00:17 ───────────────────────────────────────────────── +2026/03/22 09:00:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:00:22 [log_collector] {"stage_name":"log_collector","events_processed":16906,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3381.2,"last_update":"2026-03-22T09:00:17.368071015Z"} +2026/03/22 09:00:22 [metric_collector] {"stage_name":"metric_collector","events_processed":10729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2145.8,"last_update":"2026-03-22T09:00:17.368247913Z"} +2026/03/22 09:00:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:00:17.376398217Z"} +2026/03/22 09:00:22 [detection_layer] {"stage_name":"detection_layer","events_processed":357,"events_dropped":0,"avg_latency_ms":17.187663812788628,"throughput_eps":0,"last_update":"2026-03-22T09:00:17.48045668Z"} +2026/03/22 09:00:22 [transform_engine] {"stage_name":"transform_engine","events_processed":357,"events_dropped":0,"avg_latency_ms":1631.7211796043275,"throughput_eps":0,"last_update":"2026-03-22T09:00:17.47887473Z"} +2026/03/22 09:00:22 ───────────────────────────────────────────────── +2026/03/22 09:00:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:00:27 [metric_collector] {"stage_name":"metric_collector","events_processed":10734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2146.8,"last_update":"2026-03-22T09:00:22.368295928Z"} +2026/03/22 09:00:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:00:22.368034566Z"} +2026/03/22 09:00:27 [detection_layer] {"stage_name":"detection_layer","events_processed":357,"events_dropped":0,"avg_latency_ms":17.187663812788628,"throughput_eps":0,"last_update":"2026-03-22T09:00:22.480386418Z"} +2026/03/22 09:00:27 [transform_engine] {"stage_name":"transform_engine","events_processed":357,"events_dropped":0,"avg_latency_ms":1631.7211796043275,"throughput_eps":0,"last_update":"2026-03-22T09:00:22.478893727Z"} +2026/03/22 09:00:27 [log_collector] {"stage_name":"log_collector","events_processed":16906,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3381.2,"last_update":"2026-03-22T09:00:22.367975453Z"} +2026/03/22 09:00:27 ───────────────────────────────────────────────── +2026/03/22 09:00:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:00:32 [metric_collector] {"stage_name":"metric_collector","events_processed":10739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2147.8,"last_update":"2026-03-22T09:00:27.368848944Z"} +2026/03/22 09:00:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:00:27.376873396Z"} +2026/03/22 09:00:32 [detection_layer] {"stage_name":"detection_layer","events_processed":357,"events_dropped":0,"avg_latency_ms":17.187663812788628,"throughput_eps":0,"last_update":"2026-03-22T09:00:27.479104018Z"} +2026/03/22 09:00:32 [transform_engine] {"stage_name":"transform_engine","events_processed":358,"events_dropped":0,"avg_latency_ms":1406.7523310834622,"throughput_eps":0,"last_update":"2026-03-22T09:00:27.985997357Z"} +2026/03/22 09:00:32 [log_collector] {"stage_name":"log_collector","events_processed":16909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3381.8,"last_update":"2026-03-22T09:00:27.368378653Z"} +2026/03/22 09:00:32 ───────────────────────────────────────────────── +2026/03/22 09:00:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:00:37 [log_collector] {"stage_name":"log_collector","events_processed":16917,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3383.4,"last_update":"2026-03-22T09:00:32.368257907Z"} +2026/03/22 09:00:37 [metric_collector] {"stage_name":"metric_collector","events_processed":10744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2148.8,"last_update":"2026-03-22T09:00:32.368715183Z"} +2026/03/22 09:00:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:00:32.377191771Z"} +2026/03/22 09:00:37 [detection_layer] {"stage_name":"detection_layer","events_processed":358,"events_dropped":0,"avg_latency_ms":16.303199850230904,"throughput_eps":0,"last_update":"2026-03-22T09:00:32.479635872Z"} +2026/03/22 09:00:37 [transform_engine] {"stage_name":"transform_engine","events_processed":358,"events_dropped":0,"avg_latency_ms":1406.7523310834622,"throughput_eps":0,"last_update":"2026-03-22T09:00:32.479652213Z"} +2026/03/22 09:00:37 ───────────────────────────────────────────────── +2026/03/22 09:00:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:00:42 [log_collector] {"stage_name":"log_collector","events_processed":16917,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3383.4,"last_update":"2026-03-22T09:00:37.367993271Z"} +2026/03/22 09:00:42 [metric_collector] {"stage_name":"metric_collector","events_processed":10749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2149.8,"last_update":"2026-03-22T09:00:37.368326891Z"} +2026/03/22 09:00:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:00:37.377846838Z"} +2026/03/22 09:00:42 [detection_layer] {"stage_name":"detection_layer","events_processed":358,"events_dropped":0,"avg_latency_ms":16.303199850230904,"throughput_eps":0,"last_update":"2026-03-22T09:00:37.479844673Z"} +2026/03/22 09:00:42 [transform_engine] {"stage_name":"transform_engine","events_processed":358,"events_dropped":0,"avg_latency_ms":1406.7523310834622,"throughput_eps":0,"last_update":"2026-03-22T09:00:37.479856275Z"} +2026/03/22 09:00:42 ───────────────────────────────────────────────── +2026/03/22 09:00:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:00:47 [log_collector] {"stage_name":"log_collector","events_processed":17216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3443.2,"last_update":"2026-03-22T09:00:42.368319646Z"} +2026/03/22 09:00:47 [metric_collector] {"stage_name":"metric_collector","events_processed":10754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2150.8,"last_update":"2026-03-22T09:00:42.368756483Z"} +2026/03/22 09:00:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:00:42.377293608Z"} +2026/03/22 09:00:47 [detection_layer] {"stage_name":"detection_layer","events_processed":358,"events_dropped":0,"avg_latency_ms":16.303199850230904,"throughput_eps":0,"last_update":"2026-03-22T09:00:42.479468672Z"} +2026/03/22 09:00:47 [transform_engine] {"stage_name":"transform_engine","events_processed":358,"events_dropped":0,"avg_latency_ms":1406.7523310834622,"throughput_eps":0,"last_update":"2026-03-22T09:00:42.479478542Z"} +2026/03/22 09:00:47 ───────────────────────────────────────────────── +2026/03/22 09:00:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:00:52 [log_collector] {"stage_name":"log_collector","events_processed":17272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3454.4,"last_update":"2026-03-22T09:00:47.36797448Z"} +2026/03/22 09:00:52 [metric_collector] {"stage_name":"metric_collector","events_processed":10759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2151.8,"last_update":"2026-03-22T09:00:47.368303531Z"} +2026/03/22 09:00:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:00:47.377785535Z"} +2026/03/22 09:00:52 [detection_layer] {"stage_name":"detection_layer","events_processed":358,"events_dropped":0,"avg_latency_ms":16.303199850230904,"throughput_eps":0,"last_update":"2026-03-22T09:00:47.479998643Z"} +2026/03/22 09:00:52 [transform_engine] {"stage_name":"transform_engine","events_processed":358,"events_dropped":0,"avg_latency_ms":1406.7523310834622,"throughput_eps":0,"last_update":"2026-03-22T09:00:47.47891081Z"} +2026/03/22 09:00:52 ───────────────────────────────────────────────── +2026/03/22 09:00:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:00:57 [log_collector] {"stage_name":"log_collector","events_processed":17272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3454.4,"last_update":"2026-03-22T09:00:52.367987938Z"} +2026/03/22 09:00:57 [metric_collector] {"stage_name":"metric_collector","events_processed":10764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2152.8,"last_update":"2026-03-22T09:00:52.368250792Z"} +2026/03/22 09:00:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:00:52.377181971Z"} +2026/03/22 09:00:57 [detection_layer] {"stage_name":"detection_layer","events_processed":358,"events_dropped":0,"avg_latency_ms":16.303199850230904,"throughput_eps":0,"last_update":"2026-03-22T09:00:52.47966207Z"} +2026/03/22 09:00:57 [transform_engine] {"stage_name":"transform_engine","events_processed":358,"events_dropped":0,"avg_latency_ms":1406.7523310834622,"throughput_eps":0,"last_update":"2026-03-22T09:00:52.479572219Z"} +2026/03/22 09:00:57 ───────────────────────────────────────────────── +2026/03/22 09:01:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:01:02 [log_collector] {"stage_name":"log_collector","events_processed":17272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3454.4,"last_update":"2026-03-22T09:00:57.368007284Z"} +2026/03/22 09:01:02 [metric_collector] {"stage_name":"metric_collector","events_processed":10769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2153.8,"last_update":"2026-03-22T09:00:57.368227416Z"} +2026/03/22 09:01:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:00:57.377211728Z"} +2026/03/22 09:01:02 [detection_layer] {"stage_name":"detection_layer","events_processed":358,"events_dropped":0,"avg_latency_ms":16.303199850230904,"throughput_eps":0,"last_update":"2026-03-22T09:00:57.4794847Z"} +2026/03/22 09:01:02 [transform_engine] {"stage_name":"transform_engine","events_processed":358,"events_dropped":0,"avg_latency_ms":1406.7523310834622,"throughput_eps":0,"last_update":"2026-03-22T09:00:57.479438591Z"} +2026/03/22 09:01:02 ───────────────────────────────────────────────── +Saved state: 13 clusters, 17273 messages, reason: none +2026/03/22 09:01:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:01:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:01:02.377764702Z"} +2026/03/22 09:01:07 [detection_layer] {"stage_name":"detection_layer","events_processed":359,"events_dropped":0,"avg_latency_ms":16.593342080184726,"throughput_eps":0,"last_update":"2026-03-22T09:01:02.480026132Z"} +2026/03/22 09:01:07 [transform_engine] {"stage_name":"transform_engine","events_processed":359,"events_dropped":0,"avg_latency_ms":1148.4518832667698,"throughput_eps":0,"last_update":"2026-03-22T09:01:02.478893714Z"} +2026/03/22 09:01:07 [log_collector] {"stage_name":"log_collector","events_processed":17272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3454.4,"last_update":"2026-03-22T09:01:02.368911232Z"} +2026/03/22 09:01:07 [metric_collector] {"stage_name":"metric_collector","events_processed":10774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2154.8,"last_update":"2026-03-22T09:01:02.369174726Z"} +2026/03/22 09:01:07 ───────────────────────────────────────────────── +2026/03/22 09:01:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:01:12 [detection_layer] {"stage_name":"detection_layer","events_processed":359,"events_dropped":0,"avg_latency_ms":16.593342080184726,"throughput_eps":0,"last_update":"2026-03-22T09:01:07.479131071Z"} +2026/03/22 09:01:12 [transform_engine] {"stage_name":"transform_engine","events_processed":359,"events_dropped":0,"avg_latency_ms":1148.4518832667698,"throughput_eps":0,"last_update":"2026-03-22T09:01:07.479168884Z"} +2026/03/22 09:01:12 [log_collector] {"stage_name":"log_collector","events_processed":17275,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3455,"last_update":"2026-03-22T09:01:07.367970202Z"} +2026/03/22 09:01:12 [metric_collector] {"stage_name":"metric_collector","events_processed":10779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2155.8,"last_update":"2026-03-22T09:01:07.368196315Z"} +2026/03/22 09:01:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:01:07.374914585Z"} +2026/03/22 09:01:12 ───────────────────────────────────────────────── +2026/03/22 09:01:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:01:17 [transform_engine] {"stage_name":"transform_engine","events_processed":359,"events_dropped":0,"avg_latency_ms":1148.4518832667698,"throughput_eps":0,"last_update":"2026-03-22T09:01:12.479295424Z"} +2026/03/22 09:01:17 [log_collector] {"stage_name":"log_collector","events_processed":17275,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3455,"last_update":"2026-03-22T09:01:12.368870055Z"} +2026/03/22 09:01:17 [metric_collector] {"stage_name":"metric_collector","events_processed":10784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2156.8,"last_update":"2026-03-22T09:01:12.36910275Z"} +2026/03/22 09:01:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:01:12.378150504Z"} +2026/03/22 09:01:17 [detection_layer] {"stage_name":"detection_layer","events_processed":359,"events_dropped":0,"avg_latency_ms":16.593342080184726,"throughput_eps":0,"last_update":"2026-03-22T09:01:12.479330913Z"} +2026/03/22 09:01:17 ───────────────────────────────────────────────── +2026/03/22 09:01:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:01:22 [metric_collector] {"stage_name":"metric_collector","events_processed":10789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2157.8,"last_update":"2026-03-22T09:01:17.369086055Z"} +2026/03/22 09:01:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:01:17.374908659Z"} +2026/03/22 09:01:22 [detection_layer] {"stage_name":"detection_layer","events_processed":359,"events_dropped":0,"avg_latency_ms":16.593342080184726,"throughput_eps":0,"last_update":"2026-03-22T09:01:17.479283729Z"} +2026/03/22 09:01:22 [transform_engine] {"stage_name":"transform_engine","events_processed":359,"events_dropped":0,"avg_latency_ms":1148.4518832667698,"throughput_eps":0,"last_update":"2026-03-22T09:01:17.47924831Z"} +2026/03/22 09:01:22 [log_collector] {"stage_name":"log_collector","events_processed":17285,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3457,"last_update":"2026-03-22T09:01:17.3688588Z"} +2026/03/22 09:01:22 ───────────────────────────────────────────────── +2026/03/22 09:01:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:01:27 [transform_engine] {"stage_name":"transform_engine","events_processed":359,"events_dropped":0,"avg_latency_ms":1148.4518832667698,"throughput_eps":0,"last_update":"2026-03-22T09:01:22.478891421Z"} +2026/03/22 09:01:27 [log_collector] {"stage_name":"log_collector","events_processed":17300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3460,"last_update":"2026-03-22T09:01:27.368206676Z"} +2026/03/22 09:01:27 [metric_collector] {"stage_name":"metric_collector","events_processed":10794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2158.8,"last_update":"2026-03-22T09:01:22.369393218Z"} +2026/03/22 09:01:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4320,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:01:22.377760096Z"} +2026/03/22 09:01:27 [detection_layer] {"stage_name":"detection_layer","events_processed":359,"events_dropped":0,"avg_latency_ms":16.593342080184726,"throughput_eps":0,"last_update":"2026-03-22T09:01:22.478963479Z"} +2026/03/22 09:01:27 ───────────────────────────────────────────────── +2026/03/22 09:01:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:01:32 [log_collector] {"stage_name":"log_collector","events_processed":17300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3460,"last_update":"2026-03-22T09:01:27.368206676Z"} +2026/03/22 09:01:32 [metric_collector] {"stage_name":"metric_collector","events_processed":10799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2159.8,"last_update":"2026-03-22T09:01:27.368676506Z"} +2026/03/22 09:01:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:01:27.376214326Z"} +2026/03/22 09:01:32 [detection_layer] {"stage_name":"detection_layer","events_processed":359,"events_dropped":0,"avg_latency_ms":16.593342080184726,"throughput_eps":0,"last_update":"2026-03-22T09:01:27.479567087Z"} +2026/03/22 09:01:32 [transform_engine] {"stage_name":"transform_engine","events_processed":359,"events_dropped":0,"avg_latency_ms":1148.4518832667698,"throughput_eps":0,"last_update":"2026-03-22T09:01:27.479481954Z"} +2026/03/22 09:01:32 ───────────────────────────────────────────────── +2026/03/22 09:01:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:01:37 [metric_collector] {"stage_name":"metric_collector","events_processed":10804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2160.8,"last_update":"2026-03-22T09:01:32.369067153Z"} +2026/03/22 09:01:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:01:32.377277551Z"} +2026/03/22 09:01:37 [detection_layer] {"stage_name":"detection_layer","events_processed":360,"events_dropped":0,"avg_latency_ms":16.068179264147783,"throughput_eps":0,"last_update":"2026-03-22T09:01:32.479492001Z"} +2026/03/22 09:01:37 [transform_engine] {"stage_name":"transform_engine","events_processed":360,"events_dropped":0,"avg_latency_ms":1308.910359013416,"throughput_eps":0,"last_update":"2026-03-22T09:01:32.479527348Z"} +2026/03/22 09:01:37 [log_collector] {"stage_name":"log_collector","events_processed":17302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3460.4,"last_update":"2026-03-22T09:01:37.36798248Z"} +2026/03/22 09:01:37 ───────────────────────────────────────────────── +2026/03/22 09:01:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:01:42 [log_collector] {"stage_name":"log_collector","events_processed":17302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3460.4,"last_update":"2026-03-22T09:01:42.368624381Z"} +2026/03/22 09:01:42 [metric_collector] {"stage_name":"metric_collector","events_processed":10809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2161.8,"last_update":"2026-03-22T09:01:37.368448663Z"} +2026/03/22 09:01:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:01:37.378188491Z"} +2026/03/22 09:01:42 [detection_layer] {"stage_name":"detection_layer","events_processed":360,"events_dropped":0,"avg_latency_ms":16.068179264147783,"throughput_eps":0,"last_update":"2026-03-22T09:01:37.479507987Z"} +2026/03/22 09:01:42 [transform_engine] {"stage_name":"transform_engine","events_processed":360,"events_dropped":0,"avg_latency_ms":1308.910359013416,"throughput_eps":0,"last_update":"2026-03-22T09:01:37.479543946Z"} +2026/03/22 09:01:42 ───────────────────────────────────────────────── +2026/03/22 09:01:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:01:47 [log_collector] {"stage_name":"log_collector","events_processed":17302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3460.4,"last_update":"2026-03-22T09:01:42.368624381Z"} +2026/03/22 09:01:47 [metric_collector] {"stage_name":"metric_collector","events_processed":10814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2162.8,"last_update":"2026-03-22T09:01:42.369299986Z"} +2026/03/22 09:01:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:01:42.37803559Z"} +2026/03/22 09:01:47 [detection_layer] {"stage_name":"detection_layer","events_processed":360,"events_dropped":0,"avg_latency_ms":16.068179264147783,"throughput_eps":0,"last_update":"2026-03-22T09:01:42.479229776Z"} +2026/03/22 09:01:47 [transform_engine] {"stage_name":"transform_engine","events_processed":360,"events_dropped":0,"avg_latency_ms":1308.910359013416,"throughput_eps":0,"last_update":"2026-03-22T09:01:42.479333234Z"} +2026/03/22 09:01:47 ───────────────────────────────────────────────── +2026/03/22 09:01:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:01:52 [transform_engine] {"stage_name":"transform_engine","events_processed":360,"events_dropped":0,"avg_latency_ms":1308.910359013416,"throughput_eps":0,"last_update":"2026-03-22T09:01:47.479173796Z"} +2026/03/22 09:01:52 [log_collector] {"stage_name":"log_collector","events_processed":17302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3460.4,"last_update":"2026-03-22T09:01:47.368020823Z"} +2026/03/22 09:01:52 [metric_collector] {"stage_name":"metric_collector","events_processed":10819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2163.8,"last_update":"2026-03-22T09:01:47.368415128Z"} +2026/03/22 09:01:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4330,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:01:47.378915234Z"} +2026/03/22 09:01:52 [detection_layer] {"stage_name":"detection_layer","events_processed":360,"events_dropped":0,"avg_latency_ms":16.068179264147783,"throughput_eps":0,"last_update":"2026-03-22T09:01:47.479216187Z"} +2026/03/22 09:01:52 ───────────────────────────────────────────────── +2026/03/22 09:01:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:01:57 [detection_layer] {"stage_name":"detection_layer","events_processed":360,"events_dropped":0,"avg_latency_ms":16.068179264147783,"throughput_eps":0,"last_update":"2026-03-22T09:01:52.479190083Z"} +2026/03/22 09:01:57 [transform_engine] {"stage_name":"transform_engine","events_processed":360,"events_dropped":0,"avg_latency_ms":1308.910359013416,"throughput_eps":0,"last_update":"2026-03-22T09:01:52.479147431Z"} +2026/03/22 09:01:57 [log_collector] {"stage_name":"log_collector","events_processed":17302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3460.4,"last_update":"2026-03-22T09:01:52.368601341Z"} +2026/03/22 09:01:57 [metric_collector] {"stage_name":"metric_collector","events_processed":10824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2164.8,"last_update":"2026-03-22T09:01:52.369407575Z"} +2026/03/22 09:01:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:01:52.378943182Z"} +2026/03/22 09:01:57 ───────────────────────────────────────────────── +2026/03/22 09:02:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:02:02 [log_collector] {"stage_name":"log_collector","events_processed":17302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3460.4,"last_update":"2026-03-22T09:01:57.368780796Z"} +2026/03/22 09:02:02 [metric_collector] {"stage_name":"metric_collector","events_processed":10829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2165.8,"last_update":"2026-03-22T09:01:57.369557565Z"} +2026/03/22 09:02:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:01:57.379218021Z"} +2026/03/22 09:02:02 [detection_layer] {"stage_name":"detection_layer","events_processed":360,"events_dropped":0,"avg_latency_ms":16.068179264147783,"throughput_eps":0,"last_update":"2026-03-22T09:01:57.479424283Z"} +2026/03/22 09:02:02 [transform_engine] {"stage_name":"transform_engine","events_processed":361,"events_dropped":0,"avg_latency_ms":1069.904342810733,"throughput_eps":0,"last_update":"2026-03-22T09:01:57.593321443Z"} +2026/03/22 09:02:02 ───────────────────────────────────────────────── +2026/03/22 09:02:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:02:07 [log_collector] {"stage_name":"log_collector","events_processed":17302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3460.4,"last_update":"2026-03-22T09:02:02.368251143Z"} +2026/03/22 09:02:07 [metric_collector] {"stage_name":"metric_collector","events_processed":10834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2166.8,"last_update":"2026-03-22T09:02:02.368771279Z"} +2026/03/22 09:02:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:02:02.377752815Z"} +2026/03/22 09:02:07 [detection_layer] {"stage_name":"detection_layer","events_processed":361,"events_dropped":0,"avg_latency_ms":17.028553611318227,"throughput_eps":0,"last_update":"2026-03-22T09:02:02.47895207Z"} +2026/03/22 09:02:07 [transform_engine] {"stage_name":"transform_engine","events_processed":361,"events_dropped":0,"avg_latency_ms":1069.904342810733,"throughput_eps":0,"last_update":"2026-03-22T09:02:02.478888378Z"} +2026/03/22 09:02:07 ───────────────────────────────────────────────── +2026/03/22 09:02:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:02:12 [log_collector] {"stage_name":"log_collector","events_processed":17302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3460.4,"last_update":"2026-03-22T09:02:07.368470851Z"} +2026/03/22 09:02:12 [metric_collector] {"stage_name":"metric_collector","events_processed":10839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2167.8,"last_update":"2026-03-22T09:02:07.369167676Z"} +2026/03/22 09:02:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:02:07.378381046Z"} +2026/03/22 09:02:12 [detection_layer] {"stage_name":"detection_layer","events_processed":361,"events_dropped":0,"avg_latency_ms":17.028553611318227,"throughput_eps":0,"last_update":"2026-03-22T09:02:07.479647079Z"} +2026/03/22 09:02:12 [transform_engine] {"stage_name":"transform_engine","events_processed":361,"events_dropped":0,"avg_latency_ms":1069.904342810733,"throughput_eps":0,"last_update":"2026-03-22T09:02:07.479681504Z"} +2026/03/22 09:02:12 ───────────────────────────────────────────────── +2026/03/22 09:02:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:02:17 [log_collector] {"stage_name":"log_collector","events_processed":17302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3460.4,"last_update":"2026-03-22T09:02:12.368625702Z"} +2026/03/22 09:02:17 [metric_collector] {"stage_name":"metric_collector","events_processed":10844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2168.8,"last_update":"2026-03-22T09:02:12.368962256Z"} +2026/03/22 09:02:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:02:12.377461287Z"} +2026/03/22 09:02:17 [detection_layer] {"stage_name":"detection_layer","events_processed":361,"events_dropped":0,"avg_latency_ms":17.028553611318227,"throughput_eps":0,"last_update":"2026-03-22T09:02:12.479715553Z"} +2026/03/22 09:02:17 [transform_engine] {"stage_name":"transform_engine","events_processed":361,"events_dropped":0,"avg_latency_ms":1069.904342810733,"throughput_eps":0,"last_update":"2026-03-22T09:02:12.479681739Z"} +2026/03/22 09:02:17 ───────────────────────────────────────────────── +2026/03/22 09:02:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:02:22 [metric_collector] {"stage_name":"metric_collector","events_processed":10849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2169.8,"last_update":"2026-03-22T09:02:17.36940754Z"} +2026/03/22 09:02:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4342,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:02:17.379379043Z"} +2026/03/22 09:02:22 [detection_layer] {"stage_name":"detection_layer","events_processed":361,"events_dropped":0,"avg_latency_ms":17.028553611318227,"throughput_eps":0,"last_update":"2026-03-22T09:02:17.479578392Z"} +2026/03/22 09:02:22 [transform_engine] {"stage_name":"transform_engine","events_processed":361,"events_dropped":0,"avg_latency_ms":1069.904342810733,"throughput_eps":0,"last_update":"2026-03-22T09:02:17.479616695Z"} +2026/03/22 09:02:22 [log_collector] {"stage_name":"log_collector","events_processed":17302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3460.4,"last_update":"2026-03-22T09:02:17.368893044Z"} +2026/03/22 09:02:22 ───────────────────────────────────────────────── +Saved state: 13 clusters, 17303 messages, reason: none +2026/03/22 09:02:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:02:27 [log_collector] {"stage_name":"log_collector","events_processed":17302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3460.4,"last_update":"2026-03-22T09:02:22.36862953Z"} +2026/03/22 09:02:27 [metric_collector] {"stage_name":"metric_collector","events_processed":10854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2170.8,"last_update":"2026-03-22T09:02:22.369094791Z"} +2026/03/22 09:02:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:02:22.378202519Z"} +2026/03/22 09:02:27 [detection_layer] {"stage_name":"detection_layer","events_processed":361,"events_dropped":0,"avg_latency_ms":17.028553611318227,"throughput_eps":0,"last_update":"2026-03-22T09:02:22.479632326Z"} +2026/03/22 09:02:27 [transform_engine] {"stage_name":"transform_engine","events_processed":361,"events_dropped":0,"avg_latency_ms":1069.904342810733,"throughput_eps":0,"last_update":"2026-03-22T09:02:22.4798123Z"} +2026/03/22 09:02:27 ───────────────────────────────────────────────── +2026/03/22 09:02:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:02:32 [log_collector] {"stage_name":"log_collector","events_processed":17305,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3461,"last_update":"2026-03-22T09:02:27.36824958Z"} +2026/03/22 09:02:32 [metric_collector] {"stage_name":"metric_collector","events_processed":10859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2171.8,"last_update":"2026-03-22T09:02:27.368244399Z"} +2026/03/22 09:02:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:02:27.376070702Z"} +2026/03/22 09:02:32 [detection_layer] {"stage_name":"detection_layer","events_processed":361,"events_dropped":0,"avg_latency_ms":17.028553611318227,"throughput_eps":0,"last_update":"2026-03-22T09:02:27.479270189Z"} +2026/03/22 09:02:32 [transform_engine] {"stage_name":"transform_engine","events_processed":362,"events_dropped":0,"avg_latency_ms":878.8713750485864,"throughput_eps":0,"last_update":"2026-03-22T09:02:27.594023469Z"} +2026/03/22 09:02:32 ───────────────────────────────────────────────── +2026/03/22 09:02:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:02:37 [detection_layer] {"stage_name":"detection_layer","events_processed":362,"events_dropped":0,"avg_latency_ms":17.35435708905458,"throughput_eps":0,"last_update":"2026-03-22T09:02:32.479453474Z"} +2026/03/22 09:02:37 [transform_engine] {"stage_name":"transform_engine","events_processed":362,"events_dropped":0,"avg_latency_ms":878.8713750485864,"throughput_eps":0,"last_update":"2026-03-22T09:02:32.479471057Z"} +2026/03/22 09:02:37 [log_collector] {"stage_name":"log_collector","events_processed":17316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3463.2,"last_update":"2026-03-22T09:02:32.368019913Z"} +2026/03/22 09:02:37 [metric_collector] {"stage_name":"metric_collector","events_processed":10864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2172.8,"last_update":"2026-03-22T09:02:32.36846733Z"} +2026/03/22 09:02:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:02:32.377172998Z"} +2026/03/22 09:02:37 ───────────────────────────────────────────────── +2026/03/22 09:02:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:02:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4350,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:02:37.378923022Z"} +2026/03/22 09:02:42 [detection_layer] {"stage_name":"detection_layer","events_processed":362,"events_dropped":0,"avg_latency_ms":17.35435708905458,"throughput_eps":0,"last_update":"2026-03-22T09:02:37.479129014Z"} +2026/03/22 09:02:42 [transform_engine] {"stage_name":"transform_engine","events_processed":362,"events_dropped":0,"avg_latency_ms":878.8713750485864,"throughput_eps":0,"last_update":"2026-03-22T09:02:37.479140657Z"} +2026/03/22 09:02:42 [log_collector] {"stage_name":"log_collector","events_processed":17316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3463.2,"last_update":"2026-03-22T09:02:37.368169742Z"} +2026/03/22 09:02:42 [metric_collector] {"stage_name":"metric_collector","events_processed":10869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2173.8,"last_update":"2026-03-22T09:02:37.368624193Z"} +2026/03/22 09:02:42 ───────────────────────────────────────────────── +2026/03/22 09:02:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:02:47 [transform_engine] {"stage_name":"transform_engine","events_processed":362,"events_dropped":0,"avg_latency_ms":878.8713750485864,"throughput_eps":0,"last_update":"2026-03-22T09:02:42.479649271Z"} +2026/03/22 09:02:47 [log_collector] {"stage_name":"log_collector","events_processed":17316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3463.2,"last_update":"2026-03-22T09:02:42.367989296Z"} +2026/03/22 09:02:47 [metric_collector] {"stage_name":"metric_collector","events_processed":10874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2174.8,"last_update":"2026-03-22T09:02:42.368232622Z"} +2026/03/22 09:02:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:02:42.377433748Z"} +2026/03/22 09:02:47 [detection_layer] {"stage_name":"detection_layer","events_processed":362,"events_dropped":0,"avg_latency_ms":17.35435708905458,"throughput_eps":0,"last_update":"2026-03-22T09:02:42.479636075Z"} +2026/03/22 09:02:47 ───────────────────────────────────────────────── +2026/03/22 09:02:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:02:52 [log_collector] {"stage_name":"log_collector","events_processed":17316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3463.2,"last_update":"2026-03-22T09:02:47.36802414Z"} +2026/03/22 09:02:52 [metric_collector] {"stage_name":"metric_collector","events_processed":10879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2175.8,"last_update":"2026-03-22T09:02:47.368416982Z"} +2026/03/22 09:02:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:02:47.375641362Z"} +2026/03/22 09:02:52 [detection_layer] {"stage_name":"detection_layer","events_processed":362,"events_dropped":0,"avg_latency_ms":17.35435708905458,"throughput_eps":0,"last_update":"2026-03-22T09:02:47.47985908Z"} +2026/03/22 09:02:52 [transform_engine] {"stage_name":"transform_engine","events_processed":362,"events_dropped":0,"avg_latency_ms":878.8713750485864,"throughput_eps":0,"last_update":"2026-03-22T09:02:47.479869209Z"} +2026/03/22 09:02:52 ───────────────────────────────────────────────── +2026/03/22 09:02:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:02:57 [log_collector] {"stage_name":"log_collector","events_processed":17316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3463.2,"last_update":"2026-03-22T09:02:52.368552387Z"} +2026/03/22 09:02:57 [metric_collector] {"stage_name":"metric_collector","events_processed":10884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2176.8,"last_update":"2026-03-22T09:02:52.36941546Z"} +2026/03/22 09:02:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:02:52.377386029Z"} +2026/03/22 09:02:57 [detection_layer] {"stage_name":"detection_layer","events_processed":362,"events_dropped":0,"avg_latency_ms":17.35435708905458,"throughput_eps":0,"last_update":"2026-03-22T09:02:52.479583195Z"} +2026/03/22 09:02:57 [transform_engine] {"stage_name":"transform_engine","events_processed":362,"events_dropped":0,"avg_latency_ms":878.8713750485864,"throughput_eps":0,"last_update":"2026-03-22T09:02:52.4796534Z"} +2026/03/22 09:02:57 ───────────────────────────────────────────────── +2026/03/22 09:03:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:03:02 [log_collector] {"stage_name":"log_collector","events_processed":17316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3463.2,"last_update":"2026-03-22T09:02:57.368086687Z"} +2026/03/22 09:03:02 [metric_collector] {"stage_name":"metric_collector","events_processed":10889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2177.8,"last_update":"2026-03-22T09:02:57.368414905Z"} +2026/03/22 09:03:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:02:57.3772133Z"} +2026/03/22 09:03:02 [detection_layer] {"stage_name":"detection_layer","events_processed":362,"events_dropped":0,"avg_latency_ms":17.35435708905458,"throughput_eps":0,"last_update":"2026-03-22T09:02:57.479377443Z"} +2026/03/22 09:03:02 [transform_engine] {"stage_name":"transform_engine","events_processed":363,"events_dropped":0,"avg_latency_ms":725.7010980388692,"throughput_eps":0,"last_update":"2026-03-22T09:02:57.592419675Z"} +2026/03/22 09:03:02 ───────────────────────────────────────────────── +2026/03/22 09:03:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:03:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4360,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:03:02.378168621Z"} +2026/03/22 09:03:07 [detection_layer] {"stage_name":"detection_layer","events_processed":363,"events_dropped":0,"avg_latency_ms":18.301639271243666,"throughput_eps":0,"last_update":"2026-03-22T09:03:02.47939649Z"} +2026/03/22 09:03:07 [transform_engine] {"stage_name":"transform_engine","events_processed":363,"events_dropped":0,"avg_latency_ms":725.7010980388692,"throughput_eps":0,"last_update":"2026-03-22T09:03:02.479410797Z"} +2026/03/22 09:03:07 [log_collector] {"stage_name":"log_collector","events_processed":17316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3463.2,"last_update":"2026-03-22T09:03:02.36880336Z"} +2026/03/22 09:03:07 [metric_collector] {"stage_name":"metric_collector","events_processed":10894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2178.8,"last_update":"2026-03-22T09:03:02.369122562Z"} +2026/03/22 09:03:07 ───────────────────────────────────────────────── +2026/03/22 09:03:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:03:12 [detection_layer] {"stage_name":"detection_layer","events_processed":363,"events_dropped":0,"avg_latency_ms":18.301639271243666,"throughput_eps":0,"last_update":"2026-03-22T09:03:07.479848513Z"} +2026/03/22 09:03:12 [transform_engine] {"stage_name":"transform_engine","events_processed":363,"events_dropped":0,"avg_latency_ms":725.7010980388692,"throughput_eps":0,"last_update":"2026-03-22T09:03:07.479862059Z"} +2026/03/22 09:03:12 [log_collector] {"stage_name":"log_collector","events_processed":17316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3463.2,"last_update":"2026-03-22T09:03:07.368015078Z"} +2026/03/22 09:03:12 [metric_collector] {"stage_name":"metric_collector","events_processed":10899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2179.8,"last_update":"2026-03-22T09:03:07.368401297Z"} +2026/03/22 09:03:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:03:07.37863963Z"} +2026/03/22 09:03:12 ───────────────────────────────────────────────── +2026/03/22 09:03:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:03:17 [log_collector] {"stage_name":"log_collector","events_processed":17316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3463.2,"last_update":"2026-03-22T09:03:12.367972151Z"} +2026/03/22 09:03:17 [metric_collector] {"stage_name":"metric_collector","events_processed":10904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2180.8,"last_update":"2026-03-22T09:03:12.368932Z"} +2026/03/22 09:03:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:03:12.377919616Z"} +2026/03/22 09:03:17 [detection_layer] {"stage_name":"detection_layer","events_processed":363,"events_dropped":0,"avg_latency_ms":18.301639271243666,"throughput_eps":0,"last_update":"2026-03-22T09:03:12.479119172Z"} +2026/03/22 09:03:17 [transform_engine] {"stage_name":"transform_engine","events_processed":363,"events_dropped":0,"avg_latency_ms":725.7010980388692,"throughput_eps":0,"last_update":"2026-03-22T09:03:12.479132828Z"} +2026/03/22 09:03:17 ───────────────────────────────────────────────── +2026/03/22 09:03:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:03:22 [log_collector] {"stage_name":"log_collector","events_processed":17316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3463.2,"last_update":"2026-03-22T09:03:17.36857096Z"} +2026/03/22 09:03:22 [metric_collector] {"stage_name":"metric_collector","events_processed":10909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2181.8,"last_update":"2026-03-22T09:03:17.369006283Z"} +2026/03/22 09:03:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:03:17.379217194Z"} +2026/03/22 09:03:22 [detection_layer] {"stage_name":"detection_layer","events_processed":363,"events_dropped":0,"avg_latency_ms":18.301639271243666,"throughput_eps":0,"last_update":"2026-03-22T09:03:17.479457101Z"} +2026/03/22 09:03:22 [transform_engine] {"stage_name":"transform_engine","events_processed":363,"events_dropped":0,"avg_latency_ms":725.7010980388692,"throughput_eps":0,"last_update":"2026-03-22T09:03:17.479469765Z"} +2026/03/22 09:03:22 ───────────────────────────────────────────────── +2026/03/22 09:03:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:03:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:03:22.379552105Z"} +2026/03/22 09:03:27 [detection_layer] {"stage_name":"detection_layer","events_processed":363,"events_dropped":0,"avg_latency_ms":18.301639271243666,"throughput_eps":0,"last_update":"2026-03-22T09:03:22.479769558Z"} +2026/03/22 09:03:27 [transform_engine] {"stage_name":"transform_engine","events_processed":363,"events_dropped":0,"avg_latency_ms":725.7010980388692,"throughput_eps":0,"last_update":"2026-03-22T09:03:22.479783615Z"} +2026/03/22 09:03:27 [log_collector] {"stage_name":"log_collector","events_processed":17316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3463.2,"last_update":"2026-03-22T09:03:22.36849885Z"} +2026/03/22 09:03:27 [metric_collector] {"stage_name":"metric_collector","events_processed":10914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2182.8,"last_update":"2026-03-22T09:03:22.368895019Z"} +2026/03/22 09:03:27 ───────────────────────────────────────────────── +Saved state: 13 clusters, 17317 messages, reason: none +2026/03/22 09:03:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:03:32 [metric_collector] {"stage_name":"metric_collector","events_processed":10919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2183.8,"last_update":"2026-03-22T09:03:27.368402502Z"} +2026/03/22 09:03:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:03:27.375395377Z"} +2026/03/22 09:03:32 [detection_layer] {"stage_name":"detection_layer","events_processed":363,"events_dropped":0,"avg_latency_ms":18.301639271243666,"throughput_eps":0,"last_update":"2026-03-22T09:03:27.479647961Z"} +2026/03/22 09:03:32 [transform_engine] {"stage_name":"transform_engine","events_processed":364,"events_dropped":0,"avg_latency_ms":593.4561334310954,"throughput_eps":0,"last_update":"2026-03-22T09:03:27.544139275Z"} +2026/03/22 09:03:32 [log_collector] {"stage_name":"log_collector","events_processed":17316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3463.2,"last_update":"2026-03-22T09:03:27.367993959Z"} +2026/03/22 09:03:32 ───────────────────────────────────────────────── +2026/03/22 09:03:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:03:37 [log_collector] {"stage_name":"log_collector","events_processed":17321,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3464.2,"last_update":"2026-03-22T09:03:32.367944399Z"} +2026/03/22 09:03:37 [metric_collector] {"stage_name":"metric_collector","events_processed":10924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2184.8,"last_update":"2026-03-22T09:03:32.368303648Z"} +2026/03/22 09:03:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:03:32.375556211Z"} +2026/03/22 09:03:37 [detection_layer] {"stage_name":"detection_layer","events_processed":364,"events_dropped":0,"avg_latency_ms":18.319726016994935,"throughput_eps":0,"last_update":"2026-03-22T09:03:32.479693393Z"} +2026/03/22 09:03:37 [transform_engine] {"stage_name":"transform_engine","events_processed":364,"events_dropped":0,"avg_latency_ms":593.4561334310954,"throughput_eps":0,"last_update":"2026-03-22T09:03:32.479658917Z"} +2026/03/22 09:03:37 ───────────────────────────────────────────────── +2026/03/22 09:03:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:03:42 [log_collector] {"stage_name":"log_collector","events_processed":17321,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3464.2,"last_update":"2026-03-22T09:03:37.36795391Z"} +2026/03/22 09:03:42 [metric_collector] {"stage_name":"metric_collector","events_processed":10929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2185.8,"last_update":"2026-03-22T09:03:37.368291196Z"} +2026/03/22 09:03:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:03:37.37962099Z"} +2026/03/22 09:03:42 [detection_layer] {"stage_name":"detection_layer","events_processed":364,"events_dropped":0,"avg_latency_ms":18.319726016994935,"throughput_eps":0,"last_update":"2026-03-22T09:03:37.478983195Z"} +2026/03/22 09:03:42 [transform_engine] {"stage_name":"transform_engine","events_processed":364,"events_dropped":0,"avg_latency_ms":593.4561334310954,"throughput_eps":0,"last_update":"2026-03-22T09:03:37.478880629Z"} +2026/03/22 09:03:42 ───────────────────────────────────────────────── +2026/03/22 09:03:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:03:47 [log_collector] {"stage_name":"log_collector","events_processed":17321,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3464.2,"last_update":"2026-03-22T09:03:42.367995558Z"} +2026/03/22 09:03:47 [metric_collector] {"stage_name":"metric_collector","events_processed":10934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2186.8,"last_update":"2026-03-22T09:03:42.368175543Z"} +2026/03/22 09:03:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:03:42.375651273Z"} +2026/03/22 09:03:47 [detection_layer] {"stage_name":"detection_layer","events_processed":364,"events_dropped":0,"avg_latency_ms":18.319726016994935,"throughput_eps":0,"last_update":"2026-03-22T09:03:42.479460197Z"} +2026/03/22 09:03:47 [transform_engine] {"stage_name":"transform_engine","events_processed":364,"events_dropped":0,"avg_latency_ms":593.4561334310954,"throughput_eps":0,"last_update":"2026-03-22T09:03:42.479413588Z"} +2026/03/22 09:03:47 ───────────────────────────────────────────────── +2026/03/22 09:03:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:03:52 [metric_collector] {"stage_name":"metric_collector","events_processed":10939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2187.8,"last_update":"2026-03-22T09:03:47.368636895Z"} +2026/03/22 09:03:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:03:47.375385883Z"} +2026/03/22 09:03:52 [detection_layer] {"stage_name":"detection_layer","events_processed":364,"events_dropped":0,"avg_latency_ms":18.319726016994935,"throughput_eps":0,"last_update":"2026-03-22T09:03:47.479527884Z"} +2026/03/22 09:03:52 [transform_engine] {"stage_name":"transform_engine","events_processed":364,"events_dropped":0,"avg_latency_ms":593.4561334310954,"throughput_eps":0,"last_update":"2026-03-22T09:03:47.479503408Z"} +2026/03/22 09:03:52 [log_collector] {"stage_name":"log_collector","events_processed":17321,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3464.2,"last_update":"2026-03-22T09:03:47.368420169Z"} +2026/03/22 09:03:52 ───────────────────────────────────────────────── +2026/03/22 09:03:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:03:57 [log_collector] {"stage_name":"log_collector","events_processed":17321,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3464.2,"last_update":"2026-03-22T09:03:52.368103368Z"} +2026/03/22 09:03:57 [metric_collector] {"stage_name":"metric_collector","events_processed":10944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2188.8,"last_update":"2026-03-22T09:03:52.368573438Z"} +2026/03/22 09:03:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4380,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:03:52.374996633Z"} +2026/03/22 09:03:57 [detection_layer] {"stage_name":"detection_layer","events_processed":364,"events_dropped":0,"avg_latency_ms":18.319726016994935,"throughput_eps":0,"last_update":"2026-03-22T09:03:52.479229007Z"} +2026/03/22 09:03:57 [transform_engine] {"stage_name":"transform_engine","events_processed":364,"events_dropped":0,"avg_latency_ms":593.4561334310954,"throughput_eps":0,"last_update":"2026-03-22T09:03:52.479248395Z"} +2026/03/22 09:03:57 ───────────────────────────────────────────────── +2026/03/22 09:03:57 [ANOMALY] time=2026-03-22T09:03:57Z score=0.9688 method=SEAD details=MAD!:w=0.49,s=0.96 RRCF-fast!:w=0.13,s=1.00 RRCF-mid!:w=0.12,s=0.97 RRCF-slow!:w=0.09,s=0.93 COPOD!:w=0.16,s=0.98 +2026/03/22 09:04:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:04:02 [log_collector] {"stage_name":"log_collector","events_processed":17321,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3464.2,"last_update":"2026-03-22T09:03:57.367961449Z"} +2026/03/22 09:04:02 [metric_collector] {"stage_name":"metric_collector","events_processed":10949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2189.8,"last_update":"2026-03-22T09:03:57.368158336Z"} +2026/03/22 09:04:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:03:57.378062779Z"} +2026/03/22 09:04:02 [detection_layer] {"stage_name":"detection_layer","events_processed":364,"events_dropped":0,"avg_latency_ms":18.319726016994935,"throughput_eps":0,"last_update":"2026-03-22T09:03:57.479217298Z"} +2026/03/22 09:04:02 [transform_engine] {"stage_name":"transform_engine","events_processed":365,"events_dropped":0,"avg_latency_ms":513.4363703448763,"throughput_eps":0,"last_update":"2026-03-22T09:03:57.672588562Z"} +2026/03/22 09:04:02 ───────────────────────────────────────────────── +2026/03/22 09:04:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:04:07 [transform_engine] {"stage_name":"transform_engine","events_processed":365,"events_dropped":0,"avg_latency_ms":513.4363703448763,"throughput_eps":0,"last_update":"2026-03-22T09:04:02.479903795Z"} +2026/03/22 09:04:07 [log_collector] {"stage_name":"log_collector","events_processed":17321,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3464.2,"last_update":"2026-03-22T09:04:02.368371997Z"} +2026/03/22 09:04:07 [metric_collector] {"stage_name":"metric_collector","events_processed":10954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2190.8,"last_update":"2026-03-22T09:04:02.36825337Z"} +2026/03/22 09:04:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:04:02.375592308Z"} +2026/03/22 09:04:07 [detection_layer] {"stage_name":"detection_layer","events_processed":365,"events_dropped":0,"avg_latency_ms":17.08156781359595,"throughput_eps":0,"last_update":"2026-03-22T09:04:02.479881422Z"} +2026/03/22 09:04:07 ───────────────────────────────────────────────── +2026/03/22 09:04:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:04:12 [log_collector] {"stage_name":"log_collector","events_processed":17321,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3464.2,"last_update":"2026-03-22T09:04:07.368949132Z"} +2026/03/22 09:04:12 [metric_collector] {"stage_name":"metric_collector","events_processed":10959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2191.8,"last_update":"2026-03-22T09:04:07.368832348Z"} +2026/03/22 09:04:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:04:07.377871845Z"} +2026/03/22 09:04:12 [detection_layer] {"stage_name":"detection_layer","events_processed":365,"events_dropped":0,"avg_latency_ms":17.08156781359595,"throughput_eps":0,"last_update":"2026-03-22T09:04:07.479141583Z"} +2026/03/22 09:04:12 [transform_engine] {"stage_name":"transform_engine","events_processed":365,"events_dropped":0,"avg_latency_ms":513.4363703448763,"throughput_eps":0,"last_update":"2026-03-22T09:04:07.479085275Z"} +2026/03/22 09:04:12 ───────────────────────────────────────────────── +2026/03/22 09:04:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:04:17 [transform_engine] {"stage_name":"transform_engine","events_processed":365,"events_dropped":0,"avg_latency_ms":513.4363703448763,"throughput_eps":0,"last_update":"2026-03-22T09:04:12.478843308Z"} +2026/03/22 09:04:17 [log_collector] {"stage_name":"log_collector","events_processed":17324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3464.8,"last_update":"2026-03-22T09:04:12.368464901Z"} +2026/03/22 09:04:17 [metric_collector] {"stage_name":"metric_collector","events_processed":10964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2192.8,"last_update":"2026-03-22T09:04:12.368805623Z"} +2026/03/22 09:04:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4388,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:04:12.376708583Z"} +2026/03/22 09:04:17 [detection_layer] {"stage_name":"detection_layer","events_processed":365,"events_dropped":0,"avg_latency_ms":17.08156781359595,"throughput_eps":0,"last_update":"2026-03-22T09:04:12.479980738Z"} +2026/03/22 09:04:17 ───────────────────────────────────────────────── +2026/03/22 09:04:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:04:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4390,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:04:17.377584305Z"} +2026/03/22 09:04:22 [detection_layer] {"stage_name":"detection_layer","events_processed":365,"events_dropped":0,"avg_latency_ms":17.08156781359595,"throughput_eps":0,"last_update":"2026-03-22T09:04:17.479508968Z"} +2026/03/22 09:04:22 [transform_engine] {"stage_name":"transform_engine","events_processed":365,"events_dropped":0,"avg_latency_ms":513.4363703448763,"throughput_eps":0,"last_update":"2026-03-22T09:04:17.479586417Z"} +2026/03/22 09:04:22 [log_collector] {"stage_name":"log_collector","events_processed":17334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3466.8,"last_update":"2026-03-22T09:04:17.368288708Z"} +2026/03/22 09:04:22 [metric_collector] {"stage_name":"metric_collector","events_processed":10969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2193.8,"last_update":"2026-03-22T09:04:17.368780429Z"} +2026/03/22 09:04:22 ───────────────────────────────────────────────── +2026/03/22 09:04:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:04:27 [log_collector] {"stage_name":"log_collector","events_processed":17643,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3528.6,"last_update":"2026-03-22T09:04:22.368048168Z"} +2026/03/22 09:04:27 [metric_collector] {"stage_name":"metric_collector","events_processed":10974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2194.8,"last_update":"2026-03-22T09:04:22.368395674Z"} +2026/03/22 09:04:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:04:22.376635859Z"} +2026/03/22 09:04:27 [detection_layer] {"stage_name":"detection_layer","events_processed":365,"events_dropped":0,"avg_latency_ms":17.08156781359595,"throughput_eps":0,"last_update":"2026-03-22T09:04:22.479892985Z"} +2026/03/22 09:04:27 [transform_engine] {"stage_name":"transform_engine","events_processed":365,"events_dropped":0,"avg_latency_ms":513.4363703448763,"throughput_eps":0,"last_update":"2026-03-22T09:04:22.47990593Z"} +2026/03/22 09:04:27 ───────────────────────────────────────────────── +2026/03/22 09:04:27 [ANOMALY] time=2026-03-22T09:04:27Z score=0.8537 method=SEAD details=MAD!:w=0.49,s=0.85 RRCF-fast!:w=0.13,s=0.99 RRCF-mid!:w=0.12,s=0.78 RRCF-slow:w=0.09,s=0.73 COPOD!:w=0.16,s=0.87 +2026/03/22 09:04:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:04:32 [transform_engine] {"stage_name":"transform_engine","events_processed":366,"events_dropped":0,"avg_latency_ms":433.2925958759011,"throughput_eps":0,"last_update":"2026-03-22T09:04:27.591876206Z"} +2026/03/22 09:04:32 [log_collector] {"stage_name":"log_collector","events_processed":17690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3538,"last_update":"2026-03-22T09:04:27.36841986Z"} +2026/03/22 09:04:32 [metric_collector] {"stage_name":"metric_collector","events_processed":10979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2195.8,"last_update":"2026-03-22T09:04:27.368276856Z"} +2026/03/22 09:04:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:04:27.375950225Z"} +2026/03/22 09:04:32 [detection_layer] {"stage_name":"detection_layer","events_processed":365,"events_dropped":0,"avg_latency_ms":17.08156781359595,"throughput_eps":0,"last_update":"2026-03-22T09:04:27.479145162Z"} +2026/03/22 09:04:32 ───────────────────────────────────────────────── +2026/03/22 09:04:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:04:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:04:32.376826433Z"} +2026/03/22 09:04:37 [detection_layer] {"stage_name":"detection_layer","events_processed":366,"events_dropped":0,"avg_latency_ms":16.31466765087676,"throughput_eps":0,"last_update":"2026-03-22T09:04:32.479057693Z"} +2026/03/22 09:04:37 [transform_engine] {"stage_name":"transform_engine","events_processed":366,"events_dropped":0,"avg_latency_ms":433.2925958759011,"throughput_eps":0,"last_update":"2026-03-22T09:04:32.479036343Z"} +2026/03/22 09:04:37 [log_collector] {"stage_name":"log_collector","events_processed":17693,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3538.6,"last_update":"2026-03-22T09:04:32.368412254Z"} +2026/03/22 09:04:37 [metric_collector] {"stage_name":"metric_collector","events_processed":10984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2196.8,"last_update":"2026-03-22T09:04:32.368873949Z"} +2026/03/22 09:04:37 ───────────────────────────────────────────────── +Saved state: 13 clusters, 17694 messages, reason: none +2026/03/22 09:04:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:04:42 [log_collector] {"stage_name":"log_collector","events_processed":17693,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3538.6,"last_update":"2026-03-22T09:04:37.36896011Z"} +2026/03/22 09:04:42 [metric_collector] {"stage_name":"metric_collector","events_processed":10989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2197.8,"last_update":"2026-03-22T09:04:37.369037668Z"} +2026/03/22 09:04:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:04:37.37606483Z"} +2026/03/22 09:04:42 [detection_layer] {"stage_name":"detection_layer","events_processed":366,"events_dropped":0,"avg_latency_ms":16.31466765087676,"throughput_eps":0,"last_update":"2026-03-22T09:04:37.479291187Z"} +2026/03/22 09:04:42 [transform_engine] {"stage_name":"transform_engine","events_processed":366,"events_dropped":0,"avg_latency_ms":433.2925958759011,"throughput_eps":0,"last_update":"2026-03-22T09:04:37.4792666Z"} +2026/03/22 09:04:42 ───────────────────────────────────────────────── +2026/03/22 09:04:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:04:47 [log_collector] {"stage_name":"log_collector","events_processed":17703,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3540.6,"last_update":"2026-03-22T09:04:42.367959175Z"} +2026/03/22 09:04:47 [metric_collector] {"stage_name":"metric_collector","events_processed":10994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2198.8,"last_update":"2026-03-22T09:04:42.368197722Z"} +2026/03/22 09:04:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4400,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:04:42.377263971Z"} +2026/03/22 09:04:47 [detection_layer] {"stage_name":"detection_layer","events_processed":366,"events_dropped":0,"avg_latency_ms":16.31466765087676,"throughput_eps":0,"last_update":"2026-03-22T09:04:42.479539856Z"} +2026/03/22 09:04:47 [transform_engine] {"stage_name":"transform_engine","events_processed":366,"events_dropped":0,"avg_latency_ms":433.2925958759011,"throughput_eps":0,"last_update":"2026-03-22T09:04:42.479515269Z"} +2026/03/22 09:04:47 ───────────────────────────────────────────────── +2026/03/22 09:04:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:04:52 [metric_collector] {"stage_name":"metric_collector","events_processed":10999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2199.8,"last_update":"2026-03-22T09:04:47.368592151Z"} +2026/03/22 09:04:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4402,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:04:47.375071924Z"} +2026/03/22 09:04:52 [detection_layer] {"stage_name":"detection_layer","events_processed":366,"events_dropped":0,"avg_latency_ms":16.31466765087676,"throughput_eps":0,"last_update":"2026-03-22T09:04:47.479531443Z"} +2026/03/22 09:04:52 [transform_engine] {"stage_name":"transform_engine","events_processed":366,"events_dropped":0,"avg_latency_ms":433.2925958759011,"throughput_eps":0,"last_update":"2026-03-22T09:04:47.479457371Z"} +2026/03/22 09:04:52 [log_collector] {"stage_name":"log_collector","events_processed":17720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3544,"last_update":"2026-03-22T09:04:52.368521825Z"} +2026/03/22 09:04:52 ───────────────────────────────────────────────── +2026/03/22 09:04:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:04:57 [log_collector] {"stage_name":"log_collector","events_processed":17720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3544,"last_update":"2026-03-22T09:04:52.368521825Z"} +2026/03/22 09:04:57 [metric_collector] {"stage_name":"metric_collector","events_processed":11004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2200.8,"last_update":"2026-03-22T09:04:52.368858009Z"} +2026/03/22 09:04:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:04:52.377574517Z"} +2026/03/22 09:04:57 [detection_layer] {"stage_name":"detection_layer","events_processed":366,"events_dropped":0,"avg_latency_ms":16.31466765087676,"throughput_eps":0,"last_update":"2026-03-22T09:04:52.479870371Z"} +2026/03/22 09:04:57 [transform_engine] {"stage_name":"transform_engine","events_processed":366,"events_dropped":0,"avg_latency_ms":433.2925958759011,"throughput_eps":0,"last_update":"2026-03-22T09:04:52.479812901Z"} +2026/03/22 09:04:57 ───────────────────────────────────────────────── +2026/03/22 09:05:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:05:02 [detection_layer] {"stage_name":"detection_layer","events_processed":366,"events_dropped":0,"avg_latency_ms":16.31466765087676,"throughput_eps":0,"last_update":"2026-03-22T09:04:57.47954778Z"} +2026/03/22 09:05:02 [transform_engine] {"stage_name":"transform_engine","events_processed":367,"events_dropped":0,"avg_latency_ms":368.9974453007209,"throughput_eps":0,"last_update":"2026-03-22T09:04:57.591406755Z"} +2026/03/22 09:05:02 [log_collector] {"stage_name":"log_collector","events_processed":17720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3544,"last_update":"2026-03-22T09:04:57.368052012Z"} +2026/03/22 09:05:02 [metric_collector] {"stage_name":"metric_collector","events_processed":11009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2201.8,"last_update":"2026-03-22T09:04:57.368576879Z"} +2026/03/22 09:05:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:04:57.377276805Z"} +2026/03/22 09:05:02 ───────────────────────────────────────────────── +2026/03/22 09:05:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:05:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4408,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:05:02.37726564Z"} +2026/03/22 09:05:07 [detection_layer] {"stage_name":"detection_layer","events_processed":367,"events_dropped":0,"avg_latency_ms":16.90174332070141,"throughput_eps":0,"last_update":"2026-03-22T09:05:02.479578556Z"} +2026/03/22 09:05:07 [transform_engine] {"stage_name":"transform_engine","events_processed":367,"events_dropped":0,"avg_latency_ms":368.9974453007209,"throughput_eps":0,"last_update":"2026-03-22T09:05:02.47959034Z"} +2026/03/22 09:05:07 [log_collector] {"stage_name":"log_collector","events_processed":17720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3544,"last_update":"2026-03-22T09:05:02.367998027Z"} +2026/03/22 09:05:07 [metric_collector] {"stage_name":"metric_collector","events_processed":11014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2202.8,"last_update":"2026-03-22T09:05:02.368444582Z"} +2026/03/22 09:05:07 ───────────────────────────────────────────────── +2026/03/22 09:05:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:05:12 [log_collector] {"stage_name":"log_collector","events_processed":17720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3544,"last_update":"2026-03-22T09:05:07.368840857Z"} +2026/03/22 09:05:12 [metric_collector] {"stage_name":"metric_collector","events_processed":11019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2203.8,"last_update":"2026-03-22T09:05:07.369243197Z"} +2026/03/22 09:05:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:05:07.378202992Z"} +2026/03/22 09:05:12 [detection_layer] {"stage_name":"detection_layer","events_processed":367,"events_dropped":0,"avg_latency_ms":16.90174332070141,"throughput_eps":0,"last_update":"2026-03-22T09:05:07.479382977Z"} +2026/03/22 09:05:12 [transform_engine] {"stage_name":"transform_engine","events_processed":367,"events_dropped":0,"avg_latency_ms":368.9974453007209,"throughput_eps":0,"last_update":"2026-03-22T09:05:07.479414608Z"} +2026/03/22 09:05:12 ───────────────────────────────────────────────── +2026/03/22 09:05:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:05:17 [log_collector] {"stage_name":"log_collector","events_processed":17720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3544,"last_update":"2026-03-22T09:05:12.368423581Z"} +2026/03/22 09:05:17 [metric_collector] {"stage_name":"metric_collector","events_processed":11024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2204.8,"last_update":"2026-03-22T09:05:12.368721341Z"} +2026/03/22 09:05:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:05:12.378512898Z"} +2026/03/22 09:05:17 [detection_layer] {"stage_name":"detection_layer","events_processed":367,"events_dropped":0,"avg_latency_ms":16.90174332070141,"throughput_eps":0,"last_update":"2026-03-22T09:05:12.47999853Z"} +2026/03/22 09:05:17 [transform_engine] {"stage_name":"transform_engine","events_processed":367,"events_dropped":0,"avg_latency_ms":368.9974453007209,"throughput_eps":0,"last_update":"2026-03-22T09:05:12.479888079Z"} +2026/03/22 09:05:17 ───────────────────────────────────────────────── +2026/03/22 09:05:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:05:22 [log_collector] {"stage_name":"log_collector","events_processed":17720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3544,"last_update":"2026-03-22T09:05:17.368017785Z"} +2026/03/22 09:05:22 [metric_collector] {"stage_name":"metric_collector","events_processed":11029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2205.8,"last_update":"2026-03-22T09:05:17.368266942Z"} +2026/03/22 09:05:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:05:17.377045128Z"} +2026/03/22 09:05:22 [detection_layer] {"stage_name":"detection_layer","events_processed":367,"events_dropped":0,"avg_latency_ms":16.90174332070141,"throughput_eps":0,"last_update":"2026-03-22T09:05:17.479413641Z"} +2026/03/22 09:05:22 [transform_engine] {"stage_name":"transform_engine","events_processed":367,"events_dropped":0,"avg_latency_ms":368.9974453007209,"throughput_eps":0,"last_update":"2026-03-22T09:05:17.479532258Z"} +2026/03/22 09:05:22 ───────────────────────────────────────────────── +2026/03/22 09:05:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:05:27 [metric_collector] {"stage_name":"metric_collector","events_processed":11034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2206.8,"last_update":"2026-03-22T09:05:22.368597663Z"} +2026/03/22 09:05:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:05:22.377295316Z"} +2026/03/22 09:05:27 [detection_layer] {"stage_name":"detection_layer","events_processed":367,"events_dropped":0,"avg_latency_ms":16.90174332070141,"throughput_eps":0,"last_update":"2026-03-22T09:05:22.479569457Z"} +2026/03/22 09:05:27 [transform_engine] {"stage_name":"transform_engine","events_processed":367,"events_dropped":0,"avg_latency_ms":368.9974453007209,"throughput_eps":0,"last_update":"2026-03-22T09:05:22.479678977Z"} +2026/03/22 09:05:27 [log_collector] {"stage_name":"log_collector","events_processed":17720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3544,"last_update":"2026-03-22T09:05:22.368016851Z"} +2026/03/22 09:05:27 ───────────────────────────────────────────────── +2026/03/22 09:05:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:05:32 [transform_engine] {"stage_name":"transform_engine","events_processed":368,"events_dropped":0,"avg_latency_ms":308.1918200405767,"throughput_eps":0,"last_update":"2026-03-22T09:05:27.544024307Z"} +2026/03/22 09:05:32 [log_collector] {"stage_name":"log_collector","events_processed":17720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3544,"last_update":"2026-03-22T09:05:27.368035662Z"} +2026/03/22 09:05:32 [metric_collector] {"stage_name":"metric_collector","events_processed":11039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2207.8,"last_update":"2026-03-22T09:05:27.368497558Z"} +2026/03/22 09:05:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:05:27.375824874Z"} +2026/03/22 09:05:32 [detection_layer] {"stage_name":"detection_layer","events_processed":367,"events_dropped":0,"avg_latency_ms":16.90174332070141,"throughput_eps":0,"last_update":"2026-03-22T09:05:27.479099142Z"} +2026/03/22 09:05:32 ───────────────────────────────────────────────── +2026/03/22 09:05:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:05:37 [log_collector] {"stage_name":"log_collector","events_processed":17720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3544,"last_update":"2026-03-22T09:05:32.368575993Z"} +2026/03/22 09:05:37 [metric_collector] {"stage_name":"metric_collector","events_processed":11044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2208.8,"last_update":"2026-03-22T09:05:32.368901186Z"} +2026/03/22 09:05:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4420,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:05:32.378784949Z"} +2026/03/22 09:05:37 [detection_layer] {"stage_name":"detection_layer","events_processed":368,"events_dropped":0,"avg_latency_ms":17.139036656561128,"throughput_eps":0,"last_update":"2026-03-22T09:05:32.478986211Z"} +2026/03/22 09:05:37 [transform_engine] {"stage_name":"transform_engine","events_processed":368,"events_dropped":0,"avg_latency_ms":308.1918200405767,"throughput_eps":0,"last_update":"2026-03-22T09:05:32.47903268Z"} +2026/03/22 09:05:37 ───────────────────────────────────────────────── +2026/03/22 09:05:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:05:42 [log_collector] {"stage_name":"log_collector","events_processed":17720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3544,"last_update":"2026-03-22T09:05:37.368551159Z"} +2026/03/22 09:05:42 [metric_collector] {"stage_name":"metric_collector","events_processed":11049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2209.8,"last_update":"2026-03-22T09:05:37.368961044Z"} +2026/03/22 09:05:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:05:37.379012009Z"} +2026/03/22 09:05:42 [detection_layer] {"stage_name":"detection_layer","events_processed":368,"events_dropped":0,"avg_latency_ms":17.139036656561128,"throughput_eps":0,"last_update":"2026-03-22T09:05:37.479272452Z"} +2026/03/22 09:05:42 [transform_engine] {"stage_name":"transform_engine","events_processed":368,"events_dropped":0,"avg_latency_ms":308.1918200405767,"throughput_eps":0,"last_update":"2026-03-22T09:05:37.479074122Z"} +2026/03/22 09:05:42 ───────────────────────────────────────────────── +2026/03/22 09:05:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:05:47 [log_collector] {"stage_name":"log_collector","events_processed":17720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3544,"last_update":"2026-03-22T09:05:42.368688284Z"} +2026/03/22 09:05:47 [metric_collector] {"stage_name":"metric_collector","events_processed":11054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2210.8,"last_update":"2026-03-22T09:05:42.369167581Z"} +2026/03/22 09:05:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:05:42.378154838Z"} +2026/03/22 09:05:47 [detection_layer] {"stage_name":"detection_layer","events_processed":368,"events_dropped":0,"avg_latency_ms":17.139036656561128,"throughput_eps":0,"last_update":"2026-03-22T09:05:42.479538615Z"} +2026/03/22 09:05:47 [transform_engine] {"stage_name":"transform_engine","events_processed":368,"events_dropped":0,"avg_latency_ms":308.1918200405767,"throughput_eps":0,"last_update":"2026-03-22T09:05:42.479514659Z"} +2026/03/22 09:05:47 ───────────────────────────────────────────────── +2026/03/22 09:05:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:05:52 [log_collector] {"stage_name":"log_collector","events_processed":17720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3544,"last_update":"2026-03-22T09:05:47.367995287Z"} +2026/03/22 09:05:52 [metric_collector] {"stage_name":"metric_collector","events_processed":11059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2211.8,"last_update":"2026-03-22T09:05:47.368856548Z"} +2026/03/22 09:05:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:05:47.376503046Z"} +2026/03/22 09:05:52 [detection_layer] {"stage_name":"detection_layer","events_processed":368,"events_dropped":0,"avg_latency_ms":17.139036656561128,"throughput_eps":0,"last_update":"2026-03-22T09:05:47.479890701Z"} +2026/03/22 09:05:52 [transform_engine] {"stage_name":"transform_engine","events_processed":368,"events_dropped":0,"avg_latency_ms":308.1918200405767,"throughput_eps":0,"last_update":"2026-03-22T09:05:47.479881834Z"} +2026/03/22 09:05:52 ───────────────────────────────────────────────── +2026/03/22 09:05:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:05:57 [log_collector] {"stage_name":"log_collector","events_processed":17720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3544,"last_update":"2026-03-22T09:05:52.368169278Z"} +2026/03/22 09:05:57 [metric_collector] {"stage_name":"metric_collector","events_processed":11064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2212.8,"last_update":"2026-03-22T09:05:52.36870761Z"} +2026/03/22 09:05:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:05:52.377391505Z"} +2026/03/22 09:05:57 [detection_layer] {"stage_name":"detection_layer","events_processed":368,"events_dropped":0,"avg_latency_ms":17.139036656561128,"throughput_eps":0,"last_update":"2026-03-22T09:05:52.479595943Z"} +2026/03/22 09:05:57 [transform_engine] {"stage_name":"transform_engine","events_processed":368,"events_dropped":0,"avg_latency_ms":308.1918200405767,"throughput_eps":0,"last_update":"2026-03-22T09:05:52.479620891Z"} +2026/03/22 09:05:57 ───────────────────────────────────────────────── +2026/03/22 09:06:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:06:02 [log_collector] {"stage_name":"log_collector","events_processed":17720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3544,"last_update":"2026-03-22T09:05:57.368672128Z"} +2026/03/22 09:06:02 [metric_collector] {"stage_name":"metric_collector","events_processed":11069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2213.8,"last_update":"2026-03-22T09:05:57.369427816Z"} +2026/03/22 09:06:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:05:57.381509671Z"} +2026/03/22 09:06:02 [detection_layer] {"stage_name":"detection_layer","events_processed":368,"events_dropped":0,"avg_latency_ms":17.139036656561128,"throughput_eps":0,"last_update":"2026-03-22T09:05:57.480480053Z"} +2026/03/22 09:06:02 [transform_engine] {"stage_name":"transform_engine","events_processed":369,"events_dropped":0,"avg_latency_ms":260.8762296324614,"throughput_eps":0,"last_update":"2026-03-22T09:05:57.551323064Z"} +2026/03/22 09:06:02 ───────────────────────────────────────────────── +Saved state: 13 clusters, 17721 messages, reason: none +2026/03/22 09:06:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:06:07 [log_collector] {"stage_name":"log_collector","events_processed":17720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3544,"last_update":"2026-03-22T09:06:02.368505494Z"} +2026/03/22 09:06:07 [metric_collector] {"stage_name":"metric_collector","events_processed":11074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2214.8,"last_update":"2026-03-22T09:06:02.368739663Z"} +2026/03/22 09:06:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:06:02.378271722Z"} +2026/03/22 09:06:07 [detection_layer] {"stage_name":"detection_layer","events_processed":369,"events_dropped":0,"avg_latency_ms":18.257081725248902,"throughput_eps":0,"last_update":"2026-03-22T09:06:02.479512825Z"} +2026/03/22 09:06:07 [transform_engine] {"stage_name":"transform_engine","events_processed":369,"events_dropped":0,"avg_latency_ms":260.8762296324614,"throughput_eps":0,"last_update":"2026-03-22T09:06:02.479524609Z"} +2026/03/22 09:06:07 ───────────────────────────────────────────────── +2026/03/22 09:06:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:06:12 [detection_layer] {"stage_name":"detection_layer","events_processed":369,"events_dropped":0,"avg_latency_ms":18.257081725248902,"throughput_eps":0,"last_update":"2026-03-22T09:06:07.47908584Z"} +2026/03/22 09:06:12 [transform_engine] {"stage_name":"transform_engine","events_processed":369,"events_dropped":0,"avg_latency_ms":260.8762296324614,"throughput_eps":0,"last_update":"2026-03-22T09:06:07.479096671Z"} +2026/03/22 09:06:12 [log_collector] {"stage_name":"log_collector","events_processed":17733,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3546.6,"last_update":"2026-03-22T09:06:07.369026315Z"} +2026/03/22 09:06:12 [metric_collector] {"stage_name":"metric_collector","events_processed":11079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2215.8,"last_update":"2026-03-22T09:06:07.369294678Z"} +2026/03/22 09:06:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:06:07.374816477Z"} +2026/03/22 09:06:12 ───────────────────────────────────────────────── +2026/03/22 09:06:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:06:17 [log_collector] {"stage_name":"log_collector","events_processed":17734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3546.8,"last_update":"2026-03-22T09:06:12.368418232Z"} +2026/03/22 09:06:17 [metric_collector] {"stage_name":"metric_collector","events_processed":11084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2216.8,"last_update":"2026-03-22T09:06:12.368762241Z"} +2026/03/22 09:06:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:06:12.375355732Z"} +2026/03/22 09:06:17 [detection_layer] {"stage_name":"detection_layer","events_processed":369,"events_dropped":0,"avg_latency_ms":18.257081725248902,"throughput_eps":0,"last_update":"2026-03-22T09:06:12.479570801Z"} +2026/03/22 09:06:17 [transform_engine] {"stage_name":"transform_engine","events_processed":369,"events_dropped":0,"avg_latency_ms":260.8762296324614,"throughput_eps":0,"last_update":"2026-03-22T09:06:12.479594727Z"} +2026/03/22 09:06:17 ───────────────────────────────────────────────── +2026/03/22 09:06:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:06:22 [log_collector] {"stage_name":"log_collector","events_processed":17734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3546.8,"last_update":"2026-03-22T09:06:22.368015437Z"} +2026/03/22 09:06:22 [metric_collector] {"stage_name":"metric_collector","events_processed":11089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2217.8,"last_update":"2026-03-22T09:06:17.369180362Z"} +2026/03/22 09:06:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:06:17.378592602Z"} +2026/03/22 09:06:22 [detection_layer] {"stage_name":"detection_layer","events_processed":369,"events_dropped":0,"avg_latency_ms":18.257081725248902,"throughput_eps":0,"last_update":"2026-03-22T09:06:17.479790653Z"} +2026/03/22 09:06:22 [transform_engine] {"stage_name":"transform_engine","events_processed":369,"events_dropped":0,"avg_latency_ms":260.8762296324614,"throughput_eps":0,"last_update":"2026-03-22T09:06:17.47982581Z"} +2026/03/22 09:06:22 ───────────────────────────────────────────────── +2026/03/22 09:06:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:06:27 [log_collector] {"stage_name":"log_collector","events_processed":17734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3546.8,"last_update":"2026-03-22T09:06:22.368015437Z"} +2026/03/22 09:06:27 [metric_collector] {"stage_name":"metric_collector","events_processed":11094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2218.8,"last_update":"2026-03-22T09:06:22.368277579Z"} +2026/03/22 09:06:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:06:22.378506505Z"} +2026/03/22 09:06:27 [detection_layer] {"stage_name":"detection_layer","events_processed":369,"events_dropped":0,"avg_latency_ms":18.257081725248902,"throughput_eps":0,"last_update":"2026-03-22T09:06:22.479686179Z"} +2026/03/22 09:06:27 [transform_engine] {"stage_name":"transform_engine","events_processed":369,"events_dropped":0,"avg_latency_ms":260.8762296324614,"throughput_eps":0,"last_update":"2026-03-22T09:06:22.479717619Z"} +2026/03/22 09:06:27 ───────────────────────────────────────────────── +2026/03/22 09:06:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:06:32 [log_collector] {"stage_name":"log_collector","events_processed":17734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3546.8,"last_update":"2026-03-22T09:06:27.368227269Z"} +2026/03/22 09:06:32 [metric_collector] {"stage_name":"metric_collector","events_processed":11104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2220.8,"last_update":"2026-03-22T09:06:32.368663086Z"} +2026/03/22 09:06:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4442,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:06:27.375516843Z"} +2026/03/22 09:06:32 [detection_layer] {"stage_name":"detection_layer","events_processed":369,"events_dropped":0,"avg_latency_ms":18.257081725248902,"throughput_eps":0,"last_update":"2026-03-22T09:06:27.479789985Z"} +2026/03/22 09:06:32 [transform_engine] {"stage_name":"transform_engine","events_processed":370,"events_dropped":0,"avg_latency_ms":230.88255190596914,"throughput_eps":0,"last_update":"2026-03-22T09:06:27.590732672Z"} +2026/03/22 09:06:32 ───────────────────────────────────────────────── +2026/03/22 09:06:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:06:37 [log_collector] {"stage_name":"log_collector","events_processed":17734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3546.8,"last_update":"2026-03-22T09:06:32.368687533Z"} +2026/03/22 09:06:37 [metric_collector] {"stage_name":"metric_collector","events_processed":11104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2220.8,"last_update":"2026-03-22T09:06:32.368663086Z"} +2026/03/22 09:06:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:06:32.377665311Z"} +2026/03/22 09:06:37 [detection_layer] {"stage_name":"detection_layer","events_processed":370,"events_dropped":0,"avg_latency_ms":18.097646980199123,"throughput_eps":0,"last_update":"2026-03-22T09:06:32.478989494Z"} +2026/03/22 09:06:37 [transform_engine] {"stage_name":"transform_engine","events_processed":370,"events_dropped":0,"avg_latency_ms":230.88255190596914,"throughput_eps":0,"last_update":"2026-03-22T09:06:32.478908257Z"} +2026/03/22 09:06:37 ───────────────────────────────────────────────── +2026/03/22 09:06:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:06:42 [detection_layer] {"stage_name":"detection_layer","events_processed":370,"events_dropped":0,"avg_latency_ms":18.097646980199123,"throughput_eps":0,"last_update":"2026-03-22T09:06:37.478967914Z"} +2026/03/22 09:06:42 [transform_engine] {"stage_name":"transform_engine","events_processed":370,"events_dropped":0,"avg_latency_ms":230.88255190596914,"throughput_eps":0,"last_update":"2026-03-22T09:06:37.478855148Z"} +2026/03/22 09:06:42 [log_collector] {"stage_name":"log_collector","events_processed":17734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3546.8,"last_update":"2026-03-22T09:06:37.368004407Z"} +2026/03/22 09:06:42 [metric_collector] {"stage_name":"metric_collector","events_processed":11109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2221.8,"last_update":"2026-03-22T09:06:37.368774972Z"} +2026/03/22 09:06:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4446,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:06:37.378689445Z"} +2026/03/22 09:06:42 ───────────────────────────────────────────────── +2026/03/22 09:06:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:06:47 [transform_engine] {"stage_name":"transform_engine","events_processed":370,"events_dropped":0,"avg_latency_ms":230.88255190596914,"throughput_eps":0,"last_update":"2026-03-22T09:06:42.479413688Z"} +2026/03/22 09:06:47 [log_collector] {"stage_name":"log_collector","events_processed":17734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3546.8,"last_update":"2026-03-22T09:06:42.368800762Z"} +2026/03/22 09:06:47 [metric_collector] {"stage_name":"metric_collector","events_processed":11114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2222.8,"last_update":"2026-03-22T09:06:42.369256025Z"} +2026/03/22 09:06:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:06:42.376162215Z"} +2026/03/22 09:06:47 [detection_layer] {"stage_name":"detection_layer","events_processed":370,"events_dropped":0,"avg_latency_ms":18.097646980199123,"throughput_eps":0,"last_update":"2026-03-22T09:06:42.479391576Z"} +2026/03/22 09:06:47 ───────────────────────────────────────────────── +2026/03/22 09:06:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:06:52 [detection_layer] {"stage_name":"detection_layer","events_processed":370,"events_dropped":0,"avg_latency_ms":18.097646980199123,"throughput_eps":0,"last_update":"2026-03-22T09:06:47.479186493Z"} +2026/03/22 09:06:52 [transform_engine] {"stage_name":"transform_engine","events_processed":370,"events_dropped":0,"avg_latency_ms":230.88255190596914,"throughput_eps":0,"last_update":"2026-03-22T09:06:47.479159521Z"} +2026/03/22 09:06:52 [log_collector] {"stage_name":"log_collector","events_processed":17734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3546.8,"last_update":"2026-03-22T09:06:47.368606811Z"} +2026/03/22 09:06:52 [metric_collector] {"stage_name":"metric_collector","events_processed":11119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2223.8,"last_update":"2026-03-22T09:06:47.369029721Z"} +2026/03/22 09:06:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:06:47.377948647Z"} +2026/03/22 09:06:52 ───────────────────────────────────────────────── +2026/03/22 09:06:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:06:57 [log_collector] {"stage_name":"log_collector","events_processed":17734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3546.8,"last_update":"2026-03-22T09:06:52.368457782Z"} +2026/03/22 09:06:57 [metric_collector] {"stage_name":"metric_collector","events_processed":11124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2224.8,"last_update":"2026-03-22T09:06:52.368448635Z"} +2026/03/22 09:06:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4452,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:06:52.377726888Z"} +2026/03/22 09:06:57 [detection_layer] {"stage_name":"detection_layer","events_processed":370,"events_dropped":0,"avg_latency_ms":18.097646980199123,"throughput_eps":0,"last_update":"2026-03-22T09:06:52.478950117Z"} +2026/03/22 09:06:57 [transform_engine] {"stage_name":"transform_engine","events_processed":370,"events_dropped":0,"avg_latency_ms":230.88255190596914,"throughput_eps":0,"last_update":"2026-03-22T09:06:52.478917144Z"} +2026/03/22 09:06:57 ───────────────────────────────────────────────── +2026/03/22 09:07:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:07:02 [transform_engine] {"stage_name":"transform_engine","events_processed":371,"events_dropped":0,"avg_latency_ms":201.97412092477532,"throughput_eps":0,"last_update":"2026-03-22T09:06:57.566201216Z"} +2026/03/22 09:07:02 [log_collector] {"stage_name":"log_collector","events_processed":17734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3546.8,"last_update":"2026-03-22T09:06:57.368164457Z"} +2026/03/22 09:07:02 [metric_collector] {"stage_name":"metric_collector","events_processed":11129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2225.8,"last_update":"2026-03-22T09:06:57.368418283Z"} +2026/03/22 09:07:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:06:57.377513056Z"} +2026/03/22 09:07:02 [detection_layer] {"stage_name":"detection_layer","events_processed":370,"events_dropped":0,"avg_latency_ms":18.097646980199123,"throughput_eps":0,"last_update":"2026-03-22T09:06:57.47982557Z"} +2026/03/22 09:07:02 ───────────────────────────────────────────────── +2026/03/22 09:07:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:07:07 [metric_collector] {"stage_name":"metric_collector","events_processed":11134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2226.8,"last_update":"2026-03-22T09:07:02.369515451Z"} +2026/03/22 09:07:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:07:02.377893981Z"} +2026/03/22 09:07:07 [detection_layer] {"stage_name":"detection_layer","events_processed":371,"events_dropped":0,"avg_latency_ms":18.6426855841593,"throughput_eps":0,"last_update":"2026-03-22T09:07:02.479245435Z"} +2026/03/22 09:07:07 [transform_engine] {"stage_name":"transform_engine","events_processed":371,"events_dropped":0,"avg_latency_ms":201.97412092477532,"throughput_eps":0,"last_update":"2026-03-22T09:07:02.479207381Z"} +2026/03/22 09:07:07 [log_collector] {"stage_name":"log_collector","events_processed":17734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3546.8,"last_update":"2026-03-22T09:07:07.368525107Z"} +2026/03/22 09:07:07 ───────────────────────────────────────────────── +Saved state: 13 clusters, 17735 messages, reason: none +2026/03/22 09:07:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:07:12 [log_collector] {"stage_name":"log_collector","events_processed":17734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3546.8,"last_update":"2026-03-22T09:07:07.368525107Z"} +2026/03/22 09:07:12 [metric_collector] {"stage_name":"metric_collector","events_processed":11139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2227.8,"last_update":"2026-03-22T09:07:07.368972393Z"} +2026/03/22 09:07:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:07:07.377894615Z"} +2026/03/22 09:07:12 [detection_layer] {"stage_name":"detection_layer","events_processed":371,"events_dropped":0,"avg_latency_ms":18.6426855841593,"throughput_eps":0,"last_update":"2026-03-22T09:07:07.479276748Z"} +2026/03/22 09:07:12 [transform_engine] {"stage_name":"transform_engine","events_processed":371,"events_dropped":0,"avg_latency_ms":201.97412092477532,"throughput_eps":0,"last_update":"2026-03-22T09:07:07.479315301Z"} +2026/03/22 09:07:12 ───────────────────────────────────────────────── +2026/03/22 09:07:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:07:17 [log_collector] {"stage_name":"log_collector","events_processed":17739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3547.8,"last_update":"2026-03-22T09:07:17.368261963Z"} +2026/03/22 09:07:17 [metric_collector] {"stage_name":"metric_collector","events_processed":11144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2228.8,"last_update":"2026-03-22T09:07:12.368956424Z"} +2026/03/22 09:07:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:07:12.377988706Z"} +2026/03/22 09:07:17 [detection_layer] {"stage_name":"detection_layer","events_processed":371,"events_dropped":0,"avg_latency_ms":18.6426855841593,"throughput_eps":0,"last_update":"2026-03-22T09:07:12.479144567Z"} +2026/03/22 09:07:17 [transform_engine] {"stage_name":"transform_engine","events_processed":371,"events_dropped":0,"avg_latency_ms":201.97412092477532,"throughput_eps":0,"last_update":"2026-03-22T09:07:12.479160446Z"} +2026/03/22 09:07:17 ───────────────────────────────────────────────── +2026/03/22 09:07:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:07:22 [log_collector] {"stage_name":"log_collector","events_processed":17739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3547.8,"last_update":"2026-03-22T09:07:17.368261963Z"} +2026/03/22 09:07:22 [metric_collector] {"stage_name":"metric_collector","events_processed":11149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2229.8,"last_update":"2026-03-22T09:07:17.368583048Z"} +2026/03/22 09:07:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:07:17.375638114Z"} +2026/03/22 09:07:22 [detection_layer] {"stage_name":"detection_layer","events_processed":371,"events_dropped":0,"avg_latency_ms":18.6426855841593,"throughput_eps":0,"last_update":"2026-03-22T09:07:17.480393829Z"} +2026/03/22 09:07:22 [transform_engine] {"stage_name":"transform_engine","events_processed":371,"events_dropped":0,"avg_latency_ms":201.97412092477532,"throughput_eps":0,"last_update":"2026-03-22T09:07:17.480412765Z"} +2026/03/22 09:07:22 ───────────────────────────────────────────────── +2026/03/22 09:07:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:07:27 [transform_engine] {"stage_name":"transform_engine","events_processed":371,"events_dropped":0,"avg_latency_ms":201.97412092477532,"throughput_eps":0,"last_update":"2026-03-22T09:07:22.479659542Z"} +2026/03/22 09:07:27 [log_collector] {"stage_name":"log_collector","events_processed":17739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3547.8,"last_update":"2026-03-22T09:07:22.367965616Z"} +2026/03/22 09:07:27 [metric_collector] {"stage_name":"metric_collector","events_processed":11154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2230.8,"last_update":"2026-03-22T09:07:22.368201317Z"} +2026/03/22 09:07:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:07:22.375468478Z"} +2026/03/22 09:07:27 [detection_layer] {"stage_name":"detection_layer","events_processed":371,"events_dropped":0,"avg_latency_ms":18.6426855841593,"throughput_eps":0,"last_update":"2026-03-22T09:07:22.479641878Z"} +2026/03/22 09:07:27 ───────────────────────────────────────────────── +2026/03/22 09:07:27 [ANOMALY] time=2026-03-22T09:07:27Z score=0.8100 method=SEAD details=MAD!:w=0.50,s=0.90 RRCF-fast:w=0.13,s=0.82 RRCF-mid:w=0.12,s=0.73 RRCF-slow:w=0.09,s=0.60 COPOD!:w=0.16,s=0.71 +2026/03/22 09:07:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:07:32 [transform_engine] {"stage_name":"transform_engine","events_processed":372,"events_dropped":0,"avg_latency_ms":211.22680013982028,"throughput_eps":0,"last_update":"2026-03-22T09:07:27.727281566Z"} +2026/03/22 09:07:32 [log_collector] {"stage_name":"log_collector","events_processed":17739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3547.8,"last_update":"2026-03-22T09:07:27.368471663Z"} +2026/03/22 09:07:32 [metric_collector] {"stage_name":"metric_collector","events_processed":11159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2231.8,"last_update":"2026-03-22T09:07:27.368664381Z"} +2026/03/22 09:07:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:07:27.375751739Z"} +2026/03/22 09:07:32 [detection_layer] {"stage_name":"detection_layer","events_processed":371,"events_dropped":0,"avg_latency_ms":18.6426855841593,"throughput_eps":0,"last_update":"2026-03-22T09:07:27.479058939Z"} +2026/03/22 09:07:32 ───────────────────────────────────────────────── +2026/03/22 09:07:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:07:37 [log_collector] {"stage_name":"log_collector","events_processed":17739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3547.8,"last_update":"2026-03-22T09:07:32.368012609Z"} +2026/03/22 09:07:37 [metric_collector] {"stage_name":"metric_collector","events_processed":11164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2232.8,"last_update":"2026-03-22T09:07:32.368408227Z"} +2026/03/22 09:07:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:07:32.375335767Z"} +2026/03/22 09:07:37 [detection_layer] {"stage_name":"detection_layer","events_processed":372,"events_dropped":0,"avg_latency_ms":17.01970606732744,"throughput_eps":0,"last_update":"2026-03-22T09:07:32.479443802Z"} +2026/03/22 09:07:37 [transform_engine] {"stage_name":"transform_engine","events_processed":372,"events_dropped":0,"avg_latency_ms":211.22680013982028,"throughput_eps":0,"last_update":"2026-03-22T09:07:32.47948949Z"} +2026/03/22 09:07:37 ───────────────────────────────────────────────── +2026/03/22 09:07:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:07:42 [log_collector] {"stage_name":"log_collector","events_processed":17739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3547.8,"last_update":"2026-03-22T09:07:37.368430676Z"} +2026/03/22 09:07:42 [metric_collector] {"stage_name":"metric_collector","events_processed":11169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2233.8,"last_update":"2026-03-22T09:07:37.368657841Z"} +2026/03/22 09:07:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4470,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:07:37.376317043Z"} +2026/03/22 09:07:42 [detection_layer] {"stage_name":"detection_layer","events_processed":372,"events_dropped":0,"avg_latency_ms":17.01970606732744,"throughput_eps":0,"last_update":"2026-03-22T09:07:37.479582814Z"} +2026/03/22 09:07:42 [transform_engine] {"stage_name":"transform_engine","events_processed":372,"events_dropped":0,"avg_latency_ms":211.22680013982028,"throughput_eps":0,"last_update":"2026-03-22T09:07:37.479550481Z"} +2026/03/22 09:07:42 ───────────────────────────────────────────────── +2026/03/22 09:07:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:07:47 [log_collector] {"stage_name":"log_collector","events_processed":17739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3547.8,"last_update":"2026-03-22T09:07:47.368267797Z"} +2026/03/22 09:07:47 [metric_collector] {"stage_name":"metric_collector","events_processed":11174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2234.8,"last_update":"2026-03-22T09:07:42.369015548Z"} +2026/03/22 09:07:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:07:42.376692204Z"} +2026/03/22 09:07:47 [detection_layer] {"stage_name":"detection_layer","events_processed":372,"events_dropped":0,"avg_latency_ms":17.01970606732744,"throughput_eps":0,"last_update":"2026-03-22T09:07:42.479871459Z"} +2026/03/22 09:07:47 [transform_engine] {"stage_name":"transform_engine","events_processed":372,"events_dropped":0,"avg_latency_ms":211.22680013982028,"throughput_eps":0,"last_update":"2026-03-22T09:07:42.479859266Z"} +2026/03/22 09:07:47 ───────────────────────────────────────────────── +2026/03/22 09:07:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:07:52 [detection_layer] {"stage_name":"detection_layer","events_processed":372,"events_dropped":0,"avg_latency_ms":17.01970606732744,"throughput_eps":0,"last_update":"2026-03-22T09:07:47.47951092Z"} +2026/03/22 09:07:52 [transform_engine] {"stage_name":"transform_engine","events_processed":372,"events_dropped":0,"avg_latency_ms":211.22680013982028,"throughput_eps":0,"last_update":"2026-03-22T09:07:47.479455174Z"} +2026/03/22 09:07:52 [log_collector] {"stage_name":"log_collector","events_processed":17739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3547.8,"last_update":"2026-03-22T09:07:47.368267797Z"} +2026/03/22 09:07:52 [metric_collector] {"stage_name":"metric_collector","events_processed":11179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2235.8,"last_update":"2026-03-22T09:07:47.368743028Z"} +2026/03/22 09:07:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:07:47.377282897Z"} +2026/03/22 09:07:52 ───────────────────────────────────────────────── +2026/03/22 09:07:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:07:57 [metric_collector] {"stage_name":"metric_collector","events_processed":11184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2236.8,"last_update":"2026-03-22T09:07:52.368311222Z"} +2026/03/22 09:07:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4476,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:07:52.374165497Z"} +2026/03/22 09:07:57 [detection_layer] {"stage_name":"detection_layer","events_processed":372,"events_dropped":0,"avg_latency_ms":17.01970606732744,"throughput_eps":0,"last_update":"2026-03-22T09:07:52.479435988Z"} +2026/03/22 09:07:57 [transform_engine] {"stage_name":"transform_engine","events_processed":372,"events_dropped":0,"avg_latency_ms":211.22680013982028,"throughput_eps":0,"last_update":"2026-03-22T09:07:52.479403216Z"} +2026/03/22 09:07:57 [log_collector] {"stage_name":"log_collector","events_processed":17742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3548.4,"last_update":"2026-03-22T09:07:52.367997312Z"} +2026/03/22 09:07:57 ───────────────────────────────────────────────── +2026/03/22 09:07:57 [ANOMALY] time=2026-03-22T09:07:57Z score=0.8086 method=SEAD details=MAD!:w=0.49,s=0.94 RRCF-fast:w=0.13,s=0.80 RRCF-mid:w=0.12,s=0.49 RRCF-slow:w=0.09,s=0.48 COPOD!:w=0.16,s=0.86 +2026/03/22 09:08:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:08:02 [log_collector] {"stage_name":"log_collector","events_processed":17818,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3563.6,"last_update":"2026-03-22T09:07:57.368792623Z"} +2026/03/22 09:08:02 [metric_collector] {"stage_name":"metric_collector","events_processed":11194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2238.8,"last_update":"2026-03-22T09:08:02.368316658Z"} +2026/03/22 09:08:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:07:57.375210928Z"} +2026/03/22 09:08:02 [detection_layer] {"stage_name":"detection_layer","events_processed":372,"events_dropped":0,"avg_latency_ms":17.01970606732744,"throughput_eps":0,"last_update":"2026-03-22T09:07:57.48005878Z"} +2026/03/22 09:08:02 [transform_engine] {"stage_name":"transform_engine","events_processed":373,"events_dropped":0,"avg_latency_ms":195.52072791185626,"throughput_eps":0,"last_update":"2026-03-22T09:07:57.611524943Z"} +2026/03/22 09:08:02 ───────────────────────────────────────────────── +2026/03/22 09:08:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:08:07 [transform_engine] {"stage_name":"transform_engine","events_processed":373,"events_dropped":0,"avg_latency_ms":195.52072791185626,"throughput_eps":0,"last_update":"2026-03-22T09:08:02.47956428Z"} +2026/03/22 09:08:07 [log_collector] {"stage_name":"log_collector","events_processed":18035,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3607,"last_update":"2026-03-22T09:08:02.368419405Z"} +2026/03/22 09:08:07 [metric_collector] {"stage_name":"metric_collector","events_processed":11194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2238.8,"last_update":"2026-03-22T09:08:02.368316658Z"} +2026/03/22 09:08:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4480,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:08:02.37836616Z"} +2026/03/22 09:08:07 [detection_layer] {"stage_name":"detection_layer","events_processed":373,"events_dropped":0,"avg_latency_ms":16.570004053861954,"throughput_eps":0,"last_update":"2026-03-22T09:08:02.47952256Z"} +2026/03/22 09:08:07 ───────────────────────────────────────────────── +2026/03/22 09:08:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:08:12 [metric_collector] {"stage_name":"metric_collector","events_processed":11199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2239.8,"last_update":"2026-03-22T09:08:07.36876902Z"} +2026/03/22 09:08:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4482,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:08:07.375387499Z"} +2026/03/22 09:08:12 [detection_layer] {"stage_name":"detection_layer","events_processed":373,"events_dropped":0,"avg_latency_ms":16.570004053861954,"throughput_eps":0,"last_update":"2026-03-22T09:08:07.47960846Z"} +2026/03/22 09:08:12 [transform_engine] {"stage_name":"transform_engine","events_processed":373,"events_dropped":0,"avg_latency_ms":195.52072791185626,"throughput_eps":0,"last_update":"2026-03-22T09:08:07.479619681Z"} +2026/03/22 09:08:12 [log_collector] {"stage_name":"log_collector","events_processed":18098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3619.6,"last_update":"2026-03-22T09:08:07.368462974Z"} +2026/03/22 09:08:12 ───────────────────────────────────────────────── +2026/03/22 09:08:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:08:17 [log_collector] {"stage_name":"log_collector","events_processed":18098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3619.6,"last_update":"2026-03-22T09:08:12.368770668Z"} +2026/03/22 09:08:17 [metric_collector] {"stage_name":"metric_collector","events_processed":11204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2240.8,"last_update":"2026-03-22T09:08:12.369088357Z"} +2026/03/22 09:08:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:08:12.378708195Z"} +2026/03/22 09:08:17 [detection_layer] {"stage_name":"detection_layer","events_processed":373,"events_dropped":0,"avg_latency_ms":16.570004053861954,"throughput_eps":0,"last_update":"2026-03-22T09:08:12.478951855Z"} +2026/03/22 09:08:17 [transform_engine] {"stage_name":"transform_engine","events_processed":373,"events_dropped":0,"avg_latency_ms":195.52072791185626,"throughput_eps":0,"last_update":"2026-03-22T09:08:12.478846133Z"} +2026/03/22 09:08:17 ───────────────────────────────────────────────── +2026/03/22 09:08:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:08:22 [transform_engine] {"stage_name":"transform_engine","events_processed":373,"events_dropped":0,"avg_latency_ms":195.52072791185626,"throughput_eps":0,"last_update":"2026-03-22T09:08:17.479710032Z"} +2026/03/22 09:08:22 [log_collector] {"stage_name":"log_collector","events_processed":18098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3619.6,"last_update":"2026-03-22T09:08:17.369023286Z"} +2026/03/22 09:08:22 [metric_collector] {"stage_name":"metric_collector","events_processed":11209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2241.8,"last_update":"2026-03-22T09:08:17.369219202Z"} +2026/03/22 09:08:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4486,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:08:17.379463064Z"} +2026/03/22 09:08:22 [detection_layer] {"stage_name":"detection_layer","events_processed":373,"events_dropped":0,"avg_latency_ms":16.570004053861954,"throughput_eps":0,"last_update":"2026-03-22T09:08:17.479696507Z"} +2026/03/22 09:08:22 ───────────────────────────────────────────────── +2026/03/22 09:08:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:08:27 [log_collector] {"stage_name":"log_collector","events_processed":18098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3619.6,"last_update":"2026-03-22T09:08:22.368386868Z"} +2026/03/22 09:08:27 [metric_collector] {"stage_name":"metric_collector","events_processed":11214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2242.8,"last_update":"2026-03-22T09:08:22.368943906Z"} +2026/03/22 09:08:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:08:22.377217896Z"} +2026/03/22 09:08:27 [detection_layer] {"stage_name":"detection_layer","events_processed":373,"events_dropped":0,"avg_latency_ms":16.570004053861954,"throughput_eps":0,"last_update":"2026-03-22T09:08:22.479403678Z"} +2026/03/22 09:08:27 [transform_engine] {"stage_name":"transform_engine","events_processed":373,"events_dropped":0,"avg_latency_ms":195.52072791185626,"throughput_eps":0,"last_update":"2026-03-22T09:08:22.479414979Z"} +2026/03/22 09:08:27 ───────────────────────────────────────────────── +2026/03/22 09:08:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:08:32 [log_collector] {"stage_name":"log_collector","events_processed":18098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3619.6,"last_update":"2026-03-22T09:08:27.368369236Z"} +2026/03/22 09:08:32 [metric_collector] {"stage_name":"metric_collector","events_processed":11219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2243.8,"last_update":"2026-03-22T09:08:27.368609196Z"} +2026/03/22 09:08:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4490,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:08:27.374540649Z"} +2026/03/22 09:08:32 [detection_layer] {"stage_name":"detection_layer","events_processed":373,"events_dropped":0,"avg_latency_ms":16.570004053861954,"throughput_eps":0,"last_update":"2026-03-22T09:08:27.479865173Z"} +2026/03/22 09:08:32 [transform_engine] {"stage_name":"transform_engine","events_processed":374,"events_dropped":0,"avg_latency_ms":179.381819529485,"throughput_eps":0,"last_update":"2026-03-22T09:08:27.594708863Z"} +2026/03/22 09:08:32 ───────────────────────────────────────────────── +2026/03/22 09:08:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:08:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:08:32.377135898Z"} +2026/03/22 09:08:37 [detection_layer] {"stage_name":"detection_layer","events_processed":374,"events_dropped":0,"avg_latency_ms":16.750607443089564,"throughput_eps":0,"last_update":"2026-03-22T09:08:32.479377877Z"} +2026/03/22 09:08:37 [transform_engine] {"stage_name":"transform_engine","events_processed":374,"events_dropped":0,"avg_latency_ms":179.381819529485,"throughput_eps":0,"last_update":"2026-03-22T09:08:32.47941567Z"} +2026/03/22 09:08:37 [log_collector] {"stage_name":"log_collector","events_processed":18098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3619.6,"last_update":"2026-03-22T09:08:32.368213796Z"} +2026/03/22 09:08:37 [metric_collector] {"stage_name":"metric_collector","events_processed":11224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2244.8,"last_update":"2026-03-22T09:08:32.368330299Z"} +2026/03/22 09:08:37 ───────────────────────────────────────────────── +2026/03/22 09:08:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:08:42 [transform_engine] {"stage_name":"transform_engine","events_processed":374,"events_dropped":0,"avg_latency_ms":179.381819529485,"throughput_eps":0,"last_update":"2026-03-22T09:08:37.479476664Z"} +2026/03/22 09:08:42 [log_collector] {"stage_name":"log_collector","events_processed":18098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3619.6,"last_update":"2026-03-22T09:08:37.368936898Z"} +2026/03/22 09:08:42 [metric_collector] {"stage_name":"metric_collector","events_processed":11229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2245.8,"last_update":"2026-03-22T09:08:37.369430604Z"} +2026/03/22 09:08:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:08:37.378258025Z"} +2026/03/22 09:08:42 [detection_layer] {"stage_name":"detection_layer","events_processed":374,"events_dropped":0,"avg_latency_ms":16.750607443089564,"throughput_eps":0,"last_update":"2026-03-22T09:08:37.479506261Z"} +2026/03/22 09:08:42 ───────────────────────────────────────────────── +2026/03/22 09:08:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:08:47 [metric_collector] {"stage_name":"metric_collector","events_processed":11234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2246.8,"last_update":"2026-03-22T09:08:42.368993483Z"} +2026/03/22 09:08:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4496,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:08:42.378584326Z"} +2026/03/22 09:08:47 [detection_layer] {"stage_name":"detection_layer","events_processed":374,"events_dropped":0,"avg_latency_ms":16.750607443089564,"throughput_eps":0,"last_update":"2026-03-22T09:08:42.479819457Z"} +2026/03/22 09:08:47 [transform_engine] {"stage_name":"transform_engine","events_processed":374,"events_dropped":0,"avg_latency_ms":179.381819529485,"throughput_eps":0,"last_update":"2026-03-22T09:08:42.47978477Z"} +2026/03/22 09:08:47 [log_collector] {"stage_name":"log_collector","events_processed":18098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3619.6,"last_update":"2026-03-22T09:08:42.368622262Z"} +2026/03/22 09:08:47 ───────────────────────────────────────────────── +2026/03/22 09:08:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:08:52 [detection_layer] {"stage_name":"detection_layer","events_processed":374,"events_dropped":0,"avg_latency_ms":16.750607443089564,"throughput_eps":0,"last_update":"2026-03-22T09:08:47.479713029Z"} +2026/03/22 09:08:52 [transform_engine] {"stage_name":"transform_engine","events_processed":374,"events_dropped":0,"avg_latency_ms":179.381819529485,"throughput_eps":0,"last_update":"2026-03-22T09:08:47.479661691Z"} +2026/03/22 09:08:52 [log_collector] {"stage_name":"log_collector","events_processed":18098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3619.6,"last_update":"2026-03-22T09:08:52.368816163Z"} +2026/03/22 09:08:52 [metric_collector] {"stage_name":"metric_collector","events_processed":11238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2247.6,"last_update":"2026-03-22T09:08:47.36874848Z"} +2026/03/22 09:08:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4498,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:08:47.378452459Z"} +2026/03/22 09:08:52 ───────────────────────────────────────────────── +2026/03/22 09:08:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:08:57 [detection_layer] {"stage_name":"detection_layer","events_processed":374,"events_dropped":0,"avg_latency_ms":16.750607443089564,"throughput_eps":0,"last_update":"2026-03-22T09:08:52.479790731Z"} +2026/03/22 09:08:57 [transform_engine] {"stage_name":"transform_engine","events_processed":374,"events_dropped":0,"avg_latency_ms":179.381819529485,"throughput_eps":0,"last_update":"2026-03-22T09:08:52.479760584Z"} +2026/03/22 09:08:57 [log_collector] {"stage_name":"log_collector","events_processed":18098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3619.6,"last_update":"2026-03-22T09:08:52.368816163Z"} +2026/03/22 09:08:57 [metric_collector] {"stage_name":"metric_collector","events_processed":11244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2248.8,"last_update":"2026-03-22T09:08:52.369089356Z"} +2026/03/22 09:08:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:08:52.379376232Z"} +2026/03/22 09:08:57 ───────────────────────────────────────────────── +2026/03/22 09:09:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:09:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:08:57.376306493Z"} +2026/03/22 09:09:02 [detection_layer] {"stage_name":"detection_layer","events_processed":374,"events_dropped":0,"avg_latency_ms":16.750607443089564,"throughput_eps":0,"last_update":"2026-03-22T09:08:57.479648971Z"} +2026/03/22 09:09:02 [transform_engine] {"stage_name":"transform_engine","events_processed":375,"events_dropped":0,"avg_latency_ms":157.084892823588,"throughput_eps":0,"last_update":"2026-03-22T09:08:57.547498687Z"} +2026/03/22 09:09:02 [log_collector] {"stage_name":"log_collector","events_processed":18098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3619.6,"last_update":"2026-03-22T09:08:57.368629717Z"} +2026/03/22 09:09:02 [metric_collector] {"stage_name":"metric_collector","events_processed":11248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2249.6,"last_update":"2026-03-22T09:08:57.368602835Z"} +2026/03/22 09:09:02 ───────────────────────────────────────────────── +2026/03/22 09:09:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:09:07 [transform_engine] {"stage_name":"transform_engine","events_processed":375,"events_dropped":0,"avg_latency_ms":157.084892823588,"throughput_eps":0,"last_update":"2026-03-22T09:09:02.479503484Z"} +2026/03/22 09:09:07 [log_collector] {"stage_name":"log_collector","events_processed":18098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3619.6,"last_update":"2026-03-22T09:09:02.368022597Z"} +2026/03/22 09:09:07 [metric_collector] {"stage_name":"metric_collector","events_processed":11253,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2250.6,"last_update":"2026-03-22T09:09:02.367961128Z"} +2026/03/22 09:09:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:09:02.379136015Z"} +2026/03/22 09:09:07 [detection_layer] {"stage_name":"detection_layer","events_processed":375,"events_dropped":0,"avg_latency_ms":16.81703495447165,"throughput_eps":0,"last_update":"2026-03-22T09:09:02.47948551Z"} +2026/03/22 09:09:07 ───────────────────────────────────────────────── +2026/03/22 09:09:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:09:12 [metric_collector] {"stage_name":"metric_collector","events_processed":11258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2251.6,"last_update":"2026-03-22T09:09:07.368854839Z"} +2026/03/22 09:09:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4506,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:09:07.377801588Z"} +2026/03/22 09:09:12 [detection_layer] {"stage_name":"detection_layer","events_processed":375,"events_dropped":0,"avg_latency_ms":16.81703495447165,"throughput_eps":0,"last_update":"2026-03-22T09:09:07.479082917Z"} +2026/03/22 09:09:12 [transform_engine] {"stage_name":"transform_engine","events_processed":375,"events_dropped":0,"avg_latency_ms":157.084892823588,"throughput_eps":0,"last_update":"2026-03-22T09:09:07.479039895Z"} +2026/03/22 09:09:12 [log_collector] {"stage_name":"log_collector","events_processed":18098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3619.6,"last_update":"2026-03-22T09:09:07.368865069Z"} +2026/03/22 09:09:12 ───────────────────────────────────────────────── +2026/03/22 09:09:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:09:17 [log_collector] {"stage_name":"log_collector","events_processed":18098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3619.6,"last_update":"2026-03-22T09:09:17.368406578Z"} +2026/03/22 09:09:17 [metric_collector] {"stage_name":"metric_collector","events_processed":11263,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2252.6,"last_update":"2026-03-22T09:09:12.368887612Z"} +2026/03/22 09:09:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:09:12.377306941Z"} +2026/03/22 09:09:17 [detection_layer] {"stage_name":"detection_layer","events_processed":375,"events_dropped":0,"avg_latency_ms":16.81703495447165,"throughput_eps":0,"last_update":"2026-03-22T09:09:12.479476591Z"} +2026/03/22 09:09:17 [transform_engine] {"stage_name":"transform_engine","events_processed":375,"events_dropped":0,"avg_latency_ms":157.084892823588,"throughput_eps":0,"last_update":"2026-03-22T09:09:12.479526507Z"} +2026/03/22 09:09:17 ───────────────────────────────────────────────── +2026/03/22 09:09:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:09:22 [log_collector] {"stage_name":"log_collector","events_processed":18098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3619.6,"last_update":"2026-03-22T09:09:17.368406578Z"} +2026/03/22 09:09:22 [metric_collector] {"stage_name":"metric_collector","events_processed":11269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2253.8,"last_update":"2026-03-22T09:09:17.369130906Z"} +2026/03/22 09:09:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:09:17.377645497Z"} +2026/03/22 09:09:22 [detection_layer] {"stage_name":"detection_layer","events_processed":375,"events_dropped":0,"avg_latency_ms":16.81703495447165,"throughput_eps":0,"last_update":"2026-03-22T09:09:17.479974653Z"} +2026/03/22 09:09:22 [transform_engine] {"stage_name":"transform_engine","events_processed":375,"events_dropped":0,"avg_latency_ms":157.084892823588,"throughput_eps":0,"last_update":"2026-03-22T09:09:17.480013578Z"} +2026/03/22 09:09:22 ───────────────────────────────────────────────── +2026/03/22 09:09:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:09:27 [log_collector] {"stage_name":"log_collector","events_processed":18098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3619.6,"last_update":"2026-03-22T09:09:22.368203857Z"} +2026/03/22 09:09:27 [metric_collector] {"stage_name":"metric_collector","events_processed":11274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2254.8,"last_update":"2026-03-22T09:09:22.368383511Z"} +2026/03/22 09:09:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4512,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:09:22.37711644Z"} +2026/03/22 09:09:27 [detection_layer] {"stage_name":"detection_layer","events_processed":375,"events_dropped":0,"avg_latency_ms":16.81703495447165,"throughput_eps":0,"last_update":"2026-03-22T09:09:22.479340385Z"} +2026/03/22 09:09:27 [transform_engine] {"stage_name":"transform_engine","events_processed":375,"events_dropped":0,"avg_latency_ms":157.084892823588,"throughput_eps":0,"last_update":"2026-03-22T09:09:22.479398947Z"} +2026/03/22 09:09:27 ───────────────────────────────────────────────── +2026/03/22 09:09:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:09:32 [log_collector] {"stage_name":"log_collector","events_processed":18098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3619.6,"last_update":"2026-03-22T09:09:27.368008739Z"} +2026/03/22 09:09:32 [metric_collector] {"stage_name":"metric_collector","events_processed":11279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2255.8,"last_update":"2026-03-22T09:09:27.368242016Z"} +2026/03/22 09:09:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:09:27.374836819Z"} +2026/03/22 09:09:32 [detection_layer] {"stage_name":"detection_layer","events_processed":375,"events_dropped":0,"avg_latency_ms":16.81703495447165,"throughput_eps":0,"last_update":"2026-03-22T09:09:27.479043832Z"} +2026/03/22 09:09:32 [transform_engine] {"stage_name":"transform_engine","events_processed":376,"events_dropped":0,"avg_latency_ms":141.29272985887042,"throughput_eps":0,"last_update":"2026-03-22T09:09:27.557198209Z"} +2026/03/22 09:09:32 ───────────────────────────────────────────────── +2026/03/22 09:09:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:09:37 [transform_engine] {"stage_name":"transform_engine","events_processed":376,"events_dropped":0,"avg_latency_ms":141.29272985887042,"throughput_eps":0,"last_update":"2026-03-22T09:09:32.479793052Z"} +2026/03/22 09:09:37 [log_collector] {"stage_name":"log_collector","events_processed":18098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3619.6,"last_update":"2026-03-22T09:09:32.368075261Z"} +2026/03/22 09:09:37 [metric_collector] {"stage_name":"metric_collector","events_processed":11284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2256.8,"last_update":"2026-03-22T09:09:32.36869092Z"} +2026/03/22 09:09:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:09:32.368084489Z"} +2026/03/22 09:09:37 [detection_layer] {"stage_name":"detection_layer","events_processed":376,"events_dropped":0,"avg_latency_ms":16.87082996357732,"throughput_eps":0,"last_update":"2026-03-22T09:09:32.479821167Z"} +2026/03/22 09:09:37 ───────────────────────────────────────────────── +Saved state: 13 clusters, 18099 messages, reason: none +2026/03/22 09:09:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:09:42 [detection_layer] {"stage_name":"detection_layer","events_processed":376,"events_dropped":0,"avg_latency_ms":16.87082996357732,"throughput_eps":0,"last_update":"2026-03-22T09:09:37.4795189Z"} +2026/03/22 09:09:42 [transform_engine] {"stage_name":"transform_engine","events_processed":376,"events_dropped":0,"avg_latency_ms":141.29272985887042,"throughput_eps":0,"last_update":"2026-03-22T09:09:37.479476399Z"} +2026/03/22 09:09:42 [log_collector] {"stage_name":"log_collector","events_processed":18098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3619.6,"last_update":"2026-03-22T09:09:37.368752522Z"} +2026/03/22 09:09:42 [metric_collector] {"stage_name":"metric_collector","events_processed":11289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2257.8,"last_update":"2026-03-22T09:09:37.369332042Z"} +2026/03/22 09:09:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:09:37.378108525Z"} +2026/03/22 09:09:42 ───────────────────────────────────────────────── +2026/03/22 09:09:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:09:47 [transform_engine] {"stage_name":"transform_engine","events_processed":376,"events_dropped":0,"avg_latency_ms":141.29272985887042,"throughput_eps":0,"last_update":"2026-03-22T09:09:42.478866211Z"} +2026/03/22 09:09:47 [log_collector] {"stage_name":"log_collector","events_processed":18101,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3620.2,"last_update":"2026-03-22T09:09:42.369410954Z"} +2026/03/22 09:09:47 [metric_collector] {"stage_name":"metric_collector","events_processed":11294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2258.8,"last_update":"2026-03-22T09:09:42.369631246Z"} +2026/03/22 09:09:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4520,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:09:42.376698043Z"} +2026/03/22 09:09:47 [detection_layer] {"stage_name":"detection_layer","events_processed":376,"events_dropped":0,"avg_latency_ms":16.87082996357732,"throughput_eps":0,"last_update":"2026-03-22T09:09:42.480049368Z"} +2026/03/22 09:09:47 ───────────────────────────────────────────────── +2026/03/22 09:09:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:09:52 [metric_collector] {"stage_name":"metric_collector","events_processed":11299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2259.8,"last_update":"2026-03-22T09:09:47.368800195Z"} +2026/03/22 09:09:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4522,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:09:47.376982359Z"} +2026/03/22 09:09:52 [detection_layer] {"stage_name":"detection_layer","events_processed":376,"events_dropped":0,"avg_latency_ms":16.87082996357732,"throughput_eps":0,"last_update":"2026-03-22T09:09:47.479180133Z"} +2026/03/22 09:09:52 [transform_engine] {"stage_name":"transform_engine","events_processed":376,"events_dropped":0,"avg_latency_ms":141.29272985887042,"throughput_eps":0,"last_update":"2026-03-22T09:09:47.479158642Z"} +2026/03/22 09:09:52 [log_collector] {"stage_name":"log_collector","events_processed":18101,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3620.2,"last_update":"2026-03-22T09:09:47.368809703Z"} +2026/03/22 09:09:52 ───────────────────────────────────────────────── +2026/03/22 09:09:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:09:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:09:52.375553252Z"} +2026/03/22 09:09:57 [detection_layer] {"stage_name":"detection_layer","events_processed":376,"events_dropped":0,"avg_latency_ms":16.87082996357732,"throughput_eps":0,"last_update":"2026-03-22T09:09:52.479795814Z"} +2026/03/22 09:09:57 [transform_engine] {"stage_name":"transform_engine","events_processed":376,"events_dropped":0,"avg_latency_ms":141.29272985887042,"throughput_eps":0,"last_update":"2026-03-22T09:09:52.479850959Z"} +2026/03/22 09:09:57 [log_collector] {"stage_name":"log_collector","events_processed":18126,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3625.2,"last_update":"2026-03-22T09:09:57.368414486Z"} +2026/03/22 09:09:57 [metric_collector] {"stage_name":"metric_collector","events_processed":11309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2261.8,"last_update":"2026-03-22T09:09:57.36830727Z"} +2026/03/22 09:09:57 ───────────────────────────────────────────────── +2026/03/22 09:10:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:10:02 [log_collector] {"stage_name":"log_collector","events_processed":18141,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3628.2,"last_update":"2026-03-22T09:10:02.368468636Z"} +2026/03/22 09:10:02 [metric_collector] {"stage_name":"metric_collector","events_processed":11309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2261.8,"last_update":"2026-03-22T09:09:57.36830727Z"} +2026/03/22 09:10:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4526,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:09:57.377589943Z"} +2026/03/22 09:10:02 [detection_layer] {"stage_name":"detection_layer","events_processed":376,"events_dropped":0,"avg_latency_ms":16.87082996357732,"throughput_eps":0,"last_update":"2026-03-22T09:09:57.479869634Z"} +2026/03/22 09:10:02 [transform_engine] {"stage_name":"transform_engine","events_processed":377,"events_dropped":0,"avg_latency_ms":192.53260648709633,"throughput_eps":0,"last_update":"2026-03-22T09:09:57.877313333Z"} +2026/03/22 09:10:02 ───────────────────────────────────────────────── +2026/03/22 09:10:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:10:07 [metric_collector] {"stage_name":"metric_collector","events_processed":11314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2262.8,"last_update":"2026-03-22T09:10:02.368944838Z"} +2026/03/22 09:10:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:10:02.381721704Z"} +2026/03/22 09:10:07 [detection_layer] {"stage_name":"detection_layer","events_processed":377,"events_dropped":0,"avg_latency_ms":16.28940797086186,"throughput_eps":0,"last_update":"2026-03-22T09:10:02.479971605Z"} +2026/03/22 09:10:07 [transform_engine] {"stage_name":"transform_engine","events_processed":377,"events_dropped":0,"avg_latency_ms":192.53260648709633,"throughput_eps":0,"last_update":"2026-03-22T09:10:02.478845539Z"} +2026/03/22 09:10:07 [log_collector] {"stage_name":"log_collector","events_processed":18141,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3628.2,"last_update":"2026-03-22T09:10:02.368468636Z"} +2026/03/22 09:10:07 ───────────────────────────────────────────────── +2026/03/22 09:10:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:10:12 [log_collector] {"stage_name":"log_collector","events_processed":18142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3628.4,"last_update":"2026-03-22T09:10:12.368234497Z"} +2026/03/22 09:10:12 [metric_collector] {"stage_name":"metric_collector","events_processed":11319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2263.8,"last_update":"2026-03-22T09:10:07.368256846Z"} +2026/03/22 09:10:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:10:07.376389816Z"} +2026/03/22 09:10:12 [detection_layer] {"stage_name":"detection_layer","events_processed":377,"events_dropped":0,"avg_latency_ms":16.28940797086186,"throughput_eps":0,"last_update":"2026-03-22T09:10:07.479731422Z"} +2026/03/22 09:10:12 [transform_engine] {"stage_name":"transform_engine","events_processed":377,"events_dropped":0,"avg_latency_ms":192.53260648709633,"throughput_eps":0,"last_update":"2026-03-22T09:10:07.479618344Z"} +2026/03/22 09:10:12 ───────────────────────────────────────────────── +2026/03/22 09:10:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:10:17 [log_collector] {"stage_name":"log_collector","events_processed":18142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3628.4,"last_update":"2026-03-22T09:10:17.36882264Z"} +2026/03/22 09:10:17 [metric_collector] {"stage_name":"metric_collector","events_processed":11324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2264.8,"last_update":"2026-03-22T09:10:12.3686481Z"} +2026/03/22 09:10:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4532,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:10:12.378331088Z"} +2026/03/22 09:10:17 [detection_layer] {"stage_name":"detection_layer","events_processed":377,"events_dropped":0,"avg_latency_ms":16.28940797086186,"throughput_eps":0,"last_update":"2026-03-22T09:10:12.479658305Z"} +2026/03/22 09:10:17 [transform_engine] {"stage_name":"transform_engine","events_processed":377,"events_dropped":0,"avg_latency_ms":192.53260648709633,"throughput_eps":0,"last_update":"2026-03-22T09:10:12.479555638Z"} +2026/03/22 09:10:17 ───────────────────────────────────────────────── +2026/03/22 09:10:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:10:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:10:17.378797598Z"} +2026/03/22 09:10:22 [detection_layer] {"stage_name":"detection_layer","events_processed":377,"events_dropped":0,"avg_latency_ms":16.28940797086186,"throughput_eps":0,"last_update":"2026-03-22T09:10:17.479026369Z"} +2026/03/22 09:10:22 [transform_engine] {"stage_name":"transform_engine","events_processed":377,"events_dropped":0,"avg_latency_ms":192.53260648709633,"throughput_eps":0,"last_update":"2026-03-22T09:10:17.479003255Z"} +2026/03/22 09:10:22 [log_collector] {"stage_name":"log_collector","events_processed":18142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3628.4,"last_update":"2026-03-22T09:10:17.36882264Z"} +2026/03/22 09:10:22 [metric_collector] {"stage_name":"metric_collector","events_processed":11329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2265.8,"last_update":"2026-03-22T09:10:17.369275307Z"} +2026/03/22 09:10:22 ───────────────────────────────────────────────── +2026/03/22 09:10:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:10:27 [metric_collector] {"stage_name":"metric_collector","events_processed":11334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2266.8,"last_update":"2026-03-22T09:10:22.368266056Z"} +2026/03/22 09:10:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4536,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:10:22.376612615Z"} +2026/03/22 09:10:27 [detection_layer] {"stage_name":"detection_layer","events_processed":377,"events_dropped":0,"avg_latency_ms":16.28940797086186,"throughput_eps":0,"last_update":"2026-03-22T09:10:22.479873155Z"} +2026/03/22 09:10:27 [transform_engine] {"stage_name":"transform_engine","events_processed":377,"events_dropped":0,"avg_latency_ms":192.53260648709633,"throughput_eps":0,"last_update":"2026-03-22T09:10:22.479929463Z"} +2026/03/22 09:10:27 [log_collector] {"stage_name":"log_collector","events_processed":18142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3628.4,"last_update":"2026-03-22T09:10:22.367967174Z"} +2026/03/22 09:10:27 ───────────────────────────────────────────────── +2026/03/22 09:10:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:10:32 [log_collector] {"stage_name":"log_collector","events_processed":18142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3628.4,"last_update":"2026-03-22T09:10:27.367994739Z"} +2026/03/22 09:10:32 [metric_collector] {"stage_name":"metric_collector","events_processed":11339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2267.8,"last_update":"2026-03-22T09:10:27.368268323Z"} +2026/03/22 09:10:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:10:27.375165185Z"} +2026/03/22 09:10:32 [detection_layer] {"stage_name":"detection_layer","events_processed":377,"events_dropped":0,"avg_latency_ms":16.28940797086186,"throughput_eps":0,"last_update":"2026-03-22T09:10:27.479443534Z"} +2026/03/22 09:10:32 [transform_engine] {"stage_name":"transform_engine","events_processed":378,"events_dropped":0,"avg_latency_ms":174.90477718967708,"throughput_eps":0,"last_update":"2026-03-22T09:10:27.583796126Z"} +2026/03/22 09:10:32 ───────────────────────────────────────────────── +2026/03/22 09:10:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:10:37 [transform_engine] {"stage_name":"transform_engine","events_processed":378,"events_dropped":0,"avg_latency_ms":174.90477718967708,"throughput_eps":0,"last_update":"2026-03-22T09:10:32.479740294Z"} +2026/03/22 09:10:37 [log_collector] {"stage_name":"log_collector","events_processed":18142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3628.4,"last_update":"2026-03-22T09:10:37.368010171Z"} +2026/03/22 09:10:37 [metric_collector] {"stage_name":"metric_collector","events_processed":11344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2268.8,"last_update":"2026-03-22T09:10:32.369062606Z"} +2026/03/22 09:10:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4540,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:10:32.37757399Z"} +2026/03/22 09:10:37 [detection_layer] {"stage_name":"detection_layer","events_processed":378,"events_dropped":0,"avg_latency_ms":16.48519257668949,"throughput_eps":0,"last_update":"2026-03-22T09:10:32.479841939Z"} +2026/03/22 09:10:37 ───────────────────────────────────────────────── +2026/03/22 09:10:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:10:42 [log_collector] {"stage_name":"log_collector","events_processed":18142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3628.4,"last_update":"2026-03-22T09:10:37.368010171Z"} +2026/03/22 09:10:42 [metric_collector] {"stage_name":"metric_collector","events_processed":11349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2269.8,"last_update":"2026-03-22T09:10:37.368549885Z"} +2026/03/22 09:10:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4542,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:10:37.377298253Z"} +2026/03/22 09:10:42 [detection_layer] {"stage_name":"detection_layer","events_processed":378,"events_dropped":0,"avg_latency_ms":16.48519257668949,"throughput_eps":0,"last_update":"2026-03-22T09:10:37.479623271Z"} +2026/03/22 09:10:42 [transform_engine] {"stage_name":"transform_engine","events_processed":378,"events_dropped":0,"avg_latency_ms":174.90477718967708,"throughput_eps":0,"last_update":"2026-03-22T09:10:37.47951336Z"} +2026/03/22 09:10:42 ───────────────────────────────────────────────── +2026/03/22 09:10:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:10:47 [log_collector] {"stage_name":"log_collector","events_processed":18142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3628.4,"last_update":"2026-03-22T09:10:42.36862614Z"} +2026/03/22 09:10:47 [metric_collector] {"stage_name":"metric_collector","events_processed":11354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2270.8,"last_update":"2026-03-22T09:10:42.368798891Z"} +2026/03/22 09:10:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:10:42.377486754Z"} +2026/03/22 09:10:47 [detection_layer] {"stage_name":"detection_layer","events_processed":378,"events_dropped":0,"avg_latency_ms":16.48519257668949,"throughput_eps":0,"last_update":"2026-03-22T09:10:42.479836258Z"} +2026/03/22 09:10:47 [transform_engine] {"stage_name":"transform_engine","events_processed":378,"events_dropped":0,"avg_latency_ms":174.90477718967708,"throughput_eps":0,"last_update":"2026-03-22T09:10:42.479856668Z"} +2026/03/22 09:10:47 ───────────────────────────────────────────────── +2026/03/22 09:10:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:10:52 [log_collector] {"stage_name":"log_collector","events_processed":18142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3628.4,"last_update":"2026-03-22T09:10:52.368110498Z"} +2026/03/22 09:10:52 [metric_collector] {"stage_name":"metric_collector","events_processed":11359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2271.8,"last_update":"2026-03-22T09:10:47.368322767Z"} +2026/03/22 09:10:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:10:47.377534634Z"} +2026/03/22 09:10:52 [detection_layer] {"stage_name":"detection_layer","events_processed":378,"events_dropped":0,"avg_latency_ms":16.48519257668949,"throughput_eps":0,"last_update":"2026-03-22T09:10:47.479955194Z"} +2026/03/22 09:10:52 [transform_engine] {"stage_name":"transform_engine","events_processed":378,"events_dropped":0,"avg_latency_ms":174.90477718967708,"throughput_eps":0,"last_update":"2026-03-22T09:10:47.479883117Z"} +2026/03/22 09:10:52 ───────────────────────────────────────────────── +2026/03/22 09:10:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:10:57 [log_collector] {"stage_name":"log_collector","events_processed":18142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3628.4,"last_update":"2026-03-22T09:10:52.368110498Z"} +2026/03/22 09:10:57 [metric_collector] {"stage_name":"metric_collector","events_processed":11364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2272.8,"last_update":"2026-03-22T09:10:52.368848161Z"} +2026/03/22 09:10:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:10:52.377292257Z"} +2026/03/22 09:10:57 [detection_layer] {"stage_name":"detection_layer","events_processed":378,"events_dropped":0,"avg_latency_ms":16.48519257668949,"throughput_eps":0,"last_update":"2026-03-22T09:10:52.479595623Z"} +2026/03/22 09:10:57 [transform_engine] {"stage_name":"transform_engine","events_processed":378,"events_dropped":0,"avg_latency_ms":174.90477718967708,"throughput_eps":0,"last_update":"2026-03-22T09:10:52.479494249Z"} +2026/03/22 09:10:57 ───────────────────────────────────────────────── +2026/03/22 09:11:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:11:02 [log_collector] {"stage_name":"log_collector","events_processed":18142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3628.4,"last_update":"2026-03-22T09:10:57.368190338Z"} +2026/03/22 09:11:02 [metric_collector] {"stage_name":"metric_collector","events_processed":11368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2273.6,"last_update":"2026-03-22T09:10:57.367937564Z"} +2026/03/22 09:11:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:10:57.377613439Z"} +2026/03/22 09:11:02 [detection_layer] {"stage_name":"detection_layer","events_processed":378,"events_dropped":0,"avg_latency_ms":16.48519257668949,"throughput_eps":0,"last_update":"2026-03-22T09:10:57.480009894Z"} +2026/03/22 09:11:02 [transform_engine] {"stage_name":"transform_engine","events_processed":379,"events_dropped":0,"avg_latency_ms":153.77436255174166,"throughput_eps":0,"last_update":"2026-03-22T09:10:57.548082125Z"} +2026/03/22 09:11:02 ───────────────────────────────────────────────── +Saved state: 13 clusters, 18143 messages, reason: none +2026/03/22 09:11:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:11:07 [log_collector] {"stage_name":"log_collector","events_processed":18147,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3629.4,"last_update":"2026-03-22T09:11:07.368751844Z"} +2026/03/22 09:11:07 [metric_collector] {"stage_name":"metric_collector","events_processed":11373,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2274.6,"last_update":"2026-03-22T09:11:02.367908163Z"} +2026/03/22 09:11:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:11:02.377170647Z"} +2026/03/22 09:11:07 [detection_layer] {"stage_name":"detection_layer","events_processed":379,"events_dropped":0,"avg_latency_ms":17.538140861351593,"throughput_eps":0,"last_update":"2026-03-22T09:11:02.479494121Z"} +2026/03/22 09:11:07 [transform_engine] {"stage_name":"transform_engine","events_processed":379,"events_dropped":0,"avg_latency_ms":153.77436255174166,"throughput_eps":0,"last_update":"2026-03-22T09:11:02.479469404Z"} +2026/03/22 09:11:07 ───────────────────────────────────────────────── +2026/03/22 09:11:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:11:12 [log_collector] {"stage_name":"log_collector","events_processed":18147,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3629.4,"last_update":"2026-03-22T09:11:07.368751844Z"} +2026/03/22 09:11:12 [metric_collector] {"stage_name":"metric_collector","events_processed":11379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2275.8,"last_update":"2026-03-22T09:11:07.369257032Z"} +2026/03/22 09:11:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:11:07.377283157Z"} +2026/03/22 09:11:12 [detection_layer] {"stage_name":"detection_layer","events_processed":379,"events_dropped":0,"avg_latency_ms":17.538140861351593,"throughput_eps":0,"last_update":"2026-03-22T09:11:07.479502422Z"} +2026/03/22 09:11:12 [transform_engine] {"stage_name":"transform_engine","events_processed":379,"events_dropped":0,"avg_latency_ms":153.77436255174166,"throughput_eps":0,"last_update":"2026-03-22T09:11:07.479527991Z"} +2026/03/22 09:11:12 ───────────────────────────────────────────────── +2026/03/22 09:11:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:11:17 [log_collector] {"stage_name":"log_collector","events_processed":18147,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3629.4,"last_update":"2026-03-22T09:11:12.368545654Z"} +2026/03/22 09:11:17 [metric_collector] {"stage_name":"metric_collector","events_processed":11384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2276.8,"last_update":"2026-03-22T09:11:12.36906096Z"} +2026/03/22 09:11:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:11:12.377313129Z"} +2026/03/22 09:11:17 [detection_layer] {"stage_name":"detection_layer","events_processed":379,"events_dropped":0,"avg_latency_ms":17.538140861351593,"throughput_eps":0,"last_update":"2026-03-22T09:11:12.479569865Z"} +2026/03/22 09:11:17 [transform_engine] {"stage_name":"transform_engine","events_processed":379,"events_dropped":0,"avg_latency_ms":153.77436255174166,"throughput_eps":0,"last_update":"2026-03-22T09:11:12.47955133Z"} +2026/03/22 09:11:17 ───────────────────────────────────────────────── +2026/03/22 09:11:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:11:22 [detection_layer] {"stage_name":"detection_layer","events_processed":379,"events_dropped":0,"avg_latency_ms":17.538140861351593,"throughput_eps":0,"last_update":"2026-03-22T09:11:17.479193357Z"} +2026/03/22 09:11:22 [transform_engine] {"stage_name":"transform_engine","events_processed":379,"events_dropped":0,"avg_latency_ms":153.77436255174166,"throughput_eps":0,"last_update":"2026-03-22T09:11:17.479168479Z"} +2026/03/22 09:11:22 [log_collector] {"stage_name":"log_collector","events_processed":18147,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3629.4,"last_update":"2026-03-22T09:11:17.368231274Z"} +2026/03/22 09:11:22 [metric_collector] {"stage_name":"metric_collector","events_processed":11389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2277.8,"last_update":"2026-03-22T09:11:17.368498466Z"} +2026/03/22 09:11:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:11:17.375850691Z"} +2026/03/22 09:11:22 ───────────────────────────────────────────────── +2026/03/22 09:11:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:11:27 [log_collector] {"stage_name":"log_collector","events_processed":18147,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3629.4,"last_update":"2026-03-22T09:11:22.368831897Z"} +2026/03/22 09:11:27 [metric_collector] {"stage_name":"metric_collector","events_processed":11394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2278.8,"last_update":"2026-03-22T09:11:22.368803423Z"} +2026/03/22 09:11:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4560,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:11:22.379885341Z"} +2026/03/22 09:11:27 [detection_layer] {"stage_name":"detection_layer","events_processed":379,"events_dropped":0,"avg_latency_ms":17.538140861351593,"throughput_eps":0,"last_update":"2026-03-22T09:11:22.479525014Z"} +2026/03/22 09:11:27 [transform_engine] {"stage_name":"transform_engine","events_processed":379,"events_dropped":0,"avg_latency_ms":153.77436255174166,"throughput_eps":0,"last_update":"2026-03-22T09:11:22.479506189Z"} +2026/03/22 09:11:27 ───────────────────────────────────────────────── +2026/03/22 09:11:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:11:32 [log_collector] {"stage_name":"log_collector","events_processed":18147,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3629.4,"last_update":"2026-03-22T09:11:32.368558303Z"} +2026/03/22 09:11:32 [metric_collector] {"stage_name":"metric_collector","events_processed":11399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2279.8,"last_update":"2026-03-22T09:11:27.368264761Z"} +2026/03/22 09:11:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:11:27.37626664Z"} +2026/03/22 09:11:32 [detection_layer] {"stage_name":"detection_layer","events_processed":379,"events_dropped":0,"avg_latency_ms":17.538140861351593,"throughput_eps":0,"last_update":"2026-03-22T09:11:27.479440003Z"} +2026/03/22 09:11:32 [transform_engine] {"stage_name":"transform_engine","events_processed":379,"events_dropped":0,"avg_latency_ms":153.77436255174166,"throughput_eps":0,"last_update":"2026-03-22T09:11:22.479506189Z"} +2026/03/22 09:11:32 ───────────────────────────────────────────────── +2026/03/22 09:11:32 [ANOMALY] time=2026-03-22T09:11:32Z score=0.8745 method=SEAD details=MAD!:w=0.49,s=0.93 RRCF-fast:w=0.13,s=0.79 RRCF-mid!:w=0.12,s=0.87 RRCF-slow:w=0.10,s=0.59 COPOD!:w=0.16,s=0.97 +2026/03/22 09:11:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:11:37 [log_collector] {"stage_name":"log_collector","events_processed":18147,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3629.4,"last_update":"2026-03-22T09:11:37.368105313Z"} +2026/03/22 09:11:37 [metric_collector] {"stage_name":"metric_collector","events_processed":11409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2281.8,"last_update":"2026-03-22T09:11:37.368332618Z"} +2026/03/22 09:11:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:11:32.377918173Z"} +2026/03/22 09:11:37 [detection_layer] {"stage_name":"detection_layer","events_processed":379,"events_dropped":0,"avg_latency_ms":17.538140861351593,"throughput_eps":0,"last_update":"2026-03-22T09:11:32.479186898Z"} +2026/03/22 09:11:37 [transform_engine] {"stage_name":"transform_engine","events_processed":380,"events_dropped":0,"avg_latency_ms":1219.3716798413932,"throughput_eps":0,"last_update":"2026-03-22T09:11:32.961260024Z"} +2026/03/22 09:11:37 ───────────────────────────────────────────────── +2026/03/22 09:11:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:11:42 [log_collector] {"stage_name":"log_collector","events_processed":18147,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3629.4,"last_update":"2026-03-22T09:11:42.368111733Z"} +2026/03/22 09:11:42 [metric_collector] {"stage_name":"metric_collector","events_processed":11409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2281.8,"last_update":"2026-03-22T09:11:37.368332618Z"} +2026/03/22 09:11:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4566,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:11:37.376190491Z"} +2026/03/22 09:11:42 [detection_layer] {"stage_name":"detection_layer","events_processed":380,"events_dropped":0,"avg_latency_ms":16.315798489081274,"throughput_eps":0,"last_update":"2026-03-22T09:11:37.480072352Z"} +2026/03/22 09:11:42 [transform_engine] {"stage_name":"transform_engine","events_processed":380,"events_dropped":0,"avg_latency_ms":1219.3716798413932,"throughput_eps":0,"last_update":"2026-03-22T09:11:37.480004161Z"} +2026/03/22 09:11:42 ───────────────────────────────────────────────── +2026/03/22 09:11:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:11:47 [log_collector] {"stage_name":"log_collector","events_processed":18150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3630,"last_update":"2026-03-22T09:11:47.368784168Z"} +2026/03/22 09:11:47 [metric_collector] {"stage_name":"metric_collector","events_processed":11414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2282.8,"last_update":"2026-03-22T09:11:42.368558308Z"} +2026/03/22 09:11:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:11:42.374847084Z"} +2026/03/22 09:11:47 [detection_layer] {"stage_name":"detection_layer","events_processed":380,"events_dropped":0,"avg_latency_ms":16.315798489081274,"throughput_eps":0,"last_update":"2026-03-22T09:11:42.479996433Z"} +2026/03/22 09:11:47 [transform_engine] {"stage_name":"transform_engine","events_processed":380,"events_dropped":0,"avg_latency_ms":1219.3716798413932,"throughput_eps":0,"last_update":"2026-03-22T09:11:42.478901766Z"} +2026/03/22 09:11:47 ───────────────────────────────────────────────── +2026/03/22 09:11:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:11:52 [detection_layer] {"stage_name":"detection_layer","events_processed":380,"events_dropped":0,"avg_latency_ms":16.315798489081274,"throughput_eps":0,"last_update":"2026-03-22T09:11:47.479774705Z"} +2026/03/22 09:11:52 [transform_engine] {"stage_name":"transform_engine","events_processed":380,"events_dropped":0,"avg_latency_ms":1219.3716798413932,"throughput_eps":0,"last_update":"2026-03-22T09:11:47.479746782Z"} +2026/03/22 09:11:52 [log_collector] {"stage_name":"log_collector","events_processed":18150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3630,"last_update":"2026-03-22T09:11:47.368784168Z"} +2026/03/22 09:11:52 [metric_collector] {"stage_name":"metric_collector","events_processed":11418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2283.6,"last_update":"2026-03-22T09:11:47.368912623Z"} +2026/03/22 09:11:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4570,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:11:47.376573118Z"} +2026/03/22 09:11:52 ───────────────────────────────────────────────── +2026/03/22 09:11:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:11:57 [log_collector] {"stage_name":"log_collector","events_processed":18156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3631.2,"last_update":"2026-03-22T09:11:52.368216977Z"} +2026/03/22 09:11:57 [metric_collector] {"stage_name":"metric_collector","events_processed":11424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2284.8,"last_update":"2026-03-22T09:11:52.368427191Z"} +2026/03/22 09:11:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4572,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:11:52.378182568Z"} +2026/03/22 09:11:57 [detection_layer] {"stage_name":"detection_layer","events_processed":380,"events_dropped":0,"avg_latency_ms":16.315798489081274,"throughput_eps":0,"last_update":"2026-03-22T09:11:52.479441804Z"} +2026/03/22 09:11:57 [transform_engine] {"stage_name":"transform_engine","events_processed":380,"events_dropped":0,"avg_latency_ms":1219.3716798413932,"throughput_eps":0,"last_update":"2026-03-22T09:11:52.479411005Z"} +2026/03/22 09:11:57 ───────────────────────────────────────────────── +2026/03/22 09:11:57 [ANOMALY] time=2026-03-22T09:11:57Z score=0.8120 method=SEAD details=MAD!:w=0.49,s=0.92 RRCF-fast:w=0.13,s=0.76 RRCF-mid:w=0.12,s=0.67 RRCF-slow:w=0.10,s=0.63 COPOD!:w=0.16,s=0.74 +2026/03/22 09:12:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:12:02 [metric_collector] {"stage_name":"metric_collector","events_processed":11429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2285.8,"last_update":"2026-03-22T09:11:57.368810229Z"} +2026/03/22 09:12:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:11:57.378824643Z"} +2026/03/22 09:12:02 [detection_layer] {"stage_name":"detection_layer","events_processed":380,"events_dropped":0,"avg_latency_ms":16.315798489081274,"throughput_eps":0,"last_update":"2026-03-22T09:11:57.47937977Z"} +2026/03/22 09:12:02 [transform_engine] {"stage_name":"transform_engine","events_processed":381,"events_dropped":0,"avg_latency_ms":994.1479696731146,"throughput_eps":0,"last_update":"2026-03-22T09:11:57.572648779Z"} +2026/03/22 09:12:02 [log_collector] {"stage_name":"log_collector","events_processed":18505,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3701,"last_update":"2026-03-22T09:12:02.368225745Z"} +2026/03/22 09:12:02 ───────────────────────────────────────────────── +2026/03/22 09:12:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:12:07 [log_collector] {"stage_name":"log_collector","events_processed":18505,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3701,"last_update":"2026-03-22T09:12:07.368493522Z"} +2026/03/22 09:12:07 [metric_collector] {"stage_name":"metric_collector","events_processed":11434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2286.8,"last_update":"2026-03-22T09:12:02.368745931Z"} +2026/03/22 09:12:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4576,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:12:02.376302483Z"} +2026/03/22 09:12:07 [detection_layer] {"stage_name":"detection_layer","events_processed":381,"events_dropped":0,"avg_latency_ms":15.63843799126502,"throughput_eps":0,"last_update":"2026-03-22T09:12:02.479491118Z"} +2026/03/22 09:12:07 [transform_engine] {"stage_name":"transform_engine","events_processed":381,"events_dropped":0,"avg_latency_ms":994.1479696731146,"throughput_eps":0,"last_update":"2026-03-22T09:12:02.479503963Z"} +2026/03/22 09:12:07 ───────────────────────────────────────────────── +2026/03/22 09:12:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:12:12 [log_collector] {"stage_name":"log_collector","events_processed":18505,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3701,"last_update":"2026-03-22T09:12:07.368493522Z"} +2026/03/22 09:12:12 [metric_collector] {"stage_name":"metric_collector","events_processed":11439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2287.8,"last_update":"2026-03-22T09:12:07.36902056Z"} +2026/03/22 09:12:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:12:07.377890908Z"} +2026/03/22 09:12:12 [detection_layer] {"stage_name":"detection_layer","events_processed":381,"events_dropped":0,"avg_latency_ms":15.63843799126502,"throughput_eps":0,"last_update":"2026-03-22T09:12:07.479203003Z"} +2026/03/22 09:12:12 [transform_engine] {"stage_name":"transform_engine","events_processed":381,"events_dropped":0,"avg_latency_ms":994.1479696731146,"throughput_eps":0,"last_update":"2026-03-22T09:12:07.479220516Z"} +2026/03/22 09:12:12 ───────────────────────────────────────────────── +Saved state: 13 clusters, 18506 messages, reason: none +2026/03/22 09:12:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:12:17 [log_collector] {"stage_name":"log_collector","events_processed":18505,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3701,"last_update":"2026-03-22T09:12:12.368449764Z"} +2026/03/22 09:12:17 [metric_collector] {"stage_name":"metric_collector","events_processed":11444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2288.8,"last_update":"2026-03-22T09:12:12.368873827Z"} +2026/03/22 09:12:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4580,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:12:12.377383082Z"} +2026/03/22 09:12:17 [detection_layer] {"stage_name":"detection_layer","events_processed":381,"events_dropped":0,"avg_latency_ms":15.63843799126502,"throughput_eps":0,"last_update":"2026-03-22T09:12:12.479600793Z"} +2026/03/22 09:12:17 [transform_engine] {"stage_name":"transform_engine","events_processed":381,"events_dropped":0,"avg_latency_ms":994.1479696731146,"throughput_eps":0,"last_update":"2026-03-22T09:12:12.479613557Z"} +2026/03/22 09:12:17 ───────────────────────────────────────────────── +2026/03/22 09:12:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:12:22 [detection_layer] {"stage_name":"detection_layer","events_processed":381,"events_dropped":0,"avg_latency_ms":15.63843799126502,"throughput_eps":0,"last_update":"2026-03-22T09:12:17.479864107Z"} +2026/03/22 09:12:22 [transform_engine] {"stage_name":"transform_engine","events_processed":381,"events_dropped":0,"avg_latency_ms":994.1479696731146,"throughput_eps":0,"last_update":"2026-03-22T09:12:17.479878796Z"} +2026/03/22 09:12:22 [log_collector] {"stage_name":"log_collector","events_processed":18508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3701.6,"last_update":"2026-03-22T09:12:17.368239371Z"} +2026/03/22 09:12:22 [metric_collector] {"stage_name":"metric_collector","events_processed":11449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2289.8,"last_update":"2026-03-22T09:12:17.368143247Z"} +2026/03/22 09:12:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:12:17.375709879Z"} +2026/03/22 09:12:22 ───────────────────────────────────────────────── +2026/03/22 09:12:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:12:27 [log_collector] {"stage_name":"log_collector","events_processed":18508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3701.6,"last_update":"2026-03-22T09:12:22.368525599Z"} +2026/03/22 09:12:27 [metric_collector] {"stage_name":"metric_collector","events_processed":11454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2290.8,"last_update":"2026-03-22T09:12:22.368606864Z"} +2026/03/22 09:12:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:12:22.377273081Z"} +2026/03/22 09:12:27 [detection_layer] {"stage_name":"detection_layer","events_processed":381,"events_dropped":0,"avg_latency_ms":15.63843799126502,"throughput_eps":0,"last_update":"2026-03-22T09:12:22.479600836Z"} +2026/03/22 09:12:27 [transform_engine] {"stage_name":"transform_engine","events_processed":381,"events_dropped":0,"avg_latency_ms":994.1479696731146,"throughput_eps":0,"last_update":"2026-03-22T09:12:22.479614141Z"} +2026/03/22 09:12:27 ───────────────────────────────────────────────── +2026/03/22 09:12:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:12:32 [transform_engine] {"stage_name":"transform_engine","events_processed":382,"events_dropped":0,"avg_latency_ms":833.3277297384918,"throughput_eps":0,"last_update":"2026-03-22T09:12:27.66964833Z"} +2026/03/22 09:12:32 [log_collector] {"stage_name":"log_collector","events_processed":18519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3703.8,"last_update":"2026-03-22T09:12:27.368536832Z"} +2026/03/22 09:12:32 [metric_collector] {"stage_name":"metric_collector","events_processed":11459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2291.8,"last_update":"2026-03-22T09:12:27.368978357Z"} +2026/03/22 09:12:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4586,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:12:27.378314507Z"} +2026/03/22 09:12:32 [detection_layer] {"stage_name":"detection_layer","events_processed":381,"events_dropped":0,"avg_latency_ms":15.63843799126502,"throughput_eps":0,"last_update":"2026-03-22T09:12:27.479578396Z"} +2026/03/22 09:12:32 ───────────────────────────────────────────────── +2026/03/22 09:12:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:12:37 [detection_layer] {"stage_name":"detection_layer","events_processed":382,"events_dropped":0,"avg_latency_ms":16.779594793012016,"throughput_eps":0,"last_update":"2026-03-22T09:12:32.479231754Z"} +2026/03/22 09:12:37 [transform_engine] {"stage_name":"transform_engine","events_processed":382,"events_dropped":0,"avg_latency_ms":833.3277297384918,"throughput_eps":0,"last_update":"2026-03-22T09:12:32.479244318Z"} +2026/03/22 09:12:37 [log_collector] {"stage_name":"log_collector","events_processed":18526,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3705.2,"last_update":"2026-03-22T09:12:32.368417975Z"} +2026/03/22 09:12:37 [metric_collector] {"stage_name":"metric_collector","events_processed":11464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2292.8,"last_update":"2026-03-22T09:12:32.368721216Z"} +2026/03/22 09:12:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4588,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:12:32.376969142Z"} +2026/03/22 09:12:37 ───────────────────────────────────────────────── +2026/03/22 09:12:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:12:42 [log_collector] {"stage_name":"log_collector","events_processed":18535,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3707,"last_update":"2026-03-22T09:12:37.368013401Z"} +2026/03/22 09:12:42 [metric_collector] {"stage_name":"metric_collector","events_processed":11469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2293.8,"last_update":"2026-03-22T09:12:37.368432664Z"} +2026/03/22 09:12:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:12:37.377335374Z"} +2026/03/22 09:12:42 [detection_layer] {"stage_name":"detection_layer","events_processed":382,"events_dropped":0,"avg_latency_ms":16.779594793012016,"throughput_eps":0,"last_update":"2026-03-22T09:12:37.47958866Z"} +2026/03/22 09:12:42 [transform_engine] {"stage_name":"transform_engine","events_processed":382,"events_dropped":0,"avg_latency_ms":833.3277297384918,"throughput_eps":0,"last_update":"2026-03-22T09:12:37.479602236Z"} +2026/03/22 09:12:42 ───────────────────────────────────────────────── +2026/03/22 09:12:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:12:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4592,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:12:42.378768125Z"} +2026/03/22 09:12:47 [detection_layer] {"stage_name":"detection_layer","events_processed":382,"events_dropped":0,"avg_latency_ms":16.779594793012016,"throughput_eps":0,"last_update":"2026-03-22T09:12:42.478994773Z"} +2026/03/22 09:12:47 [transform_engine] {"stage_name":"transform_engine","events_processed":382,"events_dropped":0,"avg_latency_ms":833.3277297384918,"throughput_eps":0,"last_update":"2026-03-22T09:12:42.478920301Z"} +2026/03/22 09:12:47 [log_collector] {"stage_name":"log_collector","events_processed":18535,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3707,"last_update":"2026-03-22T09:12:42.368174708Z"} +2026/03/22 09:12:47 [metric_collector] {"stage_name":"metric_collector","events_processed":11474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2294.8,"last_update":"2026-03-22T09:12:42.36865063Z"} +2026/03/22 09:12:47 ───────────────────────────────────────────────── +2026/03/22 09:12:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:12:52 [log_collector] {"stage_name":"log_collector","events_processed":18535,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3707,"last_update":"2026-03-22T09:12:47.369106379Z"} +2026/03/22 09:12:52 [metric_collector] {"stage_name":"metric_collector","events_processed":11479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2295.8,"last_update":"2026-03-22T09:12:47.369085609Z"} +2026/03/22 09:12:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:12:47.375393984Z"} +2026/03/22 09:12:52 [detection_layer] {"stage_name":"detection_layer","events_processed":382,"events_dropped":0,"avg_latency_ms":16.779594793012016,"throughput_eps":0,"last_update":"2026-03-22T09:12:47.479565002Z"} +2026/03/22 09:12:52 [transform_engine] {"stage_name":"transform_engine","events_processed":382,"events_dropped":0,"avg_latency_ms":833.3277297384918,"throughput_eps":0,"last_update":"2026-03-22T09:12:47.479580042Z"} +2026/03/22 09:12:52 ───────────────────────────────────────────────── +2026/03/22 09:12:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:12:57 [metric_collector] {"stage_name":"metric_collector","events_processed":11484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2296.8,"last_update":"2026-03-22T09:12:52.369060805Z"} +2026/03/22 09:12:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:12:52.379175886Z"} +2026/03/22 09:12:57 [detection_layer] {"stage_name":"detection_layer","events_processed":382,"events_dropped":0,"avg_latency_ms":16.779594793012016,"throughput_eps":0,"last_update":"2026-03-22T09:12:52.47958687Z"} +2026/03/22 09:12:57 [transform_engine] {"stage_name":"transform_engine","events_processed":382,"events_dropped":0,"avg_latency_ms":833.3277297384918,"throughput_eps":0,"last_update":"2026-03-22T09:12:52.479603272Z"} +2026/03/22 09:12:57 [log_collector] {"stage_name":"log_collector","events_processed":18535,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3707,"last_update":"2026-03-22T09:12:52.368629621Z"} +2026/03/22 09:12:57 ───────────────────────────────────────────────── +2026/03/22 09:13:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:13:02 [detection_layer] {"stage_name":"detection_layer","events_processed":382,"events_dropped":0,"avg_latency_ms":16.779594793012016,"throughput_eps":0,"last_update":"2026-03-22T09:12:57.479192637Z"} +2026/03/22 09:13:02 [transform_engine] {"stage_name":"transform_engine","events_processed":383,"events_dropped":0,"avg_latency_ms":688.6996733907935,"throughput_eps":0,"last_update":"2026-03-22T09:12:57.58940404Z"} +2026/03/22 09:13:02 [log_collector] {"stage_name":"log_collector","events_processed":18535,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3707,"last_update":"2026-03-22T09:12:57.368581097Z"} +2026/03/22 09:13:02 [metric_collector] {"stage_name":"metric_collector","events_processed":11489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2297.8,"last_update":"2026-03-22T09:12:57.369391208Z"} +2026/03/22 09:13:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:12:57.379012163Z"} +2026/03/22 09:13:02 ───────────────────────────────────────────────── +2026/03/22 09:13:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:13:07 [log_collector] {"stage_name":"log_collector","events_processed":18535,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3707,"last_update":"2026-03-22T09:13:02.368426508Z"} +2026/03/22 09:13:07 [metric_collector] {"stage_name":"metric_collector","events_processed":11494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2298.8,"last_update":"2026-03-22T09:13:02.36906991Z"} +2026/03/22 09:13:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:13:02.378917159Z"} +2026/03/22 09:13:07 [detection_layer] {"stage_name":"detection_layer","events_processed":383,"events_dropped":0,"avg_latency_ms":18.051353634409615,"throughput_eps":0,"last_update":"2026-03-22T09:13:02.479113654Z"} +2026/03/22 09:13:07 [transform_engine] {"stage_name":"transform_engine","events_processed":383,"events_dropped":0,"avg_latency_ms":688.6996733907935,"throughput_eps":0,"last_update":"2026-03-22T09:13:02.479124735Z"} +2026/03/22 09:13:07 ───────────────────────────────────────────────── +2026/03/22 09:13:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:13:12 [metric_collector] {"stage_name":"metric_collector","events_processed":11499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2299.8,"last_update":"2026-03-22T09:13:07.369107925Z"} +2026/03/22 09:13:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4602,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:13:07.377978836Z"} +2026/03/22 09:13:12 [detection_layer] {"stage_name":"detection_layer","events_processed":383,"events_dropped":0,"avg_latency_ms":18.051353634409615,"throughput_eps":0,"last_update":"2026-03-22T09:13:07.479194423Z"} +2026/03/22 09:13:12 [transform_engine] {"stage_name":"transform_engine","events_processed":383,"events_dropped":0,"avg_latency_ms":688.6996733907935,"throughput_eps":0,"last_update":"2026-03-22T09:13:07.479205705Z"} +2026/03/22 09:13:12 [log_collector] {"stage_name":"log_collector","events_processed":18535,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3707,"last_update":"2026-03-22T09:13:07.36858765Z"} +2026/03/22 09:13:12 ───────────────────────────────────────────────── +2026/03/22 09:13:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:13:17 [metric_collector] {"stage_name":"metric_collector","events_processed":11504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2300.8,"last_update":"2026-03-22T09:13:12.369450449Z"} +2026/03/22 09:13:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:13:12.378161292Z"} +2026/03/22 09:13:17 [detection_layer] {"stage_name":"detection_layer","events_processed":383,"events_dropped":0,"avg_latency_ms":18.051353634409615,"throughput_eps":0,"last_update":"2026-03-22T09:13:12.479368595Z"} +2026/03/22 09:13:17 [transform_engine] {"stage_name":"transform_engine","events_processed":383,"events_dropped":0,"avg_latency_ms":688.6996733907935,"throughput_eps":0,"last_update":"2026-03-22T09:13:12.479380928Z"} +2026/03/22 09:13:17 [log_collector] {"stage_name":"log_collector","events_processed":18535,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3707,"last_update":"2026-03-22T09:13:12.368841052Z"} +2026/03/22 09:13:17 ───────────────────────────────────────────────── +2026/03/22 09:13:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:13:22 [detection_layer] {"stage_name":"detection_layer","events_processed":383,"events_dropped":0,"avg_latency_ms":18.051353634409615,"throughput_eps":0,"last_update":"2026-03-22T09:13:17.479739918Z"} +2026/03/22 09:13:22 [transform_engine] {"stage_name":"transform_engine","events_processed":383,"events_dropped":0,"avg_latency_ms":688.6996733907935,"throughput_eps":0,"last_update":"2026-03-22T09:13:17.47975078Z"} +2026/03/22 09:13:22 [log_collector] {"stage_name":"log_collector","events_processed":18535,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3707,"last_update":"2026-03-22T09:13:17.368199385Z"} +2026/03/22 09:13:22 [metric_collector] {"stage_name":"metric_collector","events_processed":11509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2301.8,"last_update":"2026-03-22T09:13:17.3690168Z"} +2026/03/22 09:13:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:13:17.378551511Z"} +2026/03/22 09:13:22 ───────────────────────────────────────────────── +2026/03/22 09:13:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:13:27 [log_collector] {"stage_name":"log_collector","events_processed":18535,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3707,"last_update":"2026-03-22T09:13:22.368456983Z"} +2026/03/22 09:13:27 [metric_collector] {"stage_name":"metric_collector","events_processed":11514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2302.8,"last_update":"2026-03-22T09:13:22.368687935Z"} +2026/03/22 09:13:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:13:22.378584679Z"} +2026/03/22 09:13:27 [detection_layer] {"stage_name":"detection_layer","events_processed":383,"events_dropped":0,"avg_latency_ms":18.051353634409615,"throughput_eps":0,"last_update":"2026-03-22T09:13:22.479786324Z"} +2026/03/22 09:13:27 [transform_engine] {"stage_name":"transform_engine","events_processed":383,"events_dropped":0,"avg_latency_ms":688.6996733907935,"throughput_eps":0,"last_update":"2026-03-22T09:13:22.479797034Z"} +2026/03/22 09:13:27 ───────────────────────────────────────────────── +2026/03/22 09:13:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:13:32 [metric_collector] {"stage_name":"metric_collector","events_processed":11519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2303.8,"last_update":"2026-03-22T09:13:27.369315724Z"} +2026/03/22 09:13:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:13:27.376865876Z"} +2026/03/22 09:13:32 [detection_layer] {"stage_name":"detection_layer","events_processed":383,"events_dropped":0,"avg_latency_ms":18.051353634409615,"throughput_eps":0,"last_update":"2026-03-22T09:13:27.479114866Z"} +2026/03/22 09:13:32 [transform_engine] {"stage_name":"transform_engine","events_processed":384,"events_dropped":0,"avg_latency_ms":563.5562205126348,"throughput_eps":0,"last_update":"2026-03-22T09:13:27.542109218Z"} +2026/03/22 09:13:32 [log_collector] {"stage_name":"log_collector","events_processed":18535,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3707,"last_update":"2026-03-22T09:13:27.369020769Z"} +2026/03/22 09:13:32 ───────────────────────────────────────────────── +2026/03/22 09:13:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:13:37 [log_collector] {"stage_name":"log_collector","events_processed":18535,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3707,"last_update":"2026-03-22T09:13:32.368657334Z"} +2026/03/22 09:13:37 [metric_collector] {"stage_name":"metric_collector","events_processed":11524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2304.8,"last_update":"2026-03-22T09:13:32.369089291Z"} +2026/03/22 09:13:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:13:32.378778938Z"} +2026/03/22 09:13:37 [detection_layer] {"stage_name":"detection_layer","events_processed":384,"events_dropped":0,"avg_latency_ms":17.697548307527693,"throughput_eps":0,"last_update":"2026-03-22T09:13:32.47901156Z"} +2026/03/22 09:13:37 [transform_engine] {"stage_name":"transform_engine","events_processed":384,"events_dropped":0,"avg_latency_ms":563.5562205126348,"throughput_eps":0,"last_update":"2026-03-22T09:13:32.478899506Z"} +2026/03/22 09:13:37 ───────────────────────────────────────────────── +Saved state: 13 clusters, 18536 messages, reason: none +2026/03/22 09:13:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:13:42 [log_collector] {"stage_name":"log_collector","events_processed":18535,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3707,"last_update":"2026-03-22T09:13:37.36894181Z"} +2026/03/22 09:13:42 [metric_collector] {"stage_name":"metric_collector","events_processed":11529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2305.8,"last_update":"2026-03-22T09:13:37.369489438Z"} +2026/03/22 09:13:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:13:37.379102508Z"} +2026/03/22 09:13:42 [detection_layer] {"stage_name":"detection_layer","events_processed":384,"events_dropped":0,"avg_latency_ms":17.697548307527693,"throughput_eps":0,"last_update":"2026-03-22T09:13:37.479301448Z"} +2026/03/22 09:13:42 [transform_engine] {"stage_name":"transform_engine","events_processed":384,"events_dropped":0,"avg_latency_ms":563.5562205126348,"throughput_eps":0,"last_update":"2026-03-22T09:13:37.479313401Z"} +2026/03/22 09:13:42 ───────────────────────────────────────────────── +2026/03/22 09:13:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:13:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:13:42.375344908Z"} +2026/03/22 09:13:47 [detection_layer] {"stage_name":"detection_layer","events_processed":384,"events_dropped":0,"avg_latency_ms":17.697548307527693,"throughput_eps":0,"last_update":"2026-03-22T09:13:42.479141085Z"} +2026/03/22 09:13:47 [transform_engine] {"stage_name":"transform_engine","events_processed":384,"events_dropped":0,"avg_latency_ms":563.5562205126348,"throughput_eps":0,"last_update":"2026-03-22T09:13:42.479154401Z"} +2026/03/22 09:13:47 [log_collector] {"stage_name":"log_collector","events_processed":18543,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3708.6,"last_update":"2026-03-22T09:13:42.368126601Z"} +2026/03/22 09:13:47 [metric_collector] {"stage_name":"metric_collector","events_processed":11534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2306.8,"last_update":"2026-03-22T09:13:42.368588074Z"} +2026/03/22 09:13:47 ───────────────────────────────────────────────── +2026/03/22 09:13:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:13:52 [log_collector] {"stage_name":"log_collector","events_processed":18549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3709.8,"last_update":"2026-03-22T09:13:47.368545186Z"} +2026/03/22 09:13:52 [metric_collector] {"stage_name":"metric_collector","events_processed":11539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2307.8,"last_update":"2026-03-22T09:13:47.368862022Z"} +2026/03/22 09:13:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:13:47.377562346Z"} +2026/03/22 09:13:52 [detection_layer] {"stage_name":"detection_layer","events_processed":384,"events_dropped":0,"avg_latency_ms":17.697548307527693,"throughput_eps":0,"last_update":"2026-03-22T09:13:47.479854254Z"} +2026/03/22 09:13:52 [transform_engine] {"stage_name":"transform_engine","events_processed":384,"events_dropped":0,"avg_latency_ms":563.5562205126348,"throughput_eps":0,"last_update":"2026-03-22T09:13:47.479865977Z"} +2026/03/22 09:13:52 ───────────────────────────────────────────────── +2026/03/22 09:13:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:13:57 [log_collector] {"stage_name":"log_collector","events_processed":18549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3709.8,"last_update":"2026-03-22T09:13:52.368488049Z"} +2026/03/22 09:13:57 [metric_collector] {"stage_name":"metric_collector","events_processed":11544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2308.8,"last_update":"2026-03-22T09:13:52.369009999Z"} +2026/03/22 09:13:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4620,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:13:52.377850822Z"} +2026/03/22 09:13:57 [detection_layer] {"stage_name":"detection_layer","events_processed":384,"events_dropped":0,"avg_latency_ms":17.697548307527693,"throughput_eps":0,"last_update":"2026-03-22T09:13:52.479218923Z"} +2026/03/22 09:13:57 [transform_engine] {"stage_name":"transform_engine","events_processed":384,"events_dropped":0,"avg_latency_ms":563.5562205126348,"throughput_eps":0,"last_update":"2026-03-22T09:13:52.479235164Z"} +2026/03/22 09:13:57 ───────────────────────────────────────────────── +2026/03/22 09:14:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:14:02 [transform_engine] {"stage_name":"transform_engine","events_processed":385,"events_dropped":0,"avg_latency_ms":472.95517261010787,"throughput_eps":0,"last_update":"2026-03-22T09:13:57.589475171Z"} +2026/03/22 09:14:02 [log_collector] {"stage_name":"log_collector","events_processed":18549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3709.8,"last_update":"2026-03-22T09:13:57.368019564Z"} +2026/03/22 09:14:02 [metric_collector] {"stage_name":"metric_collector","events_processed":11549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2309.8,"last_update":"2026-03-22T09:13:57.368562794Z"} +2026/03/22 09:14:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4622,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:13:57.377701026Z"} +2026/03/22 09:14:02 [detection_layer] {"stage_name":"detection_layer","events_processed":384,"events_dropped":0,"avg_latency_ms":17.697548307527693,"throughput_eps":0,"last_update":"2026-03-22T09:13:57.479013532Z"} +2026/03/22 09:14:02 ───────────────────────────────────────────────── +2026/03/22 09:14:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:14:07 [log_collector] {"stage_name":"log_collector","events_processed":18549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3709.8,"last_update":"2026-03-22T09:14:02.367999056Z"} +2026/03/22 09:14:07 [metric_collector] {"stage_name":"metric_collector","events_processed":11554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2310.8,"last_update":"2026-03-22T09:14:02.368301774Z"} +2026/03/22 09:14:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:14:02.377071823Z"} +2026/03/22 09:14:07 [detection_layer] {"stage_name":"detection_layer","events_processed":385,"events_dropped":0,"avg_latency_ms":18.152356446022157,"throughput_eps":0,"last_update":"2026-03-22T09:14:02.479279693Z"} +2026/03/22 09:14:07 [transform_engine] {"stage_name":"transform_engine","events_processed":385,"events_dropped":0,"avg_latency_ms":472.95517261010787,"throughput_eps":0,"last_update":"2026-03-22T09:14:02.479291375Z"} +2026/03/22 09:14:07 ───────────────────────────────────────────────── +2026/03/22 09:14:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:14:12 [log_collector] {"stage_name":"log_collector","events_processed":18549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3709.8,"last_update":"2026-03-22T09:14:07.368018861Z"} +2026/03/22 09:14:12 [metric_collector] {"stage_name":"metric_collector","events_processed":11559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2311.8,"last_update":"2026-03-22T09:14:07.368336669Z"} +2026/03/22 09:14:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:14:07.376774111Z"} +2026/03/22 09:14:12 [detection_layer] {"stage_name":"detection_layer","events_processed":385,"events_dropped":0,"avg_latency_ms":18.152356446022157,"throughput_eps":0,"last_update":"2026-03-22T09:14:07.478960151Z"} +2026/03/22 09:14:12 [transform_engine] {"stage_name":"transform_engine","events_processed":385,"events_dropped":0,"avg_latency_ms":472.95517261010787,"throughput_eps":0,"last_update":"2026-03-22T09:14:07.478894275Z"} +2026/03/22 09:14:12 ───────────────────────────────────────────────── +2026/03/22 09:14:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:14:17 [transform_engine] {"stage_name":"transform_engine","events_processed":385,"events_dropped":0,"avg_latency_ms":472.95517261010787,"throughput_eps":0,"last_update":"2026-03-22T09:14:12.479693141Z"} +2026/03/22 09:14:17 [log_collector] {"stage_name":"log_collector","events_processed":18549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3709.8,"last_update":"2026-03-22T09:14:12.368249858Z"} +2026/03/22 09:14:17 [metric_collector] {"stage_name":"metric_collector","events_processed":11564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2312.8,"last_update":"2026-03-22T09:14:12.368663601Z"} +2026/03/22 09:14:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:14:12.377451613Z"} +2026/03/22 09:14:17 [detection_layer] {"stage_name":"detection_layer","events_processed":385,"events_dropped":0,"avg_latency_ms":18.152356446022157,"throughput_eps":0,"last_update":"2026-03-22T09:14:12.479679595Z"} +2026/03/22 09:14:17 ───────────────────────────────────────────────── +2026/03/22 09:14:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:14:22 [log_collector] {"stage_name":"log_collector","events_processed":18549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3709.8,"last_update":"2026-03-22T09:14:17.368027656Z"} +2026/03/22 09:14:22 [metric_collector] {"stage_name":"metric_collector","events_processed":11569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2313.8,"last_update":"2026-03-22T09:14:17.368790567Z"} +2026/03/22 09:14:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:14:17.377558921Z"} +2026/03/22 09:14:22 [detection_layer] {"stage_name":"detection_layer","events_processed":385,"events_dropped":0,"avg_latency_ms":18.152356446022157,"throughput_eps":0,"last_update":"2026-03-22T09:14:17.479795781Z"} +2026/03/22 09:14:22 [transform_engine] {"stage_name":"transform_engine","events_processed":385,"events_dropped":0,"avg_latency_ms":472.95517261010787,"throughput_eps":0,"last_update":"2026-03-22T09:14:17.479808816Z"} +2026/03/22 09:14:22 ───────────────────────────────────────────────── +2026/03/22 09:14:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:14:27 [log_collector] {"stage_name":"log_collector","events_processed":18549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3709.8,"last_update":"2026-03-22T09:14:27.368823824Z"} +2026/03/22 09:14:27 [metric_collector] {"stage_name":"metric_collector","events_processed":11574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2314.8,"last_update":"2026-03-22T09:14:22.368876541Z"} +2026/03/22 09:14:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4632,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:14:22.378186884Z"} +2026/03/22 09:14:27 [detection_layer] {"stage_name":"detection_layer","events_processed":385,"events_dropped":0,"avg_latency_ms":18.152356446022157,"throughput_eps":0,"last_update":"2026-03-22T09:14:22.479378253Z"} +2026/03/22 09:14:27 [transform_engine] {"stage_name":"transform_engine","events_processed":385,"events_dropped":0,"avg_latency_ms":472.95517261010787,"throughput_eps":0,"last_update":"2026-03-22T09:14:22.479390848Z"} +2026/03/22 09:14:27 ───────────────────────────────────────────────── +2026/03/22 09:14:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:14:32 [transform_engine] {"stage_name":"transform_engine","events_processed":386,"events_dropped":0,"avg_latency_ms":390.70398008808627,"throughput_eps":0,"last_update":"2026-03-22T09:14:27.541567807Z"} +2026/03/22 09:14:32 [log_collector] {"stage_name":"log_collector","events_processed":18549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3709.8,"last_update":"2026-03-22T09:14:32.36894127Z"} +2026/03/22 09:14:32 [metric_collector] {"stage_name":"metric_collector","events_processed":11579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2315.8,"last_update":"2026-03-22T09:14:27.369336776Z"} +2026/03/22 09:14:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:14:27.375612519Z"} +2026/03/22 09:14:32 [detection_layer] {"stage_name":"detection_layer","events_processed":385,"events_dropped":0,"avg_latency_ms":18.152356446022157,"throughput_eps":0,"last_update":"2026-03-22T09:14:27.479851625Z"} +2026/03/22 09:14:32 ───────────────────────────────────────────────── +2026/03/22 09:14:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:14:37 [log_collector] {"stage_name":"log_collector","events_processed":18549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3709.8,"last_update":"2026-03-22T09:14:32.36894127Z"} +2026/03/22 09:14:37 [metric_collector] {"stage_name":"metric_collector","events_processed":11584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2316.8,"last_update":"2026-03-22T09:14:32.369138006Z"} +2026/03/22 09:14:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:14:32.378920002Z"} +2026/03/22 09:14:37 [detection_layer] {"stage_name":"detection_layer","events_processed":386,"events_dropped":0,"avg_latency_ms":17.889824356817726,"throughput_eps":0,"last_update":"2026-03-22T09:14:32.479134093Z"} +2026/03/22 09:14:37 [transform_engine] {"stage_name":"transform_engine","events_processed":386,"events_dropped":0,"avg_latency_ms":390.70398008808627,"throughput_eps":0,"last_update":"2026-03-22T09:14:32.479108574Z"} +2026/03/22 09:14:37 ───────────────────────────────────────────────── +2026/03/22 09:14:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:14:42 [detection_layer] {"stage_name":"detection_layer","events_processed":386,"events_dropped":0,"avg_latency_ms":17.889824356817726,"throughput_eps":0,"last_update":"2026-03-22T09:14:37.479345213Z"} +2026/03/22 09:14:42 [transform_engine] {"stage_name":"transform_engine","events_processed":386,"events_dropped":0,"avg_latency_ms":390.70398008808627,"throughput_eps":0,"last_update":"2026-03-22T09:14:37.479320866Z"} +2026/03/22 09:14:42 [log_collector] {"stage_name":"log_collector","events_processed":18549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3709.8,"last_update":"2026-03-22T09:14:42.368392242Z"} +2026/03/22 09:14:42 [metric_collector] {"stage_name":"metric_collector","events_processed":11589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2317.8,"last_update":"2026-03-22T09:14:37.368795616Z"} +2026/03/22 09:14:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:14:37.376958873Z"} +2026/03/22 09:14:42 ───────────────────────────────────────────────── +Saved state: 13 clusters, 18550 messages, reason: none +2026/03/22 09:14:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:14:47 [log_collector] {"stage_name":"log_collector","events_processed":18549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3709.8,"last_update":"2026-03-22T09:14:42.368392242Z"} +2026/03/22 09:14:47 [metric_collector] {"stage_name":"metric_collector","events_processed":11594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2318.8,"last_update":"2026-03-22T09:14:42.368773321Z"} +2026/03/22 09:14:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4640,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:14:42.377412569Z"} +2026/03/22 09:14:47 [detection_layer] {"stage_name":"detection_layer","events_processed":386,"events_dropped":0,"avg_latency_ms":17.889824356817726,"throughput_eps":0,"last_update":"2026-03-22T09:14:42.479655767Z"} +2026/03/22 09:14:47 [transform_engine] {"stage_name":"transform_engine","events_processed":386,"events_dropped":0,"avg_latency_ms":390.70398008808627,"throughput_eps":0,"last_update":"2026-03-22T09:14:42.479633925Z"} +2026/03/22 09:14:47 ───────────────────────────────────────────────── +2026/03/22 09:14:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:14:52 [log_collector] {"stage_name":"log_collector","events_processed":18554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3710.8,"last_update":"2026-03-22T09:14:52.368536148Z"} +2026/03/22 09:14:52 [metric_collector] {"stage_name":"metric_collector","events_processed":11599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2319.8,"last_update":"2026-03-22T09:14:47.368464534Z"} +2026/03/22 09:14:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:14:47.374529504Z"} +2026/03/22 09:14:52 [detection_layer] {"stage_name":"detection_layer","events_processed":386,"events_dropped":0,"avg_latency_ms":17.889824356817726,"throughput_eps":0,"last_update":"2026-03-22T09:14:47.479788225Z"} +2026/03/22 09:14:52 [transform_engine] {"stage_name":"transform_engine","events_processed":386,"events_dropped":0,"avg_latency_ms":390.70398008808627,"throughput_eps":0,"last_update":"2026-03-22T09:14:47.4797644Z"} +2026/03/22 09:14:52 ───────────────────────────────────────────────── +2026/03/22 09:14:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:14:57 [log_collector] {"stage_name":"log_collector","events_processed":18554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3710.8,"last_update":"2026-03-22T09:14:52.368536148Z"} +2026/03/22 09:14:57 [metric_collector] {"stage_name":"metric_collector","events_processed":11604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2320.8,"last_update":"2026-03-22T09:14:52.368785324Z"} +2026/03/22 09:14:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:14:52.376339425Z"} +2026/03/22 09:14:57 [detection_layer] {"stage_name":"detection_layer","events_processed":386,"events_dropped":0,"avg_latency_ms":17.889824356817726,"throughput_eps":0,"last_update":"2026-03-22T09:14:52.479441019Z"} +2026/03/22 09:14:57 [transform_engine] {"stage_name":"transform_engine","events_processed":386,"events_dropped":0,"avg_latency_ms":390.70398008808627,"throughput_eps":0,"last_update":"2026-03-22T09:14:52.479453001Z"} +2026/03/22 09:14:57 ───────────────────────────────────────────────── +2026/03/22 09:15:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:15:02 [metric_collector] {"stage_name":"metric_collector","events_processed":11609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2321.8,"last_update":"2026-03-22T09:14:57.368149016Z"} +2026/03/22 09:15:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4646,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:14:57.374902344Z"} +2026/03/22 09:15:02 [detection_layer] {"stage_name":"detection_layer","events_processed":386,"events_dropped":0,"avg_latency_ms":17.889824356817726,"throughput_eps":0,"last_update":"2026-03-22T09:14:57.479096509Z"} +2026/03/22 09:15:02 [transform_engine] {"stage_name":"transform_engine","events_processed":387,"events_dropped":0,"avg_latency_ms":345.19392507046905,"throughput_eps":0,"last_update":"2026-03-22T09:14:57.642262448Z"} +2026/03/22 09:15:02 [log_collector] {"stage_name":"log_collector","events_processed":18554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3710.8,"last_update":"2026-03-22T09:14:57.367953332Z"} +2026/03/22 09:15:02 ───────────────────────────────────────────────── +2026/03/22 09:15:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:15:07 [log_collector] {"stage_name":"log_collector","events_processed":18554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3710.8,"last_update":"2026-03-22T09:15:02.368582416Z"} +2026/03/22 09:15:07 [metric_collector] {"stage_name":"metric_collector","events_processed":11614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2322.8,"last_update":"2026-03-22T09:15:02.368933888Z"} +2026/03/22 09:15:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:15:02.376256426Z"} +2026/03/22 09:15:07 [detection_layer] {"stage_name":"detection_layer","events_processed":387,"events_dropped":0,"avg_latency_ms":16.586862685454182,"throughput_eps":0,"last_update":"2026-03-22T09:15:02.479476449Z"} +2026/03/22 09:15:07 [transform_engine] {"stage_name":"transform_engine","events_processed":387,"events_dropped":0,"avg_latency_ms":345.19392507046905,"throughput_eps":0,"last_update":"2026-03-22T09:15:02.479502078Z"} +2026/03/22 09:15:07 ───────────────────────────────────────────────── +2026/03/22 09:15:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:15:12 [metric_collector] {"stage_name":"metric_collector","events_processed":11619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2323.8,"last_update":"2026-03-22T09:15:07.368550337Z"} +2026/03/22 09:15:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4650,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:15:07.377236997Z"} +2026/03/22 09:15:12 [detection_layer] {"stage_name":"detection_layer","events_processed":387,"events_dropped":0,"avg_latency_ms":16.586862685454182,"throughput_eps":0,"last_update":"2026-03-22T09:15:07.479369017Z"} +2026/03/22 09:15:12 [transform_engine] {"stage_name":"transform_engine","events_processed":387,"events_dropped":0,"avg_latency_ms":345.19392507046905,"throughput_eps":0,"last_update":"2026-03-22T09:15:07.479379116Z"} +2026/03/22 09:15:12 [log_collector] {"stage_name":"log_collector","events_processed":18554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3710.8,"last_update":"2026-03-22T09:15:12.368397037Z"} +2026/03/22 09:15:12 ───────────────────────────────────────────────── +2026/03/22 09:15:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:15:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:15:12.375052558Z"} +2026/03/22 09:15:17 [detection_layer] {"stage_name":"detection_layer","events_processed":387,"events_dropped":0,"avg_latency_ms":16.586862685454182,"throughput_eps":0,"last_update":"2026-03-22T09:15:12.479241056Z"} +2026/03/22 09:15:17 [transform_engine] {"stage_name":"transform_engine","events_processed":387,"events_dropped":0,"avg_latency_ms":345.19392507046905,"throughput_eps":0,"last_update":"2026-03-22T09:15:12.479259682Z"} +2026/03/22 09:15:17 [log_collector] {"stage_name":"log_collector","events_processed":18554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3710.8,"last_update":"2026-03-22T09:15:17.369970875Z"} +2026/03/22 09:15:17 [metric_collector] {"stage_name":"metric_collector","events_processed":11624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2324.8,"last_update":"2026-03-22T09:15:12.368712441Z"} +2026/03/22 09:15:17 ───────────────────────────────────────────────── +2026/03/22 09:15:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:15:22 [log_collector] {"stage_name":"log_collector","events_processed":18554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3710.8,"last_update":"2026-03-22T09:15:22.368166906Z"} +2026/03/22 09:15:22 [metric_collector] {"stage_name":"metric_collector","events_processed":11629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2325.8,"last_update":"2026-03-22T09:15:17.370288443Z"} +2026/03/22 09:15:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:15:17.376529961Z"} +2026/03/22 09:15:22 [detection_layer] {"stage_name":"detection_layer","events_processed":387,"events_dropped":0,"avg_latency_ms":16.586862685454182,"throughput_eps":0,"last_update":"2026-03-22T09:15:17.479784072Z"} +2026/03/22 09:15:22 [transform_engine] {"stage_name":"transform_engine","events_processed":387,"events_dropped":0,"avg_latency_ms":345.19392507046905,"throughput_eps":0,"last_update":"2026-03-22T09:15:17.479726041Z"} +2026/03/22 09:15:22 ───────────────────────────────────────────────── +2026/03/22 09:15:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:15:27 [metric_collector] {"stage_name":"metric_collector","events_processed":11634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2326.8,"last_update":"2026-03-22T09:15:22.368497058Z"} +2026/03/22 09:15:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:15:22.376618657Z"} +2026/03/22 09:15:27 [detection_layer] {"stage_name":"detection_layer","events_processed":387,"events_dropped":0,"avg_latency_ms":16.586862685454182,"throughput_eps":0,"last_update":"2026-03-22T09:15:22.479487219Z"} +2026/03/22 09:15:27 [transform_engine] {"stage_name":"transform_engine","events_processed":387,"events_dropped":0,"avg_latency_ms":345.19392507046905,"throughput_eps":0,"last_update":"2026-03-22T09:15:22.479505865Z"} +2026/03/22 09:15:27 [log_collector] {"stage_name":"log_collector","events_processed":18554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3710.8,"last_update":"2026-03-22T09:15:22.368166906Z"} +2026/03/22 09:15:27 ───────────────────────────────────────────────── +2026/03/22 09:15:28 [ANOMALY] time=2026-03-22T09:15:28Z score=0.7884 method=SEAD details=MAD!:w=0.49,s=0.96 RRCF-fast:w=0.13,s=0.59 RRCF-mid:w=0.13,s=0.59 RRCF-slow:w=0.10,s=0.32 COPOD!:w=0.16,s=0.88 +2026/03/22 09:15:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:15:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:15:27.375759226Z"} +2026/03/22 09:15:32 [detection_layer] {"stage_name":"detection_layer","events_processed":387,"events_dropped":0,"avg_latency_ms":16.586862685454182,"throughput_eps":0,"last_update":"2026-03-22T09:15:27.478959555Z"} +2026/03/22 09:15:32 [transform_engine] {"stage_name":"transform_engine","events_processed":388,"events_dropped":0,"avg_latency_ms":424.5795532563753,"throughput_eps":0,"last_update":"2026-03-22T09:15:28.221047557Z"} +2026/03/22 09:15:32 [log_collector] {"stage_name":"log_collector","events_processed":18565,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3713,"last_update":"2026-03-22T09:15:32.368600084Z"} +2026/03/22 09:15:32 [metric_collector] {"stage_name":"metric_collector","events_processed":11639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2327.8,"last_update":"2026-03-22T09:15:27.368224242Z"} +2026/03/22 09:15:32 ───────────────────────────────────────────────── +2026/03/22 09:15:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:15:37 [log_collector] {"stage_name":"log_collector","events_processed":18565,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3713,"last_update":"2026-03-22T09:15:32.368600084Z"} +2026/03/22 09:15:37 [metric_collector] {"stage_name":"metric_collector","events_processed":11644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2328.8,"last_update":"2026-03-22T09:15:32.369121663Z"} +2026/03/22 09:15:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4660,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:15:32.377912713Z"} +2026/03/22 09:15:37 [detection_layer] {"stage_name":"detection_layer","events_processed":388,"events_dropped":0,"avg_latency_ms":16.090069748363348,"throughput_eps":0,"last_update":"2026-03-22T09:15:32.479205972Z"} +2026/03/22 09:15:37 [transform_engine] {"stage_name":"transform_engine","events_processed":388,"events_dropped":0,"avg_latency_ms":424.5795532563753,"throughput_eps":0,"last_update":"2026-03-22T09:15:32.47930977Z"} +2026/03/22 09:15:37 ───────────────────────────────────────────────── +2026/03/22 09:15:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:15:42 [transform_engine] {"stage_name":"transform_engine","events_processed":388,"events_dropped":0,"avg_latency_ms":424.5795532563753,"throughput_eps":0,"last_update":"2026-03-22T09:15:37.479478678Z"} +2026/03/22 09:15:42 [log_collector] {"stage_name":"log_collector","events_processed":18579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3715.8,"last_update":"2026-03-22T09:15:37.368047881Z"} +2026/03/22 09:15:42 [metric_collector] {"stage_name":"metric_collector","events_processed":11649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2329.8,"last_update":"2026-03-22T09:15:37.368579168Z"} +2026/03/22 09:15:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4662,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:15:37.376255083Z"} +2026/03/22 09:15:42 [detection_layer] {"stage_name":"detection_layer","events_processed":388,"events_dropped":0,"avg_latency_ms":16.090069748363348,"throughput_eps":0,"last_update":"2026-03-22T09:15:37.47944855Z"} +2026/03/22 09:15:42 ───────────────────────────────────────────────── +2026/03/22 09:15:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:15:47 [metric_collector] {"stage_name":"metric_collector","events_processed":11654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2330.8,"last_update":"2026-03-22T09:15:42.368280888Z"} +2026/03/22 09:15:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:15:42.375543191Z"} +2026/03/22 09:15:47 [detection_layer] {"stage_name":"detection_layer","events_processed":388,"events_dropped":0,"avg_latency_ms":16.090069748363348,"throughput_eps":0,"last_update":"2026-03-22T09:15:42.480748422Z"} +2026/03/22 09:15:47 [transform_engine] {"stage_name":"transform_engine","events_processed":388,"events_dropped":0,"avg_latency_ms":424.5795532563753,"throughput_eps":0,"last_update":"2026-03-22T09:15:42.479671891Z"} +2026/03/22 09:15:47 [log_collector] {"stage_name":"log_collector","events_processed":18808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3761.6,"last_update":"2026-03-22T09:15:42.368179925Z"} +2026/03/22 09:15:47 ───────────────────────────────────────────────── +2026/03/22 09:15:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:15:52 [metric_collector] {"stage_name":"metric_collector","events_processed":11659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2331.8,"last_update":"2026-03-22T09:15:47.368779643Z"} +2026/03/22 09:15:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:15:47.378108713Z"} +2026/03/22 09:15:52 [detection_layer] {"stage_name":"detection_layer","events_processed":388,"events_dropped":0,"avg_latency_ms":16.090069748363348,"throughput_eps":0,"last_update":"2026-03-22T09:15:47.47946707Z"} +2026/03/22 09:15:52 [transform_engine] {"stage_name":"transform_engine","events_processed":388,"events_dropped":0,"avg_latency_ms":424.5795532563753,"throughput_eps":0,"last_update":"2026-03-22T09:15:47.479492388Z"} +2026/03/22 09:15:52 [log_collector] {"stage_name":"log_collector","events_processed":18917,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3783.4,"last_update":"2026-03-22T09:15:47.368294654Z"} +2026/03/22 09:15:52 ───────────────────────────────────────────────── +2026/03/22 09:15:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:15:57 [log_collector] {"stage_name":"log_collector","events_processed":18917,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3783.4,"last_update":"2026-03-22T09:15:52.36858239Z"} +2026/03/22 09:15:57 [metric_collector] {"stage_name":"metric_collector","events_processed":11664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2332.8,"last_update":"2026-03-22T09:15:52.368959402Z"} +2026/03/22 09:15:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4668,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:15:52.377237851Z"} +2026/03/22 09:15:57 [detection_layer] {"stage_name":"detection_layer","events_processed":388,"events_dropped":0,"avg_latency_ms":16.090069748363348,"throughput_eps":0,"last_update":"2026-03-22T09:15:52.479586805Z"} +2026/03/22 09:15:57 [transform_engine] {"stage_name":"transform_engine","events_processed":388,"events_dropped":0,"avg_latency_ms":424.5795532563753,"throughput_eps":0,"last_update":"2026-03-22T09:15:52.479545076Z"} +2026/03/22 09:15:57 ───────────────────────────────────────────────── +2026/03/22 09:16:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:16:02 [detection_layer] {"stage_name":"detection_layer","events_processed":388,"events_dropped":0,"avg_latency_ms":16.090069748363348,"throughput_eps":0,"last_update":"2026-03-22T09:15:57.479693635Z"} +2026/03/22 09:16:02 [transform_engine] {"stage_name":"transform_engine","events_processed":389,"events_dropped":0,"avg_latency_ms":362.6144756051002,"throughput_eps":0,"last_update":"2026-03-22T09:15:57.594483147Z"} +2026/03/22 09:16:02 [log_collector] {"stage_name":"log_collector","events_processed":18917,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3783.4,"last_update":"2026-03-22T09:15:57.368542298Z"} +2026/03/22 09:16:02 [metric_collector] {"stage_name":"metric_collector","events_processed":11669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2333.8,"last_update":"2026-03-22T09:15:57.368960758Z"} +2026/03/22 09:16:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4670,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:15:57.378467989Z"} +2026/03/22 09:16:02 ───────────────────────────────────────────────── +2026/03/22 09:16:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:16:07 [log_collector] {"stage_name":"log_collector","events_processed":18917,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3783.4,"last_update":"2026-03-22T09:16:02.368881295Z"} +2026/03/22 09:16:07 [metric_collector] {"stage_name":"metric_collector","events_processed":11674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2334.8,"last_update":"2026-03-22T09:16:02.369383335Z"} +2026/03/22 09:16:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:16:02.378166411Z"} +2026/03/22 09:16:07 [detection_layer] {"stage_name":"detection_layer","events_processed":389,"events_dropped":0,"avg_latency_ms":16.45585899869068,"throughput_eps":0,"last_update":"2026-03-22T09:16:02.479373491Z"} +2026/03/22 09:16:07 [transform_engine] {"stage_name":"transform_engine","events_processed":389,"events_dropped":0,"avg_latency_ms":362.6144756051002,"throughput_eps":0,"last_update":"2026-03-22T09:16:02.479386446Z"} +2026/03/22 09:16:07 ───────────────────────────────────────────────── +2026/03/22 09:16:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:16:12 [log_collector] {"stage_name":"log_collector","events_processed":18917,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3783.4,"last_update":"2026-03-22T09:16:07.368911346Z"} +2026/03/22 09:16:12 [metric_collector] {"stage_name":"metric_collector","events_processed":11679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2335.8,"last_update":"2026-03-22T09:16:07.369390083Z"} +2026/03/22 09:16:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:16:07.378321943Z"} +2026/03/22 09:16:12 [detection_layer] {"stage_name":"detection_layer","events_processed":389,"events_dropped":0,"avg_latency_ms":16.45585899869068,"throughput_eps":0,"last_update":"2026-03-22T09:16:07.479526189Z"} +2026/03/22 09:16:12 [transform_engine] {"stage_name":"transform_engine","events_processed":389,"events_dropped":0,"avg_latency_ms":362.6144756051002,"throughput_eps":0,"last_update":"2026-03-22T09:16:07.479540266Z"} +2026/03/22 09:16:12 ───────────────────────────────────────────────── +2026/03/22 09:16:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:16:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4676,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:16:12.378431825Z"} +2026/03/22 09:16:17 [detection_layer] {"stage_name":"detection_layer","events_processed":389,"events_dropped":0,"avg_latency_ms":16.45585899869068,"throughput_eps":0,"last_update":"2026-03-22T09:16:12.479743127Z"} +2026/03/22 09:16:17 [transform_engine] {"stage_name":"transform_engine","events_processed":389,"events_dropped":0,"avg_latency_ms":362.6144756051002,"throughput_eps":0,"last_update":"2026-03-22T09:16:12.479759678Z"} +2026/03/22 09:16:17 [log_collector] {"stage_name":"log_collector","events_processed":18917,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3783.4,"last_update":"2026-03-22T09:16:12.36859885Z"} +2026/03/22 09:16:17 [metric_collector] {"stage_name":"metric_collector","events_processed":11684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2336.8,"last_update":"2026-03-22T09:16:12.369415613Z"} +2026/03/22 09:16:17 ───────────────────────────────────────────────── +2026/03/22 09:16:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:16:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:16:17.378791941Z"} +2026/03/22 09:16:22 [detection_layer] {"stage_name":"detection_layer","events_processed":389,"events_dropped":0,"avg_latency_ms":16.45585899869068,"throughput_eps":0,"last_update":"2026-03-22T09:16:17.478939295Z"} +2026/03/22 09:16:22 [transform_engine] {"stage_name":"transform_engine","events_processed":389,"events_dropped":0,"avg_latency_ms":362.6144756051002,"throughput_eps":0,"last_update":"2026-03-22T09:16:17.478923545Z"} +2026/03/22 09:16:22 [log_collector] {"stage_name":"log_collector","events_processed":18917,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3783.4,"last_update":"2026-03-22T09:16:17.368640857Z"} +2026/03/22 09:16:22 [metric_collector] {"stage_name":"metric_collector","events_processed":11689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2337.8,"last_update":"2026-03-22T09:16:17.369085177Z"} +2026/03/22 09:16:22 ───────────────────────────────────────────────── +2026/03/22 09:16:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:16:27 [log_collector] {"stage_name":"log_collector","events_processed":18917,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3783.4,"last_update":"2026-03-22T09:16:22.367974942Z"} +2026/03/22 09:16:27 [metric_collector] {"stage_name":"metric_collector","events_processed":11694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2338.8,"last_update":"2026-03-22T09:16:22.368426106Z"} +2026/03/22 09:16:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:16:22.378333754Z"} +2026/03/22 09:16:27 [detection_layer] {"stage_name":"detection_layer","events_processed":389,"events_dropped":0,"avg_latency_ms":16.45585899869068,"throughput_eps":0,"last_update":"2026-03-22T09:16:22.479544535Z"} +2026/03/22 09:16:27 [transform_engine] {"stage_name":"transform_engine","events_processed":389,"events_dropped":0,"avg_latency_ms":362.6144756051002,"throughput_eps":0,"last_update":"2026-03-22T09:16:22.479557159Z"} +2026/03/22 09:16:27 ───────────────────────────────────────────────── +2026/03/22 09:16:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:16:32 [log_collector] {"stage_name":"log_collector","events_processed":18917,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3783.4,"last_update":"2026-03-22T09:16:27.368584725Z"} +2026/03/22 09:16:32 [metric_collector] {"stage_name":"metric_collector","events_processed":11699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2339.8,"last_update":"2026-03-22T09:16:27.368628127Z"} +2026/03/22 09:16:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:16:27.3763335Z"} +2026/03/22 09:16:32 [detection_layer] {"stage_name":"detection_layer","events_processed":389,"events_dropped":0,"avg_latency_ms":16.45585899869068,"throughput_eps":0,"last_update":"2026-03-22T09:16:27.479552796Z"} +2026/03/22 09:16:32 [transform_engine] {"stage_name":"transform_engine","events_processed":390,"events_dropped":0,"avg_latency_ms":302.79411188408017,"throughput_eps":0,"last_update":"2026-03-22T09:16:27.543165395Z"} +2026/03/22 09:16:32 ───────────────────────────────────────────────── +2026/03/22 09:16:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:16:37 [log_collector] {"stage_name":"log_collector","events_processed":18917,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3783.4,"last_update":"2026-03-22T09:16:32.369077325Z"} +2026/03/22 09:16:37 [metric_collector] {"stage_name":"metric_collector","events_processed":11704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2340.8,"last_update":"2026-03-22T09:16:32.369827452Z"} +2026/03/22 09:16:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:16:32.37916552Z"} +2026/03/22 09:16:37 [detection_layer] {"stage_name":"detection_layer","events_processed":390,"events_dropped":0,"avg_latency_ms":16.615884598952544,"throughput_eps":0,"last_update":"2026-03-22T09:16:32.47959122Z"} +2026/03/22 09:16:37 [transform_engine] {"stage_name":"transform_engine","events_processed":390,"events_dropped":0,"avg_latency_ms":302.79411188408017,"throughput_eps":0,"last_update":"2026-03-22T09:16:32.479660141Z"} +2026/03/22 09:16:37 ───────────────────────────────────────────────── +2026/03/22 09:16:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:16:42 [log_collector] {"stage_name":"log_collector","events_processed":18917,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3783.4,"last_update":"2026-03-22T09:16:37.368386656Z"} +2026/03/22 09:16:42 [metric_collector] {"stage_name":"metric_collector","events_processed":11709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2341.8,"last_update":"2026-03-22T09:16:37.368875552Z"} +2026/03/22 09:16:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:16:37.378141232Z"} +2026/03/22 09:16:42 [detection_layer] {"stage_name":"detection_layer","events_processed":390,"events_dropped":0,"avg_latency_ms":16.615884598952544,"throughput_eps":0,"last_update":"2026-03-22T09:16:37.47938095Z"} +2026/03/22 09:16:42 [transform_engine] {"stage_name":"transform_engine","events_processed":390,"events_dropped":0,"avg_latency_ms":302.79411188408017,"throughput_eps":0,"last_update":"2026-03-22T09:16:37.479338739Z"} +2026/03/22 09:16:42 ───────────────────────────────────────────────── +2026/03/22 09:16:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:16:47 [transform_engine] {"stage_name":"transform_engine","events_processed":390,"events_dropped":0,"avg_latency_ms":302.79411188408017,"throughput_eps":0,"last_update":"2026-03-22T09:16:42.479903515Z"} +2026/03/22 09:16:47 [log_collector] {"stage_name":"log_collector","events_processed":18917,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3783.4,"last_update":"2026-03-22T09:16:47.368069208Z"} +2026/03/22 09:16:47 [metric_collector] {"stage_name":"metric_collector","events_processed":11714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2342.8,"last_update":"2026-03-22T09:16:42.3686851Z"} +2026/03/22 09:16:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4688,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:16:42.377630187Z"} +2026/03/22 09:16:47 [detection_layer] {"stage_name":"detection_layer","events_processed":390,"events_dropped":0,"avg_latency_ms":16.615884598952544,"throughput_eps":0,"last_update":"2026-03-22T09:16:42.479974061Z"} +2026/03/22 09:16:47 ───────────────────────────────────────────────── +2026/03/22 09:16:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:16:52 [metric_collector] {"stage_name":"metric_collector","events_processed":11719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2343.8,"last_update":"2026-03-22T09:16:47.368370665Z"} +2026/03/22 09:16:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:16:47.377479534Z"} +2026/03/22 09:16:52 [detection_layer] {"stage_name":"detection_layer","events_processed":390,"events_dropped":0,"avg_latency_ms":16.615884598952544,"throughput_eps":0,"last_update":"2026-03-22T09:16:47.47976665Z"} +2026/03/22 09:16:52 [transform_engine] {"stage_name":"transform_engine","events_processed":390,"events_dropped":0,"avg_latency_ms":302.79411188408017,"throughput_eps":0,"last_update":"2026-03-22T09:16:47.47981885Z"} +2026/03/22 09:16:52 [log_collector] {"stage_name":"log_collector","events_processed":18917,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3783.4,"last_update":"2026-03-22T09:16:47.368069208Z"} +2026/03/22 09:16:52 ───────────────────────────────────────────────── +2026/03/22 09:16:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:16:57 [log_collector] {"stage_name":"log_collector","events_processed":18917,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3783.4,"last_update":"2026-03-22T09:16:57.368423889Z"} +2026/03/22 09:16:57 [metric_collector] {"stage_name":"metric_collector","events_processed":11729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2345.8,"last_update":"2026-03-22T09:16:57.368316433Z"} +2026/03/22 09:16:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:16:52.378681606Z"} +2026/03/22 09:16:57 [detection_layer] {"stage_name":"detection_layer","events_processed":390,"events_dropped":0,"avg_latency_ms":16.615884598952544,"throughput_eps":0,"last_update":"2026-03-22T09:16:52.479930687Z"} +2026/03/22 09:16:57 [transform_engine] {"stage_name":"transform_engine","events_processed":390,"events_dropped":0,"avg_latency_ms":302.79411188408017,"throughput_eps":0,"last_update":"2026-03-22T09:16:52.478815251Z"} +2026/03/22 09:16:57 ───────────────────────────────────────────────── +2026/03/22 09:17:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:17:02 [log_collector] {"stage_name":"log_collector","events_processed":18917,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3783.4,"last_update":"2026-03-22T09:16:57.368423889Z"} +2026/03/22 09:17:02 [metric_collector] {"stage_name":"metric_collector","events_processed":11729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2345.8,"last_update":"2026-03-22T09:16:57.368316433Z"} +2026/03/22 09:17:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:16:57.379125839Z"} +2026/03/22 09:17:02 [detection_layer] {"stage_name":"detection_layer","events_processed":390,"events_dropped":0,"avg_latency_ms":16.615884598952544,"throughput_eps":0,"last_update":"2026-03-22T09:16:57.479518761Z"} +2026/03/22 09:17:02 [transform_engine] {"stage_name":"transform_engine","events_processed":391,"events_dropped":0,"avg_latency_ms":256.38061790726414,"throughput_eps":0,"last_update":"2026-03-22T09:16:57.550283997Z"} +2026/03/22 09:17:02 ───────────────────────────────────────────────── +2026/03/22 09:17:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:17:07 [metric_collector] {"stage_name":"metric_collector","events_processed":11734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2346.8,"last_update":"2026-03-22T09:17:02.36871571Z"} +2026/03/22 09:17:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:17:02.37837868Z"} +2026/03/22 09:17:07 [detection_layer] {"stage_name":"detection_layer","events_processed":391,"events_dropped":0,"avg_latency_ms":17.453638079162037,"throughput_eps":0,"last_update":"2026-03-22T09:17:02.479618234Z"} +2026/03/22 09:17:07 [transform_engine] {"stage_name":"transform_engine","events_processed":391,"events_dropped":0,"avg_latency_ms":256.38061790726414,"throughput_eps":0,"last_update":"2026-03-22T09:17:02.479651216Z"} +2026/03/22 09:17:07 [log_collector] {"stage_name":"log_collector","events_processed":18917,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3783.4,"last_update":"2026-03-22T09:17:02.368342084Z"} +2026/03/22 09:17:07 ───────────────────────────────────────────────── +2026/03/22 09:17:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:17:12 [log_collector] {"stage_name":"log_collector","events_processed":18917,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3783.4,"last_update":"2026-03-22T09:17:12.367979737Z"} +2026/03/22 09:17:12 [metric_collector] {"stage_name":"metric_collector","events_processed":11739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2347.8,"last_update":"2026-03-22T09:17:07.368657352Z"} +2026/03/22 09:17:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:17:07.378108006Z"} +2026/03/22 09:17:12 [detection_layer] {"stage_name":"detection_layer","events_processed":391,"events_dropped":0,"avg_latency_ms":17.453638079162037,"throughput_eps":0,"last_update":"2026-03-22T09:17:07.479311471Z"} +2026/03/22 09:17:12 [transform_engine] {"stage_name":"transform_engine","events_processed":391,"events_dropped":0,"avg_latency_ms":256.38061790726414,"throughput_eps":0,"last_update":"2026-03-22T09:17:07.479336629Z"} +2026/03/22 09:17:12 ───────────────────────────────────────────────── +2026/03/22 09:17:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:17:17 [log_collector] {"stage_name":"log_collector","events_processed":18917,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3783.4,"last_update":"2026-03-22T09:17:12.367979737Z"} +2026/03/22 09:17:17 [metric_collector] {"stage_name":"metric_collector","events_processed":11744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2348.8,"last_update":"2026-03-22T09:17:12.368628449Z"} +2026/03/22 09:17:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4700,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:17:12.378117778Z"} +2026/03/22 09:17:17 [detection_layer] {"stage_name":"detection_layer","events_processed":391,"events_dropped":0,"avg_latency_ms":17.453638079162037,"throughput_eps":0,"last_update":"2026-03-22T09:17:12.479323357Z"} +2026/03/22 09:17:17 [transform_engine] {"stage_name":"transform_engine","events_processed":391,"events_dropped":0,"avg_latency_ms":256.38061790726414,"throughput_eps":0,"last_update":"2026-03-22T09:17:12.479334037Z"} +2026/03/22 09:17:17 ───────────────────────────────────────────────── +Saved state: 13 clusters, 18918 messages, reason: none +2026/03/22 09:17:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:17:22 [detection_layer] {"stage_name":"detection_layer","events_processed":391,"events_dropped":0,"avg_latency_ms":17.453638079162037,"throughput_eps":0,"last_update":"2026-03-22T09:17:17.479498615Z"} +2026/03/22 09:17:22 [transform_engine] {"stage_name":"transform_engine","events_processed":391,"events_dropped":0,"avg_latency_ms":256.38061790726414,"throughput_eps":0,"last_update":"2026-03-22T09:17:17.479511229Z"} +2026/03/22 09:17:22 [log_collector] {"stage_name":"log_collector","events_processed":18917,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3783.4,"last_update":"2026-03-22T09:17:17.367954702Z"} +2026/03/22 09:17:22 [metric_collector] {"stage_name":"metric_collector","events_processed":11754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2350.8,"last_update":"2026-03-22T09:17:22.368976782Z"} +2026/03/22 09:17:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4702,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:17:17.378218503Z"} +2026/03/22 09:17:22 ───────────────────────────────────────────────── +2026/03/22 09:17:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:17:27 [transform_engine] {"stage_name":"transform_engine","events_processed":391,"events_dropped":0,"avg_latency_ms":256.38061790726414,"throughput_eps":0,"last_update":"2026-03-22T09:17:22.479165132Z"} +2026/03/22 09:17:27 [log_collector] {"stage_name":"log_collector","events_processed":18920,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3784,"last_update":"2026-03-22T09:17:22.369015647Z"} +2026/03/22 09:17:27 [metric_collector] {"stage_name":"metric_collector","events_processed":11754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2350.8,"last_update":"2026-03-22T09:17:22.368976782Z"} +2026/03/22 09:17:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:17:22.378967781Z"} +2026/03/22 09:17:27 [detection_layer] {"stage_name":"detection_layer","events_processed":391,"events_dropped":0,"avg_latency_ms":17.453638079162037,"throughput_eps":0,"last_update":"2026-03-22T09:17:22.479153339Z"} +2026/03/22 09:17:27 ───────────────────────────────────────────────── +2026/03/22 09:17:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:17:32 [log_collector] {"stage_name":"log_collector","events_processed":18920,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3784,"last_update":"2026-03-22T09:17:27.36820183Z"} +2026/03/22 09:17:32 [metric_collector] {"stage_name":"metric_collector","events_processed":11759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2351.8,"last_update":"2026-03-22T09:17:27.368537633Z"} +2026/03/22 09:17:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:17:27.374911757Z"} +2026/03/22 09:17:32 [detection_layer] {"stage_name":"detection_layer","events_processed":391,"events_dropped":0,"avg_latency_ms":17.453638079162037,"throughput_eps":0,"last_update":"2026-03-22T09:17:27.481957922Z"} +2026/03/22 09:17:32 [transform_engine] {"stage_name":"transform_engine","events_processed":392,"events_dropped":0,"avg_latency_ms":419.5549067258113,"throughput_eps":0,"last_update":"2026-03-22T09:17:28.551710287Z"} +2026/03/22 09:17:32 ───────────────────────────────────────────────── +2026/03/22 09:17:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:17:37 [log_collector] {"stage_name":"log_collector","events_processed":18930,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3786,"last_update":"2026-03-22T09:17:32.368946337Z"} +2026/03/22 09:17:37 [metric_collector] {"stage_name":"metric_collector","events_processed":11764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2352.8,"last_update":"2026-03-22T09:17:32.369550855Z"} +2026/03/22 09:17:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:17:32.375893158Z"} +2026/03/22 09:17:37 [detection_layer] {"stage_name":"detection_layer","events_processed":392,"events_dropped":0,"avg_latency_ms":17.21235186332963,"throughput_eps":0,"last_update":"2026-03-22T09:17:32.479094712Z"} +2026/03/22 09:17:37 [transform_engine] {"stage_name":"transform_engine","events_processed":392,"events_dropped":0,"avg_latency_ms":419.5549067258113,"throughput_eps":0,"last_update":"2026-03-22T09:17:32.479108177Z"} +2026/03/22 09:17:37 ───────────────────────────────────────────────── +2026/03/22 09:17:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:17:42 [log_collector] {"stage_name":"log_collector","events_processed":18931,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3786.2,"last_update":"2026-03-22T09:17:37.368842358Z"} +2026/03/22 09:17:42 [metric_collector] {"stage_name":"metric_collector","events_processed":11769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2353.8,"last_update":"2026-03-22T09:17:37.369233698Z"} +2026/03/22 09:17:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:17:37.378445915Z"} +2026/03/22 09:17:42 [detection_layer] {"stage_name":"detection_layer","events_processed":392,"events_dropped":0,"avg_latency_ms":17.21235186332963,"throughput_eps":0,"last_update":"2026-03-22T09:17:37.47966201Z"} +2026/03/22 09:17:42 [transform_engine] {"stage_name":"transform_engine","events_processed":392,"events_dropped":0,"avg_latency_ms":419.5549067258113,"throughput_eps":0,"last_update":"2026-03-22T09:17:37.479674334Z"} +2026/03/22 09:17:42 ───────────────────────────────────────────────── +2026/03/22 09:17:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:17:47 [log_collector] {"stage_name":"log_collector","events_processed":18945,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3789,"last_update":"2026-03-22T09:17:42.367967341Z"} +2026/03/22 09:17:47 [metric_collector] {"stage_name":"metric_collector","events_processed":11773,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2354.6,"last_update":"2026-03-22T09:17:42.367920983Z"} +2026/03/22 09:17:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4712,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:17:42.374854488Z"} +2026/03/22 09:17:47 [detection_layer] {"stage_name":"detection_layer","events_processed":392,"events_dropped":0,"avg_latency_ms":17.21235186332963,"throughput_eps":0,"last_update":"2026-03-22T09:17:42.479145509Z"} +2026/03/22 09:17:47 [transform_engine] {"stage_name":"transform_engine","events_processed":392,"events_dropped":0,"avg_latency_ms":419.5549067258113,"throughput_eps":0,"last_update":"2026-03-22T09:17:42.479068702Z"} +2026/03/22 09:17:47 ───────────────────────────────────────────────── +2026/03/22 09:17:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:17:52 [detection_layer] {"stage_name":"detection_layer","events_processed":392,"events_dropped":0,"avg_latency_ms":17.21235186332963,"throughput_eps":0,"last_update":"2026-03-22T09:17:47.479534602Z"} +2026/03/22 09:17:52 [transform_engine] {"stage_name":"transform_engine","events_processed":392,"events_dropped":0,"avg_latency_ms":419.5549067258113,"throughput_eps":0,"last_update":"2026-03-22T09:17:47.479496678Z"} +2026/03/22 09:17:52 [log_collector] {"stage_name":"log_collector","events_processed":18960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3792,"last_update":"2026-03-22T09:17:47.367952699Z"} +2026/03/22 09:17:52 [metric_collector] {"stage_name":"metric_collector","events_processed":11778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2355.6,"last_update":"2026-03-22T09:17:47.367896652Z"} +2026/03/22 09:17:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:17:47.376275645Z"} +2026/03/22 09:17:52 ───────────────────────────────────────────────── +2026/03/22 09:17:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:17:57 [log_collector] {"stage_name":"log_collector","events_processed":18961,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3792.2,"last_update":"2026-03-22T09:17:52.368170189Z"} +2026/03/22 09:17:57 [metric_collector] {"stage_name":"metric_collector","events_processed":11783,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2356.6,"last_update":"2026-03-22T09:17:52.368272274Z"} +2026/03/22 09:17:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:17:52.377131797Z"} +2026/03/22 09:17:57 [detection_layer] {"stage_name":"detection_layer","events_processed":392,"events_dropped":0,"avg_latency_ms":17.21235186332963,"throughput_eps":0,"last_update":"2026-03-22T09:17:52.479457657Z"} +2026/03/22 09:17:57 [transform_engine] {"stage_name":"transform_engine","events_processed":392,"events_dropped":0,"avg_latency_ms":419.5549067258113,"throughput_eps":0,"last_update":"2026-03-22T09:17:52.479434103Z"} +2026/03/22 09:17:57 ───────────────────────────────────────────────── +2026/03/22 09:18:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:18:02 [detection_layer] {"stage_name":"detection_layer","events_processed":392,"events_dropped":0,"avg_latency_ms":17.21235186332963,"throughput_eps":0,"last_update":"2026-03-22T09:17:57.47932843Z"} +2026/03/22 09:18:02 [transform_engine] {"stage_name":"transform_engine","events_processed":392,"events_dropped":0,"avg_latency_ms":419.5549067258113,"throughput_eps":0,"last_update":"2026-03-22T09:17:57.479279046Z"} +2026/03/22 09:18:02 [log_collector] {"stage_name":"log_collector","events_processed":18961,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3792.2,"last_update":"2026-03-22T09:17:57.367963432Z"} +2026/03/22 09:18:02 [metric_collector] {"stage_name":"metric_collector","events_processed":11788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2357.6,"last_update":"2026-03-22T09:17:57.367917655Z"} +2026/03/22 09:18:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4718,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:17:57.377094134Z"} +2026/03/22 09:18:02 ───────────────────────────────────────────────── +2026/03/22 09:18:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:18:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:18:02.378114747Z"} +2026/03/22 09:18:07 [detection_layer] {"stage_name":"detection_layer","events_processed":393,"events_dropped":0,"avg_latency_ms":17.603497490663706,"throughput_eps":0,"last_update":"2026-03-22T09:18:02.479386771Z"} +2026/03/22 09:18:07 [transform_engine] {"stage_name":"transform_engine","events_processed":393,"events_dropped":0,"avg_latency_ms":358.82705578064906,"throughput_eps":0,"last_update":"2026-03-22T09:18:02.479327769Z"} +2026/03/22 09:18:07 [log_collector] {"stage_name":"log_collector","events_processed":18961,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3792.2,"last_update":"2026-03-22T09:18:02.368559502Z"} +2026/03/22 09:18:07 [metric_collector] {"stage_name":"metric_collector","events_processed":11793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2358.6,"last_update":"2026-03-22T09:18:02.36844401Z"} +2026/03/22 09:18:07 ───────────────────────────────────────────────── +2026/03/22 09:18:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:18:12 [metric_collector] {"stage_name":"metric_collector","events_processed":11799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2359.8,"last_update":"2026-03-22T09:18:07.368796156Z"} +2026/03/22 09:18:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4722,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:18:07.379247328Z"} +2026/03/22 09:18:12 [detection_layer] {"stage_name":"detection_layer","events_processed":393,"events_dropped":0,"avg_latency_ms":17.603497490663706,"throughput_eps":0,"last_update":"2026-03-22T09:18:07.479497776Z"} +2026/03/22 09:18:12 [transform_engine] {"stage_name":"transform_engine","events_processed":393,"events_dropped":0,"avg_latency_ms":358.82705578064906,"throughput_eps":0,"last_update":"2026-03-22T09:18:07.479470564Z"} +2026/03/22 09:18:12 [log_collector] {"stage_name":"log_collector","events_processed":18961,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3792.2,"last_update":"2026-03-22T09:18:07.36831769Z"} +2026/03/22 09:18:12 ───────────────────────────────────────────────── +2026/03/22 09:18:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:18:17 [transform_engine] {"stage_name":"transform_engine","events_processed":393,"events_dropped":0,"avg_latency_ms":358.82705578064906,"throughput_eps":0,"last_update":"2026-03-22T09:18:12.479277203Z"} +2026/03/22 09:18:17 [log_collector] {"stage_name":"log_collector","events_processed":18961,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3792.2,"last_update":"2026-03-22T09:18:12.367971476Z"} +2026/03/22 09:18:17 [metric_collector] {"stage_name":"metric_collector","events_processed":11804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2360.8,"last_update":"2026-03-22T09:18:12.36818259Z"} +2026/03/22 09:18:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:18:12.375074365Z"} +2026/03/22 09:18:17 [detection_layer] {"stage_name":"detection_layer","events_processed":393,"events_dropped":0,"avg_latency_ms":17.603497490663706,"throughput_eps":0,"last_update":"2026-03-22T09:18:12.479299175Z"} +2026/03/22 09:18:17 ───────────────────────────────────────────────── +2026/03/22 09:18:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:18:22 [metric_collector] {"stage_name":"metric_collector","events_processed":11809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2361.8,"last_update":"2026-03-22T09:18:17.369028434Z"} +2026/03/22 09:18:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:18:17.376298504Z"} +2026/03/22 09:18:22 [detection_layer] {"stage_name":"detection_layer","events_processed":393,"events_dropped":0,"avg_latency_ms":17.603497490663706,"throughput_eps":0,"last_update":"2026-03-22T09:18:17.479513932Z"} +2026/03/22 09:18:22 [transform_engine] {"stage_name":"transform_engine","events_processed":393,"events_dropped":0,"avg_latency_ms":358.82705578064906,"throughput_eps":0,"last_update":"2026-03-22T09:18:17.479489205Z"} +2026/03/22 09:18:22 [log_collector] {"stage_name":"log_collector","events_processed":18961,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3792.2,"last_update":"2026-03-22T09:18:17.368581018Z"} +2026/03/22 09:18:22 ───────────────────────────────────────────────── +2026/03/22 09:18:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:18:27 [transform_engine] {"stage_name":"transform_engine","events_processed":393,"events_dropped":0,"avg_latency_ms":358.82705578064906,"throughput_eps":0,"last_update":"2026-03-22T09:18:22.479224318Z"} +2026/03/22 09:18:27 [log_collector] {"stage_name":"log_collector","events_processed":18961,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3792.2,"last_update":"2026-03-22T09:18:22.368443965Z"} +2026/03/22 09:18:27 [metric_collector] {"stage_name":"metric_collector","events_processed":11814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2362.8,"last_update":"2026-03-22T09:18:22.36895831Z"} +2026/03/22 09:18:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4728,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:18:22.377962731Z"} +2026/03/22 09:18:27 [detection_layer] {"stage_name":"detection_layer","events_processed":393,"events_dropped":0,"avg_latency_ms":17.603497490663706,"throughput_eps":0,"last_update":"2026-03-22T09:18:22.479345561Z"} +2026/03/22 09:18:27 ───────────────────────────────────────────────── +2026/03/22 09:18:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:18:32 [metric_collector] {"stage_name":"metric_collector","events_processed":11819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2363.8,"last_update":"2026-03-22T09:18:27.369778917Z"} +2026/03/22 09:18:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4730,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:18:27.376890103Z"} +2026/03/22 09:18:32 [detection_layer] {"stage_name":"detection_layer","events_processed":393,"events_dropped":0,"avg_latency_ms":17.603497490663706,"throughput_eps":0,"last_update":"2026-03-22T09:18:27.479089366Z"} +2026/03/22 09:18:32 [transform_engine] {"stage_name":"transform_engine","events_processed":394,"events_dropped":0,"avg_latency_ms":301.41684302451927,"throughput_eps":0,"last_update":"2026-03-22T09:18:27.550880827Z"} +2026/03/22 09:18:32 [log_collector] {"stage_name":"log_collector","events_processed":18961,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3792.2,"last_update":"2026-03-22T09:18:27.368762841Z"} +2026/03/22 09:18:32 ───────────────────────────────────────────────── +2026/03/22 09:18:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:18:37 [detection_layer] {"stage_name":"detection_layer","events_processed":394,"events_dropped":0,"avg_latency_ms":17.306979192530967,"throughput_eps":0,"last_update":"2026-03-22T09:18:32.479334956Z"} +2026/03/22 09:18:37 [transform_engine] {"stage_name":"transform_engine","events_processed":394,"events_dropped":0,"avg_latency_ms":301.41684302451927,"throughput_eps":0,"last_update":"2026-03-22T09:18:32.479287655Z"} +2026/03/22 09:18:37 [log_collector] {"stage_name":"log_collector","events_processed":18961,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3792.2,"last_update":"2026-03-22T09:18:37.368566458Z"} +2026/03/22 09:18:37 [metric_collector] {"stage_name":"metric_collector","events_processed":11829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2365.8,"last_update":"2026-03-22T09:18:37.368549405Z"} +2026/03/22 09:18:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:18:32.377057353Z"} +2026/03/22 09:18:37 ───────────────────────────────────────────────── +2026/03/22 09:18:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:18:42 [log_collector] {"stage_name":"log_collector","events_processed":18961,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3792.2,"last_update":"2026-03-22T09:18:42.368455554Z"} +2026/03/22 09:18:42 [metric_collector] {"stage_name":"metric_collector","events_processed":11829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2365.8,"last_update":"2026-03-22T09:18:37.368549405Z"} +2026/03/22 09:18:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:18:37.379443856Z"} +2026/03/22 09:18:42 [detection_layer] {"stage_name":"detection_layer","events_processed":394,"events_dropped":0,"avg_latency_ms":17.306979192530967,"throughput_eps":0,"last_update":"2026-03-22T09:18:37.479673007Z"} +2026/03/22 09:18:42 [transform_engine] {"stage_name":"transform_engine","events_processed":394,"events_dropped":0,"avg_latency_ms":301.41684302451927,"throughput_eps":0,"last_update":"2026-03-22T09:18:37.479654402Z"} +2026/03/22 09:18:42 ───────────────────────────────────────────────── +2026/03/22 09:18:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:18:47 [metric_collector] {"stage_name":"metric_collector","events_processed":11834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2366.8,"last_update":"2026-03-22T09:18:42.368951914Z"} +2026/03/22 09:18:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4736,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:18:42.377618118Z"} +2026/03/22 09:18:47 [detection_layer] {"stage_name":"detection_layer","events_processed":394,"events_dropped":0,"avg_latency_ms":17.306979192530967,"throughput_eps":0,"last_update":"2026-03-22T09:18:42.479795381Z"} +2026/03/22 09:18:47 [transform_engine] {"stage_name":"transform_engine","events_processed":394,"events_dropped":0,"avg_latency_ms":301.41684302451927,"throughput_eps":0,"last_update":"2026-03-22T09:18:42.479806763Z"} +2026/03/22 09:18:47 [log_collector] {"stage_name":"log_collector","events_processed":18961,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3792.2,"last_update":"2026-03-22T09:18:42.368455554Z"} +2026/03/22 09:18:47 ───────────────────────────────────────────────── +Saved state: 13 clusters, 18962 messages, reason: none +2026/03/22 09:18:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:18:52 [log_collector] {"stage_name":"log_collector","events_processed":18961,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3792.2,"last_update":"2026-03-22T09:18:47.368715985Z"} +2026/03/22 09:18:52 [metric_collector] {"stage_name":"metric_collector","events_processed":11839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2367.8,"last_update":"2026-03-22T09:18:47.369263994Z"} +2026/03/22 09:18:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4738,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:18:47.377040283Z"} +2026/03/22 09:18:52 [detection_layer] {"stage_name":"detection_layer","events_processed":394,"events_dropped":0,"avg_latency_ms":17.306979192530967,"throughput_eps":0,"last_update":"2026-03-22T09:18:47.479341595Z"} +2026/03/22 09:18:52 [transform_engine] {"stage_name":"transform_engine","events_processed":394,"events_dropped":0,"avg_latency_ms":301.41684302451927,"throughput_eps":0,"last_update":"2026-03-22T09:18:47.479364669Z"} +2026/03/22 09:18:52 ───────────────────────────────────────────────── +2026/03/22 09:18:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:18:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4740,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:18:52.375963265Z"} +2026/03/22 09:18:57 [detection_layer] {"stage_name":"detection_layer","events_processed":394,"events_dropped":0,"avg_latency_ms":17.306979192530967,"throughput_eps":0,"last_update":"2026-03-22T09:18:52.479204718Z"} +2026/03/22 09:18:57 [transform_engine] {"stage_name":"transform_engine","events_processed":394,"events_dropped":0,"avg_latency_ms":301.41684302451927,"throughput_eps":0,"last_update":"2026-03-22T09:18:52.479229736Z"} +2026/03/22 09:18:57 [log_collector] {"stage_name":"log_collector","events_processed":18966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3793.2,"last_update":"2026-03-22T09:18:57.368916781Z"} +2026/03/22 09:18:57 [metric_collector] {"stage_name":"metric_collector","events_processed":11843,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2368.6,"last_update":"2026-03-22T09:18:52.368387039Z"} +2026/03/22 09:18:57 ───────────────────────────────────────────────── +2026/03/22 09:19:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:19:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:18:57.377057569Z"} +2026/03/22 09:19:02 [detection_layer] {"stage_name":"detection_layer","events_processed":394,"events_dropped":0,"avg_latency_ms":17.306979192530967,"throughput_eps":0,"last_update":"2026-03-22T09:18:57.47931101Z"} +2026/03/22 09:19:02 [transform_engine] {"stage_name":"transform_engine","events_processed":395,"events_dropped":0,"avg_latency_ms":273.32078941961544,"throughput_eps":0,"last_update":"2026-03-22T09:18:57.640278675Z"} +2026/03/22 09:19:02 [log_collector] {"stage_name":"log_collector","events_processed":18966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3793.2,"last_update":"2026-03-22T09:18:57.368916781Z"} +2026/03/22 09:19:02 [metric_collector] {"stage_name":"metric_collector","events_processed":11848,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2369.6,"last_update":"2026-03-22T09:18:57.36909398Z"} +2026/03/22 09:19:02 ───────────────────────────────────────────────── +2026/03/22 09:19:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:19:07 [log_collector] {"stage_name":"log_collector","events_processed":18966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3793.2,"last_update":"2026-03-22T09:19:02.368812262Z"} +2026/03/22 09:19:07 [metric_collector] {"stage_name":"metric_collector","events_processed":11854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2370.8,"last_update":"2026-03-22T09:19:02.368984432Z"} +2026/03/22 09:19:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:19:02.375544643Z"} +2026/03/22 09:19:07 [detection_layer] {"stage_name":"detection_layer","events_processed":395,"events_dropped":0,"avg_latency_ms":17.426706354024777,"throughput_eps":0,"last_update":"2026-03-22T09:19:02.479763337Z"} +2026/03/22 09:19:07 [transform_engine] {"stage_name":"transform_engine","events_processed":395,"events_dropped":0,"avg_latency_ms":273.32078941961544,"throughput_eps":0,"last_update":"2026-03-22T09:19:02.479776042Z"} +2026/03/22 09:19:07 ───────────────────────────────────────────────── +2026/03/22 09:19:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:19:12 [detection_layer] {"stage_name":"detection_layer","events_processed":395,"events_dropped":0,"avg_latency_ms":17.426706354024777,"throughput_eps":0,"last_update":"2026-03-22T09:19:07.479653802Z"} +2026/03/22 09:19:12 [transform_engine] {"stage_name":"transform_engine","events_processed":395,"events_dropped":0,"avg_latency_ms":273.32078941961544,"throughput_eps":0,"last_update":"2026-03-22T09:19:07.479664071Z"} +2026/03/22 09:19:12 [log_collector] {"stage_name":"log_collector","events_processed":18966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3793.2,"last_update":"2026-03-22T09:19:07.368469098Z"} +2026/03/22 09:19:12 [metric_collector] {"stage_name":"metric_collector","events_processed":11859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2371.8,"last_update":"2026-03-22T09:19:07.368637159Z"} +2026/03/22 09:19:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:19:07.376604555Z"} +2026/03/22 09:19:12 ───────────────────────────────────────────────── +2026/03/22 09:19:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:19:17 [log_collector] {"stage_name":"log_collector","events_processed":18966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3793.2,"last_update":"2026-03-22T09:19:12.36908408Z"} +2026/03/22 09:19:17 [metric_collector] {"stage_name":"metric_collector","events_processed":11864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2372.8,"last_update":"2026-03-22T09:19:12.369519514Z"} +2026/03/22 09:19:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:19:12.376570285Z"} +2026/03/22 09:19:17 [detection_layer] {"stage_name":"detection_layer","events_processed":395,"events_dropped":0,"avg_latency_ms":17.426706354024777,"throughput_eps":0,"last_update":"2026-03-22T09:19:12.479793765Z"} +2026/03/22 09:19:17 [transform_engine] {"stage_name":"transform_engine","events_processed":395,"events_dropped":0,"avg_latency_ms":273.32078941961544,"throughput_eps":0,"last_update":"2026-03-22T09:19:12.479804756Z"} +2026/03/22 09:19:17 ───────────────────────────────────────────────── +2026/03/22 09:19:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:19:22 [log_collector] {"stage_name":"log_collector","events_processed":18966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3793.2,"last_update":"2026-03-22T09:19:17.368471695Z"} +2026/03/22 09:19:22 [metric_collector] {"stage_name":"metric_collector","events_processed":11869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2373.8,"last_update":"2026-03-22T09:19:17.368863476Z"} +2026/03/22 09:19:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4750,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:19:17.377288217Z"} +2026/03/22 09:19:22 [detection_layer] {"stage_name":"detection_layer","events_processed":395,"events_dropped":0,"avg_latency_ms":17.426706354024777,"throughput_eps":0,"last_update":"2026-03-22T09:19:17.479476787Z"} +2026/03/22 09:19:22 [transform_engine] {"stage_name":"transform_engine","events_processed":395,"events_dropped":0,"avg_latency_ms":273.32078941961544,"throughput_eps":0,"last_update":"2026-03-22T09:19:17.479495392Z"} +2026/03/22 09:19:22 ───────────────────────────────────────────────── +2026/03/22 09:19:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:19:27 [transform_engine] {"stage_name":"transform_engine","events_processed":395,"events_dropped":0,"avg_latency_ms":273.32078941961544,"throughput_eps":0,"last_update":"2026-03-22T09:19:22.479665397Z"} +2026/03/22 09:19:27 [log_collector] {"stage_name":"log_collector","events_processed":18966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3793.2,"last_update":"2026-03-22T09:19:22.368320785Z"} +2026/03/22 09:19:27 [metric_collector] {"stage_name":"metric_collector","events_processed":11879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2375.8,"last_update":"2026-03-22T09:19:27.368731651Z"} +2026/03/22 09:19:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4752,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:19:22.375262427Z"} +2026/03/22 09:19:27 [detection_layer] {"stage_name":"detection_layer","events_processed":395,"events_dropped":0,"avg_latency_ms":17.426706354024777,"throughput_eps":0,"last_update":"2026-03-22T09:19:22.479648945Z"} +2026/03/22 09:19:27 ───────────────────────────────────────────────── +2026/03/22 09:19:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:19:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:19:27.377602216Z"} +2026/03/22 09:19:32 [detection_layer] {"stage_name":"detection_layer","events_processed":395,"events_dropped":0,"avg_latency_ms":17.426706354024777,"throughput_eps":0,"last_update":"2026-03-22T09:19:27.479810444Z"} +2026/03/22 09:19:32 [transform_engine] {"stage_name":"transform_engine","events_processed":396,"events_dropped":0,"avg_latency_ms":538.9524243356924,"throughput_eps":0,"last_update":"2026-03-22T09:19:29.081306582Z"} +2026/03/22 09:19:32 [log_collector] {"stage_name":"log_collector","events_processed":18966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3793.2,"last_update":"2026-03-22T09:19:27.36885169Z"} +2026/03/22 09:19:32 [metric_collector] {"stage_name":"metric_collector","events_processed":11879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2375.8,"last_update":"2026-03-22T09:19:27.368731651Z"} +2026/03/22 09:19:32 ───────────────────────────────────────────────── +2026/03/22 09:19:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:19:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:19:32.375710413Z"} +2026/03/22 09:19:37 [detection_layer] {"stage_name":"detection_layer","events_processed":396,"events_dropped":0,"avg_latency_ms":16.701349883219823,"throughput_eps":0,"last_update":"2026-03-22T09:19:32.479952457Z"} +2026/03/22 09:19:37 [transform_engine] {"stage_name":"transform_engine","events_processed":396,"events_dropped":0,"avg_latency_ms":538.9524243356924,"throughput_eps":0,"last_update":"2026-03-22T09:19:32.478843895Z"} +2026/03/22 09:19:37 [log_collector] {"stage_name":"log_collector","events_processed":18977,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3795.4,"last_update":"2026-03-22T09:19:37.368985036Z"} +2026/03/22 09:19:37 [metric_collector] {"stage_name":"metric_collector","events_processed":11884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2376.8,"last_update":"2026-03-22T09:19:32.368369868Z"} +2026/03/22 09:19:37 ───────────────────────────────────────────────── +2026/03/22 09:19:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:19:42 [detection_layer] {"stage_name":"detection_layer","events_processed":396,"events_dropped":0,"avg_latency_ms":16.701349883219823,"throughput_eps":0,"last_update":"2026-03-22T09:19:37.479873756Z"} +2026/03/22 09:19:42 [transform_engine] {"stage_name":"transform_engine","events_processed":396,"events_dropped":0,"avg_latency_ms":538.9524243356924,"throughput_eps":0,"last_update":"2026-03-22T09:19:37.479767143Z"} +2026/03/22 09:19:42 [log_collector] {"stage_name":"log_collector","events_processed":18977,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3795.4,"last_update":"2026-03-22T09:19:37.368985036Z"} +2026/03/22 09:19:42 [metric_collector] {"stage_name":"metric_collector","events_processed":11889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2377.8,"last_update":"2026-03-22T09:19:37.369367328Z"} +2026/03/22 09:19:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4758,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:19:37.377399538Z"} +2026/03/22 09:19:42 ───────────────────────────────────────────────── +2026/03/22 09:19:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:19:47 [log_collector] {"stage_name":"log_collector","events_processed":19039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3807.8,"last_update":"2026-03-22T09:19:42.368284006Z"} +2026/03/22 09:19:47 [metric_collector] {"stage_name":"metric_collector","events_processed":11894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2378.8,"last_update":"2026-03-22T09:19:42.368488267Z"} +2026/03/22 09:19:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:19:42.375385763Z"} +2026/03/22 09:19:47 [detection_layer] {"stage_name":"detection_layer","events_processed":396,"events_dropped":0,"avg_latency_ms":16.701349883219823,"throughput_eps":0,"last_update":"2026-03-22T09:19:42.479129404Z"} +2026/03/22 09:19:47 [transform_engine] {"stage_name":"transform_engine","events_processed":396,"events_dropped":0,"avg_latency_ms":538.9524243356924,"throughput_eps":0,"last_update":"2026-03-22T09:19:42.479135256Z"} +2026/03/22 09:19:47 ───────────────────────────────────────────────── +2026/03/22 09:19:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:19:52 [log_collector] {"stage_name":"log_collector","events_processed":19225,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3845,"last_update":"2026-03-22T09:19:47.368372908Z"} +2026/03/22 09:19:52 [metric_collector] {"stage_name":"metric_collector","events_processed":11904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2380.8,"last_update":"2026-03-22T09:19:52.369248995Z"} +2026/03/22 09:19:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:19:47.378370921Z"} +2026/03/22 09:19:52 [detection_layer] {"stage_name":"detection_layer","events_processed":396,"events_dropped":0,"avg_latency_ms":16.701349883219823,"throughput_eps":0,"last_update":"2026-03-22T09:19:47.479689779Z"} +2026/03/22 09:19:52 [transform_engine] {"stage_name":"transform_engine","events_processed":396,"events_dropped":0,"avg_latency_ms":538.9524243356924,"throughput_eps":0,"last_update":"2026-03-22T09:19:47.479701412Z"} +2026/03/22 09:19:52 ───────────────────────────────────────────────── +2026/03/22 09:19:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:19:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:19:52.37837528Z"} +2026/03/22 09:19:57 [detection_layer] {"stage_name":"detection_layer","events_processed":396,"events_dropped":0,"avg_latency_ms":16.701349883219823,"throughput_eps":0,"last_update":"2026-03-22T09:19:52.479500689Z"} +2026/03/22 09:19:57 [transform_engine] {"stage_name":"transform_engine","events_processed":396,"events_dropped":0,"avg_latency_ms":538.9524243356924,"throughput_eps":0,"last_update":"2026-03-22T09:19:52.479514034Z"} +2026/03/22 09:19:57 [log_collector] {"stage_name":"log_collector","events_processed":19326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3865.2,"last_update":"2026-03-22T09:19:57.368218732Z"} +2026/03/22 09:19:57 [metric_collector] {"stage_name":"metric_collector","events_processed":11904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2380.8,"last_update":"2026-03-22T09:19:52.369248995Z"} +2026/03/22 09:19:57 ───────────────────────────────────────────────── +Saved state: 13 clusters, 19327 messages, reason: none +2026/03/22 09:20:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:20:02 [detection_layer] {"stage_name":"detection_layer","events_processed":396,"events_dropped":0,"avg_latency_ms":16.701349883219823,"throughput_eps":0,"last_update":"2026-03-22T09:19:57.479864335Z"} +2026/03/22 09:20:02 [transform_engine] {"stage_name":"transform_engine","events_processed":397,"events_dropped":0,"avg_latency_ms":455.10251786855395,"throughput_eps":0,"last_update":"2026-03-22T09:19:57.599582586Z"} +2026/03/22 09:20:02 [log_collector] {"stage_name":"log_collector","events_processed":19326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3865.2,"last_update":"2026-03-22T09:19:57.368218732Z"} +2026/03/22 09:20:02 [metric_collector] {"stage_name":"metric_collector","events_processed":11909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2381.8,"last_update":"2026-03-22T09:19:57.368626513Z"} +2026/03/22 09:20:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4766,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:19:57.377636756Z"} +2026/03/22 09:20:02 ───────────────────────────────────────────────── +2026/03/22 09:20:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:20:07 [log_collector] {"stage_name":"log_collector","events_processed":19329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3865.8,"last_update":"2026-03-22T09:20:02.368114301Z"} +2026/03/22 09:20:07 [metric_collector] {"stage_name":"metric_collector","events_processed":11914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2382.8,"last_update":"2026-03-22T09:20:02.368466225Z"} +2026/03/22 09:20:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4768,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:20:02.38163453Z"} +2026/03/22 09:20:07 [detection_layer] {"stage_name":"detection_layer","events_processed":397,"events_dropped":0,"avg_latency_ms":17.17875810657586,"throughput_eps":0,"last_update":"2026-03-22T09:20:02.47995606Z"} +2026/03/22 09:20:07 [transform_engine] {"stage_name":"transform_engine","events_processed":397,"events_dropped":0,"avg_latency_ms":455.10251786855395,"throughput_eps":0,"last_update":"2026-03-22T09:20:02.478830525Z"} +2026/03/22 09:20:07 ───────────────────────────────────────────────── +2026/03/22 09:20:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:20:12 [metric_collector] {"stage_name":"metric_collector","events_processed":11919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2383.8,"last_update":"2026-03-22T09:20:07.369040372Z"} +2026/03/22 09:20:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4770,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:20:07.379214253Z"} +2026/03/22 09:20:12 [detection_layer] {"stage_name":"detection_layer","events_processed":397,"events_dropped":0,"avg_latency_ms":17.17875810657586,"throughput_eps":0,"last_update":"2026-03-22T09:20:07.479158311Z"} +2026/03/22 09:20:12 [transform_engine] {"stage_name":"transform_engine","events_processed":397,"events_dropped":0,"avg_latency_ms":455.10251786855395,"throughput_eps":0,"last_update":"2026-03-22T09:20:07.47916844Z"} +2026/03/22 09:20:12 [log_collector] {"stage_name":"log_collector","events_processed":19340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3868,"last_update":"2026-03-22T09:20:12.368520492Z"} +2026/03/22 09:20:12 ───────────────────────────────────────────────── +2026/03/22 09:20:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:20:17 [log_collector] {"stage_name":"log_collector","events_processed":19340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3868,"last_update":"2026-03-22T09:20:12.368520492Z"} +2026/03/22 09:20:17 [metric_collector] {"stage_name":"metric_collector","events_processed":11924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2384.8,"last_update":"2026-03-22T09:20:12.369064683Z"} +2026/03/22 09:20:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:20:12.378136605Z"} +2026/03/22 09:20:17 [detection_layer] {"stage_name":"detection_layer","events_processed":397,"events_dropped":0,"avg_latency_ms":17.17875810657586,"throughput_eps":0,"last_update":"2026-03-22T09:20:12.479626664Z"} +2026/03/22 09:20:17 [transform_engine] {"stage_name":"transform_engine","events_processed":397,"events_dropped":0,"avg_latency_ms":455.10251786855395,"throughput_eps":0,"last_update":"2026-03-22T09:20:12.479639328Z"} +2026/03/22 09:20:17 ───────────────────────────────────────────────── +2026/03/22 09:20:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:20:22 [transform_engine] {"stage_name":"transform_engine","events_processed":397,"events_dropped":0,"avg_latency_ms":455.10251786855395,"throughput_eps":0,"last_update":"2026-03-22T09:20:17.479119077Z"} +2026/03/22 09:20:22 [log_collector] {"stage_name":"log_collector","events_processed":19354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3870.8,"last_update":"2026-03-22T09:20:17.368392661Z"} +2026/03/22 09:20:22 [metric_collector] {"stage_name":"metric_collector","events_processed":11929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2385.8,"last_update":"2026-03-22T09:20:17.368768431Z"} +2026/03/22 09:20:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:20:17.375963378Z"} +2026/03/22 09:20:22 [detection_layer] {"stage_name":"detection_layer","events_processed":397,"events_dropped":0,"avg_latency_ms":17.17875810657586,"throughput_eps":0,"last_update":"2026-03-22T09:20:17.479108567Z"} +2026/03/22 09:20:22 ───────────────────────────────────────────────── +2026/03/22 09:20:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:20:27 [log_collector] {"stage_name":"log_collector","events_processed":19356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3871.2,"last_update":"2026-03-22T09:20:27.367981214Z"} +2026/03/22 09:20:27 [metric_collector] {"stage_name":"metric_collector","events_processed":11934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2386.8,"last_update":"2026-03-22T09:20:22.368990988Z"} +2026/03/22 09:20:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:20:22.377069508Z"} +2026/03/22 09:20:27 [detection_layer] {"stage_name":"detection_layer","events_processed":397,"events_dropped":0,"avg_latency_ms":17.17875810657586,"throughput_eps":0,"last_update":"2026-03-22T09:20:22.47945372Z"} +2026/03/22 09:20:27 [transform_engine] {"stage_name":"transform_engine","events_processed":397,"events_dropped":0,"avg_latency_ms":455.10251786855395,"throughput_eps":0,"last_update":"2026-03-22T09:20:22.479472997Z"} +2026/03/22 09:20:27 ───────────────────────────────────────────────── +2026/03/22 09:20:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:20:32 [detection_layer] {"stage_name":"detection_layer","events_processed":397,"events_dropped":0,"avg_latency_ms":17.17875810657586,"throughput_eps":0,"last_update":"2026-03-22T09:20:27.479781988Z"} +2026/03/22 09:20:32 [transform_engine] {"stage_name":"transform_engine","events_processed":398,"events_dropped":0,"avg_latency_ms":385.1675080948432,"throughput_eps":0,"last_update":"2026-03-22T09:20:27.58522614Z"} +2026/03/22 09:20:32 [log_collector] {"stage_name":"log_collector","events_processed":19356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3871.2,"last_update":"2026-03-22T09:20:27.367981214Z"} +2026/03/22 09:20:32 [metric_collector] {"stage_name":"metric_collector","events_processed":11939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2387.8,"last_update":"2026-03-22T09:20:27.368528321Z"} +2026/03/22 09:20:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:20:27.375502928Z"} +2026/03/22 09:20:32 ───────────────────────────────────────────────── +2026/03/22 09:20:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:20:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4780,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:20:32.377855519Z"} +2026/03/22 09:20:37 [detection_layer] {"stage_name":"detection_layer","events_processed":398,"events_dropped":0,"avg_latency_ms":16.86853328526069,"throughput_eps":0,"last_update":"2026-03-22T09:20:32.479219368Z"} +2026/03/22 09:20:37 [transform_engine] {"stage_name":"transform_engine","events_processed":398,"events_dropped":0,"avg_latency_ms":385.1675080948432,"throughput_eps":0,"last_update":"2026-03-22T09:20:32.479240138Z"} +2026/03/22 09:20:37 [log_collector] {"stage_name":"log_collector","events_processed":19356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3871.2,"last_update":"2026-03-22T09:20:32.368103404Z"} +2026/03/22 09:20:37 [metric_collector] {"stage_name":"metric_collector","events_processed":11944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2388.8,"last_update":"2026-03-22T09:20:32.368522898Z"} +2026/03/22 09:20:37 ───────────────────────────────────────────────── +2026/03/22 09:20:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:20:42 [transform_engine] {"stage_name":"transform_engine","events_processed":398,"events_dropped":0,"avg_latency_ms":385.1675080948432,"throughput_eps":0,"last_update":"2026-03-22T09:20:37.479657181Z"} +2026/03/22 09:20:42 [log_collector] {"stage_name":"log_collector","events_processed":19356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3871.2,"last_update":"2026-03-22T09:20:37.368260089Z"} +2026/03/22 09:20:42 [metric_collector] {"stage_name":"metric_collector","events_processed":11948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2389.6,"last_update":"2026-03-22T09:20:37.368306387Z"} +2026/03/22 09:20:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4782,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:20:37.377407315Z"} +2026/03/22 09:20:42 [detection_layer] {"stage_name":"detection_layer","events_processed":398,"events_dropped":0,"avg_latency_ms":16.86853328526069,"throughput_eps":0,"last_update":"2026-03-22T09:20:37.479642923Z"} +2026/03/22 09:20:42 ───────────────────────────────────────────────── +2026/03/22 09:20:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:20:47 [transform_engine] {"stage_name":"transform_engine","events_processed":398,"events_dropped":0,"avg_latency_ms":385.1675080948432,"throughput_eps":0,"last_update":"2026-03-22T09:20:42.478993983Z"} +2026/03/22 09:20:47 [log_collector] {"stage_name":"log_collector","events_processed":19356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3871.2,"last_update":"2026-03-22T09:20:42.368296209Z"} +2026/03/22 09:20:47 [metric_collector] {"stage_name":"metric_collector","events_processed":11953,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2390.6,"last_update":"2026-03-22T09:20:42.368282643Z"} +2026/03/22 09:20:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:20:42.377771863Z"} +2026/03/22 09:20:47 [detection_layer] {"stage_name":"detection_layer","events_processed":398,"events_dropped":0,"avg_latency_ms":16.86853328526069,"throughput_eps":0,"last_update":"2026-03-22T09:20:42.47897714Z"} +2026/03/22 09:20:47 ───────────────────────────────────────────────── +2026/03/22 09:20:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:20:52 [log_collector] {"stage_name":"log_collector","events_processed":19356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3871.2,"last_update":"2026-03-22T09:20:52.368498348Z"} +2026/03/22 09:20:52 [metric_collector] {"stage_name":"metric_collector","events_processed":11958,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2391.6,"last_update":"2026-03-22T09:20:47.367902833Z"} +2026/03/22 09:20:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:20:47.377476214Z"} +2026/03/22 09:20:52 [detection_layer] {"stage_name":"detection_layer","events_processed":398,"events_dropped":0,"avg_latency_ms":16.86853328526069,"throughput_eps":0,"last_update":"2026-03-22T09:20:47.479767191Z"} +2026/03/22 09:20:52 [transform_engine] {"stage_name":"transform_engine","events_processed":398,"events_dropped":0,"avg_latency_ms":385.1675080948432,"throughput_eps":0,"last_update":"2026-03-22T09:20:47.479782991Z"} +2026/03/22 09:20:52 ───────────────────────────────────────────────── +2026/03/22 09:20:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:20:57 [log_collector] {"stage_name":"log_collector","events_processed":19356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3871.2,"last_update":"2026-03-22T09:20:52.368498348Z"} +2026/03/22 09:20:57 [metric_collector] {"stage_name":"metric_collector","events_processed":11964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2392.8,"last_update":"2026-03-22T09:20:52.368907942Z"} +2026/03/22 09:20:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:20:52.378395659Z"} +2026/03/22 09:20:57 [detection_layer] {"stage_name":"detection_layer","events_processed":398,"events_dropped":0,"avg_latency_ms":16.86853328526069,"throughput_eps":0,"last_update":"2026-03-22T09:20:52.479874261Z"} +2026/03/22 09:20:57 [transform_engine] {"stage_name":"transform_engine","events_processed":398,"events_dropped":0,"avg_latency_ms":385.1675080948432,"throughput_eps":0,"last_update":"2026-03-22T09:20:52.479887116Z"} +2026/03/22 09:20:57 ───────────────────────────────────────────────── +2026/03/22 09:21:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:21:02 [metric_collector] {"stage_name":"metric_collector","events_processed":11969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2393.8,"last_update":"2026-03-22T09:20:57.369062288Z"} +2026/03/22 09:21:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:20:57.379404492Z"} +2026/03/22 09:21:02 [detection_layer] {"stage_name":"detection_layer","events_processed":398,"events_dropped":0,"avg_latency_ms":16.86853328526069,"throughput_eps":0,"last_update":"2026-03-22T09:20:57.479670932Z"} +2026/03/22 09:21:02 [transform_engine] {"stage_name":"transform_engine","events_processed":399,"events_dropped":0,"avg_latency_ms":322.1651948758746,"throughput_eps":0,"last_update":"2026-03-22T09:20:57.54984077Z"} +2026/03/22 09:21:02 [log_collector] {"stage_name":"log_collector","events_processed":19356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3871.2,"last_update":"2026-03-22T09:21:02.368803557Z"} +2026/03/22 09:21:02 ───────────────────────────────────────────────── +2026/03/22 09:21:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:21:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:21:02.378301805Z"} +2026/03/22 09:21:07 [detection_layer] {"stage_name":"detection_layer","events_processed":399,"events_dropped":0,"avg_latency_ms":17.932622628208552,"throughput_eps":0,"last_update":"2026-03-22T09:21:02.479496884Z"} +2026/03/22 09:21:07 [transform_engine] {"stage_name":"transform_engine","events_processed":399,"events_dropped":0,"avg_latency_ms":322.1651948758746,"throughput_eps":0,"last_update":"2026-03-22T09:21:02.479508776Z"} +2026/03/22 09:21:07 [log_collector] {"stage_name":"log_collector","events_processed":19356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3871.2,"last_update":"2026-03-22T09:21:02.368803557Z"} +2026/03/22 09:21:07 [metric_collector] {"stage_name":"metric_collector","events_processed":11974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2394.8,"last_update":"2026-03-22T09:21:02.369177412Z"} +2026/03/22 09:21:07 ───────────────────────────────────────────────── +2026/03/22 09:21:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:21:12 [log_collector] {"stage_name":"log_collector","events_processed":19356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3871.2,"last_update":"2026-03-22T09:21:07.368742199Z"} +2026/03/22 09:21:12 [metric_collector] {"stage_name":"metric_collector","events_processed":11979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2395.8,"last_update":"2026-03-22T09:21:07.369078173Z"} +2026/03/22 09:21:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:21:07.377699522Z"} +2026/03/22 09:21:12 [detection_layer] {"stage_name":"detection_layer","events_processed":399,"events_dropped":0,"avg_latency_ms":17.932622628208552,"throughput_eps":0,"last_update":"2026-03-22T09:21:07.479998485Z"} +2026/03/22 09:21:12 [transform_engine] {"stage_name":"transform_engine","events_processed":399,"events_dropped":0,"avg_latency_ms":322.1651948758746,"throughput_eps":0,"last_update":"2026-03-22T09:21:07.478856368Z"} +2026/03/22 09:21:12 ───────────────────────────────────────────────── +2026/03/22 09:21:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:21:17 [log_collector] {"stage_name":"log_collector","events_processed":19356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3871.2,"last_update":"2026-03-22T09:21:12.368175571Z"} +2026/03/22 09:21:17 [metric_collector] {"stage_name":"metric_collector","events_processed":11984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2396.8,"last_update":"2026-03-22T09:21:12.368841757Z"} +2026/03/22 09:21:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4796,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:21:12.377989514Z"} +2026/03/22 09:21:17 [detection_layer] {"stage_name":"detection_layer","events_processed":399,"events_dropped":0,"avg_latency_ms":17.932622628208552,"throughput_eps":0,"last_update":"2026-03-22T09:21:12.479216796Z"} +2026/03/22 09:21:17 [transform_engine] {"stage_name":"transform_engine","events_processed":399,"events_dropped":0,"avg_latency_ms":322.1651948758746,"throughput_eps":0,"last_update":"2026-03-22T09:21:12.479231012Z"} +2026/03/22 09:21:17 ───────────────────────────────────────────────── +2026/03/22 09:21:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:21:22 [detection_layer] {"stage_name":"detection_layer","events_processed":399,"events_dropped":0,"avg_latency_ms":17.932622628208552,"throughput_eps":0,"last_update":"2026-03-22T09:21:17.479076408Z"} +2026/03/22 09:21:22 [transform_engine] {"stage_name":"transform_engine","events_processed":399,"events_dropped":0,"avg_latency_ms":322.1651948758746,"throughput_eps":0,"last_update":"2026-03-22T09:21:17.479090395Z"} +2026/03/22 09:21:22 [log_collector] {"stage_name":"log_collector","events_processed":19356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3871.2,"last_update":"2026-03-22T09:21:17.36845128Z"} +2026/03/22 09:21:22 [metric_collector] {"stage_name":"metric_collector","events_processed":11989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2397.8,"last_update":"2026-03-22T09:21:17.368924535Z"} +2026/03/22 09:21:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:21:17.377839226Z"} +2026/03/22 09:21:22 ───────────────────────────────────────────────── +Saved state: 13 clusters, 19357 messages, reason: none +2026/03/22 09:21:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:21:27 [log_collector] {"stage_name":"log_collector","events_processed":19356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3871.2,"last_update":"2026-03-22T09:21:22.368626562Z"} +2026/03/22 09:21:27 [metric_collector] {"stage_name":"metric_collector","events_processed":11994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2398.8,"last_update":"2026-03-22T09:21:22.369092934Z"} +2026/03/22 09:21:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4800,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:21:22.377729322Z"} +2026/03/22 09:21:27 [detection_layer] {"stage_name":"detection_layer","events_processed":399,"events_dropped":0,"avg_latency_ms":17.932622628208552,"throughput_eps":0,"last_update":"2026-03-22T09:21:22.47999284Z"} +2026/03/22 09:21:27 [transform_engine] {"stage_name":"transform_engine","events_processed":399,"events_dropped":0,"avg_latency_ms":322.1651948758746,"throughput_eps":0,"last_update":"2026-03-22T09:21:22.478847697Z"} +2026/03/22 09:21:27 ───────────────────────────────────────────────── +2026/03/22 09:21:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:21:32 [log_collector] {"stage_name":"log_collector","events_processed":19370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3874,"last_update":"2026-03-22T09:21:27.368037775Z"} +2026/03/22 09:21:32 [metric_collector] {"stage_name":"metric_collector","events_processed":11999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2399.8,"last_update":"2026-03-22T09:21:27.368792721Z"} +2026/03/22 09:21:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4802,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:21:27.376010472Z"} +2026/03/22 09:21:32 [detection_layer] {"stage_name":"detection_layer","events_processed":399,"events_dropped":0,"avg_latency_ms":17.932622628208552,"throughput_eps":0,"last_update":"2026-03-22T09:21:27.479251482Z"} +2026/03/22 09:21:32 [transform_engine] {"stage_name":"transform_engine","events_processed":400,"events_dropped":0,"avg_latency_ms":279.4259041006997,"throughput_eps":0,"last_update":"2026-03-22T09:21:27.587772834Z"} +2026/03/22 09:21:32 ───────────────────────────────────────────────── +2026/03/22 09:21:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:21:37 [log_collector] {"stage_name":"log_collector","events_processed":19370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3874,"last_update":"2026-03-22T09:21:32.368674591Z"} +2026/03/22 09:21:37 [metric_collector] {"stage_name":"metric_collector","events_processed":12004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2400.8,"last_update":"2026-03-22T09:21:32.369438534Z"} +2026/03/22 09:21:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:21:32.378255438Z"} +2026/03/22 09:21:37 [detection_layer] {"stage_name":"detection_layer","events_processed":400,"events_dropped":0,"avg_latency_ms":17.61135490256684,"throughput_eps":0,"last_update":"2026-03-22T09:21:32.479547336Z"} +2026/03/22 09:21:37 [transform_engine] {"stage_name":"transform_engine","events_processed":400,"events_dropped":0,"avg_latency_ms":279.4259041006997,"throughput_eps":0,"last_update":"2026-03-22T09:21:32.479597742Z"} +2026/03/22 09:21:37 ───────────────────────────────────────────────── +2026/03/22 09:21:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:21:42 [metric_collector] {"stage_name":"metric_collector","events_processed":12009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2401.8,"last_update":"2026-03-22T09:21:37.368772878Z"} +2026/03/22 09:21:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:21:37.377681738Z"} +2026/03/22 09:21:42 [detection_layer] {"stage_name":"detection_layer","events_processed":400,"events_dropped":0,"avg_latency_ms":17.61135490256684,"throughput_eps":0,"last_update":"2026-03-22T09:21:37.479107893Z"} +2026/03/22 09:21:42 [transform_engine] {"stage_name":"transform_engine","events_processed":400,"events_dropped":0,"avg_latency_ms":279.4259041006997,"throughput_eps":0,"last_update":"2026-03-22T09:21:37.478898572Z"} +2026/03/22 09:21:42 [log_collector] {"stage_name":"log_collector","events_processed":19370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3874,"last_update":"2026-03-22T09:21:37.368106242Z"} +2026/03/22 09:21:42 ───────────────────────────────────────────────── +2026/03/22 09:21:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:21:47 [log_collector] {"stage_name":"log_collector","events_processed":19370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3874,"last_update":"2026-03-22T09:21:42.368007324Z"} +2026/03/22 09:21:47 [metric_collector] {"stage_name":"metric_collector","events_processed":12014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2402.8,"last_update":"2026-03-22T09:21:42.368835781Z"} +2026/03/22 09:21:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:21:42.375914827Z"} +2026/03/22 09:21:47 [detection_layer] {"stage_name":"detection_layer","events_processed":400,"events_dropped":0,"avg_latency_ms":17.61135490256684,"throughput_eps":0,"last_update":"2026-03-22T09:21:42.478946628Z"} +2026/03/22 09:21:47 [transform_engine] {"stage_name":"transform_engine","events_processed":400,"events_dropped":0,"avg_latency_ms":279.4259041006997,"throughput_eps":0,"last_update":"2026-03-22T09:21:42.478929034Z"} +2026/03/22 09:21:47 ───────────────────────────────────────────────── +2026/03/22 09:21:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:21:52 [metric_collector] {"stage_name":"metric_collector","events_processed":12019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2403.8,"last_update":"2026-03-22T09:21:47.369203903Z"} +2026/03/22 09:21:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:21:47.378162919Z"} +2026/03/22 09:21:52 [detection_layer] {"stage_name":"detection_layer","events_processed":400,"events_dropped":0,"avg_latency_ms":17.61135490256684,"throughput_eps":0,"last_update":"2026-03-22T09:21:47.479376077Z"} +2026/03/22 09:21:52 [transform_engine] {"stage_name":"transform_engine","events_processed":400,"events_dropped":0,"avg_latency_ms":279.4259041006997,"throughput_eps":0,"last_update":"2026-03-22T09:21:47.47941399Z"} +2026/03/22 09:21:52 [log_collector] {"stage_name":"log_collector","events_processed":19370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3874,"last_update":"2026-03-22T09:21:52.36846626Z"} +2026/03/22 09:21:52 ───────────────────────────────────────────────── +2026/03/22 09:21:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:21:57 [log_collector] {"stage_name":"log_collector","events_processed":19370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3874,"last_update":"2026-03-22T09:21:52.36846626Z"} +2026/03/22 09:21:57 [metric_collector] {"stage_name":"metric_collector","events_processed":12024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2404.8,"last_update":"2026-03-22T09:21:52.369503466Z"} +2026/03/22 09:21:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4812,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:21:52.376428628Z"} +2026/03/22 09:21:57 [detection_layer] {"stage_name":"detection_layer","events_processed":400,"events_dropped":0,"avg_latency_ms":17.61135490256684,"throughput_eps":0,"last_update":"2026-03-22T09:21:52.479658348Z"} +2026/03/22 09:21:57 [transform_engine] {"stage_name":"transform_engine","events_processed":400,"events_dropped":0,"avg_latency_ms":279.4259041006997,"throughput_eps":0,"last_update":"2026-03-22T09:21:52.479635114Z"} +2026/03/22 09:21:57 ───────────────────────────────────────────────── +2026/03/22 09:22:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:22:02 [log_collector] {"stage_name":"log_collector","events_processed":19370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3874,"last_update":"2026-03-22T09:21:57.368261731Z"} +2026/03/22 09:22:02 [metric_collector] {"stage_name":"metric_collector","events_processed":12029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2405.8,"last_update":"2026-03-22T09:21:57.368712614Z"} +2026/03/22 09:22:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:21:57.37796929Z"} +2026/03/22 09:22:02 [detection_layer] {"stage_name":"detection_layer","events_processed":400,"events_dropped":0,"avg_latency_ms":17.61135490256684,"throughput_eps":0,"last_update":"2026-03-22T09:21:57.47948065Z"} +2026/03/22 09:22:02 [transform_engine] {"stage_name":"transform_engine","events_processed":401,"events_dropped":0,"avg_latency_ms":239.22888768055978,"throughput_eps":0,"last_update":"2026-03-22T09:21:57.557791884Z"} +2026/03/22 09:22:02 ───────────────────────────────────────────────── +2026/03/22 09:22:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:22:07 [log_collector] {"stage_name":"log_collector","events_processed":19370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3874,"last_update":"2026-03-22T09:22:02.368461772Z"} +2026/03/22 09:22:07 [metric_collector] {"stage_name":"metric_collector","events_processed":12034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2406.8,"last_update":"2026-03-22T09:22:02.368877157Z"} +2026/03/22 09:22:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4816,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:22:02.377711655Z"} +2026/03/22 09:22:07 [detection_layer] {"stage_name":"detection_layer","events_processed":401,"events_dropped":0,"avg_latency_ms":17.691866922053475,"throughput_eps":0,"last_update":"2026-03-22T09:22:02.479935569Z"} +2026/03/22 09:22:07 [transform_engine] {"stage_name":"transform_engine","events_processed":401,"events_dropped":0,"avg_latency_ms":239.22888768055978,"throughput_eps":0,"last_update":"2026-03-22T09:22:02.478838809Z"} +2026/03/22 09:22:07 ───────────────────────────────────────────────── +2026/03/22 09:22:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:22:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4818,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:22:07.379783432Z"} +2026/03/22 09:22:12 [detection_layer] {"stage_name":"detection_layer","events_processed":401,"events_dropped":0,"avg_latency_ms":17.691866922053475,"throughput_eps":0,"last_update":"2026-03-22T09:22:07.478964331Z"} +2026/03/22 09:22:12 [transform_engine] {"stage_name":"transform_engine","events_processed":401,"events_dropped":0,"avg_latency_ms":239.22888768055978,"throughput_eps":0,"last_update":"2026-03-22T09:22:07.478952948Z"} +2026/03/22 09:22:12 [log_collector] {"stage_name":"log_collector","events_processed":19370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3874,"last_update":"2026-03-22T09:22:07.367994366Z"} +2026/03/22 09:22:12 [metric_collector] {"stage_name":"metric_collector","events_processed":12039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2407.8,"last_update":"2026-03-22T09:22:07.368401116Z"} +2026/03/22 09:22:12 ───────────────────────────────────────────────── +2026/03/22 09:22:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:22:17 [detection_layer] {"stage_name":"detection_layer","events_processed":401,"events_dropped":0,"avg_latency_ms":17.691866922053475,"throughput_eps":0,"last_update":"2026-03-22T09:22:12.479669383Z"} +2026/03/22 09:22:17 [transform_engine] {"stage_name":"transform_engine","events_processed":401,"events_dropped":0,"avg_latency_ms":239.22888768055978,"throughput_eps":0,"last_update":"2026-03-22T09:22:12.479773663Z"} +2026/03/22 09:22:17 [log_collector] {"stage_name":"log_collector","events_processed":19370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3874,"last_update":"2026-03-22T09:22:12.368185043Z"} +2026/03/22 09:22:17 [metric_collector] {"stage_name":"metric_collector","events_processed":12044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2408.8,"last_update":"2026-03-22T09:22:12.368681493Z"} +2026/03/22 09:22:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4818,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:22:12.368290866Z"} +2026/03/22 09:22:17 ───────────────────────────────────────────────── +2026/03/22 09:22:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:22:22 [detection_layer] {"stage_name":"detection_layer","events_processed":401,"events_dropped":0,"avg_latency_ms":17.691866922053475,"throughput_eps":0,"last_update":"2026-03-22T09:22:17.47913362Z"} +2026/03/22 09:22:22 [transform_engine] {"stage_name":"transform_engine","events_processed":401,"events_dropped":0,"avg_latency_ms":239.22888768055978,"throughput_eps":0,"last_update":"2026-03-22T09:22:17.479108602Z"} +2026/03/22 09:22:22 [log_collector] {"stage_name":"log_collector","events_processed":19370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3874,"last_update":"2026-03-22T09:22:17.368555365Z"} +2026/03/22 09:22:22 [metric_collector] {"stage_name":"metric_collector","events_processed":12048,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2409.6,"last_update":"2026-03-22T09:22:17.368616092Z"} +2026/03/22 09:22:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:22:17.376898241Z"} +2026/03/22 09:22:22 ───────────────────────────────────────────────── +2026/03/22 09:22:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:22:27 [detection_layer] {"stage_name":"detection_layer","events_processed":401,"events_dropped":0,"avg_latency_ms":17.691866922053475,"throughput_eps":0,"last_update":"2026-03-22T09:22:22.479273573Z"} +2026/03/22 09:22:27 [transform_engine] {"stage_name":"transform_engine","events_processed":401,"events_dropped":0,"avg_latency_ms":239.22888768055978,"throughput_eps":0,"last_update":"2026-03-22T09:22:22.479253025Z"} +2026/03/22 09:22:27 [log_collector] {"stage_name":"log_collector","events_processed":19370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3874,"last_update":"2026-03-22T09:22:22.368243052Z"} +2026/03/22 09:22:27 [metric_collector] {"stage_name":"metric_collector","events_processed":12053,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2410.6,"last_update":"2026-03-22T09:22:22.368274132Z"} +2026/03/22 09:22:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:22:22.37794939Z"} +2026/03/22 09:22:27 ───────────────────────────────────────────────── +Saved state: 13 clusters, 19371 messages, reason: none +2026/03/22 09:22:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:22:32 [log_collector] {"stage_name":"log_collector","events_processed":19370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3874,"last_update":"2026-03-22T09:22:27.368053206Z"} +2026/03/22 09:22:32 [metric_collector] {"stage_name":"metric_collector","events_processed":12059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2411.8,"last_update":"2026-03-22T09:22:27.368715955Z"} +2026/03/22 09:22:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4826,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:22:27.378284139Z"} +2026/03/22 09:22:32 [detection_layer] {"stage_name":"detection_layer","events_processed":401,"events_dropped":0,"avg_latency_ms":17.691866922053475,"throughput_eps":0,"last_update":"2026-03-22T09:22:27.479527138Z"} +2026/03/22 09:22:32 [transform_engine] {"stage_name":"transform_engine","events_processed":402,"events_dropped":0,"avg_latency_ms":205.91557754444784,"throughput_eps":0,"last_update":"2026-03-22T09:22:27.552154879Z"} +2026/03/22 09:22:32 ───────────────────────────────────────────────── +2026/03/22 09:22:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:22:37 [log_collector] {"stage_name":"log_collector","events_processed":19375,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3875,"last_update":"2026-03-22T09:22:32.368192042Z"} +2026/03/22 09:22:37 [metric_collector] {"stage_name":"metric_collector","events_processed":12064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2412.8,"last_update":"2026-03-22T09:22:32.368609682Z"} +2026/03/22 09:22:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:22:32.374659737Z"} +2026/03/22 09:22:37 [detection_layer] {"stage_name":"detection_layer","events_processed":402,"events_dropped":0,"avg_latency_ms":18.44701953764278,"throughput_eps":0,"last_update":"2026-03-22T09:22:32.479901434Z"} +2026/03/22 09:22:37 [transform_engine] {"stage_name":"transform_engine","events_processed":402,"events_dropped":0,"avg_latency_ms":205.91557754444784,"throughput_eps":0,"last_update":"2026-03-22T09:22:32.478811948Z"} +2026/03/22 09:22:37 ───────────────────────────────────────────────── +2026/03/22 09:22:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:22:42 [log_collector] {"stage_name":"log_collector","events_processed":19375,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3875,"last_update":"2026-03-22T09:22:37.367945341Z"} +2026/03/22 09:22:42 [metric_collector] {"stage_name":"metric_collector","events_processed":12069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2413.8,"last_update":"2026-03-22T09:22:37.368528167Z"} +2026/03/22 09:22:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4830,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:22:37.375380909Z"} +2026/03/22 09:22:42 [detection_layer] {"stage_name":"detection_layer","events_processed":402,"events_dropped":0,"avg_latency_ms":18.44701953764278,"throughput_eps":0,"last_update":"2026-03-22T09:22:37.48045692Z"} +2026/03/22 09:22:42 [transform_engine] {"stage_name":"transform_engine","events_processed":402,"events_dropped":0,"avg_latency_ms":205.91557754444784,"throughput_eps":0,"last_update":"2026-03-22T09:22:37.479583717Z"} +2026/03/22 09:22:42 ───────────────────────────────────────────────── +2026/03/22 09:22:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:22:47 [log_collector] {"stage_name":"log_collector","events_processed":19375,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3875,"last_update":"2026-03-22T09:22:42.36832019Z"} +2026/03/22 09:22:47 [metric_collector] {"stage_name":"metric_collector","events_processed":12074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2414.8,"last_update":"2026-03-22T09:22:42.368316413Z"} +2026/03/22 09:22:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4832,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:22:42.377535828Z"} +2026/03/22 09:22:47 [detection_layer] {"stage_name":"detection_layer","events_processed":402,"events_dropped":0,"avg_latency_ms":18.44701953764278,"throughput_eps":0,"last_update":"2026-03-22T09:22:42.479728958Z"} +2026/03/22 09:22:47 [transform_engine] {"stage_name":"transform_engine","events_processed":402,"events_dropped":0,"avg_latency_ms":205.91557754444784,"throughput_eps":0,"last_update":"2026-03-22T09:22:42.479757663Z"} +2026/03/22 09:22:47 ───────────────────────────────────────────────── +2026/03/22 09:22:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:22:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:22:47.376570613Z"} +2026/03/22 09:22:52 [detection_layer] {"stage_name":"detection_layer","events_processed":402,"events_dropped":0,"avg_latency_ms":18.44701953764278,"throughput_eps":0,"last_update":"2026-03-22T09:22:47.479830125Z"} +2026/03/22 09:22:52 [transform_engine] {"stage_name":"transform_engine","events_processed":402,"events_dropped":0,"avg_latency_ms":205.91557754444784,"throughput_eps":0,"last_update":"2026-03-22T09:22:47.479800088Z"} +2026/03/22 09:22:52 [log_collector] {"stage_name":"log_collector","events_processed":19375,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3875,"last_update":"2026-03-22T09:22:47.368946713Z"} +2026/03/22 09:22:52 [metric_collector] {"stage_name":"metric_collector","events_processed":12078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2415.6,"last_update":"2026-03-22T09:22:47.368942164Z"} +2026/03/22 09:22:52 ───────────────────────────────────────────────── +2026/03/22 09:22:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:22:57 [metric_collector] {"stage_name":"metric_collector","events_processed":12084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2416.8,"last_update":"2026-03-22T09:22:52.36887021Z"} +2026/03/22 09:22:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:22:52.376460416Z"} +2026/03/22 09:22:57 [detection_layer] {"stage_name":"detection_layer","events_processed":402,"events_dropped":0,"avg_latency_ms":18.44701953764278,"throughput_eps":0,"last_update":"2026-03-22T09:22:52.479610459Z"} +2026/03/22 09:22:57 [transform_engine] {"stage_name":"transform_engine","events_processed":402,"events_dropped":0,"avg_latency_ms":205.91557754444784,"throughput_eps":0,"last_update":"2026-03-22T09:22:52.479628895Z"} +2026/03/22 09:22:57 [log_collector] {"stage_name":"log_collector","events_processed":19375,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3875,"last_update":"2026-03-22T09:22:52.368000355Z"} +2026/03/22 09:22:57 ───────────────────────────────────────────────── +2026/03/22 09:22:57 [ANOMALY] time=2026-03-22T09:22:57Z score=0.7998 method=SEAD details=MAD!:w=0.49,s=0.77 RRCF-fast!:w=0.13,s=0.96 RRCF-mid!:w=0.13,s=0.96 RRCF-slow!:w=0.10,s=0.94 COPOD!:w=0.15,s=0.52 +2026/03/22 09:23:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:23:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:22:57.38169823Z"} +2026/03/22 09:23:02 [detection_layer] {"stage_name":"detection_layer","events_processed":402,"events_dropped":0,"avg_latency_ms":18.44701953764278,"throughput_eps":0,"last_update":"2026-03-22T09:22:57.479095628Z"} +2026/03/22 09:23:02 [transform_engine] {"stage_name":"transform_engine","events_processed":403,"events_dropped":0,"avg_latency_ms":203.8281688355583,"throughput_eps":0,"last_update":"2026-03-22T09:22:57.674599249Z"} +2026/03/22 09:23:02 [log_collector] {"stage_name":"log_collector","events_processed":19375,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3875,"last_update":"2026-03-22T09:22:57.370252552Z"} +2026/03/22 09:23:02 [metric_collector] {"stage_name":"metric_collector","events_processed":12089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2417.8,"last_update":"2026-03-22T09:22:57.370529332Z"} +2026/03/22 09:23:02 ───────────────────────────────────────────────── +2026/03/22 09:23:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:23:07 [transform_engine] {"stage_name":"transform_engine","events_processed":403,"events_dropped":0,"avg_latency_ms":203.8281688355583,"throughput_eps":0,"last_update":"2026-03-22T09:23:02.47907294Z"} +2026/03/22 09:23:07 [log_collector] {"stage_name":"log_collector","events_processed":19375,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3875,"last_update":"2026-03-22T09:23:02.367980585Z"} +2026/03/22 09:23:07 [metric_collector] {"stage_name":"metric_collector","events_processed":12094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2418.8,"last_update":"2026-03-22T09:23:02.368735311Z"} +2026/03/22 09:23:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:23:02.380858056Z"} +2026/03/22 09:23:07 [detection_layer] {"stage_name":"detection_layer","events_processed":403,"events_dropped":0,"avg_latency_ms":17.371269030114227,"throughput_eps":0,"last_update":"2026-03-22T09:23:02.479060846Z"} +2026/03/22 09:23:07 ───────────────────────────────────────────────── +2026/03/22 09:23:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:23:12 [log_collector] {"stage_name":"log_collector","events_processed":19375,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3875,"last_update":"2026-03-22T09:23:07.36827272Z"} +2026/03/22 09:23:12 [metric_collector] {"stage_name":"metric_collector","events_processed":12099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2419.8,"last_update":"2026-03-22T09:23:07.3687318Z"} +2026/03/22 09:23:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:23:07.375579944Z"} +2026/03/22 09:23:12 [detection_layer] {"stage_name":"detection_layer","events_processed":403,"events_dropped":0,"avg_latency_ms":17.371269030114227,"throughput_eps":0,"last_update":"2026-03-22T09:23:07.479689736Z"} +2026/03/22 09:23:12 [transform_engine] {"stage_name":"transform_engine","events_processed":403,"events_dropped":0,"avg_latency_ms":203.8281688355583,"throughput_eps":0,"last_update":"2026-03-22T09:23:07.479702651Z"} +2026/03/22 09:23:12 ───────────────────────────────────────────────── +2026/03/22 09:23:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:23:17 [log_collector] {"stage_name":"log_collector","events_processed":19378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3875.6,"last_update":"2026-03-22T09:23:12.368026715Z"} +2026/03/22 09:23:17 [metric_collector] {"stage_name":"metric_collector","events_processed":12104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2420.8,"last_update":"2026-03-22T09:23:12.36837382Z"} +2026/03/22 09:23:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:23:12.375303931Z"} +2026/03/22 09:23:17 [detection_layer] {"stage_name":"detection_layer","events_processed":403,"events_dropped":0,"avg_latency_ms":17.371269030114227,"throughput_eps":0,"last_update":"2026-03-22T09:23:12.479518775Z"} +2026/03/22 09:23:17 [transform_engine] {"stage_name":"transform_engine","events_processed":403,"events_dropped":0,"avg_latency_ms":203.8281688355583,"throughput_eps":0,"last_update":"2026-03-22T09:23:12.479528624Z"} +2026/03/22 09:23:17 ───────────────────────────────────────────────── +2026/03/22 09:23:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:23:22 [log_collector] {"stage_name":"log_collector","events_processed":19481,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3896.2,"last_update":"2026-03-22T09:23:17.368246862Z"} +2026/03/22 09:23:22 [metric_collector] {"stage_name":"metric_collector","events_processed":12109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2421.8,"last_update":"2026-03-22T09:23:17.368437697Z"} +2026/03/22 09:23:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:23:17.37481018Z"} +2026/03/22 09:23:22 [detection_layer] {"stage_name":"detection_layer","events_processed":403,"events_dropped":0,"avg_latency_ms":17.371269030114227,"throughput_eps":0,"last_update":"2026-03-22T09:23:17.47975887Z"} +2026/03/22 09:23:22 [transform_engine] {"stage_name":"transform_engine","events_processed":403,"events_dropped":0,"avg_latency_ms":203.8281688355583,"throughput_eps":0,"last_update":"2026-03-22T09:23:17.479782506Z"} +2026/03/22 09:23:22 ───────────────────────────────────────────────── +2026/03/22 09:23:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:23:27 [transform_engine] {"stage_name":"transform_engine","events_processed":403,"events_dropped":0,"avg_latency_ms":203.8281688355583,"throughput_eps":0,"last_update":"2026-03-22T09:23:22.47983484Z"} +2026/03/22 09:23:27 [log_collector] {"stage_name":"log_collector","events_processed":19737,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3947.4,"last_update":"2026-03-22T09:23:27.368687764Z"} +2026/03/22 09:23:27 [metric_collector] {"stage_name":"metric_collector","events_processed":12114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2422.8,"last_update":"2026-03-22T09:23:22.368537032Z"} +2026/03/22 09:23:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4848,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:23:22.375027671Z"} +2026/03/22 09:23:27 [detection_layer] {"stage_name":"detection_layer","events_processed":403,"events_dropped":0,"avg_latency_ms":17.371269030114227,"throughput_eps":0,"last_update":"2026-03-22T09:23:22.479856392Z"} +2026/03/22 09:23:27 ───────────────────────────────────────────────── +2026/03/22 09:23:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:23:32 [log_collector] {"stage_name":"log_collector","events_processed":19737,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3947.4,"last_update":"2026-03-22T09:23:27.368687764Z"} +2026/03/22 09:23:32 [metric_collector] {"stage_name":"metric_collector","events_processed":12119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2423.8,"last_update":"2026-03-22T09:23:27.368995823Z"} +2026/03/22 09:23:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:23:27.374849824Z"} +2026/03/22 09:23:32 [detection_layer] {"stage_name":"detection_layer","events_processed":403,"events_dropped":0,"avg_latency_ms":17.371269030114227,"throughput_eps":0,"last_update":"2026-03-22T09:23:27.479284319Z"} +2026/03/22 09:23:32 [transform_engine] {"stage_name":"transform_engine","events_processed":404,"events_dropped":0,"avg_latency_ms":184.80944506844668,"throughput_eps":0,"last_update":"2026-03-22T09:23:27.587964647Z"} +2026/03/22 09:23:32 ───────────────────────────────────────────────── +2026/03/22 09:23:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:23:37 [transform_engine] {"stage_name":"transform_engine","events_processed":404,"events_dropped":0,"avg_latency_ms":184.80944506844668,"throughput_eps":0,"last_update":"2026-03-22T09:23:32.479571002Z"} +2026/03/22 09:23:37 [log_collector] {"stage_name":"log_collector","events_processed":19737,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3947.4,"last_update":"2026-03-22T09:23:32.368002084Z"} +2026/03/22 09:23:37 [metric_collector] {"stage_name":"metric_collector","events_processed":12124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2424.8,"last_update":"2026-03-22T09:23:32.368296056Z"} +2026/03/22 09:23:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:23:32.377295872Z"} +2026/03/22 09:23:37 [detection_layer] {"stage_name":"detection_layer","events_processed":404,"events_dropped":0,"avg_latency_ms":17.062661624091383,"throughput_eps":0,"last_update":"2026-03-22T09:23:32.479557667Z"} +2026/03/22 09:23:37 ───────────────────────────────────────────────── +2026/03/22 09:23:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:23:42 [metric_collector] {"stage_name":"metric_collector","events_processed":12129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2425.8,"last_update":"2026-03-22T09:23:37.368497483Z"} +2026/03/22 09:23:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:23:37.375637787Z"} +2026/03/22 09:23:42 [detection_layer] {"stage_name":"detection_layer","events_processed":404,"events_dropped":0,"avg_latency_ms":17.062661624091383,"throughput_eps":0,"last_update":"2026-03-22T09:23:37.479883743Z"} +2026/03/22 09:23:42 [transform_engine] {"stage_name":"transform_engine","events_processed":404,"events_dropped":0,"avg_latency_ms":184.80944506844668,"throughput_eps":0,"last_update":"2026-03-22T09:23:37.479896768Z"} +2026/03/22 09:23:42 [log_collector] {"stage_name":"log_collector","events_processed":19737,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3947.4,"last_update":"2026-03-22T09:23:37.368058011Z"} +2026/03/22 09:23:42 ───────────────────────────────────────────────── +2026/03/22 09:23:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:23:47 [log_collector] {"stage_name":"log_collector","events_processed":19737,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3947.4,"last_update":"2026-03-22T09:23:42.368971071Z"} +2026/03/22 09:23:47 [metric_collector] {"stage_name":"metric_collector","events_processed":12133,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2426.6,"last_update":"2026-03-22T09:23:42.368916968Z"} +2026/03/22 09:23:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:23:42.376473739Z"} +2026/03/22 09:23:47 [detection_layer] {"stage_name":"detection_layer","events_processed":404,"events_dropped":0,"avg_latency_ms":17.062661624091383,"throughput_eps":0,"last_update":"2026-03-22T09:23:42.478973221Z"} +2026/03/22 09:23:47 [transform_engine] {"stage_name":"transform_engine","events_processed":404,"events_dropped":0,"avg_latency_ms":184.80944506844668,"throughput_eps":0,"last_update":"2026-03-22T09:23:42.479027124Z"} +2026/03/22 09:23:47 ───────────────────────────────────────────────── +2026/03/22 09:23:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:23:52 [metric_collector] {"stage_name":"metric_collector","events_processed":12139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2427.8,"last_update":"2026-03-22T09:23:47.368521461Z"} +2026/03/22 09:23:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:23:47.377686403Z"} +2026/03/22 09:23:52 [detection_layer] {"stage_name":"detection_layer","events_processed":404,"events_dropped":0,"avg_latency_ms":17.062661624091383,"throughput_eps":0,"last_update":"2026-03-22T09:23:47.479913182Z"} +2026/03/22 09:23:52 [transform_engine] {"stage_name":"transform_engine","events_processed":404,"events_dropped":0,"avg_latency_ms":184.80944506844668,"throughput_eps":0,"last_update":"2026-03-22T09:23:47.478822843Z"} +2026/03/22 09:23:52 [log_collector] {"stage_name":"log_collector","events_processed":19737,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3947.4,"last_update":"2026-03-22T09:23:47.368185188Z"} +2026/03/22 09:23:52 ───────────────────────────────────────────────── +2026/03/22 09:23:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:23:57 [log_collector] {"stage_name":"log_collector","events_processed":19737,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3947.4,"last_update":"2026-03-22T09:23:57.368545482Z"} +2026/03/22 09:23:57 [metric_collector] {"stage_name":"metric_collector","events_processed":12144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2428.8,"last_update":"2026-03-22T09:23:52.368625929Z"} +2026/03/22 09:23:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4860,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:23:52.377700197Z"} +2026/03/22 09:23:57 [detection_layer] {"stage_name":"detection_layer","events_processed":404,"events_dropped":0,"avg_latency_ms":17.062661624091383,"throughput_eps":0,"last_update":"2026-03-22T09:23:52.479990007Z"} +2026/03/22 09:23:57 [transform_engine] {"stage_name":"transform_engine","events_processed":404,"events_dropped":0,"avg_latency_ms":184.80944506844668,"throughput_eps":0,"last_update":"2026-03-22T09:23:52.478847349Z"} +2026/03/22 09:23:57 ───────────────────────────────────────────────── +2026/03/22 09:24:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:24:02 [log_collector] {"stage_name":"log_collector","events_processed":19737,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3947.4,"last_update":"2026-03-22T09:23:57.368545482Z"} +2026/03/22 09:24:02 [metric_collector] {"stage_name":"metric_collector","events_processed":12149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2429.8,"last_update":"2026-03-22T09:23:57.369120953Z"} +2026/03/22 09:24:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4862,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:23:57.379556418Z"} +2026/03/22 09:24:02 [detection_layer] {"stage_name":"detection_layer","events_processed":404,"events_dropped":0,"avg_latency_ms":17.062661624091383,"throughput_eps":0,"last_update":"2026-03-22T09:23:57.479776786Z"} +2026/03/22 09:24:02 [transform_engine] {"stage_name":"transform_engine","events_processed":405,"events_dropped":0,"avg_latency_ms":162.59565125475734,"throughput_eps":0,"last_update":"2026-03-22T09:23:57.553532181Z"} +2026/03/22 09:24:02 ───────────────────────────────────────────────── +2026/03/22 09:24:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:24:07 [log_collector] {"stage_name":"log_collector","events_processed":19737,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3947.4,"last_update":"2026-03-22T09:24:07.368403095Z"} +2026/03/22 09:24:07 [metric_collector] {"stage_name":"metric_collector","events_processed":12154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2430.8,"last_update":"2026-03-22T09:24:02.368680093Z"} +2026/03/22 09:24:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:24:02.380423032Z"} +2026/03/22 09:24:07 [detection_layer] {"stage_name":"detection_layer","events_processed":405,"events_dropped":0,"avg_latency_ms":18.188931299273108,"throughput_eps":0,"last_update":"2026-03-22T09:24:02.479684684Z"} +2026/03/22 09:24:07 [transform_engine] {"stage_name":"transform_engine","events_processed":405,"events_dropped":0,"avg_latency_ms":162.59565125475734,"throughput_eps":0,"last_update":"2026-03-22T09:24:02.479696717Z"} +2026/03/22 09:24:07 ───────────────────────────────────────────────── +2026/03/22 09:24:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:24:12 [log_collector] {"stage_name":"log_collector","events_processed":19737,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3947.4,"last_update":"2026-03-22T09:24:07.368403095Z"} +2026/03/22 09:24:12 [metric_collector] {"stage_name":"metric_collector","events_processed":12159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2431.8,"last_update":"2026-03-22T09:24:07.368936296Z"} +2026/03/22 09:24:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:24:07.37826989Z"} +2026/03/22 09:24:12 [detection_layer] {"stage_name":"detection_layer","events_processed":405,"events_dropped":0,"avg_latency_ms":18.188931299273108,"throughput_eps":0,"last_update":"2026-03-22T09:24:07.479509581Z"} +2026/03/22 09:24:12 [transform_engine] {"stage_name":"transform_engine","events_processed":405,"events_dropped":0,"avg_latency_ms":162.59565125475734,"throughput_eps":0,"last_update":"2026-03-22T09:24:07.47952457Z"} +2026/03/22 09:24:12 ───────────────────────────────────────────────── +2026/03/22 09:24:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:24:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4868,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:24:12.380087692Z"} +2026/03/22 09:24:17 [detection_layer] {"stage_name":"detection_layer","events_processed":405,"events_dropped":0,"avg_latency_ms":18.188931299273108,"throughput_eps":0,"last_update":"2026-03-22T09:24:12.479456129Z"} +2026/03/22 09:24:17 [transform_engine] {"stage_name":"transform_engine","events_processed":405,"events_dropped":0,"avg_latency_ms":162.59565125475734,"throughput_eps":0,"last_update":"2026-03-22T09:24:12.479473783Z"} +2026/03/22 09:24:17 [log_collector] {"stage_name":"log_collector","events_processed":19737,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3947.4,"last_update":"2026-03-22T09:24:12.369042921Z"} +2026/03/22 09:24:17 [metric_collector] {"stage_name":"metric_collector","events_processed":12164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2432.8,"last_update":"2026-03-22T09:24:12.369571834Z"} +2026/03/22 09:24:17 ───────────────────────────────────────────────── +2026/03/22 09:24:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:24:22 [detection_layer] {"stage_name":"detection_layer","events_processed":405,"events_dropped":0,"avg_latency_ms":18.188931299273108,"throughput_eps":0,"last_update":"2026-03-22T09:24:17.479672672Z"} +2026/03/22 09:24:22 [transform_engine] {"stage_name":"transform_engine","events_processed":405,"events_dropped":0,"avg_latency_ms":162.59565125475734,"throughput_eps":0,"last_update":"2026-03-22T09:24:17.479688563Z"} +2026/03/22 09:24:22 [log_collector] {"stage_name":"log_collector","events_processed":19737,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3947.4,"last_update":"2026-03-22T09:24:17.368443661Z"} +2026/03/22 09:24:22 [metric_collector] {"stage_name":"metric_collector","events_processed":12169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2433.8,"last_update":"2026-03-22T09:24:17.368931476Z"} +2026/03/22 09:24:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:24:17.37815554Z"} +2026/03/22 09:24:22 ───────────────────────────────────────────────── +2026/03/22 09:24:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:24:27 [metric_collector] {"stage_name":"metric_collector","events_processed":12174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2434.8,"last_update":"2026-03-22T09:24:22.368796453Z"} +2026/03/22 09:24:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:24:22.37813115Z"} +2026/03/22 09:24:27 [detection_layer] {"stage_name":"detection_layer","events_processed":405,"events_dropped":0,"avg_latency_ms":18.188931299273108,"throughput_eps":0,"last_update":"2026-03-22T09:24:22.479397282Z"} +2026/03/22 09:24:27 [transform_engine] {"stage_name":"transform_engine","events_processed":405,"events_dropped":0,"avg_latency_ms":162.59565125475734,"throughput_eps":0,"last_update":"2026-03-22T09:24:22.479412351Z"} +2026/03/22 09:24:27 [log_collector] {"stage_name":"log_collector","events_processed":19737,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3947.4,"last_update":"2026-03-22T09:24:22.367981693Z"} +2026/03/22 09:24:27 ───────────────────────────────────────────────── +2026/03/22 09:24:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:24:32 [detection_layer] {"stage_name":"detection_layer","events_processed":405,"events_dropped":0,"avg_latency_ms":18.188931299273108,"throughput_eps":0,"last_update":"2026-03-22T09:24:27.479380634Z"} +2026/03/22 09:24:32 [transform_engine] {"stage_name":"transform_engine","events_processed":406,"events_dropped":0,"avg_latency_ms":144.71189300380587,"throughput_eps":0,"last_update":"2026-03-22T09:24:27.552573023Z"} +2026/03/22 09:24:32 [log_collector] {"stage_name":"log_collector","events_processed":19737,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3947.4,"last_update":"2026-03-22T09:24:27.36863091Z"} +2026/03/22 09:24:32 [metric_collector] {"stage_name":"metric_collector","events_processed":12179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2435.8,"last_update":"2026-03-22T09:24:27.369077514Z"} +2026/03/22 09:24:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:24:27.3781401Z"} +2026/03/22 09:24:32 ───────────────────────────────────────────────── +2026/03/22 09:24:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:24:37 [log_collector] {"stage_name":"log_collector","events_processed":19737,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3947.4,"last_update":"2026-03-22T09:24:32.368956373Z"} +2026/03/22 09:24:37 [metric_collector] {"stage_name":"metric_collector","events_processed":12184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2436.8,"last_update":"2026-03-22T09:24:32.369607609Z"} +2026/03/22 09:24:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4876,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:24:32.383819797Z"} +2026/03/22 09:24:37 [detection_layer] {"stage_name":"detection_layer","events_processed":406,"events_dropped":0,"avg_latency_ms":18.876692839418485,"throughput_eps":0,"last_update":"2026-03-22T09:24:32.479174379Z"} +2026/03/22 09:24:37 [transform_engine] {"stage_name":"transform_engine","events_processed":406,"events_dropped":0,"avg_latency_ms":144.71189300380587,"throughput_eps":0,"last_update":"2026-03-22T09:24:32.479190951Z"} +2026/03/22 09:24:37 ───────────────────────────────────────────────── +2026/03/22 09:24:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:24:42 [log_collector] {"stage_name":"log_collector","events_processed":19737,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3947.4,"last_update":"2026-03-22T09:24:37.368104437Z"} +2026/03/22 09:24:42 [metric_collector] {"stage_name":"metric_collector","events_processed":12189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2437.8,"last_update":"2026-03-22T09:24:37.368637729Z"} +2026/03/22 09:24:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:24:37.377775198Z"} +2026/03/22 09:24:42 [detection_layer] {"stage_name":"detection_layer","events_processed":406,"events_dropped":0,"avg_latency_ms":18.876692839418485,"throughput_eps":0,"last_update":"2026-03-22T09:24:37.47910333Z"} +2026/03/22 09:24:42 [transform_engine] {"stage_name":"transform_engine","events_processed":406,"events_dropped":0,"avg_latency_ms":144.71189300380587,"throughput_eps":0,"last_update":"2026-03-22T09:24:37.479117267Z"} +2026/03/22 09:24:42 ───────────────────────────────────────────────── +2026/03/22 09:24:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:24:47 [log_collector] {"stage_name":"log_collector","events_processed":19737,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3947.4,"last_update":"2026-03-22T09:24:42.368441717Z"} +2026/03/22 09:24:47 [metric_collector] {"stage_name":"metric_collector","events_processed":12194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2438.8,"last_update":"2026-03-22T09:24:42.368780847Z"} +2026/03/22 09:24:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:24:42.37881321Z"} +2026/03/22 09:24:47 [detection_layer] {"stage_name":"detection_layer","events_processed":406,"events_dropped":0,"avg_latency_ms":18.876692839418485,"throughput_eps":0,"last_update":"2026-03-22T09:24:42.479021558Z"} +2026/03/22 09:24:47 [transform_engine] {"stage_name":"transform_engine","events_processed":406,"events_dropped":0,"avg_latency_ms":144.71189300380587,"throughput_eps":0,"last_update":"2026-03-22T09:24:42.479038891Z"} +2026/03/22 09:24:47 ───────────────────────────────────────────────── +2026/03/22 09:24:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:24:52 [detection_layer] {"stage_name":"detection_layer","events_processed":406,"events_dropped":0,"avg_latency_ms":18.876692839418485,"throughput_eps":0,"last_update":"2026-03-22T09:24:47.47898583Z"} +2026/03/22 09:24:52 [transform_engine] {"stage_name":"transform_engine","events_processed":406,"events_dropped":0,"avg_latency_ms":144.71189300380587,"throughput_eps":0,"last_update":"2026-03-22T09:24:47.478873455Z"} +2026/03/22 09:24:52 [log_collector] {"stage_name":"log_collector","events_processed":19737,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3947.4,"last_update":"2026-03-22T09:24:47.368556227Z"} +2026/03/22 09:24:52 [metric_collector] {"stage_name":"metric_collector","events_processed":12199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2439.8,"last_update":"2026-03-22T09:24:47.369108454Z"} +2026/03/22 09:24:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:24:47.379728894Z"} +2026/03/22 09:24:52 ───────────────────────────────────────────────── +2026/03/22 09:24:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:24:57 [log_collector] {"stage_name":"log_collector","events_processed":19737,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3947.4,"last_update":"2026-03-22T09:24:52.368961119Z"} +2026/03/22 09:24:57 [metric_collector] {"stage_name":"metric_collector","events_processed":12204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2440.8,"last_update":"2026-03-22T09:24:52.369344343Z"} +2026/03/22 09:24:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:24:52.378158653Z"} +2026/03/22 09:24:57 [detection_layer] {"stage_name":"detection_layer","events_processed":406,"events_dropped":0,"avg_latency_ms":18.876692839418485,"throughput_eps":0,"last_update":"2026-03-22T09:24:52.479548816Z"} +2026/03/22 09:24:57 [transform_engine] {"stage_name":"transform_engine","events_processed":406,"events_dropped":0,"avg_latency_ms":144.71189300380587,"throughput_eps":0,"last_update":"2026-03-22T09:24:52.479663275Z"} +2026/03/22 09:24:57 ───────────────────────────────────────────────── +Saved state: 13 clusters, 19738 messages, reason: none +2026/03/22 09:25:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:25:02 [detection_layer] {"stage_name":"detection_layer","events_processed":406,"events_dropped":0,"avg_latency_ms":18.876692839418485,"throughput_eps":0,"last_update":"2026-03-22T09:24:57.479529562Z"} +2026/03/22 09:25:02 [transform_engine] {"stage_name":"transform_engine","events_processed":406,"events_dropped":0,"avg_latency_ms":144.71189300380587,"throughput_eps":0,"last_update":"2026-03-22T09:24:57.479474217Z"} +2026/03/22 09:25:02 [log_collector] {"stage_name":"log_collector","events_processed":19740,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3948,"last_update":"2026-03-22T09:25:02.368647672Z"} +2026/03/22 09:25:02 [metric_collector] {"stage_name":"metric_collector","events_processed":12214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2442.8,"last_update":"2026-03-22T09:25:02.369038692Z"} +2026/03/22 09:25:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4886,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:24:57.378162665Z"} +2026/03/22 09:25:02 ───────────────────────────────────────────────── +2026/03/22 09:25:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:25:07 [log_collector] {"stage_name":"log_collector","events_processed":19740,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3948,"last_update":"2026-03-22T09:25:02.368647672Z"} +2026/03/22 09:25:07 [metric_collector] {"stage_name":"metric_collector","events_processed":12214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2442.8,"last_update":"2026-03-22T09:25:02.369038692Z"} +2026/03/22 09:25:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:25:02.377370718Z"} +2026/03/22 09:25:07 [detection_layer] {"stage_name":"detection_layer","events_processed":407,"events_dropped":0,"avg_latency_ms":19.18787627153479,"throughput_eps":0,"last_update":"2026-03-22T09:25:02.479985266Z"} +2026/03/22 09:25:07 [transform_engine] {"stage_name":"transform_engine","events_processed":407,"events_dropped":0,"avg_latency_ms":130.3170066030447,"throughput_eps":0,"last_update":"2026-03-22T09:25:02.47888601Z"} +2026/03/22 09:25:07 ───────────────────────────────────────────────── +2026/03/22 09:25:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:25:12 [transform_engine] {"stage_name":"transform_engine","events_processed":407,"events_dropped":0,"avg_latency_ms":130.3170066030447,"throughput_eps":0,"last_update":"2026-03-22T09:25:07.479245886Z"} +2026/03/22 09:25:12 [log_collector] {"stage_name":"log_collector","events_processed":19740,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3948,"last_update":"2026-03-22T09:25:07.368011921Z"} +2026/03/22 09:25:12 [metric_collector] {"stage_name":"metric_collector","events_processed":12219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2443.8,"last_update":"2026-03-22T09:25:07.368411716Z"} +2026/03/22 09:25:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:25:07.374132342Z"} +2026/03/22 09:25:12 [detection_layer] {"stage_name":"detection_layer","events_processed":407,"events_dropped":0,"avg_latency_ms":19.18787627153479,"throughput_eps":0,"last_update":"2026-03-22T09:25:07.479266004Z"} +2026/03/22 09:25:12 ───────────────────────────────────────────────── +2026/03/22 09:25:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:25:17 [log_collector] {"stage_name":"log_collector","events_processed":19751,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3950.2,"last_update":"2026-03-22T09:25:12.368939248Z"} +2026/03/22 09:25:17 [metric_collector] {"stage_name":"metric_collector","events_processed":12224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2444.8,"last_update":"2026-03-22T09:25:12.369229854Z"} +2026/03/22 09:25:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4892,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:25:12.375835175Z"} +2026/03/22 09:25:17 [detection_layer] {"stage_name":"detection_layer","events_processed":407,"events_dropped":0,"avg_latency_ms":19.18787627153479,"throughput_eps":0,"last_update":"2026-03-22T09:25:12.479049392Z"} +2026/03/22 09:25:17 [transform_engine] {"stage_name":"transform_engine","events_processed":407,"events_dropped":0,"avg_latency_ms":130.3170066030447,"throughput_eps":0,"last_update":"2026-03-22T09:25:12.47913194Z"} +2026/03/22 09:25:17 ───────────────────────────────────────────────── +2026/03/22 09:25:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:25:22 [metric_collector] {"stage_name":"metric_collector","events_processed":12229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2445.8,"last_update":"2026-03-22T09:25:17.368768807Z"} +2026/03/22 09:25:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:25:17.376777234Z"} +2026/03/22 09:25:22 [detection_layer] {"stage_name":"detection_layer","events_processed":407,"events_dropped":0,"avg_latency_ms":19.18787627153479,"throughput_eps":0,"last_update":"2026-03-22T09:25:17.479017558Z"} +2026/03/22 09:25:22 [transform_engine] {"stage_name":"transform_engine","events_processed":407,"events_dropped":0,"avg_latency_ms":130.3170066030447,"throughput_eps":0,"last_update":"2026-03-22T09:25:17.478979264Z"} +2026/03/22 09:25:22 [log_collector] {"stage_name":"log_collector","events_processed":19765,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3953,"last_update":"2026-03-22T09:25:17.368252399Z"} +2026/03/22 09:25:22 ───────────────────────────────────────────────── +2026/03/22 09:25:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:25:27 [log_collector] {"stage_name":"log_collector","events_processed":19781,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3956.2,"last_update":"2026-03-22T09:25:22.368403881Z"} +2026/03/22 09:25:27 [metric_collector] {"stage_name":"metric_collector","events_processed":12234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2446.8,"last_update":"2026-03-22T09:25:22.368842803Z"} +2026/03/22 09:25:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4896,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:25:22.375916039Z"} +2026/03/22 09:25:27 [detection_layer] {"stage_name":"detection_layer","events_processed":407,"events_dropped":0,"avg_latency_ms":19.18787627153479,"throughput_eps":0,"last_update":"2026-03-22T09:25:22.479219747Z"} +2026/03/22 09:25:27 [transform_engine] {"stage_name":"transform_engine","events_processed":407,"events_dropped":0,"avg_latency_ms":130.3170066030447,"throughput_eps":0,"last_update":"2026-03-22T09:25:22.479326672Z"} +2026/03/22 09:25:27 ───────────────────────────────────────────────── +2026/03/22 09:25:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:25:32 [transform_engine] {"stage_name":"transform_engine","events_processed":407,"events_dropped":0,"avg_latency_ms":130.3170066030447,"throughput_eps":0,"last_update":"2026-03-22T09:25:27.479559405Z"} +2026/03/22 09:25:32 [log_collector] {"stage_name":"log_collector","events_processed":19781,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3956.2,"last_update":"2026-03-22T09:25:27.368244023Z"} +2026/03/22 09:25:32 [metric_collector] {"stage_name":"metric_collector","events_processed":12244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2448.8,"last_update":"2026-03-22T09:25:32.368269557Z"} +2026/03/22 09:25:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4898,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:25:27.377300598Z"} +2026/03/22 09:25:32 [detection_layer] {"stage_name":"detection_layer","events_processed":407,"events_dropped":0,"avg_latency_ms":19.18787627153479,"throughput_eps":0,"last_update":"2026-03-22T09:25:27.479600895Z"} +2026/03/22 09:25:32 ───────────────────────────────────────────────── +2026/03/22 09:25:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:25:37 [transform_engine] {"stage_name":"transform_engine","events_processed":408,"events_dropped":0,"avg_latency_ms":129.06092448243575,"throughput_eps":0,"last_update":"2026-03-22T09:25:32.47911028Z"} +2026/03/22 09:25:37 [log_collector] {"stage_name":"log_collector","events_processed":19781,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3956.2,"last_update":"2026-03-22T09:25:37.368579919Z"} +2026/03/22 09:25:37 [metric_collector] {"stage_name":"metric_collector","events_processed":12244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2448.8,"last_update":"2026-03-22T09:25:32.368269557Z"} +2026/03/22 09:25:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4900,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:25:32.377850395Z"} +2026/03/22 09:25:37 [detection_layer] {"stage_name":"detection_layer","events_processed":408,"events_dropped":0,"avg_latency_ms":19.532260017227834,"throughput_eps":0,"last_update":"2026-03-22T09:25:32.479157429Z"} +2026/03/22 09:25:37 ───────────────────────────────────────────────── +2026/03/22 09:25:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:25:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:25:37.378650394Z"} +2026/03/22 09:25:42 [detection_layer] {"stage_name":"detection_layer","events_processed":408,"events_dropped":0,"avg_latency_ms":19.532260017227834,"throughput_eps":0,"last_update":"2026-03-22T09:25:37.480018507Z"} +2026/03/22 09:25:42 [transform_engine] {"stage_name":"transform_engine","events_processed":408,"events_dropped":0,"avg_latency_ms":129.06092448243575,"throughput_eps":0,"last_update":"2026-03-22T09:25:37.478847374Z"} +2026/03/22 09:25:42 [log_collector] {"stage_name":"log_collector","events_processed":19781,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3956.2,"last_update":"2026-03-22T09:25:42.368013606Z"} +2026/03/22 09:25:42 [metric_collector] {"stage_name":"metric_collector","events_processed":12249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2449.8,"last_update":"2026-03-22T09:25:37.369333291Z"} +2026/03/22 09:25:42 ───────────────────────────────────────────────── +2026/03/22 09:25:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:25:47 [log_collector] {"stage_name":"log_collector","events_processed":19781,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3956.2,"last_update":"2026-03-22T09:25:42.368013606Z"} +2026/03/22 09:25:47 [metric_collector] {"stage_name":"metric_collector","events_processed":12254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2450.8,"last_update":"2026-03-22T09:25:42.368589579Z"} +2026/03/22 09:25:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:25:42.377741777Z"} +2026/03/22 09:25:47 [detection_layer] {"stage_name":"detection_layer","events_processed":408,"events_dropped":0,"avg_latency_ms":19.532260017227834,"throughput_eps":0,"last_update":"2026-03-22T09:25:42.478949172Z"} +2026/03/22 09:25:47 [transform_engine] {"stage_name":"transform_engine","events_processed":408,"events_dropped":0,"avg_latency_ms":129.06092448243575,"throughput_eps":0,"last_update":"2026-03-22T09:25:42.478934214Z"} +2026/03/22 09:25:47 ───────────────────────────────────────────────── +2026/03/22 09:25:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:25:52 [log_collector] {"stage_name":"log_collector","events_processed":19781,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3956.2,"last_update":"2026-03-22T09:25:47.36859538Z"} +2026/03/22 09:25:52 [metric_collector] {"stage_name":"metric_collector","events_processed":12259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2451.8,"last_update":"2026-03-22T09:25:47.369163217Z"} +2026/03/22 09:25:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4906,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:25:47.378937115Z"} +2026/03/22 09:25:52 [detection_layer] {"stage_name":"detection_layer","events_processed":408,"events_dropped":0,"avg_latency_ms":19.532260017227834,"throughput_eps":0,"last_update":"2026-03-22T09:25:47.479175334Z"} +2026/03/22 09:25:52 [transform_engine] {"stage_name":"transform_engine","events_processed":408,"events_dropped":0,"avg_latency_ms":129.06092448243575,"throughput_eps":0,"last_update":"2026-03-22T09:25:47.479237252Z"} +2026/03/22 09:25:52 ───────────────────────────────────────────────── +2026/03/22 09:25:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:25:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4908,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:25:52.376811776Z"} +2026/03/22 09:25:57 [detection_layer] {"stage_name":"detection_layer","events_processed":408,"events_dropped":0,"avg_latency_ms":19.532260017227834,"throughput_eps":0,"last_update":"2026-03-22T09:25:52.478995432Z"} +2026/03/22 09:25:57 [transform_engine] {"stage_name":"transform_engine","events_processed":408,"events_dropped":0,"avg_latency_ms":129.06092448243575,"throughput_eps":0,"last_update":"2026-03-22T09:25:52.478940718Z"} +2026/03/22 09:25:57 [log_collector] {"stage_name":"log_collector","events_processed":19781,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3956.2,"last_update":"2026-03-22T09:25:52.368171629Z"} +2026/03/22 09:25:57 [metric_collector] {"stage_name":"metric_collector","events_processed":12264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2452.8,"last_update":"2026-03-22T09:25:52.368647661Z"} +2026/03/22 09:25:57 ───────────────────────────────────────────────── +2026/03/22 09:26:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:26:02 [log_collector] {"stage_name":"log_collector","events_processed":19781,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3956.2,"last_update":"2026-03-22T09:25:57.368074492Z"} +2026/03/22 09:26:02 [metric_collector] {"stage_name":"metric_collector","events_processed":12269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2453.8,"last_update":"2026-03-22T09:25:57.368685542Z"} +2026/03/22 09:26:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:25:57.376965649Z"} +2026/03/22 09:26:02 [detection_layer] {"stage_name":"detection_layer","events_processed":408,"events_dropped":0,"avg_latency_ms":19.532260017227834,"throughput_eps":0,"last_update":"2026-03-22T09:25:57.479219188Z"} +2026/03/22 09:26:02 [transform_engine] {"stage_name":"transform_engine","events_processed":408,"events_dropped":0,"avg_latency_ms":129.06092448243575,"throughput_eps":0,"last_update":"2026-03-22T09:25:57.479171357Z"} +2026/03/22 09:26:02 ───────────────────────────────────────────────── +2026/03/22 09:26:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:26:07 [transform_engine] {"stage_name":"transform_engine","events_processed":409,"events_dropped":0,"avg_latency_ms":119.42655858594861,"throughput_eps":0,"last_update":"2026-03-22T09:26:02.479911927Z"} +2026/03/22 09:26:07 [log_collector] {"stage_name":"log_collector","events_processed":19781,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3956.2,"last_update":"2026-03-22T09:26:02.369043769Z"} +2026/03/22 09:26:07 [metric_collector] {"stage_name":"metric_collector","events_processed":12274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2454.8,"last_update":"2026-03-22T09:26:02.369623038Z"} +2026/03/22 09:26:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4912,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:26:02.380605771Z"} +2026/03/22 09:26:07 [detection_layer] {"stage_name":"detection_layer","events_processed":409,"events_dropped":0,"avg_latency_ms":20.05087461378227,"throughput_eps":0,"last_update":"2026-03-22T09:26:02.479901526Z"} +2026/03/22 09:26:07 ───────────────────────────────────────────────── +2026/03/22 09:26:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:26:12 [log_collector] {"stage_name":"log_collector","events_processed":19781,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3956.2,"last_update":"2026-03-22T09:26:07.36798708Z"} +2026/03/22 09:26:12 [metric_collector] {"stage_name":"metric_collector","events_processed":12279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2455.8,"last_update":"2026-03-22T09:26:07.36843579Z"} +2026/03/22 09:26:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:26:07.376899589Z"} +2026/03/22 09:26:12 [detection_layer] {"stage_name":"detection_layer","events_processed":409,"events_dropped":0,"avg_latency_ms":20.05087461378227,"throughput_eps":0,"last_update":"2026-03-22T09:26:07.479185722Z"} +2026/03/22 09:26:12 [transform_engine] {"stage_name":"transform_engine","events_processed":409,"events_dropped":0,"avg_latency_ms":119.42655858594861,"throughput_eps":0,"last_update":"2026-03-22T09:26:07.47919511Z"} +2026/03/22 09:26:12 ───────────────────────────────────────────────── +2026/03/22 09:26:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:26:17 [transform_engine] {"stage_name":"transform_engine","events_processed":409,"events_dropped":0,"avg_latency_ms":119.42655858594861,"throughput_eps":0,"last_update":"2026-03-22T09:26:12.479420242Z"} +2026/03/22 09:26:17 [log_collector] {"stage_name":"log_collector","events_processed":19781,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3956.2,"last_update":"2026-03-22T09:26:17.367976625Z"} +2026/03/22 09:26:17 [metric_collector] {"stage_name":"metric_collector","events_processed":12284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2456.8,"last_update":"2026-03-22T09:26:12.368324998Z"} +2026/03/22 09:26:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:26:12.37809564Z"} +2026/03/22 09:26:17 [detection_layer] {"stage_name":"detection_layer","events_processed":409,"events_dropped":0,"avg_latency_ms":20.05087461378227,"throughput_eps":0,"last_update":"2026-03-22T09:26:12.47940892Z"} +2026/03/22 09:26:17 ───────────────────────────────────────────────── +2026/03/22 09:26:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:26:22 [transform_engine] {"stage_name":"transform_engine","events_processed":409,"events_dropped":0,"avg_latency_ms":119.42655858594861,"throughput_eps":0,"last_update":"2026-03-22T09:26:17.47955273Z"} +2026/03/22 09:26:22 [log_collector] {"stage_name":"log_collector","events_processed":19781,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3956.2,"last_update":"2026-03-22T09:26:17.367976625Z"} +2026/03/22 09:26:22 [metric_collector] {"stage_name":"metric_collector","events_processed":12288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2457.6,"last_update":"2026-03-22T09:26:17.368009097Z"} +2026/03/22 09:26:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4918,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:26:17.379371507Z"} +2026/03/22 09:26:22 [detection_layer] {"stage_name":"detection_layer","events_processed":409,"events_dropped":0,"avg_latency_ms":20.05087461378227,"throughput_eps":0,"last_update":"2026-03-22T09:26:17.47954268Z"} +2026/03/22 09:26:22 ───────────────────────────────────────────────── +Saved state: 13 clusters, 19782 messages, reason: none +2026/03/22 09:26:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:26:27 [transform_engine] {"stage_name":"transform_engine","events_processed":409,"events_dropped":0,"avg_latency_ms":119.42655858594861,"throughput_eps":0,"last_update":"2026-03-22T09:26:22.479453347Z"} +2026/03/22 09:26:27 [log_collector] {"stage_name":"log_collector","events_processed":19781,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3956.2,"last_update":"2026-03-22T09:26:22.368279703Z"} +2026/03/22 09:26:27 [metric_collector] {"stage_name":"metric_collector","events_processed":12293,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2458.6,"last_update":"2026-03-22T09:26:22.367893854Z"} +2026/03/22 09:26:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4920,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:26:22.377188465Z"} +2026/03/22 09:26:27 [detection_layer] {"stage_name":"detection_layer","events_processed":409,"events_dropped":0,"avg_latency_ms":20.05087461378227,"throughput_eps":0,"last_update":"2026-03-22T09:26:22.479439631Z"} +2026/03/22 09:26:27 ───────────────────────────────────────────────── +2026/03/22 09:26:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:26:32 [metric_collector] {"stage_name":"metric_collector","events_processed":12304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2460.8,"last_update":"2026-03-22T09:26:32.368857917Z"} +2026/03/22 09:26:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:26:27.380488035Z"} +2026/03/22 09:26:32 [detection_layer] {"stage_name":"detection_layer","events_processed":409,"events_dropped":0,"avg_latency_ms":20.05087461378227,"throughput_eps":0,"last_update":"2026-03-22T09:26:27.4796423Z"} +2026/03/22 09:26:32 [transform_engine] {"stage_name":"transform_engine","events_processed":410,"events_dropped":0,"avg_latency_ms":115.9637852687589,"throughput_eps":0,"last_update":"2026-03-22T09:26:27.581771864Z"} +2026/03/22 09:26:32 [log_collector] {"stage_name":"log_collector","events_processed":19786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3957.2,"last_update":"2026-03-22T09:26:32.368853047Z"} +2026/03/22 09:26:32 ───────────────────────────────────────────────── +2026/03/22 09:26:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:26:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:26:32.377482745Z"} +2026/03/22 09:26:37 [detection_layer] {"stage_name":"detection_layer","events_processed":410,"events_dropped":0,"avg_latency_ms":18.441980491025816,"throughput_eps":0,"last_update":"2026-03-22T09:26:32.479606157Z"} +2026/03/22 09:26:37 [transform_engine] {"stage_name":"transform_engine","events_processed":410,"events_dropped":0,"avg_latency_ms":115.9637852687589,"throughput_eps":0,"last_update":"2026-03-22T09:26:32.479616155Z"} +2026/03/22 09:26:37 [log_collector] {"stage_name":"log_collector","events_processed":19786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3957.2,"last_update":"2026-03-22T09:26:32.368853047Z"} +2026/03/22 09:26:37 [metric_collector] {"stage_name":"metric_collector","events_processed":12304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2460.8,"last_update":"2026-03-22T09:26:32.368857917Z"} +2026/03/22 09:26:37 ───────────────────────────────────────────────── +2026/03/22 09:26:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:26:42 [detection_layer] {"stage_name":"detection_layer","events_processed":410,"events_dropped":0,"avg_latency_ms":18.441980491025816,"throughput_eps":0,"last_update":"2026-03-22T09:26:37.479841827Z"} +2026/03/22 09:26:42 [transform_engine] {"stage_name":"transform_engine","events_processed":410,"events_dropped":0,"avg_latency_ms":115.9637852687589,"throughput_eps":0,"last_update":"2026-03-22T09:26:37.479860783Z"} +2026/03/22 09:26:42 [log_collector] {"stage_name":"log_collector","events_processed":19786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3957.2,"last_update":"2026-03-22T09:26:37.367957721Z"} +2026/03/22 09:26:42 [metric_collector] {"stage_name":"metric_collector","events_processed":12309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2461.8,"last_update":"2026-03-22T09:26:37.368310788Z"} +2026/03/22 09:26:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:26:37.37462003Z"} +2026/03/22 09:26:42 ───────────────────────────────────────────────── +2026/03/22 09:26:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:26:47 [log_collector] {"stage_name":"log_collector","events_processed":19786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3957.2,"last_update":"2026-03-22T09:26:42.368526892Z"} +2026/03/22 09:26:47 [metric_collector] {"stage_name":"metric_collector","events_processed":12314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2462.8,"last_update":"2026-03-22T09:26:42.368734721Z"} +2026/03/22 09:26:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:26:42.377974196Z"} +2026/03/22 09:26:47 [detection_layer] {"stage_name":"detection_layer","events_processed":410,"events_dropped":0,"avg_latency_ms":18.441980491025816,"throughput_eps":0,"last_update":"2026-03-22T09:26:42.479386838Z"} +2026/03/22 09:26:47 [transform_engine] {"stage_name":"transform_engine","events_processed":410,"events_dropped":0,"avg_latency_ms":115.9637852687589,"throughput_eps":0,"last_update":"2026-03-22T09:26:42.479395033Z"} +2026/03/22 09:26:47 ───────────────────────────────────────────────── +2026/03/22 09:26:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:26:52 [log_collector] {"stage_name":"log_collector","events_processed":19786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3957.2,"last_update":"2026-03-22T09:26:47.367957065Z"} +2026/03/22 09:26:52 [metric_collector] {"stage_name":"metric_collector","events_processed":12319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2463.8,"last_update":"2026-03-22T09:26:47.368345219Z"} +2026/03/22 09:26:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4930,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:26:47.37550472Z"} +2026/03/22 09:26:52 [detection_layer] {"stage_name":"detection_layer","events_processed":410,"events_dropped":0,"avg_latency_ms":18.441980491025816,"throughput_eps":0,"last_update":"2026-03-22T09:26:47.479900266Z"} +2026/03/22 09:26:52 [transform_engine] {"stage_name":"transform_engine","events_processed":410,"events_dropped":0,"avg_latency_ms":115.9637852687589,"throughput_eps":0,"last_update":"2026-03-22T09:26:47.479913561Z"} +2026/03/22 09:26:52 ───────────────────────────────────────────────── +2026/03/22 09:26:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:26:57 [metric_collector] {"stage_name":"metric_collector","events_processed":12324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2464.8,"last_update":"2026-03-22T09:26:52.369068643Z"} +2026/03/22 09:26:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:26:52.374893349Z"} +2026/03/22 09:26:57 [detection_layer] {"stage_name":"detection_layer","events_processed":410,"events_dropped":0,"avg_latency_ms":18.441980491025816,"throughput_eps":0,"last_update":"2026-03-22T09:26:52.479114719Z"} +2026/03/22 09:26:57 [transform_engine] {"stage_name":"transform_engine","events_processed":410,"events_dropped":0,"avg_latency_ms":115.9637852687589,"throughput_eps":0,"last_update":"2026-03-22T09:26:52.479141341Z"} +2026/03/22 09:26:57 [log_collector] {"stage_name":"log_collector","events_processed":19786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3957.2,"last_update":"2026-03-22T09:26:52.368870924Z"} +2026/03/22 09:26:57 ───────────────────────────────────────────────── +2026/03/22 09:27:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:27:02 [metric_collector] {"stage_name":"metric_collector","events_processed":12329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2465.8,"last_update":"2026-03-22T09:26:57.368194761Z"} +2026/03/22 09:27:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:26:57.374226884Z"} +2026/03/22 09:27:02 [detection_layer] {"stage_name":"detection_layer","events_processed":410,"events_dropped":0,"avg_latency_ms":18.441980491025816,"throughput_eps":0,"last_update":"2026-03-22T09:26:57.479471755Z"} +2026/03/22 09:27:02 [transform_engine] {"stage_name":"transform_engine","events_processed":410,"events_dropped":0,"avg_latency_ms":115.9637852687589,"throughput_eps":0,"last_update":"2026-03-22T09:26:57.479456737Z"} +2026/03/22 09:27:02 [log_collector] {"stage_name":"log_collector","events_processed":19786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3957.2,"last_update":"2026-03-22T09:26:57.367951956Z"} +2026/03/22 09:27:02 ───────────────────────────────────────────────── +2026/03/22 09:27:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:27:07 [log_collector] {"stage_name":"log_collector","events_processed":19786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3957.2,"last_update":"2026-03-22T09:27:02.367995281Z"} +2026/03/22 09:27:07 [metric_collector] {"stage_name":"metric_collector","events_processed":12334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2466.8,"last_update":"2026-03-22T09:27:02.36819805Z"} +2026/03/22 09:27:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:27:02.377692464Z"} +2026/03/22 09:27:07 [detection_layer] {"stage_name":"detection_layer","events_processed":411,"events_dropped":0,"avg_latency_ms":17.278540192820653,"throughput_eps":0,"last_update":"2026-03-22T09:27:02.479694294Z"} +2026/03/22 09:27:07 [transform_engine] {"stage_name":"transform_engine","events_processed":411,"events_dropped":0,"avg_latency_ms":238.9947456150071,"throughput_eps":0,"last_update":"2026-03-22T09:27:02.479672583Z"} +2026/03/22 09:27:07 ───────────────────────────────────────────────── +2026/03/22 09:27:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:27:12 [transform_engine] {"stage_name":"transform_engine","events_processed":411,"events_dropped":0,"avg_latency_ms":238.9947456150071,"throughput_eps":0,"last_update":"2026-03-22T09:27:07.479096217Z"} +2026/03/22 09:27:12 [log_collector] {"stage_name":"log_collector","events_processed":19789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3957.8,"last_update":"2026-03-22T09:27:07.368262821Z"} +2026/03/22 09:27:12 [metric_collector] {"stage_name":"metric_collector","events_processed":12339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2467.8,"last_update":"2026-03-22T09:27:07.368605898Z"} +2026/03/22 09:27:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:27:07.375867295Z"} +2026/03/22 09:27:12 [detection_layer] {"stage_name":"detection_layer","events_processed":411,"events_dropped":0,"avg_latency_ms":17.278540192820653,"throughput_eps":0,"last_update":"2026-03-22T09:27:07.479069626Z"} +2026/03/22 09:27:12 ───────────────────────────────────────────────── +2026/03/22 09:27:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:27:17 [log_collector] {"stage_name":"log_collector","events_processed":19845,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3969,"last_update":"2026-03-22T09:27:17.36855542Z"} +2026/03/22 09:27:17 [metric_collector] {"stage_name":"metric_collector","events_processed":12344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2468.8,"last_update":"2026-03-22T09:27:12.369060045Z"} +2026/03/22 09:27:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4940,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:27:12.378205731Z"} +2026/03/22 09:27:17 [detection_layer] {"stage_name":"detection_layer","events_processed":411,"events_dropped":0,"avg_latency_ms":17.278540192820653,"throughput_eps":0,"last_update":"2026-03-22T09:27:12.479457015Z"} +2026/03/22 09:27:17 [transform_engine] {"stage_name":"transform_engine","events_processed":411,"events_dropped":0,"avg_latency_ms":238.9947456150071,"throughput_eps":0,"last_update":"2026-03-22T09:27:12.479415055Z"} +2026/03/22 09:27:17 ───────────────────────────────────────────────── +2026/03/22 09:27:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:27:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:27:17.377327329Z"} +2026/03/22 09:27:22 [detection_layer] {"stage_name":"detection_layer","events_processed":411,"events_dropped":0,"avg_latency_ms":17.278540192820653,"throughput_eps":0,"last_update":"2026-03-22T09:27:17.479524004Z"} +2026/03/22 09:27:22 [transform_engine] {"stage_name":"transform_engine","events_processed":411,"events_dropped":0,"avg_latency_ms":238.9947456150071,"throughput_eps":0,"last_update":"2026-03-22T09:27:17.479539624Z"} +2026/03/22 09:27:22 [log_collector] {"stage_name":"log_collector","events_processed":19845,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3969,"last_update":"2026-03-22T09:27:17.36855542Z"} +2026/03/22 09:27:22 [metric_collector] {"stage_name":"metric_collector","events_processed":12349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2469.8,"last_update":"2026-03-22T09:27:17.368794617Z"} +2026/03/22 09:27:22 ───────────────────────────────────────────────── +Saved state: 13 clusters, 20129 messages, reason: none +2026/03/22 09:27:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:27:27 [log_collector] {"stage_name":"log_collector","events_processed":20134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4026.8,"last_update":"2026-03-22T09:27:27.367997891Z"} +2026/03/22 09:27:27 [metric_collector] {"stage_name":"metric_collector","events_processed":12354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2470.8,"last_update":"2026-03-22T09:27:22.368733975Z"} +2026/03/22 09:27:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:27:22.376219261Z"} +2026/03/22 09:27:27 [detection_layer] {"stage_name":"detection_layer","events_processed":411,"events_dropped":0,"avg_latency_ms":17.278540192820653,"throughput_eps":0,"last_update":"2026-03-22T09:27:22.479446871Z"} +2026/03/22 09:27:27 [transform_engine] {"stage_name":"transform_engine","events_processed":411,"events_dropped":0,"avg_latency_ms":238.9947456150071,"throughput_eps":0,"last_update":"2026-03-22T09:27:22.479527445Z"} +2026/03/22 09:27:27 ───────────────────────────────────────────────── +2026/03/22 09:27:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:27:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:27:27.377975811Z"} +2026/03/22 09:27:32 [detection_layer] {"stage_name":"detection_layer","events_processed":411,"events_dropped":0,"avg_latency_ms":17.278540192820653,"throughput_eps":0,"last_update":"2026-03-22T09:27:27.479394667Z"} +2026/03/22 09:27:32 [transform_engine] {"stage_name":"transform_engine","events_processed":412,"events_dropped":0,"avg_latency_ms":214.37807309200568,"throughput_eps":0,"last_update":"2026-03-22T09:27:27.5951398Z"} +2026/03/22 09:27:32 [log_collector] {"stage_name":"log_collector","events_processed":20134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4026.8,"last_update":"2026-03-22T09:27:27.367997891Z"} +2026/03/22 09:27:32 [metric_collector] {"stage_name":"metric_collector","events_processed":12359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2471.8,"last_update":"2026-03-22T09:27:27.368815487Z"} +2026/03/22 09:27:32 ───────────────────────────────────────────────── +2026/03/22 09:27:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:27:37 [transform_engine] {"stage_name":"transform_engine","events_processed":412,"events_dropped":0,"avg_latency_ms":214.37807309200568,"throughput_eps":0,"last_update":"2026-03-22T09:27:32.479282069Z"} +2026/03/22 09:27:37 [log_collector] {"stage_name":"log_collector","events_processed":20137,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4027.4,"last_update":"2026-03-22T09:27:37.368599672Z"} +2026/03/22 09:27:37 [metric_collector] {"stage_name":"metric_collector","events_processed":12364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2472.8,"last_update":"2026-03-22T09:27:32.369055225Z"} +2026/03/22 09:27:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:27:32.377928138Z"} +2026/03/22 09:27:37 [detection_layer] {"stage_name":"detection_layer","events_processed":412,"events_dropped":0,"avg_latency_ms":17.632718954256525,"throughput_eps":0,"last_update":"2026-03-22T09:27:32.479317507Z"} +2026/03/22 09:27:37 ───────────────────────────────────────────────── +2026/03/22 09:27:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:27:42 [log_collector] {"stage_name":"log_collector","events_processed":20137,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4027.4,"last_update":"2026-03-22T09:27:37.368599672Z"} +2026/03/22 09:27:42 [metric_collector] {"stage_name":"metric_collector","events_processed":12369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2473.8,"last_update":"2026-03-22T09:27:37.368674275Z"} +2026/03/22 09:27:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:27:37.37970966Z"} +2026/03/22 09:27:42 [detection_layer] {"stage_name":"detection_layer","events_processed":412,"events_dropped":0,"avg_latency_ms":17.632718954256525,"throughput_eps":0,"last_update":"2026-03-22T09:27:37.480006307Z"} +2026/03/22 09:27:42 [transform_engine] {"stage_name":"transform_engine","events_processed":412,"events_dropped":0,"avg_latency_ms":214.37807309200568,"throughput_eps":0,"last_update":"2026-03-22T09:27:37.478899147Z"} +2026/03/22 09:27:42 ───────────────────────────────────────────────── +2026/03/22 09:27:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:27:47 [detection_layer] {"stage_name":"detection_layer","events_processed":412,"events_dropped":0,"avg_latency_ms":17.632718954256525,"throughput_eps":0,"last_update":"2026-03-22T09:27:42.47940716Z"} +2026/03/22 09:27:47 [transform_engine] {"stage_name":"transform_engine","events_processed":412,"events_dropped":0,"avg_latency_ms":214.37807309200568,"throughput_eps":0,"last_update":"2026-03-22T09:27:42.479380529Z"} +2026/03/22 09:27:47 [log_collector] {"stage_name":"log_collector","events_processed":20137,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4027.4,"last_update":"2026-03-22T09:27:42.367957823Z"} +2026/03/22 09:27:47 [metric_collector] {"stage_name":"metric_collector","events_processed":12374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2474.8,"last_update":"2026-03-22T09:27:42.368210738Z"} +2026/03/22 09:27:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:27:42.375179724Z"} +2026/03/22 09:27:47 ───────────────────────────────────────────────── +2026/03/22 09:27:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:27:52 [metric_collector] {"stage_name":"metric_collector","events_processed":12379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2475.8,"last_update":"2026-03-22T09:27:47.368756685Z"} +2026/03/22 09:27:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:27:47.377915666Z"} +2026/03/22 09:27:52 [detection_layer] {"stage_name":"detection_layer","events_processed":412,"events_dropped":0,"avg_latency_ms":17.632718954256525,"throughput_eps":0,"last_update":"2026-03-22T09:27:47.479496183Z"} +2026/03/22 09:27:52 [transform_engine] {"stage_name":"transform_engine","events_processed":412,"events_dropped":0,"avg_latency_ms":214.37807309200568,"throughput_eps":0,"last_update":"2026-03-22T09:27:47.479429715Z"} +2026/03/22 09:27:52 [log_collector] {"stage_name":"log_collector","events_processed":20148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4029.6,"last_update":"2026-03-22T09:27:47.368768016Z"} +2026/03/22 09:27:52 ───────────────────────────────────────────────── +2026/03/22 09:27:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:27:57 [log_collector] {"stage_name":"log_collector","events_processed":20162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4032.4,"last_update":"2026-03-22T09:27:52.367997976Z"} +2026/03/22 09:27:57 [metric_collector] {"stage_name":"metric_collector","events_processed":12384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2476.8,"last_update":"2026-03-22T09:27:52.368484709Z"} +2026/03/22 09:27:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:27:52.373668948Z"} +2026/03/22 09:27:57 [detection_layer] {"stage_name":"detection_layer","events_processed":412,"events_dropped":0,"avg_latency_ms":17.632718954256525,"throughput_eps":0,"last_update":"2026-03-22T09:27:52.479895753Z"} +2026/03/22 09:27:57 [transform_engine] {"stage_name":"transform_engine","events_processed":412,"events_dropped":0,"avg_latency_ms":214.37807309200568,"throughput_eps":0,"last_update":"2026-03-22T09:27:52.479931972Z"} +2026/03/22 09:27:57 ───────────────────────────────────────────────── +2026/03/22 09:28:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:28:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4958,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:27:57.377030461Z"} +2026/03/22 09:28:02 [detection_layer] {"stage_name":"detection_layer","events_processed":412,"events_dropped":0,"avg_latency_ms":17.632718954256525,"throughput_eps":0,"last_update":"2026-03-22T09:27:57.479462297Z"} +2026/03/22 09:28:02 [transform_engine] {"stage_name":"transform_engine","events_processed":413,"events_dropped":0,"avg_latency_ms":198.91193527360454,"throughput_eps":0,"last_update":"2026-03-22T09:27:57.616461509Z"} +2026/03/22 09:28:02 [log_collector] {"stage_name":"log_collector","events_processed":20164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4032.8,"last_update":"2026-03-22T09:27:57.368055301Z"} +2026/03/22 09:28:02 [metric_collector] {"stage_name":"metric_collector","events_processed":12389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2477.8,"last_update":"2026-03-22T09:27:57.368538056Z"} +2026/03/22 09:28:02 ───────────────────────────────────────────────── +2026/03/22 09:28:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:28:07 [log_collector] {"stage_name":"log_collector","events_processed":20164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4032.8,"last_update":"2026-03-22T09:28:02.367955629Z"} +2026/03/22 09:28:07 [metric_collector] {"stage_name":"metric_collector","events_processed":12394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2478.8,"last_update":"2026-03-22T09:28:02.368246757Z"} +2026/03/22 09:28:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:28:02.377380019Z"} +2026/03/22 09:28:07 [detection_layer] {"stage_name":"detection_layer","events_processed":413,"events_dropped":0,"avg_latency_ms":17.986701163405222,"throughput_eps":0,"last_update":"2026-03-22T09:28:02.479711985Z"} +2026/03/22 09:28:07 [transform_engine] {"stage_name":"transform_engine","events_processed":413,"events_dropped":0,"avg_latency_ms":198.91193527360454,"throughput_eps":0,"last_update":"2026-03-22T09:28:02.479669904Z"} +2026/03/22 09:28:07 ───────────────────────────────────────────────── +2026/03/22 09:28:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:28:12 [transform_engine] {"stage_name":"transform_engine","events_processed":413,"events_dropped":0,"avg_latency_ms":198.91193527360454,"throughput_eps":0,"last_update":"2026-03-22T09:28:07.478892152Z"} +2026/03/22 09:28:12 [log_collector] {"stage_name":"log_collector","events_processed":20164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4032.8,"last_update":"2026-03-22T09:28:07.368894905Z"} +2026/03/22 09:28:12 [metric_collector] {"stage_name":"metric_collector","events_processed":12399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2479.8,"last_update":"2026-03-22T09:28:07.369124395Z"} +2026/03/22 09:28:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4962,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:28:07.377643551Z"} +2026/03/22 09:28:12 [detection_layer] {"stage_name":"detection_layer","events_processed":413,"events_dropped":0,"avg_latency_ms":17.986701163405222,"throughput_eps":0,"last_update":"2026-03-22T09:28:07.478980672Z"} +2026/03/22 09:28:12 ───────────────────────────────────────────────── +2026/03/22 09:28:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:28:17 [log_collector] {"stage_name":"log_collector","events_processed":20164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4032.8,"last_update":"2026-03-22T09:28:12.368877379Z"} +2026/03/22 09:28:17 [metric_collector] {"stage_name":"metric_collector","events_processed":12404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2480.8,"last_update":"2026-03-22T09:28:12.36923289Z"} +2026/03/22 09:28:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:28:12.37839598Z"} +2026/03/22 09:28:17 [detection_layer] {"stage_name":"detection_layer","events_processed":413,"events_dropped":0,"avg_latency_ms":17.986701163405222,"throughput_eps":0,"last_update":"2026-03-22T09:28:12.479829225Z"} +2026/03/22 09:28:17 [transform_engine] {"stage_name":"transform_engine","events_processed":413,"events_dropped":0,"avg_latency_ms":198.91193527360454,"throughput_eps":0,"last_update":"2026-03-22T09:28:12.479787725Z"} +2026/03/22 09:28:17 ───────────────────────────────────────────────── +2026/03/22 09:28:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:28:22 [detection_layer] {"stage_name":"detection_layer","events_processed":413,"events_dropped":0,"avg_latency_ms":17.986701163405222,"throughput_eps":0,"last_update":"2026-03-22T09:28:17.478942406Z"} +2026/03/22 09:28:22 [transform_engine] {"stage_name":"transform_engine","events_processed":413,"events_dropped":0,"avg_latency_ms":198.91193527360454,"throughput_eps":0,"last_update":"2026-03-22T09:28:17.478893222Z"} +2026/03/22 09:28:22 [log_collector] {"stage_name":"log_collector","events_processed":20164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4032.8,"last_update":"2026-03-22T09:28:17.367981523Z"} +2026/03/22 09:28:22 [metric_collector] {"stage_name":"metric_collector","events_processed":12409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2481.8,"last_update":"2026-03-22T09:28:17.36852841Z"} +2026/03/22 09:28:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:28:17.37767062Z"} +2026/03/22 09:28:22 ───────────────────────────────────────────────── +2026/03/22 09:28:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:28:27 [detection_layer] {"stage_name":"detection_layer","events_processed":413,"events_dropped":0,"avg_latency_ms":17.986701163405222,"throughput_eps":0,"last_update":"2026-03-22T09:28:22.479564822Z"} +2026/03/22 09:28:27 [transform_engine] {"stage_name":"transform_engine","events_processed":413,"events_dropped":0,"avg_latency_ms":198.91193527360454,"throughput_eps":0,"last_update":"2026-03-22T09:28:22.479624896Z"} +2026/03/22 09:28:27 [log_collector] {"stage_name":"log_collector","events_processed":20164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4032.8,"last_update":"2026-03-22T09:28:22.367979301Z"} +2026/03/22 09:28:27 [metric_collector] {"stage_name":"metric_collector","events_processed":12414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2482.8,"last_update":"2026-03-22T09:28:22.368667669Z"} +2026/03/22 09:28:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:28:22.378232629Z"} +2026/03/22 09:28:27 ───────────────────────────────────────────────── +2026/03/22 09:28:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:28:32 [log_collector] {"stage_name":"log_collector","events_processed":20164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4032.8,"last_update":"2026-03-22T09:28:27.368559575Z"} +2026/03/22 09:28:32 [metric_collector] {"stage_name":"metric_collector","events_processed":12419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2483.8,"last_update":"2026-03-22T09:28:27.369374616Z"} +2026/03/22 09:28:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4970,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:28:27.379773362Z"} +2026/03/22 09:28:32 [detection_layer] {"stage_name":"detection_layer","events_processed":413,"events_dropped":0,"avg_latency_ms":17.986701163405222,"throughput_eps":0,"last_update":"2026-03-22T09:28:27.478947752Z"} +2026/03/22 09:28:32 [transform_engine] {"stage_name":"transform_engine","events_processed":414,"events_dropped":0,"avg_latency_ms":173.12468981888367,"throughput_eps":0,"last_update":"2026-03-22T09:28:27.548909564Z"} +2026/03/22 09:28:32 ───────────────────────────────────────────────── +2026/03/22 09:28:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:28:37 [log_collector] {"stage_name":"log_collector","events_processed":20164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4032.8,"last_update":"2026-03-22T09:28:32.368049512Z"} +2026/03/22 09:28:37 [metric_collector] {"stage_name":"metric_collector","events_processed":12429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2485.8,"last_update":"2026-03-22T09:28:37.368162783Z"} +2026/03/22 09:28:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:28:32.377938682Z"} +2026/03/22 09:28:37 [detection_layer] {"stage_name":"detection_layer","events_processed":414,"events_dropped":0,"avg_latency_ms":18.59631613072418,"throughput_eps":0,"last_update":"2026-03-22T09:28:32.479453604Z"} +2026/03/22 09:28:37 [transform_engine] {"stage_name":"transform_engine","events_processed":414,"events_dropped":0,"avg_latency_ms":173.12468981888367,"throughput_eps":0,"last_update":"2026-03-22T09:28:32.479190511Z"} +2026/03/22 09:28:37 ───────────────────────────────────────────────── +2026/03/22 09:28:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:28:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:28:37.375636467Z"} +2026/03/22 09:28:42 [detection_layer] {"stage_name":"detection_layer","events_processed":414,"events_dropped":0,"avg_latency_ms":18.59631613072418,"throughput_eps":0,"last_update":"2026-03-22T09:28:37.479888622Z"} +2026/03/22 09:28:42 [transform_engine] {"stage_name":"transform_engine","events_processed":414,"events_dropped":0,"avg_latency_ms":173.12468981888367,"throughput_eps":0,"last_update":"2026-03-22T09:28:37.479864325Z"} +2026/03/22 09:28:42 [log_collector] {"stage_name":"log_collector","events_processed":20164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4032.8,"last_update":"2026-03-22T09:28:37.368279306Z"} +2026/03/22 09:28:42 [metric_collector] {"stage_name":"metric_collector","events_processed":12429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2485.8,"last_update":"2026-03-22T09:28:37.368162783Z"} +2026/03/22 09:28:42 ───────────────────────────────────────────────── +2026/03/22 09:28:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:28:47 [log_collector] {"stage_name":"log_collector","events_processed":20164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4032.8,"last_update":"2026-03-22T09:28:42.368513549Z"} +2026/03/22 09:28:47 [metric_collector] {"stage_name":"metric_collector","events_processed":12434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2486.8,"last_update":"2026-03-22T09:28:42.369021782Z"} +2026/03/22 09:28:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:28:42.376143611Z"} +2026/03/22 09:28:47 [detection_layer] {"stage_name":"detection_layer","events_processed":414,"events_dropped":0,"avg_latency_ms":18.59631613072418,"throughput_eps":0,"last_update":"2026-03-22T09:28:42.479386996Z"} +2026/03/22 09:28:47 [transform_engine] {"stage_name":"transform_engine","events_processed":414,"events_dropped":0,"avg_latency_ms":173.12468981888367,"throughput_eps":0,"last_update":"2026-03-22T09:28:42.479406333Z"} +2026/03/22 09:28:47 ───────────────────────────────────────────────── +2026/03/22 09:28:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:28:52 [metric_collector] {"stage_name":"metric_collector","events_processed":12439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2487.8,"last_update":"2026-03-22T09:28:47.368305285Z"} +2026/03/22 09:28:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:28:47.377008293Z"} +2026/03/22 09:28:52 [detection_layer] {"stage_name":"detection_layer","events_processed":414,"events_dropped":0,"avg_latency_ms":18.59631613072418,"throughput_eps":0,"last_update":"2026-03-22T09:28:47.479405315Z"} +2026/03/22 09:28:52 [transform_engine] {"stage_name":"transform_engine","events_processed":414,"events_dropped":0,"avg_latency_ms":173.12468981888367,"throughput_eps":0,"last_update":"2026-03-22T09:28:47.479419863Z"} +2026/03/22 09:28:52 [log_collector] {"stage_name":"log_collector","events_processed":20164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4032.8,"last_update":"2026-03-22T09:28:47.367956547Z"} +2026/03/22 09:28:52 ───────────────────────────────────────────────── +2026/03/22 09:28:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:28:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:28:52.376732228Z"} +2026/03/22 09:28:57 [detection_layer] {"stage_name":"detection_layer","events_processed":414,"events_dropped":0,"avg_latency_ms":18.59631613072418,"throughput_eps":0,"last_update":"2026-03-22T09:28:52.480002202Z"} +2026/03/22 09:28:57 [transform_engine] {"stage_name":"transform_engine","events_processed":414,"events_dropped":0,"avg_latency_ms":173.12468981888367,"throughput_eps":0,"last_update":"2026-03-22T09:28:52.478862109Z"} +2026/03/22 09:28:57 [log_collector] {"stage_name":"log_collector","events_processed":20164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4032.8,"last_update":"2026-03-22T09:28:52.368380472Z"} +2026/03/22 09:28:57 [metric_collector] {"stage_name":"metric_collector","events_processed":12444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2488.8,"last_update":"2026-03-22T09:28:52.368764789Z"} +2026/03/22 09:28:57 ───────────────────────────────────────────────── +Saved state: 13 clusters, 20165 messages, reason: none +2026/03/22 09:29:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:29:02 [log_collector] {"stage_name":"log_collector","events_processed":20164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4032.8,"last_update":"2026-03-22T09:28:57.368733344Z"} +2026/03/22 09:29:02 [metric_collector] {"stage_name":"metric_collector","events_processed":12449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2489.8,"last_update":"2026-03-22T09:28:57.369029421Z"} +2026/03/22 09:29:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:28:57.37889716Z"} +2026/03/22 09:29:02 [detection_layer] {"stage_name":"detection_layer","events_processed":414,"events_dropped":0,"avg_latency_ms":18.59631613072418,"throughput_eps":0,"last_update":"2026-03-22T09:28:57.479070784Z"} +2026/03/22 09:29:02 [transform_engine] {"stage_name":"transform_engine","events_processed":415,"events_dropped":0,"avg_latency_ms":152.18899385510696,"throughput_eps":0,"last_update":"2026-03-22T09:28:57.54754082Z"} +2026/03/22 09:29:02 ───────────────────────────────────────────────── +2026/03/22 09:29:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:29:07 [log_collector] {"stage_name":"log_collector","events_processed":20178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4035.6,"last_update":"2026-03-22T09:29:02.36868803Z"} +2026/03/22 09:29:07 [metric_collector] {"stage_name":"metric_collector","events_processed":12454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2490.8,"last_update":"2026-03-22T09:29:02.368975109Z"} +2026/03/22 09:29:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:29:02.377424672Z"} +2026/03/22 09:29:07 [detection_layer] {"stage_name":"detection_layer","events_processed":415,"events_dropped":0,"avg_latency_ms":19.508018104579342,"throughput_eps":0,"last_update":"2026-03-22T09:29:02.479788042Z"} +2026/03/22 09:29:07 [transform_engine] {"stage_name":"transform_engine","events_processed":415,"events_dropped":0,"avg_latency_ms":152.18899385510696,"throughput_eps":0,"last_update":"2026-03-22T09:29:02.479802018Z"} +2026/03/22 09:29:07 ───────────────────────────────────────────────── +2026/03/22 09:29:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:29:12 [log_collector] {"stage_name":"log_collector","events_processed":20178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4035.6,"last_update":"2026-03-22T09:29:07.368813485Z"} +2026/03/22 09:29:12 [metric_collector] {"stage_name":"metric_collector","events_processed":12459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2491.8,"last_update":"2026-03-22T09:29:07.369189385Z"} +2026/03/22 09:29:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:29:07.377900428Z"} +2026/03/22 09:29:12 [detection_layer] {"stage_name":"detection_layer","events_processed":415,"events_dropped":0,"avg_latency_ms":19.508018104579342,"throughput_eps":0,"last_update":"2026-03-22T09:29:07.479207774Z"} +2026/03/22 09:29:12 [transform_engine] {"stage_name":"transform_engine","events_processed":415,"events_dropped":0,"avg_latency_ms":152.18899385510696,"throughput_eps":0,"last_update":"2026-03-22T09:29:07.479217323Z"} +2026/03/22 09:29:12 ───────────────────────────────────────────────── +2026/03/22 09:29:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:29:17 [log_collector] {"stage_name":"log_collector","events_processed":20178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4035.6,"last_update":"2026-03-22T09:29:17.368003914Z"} +2026/03/22 09:29:17 [metric_collector] {"stage_name":"metric_collector","events_processed":12464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2492.8,"last_update":"2026-03-22T09:29:12.368622494Z"} +2026/03/22 09:29:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:29:12.378645921Z"} +2026/03/22 09:29:17 [detection_layer] {"stage_name":"detection_layer","events_processed":415,"events_dropped":0,"avg_latency_ms":19.508018104579342,"throughput_eps":0,"last_update":"2026-03-22T09:29:12.479951054Z"} +2026/03/22 09:29:17 [transform_engine] {"stage_name":"transform_engine","events_processed":415,"events_dropped":0,"avg_latency_ms":152.18899385510696,"throughput_eps":0,"last_update":"2026-03-22T09:29:12.479977395Z"} +2026/03/22 09:29:17 ───────────────────────────────────────────────── +2026/03/22 09:29:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:29:22 [log_collector] {"stage_name":"log_collector","events_processed":20178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4035.6,"last_update":"2026-03-22T09:29:17.368003914Z"} +2026/03/22 09:29:22 [metric_collector] {"stage_name":"metric_collector","events_processed":12469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2493.8,"last_update":"2026-03-22T09:29:17.368379354Z"} +2026/03/22 09:29:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4990,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:29:17.377531994Z"} +2026/03/22 09:29:22 [detection_layer] {"stage_name":"detection_layer","events_processed":415,"events_dropped":0,"avg_latency_ms":19.508018104579342,"throughput_eps":0,"last_update":"2026-03-22T09:29:17.479756055Z"} +2026/03/22 09:29:22 [transform_engine] {"stage_name":"transform_engine","events_processed":415,"events_dropped":0,"avg_latency_ms":152.18899385510696,"throughput_eps":0,"last_update":"2026-03-22T09:29:17.479768108Z"} +2026/03/22 09:29:22 ───────────────────────────────────────────────── +2026/03/22 09:29:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:29:27 [log_collector] {"stage_name":"log_collector","events_processed":20178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4035.6,"last_update":"2026-03-22T09:29:22.367999892Z"} +2026/03/22 09:29:27 [metric_collector] {"stage_name":"metric_collector","events_processed":12474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2494.8,"last_update":"2026-03-22T09:29:22.368309445Z"} +2026/03/22 09:29:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4992,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:29:22.379483115Z"} +2026/03/22 09:29:27 [detection_layer] {"stage_name":"detection_layer","events_processed":415,"events_dropped":0,"avg_latency_ms":19.508018104579342,"throughput_eps":0,"last_update":"2026-03-22T09:29:22.479862003Z"} +2026/03/22 09:29:27 [transform_engine] {"stage_name":"transform_engine","events_processed":415,"events_dropped":0,"avg_latency_ms":152.18899385510696,"throughput_eps":0,"last_update":"2026-03-22T09:29:22.479877944Z"} +2026/03/22 09:29:27 ───────────────────────────────────────────────── +2026/03/22 09:29:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:29:32 [log_collector] {"stage_name":"log_collector","events_processed":20178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4035.6,"last_update":"2026-03-22T09:29:27.368972208Z"} +2026/03/22 09:29:32 [metric_collector] {"stage_name":"metric_collector","events_processed":12478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2495.6,"last_update":"2026-03-22T09:29:27.368864182Z"} +2026/03/22 09:29:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:29:27.378590039Z"} +2026/03/22 09:29:32 [detection_layer] {"stage_name":"detection_layer","events_processed":415,"events_dropped":0,"avg_latency_ms":19.508018104579342,"throughput_eps":0,"last_update":"2026-03-22T09:29:27.47898622Z"} +2026/03/22 09:29:32 [transform_engine] {"stage_name":"transform_engine","events_processed":416,"events_dropped":0,"avg_latency_ms":148.18721648408558,"throughput_eps":0,"last_update":"2026-03-22T09:29:27.610996041Z"} +2026/03/22 09:29:32 ───────────────────────────────────────────────── +2026/03/22 09:29:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:29:37 [detection_layer] {"stage_name":"detection_layer","events_processed":416,"events_dropped":0,"avg_latency_ms":19.711809483663476,"throughput_eps":0,"last_update":"2026-03-22T09:29:32.479984316Z"} +2026/03/22 09:29:37 [transform_engine] {"stage_name":"transform_engine","events_processed":416,"events_dropped":0,"avg_latency_ms":148.18721648408558,"throughput_eps":0,"last_update":"2026-03-22T09:29:32.478880031Z"} +2026/03/22 09:29:37 [log_collector] {"stage_name":"log_collector","events_processed":20178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4035.6,"last_update":"2026-03-22T09:29:32.368380839Z"} +2026/03/22 09:29:37 [metric_collector] {"stage_name":"metric_collector","events_processed":12483,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2496.6,"last_update":"2026-03-22T09:29:32.368244788Z"} +2026/03/22 09:29:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4996,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:29:32.377746166Z"} +2026/03/22 09:29:37 ───────────────────────────────────────────────── +2026/03/22 09:29:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:29:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:29:37.377520857Z"} +2026/03/22 09:29:42 [detection_layer] {"stage_name":"detection_layer","events_processed":416,"events_dropped":0,"avg_latency_ms":19.711809483663476,"throughput_eps":0,"last_update":"2026-03-22T09:29:37.479851214Z"} +2026/03/22 09:29:42 [transform_engine] {"stage_name":"transform_engine","events_processed":416,"events_dropped":0,"avg_latency_ms":148.18721648408558,"throughput_eps":0,"last_update":"2026-03-22T09:29:37.479743538Z"} +2026/03/22 09:29:42 [log_collector] {"stage_name":"log_collector","events_processed":20178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4035.6,"last_update":"2026-03-22T09:29:37.368177342Z"} +2026/03/22 09:29:42 [metric_collector] {"stage_name":"metric_collector","events_processed":12488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2497.6,"last_update":"2026-03-22T09:29:37.367980114Z"} +2026/03/22 09:29:42 ───────────────────────────────────────────────── +2026/03/22 09:29:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:29:47 [log_collector] {"stage_name":"log_collector","events_processed":20178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4035.6,"last_update":"2026-03-22T09:29:42.368028309Z"} +2026/03/22 09:29:47 [metric_collector] {"stage_name":"metric_collector","events_processed":12493,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2498.6,"last_update":"2026-03-22T09:29:42.367916265Z"} +2026/03/22 09:29:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:29:42.377396542Z"} +2026/03/22 09:29:47 [detection_layer] {"stage_name":"detection_layer","events_processed":416,"events_dropped":0,"avg_latency_ms":19.711809483663476,"throughput_eps":0,"last_update":"2026-03-22T09:29:42.479732951Z"} +2026/03/22 09:29:47 [transform_engine] {"stage_name":"transform_engine","events_processed":416,"events_dropped":0,"avg_latency_ms":148.18721648408558,"throughput_eps":0,"last_update":"2026-03-22T09:29:42.479700298Z"} +2026/03/22 09:29:47 ───────────────────────────────────────────────── +2026/03/22 09:29:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:29:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:29:47.378179824Z"} +2026/03/22 09:29:52 [detection_layer] {"stage_name":"detection_layer","events_processed":416,"events_dropped":0,"avg_latency_ms":19.711809483663476,"throughput_eps":0,"last_update":"2026-03-22T09:29:47.479526727Z"} +2026/03/22 09:29:52 [transform_engine] {"stage_name":"transform_engine","events_processed":416,"events_dropped":0,"avg_latency_ms":148.18721648408558,"throughput_eps":0,"last_update":"2026-03-22T09:29:47.479392801Z"} +2026/03/22 09:29:52 [log_collector] {"stage_name":"log_collector","events_processed":20178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4035.6,"last_update":"2026-03-22T09:29:47.368880884Z"} +2026/03/22 09:29:52 [metric_collector] {"stage_name":"metric_collector","events_processed":12499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2499.8,"last_update":"2026-03-22T09:29:47.369104102Z"} +2026/03/22 09:29:52 ───────────────────────────────────────────────── +2026/03/22 09:29:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:29:57 [detection_layer] {"stage_name":"detection_layer","events_processed":416,"events_dropped":0,"avg_latency_ms":19.711809483663476,"throughput_eps":0,"last_update":"2026-03-22T09:29:52.479685515Z"} +2026/03/22 09:29:57 [transform_engine] {"stage_name":"transform_engine","events_processed":416,"events_dropped":0,"avg_latency_ms":148.18721648408558,"throughput_eps":0,"last_update":"2026-03-22T09:29:52.47969882Z"} +2026/03/22 09:29:57 [log_collector] {"stage_name":"log_collector","events_processed":20178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4035.6,"last_update":"2026-03-22T09:29:57.368399645Z"} +2026/03/22 09:29:57 [metric_collector] {"stage_name":"metric_collector","events_processed":12504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2500.8,"last_update":"2026-03-22T09:29:52.369293966Z"} +2026/03/22 09:29:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:29:52.378481523Z"} +2026/03/22 09:29:57 ───────────────────────────────────────────────── +2026/03/22 09:30:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:30:02 [detection_layer] {"stage_name":"detection_layer","events_processed":416,"events_dropped":0,"avg_latency_ms":19.711809483663476,"throughput_eps":0,"last_update":"2026-03-22T09:29:57.479060447Z"} +2026/03/22 09:30:02 [transform_engine] {"stage_name":"transform_engine","events_processed":417,"events_dropped":0,"avg_latency_ms":132.53208878726846,"throughput_eps":0,"last_update":"2026-03-22T09:29:57.548984319Z"} +2026/03/22 09:30:02 [log_collector] {"stage_name":"log_collector","events_processed":20178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4035.6,"last_update":"2026-03-22T09:29:57.368399645Z"} +2026/03/22 09:30:02 [metric_collector] {"stage_name":"metric_collector","events_processed":12509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2501.8,"last_update":"2026-03-22T09:29:57.368866578Z"} +2026/03/22 09:30:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5006,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:29:57.378838557Z"} +2026/03/22 09:30:02 ───────────────────────────────────────────────── +Saved state: 13 clusters, 20179 messages, reason: none +2026/03/22 09:30:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:30:07 [log_collector] {"stage_name":"log_collector","events_processed":20178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4035.6,"last_update":"2026-03-22T09:30:02.368991498Z"} +2026/03/22 09:30:07 [metric_collector] {"stage_name":"metric_collector","events_processed":12514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2502.8,"last_update":"2026-03-22T09:30:02.369845223Z"} +2026/03/22 09:30:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5008,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:30:02.384462639Z"} +2026/03/22 09:30:07 [detection_layer] {"stage_name":"detection_layer","events_processed":417,"events_dropped":0,"avg_latency_ms":20.028418586930783,"throughput_eps":0,"last_update":"2026-03-22T09:30:02.479686275Z"} +2026/03/22 09:30:07 [transform_engine] {"stage_name":"transform_engine","events_processed":417,"events_dropped":0,"avg_latency_ms":132.53208878726846,"throughput_eps":0,"last_update":"2026-03-22T09:30:02.47969937Z"} +2026/03/22 09:30:07 ───────────────────────────────────────────────── +2026/03/22 09:30:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:30:12 [log_collector] {"stage_name":"log_collector","events_processed":20183,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4036.6,"last_update":"2026-03-22T09:30:07.368755063Z"} +2026/03/22 09:30:12 [metric_collector] {"stage_name":"metric_collector","events_processed":12519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2503.8,"last_update":"2026-03-22T09:30:07.36891044Z"} +2026/03/22 09:30:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:30:07.375174017Z"} +2026/03/22 09:30:12 [detection_layer] {"stage_name":"detection_layer","events_processed":417,"events_dropped":0,"avg_latency_ms":20.028418586930783,"throughput_eps":0,"last_update":"2026-03-22T09:30:07.479401539Z"} +2026/03/22 09:30:12 [transform_engine] {"stage_name":"transform_engine","events_processed":417,"events_dropped":0,"avg_latency_ms":132.53208878726846,"throughput_eps":0,"last_update":"2026-03-22T09:30:07.479418751Z"} +2026/03/22 09:30:12 ───────────────────────────────────────────────── +2026/03/22 09:30:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:30:17 [transform_engine] {"stage_name":"transform_engine","events_processed":417,"events_dropped":0,"avg_latency_ms":132.53208878726846,"throughput_eps":0,"last_update":"2026-03-22T09:30:12.479689187Z"} +2026/03/22 09:30:17 [log_collector] {"stage_name":"log_collector","events_processed":20183,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4036.6,"last_update":"2026-03-22T09:30:12.368053316Z"} +2026/03/22 09:30:17 [metric_collector] {"stage_name":"metric_collector","events_processed":12524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2504.8,"last_update":"2026-03-22T09:30:12.368390261Z"} +2026/03/22 09:30:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5012,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:30:12.374473723Z"} +2026/03/22 09:30:17 [detection_layer] {"stage_name":"detection_layer","events_processed":417,"events_dropped":0,"avg_latency_ms":20.028418586930783,"throughput_eps":0,"last_update":"2026-03-22T09:30:12.479678797Z"} +2026/03/22 09:30:17 ───────────────────────────────────────────────── +2026/03/22 09:30:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:30:22 [detection_layer] {"stage_name":"detection_layer","events_processed":417,"events_dropped":0,"avg_latency_ms":20.028418586930783,"throughput_eps":0,"last_update":"2026-03-22T09:30:17.479606263Z"} +2026/03/22 09:30:22 [transform_engine] {"stage_name":"transform_engine","events_processed":417,"events_dropped":0,"avg_latency_ms":132.53208878726846,"throughput_eps":0,"last_update":"2026-03-22T09:30:17.479616743Z"} +2026/03/22 09:30:22 [log_collector] {"stage_name":"log_collector","events_processed":20183,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4036.6,"last_update":"2026-03-22T09:30:22.368435678Z"} +2026/03/22 09:30:22 [metric_collector] {"stage_name":"metric_collector","events_processed":12529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2505.8,"last_update":"2026-03-22T09:30:17.368134266Z"} +2026/03/22 09:30:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:30:17.375421262Z"} +2026/03/22 09:30:22 ───────────────────────────────────────────────── +2026/03/22 09:30:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:30:27 [metric_collector] {"stage_name":"metric_collector","events_processed":12534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2506.8,"last_update":"2026-03-22T09:30:22.369528201Z"} +2026/03/22 09:30:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:30:22.375386872Z"} +2026/03/22 09:30:27 [detection_layer] {"stage_name":"detection_layer","events_processed":417,"events_dropped":0,"avg_latency_ms":20.028418586930783,"throughput_eps":0,"last_update":"2026-03-22T09:30:22.479593625Z"} +2026/03/22 09:30:27 [transform_engine] {"stage_name":"transform_engine","events_processed":417,"events_dropped":0,"avg_latency_ms":132.53208878726846,"throughput_eps":0,"last_update":"2026-03-22T09:30:22.479605106Z"} +2026/03/22 09:30:27 [log_collector] {"stage_name":"log_collector","events_processed":20183,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4036.6,"last_update":"2026-03-22T09:30:27.368639532Z"} +2026/03/22 09:30:27 ───────────────────────────────────────────────── +2026/03/22 09:30:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:30:32 [detection_layer] {"stage_name":"detection_layer","events_processed":417,"events_dropped":0,"avg_latency_ms":20.028418586930783,"throughput_eps":0,"last_update":"2026-03-22T09:30:27.479444833Z"} +2026/03/22 09:30:32 [transform_engine] {"stage_name":"transform_engine","events_processed":418,"events_dropped":0,"avg_latency_ms":733.0272848298149,"throughput_eps":0,"last_update":"2026-03-22T09:30:30.613906855Z"} +2026/03/22 09:30:32 [log_collector] {"stage_name":"log_collector","events_processed":20183,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4036.6,"last_update":"2026-03-22T09:30:32.368500456Z"} +2026/03/22 09:30:32 [metric_collector] {"stage_name":"metric_collector","events_processed":12539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2507.8,"last_update":"2026-03-22T09:30:27.368860245Z"} +2026/03/22 09:30:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5018,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:30:27.375769688Z"} +2026/03/22 09:30:32 ───────────────────────────────────────────────── +2026/03/22 09:30:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:30:37 [log_collector] {"stage_name":"log_collector","events_processed":20183,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4036.6,"last_update":"2026-03-22T09:30:37.368168019Z"} +2026/03/22 09:30:37 [metric_collector] {"stage_name":"metric_collector","events_processed":12544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2508.8,"last_update":"2026-03-22T09:30:32.368964454Z"} +2026/03/22 09:30:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5020,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:30:32.37626657Z"} +2026/03/22 09:30:37 [detection_layer] {"stage_name":"detection_layer","events_processed":418,"events_dropped":0,"avg_latency_ms":18.745010669544627,"throughput_eps":0,"last_update":"2026-03-22T09:30:32.479498957Z"} +2026/03/22 09:30:37 [transform_engine] {"stage_name":"transform_engine","events_processed":418,"events_dropped":0,"avg_latency_ms":733.0272848298149,"throughput_eps":0,"last_update":"2026-03-22T09:30:32.479483818Z"} +2026/03/22 09:30:37 ───────────────────────────────────────────────── +2026/03/22 09:30:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:30:42 [log_collector] {"stage_name":"log_collector","events_processed":20183,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4036.6,"last_update":"2026-03-22T09:30:42.368369712Z"} +2026/03/22 09:30:42 [metric_collector] {"stage_name":"metric_collector","events_processed":12554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2510.8,"last_update":"2026-03-22T09:30:42.368585296Z"} +2026/03/22 09:30:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5022,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:30:37.375249151Z"} +2026/03/22 09:30:42 [detection_layer] {"stage_name":"detection_layer","events_processed":418,"events_dropped":0,"avg_latency_ms":18.745010669544627,"throughput_eps":0,"last_update":"2026-03-22T09:30:37.47946419Z"} +2026/03/22 09:30:42 [transform_engine] {"stage_name":"transform_engine","events_processed":418,"events_dropped":0,"avg_latency_ms":733.0272848298149,"throughput_eps":0,"last_update":"2026-03-22T09:30:37.479449602Z"} +2026/03/22 09:30:42 ───────────────────────────────────────────────── +2026/03/22 09:30:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:30:47 [log_collector] {"stage_name":"log_collector","events_processed":20183,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4036.6,"last_update":"2026-03-22T09:30:42.368369712Z"} +2026/03/22 09:30:47 [metric_collector] {"stage_name":"metric_collector","events_processed":12554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2510.8,"last_update":"2026-03-22T09:30:42.368585296Z"} +2026/03/22 09:30:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:30:42.379618046Z"} +2026/03/22 09:30:47 [detection_layer] {"stage_name":"detection_layer","events_processed":418,"events_dropped":0,"avg_latency_ms":18.745010669544627,"throughput_eps":0,"last_update":"2026-03-22T09:30:42.47977917Z"} +2026/03/22 09:30:47 [transform_engine] {"stage_name":"transform_engine","events_processed":418,"events_dropped":0,"avg_latency_ms":733.0272848298149,"throughput_eps":0,"last_update":"2026-03-22T09:30:42.479796985Z"} +2026/03/22 09:30:47 ───────────────────────────────────────────────── +2026/03/22 09:30:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:30:52 [log_collector] {"stage_name":"log_collector","events_processed":20186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4037.2,"last_update":"2026-03-22T09:30:47.367992015Z"} +2026/03/22 09:30:52 [metric_collector] {"stage_name":"metric_collector","events_processed":12559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2511.8,"last_update":"2026-03-22T09:30:47.368324081Z"} +2026/03/22 09:30:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:30:47.374951826Z"} +2026/03/22 09:30:52 [detection_layer] {"stage_name":"detection_layer","events_processed":418,"events_dropped":0,"avg_latency_ms":18.745010669544627,"throughput_eps":0,"last_update":"2026-03-22T09:30:47.479197363Z"} +2026/03/22 09:30:52 [transform_engine] {"stage_name":"transform_engine","events_processed":418,"events_dropped":0,"avg_latency_ms":733.0272848298149,"throughput_eps":0,"last_update":"2026-03-22T09:30:47.479170542Z"} +2026/03/22 09:30:52 ───────────────────────────────────────────────── +2026/03/22 09:30:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:30:57 [log_collector] {"stage_name":"log_collector","events_processed":20194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4038.8,"last_update":"2026-03-22T09:30:52.368815848Z"} +2026/03/22 09:30:57 [metric_collector] {"stage_name":"metric_collector","events_processed":12564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2512.8,"last_update":"2026-03-22T09:30:52.369148054Z"} +2026/03/22 09:30:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:30:52.37829867Z"} +2026/03/22 09:30:57 [detection_layer] {"stage_name":"detection_layer","events_processed":418,"events_dropped":0,"avg_latency_ms":18.745010669544627,"throughput_eps":0,"last_update":"2026-03-22T09:30:52.479487844Z"} +2026/03/22 09:30:57 [transform_engine] {"stage_name":"transform_engine","events_processed":418,"events_dropped":0,"avg_latency_ms":733.0272848298149,"throughput_eps":0,"last_update":"2026-03-22T09:30:52.479499657Z"} +2026/03/22 09:30:57 ───────────────────────────────────────────────── +2026/03/22 09:31:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:31:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:30:57.375797642Z"} +2026/03/22 09:31:02 [detection_layer] {"stage_name":"detection_layer","events_processed":418,"events_dropped":0,"avg_latency_ms":18.745010669544627,"throughput_eps":0,"last_update":"2026-03-22T09:30:57.479465675Z"} +2026/03/22 09:31:02 [transform_engine] {"stage_name":"transform_engine","events_processed":419,"events_dropped":0,"avg_latency_ms":617.568185263852,"throughput_eps":0,"last_update":"2026-03-22T09:30:57.634691774Z"} +2026/03/22 09:31:02 [log_collector] {"stage_name":"log_collector","events_processed":20260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4052,"last_update":"2026-03-22T09:30:57.368642589Z"} +2026/03/22 09:31:02 [metric_collector] {"stage_name":"metric_collector","events_processed":12569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2513.8,"last_update":"2026-03-22T09:30:57.368835869Z"} +2026/03/22 09:31:02 ───────────────────────────────────────────────── +2026/03/22 09:31:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:31:07 [detection_layer] {"stage_name":"detection_layer","events_processed":419,"events_dropped":0,"avg_latency_ms":17.795231735635703,"throughput_eps":0,"last_update":"2026-03-22T09:31:02.479271244Z"} +2026/03/22 09:31:07 [transform_engine] {"stage_name":"transform_engine","events_processed":419,"events_dropped":0,"avg_latency_ms":617.568185263852,"throughput_eps":0,"last_update":"2026-03-22T09:31:02.479283168Z"} +2026/03/22 09:31:07 [log_collector] {"stage_name":"log_collector","events_processed":20488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4097.6,"last_update":"2026-03-22T09:31:02.368286499Z"} +2026/03/22 09:31:07 [metric_collector] {"stage_name":"metric_collector","events_processed":12574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2514.8,"last_update":"2026-03-22T09:31:02.368801125Z"} +2026/03/22 09:31:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:31:02.375943734Z"} +2026/03/22 09:31:07 ───────────────────────────────────────────────── +2026/03/22 09:31:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:31:12 [log_collector] {"stage_name":"log_collector","events_processed":20545,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109,"last_update":"2026-03-22T09:31:12.368465105Z"} +2026/03/22 09:31:12 [metric_collector] {"stage_name":"metric_collector","events_processed":12579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2515.8,"last_update":"2026-03-22T09:31:07.368947422Z"} +2026/03/22 09:31:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:31:07.377574966Z"} +2026/03/22 09:31:12 [detection_layer] {"stage_name":"detection_layer","events_processed":419,"events_dropped":0,"avg_latency_ms":17.795231735635703,"throughput_eps":0,"last_update":"2026-03-22T09:31:07.479764076Z"} +2026/03/22 09:31:12 [transform_engine] {"stage_name":"transform_engine","events_processed":419,"events_dropped":0,"avg_latency_ms":617.568185263852,"throughput_eps":0,"last_update":"2026-03-22T09:31:07.479871882Z"} +2026/03/22 09:31:12 ───────────────────────────────────────────────── +2026/03/22 09:31:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:31:17 [metric_collector] {"stage_name":"metric_collector","events_processed":12584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2516.8,"last_update":"2026-03-22T09:31:12.368880991Z"} +2026/03/22 09:31:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5036,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:31:12.378156376Z"} +2026/03/22 09:31:17 [detection_layer] {"stage_name":"detection_layer","events_processed":419,"events_dropped":0,"avg_latency_ms":17.795231735635703,"throughput_eps":0,"last_update":"2026-03-22T09:31:12.479589067Z"} +2026/03/22 09:31:17 [transform_engine] {"stage_name":"transform_engine","events_processed":419,"events_dropped":0,"avg_latency_ms":617.568185263852,"throughput_eps":0,"last_update":"2026-03-22T09:31:12.479565593Z"} +2026/03/22 09:31:17 [log_collector] {"stage_name":"log_collector","events_processed":20545,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109,"last_update":"2026-03-22T09:31:12.368465105Z"} +2026/03/22 09:31:17 ───────────────────────────────────────────────── +2026/03/22 09:31:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:31:22 [detection_layer] {"stage_name":"detection_layer","events_processed":419,"events_dropped":0,"avg_latency_ms":17.795231735635703,"throughput_eps":0,"last_update":"2026-03-22T09:31:17.479456346Z"} +2026/03/22 09:31:22 [transform_engine] {"stage_name":"transform_engine","events_processed":419,"events_dropped":0,"avg_latency_ms":617.568185263852,"throughput_eps":0,"last_update":"2026-03-22T09:31:17.479432941Z"} +2026/03/22 09:31:22 [log_collector] {"stage_name":"log_collector","events_processed":20545,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109,"last_update":"2026-03-22T09:31:17.36869675Z"} +2026/03/22 09:31:22 [metric_collector] {"stage_name":"metric_collector","events_processed":12589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2517.8,"last_update":"2026-03-22T09:31:17.369086087Z"} +2026/03/22 09:31:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:31:17.379241818Z"} +2026/03/22 09:31:22 ───────────────────────────────────────────────── +2026/03/22 09:31:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:31:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:31:22.377276476Z"} +2026/03/22 09:31:27 [detection_layer] {"stage_name":"detection_layer","events_processed":419,"events_dropped":0,"avg_latency_ms":17.795231735635703,"throughput_eps":0,"last_update":"2026-03-22T09:31:22.479605174Z"} +2026/03/22 09:31:27 [transform_engine] {"stage_name":"transform_engine","events_processed":419,"events_dropped":0,"avg_latency_ms":617.568185263852,"throughput_eps":0,"last_update":"2026-03-22T09:31:22.479564646Z"} +2026/03/22 09:31:27 [log_collector] {"stage_name":"log_collector","events_processed":20545,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109,"last_update":"2026-03-22T09:31:27.368577843Z"} +2026/03/22 09:31:27 [metric_collector] {"stage_name":"metric_collector","events_processed":12594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2518.8,"last_update":"2026-03-22T09:31:22.368801384Z"} +2026/03/22 09:31:27 ───────────────────────────────────────────────── +2026/03/22 09:31:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:31:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:31:27.377899508Z"} +2026/03/22 09:31:32 [detection_layer] {"stage_name":"detection_layer","events_processed":419,"events_dropped":0,"avg_latency_ms":17.795231735635703,"throughput_eps":0,"last_update":"2026-03-22T09:31:27.479209223Z"} +2026/03/22 09:31:32 [transform_engine] {"stage_name":"transform_engine","events_processed":420,"events_dropped":0,"avg_latency_ms":783.6576162110816,"throughput_eps":0,"last_update":"2026-03-22T09:31:28.927123962Z"} +2026/03/22 09:31:32 [log_collector] {"stage_name":"log_collector","events_processed":20545,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109,"last_update":"2026-03-22T09:31:27.368577843Z"} +2026/03/22 09:31:32 [metric_collector] {"stage_name":"metric_collector","events_processed":12599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2519.8,"last_update":"2026-03-22T09:31:27.369036463Z"} +2026/03/22 09:31:32 ───────────────────────────────────────────────── +2026/03/22 09:31:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:31:37 [log_collector] {"stage_name":"log_collector","events_processed":20545,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109,"last_update":"2026-03-22T09:31:37.368630575Z"} +2026/03/22 09:31:37 [metric_collector] {"stage_name":"metric_collector","events_processed":12604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2520.8,"last_update":"2026-03-22T09:31:32.369062448Z"} +2026/03/22 09:31:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:31:32.379342788Z"} +2026/03/22 09:31:37 [detection_layer] {"stage_name":"detection_layer","events_processed":420,"events_dropped":0,"avg_latency_ms":18.493833988508563,"throughput_eps":0,"last_update":"2026-03-22T09:31:32.479805803Z"} +2026/03/22 09:31:37 [transform_engine] {"stage_name":"transform_engine","events_processed":420,"events_dropped":0,"avg_latency_ms":783.6576162110816,"throughput_eps":0,"last_update":"2026-03-22T09:31:32.47983038Z"} +2026/03/22 09:31:37 ───────────────────────────────────────────────── +2026/03/22 09:31:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:31:42 [log_collector] {"stage_name":"log_collector","events_processed":20545,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109,"last_update":"2026-03-22T09:31:37.368630575Z"} +2026/03/22 09:31:42 [metric_collector] {"stage_name":"metric_collector","events_processed":12609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2521.8,"last_update":"2026-03-22T09:31:37.369070819Z"} +2026/03/22 09:31:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:31:37.377855334Z"} +2026/03/22 09:31:42 [detection_layer] {"stage_name":"detection_layer","events_processed":420,"events_dropped":0,"avg_latency_ms":18.493833988508563,"throughput_eps":0,"last_update":"2026-03-22T09:31:37.479238781Z"} +2026/03/22 09:31:42 [transform_engine] {"stage_name":"transform_engine","events_processed":420,"events_dropped":0,"avg_latency_ms":783.6576162110816,"throughput_eps":0,"last_update":"2026-03-22T09:31:37.479269089Z"} +2026/03/22 09:31:42 ───────────────────────────────────────────────── +2026/03/22 09:31:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:31:47 [detection_layer] {"stage_name":"detection_layer","events_processed":420,"events_dropped":0,"avg_latency_ms":18.493833988508563,"throughput_eps":0,"last_update":"2026-03-22T09:31:42.479560027Z"} +2026/03/22 09:31:47 [transform_engine] {"stage_name":"transform_engine","events_processed":420,"events_dropped":0,"avg_latency_ms":783.6576162110816,"throughput_eps":0,"last_update":"2026-03-22T09:31:42.479520472Z"} +2026/03/22 09:31:47 [log_collector] {"stage_name":"log_collector","events_processed":20545,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109,"last_update":"2026-03-22T09:31:42.368117152Z"} +2026/03/22 09:31:47 [metric_collector] {"stage_name":"metric_collector","events_processed":12614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2522.8,"last_update":"2026-03-22T09:31:42.368491109Z"} +2026/03/22 09:31:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5048,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:31:42.377257219Z"} +2026/03/22 09:31:47 ───────────────────────────────────────────────── +2026/03/22 09:31:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:31:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5050,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:31:47.377004794Z"} +2026/03/22 09:31:52 [detection_layer] {"stage_name":"detection_layer","events_processed":420,"events_dropped":0,"avg_latency_ms":18.493833988508563,"throughput_eps":0,"last_update":"2026-03-22T09:31:47.479346837Z"} +2026/03/22 09:31:52 [transform_engine] {"stage_name":"transform_engine","events_processed":420,"events_dropped":0,"avg_latency_ms":783.6576162110816,"throughput_eps":0,"last_update":"2026-03-22T09:31:47.47940048Z"} +2026/03/22 09:31:52 [log_collector] {"stage_name":"log_collector","events_processed":20545,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109,"last_update":"2026-03-22T09:31:47.368177717Z"} +2026/03/22 09:31:52 [metric_collector] {"stage_name":"metric_collector","events_processed":12619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2523.8,"last_update":"2026-03-22T09:31:47.368619483Z"} +2026/03/22 09:31:52 ───────────────────────────────────────────────── +2026/03/22 09:31:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:31:57 [detection_layer] {"stage_name":"detection_layer","events_processed":420,"events_dropped":0,"avg_latency_ms":18.493833988508563,"throughput_eps":0,"last_update":"2026-03-22T09:31:52.479301037Z"} +2026/03/22 09:31:57 [transform_engine] {"stage_name":"transform_engine","events_processed":420,"events_dropped":0,"avg_latency_ms":783.6576162110816,"throughput_eps":0,"last_update":"2026-03-22T09:31:52.479281781Z"} +2026/03/22 09:31:57 [log_collector] {"stage_name":"log_collector","events_processed":20545,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109,"last_update":"2026-03-22T09:31:52.368530501Z"} +2026/03/22 09:31:57 [metric_collector] {"stage_name":"metric_collector","events_processed":12624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2524.8,"last_update":"2026-03-22T09:31:52.368732768Z"} +2026/03/22 09:31:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:31:52.378000429Z"} +2026/03/22 09:31:57 ───────────────────────────────────────────────── +2026/03/22 09:32:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:32:02 [log_collector] {"stage_name":"log_collector","events_processed":20545,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109,"last_update":"2026-03-22T09:31:57.368680681Z"} +2026/03/22 09:32:02 [metric_collector] {"stage_name":"metric_collector","events_processed":12629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2525.8,"last_update":"2026-03-22T09:31:57.368935689Z"} +2026/03/22 09:32:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:31:57.379702592Z"} +2026/03/22 09:32:02 [detection_layer] {"stage_name":"detection_layer","events_processed":420,"events_dropped":0,"avg_latency_ms":18.493833988508563,"throughput_eps":0,"last_update":"2026-03-22T09:31:57.478972773Z"} +2026/03/22 09:32:02 [transform_engine] {"stage_name":"transform_engine","events_processed":421,"events_dropped":0,"avg_latency_ms":641.3200753688653,"throughput_eps":0,"last_update":"2026-03-22T09:31:57.550894222Z"} +2026/03/22 09:32:02 ───────────────────────────────────────────────── +2026/03/22 09:32:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:32:07 [log_collector] {"stage_name":"log_collector","events_processed":20545,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109,"last_update":"2026-03-22T09:32:02.368846289Z"} +2026/03/22 09:32:07 [metric_collector] {"stage_name":"metric_collector","events_processed":12634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2526.8,"last_update":"2026-03-22T09:32:02.369596135Z"} +2026/03/22 09:32:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5056,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:32:02.377693925Z"} +2026/03/22 09:32:07 [detection_layer] {"stage_name":"detection_layer","events_processed":421,"events_dropped":0,"avg_latency_ms":18.98793759080685,"throughput_eps":0,"last_update":"2026-03-22T09:32:02.479920528Z"} +2026/03/22 09:32:07 [transform_engine] {"stage_name":"transform_engine","events_processed":421,"events_dropped":0,"avg_latency_ms":641.3200753688653,"throughput_eps":0,"last_update":"2026-03-22T09:32:02.47883033Z"} +2026/03/22 09:32:07 ───────────────────────────────────────────────── +2026/03/22 09:32:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:32:12 [transform_engine] {"stage_name":"transform_engine","events_processed":421,"events_dropped":0,"avg_latency_ms":641.3200753688653,"throughput_eps":0,"last_update":"2026-03-22T09:32:07.479781941Z"} +2026/03/22 09:32:12 [log_collector] {"stage_name":"log_collector","events_processed":20545,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109,"last_update":"2026-03-22T09:32:07.368573275Z"} +2026/03/22 09:32:12 [metric_collector] {"stage_name":"metric_collector","events_processed":12639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2527.8,"last_update":"2026-03-22T09:32:07.36894116Z"} +2026/03/22 09:32:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:32:07.377473852Z"} +2026/03/22 09:32:12 [detection_layer] {"stage_name":"detection_layer","events_processed":421,"events_dropped":0,"avg_latency_ms":18.98793759080685,"throughput_eps":0,"last_update":"2026-03-22T09:32:07.479772062Z"} +2026/03/22 09:32:12 ───────────────────────────────────────────────── +2026/03/22 09:32:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:32:17 [log_collector] {"stage_name":"log_collector","events_processed":20545,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109,"last_update":"2026-03-22T09:32:12.368512831Z"} +2026/03/22 09:32:17 [metric_collector] {"stage_name":"metric_collector","events_processed":12644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2528.8,"last_update":"2026-03-22T09:32:12.368828626Z"} +2026/03/22 09:32:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:32:12.377407486Z"} +2026/03/22 09:32:17 [detection_layer] {"stage_name":"detection_layer","events_processed":421,"events_dropped":0,"avg_latency_ms":18.98793759080685,"throughput_eps":0,"last_update":"2026-03-22T09:32:12.479729893Z"} +2026/03/22 09:32:17 [transform_engine] {"stage_name":"transform_engine","events_processed":421,"events_dropped":0,"avg_latency_ms":641.3200753688653,"throughput_eps":0,"last_update":"2026-03-22T09:32:12.479746876Z"} +2026/03/22 09:32:17 ───────────────────────────────────────────────── +2026/03/22 09:32:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:32:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5062,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:32:17.377575599Z"} +2026/03/22 09:32:22 [detection_layer] {"stage_name":"detection_layer","events_processed":421,"events_dropped":0,"avg_latency_ms":18.98793759080685,"throughput_eps":0,"last_update":"2026-03-22T09:32:17.480023316Z"} +2026/03/22 09:32:22 [transform_engine] {"stage_name":"transform_engine","events_processed":421,"events_dropped":0,"avg_latency_ms":641.3200753688653,"throughput_eps":0,"last_update":"2026-03-22T09:32:17.478822846Z"} +2026/03/22 09:32:22 [log_collector] {"stage_name":"log_collector","events_processed":20545,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109,"last_update":"2026-03-22T09:32:17.368111432Z"} +2026/03/22 09:32:22 [metric_collector] {"stage_name":"metric_collector","events_processed":12649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2529.8,"last_update":"2026-03-22T09:32:17.368427267Z"} +2026/03/22 09:32:22 ───────────────────────────────────────────────── +2026/03/22 09:32:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:32:27 [log_collector] {"stage_name":"log_collector","events_processed":20545,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109,"last_update":"2026-03-22T09:32:22.369440125Z"} +2026/03/22 09:32:27 [metric_collector] {"stage_name":"metric_collector","events_processed":12654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2530.8,"last_update":"2026-03-22T09:32:22.369779365Z"} +2026/03/22 09:32:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:32:22.379276975Z"} +2026/03/22 09:32:27 [detection_layer] {"stage_name":"detection_layer","events_processed":421,"events_dropped":0,"avg_latency_ms":18.98793759080685,"throughput_eps":0,"last_update":"2026-03-22T09:32:22.479387626Z"} +2026/03/22 09:32:27 [transform_engine] {"stage_name":"transform_engine","events_processed":421,"events_dropped":0,"avg_latency_ms":641.3200753688653,"throughput_eps":0,"last_update":"2026-03-22T09:32:22.479396033Z"} +2026/03/22 09:32:27 ───────────────────────────────────────────────── +2026/03/22 09:32:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:32:32 [log_collector] {"stage_name":"log_collector","events_processed":20545,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109,"last_update":"2026-03-22T09:32:27.368865809Z"} +2026/03/22 09:32:32 [metric_collector] {"stage_name":"metric_collector","events_processed":12659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2531.8,"last_update":"2026-03-22T09:32:27.369501596Z"} +2026/03/22 09:32:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:32:27.378563223Z"} +2026/03/22 09:32:32 [detection_layer] {"stage_name":"detection_layer","events_processed":421,"events_dropped":0,"avg_latency_ms":18.98793759080685,"throughput_eps":0,"last_update":"2026-03-22T09:32:27.479804068Z"} +2026/03/22 09:32:32 [transform_engine] {"stage_name":"transform_engine","events_processed":422,"events_dropped":0,"avg_latency_ms":527.4542970950922,"throughput_eps":0,"last_update":"2026-03-22T09:32:27.551776277Z"} +2026/03/22 09:32:32 ───────────────────────────────────────────────── +Saved state: 13 clusters, 20546 messages, reason: none +2026/03/22 09:32:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:32:37 [transform_engine] {"stage_name":"transform_engine","events_processed":422,"events_dropped":0,"avg_latency_ms":527.4542970950922,"throughput_eps":0,"last_update":"2026-03-22T09:32:32.479617814Z"} +2026/03/22 09:32:37 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:32:37.368386832Z"} +2026/03/22 09:32:37 [metric_collector] {"stage_name":"metric_collector","events_processed":12664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2532.8,"last_update":"2026-03-22T09:32:32.369087746Z"} +2026/03/22 09:32:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:32:32.378474464Z"} +2026/03/22 09:32:37 [detection_layer] {"stage_name":"detection_layer","events_processed":422,"events_dropped":0,"avg_latency_ms":19.311880072645483,"throughput_eps":0,"last_update":"2026-03-22T09:32:32.479638764Z"} +2026/03/22 09:32:37 ───────────────────────────────────────────────── +2026/03/22 09:32:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:32:42 [transform_engine] {"stage_name":"transform_engine","events_processed":422,"events_dropped":0,"avg_latency_ms":527.4542970950922,"throughput_eps":0,"last_update":"2026-03-22T09:32:37.479201646Z"} +2026/03/22 09:32:42 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:32:37.368386832Z"} +2026/03/22 09:32:42 [metric_collector] {"stage_name":"metric_collector","events_processed":12669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2533.8,"last_update":"2026-03-22T09:32:37.368945802Z"} +2026/03/22 09:32:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:32:37.375984294Z"} +2026/03/22 09:32:42 [detection_layer] {"stage_name":"detection_layer","events_processed":422,"events_dropped":0,"avg_latency_ms":19.311880072645483,"throughput_eps":0,"last_update":"2026-03-22T09:32:37.479240029Z"} +2026/03/22 09:32:42 ───────────────────────────────────────────────── +2026/03/22 09:32:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:32:47 [metric_collector] {"stage_name":"metric_collector","events_processed":12674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2534.8,"last_update":"2026-03-22T09:32:42.368833774Z"} +2026/03/22 09:32:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5072,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:32:42.377856825Z"} +2026/03/22 09:32:47 [detection_layer] {"stage_name":"detection_layer","events_processed":422,"events_dropped":0,"avg_latency_ms":19.311880072645483,"throughput_eps":0,"last_update":"2026-03-22T09:32:42.479033549Z"} +2026/03/22 09:32:47 [transform_engine] {"stage_name":"transform_engine","events_processed":422,"events_dropped":0,"avg_latency_ms":527.4542970950922,"throughput_eps":0,"last_update":"2026-03-22T09:32:42.479056653Z"} +2026/03/22 09:32:47 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:32:42.368454667Z"} +2026/03/22 09:32:47 ───────────────────────────────────────────────── +2026/03/22 09:32:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:32:52 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:32:47.368424873Z"} +2026/03/22 09:32:52 [metric_collector] {"stage_name":"metric_collector","events_processed":12679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2535.8,"last_update":"2026-03-22T09:32:47.368279705Z"} +2026/03/22 09:32:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:32:47.377276677Z"} +2026/03/22 09:32:52 [detection_layer] {"stage_name":"detection_layer","events_processed":422,"events_dropped":0,"avg_latency_ms":19.311880072645483,"throughput_eps":0,"last_update":"2026-03-22T09:32:47.479478784Z"} +2026/03/22 09:32:52 [transform_engine] {"stage_name":"transform_engine","events_processed":422,"events_dropped":0,"avg_latency_ms":527.4542970950922,"throughput_eps":0,"last_update":"2026-03-22T09:32:47.47950255Z"} +2026/03/22 09:32:52 ───────────────────────────────────────────────── +2026/03/22 09:32:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:32:57 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:32:52.368297566Z"} +2026/03/22 09:32:57 [metric_collector] {"stage_name":"metric_collector","events_processed":12684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2536.8,"last_update":"2026-03-22T09:32:52.368896313Z"} +2026/03/22 09:32:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5076,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:32:52.377567902Z"} +2026/03/22 09:32:57 [detection_layer] {"stage_name":"detection_layer","events_processed":422,"events_dropped":0,"avg_latency_ms":19.311880072645483,"throughput_eps":0,"last_update":"2026-03-22T09:32:52.479790198Z"} +2026/03/22 09:32:57 [transform_engine] {"stage_name":"transform_engine","events_processed":422,"events_dropped":0,"avg_latency_ms":527.4542970950922,"throughput_eps":0,"last_update":"2026-03-22T09:32:52.479760811Z"} +2026/03/22 09:32:57 ───────────────────────────────────────────────── +2026/03/22 09:33:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:33:02 [metric_collector] {"stage_name":"metric_collector","events_processed":12689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2537.8,"last_update":"2026-03-22T09:32:57.368254428Z"} +2026/03/22 09:33:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:32:57.376380442Z"} +2026/03/22 09:33:02 [detection_layer] {"stage_name":"detection_layer","events_processed":422,"events_dropped":0,"avg_latency_ms":19.311880072645483,"throughput_eps":0,"last_update":"2026-03-22T09:32:57.479677406Z"} +2026/03/22 09:33:02 [transform_engine] {"stage_name":"transform_engine","events_processed":422,"events_dropped":0,"avg_latency_ms":527.4542970950922,"throughput_eps":0,"last_update":"2026-03-22T09:32:57.47960084Z"} +2026/03/22 09:33:02 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:32:57.368444222Z"} +2026/03/22 09:33:02 ───────────────────────────────────────────────── +2026/03/22 09:33:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:33:07 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:33:02.367981335Z"} +2026/03/22 09:33:07 [metric_collector] {"stage_name":"metric_collector","events_processed":12693,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2538.6,"last_update":"2026-03-22T09:33:02.367912633Z"} +2026/03/22 09:33:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:33:02.377338757Z"} +2026/03/22 09:33:07 [detection_layer] {"stage_name":"detection_layer","events_processed":423,"events_dropped":0,"avg_latency_ms":18.171826058116388,"throughput_eps":0,"last_update":"2026-03-22T09:33:02.479584528Z"} +2026/03/22 09:33:07 [transform_engine] {"stage_name":"transform_engine","events_processed":423,"events_dropped":0,"avg_latency_ms":442.3290400760738,"throughput_eps":0,"last_update":"2026-03-22T09:33:02.479611379Z"} +2026/03/22 09:33:07 ───────────────────────────────────────────────── +2026/03/22 09:33:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:33:12 [detection_layer] {"stage_name":"detection_layer","events_processed":423,"events_dropped":0,"avg_latency_ms":18.171826058116388,"throughput_eps":0,"last_update":"2026-03-22T09:33:07.479066481Z"} +2026/03/22 09:33:12 [transform_engine] {"stage_name":"transform_engine","events_processed":423,"events_dropped":0,"avg_latency_ms":442.3290400760738,"throughput_eps":0,"last_update":"2026-03-22T09:33:07.479047374Z"} +2026/03/22 09:33:12 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:33:07.367965429Z"} +2026/03/22 09:33:12 [metric_collector] {"stage_name":"metric_collector","events_processed":12699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2539.8,"last_update":"2026-03-22T09:33:07.368311602Z"} +2026/03/22 09:33:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5082,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:33:07.376858081Z"} +2026/03/22 09:33:12 ───────────────────────────────────────────────── +2026/03/22 09:33:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:33:17 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:33:12.368619675Z"} +2026/03/22 09:33:17 [metric_collector] {"stage_name":"metric_collector","events_processed":12704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2540.8,"last_update":"2026-03-22T09:33:12.369162656Z"} +2026/03/22 09:33:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:33:12.375464756Z"} +2026/03/22 09:33:17 [detection_layer] {"stage_name":"detection_layer","events_processed":423,"events_dropped":0,"avg_latency_ms":18.171826058116388,"throughput_eps":0,"last_update":"2026-03-22T09:33:12.479725146Z"} +2026/03/22 09:33:17 [transform_engine] {"stage_name":"transform_engine","events_processed":423,"events_dropped":0,"avg_latency_ms":442.3290400760738,"throughput_eps":0,"last_update":"2026-03-22T09:33:12.479683126Z"} +2026/03/22 09:33:17 ───────────────────────────────────────────────── +2026/03/22 09:33:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:33:22 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:33:17.367966154Z"} +2026/03/22 09:33:22 [metric_collector] {"stage_name":"metric_collector","events_processed":12709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2541.8,"last_update":"2026-03-22T09:33:17.368435653Z"} +2026/03/22 09:33:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:33:17.377321382Z"} +2026/03/22 09:33:22 [detection_layer] {"stage_name":"detection_layer","events_processed":423,"events_dropped":0,"avg_latency_ms":18.171826058116388,"throughput_eps":0,"last_update":"2026-03-22T09:33:17.479534682Z"} +2026/03/22 09:33:22 [transform_engine] {"stage_name":"transform_engine","events_processed":423,"events_dropped":0,"avg_latency_ms":442.3290400760738,"throughput_eps":0,"last_update":"2026-03-22T09:33:17.479553017Z"} +2026/03/22 09:33:22 ───────────────────────────────────────────────── +2026/03/22 09:33:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:33:27 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:33:22.367959943Z"} +2026/03/22 09:33:27 [metric_collector] {"stage_name":"metric_collector","events_processed":12714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2542.8,"last_update":"2026-03-22T09:33:22.368286268Z"} +2026/03/22 09:33:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:33:22.377345268Z"} +2026/03/22 09:33:27 [detection_layer] {"stage_name":"detection_layer","events_processed":423,"events_dropped":0,"avg_latency_ms":18.171826058116388,"throughput_eps":0,"last_update":"2026-03-22T09:33:22.479560722Z"} +2026/03/22 09:33:27 [transform_engine] {"stage_name":"transform_engine","events_processed":423,"events_dropped":0,"avg_latency_ms":442.3290400760738,"throughput_eps":0,"last_update":"2026-03-22T09:33:22.479531577Z"} +2026/03/22 09:33:27 ───────────────────────────────────────────────── +2026/03/22 09:33:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:33:32 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:33:32.368425302Z"} +2026/03/22 09:33:32 [metric_collector] {"stage_name":"metric_collector","events_processed":12719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2543.8,"last_update":"2026-03-22T09:33:27.368253715Z"} +2026/03/22 09:33:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:33:27.377036698Z"} +2026/03/22 09:33:32 [detection_layer] {"stage_name":"detection_layer","events_processed":423,"events_dropped":0,"avg_latency_ms":18.171826058116388,"throughput_eps":0,"last_update":"2026-03-22T09:33:27.479254826Z"} +2026/03/22 09:33:32 [transform_engine] {"stage_name":"transform_engine","events_processed":424,"events_dropped":0,"avg_latency_ms":368.68558746085904,"throughput_eps":0,"last_update":"2026-03-22T09:33:27.553345042Z"} +2026/03/22 09:33:32 ───────────────────────────────────────────────── +2026/03/22 09:33:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:33:37 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:33:37.368158475Z"} +2026/03/22 09:33:37 [metric_collector] {"stage_name":"metric_collector","events_processed":12724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2544.8,"last_update":"2026-03-22T09:33:32.368721239Z"} +2026/03/22 09:33:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:33:32.377850103Z"} +2026/03/22 09:33:37 [detection_layer] {"stage_name":"detection_layer","events_processed":424,"events_dropped":0,"avg_latency_ms":18.11294084649311,"throughput_eps":0,"last_update":"2026-03-22T09:33:32.479030304Z"} +2026/03/22 09:33:37 [transform_engine] {"stage_name":"transform_engine","events_processed":424,"events_dropped":0,"avg_latency_ms":368.68558746085904,"throughput_eps":0,"last_update":"2026-03-22T09:33:32.479041936Z"} +2026/03/22 09:33:37 ───────────────────────────────────────────────── +2026/03/22 09:33:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:33:42 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:33:42.368464525Z"} +2026/03/22 09:33:42 [metric_collector] {"stage_name":"metric_collector","events_processed":12729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2545.8,"last_update":"2026-03-22T09:33:37.368688821Z"} +2026/03/22 09:33:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:33:37.377393163Z"} +2026/03/22 09:33:42 [detection_layer] {"stage_name":"detection_layer","events_processed":424,"events_dropped":0,"avg_latency_ms":18.11294084649311,"throughput_eps":0,"last_update":"2026-03-22T09:33:37.479602705Z"} +2026/03/22 09:33:42 [transform_engine] {"stage_name":"transform_engine","events_processed":424,"events_dropped":0,"avg_latency_ms":368.68558746085904,"throughput_eps":0,"last_update":"2026-03-22T09:33:37.479615991Z"} +2026/03/22 09:33:42 ───────────────────────────────────────────────── +2026/03/22 09:33:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:33:47 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:33:42.368464525Z"} +2026/03/22 09:33:47 [metric_collector] {"stage_name":"metric_collector","events_processed":12734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2546.8,"last_update":"2026-03-22T09:33:42.368835766Z"} +2026/03/22 09:33:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:33:42.377458191Z"} +2026/03/22 09:33:47 [detection_layer] {"stage_name":"detection_layer","events_processed":424,"events_dropped":0,"avg_latency_ms":18.11294084649311,"throughput_eps":0,"last_update":"2026-03-22T09:33:42.479658386Z"} +2026/03/22 09:33:47 [transform_engine] {"stage_name":"transform_engine","events_processed":424,"events_dropped":0,"avg_latency_ms":368.68558746085904,"throughput_eps":0,"last_update":"2026-03-22T09:33:42.479677072Z"} +2026/03/22 09:33:47 ───────────────────────────────────────────────── +2026/03/22 09:33:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:33:52 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:33:52.367977466Z"} +2026/03/22 09:33:52 [metric_collector] {"stage_name":"metric_collector","events_processed":12739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2547.8,"last_update":"2026-03-22T09:33:47.368582115Z"} +2026/03/22 09:33:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:33:47.375580088Z"} +2026/03/22 09:33:52 [detection_layer] {"stage_name":"detection_layer","events_processed":424,"events_dropped":0,"avg_latency_ms":18.11294084649311,"throughput_eps":0,"last_update":"2026-03-22T09:33:47.4789636Z"} +2026/03/22 09:33:52 [transform_engine] {"stage_name":"transform_engine","events_processed":424,"events_dropped":0,"avg_latency_ms":368.68558746085904,"throughput_eps":0,"last_update":"2026-03-22T09:33:47.478936759Z"} +2026/03/22 09:33:52 ───────────────────────────────────────────────── +2026/03/22 09:33:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:33:57 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:33:52.367977466Z"} +2026/03/22 09:33:57 [metric_collector] {"stage_name":"metric_collector","events_processed":12744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2548.8,"last_update":"2026-03-22T09:33:52.368417278Z"} +2026/03/22 09:33:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:33:52.376402662Z"} +2026/03/22 09:33:57 [detection_layer] {"stage_name":"detection_layer","events_processed":424,"events_dropped":0,"avg_latency_ms":18.11294084649311,"throughput_eps":0,"last_update":"2026-03-22T09:33:52.479602222Z"} +2026/03/22 09:33:57 [transform_engine] {"stage_name":"transform_engine","events_processed":424,"events_dropped":0,"avg_latency_ms":368.68558746085904,"throughput_eps":0,"last_update":"2026-03-22T09:33:52.479615397Z"} +2026/03/22 09:33:57 ───────────────────────────────────────────────── +2026/03/22 09:34:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:34:02 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:34:02.36830802Z"} +2026/03/22 09:34:02 [metric_collector] {"stage_name":"metric_collector","events_processed":12749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2549.8,"last_update":"2026-03-22T09:33:57.369035406Z"} +2026/03/22 09:34:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:33:57.377394397Z"} +2026/03/22 09:34:02 [detection_layer] {"stage_name":"detection_layer","events_processed":424,"events_dropped":0,"avg_latency_ms":18.11294084649311,"throughput_eps":0,"last_update":"2026-03-22T09:33:57.479642914Z"} +2026/03/22 09:34:02 [transform_engine] {"stage_name":"transform_engine","events_processed":425,"events_dropped":0,"avg_latency_ms":308.66454056868724,"throughput_eps":0,"last_update":"2026-03-22T09:33:57.548238106Z"} +2026/03/22 09:34:02 ───────────────────────────────────────────────── +2026/03/22 09:34:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:34:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:34:02.376982855Z"} +2026/03/22 09:34:07 [detection_layer] {"stage_name":"detection_layer","events_processed":425,"events_dropped":0,"avg_latency_ms":18.48596347719449,"throughput_eps":0,"last_update":"2026-03-22T09:34:02.479268855Z"} +2026/03/22 09:34:07 [transform_engine] {"stage_name":"transform_engine","events_processed":425,"events_dropped":0,"avg_latency_ms":308.66454056868724,"throughput_eps":0,"last_update":"2026-03-22T09:34:02.47922425Z"} +2026/03/22 09:34:07 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:34:02.36830802Z"} +2026/03/22 09:34:07 [metric_collector] {"stage_name":"metric_collector","events_processed":12754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2550.8,"last_update":"2026-03-22T09:34:02.36874705Z"} +2026/03/22 09:34:07 ───────────────────────────────────────────────── +2026/03/22 09:34:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:34:12 [transform_engine] {"stage_name":"transform_engine","events_processed":425,"events_dropped":0,"avg_latency_ms":308.66454056868724,"throughput_eps":0,"last_update":"2026-03-22T09:34:07.479833327Z"} +2026/03/22 09:34:12 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:34:12.368951338Z"} +2026/03/22 09:34:12 [metric_collector] {"stage_name":"metric_collector","events_processed":12759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2551.8,"last_update":"2026-03-22T09:34:07.368645998Z"} +2026/03/22 09:34:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:34:07.377624866Z"} +2026/03/22 09:34:12 [detection_layer] {"stage_name":"detection_layer","events_processed":425,"events_dropped":0,"avg_latency_ms":18.48596347719449,"throughput_eps":0,"last_update":"2026-03-22T09:34:07.479855249Z"} +2026/03/22 09:34:12 ───────────────────────────────────────────────── +2026/03/22 09:34:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:34:17 [detection_layer] {"stage_name":"detection_layer","events_processed":425,"events_dropped":0,"avg_latency_ms":18.48596347719449,"throughput_eps":0,"last_update":"2026-03-22T09:34:12.479943764Z"} +2026/03/22 09:34:17 [transform_engine] {"stage_name":"transform_engine","events_processed":425,"events_dropped":0,"avg_latency_ms":308.66454056868724,"throughput_eps":0,"last_update":"2026-03-22T09:34:12.478821684Z"} +2026/03/22 09:34:17 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:34:12.368951338Z"} +2026/03/22 09:34:17 [metric_collector] {"stage_name":"metric_collector","events_processed":12764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2552.8,"last_update":"2026-03-22T09:34:12.369119009Z"} +2026/03/22 09:34:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:34:12.377707528Z"} +2026/03/22 09:34:17 ───────────────────────────────────────────────── +2026/03/22 09:34:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:34:22 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:34:17.368815075Z"} +2026/03/22 09:34:22 [metric_collector] {"stage_name":"metric_collector","events_processed":12769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2553.8,"last_update":"2026-03-22T09:34:17.369114338Z"} +2026/03/22 09:34:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:34:17.378093315Z"} +2026/03/22 09:34:22 [detection_layer] {"stage_name":"detection_layer","events_processed":425,"events_dropped":0,"avg_latency_ms":18.48596347719449,"throughput_eps":0,"last_update":"2026-03-22T09:34:17.479315519Z"} +2026/03/22 09:34:22 [transform_engine] {"stage_name":"transform_engine","events_processed":425,"events_dropped":0,"avg_latency_ms":308.66454056868724,"throughput_eps":0,"last_update":"2026-03-22T09:34:17.479344955Z"} +2026/03/22 09:34:22 ───────────────────────────────────────────────── +2026/03/22 09:34:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:34:27 [transform_engine] {"stage_name":"transform_engine","events_processed":425,"events_dropped":0,"avg_latency_ms":308.66454056868724,"throughput_eps":0,"last_update":"2026-03-22T09:34:22.479897225Z"} +2026/03/22 09:34:27 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:34:22.367981119Z"} +2026/03/22 09:34:27 [metric_collector] {"stage_name":"metric_collector","events_processed":12774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2554.8,"last_update":"2026-03-22T09:34:22.368249133Z"} +2026/03/22 09:34:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:34:22.376667747Z"} +2026/03/22 09:34:27 [detection_layer] {"stage_name":"detection_layer","events_processed":425,"events_dropped":0,"avg_latency_ms":18.48596347719449,"throughput_eps":0,"last_update":"2026-03-22T09:34:22.479875093Z"} +2026/03/22 09:34:27 ───────────────────────────────────────────────── +2026/03/22 09:34:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:34:32 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:34:27.368514513Z"} +2026/03/22 09:34:32 [metric_collector] {"stage_name":"metric_collector","events_processed":12779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2555.8,"last_update":"2026-03-22T09:34:27.368908287Z"} +2026/03/22 09:34:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:34:27.377990332Z"} +2026/03/22 09:34:32 [detection_layer] {"stage_name":"detection_layer","events_processed":425,"events_dropped":0,"avg_latency_ms":18.48596347719449,"throughput_eps":0,"last_update":"2026-03-22T09:34:27.479235229Z"} +2026/03/22 09:34:32 [transform_engine] {"stage_name":"transform_engine","events_processed":426,"events_dropped":0,"avg_latency_ms":257.4506036549498,"throughput_eps":0,"last_update":"2026-03-22T09:34:27.531852978Z"} +2026/03/22 09:34:32 ───────────────────────────────────────────────── +2026/03/22 09:34:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:34:37 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:34:32.368716524Z"} +2026/03/22 09:34:37 [metric_collector] {"stage_name":"metric_collector","events_processed":12784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2556.8,"last_update":"2026-03-22T09:34:32.36901213Z"} +2026/03/22 09:34:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:34:32.377623824Z"} +2026/03/22 09:34:37 [detection_layer] {"stage_name":"detection_layer","events_processed":426,"events_dropped":0,"avg_latency_ms":18.702973581755593,"throughput_eps":0,"last_update":"2026-03-22T09:34:32.479868224Z"} +2026/03/22 09:34:37 [transform_engine] {"stage_name":"transform_engine","events_processed":426,"events_dropped":0,"avg_latency_ms":257.4506036549498,"throughput_eps":0,"last_update":"2026-03-22T09:34:32.479843557Z"} +2026/03/22 09:34:37 ───────────────────────────────────────────────── +2026/03/22 09:34:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:34:42 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:34:37.368004443Z"} +2026/03/22 09:34:42 [metric_collector] {"stage_name":"metric_collector","events_processed":12789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2557.8,"last_update":"2026-03-22T09:34:37.368426371Z"} +2026/03/22 09:34:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:34:37.376835036Z"} +2026/03/22 09:34:42 [detection_layer] {"stage_name":"detection_layer","events_processed":426,"events_dropped":0,"avg_latency_ms":18.702973581755593,"throughput_eps":0,"last_update":"2026-03-22T09:34:37.479111288Z"} +2026/03/22 09:34:42 [transform_engine] {"stage_name":"transform_engine","events_processed":426,"events_dropped":0,"avg_latency_ms":257.4506036549498,"throughput_eps":0,"last_update":"2026-03-22T09:34:37.479133531Z"} +2026/03/22 09:34:42 ───────────────────────────────────────────────── +2026/03/22 09:34:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:34:47 [metric_collector] {"stage_name":"metric_collector","events_processed":12794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2558.8,"last_update":"2026-03-22T09:34:42.36902528Z"} +2026/03/22 09:34:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:34:42.378279975Z"} +2026/03/22 09:34:47 [detection_layer] {"stage_name":"detection_layer","events_processed":426,"events_dropped":0,"avg_latency_ms":18.702973581755593,"throughput_eps":0,"last_update":"2026-03-22T09:34:42.479469857Z"} +2026/03/22 09:34:47 [transform_engine] {"stage_name":"transform_engine","events_processed":426,"events_dropped":0,"avg_latency_ms":257.4506036549498,"throughput_eps":0,"last_update":"2026-03-22T09:34:42.47949206Z"} +2026/03/22 09:34:47 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:34:42.368567113Z"} +2026/03/22 09:34:47 ───────────────────────────────────────────────── +2026/03/22 09:34:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:34:52 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:34:47.368441852Z"} +2026/03/22 09:34:52 [metric_collector] {"stage_name":"metric_collector","events_processed":12799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2559.8,"last_update":"2026-03-22T09:34:47.368724154Z"} +2026/03/22 09:34:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5122,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:34:47.375905598Z"} +2026/03/22 09:34:52 [detection_layer] {"stage_name":"detection_layer","events_processed":426,"events_dropped":0,"avg_latency_ms":18.702973581755593,"throughput_eps":0,"last_update":"2026-03-22T09:34:47.479141619Z"} +2026/03/22 09:34:52 [transform_engine] {"stage_name":"transform_engine","events_processed":426,"events_dropped":0,"avg_latency_ms":257.4506036549498,"throughput_eps":0,"last_update":"2026-03-22T09:34:47.479116401Z"} +2026/03/22 09:34:52 ───────────────────────────────────────────────── +2026/03/22 09:34:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:34:57 [transform_engine] {"stage_name":"transform_engine","events_processed":426,"events_dropped":0,"avg_latency_ms":257.4506036549498,"throughput_eps":0,"last_update":"2026-03-22T09:34:52.478933239Z"} +2026/03/22 09:34:57 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:34:52.368485416Z"} +2026/03/22 09:34:57 [metric_collector] {"stage_name":"metric_collector","events_processed":12804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2560.8,"last_update":"2026-03-22T09:34:52.36884752Z"} +2026/03/22 09:34:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:34:52.377771632Z"} +2026/03/22 09:34:57 [detection_layer] {"stage_name":"detection_layer","events_processed":426,"events_dropped":0,"avg_latency_ms":18.702973581755593,"throughput_eps":0,"last_update":"2026-03-22T09:34:52.478959189Z"} +2026/03/22 09:34:57 ───────────────────────────────────────────────── +2026/03/22 09:35:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:35:02 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:34:57.367956014Z"} +2026/03/22 09:35:02 [metric_collector] {"stage_name":"metric_collector","events_processed":12809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2561.8,"last_update":"2026-03-22T09:34:57.368316976Z"} +2026/03/22 09:35:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5126,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:34:57.377597712Z"} +2026/03/22 09:35:02 [detection_layer] {"stage_name":"detection_layer","events_processed":426,"events_dropped":0,"avg_latency_ms":18.702973581755593,"throughput_eps":0,"last_update":"2026-03-22T09:34:57.479854086Z"} +2026/03/22 09:35:02 [transform_engine] {"stage_name":"transform_engine","events_processed":427,"events_dropped":0,"avg_latency_ms":219.39654752395987,"throughput_eps":0,"last_update":"2026-03-22T09:34:57.546985685Z"} +2026/03/22 09:35:02 ───────────────────────────────────────────────── +2026/03/22 09:35:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:35:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5128,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:35:02.377490311Z"} +2026/03/22 09:35:07 [detection_layer] {"stage_name":"detection_layer","events_processed":427,"events_dropped":0,"avg_latency_ms":18.848163465404475,"throughput_eps":0,"last_update":"2026-03-22T09:35:02.479732458Z"} +2026/03/22 09:35:07 [transform_engine] {"stage_name":"transform_engine","events_processed":427,"events_dropped":0,"avg_latency_ms":219.39654752395987,"throughput_eps":0,"last_update":"2026-03-22T09:35:02.479706538Z"} +2026/03/22 09:35:07 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:35:02.368216829Z"} +2026/03/22 09:35:07 [metric_collector] {"stage_name":"metric_collector","events_processed":12814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2562.8,"last_update":"2026-03-22T09:35:02.368618879Z"} +2026/03/22 09:35:07 ───────────────────────────────────────────────── +2026/03/22 09:35:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:35:12 [detection_layer] {"stage_name":"detection_layer","events_processed":427,"events_dropped":0,"avg_latency_ms":18.848163465404475,"throughput_eps":0,"last_update":"2026-03-22T09:35:07.479456968Z"} +2026/03/22 09:35:12 [transform_engine] {"stage_name":"transform_engine","events_processed":427,"events_dropped":0,"avg_latency_ms":219.39654752395987,"throughput_eps":0,"last_update":"2026-03-22T09:35:07.479469993Z"} +2026/03/22 09:35:12 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:35:12.367982462Z"} +2026/03/22 09:35:12 [metric_collector] {"stage_name":"metric_collector","events_processed":12819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2563.8,"last_update":"2026-03-22T09:35:07.368225564Z"} +2026/03/22 09:35:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5130,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:35:07.377275347Z"} +2026/03/22 09:35:12 ───────────────────────────────────────────────── +2026/03/22 09:35:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:35:17 [metric_collector] {"stage_name":"metric_collector","events_processed":12824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2564.8,"last_update":"2026-03-22T09:35:12.368428586Z"} +2026/03/22 09:35:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:35:12.377982937Z"} +2026/03/22 09:35:17 [detection_layer] {"stage_name":"detection_layer","events_processed":427,"events_dropped":0,"avg_latency_ms":18.848163465404475,"throughput_eps":0,"last_update":"2026-03-22T09:35:12.479234526Z"} +2026/03/22 09:35:17 [transform_engine] {"stage_name":"transform_engine","events_processed":427,"events_dropped":0,"avg_latency_ms":219.39654752395987,"throughput_eps":0,"last_update":"2026-03-22T09:35:12.479246961Z"} +2026/03/22 09:35:17 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:35:12.367982462Z"} +2026/03/22 09:35:17 ───────────────────────────────────────────────── +2026/03/22 09:35:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:35:22 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:35:22.368199737Z"} +2026/03/22 09:35:22 [metric_collector] {"stage_name":"metric_collector","events_processed":12829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2565.8,"last_update":"2026-03-22T09:35:17.368395097Z"} +2026/03/22 09:35:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:35:17.377462683Z"} +2026/03/22 09:35:22 [detection_layer] {"stage_name":"detection_layer","events_processed":427,"events_dropped":0,"avg_latency_ms":18.848163465404475,"throughput_eps":0,"last_update":"2026-03-22T09:35:17.479708419Z"} +2026/03/22 09:35:22 [transform_engine] {"stage_name":"transform_engine","events_processed":427,"events_dropped":0,"avg_latency_ms":219.39654752395987,"throughput_eps":0,"last_update":"2026-03-22T09:35:17.479721112Z"} +2026/03/22 09:35:22 ───────────────────────────────────────────────── +2026/03/22 09:35:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:35:27 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:35:27.368853916Z"} +2026/03/22 09:35:27 [metric_collector] {"stage_name":"metric_collector","events_processed":12834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2566.8,"last_update":"2026-03-22T09:35:22.368593311Z"} +2026/03/22 09:35:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:35:22.37744789Z"} +2026/03/22 09:35:27 [detection_layer] {"stage_name":"detection_layer","events_processed":427,"events_dropped":0,"avg_latency_ms":18.848163465404475,"throughput_eps":0,"last_update":"2026-03-22T09:35:22.47967034Z"} +2026/03/22 09:35:27 [transform_engine] {"stage_name":"transform_engine","events_processed":427,"events_dropped":0,"avg_latency_ms":219.39654752395987,"throughput_eps":0,"last_update":"2026-03-22T09:35:22.479681111Z"} +2026/03/22 09:35:27 ───────────────────────────────────────────────── +2026/03/22 09:35:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:35:32 [transform_engine] {"stage_name":"transform_engine","events_processed":428,"events_dropped":0,"avg_latency_ms":189.2955822191679,"throughput_eps":0,"last_update":"2026-03-22T09:35:27.548112276Z"} +2026/03/22 09:35:32 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:35:27.368853916Z"} +2026/03/22 09:35:32 [metric_collector] {"stage_name":"metric_collector","events_processed":12839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2567.8,"last_update":"2026-03-22T09:35:27.369255395Z"} +2026/03/22 09:35:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:35:27.377963895Z"} +2026/03/22 09:35:32 [detection_layer] {"stage_name":"detection_layer","events_processed":427,"events_dropped":0,"avg_latency_ms":18.848163465404475,"throughput_eps":0,"last_update":"2026-03-22T09:35:27.479205216Z"} +2026/03/22 09:35:32 ───────────────────────────────────────────────── +2026/03/22 09:35:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:35:37 [detection_layer] {"stage_name":"detection_layer","events_processed":428,"events_dropped":0,"avg_latency_ms":18.77731717232358,"throughput_eps":0,"last_update":"2026-03-22T09:35:32.479375848Z"} +2026/03/22 09:35:37 [transform_engine] {"stage_name":"transform_engine","events_processed":428,"events_dropped":0,"avg_latency_ms":189.2955822191679,"throughput_eps":0,"last_update":"2026-03-22T09:35:32.479386829Z"} +2026/03/22 09:35:37 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:35:32.368535421Z"} +2026/03/22 09:35:37 [metric_collector] {"stage_name":"metric_collector","events_processed":12844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2568.8,"last_update":"2026-03-22T09:35:32.368895381Z"} +2026/03/22 09:35:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:35:32.377174188Z"} +2026/03/22 09:35:37 ───────────────────────────────────────────────── +2026/03/22 09:35:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:35:42 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:35:42.368214326Z"} +2026/03/22 09:35:42 [metric_collector] {"stage_name":"metric_collector","events_processed":12849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2569.8,"last_update":"2026-03-22T09:35:37.368227008Z"} +2026/03/22 09:35:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:35:37.376994591Z"} +2026/03/22 09:35:42 [detection_layer] {"stage_name":"detection_layer","events_processed":428,"events_dropped":0,"avg_latency_ms":18.77731717232358,"throughput_eps":0,"last_update":"2026-03-22T09:35:37.479212512Z"} +2026/03/22 09:35:42 [transform_engine] {"stage_name":"transform_engine","events_processed":428,"events_dropped":0,"avg_latency_ms":189.2955822191679,"throughput_eps":0,"last_update":"2026-03-22T09:35:37.479223845Z"} +2026/03/22 09:35:42 ───────────────────────────────────────────────── +2026/03/22 09:35:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:35:47 [transform_engine] {"stage_name":"transform_engine","events_processed":428,"events_dropped":0,"avg_latency_ms":189.2955822191679,"throughput_eps":0,"last_update":"2026-03-22T09:35:42.479402209Z"} +2026/03/22 09:35:47 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:35:42.368214326Z"} +2026/03/22 09:35:47 [metric_collector] {"stage_name":"metric_collector","events_processed":12854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2570.8,"last_update":"2026-03-22T09:35:42.36887949Z"} +2026/03/22 09:35:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:35:42.377200528Z"} +2026/03/22 09:35:47 [detection_layer] {"stage_name":"detection_layer","events_processed":428,"events_dropped":0,"avg_latency_ms":18.77731717232358,"throughput_eps":0,"last_update":"2026-03-22T09:35:42.479391488Z"} +2026/03/22 09:35:47 ───────────────────────────────────────────────── +2026/03/22 09:35:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:35:52 [transform_engine] {"stage_name":"transform_engine","events_processed":428,"events_dropped":0,"avg_latency_ms":189.2955822191679,"throughput_eps":0,"last_update":"2026-03-22T09:35:47.479022131Z"} +2026/03/22 09:35:52 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:35:52.368380594Z"} +2026/03/22 09:35:52 [metric_collector] {"stage_name":"metric_collector","events_processed":12859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2571.8,"last_update":"2026-03-22T09:35:47.368282668Z"} +2026/03/22 09:35:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:35:47.375037175Z"} +2026/03/22 09:35:52 [detection_layer] {"stage_name":"detection_layer","events_processed":428,"events_dropped":0,"avg_latency_ms":18.77731717232358,"throughput_eps":0,"last_update":"2026-03-22T09:35:47.478949712Z"} +2026/03/22 09:35:52 ───────────────────────────────────────────────── +2026/03/22 09:35:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:35:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:35:52.378283631Z"} +2026/03/22 09:35:57 [detection_layer] {"stage_name":"detection_layer","events_processed":428,"events_dropped":0,"avg_latency_ms":18.77731717232358,"throughput_eps":0,"last_update":"2026-03-22T09:35:52.479496378Z"} +2026/03/22 09:35:57 [transform_engine] {"stage_name":"transform_engine","events_processed":428,"events_dropped":0,"avg_latency_ms":189.2955822191679,"throughput_eps":0,"last_update":"2026-03-22T09:35:52.479510506Z"} +2026/03/22 09:35:57 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:35:52.368380594Z"} +2026/03/22 09:35:57 [metric_collector] {"stage_name":"metric_collector","events_processed":12864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2572.8,"last_update":"2026-03-22T09:35:52.368781161Z"} +2026/03/22 09:35:57 ───────────────────────────────────────────────── +2026/03/22 09:36:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:36:02 [detection_layer] {"stage_name":"detection_layer","events_processed":428,"events_dropped":0,"avg_latency_ms":18.77731717232358,"throughput_eps":0,"last_update":"2026-03-22T09:35:57.479283537Z"} +2026/03/22 09:36:02 [transform_engine] {"stage_name":"transform_engine","events_processed":429,"events_dropped":0,"avg_latency_ms":165.46248837533432,"throughput_eps":0,"last_update":"2026-03-22T09:35:57.549428348Z"} +2026/03/22 09:36:02 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:36:02.367994544Z"} +2026/03/22 09:36:02 [metric_collector] {"stage_name":"metric_collector","events_processed":12869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2573.8,"last_update":"2026-03-22T09:35:57.369075361Z"} +2026/03/22 09:36:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:35:57.377105651Z"} +2026/03/22 09:36:02 ───────────────────────────────────────────────── +2026/03/22 09:36:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:36:07 [detection_layer] {"stage_name":"detection_layer","events_processed":429,"events_dropped":0,"avg_latency_ms":18.739941137858867,"throughput_eps":0,"last_update":"2026-03-22T09:36:02.479992678Z"} +2026/03/22 09:36:07 [transform_engine] {"stage_name":"transform_engine","events_processed":429,"events_dropped":0,"avg_latency_ms":165.46248837533432,"throughput_eps":0,"last_update":"2026-03-22T09:36:02.478901007Z"} +2026/03/22 09:36:07 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:36:02.367994544Z"} +2026/03/22 09:36:07 [metric_collector] {"stage_name":"metric_collector","events_processed":12874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2574.8,"last_update":"2026-03-22T09:36:02.368221198Z"} +2026/03/22 09:36:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:36:02.376792114Z"} +2026/03/22 09:36:07 ───────────────────────────────────────────────── +Saved state: 13 clusters, 20549 messages, reason: none +2026/03/22 09:36:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:36:12 [log_collector] {"stage_name":"log_collector","events_processed":20548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.6,"last_update":"2026-03-22T09:36:07.368609985Z"} +2026/03/22 09:36:12 [metric_collector] {"stage_name":"metric_collector","events_processed":12879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2575.8,"last_update":"2026-03-22T09:36:07.36888943Z"} +2026/03/22 09:36:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:36:07.377450809Z"} +2026/03/22 09:36:12 [detection_layer] {"stage_name":"detection_layer","events_processed":429,"events_dropped":0,"avg_latency_ms":18.739941137858867,"throughput_eps":0,"last_update":"2026-03-22T09:36:07.479643953Z"} +2026/03/22 09:36:12 [transform_engine] {"stage_name":"transform_engine","events_processed":429,"events_dropped":0,"avg_latency_ms":165.46248837533432,"throughput_eps":0,"last_update":"2026-03-22T09:36:07.479657049Z"} +2026/03/22 09:36:12 ───────────────────────────────────────────────── +2026/03/22 09:36:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:36:17 [log_collector] {"stage_name":"log_collector","events_processed":20550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4110,"last_update":"2026-03-22T09:36:12.367952571Z"} +2026/03/22 09:36:17 [metric_collector] {"stage_name":"metric_collector","events_processed":12884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2576.8,"last_update":"2026-03-22T09:36:12.36830181Z"} +2026/03/22 09:36:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:36:12.377183982Z"} +2026/03/22 09:36:17 [detection_layer] {"stage_name":"detection_layer","events_processed":429,"events_dropped":0,"avg_latency_ms":18.739941137858867,"throughput_eps":0,"last_update":"2026-03-22T09:36:12.479381686Z"} +2026/03/22 09:36:17 [transform_engine] {"stage_name":"transform_engine","events_processed":429,"events_dropped":0,"avg_latency_ms":165.46248837533432,"throughput_eps":0,"last_update":"2026-03-22T09:36:12.479395051Z"} +2026/03/22 09:36:17 ───────────────────────────────────────────────── +2026/03/22 09:36:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:36:22 [transform_engine] {"stage_name":"transform_engine","events_processed":429,"events_dropped":0,"avg_latency_ms":165.46248837533432,"throughput_eps":0,"last_update":"2026-03-22T09:36:17.479608603Z"} +2026/03/22 09:36:22 [log_collector] {"stage_name":"log_collector","events_processed":20562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4112.4,"last_update":"2026-03-22T09:36:17.368276373Z"} +2026/03/22 09:36:22 [metric_collector] {"stage_name":"metric_collector","events_processed":12889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2577.8,"last_update":"2026-03-22T09:36:17.368470596Z"} +2026/03/22 09:36:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:36:17.375399607Z"} +2026/03/22 09:36:22 [detection_layer] {"stage_name":"detection_layer","events_processed":429,"events_dropped":0,"avg_latency_ms":18.739941137858867,"throughput_eps":0,"last_update":"2026-03-22T09:36:17.479597812Z"} +2026/03/22 09:36:22 ───────────────────────────────────────────────── +2026/03/22 09:36:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:36:27 [metric_collector] {"stage_name":"metric_collector","events_processed":12894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2578.8,"last_update":"2026-03-22T09:36:22.368394098Z"} +2026/03/22 09:36:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:36:22.377773302Z"} +2026/03/22 09:36:27 [detection_layer] {"stage_name":"detection_layer","events_processed":429,"events_dropped":0,"avg_latency_ms":18.739941137858867,"throughput_eps":0,"last_update":"2026-03-22T09:36:22.480055347Z"} +2026/03/22 09:36:27 [transform_engine] {"stage_name":"transform_engine","events_processed":429,"events_dropped":0,"avg_latency_ms":165.46248837533432,"throughput_eps":0,"last_update":"2026-03-22T09:36:22.478902088Z"} +2026/03/22 09:36:27 [log_collector] {"stage_name":"log_collector","events_processed":20574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4114.8,"last_update":"2026-03-22T09:36:22.367970276Z"} +2026/03/22 09:36:27 ───────────────────────────────────────────────── +2026/03/22 09:36:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:36:32 [log_collector] {"stage_name":"log_collector","events_processed":20578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4115.6,"last_update":"2026-03-22T09:36:27.368603351Z"} +2026/03/22 09:36:32 [metric_collector] {"stage_name":"metric_collector","events_processed":12899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2579.8,"last_update":"2026-03-22T09:36:27.36896265Z"} +2026/03/22 09:36:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:36:27.377268358Z"} +2026/03/22 09:36:32 [detection_layer] {"stage_name":"detection_layer","events_processed":429,"events_dropped":0,"avg_latency_ms":18.739941137858867,"throughput_eps":0,"last_update":"2026-03-22T09:36:27.480549116Z"} +2026/03/22 09:36:32 [transform_engine] {"stage_name":"transform_engine","events_processed":430,"events_dropped":0,"avg_latency_ms":154.84046150026745,"throughput_eps":0,"last_update":"2026-03-22T09:36:27.591946932Z"} +2026/03/22 09:36:32 ───────────────────────────────────────────────── +2026/03/22 09:36:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:36:37 [detection_layer] {"stage_name":"detection_layer","events_processed":430,"events_dropped":0,"avg_latency_ms":18.485512310287096,"throughput_eps":0,"last_update":"2026-03-22T09:36:32.479288285Z"} +2026/03/22 09:36:37 [transform_engine] {"stage_name":"transform_engine","events_processed":430,"events_dropped":0,"avg_latency_ms":154.84046150026745,"throughput_eps":0,"last_update":"2026-03-22T09:36:32.479299998Z"} +2026/03/22 09:36:37 [log_collector] {"stage_name":"log_collector","events_processed":20578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4115.6,"last_update":"2026-03-22T09:36:32.367960574Z"} +2026/03/22 09:36:37 [metric_collector] {"stage_name":"metric_collector","events_processed":12904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2580.8,"last_update":"2026-03-22T09:36:32.368238997Z"} +2026/03/22 09:36:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:36:32.377143213Z"} +2026/03/22 09:36:37 ───────────────────────────────────────────────── +2026/03/22 09:36:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:36:42 [metric_collector] {"stage_name":"metric_collector","events_processed":12909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2581.8,"last_update":"2026-03-22T09:36:37.36884299Z"} +2026/03/22 09:36:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:36:37.377318153Z"} +2026/03/22 09:36:42 [detection_layer] {"stage_name":"detection_layer","events_processed":430,"events_dropped":0,"avg_latency_ms":18.485512310287096,"throughput_eps":0,"last_update":"2026-03-22T09:36:37.479551495Z"} +2026/03/22 09:36:42 [transform_engine] {"stage_name":"transform_engine","events_processed":430,"events_dropped":0,"avg_latency_ms":154.84046150026745,"throughput_eps":0,"last_update":"2026-03-22T09:36:37.479583155Z"} +2026/03/22 09:36:42 [log_collector] {"stage_name":"log_collector","events_processed":20578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4115.6,"last_update":"2026-03-22T09:36:37.368408177Z"} +2026/03/22 09:36:42 ───────────────────────────────────────────────── +2026/03/22 09:36:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:36:47 [log_collector] {"stage_name":"log_collector","events_processed":20578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4115.6,"last_update":"2026-03-22T09:36:42.367954121Z"} +2026/03/22 09:36:47 [metric_collector] {"stage_name":"metric_collector","events_processed":12914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2582.8,"last_update":"2026-03-22T09:36:42.368234698Z"} +2026/03/22 09:36:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:36:42.377558838Z"} +2026/03/22 09:36:47 [detection_layer] {"stage_name":"detection_layer","events_processed":430,"events_dropped":0,"avg_latency_ms":18.485512310287096,"throughput_eps":0,"last_update":"2026-03-22T09:36:42.479762052Z"} +2026/03/22 09:36:47 [transform_engine] {"stage_name":"transform_engine","events_processed":430,"events_dropped":0,"avg_latency_ms":154.84046150026745,"throughput_eps":0,"last_update":"2026-03-22T09:36:42.479783313Z"} +2026/03/22 09:36:47 ───────────────────────────────────────────────── +2026/03/22 09:36:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:36:52 [transform_engine] {"stage_name":"transform_engine","events_processed":430,"events_dropped":0,"avg_latency_ms":154.84046150026745,"throughput_eps":0,"last_update":"2026-03-22T09:36:47.479130472Z"} +2026/03/22 09:36:52 [log_collector] {"stage_name":"log_collector","events_processed":20578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4115.6,"last_update":"2026-03-22T09:36:52.368603957Z"} +2026/03/22 09:36:52 [metric_collector] {"stage_name":"metric_collector","events_processed":12919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2583.8,"last_update":"2026-03-22T09:36:47.3682516Z"} +2026/03/22 09:36:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5170,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:36:47.374907589Z"} +2026/03/22 09:36:52 [detection_layer] {"stage_name":"detection_layer","events_processed":430,"events_dropped":0,"avg_latency_ms":18.485512310287096,"throughput_eps":0,"last_update":"2026-03-22T09:36:47.479118178Z"} +2026/03/22 09:36:52 ───────────────────────────────────────────────── +2026/03/22 09:36:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:36:57 [log_collector] {"stage_name":"log_collector","events_processed":20578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4115.6,"last_update":"2026-03-22T09:36:52.368603957Z"} +2026/03/22 09:36:57 [metric_collector] {"stage_name":"metric_collector","events_processed":12924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2584.8,"last_update":"2026-03-22T09:36:52.369220849Z"} +2026/03/22 09:36:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:36:52.377330082Z"} +2026/03/22 09:36:57 [detection_layer] {"stage_name":"detection_layer","events_processed":430,"events_dropped":0,"avg_latency_ms":18.485512310287096,"throughput_eps":0,"last_update":"2026-03-22T09:36:52.479533747Z"} +2026/03/22 09:36:57 [transform_engine] {"stage_name":"transform_engine","events_processed":430,"events_dropped":0,"avg_latency_ms":154.84046150026745,"throughput_eps":0,"last_update":"2026-03-22T09:36:52.479546231Z"} +2026/03/22 09:36:57 ───────────────────────────────────────────────── +2026/03/22 09:37:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:37:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:36:57.377221899Z"} +2026/03/22 09:37:02 [detection_layer] {"stage_name":"detection_layer","events_processed":430,"events_dropped":0,"avg_latency_ms":18.485512310287096,"throughput_eps":0,"last_update":"2026-03-22T09:36:57.479449752Z"} +2026/03/22 09:37:02 [transform_engine] {"stage_name":"transform_engine","events_processed":431,"events_dropped":0,"avg_latency_ms":137.76208700021397,"throughput_eps":0,"last_update":"2026-03-22T09:36:57.548912196Z"} +2026/03/22 09:37:02 [log_collector] {"stage_name":"log_collector","events_processed":20578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4115.6,"last_update":"2026-03-22T09:36:57.367963587Z"} +2026/03/22 09:37:02 [metric_collector] {"stage_name":"metric_collector","events_processed":12929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2585.8,"last_update":"2026-03-22T09:36:57.368325469Z"} +2026/03/22 09:37:02 ───────────────────────────────────────────────── +2026/03/22 09:37:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:37:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:37:02.37694182Z"} +2026/03/22 09:37:07 [detection_layer] {"stage_name":"detection_layer","events_processed":431,"events_dropped":0,"avg_latency_ms":18.53165364822968,"throughput_eps":0,"last_update":"2026-03-22T09:37:02.47915297Z"} +2026/03/22 09:37:07 [transform_engine] {"stage_name":"transform_engine","events_processed":431,"events_dropped":0,"avg_latency_ms":137.76208700021397,"throughput_eps":0,"last_update":"2026-03-22T09:37:02.479165594Z"} +2026/03/22 09:37:07 [log_collector] {"stage_name":"log_collector","events_processed":20578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4115.6,"last_update":"2026-03-22T09:37:02.368418255Z"} +2026/03/22 09:37:07 [metric_collector] {"stage_name":"metric_collector","events_processed":12934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2586.8,"last_update":"2026-03-22T09:37:02.368968058Z"} +2026/03/22 09:37:07 ───────────────────────────────────────────────── +2026/03/22 09:37:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:37:12 [log_collector] {"stage_name":"log_collector","events_processed":20578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4115.6,"last_update":"2026-03-22T09:37:12.36874346Z"} +2026/03/22 09:37:12 [metric_collector] {"stage_name":"metric_collector","events_processed":12939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2587.8,"last_update":"2026-03-22T09:37:07.369190729Z"} +2026/03/22 09:37:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:37:07.378111956Z"} +2026/03/22 09:37:12 [detection_layer] {"stage_name":"detection_layer","events_processed":431,"events_dropped":0,"avg_latency_ms":18.53165364822968,"throughput_eps":0,"last_update":"2026-03-22T09:37:07.479313712Z"} +2026/03/22 09:37:12 [transform_engine] {"stage_name":"transform_engine","events_processed":431,"events_dropped":0,"avg_latency_ms":137.76208700021397,"throughput_eps":0,"last_update":"2026-03-22T09:37:07.479323922Z"} +2026/03/22 09:37:12 ───────────────────────────────────────────────── +Saved state: 13 clusters, 20579 messages, reason: none +2026/03/22 09:37:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:37:17 [log_collector] {"stage_name":"log_collector","events_processed":20589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4117.8,"last_update":"2026-03-22T09:37:17.36856933Z"} +2026/03/22 09:37:17 [metric_collector] {"stage_name":"metric_collector","events_processed":12944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2588.8,"last_update":"2026-03-22T09:37:12.369226886Z"} +2026/03/22 09:37:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:37:12.377672532Z"} +2026/03/22 09:37:17 [detection_layer] {"stage_name":"detection_layer","events_processed":431,"events_dropped":0,"avg_latency_ms":18.53165364822968,"throughput_eps":0,"last_update":"2026-03-22T09:37:12.479957093Z"} +2026/03/22 09:37:17 [transform_engine] {"stage_name":"transform_engine","events_processed":431,"events_dropped":0,"avg_latency_ms":137.76208700021397,"throughput_eps":0,"last_update":"2026-03-22T09:37:12.478814946Z"} +2026/03/22 09:37:17 ───────────────────────────────────────────────── +2026/03/22 09:37:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:37:22 [transform_engine] {"stage_name":"transform_engine","events_processed":431,"events_dropped":0,"avg_latency_ms":137.76208700021397,"throughput_eps":0,"last_update":"2026-03-22T09:37:17.479841526Z"} +2026/03/22 09:37:22 [log_collector] {"stage_name":"log_collector","events_processed":20589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4117.8,"last_update":"2026-03-22T09:37:17.36856933Z"} +2026/03/22 09:37:22 [metric_collector] {"stage_name":"metric_collector","events_processed":12949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2589.8,"last_update":"2026-03-22T09:37:17.368943707Z"} +2026/03/22 09:37:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:37:17.377612381Z"} +2026/03/22 09:37:22 [detection_layer] {"stage_name":"detection_layer","events_processed":431,"events_dropped":0,"avg_latency_ms":18.53165364822968,"throughput_eps":0,"last_update":"2026-03-22T09:37:17.479827779Z"} +2026/03/22 09:37:22 ───────────────────────────────────────────────── +2026/03/22 09:37:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:37:27 [log_collector] {"stage_name":"log_collector","events_processed":20589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4117.8,"last_update":"2026-03-22T09:37:27.368150233Z"} +2026/03/22 09:37:27 [metric_collector] {"stage_name":"metric_collector","events_processed":12954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2590.8,"last_update":"2026-03-22T09:37:22.368281154Z"} +2026/03/22 09:37:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:37:22.377468301Z"} +2026/03/22 09:37:27 [detection_layer] {"stage_name":"detection_layer","events_processed":431,"events_dropped":0,"avg_latency_ms":18.53165364822968,"throughput_eps":0,"last_update":"2026-03-22T09:37:22.479667839Z"} +2026/03/22 09:37:27 [transform_engine] {"stage_name":"transform_engine","events_processed":431,"events_dropped":0,"avg_latency_ms":137.76208700021397,"throughput_eps":0,"last_update":"2026-03-22T09:37:22.479679963Z"} +2026/03/22 09:37:27 ───────────────────────────────────────────────── +2026/03/22 09:37:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:37:32 [log_collector] {"stage_name":"log_collector","events_processed":20589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4117.8,"last_update":"2026-03-22T09:37:32.368442336Z"} +2026/03/22 09:37:32 [metric_collector] {"stage_name":"metric_collector","events_processed":12959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2591.8,"last_update":"2026-03-22T09:37:27.368602158Z"} +2026/03/22 09:37:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:37:27.378800622Z"} +2026/03/22 09:37:32 [detection_layer] {"stage_name":"detection_layer","events_processed":431,"events_dropped":0,"avg_latency_ms":18.53165364822968,"throughput_eps":0,"last_update":"2026-03-22T09:37:27.479070244Z"} +2026/03/22 09:37:32 [transform_engine] {"stage_name":"transform_engine","events_processed":432,"events_dropped":0,"avg_latency_ms":134.7713400001712,"throughput_eps":0,"last_update":"2026-03-22T09:37:27.601726865Z"} +2026/03/22 09:37:32 ───────────────────────────────────────────────── +2026/03/22 09:37:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:37:37 [log_collector] {"stage_name":"log_collector","events_processed":20589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4117.8,"last_update":"2026-03-22T09:37:37.368130306Z"} +2026/03/22 09:37:37 [metric_collector] {"stage_name":"metric_collector","events_processed":12964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2592.8,"last_update":"2026-03-22T09:37:32.368817625Z"} +2026/03/22 09:37:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:37:32.377313698Z"} +2026/03/22 09:37:37 [detection_layer] {"stage_name":"detection_layer","events_processed":432,"events_dropped":0,"avg_latency_ms":18.941123918583745,"throughput_eps":0,"last_update":"2026-03-22T09:37:32.480007514Z"} +2026/03/22 09:37:37 [transform_engine] {"stage_name":"transform_engine","events_processed":432,"events_dropped":0,"avg_latency_ms":134.7713400001712,"throughput_eps":0,"last_update":"2026-03-22T09:37:32.47883079Z"} +2026/03/22 09:37:37 ───────────────────────────────────────────────── +2026/03/22 09:37:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:37:42 [transform_engine] {"stage_name":"transform_engine","events_processed":432,"events_dropped":0,"avg_latency_ms":134.7713400001712,"throughput_eps":0,"last_update":"2026-03-22T09:37:37.479935333Z"} +2026/03/22 09:37:42 [log_collector] {"stage_name":"log_collector","events_processed":20589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4117.8,"last_update":"2026-03-22T09:37:42.36860141Z"} +2026/03/22 09:37:42 [metric_collector] {"stage_name":"metric_collector","events_processed":12969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2593.8,"last_update":"2026-03-22T09:37:37.368892997Z"} +2026/03/22 09:37:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:37:37.376618023Z"} +2026/03/22 09:37:42 [detection_layer] {"stage_name":"detection_layer","events_processed":432,"events_dropped":0,"avg_latency_ms":18.941123918583745,"throughput_eps":0,"last_update":"2026-03-22T09:37:37.479922969Z"} +2026/03/22 09:37:42 ───────────────────────────────────────────────── +2026/03/22 09:37:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:37:47 [log_collector] {"stage_name":"log_collector","events_processed":20589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4117.8,"last_update":"2026-03-22T09:37:47.367958212Z"} +2026/03/22 09:37:47 [metric_collector] {"stage_name":"metric_collector","events_processed":12974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2594.8,"last_update":"2026-03-22T09:37:42.369464644Z"} +2026/03/22 09:37:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:37:42.378700564Z"} +2026/03/22 09:37:47 [detection_layer] {"stage_name":"detection_layer","events_processed":432,"events_dropped":0,"avg_latency_ms":18.941123918583745,"throughput_eps":0,"last_update":"2026-03-22T09:37:42.478967109Z"} +2026/03/22 09:37:47 [transform_engine] {"stage_name":"transform_engine","events_processed":432,"events_dropped":0,"avg_latency_ms":134.7713400001712,"throughput_eps":0,"last_update":"2026-03-22T09:37:42.478838783Z"} +2026/03/22 09:37:47 ───────────────────────────────────────────────── +2026/03/22 09:37:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:37:52 [transform_engine] {"stage_name":"transform_engine","events_processed":432,"events_dropped":0,"avg_latency_ms":134.7713400001712,"throughput_eps":0,"last_update":"2026-03-22T09:37:47.478906036Z"} +2026/03/22 09:37:52 [log_collector] {"stage_name":"log_collector","events_processed":20589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4117.8,"last_update":"2026-03-22T09:37:47.367958212Z"} +2026/03/22 09:37:52 [metric_collector] {"stage_name":"metric_collector","events_processed":12979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2595.8,"last_update":"2026-03-22T09:37:47.368328351Z"} +2026/03/22 09:37:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:37:47.374776811Z"} +2026/03/22 09:37:52 [detection_layer] {"stage_name":"detection_layer","events_processed":432,"events_dropped":0,"avg_latency_ms":18.941123918583745,"throughput_eps":0,"last_update":"2026-03-22T09:37:47.480011013Z"} +2026/03/22 09:37:52 ───────────────────────────────────────────────── +2026/03/22 09:37:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:37:57 [metric_collector] {"stage_name":"metric_collector","events_processed":12984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2596.8,"last_update":"2026-03-22T09:37:52.369040393Z"} +2026/03/22 09:37:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:37:52.378124192Z"} +2026/03/22 09:37:57 [detection_layer] {"stage_name":"detection_layer","events_processed":432,"events_dropped":0,"avg_latency_ms":18.941123918583745,"throughput_eps":0,"last_update":"2026-03-22T09:37:52.479417044Z"} +2026/03/22 09:37:57 [transform_engine] {"stage_name":"transform_engine","events_processed":432,"events_dropped":0,"avg_latency_ms":134.7713400001712,"throughput_eps":0,"last_update":"2026-03-22T09:37:52.479431321Z"} +2026/03/22 09:37:57 [log_collector] {"stage_name":"log_collector","events_processed":20589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4117.8,"last_update":"2026-03-22T09:37:57.368455496Z"} +2026/03/22 09:37:57 ───────────────────────────────────────────────── +2026/03/22 09:38:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:38:02 [log_collector] {"stage_name":"log_collector","events_processed":20589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4117.8,"last_update":"2026-03-22T09:37:57.368455496Z"} +2026/03/22 09:38:02 [metric_collector] {"stage_name":"metric_collector","events_processed":12989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2597.8,"last_update":"2026-03-22T09:37:57.368649207Z"} +2026/03/22 09:38:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:37:57.377112096Z"} +2026/03/22 09:38:02 [detection_layer] {"stage_name":"detection_layer","events_processed":432,"events_dropped":0,"avg_latency_ms":18.941123918583745,"throughput_eps":0,"last_update":"2026-03-22T09:37:57.479382842Z"} +2026/03/22 09:38:02 [transform_engine] {"stage_name":"transform_engine","events_processed":433,"events_dropped":0,"avg_latency_ms":123.88353300013696,"throughput_eps":0,"last_update":"2026-03-22T09:37:57.559728953Z"} +2026/03/22 09:38:02 ───────────────────────────────────────────────── +2026/03/22 09:38:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:38:07 [log_collector] {"stage_name":"log_collector","events_processed":20589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4117.8,"last_update":"2026-03-22T09:38:07.368550843Z"} +2026/03/22 09:38:07 [metric_collector] {"stage_name":"metric_collector","events_processed":12994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2598.8,"last_update":"2026-03-22T09:38:02.368865025Z"} +2026/03/22 09:38:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:38:02.377799207Z"} +2026/03/22 09:38:07 [detection_layer] {"stage_name":"detection_layer","events_processed":433,"events_dropped":0,"avg_latency_ms":19.846224534866998,"throughput_eps":0,"last_update":"2026-03-22T09:38:02.478942002Z"} +2026/03/22 09:38:07 [transform_engine] {"stage_name":"transform_engine","events_processed":433,"events_dropped":0,"avg_latency_ms":123.88353300013696,"throughput_eps":0,"last_update":"2026-03-22T09:38:02.478919699Z"} +2026/03/22 09:38:07 ───────────────────────────────────────────────── +2026/03/22 09:38:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:38:12 [detection_layer] {"stage_name":"detection_layer","events_processed":433,"events_dropped":0,"avg_latency_ms":19.846224534866998,"throughput_eps":0,"last_update":"2026-03-22T09:38:07.479308034Z"} +2026/03/22 09:38:12 [transform_engine] {"stage_name":"transform_engine","events_processed":433,"events_dropped":0,"avg_latency_ms":123.88353300013696,"throughput_eps":0,"last_update":"2026-03-22T09:38:07.479409739Z"} +2026/03/22 09:38:12 [log_collector] {"stage_name":"log_collector","events_processed":20589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4117.8,"last_update":"2026-03-22T09:38:07.368550843Z"} +2026/03/22 09:38:12 [metric_collector] {"stage_name":"metric_collector","events_processed":12999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2599.8,"last_update":"2026-03-22T09:38:07.369084324Z"} +2026/03/22 09:38:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:38:07.378063583Z"} +2026/03/22 09:38:12 ───────────────────────────────────────────────── +2026/03/22 09:38:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:38:17 [metric_collector] {"stage_name":"metric_collector","events_processed":13004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2600.8,"last_update":"2026-03-22T09:38:12.369245195Z"} +2026/03/22 09:38:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:38:12.378448023Z"} +2026/03/22 09:38:17 [detection_layer] {"stage_name":"detection_layer","events_processed":433,"events_dropped":0,"avg_latency_ms":19.846224534866998,"throughput_eps":0,"last_update":"2026-03-22T09:38:12.479665481Z"} +2026/03/22 09:38:17 [transform_engine] {"stage_name":"transform_engine","events_processed":433,"events_dropped":0,"avg_latency_ms":123.88353300013696,"throughput_eps":0,"last_update":"2026-03-22T09:38:12.479693254Z"} +2026/03/22 09:38:17 [log_collector] {"stage_name":"log_collector","events_processed":20589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4117.8,"last_update":"2026-03-22T09:38:12.368818448Z"} +2026/03/22 09:38:17 ───────────────────────────────────────────────── +2026/03/22 09:38:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:38:22 [log_collector] {"stage_name":"log_collector","events_processed":20589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4117.8,"last_update":"2026-03-22T09:38:17.368162989Z"} +2026/03/22 09:38:22 [metric_collector] {"stage_name":"metric_collector","events_processed":13008,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2601.6,"last_update":"2026-03-22T09:38:17.368134695Z"} +2026/03/22 09:38:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5206,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:38:17.378108278Z"} +2026/03/22 09:38:22 [detection_layer] {"stage_name":"detection_layer","events_processed":433,"events_dropped":0,"avg_latency_ms":19.846224534866998,"throughput_eps":0,"last_update":"2026-03-22T09:38:17.479512063Z"} +2026/03/22 09:38:22 [transform_engine] {"stage_name":"transform_engine","events_processed":433,"events_dropped":0,"avg_latency_ms":123.88353300013696,"throughput_eps":0,"last_update":"2026-03-22T09:38:17.479402102Z"} +2026/03/22 09:38:22 ───────────────────────────────────────────────── +Saved state: 13 clusters, 20590 messages, reason: none +2026/03/22 09:38:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:38:27 [detection_layer] {"stage_name":"detection_layer","events_processed":433,"events_dropped":0,"avg_latency_ms":19.846224534866998,"throughput_eps":0,"last_update":"2026-03-22T09:38:22.479893332Z"} +2026/03/22 09:38:27 [transform_engine] {"stage_name":"transform_engine","events_processed":433,"events_dropped":0,"avg_latency_ms":123.88353300013696,"throughput_eps":0,"last_update":"2026-03-22T09:38:22.479858876Z"} +2026/03/22 09:38:27 [log_collector] {"stage_name":"log_collector","events_processed":20589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4117.8,"last_update":"2026-03-22T09:38:22.369005642Z"} +2026/03/22 09:38:27 [metric_collector] {"stage_name":"metric_collector","events_processed":13014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2602.8,"last_update":"2026-03-22T09:38:22.369307199Z"} +2026/03/22 09:38:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:38:22.377954482Z"} +2026/03/22 09:38:27 ───────────────────────────────────────────────── +2026/03/22 09:38:27 [ANOMALY] time=2026-03-22T09:38:27Z score=0.7767 method=SEAD details=MAD!:w=0.52,s=0.80 RRCF-fast:w=0.12,s=0.54 RRCF-mid!:w=0.12,s=0.89 RRCF-slow!:w=0.10,s=0.80 COPOD!:w=0.14,s=0.80 +2026/03/22 09:38:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:38:32 [detection_layer] {"stage_name":"detection_layer","events_processed":433,"events_dropped":0,"avg_latency_ms":19.846224534866998,"throughput_eps":0,"last_update":"2026-03-22T09:38:27.479988667Z"} +2026/03/22 09:38:32 [transform_engine] {"stage_name":"transform_engine","events_processed":434,"events_dropped":0,"avg_latency_ms":120.19921400010958,"throughput_eps":0,"last_update":"2026-03-22T09:38:27.584323997Z"} +2026/03/22 09:38:32 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:38:27.368900944Z"} +2026/03/22 09:38:32 [metric_collector] {"stage_name":"metric_collector","events_processed":13019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2603.8,"last_update":"2026-03-22T09:38:27.369088413Z"} +2026/03/22 09:38:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5210,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:38:27.377713654Z"} +2026/03/22 09:38:32 ───────────────────────────────────────────────── +2026/03/22 09:38:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:38:37 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:38:37.368101608Z"} +2026/03/22 09:38:37 [metric_collector] {"stage_name":"metric_collector","events_processed":13024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2604.8,"last_update":"2026-03-22T09:38:32.368830495Z"} +2026/03/22 09:38:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:38:32.376910501Z"} +2026/03/22 09:38:37 [detection_layer] {"stage_name":"detection_layer","events_processed":434,"events_dropped":0,"avg_latency_ms":18.2995516278936,"throughput_eps":0,"last_update":"2026-03-22T09:38:32.479122704Z"} +2026/03/22 09:38:37 [transform_engine] {"stage_name":"transform_engine","events_processed":434,"events_dropped":0,"avg_latency_ms":120.19921400010958,"throughput_eps":0,"last_update":"2026-03-22T09:38:32.479135859Z"} +2026/03/22 09:38:37 ───────────────────────────────────────────────── +2026/03/22 09:38:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:38:42 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:38:37.368101608Z"} +2026/03/22 09:38:42 [metric_collector] {"stage_name":"metric_collector","events_processed":13029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2605.8,"last_update":"2026-03-22T09:38:37.36847857Z"} +2026/03/22 09:38:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:38:37.375523424Z"} +2026/03/22 09:38:42 [detection_layer] {"stage_name":"detection_layer","events_processed":434,"events_dropped":0,"avg_latency_ms":18.2995516278936,"throughput_eps":0,"last_update":"2026-03-22T09:38:37.479697224Z"} +2026/03/22 09:38:42 [transform_engine] {"stage_name":"transform_engine","events_processed":434,"events_dropped":0,"avg_latency_ms":120.19921400010958,"throughput_eps":0,"last_update":"2026-03-22T09:38:37.479709027Z"} +2026/03/22 09:38:42 ───────────────────────────────────────────────── +2026/03/22 09:38:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:38:47 [metric_collector] {"stage_name":"metric_collector","events_processed":13034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2606.8,"last_update":"2026-03-22T09:38:42.368400173Z"} +2026/03/22 09:38:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:38:42.375745553Z"} +2026/03/22 09:38:47 [detection_layer] {"stage_name":"detection_layer","events_processed":434,"events_dropped":0,"avg_latency_ms":18.2995516278936,"throughput_eps":0,"last_update":"2026-03-22T09:38:42.479949431Z"} +2026/03/22 09:38:47 [transform_engine] {"stage_name":"transform_engine","events_processed":434,"events_dropped":0,"avg_latency_ms":120.19921400010958,"throughput_eps":0,"last_update":"2026-03-22T09:38:42.47886875Z"} +2026/03/22 09:38:47 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:38:42.368132661Z"} +2026/03/22 09:38:47 ───────────────────────────────────────────────── +2026/03/22 09:38:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:38:52 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:38:47.368518636Z"} +2026/03/22 09:38:52 [metric_collector] {"stage_name":"metric_collector","events_processed":13039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2607.8,"last_update":"2026-03-22T09:38:47.36880816Z"} +2026/03/22 09:38:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:38:47.377290577Z"} +2026/03/22 09:38:52 [detection_layer] {"stage_name":"detection_layer","events_processed":434,"events_dropped":0,"avg_latency_ms":18.2995516278936,"throughput_eps":0,"last_update":"2026-03-22T09:38:47.479488163Z"} +2026/03/22 09:38:52 [transform_engine] {"stage_name":"transform_engine","events_processed":434,"events_dropped":0,"avg_latency_ms":120.19921400010958,"throughput_eps":0,"last_update":"2026-03-22T09:38:47.479500887Z"} +2026/03/22 09:38:52 ───────────────────────────────────────────────── +2026/03/22 09:38:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:38:57 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:38:52.368345553Z"} +2026/03/22 09:38:57 [metric_collector] {"stage_name":"metric_collector","events_processed":13044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2608.8,"last_update":"2026-03-22T09:38:52.369287247Z"} +2026/03/22 09:38:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:38:52.377274746Z"} +2026/03/22 09:38:57 [detection_layer] {"stage_name":"detection_layer","events_processed":434,"events_dropped":0,"avg_latency_ms":18.2995516278936,"throughput_eps":0,"last_update":"2026-03-22T09:38:52.479480156Z"} +2026/03/22 09:38:57 [transform_engine] {"stage_name":"transform_engine","events_processed":434,"events_dropped":0,"avg_latency_ms":120.19921400010958,"throughput_eps":0,"last_update":"2026-03-22T09:38:52.479498101Z"} +2026/03/22 09:38:57 ───────────────────────────────────────────────── +2026/03/22 09:39:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:39:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5222,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:38:57.376779701Z"} +2026/03/22 09:39:02 [detection_layer] {"stage_name":"detection_layer","events_processed":434,"events_dropped":0,"avg_latency_ms":18.2995516278936,"throughput_eps":0,"last_update":"2026-03-22T09:38:57.480033119Z"} +2026/03/22 09:39:02 [transform_engine] {"stage_name":"transform_engine","events_processed":435,"events_dropped":0,"avg_latency_ms":110.59238200008767,"throughput_eps":0,"last_update":"2026-03-22T09:38:57.551059911Z"} +2026/03/22 09:39:02 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:38:57.368153578Z"} +2026/03/22 09:39:02 [metric_collector] {"stage_name":"metric_collector","events_processed":13049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2609.8,"last_update":"2026-03-22T09:38:57.36824847Z"} +2026/03/22 09:39:02 ───────────────────────────────────────────────── +2026/03/22 09:39:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:39:07 [detection_layer] {"stage_name":"detection_layer","events_processed":435,"events_dropped":0,"avg_latency_ms":17.97116430231488,"throughput_eps":0,"last_update":"2026-03-22T09:39:02.479379193Z"} +2026/03/22 09:39:07 [transform_engine] {"stage_name":"transform_engine","events_processed":435,"events_dropped":0,"avg_latency_ms":110.59238200008767,"throughput_eps":0,"last_update":"2026-03-22T09:39:02.479357943Z"} +2026/03/22 09:39:07 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:39:07.368212338Z"} +2026/03/22 09:39:07 [metric_collector] {"stage_name":"metric_collector","events_processed":13054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2610.8,"last_update":"2026-03-22T09:39:02.369077805Z"} +2026/03/22 09:39:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:39:02.376157586Z"} +2026/03/22 09:39:07 ───────────────────────────────────────────────── +2026/03/22 09:39:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:39:12 [metric_collector] {"stage_name":"metric_collector","events_processed":13059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2611.8,"last_update":"2026-03-22T09:39:07.368516351Z"} +2026/03/22 09:39:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:39:07.374940645Z"} +2026/03/22 09:39:12 [detection_layer] {"stage_name":"detection_layer","events_processed":435,"events_dropped":0,"avg_latency_ms":17.97116430231488,"throughput_eps":0,"last_update":"2026-03-22T09:39:07.479189329Z"} +2026/03/22 09:39:12 [transform_engine] {"stage_name":"transform_engine","events_processed":435,"events_dropped":0,"avg_latency_ms":110.59238200008767,"throughput_eps":0,"last_update":"2026-03-22T09:39:07.479136278Z"} +2026/03/22 09:39:12 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:39:12.368111086Z"} +2026/03/22 09:39:12 ───────────────────────────────────────────────── +2026/03/22 09:39:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:39:17 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:39:12.368111086Z"} +2026/03/22 09:39:17 [metric_collector] {"stage_name":"metric_collector","events_processed":13064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2612.8,"last_update":"2026-03-22T09:39:12.368570546Z"} +2026/03/22 09:39:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:39:12.375957695Z"} +2026/03/22 09:39:17 [detection_layer] {"stage_name":"detection_layer","events_processed":435,"events_dropped":0,"avg_latency_ms":17.97116430231488,"throughput_eps":0,"last_update":"2026-03-22T09:39:12.479214911Z"} +2026/03/22 09:39:17 [transform_engine] {"stage_name":"transform_engine","events_processed":435,"events_dropped":0,"avg_latency_ms":110.59238200008767,"throughput_eps":0,"last_update":"2026-03-22T09:39:12.479183471Z"} +2026/03/22 09:39:17 ───────────────────────────────────────────────── +2026/03/22 09:39:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:39:22 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:39:22.368079347Z"} +2026/03/22 09:39:22 [metric_collector] {"stage_name":"metric_collector","events_processed":13069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2613.8,"last_update":"2026-03-22T09:39:17.368212275Z"} +2026/03/22 09:39:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:39:17.377733331Z"} +2026/03/22 09:39:22 [detection_layer] {"stage_name":"detection_layer","events_processed":435,"events_dropped":0,"avg_latency_ms":17.97116430231488,"throughput_eps":0,"last_update":"2026-03-22T09:39:17.479970052Z"} +2026/03/22 09:39:22 [transform_engine] {"stage_name":"transform_engine","events_processed":435,"events_dropped":0,"avg_latency_ms":110.59238200008767,"throughput_eps":0,"last_update":"2026-03-22T09:39:17.478892628Z"} +2026/03/22 09:39:22 ───────────────────────────────────────────────── +2026/03/22 09:39:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:39:27 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:39:27.368827592Z"} +2026/03/22 09:39:27 [metric_collector] {"stage_name":"metric_collector","events_processed":13074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2614.8,"last_update":"2026-03-22T09:39:22.368633649Z"} +2026/03/22 09:39:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:39:22.375010193Z"} +2026/03/22 09:39:27 [detection_layer] {"stage_name":"detection_layer","events_processed":435,"events_dropped":0,"avg_latency_ms":17.97116430231488,"throughput_eps":0,"last_update":"2026-03-22T09:39:22.479309905Z"} +2026/03/22 09:39:27 [transform_engine] {"stage_name":"transform_engine","events_processed":435,"events_dropped":0,"avg_latency_ms":110.59238200008767,"throughput_eps":0,"last_update":"2026-03-22T09:39:22.479276341Z"} +2026/03/22 09:39:27 ───────────────────────────────────────────────── +2026/03/22 09:39:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:39:32 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:39:27.368827592Z"} +2026/03/22 09:39:32 [metric_collector] {"stage_name":"metric_collector","events_processed":13079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2615.8,"last_update":"2026-03-22T09:39:27.369337107Z"} +2026/03/22 09:39:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:39:27.377635412Z"} +2026/03/22 09:39:32 [detection_layer] {"stage_name":"detection_layer","events_processed":435,"events_dropped":0,"avg_latency_ms":17.97116430231488,"throughput_eps":0,"last_update":"2026-03-22T09:39:27.480394655Z"} +2026/03/22 09:39:32 [transform_engine] {"stage_name":"transform_engine","events_processed":435,"events_dropped":0,"avg_latency_ms":110.59238200008767,"throughput_eps":0,"last_update":"2026-03-22T09:39:27.47979178Z"} +2026/03/22 09:39:32 ───────────────────────────────────────────────── +2026/03/22 09:39:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:39:37 [detection_layer] {"stage_name":"detection_layer","events_processed":436,"events_dropped":0,"avg_latency_ms":16.885410041851905,"throughput_eps":0,"last_update":"2026-03-22T09:39:32.479557194Z"} +2026/03/22 09:39:37 [transform_engine] {"stage_name":"transform_engine","events_processed":436,"events_dropped":0,"avg_latency_ms":100.46186900007014,"throughput_eps":0,"last_update":"2026-03-22T09:39:32.479526324Z"} +2026/03/22 09:39:37 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:39:32.368483336Z"} +2026/03/22 09:39:37 [metric_collector] {"stage_name":"metric_collector","events_processed":13084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2616.8,"last_update":"2026-03-22T09:39:32.368791687Z"} +2026/03/22 09:39:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:39:32.37837355Z"} +2026/03/22 09:39:37 ───────────────────────────────────────────────── +2026/03/22 09:39:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:39:42 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:39:42.368410151Z"} +2026/03/22 09:39:42 [metric_collector] {"stage_name":"metric_collector","events_processed":13089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2617.8,"last_update":"2026-03-22T09:39:37.368590679Z"} +2026/03/22 09:39:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:39:37.37559787Z"} +2026/03/22 09:39:42 [detection_layer] {"stage_name":"detection_layer","events_processed":436,"events_dropped":0,"avg_latency_ms":16.885410041851905,"throughput_eps":0,"last_update":"2026-03-22T09:39:37.479797301Z"} +2026/03/22 09:39:42 [transform_engine] {"stage_name":"transform_engine","events_processed":436,"events_dropped":0,"avg_latency_ms":100.46186900007014,"throughput_eps":0,"last_update":"2026-03-22T09:39:37.479753366Z"} +2026/03/22 09:39:42 ───────────────────────────────────────────────── +2026/03/22 09:39:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:39:47 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:39:42.368410151Z"} +2026/03/22 09:39:47 [metric_collector] {"stage_name":"metric_collector","events_processed":13094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2618.8,"last_update":"2026-03-22T09:39:42.368807543Z"} +2026/03/22 09:39:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:39:42.37596935Z"} +2026/03/22 09:39:47 [detection_layer] {"stage_name":"detection_layer","events_processed":436,"events_dropped":0,"avg_latency_ms":16.885410041851905,"throughput_eps":0,"last_update":"2026-03-22T09:39:42.479231506Z"} +2026/03/22 09:39:47 [transform_engine] {"stage_name":"transform_engine","events_processed":436,"events_dropped":0,"avg_latency_ms":100.46186900007014,"throughput_eps":0,"last_update":"2026-03-22T09:39:42.479211387Z"} +2026/03/22 09:39:47 ───────────────────────────────────────────────── +2026/03/22 09:39:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:39:52 [transform_engine] {"stage_name":"transform_engine","events_processed":436,"events_dropped":0,"avg_latency_ms":100.46186900007014,"throughput_eps":0,"last_update":"2026-03-22T09:39:47.479508828Z"} +2026/03/22 09:39:52 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:39:47.368394382Z"} +2026/03/22 09:39:52 [metric_collector] {"stage_name":"metric_collector","events_processed":13099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2619.8,"last_update":"2026-03-22T09:39:47.368723674Z"} +2026/03/22 09:39:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:39:47.376216745Z"} +2026/03/22 09:39:52 [detection_layer] {"stage_name":"detection_layer","events_processed":436,"events_dropped":0,"avg_latency_ms":16.885410041851905,"throughput_eps":0,"last_update":"2026-03-22T09:39:47.479461458Z"} +2026/03/22 09:39:52 ───────────────────────────────────────────────── +2026/03/22 09:39:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:39:57 [metric_collector] {"stage_name":"metric_collector","events_processed":13104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2620.8,"last_update":"2026-03-22T09:39:52.368544145Z"} +2026/03/22 09:39:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:39:52.376413879Z"} +2026/03/22 09:39:57 [detection_layer] {"stage_name":"detection_layer","events_processed":436,"events_dropped":0,"avg_latency_ms":16.885410041851905,"throughput_eps":0,"last_update":"2026-03-22T09:39:52.479527139Z"} +2026/03/22 09:39:57 [transform_engine] {"stage_name":"transform_engine","events_processed":436,"events_dropped":0,"avg_latency_ms":100.46186900007014,"throughput_eps":0,"last_update":"2026-03-22T09:39:52.479554461Z"} +2026/03/22 09:39:57 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:39:52.368281562Z"} +2026/03/22 09:39:57 ───────────────────────────────────────────────── +2026/03/22 09:40:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:40:02 [metric_collector] {"stage_name":"metric_collector","events_processed":13109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2621.8,"last_update":"2026-03-22T09:39:57.369040185Z"} +2026/03/22 09:40:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5246,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:39:57.37740131Z"} +2026/03/22 09:40:02 [detection_layer] {"stage_name":"detection_layer","events_processed":436,"events_dropped":0,"avg_latency_ms":16.885410041851905,"throughput_eps":0,"last_update":"2026-03-22T09:39:57.47961682Z"} +2026/03/22 09:40:02 [transform_engine] {"stage_name":"transform_engine","events_processed":437,"events_dropped":0,"avg_latency_ms":92.69111960005613,"throughput_eps":0,"last_update":"2026-03-22T09:39:57.541240774Z"} +2026/03/22 09:40:02 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:39:57.368792551Z"} +2026/03/22 09:40:02 ───────────────────────────────────────────────── +2026/03/22 09:40:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:40:07 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:40:07.368528821Z"} +2026/03/22 09:40:07 [metric_collector] {"stage_name":"metric_collector","events_processed":13114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2622.8,"last_update":"2026-03-22T09:40:02.368308054Z"} +2026/03/22 09:40:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:40:02.381083585Z"} +2026/03/22 09:40:07 [detection_layer] {"stage_name":"detection_layer","events_processed":437,"events_dropped":0,"avg_latency_ms":16.127342433481527,"throughput_eps":0,"last_update":"2026-03-22T09:40:02.479257435Z"} +2026/03/22 09:40:07 [transform_engine] {"stage_name":"transform_engine","events_processed":437,"events_dropped":0,"avg_latency_ms":92.69111960005613,"throughput_eps":0,"last_update":"2026-03-22T09:40:02.479291059Z"} +2026/03/22 09:40:07 ───────────────────────────────────────────────── +2026/03/22 09:40:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:40:12 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:40:07.368528821Z"} +2026/03/22 09:40:12 [metric_collector] {"stage_name":"metric_collector","events_processed":13119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2623.8,"last_update":"2026-03-22T09:40:07.368797796Z"} +2026/03/22 09:40:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:40:07.376114892Z"} +2026/03/22 09:40:12 [detection_layer] {"stage_name":"detection_layer","events_processed":437,"events_dropped":0,"avg_latency_ms":16.127342433481527,"throughput_eps":0,"last_update":"2026-03-22T09:40:07.479362689Z"} +2026/03/22 09:40:12 [transform_engine] {"stage_name":"transform_engine","events_processed":437,"events_dropped":0,"avg_latency_ms":92.69111960005613,"throughput_eps":0,"last_update":"2026-03-22T09:40:07.479402406Z"} +2026/03/22 09:40:12 ───────────────────────────────────────────────── +2026/03/22 09:40:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:40:17 [transform_engine] {"stage_name":"transform_engine","events_processed":437,"events_dropped":0,"avg_latency_ms":92.69111960005613,"throughput_eps":0,"last_update":"2026-03-22T09:40:12.479656938Z"} +2026/03/22 09:40:17 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:40:12.368068344Z"} +2026/03/22 09:40:17 [metric_collector] {"stage_name":"metric_collector","events_processed":13124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2624.8,"last_update":"2026-03-22T09:40:12.368442581Z"} +2026/03/22 09:40:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:40:12.377499859Z"} +2026/03/22 09:40:17 [detection_layer] {"stage_name":"detection_layer","events_processed":437,"events_dropped":0,"avg_latency_ms":16.127342433481527,"throughput_eps":0,"last_update":"2026-03-22T09:40:12.479690903Z"} +2026/03/22 09:40:17 ───────────────────────────────────────────────── +2026/03/22 09:40:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:40:22 [transform_engine] {"stage_name":"transform_engine","events_processed":437,"events_dropped":0,"avg_latency_ms":92.69111960005613,"throughput_eps":0,"last_update":"2026-03-22T09:40:17.478812122Z"} +2026/03/22 09:40:22 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:40:17.368842598Z"} +2026/03/22 09:40:22 [metric_collector] {"stage_name":"metric_collector","events_processed":13129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2625.8,"last_update":"2026-03-22T09:40:17.369268604Z"} +2026/03/22 09:40:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:40:17.376585569Z"} +2026/03/22 09:40:22 [detection_layer] {"stage_name":"detection_layer","events_processed":437,"events_dropped":0,"avg_latency_ms":16.127342433481527,"throughput_eps":0,"last_update":"2026-03-22T09:40:17.478947651Z"} +2026/03/22 09:40:22 ───────────────────────────────────────────────── +2026/03/22 09:40:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:40:27 [detection_layer] {"stage_name":"detection_layer","events_processed":437,"events_dropped":0,"avg_latency_ms":16.127342433481527,"throughput_eps":0,"last_update":"2026-03-22T09:40:22.479613701Z"} +2026/03/22 09:40:27 [transform_engine] {"stage_name":"transform_engine","events_processed":437,"events_dropped":0,"avg_latency_ms":92.69111960005613,"throughput_eps":0,"last_update":"2026-03-22T09:40:22.479639971Z"} +2026/03/22 09:40:27 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:40:22.367980962Z"} +2026/03/22 09:40:27 [metric_collector] {"stage_name":"metric_collector","events_processed":13134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2626.8,"last_update":"2026-03-22T09:40:22.368292158Z"} +2026/03/22 09:40:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:40:22.377420262Z"} +2026/03/22 09:40:27 ───────────────────────────────────────────────── +2026/03/22 09:40:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:40:32 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:40:27.367974104Z"} +2026/03/22 09:40:32 [metric_collector] {"stage_name":"metric_collector","events_processed":13139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2627.8,"last_update":"2026-03-22T09:40:27.368449515Z"} +2026/03/22 09:40:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:40:27.375529325Z"} +2026/03/22 09:40:32 [detection_layer] {"stage_name":"detection_layer","events_processed":437,"events_dropped":0,"avg_latency_ms":16.127342433481527,"throughput_eps":0,"last_update":"2026-03-22T09:40:27.479728046Z"} +2026/03/22 09:40:32 [transform_engine] {"stage_name":"transform_engine","events_processed":438,"events_dropped":0,"avg_latency_ms":395.9613920800449,"throughput_eps":0,"last_update":"2026-03-22T09:40:29.088799484Z"} +2026/03/22 09:40:32 ───────────────────────────────────────────────── +2026/03/22 09:40:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:40:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:40:32.375471211Z"} +2026/03/22 09:40:37 [detection_layer] {"stage_name":"detection_layer","events_processed":438,"events_dropped":0,"avg_latency_ms":15.812941546785222,"throughput_eps":0,"last_update":"2026-03-22T09:40:32.479654521Z"} +2026/03/22 09:40:37 [transform_engine] {"stage_name":"transform_engine","events_processed":438,"events_dropped":0,"avg_latency_ms":395.9613920800449,"throughput_eps":0,"last_update":"2026-03-22T09:40:32.479678527Z"} +2026/03/22 09:40:37 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:40:32.36827674Z"} +2026/03/22 09:40:37 [metric_collector] {"stage_name":"metric_collector","events_processed":13144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2628.8,"last_update":"2026-03-22T09:40:32.368526468Z"} +2026/03/22 09:40:37 ───────────────────────────────────────────────── +2026/03/22 09:40:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:40:42 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:40:37.369073625Z"} +2026/03/22 09:40:42 [metric_collector] {"stage_name":"metric_collector","events_processed":13149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2629.8,"last_update":"2026-03-22T09:40:37.369048487Z"} +2026/03/22 09:40:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:40:37.376354601Z"} +2026/03/22 09:40:42 [detection_layer] {"stage_name":"detection_layer","events_processed":438,"events_dropped":0,"avg_latency_ms":15.812941546785222,"throughput_eps":0,"last_update":"2026-03-22T09:40:37.479559096Z"} +2026/03/22 09:40:42 [transform_engine] {"stage_name":"transform_engine","events_processed":438,"events_dropped":0,"avg_latency_ms":395.9613920800449,"throughput_eps":0,"last_update":"2026-03-22T09:40:37.479584875Z"} +2026/03/22 09:40:42 ───────────────────────────────────────────────── +2026/03/22 09:40:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:40:47 [metric_collector] {"stage_name":"metric_collector","events_processed":13154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2630.8,"last_update":"2026-03-22T09:40:42.369103214Z"} +2026/03/22 09:40:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:40:42.375994865Z"} +2026/03/22 09:40:47 [detection_layer] {"stage_name":"detection_layer","events_processed":438,"events_dropped":0,"avg_latency_ms":15.812941546785222,"throughput_eps":0,"last_update":"2026-03-22T09:40:42.479189712Z"} +2026/03/22 09:40:47 [transform_engine] {"stage_name":"transform_engine","events_processed":438,"events_dropped":0,"avg_latency_ms":395.9613920800449,"throughput_eps":0,"last_update":"2026-03-22T09:40:42.479217746Z"} +2026/03/22 09:40:47 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:40:42.368848727Z"} +2026/03/22 09:40:47 ───────────────────────────────────────────────── +2026/03/22 09:40:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:40:52 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:40:47.367946996Z"} +2026/03/22 09:40:52 [metric_collector] {"stage_name":"metric_collector","events_processed":13159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2631.8,"last_update":"2026-03-22T09:40:47.368150175Z"} +2026/03/22 09:40:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:40:47.375499893Z"} +2026/03/22 09:40:52 [detection_layer] {"stage_name":"detection_layer","events_processed":438,"events_dropped":0,"avg_latency_ms":15.812941546785222,"throughput_eps":0,"last_update":"2026-03-22T09:40:47.479683002Z"} +2026/03/22 09:40:52 [transform_engine] {"stage_name":"transform_engine","events_processed":438,"events_dropped":0,"avg_latency_ms":395.9613920800449,"throughput_eps":0,"last_update":"2026-03-22T09:40:47.479722709Z"} +2026/03/22 09:40:52 ───────────────────────────────────────────────── +2026/03/22 09:40:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:40:57 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:40:57.368745004Z"} +2026/03/22 09:40:57 [metric_collector] {"stage_name":"metric_collector","events_processed":13164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2632.8,"last_update":"2026-03-22T09:40:52.368381817Z"} +2026/03/22 09:40:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:40:52.375077963Z"} +2026/03/22 09:40:57 [detection_layer] {"stage_name":"detection_layer","events_processed":438,"events_dropped":0,"avg_latency_ms":15.812941546785222,"throughput_eps":0,"last_update":"2026-03-22T09:40:52.479321088Z"} +2026/03/22 09:40:57 [transform_engine] {"stage_name":"transform_engine","events_processed":438,"events_dropped":0,"avg_latency_ms":395.9613920800449,"throughput_eps":0,"last_update":"2026-03-22T09:40:52.479279458Z"} +2026/03/22 09:40:57 ───────────────────────────────────────────────── +2026/03/22 09:41:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:41:02 [detection_layer] {"stage_name":"detection_layer","events_processed":438,"events_dropped":0,"avg_latency_ms":15.812941546785222,"throughput_eps":0,"last_update":"2026-03-22T09:40:57.479787261Z"} +2026/03/22 09:41:02 [transform_engine] {"stage_name":"transform_engine","events_processed":439,"events_dropped":0,"avg_latency_ms":329.88628186403594,"throughput_eps":0,"last_update":"2026-03-22T09:40:57.545406607Z"} +2026/03/22 09:41:02 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:40:57.368745004Z"} +2026/03/22 09:41:02 [metric_collector] {"stage_name":"metric_collector","events_processed":13169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2633.8,"last_update":"2026-03-22T09:40:57.369130962Z"} +2026/03/22 09:41:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:40:57.375663625Z"} +2026/03/22 09:41:02 ───────────────────────────────────────────────── +2026/03/22 09:41:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:41:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:41:02.377562051Z"} +2026/03/22 09:41:07 [detection_layer] {"stage_name":"detection_layer","events_processed":439,"events_dropped":0,"avg_latency_ms":16.37782063742818,"throughput_eps":0,"last_update":"2026-03-22T09:41:02.479746694Z"} +2026/03/22 09:41:07 [transform_engine] {"stage_name":"transform_engine","events_processed":439,"events_dropped":0,"avg_latency_ms":329.88628186403594,"throughput_eps":0,"last_update":"2026-03-22T09:41:02.479711457Z"} +2026/03/22 09:41:07 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:41:07.36801342Z"} +2026/03/22 09:41:07 [metric_collector] {"stage_name":"metric_collector","events_processed":13174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2634.8,"last_update":"2026-03-22T09:41:02.368807173Z"} +2026/03/22 09:41:07 ───────────────────────────────────────────────── +2026/03/22 09:41:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:41:12 [detection_layer] {"stage_name":"detection_layer","events_processed":439,"events_dropped":0,"avg_latency_ms":16.37782063742818,"throughput_eps":0,"last_update":"2026-03-22T09:41:07.479916587Z"} +2026/03/22 09:41:12 [transform_engine] {"stage_name":"transform_engine","events_processed":439,"events_dropped":0,"avg_latency_ms":329.88628186403594,"throughput_eps":0,"last_update":"2026-03-22T09:41:07.479868875Z"} +2026/03/22 09:41:12 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:41:07.36801342Z"} +2026/03/22 09:41:12 [metric_collector] {"stage_name":"metric_collector","events_processed":13179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2635.8,"last_update":"2026-03-22T09:41:07.368486134Z"} +2026/03/22 09:41:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:41:07.377681658Z"} +2026/03/22 09:41:12 ───────────────────────────────────────────────── +2026/03/22 09:41:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:41:17 [transform_engine] {"stage_name":"transform_engine","events_processed":439,"events_dropped":0,"avg_latency_ms":329.88628186403594,"throughput_eps":0,"last_update":"2026-03-22T09:41:12.479694483Z"} +2026/03/22 09:41:17 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:41:17.368385706Z"} +2026/03/22 09:41:17 [metric_collector] {"stage_name":"metric_collector","events_processed":13184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2636.8,"last_update":"2026-03-22T09:41:12.368559688Z"} +2026/03/22 09:41:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5276,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:41:12.375481205Z"} +2026/03/22 09:41:17 [detection_layer] {"stage_name":"detection_layer","events_processed":439,"events_dropped":0,"avg_latency_ms":16.37782063742818,"throughput_eps":0,"last_update":"2026-03-22T09:41:12.479716135Z"} +2026/03/22 09:41:17 ───────────────────────────────────────────────── +2026/03/22 09:41:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:41:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:41:17.375069889Z"} +2026/03/22 09:41:22 [detection_layer] {"stage_name":"detection_layer","events_processed":439,"events_dropped":0,"avg_latency_ms":16.37782063742818,"throughput_eps":0,"last_update":"2026-03-22T09:41:17.479339645Z"} +2026/03/22 09:41:22 [transform_engine] {"stage_name":"transform_engine","events_processed":439,"events_dropped":0,"avg_latency_ms":329.88628186403594,"throughput_eps":0,"last_update":"2026-03-22T09:41:17.479281333Z"} +2026/03/22 09:41:22 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:41:22.36871581Z"} +2026/03/22 09:41:22 [metric_collector] {"stage_name":"metric_collector","events_processed":13189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2637.8,"last_update":"2026-03-22T09:41:17.368828624Z"} +2026/03/22 09:41:22 ───────────────────────────────────────────────── +2026/03/22 09:41:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:41:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:41:22.37738275Z"} +2026/03/22 09:41:27 [detection_layer] {"stage_name":"detection_layer","events_processed":439,"events_dropped":0,"avg_latency_ms":16.37782063742818,"throughput_eps":0,"last_update":"2026-03-22T09:41:22.479576831Z"} +2026/03/22 09:41:27 [transform_engine] {"stage_name":"transform_engine","events_processed":439,"events_dropped":0,"avg_latency_ms":329.88628186403594,"throughput_eps":0,"last_update":"2026-03-22T09:41:22.479552625Z"} +2026/03/22 09:41:27 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:41:22.36871581Z"} +2026/03/22 09:41:27 [metric_collector] {"stage_name":"metric_collector","events_processed":13199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2639.8,"last_update":"2026-03-22T09:41:27.368241085Z"} +2026/03/22 09:41:27 ───────────────────────────────────────────────── +2026/03/22 09:41:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:41:32 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:41:27.368393326Z"} +2026/03/22 09:41:32 [metric_collector] {"stage_name":"metric_collector","events_processed":13199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2639.8,"last_update":"2026-03-22T09:41:27.368241085Z"} +2026/03/22 09:41:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:41:27.379877282Z"} +2026/03/22 09:41:32 [detection_layer] {"stage_name":"detection_layer","events_processed":439,"events_dropped":0,"avg_latency_ms":16.37782063742818,"throughput_eps":0,"last_update":"2026-03-22T09:41:27.479071658Z"} +2026/03/22 09:41:32 [transform_engine] {"stage_name":"transform_engine","events_processed":440,"events_dropped":0,"avg_latency_ms":276.82946509122877,"throughput_eps":0,"last_update":"2026-03-22T09:41:27.543658156Z"} +2026/03/22 09:41:32 ───────────────────────────────────────────────── +2026/03/22 09:41:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:41:37 [metric_collector] {"stage_name":"metric_collector","events_processed":13204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2640.8,"last_update":"2026-03-22T09:41:32.368926515Z"} +2026/03/22 09:41:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:41:32.376644058Z"} +2026/03/22 09:41:37 [detection_layer] {"stage_name":"detection_layer","events_processed":440,"events_dropped":0,"avg_latency_ms":16.090464109942545,"throughput_eps":0,"last_update":"2026-03-22T09:41:32.479863021Z"} +2026/03/22 09:41:37 [transform_engine] {"stage_name":"transform_engine","events_processed":440,"events_dropped":0,"avg_latency_ms":276.82946509122877,"throughput_eps":0,"last_update":"2026-03-22T09:41:32.47983644Z"} +2026/03/22 09:41:37 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:41:32.368692818Z"} +2026/03/22 09:41:37 ───────────────────────────────────────────────── +2026/03/22 09:41:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:41:42 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:41:37.367944244Z"} +2026/03/22 09:41:42 [metric_collector] {"stage_name":"metric_collector","events_processed":13209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2641.8,"last_update":"2026-03-22T09:41:37.368270178Z"} +2026/03/22 09:41:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5286,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:41:37.375052459Z"} +2026/03/22 09:41:42 [detection_layer] {"stage_name":"detection_layer","events_processed":440,"events_dropped":0,"avg_latency_ms":16.090464109942545,"throughput_eps":0,"last_update":"2026-03-22T09:41:37.479209981Z"} +2026/03/22 09:41:42 [transform_engine] {"stage_name":"transform_engine","events_processed":440,"events_dropped":0,"avg_latency_ms":276.82946509122877,"throughput_eps":0,"last_update":"2026-03-22T09:41:37.47918871Z"} +2026/03/22 09:41:42 ───────────────────────────────────────────────── +2026/03/22 09:41:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:41:47 [metric_collector] {"stage_name":"metric_collector","events_processed":13214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2642.8,"last_update":"2026-03-22T09:41:42.368225026Z"} +2026/03/22 09:41:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:41:42.375287783Z"} +2026/03/22 09:41:47 [detection_layer] {"stage_name":"detection_layer","events_processed":440,"events_dropped":0,"avg_latency_ms":16.090464109942545,"throughput_eps":0,"last_update":"2026-03-22T09:41:42.479512674Z"} +2026/03/22 09:41:47 [transform_engine] {"stage_name":"transform_engine","events_processed":440,"events_dropped":0,"avg_latency_ms":276.82946509122877,"throughput_eps":0,"last_update":"2026-03-22T09:41:42.479535308Z"} +2026/03/22 09:41:47 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:41:42.367993202Z"} +2026/03/22 09:41:47 ───────────────────────────────────────────────── +2026/03/22 09:41:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:41:52 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:41:47.368963213Z"} +2026/03/22 09:41:52 [metric_collector] {"stage_name":"metric_collector","events_processed":13219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2643.8,"last_update":"2026-03-22T09:41:47.369156954Z"} +2026/03/22 09:41:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:41:47.379233114Z"} +2026/03/22 09:41:52 [detection_layer] {"stage_name":"detection_layer","events_processed":440,"events_dropped":0,"avg_latency_ms":16.090464109942545,"throughput_eps":0,"last_update":"2026-03-22T09:41:47.479411725Z"} +2026/03/22 09:41:52 [transform_engine] {"stage_name":"transform_engine","events_processed":440,"events_dropped":0,"avg_latency_ms":276.82946509122877,"throughput_eps":0,"last_update":"2026-03-22T09:41:47.479384042Z"} +2026/03/22 09:41:52 ───────────────────────────────────────────────── +2026/03/22 09:41:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:41:57 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:41:52.368826658Z"} +2026/03/22 09:41:57 [metric_collector] {"stage_name":"metric_collector","events_processed":13224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2644.8,"last_update":"2026-03-22T09:41:52.368843881Z"} +2026/03/22 09:41:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:41:52.375498578Z"} +2026/03/22 09:41:57 [detection_layer] {"stage_name":"detection_layer","events_processed":440,"events_dropped":0,"avg_latency_ms":16.090464109942545,"throughput_eps":0,"last_update":"2026-03-22T09:41:52.479696215Z"} +2026/03/22 09:41:57 [transform_engine] {"stage_name":"transform_engine","events_processed":440,"events_dropped":0,"avg_latency_ms":276.82946509122877,"throughput_eps":0,"last_update":"2026-03-22T09:41:52.479722175Z"} +2026/03/22 09:41:57 ───────────────────────────────────────────────── +2026/03/22 09:42:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:42:02 [transform_engine] {"stage_name":"transform_engine","events_processed":441,"events_dropped":0,"avg_latency_ms":234.06623907298302,"throughput_eps":0,"last_update":"2026-03-22T09:41:57.542546829Z"} +2026/03/22 09:42:02 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:42:02.368630695Z"} +2026/03/22 09:42:02 [metric_collector] {"stage_name":"metric_collector","events_processed":13229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2645.8,"last_update":"2026-03-22T09:41:57.368127248Z"} +2026/03/22 09:42:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:41:57.375303524Z"} +2026/03/22 09:42:02 [detection_layer] {"stage_name":"detection_layer","events_processed":440,"events_dropped":0,"avg_latency_ms":16.090464109942545,"throughput_eps":0,"last_update":"2026-03-22T09:41:57.479555306Z"} +2026/03/22 09:42:02 ───────────────────────────────────────────────── +2026/03/22 09:42:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:42:07 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:42:07.368379648Z"} +2026/03/22 09:42:07 [metric_collector] {"stage_name":"metric_collector","events_processed":13234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2646.8,"last_update":"2026-03-22T09:42:02.368886084Z"} +2026/03/22 09:42:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:42:02.376059114Z"} +2026/03/22 09:42:07 [detection_layer] {"stage_name":"detection_layer","events_processed":441,"events_dropped":0,"avg_latency_ms":15.983285887954036,"throughput_eps":0,"last_update":"2026-03-22T09:42:02.479281814Z"} +2026/03/22 09:42:07 [transform_engine] {"stage_name":"transform_engine","events_processed":441,"events_dropped":0,"avg_latency_ms":234.06623907298302,"throughput_eps":0,"last_update":"2026-03-22T09:42:02.479252478Z"} +2026/03/22 09:42:07 ───────────────────────────────────────────────── +2026/03/22 09:42:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:42:12 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:42:12.368427242Z"} +2026/03/22 09:42:12 [metric_collector] {"stage_name":"metric_collector","events_processed":13239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2647.8,"last_update":"2026-03-22T09:42:07.368707646Z"} +2026/03/22 09:42:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:42:07.375634904Z"} +2026/03/22 09:42:12 [detection_layer] {"stage_name":"detection_layer","events_processed":441,"events_dropped":0,"avg_latency_ms":15.983285887954036,"throughput_eps":0,"last_update":"2026-03-22T09:42:07.479828205Z"} +2026/03/22 09:42:12 [transform_engine] {"stage_name":"transform_engine","events_processed":441,"events_dropped":0,"avg_latency_ms":234.06623907298302,"throughput_eps":0,"last_update":"2026-03-22T09:42:07.479868391Z"} +2026/03/22 09:42:12 ───────────────────────────────────────────────── +2026/03/22 09:42:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:42:17 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:42:12.368427242Z"} +2026/03/22 09:42:17 [metric_collector] {"stage_name":"metric_collector","events_processed":13244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2648.8,"last_update":"2026-03-22T09:42:12.368618218Z"} +2026/03/22 09:42:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:42:12.375716633Z"} +2026/03/22 09:42:17 [detection_layer] {"stage_name":"detection_layer","events_processed":441,"events_dropped":0,"avg_latency_ms":15.983285887954036,"throughput_eps":0,"last_update":"2026-03-22T09:42:12.478951499Z"} +2026/03/22 09:42:17 [transform_engine] {"stage_name":"transform_engine","events_processed":441,"events_dropped":0,"avg_latency_ms":234.06623907298302,"throughput_eps":0,"last_update":"2026-03-22T09:42:12.478892075Z"} +2026/03/22 09:42:17 ───────────────────────────────────────────────── +2026/03/22 09:42:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:42:22 [detection_layer] {"stage_name":"detection_layer","events_processed":441,"events_dropped":0,"avg_latency_ms":15.983285887954036,"throughput_eps":0,"last_update":"2026-03-22T09:42:17.479759132Z"} +2026/03/22 09:42:22 [transform_engine] {"stage_name":"transform_engine","events_processed":441,"events_dropped":0,"avg_latency_ms":234.06623907298302,"throughput_eps":0,"last_update":"2026-03-22T09:42:17.479732141Z"} +2026/03/22 09:42:22 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:42:17.36802088Z"} +2026/03/22 09:42:22 [metric_collector] {"stage_name":"metric_collector","events_processed":13249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2649.8,"last_update":"2026-03-22T09:42:17.368336485Z"} +2026/03/22 09:42:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:42:17.375530504Z"} +2026/03/22 09:42:22 ───────────────────────────────────────────────── +2026/03/22 09:42:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:42:27 [detection_layer] {"stage_name":"detection_layer","events_processed":441,"events_dropped":0,"avg_latency_ms":15.983285887954036,"throughput_eps":0,"last_update":"2026-03-22T09:42:22.47955417Z"} +2026/03/22 09:42:27 [transform_engine] {"stage_name":"transform_engine","events_processed":441,"events_dropped":0,"avg_latency_ms":234.06623907298302,"throughput_eps":0,"last_update":"2026-03-22T09:42:22.479531857Z"} +2026/03/22 09:42:27 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:42:22.369067475Z"} +2026/03/22 09:42:27 [metric_collector] {"stage_name":"metric_collector","events_processed":13254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2650.8,"last_update":"2026-03-22T09:42:22.369050893Z"} +2026/03/22 09:42:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:42:22.37631688Z"} +2026/03/22 09:42:27 ───────────────────────────────────────────────── +2026/03/22 09:42:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:42:32 [transform_engine] {"stage_name":"transform_engine","events_processed":442,"events_dropped":0,"avg_latency_ms":200.38689165838645,"throughput_eps":0,"last_update":"2026-03-22T09:42:27.544741996Z"} +2026/03/22 09:42:32 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:42:27.368464166Z"} +2026/03/22 09:42:32 [metric_collector] {"stage_name":"metric_collector","events_processed":13259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2651.8,"last_update":"2026-03-22T09:42:27.368920109Z"} +2026/03/22 09:42:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:42:27.376817515Z"} +2026/03/22 09:42:32 [detection_layer] {"stage_name":"detection_layer","events_processed":441,"events_dropped":0,"avg_latency_ms":15.983285887954036,"throughput_eps":0,"last_update":"2026-03-22T09:42:27.4791282Z"} +2026/03/22 09:42:32 ───────────────────────────────────────────────── +2026/03/22 09:42:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:42:37 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:42:32.36823982Z"} +2026/03/22 09:42:37 [metric_collector] {"stage_name":"metric_collector","events_processed":13264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2652.8,"last_update":"2026-03-22T09:42:32.368525938Z"} +2026/03/22 09:42:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:42:32.375777808Z"} +2026/03/22 09:42:37 [detection_layer] {"stage_name":"detection_layer","events_processed":442,"events_dropped":0,"avg_latency_ms":15.66047151036323,"throughput_eps":0,"last_update":"2026-03-22T09:42:32.480009423Z"} +2026/03/22 09:42:37 [transform_engine] {"stage_name":"transform_engine","events_processed":442,"events_dropped":0,"avg_latency_ms":200.38689165838645,"throughput_eps":0,"last_update":"2026-03-22T09:42:32.478899516Z"} +2026/03/22 09:42:37 ───────────────────────────────────────────────── +2026/03/22 09:42:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:42:42 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:42:37.368460537Z"} +2026/03/22 09:42:42 [metric_collector] {"stage_name":"metric_collector","events_processed":13269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2653.8,"last_update":"2026-03-22T09:42:37.368786632Z"} +2026/03/22 09:42:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:42:37.375099233Z"} +2026/03/22 09:42:42 [detection_layer] {"stage_name":"detection_layer","events_processed":442,"events_dropped":0,"avg_latency_ms":15.66047151036323,"throughput_eps":0,"last_update":"2026-03-22T09:42:37.479305319Z"} +2026/03/22 09:42:42 [transform_engine] {"stage_name":"transform_engine","events_processed":442,"events_dropped":0,"avg_latency_ms":200.38689165838645,"throughput_eps":0,"last_update":"2026-03-22T09:42:37.479289559Z"} +2026/03/22 09:42:42 ───────────────────────────────────────────────── +2026/03/22 09:42:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:42:47 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:42:42.367952881Z"} +2026/03/22 09:42:47 [metric_collector] {"stage_name":"metric_collector","events_processed":13274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2654.8,"last_update":"2026-03-22T09:42:42.368198592Z"} +2026/03/22 09:42:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:42:42.374928282Z"} +2026/03/22 09:42:47 [detection_layer] {"stage_name":"detection_layer","events_processed":442,"events_dropped":0,"avg_latency_ms":15.66047151036323,"throughput_eps":0,"last_update":"2026-03-22T09:42:42.479139537Z"} +2026/03/22 09:42:47 [transform_engine] {"stage_name":"transform_engine","events_processed":442,"events_dropped":0,"avg_latency_ms":200.38689165838645,"throughput_eps":0,"last_update":"2026-03-22T09:42:42.479166378Z"} +2026/03/22 09:42:47 ───────────────────────────────────────────────── +2026/03/22 09:42:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:42:52 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:42:47.368008991Z"} +2026/03/22 09:42:52 [metric_collector] {"stage_name":"metric_collector","events_processed":13279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2655.8,"last_update":"2026-03-22T09:42:47.368308425Z"} +2026/03/22 09:42:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:42:47.375215745Z"} +2026/03/22 09:42:52 [detection_layer] {"stage_name":"detection_layer","events_processed":442,"events_dropped":0,"avg_latency_ms":15.66047151036323,"throughput_eps":0,"last_update":"2026-03-22T09:42:47.479500561Z"} +2026/03/22 09:42:52 [transform_engine] {"stage_name":"transform_engine","events_processed":442,"events_dropped":0,"avg_latency_ms":200.38689165838645,"throughput_eps":0,"last_update":"2026-03-22T09:42:47.479482276Z"} +2026/03/22 09:42:52 ───────────────────────────────────────────────── +2026/03/22 09:42:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:42:57 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:42:52.367968338Z"} +2026/03/22 09:42:57 [metric_collector] {"stage_name":"metric_collector","events_processed":13284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2656.8,"last_update":"2026-03-22T09:42:52.368159694Z"} +2026/03/22 09:42:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:42:52.375614412Z"} +2026/03/22 09:42:57 [detection_layer] {"stage_name":"detection_layer","events_processed":442,"events_dropped":0,"avg_latency_ms":15.66047151036323,"throughput_eps":0,"last_update":"2026-03-22T09:42:52.479792765Z"} +2026/03/22 09:42:57 [transform_engine] {"stage_name":"transform_engine","events_processed":442,"events_dropped":0,"avg_latency_ms":200.38689165838645,"throughput_eps":0,"last_update":"2026-03-22T09:42:52.479815429Z"} +2026/03/22 09:42:57 ───────────────────────────────────────────────── +2026/03/22 09:43:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:43:02 [transform_engine] {"stage_name":"transform_engine","events_processed":443,"events_dropped":0,"avg_latency_ms":173.63947532670917,"throughput_eps":0,"last_update":"2026-03-22T09:42:57.546437588Z"} +2026/03/22 09:43:02 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:42:57.36838075Z"} +2026/03/22 09:43:02 [metric_collector] {"stage_name":"metric_collector","events_processed":13289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2657.8,"last_update":"2026-03-22T09:42:57.368585152Z"} +2026/03/22 09:43:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:42:57.374600934Z"} +2026/03/22 09:43:02 [detection_layer] {"stage_name":"detection_layer","events_processed":442,"events_dropped":0,"avg_latency_ms":15.66047151036323,"throughput_eps":0,"last_update":"2026-03-22T09:42:57.479766918Z"} +2026/03/22 09:43:02 ───────────────────────────────────────────────── +2026/03/22 09:43:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:43:07 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:43:02.368023781Z"} +2026/03/22 09:43:07 [metric_collector] {"stage_name":"metric_collector","events_processed":13294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2658.8,"last_update":"2026-03-22T09:43:02.36824785Z"} +2026/03/22 09:43:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5320,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:43:02.375331729Z"} +2026/03/22 09:43:07 [detection_layer] {"stage_name":"detection_layer","events_processed":443,"events_dropped":0,"avg_latency_ms":15.582805808290585,"throughput_eps":0,"last_update":"2026-03-22T09:43:02.479564695Z"} +2026/03/22 09:43:07 [transform_engine] {"stage_name":"transform_engine","events_processed":443,"events_dropped":0,"avg_latency_ms":173.63947532670917,"throughput_eps":0,"last_update":"2026-03-22T09:43:02.479540409Z"} +2026/03/22 09:43:07 ───────────────────────────────────────────────── +2026/03/22 09:43:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:43:12 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:43:12.368464041Z"} +2026/03/22 09:43:12 [metric_collector] {"stage_name":"metric_collector","events_processed":13298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2659.6,"last_update":"2026-03-22T09:43:07.368670588Z"} +2026/03/22 09:43:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:43:07.375533202Z"} +2026/03/22 09:43:12 [detection_layer] {"stage_name":"detection_layer","events_processed":443,"events_dropped":0,"avg_latency_ms":15.582805808290585,"throughput_eps":0,"last_update":"2026-03-22T09:43:07.479731282Z"} +2026/03/22 09:43:12 [transform_engine] {"stage_name":"transform_engine","events_processed":443,"events_dropped":0,"avg_latency_ms":173.63947532670917,"throughput_eps":0,"last_update":"2026-03-22T09:43:07.479749807Z"} +2026/03/22 09:43:12 ───────────────────────────────────────────────── +2026/03/22 09:43:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:43:17 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:43:12.368464041Z"} +2026/03/22 09:43:17 [metric_collector] {"stage_name":"metric_collector","events_processed":13304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2660.8,"last_update":"2026-03-22T09:43:12.368662191Z"} +2026/03/22 09:43:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:43:12.375503795Z"} +2026/03/22 09:43:17 [detection_layer] {"stage_name":"detection_layer","events_processed":443,"events_dropped":0,"avg_latency_ms":15.582805808290585,"throughput_eps":0,"last_update":"2026-03-22T09:43:12.479662429Z"} +2026/03/22 09:43:17 [transform_engine] {"stage_name":"transform_engine","events_processed":443,"events_dropped":0,"avg_latency_ms":173.63947532670917,"throughput_eps":0,"last_update":"2026-03-22T09:43:12.479681266Z"} +2026/03/22 09:43:17 ───────────────────────────────────────────────── +2026/03/22 09:43:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:43:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:43:17.375375303Z"} +2026/03/22 09:43:22 [detection_layer] {"stage_name":"detection_layer","events_processed":443,"events_dropped":0,"avg_latency_ms":15.582805808290585,"throughput_eps":0,"last_update":"2026-03-22T09:43:17.479606375Z"} +2026/03/22 09:43:22 [transform_engine] {"stage_name":"transform_engine","events_processed":443,"events_dropped":0,"avg_latency_ms":173.63947532670917,"throughput_eps":0,"last_update":"2026-03-22T09:43:17.479578432Z"} +2026/03/22 09:43:22 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:43:17.368882296Z"} +2026/03/22 09:43:22 [metric_collector] {"stage_name":"metric_collector","events_processed":13309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2661.8,"last_update":"2026-03-22T09:43:17.369335834Z"} +2026/03/22 09:43:22 ───────────────────────────────────────────────── +Saved state: 13 clusters, 20595 messages, reason: none +2026/03/22 09:43:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:43:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:43:22.377390113Z"} +2026/03/22 09:43:27 [detection_layer] {"stage_name":"detection_layer","events_processed":443,"events_dropped":0,"avg_latency_ms":15.582805808290585,"throughput_eps":0,"last_update":"2026-03-22T09:43:22.479561191Z"} +2026/03/22 09:43:27 [transform_engine] {"stage_name":"transform_engine","events_processed":443,"events_dropped":0,"avg_latency_ms":173.63947532670917,"throughput_eps":0,"last_update":"2026-03-22T09:43:22.479536404Z"} +2026/03/22 09:43:27 [log_collector] {"stage_name":"log_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T09:43:22.368891696Z"} +2026/03/22 09:43:27 [metric_collector] {"stage_name":"metric_collector","events_processed":13314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2662.8,"last_update":"2026-03-22T09:43:22.368884331Z"} +2026/03/22 09:43:27 ───────────────────────────────────────────────── +2026/03/22 09:43:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:43:32 [log_collector] {"stage_name":"log_collector","events_processed":20696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4139.2,"last_update":"2026-03-22T09:43:27.36816042Z"} +2026/03/22 09:43:32 [metric_collector] {"stage_name":"metric_collector","events_processed":13319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2663.8,"last_update":"2026-03-22T09:43:27.368467678Z"} +2026/03/22 09:43:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5330,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:43:27.376644981Z"} +2026/03/22 09:43:32 [detection_layer] {"stage_name":"detection_layer","events_processed":443,"events_dropped":0,"avg_latency_ms":15.582805808290585,"throughput_eps":0,"last_update":"2026-03-22T09:43:27.479107136Z"} +2026/03/22 09:43:32 [transform_engine] {"stage_name":"transform_engine","events_processed":444,"events_dropped":0,"avg_latency_ms":156.86117886136734,"throughput_eps":0,"last_update":"2026-03-22T09:43:27.568872562Z"} +2026/03/22 09:43:32 ───────────────────────────────────────────────── +2026/03/22 09:43:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:43:37 [log_collector] {"stage_name":"log_collector","events_processed":20822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4164.4,"last_update":"2026-03-22T09:43:32.368734396Z"} +2026/03/22 09:43:37 [metric_collector] {"stage_name":"metric_collector","events_processed":13324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2664.8,"last_update":"2026-03-22T09:43:32.369071282Z"} +2026/03/22 09:43:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:43:32.377750475Z"} +2026/03/22 09:43:37 [detection_layer] {"stage_name":"detection_layer","events_processed":444,"events_dropped":0,"avg_latency_ms":15.229655846632468,"throughput_eps":0,"last_update":"2026-03-22T09:43:32.479548769Z"} +2026/03/22 09:43:37 [transform_engine] {"stage_name":"transform_engine","events_processed":444,"events_dropped":0,"avg_latency_ms":156.86117886136734,"throughput_eps":0,"last_update":"2026-03-22T09:43:32.479572555Z"} +2026/03/22 09:43:37 ───────────────────────────────────────────────── +2026/03/22 09:43:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:43:42 [log_collector] {"stage_name":"log_collector","events_processed":20990,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4198,"last_update":"2026-03-22T09:43:37.368564029Z"} +2026/03/22 09:43:42 [metric_collector] {"stage_name":"metric_collector","events_processed":13328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2665.6,"last_update":"2026-03-22T09:43:37.368362243Z"} +2026/03/22 09:43:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:43:37.377032399Z"} +2026/03/22 09:43:42 [detection_layer] {"stage_name":"detection_layer","events_processed":444,"events_dropped":0,"avg_latency_ms":15.229655846632468,"throughput_eps":0,"last_update":"2026-03-22T09:43:37.479124065Z"} +2026/03/22 09:43:42 [transform_engine] {"stage_name":"transform_engine","events_processed":444,"events_dropped":0,"avg_latency_ms":156.86117886136734,"throughput_eps":0,"last_update":"2026-03-22T09:43:37.479138133Z"} +2026/03/22 09:43:42 ───────────────────────────────────────────────── +2026/03/22 09:43:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:43:47 [log_collector] {"stage_name":"log_collector","events_processed":21010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202,"last_update":"2026-03-22T09:43:42.368022816Z"} +2026/03/22 09:43:47 [metric_collector] {"stage_name":"metric_collector","events_processed":13334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2666.8,"last_update":"2026-03-22T09:43:42.36842172Z"} +2026/03/22 09:43:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:43:42.37535464Z"} +2026/03/22 09:43:47 [detection_layer] {"stage_name":"detection_layer","events_processed":444,"events_dropped":0,"avg_latency_ms":15.229655846632468,"throughput_eps":0,"last_update":"2026-03-22T09:43:42.479460814Z"} +2026/03/22 09:43:47 [transform_engine] {"stage_name":"transform_engine","events_processed":444,"events_dropped":0,"avg_latency_ms":156.86117886136734,"throughput_eps":0,"last_update":"2026-03-22T09:43:42.479514456Z"} +2026/03/22 09:43:47 ───────────────────────────────────────────────── +2026/03/22 09:43:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:43:52 [log_collector] {"stage_name":"log_collector","events_processed":21013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202.6,"last_update":"2026-03-22T09:43:47.367963146Z"} +2026/03/22 09:43:52 [metric_collector] {"stage_name":"metric_collector","events_processed":13339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2667.8,"last_update":"2026-03-22T09:43:47.368315942Z"} +2026/03/22 09:43:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:43:47.375958631Z"} +2026/03/22 09:43:52 [detection_layer] {"stage_name":"detection_layer","events_processed":444,"events_dropped":0,"avg_latency_ms":15.229655846632468,"throughput_eps":0,"last_update":"2026-03-22T09:43:47.479207503Z"} +2026/03/22 09:43:52 [transform_engine] {"stage_name":"transform_engine","events_processed":444,"events_dropped":0,"avg_latency_ms":156.86117886136734,"throughput_eps":0,"last_update":"2026-03-22T09:43:47.479125786Z"} +2026/03/22 09:43:52 ───────────────────────────────────────────────── +2026/03/22 09:43:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:43:57 [metric_collector] {"stage_name":"metric_collector","events_processed":13344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2668.8,"last_update":"2026-03-22T09:43:52.368450492Z"} +2026/03/22 09:43:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:43:52.37538732Z"} +2026/03/22 09:43:57 [detection_layer] {"stage_name":"detection_layer","events_processed":444,"events_dropped":0,"avg_latency_ms":15.229655846632468,"throughput_eps":0,"last_update":"2026-03-22T09:43:52.479604967Z"} +2026/03/22 09:43:57 [transform_engine] {"stage_name":"transform_engine","events_processed":444,"events_dropped":0,"avg_latency_ms":156.86117886136734,"throughput_eps":0,"last_update":"2026-03-22T09:43:52.479578556Z"} +2026/03/22 09:43:57 [log_collector] {"stage_name":"log_collector","events_processed":21013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202.6,"last_update":"2026-03-22T09:43:52.367995841Z"} +2026/03/22 09:43:57 ───────────────────────────────────────────────── +2026/03/22 09:43:57 [ANOMALY] time=2026-03-22T09:43:57Z score=0.8300 method=SEAD details=MAD!:w=0.48,s=0.78 RRCF-fast!:w=0.13,s=0.98 RRCF-mid!:w=0.12,s=0.98 RRCF-slow!:w=0.11,s=0.83 COPOD!:w=0.16,s=0.75 +2026/03/22 09:44:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:44:02 [transform_engine] {"stage_name":"transform_engine","events_processed":445,"events_dropped":0,"avg_latency_ms":146.5417216890939,"throughput_eps":0,"last_update":"2026-03-22T09:43:57.584651718Z"} +2026/03/22 09:44:02 [log_collector] {"stage_name":"log_collector","events_processed":21013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202.6,"last_update":"2026-03-22T09:43:57.368476166Z"} +2026/03/22 09:44:02 [metric_collector] {"stage_name":"metric_collector","events_processed":13348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2669.6,"last_update":"2026-03-22T09:43:57.368511363Z"} +2026/03/22 09:44:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5342,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:43:57.376203728Z"} +2026/03/22 09:44:02 [detection_layer] {"stage_name":"detection_layer","events_processed":444,"events_dropped":0,"avg_latency_ms":15.229655846632468,"throughput_eps":0,"last_update":"2026-03-22T09:43:57.479337038Z"} +2026/03/22 09:44:02 ───────────────────────────────────────────────── +2026/03/22 09:44:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:44:07 [log_collector] {"stage_name":"log_collector","events_processed":21013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202.6,"last_update":"2026-03-22T09:44:02.367977293Z"} +2026/03/22 09:44:07 [metric_collector] {"stage_name":"metric_collector","events_processed":13354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2670.8,"last_update":"2026-03-22T09:44:02.36824664Z"} +2026/03/22 09:44:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:44:02.378380981Z"} +2026/03/22 09:44:07 [detection_layer] {"stage_name":"detection_layer","events_processed":445,"events_dropped":0,"avg_latency_ms":14.673870277305975,"throughput_eps":0,"last_update":"2026-03-22T09:44:02.479480066Z"} +2026/03/22 09:44:07 [transform_engine] {"stage_name":"transform_engine","events_processed":445,"events_dropped":0,"avg_latency_ms":146.5417216890939,"throughput_eps":0,"last_update":"2026-03-22T09:44:02.479497268Z"} +2026/03/22 09:44:07 ───────────────────────────────────────────────── +2026/03/22 09:44:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:44:12 [log_collector] {"stage_name":"log_collector","events_processed":21013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202.6,"last_update":"2026-03-22T09:44:07.367951468Z"} +2026/03/22 09:44:12 [metric_collector] {"stage_name":"metric_collector","events_processed":13359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2671.8,"last_update":"2026-03-22T09:44:07.368174776Z"} +2026/03/22 09:44:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:44:07.375083499Z"} +2026/03/22 09:44:12 [detection_layer] {"stage_name":"detection_layer","events_processed":445,"events_dropped":0,"avg_latency_ms":14.673870277305975,"throughput_eps":0,"last_update":"2026-03-22T09:44:07.47928747Z"} +2026/03/22 09:44:12 [transform_engine] {"stage_name":"transform_engine","events_processed":445,"events_dropped":0,"avg_latency_ms":146.5417216890939,"throughput_eps":0,"last_update":"2026-03-22T09:44:07.479270477Z"} +2026/03/22 09:44:12 ───────────────────────────────────────────────── +2026/03/22 09:44:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:44:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:44:12.37567241Z"} +2026/03/22 09:44:17 [detection_layer] {"stage_name":"detection_layer","events_processed":445,"events_dropped":0,"avg_latency_ms":14.673870277305975,"throughput_eps":0,"last_update":"2026-03-22T09:44:12.479848739Z"} +2026/03/22 09:44:17 [transform_engine] {"stage_name":"transform_engine","events_processed":445,"events_dropped":0,"avg_latency_ms":146.5417216890939,"throughput_eps":0,"last_update":"2026-03-22T09:44:12.479829301Z"} +2026/03/22 09:44:17 [log_collector] {"stage_name":"log_collector","events_processed":21013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202.6,"last_update":"2026-03-22T09:44:12.367952352Z"} +2026/03/22 09:44:17 [metric_collector] {"stage_name":"metric_collector","events_processed":13364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2672.8,"last_update":"2026-03-22T09:44:12.368327451Z"} +2026/03/22 09:44:17 ───────────────────────────────────────────────── +2026/03/22 09:44:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:44:22 [log_collector] {"stage_name":"log_collector","events_processed":21013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202.6,"last_update":"2026-03-22T09:44:22.36800591Z"} +2026/03/22 09:44:22 [metric_collector] {"stage_name":"metric_collector","events_processed":13369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2673.8,"last_update":"2026-03-22T09:44:17.368713071Z"} +2026/03/22 09:44:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5350,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:44:17.375603079Z"} +2026/03/22 09:44:22 [detection_layer] {"stage_name":"detection_layer","events_processed":445,"events_dropped":0,"avg_latency_ms":14.673870277305975,"throughput_eps":0,"last_update":"2026-03-22T09:44:17.479821669Z"} +2026/03/22 09:44:22 [transform_engine] {"stage_name":"transform_engine","events_processed":445,"events_dropped":0,"avg_latency_ms":146.5417216890939,"throughput_eps":0,"last_update":"2026-03-22T09:44:17.479800799Z"} +2026/03/22 09:44:22 ───────────────────────────────────────────────── +2026/03/22 09:44:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:44:27 [transform_engine] {"stage_name":"transform_engine","events_processed":445,"events_dropped":0,"avg_latency_ms":146.5417216890939,"throughput_eps":0,"last_update":"2026-03-22T09:44:22.479106902Z"} +2026/03/22 09:44:27 [log_collector] {"stage_name":"log_collector","events_processed":21013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202.6,"last_update":"2026-03-22T09:44:22.36800591Z"} +2026/03/22 09:44:27 [metric_collector] {"stage_name":"metric_collector","events_processed":13374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2674.8,"last_update":"2026-03-22T09:44:22.368246872Z"} +2026/03/22 09:44:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:44:22.375893688Z"} +2026/03/22 09:44:27 [detection_layer] {"stage_name":"detection_layer","events_processed":445,"events_dropped":0,"avg_latency_ms":14.673870277305975,"throughput_eps":0,"last_update":"2026-03-22T09:44:22.479087897Z"} +2026/03/22 09:44:27 ───────────────────────────────────────────────── +2026/03/22 09:44:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:44:32 [metric_collector] {"stage_name":"metric_collector","events_processed":13379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2675.8,"last_update":"2026-03-22T09:44:27.368730337Z"} +2026/03/22 09:44:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:44:27.379234868Z"} +2026/03/22 09:44:32 [detection_layer] {"stage_name":"detection_layer","events_processed":445,"events_dropped":0,"avg_latency_ms":14.673870277305975,"throughput_eps":0,"last_update":"2026-03-22T09:44:27.479659711Z"} +2026/03/22 09:44:32 [transform_engine] {"stage_name":"transform_engine","events_processed":446,"events_dropped":0,"avg_latency_ms":130.2460717512751,"throughput_eps":0,"last_update":"2026-03-22T09:44:27.544477352Z"} +2026/03/22 09:44:32 [log_collector] {"stage_name":"log_collector","events_processed":21013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202.6,"last_update":"2026-03-22T09:44:27.368633702Z"} +2026/03/22 09:44:32 ───────────────────────────────────────────────── +2026/03/22 09:44:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:44:37 [log_collector] {"stage_name":"log_collector","events_processed":21013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202.6,"last_update":"2026-03-22T09:44:32.367978731Z"} +2026/03/22 09:44:37 [metric_collector] {"stage_name":"metric_collector","events_processed":13384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2676.8,"last_update":"2026-03-22T09:44:32.368278476Z"} +2026/03/22 09:44:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:44:32.378815899Z"} +2026/03/22 09:44:37 [detection_layer] {"stage_name":"detection_layer","events_processed":446,"events_dropped":0,"avg_latency_ms":14.301594421844781,"throughput_eps":0,"last_update":"2026-03-22T09:44:32.478943563Z"} +2026/03/22 09:44:37 [transform_engine] {"stage_name":"transform_engine","events_processed":446,"events_dropped":0,"avg_latency_ms":130.2460717512751,"throughput_eps":0,"last_update":"2026-03-22T09:44:32.478912253Z"} +2026/03/22 09:44:37 ───────────────────────────────────────────────── +2026/03/22 09:44:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:44:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:44:37.375664182Z"} +2026/03/22 09:44:42 [detection_layer] {"stage_name":"detection_layer","events_processed":446,"events_dropped":0,"avg_latency_ms":14.301594421844781,"throughput_eps":0,"last_update":"2026-03-22T09:44:37.480013031Z"} +2026/03/22 09:44:42 [transform_engine] {"stage_name":"transform_engine","events_processed":446,"events_dropped":0,"avg_latency_ms":130.2460717512751,"throughput_eps":0,"last_update":"2026-03-22T09:44:37.478895731Z"} +2026/03/22 09:44:42 [log_collector] {"stage_name":"log_collector","events_processed":21013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202.6,"last_update":"2026-03-22T09:44:37.368429254Z"} +2026/03/22 09:44:42 [metric_collector] {"stage_name":"metric_collector","events_processed":13389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2677.8,"last_update":"2026-03-22T09:44:37.368646339Z"} +2026/03/22 09:44:42 ───────────────────────────────────────────────── +2026/03/22 09:44:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:44:47 [log_collector] {"stage_name":"log_collector","events_processed":21013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202.6,"last_update":"2026-03-22T09:44:42.368439533Z"} +2026/03/22 09:44:47 [metric_collector] {"stage_name":"metric_collector","events_processed":13394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2678.8,"last_update":"2026-03-22T09:44:42.368654445Z"} +2026/03/22 09:44:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5360,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:44:42.37586174Z"} +2026/03/22 09:44:47 [detection_layer] {"stage_name":"detection_layer","events_processed":446,"events_dropped":0,"avg_latency_ms":14.301594421844781,"throughput_eps":0,"last_update":"2026-03-22T09:44:42.479045007Z"} +2026/03/22 09:44:47 [transform_engine] {"stage_name":"transform_engine","events_processed":446,"events_dropped":0,"avg_latency_ms":130.2460717512751,"throughput_eps":0,"last_update":"2026-03-22T09:44:42.479019818Z"} +2026/03/22 09:44:47 ───────────────────────────────────────────────── +2026/03/22 09:44:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:44:52 [log_collector] {"stage_name":"log_collector","events_processed":21013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202.6,"last_update":"2026-03-22T09:44:47.368004973Z"} +2026/03/22 09:44:52 [metric_collector] {"stage_name":"metric_collector","events_processed":13399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2679.8,"last_update":"2026-03-22T09:44:47.368314225Z"} +2026/03/22 09:44:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:44:47.376207995Z"} +2026/03/22 09:44:52 [detection_layer] {"stage_name":"detection_layer","events_processed":446,"events_dropped":0,"avg_latency_ms":14.301594421844781,"throughput_eps":0,"last_update":"2026-03-22T09:44:47.479388677Z"} +2026/03/22 09:44:52 [transform_engine] {"stage_name":"transform_engine","events_processed":446,"events_dropped":0,"avg_latency_ms":130.2460717512751,"throughput_eps":0,"last_update":"2026-03-22T09:44:47.479429295Z"} +2026/03/22 09:44:52 ───────────────────────────────────────────────── +2026/03/22 09:44:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:44:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:44:52.375912546Z"} +2026/03/22 09:44:57 [detection_layer] {"stage_name":"detection_layer","events_processed":446,"events_dropped":0,"avg_latency_ms":14.301594421844781,"throughput_eps":0,"last_update":"2026-03-22T09:44:52.47909367Z"} +2026/03/22 09:44:57 [transform_engine] {"stage_name":"transform_engine","events_processed":446,"events_dropped":0,"avg_latency_ms":130.2460717512751,"throughput_eps":0,"last_update":"2026-03-22T09:44:52.479118808Z"} +2026/03/22 09:44:57 [log_collector] {"stage_name":"log_collector","events_processed":21013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202.6,"last_update":"2026-03-22T09:44:52.367960426Z"} +2026/03/22 09:44:57 [metric_collector] {"stage_name":"metric_collector","events_processed":13404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2680.8,"last_update":"2026-03-22T09:44:52.368399226Z"} +2026/03/22 09:44:57 ───────────────────────────────────────────────── +2026/03/22 09:44:57 [ANOMALY] time=2026-03-22T09:44:57Z score=0.7946 method=SEAD details=MAD!:w=0.48,s=0.79 RRCF-fast!:w=0.13,s=0.90 RRCF-mid!:w=0.12,s=0.94 RRCF-slow!:w=0.11,s=0.67 COPOD!:w=0.16,s=0.70 +2026/03/22 09:45:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:45:02 [metric_collector] {"stage_name":"metric_collector","events_processed":13409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2681.8,"last_update":"2026-03-22T09:44:57.368117369Z"} +2026/03/22 09:45:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:44:57.376776965Z"} +2026/03/22 09:45:02 [detection_layer] {"stage_name":"detection_layer","events_processed":446,"events_dropped":0,"avg_latency_ms":14.301594421844781,"throughput_eps":0,"last_update":"2026-03-22T09:44:57.480018885Z"} +2026/03/22 09:45:02 [transform_engine] {"stage_name":"transform_engine","events_processed":447,"events_dropped":0,"avg_latency_ms":117.1150428010201,"throughput_eps":0,"last_update":"2026-03-22T09:44:57.543484787Z"} +2026/03/22 09:45:02 [log_collector] {"stage_name":"log_collector","events_processed":21013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202.6,"last_update":"2026-03-22T09:44:57.367969365Z"} +2026/03/22 09:45:02 ───────────────────────────────────────────────── +2026/03/22 09:45:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:45:07 [log_collector] {"stage_name":"log_collector","events_processed":21013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202.6,"last_update":"2026-03-22T09:45:02.367986002Z"} +2026/03/22 09:45:07 [metric_collector] {"stage_name":"metric_collector","events_processed":13414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2682.8,"last_update":"2026-03-22T09:45:02.368163713Z"} +2026/03/22 09:45:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:45:02.375802944Z"} +2026/03/22 09:45:07 [detection_layer] {"stage_name":"detection_layer","events_processed":447,"events_dropped":0,"avg_latency_ms":13.927365337475825,"throughput_eps":0,"last_update":"2026-03-22T09:45:02.479212565Z"} +2026/03/22 09:45:07 [transform_engine] {"stage_name":"transform_engine","events_processed":447,"events_dropped":0,"avg_latency_ms":117.1150428010201,"throughput_eps":0,"last_update":"2026-03-22T09:45:02.478902021Z"} +2026/03/22 09:45:07 ───────────────────────────────────────────────── +2026/03/22 09:45:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:45:12 [metric_collector] {"stage_name":"metric_collector","events_processed":13419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2683.8,"last_update":"2026-03-22T09:45:07.368791192Z"} +2026/03/22 09:45:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:45:07.375781341Z"} +2026/03/22 09:45:12 [detection_layer] {"stage_name":"detection_layer","events_processed":447,"events_dropped":0,"avg_latency_ms":13.927365337475825,"throughput_eps":0,"last_update":"2026-03-22T09:45:07.478961412Z"} +2026/03/22 09:45:12 [transform_engine] {"stage_name":"transform_engine","events_processed":447,"events_dropped":0,"avg_latency_ms":117.1150428010201,"throughput_eps":0,"last_update":"2026-03-22T09:45:07.478904534Z"} +2026/03/22 09:45:12 [log_collector] {"stage_name":"log_collector","events_processed":21013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202.6,"last_update":"2026-03-22T09:45:07.368482851Z"} +2026/03/22 09:45:12 ───────────────────────────────────────────────── +2026/03/22 09:45:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:45:17 [metric_collector] {"stage_name":"metric_collector","events_processed":13424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2684.8,"last_update":"2026-03-22T09:45:12.369375739Z"} +2026/03/22 09:45:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:45:12.375919072Z"} +2026/03/22 09:45:17 [detection_layer] {"stage_name":"detection_layer","events_processed":447,"events_dropped":0,"avg_latency_ms":13.927365337475825,"throughput_eps":0,"last_update":"2026-03-22T09:45:12.479099965Z"} +2026/03/22 09:45:17 [transform_engine] {"stage_name":"transform_engine","events_processed":447,"events_dropped":0,"avg_latency_ms":117.1150428010201,"throughput_eps":0,"last_update":"2026-03-22T09:45:12.479129772Z"} +2026/03/22 09:45:17 [log_collector] {"stage_name":"log_collector","events_processed":21013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202.6,"last_update":"2026-03-22T09:45:12.368897233Z"} +2026/03/22 09:45:17 ───────────────────────────────────────────────── +2026/03/22 09:45:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:45:22 [detection_layer] {"stage_name":"detection_layer","events_processed":447,"events_dropped":0,"avg_latency_ms":13.927365337475825,"throughput_eps":0,"last_update":"2026-03-22T09:45:17.47913653Z"} +2026/03/22 09:45:22 [transform_engine] {"stage_name":"transform_engine","events_processed":447,"events_dropped":0,"avg_latency_ms":117.1150428010201,"throughput_eps":0,"last_update":"2026-03-22T09:45:17.479113115Z"} +2026/03/22 09:45:22 [log_collector] {"stage_name":"log_collector","events_processed":21013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202.6,"last_update":"2026-03-22T09:45:17.367965382Z"} +2026/03/22 09:45:22 [metric_collector] {"stage_name":"metric_collector","events_processed":13429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2685.8,"last_update":"2026-03-22T09:45:17.368320642Z"} +2026/03/22 09:45:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:45:17.374946053Z"} +2026/03/22 09:45:22 ───────────────────────────────────────────────── +2026/03/22 09:45:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:45:27 [detection_layer] {"stage_name":"detection_layer","events_processed":447,"events_dropped":0,"avg_latency_ms":13.927365337475825,"throughput_eps":0,"last_update":"2026-03-22T09:45:22.479920669Z"} +2026/03/22 09:45:27 [transform_engine] {"stage_name":"transform_engine","events_processed":447,"events_dropped":0,"avg_latency_ms":117.1150428010201,"throughput_eps":0,"last_update":"2026-03-22T09:45:22.47881978Z"} +2026/03/22 09:45:27 [log_collector] {"stage_name":"log_collector","events_processed":21013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202.6,"last_update":"2026-03-22T09:45:27.368779735Z"} +2026/03/22 09:45:27 [metric_collector] {"stage_name":"metric_collector","events_processed":13433,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2686.6,"last_update":"2026-03-22T09:45:22.368495736Z"} +2026/03/22 09:45:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:45:22.375712378Z"} +2026/03/22 09:45:27 ───────────────────────────────────────────────── +2026/03/22 09:45:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:45:32 [log_collector] {"stage_name":"log_collector","events_processed":21013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202.6,"last_update":"2026-03-22T09:45:32.367982856Z"} +2026/03/22 09:45:32 [metric_collector] {"stage_name":"metric_collector","events_processed":13439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2687.8,"last_update":"2026-03-22T09:45:27.369113524Z"} +2026/03/22 09:45:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:45:27.375768772Z"} +2026/03/22 09:45:32 [detection_layer] {"stage_name":"detection_layer","events_processed":447,"events_dropped":0,"avg_latency_ms":13.927365337475825,"throughput_eps":0,"last_update":"2026-03-22T09:45:27.479993514Z"} +2026/03/22 09:45:32 [transform_engine] {"stage_name":"transform_engine","events_processed":448,"events_dropped":0,"avg_latency_ms":107.30801444081608,"throughput_eps":0,"last_update":"2026-03-22T09:45:27.546980341Z"} +2026/03/22 09:45:32 ───────────────────────────────────────────────── +2026/03/22 09:45:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:45:37 [metric_collector] {"stage_name":"metric_collector","events_processed":13444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2688.8,"last_update":"2026-03-22T09:45:32.368397649Z"} +2026/03/22 09:45:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5380,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:45:32.374997481Z"} +2026/03/22 09:45:37 [detection_layer] {"stage_name":"detection_layer","events_processed":448,"events_dropped":0,"avg_latency_ms":13.640488269980661,"throughput_eps":0,"last_update":"2026-03-22T09:45:32.479218216Z"} +2026/03/22 09:45:37 [transform_engine] {"stage_name":"transform_engine","events_processed":448,"events_dropped":0,"avg_latency_ms":107.30801444081608,"throughput_eps":0,"last_update":"2026-03-22T09:45:32.479243895Z"} +2026/03/22 09:45:37 [log_collector] {"stage_name":"log_collector","events_processed":21013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202.6,"last_update":"2026-03-22T09:45:32.367982856Z"} +2026/03/22 09:45:37 ───────────────────────────────────────────────── +2026/03/22 09:45:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:45:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:45:37.374733572Z"} +2026/03/22 09:45:42 [detection_layer] {"stage_name":"detection_layer","events_processed":448,"events_dropped":0,"avg_latency_ms":13.640488269980661,"throughput_eps":0,"last_update":"2026-03-22T09:45:37.479902703Z"} +2026/03/22 09:45:42 [transform_engine] {"stage_name":"transform_engine","events_processed":448,"events_dropped":0,"avg_latency_ms":107.30801444081608,"throughput_eps":0,"last_update":"2026-03-22T09:45:37.478823815Z"} +2026/03/22 09:45:42 [log_collector] {"stage_name":"log_collector","events_processed":21013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202.6,"last_update":"2026-03-22T09:45:37.367991938Z"} +2026/03/22 09:45:42 [metric_collector] {"stage_name":"metric_collector","events_processed":13449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2689.8,"last_update":"2026-03-22T09:45:37.368209495Z"} +2026/03/22 09:45:42 ───────────────────────────────────────────────── +2026/03/22 09:45:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:45:47 [detection_layer] {"stage_name":"detection_layer","events_processed":448,"events_dropped":0,"avg_latency_ms":13.640488269980661,"throughput_eps":0,"last_update":"2026-03-22T09:45:42.479144459Z"} +2026/03/22 09:45:47 [transform_engine] {"stage_name":"transform_engine","events_processed":448,"events_dropped":0,"avg_latency_ms":107.30801444081608,"throughput_eps":0,"last_update":"2026-03-22T09:45:42.479161853Z"} +2026/03/22 09:45:47 [log_collector] {"stage_name":"log_collector","events_processed":21013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202.6,"last_update":"2026-03-22T09:45:42.368705154Z"} +2026/03/22 09:45:47 [metric_collector] {"stage_name":"metric_collector","events_processed":13454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2690.8,"last_update":"2026-03-22T09:45:42.368810075Z"} +2026/03/22 09:45:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:45:42.375962885Z"} +2026/03/22 09:45:47 ───────────────────────────────────────────────── +2026/03/22 09:45:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:45:52 [detection_layer] {"stage_name":"detection_layer","events_processed":448,"events_dropped":0,"avg_latency_ms":13.640488269980661,"throughput_eps":0,"last_update":"2026-03-22T09:45:47.479374285Z"} +2026/03/22 09:45:52 [transform_engine] {"stage_name":"transform_engine","events_processed":448,"events_dropped":0,"avg_latency_ms":107.30801444081608,"throughput_eps":0,"last_update":"2026-03-22T09:45:47.479337264Z"} +2026/03/22 09:45:52 [log_collector] {"stage_name":"log_collector","events_processed":21013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202.6,"last_update":"2026-03-22T09:45:47.368282289Z"} +2026/03/22 09:45:52 [metric_collector] {"stage_name":"metric_collector","events_processed":13459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2691.8,"last_update":"2026-03-22T09:45:47.368660684Z"} +2026/03/22 09:45:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:45:47.376093361Z"} +2026/03/22 09:45:52 ───────────────────────────────────────────────── +2026/03/22 09:45:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:45:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5388,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:45:52.37709423Z"} +2026/03/22 09:45:57 [detection_layer] {"stage_name":"detection_layer","events_processed":448,"events_dropped":0,"avg_latency_ms":13.640488269980661,"throughput_eps":0,"last_update":"2026-03-22T09:45:52.479277652Z"} +2026/03/22 09:45:57 [transform_engine] {"stage_name":"transform_engine","events_processed":448,"events_dropped":0,"avg_latency_ms":107.30801444081608,"throughput_eps":0,"last_update":"2026-03-22T09:45:52.478909687Z"} +2026/03/22 09:45:57 [log_collector] {"stage_name":"log_collector","events_processed":21013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202.6,"last_update":"2026-03-22T09:45:52.36822973Z"} +2026/03/22 09:45:57 [metric_collector] {"stage_name":"metric_collector","events_processed":13464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2692.8,"last_update":"2026-03-22T09:45:52.368592806Z"} +2026/03/22 09:45:57 ───────────────────────────────────────────────── +2026/03/22 09:46:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:46:02 [log_collector] {"stage_name":"log_collector","events_processed":21013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202.6,"last_update":"2026-03-22T09:45:57.367957579Z"} +2026/03/22 09:46:02 [metric_collector] {"stage_name":"metric_collector","events_processed":13469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2693.8,"last_update":"2026-03-22T09:45:57.368299795Z"} +2026/03/22 09:46:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5390,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:45:57.37512069Z"} +2026/03/22 09:46:02 [detection_layer] {"stage_name":"detection_layer","events_processed":448,"events_dropped":0,"avg_latency_ms":13.640488269980661,"throughput_eps":0,"last_update":"2026-03-22T09:45:57.479342617Z"} +2026/03/22 09:46:02 [transform_engine] {"stage_name":"transform_engine","events_processed":449,"events_dropped":0,"avg_latency_ms":98.42517495265287,"throughput_eps":0,"last_update":"2026-03-22T09:45:57.542265189Z"} +2026/03/22 09:46:02 ───────────────────────────────────────────────── +2026/03/22 09:46:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:46:07 [metric_collector] {"stage_name":"metric_collector","events_processed":13474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2694.8,"last_update":"2026-03-22T09:46:02.368731036Z"} +2026/03/22 09:46:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:46:02.376215662Z"} +2026/03/22 09:46:07 [detection_layer] {"stage_name":"detection_layer","events_processed":449,"events_dropped":0,"avg_latency_ms":13.63587121598453,"throughput_eps":0,"last_update":"2026-03-22T09:46:02.479442212Z"} +2026/03/22 09:46:07 [transform_engine] {"stage_name":"transform_engine","events_processed":449,"events_dropped":0,"avg_latency_ms":98.42517495265287,"throughput_eps":0,"last_update":"2026-03-22T09:46:02.479473913Z"} +2026/03/22 09:46:07 [log_collector] {"stage_name":"log_collector","events_processed":21013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202.6,"last_update":"2026-03-22T09:46:07.367976868Z"} +2026/03/22 09:46:07 ───────────────────────────────────────────────── +2026/03/22 09:46:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:46:12 [log_collector] {"stage_name":"log_collector","events_processed":21013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202.6,"last_update":"2026-03-22T09:46:12.368508621Z"} +2026/03/22 09:46:12 [metric_collector] {"stage_name":"metric_collector","events_processed":13479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2695.8,"last_update":"2026-03-22T09:46:07.368259209Z"} +2026/03/22 09:46:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:46:12.368497218Z"} +2026/03/22 09:46:12 [detection_layer] {"stage_name":"detection_layer","events_processed":449,"events_dropped":0,"avg_latency_ms":13.63587121598453,"throughput_eps":0,"last_update":"2026-03-22T09:46:07.479613808Z"} +2026/03/22 09:46:12 [transform_engine] {"stage_name":"transform_engine","events_processed":449,"events_dropped":0,"avg_latency_ms":98.42517495265287,"throughput_eps":0,"last_update":"2026-03-22T09:46:07.479589591Z"} +2026/03/22 09:46:12 ───────────────────────────────────────────────── +2026/03/22 09:46:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:46:17 [log_collector] {"stage_name":"log_collector","events_processed":21013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202.6,"last_update":"2026-03-22T09:46:12.368508621Z"} +2026/03/22 09:46:17 [metric_collector] {"stage_name":"metric_collector","events_processed":13484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2696.8,"last_update":"2026-03-22T09:46:12.368867788Z"} +2026/03/22 09:46:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:46:12.368497218Z"} +2026/03/22 09:46:17 [detection_layer] {"stage_name":"detection_layer","events_processed":449,"events_dropped":0,"avg_latency_ms":13.63587121598453,"throughput_eps":0,"last_update":"2026-03-22T09:46:12.479550232Z"} +2026/03/22 09:46:17 [transform_engine] {"stage_name":"transform_engine","events_processed":449,"events_dropped":0,"avg_latency_ms":98.42517495265287,"throughput_eps":0,"last_update":"2026-03-22T09:46:12.479592213Z"} +2026/03/22 09:46:17 ───────────────────────────────────────────────── +2026/03/22 09:46:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:46:22 [log_collector] {"stage_name":"log_collector","events_processed":21013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202.6,"last_update":"2026-03-22T09:46:22.368694386Z"} +2026/03/22 09:46:22 [metric_collector] {"stage_name":"metric_collector","events_processed":13489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2697.8,"last_update":"2026-03-22T09:46:17.368231949Z"} +2026/03/22 09:46:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:46:17.368022978Z"} +2026/03/22 09:46:22 [detection_layer] {"stage_name":"detection_layer","events_processed":449,"events_dropped":0,"avg_latency_ms":13.63587121598453,"throughput_eps":0,"last_update":"2026-03-22T09:46:17.479063356Z"} +2026/03/22 09:46:22 [transform_engine] {"stage_name":"transform_engine","events_processed":449,"events_dropped":0,"avg_latency_ms":98.42517495265287,"throughput_eps":0,"last_update":"2026-03-22T09:46:17.479044822Z"} +2026/03/22 09:46:22 ───────────────────────────────────────────────── +2026/03/22 09:46:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:46:27 [log_collector] {"stage_name":"log_collector","events_processed":21013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202.6,"last_update":"2026-03-22T09:46:27.368587316Z"} +2026/03/22 09:46:27 [metric_collector] {"stage_name":"metric_collector","events_processed":13494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2698.8,"last_update":"2026-03-22T09:46:22.369014038Z"} +2026/03/22 09:46:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5400,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:46:22.375483354Z"} +2026/03/22 09:46:27 [detection_layer] {"stage_name":"detection_layer","events_processed":449,"events_dropped":0,"avg_latency_ms":13.63587121598453,"throughput_eps":0,"last_update":"2026-03-22T09:46:22.479671945Z"} +2026/03/22 09:46:27 [transform_engine] {"stage_name":"transform_engine","events_processed":449,"events_dropped":0,"avg_latency_ms":98.42517495265287,"throughput_eps":0,"last_update":"2026-03-22T09:46:22.479699587Z"} +2026/03/22 09:46:27 ───────────────────────────────────────────────── +2026/03/22 09:46:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:46:32 [log_collector] {"stage_name":"log_collector","events_processed":21013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202.6,"last_update":"2026-03-22T09:46:27.368587316Z"} +2026/03/22 09:46:32 [metric_collector] {"stage_name":"metric_collector","events_processed":13499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2699.8,"last_update":"2026-03-22T09:46:27.368778071Z"} +2026/03/22 09:46:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5402,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:46:27.375500973Z"} +2026/03/22 09:46:32 [detection_layer] {"stage_name":"detection_layer","events_processed":449,"events_dropped":0,"avg_latency_ms":13.63587121598453,"throughput_eps":0,"last_update":"2026-03-22T09:46:27.480363413Z"} +2026/03/22 09:46:32 [transform_engine] {"stage_name":"transform_engine","events_processed":450,"events_dropped":0,"avg_latency_ms":93.1684731621223,"throughput_eps":0,"last_update":"2026-03-22T09:46:27.552529196Z"} +2026/03/22 09:46:32 ───────────────────────────────────────────────── +2026/03/22 09:46:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:46:37 [metric_collector] {"stage_name":"metric_collector","events_processed":13504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2700.8,"last_update":"2026-03-22T09:46:32.368490505Z"} +2026/03/22 09:46:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:46:32.375391678Z"} +2026/03/22 09:46:37 [detection_layer] {"stage_name":"detection_layer","events_processed":450,"events_dropped":0,"avg_latency_ms":13.478031972787624,"throughput_eps":0,"last_update":"2026-03-22T09:46:32.479596427Z"} +2026/03/22 09:46:37 [transform_engine] {"stage_name":"transform_engine","events_processed":450,"events_dropped":0,"avg_latency_ms":93.1684731621223,"throughput_eps":0,"last_update":"2026-03-22T09:46:32.479586178Z"} +2026/03/22 09:46:37 [log_collector] {"stage_name":"log_collector","events_processed":21013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202.6,"last_update":"2026-03-22T09:46:32.36825868Z"} +2026/03/22 09:46:37 ───────────────────────────────────────────────── +2026/03/22 09:46:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:46:42 [log_collector] {"stage_name":"log_collector","events_processed":21013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202.6,"last_update":"2026-03-22T09:46:37.368414504Z"} +2026/03/22 09:46:42 [metric_collector] {"stage_name":"metric_collector","events_processed":13509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2701.8,"last_update":"2026-03-22T09:46:37.368682688Z"} +2026/03/22 09:46:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:46:37.377581009Z"} +2026/03/22 09:46:42 [detection_layer] {"stage_name":"detection_layer","events_processed":450,"events_dropped":0,"avg_latency_ms":13.478031972787624,"throughput_eps":0,"last_update":"2026-03-22T09:46:37.479756881Z"} +2026/03/22 09:46:42 [transform_engine] {"stage_name":"transform_engine","events_processed":450,"events_dropped":0,"avg_latency_ms":93.1684731621223,"throughput_eps":0,"last_update":"2026-03-22T09:46:37.479776918Z"} +2026/03/22 09:46:42 ───────────────────────────────────────────────── +2026/03/22 09:46:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:46:47 [detection_layer] {"stage_name":"detection_layer","events_processed":450,"events_dropped":0,"avg_latency_ms":13.478031972787624,"throughput_eps":0,"last_update":"2026-03-22T09:46:42.479323285Z"} +2026/03/22 09:46:47 [transform_engine] {"stage_name":"transform_engine","events_processed":450,"events_dropped":0,"avg_latency_ms":93.1684731621223,"throughput_eps":0,"last_update":"2026-03-22T09:46:42.479382169Z"} +2026/03/22 09:46:47 [log_collector] {"stage_name":"log_collector","events_processed":21013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202.6,"last_update":"2026-03-22T09:46:42.368000819Z"} +2026/03/22 09:46:47 [metric_collector] {"stage_name":"metric_collector","events_processed":13514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2702.8,"last_update":"2026-03-22T09:46:42.368211533Z"} +2026/03/22 09:46:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5408,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:46:42.375127234Z"} +2026/03/22 09:46:47 ───────────────────────────────────────────────── +Saved state: 13 clusters, 21014 messages, reason: none +2026/03/22 09:46:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:46:52 [log_collector] {"stage_name":"log_collector","events_processed":21013,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202.6,"last_update":"2026-03-22T09:46:47.36814664Z"} +2026/03/22 09:46:52 [metric_collector] {"stage_name":"metric_collector","events_processed":13519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2703.8,"last_update":"2026-03-22T09:46:47.36847024Z"} +2026/03/22 09:46:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:46:47.374817442Z"} +2026/03/22 09:46:52 [detection_layer] {"stage_name":"detection_layer","events_processed":450,"events_dropped":0,"avg_latency_ms":13.478031972787624,"throughput_eps":0,"last_update":"2026-03-22T09:46:47.478974148Z"} +2026/03/22 09:46:52 [transform_engine] {"stage_name":"transform_engine","events_processed":450,"events_dropped":0,"avg_latency_ms":93.1684731621223,"throughput_eps":0,"last_update":"2026-03-22T09:46:47.478945503Z"} +2026/03/22 09:46:52 ───────────────────────────────────────────────── +2026/03/22 09:46:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:46:57 [log_collector] {"stage_name":"log_collector","events_processed":21023,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4204.6,"last_update":"2026-03-22T09:46:52.368481647Z"} +2026/03/22 09:46:57 [metric_collector] {"stage_name":"metric_collector","events_processed":13524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2704.8,"last_update":"2026-03-22T09:46:52.368878037Z"} +2026/03/22 09:46:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:46:52.377916886Z"} +2026/03/22 09:46:57 [detection_layer] {"stage_name":"detection_layer","events_processed":450,"events_dropped":0,"avg_latency_ms":13.478031972787624,"throughput_eps":0,"last_update":"2026-03-22T09:46:52.479237317Z"} +2026/03/22 09:46:57 [transform_engine] {"stage_name":"transform_engine","events_processed":450,"events_dropped":0,"avg_latency_ms":93.1684731621223,"throughput_eps":0,"last_update":"2026-03-22T09:46:52.479262706Z"} +2026/03/22 09:46:57 ───────────────────────────────────────────────── +2026/03/22 09:47:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:47:02 [log_collector] {"stage_name":"log_collector","events_processed":21023,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4204.6,"last_update":"2026-03-22T09:46:57.36797599Z"} +2026/03/22 09:47:02 [metric_collector] {"stage_name":"metric_collector","events_processed":13529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2705.8,"last_update":"2026-03-22T09:46:57.368279642Z"} +2026/03/22 09:47:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:46:57.375427337Z"} +2026/03/22 09:47:02 [detection_layer] {"stage_name":"detection_layer","events_processed":450,"events_dropped":0,"avg_latency_ms":13.478031972787624,"throughput_eps":0,"last_update":"2026-03-22T09:46:57.479633817Z"} +2026/03/22 09:47:02 [transform_engine] {"stage_name":"transform_engine","events_processed":450,"events_dropped":0,"avg_latency_ms":93.1684731621223,"throughput_eps":0,"last_update":"2026-03-22T09:46:52.479262706Z"} +2026/03/22 09:47:02 ───────────────────────────────────────────────── +2026/03/22 09:47:06 [ANOMALY] time=2026-03-22T09:47:06Z score=0.8424 method=SEAD details=MAD!:w=0.48,s=0.81 RRCF-fast!:w=0.13,s=0.95 RRCF-mid!:w=0.12,s=0.88 RRCF-slow:w=0.11,s=0.59 COPOD!:w=0.16,s=1.00 +2026/03/22 09:47:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:47:07 [log_collector] {"stage_name":"log_collector","events_processed":21023,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4204.6,"last_update":"2026-03-22T09:47:02.368112467Z"} +2026/03/22 09:47:07 [metric_collector] {"stage_name":"metric_collector","events_processed":13534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2706.8,"last_update":"2026-03-22T09:47:02.368189305Z"} +2026/03/22 09:47:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:47:02.375622888Z"} +2026/03/22 09:47:07 [detection_layer] {"stage_name":"detection_layer","events_processed":450,"events_dropped":0,"avg_latency_ms":13.478031972787624,"throughput_eps":0,"last_update":"2026-03-22T09:47:02.480395612Z"} +2026/03/22 09:47:07 [transform_engine] {"stage_name":"transform_engine","events_processed":451,"events_dropped":0,"avg_latency_ms":1850.793746529698,"throughput_eps":0,"last_update":"2026-03-22T09:47:06.360953295Z"} +2026/03/22 09:47:07 ───────────────────────────────────────────────── +2026/03/22 09:47:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:47:12 [transform_engine] {"stage_name":"transform_engine","events_processed":451,"events_dropped":0,"avg_latency_ms":1850.793746529698,"throughput_eps":0,"last_update":"2026-03-22T09:47:07.479132784Z"} +2026/03/22 09:47:12 [log_collector] {"stage_name":"log_collector","events_processed":21023,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4204.6,"last_update":"2026-03-22T09:47:07.368835605Z"} +2026/03/22 09:47:12 [metric_collector] {"stage_name":"metric_collector","events_processed":13539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2707.8,"last_update":"2026-03-22T09:47:07.369148976Z"} +2026/03/22 09:47:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:47:07.375901323Z"} +2026/03/22 09:47:12 [detection_layer] {"stage_name":"detection_layer","events_processed":451,"events_dropped":0,"avg_latency_ms":13.7668737782301,"throughput_eps":0,"last_update":"2026-03-22T09:47:07.479119429Z"} +2026/03/22 09:47:12 ───────────────────────────────────────────────── +2026/03/22 09:47:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:47:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5420,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:47:12.376743534Z"} +2026/03/22 09:47:17 [detection_layer] {"stage_name":"detection_layer","events_processed":451,"events_dropped":0,"avg_latency_ms":13.7668737782301,"throughput_eps":0,"last_update":"2026-03-22T09:47:12.480012387Z"} +2026/03/22 09:47:17 [transform_engine] {"stage_name":"transform_engine","events_processed":451,"events_dropped":0,"avg_latency_ms":1850.793746529698,"throughput_eps":0,"last_update":"2026-03-22T09:47:12.478884385Z"} +2026/03/22 09:47:17 [log_collector] {"stage_name":"log_collector","events_processed":21033,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4206.6,"last_update":"2026-03-22T09:47:12.368720382Z"} +2026/03/22 09:47:17 [metric_collector] {"stage_name":"metric_collector","events_processed":13544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2708.8,"last_update":"2026-03-22T09:47:12.369007422Z"} +2026/03/22 09:47:17 ───────────────────────────────────────────────── +2026/03/22 09:47:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:47:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:47:17.374887632Z"} +2026/03/22 09:47:22 [detection_layer] {"stage_name":"detection_layer","events_processed":451,"events_dropped":0,"avg_latency_ms":13.7668737782301,"throughput_eps":0,"last_update":"2026-03-22T09:47:17.479144206Z"} +2026/03/22 09:47:22 [transform_engine] {"stage_name":"transform_engine","events_processed":451,"events_dropped":0,"avg_latency_ms":1850.793746529698,"throughput_eps":0,"last_update":"2026-03-22T09:47:17.479112755Z"} +2026/03/22 09:47:22 [log_collector] {"stage_name":"log_collector","events_processed":21043,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4208.6,"last_update":"2026-03-22T09:47:17.367956291Z"} +2026/03/22 09:47:22 [metric_collector] {"stage_name":"metric_collector","events_processed":13549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2709.8,"last_update":"2026-03-22T09:47:17.368214596Z"} +2026/03/22 09:47:22 ───────────────────────────────────────────────── +2026/03/22 09:47:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:47:27 [log_collector] {"stage_name":"log_collector","events_processed":21051,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4210.2,"last_update":"2026-03-22T09:47:22.36820072Z"} +2026/03/22 09:47:27 [metric_collector] {"stage_name":"metric_collector","events_processed":13553,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2710.6,"last_update":"2026-03-22T09:47:22.368108413Z"} +2026/03/22 09:47:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:47:22.376838449Z"} +2026/03/22 09:47:27 [detection_layer] {"stage_name":"detection_layer","events_processed":451,"events_dropped":0,"avg_latency_ms":13.7668737782301,"throughput_eps":0,"last_update":"2026-03-22T09:47:22.479219429Z"} +2026/03/22 09:47:27 [transform_engine] {"stage_name":"transform_engine","events_processed":451,"events_dropped":0,"avg_latency_ms":1850.793746529698,"throughput_eps":0,"last_update":"2026-03-22T09:47:22.479171438Z"} +2026/03/22 09:47:27 ───────────────────────────────────────────────── +2026/03/22 09:47:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:47:32 [transform_engine] {"stage_name":"transform_engine","events_processed":452,"events_dropped":0,"avg_latency_ms":1773.3422378237585,"throughput_eps":0,"last_update":"2026-03-22T09:47:28.943140627Z"} +2026/03/22 09:47:32 [log_collector] {"stage_name":"log_collector","events_processed":21064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4212.8,"last_update":"2026-03-22T09:47:27.368577379Z"} +2026/03/22 09:47:32 [metric_collector] {"stage_name":"metric_collector","events_processed":13559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2711.8,"last_update":"2026-03-22T09:47:27.369057328Z"} +2026/03/22 09:47:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:47:27.375375243Z"} +2026/03/22 09:47:32 [detection_layer] {"stage_name":"detection_layer","events_processed":451,"events_dropped":0,"avg_latency_ms":13.7668737782301,"throughput_eps":0,"last_update":"2026-03-22T09:47:27.479644741Z"} +2026/03/22 09:47:32 ───────────────────────────────────────────────── +2026/03/22 09:47:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:47:37 [log_collector] {"stage_name":"log_collector","events_processed":21065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4213,"last_update":"2026-03-22T09:47:37.368038678Z"} +2026/03/22 09:47:37 [metric_collector] {"stage_name":"metric_collector","events_processed":13564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2712.8,"last_update":"2026-03-22T09:47:32.368831358Z"} +2026/03/22 09:47:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:47:32.377589849Z"} +2026/03/22 09:47:37 [detection_layer] {"stage_name":"detection_layer","events_processed":452,"events_dropped":0,"avg_latency_ms":14.54344802258408,"throughput_eps":0,"last_update":"2026-03-22T09:47:32.478987162Z"} +2026/03/22 09:47:37 [transform_engine] {"stage_name":"transform_engine","events_processed":452,"events_dropped":0,"avg_latency_ms":1773.3422378237585,"throughput_eps":0,"last_update":"2026-03-22T09:47:32.478891178Z"} +2026/03/22 09:47:37 ───────────────────────────────────────────────── +2026/03/22 09:47:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:47:42 [log_collector] {"stage_name":"log_collector","events_processed":21065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4213,"last_update":"2026-03-22T09:47:42.368454591Z"} +2026/03/22 09:47:42 [metric_collector] {"stage_name":"metric_collector","events_processed":13569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2713.8,"last_update":"2026-03-22T09:47:37.368558144Z"} +2026/03/22 09:47:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:47:37.377498923Z"} +2026/03/22 09:47:42 [detection_layer] {"stage_name":"detection_layer","events_processed":452,"events_dropped":0,"avg_latency_ms":14.54344802258408,"throughput_eps":0,"last_update":"2026-03-22T09:47:37.479711941Z"} +2026/03/22 09:47:42 [transform_engine] {"stage_name":"transform_engine","events_processed":452,"events_dropped":0,"avg_latency_ms":1773.3422378237585,"throughput_eps":0,"last_update":"2026-03-22T09:47:37.479685741Z"} +2026/03/22 09:47:42 ───────────────────────────────────────────────── +2026/03/22 09:47:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:47:47 [detection_layer] {"stage_name":"detection_layer","events_processed":452,"events_dropped":0,"avg_latency_ms":14.54344802258408,"throughput_eps":0,"last_update":"2026-03-22T09:47:42.479622194Z"} +2026/03/22 09:47:47 [transform_engine] {"stage_name":"transform_engine","events_processed":452,"events_dropped":0,"avg_latency_ms":1773.3422378237585,"throughput_eps":0,"last_update":"2026-03-22T09:47:42.479502445Z"} +2026/03/22 09:47:47 [log_collector] {"stage_name":"log_collector","events_processed":21065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4213,"last_update":"2026-03-22T09:47:47.368709383Z"} +2026/03/22 09:47:47 [metric_collector] {"stage_name":"metric_collector","events_processed":13574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2714.8,"last_update":"2026-03-22T09:47:42.368785515Z"} +2026/03/22 09:47:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:47:42.37736894Z"} +2026/03/22 09:47:47 ───────────────────────────────────────────────── +2026/03/22 09:47:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:47:52 [transform_engine] {"stage_name":"transform_engine","events_processed":452,"events_dropped":0,"avg_latency_ms":1773.3422378237585,"throughput_eps":0,"last_update":"2026-03-22T09:47:47.479797563Z"} +2026/03/22 09:47:52 [log_collector] {"stage_name":"log_collector","events_processed":21065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4213,"last_update":"2026-03-22T09:47:52.368583383Z"} +2026/03/22 09:47:52 [metric_collector] {"stage_name":"metric_collector","events_processed":13579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2715.8,"last_update":"2026-03-22T09:47:47.369118276Z"} +2026/03/22 09:47:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:47:47.377488553Z"} +2026/03/22 09:47:52 [detection_layer] {"stage_name":"detection_layer","events_processed":452,"events_dropped":0,"avg_latency_ms":14.54344802258408,"throughput_eps":0,"last_update":"2026-03-22T09:47:47.479907143Z"} +2026/03/22 09:47:52 ───────────────────────────────────────────────── +2026/03/22 09:47:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:47:57 [detection_layer] {"stage_name":"detection_layer","events_processed":452,"events_dropped":0,"avg_latency_ms":14.54344802258408,"throughput_eps":0,"last_update":"2026-03-22T09:47:52.479037859Z"} +2026/03/22 09:47:57 [transform_engine] {"stage_name":"transform_engine","events_processed":452,"events_dropped":0,"avg_latency_ms":1773.3422378237585,"throughput_eps":0,"last_update":"2026-03-22T09:47:52.478963596Z"} +2026/03/22 09:47:57 [log_collector] {"stage_name":"log_collector","events_processed":21065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4213,"last_update":"2026-03-22T09:47:52.368583383Z"} +2026/03/22 09:47:57 [metric_collector] {"stage_name":"metric_collector","events_processed":13584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2716.8,"last_update":"2026-03-22T09:47:52.36903096Z"} +2026/03/22 09:47:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:47:52.378053257Z"} +2026/03/22 09:47:57 ───────────────────────────────────────────────── +2026/03/22 09:48:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:48:02 [detection_layer] {"stage_name":"detection_layer","events_processed":452,"events_dropped":0,"avg_latency_ms":14.54344802258408,"throughput_eps":0,"last_update":"2026-03-22T09:47:57.48048064Z"} +2026/03/22 09:48:02 [transform_engine] {"stage_name":"transform_engine","events_processed":453,"events_dropped":0,"avg_latency_ms":1443.0286448590068,"throughput_eps":0,"last_update":"2026-03-22T09:47:57.601607323Z"} +2026/03/22 09:48:02 [log_collector] {"stage_name":"log_collector","events_processed":21065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4213,"last_update":"2026-03-22T09:47:57.367979774Z"} +2026/03/22 09:48:02 [metric_collector] {"stage_name":"metric_collector","events_processed":13589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2717.8,"last_update":"2026-03-22T09:47:57.368686067Z"} +2026/03/22 09:48:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:47:57.377557174Z"} +2026/03/22 09:48:02 ───────────────────────────────────────────────── +2026/03/22 09:48:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:48:07 [metric_collector] {"stage_name":"metric_collector","events_processed":13594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2718.8,"last_update":"2026-03-22T09:48:02.369135816Z"} +2026/03/22 09:48:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:48:02.378138245Z"} +2026/03/22 09:48:07 [detection_layer] {"stage_name":"detection_layer","events_processed":453,"events_dropped":0,"avg_latency_ms":15.887191818067265,"throughput_eps":0,"last_update":"2026-03-22T09:48:02.479446125Z"} +2026/03/22 09:48:07 [transform_engine] {"stage_name":"transform_engine","events_processed":453,"events_dropped":0,"avg_latency_ms":1443.0286448590068,"throughput_eps":0,"last_update":"2026-03-22T09:48:02.479336495Z"} +2026/03/22 09:48:07 [log_collector] {"stage_name":"log_collector","events_processed":21065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4213,"last_update":"2026-03-22T09:48:02.368811435Z"} +2026/03/22 09:48:07 ───────────────────────────────────────────────── +2026/03/22 09:48:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:48:12 [detection_layer] {"stage_name":"detection_layer","events_processed":453,"events_dropped":0,"avg_latency_ms":15.887191818067265,"throughput_eps":0,"last_update":"2026-03-22T09:48:07.479041124Z"} +2026/03/22 09:48:12 [transform_engine] {"stage_name":"transform_engine","events_processed":453,"events_dropped":0,"avg_latency_ms":1443.0286448590068,"throughput_eps":0,"last_update":"2026-03-22T09:48:07.478932737Z"} +2026/03/22 09:48:12 [log_collector] {"stage_name":"log_collector","events_processed":21065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4213,"last_update":"2026-03-22T09:48:12.368333076Z"} +2026/03/22 09:48:12 [metric_collector] {"stage_name":"metric_collector","events_processed":13599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2719.8,"last_update":"2026-03-22T09:48:07.368427765Z"} +2026/03/22 09:48:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5442,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:48:07.376768515Z"} +2026/03/22 09:48:12 ───────────────────────────────────────────────── +2026/03/22 09:48:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:48:17 [detection_layer] {"stage_name":"detection_layer","events_processed":453,"events_dropped":0,"avg_latency_ms":15.887191818067265,"throughput_eps":0,"last_update":"2026-03-22T09:48:12.47939792Z"} +2026/03/22 09:48:17 [transform_engine] {"stage_name":"transform_engine","events_processed":453,"events_dropped":0,"avg_latency_ms":1443.0286448590068,"throughput_eps":0,"last_update":"2026-03-22T09:48:12.479332554Z"} +2026/03/22 09:48:17 [log_collector] {"stage_name":"log_collector","events_processed":21065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4213,"last_update":"2026-03-22T09:48:12.368333076Z"} +2026/03/22 09:48:17 [metric_collector] {"stage_name":"metric_collector","events_processed":13604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2720.8,"last_update":"2026-03-22T09:48:12.368608625Z"} +2026/03/22 09:48:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:48:12.378025897Z"} +2026/03/22 09:48:17 ───────────────────────────────────────────────── +2026/03/22 09:48:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:48:22 [log_collector] {"stage_name":"log_collector","events_processed":21065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4213,"last_update":"2026-03-22T09:48:17.368568511Z"} +2026/03/22 09:48:22 [metric_collector] {"stage_name":"metric_collector","events_processed":13609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2721.8,"last_update":"2026-03-22T09:48:17.369334258Z"} +2026/03/22 09:48:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5446,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:48:17.378008777Z"} +2026/03/22 09:48:22 [detection_layer] {"stage_name":"detection_layer","events_processed":453,"events_dropped":0,"avg_latency_ms":15.887191818067265,"throughput_eps":0,"last_update":"2026-03-22T09:48:17.479264677Z"} +2026/03/22 09:48:22 [transform_engine] {"stage_name":"transform_engine","events_processed":453,"events_dropped":0,"avg_latency_ms":1443.0286448590068,"throughput_eps":0,"last_update":"2026-03-22T09:48:17.479241663Z"} +2026/03/22 09:48:22 ───────────────────────────────────────────────── +2026/03/22 09:48:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:48:27 [log_collector] {"stage_name":"log_collector","events_processed":21065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4213,"last_update":"2026-03-22T09:48:22.368507414Z"} +2026/03/22 09:48:27 [metric_collector] {"stage_name":"metric_collector","events_processed":13614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2722.8,"last_update":"2026-03-22T09:48:22.368798861Z"} +2026/03/22 09:48:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:48:22.37759261Z"} +2026/03/22 09:48:27 [detection_layer] {"stage_name":"detection_layer","events_processed":453,"events_dropped":0,"avg_latency_ms":15.887191818067265,"throughput_eps":0,"last_update":"2026-03-22T09:48:22.479831793Z"} +2026/03/22 09:48:27 [transform_engine] {"stage_name":"transform_engine","events_processed":453,"events_dropped":0,"avg_latency_ms":1443.0286448590068,"throughput_eps":0,"last_update":"2026-03-22T09:48:22.479794652Z"} +2026/03/22 09:48:27 ───────────────────────────────────────────────── +2026/03/22 09:48:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:48:32 [log_collector] {"stage_name":"log_collector","events_processed":21065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4213,"last_update":"2026-03-22T09:48:27.368068392Z"} +2026/03/22 09:48:32 [metric_collector] {"stage_name":"metric_collector","events_processed":13619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2723.8,"last_update":"2026-03-22T09:48:27.368387424Z"} +2026/03/22 09:48:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:48:27.378335183Z"} +2026/03/22 09:48:32 [detection_layer] {"stage_name":"detection_layer","events_processed":453,"events_dropped":0,"avg_latency_ms":15.887191818067265,"throughput_eps":0,"last_update":"2026-03-22T09:48:27.479601581Z"} +2026/03/22 09:48:32 [transform_engine] {"stage_name":"transform_engine","events_processed":454,"events_dropped":0,"avg_latency_ms":1168.3860120872057,"throughput_eps":0,"last_update":"2026-03-22T09:48:27.549455357Z"} +2026/03/22 09:48:32 ───────────────────────────────────────────────── +Saved state: 13 clusters, 21066 messages, reason: none +2026/03/22 09:48:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:48:37 [detection_layer] {"stage_name":"detection_layer","events_processed":454,"events_dropped":0,"avg_latency_ms":16.842220854453814,"throughput_eps":0,"last_update":"2026-03-22T09:48:32.479536003Z"} +2026/03/22 09:48:37 [transform_engine] {"stage_name":"transform_engine","events_processed":454,"events_dropped":0,"avg_latency_ms":1168.3860120872057,"throughput_eps":0,"last_update":"2026-03-22T09:48:32.479567363Z"} +2026/03/22 09:48:37 [log_collector] {"stage_name":"log_collector","events_processed":21065,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4213,"last_update":"2026-03-22T09:48:32.368453137Z"} +2026/03/22 09:48:37 [metric_collector] {"stage_name":"metric_collector","events_processed":13629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2725.8,"last_update":"2026-03-22T09:48:37.368756547Z"} +2026/03/22 09:48:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5452,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:48:32.378290525Z"} +2026/03/22 09:48:37 ───────────────────────────────────────────────── +2026/03/22 09:48:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:48:42 [log_collector] {"stage_name":"log_collector","events_processed":21070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4214,"last_update":"2026-03-22T09:48:37.368766376Z"} +2026/03/22 09:48:42 [metric_collector] {"stage_name":"metric_collector","events_processed":13629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2725.8,"last_update":"2026-03-22T09:48:37.368756547Z"} +2026/03/22 09:48:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:48:37.376598191Z"} +2026/03/22 09:48:42 [detection_layer] {"stage_name":"detection_layer","events_processed":454,"events_dropped":0,"avg_latency_ms":16.842220854453814,"throughput_eps":0,"last_update":"2026-03-22T09:48:37.479792523Z"} +2026/03/22 09:48:42 [transform_engine] {"stage_name":"transform_engine","events_processed":454,"events_dropped":0,"avg_latency_ms":1168.3860120872057,"throughput_eps":0,"last_update":"2026-03-22T09:48:37.479804646Z"} +2026/03/22 09:48:42 ───────────────────────────────────────────────── +2026/03/22 09:48:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:48:47 [log_collector] {"stage_name":"log_collector","events_processed":21070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4214,"last_update":"2026-03-22T09:48:42.368101008Z"} +2026/03/22 09:48:47 [metric_collector] {"stage_name":"metric_collector","events_processed":13634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2726.8,"last_update":"2026-03-22T09:48:42.368374001Z"} +2026/03/22 09:48:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:48:42.382666775Z"} +2026/03/22 09:48:47 [detection_layer] {"stage_name":"detection_layer","events_processed":454,"events_dropped":0,"avg_latency_ms":16.842220854453814,"throughput_eps":0,"last_update":"2026-03-22T09:48:42.479995329Z"} +2026/03/22 09:48:47 [transform_engine] {"stage_name":"transform_engine","events_processed":454,"events_dropped":0,"avg_latency_ms":1168.3860120872057,"throughput_eps":0,"last_update":"2026-03-22T09:48:42.478874001Z"} +2026/03/22 09:48:47 ───────────────────────────────────────────────── +2026/03/22 09:48:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:48:52 [detection_layer] {"stage_name":"detection_layer","events_processed":454,"events_dropped":0,"avg_latency_ms":16.842220854453814,"throughput_eps":0,"last_update":"2026-03-22T09:48:47.479522689Z"} +2026/03/22 09:48:52 [transform_engine] {"stage_name":"transform_engine","events_processed":454,"events_dropped":0,"avg_latency_ms":1168.3860120872057,"throughput_eps":0,"last_update":"2026-03-22T09:48:47.479564089Z"} +2026/03/22 09:48:52 [log_collector] {"stage_name":"log_collector","events_processed":21070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4214,"last_update":"2026-03-22T09:48:47.36844738Z"} +2026/03/22 09:48:52 [metric_collector] {"stage_name":"metric_collector","events_processed":13639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2727.8,"last_update":"2026-03-22T09:48:47.368696998Z"} +2026/03/22 09:48:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:48:47.375297764Z"} +2026/03/22 09:48:52 ───────────────────────────────────────────────── +2026/03/22 09:48:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:48:57 [log_collector] {"stage_name":"log_collector","events_processed":21070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4214,"last_update":"2026-03-22T09:48:52.367972587Z"} +2026/03/22 09:48:57 [metric_collector] {"stage_name":"metric_collector","events_processed":13643,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2728.6,"last_update":"2026-03-22T09:48:52.367894377Z"} +2026/03/22 09:48:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:48:52.378122994Z"} +2026/03/22 09:48:57 [detection_layer] {"stage_name":"detection_layer","events_processed":454,"events_dropped":0,"avg_latency_ms":16.842220854453814,"throughput_eps":0,"last_update":"2026-03-22T09:48:52.479328444Z"} +2026/03/22 09:48:57 [transform_engine] {"stage_name":"transform_engine","events_processed":454,"events_dropped":0,"avg_latency_ms":1168.3860120872057,"throughput_eps":0,"last_update":"2026-03-22T09:48:52.479341039Z"} +2026/03/22 09:48:57 ───────────────────────────────────────────────── +2026/03/22 09:49:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:49:02 [log_collector] {"stage_name":"log_collector","events_processed":21070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4214,"last_update":"2026-03-22T09:48:57.368635525Z"} +2026/03/22 09:49:02 [metric_collector] {"stage_name":"metric_collector","events_processed":13649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2729.8,"last_update":"2026-03-22T09:48:57.369074957Z"} +2026/03/22 09:49:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:48:57.376085078Z"} +2026/03/22 09:49:02 [detection_layer] {"stage_name":"detection_layer","events_processed":454,"events_dropped":0,"avg_latency_ms":16.842220854453814,"throughput_eps":0,"last_update":"2026-03-22T09:48:57.479392014Z"} +2026/03/22 09:49:02 [transform_engine] {"stage_name":"transform_engine","events_processed":455,"events_dropped":0,"avg_latency_ms":967.9335008697647,"throughput_eps":0,"last_update":"2026-03-22T09:48:57.645528655Z"} +2026/03/22 09:49:02 ───────────────────────────────────────────────── +2026/03/22 09:49:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:49:07 [transform_engine] {"stage_name":"transform_engine","events_processed":455,"events_dropped":0,"avg_latency_ms":967.9335008697647,"throughput_eps":0,"last_update":"2026-03-22T09:49:02.4804872Z"} +2026/03/22 09:49:07 [log_collector] {"stage_name":"log_collector","events_processed":21070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4214,"last_update":"2026-03-22T09:49:07.37028372Z"} +2026/03/22 09:49:07 [metric_collector] {"stage_name":"metric_collector","events_processed":13654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2730.8,"last_update":"2026-03-22T09:49:02.369774345Z"} +2026/03/22 09:49:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:49:02.376552843Z"} +2026/03/22 09:49:07 [detection_layer] {"stage_name":"detection_layer","events_processed":455,"events_dropped":0,"avg_latency_ms":15.800570683563052,"throughput_eps":0,"last_update":"2026-03-22T09:49:02.480444178Z"} +2026/03/22 09:49:07 ───────────────────────────────────────────────── +2026/03/22 09:49:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:49:12 [metric_collector] {"stage_name":"metric_collector","events_processed":13659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2731.8,"last_update":"2026-03-22T09:49:07.370536364Z"} +2026/03/22 09:49:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:49:07.378183415Z"} +2026/03/22 09:49:12 [detection_layer] {"stage_name":"detection_layer","events_processed":455,"events_dropped":0,"avg_latency_ms":15.800570683563052,"throughput_eps":0,"last_update":"2026-03-22T09:49:07.479445903Z"} +2026/03/22 09:49:12 [transform_engine] {"stage_name":"transform_engine","events_processed":455,"events_dropped":0,"avg_latency_ms":967.9335008697647,"throughput_eps":0,"last_update":"2026-03-22T09:49:07.479375659Z"} +2026/03/22 09:49:12 [log_collector] {"stage_name":"log_collector","events_processed":21070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4214,"last_update":"2026-03-22T09:49:12.369311296Z"} +2026/03/22 09:49:12 ───────────────────────────────────────────────── +2026/03/22 09:49:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:49:17 [log_collector] {"stage_name":"log_collector","events_processed":21073,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4214.6,"last_update":"2026-03-22T09:49:17.368494962Z"} +2026/03/22 09:49:17 [metric_collector] {"stage_name":"metric_collector","events_processed":13664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2732.8,"last_update":"2026-03-22T09:49:12.369679552Z"} +2026/03/22 09:49:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:49:12.376264759Z"} +2026/03/22 09:49:17 [detection_layer] {"stage_name":"detection_layer","events_processed":455,"events_dropped":0,"avg_latency_ms":15.800570683563052,"throughput_eps":0,"last_update":"2026-03-22T09:49:12.47964858Z"} +2026/03/22 09:49:17 [transform_engine] {"stage_name":"transform_engine","events_processed":455,"events_dropped":0,"avg_latency_ms":967.9335008697647,"throughput_eps":0,"last_update":"2026-03-22T09:49:12.479614976Z"} +2026/03/22 09:49:17 ───────────────────────────────────────────────── +2026/03/22 09:49:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:49:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5470,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:49:17.378153426Z"} +2026/03/22 09:49:22 [detection_layer] {"stage_name":"detection_layer","events_processed":455,"events_dropped":0,"avg_latency_ms":15.800570683563052,"throughput_eps":0,"last_update":"2026-03-22T09:49:17.479397168Z"} +2026/03/22 09:49:22 [transform_engine] {"stage_name":"transform_engine","events_processed":455,"events_dropped":0,"avg_latency_ms":967.9335008697647,"throughput_eps":0,"last_update":"2026-03-22T09:49:17.479378993Z"} +2026/03/22 09:49:22 [log_collector] {"stage_name":"log_collector","events_processed":21073,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4214.6,"last_update":"2026-03-22T09:49:17.368494962Z"} +2026/03/22 09:49:22 [metric_collector] {"stage_name":"metric_collector","events_processed":13669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2733.8,"last_update":"2026-03-22T09:49:17.368785899Z"} +2026/03/22 09:49:22 ───────────────────────────────────────────────── +2026/03/22 09:49:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:49:27 [transform_engine] {"stage_name":"transform_engine","events_processed":455,"events_dropped":0,"avg_latency_ms":967.9335008697647,"throughput_eps":0,"last_update":"2026-03-22T09:49:22.478941576Z"} +2026/03/22 09:49:27 [log_collector] {"stage_name":"log_collector","events_processed":21081,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4216.2,"last_update":"2026-03-22T09:49:22.368340156Z"} +2026/03/22 09:49:27 [metric_collector] {"stage_name":"metric_collector","events_processed":13674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2734.8,"last_update":"2026-03-22T09:49:22.368326019Z"} +2026/03/22 09:49:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:49:22.377797576Z"} +2026/03/22 09:49:27 [detection_layer] {"stage_name":"detection_layer","events_processed":455,"events_dropped":0,"avg_latency_ms":15.800570683563052,"throughput_eps":0,"last_update":"2026-03-22T09:49:22.47894888Z"} +2026/03/22 09:49:27 ───────────────────────────────────────────────── +2026/03/22 09:49:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:49:32 [detection_layer] {"stage_name":"detection_layer","events_processed":455,"events_dropped":0,"avg_latency_ms":15.800570683563052,"throughput_eps":0,"last_update":"2026-03-22T09:49:27.479662378Z"} +2026/03/22 09:49:32 [transform_engine] {"stage_name":"transform_engine","events_processed":456,"events_dropped":0,"avg_latency_ms":802.6282164958118,"throughput_eps":0,"last_update":"2026-03-22T09:49:27.621100887Z"} +2026/03/22 09:49:32 [log_collector] {"stage_name":"log_collector","events_processed":21371,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4274.2,"last_update":"2026-03-22T09:49:32.368399316Z"} +2026/03/22 09:49:32 [metric_collector] {"stage_name":"metric_collector","events_processed":13679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2735.8,"last_update":"2026-03-22T09:49:27.368560401Z"} +2026/03/22 09:49:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:49:27.375811843Z"} +2026/03/22 09:49:32 ───────────────────────────────────────────────── +2026/03/22 09:49:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:49:37 [log_collector] {"stage_name":"log_collector","events_processed":21371,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4274.2,"last_update":"2026-03-22T09:49:32.368399316Z"} +2026/03/22 09:49:37 [metric_collector] {"stage_name":"metric_collector","events_processed":13684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2736.8,"last_update":"2026-03-22T09:49:32.36863605Z"} +2026/03/22 09:49:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5476,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:49:32.379355468Z"} +2026/03/22 09:49:37 [detection_layer] {"stage_name":"detection_layer","events_processed":456,"events_dropped":0,"avg_latency_ms":15.360782346850442,"throughput_eps":0,"last_update":"2026-03-22T09:49:32.478947363Z"} +2026/03/22 09:49:37 [transform_engine] {"stage_name":"transform_engine","events_processed":456,"events_dropped":0,"avg_latency_ms":802.6282164958118,"throughput_eps":0,"last_update":"2026-03-22T09:49:32.478958204Z"} +2026/03/22 09:49:37 ───────────────────────────────────────────────── +2026/03/22 09:49:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:49:42 [transform_engine] {"stage_name":"transform_engine","events_processed":456,"events_dropped":0,"avg_latency_ms":802.6282164958118,"throughput_eps":0,"last_update":"2026-03-22T09:49:37.479498746Z"} +2026/03/22 09:49:42 [log_collector] {"stage_name":"log_collector","events_processed":21430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4286,"last_update":"2026-03-22T09:49:37.368881588Z"} +2026/03/22 09:49:42 [metric_collector] {"stage_name":"metric_collector","events_processed":13689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2737.8,"last_update":"2026-03-22T09:49:37.369131366Z"} +2026/03/22 09:49:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:49:37.378297137Z"} +2026/03/22 09:49:42 [detection_layer] {"stage_name":"detection_layer","events_processed":456,"events_dropped":0,"avg_latency_ms":15.360782346850442,"throughput_eps":0,"last_update":"2026-03-22T09:49:37.479473217Z"} +2026/03/22 09:49:42 ───────────────────────────────────────────────── +2026/03/22 09:49:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:49:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5480,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:49:42.377309212Z"} +2026/03/22 09:49:47 [detection_layer] {"stage_name":"detection_layer","events_processed":456,"events_dropped":0,"avg_latency_ms":15.360782346850442,"throughput_eps":0,"last_update":"2026-03-22T09:49:42.479506047Z"} +2026/03/22 09:49:47 [transform_engine] {"stage_name":"transform_engine","events_processed":456,"events_dropped":0,"avg_latency_ms":802.6282164958118,"throughput_eps":0,"last_update":"2026-03-22T09:49:42.479549841Z"} +2026/03/22 09:49:47 [log_collector] {"stage_name":"log_collector","events_processed":21430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4286,"last_update":"2026-03-22T09:49:42.367992963Z"} +2026/03/22 09:49:47 [metric_collector] {"stage_name":"metric_collector","events_processed":13694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2738.8,"last_update":"2026-03-22T09:49:42.368733722Z"} +2026/03/22 09:49:47 ───────────────────────────────────────────────── +2026/03/22 09:49:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:49:52 [detection_layer] {"stage_name":"detection_layer","events_processed":456,"events_dropped":0,"avg_latency_ms":15.360782346850442,"throughput_eps":0,"last_update":"2026-03-22T09:49:47.47976389Z"} +2026/03/22 09:49:52 [transform_engine] {"stage_name":"transform_engine","events_processed":456,"events_dropped":0,"avg_latency_ms":802.6282164958118,"throughput_eps":0,"last_update":"2026-03-22T09:49:47.479793367Z"} +2026/03/22 09:49:52 [log_collector] {"stage_name":"log_collector","events_processed":21430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4286,"last_update":"2026-03-22T09:49:47.368146737Z"} +2026/03/22 09:49:52 [metric_collector] {"stage_name":"metric_collector","events_processed":13699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2739.8,"last_update":"2026-03-22T09:49:47.368275614Z"} +2026/03/22 09:49:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5482,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:49:47.375480107Z"} +2026/03/22 09:49:52 ───────────────────────────────────────────────── +2026/03/22 09:49:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:49:57 [metric_collector] {"stage_name":"metric_collector","events_processed":13704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2740.8,"last_update":"2026-03-22T09:49:52.368652189Z"} +2026/03/22 09:49:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:49:52.377227107Z"} +2026/03/22 09:49:57 [detection_layer] {"stage_name":"detection_layer","events_processed":456,"events_dropped":0,"avg_latency_ms":15.360782346850442,"throughput_eps":0,"last_update":"2026-03-22T09:49:52.47951681Z"} +2026/03/22 09:49:57 [transform_engine] {"stage_name":"transform_engine","events_processed":456,"events_dropped":0,"avg_latency_ms":802.6282164958118,"throughput_eps":0,"last_update":"2026-03-22T09:49:52.47948042Z"} +2026/03/22 09:49:57 [log_collector] {"stage_name":"log_collector","events_processed":21430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4286,"last_update":"2026-03-22T09:49:52.368033855Z"} +2026/03/22 09:49:57 ───────────────────────────────────────────────── +2026/03/22 09:50:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:50:02 [metric_collector] {"stage_name":"metric_collector","events_processed":13709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2741.8,"last_update":"2026-03-22T09:49:57.368576209Z"} +2026/03/22 09:50:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5486,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:49:57.377263192Z"} +2026/03/22 09:50:02 [detection_layer] {"stage_name":"detection_layer","events_processed":456,"events_dropped":0,"avg_latency_ms":15.360782346850442,"throughput_eps":0,"last_update":"2026-03-22T09:49:57.479498751Z"} +2026/03/22 09:50:02 [transform_engine] {"stage_name":"transform_engine","events_processed":457,"events_dropped":0,"avg_latency_ms":665.5246787966495,"throughput_eps":0,"last_update":"2026-03-22T09:49:57.596724419Z"} +2026/03/22 09:50:02 [log_collector] {"stage_name":"log_collector","events_processed":21430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4286,"last_update":"2026-03-22T09:49:57.368191383Z"} +2026/03/22 09:50:02 ───────────────────────────────────────────────── +2026/03/22 09:50:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:50:07 [log_collector] {"stage_name":"log_collector","events_processed":21430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4286,"last_update":"2026-03-22T09:50:02.368829251Z"} +2026/03/22 09:50:07 [metric_collector] {"stage_name":"metric_collector","events_processed":13714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2742.8,"last_update":"2026-03-22T09:50:02.369279724Z"} +2026/03/22 09:50:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:50:02.383205885Z"} +2026/03/22 09:50:07 [detection_layer] {"stage_name":"detection_layer","events_processed":457,"events_dropped":0,"avg_latency_ms":16.462636877480353,"throughput_eps":0,"last_update":"2026-03-22T09:50:02.479409978Z"} +2026/03/22 09:50:07 [transform_engine] {"stage_name":"transform_engine","events_processed":457,"events_dropped":0,"avg_latency_ms":665.5246787966495,"throughput_eps":0,"last_update":"2026-03-22T09:50:02.479423293Z"} +2026/03/22 09:50:07 ───────────────────────────────────────────────── +2026/03/22 09:50:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:50:12 [log_collector] {"stage_name":"log_collector","events_processed":21430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4286,"last_update":"2026-03-22T09:50:12.368053477Z"} +2026/03/22 09:50:12 [metric_collector] {"stage_name":"metric_collector","events_processed":13719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2743.8,"last_update":"2026-03-22T09:50:07.368849649Z"} +2026/03/22 09:50:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5490,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:50:07.377879068Z"} +2026/03/22 09:50:12 [detection_layer] {"stage_name":"detection_layer","events_processed":457,"events_dropped":0,"avg_latency_ms":16.462636877480353,"throughput_eps":0,"last_update":"2026-03-22T09:50:07.479146101Z"} +2026/03/22 09:50:12 [transform_engine] {"stage_name":"transform_engine","events_processed":457,"events_dropped":0,"avg_latency_ms":665.5246787966495,"throughput_eps":0,"last_update":"2026-03-22T09:50:07.479159887Z"} +2026/03/22 09:50:12 ───────────────────────────────────────────────── +2026/03/22 09:50:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:50:17 [transform_engine] {"stage_name":"transform_engine","events_processed":457,"events_dropped":0,"avg_latency_ms":665.5246787966495,"throughput_eps":0,"last_update":"2026-03-22T09:50:12.479540669Z"} +2026/03/22 09:50:17 [log_collector] {"stage_name":"log_collector","events_processed":21430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4286,"last_update":"2026-03-22T09:50:12.368053477Z"} +2026/03/22 09:50:17 [metric_collector] {"stage_name":"metric_collector","events_processed":13724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2744.8,"last_update":"2026-03-22T09:50:12.368863649Z"} +2026/03/22 09:50:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:50:12.378335775Z"} +2026/03/22 09:50:17 [detection_layer] {"stage_name":"detection_layer","events_processed":457,"events_dropped":0,"avg_latency_ms":16.462636877480353,"throughput_eps":0,"last_update":"2026-03-22T09:50:12.479528707Z"} +2026/03/22 09:50:17 ───────────────────────────────────────────────── +2026/03/22 09:50:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:50:22 [metric_collector] {"stage_name":"metric_collector","events_processed":13729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2745.8,"last_update":"2026-03-22T09:50:17.369213685Z"} +2026/03/22 09:50:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:50:17.379808062Z"} +2026/03/22 09:50:22 [detection_layer] {"stage_name":"detection_layer","events_processed":457,"events_dropped":0,"avg_latency_ms":16.462636877480353,"throughput_eps":0,"last_update":"2026-03-22T09:50:17.479086375Z"} +2026/03/22 09:50:22 [transform_engine] {"stage_name":"transform_engine","events_processed":457,"events_dropped":0,"avg_latency_ms":665.5246787966495,"throughput_eps":0,"last_update":"2026-03-22T09:50:17.478942048Z"} +2026/03/22 09:50:22 [log_collector] {"stage_name":"log_collector","events_processed":21430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4286,"last_update":"2026-03-22T09:50:22.368346363Z"} +2026/03/22 09:50:22 ───────────────────────────────────────────────── +2026/03/22 09:50:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:50:27 [detection_layer] {"stage_name":"detection_layer","events_processed":457,"events_dropped":0,"avg_latency_ms":16.462636877480353,"throughput_eps":0,"last_update":"2026-03-22T09:50:22.479620937Z"} +2026/03/22 09:50:27 [transform_engine] {"stage_name":"transform_engine","events_processed":457,"events_dropped":0,"avg_latency_ms":665.5246787966495,"throughput_eps":0,"last_update":"2026-03-22T09:50:22.479681233Z"} +2026/03/22 09:50:27 [log_collector] {"stage_name":"log_collector","events_processed":21430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4286,"last_update":"2026-03-22T09:50:22.368346363Z"} +2026/03/22 09:50:27 [metric_collector] {"stage_name":"metric_collector","events_processed":13734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2746.8,"last_update":"2026-03-22T09:50:22.368961492Z"} +2026/03/22 09:50:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5496,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:50:22.378396397Z"} +2026/03/22 09:50:27 ───────────────────────────────────────────────── +2026/03/22 09:50:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:50:32 [transform_engine] {"stage_name":"transform_engine","events_processed":458,"events_dropped":0,"avg_latency_ms":550.0360368373196,"throughput_eps":0,"last_update":"2026-03-22T09:50:27.567163767Z"} +2026/03/22 09:50:32 [log_collector] {"stage_name":"log_collector","events_processed":21430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4286,"last_update":"2026-03-22T09:50:32.368811903Z"} +2026/03/22 09:50:32 [metric_collector] {"stage_name":"metric_collector","events_processed":13739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2747.8,"last_update":"2026-03-22T09:50:27.36891271Z"} +2026/03/22 09:50:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5498,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:50:27.378931064Z"} +2026/03/22 09:50:32 [detection_layer] {"stage_name":"detection_layer","events_processed":457,"events_dropped":0,"avg_latency_ms":16.462636877480353,"throughput_eps":0,"last_update":"2026-03-22T09:50:27.479064504Z"} +2026/03/22 09:50:32 ───────────────────────────────────────────────── +2026/03/22 09:50:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:50:37 [transform_engine] {"stage_name":"transform_engine","events_processed":458,"events_dropped":0,"avg_latency_ms":550.0360368373196,"throughput_eps":0,"last_update":"2026-03-22T09:50:32.479365686Z"} +2026/03/22 09:50:37 [log_collector] {"stage_name":"log_collector","events_processed":21430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4286,"last_update":"2026-03-22T09:50:32.368811903Z"} +2026/03/22 09:50:37 [metric_collector] {"stage_name":"metric_collector","events_processed":13744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2748.8,"last_update":"2026-03-22T09:50:32.369397325Z"} +2026/03/22 09:50:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:50:32.376057184Z"} +2026/03/22 09:50:37 [detection_layer] {"stage_name":"detection_layer","events_processed":458,"events_dropped":0,"avg_latency_ms":17.609592901984286,"throughput_eps":0,"last_update":"2026-03-22T09:50:32.479377228Z"} +2026/03/22 09:50:37 ───────────────────────────────────────────────── +2026/03/22 09:50:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:50:42 [metric_collector] {"stage_name":"metric_collector","events_processed":13749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2749.8,"last_update":"2026-03-22T09:50:37.368335931Z"} +2026/03/22 09:50:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:50:37.375914241Z"} +2026/03/22 09:50:42 [detection_layer] {"stage_name":"detection_layer","events_processed":458,"events_dropped":0,"avg_latency_ms":17.609592901984286,"throughput_eps":0,"last_update":"2026-03-22T09:50:37.479142097Z"} +2026/03/22 09:50:42 [transform_engine] {"stage_name":"transform_engine","events_processed":458,"events_dropped":0,"avg_latency_ms":550.0360368373196,"throughput_eps":0,"last_update":"2026-03-22T09:50:37.479155272Z"} +2026/03/22 09:50:42 [log_collector] {"stage_name":"log_collector","events_processed":21430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4286,"last_update":"2026-03-22T09:50:37.368187116Z"} +2026/03/22 09:50:42 ───────────────────────────────────────────────── +2026/03/22 09:50:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:50:47 [detection_layer] {"stage_name":"detection_layer","events_processed":458,"events_dropped":0,"avg_latency_ms":17.609592901984286,"throughput_eps":0,"last_update":"2026-03-22T09:50:42.479466873Z"} +2026/03/22 09:50:47 [transform_engine] {"stage_name":"transform_engine","events_processed":458,"events_dropped":0,"avg_latency_ms":550.0360368373196,"throughput_eps":0,"last_update":"2026-03-22T09:50:42.479477613Z"} +2026/03/22 09:50:47 [log_collector] {"stage_name":"log_collector","events_processed":21430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4286,"last_update":"2026-03-22T09:50:42.368008017Z"} +2026/03/22 09:50:47 [metric_collector] {"stage_name":"metric_collector","events_processed":13754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2750.8,"last_update":"2026-03-22T09:50:42.36853165Z"} +2026/03/22 09:50:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:50:42.375237227Z"} +2026/03/22 09:50:47 ───────────────────────────────────────────────── +2026/03/22 09:50:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:50:52 [log_collector] {"stage_name":"log_collector","events_processed":21430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4286,"last_update":"2026-03-22T09:50:52.368018047Z"} +2026/03/22 09:50:52 [metric_collector] {"stage_name":"metric_collector","events_processed":13759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2751.8,"last_update":"2026-03-22T09:50:47.368319362Z"} +2026/03/22 09:50:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5506,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:50:47.376558205Z"} +2026/03/22 09:50:52 [detection_layer] {"stage_name":"detection_layer","events_processed":458,"events_dropped":0,"avg_latency_ms":17.609592901984286,"throughput_eps":0,"last_update":"2026-03-22T09:50:47.479746295Z"} +2026/03/22 09:50:52 [transform_engine] {"stage_name":"transform_engine","events_processed":458,"events_dropped":0,"avg_latency_ms":550.0360368373196,"throughput_eps":0,"last_update":"2026-03-22T09:50:47.479759461Z"} +2026/03/22 09:50:52 ───────────────────────────────────────────────── +Saved state: 13 clusters, 21431 messages, reason: none +2026/03/22 09:50:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:50:57 [log_collector] {"stage_name":"log_collector","events_processed":21430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4286,"last_update":"2026-03-22T09:50:52.368018047Z"} +2026/03/22 09:50:57 [metric_collector] {"stage_name":"metric_collector","events_processed":13764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2752.8,"last_update":"2026-03-22T09:50:52.368340234Z"} +2026/03/22 09:50:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:50:52.378042842Z"} +2026/03/22 09:50:57 [detection_layer] {"stage_name":"detection_layer","events_processed":458,"events_dropped":0,"avg_latency_ms":17.609592901984286,"throughput_eps":0,"last_update":"2026-03-22T09:50:52.479344939Z"} +2026/03/22 09:50:57 [transform_engine] {"stage_name":"transform_engine","events_processed":458,"events_dropped":0,"avg_latency_ms":550.0360368373196,"throughput_eps":0,"last_update":"2026-03-22T09:50:52.479305723Z"} +2026/03/22 09:50:57 ───────────────────────────────────────────────── +2026/03/22 09:51:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:51:02 [transform_engine] {"stage_name":"transform_engine","events_processed":459,"events_dropped":0,"avg_latency_ms":467.3292662698557,"throughput_eps":0,"last_update":"2026-03-22T09:50:57.615815758Z"} +2026/03/22 09:51:02 [log_collector] {"stage_name":"log_collector","events_processed":21433,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4286.6,"last_update":"2026-03-22T09:51:02.368217406Z"} +2026/03/22 09:51:02 [metric_collector] {"stage_name":"metric_collector","events_processed":13769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2753.8,"last_update":"2026-03-22T09:50:57.368181546Z"} +2026/03/22 09:51:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:50:57.375027702Z"} +2026/03/22 09:51:02 [detection_layer] {"stage_name":"detection_layer","events_processed":458,"events_dropped":0,"avg_latency_ms":17.609592901984286,"throughput_eps":0,"last_update":"2026-03-22T09:50:57.47936876Z"} +2026/03/22 09:51:02 ───────────────────────────────────────────────── +2026/03/22 09:51:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:51:07 [log_collector] {"stage_name":"log_collector","events_processed":21433,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4286.6,"last_update":"2026-03-22T09:51:02.368217406Z"} +2026/03/22 09:51:07 [metric_collector] {"stage_name":"metric_collector","events_processed":13774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2754.8,"last_update":"2026-03-22T09:51:02.36849071Z"} +2026/03/22 09:51:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5512,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:51:02.375202709Z"} +2026/03/22 09:51:07 [detection_layer] {"stage_name":"detection_layer","events_processed":459,"events_dropped":0,"avg_latency_ms":16.88409572158743,"throughput_eps":0,"last_update":"2026-03-22T09:51:02.480126634Z"} +2026/03/22 09:51:07 [transform_engine] {"stage_name":"transform_engine","events_processed":459,"events_dropped":0,"avg_latency_ms":467.3292662698557,"throughput_eps":0,"last_update":"2026-03-22T09:51:02.480096896Z"} +2026/03/22 09:51:07 ───────────────────────────────────────────────── +2026/03/22 09:51:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:51:12 [log_collector] {"stage_name":"log_collector","events_processed":21444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4288.8,"last_update":"2026-03-22T09:51:07.368002159Z"} +2026/03/22 09:51:12 [metric_collector] {"stage_name":"metric_collector","events_processed":13779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2755.8,"last_update":"2026-03-22T09:51:07.368418225Z"} +2026/03/22 09:51:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:51:07.377782356Z"} +2026/03/22 09:51:12 [detection_layer] {"stage_name":"detection_layer","events_processed":459,"events_dropped":0,"avg_latency_ms":16.88409572158743,"throughput_eps":0,"last_update":"2026-03-22T09:51:07.478940806Z"} +2026/03/22 09:51:12 [transform_engine] {"stage_name":"transform_engine","events_processed":459,"events_dropped":0,"avg_latency_ms":467.3292662698557,"throughput_eps":0,"last_update":"2026-03-22T09:51:07.478933271Z"} +2026/03/22 09:51:12 ───────────────────────────────────────────────── +2026/03/22 09:51:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:51:17 [detection_layer] {"stage_name":"detection_layer","events_processed":459,"events_dropped":0,"avg_latency_ms":16.88409572158743,"throughput_eps":0,"last_update":"2026-03-22T09:51:12.479724396Z"} +2026/03/22 09:51:17 [transform_engine] {"stage_name":"transform_engine","events_processed":459,"events_dropped":0,"avg_latency_ms":467.3292662698557,"throughput_eps":0,"last_update":"2026-03-22T09:51:12.479732843Z"} +2026/03/22 09:51:17 [log_collector] {"stage_name":"log_collector","events_processed":21451,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4290.2,"last_update":"2026-03-22T09:51:12.367968513Z"} +2026/03/22 09:51:17 [metric_collector] {"stage_name":"metric_collector","events_processed":13784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2756.8,"last_update":"2026-03-22T09:51:12.368207482Z"} +2026/03/22 09:51:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:51:12.374472745Z"} +2026/03/22 09:51:17 ───────────────────────────────────────────────── +2026/03/22 09:51:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:51:22 [log_collector] {"stage_name":"log_collector","events_processed":21460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4292,"last_update":"2026-03-22T09:51:17.368625266Z"} +2026/03/22 09:51:22 [metric_collector] {"stage_name":"metric_collector","events_processed":13789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2757.8,"last_update":"2026-03-22T09:51:17.36904494Z"} +2026/03/22 09:51:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:51:17.378059901Z"} +2026/03/22 09:51:22 [detection_layer] {"stage_name":"detection_layer","events_processed":459,"events_dropped":0,"avg_latency_ms":16.88409572158743,"throughput_eps":0,"last_update":"2026-03-22T09:51:17.479412213Z"} +2026/03/22 09:51:22 [transform_engine] {"stage_name":"transform_engine","events_processed":459,"events_dropped":0,"avg_latency_ms":467.3292662698557,"throughput_eps":0,"last_update":"2026-03-22T09:51:17.479429396Z"} +2026/03/22 09:51:22 ───────────────────────────────────────────────── +2026/03/22 09:51:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:51:27 [log_collector] {"stage_name":"log_collector","events_processed":21473,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4294.6,"last_update":"2026-03-22T09:51:22.367989228Z"} +2026/03/22 09:51:27 [metric_collector] {"stage_name":"metric_collector","events_processed":13794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2758.8,"last_update":"2026-03-22T09:51:22.368380518Z"} +2026/03/22 09:51:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5520,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:51:22.375055906Z"} +2026/03/22 09:51:27 [detection_layer] {"stage_name":"detection_layer","events_processed":459,"events_dropped":0,"avg_latency_ms":16.88409572158743,"throughput_eps":0,"last_update":"2026-03-22T09:51:22.479248579Z"} +2026/03/22 09:51:27 [transform_engine] {"stage_name":"transform_engine","events_processed":459,"events_dropped":0,"avg_latency_ms":467.3292662698557,"throughput_eps":0,"last_update":"2026-03-22T09:51:22.479263828Z"} +2026/03/22 09:51:27 ───────────────────────────────────────────────── +2026/03/22 09:51:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:51:32 [detection_layer] {"stage_name":"detection_layer","events_processed":459,"events_dropped":0,"avg_latency_ms":16.88409572158743,"throughput_eps":0,"last_update":"2026-03-22T09:51:27.479840479Z"} +2026/03/22 09:51:32 [transform_engine] {"stage_name":"transform_engine","events_processed":460,"events_dropped":0,"avg_latency_ms":396.3924642158846,"throughput_eps":0,"last_update":"2026-03-22T09:51:27.592500614Z"} +2026/03/22 09:51:32 [log_collector] {"stage_name":"log_collector","events_processed":21474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4294.8,"last_update":"2026-03-22T09:51:27.367998102Z"} +2026/03/22 09:51:32 [metric_collector] {"stage_name":"metric_collector","events_processed":13799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2759.8,"last_update":"2026-03-22T09:51:27.368406444Z"} +2026/03/22 09:51:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5522,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:51:27.378631664Z"} +2026/03/22 09:51:32 ───────────────────────────────────────────────── +2026/03/22 09:51:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:51:37 [detection_layer] {"stage_name":"detection_layer","events_processed":460,"events_dropped":0,"avg_latency_ms":16.977029777269944,"throughput_eps":0,"last_update":"2026-03-22T09:51:32.479409212Z"} +2026/03/22 09:51:37 [transform_engine] {"stage_name":"transform_engine","events_processed":460,"events_dropped":0,"avg_latency_ms":396.3924642158846,"throughput_eps":0,"last_update":"2026-03-22T09:51:32.47942422Z"} +2026/03/22 09:51:37 [log_collector] {"stage_name":"log_collector","events_processed":21474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4294.8,"last_update":"2026-03-22T09:51:32.368019843Z"} +2026/03/22 09:51:37 [metric_collector] {"stage_name":"metric_collector","events_processed":13809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2761.8,"last_update":"2026-03-22T09:51:37.368975029Z"} +2026/03/22 09:51:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:51:32.3781912Z"} +2026/03/22 09:51:37 ───────────────────────────────────────────────── +2026/03/22 09:51:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:51:42 [detection_layer] {"stage_name":"detection_layer","events_processed":460,"events_dropped":0,"avg_latency_ms":16.977029777269944,"throughput_eps":0,"last_update":"2026-03-22T09:51:37.479095277Z"} +2026/03/22 09:51:42 [transform_engine] {"stage_name":"transform_engine","events_processed":460,"events_dropped":0,"avg_latency_ms":396.3924642158846,"throughput_eps":0,"last_update":"2026-03-22T09:51:37.479108863Z"} +2026/03/22 09:51:42 [log_collector] {"stage_name":"log_collector","events_processed":21474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4294.8,"last_update":"2026-03-22T09:51:42.368760231Z"} +2026/03/22 09:51:42 [metric_collector] {"stage_name":"metric_collector","events_processed":13809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2761.8,"last_update":"2026-03-22T09:51:37.368975029Z"} +2026/03/22 09:51:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5526,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:51:37.379869941Z"} +2026/03/22 09:51:42 ───────────────────────────────────────────────── +2026/03/22 09:51:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:51:47 [log_collector] {"stage_name":"log_collector","events_processed":21474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4294.8,"last_update":"2026-03-22T09:51:47.368035269Z"} +2026/03/22 09:51:47 [metric_collector] {"stage_name":"metric_collector","events_processed":13814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2762.8,"last_update":"2026-03-22T09:51:42.369129338Z"} +2026/03/22 09:51:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:51:42.378625631Z"} +2026/03/22 09:51:47 [detection_layer] {"stage_name":"detection_layer","events_processed":460,"events_dropped":0,"avg_latency_ms":16.977029777269944,"throughput_eps":0,"last_update":"2026-03-22T09:51:42.480063775Z"} +2026/03/22 09:51:47 [transform_engine] {"stage_name":"transform_engine","events_processed":460,"events_dropped":0,"avg_latency_ms":396.3924642158846,"throughput_eps":0,"last_update":"2026-03-22T09:51:42.478861583Z"} +2026/03/22 09:51:47 ───────────────────────────────────────────────── +2026/03/22 09:51:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:51:52 [log_collector] {"stage_name":"log_collector","events_processed":21474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4294.8,"last_update":"2026-03-22T09:51:47.368035269Z"} +2026/03/22 09:51:52 [metric_collector] {"stage_name":"metric_collector","events_processed":13819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2763.8,"last_update":"2026-03-22T09:51:47.368988807Z"} +2026/03/22 09:51:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:51:47.376706832Z"} +2026/03/22 09:51:52 [detection_layer] {"stage_name":"detection_layer","events_processed":460,"events_dropped":0,"avg_latency_ms":16.977029777269944,"throughput_eps":0,"last_update":"2026-03-22T09:51:47.478983253Z"} +2026/03/22 09:51:52 [transform_engine] {"stage_name":"transform_engine","events_processed":460,"events_dropped":0,"avg_latency_ms":396.3924642158846,"throughput_eps":0,"last_update":"2026-03-22T09:51:47.478928739Z"} +2026/03/22 09:51:52 ───────────────────────────────────────────────── +2026/03/22 09:51:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:51:57 [metric_collector] {"stage_name":"metric_collector","events_processed":13824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2764.8,"last_update":"2026-03-22T09:51:52.368382186Z"} +2026/03/22 09:51:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5532,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:51:52.37803522Z"} +2026/03/22 09:51:57 [detection_layer] {"stage_name":"detection_layer","events_processed":460,"events_dropped":0,"avg_latency_ms":16.977029777269944,"throughput_eps":0,"last_update":"2026-03-22T09:51:52.479245267Z"} +2026/03/22 09:51:57 [transform_engine] {"stage_name":"transform_engine","events_processed":460,"events_dropped":0,"avg_latency_ms":396.3924642158846,"throughput_eps":0,"last_update":"2026-03-22T09:51:52.479259104Z"} +2026/03/22 09:51:57 [log_collector] {"stage_name":"log_collector","events_processed":21474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4294.8,"last_update":"2026-03-22T09:51:52.367983543Z"} +2026/03/22 09:51:57 ───────────────────────────────────────────────── +2026/03/22 09:52:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:52:02 [log_collector] {"stage_name":"log_collector","events_processed":21474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4294.8,"last_update":"2026-03-22T09:51:57.367985477Z"} +2026/03/22 09:52:02 [metric_collector] {"stage_name":"metric_collector","events_processed":13829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2765.8,"last_update":"2026-03-22T09:51:57.368317974Z"} +2026/03/22 09:52:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:51:57.377384734Z"} +2026/03/22 09:52:02 [detection_layer] {"stage_name":"detection_layer","events_processed":460,"events_dropped":0,"avg_latency_ms":16.977029777269944,"throughput_eps":0,"last_update":"2026-03-22T09:51:57.479596199Z"} +2026/03/22 09:52:02 [transform_engine] {"stage_name":"transform_engine","events_processed":461,"events_dropped":0,"avg_latency_ms":333.45970017270776,"throughput_eps":0,"last_update":"2026-03-22T09:51:57.561340313Z"} +2026/03/22 09:52:02 ───────────────────────────────────────────────── +2026/03/22 09:52:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:52:07 [metric_collector] {"stage_name":"metric_collector","events_processed":13834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2766.8,"last_update":"2026-03-22T09:52:02.369703686Z"} +2026/03/22 09:52:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5536,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:52:02.378206135Z"} +2026/03/22 09:52:07 [detection_layer] {"stage_name":"detection_layer","events_processed":461,"events_dropped":0,"avg_latency_ms":18.26099262181596,"throughput_eps":0,"last_update":"2026-03-22T09:52:02.479585425Z"} +2026/03/22 09:52:07 [transform_engine] {"stage_name":"transform_engine","events_processed":461,"events_dropped":0,"avg_latency_ms":333.45970017270776,"throughput_eps":0,"last_update":"2026-03-22T09:52:02.479617096Z"} +2026/03/22 09:52:07 [log_collector] {"stage_name":"log_collector","events_processed":21474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4294.8,"last_update":"2026-03-22T09:52:02.368892061Z"} +2026/03/22 09:52:07 ───────────────────────────────────────────────── +2026/03/22 09:52:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:52:12 [detection_layer] {"stage_name":"detection_layer","events_processed":461,"events_dropped":0,"avg_latency_ms":18.26099262181596,"throughput_eps":0,"last_update":"2026-03-22T09:52:07.479569737Z"} +2026/03/22 09:52:12 [transform_engine] {"stage_name":"transform_engine","events_processed":461,"events_dropped":0,"avg_latency_ms":333.45970017270776,"throughput_eps":0,"last_update":"2026-03-22T09:52:07.479603993Z"} +2026/03/22 09:52:12 [log_collector] {"stage_name":"log_collector","events_processed":21474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4294.8,"last_update":"2026-03-22T09:52:07.367979435Z"} +2026/03/22 09:52:12 [metric_collector] {"stage_name":"metric_collector","events_processed":13839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2767.8,"last_update":"2026-03-22T09:52:07.368482058Z"} +2026/03/22 09:52:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:52:07.377412467Z"} +2026/03/22 09:52:12 ───────────────────────────────────────────────── +2026/03/22 09:52:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:52:17 [metric_collector] {"stage_name":"metric_collector","events_processed":13844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2768.8,"last_update":"2026-03-22T09:52:12.369070117Z"} +2026/03/22 09:52:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5540,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:52:12.378283146Z"} +2026/03/22 09:52:17 [detection_layer] {"stage_name":"detection_layer","events_processed":461,"events_dropped":0,"avg_latency_ms":18.26099262181596,"throughput_eps":0,"last_update":"2026-03-22T09:52:12.479512759Z"} +2026/03/22 09:52:17 [transform_engine] {"stage_name":"transform_engine","events_processed":461,"events_dropped":0,"avg_latency_ms":333.45970017270776,"throughput_eps":0,"last_update":"2026-03-22T09:52:12.479560321Z"} +2026/03/22 09:52:17 [log_collector] {"stage_name":"log_collector","events_processed":21474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4294.8,"last_update":"2026-03-22T09:52:12.368729374Z"} +2026/03/22 09:52:17 ───────────────────────────────────────────────── +2026/03/22 09:52:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:52:22 [log_collector] {"stage_name":"log_collector","events_processed":21474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4294.8,"last_update":"2026-03-22T09:52:17.368388196Z"} +2026/03/22 09:52:22 [metric_collector] {"stage_name":"metric_collector","events_processed":13849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2769.8,"last_update":"2026-03-22T09:52:17.368236766Z"} +2026/03/22 09:52:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5542,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:52:17.377061312Z"} +2026/03/22 09:52:22 [detection_layer] {"stage_name":"detection_layer","events_processed":461,"events_dropped":0,"avg_latency_ms":18.26099262181596,"throughput_eps":0,"last_update":"2026-03-22T09:52:17.479430938Z"} +2026/03/22 09:52:22 [transform_engine] {"stage_name":"transform_engine","events_processed":461,"events_dropped":0,"avg_latency_ms":333.45970017270776,"throughput_eps":0,"last_update":"2026-03-22T09:52:17.479485523Z"} +2026/03/22 09:52:22 ───────────────────────────────────────────────── +Saved state: 13 clusters, 21475 messages, reason: none +2026/03/22 09:52:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:52:27 [log_collector] {"stage_name":"log_collector","events_processed":21474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4294.8,"last_update":"2026-03-22T09:52:22.368289159Z"} +2026/03/22 09:52:27 [metric_collector] {"stage_name":"metric_collector","events_processed":13854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2770.8,"last_update":"2026-03-22T09:52:22.368515011Z"} +2026/03/22 09:52:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:52:22.377138001Z"} +2026/03/22 09:52:27 [detection_layer] {"stage_name":"detection_layer","events_processed":461,"events_dropped":0,"avg_latency_ms":18.26099262181596,"throughput_eps":0,"last_update":"2026-03-22T09:52:22.479383069Z"} +2026/03/22 09:52:27 [transform_engine] {"stage_name":"transform_engine","events_processed":461,"events_dropped":0,"avg_latency_ms":333.45970017270776,"throughput_eps":0,"last_update":"2026-03-22T09:52:22.47937365Z"} +2026/03/22 09:52:27 ───────────────────────────────────────────────── +2026/03/22 09:52:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:52:32 [transform_engine] {"stage_name":"transform_engine","events_processed":462,"events_dropped":0,"avg_latency_ms":291.26088913816625,"throughput_eps":0,"last_update":"2026-03-22T09:52:27.601681604Z"} +2026/03/22 09:52:32 [log_collector] {"stage_name":"log_collector","events_processed":21479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4295.8,"last_update":"2026-03-22T09:52:32.368201967Z"} +2026/03/22 09:52:32 [metric_collector] {"stage_name":"metric_collector","events_processed":13859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2771.8,"last_update":"2026-03-22T09:52:27.368228151Z"} +2026/03/22 09:52:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:52:27.375956416Z"} +2026/03/22 09:52:32 [detection_layer] {"stage_name":"detection_layer","events_processed":461,"events_dropped":0,"avg_latency_ms":18.26099262181596,"throughput_eps":0,"last_update":"2026-03-22T09:52:27.479745512Z"} +2026/03/22 09:52:32 ───────────────────────────────────────────────── +2026/03/22 09:52:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:52:37 [detection_layer] {"stage_name":"detection_layer","events_processed":462,"events_dropped":0,"avg_latency_ms":17.699038297452766,"throughput_eps":0,"last_update":"2026-03-22T09:52:32.479065545Z"} +2026/03/22 09:52:37 [transform_engine] {"stage_name":"transform_engine","events_processed":462,"events_dropped":0,"avg_latency_ms":291.26088913816625,"throughput_eps":0,"last_update":"2026-03-22T09:52:32.479026271Z"} +2026/03/22 09:52:37 [log_collector] {"stage_name":"log_collector","events_processed":21479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4295.8,"last_update":"2026-03-22T09:52:37.368793533Z"} +2026/03/22 09:52:37 [metric_collector] {"stage_name":"metric_collector","events_processed":13864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2772.8,"last_update":"2026-03-22T09:52:32.368587907Z"} +2026/03/22 09:52:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:52:32.379897223Z"} +2026/03/22 09:52:37 ───────────────────────────────────────────────── +2026/03/22 09:52:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:52:42 [transform_engine] {"stage_name":"transform_engine","events_processed":462,"events_dropped":0,"avg_latency_ms":291.26088913816625,"throughput_eps":0,"last_update":"2026-03-22T09:52:37.478831459Z"} +2026/03/22 09:52:42 [log_collector] {"stage_name":"log_collector","events_processed":21479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4295.8,"last_update":"2026-03-22T09:52:37.368793533Z"} +2026/03/22 09:52:42 [metric_collector] {"stage_name":"metric_collector","events_processed":13869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2773.8,"last_update":"2026-03-22T09:52:37.369122222Z"} +2026/03/22 09:52:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:52:37.375774126Z"} +2026/03/22 09:52:42 [detection_layer] {"stage_name":"detection_layer","events_processed":462,"events_dropped":0,"avg_latency_ms":17.699038297452766,"throughput_eps":0,"last_update":"2026-03-22T09:52:37.479973477Z"} +2026/03/22 09:52:42 ───────────────────────────────────────────────── +2026/03/22 09:52:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:52:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:52:42.379586228Z"} +2026/03/22 09:52:47 [detection_layer] {"stage_name":"detection_layer","events_processed":462,"events_dropped":0,"avg_latency_ms":17.699038297452766,"throughput_eps":0,"last_update":"2026-03-22T09:52:42.479767241Z"} +2026/03/22 09:52:47 [transform_engine] {"stage_name":"transform_engine","events_processed":462,"events_dropped":0,"avg_latency_ms":291.26088913816625,"throughput_eps":0,"last_update":"2026-03-22T09:52:42.479744367Z"} +2026/03/22 09:52:47 [log_collector] {"stage_name":"log_collector","events_processed":21479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4295.8,"last_update":"2026-03-22T09:52:42.368915005Z"} +2026/03/22 09:52:47 [metric_collector] {"stage_name":"metric_collector","events_processed":13874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2774.8,"last_update":"2026-03-22T09:52:42.369209139Z"} +2026/03/22 09:52:47 ───────────────────────────────────────────────── +2026/03/22 09:52:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:52:52 [detection_layer] {"stage_name":"detection_layer","events_processed":462,"events_dropped":0,"avg_latency_ms":17.699038297452766,"throughput_eps":0,"last_update":"2026-03-22T09:52:47.478989127Z"} +2026/03/22 09:52:52 [transform_engine] {"stage_name":"transform_engine","events_processed":462,"events_dropped":0,"avg_latency_ms":291.26088913816625,"throughput_eps":0,"last_update":"2026-03-22T09:52:47.478975392Z"} +2026/03/22 09:52:52 [log_collector] {"stage_name":"log_collector","events_processed":21479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4295.8,"last_update":"2026-03-22T09:52:47.368738445Z"} +2026/03/22 09:52:52 [metric_collector] {"stage_name":"metric_collector","events_processed":13879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2775.8,"last_update":"2026-03-22T09:52:47.368920804Z"} +2026/03/22 09:52:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:52:47.377468098Z"} +2026/03/22 09:52:52 ───────────────────────────────────────────────── +2026/03/22 09:52:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:52:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:52:52.377674078Z"} +2026/03/22 09:52:57 [detection_layer] {"stage_name":"detection_layer","events_processed":462,"events_dropped":0,"avg_latency_ms":17.699038297452766,"throughput_eps":0,"last_update":"2026-03-22T09:52:52.479808783Z"} +2026/03/22 09:52:57 [transform_engine] {"stage_name":"transform_engine","events_processed":462,"events_dropped":0,"avg_latency_ms":291.26088913816625,"throughput_eps":0,"last_update":"2026-03-22T09:52:52.479793725Z"} +2026/03/22 09:52:57 [log_collector] {"stage_name":"log_collector","events_processed":21479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4295.8,"last_update":"2026-03-22T09:52:52.367961462Z"} +2026/03/22 09:52:57 [metric_collector] {"stage_name":"metric_collector","events_processed":13884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2776.8,"last_update":"2026-03-22T09:52:52.368532726Z"} +2026/03/22 09:52:57 ───────────────────────────────────────────────── +2026/03/22 09:53:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:53:02 [log_collector] {"stage_name":"log_collector","events_processed":21479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4295.8,"last_update":"2026-03-22T09:52:57.368650014Z"} +2026/03/22 09:53:02 [metric_collector] {"stage_name":"metric_collector","events_processed":13889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2777.8,"last_update":"2026-03-22T09:52:57.368904181Z"} +2026/03/22 09:53:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:52:57.376288878Z"} +2026/03/22 09:53:02 [detection_layer] {"stage_name":"detection_layer","events_processed":462,"events_dropped":0,"avg_latency_ms":17.699038297452766,"throughput_eps":0,"last_update":"2026-03-22T09:52:57.479558848Z"} +2026/03/22 09:53:02 [transform_engine] {"stage_name":"transform_engine","events_processed":463,"events_dropped":0,"avg_latency_ms":380.753972310533,"throughput_eps":0,"last_update":"2026-03-22T09:52:58.218275515Z"} +2026/03/22 09:53:02 ───────────────────────────────────────────────── +2026/03/22 09:53:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:53:07 [log_collector] {"stage_name":"log_collector","events_processed":21479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4295.8,"last_update":"2026-03-22T09:53:02.367946677Z"} +2026/03/22 09:53:07 [metric_collector] {"stage_name":"metric_collector","events_processed":13894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2778.8,"last_update":"2026-03-22T09:53:02.368159796Z"} +2026/03/22 09:53:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5560,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:53:07.368616589Z"} +2026/03/22 09:53:07 [detection_layer] {"stage_name":"detection_layer","events_processed":463,"events_dropped":0,"avg_latency_ms":17.311784037962212,"throughput_eps":0,"last_update":"2026-03-22T09:53:02.479300673Z"} +2026/03/22 09:53:07 [transform_engine] {"stage_name":"transform_engine","events_processed":463,"events_dropped":0,"avg_latency_ms":380.753972310533,"throughput_eps":0,"last_update":"2026-03-22T09:53:02.479265757Z"} +2026/03/22 09:53:07 ───────────────────────────────────────────────── +2026/03/22 09:53:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:53:12 [metric_collector] {"stage_name":"metric_collector","events_processed":13899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2779.8,"last_update":"2026-03-22T09:53:07.36898752Z"} +2026/03/22 09:53:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5560,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:53:07.368616589Z"} +2026/03/22 09:53:12 [detection_layer] {"stage_name":"detection_layer","events_processed":463,"events_dropped":0,"avg_latency_ms":17.311784037962212,"throughput_eps":0,"last_update":"2026-03-22T09:53:07.479818574Z"} +2026/03/22 09:53:12 [transform_engine] {"stage_name":"transform_engine","events_processed":463,"events_dropped":0,"avg_latency_ms":380.753972310533,"throughput_eps":0,"last_update":"2026-03-22T09:53:07.479782334Z"} +2026/03/22 09:53:12 [log_collector] {"stage_name":"log_collector","events_processed":21482,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4296.4,"last_update":"2026-03-22T09:53:07.368717963Z"} +2026/03/22 09:53:12 ───────────────────────────────────────────────── +2026/03/22 09:53:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:53:17 [log_collector] {"stage_name":"log_collector","events_processed":21756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4351.2,"last_update":"2026-03-22T09:53:17.368089462Z"} +2026/03/22 09:53:17 [metric_collector] {"stage_name":"metric_collector","events_processed":13909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2781.8,"last_update":"2026-03-22T09:53:17.368536209Z"} +2026/03/22 09:53:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:53:12.378940825Z"} +2026/03/22 09:53:17 [detection_layer] {"stage_name":"detection_layer","events_processed":463,"events_dropped":0,"avg_latency_ms":17.311784037962212,"throughput_eps":0,"last_update":"2026-03-22T09:53:12.479440597Z"} +2026/03/22 09:53:17 [transform_engine] {"stage_name":"transform_engine","events_processed":463,"events_dropped":0,"avg_latency_ms":380.753972310533,"throughput_eps":0,"last_update":"2026-03-22T09:53:12.47946834Z"} +2026/03/22 09:53:17 ───────────────────────────────────────────────── +2026/03/22 09:53:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:53:22 [log_collector] {"stage_name":"log_collector","events_processed":21838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.6,"last_update":"2026-03-22T09:53:22.36866095Z"} +2026/03/22 09:53:22 [metric_collector] {"stage_name":"metric_collector","events_processed":13909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2781.8,"last_update":"2026-03-22T09:53:17.368536209Z"} +2026/03/22 09:53:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5566,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:53:17.375563932Z"} +2026/03/22 09:53:22 [detection_layer] {"stage_name":"detection_layer","events_processed":463,"events_dropped":0,"avg_latency_ms":17.311784037962212,"throughput_eps":0,"last_update":"2026-03-22T09:53:17.47986758Z"} +2026/03/22 09:53:22 [transform_engine] {"stage_name":"transform_engine","events_processed":463,"events_dropped":0,"avg_latency_ms":380.753972310533,"throughput_eps":0,"last_update":"2026-03-22T09:53:17.47990365Z"} +2026/03/22 09:53:22 ───────────────────────────────────────────────── +2026/03/22 09:53:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:53:27 [detection_layer] {"stage_name":"detection_layer","events_processed":463,"events_dropped":0,"avg_latency_ms":17.311784037962212,"throughput_eps":0,"last_update":"2026-03-22T09:53:22.479854018Z"} +2026/03/22 09:53:27 [transform_engine] {"stage_name":"transform_engine","events_processed":463,"events_dropped":0,"avg_latency_ms":380.753972310533,"throughput_eps":0,"last_update":"2026-03-22T09:53:22.479895988Z"} +2026/03/22 09:53:27 [log_collector] {"stage_name":"log_collector","events_processed":21838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.6,"last_update":"2026-03-22T09:53:22.36866095Z"} +2026/03/22 09:53:27 [metric_collector] {"stage_name":"metric_collector","events_processed":13914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2782.8,"last_update":"2026-03-22T09:53:22.369169635Z"} +2026/03/22 09:53:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:53:22.379488563Z"} +2026/03/22 09:53:27 ───────────────────────────────────────────────── +2026/03/22 09:53:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:53:32 [detection_layer] {"stage_name":"detection_layer","events_processed":463,"events_dropped":0,"avg_latency_ms":17.311784037962212,"throughput_eps":0,"last_update":"2026-03-22T09:53:27.479272705Z"} +2026/03/22 09:53:32 [transform_engine] {"stage_name":"transform_engine","events_processed":464,"events_dropped":0,"avg_latency_ms":329.2652398484264,"throughput_eps":0,"last_update":"2026-03-22T09:53:27.602558137Z"} +2026/03/22 09:53:32 [log_collector] {"stage_name":"log_collector","events_processed":21838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.6,"last_update":"2026-03-22T09:53:27.368915309Z"} +2026/03/22 09:53:32 [metric_collector] {"stage_name":"metric_collector","events_processed":13919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2783.8,"last_update":"2026-03-22T09:53:27.369403284Z"} +2026/03/22 09:53:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5570,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:53:27.377891585Z"} +2026/03/22 09:53:32 ───────────────────────────────────────────────── +2026/03/22 09:53:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:53:37 [metric_collector] {"stage_name":"metric_collector","events_processed":13923,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2784.6,"last_update":"2026-03-22T09:53:32.368248102Z"} +2026/03/22 09:53:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5572,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:53:32.37871261Z"} +2026/03/22 09:53:37 [detection_layer] {"stage_name":"detection_layer","events_processed":464,"events_dropped":0,"avg_latency_ms":17.76019543036977,"throughput_eps":0,"last_update":"2026-03-22T09:53:32.480023514Z"} +2026/03/22 09:53:37 [transform_engine] {"stage_name":"transform_engine","events_processed":464,"events_dropped":0,"avg_latency_ms":329.2652398484264,"throughput_eps":0,"last_update":"2026-03-22T09:53:32.478917815Z"} +2026/03/22 09:53:37 [log_collector] {"stage_name":"log_collector","events_processed":21838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.6,"last_update":"2026-03-22T09:53:32.368230358Z"} +2026/03/22 09:53:37 ───────────────────────────────────────────────── +2026/03/22 09:53:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:53:42 [log_collector] {"stage_name":"log_collector","events_processed":21838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.6,"last_update":"2026-03-22T09:53:37.368117309Z"} +2026/03/22 09:53:42 [metric_collector] {"stage_name":"metric_collector","events_processed":13928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2785.6,"last_update":"2026-03-22T09:53:37.367981569Z"} +2026/03/22 09:53:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:53:37.379406756Z"} +2026/03/22 09:53:42 [detection_layer] {"stage_name":"detection_layer","events_processed":464,"events_dropped":0,"avg_latency_ms":17.76019543036977,"throughput_eps":0,"last_update":"2026-03-22T09:53:37.479671126Z"} +2026/03/22 09:53:42 [transform_engine] {"stage_name":"transform_engine","events_processed":464,"events_dropped":0,"avg_latency_ms":329.2652398484264,"throughput_eps":0,"last_update":"2026-03-22T09:53:37.479642882Z"} +2026/03/22 09:53:42 ───────────────────────────────────────────────── +2026/03/22 09:53:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:53:47 [detection_layer] {"stage_name":"detection_layer","events_processed":464,"events_dropped":0,"avg_latency_ms":17.76019543036977,"throughput_eps":0,"last_update":"2026-03-22T09:53:42.479707042Z"} +2026/03/22 09:53:47 [transform_engine] {"stage_name":"transform_engine","events_processed":464,"events_dropped":0,"avg_latency_ms":329.2652398484264,"throughput_eps":0,"last_update":"2026-03-22T09:53:42.479683998Z"} +2026/03/22 09:53:47 [log_collector] {"stage_name":"log_collector","events_processed":21838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.6,"last_update":"2026-03-22T09:53:42.368044566Z"} +2026/03/22 09:53:47 [metric_collector] {"stage_name":"metric_collector","events_processed":13933,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2786.6,"last_update":"2026-03-22T09:53:42.367989781Z"} +2026/03/22 09:53:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5576,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:53:42.378447275Z"} +2026/03/22 09:53:47 ───────────────────────────────────────────────── +2026/03/22 09:53:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:53:52 [transform_engine] {"stage_name":"transform_engine","events_processed":464,"events_dropped":0,"avg_latency_ms":329.2652398484264,"throughput_eps":0,"last_update":"2026-03-22T09:53:47.479477026Z"} +2026/03/22 09:53:52 [log_collector] {"stage_name":"log_collector","events_processed":21838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.6,"last_update":"2026-03-22T09:53:52.368650938Z"} +2026/03/22 09:53:52 [metric_collector] {"stage_name":"metric_collector","events_processed":13939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2787.8,"last_update":"2026-03-22T09:53:47.368659791Z"} +2026/03/22 09:53:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:53:47.378192382Z"} +2026/03/22 09:53:52 [detection_layer] {"stage_name":"detection_layer","events_processed":464,"events_dropped":0,"avg_latency_ms":17.76019543036977,"throughput_eps":0,"last_update":"2026-03-22T09:53:47.479498838Z"} +2026/03/22 09:53:52 ───────────────────────────────────────────────── +2026/03/22 09:53:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:53:57 [transform_engine] {"stage_name":"transform_engine","events_processed":464,"events_dropped":0,"avg_latency_ms":329.2652398484264,"throughput_eps":0,"last_update":"2026-03-22T09:53:52.478859967Z"} +2026/03/22 09:53:57 [log_collector] {"stage_name":"log_collector","events_processed":21838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.6,"last_update":"2026-03-22T09:53:52.368650938Z"} +2026/03/22 09:53:57 [metric_collector] {"stage_name":"metric_collector","events_processed":13944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2788.8,"last_update":"2026-03-22T09:53:52.369104156Z"} +2026/03/22 09:53:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5580,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:53:52.377723127Z"} +2026/03/22 09:53:57 [detection_layer] {"stage_name":"detection_layer","events_processed":464,"events_dropped":0,"avg_latency_ms":17.76019543036977,"throughput_eps":0,"last_update":"2026-03-22T09:53:52.478967543Z"} +2026/03/22 09:53:57 ───────────────────────────────────────────────── +2026/03/22 09:54:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:54:02 [log_collector] {"stage_name":"log_collector","events_processed":21838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.6,"last_update":"2026-03-22T09:54:02.368544159Z"} +2026/03/22 09:54:02 [metric_collector] {"stage_name":"metric_collector","events_processed":13949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2789.8,"last_update":"2026-03-22T09:53:57.369030017Z"} +2026/03/22 09:54:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:53:57.379236671Z"} +2026/03/22 09:54:02 [detection_layer] {"stage_name":"detection_layer","events_processed":464,"events_dropped":0,"avg_latency_ms":17.76019543036977,"throughput_eps":0,"last_update":"2026-03-22T09:53:57.479625158Z"} +2026/03/22 09:54:02 [transform_engine] {"stage_name":"transform_engine","events_processed":465,"events_dropped":0,"avg_latency_ms":280.3465132787411,"throughput_eps":0,"last_update":"2026-03-22T09:53:57.5641901Z"} +2026/03/22 09:54:02 ───────────────────────────────────────────────── +2026/03/22 09:54:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:54:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:54:02.37974651Z"} +2026/03/22 09:54:07 [detection_layer] {"stage_name":"detection_layer","events_processed":465,"events_dropped":0,"avg_latency_ms":18.909759344295814,"throughput_eps":0,"last_update":"2026-03-22T09:54:02.479961354Z"} +2026/03/22 09:54:07 [transform_engine] {"stage_name":"transform_engine","events_processed":465,"events_dropped":0,"avg_latency_ms":280.3465132787411,"throughput_eps":0,"last_update":"2026-03-22T09:54:02.478849444Z"} +2026/03/22 09:54:07 [log_collector] {"stage_name":"log_collector","events_processed":21838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.6,"last_update":"2026-03-22T09:54:02.368544159Z"} +2026/03/22 09:54:07 [metric_collector] {"stage_name":"metric_collector","events_processed":13954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2790.8,"last_update":"2026-03-22T09:54:02.369470884Z"} +2026/03/22 09:54:07 ───────────────────────────────────────────────── +2026/03/22 09:54:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:54:12 [log_collector] {"stage_name":"log_collector","events_processed":21838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.6,"last_update":"2026-03-22T09:54:12.36871487Z"} +2026/03/22 09:54:12 [metric_collector] {"stage_name":"metric_collector","events_processed":13959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2791.8,"last_update":"2026-03-22T09:54:07.368265357Z"} +2026/03/22 09:54:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5586,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:54:07.377346705Z"} +2026/03/22 09:54:12 [detection_layer] {"stage_name":"detection_layer","events_processed":465,"events_dropped":0,"avg_latency_ms":18.909759344295814,"throughput_eps":0,"last_update":"2026-03-22T09:54:07.479575095Z"} +2026/03/22 09:54:12 [transform_engine] {"stage_name":"transform_engine","events_processed":465,"events_dropped":0,"avg_latency_ms":280.3465132787411,"throughput_eps":0,"last_update":"2026-03-22T09:54:07.479588632Z"} +2026/03/22 09:54:12 ───────────────────────────────────────────────── +2026/03/22 09:54:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:54:17 [transform_engine] {"stage_name":"transform_engine","events_processed":465,"events_dropped":0,"avg_latency_ms":280.3465132787411,"throughput_eps":0,"last_update":"2026-03-22T09:54:12.479750473Z"} +2026/03/22 09:54:17 [log_collector] {"stage_name":"log_collector","events_processed":21838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.6,"last_update":"2026-03-22T09:54:12.36871487Z"} +2026/03/22 09:54:17 [metric_collector] {"stage_name":"metric_collector","events_processed":13964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2792.8,"last_update":"2026-03-22T09:54:12.3689494Z"} +2026/03/22 09:54:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5588,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:54:12.378498513Z"} +2026/03/22 09:54:17 [detection_layer] {"stage_name":"detection_layer","events_processed":465,"events_dropped":0,"avg_latency_ms":18.909759344295814,"throughput_eps":0,"last_update":"2026-03-22T09:54:12.479737578Z"} +2026/03/22 09:54:17 ───────────────────────────────────────────────── +2026/03/22 09:54:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:54:22 [detection_layer] {"stage_name":"detection_layer","events_processed":465,"events_dropped":0,"avg_latency_ms":18.909759344295814,"throughput_eps":0,"last_update":"2026-03-22T09:54:17.478958475Z"} +2026/03/22 09:54:22 [transform_engine] {"stage_name":"transform_engine","events_processed":465,"events_dropped":0,"avg_latency_ms":280.3465132787411,"throughput_eps":0,"last_update":"2026-03-22T09:54:17.478820341Z"} +2026/03/22 09:54:22 [log_collector] {"stage_name":"log_collector","events_processed":21838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.6,"last_update":"2026-03-22T09:54:22.368019999Z"} +2026/03/22 09:54:22 [metric_collector] {"stage_name":"metric_collector","events_processed":13969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2793.8,"last_update":"2026-03-22T09:54:17.368931635Z"} +2026/03/22 09:54:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:54:17.378687153Z"} +2026/03/22 09:54:22 ───────────────────────────────────────────────── +2026/03/22 09:54:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:54:27 [log_collector] {"stage_name":"log_collector","events_processed":21838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.6,"last_update":"2026-03-22T09:54:22.368019999Z"} +2026/03/22 09:54:27 [metric_collector] {"stage_name":"metric_collector","events_processed":13974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2794.8,"last_update":"2026-03-22T09:54:22.368697076Z"} +2026/03/22 09:54:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5592,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:54:22.377692258Z"} +2026/03/22 09:54:27 [detection_layer] {"stage_name":"detection_layer","events_processed":465,"events_dropped":0,"avg_latency_ms":18.909759344295814,"throughput_eps":0,"last_update":"2026-03-22T09:54:22.479975123Z"} +2026/03/22 09:54:27 [transform_engine] {"stage_name":"transform_engine","events_processed":465,"events_dropped":0,"avg_latency_ms":280.3465132787411,"throughput_eps":0,"last_update":"2026-03-22T09:54:22.478825871Z"} +2026/03/22 09:54:27 ───────────────────────────────────────────────── +Saved state: 13 clusters, 21839 messages, reason: none +2026/03/22 09:54:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:54:32 [log_collector] {"stage_name":"log_collector","events_processed":21838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.6,"last_update":"2026-03-22T09:54:27.368802908Z"} +2026/03/22 09:54:32 [metric_collector] {"stage_name":"metric_collector","events_processed":13979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2795.8,"last_update":"2026-03-22T09:54:27.368990748Z"} +2026/03/22 09:54:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:54:27.378750515Z"} +2026/03/22 09:54:32 [detection_layer] {"stage_name":"detection_layer","events_processed":465,"events_dropped":0,"avg_latency_ms":18.909759344295814,"throughput_eps":0,"last_update":"2026-03-22T09:54:27.478958284Z"} +2026/03/22 09:54:32 [transform_engine] {"stage_name":"transform_engine","events_processed":466,"events_dropped":0,"avg_latency_ms":238.4584778229929,"throughput_eps":0,"last_update":"2026-03-22T09:54:27.54984375Z"} +2026/03/22 09:54:32 ───────────────────────────────────────────────── +2026/03/22 09:54:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:54:37 [transform_engine] {"stage_name":"transform_engine","events_processed":466,"events_dropped":0,"avg_latency_ms":238.4584778229929,"throughput_eps":0,"last_update":"2026-03-22T09:54:32.479167775Z"} +2026/03/22 09:54:37 [log_collector] {"stage_name":"log_collector","events_processed":21841,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4368.2,"last_update":"2026-03-22T09:54:32.368466563Z"} +2026/03/22 09:54:37 [metric_collector] {"stage_name":"metric_collector","events_processed":13984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2796.8,"last_update":"2026-03-22T09:54:32.368674061Z"} +2026/03/22 09:54:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:54:32.378969133Z"} +2026/03/22 09:54:37 [detection_layer] {"stage_name":"detection_layer","events_processed":466,"events_dropped":0,"avg_latency_ms":19.596367875436652,"throughput_eps":0,"last_update":"2026-03-22T09:54:32.479141835Z"} +2026/03/22 09:54:37 ───────────────────────────────────────────────── +2026/03/22 09:54:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:54:42 [log_collector] {"stage_name":"log_collector","events_processed":21852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4370.4,"last_update":"2026-03-22T09:54:42.368839415Z"} +2026/03/22 09:54:42 [metric_collector] {"stage_name":"metric_collector","events_processed":13989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2797.8,"last_update":"2026-03-22T09:54:37.368424212Z"} +2026/03/22 09:54:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:54:37.375004588Z"} +2026/03/22 09:54:42 [detection_layer] {"stage_name":"detection_layer","events_processed":466,"events_dropped":0,"avg_latency_ms":19.596367875436652,"throughput_eps":0,"last_update":"2026-03-22T09:54:37.479188724Z"} +2026/03/22 09:54:42 [transform_engine] {"stage_name":"transform_engine","events_processed":466,"events_dropped":0,"avg_latency_ms":238.4584778229929,"throughput_eps":0,"last_update":"2026-03-22T09:54:37.479215075Z"} +2026/03/22 09:54:42 ───────────────────────────────────────────────── +2026/03/22 09:54:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:54:47 [transform_engine] {"stage_name":"transform_engine","events_processed":466,"events_dropped":0,"avg_latency_ms":238.4584778229929,"throughput_eps":0,"last_update":"2026-03-22T09:54:42.479441006Z"} +2026/03/22 09:54:47 [log_collector] {"stage_name":"log_collector","events_processed":21866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4373.2,"last_update":"2026-03-22T09:54:47.369142085Z"} +2026/03/22 09:54:47 [metric_collector] {"stage_name":"metric_collector","events_processed":13999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2799.8,"last_update":"2026-03-22T09:54:47.369067272Z"} +2026/03/22 09:54:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:54:42.377194903Z"} +2026/03/22 09:54:47 [detection_layer] {"stage_name":"detection_layer","events_processed":466,"events_dropped":0,"avg_latency_ms":19.596367875436652,"throughput_eps":0,"last_update":"2026-03-22T09:54:42.479414966Z"} +2026/03/22 09:54:47 ───────────────────────────────────────────────── +2026/03/22 09:54:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:54:52 [log_collector] {"stage_name":"log_collector","events_processed":21868,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4373.6,"last_update":"2026-03-22T09:54:52.368672034Z"} +2026/03/22 09:54:52 [metric_collector] {"stage_name":"metric_collector","events_processed":13999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2799.8,"last_update":"2026-03-22T09:54:47.369067272Z"} +2026/03/22 09:54:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5602,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:54:47.378255534Z"} +2026/03/22 09:54:52 [detection_layer] {"stage_name":"detection_layer","events_processed":466,"events_dropped":0,"avg_latency_ms":19.596367875436652,"throughput_eps":0,"last_update":"2026-03-22T09:54:47.479477244Z"} +2026/03/22 09:54:52 [transform_engine] {"stage_name":"transform_engine","events_processed":466,"events_dropped":0,"avg_latency_ms":238.4584778229929,"throughput_eps":0,"last_update":"2026-03-22T09:54:47.479524415Z"} +2026/03/22 09:54:52 ───────────────────────────────────────────────── +2026/03/22 09:54:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:54:57 [metric_collector] {"stage_name":"metric_collector","events_processed":14004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2800.8,"last_update":"2026-03-22T09:54:52.36909808Z"} +2026/03/22 09:54:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:54:52.376799343Z"} +2026/03/22 09:54:57 [detection_layer] {"stage_name":"detection_layer","events_processed":466,"events_dropped":0,"avg_latency_ms":19.596367875436652,"throughput_eps":0,"last_update":"2026-03-22T09:54:52.478954131Z"} +2026/03/22 09:54:57 [transform_engine] {"stage_name":"transform_engine","events_processed":466,"events_dropped":0,"avg_latency_ms":238.4584778229929,"throughput_eps":0,"last_update":"2026-03-22T09:54:52.478886812Z"} +2026/03/22 09:54:57 [log_collector] {"stage_name":"log_collector","events_processed":21868,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4373.6,"last_update":"2026-03-22T09:54:52.368672034Z"} +2026/03/22 09:54:57 ───────────────────────────────────────────────── +2026/03/22 09:55:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:55:02 [transform_engine] {"stage_name":"transform_engine","events_processed":467,"events_dropped":0,"avg_latency_ms":218.18935545839435,"throughput_eps":0,"last_update":"2026-03-22T09:54:57.616537639Z"} +2026/03/22 09:55:02 [log_collector] {"stage_name":"log_collector","events_processed":21882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4376.4,"last_update":"2026-03-22T09:55:02.368523218Z"} +2026/03/22 09:55:02 [metric_collector] {"stage_name":"metric_collector","events_processed":14009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2801.8,"last_update":"2026-03-22T09:54:57.368657726Z"} +2026/03/22 09:55:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:54:57.376094002Z"} +2026/03/22 09:55:02 [detection_layer] {"stage_name":"detection_layer","events_processed":466,"events_dropped":0,"avg_latency_ms":19.596367875436652,"throughput_eps":0,"last_update":"2026-03-22T09:54:57.479465229Z"} +2026/03/22 09:55:02 ───────────────────────────────────────────────── +2026/03/22 09:55:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:55:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:55:02.376181399Z"} +2026/03/22 09:55:07 [detection_layer] {"stage_name":"detection_layer","events_processed":467,"events_dropped":0,"avg_latency_ms":18.435791100349324,"throughput_eps":0,"last_update":"2026-03-22T09:55:02.479584347Z"} +2026/03/22 09:55:07 [transform_engine] {"stage_name":"transform_engine","events_processed":467,"events_dropped":0,"avg_latency_ms":218.18935545839435,"throughput_eps":0,"last_update":"2026-03-22T09:55:02.479553799Z"} +2026/03/22 09:55:07 [log_collector] {"stage_name":"log_collector","events_processed":21882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4376.4,"last_update":"2026-03-22T09:55:02.368523218Z"} +2026/03/22 09:55:07 [metric_collector] {"stage_name":"metric_collector","events_processed":14014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2802.8,"last_update":"2026-03-22T09:55:02.369059365Z"} +2026/03/22 09:55:07 ───────────────────────────────────────────────── +2026/03/22 09:55:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:55:12 [log_collector] {"stage_name":"log_collector","events_processed":21882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4376.4,"last_update":"2026-03-22T09:55:07.368019162Z"} +2026/03/22 09:55:12 [metric_collector] {"stage_name":"metric_collector","events_processed":14019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2803.8,"last_update":"2026-03-22T09:55:07.368321822Z"} +2026/03/22 09:55:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:55:07.376700764Z"} +2026/03/22 09:55:12 [detection_layer] {"stage_name":"detection_layer","events_processed":467,"events_dropped":0,"avg_latency_ms":18.435791100349324,"throughput_eps":0,"last_update":"2026-03-22T09:55:07.478952698Z"} +2026/03/22 09:55:12 [transform_engine] {"stage_name":"transform_engine","events_processed":467,"events_dropped":0,"avg_latency_ms":218.18935545839435,"throughput_eps":0,"last_update":"2026-03-22T09:55:07.478872583Z"} +2026/03/22 09:55:12 ───────────────────────────────────────────────── +2026/03/22 09:55:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:55:17 [detection_layer] {"stage_name":"detection_layer","events_processed":467,"events_dropped":0,"avg_latency_ms":18.435791100349324,"throughput_eps":0,"last_update":"2026-03-22T09:55:12.47923068Z"} +2026/03/22 09:55:17 [transform_engine] {"stage_name":"transform_engine","events_processed":467,"events_dropped":0,"avg_latency_ms":218.18935545839435,"throughput_eps":0,"last_update":"2026-03-22T09:55:12.479140106Z"} +2026/03/22 09:55:17 [log_collector] {"stage_name":"log_collector","events_processed":21882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4376.4,"last_update":"2026-03-22T09:55:12.368161384Z"} +2026/03/22 09:55:17 [metric_collector] {"stage_name":"metric_collector","events_processed":14024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2804.8,"last_update":"2026-03-22T09:55:12.368526604Z"} +2026/03/22 09:55:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:55:12.377026839Z"} +2026/03/22 09:55:17 ───────────────────────────────────────────────── +2026/03/22 09:55:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:55:22 [log_collector] {"stage_name":"log_collector","events_processed":21882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4376.4,"last_update":"2026-03-22T09:55:17.368550019Z"} +2026/03/22 09:55:22 [metric_collector] {"stage_name":"metric_collector","events_processed":14029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2805.8,"last_update":"2026-03-22T09:55:17.368994891Z"} +2026/03/22 09:55:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:55:17.375746896Z"} +2026/03/22 09:55:22 [detection_layer] {"stage_name":"detection_layer","events_processed":467,"events_dropped":0,"avg_latency_ms":18.435791100349324,"throughput_eps":0,"last_update":"2026-03-22T09:55:17.478998184Z"} +2026/03/22 09:55:22 [transform_engine] {"stage_name":"transform_engine","events_processed":467,"events_dropped":0,"avg_latency_ms":218.18935545839435,"throughput_eps":0,"last_update":"2026-03-22T09:55:17.478964048Z"} +2026/03/22 09:55:22 ───────────────────────────────────────────────── +2026/03/22 09:55:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:55:27 [metric_collector] {"stage_name":"metric_collector","events_processed":14034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2806.8,"last_update":"2026-03-22T09:55:22.36895221Z"} +2026/03/22 09:55:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:55:22.377278923Z"} +2026/03/22 09:55:27 [detection_layer] {"stage_name":"detection_layer","events_processed":467,"events_dropped":0,"avg_latency_ms":18.435791100349324,"throughput_eps":0,"last_update":"2026-03-22T09:55:22.479610758Z"} +2026/03/22 09:55:27 [transform_engine] {"stage_name":"transform_engine","events_processed":467,"events_dropped":0,"avg_latency_ms":218.18935545839435,"throughput_eps":0,"last_update":"2026-03-22T09:55:22.479554631Z"} +2026/03/22 09:55:27 [log_collector] {"stage_name":"log_collector","events_processed":21882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4376.4,"last_update":"2026-03-22T09:55:22.368503371Z"} +2026/03/22 09:55:27 ───────────────────────────────────────────────── +2026/03/22 09:55:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:55:32 [detection_layer] {"stage_name":"detection_layer","events_processed":467,"events_dropped":0,"avg_latency_ms":18.435791100349324,"throughput_eps":0,"last_update":"2026-03-22T09:55:27.480488131Z"} +2026/03/22 09:55:32 [transform_engine] {"stage_name":"transform_engine","events_processed":468,"events_dropped":0,"avg_latency_ms":197.7539613667155,"throughput_eps":0,"last_update":"2026-03-22T09:55:27.595140199Z"} +2026/03/22 09:55:32 [log_collector] {"stage_name":"log_collector","events_processed":21882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4376.4,"last_update":"2026-03-22T09:55:27.36805801Z"} +2026/03/22 09:55:32 [metric_collector] {"stage_name":"metric_collector","events_processed":14039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2807.8,"last_update":"2026-03-22T09:55:27.368321735Z"} +2026/03/22 09:55:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:55:27.377816354Z"} +2026/03/22 09:55:32 ───────────────────────────────────────────────── +2026/03/22 09:55:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:55:37 [log_collector] {"stage_name":"log_collector","events_processed":21882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4376.4,"last_update":"2026-03-22T09:55:32.368101698Z"} +2026/03/22 09:55:37 [metric_collector] {"stage_name":"metric_collector","events_processed":14044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2808.8,"last_update":"2026-03-22T09:55:32.368714031Z"} +2026/03/22 09:55:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5620,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:55:32.376961821Z"} +2026/03/22 09:55:37 [detection_layer] {"stage_name":"detection_layer","events_processed":468,"events_dropped":0,"avg_latency_ms":19.47394688027946,"throughput_eps":0,"last_update":"2026-03-22T09:55:32.479433033Z"} +2026/03/22 09:55:37 [transform_engine] {"stage_name":"transform_engine","events_processed":468,"events_dropped":0,"avg_latency_ms":197.7539613667155,"throughput_eps":0,"last_update":"2026-03-22T09:55:32.479464894Z"} +2026/03/22 09:55:37 ───────────────────────────────────────────────── +2026/03/22 09:55:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:55:42 [log_collector] {"stage_name":"log_collector","events_processed":21882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4376.4,"last_update":"2026-03-22T09:55:37.367983235Z"} +2026/03/22 09:55:42 [metric_collector] {"stage_name":"metric_collector","events_processed":14049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2809.8,"last_update":"2026-03-22T09:55:37.36838754Z"} +2026/03/22 09:55:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5622,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:55:37.377465049Z"} +2026/03/22 09:55:42 [detection_layer] {"stage_name":"detection_layer","events_processed":468,"events_dropped":0,"avg_latency_ms":19.47394688027946,"throughput_eps":0,"last_update":"2026-03-22T09:55:37.479671494Z"} +2026/03/22 09:55:42 [transform_engine] {"stage_name":"transform_engine","events_processed":468,"events_dropped":0,"avg_latency_ms":197.7539613667155,"throughput_eps":0,"last_update":"2026-03-22T09:55:37.479620085Z"} +2026/03/22 09:55:42 ───────────────────────────────────────────────── +2026/03/22 09:55:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:55:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:55:42.375767414Z"} +2026/03/22 09:55:47 [detection_layer] {"stage_name":"detection_layer","events_processed":468,"events_dropped":0,"avg_latency_ms":19.47394688027946,"throughput_eps":0,"last_update":"2026-03-22T09:55:42.478957172Z"} +2026/03/22 09:55:47 [transform_engine] {"stage_name":"transform_engine","events_processed":468,"events_dropped":0,"avg_latency_ms":197.7539613667155,"throughput_eps":0,"last_update":"2026-03-22T09:55:42.478899782Z"} +2026/03/22 09:55:47 [log_collector] {"stage_name":"log_collector","events_processed":21882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4376.4,"last_update":"2026-03-22T09:55:42.368200157Z"} +2026/03/22 09:55:47 [metric_collector] {"stage_name":"metric_collector","events_processed":14054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2810.8,"last_update":"2026-03-22T09:55:42.36859333Z"} +2026/03/22 09:55:47 ───────────────────────────────────────────────── +2026/03/22 09:55:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:55:52 [metric_collector] {"stage_name":"metric_collector","events_processed":14059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2811.8,"last_update":"2026-03-22T09:55:47.368142041Z"} +2026/03/22 09:55:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:55:47.377345142Z"} +2026/03/22 09:55:52 [detection_layer] {"stage_name":"detection_layer","events_processed":468,"events_dropped":0,"avg_latency_ms":19.47394688027946,"throughput_eps":0,"last_update":"2026-03-22T09:55:47.479554141Z"} +2026/03/22 09:55:52 [transform_engine] {"stage_name":"transform_engine","events_processed":468,"events_dropped":0,"avg_latency_ms":197.7539613667155,"throughput_eps":0,"last_update":"2026-03-22T09:55:47.479608014Z"} +2026/03/22 09:55:52 [log_collector] {"stage_name":"log_collector","events_processed":21882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4376.4,"last_update":"2026-03-22T09:55:47.367961545Z"} +2026/03/22 09:55:52 ───────────────────────────────────────────────── +2026/03/22 09:55:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:55:57 [detection_layer] {"stage_name":"detection_layer","events_processed":468,"events_dropped":0,"avg_latency_ms":19.47394688027946,"throughput_eps":0,"last_update":"2026-03-22T09:55:52.479554619Z"} +2026/03/22 09:55:57 [transform_engine] {"stage_name":"transform_engine","events_processed":468,"events_dropped":0,"avg_latency_ms":197.7539613667155,"throughput_eps":0,"last_update":"2026-03-22T09:55:52.479591479Z"} +2026/03/22 09:55:57 [log_collector] {"stage_name":"log_collector","events_processed":21882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4376.4,"last_update":"2026-03-22T09:55:52.368452453Z"} +2026/03/22 09:55:57 [metric_collector] {"stage_name":"metric_collector","events_processed":14064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2812.8,"last_update":"2026-03-22T09:55:52.368865274Z"} +2026/03/22 09:55:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:55:52.375287467Z"} +2026/03/22 09:55:57 ───────────────────────────────────────────────── +2026/03/22 09:56:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:56:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:55:57.377538088Z"} +2026/03/22 09:56:02 [detection_layer] {"stage_name":"detection_layer","events_processed":468,"events_dropped":0,"avg_latency_ms":19.47394688027946,"throughput_eps":0,"last_update":"2026-03-22T09:55:57.480519988Z"} +2026/03/22 09:56:02 [transform_engine] {"stage_name":"transform_engine","events_processed":469,"events_dropped":0,"avg_latency_ms":172.6330340933724,"throughput_eps":0,"last_update":"2026-03-22T09:55:57.551970594Z"} +2026/03/22 09:56:02 [log_collector] {"stage_name":"log_collector","events_processed":21882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4376.4,"last_update":"2026-03-22T09:55:57.368079428Z"} +2026/03/22 09:56:02 [metric_collector] {"stage_name":"metric_collector","events_processed":14069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2813.8,"last_update":"2026-03-22T09:55:57.368826058Z"} +2026/03/22 09:56:02 ───────────────────────────────────────────────── +Saved state: 13 clusters, 21883 messages, reason: none +2026/03/22 09:56:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:56:07 [detection_layer] {"stage_name":"detection_layer","events_processed":469,"events_dropped":0,"avg_latency_ms":20.06741750422357,"throughput_eps":0,"last_update":"2026-03-22T09:56:02.479958893Z"} +2026/03/22 09:56:07 [transform_engine] {"stage_name":"transform_engine","events_processed":469,"events_dropped":0,"avg_latency_ms":172.6330340933724,"throughput_eps":0,"last_update":"2026-03-22T09:56:02.478876309Z"} +2026/03/22 09:56:07 [log_collector] {"stage_name":"log_collector","events_processed":21887,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4377.4,"last_update":"2026-03-22T09:56:07.368388451Z"} +2026/03/22 09:56:07 [metric_collector] {"stage_name":"metric_collector","events_processed":14074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2814.8,"last_update":"2026-03-22T09:56:02.368412556Z"} +2026/03/22 09:56:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5632,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:56:02.375760312Z"} +2026/03/22 09:56:07 ───────────────────────────────────────────────── +2026/03/22 09:56:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:56:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:56:07.377849025Z"} +2026/03/22 09:56:12 [detection_layer] {"stage_name":"detection_layer","events_processed":469,"events_dropped":0,"avg_latency_ms":20.06741750422357,"throughput_eps":0,"last_update":"2026-03-22T09:56:07.479063709Z"} +2026/03/22 09:56:12 [transform_engine] {"stage_name":"transform_engine","events_processed":469,"events_dropped":0,"avg_latency_ms":172.6330340933724,"throughput_eps":0,"last_update":"2026-03-22T09:56:07.479103506Z"} +2026/03/22 09:56:12 [log_collector] {"stage_name":"log_collector","events_processed":21887,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4377.4,"last_update":"2026-03-22T09:56:12.368185596Z"} +2026/03/22 09:56:12 [metric_collector] {"stage_name":"metric_collector","events_processed":14079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2815.8,"last_update":"2026-03-22T09:56:07.368750936Z"} +2026/03/22 09:56:12 ───────────────────────────────────────────────── +2026/03/22 09:56:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:56:17 [metric_collector] {"stage_name":"metric_collector","events_processed":14084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2816.8,"last_update":"2026-03-22T09:56:12.36885592Z"} +2026/03/22 09:56:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:56:12.37473945Z"} +2026/03/22 09:56:17 [detection_layer] {"stage_name":"detection_layer","events_processed":469,"events_dropped":0,"avg_latency_ms":20.06741750422357,"throughput_eps":0,"last_update":"2026-03-22T09:56:12.480248682Z"} +2026/03/22 09:56:17 [transform_engine] {"stage_name":"transform_engine","events_processed":469,"events_dropped":0,"avg_latency_ms":172.6330340933724,"throughput_eps":0,"last_update":"2026-03-22T09:56:12.478879118Z"} +2026/03/22 09:56:17 [log_collector] {"stage_name":"log_collector","events_processed":21887,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4377.4,"last_update":"2026-03-22T09:56:12.368185596Z"} +2026/03/22 09:56:17 ───────────────────────────────────────────────── +2026/03/22 09:56:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:56:22 [log_collector] {"stage_name":"log_collector","events_processed":21887,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4377.4,"last_update":"2026-03-22T09:56:17.368731015Z"} +2026/03/22 09:56:22 [metric_collector] {"stage_name":"metric_collector","events_processed":14089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2817.8,"last_update":"2026-03-22T09:56:17.368955535Z"} +2026/03/22 09:56:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:56:17.384317745Z"} +2026/03/22 09:56:22 [detection_layer] {"stage_name":"detection_layer","events_processed":469,"events_dropped":0,"avg_latency_ms":20.06741750422357,"throughput_eps":0,"last_update":"2026-03-22T09:56:17.47951972Z"} +2026/03/22 09:56:22 [transform_engine] {"stage_name":"transform_engine","events_processed":469,"events_dropped":0,"avg_latency_ms":172.6330340933724,"throughput_eps":0,"last_update":"2026-03-22T09:56:17.479500673Z"} +2026/03/22 09:56:22 ───────────────────────────────────────────────── +2026/03/22 09:56:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:56:27 [transform_engine] {"stage_name":"transform_engine","events_processed":469,"events_dropped":0,"avg_latency_ms":172.6330340933724,"throughput_eps":0,"last_update":"2026-03-22T09:56:22.479519766Z"} +2026/03/22 09:56:27 [log_collector] {"stage_name":"log_collector","events_processed":21887,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4377.4,"last_update":"2026-03-22T09:56:22.367961818Z"} +2026/03/22 09:56:27 [metric_collector] {"stage_name":"metric_collector","events_processed":14094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2818.8,"last_update":"2026-03-22T09:56:22.368203541Z"} +2026/03/22 09:56:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5640,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:56:22.376418217Z"} +2026/03/22 09:56:27 [detection_layer] {"stage_name":"detection_layer","events_processed":469,"events_dropped":0,"avg_latency_ms":20.06741750422357,"throughput_eps":0,"last_update":"2026-03-22T09:56:22.479481192Z"} +2026/03/22 09:56:27 ───────────────────────────────────────────────── +2026/03/22 09:56:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:56:32 [metric_collector] {"stage_name":"metric_collector","events_processed":14099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2819.8,"last_update":"2026-03-22T09:56:27.368289423Z"} +2026/03/22 09:56:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5640,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:56:27.368048331Z"} +2026/03/22 09:56:32 [detection_layer] {"stage_name":"detection_layer","events_processed":469,"events_dropped":0,"avg_latency_ms":20.06741750422357,"throughput_eps":0,"last_update":"2026-03-22T09:56:27.479437475Z"} +2026/03/22 09:56:32 [transform_engine] {"stage_name":"transform_engine","events_processed":470,"events_dropped":0,"avg_latency_ms":551.5947908746979,"throughput_eps":0,"last_update":"2026-03-22T09:56:29.546638542Z"} +2026/03/22 09:56:32 [log_collector] {"stage_name":"log_collector","events_processed":21887,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4377.4,"last_update":"2026-03-22T09:56:27.36794894Z"} +2026/03/22 09:56:32 ───────────────────────────────────────────────── +2026/03/22 09:56:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:56:37 [detection_layer] {"stage_name":"detection_layer","events_processed":470,"events_dropped":0,"avg_latency_ms":17.921119003378855,"throughput_eps":0,"last_update":"2026-03-22T09:56:32.479984653Z"} +2026/03/22 09:56:37 [transform_engine] {"stage_name":"transform_engine","events_processed":470,"events_dropped":0,"avg_latency_ms":551.5947908746979,"throughput_eps":0,"last_update":"2026-03-22T09:56:32.478873374Z"} +2026/03/22 09:56:37 [log_collector] {"stage_name":"log_collector","events_processed":21887,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4377.4,"last_update":"2026-03-22T09:56:37.368397772Z"} +2026/03/22 09:56:37 [metric_collector] {"stage_name":"metric_collector","events_processed":14104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2820.8,"last_update":"2026-03-22T09:56:32.368323467Z"} +2026/03/22 09:56:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:56:32.375440211Z"} +2026/03/22 09:56:37 ───────────────────────────────────────────────── +2026/03/22 09:56:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:56:42 [log_collector] {"stage_name":"log_collector","events_processed":21887,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4377.4,"last_update":"2026-03-22T09:56:37.368397772Z"} +2026/03/22 09:56:42 [metric_collector] {"stage_name":"metric_collector","events_processed":14109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2821.8,"last_update":"2026-03-22T09:56:37.368951933Z"} +2026/03/22 09:56:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5646,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:56:37.37532461Z"} +2026/03/22 09:56:42 [detection_layer] {"stage_name":"detection_layer","events_processed":470,"events_dropped":0,"avg_latency_ms":17.921119003378855,"throughput_eps":0,"last_update":"2026-03-22T09:56:37.479527739Z"} +2026/03/22 09:56:42 [transform_engine] {"stage_name":"transform_engine","events_processed":470,"events_dropped":0,"avg_latency_ms":551.5947908746979,"throughput_eps":0,"last_update":"2026-03-22T09:56:37.479555192Z"} +2026/03/22 09:56:42 ───────────────────────────────────────────────── +2026/03/22 09:56:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:56:47 [log_collector] {"stage_name":"log_collector","events_processed":21887,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4377.4,"last_update":"2026-03-22T09:56:42.367954535Z"} +2026/03/22 09:56:47 [metric_collector] {"stage_name":"metric_collector","events_processed":14114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2822.8,"last_update":"2026-03-22T09:56:42.368287664Z"} +2026/03/22 09:56:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:56:42.377293235Z"} +2026/03/22 09:56:47 [detection_layer] {"stage_name":"detection_layer","events_processed":470,"events_dropped":0,"avg_latency_ms":17.921119003378855,"throughput_eps":0,"last_update":"2026-03-22T09:56:42.479437689Z"} +2026/03/22 09:56:47 [transform_engine] {"stage_name":"transform_engine","events_processed":470,"events_dropped":0,"avg_latency_ms":551.5947908746979,"throughput_eps":0,"last_update":"2026-03-22T09:56:42.479456996Z"} +2026/03/22 09:56:47 ───────────────────────────────────────────────── +2026/03/22 09:56:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:56:52 [log_collector] {"stage_name":"log_collector","events_processed":21890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4378,"last_update":"2026-03-22T09:56:47.367968779Z"} +2026/03/22 09:56:52 [metric_collector] {"stage_name":"metric_collector","events_processed":14119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2823.8,"last_update":"2026-03-22T09:56:47.368145097Z"} +2026/03/22 09:56:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5650,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:56:47.375129917Z"} +2026/03/22 09:56:52 [detection_layer] {"stage_name":"detection_layer","events_processed":470,"events_dropped":0,"avg_latency_ms":17.921119003378855,"throughput_eps":0,"last_update":"2026-03-22T09:56:47.479369234Z"} +2026/03/22 09:56:52 [transform_engine] {"stage_name":"transform_engine","events_processed":470,"events_dropped":0,"avg_latency_ms":551.5947908746979,"throughput_eps":0,"last_update":"2026-03-22T09:56:47.479356951Z"} +2026/03/22 09:56:52 ───────────────────────────────────────────────── +2026/03/22 09:56:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:56:57 [log_collector] {"stage_name":"log_collector","events_processed":21898,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4379.6,"last_update":"2026-03-22T09:56:52.3680798Z"} +2026/03/22 09:56:57 [metric_collector] {"stage_name":"metric_collector","events_processed":14124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2824.8,"last_update":"2026-03-22T09:56:52.368616729Z"} +2026/03/22 09:56:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:56:52.376783864Z"} +2026/03/22 09:56:57 [detection_layer] {"stage_name":"detection_layer","events_processed":470,"events_dropped":0,"avg_latency_ms":17.921119003378855,"throughput_eps":0,"last_update":"2026-03-22T09:56:52.47898158Z"} +2026/03/22 09:56:57 [transform_engine] {"stage_name":"transform_engine","events_processed":470,"events_dropped":0,"avg_latency_ms":551.5947908746979,"throughput_eps":0,"last_update":"2026-03-22T09:56:52.478928218Z"} +2026/03/22 09:56:57 ───────────────────────────────────────────────── +2026/03/22 09:57:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:57:02 [log_collector] {"stage_name":"log_collector","events_processed":21950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4390,"last_update":"2026-03-22T09:56:57.368551486Z"} +2026/03/22 09:57:02 [metric_collector] {"stage_name":"metric_collector","events_processed":14129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2825.8,"last_update":"2026-03-22T09:56:57.368958084Z"} +2026/03/22 09:57:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:56:57.375792456Z"} +2026/03/22 09:57:02 [detection_layer] {"stage_name":"detection_layer","events_processed":470,"events_dropped":0,"avg_latency_ms":17.921119003378855,"throughput_eps":0,"last_update":"2026-03-22T09:56:57.480551178Z"} +2026/03/22 09:57:02 [transform_engine] {"stage_name":"transform_engine","events_processed":471,"events_dropped":0,"avg_latency_ms":763.2150758997584,"throughput_eps":0,"last_update":"2026-03-22T09:56:59.089132207Z"} +2026/03/22 09:57:02 ───────────────────────────────────────────────── +2026/03/22 09:57:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:57:07 [log_collector] {"stage_name":"log_collector","events_processed":22163,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4432.6,"last_update":"2026-03-22T09:57:02.3688701Z"} +2026/03/22 09:57:07 [metric_collector] {"stage_name":"metric_collector","events_processed":14134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2826.8,"last_update":"2026-03-22T09:57:02.369077587Z"} +2026/03/22 09:57:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:57:02.374818053Z"} +2026/03/22 09:57:07 [detection_layer] {"stage_name":"detection_layer","events_processed":471,"events_dropped":0,"avg_latency_ms":17.995019002703085,"throughput_eps":0,"last_update":"2026-03-22T09:57:02.479818228Z"} +2026/03/22 09:57:07 [transform_engine] {"stage_name":"transform_engine","events_processed":471,"events_dropped":0,"avg_latency_ms":763.2150758997584,"throughput_eps":0,"last_update":"2026-03-22T09:57:02.479790544Z"} +2026/03/22 09:57:07 ───────────────────────────────────────────────── +2026/03/22 09:57:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:57:12 [transform_engine] {"stage_name":"transform_engine","events_processed":471,"events_dropped":0,"avg_latency_ms":763.2150758997584,"throughput_eps":0,"last_update":"2026-03-22T09:57:07.479337813Z"} +2026/03/22 09:57:12 [log_collector] {"stage_name":"log_collector","events_processed":22250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4450,"last_update":"2026-03-22T09:57:07.368015337Z"} +2026/03/22 09:57:12 [metric_collector] {"stage_name":"metric_collector","events_processed":14139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2827.8,"last_update":"2026-03-22T09:57:07.368838754Z"} +2026/03/22 09:57:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:57:07.378167536Z"} +2026/03/22 09:57:12 [detection_layer] {"stage_name":"detection_layer","events_processed":471,"events_dropped":0,"avg_latency_ms":17.995019002703085,"throughput_eps":0,"last_update":"2026-03-22T09:57:07.479324427Z"} +2026/03/22 09:57:12 ───────────────────────────────────────────────── +Saved state: 13 clusters, 22251 messages, reason: none +2026/03/22 09:57:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:57:17 [log_collector] {"stage_name":"log_collector","events_processed":22250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4450,"last_update":"2026-03-22T09:57:12.368979432Z"} +2026/03/22 09:57:17 [metric_collector] {"stage_name":"metric_collector","events_processed":14144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2828.8,"last_update":"2026-03-22T09:57:12.36918677Z"} +2026/03/22 09:57:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5660,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:57:12.377154794Z"} +2026/03/22 09:57:17 [detection_layer] {"stage_name":"detection_layer","events_processed":471,"events_dropped":0,"avg_latency_ms":17.995019002703085,"throughput_eps":0,"last_update":"2026-03-22T09:57:12.47940022Z"} +2026/03/22 09:57:17 [transform_engine] {"stage_name":"transform_engine","events_processed":471,"events_dropped":0,"avg_latency_ms":763.2150758997584,"throughput_eps":0,"last_update":"2026-03-22T09:57:12.479413706Z"} +2026/03/22 09:57:17 ───────────────────────────────────────────────── +2026/03/22 09:57:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:57:22 [metric_collector] {"stage_name":"metric_collector","events_processed":14149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2829.8,"last_update":"2026-03-22T09:57:17.368177518Z"} +2026/03/22 09:57:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5662,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:57:17.373977879Z"} +2026/03/22 09:57:22 [detection_layer] {"stage_name":"detection_layer","events_processed":471,"events_dropped":0,"avg_latency_ms":17.995019002703085,"throughput_eps":0,"last_update":"2026-03-22T09:57:17.479450889Z"} +2026/03/22 09:57:22 [transform_engine] {"stage_name":"transform_engine","events_processed":471,"events_dropped":0,"avg_latency_ms":763.2150758997584,"throughput_eps":0,"last_update":"2026-03-22T09:57:17.479462752Z"} +2026/03/22 09:57:22 [log_collector] {"stage_name":"log_collector","events_processed":22253,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4450.6,"last_update":"2026-03-22T09:57:17.367978517Z"} +2026/03/22 09:57:22 ───────────────────────────────────────────────── +2026/03/22 09:57:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:57:27 [detection_layer] {"stage_name":"detection_layer","events_processed":471,"events_dropped":0,"avg_latency_ms":17.995019002703085,"throughput_eps":0,"last_update":"2026-03-22T09:57:22.479619244Z"} +2026/03/22 09:57:27 [transform_engine] {"stage_name":"transform_engine","events_processed":471,"events_dropped":0,"avg_latency_ms":763.2150758997584,"throughput_eps":0,"last_update":"2026-03-22T09:57:22.479634242Z"} +2026/03/22 09:57:27 [log_collector] {"stage_name":"log_collector","events_processed":22253,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4450.6,"last_update":"2026-03-22T09:57:22.367962088Z"} +2026/03/22 09:57:27 [metric_collector] {"stage_name":"metric_collector","events_processed":14154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2830.8,"last_update":"2026-03-22T09:57:22.368117746Z"} +2026/03/22 09:57:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:57:22.37437364Z"} +2026/03/22 09:57:27 ───────────────────────────────────────────────── +2026/03/22 09:57:27 [ANOMALY] time=2026-03-22T09:57:27Z score=0.7938 method=SEAD details=MAD!:w=0.52,s=0.69 RRCF-fast!:w=0.12,s=0.94 RRCF-mid!:w=0.11,s=0.95 RRCF-slow!:w=0.10,s=0.89 COPOD!:w=0.15,s=0.87 +2026/03/22 09:57:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:57:32 [log_collector] {"stage_name":"log_collector","events_processed":22264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4452.8,"last_update":"2026-03-22T09:57:27.368141607Z"} +2026/03/22 09:57:32 [metric_collector] {"stage_name":"metric_collector","events_processed":14159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2831.8,"last_update":"2026-03-22T09:57:27.368719103Z"} +2026/03/22 09:57:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:57:27.376803801Z"} +2026/03/22 09:57:32 [detection_layer] {"stage_name":"detection_layer","events_processed":471,"events_dropped":0,"avg_latency_ms":17.995019002703085,"throughput_eps":0,"last_update":"2026-03-22T09:57:27.479016614Z"} +2026/03/22 09:57:32 [transform_engine] {"stage_name":"transform_engine","events_processed":472,"events_dropped":0,"avg_latency_ms":627.7733261198067,"throughput_eps":0,"last_update":"2026-03-22T09:57:27.565034885Z"} +2026/03/22 09:57:32 ───────────────────────────────────────────────── +2026/03/22 09:57:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:57:37 [detection_layer] {"stage_name":"detection_layer","events_processed":472,"events_dropped":0,"avg_latency_ms":18.13093400216247,"throughput_eps":0,"last_update":"2026-03-22T09:57:32.479162562Z"} +2026/03/22 09:57:37 [transform_engine] {"stage_name":"transform_engine","events_processed":472,"events_dropped":0,"avg_latency_ms":627.7733261198067,"throughput_eps":0,"last_update":"2026-03-22T09:57:32.479171659Z"} +2026/03/22 09:57:37 [log_collector] {"stage_name":"log_collector","events_processed":22280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4456,"last_update":"2026-03-22T09:57:32.368558473Z"} +2026/03/22 09:57:37 [metric_collector] {"stage_name":"metric_collector","events_processed":14164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2832.8,"last_update":"2026-03-22T09:57:32.368897353Z"} +2026/03/22 09:57:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5668,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:57:32.377996924Z"} +2026/03/22 09:57:37 ───────────────────────────────────────────────── +2026/03/22 09:57:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:57:42 [log_collector] {"stage_name":"log_collector","events_processed":22280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4456,"last_update":"2026-03-22T09:57:37.368702279Z"} +2026/03/22 09:57:42 [metric_collector] {"stage_name":"metric_collector","events_processed":14169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2833.8,"last_update":"2026-03-22T09:57:37.369056639Z"} +2026/03/22 09:57:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5670,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:57:37.377313797Z"} +2026/03/22 09:57:42 [detection_layer] {"stage_name":"detection_layer","events_processed":472,"events_dropped":0,"avg_latency_ms":18.13093400216247,"throughput_eps":0,"last_update":"2026-03-22T09:57:37.479501742Z"} +2026/03/22 09:57:42 [transform_engine] {"stage_name":"transform_engine","events_processed":472,"events_dropped":0,"avg_latency_ms":627.7733261198067,"throughput_eps":0,"last_update":"2026-03-22T09:57:37.479518364Z"} +2026/03/22 09:57:42 ───────────────────────────────────────────────── +2026/03/22 09:57:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:57:47 [log_collector] {"stage_name":"log_collector","events_processed":22280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4456,"last_update":"2026-03-22T09:57:42.368627601Z"} +2026/03/22 09:57:47 [metric_collector] {"stage_name":"metric_collector","events_processed":14174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2834.8,"last_update":"2026-03-22T09:57:42.368892609Z"} +2026/03/22 09:57:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:57:42.377191786Z"} +2026/03/22 09:57:47 [detection_layer] {"stage_name":"detection_layer","events_processed":472,"events_dropped":0,"avg_latency_ms":18.13093400216247,"throughput_eps":0,"last_update":"2026-03-22T09:57:42.479569055Z"} +2026/03/22 09:57:47 [transform_engine] {"stage_name":"transform_engine","events_processed":472,"events_dropped":0,"avg_latency_ms":627.7733261198067,"throughput_eps":0,"last_update":"2026-03-22T09:57:42.479551683Z"} +2026/03/22 09:57:47 ───────────────────────────────────────────────── +2026/03/22 09:57:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:57:52 [detection_layer] {"stage_name":"detection_layer","events_processed":472,"events_dropped":0,"avg_latency_ms":18.13093400216247,"throughput_eps":0,"last_update":"2026-03-22T09:57:47.479887304Z"} +2026/03/22 09:57:52 [transform_engine] {"stage_name":"transform_engine","events_processed":472,"events_dropped":0,"avg_latency_ms":627.7733261198067,"throughput_eps":0,"last_update":"2026-03-22T09:57:47.479781601Z"} +2026/03/22 09:57:52 [log_collector] {"stage_name":"log_collector","events_processed":22280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4456,"last_update":"2026-03-22T09:57:47.368737632Z"} +2026/03/22 09:57:52 [metric_collector] {"stage_name":"metric_collector","events_processed":14179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2835.8,"last_update":"2026-03-22T09:57:47.369122468Z"} +2026/03/22 09:57:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:57:47.378468501Z"} +2026/03/22 09:57:52 ───────────────────────────────────────────────── +2026/03/22 09:57:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:57:57 [log_collector] {"stage_name":"log_collector","events_processed":22280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4456,"last_update":"2026-03-22T09:57:52.3680581Z"} +2026/03/22 09:57:57 [metric_collector] {"stage_name":"metric_collector","events_processed":14184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2836.8,"last_update":"2026-03-22T09:57:52.368614035Z"} +2026/03/22 09:57:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5676,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:57:52.377510307Z"} +2026/03/22 09:57:57 [detection_layer] {"stage_name":"detection_layer","events_processed":472,"events_dropped":0,"avg_latency_ms":18.13093400216247,"throughput_eps":0,"last_update":"2026-03-22T09:57:52.479735964Z"} +2026/03/22 09:57:57 [transform_engine] {"stage_name":"transform_engine","events_processed":472,"events_dropped":0,"avg_latency_ms":627.7733261198067,"throughput_eps":0,"last_update":"2026-03-22T09:57:52.479756834Z"} +2026/03/22 09:57:57 ───────────────────────────────────────────────── +2026/03/22 09:58:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:58:02 [log_collector] {"stage_name":"log_collector","events_processed":22280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4456,"last_update":"2026-03-22T09:57:57.368082102Z"} +2026/03/22 09:58:02 [metric_collector] {"stage_name":"metric_collector","events_processed":14189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2837.8,"last_update":"2026-03-22T09:57:57.368648807Z"} +2026/03/22 09:58:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:57:57.37859542Z"} +2026/03/22 09:58:02 [detection_layer] {"stage_name":"detection_layer","events_processed":472,"events_dropped":0,"avg_latency_ms":18.13093400216247,"throughput_eps":0,"last_update":"2026-03-22T09:57:57.479119529Z"} +2026/03/22 09:58:02 [transform_engine] {"stage_name":"transform_engine","events_processed":472,"events_dropped":0,"avg_latency_ms":627.7733261198067,"throughput_eps":0,"last_update":"2026-03-22T09:57:57.479010811Z"} +2026/03/22 09:58:02 ───────────────────────────────────────────────── +2026/03/22 09:58:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:58:07 [metric_collector] {"stage_name":"metric_collector","events_processed":14193,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2838.6,"last_update":"2026-03-22T09:58:02.368518293Z"} +2026/03/22 09:58:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:58:02.37760509Z"} +2026/03/22 09:58:07 [detection_layer] {"stage_name":"detection_layer","events_processed":473,"events_dropped":0,"avg_latency_ms":18.553613401729976,"throughput_eps":0,"last_update":"2026-03-22T09:58:02.4789817Z"} +2026/03/22 09:58:07 [transform_engine] {"stage_name":"transform_engine","events_processed":473,"events_dropped":0,"avg_latency_ms":525.2313166958454,"throughput_eps":0,"last_update":"2026-03-22T09:58:02.478818438Z"} +2026/03/22 09:58:07 [log_collector] {"stage_name":"log_collector","events_processed":22280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4456,"last_update":"2026-03-22T09:58:02.368413101Z"} +2026/03/22 09:58:07 ───────────────────────────────────────────────── +2026/03/22 09:58:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:58:12 [log_collector] {"stage_name":"log_collector","events_processed":22280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4456,"last_update":"2026-03-22T09:58:07.368737671Z"} +2026/03/22 09:58:12 [metric_collector] {"stage_name":"metric_collector","events_processed":14199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2839.8,"last_update":"2026-03-22T09:58:07.368944157Z"} +2026/03/22 09:58:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:58:07.377901536Z"} +2026/03/22 09:58:12 [detection_layer] {"stage_name":"detection_layer","events_processed":473,"events_dropped":0,"avg_latency_ms":18.553613401729976,"throughput_eps":0,"last_update":"2026-03-22T09:58:07.479262187Z"} +2026/03/22 09:58:12 [transform_engine] {"stage_name":"transform_engine","events_processed":473,"events_dropped":0,"avg_latency_ms":525.2313166958454,"throughput_eps":0,"last_update":"2026-03-22T09:58:07.479127678Z"} +2026/03/22 09:58:12 ───────────────────────────────────────────────── +2026/03/22 09:58:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:58:17 [log_collector] {"stage_name":"log_collector","events_processed":22280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4456,"last_update":"2026-03-22T09:58:12.368779707Z"} +2026/03/22 09:58:17 [metric_collector] {"stage_name":"metric_collector","events_processed":14204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2840.8,"last_update":"2026-03-22T09:58:12.369051247Z"} +2026/03/22 09:58:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:58:12.379374913Z"} +2026/03/22 09:58:17 [detection_layer] {"stage_name":"detection_layer","events_processed":473,"events_dropped":0,"avg_latency_ms":18.553613401729976,"throughput_eps":0,"last_update":"2026-03-22T09:58:12.479578287Z"} +2026/03/22 09:58:17 [transform_engine] {"stage_name":"transform_engine","events_processed":473,"events_dropped":0,"avg_latency_ms":525.2313166958454,"throughput_eps":0,"last_update":"2026-03-22T09:58:12.479685913Z"} +2026/03/22 09:58:17 ───────────────────────────────────────────────── +2026/03/22 09:58:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:58:22 [metric_collector] {"stage_name":"metric_collector","events_processed":14209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2841.8,"last_update":"2026-03-22T09:58:17.368429461Z"} +2026/03/22 09:58:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:58:17.378072314Z"} +2026/03/22 09:58:22 [detection_layer] {"stage_name":"detection_layer","events_processed":473,"events_dropped":0,"avg_latency_ms":18.553613401729976,"throughput_eps":0,"last_update":"2026-03-22T09:58:17.479530351Z"} +2026/03/22 09:58:22 [transform_engine] {"stage_name":"transform_engine","events_processed":473,"events_dropped":0,"avg_latency_ms":525.2313166958454,"throughput_eps":0,"last_update":"2026-03-22T09:58:17.479423155Z"} +2026/03/22 09:58:22 [log_collector] {"stage_name":"log_collector","events_processed":22280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4456,"last_update":"2026-03-22T09:58:17.368035196Z"} +2026/03/22 09:58:22 ───────────────────────────────────────────────── +2026/03/22 09:58:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:58:27 [log_collector] {"stage_name":"log_collector","events_processed":22280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4456,"last_update":"2026-03-22T09:58:22.368567746Z"} +2026/03/22 09:58:27 [metric_collector] {"stage_name":"metric_collector","events_processed":14214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2842.8,"last_update":"2026-03-22T09:58:22.369112811Z"} +2026/03/22 09:58:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5688,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:58:22.378069519Z"} +2026/03/22 09:58:27 [detection_layer] {"stage_name":"detection_layer","events_processed":473,"events_dropped":0,"avg_latency_ms":18.553613401729976,"throughput_eps":0,"last_update":"2026-03-22T09:58:22.47926897Z"} +2026/03/22 09:58:27 [transform_engine] {"stage_name":"transform_engine","events_processed":473,"events_dropped":0,"avg_latency_ms":525.2313166958454,"throughput_eps":0,"last_update":"2026-03-22T09:58:22.479292475Z"} +2026/03/22 09:58:27 ───────────────────────────────────────────────── +2026/03/22 09:58:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:58:32 [detection_layer] {"stage_name":"detection_layer","events_processed":473,"events_dropped":0,"avg_latency_ms":18.553613401729976,"throughput_eps":0,"last_update":"2026-03-22T09:58:27.47926757Z"} +2026/03/22 09:58:32 [transform_engine] {"stage_name":"transform_engine","events_processed":473,"events_dropped":0,"avg_latency_ms":525.2313166958454,"throughput_eps":0,"last_update":"2026-03-22T09:58:27.479208087Z"} +2026/03/22 09:58:32 [log_collector] {"stage_name":"log_collector","events_processed":22280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4456,"last_update":"2026-03-22T09:58:27.367982188Z"} +2026/03/22 09:58:32 [metric_collector] {"stage_name":"metric_collector","events_processed":14219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2843.8,"last_update":"2026-03-22T09:58:27.36854176Z"} +2026/03/22 09:58:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:58:27.377853067Z"} +2026/03/22 09:58:32 ───────────────────────────────────────────────── +2026/03/22 09:58:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:58:37 [log_collector] {"stage_name":"log_collector","events_processed":22280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4456,"last_update":"2026-03-22T09:58:32.368858186Z"} +2026/03/22 09:58:37 [metric_collector] {"stage_name":"metric_collector","events_processed":14224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2844.8,"last_update":"2026-03-22T09:58:32.369220339Z"} +2026/03/22 09:58:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:58:32.377948198Z"} +2026/03/22 09:58:37 [detection_layer] {"stage_name":"detection_layer","events_processed":474,"events_dropped":0,"avg_latency_ms":18.83512832138398,"throughput_eps":0,"last_update":"2026-03-22T09:58:32.479304149Z"} +2026/03/22 09:58:37 [transform_engine] {"stage_name":"transform_engine","events_processed":474,"events_dropped":0,"avg_latency_ms":435.59450795667635,"throughput_eps":0,"last_update":"2026-03-22T09:58:32.479394572Z"} +2026/03/22 09:58:37 ───────────────────────────────────────────────── +Saved state: 13 clusters, 22281 messages, reason: none +2026/03/22 09:58:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:58:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:58:37.378021578Z"} +2026/03/22 09:58:42 [detection_layer] {"stage_name":"detection_layer","events_processed":474,"events_dropped":0,"avg_latency_ms":18.83512832138398,"throughput_eps":0,"last_update":"2026-03-22T09:58:37.479155945Z"} +2026/03/22 09:58:42 [transform_engine] {"stage_name":"transform_engine","events_processed":474,"events_dropped":0,"avg_latency_ms":435.59450795667635,"throughput_eps":0,"last_update":"2026-03-22T09:58:37.47913252Z"} +2026/03/22 09:58:42 [log_collector] {"stage_name":"log_collector","events_processed":22280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4456,"last_update":"2026-03-22T09:58:37.368659515Z"} +2026/03/22 09:58:42 [metric_collector] {"stage_name":"metric_collector","events_processed":14229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2845.8,"last_update":"2026-03-22T09:58:37.369155314Z"} +2026/03/22 09:58:42 ───────────────────────────────────────────────── +2026/03/22 09:58:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:58:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:58:42.377551193Z"} +2026/03/22 09:58:47 [detection_layer] {"stage_name":"detection_layer","events_processed":474,"events_dropped":0,"avg_latency_ms":18.83512832138398,"throughput_eps":0,"last_update":"2026-03-22T09:58:42.479739518Z"} +2026/03/22 09:58:47 [transform_engine] {"stage_name":"transform_engine","events_processed":474,"events_dropped":0,"avg_latency_ms":435.59450795667635,"throughput_eps":0,"last_update":"2026-03-22T09:58:42.479631912Z"} +2026/03/22 09:58:47 [log_collector] {"stage_name":"log_collector","events_processed":22294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4458.8,"last_update":"2026-03-22T09:58:42.368705277Z"} +2026/03/22 09:58:47 [metric_collector] {"stage_name":"metric_collector","events_processed":14234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2846.8,"last_update":"2026-03-22T09:58:42.369208091Z"} +2026/03/22 09:58:47 ───────────────────────────────────────────────── +2026/03/22 09:58:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:58:52 [log_collector] {"stage_name":"log_collector","events_processed":22294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4458.8,"last_update":"2026-03-22T09:58:47.368215077Z"} +2026/03/22 09:58:52 [metric_collector] {"stage_name":"metric_collector","events_processed":14239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2847.8,"last_update":"2026-03-22T09:58:47.368840585Z"} +2026/03/22 09:58:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:58:47.377301032Z"} +2026/03/22 09:58:52 [detection_layer] {"stage_name":"detection_layer","events_processed":474,"events_dropped":0,"avg_latency_ms":18.83512832138398,"throughput_eps":0,"last_update":"2026-03-22T09:58:47.479728945Z"} +2026/03/22 09:58:52 [transform_engine] {"stage_name":"transform_engine","events_processed":474,"events_dropped":0,"avg_latency_ms":435.59450795667635,"throughput_eps":0,"last_update":"2026-03-22T09:58:47.479759625Z"} +2026/03/22 09:58:52 ───────────────────────────────────────────────── +2026/03/22 09:58:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:58:57 [log_collector] {"stage_name":"log_collector","events_processed":22294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4458.8,"last_update":"2026-03-22T09:58:52.368014683Z"} +2026/03/22 09:58:57 [metric_collector] {"stage_name":"metric_collector","events_processed":14244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2848.8,"last_update":"2026-03-22T09:58:52.368907955Z"} +2026/03/22 09:58:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5700,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:58:52.377838572Z"} +2026/03/22 09:58:57 [detection_layer] {"stage_name":"detection_layer","events_processed":474,"events_dropped":0,"avg_latency_ms":18.83512832138398,"throughput_eps":0,"last_update":"2026-03-22T09:58:52.479258205Z"} +2026/03/22 09:58:57 [transform_engine] {"stage_name":"transform_engine","events_processed":474,"events_dropped":0,"avg_latency_ms":435.59450795667635,"throughput_eps":0,"last_update":"2026-03-22T09:58:52.479137243Z"} +2026/03/22 09:58:57 ───────────────────────────────────────────────── +2026/03/22 09:59:02 ── Pipeline Health ────────────────────────────── +2026/03/22 09:59:02 [detection_layer] {"stage_name":"detection_layer","events_processed":474,"events_dropped":0,"avg_latency_ms":18.83512832138398,"throughput_eps":0,"last_update":"2026-03-22T09:58:57.479929447Z"} +2026/03/22 09:59:02 [transform_engine] {"stage_name":"transform_engine","events_processed":474,"events_dropped":0,"avg_latency_ms":435.59450795667635,"throughput_eps":0,"last_update":"2026-03-22T09:58:57.479901703Z"} +2026/03/22 09:59:02 [log_collector] {"stage_name":"log_collector","events_processed":22294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4458.8,"last_update":"2026-03-22T09:58:57.368527492Z"} +2026/03/22 09:59:02 [metric_collector] {"stage_name":"metric_collector","events_processed":14249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2849.8,"last_update":"2026-03-22T09:58:57.368880568Z"} +2026/03/22 09:59:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5702,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:58:57.378619875Z"} +2026/03/22 09:59:02 ───────────────────────────────────────────────── +2026/03/22 09:59:07 ── Pipeline Health ────────────────────────────── +2026/03/22 09:59:07 [transform_engine] {"stage_name":"transform_engine","events_processed":475,"events_dropped":0,"avg_latency_ms":370.8991595653411,"throughput_eps":0,"last_update":"2026-03-22T09:59:02.479270554Z"} +2026/03/22 09:59:07 [log_collector] {"stage_name":"log_collector","events_processed":22294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4458.8,"last_update":"2026-03-22T09:59:02.368635879Z"} +2026/03/22 09:59:07 [metric_collector] {"stage_name":"metric_collector","events_processed":14254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2850.8,"last_update":"2026-03-22T09:59:02.369040655Z"} +2026/03/22 09:59:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:59:02.378958062Z"} +2026/03/22 09:59:07 [detection_layer] {"stage_name":"detection_layer","events_processed":475,"events_dropped":0,"avg_latency_ms":18.701266457107184,"throughput_eps":0,"last_update":"2026-03-22T09:59:02.479262268Z"} +2026/03/22 09:59:07 ───────────────────────────────────────────────── +2026/03/22 09:59:12 ── Pipeline Health ────────────────────────────── +2026/03/22 09:59:12 [log_collector] {"stage_name":"log_collector","events_processed":22294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4458.8,"last_update":"2026-03-22T09:59:07.368262097Z"} +2026/03/22 09:59:12 [metric_collector] {"stage_name":"metric_collector","events_processed":14259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2851.8,"last_update":"2026-03-22T09:59:07.368767455Z"} +2026/03/22 09:59:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:59:07.378588228Z"} +2026/03/22 09:59:12 [detection_layer] {"stage_name":"detection_layer","events_processed":475,"events_dropped":0,"avg_latency_ms":18.701266457107184,"throughput_eps":0,"last_update":"2026-03-22T09:59:07.479878402Z"} +2026/03/22 09:59:12 [transform_engine] {"stage_name":"transform_engine","events_processed":475,"events_dropped":0,"avg_latency_ms":370.8991595653411,"throughput_eps":0,"last_update":"2026-03-22T09:59:07.47988741Z"} +2026/03/22 09:59:12 ───────────────────────────────────────────────── +2026/03/22 09:59:17 ── Pipeline Health ────────────────────────────── +2026/03/22 09:59:17 [log_collector] {"stage_name":"log_collector","events_processed":22294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4458.8,"last_update":"2026-03-22T09:59:12.368479493Z"} +2026/03/22 09:59:17 [metric_collector] {"stage_name":"metric_collector","events_processed":14264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2852.8,"last_update":"2026-03-22T09:59:12.368720164Z"} +2026/03/22 09:59:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:59:12.377484282Z"} +2026/03/22 09:59:17 [detection_layer] {"stage_name":"detection_layer","events_processed":475,"events_dropped":0,"avg_latency_ms":18.701266457107184,"throughput_eps":0,"last_update":"2026-03-22T09:59:12.479714467Z"} +2026/03/22 09:59:17 [transform_engine] {"stage_name":"transform_engine","events_processed":475,"events_dropped":0,"avg_latency_ms":370.8991595653411,"throughput_eps":0,"last_update":"2026-03-22T09:59:12.479728634Z"} +2026/03/22 09:59:17 ───────────────────────────────────────────────── +2026/03/22 09:59:22 ── Pipeline Health ────────────────────────────── +2026/03/22 09:59:22 [log_collector] {"stage_name":"log_collector","events_processed":22294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4458.8,"last_update":"2026-03-22T09:59:17.368010496Z"} +2026/03/22 09:59:22 [metric_collector] {"stage_name":"metric_collector","events_processed":14269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2853.8,"last_update":"2026-03-22T09:59:17.368485307Z"} +2026/03/22 09:59:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:59:17.373741596Z"} +2026/03/22 09:59:22 [detection_layer] {"stage_name":"detection_layer","events_processed":475,"events_dropped":0,"avg_latency_ms":18.701266457107184,"throughput_eps":0,"last_update":"2026-03-22T09:59:17.478954734Z"} +2026/03/22 09:59:22 [transform_engine] {"stage_name":"transform_engine","events_processed":475,"events_dropped":0,"avg_latency_ms":370.8991595653411,"throughput_eps":0,"last_update":"2026-03-22T09:59:17.47890579Z"} +2026/03/22 09:59:22 ───────────────────────────────────────────────── +2026/03/22 09:59:27 ── Pipeline Health ────────────────────────────── +2026/03/22 09:59:27 [log_collector] {"stage_name":"log_collector","events_processed":22294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4458.8,"last_update":"2026-03-22T09:59:22.368754087Z"} +2026/03/22 09:59:27 [metric_collector] {"stage_name":"metric_collector","events_processed":14274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2854.8,"last_update":"2026-03-22T09:59:22.368909324Z"} +2026/03/22 09:59:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5712,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:59:22.377691968Z"} +2026/03/22 09:59:27 [detection_layer] {"stage_name":"detection_layer","events_processed":475,"events_dropped":0,"avg_latency_ms":18.701266457107184,"throughput_eps":0,"last_update":"2026-03-22T09:59:22.478952925Z"} +2026/03/22 09:59:27 [transform_engine] {"stage_name":"transform_engine","events_processed":475,"events_dropped":0,"avg_latency_ms":370.8991595653411,"throughput_eps":0,"last_update":"2026-03-22T09:59:22.478873533Z"} +2026/03/22 09:59:27 ───────────────────────────────────────────────── +2026/03/22 09:59:32 ── Pipeline Health ────────────────────────────── +2026/03/22 09:59:32 [metric_collector] {"stage_name":"metric_collector","events_processed":14279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2855.8,"last_update":"2026-03-22T09:59:27.368837417Z"} +2026/03/22 09:59:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:59:27.377513778Z"} +2026/03/22 09:59:32 [detection_layer] {"stage_name":"detection_layer","events_processed":475,"events_dropped":0,"avg_latency_ms":18.701266457107184,"throughput_eps":0,"last_update":"2026-03-22T09:59:27.479864542Z"} +2026/03/22 09:59:32 [transform_engine] {"stage_name":"transform_engine","events_processed":476,"events_dropped":0,"avg_latency_ms":311.1989070522729,"throughput_eps":0,"last_update":"2026-03-22T09:59:27.5522785Z"} +2026/03/22 09:59:32 [log_collector] {"stage_name":"log_collector","events_processed":22294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4458.8,"last_update":"2026-03-22T09:59:27.368511252Z"} +2026/03/22 09:59:32 ───────────────────────────────────────────────── +2026/03/22 09:59:37 ── Pipeline Health ────────────────────────────── +2026/03/22 09:59:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:59:32.377898679Z"} +2026/03/22 09:59:37 [detection_layer] {"stage_name":"detection_layer","events_processed":476,"events_dropped":0,"avg_latency_ms":19.08641596568575,"throughput_eps":0,"last_update":"2026-03-22T09:59:32.479288253Z"} +2026/03/22 09:59:37 [transform_engine] {"stage_name":"transform_engine","events_processed":476,"events_dropped":0,"avg_latency_ms":311.1989070522729,"throughput_eps":0,"last_update":"2026-03-22T09:59:32.479300866Z"} +2026/03/22 09:59:37 [log_collector] {"stage_name":"log_collector","events_processed":22294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4458.8,"last_update":"2026-03-22T09:59:32.368914279Z"} +2026/03/22 09:59:37 [metric_collector] {"stage_name":"metric_collector","events_processed":14284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2856.8,"last_update":"2026-03-22T09:59:32.369685065Z"} +2026/03/22 09:59:37 ───────────────────────────────────────────────── +2026/03/22 09:59:42 ── Pipeline Health ────────────────────────────── +2026/03/22 09:59:42 [transform_engine] {"stage_name":"transform_engine","events_processed":476,"events_dropped":0,"avg_latency_ms":311.1989070522729,"throughput_eps":0,"last_update":"2026-03-22T09:59:37.479614688Z"} +2026/03/22 09:59:42 [log_collector] {"stage_name":"log_collector","events_processed":22294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4458.8,"last_update":"2026-03-22T09:59:37.3683408Z"} +2026/03/22 09:59:42 [metric_collector] {"stage_name":"metric_collector","events_processed":14289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2857.8,"last_update":"2026-03-22T09:59:37.368586601Z"} +2026/03/22 09:59:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5718,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:59:37.377373243Z"} +2026/03/22 09:59:42 [detection_layer] {"stage_name":"detection_layer","events_processed":476,"events_dropped":0,"avg_latency_ms":19.08641596568575,"throughput_eps":0,"last_update":"2026-03-22T09:59:37.479603797Z"} +2026/03/22 09:59:42 ───────────────────────────────────────────────── +Saved state: 13 clusters, 22295 messages, reason: none +2026/03/22 09:59:47 ── Pipeline Health ────────────────────────────── +2026/03/22 09:59:47 [log_collector] {"stage_name":"log_collector","events_processed":22299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4459.8,"last_update":"2026-03-22T09:59:47.367960002Z"} +2026/03/22 09:59:47 [metric_collector] {"stage_name":"metric_collector","events_processed":14294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2858.8,"last_update":"2026-03-22T09:59:42.368964898Z"} +2026/03/22 09:59:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:59:42.378961819Z"} +2026/03/22 09:59:47 [detection_layer] {"stage_name":"detection_layer","events_processed":476,"events_dropped":0,"avg_latency_ms":19.08641596568575,"throughput_eps":0,"last_update":"2026-03-22T09:59:42.479190919Z"} +2026/03/22 09:59:47 [transform_engine] {"stage_name":"transform_engine","events_processed":476,"events_dropped":0,"avg_latency_ms":311.1989070522729,"throughput_eps":0,"last_update":"2026-03-22T09:59:42.479169348Z"} +2026/03/22 09:59:47 ───────────────────────────────────────────────── +2026/03/22 09:59:52 ── Pipeline Health ────────────────────────────── +2026/03/22 09:59:52 [transform_engine] {"stage_name":"transform_engine","events_processed":476,"events_dropped":0,"avg_latency_ms":311.1989070522729,"throughput_eps":0,"last_update":"2026-03-22T09:59:47.479613446Z"} +2026/03/22 09:59:52 [log_collector] {"stage_name":"log_collector","events_processed":22299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4459.8,"last_update":"2026-03-22T09:59:47.367960002Z"} +2026/03/22 09:59:52 [metric_collector] {"stage_name":"metric_collector","events_processed":14299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2859.8,"last_update":"2026-03-22T09:59:47.368222885Z"} +2026/03/22 09:59:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5722,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:59:47.375329388Z"} +2026/03/22 09:59:52 [detection_layer] {"stage_name":"detection_layer","events_processed":476,"events_dropped":0,"avg_latency_ms":19.08641596568575,"throughput_eps":0,"last_update":"2026-03-22T09:59:47.479703308Z"} +2026/03/22 09:59:52 ───────────────────────────────────────────────── +2026/03/22 09:59:57 ── Pipeline Health ────────────────────────────── +2026/03/22 09:59:57 [log_collector] {"stage_name":"log_collector","events_processed":22299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4459.8,"last_update":"2026-03-22T09:59:52.36873021Z"} +2026/03/22 09:59:57 [metric_collector] {"stage_name":"metric_collector","events_processed":14304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2860.8,"last_update":"2026-03-22T09:59:52.369108565Z"} +2026/03/22 09:59:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:59:52.375111134Z"} +2026/03/22 09:59:57 [detection_layer] {"stage_name":"detection_layer","events_processed":476,"events_dropped":0,"avg_latency_ms":19.08641596568575,"throughput_eps":0,"last_update":"2026-03-22T09:59:52.479401223Z"} +2026/03/22 09:59:57 [transform_engine] {"stage_name":"transform_engine","events_processed":476,"events_dropped":0,"avg_latency_ms":311.1989070522729,"throughput_eps":0,"last_update":"2026-03-22T09:59:52.479339534Z"} +2026/03/22 09:59:57 ───────────────────────────────────────────────── +2026/03/22 10:00:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:00:02 [log_collector] {"stage_name":"log_collector","events_processed":22299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4459.8,"last_update":"2026-03-22T10:00:02.368636299Z"} +2026/03/22 10:00:02 [metric_collector] {"stage_name":"metric_collector","events_processed":14309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2861.8,"last_update":"2026-03-22T09:59:57.368268804Z"} +2026/03/22 10:00:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T09:59:57.375583606Z"} +2026/03/22 10:00:02 [detection_layer] {"stage_name":"detection_layer","events_processed":476,"events_dropped":0,"avg_latency_ms":19.08641596568575,"throughput_eps":0,"last_update":"2026-03-22T09:59:57.481307541Z"} +2026/03/22 10:00:02 [transform_engine] {"stage_name":"transform_engine","events_processed":477,"events_dropped":0,"avg_latency_ms":581.2376658418184,"throughput_eps":0,"last_update":"2026-03-22T09:59:59.140293423Z"} +2026/03/22 10:00:02 ───────────────────────────────────────────────── +2026/03/22 10:00:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:00:07 [log_collector] {"stage_name":"log_collector","events_processed":22299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4459.8,"last_update":"2026-03-22T10:00:02.368636299Z"} +2026/03/22 10:00:07 [metric_collector] {"stage_name":"metric_collector","events_processed":14314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2862.8,"last_update":"2026-03-22T10:00:02.36915375Z"} +2026/03/22 10:00:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5728,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:00:02.378596478Z"} +2026/03/22 10:00:07 [detection_layer] {"stage_name":"detection_layer","events_processed":477,"events_dropped":0,"avg_latency_ms":18.5895375725486,"throughput_eps":0,"last_update":"2026-03-22T10:00:02.479880178Z"} +2026/03/22 10:00:07 [transform_engine] {"stage_name":"transform_engine","events_processed":477,"events_dropped":0,"avg_latency_ms":581.2376658418184,"throughput_eps":0,"last_update":"2026-03-22T10:00:02.479850321Z"} +2026/03/22 10:00:07 ───────────────────────────────────────────────── +2026/03/22 10:00:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:00:12 [metric_collector] {"stage_name":"metric_collector","events_processed":14319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2863.8,"last_update":"2026-03-22T10:00:07.36899406Z"} +2026/03/22 10:00:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5730,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:00:07.376468638Z"} +2026/03/22 10:00:12 [detection_layer] {"stage_name":"detection_layer","events_processed":477,"events_dropped":0,"avg_latency_ms":18.5895375725486,"throughput_eps":0,"last_update":"2026-03-22T10:00:07.479622121Z"} +2026/03/22 10:00:12 [transform_engine] {"stage_name":"transform_engine","events_processed":477,"events_dropped":0,"avg_latency_ms":581.2376658418184,"throughput_eps":0,"last_update":"2026-03-22T10:00:07.47964774Z"} +2026/03/22 10:00:12 [log_collector] {"stage_name":"log_collector","events_processed":22299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4459.8,"last_update":"2026-03-22T10:00:12.368412317Z"} +2026/03/22 10:00:12 ───────────────────────────────────────────────── +2026/03/22 10:00:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:00:17 [transform_engine] {"stage_name":"transform_engine","events_processed":477,"events_dropped":0,"avg_latency_ms":581.2376658418184,"throughput_eps":0,"last_update":"2026-03-22T10:00:12.479399144Z"} +2026/03/22 10:00:17 [log_collector] {"stage_name":"log_collector","events_processed":22299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4459.8,"last_update":"2026-03-22T10:00:12.368412317Z"} +2026/03/22 10:00:17 [metric_collector] {"stage_name":"metric_collector","events_processed":14324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2864.8,"last_update":"2026-03-22T10:00:12.368871577Z"} +2026/03/22 10:00:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:00:12.375827792Z"} +2026/03/22 10:00:17 [detection_layer] {"stage_name":"detection_layer","events_processed":477,"events_dropped":0,"avg_latency_ms":18.5895375725486,"throughput_eps":0,"last_update":"2026-03-22T10:00:12.479418782Z"} +2026/03/22 10:00:17 ───────────────────────────────────────────────── +2026/03/22 10:00:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:00:22 [log_collector] {"stage_name":"log_collector","events_processed":22299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4459.8,"last_update":"2026-03-22T10:00:17.368493458Z"} +2026/03/22 10:00:22 [metric_collector] {"stage_name":"metric_collector","events_processed":14329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2865.8,"last_update":"2026-03-22T10:00:17.368879087Z"} +2026/03/22 10:00:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:00:17.378262141Z"} +2026/03/22 10:00:22 [detection_layer] {"stage_name":"detection_layer","events_processed":477,"events_dropped":0,"avg_latency_ms":18.5895375725486,"throughput_eps":0,"last_update":"2026-03-22T10:00:17.479475315Z"} +2026/03/22 10:00:22 [transform_engine] {"stage_name":"transform_engine","events_processed":477,"events_dropped":0,"avg_latency_ms":581.2376658418184,"throughput_eps":0,"last_update":"2026-03-22T10:00:17.479457301Z"} +2026/03/22 10:00:22 ───────────────────────────────────────────────── +2026/03/22 10:00:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:00:27 [transform_engine] {"stage_name":"transform_engine","events_processed":477,"events_dropped":0,"avg_latency_ms":581.2376658418184,"throughput_eps":0,"last_update":"2026-03-22T10:00:22.479146626Z"} +2026/03/22 10:00:27 [log_collector] {"stage_name":"log_collector","events_processed":22299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4459.8,"last_update":"2026-03-22T10:00:22.370720545Z"} +2026/03/22 10:00:27 [metric_collector] {"stage_name":"metric_collector","events_processed":14334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2866.8,"last_update":"2026-03-22T10:00:22.370992987Z"} +2026/03/22 10:00:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5736,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:00:22.379987877Z"} +2026/03/22 10:00:27 [detection_layer] {"stage_name":"detection_layer","events_processed":477,"events_dropped":0,"avg_latency_ms":18.5895375725486,"throughput_eps":0,"last_update":"2026-03-22T10:00:22.479170582Z"} +2026/03/22 10:00:27 ───────────────────────────────────────────────── +2026/03/22 10:00:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:00:32 [log_collector] {"stage_name":"log_collector","events_processed":22308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4461.6,"last_update":"2026-03-22T10:00:27.36801672Z"} +2026/03/22 10:00:32 [metric_collector] {"stage_name":"metric_collector","events_processed":14339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2867.8,"last_update":"2026-03-22T10:00:27.368153833Z"} +2026/03/22 10:00:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5738,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:00:27.376488079Z"} +2026/03/22 10:00:32 [detection_layer] {"stage_name":"detection_layer","events_processed":477,"events_dropped":0,"avg_latency_ms":18.5895375725486,"throughput_eps":0,"last_update":"2026-03-22T10:00:27.479796467Z"} +2026/03/22 10:00:32 [transform_engine] {"stage_name":"transform_engine","events_processed":478,"events_dropped":0,"avg_latency_ms":1038.1488840734548,"throughput_eps":0,"last_update":"2026-03-22T10:00:30.345548854Z"} +2026/03/22 10:00:32 ───────────────────────────────────────────────── +2026/03/22 10:00:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:00:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5740,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:00:32.378426903Z"} +2026/03/22 10:00:37 [detection_layer] {"stage_name":"detection_layer","events_processed":478,"events_dropped":0,"avg_latency_ms":17.70045305803888,"throughput_eps":0,"last_update":"2026-03-22T10:00:32.479798099Z"} +2026/03/22 10:00:37 [transform_engine] {"stage_name":"transform_engine","events_processed":478,"events_dropped":0,"avg_latency_ms":1038.1488840734548,"throughput_eps":0,"last_update":"2026-03-22T10:00:32.479768783Z"} +2026/03/22 10:00:37 [log_collector] {"stage_name":"log_collector","events_processed":22310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4462,"last_update":"2026-03-22T10:00:32.368811894Z"} +2026/03/22 10:00:37 [metric_collector] {"stage_name":"metric_collector","events_processed":14344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2868.8,"last_update":"2026-03-22T10:00:32.368915934Z"} +2026/03/22 10:00:37 ───────────────────────────────────────────────── +2026/03/22 10:00:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:00:42 [log_collector] {"stage_name":"log_collector","events_processed":22541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4508.2,"last_update":"2026-03-22T10:00:37.36811786Z"} +2026/03/22 10:00:42 [metric_collector] {"stage_name":"metric_collector","events_processed":14349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2869.8,"last_update":"2026-03-22T10:00:37.368510242Z"} +2026/03/22 10:00:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:00:37.375262125Z"} +2026/03/22 10:00:42 [detection_layer] {"stage_name":"detection_layer","events_processed":478,"events_dropped":0,"avg_latency_ms":17.70045305803888,"throughput_eps":0,"last_update":"2026-03-22T10:00:37.478946273Z"} +2026/03/22 10:00:42 [transform_engine] {"stage_name":"transform_engine","events_processed":478,"events_dropped":0,"avg_latency_ms":1038.1488840734548,"throughput_eps":0,"last_update":"2026-03-22T10:00:37.478902529Z"} +2026/03/22 10:00:42 ───────────────────────────────────────────────── +2026/03/22 10:00:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:00:47 [transform_engine] {"stage_name":"transform_engine","events_processed":478,"events_dropped":0,"avg_latency_ms":1038.1488840734548,"throughput_eps":0,"last_update":"2026-03-22T10:00:42.479386556Z"} +2026/03/22 10:00:47 [log_collector] {"stage_name":"log_collector","events_processed":22656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4531.2,"last_update":"2026-03-22T10:00:42.368947058Z"} +2026/03/22 10:00:47 [metric_collector] {"stage_name":"metric_collector","events_processed":14353,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2870.6,"last_update":"2026-03-22T10:00:42.368695486Z"} +2026/03/22 10:00:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:00:42.377162435Z"} +2026/03/22 10:00:47 [detection_layer] {"stage_name":"detection_layer","events_processed":478,"events_dropped":0,"avg_latency_ms":17.70045305803888,"throughput_eps":0,"last_update":"2026-03-22T10:00:42.479373101Z"} +2026/03/22 10:00:47 ───────────────────────────────────────────────── +2026/03/22 10:00:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:00:52 [detection_layer] {"stage_name":"detection_layer","events_processed":478,"events_dropped":0,"avg_latency_ms":17.70045305803888,"throughput_eps":0,"last_update":"2026-03-22T10:00:47.478937582Z"} +2026/03/22 10:00:52 [transform_engine] {"stage_name":"transform_engine","events_processed":478,"events_dropped":0,"avg_latency_ms":1038.1488840734548,"throughput_eps":0,"last_update":"2026-03-22T10:00:47.478875833Z"} +2026/03/22 10:00:52 [log_collector] {"stage_name":"log_collector","events_processed":22660,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4532,"last_update":"2026-03-22T10:00:47.368459339Z"} +2026/03/22 10:00:52 [metric_collector] {"stage_name":"metric_collector","events_processed":14358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2871.6,"last_update":"2026-03-22T10:00:47.368282861Z"} +2026/03/22 10:00:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:00:47.375738764Z"} +2026/03/22 10:00:52 ───────────────────────────────────────────────── +Saved state: 13 clusters, 22661 messages, reason: none +2026/03/22 10:00:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:00:57 [log_collector] {"stage_name":"log_collector","events_processed":22660,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4532,"last_update":"2026-03-22T10:00:52.368008927Z"} +2026/03/22 10:00:57 [metric_collector] {"stage_name":"metric_collector","events_processed":14363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2872.6,"last_update":"2026-03-22T10:00:52.367906991Z"} +2026/03/22 10:00:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:00:52.375970758Z"} +2026/03/22 10:00:57 [detection_layer] {"stage_name":"detection_layer","events_processed":478,"events_dropped":0,"avg_latency_ms":17.70045305803888,"throughput_eps":0,"last_update":"2026-03-22T10:00:52.479261502Z"} +2026/03/22 10:00:57 [transform_engine] {"stage_name":"transform_engine","events_processed":478,"events_dropped":0,"avg_latency_ms":1038.1488840734548,"throughput_eps":0,"last_update":"2026-03-22T10:00:52.479276059Z"} +2026/03/22 10:00:57 ───────────────────────────────────────────────── +2026/03/22 10:01:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:01:02 [detection_layer] {"stage_name":"detection_layer","events_processed":478,"events_dropped":0,"avg_latency_ms":17.70045305803888,"throughput_eps":0,"last_update":"2026-03-22T10:00:57.47911167Z"} +2026/03/22 10:01:02 [transform_engine] {"stage_name":"transform_engine","events_processed":479,"events_dropped":0,"avg_latency_ms":851.6695990587639,"throughput_eps":0,"last_update":"2026-03-22T10:00:57.584876423Z"} +2026/03/22 10:01:02 [log_collector] {"stage_name":"log_collector","events_processed":22663,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4532.6,"last_update":"2026-03-22T10:00:57.367958065Z"} +2026/03/22 10:01:02 [metric_collector] {"stage_name":"metric_collector","events_processed":14369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2873.8,"last_update":"2026-03-22T10:00:57.368300992Z"} +2026/03/22 10:01:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5750,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:00:57.377922152Z"} +2026/03/22 10:01:02 ───────────────────────────────────────────────── +2026/03/22 10:01:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:01:07 [log_collector] {"stage_name":"log_collector","events_processed":22663,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4532.6,"last_update":"2026-03-22T10:01:02.367989475Z"} +2026/03/22 10:01:07 [metric_collector] {"stage_name":"metric_collector","events_processed":14374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2874.8,"last_update":"2026-03-22T10:01:02.368259192Z"} +2026/03/22 10:01:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5752,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:01:02.379981707Z"} +2026/03/22 10:01:07 [detection_layer] {"stage_name":"detection_layer","events_processed":479,"events_dropped":0,"avg_latency_ms":17.096388446431106,"throughput_eps":0,"last_update":"2026-03-22T10:01:02.479115328Z"} +2026/03/22 10:01:07 [transform_engine] {"stage_name":"transform_engine","events_processed":479,"events_dropped":0,"avg_latency_ms":851.6695990587639,"throughput_eps":0,"last_update":"2026-03-22T10:01:02.479126779Z"} +2026/03/22 10:01:07 ───────────────────────────────────────────────── +2026/03/22 10:01:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:01:12 [log_collector] {"stage_name":"log_collector","events_processed":22673,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4534.6,"last_update":"2026-03-22T10:01:07.368173976Z"} +2026/03/22 10:01:12 [metric_collector] {"stage_name":"metric_collector","events_processed":14379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2875.8,"last_update":"2026-03-22T10:01:07.36831221Z"} +2026/03/22 10:01:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:01:07.37428433Z"} +2026/03/22 10:01:12 [detection_layer] {"stage_name":"detection_layer","events_processed":479,"events_dropped":0,"avg_latency_ms":17.096388446431106,"throughput_eps":0,"last_update":"2026-03-22T10:01:07.479505522Z"} +2026/03/22 10:01:12 [transform_engine] {"stage_name":"transform_engine","events_processed":479,"events_dropped":0,"avg_latency_ms":851.6695990587639,"throughput_eps":0,"last_update":"2026-03-22T10:01:07.479521122Z"} +2026/03/22 10:01:12 ───────────────────────────────────────────────── +2026/03/22 10:01:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:01:17 [log_collector] {"stage_name":"log_collector","events_processed":22680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4536,"last_update":"2026-03-22T10:01:12.368720763Z"} +2026/03/22 10:01:17 [metric_collector] {"stage_name":"metric_collector","events_processed":14384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2876.8,"last_update":"2026-03-22T10:01:12.368973187Z"} +2026/03/22 10:01:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:01:12.378597272Z"} +2026/03/22 10:01:17 [detection_layer] {"stage_name":"detection_layer","events_processed":479,"events_dropped":0,"avg_latency_ms":17.096388446431106,"throughput_eps":0,"last_update":"2026-03-22T10:01:12.479799675Z"} +2026/03/22 10:01:17 [transform_engine] {"stage_name":"transform_engine","events_processed":479,"events_dropped":0,"avg_latency_ms":851.6695990587639,"throughput_eps":0,"last_update":"2026-03-22T10:01:12.479810566Z"} +2026/03/22 10:01:17 ───────────────────────────────────────────────── +2026/03/22 10:01:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:01:22 [log_collector] {"stage_name":"log_collector","events_processed":22690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4538,"last_update":"2026-03-22T10:01:17.368210371Z"} +2026/03/22 10:01:22 [metric_collector] {"stage_name":"metric_collector","events_processed":14389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2877.8,"last_update":"2026-03-22T10:01:17.368502882Z"} +2026/03/22 10:01:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5758,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:01:17.376740151Z"} +2026/03/22 10:01:22 [detection_layer] {"stage_name":"detection_layer","events_processed":479,"events_dropped":0,"avg_latency_ms":17.096388446431106,"throughput_eps":0,"last_update":"2026-03-22T10:01:17.479000992Z"} +2026/03/22 10:01:22 [transform_engine] {"stage_name":"transform_engine","events_processed":479,"events_dropped":0,"avg_latency_ms":851.6695990587639,"throughput_eps":0,"last_update":"2026-03-22T10:01:17.47888529Z"} +2026/03/22 10:01:22 ───────────────────────────────────────────────── +2026/03/22 10:01:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:01:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:01:22.377175778Z"} +2026/03/22 10:01:27 [detection_layer] {"stage_name":"detection_layer","events_processed":479,"events_dropped":0,"avg_latency_ms":17.096388446431106,"throughput_eps":0,"last_update":"2026-03-22T10:01:22.479492556Z"} +2026/03/22 10:01:27 [transform_engine] {"stage_name":"transform_engine","events_processed":479,"events_dropped":0,"avg_latency_ms":851.6695990587639,"throughput_eps":0,"last_update":"2026-03-22T10:01:22.479504548Z"} +2026/03/22 10:01:27 [log_collector] {"stage_name":"log_collector","events_processed":22690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4538,"last_update":"2026-03-22T10:01:22.367987978Z"} +2026/03/22 10:01:27 [metric_collector] {"stage_name":"metric_collector","events_processed":14394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2878.8,"last_update":"2026-03-22T10:01:22.36874597Z"} +2026/03/22 10:01:27 ───────────────────────────────────────────────── +2026/03/22 10:01:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:01:32 [log_collector] {"stage_name":"log_collector","events_processed":22690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4538,"last_update":"2026-03-22T10:01:27.368780272Z"} +2026/03/22 10:01:32 [metric_collector] {"stage_name":"metric_collector","events_processed":14399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2879.8,"last_update":"2026-03-22T10:01:27.369209675Z"} +2026/03/22 10:01:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:01:27.379023725Z"} +2026/03/22 10:01:32 [detection_layer] {"stage_name":"detection_layer","events_processed":479,"events_dropped":0,"avg_latency_ms":17.096388446431106,"throughput_eps":0,"last_update":"2026-03-22T10:01:27.479401217Z"} +2026/03/22 10:01:32 [transform_engine] {"stage_name":"transform_engine","events_processed":480,"events_dropped":0,"avg_latency_ms":706.0398524470112,"throughput_eps":0,"last_update":"2026-03-22T10:01:27.60294093Z"} +2026/03/22 10:01:32 ───────────────────────────────────────────────── +2026/03/22 10:01:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:01:37 [log_collector] {"stage_name":"log_collector","events_processed":22690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4538,"last_update":"2026-03-22T10:01:37.368287299Z"} +2026/03/22 10:01:37 [metric_collector] {"stage_name":"metric_collector","events_processed":14404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2880.8,"last_update":"2026-03-22T10:01:32.368591774Z"} +2026/03/22 10:01:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:01:32.378735095Z"} +2026/03/22 10:01:37 [detection_layer] {"stage_name":"detection_layer","events_processed":480,"events_dropped":0,"avg_latency_ms":17.708950157144887,"throughput_eps":0,"last_update":"2026-03-22T10:01:32.478976036Z"} +2026/03/22 10:01:37 [transform_engine] {"stage_name":"transform_engine","events_processed":480,"events_dropped":0,"avg_latency_ms":706.0398524470112,"throughput_eps":0,"last_update":"2026-03-22T10:01:32.478945417Z"} +2026/03/22 10:01:37 ───────────────────────────────────────────────── +2026/03/22 10:01:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:01:42 [log_collector] {"stage_name":"log_collector","events_processed":22690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4538,"last_update":"2026-03-22T10:01:42.368603387Z"} +2026/03/22 10:01:42 [metric_collector] {"stage_name":"metric_collector","events_processed":14409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2881.8,"last_update":"2026-03-22T10:01:37.369179758Z"} +2026/03/22 10:01:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5766,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:01:37.377156409Z"} +2026/03/22 10:01:42 [detection_layer] {"stage_name":"detection_layer","events_processed":480,"events_dropped":0,"avg_latency_ms":17.708950157144887,"throughput_eps":0,"last_update":"2026-03-22T10:01:37.479586272Z"} +2026/03/22 10:01:42 [transform_engine] {"stage_name":"transform_engine","events_processed":480,"events_dropped":0,"avg_latency_ms":706.0398524470112,"throughput_eps":0,"last_update":"2026-03-22T10:01:37.479554592Z"} +2026/03/22 10:01:42 ───────────────────────────────────────────────── +2026/03/22 10:01:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:01:47 [log_collector] {"stage_name":"log_collector","events_processed":22690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4538,"last_update":"2026-03-22T10:01:42.368603387Z"} +2026/03/22 10:01:47 [metric_collector] {"stage_name":"metric_collector","events_processed":14414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2882.8,"last_update":"2026-03-22T10:01:42.369137Z"} +2026/03/22 10:01:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5768,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:01:42.377767042Z"} +2026/03/22 10:01:47 [detection_layer] {"stage_name":"detection_layer","events_processed":480,"events_dropped":0,"avg_latency_ms":17.708950157144887,"throughput_eps":0,"last_update":"2026-03-22T10:01:42.478970586Z"} +2026/03/22 10:01:47 [transform_engine] {"stage_name":"transform_engine","events_processed":480,"events_dropped":0,"avg_latency_ms":706.0398524470112,"throughput_eps":0,"last_update":"2026-03-22T10:01:42.479006264Z"} +2026/03/22 10:01:47 ───────────────────────────────────────────────── +2026/03/22 10:01:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:01:52 [metric_collector] {"stage_name":"metric_collector","events_processed":14419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2883.8,"last_update":"2026-03-22T10:01:47.368761089Z"} +2026/03/22 10:01:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5770,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:01:47.376933394Z"} +2026/03/22 10:01:52 [detection_layer] {"stage_name":"detection_layer","events_processed":480,"events_dropped":0,"avg_latency_ms":17.708950157144887,"throughput_eps":0,"last_update":"2026-03-22T10:01:47.479219122Z"} +2026/03/22 10:01:52 [transform_engine] {"stage_name":"transform_engine","events_processed":480,"events_dropped":0,"avg_latency_ms":706.0398524470112,"throughput_eps":0,"last_update":"2026-03-22T10:01:47.47917656Z"} +2026/03/22 10:01:52 [log_collector] {"stage_name":"log_collector","events_processed":22690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4538,"last_update":"2026-03-22T10:01:47.367996835Z"} +2026/03/22 10:01:52 ───────────────────────────────────────────────── +2026/03/22 10:01:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:01:57 [log_collector] {"stage_name":"log_collector","events_processed":22690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4538,"last_update":"2026-03-22T10:01:52.367975058Z"} +2026/03/22 10:01:57 [metric_collector] {"stage_name":"metric_collector","events_processed":14424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2884.8,"last_update":"2026-03-22T10:01:52.368246318Z"} +2026/03/22 10:01:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:01:52.377691993Z"} +2026/03/22 10:01:57 [detection_layer] {"stage_name":"detection_layer","events_processed":480,"events_dropped":0,"avg_latency_ms":17.708950157144887,"throughput_eps":0,"last_update":"2026-03-22T10:01:52.479014615Z"} +2026/03/22 10:01:57 [transform_engine] {"stage_name":"transform_engine","events_processed":480,"events_dropped":0,"avg_latency_ms":706.0398524470112,"throughput_eps":0,"last_update":"2026-03-22T10:01:52.478898291Z"} +2026/03/22 10:01:57 ───────────────────────────────────────────────── +2026/03/22 10:02:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:02:02 [detection_layer] {"stage_name":"detection_layer","events_processed":480,"events_dropped":0,"avg_latency_ms":17.708950157144887,"throughput_eps":0,"last_update":"2026-03-22T10:01:57.479400434Z"} +2026/03/22 10:02:02 [transform_engine] {"stage_name":"transform_engine","events_processed":481,"events_dropped":0,"avg_latency_ms":579.039471957609,"throughput_eps":0,"last_update":"2026-03-22T10:01:57.550382837Z"} +2026/03/22 10:02:02 [log_collector] {"stage_name":"log_collector","events_processed":22690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4538,"last_update":"2026-03-22T10:01:57.36799127Z"} +2026/03/22 10:02:02 [metric_collector] {"stage_name":"metric_collector","events_processed":14429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2885.8,"last_update":"2026-03-22T10:01:57.368553818Z"} +2026/03/22 10:02:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:01:57.377981187Z"} +2026/03/22 10:02:02 ───────────────────────────────────────────────── +2026/03/22 10:02:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:02:07 [log_collector] {"stage_name":"log_collector","events_processed":22690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4538,"last_update":"2026-03-22T10:02:02.368388928Z"} +2026/03/22 10:02:07 [metric_collector] {"stage_name":"metric_collector","events_processed":14434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2886.8,"last_update":"2026-03-22T10:02:02.368884407Z"} +2026/03/22 10:02:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:02:02.377330245Z"} +2026/03/22 10:02:07 [detection_layer] {"stage_name":"detection_layer","events_processed":481,"events_dropped":0,"avg_latency_ms":18.41408552571591,"throughput_eps":0,"last_update":"2026-03-22T10:02:02.479542662Z"} +2026/03/22 10:02:07 [transform_engine] {"stage_name":"transform_engine","events_processed":481,"events_dropped":0,"avg_latency_ms":579.039471957609,"throughput_eps":0,"last_update":"2026-03-22T10:02:02.479650609Z"} +2026/03/22 10:02:07 ───────────────────────────────────────────────── +2026/03/22 10:02:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:02:12 [log_collector] {"stage_name":"log_collector","events_processed":22690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4538,"last_update":"2026-03-22T10:02:07.367975036Z"} +2026/03/22 10:02:12 [metric_collector] {"stage_name":"metric_collector","events_processed":14439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2887.8,"last_update":"2026-03-22T10:02:07.368262607Z"} +2026/03/22 10:02:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:02:07.377901491Z"} +2026/03/22 10:02:12 [detection_layer] {"stage_name":"detection_layer","events_processed":481,"events_dropped":0,"avg_latency_ms":18.41408552571591,"throughput_eps":0,"last_update":"2026-03-22T10:02:07.479154821Z"} +2026/03/22 10:02:12 [transform_engine] {"stage_name":"transform_engine","events_processed":481,"events_dropped":0,"avg_latency_ms":579.039471957609,"throughput_eps":0,"last_update":"2026-03-22T10:02:07.479168407Z"} +2026/03/22 10:02:12 ───────────────────────────────────────────────── +2026/03/22 10:02:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:02:17 [log_collector] {"stage_name":"log_collector","events_processed":22690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4538,"last_update":"2026-03-22T10:02:12.369052779Z"} +2026/03/22 10:02:17 [metric_collector] {"stage_name":"metric_collector","events_processed":14444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2888.8,"last_update":"2026-03-22T10:02:12.36938219Z"} +2026/03/22 10:02:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5780,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:02:12.37956187Z"} +2026/03/22 10:02:17 [detection_layer] {"stage_name":"detection_layer","events_processed":481,"events_dropped":0,"avg_latency_ms":18.41408552571591,"throughput_eps":0,"last_update":"2026-03-22T10:02:12.479755229Z"} +2026/03/22 10:02:17 [transform_engine] {"stage_name":"transform_engine","events_processed":481,"events_dropped":0,"avg_latency_ms":579.039471957609,"throughput_eps":0,"last_update":"2026-03-22T10:02:12.479768064Z"} +2026/03/22 10:02:17 ───────────────────────────────────────────────── +Saved state: 13 clusters, 22691 messages, reason: none +2026/03/22 10:02:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:02:22 [log_collector] {"stage_name":"log_collector","events_processed":22703,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4540.6,"last_update":"2026-03-22T10:02:22.36892636Z"} +2026/03/22 10:02:22 [metric_collector] {"stage_name":"metric_collector","events_processed":14449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2889.8,"last_update":"2026-03-22T10:02:17.369909284Z"} +2026/03/22 10:02:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5782,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:02:17.378359862Z"} +2026/03/22 10:02:22 [detection_layer] {"stage_name":"detection_layer","events_processed":481,"events_dropped":0,"avg_latency_ms":18.41408552571591,"throughput_eps":0,"last_update":"2026-03-22T10:02:17.479710938Z"} +2026/03/22 10:02:22 [transform_engine] {"stage_name":"transform_engine","events_processed":481,"events_dropped":0,"avg_latency_ms":579.039471957609,"throughput_eps":0,"last_update":"2026-03-22T10:02:17.479694718Z"} +2026/03/22 10:02:22 ───────────────────────────────────────────────── +2026/03/22 10:02:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:02:27 [log_collector] {"stage_name":"log_collector","events_processed":22704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4540.8,"last_update":"2026-03-22T10:02:27.36805195Z"} +2026/03/22 10:02:27 [metric_collector] {"stage_name":"metric_collector","events_processed":14459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2891.8,"last_update":"2026-03-22T10:02:27.368374538Z"} +2026/03/22 10:02:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:02:22.376212427Z"} +2026/03/22 10:02:27 [detection_layer] {"stage_name":"detection_layer","events_processed":481,"events_dropped":0,"avg_latency_ms":18.41408552571591,"throughput_eps":0,"last_update":"2026-03-22T10:02:22.479376877Z"} +2026/03/22 10:02:27 [transform_engine] {"stage_name":"transform_engine","events_processed":481,"events_dropped":0,"avg_latency_ms":579.039471957609,"throughput_eps":0,"last_update":"2026-03-22T10:02:22.479402427Z"} +2026/03/22 10:02:27 ───────────────────────────────────────────────── +2026/03/22 10:02:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:02:32 [metric_collector] {"stage_name":"metric_collector","events_processed":14459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2891.8,"last_update":"2026-03-22T10:02:27.368374538Z"} +2026/03/22 10:02:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:02:27.377300477Z"} +2026/03/22 10:02:32 [detection_layer] {"stage_name":"detection_layer","events_processed":481,"events_dropped":0,"avg_latency_ms":18.41408552571591,"throughput_eps":0,"last_update":"2026-03-22T10:02:27.479723727Z"} +2026/03/22 10:02:32 [transform_engine] {"stage_name":"transform_engine","events_processed":481,"events_dropped":0,"avg_latency_ms":579.039471957609,"throughput_eps":0,"last_update":"2026-03-22T10:02:27.479685924Z"} +2026/03/22 10:02:32 [log_collector] {"stage_name":"log_collector","events_processed":22704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4540.8,"last_update":"2026-03-22T10:02:27.36805195Z"} +2026/03/22 10:02:32 ───────────────────────────────────────────────── +2026/03/22 10:02:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:02:37 [log_collector] {"stage_name":"log_collector","events_processed":22704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4540.8,"last_update":"2026-03-22T10:02:32.368894666Z"} +2026/03/22 10:02:37 [metric_collector] {"stage_name":"metric_collector","events_processed":14464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2892.8,"last_update":"2026-03-22T10:02:32.368909504Z"} +2026/03/22 10:02:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:02:32.377662201Z"} +2026/03/22 10:02:37 [detection_layer] {"stage_name":"detection_layer","events_processed":482,"events_dropped":0,"avg_latency_ms":18.48172282057273,"throughput_eps":0,"last_update":"2026-03-22T10:02:32.479946805Z"} +2026/03/22 10:02:37 [transform_engine] {"stage_name":"transform_engine","events_processed":482,"events_dropped":0,"avg_latency_ms":487.7896045660872,"throughput_eps":0,"last_update":"2026-03-22T10:02:32.478826869Z"} +2026/03/22 10:02:37 ───────────────────────────────────────────────── +2026/03/22 10:02:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:02:42 [log_collector] {"stage_name":"log_collector","events_processed":22704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4540.8,"last_update":"2026-03-22T10:02:37.36821923Z"} +2026/03/22 10:02:42 [metric_collector] {"stage_name":"metric_collector","events_processed":14469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2893.8,"last_update":"2026-03-22T10:02:37.36901257Z"} +2026/03/22 10:02:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:02:37.377167051Z"} +2026/03/22 10:02:42 [detection_layer] {"stage_name":"detection_layer","events_processed":482,"events_dropped":0,"avg_latency_ms":18.48172282057273,"throughput_eps":0,"last_update":"2026-03-22T10:02:37.479410868Z"} +2026/03/22 10:02:42 [transform_engine] {"stage_name":"transform_engine","events_processed":482,"events_dropped":0,"avg_latency_ms":487.7896045660872,"throughput_eps":0,"last_update":"2026-03-22T10:02:37.479454571Z"} +2026/03/22 10:02:42 ───────────────────────────────────────────────── +2026/03/22 10:02:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:02:47 [metric_collector] {"stage_name":"metric_collector","events_processed":14474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2894.8,"last_update":"2026-03-22T10:02:42.36875461Z"} +2026/03/22 10:02:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:02:42.377428946Z"} +2026/03/22 10:02:47 [detection_layer] {"stage_name":"detection_layer","events_processed":482,"events_dropped":0,"avg_latency_ms":18.48172282057273,"throughput_eps":0,"last_update":"2026-03-22T10:02:42.47997985Z"} +2026/03/22 10:02:47 [transform_engine] {"stage_name":"transform_engine","events_processed":482,"events_dropped":0,"avg_latency_ms":487.7896045660872,"throughput_eps":0,"last_update":"2026-03-22T10:02:42.479945164Z"} +2026/03/22 10:02:47 [log_collector] {"stage_name":"log_collector","events_processed":22704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4540.8,"last_update":"2026-03-22T10:02:47.368793974Z"} +2026/03/22 10:02:47 ───────────────────────────────────────────────── +2026/03/22 10:02:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:02:52 [detection_layer] {"stage_name":"detection_layer","events_processed":482,"events_dropped":0,"avg_latency_ms":18.48172282057273,"throughput_eps":0,"last_update":"2026-03-22T10:02:47.479690114Z"} +2026/03/22 10:02:52 [transform_engine] {"stage_name":"transform_engine","events_processed":482,"events_dropped":0,"avg_latency_ms":487.7896045660872,"throughput_eps":0,"last_update":"2026-03-22T10:02:47.479568872Z"} +2026/03/22 10:02:52 [log_collector] {"stage_name":"log_collector","events_processed":22704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4540.8,"last_update":"2026-03-22T10:02:52.368645806Z"} +2026/03/22 10:02:52 [metric_collector] {"stage_name":"metric_collector","events_processed":14479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2895.8,"last_update":"2026-03-22T10:02:47.369149545Z"} +2026/03/22 10:02:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:02:47.37817835Z"} +2026/03/22 10:02:52 ───────────────────────────────────────────────── +2026/03/22 10:02:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:02:57 [metric_collector] {"stage_name":"metric_collector","events_processed":14484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2896.8,"last_update":"2026-03-22T10:02:52.369306832Z"} +2026/03/22 10:02:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5796,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:02:52.377683198Z"} +2026/03/22 10:02:57 [detection_layer] {"stage_name":"detection_layer","events_processed":482,"events_dropped":0,"avg_latency_ms":18.48172282057273,"throughput_eps":0,"last_update":"2026-03-22T10:02:52.479004146Z"} +2026/03/22 10:02:57 [transform_engine] {"stage_name":"transform_engine","events_processed":482,"events_dropped":0,"avg_latency_ms":487.7896045660872,"throughput_eps":0,"last_update":"2026-03-22T10:02:52.47889145Z"} +2026/03/22 10:02:57 [log_collector] {"stage_name":"log_collector","events_processed":22704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4540.8,"last_update":"2026-03-22T10:02:52.368645806Z"} +2026/03/22 10:02:57 ───────────────────────────────────────────────── +2026/03/22 10:03:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:03:02 [log_collector] {"stage_name":"log_collector","events_processed":22704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4540.8,"last_update":"2026-03-22T10:02:57.368662079Z"} +2026/03/22 10:03:02 [metric_collector] {"stage_name":"metric_collector","events_processed":14489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2897.8,"last_update":"2026-03-22T10:02:57.369266417Z"} +2026/03/22 10:03:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:02:57.377226616Z"} +2026/03/22 10:03:02 [detection_layer] {"stage_name":"detection_layer","events_processed":482,"events_dropped":0,"avg_latency_ms":18.48172282057273,"throughput_eps":0,"last_update":"2026-03-22T10:02:57.479506902Z"} +2026/03/22 10:03:02 [transform_engine] {"stage_name":"transform_engine","events_processed":483,"events_dropped":0,"avg_latency_ms":407.01289545286977,"throughput_eps":0,"last_update":"2026-03-22T10:02:57.563340692Z"} +2026/03/22 10:03:02 ───────────────────────────────────────────────── +2026/03/22 10:03:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:03:07 [transform_engine] {"stage_name":"transform_engine","events_processed":483,"events_dropped":0,"avg_latency_ms":407.01289545286977,"throughput_eps":0,"last_update":"2026-03-22T10:03:02.479602453Z"} +2026/03/22 10:03:07 [log_collector] {"stage_name":"log_collector","events_processed":22704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4540.8,"last_update":"2026-03-22T10:03:02.368711793Z"} +2026/03/22 10:03:07 [metric_collector] {"stage_name":"metric_collector","events_processed":14494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2898.8,"last_update":"2026-03-22T10:03:02.369561571Z"} +2026/03/22 10:03:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5800,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:03:02.378383551Z"} +2026/03/22 10:03:07 [detection_layer] {"stage_name":"detection_layer","events_processed":483,"events_dropped":0,"avg_latency_ms":19.012042856458187,"throughput_eps":0,"last_update":"2026-03-22T10:03:02.479634214Z"} +2026/03/22 10:03:07 ───────────────────────────────────────────────── +2026/03/22 10:03:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:03:12 [log_collector] {"stage_name":"log_collector","events_processed":22704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4540.8,"last_update":"2026-03-22T10:03:07.368003901Z"} +2026/03/22 10:03:12 [metric_collector] {"stage_name":"metric_collector","events_processed":14499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2899.8,"last_update":"2026-03-22T10:03:07.368644518Z"} +2026/03/22 10:03:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5802,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:03:07.377081168Z"} +2026/03/22 10:03:12 [detection_layer] {"stage_name":"detection_layer","events_processed":483,"events_dropped":0,"avg_latency_ms":19.012042856458187,"throughput_eps":0,"last_update":"2026-03-22T10:03:07.479377455Z"} +2026/03/22 10:03:12 [transform_engine] {"stage_name":"transform_engine","events_processed":483,"events_dropped":0,"avg_latency_ms":407.01289545286977,"throughput_eps":0,"last_update":"2026-03-22T10:03:07.479313091Z"} +2026/03/22 10:03:12 ───────────────────────────────────────────────── +2026/03/22 10:03:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:03:17 [transform_engine] {"stage_name":"transform_engine","events_processed":483,"events_dropped":0,"avg_latency_ms":407.01289545286977,"throughput_eps":0,"last_update":"2026-03-22T10:03:12.479162855Z"} +2026/03/22 10:03:17 [log_collector] {"stage_name":"log_collector","events_processed":22704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4540.8,"last_update":"2026-03-22T10:03:17.368340022Z"} +2026/03/22 10:03:17 [metric_collector] {"stage_name":"metric_collector","events_processed":14504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2900.8,"last_update":"2026-03-22T10:03:12.36831052Z"} +2026/03/22 10:03:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:03:12.377869811Z"} +2026/03/22 10:03:17 [detection_layer] {"stage_name":"detection_layer","events_processed":483,"events_dropped":0,"avg_latency_ms":19.012042856458187,"throughput_eps":0,"last_update":"2026-03-22T10:03:12.479200808Z"} +2026/03/22 10:03:17 ───────────────────────────────────────────────── +2026/03/22 10:03:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:03:22 [log_collector] {"stage_name":"log_collector","events_processed":22704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4540.8,"last_update":"2026-03-22T10:03:17.368340022Z"} +2026/03/22 10:03:22 [metric_collector] {"stage_name":"metric_collector","events_processed":14509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2901.8,"last_update":"2026-03-22T10:03:17.368843837Z"} +2026/03/22 10:03:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:03:17.378599545Z"} +2026/03/22 10:03:22 [detection_layer] {"stage_name":"detection_layer","events_processed":483,"events_dropped":0,"avg_latency_ms":19.012042856458187,"throughput_eps":0,"last_update":"2026-03-22T10:03:17.479803459Z"} +2026/03/22 10:03:22 [transform_engine] {"stage_name":"transform_engine","events_processed":483,"events_dropped":0,"avg_latency_ms":407.01289545286977,"throughput_eps":0,"last_update":"2026-03-22T10:03:17.479845499Z"} +2026/03/22 10:03:22 ───────────────────────────────────────────────── +2026/03/22 10:03:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:03:27 [transform_engine] {"stage_name":"transform_engine","events_processed":483,"events_dropped":0,"avg_latency_ms":407.01289545286977,"throughput_eps":0,"last_update":"2026-03-22T10:03:22.479325127Z"} +2026/03/22 10:03:27 [log_collector] {"stage_name":"log_collector","events_processed":22704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4540.8,"last_update":"2026-03-22T10:03:22.368745643Z"} +2026/03/22 10:03:27 [metric_collector] {"stage_name":"metric_collector","events_processed":14514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2902.8,"last_update":"2026-03-22T10:03:22.369188532Z"} +2026/03/22 10:03:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:03:22.378092498Z"} +2026/03/22 10:03:27 [detection_layer] {"stage_name":"detection_layer","events_processed":483,"events_dropped":0,"avg_latency_ms":19.012042856458187,"throughput_eps":0,"last_update":"2026-03-22T10:03:22.479291583Z"} +2026/03/22 10:03:27 ───────────────────────────────────────────────── +Saved state: 13 clusters, 22705 messages, reason: none +2026/03/22 10:03:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:03:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:03:27.377260053Z"} +2026/03/22 10:03:32 [detection_layer] {"stage_name":"detection_layer","events_processed":483,"events_dropped":0,"avg_latency_ms":19.012042856458187,"throughput_eps":0,"last_update":"2026-03-22T10:03:27.479151804Z"} +2026/03/22 10:03:32 [transform_engine] {"stage_name":"transform_engine","events_processed":484,"events_dropped":0,"avg_latency_ms":352.66670096229586,"throughput_eps":0,"last_update":"2026-03-22T10:03:27.614334305Z"} +2026/03/22 10:03:32 [log_collector] {"stage_name":"log_collector","events_processed":22704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4540.8,"last_update":"2026-03-22T10:03:27.368326389Z"} +2026/03/22 10:03:32 [metric_collector] {"stage_name":"metric_collector","events_processed":14519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2903.8,"last_update":"2026-03-22T10:03:27.369488676Z"} +2026/03/22 10:03:32 ───────────────────────────────────────────────── +2026/03/22 10:03:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:03:37 [log_collector] {"stage_name":"log_collector","events_processed":22709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4541.8,"last_update":"2026-03-22T10:03:32.36900213Z"} +2026/03/22 10:03:37 [metric_collector] {"stage_name":"metric_collector","events_processed":14524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2904.8,"last_update":"2026-03-22T10:03:32.369541523Z"} +2026/03/22 10:03:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5812,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:03:32.376022919Z"} +2026/03/22 10:03:37 [detection_layer] {"stage_name":"detection_layer","events_processed":484,"events_dropped":0,"avg_latency_ms":20.309288885166552,"throughput_eps":0,"last_update":"2026-03-22T10:03:32.479325934Z"} +2026/03/22 10:03:37 [transform_engine] {"stage_name":"transform_engine","events_processed":484,"events_dropped":0,"avg_latency_ms":352.66670096229586,"throughput_eps":0,"last_update":"2026-03-22T10:03:32.4793398Z"} +2026/03/22 10:03:37 ───────────────────────────────────────────────── +2026/03/22 10:03:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:03:42 [detection_layer] {"stage_name":"detection_layer","events_processed":484,"events_dropped":0,"avg_latency_ms":20.309288885166552,"throughput_eps":0,"last_update":"2026-03-22T10:03:37.480021208Z"} +2026/03/22 10:03:42 [transform_engine] {"stage_name":"transform_engine","events_processed":484,"events_dropped":0,"avg_latency_ms":352.66670096229586,"throughput_eps":0,"last_update":"2026-03-22T10:03:37.478908377Z"} +2026/03/22 10:03:42 [log_collector] {"stage_name":"log_collector","events_processed":22709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4541.8,"last_update":"2026-03-22T10:03:37.368469954Z"} +2026/03/22 10:03:42 [metric_collector] {"stage_name":"metric_collector","events_processed":14529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2905.8,"last_update":"2026-03-22T10:03:37.368889418Z"} +2026/03/22 10:03:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:03:37.377793744Z"} +2026/03/22 10:03:42 ───────────────────────────────────────────────── +2026/03/22 10:03:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:03:47 [log_collector] {"stage_name":"log_collector","events_processed":22709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4541.8,"last_update":"2026-03-22T10:03:47.368635536Z"} +2026/03/22 10:03:47 [metric_collector] {"stage_name":"metric_collector","events_processed":14534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2906.8,"last_update":"2026-03-22T10:03:42.368158888Z"} +2026/03/22 10:03:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5816,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:03:42.373974467Z"} +2026/03/22 10:03:47 [detection_layer] {"stage_name":"detection_layer","events_processed":484,"events_dropped":0,"avg_latency_ms":20.309288885166552,"throughput_eps":0,"last_update":"2026-03-22T10:03:42.479408845Z"} +2026/03/22 10:03:47 [transform_engine] {"stage_name":"transform_engine","events_processed":484,"events_dropped":0,"avg_latency_ms":352.66670096229586,"throughput_eps":0,"last_update":"2026-03-22T10:03:42.479169295Z"} +2026/03/22 10:03:47 ───────────────────────────────────────────────── +2026/03/22 10:03:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:03:52 [log_collector] {"stage_name":"log_collector","events_processed":22709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4541.8,"last_update":"2026-03-22T10:03:47.368635536Z"} +2026/03/22 10:03:52 [metric_collector] {"stage_name":"metric_collector","events_processed":14539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2907.8,"last_update":"2026-03-22T10:03:47.369134251Z"} +2026/03/22 10:03:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5818,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:03:47.379128616Z"} +2026/03/22 10:03:52 [detection_layer] {"stage_name":"detection_layer","events_processed":484,"events_dropped":0,"avg_latency_ms":20.309288885166552,"throughput_eps":0,"last_update":"2026-03-22T10:03:47.479274201Z"} +2026/03/22 10:03:52 [transform_engine] {"stage_name":"transform_engine","events_processed":484,"events_dropped":0,"avg_latency_ms":352.66670096229586,"throughput_eps":0,"last_update":"2026-03-22T10:03:47.479251569Z"} +2026/03/22 10:03:52 ───────────────────────────────────────────────── +2026/03/22 10:03:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:03:57 [log_collector] {"stage_name":"log_collector","events_processed":22709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4541.8,"last_update":"2026-03-22T10:03:52.368211634Z"} +2026/03/22 10:03:57 [metric_collector] {"stage_name":"metric_collector","events_processed":14544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2908.8,"last_update":"2026-03-22T10:03:52.368494226Z"} +2026/03/22 10:03:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5820,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:03:52.376195849Z"} +2026/03/22 10:03:57 [detection_layer] {"stage_name":"detection_layer","events_processed":484,"events_dropped":0,"avg_latency_ms":20.309288885166552,"throughput_eps":0,"last_update":"2026-03-22T10:03:52.479423859Z"} +2026/03/22 10:03:57 [transform_engine] {"stage_name":"transform_engine","events_processed":484,"events_dropped":0,"avg_latency_ms":352.66670096229586,"throughput_eps":0,"last_update":"2026-03-22T10:03:52.479460639Z"} +2026/03/22 10:03:57 ───────────────────────────────────────────────── +2026/03/22 10:04:01 [ANOMALY] time=2026-03-22T10:04:01Z score=0.7856 method=SEAD details=MAD!:w=0.54,s=0.70 RRCF-fast!:w=0.11,s=0.91 RRCF-mid:w=0.10,s=0.87 RRCF-slow!:w=0.10,s=0.89 COPOD!:w=0.14,s=0.87 +2026/03/22 10:04:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:04:02 [transform_engine] {"stage_name":"transform_engine","events_processed":485,"events_dropped":0,"avg_latency_ms":1011.0220091698367,"throughput_eps":0,"last_update":"2026-03-22T10:04:01.123857653Z"} +2026/03/22 10:04:02 [log_collector] {"stage_name":"log_collector","events_processed":22709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4541.8,"last_update":"2026-03-22T10:04:02.368341588Z"} +2026/03/22 10:04:02 [metric_collector] {"stage_name":"metric_collector","events_processed":14549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2909.8,"last_update":"2026-03-22T10:03:57.368368244Z"} +2026/03/22 10:04:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:03:57.375219087Z"} +2026/03/22 10:04:02 [detection_layer] {"stage_name":"detection_layer","events_processed":484,"events_dropped":0,"avg_latency_ms":20.309288885166552,"throughput_eps":0,"last_update":"2026-03-22T10:03:57.479374985Z"} +2026/03/22 10:04:02 ───────────────────────────────────────────────── +2026/03/22 10:04:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:04:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:04:02.374370938Z"} +2026/03/22 10:04:07 [detection_layer] {"stage_name":"detection_layer","events_processed":485,"events_dropped":0,"avg_latency_ms":18.69734810813324,"throughput_eps":0,"last_update":"2026-03-22T10:04:02.479468349Z"} +2026/03/22 10:04:07 [transform_engine] {"stage_name":"transform_engine","events_processed":485,"events_dropped":0,"avg_latency_ms":1011.0220091698367,"throughput_eps":0,"last_update":"2026-03-22T10:04:02.479444824Z"} +2026/03/22 10:04:07 [log_collector] {"stage_name":"log_collector","events_processed":22709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4541.8,"last_update":"2026-03-22T10:04:07.368854382Z"} +2026/03/22 10:04:07 [metric_collector] {"stage_name":"metric_collector","events_processed":14554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2910.8,"last_update":"2026-03-22T10:04:02.3686398Z"} +2026/03/22 10:04:07 ───────────────────────────────────────────────── +2026/03/22 10:04:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:04:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5826,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:04:07.375883597Z"} +2026/03/22 10:04:12 [detection_layer] {"stage_name":"detection_layer","events_processed":485,"events_dropped":0,"avg_latency_ms":18.69734810813324,"throughput_eps":0,"last_update":"2026-03-22T10:04:07.479077813Z"} +2026/03/22 10:04:12 [transform_engine] {"stage_name":"transform_engine","events_processed":485,"events_dropped":0,"avg_latency_ms":1011.0220091698367,"throughput_eps":0,"last_update":"2026-03-22T10:04:07.479108862Z"} +2026/03/22 10:04:12 [log_collector] {"stage_name":"log_collector","events_processed":22709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4541.8,"last_update":"2026-03-22T10:04:07.368854382Z"} +2026/03/22 10:04:12 [metric_collector] {"stage_name":"metric_collector","events_processed":14559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2911.8,"last_update":"2026-03-22T10:04:07.368983419Z"} +2026/03/22 10:04:12 ───────────────────────────────────────────────── +2026/03/22 10:04:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:04:17 [log_collector] {"stage_name":"log_collector","events_processed":22914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4582.8,"last_update":"2026-03-22T10:04:17.368889025Z"} +2026/03/22 10:04:17 [metric_collector] {"stage_name":"metric_collector","events_processed":14564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2912.8,"last_update":"2026-03-22T10:04:12.368626324Z"} +2026/03/22 10:04:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:04:12.374847211Z"} +2026/03/22 10:04:17 [detection_layer] {"stage_name":"detection_layer","events_processed":485,"events_dropped":0,"avg_latency_ms":18.69734810813324,"throughput_eps":0,"last_update":"2026-03-22T10:04:12.479069255Z"} +2026/03/22 10:04:17 [transform_engine] {"stage_name":"transform_engine","events_processed":485,"events_dropped":0,"avg_latency_ms":1011.0220091698367,"throughput_eps":0,"last_update":"2026-03-22T10:04:12.479052374Z"} +2026/03/22 10:04:17 ───────────────────────────────────────────────── +2026/03/22 10:04:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:04:22 [log_collector] {"stage_name":"log_collector","events_processed":22914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4582.8,"last_update":"2026-03-22T10:04:17.368889025Z"} +2026/03/22 10:04:22 [metric_collector] {"stage_name":"metric_collector","events_processed":14569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2913.8,"last_update":"2026-03-22T10:04:17.369107985Z"} +2026/03/22 10:04:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5830,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:04:17.376557635Z"} +2026/03/22 10:04:22 [detection_layer] {"stage_name":"detection_layer","events_processed":485,"events_dropped":0,"avg_latency_ms":18.69734810813324,"throughput_eps":0,"last_update":"2026-03-22T10:04:17.4794907Z"} +2026/03/22 10:04:22 [transform_engine] {"stage_name":"transform_engine","events_processed":485,"events_dropped":0,"avg_latency_ms":1011.0220091698367,"throughput_eps":0,"last_update":"2026-03-22T10:04:17.479478316Z"} +2026/03/22 10:04:22 ───────────────────────────────────────────────── +2026/03/22 10:04:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:04:27 [log_collector] {"stage_name":"log_collector","events_processed":23055,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4611,"last_update":"2026-03-22T10:04:22.36883361Z"} +2026/03/22 10:04:27 [metric_collector] {"stage_name":"metric_collector","events_processed":14574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2914.8,"last_update":"2026-03-22T10:04:22.368879438Z"} +2026/03/22 10:04:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5832,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:04:22.376273262Z"} +2026/03/22 10:04:27 [detection_layer] {"stage_name":"detection_layer","events_processed":485,"events_dropped":0,"avg_latency_ms":18.69734810813324,"throughput_eps":0,"last_update":"2026-03-22T10:04:22.479918842Z"} +2026/03/22 10:04:27 [transform_engine] {"stage_name":"transform_engine","events_processed":485,"events_dropped":0,"avg_latency_ms":1011.0220091698367,"throughput_eps":0,"last_update":"2026-03-22T10:04:22.478860444Z"} +2026/03/22 10:04:27 ───────────────────────────────────────────────── +2026/03/22 10:04:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:04:32 [log_collector] {"stage_name":"log_collector","events_processed":23085,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4617,"last_update":"2026-03-22T10:04:32.368681142Z"} +2026/03/22 10:04:32 [metric_collector] {"stage_name":"metric_collector","events_processed":14579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2915.8,"last_update":"2026-03-22T10:04:27.369190081Z"} +2026/03/22 10:04:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:04:27.378253803Z"} +2026/03/22 10:04:32 [detection_layer] {"stage_name":"detection_layer","events_processed":485,"events_dropped":0,"avg_latency_ms":18.69734810813324,"throughput_eps":0,"last_update":"2026-03-22T10:04:27.479588948Z"} +2026/03/22 10:04:32 [transform_engine] {"stage_name":"transform_engine","events_processed":486,"events_dropped":0,"avg_latency_ms":832.8660657358694,"throughput_eps":0,"last_update":"2026-03-22T10:04:27.599858332Z"} +2026/03/22 10:04:32 ───────────────────────────────────────────────── +2026/03/22 10:04:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:04:37 [metric_collector] {"stage_name":"metric_collector","events_processed":14584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2916.8,"last_update":"2026-03-22T10:04:32.369092941Z"} +2026/03/22 10:04:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:04:32.377531055Z"} +2026/03/22 10:04:37 [detection_layer] {"stage_name":"detection_layer","events_processed":486,"events_dropped":0,"avg_latency_ms":18.572091686506596,"throughput_eps":0,"last_update":"2026-03-22T10:04:32.479852428Z"} +2026/03/22 10:04:37 [transform_engine] {"stage_name":"transform_engine","events_processed":486,"events_dropped":0,"avg_latency_ms":832.8660657358694,"throughput_eps":0,"last_update":"2026-03-22T10:04:32.479959102Z"} +2026/03/22 10:04:37 [log_collector] {"stage_name":"log_collector","events_processed":23085,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4617,"last_update":"2026-03-22T10:04:37.368526128Z"} +2026/03/22 10:04:37 ───────────────────────────────────────────────── +2026/03/22 10:04:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:04:42 [log_collector] {"stage_name":"log_collector","events_processed":23085,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4617,"last_update":"2026-03-22T10:04:42.368034415Z"} +2026/03/22 10:04:42 [metric_collector] {"stage_name":"metric_collector","events_processed":14589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2917.8,"last_update":"2026-03-22T10:04:37.368954298Z"} +2026/03/22 10:04:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:04:37.378265374Z"} +2026/03/22 10:04:42 [detection_layer] {"stage_name":"detection_layer","events_processed":486,"events_dropped":0,"avg_latency_ms":18.572091686506596,"throughput_eps":0,"last_update":"2026-03-22T10:04:37.479626488Z"} +2026/03/22 10:04:42 [transform_engine] {"stage_name":"transform_engine","events_processed":486,"events_dropped":0,"avg_latency_ms":832.8660657358694,"throughput_eps":0,"last_update":"2026-03-22T10:04:37.47959601Z"} +2026/03/22 10:04:42 ───────────────────────────────────────────────── +2026/03/22 10:04:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:04:47 [metric_collector] {"stage_name":"metric_collector","events_processed":14594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2918.8,"last_update":"2026-03-22T10:04:42.368775344Z"} +2026/03/22 10:04:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:04:42.378652194Z"} +2026/03/22 10:04:47 [detection_layer] {"stage_name":"detection_layer","events_processed":486,"events_dropped":0,"avg_latency_ms":18.572091686506596,"throughput_eps":0,"last_update":"2026-03-22T10:04:42.479856858Z"} +2026/03/22 10:04:47 [transform_engine] {"stage_name":"transform_engine","events_processed":486,"events_dropped":0,"avg_latency_ms":832.8660657358694,"throughput_eps":0,"last_update":"2026-03-22T10:04:42.479993501Z"} +2026/03/22 10:04:47 [log_collector] {"stage_name":"log_collector","events_processed":23085,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4617,"last_update":"2026-03-22T10:04:42.368034415Z"} +2026/03/22 10:04:47 ───────────────────────────────────────────────── +2026/03/22 10:04:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:04:52 [transform_engine] {"stage_name":"transform_engine","events_processed":486,"events_dropped":0,"avg_latency_ms":832.8660657358694,"throughput_eps":0,"last_update":"2026-03-22T10:04:47.479103512Z"} +2026/03/22 10:04:52 [log_collector] {"stage_name":"log_collector","events_processed":23085,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4617,"last_update":"2026-03-22T10:04:47.367978544Z"} +2026/03/22 10:04:52 [metric_collector] {"stage_name":"metric_collector","events_processed":14599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2919.8,"last_update":"2026-03-22T10:04:47.368322774Z"} +2026/03/22 10:04:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:04:47.376909943Z"} +2026/03/22 10:04:52 [detection_layer] {"stage_name":"detection_layer","events_processed":486,"events_dropped":0,"avg_latency_ms":18.572091686506596,"throughput_eps":0,"last_update":"2026-03-22T10:04:47.479150381Z"} +2026/03/22 10:04:52 ───────────────────────────────────────────────── +2026/03/22 10:04:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:04:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:04:52.378581869Z"} +2026/03/22 10:04:57 [detection_layer] {"stage_name":"detection_layer","events_processed":486,"events_dropped":0,"avg_latency_ms":18.572091686506596,"throughput_eps":0,"last_update":"2026-03-22T10:04:52.479806391Z"} +2026/03/22 10:04:57 [transform_engine] {"stage_name":"transform_engine","events_processed":486,"events_dropped":0,"avg_latency_ms":832.8660657358694,"throughput_eps":0,"last_update":"2026-03-22T10:04:52.479849414Z"} +2026/03/22 10:04:57 [log_collector] {"stage_name":"log_collector","events_processed":23085,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4617,"last_update":"2026-03-22T10:04:52.368003956Z"} +2026/03/22 10:04:57 [metric_collector] {"stage_name":"metric_collector","events_processed":14604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2920.8,"last_update":"2026-03-22T10:04:52.368429521Z"} +2026/03/22 10:04:57 ───────────────────────────────────────────────── +2026/03/22 10:05:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:05:02 [transform_engine] {"stage_name":"transform_engine","events_processed":487,"events_dropped":0,"avg_latency_ms":680.1954577886955,"throughput_eps":0,"last_update":"2026-03-22T10:04:57.548956985Z"} +2026/03/22 10:05:02 [log_collector] {"stage_name":"log_collector","events_processed":23085,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4617,"last_update":"2026-03-22T10:04:57.367980003Z"} +2026/03/22 10:05:02 [metric_collector] {"stage_name":"metric_collector","events_processed":14609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2921.8,"last_update":"2026-03-22T10:04:57.36830219Z"} +2026/03/22 10:05:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:04:57.378045133Z"} +2026/03/22 10:05:02 [detection_layer] {"stage_name":"detection_layer","events_processed":486,"events_dropped":0,"avg_latency_ms":18.572091686506596,"throughput_eps":0,"last_update":"2026-03-22T10:04:57.47927741Z"} +2026/03/22 10:05:02 ───────────────────────────────────────────────── +2026/03/22 10:05:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:05:07 [log_collector] {"stage_name":"log_collector","events_processed":23085,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4617,"last_update":"2026-03-22T10:05:02.368008044Z"} +2026/03/22 10:05:07 [metric_collector] {"stage_name":"metric_collector","events_processed":14614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2922.8,"last_update":"2026-03-22T10:05:02.368534141Z"} +2026/03/22 10:05:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5848,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:05:02.377025627Z"} +2026/03/22 10:05:07 [detection_layer] {"stage_name":"detection_layer","events_processed":487,"events_dropped":0,"avg_latency_ms":19.544551549205277,"throughput_eps":0,"last_update":"2026-03-22T10:05:02.479416404Z"} +2026/03/22 10:05:07 [transform_engine] {"stage_name":"transform_engine","events_processed":487,"events_dropped":0,"avg_latency_ms":680.1954577886955,"throughput_eps":0,"last_update":"2026-03-22T10:05:02.479552254Z"} +2026/03/22 10:05:07 ───────────────────────────────────────────────── +2026/03/22 10:05:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:05:12 [log_collector] {"stage_name":"log_collector","events_processed":23085,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4617,"last_update":"2026-03-22T10:05:07.367986246Z"} +2026/03/22 10:05:12 [metric_collector] {"stage_name":"metric_collector","events_processed":14619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2923.8,"last_update":"2026-03-22T10:05:07.368391552Z"} +2026/03/22 10:05:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:05:07.377811478Z"} +2026/03/22 10:05:12 [detection_layer] {"stage_name":"detection_layer","events_processed":487,"events_dropped":0,"avg_latency_ms":19.544551549205277,"throughput_eps":0,"last_update":"2026-03-22T10:05:07.479211806Z"} +2026/03/22 10:05:12 [transform_engine] {"stage_name":"transform_engine","events_processed":487,"events_dropped":0,"avg_latency_ms":680.1954577886955,"throughput_eps":0,"last_update":"2026-03-22T10:05:07.479249448Z"} +2026/03/22 10:05:12 ───────────────────────────────────────────────── +2026/03/22 10:05:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:05:17 [detection_layer] {"stage_name":"detection_layer","events_processed":487,"events_dropped":0,"avg_latency_ms":19.544551549205277,"throughput_eps":0,"last_update":"2026-03-22T10:05:12.478996273Z"} +2026/03/22 10:05:17 [transform_engine] {"stage_name":"transform_engine","events_processed":487,"events_dropped":0,"avg_latency_ms":680.1954577886955,"throughput_eps":0,"last_update":"2026-03-22T10:05:12.478934996Z"} +2026/03/22 10:05:17 [log_collector] {"stage_name":"log_collector","events_processed":23085,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4617,"last_update":"2026-03-22T10:05:12.368658094Z"} +2026/03/22 10:05:17 [metric_collector] {"stage_name":"metric_collector","events_processed":14624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2924.8,"last_update":"2026-03-22T10:05:12.369326204Z"} +2026/03/22 10:05:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:05:12.377807661Z"} +2026/03/22 10:05:17 ───────────────────────────────────────────────── +2026/03/22 10:05:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:05:22 [log_collector] {"stage_name":"log_collector","events_processed":23085,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4617,"last_update":"2026-03-22T10:05:22.368812344Z"} +2026/03/22 10:05:22 [metric_collector] {"stage_name":"metric_collector","events_processed":14629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2925.8,"last_update":"2026-03-22T10:05:17.368305938Z"} +2026/03/22 10:05:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:05:17.37788597Z"} +2026/03/22 10:05:22 [detection_layer] {"stage_name":"detection_layer","events_processed":487,"events_dropped":0,"avg_latency_ms":19.544551549205277,"throughput_eps":0,"last_update":"2026-03-22T10:05:17.47917798Z"} +2026/03/22 10:05:22 [transform_engine] {"stage_name":"transform_engine","events_processed":487,"events_dropped":0,"avg_latency_ms":680.1954577886955,"throughput_eps":0,"last_update":"2026-03-22T10:05:17.479150458Z"} +2026/03/22 10:05:22 ───────────────────────────────────────────────── +2026/03/22 10:05:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:05:27 [log_collector] {"stage_name":"log_collector","events_processed":23085,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4617,"last_update":"2026-03-22T10:05:22.368812344Z"} +2026/03/22 10:05:27 [metric_collector] {"stage_name":"metric_collector","events_processed":14634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2926.8,"last_update":"2026-03-22T10:05:22.369252438Z"} +2026/03/22 10:05:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:05:22.377703155Z"} +2026/03/22 10:05:27 [detection_layer] {"stage_name":"detection_layer","events_processed":487,"events_dropped":0,"avg_latency_ms":19.544551549205277,"throughput_eps":0,"last_update":"2026-03-22T10:05:22.478960239Z"} +2026/03/22 10:05:27 [transform_engine] {"stage_name":"transform_engine","events_processed":487,"events_dropped":0,"avg_latency_ms":680.1954577886955,"throughput_eps":0,"last_update":"2026-03-22T10:05:22.478919441Z"} +2026/03/22 10:05:27 ───────────────────────────────────────────────── +2026/03/22 10:05:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:05:32 [log_collector] {"stage_name":"log_collector","events_processed":23085,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4617,"last_update":"2026-03-22T10:05:27.368100896Z"} +2026/03/22 10:05:32 [metric_collector] {"stage_name":"metric_collector","events_processed":14639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2927.8,"last_update":"2026-03-22T10:05:27.368784556Z"} +2026/03/22 10:05:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:05:27.376950278Z"} +2026/03/22 10:05:32 [detection_layer] {"stage_name":"detection_layer","events_processed":487,"events_dropped":0,"avg_latency_ms":19.544551549205277,"throughput_eps":0,"last_update":"2026-03-22T10:05:27.47926081Z"} +2026/03/22 10:05:32 [transform_engine] {"stage_name":"transform_engine","events_processed":488,"events_dropped":0,"avg_latency_ms":558.5554106309564,"throughput_eps":0,"last_update":"2026-03-22T10:05:27.551217817Z"} +2026/03/22 10:05:32 ───────────────────────────────────────────────── +Saved state: 13 clusters, 23086 messages, reason: none +2026/03/22 10:05:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:05:37 [log_collector] {"stage_name":"log_collector","events_processed":23085,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4617,"last_update":"2026-03-22T10:05:32.367969434Z"} +2026/03/22 10:05:37 [metric_collector] {"stage_name":"metric_collector","events_processed":14644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2928.8,"last_update":"2026-03-22T10:05:32.368345314Z"} +2026/03/22 10:05:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5860,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:05:32.377315046Z"} +2026/03/22 10:05:37 [detection_layer] {"stage_name":"detection_layer","events_processed":488,"events_dropped":0,"avg_latency_ms":19.979548439364223,"throughput_eps":0,"last_update":"2026-03-22T10:05:32.479531588Z"} +2026/03/22 10:05:37 [transform_engine] {"stage_name":"transform_engine","events_processed":488,"events_dropped":0,"avg_latency_ms":558.5554106309564,"throughput_eps":0,"last_update":"2026-03-22T10:05:32.479502612Z"} +2026/03/22 10:05:37 ───────────────────────────────────────────────── +2026/03/22 10:05:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:05:42 [log_collector] {"stage_name":"log_collector","events_processed":23088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4617.6,"last_update":"2026-03-22T10:05:37.368577206Z"} +2026/03/22 10:05:42 [metric_collector] {"stage_name":"metric_collector","events_processed":14649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2929.8,"last_update":"2026-03-22T10:05:37.368893712Z"} +2026/03/22 10:05:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5862,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:05:37.375832534Z"} +2026/03/22 10:05:42 [detection_layer] {"stage_name":"detection_layer","events_processed":488,"events_dropped":0,"avg_latency_ms":19.979548439364223,"throughput_eps":0,"last_update":"2026-03-22T10:05:37.479046997Z"} +2026/03/22 10:05:42 [transform_engine] {"stage_name":"transform_engine","events_processed":488,"events_dropped":0,"avg_latency_ms":558.5554106309564,"throughput_eps":0,"last_update":"2026-03-22T10:05:37.479020086Z"} +2026/03/22 10:05:42 ───────────────────────────────────────────────── +2026/03/22 10:05:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:05:47 [log_collector] {"stage_name":"log_collector","events_processed":23088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4617.6,"last_update":"2026-03-22T10:05:42.368424287Z"} +2026/03/22 10:05:47 [metric_collector] {"stage_name":"metric_collector","events_processed":14654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2930.8,"last_update":"2026-03-22T10:05:42.368771953Z"} +2026/03/22 10:05:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:05:42.374192336Z"} +2026/03/22 10:05:47 [detection_layer] {"stage_name":"detection_layer","events_processed":488,"events_dropped":0,"avg_latency_ms":19.979548439364223,"throughput_eps":0,"last_update":"2026-03-22T10:05:42.479454782Z"} +2026/03/22 10:05:47 [transform_engine] {"stage_name":"transform_engine","events_processed":488,"events_dropped":0,"avg_latency_ms":558.5554106309564,"throughput_eps":0,"last_update":"2026-03-22T10:05:42.47942715Z"} +2026/03/22 10:05:47 ───────────────────────────────────────────────── +2026/03/22 10:05:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:05:52 [metric_collector] {"stage_name":"metric_collector","events_processed":14658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2931.6,"last_update":"2026-03-22T10:05:47.368807944Z"} +2026/03/22 10:05:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:05:47.377778579Z"} +2026/03/22 10:05:52 [detection_layer] {"stage_name":"detection_layer","events_processed":488,"events_dropped":0,"avg_latency_ms":19.979548439364223,"throughput_eps":0,"last_update":"2026-03-22T10:05:47.479531892Z"} +2026/03/22 10:05:52 [transform_engine] {"stage_name":"transform_engine","events_processed":488,"events_dropped":0,"avg_latency_ms":558.5554106309564,"throughput_eps":0,"last_update":"2026-03-22T10:05:47.479548154Z"} +2026/03/22 10:05:52 [log_collector] {"stage_name":"log_collector","events_processed":23101,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4620.2,"last_update":"2026-03-22T10:05:47.368734884Z"} +2026/03/22 10:05:52 ───────────────────────────────────────────────── +2026/03/22 10:05:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:05:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5868,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:05:52.378276301Z"} +2026/03/22 10:05:57 [detection_layer] {"stage_name":"detection_layer","events_processed":488,"events_dropped":0,"avg_latency_ms":19.979548439364223,"throughput_eps":0,"last_update":"2026-03-22T10:05:52.479505772Z"} +2026/03/22 10:05:57 [transform_engine] {"stage_name":"transform_engine","events_processed":488,"events_dropped":0,"avg_latency_ms":558.5554106309564,"throughput_eps":0,"last_update":"2026-03-22T10:05:52.479519728Z"} +2026/03/22 10:05:57 [log_collector] {"stage_name":"log_collector","events_processed":23113,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4622.6,"last_update":"2026-03-22T10:05:52.368193397Z"} +2026/03/22 10:05:57 [metric_collector] {"stage_name":"metric_collector","events_processed":14664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2932.8,"last_update":"2026-03-22T10:05:52.368278479Z"} +2026/03/22 10:05:57 ───────────────────────────────────────────────── +2026/03/22 10:06:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:06:02 [log_collector] {"stage_name":"log_collector","events_processed":23115,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4623,"last_update":"2026-03-22T10:05:57.368497915Z"} +2026/03/22 10:06:02 [metric_collector] {"stage_name":"metric_collector","events_processed":14669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2933.8,"last_update":"2026-03-22T10:05:57.368861803Z"} +2026/03/22 10:06:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:05:57.37794916Z"} +2026/03/22 10:06:02 [detection_layer] {"stage_name":"detection_layer","events_processed":488,"events_dropped":0,"avg_latency_ms":19.979548439364223,"throughput_eps":0,"last_update":"2026-03-22T10:05:57.479313959Z"} +2026/03/22 10:06:02 [transform_engine] {"stage_name":"transform_engine","events_processed":488,"events_dropped":0,"avg_latency_ms":558.5554106309564,"throughput_eps":0,"last_update":"2026-03-22T10:05:57.479331584Z"} +2026/03/22 10:06:02 ───────────────────────────────────────────────── +2026/03/22 10:06:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:06:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:06:02.377088304Z"} +2026/03/22 10:06:07 [detection_layer] {"stage_name":"detection_layer","events_processed":489,"events_dropped":0,"avg_latency_ms":20.049920151491378,"throughput_eps":0,"last_update":"2026-03-22T10:06:02.479372005Z"} +2026/03/22 10:06:07 [transform_engine] {"stage_name":"transform_engine","events_processed":489,"events_dropped":0,"avg_latency_ms":469.80470630476515,"throughput_eps":0,"last_update":"2026-03-22T10:06:02.479386161Z"} +2026/03/22 10:06:07 [log_collector] {"stage_name":"log_collector","events_processed":23115,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4623,"last_update":"2026-03-22T10:06:02.368809486Z"} +2026/03/22 10:06:07 [metric_collector] {"stage_name":"metric_collector","events_processed":14674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2934.8,"last_update":"2026-03-22T10:06:02.369191608Z"} +2026/03/22 10:06:07 ───────────────────────────────────────────────── +2026/03/22 10:06:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:06:12 [log_collector] {"stage_name":"log_collector","events_processed":23129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4625.8,"last_update":"2026-03-22T10:06:07.368308206Z"} +2026/03/22 10:06:12 [metric_collector] {"stage_name":"metric_collector","events_processed":14679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2935.8,"last_update":"2026-03-22T10:06:07.368681101Z"} +2026/03/22 10:06:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:06:07.377443356Z"} +2026/03/22 10:06:12 [detection_layer] {"stage_name":"detection_layer","events_processed":489,"events_dropped":0,"avg_latency_ms":20.049920151491378,"throughput_eps":0,"last_update":"2026-03-22T10:06:07.47968749Z"} +2026/03/22 10:06:12 [transform_engine] {"stage_name":"transform_engine","events_processed":489,"events_dropped":0,"avg_latency_ms":469.80470630476515,"throughput_eps":0,"last_update":"2026-03-22T10:06:07.4797089Z"} +2026/03/22 10:06:12 ───────────────────────────────────────────────── +2026/03/22 10:06:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:06:17 [log_collector] {"stage_name":"log_collector","events_processed":23129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4625.8,"last_update":"2026-03-22T10:06:12.368837599Z"} +2026/03/22 10:06:17 [metric_collector] {"stage_name":"metric_collector","events_processed":14683,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2936.6,"last_update":"2026-03-22T10:06:12.368940476Z"} +2026/03/22 10:06:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5876,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:06:12.377949051Z"} +2026/03/22 10:06:17 [detection_layer] {"stage_name":"detection_layer","events_processed":489,"events_dropped":0,"avg_latency_ms":20.049920151491378,"throughput_eps":0,"last_update":"2026-03-22T10:06:12.479287201Z"} +2026/03/22 10:06:17 [transform_engine] {"stage_name":"transform_engine","events_processed":489,"events_dropped":0,"avg_latency_ms":469.80470630476515,"throughput_eps":0,"last_update":"2026-03-22T10:06:12.479317168Z"} +2026/03/22 10:06:17 ───────────────────────────────────────────────── +2026/03/22 10:06:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:06:22 [metric_collector] {"stage_name":"metric_collector","events_processed":14688,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2937.6,"last_update":"2026-03-22T10:06:17.368243899Z"} +2026/03/22 10:06:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:06:17.378454988Z"} +2026/03/22 10:06:22 [detection_layer] {"stage_name":"detection_layer","events_processed":489,"events_dropped":0,"avg_latency_ms":20.049920151491378,"throughput_eps":0,"last_update":"2026-03-22T10:06:17.479796583Z"} +2026/03/22 10:06:22 [transform_engine] {"stage_name":"transform_engine","events_processed":489,"events_dropped":0,"avg_latency_ms":469.80470630476515,"throughput_eps":0,"last_update":"2026-03-22T10:06:17.479841469Z"} +2026/03/22 10:06:22 [log_collector] {"stage_name":"log_collector","events_processed":23129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4625.8,"last_update":"2026-03-22T10:06:17.368291228Z"} +2026/03/22 10:06:22 ───────────────────────────────────────────────── +2026/03/22 10:06:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:06:27 [log_collector] {"stage_name":"log_collector","events_processed":23129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4625.8,"last_update":"2026-03-22T10:06:22.368505794Z"} +2026/03/22 10:06:27 [metric_collector] {"stage_name":"metric_collector","events_processed":14693,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2938.6,"last_update":"2026-03-22T10:06:22.36864492Z"} +2026/03/22 10:06:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:06:22.37768103Z"} +2026/03/22 10:06:27 [detection_layer] {"stage_name":"detection_layer","events_processed":489,"events_dropped":0,"avg_latency_ms":20.049920151491378,"throughput_eps":0,"last_update":"2026-03-22T10:06:22.478986626Z"} +2026/03/22 10:06:27 [transform_engine] {"stage_name":"transform_engine","events_processed":489,"events_dropped":0,"avg_latency_ms":469.80470630476515,"throughput_eps":0,"last_update":"2026-03-22T10:06:22.478820087Z"} +2026/03/22 10:06:27 ───────────────────────────────────────────────── +2026/03/22 10:06:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:06:32 [transform_engine] {"stage_name":"transform_engine","events_processed":490,"events_dropped":0,"avg_latency_ms":398.65872444381216,"throughput_eps":0,"last_update":"2026-03-22T10:06:27.593778667Z"} +2026/03/22 10:06:32 [log_collector] {"stage_name":"log_collector","events_processed":23129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4625.8,"last_update":"2026-03-22T10:06:27.367961603Z"} +2026/03/22 10:06:32 [metric_collector] {"stage_name":"metric_collector","events_processed":14698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2939.6,"last_update":"2026-03-22T10:06:27.367920213Z"} +2026/03/22 10:06:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:06:27.376400387Z"} +2026/03/22 10:06:32 [detection_layer] {"stage_name":"detection_layer","events_processed":489,"events_dropped":0,"avg_latency_ms":20.049920151491378,"throughput_eps":0,"last_update":"2026-03-22T10:06:27.480487843Z"} +2026/03/22 10:06:32 ───────────────────────────────────────────────── +2026/03/22 10:06:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:06:37 [log_collector] {"stage_name":"log_collector","events_processed":23129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4625.8,"last_update":"2026-03-22T10:06:32.367982623Z"} +2026/03/22 10:06:37 [metric_collector] {"stage_name":"metric_collector","events_processed":14704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2940.8,"last_update":"2026-03-22T10:06:32.368290031Z"} +2026/03/22 10:06:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:06:32.377977048Z"} +2026/03/22 10:06:37 [detection_layer] {"stage_name":"detection_layer","events_processed":490,"events_dropped":0,"avg_latency_ms":20.799847921193106,"throughput_eps":0,"last_update":"2026-03-22T10:06:32.479170399Z"} +2026/03/22 10:06:37 [transform_engine] {"stage_name":"transform_engine","events_processed":490,"events_dropped":0,"avg_latency_ms":398.65872444381216,"throughput_eps":0,"last_update":"2026-03-22T10:06:32.479185668Z"} +2026/03/22 10:06:37 ───────────────────────────────────────────────── +2026/03/22 10:06:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:06:42 [log_collector] {"stage_name":"log_collector","events_processed":23129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4625.8,"last_update":"2026-03-22T10:06:37.368147966Z"} +2026/03/22 10:06:42 [metric_collector] {"stage_name":"metric_collector","events_processed":14709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2941.8,"last_update":"2026-03-22T10:06:37.368302152Z"} +2026/03/22 10:06:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5886,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:06:37.378953265Z"} +2026/03/22 10:06:42 [detection_layer] {"stage_name":"detection_layer","events_processed":490,"events_dropped":0,"avg_latency_ms":20.799847921193106,"throughput_eps":0,"last_update":"2026-03-22T10:06:37.479154636Z"} +2026/03/22 10:06:42 [transform_engine] {"stage_name":"transform_engine","events_processed":490,"events_dropped":0,"avg_latency_ms":398.65872444381216,"throughput_eps":0,"last_update":"2026-03-22T10:06:37.479165677Z"} +2026/03/22 10:06:42 ───────────────────────────────────────────────── +2026/03/22 10:06:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:06:47 [log_collector] {"stage_name":"log_collector","events_processed":23129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4625.8,"last_update":"2026-03-22T10:06:42.368277588Z"} +2026/03/22 10:06:47 [metric_collector] {"stage_name":"metric_collector","events_processed":14714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2942.8,"last_update":"2026-03-22T10:06:42.368266066Z"} +2026/03/22 10:06:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:06:42.378300167Z"} +2026/03/22 10:06:47 [detection_layer] {"stage_name":"detection_layer","events_processed":490,"events_dropped":0,"avg_latency_ms":20.799847921193106,"throughput_eps":0,"last_update":"2026-03-22T10:06:42.479497966Z"} +2026/03/22 10:06:47 [transform_engine] {"stage_name":"transform_engine","events_processed":490,"events_dropped":0,"avg_latency_ms":398.65872444381216,"throughput_eps":0,"last_update":"2026-03-22T10:06:42.479507975Z"} +2026/03/22 10:06:47 ───────────────────────────────────────────────── +2026/03/22 10:06:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:06:52 [metric_collector] {"stage_name":"metric_collector","events_processed":14719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2943.8,"last_update":"2026-03-22T10:06:47.369035547Z"} +2026/03/22 10:06:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:06:47.378084921Z"} +2026/03/22 10:06:52 [detection_layer] {"stage_name":"detection_layer","events_processed":490,"events_dropped":0,"avg_latency_ms":20.799847921193106,"throughput_eps":0,"last_update":"2026-03-22T10:06:47.479399054Z"} +2026/03/22 10:06:52 [transform_engine] {"stage_name":"transform_engine","events_processed":490,"events_dropped":0,"avg_latency_ms":398.65872444381216,"throughput_eps":0,"last_update":"2026-03-22T10:06:47.479409584Z"} +2026/03/22 10:06:52 [log_collector] {"stage_name":"log_collector","events_processed":23129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4625.8,"last_update":"2026-03-22T10:06:52.367970286Z"} +2026/03/22 10:06:52 ───────────────────────────────────────────────── +2026/03/22 10:06:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:06:57 [log_collector] {"stage_name":"log_collector","events_processed":23129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4625.8,"last_update":"2026-03-22T10:06:57.368347123Z"} +2026/03/22 10:06:57 [metric_collector] {"stage_name":"metric_collector","events_processed":14724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2944.8,"last_update":"2026-03-22T10:06:52.368722496Z"} +2026/03/22 10:06:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5892,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:06:52.376726358Z"} +2026/03/22 10:06:57 [detection_layer] {"stage_name":"detection_layer","events_processed":490,"events_dropped":0,"avg_latency_ms":20.799847921193106,"throughput_eps":0,"last_update":"2026-03-22T10:06:52.47895915Z"} +2026/03/22 10:06:57 [transform_engine] {"stage_name":"transform_engine","events_processed":490,"events_dropped":0,"avg_latency_ms":398.65872444381216,"throughput_eps":0,"last_update":"2026-03-22T10:06:52.478976383Z"} +2026/03/22 10:06:57 ───────────────────────────────────────────────── +2026/03/22 10:07:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:07:02 [transform_engine] {"stage_name":"transform_engine","events_processed":491,"events_dropped":0,"avg_latency_ms":333.9099119550497,"throughput_eps":0,"last_update":"2026-03-22T10:06:57.554589098Z"} +2026/03/22 10:07:02 [log_collector] {"stage_name":"log_collector","events_processed":23129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4625.8,"last_update":"2026-03-22T10:06:57.368347123Z"} +2026/03/22 10:07:02 [metric_collector] {"stage_name":"metric_collector","events_processed":14729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2945.8,"last_update":"2026-03-22T10:06:57.369260382Z"} +2026/03/22 10:07:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:06:57.377360048Z"} +2026/03/22 10:07:02 [detection_layer] {"stage_name":"detection_layer","events_processed":490,"events_dropped":0,"avg_latency_ms":20.799847921193106,"throughput_eps":0,"last_update":"2026-03-22T10:06:57.47966052Z"} +2026/03/22 10:07:02 ───────────────────────────────────────────────── +2026/03/22 10:07:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:07:07 [log_collector] {"stage_name":"log_collector","events_processed":23129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4625.8,"last_update":"2026-03-22T10:07:02.368980941Z"} +2026/03/22 10:07:07 [metric_collector] {"stage_name":"metric_collector","events_processed":14734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2946.8,"last_update":"2026-03-22T10:07:02.369496738Z"} +2026/03/22 10:07:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5896,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:07:02.37772972Z"} +2026/03/22 10:07:07 [detection_layer] {"stage_name":"detection_layer","events_processed":491,"events_dropped":0,"avg_latency_ms":20.974593736954485,"throughput_eps":0,"last_update":"2026-03-22T10:07:02.478953199Z"} +2026/03/22 10:07:07 [transform_engine] {"stage_name":"transform_engine","events_processed":491,"events_dropped":0,"avg_latency_ms":333.9099119550497,"throughput_eps":0,"last_update":"2026-03-22T10:07:02.478942367Z"} +2026/03/22 10:07:07 ───────────────────────────────────────────────── +Saved state: 13 clusters, 23130 messages, reason: none +2026/03/22 10:07:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:07:12 [detection_layer] {"stage_name":"detection_layer","events_processed":491,"events_dropped":0,"avg_latency_ms":20.974593736954485,"throughput_eps":0,"last_update":"2026-03-22T10:07:07.479763292Z"} +2026/03/22 10:07:12 [transform_engine] {"stage_name":"transform_engine","events_processed":491,"events_dropped":0,"avg_latency_ms":333.9099119550497,"throughput_eps":0,"last_update":"2026-03-22T10:07:07.479660646Z"} +2026/03/22 10:07:12 [log_collector] {"stage_name":"log_collector","events_processed":23129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4625.8,"last_update":"2026-03-22T10:07:07.36945453Z"} +2026/03/22 10:07:12 [metric_collector] {"stage_name":"metric_collector","events_processed":14739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2947.8,"last_update":"2026-03-22T10:07:07.369102736Z"} +2026/03/22 10:07:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5898,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:07:07.379456209Z"} +2026/03/22 10:07:12 ───────────────────────────────────────────────── +2026/03/22 10:07:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:07:17 [log_collector] {"stage_name":"log_collector","events_processed":23134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4626.8,"last_update":"2026-03-22T10:07:12.367952572Z"} +2026/03/22 10:07:17 [metric_collector] {"stage_name":"metric_collector","events_processed":14744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2948.8,"last_update":"2026-03-22T10:07:12.36818682Z"} +2026/03/22 10:07:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5900,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:07:12.374673907Z"} +2026/03/22 10:07:17 [detection_layer] {"stage_name":"detection_layer","events_processed":491,"events_dropped":0,"avg_latency_ms":20.974593736954485,"throughput_eps":0,"last_update":"2026-03-22T10:07:12.479863523Z"} +2026/03/22 10:07:17 [transform_engine] {"stage_name":"transform_engine","events_processed":491,"events_dropped":0,"avg_latency_ms":333.9099119550497,"throughput_eps":0,"last_update":"2026-03-22T10:07:12.479874874Z"} +2026/03/22 10:07:17 ───────────────────────────────────────────────── +2026/03/22 10:07:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:07:22 [log_collector] {"stage_name":"log_collector","events_processed":23134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4626.8,"last_update":"2026-03-22T10:07:17.368625657Z"} +2026/03/22 10:07:22 [metric_collector] {"stage_name":"metric_collector","events_processed":14749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2949.8,"last_update":"2026-03-22T10:07:17.369087261Z"} +2026/03/22 10:07:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:07:17.374880709Z"} +2026/03/22 10:07:22 [detection_layer] {"stage_name":"detection_layer","events_processed":491,"events_dropped":0,"avg_latency_ms":20.974593736954485,"throughput_eps":0,"last_update":"2026-03-22T10:07:17.479543315Z"} +2026/03/22 10:07:22 [transform_engine] {"stage_name":"transform_engine","events_processed":491,"events_dropped":0,"avg_latency_ms":333.9099119550497,"throughput_eps":0,"last_update":"2026-03-22T10:07:17.479559736Z"} +2026/03/22 10:07:22 ───────────────────────────────────────────────── +2026/03/22 10:07:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:07:27 [detection_layer] {"stage_name":"detection_layer","events_processed":491,"events_dropped":0,"avg_latency_ms":20.974593736954485,"throughput_eps":0,"last_update":"2026-03-22T10:07:22.479542868Z"} +2026/03/22 10:07:27 [transform_engine] {"stage_name":"transform_engine","events_processed":491,"events_dropped":0,"avg_latency_ms":333.9099119550497,"throughput_eps":0,"last_update":"2026-03-22T10:07:22.47955965Z"} +2026/03/22 10:07:27 [log_collector] {"stage_name":"log_collector","events_processed":23134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4626.8,"last_update":"2026-03-22T10:07:22.368828098Z"} +2026/03/22 10:07:27 [metric_collector] {"stage_name":"metric_collector","events_processed":14754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2950.8,"last_update":"2026-03-22T10:07:22.368961084Z"} +2026/03/22 10:07:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:07:22.376276155Z"} +2026/03/22 10:07:27 ───────────────────────────────────────────────── +2026/03/22 10:07:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:07:32 [transform_engine] {"stage_name":"transform_engine","events_processed":492,"events_dropped":0,"avg_latency_ms":424.8281175640398,"throughput_eps":0,"last_update":"2026-03-22T10:07:28.268886003Z"} +2026/03/22 10:07:32 [log_collector] {"stage_name":"log_collector","events_processed":23134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4626.8,"last_update":"2026-03-22T10:07:27.367976288Z"} +2026/03/22 10:07:32 [metric_collector] {"stage_name":"metric_collector","events_processed":14759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2951.8,"last_update":"2026-03-22T10:07:27.368339534Z"} +2026/03/22 10:07:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5906,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:07:27.375526481Z"} +2026/03/22 10:07:32 [detection_layer] {"stage_name":"detection_layer","events_processed":491,"events_dropped":0,"avg_latency_ms":20.974593736954485,"throughput_eps":0,"last_update":"2026-03-22T10:07:27.480391495Z"} +2026/03/22 10:07:32 ───────────────────────────────────────────────── +2026/03/22 10:07:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:07:37 [metric_collector] {"stage_name":"metric_collector","events_processed":14764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2952.8,"last_update":"2026-03-22T10:07:32.369020227Z"} +2026/03/22 10:07:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5908,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:07:32.378099419Z"} +2026/03/22 10:07:37 [detection_layer] {"stage_name":"detection_layer","events_processed":492,"events_dropped":0,"avg_latency_ms":18.94922278956359,"throughput_eps":0,"last_update":"2026-03-22T10:07:32.479402941Z"} +2026/03/22 10:07:37 [transform_engine] {"stage_name":"transform_engine","events_processed":492,"events_dropped":0,"avg_latency_ms":424.8281175640398,"throughput_eps":0,"last_update":"2026-03-22T10:07:32.479371991Z"} +2026/03/22 10:07:37 [log_collector] {"stage_name":"log_collector","events_processed":23134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4626.8,"last_update":"2026-03-22T10:07:32.368757924Z"} +2026/03/22 10:07:37 ───────────────────────────────────────────────── +2026/03/22 10:07:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:07:42 [transform_engine] {"stage_name":"transform_engine","events_processed":492,"events_dropped":0,"avg_latency_ms":424.8281175640398,"throughput_eps":0,"last_update":"2026-03-22T10:07:37.481381459Z"} +2026/03/22 10:07:42 [log_collector] {"stage_name":"log_collector","events_processed":23134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4626.8,"last_update":"2026-03-22T10:07:37.368264468Z"} +2026/03/22 10:07:42 [metric_collector] {"stage_name":"metric_collector","events_processed":14769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2953.8,"last_update":"2026-03-22T10:07:37.368289355Z"} +2026/03/22 10:07:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:07:37.37523482Z"} +2026/03/22 10:07:42 [detection_layer] {"stage_name":"detection_layer","events_processed":492,"events_dropped":0,"avg_latency_ms":18.94922278956359,"throughput_eps":0,"last_update":"2026-03-22T10:07:37.481364236Z"} +2026/03/22 10:07:42 ───────────────────────────────────────────────── +2026/03/22 10:07:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:07:47 [log_collector] {"stage_name":"log_collector","events_processed":23134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4626.8,"last_update":"2026-03-22T10:07:47.368389006Z"} +2026/03/22 10:07:47 [metric_collector] {"stage_name":"metric_collector","events_processed":14774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2954.8,"last_update":"2026-03-22T10:07:42.368765301Z"} +2026/03/22 10:07:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5912,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:07:42.375774749Z"} +2026/03/22 10:07:47 [detection_layer] {"stage_name":"detection_layer","events_processed":492,"events_dropped":0,"avg_latency_ms":18.94922278956359,"throughput_eps":0,"last_update":"2026-03-22T10:07:42.479997261Z"} +2026/03/22 10:07:47 [transform_engine] {"stage_name":"transform_engine","events_processed":492,"events_dropped":0,"avg_latency_ms":424.8281175640398,"throughput_eps":0,"last_update":"2026-03-22T10:07:42.478909939Z"} +2026/03/22 10:07:47 ───────────────────────────────────────────────── +2026/03/22 10:07:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:07:52 [transform_engine] {"stage_name":"transform_engine","events_processed":492,"events_dropped":0,"avg_latency_ms":424.8281175640398,"throughput_eps":0,"last_update":"2026-03-22T10:07:47.479626236Z"} +2026/03/22 10:07:52 [log_collector] {"stage_name":"log_collector","events_processed":23134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4626.8,"last_update":"2026-03-22T10:07:47.368389006Z"} +2026/03/22 10:07:52 [metric_collector] {"stage_name":"metric_collector","events_processed":14779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2955.8,"last_update":"2026-03-22T10:07:47.368703177Z"} +2026/03/22 10:07:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:07:47.379366954Z"} +2026/03/22 10:07:52 [detection_layer] {"stage_name":"detection_layer","events_processed":492,"events_dropped":0,"avg_latency_ms":18.94922278956359,"throughput_eps":0,"last_update":"2026-03-22T10:07:47.479550331Z"} +2026/03/22 10:07:52 ───────────────────────────────────────────────── +2026/03/22 10:07:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:07:57 [metric_collector] {"stage_name":"metric_collector","events_processed":14784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2956.8,"last_update":"2026-03-22T10:07:52.369137122Z"} +2026/03/22 10:07:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:07:52.375884265Z"} +2026/03/22 10:07:57 [detection_layer] {"stage_name":"detection_layer","events_processed":492,"events_dropped":0,"avg_latency_ms":18.94922278956359,"throughput_eps":0,"last_update":"2026-03-22T10:07:52.479088859Z"} +2026/03/22 10:07:57 [transform_engine] {"stage_name":"transform_engine","events_processed":492,"events_dropped":0,"avg_latency_ms":424.8281175640398,"throughput_eps":0,"last_update":"2026-03-22T10:07:52.479128013Z"} +2026/03/22 10:07:57 [log_collector] {"stage_name":"log_collector","events_processed":23143,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4628.6,"last_update":"2026-03-22T10:07:52.368757434Z"} +2026/03/22 10:07:57 ───────────────────────────────────────────────── +2026/03/22 10:08:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:08:02 [log_collector] {"stage_name":"log_collector","events_processed":23145,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4629,"last_update":"2026-03-22T10:07:57.367956698Z"} +2026/03/22 10:08:02 [metric_collector] {"stage_name":"metric_collector","events_processed":14789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2957.8,"last_update":"2026-03-22T10:07:57.368209973Z"} +2026/03/22 10:08:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5918,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:07:57.377512382Z"} +2026/03/22 10:08:02 [detection_layer] {"stage_name":"detection_layer","events_processed":492,"events_dropped":0,"avg_latency_ms":18.94922278956359,"throughput_eps":0,"last_update":"2026-03-22T10:07:57.479736076Z"} +2026/03/22 10:08:02 [transform_engine] {"stage_name":"transform_engine","events_processed":493,"events_dropped":0,"avg_latency_ms":364.24259925123187,"throughput_eps":0,"last_update":"2026-03-22T10:07:57.601619389Z"} +2026/03/22 10:08:02 ───────────────────────────────────────────────── +2026/03/22 10:08:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:08:07 [log_collector] {"stage_name":"log_collector","events_processed":23237,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4647.4,"last_update":"2026-03-22T10:08:02.368601872Z"} +2026/03/22 10:08:07 [metric_collector] {"stage_name":"metric_collector","events_processed":14794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2958.8,"last_update":"2026-03-22T10:08:02.368695211Z"} +2026/03/22 10:08:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5920,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:08:02.379228998Z"} +2026/03/22 10:08:07 [detection_layer] {"stage_name":"detection_layer","events_processed":493,"events_dropped":0,"avg_latency_ms":18.781719031650873,"throughput_eps":0,"last_update":"2026-03-22T10:08:02.479447231Z"} +2026/03/22 10:08:07 [transform_engine] {"stage_name":"transform_engine","events_processed":493,"events_dropped":0,"avg_latency_ms":364.24259925123187,"throughput_eps":0,"last_update":"2026-03-22T10:08:02.479434105Z"} +2026/03/22 10:08:07 ───────────────────────────────────────────────── +Saved state: 13 clusters, 23512 messages, reason: none +2026/03/22 10:08:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:08:12 [detection_layer] {"stage_name":"detection_layer","events_processed":493,"events_dropped":0,"avg_latency_ms":18.781719031650873,"throughput_eps":0,"last_update":"2026-03-22T10:08:07.479369976Z"} +2026/03/22 10:08:12 [transform_engine] {"stage_name":"transform_engine","events_processed":493,"events_dropped":0,"avg_latency_ms":364.24259925123187,"throughput_eps":0,"last_update":"2026-03-22T10:08:07.4793824Z"} +2026/03/22 10:08:12 [log_collector] {"stage_name":"log_collector","events_processed":23499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4699.8,"last_update":"2026-03-22T10:08:07.367965466Z"} +2026/03/22 10:08:12 [metric_collector] {"stage_name":"metric_collector","events_processed":14799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2959.8,"last_update":"2026-03-22T10:08:07.368277664Z"} +2026/03/22 10:08:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:08:07.376214728Z"} +2026/03/22 10:08:12 ───────────────────────────────────────────────── +2026/03/22 10:08:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:08:17 [detection_layer] {"stage_name":"detection_layer","events_processed":493,"events_dropped":0,"avg_latency_ms":18.781719031650873,"throughput_eps":0,"last_update":"2026-03-22T10:08:12.479658961Z"} +2026/03/22 10:08:17 [transform_engine] {"stage_name":"transform_engine","events_processed":493,"events_dropped":0,"avg_latency_ms":364.24259925123187,"throughput_eps":0,"last_update":"2026-03-22T10:08:12.479672588Z"} +2026/03/22 10:08:17 [log_collector] {"stage_name":"log_collector","events_processed":23513,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4702.6,"last_update":"2026-03-22T10:08:12.368402605Z"} +2026/03/22 10:08:17 [metric_collector] {"stage_name":"metric_collector","events_processed":14804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2960.8,"last_update":"2026-03-22T10:08:12.36899022Z"} +2026/03/22 10:08:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:08:12.377421572Z"} +2026/03/22 10:08:17 ───────────────────────────────────────────────── +2026/03/22 10:08:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:08:22 [detection_layer] {"stage_name":"detection_layer","events_processed":493,"events_dropped":0,"avg_latency_ms":18.781719031650873,"throughput_eps":0,"last_update":"2026-03-22T10:08:17.479279235Z"} +2026/03/22 10:08:22 [transform_engine] {"stage_name":"transform_engine","events_processed":493,"events_dropped":0,"avg_latency_ms":364.24259925123187,"throughput_eps":0,"last_update":"2026-03-22T10:08:17.479290406Z"} +2026/03/22 10:08:22 [log_collector] {"stage_name":"log_collector","events_processed":23513,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4702.6,"last_update":"2026-03-22T10:08:17.368614742Z"} +2026/03/22 10:08:22 [metric_collector] {"stage_name":"metric_collector","events_processed":14809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2961.8,"last_update":"2026-03-22T10:08:17.368967378Z"} +2026/03/22 10:08:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:08:17.379016267Z"} +2026/03/22 10:08:22 ───────────────────────────────────────────────── +2026/03/22 10:08:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:08:27 [detection_layer] {"stage_name":"detection_layer","events_processed":493,"events_dropped":0,"avg_latency_ms":18.781719031650873,"throughput_eps":0,"last_update":"2026-03-22T10:08:22.47977301Z"} +2026/03/22 10:08:27 [transform_engine] {"stage_name":"transform_engine","events_processed":493,"events_dropped":0,"avg_latency_ms":364.24259925123187,"throughput_eps":0,"last_update":"2026-03-22T10:08:22.479786084Z"} +2026/03/22 10:08:27 [log_collector] {"stage_name":"log_collector","events_processed":23513,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4702.6,"last_update":"2026-03-22T10:08:22.368028909Z"} +2026/03/22 10:08:27 [metric_collector] {"stage_name":"metric_collector","events_processed":14814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2962.8,"last_update":"2026-03-22T10:08:22.368567831Z"} +2026/03/22 10:08:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:08:22.378587705Z"} +2026/03/22 10:08:27 ───────────────────────────────────────────────── +2026/03/22 10:08:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:08:32 [detection_layer] {"stage_name":"detection_layer","events_processed":493,"events_dropped":0,"avg_latency_ms":18.781719031650873,"throughput_eps":0,"last_update":"2026-03-22T10:08:27.47962867Z"} +2026/03/22 10:08:32 [transform_engine] {"stage_name":"transform_engine","events_processed":494,"events_dropped":0,"avg_latency_ms":308.4990086009855,"throughput_eps":0,"last_update":"2026-03-22T10:08:27.565168485Z"} +2026/03/22 10:08:32 [log_collector] {"stage_name":"log_collector","events_processed":23513,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4702.6,"last_update":"2026-03-22T10:08:27.368266021Z"} +2026/03/22 10:08:32 [metric_collector] {"stage_name":"metric_collector","events_processed":14819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2963.8,"last_update":"2026-03-22T10:08:27.36859985Z"} +2026/03/22 10:08:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5930,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:08:27.376410521Z"} +2026/03/22 10:08:32 ───────────────────────────────────────────────── +2026/03/22 10:08:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:08:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:08:32.378679172Z"} +2026/03/22 10:08:37 [detection_layer] {"stage_name":"detection_layer","events_processed":494,"events_dropped":0,"avg_latency_ms":18.1477764253207,"throughput_eps":0,"last_update":"2026-03-22T10:08:32.479866892Z"} +2026/03/22 10:08:37 [transform_engine] {"stage_name":"transform_engine","events_processed":494,"events_dropped":0,"avg_latency_ms":308.4990086009855,"throughput_eps":0,"last_update":"2026-03-22T10:08:32.479914954Z"} +2026/03/22 10:08:37 [log_collector] {"stage_name":"log_collector","events_processed":23513,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4702.6,"last_update":"2026-03-22T10:08:32.367982633Z"} +2026/03/22 10:08:37 [metric_collector] {"stage_name":"metric_collector","events_processed":14824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2964.8,"last_update":"2026-03-22T10:08:32.368458795Z"} +2026/03/22 10:08:37 ───────────────────────────────────────────────── +2026/03/22 10:08:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:08:42 [metric_collector] {"stage_name":"metric_collector","events_processed":14829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2965.8,"last_update":"2026-03-22T10:08:37.368212437Z"} +2026/03/22 10:08:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:08:37.37707292Z"} +2026/03/22 10:08:42 [detection_layer] {"stage_name":"detection_layer","events_processed":494,"events_dropped":0,"avg_latency_ms":18.1477764253207,"throughput_eps":0,"last_update":"2026-03-22T10:08:37.479437964Z"} +2026/03/22 10:08:42 [transform_engine] {"stage_name":"transform_engine","events_processed":494,"events_dropped":0,"avg_latency_ms":308.4990086009855,"throughput_eps":0,"last_update":"2026-03-22T10:08:37.479489403Z"} +2026/03/22 10:08:42 [log_collector] {"stage_name":"log_collector","events_processed":23513,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4702.6,"last_update":"2026-03-22T10:08:37.36794742Z"} +2026/03/22 10:08:42 ───────────────────────────────────────────────── +2026/03/22 10:08:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:08:47 [log_collector] {"stage_name":"log_collector","events_processed":23513,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4702.6,"last_update":"2026-03-22T10:08:42.368867965Z"} +2026/03/22 10:08:47 [metric_collector] {"stage_name":"metric_collector","events_processed":14834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2966.8,"last_update":"2026-03-22T10:08:42.369139054Z"} +2026/03/22 10:08:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:08:42.379027476Z"} +2026/03/22 10:08:47 [detection_layer] {"stage_name":"detection_layer","events_processed":494,"events_dropped":0,"avg_latency_ms":18.1477764253207,"throughput_eps":0,"last_update":"2026-03-22T10:08:42.479247492Z"} +2026/03/22 10:08:47 [transform_engine] {"stage_name":"transform_engine","events_processed":494,"events_dropped":0,"avg_latency_ms":308.4990086009855,"throughput_eps":0,"last_update":"2026-03-22T10:08:42.479430393Z"} +2026/03/22 10:08:47 ───────────────────────────────────────────────── +2026/03/22 10:08:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:08:52 [log_collector] {"stage_name":"log_collector","events_processed":23513,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4702.6,"last_update":"2026-03-22T10:08:47.368200376Z"} +2026/03/22 10:08:52 [metric_collector] {"stage_name":"metric_collector","events_processed":14839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2967.8,"last_update":"2026-03-22T10:08:47.368539965Z"} +2026/03/22 10:08:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:08:47.378254043Z"} +2026/03/22 10:08:52 [detection_layer] {"stage_name":"detection_layer","events_processed":494,"events_dropped":0,"avg_latency_ms":18.1477764253207,"throughput_eps":0,"last_update":"2026-03-22T10:08:47.479373512Z"} +2026/03/22 10:08:52 [transform_engine] {"stage_name":"transform_engine","events_processed":494,"events_dropped":0,"avg_latency_ms":308.4990086009855,"throughput_eps":0,"last_update":"2026-03-22T10:08:47.479521706Z"} +2026/03/22 10:08:52 ───────────────────────────────────────────────── +2026/03/22 10:08:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:08:57 [log_collector] {"stage_name":"log_collector","events_processed":23513,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4702.6,"last_update":"2026-03-22T10:08:52.368162771Z"} +2026/03/22 10:08:57 [metric_collector] {"stage_name":"metric_collector","events_processed":14844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2968.8,"last_update":"2026-03-22T10:08:52.368290656Z"} +2026/03/22 10:08:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5940,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:08:52.377554421Z"} +2026/03/22 10:08:57 [detection_layer] {"stage_name":"detection_layer","events_processed":494,"events_dropped":0,"avg_latency_ms":18.1477764253207,"throughput_eps":0,"last_update":"2026-03-22T10:08:52.47980182Z"} +2026/03/22 10:08:57 [transform_engine] {"stage_name":"transform_engine","events_processed":494,"events_dropped":0,"avg_latency_ms":308.4990086009855,"throughput_eps":0,"last_update":"2026-03-22T10:08:52.479766443Z"} +2026/03/22 10:08:57 ───────────────────────────────────────────────── +2026/03/22 10:09:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:09:02 [metric_collector] {"stage_name":"metric_collector","events_processed":14849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2969.8,"last_update":"2026-03-22T10:08:57.368510924Z"} +2026/03/22 10:09:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:08:57.377743248Z"} +2026/03/22 10:09:02 [detection_layer] {"stage_name":"detection_layer","events_processed":494,"events_dropped":0,"avg_latency_ms":18.1477764253207,"throughput_eps":0,"last_update":"2026-03-22T10:08:57.478987125Z"} +2026/03/22 10:09:02 [transform_engine] {"stage_name":"transform_engine","events_processed":495,"events_dropped":0,"avg_latency_ms":263.86577088078843,"throughput_eps":0,"last_update":"2026-03-22T10:08:57.564286389Z"} +2026/03/22 10:09:02 [log_collector] {"stage_name":"log_collector","events_processed":23513,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4702.6,"last_update":"2026-03-22T10:08:57.368100137Z"} +2026/03/22 10:09:02 ───────────────────────────────────────────────── +2026/03/22 10:09:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:09:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:09:02.374814822Z"} +2026/03/22 10:09:07 [detection_layer] {"stage_name":"detection_layer","events_processed":495,"events_dropped":0,"avg_latency_ms":18.96252834025656,"throughput_eps":0,"last_update":"2026-03-22T10:09:02.479072001Z"} +2026/03/22 10:09:07 [transform_engine] {"stage_name":"transform_engine","events_processed":495,"events_dropped":0,"avg_latency_ms":263.86577088078843,"throughput_eps":0,"last_update":"2026-03-22T10:09:02.479044718Z"} +2026/03/22 10:09:07 [log_collector] {"stage_name":"log_collector","events_processed":23513,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4702.6,"last_update":"2026-03-22T10:09:07.368816522Z"} +2026/03/22 10:09:07 [metric_collector] {"stage_name":"metric_collector","events_processed":14854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2970.8,"last_update":"2026-03-22T10:09:02.368302136Z"} +2026/03/22 10:09:07 ───────────────────────────────────────────────── +2026/03/22 10:09:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:09:12 [metric_collector] {"stage_name":"metric_collector","events_processed":14859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2971.8,"last_update":"2026-03-22T10:09:07.369316601Z"} +2026/03/22 10:09:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:09:07.376002989Z"} +2026/03/22 10:09:12 [detection_layer] {"stage_name":"detection_layer","events_processed":495,"events_dropped":0,"avg_latency_ms":18.96252834025656,"throughput_eps":0,"last_update":"2026-03-22T10:09:07.479451569Z"} +2026/03/22 10:09:12 [transform_engine] {"stage_name":"transform_engine","events_processed":495,"events_dropped":0,"avg_latency_ms":263.86577088078843,"throughput_eps":0,"last_update":"2026-03-22T10:09:07.479411231Z"} +2026/03/22 10:09:12 [log_collector] {"stage_name":"log_collector","events_processed":23513,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4702.6,"last_update":"2026-03-22T10:09:12.368028021Z"} +2026/03/22 10:09:12 ───────────────────────────────────────────────── +2026/03/22 10:09:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:09:17 [log_collector] {"stage_name":"log_collector","events_processed":23513,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4702.6,"last_update":"2026-03-22T10:09:12.368028021Z"} +2026/03/22 10:09:17 [metric_collector] {"stage_name":"metric_collector","events_processed":14864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2972.8,"last_update":"2026-03-22T10:09:12.368877108Z"} +2026/03/22 10:09:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:09:12.377772076Z"} +2026/03/22 10:09:17 [detection_layer] {"stage_name":"detection_layer","events_processed":495,"events_dropped":0,"avg_latency_ms":18.96252834025656,"throughput_eps":0,"last_update":"2026-03-22T10:09:12.478942873Z"} +2026/03/22 10:09:17 [transform_engine] {"stage_name":"transform_engine","events_processed":495,"events_dropped":0,"avg_latency_ms":263.86577088078843,"throughput_eps":0,"last_update":"2026-03-22T10:09:12.478866657Z"} +2026/03/22 10:09:17 ───────────────────────────────────────────────── +2026/03/22 10:09:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:09:22 [transform_engine] {"stage_name":"transform_engine","events_processed":495,"events_dropped":0,"avg_latency_ms":263.86577088078843,"throughput_eps":0,"last_update":"2026-03-22T10:09:17.479221095Z"} +2026/03/22 10:09:22 [log_collector] {"stage_name":"log_collector","events_processed":23513,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4702.6,"last_update":"2026-03-22T10:09:17.368653739Z"} +2026/03/22 10:09:22 [metric_collector] {"stage_name":"metric_collector","events_processed":14869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2973.8,"last_update":"2026-03-22T10:09:17.3690932Z"} +2026/03/22 10:09:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:09:17.378837346Z"} +2026/03/22 10:09:22 [detection_layer] {"stage_name":"detection_layer","events_processed":495,"events_dropped":0,"avg_latency_ms":18.96252834025656,"throughput_eps":0,"last_update":"2026-03-22T10:09:17.479261964Z"} +2026/03/22 10:09:22 ───────────────────────────────────────────────── +2026/03/22 10:09:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:09:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:09:22.378928777Z"} +2026/03/22 10:09:27 [detection_layer] {"stage_name":"detection_layer","events_processed":495,"events_dropped":0,"avg_latency_ms":18.96252834025656,"throughput_eps":0,"last_update":"2026-03-22T10:09:22.479146878Z"} +2026/03/22 10:09:27 [transform_engine] {"stage_name":"transform_engine","events_processed":495,"events_dropped":0,"avg_latency_ms":263.86577088078843,"throughput_eps":0,"last_update":"2026-03-22T10:09:22.479173319Z"} +2026/03/22 10:09:27 [log_collector] {"stage_name":"log_collector","events_processed":23513,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4702.6,"last_update":"2026-03-22T10:09:22.368653062Z"} +2026/03/22 10:09:27 [metric_collector] {"stage_name":"metric_collector","events_processed":14874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2974.8,"last_update":"2026-03-22T10:09:22.369305974Z"} +2026/03/22 10:09:27 ───────────────────────────────────────────────── +Saved state: 13 clusters, 23514 messages, reason: none +2026/03/22 10:09:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:09:32 [log_collector] {"stage_name":"log_collector","events_processed":23513,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4702.6,"last_update":"2026-03-22T10:09:27.368102732Z"} +2026/03/22 10:09:32 [metric_collector] {"stage_name":"metric_collector","events_processed":14879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2975.8,"last_update":"2026-03-22T10:09:27.368817582Z"} +2026/03/22 10:09:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:09:27.376799802Z"} +2026/03/22 10:09:32 [detection_layer] {"stage_name":"detection_layer","events_processed":495,"events_dropped":0,"avg_latency_ms":18.96252834025656,"throughput_eps":0,"last_update":"2026-03-22T10:09:27.4790522Z"} +2026/03/22 10:09:32 [transform_engine] {"stage_name":"transform_engine","events_processed":496,"events_dropped":0,"avg_latency_ms":225.82549390463075,"throughput_eps":0,"last_update":"2026-03-22T10:09:27.552620443Z"} +2026/03/22 10:09:32 ───────────────────────────────────────────────── +2026/03/22 10:09:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:09:37 [log_collector] {"stage_name":"log_collector","events_processed":23516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4703.2,"last_update":"2026-03-22T10:09:32.368534122Z"} +2026/03/22 10:09:37 [metric_collector] {"stage_name":"metric_collector","events_processed":14884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2976.8,"last_update":"2026-03-22T10:09:32.368687135Z"} +2026/03/22 10:09:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:09:32.377424582Z"} +2026/03/22 10:09:37 [detection_layer] {"stage_name":"detection_layer","events_processed":496,"events_dropped":0,"avg_latency_ms":19.30069107220525,"throughput_eps":0,"last_update":"2026-03-22T10:09:32.479720423Z"} +2026/03/22 10:09:37 [transform_engine] {"stage_name":"transform_engine","events_processed":496,"events_dropped":0,"avg_latency_ms":225.82549390463075,"throughput_eps":0,"last_update":"2026-03-22T10:09:32.479648535Z"} +2026/03/22 10:09:37 ───────────────────────────────────────────────── +2026/03/22 10:09:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:09:42 [log_collector] {"stage_name":"log_collector","events_processed":23516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4703.2,"last_update":"2026-03-22T10:09:37.368046719Z"} +2026/03/22 10:09:42 [metric_collector] {"stage_name":"metric_collector","events_processed":14889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2977.8,"last_update":"2026-03-22T10:09:37.368474889Z"} +2026/03/22 10:09:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5958,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:09:37.376273157Z"} +2026/03/22 10:09:42 [detection_layer] {"stage_name":"detection_layer","events_processed":496,"events_dropped":0,"avg_latency_ms":19.30069107220525,"throughput_eps":0,"last_update":"2026-03-22T10:09:37.479547753Z"} +2026/03/22 10:09:42 [transform_engine] {"stage_name":"transform_engine","events_processed":496,"events_dropped":0,"avg_latency_ms":225.82549390463075,"throughput_eps":0,"last_update":"2026-03-22T10:09:37.47950942Z"} +2026/03/22 10:09:42 ───────────────────────────────────────────────── +2026/03/22 10:09:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:09:47 [log_collector] {"stage_name":"log_collector","events_processed":23527,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4705.4,"last_update":"2026-03-22T10:09:42.368002253Z"} +2026/03/22 10:09:47 [metric_collector] {"stage_name":"metric_collector","events_processed":14893,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2978.6,"last_update":"2026-03-22T10:09:42.368066116Z"} +2026/03/22 10:09:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:09:42.378393268Z"} +2026/03/22 10:09:47 [detection_layer] {"stage_name":"detection_layer","events_processed":496,"events_dropped":0,"avg_latency_ms":19.30069107220525,"throughput_eps":0,"last_update":"2026-03-22T10:09:42.479558963Z"} +2026/03/22 10:09:47 [transform_engine] {"stage_name":"transform_engine","events_processed":496,"events_dropped":0,"avg_latency_ms":225.82549390463075,"throughput_eps":0,"last_update":"2026-03-22T10:09:42.479508587Z"} +2026/03/22 10:09:47 ───────────────────────────────────────────────── +2026/03/22 10:09:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:09:52 [log_collector] {"stage_name":"log_collector","events_processed":23541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4708.2,"last_update":"2026-03-22T10:09:47.368000796Z"} +2026/03/22 10:09:52 [metric_collector] {"stage_name":"metric_collector","events_processed":14898,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2979.6,"last_update":"2026-03-22T10:09:47.367914842Z"} +2026/03/22 10:09:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5962,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:09:47.377249112Z"} +2026/03/22 10:09:52 [detection_layer] {"stage_name":"detection_layer","events_processed":496,"events_dropped":0,"avg_latency_ms":19.30069107220525,"throughput_eps":0,"last_update":"2026-03-22T10:09:47.479445914Z"} +2026/03/22 10:09:52 [transform_engine] {"stage_name":"transform_engine","events_processed":496,"events_dropped":0,"avg_latency_ms":225.82549390463075,"throughput_eps":0,"last_update":"2026-03-22T10:09:47.479398553Z"} +2026/03/22 10:09:52 ───────────────────────────────────────────────── +2026/03/22 10:09:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:09:57 [log_collector] {"stage_name":"log_collector","events_processed":23543,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4708.6,"last_update":"2026-03-22T10:09:52.36816159Z"} +2026/03/22 10:09:57 [metric_collector] {"stage_name":"metric_collector","events_processed":14904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2980.8,"last_update":"2026-03-22T10:09:52.368296799Z"} +2026/03/22 10:09:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:09:52.377785445Z"} +2026/03/22 10:09:57 [detection_layer] {"stage_name":"detection_layer","events_processed":496,"events_dropped":0,"avg_latency_ms":19.30069107220525,"throughput_eps":0,"last_update":"2026-03-22T10:09:52.479411713Z"} +2026/03/22 10:09:57 [transform_engine] {"stage_name":"transform_engine","events_processed":496,"events_dropped":0,"avg_latency_ms":225.82549390463075,"throughput_eps":0,"last_update":"2026-03-22T10:09:52.478902668Z"} +2026/03/22 10:09:57 ───────────────────────────────────────────────── +2026/03/22 10:10:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:10:02 [log_collector] {"stage_name":"log_collector","events_processed":23557,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4711.4,"last_update":"2026-03-22T10:09:57.36825892Z"} +2026/03/22 10:10:02 [metric_collector] {"stage_name":"metric_collector","events_processed":14909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2981.8,"last_update":"2026-03-22T10:09:57.368525321Z"} +2026/03/22 10:10:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:09:57.377366135Z"} +2026/03/22 10:10:02 [detection_layer] {"stage_name":"detection_layer","events_processed":496,"events_dropped":0,"avg_latency_ms":19.30069107220525,"throughput_eps":0,"last_update":"2026-03-22T10:09:57.479562727Z"} +2026/03/22 10:10:02 [transform_engine] {"stage_name":"transform_engine","events_processed":497,"events_dropped":0,"avg_latency_ms":203.7951445237046,"throughput_eps":0,"last_update":"2026-03-22T10:09:57.595348358Z"} +2026/03/22 10:10:02 ───────────────────────────────────────────────── +2026/03/22 10:10:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:10:07 [detection_layer] {"stage_name":"detection_layer","events_processed":497,"events_dropped":0,"avg_latency_ms":19.0982592577642,"throughput_eps":0,"last_update":"2026-03-22T10:10:02.479261633Z"} +2026/03/22 10:10:07 [transform_engine] {"stage_name":"transform_engine","events_processed":497,"events_dropped":0,"avg_latency_ms":203.7951445237046,"throughput_eps":0,"last_update":"2026-03-22T10:10:02.479228739Z"} +2026/03/22 10:10:07 [log_collector] {"stage_name":"log_collector","events_processed":23557,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4711.4,"last_update":"2026-03-22T10:10:02.368712081Z"} +2026/03/22 10:10:07 [metric_collector] {"stage_name":"metric_collector","events_processed":14914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2982.8,"last_update":"2026-03-22T10:10:02.369143718Z"} +2026/03/22 10:10:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:10:02.380989098Z"} +2026/03/22 10:10:07 ───────────────────────────────────────────────── +2026/03/22 10:10:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:10:12 [detection_layer] {"stage_name":"detection_layer","events_processed":497,"events_dropped":0,"avg_latency_ms":19.0982592577642,"throughput_eps":0,"last_update":"2026-03-22T10:10:07.47971456Z"} +2026/03/22 10:10:12 [transform_engine] {"stage_name":"transform_engine","events_processed":497,"events_dropped":0,"avg_latency_ms":203.7951445237046,"throughput_eps":0,"last_update":"2026-03-22T10:10:07.47966209Z"} +2026/03/22 10:10:12 [log_collector] {"stage_name":"log_collector","events_processed":23557,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4711.4,"last_update":"2026-03-22T10:10:07.368729194Z"} +2026/03/22 10:10:12 [metric_collector] {"stage_name":"metric_collector","events_processed":14919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2983.8,"last_update":"2026-03-22T10:10:07.369133489Z"} +2026/03/22 10:10:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5970,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:10:07.378430176Z"} +2026/03/22 10:10:12 ───────────────────────────────────────────────── +2026/03/22 10:10:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:10:17 [log_collector] {"stage_name":"log_collector","events_processed":23557,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4711.4,"last_update":"2026-03-22T10:10:12.368517107Z"} +2026/03/22 10:10:17 [metric_collector] {"stage_name":"metric_collector","events_processed":14924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2984.8,"last_update":"2026-03-22T10:10:12.368983271Z"} +2026/03/22 10:10:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:10:12.378879688Z"} +2026/03/22 10:10:17 [detection_layer] {"stage_name":"detection_layer","events_processed":497,"events_dropped":0,"avg_latency_ms":19.0982592577642,"throughput_eps":0,"last_update":"2026-03-22T10:10:12.479171049Z"} +2026/03/22 10:10:17 [transform_engine] {"stage_name":"transform_engine","events_processed":497,"events_dropped":0,"avg_latency_ms":203.7951445237046,"throughput_eps":0,"last_update":"2026-03-22T10:10:12.479129439Z"} +2026/03/22 10:10:17 ───────────────────────────────────────────────── +2026/03/22 10:10:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:10:22 [transform_engine] {"stage_name":"transform_engine","events_processed":497,"events_dropped":0,"avg_latency_ms":203.7951445237046,"throughput_eps":0,"last_update":"2026-03-22T10:10:17.479345089Z"} +2026/03/22 10:10:22 [log_collector] {"stage_name":"log_collector","events_processed":23557,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4711.4,"last_update":"2026-03-22T10:10:17.368004102Z"} +2026/03/22 10:10:22 [metric_collector] {"stage_name":"metric_collector","events_processed":14929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2985.8,"last_update":"2026-03-22T10:10:17.36831601Z"} +2026/03/22 10:10:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:10:17.376937084Z"} +2026/03/22 10:10:22 [detection_layer] {"stage_name":"detection_layer","events_processed":497,"events_dropped":0,"avg_latency_ms":19.0982592577642,"throughput_eps":0,"last_update":"2026-03-22T10:10:17.479296667Z"} +2026/03/22 10:10:22 ───────────────────────────────────────────────── +2026/03/22 10:10:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:10:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:10:22.377215122Z"} +2026/03/22 10:10:27 [detection_layer] {"stage_name":"detection_layer","events_processed":497,"events_dropped":0,"avg_latency_ms":19.0982592577642,"throughput_eps":0,"last_update":"2026-03-22T10:10:22.47945692Z"} +2026/03/22 10:10:27 [transform_engine] {"stage_name":"transform_engine","events_processed":497,"events_dropped":0,"avg_latency_ms":203.7951445237046,"throughput_eps":0,"last_update":"2026-03-22T10:10:22.479497147Z"} +2026/03/22 10:10:27 [log_collector] {"stage_name":"log_collector","events_processed":23557,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4711.4,"last_update":"2026-03-22T10:10:22.367960294Z"} +2026/03/22 10:10:27 [metric_collector] {"stage_name":"metric_collector","events_processed":14934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2986.8,"last_update":"2026-03-22T10:10:22.368333459Z"} +2026/03/22 10:10:27 ───────────────────────────────────────────────── +2026/03/22 10:10:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:10:32 [log_collector] {"stage_name":"log_collector","events_processed":23557,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4711.4,"last_update":"2026-03-22T10:10:27.368264612Z"} +2026/03/22 10:10:32 [metric_collector] {"stage_name":"metric_collector","events_processed":14939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2987.8,"last_update":"2026-03-22T10:10:27.369192339Z"} +2026/03/22 10:10:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:10:27.377120074Z"} +2026/03/22 10:10:32 [detection_layer] {"stage_name":"detection_layer","events_processed":497,"events_dropped":0,"avg_latency_ms":19.0982592577642,"throughput_eps":0,"last_update":"2026-03-22T10:10:27.479599818Z"} +2026/03/22 10:10:32 [transform_engine] {"stage_name":"transform_engine","events_processed":498,"events_dropped":0,"avg_latency_ms":179.0521306189637,"throughput_eps":0,"last_update":"2026-03-22T10:10:27.559588739Z"} +2026/03/22 10:10:32 ───────────────────────────────────────────────── +2026/03/22 10:10:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:10:37 [metric_collector] {"stage_name":"metric_collector","events_processed":14944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2988.8,"last_update":"2026-03-22T10:10:32.368889019Z"} +2026/03/22 10:10:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:10:32.377221079Z"} +2026/03/22 10:10:37 [detection_layer] {"stage_name":"detection_layer","events_processed":498,"events_dropped":0,"avg_latency_ms":19.835351806211364,"throughput_eps":0,"last_update":"2026-03-22T10:10:32.47956377Z"} +2026/03/22 10:10:37 [transform_engine] {"stage_name":"transform_engine","events_processed":498,"events_dropped":0,"avg_latency_ms":179.0521306189637,"throughput_eps":0,"last_update":"2026-03-22T10:10:32.479580352Z"} +2026/03/22 10:10:37 [log_collector] {"stage_name":"log_collector","events_processed":23557,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4711.4,"last_update":"2026-03-22T10:10:32.368591309Z"} +2026/03/22 10:10:37 ───────────────────────────────────────────────── +2026/03/22 10:10:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:10:42 [log_collector] {"stage_name":"log_collector","events_processed":23557,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4711.4,"last_update":"2026-03-22T10:10:37.3681265Z"} +2026/03/22 10:10:42 [metric_collector] {"stage_name":"metric_collector","events_processed":14949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2989.8,"last_update":"2026-03-22T10:10:37.3685809Z"} +2026/03/22 10:10:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:10:37.376968708Z"} +2026/03/22 10:10:42 [detection_layer] {"stage_name":"detection_layer","events_processed":498,"events_dropped":0,"avg_latency_ms":19.835351806211364,"throughput_eps":0,"last_update":"2026-03-22T10:10:37.479321848Z"} +2026/03/22 10:10:42 [transform_engine] {"stage_name":"transform_engine","events_processed":498,"events_dropped":0,"avg_latency_ms":179.0521306189637,"throughput_eps":0,"last_update":"2026-03-22T10:10:37.479337347Z"} +2026/03/22 10:10:42 ───────────────────────────────────────────────── +2026/03/22 10:10:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:10:47 [metric_collector] {"stage_name":"metric_collector","events_processed":14954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2990.8,"last_update":"2026-03-22T10:10:42.36966193Z"} +2026/03/22 10:10:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:10:42.376937827Z"} +2026/03/22 10:10:47 [detection_layer] {"stage_name":"detection_layer","events_processed":498,"events_dropped":0,"avg_latency_ms":19.835351806211364,"throughput_eps":0,"last_update":"2026-03-22T10:10:42.479182179Z"} +2026/03/22 10:10:47 [transform_engine] {"stage_name":"transform_engine","events_processed":498,"events_dropped":0,"avg_latency_ms":179.0521306189637,"throughput_eps":0,"last_update":"2026-03-22T10:10:42.479196497Z"} +2026/03/22 10:10:47 [log_collector] {"stage_name":"log_collector","events_processed":23557,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4711.4,"last_update":"2026-03-22T10:10:42.368902815Z"} +2026/03/22 10:10:47 ───────────────────────────────────────────────── +2026/03/22 10:10:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:10:52 [detection_layer] {"stage_name":"detection_layer","events_processed":498,"events_dropped":0,"avg_latency_ms":19.835351806211364,"throughput_eps":0,"last_update":"2026-03-22T10:10:47.479835237Z"} +2026/03/22 10:10:52 [transform_engine] {"stage_name":"transform_engine","events_processed":498,"events_dropped":0,"avg_latency_ms":179.0521306189637,"throughput_eps":0,"last_update":"2026-03-22T10:10:47.479805531Z"} +2026/03/22 10:10:52 [log_collector] {"stage_name":"log_collector","events_processed":23557,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4711.4,"last_update":"2026-03-22T10:10:47.368009172Z"} +2026/03/22 10:10:52 [metric_collector] {"stage_name":"metric_collector","events_processed":14959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2991.8,"last_update":"2026-03-22T10:10:47.368399068Z"} +2026/03/22 10:10:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:10:47.378458397Z"} +2026/03/22 10:10:52 ───────────────────────────────────────────────── +2026/03/22 10:10:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:10:57 [log_collector] {"stage_name":"log_collector","events_processed":23557,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4711.4,"last_update":"2026-03-22T10:10:52.368610872Z"} +2026/03/22 10:10:57 [metric_collector] {"stage_name":"metric_collector","events_processed":14964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2992.8,"last_update":"2026-03-22T10:10:52.369145366Z"} +2026/03/22 10:10:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:10:52.378119877Z"} +2026/03/22 10:10:57 [detection_layer] {"stage_name":"detection_layer","events_processed":498,"events_dropped":0,"avg_latency_ms":19.835351806211364,"throughput_eps":0,"last_update":"2026-03-22T10:10:52.479545462Z"} +2026/03/22 10:10:57 [transform_engine] {"stage_name":"transform_engine","events_processed":498,"events_dropped":0,"avg_latency_ms":179.0521306189637,"throughput_eps":0,"last_update":"2026-03-22T10:10:52.479483202Z"} +2026/03/22 10:10:57 ───────────────────────────────────────────────── +Saved state: 13 clusters, 23558 messages, reason: none +2026/03/22 10:11:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:11:02 [log_collector] {"stage_name":"log_collector","events_processed":23562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4712.4,"last_update":"2026-03-22T10:11:02.368215475Z"} +2026/03/22 10:11:02 [metric_collector] {"stage_name":"metric_collector","events_processed":14969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2993.8,"last_update":"2026-03-22T10:10:57.369229895Z"} +2026/03/22 10:11:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5990,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:10:57.378314025Z"} +2026/03/22 10:11:02 [detection_layer] {"stage_name":"detection_layer","events_processed":498,"events_dropped":0,"avg_latency_ms":19.835351806211364,"throughput_eps":0,"last_update":"2026-03-22T10:10:57.479516492Z"} +2026/03/22 10:11:02 [transform_engine] {"stage_name":"transform_engine","events_processed":499,"events_dropped":0,"avg_latency_ms":157.63636189517098,"throughput_eps":0,"last_update":"2026-03-22T10:10:57.551502002Z"} +2026/03/22 10:11:02 ───────────────────────────────────────────────── +2026/03/22 10:11:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:11:07 [metric_collector] {"stage_name":"metric_collector","events_processed":14974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2994.8,"last_update":"2026-03-22T10:11:02.368475694Z"} +2026/03/22 10:11:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5992,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:11:02.378335821Z"} +2026/03/22 10:11:07 [detection_layer] {"stage_name":"detection_layer","events_processed":499,"events_dropped":0,"avg_latency_ms":20.392076844969093,"throughput_eps":0,"last_update":"2026-03-22T10:11:02.479537105Z"} +2026/03/22 10:11:07 [transform_engine] {"stage_name":"transform_engine","events_processed":499,"events_dropped":0,"avg_latency_ms":157.63636189517098,"throughput_eps":0,"last_update":"2026-03-22T10:11:02.479547304Z"} +2026/03/22 10:11:07 [log_collector] {"stage_name":"log_collector","events_processed":23562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4712.4,"last_update":"2026-03-22T10:11:07.368657544Z"} +2026/03/22 10:11:07 ───────────────────────────────────────────────── +2026/03/22 10:11:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:11:12 [detection_layer] {"stage_name":"detection_layer","events_processed":499,"events_dropped":0,"avg_latency_ms":20.392076844969093,"throughput_eps":0,"last_update":"2026-03-22T10:11:07.479191885Z"} +2026/03/22 10:11:12 [transform_engine] {"stage_name":"transform_engine","events_processed":499,"events_dropped":0,"avg_latency_ms":157.63636189517098,"throughput_eps":0,"last_update":"2026-03-22T10:11:07.478843819Z"} +2026/03/22 10:11:12 [log_collector] {"stage_name":"log_collector","events_processed":23562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4712.4,"last_update":"2026-03-22T10:11:07.368657544Z"} +2026/03/22 10:11:12 [metric_collector] {"stage_name":"metric_collector","events_processed":14979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2995.8,"last_update":"2026-03-22T10:11:07.369030337Z"} +2026/03/22 10:11:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:11:07.375697809Z"} +2026/03/22 10:11:12 ───────────────────────────────────────────────── +2026/03/22 10:11:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:11:17 [log_collector] {"stage_name":"log_collector","events_processed":23562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4712.4,"last_update":"2026-03-22T10:11:17.368513997Z"} +2026/03/22 10:11:17 [metric_collector] {"stage_name":"metric_collector","events_processed":14984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2996.8,"last_update":"2026-03-22T10:11:12.368273438Z"} +2026/03/22 10:11:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5996,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:11:12.374698905Z"} +2026/03/22 10:11:17 [detection_layer] {"stage_name":"detection_layer","events_processed":499,"events_dropped":0,"avg_latency_ms":20.392076844969093,"throughput_eps":0,"last_update":"2026-03-22T10:11:12.479987008Z"} +2026/03/22 10:11:17 [transform_engine] {"stage_name":"transform_engine","events_processed":499,"events_dropped":0,"avg_latency_ms":157.63636189517098,"throughput_eps":0,"last_update":"2026-03-22T10:11:12.478847465Z"} +2026/03/22 10:11:17 ───────────────────────────────────────────────── +2026/03/22 10:11:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:11:22 [detection_layer] {"stage_name":"detection_layer","events_processed":499,"events_dropped":0,"avg_latency_ms":20.392076844969093,"throughput_eps":0,"last_update":"2026-03-22T10:11:17.479889811Z"} +2026/03/22 10:11:22 [transform_engine] {"stage_name":"transform_engine","events_processed":499,"events_dropped":0,"avg_latency_ms":157.63636189517098,"throughput_eps":0,"last_update":"2026-03-22T10:11:17.479864753Z"} +2026/03/22 10:11:22 [log_collector] {"stage_name":"log_collector","events_processed":23562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4712.4,"last_update":"2026-03-22T10:11:17.368513997Z"} +2026/03/22 10:11:22 [metric_collector] {"stage_name":"metric_collector","events_processed":14989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2997.8,"last_update":"2026-03-22T10:11:17.368838979Z"} +2026/03/22 10:11:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":5998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:11:17.374678776Z"} +2026/03/22 10:11:22 ───────────────────────────────────────────────── +2026/03/22 10:11:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:11:27 [transform_engine] {"stage_name":"transform_engine","events_processed":499,"events_dropped":0,"avg_latency_ms":157.63636189517098,"throughput_eps":0,"last_update":"2026-03-22T10:11:22.479504991Z"} +2026/03/22 10:11:27 [log_collector] {"stage_name":"log_collector","events_processed":23562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4712.4,"last_update":"2026-03-22T10:11:22.368557738Z"} +2026/03/22 10:11:27 [metric_collector] {"stage_name":"metric_collector","events_processed":14994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2998.8,"last_update":"2026-03-22T10:11:22.368761059Z"} +2026/03/22 10:11:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:11:22.374303315Z"} +2026/03/22 10:11:27 [detection_layer] {"stage_name":"detection_layer","events_processed":499,"events_dropped":0,"avg_latency_ms":20.392076844969093,"throughput_eps":0,"last_update":"2026-03-22T10:11:22.479456228Z"} +2026/03/22 10:11:27 ───────────────────────────────────────────────── +2026/03/22 10:11:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:11:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:11:27.376111605Z"} +2026/03/22 10:11:32 [detection_layer] {"stage_name":"detection_layer","events_processed":499,"events_dropped":0,"avg_latency_ms":20.392076844969093,"throughput_eps":0,"last_update":"2026-03-22T10:11:27.479304093Z"} +2026/03/22 10:11:32 [transform_engine] {"stage_name":"transform_engine","events_processed":500,"events_dropped":0,"avg_latency_ms":376.6893993161368,"throughput_eps":0,"last_update":"2026-03-22T10:11:28.732219909Z"} +2026/03/22 10:11:32 [log_collector] {"stage_name":"log_collector","events_processed":23562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4712.4,"last_update":"2026-03-22T10:11:27.368961098Z"} +2026/03/22 10:11:32 [metric_collector] {"stage_name":"metric_collector","events_processed":14999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2999.8,"last_update":"2026-03-22T10:11:27.369203772Z"} +2026/03/22 10:11:32 ───────────────────────────────────────────────── +2026/03/22 10:11:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:11:37 [log_collector] {"stage_name":"log_collector","events_processed":23562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4712.4,"last_update":"2026-03-22T10:11:32.368362916Z"} +2026/03/22 10:11:37 [metric_collector] {"stage_name":"metric_collector","events_processed":15004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3000.8,"last_update":"2026-03-22T10:11:32.368797439Z"} +2026/03/22 10:11:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:11:32.374621374Z"} +2026/03/22 10:11:37 [detection_layer] {"stage_name":"detection_layer","events_processed":500,"events_dropped":0,"avg_latency_ms":19.515003675975276,"throughput_eps":0,"last_update":"2026-03-22T10:11:32.479807081Z"} +2026/03/22 10:11:37 [transform_engine] {"stage_name":"transform_engine","events_processed":500,"events_dropped":0,"avg_latency_ms":376.6893993161368,"throughput_eps":0,"last_update":"2026-03-22T10:11:32.479819505Z"} +2026/03/22 10:11:37 ───────────────────────────────────────────────── +2026/03/22 10:11:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:11:42 [log_collector] {"stage_name":"log_collector","events_processed":23562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4712.4,"last_update":"2026-03-22T10:11:37.368641873Z"} +2026/03/22 10:11:42 [metric_collector] {"stage_name":"metric_collector","events_processed":15009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3001.8,"last_update":"2026-03-22T10:11:37.368735743Z"} +2026/03/22 10:11:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6006,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:11:37.374755885Z"} +2026/03/22 10:11:42 [detection_layer] {"stage_name":"detection_layer","events_processed":500,"events_dropped":0,"avg_latency_ms":19.515003675975276,"throughput_eps":0,"last_update":"2026-03-22T10:11:37.478956454Z"} +2026/03/22 10:11:42 [transform_engine] {"stage_name":"transform_engine","events_processed":500,"events_dropped":0,"avg_latency_ms":376.6893993161368,"throughput_eps":0,"last_update":"2026-03-22T10:11:37.478931326Z"} +2026/03/22 10:11:42 ───────────────────────────────────────────────── +2026/03/22 10:11:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:11:47 [transform_engine] {"stage_name":"transform_engine","events_processed":500,"events_dropped":0,"avg_latency_ms":376.6893993161368,"throughput_eps":0,"last_update":"2026-03-22T10:11:42.478804604Z"} +2026/03/22 10:11:47 [log_collector] {"stage_name":"log_collector","events_processed":23565,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4713,"last_update":"2026-03-22T10:11:42.36796662Z"} +2026/03/22 10:11:47 [metric_collector] {"stage_name":"metric_collector","events_processed":15014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3002.8,"last_update":"2026-03-22T10:11:42.368299669Z"} +2026/03/22 10:11:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6008,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:11:42.375301361Z"} +2026/03/22 10:11:47 [detection_layer] {"stage_name":"detection_layer","events_processed":500,"events_dropped":0,"avg_latency_ms":19.515003675975276,"throughput_eps":0,"last_update":"2026-03-22T10:11:42.479910112Z"} +2026/03/22 10:11:47 ───────────────────────────────────────────────── +2026/03/22 10:11:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:11:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:11:47.376462647Z"} +2026/03/22 10:11:52 [detection_layer] {"stage_name":"detection_layer","events_processed":500,"events_dropped":0,"avg_latency_ms":19.515003675975276,"throughput_eps":0,"last_update":"2026-03-22T10:11:47.479826673Z"} +2026/03/22 10:11:52 [transform_engine] {"stage_name":"transform_engine","events_processed":500,"events_dropped":0,"avg_latency_ms":376.6893993161368,"throughput_eps":0,"last_update":"2026-03-22T10:11:47.479841562Z"} +2026/03/22 10:11:52 [log_collector] {"stage_name":"log_collector","events_processed":23573,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4714.6,"last_update":"2026-03-22T10:11:47.368056865Z"} +2026/03/22 10:11:52 [metric_collector] {"stage_name":"metric_collector","events_processed":15019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3003.8,"last_update":"2026-03-22T10:11:47.368448235Z"} +2026/03/22 10:11:52 ───────────────────────────────────────────────── +2026/03/22 10:11:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:11:57 [log_collector] {"stage_name":"log_collector","events_processed":23660,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4732,"last_update":"2026-03-22T10:11:52.368772435Z"} +2026/03/22 10:11:57 [metric_collector] {"stage_name":"metric_collector","events_processed":15024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3004.8,"last_update":"2026-03-22T10:11:52.369170327Z"} +2026/03/22 10:11:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6012,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:11:52.377022248Z"} +2026/03/22 10:11:57 [detection_layer] {"stage_name":"detection_layer","events_processed":500,"events_dropped":0,"avg_latency_ms":19.515003675975276,"throughput_eps":0,"last_update":"2026-03-22T10:11:52.479290425Z"} +2026/03/22 10:11:57 [transform_engine] {"stage_name":"transform_engine","events_processed":500,"events_dropped":0,"avg_latency_ms":376.6893993161368,"throughput_eps":0,"last_update":"2026-03-22T10:11:52.47930398Z"} +2026/03/22 10:11:57 ───────────────────────────────────────────────── +Saved state: 13 clusters, 23819 messages, reason: none +2026/03/22 10:12:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:12:02 [detection_layer] {"stage_name":"detection_layer","events_processed":500,"events_dropped":0,"avg_latency_ms":19.515003675975276,"throughput_eps":0,"last_update":"2026-03-22T10:11:57.479458785Z"} +2026/03/22 10:12:02 [transform_engine] {"stage_name":"transform_engine","events_processed":501,"events_dropped":0,"avg_latency_ms":359.8305556529095,"throughput_eps":0,"last_update":"2026-03-22T10:11:57.771778091Z"} +2026/03/22 10:12:02 [log_collector] {"stage_name":"log_collector","events_processed":23768,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4753.6,"last_update":"2026-03-22T10:11:57.36800904Z"} +2026/03/22 10:12:02 [metric_collector] {"stage_name":"metric_collector","events_processed":15029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3005.8,"last_update":"2026-03-22T10:11:57.368654136Z"} +2026/03/22 10:12:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:11:57.377089153Z"} +2026/03/22 10:12:02 ───────────────────────────────────────────────── +2026/03/22 10:12:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:12:07 [metric_collector] {"stage_name":"metric_collector","events_processed":15039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3007.8,"last_update":"2026-03-22T10:12:07.369638404Z"} +2026/03/22 10:12:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:12:02.377067278Z"} +2026/03/22 10:12:07 [detection_layer] {"stage_name":"detection_layer","events_processed":501,"events_dropped":0,"avg_latency_ms":19.616966540780222,"throughput_eps":0,"last_update":"2026-03-22T10:12:02.479450557Z"} +2026/03/22 10:12:07 [transform_engine] {"stage_name":"transform_engine","events_processed":501,"events_dropped":0,"avg_latency_ms":359.8305556529095,"throughput_eps":0,"last_update":"2026-03-22T10:12:02.479409327Z"} +2026/03/22 10:12:07 [log_collector] {"stage_name":"log_collector","events_processed":23938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4787.6,"last_update":"2026-03-22T10:12:02.367972117Z"} +2026/03/22 10:12:07 ───────────────────────────────────────────────── +2026/03/22 10:12:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:12:12 [metric_collector] {"stage_name":"metric_collector","events_processed":15039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3007.8,"last_update":"2026-03-22T10:12:07.369638404Z"} +2026/03/22 10:12:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6018,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:12:07.375982656Z"} +2026/03/22 10:12:12 [detection_layer] {"stage_name":"detection_layer","events_processed":501,"events_dropped":0,"avg_latency_ms":19.616966540780222,"throughput_eps":0,"last_update":"2026-03-22T10:12:07.4792978Z"} +2026/03/22 10:12:12 [transform_engine] {"stage_name":"transform_engine","events_processed":501,"events_dropped":0,"avg_latency_ms":359.8305556529095,"throughput_eps":0,"last_update":"2026-03-22T10:12:07.479264946Z"} +2026/03/22 10:12:12 [log_collector] {"stage_name":"log_collector","events_processed":23941,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4788.2,"last_update":"2026-03-22T10:12:07.369758634Z"} +2026/03/22 10:12:12 ───────────────────────────────────────────────── +2026/03/22 10:12:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:12:17 [log_collector] {"stage_name":"log_collector","events_processed":23941,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4788.2,"last_update":"2026-03-22T10:12:12.368641427Z"} +2026/03/22 10:12:17 [metric_collector] {"stage_name":"metric_collector","events_processed":15044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3008.8,"last_update":"2026-03-22T10:12:12.368916924Z"} +2026/03/22 10:12:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6020,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:12:12.378142176Z"} +2026/03/22 10:12:17 [detection_layer] {"stage_name":"detection_layer","events_processed":501,"events_dropped":0,"avg_latency_ms":19.616966540780222,"throughput_eps":0,"last_update":"2026-03-22T10:12:12.479291419Z"} +2026/03/22 10:12:17 [transform_engine] {"stage_name":"transform_engine","events_processed":501,"events_dropped":0,"avg_latency_ms":359.8305556529095,"throughput_eps":0,"last_update":"2026-03-22T10:12:12.479310106Z"} +2026/03/22 10:12:17 ───────────────────────────────────────────────── +2026/03/22 10:12:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:12:22 [detection_layer] {"stage_name":"detection_layer","events_processed":501,"events_dropped":0,"avg_latency_ms":19.616966540780222,"throughput_eps":0,"last_update":"2026-03-22T10:12:17.47948809Z"} +2026/03/22 10:12:22 [transform_engine] {"stage_name":"transform_engine","events_processed":501,"events_dropped":0,"avg_latency_ms":359.8305556529095,"throughput_eps":0,"last_update":"2026-03-22T10:12:17.479450057Z"} +2026/03/22 10:12:22 [log_collector] {"stage_name":"log_collector","events_processed":23966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4793.2,"last_update":"2026-03-22T10:12:22.367990314Z"} +2026/03/22 10:12:22 [metric_collector] {"stage_name":"metric_collector","events_processed":15049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3009.8,"last_update":"2026-03-22T10:12:17.368301309Z"} +2026/03/22 10:12:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6022,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:12:17.378058418Z"} +2026/03/22 10:12:22 ───────────────────────────────────────────────── +2026/03/22 10:12:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:12:27 [transform_engine] {"stage_name":"transform_engine","events_processed":501,"events_dropped":0,"avg_latency_ms":359.8305556529095,"throughput_eps":0,"last_update":"2026-03-22T10:12:22.479869342Z"} +2026/03/22 10:12:27 [log_collector] {"stage_name":"log_collector","events_processed":23966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4793.2,"last_update":"2026-03-22T10:12:22.367990314Z"} +2026/03/22 10:12:27 [metric_collector] {"stage_name":"metric_collector","events_processed":15054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3010.8,"last_update":"2026-03-22T10:12:22.368932088Z"} +2026/03/22 10:12:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:12:22.375621402Z"} +2026/03/22 10:12:27 [detection_layer] {"stage_name":"detection_layer","events_processed":501,"events_dropped":0,"avg_latency_ms":19.616966540780222,"throughput_eps":0,"last_update":"2026-03-22T10:12:22.479914147Z"} +2026/03/22 10:12:27 ───────────────────────────────────────────────── +2026/03/22 10:12:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:12:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:12:27.377676858Z"} +2026/03/22 10:12:32 [detection_layer] {"stage_name":"detection_layer","events_processed":501,"events_dropped":0,"avg_latency_ms":19.616966540780222,"throughput_eps":0,"last_update":"2026-03-22T10:12:27.478974516Z"} +2026/03/22 10:12:32 [transform_engine] {"stage_name":"transform_engine","events_processed":502,"events_dropped":0,"avg_latency_ms":311.48297812232755,"throughput_eps":0,"last_update":"2026-03-22T10:12:27.59702226Z"} +2026/03/22 10:12:32 [log_collector] {"stage_name":"log_collector","events_processed":23968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4793.6,"last_update":"2026-03-22T10:12:27.368275079Z"} +2026/03/22 10:12:32 [metric_collector] {"stage_name":"metric_collector","events_processed":15059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3011.8,"last_update":"2026-03-22T10:12:27.368439374Z"} +2026/03/22 10:12:32 ───────────────────────────────────────────────── +2026/03/22 10:12:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:12:37 [log_collector] {"stage_name":"log_collector","events_processed":23968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4793.6,"last_update":"2026-03-22T10:12:32.367966387Z"} +2026/03/22 10:12:37 [metric_collector] {"stage_name":"metric_collector","events_processed":15064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3012.8,"last_update":"2026-03-22T10:12:32.368732305Z"} +2026/03/22 10:12:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:12:32.377560085Z"} +2026/03/22 10:12:37 [detection_layer] {"stage_name":"detection_layer","events_processed":502,"events_dropped":0,"avg_latency_ms":19.69506203262418,"throughput_eps":0,"last_update":"2026-03-22T10:12:32.47979024Z"} +2026/03/22 10:12:37 [transform_engine] {"stage_name":"transform_engine","events_processed":502,"events_dropped":0,"avg_latency_ms":311.48297812232755,"throughput_eps":0,"last_update":"2026-03-22T10:12:32.47975891Z"} +2026/03/22 10:12:37 ───────────────────────────────────────────────── +2026/03/22 10:12:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:12:42 [log_collector] {"stage_name":"log_collector","events_processed":23968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4793.6,"last_update":"2026-03-22T10:12:37.368428651Z"} +2026/03/22 10:12:42 [metric_collector] {"stage_name":"metric_collector","events_processed":15069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3013.8,"last_update":"2026-03-22T10:12:37.369147087Z"} +2026/03/22 10:12:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:12:37.379369528Z"} +2026/03/22 10:12:42 [detection_layer] {"stage_name":"detection_layer","events_processed":502,"events_dropped":0,"avg_latency_ms":19.69506203262418,"throughput_eps":0,"last_update":"2026-03-22T10:12:37.479592457Z"} +2026/03/22 10:12:42 [transform_engine] {"stage_name":"transform_engine","events_processed":502,"events_dropped":0,"avg_latency_ms":311.48297812232755,"throughput_eps":0,"last_update":"2026-03-22T10:12:37.47963015Z"} +2026/03/22 10:12:42 ───────────────────────────────────────────────── +2026/03/22 10:12:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:12:47 [detection_layer] {"stage_name":"detection_layer","events_processed":502,"events_dropped":0,"avg_latency_ms":19.69506203262418,"throughput_eps":0,"last_update":"2026-03-22T10:12:42.479826322Z"} +2026/03/22 10:12:47 [transform_engine] {"stage_name":"transform_engine","events_processed":502,"events_dropped":0,"avg_latency_ms":311.48297812232755,"throughput_eps":0,"last_update":"2026-03-22T10:12:42.47986699Z"} +2026/03/22 10:12:47 [log_collector] {"stage_name":"log_collector","events_processed":23968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4793.6,"last_update":"2026-03-22T10:12:42.368138572Z"} +2026/03/22 10:12:47 [metric_collector] {"stage_name":"metric_collector","events_processed":15079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3015.8,"last_update":"2026-03-22T10:12:47.369078027Z"} +2026/03/22 10:12:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:12:42.377494823Z"} +2026/03/22 10:12:47 ───────────────────────────────────────────────── +2026/03/22 10:12:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:12:52 [detection_layer] {"stage_name":"detection_layer","events_processed":502,"events_dropped":0,"avg_latency_ms":19.69506203262418,"throughput_eps":0,"last_update":"2026-03-22T10:12:47.479078676Z"} +2026/03/22 10:12:52 [transform_engine] {"stage_name":"transform_engine","events_processed":502,"events_dropped":0,"avg_latency_ms":311.48297812232755,"throughput_eps":0,"last_update":"2026-03-22T10:12:47.479128792Z"} +2026/03/22 10:12:52 [log_collector] {"stage_name":"log_collector","events_processed":23968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4793.6,"last_update":"2026-03-22T10:12:47.369194009Z"} +2026/03/22 10:12:52 [metric_collector] {"stage_name":"metric_collector","events_processed":15079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3015.8,"last_update":"2026-03-22T10:12:47.369078027Z"} +2026/03/22 10:12:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:12:47.378862159Z"} +2026/03/22 10:12:52 ───────────────────────────────────────────────── +2026/03/22 10:12:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:12:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6036,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:12:52.37696032Z"} +2026/03/22 10:12:57 [detection_layer] {"stage_name":"detection_layer","events_processed":502,"events_dropped":0,"avg_latency_ms":19.69506203262418,"throughput_eps":0,"last_update":"2026-03-22T10:12:52.479154806Z"} +2026/03/22 10:12:57 [transform_engine] {"stage_name":"transform_engine","events_processed":502,"events_dropped":0,"avg_latency_ms":311.48297812232755,"throughput_eps":0,"last_update":"2026-03-22T10:12:52.479179934Z"} +2026/03/22 10:12:57 [log_collector] {"stage_name":"log_collector","events_processed":23968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4793.6,"last_update":"2026-03-22T10:12:57.368589909Z"} +2026/03/22 10:12:57 [metric_collector] {"stage_name":"metric_collector","events_processed":15084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3016.8,"last_update":"2026-03-22T10:12:52.368196342Z"} +2026/03/22 10:12:57 ───────────────────────────────────────────────── +2026/03/22 10:13:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:13:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:12:57.378207431Z"} +2026/03/22 10:13:02 [detection_layer] {"stage_name":"detection_layer","events_processed":502,"events_dropped":0,"avg_latency_ms":19.69506203262418,"throughput_eps":0,"last_update":"2026-03-22T10:12:57.47957782Z"} +2026/03/22 10:13:02 [transform_engine] {"stage_name":"transform_engine","events_processed":503,"events_dropped":0,"avg_latency_ms":263.37005169786204,"throughput_eps":0,"last_update":"2026-03-22T10:12:57.550519641Z"} +2026/03/22 10:13:02 [log_collector] {"stage_name":"log_collector","events_processed":23968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4793.6,"last_update":"2026-03-22T10:13:02.36798975Z"} +2026/03/22 10:13:02 [metric_collector] {"stage_name":"metric_collector","events_processed":15089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3017.8,"last_update":"2026-03-22T10:12:57.36889871Z"} +2026/03/22 10:13:02 ───────────────────────────────────────────────── +2026/03/22 10:13:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:13:07 [log_collector] {"stage_name":"log_collector","events_processed":23968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4793.6,"last_update":"2026-03-22T10:13:02.36798975Z"} +2026/03/22 10:13:07 [metric_collector] {"stage_name":"metric_collector","events_processed":15094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3018.8,"last_update":"2026-03-22T10:13:02.36878314Z"} +2026/03/22 10:13:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:13:02.377889233Z"} +2026/03/22 10:13:07 [detection_layer] {"stage_name":"detection_layer","events_processed":503,"events_dropped":0,"avg_latency_ms":20.231598826099344,"throughput_eps":0,"last_update":"2026-03-22T10:13:02.479090967Z"} +2026/03/22 10:13:07 [transform_engine] {"stage_name":"transform_engine","events_processed":503,"events_dropped":0,"avg_latency_ms":263.37005169786204,"throughput_eps":0,"last_update":"2026-03-22T10:13:02.47919708Z"} +2026/03/22 10:13:07 ───────────────────────────────────────────────── +2026/03/22 10:13:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:13:12 [log_collector] {"stage_name":"log_collector","events_processed":23968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4793.6,"last_update":"2026-03-22T10:13:07.367971816Z"} +2026/03/22 10:13:12 [metric_collector] {"stage_name":"metric_collector","events_processed":15099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3019.8,"last_update":"2026-03-22T10:13:07.368640987Z"} +2026/03/22 10:13:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:13:07.376630141Z"} +2026/03/22 10:13:12 [detection_layer] {"stage_name":"detection_layer","events_processed":503,"events_dropped":0,"avg_latency_ms":20.231598826099344,"throughput_eps":0,"last_update":"2026-03-22T10:13:07.479913322Z"} +2026/03/22 10:13:12 [transform_engine] {"stage_name":"transform_engine","events_processed":503,"events_dropped":0,"avg_latency_ms":263.37005169786204,"throughput_eps":0,"last_update":"2026-03-22T10:13:07.479869899Z"} +2026/03/22 10:13:12 ───────────────────────────────────────────────── +2026/03/22 10:13:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:13:17 [log_collector] {"stage_name":"log_collector","events_processed":23968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4793.6,"last_update":"2026-03-22T10:13:17.36840301Z"} +2026/03/22 10:13:17 [metric_collector] {"stage_name":"metric_collector","events_processed":15103,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3020.6,"last_update":"2026-03-22T10:13:12.367918955Z"} +2026/03/22 10:13:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:13:12.377689Z"} +2026/03/22 10:13:17 [detection_layer] {"stage_name":"detection_layer","events_processed":503,"events_dropped":0,"avg_latency_ms":20.231598826099344,"throughput_eps":0,"last_update":"2026-03-22T10:13:12.478980986Z"} +2026/03/22 10:13:17 [transform_engine] {"stage_name":"transform_engine","events_processed":503,"events_dropped":0,"avg_latency_ms":263.37005169786204,"throughput_eps":0,"last_update":"2026-03-22T10:13:12.47885215Z"} +2026/03/22 10:13:17 ───────────────────────────────────────────────── +2026/03/22 10:13:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:13:22 [log_collector] {"stage_name":"log_collector","events_processed":23968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4793.6,"last_update":"2026-03-22T10:13:17.36840301Z"} +2026/03/22 10:13:22 [metric_collector] {"stage_name":"metric_collector","events_processed":15109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3021.8,"last_update":"2026-03-22T10:13:17.368850598Z"} +2026/03/22 10:13:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:13:17.37678717Z"} +2026/03/22 10:13:22 [detection_layer] {"stage_name":"detection_layer","events_processed":503,"events_dropped":0,"avg_latency_ms":20.231598826099344,"throughput_eps":0,"last_update":"2026-03-22T10:13:17.479011553Z"} +2026/03/22 10:13:22 [transform_engine] {"stage_name":"transform_engine","events_processed":503,"events_dropped":0,"avg_latency_ms":263.37005169786204,"throughput_eps":0,"last_update":"2026-03-22T10:13:17.47906744Z"} +2026/03/22 10:13:22 ───────────────────────────────────────────────── +2026/03/22 10:13:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:13:27 [log_collector] {"stage_name":"log_collector","events_processed":23968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4793.6,"last_update":"2026-03-22T10:13:22.367986057Z"} +2026/03/22 10:13:27 [metric_collector] {"stage_name":"metric_collector","events_processed":15114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3022.8,"last_update":"2026-03-22T10:13:22.368701738Z"} +2026/03/22 10:13:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6048,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:13:22.377980993Z"} +2026/03/22 10:13:27 [detection_layer] {"stage_name":"detection_layer","events_processed":503,"events_dropped":0,"avg_latency_ms":20.231598826099344,"throughput_eps":0,"last_update":"2026-03-22T10:13:22.479264534Z"} +2026/03/22 10:13:27 [transform_engine] {"stage_name":"transform_engine","events_processed":503,"events_dropped":0,"avg_latency_ms":263.37005169786204,"throughput_eps":0,"last_update":"2026-03-22T10:13:22.479160274Z"} +2026/03/22 10:13:27 ───────────────────────────────────────────────── +2026/03/22 10:13:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:13:32 [transform_engine] {"stage_name":"transform_engine","events_processed":503,"events_dropped":0,"avg_latency_ms":263.37005169786204,"throughput_eps":0,"last_update":"2026-03-22T10:13:27.4791814Z"} +2026/03/22 10:13:32 [log_collector] {"stage_name":"log_collector","events_processed":23968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4793.6,"last_update":"2026-03-22T10:13:27.368815101Z"} +2026/03/22 10:13:32 [metric_collector] {"stage_name":"metric_collector","events_processed":15119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3023.8,"last_update":"2026-03-22T10:13:27.369445578Z"} +2026/03/22 10:13:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6050,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:13:27.37790876Z"} +2026/03/22 10:13:32 [detection_layer] {"stage_name":"detection_layer","events_processed":503,"events_dropped":0,"avg_latency_ms":20.231598826099344,"throughput_eps":0,"last_update":"2026-03-22T10:13:27.479133509Z"} +2026/03/22 10:13:32 ───────────────────────────────────────────────── +2026/03/22 10:13:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:13:37 [metric_collector] {"stage_name":"metric_collector","events_processed":15124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3024.8,"last_update":"2026-03-22T10:13:32.369100803Z"} +2026/03/22 10:13:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:13:32.379030864Z"} +2026/03/22 10:13:37 [detection_layer] {"stage_name":"detection_layer","events_processed":504,"events_dropped":0,"avg_latency_ms":20.69484126087948,"throughput_eps":0,"last_update":"2026-03-22T10:13:32.479243814Z"} +2026/03/22 10:13:37 [transform_engine] {"stage_name":"transform_engine","events_processed":504,"events_dropped":0,"avg_latency_ms":225.85157795828965,"throughput_eps":0,"last_update":"2026-03-22T10:13:32.479258032Z"} +2026/03/22 10:13:37 [log_collector] {"stage_name":"log_collector","events_processed":23968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4793.6,"last_update":"2026-03-22T10:13:32.368845755Z"} +2026/03/22 10:13:37 ───────────────────────────────────────────────── +Saved state: 13 clusters, 23969 messages, reason: none +2026/03/22 10:13:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:13:42 [detection_layer] {"stage_name":"detection_layer","events_processed":504,"events_dropped":0,"avg_latency_ms":20.69484126087948,"throughput_eps":0,"last_update":"2026-03-22T10:13:37.479003448Z"} +2026/03/22 10:13:42 [transform_engine] {"stage_name":"transform_engine","events_processed":504,"events_dropped":0,"avg_latency_ms":225.85157795828965,"throughput_eps":0,"last_update":"2026-03-22T10:13:37.479021072Z"} +2026/03/22 10:13:42 [log_collector] {"stage_name":"log_collector","events_processed":23968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4793.6,"last_update":"2026-03-22T10:13:37.368414212Z"} +2026/03/22 10:13:42 [metric_collector] {"stage_name":"metric_collector","events_processed":15129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3025.8,"last_update":"2026-03-22T10:13:37.369059608Z"} +2026/03/22 10:13:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:13:37.37782594Z"} +2026/03/22 10:13:42 ───────────────────────────────────────────────── +2026/03/22 10:13:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:13:47 [metric_collector] {"stage_name":"metric_collector","events_processed":15134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3026.8,"last_update":"2026-03-22T10:13:42.368648062Z"} +2026/03/22 10:13:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6056,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:13:42.37696351Z"} +2026/03/22 10:13:47 [detection_layer] {"stage_name":"detection_layer","events_processed":504,"events_dropped":0,"avg_latency_ms":20.69484126087948,"throughput_eps":0,"last_update":"2026-03-22T10:13:42.479330176Z"} +2026/03/22 10:13:47 [transform_engine] {"stage_name":"transform_engine","events_processed":504,"events_dropped":0,"avg_latency_ms":225.85157795828965,"throughput_eps":0,"last_update":"2026-03-22T10:13:42.479345155Z"} +2026/03/22 10:13:47 [log_collector] {"stage_name":"log_collector","events_processed":23982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4796.4,"last_update":"2026-03-22T10:13:47.368551898Z"} +2026/03/22 10:13:47 ───────────────────────────────────────────────── +2026/03/22 10:13:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:13:52 [transform_engine] {"stage_name":"transform_engine","events_processed":504,"events_dropped":0,"avg_latency_ms":225.85157795828965,"throughput_eps":0,"last_update":"2026-03-22T10:13:47.479392876Z"} +2026/03/22 10:13:52 [log_collector] {"stage_name":"log_collector","events_processed":23982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4796.4,"last_update":"2026-03-22T10:13:52.368808759Z"} +2026/03/22 10:13:52 [metric_collector] {"stage_name":"metric_collector","events_processed":15139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3027.8,"last_update":"2026-03-22T10:13:47.369171074Z"} +2026/03/22 10:13:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:13:47.379135982Z"} +2026/03/22 10:13:52 [detection_layer] {"stage_name":"detection_layer","events_processed":504,"events_dropped":0,"avg_latency_ms":20.69484126087948,"throughput_eps":0,"last_update":"2026-03-22T10:13:47.479379701Z"} +2026/03/22 10:13:52 ───────────────────────────────────────────────── +2026/03/22 10:13:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:13:57 [metric_collector] {"stage_name":"metric_collector","events_processed":15144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3028.8,"last_update":"2026-03-22T10:13:52.369423287Z"} +2026/03/22 10:13:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:13:52.377968274Z"} +2026/03/22 10:13:57 [detection_layer] {"stage_name":"detection_layer","events_processed":504,"events_dropped":0,"avg_latency_ms":20.69484126087948,"throughput_eps":0,"last_update":"2026-03-22T10:13:52.47913907Z"} +2026/03/22 10:13:57 [transform_engine] {"stage_name":"transform_engine","events_processed":504,"events_dropped":0,"avg_latency_ms":225.85157795828965,"throughput_eps":0,"last_update":"2026-03-22T10:13:52.479151954Z"} +2026/03/22 10:13:57 [log_collector] {"stage_name":"log_collector","events_processed":23982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4796.4,"last_update":"2026-03-22T10:13:57.368468457Z"} +2026/03/22 10:13:57 ───────────────────────────────────────────────── +2026/03/22 10:14:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:14:02 [log_collector] {"stage_name":"log_collector","events_processed":23982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4796.4,"last_update":"2026-03-22T10:13:57.368468457Z"} +2026/03/22 10:14:02 [metric_collector] {"stage_name":"metric_collector","events_processed":15149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3029.8,"last_update":"2026-03-22T10:13:57.369127911Z"} +2026/03/22 10:14:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6062,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:13:57.378398328Z"} +2026/03/22 10:14:02 [detection_layer] {"stage_name":"detection_layer","events_processed":504,"events_dropped":0,"avg_latency_ms":20.69484126087948,"throughput_eps":0,"last_update":"2026-03-22T10:13:57.479643465Z"} +2026/03/22 10:14:02 [transform_engine] {"stage_name":"transform_engine","events_processed":505,"events_dropped":0,"avg_latency_ms":205.6178247666317,"throughput_eps":0,"last_update":"2026-03-22T10:13:57.604293906Z"} +2026/03/22 10:14:02 ───────────────────────────────────────────────── +2026/03/22 10:14:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:14:07 [log_collector] {"stage_name":"log_collector","events_processed":23982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4796.4,"last_update":"2026-03-22T10:14:07.368717792Z"} +2026/03/22 10:14:07 [metric_collector] {"stage_name":"metric_collector","events_processed":15154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3030.8,"last_update":"2026-03-22T10:14:02.368337716Z"} +2026/03/22 10:14:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:14:02.377465371Z"} +2026/03/22 10:14:07 [detection_layer] {"stage_name":"detection_layer","events_processed":505,"events_dropped":0,"avg_latency_ms":20.36810940870358,"throughput_eps":0,"last_update":"2026-03-22T10:14:02.479747865Z"} +2026/03/22 10:14:07 [transform_engine] {"stage_name":"transform_engine","events_processed":505,"events_dropped":0,"avg_latency_ms":205.6178247666317,"throughput_eps":0,"last_update":"2026-03-22T10:14:02.479706966Z"} +2026/03/22 10:14:07 ───────────────────────────────────────────────── +2026/03/22 10:14:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:14:12 [log_collector] {"stage_name":"log_collector","events_processed":23982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4796.4,"last_update":"2026-03-22T10:14:12.368219735Z"} +2026/03/22 10:14:12 [metric_collector] {"stage_name":"metric_collector","events_processed":15159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3031.8,"last_update":"2026-03-22T10:14:07.369335145Z"} +2026/03/22 10:14:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:14:07.379027811Z"} +2026/03/22 10:14:12 [detection_layer] {"stage_name":"detection_layer","events_processed":505,"events_dropped":0,"avg_latency_ms":20.36810940870358,"throughput_eps":0,"last_update":"2026-03-22T10:14:07.479239208Z"} +2026/03/22 10:14:12 [transform_engine] {"stage_name":"transform_engine","events_processed":505,"events_dropped":0,"avg_latency_ms":205.6178247666317,"throughput_eps":0,"last_update":"2026-03-22T10:14:07.479273514Z"} +2026/03/22 10:14:12 ───────────────────────────────────────────────── +2026/03/22 10:14:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:14:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:14:12.377438262Z"} +2026/03/22 10:14:17 [detection_layer] {"stage_name":"detection_layer","events_processed":505,"events_dropped":0,"avg_latency_ms":20.36810940870358,"throughput_eps":0,"last_update":"2026-03-22T10:14:12.479674018Z"} +2026/03/22 10:14:17 [transform_engine] {"stage_name":"transform_engine","events_processed":505,"events_dropped":0,"avg_latency_ms":205.6178247666317,"throughput_eps":0,"last_update":"2026-03-22T10:14:12.479650042Z"} +2026/03/22 10:14:17 [log_collector] {"stage_name":"log_collector","events_processed":23982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4796.4,"last_update":"2026-03-22T10:14:12.368219735Z"} +2026/03/22 10:14:17 [metric_collector] {"stage_name":"metric_collector","events_processed":15164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3032.8,"last_update":"2026-03-22T10:14:12.368678403Z"} +2026/03/22 10:14:17 ───────────────────────────────────────────────── +2026/03/22 10:14:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:14:22 [log_collector] {"stage_name":"log_collector","events_processed":23982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4796.4,"last_update":"2026-03-22T10:14:17.368902158Z"} +2026/03/22 10:14:22 [metric_collector] {"stage_name":"metric_collector","events_processed":15169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3033.8,"last_update":"2026-03-22T10:14:17.369255375Z"} +2026/03/22 10:14:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:14:17.378453714Z"} +2026/03/22 10:14:22 [detection_layer] {"stage_name":"detection_layer","events_processed":505,"events_dropped":0,"avg_latency_ms":20.36810940870358,"throughput_eps":0,"last_update":"2026-03-22T10:14:17.479675566Z"} +2026/03/22 10:14:22 [transform_engine] {"stage_name":"transform_engine","events_processed":505,"events_dropped":0,"avg_latency_ms":205.6178247666317,"throughput_eps":0,"last_update":"2026-03-22T10:14:17.479706687Z"} +2026/03/22 10:14:22 ───────────────────────────────────────────────── +2026/03/22 10:14:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:14:27 [log_collector] {"stage_name":"log_collector","events_processed":23982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4796.4,"last_update":"2026-03-22T10:14:22.368423476Z"} +2026/03/22 10:14:27 [metric_collector] {"stage_name":"metric_collector","events_processed":15174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3034.8,"last_update":"2026-03-22T10:14:22.368854401Z"} +2026/03/22 10:14:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6072,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:14:22.376869224Z"} +2026/03/22 10:14:27 [detection_layer] {"stage_name":"detection_layer","events_processed":505,"events_dropped":0,"avg_latency_ms":20.36810940870358,"throughput_eps":0,"last_update":"2026-03-22T10:14:22.479248364Z"} +2026/03/22 10:14:27 [transform_engine] {"stage_name":"transform_engine","events_processed":505,"events_dropped":0,"avg_latency_ms":205.6178247666317,"throughput_eps":0,"last_update":"2026-03-22T10:14:22.479105941Z"} +2026/03/22 10:14:27 ───────────────────────────────────────────────── +2026/03/22 10:14:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:14:32 [transform_engine] {"stage_name":"transform_engine","events_processed":505,"events_dropped":0,"avg_latency_ms":205.6178247666317,"throughput_eps":0,"last_update":"2026-03-22T10:14:27.479635579Z"} +2026/03/22 10:14:32 [log_collector] {"stage_name":"log_collector","events_processed":23982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4796.4,"last_update":"2026-03-22T10:14:32.368393757Z"} +2026/03/22 10:14:32 [metric_collector] {"stage_name":"metric_collector","events_processed":15179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3035.8,"last_update":"2026-03-22T10:14:27.369161394Z"} +2026/03/22 10:14:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:14:27.377366481Z"} +2026/03/22 10:14:32 [detection_layer] {"stage_name":"detection_layer","events_processed":505,"events_dropped":0,"avg_latency_ms":20.36810940870358,"throughput_eps":0,"last_update":"2026-03-22T10:14:27.479684933Z"} +2026/03/22 10:14:32 ───────────────────────────────────────────────── +2026/03/22 10:14:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:14:37 [log_collector] {"stage_name":"log_collector","events_processed":23982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4796.4,"last_update":"2026-03-22T10:14:37.368804654Z"} +2026/03/22 10:14:37 [metric_collector] {"stage_name":"metric_collector","events_processed":15184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3036.8,"last_update":"2026-03-22T10:14:32.369398511Z"} +2026/03/22 10:14:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6076,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:14:32.377116525Z"} +2026/03/22 10:14:37 [detection_layer] {"stage_name":"detection_layer","events_processed":506,"events_dropped":0,"avg_latency_ms":20.954257326962864,"throughput_eps":0,"last_update":"2026-03-22T10:14:32.479341599Z"} +2026/03/22 10:14:37 [transform_engine] {"stage_name":"transform_engine","events_processed":506,"events_dropped":0,"avg_latency_ms":179.91390021330537,"throughput_eps":0,"last_update":"2026-03-22T10:14:32.479382067Z"} +2026/03/22 10:14:37 ───────────────────────────────────────────────── +2026/03/22 10:14:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:14:42 [metric_collector] {"stage_name":"metric_collector","events_processed":15189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3037.8,"last_update":"2026-03-22T10:14:37.369234047Z"} +2026/03/22 10:14:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:14:37.377794435Z"} +2026/03/22 10:14:42 [detection_layer] {"stage_name":"detection_layer","events_processed":506,"events_dropped":0,"avg_latency_ms":20.954257326962864,"throughput_eps":0,"last_update":"2026-03-22T10:14:37.478936195Z"} +2026/03/22 10:14:42 [transform_engine] {"stage_name":"transform_engine","events_processed":506,"events_dropped":0,"avg_latency_ms":179.91390021330537,"throughput_eps":0,"last_update":"2026-03-22T10:14:37.478922287Z"} +2026/03/22 10:14:42 [log_collector] {"stage_name":"log_collector","events_processed":23982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4796.4,"last_update":"2026-03-22T10:14:37.368804654Z"} +2026/03/22 10:14:42 ───────────────────────────────────────────────── +Saved state: 13 clusters, 23983 messages, reason: none +2026/03/22 10:14:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:14:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:14:42.378130641Z"} +2026/03/22 10:14:47 [detection_layer] {"stage_name":"detection_layer","events_processed":506,"events_dropped":0,"avg_latency_ms":20.954257326962864,"throughput_eps":0,"last_update":"2026-03-22T10:14:42.479365078Z"} +2026/03/22 10:14:47 [transform_engine] {"stage_name":"transform_engine","events_processed":506,"events_dropped":0,"avg_latency_ms":179.91390021330537,"throughput_eps":0,"last_update":"2026-03-22T10:14:42.479373855Z"} +2026/03/22 10:14:47 [log_collector] {"stage_name":"log_collector","events_processed":23982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4796.4,"last_update":"2026-03-22T10:14:42.368036926Z"} +2026/03/22 10:14:47 [metric_collector] {"stage_name":"metric_collector","events_processed":15194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3038.8,"last_update":"2026-03-22T10:14:42.36868113Z"} +2026/03/22 10:14:47 ───────────────────────────────────────────────── +2026/03/22 10:14:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:14:52 [log_collector] {"stage_name":"log_collector","events_processed":23987,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4797.4,"last_update":"2026-03-22T10:14:47.367994925Z"} +2026/03/22 10:14:52 [metric_collector] {"stage_name":"metric_collector","events_processed":15199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3039.8,"last_update":"2026-03-22T10:14:47.368543135Z"} +2026/03/22 10:14:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6082,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:14:47.380637282Z"} +2026/03/22 10:14:52 [detection_layer] {"stage_name":"detection_layer","events_processed":506,"events_dropped":0,"avg_latency_ms":20.954257326962864,"throughput_eps":0,"last_update":"2026-03-22T10:14:47.479873351Z"} +2026/03/22 10:14:52 [transform_engine] {"stage_name":"transform_engine","events_processed":506,"events_dropped":0,"avg_latency_ms":179.91390021330537,"throughput_eps":0,"last_update":"2026-03-22T10:14:47.479905301Z"} +2026/03/22 10:14:52 ───────────────────────────────────────────────── +2026/03/22 10:14:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:14:57 [log_collector] {"stage_name":"log_collector","events_processed":23987,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4797.4,"last_update":"2026-03-22T10:14:52.368686068Z"} +2026/03/22 10:14:57 [metric_collector] {"stage_name":"metric_collector","events_processed":15204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3040.8,"last_update":"2026-03-22T10:14:52.369087627Z"} +2026/03/22 10:14:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:14:52.375493097Z"} +2026/03/22 10:14:57 [detection_layer] {"stage_name":"detection_layer","events_processed":506,"events_dropped":0,"avg_latency_ms":20.954257326962864,"throughput_eps":0,"last_update":"2026-03-22T10:14:52.47996275Z"} +2026/03/22 10:14:57 [transform_engine] {"stage_name":"transform_engine","events_processed":506,"events_dropped":0,"avg_latency_ms":179.91390021330537,"throughput_eps":0,"last_update":"2026-03-22T10:14:52.47889186Z"} +2026/03/22 10:14:57 ───────────────────────────────────────────────── +2026/03/22 10:15:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:15:02 [log_collector] {"stage_name":"log_collector","events_processed":23987,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4797.4,"last_update":"2026-03-22T10:14:57.368682959Z"} +2026/03/22 10:15:02 [metric_collector] {"stage_name":"metric_collector","events_processed":15209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3041.8,"last_update":"2026-03-22T10:14:57.368873825Z"} +2026/03/22 10:15:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:14:57.376594173Z"} +2026/03/22 10:15:02 [detection_layer] {"stage_name":"detection_layer","events_processed":506,"events_dropped":0,"avg_latency_ms":20.954257326962864,"throughput_eps":0,"last_update":"2026-03-22T10:14:57.479961636Z"} +2026/03/22 10:15:02 [transform_engine] {"stage_name":"transform_engine","events_processed":506,"events_dropped":0,"avg_latency_ms":179.91390021330537,"throughput_eps":0,"last_update":"2026-03-22T10:14:52.47889186Z"} +2026/03/22 10:15:02 ───────────────────────────────────────────────── +2026/03/22 10:15:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:15:07 [log_collector] {"stage_name":"log_collector","events_processed":23987,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4797.4,"last_update":"2026-03-22T10:15:02.368482402Z"} +2026/03/22 10:15:07 [metric_collector] {"stage_name":"metric_collector","events_processed":15214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3042.8,"last_update":"2026-03-22T10:15:02.369026124Z"} +2026/03/22 10:15:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:15:02.375477481Z"} +2026/03/22 10:15:07 [detection_layer] {"stage_name":"detection_layer","events_processed":506,"events_dropped":0,"avg_latency_ms":20.954257326962864,"throughput_eps":0,"last_update":"2026-03-22T10:15:02.479802047Z"} +2026/03/22 10:15:07 [transform_engine] {"stage_name":"transform_engine","events_processed":507,"events_dropped":0,"avg_latency_ms":1306.5961155706443,"throughput_eps":0,"last_update":"2026-03-22T10:15:03.292201554Z"} +2026/03/22 10:15:07 ───────────────────────────────────────────────── +2026/03/22 10:15:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:15:12 [detection_layer] {"stage_name":"detection_layer","events_processed":507,"events_dropped":0,"avg_latency_ms":19.01970586157029,"throughput_eps":0,"last_update":"2026-03-22T10:15:07.479624424Z"} +2026/03/22 10:15:12 [transform_engine] {"stage_name":"transform_engine","events_processed":507,"events_dropped":0,"avg_latency_ms":1306.5961155706443,"throughput_eps":0,"last_update":"2026-03-22T10:15:07.479558567Z"} +2026/03/22 10:15:12 [log_collector] {"stage_name":"log_collector","events_processed":23987,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4797.4,"last_update":"2026-03-22T10:15:07.368817751Z"} +2026/03/22 10:15:12 [metric_collector] {"stage_name":"metric_collector","events_processed":15219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3043.8,"last_update":"2026-03-22T10:15:07.369120111Z"} +2026/03/22 10:15:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:15:07.3754155Z"} +2026/03/22 10:15:12 ───────────────────────────────────────────────── +2026/03/22 10:15:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:15:17 [log_collector] {"stage_name":"log_collector","events_processed":23987,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4797.4,"last_update":"2026-03-22T10:15:17.368585024Z"} +2026/03/22 10:15:17 [metric_collector] {"stage_name":"metric_collector","events_processed":15224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3044.8,"last_update":"2026-03-22T10:15:12.368330885Z"} +2026/03/22 10:15:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:15:12.375115531Z"} +2026/03/22 10:15:17 [detection_layer] {"stage_name":"detection_layer","events_processed":507,"events_dropped":0,"avg_latency_ms":19.01970586157029,"throughput_eps":0,"last_update":"2026-03-22T10:15:12.479497897Z"} +2026/03/22 10:15:17 [transform_engine] {"stage_name":"transform_engine","events_processed":507,"events_dropped":0,"avg_latency_ms":1306.5961155706443,"throughput_eps":0,"last_update":"2026-03-22T10:15:12.47946803Z"} +2026/03/22 10:15:17 ───────────────────────────────────────────────── +2026/03/22 10:15:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:15:22 [transform_engine] {"stage_name":"transform_engine","events_processed":507,"events_dropped":0,"avg_latency_ms":1306.5961155706443,"throughput_eps":0,"last_update":"2026-03-22T10:15:17.479694046Z"} +2026/03/22 10:15:22 [log_collector] {"stage_name":"log_collector","events_processed":23987,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4797.4,"last_update":"2026-03-22T10:15:17.368585024Z"} +2026/03/22 10:15:22 [metric_collector] {"stage_name":"metric_collector","events_processed":15229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3045.8,"last_update":"2026-03-22T10:15:17.36883328Z"} +2026/03/22 10:15:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:15:17.374434259Z"} +2026/03/22 10:15:22 [detection_layer] {"stage_name":"detection_layer","events_processed":507,"events_dropped":0,"avg_latency_ms":19.01970586157029,"throughput_eps":0,"last_update":"2026-03-22T10:15:17.479669819Z"} +2026/03/22 10:15:22 ───────────────────────────────────────────────── +2026/03/22 10:15:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:15:27 [detection_layer] {"stage_name":"detection_layer","events_processed":507,"events_dropped":0,"avg_latency_ms":19.01970586157029,"throughput_eps":0,"last_update":"2026-03-22T10:15:22.479935533Z"} +2026/03/22 10:15:27 [transform_engine] {"stage_name":"transform_engine","events_processed":507,"events_dropped":0,"avg_latency_ms":1306.5961155706443,"throughput_eps":0,"last_update":"2026-03-22T10:15:22.478851427Z"} +2026/03/22 10:15:27 [log_collector] {"stage_name":"log_collector","events_processed":23987,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4797.4,"last_update":"2026-03-22T10:15:22.367998586Z"} +2026/03/22 10:15:27 [metric_collector] {"stage_name":"metric_collector","events_processed":15234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3046.8,"last_update":"2026-03-22T10:15:22.368342976Z"} +2026/03/22 10:15:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:15:22.378738289Z"} +2026/03/22 10:15:27 ───────────────────────────────────────────────── +2026/03/22 10:15:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:15:32 [log_collector] {"stage_name":"log_collector","events_processed":23990,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4798,"last_update":"2026-03-22T10:15:27.368562918Z"} +2026/03/22 10:15:32 [metric_collector] {"stage_name":"metric_collector","events_processed":15239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3047.8,"last_update":"2026-03-22T10:15:27.368810142Z"} +2026/03/22 10:15:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:15:27.374619079Z"} +2026/03/22 10:15:32 [detection_layer] {"stage_name":"detection_layer","events_processed":507,"events_dropped":0,"avg_latency_ms":19.01970586157029,"throughput_eps":0,"last_update":"2026-03-22T10:15:27.479858998Z"} +2026/03/22 10:15:32 [transform_engine] {"stage_name":"transform_engine","events_processed":508,"events_dropped":0,"avg_latency_ms":1061.5547008565154,"throughput_eps":0,"last_update":"2026-03-22T10:15:27.561281614Z"} +2026/03/22 10:15:32 ───────────────────────────────────────────────── +2026/03/22 10:15:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:15:37 [detection_layer] {"stage_name":"detection_layer","events_processed":508,"events_dropped":0,"avg_latency_ms":17.545411089256234,"throughput_eps":0,"last_update":"2026-03-22T10:15:32.479888556Z"} +2026/03/22 10:15:37 [transform_engine] {"stage_name":"transform_engine","events_processed":508,"events_dropped":0,"avg_latency_ms":1061.5547008565154,"throughput_eps":0,"last_update":"2026-03-22T10:15:32.47986471Z"} +2026/03/22 10:15:37 [log_collector] {"stage_name":"log_collector","events_processed":23998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4799.6,"last_update":"2026-03-22T10:15:32.368597686Z"} +2026/03/22 10:15:37 [metric_collector] {"stage_name":"metric_collector","events_processed":15244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3048.8,"last_update":"2026-03-22T10:15:32.368859427Z"} +2026/03/22 10:15:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:15:32.377562548Z"} +2026/03/22 10:15:37 ───────────────────────────────────────────────── +2026/03/22 10:15:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:15:42 [log_collector] {"stage_name":"log_collector","events_processed":24353,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4870.6,"last_update":"2026-03-22T10:15:42.368388455Z"} +2026/03/22 10:15:42 [metric_collector] {"stage_name":"metric_collector","events_processed":15249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3049.8,"last_update":"2026-03-22T10:15:37.368188512Z"} +2026/03/22 10:15:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:15:37.374920868Z"} +2026/03/22 10:15:42 [detection_layer] {"stage_name":"detection_layer","events_processed":508,"events_dropped":0,"avg_latency_ms":17.545411089256234,"throughput_eps":0,"last_update":"2026-03-22T10:15:37.479757776Z"} +2026/03/22 10:15:42 [transform_engine] {"stage_name":"transform_engine","events_processed":508,"events_dropped":0,"avg_latency_ms":1061.5547008565154,"throughput_eps":0,"last_update":"2026-03-22T10:15:37.47973377Z"} +2026/03/22 10:15:42 ───────────────────────────────────────────────── +2026/03/22 10:15:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:15:47 [log_collector] {"stage_name":"log_collector","events_processed":24353,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4870.6,"last_update":"2026-03-22T10:15:42.368388455Z"} +2026/03/22 10:15:47 [metric_collector] {"stage_name":"metric_collector","events_processed":15254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3050.8,"last_update":"2026-03-22T10:15:42.368704922Z"} +2026/03/22 10:15:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:15:42.374718761Z"} +2026/03/22 10:15:47 [detection_layer] {"stage_name":"detection_layer","events_processed":508,"events_dropped":0,"avg_latency_ms":17.545411089256234,"throughput_eps":0,"last_update":"2026-03-22T10:15:42.479951486Z"} +2026/03/22 10:15:47 [transform_engine] {"stage_name":"transform_engine","events_processed":508,"events_dropped":0,"avg_latency_ms":1061.5547008565154,"throughput_eps":0,"last_update":"2026-03-22T10:15:42.478876367Z"} +2026/03/22 10:15:47 ───────────────────────────────────────────────── +2026/03/22 10:15:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:15:52 [transform_engine] {"stage_name":"transform_engine","events_processed":508,"events_dropped":0,"avg_latency_ms":1061.5547008565154,"throughput_eps":0,"last_update":"2026-03-22T10:15:47.479872052Z"} +2026/03/22 10:15:52 [log_collector] {"stage_name":"log_collector","events_processed":24363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4872.6,"last_update":"2026-03-22T10:15:47.368331594Z"} +2026/03/22 10:15:52 [metric_collector] {"stage_name":"metric_collector","events_processed":15259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3051.8,"last_update":"2026-03-22T10:15:47.368457345Z"} +2026/03/22 10:15:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:15:47.377680132Z"} +2026/03/22 10:15:52 [detection_layer] {"stage_name":"detection_layer","events_processed":508,"events_dropped":0,"avg_latency_ms":17.545411089256234,"throughput_eps":0,"last_update":"2026-03-22T10:15:47.479894545Z"} +2026/03/22 10:15:52 ───────────────────────────────────────────────── +2026/03/22 10:15:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:15:57 [log_collector] {"stage_name":"log_collector","events_processed":24363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4872.6,"last_update":"2026-03-22T10:15:52.368330401Z"} +2026/03/22 10:15:57 [metric_collector] {"stage_name":"metric_collector","events_processed":15264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3052.8,"last_update":"2026-03-22T10:15:52.368882007Z"} +2026/03/22 10:15:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:15:52.377531566Z"} +2026/03/22 10:15:57 [detection_layer] {"stage_name":"detection_layer","events_processed":508,"events_dropped":0,"avg_latency_ms":17.545411089256234,"throughput_eps":0,"last_update":"2026-03-22T10:15:52.479780977Z"} +2026/03/22 10:15:57 [transform_engine] {"stage_name":"transform_engine","events_processed":508,"events_dropped":0,"avg_latency_ms":1061.5547008565154,"throughput_eps":0,"last_update":"2026-03-22T10:15:52.479758704Z"} +2026/03/22 10:15:57 ───────────────────────────────────────────────── +2026/03/22 10:16:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:16:02 [log_collector] {"stage_name":"log_collector","events_processed":24363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4872.6,"last_update":"2026-03-22T10:15:57.368023621Z"} +2026/03/22 10:16:02 [metric_collector] {"stage_name":"metric_collector","events_processed":15269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3053.8,"last_update":"2026-03-22T10:15:57.368439778Z"} +2026/03/22 10:16:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:15:57.378395728Z"} +2026/03/22 10:16:02 [detection_layer] {"stage_name":"detection_layer","events_processed":508,"events_dropped":0,"avg_latency_ms":17.545411089256234,"throughput_eps":0,"last_update":"2026-03-22T10:15:57.479730878Z"} +2026/03/22 10:16:02 [transform_engine] {"stage_name":"transform_engine","events_processed":509,"events_dropped":0,"avg_latency_ms":874.4559450852123,"throughput_eps":0,"last_update":"2026-03-22T10:15:57.605886792Z"} +2026/03/22 10:16:02 ───────────────────────────────────────────────── +2026/03/22 10:16:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:16:07 [log_collector] {"stage_name":"log_collector","events_processed":24363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4872.6,"last_update":"2026-03-22T10:16:07.368310781Z"} +2026/03/22 10:16:07 [metric_collector] {"stage_name":"metric_collector","events_processed":15274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3054.8,"last_update":"2026-03-22T10:16:02.36878225Z"} +2026/03/22 10:16:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:16:02.374810617Z"} +2026/03/22 10:16:07 [detection_layer] {"stage_name":"detection_layer","events_processed":509,"events_dropped":0,"avg_latency_ms":18.02456847140499,"throughput_eps":0,"last_update":"2026-03-22T10:16:02.478965367Z"} +2026/03/22 10:16:07 [transform_engine] {"stage_name":"transform_engine","events_processed":509,"events_dropped":0,"avg_latency_ms":874.4559450852123,"throughput_eps":0,"last_update":"2026-03-22T10:16:02.478949176Z"} +2026/03/22 10:16:07 ───────────────────────────────────────────────── +2026/03/22 10:16:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:16:12 [log_collector] {"stage_name":"log_collector","events_processed":24363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4872.6,"last_update":"2026-03-22T10:16:07.368310781Z"} +2026/03/22 10:16:12 [metric_collector] {"stage_name":"metric_collector","events_processed":15279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3055.8,"last_update":"2026-03-22T10:16:07.368642256Z"} +2026/03/22 10:16:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:16:07.376575322Z"} +2026/03/22 10:16:12 [detection_layer] {"stage_name":"detection_layer","events_processed":509,"events_dropped":0,"avg_latency_ms":18.02456847140499,"throughput_eps":0,"last_update":"2026-03-22T10:16:07.479948835Z"} +2026/03/22 10:16:12 [transform_engine] {"stage_name":"transform_engine","events_processed":509,"events_dropped":0,"avg_latency_ms":874.4559450852123,"throughput_eps":0,"last_update":"2026-03-22T10:16:07.480064777Z"} +2026/03/22 10:16:12 ───────────────────────────────────────────────── +2026/03/22 10:16:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:16:17 [detection_layer] {"stage_name":"detection_layer","events_processed":509,"events_dropped":0,"avg_latency_ms":18.02456847140499,"throughput_eps":0,"last_update":"2026-03-22T10:16:12.479172192Z"} +2026/03/22 10:16:17 [transform_engine] {"stage_name":"transform_engine","events_processed":509,"events_dropped":0,"avg_latency_ms":874.4559450852123,"throughput_eps":0,"last_update":"2026-03-22T10:16:12.47920243Z"} +2026/03/22 10:16:17 [log_collector] {"stage_name":"log_collector","events_processed":24363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4872.6,"last_update":"2026-03-22T10:16:12.367979832Z"} +2026/03/22 10:16:17 [metric_collector] {"stage_name":"metric_collector","events_processed":15284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3056.8,"last_update":"2026-03-22T10:16:12.368491963Z"} +2026/03/22 10:16:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:16:12.376982717Z"} +2026/03/22 10:16:17 ───────────────────────────────────────────────── +2026/03/22 10:16:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:16:22 [detection_layer] {"stage_name":"detection_layer","events_processed":509,"events_dropped":0,"avg_latency_ms":18.02456847140499,"throughput_eps":0,"last_update":"2026-03-22T10:16:17.479031398Z"} +2026/03/22 10:16:22 [transform_engine] {"stage_name":"transform_engine","events_processed":509,"events_dropped":0,"avg_latency_ms":874.4559450852123,"throughput_eps":0,"last_update":"2026-03-22T10:16:17.478850953Z"} +2026/03/22 10:16:22 [log_collector] {"stage_name":"log_collector","events_processed":24363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4872.6,"last_update":"2026-03-22T10:16:17.368997056Z"} +2026/03/22 10:16:22 [metric_collector] {"stage_name":"metric_collector","events_processed":15289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3057.8,"last_update":"2026-03-22T10:16:17.369093411Z"} +2026/03/22 10:16:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:16:17.377630183Z"} +2026/03/22 10:16:22 ───────────────────────────────────────────────── +2026/03/22 10:16:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:16:27 [log_collector] {"stage_name":"log_collector","events_processed":24363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4872.6,"last_update":"2026-03-22T10:16:22.367977956Z"} +2026/03/22 10:16:27 [metric_collector] {"stage_name":"metric_collector","events_processed":15294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3058.8,"last_update":"2026-03-22T10:16:22.368615136Z"} +2026/03/22 10:16:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:16:22.377233404Z"} +2026/03/22 10:16:27 [detection_layer] {"stage_name":"detection_layer","events_processed":509,"events_dropped":0,"avg_latency_ms":18.02456847140499,"throughput_eps":0,"last_update":"2026-03-22T10:16:22.479447617Z"} +2026/03/22 10:16:27 [transform_engine] {"stage_name":"transform_engine","events_processed":509,"events_dropped":0,"avg_latency_ms":874.4559450852123,"throughput_eps":0,"last_update":"2026-03-22T10:16:22.479472315Z"} +2026/03/22 10:16:27 ───────────────────────────────────────────────── +2026/03/22 10:16:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:16:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6122,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:16:27.376565879Z"} +2026/03/22 10:16:32 [detection_layer] {"stage_name":"detection_layer","events_processed":509,"events_dropped":0,"avg_latency_ms":18.02456847140499,"throughput_eps":0,"last_update":"2026-03-22T10:16:27.47983869Z"} +2026/03/22 10:16:32 [transform_engine] {"stage_name":"transform_engine","events_processed":510,"events_dropped":0,"avg_latency_ms":711.0403256681699,"throughput_eps":0,"last_update":"2026-03-22T10:16:27.537161121Z"} +2026/03/22 10:16:32 [log_collector] {"stage_name":"log_collector","events_processed":24363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4872.6,"last_update":"2026-03-22T10:16:27.36797895Z"} +2026/03/22 10:16:32 [metric_collector] {"stage_name":"metric_collector","events_processed":15304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3060.8,"last_update":"2026-03-22T10:16:32.368406431Z"} +2026/03/22 10:16:32 ───────────────────────────────────────────────── +2026/03/22 10:16:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:16:37 [log_collector] {"stage_name":"log_collector","events_processed":24363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4872.6,"last_update":"2026-03-22T10:16:32.368503026Z"} +2026/03/22 10:16:37 [metric_collector] {"stage_name":"metric_collector","events_processed":15304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3060.8,"last_update":"2026-03-22T10:16:32.368406431Z"} +2026/03/22 10:16:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:16:32.3785964Z"} +2026/03/22 10:16:37 [detection_layer] {"stage_name":"detection_layer","events_processed":510,"events_dropped":0,"avg_latency_ms":19.125314377123992,"throughput_eps":0,"last_update":"2026-03-22T10:16:32.479876333Z"} +2026/03/22 10:16:37 [transform_engine] {"stage_name":"transform_engine","events_processed":510,"events_dropped":0,"avg_latency_ms":711.0403256681699,"throughput_eps":0,"last_update":"2026-03-22T10:16:32.479798945Z"} +2026/03/22 10:16:37 ───────────────────────────────────────────────── +2026/03/22 10:16:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:16:42 [detection_layer] {"stage_name":"detection_layer","events_processed":510,"events_dropped":0,"avg_latency_ms":19.125314377123992,"throughput_eps":0,"last_update":"2026-03-22T10:16:37.479465898Z"} +2026/03/22 10:16:42 [transform_engine] {"stage_name":"transform_engine","events_processed":510,"events_dropped":0,"avg_latency_ms":711.0403256681699,"throughput_eps":0,"last_update":"2026-03-22T10:16:37.479427163Z"} +2026/03/22 10:16:42 [log_collector] {"stage_name":"log_collector","events_processed":24363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4872.6,"last_update":"2026-03-22T10:16:37.368082471Z"} +2026/03/22 10:16:42 [metric_collector] {"stage_name":"metric_collector","events_processed":15309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3061.8,"last_update":"2026-03-22T10:16:37.368550688Z"} +2026/03/22 10:16:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6126,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:16:37.378197376Z"} +2026/03/22 10:16:42 ───────────────────────────────────────────────── +2026/03/22 10:16:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:16:47 [log_collector] {"stage_name":"log_collector","events_processed":24363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4872.6,"last_update":"2026-03-22T10:16:42.367958193Z"} +2026/03/22 10:16:47 [metric_collector] {"stage_name":"metric_collector","events_processed":15314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3062.8,"last_update":"2026-03-22T10:16:42.368287043Z"} +2026/03/22 10:16:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6128,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:16:42.377455055Z"} +2026/03/22 10:16:47 [detection_layer] {"stage_name":"detection_layer","events_processed":510,"events_dropped":0,"avg_latency_ms":19.125314377123992,"throughput_eps":0,"last_update":"2026-03-22T10:16:42.479661924Z"} +2026/03/22 10:16:47 [transform_engine] {"stage_name":"transform_engine","events_processed":510,"events_dropped":0,"avg_latency_ms":711.0403256681699,"throughput_eps":0,"last_update":"2026-03-22T10:16:42.479700297Z"} +2026/03/22 10:16:47 ───────────────────────────────────────────────── +2026/03/22 10:16:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:16:52 [metric_collector] {"stage_name":"metric_collector","events_processed":15319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3063.8,"last_update":"2026-03-22T10:16:47.368224233Z"} +2026/03/22 10:16:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6130,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:16:47.37696693Z"} +2026/03/22 10:16:52 [detection_layer] {"stage_name":"detection_layer","events_processed":510,"events_dropped":0,"avg_latency_ms":19.125314377123992,"throughput_eps":0,"last_update":"2026-03-22T10:16:47.479296254Z"} +2026/03/22 10:16:52 [transform_engine] {"stage_name":"transform_engine","events_processed":510,"events_dropped":0,"avg_latency_ms":711.0403256681699,"throughput_eps":0,"last_update":"2026-03-22T10:16:47.479329668Z"} +2026/03/22 10:16:52 [log_collector] {"stage_name":"log_collector","events_processed":24363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4872.6,"last_update":"2026-03-22T10:16:47.368090207Z"} +2026/03/22 10:16:52 ───────────────────────────────────────────────── +Saved state: 13 clusters, 24364 messages, reason: none +2026/03/22 10:16:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:16:57 [log_collector] {"stage_name":"log_collector","events_processed":24366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4873.2,"last_update":"2026-03-22T10:16:57.367978771Z"} +2026/03/22 10:16:57 [metric_collector] {"stage_name":"metric_collector","events_processed":15324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3064.8,"last_update":"2026-03-22T10:16:52.368613008Z"} +2026/03/22 10:16:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:16:52.377559245Z"} +2026/03/22 10:16:57 [detection_layer] {"stage_name":"detection_layer","events_processed":510,"events_dropped":0,"avg_latency_ms":19.125314377123992,"throughput_eps":0,"last_update":"2026-03-22T10:16:52.47987929Z"} +2026/03/22 10:16:57 [transform_engine] {"stage_name":"transform_engine","events_processed":510,"events_dropped":0,"avg_latency_ms":711.0403256681699,"throughput_eps":0,"last_update":"2026-03-22T10:16:52.479904238Z"} +2026/03/22 10:16:57 ───────────────────────────────────────────────── +2026/03/22 10:17:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:17:02 [log_collector] {"stage_name":"log_collector","events_processed":24366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4873.2,"last_update":"2026-03-22T10:16:57.367978771Z"} +2026/03/22 10:17:02 [metric_collector] {"stage_name":"metric_collector","events_processed":15329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3065.8,"last_update":"2026-03-22T10:16:57.368280851Z"} +2026/03/22 10:17:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:16:57.375322789Z"} +2026/03/22 10:17:02 [detection_layer] {"stage_name":"detection_layer","events_processed":510,"events_dropped":0,"avg_latency_ms":19.125314377123992,"throughput_eps":0,"last_update":"2026-03-22T10:16:57.479567331Z"} +2026/03/22 10:17:02 [transform_engine] {"stage_name":"transform_engine","events_processed":511,"events_dropped":0,"avg_latency_ms":598.1552811345359,"throughput_eps":0,"last_update":"2026-03-22T10:16:57.626201031Z"} +2026/03/22 10:17:02 ───────────────────────────────────────────────── +2026/03/22 10:17:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:17:07 [transform_engine] {"stage_name":"transform_engine","events_processed":511,"events_dropped":0,"avg_latency_ms":598.1552811345359,"throughput_eps":0,"last_update":"2026-03-22T10:17:02.479131203Z"} +2026/03/22 10:17:07 [log_collector] {"stage_name":"log_collector","events_processed":24366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4873.2,"last_update":"2026-03-22T10:17:02.367985642Z"} +2026/03/22 10:17:07 [metric_collector] {"stage_name":"metric_collector","events_processed":15334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3066.8,"last_update":"2026-03-22T10:17:02.368332476Z"} +2026/03/22 10:17:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:17:02.375931822Z"} +2026/03/22 10:17:07 [detection_layer] {"stage_name":"detection_layer","events_processed":511,"events_dropped":0,"avg_latency_ms":18.142239501699194,"throughput_eps":0,"last_update":"2026-03-22T10:17:02.479165088Z"} +2026/03/22 10:17:07 ───────────────────────────────────────────────── +2026/03/22 10:17:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:17:12 [log_collector] {"stage_name":"log_collector","events_processed":24376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4875.2,"last_update":"2026-03-22T10:17:07.368977698Z"} +2026/03/22 10:17:12 [metric_collector] {"stage_name":"metric_collector","events_processed":15339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3067.8,"last_update":"2026-03-22T10:17:07.369132334Z"} +2026/03/22 10:17:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:17:07.378578439Z"} +2026/03/22 10:17:12 [detection_layer] {"stage_name":"detection_layer","events_processed":511,"events_dropped":0,"avg_latency_ms":18.142239501699194,"throughput_eps":0,"last_update":"2026-03-22T10:17:07.479071174Z"} +2026/03/22 10:17:12 [transform_engine] {"stage_name":"transform_engine","events_processed":511,"events_dropped":0,"avg_latency_ms":598.1552811345359,"throughput_eps":0,"last_update":"2026-03-22T10:17:07.478901559Z"} +2026/03/22 10:17:12 ───────────────────────────────────────────────── +2026/03/22 10:17:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:17:17 [transform_engine] {"stage_name":"transform_engine","events_processed":511,"events_dropped":0,"avg_latency_ms":598.1552811345359,"throughput_eps":0,"last_update":"2026-03-22T10:17:12.479858068Z"} +2026/03/22 10:17:17 [log_collector] {"stage_name":"log_collector","events_processed":24393,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4878.6,"last_update":"2026-03-22T10:17:17.368328586Z"} +2026/03/22 10:17:17 [metric_collector] {"stage_name":"metric_collector","events_processed":15344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3068.8,"last_update":"2026-03-22T10:17:12.369444809Z"} +2026/03/22 10:17:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:17:12.37851308Z"} +2026/03/22 10:17:17 [detection_layer] {"stage_name":"detection_layer","events_processed":511,"events_dropped":0,"avg_latency_ms":18.142239501699194,"throughput_eps":0,"last_update":"2026-03-22T10:17:12.479971736Z"} +2026/03/22 10:17:17 ───────────────────────────────────────────────── +2026/03/22 10:17:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:17:22 [log_collector] {"stage_name":"log_collector","events_processed":24393,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4878.6,"last_update":"2026-03-22T10:17:22.36882981Z"} +2026/03/22 10:17:22 [metric_collector] {"stage_name":"metric_collector","events_processed":15349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3069.8,"last_update":"2026-03-22T10:17:17.368697143Z"} +2026/03/22 10:17:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:17:17.377589445Z"} +2026/03/22 10:17:22 [detection_layer] {"stage_name":"detection_layer","events_processed":511,"events_dropped":0,"avg_latency_ms":18.142239501699194,"throughput_eps":0,"last_update":"2026-03-22T10:17:17.480015043Z"} +2026/03/22 10:17:22 [transform_engine] {"stage_name":"transform_engine","events_processed":511,"events_dropped":0,"avg_latency_ms":598.1552811345359,"throughput_eps":0,"last_update":"2026-03-22T10:17:17.479902277Z"} +2026/03/22 10:17:22 ───────────────────────────────────────────────── +2026/03/22 10:17:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:17:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:17:22.378850425Z"} +2026/03/22 10:17:27 [detection_layer] {"stage_name":"detection_layer","events_processed":511,"events_dropped":0,"avg_latency_ms":18.142239501699194,"throughput_eps":0,"last_update":"2026-03-22T10:17:22.479076329Z"} +2026/03/22 10:17:27 [transform_engine] {"stage_name":"transform_engine","events_processed":511,"events_dropped":0,"avg_latency_ms":598.1552811345359,"throughput_eps":0,"last_update":"2026-03-22T10:17:22.47903505Z"} +2026/03/22 10:17:27 [log_collector] {"stage_name":"log_collector","events_processed":24393,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4878.6,"last_update":"2026-03-22T10:17:22.36882981Z"} +2026/03/22 10:17:27 [metric_collector] {"stage_name":"metric_collector","events_processed":15354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3070.8,"last_update":"2026-03-22T10:17:22.369400694Z"} +2026/03/22 10:17:27 ───────────────────────────────────────────────── +2026/03/22 10:17:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:17:32 [log_collector] {"stage_name":"log_collector","events_processed":24406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4881.2,"last_update":"2026-03-22T10:17:27.36854558Z"} +2026/03/22 10:17:32 [metric_collector] {"stage_name":"metric_collector","events_processed":15359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3071.8,"last_update":"2026-03-22T10:17:27.36902616Z"} +2026/03/22 10:17:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:17:27.375069195Z"} +2026/03/22 10:17:32 [detection_layer] {"stage_name":"detection_layer","events_processed":511,"events_dropped":0,"avg_latency_ms":18.142239501699194,"throughput_eps":0,"last_update":"2026-03-22T10:17:27.479389362Z"} +2026/03/22 10:17:32 [transform_engine] {"stage_name":"transform_engine","events_processed":512,"events_dropped":0,"avg_latency_ms":604.1211779076287,"throughput_eps":0,"last_update":"2026-03-22T10:17:28.107395828Z"} +2026/03/22 10:17:32 ───────────────────────────────────────────────── +2026/03/22 10:17:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:17:37 [detection_layer] {"stage_name":"detection_layer","events_processed":512,"events_dropped":0,"avg_latency_ms":18.457980801359355,"throughput_eps":0,"last_update":"2026-03-22T10:17:32.479859655Z"} +2026/03/22 10:17:37 [transform_engine] {"stage_name":"transform_engine","events_processed":512,"events_dropped":0,"avg_latency_ms":604.1211779076287,"throughput_eps":0,"last_update":"2026-03-22T10:17:32.479967832Z"} +2026/03/22 10:17:37 [log_collector] {"stage_name":"log_collector","events_processed":24407,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4881.4,"last_update":"2026-03-22T10:17:32.369682659Z"} +2026/03/22 10:17:37 [metric_collector] {"stage_name":"metric_collector","events_processed":15364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3072.8,"last_update":"2026-03-22T10:17:32.370079389Z"} +2026/03/22 10:17:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:17:32.378631762Z"} +2026/03/22 10:17:37 ───────────────────────────────────────────────── +2026/03/22 10:17:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:17:42 [log_collector] {"stage_name":"log_collector","events_processed":24407,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4881.4,"last_update":"2026-03-22T10:17:37.36815235Z"} +2026/03/22 10:17:42 [metric_collector] {"stage_name":"metric_collector","events_processed":15369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3073.8,"last_update":"2026-03-22T10:17:37.368268732Z"} +2026/03/22 10:17:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:17:37.377483754Z"} +2026/03/22 10:17:42 [detection_layer] {"stage_name":"detection_layer","events_processed":512,"events_dropped":0,"avg_latency_ms":18.457980801359355,"throughput_eps":0,"last_update":"2026-03-22T10:17:37.479688169Z"} +2026/03/22 10:17:42 [transform_engine] {"stage_name":"transform_engine","events_processed":512,"events_dropped":0,"avg_latency_ms":604.1211779076287,"throughput_eps":0,"last_update":"2026-03-22T10:17:37.479781707Z"} +2026/03/22 10:17:42 ───────────────────────────────────────────────── +2026/03/22 10:17:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:17:47 [transform_engine] {"stage_name":"transform_engine","events_processed":512,"events_dropped":0,"avg_latency_ms":604.1211779076287,"throughput_eps":0,"last_update":"2026-03-22T10:17:42.479149067Z"} +2026/03/22 10:17:47 [log_collector] {"stage_name":"log_collector","events_processed":24407,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4881.4,"last_update":"2026-03-22T10:17:42.368921785Z"} +2026/03/22 10:17:47 [metric_collector] {"stage_name":"metric_collector","events_processed":15374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3074.8,"last_update":"2026-03-22T10:17:42.369391024Z"} +2026/03/22 10:17:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:17:42.368796385Z"} +2026/03/22 10:17:47 [detection_layer] {"stage_name":"detection_layer","events_processed":512,"events_dropped":0,"avg_latency_ms":18.457980801359355,"throughput_eps":0,"last_update":"2026-03-22T10:17:42.479117046Z"} +2026/03/22 10:17:47 ───────────────────────────────────────────────── +2026/03/22 10:17:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:17:52 [log_collector] {"stage_name":"log_collector","events_processed":24407,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4881.4,"last_update":"2026-03-22T10:17:47.36828265Z"} +2026/03/22 10:17:52 [metric_collector] {"stage_name":"metric_collector","events_processed":15379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3075.8,"last_update":"2026-03-22T10:17:47.36889855Z"} +2026/03/22 10:17:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:17:47.368029645Z"} +2026/03/22 10:17:52 [detection_layer] {"stage_name":"detection_layer","events_processed":512,"events_dropped":0,"avg_latency_ms":18.457980801359355,"throughput_eps":0,"last_update":"2026-03-22T10:17:47.479409826Z"} +2026/03/22 10:17:52 [transform_engine] {"stage_name":"transform_engine","events_processed":512,"events_dropped":0,"avg_latency_ms":604.1211779076287,"throughput_eps":0,"last_update":"2026-03-22T10:17:47.479260019Z"} +2026/03/22 10:17:52 ───────────────────────────────────────────────── +2026/03/22 10:17:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:17:57 [log_collector] {"stage_name":"log_collector","events_processed":24407,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4881.4,"last_update":"2026-03-22T10:17:57.367984687Z"} +2026/03/22 10:17:57 [metric_collector] {"stage_name":"metric_collector","events_processed":15384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3076.8,"last_update":"2026-03-22T10:17:52.368544922Z"} +2026/03/22 10:17:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:17:52.377781554Z"} +2026/03/22 10:17:57 [detection_layer] {"stage_name":"detection_layer","events_processed":512,"events_dropped":0,"avg_latency_ms":18.457980801359355,"throughput_eps":0,"last_update":"2026-03-22T10:17:52.479107365Z"} +2026/03/22 10:17:57 [transform_engine] {"stage_name":"transform_engine","events_processed":512,"events_dropped":0,"avg_latency_ms":604.1211779076287,"throughput_eps":0,"last_update":"2026-03-22T10:17:52.47898457Z"} +2026/03/22 10:17:57 ───────────────────────────────────────────────── +2026/03/22 10:18:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:18:02 [log_collector] {"stage_name":"log_collector","events_processed":24407,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4881.4,"last_update":"2026-03-22T10:17:57.367984687Z"} +2026/03/22 10:18:02 [metric_collector] {"stage_name":"metric_collector","events_processed":15389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3077.8,"last_update":"2026-03-22T10:17:57.368885352Z"} +2026/03/22 10:18:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:17:57.377640833Z"} +2026/03/22 10:18:02 [detection_layer] {"stage_name":"detection_layer","events_processed":512,"events_dropped":0,"avg_latency_ms":18.457980801359355,"throughput_eps":0,"last_update":"2026-03-22T10:17:57.47941863Z"} +2026/03/22 10:18:02 [transform_engine] {"stage_name":"transform_engine","events_processed":513,"events_dropped":0,"avg_latency_ms":933.8863443261031,"throughput_eps":0,"last_update":"2026-03-22T10:17:59.731783164Z"} +2026/03/22 10:18:02 ───────────────────────────────────────────────── +2026/03/22 10:18:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:18:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:18:02.378029396Z"} +2026/03/22 10:18:07 [detection_layer] {"stage_name":"detection_layer","events_processed":513,"events_dropped":0,"avg_latency_ms":19.261723441087483,"throughput_eps":0,"last_update":"2026-03-22T10:18:02.478999354Z"} +2026/03/22 10:18:07 [transform_engine] {"stage_name":"transform_engine","events_processed":513,"events_dropped":0,"avg_latency_ms":933.8863443261031,"throughput_eps":0,"last_update":"2026-03-22T10:18:02.479025334Z"} +2026/03/22 10:18:07 [log_collector] {"stage_name":"log_collector","events_processed":24407,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4881.4,"last_update":"2026-03-22T10:18:07.3683279Z"} +2026/03/22 10:18:07 [metric_collector] {"stage_name":"metric_collector","events_processed":15394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3078.8,"last_update":"2026-03-22T10:18:02.369657118Z"} +2026/03/22 10:18:07 ───────────────────────────────────────────────── +2026/03/22 10:18:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:18:12 [metric_collector] {"stage_name":"metric_collector","events_processed":15399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3079.8,"last_update":"2026-03-22T10:18:07.369132261Z"} +2026/03/22 10:18:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:18:07.378480407Z"} +2026/03/22 10:18:12 [detection_layer] {"stage_name":"detection_layer","events_processed":513,"events_dropped":0,"avg_latency_ms":19.261723441087483,"throughput_eps":0,"last_update":"2026-03-22T10:18:07.478989644Z"} +2026/03/22 10:18:12 [transform_engine] {"stage_name":"transform_engine","events_processed":513,"events_dropped":0,"avg_latency_ms":933.8863443261031,"throughput_eps":0,"last_update":"2026-03-22T10:18:07.479037235Z"} +2026/03/22 10:18:12 [log_collector] {"stage_name":"log_collector","events_processed":24407,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4881.4,"last_update":"2026-03-22T10:18:07.3683279Z"} +2026/03/22 10:18:12 ───────────────────────────────────────────────── +2026/03/22 10:18:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:18:17 [transform_engine] {"stage_name":"transform_engine","events_processed":513,"events_dropped":0,"avg_latency_ms":933.8863443261031,"throughput_eps":0,"last_update":"2026-03-22T10:18:12.479188773Z"} +2026/03/22 10:18:17 [log_collector] {"stage_name":"log_collector","events_processed":24407,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4881.4,"last_update":"2026-03-22T10:18:12.369013901Z"} +2026/03/22 10:18:17 [metric_collector] {"stage_name":"metric_collector","events_processed":15404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3080.8,"last_update":"2026-03-22T10:18:12.369539248Z"} +2026/03/22 10:18:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:18:12.377972692Z"} +2026/03/22 10:18:17 [detection_layer] {"stage_name":"detection_layer","events_processed":513,"events_dropped":0,"avg_latency_ms":19.261723441087483,"throughput_eps":0,"last_update":"2026-03-22T10:18:12.479304835Z"} +2026/03/22 10:18:17 ───────────────────────────────────────────────── +2026/03/22 10:18:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:18:22 [metric_collector] {"stage_name":"metric_collector","events_processed":15409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3081.8,"last_update":"2026-03-22T10:18:17.368668926Z"} +2026/03/22 10:18:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:18:17.37863155Z"} +2026/03/22 10:18:22 [detection_layer] {"stage_name":"detection_layer","events_processed":513,"events_dropped":0,"avg_latency_ms":19.261723441087483,"throughput_eps":0,"last_update":"2026-03-22T10:18:17.47983147Z"} +2026/03/22 10:18:22 [transform_engine] {"stage_name":"transform_engine","events_processed":513,"events_dropped":0,"avg_latency_ms":933.8863443261031,"throughput_eps":0,"last_update":"2026-03-22T10:18:17.479881536Z"} +2026/03/22 10:18:22 [log_collector] {"stage_name":"log_collector","events_processed":24407,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4881.4,"last_update":"2026-03-22T10:18:17.368157357Z"} +2026/03/22 10:18:22 ───────────────────────────────────────────────── +2026/03/22 10:18:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:18:27 [transform_engine] {"stage_name":"transform_engine","events_processed":513,"events_dropped":0,"avg_latency_ms":933.8863443261031,"throughput_eps":0,"last_update":"2026-03-22T10:18:22.47928044Z"} +2026/03/22 10:18:27 [log_collector] {"stage_name":"log_collector","events_processed":24407,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4881.4,"last_update":"2026-03-22T10:18:22.368012775Z"} +2026/03/22 10:18:27 [metric_collector] {"stage_name":"metric_collector","events_processed":15414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3082.8,"last_update":"2026-03-22T10:18:22.368264297Z"} +2026/03/22 10:18:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:18:22.377882662Z"} +2026/03/22 10:18:27 [detection_layer] {"stage_name":"detection_layer","events_processed":513,"events_dropped":0,"avg_latency_ms":19.261723441087483,"throughput_eps":0,"last_update":"2026-03-22T10:18:22.479256775Z"} +2026/03/22 10:18:27 ───────────────────────────────────────────────── +2026/03/22 10:18:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:18:32 [log_collector] {"stage_name":"log_collector","events_processed":24407,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4881.4,"last_update":"2026-03-22T10:18:32.368482917Z"} +2026/03/22 10:18:32 [metric_collector] {"stage_name":"metric_collector","events_processed":15419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3083.8,"last_update":"2026-03-22T10:18:27.368388791Z"} +2026/03/22 10:18:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6170,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:18:27.377218835Z"} +2026/03/22 10:18:32 [detection_layer] {"stage_name":"detection_layer","events_processed":513,"events_dropped":0,"avg_latency_ms":19.261723441087483,"throughput_eps":0,"last_update":"2026-03-22T10:18:27.480538164Z"} +2026/03/22 10:18:32 [transform_engine] {"stage_name":"transform_engine","events_processed":514,"events_dropped":0,"avg_latency_ms":764.3259526608825,"throughput_eps":0,"last_update":"2026-03-22T10:18:27.56551514Z"} +2026/03/22 10:18:32 ───────────────────────────────────────────────── +Saved state: 13 clusters, 24408 messages, reason: none +2026/03/22 10:18:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:18:37 [log_collector] {"stage_name":"log_collector","events_processed":24407,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4881.4,"last_update":"2026-03-22T10:18:32.368482917Z"} +2026/03/22 10:18:37 [metric_collector] {"stage_name":"metric_collector","events_processed":15424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3084.8,"last_update":"2026-03-22T10:18:32.369052688Z"} +2026/03/22 10:18:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:18:32.378252029Z"} +2026/03/22 10:18:37 [detection_layer] {"stage_name":"detection_layer","events_processed":514,"events_dropped":0,"avg_latency_ms":20.03591875286999,"throughput_eps":0,"last_update":"2026-03-22T10:18:32.479504389Z"} +2026/03/22 10:18:37 [transform_engine] {"stage_name":"transform_engine","events_processed":514,"events_dropped":0,"avg_latency_ms":764.3259526608825,"throughput_eps":0,"last_update":"2026-03-22T10:18:32.479594672Z"} +2026/03/22 10:18:37 ───────────────────────────────────────────────── +2026/03/22 10:18:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:18:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:18:37.374179052Z"} +2026/03/22 10:18:42 [detection_layer] {"stage_name":"detection_layer","events_processed":514,"events_dropped":0,"avg_latency_ms":20.03591875286999,"throughput_eps":0,"last_update":"2026-03-22T10:18:37.4793617Z"} +2026/03/22 10:18:42 [transform_engine] {"stage_name":"transform_engine","events_processed":514,"events_dropped":0,"avg_latency_ms":764.3259526608825,"throughput_eps":0,"last_update":"2026-03-22T10:18:37.479385085Z"} +2026/03/22 10:18:42 [log_collector] {"stage_name":"log_collector","events_processed":24412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4882.4,"last_update":"2026-03-22T10:18:37.368005877Z"} +2026/03/22 10:18:42 [metric_collector] {"stage_name":"metric_collector","events_processed":15429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3085.8,"last_update":"2026-03-22T10:18:37.36826339Z"} +2026/03/22 10:18:42 ───────────────────────────────────────────────── +2026/03/22 10:18:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:18:47 [log_collector] {"stage_name":"log_collector","events_processed":24412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4882.4,"last_update":"2026-03-22T10:18:42.368858193Z"} +2026/03/22 10:18:47 [metric_collector] {"stage_name":"metric_collector","events_processed":15434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3086.8,"last_update":"2026-03-22T10:18:42.369147207Z"} +2026/03/22 10:18:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:18:42.374925475Z"} +2026/03/22 10:18:47 [detection_layer] {"stage_name":"detection_layer","events_processed":514,"events_dropped":0,"avg_latency_ms":20.03591875286999,"throughput_eps":0,"last_update":"2026-03-22T10:18:42.479118468Z"} +2026/03/22 10:18:47 [transform_engine] {"stage_name":"transform_engine","events_processed":514,"events_dropped":0,"avg_latency_ms":764.3259526608825,"throughput_eps":0,"last_update":"2026-03-22T10:18:42.479144488Z"} +2026/03/22 10:18:47 ───────────────────────────────────────────────── +2026/03/22 10:18:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:18:52 [metric_collector] {"stage_name":"metric_collector","events_processed":15439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3087.8,"last_update":"2026-03-22T10:18:47.36948116Z"} +2026/03/22 10:18:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:18:47.374408569Z"} +2026/03/22 10:18:52 [detection_layer] {"stage_name":"detection_layer","events_processed":514,"events_dropped":0,"avg_latency_ms":20.03591875286999,"throughput_eps":0,"last_update":"2026-03-22T10:18:47.478953275Z"} +2026/03/22 10:18:52 [transform_engine] {"stage_name":"transform_engine","events_processed":514,"events_dropped":0,"avg_latency_ms":764.3259526608825,"throughput_eps":0,"last_update":"2026-03-22T10:18:47.478866239Z"} +2026/03/22 10:18:52 [log_collector] {"stage_name":"log_collector","events_processed":24412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4882.4,"last_update":"2026-03-22T10:18:52.36821135Z"} +2026/03/22 10:18:52 ───────────────────────────────────────────────── +2026/03/22 10:18:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:18:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:18:52.374532428Z"} +2026/03/22 10:18:57 [detection_layer] {"stage_name":"detection_layer","events_processed":514,"events_dropped":0,"avg_latency_ms":20.03591875286999,"throughput_eps":0,"last_update":"2026-03-22T10:18:52.479701852Z"} +2026/03/22 10:18:57 [transform_engine] {"stage_name":"transform_engine","events_processed":514,"events_dropped":0,"avg_latency_ms":764.3259526608825,"throughput_eps":0,"last_update":"2026-03-22T10:18:52.479746817Z"} +2026/03/22 10:18:57 [log_collector] {"stage_name":"log_collector","events_processed":24412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4882.4,"last_update":"2026-03-22T10:18:57.368781154Z"} +2026/03/22 10:18:57 [metric_collector] {"stage_name":"metric_collector","events_processed":15444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3088.8,"last_update":"2026-03-22T10:18:52.368418005Z"} +2026/03/22 10:18:57 ───────────────────────────────────────────────── +2026/03/22 10:19:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:19:02 [log_collector] {"stage_name":"log_collector","events_processed":24412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4882.4,"last_update":"2026-03-22T10:18:57.368781154Z"} +2026/03/22 10:19:02 [metric_collector] {"stage_name":"metric_collector","events_processed":15449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3089.8,"last_update":"2026-03-22T10:18:57.369100585Z"} +2026/03/22 10:19:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:18:57.375535191Z"} +2026/03/22 10:19:02 [detection_layer] {"stage_name":"detection_layer","events_processed":514,"events_dropped":0,"avg_latency_ms":20.03591875286999,"throughput_eps":0,"last_update":"2026-03-22T10:18:57.479785875Z"} +2026/03/22 10:19:02 [transform_engine] {"stage_name":"transform_engine","events_processed":515,"events_dropped":0,"avg_latency_ms":912.382062728706,"throughput_eps":0,"last_update":"2026-03-22T10:18:58.984449306Z"} +2026/03/22 10:19:02 ───────────────────────────────────────────────── +2026/03/22 10:19:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:19:07 [log_collector] {"stage_name":"log_collector","events_processed":24412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4882.4,"last_update":"2026-03-22T10:19:02.369162685Z"} +2026/03/22 10:19:07 [metric_collector] {"stage_name":"metric_collector","events_processed":15454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3090.8,"last_update":"2026-03-22T10:19:02.369729161Z"} +2026/03/22 10:19:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:19:02.376309365Z"} +2026/03/22 10:19:07 [detection_layer] {"stage_name":"detection_layer","events_processed":515,"events_dropped":0,"avg_latency_ms":17.87358480229599,"throughput_eps":0,"last_update":"2026-03-22T10:19:02.479441726Z"} +2026/03/22 10:19:07 [transform_engine] {"stage_name":"transform_engine","events_processed":515,"events_dropped":0,"avg_latency_ms":912.382062728706,"throughput_eps":0,"last_update":"2026-03-22T10:19:02.479428952Z"} +2026/03/22 10:19:07 ───────────────────────────────────────────────── +2026/03/22 10:19:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:19:12 [metric_collector] {"stage_name":"metric_collector","events_processed":15459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3091.8,"last_update":"2026-03-22T10:19:07.368219671Z"} +2026/03/22 10:19:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:19:07.375684549Z"} +2026/03/22 10:19:12 [detection_layer] {"stage_name":"detection_layer","events_processed":515,"events_dropped":0,"avg_latency_ms":17.87358480229599,"throughput_eps":0,"last_update":"2026-03-22T10:19:07.479921977Z"} +2026/03/22 10:19:12 [transform_engine] {"stage_name":"transform_engine","events_processed":515,"events_dropped":0,"avg_latency_ms":912.382062728706,"throughput_eps":0,"last_update":"2026-03-22T10:19:07.478815778Z"} +2026/03/22 10:19:12 [log_collector] {"stage_name":"log_collector","events_processed":24412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4882.4,"last_update":"2026-03-22T10:19:07.367972798Z"} +2026/03/22 10:19:12 ───────────────────────────────────────────────── +2026/03/22 10:19:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:19:17 [transform_engine] {"stage_name":"transform_engine","events_processed":515,"events_dropped":0,"avg_latency_ms":912.382062728706,"throughput_eps":0,"last_update":"2026-03-22T10:19:12.479153766Z"} +2026/03/22 10:19:17 [log_collector] {"stage_name":"log_collector","events_processed":24412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4882.4,"last_update":"2026-03-22T10:19:12.36806861Z"} +2026/03/22 10:19:17 [metric_collector] {"stage_name":"metric_collector","events_processed":15464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3092.8,"last_update":"2026-03-22T10:19:12.368436876Z"} +2026/03/22 10:19:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:19:12.375970146Z"} +2026/03/22 10:19:17 [detection_layer] {"stage_name":"detection_layer","events_processed":515,"events_dropped":0,"avg_latency_ms":17.87358480229599,"throughput_eps":0,"last_update":"2026-03-22T10:19:12.47919812Z"} +2026/03/22 10:19:17 ───────────────────────────────────────────────── +2026/03/22 10:19:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:19:22 [log_collector] {"stage_name":"log_collector","events_processed":24423,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4884.6,"last_update":"2026-03-22T10:19:22.368181569Z"} +2026/03/22 10:19:22 [metric_collector] {"stage_name":"metric_collector","events_processed":15469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3093.8,"last_update":"2026-03-22T10:19:17.368573299Z"} +2026/03/22 10:19:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:19:17.37483845Z"} +2026/03/22 10:19:22 [detection_layer] {"stage_name":"detection_layer","events_processed":515,"events_dropped":0,"avg_latency_ms":17.87358480229599,"throughput_eps":0,"last_update":"2026-03-22T10:19:17.479038957Z"} +2026/03/22 10:19:22 [transform_engine] {"stage_name":"transform_engine","events_processed":515,"events_dropped":0,"avg_latency_ms":912.382062728706,"throughput_eps":0,"last_update":"2026-03-22T10:19:17.479049086Z"} +2026/03/22 10:19:22 ───────────────────────────────────────────────── +2026/03/22 10:19:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:19:27 [log_collector] {"stage_name":"log_collector","events_processed":24423,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4884.6,"last_update":"2026-03-22T10:19:22.368181569Z"} +2026/03/22 10:19:27 [metric_collector] {"stage_name":"metric_collector","events_processed":15474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3094.8,"last_update":"2026-03-22T10:19:22.368839208Z"} +2026/03/22 10:19:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:19:22.377919341Z"} +2026/03/22 10:19:27 [detection_layer] {"stage_name":"detection_layer","events_processed":515,"events_dropped":0,"avg_latency_ms":17.87358480229599,"throughput_eps":0,"last_update":"2026-03-22T10:19:22.479097499Z"} +2026/03/22 10:19:27 [transform_engine] {"stage_name":"transform_engine","events_processed":515,"events_dropped":0,"avg_latency_ms":912.382062728706,"throughput_eps":0,"last_update":"2026-03-22T10:19:22.479106817Z"} +2026/03/22 10:19:27 ───────────────────────────────────────────────── +2026/03/22 10:19:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:19:32 [metric_collector] {"stage_name":"metric_collector","events_processed":15479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3095.8,"last_update":"2026-03-22T10:19:27.368615539Z"} +2026/03/22 10:19:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:19:27.378211791Z"} +2026/03/22 10:19:32 [detection_layer] {"stage_name":"detection_layer","events_processed":515,"events_dropped":0,"avg_latency_ms":17.87358480229599,"throughput_eps":0,"last_update":"2026-03-22T10:19:27.478952281Z"} +2026/03/22 10:19:32 [transform_engine] {"stage_name":"transform_engine","events_processed":516,"events_dropped":0,"avg_latency_ms":774.8347423829649,"throughput_eps":0,"last_update":"2026-03-22T10:19:27.703566472Z"} +2026/03/22 10:19:32 [log_collector] {"stage_name":"log_collector","events_processed":24529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4905.8,"last_update":"2026-03-22T10:19:27.370377384Z"} +2026/03/22 10:19:32 ───────────────────────────────────────────────── +Saved state: 13 clusters, 24760 messages, reason: none +2026/03/22 10:19:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:19:37 [log_collector] {"stage_name":"log_collector","events_processed":24712,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4942.4,"last_update":"2026-03-22T10:19:32.368574177Z"} +2026/03/22 10:19:37 [metric_collector] {"stage_name":"metric_collector","events_processed":15484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3096.8,"last_update":"2026-03-22T10:19:32.368892037Z"} +2026/03/22 10:19:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:19:32.376872022Z"} +2026/03/22 10:19:37 [detection_layer] {"stage_name":"detection_layer","events_processed":516,"events_dropped":0,"avg_latency_ms":16.837578841836795,"throughput_eps":0,"last_update":"2026-03-22T10:19:32.479383925Z"} +2026/03/22 10:19:37 [transform_engine] {"stage_name":"transform_engine","events_processed":516,"events_dropped":0,"avg_latency_ms":774.8347423829649,"throughput_eps":0,"last_update":"2026-03-22T10:19:32.47936618Z"} +2026/03/22 10:19:37 ───────────────────────────────────────────────── +2026/03/22 10:19:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:19:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:19:37.37746741Z"} +2026/03/22 10:19:42 [detection_layer] {"stage_name":"detection_layer","events_processed":516,"events_dropped":0,"avg_latency_ms":16.837578841836795,"throughput_eps":0,"last_update":"2026-03-22T10:19:37.479689868Z"} +2026/03/22 10:19:42 [transform_engine] {"stage_name":"transform_engine","events_processed":516,"events_dropped":0,"avg_latency_ms":774.8347423829649,"throughput_eps":0,"last_update":"2026-03-22T10:19:37.47979996Z"} +2026/03/22 10:19:42 [log_collector] {"stage_name":"log_collector","events_processed":24761,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4952.2,"last_update":"2026-03-22T10:19:37.3689582Z"} +2026/03/22 10:19:42 [metric_collector] {"stage_name":"metric_collector","events_processed":15489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3097.8,"last_update":"2026-03-22T10:19:37.369303011Z"} +2026/03/22 10:19:42 ───────────────────────────────────────────────── +2026/03/22 10:19:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:19:47 [transform_engine] {"stage_name":"transform_engine","events_processed":516,"events_dropped":0,"avg_latency_ms":774.8347423829649,"throughput_eps":0,"last_update":"2026-03-22T10:19:42.479593291Z"} +2026/03/22 10:19:47 [log_collector] {"stage_name":"log_collector","events_processed":24761,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4952.2,"last_update":"2026-03-22T10:19:42.367999422Z"} +2026/03/22 10:19:47 [metric_collector] {"stage_name":"metric_collector","events_processed":15494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3098.8,"last_update":"2026-03-22T10:19:42.368210125Z"} +2026/03/22 10:19:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:19:42.377372045Z"} +2026/03/22 10:19:47 [detection_layer] {"stage_name":"detection_layer","events_processed":516,"events_dropped":0,"avg_latency_ms":16.837578841836795,"throughput_eps":0,"last_update":"2026-03-22T10:19:42.479636724Z"} +2026/03/22 10:19:47 ───────────────────────────────────────────────── +2026/03/22 10:19:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:19:52 [metric_collector] {"stage_name":"metric_collector","events_processed":15499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3099.8,"last_update":"2026-03-22T10:19:47.368438348Z"} +2026/03/22 10:19:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:19:47.377244376Z"} +2026/03/22 10:19:52 [detection_layer] {"stage_name":"detection_layer","events_processed":516,"events_dropped":0,"avg_latency_ms":16.837578841836795,"throughput_eps":0,"last_update":"2026-03-22T10:19:47.479641108Z"} +2026/03/22 10:19:52 [transform_engine] {"stage_name":"transform_engine","events_processed":516,"events_dropped":0,"avg_latency_ms":774.8347423829649,"throughput_eps":0,"last_update":"2026-03-22T10:19:47.479606421Z"} +2026/03/22 10:19:52 [log_collector] {"stage_name":"log_collector","events_processed":24761,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4952.2,"last_update":"2026-03-22T10:19:47.367983066Z"} +2026/03/22 10:19:52 ───────────────────────────────────────────────── +2026/03/22 10:19:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:19:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:19:52.377792541Z"} +2026/03/22 10:19:57 [detection_layer] {"stage_name":"detection_layer","events_processed":516,"events_dropped":0,"avg_latency_ms":16.837578841836795,"throughput_eps":0,"last_update":"2026-03-22T10:19:52.478999394Z"} +2026/03/22 10:19:57 [transform_engine] {"stage_name":"transform_engine","events_processed":516,"events_dropped":0,"avg_latency_ms":774.8347423829649,"throughput_eps":0,"last_update":"2026-03-22T10:19:52.479052296Z"} +2026/03/22 10:19:57 [log_collector] {"stage_name":"log_collector","events_processed":24761,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4952.2,"last_update":"2026-03-22T10:19:52.368784637Z"} +2026/03/22 10:19:57 [metric_collector] {"stage_name":"metric_collector","events_processed":15504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3100.8,"last_update":"2026-03-22T10:19:52.369215462Z"} +2026/03/22 10:19:57 ───────────────────────────────────────────────── +2026/03/22 10:20:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:20:02 [log_collector] {"stage_name":"log_collector","events_processed":24761,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4952.2,"last_update":"2026-03-22T10:19:57.368398604Z"} +2026/03/22 10:20:02 [metric_collector] {"stage_name":"metric_collector","events_processed":15509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3101.8,"last_update":"2026-03-22T10:19:57.36885057Z"} +2026/03/22 10:20:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6206,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:19:57.377853295Z"} +2026/03/22 10:20:02 [detection_layer] {"stage_name":"detection_layer","events_processed":516,"events_dropped":0,"avg_latency_ms":16.837578841836795,"throughput_eps":0,"last_update":"2026-03-22T10:19:57.479428463Z"} +2026/03/22 10:20:02 [transform_engine] {"stage_name":"transform_engine","events_processed":517,"events_dropped":0,"avg_latency_ms":643.2161317063719,"throughput_eps":0,"last_update":"2026-03-22T10:19:57.595909013Z"} +2026/03/22 10:20:02 ───────────────────────────────────────────────── +2026/03/22 10:20:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:20:07 [detection_layer] {"stage_name":"detection_layer","events_processed":517,"events_dropped":0,"avg_latency_ms":17.478896273469438,"throughput_eps":0,"last_update":"2026-03-22T10:20:02.479485145Z"} +2026/03/22 10:20:07 [transform_engine] {"stage_name":"transform_engine","events_processed":517,"events_dropped":0,"avg_latency_ms":643.2161317063719,"throughput_eps":0,"last_update":"2026-03-22T10:20:02.479496628Z"} +2026/03/22 10:20:07 [log_collector] {"stage_name":"log_collector","events_processed":24761,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4952.2,"last_update":"2026-03-22T10:20:02.367956923Z"} +2026/03/22 10:20:07 [metric_collector] {"stage_name":"metric_collector","events_processed":15514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3102.8,"last_update":"2026-03-22T10:20:02.368296393Z"} +2026/03/22 10:20:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:20:02.377282516Z"} +2026/03/22 10:20:07 ───────────────────────────────────────────────── +2026/03/22 10:20:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:20:12 [transform_engine] {"stage_name":"transform_engine","events_processed":517,"events_dropped":0,"avg_latency_ms":643.2161317063719,"throughput_eps":0,"last_update":"2026-03-22T10:20:07.479510108Z"} +2026/03/22 10:20:12 [log_collector] {"stage_name":"log_collector","events_processed":24761,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4952.2,"last_update":"2026-03-22T10:20:12.368235384Z"} +2026/03/22 10:20:12 [metric_collector] {"stage_name":"metric_collector","events_processed":15519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3103.8,"last_update":"2026-03-22T10:20:07.368695801Z"} +2026/03/22 10:20:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6210,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:20:07.377291697Z"} +2026/03/22 10:20:12 [detection_layer] {"stage_name":"detection_layer","events_processed":517,"events_dropped":0,"avg_latency_ms":17.478896273469438,"throughput_eps":0,"last_update":"2026-03-22T10:20:07.479537731Z"} +2026/03/22 10:20:12 ───────────────────────────────────────────────── +2026/03/22 10:20:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:20:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:20:12.377858106Z"} +2026/03/22 10:20:17 [detection_layer] {"stage_name":"detection_layer","events_processed":517,"events_dropped":0,"avg_latency_ms":17.478896273469438,"throughput_eps":0,"last_update":"2026-03-22T10:20:12.479136196Z"} +2026/03/22 10:20:17 [transform_engine] {"stage_name":"transform_engine","events_processed":517,"events_dropped":0,"avg_latency_ms":643.2161317063719,"throughput_eps":0,"last_update":"2026-03-22T10:20:12.479179348Z"} +2026/03/22 10:20:17 [log_collector] {"stage_name":"log_collector","events_processed":24761,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4952.2,"last_update":"2026-03-22T10:20:12.368235384Z"} +2026/03/22 10:20:17 [metric_collector] {"stage_name":"metric_collector","events_processed":15524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3104.8,"last_update":"2026-03-22T10:20:12.368679535Z"} +2026/03/22 10:20:17 ───────────────────────────────────────────────── +2026/03/22 10:20:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:20:22 [log_collector] {"stage_name":"log_collector","events_processed":24761,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4952.2,"last_update":"2026-03-22T10:20:17.368841776Z"} +2026/03/22 10:20:22 [metric_collector] {"stage_name":"metric_collector","events_processed":15529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3105.8,"last_update":"2026-03-22T10:20:17.369484647Z"} +2026/03/22 10:20:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:20:17.378177853Z"} +2026/03/22 10:20:22 [detection_layer] {"stage_name":"detection_layer","events_processed":517,"events_dropped":0,"avg_latency_ms":17.478896273469438,"throughput_eps":0,"last_update":"2026-03-22T10:20:17.479393054Z"} +2026/03/22 10:20:22 [transform_engine] {"stage_name":"transform_engine","events_processed":517,"events_dropped":0,"avg_latency_ms":643.2161317063719,"throughput_eps":0,"last_update":"2026-03-22T10:20:17.479497174Z"} +2026/03/22 10:20:22 ───────────────────────────────────────────────── +2026/03/22 10:20:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:20:27 [log_collector] {"stage_name":"log_collector","events_processed":24761,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4952.2,"last_update":"2026-03-22T10:20:22.368547256Z"} +2026/03/22 10:20:27 [metric_collector] {"stage_name":"metric_collector","events_processed":15533,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3106.6,"last_update":"2026-03-22T10:20:22.368622621Z"} +2026/03/22 10:20:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:20:22.377548171Z"} +2026/03/22 10:20:27 [detection_layer] {"stage_name":"detection_layer","events_processed":517,"events_dropped":0,"avg_latency_ms":17.478896273469438,"throughput_eps":0,"last_update":"2026-03-22T10:20:22.479712151Z"} +2026/03/22 10:20:27 [transform_engine] {"stage_name":"transform_engine","events_processed":517,"events_dropped":0,"avg_latency_ms":643.2161317063719,"throughput_eps":0,"last_update":"2026-03-22T10:20:22.47973797Z"} +2026/03/22 10:20:27 ───────────────────────────────────────────────── +2026/03/22 10:20:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:20:32 [metric_collector] {"stage_name":"metric_collector","events_processed":15538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3107.6,"last_update":"2026-03-22T10:20:27.368234688Z"} +2026/03/22 10:20:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:20:27.378064912Z"} +2026/03/22 10:20:32 [detection_layer] {"stage_name":"detection_layer","events_processed":517,"events_dropped":0,"avg_latency_ms":17.478896273469438,"throughput_eps":0,"last_update":"2026-03-22T10:20:27.479435701Z"} +2026/03/22 10:20:32 [transform_engine] {"stage_name":"transform_engine","events_processed":518,"events_dropped":0,"avg_latency_ms":530.7395679650975,"throughput_eps":0,"last_update":"2026-03-22T10:20:27.560288431Z"} +2026/03/22 10:20:32 [log_collector] {"stage_name":"log_collector","events_processed":24764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4952.8,"last_update":"2026-03-22T10:20:32.368301985Z"} +2026/03/22 10:20:32 ───────────────────────────────────────────────── +2026/03/22 10:20:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:20:37 [log_collector] {"stage_name":"log_collector","events_processed":24764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4952.8,"last_update":"2026-03-22T10:20:32.368301985Z"} +2026/03/22 10:20:37 [metric_collector] {"stage_name":"metric_collector","events_processed":15544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3108.8,"last_update":"2026-03-22T10:20:32.368734954Z"} +2026/03/22 10:20:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:20:32.374754747Z"} +2026/03/22 10:20:37 [detection_layer] {"stage_name":"detection_layer","events_processed":518,"events_dropped":0,"avg_latency_ms":18.537502418775553,"throughput_eps":0,"last_update":"2026-03-22T10:20:32.479421881Z"} +2026/03/22 10:20:37 [transform_engine] {"stage_name":"transform_engine","events_processed":518,"events_dropped":0,"avg_latency_ms":530.7395679650975,"throughput_eps":0,"last_update":"2026-03-22T10:20:32.479449073Z"} +2026/03/22 10:20:37 ───────────────────────────────────────────────── +Saved state: 13 clusters, 24765 messages, reason: none +2026/03/22 10:20:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:20:42 [log_collector] {"stage_name":"log_collector","events_processed":24764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4952.8,"last_update":"2026-03-22T10:20:37.368034544Z"} +2026/03/22 10:20:42 [metric_collector] {"stage_name":"metric_collector","events_processed":15549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3109.8,"last_update":"2026-03-22T10:20:37.368302909Z"} +2026/03/22 10:20:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6222,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:20:37.376396124Z"} +2026/03/22 10:20:42 [detection_layer] {"stage_name":"detection_layer","events_processed":518,"events_dropped":0,"avg_latency_ms":18.537502418775553,"throughput_eps":0,"last_update":"2026-03-22T10:20:37.479626194Z"} +2026/03/22 10:20:42 [transform_engine] {"stage_name":"transform_engine","events_processed":518,"events_dropped":0,"avg_latency_ms":530.7395679650975,"throughput_eps":0,"last_update":"2026-03-22T10:20:37.479607217Z"} +2026/03/22 10:20:42 ───────────────────────────────────────────────── +2026/03/22 10:20:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:20:47 [detection_layer] {"stage_name":"detection_layer","events_processed":518,"events_dropped":0,"avg_latency_ms":18.537502418775553,"throughput_eps":0,"last_update":"2026-03-22T10:20:42.479819422Z"} +2026/03/22 10:20:47 [transform_engine] {"stage_name":"transform_engine","events_processed":518,"events_dropped":0,"avg_latency_ms":530.7395679650975,"throughput_eps":0,"last_update":"2026-03-22T10:20:42.479876222Z"} +2026/03/22 10:20:47 [log_collector] {"stage_name":"log_collector","events_processed":24775,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4955,"last_update":"2026-03-22T10:20:42.368679449Z"} +2026/03/22 10:20:47 [metric_collector] {"stage_name":"metric_collector","events_processed":15554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3110.8,"last_update":"2026-03-22T10:20:42.368965276Z"} +2026/03/22 10:20:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:20:42.378530411Z"} +2026/03/22 10:20:47 ───────────────────────────────────────────────── +2026/03/22 10:20:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:20:52 [transform_engine] {"stage_name":"transform_engine","events_processed":518,"events_dropped":0,"avg_latency_ms":530.7395679650975,"throughput_eps":0,"last_update":"2026-03-22T10:20:47.479515494Z"} +2026/03/22 10:20:52 [log_collector] {"stage_name":"log_collector","events_processed":24791,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4958.2,"last_update":"2026-03-22T10:20:52.368489842Z"} +2026/03/22 10:20:52 [metric_collector] {"stage_name":"metric_collector","events_processed":15559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3111.8,"last_update":"2026-03-22T10:20:47.368715812Z"} +2026/03/22 10:20:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:20:47.378152852Z"} +2026/03/22 10:20:52 [detection_layer] {"stage_name":"detection_layer","events_processed":518,"events_dropped":0,"avg_latency_ms":18.537502418775553,"throughput_eps":0,"last_update":"2026-03-22T10:20:47.479562925Z"} +2026/03/22 10:20:52 ───────────────────────────────────────────────── +2026/03/22 10:20:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:20:57 [log_collector] {"stage_name":"log_collector","events_processed":24791,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4958.2,"last_update":"2026-03-22T10:20:57.367998246Z"} +2026/03/22 10:20:57 [metric_collector] {"stage_name":"metric_collector","events_processed":15564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3112.8,"last_update":"2026-03-22T10:20:52.369212967Z"} +2026/03/22 10:20:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:20:52.377974483Z"} +2026/03/22 10:20:57 [detection_layer] {"stage_name":"detection_layer","events_processed":518,"events_dropped":0,"avg_latency_ms":18.537502418775553,"throughput_eps":0,"last_update":"2026-03-22T10:20:52.479206704Z"} +2026/03/22 10:20:57 [transform_engine] {"stage_name":"transform_engine","events_processed":518,"events_dropped":0,"avg_latency_ms":530.7395679650975,"throughput_eps":0,"last_update":"2026-03-22T10:20:52.479311676Z"} +2026/03/22 10:20:57 ───────────────────────────────────────────────── +2026/03/22 10:21:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:21:02 [metric_collector] {"stage_name":"metric_collector","events_processed":15569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3113.8,"last_update":"2026-03-22T10:20:57.368772018Z"} +2026/03/22 10:21:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:20:57.378567595Z"} +2026/03/22 10:21:02 [detection_layer] {"stage_name":"detection_layer","events_processed":518,"events_dropped":0,"avg_latency_ms":18.537502418775553,"throughput_eps":0,"last_update":"2026-03-22T10:20:57.479947761Z"} +2026/03/22 10:21:02 [transform_engine] {"stage_name":"transform_engine","events_processed":519,"events_dropped":0,"avg_latency_ms":447.756718172078,"throughput_eps":0,"last_update":"2026-03-22T10:20:57.595790324Z"} +2026/03/22 10:21:02 [log_collector] {"stage_name":"log_collector","events_processed":24791,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4958.2,"last_update":"2026-03-22T10:20:57.367998246Z"} +2026/03/22 10:21:02 ───────────────────────────────────────────────── +2026/03/22 10:21:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:21:07 [transform_engine] {"stage_name":"transform_engine","events_processed":519,"events_dropped":0,"avg_latency_ms":447.756718172078,"throughput_eps":0,"last_update":"2026-03-22T10:21:02.478910097Z"} +2026/03/22 10:21:07 [log_collector] {"stage_name":"log_collector","events_processed":24791,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4958.2,"last_update":"2026-03-22T10:21:02.368877726Z"} +2026/03/22 10:21:07 [metric_collector] {"stage_name":"metric_collector","events_processed":15574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3114.8,"last_update":"2026-03-22T10:21:02.369053583Z"} +2026/03/22 10:21:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:21:02.375790179Z"} +2026/03/22 10:21:07 [detection_layer] {"stage_name":"detection_layer","events_processed":519,"events_dropped":0,"avg_latency_ms":18.22306453502044,"throughput_eps":0,"last_update":"2026-03-22T10:21:02.478947839Z"} +2026/03/22 10:21:07 ───────────────────────────────────────────────── +2026/03/22 10:21:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:21:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:21:07.376935734Z"} +2026/03/22 10:21:12 [detection_layer] {"stage_name":"detection_layer","events_processed":519,"events_dropped":0,"avg_latency_ms":18.22306453502044,"throughput_eps":0,"last_update":"2026-03-22T10:21:07.479238997Z"} +2026/03/22 10:21:12 [transform_engine] {"stage_name":"transform_engine","events_processed":519,"events_dropped":0,"avg_latency_ms":447.756718172078,"throughput_eps":0,"last_update":"2026-03-22T10:21:07.479201094Z"} +2026/03/22 10:21:12 [log_collector] {"stage_name":"log_collector","events_processed":24791,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4958.2,"last_update":"2026-03-22T10:21:07.367961001Z"} +2026/03/22 10:21:12 [metric_collector] {"stage_name":"metric_collector","events_processed":15579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3115.8,"last_update":"2026-03-22T10:21:07.3683835Z"} +2026/03/22 10:21:12 ───────────────────────────────────────────────── +2026/03/22 10:21:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:21:17 [log_collector] {"stage_name":"log_collector","events_processed":24794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4958.8,"last_update":"2026-03-22T10:21:12.368224032Z"} +2026/03/22 10:21:17 [metric_collector] {"stage_name":"metric_collector","events_processed":15584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3116.8,"last_update":"2026-03-22T10:21:12.368132016Z"} +2026/03/22 10:21:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:21:12.375134141Z"} +2026/03/22 10:21:17 [detection_layer] {"stage_name":"detection_layer","events_processed":519,"events_dropped":0,"avg_latency_ms":18.22306453502044,"throughput_eps":0,"last_update":"2026-03-22T10:21:12.479300533Z"} +2026/03/22 10:21:17 [transform_engine] {"stage_name":"transform_engine","events_processed":519,"events_dropped":0,"avg_latency_ms":447.756718172078,"throughput_eps":0,"last_update":"2026-03-22T10:21:12.479326202Z"} +2026/03/22 10:21:17 ───────────────────────────────────────────────── +2026/03/22 10:21:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:21:22 [metric_collector] {"stage_name":"metric_collector","events_processed":15588,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3117.6,"last_update":"2026-03-22T10:21:17.367915156Z"} +2026/03/22 10:21:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:21:17.377139077Z"} +2026/03/22 10:21:22 [detection_layer] {"stage_name":"detection_layer","events_processed":519,"events_dropped":0,"avg_latency_ms":18.22306453502044,"throughput_eps":0,"last_update":"2026-03-22T10:21:17.479383577Z"} +2026/03/22 10:21:22 [transform_engine] {"stage_name":"transform_engine","events_processed":519,"events_dropped":0,"avg_latency_ms":447.756718172078,"throughput_eps":0,"last_update":"2026-03-22T10:21:17.479426309Z"} +2026/03/22 10:21:22 [log_collector] {"stage_name":"log_collector","events_processed":24805,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4961,"last_update":"2026-03-22T10:21:22.36800024Z"} +2026/03/22 10:21:22 ───────────────────────────────────────────────── +2026/03/22 10:21:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:21:27 [transform_engine] {"stage_name":"transform_engine","events_processed":519,"events_dropped":0,"avg_latency_ms":447.756718172078,"throughput_eps":0,"last_update":"2026-03-22T10:21:22.479468571Z"} +2026/03/22 10:21:27 [log_collector] {"stage_name":"log_collector","events_processed":24805,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4961,"last_update":"2026-03-22T10:21:27.367985602Z"} +2026/03/22 10:21:27 [metric_collector] {"stage_name":"metric_collector","events_processed":15594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3118.8,"last_update":"2026-03-22T10:21:22.368967242Z"} +2026/03/22 10:21:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:21:22.377095946Z"} +2026/03/22 10:21:27 [detection_layer] {"stage_name":"detection_layer","events_processed":519,"events_dropped":0,"avg_latency_ms":18.22306453502044,"throughput_eps":0,"last_update":"2026-03-22T10:21:22.479497987Z"} +2026/03/22 10:21:27 ───────────────────────────────────────────────── +2026/03/22 10:21:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:21:32 [transform_engine] {"stage_name":"transform_engine","events_processed":520,"events_dropped":0,"avg_latency_ms":381.4864643376625,"throughput_eps":0,"last_update":"2026-03-22T10:21:27.595906512Z"} +2026/03/22 10:21:32 [log_collector] {"stage_name":"log_collector","events_processed":24805,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4961,"last_update":"2026-03-22T10:21:27.367985602Z"} +2026/03/22 10:21:32 [metric_collector] {"stage_name":"metric_collector","events_processed":15599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3119.8,"last_update":"2026-03-22T10:21:27.368863354Z"} +2026/03/22 10:21:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:21:27.377154447Z"} +2026/03/22 10:21:32 [detection_layer] {"stage_name":"detection_layer","events_processed":519,"events_dropped":0,"avg_latency_ms":18.22306453502044,"throughput_eps":0,"last_update":"2026-03-22T10:21:27.47945777Z"} +2026/03/22 10:21:32 ───────────────────────────────────────────────── +2026/03/22 10:21:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:21:37 [metric_collector] {"stage_name":"metric_collector","events_processed":15604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3120.8,"last_update":"2026-03-22T10:21:32.369007907Z"} +2026/03/22 10:21:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:21:32.377739485Z"} +2026/03/22 10:21:37 [detection_layer] {"stage_name":"detection_layer","events_processed":520,"events_dropped":0,"avg_latency_ms":18.759964628016352,"throughput_eps":0,"last_update":"2026-03-22T10:21:32.479971962Z"} +2026/03/22 10:21:37 [transform_engine] {"stage_name":"transform_engine","events_processed":520,"events_dropped":0,"avg_latency_ms":381.4864643376625,"throughput_eps":0,"last_update":"2026-03-22T10:21:32.478856895Z"} +2026/03/22 10:21:37 [log_collector] {"stage_name":"log_collector","events_processed":24805,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4961,"last_update":"2026-03-22T10:21:37.367999819Z"} +2026/03/22 10:21:37 ───────────────────────────────────────────────── +2026/03/22 10:21:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:21:42 [detection_layer] {"stage_name":"detection_layer","events_processed":520,"events_dropped":0,"avg_latency_ms":18.759964628016352,"throughput_eps":0,"last_update":"2026-03-22T10:21:37.479774857Z"} +2026/03/22 10:21:42 [transform_engine] {"stage_name":"transform_engine","events_processed":520,"events_dropped":0,"avg_latency_ms":381.4864643376625,"throughput_eps":0,"last_update":"2026-03-22T10:21:37.479748517Z"} +2026/03/22 10:21:42 [log_collector] {"stage_name":"log_collector","events_processed":24805,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4961,"last_update":"2026-03-22T10:21:42.368846673Z"} +2026/03/22 10:21:42 [metric_collector] {"stage_name":"metric_collector","events_processed":15609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3121.8,"last_update":"2026-03-22T10:21:37.368423762Z"} +2026/03/22 10:21:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6246,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:21:37.377241134Z"} +2026/03/22 10:21:42 ───────────────────────────────────────────────── +2026/03/22 10:21:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:21:47 [log_collector] {"stage_name":"log_collector","events_processed":24805,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4961,"last_update":"2026-03-22T10:21:47.36798385Z"} +2026/03/22 10:21:47 [metric_collector] {"stage_name":"metric_collector","events_processed":15614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3122.8,"last_update":"2026-03-22T10:21:42.369084218Z"} +2026/03/22 10:21:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:21:42.378194883Z"} +2026/03/22 10:21:47 [detection_layer] {"stage_name":"detection_layer","events_processed":520,"events_dropped":0,"avg_latency_ms":18.759964628016352,"throughput_eps":0,"last_update":"2026-03-22T10:21:42.479374762Z"} +2026/03/22 10:21:47 [transform_engine] {"stage_name":"transform_engine","events_processed":520,"events_dropped":0,"avg_latency_ms":381.4864643376625,"throughput_eps":0,"last_update":"2026-03-22T10:21:42.479386614Z"} +2026/03/22 10:21:47 ───────────────────────────────────────────────── +2026/03/22 10:21:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:21:52 [log_collector] {"stage_name":"log_collector","events_processed":24805,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4961,"last_update":"2026-03-22T10:21:52.367981291Z"} +2026/03/22 10:21:52 [metric_collector] {"stage_name":"metric_collector","events_processed":15624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3124.8,"last_update":"2026-03-22T10:21:52.368415503Z"} +2026/03/22 10:21:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:21:47.379041604Z"} +2026/03/22 10:21:52 [detection_layer] {"stage_name":"detection_layer","events_processed":520,"events_dropped":0,"avg_latency_ms":18.759964628016352,"throughput_eps":0,"last_update":"2026-03-22T10:21:47.479411392Z"} +2026/03/22 10:21:52 [transform_engine] {"stage_name":"transform_engine","events_processed":520,"events_dropped":0,"avg_latency_ms":381.4864643376625,"throughput_eps":0,"last_update":"2026-03-22T10:21:47.479426941Z"} +2026/03/22 10:21:52 ───────────────────────────────────────────────── +2026/03/22 10:21:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:21:57 [log_collector] {"stage_name":"log_collector","events_processed":24805,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4961,"last_update":"2026-03-22T10:21:52.367981291Z"} +2026/03/22 10:21:57 [metric_collector] {"stage_name":"metric_collector","events_processed":15624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3124.8,"last_update":"2026-03-22T10:21:52.368415503Z"} +2026/03/22 10:21:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:21:52.379178373Z"} +2026/03/22 10:21:57 [detection_layer] {"stage_name":"detection_layer","events_processed":520,"events_dropped":0,"avg_latency_ms":18.759964628016352,"throughput_eps":0,"last_update":"2026-03-22T10:21:52.479381229Z"} +2026/03/22 10:21:57 [transform_engine] {"stage_name":"transform_engine","events_processed":520,"events_dropped":0,"avg_latency_ms":381.4864643376625,"throughput_eps":0,"last_update":"2026-03-22T10:21:52.479392772Z"} +2026/03/22 10:21:57 ───────────────────────────────────────────────── +2026/03/22 10:22:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:22:02 [log_collector] {"stage_name":"log_collector","events_processed":24805,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4961,"last_update":"2026-03-22T10:21:57.368545928Z"} +2026/03/22 10:22:02 [metric_collector] {"stage_name":"metric_collector","events_processed":15629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3125.8,"last_update":"2026-03-22T10:21:57.369129546Z"} +2026/03/22 10:22:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:21:57.379318998Z"} +2026/03/22 10:22:02 [detection_layer] {"stage_name":"detection_layer","events_processed":520,"events_dropped":0,"avg_latency_ms":18.759964628016352,"throughput_eps":0,"last_update":"2026-03-22T10:21:57.4795356Z"} +2026/03/22 10:22:02 [transform_engine] {"stage_name":"transform_engine","events_processed":521,"events_dropped":0,"avg_latency_ms":735.81017887013,"throughput_eps":0,"last_update":"2026-03-22T10:21:59.632654614Z"} +2026/03/22 10:22:02 ───────────────────────────────────────────────── +2026/03/22 10:22:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:22:07 [transform_engine] {"stage_name":"transform_engine","events_processed":521,"events_dropped":0,"avg_latency_ms":735.81017887013,"throughput_eps":0,"last_update":"2026-03-22T10:22:02.479069088Z"} +2026/03/22 10:22:07 [log_collector] {"stage_name":"log_collector","events_processed":24805,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4961,"last_update":"2026-03-22T10:22:02.368612738Z"} +2026/03/22 10:22:07 [metric_collector] {"stage_name":"metric_collector","events_processed":15634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3126.8,"last_update":"2026-03-22T10:22:02.368942089Z"} +2026/03/22 10:22:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:22:02.378887492Z"} +2026/03/22 10:22:07 [detection_layer] {"stage_name":"detection_layer","events_processed":521,"events_dropped":0,"avg_latency_ms":19.48920670241308,"throughput_eps":0,"last_update":"2026-03-22T10:22:02.479091841Z"} +2026/03/22 10:22:07 ───────────────────────────────────────────────── +2026/03/22 10:22:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:22:12 [log_collector] {"stage_name":"log_collector","events_processed":24805,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4961,"last_update":"2026-03-22T10:22:12.367966699Z"} +2026/03/22 10:22:12 [metric_collector] {"stage_name":"metric_collector","events_processed":15639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3127.8,"last_update":"2026-03-22T10:22:07.36863514Z"} +2026/03/22 10:22:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:22:07.379744924Z"} +2026/03/22 10:22:12 [detection_layer] {"stage_name":"detection_layer","events_processed":521,"events_dropped":0,"avg_latency_ms":19.48920670241308,"throughput_eps":0,"last_update":"2026-03-22T10:22:07.478986299Z"} +2026/03/22 10:22:12 [transform_engine] {"stage_name":"transform_engine","events_processed":521,"events_dropped":0,"avg_latency_ms":735.81017887013,"throughput_eps":0,"last_update":"2026-03-22T10:22:07.478946532Z"} +2026/03/22 10:22:12 ───────────────────────────────────────────────── +2026/03/22 10:22:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:22:17 [log_collector] {"stage_name":"log_collector","events_processed":24805,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4961,"last_update":"2026-03-22T10:22:12.367966699Z"} +2026/03/22 10:22:17 [metric_collector] {"stage_name":"metric_collector","events_processed":15644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3128.8,"last_update":"2026-03-22T10:22:12.368726364Z"} +2026/03/22 10:22:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:22:12.378398053Z"} +2026/03/22 10:22:17 [detection_layer] {"stage_name":"detection_layer","events_processed":521,"events_dropped":0,"avg_latency_ms":19.48920670241308,"throughput_eps":0,"last_update":"2026-03-22T10:22:12.479649959Z"} +2026/03/22 10:22:17 [transform_engine] {"stage_name":"transform_engine","events_processed":521,"events_dropped":0,"avg_latency_ms":735.81017887013,"throughput_eps":0,"last_update":"2026-03-22T10:22:12.479620262Z"} +2026/03/22 10:22:17 ───────────────────────────────────────────────── +Saved state: 13 clusters, 24806 messages, reason: none +2026/03/22 10:22:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:22:22 [detection_layer] {"stage_name":"detection_layer","events_processed":521,"events_dropped":0,"avg_latency_ms":19.48920670241308,"throughput_eps":0,"last_update":"2026-03-22T10:22:17.4797509Z"} +2026/03/22 10:22:22 [transform_engine] {"stage_name":"transform_engine","events_processed":521,"events_dropped":0,"avg_latency_ms":735.81017887013,"throughput_eps":0,"last_update":"2026-03-22T10:22:17.479784235Z"} +2026/03/22 10:22:22 [log_collector] {"stage_name":"log_collector","events_processed":24805,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4961,"last_update":"2026-03-22T10:22:17.368257554Z"} +2026/03/22 10:22:22 [metric_collector] {"stage_name":"metric_collector","events_processed":15649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3129.8,"last_update":"2026-03-22T10:22:17.368677288Z"} +2026/03/22 10:22:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:22:17.378385607Z"} +2026/03/22 10:22:22 ───────────────────────────────────────────────── +2026/03/22 10:22:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:22:27 [metric_collector] {"stage_name":"metric_collector","events_processed":15654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3130.8,"last_update":"2026-03-22T10:22:22.368301746Z"} +2026/03/22 10:22:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:22:22.37604494Z"} +2026/03/22 10:22:27 [detection_layer] {"stage_name":"detection_layer","events_processed":521,"events_dropped":0,"avg_latency_ms":19.48920670241308,"throughput_eps":0,"last_update":"2026-03-22T10:22:22.479280125Z"} +2026/03/22 10:22:27 [transform_engine] {"stage_name":"transform_engine","events_processed":521,"events_dropped":0,"avg_latency_ms":735.81017887013,"throughput_eps":0,"last_update":"2026-03-22T10:22:22.479315193Z"} +2026/03/22 10:22:27 [log_collector] {"stage_name":"log_collector","events_processed":24810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4962,"last_update":"2026-03-22T10:22:22.367976864Z"} +2026/03/22 10:22:27 ───────────────────────────────────────────────── +2026/03/22 10:22:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:22:32 [log_collector] {"stage_name":"log_collector","events_processed":24810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4962,"last_update":"2026-03-22T10:22:27.368851213Z"} +2026/03/22 10:22:32 [metric_collector] {"stage_name":"metric_collector","events_processed":15659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3131.8,"last_update":"2026-03-22T10:22:27.369158983Z"} +2026/03/22 10:22:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:22:27.378301228Z"} +2026/03/22 10:22:32 [detection_layer] {"stage_name":"detection_layer","events_processed":521,"events_dropped":0,"avg_latency_ms":19.48920670241308,"throughput_eps":0,"last_update":"2026-03-22T10:22:27.480383954Z"} +2026/03/22 10:22:32 [transform_engine] {"stage_name":"transform_engine","events_processed":522,"events_dropped":0,"avg_latency_ms":1373.120523096104,"throughput_eps":0,"last_update":"2026-03-22T10:22:31.402864623Z"} +2026/03/22 10:22:32 ───────────────────────────────────────────────── +2026/03/22 10:22:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:22:37 [transform_engine] {"stage_name":"transform_engine","events_processed":522,"events_dropped":0,"avg_latency_ms":1373.120523096104,"throughput_eps":0,"last_update":"2026-03-22T10:22:32.47886655Z"} +2026/03/22 10:22:37 [log_collector] {"stage_name":"log_collector","events_processed":24810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4962,"last_update":"2026-03-22T10:22:32.368013461Z"} +2026/03/22 10:22:37 [metric_collector] {"stage_name":"metric_collector","events_processed":15664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3132.8,"last_update":"2026-03-22T10:22:32.368423167Z"} +2026/03/22 10:22:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:22:32.374750178Z"} +2026/03/22 10:22:37 [detection_layer] {"stage_name":"detection_layer","events_processed":522,"events_dropped":0,"avg_latency_ms":18.856869361930467,"throughput_eps":0,"last_update":"2026-03-22T10:22:32.479989551Z"} +2026/03/22 10:22:37 ───────────────────────────────────────────────── +2026/03/22 10:22:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:22:42 [detection_layer] {"stage_name":"detection_layer","events_processed":522,"events_dropped":0,"avg_latency_ms":18.856869361930467,"throughput_eps":0,"last_update":"2026-03-22T10:22:37.479134877Z"} +2026/03/22 10:22:42 [transform_engine] {"stage_name":"transform_engine","events_processed":522,"events_dropped":0,"avg_latency_ms":1373.120523096104,"throughput_eps":0,"last_update":"2026-03-22T10:22:37.479161407Z"} +2026/03/22 10:22:42 [log_collector] {"stage_name":"log_collector","events_processed":24810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4962,"last_update":"2026-03-22T10:22:42.368115742Z"} +2026/03/22 10:22:42 [metric_collector] {"stage_name":"metric_collector","events_processed":15669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3133.8,"last_update":"2026-03-22T10:22:37.368589408Z"} +2026/03/22 10:22:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:22:37.376880682Z"} +2026/03/22 10:22:42 ───────────────────────────────────────────────── +2026/03/22 10:22:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:22:47 [log_collector] {"stage_name":"log_collector","events_processed":24810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4962,"last_update":"2026-03-22T10:22:42.368115742Z"} +2026/03/22 10:22:47 [metric_collector] {"stage_name":"metric_collector","events_processed":15674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3134.8,"last_update":"2026-03-22T10:22:42.368423913Z"} +2026/03/22 10:22:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:22:42.37436274Z"} +2026/03/22 10:22:47 [detection_layer] {"stage_name":"detection_layer","events_processed":522,"events_dropped":0,"avg_latency_ms":18.856869361930467,"throughput_eps":0,"last_update":"2026-03-22T10:22:42.479539243Z"} +2026/03/22 10:22:47 [transform_engine] {"stage_name":"transform_engine","events_processed":522,"events_dropped":0,"avg_latency_ms":1373.120523096104,"throughput_eps":0,"last_update":"2026-03-22T10:22:42.479661788Z"} +2026/03/22 10:22:47 ───────────────────────────────────────────────── +2026/03/22 10:22:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:22:52 [log_collector] {"stage_name":"log_collector","events_processed":24810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4962,"last_update":"2026-03-22T10:22:52.368385382Z"} +2026/03/22 10:22:52 [metric_collector] {"stage_name":"metric_collector","events_processed":15679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3135.8,"last_update":"2026-03-22T10:22:47.368130703Z"} +2026/03/22 10:22:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:22:47.379707241Z"} +2026/03/22 10:22:52 [detection_layer] {"stage_name":"detection_layer","events_processed":522,"events_dropped":0,"avg_latency_ms":18.856869361930467,"throughput_eps":0,"last_update":"2026-03-22T10:22:47.47999068Z"} +2026/03/22 10:22:52 [transform_engine] {"stage_name":"transform_engine","events_processed":522,"events_dropped":0,"avg_latency_ms":1373.120523096104,"throughput_eps":0,"last_update":"2026-03-22T10:22:47.478896774Z"} +2026/03/22 10:22:52 ───────────────────────────────────────────────── +2026/03/22 10:22:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:22:57 [log_collector] {"stage_name":"log_collector","events_processed":24810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4962,"last_update":"2026-03-22T10:22:52.368385382Z"} +2026/03/22 10:22:57 [metric_collector] {"stage_name":"metric_collector","events_processed":15684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3136.8,"last_update":"2026-03-22T10:22:52.368966194Z"} +2026/03/22 10:22:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6276,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:22:52.374788709Z"} +2026/03/22 10:22:57 [detection_layer] {"stage_name":"detection_layer","events_processed":522,"events_dropped":0,"avg_latency_ms":18.856869361930467,"throughput_eps":0,"last_update":"2026-03-22T10:22:52.47894118Z"} +2026/03/22 10:22:57 [transform_engine] {"stage_name":"transform_engine","events_processed":522,"events_dropped":0,"avg_latency_ms":1373.120523096104,"throughput_eps":0,"last_update":"2026-03-22T10:22:52.478916012Z"} +2026/03/22 10:22:57 ───────────────────────────────────────────────── +2026/03/22 10:23:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:23:02 [log_collector] {"stage_name":"log_collector","events_processed":24810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4962,"last_update":"2026-03-22T10:22:57.368498408Z"} +2026/03/22 10:23:02 [metric_collector] {"stage_name":"metric_collector","events_processed":15689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3137.8,"last_update":"2026-03-22T10:22:57.368691709Z"} +2026/03/22 10:23:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:22:57.374501529Z"} +2026/03/22 10:23:02 [detection_layer] {"stage_name":"detection_layer","events_processed":522,"events_dropped":0,"avg_latency_ms":18.856869361930467,"throughput_eps":0,"last_update":"2026-03-22T10:22:57.479693891Z"} +2026/03/22 10:23:02 [transform_engine] {"stage_name":"transform_engine","events_processed":522,"events_dropped":0,"avg_latency_ms":1373.120523096104,"throughput_eps":0,"last_update":"2026-03-22T10:22:57.479669785Z"} +2026/03/22 10:23:02 ───────────────────────────────────────────────── +2026/03/22 10:23:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:23:07 [transform_engine] {"stage_name":"transform_engine","events_processed":523,"events_dropped":0,"avg_latency_ms":1122.2837870768833,"throughput_eps":0,"last_update":"2026-03-22T10:23:02.479169326Z"} +2026/03/22 10:23:07 [log_collector] {"stage_name":"log_collector","events_processed":24819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4963.8,"last_update":"2026-03-22T10:23:02.368036783Z"} +2026/03/22 10:23:07 [metric_collector] {"stage_name":"metric_collector","events_processed":15694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3138.8,"last_update":"2026-03-22T10:23:02.368629028Z"} +2026/03/22 10:23:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:23:02.376028573Z"} +2026/03/22 10:23:07 [detection_layer] {"stage_name":"detection_layer","events_processed":523,"events_dropped":0,"avg_latency_ms":19.251368289544374,"throughput_eps":0,"last_update":"2026-03-22T10:23:02.479145019Z"} +2026/03/22 10:23:07 ───────────────────────────────────────────────── +2026/03/22 10:23:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:23:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:23:07.378047709Z"} +2026/03/22 10:23:12 [detection_layer] {"stage_name":"detection_layer","events_processed":523,"events_dropped":0,"avg_latency_ms":19.251368289544374,"throughput_eps":0,"last_update":"2026-03-22T10:23:07.479307377Z"} +2026/03/22 10:23:12 [transform_engine] {"stage_name":"transform_engine","events_processed":523,"events_dropped":0,"avg_latency_ms":1122.2837870768833,"throughput_eps":0,"last_update":"2026-03-22T10:23:07.479260106Z"} +2026/03/22 10:23:12 [log_collector] {"stage_name":"log_collector","events_processed":24821,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4964.2,"last_update":"2026-03-22T10:23:07.368159906Z"} +2026/03/22 10:23:12 [metric_collector] {"stage_name":"metric_collector","events_processed":15699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3139.8,"last_update":"2026-03-22T10:23:07.368621692Z"} +2026/03/22 10:23:12 ───────────────────────────────────────────────── +2026/03/22 10:23:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:23:17 [metric_collector] {"stage_name":"metric_collector","events_processed":15704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3140.8,"last_update":"2026-03-22T10:23:12.368387409Z"} +2026/03/22 10:23:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:23:12.376618247Z"} +2026/03/22 10:23:17 [detection_layer] {"stage_name":"detection_layer","events_processed":523,"events_dropped":0,"avg_latency_ms":19.251368289544374,"throughput_eps":0,"last_update":"2026-03-22T10:23:12.479827069Z"} +2026/03/22 10:23:17 [transform_engine] {"stage_name":"transform_engine","events_processed":523,"events_dropped":0,"avg_latency_ms":1122.2837870768833,"throughput_eps":0,"last_update":"2026-03-22T10:23:12.479839683Z"} +2026/03/22 10:23:17 [log_collector] {"stage_name":"log_collector","events_processed":24870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4974,"last_update":"2026-03-22T10:23:12.367960531Z"} +2026/03/22 10:23:17 ───────────────────────────────────────────────── +2026/03/22 10:23:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:23:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6286,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:23:17.377508349Z"} +2026/03/22 10:23:22 [detection_layer] {"stage_name":"detection_layer","events_processed":523,"events_dropped":0,"avg_latency_ms":19.251368289544374,"throughput_eps":0,"last_update":"2026-03-22T10:23:17.479957866Z"} +2026/03/22 10:23:22 [transform_engine] {"stage_name":"transform_engine","events_processed":523,"events_dropped":0,"avg_latency_ms":1122.2837870768833,"throughput_eps":0,"last_update":"2026-03-22T10:23:17.478865995Z"} +2026/03/22 10:23:22 [log_collector] {"stage_name":"log_collector","events_processed":25172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5034.4,"last_update":"2026-03-22T10:23:17.368737636Z"} +2026/03/22 10:23:22 [metric_collector] {"stage_name":"metric_collector","events_processed":15709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3141.8,"last_update":"2026-03-22T10:23:17.369200914Z"} +2026/03/22 10:23:22 ───────────────────────────────────────────────── +Saved state: 13 clusters, 25176 messages, reason: none +2026/03/22 10:23:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:23:27 [log_collector] {"stage_name":"log_collector","events_processed":25175,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5035,"last_update":"2026-03-22T10:23:22.368122664Z"} +2026/03/22 10:23:27 [metric_collector] {"stage_name":"metric_collector","events_processed":15714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3142.8,"last_update":"2026-03-22T10:23:22.368828907Z"} +2026/03/22 10:23:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:23:22.3764775Z"} +2026/03/22 10:23:27 [detection_layer] {"stage_name":"detection_layer","events_processed":523,"events_dropped":0,"avg_latency_ms":19.251368289544374,"throughput_eps":0,"last_update":"2026-03-22T10:23:22.480072221Z"} +2026/03/22 10:23:27 [transform_engine] {"stage_name":"transform_engine","events_processed":523,"events_dropped":0,"avg_latency_ms":1122.2837870768833,"throughput_eps":0,"last_update":"2026-03-22T10:23:22.478908372Z"} +2026/03/22 10:23:27 ───────────────────────────────────────────────── +2026/03/22 10:23:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:23:32 [log_collector] {"stage_name":"log_collector","events_processed":25185,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5037,"last_update":"2026-03-22T10:23:27.368021138Z"} +2026/03/22 10:23:32 [metric_collector] {"stage_name":"metric_collector","events_processed":15719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3143.8,"last_update":"2026-03-22T10:23:27.368491088Z"} +2026/03/22 10:23:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:23:27.37482873Z"} +2026/03/22 10:23:32 [detection_layer] {"stage_name":"detection_layer","events_processed":523,"events_dropped":0,"avg_latency_ms":19.251368289544374,"throughput_eps":0,"last_update":"2026-03-22T10:23:27.479213453Z"} +2026/03/22 10:23:32 [transform_engine] {"stage_name":"transform_engine","events_processed":524,"events_dropped":0,"avg_latency_ms":1026.3999622615067,"throughput_eps":0,"last_update":"2026-03-22T10:23:28.122097494Z"} +2026/03/22 10:23:32 ───────────────────────────────────────────────── +2026/03/22 10:23:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:23:37 [detection_layer] {"stage_name":"detection_layer","events_processed":524,"events_dropped":0,"avg_latency_ms":18.8969298316355,"throughput_eps":0,"last_update":"2026-03-22T10:23:32.479955151Z"} +2026/03/22 10:23:37 [transform_engine] {"stage_name":"transform_engine","events_processed":524,"events_dropped":0,"avg_latency_ms":1026.3999622615067,"throughput_eps":0,"last_update":"2026-03-22T10:23:32.48000217Z"} +2026/03/22 10:23:37 [log_collector] {"stage_name":"log_collector","events_processed":25186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5037.2,"last_update":"2026-03-22T10:23:32.368024951Z"} +2026/03/22 10:23:37 [metric_collector] {"stage_name":"metric_collector","events_processed":15723,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3144.6,"last_update":"2026-03-22T10:23:32.367918297Z"} +2026/03/22 10:23:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:23:32.377552363Z"} +2026/03/22 10:23:37 ───────────────────────────────────────────────── +2026/03/22 10:23:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:23:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:23:37.376691721Z"} +2026/03/22 10:23:42 [detection_layer] {"stage_name":"detection_layer","events_processed":524,"events_dropped":0,"avg_latency_ms":18.8969298316355,"throughput_eps":0,"last_update":"2026-03-22T10:23:37.479384714Z"} +2026/03/22 10:23:42 [transform_engine] {"stage_name":"transform_engine","events_processed":524,"events_dropped":0,"avg_latency_ms":1026.3999622615067,"throughput_eps":0,"last_update":"2026-03-22T10:23:37.479433457Z"} +2026/03/22 10:23:42 [log_collector] {"stage_name":"log_collector","events_processed":25200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5040,"last_update":"2026-03-22T10:23:37.367973248Z"} +2026/03/22 10:23:42 [metric_collector] {"stage_name":"metric_collector","events_processed":15728,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3145.6,"last_update":"2026-03-22T10:23:37.367894137Z"} +2026/03/22 10:23:42 ───────────────────────────────────────────────── +2026/03/22 10:23:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:23:47 [transform_engine] {"stage_name":"transform_engine","events_processed":524,"events_dropped":0,"avg_latency_ms":1026.3999622615067,"throughput_eps":0,"last_update":"2026-03-22T10:23:42.479154892Z"} +2026/03/22 10:23:47 [log_collector] {"stage_name":"log_collector","events_processed":25202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5040.4,"last_update":"2026-03-22T10:23:42.368018664Z"} +2026/03/22 10:23:47 [metric_collector] {"stage_name":"metric_collector","events_processed":15734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3146.8,"last_update":"2026-03-22T10:23:42.368375117Z"} +2026/03/22 10:23:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:23:42.376876183Z"} +2026/03/22 10:23:47 [detection_layer] {"stage_name":"detection_layer","events_processed":524,"events_dropped":0,"avg_latency_ms":18.8969298316355,"throughput_eps":0,"last_update":"2026-03-22T10:23:42.479137999Z"} +2026/03/22 10:23:47 ───────────────────────────────────────────────── +2026/03/22 10:23:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:23:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:23:47.376288253Z"} +2026/03/22 10:23:52 [detection_layer] {"stage_name":"detection_layer","events_processed":524,"events_dropped":0,"avg_latency_ms":18.8969298316355,"throughput_eps":0,"last_update":"2026-03-22T10:23:47.479593428Z"} +2026/03/22 10:23:52 [transform_engine] {"stage_name":"transform_engine","events_processed":524,"events_dropped":0,"avg_latency_ms":1026.3999622615067,"throughput_eps":0,"last_update":"2026-03-22T10:23:47.479573349Z"} +2026/03/22 10:23:52 [log_collector] {"stage_name":"log_collector","events_processed":25202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5040.4,"last_update":"2026-03-22T10:23:47.368286573Z"} +2026/03/22 10:23:52 [metric_collector] {"stage_name":"metric_collector","events_processed":15739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3147.8,"last_update":"2026-03-22T10:23:47.368564465Z"} +2026/03/22 10:23:52 ───────────────────────────────────────────────── +2026/03/22 10:23:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:23:57 [transform_engine] {"stage_name":"transform_engine","events_processed":524,"events_dropped":0,"avg_latency_ms":1026.3999622615067,"throughput_eps":0,"last_update":"2026-03-22T10:23:52.479759385Z"} +2026/03/22 10:23:57 [log_collector] {"stage_name":"log_collector","events_processed":25202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5040.4,"last_update":"2026-03-22T10:23:52.36840477Z"} +2026/03/22 10:23:57 [metric_collector] {"stage_name":"metric_collector","events_processed":15744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3148.8,"last_update":"2026-03-22T10:23:52.368862045Z"} +2026/03/22 10:23:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:23:52.378427551Z"} +2026/03/22 10:23:57 [detection_layer] {"stage_name":"detection_layer","events_processed":524,"events_dropped":0,"avg_latency_ms":18.8969298316355,"throughput_eps":0,"last_update":"2026-03-22T10:23:52.479742031Z"} +2026/03/22 10:23:57 ───────────────────────────────────────────────── +2026/03/22 10:24:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:24:02 [metric_collector] {"stage_name":"metric_collector","events_processed":15749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3149.8,"last_update":"2026-03-22T10:23:57.368702197Z"} +2026/03/22 10:24:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:23:57.377582009Z"} +2026/03/22 10:24:02 [detection_layer] {"stage_name":"detection_layer","events_processed":524,"events_dropped":0,"avg_latency_ms":18.8969298316355,"throughput_eps":0,"last_update":"2026-03-22T10:23:57.480006136Z"} +2026/03/22 10:24:02 [transform_engine] {"stage_name":"transform_engine","events_processed":525,"events_dropped":0,"avg_latency_ms":844.6028044092055,"throughput_eps":0,"last_update":"2026-03-22T10:23:57.597387517Z"} +2026/03/22 10:24:02 [log_collector] {"stage_name":"log_collector","events_processed":25202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5040.4,"last_update":"2026-03-22T10:23:57.368305908Z"} +2026/03/22 10:24:02 ───────────────────────────────────────────────── +2026/03/22 10:24:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:24:07 [log_collector] {"stage_name":"log_collector","events_processed":25202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5040.4,"last_update":"2026-03-22T10:24:02.368790666Z"} +2026/03/22 10:24:07 [metric_collector] {"stage_name":"metric_collector","events_processed":15754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3150.8,"last_update":"2026-03-22T10:24:02.369301123Z"} +2026/03/22 10:24:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:24:02.376589245Z"} +2026/03/22 10:24:07 [detection_layer] {"stage_name":"detection_layer","events_processed":525,"events_dropped":0,"avg_latency_ms":19.0294318653084,"throughput_eps":0,"last_update":"2026-03-22T10:24:02.479829716Z"} +2026/03/22 10:24:07 [transform_engine] {"stage_name":"transform_engine","events_processed":525,"events_dropped":0,"avg_latency_ms":844.6028044092055,"throughput_eps":0,"last_update":"2026-03-22T10:24:02.479843342Z"} +2026/03/22 10:24:07 ───────────────────────────────────────────────── +2026/03/22 10:24:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:24:12 [log_collector] {"stage_name":"log_collector","events_processed":25202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5040.4,"last_update":"2026-03-22T10:24:07.368849527Z"} +2026/03/22 10:24:12 [metric_collector] {"stage_name":"metric_collector","events_processed":15759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3151.8,"last_update":"2026-03-22T10:24:07.369283479Z"} +2026/03/22 10:24:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:24:07.377549704Z"} +2026/03/22 10:24:12 [detection_layer] {"stage_name":"detection_layer","events_processed":525,"events_dropped":0,"avg_latency_ms":19.0294318653084,"throughput_eps":0,"last_update":"2026-03-22T10:24:07.479892215Z"} +2026/03/22 10:24:12 [transform_engine] {"stage_name":"transform_engine","events_processed":525,"events_dropped":0,"avg_latency_ms":844.6028044092055,"throughput_eps":0,"last_update":"2026-03-22T10:24:07.479908897Z"} +2026/03/22 10:24:12 ───────────────────────────────────────────────── +2026/03/22 10:24:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:24:17 [detection_layer] {"stage_name":"detection_layer","events_processed":525,"events_dropped":0,"avg_latency_ms":19.0294318653084,"throughput_eps":0,"last_update":"2026-03-22T10:24:12.478969668Z"} +2026/03/22 10:24:17 [transform_engine] {"stage_name":"transform_engine","events_processed":525,"events_dropped":0,"avg_latency_ms":844.6028044092055,"throughput_eps":0,"last_update":"2026-03-22T10:24:12.478983243Z"} +2026/03/22 10:24:17 [log_collector] {"stage_name":"log_collector","events_processed":25202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5040.4,"last_update":"2026-03-22T10:24:12.368873464Z"} +2026/03/22 10:24:17 [metric_collector] {"stage_name":"metric_collector","events_processed":15764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3152.8,"last_update":"2026-03-22T10:24:12.369282317Z"} +2026/03/22 10:24:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:24:12.378814548Z"} +2026/03/22 10:24:17 ───────────────────────────────────────────────── +2026/03/22 10:24:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:24:22 [log_collector] {"stage_name":"log_collector","events_processed":25202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5040.4,"last_update":"2026-03-22T10:24:17.368299825Z"} +2026/03/22 10:24:22 [metric_collector] {"stage_name":"metric_collector","events_processed":15769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3153.8,"last_update":"2026-03-22T10:24:17.368752982Z"} +2026/03/22 10:24:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:24:17.377638094Z"} +2026/03/22 10:24:22 [detection_layer] {"stage_name":"detection_layer","events_processed":525,"events_dropped":0,"avg_latency_ms":19.0294318653084,"throughput_eps":0,"last_update":"2026-03-22T10:24:17.48004139Z"} +2026/03/22 10:24:22 [transform_engine] {"stage_name":"transform_engine","events_processed":525,"events_dropped":0,"avg_latency_ms":844.6028044092055,"throughput_eps":0,"last_update":"2026-03-22T10:24:17.478837044Z"} +2026/03/22 10:24:22 ───────────────────────────────────────────────── +2026/03/22 10:24:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:24:27 [metric_collector] {"stage_name":"metric_collector","events_processed":15774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3154.8,"last_update":"2026-03-22T10:24:22.36832691Z"} +2026/03/22 10:24:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:24:22.377504041Z"} +2026/03/22 10:24:27 [detection_layer] {"stage_name":"detection_layer","events_processed":525,"events_dropped":0,"avg_latency_ms":19.0294318653084,"throughput_eps":0,"last_update":"2026-03-22T10:24:22.479704769Z"} +2026/03/22 10:24:27 [transform_engine] {"stage_name":"transform_engine","events_processed":525,"events_dropped":0,"avg_latency_ms":844.6028044092055,"throughput_eps":0,"last_update":"2026-03-22T10:24:22.479720419Z"} +2026/03/22 10:24:27 [log_collector] {"stage_name":"log_collector","events_processed":25202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5040.4,"last_update":"2026-03-22T10:24:27.369100695Z"} +2026/03/22 10:24:27 ───────────────────────────────────────────────── +2026/03/22 10:24:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:24:32 [log_collector] {"stage_name":"log_collector","events_processed":25202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5040.4,"last_update":"2026-03-22T10:24:32.36798913Z"} +2026/03/22 10:24:32 [metric_collector] {"stage_name":"metric_collector","events_processed":15779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3155.8,"last_update":"2026-03-22T10:24:27.36963566Z"} +2026/03/22 10:24:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:24:27.377608583Z"} +2026/03/22 10:24:32 [detection_layer] {"stage_name":"detection_layer","events_processed":525,"events_dropped":0,"avg_latency_ms":19.0294318653084,"throughput_eps":0,"last_update":"2026-03-22T10:24:27.478983269Z"} +2026/03/22 10:24:32 [transform_engine] {"stage_name":"transform_engine","events_processed":526,"events_dropped":0,"avg_latency_ms":690.2590947273644,"throughput_eps":0,"last_update":"2026-03-22T10:24:27.551712598Z"} +2026/03/22 10:24:32 ───────────────────────────────────────────────── +2026/03/22 10:24:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:24:37 [detection_layer] {"stage_name":"detection_layer","events_processed":526,"events_dropped":0,"avg_latency_ms":19.79759029224672,"throughput_eps":0,"last_update":"2026-03-22T10:24:32.479571661Z"} +2026/03/22 10:24:37 [transform_engine] {"stage_name":"transform_engine","events_processed":526,"events_dropped":0,"avg_latency_ms":690.2590947273644,"throughput_eps":0,"last_update":"2026-03-22T10:24:32.479582962Z"} +2026/03/22 10:24:37 [log_collector] {"stage_name":"log_collector","events_processed":25202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5040.4,"last_update":"2026-03-22T10:24:32.36798913Z"} +2026/03/22 10:24:37 [metric_collector] {"stage_name":"metric_collector","events_processed":15784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3156.8,"last_update":"2026-03-22T10:24:32.368862012Z"} +2026/03/22 10:24:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:24:32.377358629Z"} +2026/03/22 10:24:37 ───────────────────────────────────────────────── +2026/03/22 10:24:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:24:42 [log_collector] {"stage_name":"log_collector","events_processed":25202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5040.4,"last_update":"2026-03-22T10:24:37.368452824Z"} +2026/03/22 10:24:42 [metric_collector] {"stage_name":"metric_collector","events_processed":15789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3157.8,"last_update":"2026-03-22T10:24:37.369262484Z"} +2026/03/22 10:24:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:24:37.378078274Z"} +2026/03/22 10:24:42 [detection_layer] {"stage_name":"detection_layer","events_processed":526,"events_dropped":0,"avg_latency_ms":19.79759029224672,"throughput_eps":0,"last_update":"2026-03-22T10:24:37.479453139Z"} +2026/03/22 10:24:42 [transform_engine] {"stage_name":"transform_engine","events_processed":526,"events_dropped":0,"avg_latency_ms":690.2590947273644,"throughput_eps":0,"last_update":"2026-03-22T10:24:37.47946911Z"} +2026/03/22 10:24:42 ───────────────────────────────────────────────── +2026/03/22 10:24:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:24:47 [metric_collector] {"stage_name":"metric_collector","events_processed":15794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3158.8,"last_update":"2026-03-22T10:24:42.368412071Z"} +2026/03/22 10:24:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6320,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:24:42.377361547Z"} +2026/03/22 10:24:47 [detection_layer] {"stage_name":"detection_layer","events_processed":526,"events_dropped":0,"avg_latency_ms":19.79759029224672,"throughput_eps":0,"last_update":"2026-03-22T10:24:42.479582032Z"} +2026/03/22 10:24:47 [transform_engine] {"stage_name":"transform_engine","events_processed":526,"events_dropped":0,"avg_latency_ms":690.2590947273644,"throughput_eps":0,"last_update":"2026-03-22T10:24:42.479595488Z"} +2026/03/22 10:24:47 [log_collector] {"stage_name":"log_collector","events_processed":25202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5040.4,"last_update":"2026-03-22T10:24:42.367976077Z"} +2026/03/22 10:24:47 ───────────────────────────────────────────────── +2026/03/22 10:24:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:24:52 [log_collector] {"stage_name":"log_collector","events_processed":25202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5040.4,"last_update":"2026-03-22T10:24:47.36876244Z"} +2026/03/22 10:24:52 [metric_collector] {"stage_name":"metric_collector","events_processed":15799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3159.8,"last_update":"2026-03-22T10:24:47.369512919Z"} +2026/03/22 10:24:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:24:47.379412914Z"} +2026/03/22 10:24:52 [detection_layer] {"stage_name":"detection_layer","events_processed":526,"events_dropped":0,"avg_latency_ms":19.79759029224672,"throughput_eps":0,"last_update":"2026-03-22T10:24:47.4796395Z"} +2026/03/22 10:24:52 [transform_engine] {"stage_name":"transform_engine","events_processed":526,"events_dropped":0,"avg_latency_ms":690.2590947273644,"throughput_eps":0,"last_update":"2026-03-22T10:24:47.479651222Z"} +2026/03/22 10:24:52 ───────────────────────────────────────────────── +Saved state: 13 clusters, 25203 messages, reason: none +2026/03/22 10:24:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:24:57 [metric_collector] {"stage_name":"metric_collector","events_processed":15804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3160.8,"last_update":"2026-03-22T10:24:52.369442644Z"} +2026/03/22 10:24:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:24:52.377395499Z"} +2026/03/22 10:24:57 [detection_layer] {"stage_name":"detection_layer","events_processed":526,"events_dropped":0,"avg_latency_ms":19.79759029224672,"throughput_eps":0,"last_update":"2026-03-22T10:24:52.479769908Z"} +2026/03/22 10:24:57 [transform_engine] {"stage_name":"transform_engine","events_processed":526,"events_dropped":0,"avg_latency_ms":690.2590947273644,"throughput_eps":0,"last_update":"2026-03-22T10:24:52.479753386Z"} +2026/03/22 10:24:57 [log_collector] {"stage_name":"log_collector","events_processed":25215,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5043,"last_update":"2026-03-22T10:24:57.368708548Z"} +2026/03/22 10:24:57 ───────────────────────────────────────────────── +2026/03/22 10:25:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:25:02 [metric_collector] {"stage_name":"metric_collector","events_processed":15809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3161.8,"last_update":"2026-03-22T10:24:57.369078898Z"} +2026/03/22 10:25:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:24:57.375327749Z"} +2026/03/22 10:25:02 [detection_layer] {"stage_name":"detection_layer","events_processed":526,"events_dropped":0,"avg_latency_ms":19.79759029224672,"throughput_eps":0,"last_update":"2026-03-22T10:24:57.479716428Z"} +2026/03/22 10:25:02 [transform_engine] {"stage_name":"transform_engine","events_processed":527,"events_dropped":0,"avg_latency_ms":573.4172341818916,"throughput_eps":0,"last_update":"2026-03-22T10:24:57.58584022Z"} +2026/03/22 10:25:02 [log_collector] {"stage_name":"log_collector","events_processed":25216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5043.2,"last_update":"2026-03-22T10:25:02.368806258Z"} +2026/03/22 10:25:02 ───────────────────────────────────────────────── +2026/03/22 10:25:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:25:07 [log_collector] {"stage_name":"log_collector","events_processed":25216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5043.2,"last_update":"2026-03-22T10:25:02.368806258Z"} +2026/03/22 10:25:07 [metric_collector] {"stage_name":"metric_collector","events_processed":15814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3162.8,"last_update":"2026-03-22T10:25:02.369197057Z"} +2026/03/22 10:25:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:25:02.375823622Z"} +2026/03/22 10:25:07 [detection_layer] {"stage_name":"detection_layer","events_processed":527,"events_dropped":0,"avg_latency_ms":18.785981633797377,"throughput_eps":0,"last_update":"2026-03-22T10:25:02.480004141Z"} +2026/03/22 10:25:07 [transform_engine] {"stage_name":"transform_engine","events_processed":527,"events_dropped":0,"avg_latency_ms":573.4172341818916,"throughput_eps":0,"last_update":"2026-03-22T10:25:02.478895748Z"} +2026/03/22 10:25:07 ───────────────────────────────────────────────── +2026/03/22 10:25:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:25:12 [transform_engine] {"stage_name":"transform_engine","events_processed":527,"events_dropped":0,"avg_latency_ms":573.4172341818916,"throughput_eps":0,"last_update":"2026-03-22T10:25:07.479463599Z"} +2026/03/22 10:25:12 [log_collector] {"stage_name":"log_collector","events_processed":25216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5043.2,"last_update":"2026-03-22T10:25:12.368014061Z"} +2026/03/22 10:25:12 [metric_collector] {"stage_name":"metric_collector","events_processed":15824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3164.8,"last_update":"2026-03-22T10:25:12.368569125Z"} +2026/03/22 10:25:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6330,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:25:07.377252494Z"} +2026/03/22 10:25:12 [detection_layer] {"stage_name":"detection_layer","events_processed":527,"events_dropped":0,"avg_latency_ms":18.785981633797377,"throughput_eps":0,"last_update":"2026-03-22T10:25:07.479481664Z"} +2026/03/22 10:25:12 ───────────────────────────────────────────────── +2026/03/22 10:25:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:25:17 [metric_collector] {"stage_name":"metric_collector","events_processed":15824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3164.8,"last_update":"2026-03-22T10:25:12.368569125Z"} +2026/03/22 10:25:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:25:12.378242907Z"} +2026/03/22 10:25:17 [detection_layer] {"stage_name":"detection_layer","events_processed":527,"events_dropped":0,"avg_latency_ms":18.785981633797377,"throughput_eps":0,"last_update":"2026-03-22T10:25:12.479589798Z"} +2026/03/22 10:25:17 [transform_engine] {"stage_name":"transform_engine","events_processed":527,"events_dropped":0,"avg_latency_ms":573.4172341818916,"throughput_eps":0,"last_update":"2026-03-22T10:25:12.479726961Z"} +2026/03/22 10:25:17 [log_collector] {"stage_name":"log_collector","events_processed":25216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5043.2,"last_update":"2026-03-22T10:25:12.368014061Z"} +2026/03/22 10:25:17 ───────────────────────────────────────────────── +2026/03/22 10:25:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:25:22 [transform_engine] {"stage_name":"transform_engine","events_processed":527,"events_dropped":0,"avg_latency_ms":573.4172341818916,"throughput_eps":0,"last_update":"2026-03-22T10:25:17.479409248Z"} +2026/03/22 10:25:22 [log_collector] {"stage_name":"log_collector","events_processed":25216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5043.2,"last_update":"2026-03-22T10:25:17.367993308Z"} +2026/03/22 10:25:22 [metric_collector] {"stage_name":"metric_collector","events_processed":15829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3165.8,"last_update":"2026-03-22T10:25:17.36829699Z"} +2026/03/22 10:25:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:25:17.377738136Z"} +2026/03/22 10:25:22 [detection_layer] {"stage_name":"detection_layer","events_processed":527,"events_dropped":0,"avg_latency_ms":18.785981633797377,"throughput_eps":0,"last_update":"2026-03-22T10:25:17.479461919Z"} +2026/03/22 10:25:22 ───────────────────────────────────────────────── +2026/03/22 10:25:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:25:27 [detection_layer] {"stage_name":"detection_layer","events_processed":527,"events_dropped":0,"avg_latency_ms":18.785981633797377,"throughput_eps":0,"last_update":"2026-03-22T10:25:22.479761533Z"} +2026/03/22 10:25:27 [transform_engine] {"stage_name":"transform_engine","events_processed":527,"events_dropped":0,"avg_latency_ms":573.4172341818916,"throughput_eps":0,"last_update":"2026-03-22T10:25:22.47984373Z"} +2026/03/22 10:25:27 [log_collector] {"stage_name":"log_collector","events_processed":25216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5043.2,"last_update":"2026-03-22T10:25:22.368942175Z"} +2026/03/22 10:25:27 [metric_collector] {"stage_name":"metric_collector","events_processed":15834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3166.8,"last_update":"2026-03-22T10:25:22.369238713Z"} +2026/03/22 10:25:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:25:22.37857015Z"} +2026/03/22 10:25:27 ───────────────────────────────────────────────── +2026/03/22 10:25:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:25:32 [log_collector] {"stage_name":"log_collector","events_processed":25216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5043.2,"last_update":"2026-03-22T10:25:27.368283706Z"} +2026/03/22 10:25:32 [metric_collector] {"stage_name":"metric_collector","events_processed":15839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3167.8,"last_update":"2026-03-22T10:25:27.368757624Z"} +2026/03/22 10:25:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:25:27.377445548Z"} +2026/03/22 10:25:32 [detection_layer] {"stage_name":"detection_layer","events_processed":527,"events_dropped":0,"avg_latency_ms":18.785981633797377,"throughput_eps":0,"last_update":"2026-03-22T10:25:27.479779259Z"} +2026/03/22 10:25:32 [transform_engine] {"stage_name":"transform_engine","events_processed":528,"events_dropped":0,"avg_latency_ms":902.9184075455132,"throughput_eps":0,"last_update":"2026-03-22T10:25:29.700822409Z"} +2026/03/22 10:25:32 ───────────────────────────────────────────────── +2026/03/22 10:25:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:25:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:25:32.376996643Z"} +2026/03/22 10:25:37 [detection_layer] {"stage_name":"detection_layer","events_processed":528,"events_dropped":0,"avg_latency_ms":19.4719613070379,"throughput_eps":0,"last_update":"2026-03-22T10:25:32.479336284Z"} +2026/03/22 10:25:37 [transform_engine] {"stage_name":"transform_engine","events_processed":528,"events_dropped":0,"avg_latency_ms":902.9184075455132,"throughput_eps":0,"last_update":"2026-03-22T10:25:32.479304863Z"} +2026/03/22 10:25:37 [log_collector] {"stage_name":"log_collector","events_processed":25216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5043.2,"last_update":"2026-03-22T10:25:32.368367422Z"} +2026/03/22 10:25:37 [metric_collector] {"stage_name":"metric_collector","events_processed":15844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3168.8,"last_update":"2026-03-22T10:25:32.368808747Z"} +2026/03/22 10:25:37 ───────────────────────────────────────────────── +2026/03/22 10:25:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:25:42 [metric_collector] {"stage_name":"metric_collector","events_processed":15849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3169.8,"last_update":"2026-03-22T10:25:37.369344568Z"} +2026/03/22 10:25:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6342,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:25:37.377998537Z"} +2026/03/22 10:25:42 [detection_layer] {"stage_name":"detection_layer","events_processed":528,"events_dropped":0,"avg_latency_ms":19.4719613070379,"throughput_eps":0,"last_update":"2026-03-22T10:25:37.479245345Z"} +2026/03/22 10:25:42 [transform_engine] {"stage_name":"transform_engine","events_processed":528,"events_dropped":0,"avg_latency_ms":902.9184075455132,"throughput_eps":0,"last_update":"2026-03-22T10:25:37.479268028Z"} +2026/03/22 10:25:42 [log_collector] {"stage_name":"log_collector","events_processed":25216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5043.2,"last_update":"2026-03-22T10:25:37.36888579Z"} +2026/03/22 10:25:42 ───────────────────────────────────────────────── +2026/03/22 10:25:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:25:47 [metric_collector] {"stage_name":"metric_collector","events_processed":15854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3170.8,"last_update":"2026-03-22T10:25:42.368627133Z"} +2026/03/22 10:25:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:25:42.379102419Z"} +2026/03/22 10:25:47 [detection_layer] {"stage_name":"detection_layer","events_processed":528,"events_dropped":0,"avg_latency_ms":19.4719613070379,"throughput_eps":0,"last_update":"2026-03-22T10:25:42.479313133Z"} +2026/03/22 10:25:47 [transform_engine] {"stage_name":"transform_engine","events_processed":528,"events_dropped":0,"avg_latency_ms":902.9184075455132,"throughput_eps":0,"last_update":"2026-03-22T10:25:42.479330306Z"} +2026/03/22 10:25:47 [log_collector] {"stage_name":"log_collector","events_processed":25216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5043.2,"last_update":"2026-03-22T10:25:47.367981105Z"} +2026/03/22 10:25:47 ───────────────────────────────────────────────── +2026/03/22 10:25:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:25:52 [detection_layer] {"stage_name":"detection_layer","events_processed":528,"events_dropped":0,"avg_latency_ms":19.4719613070379,"throughput_eps":0,"last_update":"2026-03-22T10:25:47.479390853Z"} +2026/03/22 10:25:52 [transform_engine] {"stage_name":"transform_engine","events_processed":528,"events_dropped":0,"avg_latency_ms":902.9184075455132,"throughput_eps":0,"last_update":"2026-03-22T10:25:47.479241296Z"} +2026/03/22 10:25:52 [log_collector] {"stage_name":"log_collector","events_processed":25216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5043.2,"last_update":"2026-03-22T10:25:52.368641132Z"} +2026/03/22 10:25:52 [metric_collector] {"stage_name":"metric_collector","events_processed":15859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3171.8,"last_update":"2026-03-22T10:25:47.36886558Z"} +2026/03/22 10:25:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:25:47.377891821Z"} +2026/03/22 10:25:52 ───────────────────────────────────────────────── +2026/03/22 10:25:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:25:57 [log_collector] {"stage_name":"log_collector","events_processed":25216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5043.2,"last_update":"2026-03-22T10:25:52.368641132Z"} +2026/03/22 10:25:57 [metric_collector] {"stage_name":"metric_collector","events_processed":15864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3172.8,"last_update":"2026-03-22T10:25:52.369290938Z"} +2026/03/22 10:25:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:25:52.378215264Z"} +2026/03/22 10:25:57 [detection_layer] {"stage_name":"detection_layer","events_processed":528,"events_dropped":0,"avg_latency_ms":19.4719613070379,"throughput_eps":0,"last_update":"2026-03-22T10:25:52.479426564Z"} +2026/03/22 10:25:57 [transform_engine] {"stage_name":"transform_engine","events_processed":528,"events_dropped":0,"avg_latency_ms":902.9184075455132,"throughput_eps":0,"last_update":"2026-03-22T10:25:52.479486598Z"} +2026/03/22 10:25:57 ───────────────────────────────────────────────── +2026/03/22 10:26:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:26:02 [detection_layer] {"stage_name":"detection_layer","events_processed":528,"events_dropped":0,"avg_latency_ms":19.4719613070379,"throughput_eps":0,"last_update":"2026-03-22T10:25:57.479838498Z"} +2026/03/22 10:26:02 [transform_engine] {"stage_name":"transform_engine","events_processed":529,"events_dropped":0,"avg_latency_ms":738.6291992364106,"throughput_eps":0,"last_update":"2026-03-22T10:25:57.56134023Z"} +2026/03/22 10:26:02 [log_collector] {"stage_name":"log_collector","events_processed":25216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5043.2,"last_update":"2026-03-22T10:25:57.369093314Z"} +2026/03/22 10:26:02 [metric_collector] {"stage_name":"metric_collector","events_processed":15869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3173.8,"last_update":"2026-03-22T10:25:57.36924228Z"} +2026/03/22 10:26:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6350,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:25:57.380556494Z"} +2026/03/22 10:26:02 ───────────────────────────────────────────────── +Saved state: 13 clusters, 25217 messages, reason: none +2026/03/22 10:26:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:26:07 [log_collector] {"stage_name":"log_collector","events_processed":25216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5043.2,"last_update":"2026-03-22T10:26:02.368716921Z"} +2026/03/22 10:26:07 [metric_collector] {"stage_name":"metric_collector","events_processed":15874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3174.8,"last_update":"2026-03-22T10:26:02.369145271Z"} +2026/03/22 10:26:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:26:02.37691718Z"} +2026/03/22 10:26:07 [detection_layer] {"stage_name":"detection_layer","events_processed":529,"events_dropped":0,"avg_latency_ms":20.06748424563032,"throughput_eps":0,"last_update":"2026-03-22T10:26:02.479131801Z"} +2026/03/22 10:26:07 [transform_engine] {"stage_name":"transform_engine","events_processed":529,"events_dropped":0,"avg_latency_ms":738.6291992364106,"throughput_eps":0,"last_update":"2026-03-22T10:26:02.479150396Z"} +2026/03/22 10:26:07 ───────────────────────────────────────────────── +2026/03/22 10:26:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:26:12 [metric_collector] {"stage_name":"metric_collector","events_processed":15879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3175.8,"last_update":"2026-03-22T10:26:07.368136529Z"} +2026/03/22 10:26:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:26:07.374589301Z"} +2026/03/22 10:26:12 [detection_layer] {"stage_name":"detection_layer","events_processed":529,"events_dropped":0,"avg_latency_ms":20.06748424563032,"throughput_eps":0,"last_update":"2026-03-22T10:26:07.479828416Z"} +2026/03/22 10:26:12 [transform_engine] {"stage_name":"transform_engine","events_processed":529,"events_dropped":0,"avg_latency_ms":738.6291992364106,"throughput_eps":0,"last_update":"2026-03-22T10:26:07.479795784Z"} +2026/03/22 10:26:12 [log_collector] {"stage_name":"log_collector","events_processed":25221,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5044.2,"last_update":"2026-03-22T10:26:07.367950833Z"} +2026/03/22 10:26:12 ───────────────────────────────────────────────── +2026/03/22 10:26:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:26:17 [metric_collector] {"stage_name":"metric_collector","events_processed":15884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3176.8,"last_update":"2026-03-22T10:26:12.368809292Z"} +2026/03/22 10:26:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:26:12.377732025Z"} +2026/03/22 10:26:17 [detection_layer] {"stage_name":"detection_layer","events_processed":529,"events_dropped":0,"avg_latency_ms":20.06748424563032,"throughput_eps":0,"last_update":"2026-03-22T10:26:12.479929574Z"} +2026/03/22 10:26:17 [transform_engine] {"stage_name":"transform_engine","events_processed":529,"events_dropped":0,"avg_latency_ms":738.6291992364106,"throughput_eps":0,"last_update":"2026-03-22T10:26:12.478856629Z"} +2026/03/22 10:26:17 [log_collector] {"stage_name":"log_collector","events_processed":25221,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5044.2,"last_update":"2026-03-22T10:26:12.368471656Z"} +2026/03/22 10:26:17 ───────────────────────────────────────────────── +2026/03/22 10:26:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:26:22 [transform_engine] {"stage_name":"transform_engine","events_processed":529,"events_dropped":0,"avg_latency_ms":738.6291992364106,"throughput_eps":0,"last_update":"2026-03-22T10:26:17.4792255Z"} +2026/03/22 10:26:22 [log_collector] {"stage_name":"log_collector","events_processed":25221,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5044.2,"last_update":"2026-03-22T10:26:17.36895737Z"} +2026/03/22 10:26:22 [metric_collector] {"stage_name":"metric_collector","events_processed":15889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3177.8,"last_update":"2026-03-22T10:26:17.368872588Z"} +2026/03/22 10:26:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:26:17.3787607Z"} +2026/03/22 10:26:22 [detection_layer] {"stage_name":"detection_layer","events_processed":529,"events_dropped":0,"avg_latency_ms":20.06748424563032,"throughput_eps":0,"last_update":"2026-03-22T10:26:17.479179812Z"} +2026/03/22 10:26:22 ───────────────────────────────────────────────── +2026/03/22 10:26:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:26:27 [log_collector] {"stage_name":"log_collector","events_processed":25221,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5044.2,"last_update":"2026-03-22T10:26:27.368265325Z"} +2026/03/22 10:26:27 [metric_collector] {"stage_name":"metric_collector","events_processed":15894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3178.8,"last_update":"2026-03-22T10:26:22.368894108Z"} +2026/03/22 10:26:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6360,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:26:22.375306191Z"} +2026/03/22 10:26:27 [detection_layer] {"stage_name":"detection_layer","events_processed":529,"events_dropped":0,"avg_latency_ms":20.06748424563032,"throughput_eps":0,"last_update":"2026-03-22T10:26:22.479506506Z"} +2026/03/22 10:26:27 [transform_engine] {"stage_name":"transform_engine","events_processed":529,"events_dropped":0,"avg_latency_ms":738.6291992364106,"throughput_eps":0,"last_update":"2026-03-22T10:26:22.479474946Z"} +2026/03/22 10:26:27 ───────────────────────────────────────────────── +2026/03/22 10:26:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:26:32 [log_collector] {"stage_name":"log_collector","events_processed":25221,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5044.2,"last_update":"2026-03-22T10:26:27.368265325Z"} +2026/03/22 10:26:32 [metric_collector] {"stage_name":"metric_collector","events_processed":15899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3179.8,"last_update":"2026-03-22T10:26:27.368606068Z"} +2026/03/22 10:26:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:26:27.379936252Z"} +2026/03/22 10:26:32 [detection_layer] {"stage_name":"detection_layer","events_processed":529,"events_dropped":0,"avg_latency_ms":20.06748424563032,"throughput_eps":0,"last_update":"2026-03-22T10:26:27.479161245Z"} +2026/03/22 10:26:32 [transform_engine] {"stage_name":"transform_engine","events_processed":530,"events_dropped":0,"avg_latency_ms":769.9654871891285,"throughput_eps":0,"last_update":"2026-03-22T10:26:28.374439123Z"} +2026/03/22 10:26:32 ───────────────────────────────────────────────── +2026/03/22 10:26:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:26:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:26:32.375049615Z"} +2026/03/22 10:26:37 [detection_layer] {"stage_name":"detection_layer","events_processed":530,"events_dropped":0,"avg_latency_ms":19.37102399650426,"throughput_eps":0,"last_update":"2026-03-22T10:26:32.479287441Z"} +2026/03/22 10:26:37 [transform_engine] {"stage_name":"transform_engine","events_processed":530,"events_dropped":0,"avg_latency_ms":769.9654871891285,"throughput_eps":0,"last_update":"2026-03-22T10:26:32.479264848Z"} +2026/03/22 10:26:37 [log_collector] {"stage_name":"log_collector","events_processed":25221,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5044.2,"last_update":"2026-03-22T10:26:32.368559372Z"} +2026/03/22 10:26:37 [metric_collector] {"stage_name":"metric_collector","events_processed":15904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3180.8,"last_update":"2026-03-22T10:26:32.368592866Z"} +2026/03/22 10:26:37 ───────────────────────────────────────────────── +2026/03/22 10:26:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:26:42 [log_collector] {"stage_name":"log_collector","events_processed":25221,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5044.2,"last_update":"2026-03-22T10:26:37.36872148Z"} +2026/03/22 10:26:42 [metric_collector] {"stage_name":"metric_collector","events_processed":15909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3181.8,"last_update":"2026-03-22T10:26:37.368794971Z"} +2026/03/22 10:26:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:26:37.375526206Z"} +2026/03/22 10:26:42 [detection_layer] {"stage_name":"detection_layer","events_processed":530,"events_dropped":0,"avg_latency_ms":19.37102399650426,"throughput_eps":0,"last_update":"2026-03-22T10:26:37.479999744Z"} +2026/03/22 10:26:42 [transform_engine] {"stage_name":"transform_engine","events_processed":530,"events_dropped":0,"avg_latency_ms":769.9654871891285,"throughput_eps":0,"last_update":"2026-03-22T10:26:37.47892262Z"} +2026/03/22 10:26:42 ───────────────────────────────────────────────── +2026/03/22 10:26:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:26:47 [log_collector] {"stage_name":"log_collector","events_processed":25221,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5044.2,"last_update":"2026-03-22T10:26:42.368814149Z"} +2026/03/22 10:26:47 [metric_collector] {"stage_name":"metric_collector","events_processed":15914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3182.8,"last_update":"2026-03-22T10:26:42.369037677Z"} +2026/03/22 10:26:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:26:42.379319954Z"} +2026/03/22 10:26:47 [detection_layer] {"stage_name":"detection_layer","events_processed":530,"events_dropped":0,"avg_latency_ms":19.37102399650426,"throughput_eps":0,"last_update":"2026-03-22T10:26:42.479512842Z"} +2026/03/22 10:26:47 [transform_engine] {"stage_name":"transform_engine","events_processed":530,"events_dropped":0,"avg_latency_ms":769.9654871891285,"throughput_eps":0,"last_update":"2026-03-22T10:26:42.479529823Z"} +2026/03/22 10:26:47 ───────────────────────────────────────────────── +2026/03/22 10:26:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:26:52 [detection_layer] {"stage_name":"detection_layer","events_processed":530,"events_dropped":0,"avg_latency_ms":19.37102399650426,"throughput_eps":0,"last_update":"2026-03-22T10:26:47.47982303Z"} +2026/03/22 10:26:52 [transform_engine] {"stage_name":"transform_engine","events_processed":530,"events_dropped":0,"avg_latency_ms":769.9654871891285,"throughput_eps":0,"last_update":"2026-03-22T10:26:47.479795507Z"} +2026/03/22 10:26:52 [log_collector] {"stage_name":"log_collector","events_processed":25230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5046,"last_update":"2026-03-22T10:26:47.368013188Z"} +2026/03/22 10:26:52 [metric_collector] {"stage_name":"metric_collector","events_processed":15919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3183.8,"last_update":"2026-03-22T10:26:47.368444093Z"} +2026/03/22 10:26:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:26:47.37660132Z"} +2026/03/22 10:26:52 ───────────────────────────────────────────────── +2026/03/22 10:26:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:26:57 [log_collector] {"stage_name":"log_collector","events_processed":25422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5084.4,"last_update":"2026-03-22T10:26:57.367995169Z"} +2026/03/22 10:26:57 [metric_collector] {"stage_name":"metric_collector","events_processed":15924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3184.8,"last_update":"2026-03-22T10:26:52.368631519Z"} +2026/03/22 10:26:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:26:52.376617628Z"} +2026/03/22 10:26:57 [detection_layer] {"stage_name":"detection_layer","events_processed":530,"events_dropped":0,"avg_latency_ms":19.37102399650426,"throughput_eps":0,"last_update":"2026-03-22T10:26:52.47988811Z"} +2026/03/22 10:26:57 [transform_engine] {"stage_name":"transform_engine","events_processed":530,"events_dropped":0,"avg_latency_ms":769.9654871891285,"throughput_eps":0,"last_update":"2026-03-22T10:26:52.47986198Z"} +2026/03/22 10:26:57 ───────────────────────────────────────────────── +2026/03/22 10:27:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:27:02 [detection_layer] {"stage_name":"detection_layer","events_processed":530,"events_dropped":0,"avg_latency_ms":19.37102399650426,"throughput_eps":0,"last_update":"2026-03-22T10:26:57.480430138Z"} +2026/03/22 10:27:02 [transform_engine] {"stage_name":"transform_engine","events_processed":531,"events_dropped":0,"avg_latency_ms":637.7293371513028,"throughput_eps":0,"last_update":"2026-03-22T10:26:57.589249159Z"} +2026/03/22 10:27:02 [log_collector] {"stage_name":"log_collector","events_processed":25422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5084.4,"last_update":"2026-03-22T10:26:57.367995169Z"} +2026/03/22 10:27:02 [metric_collector] {"stage_name":"metric_collector","events_processed":15934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3186.8,"last_update":"2026-03-22T10:27:02.369163543Z"} +2026/03/22 10:27:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:26:57.374256775Z"} +2026/03/22 10:27:02 ───────────────────────────────────────────────── +2026/03/22 10:27:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:27:07 [metric_collector] {"stage_name":"metric_collector","events_processed":15934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3186.8,"last_update":"2026-03-22T10:27:02.369163543Z"} +2026/03/22 10:27:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:27:02.378784644Z"} +2026/03/22 10:27:07 [detection_layer] {"stage_name":"detection_layer","events_processed":531,"events_dropped":0,"avg_latency_ms":18.457368397203407,"throughput_eps":0,"last_update":"2026-03-22T10:27:02.479036293Z"} +2026/03/22 10:27:07 [transform_engine] {"stage_name":"transform_engine","events_processed":531,"events_dropped":0,"avg_latency_ms":637.7293371513028,"throughput_eps":0,"last_update":"2026-03-22T10:27:02.479073504Z"} +2026/03/22 10:27:07 [log_collector] {"stage_name":"log_collector","events_processed":25586,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5117.2,"last_update":"2026-03-22T10:27:02.369373885Z"} +2026/03/22 10:27:07 ───────────────────────────────────────────────── +Saved state: 13 clusters, 25587 messages, reason: none +2026/03/22 10:27:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:27:12 [log_collector] {"stage_name":"log_collector","events_processed":25586,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5117.2,"last_update":"2026-03-22T10:27:07.367961708Z"} +2026/03/22 10:27:12 [metric_collector] {"stage_name":"metric_collector","events_processed":15939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3187.8,"last_update":"2026-03-22T10:27:07.36833305Z"} +2026/03/22 10:27:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:27:07.377171501Z"} +2026/03/22 10:27:12 [detection_layer] {"stage_name":"detection_layer","events_processed":531,"events_dropped":0,"avg_latency_ms":18.457368397203407,"throughput_eps":0,"last_update":"2026-03-22T10:27:07.479380009Z"} +2026/03/22 10:27:12 [transform_engine] {"stage_name":"transform_engine","events_processed":531,"events_dropped":0,"avg_latency_ms":637.7293371513028,"throughput_eps":0,"last_update":"2026-03-22T10:27:07.479411489Z"} +2026/03/22 10:27:12 ───────────────────────────────────────────────── +2026/03/22 10:27:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:27:17 [log_collector] {"stage_name":"log_collector","events_processed":25589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5117.8,"last_update":"2026-03-22T10:27:12.368263859Z"} +2026/03/22 10:27:17 [metric_collector] {"stage_name":"metric_collector","events_processed":15944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3188.8,"last_update":"2026-03-22T10:27:12.368251365Z"} +2026/03/22 10:27:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6380,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:27:12.37955028Z"} +2026/03/22 10:27:17 [detection_layer] {"stage_name":"detection_layer","events_processed":531,"events_dropped":0,"avg_latency_ms":18.457368397203407,"throughput_eps":0,"last_update":"2026-03-22T10:27:12.479765589Z"} +2026/03/22 10:27:17 [transform_engine] {"stage_name":"transform_engine","events_processed":531,"events_dropped":0,"avg_latency_ms":637.7293371513028,"throughput_eps":0,"last_update":"2026-03-22T10:27:12.479745501Z"} +2026/03/22 10:27:17 ───────────────────────────────────────────────── +2026/03/22 10:27:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:27:22 [log_collector] {"stage_name":"log_collector","events_processed":25589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5117.8,"last_update":"2026-03-22T10:27:17.368270065Z"} +2026/03/22 10:27:22 [metric_collector] {"stage_name":"metric_collector","events_processed":15949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3189.8,"last_update":"2026-03-22T10:27:17.368176005Z"} +2026/03/22 10:27:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:27:17.380270063Z"} +2026/03/22 10:27:22 [detection_layer] {"stage_name":"detection_layer","events_processed":531,"events_dropped":0,"avg_latency_ms":18.457368397203407,"throughput_eps":0,"last_update":"2026-03-22T10:27:17.479506206Z"} +2026/03/22 10:27:22 [transform_engine] {"stage_name":"transform_engine","events_processed":531,"events_dropped":0,"avg_latency_ms":637.7293371513028,"throughput_eps":0,"last_update":"2026-03-22T10:27:17.479520133Z"} +2026/03/22 10:27:22 ───────────────────────────────────────────────── +2026/03/22 10:27:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:27:27 [log_collector] {"stage_name":"log_collector","events_processed":25599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5119.8,"last_update":"2026-03-22T10:27:22.368641694Z"} +2026/03/22 10:27:27 [metric_collector] {"stage_name":"metric_collector","events_processed":15954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3190.8,"last_update":"2026-03-22T10:27:22.369023435Z"} +2026/03/22 10:27:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:27:22.374722003Z"} +2026/03/22 10:27:27 [detection_layer] {"stage_name":"detection_layer","events_processed":531,"events_dropped":0,"avg_latency_ms":18.457368397203407,"throughput_eps":0,"last_update":"2026-03-22T10:27:22.47898211Z"} +2026/03/22 10:27:27 [transform_engine] {"stage_name":"transform_engine","events_processed":531,"events_dropped":0,"avg_latency_ms":637.7293371513028,"throughput_eps":0,"last_update":"2026-03-22T10:27:22.478857671Z"} +2026/03/22 10:27:27 ───────────────────────────────────────────────── +2026/03/22 10:27:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:27:32 [detection_layer] {"stage_name":"detection_layer","events_processed":531,"events_dropped":0,"avg_latency_ms":18.457368397203407,"throughput_eps":0,"last_update":"2026-03-22T10:27:27.479158719Z"} +2026/03/22 10:27:32 [transform_engine] {"stage_name":"transform_engine","events_processed":532,"events_dropped":0,"avg_latency_ms":534.5758935210423,"throughput_eps":0,"last_update":"2026-03-22T10:27:27.601236118Z"} +2026/03/22 10:27:32 [log_collector] {"stage_name":"log_collector","events_processed":25600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5120,"last_update":"2026-03-22T10:27:27.368706889Z"} +2026/03/22 10:27:32 [metric_collector] {"stage_name":"metric_collector","events_processed":15959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3191.8,"last_update":"2026-03-22T10:27:27.368867728Z"} +2026/03/22 10:27:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:27:27.37796248Z"} +2026/03/22 10:27:32 ───────────────────────────────────────────────── +2026/03/22 10:27:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:27:37 [transform_engine] {"stage_name":"transform_engine","events_processed":532,"events_dropped":0,"avg_latency_ms":534.5758935210423,"throughput_eps":0,"last_update":"2026-03-22T10:27:32.478980783Z"} +2026/03/22 10:27:37 [log_collector] {"stage_name":"log_collector","events_processed":25616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5123.2,"last_update":"2026-03-22T10:27:37.368326668Z"} +2026/03/22 10:27:37 [metric_collector] {"stage_name":"metric_collector","events_processed":15964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3192.8,"last_update":"2026-03-22T10:27:32.36941435Z"} +2026/03/22 10:27:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6388,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:27:32.37877886Z"} +2026/03/22 10:27:37 [detection_layer] {"stage_name":"detection_layer","events_processed":532,"events_dropped":0,"avg_latency_ms":18.879612917762728,"throughput_eps":0,"last_update":"2026-03-22T10:27:32.479072499Z"} +2026/03/22 10:27:37 ───────────────────────────────────────────────── +2026/03/22 10:27:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:27:42 [transform_engine] {"stage_name":"transform_engine","events_processed":532,"events_dropped":0,"avg_latency_ms":534.5758935210423,"throughput_eps":0,"last_update":"2026-03-22T10:27:37.479723086Z"} +2026/03/22 10:27:42 [log_collector] {"stage_name":"log_collector","events_processed":25616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5123.2,"last_update":"2026-03-22T10:27:37.368326668Z"} +2026/03/22 10:27:42 [metric_collector] {"stage_name":"metric_collector","events_processed":15969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3193.8,"last_update":"2026-03-22T10:27:37.368744038Z"} +2026/03/22 10:27:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6390,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:27:37.377407875Z"} +2026/03/22 10:27:42 [detection_layer] {"stage_name":"detection_layer","events_processed":532,"events_dropped":0,"avg_latency_ms":18.879612917762728,"throughput_eps":0,"last_update":"2026-03-22T10:27:37.47982972Z"} +2026/03/22 10:27:42 ───────────────────────────────────────────────── +2026/03/22 10:27:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:27:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:27:42.378747092Z"} +2026/03/22 10:27:47 [detection_layer] {"stage_name":"detection_layer","events_processed":532,"events_dropped":0,"avg_latency_ms":18.879612917762728,"throughput_eps":0,"last_update":"2026-03-22T10:27:42.480018935Z"} +2026/03/22 10:27:47 [transform_engine] {"stage_name":"transform_engine","events_processed":532,"events_dropped":0,"avg_latency_ms":534.5758935210423,"throughput_eps":0,"last_update":"2026-03-22T10:27:42.478880594Z"} +2026/03/22 10:27:47 [log_collector] {"stage_name":"log_collector","events_processed":25616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5123.2,"last_update":"2026-03-22T10:27:42.368271534Z"} +2026/03/22 10:27:47 [metric_collector] {"stage_name":"metric_collector","events_processed":15974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3194.8,"last_update":"2026-03-22T10:27:42.368928172Z"} +2026/03/22 10:27:47 ───────────────────────────────────────────────── +2026/03/22 10:27:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:27:52 [log_collector] {"stage_name":"log_collector","events_processed":25616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5123.2,"last_update":"2026-03-22T10:27:47.368632452Z"} +2026/03/22 10:27:52 [metric_collector] {"stage_name":"metric_collector","events_processed":15979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3195.8,"last_update":"2026-03-22T10:27:47.368743716Z"} +2026/03/22 10:27:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:27:47.37932246Z"} +2026/03/22 10:27:52 [detection_layer] {"stage_name":"detection_layer","events_processed":532,"events_dropped":0,"avg_latency_ms":18.879612917762728,"throughput_eps":0,"last_update":"2026-03-22T10:27:47.479566474Z"} +2026/03/22 10:27:52 [transform_engine] {"stage_name":"transform_engine","events_processed":532,"events_dropped":0,"avg_latency_ms":534.5758935210423,"throughput_eps":0,"last_update":"2026-03-22T10:27:47.479527369Z"} +2026/03/22 10:27:52 ───────────────────────────────────────────────── +2026/03/22 10:27:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:27:57 [detection_layer] {"stage_name":"detection_layer","events_processed":532,"events_dropped":0,"avg_latency_ms":18.879612917762728,"throughput_eps":0,"last_update":"2026-03-22T10:27:52.479476232Z"} +2026/03/22 10:27:57 [transform_engine] {"stage_name":"transform_engine","events_processed":532,"events_dropped":0,"avg_latency_ms":534.5758935210423,"throughput_eps":0,"last_update":"2026-03-22T10:27:52.479512461Z"} +2026/03/22 10:27:57 [log_collector] {"stage_name":"log_collector","events_processed":25616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5123.2,"last_update":"2026-03-22T10:27:52.367976646Z"} +2026/03/22 10:27:57 [metric_collector] {"stage_name":"metric_collector","events_processed":15984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3196.8,"last_update":"2026-03-22T10:27:52.368904283Z"} +2026/03/22 10:27:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:27:52.377258146Z"} +2026/03/22 10:27:57 ───────────────────────────────────────────────── +2026/03/22 10:28:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:28:02 [metric_collector] {"stage_name":"metric_collector","events_processed":15989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3197.8,"last_update":"2026-03-22T10:27:57.368769638Z"} +2026/03/22 10:28:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:27:57.378328549Z"} +2026/03/22 10:28:02 [detection_layer] {"stage_name":"detection_layer","events_processed":532,"events_dropped":0,"avg_latency_ms":18.879612917762728,"throughput_eps":0,"last_update":"2026-03-22T10:27:57.479588238Z"} +2026/03/22 10:28:02 [transform_engine] {"stage_name":"transform_engine","events_processed":533,"events_dropped":0,"avg_latency_ms":451.1816070168339,"throughput_eps":0,"last_update":"2026-03-22T10:27:57.597147612Z"} +2026/03/22 10:28:02 [log_collector] {"stage_name":"log_collector","events_processed":25616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5123.2,"last_update":"2026-03-22T10:27:57.368007137Z"} +2026/03/22 10:28:02 ───────────────────────────────────────────────── +2026/03/22 10:28:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:28:07 [metric_collector] {"stage_name":"metric_collector","events_processed":15994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3198.8,"last_update":"2026-03-22T10:28:02.369307476Z"} +2026/03/22 10:28:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6400,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:28:02.377390831Z"} +2026/03/22 10:28:07 [detection_layer] {"stage_name":"detection_layer","events_processed":533,"events_dropped":0,"avg_latency_ms":19.499565534210184,"throughput_eps":0,"last_update":"2026-03-22T10:28:02.479751459Z"} +2026/03/22 10:28:07 [transform_engine] {"stage_name":"transform_engine","events_processed":533,"events_dropped":0,"avg_latency_ms":451.1816070168339,"throughput_eps":0,"last_update":"2026-03-22T10:28:02.479808057Z"} +2026/03/22 10:28:07 [log_collector] {"stage_name":"log_collector","events_processed":25616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5123.2,"last_update":"2026-03-22T10:28:02.368805734Z"} +2026/03/22 10:28:07 ───────────────────────────────────────────────── +2026/03/22 10:28:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:28:12 [metric_collector] {"stage_name":"metric_collector","events_processed":15999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3199.8,"last_update":"2026-03-22T10:28:07.368927581Z"} +2026/03/22 10:28:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6402,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:28:07.377703393Z"} +2026/03/22 10:28:12 [detection_layer] {"stage_name":"detection_layer","events_processed":533,"events_dropped":0,"avg_latency_ms":19.499565534210184,"throughput_eps":0,"last_update":"2026-03-22T10:28:07.47897284Z"} +2026/03/22 10:28:12 [transform_engine] {"stage_name":"transform_engine","events_processed":533,"events_dropped":0,"avg_latency_ms":451.1816070168339,"throughput_eps":0,"last_update":"2026-03-22T10:28:07.478911843Z"} +2026/03/22 10:28:12 [log_collector] {"stage_name":"log_collector","events_processed":25616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5123.2,"last_update":"2026-03-22T10:28:12.368130802Z"} +2026/03/22 10:28:12 ───────────────────────────────────────────────── +2026/03/22 10:28:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:28:17 [metric_collector] {"stage_name":"metric_collector","events_processed":16004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3200.8,"last_update":"2026-03-22T10:28:12.368821355Z"} +2026/03/22 10:28:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:28:12.37719148Z"} +2026/03/22 10:28:17 [detection_layer] {"stage_name":"detection_layer","events_processed":533,"events_dropped":0,"avg_latency_ms":19.499565534210184,"throughput_eps":0,"last_update":"2026-03-22T10:28:12.479629746Z"} +2026/03/22 10:28:17 [transform_engine] {"stage_name":"transform_engine","events_processed":533,"events_dropped":0,"avg_latency_ms":451.1816070168339,"throughput_eps":0,"last_update":"2026-03-22T10:28:12.479552557Z"} +2026/03/22 10:28:17 [log_collector] {"stage_name":"log_collector","events_processed":25616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5123.2,"last_update":"2026-03-22T10:28:12.368130802Z"} +2026/03/22 10:28:17 ───────────────────────────────────────────────── +2026/03/22 10:28:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:28:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:28:17.377094786Z"} +2026/03/22 10:28:22 [detection_layer] {"stage_name":"detection_layer","events_processed":533,"events_dropped":0,"avg_latency_ms":19.499565534210184,"throughput_eps":0,"last_update":"2026-03-22T10:28:17.479311428Z"} +2026/03/22 10:28:22 [transform_engine] {"stage_name":"transform_engine","events_processed":533,"events_dropped":0,"avg_latency_ms":451.1816070168339,"throughput_eps":0,"last_update":"2026-03-22T10:28:17.479425527Z"} +2026/03/22 10:28:22 [log_collector] {"stage_name":"log_collector","events_processed":25616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5123.2,"last_update":"2026-03-22T10:28:17.368019211Z"} +2026/03/22 10:28:22 [metric_collector] {"stage_name":"metric_collector","events_processed":16009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3201.8,"last_update":"2026-03-22T10:28:17.368868537Z"} +2026/03/22 10:28:22 ───────────────────────────────────────────────── +2026/03/22 10:28:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:28:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6408,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:28:22.376858039Z"} +2026/03/22 10:28:27 [detection_layer] {"stage_name":"detection_layer","events_processed":533,"events_dropped":0,"avg_latency_ms":19.499565534210184,"throughput_eps":0,"last_update":"2026-03-22T10:28:22.479326382Z"} +2026/03/22 10:28:27 [transform_engine] {"stage_name":"transform_engine","events_processed":533,"events_dropped":0,"avg_latency_ms":451.1816070168339,"throughput_eps":0,"last_update":"2026-03-22T10:28:22.479224157Z"} +2026/03/22 10:28:27 [log_collector] {"stage_name":"log_collector","events_processed":25616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5123.2,"last_update":"2026-03-22T10:28:22.368309152Z"} +2026/03/22 10:28:27 [metric_collector] {"stage_name":"metric_collector","events_processed":16014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3202.8,"last_update":"2026-03-22T10:28:22.368783861Z"} +2026/03/22 10:28:27 ───────────────────────────────────────────────── +2026/03/22 10:28:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:28:32 [transform_engine] {"stage_name":"transform_engine","events_processed":534,"events_dropped":0,"avg_latency_ms":377.98723221346717,"throughput_eps":0,"last_update":"2026-03-22T10:28:27.564538721Z"} +2026/03/22 10:28:32 [log_collector] {"stage_name":"log_collector","events_processed":25616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5123.2,"last_update":"2026-03-22T10:28:27.368400197Z"} +2026/03/22 10:28:32 [metric_collector] {"stage_name":"metric_collector","events_processed":16019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3203.8,"last_update":"2026-03-22T10:28:27.368940242Z"} +2026/03/22 10:28:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:28:27.378962912Z"} +2026/03/22 10:28:32 [detection_layer] {"stage_name":"detection_layer","events_processed":533,"events_dropped":0,"avg_latency_ms":19.499565534210184,"throughput_eps":0,"last_update":"2026-03-22T10:28:27.47942889Z"} +2026/03/22 10:28:32 ───────────────────────────────────────────────── +2026/03/22 10:28:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:28:37 [detection_layer] {"stage_name":"detection_layer","events_processed":534,"events_dropped":0,"avg_latency_ms":20.315765027368148,"throughput_eps":0,"last_update":"2026-03-22T10:28:32.479338773Z"} +2026/03/22 10:28:37 [transform_engine] {"stage_name":"transform_engine","events_processed":534,"events_dropped":0,"avg_latency_ms":377.98723221346717,"throughput_eps":0,"last_update":"2026-03-22T10:28:32.479379681Z"} +2026/03/22 10:28:37 [log_collector] {"stage_name":"log_collector","events_processed":25616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5123.2,"last_update":"2026-03-22T10:28:37.367988735Z"} +2026/03/22 10:28:37 [metric_collector] {"stage_name":"metric_collector","events_processed":16024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3204.8,"last_update":"2026-03-22T10:28:32.369154028Z"} +2026/03/22 10:28:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:28:32.379127714Z"} +2026/03/22 10:28:37 ───────────────────────────────────────────────── +Saved state: 13 clusters, 25617 messages, reason: none +2026/03/22 10:28:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:28:42 [transform_engine] {"stage_name":"transform_engine","events_processed":534,"events_dropped":0,"avg_latency_ms":377.98723221346717,"throughput_eps":0,"last_update":"2026-03-22T10:28:37.478882449Z"} +2026/03/22 10:28:42 [log_collector] {"stage_name":"log_collector","events_processed":25616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5123.2,"last_update":"2026-03-22T10:28:37.367988735Z"} +2026/03/22 10:28:42 [metric_collector] {"stage_name":"metric_collector","events_processed":16029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3205.8,"last_update":"2026-03-22T10:28:37.36861787Z"} +2026/03/22 10:28:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:28:37.378703772Z"} +2026/03/22 10:28:42 [detection_layer] {"stage_name":"detection_layer","events_processed":534,"events_dropped":0,"avg_latency_ms":20.315765027368148,"throughput_eps":0,"last_update":"2026-03-22T10:28:37.478959206Z"} +2026/03/22 10:28:42 ───────────────────────────────────────────────── +2026/03/22 10:28:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:28:47 [log_collector] {"stage_name":"log_collector","events_processed":25630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5126,"last_update":"2026-03-22T10:28:47.368483337Z"} +2026/03/22 10:28:47 [metric_collector] {"stage_name":"metric_collector","events_processed":16034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3206.8,"last_update":"2026-03-22T10:28:42.368184495Z"} +2026/03/22 10:28:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:28:42.378282761Z"} +2026/03/22 10:28:47 [detection_layer] {"stage_name":"detection_layer","events_processed":534,"events_dropped":0,"avg_latency_ms":20.315765027368148,"throughput_eps":0,"last_update":"2026-03-22T10:28:42.479495047Z"} +2026/03/22 10:28:47 [transform_engine] {"stage_name":"transform_engine","events_processed":534,"events_dropped":0,"avg_latency_ms":377.98723221346717,"throughput_eps":0,"last_update":"2026-03-22T10:28:42.479506459Z"} +2026/03/22 10:28:47 ───────────────────────────────────────────────── +2026/03/22 10:28:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:28:52 [log_collector] {"stage_name":"log_collector","events_processed":25630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5126,"last_update":"2026-03-22T10:28:47.368483337Z"} +2026/03/22 10:28:52 [metric_collector] {"stage_name":"metric_collector","events_processed":16039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3207.8,"last_update":"2026-03-22T10:28:47.369094118Z"} +2026/03/22 10:28:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:28:47.378230349Z"} +2026/03/22 10:28:52 [detection_layer] {"stage_name":"detection_layer","events_processed":534,"events_dropped":0,"avg_latency_ms":20.315765027368148,"throughput_eps":0,"last_update":"2026-03-22T10:28:47.479495176Z"} +2026/03/22 10:28:52 [transform_engine] {"stage_name":"transform_engine","events_processed":534,"events_dropped":0,"avg_latency_ms":377.98723221346717,"throughput_eps":0,"last_update":"2026-03-22T10:28:47.479507731Z"} +2026/03/22 10:28:52 ───────────────────────────────────────────────── +2026/03/22 10:28:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:28:57 [log_collector] {"stage_name":"log_collector","events_processed":25630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5126,"last_update":"2026-03-22T10:28:52.368025804Z"} +2026/03/22 10:28:57 [metric_collector] {"stage_name":"metric_collector","events_processed":16044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3208.8,"last_update":"2026-03-22T10:28:52.368464755Z"} +2026/03/22 10:28:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6420,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:28:52.378378496Z"} +2026/03/22 10:28:57 [detection_layer] {"stage_name":"detection_layer","events_processed":534,"events_dropped":0,"avg_latency_ms":20.315765027368148,"throughput_eps":0,"last_update":"2026-03-22T10:28:52.47956806Z"} +2026/03/22 10:28:57 [transform_engine] {"stage_name":"transform_engine","events_processed":534,"events_dropped":0,"avg_latency_ms":377.98723221346717,"throughput_eps":0,"last_update":"2026-03-22T10:28:52.479581284Z"} +2026/03/22 10:28:57 ───────────────────────────────────────────────── +2026/03/22 10:29:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:29:02 [detection_layer] {"stage_name":"detection_layer","events_processed":534,"events_dropped":0,"avg_latency_ms":20.315765027368148,"throughput_eps":0,"last_update":"2026-03-22T10:28:57.479807857Z"} +2026/03/22 10:29:02 [transform_engine] {"stage_name":"transform_engine","events_processed":535,"events_dropped":0,"avg_latency_ms":325.3833473707738,"throughput_eps":0,"last_update":"2026-03-22T10:28:57.59479436Z"} +2026/03/22 10:29:02 [log_collector] {"stage_name":"log_collector","events_processed":25630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5126,"last_update":"2026-03-22T10:28:57.368031112Z"} +2026/03/22 10:29:02 [metric_collector] {"stage_name":"metric_collector","events_processed":16049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3209.8,"last_update":"2026-03-22T10:28:57.368318824Z"} +2026/03/22 10:29:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:28:57.378467785Z"} +2026/03/22 10:29:02 ───────────────────────────────────────────────── +2026/03/22 10:29:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:29:07 [log_collector] {"stage_name":"log_collector","events_processed":25630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5126,"last_update":"2026-03-22T10:29:02.368573115Z"} +2026/03/22 10:29:07 [metric_collector] {"stage_name":"metric_collector","events_processed":16054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3210.8,"last_update":"2026-03-22T10:29:02.368997879Z"} +2026/03/22 10:29:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:29:02.378973269Z"} +2026/03/22 10:29:07 [detection_layer] {"stage_name":"detection_layer","events_processed":535,"events_dropped":0,"avg_latency_ms":20.41029862189452,"throughput_eps":0,"last_update":"2026-03-22T10:29:02.479259491Z"} +2026/03/22 10:29:07 [transform_engine] {"stage_name":"transform_engine","events_processed":535,"events_dropped":0,"avg_latency_ms":325.3833473707738,"throughput_eps":0,"last_update":"2026-03-22T10:29:02.47923802Z"} +2026/03/22 10:29:07 ───────────────────────────────────────────────── +2026/03/22 10:29:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:29:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:29:07.377274942Z"} +2026/03/22 10:29:12 [detection_layer] {"stage_name":"detection_layer","events_processed":535,"events_dropped":0,"avg_latency_ms":20.41029862189452,"throughput_eps":0,"last_update":"2026-03-22T10:29:07.479659083Z"} +2026/03/22 10:29:12 [transform_engine] {"stage_name":"transform_engine","events_processed":535,"events_dropped":0,"avg_latency_ms":325.3833473707738,"throughput_eps":0,"last_update":"2026-03-22T10:29:07.479724559Z"} +2026/03/22 10:29:12 [log_collector] {"stage_name":"log_collector","events_processed":25630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5126,"last_update":"2026-03-22T10:29:07.368122109Z"} +2026/03/22 10:29:12 [metric_collector] {"stage_name":"metric_collector","events_processed":16059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3211.8,"last_update":"2026-03-22T10:29:07.368489162Z"} +2026/03/22 10:29:12 ───────────────────────────────────────────────── +2026/03/22 10:29:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:29:17 [log_collector] {"stage_name":"log_collector","events_processed":25630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5126,"last_update":"2026-03-22T10:29:12.368712403Z"} +2026/03/22 10:29:17 [metric_collector] {"stage_name":"metric_collector","events_processed":16064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3212.8,"last_update":"2026-03-22T10:29:12.369796079Z"} +2026/03/22 10:29:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:29:12.379014628Z"} +2026/03/22 10:29:17 [detection_layer] {"stage_name":"detection_layer","events_processed":535,"events_dropped":0,"avg_latency_ms":20.41029862189452,"throughput_eps":0,"last_update":"2026-03-22T10:29:12.479391343Z"} +2026/03/22 10:29:17 [transform_engine] {"stage_name":"transform_engine","events_processed":535,"events_dropped":0,"avg_latency_ms":325.3833473707738,"throughput_eps":0,"last_update":"2026-03-22T10:29:12.479460226Z"} +2026/03/22 10:29:17 ───────────────────────────────────────────────── +2026/03/22 10:29:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:29:22 [log_collector] {"stage_name":"log_collector","events_processed":25630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5126,"last_update":"2026-03-22T10:29:17.368394352Z"} +2026/03/22 10:29:22 [metric_collector] {"stage_name":"metric_collector","events_processed":16069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3213.8,"last_update":"2026-03-22T10:29:17.368890853Z"} +2026/03/22 10:29:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:29:17.37706961Z"} +2026/03/22 10:29:22 [detection_layer] {"stage_name":"detection_layer","events_processed":535,"events_dropped":0,"avg_latency_ms":20.41029862189452,"throughput_eps":0,"last_update":"2026-03-22T10:29:17.479304836Z"} +2026/03/22 10:29:22 [transform_engine] {"stage_name":"transform_engine","events_processed":535,"events_dropped":0,"avg_latency_ms":325.3833473707738,"throughput_eps":0,"last_update":"2026-03-22T10:29:17.479377245Z"} +2026/03/22 10:29:22 ───────────────────────────────────────────────── +2026/03/22 10:29:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:29:27 [log_collector] {"stage_name":"log_collector","events_processed":25630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5126,"last_update":"2026-03-22T10:29:22.36840398Z"} +2026/03/22 10:29:27 [metric_collector] {"stage_name":"metric_collector","events_processed":16073,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3214.6,"last_update":"2026-03-22T10:29:22.368534209Z"} +2026/03/22 10:29:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:29:22.376242325Z"} +2026/03/22 10:29:27 [detection_layer] {"stage_name":"detection_layer","events_processed":535,"events_dropped":0,"avg_latency_ms":20.41029862189452,"throughput_eps":0,"last_update":"2026-03-22T10:29:22.479579683Z"} +2026/03/22 10:29:27 [transform_engine] {"stage_name":"transform_engine","events_processed":535,"events_dropped":0,"avg_latency_ms":325.3833473707738,"throughput_eps":0,"last_update":"2026-03-22T10:29:22.479450916Z"} +2026/03/22 10:29:27 ───────────────────────────────────────────────── +2026/03/22 10:29:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:29:32 [log_collector] {"stage_name":"log_collector","events_processed":25630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5126,"last_update":"2026-03-22T10:29:27.368889357Z"} +2026/03/22 10:29:32 [metric_collector] {"stage_name":"metric_collector","events_processed":16078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3215.6,"last_update":"2026-03-22T10:29:27.368799535Z"} +2026/03/22 10:29:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:29:27.377957218Z"} +2026/03/22 10:29:32 [detection_layer] {"stage_name":"detection_layer","events_processed":535,"events_dropped":0,"avg_latency_ms":20.41029862189452,"throughput_eps":0,"last_update":"2026-03-22T10:29:27.479290536Z"} +2026/03/22 10:29:32 [transform_engine] {"stage_name":"transform_engine","events_processed":536,"events_dropped":0,"avg_latency_ms":274.547748696619,"throughput_eps":0,"last_update":"2026-03-22T10:29:27.550390939Z"} +2026/03/22 10:29:32 ───────────────────────────────────────────────── +2026/03/22 10:29:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:29:37 [log_collector] {"stage_name":"log_collector","events_processed":25630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5126,"last_update":"2026-03-22T10:29:32.368373962Z"} +2026/03/22 10:29:37 [metric_collector] {"stage_name":"metric_collector","events_processed":16084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3216.8,"last_update":"2026-03-22T10:29:32.368724794Z"} +2026/03/22 10:29:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:29:32.378048214Z"} +2026/03/22 10:29:37 [detection_layer] {"stage_name":"detection_layer","events_processed":536,"events_dropped":0,"avg_latency_ms":20.786701897515613,"throughput_eps":0,"last_update":"2026-03-22T10:29:32.479468809Z"} +2026/03/22 10:29:37 [transform_engine] {"stage_name":"transform_engine","events_processed":536,"events_dropped":0,"avg_latency_ms":274.547748696619,"throughput_eps":0,"last_update":"2026-03-22T10:29:32.479543152Z"} +2026/03/22 10:29:37 ───────────────────────────────────────────────── +2026/03/22 10:29:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:29:42 [log_collector] {"stage_name":"log_collector","events_processed":25630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5126,"last_update":"2026-03-22T10:29:37.36843294Z"} +2026/03/22 10:29:42 [metric_collector] {"stage_name":"metric_collector","events_processed":16089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3217.8,"last_update":"2026-03-22T10:29:37.36913232Z"} +2026/03/22 10:29:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:29:37.377576597Z"} +2026/03/22 10:29:42 [detection_layer] {"stage_name":"detection_layer","events_processed":536,"events_dropped":0,"avg_latency_ms":20.786701897515613,"throughput_eps":0,"last_update":"2026-03-22T10:29:37.479772787Z"} +2026/03/22 10:29:42 [transform_engine] {"stage_name":"transform_engine","events_processed":536,"events_dropped":0,"avg_latency_ms":274.547748696619,"throughput_eps":0,"last_update":"2026-03-22T10:29:37.479808045Z"} +2026/03/22 10:29:42 ───────────────────────────────────────────────── +2026/03/22 10:29:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:29:47 [log_collector] {"stage_name":"log_collector","events_processed":25630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5126,"last_update":"2026-03-22T10:29:42.36800811Z"} +2026/03/22 10:29:47 [metric_collector] {"stage_name":"metric_collector","events_processed":16094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3218.8,"last_update":"2026-03-22T10:29:42.368794647Z"} +2026/03/22 10:29:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:29:42.377067474Z"} +2026/03/22 10:29:47 [detection_layer] {"stage_name":"detection_layer","events_processed":536,"events_dropped":0,"avg_latency_ms":20.786701897515613,"throughput_eps":0,"last_update":"2026-03-22T10:29:42.47927668Z"} +2026/03/22 10:29:47 [transform_engine] {"stage_name":"transform_engine","events_processed":536,"events_dropped":0,"avg_latency_ms":274.547748696619,"throughput_eps":0,"last_update":"2026-03-22T10:29:42.479411608Z"} +2026/03/22 10:29:47 ───────────────────────────────────────────────── +Saved state: 13 clusters, 25631 messages, reason: none +2026/03/22 10:29:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:29:52 [metric_collector] {"stage_name":"metric_collector","events_processed":16099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3219.8,"last_update":"2026-03-22T10:29:47.369113075Z"} +2026/03/22 10:29:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6442,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:29:47.378712815Z"} +2026/03/22 10:29:52 [detection_layer] {"stage_name":"detection_layer","events_processed":536,"events_dropped":0,"avg_latency_ms":20.786701897515613,"throughput_eps":0,"last_update":"2026-03-22T10:29:47.480003742Z"} +2026/03/22 10:29:52 [transform_engine] {"stage_name":"transform_engine","events_processed":536,"events_dropped":0,"avg_latency_ms":274.547748696619,"throughput_eps":0,"last_update":"2026-03-22T10:29:47.478874428Z"} +2026/03/22 10:29:52 [log_collector] {"stage_name":"log_collector","events_processed":25630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5126,"last_update":"2026-03-22T10:29:47.368657543Z"} +2026/03/22 10:29:52 ───────────────────────────────────────────────── +2026/03/22 10:29:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:29:57 [detection_layer] {"stage_name":"detection_layer","events_processed":536,"events_dropped":0,"avg_latency_ms":20.786701897515613,"throughput_eps":0,"last_update":"2026-03-22T10:29:52.479519817Z"} +2026/03/22 10:29:57 [transform_engine] {"stage_name":"transform_engine","events_processed":536,"events_dropped":0,"avg_latency_ms":274.547748696619,"throughput_eps":0,"last_update":"2026-03-22T10:29:52.479548332Z"} +2026/03/22 10:29:57 [log_collector] {"stage_name":"log_collector","events_processed":25635,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5127,"last_update":"2026-03-22T10:29:57.368699794Z"} +2026/03/22 10:29:57 [metric_collector] {"stage_name":"metric_collector","events_processed":16104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3220.8,"last_update":"2026-03-22T10:29:52.368133402Z"} +2026/03/22 10:29:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:29:52.381457426Z"} +2026/03/22 10:29:57 ───────────────────────────────────────────────── +2026/03/22 10:30:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:30:02 [detection_layer] {"stage_name":"detection_layer","events_processed":536,"events_dropped":0,"avg_latency_ms":20.786701897515613,"throughput_eps":0,"last_update":"2026-03-22T10:29:57.479990918Z"} +2026/03/22 10:30:02 [transform_engine] {"stage_name":"transform_engine","events_processed":537,"events_dropped":0,"avg_latency_ms":565.3111351572952,"throughput_eps":0,"last_update":"2026-03-22T10:29:59.207302151Z"} +2026/03/22 10:30:02 [log_collector] {"stage_name":"log_collector","events_processed":25635,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5127,"last_update":"2026-03-22T10:29:57.368699794Z"} +2026/03/22 10:30:02 [metric_collector] {"stage_name":"metric_collector","events_processed":16109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3221.8,"last_update":"2026-03-22T10:29:57.369004959Z"} +2026/03/22 10:30:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6446,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:29:57.379751846Z"} +2026/03/22 10:30:02 ───────────────────────────────────────────────── +2026/03/22 10:30:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:30:07 [metric_collector] {"stage_name":"metric_collector","events_processed":16114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3222.8,"last_update":"2026-03-22T10:30:02.368331453Z"} +2026/03/22 10:30:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:30:02.382678036Z"} +2026/03/22 10:30:07 [detection_layer] {"stage_name":"detection_layer","events_processed":537,"events_dropped":0,"avg_latency_ms":20.54835871801249,"throughput_eps":0,"last_update":"2026-03-22T10:30:02.479872806Z"} +2026/03/22 10:30:07 [transform_engine] {"stage_name":"transform_engine","events_processed":537,"events_dropped":0,"avg_latency_ms":565.3111351572952,"throughput_eps":0,"last_update":"2026-03-22T10:30:02.479883255Z"} +2026/03/22 10:30:07 [log_collector] {"stage_name":"log_collector","events_processed":25635,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5127,"last_update":"2026-03-22T10:30:07.368088307Z"} +2026/03/22 10:30:07 ───────────────────────────────────────────────── +2026/03/22 10:30:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:30:12 [metric_collector] {"stage_name":"metric_collector","events_processed":16119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3223.8,"last_update":"2026-03-22T10:30:07.368438898Z"} +2026/03/22 10:30:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:30:07.377020999Z"} +2026/03/22 10:30:12 [detection_layer] {"stage_name":"detection_layer","events_processed":537,"events_dropped":0,"avg_latency_ms":20.54835871801249,"throughput_eps":0,"last_update":"2026-03-22T10:30:07.478992348Z"} +2026/03/22 10:30:12 [transform_engine] {"stage_name":"transform_engine","events_processed":537,"events_dropped":0,"avg_latency_ms":565.3111351572952,"throughput_eps":0,"last_update":"2026-03-22T10:30:07.479053334Z"} +2026/03/22 10:30:12 [log_collector] {"stage_name":"log_collector","events_processed":25635,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5127,"last_update":"2026-03-22T10:30:12.367958753Z"} +2026/03/22 10:30:12 ───────────────────────────────────────────────── +2026/03/22 10:30:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:30:17 [log_collector] {"stage_name":"log_collector","events_processed":25635,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5127,"last_update":"2026-03-22T10:30:17.368616352Z"} +2026/03/22 10:30:17 [metric_collector] {"stage_name":"metric_collector","events_processed":16124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3224.8,"last_update":"2026-03-22T10:30:12.368313292Z"} +2026/03/22 10:30:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6452,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:30:12.380686705Z"} +2026/03/22 10:30:17 [detection_layer] {"stage_name":"detection_layer","events_processed":537,"events_dropped":0,"avg_latency_ms":20.54835871801249,"throughput_eps":0,"last_update":"2026-03-22T10:30:12.47985802Z"} +2026/03/22 10:30:17 [transform_engine] {"stage_name":"transform_engine","events_processed":537,"events_dropped":0,"avg_latency_ms":565.3111351572952,"throughput_eps":0,"last_update":"2026-03-22T10:30:12.479871206Z"} +2026/03/22 10:30:17 ───────────────────────────────────────────────── +2026/03/22 10:30:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:30:22 [log_collector] {"stage_name":"log_collector","events_processed":25635,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5127,"last_update":"2026-03-22T10:30:17.368616352Z"} +2026/03/22 10:30:22 [metric_collector] {"stage_name":"metric_collector","events_processed":16129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3225.8,"last_update":"2026-03-22T10:30:17.368951775Z"} +2026/03/22 10:30:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:30:17.375890096Z"} +2026/03/22 10:30:22 [detection_layer] {"stage_name":"detection_layer","events_processed":537,"events_dropped":0,"avg_latency_ms":20.54835871801249,"throughput_eps":0,"last_update":"2026-03-22T10:30:17.479100328Z"} +2026/03/22 10:30:22 [transform_engine] {"stage_name":"transform_engine","events_processed":537,"events_dropped":0,"avg_latency_ms":565.3111351572952,"throughput_eps":0,"last_update":"2026-03-22T10:30:17.479113664Z"} +2026/03/22 10:30:22 ───────────────────────────────────────────────── +2026/03/22 10:30:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:30:27 [log_collector] {"stage_name":"log_collector","events_processed":25635,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5127,"last_update":"2026-03-22T10:30:22.368647147Z"} +2026/03/22 10:30:27 [metric_collector] {"stage_name":"metric_collector","events_processed":16134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3226.8,"last_update":"2026-03-22T10:30:22.369020592Z"} +2026/03/22 10:30:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:30:22.377123425Z"} +2026/03/22 10:30:27 [detection_layer] {"stage_name":"detection_layer","events_processed":537,"events_dropped":0,"avg_latency_ms":20.54835871801249,"throughput_eps":0,"last_update":"2026-03-22T10:30:22.479401181Z"} +2026/03/22 10:30:27 [transform_engine] {"stage_name":"transform_engine","events_processed":537,"events_dropped":0,"avg_latency_ms":565.3111351572952,"throughput_eps":0,"last_update":"2026-03-22T10:30:22.479414145Z"} +2026/03/22 10:30:27 ───────────────────────────────────────────────── +2026/03/22 10:30:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:30:32 [log_collector] {"stage_name":"log_collector","events_processed":25635,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5127,"last_update":"2026-03-22T10:30:27.368376771Z"} +2026/03/22 10:30:32 [metric_collector] {"stage_name":"metric_collector","events_processed":16139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3227.8,"last_update":"2026-03-22T10:30:27.36875771Z"} +2026/03/22 10:30:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:30:27.375274694Z"} +2026/03/22 10:30:32 [detection_layer] {"stage_name":"detection_layer","events_processed":537,"events_dropped":0,"avg_latency_ms":20.54835871801249,"throughput_eps":0,"last_update":"2026-03-22T10:30:27.479535299Z"} +2026/03/22 10:30:32 [transform_engine] {"stage_name":"transform_engine","events_processed":538,"events_dropped":0,"avg_latency_ms":472.1151125258362,"throughput_eps":0,"last_update":"2026-03-22T10:30:27.578878123Z"} +2026/03/22 10:30:32 ───────────────────────────────────────────────── +2026/03/22 10:30:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:30:37 [log_collector] {"stage_name":"log_collector","events_processed":25644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5128.8,"last_update":"2026-03-22T10:30:32.368580277Z"} +2026/03/22 10:30:37 [metric_collector] {"stage_name":"metric_collector","events_processed":16149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3229.8,"last_update":"2026-03-22T10:30:37.368195793Z"} +2026/03/22 10:30:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:30:32.374794682Z"} +2026/03/22 10:30:37 [detection_layer] {"stage_name":"detection_layer","events_processed":538,"events_dropped":0,"avg_latency_ms":20.067302174409996,"throughput_eps":0,"last_update":"2026-03-22T10:30:32.478981204Z"} +2026/03/22 10:30:37 [transform_engine] {"stage_name":"transform_engine","events_processed":538,"events_dropped":0,"avg_latency_ms":472.1151125258362,"throughput_eps":0,"last_update":"2026-03-22T10:30:32.478939695Z"} +2026/03/22 10:30:37 ───────────────────────────────────────────────── +2026/03/22 10:30:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:30:42 [log_collector] {"stage_name":"log_collector","events_processed":25646,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5129.2,"last_update":"2026-03-22T10:30:37.36822036Z"} +2026/03/22 10:30:42 [metric_collector] {"stage_name":"metric_collector","events_processed":16154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3230.8,"last_update":"2026-03-22T10:30:42.368501827Z"} +2026/03/22 10:30:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:30:37.378761172Z"} +2026/03/22 10:30:42 [detection_layer] {"stage_name":"detection_layer","events_processed":538,"events_dropped":0,"avg_latency_ms":20.067302174409996,"throughput_eps":0,"last_update":"2026-03-22T10:30:37.478960186Z"} +2026/03/22 10:30:42 [transform_engine] {"stage_name":"transform_engine","events_processed":538,"events_dropped":0,"avg_latency_ms":472.1151125258362,"throughput_eps":0,"last_update":"2026-03-22T10:30:37.478976668Z"} +2026/03/22 10:30:42 ───────────────────────────────────────────────── +2026/03/22 10:30:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:30:47 [log_collector] {"stage_name":"log_collector","events_processed":25816,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5163.2,"last_update":"2026-03-22T10:30:42.368512008Z"} +2026/03/22 10:30:47 [metric_collector] {"stage_name":"metric_collector","events_processed":16154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3230.8,"last_update":"2026-03-22T10:30:42.368501827Z"} +2026/03/22 10:30:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:30:42.375395293Z"} +2026/03/22 10:30:47 [detection_layer] {"stage_name":"detection_layer","events_processed":538,"events_dropped":0,"avg_latency_ms":20.067302174409996,"throughput_eps":0,"last_update":"2026-03-22T10:30:42.479252664Z"} +2026/03/22 10:30:47 [transform_engine] {"stage_name":"transform_engine","events_processed":538,"events_dropped":0,"avg_latency_ms":472.1151125258362,"throughput_eps":0,"last_update":"2026-03-22T10:30:42.479224741Z"} +2026/03/22 10:30:47 ───────────────────────────────────────────────── +Saved state: 13 clusters, 25985 messages, reason: none +2026/03/22 10:30:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:30:52 [metric_collector] {"stage_name":"metric_collector","events_processed":16159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3231.8,"last_update":"2026-03-22T10:30:47.368840469Z"} +2026/03/22 10:30:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:30:47.378194027Z"} +2026/03/22 10:30:52 [detection_layer] {"stage_name":"detection_layer","events_processed":538,"events_dropped":0,"avg_latency_ms":20.067302174409996,"throughput_eps":0,"last_update":"2026-03-22T10:30:47.479734901Z"} +2026/03/22 10:30:52 [transform_engine] {"stage_name":"transform_engine","events_processed":538,"events_dropped":0,"avg_latency_ms":472.1151125258362,"throughput_eps":0,"last_update":"2026-03-22T10:30:47.479591096Z"} +2026/03/22 10:30:52 [log_collector] {"stage_name":"log_collector","events_processed":25984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5196.8,"last_update":"2026-03-22T10:30:47.368483005Z"} +2026/03/22 10:30:52 ───────────────────────────────────────────────── +2026/03/22 10:30:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:30:57 [log_collector] {"stage_name":"log_collector","events_processed":25988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5197.6,"last_update":"2026-03-22T10:30:52.369025284Z"} +2026/03/22 10:30:57 [metric_collector] {"stage_name":"metric_collector","events_processed":16163,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3232.6,"last_update":"2026-03-22T10:30:52.368923609Z"} +2026/03/22 10:30:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:30:52.375962383Z"} +2026/03/22 10:30:57 [detection_layer] {"stage_name":"detection_layer","events_processed":538,"events_dropped":0,"avg_latency_ms":20.067302174409996,"throughput_eps":0,"last_update":"2026-03-22T10:30:52.479308244Z"} +2026/03/22 10:30:57 [transform_engine] {"stage_name":"transform_engine","events_processed":538,"events_dropped":0,"avg_latency_ms":472.1151125258362,"throughput_eps":0,"last_update":"2026-03-22T10:30:52.4794315Z"} +2026/03/22 10:30:57 ───────────────────────────────────────────────── +2026/03/22 10:31:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:31:02 [log_collector] {"stage_name":"log_collector","events_processed":25988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5197.6,"last_update":"2026-03-22T10:31:02.368826698Z"} +2026/03/22 10:31:02 [metric_collector] {"stage_name":"metric_collector","events_processed":16169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3233.8,"last_update":"2026-03-22T10:30:57.368265262Z"} +2026/03/22 10:31:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6470,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:30:57.376754083Z"} +2026/03/22 10:31:02 [detection_layer] {"stage_name":"detection_layer","events_processed":538,"events_dropped":0,"avg_latency_ms":20.067302174409996,"throughput_eps":0,"last_update":"2026-03-22T10:30:57.479003876Z"} +2026/03/22 10:31:02 [transform_engine] {"stage_name":"transform_engine","events_processed":539,"events_dropped":0,"avg_latency_ms":401.3585280206689,"throughput_eps":0,"last_update":"2026-03-22T10:30:57.597245091Z"} +2026/03/22 10:31:02 ───────────────────────────────────────────────── +2026/03/22 10:31:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:31:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:31:02.377765681Z"} +2026/03/22 10:31:07 [detection_layer] {"stage_name":"detection_layer","events_processed":539,"events_dropped":0,"avg_latency_ms":19.811065139527997,"throughput_eps":0,"last_update":"2026-03-22T10:31:02.478945905Z"} +2026/03/22 10:31:07 [transform_engine] {"stage_name":"transform_engine","events_processed":539,"events_dropped":0,"avg_latency_ms":401.3585280206689,"throughput_eps":0,"last_update":"2026-03-22T10:31:02.478916568Z"} +2026/03/22 10:31:07 [log_collector] {"stage_name":"log_collector","events_processed":25988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5197.6,"last_update":"2026-03-22T10:31:02.368826698Z"} +2026/03/22 10:31:07 [metric_collector] {"stage_name":"metric_collector","events_processed":16174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3234.8,"last_update":"2026-03-22T10:31:02.369116654Z"} +2026/03/22 10:31:07 ───────────────────────────────────────────────── +2026/03/22 10:31:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:31:12 [log_collector] {"stage_name":"log_collector","events_processed":25988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5197.6,"last_update":"2026-03-22T10:31:07.368558341Z"} +2026/03/22 10:31:12 [metric_collector] {"stage_name":"metric_collector","events_processed":16179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3235.8,"last_update":"2026-03-22T10:31:07.368783563Z"} +2026/03/22 10:31:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:31:07.377906869Z"} +2026/03/22 10:31:12 [detection_layer] {"stage_name":"detection_layer","events_processed":539,"events_dropped":0,"avg_latency_ms":19.811065139527997,"throughput_eps":0,"last_update":"2026-03-22T10:31:07.479310641Z"} +2026/03/22 10:31:12 [transform_engine] {"stage_name":"transform_engine","events_processed":539,"events_dropped":0,"avg_latency_ms":401.3585280206689,"throughput_eps":0,"last_update":"2026-03-22T10:31:07.479205509Z"} +2026/03/22 10:31:12 ───────────────────────────────────────────────── +2026/03/22 10:31:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:31:17 [detection_layer] {"stage_name":"detection_layer","events_processed":539,"events_dropped":0,"avg_latency_ms":19.811065139527997,"throughput_eps":0,"last_update":"2026-03-22T10:31:12.478976734Z"} +2026/03/22 10:31:17 [transform_engine] {"stage_name":"transform_engine","events_processed":539,"events_dropped":0,"avg_latency_ms":401.3585280206689,"throughput_eps":0,"last_update":"2026-03-22T10:31:12.478920878Z"} +2026/03/22 10:31:17 [log_collector] {"stage_name":"log_collector","events_processed":25988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5197.6,"last_update":"2026-03-22T10:31:12.36867078Z"} +2026/03/22 10:31:17 [metric_collector] {"stage_name":"metric_collector","events_processed":16184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3236.8,"last_update":"2026-03-22T10:31:12.368885942Z"} +2026/03/22 10:31:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6476,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:31:12.375811609Z"} +2026/03/22 10:31:17 ───────────────────────────────────────────────── +2026/03/22 10:31:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:31:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:31:17.378279295Z"} +2026/03/22 10:31:22 [detection_layer] {"stage_name":"detection_layer","events_processed":539,"events_dropped":0,"avg_latency_ms":19.811065139527997,"throughput_eps":0,"last_update":"2026-03-22T10:31:17.479504564Z"} +2026/03/22 10:31:22 [transform_engine] {"stage_name":"transform_engine","events_processed":539,"events_dropped":0,"avg_latency_ms":401.3585280206689,"throughput_eps":0,"last_update":"2026-03-22T10:31:17.479472383Z"} +2026/03/22 10:31:22 [log_collector] {"stage_name":"log_collector","events_processed":25988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5197.6,"last_update":"2026-03-22T10:31:17.369145548Z"} +2026/03/22 10:31:22 [metric_collector] {"stage_name":"metric_collector","events_processed":16189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3237.8,"last_update":"2026-03-22T10:31:17.369629957Z"} +2026/03/22 10:31:22 ───────────────────────────────────────────────── +2026/03/22 10:31:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:31:27 [transform_engine] {"stage_name":"transform_engine","events_processed":539,"events_dropped":0,"avg_latency_ms":401.3585280206689,"throughput_eps":0,"last_update":"2026-03-22T10:31:22.479879998Z"} +2026/03/22 10:31:27 [log_collector] {"stage_name":"log_collector","events_processed":25988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5197.6,"last_update":"2026-03-22T10:31:22.368392581Z"} +2026/03/22 10:31:27 [metric_collector] {"stage_name":"metric_collector","events_processed":16194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3238.8,"last_update":"2026-03-22T10:31:22.368901615Z"} +2026/03/22 10:31:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6480,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:31:22.377667699Z"} +2026/03/22 10:31:27 [detection_layer] {"stage_name":"detection_layer","events_processed":539,"events_dropped":0,"avg_latency_ms":19.811065139527997,"throughput_eps":0,"last_update":"2026-03-22T10:31:22.479912199Z"} +2026/03/22 10:31:27 ───────────────────────────────────────────────── +2026/03/22 10:31:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:31:32 [detection_layer] {"stage_name":"detection_layer","events_processed":539,"events_dropped":0,"avg_latency_ms":19.811065139527997,"throughput_eps":0,"last_update":"2026-03-22T10:31:27.479841506Z"} +2026/03/22 10:31:32 [transform_engine] {"stage_name":"transform_engine","events_processed":540,"events_dropped":0,"avg_latency_ms":335.66267801653515,"throughput_eps":0,"last_update":"2026-03-22T10:31:27.552768245Z"} +2026/03/22 10:31:32 [log_collector] {"stage_name":"log_collector","events_processed":25988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5197.6,"last_update":"2026-03-22T10:31:27.368282693Z"} +2026/03/22 10:31:32 [metric_collector] {"stage_name":"metric_collector","events_processed":16199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3239.8,"last_update":"2026-03-22T10:31:27.368270308Z"} +2026/03/22 10:31:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6482,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:31:27.378605997Z"} +2026/03/22 10:31:32 ───────────────────────────────────────────────── +2026/03/22 10:31:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:31:37 [log_collector] {"stage_name":"log_collector","events_processed":25988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5197.6,"last_update":"2026-03-22T10:31:32.368140346Z"} +2026/03/22 10:31:37 [metric_collector] {"stage_name":"metric_collector","events_processed":16204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3240.8,"last_update":"2026-03-22T10:31:32.368609555Z"} +2026/03/22 10:31:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:31:32.378679365Z"} +2026/03/22 10:31:37 [detection_layer] {"stage_name":"detection_layer","events_processed":540,"events_dropped":0,"avg_latency_ms":20.6625393116224,"throughput_eps":0,"last_update":"2026-03-22T10:31:32.478941469Z"} +2026/03/22 10:31:37 [transform_engine] {"stage_name":"transform_engine","events_processed":540,"events_dropped":0,"avg_latency_ms":335.66267801653515,"throughput_eps":0,"last_update":"2026-03-22T10:31:32.478922733Z"} +2026/03/22 10:31:37 ───────────────────────────────────────────────── +2026/03/22 10:31:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:31:42 [log_collector] {"stage_name":"log_collector","events_processed":25988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5197.6,"last_update":"2026-03-22T10:31:42.368395196Z"} +2026/03/22 10:31:42 [metric_collector] {"stage_name":"metric_collector","events_processed":16209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3241.8,"last_update":"2026-03-22T10:31:37.368865549Z"} +2026/03/22 10:31:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6486,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:31:37.37744257Z"} +2026/03/22 10:31:42 [detection_layer] {"stage_name":"detection_layer","events_processed":540,"events_dropped":0,"avg_latency_ms":20.6625393116224,"throughput_eps":0,"last_update":"2026-03-22T10:31:37.479735674Z"} +2026/03/22 10:31:42 [transform_engine] {"stage_name":"transform_engine","events_processed":540,"events_dropped":0,"avg_latency_ms":335.66267801653515,"throughput_eps":0,"last_update":"2026-03-22T10:31:37.47971263Z"} +2026/03/22 10:31:42 ───────────────────────────────────────────────── +2026/03/22 10:31:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:31:47 [log_collector] {"stage_name":"log_collector","events_processed":25988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5197.6,"last_update":"2026-03-22T10:31:42.368395196Z"} +2026/03/22 10:31:47 [metric_collector] {"stage_name":"metric_collector","events_processed":16214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3242.8,"last_update":"2026-03-22T10:31:42.368851941Z"} +2026/03/22 10:31:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:31:42.377210492Z"} +2026/03/22 10:31:47 [detection_layer] {"stage_name":"detection_layer","events_processed":540,"events_dropped":0,"avg_latency_ms":20.6625393116224,"throughput_eps":0,"last_update":"2026-03-22T10:31:42.47942733Z"} +2026/03/22 10:31:47 [transform_engine] {"stage_name":"transform_engine","events_processed":540,"events_dropped":0,"avg_latency_ms":335.66267801653515,"throughput_eps":0,"last_update":"2026-03-22T10:31:42.479396812Z"} +2026/03/22 10:31:47 ───────────────────────────────────────────────── +2026/03/22 10:31:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:31:52 [transform_engine] {"stage_name":"transform_engine","events_processed":540,"events_dropped":0,"avg_latency_ms":335.66267801653515,"throughput_eps":0,"last_update":"2026-03-22T10:31:47.479911293Z"} +2026/03/22 10:31:52 [log_collector] {"stage_name":"log_collector","events_processed":25988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5197.6,"last_update":"2026-03-22T10:31:47.36903128Z"} +2026/03/22 10:31:52 [metric_collector] {"stage_name":"metric_collector","events_processed":16219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3243.8,"last_update":"2026-03-22T10:31:47.369189613Z"} +2026/03/22 10:31:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6490,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:31:47.378645637Z"} +2026/03/22 10:31:52 [detection_layer] {"stage_name":"detection_layer","events_processed":540,"events_dropped":0,"avg_latency_ms":20.6625393116224,"throughput_eps":0,"last_update":"2026-03-22T10:31:47.479867188Z"} +2026/03/22 10:31:52 ───────────────────────────────────────────────── +2026/03/22 10:31:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:31:57 [detection_layer] {"stage_name":"detection_layer","events_processed":540,"events_dropped":0,"avg_latency_ms":20.6625393116224,"throughput_eps":0,"last_update":"2026-03-22T10:31:52.479403082Z"} +2026/03/22 10:31:57 [transform_engine] {"stage_name":"transform_engine","events_processed":540,"events_dropped":0,"avg_latency_ms":335.66267801653515,"throughput_eps":0,"last_update":"2026-03-22T10:31:52.479427589Z"} +2026/03/22 10:31:57 [log_collector] {"stage_name":"log_collector","events_processed":25988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5197.6,"last_update":"2026-03-22T10:31:52.368413148Z"} +2026/03/22 10:31:57 [metric_collector] {"stage_name":"metric_collector","events_processed":16224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3244.8,"last_update":"2026-03-22T10:31:52.368627079Z"} +2026/03/22 10:31:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:31:52.378011646Z"} +2026/03/22 10:31:57 ───────────────────────────────────────────────── +2026/03/22 10:32:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:32:02 [log_collector] {"stage_name":"log_collector","events_processed":25988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5197.6,"last_update":"2026-03-22T10:31:57.367983103Z"} +2026/03/22 10:32:02 [metric_collector] {"stage_name":"metric_collector","events_processed":16229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3245.8,"last_update":"2026-03-22T10:31:57.3691356Z"} +2026/03/22 10:32:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:31:57.379145154Z"} +2026/03/22 10:32:02 [detection_layer] {"stage_name":"detection_layer","events_processed":540,"events_dropped":0,"avg_latency_ms":20.6625393116224,"throughput_eps":0,"last_update":"2026-03-22T10:31:57.479368494Z"} +2026/03/22 10:32:02 [transform_engine] {"stage_name":"transform_engine","events_processed":541,"events_dropped":0,"avg_latency_ms":282.8707856132281,"throughput_eps":0,"last_update":"2026-03-22T10:31:57.55110371Z"} +2026/03/22 10:32:02 ───────────────────────────────────────────────── +Saved state: 13 clusters, 25989 messages, reason: none +2026/03/22 10:32:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:32:07 [log_collector] {"stage_name":"log_collector","events_processed":25988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5197.6,"last_update":"2026-03-22T10:32:02.368278482Z"} +2026/03/22 10:32:07 [metric_collector] {"stage_name":"metric_collector","events_processed":16234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3246.8,"last_update":"2026-03-22T10:32:02.368577365Z"} +2026/03/22 10:32:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6496,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:32:02.377589629Z"} +2026/03/22 10:32:07 [detection_layer] {"stage_name":"detection_layer","events_processed":541,"events_dropped":0,"avg_latency_ms":20.751151449297918,"throughput_eps":0,"last_update":"2026-03-22T10:32:02.479919463Z"} +2026/03/22 10:32:07 [transform_engine] {"stage_name":"transform_engine","events_processed":541,"events_dropped":0,"avg_latency_ms":282.8707856132281,"throughput_eps":0,"last_update":"2026-03-22T10:32:02.47988704Z"} +2026/03/22 10:32:07 ───────────────────────────────────────────────── +2026/03/22 10:32:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:32:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6498,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:32:07.375974304Z"} +2026/03/22 10:32:12 [detection_layer] {"stage_name":"detection_layer","events_processed":541,"events_dropped":0,"avg_latency_ms":20.751151449297918,"throughput_eps":0,"last_update":"2026-03-22T10:32:07.479458689Z"} +2026/03/22 10:32:12 [transform_engine] {"stage_name":"transform_engine","events_processed":541,"events_dropped":0,"avg_latency_ms":282.8707856132281,"throughput_eps":0,"last_update":"2026-03-22T10:32:07.479441427Z"} +2026/03/22 10:32:12 [log_collector] {"stage_name":"log_collector","events_processed":25991,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5198.2,"last_update":"2026-03-22T10:32:07.368678017Z"} +2026/03/22 10:32:12 [metric_collector] {"stage_name":"metric_collector","events_processed":16239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3247.8,"last_update":"2026-03-22T10:32:07.368883531Z"} +2026/03/22 10:32:12 ───────────────────────────────────────────────── +2026/03/22 10:32:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:32:17 [log_collector] {"stage_name":"log_collector","events_processed":26001,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5200.2,"last_update":"2026-03-22T10:32:12.368434568Z"} +2026/03/22 10:32:17 [metric_collector] {"stage_name":"metric_collector","events_processed":16244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3248.8,"last_update":"2026-03-22T10:32:12.368725676Z"} +2026/03/22 10:32:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:32:12.374572165Z"} +2026/03/22 10:32:17 [detection_layer] {"stage_name":"detection_layer","events_processed":541,"events_dropped":0,"avg_latency_ms":20.751151449297918,"throughput_eps":0,"last_update":"2026-03-22T10:32:12.479892577Z"} +2026/03/22 10:32:17 [transform_engine] {"stage_name":"transform_engine","events_processed":541,"events_dropped":0,"avg_latency_ms":282.8707856132281,"throughput_eps":0,"last_update":"2026-03-22T10:32:12.479853653Z"} +2026/03/22 10:32:17 ───────────────────────────────────────────────── +2026/03/22 10:32:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:32:22 [log_collector] {"stage_name":"log_collector","events_processed":26010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5202,"last_update":"2026-03-22T10:32:22.368603444Z"} +2026/03/22 10:32:22 [metric_collector] {"stage_name":"metric_collector","events_processed":16249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3249.8,"last_update":"2026-03-22T10:32:17.368667728Z"} +2026/03/22 10:32:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:32:17.377796756Z"} +2026/03/22 10:32:22 [detection_layer] {"stage_name":"detection_layer","events_processed":541,"events_dropped":0,"avg_latency_ms":20.751151449297918,"throughput_eps":0,"last_update":"2026-03-22T10:32:17.479024839Z"} +2026/03/22 10:32:22 [transform_engine] {"stage_name":"transform_engine","events_processed":541,"events_dropped":0,"avg_latency_ms":282.8707856132281,"throughput_eps":0,"last_update":"2026-03-22T10:32:17.478992318Z"} +2026/03/22 10:32:22 ───────────────────────────────────────────────── +2026/03/22 10:32:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:32:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:32:22.37752771Z"} +2026/03/22 10:32:27 [detection_layer] {"stage_name":"detection_layer","events_processed":541,"events_dropped":0,"avg_latency_ms":20.751151449297918,"throughput_eps":0,"last_update":"2026-03-22T10:32:22.47989746Z"} +2026/03/22 10:32:27 [transform_engine] {"stage_name":"transform_engine","events_processed":541,"events_dropped":0,"avg_latency_ms":282.8707856132281,"throughput_eps":0,"last_update":"2026-03-22T10:32:22.479937397Z"} +2026/03/22 10:32:27 [log_collector] {"stage_name":"log_collector","events_processed":26010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5202,"last_update":"2026-03-22T10:32:22.368603444Z"} +2026/03/22 10:32:27 [metric_collector] {"stage_name":"metric_collector","events_processed":16254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3250.8,"last_update":"2026-03-22T10:32:22.36904997Z"} +2026/03/22 10:32:27 ───────────────────────────────────────────────── +2026/03/22 10:32:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:32:32 [log_collector] {"stage_name":"log_collector","events_processed":26010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5202,"last_update":"2026-03-22T10:32:32.368514473Z"} +2026/03/22 10:32:32 [metric_collector] {"stage_name":"metric_collector","events_processed":16259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3251.8,"last_update":"2026-03-22T10:32:27.368648246Z"} +2026/03/22 10:32:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6506,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:32:27.378144176Z"} +2026/03/22 10:32:32 [detection_layer] {"stage_name":"detection_layer","events_processed":541,"events_dropped":0,"avg_latency_ms":20.751151449297918,"throughput_eps":0,"last_update":"2026-03-22T10:32:27.479332134Z"} +2026/03/22 10:32:32 [transform_engine] {"stage_name":"transform_engine","events_processed":542,"events_dropped":0,"avg_latency_ms":242.69974229058252,"throughput_eps":0,"last_update":"2026-03-22T10:32:27.561416975Z"} +2026/03/22 10:32:32 ───────────────────────────────────────────────── +2026/03/22 10:32:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:32:37 [log_collector] {"stage_name":"log_collector","events_processed":26010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5202,"last_update":"2026-03-22T10:32:37.368401166Z"} +2026/03/22 10:32:37 [metric_collector] {"stage_name":"metric_collector","events_processed":16264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3252.8,"last_update":"2026-03-22T10:32:32.368953484Z"} +2026/03/22 10:32:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:32:32.379116072Z"} +2026/03/22 10:32:37 [detection_layer] {"stage_name":"detection_layer","events_processed":542,"events_dropped":0,"avg_latency_ms":20.291108159438338,"throughput_eps":0,"last_update":"2026-03-22T10:32:32.479507222Z"} +2026/03/22 10:32:37 [transform_engine] {"stage_name":"transform_engine","events_processed":542,"events_dropped":0,"avg_latency_ms":242.69974229058252,"throughput_eps":0,"last_update":"2026-03-22T10:32:32.479481593Z"} +2026/03/22 10:32:37 ───────────────────────────────────────────────── +2026/03/22 10:32:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:32:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:32:37.378253108Z"} +2026/03/22 10:32:42 [detection_layer] {"stage_name":"detection_layer","events_processed":542,"events_dropped":0,"avg_latency_ms":20.291108159438338,"throughput_eps":0,"last_update":"2026-03-22T10:32:37.479710812Z"} +2026/03/22 10:32:42 [transform_engine] {"stage_name":"transform_engine","events_processed":542,"events_dropped":0,"avg_latency_ms":242.69974229058252,"throughput_eps":0,"last_update":"2026-03-22T10:32:37.479677497Z"} +2026/03/22 10:32:42 [log_collector] {"stage_name":"log_collector","events_processed":26010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5202,"last_update":"2026-03-22T10:32:42.368559375Z"} +2026/03/22 10:32:42 [metric_collector] {"stage_name":"metric_collector","events_processed":16269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3253.8,"last_update":"2026-03-22T10:32:37.369180027Z"} +2026/03/22 10:32:42 ───────────────────────────────────────────────── +2026/03/22 10:32:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:32:47 [log_collector] {"stage_name":"log_collector","events_processed":26010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5202,"last_update":"2026-03-22T10:32:47.368776934Z"} +2026/03/22 10:32:47 [metric_collector] {"stage_name":"metric_collector","events_processed":16274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3254.8,"last_update":"2026-03-22T10:32:42.368978698Z"} +2026/03/22 10:32:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6512,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:32:42.377844342Z"} +2026/03/22 10:32:47 [detection_layer] {"stage_name":"detection_layer","events_processed":542,"events_dropped":0,"avg_latency_ms":20.291108159438338,"throughput_eps":0,"last_update":"2026-03-22T10:32:42.479102301Z"} +2026/03/22 10:32:47 [transform_engine] {"stage_name":"transform_engine","events_processed":542,"events_dropped":0,"avg_latency_ms":242.69974229058252,"throughput_eps":0,"last_update":"2026-03-22T10:32:42.479055391Z"} +2026/03/22 10:32:47 ───────────────────────────────────────────────── +2026/03/22 10:32:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:32:52 [log_collector] {"stage_name":"log_collector","events_processed":26010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5202,"last_update":"2026-03-22T10:32:47.368776934Z"} +2026/03/22 10:32:52 [metric_collector] {"stage_name":"metric_collector","events_processed":16279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3255.8,"last_update":"2026-03-22T10:32:47.369324834Z"} +2026/03/22 10:32:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:32:47.376670104Z"} +2026/03/22 10:32:52 [detection_layer] {"stage_name":"detection_layer","events_processed":542,"events_dropped":0,"avg_latency_ms":20.291108159438338,"throughput_eps":0,"last_update":"2026-03-22T10:32:47.479901073Z"} +2026/03/22 10:32:52 [transform_engine] {"stage_name":"transform_engine","events_processed":542,"events_dropped":0,"avg_latency_ms":242.69974229058252,"throughput_eps":0,"last_update":"2026-03-22T10:32:47.479871036Z"} +2026/03/22 10:32:52 ───────────────────────────────────────────────── +2026/03/22 10:32:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:32:57 [metric_collector] {"stage_name":"metric_collector","events_processed":16284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3256.8,"last_update":"2026-03-22T10:32:52.368605824Z"} +2026/03/22 10:32:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:32:52.377682612Z"} +2026/03/22 10:32:57 [detection_layer] {"stage_name":"detection_layer","events_processed":542,"events_dropped":0,"avg_latency_ms":20.291108159438338,"throughput_eps":0,"last_update":"2026-03-22T10:32:52.478954158Z"} +2026/03/22 10:32:57 [transform_engine] {"stage_name":"transform_engine","events_processed":542,"events_dropped":0,"avg_latency_ms":242.69974229058252,"throughput_eps":0,"last_update":"2026-03-22T10:32:52.478813198Z"} +2026/03/22 10:32:57 [log_collector] {"stage_name":"log_collector","events_processed":26010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5202,"last_update":"2026-03-22T10:32:52.367994824Z"} +2026/03/22 10:32:57 ───────────────────────────────────────────────── +2026/03/22 10:32:57 [ANOMALY] time=2026-03-22T10:32:57Z score=0.8621 method=SEAD details=MAD!:w=0.56,s=0.79 RRCF-fast!:w=0.11,s=1.00 RRCF-mid!:w=0.10,s=1.00 RRCF-slow!:w=0.10,s=1.00 COPOD!:w=0.13,s=0.86 +2026/03/22 10:33:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:33:02 [transform_engine] {"stage_name":"transform_engine","events_processed":543,"events_dropped":0,"avg_latency_ms":208.88647203246603,"throughput_eps":0,"last_update":"2026-03-22T10:32:57.552940994Z"} +2026/03/22 10:33:02 [log_collector] {"stage_name":"log_collector","events_processed":26010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5202,"last_update":"2026-03-22T10:33:02.368101998Z"} +2026/03/22 10:33:02 [metric_collector] {"stage_name":"metric_collector","events_processed":16289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3257.8,"last_update":"2026-03-22T10:32:57.369282015Z"} +2026/03/22 10:33:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:32:57.378066383Z"} +2026/03/22 10:33:02 [detection_layer] {"stage_name":"detection_layer","events_processed":542,"events_dropped":0,"avg_latency_ms":20.291108159438338,"throughput_eps":0,"last_update":"2026-03-22T10:32:57.479333472Z"} +2026/03/22 10:33:02 ───────────────────────────────────────────────── +2026/03/22 10:33:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:33:07 [log_collector] {"stage_name":"log_collector","events_processed":26010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5202,"last_update":"2026-03-22T10:33:02.368101998Z"} +2026/03/22 10:33:07 [metric_collector] {"stage_name":"metric_collector","events_processed":16294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3258.8,"last_update":"2026-03-22T10:33:02.368566668Z"} +2026/03/22 10:33:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6520,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:33:02.37806344Z"} +2026/03/22 10:33:07 [detection_layer] {"stage_name":"detection_layer","events_processed":543,"events_dropped":0,"avg_latency_ms":19.326097927550673,"throughput_eps":0,"last_update":"2026-03-22T10:33:02.479310158Z"} +2026/03/22 10:33:07 [transform_engine] {"stage_name":"transform_engine","events_processed":543,"events_dropped":0,"avg_latency_ms":208.88647203246603,"throughput_eps":0,"last_update":"2026-03-22T10:33:02.479281473Z"} +2026/03/22 10:33:07 ───────────────────────────────────────────────── +Saved state: 13 clusters, 26011 messages, reason: none +2026/03/22 10:33:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:33:12 [log_collector] {"stage_name":"log_collector","events_processed":26010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5202,"last_update":"2026-03-22T10:33:07.368641129Z"} +2026/03/22 10:33:12 [metric_collector] {"stage_name":"metric_collector","events_processed":16299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3259.8,"last_update":"2026-03-22T10:33:07.36883991Z"} +2026/03/22 10:33:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6522,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:33:07.378144885Z"} +2026/03/22 10:33:12 [detection_layer] {"stage_name":"detection_layer","events_processed":543,"events_dropped":0,"avg_latency_ms":19.326097927550673,"throughput_eps":0,"last_update":"2026-03-22T10:33:07.479567019Z"} +2026/03/22 10:33:12 [transform_engine] {"stage_name":"transform_engine","events_processed":543,"events_dropped":0,"avg_latency_ms":208.88647203246603,"throughput_eps":0,"last_update":"2026-03-22T10:33:07.479608549Z"} +2026/03/22 10:33:12 ───────────────────────────────────────────────── +2026/03/22 10:33:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:33:17 [log_collector] {"stage_name":"log_collector","events_processed":26016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203.2,"last_update":"2026-03-22T10:33:12.368397479Z"} +2026/03/22 10:33:17 [metric_collector] {"stage_name":"metric_collector","events_processed":16304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3260.8,"last_update":"2026-03-22T10:33:12.36887267Z"} +2026/03/22 10:33:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:33:12.374557319Z"} +2026/03/22 10:33:17 [detection_layer] {"stage_name":"detection_layer","events_processed":543,"events_dropped":0,"avg_latency_ms":19.326097927550673,"throughput_eps":0,"last_update":"2026-03-22T10:33:12.480040593Z"} +2026/03/22 10:33:17 [transform_engine] {"stage_name":"transform_engine","events_processed":543,"events_dropped":0,"avg_latency_ms":208.88647203246603,"throughput_eps":0,"last_update":"2026-03-22T10:33:12.479947064Z"} +2026/03/22 10:33:17 ───────────────────────────────────────────────── +2026/03/22 10:33:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:33:22 [log_collector] {"stage_name":"log_collector","events_processed":26018,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203.6,"last_update":"2026-03-22T10:33:22.368531548Z"} +2026/03/22 10:33:22 [metric_collector] {"stage_name":"metric_collector","events_processed":16309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3261.8,"last_update":"2026-03-22T10:33:17.36828219Z"} +2026/03/22 10:33:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6526,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:33:17.378426622Z"} +2026/03/22 10:33:22 [detection_layer] {"stage_name":"detection_layer","events_processed":543,"events_dropped":0,"avg_latency_ms":19.326097927550673,"throughput_eps":0,"last_update":"2026-03-22T10:33:17.479658874Z"} +2026/03/22 10:33:22 [transform_engine] {"stage_name":"transform_engine","events_processed":543,"events_dropped":0,"avg_latency_ms":208.88647203246603,"throughput_eps":0,"last_update":"2026-03-22T10:33:17.47962042Z"} +2026/03/22 10:33:22 ───────────────────────────────────────────────── +2026/03/22 10:33:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:33:27 [log_collector] {"stage_name":"log_collector","events_processed":26018,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203.6,"last_update":"2026-03-22T10:33:27.367974686Z"} +2026/03/22 10:33:27 [metric_collector] {"stage_name":"metric_collector","events_processed":16314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3262.8,"last_update":"2026-03-22T10:33:22.369068846Z"} +2026/03/22 10:33:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:33:22.378683715Z"} +2026/03/22 10:33:27 [detection_layer] {"stage_name":"detection_layer","events_processed":543,"events_dropped":0,"avg_latency_ms":19.326097927550673,"throughput_eps":0,"last_update":"2026-03-22T10:33:22.479914303Z"} +2026/03/22 10:33:27 [transform_engine] {"stage_name":"transform_engine","events_processed":543,"events_dropped":0,"avg_latency_ms":208.88647203246603,"throughput_eps":0,"last_update":"2026-03-22T10:33:22.478820808Z"} +2026/03/22 10:33:27 ───────────────────────────────────────────────── +2026/03/22 10:33:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:33:32 [transform_engine] {"stage_name":"transform_engine","events_processed":544,"events_dropped":0,"avg_latency_ms":190.57454802597286,"throughput_eps":0,"last_update":"2026-03-22T10:33:27.596936195Z"} +2026/03/22 10:33:32 [log_collector] {"stage_name":"log_collector","events_processed":26018,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203.6,"last_update":"2026-03-22T10:33:27.367974686Z"} +2026/03/22 10:33:32 [metric_collector] {"stage_name":"metric_collector","events_processed":16319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3263.8,"last_update":"2026-03-22T10:33:27.369100874Z"} +2026/03/22 10:33:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:33:27.377382257Z"} +2026/03/22 10:33:32 [detection_layer] {"stage_name":"detection_layer","events_processed":543,"events_dropped":0,"avg_latency_ms":19.326097927550673,"throughput_eps":0,"last_update":"2026-03-22T10:33:27.479717632Z"} +2026/03/22 10:33:32 ───────────────────────────────────────────────── +2026/03/22 10:33:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:33:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6532,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:33:32.380134504Z"} +2026/03/22 10:33:37 [detection_layer] {"stage_name":"detection_layer","events_processed":544,"events_dropped":0,"avg_latency_ms":19.90080354204054,"throughput_eps":0,"last_update":"2026-03-22T10:33:32.47952154Z"} +2026/03/22 10:33:37 [transform_engine] {"stage_name":"transform_engine","events_processed":544,"events_dropped":0,"avg_latency_ms":190.57454802597286,"throughput_eps":0,"last_update":"2026-03-22T10:33:32.479484238Z"} +2026/03/22 10:33:37 [log_collector] {"stage_name":"log_collector","events_processed":26018,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203.6,"last_update":"2026-03-22T10:33:37.368763822Z"} +2026/03/22 10:33:37 [metric_collector] {"stage_name":"metric_collector","events_processed":16324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3264.8,"last_update":"2026-03-22T10:33:32.36928458Z"} +2026/03/22 10:33:37 ───────────────────────────────────────────────── +2026/03/22 10:33:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:33:42 [detection_layer] {"stage_name":"detection_layer","events_processed":544,"events_dropped":0,"avg_latency_ms":19.90080354204054,"throughput_eps":0,"last_update":"2026-03-22T10:33:37.479809341Z"} +2026/03/22 10:33:42 [transform_engine] {"stage_name":"transform_engine","events_processed":544,"events_dropped":0,"avg_latency_ms":190.57454802597286,"throughput_eps":0,"last_update":"2026-03-22T10:33:37.479917489Z"} +2026/03/22 10:33:42 [log_collector] {"stage_name":"log_collector","events_processed":26018,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203.6,"last_update":"2026-03-22T10:33:42.368160714Z"} +2026/03/22 10:33:42 [metric_collector] {"stage_name":"metric_collector","events_processed":16329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3265.8,"last_update":"2026-03-22T10:33:37.369146386Z"} +2026/03/22 10:33:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:33:37.378522225Z"} +2026/03/22 10:33:42 ───────────────────────────────────────────────── +2026/03/22 10:33:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:33:47 [metric_collector] {"stage_name":"metric_collector","events_processed":16334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3266.8,"last_update":"2026-03-22T10:33:42.369150571Z"} +2026/03/22 10:33:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6536,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:33:42.377712802Z"} +2026/03/22 10:33:47 [detection_layer] {"stage_name":"detection_layer","events_processed":544,"events_dropped":0,"avg_latency_ms":19.90080354204054,"throughput_eps":0,"last_update":"2026-03-22T10:33:42.479991758Z"} +2026/03/22 10:33:47 [transform_engine] {"stage_name":"transform_engine","events_processed":544,"events_dropped":0,"avg_latency_ms":190.57454802597286,"throughput_eps":0,"last_update":"2026-03-22T10:33:42.478846384Z"} +2026/03/22 10:33:47 [log_collector] {"stage_name":"log_collector","events_processed":26018,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203.6,"last_update":"2026-03-22T10:33:42.368160714Z"} +2026/03/22 10:33:47 ───────────────────────────────────────────────── +2026/03/22 10:33:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:33:52 [transform_engine] {"stage_name":"transform_engine","events_processed":544,"events_dropped":0,"avg_latency_ms":190.57454802597286,"throughput_eps":0,"last_update":"2026-03-22T10:33:47.479434635Z"} +2026/03/22 10:33:52 [log_collector] {"stage_name":"log_collector","events_processed":26018,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5203.6,"last_update":"2026-03-22T10:33:47.368331405Z"} +2026/03/22 10:33:52 [metric_collector] {"stage_name":"metric_collector","events_processed":16339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3267.8,"last_update":"2026-03-22T10:33:47.368744165Z"} +2026/03/22 10:33:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:33:47.377086356Z"} +2026/03/22 10:33:52 [detection_layer] {"stage_name":"detection_layer","events_processed":544,"events_dropped":0,"avg_latency_ms":19.90080354204054,"throughput_eps":0,"last_update":"2026-03-22T10:33:47.479415117Z"} +2026/03/22 10:33:52 ───────────────────────────────────────────────── +2026/03/22 10:33:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:33:57 [log_collector] {"stage_name":"log_collector","events_processed":26032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5206.4,"last_update":"2026-03-22T10:33:57.368090704Z"} +2026/03/22 10:33:57 [metric_collector] {"stage_name":"metric_collector","events_processed":16344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3268.8,"last_update":"2026-03-22T10:33:52.368682218Z"} +2026/03/22 10:33:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6540,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:33:52.374798445Z"} +2026/03/22 10:33:57 [detection_layer] {"stage_name":"detection_layer","events_processed":544,"events_dropped":0,"avg_latency_ms":19.90080354204054,"throughput_eps":0,"last_update":"2026-03-22T10:33:52.478961039Z"} +2026/03/22 10:33:57 [transform_engine] {"stage_name":"transform_engine","events_processed":544,"events_dropped":0,"avg_latency_ms":190.57454802597286,"throughput_eps":0,"last_update":"2026-03-22T10:33:52.478919489Z"} +2026/03/22 10:33:57 ───────────────────────────────────────────────── +2026/03/22 10:34:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:34:02 [log_collector] {"stage_name":"log_collector","events_processed":26032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5206.4,"last_update":"2026-03-22T10:34:02.368135335Z"} +2026/03/22 10:34:02 [metric_collector] {"stage_name":"metric_collector","events_processed":16349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3269.8,"last_update":"2026-03-22T10:33:57.368830862Z"} +2026/03/22 10:34:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6542,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:33:57.377113417Z"} +2026/03/22 10:34:02 [detection_layer] {"stage_name":"detection_layer","events_processed":544,"events_dropped":0,"avg_latency_ms":19.90080354204054,"throughput_eps":0,"last_update":"2026-03-22T10:33:57.479429955Z"} +2026/03/22 10:34:02 [transform_engine] {"stage_name":"transform_engine","events_processed":545,"events_dropped":0,"avg_latency_ms":175.5007418207783,"throughput_eps":0,"last_update":"2026-03-22T10:33:57.594549738Z"} +2026/03/22 10:34:02 ───────────────────────────────────────────────── +2026/03/22 10:34:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:34:07 [detection_layer] {"stage_name":"detection_layer","events_processed":545,"events_dropped":0,"avg_latency_ms":19.86476423363243,"throughput_eps":0,"last_update":"2026-03-22T10:34:02.478996741Z"} +2026/03/22 10:34:07 [transform_engine] {"stage_name":"transform_engine","events_processed":545,"events_dropped":0,"avg_latency_ms":175.5007418207783,"throughput_eps":0,"last_update":"2026-03-22T10:34:02.4790124Z"} +2026/03/22 10:34:07 [log_collector] {"stage_name":"log_collector","events_processed":26032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5206.4,"last_update":"2026-03-22T10:34:02.368135335Z"} +2026/03/22 10:34:07 [metric_collector] {"stage_name":"metric_collector","events_processed":16354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3270.8,"last_update":"2026-03-22T10:34:02.368932772Z"} +2026/03/22 10:34:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:34:02.376808789Z"} +2026/03/22 10:34:07 ───────────────────────────────────────────────── +2026/03/22 10:34:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:34:12 [detection_layer] {"stage_name":"detection_layer","events_processed":545,"events_dropped":0,"avg_latency_ms":19.86476423363243,"throughput_eps":0,"last_update":"2026-03-22T10:34:07.479328658Z"} +2026/03/22 10:34:12 [transform_engine] {"stage_name":"transform_engine","events_processed":545,"events_dropped":0,"avg_latency_ms":175.5007418207783,"throughput_eps":0,"last_update":"2026-03-22T10:34:07.479341202Z"} +2026/03/22 10:34:12 [log_collector] {"stage_name":"log_collector","events_processed":26032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5206.4,"last_update":"2026-03-22T10:34:07.36845095Z"} +2026/03/22 10:34:12 [metric_collector] {"stage_name":"metric_collector","events_processed":16359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3271.8,"last_update":"2026-03-22T10:34:07.369341577Z"} +2026/03/22 10:34:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:34:07.378938411Z"} +2026/03/22 10:34:12 ───────────────────────────────────────────────── +2026/03/22 10:34:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:34:17 [log_collector] {"stage_name":"log_collector","events_processed":26032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5206.4,"last_update":"2026-03-22T10:34:17.368004673Z"} +2026/03/22 10:34:17 [metric_collector] {"stage_name":"metric_collector","events_processed":16364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3272.8,"last_update":"2026-03-22T10:34:12.369613037Z"} +2026/03/22 10:34:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:34:12.379164935Z"} +2026/03/22 10:34:17 [detection_layer] {"stage_name":"detection_layer","events_processed":545,"events_dropped":0,"avg_latency_ms":19.86476423363243,"throughput_eps":0,"last_update":"2026-03-22T10:34:12.479368484Z"} +2026/03/22 10:34:17 [transform_engine] {"stage_name":"transform_engine","events_processed":545,"events_dropped":0,"avg_latency_ms":175.5007418207783,"throughput_eps":0,"last_update":"2026-03-22T10:34:12.4793771Z"} +2026/03/22 10:34:17 ───────────────────────────────────────────────── +2026/03/22 10:34:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:34:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:34:17.377648185Z"} +2026/03/22 10:34:22 [detection_layer] {"stage_name":"detection_layer","events_processed":545,"events_dropped":0,"avg_latency_ms":19.86476423363243,"throughput_eps":0,"last_update":"2026-03-22T10:34:17.479901952Z"} +2026/03/22 10:34:22 [transform_engine] {"stage_name":"transform_engine","events_processed":545,"events_dropped":0,"avg_latency_ms":175.5007418207783,"throughput_eps":0,"last_update":"2026-03-22T10:34:17.479911891Z"} +2026/03/22 10:34:22 [log_collector] {"stage_name":"log_collector","events_processed":26032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5206.4,"last_update":"2026-03-22T10:34:22.367977996Z"} +2026/03/22 10:34:22 [metric_collector] {"stage_name":"metric_collector","events_processed":16369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3273.8,"last_update":"2026-03-22T10:34:17.368881362Z"} +2026/03/22 10:34:22 ───────────────────────────────────────────────── +2026/03/22 10:34:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:34:27 [transform_engine] {"stage_name":"transform_engine","events_processed":545,"events_dropped":0,"avg_latency_ms":175.5007418207783,"throughput_eps":0,"last_update":"2026-03-22T10:34:22.479749334Z"} +2026/03/22 10:34:27 [log_collector] {"stage_name":"log_collector","events_processed":26032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5206.4,"last_update":"2026-03-22T10:34:22.367977996Z"} +2026/03/22 10:34:27 [metric_collector] {"stage_name":"metric_collector","events_processed":16374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3274.8,"last_update":"2026-03-22T10:34:22.368823635Z"} +2026/03/22 10:34:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:34:22.377532298Z"} +2026/03/22 10:34:27 [detection_layer] {"stage_name":"detection_layer","events_processed":545,"events_dropped":0,"avg_latency_ms":19.86476423363243,"throughput_eps":0,"last_update":"2026-03-22T10:34:22.479740678Z"} +2026/03/22 10:34:27 ───────────────────────────────────────────────── +2026/03/22 10:34:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:34:32 [log_collector] {"stage_name":"log_collector","events_processed":26032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5206.4,"last_update":"2026-03-22T10:34:27.36900297Z"} +2026/03/22 10:34:32 [metric_collector] {"stage_name":"metric_collector","events_processed":16379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3275.8,"last_update":"2026-03-22T10:34:27.369256506Z"} +2026/03/22 10:34:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:34:27.377933788Z"} +2026/03/22 10:34:32 [detection_layer] {"stage_name":"detection_layer","events_processed":545,"events_dropped":0,"avg_latency_ms":19.86476423363243,"throughput_eps":0,"last_update":"2026-03-22T10:34:27.479282871Z"} +2026/03/22 10:34:32 [transform_engine] {"stage_name":"transform_engine","events_processed":546,"events_dropped":0,"avg_latency_ms":156.28151685662266,"throughput_eps":0,"last_update":"2026-03-22T10:34:27.558705413Z"} +2026/03/22 10:34:32 ───────────────────────────────────────────────── +2026/03/22 10:34:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:34:37 [log_collector] {"stage_name":"log_collector","events_processed":26032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5206.4,"last_update":"2026-03-22T10:34:32.368593374Z"} +2026/03/22 10:34:37 [metric_collector] {"stage_name":"metric_collector","events_processed":16384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3276.8,"last_update":"2026-03-22T10:34:32.368931081Z"} +2026/03/22 10:34:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:34:32.377966299Z"} +2026/03/22 10:34:37 [detection_layer] {"stage_name":"detection_layer","events_processed":546,"events_dropped":0,"avg_latency_ms":20.321873586905944,"throughput_eps":0,"last_update":"2026-03-22T10:34:32.479385377Z"} +2026/03/22 10:34:37 [transform_engine] {"stage_name":"transform_engine","events_processed":546,"events_dropped":0,"avg_latency_ms":156.28151685662266,"throughput_eps":0,"last_update":"2026-03-22T10:34:32.479401057Z"} +2026/03/22 10:34:37 ───────────────────────────────────────────────── +2026/03/22 10:34:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:34:42 [log_collector] {"stage_name":"log_collector","events_processed":26032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5206.4,"last_update":"2026-03-22T10:34:37.368450375Z"} +2026/03/22 10:34:42 [metric_collector] {"stage_name":"metric_collector","events_processed":16389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3277.8,"last_update":"2026-03-22T10:34:37.36901697Z"} +2026/03/22 10:34:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:34:37.377594021Z"} +2026/03/22 10:34:42 [detection_layer] {"stage_name":"detection_layer","events_processed":546,"events_dropped":0,"avg_latency_ms":20.321873586905944,"throughput_eps":0,"last_update":"2026-03-22T10:34:37.479004582Z"} +2026/03/22 10:34:42 [transform_engine] {"stage_name":"transform_engine","events_processed":546,"events_dropped":0,"avg_latency_ms":156.28151685662266,"throughput_eps":0,"last_update":"2026-03-22T10:34:37.47883651Z"} +2026/03/22 10:34:42 ───────────────────────────────────────────────── +2026/03/22 10:34:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:34:47 [metric_collector] {"stage_name":"metric_collector","events_processed":16394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3278.8,"last_update":"2026-03-22T10:34:42.369231194Z"} +2026/03/22 10:34:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6560,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:34:42.377382087Z"} +2026/03/22 10:34:47 [detection_layer] {"stage_name":"detection_layer","events_processed":546,"events_dropped":0,"avg_latency_ms":20.321873586905944,"throughput_eps":0,"last_update":"2026-03-22T10:34:42.479539199Z"} +2026/03/22 10:34:47 [transform_engine] {"stage_name":"transform_engine","events_processed":546,"events_dropped":0,"avg_latency_ms":156.28151685662266,"throughput_eps":0,"last_update":"2026-03-22T10:34:42.479548036Z"} +2026/03/22 10:34:47 [log_collector] {"stage_name":"log_collector","events_processed":26032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5206.4,"last_update":"2026-03-22T10:34:42.368883157Z"} +2026/03/22 10:34:47 ───────────────────────────────────────────────── +2026/03/22 10:34:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:34:52 [log_collector] {"stage_name":"log_collector","events_processed":26032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5206.4,"last_update":"2026-03-22T10:34:47.368889369Z"} +2026/03/22 10:34:52 [metric_collector] {"stage_name":"metric_collector","events_processed":16399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3279.8,"last_update":"2026-03-22T10:34:47.369155489Z"} +2026/03/22 10:34:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:34:47.377386416Z"} +2026/03/22 10:34:52 [detection_layer] {"stage_name":"detection_layer","events_processed":546,"events_dropped":0,"avg_latency_ms":20.321873586905944,"throughput_eps":0,"last_update":"2026-03-22T10:34:47.479775122Z"} +2026/03/22 10:34:52 [transform_engine] {"stage_name":"transform_engine","events_processed":546,"events_dropped":0,"avg_latency_ms":156.28151685662266,"throughput_eps":0,"last_update":"2026-03-22T10:34:47.479791593Z"} +2026/03/22 10:34:52 ───────────────────────────────────────────────── +2026/03/22 10:34:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:34:57 [log_collector] {"stage_name":"log_collector","events_processed":26032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5206.4,"last_update":"2026-03-22T10:34:57.368414783Z"} +2026/03/22 10:34:57 [metric_collector] {"stage_name":"metric_collector","events_processed":16404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3280.8,"last_update":"2026-03-22T10:34:52.369372472Z"} +2026/03/22 10:34:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:34:52.37779736Z"} +2026/03/22 10:34:57 [detection_layer] {"stage_name":"detection_layer","events_processed":546,"events_dropped":0,"avg_latency_ms":20.321873586905944,"throughput_eps":0,"last_update":"2026-03-22T10:34:52.478985725Z"} +2026/03/22 10:34:57 [transform_engine] {"stage_name":"transform_engine","events_processed":546,"events_dropped":0,"avg_latency_ms":156.28151685662266,"throughput_eps":0,"last_update":"2026-03-22T10:34:52.479008559Z"} +2026/03/22 10:34:57 ───────────────────────────────────────────────── +2026/03/22 10:34:57 [ANOMALY] time=2026-03-22T10:34:57Z score=0.8482 method=SEAD details=MAD!:w=0.56,s=0.82 RRCF-fast!:w=0.11,s=0.97 RRCF-mid!:w=0.10,s=1.00 RRCF-slow!:w=0.10,s=1.00 COPOD!:w=0.13,s=0.64 +Saved state: 13 clusters, 26033 messages, reason: none +2026/03/22 10:35:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:35:02 [detection_layer] {"stage_name":"detection_layer","events_processed":546,"events_dropped":0,"avg_latency_ms":20.321873586905944,"throughput_eps":0,"last_update":"2026-03-22T10:34:57.479708387Z"} +2026/03/22 10:35:02 [transform_engine] {"stage_name":"transform_engine","events_processed":547,"events_dropped":0,"avg_latency_ms":139.94946428529815,"throughput_eps":0,"last_update":"2026-03-22T10:34:57.554395597Z"} +2026/03/22 10:35:02 [log_collector] {"stage_name":"log_collector","events_processed":26032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5206.4,"last_update":"2026-03-22T10:34:57.368414783Z"} +2026/03/22 10:35:02 [metric_collector] {"stage_name":"metric_collector","events_processed":16409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3281.8,"last_update":"2026-03-22T10:34:57.368782147Z"} +2026/03/22 10:35:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6566,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:34:57.378419448Z"} +2026/03/22 10:35:02 ───────────────────────────────────────────────── +2026/03/22 10:35:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:35:07 [log_collector] {"stage_name":"log_collector","events_processed":26037,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5207.4,"last_update":"2026-03-22T10:35:02.369799198Z"} +2026/03/22 10:35:07 [metric_collector] {"stage_name":"metric_collector","events_processed":16414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3282.8,"last_update":"2026-03-22T10:35:02.370066049Z"} +2026/03/22 10:35:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:35:02.38122231Z"} +2026/03/22 10:35:07 [detection_layer] {"stage_name":"detection_layer","events_processed":547,"events_dropped":0,"avg_latency_ms":19.237779869524758,"throughput_eps":0,"last_update":"2026-03-22T10:35:02.47943208Z"} +2026/03/22 10:35:07 [transform_engine] {"stage_name":"transform_engine","events_processed":547,"events_dropped":0,"avg_latency_ms":139.94946428529815,"throughput_eps":0,"last_update":"2026-03-22T10:35:02.479416821Z"} +2026/03/22 10:35:07 ───────────────────────────────────────────────── +2026/03/22 10:35:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:35:12 [log_collector] {"stage_name":"log_collector","events_processed":26037,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5207.4,"last_update":"2026-03-22T10:35:07.367942591Z"} +2026/03/22 10:35:12 [metric_collector] {"stage_name":"metric_collector","events_processed":16419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3283.8,"last_update":"2026-03-22T10:35:07.368275038Z"} +2026/03/22 10:35:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6570,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:35:07.375152132Z"} +2026/03/22 10:35:12 [detection_layer] {"stage_name":"detection_layer","events_processed":547,"events_dropped":0,"avg_latency_ms":19.237779869524758,"throughput_eps":0,"last_update":"2026-03-22T10:35:07.479457537Z"} +2026/03/22 10:35:12 [transform_engine] {"stage_name":"transform_engine","events_processed":547,"events_dropped":0,"avg_latency_ms":139.94946428529815,"throughput_eps":0,"last_update":"2026-03-22T10:35:07.479483097Z"} +2026/03/22 10:35:12 ───────────────────────────────────────────────── +2026/03/22 10:35:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:35:17 [transform_engine] {"stage_name":"transform_engine","events_processed":547,"events_dropped":0,"avg_latency_ms":139.94946428529815,"throughput_eps":0,"last_update":"2026-03-22T10:35:12.479498363Z"} +2026/03/22 10:35:17 [log_collector] {"stage_name":"log_collector","events_processed":26037,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5207.4,"last_update":"2026-03-22T10:35:12.368423309Z"} +2026/03/22 10:35:17 [metric_collector] {"stage_name":"metric_collector","events_processed":16424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3284.8,"last_update":"2026-03-22T10:35:12.368849305Z"} +2026/03/22 10:35:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6572,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:35:12.376266894Z"} +2026/03/22 10:35:17 [detection_layer] {"stage_name":"detection_layer","events_processed":547,"events_dropped":0,"avg_latency_ms":19.237779869524758,"throughput_eps":0,"last_update":"2026-03-22T10:35:12.47948118Z"} +2026/03/22 10:35:17 ───────────────────────────────────────────────── +2026/03/22 10:35:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:35:22 [log_collector] {"stage_name":"log_collector","events_processed":26037,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5207.4,"last_update":"2026-03-22T10:35:17.368538585Z"} +2026/03/22 10:35:22 [metric_collector] {"stage_name":"metric_collector","events_processed":16429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3285.8,"last_update":"2026-03-22T10:35:17.368908483Z"} +2026/03/22 10:35:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:35:17.375920285Z"} +2026/03/22 10:35:22 [detection_layer] {"stage_name":"detection_layer","events_processed":547,"events_dropped":0,"avg_latency_ms":19.237779869524758,"throughput_eps":0,"last_update":"2026-03-22T10:35:17.479304426Z"} +2026/03/22 10:35:22 [transform_engine] {"stage_name":"transform_engine","events_processed":547,"events_dropped":0,"avg_latency_ms":139.94946428529815,"throughput_eps":0,"last_update":"2026-03-22T10:35:17.479313955Z"} +2026/03/22 10:35:22 ───────────────────────────────────────────────── +2026/03/22 10:35:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:35:27 [log_collector] {"stage_name":"log_collector","events_processed":26037,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5207.4,"last_update":"2026-03-22T10:35:22.368481438Z"} +2026/03/22 10:35:27 [metric_collector] {"stage_name":"metric_collector","events_processed":16434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3286.8,"last_update":"2026-03-22T10:35:22.368631215Z"} +2026/03/22 10:35:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6576,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:35:22.375161474Z"} +2026/03/22 10:35:27 [detection_layer] {"stage_name":"detection_layer","events_processed":547,"events_dropped":0,"avg_latency_ms":19.237779869524758,"throughput_eps":0,"last_update":"2026-03-22T10:35:22.479379363Z"} +2026/03/22 10:35:27 [transform_engine] {"stage_name":"transform_engine","events_processed":547,"events_dropped":0,"avg_latency_ms":139.94946428529815,"throughput_eps":0,"last_update":"2026-03-22T10:35:22.479388871Z"} +2026/03/22 10:35:27 ───────────────────────────────────────────────── +2026/03/22 10:35:27 [ANOMALY] time=2026-03-22T10:35:27Z score=0.7632 method=SEAD details=MAD!:w=0.56,s=0.73 RRCF-fast!:w=0.11,s=0.82 RRCF-mid!:w=0.10,s=0.93 RRCF-slow!:w=0.10,s=0.95 COPOD!:w=0.13,s=0.58 +2026/03/22 10:35:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:35:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:35:27.377474754Z"} +2026/03/22 10:35:32 [detection_layer] {"stage_name":"detection_layer","events_processed":547,"events_dropped":0,"avg_latency_ms":19.237779869524758,"throughput_eps":0,"last_update":"2026-03-22T10:35:27.479866394Z"} +2026/03/22 10:35:32 [transform_engine] {"stage_name":"transform_engine","events_processed":548,"events_dropped":0,"avg_latency_ms":134.9158362282385,"throughput_eps":0,"last_update":"2026-03-22T10:35:27.594666383Z"} +2026/03/22 10:35:32 [log_collector] {"stage_name":"log_collector","events_processed":26037,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5207.4,"last_update":"2026-03-22T10:35:27.367973673Z"} +2026/03/22 10:35:32 [metric_collector] {"stage_name":"metric_collector","events_processed":16439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3287.8,"last_update":"2026-03-22T10:35:27.368380923Z"} +2026/03/22 10:35:32 ───────────────────────────────────────────────── +2026/03/22 10:35:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:35:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6580,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:35:32.377557369Z"} +2026/03/22 10:35:37 [detection_layer] {"stage_name":"detection_layer","events_processed":548,"events_dropped":0,"avg_latency_ms":18.536827495619807,"throughput_eps":0,"last_update":"2026-03-22T10:35:32.479814921Z"} +2026/03/22 10:35:37 [transform_engine] {"stage_name":"transform_engine","events_processed":548,"events_dropped":0,"avg_latency_ms":134.9158362282385,"throughput_eps":0,"last_update":"2026-03-22T10:35:32.47977753Z"} +2026/03/22 10:35:37 [log_collector] {"stage_name":"log_collector","events_processed":26037,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5207.4,"last_update":"2026-03-22T10:35:32.368536498Z"} +2026/03/22 10:35:37 [metric_collector] {"stage_name":"metric_collector","events_processed":16444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3288.8,"last_update":"2026-03-22T10:35:32.369032358Z"} +2026/03/22 10:35:37 ───────────────────────────────────────────────── +2026/03/22 10:35:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:35:42 [log_collector] {"stage_name":"log_collector","events_processed":26037,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5207.4,"last_update":"2026-03-22T10:35:37.368538266Z"} +2026/03/22 10:35:42 [metric_collector] {"stage_name":"metric_collector","events_processed":16449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3289.8,"last_update":"2026-03-22T10:35:37.368755151Z"} +2026/03/22 10:35:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:35:37.376732924Z"} +2026/03/22 10:35:42 [detection_layer] {"stage_name":"detection_layer","events_processed":548,"events_dropped":0,"avg_latency_ms":18.536827495619807,"throughput_eps":0,"last_update":"2026-03-22T10:35:37.479992025Z"} +2026/03/22 10:35:42 [transform_engine] {"stage_name":"transform_engine","events_processed":548,"events_dropped":0,"avg_latency_ms":134.9158362282385,"throughput_eps":0,"last_update":"2026-03-22T10:35:37.478853674Z"} +2026/03/22 10:35:42 ───────────────────────────────────────────────── +2026/03/22 10:35:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:35:47 [metric_collector] {"stage_name":"metric_collector","events_processed":16454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3290.8,"last_update":"2026-03-22T10:35:42.368665111Z"} +2026/03/22 10:35:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:35:42.377549741Z"} +2026/03/22 10:35:47 [detection_layer] {"stage_name":"detection_layer","events_processed":548,"events_dropped":0,"avg_latency_ms":18.536827495619807,"throughput_eps":0,"last_update":"2026-03-22T10:35:42.479906153Z"} +2026/03/22 10:35:47 [transform_engine] {"stage_name":"transform_engine","events_processed":548,"events_dropped":0,"avg_latency_ms":134.9158362282385,"throughput_eps":0,"last_update":"2026-03-22T10:35:42.479877348Z"} +2026/03/22 10:35:47 [log_collector] {"stage_name":"log_collector","events_processed":26037,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5207.4,"last_update":"2026-03-22T10:35:42.3683299Z"} +2026/03/22 10:35:47 ───────────────────────────────────────────────── +2026/03/22 10:35:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:35:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6586,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:35:47.377071034Z"} +2026/03/22 10:35:52 [detection_layer] {"stage_name":"detection_layer","events_processed":548,"events_dropped":0,"avg_latency_ms":18.536827495619807,"throughput_eps":0,"last_update":"2026-03-22T10:35:47.479301665Z"} +2026/03/22 10:35:52 [transform_engine] {"stage_name":"transform_engine","events_processed":548,"events_dropped":0,"avg_latency_ms":134.9158362282385,"throughput_eps":0,"last_update":"2026-03-22T10:35:47.479255197Z"} +2026/03/22 10:35:52 [log_collector] {"stage_name":"log_collector","events_processed":26037,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5207.4,"last_update":"2026-03-22T10:35:52.368692902Z"} +2026/03/22 10:35:52 [metric_collector] {"stage_name":"metric_collector","events_processed":16459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3291.8,"last_update":"2026-03-22T10:35:47.368307286Z"} +2026/03/22 10:35:52 ───────────────────────────────────────────────── +2026/03/22 10:35:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:35:57 [log_collector] {"stage_name":"log_collector","events_processed":26037,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5207.4,"last_update":"2026-03-22T10:35:57.367991702Z"} +2026/03/22 10:35:57 [metric_collector] {"stage_name":"metric_collector","events_processed":16464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3292.8,"last_update":"2026-03-22T10:35:52.369147913Z"} +2026/03/22 10:35:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6588,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:35:52.377545599Z"} +2026/03/22 10:35:57 [detection_layer] {"stage_name":"detection_layer","events_processed":548,"events_dropped":0,"avg_latency_ms":18.536827495619807,"throughput_eps":0,"last_update":"2026-03-22T10:35:52.478998972Z"} +2026/03/22 10:35:57 [transform_engine] {"stage_name":"transform_engine","events_processed":548,"events_dropped":0,"avg_latency_ms":134.9158362282385,"throughput_eps":0,"last_update":"2026-03-22T10:35:52.478825891Z"} +2026/03/22 10:35:57 ───────────────────────────────────────────────── +2026/03/22 10:35:57 [ANOMALY] time=2026-03-22T10:35:57Z score=0.8539 method=SEAD details=MAD!:w=0.57,s=0.81 RRCF-fast!:w=0.11,s=0.95 RRCF-mid!:w=0.10,s=0.97 RRCF-slow!:w=0.10,s=0.98 COPOD!:w=0.13,s=0.77 +2026/03/22 10:36:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:36:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:35:57.377770494Z"} +2026/03/22 10:36:02 [detection_layer] {"stage_name":"detection_layer","events_processed":548,"events_dropped":0,"avg_latency_ms":18.536827495619807,"throughput_eps":0,"last_update":"2026-03-22T10:35:57.478956824Z"} +2026/03/22 10:36:02 [transform_engine] {"stage_name":"transform_engine","events_processed":549,"events_dropped":0,"avg_latency_ms":122.06493658259082,"throughput_eps":0,"last_update":"2026-03-22T10:35:57.549561905Z"} +2026/03/22 10:36:02 [log_collector] {"stage_name":"log_collector","events_processed":26037,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5207.4,"last_update":"2026-03-22T10:35:57.367991702Z"} +2026/03/22 10:36:02 [metric_collector] {"stage_name":"metric_collector","events_processed":16469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3293.8,"last_update":"2026-03-22T10:35:57.368631518Z"} +2026/03/22 10:36:02 ───────────────────────────────────────────────── +2026/03/22 10:36:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:36:07 [transform_engine] {"stage_name":"transform_engine","events_processed":549,"events_dropped":0,"avg_latency_ms":122.06493658259082,"throughput_eps":0,"last_update":"2026-03-22T10:36:02.479600211Z"} +2026/03/22 10:36:07 [log_collector] {"stage_name":"log_collector","events_processed":26037,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5207.4,"last_update":"2026-03-22T10:36:02.368400068Z"} +2026/03/22 10:36:07 [metric_collector] {"stage_name":"metric_collector","events_processed":16474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3294.8,"last_update":"2026-03-22T10:36:02.368557679Z"} +2026/03/22 10:36:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6592,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:36:02.377400879Z"} +2026/03/22 10:36:07 [detection_layer] {"stage_name":"detection_layer","events_processed":549,"events_dropped":0,"avg_latency_ms":17.635396996495846,"throughput_eps":0,"last_update":"2026-03-22T10:36:02.479587596Z"} +2026/03/22 10:36:07 ───────────────────────────────────────────────── +2026/03/22 10:36:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:36:12 [log_collector] {"stage_name":"log_collector","events_processed":26037,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5207.4,"last_update":"2026-03-22T10:36:12.36817755Z"} +2026/03/22 10:36:12 [metric_collector] {"stage_name":"metric_collector","events_processed":16479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3295.8,"last_update":"2026-03-22T10:36:07.368562439Z"} +2026/03/22 10:36:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:36:07.377570565Z"} +2026/03/22 10:36:12 [detection_layer] {"stage_name":"detection_layer","events_processed":549,"events_dropped":0,"avg_latency_ms":17.635396996495846,"throughput_eps":0,"last_update":"2026-03-22T10:36:07.479793913Z"} +2026/03/22 10:36:12 [transform_engine] {"stage_name":"transform_engine","events_processed":549,"events_dropped":0,"avg_latency_ms":122.06493658259082,"throughput_eps":0,"last_update":"2026-03-22T10:36:07.479805745Z"} +2026/03/22 10:36:12 ───────────────────────────────────────────────── +2026/03/22 10:36:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:36:17 [log_collector] {"stage_name":"log_collector","events_processed":26037,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5207.4,"last_update":"2026-03-22T10:36:17.368335319Z"} +2026/03/22 10:36:17 [metric_collector] {"stage_name":"metric_collector","events_processed":16484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3296.8,"last_update":"2026-03-22T10:36:12.368582685Z"} +2026/03/22 10:36:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:36:12.37508937Z"} +2026/03/22 10:36:17 [detection_layer] {"stage_name":"detection_layer","events_processed":549,"events_dropped":0,"avg_latency_ms":17.635396996495846,"throughput_eps":0,"last_update":"2026-03-22T10:36:12.4792719Z"} +2026/03/22 10:36:17 [transform_engine] {"stage_name":"transform_engine","events_processed":549,"events_dropped":0,"avg_latency_ms":122.06493658259082,"throughput_eps":0,"last_update":"2026-03-22T10:36:12.479282941Z"} +2026/03/22 10:36:17 ───────────────────────────────────────────────── +2026/03/22 10:36:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:36:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:36:17.379396627Z"} +2026/03/22 10:36:22 [detection_layer] {"stage_name":"detection_layer","events_processed":549,"events_dropped":0,"avg_latency_ms":17.635396996495846,"throughput_eps":0,"last_update":"2026-03-22T10:36:17.479583404Z"} +2026/03/22 10:36:22 [transform_engine] {"stage_name":"transform_engine","events_processed":549,"events_dropped":0,"avg_latency_ms":122.06493658259082,"throughput_eps":0,"last_update":"2026-03-22T10:36:17.479593072Z"} +2026/03/22 10:36:22 [log_collector] {"stage_name":"log_collector","events_processed":26037,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5207.4,"last_update":"2026-03-22T10:36:22.368315264Z"} +2026/03/22 10:36:22 [metric_collector] {"stage_name":"metric_collector","events_processed":16489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3297.8,"last_update":"2026-03-22T10:36:17.368583825Z"} +2026/03/22 10:36:22 ───────────────────────────────────────────────── +2026/03/22 10:36:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:36:27 [log_collector] {"stage_name":"log_collector","events_processed":26037,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5207.4,"last_update":"2026-03-22T10:36:27.367986767Z"} +2026/03/22 10:36:27 [metric_collector] {"stage_name":"metric_collector","events_processed":16494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3298.8,"last_update":"2026-03-22T10:36:22.368486001Z"} +2026/03/22 10:36:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:36:22.375924861Z"} +2026/03/22 10:36:27 [detection_layer] {"stage_name":"detection_layer","events_processed":549,"events_dropped":0,"avg_latency_ms":17.635396996495846,"throughput_eps":0,"last_update":"2026-03-22T10:36:22.47910914Z"} +2026/03/22 10:36:27 [transform_engine] {"stage_name":"transform_engine","events_processed":549,"events_dropped":0,"avg_latency_ms":122.06493658259082,"throughput_eps":0,"last_update":"2026-03-22T10:36:22.479117095Z"} +2026/03/22 10:36:27 ───────────────────────────────────────────────── +2026/03/22 10:36:27 [ANOMALY] time=2026-03-22T10:36:27Z score=0.8032 method=SEAD details=MAD!:w=0.57,s=0.75 RRCF-fast!:w=0.11,s=1.00 RRCF-mid!:w=0.10,s=1.00 RRCF-slow!:w=0.10,s=1.00 COPOD!:w=0.13,s=0.58 +2026/03/22 10:36:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:36:32 [log_collector] {"stage_name":"log_collector","events_processed":26037,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5207.4,"last_update":"2026-03-22T10:36:32.368652001Z"} +2026/03/22 10:36:32 [metric_collector] {"stage_name":"metric_collector","events_processed":16499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3299.8,"last_update":"2026-03-22T10:36:27.36838502Z"} +2026/03/22 10:36:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6602,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:36:27.377093021Z"} +2026/03/22 10:36:32 [detection_layer] {"stage_name":"detection_layer","events_processed":549,"events_dropped":0,"avg_latency_ms":17.635396996495846,"throughput_eps":0,"last_update":"2026-03-22T10:36:27.479289898Z"} +2026/03/22 10:36:32 [transform_engine] {"stage_name":"transform_engine","events_processed":550,"events_dropped":0,"avg_latency_ms":111.81547266607267,"throughput_eps":0,"last_update":"2026-03-22T10:36:27.550120129Z"} +2026/03/22 10:36:32 ───────────────────────────────────────────────── +2026/03/22 10:36:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:36:37 [detection_layer] {"stage_name":"detection_layer","events_processed":550,"events_dropped":0,"avg_latency_ms":16.372929797196676,"throughput_eps":0,"last_update":"2026-03-22T10:36:32.479653663Z"} +2026/03/22 10:36:37 [transform_engine] {"stage_name":"transform_engine","events_processed":550,"events_dropped":0,"avg_latency_ms":111.81547266607267,"throughput_eps":0,"last_update":"2026-03-22T10:36:32.479664324Z"} +2026/03/22 10:36:37 [log_collector] {"stage_name":"log_collector","events_processed":26037,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5207.4,"last_update":"2026-03-22T10:36:37.368420365Z"} +2026/03/22 10:36:37 [metric_collector] {"stage_name":"metric_collector","events_processed":16504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3300.8,"last_update":"2026-03-22T10:36:32.369207525Z"} +2026/03/22 10:36:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:36:32.377512434Z"} +2026/03/22 10:36:37 ───────────────────────────────────────────────── +2026/03/22 10:36:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:36:42 [log_collector] {"stage_name":"log_collector","events_processed":26037,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5207.4,"last_update":"2026-03-22T10:36:37.368420365Z"} +2026/03/22 10:36:42 [metric_collector] {"stage_name":"metric_collector","events_processed":16509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3301.8,"last_update":"2026-03-22T10:36:37.36903886Z"} +2026/03/22 10:36:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:36:37.378588893Z"} +2026/03/22 10:36:42 [detection_layer] {"stage_name":"detection_layer","events_processed":550,"events_dropped":0,"avg_latency_ms":16.372929797196676,"throughput_eps":0,"last_update":"2026-03-22T10:36:37.479779102Z"} +2026/03/22 10:36:42 [transform_engine] {"stage_name":"transform_engine","events_processed":550,"events_dropped":0,"avg_latency_ms":111.81547266607267,"throughput_eps":0,"last_update":"2026-03-22T10:36:37.479791996Z"} +2026/03/22 10:36:42 ───────────────────────────────────────────────── +2026/03/22 10:36:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:36:47 [detection_layer] {"stage_name":"detection_layer","events_processed":550,"events_dropped":0,"avg_latency_ms":16.372929797196676,"throughput_eps":0,"last_update":"2026-03-22T10:36:42.479876783Z"} +2026/03/22 10:36:47 [transform_engine] {"stage_name":"transform_engine","events_processed":550,"events_dropped":0,"avg_latency_ms":111.81547266607267,"throughput_eps":0,"last_update":"2026-03-22T10:36:42.479888015Z"} +2026/03/22 10:36:47 [log_collector] {"stage_name":"log_collector","events_processed":26037,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5207.4,"last_update":"2026-03-22T10:36:47.368656034Z"} +2026/03/22 10:36:47 [metric_collector] {"stage_name":"metric_collector","events_processed":16514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3302.8,"last_update":"2026-03-22T10:36:42.368400782Z"} +2026/03/22 10:36:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:36:42.377669707Z"} +2026/03/22 10:36:47 ───────────────────────────────────────────────── +2026/03/22 10:36:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:36:52 [log_collector] {"stage_name":"log_collector","events_processed":26037,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5207.4,"last_update":"2026-03-22T10:36:47.368656034Z"} +2026/03/22 10:36:52 [metric_collector] {"stage_name":"metric_collector","events_processed":16519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3303.8,"last_update":"2026-03-22T10:36:47.368942704Z"} +2026/03/22 10:36:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:36:47.377956691Z"} +2026/03/22 10:36:52 [detection_layer] {"stage_name":"detection_layer","events_processed":550,"events_dropped":0,"avg_latency_ms":16.372929797196676,"throughput_eps":0,"last_update":"2026-03-22T10:36:47.479122021Z"} +2026/03/22 10:36:52 [transform_engine] {"stage_name":"transform_engine","events_processed":550,"events_dropped":0,"avg_latency_ms":111.81547266607267,"throughput_eps":0,"last_update":"2026-03-22T10:36:47.479130937Z"} +2026/03/22 10:36:52 ───────────────────────────────────────────────── +2026/03/22 10:36:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:36:57 [log_collector] {"stage_name":"log_collector","events_processed":26037,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5207.4,"last_update":"2026-03-22T10:36:52.368616308Z"} +2026/03/22 10:36:57 [metric_collector] {"stage_name":"metric_collector","events_processed":16524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3304.8,"last_update":"2026-03-22T10:36:52.368955007Z"} +2026/03/22 10:36:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:36:52.377561774Z"} +2026/03/22 10:36:57 [detection_layer] {"stage_name":"detection_layer","events_processed":550,"events_dropped":0,"avg_latency_ms":16.372929797196676,"throughput_eps":0,"last_update":"2026-03-22T10:36:52.479722561Z"} +2026/03/22 10:36:57 [transform_engine] {"stage_name":"transform_engine","events_processed":550,"events_dropped":0,"avg_latency_ms":111.81547266607267,"throughput_eps":0,"last_update":"2026-03-22T10:36:52.479730356Z"} +2026/03/22 10:36:57 ───────────────────────────────────────────────── +2026/03/22 10:36:57 [ANOMALY] time=2026-03-22T10:36:57Z score=0.8627 method=SEAD details=MAD!:w=0.57,s=0.78 RRCF-fast!:w=0.11,s=0.98 RRCF-mid!:w=0.10,s=1.00 RRCF-slow!:w=0.10,s=1.00 COPOD!:w=0.13,s=0.92 +2026/03/22 10:37:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:37:02 [log_collector] {"stage_name":"log_collector","events_processed":26037,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5207.4,"last_update":"2026-03-22T10:36:57.368524833Z"} +2026/03/22 10:37:02 [metric_collector] {"stage_name":"metric_collector","events_processed":16529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3305.8,"last_update":"2026-03-22T10:36:57.368911294Z"} +2026/03/22 10:37:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:36:57.378124422Z"} +2026/03/22 10:37:02 [detection_layer] {"stage_name":"detection_layer","events_processed":550,"events_dropped":0,"avg_latency_ms":16.372929797196676,"throughput_eps":0,"last_update":"2026-03-22T10:36:57.479420813Z"} +2026/03/22 10:37:02 [transform_engine] {"stage_name":"transform_engine","events_processed":551,"events_dropped":0,"avg_latency_ms":103.56937033285814,"throughput_eps":0,"last_update":"2026-03-22T10:36:57.550023218Z"} +2026/03/22 10:37:02 ───────────────────────────────────────────────── +Saved state: 14 clusters, 26038 messages, reason: cluster_created +2026/03/22 10:37:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:37:07 [log_collector] {"stage_name":"log_collector","events_processed":26037,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5207.4,"last_update":"2026-03-22T10:37:02.368564646Z"} +2026/03/22 10:37:07 [metric_collector] {"stage_name":"metric_collector","events_processed":16534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3306.8,"last_update":"2026-03-22T10:37:02.368986424Z"} +2026/03/22 10:37:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:37:02.378523674Z"} +2026/03/22 10:37:07 [detection_layer] {"stage_name":"detection_layer","events_processed":551,"events_dropped":0,"avg_latency_ms":15.601378837757341,"throughput_eps":0,"last_update":"2026-03-22T10:37:02.479715494Z"} +2026/03/22 10:37:07 [transform_engine] {"stage_name":"transform_engine","events_processed":551,"events_dropped":0,"avg_latency_ms":103.56937033285814,"throughput_eps":0,"last_update":"2026-03-22T10:37:02.479741274Z"} +2026/03/22 10:37:07 ───────────────────────────────────────────────── +2026/03/22 10:37:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:37:12 [log_collector] {"stage_name":"log_collector","events_processed":26038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5207.6,"last_update":"2026-03-22T10:37:07.368379414Z"} +2026/03/22 10:37:12 [metric_collector] {"stage_name":"metric_collector","events_processed":16539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3307.8,"last_update":"2026-03-22T10:37:07.369076008Z"} +2026/03/22 10:37:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:37:07.37724167Z"} +2026/03/22 10:37:12 [detection_layer] {"stage_name":"detection_layer","events_processed":551,"events_dropped":0,"avg_latency_ms":15.601378837757341,"throughput_eps":0,"last_update":"2026-03-22T10:37:07.479481258Z"} +2026/03/22 10:37:12 [transform_engine] {"stage_name":"transform_engine","events_processed":551,"events_dropped":0,"avg_latency_ms":103.56937033285814,"throughput_eps":0,"last_update":"2026-03-22T10:37:07.479457362Z"} +2026/03/22 10:37:12 ───────────────────────────────────────────────── +2026/03/22 10:37:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:37:17 [transform_engine] {"stage_name":"transform_engine","events_processed":551,"events_dropped":0,"avg_latency_ms":103.56937033285814,"throughput_eps":0,"last_update":"2026-03-22T10:37:12.479566063Z"} +2026/03/22 10:37:17 [log_collector] {"stage_name":"log_collector","events_processed":26038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5207.6,"last_update":"2026-03-22T10:37:12.367957738Z"} +2026/03/22 10:37:17 [metric_collector] {"stage_name":"metric_collector","events_processed":16544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3308.8,"last_update":"2026-03-22T10:37:12.368362615Z"} +2026/03/22 10:37:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6620,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:37:12.38438691Z"} +2026/03/22 10:37:17 [detection_layer] {"stage_name":"detection_layer","events_processed":551,"events_dropped":0,"avg_latency_ms":15.601378837757341,"throughput_eps":0,"last_update":"2026-03-22T10:37:12.479542678Z"} +2026/03/22 10:37:17 ───────────────────────────────────────────────── +2026/03/22 10:37:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:37:22 [log_collector] {"stage_name":"log_collector","events_processed":26038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5207.6,"last_update":"2026-03-22T10:37:17.368924522Z"} +2026/03/22 10:37:22 [metric_collector] {"stage_name":"metric_collector","events_processed":16549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3309.8,"last_update":"2026-03-22T10:37:17.369269222Z"} +2026/03/22 10:37:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6622,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:37:17.375211075Z"} +2026/03/22 10:37:22 [detection_layer] {"stage_name":"detection_layer","events_processed":551,"events_dropped":0,"avg_latency_ms":15.601378837757341,"throughput_eps":0,"last_update":"2026-03-22T10:37:17.47947505Z"} +2026/03/22 10:37:22 [transform_engine] {"stage_name":"transform_engine","events_processed":551,"events_dropped":0,"avg_latency_ms":103.56937033285814,"throughput_eps":0,"last_update":"2026-03-22T10:37:17.479489538Z"} +2026/03/22 10:37:22 ───────────────────────────────────────────────── +2026/03/22 10:37:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:37:27 [log_collector] {"stage_name":"log_collector","events_processed":26038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5207.6,"last_update":"2026-03-22T10:37:22.368437078Z"} +2026/03/22 10:37:27 [metric_collector] {"stage_name":"metric_collector","events_processed":16554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3310.8,"last_update":"2026-03-22T10:37:22.36871499Z"} +2026/03/22 10:37:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:37:22.377456675Z"} +2026/03/22 10:37:27 [detection_layer] {"stage_name":"detection_layer","events_processed":551,"events_dropped":0,"avg_latency_ms":15.601378837757341,"throughput_eps":0,"last_update":"2026-03-22T10:37:22.479628382Z"} +2026/03/22 10:37:27 [transform_engine] {"stage_name":"transform_engine","events_processed":551,"events_dropped":0,"avg_latency_ms":103.56937033285814,"throughput_eps":0,"last_update":"2026-03-22T10:37:22.479636439Z"} +2026/03/22 10:37:27 ───────────────────────────────────────────────── +2026/03/22 10:37:27 [ANOMALY] time=2026-03-22T10:37:27Z score=0.7853 method=SEAD details=MAD!:w=0.57,s=0.74 RRCF-fast!:w=0.11,s=0.95 RRCF-mid!:w=0.10,s=0.99 RRCF-slow!:w=0.10,s=0.99 COPOD!:w=0.13,s=0.52 +2026/03/22 10:37:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:37:32 [log_collector] {"stage_name":"log_collector","events_processed":26038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5207.6,"last_update":"2026-03-22T10:37:27.368596169Z"} +2026/03/22 10:37:32 [metric_collector] {"stage_name":"metric_collector","events_processed":16559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3311.8,"last_update":"2026-03-22T10:37:27.368905142Z"} +2026/03/22 10:37:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:37:27.377738863Z"} +2026/03/22 10:37:32 [detection_layer] {"stage_name":"detection_layer","events_processed":551,"events_dropped":0,"avg_latency_ms":15.601378837757341,"throughput_eps":0,"last_update":"2026-03-22T10:37:27.479974342Z"} +2026/03/22 10:37:32 [transform_engine] {"stage_name":"transform_engine","events_processed":552,"events_dropped":0,"avg_latency_ms":106.02851786628652,"throughput_eps":0,"last_update":"2026-03-22T10:37:27.595715965Z"} +2026/03/22 10:37:32 ───────────────────────────────────────────────── +2026/03/22 10:37:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:37:37 [detection_layer] {"stage_name":"detection_layer","events_processed":552,"events_dropped":0,"avg_latency_ms":14.980542870205873,"throughput_eps":0,"last_update":"2026-03-22T10:37:32.479863824Z"} +2026/03/22 10:37:37 [transform_engine] {"stage_name":"transform_engine","events_processed":552,"events_dropped":0,"avg_latency_ms":106.02851786628652,"throughput_eps":0,"last_update":"2026-03-22T10:37:32.479910183Z"} +2026/03/22 10:37:37 [log_collector] {"stage_name":"log_collector","events_processed":26038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5207.6,"last_update":"2026-03-22T10:37:32.36817668Z"} +2026/03/22 10:37:37 [metric_collector] {"stage_name":"metric_collector","events_processed":16564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3312.8,"last_update":"2026-03-22T10:37:32.368702507Z"} +2026/03/22 10:37:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:37:32.377666458Z"} +2026/03/22 10:37:37 ───────────────────────────────────────────────── +2026/03/22 10:37:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:37:42 [log_collector] {"stage_name":"log_collector","events_processed":26038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5207.6,"last_update":"2026-03-22T10:37:37.367956479Z"} +2026/03/22 10:37:42 [metric_collector] {"stage_name":"metric_collector","events_processed":16569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3313.8,"last_update":"2026-03-22T10:37:37.368394157Z"} +2026/03/22 10:37:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:37:37.376600026Z"} +2026/03/22 10:37:42 [detection_layer] {"stage_name":"detection_layer","events_processed":552,"events_dropped":0,"avg_latency_ms":14.980542870205873,"throughput_eps":0,"last_update":"2026-03-22T10:37:37.479856011Z"} +2026/03/22 10:37:42 [transform_engine] {"stage_name":"transform_engine","events_processed":552,"events_dropped":0,"avg_latency_ms":106.02851786628652,"throughput_eps":0,"last_update":"2026-03-22T10:37:37.479825393Z"} +2026/03/22 10:37:42 ───────────────────────────────────────────────── +2026/03/22 10:37:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:37:47 [transform_engine] {"stage_name":"transform_engine","events_processed":552,"events_dropped":0,"avg_latency_ms":106.02851786628652,"throughput_eps":0,"last_update":"2026-03-22T10:37:42.479740981Z"} +2026/03/22 10:37:47 [log_collector] {"stage_name":"log_collector","events_processed":26038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5207.6,"last_update":"2026-03-22T10:37:47.368405518Z"} +2026/03/22 10:37:47 [metric_collector] {"stage_name":"metric_collector","events_processed":16574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3314.8,"last_update":"2026-03-22T10:37:42.368902121Z"} +2026/03/22 10:37:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6632,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:37:42.377546269Z"} +2026/03/22 10:37:47 [detection_layer] {"stage_name":"detection_layer","events_processed":552,"events_dropped":0,"avg_latency_ms":14.980542870205873,"throughput_eps":0,"last_update":"2026-03-22T10:37:42.479723428Z"} +2026/03/22 10:37:47 ───────────────────────────────────────────────── +2026/03/22 10:37:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:37:52 [log_collector] {"stage_name":"log_collector","events_processed":26038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5207.6,"last_update":"2026-03-22T10:37:52.368484577Z"} +2026/03/22 10:37:52 [metric_collector] {"stage_name":"metric_collector","events_processed":16579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3315.8,"last_update":"2026-03-22T10:37:47.368732725Z"} +2026/03/22 10:37:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:37:47.375567427Z"} +2026/03/22 10:37:52 [detection_layer] {"stage_name":"detection_layer","events_processed":552,"events_dropped":0,"avg_latency_ms":14.980542870205873,"throughput_eps":0,"last_update":"2026-03-22T10:37:47.479777179Z"} +2026/03/22 10:37:52 [transform_engine] {"stage_name":"transform_engine","events_processed":552,"events_dropped":0,"avg_latency_ms":106.02851786628652,"throughput_eps":0,"last_update":"2026-03-22T10:37:47.479820101Z"} +2026/03/22 10:37:52 ───────────────────────────────────────────────── +2026/03/22 10:37:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:37:57 [detection_layer] {"stage_name":"detection_layer","events_processed":552,"events_dropped":0,"avg_latency_ms":14.980542870205873,"throughput_eps":0,"last_update":"2026-03-22T10:37:52.479529352Z"} +2026/03/22 10:37:57 [transform_engine] {"stage_name":"transform_engine","events_processed":552,"events_dropped":0,"avg_latency_ms":106.02851786628652,"throughput_eps":0,"last_update":"2026-03-22T10:37:52.479547176Z"} +2026/03/22 10:37:57 [log_collector] {"stage_name":"log_collector","events_processed":26038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5207.6,"last_update":"2026-03-22T10:37:52.368484577Z"} +2026/03/22 10:37:57 [metric_collector] {"stage_name":"metric_collector","events_processed":16584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3316.8,"last_update":"2026-03-22T10:37:52.368931633Z"} +2026/03/22 10:37:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:37:52.377303772Z"} +2026/03/22 10:37:57 ───────────────────────────────────────────────── +2026/03/22 10:37:57 [ANOMALY] time=2026-03-22T10:37:57Z score=0.8102 method=SEAD details=MAD!:w=0.57,s=0.80 RRCF-fast!:w=0.11,s=0.96 RRCF-mid!:w=0.10,s=0.98 RRCF-slow!:w=0.10,s=0.99 COPOD!:w=0.13,s=0.45 +2026/03/22 10:38:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:38:02 [transform_engine] {"stage_name":"transform_engine","events_processed":553,"events_dropped":0,"avg_latency_ms":99.15036769302922,"throughput_eps":0,"last_update":"2026-03-22T10:37:57.550445069Z"} +2026/03/22 10:38:02 [log_collector] {"stage_name":"log_collector","events_processed":26038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5207.6,"last_update":"2026-03-22T10:38:02.368209285Z"} +2026/03/22 10:38:02 [metric_collector] {"stage_name":"metric_collector","events_processed":16589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3317.8,"last_update":"2026-03-22T10:37:57.368384589Z"} +2026/03/22 10:38:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:37:57.377696436Z"} +2026/03/22 10:38:02 [detection_layer] {"stage_name":"detection_layer","events_processed":552,"events_dropped":0,"avg_latency_ms":14.980542870205873,"throughput_eps":0,"last_update":"2026-03-22T10:37:57.479900136Z"} +2026/03/22 10:38:02 ───────────────────────────────────────────────── +2026/03/22 10:38:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:38:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6640,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:38:02.377308475Z"} +2026/03/22 10:38:07 [detection_layer] {"stage_name":"detection_layer","events_processed":553,"events_dropped":0,"avg_latency_ms":14.7244850961647,"throughput_eps":0,"last_update":"2026-03-22T10:38:02.479502977Z"} +2026/03/22 10:38:07 [transform_engine] {"stage_name":"transform_engine","events_processed":553,"events_dropped":0,"avg_latency_ms":99.15036769302922,"throughput_eps":0,"last_update":"2026-03-22T10:38:02.47953081Z"} +2026/03/22 10:38:07 [log_collector] {"stage_name":"log_collector","events_processed":26038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5207.6,"last_update":"2026-03-22T10:38:02.368209285Z"} +2026/03/22 10:38:07 [metric_collector] {"stage_name":"metric_collector","events_processed":16594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3318.8,"last_update":"2026-03-22T10:38:02.368734872Z"} +2026/03/22 10:38:07 ───────────────────────────────────────────────── +2026/03/22 10:38:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:38:12 [log_collector] {"stage_name":"log_collector","events_processed":26038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5207.6,"last_update":"2026-03-22T10:38:07.368205913Z"} +2026/03/22 10:38:12 [metric_collector] {"stage_name":"metric_collector","events_processed":16599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3319.8,"last_update":"2026-03-22T10:38:07.368448808Z"} +2026/03/22 10:38:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:38:07.377827564Z"} +2026/03/22 10:38:12 [detection_layer] {"stage_name":"detection_layer","events_processed":553,"events_dropped":0,"avg_latency_ms":14.7244850961647,"throughput_eps":0,"last_update":"2026-03-22T10:38:07.479020917Z"} +2026/03/22 10:38:12 [transform_engine] {"stage_name":"transform_engine","events_processed":553,"events_dropped":0,"avg_latency_ms":99.15036769302922,"throughput_eps":0,"last_update":"2026-03-22T10:38:07.479041036Z"} +2026/03/22 10:38:12 ───────────────────────────────────────────────── +Saved state: 14 clusters, 26039 messages, reason: none +2026/03/22 10:38:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:38:17 [log_collector] {"stage_name":"log_collector","events_processed":26038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5207.6,"last_update":"2026-03-22T10:38:12.368455Z"} +2026/03/22 10:38:17 [metric_collector] {"stage_name":"metric_collector","events_processed":16604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3320.8,"last_update":"2026-03-22T10:38:12.368853614Z"} +2026/03/22 10:38:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:38:12.375556874Z"} +2026/03/22 10:38:17 [detection_layer] {"stage_name":"detection_layer","events_processed":553,"events_dropped":0,"avg_latency_ms":14.7244850961647,"throughput_eps":0,"last_update":"2026-03-22T10:38:12.479781323Z"} +2026/03/22 10:38:17 [transform_engine] {"stage_name":"transform_engine","events_processed":553,"events_dropped":0,"avg_latency_ms":99.15036769302922,"throughput_eps":0,"last_update":"2026-03-22T10:38:12.479802043Z"} +2026/03/22 10:38:17 ───────────────────────────────────────────────── +2026/03/22 10:38:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:38:22 [transform_engine] {"stage_name":"transform_engine","events_processed":553,"events_dropped":0,"avg_latency_ms":99.15036769302922,"throughput_eps":0,"last_update":"2026-03-22T10:38:17.479924495Z"} +2026/03/22 10:38:22 [log_collector] {"stage_name":"log_collector","events_processed":26047,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5209.4,"last_update":"2026-03-22T10:38:17.367990247Z"} +2026/03/22 10:38:22 [metric_collector] {"stage_name":"metric_collector","events_processed":16609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3321.8,"last_update":"2026-03-22T10:38:17.368376396Z"} +2026/03/22 10:38:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6646,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:38:17.375483661Z"} +2026/03/22 10:38:22 [detection_layer] {"stage_name":"detection_layer","events_processed":553,"events_dropped":0,"avg_latency_ms":14.7244850961647,"throughput_eps":0,"last_update":"2026-03-22T10:38:17.47980178Z"} +2026/03/22 10:38:22 ───────────────────────────────────────────────── +2026/03/22 10:38:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:38:27 [log_collector] {"stage_name":"log_collector","events_processed":26047,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5209.4,"last_update":"2026-03-22T10:38:27.368929678Z"} +2026/03/22 10:38:27 [metric_collector] {"stage_name":"metric_collector","events_processed":16614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3322.8,"last_update":"2026-03-22T10:38:22.368616212Z"} +2026/03/22 10:38:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:38:22.378691953Z"} +2026/03/22 10:38:27 [detection_layer] {"stage_name":"detection_layer","events_processed":553,"events_dropped":0,"avg_latency_ms":14.7244850961647,"throughput_eps":0,"last_update":"2026-03-22T10:38:22.479043023Z"} +2026/03/22 10:38:27 [transform_engine] {"stage_name":"transform_engine","events_processed":553,"events_dropped":0,"avg_latency_ms":99.15036769302922,"throughput_eps":0,"last_update":"2026-03-22T10:38:22.478976796Z"} +2026/03/22 10:38:27 ───────────────────────────────────────────────── +2026/03/22 10:38:27 [ANOMALY] time=2026-03-22T10:38:27Z score=0.7714 method=SEAD details=MAD!:w=0.57,s=0.74 RRCF-fast!:w=0.11,s=0.95 RRCF-mid!:w=0.10,s=0.98 RRCF-slow!:w=0.10,s=0.98 COPOD!:w=0.13,s=0.43 +2026/03/22 10:38:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:38:32 [metric_collector] {"stage_name":"metric_collector","events_processed":16619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3323.8,"last_update":"2026-03-22T10:38:27.36950961Z"} +2026/03/22 10:38:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6650,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:38:27.377740476Z"} +2026/03/22 10:38:32 [detection_layer] {"stage_name":"detection_layer","events_processed":553,"events_dropped":0,"avg_latency_ms":14.7244850961647,"throughput_eps":0,"last_update":"2026-03-22T10:38:27.478979286Z"} +2026/03/22 10:38:32 [transform_engine] {"stage_name":"transform_engine","events_processed":553,"events_dropped":0,"avg_latency_ms":99.15036769302922,"throughput_eps":0,"last_update":"2026-03-22T10:38:27.478954358Z"} +2026/03/22 10:38:32 [log_collector] {"stage_name":"log_collector","events_processed":26047,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5209.4,"last_update":"2026-03-22T10:38:27.368929678Z"} +2026/03/22 10:38:32 ───────────────────────────────────────────────── +2026/03/22 10:38:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:38:37 [metric_collector] {"stage_name":"metric_collector","events_processed":16624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3324.8,"last_update":"2026-03-22T10:38:32.36914805Z"} +2026/03/22 10:38:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:38:32.377781939Z"} +2026/03/22 10:38:37 [detection_layer] {"stage_name":"detection_layer","events_processed":554,"events_dropped":0,"avg_latency_ms":14.470067876931761,"throughput_eps":0,"last_update":"2026-03-22T10:38:32.478965825Z"} +2026/03/22 10:38:37 [transform_engine] {"stage_name":"transform_engine","events_processed":554,"events_dropped":0,"avg_latency_ms":124.84996755442339,"throughput_eps":0,"last_update":"2026-03-22T10:38:32.478910519Z"} +2026/03/22 10:38:37 [log_collector] {"stage_name":"log_collector","events_processed":26047,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5209.4,"last_update":"2026-03-22T10:38:37.367977039Z"} +2026/03/22 10:38:37 ───────────────────────────────────────────────── +2026/03/22 10:38:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:38:42 [log_collector] {"stage_name":"log_collector","events_processed":26047,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5209.4,"last_update":"2026-03-22T10:38:42.368568031Z"} +2026/03/22 10:38:42 [metric_collector] {"stage_name":"metric_collector","events_processed":16629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3325.8,"last_update":"2026-03-22T10:38:37.368339984Z"} +2026/03/22 10:38:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:38:37.378059112Z"} +2026/03/22 10:38:42 [detection_layer] {"stage_name":"detection_layer","events_processed":554,"events_dropped":0,"avg_latency_ms":14.470067876931761,"throughput_eps":0,"last_update":"2026-03-22T10:38:37.47941164Z"} +2026/03/22 10:38:42 [transform_engine] {"stage_name":"transform_engine","events_processed":554,"events_dropped":0,"avg_latency_ms":124.84996755442339,"throughput_eps":0,"last_update":"2026-03-22T10:38:37.479446106Z"} +2026/03/22 10:38:42 ───────────────────────────────────────────────── +2026/03/22 10:38:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:38:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:38:42.377399789Z"} +2026/03/22 10:38:47 [detection_layer] {"stage_name":"detection_layer","events_processed":554,"events_dropped":0,"avg_latency_ms":14.470067876931761,"throughput_eps":0,"last_update":"2026-03-22T10:38:42.479461014Z"} +2026/03/22 10:38:47 [transform_engine] {"stage_name":"transform_engine","events_processed":554,"events_dropped":0,"avg_latency_ms":124.84996755442339,"throughput_eps":0,"last_update":"2026-03-22T10:38:42.479566086Z"} +2026/03/22 10:38:47 [log_collector] {"stage_name":"log_collector","events_processed":26047,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5209.4,"last_update":"2026-03-22T10:38:42.368568031Z"} +2026/03/22 10:38:47 [metric_collector] {"stage_name":"metric_collector","events_processed":16634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3326.8,"last_update":"2026-03-22T10:38:42.36894835Z"} +2026/03/22 10:38:47 ───────────────────────────────────────────────── +2026/03/22 10:38:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:38:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:38:47.377896597Z"} +2026/03/22 10:38:52 [detection_layer] {"stage_name":"detection_layer","events_processed":554,"events_dropped":0,"avg_latency_ms":14.470067876931761,"throughput_eps":0,"last_update":"2026-03-22T10:38:47.479124016Z"} +2026/03/22 10:38:52 [transform_engine] {"stage_name":"transform_engine","events_processed":554,"events_dropped":0,"avg_latency_ms":124.84996755442339,"throughput_eps":0,"last_update":"2026-03-22T10:38:47.479170435Z"} +2026/03/22 10:38:52 [log_collector] {"stage_name":"log_collector","events_processed":26047,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5209.4,"last_update":"2026-03-22T10:38:47.368104449Z"} +2026/03/22 10:38:52 [metric_collector] {"stage_name":"metric_collector","events_processed":16639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3327.8,"last_update":"2026-03-22T10:38:47.368339259Z"} +2026/03/22 10:38:52 ───────────────────────────────────────────────── +2026/03/22 10:38:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:38:57 [detection_layer] {"stage_name":"detection_layer","events_processed":554,"events_dropped":0,"avg_latency_ms":14.470067876931761,"throughput_eps":0,"last_update":"2026-03-22T10:38:52.479722258Z"} +2026/03/22 10:38:57 [transform_engine] {"stage_name":"transform_engine","events_processed":554,"events_dropped":0,"avg_latency_ms":124.84996755442339,"throughput_eps":0,"last_update":"2026-03-22T10:38:52.479698833Z"} +2026/03/22 10:38:57 [log_collector] {"stage_name":"log_collector","events_processed":26049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5209.8,"last_update":"2026-03-22T10:38:52.368704054Z"} +2026/03/22 10:38:57 [metric_collector] {"stage_name":"metric_collector","events_processed":16644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3328.8,"last_update":"2026-03-22T10:38:52.368694576Z"} +2026/03/22 10:38:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6660,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:38:52.378489419Z"} +2026/03/22 10:38:57 ───────────────────────────────────────────────── +2026/03/22 10:39:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:39:02 [detection_layer] {"stage_name":"detection_layer","events_processed":554,"events_dropped":0,"avg_latency_ms":14.470067876931761,"throughput_eps":0,"last_update":"2026-03-22T10:38:57.479405766Z"} +2026/03/22 10:39:02 [transform_engine] {"stage_name":"transform_engine","events_processed":555,"events_dropped":0,"avg_latency_ms":123.7312206435387,"throughput_eps":0,"last_update":"2026-03-22T10:38:57.598627073Z"} +2026/03/22 10:39:02 [log_collector] {"stage_name":"log_collector","events_processed":26236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5247.2,"last_update":"2026-03-22T10:38:57.368007064Z"} +2026/03/22 10:39:02 [metric_collector] {"stage_name":"metric_collector","events_processed":16649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3329.8,"last_update":"2026-03-22T10:38:57.368212227Z"} +2026/03/22 10:39:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6662,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:38:57.374531512Z"} +2026/03/22 10:39:02 ───────────────────────────────────────────────── +2026/03/22 10:39:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:39:07 [log_collector] {"stage_name":"log_collector","events_processed":26406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.2,"last_update":"2026-03-22T10:39:02.368454445Z"} +2026/03/22 10:39:07 [metric_collector] {"stage_name":"metric_collector","events_processed":16654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3330.8,"last_update":"2026-03-22T10:39:02.368597108Z"} +2026/03/22 10:39:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:39:02.378097366Z"} +2026/03/22 10:39:07 [detection_layer] {"stage_name":"detection_layer","events_processed":555,"events_dropped":0,"avg_latency_ms":14.20741270154541,"throughput_eps":0,"last_update":"2026-03-22T10:39:02.479319755Z"} +2026/03/22 10:39:07 [transform_engine] {"stage_name":"transform_engine","events_processed":555,"events_dropped":0,"avg_latency_ms":123.7312206435387,"throughput_eps":0,"last_update":"2026-03-22T10:39:02.479429956Z"} +2026/03/22 10:39:07 ───────────────────────────────────────────────── +2026/03/22 10:39:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:39:12 [log_collector] {"stage_name":"log_collector","events_processed":26406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.2,"last_update":"2026-03-22T10:39:07.36811707Z"} +2026/03/22 10:39:12 [metric_collector] {"stage_name":"metric_collector","events_processed":16659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3331.8,"last_update":"2026-03-22T10:39:07.368436021Z"} +2026/03/22 10:39:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:39:07.377583704Z"} +2026/03/22 10:39:12 [detection_layer] {"stage_name":"detection_layer","events_processed":555,"events_dropped":0,"avg_latency_ms":14.20741270154541,"throughput_eps":0,"last_update":"2026-03-22T10:39:07.479830275Z"} +2026/03/22 10:39:12 [transform_engine] {"stage_name":"transform_engine","events_processed":555,"events_dropped":0,"avg_latency_ms":123.7312206435387,"throughput_eps":0,"last_update":"2026-03-22T10:39:07.479877144Z"} +2026/03/22 10:39:12 ───────────────────────────────────────────────── +2026/03/22 10:39:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:39:17 [log_collector] {"stage_name":"log_collector","events_processed":26406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.2,"last_update":"2026-03-22T10:39:12.368464816Z"} +2026/03/22 10:39:17 [metric_collector] {"stage_name":"metric_collector","events_processed":16664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3332.8,"last_update":"2026-03-22T10:39:12.369512913Z"} +2026/03/22 10:39:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6668,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:39:12.377068698Z"} +2026/03/22 10:39:17 [detection_layer] {"stage_name":"detection_layer","events_processed":555,"events_dropped":0,"avg_latency_ms":14.20741270154541,"throughput_eps":0,"last_update":"2026-03-22T10:39:12.479277716Z"} +2026/03/22 10:39:17 [transform_engine] {"stage_name":"transform_engine","events_processed":555,"events_dropped":0,"avg_latency_ms":123.7312206435387,"throughput_eps":0,"last_update":"2026-03-22T10:39:12.479320428Z"} +2026/03/22 10:39:17 ───────────────────────────────────────────────── +2026/03/22 10:39:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:39:22 [log_collector] {"stage_name":"log_collector","events_processed":26406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.2,"last_update":"2026-03-22T10:39:17.368025142Z"} +2026/03/22 10:39:22 [metric_collector] {"stage_name":"metric_collector","events_processed":16669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3333.8,"last_update":"2026-03-22T10:39:17.368576458Z"} +2026/03/22 10:39:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6670,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:39:17.37844897Z"} +2026/03/22 10:39:22 [detection_layer] {"stage_name":"detection_layer","events_processed":555,"events_dropped":0,"avg_latency_ms":14.20741270154541,"throughput_eps":0,"last_update":"2026-03-22T10:39:17.47996988Z"} +2026/03/22 10:39:22 [transform_engine] {"stage_name":"transform_engine","events_processed":555,"events_dropped":0,"avg_latency_ms":123.7312206435387,"throughput_eps":0,"last_update":"2026-03-22T10:39:17.47974536Z"} +2026/03/22 10:39:22 ───────────────────────────────────────────────── +2026/03/22 10:39:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:39:27 [detection_layer] {"stage_name":"detection_layer","events_processed":555,"events_dropped":0,"avg_latency_ms":14.20741270154541,"throughput_eps":0,"last_update":"2026-03-22T10:39:22.47915247Z"} +2026/03/22 10:39:27 [transform_engine] {"stage_name":"transform_engine","events_processed":555,"events_dropped":0,"avg_latency_ms":123.7312206435387,"throughput_eps":0,"last_update":"2026-03-22T10:39:22.479125809Z"} +2026/03/22 10:39:27 [log_collector] {"stage_name":"log_collector","events_processed":26406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.2,"last_update":"2026-03-22T10:39:22.368593057Z"} +2026/03/22 10:39:27 [metric_collector] {"stage_name":"metric_collector","events_processed":16674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3334.8,"last_update":"2026-03-22T10:39:22.36913742Z"} +2026/03/22 10:39:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:39:22.377956172Z"} +2026/03/22 10:39:27 ───────────────────────────────────────────────── +2026/03/22 10:39:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:39:32 [log_collector] {"stage_name":"log_collector","events_processed":26406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.2,"last_update":"2026-03-22T10:39:27.368414178Z"} +2026/03/22 10:39:32 [metric_collector] {"stage_name":"metric_collector","events_processed":16679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3335.8,"last_update":"2026-03-22T10:39:27.368543035Z"} +2026/03/22 10:39:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:39:27.378009328Z"} +2026/03/22 10:39:32 [detection_layer] {"stage_name":"detection_layer","events_processed":555,"events_dropped":0,"avg_latency_ms":14.20741270154541,"throughput_eps":0,"last_update":"2026-03-22T10:39:27.479501985Z"} +2026/03/22 10:39:32 [transform_engine] {"stage_name":"transform_engine","events_processed":556,"events_dropped":0,"avg_latency_ms":453.600472914831,"throughput_eps":0,"last_update":"2026-03-22T10:39:29.252387509Z"} +2026/03/22 10:39:32 ───────────────────────────────────────────────── +2026/03/22 10:39:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:39:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6676,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:39:32.377492564Z"} +2026/03/22 10:39:37 [detection_layer] {"stage_name":"detection_layer","events_processed":556,"events_dropped":0,"avg_latency_ms":14.560439561236329,"throughput_eps":0,"last_update":"2026-03-22T10:39:32.479769813Z"} +2026/03/22 10:39:37 [transform_engine] {"stage_name":"transform_engine","events_processed":556,"events_dropped":0,"avg_latency_ms":453.600472914831,"throughput_eps":0,"last_update":"2026-03-22T10:39:32.479723504Z"} +2026/03/22 10:39:37 [log_collector] {"stage_name":"log_collector","events_processed":26406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.2,"last_update":"2026-03-22T10:39:32.368729848Z"} +2026/03/22 10:39:37 [metric_collector] {"stage_name":"metric_collector","events_processed":16684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3336.8,"last_update":"2026-03-22T10:39:32.369290211Z"} +2026/03/22 10:39:37 ───────────────────────────────────────────────── +2026/03/22 10:39:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:39:42 [log_collector] {"stage_name":"log_collector","events_processed":26406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.2,"last_update":"2026-03-22T10:39:42.368158977Z"} +2026/03/22 10:39:42 [metric_collector] {"stage_name":"metric_collector","events_processed":16689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3337.8,"last_update":"2026-03-22T10:39:37.369118575Z"} +2026/03/22 10:39:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:39:37.377614119Z"} +2026/03/22 10:39:42 [detection_layer] {"stage_name":"detection_layer","events_processed":556,"events_dropped":0,"avg_latency_ms":14.560439561236329,"throughput_eps":0,"last_update":"2026-03-22T10:39:37.479836963Z"} +2026/03/22 10:39:42 [transform_engine] {"stage_name":"transform_engine","events_processed":556,"events_dropped":0,"avg_latency_ms":453.600472914831,"throughput_eps":0,"last_update":"2026-03-22T10:39:37.479890566Z"} +2026/03/22 10:39:42 ───────────────────────────────────────────────── +2026/03/22 10:39:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:39:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:39:42.377515019Z"} +2026/03/22 10:39:47 [detection_layer] {"stage_name":"detection_layer","events_processed":556,"events_dropped":0,"avg_latency_ms":14.560439561236329,"throughput_eps":0,"last_update":"2026-03-22T10:39:42.479727083Z"} +2026/03/22 10:39:47 [transform_engine] {"stage_name":"transform_engine","events_processed":556,"events_dropped":0,"avg_latency_ms":453.600472914831,"throughput_eps":0,"last_update":"2026-03-22T10:39:42.479770877Z"} +2026/03/22 10:39:47 [log_collector] {"stage_name":"log_collector","events_processed":26406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.2,"last_update":"2026-03-22T10:39:42.368158977Z"} +2026/03/22 10:39:47 [metric_collector] {"stage_name":"metric_collector","events_processed":16694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3338.8,"last_update":"2026-03-22T10:39:42.368884887Z"} +2026/03/22 10:39:47 ───────────────────────────────────────────────── +2026/03/22 10:39:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:39:52 [log_collector] {"stage_name":"log_collector","events_processed":26406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.2,"last_update":"2026-03-22T10:39:52.367986675Z"} +2026/03/22 10:39:52 [metric_collector] {"stage_name":"metric_collector","events_processed":16699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3339.8,"last_update":"2026-03-22T10:39:47.368434435Z"} +2026/03/22 10:39:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:39:47.378092636Z"} +2026/03/22 10:39:52 [detection_layer] {"stage_name":"detection_layer","events_processed":556,"events_dropped":0,"avg_latency_ms":14.560439561236329,"throughput_eps":0,"last_update":"2026-03-22T10:39:47.479374377Z"} +2026/03/22 10:39:52 [transform_engine] {"stage_name":"transform_engine","events_processed":556,"events_dropped":0,"avg_latency_ms":453.600472914831,"throughput_eps":0,"last_update":"2026-03-22T10:39:47.479403643Z"} +2026/03/22 10:39:52 ───────────────────────────────────────────────── +2026/03/22 10:39:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:39:57 [log_collector] {"stage_name":"log_collector","events_processed":26406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.2,"last_update":"2026-03-22T10:39:52.367986675Z"} +2026/03/22 10:39:57 [metric_collector] {"stage_name":"metric_collector","events_processed":16704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3340.8,"last_update":"2026-03-22T10:39:52.368660045Z"} +2026/03/22 10:39:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:39:52.378378Z"} +2026/03/22 10:39:57 [detection_layer] {"stage_name":"detection_layer","events_processed":556,"events_dropped":0,"avg_latency_ms":14.560439561236329,"throughput_eps":0,"last_update":"2026-03-22T10:39:52.479624746Z"} +2026/03/22 10:39:57 [transform_engine] {"stage_name":"transform_engine","events_processed":556,"events_dropped":0,"avg_latency_ms":453.600472914831,"throughput_eps":0,"last_update":"2026-03-22T10:39:52.479636588Z"} +2026/03/22 10:39:57 ───────────────────────────────────────────────── +2026/03/22 10:39:57 [ANOMALY] time=2026-03-22T10:39:57Z score=0.8005 method=SEAD details=MAD!:w=0.57,s=0.80 RRCF-fast:w=0.10,s=0.75 RRCF-mid:w=0.10,s=0.94 RRCF-slow:w=0.10,s=0.96 COPOD!:w=0.13,s=0.64 +2026/03/22 10:40:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:40:02 [log_collector] {"stage_name":"log_collector","events_processed":26406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.2,"last_update":"2026-03-22T10:39:57.368022522Z"} +2026/03/22 10:40:02 [metric_collector] {"stage_name":"metric_collector","events_processed":16709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3341.8,"last_update":"2026-03-22T10:39:57.368311945Z"} +2026/03/22 10:40:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:39:57.377195773Z"} +2026/03/22 10:40:02 [detection_layer] {"stage_name":"detection_layer","events_processed":556,"events_dropped":0,"avg_latency_ms":14.560439561236329,"throughput_eps":0,"last_update":"2026-03-22T10:39:57.479517627Z"} +2026/03/22 10:40:02 [transform_engine] {"stage_name":"transform_engine","events_processed":557,"events_dropped":0,"avg_latency_ms":377.33834153186484,"throughput_eps":0,"last_update":"2026-03-22T10:39:57.551824386Z"} +2026/03/22 10:40:02 ───────────────────────────────────────────────── +2026/03/22 10:40:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:40:07 [log_collector] {"stage_name":"log_collector","events_processed":26406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.2,"last_update":"2026-03-22T10:40:02.368517473Z"} +2026/03/22 10:40:07 [metric_collector] {"stage_name":"metric_collector","events_processed":16714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3342.8,"last_update":"2026-03-22T10:40:02.368492004Z"} +2026/03/22 10:40:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6688,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:40:02.380378283Z"} +2026/03/22 10:40:07 [detection_layer] {"stage_name":"detection_layer","events_processed":557,"events_dropped":0,"avg_latency_ms":14.843361848989064,"throughput_eps":0,"last_update":"2026-03-22T10:40:02.47952678Z"} +2026/03/22 10:40:07 [transform_engine] {"stage_name":"transform_engine","events_processed":557,"events_dropped":0,"avg_latency_ms":377.33834153186484,"throughput_eps":0,"last_update":"2026-03-22T10:40:02.479539103Z"} +2026/03/22 10:40:07 ───────────────────────────────────────────────── +2026/03/22 10:40:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:40:12 [metric_collector] {"stage_name":"metric_collector","events_processed":16719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3343.8,"last_update":"2026-03-22T10:40:07.368407306Z"} +2026/03/22 10:40:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:40:07.377411444Z"} +2026/03/22 10:40:12 [detection_layer] {"stage_name":"detection_layer","events_processed":557,"events_dropped":0,"avg_latency_ms":14.843361848989064,"throughput_eps":0,"last_update":"2026-03-22T10:40:07.479632605Z"} +2026/03/22 10:40:12 [transform_engine] {"stage_name":"transform_engine","events_processed":557,"events_dropped":0,"avg_latency_ms":377.33834153186484,"throughput_eps":0,"last_update":"2026-03-22T10:40:07.479646563Z"} +2026/03/22 10:40:12 [log_collector] {"stage_name":"log_collector","events_processed":26406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.2,"last_update":"2026-03-22T10:40:07.36798686Z"} +2026/03/22 10:40:12 ───────────────────────────────────────────────── +2026/03/22 10:40:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:40:17 [log_collector] {"stage_name":"log_collector","events_processed":26406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.2,"last_update":"2026-03-22T10:40:12.367997783Z"} +2026/03/22 10:40:17 [metric_collector] {"stage_name":"metric_collector","events_processed":16724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3344.8,"last_update":"2026-03-22T10:40:12.368683367Z"} +2026/03/22 10:40:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:40:12.378564114Z"} +2026/03/22 10:40:17 [detection_layer] {"stage_name":"detection_layer","events_processed":557,"events_dropped":0,"avg_latency_ms":14.843361848989064,"throughput_eps":0,"last_update":"2026-03-22T10:40:12.479020956Z"} +2026/03/22 10:40:17 [transform_engine] {"stage_name":"transform_engine","events_processed":557,"events_dropped":0,"avg_latency_ms":377.33834153186484,"throughput_eps":0,"last_update":"2026-03-22T10:40:12.47903893Z"} +2026/03/22 10:40:17 ───────────────────────────────────────────────── +2026/03/22 10:40:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:40:22 [log_collector] {"stage_name":"log_collector","events_processed":26406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.2,"last_update":"2026-03-22T10:40:17.368998432Z"} +2026/03/22 10:40:22 [metric_collector] {"stage_name":"metric_collector","events_processed":16729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3345.8,"last_update":"2026-03-22T10:40:17.369629951Z"} +2026/03/22 10:40:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:40:17.379466644Z"} +2026/03/22 10:40:22 [detection_layer] {"stage_name":"detection_layer","events_processed":557,"events_dropped":0,"avg_latency_ms":14.843361848989064,"throughput_eps":0,"last_update":"2026-03-22T10:40:17.479822051Z"} +2026/03/22 10:40:22 [transform_engine] {"stage_name":"transform_engine","events_processed":557,"events_dropped":0,"avg_latency_ms":377.33834153186484,"throughput_eps":0,"last_update":"2026-03-22T10:40:17.479835077Z"} +2026/03/22 10:40:22 ───────────────────────────────────────────────── +2026/03/22 10:40:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:40:27 [log_collector] {"stage_name":"log_collector","events_processed":26406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.2,"last_update":"2026-03-22T10:40:27.368099748Z"} +2026/03/22 10:40:27 [metric_collector] {"stage_name":"metric_collector","events_processed":16734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3346.8,"last_update":"2026-03-22T10:40:22.36913877Z"} +2026/03/22 10:40:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:40:22.378208284Z"} +2026/03/22 10:40:27 [detection_layer] {"stage_name":"detection_layer","events_processed":557,"events_dropped":0,"avg_latency_ms":14.843361848989064,"throughput_eps":0,"last_update":"2026-03-22T10:40:22.479447885Z"} +2026/03/22 10:40:27 [transform_engine] {"stage_name":"transform_engine","events_processed":557,"events_dropped":0,"avg_latency_ms":377.33834153186484,"throughput_eps":0,"last_update":"2026-03-22T10:40:22.479505295Z"} +2026/03/22 10:40:27 ───────────────────────────────────────────────── +2026/03/22 10:40:27 [ANOMALY] time=2026-03-22T10:40:27Z score=0.7665 method=SEAD details=MAD!:w=0.57,s=0.75 RRCF-fast:w=0.10,s=0.75 RRCF-mid:w=0.10,s=0.92 RRCF-slow:w=0.10,s=0.95 COPOD!:w=0.13,s=0.59 +2026/03/22 10:40:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:40:32 [log_collector] {"stage_name":"log_collector","events_processed":26406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.2,"last_update":"2026-03-22T10:40:27.368099748Z"} +2026/03/22 10:40:32 [metric_collector] {"stage_name":"metric_collector","events_processed":16739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3347.8,"last_update":"2026-03-22T10:40:27.368471831Z"} +2026/03/22 10:40:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:40:27.377593604Z"} +2026/03/22 10:40:32 [detection_layer] {"stage_name":"detection_layer","events_processed":557,"events_dropped":0,"avg_latency_ms":14.843361848989064,"throughput_eps":0,"last_update":"2026-03-22T10:40:27.479863929Z"} +2026/03/22 10:40:32 [transform_engine] {"stage_name":"transform_engine","events_processed":557,"events_dropped":0,"avg_latency_ms":377.33834153186484,"throughput_eps":0,"last_update":"2026-03-22T10:40:27.479788715Z"} +2026/03/22 10:40:32 ───────────────────────────────────────────────── +2026/03/22 10:40:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:40:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6700,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:40:32.379500513Z"} +2026/03/22 10:40:37 [detection_layer] {"stage_name":"detection_layer","events_processed":558,"events_dropped":0,"avg_latency_ms":15.736382879191252,"throughput_eps":0,"last_update":"2026-03-22T10:40:32.47983544Z"} +2026/03/22 10:40:37 [transform_engine] {"stage_name":"transform_engine","events_processed":558,"events_dropped":0,"avg_latency_ms":317.2797824254919,"throughput_eps":0,"last_update":"2026-03-22T10:40:32.479951071Z"} +2026/03/22 10:40:37 [log_collector] {"stage_name":"log_collector","events_processed":26406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.2,"last_update":"2026-03-22T10:40:37.367975179Z"} +2026/03/22 10:40:37 [metric_collector] {"stage_name":"metric_collector","events_processed":16743,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3348.6,"last_update":"2026-03-22T10:40:32.368946956Z"} +2026/03/22 10:40:37 ───────────────────────────────────────────────── +2026/03/22 10:40:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:40:42 [log_collector] {"stage_name":"log_collector","events_processed":26406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.2,"last_update":"2026-03-22T10:40:37.367975179Z"} +2026/03/22 10:40:42 [metric_collector] {"stage_name":"metric_collector","events_processed":16753,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3350.6,"last_update":"2026-03-22T10:40:42.36868849Z"} +2026/03/22 10:40:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6702,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:40:37.378070548Z"} +2026/03/22 10:40:42 [detection_layer] {"stage_name":"detection_layer","events_processed":558,"events_dropped":0,"avg_latency_ms":15.736382879191252,"throughput_eps":0,"last_update":"2026-03-22T10:40:37.47939387Z"} +2026/03/22 10:40:42 [transform_engine] {"stage_name":"transform_engine","events_processed":558,"events_dropped":0,"avg_latency_ms":317.2797824254919,"throughput_eps":0,"last_update":"2026-03-22T10:40:37.479428125Z"} +2026/03/22 10:40:42 ───────────────────────────────────────────────── +2026/03/22 10:40:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:40:47 [log_collector] {"stage_name":"log_collector","events_processed":26406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.2,"last_update":"2026-03-22T10:40:42.368717477Z"} +2026/03/22 10:40:47 [metric_collector] {"stage_name":"metric_collector","events_processed":16753,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3350.6,"last_update":"2026-03-22T10:40:42.36868849Z"} +2026/03/22 10:40:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:40:42.37752095Z"} +2026/03/22 10:40:47 [detection_layer] {"stage_name":"detection_layer","events_processed":558,"events_dropped":0,"avg_latency_ms":15.736382879191252,"throughput_eps":0,"last_update":"2026-03-22T10:40:42.479842393Z"} +2026/03/22 10:40:47 [transform_engine] {"stage_name":"transform_engine","events_processed":558,"events_dropped":0,"avg_latency_ms":317.2797824254919,"throughput_eps":0,"last_update":"2026-03-22T10:40:42.479716281Z"} +2026/03/22 10:40:47 ───────────────────────────────────────────────── +2026/03/22 10:40:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:40:52 [detection_layer] {"stage_name":"detection_layer","events_processed":558,"events_dropped":0,"avg_latency_ms":15.736382879191252,"throughput_eps":0,"last_update":"2026-03-22T10:40:47.479333061Z"} +2026/03/22 10:40:52 [transform_engine] {"stage_name":"transform_engine","events_processed":558,"events_dropped":0,"avg_latency_ms":317.2797824254919,"throughput_eps":0,"last_update":"2026-03-22T10:40:47.479435968Z"} +2026/03/22 10:40:52 [log_collector] {"stage_name":"log_collector","events_processed":26406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.2,"last_update":"2026-03-22T10:40:52.368471298Z"} +2026/03/22 10:40:52 [metric_collector] {"stage_name":"metric_collector","events_processed":16759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3351.8,"last_update":"2026-03-22T10:40:47.369594589Z"} +2026/03/22 10:40:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:40:47.378024998Z"} +2026/03/22 10:40:52 ───────────────────────────────────────────────── +2026/03/22 10:40:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:40:57 [log_collector] {"stage_name":"log_collector","events_processed":26406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.2,"last_update":"2026-03-22T10:40:52.368471298Z"} +2026/03/22 10:40:57 [metric_collector] {"stage_name":"metric_collector","events_processed":16764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3352.8,"last_update":"2026-03-22T10:40:52.368835936Z"} +2026/03/22 10:40:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:40:52.378009379Z"} +2026/03/22 10:40:57 [detection_layer] {"stage_name":"detection_layer","events_processed":558,"events_dropped":0,"avg_latency_ms":15.736382879191252,"throughput_eps":0,"last_update":"2026-03-22T10:40:52.479315487Z"} +2026/03/22 10:40:57 [transform_engine] {"stage_name":"transform_engine","events_processed":558,"events_dropped":0,"avg_latency_ms":317.2797824254919,"throughput_eps":0,"last_update":"2026-03-22T10:40:52.479213061Z"} +2026/03/22 10:40:57 ───────────────────────────────────────────────── +2026/03/22 10:40:57 [ANOMALY] time=2026-03-22T10:40:57Z score=0.7873 method=SEAD details=MAD!:w=0.57,s=0.77 RRCF-fast:w=0.10,s=0.64 RRCF-mid:w=0.10,s=0.92 RRCF-slow:w=0.10,s=0.94 COPOD!:w=0.13,s=0.76 +2026/03/22 10:41:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:41:02 [detection_layer] {"stage_name":"detection_layer","events_processed":558,"events_dropped":0,"avg_latency_ms":15.736382879191252,"throughput_eps":0,"last_update":"2026-03-22T10:40:57.479632013Z"} +2026/03/22 10:41:02 [transform_engine] {"stage_name":"transform_engine","events_processed":559,"events_dropped":0,"avg_latency_ms":267.1342507403935,"throughput_eps":0,"last_update":"2026-03-22T10:40:57.546200159Z"} +2026/03/22 10:41:02 [log_collector] {"stage_name":"log_collector","events_processed":26406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.2,"last_update":"2026-03-22T10:40:57.368646804Z"} +2026/03/22 10:41:02 [metric_collector] {"stage_name":"metric_collector","events_processed":16769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3353.8,"last_update":"2026-03-22T10:40:57.368915208Z"} +2026/03/22 10:41:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:40:57.378405598Z"} +2026/03/22 10:41:02 ───────────────────────────────────────────────── +2026/03/22 10:41:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:41:07 [log_collector] {"stage_name":"log_collector","events_processed":26406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.2,"last_update":"2026-03-22T10:41:02.36837887Z"} +2026/03/22 10:41:07 [metric_collector] {"stage_name":"metric_collector","events_processed":16774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3354.8,"last_update":"2026-03-22T10:41:02.368260473Z"} +2026/03/22 10:41:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6712,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:41:02.378087648Z"} +2026/03/22 10:41:07 [detection_layer] {"stage_name":"detection_layer","events_processed":559,"events_dropped":0,"avg_latency_ms":16.246253903353,"throughput_eps":0,"last_update":"2026-03-22T10:41:02.479308893Z"} +2026/03/22 10:41:07 [transform_engine] {"stage_name":"transform_engine","events_processed":559,"events_dropped":0,"avg_latency_ms":267.1342507403935,"throughput_eps":0,"last_update":"2026-03-22T10:41:02.479339592Z"} +2026/03/22 10:41:07 ───────────────────────────────────────────────── +2026/03/22 10:41:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:41:12 [metric_collector] {"stage_name":"metric_collector","events_processed":16779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3355.8,"last_update":"2026-03-22T10:41:07.3682603Z"} +2026/03/22 10:41:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:41:07.376999881Z"} +2026/03/22 10:41:12 [detection_layer] {"stage_name":"detection_layer","events_processed":559,"events_dropped":0,"avg_latency_ms":16.246253903353,"throughput_eps":0,"last_update":"2026-03-22T10:41:07.479291366Z"} +2026/03/22 10:41:12 [transform_engine] {"stage_name":"transform_engine","events_processed":559,"events_dropped":0,"avg_latency_ms":267.1342507403935,"throughput_eps":0,"last_update":"2026-03-22T10:41:07.479208788Z"} +2026/03/22 10:41:12 [log_collector] {"stage_name":"log_collector","events_processed":26406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.2,"last_update":"2026-03-22T10:41:07.367964393Z"} +2026/03/22 10:41:12 ───────────────────────────────────────────────── +2026/03/22 10:41:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:41:17 [metric_collector] {"stage_name":"metric_collector","events_processed":16784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3356.8,"last_update":"2026-03-22T10:41:12.369117839Z"} +2026/03/22 10:41:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:41:12.378559224Z"} +2026/03/22 10:41:17 [detection_layer] {"stage_name":"detection_layer","events_processed":559,"events_dropped":0,"avg_latency_ms":16.246253903353,"throughput_eps":0,"last_update":"2026-03-22T10:41:12.480049265Z"} +2026/03/22 10:41:17 [transform_engine] {"stage_name":"transform_engine","events_processed":559,"events_dropped":0,"avg_latency_ms":267.1342507403935,"throughput_eps":0,"last_update":"2026-03-22T10:41:12.478826643Z"} +2026/03/22 10:41:17 [log_collector] {"stage_name":"log_collector","events_processed":26406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.2,"last_update":"2026-03-22T10:41:12.368417818Z"} +2026/03/22 10:41:17 ───────────────────────────────────────────────── +2026/03/22 10:41:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:41:22 [log_collector] {"stage_name":"log_collector","events_processed":26406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.2,"last_update":"2026-03-22T10:41:17.368693801Z"} +2026/03/22 10:41:22 [metric_collector] {"stage_name":"metric_collector","events_processed":16789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3357.8,"last_update":"2026-03-22T10:41:17.369034935Z"} +2026/03/22 10:41:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6718,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:41:17.376496348Z"} +2026/03/22 10:41:22 [detection_layer] {"stage_name":"detection_layer","events_processed":559,"events_dropped":0,"avg_latency_ms":16.246253903353,"throughput_eps":0,"last_update":"2026-03-22T10:41:17.479878052Z"} +2026/03/22 10:41:22 [transform_engine] {"stage_name":"transform_engine","events_processed":559,"events_dropped":0,"avg_latency_ms":267.1342507403935,"throughput_eps":0,"last_update":"2026-03-22T10:41:17.479834158Z"} +2026/03/22 10:41:22 ───────────────────────────────────────────────── +2026/03/22 10:41:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:41:27 [log_collector] {"stage_name":"log_collector","events_processed":26406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.2,"last_update":"2026-03-22T10:41:22.368012802Z"} +2026/03/22 10:41:27 [metric_collector] {"stage_name":"metric_collector","events_processed":16794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3358.8,"last_update":"2026-03-22T10:41:22.368486759Z"} +2026/03/22 10:41:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:41:22.376712867Z"} +2026/03/22 10:41:27 [detection_layer] {"stage_name":"detection_layer","events_processed":559,"events_dropped":0,"avg_latency_ms":16.246253903353,"throughput_eps":0,"last_update":"2026-03-22T10:41:22.479976425Z"} +2026/03/22 10:41:27 [transform_engine] {"stage_name":"transform_engine","events_processed":559,"events_dropped":0,"avg_latency_ms":267.1342507403935,"throughput_eps":0,"last_update":"2026-03-22T10:41:22.478844486Z"} +2026/03/22 10:41:27 ───────────────────────────────────────────────── +2026/03/22 10:41:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:41:32 [metric_collector] {"stage_name":"metric_collector","events_processed":16799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3359.8,"last_update":"2026-03-22T10:41:27.3684081Z"} +2026/03/22 10:41:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6722,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:41:27.37684371Z"} +2026/03/22 10:41:32 [detection_layer] {"stage_name":"detection_layer","events_processed":559,"events_dropped":0,"avg_latency_ms":16.246253903353,"throughput_eps":0,"last_update":"2026-03-22T10:41:27.479237411Z"} +2026/03/22 10:41:32 [transform_engine] {"stage_name":"transform_engine","events_processed":559,"events_dropped":0,"avg_latency_ms":267.1342507403935,"throughput_eps":0,"last_update":"2026-03-22T10:41:27.479213235Z"} +2026/03/22 10:41:32 [log_collector] {"stage_name":"log_collector","events_processed":26406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.2,"last_update":"2026-03-22T10:41:27.368125419Z"} +2026/03/22 10:41:32 ───────────────────────────────────────────────── +2026/03/22 10:41:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:41:37 [log_collector] {"stage_name":"log_collector","events_processed":26406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.2,"last_update":"2026-03-22T10:41:32.367981883Z"} +2026/03/22 10:41:37 [metric_collector] {"stage_name":"metric_collector","events_processed":16804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3360.8,"last_update":"2026-03-22T10:41:32.368399293Z"} +2026/03/22 10:41:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:41:32.377598545Z"} +2026/03/22 10:41:37 [detection_layer] {"stage_name":"detection_layer","events_processed":560,"events_dropped":0,"avg_latency_ms":16.9571251226824,"throughput_eps":0,"last_update":"2026-03-22T10:41:32.479884049Z"} +2026/03/22 10:41:37 [transform_engine] {"stage_name":"transform_engine","events_processed":560,"events_dropped":0,"avg_latency_ms":228.6365021923148,"throughput_eps":0,"last_update":"2026-03-22T10:41:32.479865714Z"} +2026/03/22 10:41:37 ───────────────────────────────────────────────── +2026/03/22 10:41:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:41:42 [transform_engine] {"stage_name":"transform_engine","events_processed":560,"events_dropped":0,"avg_latency_ms":228.6365021923148,"throughput_eps":0,"last_update":"2026-03-22T10:41:37.478881881Z"} +2026/03/22 10:41:42 [log_collector] {"stage_name":"log_collector","events_processed":26406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.2,"last_update":"2026-03-22T10:41:37.368346764Z"} +2026/03/22 10:41:42 [metric_collector] {"stage_name":"metric_collector","events_processed":16809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3361.8,"last_update":"2026-03-22T10:41:37.368337406Z"} +2026/03/22 10:41:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:41:37.376718961Z"} +2026/03/22 10:41:42 [detection_layer] {"stage_name":"detection_layer","events_processed":560,"events_dropped":0,"avg_latency_ms":16.9571251226824,"throughput_eps":0,"last_update":"2026-03-22T10:41:37.480020853Z"} +2026/03/22 10:41:42 ───────────────────────────────────────────────── +2026/03/22 10:41:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:41:47 [transform_engine] {"stage_name":"transform_engine","events_processed":560,"events_dropped":0,"avg_latency_ms":228.6365021923148,"throughput_eps":0,"last_update":"2026-03-22T10:41:42.479374314Z"} +2026/03/22 10:41:47 [log_collector] {"stage_name":"log_collector","events_processed":26406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.2,"last_update":"2026-03-22T10:41:42.368004859Z"} +2026/03/22 10:41:47 [metric_collector] {"stage_name":"metric_collector","events_processed":16814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3362.8,"last_update":"2026-03-22T10:41:42.368446335Z"} +2026/03/22 10:41:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6728,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:41:42.377102716Z"} +2026/03/22 10:41:47 [detection_layer] {"stage_name":"detection_layer","events_processed":560,"events_dropped":0,"avg_latency_ms":16.9571251226824,"throughput_eps":0,"last_update":"2026-03-22T10:41:42.479326392Z"} +2026/03/22 10:41:47 ───────────────────────────────────────────────── +2026/03/22 10:41:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:41:52 [metric_collector] {"stage_name":"metric_collector","events_processed":16819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3363.8,"last_update":"2026-03-22T10:41:47.369398457Z"} +2026/03/22 10:41:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6730,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:41:47.378987394Z"} +2026/03/22 10:41:52 [detection_layer] {"stage_name":"detection_layer","events_processed":560,"events_dropped":0,"avg_latency_ms":16.9571251226824,"throughput_eps":0,"last_update":"2026-03-22T10:41:47.479239934Z"} +2026/03/22 10:41:52 [transform_engine] {"stage_name":"transform_engine","events_processed":560,"events_dropped":0,"avg_latency_ms":228.6365021923148,"throughput_eps":0,"last_update":"2026-03-22T10:41:47.479287464Z"} +2026/03/22 10:41:52 [log_collector] {"stage_name":"log_collector","events_processed":26406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.2,"last_update":"2026-03-22T10:41:47.36889403Z"} +2026/03/22 10:41:52 ───────────────────────────────────────────────── +Saved state: 14 clusters, 26407 messages, reason: none +2026/03/22 10:41:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:41:57 [log_collector] {"stage_name":"log_collector","events_processed":26406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.2,"last_update":"2026-03-22T10:41:52.368809334Z"} +2026/03/22 10:41:57 [metric_collector] {"stage_name":"metric_collector","events_processed":16824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3364.8,"last_update":"2026-03-22T10:41:52.369162471Z"} +2026/03/22 10:41:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:41:52.377973358Z"} +2026/03/22 10:41:57 [detection_layer] {"stage_name":"detection_layer","events_processed":560,"events_dropped":0,"avg_latency_ms":16.9571251226824,"throughput_eps":0,"last_update":"2026-03-22T10:41:52.479425906Z"} +2026/03/22 10:41:57 [transform_engine] {"stage_name":"transform_engine","events_processed":560,"events_dropped":0,"avg_latency_ms":228.6365021923148,"throughput_eps":0,"last_update":"2026-03-22T10:41:52.479272663Z"} +2026/03/22 10:41:57 ───────────────────────────────────────────────── +2026/03/22 10:42:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:42:02 [metric_collector] {"stage_name":"metric_collector","events_processed":16829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3365.8,"last_update":"2026-03-22T10:41:57.368278152Z"} +2026/03/22 10:42:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:41:57.376105355Z"} +2026/03/22 10:42:02 [detection_layer] {"stage_name":"detection_layer","events_processed":560,"events_dropped":0,"avg_latency_ms":16.9571251226824,"throughput_eps":0,"last_update":"2026-03-22T10:41:57.479503962Z"} +2026/03/22 10:42:02 [transform_engine] {"stage_name":"transform_engine","events_processed":561,"events_dropped":0,"avg_latency_ms":205.32276835385184,"throughput_eps":0,"last_update":"2026-03-22T10:41:57.591590119Z"} +2026/03/22 10:42:02 [log_collector] {"stage_name":"log_collector","events_processed":26409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.8,"last_update":"2026-03-22T10:41:57.367952037Z"} +2026/03/22 10:42:02 ───────────────────────────────────────────────── +2026/03/22 10:42:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:42:07 [transform_engine] {"stage_name":"transform_engine","events_processed":561,"events_dropped":0,"avg_latency_ms":205.32276835385184,"throughput_eps":0,"last_update":"2026-03-22T10:42:02.479212988Z"} +2026/03/22 10:42:07 [log_collector] {"stage_name":"log_collector","events_processed":26409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5281.8,"last_update":"2026-03-22T10:42:02.368596084Z"} +2026/03/22 10:42:07 [metric_collector] {"stage_name":"metric_collector","events_processed":16834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3366.8,"last_update":"2026-03-22T10:42:02.36887588Z"} +2026/03/22 10:42:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6736,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:42:02.379002839Z"} +2026/03/22 10:42:07 [detection_layer] {"stage_name":"detection_layer","events_processed":561,"events_dropped":0,"avg_latency_ms":17.09770169814592,"throughput_eps":0,"last_update":"2026-03-22T10:42:02.479230872Z"} +2026/03/22 10:42:07 ───────────────────────────────────────────────── +2026/03/22 10:42:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:42:12 [log_collector] {"stage_name":"log_collector","events_processed":26419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5283.8,"last_update":"2026-03-22T10:42:07.367995917Z"} +2026/03/22 10:42:12 [metric_collector] {"stage_name":"metric_collector","events_processed":16839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3367.8,"last_update":"2026-03-22T10:42:07.368400602Z"} +2026/03/22 10:42:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6738,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:42:07.376481352Z"} +2026/03/22 10:42:12 [detection_layer] {"stage_name":"detection_layer","events_processed":561,"events_dropped":0,"avg_latency_ms":17.09770169814592,"throughput_eps":0,"last_update":"2026-03-22T10:42:07.479744017Z"} +2026/03/22 10:42:12 [transform_engine] {"stage_name":"transform_engine","events_processed":561,"events_dropped":0,"avg_latency_ms":205.32276835385184,"throughput_eps":0,"last_update":"2026-03-22T10:42:07.479769185Z"} +2026/03/22 10:42:12 ───────────────────────────────────────────────── +2026/03/22 10:42:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:42:17 [log_collector] {"stage_name":"log_collector","events_processed":26420,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5284,"last_update":"2026-03-22T10:42:12.36801214Z"} +2026/03/22 10:42:17 [metric_collector] {"stage_name":"metric_collector","events_processed":16844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3368.8,"last_update":"2026-03-22T10:42:12.368426022Z"} +2026/03/22 10:42:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6740,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:42:12.378222268Z"} +2026/03/22 10:42:17 [detection_layer] {"stage_name":"detection_layer","events_processed":561,"events_dropped":0,"avg_latency_ms":17.09770169814592,"throughput_eps":0,"last_update":"2026-03-22T10:42:12.479122118Z"} +2026/03/22 10:42:17 [transform_engine] {"stage_name":"transform_engine","events_processed":561,"events_dropped":0,"avg_latency_ms":205.32276835385184,"throughput_eps":0,"last_update":"2026-03-22T10:42:12.479215556Z"} +2026/03/22 10:42:17 ───────────────────────────────────────────────── +2026/03/22 10:42:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:42:22 [log_collector] {"stage_name":"log_collector","events_processed":26434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5286.8,"last_update":"2026-03-22T10:42:17.368113876Z"} +2026/03/22 10:42:22 [metric_collector] {"stage_name":"metric_collector","events_processed":16849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3369.8,"last_update":"2026-03-22T10:42:17.36856489Z"} +2026/03/22 10:42:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:42:17.378058495Z"} +2026/03/22 10:42:22 [detection_layer] {"stage_name":"detection_layer","events_processed":561,"events_dropped":0,"avg_latency_ms":17.09770169814592,"throughput_eps":0,"last_update":"2026-03-22T10:42:17.479428695Z"} +2026/03/22 10:42:22 [transform_engine] {"stage_name":"transform_engine","events_processed":561,"events_dropped":0,"avg_latency_ms":205.32276835385184,"throughput_eps":0,"last_update":"2026-03-22T10:42:17.47945709Z"} +2026/03/22 10:42:22 ───────────────────────────────────────────────── +2026/03/22 10:42:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:42:27 [log_collector] {"stage_name":"log_collector","events_processed":26436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5287.2,"last_update":"2026-03-22T10:42:22.368493893Z"} +2026/03/22 10:42:27 [metric_collector] {"stage_name":"metric_collector","events_processed":16854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3370.8,"last_update":"2026-03-22T10:42:22.368744403Z"} +2026/03/22 10:42:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:42:22.376738105Z"} +2026/03/22 10:42:27 [detection_layer] {"stage_name":"detection_layer","events_processed":561,"events_dropped":0,"avg_latency_ms":17.09770169814592,"throughput_eps":0,"last_update":"2026-03-22T10:42:22.480002044Z"} +2026/03/22 10:42:27 [transform_engine] {"stage_name":"transform_engine","events_processed":561,"events_dropped":0,"avg_latency_ms":205.32276835385184,"throughput_eps":0,"last_update":"2026-03-22T10:42:22.478863142Z"} +2026/03/22 10:42:27 ───────────────────────────────────────────────── +2026/03/22 10:42:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:42:32 [log_collector] {"stage_name":"log_collector","events_processed":26436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5287.2,"last_update":"2026-03-22T10:42:27.368548716Z"} +2026/03/22 10:42:32 [metric_collector] {"stage_name":"metric_collector","events_processed":16859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3371.8,"last_update":"2026-03-22T10:42:27.36903087Z"} +2026/03/22 10:42:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:42:27.378198121Z"} +2026/03/22 10:42:32 [detection_layer] {"stage_name":"detection_layer","events_processed":561,"events_dropped":0,"avg_latency_ms":17.09770169814592,"throughput_eps":0,"last_update":"2026-03-22T10:42:27.479518667Z"} +2026/03/22 10:42:32 [transform_engine] {"stage_name":"transform_engine","events_processed":562,"events_dropped":0,"avg_latency_ms":181.4162076830815,"throughput_eps":0,"last_update":"2026-03-22T10:42:27.565410968Z"} +2026/03/22 10:42:32 ───────────────────────────────────────────────── +2026/03/22 10:42:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:42:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:42:32.377442722Z"} +2026/03/22 10:42:37 [detection_layer] {"stage_name":"detection_layer","events_processed":562,"events_dropped":0,"avg_latency_ms":17.205255758516735,"throughput_eps":0,"last_update":"2026-03-22T10:42:32.479686947Z"} +2026/03/22 10:42:37 [transform_engine] {"stage_name":"transform_engine","events_processed":562,"events_dropped":0,"avg_latency_ms":181.4162076830815,"throughput_eps":0,"last_update":"2026-03-22T10:42:32.479662981Z"} +2026/03/22 10:42:37 [log_collector] {"stage_name":"log_collector","events_processed":26436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5287.2,"last_update":"2026-03-22T10:42:32.368896722Z"} +2026/03/22 10:42:37 [metric_collector] {"stage_name":"metric_collector","events_processed":16864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3372.8,"last_update":"2026-03-22T10:42:32.369217856Z"} +2026/03/22 10:42:37 ───────────────────────────────────────────────── +2026/03/22 10:42:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:42:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6750,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:42:37.377900667Z"} +2026/03/22 10:42:42 [detection_layer] {"stage_name":"detection_layer","events_processed":562,"events_dropped":0,"avg_latency_ms":17.205255758516735,"throughput_eps":0,"last_update":"2026-03-22T10:42:37.479110019Z"} +2026/03/22 10:42:42 [transform_engine] {"stage_name":"transform_engine","events_processed":562,"events_dropped":0,"avg_latency_ms":181.4162076830815,"throughput_eps":0,"last_update":"2026-03-22T10:42:37.479074Z"} +2026/03/22 10:42:42 [log_collector] {"stage_name":"log_collector","events_processed":26436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5287.2,"last_update":"2026-03-22T10:42:37.3694245Z"} +2026/03/22 10:42:42 [metric_collector] {"stage_name":"metric_collector","events_processed":16869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3373.8,"last_update":"2026-03-22T10:42:37.369567635Z"} +2026/03/22 10:42:42 ───────────────────────────────────────────────── +2026/03/22 10:42:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:42:47 [transform_engine] {"stage_name":"transform_engine","events_processed":562,"events_dropped":0,"avg_latency_ms":181.4162076830815,"throughput_eps":0,"last_update":"2026-03-22T10:42:42.479323112Z"} +2026/03/22 10:42:47 [log_collector] {"stage_name":"log_collector","events_processed":26436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5287.2,"last_update":"2026-03-22T10:42:42.368194358Z"} +2026/03/22 10:42:47 [metric_collector] {"stage_name":"metric_collector","events_processed":16874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3374.8,"last_update":"2026-03-22T10:42:42.368279131Z"} +2026/03/22 10:42:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6752,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:42:42.377035684Z"} +2026/03/22 10:42:47 [detection_layer] {"stage_name":"detection_layer","events_processed":562,"events_dropped":0,"avg_latency_ms":17.205255758516735,"throughput_eps":0,"last_update":"2026-03-22T10:42:42.47941073Z"} +2026/03/22 10:42:47 ───────────────────────────────────────────────── +2026/03/22 10:42:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:42:52 [detection_layer] {"stage_name":"detection_layer","events_processed":562,"events_dropped":0,"avg_latency_ms":17.205255758516735,"throughput_eps":0,"last_update":"2026-03-22T10:42:47.479321452Z"} +2026/03/22 10:42:52 [transform_engine] {"stage_name":"transform_engine","events_processed":562,"events_dropped":0,"avg_latency_ms":181.4162076830815,"throughput_eps":0,"last_update":"2026-03-22T10:42:47.479285043Z"} +2026/03/22 10:42:52 [log_collector] {"stage_name":"log_collector","events_processed":26436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5287.2,"last_update":"2026-03-22T10:42:47.36796859Z"} +2026/03/22 10:42:52 [metric_collector] {"stage_name":"metric_collector","events_processed":16879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3375.8,"last_update":"2026-03-22T10:42:47.36849078Z"} +2026/03/22 10:42:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:42:47.375895615Z"} +2026/03/22 10:42:52 ───────────────────────────────────────────────── +2026/03/22 10:42:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:42:57 [log_collector] {"stage_name":"log_collector","events_processed":26449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5289.8,"last_update":"2026-03-22T10:42:52.368625702Z"} +2026/03/22 10:42:57 [metric_collector] {"stage_name":"metric_collector","events_processed":16884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3376.8,"last_update":"2026-03-22T10:42:52.369100592Z"} +2026/03/22 10:42:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:42:52.375424626Z"} +2026/03/22 10:42:57 [detection_layer] {"stage_name":"detection_layer","events_processed":562,"events_dropped":0,"avg_latency_ms":17.205255758516735,"throughput_eps":0,"last_update":"2026-03-22T10:42:52.479744757Z"} +2026/03/22 10:42:57 [transform_engine] {"stage_name":"transform_engine","events_processed":562,"events_dropped":0,"avg_latency_ms":181.4162076830815,"throughput_eps":0,"last_update":"2026-03-22T10:42:52.479721592Z"} +2026/03/22 10:42:57 ───────────────────────────────────────────────── +2026/03/22 10:43:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:43:02 [detection_layer] {"stage_name":"detection_layer","events_processed":562,"events_dropped":0,"avg_latency_ms":17.205255758516735,"throughput_eps":0,"last_update":"2026-03-22T10:42:57.479477206Z"} +2026/03/22 10:43:02 [transform_engine] {"stage_name":"transform_engine","events_processed":563,"events_dropped":0,"avg_latency_ms":170.3431337464652,"throughput_eps":0,"last_update":"2026-03-22T10:42:57.605216928Z"} +2026/03/22 10:43:02 [log_collector] {"stage_name":"log_collector","events_processed":26450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5290,"last_update":"2026-03-22T10:42:57.368084907Z"} +2026/03/22 10:43:02 [metric_collector] {"stage_name":"metric_collector","events_processed":16889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3377.8,"last_update":"2026-03-22T10:42:57.368774799Z"} +2026/03/22 10:43:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6758,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:42:57.376963175Z"} +2026/03/22 10:43:02 ───────────────────────────────────────────────── +2026/03/22 10:43:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:43:07 [log_collector] {"stage_name":"log_collector","events_processed":26450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5290,"last_update":"2026-03-22T10:43:02.368192315Z"} +2026/03/22 10:43:07 [metric_collector] {"stage_name":"metric_collector","events_processed":16894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3378.8,"last_update":"2026-03-22T10:43:02.368310391Z"} +2026/03/22 10:43:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:43:02.377446522Z"} +2026/03/22 10:43:07 [detection_layer] {"stage_name":"detection_layer","events_processed":563,"events_dropped":0,"avg_latency_ms":17.974007006813387,"throughput_eps":0,"last_update":"2026-03-22T10:43:02.479660028Z"} +2026/03/22 10:43:07 [transform_engine] {"stage_name":"transform_engine","events_processed":563,"events_dropped":0,"avg_latency_ms":170.3431337464652,"throughput_eps":0,"last_update":"2026-03-22T10:43:02.479775299Z"} +2026/03/22 10:43:07 ───────────────────────────────────────────────── +2026/03/22 10:43:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:43:12 [metric_collector] {"stage_name":"metric_collector","events_processed":16899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3379.8,"last_update":"2026-03-22T10:43:07.368856227Z"} +2026/03/22 10:43:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:43:07.377860294Z"} +2026/03/22 10:43:12 [detection_layer] {"stage_name":"detection_layer","events_processed":563,"events_dropped":0,"avg_latency_ms":17.974007006813387,"throughput_eps":0,"last_update":"2026-03-22T10:43:07.479277856Z"} +2026/03/22 10:43:12 [transform_engine] {"stage_name":"transform_engine","events_processed":563,"events_dropped":0,"avg_latency_ms":170.3431337464652,"throughput_eps":0,"last_update":"2026-03-22T10:43:07.479230706Z"} +2026/03/22 10:43:12 [log_collector] {"stage_name":"log_collector","events_processed":26450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5290,"last_update":"2026-03-22T10:43:07.368489434Z"} +2026/03/22 10:43:12 ───────────────────────────────────────────────── +2026/03/22 10:43:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:43:17 [log_collector] {"stage_name":"log_collector","events_processed":26450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5290,"last_update":"2026-03-22T10:43:12.368048729Z"} +2026/03/22 10:43:17 [metric_collector] {"stage_name":"metric_collector","events_processed":16904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3380.8,"last_update":"2026-03-22T10:43:12.368284942Z"} +2026/03/22 10:43:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:43:12.377531284Z"} +2026/03/22 10:43:17 [detection_layer] {"stage_name":"detection_layer","events_processed":563,"events_dropped":0,"avg_latency_ms":17.974007006813387,"throughput_eps":0,"last_update":"2026-03-22T10:43:12.479791288Z"} +2026/03/22 10:43:17 [transform_engine] {"stage_name":"transform_engine","events_processed":563,"events_dropped":0,"avg_latency_ms":170.3431337464652,"throughput_eps":0,"last_update":"2026-03-22T10:43:12.479771641Z"} +2026/03/22 10:43:17 ───────────────────────────────────────────────── +2026/03/22 10:43:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:43:22 [log_collector] {"stage_name":"log_collector","events_processed":26450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5290,"last_update":"2026-03-22T10:43:17.369024217Z"} +2026/03/22 10:43:22 [metric_collector] {"stage_name":"metric_collector","events_processed":16909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3381.8,"last_update":"2026-03-22T10:43:17.369430234Z"} +2026/03/22 10:43:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6766,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:43:17.378981431Z"} +2026/03/22 10:43:22 [detection_layer] {"stage_name":"detection_layer","events_processed":563,"events_dropped":0,"avg_latency_ms":17.974007006813387,"throughput_eps":0,"last_update":"2026-03-22T10:43:17.479203682Z"} +2026/03/22 10:43:22 [transform_engine] {"stage_name":"transform_engine","events_processed":563,"events_dropped":0,"avg_latency_ms":170.3431337464652,"throughput_eps":0,"last_update":"2026-03-22T10:43:17.479311568Z"} +2026/03/22 10:43:22 ───────────────────────────────────────────────── +2026/03/22 10:43:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:43:27 [log_collector] {"stage_name":"log_collector","events_processed":26450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5290,"last_update":"2026-03-22T10:43:27.368409754Z"} +2026/03/22 10:43:27 [metric_collector] {"stage_name":"metric_collector","events_processed":16914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3382.8,"last_update":"2026-03-22T10:43:22.369460771Z"} +2026/03/22 10:43:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6768,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:43:22.378956981Z"} +2026/03/22 10:43:27 [detection_layer] {"stage_name":"detection_layer","events_processed":563,"events_dropped":0,"avg_latency_ms":17.974007006813387,"throughput_eps":0,"last_update":"2026-03-22T10:43:22.479209831Z"} +2026/03/22 10:43:27 [transform_engine] {"stage_name":"transform_engine","events_processed":563,"events_dropped":0,"avg_latency_ms":170.3431337464652,"throughput_eps":0,"last_update":"2026-03-22T10:43:22.479161849Z"} +2026/03/22 10:43:27 ───────────────────────────────────────────────── +2026/03/22 10:43:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:43:32 [detection_layer] {"stage_name":"detection_layer","events_processed":563,"events_dropped":0,"avg_latency_ms":17.974007006813387,"throughput_eps":0,"last_update":"2026-03-22T10:43:27.479919838Z"} +2026/03/22 10:43:32 [transform_engine] {"stage_name":"transform_engine","events_processed":564,"events_dropped":0,"avg_latency_ms":151.59139139717217,"throughput_eps":0,"last_update":"2026-03-22T10:43:27.556469603Z"} +2026/03/22 10:43:32 [log_collector] {"stage_name":"log_collector","events_processed":26450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5290,"last_update":"2026-03-22T10:43:27.368409754Z"} +2026/03/22 10:43:32 [metric_collector] {"stage_name":"metric_collector","events_processed":16919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3383.8,"last_update":"2026-03-22T10:43:27.368620878Z"} +2026/03/22 10:43:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6770,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:43:27.376525781Z"} +2026/03/22 10:43:32 ───────────────────────────────────────────────── +2026/03/22 10:43:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:43:37 [log_collector] {"stage_name":"log_collector","events_processed":26450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5290,"last_update":"2026-03-22T10:43:32.36865051Z"} +2026/03/22 10:43:37 [metric_collector] {"stage_name":"metric_collector","events_processed":16924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3384.8,"last_update":"2026-03-22T10:43:32.368987836Z"} +2026/03/22 10:43:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:43:32.377519088Z"} +2026/03/22 10:43:37 [detection_layer] {"stage_name":"detection_layer","events_processed":564,"events_dropped":0,"avg_latency_ms":18.144171605450712,"throughput_eps":0,"last_update":"2026-03-22T10:43:32.4797303Z"} +2026/03/22 10:43:37 [transform_engine] {"stage_name":"transform_engine","events_processed":564,"events_dropped":0,"avg_latency_ms":151.59139139717217,"throughput_eps":0,"last_update":"2026-03-22T10:43:32.479764054Z"} +2026/03/22 10:43:37 ───────────────────────────────────────────────── +2026/03/22 10:43:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:43:42 [metric_collector] {"stage_name":"metric_collector","events_processed":16929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3385.8,"last_update":"2026-03-22T10:43:37.368656035Z"} +2026/03/22 10:43:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:43:37.377871237Z"} +2026/03/22 10:43:42 [detection_layer] {"stage_name":"detection_layer","events_processed":564,"events_dropped":0,"avg_latency_ms":18.144171605450712,"throughput_eps":0,"last_update":"2026-03-22T10:43:37.479337271Z"} +2026/03/22 10:43:42 [transform_engine] {"stage_name":"transform_engine","events_processed":564,"events_dropped":0,"avg_latency_ms":151.59139139717217,"throughput_eps":0,"last_update":"2026-03-22T10:43:37.479230726Z"} +2026/03/22 10:43:42 [log_collector] {"stage_name":"log_collector","events_processed":26450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5290,"last_update":"2026-03-22T10:43:37.367978287Z"} +2026/03/22 10:43:42 ───────────────────────────────────────────────── +2026/03/22 10:43:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:43:47 [log_collector] {"stage_name":"log_collector","events_processed":26450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5290,"last_update":"2026-03-22T10:43:42.369076615Z"} +2026/03/22 10:43:47 [metric_collector] {"stage_name":"metric_collector","events_processed":16934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3386.8,"last_update":"2026-03-22T10:43:42.369714326Z"} +2026/03/22 10:43:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:43:42.377954511Z"} +2026/03/22 10:43:47 [detection_layer] {"stage_name":"detection_layer","events_processed":564,"events_dropped":0,"avg_latency_ms":18.144171605450712,"throughput_eps":0,"last_update":"2026-03-22T10:43:42.479211174Z"} +2026/03/22 10:43:47 [transform_engine] {"stage_name":"transform_engine","events_processed":564,"events_dropped":0,"avg_latency_ms":151.59139139717217,"throughput_eps":0,"last_update":"2026-03-22T10:43:42.479184433Z"} +2026/03/22 10:43:47 ───────────────────────────────────────────────── +2026/03/22 10:43:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:43:52 [detection_layer] {"stage_name":"detection_layer","events_processed":564,"events_dropped":0,"avg_latency_ms":18.144171605450712,"throughput_eps":0,"last_update":"2026-03-22T10:43:47.479731432Z"} +2026/03/22 10:43:52 [transform_engine] {"stage_name":"transform_engine","events_processed":564,"events_dropped":0,"avg_latency_ms":151.59139139717217,"throughput_eps":0,"last_update":"2026-03-22T10:43:47.479622553Z"} +2026/03/22 10:43:52 [log_collector] {"stage_name":"log_collector","events_processed":26450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5290,"last_update":"2026-03-22T10:43:52.368218103Z"} +2026/03/22 10:43:52 [metric_collector] {"stage_name":"metric_collector","events_processed":16939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3387.8,"last_update":"2026-03-22T10:43:47.369186658Z"} +2026/03/22 10:43:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:43:47.37712869Z"} +2026/03/22 10:43:52 ───────────────────────────────────────────────── +Saved state: 14 clusters, 26451 messages, reason: none +2026/03/22 10:43:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:43:57 [log_collector] {"stage_name":"log_collector","events_processed":26450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5290,"last_update":"2026-03-22T10:43:52.368218103Z"} +2026/03/22 10:43:57 [metric_collector] {"stage_name":"metric_collector","events_processed":16944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3388.8,"last_update":"2026-03-22T10:43:52.368832982Z"} +2026/03/22 10:43:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6780,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:43:52.377563465Z"} +2026/03/22 10:43:57 [detection_layer] {"stage_name":"detection_layer","events_processed":564,"events_dropped":0,"avg_latency_ms":18.144171605450712,"throughput_eps":0,"last_update":"2026-03-22T10:43:52.479762564Z"} +2026/03/22 10:43:57 [transform_engine] {"stage_name":"transform_engine","events_processed":564,"events_dropped":0,"avg_latency_ms":151.59139139717217,"throughput_eps":0,"last_update":"2026-03-22T10:43:52.479918282Z"} +2026/03/22 10:43:57 ───────────────────────────────────────────────── +2026/03/22 10:44:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:44:02 [log_collector] {"stage_name":"log_collector","events_processed":26455,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5291,"last_update":"2026-03-22T10:43:57.367957184Z"} +2026/03/22 10:44:02 [metric_collector] {"stage_name":"metric_collector","events_processed":16949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3389.8,"last_update":"2026-03-22T10:43:57.368206332Z"} +2026/03/22 10:44:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6782,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:43:57.374698488Z"} +2026/03/22 10:44:02 [detection_layer] {"stage_name":"detection_layer","events_processed":564,"events_dropped":0,"avg_latency_ms":18.144171605450712,"throughput_eps":0,"last_update":"2026-03-22T10:43:57.481363811Z"} +2026/03/22 10:44:02 [transform_engine] {"stage_name":"transform_engine","events_processed":565,"events_dropped":0,"avg_latency_ms":143.81574091773774,"throughput_eps":0,"last_update":"2026-03-22T10:43:57.591692662Z"} +2026/03/22 10:44:02 ───────────────────────────────────────────────── +2026/03/22 10:44:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:44:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:44:02.375309798Z"} +2026/03/22 10:44:07 [detection_layer] {"stage_name":"detection_layer","events_processed":565,"events_dropped":0,"avg_latency_ms":16.72044928436057,"throughput_eps":0,"last_update":"2026-03-22T10:44:02.479556047Z"} +2026/03/22 10:44:07 [transform_engine] {"stage_name":"transform_engine","events_processed":565,"events_dropped":0,"avg_latency_ms":143.81574091773774,"throughput_eps":0,"last_update":"2026-03-22T10:44:02.479516522Z"} +2026/03/22 10:44:07 [log_collector] {"stage_name":"log_collector","events_processed":26455,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5291,"last_update":"2026-03-22T10:44:02.367982202Z"} +2026/03/22 10:44:07 [metric_collector] {"stage_name":"metric_collector","events_processed":16954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3390.8,"last_update":"2026-03-22T10:44:02.368288649Z"} +2026/03/22 10:44:07 ───────────────────────────────────────────────── +2026/03/22 10:44:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:44:12 [log_collector] {"stage_name":"log_collector","events_processed":26455,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5291,"last_update":"2026-03-22T10:44:07.368432222Z"} +2026/03/22 10:44:12 [metric_collector] {"stage_name":"metric_collector","events_processed":16959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3391.8,"last_update":"2026-03-22T10:44:07.368789526Z"} +2026/03/22 10:44:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:44:07.374663789Z"} +2026/03/22 10:44:12 [detection_layer] {"stage_name":"detection_layer","events_processed":565,"events_dropped":0,"avg_latency_ms":16.72044928436057,"throughput_eps":0,"last_update":"2026-03-22T10:44:07.479920153Z"} +2026/03/22 10:44:12 [transform_engine] {"stage_name":"transform_engine","events_processed":565,"events_dropped":0,"avg_latency_ms":143.81574091773774,"throughput_eps":0,"last_update":"2026-03-22T10:44:07.479888222Z"} +2026/03/22 10:44:12 ───────────────────────────────────────────────── +2026/03/22 10:44:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:44:17 [log_collector] {"stage_name":"log_collector","events_processed":26455,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5291,"last_update":"2026-03-22T10:44:12.368289166Z"} +2026/03/22 10:44:17 [metric_collector] {"stage_name":"metric_collector","events_processed":16964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3392.8,"last_update":"2026-03-22T10:44:12.368201828Z"} +2026/03/22 10:44:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:44:12.374893848Z"} +2026/03/22 10:44:17 [detection_layer] {"stage_name":"detection_layer","events_processed":565,"events_dropped":0,"avg_latency_ms":16.72044928436057,"throughput_eps":0,"last_update":"2026-03-22T10:44:12.479169753Z"} +2026/03/22 10:44:17 [transform_engine] {"stage_name":"transform_engine","events_processed":565,"events_dropped":0,"avg_latency_ms":143.81574091773774,"throughput_eps":0,"last_update":"2026-03-22T10:44:12.479144575Z"} +2026/03/22 10:44:17 ───────────────────────────────────────────────── +2026/03/22 10:44:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:44:22 [log_collector] {"stage_name":"log_collector","events_processed":26455,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5291,"last_update":"2026-03-22T10:44:17.368487022Z"} +2026/03/22 10:44:22 [metric_collector] {"stage_name":"metric_collector","events_processed":16969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3393.8,"last_update":"2026-03-22T10:44:17.368768131Z"} +2026/03/22 10:44:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:44:17.376560958Z"} +2026/03/22 10:44:22 [detection_layer] {"stage_name":"detection_layer","events_processed":565,"events_dropped":0,"avg_latency_ms":16.72044928436057,"throughput_eps":0,"last_update":"2026-03-22T10:44:17.479995002Z"} +2026/03/22 10:44:22 [transform_engine] {"stage_name":"transform_engine","events_processed":565,"events_dropped":0,"avg_latency_ms":143.81574091773774,"throughput_eps":0,"last_update":"2026-03-22T10:44:17.47888167Z"} +2026/03/22 10:44:22 ───────────────────────────────────────────────── +2026/03/22 10:44:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:44:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:44:22.377563315Z"} +2026/03/22 10:44:27 [detection_layer] {"stage_name":"detection_layer","events_processed":565,"events_dropped":0,"avg_latency_ms":16.72044928436057,"throughput_eps":0,"last_update":"2026-03-22T10:44:22.479784716Z"} +2026/03/22 10:44:27 [transform_engine] {"stage_name":"transform_engine","events_processed":565,"events_dropped":0,"avg_latency_ms":143.81574091773774,"throughput_eps":0,"last_update":"2026-03-22T10:44:22.479760159Z"} +2026/03/22 10:44:27 [log_collector] {"stage_name":"log_collector","events_processed":26455,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5291,"last_update":"2026-03-22T10:44:22.368600367Z"} +2026/03/22 10:44:27 [metric_collector] {"stage_name":"metric_collector","events_processed":16974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3394.8,"last_update":"2026-03-22T10:44:22.369077941Z"} +2026/03/22 10:44:27 ───────────────────────────────────────────────── +2026/03/22 10:44:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:44:32 [log_collector] {"stage_name":"log_collector","events_processed":26455,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5291,"last_update":"2026-03-22T10:44:27.368591493Z"} +2026/03/22 10:44:32 [metric_collector] {"stage_name":"metric_collector","events_processed":16978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3395.6,"last_update":"2026-03-22T10:44:27.368728656Z"} +2026/03/22 10:44:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:44:27.377597354Z"} +2026/03/22 10:44:32 [detection_layer] {"stage_name":"detection_layer","events_processed":565,"events_dropped":0,"avg_latency_ms":16.72044928436057,"throughput_eps":0,"last_update":"2026-03-22T10:44:27.479791883Z"} +2026/03/22 10:44:32 [transform_engine] {"stage_name":"transform_engine","events_processed":566,"events_dropped":0,"avg_latency_ms":145.4338315341902,"throughput_eps":0,"last_update":"2026-03-22T10:44:27.63175139Z"} +2026/03/22 10:44:32 ───────────────────────────────────────────────── +2026/03/22 10:44:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:44:37 [log_collector] {"stage_name":"log_collector","events_processed":26455,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5291,"last_update":"2026-03-22T10:44:32.368335346Z"} +2026/03/22 10:44:37 [metric_collector] {"stage_name":"metric_collector","events_processed":16984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3396.8,"last_update":"2026-03-22T10:44:32.368790178Z"} +2026/03/22 10:44:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6796,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:44:32.377412655Z"} +2026/03/22 10:44:37 [detection_layer] {"stage_name":"detection_layer","events_processed":566,"events_dropped":0,"avg_latency_ms":16.840503227488455,"throughput_eps":0,"last_update":"2026-03-22T10:44:32.479544335Z"} +2026/03/22 10:44:37 [transform_engine] {"stage_name":"transform_engine","events_processed":566,"events_dropped":0,"avg_latency_ms":145.4338315341902,"throughput_eps":0,"last_update":"2026-03-22T10:44:32.479553522Z"} +2026/03/22 10:44:37 ───────────────────────────────────────────────── +2026/03/22 10:44:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:44:42 [log_collector] {"stage_name":"log_collector","events_processed":26455,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5291,"last_update":"2026-03-22T10:44:37.368326532Z"} +2026/03/22 10:44:42 [metric_collector] {"stage_name":"metric_collector","events_processed":16989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3397.8,"last_update":"2026-03-22T10:44:37.368741908Z"} +2026/03/22 10:44:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:44:37.377673226Z"} +2026/03/22 10:44:42 [detection_layer] {"stage_name":"detection_layer","events_processed":566,"events_dropped":0,"avg_latency_ms":16.840503227488455,"throughput_eps":0,"last_update":"2026-03-22T10:44:37.479933382Z"} +2026/03/22 10:44:42 [transform_engine] {"stage_name":"transform_engine","events_processed":566,"events_dropped":0,"avg_latency_ms":145.4338315341902,"throughput_eps":0,"last_update":"2026-03-22T10:44:37.478842943Z"} +2026/03/22 10:44:42 ───────────────────────────────────────────────── +2026/03/22 10:44:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:44:47 [detection_layer] {"stage_name":"detection_layer","events_processed":566,"events_dropped":0,"avg_latency_ms":16.840503227488455,"throughput_eps":0,"last_update":"2026-03-22T10:44:42.479502749Z"} +2026/03/22 10:44:47 [transform_engine] {"stage_name":"transform_engine","events_processed":566,"events_dropped":0,"avg_latency_ms":145.4338315341902,"throughput_eps":0,"last_update":"2026-03-22T10:44:42.479512418Z"} +2026/03/22 10:44:47 [log_collector] {"stage_name":"log_collector","events_processed":26455,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5291,"last_update":"2026-03-22T10:44:42.367965683Z"} +2026/03/22 10:44:47 [metric_collector] {"stage_name":"metric_collector","events_processed":16994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3398.8,"last_update":"2026-03-22T10:44:42.368307729Z"} +2026/03/22 10:44:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6800,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:44:42.376293997Z"} +2026/03/22 10:44:47 ───────────────────────────────────────────────── +2026/03/22 10:44:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:44:52 [detection_layer] {"stage_name":"detection_layer","events_processed":566,"events_dropped":0,"avg_latency_ms":16.840503227488455,"throughput_eps":0,"last_update":"2026-03-22T10:44:47.478986172Z"} +2026/03/22 10:44:52 [transform_engine] {"stage_name":"transform_engine","events_processed":566,"events_dropped":0,"avg_latency_ms":145.4338315341902,"throughput_eps":0,"last_update":"2026-03-22T10:44:47.478876122Z"} +2026/03/22 10:44:52 [log_collector] {"stage_name":"log_collector","events_processed":26455,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5291,"last_update":"2026-03-22T10:44:47.369004126Z"} +2026/03/22 10:44:52 [metric_collector] {"stage_name":"metric_collector","events_processed":16999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3399.8,"last_update":"2026-03-22T10:44:47.36926225Z"} +2026/03/22 10:44:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6802,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:44:47.37977074Z"} +2026/03/22 10:44:52 ───────────────────────────────────────────────── +2026/03/22 10:44:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:44:57 [log_collector] {"stage_name":"log_collector","events_processed":26455,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5291,"last_update":"2026-03-22T10:44:52.368167726Z"} +2026/03/22 10:44:57 [metric_collector] {"stage_name":"metric_collector","events_processed":17004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3400.8,"last_update":"2026-03-22T10:44:52.368599763Z"} +2026/03/22 10:44:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:44:52.37854312Z"} +2026/03/22 10:44:57 [detection_layer] {"stage_name":"detection_layer","events_processed":566,"events_dropped":0,"avg_latency_ms":16.840503227488455,"throughput_eps":0,"last_update":"2026-03-22T10:44:52.47971955Z"} +2026/03/22 10:44:57 [transform_engine] {"stage_name":"transform_engine","events_processed":566,"events_dropped":0,"avg_latency_ms":145.4338315341902,"throughput_eps":0,"last_update":"2026-03-22T10:44:52.479734058Z"} +2026/03/22 10:44:57 ───────────────────────────────────────────────── +2026/03/22 10:44:57 [ANOMALY] time=2026-03-22T10:44:57Z score=0.8141 method=SEAD details=MAD!:w=0.58,s=0.87 RRCF-fast:w=0.10,s=0.44 RRCF-mid:w=0.09,s=0.89 RRCF-slow:w=0.09,s=0.94 COPOD!:w=0.13,s=0.74 +2026/03/22 10:45:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:45:02 [log_collector] {"stage_name":"log_collector","events_processed":26455,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5291,"last_update":"2026-03-22T10:44:57.368188154Z"} +2026/03/22 10:45:02 [metric_collector] {"stage_name":"metric_collector","events_processed":17009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3401.8,"last_update":"2026-03-22T10:44:57.36859847Z"} +2026/03/22 10:45:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:44:57.377075879Z"} +2026/03/22 10:45:02 [detection_layer] {"stage_name":"detection_layer","events_processed":566,"events_dropped":0,"avg_latency_ms":16.840503227488455,"throughput_eps":0,"last_update":"2026-03-22T10:44:57.479170507Z"} +2026/03/22 10:45:02 [transform_engine] {"stage_name":"transform_engine","events_processed":567,"events_dropped":0,"avg_latency_ms":137.23425182735218,"throughput_eps":0,"last_update":"2026-03-22T10:44:57.583643851Z"} +2026/03/22 10:45:02 ───────────────────────────────────────────────── +Saved state: 14 clusters, 26456 messages, reason: none +2026/03/22 10:45:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:45:07 [transform_engine] {"stage_name":"transform_engine","events_processed":567,"events_dropped":0,"avg_latency_ms":137.23425182735218,"throughput_eps":0,"last_update":"2026-03-22T10:45:02.479880815Z"} +2026/03/22 10:45:07 [log_collector] {"stage_name":"log_collector","events_processed":26455,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5291,"last_update":"2026-03-22T10:45:02.368706836Z"} +2026/03/22 10:45:07 [metric_collector] {"stage_name":"metric_collector","events_processed":17014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3402.8,"last_update":"2026-03-22T10:45:02.369077055Z"} +2026/03/22 10:45:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:45:02.377669935Z"} +2026/03/22 10:45:07 [detection_layer] {"stage_name":"detection_layer","events_processed":567,"events_dropped":0,"avg_latency_ms":16.754070781990762,"throughput_eps":0,"last_update":"2026-03-22T10:45:02.479906515Z"} +2026/03/22 10:45:07 ───────────────────────────────────────────────── +2026/03/22 10:45:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:45:12 [log_collector] {"stage_name":"log_collector","events_processed":26456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5291.2,"last_update":"2026-03-22T10:45:07.368091005Z"} +2026/03/22 10:45:12 [metric_collector] {"stage_name":"metric_collector","events_processed":17019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3403.8,"last_update":"2026-03-22T10:45:07.368435295Z"} +2026/03/22 10:45:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:45:07.37743261Z"} +2026/03/22 10:45:12 [detection_layer] {"stage_name":"detection_layer","events_processed":567,"events_dropped":0,"avg_latency_ms":16.754070781990762,"throughput_eps":0,"last_update":"2026-03-22T10:45:07.479620476Z"} +2026/03/22 10:45:12 [transform_engine] {"stage_name":"transform_engine","events_processed":567,"events_dropped":0,"avg_latency_ms":137.23425182735218,"throughput_eps":0,"last_update":"2026-03-22T10:45:07.479633871Z"} +2026/03/22 10:45:12 ───────────────────────────────────────────────── +2026/03/22 10:45:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:45:17 [transform_engine] {"stage_name":"transform_engine","events_processed":567,"events_dropped":0,"avg_latency_ms":137.23425182735218,"throughput_eps":0,"last_update":"2026-03-22T10:45:12.479583172Z"} +2026/03/22 10:45:17 [log_collector] {"stage_name":"log_collector","events_processed":26456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5291.2,"last_update":"2026-03-22T10:45:12.368056487Z"} +2026/03/22 10:45:17 [metric_collector] {"stage_name":"metric_collector","events_processed":17024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3404.8,"last_update":"2026-03-22T10:45:12.368524273Z"} +2026/03/22 10:45:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6812,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:45:12.374375722Z"} +2026/03/22 10:45:17 [detection_layer] {"stage_name":"detection_layer","events_processed":567,"events_dropped":0,"avg_latency_ms":16.754070781990762,"throughput_eps":0,"last_update":"2026-03-22T10:45:12.479598131Z"} +2026/03/22 10:45:17 ───────────────────────────────────────────────── +2026/03/22 10:45:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:45:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:45:17.377206Z"} +2026/03/22 10:45:22 [detection_layer] {"stage_name":"detection_layer","events_processed":567,"events_dropped":0,"avg_latency_ms":16.754070781990762,"throughput_eps":0,"last_update":"2026-03-22T10:45:17.479417683Z"} +2026/03/22 10:45:22 [transform_engine] {"stage_name":"transform_engine","events_processed":567,"events_dropped":0,"avg_latency_ms":137.23425182735218,"throughput_eps":0,"last_update":"2026-03-22T10:45:17.47939017Z"} +2026/03/22 10:45:22 [log_collector] {"stage_name":"log_collector","events_processed":26456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5291.2,"last_update":"2026-03-22T10:45:17.368395434Z"} +2026/03/22 10:45:22 [metric_collector] {"stage_name":"metric_collector","events_processed":17028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3405.6,"last_update":"2026-03-22T10:45:17.368483903Z"} +2026/03/22 10:45:22 ───────────────────────────────────────────────── +2026/03/22 10:45:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:45:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6816,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:45:22.37507726Z"} +2026/03/22 10:45:27 [detection_layer] {"stage_name":"detection_layer","events_processed":567,"events_dropped":0,"avg_latency_ms":16.754070781990762,"throughput_eps":0,"last_update":"2026-03-22T10:45:22.479288994Z"} +2026/03/22 10:45:27 [transform_engine] {"stage_name":"transform_engine","events_processed":567,"events_dropped":0,"avg_latency_ms":137.23425182735218,"throughput_eps":0,"last_update":"2026-03-22T10:45:22.479300125Z"} +2026/03/22 10:45:27 [log_collector] {"stage_name":"log_collector","events_processed":26456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5291.2,"last_update":"2026-03-22T10:45:22.36855149Z"} +2026/03/22 10:45:27 [metric_collector] {"stage_name":"metric_collector","events_processed":17034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3406.8,"last_update":"2026-03-22T10:45:22.369055856Z"} +2026/03/22 10:45:27 ───────────────────────────────────────────────── +2026/03/22 10:45:27 [ANOMALY] time=2026-03-22T10:45:27Z score=0.7710 method=SEAD details=MAD!:w=0.58,s=0.79 RRCF-fast:w=0.11,s=0.72 RRCF-mid:w=0.09,s=0.92 RRCF-slow:w=0.09,s=0.95 COPOD!:w=0.13,s=0.51 +2026/03/22 10:45:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:45:32 [log_collector] {"stage_name":"log_collector","events_processed":26456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5291.2,"last_update":"2026-03-22T10:45:27.36882542Z"} +2026/03/22 10:45:32 [metric_collector] {"stage_name":"metric_collector","events_processed":17039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3407.8,"last_update":"2026-03-22T10:45:27.369198274Z"} +2026/03/22 10:45:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6818,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:45:27.377657187Z"} +2026/03/22 10:45:32 [detection_layer] {"stage_name":"detection_layer","events_processed":567,"events_dropped":0,"avg_latency_ms":16.754070781990762,"throughput_eps":0,"last_update":"2026-03-22T10:45:27.47984281Z"} +2026/03/22 10:45:32 [transform_engine] {"stage_name":"transform_engine","events_processed":568,"events_dropped":0,"avg_latency_ms":141.74867106188177,"throughput_eps":0,"last_update":"2026-03-22T10:45:27.639659687Z"} +2026/03/22 10:45:32 ───────────────────────────────────────────────── +2026/03/22 10:45:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:45:37 [transform_engine] {"stage_name":"transform_engine","events_processed":568,"events_dropped":0,"avg_latency_ms":141.74867106188177,"throughput_eps":0,"last_update":"2026-03-22T10:45:32.479090893Z"} +2026/03/22 10:45:37 [log_collector] {"stage_name":"log_collector","events_processed":26456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5291.2,"last_update":"2026-03-22T10:45:32.3679941Z"} +2026/03/22 10:45:37 [metric_collector] {"stage_name":"metric_collector","events_processed":17044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3408.8,"last_update":"2026-03-22T10:45:32.368203332Z"} +2026/03/22 10:45:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6820,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:45:32.376905191Z"} +2026/03/22 10:45:37 [detection_layer] {"stage_name":"detection_layer","events_processed":568,"events_dropped":0,"avg_latency_ms":16.50681162559261,"throughput_eps":0,"last_update":"2026-03-22T10:45:32.479197176Z"} +2026/03/22 10:45:37 ───────────────────────────────────────────────── +2026/03/22 10:45:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:45:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:45:37.377236648Z"} +2026/03/22 10:45:42 [detection_layer] {"stage_name":"detection_layer","events_processed":568,"events_dropped":0,"avg_latency_ms":16.50681162559261,"throughput_eps":0,"last_update":"2026-03-22T10:45:37.479677539Z"} +2026/03/22 10:45:42 [transform_engine] {"stage_name":"transform_engine","events_processed":568,"events_dropped":0,"avg_latency_ms":141.74867106188177,"throughput_eps":0,"last_update":"2026-03-22T10:45:37.479583378Z"} +2026/03/22 10:45:42 [log_collector] {"stage_name":"log_collector","events_processed":26456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5291.2,"last_update":"2026-03-22T10:45:42.36868964Z"} +2026/03/22 10:45:42 [metric_collector] {"stage_name":"metric_collector","events_processed":17049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3409.8,"last_update":"2026-03-22T10:45:37.368704594Z"} +2026/03/22 10:45:42 ───────────────────────────────────────────────── +2026/03/22 10:45:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:45:47 [log_collector] {"stage_name":"log_collector","events_processed":26456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5291.2,"last_update":"2026-03-22T10:45:47.368413702Z"} +2026/03/22 10:45:47 [metric_collector] {"stage_name":"metric_collector","events_processed":17054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3410.8,"last_update":"2026-03-22T10:45:42.36926921Z"} +2026/03/22 10:45:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:45:42.378860022Z"} +2026/03/22 10:45:47 [detection_layer] {"stage_name":"detection_layer","events_processed":568,"events_dropped":0,"avg_latency_ms":16.50681162559261,"throughput_eps":0,"last_update":"2026-03-22T10:45:42.479082764Z"} +2026/03/22 10:45:47 [transform_engine] {"stage_name":"transform_engine","events_processed":568,"events_dropped":0,"avg_latency_ms":141.74867106188177,"throughput_eps":0,"last_update":"2026-03-22T10:45:42.47904432Z"} +2026/03/22 10:45:47 ───────────────────────────────────────────────── +2026/03/22 10:45:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:45:52 [detection_layer] {"stage_name":"detection_layer","events_processed":568,"events_dropped":0,"avg_latency_ms":16.50681162559261,"throughput_eps":0,"last_update":"2026-03-22T10:45:47.47956082Z"} +2026/03/22 10:45:52 [transform_engine] {"stage_name":"transform_engine","events_processed":568,"events_dropped":0,"avg_latency_ms":141.74867106188177,"throughput_eps":0,"last_update":"2026-03-22T10:45:47.479539589Z"} +2026/03/22 10:45:52 [log_collector] {"stage_name":"log_collector","events_processed":26456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5291.2,"last_update":"2026-03-22T10:45:47.368413702Z"} +2026/03/22 10:45:52 [metric_collector] {"stage_name":"metric_collector","events_processed":17059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3411.8,"last_update":"2026-03-22T10:45:47.368771688Z"} +2026/03/22 10:45:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6826,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:45:47.37730833Z"} +2026/03/22 10:45:52 ───────────────────────────────────────────────── +2026/03/22 10:45:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:45:57 [metric_collector] {"stage_name":"metric_collector","events_processed":17064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3412.8,"last_update":"2026-03-22T10:45:52.368205034Z"} +2026/03/22 10:45:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:45:52.376909718Z"} +2026/03/22 10:45:57 [detection_layer] {"stage_name":"detection_layer","events_processed":568,"events_dropped":0,"avg_latency_ms":16.50681162559261,"throughput_eps":0,"last_update":"2026-03-22T10:45:52.479118885Z"} +2026/03/22 10:45:57 [transform_engine] {"stage_name":"transform_engine","events_processed":568,"events_dropped":0,"avg_latency_ms":141.74867106188177,"throughput_eps":0,"last_update":"2026-03-22T10:45:52.479149173Z"} +2026/03/22 10:45:57 [log_collector] {"stage_name":"log_collector","events_processed":26456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5291.2,"last_update":"2026-03-22T10:45:57.368387383Z"} +2026/03/22 10:45:57 ───────────────────────────────────────────────── +2026/03/22 10:46:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:46:02 [log_collector] {"stage_name":"log_collector","events_processed":26457,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5291.4,"last_update":"2026-03-22T10:46:02.368448872Z"} +2026/03/22 10:46:02 [metric_collector] {"stage_name":"metric_collector","events_processed":17069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3413.8,"last_update":"2026-03-22T10:45:57.368749137Z"} +2026/03/22 10:46:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6830,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:45:57.377140781Z"} +2026/03/22 10:46:02 [detection_layer] {"stage_name":"detection_layer","events_processed":568,"events_dropped":0,"avg_latency_ms":16.50681162559261,"throughput_eps":0,"last_update":"2026-03-22T10:45:57.479247151Z"} +2026/03/22 10:46:02 [transform_engine] {"stage_name":"transform_engine","events_processed":569,"events_dropped":0,"avg_latency_ms":128.00809964950543,"throughput_eps":0,"last_update":"2026-03-22T10:45:57.552326619Z"} +2026/03/22 10:46:02 ───────────────────────────────────────────────── +2026/03/22 10:46:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:46:07 [log_collector] {"stage_name":"log_collector","events_processed":26457,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5291.4,"last_update":"2026-03-22T10:46:02.368448872Z"} +2026/03/22 10:46:07 [metric_collector] {"stage_name":"metric_collector","events_processed":17074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3414.8,"last_update":"2026-03-22T10:46:02.368827387Z"} +2026/03/22 10:46:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6832,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:46:02.377571356Z"} +2026/03/22 10:46:07 [detection_layer] {"stage_name":"detection_layer","events_processed":569,"events_dropped":0,"avg_latency_ms":16.67235030047409,"throughput_eps":0,"last_update":"2026-03-22T10:46:02.479787808Z"} +2026/03/22 10:46:07 [transform_engine] {"stage_name":"transform_engine","events_processed":569,"events_dropped":0,"avg_latency_ms":128.00809964950543,"throughput_eps":0,"last_update":"2026-03-22T10:46:02.479826132Z"} +2026/03/22 10:46:07 ───────────────────────────────────────────────── +2026/03/22 10:46:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:46:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:46:07.378309842Z"} +2026/03/22 10:46:12 [detection_layer] {"stage_name":"detection_layer","events_processed":569,"events_dropped":0,"avg_latency_ms":16.67235030047409,"throughput_eps":0,"last_update":"2026-03-22T10:46:07.479482003Z"} +2026/03/22 10:46:12 [transform_engine] {"stage_name":"transform_engine","events_processed":569,"events_dropped":0,"avg_latency_ms":128.00809964950543,"throughput_eps":0,"last_update":"2026-03-22T10:46:07.47959064Z"} +2026/03/22 10:46:12 [log_collector] {"stage_name":"log_collector","events_processed":26457,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5291.4,"last_update":"2026-03-22T10:46:07.368871923Z"} +2026/03/22 10:46:12 [metric_collector] {"stage_name":"metric_collector","events_processed":17079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3415.8,"last_update":"2026-03-22T10:46:07.369383383Z"} +2026/03/22 10:46:12 ───────────────────────────────────────────────── +2026/03/22 10:46:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:46:17 [log_collector] {"stage_name":"log_collector","events_processed":26457,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5291.4,"last_update":"2026-03-22T10:46:12.368570264Z"} +2026/03/22 10:46:17 [metric_collector] {"stage_name":"metric_collector","events_processed":17084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3416.8,"last_update":"2026-03-22T10:46:12.368889937Z"} +2026/03/22 10:46:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:46:12.375402943Z"} +2026/03/22 10:46:17 [detection_layer] {"stage_name":"detection_layer","events_processed":569,"events_dropped":0,"avg_latency_ms":16.67235030047409,"throughput_eps":0,"last_update":"2026-03-22T10:46:12.479597072Z"} +2026/03/22 10:46:17 [transform_engine] {"stage_name":"transform_engine","events_processed":569,"events_dropped":0,"avg_latency_ms":128.00809964950543,"throughput_eps":0,"last_update":"2026-03-22T10:46:12.479676674Z"} +2026/03/22 10:46:17 ───────────────────────────────────────────────── +2026/03/22 10:46:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:46:22 [transform_engine] {"stage_name":"transform_engine","events_processed":569,"events_dropped":0,"avg_latency_ms":128.00809964950543,"throughput_eps":0,"last_update":"2026-03-22T10:46:17.479854052Z"} +2026/03/22 10:46:22 [log_collector] {"stage_name":"log_collector","events_processed":26457,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5291.4,"last_update":"2026-03-22T10:46:22.368502349Z"} +2026/03/22 10:46:22 [metric_collector] {"stage_name":"metric_collector","events_processed":17089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3417.8,"last_update":"2026-03-22T10:46:17.368552138Z"} +2026/03/22 10:46:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:46:17.385644518Z"} +2026/03/22 10:46:22 [detection_layer] {"stage_name":"detection_layer","events_processed":569,"events_dropped":0,"avg_latency_ms":16.67235030047409,"throughput_eps":0,"last_update":"2026-03-22T10:46:17.479807643Z"} +2026/03/22 10:46:22 ───────────────────────────────────────────────── +2026/03/22 10:46:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:46:27 [log_collector] {"stage_name":"log_collector","events_processed":26457,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5291.4,"last_update":"2026-03-22T10:46:27.368004191Z"} +2026/03/22 10:46:27 [metric_collector] {"stage_name":"metric_collector","events_processed":17094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3418.8,"last_update":"2026-03-22T10:46:22.36904026Z"} +2026/03/22 10:46:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:46:22.377389473Z"} +2026/03/22 10:46:27 [detection_layer] {"stage_name":"detection_layer","events_processed":569,"events_dropped":0,"avg_latency_ms":16.67235030047409,"throughput_eps":0,"last_update":"2026-03-22T10:46:22.47961453Z"} +2026/03/22 10:46:27 [transform_engine] {"stage_name":"transform_engine","events_processed":569,"events_dropped":0,"avg_latency_ms":128.00809964950543,"throughput_eps":0,"last_update":"2026-03-22T10:46:22.479587228Z"} +2026/03/22 10:46:27 ───────────────────────────────────────────────── +2026/03/22 10:46:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:46:32 [log_collector] {"stage_name":"log_collector","events_processed":26457,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5291.4,"last_update":"2026-03-22T10:46:27.368004191Z"} +2026/03/22 10:46:32 [metric_collector] {"stage_name":"metric_collector","events_processed":17099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3419.8,"last_update":"2026-03-22T10:46:27.368523195Z"} +2026/03/22 10:46:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:46:27.37783312Z"} +2026/03/22 10:46:32 [detection_layer] {"stage_name":"detection_layer","events_processed":569,"events_dropped":0,"avg_latency_ms":16.67235030047409,"throughput_eps":0,"last_update":"2026-03-22T10:46:27.479145598Z"} +2026/03/22 10:46:32 [transform_engine] {"stage_name":"transform_engine","events_processed":570,"events_dropped":0,"avg_latency_ms":120.07919871960435,"throughput_eps":0,"last_update":"2026-03-22T10:46:27.567420193Z"} +2026/03/22 10:46:32 ───────────────────────────────────────────────── +2026/03/22 10:46:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:46:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:46:32.377652077Z"} +2026/03/22 10:46:37 [detection_layer] {"stage_name":"detection_layer","events_processed":570,"events_dropped":0,"avg_latency_ms":16.233929640379273,"throughput_eps":0,"last_update":"2026-03-22T10:46:32.479867225Z"} +2026/03/22 10:46:37 [transform_engine] {"stage_name":"transform_engine","events_processed":570,"events_dropped":0,"avg_latency_ms":120.07919871960435,"throughput_eps":0,"last_update":"2026-03-22T10:46:32.47988001Z"} +2026/03/22 10:46:37 [log_collector] {"stage_name":"log_collector","events_processed":26457,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5291.4,"last_update":"2026-03-22T10:46:32.368712723Z"} +2026/03/22 10:46:37 [metric_collector] {"stage_name":"metric_collector","events_processed":17104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3420.8,"last_update":"2026-03-22T10:46:32.36916519Z"} +2026/03/22 10:46:37 ───────────────────────────────────────────────── +2026/03/22 10:46:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:46:42 [detection_layer] {"stage_name":"detection_layer","events_processed":570,"events_dropped":0,"avg_latency_ms":16.233929640379273,"throughput_eps":0,"last_update":"2026-03-22T10:46:37.479483565Z"} +2026/03/22 10:46:42 [transform_engine] {"stage_name":"transform_engine","events_processed":570,"events_dropped":0,"avg_latency_ms":120.07919871960435,"throughput_eps":0,"last_update":"2026-03-22T10:46:37.479495958Z"} +2026/03/22 10:46:42 [log_collector] {"stage_name":"log_collector","events_processed":26457,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5291.4,"last_update":"2026-03-22T10:46:37.368446828Z"} +2026/03/22 10:46:42 [metric_collector] {"stage_name":"metric_collector","events_processed":17109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3421.8,"last_update":"2026-03-22T10:46:37.368314866Z"} +2026/03/22 10:46:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:46:37.377292903Z"} +2026/03/22 10:46:42 ───────────────────────────────────────────────── +2026/03/22 10:46:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:46:47 [log_collector] {"stage_name":"log_collector","events_processed":26457,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5291.4,"last_update":"2026-03-22T10:46:42.368643811Z"} +2026/03/22 10:46:47 [metric_collector] {"stage_name":"metric_collector","events_processed":17114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3422.8,"last_update":"2026-03-22T10:46:42.369126876Z"} +2026/03/22 10:46:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6848,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:46:42.375393831Z"} +2026/03/22 10:46:47 [detection_layer] {"stage_name":"detection_layer","events_processed":570,"events_dropped":0,"avg_latency_ms":16.233929640379273,"throughput_eps":0,"last_update":"2026-03-22T10:46:42.479606196Z"} +2026/03/22 10:46:47 [transform_engine] {"stage_name":"transform_engine","events_processed":570,"events_dropped":0,"avg_latency_ms":120.07919871960435,"throughput_eps":0,"last_update":"2026-03-22T10:46:42.479618739Z"} +2026/03/22 10:46:47 ───────────────────────────────────────────────── +2026/03/22 10:46:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:46:52 [log_collector] {"stage_name":"log_collector","events_processed":26457,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5291.4,"last_update":"2026-03-22T10:46:47.368104131Z"} +2026/03/22 10:46:52 [metric_collector] {"stage_name":"metric_collector","events_processed":17119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3423.8,"last_update":"2026-03-22T10:46:47.368448981Z"} +2026/03/22 10:46:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:46:47.374604452Z"} +2026/03/22 10:46:52 [detection_layer] {"stage_name":"detection_layer","events_processed":570,"events_dropped":0,"avg_latency_ms":16.233929640379273,"throughput_eps":0,"last_update":"2026-03-22T10:46:47.479811562Z"} +2026/03/22 10:46:52 [transform_engine] {"stage_name":"transform_engine","events_processed":570,"events_dropped":0,"avg_latency_ms":120.07919871960435,"throughput_eps":0,"last_update":"2026-03-22T10:46:47.47984171Z"} +2026/03/22 10:46:52 ───────────────────────────────────────────────── +2026/03/22 10:46:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:46:57 [transform_engine] {"stage_name":"transform_engine","events_processed":570,"events_dropped":0,"avg_latency_ms":120.07919871960435,"throughput_eps":0,"last_update":"2026-03-22T10:46:52.479451856Z"} +2026/03/22 10:46:57 [log_collector] {"stage_name":"log_collector","events_processed":26457,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5291.4,"last_update":"2026-03-22T10:46:52.36885385Z"} +2026/03/22 10:46:57 [metric_collector] {"stage_name":"metric_collector","events_processed":17124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3424.8,"last_update":"2026-03-22T10:46:52.369329932Z"} +2026/03/22 10:46:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:46:52.37725871Z"} +2026/03/22 10:46:57 [detection_layer] {"stage_name":"detection_layer","events_processed":570,"events_dropped":0,"avg_latency_ms":16.233929640379273,"throughput_eps":0,"last_update":"2026-03-22T10:46:52.479441026Z"} +2026/03/22 10:46:57 ───────────────────────────────────────────────── +2026/03/22 10:46:57 [ANOMALY] time=2026-03-22T10:46:57Z score=0.7752 method=SEAD details=MAD!:w=0.57,s=0.82 RRCF-fast:w=0.11,s=0.53 RRCF-mid:w=0.09,s=0.89 RRCF-slow:w=0.09,s=0.95 COPOD!:w=0.13,s=0.59 +2026/03/22 10:47:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:47:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:46:57.377177349Z"} +2026/03/22 10:47:02 [detection_layer] {"stage_name":"detection_layer","events_processed":570,"events_dropped":0,"avg_latency_ms":16.233929640379273,"throughput_eps":0,"last_update":"2026-03-22T10:46:57.479373191Z"} +2026/03/22 10:47:02 [transform_engine] {"stage_name":"transform_engine","events_processed":571,"events_dropped":0,"avg_latency_ms":110.54807117568349,"throughput_eps":0,"last_update":"2026-03-22T10:46:57.551809928Z"} +2026/03/22 10:47:02 [log_collector] {"stage_name":"log_collector","events_processed":26457,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5291.4,"last_update":"2026-03-22T10:46:57.367995231Z"} +2026/03/22 10:47:02 [metric_collector] {"stage_name":"metric_collector","events_processed":17129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3425.8,"last_update":"2026-03-22T10:46:57.368671476Z"} +2026/03/22 10:47:02 ───────────────────────────────────────────────── +2026/03/22 10:47:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:47:07 [transform_engine] {"stage_name":"transform_engine","events_processed":571,"events_dropped":0,"avg_latency_ms":110.54807117568349,"throughput_eps":0,"last_update":"2026-03-22T10:47:02.479579777Z"} +2026/03/22 10:47:07 [log_collector] {"stage_name":"log_collector","events_processed":26457,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5291.4,"last_update":"2026-03-22T10:47:02.368559191Z"} +2026/03/22 10:47:07 [metric_collector] {"stage_name":"metric_collector","events_processed":17134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3426.8,"last_update":"2026-03-22T10:47:02.369095247Z"} +2026/03/22 10:47:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:47:02.377480711Z"} +2026/03/22 10:47:07 [detection_layer] {"stage_name":"detection_layer","events_processed":571,"events_dropped":0,"avg_latency_ms":16.20279351230342,"throughput_eps":0,"last_update":"2026-03-22T10:47:02.479616617Z"} +2026/03/22 10:47:07 ───────────────────────────────────────────────── +2026/03/22 10:47:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:47:12 [log_collector] {"stage_name":"log_collector","events_processed":26457,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5291.4,"last_update":"2026-03-22T10:47:07.368429507Z"} +2026/03/22 10:47:12 [metric_collector] {"stage_name":"metric_collector","events_processed":17139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3427.8,"last_update":"2026-03-22T10:47:07.368887675Z"} +2026/03/22 10:47:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:47:07.378202568Z"} +2026/03/22 10:47:12 [detection_layer] {"stage_name":"detection_layer","events_processed":571,"events_dropped":0,"avg_latency_ms":16.20279351230342,"throughput_eps":0,"last_update":"2026-03-22T10:47:07.479515317Z"} +2026/03/22 10:47:12 [transform_engine] {"stage_name":"transform_engine","events_processed":571,"events_dropped":0,"avg_latency_ms":110.54807117568349,"throughput_eps":0,"last_update":"2026-03-22T10:47:07.479572757Z"} +2026/03/22 10:47:12 ───────────────────────────────────────────────── +Saved state: 14 clusters, 26458 messages, reason: none +2026/03/22 10:47:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:47:17 [transform_engine] {"stage_name":"transform_engine","events_processed":571,"events_dropped":0,"avg_latency_ms":110.54807117568349,"throughput_eps":0,"last_update":"2026-03-22T10:47:12.479820913Z"} +2026/03/22 10:47:17 [log_collector] {"stage_name":"log_collector","events_processed":26457,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5291.4,"last_update":"2026-03-22T10:47:12.368456418Z"} +2026/03/22 10:47:17 [metric_collector] {"stage_name":"metric_collector","events_processed":17144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3428.8,"last_update":"2026-03-22T10:47:12.368640291Z"} +2026/03/22 10:47:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6860,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:47:12.375644187Z"} +2026/03/22 10:47:17 [detection_layer] {"stage_name":"detection_layer","events_processed":571,"events_dropped":0,"avg_latency_ms":16.20279351230342,"throughput_eps":0,"last_update":"2026-03-22T10:47:12.479843717Z"} +2026/03/22 10:47:17 ───────────────────────────────────────────────── +2026/03/22 10:47:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:47:22 [log_collector] {"stage_name":"log_collector","events_processed":26460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5292,"last_update":"2026-03-22T10:47:17.36798695Z"} +2026/03/22 10:47:22 [metric_collector] {"stage_name":"metric_collector","events_processed":17149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3429.8,"last_update":"2026-03-22T10:47:17.368149611Z"} +2026/03/22 10:47:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6862,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:47:17.376080213Z"} +2026/03/22 10:47:22 [detection_layer] {"stage_name":"detection_layer","events_processed":571,"events_dropped":0,"avg_latency_ms":16.20279351230342,"throughput_eps":0,"last_update":"2026-03-22T10:47:17.479289796Z"} +2026/03/22 10:47:22 [transform_engine] {"stage_name":"transform_engine","events_processed":571,"events_dropped":0,"avg_latency_ms":110.54807117568349,"throughput_eps":0,"last_update":"2026-03-22T10:47:17.479237737Z"} +2026/03/22 10:47:22 ───────────────────────────────────────────────── +2026/03/22 10:47:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:47:27 [transform_engine] {"stage_name":"transform_engine","events_processed":571,"events_dropped":0,"avg_latency_ms":110.54807117568349,"throughput_eps":0,"last_update":"2026-03-22T10:47:22.479310326Z"} +2026/03/22 10:47:27 [log_collector] {"stage_name":"log_collector","events_processed":26468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5293.6,"last_update":"2026-03-22T10:47:22.368078797Z"} +2026/03/22 10:47:27 [metric_collector] {"stage_name":"metric_collector","events_processed":17154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3430.8,"last_update":"2026-03-22T10:47:22.368583193Z"} +2026/03/22 10:47:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:47:22.377052176Z"} +2026/03/22 10:47:27 [detection_layer] {"stage_name":"detection_layer","events_processed":571,"events_dropped":0,"avg_latency_ms":16.20279351230342,"throughput_eps":0,"last_update":"2026-03-22T10:47:22.47933831Z"} +2026/03/22 10:47:27 ───────────────────────────────────────────────── +2026/03/22 10:47:27 [ANOMALY] time=2026-03-22T10:47:27Z score=0.8737 method=SEAD details=MAD!:w=0.57,s=0.93 RRCF-fast:w=0.11,s=0.93 RRCF-mid:w=0.09,s=0.90 RRCF-slow:w=0.09,s=0.95 COPOD!:w=0.13,s=0.52 +2026/03/22 10:47:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:47:32 [log_collector] {"stage_name":"log_collector","events_processed":26468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5293.6,"last_update":"2026-03-22T10:47:27.368531403Z"} +2026/03/22 10:47:32 [metric_collector] {"stage_name":"metric_collector","events_processed":17159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3431.8,"last_update":"2026-03-22T10:47:27.368779609Z"} +2026/03/22 10:47:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:47:27.376005851Z"} +2026/03/22 10:47:32 [detection_layer] {"stage_name":"detection_layer","events_processed":571,"events_dropped":0,"avg_latency_ms":16.20279351230342,"throughput_eps":0,"last_update":"2026-03-22T10:47:27.480013011Z"} +2026/03/22 10:47:32 [transform_engine] {"stage_name":"transform_engine","events_processed":571,"events_dropped":0,"avg_latency_ms":110.54807117568349,"throughput_eps":0,"last_update":"2026-03-22T10:47:27.479999445Z"} +2026/03/22 10:47:32 ───────────────────────────────────────────────── +2026/03/22 10:47:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:47:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6868,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:47:32.37442358Z"} +2026/03/22 10:47:37 [detection_layer] {"stage_name":"detection_layer","events_processed":572,"events_dropped":0,"avg_latency_ms":15.243547009842736,"throughput_eps":0,"last_update":"2026-03-22T10:47:32.479783752Z"} +2026/03/22 10:47:37 [transform_engine] {"stage_name":"transform_engine","events_processed":572,"events_dropped":0,"avg_latency_ms":127.5904825405468,"throughput_eps":0,"last_update":"2026-03-22T10:47:32.479926947Z"} +2026/03/22 10:47:37 [log_collector] {"stage_name":"log_collector","events_processed":26756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5351.2,"last_update":"2026-03-22T10:47:32.368731015Z"} +2026/03/22 10:47:37 [metric_collector] {"stage_name":"metric_collector","events_processed":17164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3432.8,"last_update":"2026-03-22T10:47:32.369002164Z"} +2026/03/22 10:47:37 ───────────────────────────────────────────────── +2026/03/22 10:47:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:47:42 [log_collector] {"stage_name":"log_collector","events_processed":26822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5364.4,"last_update":"2026-03-22T10:47:37.368018668Z"} +2026/03/22 10:47:42 [metric_collector] {"stage_name":"metric_collector","events_processed":17169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3433.8,"last_update":"2026-03-22T10:47:37.368422061Z"} +2026/03/22 10:47:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:47:37.377585815Z"} +2026/03/22 10:47:42 [detection_layer] {"stage_name":"detection_layer","events_processed":572,"events_dropped":0,"avg_latency_ms":15.243547009842736,"throughput_eps":0,"last_update":"2026-03-22T10:47:37.479864705Z"} +2026/03/22 10:47:42 [transform_engine] {"stage_name":"transform_engine","events_processed":572,"events_dropped":0,"avg_latency_ms":127.5904825405468,"throughput_eps":0,"last_update":"2026-03-22T10:47:37.479819228Z"} +2026/03/22 10:47:42 ───────────────────────────────────────────────── +2026/03/22 10:47:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:47:47 [log_collector] {"stage_name":"log_collector","events_processed":26825,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5365,"last_update":"2026-03-22T10:47:47.368405156Z"} +2026/03/22 10:47:47 [metric_collector] {"stage_name":"metric_collector","events_processed":17174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3434.8,"last_update":"2026-03-22T10:47:42.368306509Z"} +2026/03/22 10:47:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:47:42.37637333Z"} +2026/03/22 10:47:47 [detection_layer] {"stage_name":"detection_layer","events_processed":572,"events_dropped":0,"avg_latency_ms":15.243547009842736,"throughput_eps":0,"last_update":"2026-03-22T10:47:42.479620626Z"} +2026/03/22 10:47:47 [transform_engine] {"stage_name":"transform_engine","events_processed":572,"events_dropped":0,"avg_latency_ms":127.5904825405468,"throughput_eps":0,"last_update":"2026-03-22T10:47:42.47961219Z"} +2026/03/22 10:47:47 ───────────────────────────────────────────────── +2026/03/22 10:47:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:47:52 [log_collector] {"stage_name":"log_collector","events_processed":26825,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5365,"last_update":"2026-03-22T10:47:47.368405156Z"} +2026/03/22 10:47:52 [metric_collector] {"stage_name":"metric_collector","events_processed":17179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3435.8,"last_update":"2026-03-22T10:47:47.369065511Z"} +2026/03/22 10:47:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:47:47.376939995Z"} +2026/03/22 10:47:52 [detection_layer] {"stage_name":"detection_layer","events_processed":572,"events_dropped":0,"avg_latency_ms":15.243547009842736,"throughput_eps":0,"last_update":"2026-03-22T10:47:47.479954594Z"} +2026/03/22 10:47:52 [transform_engine] {"stage_name":"transform_engine","events_processed":572,"events_dropped":0,"avg_latency_ms":127.5904825405468,"throughput_eps":0,"last_update":"2026-03-22T10:47:47.478873012Z"} +2026/03/22 10:47:52 ───────────────────────────────────────────────── +2026/03/22 10:47:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:47:57 [metric_collector] {"stage_name":"metric_collector","events_processed":17184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3436.8,"last_update":"2026-03-22T10:47:52.369470743Z"} +2026/03/22 10:47:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6876,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:47:52.377675521Z"} +2026/03/22 10:47:57 [detection_layer] {"stage_name":"detection_layer","events_processed":572,"events_dropped":0,"avg_latency_ms":15.243547009842736,"throughput_eps":0,"last_update":"2026-03-22T10:47:52.47894676Z"} +2026/03/22 10:47:57 [transform_engine] {"stage_name":"transform_engine","events_processed":572,"events_dropped":0,"avg_latency_ms":127.5904825405468,"throughput_eps":0,"last_update":"2026-03-22T10:47:52.478883118Z"} +2026/03/22 10:47:57 [log_collector] {"stage_name":"log_collector","events_processed":26835,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5367,"last_update":"2026-03-22T10:47:52.368720596Z"} +2026/03/22 10:47:57 ───────────────────────────────────────────────── +2026/03/22 10:48:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:48:02 [log_collector] {"stage_name":"log_collector","events_processed":26850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5370,"last_update":"2026-03-22T10:47:57.368293947Z"} +2026/03/22 10:48:02 [metric_collector] {"stage_name":"metric_collector","events_processed":17189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3437.8,"last_update":"2026-03-22T10:47:57.368519959Z"} +2026/03/22 10:48:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:47:57.375659645Z"} +2026/03/22 10:48:02 [detection_layer] {"stage_name":"detection_layer","events_processed":572,"events_dropped":0,"avg_latency_ms":15.243547009842736,"throughput_eps":0,"last_update":"2026-03-22T10:47:57.479983773Z"} +2026/03/22 10:48:02 [transform_engine] {"stage_name":"transform_engine","events_processed":573,"events_dropped":0,"avg_latency_ms":309.8629672324375,"throughput_eps":0,"last_update":"2026-03-22T10:47:58.517810211Z"} +2026/03/22 10:48:02 ───────────────────────────────────────────────── +2026/03/22 10:48:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:48:07 [log_collector] {"stage_name":"log_collector","events_processed":26852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5370.4,"last_update":"2026-03-22T10:48:02.368196696Z"} +2026/03/22 10:48:07 [metric_collector] {"stage_name":"metric_collector","events_processed":17194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3438.8,"last_update":"2026-03-22T10:48:02.368516468Z"} +2026/03/22 10:48:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:48:02.377514785Z"} +2026/03/22 10:48:07 [detection_layer] {"stage_name":"detection_layer","events_processed":573,"events_dropped":0,"avg_latency_ms":15.77178340787419,"throughput_eps":0,"last_update":"2026-03-22T10:48:02.479731796Z"} +2026/03/22 10:48:07 [transform_engine] {"stage_name":"transform_engine","events_processed":573,"events_dropped":0,"avg_latency_ms":309.8629672324375,"throughput_eps":0,"last_update":"2026-03-22T10:48:02.479745222Z"} +2026/03/22 10:48:07 ───────────────────────────────────────────────── +2026/03/22 10:48:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:48:12 [transform_engine] {"stage_name":"transform_engine","events_processed":573,"events_dropped":0,"avg_latency_ms":309.8629672324375,"throughput_eps":0,"last_update":"2026-03-22T10:48:07.479493326Z"} +2026/03/22 10:48:12 [log_collector] {"stage_name":"log_collector","events_processed":26852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5370.4,"last_update":"2026-03-22T10:48:07.368648818Z"} +2026/03/22 10:48:12 [metric_collector] {"stage_name":"metric_collector","events_processed":17199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3439.8,"last_update":"2026-03-22T10:48:07.369440164Z"} +2026/03/22 10:48:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:48:07.378233158Z"} +2026/03/22 10:48:12 [detection_layer] {"stage_name":"detection_layer","events_processed":573,"events_dropped":0,"avg_latency_ms":15.77178340787419,"throughput_eps":0,"last_update":"2026-03-22T10:48:07.479480021Z"} +2026/03/22 10:48:12 ───────────────────────────────────────────────── +2026/03/22 10:48:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:48:17 [log_collector] {"stage_name":"log_collector","events_processed":26852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5370.4,"last_update":"2026-03-22T10:48:12.369017129Z"} +2026/03/22 10:48:17 [metric_collector] {"stage_name":"metric_collector","events_processed":17204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3440.8,"last_update":"2026-03-22T10:48:12.369585537Z"} +2026/03/22 10:48:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:48:12.379407753Z"} +2026/03/22 10:48:17 [detection_layer] {"stage_name":"detection_layer","events_processed":573,"events_dropped":0,"avg_latency_ms":15.77178340787419,"throughput_eps":0,"last_update":"2026-03-22T10:48:12.479029161Z"} +2026/03/22 10:48:17 [transform_engine] {"stage_name":"transform_engine","events_processed":573,"events_dropped":0,"avg_latency_ms":309.8629672324375,"throughput_eps":0,"last_update":"2026-03-22T10:48:12.478917428Z"} +2026/03/22 10:48:17 ───────────────────────────────────────────────── +2026/03/22 10:48:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:48:22 [log_collector] {"stage_name":"log_collector","events_processed":26852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5370.4,"last_update":"2026-03-22T10:48:17.36806108Z"} +2026/03/22 10:48:22 [metric_collector] {"stage_name":"metric_collector","events_processed":17209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3441.8,"last_update":"2026-03-22T10:48:17.368581056Z"} +2026/03/22 10:48:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6886,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:48:17.378600158Z"} +2026/03/22 10:48:22 [detection_layer] {"stage_name":"detection_layer","events_processed":573,"events_dropped":0,"avg_latency_ms":15.77178340787419,"throughput_eps":0,"last_update":"2026-03-22T10:48:17.479809438Z"} +2026/03/22 10:48:22 [transform_engine] {"stage_name":"transform_engine","events_processed":573,"events_dropped":0,"avg_latency_ms":309.8629672324375,"throughput_eps":0,"last_update":"2026-03-22T10:48:17.479820911Z"} +2026/03/22 10:48:22 ───────────────────────────────────────────────── +2026/03/22 10:48:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:48:27 [log_collector] {"stage_name":"log_collector","events_processed":26852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5370.4,"last_update":"2026-03-22T10:48:22.367994545Z"} +2026/03/22 10:48:27 [metric_collector] {"stage_name":"metric_collector","events_processed":17214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3442.8,"last_update":"2026-03-22T10:48:22.369099532Z"} +2026/03/22 10:48:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:48:22.374983464Z"} +2026/03/22 10:48:27 [detection_layer] {"stage_name":"detection_layer","events_processed":573,"events_dropped":0,"avg_latency_ms":15.77178340787419,"throughput_eps":0,"last_update":"2026-03-22T10:48:22.47923447Z"} +2026/03/22 10:48:27 [transform_engine] {"stage_name":"transform_engine","events_processed":573,"events_dropped":0,"avg_latency_ms":309.8629672324375,"throughput_eps":0,"last_update":"2026-03-22T10:48:22.479249129Z"} +2026/03/22 10:48:27 ───────────────────────────────────────────────── +2026/03/22 10:48:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:48:32 [detection_layer] {"stage_name":"detection_layer","events_processed":573,"events_dropped":0,"avg_latency_ms":15.77178340787419,"throughput_eps":0,"last_update":"2026-03-22T10:48:27.4794733Z"} +2026/03/22 10:48:32 [transform_engine] {"stage_name":"transform_engine","events_processed":574,"events_dropped":0,"avg_latency_ms":461.34491638595,"throughput_eps":0,"last_update":"2026-03-22T10:48:28.546763877Z"} +2026/03/22 10:48:32 [log_collector] {"stage_name":"log_collector","events_processed":26852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5370.4,"last_update":"2026-03-22T10:48:27.369026523Z"} +2026/03/22 10:48:32 [metric_collector] {"stage_name":"metric_collector","events_processed":17219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3443.8,"last_update":"2026-03-22T10:48:27.369461457Z"} +2026/03/22 10:48:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:48:27.379237724Z"} +2026/03/22 10:48:32 ───────────────────────────────────────────────── +2026/03/22 10:48:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:48:37 [log_collector] {"stage_name":"log_collector","events_processed":26852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5370.4,"last_update":"2026-03-22T10:48:32.36866382Z"} +2026/03/22 10:48:37 [metric_collector] {"stage_name":"metric_collector","events_processed":17224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3444.8,"last_update":"2026-03-22T10:48:32.369238381Z"} +2026/03/22 10:48:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6892,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:48:32.37782514Z"} +2026/03/22 10:48:37 [detection_layer] {"stage_name":"detection_layer","events_processed":574,"events_dropped":0,"avg_latency_ms":16.658385126299354,"throughput_eps":0,"last_update":"2026-03-22T10:48:32.47903385Z"} +2026/03/22 10:48:37 [transform_engine] {"stage_name":"transform_engine","events_processed":574,"events_dropped":0,"avg_latency_ms":461.34491638595,"throughput_eps":0,"last_update":"2026-03-22T10:48:32.479045652Z"} +2026/03/22 10:48:37 ───────────────────────────────────────────────── +2026/03/22 10:48:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:48:42 [detection_layer] {"stage_name":"detection_layer","events_processed":574,"events_dropped":0,"avg_latency_ms":16.658385126299354,"throughput_eps":0,"last_update":"2026-03-22T10:48:37.479888789Z"} +2026/03/22 10:48:42 [transform_engine] {"stage_name":"transform_engine","events_processed":574,"events_dropped":0,"avg_latency_ms":461.34491638595,"throughput_eps":0,"last_update":"2026-03-22T10:48:37.47990486Z"} +2026/03/22 10:48:42 [log_collector] {"stage_name":"log_collector","events_processed":26852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5370.4,"last_update":"2026-03-22T10:48:37.368749667Z"} +2026/03/22 10:48:42 [metric_collector] {"stage_name":"metric_collector","events_processed":17234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3446.8,"last_update":"2026-03-22T10:48:42.369341441Z"} +2026/03/22 10:48:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:48:37.378473864Z"} +2026/03/22 10:48:42 ───────────────────────────────────────────────── +2026/03/22 10:48:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:48:47 [log_collector] {"stage_name":"log_collector","events_processed":26852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5370.4,"last_update":"2026-03-22T10:48:47.36799297Z"} +2026/03/22 10:48:47 [metric_collector] {"stage_name":"metric_collector","events_processed":17234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3446.8,"last_update":"2026-03-22T10:48:42.369341441Z"} +2026/03/22 10:48:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6896,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:48:42.378303909Z"} +2026/03/22 10:48:47 [detection_layer] {"stage_name":"detection_layer","events_processed":574,"events_dropped":0,"avg_latency_ms":16.658385126299354,"throughput_eps":0,"last_update":"2026-03-22T10:48:42.479468685Z"} +2026/03/22 10:48:47 [transform_engine] {"stage_name":"transform_engine","events_processed":574,"events_dropped":0,"avg_latency_ms":461.34491638595,"throughput_eps":0,"last_update":"2026-03-22T10:48:42.479512268Z"} +2026/03/22 10:48:47 ───────────────────────────────────────────────── +2026/03/22 10:48:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:48:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6898,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:48:47.377429916Z"} +2026/03/22 10:48:52 [detection_layer] {"stage_name":"detection_layer","events_processed":574,"events_dropped":0,"avg_latency_ms":16.658385126299354,"throughput_eps":0,"last_update":"2026-03-22T10:48:47.479653791Z"} +2026/03/22 10:48:52 [transform_engine] {"stage_name":"transform_engine","events_processed":574,"events_dropped":0,"avg_latency_ms":461.34491638595,"throughput_eps":0,"last_update":"2026-03-22T10:48:47.479665713Z"} +2026/03/22 10:48:52 [log_collector] {"stage_name":"log_collector","events_processed":26852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5370.4,"last_update":"2026-03-22T10:48:52.368392034Z"} +2026/03/22 10:48:52 [metric_collector] {"stage_name":"metric_collector","events_processed":17244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3448.8,"last_update":"2026-03-22T10:48:52.368329203Z"} +2026/03/22 10:48:52 ───────────────────────────────────────────────── +2026/03/22 10:48:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:48:57 [log_collector] {"stage_name":"log_collector","events_processed":26852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5370.4,"last_update":"2026-03-22T10:48:52.368392034Z"} +2026/03/22 10:48:57 [metric_collector] {"stage_name":"metric_collector","events_processed":17244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3448.8,"last_update":"2026-03-22T10:48:52.368329203Z"} +2026/03/22 10:48:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6900,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:48:52.376108624Z"} +2026/03/22 10:48:57 [detection_layer] {"stage_name":"detection_layer","events_processed":574,"events_dropped":0,"avg_latency_ms":16.658385126299354,"throughput_eps":0,"last_update":"2026-03-22T10:48:52.479319039Z"} +2026/03/22 10:48:57 [transform_engine] {"stage_name":"transform_engine","events_processed":574,"events_dropped":0,"avg_latency_ms":461.34491638595,"throughput_eps":0,"last_update":"2026-03-22T10:48:52.479331383Z"} +2026/03/22 10:48:57 ───────────────────────────────────────────────── +2026/03/22 10:49:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:49:02 [log_collector] {"stage_name":"log_collector","events_processed":26852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5370.4,"last_update":"2026-03-22T10:48:57.368619798Z"} +2026/03/22 10:49:02 [metric_collector] {"stage_name":"metric_collector","events_processed":17249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3449.8,"last_update":"2026-03-22T10:48:57.368807558Z"} +2026/03/22 10:49:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:48:57.378729735Z"} +2026/03/22 10:49:02 [detection_layer] {"stage_name":"detection_layer","events_processed":574,"events_dropped":0,"avg_latency_ms":16.658385126299354,"throughput_eps":0,"last_update":"2026-03-22T10:48:57.479971698Z"} +2026/03/22 10:49:02 [transform_engine] {"stage_name":"transform_engine","events_processed":575,"events_dropped":0,"avg_latency_ms":383.99713550876004,"throughput_eps":0,"last_update":"2026-03-22T10:48:57.553480007Z"} +2026/03/22 10:49:02 ───────────────────────────────────────────────── +2026/03/22 10:49:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:49:07 [log_collector] {"stage_name":"log_collector","events_processed":26852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5370.4,"last_update":"2026-03-22T10:49:02.367981004Z"} +2026/03/22 10:49:07 [metric_collector] {"stage_name":"metric_collector","events_processed":17254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3450.8,"last_update":"2026-03-22T10:49:02.368395117Z"} +2026/03/22 10:49:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:49:02.377502873Z"} +2026/03/22 10:49:07 [detection_layer] {"stage_name":"detection_layer","events_processed":575,"events_dropped":0,"avg_latency_ms":17.226750701039485,"throughput_eps":0,"last_update":"2026-03-22T10:49:02.479732058Z"} +2026/03/22 10:49:07 [transform_engine] {"stage_name":"transform_engine","events_processed":575,"events_dropped":0,"avg_latency_ms":383.99713550876004,"throughput_eps":0,"last_update":"2026-03-22T10:49:02.479747988Z"} +2026/03/22 10:49:07 ───────────────────────────────────────────────── +2026/03/22 10:49:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:49:12 [transform_engine] {"stage_name":"transform_engine","events_processed":575,"events_dropped":0,"avg_latency_ms":383.99713550876004,"throughput_eps":0,"last_update":"2026-03-22T10:49:07.478819439Z"} +2026/03/22 10:49:12 [log_collector] {"stage_name":"log_collector","events_processed":26852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5370.4,"last_update":"2026-03-22T10:49:12.368390064Z"} +2026/03/22 10:49:12 [metric_collector] {"stage_name":"metric_collector","events_processed":17259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3451.8,"last_update":"2026-03-22T10:49:07.368471221Z"} +2026/03/22 10:49:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6906,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:49:07.376680506Z"} +2026/03/22 10:49:12 [detection_layer] {"stage_name":"detection_layer","events_processed":575,"events_dropped":0,"avg_latency_ms":17.226750701039485,"throughput_eps":0,"last_update":"2026-03-22T10:49:07.479954333Z"} +2026/03/22 10:49:12 ───────────────────────────────────────────────── +Saved state: 14 clusters, 26853 messages, reason: none +2026/03/22 10:49:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:49:17 [log_collector] {"stage_name":"log_collector","events_processed":26852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5370.4,"last_update":"2026-03-22T10:49:12.368390064Z"} +2026/03/22 10:49:17 [metric_collector] {"stage_name":"metric_collector","events_processed":17264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3452.8,"last_update":"2026-03-22T10:49:12.368788226Z"} +2026/03/22 10:49:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6908,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:49:12.378445646Z"} +2026/03/22 10:49:17 [detection_layer] {"stage_name":"detection_layer","events_processed":575,"events_dropped":0,"avg_latency_ms":17.226750701039485,"throughput_eps":0,"last_update":"2026-03-22T10:49:12.479742174Z"} +2026/03/22 10:49:17 [transform_engine] {"stage_name":"transform_engine","events_processed":575,"events_dropped":0,"avg_latency_ms":383.99713550876004,"throughput_eps":0,"last_update":"2026-03-22T10:49:12.479758856Z"} +2026/03/22 10:49:17 ───────────────────────────────────────────────── +2026/03/22 10:49:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:49:22 [detection_layer] {"stage_name":"detection_layer","events_processed":575,"events_dropped":0,"avg_latency_ms":17.226750701039485,"throughput_eps":0,"last_update":"2026-03-22T10:49:17.479388575Z"} +2026/03/22 10:49:22 [transform_engine] {"stage_name":"transform_engine","events_processed":575,"events_dropped":0,"avg_latency_ms":383.99713550876004,"throughput_eps":0,"last_update":"2026-03-22T10:49:17.479398263Z"} +2026/03/22 10:49:22 [log_collector] {"stage_name":"log_collector","events_processed":26865,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5373,"last_update":"2026-03-22T10:49:17.367970138Z"} +2026/03/22 10:49:22 [metric_collector] {"stage_name":"metric_collector","events_processed":17269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3453.8,"last_update":"2026-03-22T10:49:17.368560207Z"} +2026/03/22 10:49:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:49:17.375146323Z"} +2026/03/22 10:49:22 ───────────────────────────────────────────────── +2026/03/22 10:49:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:49:27 [log_collector] {"stage_name":"log_collector","events_processed":26866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5373.2,"last_update":"2026-03-22T10:49:22.368816885Z"} +2026/03/22 10:49:27 [metric_collector] {"stage_name":"metric_collector","events_processed":17274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3454.8,"last_update":"2026-03-22T10:49:22.369128271Z"} +2026/03/22 10:49:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6912,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:49:22.377717465Z"} +2026/03/22 10:49:27 [detection_layer] {"stage_name":"detection_layer","events_processed":575,"events_dropped":0,"avg_latency_ms":17.226750701039485,"throughput_eps":0,"last_update":"2026-03-22T10:49:22.478964459Z"} +2026/03/22 10:49:27 [transform_engine] {"stage_name":"transform_engine","events_processed":575,"events_dropped":0,"avg_latency_ms":383.99713550876004,"throughput_eps":0,"last_update":"2026-03-22T10:49:22.47890818Z"} +2026/03/22 10:49:27 ───────────────────────────────────────────────── +2026/03/22 10:49:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:49:32 [log_collector] {"stage_name":"log_collector","events_processed":26866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5373.2,"last_update":"2026-03-22T10:49:27.368881906Z"} +2026/03/22 10:49:32 [metric_collector] {"stage_name":"metric_collector","events_processed":17279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3455.8,"last_update":"2026-03-22T10:49:27.3694425Z"} +2026/03/22 10:49:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:49:27.37807223Z"} +2026/03/22 10:49:32 [detection_layer] {"stage_name":"detection_layer","events_processed":575,"events_dropped":0,"avg_latency_ms":17.226750701039485,"throughput_eps":0,"last_update":"2026-03-22T10:49:27.479420718Z"} +2026/03/22 10:49:32 [transform_engine] {"stage_name":"transform_engine","events_processed":576,"events_dropped":0,"avg_latency_ms":492.17786480700806,"throughput_eps":0,"last_update":"2026-03-22T10:49:28.404173917Z"} +2026/03/22 10:49:32 ───────────────────────────────────────────────── +2026/03/22 10:49:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:49:37 [log_collector] {"stage_name":"log_collector","events_processed":26866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5373.2,"last_update":"2026-03-22T10:49:32.36858318Z"} +2026/03/22 10:49:37 [metric_collector] {"stage_name":"metric_collector","events_processed":17284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3456.8,"last_update":"2026-03-22T10:49:32.368897623Z"} +2026/03/22 10:49:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:49:32.377981974Z"} +2026/03/22 10:49:37 [detection_layer] {"stage_name":"detection_layer","events_processed":576,"events_dropped":0,"avg_latency_ms":17.49777356083159,"throughput_eps":0,"last_update":"2026-03-22T10:49:32.479411196Z"} +2026/03/22 10:49:37 [transform_engine] {"stage_name":"transform_engine","events_processed":576,"events_dropped":0,"avg_latency_ms":492.17786480700806,"throughput_eps":0,"last_update":"2026-03-22T10:49:32.479270767Z"} +2026/03/22 10:49:37 ───────────────────────────────────────────────── +2026/03/22 10:49:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:49:42 [detection_layer] {"stage_name":"detection_layer","events_processed":576,"events_dropped":0,"avg_latency_ms":17.49777356083159,"throughput_eps":0,"last_update":"2026-03-22T10:49:37.479682461Z"} +2026/03/22 10:49:42 [transform_engine] {"stage_name":"transform_engine","events_processed":576,"events_dropped":0,"avg_latency_ms":492.17786480700806,"throughput_eps":0,"last_update":"2026-03-22T10:49:37.479601846Z"} +2026/03/22 10:49:42 [log_collector] {"stage_name":"log_collector","events_processed":26866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5373.2,"last_update":"2026-03-22T10:49:37.367983727Z"} +2026/03/22 10:49:42 [metric_collector] {"stage_name":"metric_collector","events_processed":17289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3457.8,"last_update":"2026-03-22T10:49:37.368470128Z"} +2026/03/22 10:49:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6918,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:49:37.377376448Z"} +2026/03/22 10:49:42 ───────────────────────────────────────────────── +2026/03/22 10:49:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:49:47 [log_collector] {"stage_name":"log_collector","events_processed":26866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5373.2,"last_update":"2026-03-22T10:49:42.367965317Z"} +2026/03/22 10:49:47 [metric_collector] {"stage_name":"metric_collector","events_processed":17294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3458.8,"last_update":"2026-03-22T10:49:42.368424186Z"} +2026/03/22 10:49:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6920,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:49:42.378172849Z"} +2026/03/22 10:49:47 [detection_layer] {"stage_name":"detection_layer","events_processed":576,"events_dropped":0,"avg_latency_ms":17.49777356083159,"throughput_eps":0,"last_update":"2026-03-22T10:49:42.479429752Z"} +2026/03/22 10:49:47 [transform_engine] {"stage_name":"transform_engine","events_processed":576,"events_dropped":0,"avg_latency_ms":492.17786480700806,"throughput_eps":0,"last_update":"2026-03-22T10:49:42.479401418Z"} +2026/03/22 10:49:47 ───────────────────────────────────────────────── +2026/03/22 10:49:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:49:52 [log_collector] {"stage_name":"log_collector","events_processed":26866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5373.2,"last_update":"2026-03-22T10:49:47.368301927Z"} +2026/03/22 10:49:52 [metric_collector] {"stage_name":"metric_collector","events_processed":17299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3459.8,"last_update":"2026-03-22T10:49:47.368296076Z"} +2026/03/22 10:49:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:49:47.37826455Z"} +2026/03/22 10:49:52 [detection_layer] {"stage_name":"detection_layer","events_processed":576,"events_dropped":0,"avg_latency_ms":17.49777356083159,"throughput_eps":0,"last_update":"2026-03-22T10:49:47.479560287Z"} +2026/03/22 10:49:52 [transform_engine] {"stage_name":"transform_engine","events_processed":576,"events_dropped":0,"avg_latency_ms":492.17786480700806,"throughput_eps":0,"last_update":"2026-03-22T10:49:47.47958311Z"} +2026/03/22 10:49:52 ───────────────────────────────────────────────── +2026/03/22 10:49:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:49:57 [log_collector] {"stage_name":"log_collector","events_processed":26866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5373.2,"last_update":"2026-03-22T10:49:52.368611322Z"} +2026/03/22 10:49:57 [metric_collector] {"stage_name":"metric_collector","events_processed":17304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3460.8,"last_update":"2026-03-22T10:49:52.36900661Z"} +2026/03/22 10:49:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:49:52.374726267Z"} +2026/03/22 10:49:57 [detection_layer] {"stage_name":"detection_layer","events_processed":576,"events_dropped":0,"avg_latency_ms":17.49777356083159,"throughput_eps":0,"last_update":"2026-03-22T10:49:52.478956403Z"} +2026/03/22 10:49:57 [transform_engine] {"stage_name":"transform_engine","events_processed":576,"events_dropped":0,"avg_latency_ms":492.17786480700806,"throughput_eps":0,"last_update":"2026-03-22T10:49:52.478910336Z"} +2026/03/22 10:49:57 ───────────────────────────────────────────────── +2026/03/22 10:50:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:50:02 [transform_engine] {"stage_name":"transform_engine","events_processed":576,"events_dropped":0,"avg_latency_ms":492.17786480700806,"throughput_eps":0,"last_update":"2026-03-22T10:49:57.479101495Z"} +2026/03/22 10:50:02 [log_collector] {"stage_name":"log_collector","events_processed":26866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5373.2,"last_update":"2026-03-22T10:49:57.367973304Z"} +2026/03/22 10:50:02 [metric_collector] {"stage_name":"metric_collector","events_processed":17309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3461.8,"last_update":"2026-03-22T10:49:57.368264221Z"} +2026/03/22 10:50:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:49:57.376892699Z"} +2026/03/22 10:50:02 [detection_layer] {"stage_name":"detection_layer","events_processed":576,"events_dropped":0,"avg_latency_ms":17.49777356083159,"throughput_eps":0,"last_update":"2026-03-22T10:49:57.47916666Z"} +2026/03/22 10:50:02 ───────────────────────────────────────────────── +2026/03/22 10:50:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:50:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:50:02.385879047Z"} +2026/03/22 10:50:07 [detection_layer] {"stage_name":"detection_layer","events_processed":577,"events_dropped":0,"avg_latency_ms":18.202317848665274,"throughput_eps":0,"last_update":"2026-03-22T10:50:02.479277256Z"} +2026/03/22 10:50:07 [transform_engine] {"stage_name":"transform_engine","events_processed":577,"events_dropped":0,"avg_latency_ms":412.66003184560645,"throughput_eps":0,"last_update":"2026-03-22T10:50:02.479227942Z"} +2026/03/22 10:50:07 [log_collector] {"stage_name":"log_collector","events_processed":26866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5373.2,"last_update":"2026-03-22T10:50:02.369121998Z"} +2026/03/22 10:50:07 [metric_collector] {"stage_name":"metric_collector","events_processed":17314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3462.8,"last_update":"2026-03-22T10:50:02.369537494Z"} +2026/03/22 10:50:07 ───────────────────────────────────────────────── +2026/03/22 10:50:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:50:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6930,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:50:07.376984712Z"} +2026/03/22 10:50:12 [detection_layer] {"stage_name":"detection_layer","events_processed":577,"events_dropped":0,"avg_latency_ms":18.202317848665274,"throughput_eps":0,"last_update":"2026-03-22T10:50:07.479232652Z"} +2026/03/22 10:50:12 [transform_engine] {"stage_name":"transform_engine","events_processed":577,"events_dropped":0,"avg_latency_ms":412.66003184560645,"throughput_eps":0,"last_update":"2026-03-22T10:50:07.47920541Z"} +2026/03/22 10:50:12 [log_collector] {"stage_name":"log_collector","events_processed":26866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5373.2,"last_update":"2026-03-22T10:50:07.368011012Z"} +2026/03/22 10:50:12 [metric_collector] {"stage_name":"metric_collector","events_processed":17319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3463.8,"last_update":"2026-03-22T10:50:07.368507303Z"} +2026/03/22 10:50:12 ───────────────────────────────────────────────── +2026/03/22 10:50:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:50:17 [log_collector] {"stage_name":"log_collector","events_processed":26866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5373.2,"last_update":"2026-03-22T10:50:12.368306991Z"} +2026/03/22 10:50:17 [metric_collector] {"stage_name":"metric_collector","events_processed":17324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3464.8,"last_update":"2026-03-22T10:50:12.368610051Z"} +2026/03/22 10:50:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:50:12.37806888Z"} +2026/03/22 10:50:17 [detection_layer] {"stage_name":"detection_layer","events_processed":577,"events_dropped":0,"avg_latency_ms":18.202317848665274,"throughput_eps":0,"last_update":"2026-03-22T10:50:12.47954908Z"} +2026/03/22 10:50:17 [transform_engine] {"stage_name":"transform_engine","events_processed":577,"events_dropped":0,"avg_latency_ms":412.66003184560645,"throughput_eps":0,"last_update":"2026-03-22T10:50:12.479430273Z"} +2026/03/22 10:50:17 ───────────────────────────────────────────────── +Saved state: 14 clusters, 26867 messages, reason: none +2026/03/22 10:50:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:50:22 [detection_layer] {"stage_name":"detection_layer","events_processed":577,"events_dropped":0,"avg_latency_ms":18.202317848665274,"throughput_eps":0,"last_update":"2026-03-22T10:50:17.479858415Z"} +2026/03/22 10:50:22 [transform_engine] {"stage_name":"transform_engine","events_processed":577,"events_dropped":0,"avg_latency_ms":412.66003184560645,"throughput_eps":0,"last_update":"2026-03-22T10:50:17.479828528Z"} +2026/03/22 10:50:22 [log_collector] {"stage_name":"log_collector","events_processed":26866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5373.2,"last_update":"2026-03-22T10:50:17.368191923Z"} +2026/03/22 10:50:22 [metric_collector] {"stage_name":"metric_collector","events_processed":17329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3465.8,"last_update":"2026-03-22T10:50:17.368333173Z"} +2026/03/22 10:50:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:50:17.377468723Z"} +2026/03/22 10:50:22 ───────────────────────────────────────────────── +2026/03/22 10:50:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:50:27 [log_collector] {"stage_name":"log_collector","events_processed":26871,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5374.2,"last_update":"2026-03-22T10:50:22.368404252Z"} +2026/03/22 10:50:27 [metric_collector] {"stage_name":"metric_collector","events_processed":17334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3466.8,"last_update":"2026-03-22T10:50:22.368635435Z"} +2026/03/22 10:50:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:50:22.378492787Z"} +2026/03/22 10:50:27 [detection_layer] {"stage_name":"detection_layer","events_processed":577,"events_dropped":0,"avg_latency_ms":18.202317848665274,"throughput_eps":0,"last_update":"2026-03-22T10:50:22.479677611Z"} +2026/03/22 10:50:27 [transform_engine] {"stage_name":"transform_engine","events_processed":577,"events_dropped":0,"avg_latency_ms":412.66003184560645,"throughput_eps":0,"last_update":"2026-03-22T10:50:22.479653364Z"} +2026/03/22 10:50:27 ───────────────────────────────────────────────── +2026/03/22 10:50:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:50:32 [log_collector] {"stage_name":"log_collector","events_processed":26871,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5374.2,"last_update":"2026-03-22T10:50:32.367967919Z"} +2026/03/22 10:50:32 [metric_collector] {"stage_name":"metric_collector","events_processed":17339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3467.8,"last_update":"2026-03-22T10:50:27.370580331Z"} +2026/03/22 10:50:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:50:27.379255087Z"} +2026/03/22 10:50:32 [detection_layer] {"stage_name":"detection_layer","events_processed":577,"events_dropped":0,"avg_latency_ms":18.202317848665274,"throughput_eps":0,"last_update":"2026-03-22T10:50:27.479470916Z"} +2026/03/22 10:50:32 [transform_engine] {"stage_name":"transform_engine","events_processed":578,"events_dropped":0,"avg_latency_ms":1272.640896276485,"throughput_eps":0,"last_update":"2026-03-22T10:50:32.192024491Z"} +2026/03/22 10:50:32 ───────────────────────────────────────────────── +2026/03/22 10:50:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:50:37 [metric_collector] {"stage_name":"metric_collector","events_processed":17344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3468.8,"last_update":"2026-03-22T10:50:32.368197699Z"} +2026/03/22 10:50:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6940,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:50:32.379552951Z"} +2026/03/22 10:50:37 [detection_layer] {"stage_name":"detection_layer","events_processed":578,"events_dropped":0,"avg_latency_ms":17.28852727893222,"throughput_eps":0,"last_update":"2026-03-22T10:50:32.479785159Z"} +2026/03/22 10:50:37 [transform_engine] {"stage_name":"transform_engine","events_processed":578,"events_dropped":0,"avg_latency_ms":1272.640896276485,"throughput_eps":0,"last_update":"2026-03-22T10:50:32.479798735Z"} +2026/03/22 10:50:37 [log_collector] {"stage_name":"log_collector","events_processed":26871,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5374.2,"last_update":"2026-03-22T10:50:37.368654102Z"} +2026/03/22 10:50:37 ───────────────────────────────────────────────── +2026/03/22 10:50:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:50:42 [metric_collector] {"stage_name":"metric_collector","events_processed":17349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3469.8,"last_update":"2026-03-22T10:50:37.368991759Z"} +2026/03/22 10:50:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:50:37.379872011Z"} +2026/03/22 10:50:42 [detection_layer] {"stage_name":"detection_layer","events_processed":578,"events_dropped":0,"avg_latency_ms":17.28852727893222,"throughput_eps":0,"last_update":"2026-03-22T10:50:37.479091149Z"} +2026/03/22 10:50:42 [transform_engine] {"stage_name":"transform_engine","events_processed":578,"events_dropped":0,"avg_latency_ms":1272.640896276485,"throughput_eps":0,"last_update":"2026-03-22T10:50:37.479101109Z"} +2026/03/22 10:50:42 [log_collector] {"stage_name":"log_collector","events_processed":26871,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5374.2,"last_update":"2026-03-22T10:50:42.368406648Z"} +2026/03/22 10:50:42 ───────────────────────────────────────────────── +2026/03/22 10:50:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:50:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:50:42.375364847Z"} +2026/03/22 10:50:47 [detection_layer] {"stage_name":"detection_layer","events_processed":578,"events_dropped":0,"avg_latency_ms":17.28852727893222,"throughput_eps":0,"last_update":"2026-03-22T10:50:42.479546572Z"} +2026/03/22 10:50:47 [transform_engine] {"stage_name":"transform_engine","events_processed":578,"events_dropped":0,"avg_latency_ms":1272.640896276485,"throughput_eps":0,"last_update":"2026-03-22T10:50:42.479558134Z"} +2026/03/22 10:50:47 [log_collector] {"stage_name":"log_collector","events_processed":26871,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5374.2,"last_update":"2026-03-22T10:50:42.368406648Z"} +2026/03/22 10:50:47 [metric_collector] {"stage_name":"metric_collector","events_processed":17354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3470.8,"last_update":"2026-03-22T10:50:42.368664833Z"} +2026/03/22 10:50:47 ───────────────────────────────────────────────── +2026/03/22 10:50:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:50:52 [transform_engine] {"stage_name":"transform_engine","events_processed":578,"events_dropped":0,"avg_latency_ms":1272.640896276485,"throughput_eps":0,"last_update":"2026-03-22T10:50:47.478899312Z"} +2026/03/22 10:50:52 [log_collector] {"stage_name":"log_collector","events_processed":26871,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5374.2,"last_update":"2026-03-22T10:50:47.36795863Z"} +2026/03/22 10:50:52 [metric_collector] {"stage_name":"metric_collector","events_processed":17359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3471.8,"last_update":"2026-03-22T10:50:47.368154615Z"} +2026/03/22 10:50:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:50:47.379768212Z"} +2026/03/22 10:50:52 [detection_layer] {"stage_name":"detection_layer","events_processed":578,"events_dropped":0,"avg_latency_ms":17.28852727893222,"throughput_eps":0,"last_update":"2026-03-22T10:50:47.479979641Z"} +2026/03/22 10:50:52 ───────────────────────────────────────────────── +2026/03/22 10:50:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:50:57 [metric_collector] {"stage_name":"metric_collector","events_processed":17364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3472.8,"last_update":"2026-03-22T10:50:52.368147702Z"} +2026/03/22 10:50:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:50:52.375376469Z"} +2026/03/22 10:50:57 [detection_layer] {"stage_name":"detection_layer","events_processed":578,"events_dropped":0,"avg_latency_ms":17.28852727893222,"throughput_eps":0,"last_update":"2026-03-22T10:50:52.479605293Z"} +2026/03/22 10:50:57 [transform_engine] {"stage_name":"transform_engine","events_processed":578,"events_dropped":0,"avg_latency_ms":1272.640896276485,"throughput_eps":0,"last_update":"2026-03-22T10:50:52.479617627Z"} +2026/03/22 10:50:57 [log_collector] {"stage_name":"log_collector","events_processed":26871,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5374.2,"last_update":"2026-03-22T10:50:52.367951596Z"} +2026/03/22 10:50:57 ───────────────────────────────────────────────── +2026/03/22 10:51:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:51:02 [metric_collector] {"stage_name":"metric_collector","events_processed":17369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3473.8,"last_update":"2026-03-22T10:50:57.368152238Z"} +2026/03/22 10:51:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:50:57.377690678Z"} +2026/03/22 10:51:02 [detection_layer] {"stage_name":"detection_layer","events_processed":578,"events_dropped":0,"avg_latency_ms":17.28852727893222,"throughput_eps":0,"last_update":"2026-03-22T10:50:57.480011249Z"} +2026/03/22 10:51:02 [transform_engine] {"stage_name":"transform_engine","events_processed":579,"events_dropped":0,"avg_latency_ms":1032.833491221188,"throughput_eps":0,"last_update":"2026-03-22T10:50:57.552521255Z"} +2026/03/22 10:51:02 [log_collector] {"stage_name":"log_collector","events_processed":26874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5374.8,"last_update":"2026-03-22T10:51:02.368294377Z"} +2026/03/22 10:51:02 ───────────────────────────────────────────────── +2026/03/22 10:51:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:51:07 [metric_collector] {"stage_name":"metric_collector","events_processed":17374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3474.8,"last_update":"2026-03-22T10:51:02.368796028Z"} +2026/03/22 10:51:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:51:02.376935189Z"} +2026/03/22 10:51:07 [detection_layer] {"stage_name":"detection_layer","events_processed":579,"events_dropped":0,"avg_latency_ms":16.89023422314578,"throughput_eps":0,"last_update":"2026-03-22T10:51:02.479150387Z"} +2026/03/22 10:51:07 [transform_engine] {"stage_name":"transform_engine","events_processed":579,"events_dropped":0,"avg_latency_ms":1032.833491221188,"throughput_eps":0,"last_update":"2026-03-22T10:51:02.479116332Z"} +2026/03/22 10:51:07 [log_collector] {"stage_name":"log_collector","events_processed":26874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5374.8,"last_update":"2026-03-22T10:51:02.368294377Z"} +2026/03/22 10:51:07 ───────────────────────────────────────────────── +2026/03/22 10:51:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:51:12 [log_collector] {"stage_name":"log_collector","events_processed":26882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5376.4,"last_update":"2026-03-22T10:51:07.368700182Z"} +2026/03/22 10:51:12 [metric_collector] {"stage_name":"metric_collector","events_processed":17379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3475.8,"last_update":"2026-03-22T10:51:07.36922067Z"} +2026/03/22 10:51:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:51:07.377388234Z"} +2026/03/22 10:51:12 [detection_layer] {"stage_name":"detection_layer","events_processed":579,"events_dropped":0,"avg_latency_ms":16.89023422314578,"throughput_eps":0,"last_update":"2026-03-22T10:51:07.479741707Z"} +2026/03/22 10:51:12 [transform_engine] {"stage_name":"transform_engine","events_processed":579,"events_dropped":0,"avg_latency_ms":1032.833491221188,"throughput_eps":0,"last_update":"2026-03-22T10:51:07.479776043Z"} +2026/03/22 10:51:12 ───────────────────────────────────────────────── +2026/03/22 10:51:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:51:17 [transform_engine] {"stage_name":"transform_engine","events_processed":579,"events_dropped":0,"avg_latency_ms":1032.833491221188,"throughput_eps":0,"last_update":"2026-03-22T10:51:12.479452781Z"} +2026/03/22 10:51:17 [log_collector] {"stage_name":"log_collector","events_processed":27189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5437.8,"last_update":"2026-03-22T10:51:17.36797544Z"} +2026/03/22 10:51:17 [metric_collector] {"stage_name":"metric_collector","events_processed":17384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3476.8,"last_update":"2026-03-22T10:51:12.368976639Z"} +2026/03/22 10:51:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:51:12.375220801Z"} +2026/03/22 10:51:17 [detection_layer] {"stage_name":"detection_layer","events_processed":579,"events_dropped":0,"avg_latency_ms":16.89023422314578,"throughput_eps":0,"last_update":"2026-03-22T10:51:12.479470666Z"} +2026/03/22 10:51:17 ───────────────────────────────────────────────── +Saved state: 14 clusters, 27190 messages, reason: none +2026/03/22 10:51:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:51:22 [metric_collector] {"stage_name":"metric_collector","events_processed":17389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3477.8,"last_update":"2026-03-22T10:51:17.368825168Z"} +2026/03/22 10:51:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6958,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:51:17.377648369Z"} +2026/03/22 10:51:22 [detection_layer] {"stage_name":"detection_layer","events_processed":579,"events_dropped":0,"avg_latency_ms":16.89023422314578,"throughput_eps":0,"last_update":"2026-03-22T10:51:17.479890328Z"} +2026/03/22 10:51:22 [transform_engine] {"stage_name":"transform_engine","events_processed":579,"events_dropped":0,"avg_latency_ms":1032.833491221188,"throughput_eps":0,"last_update":"2026-03-22T10:51:17.480020688Z"} +2026/03/22 10:51:22 [log_collector] {"stage_name":"log_collector","events_processed":27189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5437.8,"last_update":"2026-03-22T10:51:17.36797544Z"} +2026/03/22 10:51:22 ───────────────────────────────────────────────── +2026/03/22 10:51:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:51:27 [log_collector] {"stage_name":"log_collector","events_processed":27234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5446.8,"last_update":"2026-03-22T10:51:22.368877925Z"} +2026/03/22 10:51:27 [metric_collector] {"stage_name":"metric_collector","events_processed":17394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3478.8,"last_update":"2026-03-22T10:51:22.369471442Z"} +2026/03/22 10:51:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:51:22.376270756Z"} +2026/03/22 10:51:27 [detection_layer] {"stage_name":"detection_layer","events_processed":579,"events_dropped":0,"avg_latency_ms":16.89023422314578,"throughput_eps":0,"last_update":"2026-03-22T10:51:22.479592434Z"} +2026/03/22 10:51:27 [transform_engine] {"stage_name":"transform_engine","events_processed":579,"events_dropped":0,"avg_latency_ms":1032.833491221188,"throughput_eps":0,"last_update":"2026-03-22T10:51:22.479560613Z"} +2026/03/22 10:51:27 ───────────────────────────────────────────────── +2026/03/22 10:51:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:51:32 [log_collector] {"stage_name":"log_collector","events_processed":27234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5446.8,"last_update":"2026-03-22T10:51:27.368554703Z"} +2026/03/22 10:51:32 [metric_collector] {"stage_name":"metric_collector","events_processed":17399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3479.8,"last_update":"2026-03-22T10:51:27.368869665Z"} +2026/03/22 10:51:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6962,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:51:27.376772614Z"} +2026/03/22 10:51:32 [detection_layer] {"stage_name":"detection_layer","events_processed":579,"events_dropped":0,"avg_latency_ms":16.89023422314578,"throughput_eps":0,"last_update":"2026-03-22T10:51:27.47910714Z"} +2026/03/22 10:51:32 [transform_engine] {"stage_name":"transform_engine","events_processed":580,"events_dropped":0,"avg_latency_ms":851.4945219769504,"throughput_eps":0,"last_update":"2026-03-22T10:51:27.605129712Z"} +2026/03/22 10:51:32 ───────────────────────────────────────────────── +2026/03/22 10:51:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:51:37 [log_collector] {"stage_name":"log_collector","events_processed":27234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5446.8,"last_update":"2026-03-22T10:51:32.368640433Z"} +2026/03/22 10:51:37 [metric_collector] {"stage_name":"metric_collector","events_processed":17404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3480.8,"last_update":"2026-03-22T10:51:32.369055879Z"} +2026/03/22 10:51:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:51:32.376734187Z"} +2026/03/22 10:51:37 [detection_layer] {"stage_name":"detection_layer","events_processed":580,"events_dropped":0,"avg_latency_ms":17.329742178516625,"throughput_eps":0,"last_update":"2026-03-22T10:51:32.47906658Z"} +2026/03/22 10:51:37 [transform_engine] {"stage_name":"transform_engine","events_processed":580,"events_dropped":0,"avg_latency_ms":851.4945219769504,"throughput_eps":0,"last_update":"2026-03-22T10:51:32.479022124Z"} +2026/03/22 10:51:37 ───────────────────────────────────────────────── +2026/03/22 10:51:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:51:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:51:37.376087804Z"} +2026/03/22 10:51:42 [detection_layer] {"stage_name":"detection_layer","events_processed":580,"events_dropped":0,"avg_latency_ms":17.329742178516625,"throughput_eps":0,"last_update":"2026-03-22T10:51:37.4793357Z"} +2026/03/22 10:51:42 [transform_engine] {"stage_name":"transform_engine","events_processed":580,"events_dropped":0,"avg_latency_ms":851.4945219769504,"throughput_eps":0,"last_update":"2026-03-22T10:51:37.479311824Z"} +2026/03/22 10:51:42 [log_collector] {"stage_name":"log_collector","events_processed":27237,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5447.4,"last_update":"2026-03-22T10:51:37.368683872Z"} +2026/03/22 10:51:42 [metric_collector] {"stage_name":"metric_collector","events_processed":17409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3481.8,"last_update":"2026-03-22T10:51:37.36889746Z"} +2026/03/22 10:51:42 ───────────────────────────────────────────────── +2026/03/22 10:51:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:51:47 [transform_engine] {"stage_name":"transform_engine","events_processed":580,"events_dropped":0,"avg_latency_ms":851.4945219769504,"throughput_eps":0,"last_update":"2026-03-22T10:51:42.478917594Z"} +2026/03/22 10:51:47 [log_collector] {"stage_name":"log_collector","events_processed":27237,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5447.4,"last_update":"2026-03-22T10:51:42.368379213Z"} +2026/03/22 10:51:47 [metric_collector] {"stage_name":"metric_collector","events_processed":17414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3482.8,"last_update":"2026-03-22T10:51:42.368760523Z"} +2026/03/22 10:51:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:51:42.377813295Z"} +2026/03/22 10:51:47 [detection_layer] {"stage_name":"detection_layer","events_processed":580,"events_dropped":0,"avg_latency_ms":17.329742178516625,"throughput_eps":0,"last_update":"2026-03-22T10:51:42.478960807Z"} +2026/03/22 10:51:47 ───────────────────────────────────────────────── +2026/03/22 10:51:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:51:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6970,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:51:47.377750769Z"} +2026/03/22 10:51:52 [detection_layer] {"stage_name":"detection_layer","events_processed":580,"events_dropped":0,"avg_latency_ms":17.329742178516625,"throughput_eps":0,"last_update":"2026-03-22T10:51:47.479056665Z"} +2026/03/22 10:51:52 [transform_engine] {"stage_name":"transform_engine","events_processed":580,"events_dropped":0,"avg_latency_ms":851.4945219769504,"throughput_eps":0,"last_update":"2026-03-22T10:51:47.478982172Z"} +2026/03/22 10:51:52 [log_collector] {"stage_name":"log_collector","events_processed":27248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5449.6,"last_update":"2026-03-22T10:51:47.368010241Z"} +2026/03/22 10:51:52 [metric_collector] {"stage_name":"metric_collector","events_processed":17419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3483.8,"last_update":"2026-03-22T10:51:47.368815193Z"} +2026/03/22 10:51:52 ───────────────────────────────────────────────── +2026/03/22 10:51:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:51:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:51:52.375825055Z"} +2026/03/22 10:51:57 [detection_layer] {"stage_name":"detection_layer","events_processed":580,"events_dropped":0,"avg_latency_ms":17.329742178516625,"throughput_eps":0,"last_update":"2026-03-22T10:51:52.479042684Z"} +2026/03/22 10:51:57 [transform_engine] {"stage_name":"transform_engine","events_processed":580,"events_dropped":0,"avg_latency_ms":851.4945219769504,"throughput_eps":0,"last_update":"2026-03-22T10:51:52.4790666Z"} +2026/03/22 10:51:57 [log_collector] {"stage_name":"log_collector","events_processed":27262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5452.4,"last_update":"2026-03-22T10:51:52.368211141Z"} +2026/03/22 10:51:57 [metric_collector] {"stage_name":"metric_collector","events_processed":17423,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3484.6,"last_update":"2026-03-22T10:51:52.368275614Z"} +2026/03/22 10:51:57 ───────────────────────────────────────────────── +2026/03/22 10:52:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:52:02 [detection_layer] {"stage_name":"detection_layer","events_processed":580,"events_dropped":0,"avg_latency_ms":17.329742178516625,"throughput_eps":0,"last_update":"2026-03-22T10:51:57.479344748Z"} +2026/03/22 10:52:02 [transform_engine] {"stage_name":"transform_engine","events_processed":580,"events_dropped":0,"avg_latency_ms":851.4945219769504,"throughput_eps":0,"last_update":"2026-03-22T10:51:57.479395395Z"} +2026/03/22 10:52:02 [log_collector] {"stage_name":"log_collector","events_processed":27264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5452.8,"last_update":"2026-03-22T10:51:57.367965026Z"} +2026/03/22 10:52:02 [metric_collector] {"stage_name":"metric_collector","events_processed":17429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3485.8,"last_update":"2026-03-22T10:51:57.368705754Z"} +2026/03/22 10:52:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:51:57.379099734Z"} +2026/03/22 10:52:02 ───────────────────────────────────────────────── +2026/03/22 10:52:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:52:07 [metric_collector] {"stage_name":"metric_collector","events_processed":17434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3486.8,"last_update":"2026-03-22T10:52:02.369496993Z"} +2026/03/22 10:52:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:52:02.380438502Z"} +2026/03/22 10:52:07 [detection_layer] {"stage_name":"detection_layer","events_processed":581,"events_dropped":0,"avg_latency_ms":17.8736309428133,"throughput_eps":0,"last_update":"2026-03-22T10:52:02.479632904Z"} +2026/03/22 10:52:07 [transform_engine] {"stage_name":"transform_engine","events_processed":581,"events_dropped":0,"avg_latency_ms":697.5954161815604,"throughput_eps":0,"last_update":"2026-03-22T10:52:02.479645177Z"} +2026/03/22 10:52:07 [log_collector] {"stage_name":"log_collector","events_processed":27264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5452.8,"last_update":"2026-03-22T10:52:02.368835275Z"} +2026/03/22 10:52:07 ───────────────────────────────────────────────── +2026/03/22 10:52:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:52:12 [log_collector] {"stage_name":"log_collector","events_processed":27264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5452.8,"last_update":"2026-03-22T10:52:07.368879653Z"} +2026/03/22 10:52:12 [metric_collector] {"stage_name":"metric_collector","events_processed":17438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3487.6,"last_update":"2026-03-22T10:52:07.369007027Z"} +2026/03/22 10:52:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:52:07.378490634Z"} +2026/03/22 10:52:12 [detection_layer] {"stage_name":"detection_layer","events_processed":581,"events_dropped":0,"avg_latency_ms":17.8736309428133,"throughput_eps":0,"last_update":"2026-03-22T10:52:07.479634349Z"} +2026/03/22 10:52:12 [transform_engine] {"stage_name":"transform_engine","events_processed":581,"events_dropped":0,"avg_latency_ms":697.5954161815604,"throughput_eps":0,"last_update":"2026-03-22T10:52:07.47964564Z"} +2026/03/22 10:52:12 ───────────────────────────────────────────────── +2026/03/22 10:52:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:52:17 [log_collector] {"stage_name":"log_collector","events_processed":27264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5452.8,"last_update":"2026-03-22T10:52:12.368257595Z"} +2026/03/22 10:52:17 [metric_collector] {"stage_name":"metric_collector","events_processed":17444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3488.8,"last_update":"2026-03-22T10:52:12.368425236Z"} +2026/03/22 10:52:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:52:12.376699927Z"} +2026/03/22 10:52:17 [detection_layer] {"stage_name":"detection_layer","events_processed":581,"events_dropped":0,"avg_latency_ms":17.8736309428133,"throughput_eps":0,"last_update":"2026-03-22T10:52:12.479028382Z"} +2026/03/22 10:52:17 [transform_engine] {"stage_name":"transform_engine","events_processed":581,"events_dropped":0,"avg_latency_ms":697.5954161815604,"throughput_eps":0,"last_update":"2026-03-22T10:52:12.478916127Z"} +2026/03/22 10:52:17 ───────────────────────────────────────────────── +2026/03/22 10:52:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:52:22 [log_collector] {"stage_name":"log_collector","events_processed":27264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5452.8,"last_update":"2026-03-22T10:52:17.367987973Z"} +2026/03/22 10:52:22 [metric_collector] {"stage_name":"metric_collector","events_processed":17448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3489.6,"last_update":"2026-03-22T10:52:17.368079438Z"} +2026/03/22 10:52:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:52:17.377729303Z"} +2026/03/22 10:52:22 [detection_layer] {"stage_name":"detection_layer","events_processed":581,"events_dropped":0,"avg_latency_ms":17.8736309428133,"throughput_eps":0,"last_update":"2026-03-22T10:52:17.478943993Z"} +2026/03/22 10:52:22 [transform_engine] {"stage_name":"transform_engine","events_processed":581,"events_dropped":0,"avg_latency_ms":697.5954161815604,"throughput_eps":0,"last_update":"2026-03-22T10:52:17.478924737Z"} +2026/03/22 10:52:22 ───────────────────────────────────────────────── +2026/03/22 10:52:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:52:27 [log_collector] {"stage_name":"log_collector","events_processed":27264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5452.8,"last_update":"2026-03-22T10:52:27.368184014Z"} +2026/03/22 10:52:27 [metric_collector] {"stage_name":"metric_collector","events_processed":17454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3490.8,"last_update":"2026-03-22T10:52:22.369089376Z"} +2026/03/22 10:52:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:52:22.378515422Z"} +2026/03/22 10:52:27 [detection_layer] {"stage_name":"detection_layer","events_processed":581,"events_dropped":0,"avg_latency_ms":17.8736309428133,"throughput_eps":0,"last_update":"2026-03-22T10:52:22.479763927Z"} +2026/03/22 10:52:27 [transform_engine] {"stage_name":"transform_engine","events_processed":581,"events_dropped":0,"avg_latency_ms":697.5954161815604,"throughput_eps":0,"last_update":"2026-03-22T10:52:22.479778446Z"} +2026/03/22 10:52:27 ───────────────────────────────────────────────── +2026/03/22 10:52:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:52:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:52:27.377156201Z"} +2026/03/22 10:52:32 [detection_layer] {"stage_name":"detection_layer","events_processed":581,"events_dropped":0,"avg_latency_ms":17.8736309428133,"throughput_eps":0,"last_update":"2026-03-22T10:52:27.47937744Z"} +2026/03/22 10:52:32 [transform_engine] {"stage_name":"transform_engine","events_processed":582,"events_dropped":0,"avg_latency_ms":572.9906217452483,"throughput_eps":0,"last_update":"2026-03-22T10:52:27.553965667Z"} +2026/03/22 10:52:32 [log_collector] {"stage_name":"log_collector","events_processed":27264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5452.8,"last_update":"2026-03-22T10:52:27.368184014Z"} +2026/03/22 10:52:32 [metric_collector] {"stage_name":"metric_collector","events_processed":17459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3491.8,"last_update":"2026-03-22T10:52:27.368654314Z"} +2026/03/22 10:52:32 ───────────────────────────────────────────────── +2026/03/22 10:52:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:52:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:52:32.377470253Z"} +2026/03/22 10:52:37 [detection_layer] {"stage_name":"detection_layer","events_processed":582,"events_dropped":0,"avg_latency_ms":18.836146154250642,"throughput_eps":0,"last_update":"2026-03-22T10:52:32.479817003Z"} +2026/03/22 10:52:37 [transform_engine] {"stage_name":"transform_engine","events_processed":582,"events_dropped":0,"avg_latency_ms":572.9906217452483,"throughput_eps":0,"last_update":"2026-03-22T10:52:32.479829718Z"} +2026/03/22 10:52:37 [log_collector] {"stage_name":"log_collector","events_processed":27264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5452.8,"last_update":"2026-03-22T10:52:32.368550497Z"} +2026/03/22 10:52:37 [metric_collector] {"stage_name":"metric_collector","events_processed":17464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3492.8,"last_update":"2026-03-22T10:52:32.368993696Z"} +2026/03/22 10:52:37 ───────────────────────────────────────────────── +2026/03/22 10:52:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:52:42 [log_collector] {"stage_name":"log_collector","events_processed":27264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5452.8,"last_update":"2026-03-22T10:52:37.368757233Z"} +2026/03/22 10:52:42 [metric_collector] {"stage_name":"metric_collector","events_processed":17469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3493.8,"last_update":"2026-03-22T10:52:37.369147391Z"} +2026/03/22 10:52:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6990,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:52:37.37908652Z"} +2026/03/22 10:52:42 [detection_layer] {"stage_name":"detection_layer","events_processed":582,"events_dropped":0,"avg_latency_ms":18.836146154250642,"throughput_eps":0,"last_update":"2026-03-22T10:52:37.479344929Z"} +2026/03/22 10:52:42 [transform_engine] {"stage_name":"transform_engine","events_processed":582,"events_dropped":0,"avg_latency_ms":572.9906217452483,"throughput_eps":0,"last_update":"2026-03-22T10:52:37.47938192Z"} +2026/03/22 10:52:42 ───────────────────────────────────────────────── +Saved state: 14 clusters, 27265 messages, reason: none +2026/03/22 10:52:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:52:47 [log_collector] {"stage_name":"log_collector","events_processed":27264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5452.8,"last_update":"2026-03-22T10:52:42.368560557Z"} +2026/03/22 10:52:47 [metric_collector] {"stage_name":"metric_collector","events_processed":17474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3494.8,"last_update":"2026-03-22T10:52:42.369258003Z"} +2026/03/22 10:52:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6992,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:52:42.378315894Z"} +2026/03/22 10:52:47 [detection_layer] {"stage_name":"detection_layer","events_processed":582,"events_dropped":0,"avg_latency_ms":18.836146154250642,"throughput_eps":0,"last_update":"2026-03-22T10:52:42.479571343Z"} +2026/03/22 10:52:47 [transform_engine] {"stage_name":"transform_engine","events_processed":582,"events_dropped":0,"avg_latency_ms":572.9906217452483,"throughput_eps":0,"last_update":"2026-03-22T10:52:42.479584819Z"} +2026/03/22 10:52:47 ───────────────────────────────────────────────── +2026/03/22 10:52:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:52:52 [log_collector] {"stage_name":"log_collector","events_processed":27267,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5453.4,"last_update":"2026-03-22T10:52:47.368416963Z"} +2026/03/22 10:52:52 [metric_collector] {"stage_name":"metric_collector","events_processed":17479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3495.8,"last_update":"2026-03-22T10:52:47.368789146Z"} +2026/03/22 10:52:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:52:47.376422569Z"} +2026/03/22 10:52:52 [detection_layer] {"stage_name":"detection_layer","events_processed":582,"events_dropped":0,"avg_latency_ms":18.836146154250642,"throughput_eps":0,"last_update":"2026-03-22T10:52:47.479609118Z"} +2026/03/22 10:52:52 [transform_engine] {"stage_name":"transform_engine","events_processed":582,"events_dropped":0,"avg_latency_ms":572.9906217452483,"throughput_eps":0,"last_update":"2026-03-22T10:52:47.479619497Z"} +2026/03/22 10:52:52 ───────────────────────────────────────────────── +2026/03/22 10:52:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:52:57 [detection_layer] {"stage_name":"detection_layer","events_processed":582,"events_dropped":0,"avg_latency_ms":18.836146154250642,"throughput_eps":0,"last_update":"2026-03-22T10:52:52.47895875Z"} +2026/03/22 10:52:57 [transform_engine] {"stage_name":"transform_engine","events_processed":582,"events_dropped":0,"avg_latency_ms":572.9906217452483,"throughput_eps":0,"last_update":"2026-03-22T10:52:52.478971835Z"} +2026/03/22 10:52:57 [log_collector] {"stage_name":"log_collector","events_processed":27278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5455.6,"last_update":"2026-03-22T10:52:52.368451739Z"} +2026/03/22 10:52:57 [metric_collector] {"stage_name":"metric_collector","events_processed":17484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3496.8,"last_update":"2026-03-22T10:52:52.368813763Z"} +2026/03/22 10:52:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6996,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:52:52.376811403Z"} +2026/03/22 10:52:57 ───────────────────────────────────────────────── +2026/03/22 10:53:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:53:02 [transform_engine] {"stage_name":"transform_engine","events_processed":583,"events_dropped":0,"avg_latency_ms":481.7447477961987,"throughput_eps":0,"last_update":"2026-03-22T10:52:57.59608431Z"} +2026/03/22 10:53:02 [log_collector] {"stage_name":"log_collector","events_processed":27278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5455.6,"last_update":"2026-03-22T10:52:57.368638176Z"} +2026/03/22 10:53:02 [metric_collector] {"stage_name":"metric_collector","events_processed":17489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3497.8,"last_update":"2026-03-22T10:52:57.369394896Z"} +2026/03/22 10:53:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:52:57.378066317Z"} +2026/03/22 10:53:02 [detection_layer] {"stage_name":"detection_layer","events_processed":582,"events_dropped":0,"avg_latency_ms":18.836146154250642,"throughput_eps":0,"last_update":"2026-03-22T10:52:57.479306647Z"} +2026/03/22 10:53:02 ───────────────────────────────────────────────── +2026/03/22 10:53:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:53:07 [log_collector] {"stage_name":"log_collector","events_processed":27278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5455.6,"last_update":"2026-03-22T10:53:02.368019892Z"} +2026/03/22 10:53:07 [metric_collector] {"stage_name":"metric_collector","events_processed":17494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3498.8,"last_update":"2026-03-22T10:53:02.368318073Z"} +2026/03/22 10:53:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:53:02.378541426Z"} +2026/03/22 10:53:07 [detection_layer] {"stage_name":"detection_layer","events_processed":583,"events_dropped":0,"avg_latency_ms":19.098305523400516,"throughput_eps":0,"last_update":"2026-03-22T10:53:02.480134733Z"} +2026/03/22 10:53:07 [transform_engine] {"stage_name":"transform_engine","events_processed":583,"events_dropped":0,"avg_latency_ms":481.7447477961987,"throughput_eps":0,"last_update":"2026-03-22T10:53:02.479850999Z"} +2026/03/22 10:53:07 ───────────────────────────────────────────────── +2026/03/22 10:53:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:53:12 [log_collector] {"stage_name":"log_collector","events_processed":27278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5455.6,"last_update":"2026-03-22T10:53:07.368756353Z"} +2026/03/22 10:53:12 [metric_collector] {"stage_name":"metric_collector","events_processed":17499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3499.8,"last_update":"2026-03-22T10:53:07.369117034Z"} +2026/03/22 10:53:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:53:07.378470421Z"} +2026/03/22 10:53:12 [detection_layer] {"stage_name":"detection_layer","events_processed":583,"events_dropped":0,"avg_latency_ms":19.098305523400516,"throughput_eps":0,"last_update":"2026-03-22T10:53:07.479723796Z"} +2026/03/22 10:53:12 [transform_engine] {"stage_name":"transform_engine","events_processed":583,"events_dropped":0,"avg_latency_ms":481.7447477961987,"throughput_eps":0,"last_update":"2026-03-22T10:53:07.479827184Z"} +2026/03/22 10:53:12 ───────────────────────────────────────────────── +2026/03/22 10:53:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:53:17 [detection_layer] {"stage_name":"detection_layer","events_processed":583,"events_dropped":0,"avg_latency_ms":19.098305523400516,"throughput_eps":0,"last_update":"2026-03-22T10:53:12.478972546Z"} +2026/03/22 10:53:17 [transform_engine] {"stage_name":"transform_engine","events_processed":583,"events_dropped":0,"avg_latency_ms":481.7447477961987,"throughput_eps":0,"last_update":"2026-03-22T10:53:12.47886985Z"} +2026/03/22 10:53:17 [log_collector] {"stage_name":"log_collector","events_processed":27278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5455.6,"last_update":"2026-03-22T10:53:12.368243519Z"} +2026/03/22 10:53:17 [metric_collector] {"stage_name":"metric_collector","events_processed":17504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3500.8,"last_update":"2026-03-22T10:53:12.368778565Z"} +2026/03/22 10:53:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:53:12.376689017Z"} +2026/03/22 10:53:17 ───────────────────────────────────────────────── +2026/03/22 10:53:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:53:22 [log_collector] {"stage_name":"log_collector","events_processed":27278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5455.6,"last_update":"2026-03-22T10:53:17.368098473Z"} +2026/03/22 10:53:22 [metric_collector] {"stage_name":"metric_collector","events_processed":17509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3501.8,"last_update":"2026-03-22T10:53:17.368634911Z"} +2026/03/22 10:53:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7006,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:53:17.37505597Z"} +2026/03/22 10:53:22 [detection_layer] {"stage_name":"detection_layer","events_processed":583,"events_dropped":0,"avg_latency_ms":19.098305523400516,"throughput_eps":0,"last_update":"2026-03-22T10:53:17.479284525Z"} +2026/03/22 10:53:22 [transform_engine] {"stage_name":"transform_engine","events_processed":583,"events_dropped":0,"avg_latency_ms":481.7447477961987,"throughput_eps":0,"last_update":"2026-03-22T10:53:17.479302408Z"} +2026/03/22 10:53:22 ───────────────────────────────────────────────── +2026/03/22 10:53:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:53:27 [transform_engine] {"stage_name":"transform_engine","events_processed":583,"events_dropped":0,"avg_latency_ms":481.7447477961987,"throughput_eps":0,"last_update":"2026-03-22T10:53:22.47893886Z"} +2026/03/22 10:53:27 [log_collector] {"stage_name":"log_collector","events_processed":27278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5455.6,"last_update":"2026-03-22T10:53:22.368139129Z"} +2026/03/22 10:53:27 [metric_collector] {"stage_name":"metric_collector","events_processed":17514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3502.8,"last_update":"2026-03-22T10:53:22.368581015Z"} +2026/03/22 10:53:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7008,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:53:22.376781003Z"} +2026/03/22 10:53:27 [detection_layer] {"stage_name":"detection_layer","events_processed":583,"events_dropped":0,"avg_latency_ms":19.098305523400516,"throughput_eps":0,"last_update":"2026-03-22T10:53:22.478948339Z"} +2026/03/22 10:53:27 ───────────────────────────────────────────────── +2026/03/22 10:53:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:53:32 [log_collector] {"stage_name":"log_collector","events_processed":27278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5455.6,"last_update":"2026-03-22T10:53:27.368692136Z"} +2026/03/22 10:53:32 [metric_collector] {"stage_name":"metric_collector","events_processed":17518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3503.6,"last_update":"2026-03-22T10:53:27.368790795Z"} +2026/03/22 10:53:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:53:27.378518279Z"} +2026/03/22 10:53:32 [detection_layer] {"stage_name":"detection_layer","events_processed":583,"events_dropped":0,"avg_latency_ms":19.098305523400516,"throughput_eps":0,"last_update":"2026-03-22T10:53:27.480017846Z"} +2026/03/22 10:53:32 [transform_engine] {"stage_name":"transform_engine","events_processed":584,"events_dropped":0,"avg_latency_ms":402.60614743695896,"throughput_eps":0,"last_update":"2026-03-22T10:53:27.565966044Z"} +2026/03/22 10:53:32 ───────────────────────────────────────────────── +2026/03/22 10:53:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:53:37 [log_collector] {"stage_name":"log_collector","events_processed":27278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5455.6,"last_update":"2026-03-22T10:53:32.368194992Z"} +2026/03/22 10:53:37 [metric_collector] {"stage_name":"metric_collector","events_processed":17523,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3504.6,"last_update":"2026-03-22T10:53:32.368323789Z"} +2026/03/22 10:53:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7012,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:53:32.379887289Z"} +2026/03/22 10:53:37 [detection_layer] {"stage_name":"detection_layer","events_processed":584,"events_dropped":0,"avg_latency_ms":19.756666418720414,"throughput_eps":0,"last_update":"2026-03-22T10:53:32.479326569Z"} +2026/03/22 10:53:37 [transform_engine] {"stage_name":"transform_engine","events_processed":584,"events_dropped":0,"avg_latency_ms":402.60614743695896,"throughput_eps":0,"last_update":"2026-03-22T10:53:32.479212732Z"} +2026/03/22 10:53:37 ───────────────────────────────────────────────── +2026/03/22 10:53:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:53:42 [log_collector] {"stage_name":"log_collector","events_processed":27278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5455.6,"last_update":"2026-03-22T10:53:37.368099607Z"} +2026/03/22 10:53:42 [metric_collector] {"stage_name":"metric_collector","events_processed":17528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3505.6,"last_update":"2026-03-22T10:53:37.367942586Z"} +2026/03/22 10:53:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:53:37.377301834Z"} +2026/03/22 10:53:42 [detection_layer] {"stage_name":"detection_layer","events_processed":584,"events_dropped":0,"avg_latency_ms":19.756666418720414,"throughput_eps":0,"last_update":"2026-03-22T10:53:37.479506531Z"} +2026/03/22 10:53:42 [transform_engine] {"stage_name":"transform_engine","events_processed":584,"events_dropped":0,"avg_latency_ms":402.60614743695896,"throughput_eps":0,"last_update":"2026-03-22T10:53:37.479553101Z"} +2026/03/22 10:53:42 ───────────────────────────────────────────────── +2026/03/22 10:53:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:53:47 [log_collector] {"stage_name":"log_collector","events_processed":27278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5455.6,"last_update":"2026-03-22T10:53:42.368441609Z"} +2026/03/22 10:53:47 [metric_collector] {"stage_name":"metric_collector","events_processed":17533,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3506.6,"last_update":"2026-03-22T10:53:42.368485243Z"} +2026/03/22 10:53:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:53:42.378041028Z"} +2026/03/22 10:53:47 [detection_layer] {"stage_name":"detection_layer","events_processed":584,"events_dropped":0,"avg_latency_ms":19.756666418720414,"throughput_eps":0,"last_update":"2026-03-22T10:53:42.479422598Z"} +2026/03/22 10:53:47 [transform_engine] {"stage_name":"transform_engine","events_processed":584,"events_dropped":0,"avg_latency_ms":402.60614743695896,"throughput_eps":0,"last_update":"2026-03-22T10:53:42.47945498Z"} +2026/03/22 10:53:47 ───────────────────────────────────────────────── +2026/03/22 10:53:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:53:52 [detection_layer] {"stage_name":"detection_layer","events_processed":584,"events_dropped":0,"avg_latency_ms":19.756666418720414,"throughput_eps":0,"last_update":"2026-03-22T10:53:47.479423677Z"} +2026/03/22 10:53:52 [transform_engine] {"stage_name":"transform_engine","events_processed":584,"events_dropped":0,"avg_latency_ms":402.60614743695896,"throughput_eps":0,"last_update":"2026-03-22T10:53:47.479391946Z"} +2026/03/22 10:53:52 [log_collector] {"stage_name":"log_collector","events_processed":27278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5455.6,"last_update":"2026-03-22T10:53:47.367979601Z"} +2026/03/22 10:53:52 [metric_collector] {"stage_name":"metric_collector","events_processed":17538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3507.6,"last_update":"2026-03-22T10:53:47.368059925Z"} +2026/03/22 10:53:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7018,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:53:47.379077469Z"} +2026/03/22 10:53:52 ───────────────────────────────────────────────── +Saved state: 14 clusters, 27279 messages, reason: none +2026/03/22 10:53:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:53:57 [log_collector] {"stage_name":"log_collector","events_processed":27278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5455.6,"last_update":"2026-03-22T10:53:52.367995016Z"} +2026/03/22 10:53:57 [metric_collector] {"stage_name":"metric_collector","events_processed":17543,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3508.6,"last_update":"2026-03-22T10:53:52.368142229Z"} +2026/03/22 10:53:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7020,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:53:52.377415482Z"} +2026/03/22 10:53:57 [detection_layer] {"stage_name":"detection_layer","events_processed":584,"events_dropped":0,"avg_latency_ms":19.756666418720414,"throughput_eps":0,"last_update":"2026-03-22T10:53:52.479752914Z"} +2026/03/22 10:53:57 [transform_engine] {"stage_name":"transform_engine","events_processed":584,"events_dropped":0,"avg_latency_ms":402.60614743695896,"throughput_eps":0,"last_update":"2026-03-22T10:53:52.479696035Z"} +2026/03/22 10:53:57 ───────────────────────────────────────────────── +2026/03/22 10:54:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:54:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7022,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:53:57.375450133Z"} +2026/03/22 10:54:02 [detection_layer] {"stage_name":"detection_layer","events_processed":584,"events_dropped":0,"avg_latency_ms":19.756666418720414,"throughput_eps":0,"last_update":"2026-03-22T10:53:57.479692344Z"} +2026/03/22 10:54:02 [transform_engine] {"stage_name":"transform_engine","events_processed":585,"events_dropped":0,"avg_latency_ms":604.0798053495672,"throughput_eps":0,"last_update":"2026-03-22T10:53:58.889654407Z"} +2026/03/22 10:54:02 [log_collector] {"stage_name":"log_collector","events_processed":27283,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5456.6,"last_update":"2026-03-22T10:53:57.367956358Z"} +2026/03/22 10:54:02 [metric_collector] {"stage_name":"metric_collector","events_processed":17549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3509.8,"last_update":"2026-03-22T10:53:57.368289957Z"} +2026/03/22 10:54:02 ───────────────────────────────────────────────── +2026/03/22 10:54:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:54:07 [log_collector] {"stage_name":"log_collector","events_processed":27283,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5456.6,"last_update":"2026-03-22T10:54:02.368523502Z"} +2026/03/22 10:54:07 [metric_collector] {"stage_name":"metric_collector","events_processed":17559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3511.8,"last_update":"2026-03-22T10:54:07.371140781Z"} +2026/03/22 10:54:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:54:02.375378272Z"} +2026/03/22 10:54:07 [detection_layer] {"stage_name":"detection_layer","events_processed":585,"events_dropped":0,"avg_latency_ms":19.91624993497633,"throughput_eps":0,"last_update":"2026-03-22T10:54:02.479646512Z"} +2026/03/22 10:54:07 [transform_engine] {"stage_name":"transform_engine","events_processed":585,"events_dropped":0,"avg_latency_ms":604.0798053495672,"throughput_eps":0,"last_update":"2026-03-22T10:54:02.479656341Z"} +2026/03/22 10:54:07 ───────────────────────────────────────────────── +2026/03/22 10:54:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:54:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:54:07.379828954Z"} +2026/03/22 10:54:12 [detection_layer] {"stage_name":"detection_layer","events_processed":585,"events_dropped":0,"avg_latency_ms":19.91624993497633,"throughput_eps":0,"last_update":"2026-03-22T10:54:07.479465211Z"} +2026/03/22 10:54:12 [transform_engine] {"stage_name":"transform_engine","events_processed":585,"events_dropped":0,"avg_latency_ms":604.0798053495672,"throughput_eps":0,"last_update":"2026-03-22T10:54:07.479477755Z"} +2026/03/22 10:54:12 [log_collector] {"stage_name":"log_collector","events_processed":27283,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5456.6,"last_update":"2026-03-22T10:54:07.371211055Z"} +2026/03/22 10:54:12 [metric_collector] {"stage_name":"metric_collector","events_processed":17559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3511.8,"last_update":"2026-03-22T10:54:07.371140781Z"} +2026/03/22 10:54:12 ───────────────────────────────────────────────── +2026/03/22 10:54:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:54:17 [log_collector] {"stage_name":"log_collector","events_processed":27283,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5456.6,"last_update":"2026-03-22T10:54:12.368682368Z"} +2026/03/22 10:54:17 [metric_collector] {"stage_name":"metric_collector","events_processed":17564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3512.8,"last_update":"2026-03-22T10:54:12.368675555Z"} +2026/03/22 10:54:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:54:12.375479338Z"} +2026/03/22 10:54:17 [detection_layer] {"stage_name":"detection_layer","events_processed":585,"events_dropped":0,"avg_latency_ms":19.91624993497633,"throughput_eps":0,"last_update":"2026-03-22T10:54:12.479720556Z"} +2026/03/22 10:54:17 [transform_engine] {"stage_name":"transform_engine","events_processed":585,"events_dropped":0,"avg_latency_ms":604.0798053495672,"throughput_eps":0,"last_update":"2026-03-22T10:54:12.47973246Z"} +2026/03/22 10:54:17 ───────────────────────────────────────────────── +2026/03/22 10:54:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:54:22 [detection_layer] {"stage_name":"detection_layer","events_processed":585,"events_dropped":0,"avg_latency_ms":19.91624993497633,"throughput_eps":0,"last_update":"2026-03-22T10:54:17.479008868Z"} +2026/03/22 10:54:22 [transform_engine] {"stage_name":"transform_engine","events_processed":585,"events_dropped":0,"avg_latency_ms":604.0798053495672,"throughput_eps":0,"last_update":"2026-03-22T10:54:17.478987036Z"} +2026/03/22 10:54:22 [log_collector] {"stage_name":"log_collector","events_processed":27283,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5456.6,"last_update":"2026-03-22T10:54:17.367982683Z"} +2026/03/22 10:54:22 [metric_collector] {"stage_name":"metric_collector","events_processed":17569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3513.8,"last_update":"2026-03-22T10:54:17.368529831Z"} +2026/03/22 10:54:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:54:17.382388468Z"} +2026/03/22 10:54:22 ───────────────────────────────────────────────── +2026/03/22 10:54:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:54:27 [log_collector] {"stage_name":"log_collector","events_processed":27283,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5456.6,"last_update":"2026-03-22T10:54:22.368201697Z"} +2026/03/22 10:54:27 [metric_collector] {"stage_name":"metric_collector","events_processed":17574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3514.8,"last_update":"2026-03-22T10:54:22.368600401Z"} +2026/03/22 10:54:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:54:22.374306581Z"} +2026/03/22 10:54:27 [detection_layer] {"stage_name":"detection_layer","events_processed":585,"events_dropped":0,"avg_latency_ms":19.91624993497633,"throughput_eps":0,"last_update":"2026-03-22T10:54:22.479514612Z"} +2026/03/22 10:54:27 [transform_engine] {"stage_name":"transform_engine","events_processed":585,"events_dropped":0,"avg_latency_ms":604.0798053495672,"throughput_eps":0,"last_update":"2026-03-22T10:54:22.479526675Z"} +2026/03/22 10:54:27 ───────────────────────────────────────────────── +2026/03/22 10:54:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:54:32 [log_collector] {"stage_name":"log_collector","events_processed":27283,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5456.6,"last_update":"2026-03-22T10:54:27.36848125Z"} +2026/03/22 10:54:32 [metric_collector] {"stage_name":"metric_collector","events_processed":17579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3515.8,"last_update":"2026-03-22T10:54:27.368575471Z"} +2026/03/22 10:54:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:54:27.377477525Z"} +2026/03/22 10:54:32 [detection_layer] {"stage_name":"detection_layer","events_processed":585,"events_dropped":0,"avg_latency_ms":19.91624993497633,"throughput_eps":0,"last_update":"2026-03-22T10:54:27.4796354Z"} +2026/03/22 10:54:32 [transform_engine] {"stage_name":"transform_engine","events_processed":586,"events_dropped":0,"avg_latency_ms":511.20069507965377,"throughput_eps":0,"last_update":"2026-03-22T10:54:27.619333771Z"} +2026/03/22 10:54:32 ───────────────────────────────────────────────── +2026/03/22 10:54:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:54:37 [metric_collector] {"stage_name":"metric_collector","events_processed":17584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3516.8,"last_update":"2026-03-22T10:54:32.368303042Z"} +2026/03/22 10:54:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7036,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:54:32.376637049Z"} +2026/03/22 10:54:37 [detection_layer] {"stage_name":"detection_layer","events_processed":586,"events_dropped":0,"avg_latency_ms":18.94755374798107,"throughput_eps":0,"last_update":"2026-03-22T10:54:32.479674288Z"} +2026/03/22 10:54:37 [transform_engine] {"stage_name":"transform_engine","events_processed":586,"events_dropped":0,"avg_latency_ms":511.20069507965377,"throughput_eps":0,"last_update":"2026-03-22T10:54:32.479687022Z"} +2026/03/22 10:54:37 [log_collector] {"stage_name":"log_collector","events_processed":27283,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5456.6,"last_update":"2026-03-22T10:54:32.368006243Z"} +2026/03/22 10:54:37 ───────────────────────────────────────────────── +2026/03/22 10:54:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:54:42 [log_collector] {"stage_name":"log_collector","events_processed":27294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5458.8,"last_update":"2026-03-22T10:54:42.368564399Z"} +2026/03/22 10:54:42 [metric_collector] {"stage_name":"metric_collector","events_processed":17589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3517.8,"last_update":"2026-03-22T10:54:37.368508545Z"} +2026/03/22 10:54:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:54:37.375370904Z"} +2026/03/22 10:54:42 [detection_layer] {"stage_name":"detection_layer","events_processed":586,"events_dropped":0,"avg_latency_ms":18.94755374798107,"throughput_eps":0,"last_update":"2026-03-22T10:54:37.479585289Z"} +2026/03/22 10:54:42 [transform_engine] {"stage_name":"transform_engine","events_processed":586,"events_dropped":0,"avg_latency_ms":511.20069507965377,"throughput_eps":0,"last_update":"2026-03-22T10:54:37.479655073Z"} +2026/03/22 10:54:42 ───────────────────────────────────────────────── +2026/03/22 10:54:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:54:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:54:42.376835555Z"} +2026/03/22 10:54:47 [detection_layer] {"stage_name":"detection_layer","events_processed":586,"events_dropped":0,"avg_latency_ms":18.94755374798107,"throughput_eps":0,"last_update":"2026-03-22T10:54:42.479100297Z"} +2026/03/22 10:54:47 [transform_engine] {"stage_name":"transform_engine","events_processed":586,"events_dropped":0,"avg_latency_ms":511.20069507965377,"throughput_eps":0,"last_update":"2026-03-22T10:54:42.479181713Z"} +2026/03/22 10:54:47 [log_collector] {"stage_name":"log_collector","events_processed":27294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5458.8,"last_update":"2026-03-22T10:54:42.368564399Z"} +2026/03/22 10:54:47 [metric_collector] {"stage_name":"metric_collector","events_processed":17594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3518.8,"last_update":"2026-03-22T10:54:42.368898879Z"} +2026/03/22 10:54:47 ───────────────────────────────────────────────── +2026/03/22 10:54:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:54:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:54:47.378138423Z"} +2026/03/22 10:54:52 [detection_layer] {"stage_name":"detection_layer","events_processed":586,"events_dropped":0,"avg_latency_ms":18.94755374798107,"throughput_eps":0,"last_update":"2026-03-22T10:54:47.479116973Z"} +2026/03/22 10:54:52 [transform_engine] {"stage_name":"transform_engine","events_processed":586,"events_dropped":0,"avg_latency_ms":511.20069507965377,"throughput_eps":0,"last_update":"2026-03-22T10:54:47.479133925Z"} +2026/03/22 10:54:52 [log_collector] {"stage_name":"log_collector","events_processed":27432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5486.4,"last_update":"2026-03-22T10:54:47.3681875Z"} +2026/03/22 10:54:52 [metric_collector] {"stage_name":"metric_collector","events_processed":17599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3519.8,"last_update":"2026-03-22T10:54:47.368461034Z"} +2026/03/22 10:54:52 ───────────────────────────────────────────────── +2026/03/22 10:54:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:54:57 [log_collector] {"stage_name":"log_collector","events_processed":27645,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5529,"last_update":"2026-03-22T10:54:52.368815019Z"} +2026/03/22 10:54:57 [metric_collector] {"stage_name":"metric_collector","events_processed":17604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3520.8,"last_update":"2026-03-22T10:54:52.369384348Z"} +2026/03/22 10:54:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:54:52.376172947Z"} +2026/03/22 10:54:57 [detection_layer] {"stage_name":"detection_layer","events_processed":586,"events_dropped":0,"avg_latency_ms":18.94755374798107,"throughput_eps":0,"last_update":"2026-03-22T10:54:52.479579336Z"} +2026/03/22 10:54:57 [transform_engine] {"stage_name":"transform_engine","events_processed":586,"events_dropped":0,"avg_latency_ms":511.20069507965377,"throughput_eps":0,"last_update":"2026-03-22T10:54:52.479489103Z"} +2026/03/22 10:54:57 ───────────────────────────────────────────────── +2026/03/22 10:55:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:55:02 [log_collector] {"stage_name":"log_collector","events_processed":27645,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5529,"last_update":"2026-03-22T10:54:57.368285601Z"} +2026/03/22 10:55:02 [metric_collector] {"stage_name":"metric_collector","events_processed":17609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3521.8,"last_update":"2026-03-22T10:54:57.368951365Z"} +2026/03/22 10:55:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:54:57.377747667Z"} +2026/03/22 10:55:02 [detection_layer] {"stage_name":"detection_layer","events_processed":586,"events_dropped":0,"avg_latency_ms":18.94755374798107,"throughput_eps":0,"last_update":"2026-03-22T10:54:57.478966559Z"} +2026/03/22 10:55:02 [transform_engine] {"stage_name":"transform_engine","events_processed":587,"events_dropped":0,"avg_latency_ms":434.31049466372303,"throughput_eps":0,"last_update":"2026-03-22T10:54:57.605760628Z"} +2026/03/22 10:55:02 ───────────────────────────────────────────────── +2026/03/22 10:55:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:55:07 [log_collector] {"stage_name":"log_collector","events_processed":27645,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5529,"last_update":"2026-03-22T10:55:02.3685461Z"} +2026/03/22 10:55:07 [metric_collector] {"stage_name":"metric_collector","events_processed":17614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3522.8,"last_update":"2026-03-22T10:55:02.368911359Z"} +2026/03/22 10:55:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7048,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:55:02.377314689Z"} +2026/03/22 10:55:07 [detection_layer] {"stage_name":"detection_layer","events_processed":587,"events_dropped":0,"avg_latency_ms":18.819525398384854,"throughput_eps":0,"last_update":"2026-03-22T10:55:02.479785066Z"} +2026/03/22 10:55:07 [transform_engine] {"stage_name":"transform_engine","events_processed":587,"events_dropped":0,"avg_latency_ms":434.31049466372303,"throughput_eps":0,"last_update":"2026-03-22T10:55:02.479670588Z"} +2026/03/22 10:55:07 ───────────────────────────────────────────────── +Saved state: 14 clusters, 27646 messages, reason: none +2026/03/22 10:55:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:55:12 [metric_collector] {"stage_name":"metric_collector","events_processed":17619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3523.8,"last_update":"2026-03-22T10:55:07.368509332Z"} +2026/03/22 10:55:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7050,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:55:07.378489552Z"} +2026/03/22 10:55:12 [detection_layer] {"stage_name":"detection_layer","events_processed":587,"events_dropped":0,"avg_latency_ms":18.819525398384854,"throughput_eps":0,"last_update":"2026-03-22T10:55:07.479936962Z"} +2026/03/22 10:55:12 [transform_engine] {"stage_name":"transform_engine","events_processed":587,"events_dropped":0,"avg_latency_ms":434.31049466372303,"throughput_eps":0,"last_update":"2026-03-22T10:55:07.479826721Z"} +2026/03/22 10:55:12 [log_collector] {"stage_name":"log_collector","events_processed":27645,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5529,"last_update":"2026-03-22T10:55:07.36805855Z"} +2026/03/22 10:55:12 ───────────────────────────────────────────────── +2026/03/22 10:55:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:55:17 [log_collector] {"stage_name":"log_collector","events_processed":27648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5529.6,"last_update":"2026-03-22T10:55:17.368696402Z"} +2026/03/22 10:55:17 [metric_collector] {"stage_name":"metric_collector","events_processed":17624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3524.8,"last_update":"2026-03-22T10:55:12.368133983Z"} +2026/03/22 10:55:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:55:12.377039364Z"} +2026/03/22 10:55:17 [detection_layer] {"stage_name":"detection_layer","events_processed":587,"events_dropped":0,"avg_latency_ms":18.819525398384854,"throughput_eps":0,"last_update":"2026-03-22T10:55:12.479226502Z"} +2026/03/22 10:55:17 [transform_engine] {"stage_name":"transform_engine","events_processed":587,"events_dropped":0,"avg_latency_ms":434.31049466372303,"throughput_eps":0,"last_update":"2026-03-22T10:55:12.479283511Z"} +2026/03/22 10:55:17 ───────────────────────────────────────────────── +2026/03/22 10:55:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:55:22 [transform_engine] {"stage_name":"transform_engine","events_processed":587,"events_dropped":0,"avg_latency_ms":434.31049466372303,"throughput_eps":0,"last_update":"2026-03-22T10:55:17.478910058Z"} +2026/03/22 10:55:22 [log_collector] {"stage_name":"log_collector","events_processed":27648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5529.6,"last_update":"2026-03-22T10:55:17.368696402Z"} +2026/03/22 10:55:22 [metric_collector] {"stage_name":"metric_collector","events_processed":17629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3525.8,"last_update":"2026-03-22T10:55:17.369131565Z"} +2026/03/22 10:55:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:55:17.381152492Z"} +2026/03/22 10:55:22 [detection_layer] {"stage_name":"detection_layer","events_processed":587,"events_dropped":0,"avg_latency_ms":18.819525398384854,"throughput_eps":0,"last_update":"2026-03-22T10:55:17.478944865Z"} +2026/03/22 10:55:22 ───────────────────────────────────────────────── +2026/03/22 10:55:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:55:27 [log_collector] {"stage_name":"log_collector","events_processed":27659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5531.8,"last_update":"2026-03-22T10:55:22.368154671Z"} +2026/03/22 10:55:27 [metric_collector] {"stage_name":"metric_collector","events_processed":17634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3526.8,"last_update":"2026-03-22T10:55:22.368556751Z"} +2026/03/22 10:55:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7056,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:55:22.378027404Z"} +2026/03/22 10:55:27 [detection_layer] {"stage_name":"detection_layer","events_processed":587,"events_dropped":0,"avg_latency_ms":18.819525398384854,"throughput_eps":0,"last_update":"2026-03-22T10:55:22.47932005Z"} +2026/03/22 10:55:27 [transform_engine] {"stage_name":"transform_engine","events_processed":587,"events_dropped":0,"avg_latency_ms":434.31049466372303,"throughput_eps":0,"last_update":"2026-03-22T10:55:22.479394232Z"} +2026/03/22 10:55:27 ───────────────────────────────────────────────── +2026/03/22 10:55:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:55:32 [log_collector] {"stage_name":"log_collector","events_processed":27673,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5534.6,"last_update":"2026-03-22T10:55:27.367959206Z"} +2026/03/22 10:55:32 [metric_collector] {"stage_name":"metric_collector","events_processed":17639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3527.8,"last_update":"2026-03-22T10:55:27.3682849Z"} +2026/03/22 10:55:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:55:27.375048962Z"} +2026/03/22 10:55:32 [detection_layer] {"stage_name":"detection_layer","events_processed":587,"events_dropped":0,"avg_latency_ms":18.819525398384854,"throughput_eps":0,"last_update":"2026-03-22T10:55:27.47947129Z"} +2026/03/22 10:55:32 [transform_engine] {"stage_name":"transform_engine","events_processed":588,"events_dropped":0,"avg_latency_ms":577.1755239309784,"throughput_eps":0,"last_update":"2026-03-22T10:55:28.627901439Z"} +2026/03/22 10:55:32 ───────────────────────────────────────────────── +2026/03/22 10:55:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:55:37 [log_collector] {"stage_name":"log_collector","events_processed":27675,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5535,"last_update":"2026-03-22T10:55:32.368448085Z"} +2026/03/22 10:55:37 [metric_collector] {"stage_name":"metric_collector","events_processed":17644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3528.8,"last_update":"2026-03-22T10:55:32.368985043Z"} +2026/03/22 10:55:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:55:32.377750788Z"} +2026/03/22 10:55:37 [detection_layer] {"stage_name":"detection_layer","events_processed":588,"events_dropped":0,"avg_latency_ms":18.856259518707883,"throughput_eps":0,"last_update":"2026-03-22T10:55:32.480002221Z"} +2026/03/22 10:55:37 [transform_engine] {"stage_name":"transform_engine","events_processed":588,"events_dropped":0,"avg_latency_ms":577.1755239309784,"throughput_eps":0,"last_update":"2026-03-22T10:55:32.478878389Z"} +2026/03/22 10:55:37 ───────────────────────────────────────────────── +2026/03/22 10:55:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:55:42 [log_collector] {"stage_name":"log_collector","events_processed":27675,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5535,"last_update":"2026-03-22T10:55:37.367949436Z"} +2026/03/22 10:55:42 [metric_collector] {"stage_name":"metric_collector","events_processed":17649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3529.8,"last_update":"2026-03-22T10:55:37.368232839Z"} +2026/03/22 10:55:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7062,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:55:37.377826438Z"} +2026/03/22 10:55:42 [detection_layer] {"stage_name":"detection_layer","events_processed":588,"events_dropped":0,"avg_latency_ms":18.856259518707883,"throughput_eps":0,"last_update":"2026-03-22T10:55:37.479271147Z"} +2026/03/22 10:55:42 [transform_engine] {"stage_name":"transform_engine","events_processed":588,"events_dropped":0,"avg_latency_ms":577.1755239309784,"throughput_eps":0,"last_update":"2026-03-22T10:55:37.479232864Z"} +2026/03/22 10:55:42 ───────────────────────────────────────────────── +2026/03/22 10:55:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:55:47 [transform_engine] {"stage_name":"transform_engine","events_processed":588,"events_dropped":0,"avg_latency_ms":577.1755239309784,"throughput_eps":0,"last_update":"2026-03-22T10:55:42.47961253Z"} +2026/03/22 10:55:47 [log_collector] {"stage_name":"log_collector","events_processed":27675,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5535,"last_update":"2026-03-22T10:55:42.36802491Z"} +2026/03/22 10:55:47 [metric_collector] {"stage_name":"metric_collector","events_processed":17654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3530.8,"last_update":"2026-03-22T10:55:42.368436618Z"} +2026/03/22 10:55:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:55:42.378158563Z"} +2026/03/22 10:55:47 [detection_layer] {"stage_name":"detection_layer","events_processed":588,"events_dropped":0,"avg_latency_ms":18.856259518707883,"throughput_eps":0,"last_update":"2026-03-22T10:55:42.479493833Z"} +2026/03/22 10:55:47 ───────────────────────────────────────────────── +2026/03/22 10:55:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:55:52 [detection_layer] {"stage_name":"detection_layer","events_processed":588,"events_dropped":0,"avg_latency_ms":18.856259518707883,"throughput_eps":0,"last_update":"2026-03-22T10:55:47.47943366Z"} +2026/03/22 10:55:52 [transform_engine] {"stage_name":"transform_engine","events_processed":588,"events_dropped":0,"avg_latency_ms":577.1755239309784,"throughput_eps":0,"last_update":"2026-03-22T10:55:47.479320403Z"} +2026/03/22 10:55:52 [log_collector] {"stage_name":"log_collector","events_processed":27675,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5535,"last_update":"2026-03-22T10:55:52.368172535Z"} +2026/03/22 10:55:52 [metric_collector] {"stage_name":"metric_collector","events_processed":17659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3531.8,"last_update":"2026-03-22T10:55:47.368676849Z"} +2026/03/22 10:55:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:55:47.377938552Z"} +2026/03/22 10:55:52 ───────────────────────────────────────────────── +2026/03/22 10:55:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:55:57 [log_collector] {"stage_name":"log_collector","events_processed":27675,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5535,"last_update":"2026-03-22T10:55:52.368172535Z"} +2026/03/22 10:55:57 [metric_collector] {"stage_name":"metric_collector","events_processed":17664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3532.8,"last_update":"2026-03-22T10:55:52.368832509Z"} +2026/03/22 10:55:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:55:52.378782371Z"} +2026/03/22 10:55:57 [detection_layer] {"stage_name":"detection_layer","events_processed":588,"events_dropped":0,"avg_latency_ms":18.856259518707883,"throughput_eps":0,"last_update":"2026-03-22T10:55:52.478974202Z"} +2026/03/22 10:55:57 [transform_engine] {"stage_name":"transform_engine","events_processed":588,"events_dropped":0,"avg_latency_ms":577.1755239309784,"throughput_eps":0,"last_update":"2026-03-22T10:55:52.478930869Z"} +2026/03/22 10:55:57 ───────────────────────────────────────────────── +2026/03/22 10:56:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:56:02 [detection_layer] {"stage_name":"detection_layer","events_processed":588,"events_dropped":0,"avg_latency_ms":18.856259518707883,"throughput_eps":0,"last_update":"2026-03-22T10:55:57.479377389Z"} +2026/03/22 10:56:02 [transform_engine] {"stage_name":"transform_engine","events_processed":589,"events_dropped":0,"avg_latency_ms":484.59101234478277,"throughput_eps":0,"last_update":"2026-03-22T10:55:57.593650776Z"} +2026/03/22 10:56:02 [log_collector] {"stage_name":"log_collector","events_processed":27675,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5535,"last_update":"2026-03-22T10:55:57.36797926Z"} +2026/03/22 10:56:02 [metric_collector] {"stage_name":"metric_collector","events_processed":17669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3533.8,"last_update":"2026-03-22T10:55:57.368927254Z"} +2026/03/22 10:56:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:55:57.37800191Z"} +2026/03/22 10:56:02 ───────────────────────────────────────────────── +2026/03/22 10:56:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:56:07 [log_collector] {"stage_name":"log_collector","events_processed":27675,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5535,"last_update":"2026-03-22T10:56:02.368402615Z"} +2026/03/22 10:56:07 [metric_collector] {"stage_name":"metric_collector","events_processed":17674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3534.8,"last_update":"2026-03-22T10:56:02.369067989Z"} +2026/03/22 10:56:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7072,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:56:02.378126415Z"} +2026/03/22 10:56:07 [detection_layer] {"stage_name":"detection_layer","events_processed":589,"events_dropped":0,"avg_latency_ms":19.636576814966308,"throughput_eps":0,"last_update":"2026-03-22T10:56:02.479485163Z"} +2026/03/22 10:56:07 [transform_engine] {"stage_name":"transform_engine","events_processed":589,"events_dropped":0,"avg_latency_ms":484.59101234478277,"throughput_eps":0,"last_update":"2026-03-22T10:56:02.479470925Z"} +2026/03/22 10:56:07 ───────────────────────────────────────────────── +2026/03/22 10:56:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:56:12 [detection_layer] {"stage_name":"detection_layer","events_processed":589,"events_dropped":0,"avg_latency_ms":19.636576814966308,"throughput_eps":0,"last_update":"2026-03-22T10:56:07.479378075Z"} +2026/03/22 10:56:12 [transform_engine] {"stage_name":"transform_engine","events_processed":589,"events_dropped":0,"avg_latency_ms":484.59101234478277,"throughput_eps":0,"last_update":"2026-03-22T10:56:07.47948545Z"} +2026/03/22 10:56:12 [log_collector] {"stage_name":"log_collector","events_processed":27675,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5535,"last_update":"2026-03-22T10:56:07.368750819Z"} +2026/03/22 10:56:12 [metric_collector] {"stage_name":"metric_collector","events_processed":17679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3535.8,"last_update":"2026-03-22T10:56:07.369272357Z"} +2026/03/22 10:56:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:56:07.379158357Z"} +2026/03/22 10:56:12 ───────────────────────────────────────────────── +2026/03/22 10:56:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:56:17 [log_collector] {"stage_name":"log_collector","events_processed":27675,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5535,"last_update":"2026-03-22T10:56:12.369176022Z"} +2026/03/22 10:56:17 [metric_collector] {"stage_name":"metric_collector","events_processed":17684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3536.8,"last_update":"2026-03-22T10:56:12.369565568Z"} +2026/03/22 10:56:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7076,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:56:12.377582428Z"} +2026/03/22 10:56:17 [detection_layer] {"stage_name":"detection_layer","events_processed":589,"events_dropped":0,"avg_latency_ms":19.636576814966308,"throughput_eps":0,"last_update":"2026-03-22T10:56:12.479866939Z"} +2026/03/22 10:56:17 [transform_engine] {"stage_name":"transform_engine","events_processed":589,"events_dropped":0,"avg_latency_ms":484.59101234478277,"throughput_eps":0,"last_update":"2026-03-22T10:56:12.479812776Z"} +2026/03/22 10:56:17 ───────────────────────────────────────────────── +2026/03/22 10:56:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:56:22 [metric_collector] {"stage_name":"metric_collector","events_processed":17689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3537.8,"last_update":"2026-03-22T10:56:17.368739533Z"} +2026/03/22 10:56:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:56:17.379004508Z"} +2026/03/22 10:56:22 [detection_layer] {"stage_name":"detection_layer","events_processed":589,"events_dropped":0,"avg_latency_ms":19.636576814966308,"throughput_eps":0,"last_update":"2026-03-22T10:56:17.479076844Z"} +2026/03/22 10:56:22 [transform_engine] {"stage_name":"transform_engine","events_processed":589,"events_dropped":0,"avg_latency_ms":484.59101234478277,"throughput_eps":0,"last_update":"2026-03-22T10:56:17.479226851Z"} +2026/03/22 10:56:22 [log_collector] {"stage_name":"log_collector","events_processed":27675,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5535,"last_update":"2026-03-22T10:56:17.3684614Z"} +2026/03/22 10:56:22 ───────────────────────────────────────────────── +2026/03/22 10:56:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:56:27 [transform_engine] {"stage_name":"transform_engine","events_processed":589,"events_dropped":0,"avg_latency_ms":484.59101234478277,"throughput_eps":0,"last_update":"2026-03-22T10:56:22.479410533Z"} +2026/03/22 10:56:27 [log_collector] {"stage_name":"log_collector","events_processed":27675,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5535,"last_update":"2026-03-22T10:56:22.368510574Z"} +2026/03/22 10:56:27 [metric_collector] {"stage_name":"metric_collector","events_processed":17694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3538.8,"last_update":"2026-03-22T10:56:22.368730124Z"} +2026/03/22 10:56:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:56:22.377116592Z"} +2026/03/22 10:56:27 [detection_layer] {"stage_name":"detection_layer","events_processed":589,"events_dropped":0,"avg_latency_ms":19.636576814966308,"throughput_eps":0,"last_update":"2026-03-22T10:56:22.479299029Z"} +2026/03/22 10:56:27 ───────────────────────────────────────────────── +Saved state: 14 clusters, 27676 messages, reason: none +2026/03/22 10:56:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:56:32 [log_collector] {"stage_name":"log_collector","events_processed":27675,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5535,"last_update":"2026-03-22T10:56:27.368274039Z"} +2026/03/22 10:56:32 [metric_collector] {"stage_name":"metric_collector","events_processed":17699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3539.8,"last_update":"2026-03-22T10:56:27.368843018Z"} +2026/03/22 10:56:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7082,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:56:27.378436638Z"} +2026/03/22 10:56:32 [detection_layer] {"stage_name":"detection_layer","events_processed":589,"events_dropped":0,"avg_latency_ms":19.636576814966308,"throughput_eps":0,"last_update":"2026-03-22T10:56:27.479792824Z"} +2026/03/22 10:56:32 [transform_engine] {"stage_name":"transform_engine","events_processed":590,"events_dropped":0,"avg_latency_ms":403.82678127582625,"throughput_eps":0,"last_update":"2026-03-22T10:56:27.560627375Z"} +2026/03/22 10:56:32 ───────────────────────────────────────────────── +2026/03/22 10:56:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:56:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:56:32.377593961Z"} +2026/03/22 10:56:37 [detection_layer] {"stage_name":"detection_layer","events_processed":590,"events_dropped":0,"avg_latency_ms":20.041601051973046,"throughput_eps":0,"last_update":"2026-03-22T10:56:32.479830384Z"} +2026/03/22 10:56:37 [transform_engine] {"stage_name":"transform_engine","events_processed":590,"events_dropped":0,"avg_latency_ms":403.82678127582625,"throughput_eps":0,"last_update":"2026-03-22T10:56:32.479792361Z"} +2026/03/22 10:56:37 [log_collector] {"stage_name":"log_collector","events_processed":27678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5535.6,"last_update":"2026-03-22T10:56:32.368370731Z"} +2026/03/22 10:56:37 [metric_collector] {"stage_name":"metric_collector","events_processed":17704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3540.8,"last_update":"2026-03-22T10:56:32.368768112Z"} +2026/03/22 10:56:37 ───────────────────────────────────────────────── +2026/03/22 10:56:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:56:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:56:37.375907228Z"} +2026/03/22 10:56:42 [detection_layer] {"stage_name":"detection_layer","events_processed":590,"events_dropped":0,"avg_latency_ms":20.041601051973046,"throughput_eps":0,"last_update":"2026-03-22T10:56:37.479172591Z"} +2026/03/22 10:56:42 [transform_engine] {"stage_name":"transform_engine","events_processed":590,"events_dropped":0,"avg_latency_ms":403.82678127582625,"throughput_eps":0,"last_update":"2026-03-22T10:56:37.47927147Z"} +2026/03/22 10:56:42 [log_collector] {"stage_name":"log_collector","events_processed":27689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5537.8,"last_update":"2026-03-22T10:56:37.368849825Z"} +2026/03/22 10:56:42 [metric_collector] {"stage_name":"metric_collector","events_processed":17709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3541.8,"last_update":"2026-03-22T10:56:37.36926993Z"} +2026/03/22 10:56:42 ───────────────────────────────────────────────── +2026/03/22 10:56:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:56:47 [detection_layer] {"stage_name":"detection_layer","events_processed":590,"events_dropped":0,"avg_latency_ms":20.041601051973046,"throughput_eps":0,"last_update":"2026-03-22T10:56:42.47912241Z"} +2026/03/22 10:56:47 [transform_engine] {"stage_name":"transform_engine","events_processed":590,"events_dropped":0,"avg_latency_ms":403.82678127582625,"throughput_eps":0,"last_update":"2026-03-22T10:56:42.479178447Z"} +2026/03/22 10:56:47 [log_collector] {"stage_name":"log_collector","events_processed":27689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5537.8,"last_update":"2026-03-22T10:56:47.368569467Z"} +2026/03/22 10:56:47 [metric_collector] {"stage_name":"metric_collector","events_processed":17714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3542.8,"last_update":"2026-03-22T10:56:42.368282143Z"} +2026/03/22 10:56:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:56:42.375852719Z"} +2026/03/22 10:56:47 ───────────────────────────────────────────────── +2026/03/22 10:56:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:56:52 [log_collector] {"stage_name":"log_collector","events_processed":27689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5537.8,"last_update":"2026-03-22T10:56:47.368569467Z"} +2026/03/22 10:56:52 [metric_collector] {"stage_name":"metric_collector","events_processed":17719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3543.8,"last_update":"2026-03-22T10:56:47.368851246Z"} +2026/03/22 10:56:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:56:47.376726205Z"} +2026/03/22 10:56:52 [detection_layer] {"stage_name":"detection_layer","events_processed":590,"events_dropped":0,"avg_latency_ms":20.041601051973046,"throughput_eps":0,"last_update":"2026-03-22T10:56:47.479999915Z"} +2026/03/22 10:56:52 [transform_engine] {"stage_name":"transform_engine","events_processed":590,"events_dropped":0,"avg_latency_ms":403.82678127582625,"throughput_eps":0,"last_update":"2026-03-22T10:56:47.478865644Z"} +2026/03/22 10:56:52 ───────────────────────────────────────────────── +2026/03/22 10:56:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:56:57 [metric_collector] {"stage_name":"metric_collector","events_processed":17724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3544.8,"last_update":"2026-03-22T10:56:52.368559868Z"} +2026/03/22 10:56:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:56:52.377406508Z"} +2026/03/22 10:56:57 [detection_layer] {"stage_name":"detection_layer","events_processed":590,"events_dropped":0,"avg_latency_ms":20.041601051973046,"throughput_eps":0,"last_update":"2026-03-22T10:56:52.47975085Z"} +2026/03/22 10:56:57 [transform_engine] {"stage_name":"transform_engine","events_processed":590,"events_dropped":0,"avg_latency_ms":403.82678127582625,"throughput_eps":0,"last_update":"2026-03-22T10:56:52.479734658Z"} +2026/03/22 10:56:57 [log_collector] {"stage_name":"log_collector","events_processed":27689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5537.8,"last_update":"2026-03-22T10:56:52.368052517Z"} +2026/03/22 10:56:57 ───────────────────────────────────────────────── +2026/03/22 10:57:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:57:02 [log_collector] {"stage_name":"log_collector","events_processed":27689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5537.8,"last_update":"2026-03-22T10:56:57.368006369Z"} +2026/03/22 10:57:02 [metric_collector] {"stage_name":"metric_collector","events_processed":17729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3545.8,"last_update":"2026-03-22T10:56:57.368414511Z"} +2026/03/22 10:57:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:56:57.378449616Z"} +2026/03/22 10:57:02 [detection_layer] {"stage_name":"detection_layer","events_processed":590,"events_dropped":0,"avg_latency_ms":20.041601051973046,"throughput_eps":0,"last_update":"2026-03-22T10:56:57.47977725Z"} +2026/03/22 10:57:02 [transform_engine] {"stage_name":"transform_engine","events_processed":591,"events_dropped":0,"avg_latency_ms":347.22066782066105,"throughput_eps":0,"last_update":"2026-03-22T10:56:57.600599895Z"} +2026/03/22 10:57:02 ───────────────────────────────────────────────── +2026/03/22 10:57:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:57:07 [log_collector] {"stage_name":"log_collector","events_processed":27689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5537.8,"last_update":"2026-03-22T10:57:02.36883738Z"} +2026/03/22 10:57:07 [metric_collector] {"stage_name":"metric_collector","events_processed":17734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3546.8,"last_update":"2026-03-22T10:57:02.369161852Z"} +2026/03/22 10:57:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:57:02.379803488Z"} +2026/03/22 10:57:07 [detection_layer] {"stage_name":"detection_layer","events_processed":591,"events_dropped":0,"avg_latency_ms":20.11412684157844,"throughput_eps":0,"last_update":"2026-03-22T10:57:02.478969093Z"} +2026/03/22 10:57:07 [transform_engine] {"stage_name":"transform_engine","events_processed":591,"events_dropped":0,"avg_latency_ms":347.22066782066105,"throughput_eps":0,"last_update":"2026-03-22T10:57:02.478929568Z"} +2026/03/22 10:57:07 ───────────────────────────────────────────────── +2026/03/22 10:57:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:57:12 [metric_collector] {"stage_name":"metric_collector","events_processed":17738,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3547.6,"last_update":"2026-03-22T10:57:07.368685134Z"} +2026/03/22 10:57:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:57:07.378589158Z"} +2026/03/22 10:57:12 [detection_layer] {"stage_name":"detection_layer","events_processed":591,"events_dropped":0,"avg_latency_ms":20.11412684157844,"throughput_eps":0,"last_update":"2026-03-22T10:57:07.480067543Z"} +2026/03/22 10:57:12 [transform_engine] {"stage_name":"transform_engine","events_processed":591,"events_dropped":0,"avg_latency_ms":347.22066782066105,"throughput_eps":0,"last_update":"2026-03-22T10:57:07.478817659Z"} +2026/03/22 10:57:12 [log_collector] {"stage_name":"log_collector","events_processed":27689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5537.8,"last_update":"2026-03-22T10:57:07.368807448Z"} +2026/03/22 10:57:12 ───────────────────────────────────────────────── +2026/03/22 10:57:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:57:17 [log_collector] {"stage_name":"log_collector","events_processed":27689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5537.8,"last_update":"2026-03-22T10:57:12.367972312Z"} +2026/03/22 10:57:17 [metric_collector] {"stage_name":"metric_collector","events_processed":17743,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3548.6,"last_update":"2026-03-22T10:57:12.367923068Z"} +2026/03/22 10:57:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:57:12.376635691Z"} +2026/03/22 10:57:17 [detection_layer] {"stage_name":"detection_layer","events_processed":591,"events_dropped":0,"avg_latency_ms":20.11412684157844,"throughput_eps":0,"last_update":"2026-03-22T10:57:12.479911558Z"} +2026/03/22 10:57:17 [transform_engine] {"stage_name":"transform_engine","events_processed":591,"events_dropped":0,"avg_latency_ms":347.22066782066105,"throughput_eps":0,"last_update":"2026-03-22T10:57:12.479873064Z"} +2026/03/22 10:57:17 ───────────────────────────────────────────────── +2026/03/22 10:57:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:57:22 [log_collector] {"stage_name":"log_collector","events_processed":27689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5537.8,"last_update":"2026-03-22T10:57:17.368165954Z"} +2026/03/22 10:57:22 [metric_collector] {"stage_name":"metric_collector","events_processed":17748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3549.6,"last_update":"2026-03-22T10:57:17.36791328Z"} +2026/03/22 10:57:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:57:17.375986219Z"} +2026/03/22 10:57:22 [detection_layer] {"stage_name":"detection_layer","events_processed":591,"events_dropped":0,"avg_latency_ms":20.11412684157844,"throughput_eps":0,"last_update":"2026-03-22T10:57:17.479216348Z"} +2026/03/22 10:57:22 [transform_engine] {"stage_name":"transform_engine","events_processed":591,"events_dropped":0,"avg_latency_ms":347.22066782066105,"throughput_eps":0,"last_update":"2026-03-22T10:57:17.479279339Z"} +2026/03/22 10:57:22 ───────────────────────────────────────────────── +2026/03/22 10:57:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:57:27 [log_collector] {"stage_name":"log_collector","events_processed":27689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5537.8,"last_update":"2026-03-22T10:57:22.368695165Z"} +2026/03/22 10:57:27 [metric_collector] {"stage_name":"metric_collector","events_processed":17754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3550.8,"last_update":"2026-03-22T10:57:22.369091154Z"} +2026/03/22 10:57:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:57:22.378425047Z"} +2026/03/22 10:57:27 [detection_layer] {"stage_name":"detection_layer","events_processed":591,"events_dropped":0,"avg_latency_ms":20.11412684157844,"throughput_eps":0,"last_update":"2026-03-22T10:57:22.479665507Z"} +2026/03/22 10:57:27 [transform_engine] {"stage_name":"transform_engine","events_processed":591,"events_dropped":0,"avg_latency_ms":347.22066782066105,"throughput_eps":0,"last_update":"2026-03-22T10:57:22.479618015Z"} +2026/03/22 10:57:27 ───────────────────────────────────────────────── +2026/03/22 10:57:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:57:32 [log_collector] {"stage_name":"log_collector","events_processed":27689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5537.8,"last_update":"2026-03-22T10:57:27.368876054Z"} +2026/03/22 10:57:32 [metric_collector] {"stage_name":"metric_collector","events_processed":17759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3551.8,"last_update":"2026-03-22T10:57:27.369068673Z"} +2026/03/22 10:57:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:57:27.377939941Z"} +2026/03/22 10:57:32 [detection_layer] {"stage_name":"detection_layer","events_processed":591,"events_dropped":0,"avg_latency_ms":20.11412684157844,"throughput_eps":0,"last_update":"2026-03-22T10:57:27.479212463Z"} +2026/03/22 10:57:32 [transform_engine] {"stage_name":"transform_engine","events_processed":592,"events_dropped":0,"avg_latency_ms":288.8216760565289,"throughput_eps":0,"last_update":"2026-03-22T10:57:27.534404878Z"} +2026/03/22 10:57:32 ───────────────────────────────────────────────── +2026/03/22 10:57:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:57:37 [detection_layer] {"stage_name":"detection_layer","events_processed":592,"events_dropped":0,"avg_latency_ms":20.508133273262754,"throughput_eps":0,"last_update":"2026-03-22T10:57:32.479599904Z"} +2026/03/22 10:57:37 [transform_engine] {"stage_name":"transform_engine","events_processed":592,"events_dropped":0,"avg_latency_ms":288.8216760565289,"throughput_eps":0,"last_update":"2026-03-22T10:57:32.479709073Z"} +2026/03/22 10:57:37 [log_collector] {"stage_name":"log_collector","events_processed":27689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5537.8,"last_update":"2026-03-22T10:57:32.368278289Z"} +2026/03/22 10:57:37 [metric_collector] {"stage_name":"metric_collector","events_processed":17764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3552.8,"last_update":"2026-03-22T10:57:32.36858689Z"} +2026/03/22 10:57:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:57:32.378390493Z"} +2026/03/22 10:57:37 ───────────────────────────────────────────────── +Saved state: 14 clusters, 27690 messages, reason: none +2026/03/22 10:57:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:57:42 [metric_collector] {"stage_name":"metric_collector","events_processed":17769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3553.8,"last_update":"2026-03-22T10:57:37.368854477Z"} +2026/03/22 10:57:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:57:37.377489473Z"} +2026/03/22 10:57:42 [detection_layer] {"stage_name":"detection_layer","events_processed":592,"events_dropped":0,"avg_latency_ms":20.508133273262754,"throughput_eps":0,"last_update":"2026-03-22T10:57:37.479749478Z"} +2026/03/22 10:57:42 [transform_engine] {"stage_name":"transform_engine","events_processed":592,"events_dropped":0,"avg_latency_ms":288.8216760565289,"throughput_eps":0,"last_update":"2026-03-22T10:57:37.479784314Z"} +2026/03/22 10:57:42 [log_collector] {"stage_name":"log_collector","events_processed":27689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5537.8,"last_update":"2026-03-22T10:57:37.368116545Z"} +2026/03/22 10:57:42 ───────────────────────────────────────────────── +2026/03/22 10:57:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:57:47 [detection_layer] {"stage_name":"detection_layer","events_processed":592,"events_dropped":0,"avg_latency_ms":20.508133273262754,"throughput_eps":0,"last_update":"2026-03-22T10:57:42.479575226Z"} +2026/03/22 10:57:47 [transform_engine] {"stage_name":"transform_engine","events_processed":592,"events_dropped":0,"avg_latency_ms":288.8216760565289,"throughput_eps":0,"last_update":"2026-03-22T10:57:42.479588581Z"} +2026/03/22 10:57:47 [log_collector] {"stage_name":"log_collector","events_processed":27694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5538.8,"last_update":"2026-03-22T10:57:42.36847362Z"} +2026/03/22 10:57:47 [metric_collector] {"stage_name":"metric_collector","events_processed":17774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3554.8,"last_update":"2026-03-22T10:57:42.368982134Z"} +2026/03/22 10:57:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:57:42.375391517Z"} +2026/03/22 10:57:47 ───────────────────────────────────────────────── +2026/03/22 10:57:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:57:52 [log_collector] {"stage_name":"log_collector","events_processed":27694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5538.8,"last_update":"2026-03-22T10:57:47.368829348Z"} +2026/03/22 10:57:52 [metric_collector] {"stage_name":"metric_collector","events_processed":17779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3555.8,"last_update":"2026-03-22T10:57:47.369189968Z"} +2026/03/22 10:57:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:57:47.378924729Z"} +2026/03/22 10:57:52 [detection_layer] {"stage_name":"detection_layer","events_processed":592,"events_dropped":0,"avg_latency_ms":20.508133273262754,"throughput_eps":0,"last_update":"2026-03-22T10:57:47.479109822Z"} +2026/03/22 10:57:52 [transform_engine] {"stage_name":"transform_engine","events_processed":592,"events_dropped":0,"avg_latency_ms":288.8216760565289,"throughput_eps":0,"last_update":"2026-03-22T10:57:47.479122616Z"} +2026/03/22 10:57:52 ───────────────────────────────────────────────── +2026/03/22 10:57:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:57:57 [detection_layer] {"stage_name":"detection_layer","events_processed":592,"events_dropped":0,"avg_latency_ms":20.508133273262754,"throughput_eps":0,"last_update":"2026-03-22T10:57:52.479217731Z"} +2026/03/22 10:57:57 [transform_engine] {"stage_name":"transform_engine","events_processed":592,"events_dropped":0,"avg_latency_ms":288.8216760565289,"throughput_eps":0,"last_update":"2026-03-22T10:57:52.479235145Z"} +2026/03/22 10:57:57 [log_collector] {"stage_name":"log_collector","events_processed":27694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5538.8,"last_update":"2026-03-22T10:57:52.368471224Z"} +2026/03/22 10:57:57 [metric_collector] {"stage_name":"metric_collector","events_processed":17784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3556.8,"last_update":"2026-03-22T10:57:52.368764115Z"} +2026/03/22 10:57:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:57:52.375016728Z"} +2026/03/22 10:57:57 ───────────────────────────────────────────────── +2026/03/22 10:58:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:58:02 [log_collector] {"stage_name":"log_collector","events_processed":27694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5538.8,"last_update":"2026-03-22T10:57:57.367988767Z"} +2026/03/22 10:58:02 [metric_collector] {"stage_name":"metric_collector","events_processed":17789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3557.8,"last_update":"2026-03-22T10:57:57.368269344Z"} +2026/03/22 10:58:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:57:57.3749098Z"} +2026/03/22 10:58:02 [detection_layer] {"stage_name":"detection_layer","events_processed":592,"events_dropped":0,"avg_latency_ms":20.508133273262754,"throughput_eps":0,"last_update":"2026-03-22T10:57:57.479116604Z"} +2026/03/22 10:58:02 [transform_engine] {"stage_name":"transform_engine","events_processed":593,"events_dropped":0,"avg_latency_ms":522.907435245223,"throughput_eps":0,"last_update":"2026-03-22T10:57:58.938382836Z"} +2026/03/22 10:58:02 ───────────────────────────────────────────────── +2026/03/22 10:58:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:58:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:58:02.375823711Z"} +2026/03/22 10:58:07 [detection_layer] {"stage_name":"detection_layer","events_processed":593,"events_dropped":0,"avg_latency_ms":19.259652218610206,"throughput_eps":0,"last_update":"2026-03-22T10:58:02.479324775Z"} +2026/03/22 10:58:07 [transform_engine] {"stage_name":"transform_engine","events_processed":593,"events_dropped":0,"avg_latency_ms":522.907435245223,"throughput_eps":0,"last_update":"2026-03-22T10:58:02.478915121Z"} +2026/03/22 10:58:07 [log_collector] {"stage_name":"log_collector","events_processed":27694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5538.8,"last_update":"2026-03-22T10:58:02.367993357Z"} +2026/03/22 10:58:07 [metric_collector] {"stage_name":"metric_collector","events_processed":17794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3558.8,"last_update":"2026-03-22T10:58:02.368280247Z"} +2026/03/22 10:58:07 ───────────────────────────────────────────────── +2026/03/22 10:58:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:58:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7122,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:58:07.376170833Z"} +2026/03/22 10:58:12 [detection_layer] {"stage_name":"detection_layer","events_processed":593,"events_dropped":0,"avg_latency_ms":19.259652218610206,"throughput_eps":0,"last_update":"2026-03-22T10:58:07.479366832Z"} +2026/03/22 10:58:12 [transform_engine] {"stage_name":"transform_engine","events_processed":593,"events_dropped":0,"avg_latency_ms":522.907435245223,"throughput_eps":0,"last_update":"2026-03-22T10:58:07.479377412Z"} +2026/03/22 10:58:12 [log_collector] {"stage_name":"log_collector","events_processed":27694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5538.8,"last_update":"2026-03-22T10:58:07.367980709Z"} +2026/03/22 10:58:12 [metric_collector] {"stage_name":"metric_collector","events_processed":17799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3559.8,"last_update":"2026-03-22T10:58:07.368275354Z"} +2026/03/22 10:58:12 ───────────────────────────────────────────────── +2026/03/22 10:58:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:58:17 [log_collector] {"stage_name":"log_collector","events_processed":27694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5538.8,"last_update":"2026-03-22T10:58:12.368488924Z"} +2026/03/22 10:58:17 [metric_collector] {"stage_name":"metric_collector","events_processed":17804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3560.8,"last_update":"2026-03-22T10:58:12.368701571Z"} +2026/03/22 10:58:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:58:12.37579842Z"} +2026/03/22 10:58:17 [detection_layer] {"stage_name":"detection_layer","events_processed":593,"events_dropped":0,"avg_latency_ms":19.259652218610206,"throughput_eps":0,"last_update":"2026-03-22T10:58:12.480001219Z"} +2026/03/22 10:58:17 [transform_engine] {"stage_name":"transform_engine","events_processed":593,"events_dropped":0,"avg_latency_ms":522.907435245223,"throughput_eps":0,"last_update":"2026-03-22T10:58:12.478913836Z"} +2026/03/22 10:58:17 ───────────────────────────────────────────────── +2026/03/22 10:58:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:58:22 [log_collector] {"stage_name":"log_collector","events_processed":27694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5538.8,"last_update":"2026-03-22T10:58:17.368070728Z"} +2026/03/22 10:58:22 [metric_collector] {"stage_name":"metric_collector","events_processed":17809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3561.8,"last_update":"2026-03-22T10:58:17.368650649Z"} +2026/03/22 10:58:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7126,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:58:17.377823914Z"} +2026/03/22 10:58:22 [detection_layer] {"stage_name":"detection_layer","events_processed":593,"events_dropped":0,"avg_latency_ms":19.259652218610206,"throughput_eps":0,"last_update":"2026-03-22T10:58:17.479986897Z"} +2026/03/22 10:58:22 [transform_engine] {"stage_name":"transform_engine","events_processed":593,"events_dropped":0,"avg_latency_ms":522.907435245223,"throughput_eps":0,"last_update":"2026-03-22T10:58:17.478892722Z"} +2026/03/22 10:58:22 ───────────────────────────────────────────────── +2026/03/22 10:58:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:58:27 [log_collector] {"stage_name":"log_collector","events_processed":27703,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5540.6,"last_update":"2026-03-22T10:58:22.368226404Z"} +2026/03/22 10:58:27 [metric_collector] {"stage_name":"metric_collector","events_processed":17814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3562.8,"last_update":"2026-03-22T10:58:22.368730069Z"} +2026/03/22 10:58:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7128,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:58:22.375744982Z"} +2026/03/22 10:58:27 [detection_layer] {"stage_name":"detection_layer","events_processed":593,"events_dropped":0,"avg_latency_ms":19.259652218610206,"throughput_eps":0,"last_update":"2026-03-22T10:58:22.479464256Z"} +2026/03/22 10:58:27 [transform_engine] {"stage_name":"transform_engine","events_processed":593,"events_dropped":0,"avg_latency_ms":522.907435245223,"throughput_eps":0,"last_update":"2026-03-22T10:58:22.478850941Z"} +2026/03/22 10:58:27 ───────────────────────────────────────────────── +2026/03/22 10:58:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:58:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7130,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:58:27.377071727Z"} +2026/03/22 10:58:32 [detection_layer] {"stage_name":"detection_layer","events_processed":593,"events_dropped":0,"avg_latency_ms":19.259652218610206,"throughput_eps":0,"last_update":"2026-03-22T10:58:27.479619527Z"} +2026/03/22 10:58:32 [transform_engine] {"stage_name":"transform_engine","events_processed":594,"events_dropped":0,"avg_latency_ms":444.9758543961784,"throughput_eps":0,"last_update":"2026-03-22T10:58:27.612878376Z"} +2026/03/22 10:58:32 [log_collector] {"stage_name":"log_collector","events_processed":27835,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5567,"last_update":"2026-03-22T10:58:27.368970704Z"} +2026/03/22 10:58:32 [metric_collector] {"stage_name":"metric_collector","events_processed":17819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3563.8,"last_update":"2026-03-22T10:58:27.369254597Z"} +2026/03/22 10:58:32 ───────────────────────────────────────────────── +2026/03/22 10:58:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:58:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:58:32.377402054Z"} +2026/03/22 10:58:37 [detection_layer] {"stage_name":"detection_layer","events_processed":594,"events_dropped":0,"avg_latency_ms":17.99851697488817,"throughput_eps":0,"last_update":"2026-03-22T10:58:32.479656554Z"} +2026/03/22 10:58:37 [transform_engine] {"stage_name":"transform_engine","events_processed":594,"events_dropped":0,"avg_latency_ms":444.9758543961784,"throughput_eps":0,"last_update":"2026-03-22T10:58:32.479605046Z"} +2026/03/22 10:58:37 [log_collector] {"stage_name":"log_collector","events_processed":27936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5587.2,"last_update":"2026-03-22T10:58:32.368287481Z"} +2026/03/22 10:58:37 [metric_collector] {"stage_name":"metric_collector","events_processed":17824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3564.8,"last_update":"2026-03-22T10:58:32.368796506Z"} +2026/03/22 10:58:37 ───────────────────────────────────────────────── +2026/03/22 10:58:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:58:42 [metric_collector] {"stage_name":"metric_collector","events_processed":17829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3565.8,"last_update":"2026-03-22T10:58:37.368344459Z"} +2026/03/22 10:58:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:58:37.378872389Z"} +2026/03/22 10:58:42 [detection_layer] {"stage_name":"detection_layer","events_processed":594,"events_dropped":0,"avg_latency_ms":17.99851697488817,"throughput_eps":0,"last_update":"2026-03-22T10:58:37.479099547Z"} +2026/03/22 10:58:42 [transform_engine] {"stage_name":"transform_engine","events_processed":594,"events_dropped":0,"avg_latency_ms":444.9758543961784,"throughput_eps":0,"last_update":"2026-03-22T10:58:37.47907489Z"} +2026/03/22 10:58:42 [log_collector] {"stage_name":"log_collector","events_processed":28053,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5610.6,"last_update":"2026-03-22T10:58:37.367997956Z"} +2026/03/22 10:58:42 ───────────────────────────────────────────────── +2026/03/22 10:58:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:58:47 [log_collector] {"stage_name":"log_collector","events_processed":28053,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5610.6,"last_update":"2026-03-22T10:58:42.368393255Z"} +2026/03/22 10:58:47 [metric_collector] {"stage_name":"metric_collector","events_processed":17834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3566.8,"last_update":"2026-03-22T10:58:42.368407592Z"} +2026/03/22 10:58:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:58:42.376870587Z"} +2026/03/22 10:58:47 [detection_layer] {"stage_name":"detection_layer","events_processed":594,"events_dropped":0,"avg_latency_ms":17.99851697488817,"throughput_eps":0,"last_update":"2026-03-22T10:58:42.47916799Z"} +2026/03/22 10:58:47 [transform_engine] {"stage_name":"transform_engine","events_processed":594,"events_dropped":0,"avg_latency_ms":444.9758543961784,"throughput_eps":0,"last_update":"2026-03-22T10:58:42.479150647Z"} +2026/03/22 10:58:47 ───────────────────────────────────────────────── +2026/03/22 10:58:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:58:52 [log_collector] {"stage_name":"log_collector","events_processed":28053,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5610.6,"last_update":"2026-03-22T10:58:47.368757306Z"} +2026/03/22 10:58:52 [metric_collector] {"stage_name":"metric_collector","events_processed":17839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3567.8,"last_update":"2026-03-22T10:58:47.368934364Z"} +2026/03/22 10:58:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:58:47.3782901Z"} +2026/03/22 10:58:52 [detection_layer] {"stage_name":"detection_layer","events_processed":594,"events_dropped":0,"avg_latency_ms":17.99851697488817,"throughput_eps":0,"last_update":"2026-03-22T10:58:47.47948412Z"} +2026/03/22 10:58:52 [transform_engine] {"stage_name":"transform_engine","events_processed":594,"events_dropped":0,"avg_latency_ms":444.9758543961784,"throughput_eps":0,"last_update":"2026-03-22T10:58:47.479592016Z"} +2026/03/22 10:58:52 ───────────────────────────────────────────────── +2026/03/22 10:58:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:58:57 [metric_collector] {"stage_name":"metric_collector","events_processed":17844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3568.8,"last_update":"2026-03-22T10:58:52.368325714Z"} +2026/03/22 10:58:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:58:52.378589449Z"} +2026/03/22 10:58:57 [detection_layer] {"stage_name":"detection_layer","events_processed":594,"events_dropped":0,"avg_latency_ms":17.99851697488817,"throughput_eps":0,"last_update":"2026-03-22T10:58:52.479705651Z"} +2026/03/22 10:58:57 [transform_engine] {"stage_name":"transform_engine","events_processed":594,"events_dropped":0,"avg_latency_ms":444.9758543961784,"throughput_eps":0,"last_update":"2026-03-22T10:58:52.479750077Z"} +2026/03/22 10:58:57 [log_collector] {"stage_name":"log_collector","events_processed":28053,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5610.6,"last_update":"2026-03-22T10:58:52.367996324Z"} +2026/03/22 10:58:57 ───────────────────────────────────────────────── +2026/03/22 10:59:02 ── Pipeline Health ────────────────────────────── +2026/03/22 10:59:02 [log_collector] {"stage_name":"log_collector","events_processed":28053,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5610.6,"last_update":"2026-03-22T10:58:57.368403514Z"} +2026/03/22 10:59:02 [metric_collector] {"stage_name":"metric_collector","events_processed":17849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3569.8,"last_update":"2026-03-22T10:58:57.368870257Z"} +2026/03/22 10:59:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:58:57.377036405Z"} +2026/03/22 10:59:02 [detection_layer] {"stage_name":"detection_layer","events_processed":594,"events_dropped":0,"avg_latency_ms":17.99851697488817,"throughput_eps":0,"last_update":"2026-03-22T10:58:57.479497252Z"} +2026/03/22 10:59:02 [transform_engine] {"stage_name":"transform_engine","events_processed":595,"events_dropped":0,"avg_latency_ms":379.73016231694277,"throughput_eps":0,"last_update":"2026-03-22T10:58:57.598222063Z"} +2026/03/22 10:59:02 ───────────────────────────────────────────────── +2026/03/22 10:59:07 ── Pipeline Health ────────────────────────────── +2026/03/22 10:59:07 [log_collector] {"stage_name":"log_collector","events_processed":28053,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5610.6,"last_update":"2026-03-22T10:59:02.368829749Z"} +2026/03/22 10:59:07 [metric_collector] {"stage_name":"metric_collector","events_processed":17854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3570.8,"last_update":"2026-03-22T10:59:02.369125576Z"} +2026/03/22 10:59:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:59:02.377594342Z"} +2026/03/22 10:59:07 [detection_layer] {"stage_name":"detection_layer","events_processed":595,"events_dropped":0,"avg_latency_ms":18.227581379910536,"throughput_eps":0,"last_update":"2026-03-22T10:59:02.480024471Z"} +2026/03/22 10:59:07 [transform_engine] {"stage_name":"transform_engine","events_processed":595,"events_dropped":0,"avg_latency_ms":379.73016231694277,"throughput_eps":0,"last_update":"2026-03-22T10:59:02.478827669Z"} +2026/03/22 10:59:07 ───────────────────────────────────────────────── +2026/03/22 10:59:12 ── Pipeline Health ────────────────────────────── +2026/03/22 10:59:12 [detection_layer] {"stage_name":"detection_layer","events_processed":595,"events_dropped":0,"avg_latency_ms":18.227581379910536,"throughput_eps":0,"last_update":"2026-03-22T10:59:07.479001555Z"} +2026/03/22 10:59:12 [transform_engine] {"stage_name":"transform_engine","events_processed":595,"events_dropped":0,"avg_latency_ms":379.73016231694277,"throughput_eps":0,"last_update":"2026-03-22T10:59:07.478975415Z"} +2026/03/22 10:59:12 [log_collector] {"stage_name":"log_collector","events_processed":28053,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5610.6,"last_update":"2026-03-22T10:59:07.368576797Z"} +2026/03/22 10:59:12 [metric_collector] {"stage_name":"metric_collector","events_processed":17859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3571.8,"last_update":"2026-03-22T10:59:07.36910565Z"} +2026/03/22 10:59:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:59:07.377753108Z"} +2026/03/22 10:59:12 ───────────────────────────────────────────────── +Saved state: 14 clusters, 28054 messages, reason: none +2026/03/22 10:59:17 ── Pipeline Health ────────────────────────────── +2026/03/22 10:59:17 [metric_collector] {"stage_name":"metric_collector","events_processed":17864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3572.8,"last_update":"2026-03-22T10:59:12.368671931Z"} +2026/03/22 10:59:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:59:12.378391874Z"} +2026/03/22 10:59:17 [detection_layer] {"stage_name":"detection_layer","events_processed":595,"events_dropped":0,"avg_latency_ms":18.227581379910536,"throughput_eps":0,"last_update":"2026-03-22T10:59:12.479611385Z"} +2026/03/22 10:59:17 [transform_engine] {"stage_name":"transform_engine","events_processed":595,"events_dropped":0,"avg_latency_ms":379.73016231694277,"throughput_eps":0,"last_update":"2026-03-22T10:59:12.479581167Z"} +2026/03/22 10:59:17 [log_collector] {"stage_name":"log_collector","events_processed":28053,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5610.6,"last_update":"2026-03-22T10:59:12.368821216Z"} +2026/03/22 10:59:17 ───────────────────────────────────────────────── +2026/03/22 10:59:22 ── Pipeline Health ────────────────────────────── +2026/03/22 10:59:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:59:17.375887013Z"} +2026/03/22 10:59:22 [detection_layer] {"stage_name":"detection_layer","events_processed":595,"events_dropped":0,"avg_latency_ms":18.227581379910536,"throughput_eps":0,"last_update":"2026-03-22T10:59:17.479088199Z"} +2026/03/22 10:59:22 [transform_engine] {"stage_name":"transform_engine","events_processed":595,"events_dropped":0,"avg_latency_ms":379.73016231694277,"throughput_eps":0,"last_update":"2026-03-22T10:59:17.479058642Z"} +2026/03/22 10:59:22 [log_collector] {"stage_name":"log_collector","events_processed":28056,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5611.2,"last_update":"2026-03-22T10:59:22.368649839Z"} +2026/03/22 10:59:22 [metric_collector] {"stage_name":"metric_collector","events_processed":17869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3573.8,"last_update":"2026-03-22T10:59:17.368273151Z"} +2026/03/22 10:59:22 ───────────────────────────────────────────────── +2026/03/22 10:59:27 ── Pipeline Health ────────────────────────────── +2026/03/22 10:59:27 [transform_engine] {"stage_name":"transform_engine","events_processed":595,"events_dropped":0,"avg_latency_ms":379.73016231694277,"throughput_eps":0,"last_update":"2026-03-22T10:59:22.47972803Z"} +2026/03/22 10:59:27 [log_collector] {"stage_name":"log_collector","events_processed":28067,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5613.4,"last_update":"2026-03-22T10:59:27.368552668Z"} +2026/03/22 10:59:27 [metric_collector] {"stage_name":"metric_collector","events_processed":17874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3574.8,"last_update":"2026-03-22T10:59:22.368923804Z"} +2026/03/22 10:59:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:59:22.378181502Z"} +2026/03/22 10:59:27 [detection_layer] {"stage_name":"detection_layer","events_processed":595,"events_dropped":0,"avg_latency_ms":18.227581379910536,"throughput_eps":0,"last_update":"2026-03-22T10:59:22.479689125Z"} +2026/03/22 10:59:27 ───────────────────────────────────────────────── +2026/03/22 10:59:27 [ANOMALY] time=2026-03-22T10:59:27Z score=0.7770 method=SEAD details=MAD!:w=0.59,s=0.76 RRCF-fast:w=0.11,s=0.83 RRCF-mid:w=0.09,s=0.77 RRCF-slow:w=0.09,s=0.95 COPOD!:w=0.13,s=0.70 +2026/03/22 10:59:32 ── Pipeline Health ────────────────────────────── +2026/03/22 10:59:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:59:27.377812582Z"} +2026/03/22 10:59:32 [detection_layer] {"stage_name":"detection_layer","events_processed":595,"events_dropped":0,"avg_latency_ms":18.227581379910536,"throughput_eps":0,"last_update":"2026-03-22T10:59:27.479033145Z"} +2026/03/22 10:59:32 [transform_engine] {"stage_name":"transform_engine","events_processed":596,"events_dropped":0,"avg_latency_ms":327.36536925355426,"throughput_eps":0,"last_update":"2026-03-22T10:59:27.596893134Z"} +2026/03/22 10:59:32 [log_collector] {"stage_name":"log_collector","events_processed":28067,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5613.4,"last_update":"2026-03-22T10:59:27.368552668Z"} +2026/03/22 10:59:32 [metric_collector] {"stage_name":"metric_collector","events_processed":17879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3575.8,"last_update":"2026-03-22T10:59:27.369391404Z"} +2026/03/22 10:59:32 ───────────────────────────────────────────────── +2026/03/22 10:59:37 ── Pipeline Health ────────────────────────────── +2026/03/22 10:59:37 [transform_engine] {"stage_name":"transform_engine","events_processed":596,"events_dropped":0,"avg_latency_ms":327.36536925355426,"throughput_eps":0,"last_update":"2026-03-22T10:59:32.479869615Z"} +2026/03/22 10:59:37 [log_collector] {"stage_name":"log_collector","events_processed":28083,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5616.6,"last_update":"2026-03-22T10:59:37.368467772Z"} +2026/03/22 10:59:37 [metric_collector] {"stage_name":"metric_collector","events_processed":17884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3576.8,"last_update":"2026-03-22T10:59:32.36815776Z"} +2026/03/22 10:59:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:59:32.375033126Z"} +2026/03/22 10:59:37 [detection_layer] {"stage_name":"detection_layer","events_processed":596,"events_dropped":0,"avg_latency_ms":18.42546710392843,"throughput_eps":0,"last_update":"2026-03-22T10:59:32.47990908Z"} +2026/03/22 10:59:37 ───────────────────────────────────────────────── +2026/03/22 10:59:42 ── Pipeline Health ────────────────────────────── +2026/03/22 10:59:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:59:37.374631125Z"} +2026/03/22 10:59:42 [detection_layer] {"stage_name":"detection_layer","events_processed":596,"events_dropped":0,"avg_latency_ms":18.42546710392843,"throughput_eps":0,"last_update":"2026-03-22T10:59:37.47991974Z"} +2026/03/22 10:59:42 [transform_engine] {"stage_name":"transform_engine","events_processed":596,"events_dropped":0,"avg_latency_ms":327.36536925355426,"throughput_eps":0,"last_update":"2026-03-22T10:59:37.478816407Z"} +2026/03/22 10:59:42 [log_collector] {"stage_name":"log_collector","events_processed":28083,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5616.6,"last_update":"2026-03-22T10:59:37.368467772Z"} +2026/03/22 10:59:42 [metric_collector] {"stage_name":"metric_collector","events_processed":17889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3577.8,"last_update":"2026-03-22T10:59:37.368834744Z"} +2026/03/22 10:59:42 ───────────────────────────────────────────────── +2026/03/22 10:59:47 ── Pipeline Health ────────────────────────────── +2026/03/22 10:59:47 [log_collector] {"stage_name":"log_collector","events_processed":28083,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5616.6,"last_update":"2026-03-22T10:59:42.368559735Z"} +2026/03/22 10:59:47 [metric_collector] {"stage_name":"metric_collector","events_processed":17894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3578.8,"last_update":"2026-03-22T10:59:42.369104759Z"} +2026/03/22 10:59:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:59:42.37873463Z"} +2026/03/22 10:59:47 [detection_layer] {"stage_name":"detection_layer","events_processed":596,"events_dropped":0,"avg_latency_ms":18.42546710392843,"throughput_eps":0,"last_update":"2026-03-22T10:59:42.480000032Z"} +2026/03/22 10:59:47 [transform_engine] {"stage_name":"transform_engine","events_processed":596,"events_dropped":0,"avg_latency_ms":327.36536925355426,"throughput_eps":0,"last_update":"2026-03-22T10:59:42.478878484Z"} +2026/03/22 10:59:47 ───────────────────────────────────────────────── +2026/03/22 10:59:52 ── Pipeline Health ────────────────────────────── +2026/03/22 10:59:52 [log_collector] {"stage_name":"log_collector","events_processed":28083,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5616.6,"last_update":"2026-03-22T10:59:52.368435125Z"} +2026/03/22 10:59:52 [metric_collector] {"stage_name":"metric_collector","events_processed":17899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3579.8,"last_update":"2026-03-22T10:59:47.368948058Z"} +2026/03/22 10:59:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:59:47.378216287Z"} +2026/03/22 10:59:52 [detection_layer] {"stage_name":"detection_layer","events_processed":596,"events_dropped":0,"avg_latency_ms":18.42546710392843,"throughput_eps":0,"last_update":"2026-03-22T10:59:47.479613591Z"} +2026/03/22 10:59:52 [transform_engine] {"stage_name":"transform_engine","events_processed":596,"events_dropped":0,"avg_latency_ms":327.36536925355426,"throughput_eps":0,"last_update":"2026-03-22T10:59:47.479650001Z"} +2026/03/22 10:59:52 ───────────────────────────────────────────────── +2026/03/22 10:59:57 ── Pipeline Health ────────────────────────────── +2026/03/22 10:59:57 [log_collector] {"stage_name":"log_collector","events_processed":28083,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5616.6,"last_update":"2026-03-22T10:59:57.368529274Z"} +2026/03/22 10:59:57 [metric_collector] {"stage_name":"metric_collector","events_processed":17904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3580.8,"last_update":"2026-03-22T10:59:52.36889719Z"} +2026/03/22 10:59:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:59:52.378919112Z"} +2026/03/22 10:59:57 [detection_layer] {"stage_name":"detection_layer","events_processed":596,"events_dropped":0,"avg_latency_ms":18.42546710392843,"throughput_eps":0,"last_update":"2026-03-22T10:59:52.479131469Z"} +2026/03/22 10:59:57 [transform_engine] {"stage_name":"transform_engine","events_processed":596,"events_dropped":0,"avg_latency_ms":327.36536925355426,"throughput_eps":0,"last_update":"2026-03-22T10:59:52.479245977Z"} +2026/03/22 10:59:57 ───────────────────────────────────────────────── +2026/03/22 11:00:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:00:02 [log_collector] {"stage_name":"log_collector","events_processed":28083,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5616.6,"last_update":"2026-03-22T11:00:02.3680321Z"} +2026/03/22 11:00:02 [metric_collector] {"stage_name":"metric_collector","events_processed":17909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3581.8,"last_update":"2026-03-22T10:59:57.369347631Z"} +2026/03/22 11:00:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T10:59:57.378013907Z"} +2026/03/22 11:00:02 [detection_layer] {"stage_name":"detection_layer","events_processed":596,"events_dropped":0,"avg_latency_ms":18.42546710392843,"throughput_eps":0,"last_update":"2026-03-22T10:59:57.479229795Z"} +2026/03/22 11:00:02 [transform_engine] {"stage_name":"transform_engine","events_processed":597,"events_dropped":0,"avg_latency_ms":285.01326800284346,"throughput_eps":0,"last_update":"2026-03-22T10:59:57.594948967Z"} +2026/03/22 11:00:02 ───────────────────────────────────────────────── +2026/03/22 11:00:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:00:07 [log_collector] {"stage_name":"log_collector","events_processed":28083,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5616.6,"last_update":"2026-03-22T11:00:02.3680321Z"} +2026/03/22 11:00:07 [metric_collector] {"stage_name":"metric_collector","events_processed":17914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3582.8,"last_update":"2026-03-22T11:00:02.368574039Z"} +2026/03/22 11:00:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:00:02.386198339Z"} +2026/03/22 11:00:07 [detection_layer] {"stage_name":"detection_layer","events_processed":597,"events_dropped":0,"avg_latency_ms":18.924041483142744,"throughput_eps":0,"last_update":"2026-03-22T11:00:02.479257778Z"} +2026/03/22 11:00:07 [transform_engine] {"stage_name":"transform_engine","events_processed":597,"events_dropped":0,"avg_latency_ms":285.01326800284346,"throughput_eps":0,"last_update":"2026-03-22T11:00:02.479285822Z"} +2026/03/22 11:00:07 ───────────────────────────────────────────────── +2026/03/22 11:00:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:00:12 [log_collector] {"stage_name":"log_collector","events_processed":28083,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5616.6,"last_update":"2026-03-22T11:00:07.368244606Z"} +2026/03/22 11:00:12 [metric_collector] {"stage_name":"metric_collector","events_processed":17918,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3583.6,"last_update":"2026-03-22T11:00:07.368339478Z"} +2026/03/22 11:00:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7170,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:00:07.377706025Z"} +2026/03/22 11:00:12 [detection_layer] {"stage_name":"detection_layer","events_processed":597,"events_dropped":0,"avg_latency_ms":18.924041483142744,"throughput_eps":0,"last_update":"2026-03-22T11:00:07.478984603Z"} +2026/03/22 11:00:12 [transform_engine] {"stage_name":"transform_engine","events_processed":597,"events_dropped":0,"avg_latency_ms":285.01326800284346,"throughput_eps":0,"last_update":"2026-03-22T11:00:07.478903689Z"} +2026/03/22 11:00:12 ───────────────────────────────────────────────── +Saved state: 14 clusters, 28087 messages, reason: none +2026/03/22 11:00:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:00:17 [log_collector] {"stage_name":"log_collector","events_processed":28086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5617.2,"last_update":"2026-03-22T11:00:12.368172213Z"} +2026/03/22 11:00:17 [metric_collector] {"stage_name":"metric_collector","events_processed":17924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3584.8,"last_update":"2026-03-22T11:00:12.368675347Z"} +2026/03/22 11:00:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:00:12.374771622Z"} +2026/03/22 11:00:17 [detection_layer] {"stage_name":"detection_layer","events_processed":597,"events_dropped":0,"avg_latency_ms":18.924041483142744,"throughput_eps":0,"last_update":"2026-03-22T11:00:12.478948221Z"} +2026/03/22 11:00:17 [transform_engine] {"stage_name":"transform_engine","events_processed":597,"events_dropped":0,"avg_latency_ms":285.01326800284346,"throughput_eps":0,"last_update":"2026-03-22T11:00:12.478908956Z"} +2026/03/22 11:00:17 ───────────────────────────────────────────────── +2026/03/22 11:00:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:00:22 [log_collector] {"stage_name":"log_collector","events_processed":28097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5619.4,"last_update":"2026-03-22T11:00:17.368554Z"} +2026/03/22 11:00:22 [metric_collector] {"stage_name":"metric_collector","events_processed":17929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3585.8,"last_update":"2026-03-22T11:00:17.368845759Z"} +2026/03/22 11:00:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:00:17.377821127Z"} +2026/03/22 11:00:22 [detection_layer] {"stage_name":"detection_layer","events_processed":597,"events_dropped":0,"avg_latency_ms":18.924041483142744,"throughput_eps":0,"last_update":"2026-03-22T11:00:17.479136737Z"} +2026/03/22 11:00:22 [transform_engine] {"stage_name":"transform_engine","events_processed":597,"events_dropped":0,"avg_latency_ms":285.01326800284346,"throughput_eps":0,"last_update":"2026-03-22T11:00:17.479056533Z"} +2026/03/22 11:00:22 ───────────────────────────────────────────────── +2026/03/22 11:00:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:00:27 [detection_layer] {"stage_name":"detection_layer","events_processed":597,"events_dropped":0,"avg_latency_ms":18.924041483142744,"throughput_eps":0,"last_update":"2026-03-22T11:00:22.478945156Z"} +2026/03/22 11:00:27 [transform_engine] {"stage_name":"transform_engine","events_processed":597,"events_dropped":0,"avg_latency_ms":285.01326800284346,"throughput_eps":0,"last_update":"2026-03-22T11:00:22.478914466Z"} +2026/03/22 11:00:27 [log_collector] {"stage_name":"log_collector","events_processed":28097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5619.4,"last_update":"2026-03-22T11:00:22.368148449Z"} +2026/03/22 11:00:27 [metric_collector] {"stage_name":"metric_collector","events_processed":17934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3586.8,"last_update":"2026-03-22T11:00:22.368563984Z"} +2026/03/22 11:00:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:00:22.375811483Z"} +2026/03/22 11:00:27 ───────────────────────────────────────────────── +2026/03/22 11:00:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:00:32 [metric_collector] {"stage_name":"metric_collector","events_processed":17939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3587.8,"last_update":"2026-03-22T11:00:27.368422778Z"} +2026/03/22 11:00:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:00:27.378233246Z"} +2026/03/22 11:00:32 [detection_layer] {"stage_name":"detection_layer","events_processed":597,"events_dropped":0,"avg_latency_ms":18.924041483142744,"throughput_eps":0,"last_update":"2026-03-22T11:00:27.479458042Z"} +2026/03/22 11:00:32 [transform_engine] {"stage_name":"transform_engine","events_processed":597,"events_dropped":0,"avg_latency_ms":285.01326800284346,"throughput_eps":0,"last_update":"2026-03-22T11:00:27.479502307Z"} +2026/03/22 11:00:32 [log_collector] {"stage_name":"log_collector","events_processed":28097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5619.4,"last_update":"2026-03-22T11:00:27.368075964Z"} +2026/03/22 11:00:32 ───────────────────────────────────────────────── +2026/03/22 11:00:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:00:37 [metric_collector] {"stage_name":"metric_collector","events_processed":17944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3588.8,"last_update":"2026-03-22T11:00:32.368725388Z"} +2026/03/22 11:00:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:00:32.37679396Z"} +2026/03/22 11:00:37 [detection_layer] {"stage_name":"detection_layer","events_processed":598,"events_dropped":0,"avg_latency_ms":19.163553586514197,"throughput_eps":0,"last_update":"2026-03-22T11:00:32.478990849Z"} +2026/03/22 11:00:37 [transform_engine] {"stage_name":"transform_engine","events_processed":598,"events_dropped":0,"avg_latency_ms":251.51675700227477,"throughput_eps":0,"last_update":"2026-03-22T11:00:32.479020245Z"} +2026/03/22 11:00:37 [log_collector] {"stage_name":"log_collector","events_processed":28097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5619.4,"last_update":"2026-03-22T11:00:32.368247773Z"} +2026/03/22 11:00:37 ───────────────────────────────────────────────── +2026/03/22 11:00:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:00:42 [log_collector] {"stage_name":"log_collector","events_processed":28097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5619.4,"last_update":"2026-03-22T11:00:37.368297168Z"} +2026/03/22 11:00:42 [metric_collector] {"stage_name":"metric_collector","events_processed":17949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3589.8,"last_update":"2026-03-22T11:00:37.368821152Z"} +2026/03/22 11:00:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:00:37.377836716Z"} +2026/03/22 11:00:42 [detection_layer] {"stage_name":"detection_layer","events_processed":598,"events_dropped":0,"avg_latency_ms":19.163553586514197,"throughput_eps":0,"last_update":"2026-03-22T11:00:37.479225167Z"} +2026/03/22 11:00:42 [transform_engine] {"stage_name":"transform_engine","events_processed":598,"events_dropped":0,"avg_latency_ms":251.51675700227477,"throughput_eps":0,"last_update":"2026-03-22T11:00:37.479115558Z"} +2026/03/22 11:00:42 ───────────────────────────────────────────────── +2026/03/22 11:00:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:00:47 [metric_collector] {"stage_name":"metric_collector","events_processed":17954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3590.8,"last_update":"2026-03-22T11:00:42.369037374Z"} +2026/03/22 11:00:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:00:42.377329172Z"} +2026/03/22 11:00:47 [detection_layer] {"stage_name":"detection_layer","events_processed":598,"events_dropped":0,"avg_latency_ms":19.163553586514197,"throughput_eps":0,"last_update":"2026-03-22T11:00:42.479737827Z"} +2026/03/22 11:00:47 [transform_engine] {"stage_name":"transform_engine","events_processed":598,"events_dropped":0,"avg_latency_ms":251.51675700227477,"throughput_eps":0,"last_update":"2026-03-22T11:00:42.479770921Z"} +2026/03/22 11:00:47 [log_collector] {"stage_name":"log_collector","events_processed":28097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5619.4,"last_update":"2026-03-22T11:00:42.368741767Z"} +2026/03/22 11:00:47 ───────────────────────────────────────────────── +2026/03/22 11:00:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:00:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:00:47.378345303Z"} +2026/03/22 11:00:52 [detection_layer] {"stage_name":"detection_layer","events_processed":598,"events_dropped":0,"avg_latency_ms":19.163553586514197,"throughput_eps":0,"last_update":"2026-03-22T11:00:47.479588998Z"} +2026/03/22 11:00:52 [transform_engine] {"stage_name":"transform_engine","events_processed":598,"events_dropped":0,"avg_latency_ms":251.51675700227477,"throughput_eps":0,"last_update":"2026-03-22T11:00:47.479565543Z"} +2026/03/22 11:00:52 [log_collector] {"stage_name":"log_collector","events_processed":28097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5619.4,"last_update":"2026-03-22T11:00:47.368993535Z"} +2026/03/22 11:00:52 [metric_collector] {"stage_name":"metric_collector","events_processed":17959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3591.8,"last_update":"2026-03-22T11:00:47.369164132Z"} +2026/03/22 11:00:52 ───────────────────────────────────────────────── +2026/03/22 11:00:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:00:57 [transform_engine] {"stage_name":"transform_engine","events_processed":598,"events_dropped":0,"avg_latency_ms":251.51675700227477,"throughput_eps":0,"last_update":"2026-03-22T11:00:52.47942505Z"} +2026/03/22 11:00:57 [log_collector] {"stage_name":"log_collector","events_processed":28097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5619.4,"last_update":"2026-03-22T11:00:52.36897781Z"} +2026/03/22 11:00:57 [metric_collector] {"stage_name":"metric_collector","events_processed":17964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3592.8,"last_update":"2026-03-22T11:00:52.369495061Z"} +2026/03/22 11:00:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:00:52.379191168Z"} +2026/03/22 11:00:57 [detection_layer] {"stage_name":"detection_layer","events_processed":598,"events_dropped":0,"avg_latency_ms":19.163553586514197,"throughput_eps":0,"last_update":"2026-03-22T11:00:52.479391505Z"} +2026/03/22 11:00:57 ───────────────────────────────────────────────── +2026/03/22 11:01:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:01:02 [log_collector] {"stage_name":"log_collector","events_processed":28097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5619.4,"last_update":"2026-03-22T11:00:57.36806281Z"} +2026/03/22 11:01:02 [metric_collector] {"stage_name":"metric_collector","events_processed":17969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3593.8,"last_update":"2026-03-22T11:00:57.368746399Z"} +2026/03/22 11:01:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:00:57.377461829Z"} +2026/03/22 11:01:02 [detection_layer] {"stage_name":"detection_layer","events_processed":598,"events_dropped":0,"avg_latency_ms":19.163553586514197,"throughput_eps":0,"last_update":"2026-03-22T11:00:57.479803638Z"} +2026/03/22 11:01:02 [transform_engine] {"stage_name":"transform_engine","events_processed":599,"events_dropped":0,"avg_latency_ms":218.57350900181984,"throughput_eps":0,"last_update":"2026-03-22T11:00:57.566663027Z"} +2026/03/22 11:01:02 ───────────────────────────────────────────────── +2026/03/22 11:01:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:01:07 [log_collector] {"stage_name":"log_collector","events_processed":28097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5619.4,"last_update":"2026-03-22T11:01:02.36795459Z"} +2026/03/22 11:01:07 [metric_collector] {"stage_name":"metric_collector","events_processed":17974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3594.8,"last_update":"2026-03-22T11:01:02.368378783Z"} +2026/03/22 11:01:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:01:02.377037234Z"} +2026/03/22 11:01:07 [detection_layer] {"stage_name":"detection_layer","events_processed":599,"events_dropped":0,"avg_latency_ms":19.89706346921136,"throughput_eps":0,"last_update":"2026-03-22T11:01:02.479403339Z"} +2026/03/22 11:01:07 [transform_engine] {"stage_name":"transform_engine","events_processed":599,"events_dropped":0,"avg_latency_ms":218.57350900181984,"throughput_eps":0,"last_update":"2026-03-22T11:01:02.479418108Z"} +2026/03/22 11:01:07 ───────────────────────────────────────────────── +2026/03/22 11:01:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:01:12 [metric_collector] {"stage_name":"metric_collector","events_processed":17979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3595.8,"last_update":"2026-03-22T11:01:07.36855652Z"} +2026/03/22 11:01:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:01:07.378579505Z"} +2026/03/22 11:01:12 [detection_layer] {"stage_name":"detection_layer","events_processed":599,"events_dropped":0,"avg_latency_ms":19.89706346921136,"throughput_eps":0,"last_update":"2026-03-22T11:01:07.479910198Z"} +2026/03/22 11:01:12 [transform_engine] {"stage_name":"transform_engine","events_processed":599,"events_dropped":0,"avg_latency_ms":218.57350900181984,"throughput_eps":0,"last_update":"2026-03-22T11:01:07.479805568Z"} +2026/03/22 11:01:12 [log_collector] {"stage_name":"log_collector","events_processed":28097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5619.4,"last_update":"2026-03-22T11:01:12.368686773Z"} +2026/03/22 11:01:12 ───────────────────────────────────────────────── +2026/03/22 11:01:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:01:17 [metric_collector] {"stage_name":"metric_collector","events_processed":17984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3596.8,"last_update":"2026-03-22T11:01:12.369261723Z"} +2026/03/22 11:01:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:01:12.379459684Z"} +2026/03/22 11:01:17 [detection_layer] {"stage_name":"detection_layer","events_processed":599,"events_dropped":0,"avg_latency_ms":19.89706346921136,"throughput_eps":0,"last_update":"2026-03-22T11:01:12.479733803Z"} +2026/03/22 11:01:17 [transform_engine] {"stage_name":"transform_engine","events_processed":599,"events_dropped":0,"avg_latency_ms":218.57350900181984,"throughput_eps":0,"last_update":"2026-03-22T11:01:12.479619394Z"} +2026/03/22 11:01:17 [log_collector] {"stage_name":"log_collector","events_processed":28097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5619.4,"last_update":"2026-03-22T11:01:17.368395333Z"} +2026/03/22 11:01:17 ───────────────────────────────────────────────── +Saved state: 14 clusters, 28098 messages, reason: none +2026/03/22 11:01:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:01:22 [log_collector] {"stage_name":"log_collector","events_processed":28097,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5619.4,"last_update":"2026-03-22T11:01:17.368395333Z"} +2026/03/22 11:01:22 [metric_collector] {"stage_name":"metric_collector","events_processed":17989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3597.8,"last_update":"2026-03-22T11:01:17.369123077Z"} +2026/03/22 11:01:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:01:17.377777952Z"} +2026/03/22 11:01:22 [detection_layer] {"stage_name":"detection_layer","events_processed":599,"events_dropped":0,"avg_latency_ms":19.89706346921136,"throughput_eps":0,"last_update":"2026-03-22T11:01:17.47901191Z"} +2026/03/22 11:01:22 [transform_engine] {"stage_name":"transform_engine","events_processed":599,"events_dropped":0,"avg_latency_ms":218.57350900181984,"throughput_eps":0,"last_update":"2026-03-22T11:01:17.479038281Z"} +2026/03/22 11:01:22 ───────────────────────────────────────────────── +2026/03/22 11:01:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:01:27 [detection_layer] {"stage_name":"detection_layer","events_processed":599,"events_dropped":0,"avg_latency_ms":19.89706346921136,"throughput_eps":0,"last_update":"2026-03-22T11:01:22.47970795Z"} +2026/03/22 11:01:27 [transform_engine] {"stage_name":"transform_engine","events_processed":599,"events_dropped":0,"avg_latency_ms":218.57350900181984,"throughput_eps":0,"last_update":"2026-03-22T11:01:22.479737436Z"} +2026/03/22 11:01:27 [log_collector] {"stage_name":"log_collector","events_processed":28102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5620.4,"last_update":"2026-03-22T11:01:27.36839363Z"} +2026/03/22 11:01:27 [metric_collector] {"stage_name":"metric_collector","events_processed":17994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3598.8,"last_update":"2026-03-22T11:01:22.368299507Z"} +2026/03/22 11:01:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:01:22.375483986Z"} +2026/03/22 11:01:27 ───────────────────────────────────────────────── +2026/03/22 11:01:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:01:32 [log_collector] {"stage_name":"log_collector","events_processed":28102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5620.4,"last_update":"2026-03-22T11:01:32.368783417Z"} +2026/03/22 11:01:32 [metric_collector] {"stage_name":"metric_collector","events_processed":17999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3599.8,"last_update":"2026-03-22T11:01:27.368660231Z"} +2026/03/22 11:01:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:01:27.376409051Z"} +2026/03/22 11:01:32 [detection_layer] {"stage_name":"detection_layer","events_processed":599,"events_dropped":0,"avg_latency_ms":19.89706346921136,"throughput_eps":0,"last_update":"2026-03-22T11:01:27.479380467Z"} +2026/03/22 11:01:32 [transform_engine] {"stage_name":"transform_engine","events_processed":600,"events_dropped":0,"avg_latency_ms":411.66583480145584,"throughput_eps":0,"last_update":"2026-03-22T11:01:28.662975181Z"} +2026/03/22 11:01:32 ───────────────────────────────────────────────── +2026/03/22 11:01:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:01:37 [transform_engine] {"stage_name":"transform_engine","events_processed":600,"events_dropped":0,"avg_latency_ms":411.66583480145584,"throughput_eps":0,"last_update":"2026-03-22T11:01:32.479200593Z"} +2026/03/22 11:01:37 [log_collector] {"stage_name":"log_collector","events_processed":28102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5620.4,"last_update":"2026-03-22T11:01:32.368783417Z"} +2026/03/22 11:01:37 [metric_collector] {"stage_name":"metric_collector","events_processed":18004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3600.8,"last_update":"2026-03-22T11:01:32.369016574Z"} +2026/03/22 11:01:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:01:32.377470594Z"} +2026/03/22 11:01:37 [detection_layer] {"stage_name":"detection_layer","events_processed":600,"events_dropped":0,"avg_latency_ms":18.99931437536909,"throughput_eps":0,"last_update":"2026-03-22T11:01:32.479171176Z"} +2026/03/22 11:01:37 ───────────────────────────────────────────────── +2026/03/22 11:01:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:01:42 [log_collector] {"stage_name":"log_collector","events_processed":28102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5620.4,"last_update":"2026-03-22T11:01:37.368130643Z"} +2026/03/22 11:01:42 [metric_collector] {"stage_name":"metric_collector","events_processed":18009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3601.8,"last_update":"2026-03-22T11:01:37.368398076Z"} +2026/03/22 11:01:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7206,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:01:37.374825304Z"} +2026/03/22 11:01:42 [detection_layer] {"stage_name":"detection_layer","events_processed":600,"events_dropped":0,"avg_latency_ms":18.99931437536909,"throughput_eps":0,"last_update":"2026-03-22T11:01:37.479777475Z"} +2026/03/22 11:01:42 [transform_engine] {"stage_name":"transform_engine","events_processed":600,"events_dropped":0,"avg_latency_ms":411.66583480145584,"throughput_eps":0,"last_update":"2026-03-22T11:01:37.479737568Z"} +2026/03/22 11:01:42 ───────────────────────────────────────────────── +2026/03/22 11:01:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:01:47 [transform_engine] {"stage_name":"transform_engine","events_processed":600,"events_dropped":0,"avg_latency_ms":411.66583480145584,"throughput_eps":0,"last_update":"2026-03-22T11:01:42.479530882Z"} +2026/03/22 11:01:47 [log_collector] {"stage_name":"log_collector","events_processed":28102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5620.4,"last_update":"2026-03-22T11:01:42.368007768Z"} +2026/03/22 11:01:47 [metric_collector] {"stage_name":"metric_collector","events_processed":18014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3602.8,"last_update":"2026-03-22T11:01:42.368462027Z"} +2026/03/22 11:01:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:01:42.375965256Z"} +2026/03/22 11:01:47 [detection_layer] {"stage_name":"detection_layer","events_processed":600,"events_dropped":0,"avg_latency_ms":18.99931437536909,"throughput_eps":0,"last_update":"2026-03-22T11:01:42.479557012Z"} +2026/03/22 11:01:47 ───────────────────────────────────────────────── +2026/03/22 11:01:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:01:52 [metric_collector] {"stage_name":"metric_collector","events_processed":18019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3603.8,"last_update":"2026-03-22T11:01:47.368133826Z"} +2026/03/22 11:01:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7210,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:01:47.37432912Z"} +2026/03/22 11:01:52 [detection_layer] {"stage_name":"detection_layer","events_processed":600,"events_dropped":0,"avg_latency_ms":18.99931437536909,"throughput_eps":0,"last_update":"2026-03-22T11:01:47.479642572Z"} +2026/03/22 11:01:52 [transform_engine] {"stage_name":"transform_engine","events_processed":600,"events_dropped":0,"avg_latency_ms":411.66583480145584,"throughput_eps":0,"last_update":"2026-03-22T11:01:47.479627735Z"} +2026/03/22 11:01:52 [log_collector] {"stage_name":"log_collector","events_processed":28102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5620.4,"last_update":"2026-03-22T11:01:52.36838432Z"} +2026/03/22 11:01:52 ───────────────────────────────────────────────── +2026/03/22 11:01:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:01:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:01:52.375205803Z"} +2026/03/22 11:01:57 [detection_layer] {"stage_name":"detection_layer","events_processed":600,"events_dropped":0,"avg_latency_ms":18.99931437536909,"throughput_eps":0,"last_update":"2026-03-22T11:01:52.479415162Z"} +2026/03/22 11:01:57 [transform_engine] {"stage_name":"transform_engine","events_processed":600,"events_dropped":0,"avg_latency_ms":411.66583480145584,"throughput_eps":0,"last_update":"2026-03-22T11:01:52.4793932Z"} +2026/03/22 11:01:57 [log_collector] {"stage_name":"log_collector","events_processed":28102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5620.4,"last_update":"2026-03-22T11:01:52.36838432Z"} +2026/03/22 11:01:57 [metric_collector] {"stage_name":"metric_collector","events_processed":18024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3604.8,"last_update":"2026-03-22T11:01:52.368829412Z"} +2026/03/22 11:01:57 ───────────────────────────────────────────────── +2026/03/22 11:02:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:02:02 [log_collector] {"stage_name":"log_collector","events_processed":28102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5620.4,"last_update":"2026-03-22T11:01:57.367989462Z"} +2026/03/22 11:02:02 [metric_collector] {"stage_name":"metric_collector","events_processed":18029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3605.8,"last_update":"2026-03-22T11:01:57.368205375Z"} +2026/03/22 11:02:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:01:57.376392825Z"} +2026/03/22 11:02:02 [detection_layer] {"stage_name":"detection_layer","events_processed":600,"events_dropped":0,"avg_latency_ms":18.99931437536909,"throughput_eps":0,"last_update":"2026-03-22T11:01:57.479653237Z"} +2026/03/22 11:02:02 [transform_engine] {"stage_name":"transform_engine","events_processed":601,"events_dropped":0,"avg_latency_ms":499.8717012411647,"throughput_eps":0,"last_update":"2026-03-22T11:01:58.332384643Z"} +2026/03/22 11:02:02 ───────────────────────────────────────────────── +2026/03/22 11:02:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:02:07 [log_collector] {"stage_name":"log_collector","events_processed":28172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5634.4,"last_update":"2026-03-22T11:02:07.36846101Z"} +2026/03/22 11:02:07 [metric_collector] {"stage_name":"metric_collector","events_processed":18039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3607.8,"last_update":"2026-03-22T11:02:07.368312856Z"} +2026/03/22 11:02:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:02:02.374932845Z"} +2026/03/22 11:02:07 [detection_layer] {"stage_name":"detection_layer","events_processed":601,"events_dropped":0,"avg_latency_ms":17.877953100295272,"throughput_eps":0,"last_update":"2026-03-22T11:02:02.479154296Z"} +2026/03/22 11:02:07 [transform_engine] {"stage_name":"transform_engine","events_processed":601,"events_dropped":0,"avg_latency_ms":499.8717012411647,"throughput_eps":0,"last_update":"2026-03-22T11:02:02.479183133Z"} +2026/03/22 11:02:07 ───────────────────────────────────────────────── +2026/03/22 11:02:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:02:12 [log_collector] {"stage_name":"log_collector","events_processed":28172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5634.4,"last_update":"2026-03-22T11:02:07.36846101Z"} +2026/03/22 11:02:12 [metric_collector] {"stage_name":"metric_collector","events_processed":18039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3607.8,"last_update":"2026-03-22T11:02:07.368312856Z"} +2026/03/22 11:02:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:02:07.375158297Z"} +2026/03/22 11:02:12 [detection_layer] {"stage_name":"detection_layer","events_processed":601,"events_dropped":0,"avg_latency_ms":17.877953100295272,"throughput_eps":0,"last_update":"2026-03-22T11:02:07.479379819Z"} +2026/03/22 11:02:12 [transform_engine] {"stage_name":"transform_engine","events_processed":601,"events_dropped":0,"avg_latency_ms":499.8717012411647,"throughput_eps":0,"last_update":"2026-03-22T11:02:07.479431398Z"} +2026/03/22 11:02:12 ───────────────────────────────────────────────── +2026/03/22 11:02:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:02:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:02:12.375954527Z"} +2026/03/22 11:02:17 [detection_layer] {"stage_name":"detection_layer","events_processed":601,"events_dropped":0,"avg_latency_ms":17.877953100295272,"throughput_eps":0,"last_update":"2026-03-22T11:02:12.47991499Z"} +2026/03/22 11:02:17 [transform_engine] {"stage_name":"transform_engine","events_processed":601,"events_dropped":0,"avg_latency_ms":499.8717012411647,"throughput_eps":0,"last_update":"2026-03-22T11:02:12.47882912Z"} +2026/03/22 11:02:17 [log_collector] {"stage_name":"log_collector","events_processed":28459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5691.8,"last_update":"2026-03-22T11:02:17.368013778Z"} +2026/03/22 11:02:17 [metric_collector] {"stage_name":"metric_collector","events_processed":18044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3608.8,"last_update":"2026-03-22T11:02:12.369392439Z"} +2026/03/22 11:02:17 ───────────────────────────────────────────────── +2026/03/22 11:02:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:02:22 [log_collector] {"stage_name":"log_collector","events_processed":28459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5691.8,"last_update":"2026-03-22T11:02:17.368013778Z"} +2026/03/22 11:02:22 [metric_collector] {"stage_name":"metric_collector","events_processed":18049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3609.8,"last_update":"2026-03-22T11:02:17.368521861Z"} +2026/03/22 11:02:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7222,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:02:17.376657863Z"} +2026/03/22 11:02:22 [detection_layer] {"stage_name":"detection_layer","events_processed":601,"events_dropped":0,"avg_latency_ms":17.877953100295272,"throughput_eps":0,"last_update":"2026-03-22T11:02:17.479932412Z"} +2026/03/22 11:02:22 [transform_engine] {"stage_name":"transform_engine","events_processed":601,"events_dropped":0,"avg_latency_ms":499.8717012411647,"throughput_eps":0,"last_update":"2026-03-22T11:02:17.479867899Z"} +2026/03/22 11:02:22 ───────────────────────────────────────────────── +2026/03/22 11:02:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:02:27 [log_collector] {"stage_name":"log_collector","events_processed":28459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5691.8,"last_update":"2026-03-22T11:02:22.36876947Z"} +2026/03/22 11:02:27 [metric_collector] {"stage_name":"metric_collector","events_processed":18054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3610.8,"last_update":"2026-03-22T11:02:22.368761515Z"} +2026/03/22 11:02:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:02:22.378760154Z"} +2026/03/22 11:02:27 [detection_layer] {"stage_name":"detection_layer","events_processed":601,"events_dropped":0,"avg_latency_ms":17.877953100295272,"throughput_eps":0,"last_update":"2026-03-22T11:02:22.47898349Z"} +2026/03/22 11:02:27 [transform_engine] {"stage_name":"transform_engine","events_processed":601,"events_dropped":0,"avg_latency_ms":499.8717012411647,"throughput_eps":0,"last_update":"2026-03-22T11:02:22.47895696Z"} +2026/03/22 11:02:27 ───────────────────────────────────────────────── +Saved state: 14 clusters, 28460 messages, reason: none +2026/03/22 11:02:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:02:32 [metric_collector] {"stage_name":"metric_collector","events_processed":18059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3611.8,"last_update":"2026-03-22T11:02:27.368846908Z"} +2026/03/22 11:02:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:02:27.377492024Z"} +2026/03/22 11:02:32 [detection_layer] {"stage_name":"detection_layer","events_processed":601,"events_dropped":0,"avg_latency_ms":17.877953100295272,"throughput_eps":0,"last_update":"2026-03-22T11:02:27.47973039Z"} +2026/03/22 11:02:32 [transform_engine] {"stage_name":"transform_engine","events_processed":602,"events_dropped":0,"avg_latency_ms":417.7877889929318,"throughput_eps":0,"last_update":"2026-03-22T11:02:27.569228728Z"} +2026/03/22 11:02:32 [log_collector] {"stage_name":"log_collector","events_processed":28462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5692.4,"last_update":"2026-03-22T11:02:32.367993035Z"} +2026/03/22 11:02:32 ───────────────────────────────────────────────── +2026/03/22 11:02:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:02:37 [log_collector] {"stage_name":"log_collector","events_processed":28462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5692.4,"last_update":"2026-03-22T11:02:37.3684611Z"} +2026/03/22 11:02:37 [metric_collector] {"stage_name":"metric_collector","events_processed":18069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3613.8,"last_update":"2026-03-22T11:02:37.368679488Z"} +2026/03/22 11:02:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:02:32.376858294Z"} +2026/03/22 11:02:37 [detection_layer] {"stage_name":"detection_layer","events_processed":602,"events_dropped":0,"avg_latency_ms":17.982582480236218,"throughput_eps":0,"last_update":"2026-03-22T11:02:32.479029241Z"} +2026/03/22 11:02:37 [transform_engine] {"stage_name":"transform_engine","events_processed":602,"events_dropped":0,"avg_latency_ms":417.7877889929318,"throughput_eps":0,"last_update":"2026-03-22T11:02:32.479040563Z"} +2026/03/22 11:02:37 ───────────────────────────────────────────────── +2026/03/22 11:02:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:02:42 [transform_engine] {"stage_name":"transform_engine","events_processed":602,"events_dropped":0,"avg_latency_ms":417.7877889929318,"throughput_eps":0,"last_update":"2026-03-22T11:02:37.479829391Z"} +2026/03/22 11:02:42 [log_collector] {"stage_name":"log_collector","events_processed":28462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5692.4,"last_update":"2026-03-22T11:02:37.3684611Z"} +2026/03/22 11:02:42 [metric_collector] {"stage_name":"metric_collector","events_processed":18069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3613.8,"last_update":"2026-03-22T11:02:37.368679488Z"} +2026/03/22 11:02:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:02:37.378496659Z"} +2026/03/22 11:02:42 [detection_layer] {"stage_name":"detection_layer","events_processed":602,"events_dropped":0,"avg_latency_ms":17.982582480236218,"throughput_eps":0,"last_update":"2026-03-22T11:02:37.479818851Z"} +2026/03/22 11:02:42 ───────────────────────────────────────────────── +2026/03/22 11:02:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:02:47 [log_collector] {"stage_name":"log_collector","events_processed":28472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5694.4,"last_update":"2026-03-22T11:02:42.36797432Z"} +2026/03/22 11:02:47 [metric_collector] {"stage_name":"metric_collector","events_processed":18074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3614.8,"last_update":"2026-03-22T11:02:42.368319932Z"} +2026/03/22 11:02:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:02:42.376918148Z"} +2026/03/22 11:02:47 [detection_layer] {"stage_name":"detection_layer","events_processed":602,"events_dropped":0,"avg_latency_ms":17.982582480236218,"throughput_eps":0,"last_update":"2026-03-22T11:02:42.47911181Z"} +2026/03/22 11:02:47 [transform_engine] {"stage_name":"transform_engine","events_processed":602,"events_dropped":0,"avg_latency_ms":417.7877889929318,"throughput_eps":0,"last_update":"2026-03-22T11:02:42.479126337Z"} +2026/03/22 11:02:47 ───────────────────────────────────────────────── +2026/03/22 11:02:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:02:52 [metric_collector] {"stage_name":"metric_collector","events_processed":18079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3615.8,"last_update":"2026-03-22T11:02:47.36884231Z"} +2026/03/22 11:02:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:02:47.37493644Z"} +2026/03/22 11:02:52 [detection_layer] {"stage_name":"detection_layer","events_processed":602,"events_dropped":0,"avg_latency_ms":17.982582480236218,"throughput_eps":0,"last_update":"2026-03-22T11:02:47.479088392Z"} +2026/03/22 11:02:52 [transform_engine] {"stage_name":"transform_engine","events_processed":602,"events_dropped":0,"avg_latency_ms":417.7877889929318,"throughput_eps":0,"last_update":"2026-03-22T11:02:47.479125434Z"} +2026/03/22 11:02:52 [log_collector] {"stage_name":"log_collector","events_processed":28473,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5694.6,"last_update":"2026-03-22T11:02:47.368421394Z"} +2026/03/22 11:02:52 ───────────────────────────────────────────────── +2026/03/22 11:02:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:02:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:02:52.377187523Z"} +2026/03/22 11:02:57 [detection_layer] {"stage_name":"detection_layer","events_processed":602,"events_dropped":0,"avg_latency_ms":17.982582480236218,"throughput_eps":0,"last_update":"2026-03-22T11:02:52.479589543Z"} +2026/03/22 11:02:57 [transform_engine] {"stage_name":"transform_engine","events_processed":602,"events_dropped":0,"avg_latency_ms":417.7877889929318,"throughput_eps":0,"last_update":"2026-03-22T11:02:52.479573713Z"} +2026/03/22 11:02:57 [log_collector] {"stage_name":"log_collector","events_processed":28489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5697.8,"last_update":"2026-03-22T11:02:57.367981988Z"} +2026/03/22 11:02:57 [metric_collector] {"stage_name":"metric_collector","events_processed":18084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3616.8,"last_update":"2026-03-22T11:02:52.368301935Z"} +2026/03/22 11:02:57 ───────────────────────────────────────────────── +2026/03/22 11:03:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:03:02 [log_collector] {"stage_name":"log_collector","events_processed":28489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5697.8,"last_update":"2026-03-22T11:02:57.367981988Z"} +2026/03/22 11:03:02 [metric_collector] {"stage_name":"metric_collector","events_processed":18089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3617.8,"last_update":"2026-03-22T11:02:57.36876617Z"} +2026/03/22 11:03:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:02:57.377327456Z"} +2026/03/22 11:03:02 [detection_layer] {"stage_name":"detection_layer","events_processed":602,"events_dropped":0,"avg_latency_ms":17.982582480236218,"throughput_eps":0,"last_update":"2026-03-22T11:02:57.479678558Z"} +2026/03/22 11:03:02 [transform_engine] {"stage_name":"transform_engine","events_processed":603,"events_dropped":0,"avg_latency_ms":357.8321095943454,"throughput_eps":0,"last_update":"2026-03-22T11:02:57.59770307Z"} +2026/03/22 11:03:02 ───────────────────────────────────────────────── +2026/03/22 11:03:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:03:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:03:02.377367682Z"} +2026/03/22 11:03:07 [detection_layer] {"stage_name":"detection_layer","events_processed":603,"events_dropped":0,"avg_latency_ms":18.254400384188976,"throughput_eps":0,"last_update":"2026-03-22T11:03:02.479491681Z"} +2026/03/22 11:03:07 [transform_engine] {"stage_name":"transform_engine","events_processed":603,"events_dropped":0,"avg_latency_ms":357.8321095943454,"throughput_eps":0,"last_update":"2026-03-22T11:03:02.479533561Z"} +2026/03/22 11:03:07 [log_collector] {"stage_name":"log_collector","events_processed":28489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5697.8,"last_update":"2026-03-22T11:03:02.368619979Z"} +2026/03/22 11:03:07 [metric_collector] {"stage_name":"metric_collector","events_processed":18094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3618.8,"last_update":"2026-03-22T11:03:02.369047518Z"} +2026/03/22 11:03:07 ───────────────────────────────────────────────── +2026/03/22 11:03:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:03:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:03:07.376236577Z"} +2026/03/22 11:03:12 [detection_layer] {"stage_name":"detection_layer","events_processed":603,"events_dropped":0,"avg_latency_ms":18.254400384188976,"throughput_eps":0,"last_update":"2026-03-22T11:03:07.47954256Z"} +2026/03/22 11:03:12 [transform_engine] {"stage_name":"transform_engine","events_processed":603,"events_dropped":0,"avg_latency_ms":357.8321095943454,"throughput_eps":0,"last_update":"2026-03-22T11:03:07.479514567Z"} +2026/03/22 11:03:12 [log_collector] {"stage_name":"log_collector","events_processed":28489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5697.8,"last_update":"2026-03-22T11:03:12.368189083Z"} +2026/03/22 11:03:12 [metric_collector] {"stage_name":"metric_collector","events_processed":18099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3619.8,"last_update":"2026-03-22T11:03:07.368309937Z"} +2026/03/22 11:03:12 ───────────────────────────────────────────────── +2026/03/22 11:03:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:03:17 [log_collector] {"stage_name":"log_collector","events_processed":28489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5697.8,"last_update":"2026-03-22T11:03:12.368189083Z"} +2026/03/22 11:03:17 [metric_collector] {"stage_name":"metric_collector","events_processed":18104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3620.8,"last_update":"2026-03-22T11:03:12.369022028Z"} +2026/03/22 11:03:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:03:12.378117948Z"} +2026/03/22 11:03:17 [detection_layer] {"stage_name":"detection_layer","events_processed":603,"events_dropped":0,"avg_latency_ms":18.254400384188976,"throughput_eps":0,"last_update":"2026-03-22T11:03:12.479367703Z"} +2026/03/22 11:03:17 [transform_engine] {"stage_name":"transform_engine","events_processed":603,"events_dropped":0,"avg_latency_ms":357.8321095943454,"throughput_eps":0,"last_update":"2026-03-22T11:03:12.479453397Z"} +2026/03/22 11:03:17 ───────────────────────────────────────────────── +2026/03/22 11:03:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:03:22 [log_collector] {"stage_name":"log_collector","events_processed":28489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5697.8,"last_update":"2026-03-22T11:03:17.368477644Z"} +2026/03/22 11:03:22 [metric_collector] {"stage_name":"metric_collector","events_processed":18109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3621.8,"last_update":"2026-03-22T11:03:17.368610318Z"} +2026/03/22 11:03:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7246,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:03:17.375449757Z"} +2026/03/22 11:03:22 [detection_layer] {"stage_name":"detection_layer","events_processed":603,"events_dropped":0,"avg_latency_ms":18.254400384188976,"throughput_eps":0,"last_update":"2026-03-22T11:03:17.479675192Z"} +2026/03/22 11:03:22 [transform_engine] {"stage_name":"transform_engine","events_processed":603,"events_dropped":0,"avg_latency_ms":357.8321095943454,"throughput_eps":0,"last_update":"2026-03-22T11:03:17.479707764Z"} +2026/03/22 11:03:22 ───────────────────────────────────────────────── +2026/03/22 11:03:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:03:27 [log_collector] {"stage_name":"log_collector","events_processed":28489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5697.8,"last_update":"2026-03-22T11:03:27.368668529Z"} +2026/03/22 11:03:27 [metric_collector] {"stage_name":"metric_collector","events_processed":18114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3622.8,"last_update":"2026-03-22T11:03:22.369211433Z"} +2026/03/22 11:03:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:03:22.375300514Z"} +2026/03/22 11:03:27 [detection_layer] {"stage_name":"detection_layer","events_processed":603,"events_dropped":0,"avg_latency_ms":18.254400384188976,"throughput_eps":0,"last_update":"2026-03-22T11:03:22.479662521Z"} +2026/03/22 11:03:27 [transform_engine] {"stage_name":"transform_engine","events_processed":603,"events_dropped":0,"avg_latency_ms":357.8321095943454,"throughput_eps":0,"last_update":"2026-03-22T11:03:22.479552419Z"} +2026/03/22 11:03:27 ───────────────────────────────────────────────── +2026/03/22 11:03:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:03:32 [log_collector] {"stage_name":"log_collector","events_processed":28489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5697.8,"last_update":"2026-03-22T11:03:32.368292418Z"} +2026/03/22 11:03:32 [metric_collector] {"stage_name":"metric_collector","events_processed":18119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3623.8,"last_update":"2026-03-22T11:03:27.369721105Z"} +2026/03/22 11:03:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:03:27.379140014Z"} +2026/03/22 11:03:32 [detection_layer] {"stage_name":"detection_layer","events_processed":603,"events_dropped":0,"avg_latency_ms":18.254400384188976,"throughput_eps":0,"last_update":"2026-03-22T11:03:27.47937102Z"} +2026/03/22 11:03:32 [transform_engine] {"stage_name":"transform_engine","events_processed":604,"events_dropped":0,"avg_latency_ms":301.57111547547635,"throughput_eps":0,"last_update":"2026-03-22T11:03:27.555921463Z"} +2026/03/22 11:03:32 ───────────────────────────────────────────────── +2026/03/22 11:03:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:03:37 [log_collector] {"stage_name":"log_collector","events_processed":28489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5697.8,"last_update":"2026-03-22T11:03:32.368292418Z"} +2026/03/22 11:03:37 [metric_collector] {"stage_name":"metric_collector","events_processed":18124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3624.8,"last_update":"2026-03-22T11:03:32.369025292Z"} +2026/03/22 11:03:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:03:32.377705877Z"} +2026/03/22 11:03:37 [detection_layer] {"stage_name":"detection_layer","events_processed":604,"events_dropped":0,"avg_latency_ms":19.000272707351183,"throughput_eps":0,"last_update":"2026-03-22T11:03:32.480006816Z"} +2026/03/22 11:03:37 [transform_engine] {"stage_name":"transform_engine","events_processed":604,"events_dropped":0,"avg_latency_ms":301.57111547547635,"throughput_eps":0,"last_update":"2026-03-22T11:03:32.47887016Z"} +2026/03/22 11:03:37 ───────────────────────────────────────────────── +2026/03/22 11:03:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:03:42 [log_collector] {"stage_name":"log_collector","events_processed":28489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5697.8,"last_update":"2026-03-22T11:03:37.368120441Z"} +2026/03/22 11:03:42 [metric_collector] {"stage_name":"metric_collector","events_processed":18129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3625.8,"last_update":"2026-03-22T11:03:37.368739938Z"} +2026/03/22 11:03:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:03:37.377514783Z"} +2026/03/22 11:03:42 [detection_layer] {"stage_name":"detection_layer","events_processed":604,"events_dropped":0,"avg_latency_ms":19.000272707351183,"throughput_eps":0,"last_update":"2026-03-22T11:03:37.479722524Z"} +2026/03/22 11:03:42 [transform_engine] {"stage_name":"transform_engine","events_processed":604,"events_dropped":0,"avg_latency_ms":301.57111547547635,"throughput_eps":0,"last_update":"2026-03-22T11:03:37.479733264Z"} +2026/03/22 11:03:42 ───────────────────────────────────────────────── +2026/03/22 11:03:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:03:47 [transform_engine] {"stage_name":"transform_engine","events_processed":604,"events_dropped":0,"avg_latency_ms":301.57111547547635,"throughput_eps":0,"last_update":"2026-03-22T11:03:42.479267437Z"} +2026/03/22 11:03:47 [log_collector] {"stage_name":"log_collector","events_processed":28489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5697.8,"last_update":"2026-03-22T11:03:42.368555109Z"} +2026/03/22 11:03:47 [metric_collector] {"stage_name":"metric_collector","events_processed":18134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3626.8,"last_update":"2026-03-22T11:03:42.369109881Z"} +2026/03/22 11:03:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:03:42.378033851Z"} +2026/03/22 11:03:47 [detection_layer] {"stage_name":"detection_layer","events_processed":604,"events_dropped":0,"avg_latency_ms":19.000272707351183,"throughput_eps":0,"last_update":"2026-03-22T11:03:42.479255214Z"} +2026/03/22 11:03:47 ───────────────────────────────────────────────── +2026/03/22 11:03:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:03:52 [log_collector] {"stage_name":"log_collector","events_processed":28489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5697.8,"last_update":"2026-03-22T11:03:47.369003082Z"} +2026/03/22 11:03:52 [metric_collector] {"stage_name":"metric_collector","events_processed":18139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3627.8,"last_update":"2026-03-22T11:03:47.369368252Z"} +2026/03/22 11:03:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:03:47.379017542Z"} +2026/03/22 11:03:52 [detection_layer] {"stage_name":"detection_layer","events_processed":604,"events_dropped":0,"avg_latency_ms":19.000272707351183,"throughput_eps":0,"last_update":"2026-03-22T11:03:47.479261042Z"} +2026/03/22 11:03:52 [transform_engine] {"stage_name":"transform_engine","events_processed":604,"events_dropped":0,"avg_latency_ms":301.57111547547635,"throughput_eps":0,"last_update":"2026-03-22T11:03:47.479272744Z"} +2026/03/22 11:03:52 ───────────────────────────────────────────────── +Saved state: 14 clusters, 28490 messages, reason: none +2026/03/22 11:03:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:03:57 [detection_layer] {"stage_name":"detection_layer","events_processed":604,"events_dropped":0,"avg_latency_ms":19.000272707351183,"throughput_eps":0,"last_update":"2026-03-22T11:03:52.479245894Z"} +2026/03/22 11:03:57 [transform_engine] {"stage_name":"transform_engine","events_processed":604,"events_dropped":0,"avg_latency_ms":301.57111547547635,"throughput_eps":0,"last_update":"2026-03-22T11:03:52.479257015Z"} +2026/03/22 11:03:57 [log_collector] {"stage_name":"log_collector","events_processed":28489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5697.8,"last_update":"2026-03-22T11:03:52.368221015Z"} +2026/03/22 11:03:57 [metric_collector] {"stage_name":"metric_collector","events_processed":18144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3628.8,"last_update":"2026-03-22T11:03:52.368537682Z"} +2026/03/22 11:03:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:03:52.378052384Z"} +2026/03/22 11:03:57 ───────────────────────────────────────────────── +2026/03/22 11:04:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:04:02 [transform_engine] {"stage_name":"transform_engine","events_processed":605,"events_dropped":0,"avg_latency_ms":263.3882711803811,"throughput_eps":0,"last_update":"2026-03-22T11:03:57.590109345Z"} +2026/03/22 11:04:02 [log_collector] {"stage_name":"log_collector","events_processed":28492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5698.4,"last_update":"2026-03-22T11:03:57.368109073Z"} +2026/03/22 11:04:02 [metric_collector] {"stage_name":"metric_collector","events_processed":18149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3629.8,"last_update":"2026-03-22T11:03:57.368753728Z"} +2026/03/22 11:04:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:03:57.379319703Z"} +2026/03/22 11:04:02 [detection_layer] {"stage_name":"detection_layer","events_processed":604,"events_dropped":0,"avg_latency_ms":19.000272707351183,"throughput_eps":0,"last_update":"2026-03-22T11:03:57.479439977Z"} +2026/03/22 11:04:02 ───────────────────────────────────────────────── +2026/03/22 11:04:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:04:07 [metric_collector] {"stage_name":"metric_collector","events_processed":18154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3630.8,"last_update":"2026-03-22T11:04:02.368458747Z"} +2026/03/22 11:04:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:04:02.377595676Z"} +2026/03/22 11:04:07 [detection_layer] {"stage_name":"detection_layer","events_processed":605,"events_dropped":0,"avg_latency_ms":18.24821356588095,"throughput_eps":0,"last_update":"2026-03-22T11:04:02.479752561Z"} +2026/03/22 11:04:07 [transform_engine] {"stage_name":"transform_engine","events_processed":605,"events_dropped":0,"avg_latency_ms":263.3882711803811,"throughput_eps":0,"last_update":"2026-03-22T11:04:02.479765576Z"} +2026/03/22 11:04:07 [log_collector] {"stage_name":"log_collector","events_processed":28503,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5700.6,"last_update":"2026-03-22T11:04:02.36819886Z"} +2026/03/22 11:04:07 ───────────────────────────────────────────────── +2026/03/22 11:04:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:04:12 [log_collector] {"stage_name":"log_collector","events_processed":28503,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5700.6,"last_update":"2026-03-22T11:04:12.367970586Z"} +2026/03/22 11:04:12 [metric_collector] {"stage_name":"metric_collector","events_processed":18159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3631.8,"last_update":"2026-03-22T11:04:07.368478822Z"} +2026/03/22 11:04:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:04:07.377660897Z"} +2026/03/22 11:04:12 [detection_layer] {"stage_name":"detection_layer","events_processed":605,"events_dropped":0,"avg_latency_ms":18.24821356588095,"throughput_eps":0,"last_update":"2026-03-22T11:04:07.479859262Z"} +2026/03/22 11:04:12 [transform_engine] {"stage_name":"transform_engine","events_processed":605,"events_dropped":0,"avg_latency_ms":263.3882711803811,"throughput_eps":0,"last_update":"2026-03-22T11:04:07.479868941Z"} +2026/03/22 11:04:12 ───────────────────────────────────────────────── +2026/03/22 11:04:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:04:17 [metric_collector] {"stage_name":"metric_collector","events_processed":18164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3632.8,"last_update":"2026-03-22T11:04:12.368321118Z"} +2026/03/22 11:04:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:04:12.377117013Z"} +2026/03/22 11:04:17 [detection_layer] {"stage_name":"detection_layer","events_processed":605,"events_dropped":0,"avg_latency_ms":18.24821356588095,"throughput_eps":0,"last_update":"2026-03-22T11:04:12.47988523Z"} +2026/03/22 11:04:17 [transform_engine] {"stage_name":"transform_engine","events_processed":605,"events_dropped":0,"avg_latency_ms":263.3882711803811,"throughput_eps":0,"last_update":"2026-03-22T11:04:12.47990138Z"} +2026/03/22 11:04:17 [log_collector] {"stage_name":"log_collector","events_processed":28503,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5700.6,"last_update":"2026-03-22T11:04:12.367970586Z"} +2026/03/22 11:04:17 ───────────────────────────────────────────────── +2026/03/22 11:04:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:04:22 [log_collector] {"stage_name":"log_collector","events_processed":28503,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5700.6,"last_update":"2026-03-22T11:04:17.369149474Z"} +2026/03/22 11:04:22 [metric_collector] {"stage_name":"metric_collector","events_processed":18169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3633.8,"last_update":"2026-03-22T11:04:17.369488524Z"} +2026/03/22 11:04:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:04:17.378170981Z"} +2026/03/22 11:04:22 [detection_layer] {"stage_name":"detection_layer","events_processed":605,"events_dropped":0,"avg_latency_ms":18.24821356588095,"throughput_eps":0,"last_update":"2026-03-22T11:04:17.479400662Z"} +2026/03/22 11:04:22 [transform_engine] {"stage_name":"transform_engine","events_processed":605,"events_dropped":0,"avg_latency_ms":263.3882711803811,"throughput_eps":0,"last_update":"2026-03-22T11:04:17.479413155Z"} +2026/03/22 11:04:22 ───────────────────────────────────────────────── +2026/03/22 11:04:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:04:27 [log_collector] {"stage_name":"log_collector","events_processed":28503,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5700.6,"last_update":"2026-03-22T11:04:27.368637519Z"} +2026/03/22 11:04:27 [metric_collector] {"stage_name":"metric_collector","events_processed":18174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3634.8,"last_update":"2026-03-22T11:04:22.36847728Z"} +2026/03/22 11:04:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:04:22.376509122Z"} +2026/03/22 11:04:27 [detection_layer] {"stage_name":"detection_layer","events_processed":605,"events_dropped":0,"avg_latency_ms":18.24821356588095,"throughput_eps":0,"last_update":"2026-03-22T11:04:22.47976905Z"} +2026/03/22 11:04:27 [transform_engine] {"stage_name":"transform_engine","events_processed":605,"events_dropped":0,"avg_latency_ms":263.3882711803811,"throughput_eps":0,"last_update":"2026-03-22T11:04:22.479782496Z"} +2026/03/22 11:04:27 ───────────────────────────────────────────────── +2026/03/22 11:04:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:04:32 [transform_engine] {"stage_name":"transform_engine","events_processed":606,"events_dropped":0,"avg_latency_ms":236.3482007443049,"throughput_eps":0,"last_update":"2026-03-22T11:04:27.60773539Z"} +2026/03/22 11:04:32 [log_collector] {"stage_name":"log_collector","events_processed":28503,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5700.6,"last_update":"2026-03-22T11:04:27.368637519Z"} +2026/03/22 11:04:32 [metric_collector] {"stage_name":"metric_collector","events_processed":18179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3635.8,"last_update":"2026-03-22T11:04:27.368957832Z"} +2026/03/22 11:04:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:04:27.378385077Z"} +2026/03/22 11:04:32 [detection_layer] {"stage_name":"detection_layer","events_processed":605,"events_dropped":0,"avg_latency_ms":18.24821356588095,"throughput_eps":0,"last_update":"2026-03-22T11:04:27.479537851Z"} +2026/03/22 11:04:32 ───────────────────────────────────────────────── +2026/03/22 11:04:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:04:37 [metric_collector] {"stage_name":"metric_collector","events_processed":18184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3636.8,"last_update":"2026-03-22T11:04:32.369030096Z"} +2026/03/22 11:04:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7276,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:04:32.379796185Z"} +2026/03/22 11:04:37 [detection_layer] {"stage_name":"detection_layer","events_processed":606,"events_dropped":0,"avg_latency_ms":19.51329125270476,"throughput_eps":0,"last_update":"2026-03-22T11:04:32.478994284Z"} +2026/03/22 11:04:37 [transform_engine] {"stage_name":"transform_engine","events_processed":606,"events_dropped":0,"avg_latency_ms":236.3482007443049,"throughput_eps":0,"last_update":"2026-03-22T11:04:32.479010937Z"} +2026/03/22 11:04:37 [log_collector] {"stage_name":"log_collector","events_processed":28503,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5700.6,"last_update":"2026-03-22T11:04:32.368686828Z"} +2026/03/22 11:04:37 ───────────────────────────────────────────────── +2026/03/22 11:04:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:04:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:04:37.38044286Z"} +2026/03/22 11:04:42 [detection_layer] {"stage_name":"detection_layer","events_processed":606,"events_dropped":0,"avg_latency_ms":19.51329125270476,"throughput_eps":0,"last_update":"2026-03-22T11:04:37.47977665Z"} +2026/03/22 11:04:42 [transform_engine] {"stage_name":"transform_engine","events_processed":606,"events_dropped":0,"avg_latency_ms":236.3482007443049,"throughput_eps":0,"last_update":"2026-03-22T11:04:37.479790216Z"} +2026/03/22 11:04:42 [log_collector] {"stage_name":"log_collector","events_processed":28503,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5700.6,"last_update":"2026-03-22T11:04:37.368019317Z"} +2026/03/22 11:04:42 [metric_collector] {"stage_name":"metric_collector","events_processed":18189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3637.8,"last_update":"2026-03-22T11:04:37.368726271Z"} +2026/03/22 11:04:42 ───────────────────────────────────────────────── +2026/03/22 11:04:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:04:47 [log_collector] {"stage_name":"log_collector","events_processed":28503,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5700.6,"last_update":"2026-03-22T11:04:47.368382711Z"} +2026/03/22 11:04:47 [metric_collector] {"stage_name":"metric_collector","events_processed":18199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3639.8,"last_update":"2026-03-22T11:04:47.368296936Z"} +2026/03/22 11:04:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:04:42.378657619Z"} +2026/03/22 11:04:47 [detection_layer] {"stage_name":"detection_layer","events_processed":606,"events_dropped":0,"avg_latency_ms":19.51329125270476,"throughput_eps":0,"last_update":"2026-03-22T11:04:42.479001584Z"} +2026/03/22 11:04:47 [transform_engine] {"stage_name":"transform_engine","events_processed":606,"events_dropped":0,"avg_latency_ms":236.3482007443049,"throughput_eps":0,"last_update":"2026-03-22T11:04:42.478878098Z"} +2026/03/22 11:04:47 ───────────────────────────────────────────────── +2026/03/22 11:04:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:04:52 [transform_engine] {"stage_name":"transform_engine","events_processed":606,"events_dropped":0,"avg_latency_ms":236.3482007443049,"throughput_eps":0,"last_update":"2026-03-22T11:04:47.479857363Z"} +2026/03/22 11:04:52 [log_collector] {"stage_name":"log_collector","events_processed":28503,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5700.6,"last_update":"2026-03-22T11:04:47.368382711Z"} +2026/03/22 11:04:52 [metric_collector] {"stage_name":"metric_collector","events_processed":18199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3639.8,"last_update":"2026-03-22T11:04:47.368296936Z"} +2026/03/22 11:04:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:04:47.377565497Z"} +2026/03/22 11:04:52 [detection_layer] {"stage_name":"detection_layer","events_processed":606,"events_dropped":0,"avg_latency_ms":19.51329125270476,"throughput_eps":0,"last_update":"2026-03-22T11:04:47.479845311Z"} +2026/03/22 11:04:52 ───────────────────────────────────────────────── +2026/03/22 11:04:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:04:57 [metric_collector] {"stage_name":"metric_collector","events_processed":18204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3640.8,"last_update":"2026-03-22T11:04:52.368288271Z"} +2026/03/22 11:04:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:04:52.375265132Z"} +2026/03/22 11:04:57 [detection_layer] {"stage_name":"detection_layer","events_processed":606,"events_dropped":0,"avg_latency_ms":19.51329125270476,"throughput_eps":0,"last_update":"2026-03-22T11:04:52.479495482Z"} +2026/03/22 11:04:57 [transform_engine] {"stage_name":"transform_engine","events_processed":606,"events_dropped":0,"avg_latency_ms":236.3482007443049,"throughput_eps":0,"last_update":"2026-03-22T11:04:52.479508175Z"} +2026/03/22 11:04:57 [log_collector] {"stage_name":"log_collector","events_processed":28503,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5700.6,"last_update":"2026-03-22T11:04:52.368033082Z"} +2026/03/22 11:04:57 ───────────────────────────────────────────────── +2026/03/22 11:05:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:05:02 [metric_collector] {"stage_name":"metric_collector","events_processed":18209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3641.8,"last_update":"2026-03-22T11:04:57.368295196Z"} +2026/03/22 11:05:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7286,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:04:57.379179722Z"} +2026/03/22 11:05:02 [detection_layer] {"stage_name":"detection_layer","events_processed":606,"events_dropped":0,"avg_latency_ms":19.51329125270476,"throughput_eps":0,"last_update":"2026-03-22T11:04:57.479418306Z"} +2026/03/22 11:05:02 [transform_engine] {"stage_name":"transform_engine","events_processed":607,"events_dropped":0,"avg_latency_ms":203.82093879544394,"throughput_eps":0,"last_update":"2026-03-22T11:04:57.553143983Z"} +2026/03/22 11:05:02 [log_collector] {"stage_name":"log_collector","events_processed":28503,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5700.6,"last_update":"2026-03-22T11:05:02.368335947Z"} +2026/03/22 11:05:02 ───────────────────────────────────────────────── +Saved state: 14 clusters, 28504 messages, reason: none +2026/03/22 11:05:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:05:07 [log_collector] {"stage_name":"log_collector","events_processed":28503,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5700.6,"last_update":"2026-03-22T11:05:02.368335947Z"} +2026/03/22 11:05:07 [metric_collector] {"stage_name":"metric_collector","events_processed":18214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3642.8,"last_update":"2026-03-22T11:05:02.368677632Z"} +2026/03/22 11:05:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:05:02.376950045Z"} +2026/03/22 11:05:07 [detection_layer] {"stage_name":"detection_layer","events_processed":607,"events_dropped":0,"avg_latency_ms":19.997735002163807,"throughput_eps":0,"last_update":"2026-03-22T11:05:02.479177679Z"} +2026/03/22 11:05:07 [transform_engine] {"stage_name":"transform_engine","events_processed":607,"events_dropped":0,"avg_latency_ms":203.82093879544394,"throughput_eps":0,"last_update":"2026-03-22T11:05:02.479189582Z"} +2026/03/22 11:05:07 ───────────────────────────────────────────────── +2026/03/22 11:05:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:05:12 [log_collector] {"stage_name":"log_collector","events_processed":28508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5701.6,"last_update":"2026-03-22T11:05:07.369130863Z"} +2026/03/22 11:05:12 [metric_collector] {"stage_name":"metric_collector","events_processed":18219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3643.8,"last_update":"2026-03-22T11:05:07.369116536Z"} +2026/03/22 11:05:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:05:07.374989423Z"} +2026/03/22 11:05:12 [detection_layer] {"stage_name":"detection_layer","events_processed":607,"events_dropped":0,"avg_latency_ms":19.997735002163807,"throughput_eps":0,"last_update":"2026-03-22T11:05:07.479211517Z"} +2026/03/22 11:05:12 [transform_engine] {"stage_name":"transform_engine","events_processed":607,"events_dropped":0,"avg_latency_ms":203.82093879544394,"throughput_eps":0,"last_update":"2026-03-22T11:05:07.479227258Z"} +2026/03/22 11:05:12 ───────────────────────────────────────────────── +2026/03/22 11:05:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:05:17 [transform_engine] {"stage_name":"transform_engine","events_processed":607,"events_dropped":0,"avg_latency_ms":203.82093879544394,"throughput_eps":0,"last_update":"2026-03-22T11:05:12.479358833Z"} +2026/03/22 11:05:17 [log_collector] {"stage_name":"log_collector","events_processed":28508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5701.6,"last_update":"2026-03-22T11:05:12.368694922Z"} +2026/03/22 11:05:17 [metric_collector] {"stage_name":"metric_collector","events_processed":18224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3644.8,"last_update":"2026-03-22T11:05:12.369158019Z"} +2026/03/22 11:05:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:05:12.377126831Z"} +2026/03/22 11:05:17 [detection_layer] {"stage_name":"detection_layer","events_processed":607,"events_dropped":0,"avg_latency_ms":19.997735002163807,"throughput_eps":0,"last_update":"2026-03-22T11:05:12.479333986Z"} +2026/03/22 11:05:17 ───────────────────────────────────────────────── +2026/03/22 11:05:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:05:22 [transform_engine] {"stage_name":"transform_engine","events_processed":607,"events_dropped":0,"avg_latency_ms":203.82093879544394,"throughput_eps":0,"last_update":"2026-03-22T11:05:17.478860222Z"} +2026/03/22 11:05:22 [log_collector] {"stage_name":"log_collector","events_processed":28508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5701.6,"last_update":"2026-03-22T11:05:17.368391656Z"} +2026/03/22 11:05:22 [metric_collector] {"stage_name":"metric_collector","events_processed":18229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3645.8,"last_update":"2026-03-22T11:05:17.368225577Z"} +2026/03/22 11:05:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:05:17.378683396Z"} +2026/03/22 11:05:22 [detection_layer] {"stage_name":"detection_layer","events_processed":607,"events_dropped":0,"avg_latency_ms":19.997735002163807,"throughput_eps":0,"last_update":"2026-03-22T11:05:17.479990517Z"} +2026/03/22 11:05:22 ───────────────────────────────────────────────── +2026/03/22 11:05:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:05:27 [log_collector] {"stage_name":"log_collector","events_processed":28508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5701.6,"last_update":"2026-03-22T11:05:22.368635897Z"} +2026/03/22 11:05:27 [metric_collector] {"stage_name":"metric_collector","events_processed":18234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3646.8,"last_update":"2026-03-22T11:05:22.368755486Z"} +2026/03/22 11:05:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:05:22.376645095Z"} +2026/03/22 11:05:27 [detection_layer] {"stage_name":"detection_layer","events_processed":607,"events_dropped":0,"avg_latency_ms":19.997735002163807,"throughput_eps":0,"last_update":"2026-03-22T11:05:22.479912301Z"} +2026/03/22 11:05:27 [transform_engine] {"stage_name":"transform_engine","events_processed":607,"events_dropped":0,"avg_latency_ms":203.82093879544394,"throughput_eps":0,"last_update":"2026-03-22T11:05:22.479926278Z"} +2026/03/22 11:05:27 ───────────────────────────────────────────────── +2026/03/22 11:05:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:05:32 [detection_layer] {"stage_name":"detection_layer","events_processed":607,"events_dropped":0,"avg_latency_ms":19.997735002163807,"throughput_eps":0,"last_update":"2026-03-22T11:05:27.479305162Z"} +2026/03/22 11:05:32 [transform_engine] {"stage_name":"transform_engine","events_processed":608,"events_dropped":0,"avg_latency_ms":197.06573843635516,"throughput_eps":0,"last_update":"2026-03-22T11:05:27.649373474Z"} +2026/03/22 11:05:32 [log_collector] {"stage_name":"log_collector","events_processed":28508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5701.6,"last_update":"2026-03-22T11:05:27.36854163Z"} +2026/03/22 11:05:32 [metric_collector] {"stage_name":"metric_collector","events_processed":18239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3647.8,"last_update":"2026-03-22T11:05:27.368783363Z"} +2026/03/22 11:05:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:05:27.381113658Z"} +2026/03/22 11:05:32 ───────────────────────────────────────────────── +2026/03/22 11:05:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:05:37 [transform_engine] {"stage_name":"transform_engine","events_processed":608,"events_dropped":0,"avg_latency_ms":197.06573843635516,"throughput_eps":0,"last_update":"2026-03-22T11:05:32.479624479Z"} +2026/03/22 11:05:37 [log_collector] {"stage_name":"log_collector","events_processed":28508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5701.6,"last_update":"2026-03-22T11:05:37.368407023Z"} +2026/03/22 11:05:37 [metric_collector] {"stage_name":"metric_collector","events_processed":18244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3648.8,"last_update":"2026-03-22T11:05:32.368934107Z"} +2026/03/22 11:05:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:05:32.379387858Z"} +2026/03/22 11:05:37 [detection_layer] {"stage_name":"detection_layer","events_processed":608,"events_dropped":0,"avg_latency_ms":18.658278401731046,"throughput_eps":0,"last_update":"2026-03-22T11:05:32.47959895Z"} +2026/03/22 11:05:37 ───────────────────────────────────────────────── +2026/03/22 11:05:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:05:42 [log_collector] {"stage_name":"log_collector","events_processed":28508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5701.6,"last_update":"2026-03-22T11:05:37.368407023Z"} +2026/03/22 11:05:42 [metric_collector] {"stage_name":"metric_collector","events_processed":18249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3649.8,"last_update":"2026-03-22T11:05:37.36872368Z"} +2026/03/22 11:05:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:05:37.376602048Z"} +2026/03/22 11:05:42 [detection_layer] {"stage_name":"detection_layer","events_processed":608,"events_dropped":0,"avg_latency_ms":18.658278401731046,"throughput_eps":0,"last_update":"2026-03-22T11:05:37.479793008Z"} +2026/03/22 11:05:42 [transform_engine] {"stage_name":"transform_engine","events_processed":608,"events_dropped":0,"avg_latency_ms":197.06573843635516,"throughput_eps":0,"last_update":"2026-03-22T11:05:37.479811363Z"} +2026/03/22 11:05:42 ───────────────────────────────────────────────── +2026/03/22 11:05:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:05:47 [metric_collector] {"stage_name":"metric_collector","events_processed":18254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3650.8,"last_update":"2026-03-22T11:05:42.368195834Z"} +2026/03/22 11:05:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:05:42.375482429Z"} +2026/03/22 11:05:47 [detection_layer] {"stage_name":"detection_layer","events_processed":608,"events_dropped":0,"avg_latency_ms":18.658278401731046,"throughput_eps":0,"last_update":"2026-03-22T11:05:42.479799586Z"} +2026/03/22 11:05:47 [transform_engine] {"stage_name":"transform_engine","events_processed":608,"events_dropped":0,"avg_latency_ms":197.06573843635516,"throughput_eps":0,"last_update":"2026-03-22T11:05:42.479760231Z"} +2026/03/22 11:05:47 [log_collector] {"stage_name":"log_collector","events_processed":28508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5701.6,"last_update":"2026-03-22T11:05:42.368130159Z"} +2026/03/22 11:05:47 ───────────────────────────────────────────────── +2026/03/22 11:05:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:05:52 [log_collector] {"stage_name":"log_collector","events_processed":28511,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5702.2,"last_update":"2026-03-22T11:05:47.36815914Z"} +2026/03/22 11:05:52 [metric_collector] {"stage_name":"metric_collector","events_processed":18259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3651.8,"last_update":"2026-03-22T11:05:47.368273528Z"} +2026/03/22 11:05:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:05:47.373976661Z"} +2026/03/22 11:05:52 [detection_layer] {"stage_name":"detection_layer","events_processed":608,"events_dropped":0,"avg_latency_ms":18.658278401731046,"throughput_eps":0,"last_update":"2026-03-22T11:05:47.479218359Z"} +2026/03/22 11:05:52 [transform_engine] {"stage_name":"transform_engine","events_processed":608,"events_dropped":0,"avg_latency_ms":197.06573843635516,"throughput_eps":0,"last_update":"2026-03-22T11:05:47.479191558Z"} +2026/03/22 11:05:52 ───────────────────────────────────────────────── +2026/03/22 11:05:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:05:57 [log_collector] {"stage_name":"log_collector","events_processed":28519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5703.8,"last_update":"2026-03-22T11:05:52.368090415Z"} +2026/03/22 11:05:57 [metric_collector] {"stage_name":"metric_collector","events_processed":18264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3652.8,"last_update":"2026-03-22T11:05:52.368654785Z"} +2026/03/22 11:05:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:05:52.37707977Z"} +2026/03/22 11:05:57 [detection_layer] {"stage_name":"detection_layer","events_processed":608,"events_dropped":0,"avg_latency_ms":18.658278401731046,"throughput_eps":0,"last_update":"2026-03-22T11:05:52.479492831Z"} +2026/03/22 11:05:57 [transform_engine] {"stage_name":"transform_engine","events_processed":608,"events_dropped":0,"avg_latency_ms":197.06573843635516,"throughput_eps":0,"last_update":"2026-03-22T11:05:52.47946036Z"} +2026/03/22 11:05:57 ───────────────────────────────────────────────── +2026/03/22 11:06:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:06:02 [log_collector] {"stage_name":"log_collector","events_processed":28829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5765.8,"last_update":"2026-03-22T11:05:57.368663576Z"} +2026/03/22 11:06:02 [metric_collector] {"stage_name":"metric_collector","events_processed":18269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3653.8,"last_update":"2026-03-22T11:05:57.369013096Z"} +2026/03/22 11:06:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:05:57.375231866Z"} +2026/03/22 11:06:02 [detection_layer] {"stage_name":"detection_layer","events_processed":608,"events_dropped":0,"avg_latency_ms":18.658278401731046,"throughput_eps":0,"last_update":"2026-03-22T11:05:57.479494049Z"} +2026/03/22 11:06:02 [transform_engine] {"stage_name":"transform_engine","events_processed":609,"events_dropped":0,"avg_latency_ms":180.48617174908415,"throughput_eps":0,"last_update":"2026-03-22T11:05:57.593683052Z"} +2026/03/22 11:06:02 ───────────────────────────────────────────────── +2026/03/22 11:06:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:06:07 [log_collector] {"stage_name":"log_collector","events_processed":28872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5774.4,"last_update":"2026-03-22T11:06:02.368504786Z"} +2026/03/22 11:06:07 [metric_collector] {"stage_name":"metric_collector","events_processed":18274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3654.8,"last_update":"2026-03-22T11:06:02.36879429Z"} +2026/03/22 11:06:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:06:02.378133668Z"} +2026/03/22 11:06:07 [detection_layer] {"stage_name":"detection_layer","events_processed":609,"events_dropped":0,"avg_latency_ms":17.543678721384836,"throughput_eps":0,"last_update":"2026-03-22T11:06:02.479471761Z"} +2026/03/22 11:06:07 [transform_engine] {"stage_name":"transform_engine","events_processed":609,"events_dropped":0,"avg_latency_ms":180.48617174908415,"throughput_eps":0,"last_update":"2026-03-22T11:06:02.479593454Z"} +2026/03/22 11:06:07 ───────────────────────────────────────────────── +2026/03/22 11:06:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:06:12 [log_collector] {"stage_name":"log_collector","events_processed":28872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5774.4,"last_update":"2026-03-22T11:06:07.369108467Z"} +2026/03/22 11:06:12 [metric_collector] {"stage_name":"metric_collector","events_processed":18279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3655.8,"last_update":"2026-03-22T11:06:07.369499296Z"} +2026/03/22 11:06:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:06:07.37824727Z"} +2026/03/22 11:06:12 [detection_layer] {"stage_name":"detection_layer","events_processed":609,"events_dropped":0,"avg_latency_ms":17.543678721384836,"throughput_eps":0,"last_update":"2026-03-22T11:06:07.479439212Z"} +2026/03/22 11:06:12 [transform_engine] {"stage_name":"transform_engine","events_processed":609,"events_dropped":0,"avg_latency_ms":180.48617174908415,"throughput_eps":0,"last_update":"2026-03-22T11:06:07.479489949Z"} +2026/03/22 11:06:12 ───────────────────────────────────────────────── +2026/03/22 11:06:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:06:17 [log_collector] {"stage_name":"log_collector","events_processed":28872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5774.4,"last_update":"2026-03-22T11:06:12.368012533Z"} +2026/03/22 11:06:17 [metric_collector] {"stage_name":"metric_collector","events_processed":18284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3656.8,"last_update":"2026-03-22T11:06:12.368312287Z"} +2026/03/22 11:06:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:06:12.375282005Z"} +2026/03/22 11:06:17 [detection_layer] {"stage_name":"detection_layer","events_processed":609,"events_dropped":0,"avg_latency_ms":17.543678721384836,"throughput_eps":0,"last_update":"2026-03-22T11:06:12.479481328Z"} +2026/03/22 11:06:17 [transform_engine] {"stage_name":"transform_engine","events_processed":609,"events_dropped":0,"avg_latency_ms":180.48617174908415,"throughput_eps":0,"last_update":"2026-03-22T11:06:12.479500976Z"} +2026/03/22 11:06:17 ───────────────────────────────────────────────── +2026/03/22 11:06:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:06:22 [metric_collector] {"stage_name":"metric_collector","events_processed":18289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3657.8,"last_update":"2026-03-22T11:06:17.36843194Z"} +2026/03/22 11:06:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:06:17.377782418Z"} +2026/03/22 11:06:22 [detection_layer] {"stage_name":"detection_layer","events_processed":609,"events_dropped":0,"avg_latency_ms":17.543678721384836,"throughput_eps":0,"last_update":"2026-03-22T11:06:17.479012985Z"} +2026/03/22 11:06:22 [transform_engine] {"stage_name":"transform_engine","events_processed":609,"events_dropped":0,"avg_latency_ms":180.48617174908415,"throughput_eps":0,"last_update":"2026-03-22T11:06:17.478988538Z"} +2026/03/22 11:06:22 [log_collector] {"stage_name":"log_collector","events_processed":28872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5774.4,"last_update":"2026-03-22T11:06:17.368190056Z"} +2026/03/22 11:06:22 ───────────────────────────────────────────────── +2026/03/22 11:06:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:06:27 [log_collector] {"stage_name":"log_collector","events_processed":28872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5774.4,"last_update":"2026-03-22T11:06:22.368205609Z"} +2026/03/22 11:06:27 [metric_collector] {"stage_name":"metric_collector","events_processed":18294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3658.8,"last_update":"2026-03-22T11:06:22.368562743Z"} +2026/03/22 11:06:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7320,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:06:22.375828228Z"} +2026/03/22 11:06:27 [detection_layer] {"stage_name":"detection_layer","events_processed":609,"events_dropped":0,"avg_latency_ms":17.543678721384836,"throughput_eps":0,"last_update":"2026-03-22T11:06:22.478950658Z"} +2026/03/22 11:06:27 [transform_engine] {"stage_name":"transform_engine","events_processed":609,"events_dropped":0,"avg_latency_ms":180.48617174908415,"throughput_eps":0,"last_update":"2026-03-22T11:06:22.478865385Z"} +2026/03/22 11:06:27 ───────────────────────────────────────────────── +2026/03/22 11:06:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:06:32 [detection_layer] {"stage_name":"detection_layer","events_processed":609,"events_dropped":0,"avg_latency_ms":17.543678721384836,"throughput_eps":0,"last_update":"2026-03-22T11:06:27.479048108Z"} +2026/03/22 11:06:32 [transform_engine] {"stage_name":"transform_engine","events_processed":610,"events_dropped":0,"avg_latency_ms":163.3011961992673,"throughput_eps":0,"last_update":"2026-03-22T11:06:27.573641072Z"} +2026/03/22 11:06:32 [log_collector] {"stage_name":"log_collector","events_processed":28872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5774.4,"last_update":"2026-03-22T11:06:27.368238483Z"} +2026/03/22 11:06:32 [metric_collector] {"stage_name":"metric_collector","events_processed":18299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3659.8,"last_update":"2026-03-22T11:06:27.368670911Z"} +2026/03/22 11:06:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:06:27.377827118Z"} +2026/03/22 11:06:32 ───────────────────────────────────────────────── +2026/03/22 11:06:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:06:37 [log_collector] {"stage_name":"log_collector","events_processed":28872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5774.4,"last_update":"2026-03-22T11:06:37.368140786Z"} +2026/03/22 11:06:37 [metric_collector] {"stage_name":"metric_collector","events_processed":18304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3660.8,"last_update":"2026-03-22T11:06:32.368241861Z"} +2026/03/22 11:06:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:06:32.377716427Z"} +2026/03/22 11:06:37 [detection_layer] {"stage_name":"detection_layer","events_processed":610,"events_dropped":0,"avg_latency_ms":18.70988057710787,"throughput_eps":0,"last_update":"2026-03-22T11:06:32.478972103Z"} +2026/03/22 11:06:37 [transform_engine] {"stage_name":"transform_engine","events_processed":610,"events_dropped":0,"avg_latency_ms":163.3011961992673,"throughput_eps":0,"last_update":"2026-03-22T11:06:32.478865749Z"} +2026/03/22 11:06:37 ───────────────────────────────────────────────── +2026/03/22 11:06:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:06:42 [log_collector] {"stage_name":"log_collector","events_processed":28872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5774.4,"last_update":"2026-03-22T11:06:37.368140786Z"} +2026/03/22 11:06:42 [metric_collector] {"stage_name":"metric_collector","events_processed":18309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3661.8,"last_update":"2026-03-22T11:06:37.36869097Z"} +2026/03/22 11:06:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:06:37.377820054Z"} +2026/03/22 11:06:42 [detection_layer] {"stage_name":"detection_layer","events_processed":610,"events_dropped":0,"avg_latency_ms":18.70988057710787,"throughput_eps":0,"last_update":"2026-03-22T11:06:37.479093684Z"} +2026/03/22 11:06:42 [transform_engine] {"stage_name":"transform_engine","events_processed":610,"events_dropped":0,"avg_latency_ms":163.3011961992673,"throughput_eps":0,"last_update":"2026-03-22T11:06:37.479053968Z"} +2026/03/22 11:06:42 ───────────────────────────────────────────────── +2026/03/22 11:06:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:06:47 [log_collector] {"stage_name":"log_collector","events_processed":28872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5774.4,"last_update":"2026-03-22T11:06:47.367978831Z"} +2026/03/22 11:06:47 [metric_collector] {"stage_name":"metric_collector","events_processed":18314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3662.8,"last_update":"2026-03-22T11:06:42.368914197Z"} +2026/03/22 11:06:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:06:42.379036513Z"} +2026/03/22 11:06:47 [detection_layer] {"stage_name":"detection_layer","events_processed":610,"events_dropped":0,"avg_latency_ms":18.70988057710787,"throughput_eps":0,"last_update":"2026-03-22T11:06:42.479407394Z"} +2026/03/22 11:06:47 [transform_engine] {"stage_name":"transform_engine","events_processed":610,"events_dropped":0,"avg_latency_ms":163.3011961992673,"throughput_eps":0,"last_update":"2026-03-22T11:06:42.479455747Z"} +2026/03/22 11:06:47 ───────────────────────────────────────────────── +2026/03/22 11:06:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:06:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7330,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:06:47.378307312Z"} +2026/03/22 11:06:52 [detection_layer] {"stage_name":"detection_layer","events_processed":610,"events_dropped":0,"avg_latency_ms":18.70988057710787,"throughput_eps":0,"last_update":"2026-03-22T11:06:47.47958455Z"} +2026/03/22 11:06:52 [transform_engine] {"stage_name":"transform_engine","events_processed":610,"events_dropped":0,"avg_latency_ms":163.3011961992673,"throughput_eps":0,"last_update":"2026-03-22T11:06:47.479691084Z"} +2026/03/22 11:06:52 [log_collector] {"stage_name":"log_collector","events_processed":28872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5774.4,"last_update":"2026-03-22T11:06:47.367978831Z"} +2026/03/22 11:06:52 [metric_collector] {"stage_name":"metric_collector","events_processed":18319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3663.8,"last_update":"2026-03-22T11:06:47.368415919Z"} +2026/03/22 11:06:52 ───────────────────────────────────────────────── +2026/03/22 11:06:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:06:57 [detection_layer] {"stage_name":"detection_layer","events_processed":610,"events_dropped":0,"avg_latency_ms":18.70988057710787,"throughput_eps":0,"last_update":"2026-03-22T11:06:52.479872837Z"} +2026/03/22 11:06:57 [transform_engine] {"stage_name":"transform_engine","events_processed":610,"events_dropped":0,"avg_latency_ms":163.3011961992673,"throughput_eps":0,"last_update":"2026-03-22T11:06:52.479817321Z"} +2026/03/22 11:06:57 [log_collector] {"stage_name":"log_collector","events_processed":28872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5774.4,"last_update":"2026-03-22T11:06:57.368904334Z"} +2026/03/22 11:06:57 [metric_collector] {"stage_name":"metric_collector","events_processed":18324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3664.8,"last_update":"2026-03-22T11:06:52.368837771Z"} +2026/03/22 11:06:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:06:52.377459614Z"} +2026/03/22 11:06:57 ───────────────────────────────────────────────── +2026/03/22 11:07:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:07:02 [detection_layer] {"stage_name":"detection_layer","events_processed":610,"events_dropped":0,"avg_latency_ms":18.70988057710787,"throughput_eps":0,"last_update":"2026-03-22T11:06:57.480486287Z"} +2026/03/22 11:07:02 [transform_engine] {"stage_name":"transform_engine","events_processed":611,"events_dropped":0,"avg_latency_ms":141.74008215941384,"throughput_eps":0,"last_update":"2026-03-22T11:06:57.53515495Z"} +2026/03/22 11:07:02 [log_collector] {"stage_name":"log_collector","events_processed":28872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5774.4,"last_update":"2026-03-22T11:06:57.368904334Z"} +2026/03/22 11:07:02 [metric_collector] {"stage_name":"metric_collector","events_processed":18329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3665.8,"last_update":"2026-03-22T11:06:57.369272098Z"} +2026/03/22 11:07:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:06:57.379331775Z"} +2026/03/22 11:07:02 ───────────────────────────────────────────────── +2026/03/22 11:07:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:07:07 [log_collector] {"stage_name":"log_collector","events_processed":28872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5774.4,"last_update":"2026-03-22T11:07:02.368918585Z"} +2026/03/22 11:07:07 [metric_collector] {"stage_name":"metric_collector","events_processed":18334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3666.8,"last_update":"2026-03-22T11:07:02.369246633Z"} +2026/03/22 11:07:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:07:02.378286336Z"} +2026/03/22 11:07:07 [detection_layer] {"stage_name":"detection_layer","events_processed":611,"events_dropped":0,"avg_latency_ms":19.156636861686298,"throughput_eps":0,"last_update":"2026-03-22T11:07:02.479413948Z"} +2026/03/22 11:07:07 [transform_engine] {"stage_name":"transform_engine","events_processed":611,"events_dropped":0,"avg_latency_ms":141.74008215941384,"throughput_eps":0,"last_update":"2026-03-22T11:07:02.479516174Z"} +2026/03/22 11:07:07 ───────────────────────────────────────────────── +2026/03/22 11:07:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:07:12 [metric_collector] {"stage_name":"metric_collector","events_processed":18338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3667.6,"last_update":"2026-03-22T11:07:07.368841469Z"} +2026/03/22 11:07:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:07:07.378399424Z"} +2026/03/22 11:07:12 [detection_layer] {"stage_name":"detection_layer","events_processed":611,"events_dropped":0,"avg_latency_ms":19.156636861686298,"throughput_eps":0,"last_update":"2026-03-22T11:07:07.479808916Z"} +2026/03/22 11:07:12 [transform_engine] {"stage_name":"transform_engine","events_processed":611,"events_dropped":0,"avg_latency_ms":141.74008215941384,"throughput_eps":0,"last_update":"2026-03-22T11:07:07.479709335Z"} +2026/03/22 11:07:12 [log_collector] {"stage_name":"log_collector","events_processed":28872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5774.4,"last_update":"2026-03-22T11:07:07.368774731Z"} +2026/03/22 11:07:12 ───────────────────────────────────────────────── +2026/03/22 11:07:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:07:17 [log_collector] {"stage_name":"log_collector","events_processed":28872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5774.4,"last_update":"2026-03-22T11:07:12.368705108Z"} +2026/03/22 11:07:17 [metric_collector] {"stage_name":"metric_collector","events_processed":18344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3668.8,"last_update":"2026-03-22T11:07:12.368977849Z"} +2026/03/22 11:07:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:07:12.379004464Z"} +2026/03/22 11:07:17 [detection_layer] {"stage_name":"detection_layer","events_processed":611,"events_dropped":0,"avg_latency_ms":19.156636861686298,"throughput_eps":0,"last_update":"2026-03-22T11:07:12.479390325Z"} +2026/03/22 11:07:17 [transform_engine] {"stage_name":"transform_engine","events_processed":611,"events_dropped":0,"avg_latency_ms":141.74008215941384,"throughput_eps":0,"last_update":"2026-03-22T11:07:12.479397989Z"} +2026/03/22 11:07:17 ───────────────────────────────────────────────── +2026/03/22 11:07:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:07:22 [log_collector] {"stage_name":"log_collector","events_processed":28872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5774.4,"last_update":"2026-03-22T11:07:17.368551431Z"} +2026/03/22 11:07:22 [metric_collector] {"stage_name":"metric_collector","events_processed":18349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3669.8,"last_update":"2026-03-22T11:07:17.369073391Z"} +2026/03/22 11:07:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7342,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:07:17.379160681Z"} +2026/03/22 11:07:22 [detection_layer] {"stage_name":"detection_layer","events_processed":611,"events_dropped":0,"avg_latency_ms":19.156636861686298,"throughput_eps":0,"last_update":"2026-03-22T11:07:17.479375865Z"} +2026/03/22 11:07:22 [transform_engine] {"stage_name":"transform_engine","events_processed":611,"events_dropped":0,"avg_latency_ms":141.74008215941384,"throughput_eps":0,"last_update":"2026-03-22T11:07:17.479395924Z"} +2026/03/22 11:07:22 ───────────────────────────────────────────────── +2026/03/22 11:07:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:07:27 [detection_layer] {"stage_name":"detection_layer","events_processed":611,"events_dropped":0,"avg_latency_ms":19.156636861686298,"throughput_eps":0,"last_update":"2026-03-22T11:07:22.479087169Z"} +2026/03/22 11:07:27 [transform_engine] {"stage_name":"transform_engine","events_processed":611,"events_dropped":0,"avg_latency_ms":141.74008215941384,"throughput_eps":0,"last_update":"2026-03-22T11:07:22.479120253Z"} +2026/03/22 11:07:27 [log_collector] {"stage_name":"log_collector","events_processed":28872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5774.4,"last_update":"2026-03-22T11:07:22.36881813Z"} +2026/03/22 11:07:27 [metric_collector] {"stage_name":"metric_collector","events_processed":18354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3670.8,"last_update":"2026-03-22T11:07:22.36915801Z"} +2026/03/22 11:07:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:07:22.378879669Z"} +2026/03/22 11:07:27 ───────────────────────────────────────────────── +2026/03/22 11:07:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:07:32 [log_collector] {"stage_name":"log_collector","events_processed":28872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5774.4,"last_update":"2026-03-22T11:07:27.36878955Z"} +2026/03/22 11:07:32 [metric_collector] {"stage_name":"metric_collector","events_processed":18359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3671.8,"last_update":"2026-03-22T11:07:27.369196951Z"} +2026/03/22 11:07:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:07:27.378366032Z"} +2026/03/22 11:07:32 [detection_layer] {"stage_name":"detection_layer","events_processed":611,"events_dropped":0,"avg_latency_ms":19.156636861686298,"throughput_eps":0,"last_update":"2026-03-22T11:07:27.479600218Z"} +2026/03/22 11:07:32 [transform_engine] {"stage_name":"transform_engine","events_processed":612,"events_dropped":0,"avg_latency_ms":127.80611792753108,"throughput_eps":0,"last_update":"2026-03-22T11:07:27.551644199Z"} +2026/03/22 11:07:32 ───────────────────────────────────────────────── +Saved state: 14 clusters, 28873 messages, reason: none +2026/03/22 11:07:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:07:37 [transform_engine] {"stage_name":"transform_engine","events_processed":612,"events_dropped":0,"avg_latency_ms":127.80611792753108,"throughput_eps":0,"last_update":"2026-03-22T11:07:32.479259568Z"} +2026/03/22 11:07:37 [log_collector] {"stage_name":"log_collector","events_processed":28872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5774.4,"last_update":"2026-03-22T11:07:32.368874947Z"} +2026/03/22 11:07:37 [metric_collector] {"stage_name":"metric_collector","events_processed":18364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3672.8,"last_update":"2026-03-22T11:07:32.369285874Z"} +2026/03/22 11:07:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:07:32.378881883Z"} +2026/03/22 11:07:37 [detection_layer] {"stage_name":"detection_layer","events_processed":612,"events_dropped":0,"avg_latency_ms":19.42572068934904,"throughput_eps":0,"last_update":"2026-03-22T11:07:32.479142575Z"} +2026/03/22 11:07:37 ───────────────────────────────────────────────── +2026/03/22 11:07:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:07:42 [transform_engine] {"stage_name":"transform_engine","events_processed":612,"events_dropped":0,"avg_latency_ms":127.80611792753108,"throughput_eps":0,"last_update":"2026-03-22T11:07:37.47943135Z"} +2026/03/22 11:07:42 [log_collector] {"stage_name":"log_collector","events_processed":28875,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5775,"last_update":"2026-03-22T11:07:37.368114341Z"} +2026/03/22 11:07:42 [metric_collector] {"stage_name":"metric_collector","events_processed":18369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3673.8,"last_update":"2026-03-22T11:07:37.36840569Z"} +2026/03/22 11:07:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7350,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:07:37.376938422Z"} +2026/03/22 11:07:42 [detection_layer] {"stage_name":"detection_layer","events_processed":612,"events_dropped":0,"avg_latency_ms":19.42572068934904,"throughput_eps":0,"last_update":"2026-03-22T11:07:37.479413085Z"} +2026/03/22 11:07:42 ───────────────────────────────────────────────── +2026/03/22 11:07:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:07:47 [detection_layer] {"stage_name":"detection_layer","events_processed":612,"events_dropped":0,"avg_latency_ms":19.42572068934904,"throughput_eps":0,"last_update":"2026-03-22T11:07:42.479376404Z"} +2026/03/22 11:07:47 [transform_engine] {"stage_name":"transform_engine","events_processed":612,"events_dropped":0,"avg_latency_ms":127.80611792753108,"throughput_eps":0,"last_update":"2026-03-22T11:07:42.479408846Z"} +2026/03/22 11:07:47 [log_collector] {"stage_name":"log_collector","events_processed":28875,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5775,"last_update":"2026-03-22T11:07:42.367948654Z"} +2026/03/22 11:07:47 [metric_collector] {"stage_name":"metric_collector","events_processed":18374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3674.8,"last_update":"2026-03-22T11:07:42.368188172Z"} +2026/03/22 11:07:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:07:42.377182639Z"} +2026/03/22 11:07:47 ───────────────────────────────────────────────── +2026/03/22 11:07:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:07:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:07:47.374876649Z"} +2026/03/22 11:07:52 [detection_layer] {"stage_name":"detection_layer","events_processed":612,"events_dropped":0,"avg_latency_ms":19.42572068934904,"throughput_eps":0,"last_update":"2026-03-22T11:07:47.479123147Z"} +2026/03/22 11:07:52 [transform_engine] {"stage_name":"transform_engine","events_processed":612,"events_dropped":0,"avg_latency_ms":127.80611792753108,"throughput_eps":0,"last_update":"2026-03-22T11:07:47.479136652Z"} +2026/03/22 11:07:52 [log_collector] {"stage_name":"log_collector","events_processed":28885,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5777,"last_update":"2026-03-22T11:07:47.368283723Z"} +2026/03/22 11:07:52 [metric_collector] {"stage_name":"metric_collector","events_processed":18379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3675.8,"last_update":"2026-03-22T11:07:47.368318339Z"} +2026/03/22 11:07:52 ───────────────────────────────────────────────── +2026/03/22 11:07:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:07:57 [log_collector] {"stage_name":"log_collector","events_processed":28886,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5777.2,"last_update":"2026-03-22T11:07:52.368709594Z"} +2026/03/22 11:07:57 [metric_collector] {"stage_name":"metric_collector","events_processed":18384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3676.8,"last_update":"2026-03-22T11:07:52.369303011Z"} +2026/03/22 11:07:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:07:52.377236546Z"} +2026/03/22 11:07:57 [detection_layer] {"stage_name":"detection_layer","events_processed":612,"events_dropped":0,"avg_latency_ms":19.42572068934904,"throughput_eps":0,"last_update":"2026-03-22T11:07:52.479600876Z"} +2026/03/22 11:07:57 [transform_engine] {"stage_name":"transform_engine","events_processed":612,"events_dropped":0,"avg_latency_ms":127.80611792753108,"throughput_eps":0,"last_update":"2026-03-22T11:07:52.47961821Z"} +2026/03/22 11:07:57 ───────────────────────────────────────────────── +2026/03/22 11:08:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:08:02 [log_collector] {"stage_name":"log_collector","events_processed":28902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5780.4,"last_update":"2026-03-22T11:07:57.368474978Z"} +2026/03/22 11:08:02 [metric_collector] {"stage_name":"metric_collector","events_processed":18389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3677.8,"last_update":"2026-03-22T11:07:57.368671104Z"} +2026/03/22 11:08:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:07:57.375426152Z"} +2026/03/22 11:08:02 [detection_layer] {"stage_name":"detection_layer","events_processed":612,"events_dropped":0,"avg_latency_ms":19.42572068934904,"throughput_eps":0,"last_update":"2026-03-22T11:07:57.479651317Z"} +2026/03/22 11:08:02 [transform_engine] {"stage_name":"transform_engine","events_processed":613,"events_dropped":0,"avg_latency_ms":126.84891294202487,"throughput_eps":0,"last_update":"2026-03-22T11:07:57.602685126Z"} +2026/03/22 11:08:02 ───────────────────────────────────────────────── +2026/03/22 11:08:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:08:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7360,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:08:02.377901623Z"} +2026/03/22 11:08:07 [detection_layer] {"stage_name":"detection_layer","events_processed":613,"events_dropped":0,"avg_latency_ms":18.60527615147923,"throughput_eps":0,"last_update":"2026-03-22T11:08:02.479269016Z"} +2026/03/22 11:08:07 [transform_engine] {"stage_name":"transform_engine","events_processed":613,"events_dropped":0,"avg_latency_ms":126.84891294202487,"throughput_eps":0,"last_update":"2026-03-22T11:08:02.479247444Z"} +2026/03/22 11:08:07 [log_collector] {"stage_name":"log_collector","events_processed":28916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5783.2,"last_update":"2026-03-22T11:08:02.368934148Z"} +2026/03/22 11:08:07 [metric_collector] {"stage_name":"metric_collector","events_processed":18394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3678.8,"last_update":"2026-03-22T11:08:02.369318775Z"} +2026/03/22 11:08:07 ───────────────────────────────────────────────── +2026/03/22 11:08:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:08:12 [detection_layer] {"stage_name":"detection_layer","events_processed":613,"events_dropped":0,"avg_latency_ms":18.60527615147923,"throughput_eps":0,"last_update":"2026-03-22T11:08:07.479333949Z"} +2026/03/22 11:08:12 [transform_engine] {"stage_name":"transform_engine","events_processed":613,"events_dropped":0,"avg_latency_ms":126.84891294202487,"throughput_eps":0,"last_update":"2026-03-22T11:08:07.47939193Z"} +2026/03/22 11:08:12 [log_collector] {"stage_name":"log_collector","events_processed":28916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5783.2,"last_update":"2026-03-22T11:08:12.368729831Z"} +2026/03/22 11:08:12 [metric_collector] {"stage_name":"metric_collector","events_processed":18399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3679.8,"last_update":"2026-03-22T11:08:07.368887958Z"} +2026/03/22 11:08:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:08:07.377996273Z"} +2026/03/22 11:08:12 ───────────────────────────────────────────────── +2026/03/22 11:08:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:08:17 [metric_collector] {"stage_name":"metric_collector","events_processed":18404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3680.8,"last_update":"2026-03-22T11:08:12.36909442Z"} +2026/03/22 11:08:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:08:12.377810093Z"} +2026/03/22 11:08:17 [detection_layer] {"stage_name":"detection_layer","events_processed":613,"events_dropped":0,"avg_latency_ms":18.60527615147923,"throughput_eps":0,"last_update":"2026-03-22T11:08:12.478977072Z"} +2026/03/22 11:08:17 [transform_engine] {"stage_name":"transform_engine","events_processed":613,"events_dropped":0,"avg_latency_ms":126.84891294202487,"throughput_eps":0,"last_update":"2026-03-22T11:08:12.478931054Z"} +2026/03/22 11:08:17 [log_collector] {"stage_name":"log_collector","events_processed":28916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5783.2,"last_update":"2026-03-22T11:08:12.368729831Z"} +2026/03/22 11:08:17 ───────────────────────────────────────────────── +2026/03/22 11:08:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:08:22 [transform_engine] {"stage_name":"transform_engine","events_processed":613,"events_dropped":0,"avg_latency_ms":126.84891294202487,"throughput_eps":0,"last_update":"2026-03-22T11:08:17.479532549Z"} +2026/03/22 11:08:22 [log_collector] {"stage_name":"log_collector","events_processed":28916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5783.2,"last_update":"2026-03-22T11:08:17.367991932Z"} +2026/03/22 11:08:22 [metric_collector] {"stage_name":"metric_collector","events_processed":18409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3681.8,"last_update":"2026-03-22T11:08:17.368341371Z"} +2026/03/22 11:08:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:08:17.375246236Z"} +2026/03/22 11:08:22 [detection_layer] {"stage_name":"detection_layer","events_processed":613,"events_dropped":0,"avg_latency_ms":18.60527615147923,"throughput_eps":0,"last_update":"2026-03-22T11:08:17.479477063Z"} +2026/03/22 11:08:22 ───────────────────────────────────────────────── +2026/03/22 11:08:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:08:27 [log_collector] {"stage_name":"log_collector","events_processed":28916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5783.2,"last_update":"2026-03-22T11:08:22.368317506Z"} +2026/03/22 11:08:27 [metric_collector] {"stage_name":"metric_collector","events_processed":18414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3682.8,"last_update":"2026-03-22T11:08:22.368732752Z"} +2026/03/22 11:08:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:08:22.377038099Z"} +2026/03/22 11:08:27 [detection_layer] {"stage_name":"detection_layer","events_processed":613,"events_dropped":0,"avg_latency_ms":18.60527615147923,"throughput_eps":0,"last_update":"2026-03-22T11:08:22.478985953Z"} +2026/03/22 11:08:27 [transform_engine] {"stage_name":"transform_engine","events_processed":613,"events_dropped":0,"avg_latency_ms":126.84891294202487,"throughput_eps":0,"last_update":"2026-03-22T11:08:22.479053042Z"} +2026/03/22 11:08:27 ───────────────────────────────────────────────── +2026/03/22 11:08:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:08:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:08:27.377479984Z"} +2026/03/22 11:08:32 [detection_layer] {"stage_name":"detection_layer","events_processed":613,"events_dropped":0,"avg_latency_ms":18.60527615147923,"throughput_eps":0,"last_update":"2026-03-22T11:08:27.479714326Z"} +2026/03/22 11:08:32 [transform_engine] {"stage_name":"transform_engine","events_processed":614,"events_dropped":0,"avg_latency_ms":126.76730535361989,"throughput_eps":0,"last_update":"2026-03-22T11:08:27.606197462Z"} +2026/03/22 11:08:32 [log_collector] {"stage_name":"log_collector","events_processed":28916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5783.2,"last_update":"2026-03-22T11:08:27.368058719Z"} +2026/03/22 11:08:32 [metric_collector] {"stage_name":"metric_collector","events_processed":18419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3683.8,"last_update":"2026-03-22T11:08:27.368711971Z"} +2026/03/22 11:08:32 ───────────────────────────────────────────────── +2026/03/22 11:08:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:08:37 [detection_layer] {"stage_name":"detection_layer","events_processed":614,"events_dropped":0,"avg_latency_ms":18.835805121183384,"throughput_eps":0,"last_update":"2026-03-22T11:08:32.479005665Z"} +2026/03/22 11:08:37 [transform_engine] {"stage_name":"transform_engine","events_processed":614,"events_dropped":0,"avg_latency_ms":126.76730535361989,"throughput_eps":0,"last_update":"2026-03-22T11:08:32.478927295Z"} +2026/03/22 11:08:37 [log_collector] {"stage_name":"log_collector","events_processed":28916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5783.2,"last_update":"2026-03-22T11:08:32.368631039Z"} +2026/03/22 11:08:37 [metric_collector] {"stage_name":"metric_collector","events_processed":18424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3684.8,"last_update":"2026-03-22T11:08:32.369047417Z"} +2026/03/22 11:08:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:08:32.375802925Z"} +2026/03/22 11:08:37 ───────────────────────────────────────────────── +2026/03/22 11:08:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:08:42 [metric_collector] {"stage_name":"metric_collector","events_processed":18429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3685.8,"last_update":"2026-03-22T11:08:37.368345175Z"} +2026/03/22 11:08:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:08:37.377383946Z"} +2026/03/22 11:08:42 [detection_layer] {"stage_name":"detection_layer","events_processed":614,"events_dropped":0,"avg_latency_ms":18.835805121183384,"throughput_eps":0,"last_update":"2026-03-22T11:08:37.4797173Z"} +2026/03/22 11:08:42 [transform_engine] {"stage_name":"transform_engine","events_processed":614,"events_dropped":0,"avg_latency_ms":126.76730535361989,"throughput_eps":0,"last_update":"2026-03-22T11:08:37.479650101Z"} +2026/03/22 11:08:42 [log_collector] {"stage_name":"log_collector","events_processed":28916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5783.2,"last_update":"2026-03-22T11:08:42.367972149Z"} +2026/03/22 11:08:42 ───────────────────────────────────────────────── +2026/03/22 11:08:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:08:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:08:42.377262863Z"} +2026/03/22 11:08:47 [detection_layer] {"stage_name":"detection_layer","events_processed":614,"events_dropped":0,"avg_latency_ms":18.835805121183384,"throughput_eps":0,"last_update":"2026-03-22T11:08:42.479639228Z"} +2026/03/22 11:08:47 [transform_engine] {"stage_name":"transform_engine","events_processed":614,"events_dropped":0,"avg_latency_ms":126.76730535361989,"throughput_eps":0,"last_update":"2026-03-22T11:08:42.479670349Z"} +2026/03/22 11:08:47 [log_collector] {"stage_name":"log_collector","events_processed":28916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5783.2,"last_update":"2026-03-22T11:08:42.367972149Z"} +2026/03/22 11:08:47 [metric_collector] {"stage_name":"metric_collector","events_processed":18434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3686.8,"last_update":"2026-03-22T11:08:42.368670948Z"} +2026/03/22 11:08:47 ───────────────────────────────────────────────── +2026/03/22 11:08:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:08:52 [log_collector] {"stage_name":"log_collector","events_processed":28916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5783.2,"last_update":"2026-03-22T11:08:52.368144158Z"} +2026/03/22 11:08:52 [metric_collector] {"stage_name":"metric_collector","events_processed":18439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3687.8,"last_update":"2026-03-22T11:08:47.368923567Z"} +2026/03/22 11:08:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:08:47.377975393Z"} +2026/03/22 11:08:52 [detection_layer] {"stage_name":"detection_layer","events_processed":614,"events_dropped":0,"avg_latency_ms":18.835805121183384,"throughput_eps":0,"last_update":"2026-03-22T11:08:47.479405879Z"} +2026/03/22 11:08:52 [transform_engine] {"stage_name":"transform_engine","events_processed":614,"events_dropped":0,"avg_latency_ms":126.76730535361989,"throughput_eps":0,"last_update":"2026-03-22T11:08:47.479293834Z"} +2026/03/22 11:08:52 ───────────────────────────────────────────────── +2026/03/22 11:08:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:08:57 [transform_engine] {"stage_name":"transform_engine","events_processed":614,"events_dropped":0,"avg_latency_ms":126.76730535361989,"throughput_eps":0,"last_update":"2026-03-22T11:08:52.47958239Z"} +2026/03/22 11:08:57 [log_collector] {"stage_name":"log_collector","events_processed":28916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5783.2,"last_update":"2026-03-22T11:08:52.368144158Z"} +2026/03/22 11:08:57 [metric_collector] {"stage_name":"metric_collector","events_processed":18444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3688.8,"last_update":"2026-03-22T11:08:52.368616874Z"} +2026/03/22 11:08:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7380,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:08:52.378163528Z"} +2026/03/22 11:08:57 [detection_layer] {"stage_name":"detection_layer","events_processed":614,"events_dropped":0,"avg_latency_ms":18.835805121183384,"throughput_eps":0,"last_update":"2026-03-22T11:08:52.479436782Z"} +2026/03/22 11:08:57 ───────────────────────────────────────────────── +2026/03/22 11:09:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:09:02 [log_collector] {"stage_name":"log_collector","events_processed":28916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5783.2,"last_update":"2026-03-22T11:08:57.3686723Z"} +2026/03/22 11:09:02 [metric_collector] {"stage_name":"metric_collector","events_processed":18449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3689.8,"last_update":"2026-03-22T11:08:57.36926236Z"} +2026/03/22 11:09:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:08:57.378119363Z"} +2026/03/22 11:09:02 [detection_layer] {"stage_name":"detection_layer","events_processed":614,"events_dropped":0,"avg_latency_ms":18.835805121183384,"throughput_eps":0,"last_update":"2026-03-22T11:08:57.479460117Z"} +2026/03/22 11:09:02 [transform_engine] {"stage_name":"transform_engine","events_processed":615,"events_dropped":0,"avg_latency_ms":116.57213408289593,"throughput_eps":0,"last_update":"2026-03-22T11:08:57.555208043Z"} +2026/03/22 11:09:02 ───────────────────────────────────────────────── +2026/03/22 11:09:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:09:07 [log_collector] {"stage_name":"log_collector","events_processed":28916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5783.2,"last_update":"2026-03-22T11:09:02.36803153Z"} +2026/03/22 11:09:07 [metric_collector] {"stage_name":"metric_collector","events_processed":18454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3690.8,"last_update":"2026-03-22T11:09:02.368218507Z"} +2026/03/22 11:09:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:09:02.379725948Z"} +2026/03/22 11:09:07 [detection_layer] {"stage_name":"detection_layer","events_processed":615,"events_dropped":0,"avg_latency_ms":19.523019296946707,"throughput_eps":0,"last_update":"2026-03-22T11:09:02.479903573Z"} +2026/03/22 11:09:07 [transform_engine] {"stage_name":"transform_engine","events_processed":615,"events_dropped":0,"avg_latency_ms":116.57213408289593,"throughput_eps":0,"last_update":"2026-03-22T11:09:02.478826009Z"} +2026/03/22 11:09:07 ───────────────────────────────────────────────── +Saved state: 14 clusters, 28917 messages, reason: none +2026/03/22 11:09:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:09:12 [log_collector] {"stage_name":"log_collector","events_processed":28916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5783.2,"last_update":"2026-03-22T11:09:07.368242507Z"} +2026/03/22 11:09:12 [metric_collector] {"stage_name":"metric_collector","events_processed":18459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3691.8,"last_update":"2026-03-22T11:09:07.368663284Z"} +2026/03/22 11:09:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:09:07.377894393Z"} +2026/03/22 11:09:12 [detection_layer] {"stage_name":"detection_layer","events_processed":615,"events_dropped":0,"avg_latency_ms":19.523019296946707,"throughput_eps":0,"last_update":"2026-03-22T11:09:07.479123063Z"} +2026/03/22 11:09:12 [transform_engine] {"stage_name":"transform_engine","events_processed":615,"events_dropped":0,"avg_latency_ms":116.57213408289593,"throughput_eps":0,"last_update":"2026-03-22T11:09:07.479146216Z"} +2026/03/22 11:09:12 ───────────────────────────────────────────────── +2026/03/22 11:09:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:09:17 [detection_layer] {"stage_name":"detection_layer","events_processed":615,"events_dropped":0,"avg_latency_ms":19.523019296946707,"throughput_eps":0,"last_update":"2026-03-22T11:09:12.479454689Z"} +2026/03/22 11:09:17 [transform_engine] {"stage_name":"transform_engine","events_processed":615,"events_dropped":0,"avg_latency_ms":116.57213408289593,"throughput_eps":0,"last_update":"2026-03-22T11:09:12.479441653Z"} +2026/03/22 11:09:17 [log_collector] {"stage_name":"log_collector","events_processed":28921,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5784.2,"last_update":"2026-03-22T11:09:17.369014133Z"} +2026/03/22 11:09:17 [metric_collector] {"stage_name":"metric_collector","events_processed":18469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3693.8,"last_update":"2026-03-22T11:09:17.368998653Z"} +2026/03/22 11:09:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7388,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:09:12.381331778Z"} +2026/03/22 11:09:17 ───────────────────────────────────────────────── +2026/03/22 11:09:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:09:22 [log_collector] {"stage_name":"log_collector","events_processed":28921,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5784.2,"last_update":"2026-03-22T11:09:22.367959547Z"} +2026/03/22 11:09:22 [metric_collector] {"stage_name":"metric_collector","events_processed":18469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3693.8,"last_update":"2026-03-22T11:09:17.368998653Z"} +2026/03/22 11:09:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7390,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:09:17.375979263Z"} +2026/03/22 11:09:22 [detection_layer] {"stage_name":"detection_layer","events_processed":615,"events_dropped":0,"avg_latency_ms":19.523019296946707,"throughput_eps":0,"last_update":"2026-03-22T11:09:17.480335373Z"} +2026/03/22 11:09:22 [transform_engine] {"stage_name":"transform_engine","events_processed":615,"events_dropped":0,"avg_latency_ms":116.57213408289593,"throughput_eps":0,"last_update":"2026-03-22T11:09:17.480361763Z"} +2026/03/22 11:09:22 ───────────────────────────────────────────────── +2026/03/22 11:09:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:09:27 [log_collector] {"stage_name":"log_collector","events_processed":28921,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5784.2,"last_update":"2026-03-22T11:09:22.367959547Z"} +2026/03/22 11:09:27 [metric_collector] {"stage_name":"metric_collector","events_processed":18474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3694.8,"last_update":"2026-03-22T11:09:22.368480024Z"} +2026/03/22 11:09:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:09:22.376601448Z"} +2026/03/22 11:09:27 [detection_layer] {"stage_name":"detection_layer","events_processed":615,"events_dropped":0,"avg_latency_ms":19.523019296946707,"throughput_eps":0,"last_update":"2026-03-22T11:09:22.480548244Z"} +2026/03/22 11:09:27 [transform_engine] {"stage_name":"transform_engine","events_processed":615,"events_dropped":0,"avg_latency_ms":116.57213408289593,"throughput_eps":0,"last_update":"2026-03-22T11:09:22.482004212Z"} +2026/03/22 11:09:27 ───────────────────────────────────────────────── +2026/03/22 11:09:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:09:32 [log_collector] {"stage_name":"log_collector","events_processed":28921,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5784.2,"last_update":"2026-03-22T11:09:32.368613437Z"} +2026/03/22 11:09:32 [metric_collector] {"stage_name":"metric_collector","events_processed":18479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3695.8,"last_update":"2026-03-22T11:09:27.368701118Z"} +2026/03/22 11:09:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:09:27.375825644Z"} +2026/03/22 11:09:32 [detection_layer] {"stage_name":"detection_layer","events_processed":615,"events_dropped":0,"avg_latency_ms":19.523019296946707,"throughput_eps":0,"last_update":"2026-03-22T11:09:27.479083519Z"} +2026/03/22 11:09:32 [transform_engine] {"stage_name":"transform_engine","events_processed":615,"events_dropped":0,"avg_latency_ms":116.57213408289593,"throughput_eps":0,"last_update":"2026-03-22T11:09:22.482004212Z"} +2026/03/22 11:09:32 ───────────────────────────────────────────────── +2026/03/22 11:09:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:09:37 [log_collector] {"stage_name":"log_collector","events_processed":28921,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5784.2,"last_update":"2026-03-22T11:09:32.368613437Z"} +2026/03/22 11:09:37 [metric_collector] {"stage_name":"metric_collector","events_processed":18484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3696.8,"last_update":"2026-03-22T11:09:32.36865647Z"} +2026/03/22 11:09:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:09:32.378199497Z"} +2026/03/22 11:09:37 [detection_layer] {"stage_name":"detection_layer","events_processed":615,"events_dropped":0,"avg_latency_ms":19.523019296946707,"throughput_eps":0,"last_update":"2026-03-22T11:09:32.479405203Z"} +2026/03/22 11:09:37 [transform_engine] {"stage_name":"transform_engine","events_processed":616,"events_dropped":0,"avg_latency_ms":1981.6792132663168,"throughput_eps":0,"last_update":"2026-03-22T11:09:36.921242337Z"} +2026/03/22 11:09:37 ───────────────────────────────────────────────── +2026/03/22 11:09:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:09:42 [transform_engine] {"stage_name":"transform_engine","events_processed":616,"events_dropped":0,"avg_latency_ms":1981.6792132663168,"throughput_eps":0,"last_update":"2026-03-22T11:09:37.479598357Z"} +2026/03/22 11:09:42 [log_collector] {"stage_name":"log_collector","events_processed":28921,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5784.2,"last_update":"2026-03-22T11:09:42.36828973Z"} +2026/03/22 11:09:42 [metric_collector] {"stage_name":"metric_collector","events_processed":18489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3697.8,"last_update":"2026-03-22T11:09:37.368176985Z"} +2026/03/22 11:09:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:09:37.377300689Z"} +2026/03/22 11:09:42 [detection_layer] {"stage_name":"detection_layer","events_processed":616,"events_dropped":0,"avg_latency_ms":18.755109037557368,"throughput_eps":0,"last_update":"2026-03-22T11:09:37.479585582Z"} +2026/03/22 11:09:42 ───────────────────────────────────────────────── +2026/03/22 11:09:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:09:47 [log_collector] {"stage_name":"log_collector","events_processed":28921,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5784.2,"last_update":"2026-03-22T11:09:47.368655718Z"} +2026/03/22 11:09:47 [metric_collector] {"stage_name":"metric_collector","events_processed":18494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3698.8,"last_update":"2026-03-22T11:09:42.368561491Z"} +2026/03/22 11:09:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7400,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:09:42.376656455Z"} +2026/03/22 11:09:47 [detection_layer] {"stage_name":"detection_layer","events_processed":616,"events_dropped":0,"avg_latency_ms":18.755109037557368,"throughput_eps":0,"last_update":"2026-03-22T11:09:42.479828306Z"} +2026/03/22 11:09:47 [transform_engine] {"stage_name":"transform_engine","events_processed":616,"events_dropped":0,"avg_latency_ms":1981.6792132663168,"throughput_eps":0,"last_update":"2026-03-22T11:09:42.479838957Z"} +2026/03/22 11:09:47 ───────────────────────────────────────────────── +2026/03/22 11:09:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:09:52 [transform_engine] {"stage_name":"transform_engine","events_processed":616,"events_dropped":0,"avg_latency_ms":1981.6792132663168,"throughput_eps":0,"last_update":"2026-03-22T11:09:47.479230728Z"} +2026/03/22 11:09:52 [log_collector] {"stage_name":"log_collector","events_processed":28930,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5786,"last_update":"2026-03-22T11:09:52.367998772Z"} +2026/03/22 11:09:52 [metric_collector] {"stage_name":"metric_collector","events_processed":18499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3699.8,"last_update":"2026-03-22T11:09:47.368866671Z"} +2026/03/22 11:09:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7402,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:09:47.376031845Z"} +2026/03/22 11:09:52 [detection_layer] {"stage_name":"detection_layer","events_processed":616,"events_dropped":0,"avg_latency_ms":18.755109037557368,"throughput_eps":0,"last_update":"2026-03-22T11:09:47.47922135Z"} +2026/03/22 11:09:52 ───────────────────────────────────────────────── +2026/03/22 11:09:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:09:57 [metric_collector] {"stage_name":"metric_collector","events_processed":18504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3700.8,"last_update":"2026-03-22T11:09:52.368745622Z"} +2026/03/22 11:09:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:09:52.376183367Z"} +2026/03/22 11:09:57 [detection_layer] {"stage_name":"detection_layer","events_processed":616,"events_dropped":0,"avg_latency_ms":18.755109037557368,"throughput_eps":0,"last_update":"2026-03-22T11:09:52.479417048Z"} +2026/03/22 11:09:57 [transform_engine] {"stage_name":"transform_engine","events_processed":616,"events_dropped":0,"avg_latency_ms":1981.6792132663168,"throughput_eps":0,"last_update":"2026-03-22T11:09:52.479430203Z"} +2026/03/22 11:09:57 [log_collector] {"stage_name":"log_collector","events_processed":28930,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5786,"last_update":"2026-03-22T11:09:52.367998772Z"} +2026/03/22 11:09:57 ───────────────────────────────────────────────── +2026/03/22 11:10:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:10:02 [log_collector] {"stage_name":"log_collector","events_processed":28932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5786.4,"last_update":"2026-03-22T11:09:57.368425047Z"} +2026/03/22 11:10:02 [metric_collector] {"stage_name":"metric_collector","events_processed":18509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3701.8,"last_update":"2026-03-22T11:09:57.368414436Z"} +2026/03/22 11:10:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:09:57.379533592Z"} +2026/03/22 11:10:02 [detection_layer] {"stage_name":"detection_layer","events_processed":616,"events_dropped":0,"avg_latency_ms":18.755109037557368,"throughput_eps":0,"last_update":"2026-03-22T11:09:57.47970598Z"} +2026/03/22 11:10:02 [transform_engine] {"stage_name":"transform_engine","events_processed":617,"events_dropped":0,"avg_latency_ms":1644.9882848130535,"throughput_eps":0,"last_update":"2026-03-22T11:09:57.777943555Z"} +2026/03/22 11:10:02 ───────────────────────────────────────────────── +2026/03/22 11:10:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:10:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7408,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:10:02.381737549Z"} +2026/03/22 11:10:07 [detection_layer] {"stage_name":"detection_layer","events_processed":617,"events_dropped":0,"avg_latency_ms":18.823951430045895,"throughput_eps":0,"last_update":"2026-03-22T11:10:02.478986627Z"} +2026/03/22 11:10:07 [transform_engine] {"stage_name":"transform_engine","events_processed":617,"events_dropped":0,"avg_latency_ms":1644.9882848130535,"throughput_eps":0,"last_update":"2026-03-22T11:10:02.478877789Z"} +2026/03/22 11:10:07 [log_collector] {"stage_name":"log_collector","events_processed":29069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5813.8,"last_update":"2026-03-22T11:10:02.368259565Z"} +2026/03/22 11:10:07 [metric_collector] {"stage_name":"metric_collector","events_processed":18514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3702.8,"last_update":"2026-03-22T11:10:02.368331112Z"} +2026/03/22 11:10:07 ───────────────────────────────────────────────── +2026/03/22 11:10:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:10:12 [log_collector] {"stage_name":"log_collector","events_processed":29268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5853.6,"last_update":"2026-03-22T11:10:07.368558729Z"} +2026/03/22 11:10:12 [metric_collector] {"stage_name":"metric_collector","events_processed":18519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3703.8,"last_update":"2026-03-22T11:10:07.368632731Z"} +2026/03/22 11:10:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:10:07.376161831Z"} +2026/03/22 11:10:12 [detection_layer] {"stage_name":"detection_layer","events_processed":617,"events_dropped":0,"avg_latency_ms":18.823951430045895,"throughput_eps":0,"last_update":"2026-03-22T11:10:07.479395272Z"} +2026/03/22 11:10:12 [transform_engine] {"stage_name":"transform_engine","events_processed":617,"events_dropped":0,"avg_latency_ms":1644.9882848130535,"throughput_eps":0,"last_update":"2026-03-22T11:10:07.479379281Z"} +2026/03/22 11:10:12 ───────────────────────────────────────────────── +2026/03/22 11:10:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:10:17 [transform_engine] {"stage_name":"transform_engine","events_processed":617,"events_dropped":0,"avg_latency_ms":1644.9882848130535,"throughput_eps":0,"last_update":"2026-03-22T11:10:12.478823512Z"} +2026/03/22 11:10:17 [log_collector] {"stage_name":"log_collector","events_processed":29270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5854,"last_update":"2026-03-22T11:10:12.369064473Z"} +2026/03/22 11:10:17 [metric_collector] {"stage_name":"metric_collector","events_processed":18524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3704.8,"last_update":"2026-03-22T11:10:12.369338238Z"} +2026/03/22 11:10:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:10:12.379625531Z"} +2026/03/22 11:10:17 [detection_layer] {"stage_name":"detection_layer","events_processed":617,"events_dropped":0,"avg_latency_ms":18.823951430045895,"throughput_eps":0,"last_update":"2026-03-22T11:10:12.479914551Z"} +2026/03/22 11:10:17 ───────────────────────────────────────────────── +2026/03/22 11:10:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:10:22 [log_collector] {"stage_name":"log_collector","events_processed":29270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5854,"last_update":"2026-03-22T11:10:17.368787434Z"} +2026/03/22 11:10:22 [metric_collector] {"stage_name":"metric_collector","events_processed":18529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3705.8,"last_update":"2026-03-22T11:10:17.369311488Z"} +2026/03/22 11:10:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:10:17.377930255Z"} +2026/03/22 11:10:22 [detection_layer] {"stage_name":"detection_layer","events_processed":617,"events_dropped":0,"avg_latency_ms":18.823951430045895,"throughput_eps":0,"last_update":"2026-03-22T11:10:17.47923925Z"} +2026/03/22 11:10:22 [transform_engine] {"stage_name":"transform_engine","events_processed":617,"events_dropped":0,"avg_latency_ms":1644.9882848130535,"throughput_eps":0,"last_update":"2026-03-22T11:10:17.479129379Z"} +2026/03/22 11:10:22 ───────────────────────────────────────────────── +2026/03/22 11:10:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:10:27 [log_collector] {"stage_name":"log_collector","events_processed":29270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5854,"last_update":"2026-03-22T11:10:27.368860835Z"} +2026/03/22 11:10:27 [metric_collector] {"stage_name":"metric_collector","events_processed":18534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3706.8,"last_update":"2026-03-22T11:10:22.369148774Z"} +2026/03/22 11:10:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:10:22.376224456Z"} +2026/03/22 11:10:27 [detection_layer] {"stage_name":"detection_layer","events_processed":617,"events_dropped":0,"avg_latency_ms":18.823951430045895,"throughput_eps":0,"last_update":"2026-03-22T11:10:22.479451063Z"} +2026/03/22 11:10:27 [transform_engine] {"stage_name":"transform_engine","events_processed":617,"events_dropped":0,"avg_latency_ms":1644.9882848130535,"throughput_eps":0,"last_update":"2026-03-22T11:10:22.47943383Z"} +2026/03/22 11:10:27 ───────────────────────────────────────────────── +2026/03/22 11:10:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:10:32 [log_collector] {"stage_name":"log_collector","events_processed":29270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5854,"last_update":"2026-03-22T11:10:27.368860835Z"} +2026/03/22 11:10:32 [metric_collector] {"stage_name":"metric_collector","events_processed":18539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3707.8,"last_update":"2026-03-22T11:10:27.369153125Z"} +2026/03/22 11:10:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:10:27.378960869Z"} +2026/03/22 11:10:32 [detection_layer] {"stage_name":"detection_layer","events_processed":617,"events_dropped":0,"avg_latency_ms":18.823951430045895,"throughput_eps":0,"last_update":"2026-03-22T11:10:27.479209273Z"} +2026/03/22 11:10:32 [transform_engine] {"stage_name":"transform_engine","events_processed":618,"events_dropped":0,"avg_latency_ms":1339.906295250443,"throughput_eps":0,"last_update":"2026-03-22T11:10:27.598909792Z"} +2026/03/22 11:10:32 ───────────────────────────────────────────────── +2026/03/22 11:10:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:10:37 [log_collector] {"stage_name":"log_collector","events_processed":29270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5854,"last_update":"2026-03-22T11:10:32.368042466Z"} +2026/03/22 11:10:37 [metric_collector] {"stage_name":"metric_collector","events_processed":18544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3708.8,"last_update":"2026-03-22T11:10:32.368337341Z"} +2026/03/22 11:10:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7420,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:10:32.377039368Z"} +2026/03/22 11:10:37 [detection_layer] {"stage_name":"detection_layer","events_processed":618,"events_dropped":0,"avg_latency_ms":19.227063944036715,"throughput_eps":0,"last_update":"2026-03-22T11:10:32.479456475Z"} +2026/03/22 11:10:37 [transform_engine] {"stage_name":"transform_engine","events_processed":618,"events_dropped":0,"avg_latency_ms":1339.906295250443,"throughput_eps":0,"last_update":"2026-03-22T11:10:32.479423012Z"} +2026/03/22 11:10:37 ───────────────────────────────────────────────── +2026/03/22 11:10:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:10:42 [transform_engine] {"stage_name":"transform_engine","events_processed":618,"events_dropped":0,"avg_latency_ms":1339.906295250443,"throughput_eps":0,"last_update":"2026-03-22T11:10:37.479659037Z"} +2026/03/22 11:10:42 [log_collector] {"stage_name":"log_collector","events_processed":29270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5854,"last_update":"2026-03-22T11:10:37.368432808Z"} +2026/03/22 11:10:42 [metric_collector] {"stage_name":"metric_collector","events_processed":18549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3709.8,"last_update":"2026-03-22T11:10:37.368634725Z"} +2026/03/22 11:10:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:10:37.378420447Z"} +2026/03/22 11:10:42 [detection_layer] {"stage_name":"detection_layer","events_processed":618,"events_dropped":0,"avg_latency_ms":19.227063944036715,"throughput_eps":0,"last_update":"2026-03-22T11:10:37.479684376Z"} +2026/03/22 11:10:42 ───────────────────────────────────────────────── +2026/03/22 11:10:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:10:47 [log_collector] {"stage_name":"log_collector","events_processed":29270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5854,"last_update":"2026-03-22T11:10:42.369054529Z"} +2026/03/22 11:10:47 [metric_collector] {"stage_name":"metric_collector","events_processed":18554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3710.8,"last_update":"2026-03-22T11:10:42.369739561Z"} +2026/03/22 11:10:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:10:42.377846197Z"} +2026/03/22 11:10:47 [detection_layer] {"stage_name":"detection_layer","events_processed":618,"events_dropped":0,"avg_latency_ms":19.227063944036715,"throughput_eps":0,"last_update":"2026-03-22T11:10:42.479057215Z"} +2026/03/22 11:10:47 [transform_engine] {"stage_name":"transform_engine","events_processed":618,"events_dropped":0,"avg_latency_ms":1339.906295250443,"throughput_eps":0,"last_update":"2026-03-22T11:10:42.479034832Z"} +2026/03/22 11:10:47 ───────────────────────────────────────────────── +2026/03/22 11:10:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:10:52 [transform_engine] {"stage_name":"transform_engine","events_processed":618,"events_dropped":0,"avg_latency_ms":1339.906295250443,"throughput_eps":0,"last_update":"2026-03-22T11:10:47.479799622Z"} +2026/03/22 11:10:52 [log_collector] {"stage_name":"log_collector","events_processed":29270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5854,"last_update":"2026-03-22T11:10:52.367972684Z"} +2026/03/22 11:10:52 [metric_collector] {"stage_name":"metric_collector","events_processed":18559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3711.8,"last_update":"2026-03-22T11:10:47.368886593Z"} +2026/03/22 11:10:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:10:47.377505119Z"} +2026/03/22 11:10:52 [detection_layer] {"stage_name":"detection_layer","events_processed":618,"events_dropped":0,"avg_latency_ms":19.227063944036715,"throughput_eps":0,"last_update":"2026-03-22T11:10:47.479764916Z"} +2026/03/22 11:10:52 ───────────────────────────────────────────────── +2026/03/22 11:10:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:10:57 [log_collector] {"stage_name":"log_collector","events_processed":29270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5854,"last_update":"2026-03-22T11:10:57.368610783Z"} +2026/03/22 11:10:57 [metric_collector] {"stage_name":"metric_collector","events_processed":18564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3712.8,"last_update":"2026-03-22T11:10:52.368386606Z"} +2026/03/22 11:10:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:10:52.378131591Z"} +2026/03/22 11:10:57 [detection_layer] {"stage_name":"detection_layer","events_processed":618,"events_dropped":0,"avg_latency_ms":19.227063944036715,"throughput_eps":0,"last_update":"2026-03-22T11:10:52.479414667Z"} +2026/03/22 11:10:57 [transform_engine] {"stage_name":"transform_engine","events_processed":618,"events_dropped":0,"avg_latency_ms":1339.906295250443,"throughput_eps":0,"last_update":"2026-03-22T11:10:52.479435056Z"} +2026/03/22 11:10:57 ───────────────────────────────────────────────── +2026/03/22 11:11:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:11:02 [metric_collector] {"stage_name":"metric_collector","events_processed":18569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3713.8,"last_update":"2026-03-22T11:10:57.368952407Z"} +2026/03/22 11:11:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:10:57.378129174Z"} +2026/03/22 11:11:02 [detection_layer] {"stage_name":"detection_layer","events_processed":618,"events_dropped":0,"avg_latency_ms":19.227063944036715,"throughput_eps":0,"last_update":"2026-03-22T11:10:57.479393303Z"} +2026/03/22 11:11:02 [transform_engine] {"stage_name":"transform_engine","events_processed":619,"events_dropped":0,"avg_latency_ms":1086.0030998003544,"throughput_eps":0,"last_update":"2026-03-22T11:10:57.549753011Z"} +2026/03/22 11:11:02 [log_collector] {"stage_name":"log_collector","events_processed":29270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5854,"last_update":"2026-03-22T11:10:57.368610783Z"} +2026/03/22 11:11:02 ───────────────────────────────────────────────── +2026/03/22 11:11:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:11:07 [log_collector] {"stage_name":"log_collector","events_processed":29270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5854,"last_update":"2026-03-22T11:11:02.368783104Z"} +2026/03/22 11:11:07 [metric_collector] {"stage_name":"metric_collector","events_processed":18574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3714.8,"last_update":"2026-03-22T11:11:02.369302828Z"} +2026/03/22 11:11:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:11:02.379097457Z"} +2026/03/22 11:11:07 [detection_layer] {"stage_name":"detection_layer","events_processed":619,"events_dropped":0,"avg_latency_ms":19.700384755229372,"throughput_eps":0,"last_update":"2026-03-22T11:11:02.47941716Z"} +2026/03/22 11:11:07 [transform_engine] {"stage_name":"transform_engine","events_processed":619,"events_dropped":0,"avg_latency_ms":1086.0030998003544,"throughput_eps":0,"last_update":"2026-03-22T11:11:02.479381931Z"} +2026/03/22 11:11:07 ───────────────────────────────────────────────── +2026/03/22 11:11:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:11:12 [log_collector] {"stage_name":"log_collector","events_processed":29270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5854,"last_update":"2026-03-22T11:11:07.368236335Z"} +2026/03/22 11:11:12 [metric_collector] {"stage_name":"metric_collector","events_processed":18579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3715.8,"last_update":"2026-03-22T11:11:07.368498767Z"} +2026/03/22 11:11:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:11:07.377408131Z"} +2026/03/22 11:11:12 [detection_layer] {"stage_name":"detection_layer","events_processed":619,"events_dropped":0,"avg_latency_ms":19.700384755229372,"throughput_eps":0,"last_update":"2026-03-22T11:11:07.479775304Z"} +2026/03/22 11:11:12 [transform_engine] {"stage_name":"transform_engine","events_processed":619,"events_dropped":0,"avg_latency_ms":1086.0030998003544,"throughput_eps":0,"last_update":"2026-03-22T11:11:07.479884202Z"} +2026/03/22 11:11:12 ───────────────────────────────────────────────── +2026/03/22 11:11:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:11:17 [transform_engine] {"stage_name":"transform_engine","events_processed":619,"events_dropped":0,"avg_latency_ms":1086.0030998003544,"throughput_eps":0,"last_update":"2026-03-22T11:11:12.478913715Z"} +2026/03/22 11:11:17 [log_collector] {"stage_name":"log_collector","events_processed":29270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5854,"last_update":"2026-03-22T11:11:17.368331659Z"} +2026/03/22 11:11:17 [metric_collector] {"stage_name":"metric_collector","events_processed":18584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3716.8,"last_update":"2026-03-22T11:11:12.368540119Z"} +2026/03/22 11:11:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:11:12.376747067Z"} +2026/03/22 11:11:17 [detection_layer] {"stage_name":"detection_layer","events_processed":619,"events_dropped":0,"avg_latency_ms":19.700384755229372,"throughput_eps":0,"last_update":"2026-03-22T11:11:12.478955435Z"} +2026/03/22 11:11:17 ───────────────────────────────────────────────── +2026/03/22 11:11:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:11:22 [log_collector] {"stage_name":"log_collector","events_processed":29270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5854,"last_update":"2026-03-22T11:11:22.368733902Z"} +2026/03/22 11:11:22 [metric_collector] {"stage_name":"metric_collector","events_processed":18589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3717.8,"last_update":"2026-03-22T11:11:17.368654827Z"} +2026/03/22 11:11:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:11:17.377821695Z"} +2026/03/22 11:11:22 [detection_layer] {"stage_name":"detection_layer","events_processed":619,"events_dropped":0,"avg_latency_ms":19.700384755229372,"throughput_eps":0,"last_update":"2026-03-22T11:11:17.479033896Z"} +2026/03/22 11:11:22 [transform_engine] {"stage_name":"transform_engine","events_processed":619,"events_dropped":0,"avg_latency_ms":1086.0030998003544,"throughput_eps":0,"last_update":"2026-03-22T11:11:17.479141271Z"} +2026/03/22 11:11:22 ───────────────────────────────────────────────── +2026/03/22 11:11:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:11:27 [transform_engine] {"stage_name":"transform_engine","events_processed":619,"events_dropped":0,"avg_latency_ms":1086.0030998003544,"throughput_eps":0,"last_update":"2026-03-22T11:11:22.479680968Z"} +2026/03/22 11:11:27 [log_collector] {"stage_name":"log_collector","events_processed":29270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5854,"last_update":"2026-03-22T11:11:27.368134823Z"} +2026/03/22 11:11:27 [metric_collector] {"stage_name":"metric_collector","events_processed":18594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3718.8,"last_update":"2026-03-22T11:11:22.369245782Z"} +2026/03/22 11:11:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:11:22.376453487Z"} +2026/03/22 11:11:27 [detection_layer] {"stage_name":"detection_layer","events_processed":619,"events_dropped":0,"avg_latency_ms":19.700384755229372,"throughput_eps":0,"last_update":"2026-03-22T11:11:22.479658375Z"} +2026/03/22 11:11:27 ───────────────────────────────────────────────── +2026/03/22 11:11:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:11:32 [log_collector] {"stage_name":"log_collector","events_processed":29270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5854,"last_update":"2026-03-22T11:11:32.368017962Z"} +2026/03/22 11:11:32 [metric_collector] {"stage_name":"metric_collector","events_processed":18599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3719.8,"last_update":"2026-03-22T11:11:27.369043173Z"} +2026/03/22 11:11:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7442,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:11:27.377409688Z"} +2026/03/22 11:11:32 [detection_layer] {"stage_name":"detection_layer","events_processed":619,"events_dropped":0,"avg_latency_ms":19.700384755229372,"throughput_eps":0,"last_update":"2026-03-22T11:11:27.479576968Z"} +2026/03/22 11:11:32 [transform_engine] {"stage_name":"transform_engine","events_processed":620,"events_dropped":0,"avg_latency_ms":883.2865750402835,"throughput_eps":0,"last_update":"2026-03-22T11:11:27.552053411Z"} +2026/03/22 11:11:32 ───────────────────────────────────────────────── +2026/03/22 11:11:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:11:37 [log_collector] {"stage_name":"log_collector","events_processed":29270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5854,"last_update":"2026-03-22T11:11:32.368017962Z"} +2026/03/22 11:11:37 [metric_collector] {"stage_name":"metric_collector","events_processed":18604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3720.8,"last_update":"2026-03-22T11:11:32.368261479Z"} +2026/03/22 11:11:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:11:32.378095083Z"} +2026/03/22 11:11:37 [detection_layer] {"stage_name":"detection_layer","events_processed":620,"events_dropped":0,"avg_latency_ms":19.899519604183496,"throughput_eps":0,"last_update":"2026-03-22T11:11:32.479415781Z"} +2026/03/22 11:11:37 [transform_engine] {"stage_name":"transform_engine","events_processed":620,"events_dropped":0,"avg_latency_ms":883.2865750402835,"throughput_eps":0,"last_update":"2026-03-22T11:11:32.479268088Z"} +2026/03/22 11:11:37 ───────────────────────────────────────────────── +Saved state: 14 clusters, 29271 messages, reason: none +2026/03/22 11:11:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:11:42 [detection_layer] {"stage_name":"detection_layer","events_processed":620,"events_dropped":0,"avg_latency_ms":19.899519604183496,"throughput_eps":0,"last_update":"2026-03-22T11:11:37.479657414Z"} +2026/03/22 11:11:42 [transform_engine] {"stage_name":"transform_engine","events_processed":620,"events_dropped":0,"avg_latency_ms":883.2865750402835,"throughput_eps":0,"last_update":"2026-03-22T11:11:37.479627407Z"} +2026/03/22 11:11:42 [log_collector] {"stage_name":"log_collector","events_processed":29270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5854,"last_update":"2026-03-22T11:11:37.368516317Z"} +2026/03/22 11:11:42 [metric_collector] {"stage_name":"metric_collector","events_processed":18609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3721.8,"last_update":"2026-03-22T11:11:37.368898609Z"} +2026/03/22 11:11:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7446,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:11:37.37737335Z"} +2026/03/22 11:11:42 ───────────────────────────────────────────────── +2026/03/22 11:11:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:11:47 [detection_layer] {"stage_name":"detection_layer","events_processed":620,"events_dropped":0,"avg_latency_ms":19.899519604183496,"throughput_eps":0,"last_update":"2026-03-22T11:11:42.479727261Z"} +2026/03/22 11:11:47 [transform_engine] {"stage_name":"transform_engine","events_processed":620,"events_dropped":0,"avg_latency_ms":883.2865750402835,"throughput_eps":0,"last_update":"2026-03-22T11:11:42.479698226Z"} +2026/03/22 11:11:47 [log_collector] {"stage_name":"log_collector","events_processed":29273,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5854.6,"last_update":"2026-03-22T11:11:42.367972017Z"} +2026/03/22 11:11:47 [metric_collector] {"stage_name":"metric_collector","events_processed":18614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3722.8,"last_update":"2026-03-22T11:11:42.368171749Z"} +2026/03/22 11:11:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:11:42.37648403Z"} +2026/03/22 11:11:47 ───────────────────────────────────────────────── +2026/03/22 11:11:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:11:52 [log_collector] {"stage_name":"log_collector","events_processed":29273,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5854.6,"last_update":"2026-03-22T11:11:47.367962867Z"} +2026/03/22 11:11:52 [metric_collector] {"stage_name":"metric_collector","events_processed":18619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3723.8,"last_update":"2026-03-22T11:11:47.368126662Z"} +2026/03/22 11:11:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:11:47.374593326Z"} +2026/03/22 11:11:52 [detection_layer] {"stage_name":"detection_layer","events_processed":620,"events_dropped":0,"avg_latency_ms":19.899519604183496,"throughput_eps":0,"last_update":"2026-03-22T11:11:47.479805419Z"} +2026/03/22 11:11:52 [transform_engine] {"stage_name":"transform_engine","events_processed":620,"events_dropped":0,"avg_latency_ms":883.2865750402835,"throughput_eps":0,"last_update":"2026-03-22T11:11:47.47977976Z"} +2026/03/22 11:11:52 ───────────────────────────────────────────────── +2026/03/22 11:11:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:11:57 [log_collector] {"stage_name":"log_collector","events_processed":29283,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5856.6,"last_update":"2026-03-22T11:11:52.36815569Z"} +2026/03/22 11:11:57 [metric_collector] {"stage_name":"metric_collector","events_processed":18624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3724.8,"last_update":"2026-03-22T11:11:52.369118204Z"} +2026/03/22 11:11:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7452,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:11:52.37510969Z"} +2026/03/22 11:11:57 [detection_layer] {"stage_name":"detection_layer","events_processed":620,"events_dropped":0,"avg_latency_ms":19.899519604183496,"throughput_eps":0,"last_update":"2026-03-22T11:11:52.479541276Z"} +2026/03/22 11:11:57 [transform_engine] {"stage_name":"transform_engine","events_processed":620,"events_dropped":0,"avg_latency_ms":883.2865750402835,"throughput_eps":0,"last_update":"2026-03-22T11:11:52.479400948Z"} +2026/03/22 11:11:57 ───────────────────────────────────────────────── +2026/03/22 11:12:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:12:02 [detection_layer] {"stage_name":"detection_layer","events_processed":620,"events_dropped":0,"avg_latency_ms":19.899519604183496,"throughput_eps":0,"last_update":"2026-03-22T11:11:57.478957937Z"} +2026/03/22 11:12:02 [transform_engine] {"stage_name":"transform_engine","events_processed":621,"events_dropped":0,"avg_latency_ms":728.7366942322269,"throughput_eps":0,"last_update":"2026-03-22T11:11:57.589457316Z"} +2026/03/22 11:12:02 [log_collector] {"stage_name":"log_collector","events_processed":29291,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5858.2,"last_update":"2026-03-22T11:11:57.368290886Z"} +2026/03/22 11:12:02 [metric_collector] {"stage_name":"metric_collector","events_processed":18629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3725.8,"last_update":"2026-03-22T11:11:57.368405236Z"} +2026/03/22 11:12:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:11:57.379792696Z"} +2026/03/22 11:12:02 ───────────────────────────────────────────────── +2026/03/22 11:12:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:12:07 [transform_engine] {"stage_name":"transform_engine","events_processed":621,"events_dropped":0,"avg_latency_ms":728.7366942322269,"throughput_eps":0,"last_update":"2026-03-22T11:12:02.479314622Z"} +2026/03/22 11:12:07 [log_collector] {"stage_name":"log_collector","events_processed":29314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5862.8,"last_update":"2026-03-22T11:12:07.368125648Z"} +2026/03/22 11:12:07 [metric_collector] {"stage_name":"metric_collector","events_processed":18634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3726.8,"last_update":"2026-03-22T11:12:02.368339872Z"} +2026/03/22 11:12:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:12:02.37696431Z"} +2026/03/22 11:12:07 [detection_layer] {"stage_name":"detection_layer","events_processed":621,"events_dropped":0,"avg_latency_ms":19.126058883346797,"throughput_eps":0,"last_update":"2026-03-22T11:12:02.479300474Z"} +2026/03/22 11:12:07 ───────────────────────────────────────────────── +2026/03/22 11:12:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:12:12 [log_collector] {"stage_name":"log_collector","events_processed":29314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5862.8,"last_update":"2026-03-22T11:12:12.367962016Z"} +2026/03/22 11:12:12 [metric_collector] {"stage_name":"metric_collector","events_processed":18639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3727.8,"last_update":"2026-03-22T11:12:07.368591239Z"} +2026/03/22 11:12:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:12:07.37672086Z"} +2026/03/22 11:12:12 [detection_layer] {"stage_name":"detection_layer","events_processed":621,"events_dropped":0,"avg_latency_ms":19.126058883346797,"throughput_eps":0,"last_update":"2026-03-22T11:12:07.479961046Z"} +2026/03/22 11:12:12 [transform_engine] {"stage_name":"transform_engine","events_processed":621,"events_dropped":0,"avg_latency_ms":728.7366942322269,"throughput_eps":0,"last_update":"2026-03-22T11:12:07.478848775Z"} +2026/03/22 11:12:12 ───────────────────────────────────────────────── +2026/03/22 11:12:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:12:17 [log_collector] {"stage_name":"log_collector","events_processed":29314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5862.8,"last_update":"2026-03-22T11:12:12.367962016Z"} +2026/03/22 11:12:17 [metric_collector] {"stage_name":"metric_collector","events_processed":18644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3728.8,"last_update":"2026-03-22T11:12:12.368587855Z"} +2026/03/22 11:12:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:12:12.37678767Z"} +2026/03/22 11:12:17 [detection_layer] {"stage_name":"detection_layer","events_processed":621,"events_dropped":0,"avg_latency_ms":19.126058883346797,"throughput_eps":0,"last_update":"2026-03-22T11:12:12.47900697Z"} +2026/03/22 11:12:17 [transform_engine] {"stage_name":"transform_engine","events_processed":621,"events_dropped":0,"avg_latency_ms":728.7366942322269,"throughput_eps":0,"last_update":"2026-03-22T11:12:12.479035415Z"} +2026/03/22 11:12:17 ───────────────────────────────────────────────── +2026/03/22 11:12:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:12:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:12:17.378223268Z"} +2026/03/22 11:12:22 [detection_layer] {"stage_name":"detection_layer","events_processed":621,"events_dropped":0,"avg_latency_ms":19.126058883346797,"throughput_eps":0,"last_update":"2026-03-22T11:12:17.479391305Z"} +2026/03/22 11:12:22 [transform_engine] {"stage_name":"transform_engine","events_processed":621,"events_dropped":0,"avg_latency_ms":728.7366942322269,"throughput_eps":0,"last_update":"2026-03-22T11:12:17.479402507Z"} +2026/03/22 11:12:22 [log_collector] {"stage_name":"log_collector","events_processed":29314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5862.8,"last_update":"2026-03-22T11:12:17.368001701Z"} +2026/03/22 11:12:22 [metric_collector] {"stage_name":"metric_collector","events_processed":18649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3729.8,"last_update":"2026-03-22T11:12:17.36843479Z"} +2026/03/22 11:12:22 ───────────────────────────────────────────────── +2026/03/22 11:12:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:12:27 [log_collector] {"stage_name":"log_collector","events_processed":29314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5862.8,"last_update":"2026-03-22T11:12:22.369111818Z"} +2026/03/22 11:12:27 [metric_collector] {"stage_name":"metric_collector","events_processed":18654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3730.8,"last_update":"2026-03-22T11:12:22.369615262Z"} +2026/03/22 11:12:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:12:22.37831254Z"} +2026/03/22 11:12:27 [detection_layer] {"stage_name":"detection_layer","events_processed":621,"events_dropped":0,"avg_latency_ms":19.126058883346797,"throughput_eps":0,"last_update":"2026-03-22T11:12:22.479532056Z"} +2026/03/22 11:12:27 [transform_engine] {"stage_name":"transform_engine","events_processed":621,"events_dropped":0,"avg_latency_ms":728.7366942322269,"throughput_eps":0,"last_update":"2026-03-22T11:12:22.479542887Z"} +2026/03/22 11:12:27 ───────────────────────────────────────────────── +2026/03/22 11:12:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:12:32 [detection_layer] {"stage_name":"detection_layer","events_processed":621,"events_dropped":0,"avg_latency_ms":19.126058883346797,"throughput_eps":0,"last_update":"2026-03-22T11:12:27.479884328Z"} +2026/03/22 11:12:32 [transform_engine] {"stage_name":"transform_engine","events_processed":622,"events_dropped":0,"avg_latency_ms":606.1652101857816,"throughput_eps":0,"last_update":"2026-03-22T11:12:27.595776998Z"} +2026/03/22 11:12:32 [log_collector] {"stage_name":"log_collector","events_processed":29314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5862.8,"last_update":"2026-03-22T11:12:32.368030664Z"} +2026/03/22 11:12:32 [metric_collector] {"stage_name":"metric_collector","events_processed":18659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3731.8,"last_update":"2026-03-22T11:12:27.368979582Z"} +2026/03/22 11:12:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:12:27.377618649Z"} +2026/03/22 11:12:32 ───────────────────────────────────────────────── +2026/03/22 11:12:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:12:37 [log_collector] {"stage_name":"log_collector","events_processed":29314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5862.8,"last_update":"2026-03-22T11:12:32.368030664Z"} +2026/03/22 11:12:37 [metric_collector] {"stage_name":"metric_collector","events_processed":18664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3732.8,"last_update":"2026-03-22T11:12:32.368709865Z"} +2026/03/22 11:12:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:12:32.376726229Z"} +2026/03/22 11:12:37 [detection_layer] {"stage_name":"detection_layer","events_processed":622,"events_dropped":0,"avg_latency_ms":19.314809106677437,"throughput_eps":0,"last_update":"2026-03-22T11:12:32.47896645Z"} +2026/03/22 11:12:37 [transform_engine] {"stage_name":"transform_engine","events_processed":622,"events_dropped":0,"avg_latency_ms":606.1652101857816,"throughput_eps":0,"last_update":"2026-03-22T11:12:32.478863773Z"} +2026/03/22 11:12:37 ───────────────────────────────────────────────── +2026/03/22 11:12:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:12:42 [transform_engine] {"stage_name":"transform_engine","events_processed":622,"events_dropped":0,"avg_latency_ms":606.1652101857816,"throughput_eps":0,"last_update":"2026-03-22T11:12:37.479833755Z"} +2026/03/22 11:12:42 [log_collector] {"stage_name":"log_collector","events_processed":29314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5862.8,"last_update":"2026-03-22T11:12:37.368961632Z"} +2026/03/22 11:12:42 [metric_collector] {"stage_name":"metric_collector","events_processed":18669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3733.8,"last_update":"2026-03-22T11:12:37.368993983Z"} +2026/03/22 11:12:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7470,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:12:37.378534205Z"} +2026/03/22 11:12:42 [detection_layer] {"stage_name":"detection_layer","events_processed":622,"events_dropped":0,"avg_latency_ms":19.314809106677437,"throughput_eps":0,"last_update":"2026-03-22T11:12:37.479723985Z"} +2026/03/22 11:12:42 ───────────────────────────────────────────────── +2026/03/22 11:12:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:12:47 [metric_collector] {"stage_name":"metric_collector","events_processed":18674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3734.8,"last_update":"2026-03-22T11:12:42.368681533Z"} +2026/03/22 11:12:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:12:42.377182315Z"} +2026/03/22 11:12:47 [detection_layer] {"stage_name":"detection_layer","events_processed":622,"events_dropped":0,"avg_latency_ms":19.314809106677437,"throughput_eps":0,"last_update":"2026-03-22T11:12:42.479442784Z"} +2026/03/22 11:12:47 [transform_engine] {"stage_name":"transform_engine","events_processed":622,"events_dropped":0,"avg_latency_ms":606.1652101857816,"throughput_eps":0,"last_update":"2026-03-22T11:12:42.479401675Z"} +2026/03/22 11:12:47 [log_collector] {"stage_name":"log_collector","events_processed":29314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5862.8,"last_update":"2026-03-22T11:12:42.368313328Z"} +2026/03/22 11:12:47 ───────────────────────────────────────────────── +2026/03/22 11:12:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:12:52 [log_collector] {"stage_name":"log_collector","events_processed":29314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5862.8,"last_update":"2026-03-22T11:12:47.368170877Z"} +2026/03/22 11:12:52 [metric_collector] {"stage_name":"metric_collector","events_processed":18679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3735.8,"last_update":"2026-03-22T11:12:47.368399144Z"} +2026/03/22 11:12:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:12:47.375681131Z"} +2026/03/22 11:12:52 [detection_layer] {"stage_name":"detection_layer","events_processed":622,"events_dropped":0,"avg_latency_ms":19.314809106677437,"throughput_eps":0,"last_update":"2026-03-22T11:12:47.479970397Z"} +2026/03/22 11:12:52 [transform_engine] {"stage_name":"transform_engine","events_processed":622,"events_dropped":0,"avg_latency_ms":606.1652101857816,"throughput_eps":0,"last_update":"2026-03-22T11:12:47.478900568Z"} +2026/03/22 11:12:52 ───────────────────────────────────────────────── +2026/03/22 11:12:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:12:57 [log_collector] {"stage_name":"log_collector","events_processed":29314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5862.8,"last_update":"2026-03-22T11:12:52.368489886Z"} +2026/03/22 11:12:57 [metric_collector] {"stage_name":"metric_collector","events_processed":18684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3736.8,"last_update":"2026-03-22T11:12:52.369477387Z"} +2026/03/22 11:12:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7476,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:12:52.376860378Z"} +2026/03/22 11:12:57 [detection_layer] {"stage_name":"detection_layer","events_processed":622,"events_dropped":0,"avg_latency_ms":19.314809106677437,"throughput_eps":0,"last_update":"2026-03-22T11:12:52.479345178Z"} +2026/03/22 11:12:57 [transform_engine] {"stage_name":"transform_engine","events_processed":622,"events_dropped":0,"avg_latency_ms":606.1652101857816,"throughput_eps":0,"last_update":"2026-03-22T11:12:52.47922653Z"} +2026/03/22 11:12:57 ───────────────────────────────────────────────── +2026/03/22 11:13:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:13:02 [transform_engine] {"stage_name":"transform_engine","events_processed":623,"events_dropped":0,"avg_latency_ms":499.5251001486253,"throughput_eps":0,"last_update":"2026-03-22T11:12:57.552540572Z"} +2026/03/22 11:13:02 [log_collector] {"stage_name":"log_collector","events_processed":29314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5862.8,"last_update":"2026-03-22T11:13:02.36798595Z"} +2026/03/22 11:13:02 [metric_collector] {"stage_name":"metric_collector","events_processed":18689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3737.8,"last_update":"2026-03-22T11:12:57.368183793Z"} +2026/03/22 11:13:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:12:57.377049032Z"} +2026/03/22 11:13:02 [detection_layer] {"stage_name":"detection_layer","events_processed":622,"events_dropped":0,"avg_latency_ms":19.314809106677437,"throughput_eps":0,"last_update":"2026-03-22T11:12:57.4794022Z"} +2026/03/22 11:13:02 ───────────────────────────────────────────────── +Saved state: 14 clusters, 29315 messages, reason: none +2026/03/22 11:13:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:13:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7480,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:13:02.377161694Z"} +2026/03/22 11:13:07 [detection_layer] {"stage_name":"detection_layer","events_processed":623,"events_dropped":0,"avg_latency_ms":19.94061068534195,"throughput_eps":0,"last_update":"2026-03-22T11:13:02.479389091Z"} +2026/03/22 11:13:07 [transform_engine] {"stage_name":"transform_engine","events_processed":623,"events_dropped":0,"avg_latency_ms":499.5251001486253,"throughput_eps":0,"last_update":"2026-03-22T11:13:02.479418999Z"} +2026/03/22 11:13:07 [log_collector] {"stage_name":"log_collector","events_processed":29314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5862.8,"last_update":"2026-03-22T11:13:02.36798595Z"} +2026/03/22 11:13:07 [metric_collector] {"stage_name":"metric_collector","events_processed":18694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3738.8,"last_update":"2026-03-22T11:13:02.368775983Z"} +2026/03/22 11:13:07 ───────────────────────────────────────────────── +2026/03/22 11:13:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:13:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7482,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:13:07.380572557Z"} +2026/03/22 11:13:12 [detection_layer] {"stage_name":"detection_layer","events_processed":623,"events_dropped":0,"avg_latency_ms":19.94061068534195,"throughput_eps":0,"last_update":"2026-03-22T11:13:07.479747337Z"} +2026/03/22 11:13:12 [transform_engine] {"stage_name":"transform_engine","events_processed":623,"events_dropped":0,"avg_latency_ms":499.5251001486253,"throughput_eps":0,"last_update":"2026-03-22T11:13:07.479767797Z"} +2026/03/22 11:13:12 [log_collector] {"stage_name":"log_collector","events_processed":29319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5863.8,"last_update":"2026-03-22T11:13:07.368778918Z"} +2026/03/22 11:13:12 [metric_collector] {"stage_name":"metric_collector","events_processed":18699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3739.8,"last_update":"2026-03-22T11:13:07.368769551Z"} +2026/03/22 11:13:12 ───────────────────────────────────────────────── +2026/03/22 11:13:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:13:17 [log_collector] {"stage_name":"log_collector","events_processed":29319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5863.8,"last_update":"2026-03-22T11:13:12.369400574Z"} +2026/03/22 11:13:17 [metric_collector] {"stage_name":"metric_collector","events_processed":18704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3740.8,"last_update":"2026-03-22T11:13:12.369752237Z"} +2026/03/22 11:13:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:13:12.384829626Z"} +2026/03/22 11:13:17 [detection_layer] {"stage_name":"detection_layer","events_processed":623,"events_dropped":0,"avg_latency_ms":19.94061068534195,"throughput_eps":0,"last_update":"2026-03-22T11:13:12.478944435Z"} +2026/03/22 11:13:17 [transform_engine] {"stage_name":"transform_engine","events_processed":623,"events_dropped":0,"avg_latency_ms":499.5251001486253,"throughput_eps":0,"last_update":"2026-03-22T11:13:12.478926661Z"} +2026/03/22 11:13:17 ───────────────────────────────────────────────── +2026/03/22 11:13:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:13:22 [metric_collector] {"stage_name":"metric_collector","events_processed":18709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3741.8,"last_update":"2026-03-22T11:13:17.368425346Z"} +2026/03/22 11:13:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7486,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:13:17.376215456Z"} +2026/03/22 11:13:22 [detection_layer] {"stage_name":"detection_layer","events_processed":623,"events_dropped":0,"avg_latency_ms":19.94061068534195,"throughput_eps":0,"last_update":"2026-03-22T11:13:17.479481532Z"} +2026/03/22 11:13:22 [transform_engine] {"stage_name":"transform_engine","events_processed":623,"events_dropped":0,"avg_latency_ms":499.5251001486253,"throughput_eps":0,"last_update":"2026-03-22T11:13:17.479465672Z"} +2026/03/22 11:13:22 [log_collector] {"stage_name":"log_collector","events_processed":29319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5863.8,"last_update":"2026-03-22T11:13:17.368496081Z"} +2026/03/22 11:13:22 ───────────────────────────────────────────────── +2026/03/22 11:13:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:13:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:13:22.376895912Z"} +2026/03/22 11:13:27 [detection_layer] {"stage_name":"detection_layer","events_processed":623,"events_dropped":0,"avg_latency_ms":19.94061068534195,"throughput_eps":0,"last_update":"2026-03-22T11:13:22.479102138Z"} +2026/03/22 11:13:27 [transform_engine] {"stage_name":"transform_engine","events_processed":623,"events_dropped":0,"avg_latency_ms":499.5251001486253,"throughput_eps":0,"last_update":"2026-03-22T11:13:22.479114382Z"} +2026/03/22 11:13:27 [log_collector] {"stage_name":"log_collector","events_processed":29319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5863.8,"last_update":"2026-03-22T11:13:22.368083293Z"} +2026/03/22 11:13:27 [metric_collector] {"stage_name":"metric_collector","events_processed":18714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3742.8,"last_update":"2026-03-22T11:13:22.368422804Z"} +2026/03/22 11:13:27 ───────────────────────────────────────────────── +2026/03/22 11:13:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:13:32 [log_collector] {"stage_name":"log_collector","events_processed":29319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5863.8,"last_update":"2026-03-22T11:13:32.368789132Z"} +2026/03/22 11:13:32 [metric_collector] {"stage_name":"metric_collector","events_processed":18719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3743.8,"last_update":"2026-03-22T11:13:27.368197509Z"} +2026/03/22 11:13:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7490,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:13:27.379050175Z"} +2026/03/22 11:13:32 [detection_layer] {"stage_name":"detection_layer","events_processed":623,"events_dropped":0,"avg_latency_ms":19.94061068534195,"throughput_eps":0,"last_update":"2026-03-22T11:13:27.479668421Z"} +2026/03/22 11:13:32 [transform_engine] {"stage_name":"transform_engine","events_processed":624,"events_dropped":0,"avg_latency_ms":421.29643711890026,"throughput_eps":0,"last_update":"2026-03-22T11:13:27.588061036Z"} +2026/03/22 11:13:32 ───────────────────────────────────────────────── +2026/03/22 11:13:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:13:37 [log_collector] {"stage_name":"log_collector","events_processed":29319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5863.8,"last_update":"2026-03-22T11:13:32.368789132Z"} +2026/03/22 11:13:37 [metric_collector] {"stage_name":"metric_collector","events_processed":18724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3744.8,"last_update":"2026-03-22T11:13:32.369179831Z"} +2026/03/22 11:13:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:13:32.375505506Z"} +2026/03/22 11:13:37 [detection_layer] {"stage_name":"detection_layer","events_processed":624,"events_dropped":0,"avg_latency_ms":18.20988214827356,"throughput_eps":0,"last_update":"2026-03-22T11:13:32.479677669Z"} +2026/03/22 11:13:37 [transform_engine] {"stage_name":"transform_engine","events_processed":624,"events_dropped":0,"avg_latency_ms":421.29643711890026,"throughput_eps":0,"last_update":"2026-03-22T11:13:32.479694891Z"} +2026/03/22 11:13:37 ───────────────────────────────────────────────── +2026/03/22 11:13:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:13:42 [log_collector] {"stage_name":"log_collector","events_processed":29319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5863.8,"last_update":"2026-03-22T11:13:37.368390455Z"} +2026/03/22 11:13:42 [metric_collector] {"stage_name":"metric_collector","events_processed":18729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3745.8,"last_update":"2026-03-22T11:13:37.368882448Z"} +2026/03/22 11:13:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:13:37.38025023Z"} +2026/03/22 11:13:42 [detection_layer] {"stage_name":"detection_layer","events_processed":624,"events_dropped":0,"avg_latency_ms":18.20988214827356,"throughput_eps":0,"last_update":"2026-03-22T11:13:37.479411055Z"} +2026/03/22 11:13:42 [transform_engine] {"stage_name":"transform_engine","events_processed":624,"events_dropped":0,"avg_latency_ms":421.29643711890026,"throughput_eps":0,"last_update":"2026-03-22T11:13:37.479467172Z"} +2026/03/22 11:13:42 ───────────────────────────────────────────────── +2026/03/22 11:13:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:13:47 [detection_layer] {"stage_name":"detection_layer","events_processed":624,"events_dropped":0,"avg_latency_ms":18.20988214827356,"throughput_eps":0,"last_update":"2026-03-22T11:13:42.479530252Z"} +2026/03/22 11:13:47 [transform_engine] {"stage_name":"transform_engine","events_processed":624,"events_dropped":0,"avg_latency_ms":421.29643711890026,"throughput_eps":0,"last_update":"2026-03-22T11:13:42.479510604Z"} +2026/03/22 11:13:47 [log_collector] {"stage_name":"log_collector","events_processed":29319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5863.8,"last_update":"2026-03-22T11:13:42.368408919Z"} +2026/03/22 11:13:47 [metric_collector] {"stage_name":"metric_collector","events_processed":18734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3746.8,"last_update":"2026-03-22T11:13:42.3691976Z"} +2026/03/22 11:13:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7496,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:13:42.376231071Z"} +2026/03/22 11:13:47 ───────────────────────────────────────────────── +2026/03/22 11:13:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:13:52 [log_collector] {"stage_name":"log_collector","events_processed":29319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5863.8,"last_update":"2026-03-22T11:13:47.368160226Z"} +2026/03/22 11:13:52 [metric_collector] {"stage_name":"metric_collector","events_processed":18739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3747.8,"last_update":"2026-03-22T11:13:47.368704128Z"} +2026/03/22 11:13:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7498,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:13:47.377139804Z"} +2026/03/22 11:13:52 [detection_layer] {"stage_name":"detection_layer","events_processed":624,"events_dropped":0,"avg_latency_ms":18.20988214827356,"throughput_eps":0,"last_update":"2026-03-22T11:13:47.47952226Z"} +2026/03/22 11:13:52 [transform_engine] {"stage_name":"transform_engine","events_processed":624,"events_dropped":0,"avg_latency_ms":421.29643711890026,"throughput_eps":0,"last_update":"2026-03-22T11:13:47.479488765Z"} +2026/03/22 11:13:52 ───────────────────────────────────────────────── +2026/03/22 11:13:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:13:57 [log_collector] {"stage_name":"log_collector","events_processed":29328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5865.6,"last_update":"2026-03-22T11:13:52.367977483Z"} +2026/03/22 11:13:57 [metric_collector] {"stage_name":"metric_collector","events_processed":18744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3748.8,"last_update":"2026-03-22T11:13:52.368311282Z"} +2026/03/22 11:13:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:13:52.375944473Z"} +2026/03/22 11:13:57 [detection_layer] {"stage_name":"detection_layer","events_processed":624,"events_dropped":0,"avg_latency_ms":18.20988214827356,"throughput_eps":0,"last_update":"2026-03-22T11:13:52.479207544Z"} +2026/03/22 11:13:57 [transform_engine] {"stage_name":"transform_engine","events_processed":624,"events_dropped":0,"avg_latency_ms":421.29643711890026,"throughput_eps":0,"last_update":"2026-03-22T11:13:52.479180773Z"} +2026/03/22 11:13:57 ───────────────────────────────────────────────── +2026/03/22 11:14:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:14:02 [detection_layer] {"stage_name":"detection_layer","events_processed":624,"events_dropped":0,"avg_latency_ms":18.20988214827356,"throughput_eps":0,"last_update":"2026-03-22T11:13:57.479723534Z"} +2026/03/22 11:14:02 [transform_engine] {"stage_name":"transform_engine","events_processed":625,"events_dropped":0,"avg_latency_ms":377.8817940951202,"throughput_eps":0,"last_update":"2026-03-22T11:13:57.683856364Z"} +2026/03/22 11:14:02 [log_collector] {"stage_name":"log_collector","events_processed":29330,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5866,"last_update":"2026-03-22T11:13:57.36853293Z"} +2026/03/22 11:14:02 [metric_collector] {"stage_name":"metric_collector","events_processed":18749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3749.8,"last_update":"2026-03-22T11:13:57.368790182Z"} +2026/03/22 11:14:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:13:57.376382254Z"} +2026/03/22 11:14:02 ───────────────────────────────────────────────── +2026/03/22 11:14:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:14:07 [log_collector] {"stage_name":"log_collector","events_processed":29441,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5888.2,"last_update":"2026-03-22T11:14:02.368085767Z"} +2026/03/22 11:14:07 [metric_collector] {"stage_name":"metric_collector","events_processed":18754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3750.8,"last_update":"2026-03-22T11:14:02.368719601Z"} +2026/03/22 11:14:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:14:02.375605249Z"} +2026/03/22 11:14:07 [detection_layer] {"stage_name":"detection_layer","events_processed":625,"events_dropped":0,"avg_latency_ms":17.11871351861885,"throughput_eps":0,"last_update":"2026-03-22T11:14:02.479834471Z"} +2026/03/22 11:14:07 [transform_engine] {"stage_name":"transform_engine","events_processed":625,"events_dropped":0,"avg_latency_ms":377.8817940951202,"throughput_eps":0,"last_update":"2026-03-22T11:14:02.479871932Z"} +2026/03/22 11:14:07 ───────────────────────────────────────────────── +Saved state: 14 clusters, 29672 messages, reason: none +2026/03/22 11:14:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:14:12 [transform_engine] {"stage_name":"transform_engine","events_processed":625,"events_dropped":0,"avg_latency_ms":377.8817940951202,"throughput_eps":0,"last_update":"2026-03-22T11:14:07.479459791Z"} +2026/03/22 11:14:12 [log_collector] {"stage_name":"log_collector","events_processed":29671,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5934.2,"last_update":"2026-03-22T11:14:07.368776047Z"} +2026/03/22 11:14:12 [metric_collector] {"stage_name":"metric_collector","events_processed":18759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3751.8,"last_update":"2026-03-22T11:14:07.369145114Z"} +2026/03/22 11:14:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7506,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:14:07.376182693Z"} +2026/03/22 11:14:12 [detection_layer] {"stage_name":"detection_layer","events_processed":625,"events_dropped":0,"avg_latency_ms":17.11871351861885,"throughput_eps":0,"last_update":"2026-03-22T11:14:07.479412631Z"} +2026/03/22 11:14:12 ───────────────────────────────────────────────── +2026/03/22 11:14:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:14:17 [detection_layer] {"stage_name":"detection_layer","events_processed":625,"events_dropped":0,"avg_latency_ms":17.11871351861885,"throughput_eps":0,"last_update":"2026-03-22T11:14:12.479487115Z"} +2026/03/22 11:14:17 [transform_engine] {"stage_name":"transform_engine","events_processed":625,"events_dropped":0,"avg_latency_ms":377.8817940951202,"throughput_eps":0,"last_update":"2026-03-22T11:14:12.479519106Z"} +2026/03/22 11:14:17 [log_collector] {"stage_name":"log_collector","events_processed":29675,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5935,"last_update":"2026-03-22T11:14:12.368310527Z"} +2026/03/22 11:14:17 [metric_collector] {"stage_name":"metric_collector","events_processed":18764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3752.8,"last_update":"2026-03-22T11:14:12.368298564Z"} +2026/03/22 11:14:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:14:12.377280627Z"} +2026/03/22 11:14:17 ───────────────────────────────────────────────── +2026/03/22 11:14:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:14:22 [transform_engine] {"stage_name":"transform_engine","events_processed":625,"events_dropped":0,"avg_latency_ms":377.8817940951202,"throughput_eps":0,"last_update":"2026-03-22T11:14:17.479485188Z"} +2026/03/22 11:14:22 [log_collector] {"stage_name":"log_collector","events_processed":29678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5935.6,"last_update":"2026-03-22T11:14:17.368496178Z"} +2026/03/22 11:14:22 [metric_collector] {"stage_name":"metric_collector","events_processed":18769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3753.8,"last_update":"2026-03-22T11:14:17.368926703Z"} +2026/03/22 11:14:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:14:17.376069063Z"} +2026/03/22 11:14:22 [detection_layer] {"stage_name":"detection_layer","events_processed":625,"events_dropped":0,"avg_latency_ms":17.11871351861885,"throughput_eps":0,"last_update":"2026-03-22T11:14:17.479508443Z"} +2026/03/22 11:14:22 ───────────────────────────────────────────────── +2026/03/22 11:14:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:14:27 [log_collector] {"stage_name":"log_collector","events_processed":29688,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5937.6,"last_update":"2026-03-22T11:14:27.367986373Z"} +2026/03/22 11:14:27 [metric_collector] {"stage_name":"metric_collector","events_processed":18774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3754.8,"last_update":"2026-03-22T11:14:22.36825216Z"} +2026/03/22 11:14:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7512,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:14:22.381370265Z"} +2026/03/22 11:14:27 [detection_layer] {"stage_name":"detection_layer","events_processed":625,"events_dropped":0,"avg_latency_ms":17.11871351861885,"throughput_eps":0,"last_update":"2026-03-22T11:14:22.479488844Z"} +2026/03/22 11:14:27 [transform_engine] {"stage_name":"transform_engine","events_processed":625,"events_dropped":0,"avg_latency_ms":377.8817940951202,"throughput_eps":0,"last_update":"2026-03-22T11:14:22.479443137Z"} +2026/03/22 11:14:27 ───────────────────────────────────────────────── +2026/03/22 11:14:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:14:32 [metric_collector] {"stage_name":"metric_collector","events_processed":18779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3755.8,"last_update":"2026-03-22T11:14:27.36868919Z"} +2026/03/22 11:14:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:14:27.377062447Z"} +2026/03/22 11:14:32 [detection_layer] {"stage_name":"detection_layer","events_processed":625,"events_dropped":0,"avg_latency_ms":17.11871351861885,"throughput_eps":0,"last_update":"2026-03-22T11:14:27.479433019Z"} +2026/03/22 11:14:32 [transform_engine] {"stage_name":"transform_engine","events_processed":626,"events_dropped":0,"avg_latency_ms":380.2931568760962,"throughput_eps":0,"last_update":"2026-03-22T11:14:27.869265574Z"} +2026/03/22 11:14:32 [log_collector] {"stage_name":"log_collector","events_processed":29688,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5937.6,"last_update":"2026-03-22T11:14:27.367986373Z"} +2026/03/22 11:14:32 ───────────────────────────────────────────────── +2026/03/22 11:14:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:14:37 [transform_engine] {"stage_name":"transform_engine","events_processed":626,"events_dropped":0,"avg_latency_ms":380.2931568760962,"throughput_eps":0,"last_update":"2026-03-22T11:14:32.479480195Z"} +2026/03/22 11:14:37 [log_collector] {"stage_name":"log_collector","events_processed":29689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5937.8,"last_update":"2026-03-22T11:14:32.368926219Z"} +2026/03/22 11:14:37 [metric_collector] {"stage_name":"metric_collector","events_processed":18784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3756.8,"last_update":"2026-03-22T11:14:32.36914625Z"} +2026/03/22 11:14:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:14:32.378045525Z"} +2026/03/22 11:14:37 [detection_layer] {"stage_name":"detection_layer","events_processed":626,"events_dropped":0,"avg_latency_ms":17.667567414895082,"throughput_eps":0,"last_update":"2026-03-22T11:14:32.479431031Z"} +2026/03/22 11:14:37 ───────────────────────────────────────────────── +2026/03/22 11:14:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:14:42 [log_collector] {"stage_name":"log_collector","events_processed":29703,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5940.6,"last_update":"2026-03-22T11:14:37.368895069Z"} +2026/03/22 11:14:42 [metric_collector] {"stage_name":"metric_collector","events_processed":18789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3757.8,"last_update":"2026-03-22T11:14:37.369072358Z"} +2026/03/22 11:14:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:14:37.377232768Z"} +2026/03/22 11:14:42 [detection_layer] {"stage_name":"detection_layer","events_processed":626,"events_dropped":0,"avg_latency_ms":17.667567414895082,"throughput_eps":0,"last_update":"2026-03-22T11:14:37.479479764Z"} +2026/03/22 11:14:42 [transform_engine] {"stage_name":"transform_engine","events_processed":626,"events_dropped":0,"avg_latency_ms":380.2931568760962,"throughput_eps":0,"last_update":"2026-03-22T11:14:37.479455377Z"} +2026/03/22 11:14:42 ───────────────────────────────────────────────── +2026/03/22 11:14:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:14:47 [metric_collector] {"stage_name":"metric_collector","events_processed":18794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3758.8,"last_update":"2026-03-22T11:14:42.368464347Z"} +2026/03/22 11:14:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7520,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:14:42.377606948Z"} +2026/03/22 11:14:47 [detection_layer] {"stage_name":"detection_layer","events_processed":626,"events_dropped":0,"avg_latency_ms":17.667567414895082,"throughput_eps":0,"last_update":"2026-03-22T11:14:42.479997849Z"} +2026/03/22 11:14:47 [transform_engine] {"stage_name":"transform_engine","events_processed":626,"events_dropped":0,"avg_latency_ms":380.2931568760962,"throughput_eps":0,"last_update":"2026-03-22T11:14:42.478834671Z"} +2026/03/22 11:14:47 [log_collector] {"stage_name":"log_collector","events_processed":29705,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5941,"last_update":"2026-03-22T11:14:47.368090328Z"} +2026/03/22 11:14:47 ───────────────────────────────────────────────── +2026/03/22 11:14:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:14:52 [detection_layer] {"stage_name":"detection_layer","events_processed":626,"events_dropped":0,"avg_latency_ms":17.667567414895082,"throughput_eps":0,"last_update":"2026-03-22T11:14:47.479276545Z"} +2026/03/22 11:14:52 [transform_engine] {"stage_name":"transform_engine","events_processed":626,"events_dropped":0,"avg_latency_ms":380.2931568760962,"throughput_eps":0,"last_update":"2026-03-22T11:14:47.479329476Z"} +2026/03/22 11:14:52 [log_collector] {"stage_name":"log_collector","events_processed":29705,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5941,"last_update":"2026-03-22T11:14:47.368090328Z"} +2026/03/22 11:14:52 [metric_collector] {"stage_name":"metric_collector","events_processed":18799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3759.8,"last_update":"2026-03-22T11:14:47.368756413Z"} +2026/03/22 11:14:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7522,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:14:47.378933475Z"} +2026/03/22 11:14:52 ───────────────────────────────────────────────── +2026/03/22 11:14:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:14:57 [detection_layer] {"stage_name":"detection_layer","events_processed":626,"events_dropped":0,"avg_latency_ms":17.667567414895082,"throughput_eps":0,"last_update":"2026-03-22T11:14:52.479569045Z"} +2026/03/22 11:14:57 [transform_engine] {"stage_name":"transform_engine","events_processed":626,"events_dropped":0,"avg_latency_ms":380.2931568760962,"throughput_eps":0,"last_update":"2026-03-22T11:14:52.47951921Z"} +2026/03/22 11:14:57 [log_collector] {"stage_name":"log_collector","events_processed":29705,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5941,"last_update":"2026-03-22T11:14:57.368055597Z"} +2026/03/22 11:14:57 [metric_collector] {"stage_name":"metric_collector","events_processed":18804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3760.8,"last_update":"2026-03-22T11:14:52.369030417Z"} +2026/03/22 11:14:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:14:52.378376919Z"} +2026/03/22 11:14:57 ───────────────────────────────────────────────── +2026/03/22 11:15:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:15:02 [log_collector] {"stage_name":"log_collector","events_processed":29705,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5941,"last_update":"2026-03-22T11:14:57.368055597Z"} +2026/03/22 11:15:02 [metric_collector] {"stage_name":"metric_collector","events_processed":18809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3761.8,"last_update":"2026-03-22T11:14:57.368619777Z"} +2026/03/22 11:15:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7526,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:14:57.377978322Z"} +2026/03/22 11:15:02 [detection_layer] {"stage_name":"detection_layer","events_processed":626,"events_dropped":0,"avg_latency_ms":17.667567414895082,"throughput_eps":0,"last_update":"2026-03-22T11:14:57.479316748Z"} +2026/03/22 11:15:02 [transform_engine] {"stage_name":"transform_engine","events_processed":627,"events_dropped":0,"avg_latency_ms":327.6704107008769,"throughput_eps":0,"last_update":"2026-03-22T11:14:57.596647584Z"} +2026/03/22 11:15:02 ───────────────────────────────────────────────── +2026/03/22 11:15:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:15:07 [transform_engine] {"stage_name":"transform_engine","events_processed":627,"events_dropped":0,"avg_latency_ms":327.6704107008769,"throughput_eps":0,"last_update":"2026-03-22T11:15:02.479292038Z"} +2026/03/22 11:15:07 [log_collector] {"stage_name":"log_collector","events_processed":29705,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5941,"last_update":"2026-03-22T11:15:07.36822617Z"} +2026/03/22 11:15:07 [metric_collector] {"stage_name":"metric_collector","events_processed":18814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3762.8,"last_update":"2026-03-22T11:15:02.3690302Z"} +2026/03/22 11:15:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:15:02.378993754Z"} +2026/03/22 11:15:07 [detection_layer] {"stage_name":"detection_layer","events_processed":627,"events_dropped":0,"avg_latency_ms":18.248817131916066,"throughput_eps":0,"last_update":"2026-03-22T11:15:02.479317527Z"} +2026/03/22 11:15:07 ───────────────────────────────────────────────── +2026/03/22 11:15:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:15:12 [detection_layer] {"stage_name":"detection_layer","events_processed":627,"events_dropped":0,"avg_latency_ms":18.248817131916066,"throughput_eps":0,"last_update":"2026-03-22T11:15:07.479082546Z"} +2026/03/22 11:15:12 [transform_engine] {"stage_name":"transform_engine","events_processed":627,"events_dropped":0,"avg_latency_ms":327.6704107008769,"throughput_eps":0,"last_update":"2026-03-22T11:15:07.479052118Z"} +2026/03/22 11:15:12 [log_collector] {"stage_name":"log_collector","events_processed":29705,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5941,"last_update":"2026-03-22T11:15:07.36822617Z"} +2026/03/22 11:15:12 [metric_collector] {"stage_name":"metric_collector","events_processed":18819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3763.8,"last_update":"2026-03-22T11:15:07.368733942Z"} +2026/03/22 11:15:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:15:07.376825871Z"} +2026/03/22 11:15:12 ───────────────────────────────────────────────── +2026/03/22 11:15:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:15:17 [transform_engine] {"stage_name":"transform_engine","events_processed":627,"events_dropped":0,"avg_latency_ms":327.6704107008769,"throughput_eps":0,"last_update":"2026-03-22T11:15:12.479545516Z"} +2026/03/22 11:15:17 [log_collector] {"stage_name":"log_collector","events_processed":29705,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5941,"last_update":"2026-03-22T11:15:12.3690125Z"} +2026/03/22 11:15:17 [metric_collector] {"stage_name":"metric_collector","events_processed":18824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3764.8,"last_update":"2026-03-22T11:15:12.369427075Z"} +2026/03/22 11:15:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7532,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:15:12.379259727Z"} +2026/03/22 11:15:17 [detection_layer] {"stage_name":"detection_layer","events_processed":627,"events_dropped":0,"avg_latency_ms":18.248817131916066,"throughput_eps":0,"last_update":"2026-03-22T11:15:12.479571526Z"} +2026/03/22 11:15:17 ───────────────────────────────────────────────── +2026/03/22 11:15:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:15:22 [log_collector] {"stage_name":"log_collector","events_processed":29705,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5941,"last_update":"2026-03-22T11:15:17.368671354Z"} +2026/03/22 11:15:22 [metric_collector] {"stage_name":"metric_collector","events_processed":18829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3765.8,"last_update":"2026-03-22T11:15:17.368839896Z"} +2026/03/22 11:15:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:15:17.378148636Z"} +2026/03/22 11:15:22 [detection_layer] {"stage_name":"detection_layer","events_processed":627,"events_dropped":0,"avg_latency_ms":18.248817131916066,"throughput_eps":0,"last_update":"2026-03-22T11:15:17.479400255Z"} +2026/03/22 11:15:22 [transform_engine] {"stage_name":"transform_engine","events_processed":627,"events_dropped":0,"avg_latency_ms":327.6704107008769,"throughput_eps":0,"last_update":"2026-03-22T11:15:17.479430613Z"} +2026/03/22 11:15:22 ───────────────────────────────────────────────── +2026/03/22 11:15:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:15:27 [metric_collector] {"stage_name":"metric_collector","events_processed":18839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3767.8,"last_update":"2026-03-22T11:15:27.368734238Z"} +2026/03/22 11:15:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7536,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:15:22.376686075Z"} +2026/03/22 11:15:27 [detection_layer] {"stage_name":"detection_layer","events_processed":627,"events_dropped":0,"avg_latency_ms":18.248817131916066,"throughput_eps":0,"last_update":"2026-03-22T11:15:22.479927557Z"} +2026/03/22 11:15:27 [transform_engine] {"stage_name":"transform_engine","events_processed":627,"events_dropped":0,"avg_latency_ms":327.6704107008769,"throughput_eps":0,"last_update":"2026-03-22T11:15:22.478818132Z"} +2026/03/22 11:15:27 [log_collector] {"stage_name":"log_collector","events_processed":29705,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5941,"last_update":"2026-03-22T11:15:22.367998235Z"} +2026/03/22 11:15:27 ───────────────────────────────────────────────── +2026/03/22 11:15:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:15:32 [log_collector] {"stage_name":"log_collector","events_processed":29705,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5941,"last_update":"2026-03-22T11:15:27.368765487Z"} +2026/03/22 11:15:32 [metric_collector] {"stage_name":"metric_collector","events_processed":18839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3767.8,"last_update":"2026-03-22T11:15:27.368734238Z"} +2026/03/22 11:15:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:15:27.376831988Z"} +2026/03/22 11:15:32 [detection_layer] {"stage_name":"detection_layer","events_processed":627,"events_dropped":0,"avg_latency_ms":18.248817131916066,"throughput_eps":0,"last_update":"2026-03-22T11:15:27.479079074Z"} +2026/03/22 11:15:32 [transform_engine] {"stage_name":"transform_engine","events_processed":628,"events_dropped":0,"avg_latency_ms":275.3442059607015,"throughput_eps":0,"last_update":"2026-03-22T11:15:27.545177906Z"} +2026/03/22 11:15:32 ───────────────────────────────────────────────── +2026/03/22 11:15:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:15:37 [log_collector] {"stage_name":"log_collector","events_processed":29705,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5941,"last_update":"2026-03-22T11:15:32.368827454Z"} +2026/03/22 11:15:37 [metric_collector] {"stage_name":"metric_collector","events_processed":18844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3768.8,"last_update":"2026-03-22T11:15:32.369093323Z"} +2026/03/22 11:15:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7540,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:15:32.377747839Z"} +2026/03/22 11:15:37 [detection_layer] {"stage_name":"detection_layer","events_processed":628,"events_dropped":0,"avg_latency_ms":17.914740505532855,"throughput_eps":0,"last_update":"2026-03-22T11:15:32.478996354Z"} +2026/03/22 11:15:37 [transform_engine] {"stage_name":"transform_engine","events_processed":628,"events_dropped":0,"avg_latency_ms":275.3442059607015,"throughput_eps":0,"last_update":"2026-03-22T11:15:32.478954874Z"} +2026/03/22 11:15:37 ───────────────────────────────────────────────── +2026/03/22 11:15:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:15:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7542,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:15:37.379045414Z"} +2026/03/22 11:15:42 [detection_layer] {"stage_name":"detection_layer","events_processed":628,"events_dropped":0,"avg_latency_ms":17.914740505532855,"throughput_eps":0,"last_update":"2026-03-22T11:15:37.479299803Z"} +2026/03/22 11:15:42 [transform_engine] {"stage_name":"transform_engine","events_processed":628,"events_dropped":0,"avg_latency_ms":275.3442059607015,"throughput_eps":0,"last_update":"2026-03-22T11:15:37.479316295Z"} +2026/03/22 11:15:42 [log_collector] {"stage_name":"log_collector","events_processed":29705,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5941,"last_update":"2026-03-22T11:15:37.36895677Z"} +2026/03/22 11:15:42 [metric_collector] {"stage_name":"metric_collector","events_processed":18849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3769.8,"last_update":"2026-03-22T11:15:37.369700425Z"} +2026/03/22 11:15:42 ───────────────────────────────────────────────── +Saved state: 14 clusters, 29706 messages, reason: none +2026/03/22 11:15:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:15:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:15:42.377219459Z"} +2026/03/22 11:15:47 [detection_layer] {"stage_name":"detection_layer","events_processed":628,"events_dropped":0,"avg_latency_ms":17.914740505532855,"throughput_eps":0,"last_update":"2026-03-22T11:15:42.479464682Z"} +2026/03/22 11:15:47 [transform_engine] {"stage_name":"transform_engine","events_processed":628,"events_dropped":0,"avg_latency_ms":275.3442059607015,"throughput_eps":0,"last_update":"2026-03-22T11:15:42.479482707Z"} +2026/03/22 11:15:47 [log_collector] {"stage_name":"log_collector","events_processed":29705,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5941,"last_update":"2026-03-22T11:15:42.368172311Z"} +2026/03/22 11:15:47 [metric_collector] {"stage_name":"metric_collector","events_processed":18854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3770.8,"last_update":"2026-03-22T11:15:42.368282752Z"} +2026/03/22 11:15:47 ───────────────────────────────────────────────── +2026/03/22 11:15:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:15:52 [metric_collector] {"stage_name":"metric_collector","events_processed":18859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3771.8,"last_update":"2026-03-22T11:15:47.368849735Z"} +2026/03/22 11:15:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:15:47.375369513Z"} +2026/03/22 11:15:52 [detection_layer] {"stage_name":"detection_layer","events_processed":628,"events_dropped":0,"avg_latency_ms":17.914740505532855,"throughput_eps":0,"last_update":"2026-03-22T11:15:47.479566965Z"} +2026/03/22 11:15:52 [transform_engine] {"stage_name":"transform_engine","events_processed":628,"events_dropped":0,"avg_latency_ms":275.3442059607015,"throughput_eps":0,"last_update":"2026-03-22T11:15:47.479580642Z"} +2026/03/22 11:15:52 [log_collector] {"stage_name":"log_collector","events_processed":29708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5941.6,"last_update":"2026-03-22T11:15:47.368677636Z"} +2026/03/22 11:15:52 ───────────────────────────────────────────────── +2026/03/22 11:15:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:15:57 [log_collector] {"stage_name":"log_collector","events_processed":29719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5943.8,"last_update":"2026-03-22T11:15:52.368040154Z"} +2026/03/22 11:15:57 [metric_collector] {"stage_name":"metric_collector","events_processed":18864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3772.8,"last_update":"2026-03-22T11:15:52.368343565Z"} +2026/03/22 11:15:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:15:52.375777343Z"} +2026/03/22 11:15:57 [detection_layer] {"stage_name":"detection_layer","events_processed":628,"events_dropped":0,"avg_latency_ms":17.914740505532855,"throughput_eps":0,"last_update":"2026-03-22T11:15:52.47898016Z"} +2026/03/22 11:15:57 [transform_engine] {"stage_name":"transform_engine","events_processed":628,"events_dropped":0,"avg_latency_ms":275.3442059607015,"throughput_eps":0,"last_update":"2026-03-22T11:15:52.478997504Z"} +2026/03/22 11:15:57 ───────────────────────────────────────────────── +2026/03/22 11:16:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:16:02 [log_collector] {"stage_name":"log_collector","events_processed":29719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5943.8,"last_update":"2026-03-22T11:16:02.369139306Z"} +2026/03/22 11:16:02 [metric_collector] {"stage_name":"metric_collector","events_processed":18874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3774.8,"last_update":"2026-03-22T11:16:02.369069492Z"} +2026/03/22 11:16:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:15:57.37539361Z"} +2026/03/22 11:16:02 [detection_layer] {"stage_name":"detection_layer","events_processed":628,"events_dropped":0,"avg_latency_ms":17.914740505532855,"throughput_eps":0,"last_update":"2026-03-22T11:15:57.479635307Z"} +2026/03/22 11:16:02 [transform_engine] {"stage_name":"transform_engine","events_processed":629,"events_dropped":0,"avg_latency_ms":241.30475896856123,"throughput_eps":0,"last_update":"2026-03-22T11:15:57.584800374Z"} +2026/03/22 11:16:02 ───────────────────────────────────────────────── +2026/03/22 11:16:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:16:07 [detection_layer] {"stage_name":"detection_layer","events_processed":629,"events_dropped":0,"avg_latency_ms":17.445107404426285,"throughput_eps":0,"last_update":"2026-03-22T11:16:02.479391917Z"} +2026/03/22 11:16:07 [transform_engine] {"stage_name":"transform_engine","events_processed":629,"events_dropped":0,"avg_latency_ms":241.30475896856123,"throughput_eps":0,"last_update":"2026-03-22T11:16:02.479372349Z"} +2026/03/22 11:16:07 [log_collector] {"stage_name":"log_collector","events_processed":29719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5943.8,"last_update":"2026-03-22T11:16:02.369139306Z"} +2026/03/22 11:16:07 [metric_collector] {"stage_name":"metric_collector","events_processed":18874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3774.8,"last_update":"2026-03-22T11:16:02.369069492Z"} +2026/03/22 11:16:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:16:02.379136063Z"} +2026/03/22 11:16:07 ───────────────────────────────────────────────── +2026/03/22 11:16:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:16:12 [detection_layer] {"stage_name":"detection_layer","events_processed":629,"events_dropped":0,"avg_latency_ms":17.445107404426285,"throughput_eps":0,"last_update":"2026-03-22T11:16:07.479164819Z"} +2026/03/22 11:16:12 [transform_engine] {"stage_name":"transform_engine","events_processed":629,"events_dropped":0,"avg_latency_ms":241.30475896856123,"throughput_eps":0,"last_update":"2026-03-22T11:16:07.479112349Z"} +2026/03/22 11:16:12 [log_collector] {"stage_name":"log_collector","events_processed":29719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5943.8,"last_update":"2026-03-22T11:16:12.36815017Z"} +2026/03/22 11:16:12 [metric_collector] {"stage_name":"metric_collector","events_processed":18879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3775.8,"last_update":"2026-03-22T11:16:07.368776649Z"} +2026/03/22 11:16:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:16:07.37594557Z"} +2026/03/22 11:16:12 ───────────────────────────────────────────────── +2026/03/22 11:16:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:16:17 [log_collector] {"stage_name":"log_collector","events_processed":29719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5943.8,"last_update":"2026-03-22T11:16:12.36815017Z"} +2026/03/22 11:16:17 [metric_collector] {"stage_name":"metric_collector","events_processed":18884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3776.8,"last_update":"2026-03-22T11:16:12.368639597Z"} +2026/03/22 11:16:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:16:12.376990452Z"} +2026/03/22 11:16:17 [detection_layer] {"stage_name":"detection_layer","events_processed":629,"events_dropped":0,"avg_latency_ms":17.445107404426285,"throughput_eps":0,"last_update":"2026-03-22T11:16:12.479218774Z"} +2026/03/22 11:16:17 [transform_engine] {"stage_name":"transform_engine","events_processed":629,"events_dropped":0,"avg_latency_ms":241.30475896856123,"throughput_eps":0,"last_update":"2026-03-22T11:16:12.479186992Z"} +2026/03/22 11:16:17 ───────────────────────────────────────────────── +2026/03/22 11:16:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:16:22 [log_collector] {"stage_name":"log_collector","events_processed":29719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5943.8,"last_update":"2026-03-22T11:16:22.368517946Z"} +2026/03/22 11:16:22 [metric_collector] {"stage_name":"metric_collector","events_processed":18889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3777.8,"last_update":"2026-03-22T11:16:17.368964013Z"} +2026/03/22 11:16:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:16:17.376538231Z"} +2026/03/22 11:16:22 [detection_layer] {"stage_name":"detection_layer","events_processed":629,"events_dropped":0,"avg_latency_ms":17.445107404426285,"throughput_eps":0,"last_update":"2026-03-22T11:16:17.479868122Z"} +2026/03/22 11:16:22 [transform_engine] {"stage_name":"transform_engine","events_processed":629,"events_dropped":0,"avg_latency_ms":241.30475896856123,"throughput_eps":0,"last_update":"2026-03-22T11:16:17.479829087Z"} +2026/03/22 11:16:22 ───────────────────────────────────────────────── +2026/03/22 11:16:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:16:27 [log_collector] {"stage_name":"log_collector","events_processed":29719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5943.8,"last_update":"2026-03-22T11:16:22.368517946Z"} +2026/03/22 11:16:27 [metric_collector] {"stage_name":"metric_collector","events_processed":18894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3778.8,"last_update":"2026-03-22T11:16:22.369299834Z"} +2026/03/22 11:16:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7560,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:16:22.376211361Z"} +2026/03/22 11:16:27 [detection_layer] {"stage_name":"detection_layer","events_processed":629,"events_dropped":0,"avg_latency_ms":17.445107404426285,"throughput_eps":0,"last_update":"2026-03-22T11:16:22.47950293Z"} +2026/03/22 11:16:27 [transform_engine] {"stage_name":"transform_engine","events_processed":629,"events_dropped":0,"avg_latency_ms":241.30475896856123,"throughput_eps":0,"last_update":"2026-03-22T11:16:22.479442133Z"} +2026/03/22 11:16:27 ───────────────────────────────────────────────── +2026/03/22 11:16:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:16:32 [log_collector] {"stage_name":"log_collector","events_processed":29719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5943.8,"last_update":"2026-03-22T11:16:27.368210568Z"} +2026/03/22 11:16:32 [metric_collector] {"stage_name":"metric_collector","events_processed":18899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3779.8,"last_update":"2026-03-22T11:16:27.368821588Z"} +2026/03/22 11:16:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:16:27.377381182Z"} +2026/03/22 11:16:32 [detection_layer] {"stage_name":"detection_layer","events_processed":629,"events_dropped":0,"avg_latency_ms":17.445107404426285,"throughput_eps":0,"last_update":"2026-03-22T11:16:27.479761074Z"} +2026/03/22 11:16:32 [transform_engine] {"stage_name":"transform_engine","events_processed":630,"events_dropped":0,"avg_latency_ms":209.971154774849,"throughput_eps":0,"last_update":"2026-03-22T11:16:27.564440663Z"} +2026/03/22 11:16:32 ───────────────────────────────────────────────── +2026/03/22 11:16:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:16:37 [metric_collector] {"stage_name":"metric_collector","events_processed":18904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3780.8,"last_update":"2026-03-22T11:16:32.368203766Z"} +2026/03/22 11:16:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:16:32.378340842Z"} +2026/03/22 11:16:37 [detection_layer] {"stage_name":"detection_layer","events_processed":630,"events_dropped":0,"avg_latency_ms":18.489627123541027,"throughput_eps":0,"last_update":"2026-03-22T11:16:32.47971092Z"} +2026/03/22 11:16:37 [transform_engine] {"stage_name":"transform_engine","events_processed":630,"events_dropped":0,"avg_latency_ms":209.971154774849,"throughput_eps":0,"last_update":"2026-03-22T11:16:32.479728403Z"} +2026/03/22 11:16:37 [log_collector] {"stage_name":"log_collector","events_processed":29719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5943.8,"last_update":"2026-03-22T11:16:37.368061359Z"} +2026/03/22 11:16:37 ───────────────────────────────────────────────── +2026/03/22 11:16:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:16:42 [metric_collector] {"stage_name":"metric_collector","events_processed":18909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3781.8,"last_update":"2026-03-22T11:16:37.368675024Z"} +2026/03/22 11:16:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7566,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:16:37.378406944Z"} +2026/03/22 11:16:42 [detection_layer] {"stage_name":"detection_layer","events_processed":630,"events_dropped":0,"avg_latency_ms":18.489627123541027,"throughput_eps":0,"last_update":"2026-03-22T11:16:37.479899576Z"} +2026/03/22 11:16:42 [transform_engine] {"stage_name":"transform_engine","events_processed":630,"events_dropped":0,"avg_latency_ms":209.971154774849,"throughput_eps":0,"last_update":"2026-03-22T11:16:37.479915036Z"} +2026/03/22 11:16:42 [log_collector] {"stage_name":"log_collector","events_processed":29719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5943.8,"last_update":"2026-03-22T11:16:42.367987477Z"} +2026/03/22 11:16:42 ───────────────────────────────────────────────── +2026/03/22 11:16:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:16:47 [metric_collector] {"stage_name":"metric_collector","events_processed":18914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3782.8,"last_update":"2026-03-22T11:16:42.368775956Z"} +2026/03/22 11:16:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:16:42.377699689Z"} +2026/03/22 11:16:47 [detection_layer] {"stage_name":"detection_layer","events_processed":630,"events_dropped":0,"avg_latency_ms":18.489627123541027,"throughput_eps":0,"last_update":"2026-03-22T11:16:42.479952908Z"} +2026/03/22 11:16:47 [transform_engine] {"stage_name":"transform_engine","events_processed":630,"events_dropped":0,"avg_latency_ms":209.971154774849,"throughput_eps":0,"last_update":"2026-03-22T11:16:42.478827763Z"} +2026/03/22 11:16:47 [log_collector] {"stage_name":"log_collector","events_processed":29719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5943.8,"last_update":"2026-03-22T11:16:47.368168313Z"} +2026/03/22 11:16:47 ───────────────────────────────────────────────── +2026/03/22 11:16:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:16:52 [detection_layer] {"stage_name":"detection_layer","events_processed":630,"events_dropped":0,"avg_latency_ms":18.489627123541027,"throughput_eps":0,"last_update":"2026-03-22T11:16:47.479226658Z"} +2026/03/22 11:16:52 [transform_engine] {"stage_name":"transform_engine","events_processed":630,"events_dropped":0,"avg_latency_ms":209.971154774849,"throughput_eps":0,"last_update":"2026-03-22T11:16:47.47924391Z"} +2026/03/22 11:16:52 [log_collector] {"stage_name":"log_collector","events_processed":29719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5943.8,"last_update":"2026-03-22T11:16:47.368168313Z"} +2026/03/22 11:16:52 [metric_collector] {"stage_name":"metric_collector","events_processed":18919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3783.8,"last_update":"2026-03-22T11:16:47.368848917Z"} +2026/03/22 11:16:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7570,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:16:47.377865436Z"} +2026/03/22 11:16:52 ───────────────────────────────────────────────── +Saved state: 14 clusters, 29720 messages, reason: none +2026/03/22 11:16:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:16:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7572,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:16:52.376536124Z"} +2026/03/22 11:16:57 [detection_layer] {"stage_name":"detection_layer","events_processed":630,"events_dropped":0,"avg_latency_ms":18.489627123541027,"throughput_eps":0,"last_update":"2026-03-22T11:16:52.479781063Z"} +2026/03/22 11:16:57 [transform_engine] {"stage_name":"transform_engine","events_processed":630,"events_dropped":0,"avg_latency_ms":209.971154774849,"throughput_eps":0,"last_update":"2026-03-22T11:16:52.479794628Z"} +2026/03/22 11:16:57 [log_collector] {"stage_name":"log_collector","events_processed":29719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5943.8,"last_update":"2026-03-22T11:16:52.367959526Z"} +2026/03/22 11:16:57 [metric_collector] {"stage_name":"metric_collector","events_processed":18924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3784.8,"last_update":"2026-03-22T11:16:52.368493429Z"} +2026/03/22 11:16:57 ───────────────────────────────────────────────── +2026/03/22 11:17:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:17:02 [log_collector] {"stage_name":"log_collector","events_processed":29724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5944.8,"last_update":"2026-03-22T11:16:57.368476742Z"} +2026/03/22 11:17:02 [metric_collector] {"stage_name":"metric_collector","events_processed":18929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3785.8,"last_update":"2026-03-22T11:16:57.368770796Z"} +2026/03/22 11:17:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:16:57.379968002Z"} +2026/03/22 11:17:02 [detection_layer] {"stage_name":"detection_layer","events_processed":630,"events_dropped":0,"avg_latency_ms":18.489627123541027,"throughput_eps":0,"last_update":"2026-03-22T11:16:57.479188353Z"} +2026/03/22 11:17:02 [transform_engine] {"stage_name":"transform_engine","events_processed":631,"events_dropped":0,"avg_latency_ms":537.2287964198792,"throughput_eps":0,"last_update":"2026-03-22T11:16:59.325463898Z"} +2026/03/22 11:17:02 ───────────────────────────────────────────────── +2026/03/22 11:17:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:17:07 [log_collector] {"stage_name":"log_collector","events_processed":29724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5944.8,"last_update":"2026-03-22T11:17:02.368723413Z"} +2026/03/22 11:17:07 [metric_collector] {"stage_name":"metric_collector","events_processed":18934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3786.8,"last_update":"2026-03-22T11:17:02.369124351Z"} +2026/03/22 11:17:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7576,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:17:02.378908903Z"} +2026/03/22 11:17:07 [detection_layer] {"stage_name":"detection_layer","events_processed":631,"events_dropped":0,"avg_latency_ms":17.617720498832824,"throughput_eps":0,"last_update":"2026-03-22T11:17:02.48000189Z"} +2026/03/22 11:17:07 [transform_engine] {"stage_name":"transform_engine","events_processed":631,"events_dropped":0,"avg_latency_ms":537.2287964198792,"throughput_eps":0,"last_update":"2026-03-22T11:17:02.479980399Z"} +2026/03/22 11:17:07 ───────────────────────────────────────────────── +2026/03/22 11:17:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:17:12 [log_collector] {"stage_name":"log_collector","events_processed":29724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5944.8,"last_update":"2026-03-22T11:17:07.367967076Z"} +2026/03/22 11:17:12 [metric_collector] {"stage_name":"metric_collector","events_processed":18939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3787.8,"last_update":"2026-03-22T11:17:07.368270047Z"} +2026/03/22 11:17:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:17:07.375241088Z"} +2026/03/22 11:17:12 [detection_layer] {"stage_name":"detection_layer","events_processed":631,"events_dropped":0,"avg_latency_ms":17.617720498832824,"throughput_eps":0,"last_update":"2026-03-22T11:17:07.479535618Z"} +2026/03/22 11:17:12 [transform_engine] {"stage_name":"transform_engine","events_processed":631,"events_dropped":0,"avg_latency_ms":537.2287964198792,"throughput_eps":0,"last_update":"2026-03-22T11:17:07.479463429Z"} +2026/03/22 11:17:12 ───────────────────────────────────────────────── +2026/03/22 11:17:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:17:17 [log_collector] {"stage_name":"log_collector","events_processed":29724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5944.8,"last_update":"2026-03-22T11:17:12.36796191Z"} +2026/03/22 11:17:17 [metric_collector] {"stage_name":"metric_collector","events_processed":18944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3788.8,"last_update":"2026-03-22T11:17:12.368523116Z"} +2026/03/22 11:17:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7580,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:17:12.374729482Z"} +2026/03/22 11:17:17 [detection_layer] {"stage_name":"detection_layer","events_processed":631,"events_dropped":0,"avg_latency_ms":17.617720498832824,"throughput_eps":0,"last_update":"2026-03-22T11:17:12.478947425Z"} +2026/03/22 11:17:17 [transform_engine] {"stage_name":"transform_engine","events_processed":631,"events_dropped":0,"avg_latency_ms":537.2287964198792,"throughput_eps":0,"last_update":"2026-03-22T11:17:12.478900004Z"} +2026/03/22 11:17:17 ───────────────────────────────────────────────── +2026/03/22 11:17:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:17:22 [log_collector] {"stage_name":"log_collector","events_processed":29724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5944.8,"last_update":"2026-03-22T11:17:17.367950504Z"} +2026/03/22 11:17:22 [metric_collector] {"stage_name":"metric_collector","events_processed":18949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3789.8,"last_update":"2026-03-22T11:17:17.368404585Z"} +2026/03/22 11:17:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:17:17.376250973Z"} +2026/03/22 11:17:22 [detection_layer] {"stage_name":"detection_layer","events_processed":631,"events_dropped":0,"avg_latency_ms":17.617720498832824,"throughput_eps":0,"last_update":"2026-03-22T11:17:17.479470814Z"} +2026/03/22 11:17:22 [transform_engine] {"stage_name":"transform_engine","events_processed":631,"events_dropped":0,"avg_latency_ms":537.2287964198792,"throughput_eps":0,"last_update":"2026-03-22T11:17:17.47945298Z"} +2026/03/22 11:17:22 ───────────────────────────────────────────────── +2026/03/22 11:17:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:17:27 [log_collector] {"stage_name":"log_collector","events_processed":29724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5944.8,"last_update":"2026-03-22T11:17:22.367950964Z"} +2026/03/22 11:17:27 [metric_collector] {"stage_name":"metric_collector","events_processed":18954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3790.8,"last_update":"2026-03-22T11:17:22.368488614Z"} +2026/03/22 11:17:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:17:22.376038886Z"} +2026/03/22 11:17:27 [detection_layer] {"stage_name":"detection_layer","events_processed":631,"events_dropped":0,"avg_latency_ms":17.617720498832824,"throughput_eps":0,"last_update":"2026-03-22T11:17:22.479286029Z"} +2026/03/22 11:17:27 [transform_engine] {"stage_name":"transform_engine","events_processed":631,"events_dropped":0,"avg_latency_ms":537.2287964198792,"throughput_eps":0,"last_update":"2026-03-22T11:17:22.479315125Z"} +2026/03/22 11:17:27 ───────────────────────────────────────────────── +2026/03/22 11:17:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:17:32 [log_collector] {"stage_name":"log_collector","events_processed":29724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5944.8,"last_update":"2026-03-22T11:17:27.367980031Z"} +2026/03/22 11:17:32 [metric_collector] {"stage_name":"metric_collector","events_processed":18959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3791.8,"last_update":"2026-03-22T11:17:27.368559701Z"} +2026/03/22 11:17:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7586,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:17:27.37756491Z"} +2026/03/22 11:17:32 [detection_layer] {"stage_name":"detection_layer","events_processed":631,"events_dropped":0,"avg_latency_ms":17.617720498832824,"throughput_eps":0,"last_update":"2026-03-22T11:17:27.479805295Z"} +2026/03/22 11:17:32 [transform_engine] {"stage_name":"transform_engine","events_processed":632,"events_dropped":0,"avg_latency_ms":1031.1962455359035,"throughput_eps":0,"last_update":"2026-03-22T11:17:30.486899942Z"} +2026/03/22 11:17:32 ───────────────────────────────────────────────── +2026/03/22 11:17:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:17:37 [log_collector] {"stage_name":"log_collector","events_processed":29724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5944.8,"last_update":"2026-03-22T11:17:32.367947553Z"} +2026/03/22 11:17:37 [metric_collector] {"stage_name":"metric_collector","events_processed":18963,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3792.6,"last_update":"2026-03-22T11:17:32.367938095Z"} +2026/03/22 11:17:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7588,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:17:32.374216681Z"} +2026/03/22 11:17:37 [detection_layer] {"stage_name":"detection_layer","events_processed":632,"events_dropped":0,"avg_latency_ms":17.16315079906626,"throughput_eps":0,"last_update":"2026-03-22T11:17:32.479442494Z"} +2026/03/22 11:17:37 [transform_engine] {"stage_name":"transform_engine","events_processed":632,"events_dropped":0,"avg_latency_ms":1031.1962455359035,"throughput_eps":0,"last_update":"2026-03-22T11:17:32.479457864Z"} +2026/03/22 11:17:37 ───────────────────────────────────────────────── +2026/03/22 11:17:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:17:42 [log_collector] {"stage_name":"log_collector","events_processed":29727,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5945.4,"last_update":"2026-03-22T11:17:37.368576625Z"} +2026/03/22 11:17:42 [metric_collector] {"stage_name":"metric_collector","events_processed":18969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3793.8,"last_update":"2026-03-22T11:17:37.368845961Z"} +2026/03/22 11:17:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:17:37.375637419Z"} +2026/03/22 11:17:42 [detection_layer] {"stage_name":"detection_layer","events_processed":632,"events_dropped":0,"avg_latency_ms":17.16315079906626,"throughput_eps":0,"last_update":"2026-03-22T11:17:37.479883936Z"} +2026/03/22 11:17:42 [transform_engine] {"stage_name":"transform_engine","events_processed":632,"events_dropped":0,"avg_latency_ms":1031.1962455359035,"throughput_eps":0,"last_update":"2026-03-22T11:17:37.479939192Z"} +2026/03/22 11:17:42 ───────────────────────────────────────────────── +2026/03/22 11:17:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:17:47 [detection_layer] {"stage_name":"detection_layer","events_processed":632,"events_dropped":0,"avg_latency_ms":17.16315079906626,"throughput_eps":0,"last_update":"2026-03-22T11:17:42.479622965Z"} +2026/03/22 11:17:47 [transform_engine] {"stage_name":"transform_engine","events_processed":632,"events_dropped":0,"avg_latency_ms":1031.1962455359035,"throughput_eps":0,"last_update":"2026-03-22T11:17:42.479677349Z"} +2026/03/22 11:17:47 [log_collector] {"stage_name":"log_collector","events_processed":29735,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5947,"last_update":"2026-03-22T11:17:42.36798445Z"} +2026/03/22 11:17:47 [metric_collector] {"stage_name":"metric_collector","events_processed":18974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3794.8,"last_update":"2026-03-22T11:17:42.368743143Z"} +2026/03/22 11:17:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7592,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:17:42.377430903Z"} +2026/03/22 11:17:47 ───────────────────────────────────────────────── +2026/03/22 11:17:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:17:52 [detection_layer] {"stage_name":"detection_layer","events_processed":632,"events_dropped":0,"avg_latency_ms":17.16315079906626,"throughput_eps":0,"last_update":"2026-03-22T11:17:47.479890219Z"} +2026/03/22 11:17:52 [transform_engine] {"stage_name":"transform_engine","events_processed":632,"events_dropped":0,"avg_latency_ms":1031.1962455359035,"throughput_eps":0,"last_update":"2026-03-22T11:17:47.479854261Z"} +2026/03/22 11:17:52 [log_collector] {"stage_name":"log_collector","events_processed":29831,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5966.2,"last_update":"2026-03-22T11:17:47.368453961Z"} +2026/03/22 11:17:52 [metric_collector] {"stage_name":"metric_collector","events_processed":18979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3795.8,"last_update":"2026-03-22T11:17:47.368732464Z"} +2026/03/22 11:17:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:17:47.382399551Z"} +2026/03/22 11:17:52 ───────────────────────────────────────────────── +Saved state: 14 clusters, 30087 messages, reason: cluster_template_changed +Saved state: 15 clusters, 30088 messages, reason: cluster_created +2026/03/22 11:17:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:17:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:17:52.376162629Z"} +2026/03/22 11:17:57 [detection_layer] {"stage_name":"detection_layer","events_processed":632,"events_dropped":0,"avg_latency_ms":17.16315079906626,"throughput_eps":0,"last_update":"2026-03-22T11:17:52.478971253Z"} +2026/03/22 11:17:57 [transform_engine] {"stage_name":"transform_engine","events_processed":632,"events_dropped":0,"avg_latency_ms":1031.1962455359035,"throughput_eps":0,"last_update":"2026-03-22T11:17:52.478987254Z"} +2026/03/22 11:17:57 [log_collector] {"stage_name":"log_collector","events_processed":30012,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6002.4,"last_update":"2026-03-22T11:17:52.368256106Z"} +2026/03/22 11:17:57 [metric_collector] {"stage_name":"metric_collector","events_processed":18984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3796.8,"last_update":"2026-03-22T11:17:52.368782785Z"} +2026/03/22 11:17:57 ───────────────────────────────────────────────── +2026/03/22 11:18:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:18:02 [transform_engine] {"stage_name":"transform_engine","events_processed":633,"events_dropped":0,"avg_latency_ms":850.8397026287229,"throughput_eps":0,"last_update":"2026-03-22T11:17:57.60866592Z"} +2026/03/22 11:18:02 [log_collector] {"stage_name":"log_collector","events_processed":30088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6017.6,"last_update":"2026-03-22T11:17:57.368897431Z"} +2026/03/22 11:18:02 [metric_collector] {"stage_name":"metric_collector","events_processed":18989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3797.8,"last_update":"2026-03-22T11:17:57.36953393Z"} +2026/03/22 11:18:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:17:57.378049901Z"} +2026/03/22 11:18:02 [detection_layer] {"stage_name":"detection_layer","events_processed":632,"events_dropped":0,"avg_latency_ms":17.16315079906626,"throughput_eps":0,"last_update":"2026-03-22T11:17:57.479280693Z"} +2026/03/22 11:18:02 ───────────────────────────────────────────────── +2026/03/22 11:18:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:18:07 [log_collector] {"stage_name":"log_collector","events_processed":30091,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6018.2,"last_update":"2026-03-22T11:18:02.368751891Z"} +2026/03/22 11:18:07 [metric_collector] {"stage_name":"metric_collector","events_processed":18994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3798.8,"last_update":"2026-03-22T11:18:02.368996179Z"} +2026/03/22 11:18:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:18:02.376283787Z"} +2026/03/22 11:18:07 [detection_layer] {"stage_name":"detection_layer","events_processed":633,"events_dropped":0,"avg_latency_ms":17.19352343925301,"throughput_eps":0,"last_update":"2026-03-22T11:18:02.479503438Z"} +2026/03/22 11:18:07 [transform_engine] {"stage_name":"transform_engine","events_processed":633,"events_dropped":0,"avg_latency_ms":850.8397026287229,"throughput_eps":0,"last_update":"2026-03-22T11:18:02.479481546Z"} +2026/03/22 11:18:07 ───────────────────────────────────────────────── +2026/03/22 11:18:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:18:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7602,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:18:07.37705788Z"} +2026/03/22 11:18:12 [detection_layer] {"stage_name":"detection_layer","events_processed":633,"events_dropped":0,"avg_latency_ms":17.19352343925301,"throughput_eps":0,"last_update":"2026-03-22T11:18:07.479439196Z"} +2026/03/22 11:18:12 [transform_engine] {"stage_name":"transform_engine","events_processed":633,"events_dropped":0,"avg_latency_ms":850.8397026287229,"throughput_eps":0,"last_update":"2026-03-22T11:18:07.479319306Z"} +2026/03/22 11:18:12 [log_collector] {"stage_name":"log_collector","events_processed":30101,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6020.2,"last_update":"2026-03-22T11:18:07.368243347Z"} +2026/03/22 11:18:12 [metric_collector] {"stage_name":"metric_collector","events_processed":18999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3799.8,"last_update":"2026-03-22T11:18:07.368577256Z"} +2026/03/22 11:18:12 ───────────────────────────────────────────────── +2026/03/22 11:18:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:18:17 [log_collector] {"stage_name":"log_collector","events_processed":30110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6022,"last_update":"2026-03-22T11:18:12.368738639Z"} +2026/03/22 11:18:17 [metric_collector] {"stage_name":"metric_collector","events_processed":19004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3800.8,"last_update":"2026-03-22T11:18:12.369157432Z"} +2026/03/22 11:18:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:18:12.376475328Z"} +2026/03/22 11:18:17 [detection_layer] {"stage_name":"detection_layer","events_processed":633,"events_dropped":0,"avg_latency_ms":17.19352343925301,"throughput_eps":0,"last_update":"2026-03-22T11:18:12.47981035Z"} +2026/03/22 11:18:17 [transform_engine] {"stage_name":"transform_engine","events_processed":633,"events_dropped":0,"avg_latency_ms":850.8397026287229,"throughput_eps":0,"last_update":"2026-03-22T11:18:12.479829417Z"} +2026/03/22 11:18:17 ───────────────────────────────────────────────── +2026/03/22 11:18:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:18:22 [log_collector] {"stage_name":"log_collector","events_processed":30118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6023.6,"last_update":"2026-03-22T11:18:17.367996603Z"} +2026/03/22 11:18:22 [metric_collector] {"stage_name":"metric_collector","events_processed":19009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3801.8,"last_update":"2026-03-22T11:18:17.368378586Z"} +2026/03/22 11:18:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:18:17.377442004Z"} +2026/03/22 11:18:22 [detection_layer] {"stage_name":"detection_layer","events_processed":633,"events_dropped":0,"avg_latency_ms":17.19352343925301,"throughput_eps":0,"last_update":"2026-03-22T11:18:17.479841695Z"} +2026/03/22 11:18:22 [transform_engine] {"stage_name":"transform_engine","events_processed":633,"events_dropped":0,"avg_latency_ms":850.8397026287229,"throughput_eps":0,"last_update":"2026-03-22T11:18:17.479810476Z"} +2026/03/22 11:18:22 ───────────────────────────────────────────────── +2026/03/22 11:18:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:18:27 [transform_engine] {"stage_name":"transform_engine","events_processed":633,"events_dropped":0,"avg_latency_ms":850.8397026287229,"throughput_eps":0,"last_update":"2026-03-22T11:18:22.479218299Z"} +2026/03/22 11:18:27 [log_collector] {"stage_name":"log_collector","events_processed":30118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6023.6,"last_update":"2026-03-22T11:18:22.368742438Z"} +2026/03/22 11:18:27 [metric_collector] {"stage_name":"metric_collector","events_processed":19014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3802.8,"last_update":"2026-03-22T11:18:22.369092779Z"} +2026/03/22 11:18:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:18:22.377813944Z"} +2026/03/22 11:18:27 [detection_layer] {"stage_name":"detection_layer","events_processed":633,"events_dropped":0,"avg_latency_ms":17.19352343925301,"throughput_eps":0,"last_update":"2026-03-22T11:18:22.479181629Z"} +2026/03/22 11:18:27 ───────────────────────────────────────────────── +2026/03/22 11:18:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:18:32 [detection_layer] {"stage_name":"detection_layer","events_processed":633,"events_dropped":0,"avg_latency_ms":17.19352343925301,"throughput_eps":0,"last_update":"2026-03-22T11:18:27.479016102Z"} +2026/03/22 11:18:32 [transform_engine] {"stage_name":"transform_engine","events_processed":634,"events_dropped":0,"avg_latency_ms":704.4334981029784,"throughput_eps":0,"last_update":"2026-03-22T11:18:27.597793853Z"} +2026/03/22 11:18:32 [log_collector] {"stage_name":"log_collector","events_processed":30118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6023.6,"last_update":"2026-03-22T11:18:27.367945984Z"} +2026/03/22 11:18:32 [metric_collector] {"stage_name":"metric_collector","events_processed":19019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3803.8,"last_update":"2026-03-22T11:18:27.36829913Z"} +2026/03/22 11:18:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:18:27.376783199Z"} +2026/03/22 11:18:32 ───────────────────────────────────────────────── +2026/03/22 11:18:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:18:37 [transform_engine] {"stage_name":"transform_engine","events_processed":634,"events_dropped":0,"avg_latency_ms":704.4334981029784,"throughput_eps":0,"last_update":"2026-03-22T11:18:32.479496736Z"} +2026/03/22 11:18:37 [log_collector] {"stage_name":"log_collector","events_processed":30118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6023.6,"last_update":"2026-03-22T11:18:32.368006013Z"} +2026/03/22 11:18:37 [metric_collector] {"stage_name":"metric_collector","events_processed":19024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3804.8,"last_update":"2026-03-22T11:18:32.368797148Z"} +2026/03/22 11:18:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:18:32.37728265Z"} +2026/03/22 11:18:37 [detection_layer] {"stage_name":"detection_layer","events_processed":634,"events_dropped":0,"avg_latency_ms":17.71363935140241,"throughput_eps":0,"last_update":"2026-03-22T11:18:32.479605815Z"} +2026/03/22 11:18:37 ───────────────────────────────────────────────── +2026/03/22 11:18:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:18:42 [metric_collector] {"stage_name":"metric_collector","events_processed":19029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3805.8,"last_update":"2026-03-22T11:18:37.36940241Z"} +2026/03/22 11:18:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:18:37.379170038Z"} +2026/03/22 11:18:42 [detection_layer] {"stage_name":"detection_layer","events_processed":634,"events_dropped":0,"avg_latency_ms":17.71363935140241,"throughput_eps":0,"last_update":"2026-03-22T11:18:37.479564339Z"} +2026/03/22 11:18:42 [transform_engine] {"stage_name":"transform_engine","events_processed":634,"events_dropped":0,"avg_latency_ms":704.4334981029784,"throughput_eps":0,"last_update":"2026-03-22T11:18:37.479589147Z"} +2026/03/22 11:18:42 [log_collector] {"stage_name":"log_collector","events_processed":30118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6023.6,"last_update":"2026-03-22T11:18:37.368652784Z"} +2026/03/22 11:18:42 ───────────────────────────────────────────────── +2026/03/22 11:18:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:18:47 [transform_engine] {"stage_name":"transform_engine","events_processed":634,"events_dropped":0,"avg_latency_ms":704.4334981029784,"throughput_eps":0,"last_update":"2026-03-22T11:18:42.479823334Z"} +2026/03/22 11:18:47 [log_collector] {"stage_name":"log_collector","events_processed":30118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6023.6,"last_update":"2026-03-22T11:18:42.367987559Z"} +2026/03/22 11:18:47 [metric_collector] {"stage_name":"metric_collector","events_processed":19034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3806.8,"last_update":"2026-03-22T11:18:42.368439324Z"} +2026/03/22 11:18:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:18:42.377581275Z"} +2026/03/22 11:18:47 [detection_layer] {"stage_name":"detection_layer","events_processed":634,"events_dropped":0,"avg_latency_ms":17.71363935140241,"throughput_eps":0,"last_update":"2026-03-22T11:18:42.479925831Z"} +2026/03/22 11:18:47 ───────────────────────────────────────────────── +2026/03/22 11:18:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:18:52 [transform_engine] {"stage_name":"transform_engine","events_processed":634,"events_dropped":0,"avg_latency_ms":704.4334981029784,"throughput_eps":0,"last_update":"2026-03-22T11:18:47.479052927Z"} +2026/03/22 11:18:52 [log_collector] {"stage_name":"log_collector","events_processed":30118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6023.6,"last_update":"2026-03-22T11:18:47.367969935Z"} +2026/03/22 11:18:52 [metric_collector] {"stage_name":"metric_collector","events_processed":19039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3807.8,"last_update":"2026-03-22T11:18:47.368904846Z"} +2026/03/22 11:18:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:18:47.376802482Z"} +2026/03/22 11:18:52 [detection_layer] {"stage_name":"detection_layer","events_processed":634,"events_dropped":0,"avg_latency_ms":17.71363935140241,"throughput_eps":0,"last_update":"2026-03-22T11:18:47.479014113Z"} +2026/03/22 11:18:52 ───────────────────────────────────────────────── +2026/03/22 11:18:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:18:57 [log_collector] {"stage_name":"log_collector","events_processed":30118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6023.6,"last_update":"2026-03-22T11:18:52.368069476Z"} +2026/03/22 11:18:57 [metric_collector] {"stage_name":"metric_collector","events_processed":19044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3808.8,"last_update":"2026-03-22T11:18:52.368344874Z"} +2026/03/22 11:18:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7620,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:18:52.377878193Z"} +2026/03/22 11:18:57 [detection_layer] {"stage_name":"detection_layer","events_processed":634,"events_dropped":0,"avg_latency_ms":17.71363935140241,"throughput_eps":0,"last_update":"2026-03-22T11:18:52.479425962Z"} +2026/03/22 11:18:57 [transform_engine] {"stage_name":"transform_engine","events_processed":634,"events_dropped":0,"avg_latency_ms":704.4334981029784,"throughput_eps":0,"last_update":"2026-03-22T11:18:52.4793149Z"} +2026/03/22 11:18:57 ───────────────────────────────────────────────── +2026/03/22 11:19:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:19:02 [log_collector] {"stage_name":"log_collector","events_processed":30118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6023.6,"last_update":"2026-03-22T11:18:57.368136608Z"} +2026/03/22 11:19:02 [metric_collector] {"stage_name":"metric_collector","events_processed":19049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3809.8,"last_update":"2026-03-22T11:18:57.368195441Z"} +2026/03/22 11:19:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7622,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:18:57.376319751Z"} +2026/03/22 11:19:02 [detection_layer] {"stage_name":"detection_layer","events_processed":634,"events_dropped":0,"avg_latency_ms":17.71363935140241,"throughput_eps":0,"last_update":"2026-03-22T11:18:57.480476118Z"} +2026/03/22 11:19:02 [transform_engine] {"stage_name":"transform_engine","events_processed":635,"events_dropped":0,"avg_latency_ms":578.2826308823828,"throughput_eps":0,"last_update":"2026-03-22T11:18:57.553204679Z"} +2026/03/22 11:19:02 ───────────────────────────────────────────────── +2026/03/22 11:19:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:19:07 [log_collector] {"stage_name":"log_collector","events_processed":30118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6023.6,"last_update":"2026-03-22T11:19:02.368460513Z"} +2026/03/22 11:19:07 [metric_collector] {"stage_name":"metric_collector","events_processed":19054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3810.8,"last_update":"2026-03-22T11:19:02.368622714Z"} +2026/03/22 11:19:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:19:02.378794427Z"} +2026/03/22 11:19:07 [detection_layer] {"stage_name":"detection_layer","events_processed":635,"events_dropped":0,"avg_latency_ms":18.25065368112193,"throughput_eps":0,"last_update":"2026-03-22T11:19:02.478939359Z"} +2026/03/22 11:19:07 [transform_engine] {"stage_name":"transform_engine","events_processed":635,"events_dropped":0,"avg_latency_ms":578.2826308823828,"throughput_eps":0,"last_update":"2026-03-22T11:19:02.478933388Z"} +2026/03/22 11:19:07 ───────────────────────────────────────────────── +2026/03/22 11:19:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:19:12 [log_collector] {"stage_name":"log_collector","events_processed":30118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6023.6,"last_update":"2026-03-22T11:19:07.36801133Z"} +2026/03/22 11:19:12 [metric_collector] {"stage_name":"metric_collector","events_processed":19059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3811.8,"last_update":"2026-03-22T11:19:07.36879423Z"} +2026/03/22 11:19:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:19:07.376902881Z"} +2026/03/22 11:19:12 [detection_layer] {"stage_name":"detection_layer","events_processed":635,"events_dropped":0,"avg_latency_ms":18.25065368112193,"throughput_eps":0,"last_update":"2026-03-22T11:19:07.479243229Z"} +2026/03/22 11:19:12 [transform_engine] {"stage_name":"transform_engine","events_processed":635,"events_dropped":0,"avg_latency_ms":578.2826308823828,"throughput_eps":0,"last_update":"2026-03-22T11:19:07.479156904Z"} +2026/03/22 11:19:12 ───────────────────────────────────────────────── +2026/03/22 11:19:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:19:17 [log_collector] {"stage_name":"log_collector","events_processed":30118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6023.6,"last_update":"2026-03-22T11:19:12.368108828Z"} +2026/03/22 11:19:17 [metric_collector] {"stage_name":"metric_collector","events_processed":19064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3812.8,"last_update":"2026-03-22T11:19:12.368633864Z"} +2026/03/22 11:19:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:19:12.377996086Z"} +2026/03/22 11:19:17 [detection_layer] {"stage_name":"detection_layer","events_processed":635,"events_dropped":0,"avg_latency_ms":18.25065368112193,"throughput_eps":0,"last_update":"2026-03-22T11:19:12.479437672Z"} +2026/03/22 11:19:17 [transform_engine] {"stage_name":"transform_engine","events_processed":635,"events_dropped":0,"avg_latency_ms":578.2826308823828,"throughput_eps":0,"last_update":"2026-03-22T11:19:12.479395362Z"} +2026/03/22 11:19:17 ───────────────────────────────────────────────── +2026/03/22 11:19:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:19:22 [log_collector] {"stage_name":"log_collector","events_processed":30118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6023.6,"last_update":"2026-03-22T11:19:17.368528263Z"} +2026/03/22 11:19:22 [metric_collector] {"stage_name":"metric_collector","events_processed":19069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3813.8,"last_update":"2026-03-22T11:19:17.369001359Z"} +2026/03/22 11:19:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:19:17.37875933Z"} +2026/03/22 11:19:22 [detection_layer] {"stage_name":"detection_layer","events_processed":635,"events_dropped":0,"avg_latency_ms":18.25065368112193,"throughput_eps":0,"last_update":"2026-03-22T11:19:17.479017148Z"} +2026/03/22 11:19:22 [transform_engine] {"stage_name":"transform_engine","events_processed":635,"events_dropped":0,"avg_latency_ms":578.2826308823828,"throughput_eps":0,"last_update":"2026-03-22T11:19:17.478978324Z"} +2026/03/22 11:19:22 ───────────────────────────────────────────────── +2026/03/22 11:19:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:19:27 [log_collector] {"stage_name":"log_collector","events_processed":30118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6023.6,"last_update":"2026-03-22T11:19:22.368047275Z"} +2026/03/22 11:19:27 [metric_collector] {"stage_name":"metric_collector","events_processed":19074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3814.8,"last_update":"2026-03-22T11:19:22.368504902Z"} +2026/03/22 11:19:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7632,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:19:22.374671464Z"} +2026/03/22 11:19:27 [detection_layer] {"stage_name":"detection_layer","events_processed":635,"events_dropped":0,"avg_latency_ms":18.25065368112193,"throughput_eps":0,"last_update":"2026-03-22T11:19:22.479999934Z"} +2026/03/22 11:19:27 [transform_engine] {"stage_name":"transform_engine","events_processed":635,"events_dropped":0,"avg_latency_ms":578.2826308823828,"throughput_eps":0,"last_update":"2026-03-22T11:19:22.479961069Z"} +2026/03/22 11:19:27 ───────────────────────────────────────────────── +Saved state: 15 clusters, 30119 messages, reason: none +2026/03/22 11:19:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:19:32 [transform_engine] {"stage_name":"transform_engine","events_processed":636,"events_dropped":0,"avg_latency_ms":476.7989027059063,"throughput_eps":0,"last_update":"2026-03-22T11:19:27.550443756Z"} +2026/03/22 11:19:32 [log_collector] {"stage_name":"log_collector","events_processed":30118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6023.6,"last_update":"2026-03-22T11:19:27.368494919Z"} +2026/03/22 11:19:32 [metric_collector] {"stage_name":"metric_collector","events_processed":19079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3815.8,"last_update":"2026-03-22T11:19:27.368751631Z"} +2026/03/22 11:19:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:19:27.378377668Z"} +2026/03/22 11:19:32 [detection_layer] {"stage_name":"detection_layer","events_processed":635,"events_dropped":0,"avg_latency_ms":18.25065368112193,"throughput_eps":0,"last_update":"2026-03-22T11:19:27.479619732Z"} +2026/03/22 11:19:32 ───────────────────────────────────────────────── +2026/03/22 11:19:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:19:37 [metric_collector] {"stage_name":"metric_collector","events_processed":19084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3816.8,"last_update":"2026-03-22T11:19:32.368134205Z"} +2026/03/22 11:19:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:19:32.379945097Z"} +2026/03/22 11:19:37 [detection_layer] {"stage_name":"detection_layer","events_processed":636,"events_dropped":0,"avg_latency_ms":18.771131344897544,"throughput_eps":0,"last_update":"2026-03-22T11:19:32.479151503Z"} +2026/03/22 11:19:37 [transform_engine] {"stage_name":"transform_engine","events_processed":636,"events_dropped":0,"avg_latency_ms":476.7989027059063,"throughput_eps":0,"last_update":"2026-03-22T11:19:32.479142816Z"} +2026/03/22 11:19:37 [log_collector] {"stage_name":"log_collector","events_processed":30121,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6024.2,"last_update":"2026-03-22T11:19:32.368270286Z"} +2026/03/22 11:19:37 ───────────────────────────────────────────────── +2026/03/22 11:19:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:19:42 [detection_layer] {"stage_name":"detection_layer","events_processed":636,"events_dropped":0,"avg_latency_ms":18.771131344897544,"throughput_eps":0,"last_update":"2026-03-22T11:19:37.479440446Z"} +2026/03/22 11:19:42 [transform_engine] {"stage_name":"transform_engine","events_processed":636,"events_dropped":0,"avg_latency_ms":476.7989027059063,"throughput_eps":0,"last_update":"2026-03-22T11:19:37.479343771Z"} +2026/03/22 11:19:42 [log_collector] {"stage_name":"log_collector","events_processed":30132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6026.4,"last_update":"2026-03-22T11:19:37.368140668Z"} +2026/03/22 11:19:42 [metric_collector] {"stage_name":"metric_collector","events_processed":19089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3817.8,"last_update":"2026-03-22T11:19:37.368645455Z"} +2026/03/22 11:19:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:19:37.376961062Z"} +2026/03/22 11:19:42 ───────────────────────────────────────────────── +2026/03/22 11:19:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:19:47 [log_collector] {"stage_name":"log_collector","events_processed":30132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6026.4,"last_update":"2026-03-22T11:19:42.367984309Z"} +2026/03/22 11:19:47 [metric_collector] {"stage_name":"metric_collector","events_processed":19093,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3818.6,"last_update":"2026-03-22T11:19:42.368027402Z"} +2026/03/22 11:19:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7640,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:19:42.377254786Z"} +2026/03/22 11:19:47 [detection_layer] {"stage_name":"detection_layer","events_processed":636,"events_dropped":0,"avg_latency_ms":18.771131344897544,"throughput_eps":0,"last_update":"2026-03-22T11:19:42.479578642Z"} +2026/03/22 11:19:47 [transform_engine] {"stage_name":"transform_engine","events_processed":636,"events_dropped":0,"avg_latency_ms":476.7989027059063,"throughput_eps":0,"last_update":"2026-03-22T11:19:42.47953563Z"} +2026/03/22 11:19:47 ───────────────────────────────────────────────── +2026/03/22 11:19:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:19:52 [log_collector] {"stage_name":"log_collector","events_processed":30132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6026.4,"last_update":"2026-03-22T11:19:47.367977901Z"} +2026/03/22 11:19:52 [metric_collector] {"stage_name":"metric_collector","events_processed":19099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3819.8,"last_update":"2026-03-22T11:19:47.368716105Z"} +2026/03/22 11:19:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:19:47.377549675Z"} +2026/03/22 11:19:52 [detection_layer] {"stage_name":"detection_layer","events_processed":636,"events_dropped":0,"avg_latency_ms":18.771131344897544,"throughput_eps":0,"last_update":"2026-03-22T11:19:47.479772748Z"} +2026/03/22 11:19:52 [transform_engine] {"stage_name":"transform_engine","events_processed":636,"events_dropped":0,"avg_latency_ms":476.7989027059063,"throughput_eps":0,"last_update":"2026-03-22T11:19:47.479815349Z"} +2026/03/22 11:19:52 ───────────────────────────────────────────────── +2026/03/22 11:19:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:19:57 [log_collector] {"stage_name":"log_collector","events_processed":30132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6026.4,"last_update":"2026-03-22T11:19:52.368098477Z"} +2026/03/22 11:19:57 [metric_collector] {"stage_name":"metric_collector","events_processed":19104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3820.8,"last_update":"2026-03-22T11:19:52.368536516Z"} +2026/03/22 11:19:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:19:52.377094297Z"} +2026/03/22 11:19:57 [detection_layer] {"stage_name":"detection_layer","events_processed":636,"events_dropped":0,"avg_latency_ms":18.771131344897544,"throughput_eps":0,"last_update":"2026-03-22T11:19:52.479481105Z"} +2026/03/22 11:19:57 [transform_engine] {"stage_name":"transform_engine","events_processed":636,"events_dropped":0,"avg_latency_ms":476.7989027059063,"throughput_eps":0,"last_update":"2026-03-22T11:19:52.479449153Z"} +2026/03/22 11:19:57 ───────────────────────────────────────────────── +2026/03/22 11:20:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:20:02 [detection_layer] {"stage_name":"detection_layer","events_processed":636,"events_dropped":0,"avg_latency_ms":18.771131344897544,"throughput_eps":0,"last_update":"2026-03-22T11:19:57.480570549Z"} +2026/03/22 11:20:02 [transform_engine] {"stage_name":"transform_engine","events_processed":637,"events_dropped":0,"avg_latency_ms":406.0942917647251,"throughput_eps":0,"last_update":"2026-03-22T11:19:57.603100608Z"} +2026/03/22 11:20:02 [log_collector] {"stage_name":"log_collector","events_processed":30132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6026.4,"last_update":"2026-03-22T11:19:57.368009284Z"} +2026/03/22 11:20:02 [metric_collector] {"stage_name":"metric_collector","events_processed":19109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3821.8,"last_update":"2026-03-22T11:19:57.368687573Z"} +2026/03/22 11:20:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7646,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:19:57.377532765Z"} +2026/03/22 11:20:02 ───────────────────────────────────────────────── +2026/03/22 11:20:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:20:07 [log_collector] {"stage_name":"log_collector","events_processed":30132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6026.4,"last_update":"2026-03-22T11:20:02.369185177Z"} +2026/03/22 11:20:07 [metric_collector] {"stage_name":"metric_collector","events_processed":19114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3822.8,"last_update":"2026-03-22T11:20:02.369653413Z"} +2026/03/22 11:20:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:20:02.385668047Z"} +2026/03/22 11:20:07 [detection_layer] {"stage_name":"detection_layer","events_processed":637,"events_dropped":0,"avg_latency_ms":18.935885475918035,"throughput_eps":0,"last_update":"2026-03-22T11:20:02.479890146Z"} +2026/03/22 11:20:07 [transform_engine] {"stage_name":"transform_engine","events_processed":637,"events_dropped":0,"avg_latency_ms":406.0942917647251,"throughput_eps":0,"last_update":"2026-03-22T11:20:02.480029423Z"} +2026/03/22 11:20:07 ───────────────────────────────────────────────── +2026/03/22 11:20:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:20:12 [metric_collector] {"stage_name":"metric_collector","events_processed":19119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3823.8,"last_update":"2026-03-22T11:20:07.369227669Z"} +2026/03/22 11:20:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7650,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:20:07.378097768Z"} +2026/03/22 11:20:12 [detection_layer] {"stage_name":"detection_layer","events_processed":637,"events_dropped":0,"avg_latency_ms":18.935885475918035,"throughput_eps":0,"last_update":"2026-03-22T11:20:07.479309714Z"} +2026/03/22 11:20:12 [transform_engine] {"stage_name":"transform_engine","events_processed":637,"events_dropped":0,"avg_latency_ms":406.0942917647251,"throughput_eps":0,"last_update":"2026-03-22T11:20:07.479320586Z"} +2026/03/22 11:20:12 [log_collector] {"stage_name":"log_collector","events_processed":30132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6026.4,"last_update":"2026-03-22T11:20:07.369119342Z"} +2026/03/22 11:20:12 ───────────────────────────────────────────────── +2026/03/22 11:20:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:20:17 [log_collector] {"stage_name":"log_collector","events_processed":30132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6026.4,"last_update":"2026-03-22T11:20:12.368590502Z"} +2026/03/22 11:20:17 [metric_collector] {"stage_name":"metric_collector","events_processed":19124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3824.8,"last_update":"2026-03-22T11:20:12.368815984Z"} +2026/03/22 11:20:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:20:12.377562226Z"} +2026/03/22 11:20:17 [detection_layer] {"stage_name":"detection_layer","events_processed":637,"events_dropped":0,"avg_latency_ms":18.935885475918035,"throughput_eps":0,"last_update":"2026-03-22T11:20:12.47984839Z"} +2026/03/22 11:20:17 [transform_engine] {"stage_name":"transform_engine","events_processed":637,"events_dropped":0,"avg_latency_ms":406.0942917647251,"throughput_eps":0,"last_update":"2026-03-22T11:20:12.479858109Z"} +2026/03/22 11:20:17 ───────────────────────────────────────────────── +2026/03/22 11:20:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:20:22 [log_collector] {"stage_name":"log_collector","events_processed":30132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6026.4,"last_update":"2026-03-22T11:20:17.368307464Z"} +2026/03/22 11:20:22 [metric_collector] {"stage_name":"metric_collector","events_processed":19129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3825.8,"last_update":"2026-03-22T11:20:17.368831248Z"} +2026/03/22 11:20:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:20:17.377925697Z"} +2026/03/22 11:20:22 [detection_layer] {"stage_name":"detection_layer","events_processed":637,"events_dropped":0,"avg_latency_ms":18.935885475918035,"throughput_eps":0,"last_update":"2026-03-22T11:20:17.479234208Z"} +2026/03/22 11:20:22 [transform_engine] {"stage_name":"transform_engine","events_processed":637,"events_dropped":0,"avg_latency_ms":406.0942917647251,"throughput_eps":0,"last_update":"2026-03-22T11:20:17.479243335Z"} +2026/03/22 11:20:22 ───────────────────────────────────────────────── +2026/03/22 11:20:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:20:27 [metric_collector] {"stage_name":"metric_collector","events_processed":19134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3826.8,"last_update":"2026-03-22T11:20:22.368733897Z"} +2026/03/22 11:20:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:20:22.375395336Z"} +2026/03/22 11:20:27 [detection_layer] {"stage_name":"detection_layer","events_processed":637,"events_dropped":0,"avg_latency_ms":18.935885475918035,"throughput_eps":0,"last_update":"2026-03-22T11:20:22.479575829Z"} +2026/03/22 11:20:27 [transform_engine] {"stage_name":"transform_engine","events_processed":637,"events_dropped":0,"avg_latency_ms":406.0942917647251,"throughput_eps":0,"last_update":"2026-03-22T11:20:22.479588614Z"} +2026/03/22 11:20:27 [log_collector] {"stage_name":"log_collector","events_processed":30132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6026.4,"last_update":"2026-03-22T11:20:22.368025391Z"} +2026/03/22 11:20:27 ───────────────────────────────────────────────── +2026/03/22 11:20:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:20:32 [transform_engine] {"stage_name":"transform_engine","events_processed":638,"events_dropped":0,"avg_latency_ms":341.14240861178007,"throughput_eps":0,"last_update":"2026-03-22T11:20:27.560366691Z"} +2026/03/22 11:20:32 [log_collector] {"stage_name":"log_collector","events_processed":30132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6026.4,"last_update":"2026-03-22T11:20:27.369119414Z"} +2026/03/22 11:20:32 [metric_collector] {"stage_name":"metric_collector","events_processed":19139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3827.8,"last_update":"2026-03-22T11:20:27.368935392Z"} +2026/03/22 11:20:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:20:27.380413736Z"} +2026/03/22 11:20:32 [detection_layer] {"stage_name":"detection_layer","events_processed":637,"events_dropped":0,"avg_latency_ms":18.935885475918035,"throughput_eps":0,"last_update":"2026-03-22T11:20:27.479011848Z"} +2026/03/22 11:20:32 ───────────────────────────────────────────────── +Saved state: 15 clusters, 30133 messages, reason: none +2026/03/22 11:20:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:20:37 [metric_collector] {"stage_name":"metric_collector","events_processed":19144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3828.8,"last_update":"2026-03-22T11:20:32.369205099Z"} +2026/03/22 11:20:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7660,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:20:32.379071877Z"} +2026/03/22 11:20:37 [detection_layer] {"stage_name":"detection_layer","events_processed":638,"events_dropped":0,"avg_latency_ms":19.466574580734427,"throughput_eps":0,"last_update":"2026-03-22T11:20:32.479466569Z"} +2026/03/22 11:20:37 [transform_engine] {"stage_name":"transform_engine","events_processed":638,"events_dropped":0,"avg_latency_ms":341.14240861178007,"throughput_eps":0,"last_update":"2026-03-22T11:20:32.47948263Z"} +2026/03/22 11:20:37 [log_collector] {"stage_name":"log_collector","events_processed":30132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6026.4,"last_update":"2026-03-22T11:20:32.368923129Z"} +2026/03/22 11:20:37 ───────────────────────────────────────────────── +2026/03/22 11:20:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:20:42 [log_collector] {"stage_name":"log_collector","events_processed":30137,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6027.4,"last_update":"2026-03-22T11:20:37.367979594Z"} +2026/03/22 11:20:42 [metric_collector] {"stage_name":"metric_collector","events_processed":19149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3829.8,"last_update":"2026-03-22T11:20:37.368325637Z"} +2026/03/22 11:20:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7662,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:20:37.374506605Z"} +2026/03/22 11:20:42 [detection_layer] {"stage_name":"detection_layer","events_processed":638,"events_dropped":0,"avg_latency_ms":19.466574580734427,"throughput_eps":0,"last_update":"2026-03-22T11:20:37.47971675Z"} +2026/03/22 11:20:42 [transform_engine] {"stage_name":"transform_engine","events_processed":638,"events_dropped":0,"avg_latency_ms":341.14240861178007,"throughput_eps":0,"last_update":"2026-03-22T11:20:37.4797267Z"} +2026/03/22 11:20:42 ───────────────────────────────────────────────── +2026/03/22 11:20:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:20:47 [detection_layer] {"stage_name":"detection_layer","events_processed":638,"events_dropped":0,"avg_latency_ms":19.466574580734427,"throughput_eps":0,"last_update":"2026-03-22T11:20:42.479805875Z"} +2026/03/22 11:20:47 [transform_engine] {"stage_name":"transform_engine","events_processed":638,"events_dropped":0,"avg_latency_ms":341.14240861178007,"throughput_eps":0,"last_update":"2026-03-22T11:20:42.479817206Z"} +2026/03/22 11:20:47 [log_collector] {"stage_name":"log_collector","events_processed":30137,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6027.4,"last_update":"2026-03-22T11:20:42.367963767Z"} +2026/03/22 11:20:47 [metric_collector] {"stage_name":"metric_collector","events_processed":19154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3830.8,"last_update":"2026-03-22T11:20:42.368145926Z"} +2026/03/22 11:20:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:20:42.37859531Z"} +2026/03/22 11:20:47 ───────────────────────────────────────────────── +2026/03/22 11:20:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:20:52 [log_collector] {"stage_name":"log_collector","events_processed":30137,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6027.4,"last_update":"2026-03-22T11:20:52.368782247Z"} +2026/03/22 11:20:52 [metric_collector] {"stage_name":"metric_collector","events_processed":19159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3831.8,"last_update":"2026-03-22T11:20:47.368316658Z"} +2026/03/22 11:20:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:20:47.375499436Z"} +2026/03/22 11:20:52 [detection_layer] {"stage_name":"detection_layer","events_processed":638,"events_dropped":0,"avg_latency_ms":19.466574580734427,"throughput_eps":0,"last_update":"2026-03-22T11:20:47.479413458Z"} +2026/03/22 11:20:52 [transform_engine] {"stage_name":"transform_engine","events_processed":638,"events_dropped":0,"avg_latency_ms":341.14240861178007,"throughput_eps":0,"last_update":"2026-03-22T11:20:47.479428968Z"} +2026/03/22 11:20:52 ───────────────────────────────────────────────── +2026/03/22 11:20:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:20:57 [log_collector] {"stage_name":"log_collector","events_processed":30137,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6027.4,"last_update":"2026-03-22T11:20:52.368782247Z"} +2026/03/22 11:20:57 [metric_collector] {"stage_name":"metric_collector","events_processed":19164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3832.8,"last_update":"2026-03-22T11:20:52.369444255Z"} +2026/03/22 11:20:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7668,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:20:52.374716533Z"} +2026/03/22 11:20:57 [detection_layer] {"stage_name":"detection_layer","events_processed":638,"events_dropped":0,"avg_latency_ms":19.466574580734427,"throughput_eps":0,"last_update":"2026-03-22T11:20:52.478990846Z"} +2026/03/22 11:20:57 [transform_engine] {"stage_name":"transform_engine","events_processed":638,"events_dropped":0,"avg_latency_ms":341.14240861178007,"throughput_eps":0,"last_update":"2026-03-22T11:20:52.478950238Z"} +2026/03/22 11:20:57 ───────────────────────────────────────────────── +2026/03/22 11:21:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:21:02 [transform_engine] {"stage_name":"transform_engine","events_processed":638,"events_dropped":0,"avg_latency_ms":341.14240861178007,"throughput_eps":0,"last_update":"2026-03-22T11:20:52.478950238Z"} +2026/03/22 11:21:02 [log_collector] {"stage_name":"log_collector","events_processed":30137,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6027.4,"last_update":"2026-03-22T11:21:02.367979729Z"} +2026/03/22 11:21:02 [metric_collector] {"stage_name":"metric_collector","events_processed":19169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3833.8,"last_update":"2026-03-22T11:20:57.368508081Z"} +2026/03/22 11:21:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7670,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:20:57.375631725Z"} +2026/03/22 11:21:02 [detection_layer] {"stage_name":"detection_layer","events_processed":638,"events_dropped":0,"avg_latency_ms":19.466574580734427,"throughput_eps":0,"last_update":"2026-03-22T11:20:57.479373247Z"} +2026/03/22 11:21:02 ───────────────────────────────────────────────── +2026/03/22 11:21:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:21:07 [log_collector] {"stage_name":"log_collector","events_processed":30137,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6027.4,"last_update":"2026-03-22T11:21:07.368056128Z"} +2026/03/22 11:21:07 [metric_collector] {"stage_name":"metric_collector","events_processed":19174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3834.8,"last_update":"2026-03-22T11:21:02.368422327Z"} +2026/03/22 11:21:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:21:02.37567598Z"} +2026/03/22 11:21:07 [detection_layer] {"stage_name":"detection_layer","events_processed":638,"events_dropped":0,"avg_latency_ms":19.466574580734427,"throughput_eps":0,"last_update":"2026-03-22T11:21:02.479890749Z"} +2026/03/22 11:21:07 [transform_engine] {"stage_name":"transform_engine","events_processed":639,"events_dropped":0,"avg_latency_ms":2108.4614576894237,"throughput_eps":0,"last_update":"2026-03-22T11:21:06.656594852Z"} +2026/03/22 11:21:07 ───────────────────────────────────────────────── +2026/03/22 11:21:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:21:12 [metric_collector] {"stage_name":"metric_collector","events_processed":19179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3835.8,"last_update":"2026-03-22T11:21:07.368439471Z"} +2026/03/22 11:21:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:21:07.374748836Z"} +2026/03/22 11:21:12 [detection_layer] {"stage_name":"detection_layer","events_processed":639,"events_dropped":0,"avg_latency_ms":18.082988664587543,"throughput_eps":0,"last_update":"2026-03-22T11:21:07.478954348Z"} +2026/03/22 11:21:12 [transform_engine] {"stage_name":"transform_engine","events_processed":639,"events_dropped":0,"avg_latency_ms":2108.4614576894237,"throughput_eps":0,"last_update":"2026-03-22T11:21:07.478911796Z"} +2026/03/22 11:21:12 [log_collector] {"stage_name":"log_collector","events_processed":30137,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6027.4,"last_update":"2026-03-22T11:21:07.368056128Z"} +2026/03/22 11:21:12 ───────────────────────────────────────────────── +2026/03/22 11:21:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:21:17 [log_collector] {"stage_name":"log_collector","events_processed":30137,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6027.4,"last_update":"2026-03-22T11:21:12.368489732Z"} +2026/03/22 11:21:17 [metric_collector] {"stage_name":"metric_collector","events_processed":19184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3836.8,"last_update":"2026-03-22T11:21:12.368778284Z"} +2026/03/22 11:21:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7676,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:21:12.375601213Z"} +2026/03/22 11:21:17 [detection_layer] {"stage_name":"detection_layer","events_processed":639,"events_dropped":0,"avg_latency_ms":18.082988664587543,"throughput_eps":0,"last_update":"2026-03-22T11:21:12.479823165Z"} +2026/03/22 11:21:17 [transform_engine] {"stage_name":"transform_engine","events_processed":639,"events_dropped":0,"avg_latency_ms":2108.4614576894237,"throughput_eps":0,"last_update":"2026-03-22T11:21:12.479798258Z"} +2026/03/22 11:21:17 ───────────────────────────────────────────────── +2026/03/22 11:21:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:21:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:21:17.375162898Z"} +2026/03/22 11:21:22 [detection_layer] {"stage_name":"detection_layer","events_processed":639,"events_dropped":0,"avg_latency_ms":18.082988664587543,"throughput_eps":0,"last_update":"2026-03-22T11:21:17.479403927Z"} +2026/03/22 11:21:22 [transform_engine] {"stage_name":"transform_engine","events_processed":639,"events_dropped":0,"avg_latency_ms":2108.4614576894237,"throughput_eps":0,"last_update":"2026-03-22T11:21:17.479427713Z"} +2026/03/22 11:21:22 [log_collector] {"stage_name":"log_collector","events_processed":30137,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6027.4,"last_update":"2026-03-22T11:21:17.367944302Z"} +2026/03/22 11:21:22 [metric_collector] {"stage_name":"metric_collector","events_processed":19189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3837.8,"last_update":"2026-03-22T11:21:17.36850724Z"} +2026/03/22 11:21:22 ───────────────────────────────────────────────── +2026/03/22 11:21:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:21:27 [detection_layer] {"stage_name":"detection_layer","events_processed":639,"events_dropped":0,"avg_latency_ms":18.082988664587543,"throughput_eps":0,"last_update":"2026-03-22T11:21:22.479184694Z"} +2026/03/22 11:21:27 [transform_engine] {"stage_name":"transform_engine","events_processed":639,"events_dropped":0,"avg_latency_ms":2108.4614576894237,"throughput_eps":0,"last_update":"2026-03-22T11:21:22.478844242Z"} +2026/03/22 11:21:27 [log_collector] {"stage_name":"log_collector","events_processed":30148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6029.6,"last_update":"2026-03-22T11:21:22.36800754Z"} +2026/03/22 11:21:27 [metric_collector] {"stage_name":"metric_collector","events_processed":19194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3838.8,"last_update":"2026-03-22T11:21:22.368460788Z"} +2026/03/22 11:21:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:21:22.375708129Z"} +2026/03/22 11:21:27 ───────────────────────────────────────────────── +2026/03/22 11:21:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:21:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:21:27.375240773Z"} +2026/03/22 11:21:32 [detection_layer] {"stage_name":"detection_layer","events_processed":639,"events_dropped":0,"avg_latency_ms":18.082988664587543,"throughput_eps":0,"last_update":"2026-03-22T11:21:27.479714237Z"} +2026/03/22 11:21:32 [transform_engine] {"stage_name":"transform_engine","events_processed":640,"events_dropped":0,"avg_latency_ms":1754.838353551539,"throughput_eps":0,"last_update":"2026-03-22T11:21:27.819661079Z"} +2026/03/22 11:21:32 [log_collector] {"stage_name":"log_collector","events_processed":30155,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6031,"last_update":"2026-03-22T11:21:27.368679786Z"} +2026/03/22 11:21:32 [metric_collector] {"stage_name":"metric_collector","events_processed":19199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3839.8,"last_update":"2026-03-22T11:21:27.36866636Z"} +2026/03/22 11:21:32 ───────────────────────────────────────────────── +2026/03/22 11:21:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:21:37 [metric_collector] {"stage_name":"metric_collector","events_processed":19203,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3840.6,"last_update":"2026-03-22T11:21:32.367878782Z"} +2026/03/22 11:21:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:21:32.374698564Z"} +2026/03/22 11:21:37 [detection_layer] {"stage_name":"detection_layer","events_processed":640,"events_dropped":0,"avg_latency_ms":17.183192731670033,"throughput_eps":0,"last_update":"2026-03-22T11:21:32.479357043Z"} +2026/03/22 11:21:37 [transform_engine] {"stage_name":"transform_engine","events_processed":640,"events_dropped":0,"avg_latency_ms":1754.838353551539,"throughput_eps":0,"last_update":"2026-03-22T11:21:32.479323169Z"} +2026/03/22 11:21:37 [log_collector] {"stage_name":"log_collector","events_processed":30409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6081.8,"last_update":"2026-03-22T11:21:32.367964746Z"} +2026/03/22 11:21:37 ───────────────────────────────────────────────── +Saved state: 15 clusters, 30492 messages, reason: none +2026/03/22 11:21:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:21:42 [transform_engine] {"stage_name":"transform_engine","events_processed":640,"events_dropped":0,"avg_latency_ms":1754.838353551539,"throughput_eps":0,"last_update":"2026-03-22T11:21:37.478951718Z"} +2026/03/22 11:21:42 [log_collector] {"stage_name":"log_collector","events_processed":30491,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6098.2,"last_update":"2026-03-22T11:21:37.368014935Z"} +2026/03/22 11:21:42 [metric_collector] {"stage_name":"metric_collector","events_processed":19208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3841.6,"last_update":"2026-03-22T11:21:37.368052317Z"} +2026/03/22 11:21:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:21:37.379883457Z"} +2026/03/22 11:21:42 [detection_layer] {"stage_name":"detection_layer","events_processed":640,"events_dropped":0,"avg_latency_ms":17.183192731670033,"throughput_eps":0,"last_update":"2026-03-22T11:21:37.478982668Z"} +2026/03/22 11:21:42 ───────────────────────────────────────────────── +2026/03/22 11:21:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:21:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7688,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:21:42.378100695Z"} +2026/03/22 11:21:47 [detection_layer] {"stage_name":"detection_layer","events_processed":640,"events_dropped":0,"avg_latency_ms":17.183192731670033,"throughput_eps":0,"last_update":"2026-03-22T11:21:42.479335777Z"} +2026/03/22 11:21:47 [transform_engine] {"stage_name":"transform_engine","events_processed":640,"events_dropped":0,"avg_latency_ms":1754.838353551539,"throughput_eps":0,"last_update":"2026-03-22T11:21:42.479372498Z"} +2026/03/22 11:21:47 [log_collector] {"stage_name":"log_collector","events_processed":30495,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6099,"last_update":"2026-03-22T11:21:42.368897478Z"} +2026/03/22 11:21:47 [metric_collector] {"stage_name":"metric_collector","events_processed":19214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3842.8,"last_update":"2026-03-22T11:21:42.36941575Z"} +2026/03/22 11:21:47 ───────────────────────────────────────────────── +2026/03/22 11:21:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:21:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:21:47.379717777Z"} +2026/03/22 11:21:52 [detection_layer] {"stage_name":"detection_layer","events_processed":640,"events_dropped":0,"avg_latency_ms":17.183192731670033,"throughput_eps":0,"last_update":"2026-03-22T11:21:47.47896408Z"} +2026/03/22 11:21:52 [transform_engine] {"stage_name":"transform_engine","events_processed":640,"events_dropped":0,"avg_latency_ms":1754.838353551539,"throughput_eps":0,"last_update":"2026-03-22T11:21:47.478991172Z"} +2026/03/22 11:21:52 [log_collector] {"stage_name":"log_collector","events_processed":30495,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6099,"last_update":"2026-03-22T11:21:47.370695085Z"} +2026/03/22 11:21:52 [metric_collector] {"stage_name":"metric_collector","events_processed":19219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3843.8,"last_update":"2026-03-22T11:21:47.371060596Z"} +2026/03/22 11:21:52 ───────────────────────────────────────────────── +2026/03/22 11:21:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:21:57 [log_collector] {"stage_name":"log_collector","events_processed":30498,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6099.6,"last_update":"2026-03-22T11:21:52.36841227Z"} +2026/03/22 11:21:57 [metric_collector] {"stage_name":"metric_collector","events_processed":19224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3844.8,"last_update":"2026-03-22T11:21:52.368670455Z"} +2026/03/22 11:21:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:21:52.378156674Z"} +2026/03/22 11:21:57 [detection_layer] {"stage_name":"detection_layer","events_processed":640,"events_dropped":0,"avg_latency_ms":17.183192731670033,"throughput_eps":0,"last_update":"2026-03-22T11:21:52.479414199Z"} +2026/03/22 11:21:57 [transform_engine] {"stage_name":"transform_engine","events_processed":640,"events_dropped":0,"avg_latency_ms":1754.838353551539,"throughput_eps":0,"last_update":"2026-03-22T11:21:52.479440439Z"} +2026/03/22 11:21:57 ───────────────────────────────────────────────── +2026/03/22 11:22:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:22:02 [log_collector] {"stage_name":"log_collector","events_processed":30498,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6099.6,"last_update":"2026-03-22T11:21:57.368773209Z"} +2026/03/22 11:22:02 [metric_collector] {"stage_name":"metric_collector","events_processed":19229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3845.8,"last_update":"2026-03-22T11:21:57.368904461Z"} +2026/03/22 11:22:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:21:57.376579772Z"} +2026/03/22 11:22:02 [detection_layer] {"stage_name":"detection_layer","events_processed":640,"events_dropped":0,"avg_latency_ms":17.183192731670033,"throughput_eps":0,"last_update":"2026-03-22T11:21:57.479757876Z"} +2026/03/22 11:22:02 [transform_engine] {"stage_name":"transform_engine","events_processed":640,"events_dropped":0,"avg_latency_ms":1754.838353551539,"throughput_eps":0,"last_update":"2026-03-22T11:21:52.479440439Z"} +2026/03/22 11:22:02 ───────────────────────────────────────────────── +2026/03/22 11:22:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:22:07 [log_collector] {"stage_name":"log_collector","events_processed":30508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6101.6,"last_update":"2026-03-22T11:22:02.368831511Z"} +2026/03/22 11:22:07 [metric_collector] {"stage_name":"metric_collector","events_processed":19234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3846.8,"last_update":"2026-03-22T11:22:02.369158778Z"} +2026/03/22 11:22:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:22:02.378781458Z"} +2026/03/22 11:22:07 [detection_layer] {"stage_name":"detection_layer","events_processed":640,"events_dropped":0,"avg_latency_ms":17.183192731670033,"throughput_eps":0,"last_update":"2026-03-22T11:22:02.480025518Z"} +2026/03/22 11:22:07 [transform_engine] {"stage_name":"transform_engine","events_processed":641,"events_dropped":0,"avg_latency_ms":2689.0846574412317,"throughput_eps":0,"last_update":"2026-03-22T11:22:03.90584984Z"} +2026/03/22 11:22:07 ───────────────────────────────────────────────── +2026/03/22 11:22:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:22:12 [log_collector] {"stage_name":"log_collector","events_processed":30525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6105,"last_update":"2026-03-22T11:22:12.367980944Z"} +2026/03/22 11:22:12 [metric_collector] {"stage_name":"metric_collector","events_processed":19239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3847.8,"last_update":"2026-03-22T11:22:07.369001096Z"} +2026/03/22 11:22:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:22:07.375721478Z"} +2026/03/22 11:22:12 [detection_layer] {"stage_name":"detection_layer","events_processed":641,"events_dropped":0,"avg_latency_ms":17.61028278533603,"throughput_eps":0,"last_update":"2026-03-22T11:22:07.479080398Z"} +2026/03/22 11:22:12 [transform_engine] {"stage_name":"transform_engine","events_processed":641,"events_dropped":0,"avg_latency_ms":2689.0846574412317,"throughput_eps":0,"last_update":"2026-03-22T11:22:07.479036324Z"} +2026/03/22 11:22:12 ───────────────────────────────────────────────── +2026/03/22 11:22:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:22:17 [detection_layer] {"stage_name":"detection_layer","events_processed":641,"events_dropped":0,"avg_latency_ms":17.61028278533603,"throughput_eps":0,"last_update":"2026-03-22T11:22:12.480041712Z"} +2026/03/22 11:22:17 [transform_engine] {"stage_name":"transform_engine","events_processed":641,"events_dropped":0,"avg_latency_ms":2689.0846574412317,"throughput_eps":0,"last_update":"2026-03-22T11:22:12.478864055Z"} +2026/03/22 11:22:17 [log_collector] {"stage_name":"log_collector","events_processed":30525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6105,"last_update":"2026-03-22T11:22:17.36881206Z"} +2026/03/22 11:22:17 [metric_collector] {"stage_name":"metric_collector","events_processed":19244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3848.8,"last_update":"2026-03-22T11:22:12.368490149Z"} +2026/03/22 11:22:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7700,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:22:12.377663129Z"} +2026/03/22 11:22:17 ───────────────────────────────────────────────── +2026/03/22 11:22:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:22:22 [metric_collector] {"stage_name":"metric_collector","events_processed":19249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3849.8,"last_update":"2026-03-22T11:22:17.369201186Z"} +2026/03/22 11:22:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7702,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:22:17.378154113Z"} +2026/03/22 11:22:22 [detection_layer] {"stage_name":"detection_layer","events_processed":641,"events_dropped":0,"avg_latency_ms":17.61028278533603,"throughput_eps":0,"last_update":"2026-03-22T11:22:17.479373766Z"} +2026/03/22 11:22:22 [transform_engine] {"stage_name":"transform_engine","events_processed":641,"events_dropped":0,"avg_latency_ms":2689.0846574412317,"throughput_eps":0,"last_update":"2026-03-22T11:22:17.479457446Z"} +2026/03/22 11:22:22 [log_collector] {"stage_name":"log_collector","events_processed":30525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6105,"last_update":"2026-03-22T11:22:22.368134348Z"} +2026/03/22 11:22:22 ───────────────────────────────────────────────── +2026/03/22 11:22:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:22:27 [log_collector] {"stage_name":"log_collector","events_processed":30525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6105,"last_update":"2026-03-22T11:22:22.368134348Z"} +2026/03/22 11:22:27 [metric_collector] {"stage_name":"metric_collector","events_processed":19254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3850.8,"last_update":"2026-03-22T11:22:22.368841713Z"} +2026/03/22 11:22:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:22:22.378119062Z"} +2026/03/22 11:22:27 [detection_layer] {"stage_name":"detection_layer","events_processed":641,"events_dropped":0,"avg_latency_ms":17.61028278533603,"throughput_eps":0,"last_update":"2026-03-22T11:22:22.479561181Z"} +2026/03/22 11:22:27 [transform_engine] {"stage_name":"transform_engine","events_processed":641,"events_dropped":0,"avg_latency_ms":2689.0846574412317,"throughput_eps":0,"last_update":"2026-03-22T11:22:22.479594585Z"} +2026/03/22 11:22:27 ───────────────────────────────────────────────── +2026/03/22 11:22:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:22:32 [log_collector] {"stage_name":"log_collector","events_processed":30525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6105,"last_update":"2026-03-22T11:22:27.368816771Z"} +2026/03/22 11:22:32 [metric_collector] {"stage_name":"metric_collector","events_processed":19258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3851.6,"last_update":"2026-03-22T11:22:27.368917715Z"} +2026/03/22 11:22:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:22:27.378335192Z"} +2026/03/22 11:22:32 [detection_layer] {"stage_name":"detection_layer","events_processed":641,"events_dropped":0,"avg_latency_ms":17.61028278533603,"throughput_eps":0,"last_update":"2026-03-22T11:22:27.479691376Z"} +2026/03/22 11:22:32 [transform_engine] {"stage_name":"transform_engine","events_processed":642,"events_dropped":0,"avg_latency_ms":2175.2586953529853,"throughput_eps":0,"last_update":"2026-03-22T11:22:27.599031156Z"} +2026/03/22 11:22:32 ───────────────────────────────────────────────── +2026/03/22 11:22:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:22:37 [detection_layer] {"stage_name":"detection_layer","events_processed":642,"events_dropped":0,"avg_latency_ms":17.801220228268825,"throughput_eps":0,"last_update":"2026-03-22T11:22:32.47934475Z"} +2026/03/22 11:22:37 [transform_engine] {"stage_name":"transform_engine","events_processed":642,"events_dropped":0,"avg_latency_ms":2175.2586953529853,"throughput_eps":0,"last_update":"2026-03-22T11:22:32.479231043Z"} +2026/03/22 11:22:37 [log_collector] {"stage_name":"log_collector","events_processed":30525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6105,"last_update":"2026-03-22T11:22:32.368115597Z"} +2026/03/22 11:22:37 [metric_collector] {"stage_name":"metric_collector","events_processed":19264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3852.8,"last_update":"2026-03-22T11:22:32.3685295Z"} +2026/03/22 11:22:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:22:32.377870341Z"} +2026/03/22 11:22:37 ───────────────────────────────────────────────── +2026/03/22 11:22:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:22:42 [log_collector] {"stage_name":"log_collector","events_processed":30525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6105,"last_update":"2026-03-22T11:22:37.367997219Z"} +2026/03/22 11:22:42 [metric_collector] {"stage_name":"metric_collector","events_processed":19269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3853.8,"last_update":"2026-03-22T11:22:37.368549136Z"} +2026/03/22 11:22:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:22:37.378705609Z"} +2026/03/22 11:22:42 [detection_layer] {"stage_name":"detection_layer","events_processed":642,"events_dropped":0,"avg_latency_ms":17.801220228268825,"throughput_eps":0,"last_update":"2026-03-22T11:22:37.479942114Z"} +2026/03/22 11:22:42 [transform_engine] {"stage_name":"transform_engine","events_processed":642,"events_dropped":0,"avg_latency_ms":2175.2586953529853,"throughput_eps":0,"last_update":"2026-03-22T11:22:37.478807561Z"} +2026/03/22 11:22:42 ───────────────────────────────────────────────── +2026/03/22 11:22:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:22:47 [metric_collector] {"stage_name":"metric_collector","events_processed":19274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3854.8,"last_update":"2026-03-22T11:22:42.368746816Z"} +2026/03/22 11:22:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7712,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:22:42.377053396Z"} +2026/03/22 11:22:47 [detection_layer] {"stage_name":"detection_layer","events_processed":642,"events_dropped":0,"avg_latency_ms":17.801220228268825,"throughput_eps":0,"last_update":"2026-03-22T11:22:42.479300877Z"} +2026/03/22 11:22:47 [transform_engine] {"stage_name":"transform_engine","events_processed":642,"events_dropped":0,"avg_latency_ms":2175.2586953529853,"throughput_eps":0,"last_update":"2026-03-22T11:22:42.479370661Z"} +2026/03/22 11:22:47 [log_collector] {"stage_name":"log_collector","events_processed":30525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6105,"last_update":"2026-03-22T11:22:42.368507197Z"} +2026/03/22 11:22:47 ───────────────────────────────────────────────── +2026/03/22 11:22:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:22:52 [log_collector] {"stage_name":"log_collector","events_processed":30525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6105,"last_update":"2026-03-22T11:22:47.367967486Z"} +2026/03/22 11:22:52 [metric_collector] {"stage_name":"metric_collector","events_processed":19279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3855.8,"last_update":"2026-03-22T11:22:47.368346712Z"} +2026/03/22 11:22:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:22:47.37606202Z"} +2026/03/22 11:22:52 [detection_layer] {"stage_name":"detection_layer","events_processed":642,"events_dropped":0,"avg_latency_ms":17.801220228268825,"throughput_eps":0,"last_update":"2026-03-22T11:22:47.479333782Z"} +2026/03/22 11:22:52 [transform_engine] {"stage_name":"transform_engine","events_processed":642,"events_dropped":0,"avg_latency_ms":2175.2586953529853,"throughput_eps":0,"last_update":"2026-03-22T11:22:47.47931137Z"} +2026/03/22 11:22:52 ───────────────────────────────────────────────── +2026/03/22 11:22:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:22:57 [log_collector] {"stage_name":"log_collector","events_processed":30525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6105,"last_update":"2026-03-22T11:22:52.368097267Z"} +2026/03/22 11:22:57 [metric_collector] {"stage_name":"metric_collector","events_processed":19284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3856.8,"last_update":"2026-03-22T11:22:52.368744396Z"} +2026/03/22 11:22:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:22:52.379582395Z"} +2026/03/22 11:22:57 [detection_layer] {"stage_name":"detection_layer","events_processed":642,"events_dropped":0,"avg_latency_ms":17.801220228268825,"throughput_eps":0,"last_update":"2026-03-22T11:22:52.479946039Z"} +2026/03/22 11:22:57 [transform_engine] {"stage_name":"transform_engine","events_processed":642,"events_dropped":0,"avg_latency_ms":2175.2586953529853,"throughput_eps":0,"last_update":"2026-03-22T11:22:52.47992566Z"} +2026/03/22 11:22:57 ───────────────────────────────────────────────── +2026/03/22 11:23:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:23:02 [log_collector] {"stage_name":"log_collector","events_processed":30525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6105,"last_update":"2026-03-22T11:23:02.369090139Z"} +2026/03/22 11:23:02 [metric_collector] {"stage_name":"metric_collector","events_processed":19289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3857.8,"last_update":"2026-03-22T11:22:57.369631981Z"} +2026/03/22 11:23:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7718,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:22:57.378372973Z"} +2026/03/22 11:23:02 [detection_layer] {"stage_name":"detection_layer","events_processed":642,"events_dropped":0,"avg_latency_ms":17.801220228268825,"throughput_eps":0,"last_update":"2026-03-22T11:22:57.479867893Z"} +2026/03/22 11:23:02 [transform_engine] {"stage_name":"transform_engine","events_processed":642,"events_dropped":0,"avg_latency_ms":2175.2586953529853,"throughput_eps":0,"last_update":"2026-03-22T11:22:57.47974633Z"} +2026/03/22 11:23:02 ───────────────────────────────────────────────── +2026/03/22 11:23:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:23:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:23:02.379831473Z"} +2026/03/22 11:23:07 [detection_layer] {"stage_name":"detection_layer","events_processed":643,"events_dropped":0,"avg_latency_ms":18.44378598261506,"throughput_eps":0,"last_update":"2026-03-22T11:23:02.479034452Z"} +2026/03/22 11:23:07 [transform_engine] {"stage_name":"transform_engine","events_processed":643,"events_dropped":0,"avg_latency_ms":1751.6399946823883,"throughput_eps":0,"last_update":"2026-03-22T11:23:02.479015136Z"} +2026/03/22 11:23:07 [log_collector] {"stage_name":"log_collector","events_processed":30525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6105,"last_update":"2026-03-22T11:23:02.369090139Z"} +2026/03/22 11:23:07 [metric_collector] {"stage_name":"metric_collector","events_processed":19294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3858.8,"last_update":"2026-03-22T11:23:02.369614784Z"} +2026/03/22 11:23:07 ───────────────────────────────────────────────── +2026/03/22 11:23:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:23:12 [log_collector] {"stage_name":"log_collector","events_processed":30525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6105,"last_update":"2026-03-22T11:23:07.369348922Z"} +2026/03/22 11:23:12 [metric_collector] {"stage_name":"metric_collector","events_processed":19299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3859.8,"last_update":"2026-03-22T11:23:07.369599522Z"} +2026/03/22 11:23:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7722,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:23:07.37800493Z"} +2026/03/22 11:23:12 [detection_layer] {"stage_name":"detection_layer","events_processed":643,"events_dropped":0,"avg_latency_ms":18.44378598261506,"throughput_eps":0,"last_update":"2026-03-22T11:23:07.479213052Z"} +2026/03/22 11:23:12 [transform_engine] {"stage_name":"transform_engine","events_processed":643,"events_dropped":0,"avg_latency_ms":1751.6399946823883,"throughput_eps":0,"last_update":"2026-03-22T11:23:07.479258379Z"} +2026/03/22 11:23:12 ───────────────────────────────────────────────── +Saved state: 15 clusters, 30526 messages, reason: none +2026/03/22 11:23:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:23:17 [log_collector] {"stage_name":"log_collector","events_processed":30525,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6105,"last_update":"2026-03-22T11:23:12.367973256Z"} +2026/03/22 11:23:17 [metric_collector] {"stage_name":"metric_collector","events_processed":19304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3860.8,"last_update":"2026-03-22T11:23:12.368311684Z"} +2026/03/22 11:23:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:23:12.378228408Z"} +2026/03/22 11:23:17 [detection_layer] {"stage_name":"detection_layer","events_processed":643,"events_dropped":0,"avg_latency_ms":18.44378598261506,"throughput_eps":0,"last_update":"2026-03-22T11:23:12.479518135Z"} +2026/03/22 11:23:17 [transform_engine] {"stage_name":"transform_engine","events_processed":643,"events_dropped":0,"avg_latency_ms":1751.6399946823883,"throughput_eps":0,"last_update":"2026-03-22T11:23:12.479579483Z"} +2026/03/22 11:23:17 ───────────────────────────────────────────────── +2026/03/22 11:23:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:23:22 [detection_layer] {"stage_name":"detection_layer","events_processed":643,"events_dropped":0,"avg_latency_ms":18.44378598261506,"throughput_eps":0,"last_update":"2026-03-22T11:23:17.479449644Z"} +2026/03/22 11:23:22 [transform_engine] {"stage_name":"transform_engine","events_processed":643,"events_dropped":0,"avg_latency_ms":1751.6399946823883,"throughput_eps":0,"last_update":"2026-03-22T11:23:17.479409496Z"} +2026/03/22 11:23:22 [log_collector] {"stage_name":"log_collector","events_processed":30538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6107.6,"last_update":"2026-03-22T11:23:17.368928655Z"} +2026/03/22 11:23:22 [metric_collector] {"stage_name":"metric_collector","events_processed":19309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3861.8,"last_update":"2026-03-22T11:23:17.369017325Z"} +2026/03/22 11:23:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:23:17.376067289Z"} +2026/03/22 11:23:22 ───────────────────────────────────────────────── +2026/03/22 11:23:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:23:27 [metric_collector] {"stage_name":"metric_collector","events_processed":19314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3862.8,"last_update":"2026-03-22T11:23:22.368757739Z"} +2026/03/22 11:23:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7728,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:23:22.3781765Z"} +2026/03/22 11:23:27 [detection_layer] {"stage_name":"detection_layer","events_processed":643,"events_dropped":0,"avg_latency_ms":18.44378598261506,"throughput_eps":0,"last_update":"2026-03-22T11:23:22.479679666Z"} +2026/03/22 11:23:27 [transform_engine] {"stage_name":"transform_engine","events_processed":643,"events_dropped":0,"avg_latency_ms":1751.6399946823883,"throughput_eps":0,"last_update":"2026-03-22T11:23:22.479565367Z"} +2026/03/22 11:23:27 [log_collector] {"stage_name":"log_collector","events_processed":30539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6107.8,"last_update":"2026-03-22T11:23:22.368447025Z"} +2026/03/22 11:23:27 ───────────────────────────────────────────────── +2026/03/22 11:23:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:23:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7730,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:23:27.377844757Z"} +2026/03/22 11:23:32 [detection_layer] {"stage_name":"detection_layer","events_processed":643,"events_dropped":0,"avg_latency_ms":18.44378598261506,"throughput_eps":0,"last_update":"2026-03-22T11:23:27.479212244Z"} +2026/03/22 11:23:32 [transform_engine] {"stage_name":"transform_engine","events_processed":643,"events_dropped":0,"avg_latency_ms":1751.6399946823883,"throughput_eps":0,"last_update":"2026-03-22T11:23:27.479183217Z"} +2026/03/22 11:23:32 [log_collector] {"stage_name":"log_collector","events_processed":30539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6107.8,"last_update":"2026-03-22T11:23:27.368717845Z"} +2026/03/22 11:23:32 [metric_collector] {"stage_name":"metric_collector","events_processed":19319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3863.8,"last_update":"2026-03-22T11:23:27.368980148Z"} +2026/03/22 11:23:32 ───────────────────────────────────────────────── +2026/03/22 11:23:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:23:37 [log_collector] {"stage_name":"log_collector","events_processed":30539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6107.8,"last_update":"2026-03-22T11:23:32.368558614Z"} +2026/03/22 11:23:37 [metric_collector] {"stage_name":"metric_collector","events_processed":19324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3864.8,"last_update":"2026-03-22T11:23:32.368931298Z"} +2026/03/22 11:23:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:23:32.377880509Z"} +2026/03/22 11:23:37 [detection_layer] {"stage_name":"detection_layer","events_processed":644,"events_dropped":0,"avg_latency_ms":18.50488918609205,"throughput_eps":0,"last_update":"2026-03-22T11:23:32.479492864Z"} +2026/03/22 11:23:37 [transform_engine] {"stage_name":"transform_engine","events_processed":644,"events_dropped":0,"avg_latency_ms":1427.7935855459107,"throughput_eps":0,"last_update":"2026-03-22T11:23:32.479585512Z"} +2026/03/22 11:23:37 ───────────────────────────────────────────────── +2026/03/22 11:23:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:23:42 [detection_layer] {"stage_name":"detection_layer","events_processed":644,"events_dropped":0,"avg_latency_ms":18.50488918609205,"throughput_eps":0,"last_update":"2026-03-22T11:23:37.479815777Z"} +2026/03/22 11:23:42 [transform_engine] {"stage_name":"transform_engine","events_processed":644,"events_dropped":0,"avg_latency_ms":1427.7935855459107,"throughput_eps":0,"last_update":"2026-03-22T11:23:37.47982806Z"} +2026/03/22 11:23:42 [log_collector] {"stage_name":"log_collector","events_processed":30539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6107.8,"last_update":"2026-03-22T11:23:37.367962027Z"} +2026/03/22 11:23:42 [metric_collector] {"stage_name":"metric_collector","events_processed":19329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3865.8,"last_update":"2026-03-22T11:23:37.368497642Z"} +2026/03/22 11:23:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:23:37.377471851Z"} +2026/03/22 11:23:42 ───────────────────────────────────────────────── +2026/03/22 11:23:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:23:47 [log_collector] {"stage_name":"log_collector","events_processed":30539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6107.8,"last_update":"2026-03-22T11:23:42.367995996Z"} +2026/03/22 11:23:47 [metric_collector] {"stage_name":"metric_collector","events_processed":19334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3866.8,"last_update":"2026-03-22T11:23:42.368589934Z"} +2026/03/22 11:23:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7736,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:23:42.376879191Z"} +2026/03/22 11:23:47 [detection_layer] {"stage_name":"detection_layer","events_processed":644,"events_dropped":0,"avg_latency_ms":18.50488918609205,"throughput_eps":0,"last_update":"2026-03-22T11:23:42.479112535Z"} +2026/03/22 11:23:47 [transform_engine] {"stage_name":"transform_engine","events_processed":644,"events_dropped":0,"avg_latency_ms":1427.7935855459107,"throughput_eps":0,"last_update":"2026-03-22T11:23:42.479125981Z"} +2026/03/22 11:23:47 ───────────────────────────────────────────────── +2026/03/22 11:23:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:23:52 [log_collector] {"stage_name":"log_collector","events_processed":30539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6107.8,"last_update":"2026-03-22T11:23:47.368645407Z"} +2026/03/22 11:23:52 [metric_collector] {"stage_name":"metric_collector","events_processed":19339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3867.8,"last_update":"2026-03-22T11:23:47.368903842Z"} +2026/03/22 11:23:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7738,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:23:47.3783215Z"} +2026/03/22 11:23:52 [detection_layer] {"stage_name":"detection_layer","events_processed":644,"events_dropped":0,"avg_latency_ms":18.50488918609205,"throughput_eps":0,"last_update":"2026-03-22T11:23:47.479556082Z"} +2026/03/22 11:23:52 [transform_engine] {"stage_name":"transform_engine","events_processed":644,"events_dropped":0,"avg_latency_ms":1427.7935855459107,"throughput_eps":0,"last_update":"2026-03-22T11:23:47.479578906Z"} +2026/03/22 11:23:52 ───────────────────────────────────────────────── +2026/03/22 11:23:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:23:57 [transform_engine] {"stage_name":"transform_engine","events_processed":644,"events_dropped":0,"avg_latency_ms":1427.7935855459107,"throughput_eps":0,"last_update":"2026-03-22T11:23:52.479084948Z"} +2026/03/22 11:23:57 [log_collector] {"stage_name":"log_collector","events_processed":30539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6107.8,"last_update":"2026-03-22T11:23:52.369004234Z"} +2026/03/22 11:23:57 [metric_collector] {"stage_name":"metric_collector","events_processed":19344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3868.8,"last_update":"2026-03-22T11:23:52.369021788Z"} +2026/03/22 11:23:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7740,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:23:52.377855507Z"} +2026/03/22 11:23:57 [detection_layer] {"stage_name":"detection_layer","events_processed":644,"events_dropped":0,"avg_latency_ms":18.50488918609205,"throughput_eps":0,"last_update":"2026-03-22T11:23:52.47907544Z"} +2026/03/22 11:23:57 ───────────────────────────────────────────────── +2026/03/22 11:24:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:24:02 [log_collector] {"stage_name":"log_collector","events_processed":30539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6107.8,"last_update":"2026-03-22T11:23:57.368006463Z"} +2026/03/22 11:24:02 [metric_collector] {"stage_name":"metric_collector","events_processed":19349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3869.8,"last_update":"2026-03-22T11:23:57.368404305Z"} +2026/03/22 11:24:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:23:57.378012106Z"} +2026/03/22 11:24:02 [detection_layer] {"stage_name":"detection_layer","events_processed":644,"events_dropped":0,"avg_latency_ms":18.50488918609205,"throughput_eps":0,"last_update":"2026-03-22T11:23:57.479274982Z"} +2026/03/22 11:24:02 [transform_engine] {"stage_name":"transform_engine","events_processed":645,"events_dropped":0,"avg_latency_ms":1156.9623950367286,"throughput_eps":0,"last_update":"2026-03-22T11:23:57.552929688Z"} +2026/03/22 11:24:02 ───────────────────────────────────────────────── +2026/03/22 11:24:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:24:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:24:02.37895843Z"} +2026/03/22 11:24:07 [detection_layer] {"stage_name":"detection_layer","events_processed":645,"events_dropped":0,"avg_latency_ms":19.007795348873643,"throughput_eps":0,"last_update":"2026-03-22T11:24:02.479200993Z"} +2026/03/22 11:24:07 [transform_engine] {"stage_name":"transform_engine","events_processed":645,"events_dropped":0,"avg_latency_ms":1156.9623950367286,"throughput_eps":0,"last_update":"2026-03-22T11:24:02.479172558Z"} +2026/03/22 11:24:07 [log_collector] {"stage_name":"log_collector","events_processed":30539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6107.8,"last_update":"2026-03-22T11:24:02.368780677Z"} +2026/03/22 11:24:07 [metric_collector] {"stage_name":"metric_collector","events_processed":19354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3870.8,"last_update":"2026-03-22T11:24:02.369514582Z"} +2026/03/22 11:24:07 ───────────────────────────────────────────────── +2026/03/22 11:24:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:24:12 [log_collector] {"stage_name":"log_collector","events_processed":30539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6107.8,"last_update":"2026-03-22T11:24:12.368941029Z"} +2026/03/22 11:24:12 [metric_collector] {"stage_name":"metric_collector","events_processed":19359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3871.8,"last_update":"2026-03-22T11:24:07.36953788Z"} +2026/03/22 11:24:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:24:07.378170894Z"} +2026/03/22 11:24:12 [detection_layer] {"stage_name":"detection_layer","events_processed":645,"events_dropped":0,"avg_latency_ms":19.007795348873643,"throughput_eps":0,"last_update":"2026-03-22T11:24:07.479561887Z"} +2026/03/22 11:24:12 [transform_engine] {"stage_name":"transform_engine","events_processed":645,"events_dropped":0,"avg_latency_ms":1156.9623950367286,"throughput_eps":0,"last_update":"2026-03-22T11:24:07.479594981Z"} +2026/03/22 11:24:12 ───────────────────────────────────────────────── +2026/03/22 11:24:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:24:17 [log_collector] {"stage_name":"log_collector","events_processed":30539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6107.8,"last_update":"2026-03-22T11:24:12.368941029Z"} +2026/03/22 11:24:17 [metric_collector] {"stage_name":"metric_collector","events_processed":19364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3872.8,"last_update":"2026-03-22T11:24:12.369165759Z"} +2026/03/22 11:24:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:24:12.378321746Z"} +2026/03/22 11:24:17 [detection_layer] {"stage_name":"detection_layer","events_processed":645,"events_dropped":0,"avg_latency_ms":19.007795348873643,"throughput_eps":0,"last_update":"2026-03-22T11:24:12.479706496Z"} +2026/03/22 11:24:17 [transform_engine] {"stage_name":"transform_engine","events_processed":645,"events_dropped":0,"avg_latency_ms":1156.9623950367286,"throughput_eps":0,"last_update":"2026-03-22T11:24:12.479674535Z"} +2026/03/22 11:24:17 ───────────────────────────────────────────────── +Saved state: 15 clusters, 30540 messages, reason: none +2026/03/22 11:24:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:24:22 [log_collector] {"stage_name":"log_collector","events_processed":30539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6107.8,"last_update":"2026-03-22T11:24:17.368158345Z"} +2026/03/22 11:24:22 [metric_collector] {"stage_name":"metric_collector","events_processed":19369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3873.8,"last_update":"2026-03-22T11:24:17.368403986Z"} +2026/03/22 11:24:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7750,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:24:17.377890656Z"} +2026/03/22 11:24:22 [detection_layer] {"stage_name":"detection_layer","events_processed":645,"events_dropped":0,"avg_latency_ms":19.007795348873643,"throughput_eps":0,"last_update":"2026-03-22T11:24:17.479279894Z"} +2026/03/22 11:24:22 [transform_engine] {"stage_name":"transform_engine","events_processed":645,"events_dropped":0,"avg_latency_ms":1156.9623950367286,"throughput_eps":0,"last_update":"2026-03-22T11:24:17.479237523Z"} +2026/03/22 11:24:22 ───────────────────────────────────────────────── +2026/03/22 11:24:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:24:27 [log_collector] {"stage_name":"log_collector","events_processed":30544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6108.8,"last_update":"2026-03-22T11:24:22.368402557Z"} +2026/03/22 11:24:27 [metric_collector] {"stage_name":"metric_collector","events_processed":19374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3874.8,"last_update":"2026-03-22T11:24:22.368304459Z"} +2026/03/22 11:24:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7752,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:24:22.374333717Z"} +2026/03/22 11:24:27 [detection_layer] {"stage_name":"detection_layer","events_processed":645,"events_dropped":0,"avg_latency_ms":19.007795348873643,"throughput_eps":0,"last_update":"2026-03-22T11:24:22.479889335Z"} +2026/03/22 11:24:27 [transform_engine] {"stage_name":"transform_engine","events_processed":645,"events_dropped":0,"avg_latency_ms":1156.9623950367286,"throughput_eps":0,"last_update":"2026-03-22T11:24:22.479900557Z"} +2026/03/22 11:24:27 ───────────────────────────────────────────────── +2026/03/22 11:24:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:24:32 [log_collector] {"stage_name":"log_collector","events_processed":30544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6108.8,"last_update":"2026-03-22T11:24:27.368605602Z"} +2026/03/22 11:24:32 [metric_collector] {"stage_name":"metric_collector","events_processed":19379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3875.8,"last_update":"2026-03-22T11:24:27.369095481Z"} +2026/03/22 11:24:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:24:27.374490975Z"} +2026/03/22 11:24:32 [detection_layer] {"stage_name":"detection_layer","events_processed":645,"events_dropped":0,"avg_latency_ms":19.007795348873643,"throughput_eps":0,"last_update":"2026-03-22T11:24:27.479955679Z"} +2026/03/22 11:24:32 [transform_engine] {"stage_name":"transform_engine","events_processed":646,"events_dropped":0,"avg_latency_ms":1491.666655429383,"throughput_eps":0,"last_update":"2026-03-22T11:24:30.310157928Z"} +2026/03/22 11:24:32 ───────────────────────────────────────────────── +2026/03/22 11:24:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:24:37 [log_collector] {"stage_name":"log_collector","events_processed":30544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6108.8,"last_update":"2026-03-22T11:24:37.368526668Z"} +2026/03/22 11:24:37 [metric_collector] {"stage_name":"metric_collector","events_processed":19383,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3876.6,"last_update":"2026-03-22T11:24:32.368375399Z"} +2026/03/22 11:24:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:24:32.37716245Z"} +2026/03/22 11:24:37 [detection_layer] {"stage_name":"detection_layer","events_processed":646,"events_dropped":0,"avg_latency_ms":18.256177879098914,"throughput_eps":0,"last_update":"2026-03-22T11:24:32.479294861Z"} +2026/03/22 11:24:37 [transform_engine] {"stage_name":"transform_engine","events_processed":646,"events_dropped":0,"avg_latency_ms":1491.666655429383,"throughput_eps":0,"last_update":"2026-03-22T11:24:32.479320611Z"} +2026/03/22 11:24:37 ───────────────────────────────────────────────── +2026/03/22 11:24:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:24:42 [detection_layer] {"stage_name":"detection_layer","events_processed":646,"events_dropped":0,"avg_latency_ms":18.256177879098914,"throughput_eps":0,"last_update":"2026-03-22T11:24:37.479441612Z"} +2026/03/22 11:24:42 [transform_engine] {"stage_name":"transform_engine","events_processed":646,"events_dropped":0,"avg_latency_ms":1491.666655429383,"throughput_eps":0,"last_update":"2026-03-22T11:24:37.479417305Z"} +2026/03/22 11:24:42 [log_collector] {"stage_name":"log_collector","events_processed":30544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6108.8,"last_update":"2026-03-22T11:24:37.368526668Z"} +2026/03/22 11:24:42 [metric_collector] {"stage_name":"metric_collector","events_processed":19388,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3877.6,"last_update":"2026-03-22T11:24:37.368536567Z"} +2026/03/22 11:24:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7758,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:24:37.375087915Z"} +2026/03/22 11:24:42 ───────────────────────────────────────────────── +2026/03/22 11:24:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:24:47 [log_collector] {"stage_name":"log_collector","events_processed":30544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6108.8,"last_update":"2026-03-22T11:24:42.369004143Z"} +2026/03/22 11:24:47 [metric_collector] {"stage_name":"metric_collector","events_processed":19394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3878.8,"last_update":"2026-03-22T11:24:42.368993943Z"} +2026/03/22 11:24:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:24:42.375688275Z"} +2026/03/22 11:24:47 [detection_layer] {"stage_name":"detection_layer","events_processed":646,"events_dropped":0,"avg_latency_ms":18.256177879098914,"throughput_eps":0,"last_update":"2026-03-22T11:24:42.479913645Z"} +2026/03/22 11:24:47 [transform_engine] {"stage_name":"transform_engine","events_processed":646,"events_dropped":0,"avg_latency_ms":1491.666655429383,"throughput_eps":0,"last_update":"2026-03-22T11:24:42.478812576Z"} +2026/03/22 11:24:47 ───────────────────────────────────────────────── +2026/03/22 11:24:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:24:52 [metric_collector] {"stage_name":"metric_collector","events_processed":19399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3879.8,"last_update":"2026-03-22T11:24:47.369017319Z"} +2026/03/22 11:24:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:24:47.379450472Z"} +2026/03/22 11:24:52 [detection_layer] {"stage_name":"detection_layer","events_processed":646,"events_dropped":0,"avg_latency_ms":18.256177879098914,"throughput_eps":0,"last_update":"2026-03-22T11:24:47.479162728Z"} +2026/03/22 11:24:52 [transform_engine] {"stage_name":"transform_engine","events_processed":646,"events_dropped":0,"avg_latency_ms":1491.666655429383,"throughput_eps":0,"last_update":"2026-03-22T11:24:47.479138492Z"} +2026/03/22 11:24:52 [log_collector] {"stage_name":"log_collector","events_processed":30544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6108.8,"last_update":"2026-03-22T11:24:47.369143831Z"} +2026/03/22 11:24:52 ───────────────────────────────────────────────── +2026/03/22 11:24:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:24:57 [log_collector] {"stage_name":"log_collector","events_processed":30544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6108.8,"last_update":"2026-03-22T11:24:52.368356355Z"} +2026/03/22 11:24:57 [metric_collector] {"stage_name":"metric_collector","events_processed":19404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3880.8,"last_update":"2026-03-22T11:24:52.368500321Z"} +2026/03/22 11:24:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:24:52.374759359Z"} +2026/03/22 11:24:57 [detection_layer] {"stage_name":"detection_layer","events_processed":646,"events_dropped":0,"avg_latency_ms":18.256177879098914,"throughput_eps":0,"last_update":"2026-03-22T11:24:52.480241217Z"} +2026/03/22 11:24:57 [transform_engine] {"stage_name":"transform_engine","events_processed":646,"events_dropped":0,"avg_latency_ms":1491.666655429383,"throughput_eps":0,"last_update":"2026-03-22T11:24:52.478846405Z"} +2026/03/22 11:24:57 ───────────────────────────────────────────────── +2026/03/22 11:25:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:25:02 [log_collector] {"stage_name":"log_collector","events_processed":30544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6108.8,"last_update":"2026-03-22T11:24:57.368459405Z"} +2026/03/22 11:25:02 [metric_collector] {"stage_name":"metric_collector","events_processed":19409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3881.8,"last_update":"2026-03-22T11:24:57.368690969Z"} +2026/03/22 11:25:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7766,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:24:57.377007459Z"} +2026/03/22 11:25:02 [detection_layer] {"stage_name":"detection_layer","events_processed":646,"events_dropped":0,"avg_latency_ms":18.256177879098914,"throughput_eps":0,"last_update":"2026-03-22T11:24:57.479262575Z"} +2026/03/22 11:25:02 [transform_engine] {"stage_name":"transform_engine","events_processed":647,"events_dropped":0,"avg_latency_ms":1213.1440693435063,"throughput_eps":0,"last_update":"2026-03-22T11:24:57.578341428Z"} +2026/03/22 11:25:02 ───────────────────────────────────────────────── +2026/03/22 11:25:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:25:07 [log_collector] {"stage_name":"log_collector","events_processed":30547,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6109.4,"last_update":"2026-03-22T11:25:02.368399595Z"} +2026/03/22 11:25:07 [metric_collector] {"stage_name":"metric_collector","events_processed":19414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3882.8,"last_update":"2026-03-22T11:25:02.368771658Z"} +2026/03/22 11:25:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7768,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:25:02.375597753Z"} +2026/03/22 11:25:07 [detection_layer] {"stage_name":"detection_layer","events_processed":647,"events_dropped":0,"avg_latency_ms":17.07825730327913,"throughput_eps":0,"last_update":"2026-03-22T11:25:02.479925138Z"} +2026/03/22 11:25:07 [transform_engine] {"stage_name":"transform_engine","events_processed":647,"events_dropped":0,"avg_latency_ms":1213.1440693435063,"throughput_eps":0,"last_update":"2026-03-22T11:25:02.478837135Z"} +2026/03/22 11:25:07 ───────────────────────────────────────────────── +2026/03/22 11:25:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:25:12 [log_collector] {"stage_name":"log_collector","events_processed":30555,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6111,"last_update":"2026-03-22T11:25:07.368056374Z"} +2026/03/22 11:25:12 [metric_collector] {"stage_name":"metric_collector","events_processed":19419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3883.8,"last_update":"2026-03-22T11:25:07.368880172Z"} +2026/03/22 11:25:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7770,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:25:07.378607884Z"} +2026/03/22 11:25:12 [detection_layer] {"stage_name":"detection_layer","events_processed":647,"events_dropped":0,"avg_latency_ms":17.07825730327913,"throughput_eps":0,"last_update":"2026-03-22T11:25:07.480004376Z"} +2026/03/22 11:25:12 [transform_engine] {"stage_name":"transform_engine","events_processed":647,"events_dropped":0,"avg_latency_ms":1213.1440693435063,"throughput_eps":0,"last_update":"2026-03-22T11:25:07.480018033Z"} +2026/03/22 11:25:12 ───────────────────────────────────────────────── +2026/03/22 11:25:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:25:17 [log_collector] {"stage_name":"log_collector","events_processed":30588,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6117.6,"last_update":"2026-03-22T11:25:12.368372575Z"} +2026/03/22 11:25:17 [metric_collector] {"stage_name":"metric_collector","events_processed":19424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3884.8,"last_update":"2026-03-22T11:25:12.368607496Z"} +2026/03/22 11:25:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:25:12.377266099Z"} +2026/03/22 11:25:17 [detection_layer] {"stage_name":"detection_layer","events_processed":647,"events_dropped":0,"avg_latency_ms":17.07825730327913,"throughput_eps":0,"last_update":"2026-03-22T11:25:12.479214509Z"} +2026/03/22 11:25:17 [transform_engine] {"stage_name":"transform_engine","events_processed":647,"events_dropped":0,"avg_latency_ms":1213.1440693435063,"throughput_eps":0,"last_update":"2026-03-22T11:25:12.479232724Z"} +2026/03/22 11:25:17 ───────────────────────────────────────────────── +2026/03/22 11:25:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:25:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:25:17.376559864Z"} +2026/03/22 11:25:22 [detection_layer] {"stage_name":"detection_layer","events_processed":647,"events_dropped":0,"avg_latency_ms":17.07825730327913,"throughput_eps":0,"last_update":"2026-03-22T11:25:17.479972889Z"} +2026/03/22 11:25:22 [transform_engine] {"stage_name":"transform_engine","events_processed":647,"events_dropped":0,"avg_latency_ms":1213.1440693435063,"throughput_eps":0,"last_update":"2026-03-22T11:25:17.479989941Z"} +2026/03/22 11:25:22 [log_collector] {"stage_name":"log_collector","events_processed":30827,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6165.4,"last_update":"2026-03-22T11:25:17.367998636Z"} +2026/03/22 11:25:22 [metric_collector] {"stage_name":"metric_collector","events_processed":19429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3885.8,"last_update":"2026-03-22T11:25:17.368598966Z"} +2026/03/22 11:25:22 ───────────────────────────────────────────────── +2026/03/22 11:25:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:25:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:25:22.374670263Z"} +2026/03/22 11:25:27 [detection_layer] {"stage_name":"detection_layer","events_processed":647,"events_dropped":0,"avg_latency_ms":17.07825730327913,"throughput_eps":0,"last_update":"2026-03-22T11:25:22.479999468Z"} +2026/03/22 11:25:27 [transform_engine] {"stage_name":"transform_engine","events_processed":647,"events_dropped":0,"avg_latency_ms":1213.1440693435063,"throughput_eps":0,"last_update":"2026-03-22T11:25:22.478823065Z"} +2026/03/22 11:25:27 [log_collector] {"stage_name":"log_collector","events_processed":30906,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6181.2,"last_update":"2026-03-22T11:25:22.368435041Z"} +2026/03/22 11:25:27 [metric_collector] {"stage_name":"metric_collector","events_processed":19434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3886.8,"last_update":"2026-03-22T11:25:22.368944507Z"} +2026/03/22 11:25:27 ───────────────────────────────────────────────── +2026/03/22 11:25:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:25:32 [log_collector] {"stage_name":"log_collector","events_processed":30906,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6181.2,"last_update":"2026-03-22T11:25:27.368531012Z"} +2026/03/22 11:25:32 [metric_collector] {"stage_name":"metric_collector","events_processed":19439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3887.8,"last_update":"2026-03-22T11:25:27.368940467Z"} +2026/03/22 11:25:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:25:27.377481707Z"} +2026/03/22 11:25:32 [detection_layer] {"stage_name":"detection_layer","events_processed":647,"events_dropped":0,"avg_latency_ms":17.07825730327913,"throughput_eps":0,"last_update":"2026-03-22T11:25:27.479884907Z"} +2026/03/22 11:25:32 [transform_engine] {"stage_name":"transform_engine","events_processed":648,"events_dropped":0,"avg_latency_ms":994.6214096748051,"throughput_eps":0,"last_update":"2026-03-22T11:25:27.600312971Z"} +2026/03/22 11:25:32 ───────────────────────────────────────────────── +Saved state: 15 clusters, 30907 messages, reason: none +2026/03/22 11:25:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:25:37 [log_collector] {"stage_name":"log_collector","events_processed":30906,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6181.2,"last_update":"2026-03-22T11:25:32.368112974Z"} +2026/03/22 11:25:37 [metric_collector] {"stage_name":"metric_collector","events_processed":19444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3888.8,"last_update":"2026-03-22T11:25:32.368804467Z"} +2026/03/22 11:25:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7780,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:25:32.379141396Z"} +2026/03/22 11:25:37 [detection_layer] {"stage_name":"detection_layer","events_processed":648,"events_dropped":0,"avg_latency_ms":17.610728042623307,"throughput_eps":0,"last_update":"2026-03-22T11:25:32.479493839Z"} +2026/03/22 11:25:37 [transform_engine] {"stage_name":"transform_engine","events_processed":648,"events_dropped":0,"avg_latency_ms":994.6214096748051,"throughput_eps":0,"last_update":"2026-03-22T11:25:32.479506664Z"} +2026/03/22 11:25:37 ───────────────────────────────────────────────── +2026/03/22 11:25:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:25:42 [metric_collector] {"stage_name":"metric_collector","events_processed":19449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3889.8,"last_update":"2026-03-22T11:25:37.368994344Z"} +2026/03/22 11:25:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7782,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:25:37.378083242Z"} +2026/03/22 11:25:42 [detection_layer] {"stage_name":"detection_layer","events_processed":648,"events_dropped":0,"avg_latency_ms":17.610728042623307,"throughput_eps":0,"last_update":"2026-03-22T11:25:37.479307875Z"} +2026/03/22 11:25:42 [transform_engine] {"stage_name":"transform_engine","events_processed":648,"events_dropped":0,"avg_latency_ms":994.6214096748051,"throughput_eps":0,"last_update":"2026-03-22T11:25:37.479318967Z"} +2026/03/22 11:25:42 [log_collector] {"stage_name":"log_collector","events_processed":30909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6181.8,"last_update":"2026-03-22T11:25:37.368425554Z"} +2026/03/22 11:25:42 ───────────────────────────────────────────────── +2026/03/22 11:25:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:25:47 [log_collector] {"stage_name":"log_collector","events_processed":30909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6181.8,"last_update":"2026-03-22T11:25:42.368383596Z"} +2026/03/22 11:25:47 [metric_collector] {"stage_name":"metric_collector","events_processed":19454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3890.8,"last_update":"2026-03-22T11:25:42.368638805Z"} +2026/03/22 11:25:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:25:42.374604812Z"} +2026/03/22 11:25:47 [detection_layer] {"stage_name":"detection_layer","events_processed":648,"events_dropped":0,"avg_latency_ms":17.610728042623307,"throughput_eps":0,"last_update":"2026-03-22T11:25:42.47975277Z"} +2026/03/22 11:25:47 [transform_engine] {"stage_name":"transform_engine","events_processed":648,"events_dropped":0,"avg_latency_ms":994.6214096748051,"throughput_eps":0,"last_update":"2026-03-22T11:25:42.479762588Z"} +2026/03/22 11:25:47 ───────────────────────────────────────────────── +2026/03/22 11:25:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:25:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:25:47.377830314Z"} +2026/03/22 11:25:52 [detection_layer] {"stage_name":"detection_layer","events_processed":648,"events_dropped":0,"avg_latency_ms":17.610728042623307,"throughput_eps":0,"last_update":"2026-03-22T11:25:47.479010131Z"} +2026/03/22 11:25:52 [transform_engine] {"stage_name":"transform_engine","events_processed":648,"events_dropped":0,"avg_latency_ms":994.6214096748051,"throughput_eps":0,"last_update":"2026-03-22T11:25:47.478903406Z"} +2026/03/22 11:25:52 [log_collector] {"stage_name":"log_collector","events_processed":30920,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6184,"last_update":"2026-03-22T11:25:47.367979976Z"} +2026/03/22 11:25:52 [metric_collector] {"stage_name":"metric_collector","events_processed":19459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3891.8,"last_update":"2026-03-22T11:25:47.368458894Z"} +2026/03/22 11:25:52 ───────────────────────────────────────────────── +2026/03/22 11:25:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:25:57 [metric_collector] {"stage_name":"metric_collector","events_processed":19464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3892.8,"last_update":"2026-03-22T11:25:52.368455151Z"} +2026/03/22 11:25:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:25:52.378439875Z"} +2026/03/22 11:25:57 [detection_layer] {"stage_name":"detection_layer","events_processed":648,"events_dropped":0,"avg_latency_ms":17.610728042623307,"throughput_eps":0,"last_update":"2026-03-22T11:25:52.479805349Z"} +2026/03/22 11:25:57 [transform_engine] {"stage_name":"transform_engine","events_processed":648,"events_dropped":0,"avg_latency_ms":994.6214096748051,"throughput_eps":0,"last_update":"2026-03-22T11:25:52.479814786Z"} +2026/03/22 11:25:57 [log_collector] {"stage_name":"log_collector","events_processed":30920,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6184,"last_update":"2026-03-22T11:25:52.367975161Z"} +2026/03/22 11:25:57 ───────────────────────────────────────────────── +2026/03/22 11:26:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:26:02 [log_collector] {"stage_name":"log_collector","events_processed":30936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6187.2,"last_update":"2026-03-22T11:25:57.36838894Z"} +2026/03/22 11:26:02 [metric_collector] {"stage_name":"metric_collector","events_processed":19469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3893.8,"last_update":"2026-03-22T11:25:57.368742016Z"} +2026/03/22 11:26:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:25:57.376928616Z"} +2026/03/22 11:26:02 [detection_layer] {"stage_name":"detection_layer","events_processed":648,"events_dropped":0,"avg_latency_ms":17.610728042623307,"throughput_eps":0,"last_update":"2026-03-22T11:25:57.479132334Z"} +2026/03/22 11:26:02 [transform_engine] {"stage_name":"transform_engine","events_processed":649,"events_dropped":0,"avg_latency_ms":819.8724145398442,"throughput_eps":0,"last_update":"2026-03-22T11:25:57.600023236Z"} +2026/03/22 11:26:02 ───────────────────────────────────────────────── +2026/03/22 11:26:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:26:07 [log_collector] {"stage_name":"log_collector","events_processed":30936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6187.2,"last_update":"2026-03-22T11:26:02.368455313Z"} +2026/03/22 11:26:07 [metric_collector] {"stage_name":"metric_collector","events_processed":19474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3894.8,"last_update":"2026-03-22T11:26:02.36919011Z"} +2026/03/22 11:26:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:26:02.377515326Z"} +2026/03/22 11:26:07 [detection_layer] {"stage_name":"detection_layer","events_processed":649,"events_dropped":0,"avg_latency_ms":17.975182634098648,"throughput_eps":0,"last_update":"2026-03-22T11:26:02.479821701Z"} +2026/03/22 11:26:07 [transform_engine] {"stage_name":"transform_engine","events_processed":649,"events_dropped":0,"avg_latency_ms":819.8724145398442,"throughput_eps":0,"last_update":"2026-03-22T11:26:02.479855516Z"} +2026/03/22 11:26:07 ───────────────────────────────────────────────── +2026/03/22 11:26:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:26:12 [log_collector] {"stage_name":"log_collector","events_processed":30936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6187.2,"last_update":"2026-03-22T11:26:07.368603483Z"} +2026/03/22 11:26:12 [metric_collector] {"stage_name":"metric_collector","events_processed":19479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3895.8,"last_update":"2026-03-22T11:26:07.368910801Z"} +2026/03/22 11:26:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:26:07.377141146Z"} +2026/03/22 11:26:12 [detection_layer] {"stage_name":"detection_layer","events_processed":649,"events_dropped":0,"avg_latency_ms":17.975182634098648,"throughput_eps":0,"last_update":"2026-03-22T11:26:07.479370655Z"} +2026/03/22 11:26:12 [transform_engine] {"stage_name":"transform_engine","events_processed":649,"events_dropped":0,"avg_latency_ms":819.8724145398442,"throughput_eps":0,"last_update":"2026-03-22T11:26:07.479413687Z"} +2026/03/22 11:26:12 ───────────────────────────────────────────────── +2026/03/22 11:26:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:26:17 [log_collector] {"stage_name":"log_collector","events_processed":30936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6187.2,"last_update":"2026-03-22T11:26:12.368849072Z"} +2026/03/22 11:26:17 [metric_collector] {"stage_name":"metric_collector","events_processed":19484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3896.8,"last_update":"2026-03-22T11:26:12.369276811Z"} +2026/03/22 11:26:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7796,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:26:12.379377697Z"} +2026/03/22 11:26:17 [detection_layer] {"stage_name":"detection_layer","events_processed":649,"events_dropped":0,"avg_latency_ms":17.975182634098648,"throughput_eps":0,"last_update":"2026-03-22T11:26:12.479569252Z"} +2026/03/22 11:26:17 [transform_engine] {"stage_name":"transform_engine","events_processed":649,"events_dropped":0,"avg_latency_ms":819.8724145398442,"throughput_eps":0,"last_update":"2026-03-22T11:26:12.479674584Z"} +2026/03/22 11:26:17 ───────────────────────────────────────────────── +2026/03/22 11:26:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:26:22 [metric_collector] {"stage_name":"metric_collector","events_processed":19489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3897.8,"last_update":"2026-03-22T11:26:17.368700353Z"} +2026/03/22 11:26:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:26:17.378281495Z"} +2026/03/22 11:26:22 [detection_layer] {"stage_name":"detection_layer","events_processed":649,"events_dropped":0,"avg_latency_ms":17.975182634098648,"throughput_eps":0,"last_update":"2026-03-22T11:26:17.479515747Z"} +2026/03/22 11:26:22 [transform_engine] {"stage_name":"transform_engine","events_processed":649,"events_dropped":0,"avg_latency_ms":819.8724145398442,"throughput_eps":0,"last_update":"2026-03-22T11:26:17.479548399Z"} +2026/03/22 11:26:22 [log_collector] {"stage_name":"log_collector","events_processed":30936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6187.2,"last_update":"2026-03-22T11:26:17.368243358Z"} +2026/03/22 11:26:22 ───────────────────────────────────────────────── +2026/03/22 11:26:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:26:27 [metric_collector] {"stage_name":"metric_collector","events_processed":19494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3898.8,"last_update":"2026-03-22T11:26:22.368295236Z"} +2026/03/22 11:26:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7800,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:26:22.374968549Z"} +2026/03/22 11:26:27 [detection_layer] {"stage_name":"detection_layer","events_processed":649,"events_dropped":0,"avg_latency_ms":17.975182634098648,"throughput_eps":0,"last_update":"2026-03-22T11:26:22.479275185Z"} +2026/03/22 11:26:27 [transform_engine] {"stage_name":"transform_engine","events_processed":649,"events_dropped":0,"avg_latency_ms":819.8724145398442,"throughput_eps":0,"last_update":"2026-03-22T11:26:22.47920513Z"} +2026/03/22 11:26:27 [log_collector] {"stage_name":"log_collector","events_processed":30936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6187.2,"last_update":"2026-03-22T11:26:22.367984792Z"} +2026/03/22 11:26:27 ───────────────────────────────────────────────── +2026/03/22 11:26:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:26:32 [log_collector] {"stage_name":"log_collector","events_processed":30936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6187.2,"last_update":"2026-03-22T11:26:32.367994122Z"} +2026/03/22 11:26:32 [metric_collector] {"stage_name":"metric_collector","events_processed":19499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3899.8,"last_update":"2026-03-22T11:26:27.369193317Z"} +2026/03/22 11:26:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7802,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:26:27.377637251Z"} +2026/03/22 11:26:32 [detection_layer] {"stage_name":"detection_layer","events_processed":649,"events_dropped":0,"avg_latency_ms":17.975182634098648,"throughput_eps":0,"last_update":"2026-03-22T11:26:27.479956981Z"} +2026/03/22 11:26:32 [transform_engine] {"stage_name":"transform_engine","events_processed":650,"events_dropped":0,"avg_latency_ms":671.1013820318753,"throughput_eps":0,"last_update":"2026-03-22T11:26:27.556090054Z"} +2026/03/22 11:26:32 ───────────────────────────────────────────────── +2026/03/22 11:26:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:26:37 [log_collector] {"stage_name":"log_collector","events_processed":30936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6187.2,"last_update":"2026-03-22T11:26:37.36802366Z"} +2026/03/22 11:26:37 [metric_collector] {"stage_name":"metric_collector","events_processed":19504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3900.8,"last_update":"2026-03-22T11:26:32.368899786Z"} +2026/03/22 11:26:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:26:32.377921305Z"} +2026/03/22 11:26:37 [detection_layer] {"stage_name":"detection_layer","events_processed":650,"events_dropped":0,"avg_latency_ms":18.754684907278918,"throughput_eps":0,"last_update":"2026-03-22T11:26:32.479326995Z"} +2026/03/22 11:26:37 [transform_engine] {"stage_name":"transform_engine","events_processed":650,"events_dropped":0,"avg_latency_ms":671.1013820318753,"throughput_eps":0,"last_update":"2026-03-22T11:26:32.479336364Z"} +2026/03/22 11:26:37 ───────────────────────────────────────────────── +2026/03/22 11:26:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:26:42 [log_collector] {"stage_name":"log_collector","events_processed":30936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6187.2,"last_update":"2026-03-22T11:26:42.368013032Z"} +2026/03/22 11:26:42 [metric_collector] {"stage_name":"metric_collector","events_processed":19509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3901.8,"last_update":"2026-03-22T11:26:37.368489733Z"} +2026/03/22 11:26:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:26:37.377852376Z"} +2026/03/22 11:26:42 [detection_layer] {"stage_name":"detection_layer","events_processed":650,"events_dropped":0,"avg_latency_ms":18.754684907278918,"throughput_eps":0,"last_update":"2026-03-22T11:26:37.479011794Z"} +2026/03/22 11:26:42 [transform_engine] {"stage_name":"transform_engine","events_processed":650,"events_dropped":0,"avg_latency_ms":671.1013820318753,"throughput_eps":0,"last_update":"2026-03-22T11:26:37.479027294Z"} +2026/03/22 11:26:42 ───────────────────────────────────────────────── +2026/03/22 11:26:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:26:47 [metric_collector] {"stage_name":"metric_collector","events_processed":19514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3902.8,"last_update":"2026-03-22T11:26:42.368313778Z"} +2026/03/22 11:26:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:26:42.379248431Z"} +2026/03/22 11:26:47 [detection_layer] {"stage_name":"detection_layer","events_processed":650,"events_dropped":0,"avg_latency_ms":18.754684907278918,"throughput_eps":0,"last_update":"2026-03-22T11:26:42.479469413Z"} +2026/03/22 11:26:47 [transform_engine] {"stage_name":"transform_engine","events_processed":650,"events_dropped":0,"avg_latency_ms":671.1013820318753,"throughput_eps":0,"last_update":"2026-03-22T11:26:42.479482738Z"} +2026/03/22 11:26:47 [log_collector] {"stage_name":"log_collector","events_processed":30936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6187.2,"last_update":"2026-03-22T11:26:47.368885709Z"} +2026/03/22 11:26:47 ───────────────────────────────────────────────── +2026/03/22 11:26:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:26:52 [log_collector] {"stage_name":"log_collector","events_processed":30936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6187.2,"last_update":"2026-03-22T11:26:47.368885709Z"} +2026/03/22 11:26:52 [metric_collector] {"stage_name":"metric_collector","events_processed":19519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3903.8,"last_update":"2026-03-22T11:26:47.369172538Z"} +2026/03/22 11:26:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:26:47.378176865Z"} +2026/03/22 11:26:52 [detection_layer] {"stage_name":"detection_layer","events_processed":650,"events_dropped":0,"avg_latency_ms":18.754684907278918,"throughput_eps":0,"last_update":"2026-03-22T11:26:47.479264946Z"} +2026/03/22 11:26:52 [transform_engine] {"stage_name":"transform_engine","events_processed":650,"events_dropped":0,"avg_latency_ms":671.1013820318753,"throughput_eps":0,"last_update":"2026-03-22T11:26:47.47927255Z"} +2026/03/22 11:26:52 ───────────────────────────────────────────────── +Saved state: 15 clusters, 30937 messages, reason: none +2026/03/22 11:26:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:26:57 [log_collector] {"stage_name":"log_collector","events_processed":30936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6187.2,"last_update":"2026-03-22T11:26:52.367988804Z"} +2026/03/22 11:26:57 [metric_collector] {"stage_name":"metric_collector","events_processed":19524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3904.8,"last_update":"2026-03-22T11:26:52.368338804Z"} +2026/03/22 11:26:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7812,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:26:52.377420159Z"} +2026/03/22 11:26:57 [detection_layer] {"stage_name":"detection_layer","events_processed":650,"events_dropped":0,"avg_latency_ms":18.754684907278918,"throughput_eps":0,"last_update":"2026-03-22T11:26:52.479652603Z"} +2026/03/22 11:26:57 [transform_engine] {"stage_name":"transform_engine","events_processed":650,"events_dropped":0,"avg_latency_ms":671.1013820318753,"throughput_eps":0,"last_update":"2026-03-22T11:26:52.479666439Z"} +2026/03/22 11:26:57 ───────────────────────────────────────────────── +2026/03/22 11:27:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:27:02 [log_collector] {"stage_name":"log_collector","events_processed":30950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6190,"last_update":"2026-03-22T11:26:57.368001143Z"} +2026/03/22 11:27:02 [metric_collector] {"stage_name":"metric_collector","events_processed":19529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3905.8,"last_update":"2026-03-22T11:26:57.36868348Z"} +2026/03/22 11:27:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:26:57.378596006Z"} +2026/03/22 11:27:02 [detection_layer] {"stage_name":"detection_layer","events_processed":650,"events_dropped":0,"avg_latency_ms":18.754684907278918,"throughput_eps":0,"last_update":"2026-03-22T11:26:57.479811283Z"} +2026/03/22 11:27:02 [transform_engine] {"stage_name":"transform_engine","events_processed":651,"events_dropped":0,"avg_latency_ms":560.7570390255003,"throughput_eps":0,"last_update":"2026-03-22T11:26:57.599204314Z"} +2026/03/22 11:27:02 ───────────────────────────────────────────────── +2026/03/22 11:27:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:27:07 [detection_layer] {"stage_name":"detection_layer","events_processed":651,"events_dropped":0,"avg_latency_ms":19.080364125823134,"throughput_eps":0,"last_update":"2026-03-22T11:27:02.479296553Z"} +2026/03/22 11:27:07 [transform_engine] {"stage_name":"transform_engine","events_processed":651,"events_dropped":0,"avg_latency_ms":560.7570390255003,"throughput_eps":0,"last_update":"2026-03-22T11:27:02.479317493Z"} +2026/03/22 11:27:07 [log_collector] {"stage_name":"log_collector","events_processed":30950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6190,"last_update":"2026-03-22T11:27:07.368025864Z"} +2026/03/22 11:27:07 [metric_collector] {"stage_name":"metric_collector","events_processed":19534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3906.8,"last_update":"2026-03-22T11:27:02.369381524Z"} +2026/03/22 11:27:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7816,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:27:02.377993048Z"} +2026/03/22 11:27:07 ───────────────────────────────────────────────── +2026/03/22 11:27:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:27:12 [detection_layer] {"stage_name":"detection_layer","events_processed":651,"events_dropped":0,"avg_latency_ms":19.080364125823134,"throughput_eps":0,"last_update":"2026-03-22T11:27:07.479199403Z"} +2026/03/22 11:27:12 [transform_engine] {"stage_name":"transform_engine","events_processed":651,"events_dropped":0,"avg_latency_ms":560.7570390255003,"throughput_eps":0,"last_update":"2026-03-22T11:27:07.479337208Z"} +2026/03/22 11:27:12 [log_collector] {"stage_name":"log_collector","events_processed":30950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6190,"last_update":"2026-03-22T11:27:07.368025864Z"} +2026/03/22 11:27:12 [metric_collector] {"stage_name":"metric_collector","events_processed":19539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3907.8,"last_update":"2026-03-22T11:27:07.368846686Z"} +2026/03/22 11:27:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7818,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:27:07.377856283Z"} +2026/03/22 11:27:12 ───────────────────────────────────────────────── +2026/03/22 11:27:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:27:17 [log_collector] {"stage_name":"log_collector","events_processed":30950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6190,"last_update":"2026-03-22T11:27:12.36802422Z"} +2026/03/22 11:27:17 [metric_collector] {"stage_name":"metric_collector","events_processed":19544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3908.8,"last_update":"2026-03-22T11:27:12.368792602Z"} +2026/03/22 11:27:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7820,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:27:12.37711431Z"} +2026/03/22 11:27:17 [detection_layer] {"stage_name":"detection_layer","events_processed":651,"events_dropped":0,"avg_latency_ms":19.080364125823134,"throughput_eps":0,"last_update":"2026-03-22T11:27:12.479471233Z"} +2026/03/22 11:27:17 [transform_engine] {"stage_name":"transform_engine","events_processed":651,"events_dropped":0,"avg_latency_ms":560.7570390255003,"throughput_eps":0,"last_update":"2026-03-22T11:27:12.479506831Z"} +2026/03/22 11:27:17 ───────────────────────────────────────────────── +2026/03/22 11:27:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:27:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:27:17.378677083Z"} +2026/03/22 11:27:22 [detection_layer] {"stage_name":"detection_layer","events_processed":651,"events_dropped":0,"avg_latency_ms":19.080364125823134,"throughput_eps":0,"last_update":"2026-03-22T11:27:17.479896086Z"} +2026/03/22 11:27:22 [transform_engine] {"stage_name":"transform_engine","events_processed":651,"events_dropped":0,"avg_latency_ms":560.7570390255003,"throughput_eps":0,"last_update":"2026-03-22T11:27:17.478816258Z"} +2026/03/22 11:27:22 [log_collector] {"stage_name":"log_collector","events_processed":30950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6190,"last_update":"2026-03-22T11:27:22.368570735Z"} +2026/03/22 11:27:22 [metric_collector] {"stage_name":"metric_collector","events_processed":19549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3909.8,"last_update":"2026-03-22T11:27:17.368861954Z"} +2026/03/22 11:27:22 ───────────────────────────────────────────────── +2026/03/22 11:27:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:27:27 [transform_engine] {"stage_name":"transform_engine","events_processed":651,"events_dropped":0,"avg_latency_ms":560.7570390255003,"throughput_eps":0,"last_update":"2026-03-22T11:27:22.479397741Z"} +2026/03/22 11:27:27 [log_collector] {"stage_name":"log_collector","events_processed":30950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6190,"last_update":"2026-03-22T11:27:22.368570735Z"} +2026/03/22 11:27:27 [metric_collector] {"stage_name":"metric_collector","events_processed":19554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3910.8,"last_update":"2026-03-22T11:27:22.368885879Z"} +2026/03/22 11:27:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:27:22.378196372Z"} +2026/03/22 11:27:27 [detection_layer] {"stage_name":"detection_layer","events_processed":651,"events_dropped":0,"avg_latency_ms":19.080364125823134,"throughput_eps":0,"last_update":"2026-03-22T11:27:22.479414984Z"} +2026/03/22 11:27:27 ───────────────────────────────────────────────── +2026/03/22 11:27:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:27:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7826,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:27:27.377919434Z"} +2026/03/22 11:27:32 [detection_layer] {"stage_name":"detection_layer","events_processed":651,"events_dropped":0,"avg_latency_ms":19.080364125823134,"throughput_eps":0,"last_update":"2026-03-22T11:27:27.479508805Z"} +2026/03/22 11:27:32 [transform_engine] {"stage_name":"transform_engine","events_processed":652,"events_dropped":0,"avg_latency_ms":464.9797720204003,"throughput_eps":0,"last_update":"2026-03-22T11:27:27.56097299Z"} +2026/03/22 11:27:32 [log_collector] {"stage_name":"log_collector","events_processed":30950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6190,"last_update":"2026-03-22T11:27:27.368444024Z"} +2026/03/22 11:27:32 [metric_collector] {"stage_name":"metric_collector","events_processed":19559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3911.8,"last_update":"2026-03-22T11:27:27.369084451Z"} +2026/03/22 11:27:32 ───────────────────────────────────────────────── +2026/03/22 11:27:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:27:37 [detection_layer] {"stage_name":"detection_layer","events_processed":652,"events_dropped":0,"avg_latency_ms":19.43721810065851,"throughput_eps":0,"last_update":"2026-03-22T11:27:32.47951638Z"} +2026/03/22 11:27:37 [transform_engine] {"stage_name":"transform_engine","events_processed":652,"events_dropped":0,"avg_latency_ms":464.9797720204003,"throughput_eps":0,"last_update":"2026-03-22T11:27:32.479482675Z"} +2026/03/22 11:27:37 [log_collector] {"stage_name":"log_collector","events_processed":30950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6190,"last_update":"2026-03-22T11:27:37.368086833Z"} +2026/03/22 11:27:37 [metric_collector] {"stage_name":"metric_collector","events_processed":19564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3912.8,"last_update":"2026-03-22T11:27:32.368876913Z"} +2026/03/22 11:27:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:27:32.377147826Z"} +2026/03/22 11:27:37 ───────────────────────────────────────────────── +2026/03/22 11:27:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:27:42 [detection_layer] {"stage_name":"detection_layer","events_processed":652,"events_dropped":0,"avg_latency_ms":19.43721810065851,"throughput_eps":0,"last_update":"2026-03-22T11:27:37.479939624Z"} +2026/03/22 11:27:42 [transform_engine] {"stage_name":"transform_engine","events_processed":652,"events_dropped":0,"avg_latency_ms":464.9797720204003,"throughput_eps":0,"last_update":"2026-03-22T11:27:37.479969892Z"} +2026/03/22 11:27:42 [log_collector] {"stage_name":"log_collector","events_processed":30950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6190,"last_update":"2026-03-22T11:27:37.368086833Z"} +2026/03/22 11:27:42 [metric_collector] {"stage_name":"metric_collector","events_processed":19569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3913.8,"last_update":"2026-03-22T11:27:37.368984232Z"} +2026/03/22 11:27:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7830,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:27:37.377559256Z"} +2026/03/22 11:27:42 ───────────────────────────────────────────────── +2026/03/22 11:27:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:27:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7832,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:27:42.377822353Z"} +2026/03/22 11:27:47 [detection_layer] {"stage_name":"detection_layer","events_processed":652,"events_dropped":0,"avg_latency_ms":19.43721810065851,"throughput_eps":0,"last_update":"2026-03-22T11:27:42.478963306Z"} +2026/03/22 11:27:47 [transform_engine] {"stage_name":"transform_engine","events_processed":652,"events_dropped":0,"avg_latency_ms":464.9797720204003,"throughput_eps":0,"last_update":"2026-03-22T11:27:42.478899423Z"} +2026/03/22 11:27:47 [log_collector] {"stage_name":"log_collector","events_processed":30950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6190,"last_update":"2026-03-22T11:27:47.368728156Z"} +2026/03/22 11:27:47 [metric_collector] {"stage_name":"metric_collector","events_processed":19574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3914.8,"last_update":"2026-03-22T11:27:42.36833992Z"} +2026/03/22 11:27:47 ───────────────────────────────────────────────── +2026/03/22 11:27:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:27:52 [detection_layer] {"stage_name":"detection_layer","events_processed":652,"events_dropped":0,"avg_latency_ms":19.43721810065851,"throughput_eps":0,"last_update":"2026-03-22T11:27:47.479178651Z"} +2026/03/22 11:27:52 [transform_engine] {"stage_name":"transform_engine","events_processed":652,"events_dropped":0,"avg_latency_ms":464.9797720204003,"throughput_eps":0,"last_update":"2026-03-22T11:27:47.479190374Z"} +2026/03/22 11:27:52 [log_collector] {"stage_name":"log_collector","events_processed":30950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6190,"last_update":"2026-03-22T11:27:47.368728156Z"} +2026/03/22 11:27:52 [metric_collector] {"stage_name":"metric_collector","events_processed":19579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3915.8,"last_update":"2026-03-22T11:27:47.369030505Z"} +2026/03/22 11:27:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:27:47.376969702Z"} +2026/03/22 11:27:52 ───────────────────────────────────────────────── +2026/03/22 11:27:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:27:57 [log_collector] {"stage_name":"log_collector","events_processed":30950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6190,"last_update":"2026-03-22T11:27:57.368914445Z"} +2026/03/22 11:27:57 [metric_collector] {"stage_name":"metric_collector","events_processed":19584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3916.8,"last_update":"2026-03-22T11:27:52.368730826Z"} +2026/03/22 11:27:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:27:52.37761317Z"} +2026/03/22 11:27:57 [detection_layer] {"stage_name":"detection_layer","events_processed":652,"events_dropped":0,"avg_latency_ms":19.43721810065851,"throughput_eps":0,"last_update":"2026-03-22T11:27:52.479996452Z"} +2026/03/22 11:27:57 [transform_engine] {"stage_name":"transform_engine","events_processed":652,"events_dropped":0,"avg_latency_ms":464.9797720204003,"throughput_eps":0,"last_update":"2026-03-22T11:27:52.478816261Z"} +2026/03/22 11:27:57 ───────────────────────────────────────────────── +Saved state: 15 clusters, 30951 messages, reason: none +2026/03/22 11:28:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:28:02 [detection_layer] {"stage_name":"detection_layer","events_processed":652,"events_dropped":0,"avg_latency_ms":19.43721810065851,"throughput_eps":0,"last_update":"2026-03-22T11:27:57.479776007Z"} +2026/03/22 11:28:02 [transform_engine] {"stage_name":"transform_engine","events_processed":653,"events_dropped":0,"avg_latency_ms":386.63883541632026,"throughput_eps":0,"last_update":"2026-03-22T11:27:57.553105931Z"} +2026/03/22 11:28:02 [log_collector] {"stage_name":"log_collector","events_processed":30950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6190,"last_update":"2026-03-22T11:27:57.368914445Z"} +2026/03/22 11:28:02 [metric_collector] {"stage_name":"metric_collector","events_processed":19594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3918.8,"last_update":"2026-03-22T11:28:02.36837717Z"} +2026/03/22 11:28:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:27:57.3784975Z"} +2026/03/22 11:28:02 ───────────────────────────────────────────────── +2026/03/22 11:28:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:28:07 [log_collector] {"stage_name":"log_collector","events_processed":30955,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6191,"last_update":"2026-03-22T11:28:02.36843937Z"} +2026/03/22 11:28:07 [metric_collector] {"stage_name":"metric_collector","events_processed":19594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3918.8,"last_update":"2026-03-22T11:28:02.36837717Z"} +2026/03/22 11:28:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:28:02.381232053Z"} +2026/03/22 11:28:07 [detection_layer] {"stage_name":"detection_layer","events_processed":653,"events_dropped":0,"avg_latency_ms":19.679909280526807,"throughput_eps":0,"last_update":"2026-03-22T11:28:02.479676481Z"} +2026/03/22 11:28:07 [transform_engine] {"stage_name":"transform_engine","events_processed":653,"events_dropped":0,"avg_latency_ms":386.63883541632026,"throughput_eps":0,"last_update":"2026-03-22T11:28:02.479689176Z"} +2026/03/22 11:28:07 ───────────────────────────────────────────────── +2026/03/22 11:28:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:28:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:28:07.378992339Z"} +2026/03/22 11:28:12 [detection_layer] {"stage_name":"detection_layer","events_processed":653,"events_dropped":0,"avg_latency_ms":19.679909280526807,"throughput_eps":0,"last_update":"2026-03-22T11:28:07.479156872Z"} +2026/03/22 11:28:12 [transform_engine] {"stage_name":"transform_engine","events_processed":653,"events_dropped":0,"avg_latency_ms":386.63883541632026,"throughput_eps":0,"last_update":"2026-03-22T11:28:07.479166681Z"} +2026/03/22 11:28:12 [log_collector] {"stage_name":"log_collector","events_processed":30955,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6191,"last_update":"2026-03-22T11:28:07.367997671Z"} +2026/03/22 11:28:12 [metric_collector] {"stage_name":"metric_collector","events_processed":19599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3919.8,"last_update":"2026-03-22T11:28:07.368402977Z"} +2026/03/22 11:28:12 ───────────────────────────────────────────────── +2026/03/22 11:28:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:28:17 [log_collector] {"stage_name":"log_collector","events_processed":30955,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6191,"last_update":"2026-03-22T11:28:12.368716315Z"} +2026/03/22 11:28:17 [metric_collector] {"stage_name":"metric_collector","events_processed":19604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3920.8,"last_update":"2026-03-22T11:28:12.368926017Z"} +2026/03/22 11:28:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:28:12.375199072Z"} +2026/03/22 11:28:17 [detection_layer] {"stage_name":"detection_layer","events_processed":653,"events_dropped":0,"avg_latency_ms":19.679909280526807,"throughput_eps":0,"last_update":"2026-03-22T11:28:12.47949059Z"} +2026/03/22 11:28:17 [transform_engine] {"stage_name":"transform_engine","events_processed":653,"events_dropped":0,"avg_latency_ms":386.63883541632026,"throughput_eps":0,"last_update":"2026-03-22T11:28:12.479507001Z"} +2026/03/22 11:28:17 ───────────────────────────────────────────────── +2026/03/22 11:28:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:28:22 [log_collector] {"stage_name":"log_collector","events_processed":30955,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6191,"last_update":"2026-03-22T11:28:17.36832345Z"} +2026/03/22 11:28:22 [metric_collector] {"stage_name":"metric_collector","events_processed":19609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3921.8,"last_update":"2026-03-22T11:28:17.368515227Z"} +2026/03/22 11:28:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:28:17.375161286Z"} +2026/03/22 11:28:22 [detection_layer] {"stage_name":"detection_layer","events_processed":653,"events_dropped":0,"avg_latency_ms":19.679909280526807,"throughput_eps":0,"last_update":"2026-03-22T11:28:17.479448065Z"} +2026/03/22 11:28:22 [transform_engine] {"stage_name":"transform_engine","events_processed":653,"events_dropped":0,"avg_latency_ms":386.63883541632026,"throughput_eps":0,"last_update":"2026-03-22T11:28:17.479464477Z"} +2026/03/22 11:28:22 ───────────────────────────────────────────────── +2026/03/22 11:28:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:28:27 [log_collector] {"stage_name":"log_collector","events_processed":30955,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6191,"last_update":"2026-03-22T11:28:27.368381318Z"} +2026/03/22 11:28:27 [metric_collector] {"stage_name":"metric_collector","events_processed":19614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3922.8,"last_update":"2026-03-22T11:28:22.368132222Z"} +2026/03/22 11:28:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7848,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:28:22.374573599Z"} +2026/03/22 11:28:27 [detection_layer] {"stage_name":"detection_layer","events_processed":653,"events_dropped":0,"avg_latency_ms":19.679909280526807,"throughput_eps":0,"last_update":"2026-03-22T11:28:22.479782895Z"} +2026/03/22 11:28:27 [transform_engine] {"stage_name":"transform_engine","events_processed":653,"events_dropped":0,"avg_latency_ms":386.63883541632026,"throughput_eps":0,"last_update":"2026-03-22T11:28:22.479797643Z"} +2026/03/22 11:28:27 ───────────────────────────────────────────────── +2026/03/22 11:28:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:28:32 [log_collector] {"stage_name":"log_collector","events_processed":30955,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6191,"last_update":"2026-03-22T11:28:27.368381318Z"} +2026/03/22 11:28:32 [metric_collector] {"stage_name":"metric_collector","events_processed":19619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3923.8,"last_update":"2026-03-22T11:28:27.36875835Z"} +2026/03/22 11:28:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:28:27.375955255Z"} +2026/03/22 11:28:32 [detection_layer] {"stage_name":"detection_layer","events_processed":653,"events_dropped":0,"avg_latency_ms":19.679909280526807,"throughput_eps":0,"last_update":"2026-03-22T11:28:27.479255714Z"} +2026/03/22 11:28:32 [transform_engine] {"stage_name":"transform_engine","events_processed":654,"events_dropped":0,"avg_latency_ms":767.9575527330562,"throughput_eps":0,"last_update":"2026-03-22T11:28:29.772528954Z"} +2026/03/22 11:28:32 ───────────────────────────────────────────────── +2026/03/22 11:28:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:28:37 [log_collector] {"stage_name":"log_collector","events_processed":30955,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6191,"last_update":"2026-03-22T11:28:32.368603935Z"} +2026/03/22 11:28:37 [metric_collector] {"stage_name":"metric_collector","events_processed":19624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3924.8,"last_update":"2026-03-22T11:28:32.368688807Z"} +2026/03/22 11:28:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:28:32.375753639Z"} +2026/03/22 11:28:37 [detection_layer] {"stage_name":"detection_layer","events_processed":654,"events_dropped":0,"avg_latency_ms":18.514640424421447,"throughput_eps":0,"last_update":"2026-03-22T11:28:32.47988775Z"} +2026/03/22 11:28:37 [transform_engine] {"stage_name":"transform_engine","events_processed":654,"events_dropped":0,"avg_latency_ms":767.9575527330562,"throughput_eps":0,"last_update":"2026-03-22T11:28:32.479900966Z"} +2026/03/22 11:28:37 ───────────────────────────────────────────────── +2026/03/22 11:28:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:28:42 [log_collector] {"stage_name":"log_collector","events_processed":30955,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6191,"last_update":"2026-03-22T11:28:37.36806521Z"} +2026/03/22 11:28:42 [metric_collector] {"stage_name":"metric_collector","events_processed":19629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3925.8,"last_update":"2026-03-22T11:28:37.368497027Z"} +2026/03/22 11:28:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:28:37.375482Z"} +2026/03/22 11:28:42 [detection_layer] {"stage_name":"detection_layer","events_processed":654,"events_dropped":0,"avg_latency_ms":18.514640424421447,"throughput_eps":0,"last_update":"2026-03-22T11:28:37.479709159Z"} +2026/03/22 11:28:42 [transform_engine] {"stage_name":"transform_engine","events_processed":654,"events_dropped":0,"avg_latency_ms":767.9575527330562,"throughput_eps":0,"last_update":"2026-03-22T11:28:37.479723366Z"} +2026/03/22 11:28:42 ───────────────────────────────────────────────── +2026/03/22 11:28:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:28:47 [metric_collector] {"stage_name":"metric_collector","events_processed":19634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3926.8,"last_update":"2026-03-22T11:28:42.368200573Z"} +2026/03/22 11:28:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:28:42.376016928Z"} +2026/03/22 11:28:47 [detection_layer] {"stage_name":"detection_layer","events_processed":654,"events_dropped":0,"avg_latency_ms":18.514640424421447,"throughput_eps":0,"last_update":"2026-03-22T11:28:42.479244912Z"} +2026/03/22 11:28:47 [transform_engine] {"stage_name":"transform_engine","events_processed":654,"events_dropped":0,"avg_latency_ms":767.9575527330562,"throughput_eps":0,"last_update":"2026-03-22T11:28:42.479255663Z"} +2026/03/22 11:28:47 [log_collector] {"stage_name":"log_collector","events_processed":30964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6192.8,"last_update":"2026-03-22T11:28:42.368029575Z"} +2026/03/22 11:28:47 ───────────────────────────────────────────────── +2026/03/22 11:28:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:28:52 [metric_collector] {"stage_name":"metric_collector","events_processed":19639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3927.8,"last_update":"2026-03-22T11:28:47.368251802Z"} +2026/03/22 11:28:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:28:47.377233351Z"} +2026/03/22 11:28:52 [detection_layer] {"stage_name":"detection_layer","events_processed":654,"events_dropped":0,"avg_latency_ms":18.514640424421447,"throughput_eps":0,"last_update":"2026-03-22T11:28:47.47939958Z"} +2026/03/22 11:28:52 [transform_engine] {"stage_name":"transform_engine","events_processed":654,"events_dropped":0,"avg_latency_ms":767.9575527330562,"throughput_eps":0,"last_update":"2026-03-22T11:28:47.479411493Z"} +2026/03/22 11:28:52 [log_collector] {"stage_name":"log_collector","events_processed":30966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6193.2,"last_update":"2026-03-22T11:28:47.368003316Z"} +2026/03/22 11:28:52 ───────────────────────────────────────────────── +2026/03/22 11:28:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:28:57 [log_collector] {"stage_name":"log_collector","events_processed":31189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6237.8,"last_update":"2026-03-22T11:28:52.368285467Z"} +2026/03/22 11:28:57 [metric_collector] {"stage_name":"metric_collector","events_processed":19644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3928.8,"last_update":"2026-03-22T11:28:52.368468558Z"} +2026/03/22 11:28:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7860,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:28:52.375127405Z"} +2026/03/22 11:28:57 [detection_layer] {"stage_name":"detection_layer","events_processed":654,"events_dropped":0,"avg_latency_ms":18.514640424421447,"throughput_eps":0,"last_update":"2026-03-22T11:28:52.479453092Z"} +2026/03/22 11:28:57 [transform_engine] {"stage_name":"transform_engine","events_processed":654,"events_dropped":0,"avg_latency_ms":767.9575527330562,"throughput_eps":0,"last_update":"2026-03-22T11:28:52.479394469Z"} +2026/03/22 11:28:57 ───────────────────────────────────────────────── +2026/03/22 11:29:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:29:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7862,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:28:57.377680476Z"} +2026/03/22 11:29:02 [detection_layer] {"stage_name":"detection_layer","events_processed":654,"events_dropped":0,"avg_latency_ms":18.514640424421447,"throughput_eps":0,"last_update":"2026-03-22T11:28:57.479209172Z"} +2026/03/22 11:29:02 [transform_engine] {"stage_name":"transform_engine","events_processed":655,"events_dropped":0,"avg_latency_ms":638.4498559864451,"throughput_eps":0,"last_update":"2026-03-22T11:28:57.599693015Z"} +2026/03/22 11:29:02 [log_collector] {"stage_name":"log_collector","events_processed":31316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6263.2,"last_update":"2026-03-22T11:28:57.368484256Z"} +2026/03/22 11:29:02 [metric_collector] {"stage_name":"metric_collector","events_processed":19649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3929.8,"last_update":"2026-03-22T11:28:57.368786295Z"} +2026/03/22 11:29:02 ───────────────────────────────────────────────── +Saved state: 15 clusters, 31319 messages, reason: none +2026/03/22 11:29:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:29:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:29:02.377543713Z"} +2026/03/22 11:29:07 [detection_layer] {"stage_name":"detection_layer","events_processed":655,"events_dropped":0,"avg_latency_ms":18.541688739537157,"throughput_eps":0,"last_update":"2026-03-22T11:29:02.479856051Z"} +2026/03/22 11:29:07 [transform_engine] {"stage_name":"transform_engine","events_processed":655,"events_dropped":0,"avg_latency_ms":638.4498559864451,"throughput_eps":0,"last_update":"2026-03-22T11:29:02.479885407Z"} +2026/03/22 11:29:07 [log_collector] {"stage_name":"log_collector","events_processed":31318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6263.6,"last_update":"2026-03-22T11:29:02.368556343Z"} +2026/03/22 11:29:07 [metric_collector] {"stage_name":"metric_collector","events_processed":19654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3930.8,"last_update":"2026-03-22T11:29:02.368823065Z"} +2026/03/22 11:29:07 ───────────────────────────────────────────────── +2026/03/22 11:29:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:29:12 [log_collector] {"stage_name":"log_collector","events_processed":31321,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6264.2,"last_update":"2026-03-22T11:29:07.36799768Z"} +2026/03/22 11:29:12 [metric_collector] {"stage_name":"metric_collector","events_processed":19659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3931.8,"last_update":"2026-03-22T11:29:07.368284099Z"} +2026/03/22 11:29:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:29:07.375089808Z"} +2026/03/22 11:29:12 [detection_layer] {"stage_name":"detection_layer","events_processed":655,"events_dropped":0,"avg_latency_ms":18.541688739537157,"throughput_eps":0,"last_update":"2026-03-22T11:29:07.479291155Z"} +2026/03/22 11:29:12 [transform_engine] {"stage_name":"transform_engine","events_processed":655,"events_dropped":0,"avg_latency_ms":638.4498559864451,"throughput_eps":0,"last_update":"2026-03-22T11:29:07.479308147Z"} +2026/03/22 11:29:12 ───────────────────────────────────────────────── +2026/03/22 11:29:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:29:17 [transform_engine] {"stage_name":"transform_engine","events_processed":655,"events_dropped":0,"avg_latency_ms":638.4498559864451,"throughput_eps":0,"last_update":"2026-03-22T11:29:12.479050329Z"} +2026/03/22 11:29:17 [log_collector] {"stage_name":"log_collector","events_processed":31321,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6264.2,"last_update":"2026-03-22T11:29:12.368035149Z"} +2026/03/22 11:29:17 [metric_collector] {"stage_name":"metric_collector","events_processed":19664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3932.8,"last_update":"2026-03-22T11:29:12.368342637Z"} +2026/03/22 11:29:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7868,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:29:12.375836415Z"} +2026/03/22 11:29:17 [detection_layer] {"stage_name":"detection_layer","events_processed":655,"events_dropped":0,"avg_latency_ms":18.541688739537157,"throughput_eps":0,"last_update":"2026-03-22T11:29:12.479028527Z"} +2026/03/22 11:29:17 ───────────────────────────────────────────────── +2026/03/22 11:29:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:29:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:29:17.378294359Z"} +2026/03/22 11:29:22 [detection_layer] {"stage_name":"detection_layer","events_processed":655,"events_dropped":0,"avg_latency_ms":18.541688739537157,"throughput_eps":0,"last_update":"2026-03-22T11:29:17.479530884Z"} +2026/03/22 11:29:22 [transform_engine] {"stage_name":"transform_engine","events_processed":655,"events_dropped":0,"avg_latency_ms":638.4498559864451,"throughput_eps":0,"last_update":"2026-03-22T11:29:17.479506818Z"} +2026/03/22 11:29:22 [log_collector] {"stage_name":"log_collector","events_processed":31332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6266.4,"last_update":"2026-03-22T11:29:22.368540556Z"} +2026/03/22 11:29:22 [metric_collector] {"stage_name":"metric_collector","events_processed":19669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3933.8,"last_update":"2026-03-22T11:29:17.368378361Z"} +2026/03/22 11:29:22 ───────────────────────────────────────────────── +2026/03/22 11:29:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:29:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:29:22.374984622Z"} +2026/03/22 11:29:27 [detection_layer] {"stage_name":"detection_layer","events_processed":655,"events_dropped":0,"avg_latency_ms":18.541688739537157,"throughput_eps":0,"last_update":"2026-03-22T11:29:22.479199263Z"} +2026/03/22 11:29:27 [transform_engine] {"stage_name":"transform_engine","events_processed":655,"events_dropped":0,"avg_latency_ms":638.4498559864451,"throughput_eps":0,"last_update":"2026-03-22T11:29:22.479214432Z"} +2026/03/22 11:29:27 [log_collector] {"stage_name":"log_collector","events_processed":31348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6269.6,"last_update":"2026-03-22T11:29:27.367985148Z"} +2026/03/22 11:29:27 [metric_collector] {"stage_name":"metric_collector","events_processed":19674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3934.8,"last_update":"2026-03-22T11:29:22.368831223Z"} +2026/03/22 11:29:27 ───────────────────────────────────────────────── +2026/03/22 11:29:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:29:32 [log_collector] {"stage_name":"log_collector","events_processed":31348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6269.6,"last_update":"2026-03-22T11:29:27.367985148Z"} +2026/03/22 11:29:32 [metric_collector] {"stage_name":"metric_collector","events_processed":19679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3935.8,"last_update":"2026-03-22T11:29:27.368848442Z"} +2026/03/22 11:29:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:29:27.376831776Z"} +2026/03/22 11:29:32 [detection_layer] {"stage_name":"detection_layer","events_processed":655,"events_dropped":0,"avg_latency_ms":18.541688739537157,"throughput_eps":0,"last_update":"2026-03-22T11:29:27.479034922Z"} +2026/03/22 11:29:32 [transform_engine] {"stage_name":"transform_engine","events_processed":656,"events_dropped":0,"avg_latency_ms":534.5058247891561,"throughput_eps":0,"last_update":"2026-03-22T11:29:27.597862018Z"} +2026/03/22 11:29:32 ───────────────────────────────────────────────── +2026/03/22 11:29:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:29:37 [metric_collector] {"stage_name":"metric_collector","events_processed":19684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3936.8,"last_update":"2026-03-22T11:29:32.36890739Z"} +2026/03/22 11:29:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7876,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:29:32.378427098Z"} +2026/03/22 11:29:37 [detection_layer] {"stage_name":"detection_layer","events_processed":656,"events_dropped":0,"avg_latency_ms":18.818778591629727,"throughput_eps":0,"last_update":"2026-03-22T11:29:32.479640106Z"} +2026/03/22 11:29:37 [transform_engine] {"stage_name":"transform_engine","events_processed":656,"events_dropped":0,"avg_latency_ms":534.5058247891561,"throughput_eps":0,"last_update":"2026-03-22T11:29:32.479740328Z"} +2026/03/22 11:29:37 [log_collector] {"stage_name":"log_collector","events_processed":31348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6269.6,"last_update":"2026-03-22T11:29:32.36873005Z"} +2026/03/22 11:29:37 ───────────────────────────────────────────────── +2026/03/22 11:29:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:29:42 [metric_collector] {"stage_name":"metric_collector","events_processed":19689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3937.8,"last_update":"2026-03-22T11:29:37.368762455Z"} +2026/03/22 11:29:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:29:37.379180104Z"} +2026/03/22 11:29:42 [detection_layer] {"stage_name":"detection_layer","events_processed":656,"events_dropped":0,"avg_latency_ms":18.818778591629727,"throughput_eps":0,"last_update":"2026-03-22T11:29:37.479416692Z"} +2026/03/22 11:29:42 [transform_engine] {"stage_name":"transform_engine","events_processed":656,"events_dropped":0,"avg_latency_ms":534.5058247891561,"throughput_eps":0,"last_update":"2026-03-22T11:29:37.479375593Z"} +2026/03/22 11:29:42 [log_collector] {"stage_name":"log_collector","events_processed":31348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6269.6,"last_update":"2026-03-22T11:29:42.368721352Z"} +2026/03/22 11:29:42 ───────────────────────────────────────────────── +2026/03/22 11:29:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:29:47 [metric_collector] {"stage_name":"metric_collector","events_processed":19694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3938.8,"last_update":"2026-03-22T11:29:42.369265825Z"} +2026/03/22 11:29:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:29:42.378671775Z"} +2026/03/22 11:29:47 [detection_layer] {"stage_name":"detection_layer","events_processed":656,"events_dropped":0,"avg_latency_ms":18.818778591629727,"throughput_eps":0,"last_update":"2026-03-22T11:29:42.480035734Z"} +2026/03/22 11:29:47 [transform_engine] {"stage_name":"transform_engine","events_processed":656,"events_dropped":0,"avg_latency_ms":534.5058247891561,"throughput_eps":0,"last_update":"2026-03-22T11:29:42.478844001Z"} +2026/03/22 11:29:47 [log_collector] {"stage_name":"log_collector","events_processed":31348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6269.6,"last_update":"2026-03-22T11:29:42.368721352Z"} +2026/03/22 11:29:47 ───────────────────────────────────────────────── +2026/03/22 11:29:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:29:52 [metric_collector] {"stage_name":"metric_collector","events_processed":19699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3939.8,"last_update":"2026-03-22T11:29:47.369129312Z"} +2026/03/22 11:29:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:29:47.377959469Z"} +2026/03/22 11:29:52 [detection_layer] {"stage_name":"detection_layer","events_processed":656,"events_dropped":0,"avg_latency_ms":18.818778591629727,"throughput_eps":0,"last_update":"2026-03-22T11:29:47.479339427Z"} +2026/03/22 11:29:52 [transform_engine] {"stage_name":"transform_engine","events_processed":656,"events_dropped":0,"avg_latency_ms":534.5058247891561,"throughput_eps":0,"last_update":"2026-03-22T11:29:47.479393691Z"} +2026/03/22 11:29:52 [log_collector] {"stage_name":"log_collector","events_processed":31348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6269.6,"last_update":"2026-03-22T11:29:47.368746499Z"} +2026/03/22 11:29:52 ───────────────────────────────────────────────── +2026/03/22 11:29:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:29:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:29:52.376335886Z"} +2026/03/22 11:29:57 [detection_layer] {"stage_name":"detection_layer","events_processed":656,"events_dropped":0,"avg_latency_ms":18.818778591629727,"throughput_eps":0,"last_update":"2026-03-22T11:29:52.479802851Z"} +2026/03/22 11:29:57 [transform_engine] {"stage_name":"transform_engine","events_processed":656,"events_dropped":0,"avg_latency_ms":534.5058247891561,"throughput_eps":0,"last_update":"2026-03-22T11:29:52.479699944Z"} +2026/03/22 11:29:57 [log_collector] {"stage_name":"log_collector","events_processed":31348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6269.6,"last_update":"2026-03-22T11:29:52.367964507Z"} +2026/03/22 11:29:57 [metric_collector] {"stage_name":"metric_collector","events_processed":19704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3940.8,"last_update":"2026-03-22T11:29:52.368273119Z"} +2026/03/22 11:29:57 ───────────────────────────────────────────────── +2026/03/22 11:30:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:30:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7886,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:29:57.377752497Z"} +2026/03/22 11:30:02 [detection_layer] {"stage_name":"detection_layer","events_processed":656,"events_dropped":0,"avg_latency_ms":18.818778591629727,"throughput_eps":0,"last_update":"2026-03-22T11:29:57.478974032Z"} +2026/03/22 11:30:02 [transform_engine] {"stage_name":"transform_engine","events_processed":657,"events_dropped":0,"avg_latency_ms":442.4506062313249,"throughput_eps":0,"last_update":"2026-03-22T11:29:57.553314886Z"} +2026/03/22 11:30:02 [log_collector] {"stage_name":"log_collector","events_processed":31348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6269.6,"last_update":"2026-03-22T11:30:02.368517985Z"} +2026/03/22 11:30:02 [metric_collector] {"stage_name":"metric_collector","events_processed":19709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3941.8,"last_update":"2026-03-22T11:29:57.36913076Z"} +2026/03/22 11:30:02 ───────────────────────────────────────────────── +2026/03/22 11:30:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:30:07 [detection_layer] {"stage_name":"detection_layer","events_processed":657,"events_dropped":0,"avg_latency_ms":19.393627073303783,"throughput_eps":0,"last_update":"2026-03-22T11:30:02.47894367Z"} +2026/03/22 11:30:07 [transform_engine] {"stage_name":"transform_engine","events_processed":657,"events_dropped":0,"avg_latency_ms":442.4506062313249,"throughput_eps":0,"last_update":"2026-03-22T11:30:02.478935104Z"} +2026/03/22 11:30:07 [log_collector] {"stage_name":"log_collector","events_processed":31348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6269.6,"last_update":"2026-03-22T11:30:02.368517985Z"} +2026/03/22 11:30:07 [metric_collector] {"stage_name":"metric_collector","events_processed":19714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3942.8,"last_update":"2026-03-22T11:30:02.369007312Z"} +2026/03/22 11:30:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:30:02.382782833Z"} +2026/03/22 11:30:07 ───────────────────────────────────────────────── +2026/03/22 11:30:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:30:12 [transform_engine] {"stage_name":"transform_engine","events_processed":657,"events_dropped":0,"avg_latency_ms":442.4506062313249,"throughput_eps":0,"last_update":"2026-03-22T11:30:07.47892687Z"} +2026/03/22 11:30:12 [log_collector] {"stage_name":"log_collector","events_processed":31348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6269.6,"last_update":"2026-03-22T11:30:12.368278558Z"} +2026/03/22 11:30:12 [metric_collector] {"stage_name":"metric_collector","events_processed":19719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3943.8,"last_update":"2026-03-22T11:30:07.368705865Z"} +2026/03/22 11:30:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:30:07.377725796Z"} +2026/03/22 11:30:12 [detection_layer] {"stage_name":"detection_layer","events_processed":657,"events_dropped":0,"avg_latency_ms":19.393627073303783,"throughput_eps":0,"last_update":"2026-03-22T11:30:07.478957358Z"} +2026/03/22 11:30:12 ───────────────────────────────────────────────── +2026/03/22 11:30:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:30:17 [transform_engine] {"stage_name":"transform_engine","events_processed":657,"events_dropped":0,"avg_latency_ms":442.4506062313249,"throughput_eps":0,"last_update":"2026-03-22T11:30:12.479479751Z"} +2026/03/22 11:30:17 [log_collector] {"stage_name":"log_collector","events_processed":31348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6269.6,"last_update":"2026-03-22T11:30:17.36797513Z"} +2026/03/22 11:30:17 [metric_collector] {"stage_name":"metric_collector","events_processed":19724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3944.8,"last_update":"2026-03-22T11:30:12.369062851Z"} +2026/03/22 11:30:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7892,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:30:12.37809229Z"} +2026/03/22 11:30:17 [detection_layer] {"stage_name":"detection_layer","events_processed":657,"events_dropped":0,"avg_latency_ms":19.393627073303783,"throughput_eps":0,"last_update":"2026-03-22T11:30:12.479593558Z"} +2026/03/22 11:30:17 ───────────────────────────────────────────────── +2026/03/22 11:30:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:30:22 [metric_collector] {"stage_name":"metric_collector","events_processed":19729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3945.8,"last_update":"2026-03-22T11:30:17.368825499Z"} +2026/03/22 11:30:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:30:17.377971992Z"} +2026/03/22 11:30:22 [detection_layer] {"stage_name":"detection_layer","events_processed":657,"events_dropped":0,"avg_latency_ms":19.393627073303783,"throughput_eps":0,"last_update":"2026-03-22T11:30:17.479190419Z"} +2026/03/22 11:30:22 [transform_engine] {"stage_name":"transform_engine","events_processed":657,"events_dropped":0,"avg_latency_ms":442.4506062313249,"throughput_eps":0,"last_update":"2026-03-22T11:30:17.479215607Z"} +2026/03/22 11:30:22 [log_collector] {"stage_name":"log_collector","events_processed":31348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6269.6,"last_update":"2026-03-22T11:30:17.36797513Z"} +2026/03/22 11:30:22 ───────────────────────────────────────────────── +2026/03/22 11:30:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:30:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7896,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:30:22.375346387Z"} +2026/03/22 11:30:27 [detection_layer] {"stage_name":"detection_layer","events_processed":657,"events_dropped":0,"avg_latency_ms":19.393627073303783,"throughput_eps":0,"last_update":"2026-03-22T11:30:22.47963212Z"} +2026/03/22 11:30:27 [transform_engine] {"stage_name":"transform_engine","events_processed":657,"events_dropped":0,"avg_latency_ms":442.4506062313249,"throughput_eps":0,"last_update":"2026-03-22T11:30:22.479553389Z"} +2026/03/22 11:30:27 [log_collector] {"stage_name":"log_collector","events_processed":31348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6269.6,"last_update":"2026-03-22T11:30:27.368172382Z"} +2026/03/22 11:30:27 [metric_collector] {"stage_name":"metric_collector","events_processed":19734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3946.8,"last_update":"2026-03-22T11:30:22.368320637Z"} +2026/03/22 11:30:27 ───────────────────────────────────────────────── +2026/03/22 11:30:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:30:32 [metric_collector] {"stage_name":"metric_collector","events_processed":19739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3947.8,"last_update":"2026-03-22T11:30:27.369031998Z"} +2026/03/22 11:30:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7898,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:30:27.377296882Z"} +2026/03/22 11:30:32 [detection_layer] {"stage_name":"detection_layer","events_processed":657,"events_dropped":0,"avg_latency_ms":19.393627073303783,"throughput_eps":0,"last_update":"2026-03-22T11:30:27.47973283Z"} +2026/03/22 11:30:32 [transform_engine] {"stage_name":"transform_engine","events_processed":658,"events_dropped":0,"avg_latency_ms":368.83910158505995,"throughput_eps":0,"last_update":"2026-03-22T11:30:27.554243619Z"} +2026/03/22 11:30:32 [log_collector] {"stage_name":"log_collector","events_processed":31348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6269.6,"last_update":"2026-03-22T11:30:32.368050487Z"} +2026/03/22 11:30:32 ───────────────────────────────────────────────── +Saved state: 15 clusters, 31349 messages, reason: none +2026/03/22 11:30:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:30:37 [metric_collector] {"stage_name":"metric_collector","events_processed":19744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3948.8,"last_update":"2026-03-22T11:30:32.368834339Z"} +2026/03/22 11:30:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7900,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:30:32.377604441Z"} +2026/03/22 11:30:37 [detection_layer] {"stage_name":"detection_layer","events_processed":658,"events_dropped":0,"avg_latency_ms":19.455172258643028,"throughput_eps":0,"last_update":"2026-03-22T11:30:32.479821529Z"} +2026/03/22 11:30:37 [transform_engine] {"stage_name":"transform_engine","events_processed":658,"events_dropped":0,"avg_latency_ms":368.83910158505995,"throughput_eps":0,"last_update":"2026-03-22T11:30:32.479832982Z"} +2026/03/22 11:30:37 [log_collector] {"stage_name":"log_collector","events_processed":31348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6269.6,"last_update":"2026-03-22T11:30:32.368050487Z"} +2026/03/22 11:30:37 ───────────────────────────────────────────────── +2026/03/22 11:30:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:30:42 [log_collector] {"stage_name":"log_collector","events_processed":31362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6272.4,"last_update":"2026-03-22T11:30:42.368097115Z"} +2026/03/22 11:30:42 [metric_collector] {"stage_name":"metric_collector","events_processed":19749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3949.8,"last_update":"2026-03-22T11:30:37.368580997Z"} +2026/03/22 11:30:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:30:42.368136099Z"} +2026/03/22 11:30:42 [detection_layer] {"stage_name":"detection_layer","events_processed":658,"events_dropped":0,"avg_latency_ms":19.455172258643028,"throughput_eps":0,"last_update":"2026-03-22T11:30:37.479450792Z"} +2026/03/22 11:30:42 [transform_engine] {"stage_name":"transform_engine","events_processed":658,"events_dropped":0,"avg_latency_ms":368.83910158505995,"throughput_eps":0,"last_update":"2026-03-22T11:30:37.479460691Z"} +2026/03/22 11:30:42 ───────────────────────────────────────────────── +2026/03/22 11:30:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:30:47 [log_collector] {"stage_name":"log_collector","events_processed":31362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6272.4,"last_update":"2026-03-22T11:30:42.368097115Z"} +2026/03/22 11:30:47 [metric_collector] {"stage_name":"metric_collector","events_processed":19754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3950.8,"last_update":"2026-03-22T11:30:42.369104785Z"} +2026/03/22 11:30:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:30:42.368136099Z"} +2026/03/22 11:30:47 [detection_layer] {"stage_name":"detection_layer","events_processed":658,"events_dropped":0,"avg_latency_ms":19.455172258643028,"throughput_eps":0,"last_update":"2026-03-22T11:30:42.479033767Z"} +2026/03/22 11:30:47 [transform_engine] {"stage_name":"transform_engine","events_processed":658,"events_dropped":0,"avg_latency_ms":368.83910158505995,"throughput_eps":0,"last_update":"2026-03-22T11:30:42.479053645Z"} +2026/03/22 11:30:47 ───────────────────────────────────────────────── +2026/03/22 11:30:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:30:52 [log_collector] {"stage_name":"log_collector","events_processed":31362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6272.4,"last_update":"2026-03-22T11:30:52.368431913Z"} +2026/03/22 11:30:52 [metric_collector] {"stage_name":"metric_collector","events_processed":19759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3951.8,"last_update":"2026-03-22T11:30:47.36964166Z"} +2026/03/22 11:30:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7906,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:30:47.37878113Z"} +2026/03/22 11:30:52 [detection_layer] {"stage_name":"detection_layer","events_processed":658,"events_dropped":0,"avg_latency_ms":19.455172258643028,"throughput_eps":0,"last_update":"2026-03-22T11:30:47.478967717Z"} +2026/03/22 11:30:52 [transform_engine] {"stage_name":"transform_engine","events_processed":658,"events_dropped":0,"avg_latency_ms":368.83910158505995,"throughput_eps":0,"last_update":"2026-03-22T11:30:47.478927199Z"} +2026/03/22 11:30:52 ───────────────────────────────────────────────── +2026/03/22 11:30:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:30:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7908,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:30:52.379091976Z"} +2026/03/22 11:30:57 [detection_layer] {"stage_name":"detection_layer","events_processed":658,"events_dropped":0,"avg_latency_ms":19.455172258643028,"throughput_eps":0,"last_update":"2026-03-22T11:30:52.479394324Z"} +2026/03/22 11:30:57 [transform_engine] {"stage_name":"transform_engine","events_processed":658,"events_dropped":0,"avg_latency_ms":368.83910158505995,"throughput_eps":0,"last_update":"2026-03-22T11:30:52.479406007Z"} +2026/03/22 11:30:57 [log_collector] {"stage_name":"log_collector","events_processed":31362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6272.4,"last_update":"2026-03-22T11:30:52.368431913Z"} +2026/03/22 11:30:57 [metric_collector] {"stage_name":"metric_collector","events_processed":19769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3953.8,"last_update":"2026-03-22T11:30:57.36823452Z"} +2026/03/22 11:30:57 ───────────────────────────────────────────────── +2026/03/22 11:31:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:31:02 [log_collector] {"stage_name":"log_collector","events_processed":31362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6272.4,"last_update":"2026-03-22T11:30:57.36844867Z"} +2026/03/22 11:31:02 [metric_collector] {"stage_name":"metric_collector","events_processed":19769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3953.8,"last_update":"2026-03-22T11:30:57.36823452Z"} +2026/03/22 11:31:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:30:57.379682081Z"} +2026/03/22 11:31:02 [detection_layer] {"stage_name":"detection_layer","events_processed":658,"events_dropped":0,"avg_latency_ms":19.455172258643028,"throughput_eps":0,"last_update":"2026-03-22T11:30:57.480031279Z"} +2026/03/22 11:31:02 [transform_engine] {"stage_name":"transform_engine","events_processed":659,"events_dropped":0,"avg_latency_ms":318.61624846804796,"throughput_eps":0,"last_update":"2026-03-22T11:30:57.596579031Z"} +2026/03/22 11:31:02 ───────────────────────────────────────────────── +2026/03/22 11:31:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:31:07 [log_collector] {"stage_name":"log_collector","events_processed":31362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6272.4,"last_update":"2026-03-22T11:31:02.368105126Z"} +2026/03/22 11:31:07 [metric_collector] {"stage_name":"metric_collector","events_processed":19774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3954.8,"last_update":"2026-03-22T11:31:02.36850878Z"} +2026/03/22 11:31:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7912,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:31:02.376827737Z"} +2026/03/22 11:31:07 [detection_layer] {"stage_name":"detection_layer","events_processed":659,"events_dropped":0,"avg_latency_ms":19.443088806914425,"throughput_eps":0,"last_update":"2026-03-22T11:31:02.479073098Z"} +2026/03/22 11:31:07 [transform_engine] {"stage_name":"transform_engine","events_processed":659,"events_dropped":0,"avg_latency_ms":318.61624846804796,"throughput_eps":0,"last_update":"2026-03-22T11:31:02.479086163Z"} +2026/03/22 11:31:07 ───────────────────────────────────────────────── +2026/03/22 11:31:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:31:12 [metric_collector] {"stage_name":"metric_collector","events_processed":19779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3955.8,"last_update":"2026-03-22T11:31:07.369235213Z"} +2026/03/22 11:31:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:31:07.378429457Z"} +2026/03/22 11:31:12 [detection_layer] {"stage_name":"detection_layer","events_processed":659,"events_dropped":0,"avg_latency_ms":19.443088806914425,"throughput_eps":0,"last_update":"2026-03-22T11:31:07.479698416Z"} +2026/03/22 11:31:12 [transform_engine] {"stage_name":"transform_engine","events_processed":659,"events_dropped":0,"avg_latency_ms":318.61624846804796,"throughput_eps":0,"last_update":"2026-03-22T11:31:07.479705791Z"} +2026/03/22 11:31:12 [log_collector] {"stage_name":"log_collector","events_processed":31362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6272.4,"last_update":"2026-03-22T11:31:07.36885298Z"} +2026/03/22 11:31:12 ───────────────────────────────────────────────── +2026/03/22 11:31:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:31:17 [log_collector] {"stage_name":"log_collector","events_processed":31362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6272.4,"last_update":"2026-03-22T11:31:12.368016642Z"} +2026/03/22 11:31:17 [metric_collector] {"stage_name":"metric_collector","events_processed":19784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3956.8,"last_update":"2026-03-22T11:31:12.368741761Z"} +2026/03/22 11:31:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:31:12.376438055Z"} +2026/03/22 11:31:17 [detection_layer] {"stage_name":"detection_layer","events_processed":659,"events_dropped":0,"avg_latency_ms":19.443088806914425,"throughput_eps":0,"last_update":"2026-03-22T11:31:12.479789374Z"} +2026/03/22 11:31:17 [transform_engine] {"stage_name":"transform_engine","events_processed":659,"events_dropped":0,"avg_latency_ms":318.61624846804796,"throughput_eps":0,"last_update":"2026-03-22T11:31:12.479801156Z"} +2026/03/22 11:31:17 ───────────────────────────────────────────────── +2026/03/22 11:31:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:31:22 [metric_collector] {"stage_name":"metric_collector","events_processed":19789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3957.8,"last_update":"2026-03-22T11:31:17.368609284Z"} +2026/03/22 11:31:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7918,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:31:17.376074646Z"} +2026/03/22 11:31:22 [detection_layer] {"stage_name":"detection_layer","events_processed":659,"events_dropped":0,"avg_latency_ms":19.443088806914425,"throughput_eps":0,"last_update":"2026-03-22T11:31:17.479395315Z"} +2026/03/22 11:31:22 [transform_engine] {"stage_name":"transform_engine","events_processed":659,"events_dropped":0,"avg_latency_ms":318.61624846804796,"throughput_eps":0,"last_update":"2026-03-22T11:31:17.479412859Z"} +2026/03/22 11:31:22 [log_collector] {"stage_name":"log_collector","events_processed":31362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6272.4,"last_update":"2026-03-22T11:31:17.368157288Z"} +2026/03/22 11:31:22 ───────────────────────────────────────────────── +2026/03/22 11:31:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:31:27 [detection_layer] {"stage_name":"detection_layer","events_processed":659,"events_dropped":0,"avg_latency_ms":19.443088806914425,"throughput_eps":0,"last_update":"2026-03-22T11:31:22.479137224Z"} +2026/03/22 11:31:27 [transform_engine] {"stage_name":"transform_engine","events_processed":659,"events_dropped":0,"avg_latency_ms":318.61624846804796,"throughput_eps":0,"last_update":"2026-03-22T11:31:22.479150228Z"} +2026/03/22 11:31:27 [log_collector] {"stage_name":"log_collector","events_processed":31362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6272.4,"last_update":"2026-03-22T11:31:22.368601491Z"} +2026/03/22 11:31:27 [metric_collector] {"stage_name":"metric_collector","events_processed":19794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3958.8,"last_update":"2026-03-22T11:31:22.369153319Z"} +2026/03/22 11:31:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7920,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:31:22.374933953Z"} +2026/03/22 11:31:27 ───────────────────────────────────────────────── +2026/03/22 11:31:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:31:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:31:27.378297742Z"} +2026/03/22 11:31:32 [detection_layer] {"stage_name":"detection_layer","events_processed":659,"events_dropped":0,"avg_latency_ms":19.443088806914425,"throughput_eps":0,"last_update":"2026-03-22T11:31:27.479485054Z"} +2026/03/22 11:31:32 [transform_engine] {"stage_name":"transform_engine","events_processed":660,"events_dropped":0,"avg_latency_ms":272.7387711744384,"throughput_eps":0,"last_update":"2026-03-22T11:31:27.568724747Z"} +2026/03/22 11:31:32 [log_collector] {"stage_name":"log_collector","events_processed":31362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6272.4,"last_update":"2026-03-22T11:31:27.367960239Z"} +2026/03/22 11:31:32 [metric_collector] {"stage_name":"metric_collector","events_processed":19799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3959.8,"last_update":"2026-03-22T11:31:27.368336469Z"} +2026/03/22 11:31:32 ───────────────────────────────────────────────── +2026/03/22 11:31:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:31:37 [detection_layer] {"stage_name":"detection_layer","events_processed":660,"events_dropped":0,"avg_latency_ms":19.94555924553154,"throughput_eps":0,"last_update":"2026-03-22T11:31:32.479457542Z"} +2026/03/22 11:31:37 [transform_engine] {"stage_name":"transform_engine","events_processed":660,"events_dropped":0,"avg_latency_ms":272.7387711744384,"throughput_eps":0,"last_update":"2026-03-22T11:31:32.479468023Z"} +2026/03/22 11:31:37 [log_collector] {"stage_name":"log_collector","events_processed":31362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6272.4,"last_update":"2026-03-22T11:31:37.368627402Z"} +2026/03/22 11:31:37 [metric_collector] {"stage_name":"metric_collector","events_processed":19804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3960.8,"last_update":"2026-03-22T11:31:32.368706008Z"} +2026/03/22 11:31:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:31:32.37913676Z"} +2026/03/22 11:31:37 ───────────────────────────────────────────────── +2026/03/22 11:31:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:31:42 [log_collector] {"stage_name":"log_collector","events_processed":31362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6272.4,"last_update":"2026-03-22T11:31:42.368273271Z"} +2026/03/22 11:31:42 [metric_collector] {"stage_name":"metric_collector","events_processed":19809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3961.8,"last_update":"2026-03-22T11:31:37.369425161Z"} +2026/03/22 11:31:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:31:37.378499946Z"} +2026/03/22 11:31:42 [detection_layer] {"stage_name":"detection_layer","events_processed":660,"events_dropped":0,"avg_latency_ms":19.94555924553154,"throughput_eps":0,"last_update":"2026-03-22T11:31:37.479849468Z"} +2026/03/22 11:31:42 [transform_engine] {"stage_name":"transform_engine","events_processed":660,"events_dropped":0,"avg_latency_ms":272.7387711744384,"throughput_eps":0,"last_update":"2026-03-22T11:31:37.47986101Z"} +2026/03/22 11:31:42 ───────────────────────────────────────────────── +Saved state: 15 clusters, 31363 messages, reason: none +2026/03/22 11:31:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:31:47 [log_collector] {"stage_name":"log_collector","events_processed":31362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6272.4,"last_update":"2026-03-22T11:31:42.368273271Z"} +2026/03/22 11:31:47 [metric_collector] {"stage_name":"metric_collector","events_processed":19814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3962.8,"last_update":"2026-03-22T11:31:42.368973021Z"} +2026/03/22 11:31:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:31:42.378675169Z"} +2026/03/22 11:31:47 [detection_layer] {"stage_name":"detection_layer","events_processed":660,"events_dropped":0,"avg_latency_ms":19.94555924553154,"throughput_eps":0,"last_update":"2026-03-22T11:31:42.479848693Z"} +2026/03/22 11:31:47 [transform_engine] {"stage_name":"transform_engine","events_processed":660,"events_dropped":0,"avg_latency_ms":272.7387711744384,"throughput_eps":0,"last_update":"2026-03-22T11:31:42.47985733Z"} +2026/03/22 11:31:47 ───────────────────────────────────────────────── +2026/03/22 11:31:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:31:52 [detection_layer] {"stage_name":"detection_layer","events_processed":660,"events_dropped":0,"avg_latency_ms":19.94555924553154,"throughput_eps":0,"last_update":"2026-03-22T11:31:47.479732514Z"} +2026/03/22 11:31:52 [transform_engine] {"stage_name":"transform_engine","events_processed":660,"events_dropped":0,"avg_latency_ms":272.7387711744384,"throughput_eps":0,"last_update":"2026-03-22T11:31:47.479742193Z"} +2026/03/22 11:31:52 [log_collector] {"stage_name":"log_collector","events_processed":31367,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6273.4,"last_update":"2026-03-22T11:31:47.368691897Z"} +2026/03/22 11:31:52 [metric_collector] {"stage_name":"metric_collector","events_processed":19819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3963.8,"last_update":"2026-03-22T11:31:47.369073428Z"} +2026/03/22 11:31:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7930,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:31:47.379407234Z"} +2026/03/22 11:31:52 ───────────────────────────────────────────────── +2026/03/22 11:31:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:31:57 [transform_engine] {"stage_name":"transform_engine","events_processed":660,"events_dropped":0,"avg_latency_ms":272.7387711744384,"throughput_eps":0,"last_update":"2026-03-22T11:31:52.479416388Z"} +2026/03/22 11:31:57 [log_collector] {"stage_name":"log_collector","events_processed":31367,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6273.4,"last_update":"2026-03-22T11:31:52.368344551Z"} +2026/03/22 11:31:57 [metric_collector] {"stage_name":"metric_collector","events_processed":19824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3964.8,"last_update":"2026-03-22T11:31:52.368892691Z"} +2026/03/22 11:31:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:31:54.418736514Z"} +2026/03/22 11:31:57 [detection_layer] {"stage_name":"detection_layer","events_processed":660,"events_dropped":0,"avg_latency_ms":19.94555924553154,"throughput_eps":0,"last_update":"2026-03-22T11:31:52.479405847Z"} +2026/03/22 11:31:57 ───────────────────────────────────────────────── +2026/03/22 11:32:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:32:02 [metric_collector] {"stage_name":"metric_collector","events_processed":19829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3965.8,"last_update":"2026-03-22T11:31:57.368641152Z"} +2026/03/22 11:32:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:31:57.375370063Z"} +2026/03/22 11:32:02 [detection_layer] {"stage_name":"detection_layer","events_processed":660,"events_dropped":0,"avg_latency_ms":19.94555924553154,"throughput_eps":0,"last_update":"2026-03-22T11:31:57.479983336Z"} +2026/03/22 11:32:02 [transform_engine] {"stage_name":"transform_engine","events_processed":660,"events_dropped":0,"avg_latency_ms":272.7387711744384,"throughput_eps":0,"last_update":"2026-03-22T11:31:52.479416388Z"} +2026/03/22 11:32:02 [log_collector] {"stage_name":"log_collector","events_processed":31367,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6273.4,"last_update":"2026-03-22T11:31:57.368646973Z"} +2026/03/22 11:32:02 ───────────────────────────────────────────────── +2026/03/22 11:32:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:32:07 [metric_collector] {"stage_name":"metric_collector","events_processed":19834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3966.8,"last_update":"2026-03-22T11:32:02.3686607Z"} +2026/03/22 11:32:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:32:02.37673659Z"} +2026/03/22 11:32:07 [detection_layer] {"stage_name":"detection_layer","events_processed":660,"events_dropped":0,"avg_latency_ms":19.94555924553154,"throughput_eps":0,"last_update":"2026-03-22T11:32:02.479033667Z"} +2026/03/22 11:32:07 [transform_engine] {"stage_name":"transform_engine","events_processed":660,"events_dropped":0,"avg_latency_ms":272.7387711744384,"throughput_eps":0,"last_update":"2026-03-22T11:31:52.479416388Z"} +2026/03/22 11:32:07 [log_collector] {"stage_name":"log_collector","events_processed":31367,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6273.4,"last_update":"2026-03-22T11:32:07.368299933Z"} +2026/03/22 11:32:07 ───────────────────────────────────────────────── +2026/03/22 11:32:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:32:12 [transform_engine] {"stage_name":"transform_engine","events_processed":660,"events_dropped":0,"avg_latency_ms":272.7387711744384,"throughput_eps":0,"last_update":"2026-03-22T11:31:52.479416388Z"} +2026/03/22 11:32:12 [log_collector] {"stage_name":"log_collector","events_processed":31367,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6273.4,"last_update":"2026-03-22T11:32:07.368299933Z"} +2026/03/22 11:32:12 [metric_collector] {"stage_name":"metric_collector","events_processed":19839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3967.8,"last_update":"2026-03-22T11:32:07.368539Z"} +2026/03/22 11:32:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:32:07.375584888Z"} +2026/03/22 11:32:12 [detection_layer] {"stage_name":"detection_layer","events_processed":660,"events_dropped":0,"avg_latency_ms":19.94555924553154,"throughput_eps":0,"last_update":"2026-03-22T11:32:07.479789287Z"} +2026/03/22 11:32:12 ───────────────────────────────────────────────── +2026/03/22 11:32:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:32:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7940,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:32:12.376781413Z"} +2026/03/22 11:32:17 [detection_layer] {"stage_name":"detection_layer","events_processed":660,"events_dropped":0,"avg_latency_ms":19.94555924553154,"throughput_eps":0,"last_update":"2026-03-22T11:32:12.479965558Z"} +2026/03/22 11:32:17 [transform_engine] {"stage_name":"transform_engine","events_processed":660,"events_dropped":0,"avg_latency_ms":272.7387711744384,"throughput_eps":0,"last_update":"2026-03-22T11:31:52.479416388Z"} +2026/03/22 11:32:17 [log_collector] {"stage_name":"log_collector","events_processed":31367,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6273.4,"last_update":"2026-03-22T11:32:17.37040412Z"} +2026/03/22 11:32:17 [metric_collector] {"stage_name":"metric_collector","events_processed":19844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3968.8,"last_update":"2026-03-22T11:32:12.368608656Z"} +2026/03/22 11:32:17 ───────────────────────────────────────────────── +2026/03/22 11:32:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:32:22 [metric_collector] {"stage_name":"metric_collector","events_processed":19849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3969.8,"last_update":"2026-03-22T11:32:17.370657115Z"} +2026/03/22 11:32:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:32:17.379101402Z"} +2026/03/22 11:32:22 [detection_layer] {"stage_name":"detection_layer","events_processed":660,"events_dropped":0,"avg_latency_ms":19.94555924553154,"throughput_eps":0,"last_update":"2026-03-22T11:32:17.479228941Z"} +2026/03/22 11:32:22 [transform_engine] {"stage_name":"transform_engine","events_processed":660,"events_dropped":0,"avg_latency_ms":272.7387711744384,"throughput_eps":0,"last_update":"2026-03-22T11:31:52.479416388Z"} +2026/03/22 11:32:22 [log_collector] {"stage_name":"log_collector","events_processed":31367,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6273.4,"last_update":"2026-03-22T11:32:17.37040412Z"} +2026/03/22 11:32:22 ───────────────────────────────────────────────── +2026/03/22 11:32:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:32:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:32:22.375145594Z"} +2026/03/22 11:32:27 [detection_layer] {"stage_name":"detection_layer","events_processed":660,"events_dropped":0,"avg_latency_ms":19.94555924553154,"throughput_eps":0,"last_update":"2026-03-22T11:32:22.479426639Z"} +2026/03/22 11:32:27 [transform_engine] {"stage_name":"transform_engine","events_processed":660,"events_dropped":0,"avg_latency_ms":272.7387711744384,"throughput_eps":0,"last_update":"2026-03-22T11:31:52.479416388Z"} +2026/03/22 11:32:27 [log_collector] {"stage_name":"log_collector","events_processed":31367,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6273.4,"last_update":"2026-03-22T11:32:22.367999133Z"} +2026/03/22 11:32:27 [metric_collector] {"stage_name":"metric_collector","events_processed":19854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3970.8,"last_update":"2026-03-22T11:32:22.368474594Z"} +2026/03/22 11:32:27 ───────────────────────────────────────────────── +2026/03/22 11:32:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:32:32 [metric_collector] {"stage_name":"metric_collector","events_processed":19859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3971.8,"last_update":"2026-03-22T11:32:27.369340599Z"} +2026/03/22 11:32:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:32:27.375366834Z"} +2026/03/22 11:32:32 [detection_layer] {"stage_name":"detection_layer","events_processed":660,"events_dropped":0,"avg_latency_ms":19.94555924553154,"throughput_eps":0,"last_update":"2026-03-22T11:32:27.479556845Z"} +2026/03/22 11:32:32 [transform_engine] {"stage_name":"transform_engine","events_processed":660,"events_dropped":0,"avg_latency_ms":272.7387711744384,"throughput_eps":0,"last_update":"2026-03-22T11:31:52.479416388Z"} +2026/03/22 11:32:32 [log_collector] {"stage_name":"log_collector","events_processed":31367,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6273.4,"last_update":"2026-03-22T11:32:27.368838507Z"} +2026/03/22 11:32:32 ───────────────────────────────────────────────── +2026/03/22 11:32:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:32:37 [log_collector] {"stage_name":"log_collector","events_processed":31367,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6273.4,"last_update":"2026-03-22T11:32:32.368319814Z"} +2026/03/22 11:32:37 [metric_collector] {"stage_name":"metric_collector","events_processed":19864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3972.8,"last_update":"2026-03-22T11:32:32.368748566Z"} +2026/03/22 11:32:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:32:32.374427535Z"} +2026/03/22 11:32:37 [detection_layer] {"stage_name":"detection_layer","events_processed":660,"events_dropped":0,"avg_latency_ms":19.94555924553154,"throughput_eps":0,"last_update":"2026-03-22T11:32:32.479654022Z"} +2026/03/22 11:32:37 [transform_engine] {"stage_name":"transform_engine","events_processed":660,"events_dropped":0,"avg_latency_ms":272.7387711744384,"throughput_eps":0,"last_update":"2026-03-22T11:31:52.479416388Z"} +2026/03/22 11:32:37 ───────────────────────────────────────────────── +2026/03/22 11:32:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:32:42 [log_collector] {"stage_name":"log_collector","events_processed":31367,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6273.4,"last_update":"2026-03-22T11:32:37.368756169Z"} +2026/03/22 11:32:42 [metric_collector] {"stage_name":"metric_collector","events_processed":19869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3973.8,"last_update":"2026-03-22T11:32:37.369635013Z"} +2026/03/22 11:32:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:32:37.376009756Z"} +2026/03/22 11:32:42 [detection_layer] {"stage_name":"detection_layer","events_processed":660,"events_dropped":0,"avg_latency_ms":19.94555924553154,"throughput_eps":0,"last_update":"2026-03-22T11:32:37.479209128Z"} +2026/03/22 11:32:42 [transform_engine] {"stage_name":"transform_engine","events_processed":660,"events_dropped":0,"avg_latency_ms":272.7387711744384,"throughput_eps":0,"last_update":"2026-03-22T11:31:52.479416388Z"} +2026/03/22 11:32:42 ───────────────────────────────────────────────── +Saved state: 15 clusters, 31378 messages, reason: none +2026/03/22 11:32:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:32:47 [detection_layer] {"stage_name":"detection_layer","events_processed":660,"events_dropped":0,"avg_latency_ms":19.94555924553154,"throughput_eps":0,"last_update":"2026-03-22T11:32:42.479307672Z"} +2026/03/22 11:32:47 [transform_engine] {"stage_name":"transform_engine","events_processed":661,"events_dropped":0,"avg_latency_ms":9401.96402053955,"throughput_eps":0,"last_update":"2026-03-22T11:32:43.397747464Z"} +2026/03/22 11:32:47 [log_collector] {"stage_name":"log_collector","events_processed":31376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6275.2,"last_update":"2026-03-22T11:32:42.368478413Z"} +2026/03/22 11:32:47 [metric_collector] {"stage_name":"metric_collector","events_processed":19874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3974.8,"last_update":"2026-03-22T11:32:42.368782345Z"} +2026/03/22 11:32:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:32:42.375064811Z"} +2026/03/22 11:32:47 ───────────────────────────────────────────────── +2026/03/22 11:32:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:32:52 [log_collector] {"stage_name":"log_collector","events_processed":31519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6303.8,"last_update":"2026-03-22T11:32:52.368504763Z"} +2026/03/22 11:32:52 [metric_collector] {"stage_name":"metric_collector","events_processed":19879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3975.8,"last_update":"2026-03-22T11:32:47.369240034Z"} +2026/03/22 11:32:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:32:47.37810669Z"} +2026/03/22 11:32:52 [detection_layer] {"stage_name":"detection_layer","events_processed":661,"events_dropped":0,"avg_latency_ms":19.319493996425233,"throughput_eps":0,"last_update":"2026-03-22T11:32:47.479402666Z"} +2026/03/22 11:32:52 [transform_engine] {"stage_name":"transform_engine","events_processed":662,"events_dropped":0,"avg_latency_ms":7550.15751603164,"throughput_eps":0,"last_update":"2026-03-22T11:32:47.479463692Z"} +2026/03/22 11:32:52 ───────────────────────────────────────────────── +2026/03/22 11:32:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:32:57 [metric_collector] {"stage_name":"metric_collector","events_processed":19884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3976.8,"last_update":"2026-03-22T11:32:52.368887386Z"} +2026/03/22 11:32:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:32:52.375617348Z"} +2026/03/22 11:32:57 [detection_layer] {"stage_name":"detection_layer","events_processed":661,"events_dropped":0,"avg_latency_ms":19.319493996425233,"throughput_eps":0,"last_update":"2026-03-22T11:32:52.479017825Z"} +2026/03/22 11:32:57 [transform_engine] {"stage_name":"transform_engine","events_processed":662,"events_dropped":0,"avg_latency_ms":7550.15751603164,"throughput_eps":0,"last_update":"2026-03-22T11:32:52.479031642Z"} +2026/03/22 11:32:57 [log_collector] {"stage_name":"log_collector","events_processed":31519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6303.8,"last_update":"2026-03-22T11:32:52.368504763Z"} +2026/03/22 11:32:57 ───────────────────────────────────────────────── +2026/03/22 11:33:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:33:02 [log_collector] {"stage_name":"log_collector","events_processed":31697,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6339.4,"last_update":"2026-03-22T11:32:57.368714508Z"} +2026/03/22 11:33:02 [metric_collector] {"stage_name":"metric_collector","events_processed":19889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3977.8,"last_update":"2026-03-22T11:32:57.369689937Z"} +2026/03/22 11:33:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7958,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:32:57.385249404Z"} +2026/03/22 11:33:02 [detection_layer] {"stage_name":"detection_layer","events_processed":661,"events_dropped":0,"avg_latency_ms":19.319493996425233,"throughput_eps":0,"last_update":"2026-03-22T11:32:57.479184739Z"} +2026/03/22 11:33:02 [transform_engine] {"stage_name":"transform_engine","events_processed":663,"events_dropped":0,"avg_latency_ms":6064.444139625312,"throughput_eps":0,"last_update":"2026-03-22T11:32:57.600799187Z"} +2026/03/22 11:33:02 ───────────────────────────────────────────────── +2026/03/22 11:33:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:33:07 [log_collector] {"stage_name":"log_collector","events_processed":31729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6345.8,"last_update":"2026-03-22T11:33:02.368786216Z"} +2026/03/22 11:33:07 [metric_collector] {"stage_name":"metric_collector","events_processed":19894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3978.8,"last_update":"2026-03-22T11:33:02.369073316Z"} +2026/03/22 11:33:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:33:02.378978091Z"} +2026/03/22 11:33:07 [detection_layer] {"stage_name":"detection_layer","events_processed":662,"events_dropped":0,"avg_latency_ms":17.822138797140187,"throughput_eps":0,"last_update":"2026-03-22T11:33:02.47916464Z"} +2026/03/22 11:33:07 [transform_engine] {"stage_name":"transform_engine","events_processed":663,"events_dropped":0,"avg_latency_ms":6064.444139625312,"throughput_eps":0,"last_update":"2026-03-22T11:33:02.479272918Z"} +2026/03/22 11:33:07 ───────────────────────────────────────────────── +2026/03/22 11:33:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:33:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7962,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:33:07.376885991Z"} +2026/03/22 11:33:12 [detection_layer] {"stage_name":"detection_layer","events_processed":662,"events_dropped":0,"avg_latency_ms":17.822138797140187,"throughput_eps":0,"last_update":"2026-03-22T11:33:07.479102178Z"} +2026/03/22 11:33:12 [transform_engine] {"stage_name":"transform_engine","events_processed":663,"events_dropped":0,"avg_latency_ms":6064.444139625312,"throughput_eps":0,"last_update":"2026-03-22T11:33:07.479206458Z"} +2026/03/22 11:33:12 [log_collector] {"stage_name":"log_collector","events_processed":31729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6345.8,"last_update":"2026-03-22T11:33:07.368000058Z"} +2026/03/22 11:33:12 [metric_collector] {"stage_name":"metric_collector","events_processed":19899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3979.8,"last_update":"2026-03-22T11:33:07.368473916Z"} +2026/03/22 11:33:12 ───────────────────────────────────────────────── +2026/03/22 11:33:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:33:17 [metric_collector] {"stage_name":"metric_collector","events_processed":19904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3980.8,"last_update":"2026-03-22T11:33:12.368867324Z"} +2026/03/22 11:33:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:33:12.375562359Z"} +2026/03/22 11:33:17 [detection_layer] {"stage_name":"detection_layer","events_processed":662,"events_dropped":0,"avg_latency_ms":17.822138797140187,"throughput_eps":0,"last_update":"2026-03-22T11:33:12.479851037Z"} +2026/03/22 11:33:17 [transform_engine] {"stage_name":"transform_engine","events_processed":663,"events_dropped":0,"avg_latency_ms":6064.444139625312,"throughput_eps":0,"last_update":"2026-03-22T11:33:12.479778408Z"} +2026/03/22 11:33:17 [log_collector] {"stage_name":"log_collector","events_processed":31732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6346.4,"last_update":"2026-03-22T11:33:12.368548674Z"} +2026/03/22 11:33:17 ───────────────────────────────────────────────── +2026/03/22 11:33:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:33:22 [transform_engine] {"stage_name":"transform_engine","events_processed":663,"events_dropped":0,"avg_latency_ms":6064.444139625312,"throughput_eps":0,"last_update":"2026-03-22T11:33:17.479388502Z"} +2026/03/22 11:33:22 [log_collector] {"stage_name":"log_collector","events_processed":31732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6346.4,"last_update":"2026-03-22T11:33:17.367980718Z"} +2026/03/22 11:33:22 [metric_collector] {"stage_name":"metric_collector","events_processed":19909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3981.8,"last_update":"2026-03-22T11:33:17.368372678Z"} +2026/03/22 11:33:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:33:17.377106339Z"} +2026/03/22 11:33:22 [detection_layer] {"stage_name":"detection_layer","events_processed":662,"events_dropped":0,"avg_latency_ms":17.822138797140187,"throughput_eps":0,"last_update":"2026-03-22T11:33:17.479411647Z"} +2026/03/22 11:33:22 ───────────────────────────────────────────────── +2026/03/22 11:33:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:33:27 [metric_collector] {"stage_name":"metric_collector","events_processed":19914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3982.8,"last_update":"2026-03-22T11:33:22.368317742Z"} +2026/03/22 11:33:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:33:22.376318699Z"} +2026/03/22 11:33:27 [detection_layer] {"stage_name":"detection_layer","events_processed":662,"events_dropped":0,"avg_latency_ms":17.822138797140187,"throughput_eps":0,"last_update":"2026-03-22T11:33:22.479512949Z"} +2026/03/22 11:33:27 [transform_engine] {"stage_name":"transform_engine","events_processed":663,"events_dropped":0,"avg_latency_ms":6064.444139625312,"throughput_eps":0,"last_update":"2026-03-22T11:33:22.479480647Z"} +2026/03/22 11:33:27 [log_collector] {"stage_name":"log_collector","events_processed":31743,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6348.6,"last_update":"2026-03-22T11:33:22.367958544Z"} +2026/03/22 11:33:27 ───────────────────────────────────────────────── +2026/03/22 11:33:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:33:32 [log_collector] {"stage_name":"log_collector","events_processed":31757,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6351.4,"last_update":"2026-03-22T11:33:27.368394193Z"} +2026/03/22 11:33:32 [metric_collector] {"stage_name":"metric_collector","events_processed":19919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3983.8,"last_update":"2026-03-22T11:33:27.368799219Z"} +2026/03/22 11:33:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7970,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:33:27.375779922Z"} +2026/03/22 11:33:32 [detection_layer] {"stage_name":"detection_layer","events_processed":662,"events_dropped":0,"avg_latency_ms":17.822138797140187,"throughput_eps":0,"last_update":"2026-03-22T11:33:27.478947401Z"} +2026/03/22 11:33:32 [transform_engine] {"stage_name":"transform_engine","events_processed":663,"events_dropped":0,"avg_latency_ms":6064.444139625312,"throughput_eps":0,"last_update":"2026-03-22T11:33:27.478938774Z"} +2026/03/22 11:33:32 ───────────────────────────────────────────────── +2026/03/22 11:33:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:33:37 [transform_engine] {"stage_name":"transform_engine","events_processed":663,"events_dropped":0,"avg_latency_ms":6064.444139625312,"throughput_eps":0,"last_update":"2026-03-22T11:33:27.478938774Z"} +2026/03/22 11:33:37 [log_collector] {"stage_name":"log_collector","events_processed":31757,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6351.4,"last_update":"2026-03-22T11:33:32.36847432Z"} +2026/03/22 11:33:37 [metric_collector] {"stage_name":"metric_collector","events_processed":19924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3984.8,"last_update":"2026-03-22T11:33:32.368840452Z"} +2026/03/22 11:33:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:33:32.376590759Z"} +2026/03/22 11:33:37 [detection_layer] {"stage_name":"detection_layer","events_processed":662,"events_dropped":0,"avg_latency_ms":17.822138797140187,"throughput_eps":0,"last_update":"2026-03-22T11:33:32.479867437Z"} +2026/03/22 11:33:37 ───────────────────────────────────────────────── +2026/03/22 11:33:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:33:42 [log_collector] {"stage_name":"log_collector","events_processed":31757,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6351.4,"last_update":"2026-03-22T11:33:37.368652754Z"} +2026/03/22 11:33:42 [metric_collector] {"stage_name":"metric_collector","events_processed":19929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3985.8,"last_update":"2026-03-22T11:33:37.369340031Z"} +2026/03/22 11:33:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:33:37.377085749Z"} +2026/03/22 11:33:42 [detection_layer] {"stage_name":"detection_layer","events_processed":662,"events_dropped":0,"avg_latency_ms":17.822138797140187,"throughput_eps":0,"last_update":"2026-03-22T11:33:37.479331672Z"} +2026/03/22 11:33:42 [transform_engine] {"stage_name":"transform_engine","events_processed":663,"events_dropped":0,"avg_latency_ms":6064.444139625312,"throughput_eps":0,"last_update":"2026-03-22T11:33:27.478938774Z"} +2026/03/22 11:33:42 ───────────────────────────────────────────────── +2026/03/22 11:33:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:33:47 [transform_engine] {"stage_name":"transform_engine","events_processed":663,"events_dropped":0,"avg_latency_ms":6064.444139625312,"throughput_eps":0,"last_update":"2026-03-22T11:33:27.478938774Z"} +2026/03/22 11:33:47 [log_collector] {"stage_name":"log_collector","events_processed":31757,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6351.4,"last_update":"2026-03-22T11:33:42.368349743Z"} +2026/03/22 11:33:47 [metric_collector] {"stage_name":"metric_collector","events_processed":19934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3986.8,"last_update":"2026-03-22T11:33:42.368338581Z"} +2026/03/22 11:33:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:33:42.377525951Z"} +2026/03/22 11:33:47 [detection_layer] {"stage_name":"detection_layer","events_processed":662,"events_dropped":0,"avg_latency_ms":17.822138797140187,"throughput_eps":0,"last_update":"2026-03-22T11:33:42.479746064Z"} +2026/03/22 11:33:47 ───────────────────────────────────────────────── +2026/03/22 11:33:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:33:52 [log_collector] {"stage_name":"log_collector","events_processed":31757,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6351.4,"last_update":"2026-03-22T11:33:47.368629155Z"} +2026/03/22 11:33:52 [metric_collector] {"stage_name":"metric_collector","events_processed":19939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3987.8,"last_update":"2026-03-22T11:33:47.369104125Z"} +2026/03/22 11:33:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:33:47.376262728Z"} +2026/03/22 11:33:52 [detection_layer] {"stage_name":"detection_layer","events_processed":662,"events_dropped":0,"avg_latency_ms":17.822138797140187,"throughput_eps":0,"last_update":"2026-03-22T11:33:47.479456606Z"} +2026/03/22 11:33:52 [transform_engine] {"stage_name":"transform_engine","events_processed":663,"events_dropped":0,"avg_latency_ms":6064.444139625312,"throughput_eps":0,"last_update":"2026-03-22T11:33:27.478938774Z"} +2026/03/22 11:33:52 ───────────────────────────────────────────────── +2026/03/22 11:33:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:33:57 [log_collector] {"stage_name":"log_collector","events_processed":31757,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6351.4,"last_update":"2026-03-22T11:33:52.367981439Z"} +2026/03/22 11:33:57 [metric_collector] {"stage_name":"metric_collector","events_processed":19944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3988.8,"last_update":"2026-03-22T11:33:52.368901131Z"} +2026/03/22 11:33:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:33:52.37708056Z"} +2026/03/22 11:33:57 [detection_layer] {"stage_name":"detection_layer","events_processed":662,"events_dropped":0,"avg_latency_ms":17.822138797140187,"throughput_eps":0,"last_update":"2026-03-22T11:33:52.479294891Z"} +2026/03/22 11:33:57 [transform_engine] {"stage_name":"transform_engine","events_processed":663,"events_dropped":0,"avg_latency_ms":6064.444139625312,"throughput_eps":0,"last_update":"2026-03-22T11:33:27.478938774Z"} +2026/03/22 11:33:57 ───────────────────────────────────────────────── +2026/03/22 11:34:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:34:02 [transform_engine] {"stage_name":"transform_engine","events_processed":663,"events_dropped":0,"avg_latency_ms":6064.444139625312,"throughput_eps":0,"last_update":"2026-03-22T11:33:27.478938774Z"} +2026/03/22 11:34:02 [log_collector] {"stage_name":"log_collector","events_processed":31757,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6351.4,"last_update":"2026-03-22T11:33:57.368177448Z"} +2026/03/22 11:34:02 [metric_collector] {"stage_name":"metric_collector","events_processed":19949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3989.8,"last_update":"2026-03-22T11:33:57.368563066Z"} +2026/03/22 11:34:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:33:57.375519572Z"} +2026/03/22 11:34:02 [detection_layer] {"stage_name":"detection_layer","events_processed":662,"events_dropped":0,"avg_latency_ms":17.822138797140187,"throughput_eps":0,"last_update":"2026-03-22T11:33:57.479749815Z"} +2026/03/22 11:34:02 ───────────────────────────────────────────────── +2026/03/22 11:34:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:34:07 [log_collector] {"stage_name":"log_collector","events_processed":31757,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6351.4,"last_update":"2026-03-22T11:34:02.368807926Z"} +2026/03/22 11:34:07 [metric_collector] {"stage_name":"metric_collector","events_processed":19954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3990.8,"last_update":"2026-03-22T11:34:02.369398137Z"} +2026/03/22 11:34:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:34:02.36859094Z"} +2026/03/22 11:34:07 [detection_layer] {"stage_name":"detection_layer","events_processed":662,"events_dropped":0,"avg_latency_ms":17.822138797140187,"throughput_eps":0,"last_update":"2026-03-22T11:34:02.479048153Z"} +2026/03/22 11:34:07 [transform_engine] {"stage_name":"transform_engine","events_processed":663,"events_dropped":0,"avg_latency_ms":6064.444139625312,"throughput_eps":0,"last_update":"2026-03-22T11:33:27.478938774Z"} +2026/03/22 11:34:07 ───────────────────────────────────────────────── +2026/03/22 11:34:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:34:12 [log_collector] {"stage_name":"log_collector","events_processed":31757,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6351.4,"last_update":"2026-03-22T11:34:07.36840765Z"} +2026/03/22 11:34:12 [metric_collector] {"stage_name":"metric_collector","events_processed":19959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3991.8,"last_update":"2026-03-22T11:34:07.368391989Z"} +2026/03/22 11:34:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:34:07.377151941Z"} +2026/03/22 11:34:12 [detection_layer] {"stage_name":"detection_layer","events_processed":662,"events_dropped":0,"avg_latency_ms":17.822138797140187,"throughput_eps":0,"last_update":"2026-03-22T11:34:07.479376491Z"} +2026/03/22 11:34:12 [transform_engine] {"stage_name":"transform_engine","events_processed":663,"events_dropped":0,"avg_latency_ms":6064.444139625312,"throughput_eps":0,"last_update":"2026-03-22T11:33:27.478938774Z"} +2026/03/22 11:34:12 ───────────────────────────────────────────────── +Saved state: 15 clusters, 31758 messages, reason: none +2026/03/22 11:34:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:34:17 [log_collector] {"stage_name":"log_collector","events_processed":31759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6351.8,"last_update":"2026-03-22T11:34:17.368151746Z"} +2026/03/22 11:34:17 [metric_collector] {"stage_name":"metric_collector","events_processed":19964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3992.8,"last_update":"2026-03-22T11:34:12.368256289Z"} +2026/03/22 11:34:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:34:12.376501234Z"} +2026/03/22 11:34:17 [detection_layer] {"stage_name":"detection_layer","events_processed":662,"events_dropped":0,"avg_latency_ms":17.822138797140187,"throughput_eps":0,"last_update":"2026-03-22T11:34:12.479663209Z"} +2026/03/22 11:34:17 [transform_engine] {"stage_name":"transform_engine","events_processed":665,"events_dropped":0,"avg_latency_ms":11153.386096640199,"throughput_eps":0,"last_update":"2026-03-22T11:34:12.929881045Z"} +2026/03/22 11:34:17 ───────────────────────────────────────────────── +2026/03/22 11:34:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:34:22 [log_collector] {"stage_name":"log_collector","events_processed":31759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6351.8,"last_update":"2026-03-22T11:34:17.368151746Z"} +2026/03/22 11:34:22 [metric_collector] {"stage_name":"metric_collector","events_processed":19969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3993.8,"last_update":"2026-03-22T11:34:17.369416429Z"} +2026/03/22 11:34:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7990,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:34:17.377284141Z"} +2026/03/22 11:34:22 [detection_layer] {"stage_name":"detection_layer","events_processed":663,"events_dropped":0,"avg_latency_ms":17.24906743771215,"throughput_eps":0,"last_update":"2026-03-22T11:34:17.479521125Z"} +2026/03/22 11:34:22 [transform_engine] {"stage_name":"transform_engine","events_processed":665,"events_dropped":0,"avg_latency_ms":11153.386096640199,"throughput_eps":0,"last_update":"2026-03-22T11:34:17.47956569Z"} +2026/03/22 11:34:22 ───────────────────────────────────────────────── +2026/03/22 11:34:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:34:27 [log_collector] {"stage_name":"log_collector","events_processed":31759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6351.8,"last_update":"2026-03-22T11:34:22.368515738Z"} +2026/03/22 11:34:27 [metric_collector] {"stage_name":"metric_collector","events_processed":19974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3994.8,"last_update":"2026-03-22T11:34:22.368479239Z"} +2026/03/22 11:34:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7992,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:34:22.37751555Z"} +2026/03/22 11:34:27 [detection_layer] {"stage_name":"detection_layer","events_processed":663,"events_dropped":0,"avg_latency_ms":17.24906743771215,"throughput_eps":0,"last_update":"2026-03-22T11:34:22.479734989Z"} +2026/03/22 11:34:27 [transform_engine] {"stage_name":"transform_engine","events_processed":665,"events_dropped":0,"avg_latency_ms":11153.386096640199,"throughput_eps":0,"last_update":"2026-03-22T11:34:22.479715001Z"} +2026/03/22 11:34:27 ───────────────────────────────────────────────── +2026/03/22 11:34:27 [ANOMALY] time=2026-03-22T11:34:27Z score=0.8751 method=SEAD details=MAD!:w=0.62,s=0.87 RRCF-fast!:w=0.10,s=0.98 RRCF-mid!:w=0.09,s=0.99 RRCF-slow!:w=0.07,s=0.98 COPOD!:w=0.11,s=0.64 +2026/03/22 11:34:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:34:32 [log_collector] {"stage_name":"log_collector","events_processed":31759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6351.8,"last_update":"2026-03-22T11:34:27.367952724Z"} +2026/03/22 11:34:32 [metric_collector] {"stage_name":"metric_collector","events_processed":19979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3995.8,"last_update":"2026-03-22T11:34:27.36819062Z"} +2026/03/22 11:34:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:34:27.376179364Z"} +2026/03/22 11:34:32 [detection_layer] {"stage_name":"detection_layer","events_processed":663,"events_dropped":0,"avg_latency_ms":17.24906743771215,"throughput_eps":0,"last_update":"2026-03-22T11:34:27.479446219Z"} +2026/03/22 11:34:32 [transform_engine] {"stage_name":"transform_engine","events_processed":666,"events_dropped":0,"avg_latency_ms":8946.61416611216,"throughput_eps":0,"last_update":"2026-03-22T11:34:27.598995818Z"} +2026/03/22 11:34:32 ───────────────────────────────────────────────── +2026/03/22 11:34:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:34:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7996,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:34:32.377840129Z"} +2026/03/22 11:34:37 [detection_layer] {"stage_name":"detection_layer","events_processed":664,"events_dropped":0,"avg_latency_ms":16.786987750169722,"throughput_eps":0,"last_update":"2026-03-22T11:34:32.479980065Z"} +2026/03/22 11:34:37 [transform_engine] {"stage_name":"transform_engine","events_processed":666,"events_dropped":0,"avg_latency_ms":8946.61416611216,"throughput_eps":0,"last_update":"2026-03-22T11:34:32.478815054Z"} +2026/03/22 11:34:37 [log_collector] {"stage_name":"log_collector","events_processed":31759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6351.8,"last_update":"2026-03-22T11:34:32.367977305Z"} +2026/03/22 11:34:37 [metric_collector] {"stage_name":"metric_collector","events_processed":19984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3996.8,"last_update":"2026-03-22T11:34:32.368328878Z"} +2026/03/22 11:34:37 ───────────────────────────────────────────────── +2026/03/22 11:34:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:34:42 [detection_layer] {"stage_name":"detection_layer","events_processed":664,"events_dropped":0,"avg_latency_ms":16.786987750169722,"throughput_eps":0,"last_update":"2026-03-22T11:34:37.47919815Z"} +2026/03/22 11:34:42 [transform_engine] {"stage_name":"transform_engine","events_processed":666,"events_dropped":0,"avg_latency_ms":8946.61416611216,"throughput_eps":0,"last_update":"2026-03-22T11:34:37.479144177Z"} +2026/03/22 11:34:42 [log_collector] {"stage_name":"log_collector","events_processed":31759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6351.8,"last_update":"2026-03-22T11:34:37.368468989Z"} +2026/03/22 11:34:42 [metric_collector] {"stage_name":"metric_collector","events_processed":19989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3997.8,"last_update":"2026-03-22T11:34:37.368962024Z"} +2026/03/22 11:34:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":7998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:34:37.377906278Z"} +2026/03/22 11:34:42 ───────────────────────────────────────────────── +2026/03/22 11:34:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:34:47 [log_collector] {"stage_name":"log_collector","events_processed":31759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6351.8,"last_update":"2026-03-22T11:34:47.368304135Z"} +2026/03/22 11:34:47 [metric_collector] {"stage_name":"metric_collector","events_processed":19994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3998.8,"last_update":"2026-03-22T11:34:42.368880268Z"} +2026/03/22 11:34:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:34:42.378610517Z"} +2026/03/22 11:34:47 [detection_layer] {"stage_name":"detection_layer","events_processed":664,"events_dropped":0,"avg_latency_ms":16.786987750169722,"throughput_eps":0,"last_update":"2026-03-22T11:34:42.479876911Z"} +2026/03/22 11:34:47 [transform_engine] {"stage_name":"transform_engine","events_processed":666,"events_dropped":0,"avg_latency_ms":8946.61416611216,"throughput_eps":0,"last_update":"2026-03-22T11:34:42.479984767Z"} +2026/03/22 11:34:47 ───────────────────────────────────────────────── +2026/03/22 11:34:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:34:52 [log_collector] {"stage_name":"log_collector","events_processed":31759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6351.8,"last_update":"2026-03-22T11:34:47.368304135Z"} +2026/03/22 11:34:52 [metric_collector] {"stage_name":"metric_collector","events_processed":19999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3999.8,"last_update":"2026-03-22T11:34:47.36868274Z"} +2026/03/22 11:34:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:34:47.376770303Z"} +2026/03/22 11:34:52 [detection_layer] {"stage_name":"detection_layer","events_processed":664,"events_dropped":0,"avg_latency_ms":16.786987750169722,"throughput_eps":0,"last_update":"2026-03-22T11:34:47.478983691Z"} +2026/03/22 11:34:52 [transform_engine] {"stage_name":"transform_engine","events_processed":666,"events_dropped":0,"avg_latency_ms":8946.61416611216,"throughput_eps":0,"last_update":"2026-03-22T11:34:47.479014439Z"} +2026/03/22 11:34:52 ───────────────────────────────────────────────── +2026/03/22 11:34:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:34:57 [transform_engine] {"stage_name":"transform_engine","events_processed":666,"events_dropped":0,"avg_latency_ms":8946.61416611216,"throughput_eps":0,"last_update":"2026-03-22T11:34:52.479200776Z"} +2026/03/22 11:34:57 [log_collector] {"stage_name":"log_collector","events_processed":31759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6351.8,"last_update":"2026-03-22T11:34:52.368453842Z"} +2026/03/22 11:34:57 [metric_collector] {"stage_name":"metric_collector","events_processed":20004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4000.8,"last_update":"2026-03-22T11:34:52.368850963Z"} +2026/03/22 11:34:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:34:52.377952399Z"} +2026/03/22 11:34:57 [detection_layer] {"stage_name":"detection_layer","events_processed":664,"events_dropped":0,"avg_latency_ms":16.786987750169722,"throughput_eps":0,"last_update":"2026-03-22T11:34:52.47916119Z"} +2026/03/22 11:34:57 ───────────────────────────────────────────────── +2026/03/22 11:35:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:35:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8006,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:34:57.378525306Z"} +2026/03/22 11:35:02 [detection_layer] {"stage_name":"detection_layer","events_processed":664,"events_dropped":0,"avg_latency_ms":16.786987750169722,"throughput_eps":0,"last_update":"2026-03-22T11:34:57.479932649Z"} +2026/03/22 11:35:02 [transform_engine] {"stage_name":"transform_engine","events_processed":667,"events_dropped":0,"avg_latency_ms":7172.256943889728,"throughput_eps":0,"last_update":"2026-03-22T11:34:57.554737841Z"} +2026/03/22 11:35:02 [log_collector] {"stage_name":"log_collector","events_processed":31759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6351.8,"last_update":"2026-03-22T11:34:57.368635781Z"} +2026/03/22 11:35:02 [metric_collector] {"stage_name":"metric_collector","events_processed":20009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4001.8,"last_update":"2026-03-22T11:34:57.368894396Z"} +2026/03/22 11:35:02 ───────────────────────────────────────────────── +2026/03/22 11:35:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:35:07 [detection_layer] {"stage_name":"detection_layer","events_processed":665,"events_dropped":0,"avg_latency_ms":17.51988580013578,"throughput_eps":0,"last_update":"2026-03-22T11:35:02.479033775Z"} +2026/03/22 11:35:07 [transform_engine] {"stage_name":"transform_engine","events_processed":667,"events_dropped":0,"avg_latency_ms":7172.256943889728,"throughput_eps":0,"last_update":"2026-03-22T11:35:02.478995601Z"} +2026/03/22 11:35:07 [log_collector] {"stage_name":"log_collector","events_processed":31759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6351.8,"last_update":"2026-03-22T11:35:02.368496713Z"} +2026/03/22 11:35:07 [metric_collector] {"stage_name":"metric_collector","events_processed":20014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4002.8,"last_update":"2026-03-22T11:35:02.36878199Z"} +2026/03/22 11:35:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8008,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:35:02.374791482Z"} +2026/03/22 11:35:07 ───────────────────────────────────────────────── +2026/03/22 11:35:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:35:12 [log_collector] {"stage_name":"log_collector","events_processed":31759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6351.8,"last_update":"2026-03-22T11:35:07.368002785Z"} +2026/03/22 11:35:12 [metric_collector] {"stage_name":"metric_collector","events_processed":20019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4003.8,"last_update":"2026-03-22T11:35:07.368706373Z"} +2026/03/22 11:35:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:35:07.374640591Z"} +2026/03/22 11:35:12 [detection_layer] {"stage_name":"detection_layer","events_processed":665,"events_dropped":0,"avg_latency_ms":17.51988580013578,"throughput_eps":0,"last_update":"2026-03-22T11:35:07.47991444Z"} +2026/03/22 11:35:12 [transform_engine] {"stage_name":"transform_engine","events_processed":667,"events_dropped":0,"avg_latency_ms":7172.256943889728,"throughput_eps":0,"last_update":"2026-03-22T11:35:07.478837697Z"} +2026/03/22 11:35:12 ───────────────────────────────────────────────── +2026/03/22 11:35:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:35:17 [log_collector] {"stage_name":"log_collector","events_processed":31759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6351.8,"last_update":"2026-03-22T11:35:12.36798547Z"} +2026/03/22 11:35:17 [metric_collector] {"stage_name":"metric_collector","events_processed":20024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4004.8,"last_update":"2026-03-22T11:35:12.368466842Z"} +2026/03/22 11:35:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8012,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:35:12.378474002Z"} +2026/03/22 11:35:17 [detection_layer] {"stage_name":"detection_layer","events_processed":665,"events_dropped":0,"avg_latency_ms":17.51988580013578,"throughput_eps":0,"last_update":"2026-03-22T11:35:12.479750724Z"} +2026/03/22 11:35:17 [transform_engine] {"stage_name":"transform_engine","events_processed":667,"events_dropped":0,"avg_latency_ms":7172.256943889728,"throughput_eps":0,"last_update":"2026-03-22T11:35:12.479733671Z"} +2026/03/22 11:35:17 ───────────────────────────────────────────────── +2026/03/22 11:35:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:35:22 [log_collector] {"stage_name":"log_collector","events_processed":31759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6351.8,"last_update":"2026-03-22T11:35:17.367982211Z"} +2026/03/22 11:35:22 [metric_collector] {"stage_name":"metric_collector","events_processed":20034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4006.8,"last_update":"2026-03-22T11:35:22.36823254Z"} +2026/03/22 11:35:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:35:17.377239065Z"} +2026/03/22 11:35:22 [detection_layer] {"stage_name":"detection_layer","events_processed":665,"events_dropped":0,"avg_latency_ms":17.51988580013578,"throughput_eps":0,"last_update":"2026-03-22T11:35:17.479507375Z"} +2026/03/22 11:35:22 [transform_engine] {"stage_name":"transform_engine","events_processed":667,"events_dropped":0,"avg_latency_ms":7172.256943889728,"throughput_eps":0,"last_update":"2026-03-22T11:35:17.479528436Z"} +2026/03/22 11:35:22 ───────────────────────────────────────────────── +2026/03/22 11:35:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:35:27 [log_collector] {"stage_name":"log_collector","events_processed":31759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6351.8,"last_update":"2026-03-22T11:35:27.368370123Z"} +2026/03/22 11:35:27 [metric_collector] {"stage_name":"metric_collector","events_processed":20034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4006.8,"last_update":"2026-03-22T11:35:22.36823254Z"} +2026/03/22 11:35:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:35:22.37787938Z"} +2026/03/22 11:35:27 [detection_layer] {"stage_name":"detection_layer","events_processed":665,"events_dropped":0,"avg_latency_ms":17.51988580013578,"throughput_eps":0,"last_update":"2026-03-22T11:35:22.479495412Z"} +2026/03/22 11:35:27 [transform_engine] {"stage_name":"transform_engine","events_processed":667,"events_dropped":0,"avg_latency_ms":7172.256943889728,"throughput_eps":0,"last_update":"2026-03-22T11:35:22.479506453Z"} +2026/03/22 11:35:27 ───────────────────────────────────────────────── +2026/03/22 11:35:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:35:32 [log_collector] {"stage_name":"log_collector","events_processed":31759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6351.8,"last_update":"2026-03-22T11:35:27.368370123Z"} +2026/03/22 11:35:32 [metric_collector] {"stage_name":"metric_collector","events_processed":20039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4007.8,"last_update":"2026-03-22T11:35:27.368828851Z"} +2026/03/22 11:35:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8018,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:35:27.377530831Z"} +2026/03/22 11:35:32 [detection_layer] {"stage_name":"detection_layer","events_processed":665,"events_dropped":0,"avg_latency_ms":17.51988580013578,"throughput_eps":0,"last_update":"2026-03-22T11:35:27.479772852Z"} +2026/03/22 11:35:32 [transform_engine] {"stage_name":"transform_engine","events_processed":667,"events_dropped":0,"avg_latency_ms":7172.256943889728,"throughput_eps":0,"last_update":"2026-03-22T11:35:22.479506453Z"} +2026/03/22 11:35:32 ───────────────────────────────────────────────── +2026/03/22 11:35:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:35:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8020,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:35:32.3773745Z"} +2026/03/22 11:35:37 [detection_layer] {"stage_name":"detection_layer","events_processed":665,"events_dropped":0,"avg_latency_ms":17.51988580013578,"throughput_eps":0,"last_update":"2026-03-22T11:35:32.47957474Z"} +2026/03/22 11:35:37 [transform_engine] {"stage_name":"transform_engine","events_processed":667,"events_dropped":0,"avg_latency_ms":7172.256943889728,"throughput_eps":0,"last_update":"2026-03-22T11:35:22.479506453Z"} +2026/03/22 11:35:37 [log_collector] {"stage_name":"log_collector","events_processed":31759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6351.8,"last_update":"2026-03-22T11:35:32.368621112Z"} +2026/03/22 11:35:37 [metric_collector] {"stage_name":"metric_collector","events_processed":20044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4008.8,"last_update":"2026-03-22T11:35:32.368852665Z"} +2026/03/22 11:35:37 ───────────────────────────────────────────────── +2026/03/22 11:35:40 [ANOMALY] time=2026-03-22T11:35:40Z score=0.9593 method=SEAD details=MAD!:w=0.62,s=0.98 RRCF-fast!:w=0.10,s=1.00 RRCF-mid!:w=0.09,s=1.00 RRCF-slow!:w=0.07,s=1.00 COPOD!:w=0.11,s=0.78 +2026/03/22 11:35:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:35:42 [log_collector] {"stage_name":"log_collector","events_processed":31759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6351.8,"last_update":"2026-03-22T11:35:42.368458225Z"} +2026/03/22 11:35:42 [metric_collector] {"stage_name":"metric_collector","events_processed":20049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4009.8,"last_update":"2026-03-22T11:35:37.368391059Z"} +2026/03/22 11:35:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8022,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:35:37.375444792Z"} +2026/03/22 11:35:42 [detection_layer] {"stage_name":"detection_layer","events_processed":665,"events_dropped":0,"avg_latency_ms":17.51988580013578,"throughput_eps":0,"last_update":"2026-03-22T11:35:37.479747799Z"} +2026/03/22 11:35:42 [transform_engine] {"stage_name":"transform_engine","events_processed":668,"events_dropped":0,"avg_latency_ms":8272.375269711783,"throughput_eps":0,"last_update":"2026-03-22T11:35:40.152640872Z"} +2026/03/22 11:35:42 ───────────────────────────────────────────────── +Saved state: 15 clusters, 31760 messages, reason: none +2026/03/22 11:35:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:35:47 [log_collector] {"stage_name":"log_collector","events_processed":31759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6351.8,"last_update":"2026-03-22T11:35:42.368458225Z"} +2026/03/22 11:35:47 [metric_collector] {"stage_name":"metric_collector","events_processed":20054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4010.8,"last_update":"2026-03-22T11:35:42.368910042Z"} +2026/03/22 11:35:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:35:42.374501333Z"} +2026/03/22 11:35:47 [detection_layer] {"stage_name":"detection_layer","events_processed":666,"events_dropped":0,"avg_latency_ms":16.034627840108623,"throughput_eps":0,"last_update":"2026-03-22T11:35:42.479845795Z"} +2026/03/22 11:35:47 [transform_engine] {"stage_name":"transform_engine","events_processed":668,"events_dropped":0,"avg_latency_ms":8272.375269711783,"throughput_eps":0,"last_update":"2026-03-22T11:35:42.479768447Z"} +2026/03/22 11:35:47 ───────────────────────────────────────────────── +2026/03/22 11:35:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:35:52 [log_collector] {"stage_name":"log_collector","events_processed":31773,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6354.6,"last_update":"2026-03-22T11:35:52.368373883Z"} +2026/03/22 11:35:52 [metric_collector] {"stage_name":"metric_collector","events_processed":20059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4011.8,"last_update":"2026-03-22T11:35:47.368185854Z"} +2026/03/22 11:35:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:35:47.374489801Z"} +2026/03/22 11:35:52 [detection_layer] {"stage_name":"detection_layer","events_processed":666,"events_dropped":0,"avg_latency_ms":16.034627840108623,"throughput_eps":0,"last_update":"2026-03-22T11:35:47.479370074Z"} +2026/03/22 11:35:52 [transform_engine] {"stage_name":"transform_engine","events_processed":668,"events_dropped":0,"avg_latency_ms":8272.375269711783,"throughput_eps":0,"last_update":"2026-03-22T11:35:47.479296984Z"} +2026/03/22 11:35:52 ───────────────────────────────────────────────── +2026/03/22 11:35:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:35:57 [log_collector] {"stage_name":"log_collector","events_processed":31773,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6354.6,"last_update":"2026-03-22T11:35:52.368373883Z"} +2026/03/22 11:35:57 [metric_collector] {"stage_name":"metric_collector","events_processed":20064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4012.8,"last_update":"2026-03-22T11:35:52.36869565Z"} +2026/03/22 11:35:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:35:52.378031914Z"} +2026/03/22 11:35:57 [detection_layer] {"stage_name":"detection_layer","events_processed":666,"events_dropped":0,"avg_latency_ms":16.034627840108623,"throughput_eps":0,"last_update":"2026-03-22T11:35:52.479201579Z"} +2026/03/22 11:35:57 [transform_engine] {"stage_name":"transform_engine","events_processed":668,"events_dropped":0,"avg_latency_ms":8272.375269711783,"throughput_eps":0,"last_update":"2026-03-22T11:35:52.479286912Z"} +2026/03/22 11:35:57 ───────────────────────────────────────────────── +2026/03/22 11:36:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:36:02 [log_collector] {"stage_name":"log_collector","events_processed":31773,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6354.6,"last_update":"2026-03-22T11:35:57.368661023Z"} +2026/03/22 11:36:02 [metric_collector] {"stage_name":"metric_collector","events_processed":20069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4013.8,"last_update":"2026-03-22T11:35:57.369043417Z"} +2026/03/22 11:36:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:35:57.377986367Z"} +2026/03/22 11:36:02 [detection_layer] {"stage_name":"detection_layer","events_processed":666,"events_dropped":0,"avg_latency_ms":16.034627840108623,"throughput_eps":0,"last_update":"2026-03-22T11:35:57.479249872Z"} +2026/03/22 11:36:02 [transform_engine] {"stage_name":"transform_engine","events_processed":669,"events_dropped":0,"avg_latency_ms":6640.451273569427,"throughput_eps":0,"last_update":"2026-03-22T11:35:57.592048594Z"} +2026/03/22 11:36:02 ───────────────────────────────────────────────── +2026/03/22 11:36:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:36:07 [transform_engine] {"stage_name":"transform_engine","events_processed":669,"events_dropped":0,"avg_latency_ms":6640.451273569427,"throughput_eps":0,"last_update":"2026-03-22T11:36:02.478958516Z"} +2026/03/22 11:36:07 [log_collector] {"stage_name":"log_collector","events_processed":31773,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6354.6,"last_update":"2026-03-22T11:36:02.368244909Z"} +2026/03/22 11:36:07 [metric_collector] {"stage_name":"metric_collector","events_processed":20074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4014.8,"last_update":"2026-03-22T11:36:02.368867792Z"} +2026/03/22 11:36:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:36:02.377707665Z"} +2026/03/22 11:36:07 [detection_layer] {"stage_name":"detection_layer","events_processed":667,"events_dropped":0,"avg_latency_ms":16.7973506720869,"throughput_eps":0,"last_update":"2026-03-22T11:36:02.47899239Z"} +2026/03/22 11:36:07 ───────────────────────────────────────────────── +2026/03/22 11:36:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:36:12 [detection_layer] {"stage_name":"detection_layer","events_processed":667,"events_dropped":0,"avg_latency_ms":16.7973506720869,"throughput_eps":0,"last_update":"2026-03-22T11:36:07.479701111Z"} +2026/03/22 11:36:12 [transform_engine] {"stage_name":"transform_engine","events_processed":669,"events_dropped":0,"avg_latency_ms":6640.451273569427,"throughput_eps":0,"last_update":"2026-03-22T11:36:07.479741518Z"} +2026/03/22 11:36:12 [log_collector] {"stage_name":"log_collector","events_processed":31773,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6354.6,"last_update":"2026-03-22T11:36:07.368285408Z"} +2026/03/22 11:36:12 [metric_collector] {"stage_name":"metric_collector","events_processed":20078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4015.6,"last_update":"2026-03-22T11:36:07.368112647Z"} +2026/03/22 11:36:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:36:07.377361505Z"} +2026/03/22 11:36:12 ───────────────────────────────────────────────── +2026/03/22 11:36:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:36:17 [log_collector] {"stage_name":"log_collector","events_processed":31773,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6354.6,"last_update":"2026-03-22T11:36:12.368817109Z"} +2026/03/22 11:36:17 [metric_collector] {"stage_name":"metric_collector","events_processed":20083,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4016.6,"last_update":"2026-03-22T11:36:12.368607398Z"} +2026/03/22 11:36:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8036,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:36:12.377598982Z"} +2026/03/22 11:36:17 [detection_layer] {"stage_name":"detection_layer","events_processed":667,"events_dropped":0,"avg_latency_ms":16.7973506720869,"throughput_eps":0,"last_update":"2026-03-22T11:36:12.479870056Z"} +2026/03/22 11:36:17 [transform_engine] {"stage_name":"transform_engine","events_processed":669,"events_dropped":0,"avg_latency_ms":6640.451273569427,"throughput_eps":0,"last_update":"2026-03-22T11:36:12.479848715Z"} +2026/03/22 11:36:17 ───────────────────────────────────────────────── +2026/03/22 11:36:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:36:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:36:17.378204245Z"} +2026/03/22 11:36:22 [detection_layer] {"stage_name":"detection_layer","events_processed":667,"events_dropped":0,"avg_latency_ms":16.7973506720869,"throughput_eps":0,"last_update":"2026-03-22T11:36:17.479429615Z"} +2026/03/22 11:36:22 [transform_engine] {"stage_name":"transform_engine","events_processed":669,"events_dropped":0,"avg_latency_ms":6640.451273569427,"throughput_eps":0,"last_update":"2026-03-22T11:36:17.479475423Z"} +2026/03/22 11:36:22 [log_collector] {"stage_name":"log_collector","events_processed":31773,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6354.6,"last_update":"2026-03-22T11:36:17.36858621Z"} +2026/03/22 11:36:22 [metric_collector] {"stage_name":"metric_collector","events_processed":20088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4017.6,"last_update":"2026-03-22T11:36:17.368474676Z"} +2026/03/22 11:36:22 ───────────────────────────────────────────────── +2026/03/22 11:36:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:36:27 [log_collector] {"stage_name":"log_collector","events_processed":31773,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6354.6,"last_update":"2026-03-22T11:36:22.368002096Z"} +2026/03/22 11:36:27 [metric_collector] {"stage_name":"metric_collector","events_processed":20093,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4018.6,"last_update":"2026-03-22T11:36:22.367937221Z"} +2026/03/22 11:36:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:36:22.377722746Z"} +2026/03/22 11:36:27 [detection_layer] {"stage_name":"detection_layer","events_processed":667,"events_dropped":0,"avg_latency_ms":16.7973506720869,"throughput_eps":0,"last_update":"2026-03-22T11:36:22.480019098Z"} +2026/03/22 11:36:27 [transform_engine] {"stage_name":"transform_engine","events_processed":669,"events_dropped":0,"avg_latency_ms":6640.451273569427,"throughput_eps":0,"last_update":"2026-03-22T11:36:22.478865689Z"} +2026/03/22 11:36:27 ───────────────────────────────────────────────── +2026/03/22 11:36:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:36:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:36:27.376909175Z"} +2026/03/22 11:36:32 [detection_layer] {"stage_name":"detection_layer","events_processed":667,"events_dropped":0,"avg_latency_ms":16.7973506720869,"throughput_eps":0,"last_update":"2026-03-22T11:36:27.479187903Z"} +2026/03/22 11:36:32 [transform_engine] {"stage_name":"transform_engine","events_processed":670,"events_dropped":0,"avg_latency_ms":5333.954814655543,"throughput_eps":0,"last_update":"2026-03-22T11:36:27.587191488Z"} +2026/03/22 11:36:32 [log_collector] {"stage_name":"log_collector","events_processed":31773,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6354.6,"last_update":"2026-03-22T11:36:32.367964929Z"} +2026/03/22 11:36:32 [metric_collector] {"stage_name":"metric_collector","events_processed":20098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4019.6,"last_update":"2026-03-22T11:36:27.367918984Z"} +2026/03/22 11:36:32 ───────────────────────────────────────────────── +2026/03/22 11:36:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:36:37 [log_collector] {"stage_name":"log_collector","events_processed":31773,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6354.6,"last_update":"2026-03-22T11:36:37.368039188Z"} +2026/03/22 11:36:37 [metric_collector] {"stage_name":"metric_collector","events_processed":20104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4020.8,"last_update":"2026-03-22T11:36:32.368547043Z"} +2026/03/22 11:36:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:36:32.378161021Z"} +2026/03/22 11:36:37 [detection_layer] {"stage_name":"detection_layer","events_processed":668,"events_dropped":0,"avg_latency_ms":18.12324393766952,"throughput_eps":0,"last_update":"2026-03-22T11:36:32.478998037Z"} +2026/03/22 11:36:37 [transform_engine] {"stage_name":"transform_engine","events_processed":670,"events_dropped":0,"avg_latency_ms":5333.954814655543,"throughput_eps":0,"last_update":"2026-03-22T11:36:32.479020009Z"} +2026/03/22 11:36:37 ───────────────────────────────────────────────── +2026/03/22 11:36:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:36:42 [log_collector] {"stage_name":"log_collector","events_processed":31773,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6354.6,"last_update":"2026-03-22T11:36:37.368039188Z"} +2026/03/22 11:36:42 [metric_collector] {"stage_name":"metric_collector","events_processed":20109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4021.8,"last_update":"2026-03-22T11:36:37.368557481Z"} +2026/03/22 11:36:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:36:37.377063996Z"} +2026/03/22 11:36:42 [detection_layer] {"stage_name":"detection_layer","events_processed":668,"events_dropped":0,"avg_latency_ms":18.12324393766952,"throughput_eps":0,"last_update":"2026-03-22T11:36:37.479343626Z"} +2026/03/22 11:36:42 [transform_engine] {"stage_name":"transform_engine","events_processed":670,"events_dropped":0,"avg_latency_ms":5333.954814655543,"throughput_eps":0,"last_update":"2026-03-22T11:36:37.479393992Z"} +2026/03/22 11:36:42 ───────────────────────────────────────────────── +2026/03/22 11:36:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:36:47 [log_collector] {"stage_name":"log_collector","events_processed":31773,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6354.6,"last_update":"2026-03-22T11:36:47.367984086Z"} +2026/03/22 11:36:47 [metric_collector] {"stage_name":"metric_collector","events_processed":20114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4022.8,"last_update":"2026-03-22T11:36:42.368434756Z"} +2026/03/22 11:36:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8048,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:36:42.376774542Z"} +2026/03/22 11:36:47 [detection_layer] {"stage_name":"detection_layer","events_processed":668,"events_dropped":0,"avg_latency_ms":18.12324393766952,"throughput_eps":0,"last_update":"2026-03-22T11:36:42.478987634Z"} +2026/03/22 11:36:47 [transform_engine] {"stage_name":"transform_engine","events_processed":670,"events_dropped":0,"avg_latency_ms":5333.954814655543,"throughput_eps":0,"last_update":"2026-03-22T11:36:42.479003454Z"} +2026/03/22 11:36:47 ───────────────────────────────────────────────── +2026/03/22 11:36:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:36:52 [transform_engine] {"stage_name":"transform_engine","events_processed":670,"events_dropped":0,"avg_latency_ms":5333.954814655543,"throughput_eps":0,"last_update":"2026-03-22T11:36:47.479854698Z"} +2026/03/22 11:36:52 [log_collector] {"stage_name":"log_collector","events_processed":31773,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6354.6,"last_update":"2026-03-22T11:36:47.367984086Z"} +2026/03/22 11:36:52 [metric_collector] {"stage_name":"metric_collector","events_processed":20119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4023.8,"last_update":"2026-03-22T11:36:47.368484294Z"} +2026/03/22 11:36:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8050,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:36:47.377540692Z"} +2026/03/22 11:36:52 [detection_layer] {"stage_name":"detection_layer","events_processed":668,"events_dropped":0,"avg_latency_ms":18.12324393766952,"throughput_eps":0,"last_update":"2026-03-22T11:36:47.479874205Z"} +2026/03/22 11:36:52 ───────────────────────────────────────────────── +2026/03/22 11:36:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:36:57 [metric_collector] {"stage_name":"metric_collector","events_processed":20124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4024.8,"last_update":"2026-03-22T11:36:52.369039871Z"} +2026/03/22 11:36:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:36:52.374932961Z"} +2026/03/22 11:36:57 [detection_layer] {"stage_name":"detection_layer","events_processed":668,"events_dropped":0,"avg_latency_ms":18.12324393766952,"throughput_eps":0,"last_update":"2026-03-22T11:36:52.47917059Z"} +2026/03/22 11:36:57 [transform_engine] {"stage_name":"transform_engine","events_processed":670,"events_dropped":0,"avg_latency_ms":5333.954814655543,"throughput_eps":0,"last_update":"2026-03-22T11:36:52.479183075Z"} +2026/03/22 11:36:57 [log_collector] {"stage_name":"log_collector","events_processed":31773,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6354.6,"last_update":"2026-03-22T11:36:52.368721742Z"} +2026/03/22 11:36:57 ───────────────────────────────────────────────── +2026/03/22 11:37:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:37:02 [metric_collector] {"stage_name":"metric_collector","events_processed":20129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4025.8,"last_update":"2026-03-22T11:36:57.368537955Z"} +2026/03/22 11:37:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:36:57.37741506Z"} +2026/03/22 11:37:02 [detection_layer] {"stage_name":"detection_layer","events_processed":668,"events_dropped":0,"avg_latency_ms":18.12324393766952,"throughput_eps":0,"last_update":"2026-03-22T11:36:57.479787206Z"} +2026/03/22 11:37:02 [transform_engine] {"stage_name":"transform_engine","events_processed":670,"events_dropped":0,"avg_latency_ms":5333.954814655543,"throughput_eps":0,"last_update":"2026-03-22T11:36:57.479804599Z"} +2026/03/22 11:37:02 [log_collector] {"stage_name":"log_collector","events_processed":31773,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6354.6,"last_update":"2026-03-22T11:36:57.367967592Z"} +2026/03/22 11:37:02 ───────────────────────────────────────────────── +2026/03/22 11:37:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:37:07 [metric_collector] {"stage_name":"metric_collector","events_processed":20134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4026.8,"last_update":"2026-03-22T11:37:02.368484048Z"} +2026/03/22 11:37:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8056,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:37:02.376068165Z"} +2026/03/22 11:37:07 [detection_layer] {"stage_name":"detection_layer","events_processed":668,"events_dropped":0,"avg_latency_ms":18.12324393766952,"throughput_eps":0,"last_update":"2026-03-22T11:37:02.479280331Z"} +2026/03/22 11:37:07 [transform_engine] {"stage_name":"transform_engine","events_processed":670,"events_dropped":0,"avg_latency_ms":5333.954814655543,"throughput_eps":0,"last_update":"2026-03-22T11:36:57.479804599Z"} +2026/03/22 11:37:07 [log_collector] {"stage_name":"log_collector","events_processed":31773,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6354.6,"last_update":"2026-03-22T11:37:02.367971215Z"} +2026/03/22 11:37:07 ───────────────────────────────────────────────── +Saved state: 15 clusters, 31774 messages, reason: none +2026/03/22 11:37:11 [ANOMALY] time=2026-03-22T11:37:11Z score=0.8908 method=SEAD details=MAD!:w=0.63,s=0.92 RRCF-fast!:w=0.10,s=0.93 RRCF-mid!:w=0.08,s=0.95 RRCF-slow!:w=0.07,s=0.96 COPOD!:w=0.11,s=0.60 +2026/03/22 11:37:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:37:12 [log_collector] {"stage_name":"log_collector","events_processed":31773,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6354.6,"last_update":"2026-03-22T11:37:07.368039243Z"} +2026/03/22 11:37:12 [metric_collector] {"stage_name":"metric_collector","events_processed":20139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4027.8,"last_update":"2026-03-22T11:37:07.36828792Z"} +2026/03/22 11:37:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:37:07.377284894Z"} +2026/03/22 11:37:12 [detection_layer] {"stage_name":"detection_layer","events_processed":668,"events_dropped":0,"avg_latency_ms":18.12324393766952,"throughput_eps":0,"last_update":"2026-03-22T11:37:07.479522942Z"} +2026/03/22 11:37:12 [transform_engine] {"stage_name":"transform_engine","events_processed":671,"events_dropped":0,"avg_latency_ms":7059.272238124435,"throughput_eps":0,"last_update":"2026-03-22T11:37:11.440449407Z"} +2026/03/22 11:37:12 ───────────────────────────────────────────────── +2026/03/22 11:37:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:37:17 [log_collector] {"stage_name":"log_collector","events_processed":31778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6355.6,"last_update":"2026-03-22T11:37:12.369077361Z"} +2026/03/22 11:37:17 [metric_collector] {"stage_name":"metric_collector","events_processed":20144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4028.8,"last_update":"2026-03-22T11:37:12.369000404Z"} +2026/03/22 11:37:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:37:12.383440465Z"} +2026/03/22 11:37:17 [detection_layer] {"stage_name":"detection_layer","events_processed":669,"events_dropped":0,"avg_latency_ms":17.07068835013562,"throughput_eps":0,"last_update":"2026-03-22T11:37:12.479629636Z"} +2026/03/22 11:37:17 [transform_engine] {"stage_name":"transform_engine","events_processed":671,"events_dropped":0,"avg_latency_ms":7059.272238124435,"throughput_eps":0,"last_update":"2026-03-22T11:37:12.479644545Z"} +2026/03/22 11:37:17 ───────────────────────────────────────────────── +2026/03/22 11:37:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:37:22 [log_collector] {"stage_name":"log_collector","events_processed":31778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6355.6,"last_update":"2026-03-22T11:37:17.368555403Z"} +2026/03/22 11:37:22 [metric_collector] {"stage_name":"metric_collector","events_processed":20149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4029.8,"last_update":"2026-03-22T11:37:17.368976961Z"} +2026/03/22 11:37:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8062,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:37:17.375985476Z"} +2026/03/22 11:37:22 [detection_layer] {"stage_name":"detection_layer","events_processed":669,"events_dropped":0,"avg_latency_ms":17.07068835013562,"throughput_eps":0,"last_update":"2026-03-22T11:37:17.479346436Z"} +2026/03/22 11:37:22 [transform_engine] {"stage_name":"transform_engine","events_processed":671,"events_dropped":0,"avg_latency_ms":7059.272238124435,"throughput_eps":0,"last_update":"2026-03-22T11:37:17.479311991Z"} +2026/03/22 11:37:22 ───────────────────────────────────────────────── +2026/03/22 11:37:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:37:27 [metric_collector] {"stage_name":"metric_collector","events_processed":20154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4030.8,"last_update":"2026-03-22T11:37:22.368950474Z"} +2026/03/22 11:37:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:37:22.374924748Z"} +2026/03/22 11:37:27 [detection_layer] {"stage_name":"detection_layer","events_processed":669,"events_dropped":0,"avg_latency_ms":17.07068835013562,"throughput_eps":0,"last_update":"2026-03-22T11:37:22.479113353Z"} +2026/03/22 11:37:27 [transform_engine] {"stage_name":"transform_engine","events_processed":671,"events_dropped":0,"avg_latency_ms":7059.272238124435,"throughput_eps":0,"last_update":"2026-03-22T11:37:22.479098344Z"} +2026/03/22 11:37:27 [log_collector] {"stage_name":"log_collector","events_processed":31778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6355.6,"last_update":"2026-03-22T11:37:22.368683151Z"} +2026/03/22 11:37:27 ───────────────────────────────────────────────── +2026/03/22 11:37:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:37:32 [log_collector] {"stage_name":"log_collector","events_processed":31778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6355.6,"last_update":"2026-03-22T11:37:32.368372081Z"} +2026/03/22 11:37:32 [metric_collector] {"stage_name":"metric_collector","events_processed":20159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4031.8,"last_update":"2026-03-22T11:37:27.368670954Z"} +2026/03/22 11:37:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:37:27.374493578Z"} +2026/03/22 11:37:32 [detection_layer] {"stage_name":"detection_layer","events_processed":669,"events_dropped":0,"avg_latency_ms":17.07068835013562,"throughput_eps":0,"last_update":"2026-03-22T11:37:27.479717295Z"} +2026/03/22 11:37:32 [transform_engine] {"stage_name":"transform_engine","events_processed":672,"events_dropped":0,"avg_latency_ms":6027.508936899549,"throughput_eps":0,"last_update":"2026-03-22T11:37:29.380202925Z"} +2026/03/22 11:37:32 ───────────────────────────────────────────────── +2026/03/22 11:37:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:37:37 [log_collector] {"stage_name":"log_collector","events_processed":31778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6355.6,"last_update":"2026-03-22T11:37:32.368372081Z"} +2026/03/22 11:37:37 [metric_collector] {"stage_name":"metric_collector","events_processed":20164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4032.8,"last_update":"2026-03-22T11:37:32.368654863Z"} +2026/03/22 11:37:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:37:32.376247858Z"} +2026/03/22 11:37:37 [detection_layer] {"stage_name":"detection_layer","events_processed":670,"events_dropped":0,"avg_latency_ms":16.110471480108494,"throughput_eps":0,"last_update":"2026-03-22T11:37:32.479535466Z"} +2026/03/22 11:37:37 [transform_engine] {"stage_name":"transform_engine","events_processed":672,"events_dropped":0,"avg_latency_ms":6027.508936899549,"throughput_eps":0,"last_update":"2026-03-22T11:37:32.479499428Z"} +2026/03/22 11:37:37 ───────────────────────────────────────────────── +2026/03/22 11:37:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:37:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:37:42.368678281Z"} +2026/03/22 11:37:42 [detection_layer] {"stage_name":"detection_layer","events_processed":670,"events_dropped":0,"avg_latency_ms":16.110471480108494,"throughput_eps":0,"last_update":"2026-03-22T11:37:37.479814391Z"} +2026/03/22 11:37:42 [transform_engine] {"stage_name":"transform_engine","events_processed":672,"events_dropped":0,"avg_latency_ms":6027.508936899549,"throughput_eps":0,"last_update":"2026-03-22T11:37:37.479832115Z"} +2026/03/22 11:37:42 [log_collector] {"stage_name":"log_collector","events_processed":31778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6355.6,"last_update":"2026-03-22T11:37:42.369233534Z"} +2026/03/22 11:37:42 [metric_collector] {"stage_name":"metric_collector","events_processed":20174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4034.8,"last_update":"2026-03-22T11:37:42.369227753Z"} +2026/03/22 11:37:42 ───────────────────────────────────────────────── +2026/03/22 11:37:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:37:47 [detection_layer] {"stage_name":"detection_layer","events_processed":670,"events_dropped":0,"avg_latency_ms":16.110471480108494,"throughput_eps":0,"last_update":"2026-03-22T11:37:42.479623618Z"} +2026/03/22 11:37:47 [transform_engine] {"stage_name":"transform_engine","events_processed":672,"events_dropped":0,"avg_latency_ms":6027.508936899549,"throughput_eps":0,"last_update":"2026-03-22T11:37:42.479591697Z"} +2026/03/22 11:37:47 [log_collector] {"stage_name":"log_collector","events_processed":31778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6355.6,"last_update":"2026-03-22T11:37:47.369114412Z"} +2026/03/22 11:37:47 [metric_collector] {"stage_name":"metric_collector","events_processed":20179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4035.8,"last_update":"2026-03-22T11:37:47.369109993Z"} +2026/03/22 11:37:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8072,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:37:47.368760464Z"} +2026/03/22 11:37:47 ───────────────────────────────────────────────── +2026/03/22 11:37:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:37:52 [log_collector] {"stage_name":"log_collector","events_processed":31778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6355.6,"last_update":"2026-03-22T11:37:52.368036103Z"} +2026/03/22 11:37:52 [metric_collector] {"stage_name":"metric_collector","events_processed":20184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4036.8,"last_update":"2026-03-22T11:37:52.368304287Z"} +2026/03/22 11:37:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:37:52.368026585Z"} +2026/03/22 11:37:52 [detection_layer] {"stage_name":"detection_layer","events_processed":670,"events_dropped":0,"avg_latency_ms":16.110471480108494,"throughput_eps":0,"last_update":"2026-03-22T11:37:47.479839026Z"} +2026/03/22 11:37:52 [transform_engine] {"stage_name":"transform_engine","events_processed":672,"events_dropped":0,"avg_latency_ms":6027.508936899549,"throughput_eps":0,"last_update":"2026-03-22T11:37:47.479870777Z"} +2026/03/22 11:37:52 ───────────────────────────────────────────────── +2026/03/22 11:37:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:37:57 [metric_collector] {"stage_name":"metric_collector","events_processed":20184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4036.8,"last_update":"2026-03-22T11:37:52.368304287Z"} +2026/03/22 11:37:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:37:52.368026585Z"} +2026/03/22 11:37:57 [detection_layer] {"stage_name":"detection_layer","events_processed":670,"events_dropped":0,"avg_latency_ms":16.110471480108494,"throughput_eps":0,"last_update":"2026-03-22T11:37:52.479535712Z"} +2026/03/22 11:37:57 [transform_engine] {"stage_name":"transform_engine","events_processed":672,"events_dropped":0,"avg_latency_ms":6027.508936899549,"throughput_eps":0,"last_update":"2026-03-22T11:37:52.479588954Z"} +2026/03/22 11:37:57 [log_collector] {"stage_name":"log_collector","events_processed":31789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6357.8,"last_update":"2026-03-22T11:37:57.368656414Z"} +2026/03/22 11:37:57 ───────────────────────────────────────────────── +2026/03/22 11:38:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:38:02 [log_collector] {"stage_name":"log_collector","events_processed":31789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6357.8,"last_update":"2026-03-22T11:37:57.368656414Z"} +2026/03/22 11:38:02 [metric_collector] {"stage_name":"metric_collector","events_processed":20189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4037.8,"last_update":"2026-03-22T11:37:57.369342798Z"} +2026/03/22 11:38:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:37:57.376628795Z"} +2026/03/22 11:38:02 [detection_layer] {"stage_name":"detection_layer","events_processed":670,"events_dropped":0,"avg_latency_ms":16.110471480108494,"throughput_eps":0,"last_update":"2026-03-22T11:37:57.478956955Z"} +2026/03/22 11:38:02 [transform_engine] {"stage_name":"transform_engine","events_processed":673,"events_dropped":0,"avg_latency_ms":4884.915595119639,"throughput_eps":0,"last_update":"2026-03-22T11:37:57.793361098Z"} +2026/03/22 11:38:02 ───────────────────────────────────────────────── +2026/03/22 11:38:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:38:07 [log_collector] {"stage_name":"log_collector","events_processed":32030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6406,"last_update":"2026-03-22T11:38:02.368103156Z"} +2026/03/22 11:38:07 [metric_collector] {"stage_name":"metric_collector","events_processed":20194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4038.8,"last_update":"2026-03-22T11:38:02.368391138Z"} +2026/03/22 11:38:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:38:02.376432602Z"} +2026/03/22 11:38:07 [detection_layer] {"stage_name":"detection_layer","events_processed":671,"events_dropped":0,"avg_latency_ms":15.664410984086796,"throughput_eps":0,"last_update":"2026-03-22T11:38:02.47989766Z"} +2026/03/22 11:38:07 [transform_engine] {"stage_name":"transform_engine","events_processed":673,"events_dropped":0,"avg_latency_ms":4884.915595119639,"throughput_eps":0,"last_update":"2026-03-22T11:38:02.478880922Z"} +2026/03/22 11:38:07 ───────────────────────────────────────────────── +2026/03/22 11:38:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:38:12 [transform_engine] {"stage_name":"transform_engine","events_processed":673,"events_dropped":0,"avg_latency_ms":4884.915595119639,"throughput_eps":0,"last_update":"2026-03-22T11:38:07.47924733Z"} +2026/03/22 11:38:12 [log_collector] {"stage_name":"log_collector","events_processed":32132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6426.4,"last_update":"2026-03-22T11:38:07.367975317Z"} +2026/03/22 11:38:12 [metric_collector] {"stage_name":"metric_collector","events_processed":20199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4039.8,"last_update":"2026-03-22T11:38:07.368456119Z"} +2026/03/22 11:38:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8082,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:38:07.378073341Z"} +2026/03/22 11:38:12 [detection_layer] {"stage_name":"detection_layer","events_processed":671,"events_dropped":0,"avg_latency_ms":15.664410984086796,"throughput_eps":0,"last_update":"2026-03-22T11:38:07.479303588Z"} +2026/03/22 11:38:12 ───────────────────────────────────────────────── +2026/03/22 11:38:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:38:17 [metric_collector] {"stage_name":"metric_collector","events_processed":20204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4040.8,"last_update":"2026-03-22T11:38:12.368880951Z"} +2026/03/22 11:38:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:38:12.379849692Z"} +2026/03/22 11:38:17 [detection_layer] {"stage_name":"detection_layer","events_processed":671,"events_dropped":0,"avg_latency_ms":15.664410984086796,"throughput_eps":0,"last_update":"2026-03-22T11:38:12.478967452Z"} +2026/03/22 11:38:17 [transform_engine] {"stage_name":"transform_engine","events_processed":673,"events_dropped":0,"avg_latency_ms":4884.915595119639,"throughput_eps":0,"last_update":"2026-03-22T11:38:12.478938186Z"} +2026/03/22 11:38:17 [log_collector] {"stage_name":"log_collector","events_processed":32136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6427.2,"last_update":"2026-03-22T11:38:12.368575275Z"} +2026/03/22 11:38:17 ───────────────────────────────────────────────── +2026/03/22 11:38:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:38:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:38:17.374418299Z"} +2026/03/22 11:38:22 [detection_layer] {"stage_name":"detection_layer","events_processed":671,"events_dropped":0,"avg_latency_ms":15.664410984086796,"throughput_eps":0,"last_update":"2026-03-22T11:38:17.479690768Z"} +2026/03/22 11:38:22 [transform_engine] {"stage_name":"transform_engine","events_processed":673,"events_dropped":0,"avg_latency_ms":4884.915595119639,"throughput_eps":0,"last_update":"2026-03-22T11:38:17.479735374Z"} +2026/03/22 11:38:22 [log_collector] {"stage_name":"log_collector","events_processed":32136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6427.2,"last_update":"2026-03-22T11:38:22.368592653Z"} +2026/03/22 11:38:22 [metric_collector] {"stage_name":"metric_collector","events_processed":20209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4041.8,"last_update":"2026-03-22T11:38:17.368604252Z"} +2026/03/22 11:38:22 ───────────────────────────────────────────────── +2026/03/22 11:38:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:38:27 [log_collector] {"stage_name":"log_collector","events_processed":32136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6427.2,"last_update":"2026-03-22T11:38:27.368631214Z"} +2026/03/22 11:38:27 [metric_collector] {"stage_name":"metric_collector","events_processed":20214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4042.8,"last_update":"2026-03-22T11:38:22.369298936Z"} +2026/03/22 11:38:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:38:22.378037595Z"} +2026/03/22 11:38:27 [detection_layer] {"stage_name":"detection_layer","events_processed":671,"events_dropped":0,"avg_latency_ms":15.664410984086796,"throughput_eps":0,"last_update":"2026-03-22T11:38:22.479456413Z"} +2026/03/22 11:38:27 [transform_engine] {"stage_name":"transform_engine","events_processed":673,"events_dropped":0,"avg_latency_ms":4884.915595119639,"throughput_eps":0,"last_update":"2026-03-22T11:38:22.479245189Z"} +2026/03/22 11:38:27 ───────────────────────────────────────────────── +2026/03/22 11:38:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:38:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:38:27.375725484Z"} +2026/03/22 11:38:32 [detection_layer] {"stage_name":"detection_layer","events_processed":671,"events_dropped":0,"avg_latency_ms":15.664410984086796,"throughput_eps":0,"last_update":"2026-03-22T11:38:27.478994836Z"} +2026/03/22 11:38:32 [transform_engine] {"stage_name":"transform_engine","events_processed":673,"events_dropped":0,"avg_latency_ms":4884.915595119639,"throughput_eps":0,"last_update":"2026-03-22T11:38:22.479245189Z"} +2026/03/22 11:38:32 [log_collector] {"stage_name":"log_collector","events_processed":32136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6427.2,"last_update":"2026-03-22T11:38:32.368085188Z"} +2026/03/22 11:38:32 [metric_collector] {"stage_name":"metric_collector","events_processed":20219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4043.8,"last_update":"2026-03-22T11:38:27.369100463Z"} +2026/03/22 11:38:32 ───────────────────────────────────────────────── +2026/03/22 11:38:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:38:37 [log_collector] {"stage_name":"log_collector","events_processed":32136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6427.2,"last_update":"2026-03-22T11:38:37.367980531Z"} +2026/03/22 11:38:37 [metric_collector] {"stage_name":"metric_collector","events_processed":20224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4044.8,"last_update":"2026-03-22T11:38:32.368635993Z"} +2026/03/22 11:38:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:38:32.377191573Z"} +2026/03/22 11:38:37 [detection_layer] {"stage_name":"detection_layer","events_processed":671,"events_dropped":0,"avg_latency_ms":15.664410984086796,"throughput_eps":0,"last_update":"2026-03-22T11:38:32.47926296Z"} +2026/03/22 11:38:37 [transform_engine] {"stage_name":"transform_engine","events_processed":673,"events_dropped":0,"avg_latency_ms":4884.915595119639,"throughput_eps":0,"last_update":"2026-03-22T11:38:22.479245189Z"} +2026/03/22 11:38:37 ───────────────────────────────────────────────── +2026/03/22 11:38:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:38:42 [log_collector] {"stage_name":"log_collector","events_processed":32136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6427.2,"last_update":"2026-03-22T11:38:37.367980531Z"} +2026/03/22 11:38:42 [metric_collector] {"stage_name":"metric_collector","events_processed":20229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4045.8,"last_update":"2026-03-22T11:38:37.368605338Z"} +2026/03/22 11:38:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:38:37.377745717Z"} +2026/03/22 11:38:42 [detection_layer] {"stage_name":"detection_layer","events_processed":671,"events_dropped":0,"avg_latency_ms":15.664410984086796,"throughput_eps":0,"last_update":"2026-03-22T11:38:37.478961005Z"} +2026/03/22 11:38:42 [transform_engine] {"stage_name":"transform_engine","events_processed":673,"events_dropped":0,"avg_latency_ms":4884.915595119639,"throughput_eps":0,"last_update":"2026-03-22T11:38:22.479245189Z"} +2026/03/22 11:38:42 ───────────────────────────────────────────────── +2026/03/22 11:38:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:38:47 [log_collector] {"stage_name":"log_collector","events_processed":32136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6427.2,"last_update":"2026-03-22T11:38:42.367976491Z"} +2026/03/22 11:38:47 [metric_collector] {"stage_name":"metric_collector","events_processed":20234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4046.8,"last_update":"2026-03-22T11:38:42.368401906Z"} +2026/03/22 11:38:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:38:42.375713371Z"} +2026/03/22 11:38:47 [detection_layer] {"stage_name":"detection_layer","events_processed":671,"events_dropped":0,"avg_latency_ms":15.664410984086796,"throughput_eps":0,"last_update":"2026-03-22T11:38:42.479962018Z"} +2026/03/22 11:38:47 [transform_engine] {"stage_name":"transform_engine","events_processed":673,"events_dropped":0,"avg_latency_ms":4884.915595119639,"throughput_eps":0,"last_update":"2026-03-22T11:38:22.479245189Z"} +2026/03/22 11:38:47 ───────────────────────────────────────────────── +2026/03/22 11:38:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:38:52 [detection_layer] {"stage_name":"detection_layer","events_processed":671,"events_dropped":0,"avg_latency_ms":15.664410984086796,"throughput_eps":0,"last_update":"2026-03-22T11:38:47.479513718Z"} +2026/03/22 11:38:52 [transform_engine] {"stage_name":"transform_engine","events_processed":674,"events_dropped":0,"avg_latency_ms":8688.426541695711,"throughput_eps":0,"last_update":"2026-03-22T11:38:51.381411252Z"} +2026/03/22 11:38:52 [log_collector] {"stage_name":"log_collector","events_processed":32136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6427.2,"last_update":"2026-03-22T11:38:52.368490026Z"} +2026/03/22 11:38:52 [metric_collector] {"stage_name":"metric_collector","events_processed":20239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4047.8,"last_update":"2026-03-22T11:38:47.369308521Z"} +2026/03/22 11:38:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:38:47.378278714Z"} +2026/03/22 11:38:52 ───────────────────────────────────────────────── +2026/03/22 11:38:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:38:57 [log_collector] {"stage_name":"log_collector","events_processed":32136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6427.2,"last_update":"2026-03-22T11:38:52.368490026Z"} +2026/03/22 11:38:57 [metric_collector] {"stage_name":"metric_collector","events_processed":20244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4048.8,"last_update":"2026-03-22T11:38:52.369026584Z"} +2026/03/22 11:38:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:38:52.377427827Z"} +2026/03/22 11:38:57 [detection_layer] {"stage_name":"detection_layer","events_processed":672,"events_dropped":0,"avg_latency_ms":16.337944387269438,"throughput_eps":0,"last_update":"2026-03-22T11:38:52.47968485Z"} +2026/03/22 11:38:57 [transform_engine] {"stage_name":"transform_engine","events_processed":674,"events_dropped":0,"avg_latency_ms":8688.426541695711,"throughput_eps":0,"last_update":"2026-03-22T11:38:52.479655804Z"} +2026/03/22 11:38:57 ───────────────────────────────────────────────── +2026/03/22 11:38:57 [ANOMALY] time=2026-03-22T11:38:57Z score=0.8504 method=SEAD details=MAD!:w=0.63,s=0.93 RRCF-fast!:w=0.10,s=0.90 RRCF-mid!:w=0.08,s=0.94 RRCF-slow!:w=0.07,s=0.95 COPOD!:w=0.11,s=0.22 +2026/03/22 11:39:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:39:02 [detection_layer] {"stage_name":"detection_layer","events_processed":672,"events_dropped":0,"avg_latency_ms":16.337944387269438,"throughput_eps":0,"last_update":"2026-03-22T11:38:57.480449441Z"} +2026/03/22 11:39:02 [transform_engine] {"stage_name":"transform_engine","events_processed":675,"events_dropped":0,"avg_latency_ms":6963.802795556569,"throughput_eps":0,"last_update":"2026-03-22T11:38:57.545138838Z"} +2026/03/22 11:39:02 [log_collector] {"stage_name":"log_collector","events_processed":32136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6427.2,"last_update":"2026-03-22T11:39:02.368015213Z"} +2026/03/22 11:39:02 [metric_collector] {"stage_name":"metric_collector","events_processed":20249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4049.8,"last_update":"2026-03-22T11:38:57.368761Z"} +2026/03/22 11:39:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:38:57.379553515Z"} +2026/03/22 11:39:02 ───────────────────────────────────────────────── +2026/03/22 11:39:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:39:07 [transform_engine] {"stage_name":"transform_engine","events_processed":675,"events_dropped":0,"avg_latency_ms":6963.802795556569,"throughput_eps":0,"last_update":"2026-03-22T11:39:02.479543194Z"} +2026/03/22 11:39:07 [log_collector] {"stage_name":"log_collector","events_processed":32136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6427.2,"last_update":"2026-03-22T11:39:07.368342083Z"} +2026/03/22 11:39:07 [metric_collector] {"stage_name":"metric_collector","events_processed":20254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4050.8,"last_update":"2026-03-22T11:39:02.368762364Z"} +2026/03/22 11:39:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:39:02.37738906Z"} +2026/03/22 11:39:07 [detection_layer] {"stage_name":"detection_layer","events_processed":673,"events_dropped":0,"avg_latency_ms":16.34660550981555,"throughput_eps":0,"last_update":"2026-03-22T11:39:02.479647053Z"} +2026/03/22 11:39:07 ───────────────────────────────────────────────── +2026/03/22 11:39:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:39:12 [log_collector] {"stage_name":"log_collector","events_processed":32136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6427.2,"last_update":"2026-03-22T11:39:12.368233691Z"} +2026/03/22 11:39:12 [metric_collector] {"stage_name":"metric_collector","events_processed":20259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4051.8,"last_update":"2026-03-22T11:39:07.368660672Z"} +2026/03/22 11:39:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:39:07.378454594Z"} +2026/03/22 11:39:12 [detection_layer] {"stage_name":"detection_layer","events_processed":673,"events_dropped":0,"avg_latency_ms":16.34660550981555,"throughput_eps":0,"last_update":"2026-03-22T11:39:07.479623601Z"} +2026/03/22 11:39:12 [transform_engine] {"stage_name":"transform_engine","events_processed":675,"events_dropped":0,"avg_latency_ms":6963.802795556569,"throughput_eps":0,"last_update":"2026-03-22T11:39:07.479728572Z"} +2026/03/22 11:39:12 ───────────────────────────────────────────────── +2026/03/22 11:39:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:39:17 [log_collector] {"stage_name":"log_collector","events_processed":32136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6427.2,"last_update":"2026-03-22T11:39:12.368233691Z"} +2026/03/22 11:39:17 [metric_collector] {"stage_name":"metric_collector","events_processed":20264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4052.8,"last_update":"2026-03-22T11:39:12.368549266Z"} +2026/03/22 11:39:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:39:12.376608975Z"} +2026/03/22 11:39:17 [detection_layer] {"stage_name":"detection_layer","events_processed":673,"events_dropped":0,"avg_latency_ms":16.34660550981555,"throughput_eps":0,"last_update":"2026-03-22T11:39:12.479887844Z"} +2026/03/22 11:39:17 [transform_engine] {"stage_name":"transform_engine","events_processed":675,"events_dropped":0,"avg_latency_ms":6963.802795556569,"throughput_eps":0,"last_update":"2026-03-22T11:39:12.479922671Z"} +2026/03/22 11:39:17 ───────────────────────────────────────────────── +2026/03/22 11:39:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:39:22 [metric_collector] {"stage_name":"metric_collector","events_processed":20269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4053.8,"last_update":"2026-03-22T11:39:17.369465571Z"} +2026/03/22 11:39:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:39:17.377902784Z"} +2026/03/22 11:39:22 [detection_layer] {"stage_name":"detection_layer","events_processed":673,"events_dropped":0,"avg_latency_ms":16.34660550981555,"throughput_eps":0,"last_update":"2026-03-22T11:39:17.479243881Z"} +2026/03/22 11:39:22 [transform_engine] {"stage_name":"transform_engine","events_processed":675,"events_dropped":0,"avg_latency_ms":6963.802795556569,"throughput_eps":0,"last_update":"2026-03-22T11:39:17.479282144Z"} +2026/03/22 11:39:22 [log_collector] {"stage_name":"log_collector","events_processed":32136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6427.2,"last_update":"2026-03-22T11:39:17.368884889Z"} +2026/03/22 11:39:22 ───────────────────────────────────────────────── +2026/03/22 11:39:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:39:27 [log_collector] {"stage_name":"log_collector","events_processed":32136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6427.2,"last_update":"2026-03-22T11:39:22.368755766Z"} +2026/03/22 11:39:27 [metric_collector] {"stage_name":"metric_collector","events_processed":20274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4054.8,"last_update":"2026-03-22T11:39:22.369129432Z"} +2026/03/22 11:39:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:39:22.377571524Z"} +2026/03/22 11:39:27 [detection_layer] {"stage_name":"detection_layer","events_processed":673,"events_dropped":0,"avg_latency_ms":16.34660550981555,"throughput_eps":0,"last_update":"2026-03-22T11:39:22.479800181Z"} +2026/03/22 11:39:27 [transform_engine] {"stage_name":"transform_engine","events_processed":675,"events_dropped":0,"avg_latency_ms":6963.802795556569,"throughput_eps":0,"last_update":"2026-03-22T11:39:22.47976344Z"} +2026/03/22 11:39:27 ───────────────────────────────────────────────── +2026/03/22 11:39:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:39:32 [log_collector] {"stage_name":"log_collector","events_processed":32136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6427.2,"last_update":"2026-03-22T11:39:32.368278142Z"} +2026/03/22 11:39:32 [metric_collector] {"stage_name":"metric_collector","events_processed":20279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4055.8,"last_update":"2026-03-22T11:39:27.368520283Z"} +2026/03/22 11:39:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:39:27.378204063Z"} +2026/03/22 11:39:32 [detection_layer] {"stage_name":"detection_layer","events_processed":673,"events_dropped":0,"avg_latency_ms":16.34660550981555,"throughput_eps":0,"last_update":"2026-03-22T11:39:27.479695708Z"} +2026/03/22 11:39:32 [transform_engine] {"stage_name":"transform_engine","events_processed":676,"events_dropped":0,"avg_latency_ms":5586.351202045256,"throughput_eps":0,"last_update":"2026-03-22T11:39:27.556135284Z"} +2026/03/22 11:39:32 ───────────────────────────────────────────────── +2026/03/22 11:39:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:39:37 [metric_collector] {"stage_name":"metric_collector","events_processed":20284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4056.8,"last_update":"2026-03-22T11:39:32.368939929Z"} +2026/03/22 11:39:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:39:32.379665695Z"} +2026/03/22 11:39:37 [detection_layer] {"stage_name":"detection_layer","events_processed":674,"events_dropped":0,"avg_latency_ms":17.50563340785244,"throughput_eps":0,"last_update":"2026-03-22T11:39:32.479851519Z"} +2026/03/22 11:39:37 [transform_engine] {"stage_name":"transform_engine","events_processed":676,"events_dropped":0,"avg_latency_ms":5586.351202045256,"throughput_eps":0,"last_update":"2026-03-22T11:39:32.479858943Z"} +2026/03/22 11:39:37 [log_collector] {"stage_name":"log_collector","events_processed":32136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6427.2,"last_update":"2026-03-22T11:39:32.368278142Z"} +2026/03/22 11:39:37 ───────────────────────────────────────────────── +2026/03/22 11:39:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:39:42 [log_collector] {"stage_name":"log_collector","events_processed":32136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6427.2,"last_update":"2026-03-22T11:39:37.368313235Z"} +2026/03/22 11:39:42 [metric_collector] {"stage_name":"metric_collector","events_processed":20288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4057.6,"last_update":"2026-03-22T11:39:37.368374653Z"} +2026/03/22 11:39:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:39:37.377548446Z"} +2026/03/22 11:39:42 [detection_layer] {"stage_name":"detection_layer","events_processed":674,"events_dropped":0,"avg_latency_ms":17.50563340785244,"throughput_eps":0,"last_update":"2026-03-22T11:39:37.479799645Z"} +2026/03/22 11:39:42 [transform_engine] {"stage_name":"transform_engine","events_processed":676,"events_dropped":0,"avg_latency_ms":5586.351202045256,"throughput_eps":0,"last_update":"2026-03-22T11:39:37.47981225Z"} +2026/03/22 11:39:42 ───────────────────────────────────────────────── +2026/03/22 11:39:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:39:47 [log_collector] {"stage_name":"log_collector","events_processed":32136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6427.2,"last_update":"2026-03-22T11:39:42.368808142Z"} +2026/03/22 11:39:47 [metric_collector] {"stage_name":"metric_collector","events_processed":20293,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4058.6,"last_update":"2026-03-22T11:39:42.368858108Z"} +2026/03/22 11:39:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:39:42.377040593Z"} +2026/03/22 11:39:47 [detection_layer] {"stage_name":"detection_layer","events_processed":674,"events_dropped":0,"avg_latency_ms":17.50563340785244,"throughput_eps":0,"last_update":"2026-03-22T11:39:42.479247277Z"} +2026/03/22 11:39:47 [transform_engine] {"stage_name":"transform_engine","events_processed":676,"events_dropped":0,"avg_latency_ms":5586.351202045256,"throughput_eps":0,"last_update":"2026-03-22T11:39:42.479257276Z"} +2026/03/22 11:39:47 ───────────────────────────────────────────────── +2026/03/22 11:39:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:39:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8122,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:39:47.37778936Z"} +2026/03/22 11:39:52 [detection_layer] {"stage_name":"detection_layer","events_processed":674,"events_dropped":0,"avg_latency_ms":17.50563340785244,"throughput_eps":0,"last_update":"2026-03-22T11:39:47.479990553Z"} +2026/03/22 11:39:52 [transform_engine] {"stage_name":"transform_engine","events_processed":676,"events_dropped":0,"avg_latency_ms":5586.351202045256,"throughput_eps":0,"last_update":"2026-03-22T11:39:47.478879375Z"} +2026/03/22 11:39:52 [log_collector] {"stage_name":"log_collector","events_processed":32136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6427.2,"last_update":"2026-03-22T11:39:47.368438608Z"} +2026/03/22 11:39:52 [metric_collector] {"stage_name":"metric_collector","events_processed":20303,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4060.6,"last_update":"2026-03-22T11:39:52.367979135Z"} +2026/03/22 11:39:52 ───────────────────────────────────────────────── +2026/03/22 11:39:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:39:57 [log_collector] {"stage_name":"log_collector","events_processed":32136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6427.2,"last_update":"2026-03-22T11:39:52.368125846Z"} +2026/03/22 11:39:57 [metric_collector] {"stage_name":"metric_collector","events_processed":20303,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4060.6,"last_update":"2026-03-22T11:39:52.367979135Z"} +2026/03/22 11:39:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:39:52.378246453Z"} +2026/03/22 11:39:57 [detection_layer] {"stage_name":"detection_layer","events_processed":674,"events_dropped":0,"avg_latency_ms":17.50563340785244,"throughput_eps":0,"last_update":"2026-03-22T11:39:52.479505561Z"} +2026/03/22 11:39:57 [transform_engine] {"stage_name":"transform_engine","events_processed":676,"events_dropped":0,"avg_latency_ms":5586.351202045256,"throughput_eps":0,"last_update":"2026-03-22T11:39:52.479521973Z"} +2026/03/22 11:39:57 ───────────────────────────────────────────────── +2026/03/22 11:40:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:40:02 [log_collector] {"stage_name":"log_collector","events_processed":32136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6427.2,"last_update":"2026-03-22T11:39:57.368308499Z"} +2026/03/22 11:40:02 [metric_collector] {"stage_name":"metric_collector","events_processed":20308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4061.6,"last_update":"2026-03-22T11:39:57.36829836Z"} +2026/03/22 11:40:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8126,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:39:57.377148813Z"} +2026/03/22 11:40:02 [detection_layer] {"stage_name":"detection_layer","events_processed":674,"events_dropped":0,"avg_latency_ms":17.50563340785244,"throughput_eps":0,"last_update":"2026-03-22T11:39:57.479383861Z"} +2026/03/22 11:40:02 [transform_engine] {"stage_name":"transform_engine","events_processed":676,"events_dropped":0,"avg_latency_ms":5586.351202045256,"throughput_eps":0,"last_update":"2026-03-22T11:39:52.479521973Z"} +2026/03/22 11:40:02 ───────────────────────────────────────────────── +2026/03/22 11:40:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:40:07 [log_collector] {"stage_name":"log_collector","events_processed":32136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6427.2,"last_update":"2026-03-22T11:40:02.368085868Z"} +2026/03/22 11:40:07 [metric_collector] {"stage_name":"metric_collector","events_processed":20313,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4062.6,"last_update":"2026-03-22T11:40:02.368004431Z"} +2026/03/22 11:40:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8128,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:40:02.385822734Z"} +2026/03/22 11:40:07 [detection_layer] {"stage_name":"detection_layer","events_processed":674,"events_dropped":0,"avg_latency_ms":17.50563340785244,"throughput_eps":0,"last_update":"2026-03-22T11:40:02.479084874Z"} +2026/03/22 11:40:07 [transform_engine] {"stage_name":"transform_engine","events_processed":676,"events_dropped":0,"avg_latency_ms":5586.351202045256,"throughput_eps":0,"last_update":"2026-03-22T11:39:52.479521973Z"} +2026/03/22 11:40:07 ───────────────────────────────────────────────── +2026/03/22 11:40:10 [ANOMALY] time=2026-03-22T11:40:03Z score=0.7769 method=SEAD details=MAD!:w=0.64,s=0.86 RRCF-fast:w=0.10,s=0.66 RRCF-mid:w=0.08,s=0.86 RRCF-slow:w=0.07,s=0.87 COPOD!:w=0.11,s=0.28 +2026/03/22 11:40:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:40:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8130,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:40:07.374751095Z"} +2026/03/22 11:40:12 [detection_layer] {"stage_name":"detection_layer","events_processed":674,"events_dropped":0,"avg_latency_ms":17.50563340785244,"throughput_eps":0,"last_update":"2026-03-22T11:40:07.480050573Z"} +2026/03/22 11:40:12 [transform_engine] {"stage_name":"transform_engine","events_processed":677,"events_dropped":0,"avg_latency_ms":7140.238031236205,"throughput_eps":0,"last_update":"2026-03-22T11:40:10.835188996Z"} +2026/03/22 11:40:12 [log_collector] {"stage_name":"log_collector","events_processed":32136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6427.2,"last_update":"2026-03-22T11:40:07.368235735Z"} +2026/03/22 11:40:12 [metric_collector] {"stage_name":"metric_collector","events_processed":20319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4063.8,"last_update":"2026-03-22T11:40:07.36868224Z"} +2026/03/22 11:40:12 ───────────────────────────────────────────────── +2026/03/22 11:40:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:40:17 [metric_collector] {"stage_name":"metric_collector","events_processed":20324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4064.8,"last_update":"2026-03-22T11:40:12.369364111Z"} +2026/03/22 11:40:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:40:12.376465714Z"} +2026/03/22 11:40:17 [detection_layer] {"stage_name":"detection_layer","events_processed":675,"events_dropped":0,"avg_latency_ms":18.764540726281954,"throughput_eps":0,"last_update":"2026-03-22T11:40:12.479749291Z"} +2026/03/22 11:40:17 [transform_engine] {"stage_name":"transform_engine","events_processed":677,"events_dropped":0,"avg_latency_ms":7140.238031236205,"throughput_eps":0,"last_update":"2026-03-22T11:40:12.479678526Z"} +2026/03/22 11:40:17 [log_collector] {"stage_name":"log_collector","events_processed":32136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6427.2,"last_update":"2026-03-22T11:40:12.368550122Z"} +2026/03/22 11:40:17 ───────────────────────────────────────────────── +Saved state: 15 clusters, 32137 messages, reason: none +2026/03/22 11:40:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:40:22 [log_collector] {"stage_name":"log_collector","events_processed":32144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6428.8,"last_update":"2026-03-22T11:40:22.368456093Z"} +2026/03/22 11:40:22 [metric_collector] {"stage_name":"metric_collector","events_processed":20329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4065.8,"last_update":"2026-03-22T11:40:17.368987509Z"} +2026/03/22 11:40:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:40:17.379469588Z"} +2026/03/22 11:40:22 [detection_layer] {"stage_name":"detection_layer","events_processed":675,"events_dropped":0,"avg_latency_ms":18.764540726281954,"throughput_eps":0,"last_update":"2026-03-22T11:40:17.479777094Z"} +2026/03/22 11:40:22 [transform_engine] {"stage_name":"transform_engine","events_processed":677,"events_dropped":0,"avg_latency_ms":7140.238031236205,"throughput_eps":0,"last_update":"2026-03-22T11:40:17.479828793Z"} +2026/03/22 11:40:22 ───────────────────────────────────────────────── +2026/03/22 11:40:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:40:27 [metric_collector] {"stage_name":"metric_collector","events_processed":20334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4066.8,"last_update":"2026-03-22T11:40:22.369473302Z"} +2026/03/22 11:40:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:40:22.378628149Z"} +2026/03/22 11:40:27 [detection_layer] {"stage_name":"detection_layer","events_processed":675,"events_dropped":0,"avg_latency_ms":18.764540726281954,"throughput_eps":0,"last_update":"2026-03-22T11:40:22.480025272Z"} +2026/03/22 11:40:27 [transform_engine] {"stage_name":"transform_engine","events_processed":677,"events_dropped":0,"avg_latency_ms":7140.238031236205,"throughput_eps":0,"last_update":"2026-03-22T11:40:22.478898352Z"} +2026/03/22 11:40:27 [log_collector] {"stage_name":"log_collector","events_processed":32144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6428.8,"last_update":"2026-03-22T11:40:22.368456093Z"} +2026/03/22 11:40:27 ───────────────────────────────────────────────── +2026/03/22 11:40:30 [ANOMALY] time=2026-03-22T11:40:30Z score=0.8500 method=SEAD details=MAD!:w=0.63,s=0.84 RRCF-fast!:w=0.10,s=0.90 RRCF-mid!:w=0.08,s=0.89 RRCF-slow:w=0.07,s=0.88 COPOD!:w=0.11,s=0.84 +2026/03/22 11:40:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:40:32 [log_collector] {"stage_name":"log_collector","events_processed":32144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6428.8,"last_update":"2026-03-22T11:40:27.368505585Z"} +2026/03/22 11:40:32 [metric_collector] {"stage_name":"metric_collector","events_processed":20339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4067.8,"last_update":"2026-03-22T11:40:27.368530694Z"} +2026/03/22 11:40:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:40:27.377046927Z"} +2026/03/22 11:40:32 [detection_layer] {"stage_name":"detection_layer","events_processed":675,"events_dropped":0,"avg_latency_ms":18.764540726281954,"throughput_eps":0,"last_update":"2026-03-22T11:40:27.479522205Z"} +2026/03/22 11:40:32 [transform_engine] {"stage_name":"transform_engine","events_processed":678,"events_dropped":0,"avg_latency_ms":6362.859145988964,"throughput_eps":0,"last_update":"2026-03-22T11:40:30.732883304Z"} +2026/03/22 11:40:32 ───────────────────────────────────────────────── +2026/03/22 11:40:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:40:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:40:32.387939296Z"} +2026/03/22 11:40:37 [detection_layer] {"stage_name":"detection_layer","events_processed":676,"events_dropped":0,"avg_latency_ms":18.845214181025565,"throughput_eps":0,"last_update":"2026-03-22T11:40:32.479050646Z"} +2026/03/22 11:40:37 [transform_engine] {"stage_name":"transform_engine","events_processed":678,"events_dropped":0,"avg_latency_ms":6362.859145988964,"throughput_eps":0,"last_update":"2026-03-22T11:40:32.479025878Z"} +2026/03/22 11:40:37 [log_collector] {"stage_name":"log_collector","events_processed":32156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6431.2,"last_update":"2026-03-22T11:40:37.36823622Z"} +2026/03/22 11:40:37 [metric_collector] {"stage_name":"metric_collector","events_processed":20344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4068.8,"last_update":"2026-03-22T11:40:32.368880748Z"} +2026/03/22 11:40:37 ───────────────────────────────────────────────── +2026/03/22 11:40:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:40:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:40:37.375924037Z"} +2026/03/22 11:40:42 [detection_layer] {"stage_name":"detection_layer","events_processed":676,"events_dropped":0,"avg_latency_ms":18.845214181025565,"throughput_eps":0,"last_update":"2026-03-22T11:40:37.479137478Z"} +2026/03/22 11:40:42 [transform_engine] {"stage_name":"transform_engine","events_processed":678,"events_dropped":0,"avg_latency_ms":6362.859145988964,"throughput_eps":0,"last_update":"2026-03-22T11:40:37.479119254Z"} +2026/03/22 11:40:42 [log_collector] {"stage_name":"log_collector","events_processed":32156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6431.2,"last_update":"2026-03-22T11:40:37.36823622Z"} +2026/03/22 11:40:42 [metric_collector] {"stage_name":"metric_collector","events_processed":20349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4069.8,"last_update":"2026-03-22T11:40:37.368771735Z"} +2026/03/22 11:40:42 ───────────────────────────────────────────────── +2026/03/22 11:40:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:40:47 [transform_engine] {"stage_name":"transform_engine","events_processed":678,"events_dropped":0,"avg_latency_ms":6362.859145988964,"throughput_eps":0,"last_update":"2026-03-22T11:40:42.479712501Z"} +2026/03/22 11:40:47 [log_collector] {"stage_name":"log_collector","events_processed":32172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6434.4,"last_update":"2026-03-22T11:40:42.368779192Z"} +2026/03/22 11:40:47 [metric_collector] {"stage_name":"metric_collector","events_processed":20354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4070.8,"last_update":"2026-03-22T11:40:42.369064377Z"} +2026/03/22 11:40:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:40:42.400404792Z"} +2026/03/22 11:40:47 [detection_layer] {"stage_name":"detection_layer","events_processed":676,"events_dropped":0,"avg_latency_ms":18.845214181025565,"throughput_eps":0,"last_update":"2026-03-22T11:40:42.479690739Z"} +2026/03/22 11:40:47 ───────────────────────────────────────────────── +2026/03/22 11:40:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:40:52 [log_collector] {"stage_name":"log_collector","events_processed":32186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6437.2,"last_update":"2026-03-22T11:40:47.367974187Z"} +2026/03/22 11:40:52 [metric_collector] {"stage_name":"metric_collector","events_processed":20359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4071.8,"last_update":"2026-03-22T11:40:47.368310471Z"} +2026/03/22 11:40:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:40:47.374555324Z"} +2026/03/22 11:40:52 [detection_layer] {"stage_name":"detection_layer","events_processed":676,"events_dropped":0,"avg_latency_ms":18.845214181025565,"throughput_eps":0,"last_update":"2026-03-22T11:40:47.479796759Z"} +2026/03/22 11:40:52 [transform_engine] {"stage_name":"transform_engine","events_processed":678,"events_dropped":0,"avg_latency_ms":6362.859145988964,"throughput_eps":0,"last_update":"2026-03-22T11:40:47.479838099Z"} +2026/03/22 11:40:52 ───────────────────────────────────────────────── +2026/03/22 11:40:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:40:57 [transform_engine] {"stage_name":"transform_engine","events_processed":678,"events_dropped":0,"avg_latency_ms":6362.859145988964,"throughput_eps":0,"last_update":"2026-03-22T11:40:52.479819012Z"} +2026/03/22 11:40:57 [log_collector] {"stage_name":"log_collector","events_processed":32197,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6439.4,"last_update":"2026-03-22T11:40:57.368204325Z"} +2026/03/22 11:40:57 [metric_collector] {"stage_name":"metric_collector","events_processed":20364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4072.8,"last_update":"2026-03-22T11:40:52.369207379Z"} +2026/03/22 11:40:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:40:52.37859386Z"} +2026/03/22 11:40:57 [detection_layer] {"stage_name":"detection_layer","events_processed":676,"events_dropped":0,"avg_latency_ms":18.845214181025565,"throughput_eps":0,"last_update":"2026-03-22T11:40:52.479877284Z"} +2026/03/22 11:40:57 ───────────────────────────────────────────────── +2026/03/22 11:41:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:41:02 [metric_collector] {"stage_name":"metric_collector","events_processed":20369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4073.8,"last_update":"2026-03-22T11:40:57.368664886Z"} +2026/03/22 11:41:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:40:57.377694594Z"} +2026/03/22 11:41:02 [detection_layer] {"stage_name":"detection_layer","events_processed":676,"events_dropped":0,"avg_latency_ms":18.845214181025565,"throughput_eps":0,"last_update":"2026-03-22T11:40:57.478951727Z"} +2026/03/22 11:41:02 [transform_engine] {"stage_name":"transform_engine","events_processed":679,"events_dropped":0,"avg_latency_ms":5113.966100791171,"throughput_eps":0,"last_update":"2026-03-22T11:40:57.597308797Z"} +2026/03/22 11:41:02 [log_collector] {"stage_name":"log_collector","events_processed":32197,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6439.4,"last_update":"2026-03-22T11:40:57.368204325Z"} +2026/03/22 11:41:02 ───────────────────────────────────────────────── +2026/03/22 11:41:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:41:07 [transform_engine] {"stage_name":"transform_engine","events_processed":679,"events_dropped":0,"avg_latency_ms":5113.966100791171,"throughput_eps":0,"last_update":"2026-03-22T11:41:02.479498254Z"} +2026/03/22 11:41:07 [log_collector] {"stage_name":"log_collector","events_processed":32197,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6439.4,"last_update":"2026-03-22T11:41:07.367985881Z"} +2026/03/22 11:41:07 [metric_collector] {"stage_name":"metric_collector","events_processed":20374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4074.8,"last_update":"2026-03-22T11:41:02.368404137Z"} +2026/03/22 11:41:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:41:07.368107494Z"} +2026/03/22 11:41:07 [detection_layer] {"stage_name":"detection_layer","events_processed":677,"events_dropped":0,"avg_latency_ms":18.88643594482045,"throughput_eps":0,"last_update":"2026-03-22T11:41:02.479444912Z"} +2026/03/22 11:41:07 ───────────────────────────────────────────────── +2026/03/22 11:41:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:41:12 [log_collector] {"stage_name":"log_collector","events_processed":32197,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6439.4,"last_update":"2026-03-22T11:41:12.368398944Z"} +2026/03/22 11:41:12 [metric_collector] {"stage_name":"metric_collector","events_processed":20379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4075.8,"last_update":"2026-03-22T11:41:07.369005083Z"} +2026/03/22 11:41:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:41:07.368107494Z"} +2026/03/22 11:41:12 [detection_layer] {"stage_name":"detection_layer","events_processed":677,"events_dropped":0,"avg_latency_ms":18.88643594482045,"throughput_eps":0,"last_update":"2026-03-22T11:41:07.479501426Z"} +2026/03/22 11:41:12 [transform_engine] {"stage_name":"transform_engine","events_processed":679,"events_dropped":0,"avg_latency_ms":5113.966100791171,"throughput_eps":0,"last_update":"2026-03-22T11:41:07.479491025Z"} +2026/03/22 11:41:12 ───────────────────────────────────────────────── +2026/03/22 11:41:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:41:17 [detection_layer] {"stage_name":"detection_layer","events_processed":677,"events_dropped":0,"avg_latency_ms":18.88643594482045,"throughput_eps":0,"last_update":"2026-03-22T11:41:12.479987017Z"} +2026/03/22 11:41:17 [transform_engine] {"stage_name":"transform_engine","events_processed":679,"events_dropped":0,"avg_latency_ms":5113.966100791171,"throughput_eps":0,"last_update":"2026-03-22T11:41:12.478834799Z"} +2026/03/22 11:41:17 [log_collector] {"stage_name":"log_collector","events_processed":32197,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6439.4,"last_update":"2026-03-22T11:41:12.368398944Z"} +2026/03/22 11:41:17 [metric_collector] {"stage_name":"metric_collector","events_processed":20384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4076.8,"last_update":"2026-03-22T11:41:12.36914349Z"} +2026/03/22 11:41:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:41:12.377694951Z"} +2026/03/22 11:41:17 ───────────────────────────────────────────────── +2026/03/22 11:41:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:41:22 [detection_layer] {"stage_name":"detection_layer","events_processed":677,"events_dropped":0,"avg_latency_ms":18.88643594482045,"throughput_eps":0,"last_update":"2026-03-22T11:41:17.479191708Z"} +2026/03/22 11:41:22 [transform_engine] {"stage_name":"transform_engine","events_processed":679,"events_dropped":0,"avg_latency_ms":5113.966100791171,"throughput_eps":0,"last_update":"2026-03-22T11:41:17.479311447Z"} +2026/03/22 11:41:22 [log_collector] {"stage_name":"log_collector","events_processed":32197,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6439.4,"last_update":"2026-03-22T11:41:22.368722558Z"} +2026/03/22 11:41:22 [metric_collector] {"stage_name":"metric_collector","events_processed":20389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4077.8,"last_update":"2026-03-22T11:41:17.369286628Z"} +2026/03/22 11:41:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:41:17.377973018Z"} +2026/03/22 11:41:22 ───────────────────────────────────────────────── +2026/03/22 11:41:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:41:27 [transform_engine] {"stage_name":"transform_engine","events_processed":679,"events_dropped":0,"avg_latency_ms":5113.966100791171,"throughput_eps":0,"last_update":"2026-03-22T11:41:22.479082979Z"} +2026/03/22 11:41:27 [log_collector] {"stage_name":"log_collector","events_processed":32197,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6439.4,"last_update":"2026-03-22T11:41:22.368722558Z"} +2026/03/22 11:41:27 [metric_collector] {"stage_name":"metric_collector","events_processed":20394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4078.8,"last_update":"2026-03-22T11:41:22.36932889Z"} +2026/03/22 11:41:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:41:22.378891737Z"} +2026/03/22 11:41:27 [detection_layer] {"stage_name":"detection_layer","events_processed":677,"events_dropped":0,"avg_latency_ms":18.88643594482045,"throughput_eps":0,"last_update":"2026-03-22T11:41:22.479149346Z"} +2026/03/22 11:41:27 ───────────────────────────────────────────────── +2026/03/22 11:41:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:41:32 [detection_layer] {"stage_name":"detection_layer","events_processed":677,"events_dropped":0,"avg_latency_ms":18.88643594482045,"throughput_eps":0,"last_update":"2026-03-22T11:41:27.479524871Z"} +2026/03/22 11:41:32 [transform_engine] {"stage_name":"transform_engine","events_processed":679,"events_dropped":0,"avg_latency_ms":5113.966100791171,"throughput_eps":0,"last_update":"2026-03-22T11:41:22.479082979Z"} +2026/03/22 11:41:32 [log_collector] {"stage_name":"log_collector","events_processed":32197,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6439.4,"last_update":"2026-03-22T11:41:27.368542008Z"} +2026/03/22 11:41:32 [metric_collector] {"stage_name":"metric_collector","events_processed":20399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4079.8,"last_update":"2026-03-22T11:41:27.368718286Z"} +2026/03/22 11:41:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:41:27.377875307Z"} +2026/03/22 11:41:32 ───────────────────────────────────────────────── +2026/03/22 11:41:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:41:37 [log_collector] {"stage_name":"log_collector","events_processed":32197,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6439.4,"last_update":"2026-03-22T11:41:32.370129318Z"} +2026/03/22 11:41:37 [metric_collector] {"stage_name":"metric_collector","events_processed":20404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4080.8,"last_update":"2026-03-22T11:41:32.370483556Z"} +2026/03/22 11:41:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:41:32.378157296Z"} +2026/03/22 11:41:37 [detection_layer] {"stage_name":"detection_layer","events_processed":677,"events_dropped":0,"avg_latency_ms":18.88643594482045,"throughput_eps":0,"last_update":"2026-03-22T11:41:32.479386235Z"} +2026/03/22 11:41:37 [transform_engine] {"stage_name":"transform_engine","events_processed":679,"events_dropped":0,"avg_latency_ms":5113.966100791171,"throughput_eps":0,"last_update":"2026-03-22T11:41:22.479082979Z"} +2026/03/22 11:41:37 ───────────────────────────────────────────────── +2026/03/22 11:41:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:41:42 [log_collector] {"stage_name":"log_collector","events_processed":32197,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6439.4,"last_update":"2026-03-22T11:41:37.368697581Z"} +2026/03/22 11:41:42 [metric_collector] {"stage_name":"metric_collector","events_processed":20409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4081.8,"last_update":"2026-03-22T11:41:37.369097387Z"} +2026/03/22 11:41:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:41:37.378170727Z"} +2026/03/22 11:41:42 [detection_layer] {"stage_name":"detection_layer","events_processed":677,"events_dropped":0,"avg_latency_ms":18.88643594482045,"throughput_eps":0,"last_update":"2026-03-22T11:41:37.479452958Z"} +2026/03/22 11:41:42 [transform_engine] {"stage_name":"transform_engine","events_processed":679,"events_dropped":0,"avg_latency_ms":5113.966100791171,"throughput_eps":0,"last_update":"2026-03-22T11:41:22.479082979Z"} +2026/03/22 11:41:42 ───────────────────────────────────────────────── +2026/03/22 11:41:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:41:47 [log_collector] {"stage_name":"log_collector","events_processed":32197,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6439.4,"last_update":"2026-03-22T11:41:42.368263892Z"} +2026/03/22 11:41:47 [metric_collector] {"stage_name":"metric_collector","events_processed":20414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4082.8,"last_update":"2026-03-22T11:41:42.368550151Z"} +2026/03/22 11:41:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:41:42.377971578Z"} +2026/03/22 11:41:47 [detection_layer] {"stage_name":"detection_layer","events_processed":677,"events_dropped":0,"avg_latency_ms":18.88643594482045,"throughput_eps":0,"last_update":"2026-03-22T11:41:42.479048395Z"} +2026/03/22 11:41:47 [transform_engine] {"stage_name":"transform_engine","events_processed":679,"events_dropped":0,"avg_latency_ms":5113.966100791171,"throughput_eps":0,"last_update":"2026-03-22T11:41:22.479082979Z"} +2026/03/22 11:41:47 ───────────────────────────────────────────────── +2026/03/22 11:41:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:41:52 [metric_collector] {"stage_name":"metric_collector","events_processed":20419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4083.8,"last_update":"2026-03-22T11:41:47.369265608Z"} +2026/03/22 11:41:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8170,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:41:47.377956637Z"} +2026/03/22 11:41:52 [detection_layer] {"stage_name":"detection_layer","events_processed":677,"events_dropped":0,"avg_latency_ms":18.88643594482045,"throughput_eps":0,"last_update":"2026-03-22T11:41:47.479066357Z"} +2026/03/22 11:41:52 [transform_engine] {"stage_name":"transform_engine","events_processed":679,"events_dropped":0,"avg_latency_ms":5113.966100791171,"throughput_eps":0,"last_update":"2026-03-22T11:41:22.479082979Z"} +2026/03/22 11:41:52 [log_collector] {"stage_name":"log_collector","events_processed":32197,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6439.4,"last_update":"2026-03-22T11:41:52.368612069Z"} +2026/03/22 11:41:52 ───────────────────────────────────────────────── +Saved state: 15 clusters, 32198 messages, reason: none +2026/03/22 11:41:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:41:57 [log_collector] {"stage_name":"log_collector","events_processed":32197,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6439.4,"last_update":"2026-03-22T11:41:52.368612069Z"} +2026/03/22 11:41:57 [metric_collector] {"stage_name":"metric_collector","events_processed":20424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4084.8,"last_update":"2026-03-22T11:41:52.369289476Z"} +2026/03/22 11:41:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:41:52.3778579Z"} +2026/03/22 11:41:57 [detection_layer] {"stage_name":"detection_layer","events_processed":677,"events_dropped":0,"avg_latency_ms":18.88643594482045,"throughput_eps":0,"last_update":"2026-03-22T11:41:52.478996195Z"} +2026/03/22 11:41:57 [transform_engine] {"stage_name":"transform_engine","events_processed":680,"events_dropped":0,"avg_latency_ms":9734.150901232937,"throughput_eps":0,"last_update":"2026-03-22T11:41:55.694180215Z"} +2026/03/22 11:41:57 ───────────────────────────────────────────────── +2026/03/22 11:42:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:42:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:41:57.377792911Z"} +2026/03/22 11:42:02 [detection_layer] {"stage_name":"detection_layer","events_processed":678,"events_dropped":0,"avg_latency_ms":19.326144555856363,"throughput_eps":0,"last_update":"2026-03-22T11:41:57.479763099Z"} +2026/03/22 11:42:02 [transform_engine] {"stage_name":"transform_engine","events_processed":681,"events_dropped":0,"avg_latency_ms":7802.142985586351,"throughput_eps":0,"last_update":"2026-03-22T11:41:57.552930074Z"} +2026/03/22 11:42:02 [log_collector] {"stage_name":"log_collector","events_processed":32202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6440.4,"last_update":"2026-03-22T11:41:57.368743716Z"} +2026/03/22 11:42:02 [metric_collector] {"stage_name":"metric_collector","events_processed":20428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4085.6,"last_update":"2026-03-22T11:41:57.368692428Z"} +2026/03/22 11:42:02 ───────────────────────────────────────────────── +2026/03/22 11:42:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:42:07 [log_collector] {"stage_name":"log_collector","events_processed":32202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6440.4,"last_update":"2026-03-22T11:42:02.368465236Z"} +2026/03/22 11:42:07 [metric_collector] {"stage_name":"metric_collector","events_processed":20434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4086.8,"last_update":"2026-03-22T11:42:02.36868648Z"} +2026/03/22 11:42:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:42:02.377113041Z"} +2026/03/22 11:42:07 [detection_layer] {"stage_name":"detection_layer","events_processed":679,"events_dropped":0,"avg_latency_ms":18.559406844685093,"throughput_eps":0,"last_update":"2026-03-22T11:42:02.479035588Z"} +2026/03/22 11:42:07 [transform_engine] {"stage_name":"transform_engine","events_processed":681,"events_dropped":0,"avg_latency_ms":7802.142985586351,"throughput_eps":0,"last_update":"2026-03-22T11:42:02.479044765Z"} +2026/03/22 11:42:07 ───────────────────────────────────────────────── +2026/03/22 11:42:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:42:12 [log_collector] {"stage_name":"log_collector","events_processed":32202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6440.4,"last_update":"2026-03-22T11:42:12.368414158Z"} +2026/03/22 11:42:12 [metric_collector] {"stage_name":"metric_collector","events_processed":20439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4087.8,"last_update":"2026-03-22T11:42:07.369141477Z"} +2026/03/22 11:42:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:42:07.376137539Z"} +2026/03/22 11:42:12 [detection_layer] {"stage_name":"detection_layer","events_processed":679,"events_dropped":0,"avg_latency_ms":18.559406844685093,"throughput_eps":0,"last_update":"2026-03-22T11:42:07.479313427Z"} +2026/03/22 11:42:12 [transform_engine] {"stage_name":"transform_engine","events_processed":681,"events_dropped":0,"avg_latency_ms":7802.142985586351,"throughput_eps":0,"last_update":"2026-03-22T11:42:07.479323637Z"} +2026/03/22 11:42:12 ───────────────────────────────────────────────── +2026/03/22 11:42:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:42:17 [log_collector] {"stage_name":"log_collector","events_processed":32202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6440.4,"last_update":"2026-03-22T11:42:12.368414158Z"} +2026/03/22 11:42:17 [metric_collector] {"stage_name":"metric_collector","events_processed":20444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4088.8,"last_update":"2026-03-22T11:42:12.368784708Z"} +2026/03/22 11:42:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:42:12.375199215Z"} +2026/03/22 11:42:17 [detection_layer] {"stage_name":"detection_layer","events_processed":679,"events_dropped":0,"avg_latency_ms":18.559406844685093,"throughput_eps":0,"last_update":"2026-03-22T11:42:12.4793863Z"} +2026/03/22 11:42:17 [transform_engine] {"stage_name":"transform_engine","events_processed":681,"events_dropped":0,"avg_latency_ms":7802.142985586351,"throughput_eps":0,"last_update":"2026-03-22T11:42:12.479397561Z"} +2026/03/22 11:42:17 ───────────────────────────────────────────────── +2026/03/22 11:42:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:42:22 [log_collector] {"stage_name":"log_collector","events_processed":32202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6440.4,"last_update":"2026-03-22T11:42:22.368725096Z"} +2026/03/22 11:42:22 [metric_collector] {"stage_name":"metric_collector","events_processed":20449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4089.8,"last_update":"2026-03-22T11:42:17.368411922Z"} +2026/03/22 11:42:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:42:17.375666188Z"} +2026/03/22 11:42:22 [detection_layer] {"stage_name":"detection_layer","events_processed":679,"events_dropped":0,"avg_latency_ms":18.559406844685093,"throughput_eps":0,"last_update":"2026-03-22T11:42:17.478984448Z"} +2026/03/22 11:42:22 [transform_engine] {"stage_name":"transform_engine","events_processed":681,"events_dropped":0,"avg_latency_ms":7802.142985586351,"throughput_eps":0,"last_update":"2026-03-22T11:42:17.478898283Z"} +2026/03/22 11:42:22 ───────────────────────────────────────────────── +2026/03/22 11:42:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:42:27 [log_collector] {"stage_name":"log_collector","events_processed":32202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6440.4,"last_update":"2026-03-22T11:42:22.368725096Z"} +2026/03/22 11:42:27 [metric_collector] {"stage_name":"metric_collector","events_processed":20454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4090.8,"last_update":"2026-03-22T11:42:22.369005763Z"} +2026/03/22 11:42:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:42:22.375742247Z"} +2026/03/22 11:42:27 [detection_layer] {"stage_name":"detection_layer","events_processed":679,"events_dropped":0,"avg_latency_ms":18.559406844685093,"throughput_eps":0,"last_update":"2026-03-22T11:42:22.47897307Z"} +2026/03/22 11:42:27 [transform_engine] {"stage_name":"transform_engine","events_processed":681,"events_dropped":0,"avg_latency_ms":7802.142985586351,"throughput_eps":0,"last_update":"2026-03-22T11:42:22.478876646Z"} +2026/03/22 11:42:27 ───────────────────────────────────────────────── +2026/03/22 11:42:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:42:32 [log_collector] {"stage_name":"log_collector","events_processed":32202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6440.4,"last_update":"2026-03-22T11:42:27.368495124Z"} +2026/03/22 11:42:32 [metric_collector] {"stage_name":"metric_collector","events_processed":20459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4091.8,"last_update":"2026-03-22T11:42:27.368734173Z"} +2026/03/22 11:42:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:42:27.374822565Z"} +2026/03/22 11:42:32 [detection_layer] {"stage_name":"detection_layer","events_processed":679,"events_dropped":0,"avg_latency_ms":18.559406844685093,"throughput_eps":0,"last_update":"2026-03-22T11:42:27.479009009Z"} +2026/03/22 11:42:32 [transform_engine] {"stage_name":"transform_engine","events_processed":682,"events_dropped":0,"avg_latency_ms":6566.076270269081,"throughput_eps":0,"last_update":"2026-03-22T11:42:29.100837494Z"} +2026/03/22 11:42:32 ───────────────────────────────────────────────── +2026/03/22 11:42:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:42:37 [detection_layer] {"stage_name":"detection_layer","events_processed":680,"events_dropped":0,"avg_latency_ms":19.731667475748075,"throughput_eps":0,"last_update":"2026-03-22T11:42:32.479142208Z"} +2026/03/22 11:42:37 [transform_engine] {"stage_name":"transform_engine","events_processed":682,"events_dropped":0,"avg_latency_ms":6566.076270269081,"throughput_eps":0,"last_update":"2026-03-22T11:42:32.479116769Z"} +2026/03/22 11:42:37 [log_collector] {"stage_name":"log_collector","events_processed":32202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6440.4,"last_update":"2026-03-22T11:42:37.368432792Z"} +2026/03/22 11:42:37 [metric_collector] {"stage_name":"metric_collector","events_processed":20464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4092.8,"last_update":"2026-03-22T11:42:32.36859481Z"} +2026/03/22 11:42:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:42:32.379838848Z"} +2026/03/22 11:42:37 ───────────────────────────────────────────────── +2026/03/22 11:42:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:42:42 [log_collector] {"stage_name":"log_collector","events_processed":32202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6440.4,"last_update":"2026-03-22T11:42:37.368432792Z"} +2026/03/22 11:42:42 [metric_collector] {"stage_name":"metric_collector","events_processed":20469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4093.8,"last_update":"2026-03-22T11:42:37.36869826Z"} +2026/03/22 11:42:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:42:37.375549164Z"} +2026/03/22 11:42:42 [detection_layer] {"stage_name":"detection_layer","events_processed":680,"events_dropped":0,"avg_latency_ms":19.731667475748075,"throughput_eps":0,"last_update":"2026-03-22T11:42:37.479781334Z"} +2026/03/22 11:42:42 [transform_engine] {"stage_name":"transform_engine","events_processed":682,"events_dropped":0,"avg_latency_ms":6566.076270269081,"throughput_eps":0,"last_update":"2026-03-22T11:42:37.479802715Z"} +2026/03/22 11:42:42 ───────────────────────────────────────────────── +2026/03/22 11:42:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:42:47 [metric_collector] {"stage_name":"metric_collector","events_processed":20474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4094.8,"last_update":"2026-03-22T11:42:42.368741639Z"} +2026/03/22 11:42:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:42:42.377829247Z"} +2026/03/22 11:42:47 [detection_layer] {"stage_name":"detection_layer","events_processed":680,"events_dropped":0,"avg_latency_ms":19.731667475748075,"throughput_eps":0,"last_update":"2026-03-22T11:42:42.478999382Z"} +2026/03/22 11:42:47 [transform_engine] {"stage_name":"transform_engine","events_processed":682,"events_dropped":0,"avg_latency_ms":6566.076270269081,"throughput_eps":0,"last_update":"2026-03-22T11:42:42.479016265Z"} +2026/03/22 11:42:47 [log_collector] {"stage_name":"log_collector","events_processed":32213,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6442.6,"last_update":"2026-03-22T11:42:42.368443017Z"} +2026/03/22 11:42:47 ───────────────────────────────────────────────── +2026/03/22 11:42:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:42:52 [log_collector] {"stage_name":"log_collector","events_processed":32220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6444,"last_update":"2026-03-22T11:42:47.370403484Z"} +2026/03/22 11:42:52 [metric_collector] {"stage_name":"metric_collector","events_processed":20479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4095.8,"last_update":"2026-03-22T11:42:47.370680595Z"} +2026/03/22 11:42:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:42:47.382773359Z"} +2026/03/22 11:42:52 [detection_layer] {"stage_name":"detection_layer","events_processed":680,"events_dropped":0,"avg_latency_ms":19.731667475748075,"throughput_eps":0,"last_update":"2026-03-22T11:42:47.479815066Z"} +2026/03/22 11:42:52 [transform_engine] {"stage_name":"transform_engine","events_processed":682,"events_dropped":0,"avg_latency_ms":6566.076270269081,"throughput_eps":0,"last_update":"2026-03-22T11:42:47.479828502Z"} +2026/03/22 11:42:52 ───────────────────────────────────────────────── +2026/03/22 11:42:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:42:57 [detection_layer] {"stage_name":"detection_layer","events_processed":680,"events_dropped":0,"avg_latency_ms":19.731667475748075,"throughput_eps":0,"last_update":"2026-03-22T11:42:52.480230448Z"} +2026/03/22 11:42:57 [transform_engine] {"stage_name":"transform_engine","events_processed":682,"events_dropped":0,"avg_latency_ms":6566.076270269081,"throughput_eps":0,"last_update":"2026-03-22T11:42:52.480243494Z"} +2026/03/22 11:42:57 [log_collector] {"stage_name":"log_collector","events_processed":32381,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6476.2,"last_update":"2026-03-22T11:42:52.368015187Z"} +2026/03/22 11:42:57 [metric_collector] {"stage_name":"metric_collector","events_processed":20484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4096.8,"last_update":"2026-03-22T11:42:52.368268532Z"} +2026/03/22 11:42:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:42:52.376308803Z"} +2026/03/22 11:42:57 ───────────────────────────────────────────────── +2026/03/22 11:43:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:43:02 [detection_layer] {"stage_name":"detection_layer","events_processed":680,"events_dropped":0,"avg_latency_ms":19.731667475748075,"throughput_eps":0,"last_update":"2026-03-22T11:42:57.480429322Z"} +2026/03/22 11:43:02 [transform_engine] {"stage_name":"transform_engine","events_processed":682,"events_dropped":0,"avg_latency_ms":6566.076270269081,"throughput_eps":0,"last_update":"2026-03-22T11:42:52.480243494Z"} +2026/03/22 11:43:02 [log_collector] {"stage_name":"log_collector","events_processed":32554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6510.8,"last_update":"2026-03-22T11:42:57.368583498Z"} +2026/03/22 11:43:02 [metric_collector] {"stage_name":"metric_collector","events_processed":20489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4097.8,"last_update":"2026-03-22T11:42:57.369055562Z"} +2026/03/22 11:43:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:42:57.378458503Z"} +2026/03/22 11:43:02 ───────────────────────────────────────────────── +2026/03/22 11:43:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:43:07 [log_collector] {"stage_name":"log_collector","events_processed":32554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6510.8,"last_update":"2026-03-22T11:43:02.368730799Z"} +2026/03/22 11:43:07 [metric_collector] {"stage_name":"metric_collector","events_processed":20494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4098.8,"last_update":"2026-03-22T11:43:02.368914962Z"} +2026/03/22 11:43:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:43:02.376095186Z"} +2026/03/22 11:43:07 [detection_layer] {"stage_name":"detection_layer","events_processed":680,"events_dropped":0,"avg_latency_ms":19.731667475748075,"throughput_eps":0,"last_update":"2026-03-22T11:43:02.479427643Z"} +2026/03/22 11:43:07 [transform_engine] {"stage_name":"transform_engine","events_processed":682,"events_dropped":0,"avg_latency_ms":6566.076270269081,"throughput_eps":0,"last_update":"2026-03-22T11:42:52.480243494Z"} +2026/03/22 11:43:07 ───────────────────────────────────────────────── +2026/03/22 11:43:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:43:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:43:07.375869359Z"} +2026/03/22 11:43:12 [detection_layer] {"stage_name":"detection_layer","events_processed":680,"events_dropped":0,"avg_latency_ms":19.731667475748075,"throughput_eps":0,"last_update":"2026-03-22T11:43:07.479029907Z"} +2026/03/22 11:43:12 [transform_engine] {"stage_name":"transform_engine","events_processed":682,"events_dropped":0,"avg_latency_ms":6566.076270269081,"throughput_eps":0,"last_update":"2026-03-22T11:42:52.480243494Z"} +2026/03/22 11:43:12 [log_collector] {"stage_name":"log_collector","events_processed":32554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6510.8,"last_update":"2026-03-22T11:43:07.368289961Z"} +2026/03/22 11:43:12 [metric_collector] {"stage_name":"metric_collector","events_processed":20499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4099.8,"last_update":"2026-03-22T11:43:07.36891596Z"} +2026/03/22 11:43:12 ───────────────────────────────────────────────── +2026/03/22 11:43:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:43:17 [log_collector] {"stage_name":"log_collector","events_processed":32554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6510.8,"last_update":"2026-03-22T11:43:12.36797553Z"} +2026/03/22 11:43:17 [metric_collector] {"stage_name":"metric_collector","events_processed":20504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4100.8,"last_update":"2026-03-22T11:43:12.36853452Z"} +2026/03/22 11:43:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:43:12.377679779Z"} +2026/03/22 11:43:17 [detection_layer] {"stage_name":"detection_layer","events_processed":680,"events_dropped":0,"avg_latency_ms":19.731667475748075,"throughput_eps":0,"last_update":"2026-03-22T11:43:12.480010788Z"} +2026/03/22 11:43:17 [transform_engine] {"stage_name":"transform_engine","events_processed":682,"events_dropped":0,"avg_latency_ms":6566.076270269081,"throughput_eps":0,"last_update":"2026-03-22T11:42:52.480243494Z"} +2026/03/22 11:43:17 ───────────────────────────────────────────────── +2026/03/22 11:43:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:43:22 [log_collector] {"stage_name":"log_collector","events_processed":32554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6510.8,"last_update":"2026-03-22T11:43:17.368435359Z"} +2026/03/22 11:43:22 [metric_collector] {"stage_name":"metric_collector","events_processed":20509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4101.8,"last_update":"2026-03-22T11:43:17.368925257Z"} +2026/03/22 11:43:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8206,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:43:17.378667198Z"} +2026/03/22 11:43:22 [detection_layer] {"stage_name":"detection_layer","events_processed":680,"events_dropped":0,"avg_latency_ms":19.731667475748075,"throughput_eps":0,"last_update":"2026-03-22T11:43:17.480030412Z"} +2026/03/22 11:43:22 [transform_engine] {"stage_name":"transform_engine","events_processed":682,"events_dropped":0,"avg_latency_ms":6566.076270269081,"throughput_eps":0,"last_update":"2026-03-22T11:42:52.480243494Z"} +2026/03/22 11:43:22 ───────────────────────────────────────────────── +2026/03/22 11:43:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:43:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:43:22.378704735Z"} +2026/03/22 11:43:27 [detection_layer] {"stage_name":"detection_layer","events_processed":680,"events_dropped":0,"avg_latency_ms":19.731667475748075,"throughput_eps":0,"last_update":"2026-03-22T11:43:22.479825145Z"} +2026/03/22 11:43:27 [transform_engine] {"stage_name":"transform_engine","events_processed":682,"events_dropped":0,"avg_latency_ms":6566.076270269081,"throughput_eps":0,"last_update":"2026-03-22T11:42:52.480243494Z"} +2026/03/22 11:43:27 [log_collector] {"stage_name":"log_collector","events_processed":32554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6510.8,"last_update":"2026-03-22T11:43:22.368945111Z"} +2026/03/22 11:43:27 [metric_collector] {"stage_name":"metric_collector","events_processed":20514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4102.8,"last_update":"2026-03-22T11:43:22.369645202Z"} +2026/03/22 11:43:27 ───────────────────────────────────────────────── +2026/03/22 11:43:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:43:32 [metric_collector] {"stage_name":"metric_collector","events_processed":20519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4103.8,"last_update":"2026-03-22T11:43:27.368598228Z"} +2026/03/22 11:43:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8210,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:43:27.374434638Z"} +2026/03/22 11:43:32 [detection_layer] {"stage_name":"detection_layer","events_processed":680,"events_dropped":0,"avg_latency_ms":19.731667475748075,"throughput_eps":0,"last_update":"2026-03-22T11:43:27.479760422Z"} +2026/03/22 11:43:32 [transform_engine] {"stage_name":"transform_engine","events_processed":682,"events_dropped":0,"avg_latency_ms":6566.076270269081,"throughput_eps":0,"last_update":"2026-03-22T11:42:52.480243494Z"} +2026/03/22 11:43:32 [log_collector] {"stage_name":"log_collector","events_processed":32554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6510.8,"last_update":"2026-03-22T11:43:27.368018798Z"} +2026/03/22 11:43:32 ───────────────────────────────────────────────── +Saved state: 15 clusters, 32555 messages, reason: none +2026/03/22 11:43:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:43:37 [log_collector] {"stage_name":"log_collector","events_processed":32564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6512.8,"last_update":"2026-03-22T11:43:37.368715923Z"} +2026/03/22 11:43:37 [metric_collector] {"stage_name":"metric_collector","events_processed":20524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4104.8,"last_update":"2026-03-22T11:43:32.368594437Z"} +2026/03/22 11:43:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:43:32.37760663Z"} +2026/03/22 11:43:37 [detection_layer] {"stage_name":"detection_layer","events_processed":680,"events_dropped":0,"avg_latency_ms":19.731667475748075,"throughput_eps":0,"last_update":"2026-03-22T11:43:32.47990172Z"} +2026/03/22 11:43:37 [transform_engine] {"stage_name":"transform_engine","events_processed":684,"events_dropped":0,"avg_latency_ms":10376.327049492214,"throughput_eps":0,"last_update":"2026-03-22T11:43:35.865658884Z"} +2026/03/22 11:43:37 ───────────────────────────────────────────────── +2026/03/22 11:43:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:43:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:43:37.378102995Z"} +2026/03/22 11:43:42 [detection_layer] {"stage_name":"detection_layer","events_processed":681,"events_dropped":0,"avg_latency_ms":19.82890758059846,"throughput_eps":0,"last_update":"2026-03-22T11:43:37.479394992Z"} +2026/03/22 11:43:42 [transform_engine] {"stage_name":"transform_engine","events_processed":684,"events_dropped":0,"avg_latency_ms":10376.327049492214,"throughput_eps":0,"last_update":"2026-03-22T11:43:37.479406604Z"} +2026/03/22 11:43:42 [log_collector] {"stage_name":"log_collector","events_processed":32564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6512.8,"last_update":"2026-03-22T11:43:37.368715923Z"} +2026/03/22 11:43:42 [metric_collector] {"stage_name":"metric_collector","events_processed":20529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4105.8,"last_update":"2026-03-22T11:43:37.369525444Z"} +2026/03/22 11:43:42 ───────────────────────────────────────────────── +2026/03/22 11:43:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:43:47 [log_collector] {"stage_name":"log_collector","events_processed":32564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6512.8,"last_update":"2026-03-22T11:43:42.367968651Z"} +2026/03/22 11:43:47 [metric_collector] {"stage_name":"metric_collector","events_processed":20534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4106.8,"last_update":"2026-03-22T11:43:42.368282922Z"} +2026/03/22 11:43:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:43:42.376934314Z"} +2026/03/22 11:43:47 [detection_layer] {"stage_name":"detection_layer","events_processed":681,"events_dropped":0,"avg_latency_ms":19.82890758059846,"throughput_eps":0,"last_update":"2026-03-22T11:43:42.479211149Z"} +2026/03/22 11:43:47 [transform_engine] {"stage_name":"transform_engine","events_processed":684,"events_dropped":0,"avg_latency_ms":10376.327049492214,"throughput_eps":0,"last_update":"2026-03-22T11:43:42.479192052Z"} +2026/03/22 11:43:47 ───────────────────────────────────────────────── +2026/03/22 11:43:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:43:52 [transform_engine] {"stage_name":"transform_engine","events_processed":684,"events_dropped":0,"avg_latency_ms":10376.327049492214,"throughput_eps":0,"last_update":"2026-03-22T11:43:47.479849135Z"} +2026/03/22 11:43:52 [log_collector] {"stage_name":"log_collector","events_processed":32564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6512.8,"last_update":"2026-03-22T11:43:52.368107474Z"} +2026/03/22 11:43:52 [metric_collector] {"stage_name":"metric_collector","events_processed":20539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4107.8,"last_update":"2026-03-22T11:43:47.368560068Z"} +2026/03/22 11:43:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:43:47.379485477Z"} +2026/03/22 11:43:52 [detection_layer] {"stage_name":"detection_layer","events_processed":681,"events_dropped":0,"avg_latency_ms":19.82890758059846,"throughput_eps":0,"last_update":"2026-03-22T11:43:47.479962332Z"} +2026/03/22 11:43:52 ───────────────────────────────────────────────── +2026/03/22 11:43:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:43:57 [log_collector] {"stage_name":"log_collector","events_processed":32564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6512.8,"last_update":"2026-03-22T11:43:57.368728472Z"} +2026/03/22 11:43:57 [metric_collector] {"stage_name":"metric_collector","events_processed":20544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4108.8,"last_update":"2026-03-22T11:43:52.368727742Z"} +2026/03/22 11:43:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:43:52.379766698Z"} +2026/03/22 11:43:57 [detection_layer] {"stage_name":"detection_layer","events_processed":681,"events_dropped":0,"avg_latency_ms":19.82890758059846,"throughput_eps":0,"last_update":"2026-03-22T11:43:52.479029038Z"} +2026/03/22 11:43:57 [transform_engine] {"stage_name":"transform_engine","events_processed":684,"events_dropped":0,"avg_latency_ms":10376.327049492214,"throughput_eps":0,"last_update":"2026-03-22T11:43:52.478881796Z"} +2026/03/22 11:43:57 ───────────────────────────────────────────────── +2026/03/22 11:44:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:44:02 [log_collector] {"stage_name":"log_collector","events_processed":32564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6512.8,"last_update":"2026-03-22T11:43:57.368728472Z"} +2026/03/22 11:44:02 [metric_collector] {"stage_name":"metric_collector","events_processed":20549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4109.8,"last_update":"2026-03-22T11:43:57.369417903Z"} +2026/03/22 11:44:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8222,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:43:57.379051977Z"} +2026/03/22 11:44:02 [detection_layer] {"stage_name":"detection_layer","events_processed":681,"events_dropped":0,"avg_latency_ms":19.82890758059846,"throughput_eps":0,"last_update":"2026-03-22T11:43:57.479456044Z"} +2026/03/22 11:44:02 [transform_engine] {"stage_name":"transform_engine","events_processed":685,"events_dropped":0,"avg_latency_ms":8325.146658993772,"throughput_eps":0,"last_update":"2026-03-22T11:43:57.599808272Z"} +2026/03/22 11:44:02 ───────────────────────────────────────────────── +2026/03/22 11:44:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:44:07 [log_collector] {"stage_name":"log_collector","events_processed":32564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6512.8,"last_update":"2026-03-22T11:44:02.368826845Z"} +2026/03/22 11:44:07 [metric_collector] {"stage_name":"metric_collector","events_processed":20554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4110.8,"last_update":"2026-03-22T11:44:02.368917719Z"} +2026/03/22 11:44:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:44:02.379763746Z"} +2026/03/22 11:44:07 [detection_layer] {"stage_name":"detection_layer","events_processed":682,"events_dropped":0,"avg_latency_ms":20.01782446447877,"throughput_eps":0,"last_update":"2026-03-22T11:44:02.47894508Z"} +2026/03/22 11:44:07 [transform_engine] {"stage_name":"transform_engine","events_processed":685,"events_dropped":0,"avg_latency_ms":8325.146658993772,"throughput_eps":0,"last_update":"2026-03-22T11:44:02.47893534Z"} +2026/03/22 11:44:07 ───────────────────────────────────────────────── +2026/03/22 11:44:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:44:12 [log_collector] {"stage_name":"log_collector","events_processed":32564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6512.8,"last_update":"2026-03-22T11:44:12.368719147Z"} +2026/03/22 11:44:12 [metric_collector] {"stage_name":"metric_collector","events_processed":20559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4111.8,"last_update":"2026-03-22T11:44:07.368316237Z"} +2026/03/22 11:44:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:44:07.378593914Z"} +2026/03/22 11:44:12 [detection_layer] {"stage_name":"detection_layer","events_processed":682,"events_dropped":0,"avg_latency_ms":20.01782446447877,"throughput_eps":0,"last_update":"2026-03-22T11:44:07.479914006Z"} +2026/03/22 11:44:12 [transform_engine] {"stage_name":"transform_engine","events_processed":685,"events_dropped":0,"avg_latency_ms":8325.146658993772,"throughput_eps":0,"last_update":"2026-03-22T11:44:07.479841557Z"} +2026/03/22 11:44:12 ───────────────────────────────────────────────── +2026/03/22 11:44:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:44:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:44:12.379163102Z"} +2026/03/22 11:44:17 [detection_layer] {"stage_name":"detection_layer","events_processed":682,"events_dropped":0,"avg_latency_ms":20.01782446447877,"throughput_eps":0,"last_update":"2026-03-22T11:44:12.479439454Z"} +2026/03/22 11:44:17 [transform_engine] {"stage_name":"transform_engine","events_processed":685,"events_dropped":0,"avg_latency_ms":8325.146658993772,"throughput_eps":0,"last_update":"2026-03-22T11:44:12.479381934Z"} +2026/03/22 11:44:17 [log_collector] {"stage_name":"log_collector","events_processed":32564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6512.8,"last_update":"2026-03-22T11:44:12.368719147Z"} +2026/03/22 11:44:17 [metric_collector] {"stage_name":"metric_collector","events_processed":20564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4112.8,"last_update":"2026-03-22T11:44:12.369305439Z"} +2026/03/22 11:44:17 ───────────────────────────────────────────────── +2026/03/22 11:44:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:44:22 [metric_collector] {"stage_name":"metric_collector","events_processed":20569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4113.8,"last_update":"2026-03-22T11:44:17.36863501Z"} +2026/03/22 11:44:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:44:17.378712152Z"} +2026/03/22 11:44:22 [detection_layer] {"stage_name":"detection_layer","events_processed":682,"events_dropped":0,"avg_latency_ms":20.01782446447877,"throughput_eps":0,"last_update":"2026-03-22T11:44:17.478964859Z"} +2026/03/22 11:44:22 [transform_engine] {"stage_name":"transform_engine","events_processed":685,"events_dropped":0,"avg_latency_ms":8325.146658993772,"throughput_eps":0,"last_update":"2026-03-22T11:44:17.47884551Z"} +2026/03/22 11:44:22 [log_collector] {"stage_name":"log_collector","events_processed":32564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6512.8,"last_update":"2026-03-22T11:44:22.368568763Z"} +2026/03/22 11:44:22 ───────────────────────────────────────────────── +2026/03/22 11:44:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:44:27 [log_collector] {"stage_name":"log_collector","events_processed":32564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6512.8,"last_update":"2026-03-22T11:44:22.368568763Z"} +2026/03/22 11:44:27 [metric_collector] {"stage_name":"metric_collector","events_processed":20574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4114.8,"last_update":"2026-03-22T11:44:22.368949823Z"} +2026/03/22 11:44:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:44:22.378295655Z"} +2026/03/22 11:44:27 [detection_layer] {"stage_name":"detection_layer","events_processed":682,"events_dropped":0,"avg_latency_ms":20.01782446447877,"throughput_eps":0,"last_update":"2026-03-22T11:44:22.479688445Z"} +2026/03/22 11:44:27 [transform_engine] {"stage_name":"transform_engine","events_processed":685,"events_dropped":0,"avg_latency_ms":8325.146658993772,"throughput_eps":0,"last_update":"2026-03-22T11:44:22.479573766Z"} +2026/03/22 11:44:27 ───────────────────────────────────────────────── +2026/03/22 11:44:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:44:32 [log_collector] {"stage_name":"log_collector","events_processed":32564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6512.8,"last_update":"2026-03-22T11:44:32.368542611Z"} +2026/03/22 11:44:32 [metric_collector] {"stage_name":"metric_collector","events_processed":20579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4115.8,"last_update":"2026-03-22T11:44:27.368501299Z"} +2026/03/22 11:44:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:44:27.377497662Z"} +2026/03/22 11:44:32 [detection_layer] {"stage_name":"detection_layer","events_processed":682,"events_dropped":0,"avg_latency_ms":20.01782446447877,"throughput_eps":0,"last_update":"2026-03-22T11:44:27.480413781Z"} +2026/03/22 11:44:32 [transform_engine] {"stage_name":"transform_engine","events_processed":686,"events_dropped":0,"avg_latency_ms":6676.298773395018,"throughput_eps":0,"last_update":"2026-03-22T11:44:27.560624776Z"} +2026/03/22 11:44:32 ───────────────────────────────────────────────── +2026/03/22 11:44:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:44:37 [log_collector] {"stage_name":"log_collector","events_processed":32564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6512.8,"last_update":"2026-03-22T11:44:32.368542611Z"} +2026/03/22 11:44:37 [metric_collector] {"stage_name":"metric_collector","events_processed":20584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4116.8,"last_update":"2026-03-22T11:44:32.369349918Z"} +2026/03/22 11:44:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:44:32.374930938Z"} +2026/03/22 11:44:37 [detection_layer] {"stage_name":"detection_layer","events_processed":683,"events_dropped":0,"avg_latency_ms":20.519984371583018,"throughput_eps":0,"last_update":"2026-03-22T11:44:32.479440158Z"} +2026/03/22 11:44:37 [transform_engine] {"stage_name":"transform_engine","events_processed":686,"events_dropped":0,"avg_latency_ms":6676.298773395018,"throughput_eps":0,"last_update":"2026-03-22T11:44:32.479268319Z"} +2026/03/22 11:44:37 ───────────────────────────────────────────────── +2026/03/22 11:44:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:44:42 [log_collector] {"stage_name":"log_collector","events_processed":32564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6512.8,"last_update":"2026-03-22T11:44:42.368635094Z"} +2026/03/22 11:44:42 [metric_collector] {"stage_name":"metric_collector","events_processed":20589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4117.8,"last_update":"2026-03-22T11:44:37.368477725Z"} +2026/03/22 11:44:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:44:37.378742388Z"} +2026/03/22 11:44:42 [detection_layer] {"stage_name":"detection_layer","events_processed":683,"events_dropped":0,"avg_latency_ms":20.519984371583018,"throughput_eps":0,"last_update":"2026-03-22T11:44:37.478994863Z"} +2026/03/22 11:44:42 [transform_engine] {"stage_name":"transform_engine","events_processed":686,"events_dropped":0,"avg_latency_ms":6676.298773395018,"throughput_eps":0,"last_update":"2026-03-22T11:44:37.478942904Z"} +2026/03/22 11:44:42 ───────────────────────────────────────────────── +2026/03/22 11:44:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:44:47 [log_collector] {"stage_name":"log_collector","events_processed":32564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6512.8,"last_update":"2026-03-22T11:44:42.368635094Z"} +2026/03/22 11:44:47 [metric_collector] {"stage_name":"metric_collector","events_processed":20594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4118.8,"last_update":"2026-03-22T11:44:42.36960362Z"} +2026/03/22 11:44:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:44:42.376589531Z"} +2026/03/22 11:44:47 [detection_layer] {"stage_name":"detection_layer","events_processed":683,"events_dropped":0,"avg_latency_ms":20.519984371583018,"throughput_eps":0,"last_update":"2026-03-22T11:44:42.479935402Z"} +2026/03/22 11:44:47 [transform_engine] {"stage_name":"transform_engine","events_processed":686,"events_dropped":0,"avg_latency_ms":6676.298773395018,"throughput_eps":0,"last_update":"2026-03-22T11:44:42.479896257Z"} +2026/03/22 11:44:47 ───────────────────────────────────────────────── +2026/03/22 11:44:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:44:52 [metric_collector] {"stage_name":"metric_collector","events_processed":20599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4119.8,"last_update":"2026-03-22T11:44:47.368166591Z"} +2026/03/22 11:44:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:44:47.374954544Z"} +2026/03/22 11:44:52 [detection_layer] {"stage_name":"detection_layer","events_processed":683,"events_dropped":0,"avg_latency_ms":20.519984371583018,"throughput_eps":0,"last_update":"2026-03-22T11:44:47.479217793Z"} +2026/03/22 11:44:52 [transform_engine] {"stage_name":"transform_engine","events_processed":686,"events_dropped":0,"avg_latency_ms":6676.298773395018,"throughput_eps":0,"last_update":"2026-03-22T11:44:47.479191112Z"} +2026/03/22 11:44:52 [log_collector] {"stage_name":"log_collector","events_processed":32564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6512.8,"last_update":"2026-03-22T11:44:47.367950307Z"} +2026/03/22 11:44:52 ───────────────────────────────────────────────── +2026/03/22 11:44:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:44:57 [log_collector] {"stage_name":"log_collector","events_processed":32564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6512.8,"last_update":"2026-03-22T11:44:57.367989909Z"} +2026/03/22 11:44:57 [metric_collector] {"stage_name":"metric_collector","events_processed":20604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4120.8,"last_update":"2026-03-22T11:44:52.368987494Z"} +2026/03/22 11:44:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:44:52.377540066Z"} +2026/03/22 11:44:57 [detection_layer] {"stage_name":"detection_layer","events_processed":683,"events_dropped":0,"avg_latency_ms":20.519984371583018,"throughput_eps":0,"last_update":"2026-03-22T11:44:52.479800348Z"} +2026/03/22 11:44:57 [transform_engine] {"stage_name":"transform_engine","events_processed":686,"events_dropped":0,"avg_latency_ms":6676.298773395018,"throughput_eps":0,"last_update":"2026-03-22T11:44:52.479744651Z"} +2026/03/22 11:44:57 ───────────────────────────────────────────────── +Saved state: 15 clusters, 32565 messages, reason: none +2026/03/22 11:45:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:45:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8246,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:44:57.377861658Z"} +2026/03/22 11:45:02 [detection_layer] {"stage_name":"detection_layer","events_processed":683,"events_dropped":0,"avg_latency_ms":20.519984371583018,"throughput_eps":0,"last_update":"2026-03-22T11:44:57.479425125Z"} +2026/03/22 11:45:02 [transform_engine] {"stage_name":"transform_engine","events_processed":686,"events_dropped":0,"avg_latency_ms":6676.298773395018,"throughput_eps":0,"last_update":"2026-03-22T11:44:52.479744651Z"} +2026/03/22 11:45:02 [log_collector] {"stage_name":"log_collector","events_processed":32564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6512.8,"last_update":"2026-03-22T11:44:57.367989909Z"} +2026/03/22 11:45:02 [metric_collector] {"stage_name":"metric_collector","events_processed":20609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4121.8,"last_update":"2026-03-22T11:44:57.368795793Z"} +2026/03/22 11:45:02 ───────────────────────────────────────────────── +2026/03/22 11:45:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:45:07 [detection_layer] {"stage_name":"detection_layer","events_processed":683,"events_dropped":0,"avg_latency_ms":20.519984371583018,"throughput_eps":0,"last_update":"2026-03-22T11:45:02.479324496Z"} +2026/03/22 11:45:07 [transform_engine] {"stage_name":"transform_engine","events_processed":686,"events_dropped":0,"avg_latency_ms":6676.298773395018,"throughput_eps":0,"last_update":"2026-03-22T11:44:52.479744651Z"} +2026/03/22 11:45:07 [log_collector] {"stage_name":"log_collector","events_processed":32567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6513.4,"last_update":"2026-03-22T11:45:07.368824263Z"} +2026/03/22 11:45:07 [metric_collector] {"stage_name":"metric_collector","events_processed":20614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4122.8,"last_update":"2026-03-22T11:45:02.36912113Z"} +2026/03/22 11:45:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:45:02.378012571Z"} +2026/03/22 11:45:07 ───────────────────────────────────────────────── +2026/03/22 11:45:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:45:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:45:07.377749019Z"} +2026/03/22 11:45:12 [detection_layer] {"stage_name":"detection_layer","events_processed":683,"events_dropped":0,"avg_latency_ms":20.519984371583018,"throughput_eps":0,"last_update":"2026-03-22T11:45:07.479970415Z"} +2026/03/22 11:45:12 [transform_engine] {"stage_name":"transform_engine","events_processed":686,"events_dropped":0,"avg_latency_ms":6676.298773395018,"throughput_eps":0,"last_update":"2026-03-22T11:44:52.479744651Z"} +2026/03/22 11:45:12 [log_collector] {"stage_name":"log_collector","events_processed":32567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6513.4,"last_update":"2026-03-22T11:45:07.368824263Z"} +2026/03/22 11:45:12 [metric_collector] {"stage_name":"metric_collector","events_processed":20619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4123.8,"last_update":"2026-03-22T11:45:07.369127824Z"} +2026/03/22 11:45:12 ───────────────────────────────────────────────── +2026/03/22 11:45:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:45:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:45:12.376064209Z"} +2026/03/22 11:45:17 [detection_layer] {"stage_name":"detection_layer","events_processed":683,"events_dropped":0,"avg_latency_ms":20.519984371583018,"throughput_eps":0,"last_update":"2026-03-22T11:45:12.479263949Z"} +2026/03/22 11:45:17 [transform_engine] {"stage_name":"transform_engine","events_processed":686,"events_dropped":0,"avg_latency_ms":6676.298773395018,"throughput_eps":0,"last_update":"2026-03-22T11:44:52.479744651Z"} +2026/03/22 11:45:17 [log_collector] {"stage_name":"log_collector","events_processed":32567,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6513.4,"last_update":"2026-03-22T11:45:12.368520027Z"} +2026/03/22 11:45:17 [metric_collector] {"stage_name":"metric_collector","events_processed":20624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4124.8,"last_update":"2026-03-22T11:45:12.368694842Z"} +2026/03/22 11:45:17 ───────────────────────────────────────────────── +2026/03/22 11:45:17 [ANOMALY] time=2026-03-22T11:45:17Z score=0.9131 method=SEAD details=MAD!:w=0.64,s=0.99 RRCF-fast!:w=0.10,s=0.92 RRCF-mid!:w=0.08,s=0.95 RRCF-slow!:w=0.07,s=0.96 COPOD!:w=0.11,s=0.44 +2026/03/22 11:45:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:45:22 [log_collector] {"stage_name":"log_collector","events_processed":32577,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6515.4,"last_update":"2026-03-22T11:45:17.368732719Z"} +2026/03/22 11:45:22 [metric_collector] {"stage_name":"metric_collector","events_processed":20629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4125.8,"last_update":"2026-03-22T11:45:17.368961667Z"} +2026/03/22 11:45:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:45:17.377223442Z"} +2026/03/22 11:45:22 [detection_layer] {"stage_name":"detection_layer","events_processed":683,"events_dropped":0,"avg_latency_ms":20.519984371583018,"throughput_eps":0,"last_update":"2026-03-22T11:45:17.479495576Z"} +2026/03/22 11:45:22 [transform_engine] {"stage_name":"transform_engine","events_processed":687,"events_dropped":0,"avg_latency_ms":9397.825867916015,"throughput_eps":0,"last_update":"2026-03-22T11:45:17.763038117Z"} +2026/03/22 11:45:22 ───────────────────────────────────────────────── +2026/03/22 11:45:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:45:27 [log_collector] {"stage_name":"log_collector","events_processed":32583,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6516.6,"last_update":"2026-03-22T11:45:22.368420291Z"} +2026/03/22 11:45:27 [metric_collector] {"stage_name":"metric_collector","events_processed":20634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4126.8,"last_update":"2026-03-22T11:45:22.368924115Z"} +2026/03/22 11:45:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:45:22.383427496Z"} +2026/03/22 11:45:27 [detection_layer] {"stage_name":"detection_layer","events_processed":684,"events_dropped":0,"avg_latency_ms":19.287413897266415,"throughput_eps":0,"last_update":"2026-03-22T11:45:22.479180162Z"} +2026/03/22 11:45:27 [transform_engine] {"stage_name":"transform_engine","events_processed":687,"events_dropped":0,"avg_latency_ms":9397.825867916015,"throughput_eps":0,"last_update":"2026-03-22T11:45:22.47919458Z"} +2026/03/22 11:45:27 ───────────────────────────────────────────────── +2026/03/22 11:45:27 [ANOMALY] time=2026-03-22T11:45:27Z score=0.8216 method=SEAD details=MAD!:w=0.64,s=0.81 RRCF-fast:w=0.10,s=0.76 RRCF-mid:w=0.08,s=0.80 RRCF-slow:w=0.07,s=0.86 COPOD!:w=0.11,s=0.91 +2026/03/22 11:45:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:45:32 [detection_layer] {"stage_name":"detection_layer","events_processed":684,"events_dropped":0,"avg_latency_ms":19.287413897266415,"throughput_eps":0,"last_update":"2026-03-22T11:45:27.479688515Z"} +2026/03/22 11:45:32 [transform_engine] {"stage_name":"transform_engine","events_processed":688,"events_dropped":0,"avg_latency_ms":7542.568105332813,"throughput_eps":0,"last_update":"2026-03-22T11:45:27.601344267Z"} +2026/03/22 11:45:32 [log_collector] {"stage_name":"log_collector","events_processed":32594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6518.8,"last_update":"2026-03-22T11:45:27.368834452Z"} +2026/03/22 11:45:32 [metric_collector] {"stage_name":"metric_collector","events_processed":20639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4127.8,"last_update":"2026-03-22T11:45:27.369675522Z"} +2026/03/22 11:45:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:45:27.378449379Z"} +2026/03/22 11:45:32 ───────────────────────────────────────────────── +2026/03/22 11:45:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:45:37 [log_collector] {"stage_name":"log_collector","events_processed":32594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6518.8,"last_update":"2026-03-22T11:45:32.367998755Z"} +2026/03/22 11:45:37 [metric_collector] {"stage_name":"metric_collector","events_processed":20644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4128.8,"last_update":"2026-03-22T11:45:32.368447194Z"} +2026/03/22 11:45:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:45:32.376895557Z"} +2026/03/22 11:45:37 [detection_layer] {"stage_name":"detection_layer","events_processed":685,"events_dropped":0,"avg_latency_ms":18.829200517813135,"throughput_eps":0,"last_update":"2026-03-22T11:45:32.479145117Z"} +2026/03/22 11:45:37 [transform_engine] {"stage_name":"transform_engine","events_processed":688,"events_dropped":0,"avg_latency_ms":7542.568105332813,"throughput_eps":0,"last_update":"2026-03-22T11:45:32.479120029Z"} +2026/03/22 11:45:37 ───────────────────────────────────────────────── +2026/03/22 11:45:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:45:42 [transform_engine] {"stage_name":"transform_engine","events_processed":688,"events_dropped":0,"avg_latency_ms":7542.568105332813,"throughput_eps":0,"last_update":"2026-03-22T11:45:37.479832797Z"} +2026/03/22 11:45:42 [log_collector] {"stage_name":"log_collector","events_processed":32597,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6519.4,"last_update":"2026-03-22T11:45:37.368539543Z"} +2026/03/22 11:45:42 [metric_collector] {"stage_name":"metric_collector","events_processed":20649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4129.8,"last_update":"2026-03-22T11:45:37.36907584Z"} +2026/03/22 11:45:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:45:37.376648726Z"} +2026/03/22 11:45:42 [detection_layer] {"stage_name":"detection_layer","events_processed":685,"events_dropped":0,"avg_latency_ms":18.829200517813135,"throughput_eps":0,"last_update":"2026-03-22T11:45:37.47981934Z"} +2026/03/22 11:45:42 ───────────────────────────────────────────────── +2026/03/22 11:45:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:45:47 [log_collector] {"stage_name":"log_collector","events_processed":32608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6521.6,"last_update":"2026-03-22T11:45:42.368778539Z"} +2026/03/22 11:45:47 [metric_collector] {"stage_name":"metric_collector","events_processed":20654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4130.8,"last_update":"2026-03-22T11:45:42.368759572Z"} +2026/03/22 11:45:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:45:42.378287703Z"} +2026/03/22 11:45:47 [detection_layer] {"stage_name":"detection_layer","events_processed":685,"events_dropped":0,"avg_latency_ms":18.829200517813135,"throughput_eps":0,"last_update":"2026-03-22T11:45:42.479374477Z"} +2026/03/22 11:45:47 [transform_engine] {"stage_name":"transform_engine","events_processed":688,"events_dropped":0,"avg_latency_ms":7542.568105332813,"throughput_eps":0,"last_update":"2026-03-22T11:45:42.47940218Z"} +2026/03/22 11:45:47 ───────────────────────────────────────────────── +2026/03/22 11:45:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:45:52 [log_collector] {"stage_name":"log_collector","events_processed":32608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6521.6,"last_update":"2026-03-22T11:45:47.368528497Z"} +2026/03/22 11:45:52 [metric_collector] {"stage_name":"metric_collector","events_processed":20658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4131.6,"last_update":"2026-03-22T11:45:47.368555829Z"} +2026/03/22 11:45:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:45:47.377879799Z"} +2026/03/22 11:45:52 [detection_layer] {"stage_name":"detection_layer","events_processed":685,"events_dropped":0,"avg_latency_ms":18.829200517813135,"throughput_eps":0,"last_update":"2026-03-22T11:45:47.479235066Z"} +2026/03/22 11:45:52 [transform_engine] {"stage_name":"transform_engine","events_processed":688,"events_dropped":0,"avg_latency_ms":7542.568105332813,"throughput_eps":0,"last_update":"2026-03-22T11:45:47.479087243Z"} +2026/03/22 11:45:52 ───────────────────────────────────────────────── +2026/03/22 11:45:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:45:57 [log_collector] {"stage_name":"log_collector","events_processed":32608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6521.6,"last_update":"2026-03-22T11:45:52.368711529Z"} +2026/03/22 11:45:57 [metric_collector] {"stage_name":"metric_collector","events_processed":20664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4132.8,"last_update":"2026-03-22T11:45:52.36905151Z"} +2026/03/22 11:45:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:45:52.379401135Z"} +2026/03/22 11:45:57 [detection_layer] {"stage_name":"detection_layer","events_processed":685,"events_dropped":0,"avg_latency_ms":18.829200517813135,"throughput_eps":0,"last_update":"2026-03-22T11:45:52.479728063Z"} +2026/03/22 11:45:57 [transform_engine] {"stage_name":"transform_engine","events_processed":688,"events_dropped":0,"avg_latency_ms":7542.568105332813,"throughput_eps":0,"last_update":"2026-03-22T11:45:52.479651115Z"} +2026/03/22 11:45:57 ───────────────────────────────────────────────── +2026/03/22 11:46:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:46:02 [log_collector] {"stage_name":"log_collector","events_processed":32608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6521.6,"last_update":"2026-03-22T11:45:57.36844089Z"} +2026/03/22 11:46:02 [metric_collector] {"stage_name":"metric_collector","events_processed":20669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4133.8,"last_update":"2026-03-22T11:45:57.369254188Z"} +2026/03/22 11:46:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:45:57.378634967Z"} +2026/03/22 11:46:02 [detection_layer] {"stage_name":"detection_layer","events_processed":685,"events_dropped":0,"avg_latency_ms":18.829200517813135,"throughput_eps":0,"last_update":"2026-03-22T11:45:57.479998349Z"} +2026/03/22 11:46:02 [transform_engine] {"stage_name":"transform_engine","events_processed":689,"events_dropped":0,"avg_latency_ms":6057.08733786625,"throughput_eps":0,"last_update":"2026-03-22T11:45:57.595062165Z"} +2026/03/22 11:46:02 ───────────────────────────────────────────────── +2026/03/22 11:46:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:46:07 [log_collector] {"stage_name":"log_collector","events_processed":32608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6521.6,"last_update":"2026-03-22T11:46:02.368203792Z"} +2026/03/22 11:46:07 [metric_collector] {"stage_name":"metric_collector","events_processed":20674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4134.8,"last_update":"2026-03-22T11:46:02.36875107Z"} +2026/03/22 11:46:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:46:02.378177336Z"} +2026/03/22 11:46:07 [detection_layer] {"stage_name":"detection_layer","events_processed":686,"events_dropped":0,"avg_latency_ms":19.64520121425051,"throughput_eps":0,"last_update":"2026-03-22T11:46:02.479404698Z"} +2026/03/22 11:46:07 [transform_engine] {"stage_name":"transform_engine","events_processed":689,"events_dropped":0,"avg_latency_ms":6057.08733786625,"throughput_eps":0,"last_update":"2026-03-22T11:46:02.479417894Z"} +2026/03/22 11:46:07 ───────────────────────────────────────────────── +2026/03/22 11:46:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:46:12 [log_collector] {"stage_name":"log_collector","events_processed":32608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6521.6,"last_update":"2026-03-22T11:46:07.368003113Z"} +2026/03/22 11:46:12 [metric_collector] {"stage_name":"metric_collector","events_processed":20679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4135.8,"last_update":"2026-03-22T11:46:07.36819546Z"} +2026/03/22 11:46:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:46:07.374937485Z"} +2026/03/22 11:46:12 [detection_layer] {"stage_name":"detection_layer","events_processed":686,"events_dropped":0,"avg_latency_ms":19.64520121425051,"throughput_eps":0,"last_update":"2026-03-22T11:46:07.479354797Z"} +2026/03/22 11:46:12 [transform_engine] {"stage_name":"transform_engine","events_processed":689,"events_dropped":0,"avg_latency_ms":6057.08733786625,"throughput_eps":0,"last_update":"2026-03-22T11:46:07.47931431Z"} +2026/03/22 11:46:12 ───────────────────────────────────────────────── +2026/03/22 11:46:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:46:17 [transform_engine] {"stage_name":"transform_engine","events_processed":689,"events_dropped":0,"avg_latency_ms":6057.08733786625,"throughput_eps":0,"last_update":"2026-03-22T11:46:12.479201434Z"} +2026/03/22 11:46:17 [log_collector] {"stage_name":"log_collector","events_processed":32608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6521.6,"last_update":"2026-03-22T11:46:12.368855807Z"} +2026/03/22 11:46:17 [metric_collector] {"stage_name":"metric_collector","events_processed":20684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4136.8,"last_update":"2026-03-22T11:46:12.368907856Z"} +2026/03/22 11:46:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8276,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:46:12.37794668Z"} +2026/03/22 11:46:17 [detection_layer] {"stage_name":"detection_layer","events_processed":686,"events_dropped":0,"avg_latency_ms":19.64520121425051,"throughput_eps":0,"last_update":"2026-03-22T11:46:12.479187618Z"} +2026/03/22 11:46:17 ───────────────────────────────────────────────── +2026/03/22 11:46:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:46:22 [transform_engine] {"stage_name":"transform_engine","events_processed":689,"events_dropped":0,"avg_latency_ms":6057.08733786625,"throughput_eps":0,"last_update":"2026-03-22T11:46:17.479699759Z"} +2026/03/22 11:46:22 [log_collector] {"stage_name":"log_collector","events_processed":32608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6521.6,"last_update":"2026-03-22T11:46:17.368286446Z"} +2026/03/22 11:46:22 [metric_collector] {"stage_name":"metric_collector","events_processed":20689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4137.8,"last_update":"2026-03-22T11:46:17.36874315Z"} +2026/03/22 11:46:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:46:17.377569587Z"} +2026/03/22 11:46:22 [detection_layer] {"stage_name":"detection_layer","events_processed":686,"events_dropped":0,"avg_latency_ms":19.64520121425051,"throughput_eps":0,"last_update":"2026-03-22T11:46:17.479685792Z"} +2026/03/22 11:46:22 ───────────────────────────────────────────────── +2026/03/22 11:46:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:46:27 [log_collector] {"stage_name":"log_collector","events_processed":32608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6521.6,"last_update":"2026-03-22T11:46:22.368260422Z"} +2026/03/22 11:46:27 [metric_collector] {"stage_name":"metric_collector","events_processed":20693,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4138.6,"last_update":"2026-03-22T11:46:22.368310437Z"} +2026/03/22 11:46:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:46:22.377947458Z"} +2026/03/22 11:46:27 [detection_layer] {"stage_name":"detection_layer","events_processed":686,"events_dropped":0,"avg_latency_ms":19.64520121425051,"throughput_eps":0,"last_update":"2026-03-22T11:46:22.479187183Z"} +2026/03/22 11:46:27 [transform_engine] {"stage_name":"transform_engine","events_processed":689,"events_dropped":0,"avg_latency_ms":6057.08733786625,"throughput_eps":0,"last_update":"2026-03-22T11:46:22.479201711Z"} +2026/03/22 11:46:27 ───────────────────────────────────────────────── +2026/03/22 11:46:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:46:32 [log_collector] {"stage_name":"log_collector","events_processed":32608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6521.6,"last_update":"2026-03-22T11:46:27.368990674Z"} +2026/03/22 11:46:32 [metric_collector] {"stage_name":"metric_collector","events_processed":20699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4139.8,"last_update":"2026-03-22T11:46:27.369221215Z"} +2026/03/22 11:46:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:46:27.376509546Z"} +2026/03/22 11:46:32 [detection_layer] {"stage_name":"detection_layer","events_processed":686,"events_dropped":0,"avg_latency_ms":19.64520121425051,"throughput_eps":0,"last_update":"2026-03-22T11:46:27.478990559Z"} +2026/03/22 11:46:32 [transform_engine] {"stage_name":"transform_engine","events_processed":689,"events_dropped":0,"avg_latency_ms":6057.08733786625,"throughput_eps":0,"last_update":"2026-03-22T11:46:22.479201711Z"} +2026/03/22 11:46:32 ───────────────────────────────────────────────── +2026/03/22 11:46:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:46:37 [log_collector] {"stage_name":"log_collector","events_processed":32608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6521.6,"last_update":"2026-03-22T11:46:32.368297143Z"} +2026/03/22 11:46:37 [metric_collector] {"stage_name":"metric_collector","events_processed":20704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4140.8,"last_update":"2026-03-22T11:46:32.368802781Z"} +2026/03/22 11:46:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:46:32.375456978Z"} +2026/03/22 11:46:37 [detection_layer] {"stage_name":"detection_layer","events_processed":686,"events_dropped":0,"avg_latency_ms":19.64520121425051,"throughput_eps":0,"last_update":"2026-03-22T11:46:32.479074217Z"} +2026/03/22 11:46:37 [transform_engine] {"stage_name":"transform_engine","events_processed":689,"events_dropped":0,"avg_latency_ms":6057.08733786625,"throughput_eps":0,"last_update":"2026-03-22T11:46:22.479201711Z"} +2026/03/22 11:46:37 ───────────────────────────────────────────────── +2026/03/22 11:46:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:46:42 [log_collector] {"stage_name":"log_collector","events_processed":32608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6521.6,"last_update":"2026-03-22T11:46:37.36797295Z"} +2026/03/22 11:46:42 [metric_collector] {"stage_name":"metric_collector","events_processed":20709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4141.8,"last_update":"2026-03-22T11:46:37.368275159Z"} +2026/03/22 11:46:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8286,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:46:37.377291199Z"} +2026/03/22 11:46:42 [detection_layer] {"stage_name":"detection_layer","events_processed":686,"events_dropped":0,"avg_latency_ms":19.64520121425051,"throughput_eps":0,"last_update":"2026-03-22T11:46:37.479586085Z"} +2026/03/22 11:46:42 [transform_engine] {"stage_name":"transform_engine","events_processed":689,"events_dropped":0,"avg_latency_ms":6057.08733786625,"throughput_eps":0,"last_update":"2026-03-22T11:46:22.479201711Z"} +2026/03/22 11:46:42 ───────────────────────────────────────────────── +2026/03/22 11:46:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:46:47 [transform_engine] {"stage_name":"transform_engine","events_processed":689,"events_dropped":0,"avg_latency_ms":6057.08733786625,"throughput_eps":0,"last_update":"2026-03-22T11:46:22.479201711Z"} +2026/03/22 11:46:47 [log_collector] {"stage_name":"log_collector","events_processed":32608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6521.6,"last_update":"2026-03-22T11:46:47.368389071Z"} +2026/03/22 11:46:47 [metric_collector] {"stage_name":"metric_collector","events_processed":20714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4142.8,"last_update":"2026-03-22T11:46:42.368771853Z"} +2026/03/22 11:46:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:46:42.377802762Z"} +2026/03/22 11:46:47 [detection_layer] {"stage_name":"detection_layer","events_processed":686,"events_dropped":0,"avg_latency_ms":19.64520121425051,"throughput_eps":0,"last_update":"2026-03-22T11:46:42.480014429Z"} +2026/03/22 11:46:47 ───────────────────────────────────────────────── +2026/03/22 11:46:48 [ANOMALY] time=2026-03-22T11:46:48Z score=0.8548 method=SEAD details=MAD!:w=0.64,s=0.97 RRCF-fast:w=0.10,s=0.82 RRCF-mid!:w=0.08,s=0.90 RRCF-slow!:w=0.07,s=0.92 COPOD!:w=0.11,s=0.17 +Saved state: 15 clusters, 32609 messages, reason: none +Saved state: 16 clusters, 32614 messages, reason: cluster_created +Saved state: 17 clusters, 32615 messages, reason: cluster_created +Saved state: 18 clusters, 32616 messages, reason: cluster_created +Saved state: 19 clusters, 32617 messages, reason: cluster_created +Saved state: 19 clusters, 32618 messages, reason: cluster_template_changed +Saved state: 19 clusters, 32619 messages, reason: cluster_template_changed +Saved state: 19 clusters, 32621 messages, reason: cluster_template_changed +Saved state: 19 clusters, 32622 messages, reason: cluster_template_changed +Saved state: 20 clusters, 32623 messages, reason: cluster_created +Saved state: 20 clusters, 32625 messages, reason: cluster_template_changed +Saved state: 20 clusters, 32626 messages, reason: cluster_template_changed +Saved state: 21 clusters, 32627 messages, reason: cluster_created +Saved state: 21 clusters, 32628 messages, reason: cluster_template_changed +Saved state: 21 clusters, 32629 messages, reason: cluster_template_changed +Saved state: 22 clusters, 32630 messages, reason: cluster_created +Saved state: 22 clusters, 32631 messages, reason: cluster_template_changed +Saved state: 23 clusters, 32632 messages, reason: cluster_created +Saved state: 23 clusters, 32633 messages, reason: cluster_template_changed +2026/03/22 11:46:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:46:52 [log_collector] {"stage_name":"log_collector","events_processed":32608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6521.6,"last_update":"2026-03-22T11:46:47.368389071Z"} +2026/03/22 11:46:52 [metric_collector] {"stage_name":"metric_collector","events_processed":20719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4143.8,"last_update":"2026-03-22T11:46:47.36884259Z"} +2026/03/22 11:46:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:46:47.378022724Z"} +2026/03/22 11:46:52 [detection_layer] {"stage_name":"detection_layer","events_processed":686,"events_dropped":0,"avg_latency_ms":19.64520121425051,"throughput_eps":0,"last_update":"2026-03-22T11:46:47.479264524Z"} +2026/03/22 11:46:52 [transform_engine] {"stage_name":"transform_engine","events_processed":690,"events_dropped":0,"avg_latency_ms":9037.127918893,"throughput_eps":0,"last_update":"2026-03-22T11:46:48.436259341Z"} +2026/03/22 11:46:52 ───────────────────────────────────────────────── +2026/03/22 11:46:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:46:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:46:52.376366432Z"} +2026/03/22 11:46:57 [detection_layer] {"stage_name":"detection_layer","events_processed":687,"events_dropped":0,"avg_latency_ms":19.059625371400408,"throughput_eps":0,"last_update":"2026-03-22T11:46:52.479645002Z"} +2026/03/22 11:46:57 [transform_engine] {"stage_name":"transform_engine","events_processed":690,"events_dropped":0,"avg_latency_ms":9037.127918893,"throughput_eps":0,"last_update":"2026-03-22T11:46:52.479598233Z"} +2026/03/22 11:46:57 [log_collector] {"stage_name":"log_collector","events_processed":32633,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6526.6,"last_update":"2026-03-22T11:46:52.369076278Z"} +2026/03/22 11:46:57 [metric_collector] {"stage_name":"metric_collector","events_processed":20723,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4144.6,"last_update":"2026-03-22T11:46:52.368818103Z"} +2026/03/22 11:46:57 ───────────────────────────────────────────────── +2026/03/22 11:47:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:47:02 [log_collector] {"stage_name":"log_collector","events_processed":32633,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6526.6,"last_update":"2026-03-22T11:46:57.36838992Z"} +2026/03/22 11:47:02 [metric_collector] {"stage_name":"metric_collector","events_processed":20729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4145.8,"last_update":"2026-03-22T11:46:57.368725582Z"} +2026/03/22 11:47:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:46:57.378610667Z"} +2026/03/22 11:47:02 [detection_layer] {"stage_name":"detection_layer","events_processed":687,"events_dropped":0,"avg_latency_ms":19.059625371400408,"throughput_eps":0,"last_update":"2026-03-22T11:46:57.479928011Z"} +2026/03/22 11:47:02 [transform_engine] {"stage_name":"transform_engine","events_processed":691,"events_dropped":0,"avg_latency_ms":7247.153212314401,"throughput_eps":0,"last_update":"2026-03-22T11:46:57.567100911Z"} +2026/03/22 11:47:02 ───────────────────────────────────────────────── +2026/03/22 11:47:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:47:07 [detection_layer] {"stage_name":"detection_layer","events_processed":688,"events_dropped":0,"avg_latency_ms":18.509949297120325,"throughput_eps":0,"last_update":"2026-03-22T11:47:02.479061755Z"} +2026/03/22 11:47:07 [transform_engine] {"stage_name":"transform_engine","events_processed":691,"events_dropped":0,"avg_latency_ms":7247.153212314401,"throughput_eps":0,"last_update":"2026-03-22T11:47:02.479109507Z"} +2026/03/22 11:47:07 [log_collector] {"stage_name":"log_collector","events_processed":32633,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6526.6,"last_update":"2026-03-22T11:47:02.368275423Z"} +2026/03/22 11:47:07 [metric_collector] {"stage_name":"metric_collector","events_processed":20734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4146.8,"last_update":"2026-03-22T11:47:02.368721267Z"} +2026/03/22 11:47:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:47:02.37887703Z"} +2026/03/22 11:47:07 ───────────────────────────────────────────────── +2026/03/22 11:47:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:47:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:47:07.378795887Z"} +2026/03/22 11:47:12 [detection_layer] {"stage_name":"detection_layer","events_processed":688,"events_dropped":0,"avg_latency_ms":18.509949297120325,"throughput_eps":0,"last_update":"2026-03-22T11:47:07.478978888Z"} +2026/03/22 11:47:12 [transform_engine] {"stage_name":"transform_engine","events_processed":691,"events_dropped":0,"avg_latency_ms":7247.153212314401,"throughput_eps":0,"last_update":"2026-03-22T11:47:07.479006651Z"} +2026/03/22 11:47:12 [log_collector] {"stage_name":"log_collector","events_processed":32633,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6526.6,"last_update":"2026-03-22T11:47:07.368254465Z"} +2026/03/22 11:47:12 [metric_collector] {"stage_name":"metric_collector","events_processed":20739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4147.8,"last_update":"2026-03-22T11:47:07.368711021Z"} +2026/03/22 11:47:12 ───────────────────────────────────────────────── +2026/03/22 11:47:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:47:17 [metric_collector] {"stage_name":"metric_collector","events_processed":20744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4148.8,"last_update":"2026-03-22T11:47:12.368423037Z"} +2026/03/22 11:47:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:47:12.378148777Z"} +2026/03/22 11:47:17 [detection_layer] {"stage_name":"detection_layer","events_processed":688,"events_dropped":0,"avg_latency_ms":18.509949297120325,"throughput_eps":0,"last_update":"2026-03-22T11:47:12.479378513Z"} +2026/03/22 11:47:17 [transform_engine] {"stage_name":"transform_engine","events_processed":691,"events_dropped":0,"avg_latency_ms":7247.153212314401,"throughput_eps":0,"last_update":"2026-03-22T11:47:12.479402208Z"} +2026/03/22 11:47:17 [log_collector] {"stage_name":"log_collector","events_processed":32633,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6526.6,"last_update":"2026-03-22T11:47:12.36799104Z"} +2026/03/22 11:47:17 ───────────────────────────────────────────────── +Saved state: 23 clusters, 32635 messages, reason: cluster_template_changed +2026/03/22 11:47:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:47:22 [metric_collector] {"stage_name":"metric_collector","events_processed":20749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4149.8,"last_update":"2026-03-22T11:47:17.369142763Z"} +2026/03/22 11:47:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:47:17.377735672Z"} +2026/03/22 11:47:22 [detection_layer] {"stage_name":"detection_layer","events_processed":688,"events_dropped":0,"avg_latency_ms":18.509949297120325,"throughput_eps":0,"last_update":"2026-03-22T11:47:17.478966261Z"} +2026/03/22 11:47:22 [transform_engine] {"stage_name":"transform_engine","events_processed":691,"events_dropped":0,"avg_latency_ms":7247.153212314401,"throughput_eps":0,"last_update":"2026-03-22T11:47:17.478917788Z"} +2026/03/22 11:47:22 [log_collector] {"stage_name":"log_collector","events_processed":32633,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6526.6,"last_update":"2026-03-22T11:47:17.36803438Z"} +2026/03/22 11:47:22 ───────────────────────────────────────────────── +2026/03/22 11:47:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:47:27 [log_collector] {"stage_name":"log_collector","events_processed":32636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6527.2,"last_update":"2026-03-22T11:47:22.368271268Z"} +2026/03/22 11:47:27 [metric_collector] {"stage_name":"metric_collector","events_processed":20754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4150.8,"last_update":"2026-03-22T11:47:22.368266078Z"} +2026/03/22 11:47:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:47:22.38015397Z"} +2026/03/22 11:47:27 [detection_layer] {"stage_name":"detection_layer","events_processed":688,"events_dropped":0,"avg_latency_ms":18.509949297120325,"throughput_eps":0,"last_update":"2026-03-22T11:47:22.479378404Z"} +2026/03/22 11:47:27 [transform_engine] {"stage_name":"transform_engine","events_processed":691,"events_dropped":0,"avg_latency_ms":7247.153212314401,"throughput_eps":0,"last_update":"2026-03-22T11:47:22.479363374Z"} +2026/03/22 11:47:27 ───────────────────────────────────────────────── +2026/03/22 11:47:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:47:32 [metric_collector] {"stage_name":"metric_collector","events_processed":20759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4151.8,"last_update":"2026-03-22T11:47:27.368820793Z"} +2026/03/22 11:47:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:47:27.376314196Z"} +2026/03/22 11:47:32 [detection_layer] {"stage_name":"detection_layer","events_processed":688,"events_dropped":0,"avg_latency_ms":18.509949297120325,"throughput_eps":0,"last_update":"2026-03-22T11:47:27.479501932Z"} +2026/03/22 11:47:32 [transform_engine] {"stage_name":"transform_engine","events_processed":692,"events_dropped":0,"avg_latency_ms":6161.7534750515215,"throughput_eps":0,"last_update":"2026-03-22T11:47:29.299686085Z"} +2026/03/22 11:47:32 [log_collector] {"stage_name":"log_collector","events_processed":32636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6527.2,"last_update":"2026-03-22T11:47:27.36859478Z"} +2026/03/22 11:47:32 ───────────────────────────────────────────────── +2026/03/22 11:47:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:47:37 [log_collector] {"stage_name":"log_collector","events_processed":32636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6527.2,"last_update":"2026-03-22T11:47:32.368421428Z"} +2026/03/22 11:47:37 [metric_collector] {"stage_name":"metric_collector","events_processed":20764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4152.8,"last_update":"2026-03-22T11:47:32.368734017Z"} +2026/03/22 11:47:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:47:32.374681469Z"} +2026/03/22 11:47:37 [detection_layer] {"stage_name":"detection_layer","events_processed":689,"events_dropped":0,"avg_latency_ms":17.48079323769626,"throughput_eps":0,"last_update":"2026-03-22T11:47:32.479938359Z"} +2026/03/22 11:47:37 [transform_engine] {"stage_name":"transform_engine","events_processed":692,"events_dropped":0,"avg_latency_ms":6161.7534750515215,"throughput_eps":0,"last_update":"2026-03-22T11:47:32.479894444Z"} +2026/03/22 11:47:37 ───────────────────────────────────────────────── +2026/03/22 11:47:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:47:42 [transform_engine] {"stage_name":"transform_engine","events_processed":692,"events_dropped":0,"avg_latency_ms":6161.7534750515215,"throughput_eps":0,"last_update":"2026-03-22T11:47:37.479745608Z"} +2026/03/22 11:47:42 [log_collector] {"stage_name":"log_collector","events_processed":32636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6527.2,"last_update":"2026-03-22T11:47:37.368796155Z"} +2026/03/22 11:47:42 [metric_collector] {"stage_name":"metric_collector","events_processed":20769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4153.8,"last_update":"2026-03-22T11:47:37.369177395Z"} +2026/03/22 11:47:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:47:37.376319766Z"} +2026/03/22 11:47:42 [detection_layer] {"stage_name":"detection_layer","events_processed":689,"events_dropped":0,"avg_latency_ms":17.48079323769626,"throughput_eps":0,"last_update":"2026-03-22T11:47:37.479763733Z"} +2026/03/22 11:47:42 ───────────────────────────────────────────────── +2026/03/22 11:47:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:47:47 [log_collector] {"stage_name":"log_collector","events_processed":32636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6527.2,"last_update":"2026-03-22T11:47:42.367996468Z"} +2026/03/22 11:47:47 [metric_collector] {"stage_name":"metric_collector","events_processed":20774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4154.8,"last_update":"2026-03-22T11:47:42.368478571Z"} +2026/03/22 11:47:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:47:42.374993871Z"} +2026/03/22 11:47:47 [detection_layer] {"stage_name":"detection_layer","events_processed":689,"events_dropped":0,"avg_latency_ms":17.48079323769626,"throughput_eps":0,"last_update":"2026-03-22T11:47:42.480161038Z"} +2026/03/22 11:47:47 [transform_engine] {"stage_name":"transform_engine","events_processed":692,"events_dropped":0,"avg_latency_ms":6161.7534750515215,"throughput_eps":0,"last_update":"2026-03-22T11:47:42.479824825Z"} +2026/03/22 11:47:47 ───────────────────────────────────────────────── +2026/03/22 11:47:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:47:52 [detection_layer] {"stage_name":"detection_layer","events_processed":689,"events_dropped":0,"avg_latency_ms":17.48079323769626,"throughput_eps":0,"last_update":"2026-03-22T11:47:47.479799269Z"} +2026/03/22 11:47:52 [transform_engine] {"stage_name":"transform_engine","events_processed":692,"events_dropped":0,"avg_latency_ms":6161.7534750515215,"throughput_eps":0,"last_update":"2026-03-22T11:47:47.479781364Z"} +2026/03/22 11:47:52 [log_collector] {"stage_name":"log_collector","events_processed":32636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6527.2,"last_update":"2026-03-22T11:47:47.368724275Z"} +2026/03/22 11:47:52 [metric_collector] {"stage_name":"metric_collector","events_processed":20784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4156.8,"last_update":"2026-03-22T11:47:52.368807322Z"} +2026/03/22 11:47:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:47:47.377572523Z"} +2026/03/22 11:47:52 ───────────────────────────────────────────────── +2026/03/22 11:47:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:47:57 [log_collector] {"stage_name":"log_collector","events_processed":32636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6527.2,"last_update":"2026-03-22T11:47:52.368964354Z"} +2026/03/22 11:47:57 [metric_collector] {"stage_name":"metric_collector","events_processed":20784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4156.8,"last_update":"2026-03-22T11:47:52.368807322Z"} +2026/03/22 11:47:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:47:52.375677393Z"} +2026/03/22 11:47:57 [detection_layer] {"stage_name":"detection_layer","events_processed":689,"events_dropped":0,"avg_latency_ms":17.48079323769626,"throughput_eps":0,"last_update":"2026-03-22T11:47:52.479850196Z"} +2026/03/22 11:47:57 [transform_engine] {"stage_name":"transform_engine","events_processed":692,"events_dropped":0,"avg_latency_ms":6161.7534750515215,"throughput_eps":0,"last_update":"2026-03-22T11:47:52.479871647Z"} +2026/03/22 11:47:57 ───────────────────────────────────────────────── +2026/03/22 11:47:57 [ANOMALY] time=2026-03-22T11:47:57Z score=0.8194 method=SEAD details=MAD!:w=0.64,s=0.87 RRCF-fast!:w=0.10,s=0.98 RRCF-mid!:w=0.08,s=0.99 RRCF-slow!:w=0.07,s=0.99 COPOD!:w=0.12,s=0.17 +2026/03/22 11:48:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:48:02 [log_collector] {"stage_name":"log_collector","events_processed":32636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6527.2,"last_update":"2026-03-22T11:47:57.369154707Z"} +2026/03/22 11:48:02 [metric_collector] {"stage_name":"metric_collector","events_processed":20789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4157.8,"last_update":"2026-03-22T11:47:57.369137323Z"} +2026/03/22 11:48:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:47:57.380990869Z"} +2026/03/22 11:48:02 [detection_layer] {"stage_name":"detection_layer","events_processed":689,"events_dropped":0,"avg_latency_ms":17.48079323769626,"throughput_eps":0,"last_update":"2026-03-22T11:47:57.479235356Z"} +2026/03/22 11:48:02 [transform_engine] {"stage_name":"transform_engine","events_processed":693,"events_dropped":0,"avg_latency_ms":4944.387737641217,"throughput_eps":0,"last_update":"2026-03-22T11:47:57.554143132Z"} +2026/03/22 11:48:02 ───────────────────────────────────────────────── +2026/03/22 11:48:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:48:07 [log_collector] {"stage_name":"log_collector","events_processed":32645,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6529,"last_update":"2026-03-22T11:48:02.368972223Z"} +2026/03/22 11:48:07 [metric_collector] {"stage_name":"metric_collector","events_processed":20794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4158.8,"last_update":"2026-03-22T11:48:02.369262659Z"} +2026/03/22 11:48:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8320,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:48:02.379261251Z"} +2026/03/22 11:48:07 [detection_layer] {"stage_name":"detection_layer","events_processed":690,"events_dropped":0,"avg_latency_ms":16.95637299015701,"throughput_eps":0,"last_update":"2026-03-22T11:48:02.47961582Z"} +2026/03/22 11:48:07 [transform_engine] {"stage_name":"transform_engine","events_processed":693,"events_dropped":0,"avg_latency_ms":4944.387737641217,"throughput_eps":0,"last_update":"2026-03-22T11:48:02.479596483Z"} +2026/03/22 11:48:07 ───────────────────────────────────────────────── +2026/03/22 11:48:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:48:12 [log_collector] {"stage_name":"log_collector","events_processed":32992,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6598.4,"last_update":"2026-03-22T11:48:12.368009563Z"} +2026/03/22 11:48:12 [metric_collector] {"stage_name":"metric_collector","events_processed":20799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4159.8,"last_update":"2026-03-22T11:48:07.3688077Z"} +2026/03/22 11:48:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:48:07.375933109Z"} +2026/03/22 11:48:12 [detection_layer] {"stage_name":"detection_layer","events_processed":690,"events_dropped":0,"avg_latency_ms":16.95637299015701,"throughput_eps":0,"last_update":"2026-03-22T11:48:07.479440517Z"} +2026/03/22 11:48:12 [transform_engine] {"stage_name":"transform_engine","events_processed":693,"events_dropped":0,"avg_latency_ms":4944.387737641217,"throughput_eps":0,"last_update":"2026-03-22T11:48:07.478819037Z"} +2026/03/22 11:48:12 ───────────────────────────────────────────────── +2026/03/22 11:48:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:48:17 [detection_layer] {"stage_name":"detection_layer","events_processed":690,"events_dropped":0,"avg_latency_ms":16.95637299015701,"throughput_eps":0,"last_update":"2026-03-22T11:48:12.47965023Z"} +2026/03/22 11:48:17 [transform_engine] {"stage_name":"transform_engine","events_processed":693,"events_dropped":0,"avg_latency_ms":4944.387737641217,"throughput_eps":0,"last_update":"2026-03-22T11:48:12.479666291Z"} +2026/03/22 11:48:17 [log_collector] {"stage_name":"log_collector","events_processed":32998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6599.6,"last_update":"2026-03-22T11:48:17.367985494Z"} +2026/03/22 11:48:17 [metric_collector] {"stage_name":"metric_collector","events_processed":20804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4160.8,"last_update":"2026-03-22T11:48:12.368454064Z"} +2026/03/22 11:48:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:48:12.37644981Z"} +2026/03/22 11:48:17 ───────────────────────────────────────────────── +2026/03/22 11:48:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:48:22 [log_collector] {"stage_name":"log_collector","events_processed":32998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6599.6,"last_update":"2026-03-22T11:48:17.367985494Z"} +2026/03/22 11:48:22 [metric_collector] {"stage_name":"metric_collector","events_processed":20809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4161.8,"last_update":"2026-03-22T11:48:17.369118385Z"} +2026/03/22 11:48:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:48:17.377196288Z"} +2026/03/22 11:48:22 [detection_layer] {"stage_name":"detection_layer","events_processed":690,"events_dropped":0,"avg_latency_ms":16.95637299015701,"throughput_eps":0,"last_update":"2026-03-22T11:48:17.479400509Z"} +2026/03/22 11:48:22 [transform_engine] {"stage_name":"transform_engine","events_processed":693,"events_dropped":0,"avg_latency_ms":4944.387737641217,"throughput_eps":0,"last_update":"2026-03-22T11:48:17.479413625Z"} +2026/03/22 11:48:22 ───────────────────────────────────────────────── +Saved state: 23 clusters, 32999 messages, reason: none +2026/03/22 11:48:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:48:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:48:22.378819553Z"} +2026/03/22 11:48:27 [detection_layer] {"stage_name":"detection_layer","events_processed":690,"events_dropped":0,"avg_latency_ms":16.95637299015701,"throughput_eps":0,"last_update":"2026-03-22T11:48:22.478981043Z"} +2026/03/22 11:48:27 [transform_engine] {"stage_name":"transform_engine","events_processed":693,"events_dropped":0,"avg_latency_ms":4944.387737641217,"throughput_eps":0,"last_update":"2026-03-22T11:48:22.478994549Z"} +2026/03/22 11:48:27 [log_collector] {"stage_name":"log_collector","events_processed":32998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6599.6,"last_update":"2026-03-22T11:48:22.368495849Z"} +2026/03/22 11:48:27 [metric_collector] {"stage_name":"metric_collector","events_processed":20814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4162.8,"last_update":"2026-03-22T11:48:22.368852221Z"} +2026/03/22 11:48:27 ───────────────────────────────────────────────── +2026/03/22 11:48:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:48:32 [log_collector] {"stage_name":"log_collector","events_processed":33001,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6600.2,"last_update":"2026-03-22T11:48:32.368694967Z"} +2026/03/22 11:48:32 [metric_collector] {"stage_name":"metric_collector","events_processed":20819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4163.8,"last_update":"2026-03-22T11:48:27.36904182Z"} +2026/03/22 11:48:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8330,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:48:27.377019981Z"} +2026/03/22 11:48:32 [detection_layer] {"stage_name":"detection_layer","events_processed":690,"events_dropped":0,"avg_latency_ms":16.95637299015701,"throughput_eps":0,"last_update":"2026-03-22T11:48:27.479198404Z"} +2026/03/22 11:48:32 [transform_engine] {"stage_name":"transform_engine","events_processed":694,"events_dropped":0,"avg_latency_ms":3990.2762945129743,"throughput_eps":0,"last_update":"2026-03-22T11:48:27.653043153Z"} +2026/03/22 11:48:32 ───────────────────────────────────────────────── +2026/03/22 11:48:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:48:37 [detection_layer] {"stage_name":"detection_layer","events_processed":691,"events_dropped":0,"avg_latency_ms":18.12612099212561,"throughput_eps":0,"last_update":"2026-03-22T11:48:32.479379414Z"} +2026/03/22 11:48:37 [transform_engine] {"stage_name":"transform_engine","events_processed":694,"events_dropped":0,"avg_latency_ms":3990.2762945129743,"throughput_eps":0,"last_update":"2026-03-22T11:48:32.479390124Z"} +2026/03/22 11:48:37 [log_collector] {"stage_name":"log_collector","events_processed":33001,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6600.2,"last_update":"2026-03-22T11:48:32.368694967Z"} +2026/03/22 11:48:37 [metric_collector] {"stage_name":"metric_collector","events_processed":20824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4164.8,"last_update":"2026-03-22T11:48:32.369049036Z"} +2026/03/22 11:48:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:48:32.381849315Z"} +2026/03/22 11:48:37 ───────────────────────────────────────────────── +2026/03/22 11:48:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:48:42 [log_collector] {"stage_name":"log_collector","events_processed":33012,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6602.4,"last_update":"2026-03-22T11:48:37.368082335Z"} +2026/03/22 11:48:42 [metric_collector] {"stage_name":"metric_collector","events_processed":20829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4165.8,"last_update":"2026-03-22T11:48:37.36868544Z"} +2026/03/22 11:48:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:48:37.375987819Z"} +2026/03/22 11:48:42 [detection_layer] {"stage_name":"detection_layer","events_processed":691,"events_dropped":0,"avg_latency_ms":18.12612099212561,"throughput_eps":0,"last_update":"2026-03-22T11:48:37.478951695Z"} +2026/03/22 11:48:42 [transform_engine] {"stage_name":"transform_engine","events_processed":694,"events_dropped":0,"avg_latency_ms":3990.2762945129743,"throughput_eps":0,"last_update":"2026-03-22T11:48:37.478966684Z"} +2026/03/22 11:48:42 ───────────────────────────────────────────────── +2026/03/22 11:48:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:48:47 [log_collector] {"stage_name":"log_collector","events_processed":33028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6605.6,"last_update":"2026-03-22T11:48:42.368497387Z"} +2026/03/22 11:48:47 [metric_collector] {"stage_name":"metric_collector","events_processed":20834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4166.8,"last_update":"2026-03-22T11:48:42.368948552Z"} +2026/03/22 11:48:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:48:42.375510641Z"} +2026/03/22 11:48:47 [detection_layer] {"stage_name":"detection_layer","events_processed":691,"events_dropped":0,"avg_latency_ms":18.12612099212561,"throughput_eps":0,"last_update":"2026-03-22T11:48:42.479674758Z"} +2026/03/22 11:48:47 [transform_engine] {"stage_name":"transform_engine","events_processed":694,"events_dropped":0,"avg_latency_ms":3990.2762945129743,"throughput_eps":0,"last_update":"2026-03-22T11:48:42.479688373Z"} +2026/03/22 11:48:47 ───────────────────────────────────────────────── +2026/03/22 11:48:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:48:52 [metric_collector] {"stage_name":"metric_collector","events_processed":20839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4167.8,"last_update":"2026-03-22T11:48:47.368298301Z"} +2026/03/22 11:48:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:48:47.377007374Z"} +2026/03/22 11:48:52 [detection_layer] {"stage_name":"detection_layer","events_processed":691,"events_dropped":0,"avg_latency_ms":18.12612099212561,"throughput_eps":0,"last_update":"2026-03-22T11:48:47.47933403Z"} +2026/03/22 11:48:52 [transform_engine] {"stage_name":"transform_engine","events_processed":694,"events_dropped":0,"avg_latency_ms":3990.2762945129743,"throughput_eps":0,"last_update":"2026-03-22T11:48:47.479391921Z"} +2026/03/22 11:48:52 [log_collector] {"stage_name":"log_collector","events_processed":33028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6605.6,"last_update":"2026-03-22T11:48:52.368265743Z"} +2026/03/22 11:48:52 ───────────────────────────────────────────────── +2026/03/22 11:48:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:48:57 [log_collector] {"stage_name":"log_collector","events_processed":33028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6605.6,"last_update":"2026-03-22T11:48:52.368265743Z"} +2026/03/22 11:48:57 [metric_collector] {"stage_name":"metric_collector","events_processed":20844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4168.8,"last_update":"2026-03-22T11:48:52.368671931Z"} +2026/03/22 11:48:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:48:52.376087425Z"} +2026/03/22 11:48:57 [detection_layer] {"stage_name":"detection_layer","events_processed":691,"events_dropped":0,"avg_latency_ms":18.12612099212561,"throughput_eps":0,"last_update":"2026-03-22T11:48:52.479307984Z"} +2026/03/22 11:48:57 [transform_engine] {"stage_name":"transform_engine","events_processed":694,"events_dropped":0,"avg_latency_ms":3990.2762945129743,"throughput_eps":0,"last_update":"2026-03-22T11:48:52.479320447Z"} +2026/03/22 11:48:57 ───────────────────────────────────────────────── +2026/03/22 11:49:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:49:02 [metric_collector] {"stage_name":"metric_collector","events_processed":20849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4169.8,"last_update":"2026-03-22T11:48:57.368639762Z"} +2026/03/22 11:49:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8342,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:48:57.37900685Z"} +2026/03/22 11:49:02 [detection_layer] {"stage_name":"detection_layer","events_processed":691,"events_dropped":0,"avg_latency_ms":18.12612099212561,"throughput_eps":0,"last_update":"2026-03-22T11:48:57.479281335Z"} +2026/03/22 11:49:02 [transform_engine] {"stage_name":"transform_engine","events_processed":695,"events_dropped":0,"avg_latency_ms":3215.9521964103797,"throughput_eps":0,"last_update":"2026-03-22T11:48:57.597954552Z"} +2026/03/22 11:49:02 [log_collector] {"stage_name":"log_collector","events_processed":33028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6605.6,"last_update":"2026-03-22T11:49:02.368458045Z"} +2026/03/22 11:49:02 ───────────────────────────────────────────────── +2026/03/22 11:49:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:49:07 [log_collector] {"stage_name":"log_collector","events_processed":33028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6605.6,"last_update":"2026-03-22T11:49:07.368376256Z"} +2026/03/22 11:49:07 [metric_collector] {"stage_name":"metric_collector","events_processed":20854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4170.8,"last_update":"2026-03-22T11:49:02.368832332Z"} +2026/03/22 11:49:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:49:02.378444173Z"} +2026/03/22 11:49:07 [detection_layer] {"stage_name":"detection_layer","events_processed":692,"events_dropped":0,"avg_latency_ms":19.32229219370049,"throughput_eps":0,"last_update":"2026-03-22T11:49:02.479649441Z"} +2026/03/22 11:49:07 [transform_engine] {"stage_name":"transform_engine","events_processed":695,"events_dropped":0,"avg_latency_ms":3215.9521964103797,"throughput_eps":0,"last_update":"2026-03-22T11:49:02.479663006Z"} +2026/03/22 11:49:07 ───────────────────────────────────────────────── +2026/03/22 11:49:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:49:12 [detection_layer] {"stage_name":"detection_layer","events_processed":692,"events_dropped":0,"avg_latency_ms":19.32229219370049,"throughput_eps":0,"last_update":"2026-03-22T11:49:07.479385543Z"} +2026/03/22 11:49:12 [transform_engine] {"stage_name":"transform_engine","events_processed":695,"events_dropped":0,"avg_latency_ms":3215.9521964103797,"throughput_eps":0,"last_update":"2026-03-22T11:49:07.479406382Z"} +2026/03/22 11:49:12 [log_collector] {"stage_name":"log_collector","events_processed":33028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6605.6,"last_update":"2026-03-22T11:49:07.368376256Z"} +2026/03/22 11:49:12 [metric_collector] {"stage_name":"metric_collector","events_processed":20859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4171.8,"last_update":"2026-03-22T11:49:07.369081086Z"} +2026/03/22 11:49:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:49:07.378161749Z"} +2026/03/22 11:49:12 ───────────────────────────────────────────────── +2026/03/22 11:49:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:49:17 [metric_collector] {"stage_name":"metric_collector","events_processed":20864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4172.8,"last_update":"2026-03-22T11:49:12.369158631Z"} +2026/03/22 11:49:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:49:12.377207688Z"} +2026/03/22 11:49:17 [detection_layer] {"stage_name":"detection_layer","events_processed":692,"events_dropped":0,"avg_latency_ms":19.32229219370049,"throughput_eps":0,"last_update":"2026-03-22T11:49:12.479404325Z"} +2026/03/22 11:49:17 [transform_engine] {"stage_name":"transform_engine","events_processed":695,"events_dropped":0,"avg_latency_ms":3215.9521964103797,"throughput_eps":0,"last_update":"2026-03-22T11:49:12.479415066Z"} +2026/03/22 11:49:17 [log_collector] {"stage_name":"log_collector","events_processed":33028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6605.6,"last_update":"2026-03-22T11:49:12.368691937Z"} +2026/03/22 11:49:17 ───────────────────────────────────────────────── +2026/03/22 11:49:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:49:22 [log_collector] {"stage_name":"log_collector","events_processed":33028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6605.6,"last_update":"2026-03-22T11:49:17.368032286Z"} +2026/03/22 11:49:22 [metric_collector] {"stage_name":"metric_collector","events_processed":20869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4173.8,"last_update":"2026-03-22T11:49:17.368852277Z"} +2026/03/22 11:49:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8350,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:49:17.377318344Z"} +2026/03/22 11:49:22 [detection_layer] {"stage_name":"detection_layer","events_processed":692,"events_dropped":0,"avg_latency_ms":19.32229219370049,"throughput_eps":0,"last_update":"2026-03-22T11:49:17.479549006Z"} +2026/03/22 11:49:22 [transform_engine] {"stage_name":"transform_engine","events_processed":695,"events_dropped":0,"avg_latency_ms":3215.9521964103797,"throughput_eps":0,"last_update":"2026-03-22T11:49:17.479561761Z"} +2026/03/22 11:49:22 ───────────────────────────────────────────────── +2026/03/22 11:49:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:49:27 [transform_engine] {"stage_name":"transform_engine","events_processed":695,"events_dropped":0,"avg_latency_ms":3215.9521964103797,"throughput_eps":0,"last_update":"2026-03-22T11:49:22.479828832Z"} +2026/03/22 11:49:27 [log_collector] {"stage_name":"log_collector","events_processed":33028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6605.6,"last_update":"2026-03-22T11:49:22.368847189Z"} +2026/03/22 11:49:27 [metric_collector] {"stage_name":"metric_collector","events_processed":20874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4174.8,"last_update":"2026-03-22T11:49:22.3692076Z"} +2026/03/22 11:49:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:49:22.377615444Z"} +2026/03/22 11:49:27 [detection_layer] {"stage_name":"detection_layer","events_processed":692,"events_dropped":0,"avg_latency_ms":19.32229219370049,"throughput_eps":0,"last_update":"2026-03-22T11:49:22.479815728Z"} +2026/03/22 11:49:27 ───────────────────────────────────────────────── +2026/03/22 11:49:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:49:32 [transform_engine] {"stage_name":"transform_engine","events_processed":696,"events_dropped":0,"avg_latency_ms":2588.316271528304,"throughput_eps":0,"last_update":"2026-03-22T11:49:27.55668509Z"} +2026/03/22 11:49:32 [log_collector] {"stage_name":"log_collector","events_processed":33028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6605.6,"last_update":"2026-03-22T11:49:27.368702261Z"} +2026/03/22 11:49:32 [metric_collector] {"stage_name":"metric_collector","events_processed":20879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4175.8,"last_update":"2026-03-22T11:49:27.369015641Z"} +2026/03/22 11:49:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:49:27.376768652Z"} +2026/03/22 11:49:32 [detection_layer] {"stage_name":"detection_layer","events_processed":692,"events_dropped":0,"avg_latency_ms":19.32229219370049,"throughput_eps":0,"last_update":"2026-03-22T11:49:27.480006332Z"} +2026/03/22 11:49:32 ───────────────────────────────────────────────── +2026/03/22 11:49:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:49:37 [transform_engine] {"stage_name":"transform_engine","events_processed":696,"events_dropped":0,"avg_latency_ms":2588.316271528304,"throughput_eps":0,"last_update":"2026-03-22T11:49:32.479636914Z"} +2026/03/22 11:49:37 [log_collector] {"stage_name":"log_collector","events_processed":33028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6605.6,"last_update":"2026-03-22T11:49:37.368016331Z"} +2026/03/22 11:49:37 [metric_collector] {"stage_name":"metric_collector","events_processed":20884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4176.8,"last_update":"2026-03-22T11:49:32.368440959Z"} +2026/03/22 11:49:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:49:32.376382801Z"} +2026/03/22 11:49:37 [detection_layer] {"stage_name":"detection_layer","events_processed":693,"events_dropped":0,"avg_latency_ms":20.143468754960395,"throughput_eps":0,"last_update":"2026-03-22T11:49:32.479625953Z"} +2026/03/22 11:49:37 ───────────────────────────────────────────────── +2026/03/22 11:49:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:49:42 [detection_layer] {"stage_name":"detection_layer","events_processed":693,"events_dropped":0,"avg_latency_ms":20.143468754960395,"throughput_eps":0,"last_update":"2026-03-22T11:49:37.479678899Z"} +2026/03/22 11:49:42 [transform_engine] {"stage_name":"transform_engine","events_processed":696,"events_dropped":0,"avg_latency_ms":2588.316271528304,"throughput_eps":0,"last_update":"2026-03-22T11:49:37.479692546Z"} +2026/03/22 11:49:42 [log_collector] {"stage_name":"log_collector","events_processed":33028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6605.6,"last_update":"2026-03-22T11:49:37.368016331Z"} +2026/03/22 11:49:42 [metric_collector] {"stage_name":"metric_collector","events_processed":20889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4177.8,"last_update":"2026-03-22T11:49:37.368474709Z"} +2026/03/22 11:49:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:49:37.376360174Z"} +2026/03/22 11:49:42 ───────────────────────────────────────────────── +2026/03/22 11:49:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:49:47 [detection_layer] {"stage_name":"detection_layer","events_processed":693,"events_dropped":0,"avg_latency_ms":20.143468754960395,"throughput_eps":0,"last_update":"2026-03-22T11:49:42.479366816Z"} +2026/03/22 11:49:47 [transform_engine] {"stage_name":"transform_engine","events_processed":696,"events_dropped":0,"avg_latency_ms":2588.316271528304,"throughput_eps":0,"last_update":"2026-03-22T11:49:42.479377426Z"} +2026/03/22 11:49:47 [log_collector] {"stage_name":"log_collector","events_processed":33028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6605.6,"last_update":"2026-03-22T11:49:42.368240564Z"} +2026/03/22 11:49:47 [metric_collector] {"stage_name":"metric_collector","events_processed":20894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4178.8,"last_update":"2026-03-22T11:49:42.368478681Z"} +2026/03/22 11:49:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8360,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:49:42.375989488Z"} +2026/03/22 11:49:47 ───────────────────────────────────────────────── +2026/03/22 11:49:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:49:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:49:47.37476324Z"} +2026/03/22 11:49:52 [detection_layer] {"stage_name":"detection_layer","events_processed":693,"events_dropped":0,"avg_latency_ms":20.143468754960395,"throughput_eps":0,"last_update":"2026-03-22T11:49:47.480002646Z"} +2026/03/22 11:49:52 [transform_engine] {"stage_name":"transform_engine","events_processed":696,"events_dropped":0,"avg_latency_ms":2588.316271528304,"throughput_eps":0,"last_update":"2026-03-22T11:49:47.478891718Z"} +2026/03/22 11:49:52 [log_collector] {"stage_name":"log_collector","events_processed":33028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6605.6,"last_update":"2026-03-22T11:49:52.368002681Z"} +2026/03/22 11:49:52 [metric_collector] {"stage_name":"metric_collector","events_processed":20899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4179.8,"last_update":"2026-03-22T11:49:47.368186012Z"} +2026/03/22 11:49:52 ───────────────────────────────────────────────── +Saved state: 23 clusters, 33029 messages, reason: none +2026/03/22 11:49:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:49:57 [log_collector] {"stage_name":"log_collector","events_processed":33028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6605.6,"last_update":"2026-03-22T11:49:52.368002681Z"} +2026/03/22 11:49:57 [metric_collector] {"stage_name":"metric_collector","events_processed":20904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4180.8,"last_update":"2026-03-22T11:49:52.368436482Z"} +2026/03/22 11:49:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:49:52.376866429Z"} +2026/03/22 11:49:57 [detection_layer] {"stage_name":"detection_layer","events_processed":693,"events_dropped":0,"avg_latency_ms":20.143468754960395,"throughput_eps":0,"last_update":"2026-03-22T11:49:52.479200389Z"} +2026/03/22 11:49:57 [transform_engine] {"stage_name":"transform_engine","events_processed":696,"events_dropped":0,"avg_latency_ms":2588.316271528304,"throughput_eps":0,"last_update":"2026-03-22T11:49:52.479215427Z"} +2026/03/22 11:49:57 ───────────────────────────────────────────────── +2026/03/22 11:50:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:50:02 [transform_engine] {"stage_name":"transform_engine","events_processed":697,"events_dropped":0,"avg_latency_ms":2095.493757422643,"throughput_eps":0,"last_update":"2026-03-22T11:49:57.603500573Z"} +2026/03/22 11:50:02 [log_collector] {"stage_name":"log_collector","events_processed":33042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6608.4,"last_update":"2026-03-22T11:49:57.368599362Z"} +2026/03/22 11:50:02 [metric_collector] {"stage_name":"metric_collector","events_processed":20909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4181.8,"last_update":"2026-03-22T11:49:57.368844572Z"} +2026/03/22 11:50:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:49:57.378066206Z"} +2026/03/22 11:50:02 [detection_layer] {"stage_name":"detection_layer","events_processed":693,"events_dropped":0,"avg_latency_ms":20.143468754960395,"throughput_eps":0,"last_update":"2026-03-22T11:49:57.479330497Z"} +2026/03/22 11:50:02 ───────────────────────────────────────────────── +2026/03/22 11:50:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:50:07 [log_collector] {"stage_name":"log_collector","events_processed":33042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6608.4,"last_update":"2026-03-22T11:50:07.368404694Z"} +2026/03/22 11:50:07 [metric_collector] {"stage_name":"metric_collector","events_processed":20914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4182.8,"last_update":"2026-03-22T11:50:02.368885648Z"} +2026/03/22 11:50:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:50:02.385889129Z"} +2026/03/22 11:50:07 [detection_layer] {"stage_name":"detection_layer","events_processed":694,"events_dropped":0,"avg_latency_ms":20.402057203968315,"throughput_eps":0,"last_update":"2026-03-22T11:50:02.479129559Z"} +2026/03/22 11:50:07 [transform_engine] {"stage_name":"transform_engine","events_processed":697,"events_dropped":0,"avg_latency_ms":2095.493757422643,"throughput_eps":0,"last_update":"2026-03-22T11:50:02.479101746Z"} +2026/03/22 11:50:07 ───────────────────────────────────────────────── +2026/03/22 11:50:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:50:12 [log_collector] {"stage_name":"log_collector","events_processed":33042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6608.4,"last_update":"2026-03-22T11:50:07.368404694Z"} +2026/03/22 11:50:12 [metric_collector] {"stage_name":"metric_collector","events_processed":20919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4183.8,"last_update":"2026-03-22T11:50:07.3688256Z"} +2026/03/22 11:50:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:50:07.377968874Z"} +2026/03/22 11:50:12 [detection_layer] {"stage_name":"detection_layer","events_processed":694,"events_dropped":0,"avg_latency_ms":20.402057203968315,"throughput_eps":0,"last_update":"2026-03-22T11:50:07.47933584Z"} +2026/03/22 11:50:12 [transform_engine] {"stage_name":"transform_engine","events_processed":697,"events_dropped":0,"avg_latency_ms":2095.493757422643,"throughput_eps":0,"last_update":"2026-03-22T11:50:07.47938811Z"} +2026/03/22 11:50:12 ───────────────────────────────────────────────── +2026/03/22 11:50:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:50:17 [log_collector] {"stage_name":"log_collector","events_processed":33042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6608.4,"last_update":"2026-03-22T11:50:12.368690755Z"} +2026/03/22 11:50:17 [metric_collector] {"stage_name":"metric_collector","events_processed":20924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4184.8,"last_update":"2026-03-22T11:50:12.36897533Z"} +2026/03/22 11:50:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:50:12.37587169Z"} +2026/03/22 11:50:17 [detection_layer] {"stage_name":"detection_layer","events_processed":694,"events_dropped":0,"avg_latency_ms":20.402057203968315,"throughput_eps":0,"last_update":"2026-03-22T11:50:12.479227838Z"} +2026/03/22 11:50:17 [transform_engine] {"stage_name":"transform_engine","events_processed":697,"events_dropped":0,"avg_latency_ms":2095.493757422643,"throughput_eps":0,"last_update":"2026-03-22T11:50:12.479243799Z"} +2026/03/22 11:50:17 ───────────────────────────────────────────────── +2026/03/22 11:50:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:50:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:50:17.37932225Z"} +2026/03/22 11:50:22 [detection_layer] {"stage_name":"detection_layer","events_processed":694,"events_dropped":0,"avg_latency_ms":20.402057203968315,"throughput_eps":0,"last_update":"2026-03-22T11:50:17.479744738Z"} +2026/03/22 11:50:22 [transform_engine] {"stage_name":"transform_engine","events_processed":697,"events_dropped":0,"avg_latency_ms":2095.493757422643,"throughput_eps":0,"last_update":"2026-03-22T11:50:17.47976101Z"} +2026/03/22 11:50:22 [log_collector] {"stage_name":"log_collector","events_processed":33042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6608.4,"last_update":"2026-03-22T11:50:17.3688494Z"} +2026/03/22 11:50:22 [metric_collector] {"stage_name":"metric_collector","events_processed":20929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4185.8,"last_update":"2026-03-22T11:50:17.369104058Z"} +2026/03/22 11:50:22 ───────────────────────────────────────────────── +2026/03/22 11:50:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:50:27 [transform_engine] {"stage_name":"transform_engine","events_processed":697,"events_dropped":0,"avg_latency_ms":2095.493757422643,"throughput_eps":0,"last_update":"2026-03-22T11:50:22.479822336Z"} +2026/03/22 11:50:27 [log_collector] {"stage_name":"log_collector","events_processed":33042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6608.4,"last_update":"2026-03-22T11:50:27.368041389Z"} +2026/03/22 11:50:27 [metric_collector] {"stage_name":"metric_collector","events_processed":20934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4186.8,"last_update":"2026-03-22T11:50:22.369498842Z"} +2026/03/22 11:50:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:50:22.377450514Z"} +2026/03/22 11:50:27 [detection_layer] {"stage_name":"detection_layer","events_processed":694,"events_dropped":0,"avg_latency_ms":20.402057203968315,"throughput_eps":0,"last_update":"2026-03-22T11:50:22.479807387Z"} +2026/03/22 11:50:27 ───────────────────────────────────────────────── +2026/03/22 11:50:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:50:32 [log_collector] {"stage_name":"log_collector","events_processed":33042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6608.4,"last_update":"2026-03-22T11:50:32.368028421Z"} +2026/03/22 11:50:32 [metric_collector] {"stage_name":"metric_collector","events_processed":20939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4187.8,"last_update":"2026-03-22T11:50:27.36847529Z"} +2026/03/22 11:50:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:50:27.378468683Z"} +2026/03/22 11:50:32 [detection_layer] {"stage_name":"detection_layer","events_processed":694,"events_dropped":0,"avg_latency_ms":20.402057203968315,"throughput_eps":0,"last_update":"2026-03-22T11:50:27.47981506Z"} +2026/03/22 11:50:32 [transform_engine] {"stage_name":"transform_engine","events_processed":698,"events_dropped":0,"avg_latency_ms":1693.5671911381144,"throughput_eps":0,"last_update":"2026-03-22T11:50:27.565695522Z"} +2026/03/22 11:50:32 ───────────────────────────────────────────────── +2026/03/22 11:50:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:50:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8380,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:50:32.378539224Z"} +2026/03/22 11:50:37 [detection_layer] {"stage_name":"detection_layer","events_processed":695,"events_dropped":0,"avg_latency_ms":20.906087363174656,"throughput_eps":0,"last_update":"2026-03-22T11:50:32.479792022Z"} +2026/03/22 11:50:37 [transform_engine] {"stage_name":"transform_engine","events_processed":698,"events_dropped":0,"avg_latency_ms":1693.5671911381144,"throughput_eps":0,"last_update":"2026-03-22T11:50:32.479894639Z"} +2026/03/22 11:50:37 [log_collector] {"stage_name":"log_collector","events_processed":33042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6608.4,"last_update":"2026-03-22T11:50:32.368028421Z"} +2026/03/22 11:50:37 [metric_collector] {"stage_name":"metric_collector","events_processed":20944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4188.8,"last_update":"2026-03-22T11:50:32.368280133Z"} +2026/03/22 11:50:37 ───────────────────────────────────────────────── +2026/03/22 11:50:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:50:42 [log_collector] {"stage_name":"log_collector","events_processed":33042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6608.4,"last_update":"2026-03-22T11:50:37.368659715Z"} +2026/03/22 11:50:42 [metric_collector] {"stage_name":"metric_collector","events_processed":20949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4189.8,"last_update":"2026-03-22T11:50:37.369199468Z"} +2026/03/22 11:50:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:50:37.378542285Z"} +2026/03/22 11:50:42 [detection_layer] {"stage_name":"detection_layer","events_processed":695,"events_dropped":0,"avg_latency_ms":20.906087363174656,"throughput_eps":0,"last_update":"2026-03-22T11:50:37.479029397Z"} +2026/03/22 11:50:42 [transform_engine] {"stage_name":"transform_engine","events_processed":698,"events_dropped":0,"avg_latency_ms":1693.5671911381144,"throughput_eps":0,"last_update":"2026-03-22T11:50:37.478920958Z"} +2026/03/22 11:50:42 ───────────────────────────────────────────────── +2026/03/22 11:50:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:50:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:50:42.379369775Z"} +2026/03/22 11:50:47 [detection_layer] {"stage_name":"detection_layer","events_processed":695,"events_dropped":0,"avg_latency_ms":20.906087363174656,"throughput_eps":0,"last_update":"2026-03-22T11:50:42.479483089Z"} +2026/03/22 11:50:47 [transform_engine] {"stage_name":"transform_engine","events_processed":698,"events_dropped":0,"avg_latency_ms":1693.5671911381144,"throughput_eps":0,"last_update":"2026-03-22T11:50:42.479595254Z"} +2026/03/22 11:50:47 [log_collector] {"stage_name":"log_collector","events_processed":33042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6608.4,"last_update":"2026-03-22T11:50:42.368316672Z"} +2026/03/22 11:50:47 [metric_collector] {"stage_name":"metric_collector","events_processed":20954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4190.8,"last_update":"2026-03-22T11:50:42.368765582Z"} +2026/03/22 11:50:47 ───────────────────────────────────────────────── +2026/03/22 11:50:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:50:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:50:47.375557423Z"} +2026/03/22 11:50:52 [detection_layer] {"stage_name":"detection_layer","events_processed":695,"events_dropped":0,"avg_latency_ms":20.906087363174656,"throughput_eps":0,"last_update":"2026-03-22T11:50:47.479876384Z"} +2026/03/22 11:50:52 [transform_engine] {"stage_name":"transform_engine","events_processed":698,"events_dropped":0,"avg_latency_ms":1693.5671911381144,"throughput_eps":0,"last_update":"2026-03-22T11:50:47.479843622Z"} +2026/03/22 11:50:52 [log_collector] {"stage_name":"log_collector","events_processed":33042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6608.4,"last_update":"2026-03-22T11:50:52.368062938Z"} +2026/03/22 11:50:52 [metric_collector] {"stage_name":"metric_collector","events_processed":20959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4191.8,"last_update":"2026-03-22T11:50:47.368378713Z"} +2026/03/22 11:50:52 ───────────────────────────────────────────────── +2026/03/22 11:50:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:50:57 [log_collector] {"stage_name":"log_collector","events_processed":33042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6608.4,"last_update":"2026-03-22T11:50:52.368062938Z"} +2026/03/22 11:50:57 [metric_collector] {"stage_name":"metric_collector","events_processed":20964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4192.8,"last_update":"2026-03-22T11:50:52.368951519Z"} +2026/03/22 11:50:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8388,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:50:52.377314608Z"} +2026/03/22 11:50:57 [detection_layer] {"stage_name":"detection_layer","events_processed":695,"events_dropped":0,"avg_latency_ms":20.906087363174656,"throughput_eps":0,"last_update":"2026-03-22T11:50:52.479634732Z"} +2026/03/22 11:50:57 [transform_engine] {"stage_name":"transform_engine","events_processed":698,"events_dropped":0,"avg_latency_ms":1693.5671911381144,"throughput_eps":0,"last_update":"2026-03-22T11:50:52.479580177Z"} +2026/03/22 11:50:57 ───────────────────────────────────────────────── +Saved state: 23 clusters, 33043 messages, reason: none +2026/03/22 11:51:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:51:02 [log_collector] {"stage_name":"log_collector","events_processed":33047,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6609.4,"last_update":"2026-03-22T11:51:02.368802349Z"} +2026/03/22 11:51:02 [metric_collector] {"stage_name":"metric_collector","events_processed":20969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4193.8,"last_update":"2026-03-22T11:50:57.368276414Z"} +2026/03/22 11:51:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8390,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:50:57.376714617Z"} +2026/03/22 11:51:02 [detection_layer] {"stage_name":"detection_layer","events_processed":695,"events_dropped":0,"avg_latency_ms":20.906087363174656,"throughput_eps":0,"last_update":"2026-03-22T11:50:57.47903469Z"} +2026/03/22 11:51:02 [transform_engine] {"stage_name":"transform_engine","events_processed":699,"events_dropped":0,"avg_latency_ms":1370.0945183104916,"throughput_eps":0,"last_update":"2026-03-22T11:50:57.555180596Z"} +2026/03/22 11:51:02 ───────────────────────────────────────────────── +2026/03/22 11:51:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:51:07 [metric_collector] {"stage_name":"metric_collector","events_processed":20979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4195.8,"last_update":"2026-03-22T11:51:07.368175253Z"} +2026/03/22 11:51:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:51:02.375495409Z"} +2026/03/22 11:51:07 [detection_layer] {"stage_name":"detection_layer","events_processed":696,"events_dropped":0,"avg_latency_ms":21.476126690539726,"throughput_eps":0,"last_update":"2026-03-22T11:51:02.479737192Z"} +2026/03/22 11:51:07 [transform_engine] {"stage_name":"transform_engine","events_processed":699,"events_dropped":0,"avg_latency_ms":1370.0945183104916,"throughput_eps":0,"last_update":"2026-03-22T11:51:02.479750427Z"} +2026/03/22 11:51:07 [log_collector] {"stage_name":"log_collector","events_processed":33047,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6609.4,"last_update":"2026-03-22T11:51:02.368802349Z"} +2026/03/22 11:51:07 ───────────────────────────────────────────────── +2026/03/22 11:51:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:51:12 [detection_layer] {"stage_name":"detection_layer","events_processed":696,"events_dropped":0,"avg_latency_ms":21.476126690539726,"throughput_eps":0,"last_update":"2026-03-22T11:51:07.479722319Z"} +2026/03/22 11:51:12 [transform_engine] {"stage_name":"transform_engine","events_processed":699,"events_dropped":0,"avg_latency_ms":1370.0945183104916,"throughput_eps":0,"last_update":"2026-03-22T11:51:07.479736075Z"} +2026/03/22 11:51:12 [log_collector] {"stage_name":"log_collector","events_processed":33047,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6609.4,"last_update":"2026-03-22T11:51:07.368265334Z"} +2026/03/22 11:51:12 [metric_collector] {"stage_name":"metric_collector","events_processed":20979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4195.8,"last_update":"2026-03-22T11:51:07.368175253Z"} +2026/03/22 11:51:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:51:07.3775189Z"} +2026/03/22 11:51:12 ───────────────────────────────────────────────── +2026/03/22 11:51:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:51:17 [transform_engine] {"stage_name":"transform_engine","events_processed":699,"events_dropped":0,"avg_latency_ms":1370.0945183104916,"throughput_eps":0,"last_update":"2026-03-22T11:51:12.478884137Z"} +2026/03/22 11:51:17 [log_collector] {"stage_name":"log_collector","events_processed":33047,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6609.4,"last_update":"2026-03-22T11:51:12.367964923Z"} +2026/03/22 11:51:17 [metric_collector] {"stage_name":"metric_collector","events_processed":20984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4196.8,"last_update":"2026-03-22T11:51:12.368387953Z"} +2026/03/22 11:51:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:51:12.375379415Z"} +2026/03/22 11:51:17 [detection_layer] {"stage_name":"detection_layer","events_processed":696,"events_dropped":0,"avg_latency_ms":21.476126690539726,"throughput_eps":0,"last_update":"2026-03-22T11:51:12.480002499Z"} +2026/03/22 11:51:17 ───────────────────────────────────────────────── +2026/03/22 11:51:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:51:22 [log_collector] {"stage_name":"log_collector","events_processed":33047,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6609.4,"last_update":"2026-03-22T11:51:17.367974333Z"} +2026/03/22 11:51:22 [metric_collector] {"stage_name":"metric_collector","events_processed":20989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4197.8,"last_update":"2026-03-22T11:51:17.36820768Z"} +2026/03/22 11:51:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:51:17.378816951Z"} +2026/03/22 11:51:22 [detection_layer] {"stage_name":"detection_layer","events_processed":696,"events_dropped":0,"avg_latency_ms":21.476126690539726,"throughput_eps":0,"last_update":"2026-03-22T11:51:17.478999509Z"} +2026/03/22 11:51:22 [transform_engine] {"stage_name":"transform_engine","events_processed":699,"events_dropped":0,"avg_latency_ms":1370.0945183104916,"throughput_eps":0,"last_update":"2026-03-22T11:51:17.479013647Z"} +2026/03/22 11:51:22 ───────────────────────────────────────────────── +2026/03/22 11:51:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:51:27 [log_collector] {"stage_name":"log_collector","events_processed":33047,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6609.4,"last_update":"2026-03-22T11:51:22.368018648Z"} +2026/03/22 11:51:27 [metric_collector] {"stage_name":"metric_collector","events_processed":20994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4198.8,"last_update":"2026-03-22T11:51:22.368556489Z"} +2026/03/22 11:51:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8400,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:51:22.375925103Z"} +2026/03/22 11:51:27 [detection_layer] {"stage_name":"detection_layer","events_processed":696,"events_dropped":0,"avg_latency_ms":21.476126690539726,"throughput_eps":0,"last_update":"2026-03-22T11:51:22.479128367Z"} +2026/03/22 11:51:27 [transform_engine] {"stage_name":"transform_engine","events_processed":699,"events_dropped":0,"avg_latency_ms":1370.0945183104916,"throughput_eps":0,"last_update":"2026-03-22T11:51:22.479137234Z"} +2026/03/22 11:51:27 ───────────────────────────────────────────────── +2026/03/22 11:51:27 [ANOMALY] time=2026-03-22T11:51:27Z score=0.8112 method=SEAD details=MAD!:w=0.63,s=0.84 RRCF-fast!:w=0.10,s=0.90 RRCF-mid!:w=0.08,s=0.92 RRCF-slow!:w=0.07,s=0.93 COPOD!:w=0.12,s=0.42 +2026/03/22 11:51:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:51:32 [detection_layer] {"stage_name":"detection_layer","events_processed":696,"events_dropped":0,"avg_latency_ms":21.476126690539726,"throughput_eps":0,"last_update":"2026-03-22T11:51:27.479158874Z"} +2026/03/22 11:51:32 [transform_engine] {"stage_name":"transform_engine","events_processed":700,"events_dropped":0,"avg_latency_ms":1176.4819676483935,"throughput_eps":0,"last_update":"2026-03-22T11:51:27.881206118Z"} +2026/03/22 11:51:32 [log_collector] {"stage_name":"log_collector","events_processed":33047,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6609.4,"last_update":"2026-03-22T11:51:32.368294913Z"} +2026/03/22 11:51:32 [metric_collector] {"stage_name":"metric_collector","events_processed":21004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4200.8,"last_update":"2026-03-22T11:51:32.368175034Z"} +2026/03/22 11:51:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8402,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:51:27.373923167Z"} +2026/03/22 11:51:32 ───────────────────────────────────────────────── +2026/03/22 11:51:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:51:37 [detection_layer] {"stage_name":"detection_layer","events_processed":697,"events_dropped":0,"avg_latency_ms":20.676024152431783,"throughput_eps":0,"last_update":"2026-03-22T11:51:32.479259304Z"} +2026/03/22 11:51:37 [transform_engine] {"stage_name":"transform_engine","events_processed":700,"events_dropped":0,"avg_latency_ms":1176.4819676483935,"throughput_eps":0,"last_update":"2026-03-22T11:51:32.479235027Z"} +2026/03/22 11:51:37 [log_collector] {"stage_name":"log_collector","events_processed":33047,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6609.4,"last_update":"2026-03-22T11:51:32.368294913Z"} +2026/03/22 11:51:37 [metric_collector] {"stage_name":"metric_collector","events_processed":21004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4200.8,"last_update":"2026-03-22T11:51:32.368175034Z"} +2026/03/22 11:51:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:51:32.377024083Z"} +2026/03/22 11:51:37 ───────────────────────────────────────────────── +2026/03/22 11:51:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:51:42 [metric_collector] {"stage_name":"metric_collector","events_processed":21009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4201.8,"last_update":"2026-03-22T11:51:37.368278508Z"} +2026/03/22 11:51:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:51:37.374397999Z"} +2026/03/22 11:51:42 [detection_layer] {"stage_name":"detection_layer","events_processed":697,"events_dropped":0,"avg_latency_ms":20.676024152431783,"throughput_eps":0,"last_update":"2026-03-22T11:51:37.479690586Z"} +2026/03/22 11:51:42 [transform_engine] {"stage_name":"transform_engine","events_processed":700,"events_dropped":0,"avg_latency_ms":1176.4819676483935,"throughput_eps":0,"last_update":"2026-03-22T11:51:37.47966692Z"} +2026/03/22 11:51:42 [log_collector] {"stage_name":"log_collector","events_processed":33047,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6609.4,"last_update":"2026-03-22T11:51:37.367956751Z"} +2026/03/22 11:51:42 ───────────────────────────────────────────────── +2026/03/22 11:51:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:51:47 [transform_engine] {"stage_name":"transform_engine","events_processed":700,"events_dropped":0,"avg_latency_ms":1176.4819676483935,"throughput_eps":0,"last_update":"2026-03-22T11:51:42.47994095Z"} +2026/03/22 11:51:47 [log_collector] {"stage_name":"log_collector","events_processed":33058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6611.6,"last_update":"2026-03-22T11:51:47.368465413Z"} +2026/03/22 11:51:47 [metric_collector] {"stage_name":"metric_collector","events_processed":21014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4202.8,"last_update":"2026-03-22T11:51:42.369043808Z"} +2026/03/22 11:51:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8408,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:51:42.375463395Z"} +2026/03/22 11:51:47 [detection_layer] {"stage_name":"detection_layer","events_processed":697,"events_dropped":0,"avg_latency_ms":20.676024152431783,"throughput_eps":0,"last_update":"2026-03-22T11:51:42.479826041Z"} +2026/03/22 11:51:47 ───────────────────────────────────────────────── +2026/03/22 11:51:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:51:52 [metric_collector] {"stage_name":"metric_collector","events_processed":21019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4203.8,"last_update":"2026-03-22T11:51:47.368492485Z"} +2026/03/22 11:51:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:51:47.377926336Z"} +2026/03/22 11:51:52 [detection_layer] {"stage_name":"detection_layer","events_processed":697,"events_dropped":0,"avg_latency_ms":20.676024152431783,"throughput_eps":0,"last_update":"2026-03-22T11:51:47.479158695Z"} +2026/03/22 11:51:52 [transform_engine] {"stage_name":"transform_engine","events_processed":700,"events_dropped":0,"avg_latency_ms":1176.4819676483935,"throughput_eps":0,"last_update":"2026-03-22T11:51:47.479205265Z"} +2026/03/22 11:51:52 [log_collector] {"stage_name":"log_collector","events_processed":33058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6611.6,"last_update":"2026-03-22T11:51:47.368465413Z"} +2026/03/22 11:51:52 ───────────────────────────────────────────────── +2026/03/22 11:51:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:51:57 [metric_collector] {"stage_name":"metric_collector","events_processed":21024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4204.8,"last_update":"2026-03-22T11:51:52.368755781Z"} +2026/03/22 11:51:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:51:52.375299475Z"} +2026/03/22 11:51:57 [detection_layer] {"stage_name":"detection_layer","events_processed":697,"events_dropped":0,"avg_latency_ms":20.676024152431783,"throughput_eps":0,"last_update":"2026-03-22T11:51:52.479512453Z"} +2026/03/22 11:51:57 [transform_engine] {"stage_name":"transform_engine","events_processed":700,"events_dropped":0,"avg_latency_ms":1176.4819676483935,"throughput_eps":0,"last_update":"2026-03-22T11:51:52.47954161Z"} +2026/03/22 11:51:57 [log_collector] {"stage_name":"log_collector","events_processed":33399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6679.8,"last_update":"2026-03-22T11:51:57.368338011Z"} +2026/03/22 11:51:57 ───────────────────────────────────────────────── +2026/03/22 11:52:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:52:02 [log_collector] {"stage_name":"log_collector","events_processed":33399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6679.8,"last_update":"2026-03-22T11:51:57.368338011Z"} +2026/03/22 11:52:02 [metric_collector] {"stage_name":"metric_collector","events_processed":21029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4205.8,"last_update":"2026-03-22T11:51:57.369017081Z"} +2026/03/22 11:52:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:51:57.374786452Z"} +2026/03/22 11:52:02 [detection_layer] {"stage_name":"detection_layer","events_processed":697,"events_dropped":0,"avg_latency_ms":20.676024152431783,"throughput_eps":0,"last_update":"2026-03-22T11:51:57.478955527Z"} +2026/03/22 11:52:02 [transform_engine] {"stage_name":"transform_engine","events_processed":701,"events_dropped":0,"avg_latency_ms":968.8489445187148,"throughput_eps":0,"last_update":"2026-03-22T11:51:57.617232292Z"} +2026/03/22 11:52:02 ───────────────────────────────────────────────── +2026/03/22 11:52:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:52:07 [log_collector] {"stage_name":"log_collector","events_processed":33411,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6682.2,"last_update":"2026-03-22T11:52:02.367976667Z"} +2026/03/22 11:52:07 [metric_collector] {"stage_name":"metric_collector","events_processed":21034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4206.8,"last_update":"2026-03-22T11:52:02.368727054Z"} +2026/03/22 11:52:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:52:02.376929966Z"} +2026/03/22 11:52:07 [detection_layer] {"stage_name":"detection_layer","events_processed":698,"events_dropped":0,"avg_latency_ms":20.326781121945427,"throughput_eps":0,"last_update":"2026-03-22T11:52:02.479110551Z"} +2026/03/22 11:52:07 [transform_engine] {"stage_name":"transform_engine","events_processed":701,"events_dropped":0,"avg_latency_ms":968.8489445187148,"throughput_eps":0,"last_update":"2026-03-22T11:52:02.479079813Z"} +2026/03/22 11:52:07 ───────────────────────────────────────────────── +2026/03/22 11:52:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:52:12 [metric_collector] {"stage_name":"metric_collector","events_processed":21039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4207.8,"last_update":"2026-03-22T11:52:07.368928948Z"} +2026/03/22 11:52:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:52:07.377852772Z"} +2026/03/22 11:52:12 [detection_layer] {"stage_name":"detection_layer","events_processed":698,"events_dropped":0,"avg_latency_ms":20.326781121945427,"throughput_eps":0,"last_update":"2026-03-22T11:52:07.479178809Z"} +2026/03/22 11:52:12 [transform_engine] {"stage_name":"transform_engine","events_processed":701,"events_dropped":0,"avg_latency_ms":968.8489445187148,"throughput_eps":0,"last_update":"2026-03-22T11:52:07.479235859Z"} +2026/03/22 11:52:12 [log_collector] {"stage_name":"log_collector","events_processed":33411,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6682.2,"last_update":"2026-03-22T11:52:07.368165176Z"} +2026/03/22 11:52:12 ───────────────────────────────────────────────── +2026/03/22 11:52:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:52:17 [log_collector] {"stage_name":"log_collector","events_processed":33411,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6682.2,"last_update":"2026-03-22T11:52:12.368021376Z"} +2026/03/22 11:52:17 [metric_collector] {"stage_name":"metric_collector","events_processed":21044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4208.8,"last_update":"2026-03-22T11:52:12.368296173Z"} +2026/03/22 11:52:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8420,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:52:12.377231166Z"} +2026/03/22 11:52:17 [detection_layer] {"stage_name":"detection_layer","events_processed":698,"events_dropped":0,"avg_latency_ms":20.326781121945427,"throughput_eps":0,"last_update":"2026-03-22T11:52:12.479702358Z"} +2026/03/22 11:52:17 [transform_engine] {"stage_name":"transform_engine","events_processed":701,"events_dropped":0,"avg_latency_ms":968.8489445187148,"throughput_eps":0,"last_update":"2026-03-22T11:52:12.479749128Z"} +2026/03/22 11:52:17 ───────────────────────────────────────────────── +2026/03/22 11:52:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:52:22 [log_collector] {"stage_name":"log_collector","events_processed":33411,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6682.2,"last_update":"2026-03-22T11:52:22.369087615Z"} +2026/03/22 11:52:22 [metric_collector] {"stage_name":"metric_collector","events_processed":21049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4209.8,"last_update":"2026-03-22T11:52:17.368297179Z"} +2026/03/22 11:52:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:52:17.377315062Z"} +2026/03/22 11:52:22 [detection_layer] {"stage_name":"detection_layer","events_processed":698,"events_dropped":0,"avg_latency_ms":20.326781121945427,"throughput_eps":0,"last_update":"2026-03-22T11:52:17.479538068Z"} +2026/03/22 11:52:22 [transform_engine] {"stage_name":"transform_engine","events_processed":701,"events_dropped":0,"avg_latency_ms":968.8489445187148,"throughput_eps":0,"last_update":"2026-03-22T11:52:17.479563878Z"} +2026/03/22 11:52:22 ───────────────────────────────────────────────── +2026/03/22 11:52:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:52:27 [metric_collector] {"stage_name":"metric_collector","events_processed":21054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4210.8,"last_update":"2026-03-22T11:52:22.3696275Z"} +2026/03/22 11:52:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:52:22.379317551Z"} +2026/03/22 11:52:27 [detection_layer] {"stage_name":"detection_layer","events_processed":698,"events_dropped":0,"avg_latency_ms":20.326781121945427,"throughput_eps":0,"last_update":"2026-03-22T11:52:22.479515307Z"} +2026/03/22 11:52:27 [transform_engine] {"stage_name":"transform_engine","events_processed":701,"events_dropped":0,"avg_latency_ms":968.8489445187148,"throughput_eps":0,"last_update":"2026-03-22T11:52:22.479552048Z"} +2026/03/22 11:52:27 [log_collector] {"stage_name":"log_collector","events_processed":33411,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6682.2,"last_update":"2026-03-22T11:52:22.369087615Z"} +2026/03/22 11:52:27 ───────────────────────────────────────────────── +2026/03/22 11:52:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:52:32 [metric_collector] {"stage_name":"metric_collector","events_processed":21059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4211.8,"last_update":"2026-03-22T11:52:27.368899587Z"} +2026/03/22 11:52:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:52:27.378177028Z"} +2026/03/22 11:52:32 [detection_layer] {"stage_name":"detection_layer","events_processed":698,"events_dropped":0,"avg_latency_ms":20.326781121945427,"throughput_eps":0,"last_update":"2026-03-22T11:52:27.479663874Z"} +2026/03/22 11:52:32 [transform_engine] {"stage_name":"transform_engine","events_processed":702,"events_dropped":0,"avg_latency_ms":798.5816420149719,"throughput_eps":0,"last_update":"2026-03-22T11:52:27.597122833Z"} +2026/03/22 11:52:32 [log_collector] {"stage_name":"log_collector","events_processed":33411,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6682.2,"last_update":"2026-03-22T11:52:27.368227018Z"} +2026/03/22 11:52:32 ───────────────────────────────────────────────── +2026/03/22 11:52:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:52:37 [log_collector] {"stage_name":"log_collector","events_processed":33411,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6682.2,"last_update":"2026-03-22T11:52:32.368965644Z"} +2026/03/22 11:52:37 [metric_collector] {"stage_name":"metric_collector","events_processed":21064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4212.8,"last_update":"2026-03-22T11:52:32.369076766Z"} +2026/03/22 11:52:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:52:32.37862687Z"} +2026/03/22 11:52:37 [detection_layer] {"stage_name":"detection_layer","events_processed":699,"events_dropped":0,"avg_latency_ms":21.439535497556342,"throughput_eps":0,"last_update":"2026-03-22T11:52:32.480099307Z"} +2026/03/22 11:52:37 [transform_engine] {"stage_name":"transform_engine","events_processed":702,"events_dropped":0,"avg_latency_ms":798.5816420149719,"throughput_eps":0,"last_update":"2026-03-22T11:52:32.479976622Z"} +2026/03/22 11:52:37 ───────────────────────────────────────────────── +2026/03/22 11:52:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:52:42 [log_collector] {"stage_name":"log_collector","events_processed":33411,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6682.2,"last_update":"2026-03-22T11:52:37.368002167Z"} +2026/03/22 11:52:42 [metric_collector] {"stage_name":"metric_collector","events_processed":21069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4213.8,"last_update":"2026-03-22T11:52:37.368691347Z"} +2026/03/22 11:52:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:52:37.378259264Z"} +2026/03/22 11:52:42 [detection_layer] {"stage_name":"detection_layer","events_processed":699,"events_dropped":0,"avg_latency_ms":21.439535497556342,"throughput_eps":0,"last_update":"2026-03-22T11:52:37.479485621Z"} +2026/03/22 11:52:42 [transform_engine] {"stage_name":"transform_engine","events_processed":702,"events_dropped":0,"avg_latency_ms":798.5816420149719,"throughput_eps":0,"last_update":"2026-03-22T11:52:37.479463269Z"} +2026/03/22 11:52:42 ───────────────────────────────────────────────── +2026/03/22 11:52:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:52:47 [transform_engine] {"stage_name":"transform_engine","events_processed":702,"events_dropped":0,"avg_latency_ms":798.5816420149719,"throughput_eps":0,"last_update":"2026-03-22T11:52:42.479476281Z"} +2026/03/22 11:52:47 [log_collector] {"stage_name":"log_collector","events_processed":33411,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6682.2,"last_update":"2026-03-22T11:52:47.367980328Z"} +2026/03/22 11:52:47 [metric_collector] {"stage_name":"metric_collector","events_processed":21074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4214.8,"last_update":"2026-03-22T11:52:42.368326125Z"} +2026/03/22 11:52:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:52:42.37928116Z"} +2026/03/22 11:52:47 [detection_layer] {"stage_name":"detection_layer","events_processed":699,"events_dropped":0,"avg_latency_ms":21.439535497556342,"throughput_eps":0,"last_update":"2026-03-22T11:52:42.479508583Z"} +2026/03/22 11:52:47 ───────────────────────────────────────────────── +2026/03/22 11:52:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:52:52 [log_collector] {"stage_name":"log_collector","events_processed":33411,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6682.2,"last_update":"2026-03-22T11:52:47.367980328Z"} +2026/03/22 11:52:52 [metric_collector] {"stage_name":"metric_collector","events_processed":21079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4215.8,"last_update":"2026-03-22T11:52:47.368578203Z"} +2026/03/22 11:52:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:52:47.378545736Z"} +2026/03/22 11:52:52 [detection_layer] {"stage_name":"detection_layer","events_processed":699,"events_dropped":0,"avg_latency_ms":21.439535497556342,"throughput_eps":0,"last_update":"2026-03-22T11:52:47.479741935Z"} +2026/03/22 11:52:52 [transform_engine] {"stage_name":"transform_engine","events_processed":702,"events_dropped":0,"avg_latency_ms":798.5816420149719,"throughput_eps":0,"last_update":"2026-03-22T11:52:47.479716917Z"} +2026/03/22 11:52:52 ───────────────────────────────────────────────── +2026/03/22 11:52:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:52:57 [detection_layer] {"stage_name":"detection_layer","events_processed":699,"events_dropped":0,"avg_latency_ms":21.439535497556342,"throughput_eps":0,"last_update":"2026-03-22T11:52:52.479262942Z"} +2026/03/22 11:52:57 [transform_engine] {"stage_name":"transform_engine","events_processed":702,"events_dropped":0,"avg_latency_ms":798.5816420149719,"throughput_eps":0,"last_update":"2026-03-22T11:52:52.479298371Z"} +2026/03/22 11:52:57 [log_collector] {"stage_name":"log_collector","events_processed":33411,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6682.2,"last_update":"2026-03-22T11:52:52.367972869Z"} +2026/03/22 11:52:57 [metric_collector] {"stage_name":"metric_collector","events_processed":21084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4216.8,"last_update":"2026-03-22T11:52:52.368433261Z"} +2026/03/22 11:52:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:52:52.375022122Z"} +2026/03/22 11:52:57 ───────────────────────────────────────────────── +2026/03/22 11:53:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:53:02 [log_collector] {"stage_name":"log_collector","events_processed":33411,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6682.2,"last_update":"2026-03-22T11:52:57.367967373Z"} +2026/03/22 11:53:02 [metric_collector] {"stage_name":"metric_collector","events_processed":21089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4217.8,"last_update":"2026-03-22T11:52:57.368312825Z"} +2026/03/22 11:53:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:52:57.377538857Z"} +2026/03/22 11:53:02 [detection_layer] {"stage_name":"detection_layer","events_processed":699,"events_dropped":0,"avg_latency_ms":21.439535497556342,"throughput_eps":0,"last_update":"2026-03-22T11:52:57.479757123Z"} +2026/03/22 11:53:02 [transform_engine] {"stage_name":"transform_engine","events_processed":703,"events_dropped":0,"avg_latency_ms":653.7536620119776,"throughput_eps":0,"last_update":"2026-03-22T11:52:57.554273999Z"} +2026/03/22 11:53:02 ───────────────────────────────────────────────── +Saved state: 23 clusters, 33412 messages, reason: none +2026/03/22 11:53:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:53:07 [metric_collector] {"stage_name":"metric_collector","events_processed":21094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4218.8,"last_update":"2026-03-22T11:53:02.368284623Z"} +2026/03/22 11:53:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:53:02.377900813Z"} +2026/03/22 11:53:07 [detection_layer] {"stage_name":"detection_layer","events_processed":700,"events_dropped":0,"avg_latency_ms":21.871735598045074,"throughput_eps":0,"last_update":"2026-03-22T11:53:02.479133201Z"} +2026/03/22 11:53:07 [transform_engine] {"stage_name":"transform_engine","events_processed":703,"events_dropped":0,"avg_latency_ms":653.7536620119776,"throughput_eps":0,"last_update":"2026-03-22T11:53:02.479084608Z"} +2026/03/22 11:53:07 [log_collector] {"stage_name":"log_collector","events_processed":33411,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6682.2,"last_update":"2026-03-22T11:53:02.367989468Z"} +2026/03/22 11:53:07 ───────────────────────────────────────────────── +2026/03/22 11:53:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:53:12 [log_collector] {"stage_name":"log_collector","events_processed":33414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6682.8,"last_update":"2026-03-22T11:53:12.368837584Z"} +2026/03/22 11:53:12 [metric_collector] {"stage_name":"metric_collector","events_processed":21099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4219.8,"last_update":"2026-03-22T11:53:07.368952684Z"} +2026/03/22 11:53:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8442,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:53:07.377254857Z"} +2026/03/22 11:53:12 [detection_layer] {"stage_name":"detection_layer","events_processed":700,"events_dropped":0,"avg_latency_ms":21.871735598045074,"throughput_eps":0,"last_update":"2026-03-22T11:53:07.479407157Z"} +2026/03/22 11:53:12 [transform_engine] {"stage_name":"transform_engine","events_processed":703,"events_dropped":0,"avg_latency_ms":653.7536620119776,"throughput_eps":0,"last_update":"2026-03-22T11:53:07.479373633Z"} +2026/03/22 11:53:12 ───────────────────────────────────────────────── +2026/03/22 11:53:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:53:17 [log_collector] {"stage_name":"log_collector","events_processed":33414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6682.8,"last_update":"2026-03-22T11:53:12.368837584Z"} +2026/03/22 11:53:17 [metric_collector] {"stage_name":"metric_collector","events_processed":21104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4220.8,"last_update":"2026-03-22T11:53:12.369417745Z"} +2026/03/22 11:53:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:53:12.377314311Z"} +2026/03/22 11:53:17 [detection_layer] {"stage_name":"detection_layer","events_processed":700,"events_dropped":0,"avg_latency_ms":21.871735598045074,"throughput_eps":0,"last_update":"2026-03-22T11:53:12.478955482Z"} +2026/03/22 11:53:17 [transform_engine] {"stage_name":"transform_engine","events_processed":703,"events_dropped":0,"avg_latency_ms":653.7536620119776,"throughput_eps":0,"last_update":"2026-03-22T11:53:12.478916387Z"} +2026/03/22 11:53:17 ───────────────────────────────────────────────── +2026/03/22 11:53:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:53:22 [log_collector] {"stage_name":"log_collector","events_processed":33425,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6685,"last_update":"2026-03-22T11:53:17.367975131Z"} +2026/03/22 11:53:22 [metric_collector] {"stage_name":"metric_collector","events_processed":21109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4221.8,"last_update":"2026-03-22T11:53:17.368294873Z"} +2026/03/22 11:53:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8446,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:53:17.37729876Z"} +2026/03/22 11:53:22 [detection_layer] {"stage_name":"detection_layer","events_processed":700,"events_dropped":0,"avg_latency_ms":21.871735598045074,"throughput_eps":0,"last_update":"2026-03-22T11:53:17.47967031Z"} +2026/03/22 11:53:22 [transform_engine] {"stage_name":"transform_engine","events_processed":703,"events_dropped":0,"avg_latency_ms":653.7536620119776,"throughput_eps":0,"last_update":"2026-03-22T11:53:17.479621587Z"} +2026/03/22 11:53:22 ───────────────────────────────────────────────── +2026/03/22 11:53:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:53:27 [log_collector] {"stage_name":"log_collector","events_processed":33439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6687.8,"last_update":"2026-03-22T11:53:22.368841236Z"} +2026/03/22 11:53:27 [metric_collector] {"stage_name":"metric_collector","events_processed":21114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4222.8,"last_update":"2026-03-22T11:53:22.369221204Z"} +2026/03/22 11:53:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:53:22.378403201Z"} +2026/03/22 11:53:27 [detection_layer] {"stage_name":"detection_layer","events_processed":700,"events_dropped":0,"avg_latency_ms":21.871735598045074,"throughput_eps":0,"last_update":"2026-03-22T11:53:22.47958858Z"} +2026/03/22 11:53:27 [transform_engine] {"stage_name":"transform_engine","events_processed":703,"events_dropped":0,"avg_latency_ms":653.7536620119776,"throughput_eps":0,"last_update":"2026-03-22T11:53:22.479565135Z"} +2026/03/22 11:53:27 ───────────────────────────────────────────────── +2026/03/22 11:53:27 [ANOMALY] time=2026-03-22T11:53:27Z score=0.7668 method=SEAD details=MAD!:w=0.64,s=0.78 RRCF-fast:w=0.10,s=0.78 RRCF-mid:w=0.08,s=0.65 RRCF-slow:w=0.07,s=0.78 COPOD!:w=0.12,s=0.76 +2026/03/22 11:53:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:53:32 [transform_engine] {"stage_name":"transform_engine","events_processed":704,"events_dropped":0,"avg_latency_ms":549.1344238095821,"throughput_eps":0,"last_update":"2026-03-22T11:53:27.610329037Z"} +2026/03/22 11:53:32 [log_collector] {"stage_name":"log_collector","events_processed":33441,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6688.2,"last_update":"2026-03-22T11:53:27.368214312Z"} +2026/03/22 11:53:32 [metric_collector] {"stage_name":"metric_collector","events_processed":21119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4223.8,"last_update":"2026-03-22T11:53:27.368642652Z"} +2026/03/22 11:53:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:53:27.375457817Z"} +2026/03/22 11:53:32 [detection_layer] {"stage_name":"detection_layer","events_processed":700,"events_dropped":0,"avg_latency_ms":21.871735598045074,"throughput_eps":0,"last_update":"2026-03-22T11:53:27.479640296Z"} +2026/03/22 11:53:32 ───────────────────────────────────────────────── +2026/03/22 11:53:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:53:37 [log_collector] {"stage_name":"log_collector","events_processed":33455,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6691,"last_update":"2026-03-22T11:53:37.368066799Z"} +2026/03/22 11:53:37 [metric_collector] {"stage_name":"metric_collector","events_processed":21124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4224.8,"last_update":"2026-03-22T11:53:32.368330841Z"} +2026/03/22 11:53:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8452,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:53:32.381139736Z"} +2026/03/22 11:53:37 [detection_layer] {"stage_name":"detection_layer","events_processed":701,"events_dropped":0,"avg_latency_ms":20.634447478436062,"throughput_eps":0,"last_update":"2026-03-22T11:53:32.479614873Z"} +2026/03/22 11:53:37 [transform_engine] {"stage_name":"transform_engine","events_processed":704,"events_dropped":0,"avg_latency_ms":549.1344238095821,"throughput_eps":0,"last_update":"2026-03-22T11:53:32.479667032Z"} +2026/03/22 11:53:37 ───────────────────────────────────────────────── +2026/03/22 11:53:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:53:42 [log_collector] {"stage_name":"log_collector","events_processed":33455,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6691,"last_update":"2026-03-22T11:53:37.368066799Z"} +2026/03/22 11:53:42 [metric_collector] {"stage_name":"metric_collector","events_processed":21129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4225.8,"last_update":"2026-03-22T11:53:37.368466905Z"} +2026/03/22 11:53:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:53:37.377393463Z"} +2026/03/22 11:53:42 [detection_layer] {"stage_name":"detection_layer","events_processed":701,"events_dropped":0,"avg_latency_ms":20.634447478436062,"throughput_eps":0,"last_update":"2026-03-22T11:53:37.479597633Z"} +2026/03/22 11:53:42 [transform_engine] {"stage_name":"transform_engine","events_processed":704,"events_dropped":0,"avg_latency_ms":549.1344238095821,"throughput_eps":0,"last_update":"2026-03-22T11:53:37.479536977Z"} +2026/03/22 11:53:42 ───────────────────────────────────────────────── +2026/03/22 11:53:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:53:47 [log_collector] {"stage_name":"log_collector","events_processed":33455,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6691,"last_update":"2026-03-22T11:53:42.367990525Z"} +2026/03/22 11:53:47 [metric_collector] {"stage_name":"metric_collector","events_processed":21134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4226.8,"last_update":"2026-03-22T11:53:42.368860341Z"} +2026/03/22 11:53:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:53:42.378610588Z"} +2026/03/22 11:53:47 [detection_layer] {"stage_name":"detection_layer","events_processed":701,"events_dropped":0,"avg_latency_ms":20.634447478436062,"throughput_eps":0,"last_update":"2026-03-22T11:53:42.47978766Z"} +2026/03/22 11:53:47 [transform_engine] {"stage_name":"transform_engine","events_processed":704,"events_dropped":0,"avg_latency_ms":549.1344238095821,"throughput_eps":0,"last_update":"2026-03-22T11:53:42.479743074Z"} +2026/03/22 11:53:47 ───────────────────────────────────────────────── +2026/03/22 11:53:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:53:52 [log_collector] {"stage_name":"log_collector","events_processed":33455,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6691,"last_update":"2026-03-22T11:53:47.367995806Z"} +2026/03/22 11:53:52 [metric_collector] {"stage_name":"metric_collector","events_processed":21139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4227.8,"last_update":"2026-03-22T11:53:47.368304418Z"} +2026/03/22 11:53:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:53:47.377750952Z"} +2026/03/22 11:53:52 [detection_layer] {"stage_name":"detection_layer","events_processed":701,"events_dropped":0,"avg_latency_ms":20.634447478436062,"throughput_eps":0,"last_update":"2026-03-22T11:53:47.479025851Z"} +2026/03/22 11:53:52 [transform_engine] {"stage_name":"transform_engine","events_processed":704,"events_dropped":0,"avg_latency_ms":549.1344238095821,"throughput_eps":0,"last_update":"2026-03-22T11:53:47.478914187Z"} +2026/03/22 11:53:52 ───────────────────────────────────────────────── +2026/03/22 11:53:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:53:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:53:52.378127273Z"} +2026/03/22 11:53:57 [detection_layer] {"stage_name":"detection_layer","events_processed":701,"events_dropped":0,"avg_latency_ms":20.634447478436062,"throughput_eps":0,"last_update":"2026-03-22T11:53:52.479341587Z"} +2026/03/22 11:53:57 [transform_engine] {"stage_name":"transform_engine","events_processed":704,"events_dropped":0,"avg_latency_ms":549.1344238095821,"throughput_eps":0,"last_update":"2026-03-22T11:53:52.479285569Z"} +2026/03/22 11:53:57 [log_collector] {"stage_name":"log_collector","events_processed":33455,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6691,"last_update":"2026-03-22T11:53:52.36865078Z"} +2026/03/22 11:53:57 [metric_collector] {"stage_name":"metric_collector","events_processed":21144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4228.8,"last_update":"2026-03-22T11:53:52.36868699Z"} +2026/03/22 11:53:57 ───────────────────────────────────────────────── +2026/03/22 11:54:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:54:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:53:57.376696452Z"} +2026/03/22 11:54:02 [detection_layer] {"stage_name":"detection_layer","events_processed":701,"events_dropped":0,"avg_latency_ms":20.634447478436062,"throughput_eps":0,"last_update":"2026-03-22T11:53:57.479992381Z"} +2026/03/22 11:54:02 [transform_engine] {"stage_name":"transform_engine","events_processed":705,"events_dropped":0,"avg_latency_ms":463.97233804766574,"throughput_eps":0,"last_update":"2026-03-22T11:53:57.602169048Z"} +2026/03/22 11:54:02 [log_collector] {"stage_name":"log_collector","events_processed":33455,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6691,"last_update":"2026-03-22T11:53:57.368230074Z"} +2026/03/22 11:54:02 [metric_collector] {"stage_name":"metric_collector","events_processed":21149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4229.8,"last_update":"2026-03-22T11:53:57.368830534Z"} +2026/03/22 11:54:02 ───────────────────────────────────────────────── +2026/03/22 11:54:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:54:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:54:02.378119665Z"} +2026/03/22 11:54:07 [detection_layer] {"stage_name":"detection_layer","events_processed":702,"events_dropped":0,"avg_latency_ms":21.490821382748848,"throughput_eps":0,"last_update":"2026-03-22T11:54:02.479312187Z"} +2026/03/22 11:54:07 [transform_engine] {"stage_name":"transform_engine","events_processed":705,"events_dropped":0,"avg_latency_ms":463.97233804766574,"throughput_eps":0,"last_update":"2026-03-22T11:54:02.479388283Z"} +2026/03/22 11:54:07 [log_collector] {"stage_name":"log_collector","events_processed":33455,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6691,"last_update":"2026-03-22T11:54:02.368038164Z"} +2026/03/22 11:54:07 [metric_collector] {"stage_name":"metric_collector","events_processed":21153,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4230.6,"last_update":"2026-03-22T11:54:02.367925909Z"} +2026/03/22 11:54:07 ───────────────────────────────────────────────── +2026/03/22 11:54:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:54:12 [detection_layer] {"stage_name":"detection_layer","events_processed":702,"events_dropped":0,"avg_latency_ms":21.490821382748848,"throughput_eps":0,"last_update":"2026-03-22T11:54:07.479125857Z"} +2026/03/22 11:54:12 [transform_engine] {"stage_name":"transform_engine","events_processed":705,"events_dropped":0,"avg_latency_ms":463.97233804766574,"throughput_eps":0,"last_update":"2026-03-22T11:54:07.479084197Z"} +2026/03/22 11:54:12 [log_collector] {"stage_name":"log_collector","events_processed":33455,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6691,"last_update":"2026-03-22T11:54:07.369023409Z"} +2026/03/22 11:54:12 [metric_collector] {"stage_name":"metric_collector","events_processed":21159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4231.8,"last_update":"2026-03-22T11:54:07.369135373Z"} +2026/03/22 11:54:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:54:07.378873556Z"} +2026/03/22 11:54:12 ───────────────────────────────────────────────── +2026/03/22 11:54:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:54:17 [log_collector] {"stage_name":"log_collector","events_processed":33455,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6691,"last_update":"2026-03-22T11:54:17.368292379Z"} +2026/03/22 11:54:17 [metric_collector] {"stage_name":"metric_collector","events_processed":21164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4232.8,"last_update":"2026-03-22T11:54:12.368892404Z"} +2026/03/22 11:54:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:54:12.377849502Z"} +2026/03/22 11:54:17 [detection_layer] {"stage_name":"detection_layer","events_processed":702,"events_dropped":0,"avg_latency_ms":21.490821382748848,"throughput_eps":0,"last_update":"2026-03-22T11:54:12.479106165Z"} +2026/03/22 11:54:17 [transform_engine] {"stage_name":"transform_engine","events_processed":705,"events_dropped":0,"avg_latency_ms":463.97233804766574,"throughput_eps":0,"last_update":"2026-03-22T11:54:12.47912447Z"} +2026/03/22 11:54:17 ───────────────────────────────────────────────── +2026/03/22 11:54:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:54:22 [log_collector] {"stage_name":"log_collector","events_processed":33455,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6691,"last_update":"2026-03-22T11:54:17.368292379Z"} +2026/03/22 11:54:22 [metric_collector] {"stage_name":"metric_collector","events_processed":21169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4233.8,"last_update":"2026-03-22T11:54:17.368727744Z"} +2026/03/22 11:54:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8470,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:54:17.378866464Z"} +2026/03/22 11:54:22 [detection_layer] {"stage_name":"detection_layer","events_processed":702,"events_dropped":0,"avg_latency_ms":21.490821382748848,"throughput_eps":0,"last_update":"2026-03-22T11:54:17.479105729Z"} +2026/03/22 11:54:22 [transform_engine] {"stage_name":"transform_engine","events_processed":705,"events_dropped":0,"avg_latency_ms":463.97233804766574,"throughput_eps":0,"last_update":"2026-03-22T11:54:17.479076133Z"} +2026/03/22 11:54:22 ───────────────────────────────────────────────── +2026/03/22 11:54:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:54:27 [detection_layer] {"stage_name":"detection_layer","events_processed":702,"events_dropped":0,"avg_latency_ms":21.490821382748848,"throughput_eps":0,"last_update":"2026-03-22T11:54:22.479699731Z"} +2026/03/22 11:54:27 [transform_engine] {"stage_name":"transform_engine","events_processed":705,"events_dropped":0,"avg_latency_ms":463.97233804766574,"throughput_eps":0,"last_update":"2026-03-22T11:54:22.479595701Z"} +2026/03/22 11:54:27 [log_collector] {"stage_name":"log_collector","events_processed":33455,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6691,"last_update":"2026-03-22T11:54:22.368407423Z"} +2026/03/22 11:54:27 [metric_collector] {"stage_name":"metric_collector","events_processed":21174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4234.8,"last_update":"2026-03-22T11:54:22.368608508Z"} +2026/03/22 11:54:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:54:22.377397323Z"} +2026/03/22 11:54:27 ───────────────────────────────────────────────── +2026/03/22 11:54:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:54:32 [transform_engine] {"stage_name":"transform_engine","events_processed":706,"events_dropped":0,"avg_latency_ms":384.2159006381326,"throughput_eps":0,"last_update":"2026-03-22T11:54:27.544492692Z"} +2026/03/22 11:54:32 [log_collector] {"stage_name":"log_collector","events_processed":33455,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6691,"last_update":"2026-03-22T11:54:27.368188798Z"} +2026/03/22 11:54:32 [metric_collector] {"stage_name":"metric_collector","events_processed":21179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4235.8,"last_update":"2026-03-22T11:54:27.368654439Z"} +2026/03/22 11:54:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:54:27.376102185Z"} +2026/03/22 11:54:32 [detection_layer] {"stage_name":"detection_layer","events_processed":702,"events_dropped":0,"avg_latency_ms":21.490821382748848,"throughput_eps":0,"last_update":"2026-03-22T11:54:27.479339824Z"} +2026/03/22 11:54:32 ───────────────────────────────────────────────── +Saved state: 23 clusters, 33456 messages, reason: none +2026/03/22 11:54:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:54:37 [transform_engine] {"stage_name":"transform_engine","events_processed":706,"events_dropped":0,"avg_latency_ms":384.2159006381326,"throughput_eps":0,"last_update":"2026-03-22T11:54:32.479453443Z"} +2026/03/22 11:54:37 [log_collector] {"stage_name":"log_collector","events_processed":33455,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6691,"last_update":"2026-03-22T11:54:32.368002913Z"} +2026/03/22 11:54:37 [metric_collector] {"stage_name":"metric_collector","events_processed":21184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4236.8,"last_update":"2026-03-22T11:54:32.368506527Z"} +2026/03/22 11:54:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8476,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:54:32.377037428Z"} +2026/03/22 11:54:37 [detection_layer] {"stage_name":"detection_layer","events_processed":703,"events_dropped":0,"avg_latency_ms":20.92629470619908,"throughput_eps":0,"last_update":"2026-03-22T11:54:32.479436661Z"} +2026/03/22 11:54:37 ───────────────────────────────────────────────── +2026/03/22 11:54:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:54:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:54:37.376095365Z"} +2026/03/22 11:54:42 [detection_layer] {"stage_name":"detection_layer","events_processed":703,"events_dropped":0,"avg_latency_ms":20.92629470619908,"throughput_eps":0,"last_update":"2026-03-22T11:54:37.479327653Z"} +2026/03/22 11:54:42 [transform_engine] {"stage_name":"transform_engine","events_processed":706,"events_dropped":0,"avg_latency_ms":384.2159006381326,"throughput_eps":0,"last_update":"2026-03-22T11:54:37.479339205Z"} +2026/03/22 11:54:42 [log_collector] {"stage_name":"log_collector","events_processed":33460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6692,"last_update":"2026-03-22T11:54:37.367962135Z"} +2026/03/22 11:54:42 [metric_collector] {"stage_name":"metric_collector","events_processed":21189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4237.8,"last_update":"2026-03-22T11:54:37.36849704Z"} +2026/03/22 11:54:42 ───────────────────────────────────────────────── +2026/03/22 11:54:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:54:47 [transform_engine] {"stage_name":"transform_engine","events_processed":706,"events_dropped":0,"avg_latency_ms":384.2159006381326,"throughput_eps":0,"last_update":"2026-03-22T11:54:42.478904231Z"} +2026/03/22 11:54:47 [log_collector] {"stage_name":"log_collector","events_processed":33460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6692,"last_update":"2026-03-22T11:54:42.368414081Z"} +2026/03/22 11:54:47 [metric_collector] {"stage_name":"metric_collector","events_processed":21194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4238.8,"last_update":"2026-03-22T11:54:42.370114959Z"} +2026/03/22 11:54:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8480,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:54:42.376584531Z"} +2026/03/22 11:54:47 [detection_layer] {"stage_name":"detection_layer","events_processed":703,"events_dropped":0,"avg_latency_ms":20.92629470619908,"throughput_eps":0,"last_update":"2026-03-22T11:54:42.479983549Z"} +2026/03/22 11:54:47 ───────────────────────────────────────────────── +2026/03/22 11:54:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:54:52 [transform_engine] {"stage_name":"transform_engine","events_processed":706,"events_dropped":0,"avg_latency_ms":384.2159006381326,"throughput_eps":0,"last_update":"2026-03-22T11:54:47.479777503Z"} +2026/03/22 11:54:52 [log_collector] {"stage_name":"log_collector","events_processed":33460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6692,"last_update":"2026-03-22T11:54:47.36864948Z"} +2026/03/22 11:54:52 [metric_collector] {"stage_name":"metric_collector","events_processed":21199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4239.8,"last_update":"2026-03-22T11:54:47.368887226Z"} +2026/03/22 11:54:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8482,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:54:47.376546286Z"} +2026/03/22 11:54:52 [detection_layer] {"stage_name":"detection_layer","events_processed":703,"events_dropped":0,"avg_latency_ms":20.92629470619908,"throughput_eps":0,"last_update":"2026-03-22T11:54:47.479763836Z"} +2026/03/22 11:54:52 ───────────────────────────────────────────────── +2026/03/22 11:54:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:54:57 [transform_engine] {"stage_name":"transform_engine","events_processed":706,"events_dropped":0,"avg_latency_ms":384.2159006381326,"throughput_eps":0,"last_update":"2026-03-22T11:54:52.48102491Z"} +2026/03/22 11:54:57 [log_collector] {"stage_name":"log_collector","events_processed":33460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6692,"last_update":"2026-03-22T11:54:52.368865922Z"} +2026/03/22 11:54:57 [metric_collector] {"stage_name":"metric_collector","events_processed":21204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4240.8,"last_update":"2026-03-22T11:54:52.36931941Z"} +2026/03/22 11:54:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:54:52.375104472Z"} +2026/03/22 11:54:57 [detection_layer] {"stage_name":"detection_layer","events_processed":703,"events_dropped":0,"avg_latency_ms":20.92629470619908,"throughput_eps":0,"last_update":"2026-03-22T11:54:52.481011243Z"} +2026/03/22 11:54:57 ───────────────────────────────────────────────── +2026/03/22 11:55:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:55:02 [log_collector] {"stage_name":"log_collector","events_processed":33460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6692,"last_update":"2026-03-22T11:54:57.367955264Z"} +2026/03/22 11:55:02 [metric_collector] {"stage_name":"metric_collector","events_processed":21209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4241.8,"last_update":"2026-03-22T11:54:57.368272743Z"} +2026/03/22 11:55:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8486,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:54:57.374808953Z"} +2026/03/22 11:55:02 [detection_layer] {"stage_name":"detection_layer","events_processed":703,"events_dropped":0,"avg_latency_ms":20.92629470619908,"throughput_eps":0,"last_update":"2026-03-22T11:54:57.4794343Z"} +2026/03/22 11:55:02 [transform_engine] {"stage_name":"transform_engine","events_processed":707,"events_dropped":0,"avg_latency_ms":607.946669110506,"throughput_eps":0,"last_update":"2026-03-22T11:54:58.98234429Z"} +2026/03/22 11:55:02 ───────────────────────────────────────────────── +2026/03/22 11:55:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:55:07 [transform_engine] {"stage_name":"transform_engine","events_processed":707,"events_dropped":0,"avg_latency_ms":607.946669110506,"throughput_eps":0,"last_update":"2026-03-22T11:55:02.479642915Z"} +2026/03/22 11:55:07 [log_collector] {"stage_name":"log_collector","events_processed":33460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6692,"last_update":"2026-03-22T11:55:02.368692372Z"} +2026/03/22 11:55:07 [metric_collector] {"stage_name":"metric_collector","events_processed":21214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4242.8,"last_update":"2026-03-22T11:55:02.368680149Z"} +2026/03/22 11:55:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:55:02.3754938Z"} +2026/03/22 11:55:07 [detection_layer] {"stage_name":"detection_layer","events_processed":704,"events_dropped":0,"avg_latency_ms":18.957491164959265,"throughput_eps":0,"last_update":"2026-03-22T11:55:02.479626143Z"} +2026/03/22 11:55:07 ───────────────────────────────────────────────── +2026/03/22 11:55:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:55:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8490,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:55:07.375676925Z"} +2026/03/22 11:55:12 [detection_layer] {"stage_name":"detection_layer","events_processed":704,"events_dropped":0,"avg_latency_ms":18.957491164959265,"throughput_eps":0,"last_update":"2026-03-22T11:55:07.478950443Z"} +2026/03/22 11:55:12 [transform_engine] {"stage_name":"transform_engine","events_processed":707,"events_dropped":0,"avg_latency_ms":607.946669110506,"throughput_eps":0,"last_update":"2026-03-22T11:55:07.478867665Z"} +2026/03/22 11:55:12 [log_collector] {"stage_name":"log_collector","events_processed":33460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6692,"last_update":"2026-03-22T11:55:07.368202418Z"} +2026/03/22 11:55:12 [metric_collector] {"stage_name":"metric_collector","events_processed":21219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4243.8,"last_update":"2026-03-22T11:55:07.368684952Z"} +2026/03/22 11:55:12 ───────────────────────────────────────────────── +2026/03/22 11:55:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:55:17 [log_collector] {"stage_name":"log_collector","events_processed":33460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6692,"last_update":"2026-03-22T11:55:12.36841042Z"} +2026/03/22 11:55:17 [metric_collector] {"stage_name":"metric_collector","events_processed":21224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4244.8,"last_update":"2026-03-22T11:55:12.368751683Z"} +2026/03/22 11:55:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:55:12.378264806Z"} +2026/03/22 11:55:17 [detection_layer] {"stage_name":"detection_layer","events_processed":704,"events_dropped":0,"avg_latency_ms":18.957491164959265,"throughput_eps":0,"last_update":"2026-03-22T11:55:12.479431709Z"} +2026/03/22 11:55:17 [transform_engine] {"stage_name":"transform_engine","events_processed":707,"events_dropped":0,"avg_latency_ms":607.946669110506,"throughput_eps":0,"last_update":"2026-03-22T11:55:12.479445755Z"} +2026/03/22 11:55:17 ───────────────────────────────────────────────── +2026/03/22 11:55:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:55:22 [detection_layer] {"stage_name":"detection_layer","events_processed":704,"events_dropped":0,"avg_latency_ms":18.957491164959265,"throughput_eps":0,"last_update":"2026-03-22T11:55:17.479868898Z"} +2026/03/22 11:55:22 [transform_engine] {"stage_name":"transform_engine","events_processed":707,"events_dropped":0,"avg_latency_ms":607.946669110506,"throughput_eps":0,"last_update":"2026-03-22T11:55:17.479883316Z"} +2026/03/22 11:55:22 [log_collector] {"stage_name":"log_collector","events_processed":33469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6693.8,"last_update":"2026-03-22T11:55:17.368007512Z"} +2026/03/22 11:55:22 [metric_collector] {"stage_name":"metric_collector","events_processed":21229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4245.8,"last_update":"2026-03-22T11:55:17.3683045Z"} +2026/03/22 11:55:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:55:17.375668906Z"} +2026/03/22 11:55:22 ───────────────────────────────────────────────── +2026/03/22 11:55:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:55:27 [log_collector] {"stage_name":"log_collector","events_processed":33471,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6694.2,"last_update":"2026-03-22T11:55:22.368719256Z"} +2026/03/22 11:55:27 [metric_collector] {"stage_name":"metric_collector","events_processed":21234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4246.8,"last_update":"2026-03-22T11:55:22.368911805Z"} +2026/03/22 11:55:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8496,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:55:22.379029235Z"} +2026/03/22 11:55:27 [detection_layer] {"stage_name":"detection_layer","events_processed":704,"events_dropped":0,"avg_latency_ms":18.957491164959265,"throughput_eps":0,"last_update":"2026-03-22T11:55:22.479318527Z"} +2026/03/22 11:55:27 [transform_engine] {"stage_name":"transform_engine","events_processed":707,"events_dropped":0,"avg_latency_ms":607.946669110506,"throughput_eps":0,"last_update":"2026-03-22T11:55:22.479332743Z"} +2026/03/22 11:55:27 ───────────────────────────────────────────────── +2026/03/22 11:55:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:55:32 [log_collector] {"stage_name":"log_collector","events_processed":33574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6714.8,"last_update":"2026-03-22T11:55:27.368008245Z"} +2026/03/22 11:55:32 [metric_collector] {"stage_name":"metric_collector","events_processed":21239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4247.8,"last_update":"2026-03-22T11:55:27.368474318Z"} +2026/03/22 11:55:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8498,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:55:27.374889025Z"} +2026/03/22 11:55:32 [detection_layer] {"stage_name":"detection_layer","events_processed":704,"events_dropped":0,"avg_latency_ms":18.957491164959265,"throughput_eps":0,"last_update":"2026-03-22T11:55:27.479124645Z"} +2026/03/22 11:55:32 [transform_engine] {"stage_name":"transform_engine","events_processed":707,"events_dropped":0,"avg_latency_ms":607.946669110506,"throughput_eps":0,"last_update":"2026-03-22T11:55:27.479084197Z"} +2026/03/22 11:55:32 ───────────────────────────────────────────────── +Saved state: 23 clusters, 33823 messages, reason: none +2026/03/22 11:55:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:55:37 [log_collector] {"stage_name":"log_collector","events_processed":33816,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6763.2,"last_update":"2026-03-22T11:55:32.367976893Z"} +2026/03/22 11:55:37 [metric_collector] {"stage_name":"metric_collector","events_processed":21249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4249.8,"last_update":"2026-03-22T11:55:37.368228012Z"} +2026/03/22 11:55:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:55:32.375453555Z"} +2026/03/22 11:55:37 [detection_layer] {"stage_name":"detection_layer","events_processed":705,"events_dropped":0,"avg_latency_ms":19.683926731967414,"throughput_eps":0,"last_update":"2026-03-22T11:55:32.479807833Z"} +2026/03/22 11:55:37 [transform_engine] {"stage_name":"transform_engine","events_processed":708,"events_dropped":0,"avg_latency_ms":666.3555042884049,"throughput_eps":0,"last_update":"2026-03-22T11:55:32.479924205Z"} +2026/03/22 11:55:37 ───────────────────────────────────────────────── +2026/03/22 11:55:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:55:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:55:37.375309918Z"} +2026/03/22 11:55:42 [detection_layer] {"stage_name":"detection_layer","events_processed":705,"events_dropped":0,"avg_latency_ms":19.683926731967414,"throughput_eps":0,"last_update":"2026-03-22T11:55:37.47953051Z"} +2026/03/22 11:55:42 [transform_engine] {"stage_name":"transform_engine","events_processed":708,"events_dropped":0,"avg_latency_ms":666.3555042884049,"throughput_eps":0,"last_update":"2026-03-22T11:55:37.47958286Z"} +2026/03/22 11:55:42 [log_collector] {"stage_name":"log_collector","events_processed":33825,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6765,"last_update":"2026-03-22T11:55:37.368410132Z"} +2026/03/22 11:55:42 [metric_collector] {"stage_name":"metric_collector","events_processed":21249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4249.8,"last_update":"2026-03-22T11:55:37.368228012Z"} +2026/03/22 11:55:42 ───────────────────────────────────────────────── +2026/03/22 11:55:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:55:47 [log_collector] {"stage_name":"log_collector","events_processed":33825,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6765,"last_update":"2026-03-22T11:55:42.368742365Z"} +2026/03/22 11:55:47 [metric_collector] {"stage_name":"metric_collector","events_processed":21253,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4250.6,"last_update":"2026-03-22T11:55:42.368784596Z"} +2026/03/22 11:55:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:55:42.378995445Z"} +2026/03/22 11:55:47 [detection_layer] {"stage_name":"detection_layer","events_processed":705,"events_dropped":0,"avg_latency_ms":19.683926731967414,"throughput_eps":0,"last_update":"2026-03-22T11:55:42.479229831Z"} +2026/03/22 11:55:47 [transform_engine] {"stage_name":"transform_engine","events_processed":708,"events_dropped":0,"avg_latency_ms":666.3555042884049,"throughput_eps":0,"last_update":"2026-03-22T11:55:42.479204933Z"} +2026/03/22 11:55:47 ───────────────────────────────────────────────── +2026/03/22 11:55:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:55:52 [log_collector] {"stage_name":"log_collector","events_processed":33835,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6767,"last_update":"2026-03-22T11:55:47.367987375Z"} +2026/03/22 11:55:52 [metric_collector] {"stage_name":"metric_collector","events_processed":21259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4251.8,"last_update":"2026-03-22T11:55:47.368414804Z"} +2026/03/22 11:55:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8506,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:55:47.375499665Z"} +2026/03/22 11:55:52 [detection_layer] {"stage_name":"detection_layer","events_processed":705,"events_dropped":0,"avg_latency_ms":19.683926731967414,"throughput_eps":0,"last_update":"2026-03-22T11:55:47.479752769Z"} +2026/03/22 11:55:52 [transform_engine] {"stage_name":"transform_engine","events_processed":708,"events_dropped":0,"avg_latency_ms":666.3555042884049,"throughput_eps":0,"last_update":"2026-03-22T11:55:47.47973179Z"} +2026/03/22 11:55:52 ───────────────────────────────────────────────── +2026/03/22 11:55:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:55:57 [log_collector] {"stage_name":"log_collector","events_processed":33836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6767.2,"last_update":"2026-03-22T11:55:52.367968455Z"} +2026/03/22 11:55:57 [metric_collector] {"stage_name":"metric_collector","events_processed":21264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4252.8,"last_update":"2026-03-22T11:55:52.368302776Z"} +2026/03/22 11:55:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:55:52.375328794Z"} +2026/03/22 11:55:57 [detection_layer] {"stage_name":"detection_layer","events_processed":705,"events_dropped":0,"avg_latency_ms":19.683926731967414,"throughput_eps":0,"last_update":"2026-03-22T11:55:52.479598689Z"} +2026/03/22 11:55:57 [transform_engine] {"stage_name":"transform_engine","events_processed":708,"events_dropped":0,"avg_latency_ms":666.3555042884049,"throughput_eps":0,"last_update":"2026-03-22T11:55:52.479552741Z"} +2026/03/22 11:55:57 ───────────────────────────────────────────────── +2026/03/22 11:56:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:56:02 [metric_collector] {"stage_name":"metric_collector","events_processed":21269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4253.8,"last_update":"2026-03-22T11:55:57.369115597Z"} +2026/03/22 11:56:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:55:57.378302785Z"} +2026/03/22 11:56:02 [detection_layer] {"stage_name":"detection_layer","events_processed":705,"events_dropped":0,"avg_latency_ms":19.683926731967414,"throughput_eps":0,"last_update":"2026-03-22T11:55:57.479615326Z"} +2026/03/22 11:56:02 [transform_engine] {"stage_name":"transform_engine","events_processed":708,"events_dropped":0,"avg_latency_ms":666.3555042884049,"throughput_eps":0,"last_update":"2026-03-22T11:55:57.47958617Z"} +2026/03/22 11:56:02 [log_collector] {"stage_name":"log_collector","events_processed":33852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6770.4,"last_update":"2026-03-22T11:55:57.368834789Z"} +2026/03/22 11:56:02 ───────────────────────────────────────────────── +2026/03/22 11:56:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:56:07 [detection_layer] {"stage_name":"detection_layer","events_processed":706,"events_dropped":0,"avg_latency_ms":19.919144785573934,"throughput_eps":0,"last_update":"2026-03-22T11:56:02.479450303Z"} +2026/03/22 11:56:07 [transform_engine] {"stage_name":"transform_engine","events_processed":709,"events_dropped":0,"avg_latency_ms":557.9191196307239,"throughput_eps":0,"last_update":"2026-03-22T11:56:02.479417982Z"} +2026/03/22 11:56:07 [log_collector] {"stage_name":"log_collector","events_processed":33852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6770.4,"last_update":"2026-03-22T11:56:02.368576438Z"} +2026/03/22 11:56:07 [metric_collector] {"stage_name":"metric_collector","events_processed":21274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4254.8,"last_update":"2026-03-22T11:56:02.368935857Z"} +2026/03/22 11:56:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8512,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:56:02.378172819Z"} +2026/03/22 11:56:07 ───────────────────────────────────────────────── +2026/03/22 11:56:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:56:12 [detection_layer] {"stage_name":"detection_layer","events_processed":706,"events_dropped":0,"avg_latency_ms":19.919144785573934,"throughput_eps":0,"last_update":"2026-03-22T11:56:07.479239243Z"} +2026/03/22 11:56:12 [transform_engine] {"stage_name":"transform_engine","events_processed":709,"events_dropped":0,"avg_latency_ms":557.9191196307239,"throughput_eps":0,"last_update":"2026-03-22T11:56:07.479134623Z"} +2026/03/22 11:56:12 [log_collector] {"stage_name":"log_collector","events_processed":33852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6770.4,"last_update":"2026-03-22T11:56:07.36840309Z"} +2026/03/22 11:56:12 [metric_collector] {"stage_name":"metric_collector","events_processed":21279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4255.8,"last_update":"2026-03-22T11:56:07.368539441Z"} +2026/03/22 11:56:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:56:07.376927879Z"} +2026/03/22 11:56:12 ───────────────────────────────────────────────── +2026/03/22 11:56:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:56:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:56:12.37726121Z"} +2026/03/22 11:56:17 [detection_layer] {"stage_name":"detection_layer","events_processed":706,"events_dropped":0,"avg_latency_ms":19.919144785573934,"throughput_eps":0,"last_update":"2026-03-22T11:56:12.479698165Z"} +2026/03/22 11:56:17 [transform_engine] {"stage_name":"transform_engine","events_processed":709,"events_dropped":0,"avg_latency_ms":557.9191196307239,"throughput_eps":0,"last_update":"2026-03-22T11:56:12.479811122Z"} +2026/03/22 11:56:17 [log_collector] {"stage_name":"log_collector","events_processed":33852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6770.4,"last_update":"2026-03-22T11:56:12.368028154Z"} +2026/03/22 11:56:17 [metric_collector] {"stage_name":"metric_collector","events_processed":21284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4256.8,"last_update":"2026-03-22T11:56:12.368457217Z"} +2026/03/22 11:56:17 ───────────────────────────────────────────────── +2026/03/22 11:56:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:56:22 [log_collector] {"stage_name":"log_collector","events_processed":33852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6770.4,"last_update":"2026-03-22T11:56:17.368241253Z"} +2026/03/22 11:56:22 [metric_collector] {"stage_name":"metric_collector","events_processed":21289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4257.8,"last_update":"2026-03-22T11:56:17.369171295Z"} +2026/03/22 11:56:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:56:17.377395298Z"} +2026/03/22 11:56:22 [detection_layer] {"stage_name":"detection_layer","events_processed":706,"events_dropped":0,"avg_latency_ms":19.919144785573934,"throughput_eps":0,"last_update":"2026-03-22T11:56:17.479535484Z"} +2026/03/22 11:56:22 [transform_engine] {"stage_name":"transform_engine","events_processed":709,"events_dropped":0,"avg_latency_ms":557.9191196307239,"throughput_eps":0,"last_update":"2026-03-22T11:56:17.479549241Z"} +2026/03/22 11:56:22 ───────────────────────────────────────────────── +2026/03/22 11:56:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:56:27 [transform_engine] {"stage_name":"transform_engine","events_processed":709,"events_dropped":0,"avg_latency_ms":557.9191196307239,"throughput_eps":0,"last_update":"2026-03-22T11:56:22.479218337Z"} +2026/03/22 11:56:27 [log_collector] {"stage_name":"log_collector","events_processed":33852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6770.4,"last_update":"2026-03-22T11:56:22.368159638Z"} +2026/03/22 11:56:27 [metric_collector] {"stage_name":"metric_collector","events_processed":21294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4258.8,"last_update":"2026-03-22T11:56:22.368645739Z"} +2026/03/22 11:56:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8520,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:56:22.377000142Z"} +2026/03/22 11:56:27 [detection_layer] {"stage_name":"detection_layer","events_processed":706,"events_dropped":0,"avg_latency_ms":19.919144785573934,"throughput_eps":0,"last_update":"2026-03-22T11:56:22.479204601Z"} +2026/03/22 11:56:27 ───────────────────────────────────────────────── +2026/03/22 11:56:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:56:32 [transform_engine] {"stage_name":"transform_engine","events_processed":710,"events_dropped":0,"avg_latency_ms":461.06431490457913,"throughput_eps":0,"last_update":"2026-03-22T11:56:27.553226959Z"} +2026/03/22 11:56:32 [log_collector] {"stage_name":"log_collector","events_processed":33852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6770.4,"last_update":"2026-03-22T11:56:27.367965486Z"} +2026/03/22 11:56:32 [metric_collector] {"stage_name":"metric_collector","events_processed":21299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4259.8,"last_update":"2026-03-22T11:56:27.368774977Z"} +2026/03/22 11:56:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8522,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:56:27.377169727Z"} +2026/03/22 11:56:32 [detection_layer] {"stage_name":"detection_layer","events_processed":706,"events_dropped":0,"avg_latency_ms":19.919144785573934,"throughput_eps":0,"last_update":"2026-03-22T11:56:27.479562397Z"} +2026/03/22 11:56:32 ───────────────────────────────────────────────── +2026/03/22 11:56:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:56:37 [detection_layer] {"stage_name":"detection_layer","events_processed":707,"events_dropped":0,"avg_latency_ms":20.97384502845915,"throughput_eps":0,"last_update":"2026-03-22T11:56:32.479203869Z"} +2026/03/22 11:56:37 [transform_engine] {"stage_name":"transform_engine","events_processed":710,"events_dropped":0,"avg_latency_ms":461.06431490457913,"throughput_eps":0,"last_update":"2026-03-22T11:56:32.4792307Z"} +2026/03/22 11:56:37 [log_collector] {"stage_name":"log_collector","events_processed":33852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6770.4,"last_update":"2026-03-22T11:56:32.367984702Z"} +2026/03/22 11:56:37 [metric_collector] {"stage_name":"metric_collector","events_processed":21304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4260.8,"last_update":"2026-03-22T11:56:32.368482897Z"} +2026/03/22 11:56:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:56:32.376965866Z"} +2026/03/22 11:56:37 ───────────────────────────────────────────────── +2026/03/22 11:56:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:56:42 [detection_layer] {"stage_name":"detection_layer","events_processed":707,"events_dropped":0,"avg_latency_ms":20.97384502845915,"throughput_eps":0,"last_update":"2026-03-22T11:56:37.47894409Z"} +2026/03/22 11:56:42 [transform_engine] {"stage_name":"transform_engine","events_processed":710,"events_dropped":0,"avg_latency_ms":461.06431490457913,"throughput_eps":0,"last_update":"2026-03-22T11:56:37.478872422Z"} +2026/03/22 11:56:42 [log_collector] {"stage_name":"log_collector","events_processed":33852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6770.4,"last_update":"2026-03-22T11:56:37.367983447Z"} +2026/03/22 11:56:42 [metric_collector] {"stage_name":"metric_collector","events_processed":21309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4261.8,"last_update":"2026-03-22T11:56:37.368408942Z"} +2026/03/22 11:56:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8526,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:56:37.377797756Z"} +2026/03/22 11:56:42 ───────────────────────────────────────────────── +2026/03/22 11:56:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:56:47 [log_collector] {"stage_name":"log_collector","events_processed":33852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6770.4,"last_update":"2026-03-22T11:56:42.368481098Z"} +2026/03/22 11:56:47 [metric_collector] {"stage_name":"metric_collector","events_processed":21314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4262.8,"last_update":"2026-03-22T11:56:42.368988459Z"} +2026/03/22 11:56:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:56:42.377170692Z"} +2026/03/22 11:56:47 [detection_layer] {"stage_name":"detection_layer","events_processed":707,"events_dropped":0,"avg_latency_ms":20.97384502845915,"throughput_eps":0,"last_update":"2026-03-22T11:56:42.479569835Z"} +2026/03/22 11:56:47 [transform_engine] {"stage_name":"transform_engine","events_processed":710,"events_dropped":0,"avg_latency_ms":461.06431490457913,"throughput_eps":0,"last_update":"2026-03-22T11:56:42.479646773Z"} +2026/03/22 11:56:47 ───────────────────────────────────────────────── +2026/03/22 11:56:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:56:52 [metric_collector] {"stage_name":"metric_collector","events_processed":21324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4264.8,"last_update":"2026-03-22T11:56:52.368645004Z"} +2026/03/22 11:56:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:56:47.377293354Z"} +2026/03/22 11:56:52 [detection_layer] {"stage_name":"detection_layer","events_processed":707,"events_dropped":0,"avg_latency_ms":20.97384502845915,"throughput_eps":0,"last_update":"2026-03-22T11:56:47.479532229Z"} +2026/03/22 11:56:52 [transform_engine] {"stage_name":"transform_engine","events_processed":710,"events_dropped":0,"avg_latency_ms":461.06431490457913,"throughput_eps":0,"last_update":"2026-03-22T11:56:47.479493576Z"} +2026/03/22 11:56:52 [log_collector] {"stage_name":"log_collector","events_processed":33852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6770.4,"last_update":"2026-03-22T11:56:47.368125403Z"} +2026/03/22 11:56:52 ───────────────────────────────────────────────── +2026/03/22 11:56:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:56:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8532,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:56:52.377483484Z"} +2026/03/22 11:56:57 [detection_layer] {"stage_name":"detection_layer","events_processed":707,"events_dropped":0,"avg_latency_ms":20.97384502845915,"throughput_eps":0,"last_update":"2026-03-22T11:56:52.479771543Z"} +2026/03/22 11:56:57 [transform_engine] {"stage_name":"transform_engine","events_processed":710,"events_dropped":0,"avg_latency_ms":461.06431490457913,"throughput_eps":0,"last_update":"2026-03-22T11:56:52.47972281Z"} +2026/03/22 11:56:57 [log_collector] {"stage_name":"log_collector","events_processed":33852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6770.4,"last_update":"2026-03-22T11:56:52.36866379Z"} +2026/03/22 11:56:57 [metric_collector] {"stage_name":"metric_collector","events_processed":21324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4264.8,"last_update":"2026-03-22T11:56:52.368645004Z"} +2026/03/22 11:56:57 ───────────────────────────────────────────────── +2026/03/22 11:57:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:57:02 [detection_layer] {"stage_name":"detection_layer","events_processed":707,"events_dropped":0,"avg_latency_ms":20.97384502845915,"throughput_eps":0,"last_update":"2026-03-22T11:56:57.47900076Z"} +2026/03/22 11:57:02 [transform_engine] {"stage_name":"transform_engine","events_processed":711,"events_dropped":0,"avg_latency_ms":571.8670055236634,"throughput_eps":0,"last_update":"2026-03-22T11:56:58.494014666Z"} +2026/03/22 11:57:02 [log_collector] {"stage_name":"log_collector","events_processed":33852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6770.4,"last_update":"2026-03-22T11:56:57.36850034Z"} +2026/03/22 11:57:02 [metric_collector] {"stage_name":"metric_collector","events_processed":21329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4265.8,"last_update":"2026-03-22T11:56:57.368923701Z"} +2026/03/22 11:57:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:56:57.377727104Z"} +2026/03/22 11:57:02 ───────────────────────────────────────────────── +2026/03/22 11:57:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:57:07 [transform_engine] {"stage_name":"transform_engine","events_processed":711,"events_dropped":0,"avg_latency_ms":571.8670055236634,"throughput_eps":0,"last_update":"2026-03-22T11:57:02.479642595Z"} +2026/03/22 11:57:07 [log_collector] {"stage_name":"log_collector","events_processed":33852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6770.4,"last_update":"2026-03-22T11:57:02.368311594Z"} +2026/03/22 11:57:07 [metric_collector] {"stage_name":"metric_collector","events_processed":21334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4266.8,"last_update":"2026-03-22T11:57:02.368787004Z"} +2026/03/22 11:57:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8536,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:57:02.378421409Z"} +2026/03/22 11:57:07 [detection_layer] {"stage_name":"detection_layer","events_processed":708,"events_dropped":0,"avg_latency_ms":21.60580542276732,"throughput_eps":0,"last_update":"2026-03-22T11:57:02.479629119Z"} +2026/03/22 11:57:07 ───────────────────────────────────────────────── +Saved state: 23 clusters, 33853 messages, reason: none +2026/03/22 11:57:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:57:12 [log_collector] {"stage_name":"log_collector","events_processed":33852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6770.4,"last_update":"2026-03-22T11:57:07.368052931Z"} +2026/03/22 11:57:12 [metric_collector] {"stage_name":"metric_collector","events_processed":21338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4267.6,"last_update":"2026-03-22T11:57:07.367921468Z"} +2026/03/22 11:57:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:57:07.37881225Z"} +2026/03/22 11:57:12 [detection_layer] {"stage_name":"detection_layer","events_processed":708,"events_dropped":0,"avg_latency_ms":21.60580542276732,"throughput_eps":0,"last_update":"2026-03-22T11:57:07.479246668Z"} +2026/03/22 11:57:12 [transform_engine] {"stage_name":"transform_engine","events_processed":711,"events_dropped":0,"avg_latency_ms":571.8670055236634,"throughput_eps":0,"last_update":"2026-03-22T11:57:07.47926375Z"} +2026/03/22 11:57:12 ───────────────────────────────────────────────── +2026/03/22 11:57:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:57:17 [metric_collector] {"stage_name":"metric_collector","events_processed":21344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4268.8,"last_update":"2026-03-22T11:57:12.369116921Z"} +2026/03/22 11:57:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8540,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:57:12.376270884Z"} +2026/03/22 11:57:17 [detection_layer] {"stage_name":"detection_layer","events_processed":708,"events_dropped":0,"avg_latency_ms":21.60580542276732,"throughput_eps":0,"last_update":"2026-03-22T11:57:12.479500166Z"} +2026/03/22 11:57:17 [transform_engine] {"stage_name":"transform_engine","events_processed":711,"events_dropped":0,"avg_latency_ms":571.8670055236634,"throughput_eps":0,"last_update":"2026-03-22T11:57:12.47951247Z"} +2026/03/22 11:57:17 [log_collector] {"stage_name":"log_collector","events_processed":33866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6773.2,"last_update":"2026-03-22T11:57:12.369148221Z"} +2026/03/22 11:57:17 ───────────────────────────────────────────────── +2026/03/22 11:57:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:57:22 [transform_engine] {"stage_name":"transform_engine","events_processed":711,"events_dropped":0,"avg_latency_ms":571.8670055236634,"throughput_eps":0,"last_update":"2026-03-22T11:57:17.479057459Z"} +2026/03/22 11:57:22 [log_collector] {"stage_name":"log_collector","events_processed":33866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6773.2,"last_update":"2026-03-22T11:57:17.369465139Z"} +2026/03/22 11:57:22 [metric_collector] {"stage_name":"metric_collector","events_processed":21348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4269.6,"last_update":"2026-03-22T11:57:17.368718248Z"} +2026/03/22 11:57:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8542,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:57:17.377797219Z"} +2026/03/22 11:57:22 [detection_layer] {"stage_name":"detection_layer","events_processed":708,"events_dropped":0,"avg_latency_ms":21.60580542276732,"throughput_eps":0,"last_update":"2026-03-22T11:57:17.479041108Z"} +2026/03/22 11:57:22 ───────────────────────────────────────────────── +2026/03/22 11:57:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:57:27 [log_collector] {"stage_name":"log_collector","events_processed":33866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6773.2,"last_update":"2026-03-22T11:57:22.369021089Z"} +2026/03/22 11:57:27 [metric_collector] {"stage_name":"metric_collector","events_processed":21354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4270.8,"last_update":"2026-03-22T11:57:22.369082136Z"} +2026/03/22 11:57:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:57:22.378521046Z"} +2026/03/22 11:57:27 [detection_layer] {"stage_name":"detection_layer","events_processed":708,"events_dropped":0,"avg_latency_ms":21.60580542276732,"throughput_eps":0,"last_update":"2026-03-22T11:57:22.47972614Z"} +2026/03/22 11:57:27 [transform_engine] {"stage_name":"transform_engine","events_processed":711,"events_dropped":0,"avg_latency_ms":571.8670055236634,"throughput_eps":0,"last_update":"2026-03-22T11:57:22.479737893Z"} +2026/03/22 11:57:27 ───────────────────────────────────────────────── +2026/03/22 11:57:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:57:32 [detection_layer] {"stage_name":"detection_layer","events_processed":708,"events_dropped":0,"avg_latency_ms":21.60580542276732,"throughput_eps":0,"last_update":"2026-03-22T11:57:27.479764556Z"} +2026/03/22 11:57:32 [transform_engine] {"stage_name":"transform_engine","events_processed":712,"events_dropped":0,"avg_latency_ms":477.87668141893073,"throughput_eps":0,"last_update":"2026-03-22T11:57:27.581694048Z"} +2026/03/22 11:57:32 [log_collector] {"stage_name":"log_collector","events_processed":33866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6773.2,"last_update":"2026-03-22T11:57:27.368544196Z"} +2026/03/22 11:57:32 [metric_collector] {"stage_name":"metric_collector","events_processed":21359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4271.8,"last_update":"2026-03-22T11:57:27.3690106Z"} +2026/03/22 11:57:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:57:27.378541516Z"} +2026/03/22 11:57:32 ───────────────────────────────────────────────── +2026/03/22 11:57:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:57:37 [log_collector] {"stage_name":"log_collector","events_processed":33866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6773.2,"last_update":"2026-03-22T11:57:32.368346708Z"} +2026/03/22 11:57:37 [metric_collector] {"stage_name":"metric_collector","events_processed":21364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4272.8,"last_update":"2026-03-22T11:57:32.369106503Z"} +2026/03/22 11:57:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:57:32.377811037Z"} +2026/03/22 11:57:37 [detection_layer] {"stage_name":"detection_layer","events_processed":709,"events_dropped":0,"avg_latency_ms":21.87789033821386,"throughput_eps":0,"last_update":"2026-03-22T11:57:32.478964162Z"} +2026/03/22 11:57:37 [transform_engine] {"stage_name":"transform_engine","events_processed":712,"events_dropped":0,"avg_latency_ms":477.87668141893073,"throughput_eps":0,"last_update":"2026-03-22T11:57:32.478926009Z"} +2026/03/22 11:57:37 ───────────────────────────────────────────────── +2026/03/22 11:57:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:57:42 [detection_layer] {"stage_name":"detection_layer","events_processed":709,"events_dropped":0,"avg_latency_ms":21.87789033821386,"throughput_eps":0,"last_update":"2026-03-22T11:57:37.479336003Z"} +2026/03/22 11:57:42 [transform_engine] {"stage_name":"transform_engine","events_processed":712,"events_dropped":0,"avg_latency_ms":477.87668141893073,"throughput_eps":0,"last_update":"2026-03-22T11:57:37.479389125Z"} +2026/03/22 11:57:42 [log_collector] {"stage_name":"log_collector","events_processed":33866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6773.2,"last_update":"2026-03-22T11:57:42.368045106Z"} +2026/03/22 11:57:42 [metric_collector] {"stage_name":"metric_collector","events_processed":21369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4273.8,"last_update":"2026-03-22T11:57:37.368300327Z"} +2026/03/22 11:57:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:57:37.37713468Z"} +2026/03/22 11:57:42 ───────────────────────────────────────────────── +2026/03/22 11:57:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:57:47 [log_collector] {"stage_name":"log_collector","events_processed":33866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6773.2,"last_update":"2026-03-22T11:57:42.368045106Z"} +2026/03/22 11:57:47 [metric_collector] {"stage_name":"metric_collector","events_processed":21374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4274.8,"last_update":"2026-03-22T11:57:42.36890857Z"} +2026/03/22 11:57:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:57:42.378330918Z"} +2026/03/22 11:57:47 [detection_layer] {"stage_name":"detection_layer","events_processed":709,"events_dropped":0,"avg_latency_ms":21.87789033821386,"throughput_eps":0,"last_update":"2026-03-22T11:57:42.479550591Z"} +2026/03/22 11:57:47 [transform_engine] {"stage_name":"transform_engine","events_processed":712,"events_dropped":0,"avg_latency_ms":477.87668141893073,"throughput_eps":0,"last_update":"2026-03-22T11:57:42.479566312Z"} +2026/03/22 11:57:47 ───────────────────────────────────────────────── +2026/03/22 11:57:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:57:52 [log_collector] {"stage_name":"log_collector","events_processed":33866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6773.2,"last_update":"2026-03-22T11:57:52.368389721Z"} +2026/03/22 11:57:52 [metric_collector] {"stage_name":"metric_collector","events_processed":21379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4275.8,"last_update":"2026-03-22T11:57:47.369210786Z"} +2026/03/22 11:57:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:57:47.378433271Z"} +2026/03/22 11:57:52 [detection_layer] {"stage_name":"detection_layer","events_processed":709,"events_dropped":0,"avg_latency_ms":21.87789033821386,"throughput_eps":0,"last_update":"2026-03-22T11:57:47.479774577Z"} +2026/03/22 11:57:52 [transform_engine] {"stage_name":"transform_engine","events_processed":712,"events_dropped":0,"avg_latency_ms":477.87668141893073,"throughput_eps":0,"last_update":"2026-03-22T11:57:47.47981212Z"} +2026/03/22 11:57:52 ───────────────────────────────────────────────── +2026/03/22 11:57:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:57:57 [detection_layer] {"stage_name":"detection_layer","events_processed":709,"events_dropped":0,"avg_latency_ms":21.87789033821386,"throughput_eps":0,"last_update":"2026-03-22T11:57:52.479777961Z"} +2026/03/22 11:57:57 [transform_engine] {"stage_name":"transform_engine","events_processed":712,"events_dropped":0,"avg_latency_ms":477.87668141893073,"throughput_eps":0,"last_update":"2026-03-22T11:57:52.479797118Z"} +2026/03/22 11:57:57 [log_collector] {"stage_name":"log_collector","events_processed":33866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6773.2,"last_update":"2026-03-22T11:57:57.367980894Z"} +2026/03/22 11:57:57 [metric_collector] {"stage_name":"metric_collector","events_processed":21384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4276.8,"last_update":"2026-03-22T11:57:52.368728089Z"} +2026/03/22 11:57:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:57:52.376573657Z"} +2026/03/22 11:57:57 ───────────────────────────────────────────────── +2026/03/22 11:58:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:58:02 [log_collector] {"stage_name":"log_collector","events_processed":33866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6773.2,"last_update":"2026-03-22T11:58:02.368496827Z"} +2026/03/22 11:58:02 [metric_collector] {"stage_name":"metric_collector","events_processed":21389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4277.8,"last_update":"2026-03-22T11:57:57.368263686Z"} +2026/03/22 11:58:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:57:57.378981476Z"} +2026/03/22 11:58:02 [detection_layer] {"stage_name":"detection_layer","events_processed":709,"events_dropped":0,"avg_latency_ms":21.87789033821386,"throughput_eps":0,"last_update":"2026-03-22T11:57:57.479178709Z"} +2026/03/22 11:58:02 [transform_engine] {"stage_name":"transform_engine","events_processed":713,"events_dropped":0,"avg_latency_ms":399.58531813514463,"throughput_eps":0,"last_update":"2026-03-22T11:57:57.56564862Z"} +2026/03/22 11:58:02 ───────────────────────────────────────────────── +2026/03/22 11:58:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:58:07 [log_collector] {"stage_name":"log_collector","events_processed":33866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6773.2,"last_update":"2026-03-22T11:58:07.368894022Z"} +2026/03/22 11:58:07 [metric_collector] {"stage_name":"metric_collector","events_processed":21394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4278.8,"last_update":"2026-03-22T11:58:02.369261401Z"} +2026/03/22 11:58:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8560,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:58:02.378546076Z"} +2026/03/22 11:58:07 [detection_layer] {"stage_name":"detection_layer","events_processed":710,"events_dropped":0,"avg_latency_ms":22.28538027057109,"throughput_eps":0,"last_update":"2026-03-22T11:58:02.479765639Z"} +2026/03/22 11:58:07 [transform_engine] {"stage_name":"transform_engine","events_processed":713,"events_dropped":0,"avg_latency_ms":399.58531813514463,"throughput_eps":0,"last_update":"2026-03-22T11:58:02.479777572Z"} +2026/03/22 11:58:07 ───────────────────────────────────────────────── +2026/03/22 11:58:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:58:12 [detection_layer] {"stage_name":"detection_layer","events_processed":710,"events_dropped":0,"avg_latency_ms":22.28538027057109,"throughput_eps":0,"last_update":"2026-03-22T11:58:07.47980042Z"} +2026/03/22 11:58:12 [transform_engine] {"stage_name":"transform_engine","events_processed":713,"events_dropped":0,"avg_latency_ms":399.58531813514463,"throughput_eps":0,"last_update":"2026-03-22T11:58:07.479811771Z"} +2026/03/22 11:58:12 [log_collector] {"stage_name":"log_collector","events_processed":33866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6773.2,"last_update":"2026-03-22T11:58:12.368516332Z"} +2026/03/22 11:58:12 [metric_collector] {"stage_name":"metric_collector","events_processed":21399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4279.8,"last_update":"2026-03-22T11:58:07.369552433Z"} +2026/03/22 11:58:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:58:07.378504291Z"} +2026/03/22 11:58:12 ───────────────────────────────────────────────── +2026/03/22 11:58:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:58:17 [log_collector] {"stage_name":"log_collector","events_processed":33866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6773.2,"last_update":"2026-03-22T11:58:12.368516332Z"} +2026/03/22 11:58:17 [metric_collector] {"stage_name":"metric_collector","events_processed":21404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4280.8,"last_update":"2026-03-22T11:58:12.369121752Z"} +2026/03/22 11:58:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:58:12.377938942Z"} +2026/03/22 11:58:17 [detection_layer] {"stage_name":"detection_layer","events_processed":710,"events_dropped":0,"avg_latency_ms":22.28538027057109,"throughput_eps":0,"last_update":"2026-03-22T11:58:12.479234569Z"} +2026/03/22 11:58:17 [transform_engine] {"stage_name":"transform_engine","events_processed":713,"events_dropped":0,"avg_latency_ms":399.58531813514463,"throughput_eps":0,"last_update":"2026-03-22T11:58:12.479215533Z"} +2026/03/22 11:58:17 ───────────────────────────────────────────────── +Saved state: 23 clusters, 33867 messages, reason: none +2026/03/22 11:58:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:58:22 [transform_engine] {"stage_name":"transform_engine","events_processed":713,"events_dropped":0,"avg_latency_ms":399.58531813514463,"throughput_eps":0,"last_update":"2026-03-22T11:58:17.478952502Z"} +2026/03/22 11:58:22 [log_collector] {"stage_name":"log_collector","events_processed":33871,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6774.2,"last_update":"2026-03-22T11:58:22.368472033Z"} +2026/03/22 11:58:22 [metric_collector] {"stage_name":"metric_collector","events_processed":21409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4281.8,"last_update":"2026-03-22T11:58:17.369093821Z"} +2026/03/22 11:58:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8566,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:58:17.378827156Z"} +2026/03/22 11:58:22 [detection_layer] {"stage_name":"detection_layer","events_processed":710,"events_dropped":0,"avg_latency_ms":22.28538027057109,"throughput_eps":0,"last_update":"2026-03-22T11:58:17.47899833Z"} +2026/03/22 11:58:22 ───────────────────────────────────────────────── +2026/03/22 11:58:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:58:27 [log_collector] {"stage_name":"log_collector","events_processed":33871,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6774.2,"last_update":"2026-03-22T11:58:22.368472033Z"} +2026/03/22 11:58:27 [metric_collector] {"stage_name":"metric_collector","events_processed":21414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4282.8,"last_update":"2026-03-22T11:58:22.368821081Z"} +2026/03/22 11:58:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:58:22.378246134Z"} +2026/03/22 11:58:27 [detection_layer] {"stage_name":"detection_layer","events_processed":710,"events_dropped":0,"avg_latency_ms":22.28538027057109,"throughput_eps":0,"last_update":"2026-03-22T11:58:22.47945126Z"} +2026/03/22 11:58:27 [transform_engine] {"stage_name":"transform_engine","events_processed":713,"events_dropped":0,"avg_latency_ms":399.58531813514463,"throughput_eps":0,"last_update":"2026-03-22T11:58:22.479462681Z"} +2026/03/22 11:58:27 ───────────────────────────────────────────────── +2026/03/22 11:58:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:58:32 [detection_layer] {"stage_name":"detection_layer","events_processed":710,"events_dropped":0,"avg_latency_ms":22.28538027057109,"throughput_eps":0,"last_update":"2026-03-22T11:58:27.479647526Z"} +2026/03/22 11:58:32 [transform_engine] {"stage_name":"transform_engine","events_processed":714,"events_dropped":0,"avg_latency_ms":438.29121250811573,"throughput_eps":0,"last_update":"2026-03-22T11:58:28.072778187Z"} +2026/03/22 11:58:32 [log_collector] {"stage_name":"log_collector","events_processed":33871,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6774.2,"last_update":"2026-03-22T11:58:27.367962108Z"} +2026/03/22 11:58:32 [metric_collector] {"stage_name":"metric_collector","events_processed":21419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4283.8,"last_update":"2026-03-22T11:58:27.368179173Z"} +2026/03/22 11:58:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8570,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:58:27.376440768Z"} +2026/03/22 11:58:32 ───────────────────────────────────────────────── +2026/03/22 11:58:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:58:37 [log_collector] {"stage_name":"log_collector","events_processed":33871,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6774.2,"last_update":"2026-03-22T11:58:32.367960115Z"} +2026/03/22 11:58:37 [metric_collector] {"stage_name":"metric_collector","events_processed":21424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4284.8,"last_update":"2026-03-22T11:58:32.368306338Z"} +2026/03/22 11:58:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8572,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:58:32.374922671Z"} +2026/03/22 11:58:37 [detection_layer] {"stage_name":"detection_layer","events_processed":711,"events_dropped":0,"avg_latency_ms":20.51603861645687,"throughput_eps":0,"last_update":"2026-03-22T11:58:32.479145336Z"} +2026/03/22 11:58:37 [transform_engine] {"stage_name":"transform_engine","events_processed":714,"events_dropped":0,"avg_latency_ms":438.29121250811573,"throughput_eps":0,"last_update":"2026-03-22T11:58:32.479124356Z"} +2026/03/22 11:58:37 ───────────────────────────────────────────────── +2026/03/22 11:58:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:58:42 [log_collector] {"stage_name":"log_collector","events_processed":33871,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6774.2,"last_update":"2026-03-22T11:58:37.368339632Z"} +2026/03/22 11:58:42 [metric_collector] {"stage_name":"metric_collector","events_processed":21429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4285.8,"last_update":"2026-03-22T11:58:37.36876681Z"} +2026/03/22 11:58:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:58:37.375032412Z"} +2026/03/22 11:58:42 [detection_layer] {"stage_name":"detection_layer","events_processed":711,"events_dropped":0,"avg_latency_ms":20.51603861645687,"throughput_eps":0,"last_update":"2026-03-22T11:58:37.479273051Z"} +2026/03/22 11:58:42 [transform_engine] {"stage_name":"transform_engine","events_processed":714,"events_dropped":0,"avg_latency_ms":438.29121250811573,"throughput_eps":0,"last_update":"2026-03-22T11:58:37.479296657Z"} +2026/03/22 11:58:42 ───────────────────────────────────────────────── +2026/03/22 11:58:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:58:47 [metric_collector] {"stage_name":"metric_collector","events_processed":21433,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4286.6,"last_update":"2026-03-22T11:58:42.367891834Z"} +2026/03/22 11:58:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8576,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:58:42.375940792Z"} +2026/03/22 11:58:47 [detection_layer] {"stage_name":"detection_layer","events_processed":711,"events_dropped":0,"avg_latency_ms":20.51603861645687,"throughput_eps":0,"last_update":"2026-03-22T11:58:42.479942243Z"} +2026/03/22 11:58:47 [transform_engine] {"stage_name":"transform_engine","events_processed":714,"events_dropped":0,"avg_latency_ms":438.29121250811573,"throughput_eps":0,"last_update":"2026-03-22T11:58:42.479954255Z"} +2026/03/22 11:58:47 [log_collector] {"stage_name":"log_collector","events_processed":33871,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6774.2,"last_update":"2026-03-22T11:58:47.368931284Z"} +2026/03/22 11:58:47 ───────────────────────────────────────────────── +2026/03/22 11:58:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:58:52 [log_collector] {"stage_name":"log_collector","events_processed":33871,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6774.2,"last_update":"2026-03-22T11:58:47.368931284Z"} +2026/03/22 11:58:52 [metric_collector] {"stage_name":"metric_collector","events_processed":21439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4287.8,"last_update":"2026-03-22T11:58:47.369150413Z"} +2026/03/22 11:58:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:58:47.375798769Z"} +2026/03/22 11:58:52 [detection_layer] {"stage_name":"detection_layer","events_processed":711,"events_dropped":0,"avg_latency_ms":20.51603861645687,"throughput_eps":0,"last_update":"2026-03-22T11:58:47.479061374Z"} +2026/03/22 11:58:52 [transform_engine] {"stage_name":"transform_engine","events_processed":714,"events_dropped":0,"avg_latency_ms":438.29121250811573,"throughput_eps":0,"last_update":"2026-03-22T11:58:47.479082394Z"} +2026/03/22 11:58:52 ───────────────────────────────────────────────── +2026/03/22 11:58:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:58:57 [log_collector] {"stage_name":"log_collector","events_processed":33871,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6774.2,"last_update":"2026-03-22T11:58:57.368495046Z"} +2026/03/22 11:58:57 [metric_collector] {"stage_name":"metric_collector","events_processed":21444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4288.8,"last_update":"2026-03-22T11:58:52.368981949Z"} +2026/03/22 11:58:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8580,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:58:52.381951893Z"} +2026/03/22 11:58:57 [detection_layer] {"stage_name":"detection_layer","events_processed":711,"events_dropped":0,"avg_latency_ms":20.51603861645687,"throughput_eps":0,"last_update":"2026-03-22T11:58:52.479160211Z"} +2026/03/22 11:58:57 [transform_engine] {"stage_name":"transform_engine","events_processed":714,"events_dropped":0,"avg_latency_ms":438.29121250811573,"throughput_eps":0,"last_update":"2026-03-22T11:58:52.479135785Z"} +2026/03/22 11:58:57 ───────────────────────────────────────────────── +2026/03/22 11:58:58 [ANOMALY] time=2026-03-22T11:58:58Z score=0.7691 method=SEAD details=MAD!:w=0.64,s=0.82 RRCF-fast:w=0.10,s=0.88 RRCF-mid:w=0.08,s=0.87 RRCF-slow:w=0.07,s=0.79 COPOD!:w=0.12,s=0.30 +2026/03/22 11:59:02 ── Pipeline Health ────────────────────────────── +2026/03/22 11:59:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:58:57.375602148Z"} +2026/03/22 11:59:02 [detection_layer] {"stage_name":"detection_layer","events_processed":711,"events_dropped":0,"avg_latency_ms":20.51603861645687,"throughput_eps":0,"last_update":"2026-03-22T11:58:57.479783223Z"} +2026/03/22 11:59:02 [transform_engine] {"stage_name":"transform_engine","events_processed":715,"events_dropped":0,"avg_latency_ms":491.3653678064926,"throughput_eps":0,"last_update":"2026-03-22T11:58:58.18346468Z"} +2026/03/22 11:59:02 [log_collector] {"stage_name":"log_collector","events_processed":33871,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6774.2,"last_update":"2026-03-22T11:58:57.368495046Z"} +2026/03/22 11:59:02 [metric_collector] {"stage_name":"metric_collector","events_processed":21449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4289.8,"last_update":"2026-03-22T11:58:57.369022466Z"} +2026/03/22 11:59:02 ───────────────────────────────────────────────── +2026/03/22 11:59:07 ── Pipeline Health ────────────────────────────── +2026/03/22 11:59:07 [detection_layer] {"stage_name":"detection_layer","events_processed":712,"events_dropped":0,"avg_latency_ms":19.524785693165498,"throughput_eps":0,"last_update":"2026-03-22T11:59:02.479061719Z"} +2026/03/22 11:59:07 [transform_engine] {"stage_name":"transform_engine","events_processed":715,"events_dropped":0,"avg_latency_ms":491.3653678064926,"throughput_eps":0,"last_update":"2026-03-22T11:59:02.479071948Z"} +2026/03/22 11:59:07 [log_collector] {"stage_name":"log_collector","events_processed":33880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6776,"last_update":"2026-03-22T11:59:02.368798063Z"} +2026/03/22 11:59:07 [metric_collector] {"stage_name":"metric_collector","events_processed":21454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4290.8,"last_update":"2026-03-22T11:59:02.369160597Z"} +2026/03/22 11:59:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:59:02.374829636Z"} +2026/03/22 11:59:07 ───────────────────────────────────────────────── +2026/03/22 11:59:12 ── Pipeline Health ────────────────────────────── +2026/03/22 11:59:12 [log_collector] {"stage_name":"log_collector","events_processed":34084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6816.8,"last_update":"2026-03-22T11:59:12.368042117Z"} +2026/03/22 11:59:12 [metric_collector] {"stage_name":"metric_collector","events_processed":21459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4291.8,"last_update":"2026-03-22T11:59:07.368771579Z"} +2026/03/22 11:59:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8586,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:59:07.377706243Z"} +2026/03/22 11:59:12 [detection_layer] {"stage_name":"detection_layer","events_processed":712,"events_dropped":0,"avg_latency_ms":19.524785693165498,"throughput_eps":0,"last_update":"2026-03-22T11:59:07.479869734Z"} +2026/03/22 11:59:12 [transform_engine] {"stage_name":"transform_engine","events_processed":715,"events_dropped":0,"avg_latency_ms":491.3653678064926,"throughput_eps":0,"last_update":"2026-03-22T11:59:07.479881055Z"} +2026/03/22 11:59:12 ───────────────────────────────────────────────── +2026/03/22 11:59:17 ── Pipeline Health ────────────────────────────── +2026/03/22 11:59:17 [log_collector] {"stage_name":"log_collector","events_processed":34084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6816.8,"last_update":"2026-03-22T11:59:12.368042117Z"} +2026/03/22 11:59:17 [metric_collector] {"stage_name":"metric_collector","events_processed":21464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4292.8,"last_update":"2026-03-22T11:59:12.368527457Z"} +2026/03/22 11:59:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8588,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:59:12.375489112Z"} +2026/03/22 11:59:17 [detection_layer] {"stage_name":"detection_layer","events_processed":712,"events_dropped":0,"avg_latency_ms":19.524785693165498,"throughput_eps":0,"last_update":"2026-03-22T11:59:12.479581426Z"} +2026/03/22 11:59:17 [transform_engine] {"stage_name":"transform_engine","events_processed":715,"events_dropped":0,"avg_latency_ms":491.3653678064926,"throughput_eps":0,"last_update":"2026-03-22T11:59:12.479591817Z"} +2026/03/22 11:59:17 ───────────────────────────────────────────────── +Saved state: 23 clusters, 34189 messages, reason: none +2026/03/22 11:59:22 ── Pipeline Health ────────────────────────────── +2026/03/22 11:59:22 [transform_engine] {"stage_name":"transform_engine","events_processed":715,"events_dropped":0,"avg_latency_ms":491.3653678064926,"throughput_eps":0,"last_update":"2026-03-22T11:59:17.478908291Z"} +2026/03/22 11:59:22 [log_collector] {"stage_name":"log_collector","events_processed":34177,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6835.4,"last_update":"2026-03-22T11:59:17.368515269Z"} +2026/03/22 11:59:22 [metric_collector] {"stage_name":"metric_collector","events_processed":21469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4293.8,"last_update":"2026-03-22T11:59:17.368622694Z"} +2026/03/22 11:59:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:59:17.374692841Z"} +2026/03/22 11:59:22 [detection_layer] {"stage_name":"detection_layer","events_processed":712,"events_dropped":0,"avg_latency_ms":19.524785693165498,"throughput_eps":0,"last_update":"2026-03-22T11:59:17.478958367Z"} +2026/03/22 11:59:22 ───────────────────────────────────────────────── +2026/03/22 11:59:27 ── Pipeline Health ────────────────────────────── +2026/03/22 11:59:27 [detection_layer] {"stage_name":"detection_layer","events_processed":712,"events_dropped":0,"avg_latency_ms":19.524785693165498,"throughput_eps":0,"last_update":"2026-03-22T11:59:22.479106396Z"} +2026/03/22 11:59:27 [transform_engine] {"stage_name":"transform_engine","events_processed":715,"events_dropped":0,"avg_latency_ms":491.3653678064926,"throughput_eps":0,"last_update":"2026-03-22T11:59:22.479117968Z"} +2026/03/22 11:59:27 [log_collector] {"stage_name":"log_collector","events_processed":34233,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6846.6,"last_update":"2026-03-22T11:59:22.368163338Z"} +2026/03/22 11:59:27 [metric_collector] {"stage_name":"metric_collector","events_processed":21474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4294.8,"last_update":"2026-03-22T11:59:22.368416613Z"} +2026/03/22 11:59:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8592,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:59:22.376905794Z"} +2026/03/22 11:59:27 ───────────────────────────────────────────────── +2026/03/22 11:59:32 ── Pipeline Health ────────────────────────────── +2026/03/22 11:59:32 [log_collector] {"stage_name":"log_collector","events_processed":34233,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6846.6,"last_update":"2026-03-22T11:59:32.368481185Z"} +2026/03/22 11:59:32 [metric_collector] {"stage_name":"metric_collector","events_processed":21479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4295.8,"last_update":"2026-03-22T11:59:27.369169771Z"} +2026/03/22 11:59:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:59:27.378407265Z"} +2026/03/22 11:59:32 [detection_layer] {"stage_name":"detection_layer","events_processed":712,"events_dropped":0,"avg_latency_ms":19.524785693165498,"throughput_eps":0,"last_update":"2026-03-22T11:59:27.479738029Z"} +2026/03/22 11:59:32 [transform_engine] {"stage_name":"transform_engine","events_processed":715,"events_dropped":0,"avg_latency_ms":491.3653678064926,"throughput_eps":0,"last_update":"2026-03-22T11:59:27.479750373Z"} +2026/03/22 11:59:32 ───────────────────────────────────────────────── +2026/03/22 11:59:37 ── Pipeline Health ────────────────────────────── +2026/03/22 11:59:37 [log_collector] {"stage_name":"log_collector","events_processed":34233,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6846.6,"last_update":"2026-03-22T11:59:32.368481185Z"} +2026/03/22 11:59:37 [metric_collector] {"stage_name":"metric_collector","events_processed":21484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4296.8,"last_update":"2026-03-22T11:59:32.368921739Z"} +2026/03/22 11:59:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:59:32.378691282Z"} +2026/03/22 11:59:37 [detection_layer] {"stage_name":"detection_layer","events_processed":713,"events_dropped":0,"avg_latency_ms":19.5881197545324,"throughput_eps":0,"last_update":"2026-03-22T11:59:32.479975949Z"} +2026/03/22 11:59:37 [transform_engine] {"stage_name":"transform_engine","events_processed":716,"events_dropped":0,"avg_latency_ms":417.71147544519414,"throughput_eps":0,"last_update":"2026-03-22T11:59:32.478872605Z"} +2026/03/22 11:59:37 ───────────────────────────────────────────────── +2026/03/22 11:59:42 ── Pipeline Health ────────────────────────────── +2026/03/22 11:59:42 [detection_layer] {"stage_name":"detection_layer","events_processed":713,"events_dropped":0,"avg_latency_ms":19.5881197545324,"throughput_eps":0,"last_update":"2026-03-22T11:59:37.479649286Z"} +2026/03/22 11:59:42 [transform_engine] {"stage_name":"transform_engine","events_processed":716,"events_dropped":0,"avg_latency_ms":417.71147544519414,"throughput_eps":0,"last_update":"2026-03-22T11:59:37.479668723Z"} +2026/03/22 11:59:42 [log_collector] {"stage_name":"log_collector","events_processed":34233,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6846.6,"last_update":"2026-03-22T11:59:37.368316071Z"} +2026/03/22 11:59:42 [metric_collector] {"stage_name":"metric_collector","events_processed":21489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4297.8,"last_update":"2026-03-22T11:59:37.368409791Z"} +2026/03/22 11:59:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:59:37.37852202Z"} +2026/03/22 11:59:42 ───────────────────────────────────────────────── +2026/03/22 11:59:47 ── Pipeline Health ────────────────────────────── +2026/03/22 11:59:47 [transform_engine] {"stage_name":"transform_engine","events_processed":716,"events_dropped":0,"avg_latency_ms":417.71147544519414,"throughput_eps":0,"last_update":"2026-03-22T11:59:42.47974412Z"} +2026/03/22 11:59:47 [log_collector] {"stage_name":"log_collector","events_processed":34236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6847.2,"last_update":"2026-03-22T11:59:42.368501178Z"} +2026/03/22 11:59:47 [metric_collector] {"stage_name":"metric_collector","events_processed":21494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4298.8,"last_update":"2026-03-22T11:59:42.368655224Z"} +2026/03/22 11:59:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:59:42.375487541Z"} +2026/03/22 11:59:47 [detection_layer] {"stage_name":"detection_layer","events_processed":713,"events_dropped":0,"avg_latency_ms":19.5881197545324,"throughput_eps":0,"last_update":"2026-03-22T11:59:42.479716267Z"} +2026/03/22 11:59:47 ───────────────────────────────────────────────── +2026/03/22 11:59:52 ── Pipeline Health ────────────────────────────── +2026/03/22 11:59:52 [log_collector] {"stage_name":"log_collector","events_processed":34236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6847.2,"last_update":"2026-03-22T11:59:47.368031581Z"} +2026/03/22 11:59:52 [metric_collector] {"stage_name":"metric_collector","events_processed":21499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4299.8,"last_update":"2026-03-22T11:59:47.368711443Z"} +2026/03/22 11:59:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8602,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:59:47.376821498Z"} +2026/03/22 11:59:52 [detection_layer] {"stage_name":"detection_layer","events_processed":713,"events_dropped":0,"avg_latency_ms":19.5881197545324,"throughput_eps":0,"last_update":"2026-03-22T11:59:47.479070201Z"} +2026/03/22 11:59:52 [transform_engine] {"stage_name":"transform_engine","events_processed":716,"events_dropped":0,"avg_latency_ms":417.71147544519414,"throughput_eps":0,"last_update":"2026-03-22T11:59:47.479060482Z"} +2026/03/22 11:59:52 ───────────────────────────────────────────────── +2026/03/22 11:59:57 ── Pipeline Health ────────────────────────────── +2026/03/22 11:59:57 [log_collector] {"stage_name":"log_collector","events_processed":34253,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6850.6,"last_update":"2026-03-22T11:59:52.36797814Z"} +2026/03/22 11:59:57 [metric_collector] {"stage_name":"metric_collector","events_processed":21504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4300.8,"last_update":"2026-03-22T11:59:52.368174556Z"} +2026/03/22 11:59:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:59:52.378113464Z"} +2026/03/22 11:59:57 [detection_layer] {"stage_name":"detection_layer","events_processed":713,"events_dropped":0,"avg_latency_ms":19.5881197545324,"throughput_eps":0,"last_update":"2026-03-22T11:59:52.479331343Z"} +2026/03/22 11:59:57 [transform_engine] {"stage_name":"transform_engine","events_processed":716,"events_dropped":0,"avg_latency_ms":417.71147544519414,"throughput_eps":0,"last_update":"2026-03-22T11:59:52.479310093Z"} +2026/03/22 11:59:57 ───────────────────────────────────────────────── +2026/03/22 12:00:02 ── Pipeline Health ────────────────────────────── +2026/03/22 12:00:02 [metric_collector] {"stage_name":"metric_collector","events_processed":21509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4301.8,"last_update":"2026-03-22T11:59:57.369109608Z"} +2026/03/22 12:00:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T11:59:57.378033442Z"} +2026/03/22 12:00:02 [detection_layer] {"stage_name":"detection_layer","events_processed":713,"events_dropped":0,"avg_latency_ms":19.5881197545324,"throughput_eps":0,"last_update":"2026-03-22T11:59:57.479143965Z"} +2026/03/22 12:00:02 [transform_engine] {"stage_name":"transform_engine","events_processed":717,"events_dropped":0,"avg_latency_ms":357.3581359561553,"throughput_eps":0,"last_update":"2026-03-22T11:59:57.595131034Z"} +2026/03/22 12:00:02 [log_collector] {"stage_name":"log_collector","events_processed":34263,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6852.6,"last_update":"2026-03-22T11:59:57.368409978Z"} +2026/03/22 12:00:02 ───────────────────────────────────────────────── +2026/03/22 12:00:07 ── Pipeline Health ────────────────────────────── +2026/03/22 12:00:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:00:02.38843257Z"} +2026/03/22 12:00:07 [detection_layer] {"stage_name":"detection_layer","events_processed":714,"events_dropped":0,"avg_latency_ms":19.94710740362592,"throughput_eps":0,"last_update":"2026-03-22T12:00:02.479823216Z"} +2026/03/22 12:00:07 [transform_engine] {"stage_name":"transform_engine","events_processed":717,"events_dropped":0,"avg_latency_ms":357.3581359561553,"throughput_eps":0,"last_update":"2026-03-22T12:00:02.479802726Z"} +2026/03/22 12:00:07 [log_collector] {"stage_name":"log_collector","events_processed":34263,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6852.6,"last_update":"2026-03-22T12:00:02.368197109Z"} +2026/03/22 12:00:07 [metric_collector] {"stage_name":"metric_collector","events_processed":21514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4302.8,"last_update":"2026-03-22T12:00:02.368386923Z"} +2026/03/22 12:00:07 ───────────────────────────────────────────────── +2026/03/22 12:00:12 ── Pipeline Health ────────────────────────────── +2026/03/22 12:00:12 [metric_collector] {"stage_name":"metric_collector","events_processed":21519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4303.8,"last_update":"2026-03-22T12:00:07.368584912Z"} +2026/03/22 12:00:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:00:07.377770416Z"} +2026/03/22 12:00:12 [detection_layer] {"stage_name":"detection_layer","events_processed":714,"events_dropped":0,"avg_latency_ms":19.94710740362592,"throughput_eps":0,"last_update":"2026-03-22T12:00:07.478962746Z"} +2026/03/22 12:00:12 [transform_engine] {"stage_name":"transform_engine","events_processed":717,"events_dropped":0,"avg_latency_ms":357.3581359561553,"throughput_eps":0,"last_update":"2026-03-22T12:00:07.479072015Z"} +2026/03/22 12:00:12 [log_collector] {"stage_name":"log_collector","events_processed":34263,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6852.6,"last_update":"2026-03-22T12:00:07.368120692Z"} +2026/03/22 12:00:12 ───────────────────────────────────────────────── +2026/03/22 12:00:17 ── Pipeline Health ────────────────────────────── +2026/03/22 12:00:17 [detection_layer] {"stage_name":"detection_layer","events_processed":714,"events_dropped":0,"avg_latency_ms":19.94710740362592,"throughput_eps":0,"last_update":"2026-03-22T12:00:12.479565288Z"} +2026/03/22 12:00:17 [transform_engine] {"stage_name":"transform_engine","events_processed":717,"events_dropped":0,"avg_latency_ms":357.3581359561553,"throughput_eps":0,"last_update":"2026-03-22T12:00:12.479464075Z"} +2026/03/22 12:00:17 [log_collector] {"stage_name":"log_collector","events_processed":34263,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6852.6,"last_update":"2026-03-22T12:00:17.368816772Z"} +2026/03/22 12:00:17 [metric_collector] {"stage_name":"metric_collector","events_processed":21524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4304.8,"last_update":"2026-03-22T12:00:12.368697706Z"} +2026/03/22 12:00:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:00:12.377238615Z"} +2026/03/22 12:00:17 ───────────────────────────────────────────────── +2026/03/22 12:00:22 ── Pipeline Health ────────────────────────────── +2026/03/22 12:00:22 [transform_engine] {"stage_name":"transform_engine","events_processed":717,"events_dropped":0,"avg_latency_ms":357.3581359561553,"throughput_eps":0,"last_update":"2026-03-22T12:00:17.478822934Z"} +2026/03/22 12:00:22 [log_collector] {"stage_name":"log_collector","events_processed":34263,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6852.6,"last_update":"2026-03-22T12:00:22.368151107Z"} +2026/03/22 12:00:22 [metric_collector] {"stage_name":"metric_collector","events_processed":21529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4305.8,"last_update":"2026-03-22T12:00:17.369485874Z"} +2026/03/22 12:00:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:00:17.37963803Z"} +2026/03/22 12:00:22 [detection_layer] {"stage_name":"detection_layer","events_processed":714,"events_dropped":0,"avg_latency_ms":19.94710740362592,"throughput_eps":0,"last_update":"2026-03-22T12:00:17.479949472Z"} +2026/03/22 12:00:22 ───────────────────────────────────────────────── +2026/03/22 12:00:27 ── Pipeline Health ────────────────────────────── +2026/03/22 12:00:27 [transform_engine] {"stage_name":"transform_engine","events_processed":717,"events_dropped":0,"avg_latency_ms":357.3581359561553,"throughput_eps":0,"last_update":"2026-03-22T12:00:22.478956841Z"} +2026/03/22 12:00:27 [log_collector] {"stage_name":"log_collector","events_processed":34263,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6852.6,"last_update":"2026-03-22T12:00:22.368151107Z"} +2026/03/22 12:00:27 [metric_collector] {"stage_name":"metric_collector","events_processed":21534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4306.8,"last_update":"2026-03-22T12:00:22.369487256Z"} +2026/03/22 12:00:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:00:22.377754642Z"} +2026/03/22 12:00:27 [detection_layer] {"stage_name":"detection_layer","events_processed":714,"events_dropped":0,"avg_latency_ms":19.94710740362592,"throughput_eps":0,"last_update":"2026-03-22T12:00:22.478987449Z"} +2026/03/22 12:00:27 ───────────────────────────────────────────────── +2026/03/22 12:00:32 ── Pipeline Health ────────────────────────────── +2026/03/22 12:00:32 [log_collector] {"stage_name":"log_collector","events_processed":34263,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6852.6,"last_update":"2026-03-22T12:00:27.36797637Z"} +2026/03/22 12:00:32 [metric_collector] {"stage_name":"metric_collector","events_processed":21539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4307.8,"last_update":"2026-03-22T12:00:27.368290651Z"} +2026/03/22 12:00:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:00:27.37488396Z"} +2026/03/22 12:00:32 [detection_layer] {"stage_name":"detection_layer","events_processed":714,"events_dropped":0,"avg_latency_ms":19.94710740362592,"throughput_eps":0,"last_update":"2026-03-22T12:00:27.479050687Z"} +2026/03/22 12:00:32 [transform_engine] {"stage_name":"transform_engine","events_processed":718,"events_dropped":0,"avg_latency_ms":407.0098539649243,"throughput_eps":0,"last_update":"2026-03-22T12:00:28.08478581Z"} +2026/03/22 12:00:32 ───────────────────────────────────────────────── +2026/03/22 12:00:37 ── Pipeline Health ────────────────────────────── +2026/03/22 12:00:37 [metric_collector] {"stage_name":"metric_collector","events_processed":21544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4308.8,"last_update":"2026-03-22T12:00:32.368234881Z"} +2026/03/22 12:00:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8620,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:00:32.377678309Z"} +2026/03/22 12:00:37 [detection_layer] {"stage_name":"detection_layer","events_processed":715,"events_dropped":0,"avg_latency_ms":19.661514322900736,"throughput_eps":0,"last_update":"2026-03-22T12:00:32.478962856Z"} +2026/03/22 12:00:37 [transform_engine] {"stage_name":"transform_engine","events_processed":718,"events_dropped":0,"avg_latency_ms":407.0098539649243,"throughput_eps":0,"last_update":"2026-03-22T12:00:32.478896749Z"} +2026/03/22 12:00:37 [log_collector] {"stage_name":"log_collector","events_processed":34263,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6852.6,"last_update":"2026-03-22T12:00:32.367964503Z"} +2026/03/22 12:00:37 ───────────────────────────────────────────────── +2026/03/22 12:00:42 ── Pipeline Health ────────────────────────────── +2026/03/22 12:00:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8622,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:00:37.378330635Z"} +2026/03/22 12:00:42 [detection_layer] {"stage_name":"detection_layer","events_processed":715,"events_dropped":0,"avg_latency_ms":19.661514322900736,"throughput_eps":0,"last_update":"2026-03-22T12:00:37.479819803Z"} +2026/03/22 12:00:42 [transform_engine] {"stage_name":"transform_engine","events_processed":718,"events_dropped":0,"avg_latency_ms":407.0098539649243,"throughput_eps":0,"last_update":"2026-03-22T12:00:37.479700275Z"} +2026/03/22 12:00:42 [log_collector] {"stage_name":"log_collector","events_processed":34263,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6852.6,"last_update":"2026-03-22T12:00:37.368029093Z"} +2026/03/22 12:00:42 [metric_collector] {"stage_name":"metric_collector","events_processed":21549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4309.8,"last_update":"2026-03-22T12:00:37.368778539Z"} +2026/03/22 12:00:42 ───────────────────────────────────────────────── +2026/03/22 12:00:47 ── Pipeline Health ────────────────────────────── +2026/03/22 12:00:47 [log_collector] {"stage_name":"log_collector","events_processed":34263,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6852.6,"last_update":"2026-03-22T12:00:42.368013739Z"} +2026/03/22 12:00:47 [metric_collector] {"stage_name":"metric_collector","events_processed":21554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4310.8,"last_update":"2026-03-22T12:00:42.369012321Z"} +2026/03/22 12:00:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:00:42.378330962Z"} +2026/03/22 12:00:47 [detection_layer] {"stage_name":"detection_layer","events_processed":715,"events_dropped":0,"avg_latency_ms":19.661514322900736,"throughput_eps":0,"last_update":"2026-03-22T12:00:42.479094069Z"} +2026/03/22 12:00:47 [transform_engine] {"stage_name":"transform_engine","events_processed":718,"events_dropped":0,"avg_latency_ms":407.0098539649243,"throughput_eps":0,"last_update":"2026-03-22T12:00:42.479066366Z"} +2026/03/22 12:00:47 ───────────────────────────────────────────────── +2026/03/22 12:00:52 ── Pipeline Health ────────────────────────────── +2026/03/22 12:00:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:00:47.376989768Z"} +2026/03/22 12:00:52 [detection_layer] {"stage_name":"detection_layer","events_processed":715,"events_dropped":0,"avg_latency_ms":19.661514322900736,"throughput_eps":0,"last_update":"2026-03-22T12:00:47.479230355Z"} +2026/03/22 12:00:52 [transform_engine] {"stage_name":"transform_engine","events_processed":718,"events_dropped":0,"avg_latency_ms":407.0098539649243,"throughput_eps":0,"last_update":"2026-03-22T12:00:47.479191851Z"} +2026/03/22 12:00:52 [log_collector] {"stage_name":"log_collector","events_processed":34263,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6852.6,"last_update":"2026-03-22T12:00:47.36824166Z"} +2026/03/22 12:00:52 [metric_collector] {"stage_name":"metric_collector","events_processed":21559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4311.8,"last_update":"2026-03-22T12:00:47.369013779Z"} +2026/03/22 12:00:52 ───────────────────────────────────────────────── +Saved state: 23 clusters, 34264 messages, reason: none +2026/03/22 12:00:57 ── Pipeline Health ────────────────────────────── +2026/03/22 12:00:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:00:52.377447188Z"} +2026/03/22 12:00:57 [detection_layer] {"stage_name":"detection_layer","events_processed":715,"events_dropped":0,"avg_latency_ms":19.661514322900736,"throughput_eps":0,"last_update":"2026-03-22T12:00:52.479783319Z"} +2026/03/22 12:00:57 [transform_engine] {"stage_name":"transform_engine","events_processed":718,"events_dropped":0,"avg_latency_ms":407.0098539649243,"throughput_eps":0,"last_update":"2026-03-22T12:00:52.479755075Z"} +2026/03/22 12:00:57 [log_collector] {"stage_name":"log_collector","events_processed":34263,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6852.6,"last_update":"2026-03-22T12:00:52.368511462Z"} +2026/03/22 12:00:57 [metric_collector] {"stage_name":"metric_collector","events_processed":21564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4312.8,"last_update":"2026-03-22T12:00:52.369080442Z"} +2026/03/22 12:00:57 ───────────────────────────────────────────────── +2026/03/22 12:01:02 ── Pipeline Health ────────────────────────────── +2026/03/22 12:01:02 [log_collector] {"stage_name":"log_collector","events_processed":34277,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6855.4,"last_update":"2026-03-22T12:01:02.368295986Z"} +2026/03/22 12:01:02 [metric_collector] {"stage_name":"metric_collector","events_processed":21569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4313.8,"last_update":"2026-03-22T12:00:57.369111355Z"} +2026/03/22 12:01:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:00:57.375315969Z"} +2026/03/22 12:01:02 [detection_layer] {"stage_name":"detection_layer","events_processed":715,"events_dropped":0,"avg_latency_ms":19.661514322900736,"throughput_eps":0,"last_update":"2026-03-22T12:00:57.479587688Z"} +2026/03/22 12:01:02 [transform_engine] {"stage_name":"transform_engine","events_processed":719,"events_dropped":0,"avg_latency_ms":353.7969619719394,"throughput_eps":0,"last_update":"2026-03-22T12:00:57.620554064Z"} +2026/03/22 12:01:02 ───────────────────────────────────────────────── +2026/03/22 12:01:07 ── Pipeline Health ────────────────────────────── +2026/03/22 12:01:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8632,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:01:02.376845712Z"} +2026/03/22 12:01:07 [detection_layer] {"stage_name":"detection_layer","events_processed":716,"events_dropped":0,"avg_latency_ms":18.99499305832059,"throughput_eps":0,"last_update":"2026-03-22T12:01:02.479164931Z"} +2026/03/22 12:01:07 [transform_engine] {"stage_name":"transform_engine","events_processed":719,"events_dropped":0,"avg_latency_ms":353.7969619719394,"throughput_eps":0,"last_update":"2026-03-22T12:01:02.479338634Z"} +2026/03/22 12:01:07 [log_collector] {"stage_name":"log_collector","events_processed":34277,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6855.4,"last_update":"2026-03-22T12:01:02.368295986Z"} +2026/03/22 12:01:07 [metric_collector] {"stage_name":"metric_collector","events_processed":21574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4314.8,"last_update":"2026-03-22T12:01:02.369125805Z"} +2026/03/22 12:01:07 ───────────────────────────────────────────────── +2026/03/22 12:01:12 ── Pipeline Health ────────────────────────────── +2026/03/22 12:01:12 [log_collector] {"stage_name":"log_collector","events_processed":34277,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6855.4,"last_update":"2026-03-22T12:01:07.367960467Z"} +2026/03/22 12:01:12 [metric_collector] {"stage_name":"metric_collector","events_processed":21579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4315.8,"last_update":"2026-03-22T12:01:07.36841101Z"} +2026/03/22 12:01:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:01:07.377008298Z"} +2026/03/22 12:01:12 [detection_layer] {"stage_name":"detection_layer","events_processed":716,"events_dropped":0,"avg_latency_ms":18.99499305832059,"throughput_eps":0,"last_update":"2026-03-22T12:01:07.47923615Z"} +2026/03/22 12:01:12 [transform_engine] {"stage_name":"transform_engine","events_processed":719,"events_dropped":0,"avg_latency_ms":353.7969619719394,"throughput_eps":0,"last_update":"2026-03-22T12:01:07.479213086Z"} +2026/03/22 12:01:12 ───────────────────────────────────────────────── +2026/03/22 12:01:17 ── Pipeline Health ────────────────────────────── +2026/03/22 12:01:17 [transform_engine] {"stage_name":"transform_engine","events_processed":719,"events_dropped":0,"avg_latency_ms":353.7969619719394,"throughput_eps":0,"last_update":"2026-03-22T12:01:12.479046852Z"} +2026/03/22 12:01:17 [log_collector] {"stage_name":"log_collector","events_processed":34277,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6855.4,"last_update":"2026-03-22T12:01:17.368817764Z"} +2026/03/22 12:01:17 [metric_collector] {"stage_name":"metric_collector","events_processed":21584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4316.8,"last_update":"2026-03-22T12:01:12.368322053Z"} +2026/03/22 12:01:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:01:12.377856496Z"} +2026/03/22 12:01:17 [detection_layer] {"stage_name":"detection_layer","events_processed":716,"events_dropped":0,"avg_latency_ms":18.99499305832059,"throughput_eps":0,"last_update":"2026-03-22T12:01:12.479162202Z"} +2026/03/22 12:01:17 ───────────────────────────────────────────────── +2026/03/22 12:01:22 ── Pipeline Health ────────────────────────────── +2026/03/22 12:01:22 [metric_collector] {"stage_name":"metric_collector","events_processed":21589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4317.8,"last_update":"2026-03-22T12:01:17.369147376Z"} +2026/03/22 12:01:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:01:17.379501198Z"} +2026/03/22 12:01:22 [detection_layer] {"stage_name":"detection_layer","events_processed":716,"events_dropped":0,"avg_latency_ms":18.99499305832059,"throughput_eps":0,"last_update":"2026-03-22T12:01:17.479817741Z"} +2026/03/22 12:01:22 [transform_engine] {"stage_name":"transform_engine","events_processed":719,"events_dropped":0,"avg_latency_ms":353.7969619719394,"throughput_eps":0,"last_update":"2026-03-22T12:01:17.479712299Z"} +2026/03/22 12:01:22 [log_collector] {"stage_name":"log_collector","events_processed":34277,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6855.4,"last_update":"2026-03-22T12:01:22.368897489Z"} +2026/03/22 12:01:22 ───────────────────────────────────────────────── +2026/03/22 12:01:27 ── Pipeline Health ────────────────────────────── +2026/03/22 12:01:27 [log_collector] {"stage_name":"log_collector","events_processed":34277,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6855.4,"last_update":"2026-03-22T12:01:22.368897489Z"} +2026/03/22 12:01:27 [metric_collector] {"stage_name":"metric_collector","events_processed":21594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4318.8,"last_update":"2026-03-22T12:01:22.369283258Z"} +2026/03/22 12:01:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8640,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:01:22.380553236Z"} +2026/03/22 12:01:27 [detection_layer] {"stage_name":"detection_layer","events_processed":716,"events_dropped":0,"avg_latency_ms":18.99499305832059,"throughput_eps":0,"last_update":"2026-03-22T12:01:22.47979008Z"} +2026/03/22 12:01:27 [transform_engine] {"stage_name":"transform_engine","events_processed":719,"events_dropped":0,"avg_latency_ms":353.7969619719394,"throughput_eps":0,"last_update":"2026-03-22T12:01:22.479759872Z"} +2026/03/22 12:01:27 ───────────────────────────────────────────────── +2026/03/22 12:01:32 ── Pipeline Health ────────────────────────────── +2026/03/22 12:01:32 [log_collector] {"stage_name":"log_collector","events_processed":34277,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6855.4,"last_update":"2026-03-22T12:01:32.368266083Z"} +2026/03/22 12:01:32 [metric_collector] {"stage_name":"metric_collector","events_processed":21599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4319.8,"last_update":"2026-03-22T12:01:27.368769415Z"} +2026/03/22 12:01:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:01:27.379086177Z"} +2026/03/22 12:01:32 [detection_layer] {"stage_name":"detection_layer","events_processed":716,"events_dropped":0,"avg_latency_ms":18.99499305832059,"throughput_eps":0,"last_update":"2026-03-22T12:01:27.47942429Z"} +2026/03/22 12:01:32 [transform_engine] {"stage_name":"transform_engine","events_processed":720,"events_dropped":0,"avg_latency_ms":311.6926671775515,"throughput_eps":0,"last_update":"2026-03-22T12:01:27.622546966Z"} +2026/03/22 12:01:32 ───────────────────────────────────────────────── +2026/03/22 12:01:37 ── Pipeline Health ────────────────────────────── +2026/03/22 12:01:37 [detection_layer] {"stage_name":"detection_layer","events_processed":717,"events_dropped":0,"avg_latency_ms":20.12988524665647,"throughput_eps":0,"last_update":"2026-03-22T12:01:32.479238546Z"} +2026/03/22 12:01:37 [transform_engine] {"stage_name":"transform_engine","events_processed":720,"events_dropped":0,"avg_latency_ms":311.6926671775515,"throughput_eps":0,"last_update":"2026-03-22T12:01:32.479205854Z"} +2026/03/22 12:01:37 [log_collector] {"stage_name":"log_collector","events_processed":34277,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6855.4,"last_update":"2026-03-22T12:01:32.368266083Z"} +2026/03/22 12:01:37 [metric_collector] {"stage_name":"metric_collector","events_processed":21604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4320.8,"last_update":"2026-03-22T12:01:32.368713219Z"} +2026/03/22 12:01:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:01:32.378929168Z"} +2026/03/22 12:01:37 ───────────────────────────────────────────────── +2026/03/22 12:01:42 ── Pipeline Health ────────────────────────────── +2026/03/22 12:01:42 [log_collector] {"stage_name":"log_collector","events_processed":34277,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6855.4,"last_update":"2026-03-22T12:01:37.368861464Z"} +2026/03/22 12:01:42 [metric_collector] {"stage_name":"metric_collector","events_processed":21609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4321.8,"last_update":"2026-03-22T12:01:37.369222705Z"} +2026/03/22 12:01:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8646,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:01:37.380107605Z"} +2026/03/22 12:01:42 [detection_layer] {"stage_name":"detection_layer","events_processed":717,"events_dropped":0,"avg_latency_ms":20.12988524665647,"throughput_eps":0,"last_update":"2026-03-22T12:01:37.479542849Z"} +2026/03/22 12:01:42 [transform_engine] {"stage_name":"transform_engine","events_processed":720,"events_dropped":0,"avg_latency_ms":311.6926671775515,"throughput_eps":0,"last_update":"2026-03-22T12:01:37.479576114Z"} +2026/03/22 12:01:42 ───────────────────────────────────────────────── +2026/03/22 12:01:47 ── Pipeline Health ────────────────────────────── +2026/03/22 12:01:47 [log_collector] {"stage_name":"log_collector","events_processed":34277,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6855.4,"last_update":"2026-03-22T12:01:42.368714693Z"} +2026/03/22 12:01:47 [metric_collector] {"stage_name":"metric_collector","events_processed":21614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4322.8,"last_update":"2026-03-22T12:01:42.368882353Z"} +2026/03/22 12:01:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:01:42.379949994Z"} +2026/03/22 12:01:47 [detection_layer] {"stage_name":"detection_layer","events_processed":717,"events_dropped":0,"avg_latency_ms":20.12988524665647,"throughput_eps":0,"last_update":"2026-03-22T12:01:42.479071006Z"} +2026/03/22 12:01:47 [transform_engine] {"stage_name":"transform_engine","events_processed":720,"events_dropped":0,"avg_latency_ms":311.6926671775515,"throughput_eps":0,"last_update":"2026-03-22T12:01:42.47904199Z"} +2026/03/22 12:01:47 ───────────────────────────────────────────────── +2026/03/22 12:01:52 ── Pipeline Health ────────────────────────────── +2026/03/22 12:01:52 [detection_layer] {"stage_name":"detection_layer","events_processed":717,"events_dropped":0,"avg_latency_ms":20.12988524665647,"throughput_eps":0,"last_update":"2026-03-22T12:01:47.479603836Z"} +2026/03/22 12:01:52 [transform_engine] {"stage_name":"transform_engine","events_processed":720,"events_dropped":0,"avg_latency_ms":311.6926671775515,"throughput_eps":0,"last_update":"2026-03-22T12:01:47.479643483Z"} +2026/03/22 12:01:52 [log_collector] {"stage_name":"log_collector","events_processed":34277,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6855.4,"last_update":"2026-03-22T12:01:47.367975406Z"} +2026/03/22 12:01:52 [metric_collector] {"stage_name":"metric_collector","events_processed":21619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4323.8,"last_update":"2026-03-22T12:01:47.368781971Z"} +2026/03/22 12:01:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8650,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:01:47.37938985Z"} +2026/03/22 12:01:52 ───────────────────────────────────────────────── +2026/03/22 12:01:57 ── Pipeline Health ────────────────────────────── +2026/03/22 12:01:57 [detection_layer] {"stage_name":"detection_layer","events_processed":717,"events_dropped":0,"avg_latency_ms":20.12988524665647,"throughput_eps":0,"last_update":"2026-03-22T12:01:52.479154324Z"} +2026/03/22 12:01:57 [transform_engine] {"stage_name":"transform_engine","events_processed":720,"events_dropped":0,"avg_latency_ms":311.6926671775515,"throughput_eps":0,"last_update":"2026-03-22T12:01:52.479128415Z"} +2026/03/22 12:01:57 [log_collector] {"stage_name":"log_collector","events_processed":34277,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6855.4,"last_update":"2026-03-22T12:01:52.368795517Z"} +2026/03/22 12:01:57 [metric_collector] {"stage_name":"metric_collector","events_processed":21624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4324.8,"last_update":"2026-03-22T12:01:52.369552506Z"} +2026/03/22 12:01:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:01:52.380951942Z"} +2026/03/22 12:01:57 ───────────────────────────────────────────────── +2026/03/22 12:02:02 ── Pipeline Health ────────────────────────────── +2026/03/22 12:02:02 [metric_collector] {"stage_name":"metric_collector","events_processed":21628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4325.6,"last_update":"2026-03-22T12:01:57.368683782Z"} +2026/03/22 12:02:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:01:57.37939055Z"} +2026/03/22 12:02:02 [detection_layer] {"stage_name":"detection_layer","events_processed":717,"events_dropped":0,"avg_latency_ms":20.12988524665647,"throughput_eps":0,"last_update":"2026-03-22T12:01:57.480463783Z"} +2026/03/22 12:02:02 [transform_engine] {"stage_name":"transform_engine","events_processed":721,"events_dropped":0,"avg_latency_ms":263.79154594204124,"throughput_eps":0,"last_update":"2026-03-22T12:01:57.551844148Z"} +2026/03/22 12:02:02 [log_collector] {"stage_name":"log_collector","events_processed":34277,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6855.4,"last_update":"2026-03-22T12:01:57.368579662Z"} +2026/03/22 12:02:02 ───────────────────────────────────────────────── +Saved state: 23 clusters, 34278 messages, reason: none +2026/03/22 12:02:07 ── Pipeline Health ────────────────────────────── +2026/03/22 12:02:07 [log_collector] {"stage_name":"log_collector","events_processed":34277,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6855.4,"last_update":"2026-03-22T12:02:02.373736398Z"} +2026/03/22 12:02:07 [metric_collector] {"stage_name":"metric_collector","events_processed":21634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4326.8,"last_update":"2026-03-22T12:02:02.37526739Z"} +2026/03/22 12:02:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:02:02.432730729Z"} +2026/03/22 12:02:07 [detection_layer] {"stage_name":"detection_layer","events_processed":718,"events_dropped":0,"avg_latency_ms":20.82408159732518,"throughput_eps":0,"last_update":"2026-03-22T12:02:02.479971266Z"} +2026/03/22 12:02:07 [transform_engine] {"stage_name":"transform_engine","events_processed":721,"events_dropped":0,"avg_latency_ms":263.79154594204124,"throughput_eps":0,"last_update":"2026-03-22T12:02:02.47883525Z"} +2026/03/22 12:02:07 ───────────────────────────────────────────────── +2026/03/22 12:02:12 ── Pipeline Health ────────────────────────────── +2026/03/22 12:02:12 [transform_engine] {"stage_name":"transform_engine","events_processed":721,"events_dropped":0,"avg_latency_ms":263.79154594204124,"throughput_eps":0,"last_update":"2026-03-22T12:02:07.478861067Z"} +2026/03/22 12:02:12 [log_collector] {"stage_name":"log_collector","events_processed":34282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6856.4,"last_update":"2026-03-22T12:02:07.370404453Z"} +2026/03/22 12:02:12 [metric_collector] {"stage_name":"metric_collector","events_processed":21639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4327.8,"last_update":"2026-03-22T12:02:07.373549497Z"} +2026/03/22 12:02:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:02:07.403792347Z"} +2026/03/22 12:02:12 [detection_layer] {"stage_name":"detection_layer","events_processed":718,"events_dropped":0,"avg_latency_ms":20.82408159732518,"throughput_eps":0,"last_update":"2026-03-22T12:02:07.481193254Z"} +2026/03/22 12:02:12 ───────────────────────────────────────────────── +2026/03/22 12:02:17 ── Pipeline Health ────────────────────────────── +2026/03/22 12:02:17 [log_collector] {"stage_name":"log_collector","events_processed":34282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6856.4,"last_update":"2026-03-22T12:02:12.369389016Z"} +2026/03/22 12:02:17 [metric_collector] {"stage_name":"metric_collector","events_processed":21644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4328.8,"last_update":"2026-03-22T12:02:12.370174019Z"} +2026/03/22 12:02:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8660,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:02:12.416103476Z"} +2026/03/22 12:02:17 [detection_layer] {"stage_name":"detection_layer","events_processed":718,"events_dropped":0,"avg_latency_ms":20.82408159732518,"throughput_eps":0,"last_update":"2026-03-22T12:02:12.479254779Z"} +2026/03/22 12:02:17 [transform_engine] {"stage_name":"transform_engine","events_processed":721,"events_dropped":0,"avg_latency_ms":263.79154594204124,"throughput_eps":0,"last_update":"2026-03-22T12:02:12.479237405Z"} +2026/03/22 12:02:17 ───────────────────────────────────────────────── +2026/03/22 12:02:22 ── Pipeline Health ────────────────────────────── +2026/03/22 12:02:22 [transform_engine] {"stage_name":"transform_engine","events_processed":721,"events_dropped":0,"avg_latency_ms":263.79154594204124,"throughput_eps":0,"last_update":"2026-03-22T12:02:17.48840892Z"} +2026/03/22 12:02:22 [log_collector] {"stage_name":"log_collector","events_processed":34282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6856.4,"last_update":"2026-03-22T12:02:17.369289493Z"} +2026/03/22 12:02:22 [metric_collector] {"stage_name":"metric_collector","events_processed":21649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4329.8,"last_update":"2026-03-22T12:02:17.371020408Z"} +2026/03/22 12:02:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8662,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:02:17.404532047Z"} +2026/03/22 12:02:22 [detection_layer] {"stage_name":"detection_layer","events_processed":718,"events_dropped":0,"avg_latency_ms":20.82408159732518,"throughput_eps":0,"last_update":"2026-03-22T12:02:17.480084586Z"} +2026/03/22 12:02:22 ───────────────────────────────────────────────── +2026/03/22 12:02:27 ── Pipeline Health ────────────────────────────── +2026/03/22 12:02:27 [metric_collector] {"stage_name":"metric_collector","events_processed":21654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4330.8,"last_update":"2026-03-22T12:02:22.369896221Z"} +2026/03/22 12:02:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:02:22.405210324Z"} +2026/03/22 12:02:27 [detection_layer] {"stage_name":"detection_layer","events_processed":718,"events_dropped":0,"avg_latency_ms":20.82408159732518,"throughput_eps":0,"last_update":"2026-03-22T12:02:22.479409951Z"} +2026/03/22 12:02:27 [transform_engine] {"stage_name":"transform_engine","events_processed":721,"events_dropped":0,"avg_latency_ms":263.79154594204124,"throughput_eps":0,"last_update":"2026-03-22T12:02:22.479422725Z"} +2026/03/22 12:02:27 [log_collector] {"stage_name":"log_collector","events_processed":34282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6856.4,"last_update":"2026-03-22T12:02:22.369298366Z"} +2026/03/22 12:02:27 ───────────────────────────────────────────────── +2026/03/22 12:02:28 [ANOMALY] time=2026-03-22T12:02:28Z score=0.9031 method=SEAD details=MAD!:w=0.64,s=0.88 RRCF-fast!:w=0.10,s=0.98 RRCF-mid!:w=0.08,s=0.99 RRCF-slow!:w=0.07,s=0.95 COPOD!:w=0.12,s=0.86 +2026/03/22 12:02:32 ── Pipeline Health ────────────────────────────── +2026/03/22 12:02:32 [detection_layer] {"stage_name":"detection_layer","events_processed":718,"events_dropped":0,"avg_latency_ms":20.82408159732518,"throughput_eps":0,"last_update":"2026-03-22T12:02:27.479294904Z"} +2026/03/22 12:02:32 [transform_engine] {"stage_name":"transform_engine","events_processed":722,"events_dropped":0,"avg_latency_ms":358.78516755363296,"throughput_eps":0,"last_update":"2026-03-22T12:02:28.218148048Z"} +2026/03/22 12:02:32 [log_collector] {"stage_name":"log_collector","events_processed":34282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6856.4,"last_update":"2026-03-22T12:02:27.369169032Z"} +2026/03/22 12:02:32 [metric_collector] {"stage_name":"metric_collector","events_processed":21659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4331.8,"last_update":"2026-03-22T12:02:27.369871027Z"} +2026/03/22 12:02:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:02:27.393113748Z"} +2026/03/22 12:02:32 ───────────────────────────────────────────────── +2026/03/22 12:02:37 ── Pipeline Health ────────────────────────────── +2026/03/22 12:02:37 [log_collector] {"stage_name":"log_collector","events_processed":34282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6856.4,"last_update":"2026-03-22T12:02:32.369431391Z"} +2026/03/22 12:02:37 [metric_collector] {"stage_name":"metric_collector","events_processed":21664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4332.8,"last_update":"2026-03-22T12:02:32.370590612Z"} +2026/03/22 12:02:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8668,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:02:32.390009578Z"} +2026/03/22 12:02:37 [detection_layer] {"stage_name":"detection_layer","events_processed":719,"events_dropped":0,"avg_latency_ms":18.619568077860144,"throughput_eps":0,"last_update":"2026-03-22T12:02:32.479059399Z"} +2026/03/22 12:02:37 [transform_engine] {"stage_name":"transform_engine","events_processed":722,"events_dropped":0,"avg_latency_ms":358.78516755363296,"throughput_eps":0,"last_update":"2026-03-22T12:02:32.47905473Z"} +2026/03/22 12:02:37 ───────────────────────────────────────────────── +2026/03/22 12:02:42 ── Pipeline Health ────────────────────────────── +2026/03/22 12:02:42 [detection_layer] {"stage_name":"detection_layer","events_processed":719,"events_dropped":0,"avg_latency_ms":18.619568077860144,"throughput_eps":0,"last_update":"2026-03-22T12:02:37.479975779Z"} +2026/03/22 12:02:42 [transform_engine] {"stage_name":"transform_engine","events_processed":722,"events_dropped":0,"avg_latency_ms":358.78516755363296,"throughput_eps":0,"last_update":"2026-03-22T12:02:37.478871223Z"} +2026/03/22 12:02:42 [log_collector] {"stage_name":"log_collector","events_processed":34282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6856.4,"last_update":"2026-03-22T12:02:42.368406447Z"} +2026/03/22 12:02:42 [metric_collector] {"stage_name":"metric_collector","events_processed":21669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4333.8,"last_update":"2026-03-22T12:02:37.369074453Z"} +2026/03/22 12:02:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8670,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:02:37.380776036Z"} +2026/03/22 12:02:42 ───────────────────────────────────────────────── +2026/03/22 12:02:47 ── Pipeline Health ────────────────────────────── +2026/03/22 12:02:47 [log_collector] {"stage_name":"log_collector","events_processed":34291,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6858.2,"last_update":"2026-03-22T12:02:47.368503494Z"} +2026/03/22 12:02:47 [metric_collector] {"stage_name":"metric_collector","events_processed":21674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4334.8,"last_update":"2026-03-22T12:02:42.368616079Z"} +2026/03/22 12:02:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:02:42.379443142Z"} +2026/03/22 12:02:47 [detection_layer] {"stage_name":"detection_layer","events_processed":719,"events_dropped":0,"avg_latency_ms":18.619568077860144,"throughput_eps":0,"last_update":"2026-03-22T12:02:42.479452065Z"} +2026/03/22 12:02:47 [transform_engine] {"stage_name":"transform_engine","events_processed":722,"events_dropped":0,"avg_latency_ms":358.78516755363296,"throughput_eps":0,"last_update":"2026-03-22T12:02:42.479572626Z"} +2026/03/22 12:02:47 ───────────────────────────────────────────────── +2026/03/22 12:02:52 ── Pipeline Health ────────────────────────────── +2026/03/22 12:02:52 [log_collector] {"stage_name":"log_collector","events_processed":34291,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6858.2,"last_update":"2026-03-22T12:02:47.368503494Z"} +2026/03/22 12:02:52 [metric_collector] {"stage_name":"metric_collector","events_processed":21679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4335.8,"last_update":"2026-03-22T12:02:47.368841782Z"} +2026/03/22 12:02:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:02:47.375163919Z"} +2026/03/22 12:02:52 [detection_layer] {"stage_name":"detection_layer","events_processed":719,"events_dropped":0,"avg_latency_ms":18.619568077860144,"throughput_eps":0,"last_update":"2026-03-22T12:02:47.47945899Z"} +2026/03/22 12:02:52 [transform_engine] {"stage_name":"transform_engine","events_processed":722,"events_dropped":0,"avg_latency_ms":358.78516755363296,"throughput_eps":0,"last_update":"2026-03-22T12:02:47.479379779Z"} +2026/03/22 12:02:52 ───────────────────────────────────────────────── +2026/03/22 12:02:57 ── Pipeline Health ────────────────────────────── +2026/03/22 12:02:57 [log_collector] {"stage_name":"log_collector","events_processed":34520,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6904,"last_update":"2026-03-22T12:02:57.368580173Z"} +2026/03/22 12:02:57 [metric_collector] {"stage_name":"metric_collector","events_processed":21684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4336.8,"last_update":"2026-03-22T12:02:52.368174104Z"} +2026/03/22 12:02:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8676,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:02:52.377986233Z"} +2026/03/22 12:02:57 [detection_layer] {"stage_name":"detection_layer","events_processed":719,"events_dropped":0,"avg_latency_ms":18.619568077860144,"throughput_eps":0,"last_update":"2026-03-22T12:02:52.479216396Z"} +2026/03/22 12:02:57 [transform_engine] {"stage_name":"transform_engine","events_processed":722,"events_dropped":0,"avg_latency_ms":358.78516755363296,"throughput_eps":0,"last_update":"2026-03-22T12:02:52.479190086Z"} +2026/03/22 12:02:57 ───────────────────────────────────────────────── +2026/03/22 12:03:02 ── Pipeline Health ────────────────────────────── +2026/03/22 12:03:02 [log_collector] {"stage_name":"log_collector","events_processed":34520,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6904,"last_update":"2026-03-22T12:02:57.368580173Z"} +2026/03/22 12:03:02 [metric_collector] {"stage_name":"metric_collector","events_processed":21689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4337.8,"last_update":"2026-03-22T12:02:57.368744608Z"} +2026/03/22 12:03:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:02:57.375372631Z"} +2026/03/22 12:03:02 [detection_layer] {"stage_name":"detection_layer","events_processed":719,"events_dropped":0,"avg_latency_ms":18.619568077860144,"throughput_eps":0,"last_update":"2026-03-22T12:02:57.479768877Z"} +2026/03/22 12:03:02 [transform_engine] {"stage_name":"transform_engine","events_processed":723,"events_dropped":0,"avg_latency_ms":315.0644508429064,"throughput_eps":0,"last_update":"2026-03-22T12:02:57.619961883Z"} +2026/03/22 12:03:02 ───────────────────────────────────────────────── +2026/03/22 12:03:07 ── Pipeline Health ────────────────────────────── +2026/03/22 12:03:07 [transform_engine] {"stage_name":"transform_engine","events_processed":723,"events_dropped":0,"avg_latency_ms":315.0644508429064,"throughput_eps":0,"last_update":"2026-03-22T12:03:02.478820944Z"} +2026/03/22 12:03:07 [log_collector] {"stage_name":"log_collector","events_processed":34647,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6929.4,"last_update":"2026-03-22T12:03:02.368475165Z"} +2026/03/22 12:03:07 [metric_collector] {"stage_name":"metric_collector","events_processed":21694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4338.8,"last_update":"2026-03-22T12:03:02.368862526Z"} +2026/03/22 12:03:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:03:02.378659378Z"} +2026/03/22 12:03:07 [detection_layer] {"stage_name":"detection_layer","events_processed":720,"events_dropped":0,"avg_latency_ms":18.419470462288118,"throughput_eps":0,"last_update":"2026-03-22T12:03:02.479955277Z"} +2026/03/22 12:03:07 ───────────────────────────────────────────────── +Saved state: 23 clusters, 34648 messages, reason: none +2026/03/22 12:03:12 ── Pipeline Health ────────────────────────────── +2026/03/22 12:03:12 [log_collector] {"stage_name":"log_collector","events_processed":34647,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6929.4,"last_update":"2026-03-22T12:03:07.368790611Z"} +2026/03/22 12:03:12 [metric_collector] {"stage_name":"metric_collector","events_processed":21699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4339.8,"last_update":"2026-03-22T12:03:07.369280991Z"} +2026/03/22 12:03:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:03:07.377716525Z"} +2026/03/22 12:03:12 [detection_layer] {"stage_name":"detection_layer","events_processed":720,"events_dropped":0,"avg_latency_ms":18.419470462288118,"throughput_eps":0,"last_update":"2026-03-22T12:03:07.478987808Z"} +2026/03/22 12:03:12 [transform_engine] {"stage_name":"transform_engine","events_processed":723,"events_dropped":0,"avg_latency_ms":315.0644508429064,"throughput_eps":0,"last_update":"2026-03-22T12:03:07.478937912Z"} +2026/03/22 12:03:12 ───────────────────────────────────────────────── +2026/03/22 12:03:17 ── Pipeline Health ────────────────────────────── +2026/03/22 12:03:17 [metric_collector] {"stage_name":"metric_collector","events_processed":21704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4340.8,"last_update":"2026-03-22T12:03:12.368775979Z"} +2026/03/22 12:03:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:03:12.375908998Z"} +2026/03/22 12:03:17 [detection_layer] {"stage_name":"detection_layer","events_processed":720,"events_dropped":0,"avg_latency_ms":18.419470462288118,"throughput_eps":0,"last_update":"2026-03-22T12:03:12.479128391Z"} +2026/03/22 12:03:17 [transform_engine] {"stage_name":"transform_engine","events_processed":723,"events_dropped":0,"avg_latency_ms":315.0644508429064,"throughput_eps":0,"last_update":"2026-03-22T12:03:12.479098194Z"} +2026/03/22 12:03:17 [log_collector] {"stage_name":"log_collector","events_processed":34650,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6930,"last_update":"2026-03-22T12:03:12.368524717Z"} +2026/03/22 12:03:17 ───────────────────────────────────────────────── +2026/03/22 12:03:22 ── Pipeline Health ────────────────────────────── +2026/03/22 12:03:22 [metric_collector] {"stage_name":"metric_collector","events_processed":21709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4341.8,"last_update":"2026-03-22T12:03:17.368713041Z"} +2026/03/22 12:03:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:03:17.378067435Z"} +2026/03/22 12:03:22 [detection_layer] {"stage_name":"detection_layer","events_processed":720,"events_dropped":0,"avg_latency_ms":18.419470462288118,"throughput_eps":0,"last_update":"2026-03-22T12:03:17.479392391Z"} +2026/03/22 12:03:22 [transform_engine] {"stage_name":"transform_engine","events_processed":723,"events_dropped":0,"avg_latency_ms":315.0644508429064,"throughput_eps":0,"last_update":"2026-03-22T12:03:17.479322307Z"} +2026/03/22 12:03:22 [log_collector] {"stage_name":"log_collector","events_processed":34650,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6930,"last_update":"2026-03-22T12:03:17.36848229Z"} +2026/03/22 12:03:22 ───────────────────────────────────────────────── +2026/03/22 12:03:27 ── Pipeline Health ────────────────────────────── +2026/03/22 12:03:27 [log_collector] {"stage_name":"log_collector","events_processed":34660,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6932,"last_update":"2026-03-22T12:03:22.368938046Z"} +2026/03/22 12:03:27 [metric_collector] {"stage_name":"metric_collector","events_processed":21714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4342.8,"last_update":"2026-03-22T12:03:22.369181171Z"} +2026/03/22 12:03:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8688,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:03:22.375813613Z"} +2026/03/22 12:03:27 [detection_layer] {"stage_name":"detection_layer","events_processed":720,"events_dropped":0,"avg_latency_ms":18.419470462288118,"throughput_eps":0,"last_update":"2026-03-22T12:03:22.479110145Z"} +2026/03/22 12:03:27 [transform_engine] {"stage_name":"transform_engine","events_processed":723,"events_dropped":0,"avg_latency_ms":315.0644508429064,"throughput_eps":0,"last_update":"2026-03-22T12:03:22.479067983Z"} +2026/03/22 12:03:27 ───────────────────────────────────────────────── +2026/03/22 12:03:29 [ANOMALY] time=2026-03-22T12:03:29Z score=0.7627 method=SEAD details=MAD!:w=0.64,s=0.76 RRCF-fast!:w=0.09,s=0.95 RRCF-mid:w=0.08,s=0.86 RRCF-slow:w=0.07,s=0.59 COPOD!:w=0.12,s=0.65 +2026/03/22 12:03:32 ── Pipeline Health ────────────────────────────── +2026/03/22 12:03:32 [log_collector] {"stage_name":"log_collector","events_processed":34668,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6933.6,"last_update":"2026-03-22T12:03:27.368709311Z"} +2026/03/22 12:03:32 [metric_collector] {"stage_name":"metric_collector","events_processed":21719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4343.8,"last_update":"2026-03-22T12:03:27.369008584Z"} +2026/03/22 12:03:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:03:27.378519868Z"} +2026/03/22 12:03:32 [detection_layer] {"stage_name":"detection_layer","events_processed":720,"events_dropped":0,"avg_latency_ms":18.419470462288118,"throughput_eps":0,"last_update":"2026-03-22T12:03:27.479750194Z"} +2026/03/22 12:03:32 [transform_engine] {"stage_name":"transform_engine","events_processed":724,"events_dropped":0,"avg_latency_ms":689.5580172743252,"throughput_eps":0,"last_update":"2026-03-22T12:03:29.667303387Z"} +2026/03/22 12:03:32 ───────────────────────────────────────────────── +2026/03/22 12:03:37 ── Pipeline Health ────────────────────────────── +2026/03/22 12:03:37 [log_collector] {"stage_name":"log_collector","events_processed":34677,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6935.4,"last_update":"2026-03-22T12:03:32.371103869Z"} +2026/03/22 12:03:37 [metric_collector] {"stage_name":"metric_collector","events_processed":21724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4344.8,"last_update":"2026-03-22T12:03:32.371665585Z"} +2026/03/22 12:03:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:03:32.455538332Z"} +2026/03/22 12:03:37 [detection_layer] {"stage_name":"detection_layer","events_processed":721,"events_dropped":0,"avg_latency_ms":17.899980169830496,"throughput_eps":0,"last_update":"2026-03-22T12:03:32.479754445Z"} +2026/03/22 12:03:37 [transform_engine] {"stage_name":"transform_engine","events_processed":724,"events_dropped":0,"avg_latency_ms":689.5580172743252,"throughput_eps":0,"last_update":"2026-03-22T12:03:32.479732463Z"} +2026/03/22 12:03:37 ───────────────────────────────────────────────── +2026/03/22 12:03:42 ── Pipeline Health ────────────────────────────── +2026/03/22 12:03:42 [detection_layer] {"stage_name":"detection_layer","events_processed":721,"events_dropped":0,"avg_latency_ms":17.899980169830496,"throughput_eps":0,"last_update":"2026-03-22T12:03:37.479156542Z"} +2026/03/22 12:03:42 [transform_engine] {"stage_name":"transform_engine","events_processed":724,"events_dropped":0,"avg_latency_ms":689.5580172743252,"throughput_eps":0,"last_update":"2026-03-22T12:03:37.47913473Z"} +2026/03/22 12:03:42 [log_collector] {"stage_name":"log_collector","events_processed":34677,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6935.4,"last_update":"2026-03-22T12:03:37.369491784Z"} +2026/03/22 12:03:42 [metric_collector] {"stage_name":"metric_collector","events_processed":21729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4345.8,"last_update":"2026-03-22T12:03:37.370125227Z"} +2026/03/22 12:03:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:03:37.392899189Z"} +2026/03/22 12:03:42 ───────────────────────────────────────────────── +2026/03/22 12:03:47 ── Pipeline Health ────────────────────────────── +2026/03/22 12:03:47 [log_collector] {"stage_name":"log_collector","events_processed":34677,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6935.4,"last_update":"2026-03-22T12:03:42.369598851Z"} +2026/03/22 12:03:47 [metric_collector] {"stage_name":"metric_collector","events_processed":21734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4346.8,"last_update":"2026-03-22T12:03:42.370171537Z"} +2026/03/22 12:03:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:03:42.392931512Z"} +2026/03/22 12:03:47 [detection_layer] {"stage_name":"detection_layer","events_processed":721,"events_dropped":0,"avg_latency_ms":17.899980169830496,"throughput_eps":0,"last_update":"2026-03-22T12:03:42.479252658Z"} +2026/03/22 12:03:47 [transform_engine] {"stage_name":"transform_engine","events_processed":724,"events_dropped":0,"avg_latency_ms":689.5580172743252,"throughput_eps":0,"last_update":"2026-03-22T12:03:42.479283627Z"} +2026/03/22 12:03:47 ───────────────────────────────────────────────── +2026/03/22 12:03:52 ── Pipeline Health ────────────────────────────── +2026/03/22 12:03:52 [log_collector] {"stage_name":"log_collector","events_processed":34677,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6935.4,"last_update":"2026-03-22T12:03:47.369304988Z"} +2026/03/22 12:03:52 [metric_collector] {"stage_name":"metric_collector","events_processed":21739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4347.8,"last_update":"2026-03-22T12:03:47.369914766Z"} +2026/03/22 12:03:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:03:47.390288141Z"} +2026/03/22 12:03:52 [detection_layer] {"stage_name":"detection_layer","events_processed":721,"events_dropped":0,"avg_latency_ms":17.899980169830496,"throughput_eps":0,"last_update":"2026-03-22T12:03:47.481602049Z"} +2026/03/22 12:03:52 [transform_engine] {"stage_name":"transform_engine","events_processed":724,"events_dropped":0,"avg_latency_ms":689.5580172743252,"throughput_eps":0,"last_update":"2026-03-22T12:03:47.481495936Z"} +2026/03/22 12:03:52 ───────────────────────────────────────────────── +2026/03/22 12:03:57 ── Pipeline Health ────────────────────────────── +2026/03/22 12:03:57 [log_collector] {"stage_name":"log_collector","events_processed":34677,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6935.4,"last_update":"2026-03-22T12:03:52.369085978Z"} +2026/03/22 12:03:57 [metric_collector] {"stage_name":"metric_collector","events_processed":21744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4348.8,"last_update":"2026-03-22T12:03:52.369925655Z"} +2026/03/22 12:03:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8700,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:03:52.392108907Z"} +2026/03/22 12:03:57 [detection_layer] {"stage_name":"detection_layer","events_processed":721,"events_dropped":0,"avg_latency_ms":17.899980169830496,"throughput_eps":0,"last_update":"2026-03-22T12:03:52.479387277Z"} +2026/03/22 12:03:57 [transform_engine] {"stage_name":"transform_engine","events_processed":724,"events_dropped":0,"avg_latency_ms":689.5580172743252,"throughput_eps":0,"last_update":"2026-03-22T12:03:52.479396835Z"} +2026/03/22 12:03:57 ───────────────────────────────────────────────── +2026/03/22 12:03:57 [ANOMALY] time=2026-03-22T12:03:57Z score=0.7905 method=SEAD details=MAD!:w=0.64,s=0.88 RRCF-fast!:w=0.09,s=0.95 RRCF-mid:w=0.08,s=0.85 RRCF-slow:w=0.07,s=0.83 COPOD!:w=0.12,s=0.10 +2026/03/22 12:04:02 ── Pipeline Health ────────────────────────────── +2026/03/22 12:04:02 [transform_engine] {"stage_name":"transform_engine","events_processed":725,"events_dropped":0,"avg_latency_ms":584.5876772194601,"throughput_eps":0,"last_update":"2026-03-22T12:03:57.643741797Z"} +2026/03/22 12:04:02 [log_collector] {"stage_name":"log_collector","events_processed":34677,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6935.4,"last_update":"2026-03-22T12:03:57.369995997Z"} +2026/03/22 12:04:02 [metric_collector] {"stage_name":"metric_collector","events_processed":21748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4349.6,"last_update":"2026-03-22T12:03:57.369995756Z"} +2026/03/22 12:04:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8702,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:03:57.393741661Z"} +2026/03/22 12:04:02 [detection_layer] {"stage_name":"detection_layer","events_processed":721,"events_dropped":0,"avg_latency_ms":17.899980169830496,"throughput_eps":0,"last_update":"2026-03-22T12:03:57.479027956Z"} +2026/03/22 12:04:02 ───────────────────────────────────────────────── +2026/03/22 12:04:07 ── Pipeline Health ────────────────────────────── +2026/03/22 12:04:07 [transform_engine] {"stage_name":"transform_engine","events_processed":725,"events_dropped":0,"avg_latency_ms":584.5876772194601,"throughput_eps":0,"last_update":"2026-03-22T12:04:02.479811573Z"} +2026/03/22 12:04:07 [log_collector] {"stage_name":"log_collector","events_processed":34677,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6935.4,"last_update":"2026-03-22T12:04:02.369563325Z"} +2026/03/22 12:04:07 [metric_collector] {"stage_name":"metric_collector","events_processed":21754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4350.8,"last_update":"2026-03-22T12:04:02.370154968Z"} +2026/03/22 12:04:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:04:02.385598212Z"} +2026/03/22 12:04:07 [detection_layer] {"stage_name":"detection_layer","events_processed":722,"events_dropped":0,"avg_latency_ms":29.039606535864394,"throughput_eps":0,"last_update":"2026-03-22T12:04:02.479791364Z"} +2026/03/22 12:04:07 ───────────────────────────────────────────────── +2026/03/22 12:04:12 ── Pipeline Health ────────────────────────────── +2026/03/22 12:04:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:04:07.37849861Z"} +2026/03/22 12:04:12 [detection_layer] {"stage_name":"detection_layer","events_processed":722,"events_dropped":0,"avg_latency_ms":29.039606535864394,"throughput_eps":0,"last_update":"2026-03-22T12:04:07.479809674Z"} +2026/03/22 12:04:12 [transform_engine] {"stage_name":"transform_engine","events_processed":725,"events_dropped":0,"avg_latency_ms":584.5876772194601,"throughput_eps":0,"last_update":"2026-03-22T12:04:07.479838299Z"} +2026/03/22 12:04:12 [log_collector] {"stage_name":"log_collector","events_processed":34677,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6935.4,"last_update":"2026-03-22T12:04:07.368914436Z"} +2026/03/22 12:04:12 [metric_collector] {"stage_name":"metric_collector","events_processed":21759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4351.8,"last_update":"2026-03-22T12:04:07.369277792Z"} +2026/03/22 12:04:12 ───────────────────────────────────────────────── +2026/03/22 12:04:17 ── Pipeline Health ────────────────────────────── +2026/03/22 12:04:17 [metric_collector] {"stage_name":"metric_collector","events_processed":21764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4352.8,"last_update":"2026-03-22T12:04:12.368898658Z"} +2026/03/22 12:04:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:04:12.378036938Z"} +2026/03/22 12:04:17 [detection_layer] {"stage_name":"detection_layer","events_processed":722,"events_dropped":0,"avg_latency_ms":29.039606535864394,"throughput_eps":0,"last_update":"2026-03-22T12:04:12.47924802Z"} +2026/03/22 12:04:17 [transform_engine] {"stage_name":"transform_engine","events_processed":725,"events_dropped":0,"avg_latency_ms":584.5876772194601,"throughput_eps":0,"last_update":"2026-03-22T12:04:12.479329706Z"} +2026/03/22 12:04:17 [log_collector] {"stage_name":"log_collector","events_processed":34677,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6935.4,"last_update":"2026-03-22T12:04:12.368326993Z"} +2026/03/22 12:04:17 ───────────────────────────────────────────────── +2026/03/22 12:04:22 ── Pipeline Health ────────────────────────────── +2026/03/22 12:04:22 [log_collector] {"stage_name":"log_collector","events_processed":34677,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6935.4,"last_update":"2026-03-22T12:04:17.368026497Z"} +2026/03/22 12:04:22 [metric_collector] {"stage_name":"metric_collector","events_processed":21769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4353.8,"last_update":"2026-03-22T12:04:17.368439157Z"} +2026/03/22 12:04:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:04:17.377487665Z"} +2026/03/22 12:04:22 [detection_layer] {"stage_name":"detection_layer","events_processed":722,"events_dropped":0,"avg_latency_ms":29.039606535864394,"throughput_eps":0,"last_update":"2026-03-22T12:04:17.479758387Z"} +2026/03/22 12:04:22 [transform_engine] {"stage_name":"transform_engine","events_processed":725,"events_dropped":0,"avg_latency_ms":584.5876772194601,"throughput_eps":0,"last_update":"2026-03-22T12:04:17.479704564Z"} +2026/03/22 12:04:22 ───────────────────────────────────────────────── +2026/03/22 12:04:27 ── Pipeline Health ────────────────────────────── +2026/03/22 12:04:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8712,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:04:22.379651377Z"} +2026/03/22 12:04:27 [detection_layer] {"stage_name":"detection_layer","events_processed":722,"events_dropped":0,"avg_latency_ms":29.039606535864394,"throughput_eps":0,"last_update":"2026-03-22T12:04:22.479881421Z"} +2026/03/22 12:04:27 [transform_engine] {"stage_name":"transform_engine","events_processed":725,"events_dropped":0,"avg_latency_ms":584.5876772194601,"throughput_eps":0,"last_update":"2026-03-22T12:04:22.479852887Z"} +2026/03/22 12:04:27 [log_collector] {"stage_name":"log_collector","events_processed":34677,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6935.4,"last_update":"2026-03-22T12:04:22.368006417Z"} +2026/03/22 12:04:27 [metric_collector] {"stage_name":"metric_collector","events_processed":21774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4354.8,"last_update":"2026-03-22T12:04:22.368605834Z"} +2026/03/22 12:04:27 ───────────────────────────────────────────────── +2026/03/22 12:04:32 ── Pipeline Health ────────────────────────────── +2026/03/22 12:04:32 [transform_engine] {"stage_name":"transform_engine","events_processed":726,"events_dropped":0,"avg_latency_ms":484.61413017556816,"throughput_eps":0,"last_update":"2026-03-22T12:04:27.564541573Z"} +2026/03/22 12:04:32 [log_collector] {"stage_name":"log_collector","events_processed":34677,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6935.4,"last_update":"2026-03-22T12:04:27.368604596Z"} +2026/03/22 12:04:32 [metric_collector] {"stage_name":"metric_collector","events_processed":21779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4355.8,"last_update":"2026-03-22T12:04:27.369238159Z"} +2026/03/22 12:04:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:04:27.377536441Z"} +2026/03/22 12:04:32 [detection_layer] {"stage_name":"detection_layer","events_processed":722,"events_dropped":0,"avg_latency_ms":29.039606535864394,"throughput_eps":0,"last_update":"2026-03-22T12:04:27.479785542Z"} +2026/03/22 12:04:32 ───────────────────────────────────────────────── +2026/03/22 12:04:37 ── Pipeline Health ────────────────────────────── +2026/03/22 12:04:37 [transform_engine] {"stage_name":"transform_engine","events_processed":726,"events_dropped":0,"avg_latency_ms":484.61413017556816,"throughput_eps":0,"last_update":"2026-03-22T12:04:32.47959565Z"} +2026/03/22 12:04:37 [log_collector] {"stage_name":"log_collector","events_processed":34677,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6935.4,"last_update":"2026-03-22T12:04:32.36874257Z"} +2026/03/22 12:04:37 [metric_collector] {"stage_name":"metric_collector","events_processed":21784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4356.8,"last_update":"2026-03-22T12:04:32.368718714Z"} +2026/03/22 12:04:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:04:32.377261394Z"} +2026/03/22 12:04:37 [detection_layer] {"stage_name":"detection_layer","events_processed":723,"events_dropped":0,"avg_latency_ms":27.00483282869152,"throughput_eps":0,"last_update":"2026-03-22T12:04:32.479571794Z"} +2026/03/22 12:04:37 ───────────────────────────────────────────────── +Saved state: 23 clusters, 34678 messages, reason: none +2026/03/22 12:04:42 ── Pipeline Health ────────────────────────────── +2026/03/22 12:04:42 [transform_engine] {"stage_name":"transform_engine","events_processed":726,"events_dropped":0,"avg_latency_ms":484.61413017556816,"throughput_eps":0,"last_update":"2026-03-22T12:04:37.479401407Z"} +2026/03/22 12:04:42 [log_collector] {"stage_name":"log_collector","events_processed":34677,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6935.4,"last_update":"2026-03-22T12:04:37.368418939Z"} +2026/03/22 12:04:42 [metric_collector] {"stage_name":"metric_collector","events_processed":21789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4357.8,"last_update":"2026-03-22T12:04:37.36891522Z"} +2026/03/22 12:04:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8718,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:04:37.37991241Z"} +2026/03/22 12:04:42 [detection_layer] {"stage_name":"detection_layer","events_processed":723,"events_dropped":0,"avg_latency_ms":27.00483282869152,"throughput_eps":0,"last_update":"2026-03-22T12:04:37.479320802Z"} +2026/03/22 12:04:42 ───────────────────────────────────────────────── +2026/03/22 12:04:47 ── Pipeline Health ────────────────────────────── +2026/03/22 12:04:47 [transform_engine] {"stage_name":"transform_engine","events_processed":726,"events_dropped":0,"avg_latency_ms":484.61413017556816,"throughput_eps":0,"last_update":"2026-03-22T12:04:42.479576048Z"} +2026/03/22 12:04:47 [log_collector] {"stage_name":"log_collector","events_processed":34691,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6938.2,"last_update":"2026-03-22T12:04:47.368272138Z"} +2026/03/22 12:04:47 [metric_collector] {"stage_name":"metric_collector","events_processed":21794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4358.8,"last_update":"2026-03-22T12:04:42.368956075Z"} +2026/03/22 12:04:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:04:42.377315944Z"} +2026/03/22 12:04:47 [detection_layer] {"stage_name":"detection_layer","events_processed":723,"events_dropped":0,"avg_latency_ms":27.00483282869152,"throughput_eps":0,"last_update":"2026-03-22T12:04:42.47951989Z"} +2026/03/22 12:04:47 ───────────────────────────────────────────────── +2026/03/22 12:04:52 ── Pipeline Health ────────────────────────────── +2026/03/22 12:04:52 [metric_collector] {"stage_name":"metric_collector","events_processed":21799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4359.8,"last_update":"2026-03-22T12:04:47.368812203Z"} +2026/03/22 12:04:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8722,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:04:47.377783964Z"} +2026/03/22 12:04:52 [detection_layer] {"stage_name":"detection_layer","events_processed":723,"events_dropped":0,"avg_latency_ms":27.00483282869152,"throughput_eps":0,"last_update":"2026-03-22T12:04:47.47899019Z"} +2026/03/22 12:04:52 [transform_engine] {"stage_name":"transform_engine","events_processed":726,"events_dropped":0,"avg_latency_ms":484.61413017556816,"throughput_eps":0,"last_update":"2026-03-22T12:04:47.478922249Z"} +2026/03/22 12:04:52 [log_collector] {"stage_name":"log_collector","events_processed":34691,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6938.2,"last_update":"2026-03-22T12:04:47.368272138Z"} +2026/03/22 12:04:52 ───────────────────────────────────────────────── +2026/03/22 12:04:57 ── Pipeline Health ────────────────────────────── +2026/03/22 12:04:57 [detection_layer] {"stage_name":"detection_layer","events_processed":723,"events_dropped":0,"avg_latency_ms":27.00483282869152,"throughput_eps":0,"last_update":"2026-03-22T12:04:52.479370308Z"} +2026/03/22 12:04:57 [transform_engine] {"stage_name":"transform_engine","events_processed":726,"events_dropped":0,"avg_latency_ms":484.61413017556816,"throughput_eps":0,"last_update":"2026-03-22T12:04:52.479383183Z"} +2026/03/22 12:04:57 [log_collector] {"stage_name":"log_collector","events_processed":34691,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6938.2,"last_update":"2026-03-22T12:04:52.368642458Z"} +2026/03/22 12:04:57 [metric_collector] {"stage_name":"metric_collector","events_processed":21804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4360.8,"last_update":"2026-03-22T12:04:52.36900425Z"} +2026/03/22 12:04:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:04:52.378153833Z"} +2026/03/22 12:04:57 ───────────────────────────────────────────────── +2026/03/22 12:05:02 ── Pipeline Health ────────────────────────────── +2026/03/22 12:05:02 [metric_collector] {"stage_name":"metric_collector","events_processed":21809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4361.8,"last_update":"2026-03-22T12:04:57.368734261Z"} +2026/03/22 12:05:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:04:57.376617539Z"} +2026/03/22 12:05:02 [detection_layer] {"stage_name":"detection_layer","events_processed":723,"events_dropped":0,"avg_latency_ms":27.00483282869152,"throughput_eps":0,"last_update":"2026-03-22T12:04:57.479014084Z"} +2026/03/22 12:05:02 [transform_engine] {"stage_name":"transform_engine","events_processed":727,"events_dropped":0,"avg_latency_ms":413.93037954045457,"throughput_eps":0,"last_update":"2026-03-22T12:04:57.610098409Z"} +2026/03/22 12:05:02 [log_collector] {"stage_name":"log_collector","events_processed":34691,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6938.2,"last_update":"2026-03-22T12:05:02.369342728Z"} +2026/03/22 12:05:02 ───────────────────────────────────────────────── +2026/03/22 12:05:07 ── Pipeline Health ────────────────────────────── +2026/03/22 12:05:07 [log_collector] {"stage_name":"log_collector","events_processed":34691,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6938.2,"last_update":"2026-03-22T12:05:02.369342728Z"} +2026/03/22 12:05:07 [metric_collector] {"stage_name":"metric_collector","events_processed":21814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4362.8,"last_update":"2026-03-22T12:05:02.370146638Z"} +2026/03/22 12:05:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8728,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:05:02.392794089Z"} +2026/03/22 12:05:07 [detection_layer] {"stage_name":"detection_layer","events_processed":724,"events_dropped":0,"avg_latency_ms":25.67114746295322,"throughput_eps":0,"last_update":"2026-03-22T12:05:02.47899561Z"} +2026/03/22 12:05:07 [transform_engine] {"stage_name":"transform_engine","events_processed":727,"events_dropped":0,"avg_latency_ms":413.93037954045457,"throughput_eps":0,"last_update":"2026-03-22T12:05:02.478915236Z"} +2026/03/22 12:05:07 ───────────────────────────────────────────────── +2026/03/22 12:05:12 ── Pipeline Health ────────────────────────────── +2026/03/22 12:05:12 [metric_collector] {"stage_name":"metric_collector","events_processed":21819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4363.8,"last_update":"2026-03-22T12:05:07.370376386Z"} +2026/03/22 12:05:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8730,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:05:07.394832762Z"} +2026/03/22 12:05:12 [detection_layer] {"stage_name":"detection_layer","events_processed":724,"events_dropped":0,"avg_latency_ms":25.67114746295322,"throughput_eps":0,"last_update":"2026-03-22T12:05:07.479165094Z"} +2026/03/22 12:05:12 [transform_engine] {"stage_name":"transform_engine","events_processed":727,"events_dropped":0,"avg_latency_ms":413.93037954045457,"throughput_eps":0,"last_update":"2026-03-22T12:05:07.479123614Z"} +2026/03/22 12:05:12 [log_collector] {"stage_name":"log_collector","events_processed":34691,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6938.2,"last_update":"2026-03-22T12:05:07.369617483Z"} +2026/03/22 12:05:12 ───────────────────────────────────────────────── +2026/03/22 12:05:17 ── Pipeline Health ────────────────────────────── +2026/03/22 12:05:17 [log_collector] {"stage_name":"log_collector","events_processed":34691,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6938.2,"last_update":"2026-03-22T12:05:12.369108933Z"} +2026/03/22 12:05:17 [metric_collector] {"stage_name":"metric_collector","events_processed":21824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4364.8,"last_update":"2026-03-22T12:05:12.36972864Z"} +2026/03/22 12:05:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:05:12.391939044Z"} +2026/03/22 12:05:17 [detection_layer] {"stage_name":"detection_layer","events_processed":724,"events_dropped":0,"avg_latency_ms":25.67114746295322,"throughput_eps":0,"last_update":"2026-03-22T12:05:12.479154949Z"} +2026/03/22 12:05:17 [transform_engine] {"stage_name":"transform_engine","events_processed":727,"events_dropped":0,"avg_latency_ms":413.93037954045457,"throughput_eps":0,"last_update":"2026-03-22T12:05:12.479154879Z"} +2026/03/22 12:05:17 ───────────────────────────────────────────────── +2026/03/22 12:05:22 ── Pipeline Health ────────────────────────────── +2026/03/22 12:05:22 [transform_engine] {"stage_name":"transform_engine","events_processed":727,"events_dropped":0,"avg_latency_ms":413.93037954045457,"throughput_eps":0,"last_update":"2026-03-22T12:05:17.479107118Z"} +2026/03/22 12:05:22 [log_collector] {"stage_name":"log_collector","events_processed":34691,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6938.2,"last_update":"2026-03-22T12:05:22.368998147Z"} +2026/03/22 12:05:22 [metric_collector] {"stage_name":"metric_collector","events_processed":21829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4365.8,"last_update":"2026-03-22T12:05:17.369472069Z"} +2026/03/22 12:05:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:05:17.389850745Z"} +2026/03/22 12:05:22 [detection_layer] {"stage_name":"detection_layer","events_processed":724,"events_dropped":0,"avg_latency_ms":25.67114746295322,"throughput_eps":0,"last_update":"2026-03-22T12:05:17.47913968Z"} +2026/03/22 12:05:22 ───────────────────────────────────────────────── +2026/03/22 12:05:27 ── Pipeline Health ────────────────────────────── +2026/03/22 12:05:27 [log_collector] {"stage_name":"log_collector","events_processed":34691,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6938.2,"last_update":"2026-03-22T12:05:27.369648941Z"} +2026/03/22 12:05:27 [metric_collector] {"stage_name":"metric_collector","events_processed":21834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4366.8,"last_update":"2026-03-22T12:05:22.369958766Z"} +2026/03/22 12:05:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8736,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:05:22.390780621Z"} +2026/03/22 12:05:27 [detection_layer] {"stage_name":"detection_layer","events_processed":724,"events_dropped":0,"avg_latency_ms":25.67114746295322,"throughput_eps":0,"last_update":"2026-03-22T12:05:22.479917235Z"} +2026/03/22 12:05:27 [transform_engine] {"stage_name":"transform_engine","events_processed":727,"events_dropped":0,"avg_latency_ms":413.93037954045457,"throughput_eps":0,"last_update":"2026-03-22T12:05:22.479833746Z"} +2026/03/22 12:05:27 ───────────────────────────────────────────────── +2026/03/22 12:05:27 [ANOMALY] time=2026-03-22T12:05:27Z score=0.7819 method=SEAD details=MAD!:w=0.64,s=0.88 RRCF-fast:w=0.09,s=0.89 RRCF-mid:w=0.08,s=0.87 RRCF-slow:w=0.07,s=0.73 COPOD!:w=0.12,s=0.15 +2026/03/22 12:05:32 ── Pipeline Health ────────────────────────────── +2026/03/22 12:05:32 [log_collector] {"stage_name":"log_collector","events_processed":34691,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6938.2,"last_update":"2026-03-22T12:05:27.369648941Z"} +2026/03/22 12:05:32 [metric_collector] {"stage_name":"metric_collector","events_processed":21839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4367.8,"last_update":"2026-03-22T12:05:27.370538385Z"} +2026/03/22 12:05:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8738,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:05:27.395555244Z"} +2026/03/22 12:05:32 [detection_layer] {"stage_name":"detection_layer","events_processed":724,"events_dropped":0,"avg_latency_ms":25.67114746295322,"throughput_eps":0,"last_update":"2026-03-22T12:05:27.479806873Z"} +2026/03/22 12:05:32 [transform_engine] {"stage_name":"transform_engine","events_processed":728,"events_dropped":0,"avg_latency_ms":352.7281486323637,"throughput_eps":0,"last_update":"2026-03-22T12:05:27.587671853Z"} +2026/03/22 12:05:32 ───────────────────────────────────────────────── +2026/03/22 12:05:37 ── Pipeline Health ────────────────────────────── +2026/03/22 12:05:37 [log_collector] {"stage_name":"log_collector","events_processed":34691,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6938.2,"last_update":"2026-03-22T12:05:37.367991555Z"} +2026/03/22 12:05:37 [metric_collector] {"stage_name":"metric_collector","events_processed":21843,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4368.6,"last_update":"2026-03-22T12:05:32.36851687Z"} +2026/03/22 12:05:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8740,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:05:32.387408208Z"} +2026/03/22 12:05:37 [detection_layer] {"stage_name":"detection_layer","events_processed":725,"events_dropped":0,"avg_latency_ms":23.90058977036258,"throughput_eps":0,"last_update":"2026-03-22T12:05:32.479686008Z"} +2026/03/22 12:05:37 [transform_engine] {"stage_name":"transform_engine","events_processed":728,"events_dropped":0,"avg_latency_ms":352.7281486323637,"throughput_eps":0,"last_update":"2026-03-22T12:05:32.479666691Z"} +2026/03/22 12:05:37 ───────────────────────────────────────────────── +2026/03/22 12:05:42 ── Pipeline Health ────────────────────────────── +2026/03/22 12:05:42 [detection_layer] {"stage_name":"detection_layer","events_processed":725,"events_dropped":0,"avg_latency_ms":23.90058977036258,"throughput_eps":0,"last_update":"2026-03-22T12:05:37.479746557Z"} +2026/03/22 12:05:42 [transform_engine] {"stage_name":"transform_engine","events_processed":728,"events_dropped":0,"avg_latency_ms":352.7281486323637,"throughput_eps":0,"last_update":"2026-03-22T12:05:37.479645974Z"} +2026/03/22 12:05:42 [log_collector] {"stage_name":"log_collector","events_processed":34691,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6938.2,"last_update":"2026-03-22T12:05:37.367991555Z"} +2026/03/22 12:05:42 [metric_collector] {"stage_name":"metric_collector","events_processed":21848,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4369.6,"last_update":"2026-03-22T12:05:37.368016253Z"} +2026/03/22 12:05:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:05:37.377400105Z"} +2026/03/22 12:05:42 ───────────────────────────────────────────────── +2026/03/22 12:05:47 ── Pipeline Health ────────────────────────────── +2026/03/22 12:05:47 [log_collector] {"stage_name":"log_collector","events_processed":34691,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6938.2,"last_update":"2026-03-22T12:05:42.368403572Z"} +2026/03/22 12:05:47 [metric_collector] {"stage_name":"metric_collector","events_processed":21854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4370.8,"last_update":"2026-03-22T12:05:42.368396529Z"} +2026/03/22 12:05:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:05:42.378275097Z"} +2026/03/22 12:05:47 [detection_layer] {"stage_name":"detection_layer","events_processed":725,"events_dropped":0,"avg_latency_ms":23.90058977036258,"throughput_eps":0,"last_update":"2026-03-22T12:05:42.479629099Z"} +2026/03/22 12:05:47 [transform_engine] {"stage_name":"transform_engine","events_processed":728,"events_dropped":0,"avg_latency_ms":352.7281486323637,"throughput_eps":0,"last_update":"2026-03-22T12:05:42.479669867Z"} +2026/03/22 12:05:47 ───────────────────────────────────────────────── +Saved state: 23 clusters, 34692 messages, reason: none +2026/03/22 12:05:52 ── Pipeline Health ────────────────────────────── +2026/03/22 12:05:52 [log_collector] {"stage_name":"log_collector","events_processed":34691,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6938.2,"last_update":"2026-03-22T12:05:47.368652441Z"} +2026/03/22 12:05:52 [metric_collector] {"stage_name":"metric_collector","events_processed":21864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4372.8,"last_update":"2026-03-22T12:05:52.368635785Z"} +2026/03/22 12:05:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:05:47.377895482Z"} +2026/03/22 12:05:52 [detection_layer] {"stage_name":"detection_layer","events_processed":725,"events_dropped":0,"avg_latency_ms":23.90058977036258,"throughput_eps":0,"last_update":"2026-03-22T12:05:47.479093676Z"} +2026/03/22 12:05:52 [transform_engine] {"stage_name":"transform_engine","events_processed":728,"events_dropped":0,"avg_latency_ms":352.7281486323637,"throughput_eps":0,"last_update":"2026-03-22T12:05:47.479115908Z"} +2026/03/22 12:05:52 ───────────────────────────────────────────────── +2026/03/22 12:05:57 ── Pipeline Health ────────────────────────────── +2026/03/22 12:05:57 [transform_engine] {"stage_name":"transform_engine","events_processed":728,"events_dropped":0,"avg_latency_ms":352.7281486323637,"throughput_eps":0,"last_update":"2026-03-22T12:05:52.481399158Z"} +2026/03/22 12:05:57 [log_collector] {"stage_name":"log_collector","events_processed":34696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6939.2,"last_update":"2026-03-22T12:05:52.369368919Z"} +2026/03/22 12:05:57 [metric_collector] {"stage_name":"metric_collector","events_processed":21864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4372.8,"last_update":"2026-03-22T12:05:52.368635785Z"} +2026/03/22 12:05:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:05:52.377815526Z"} +2026/03/22 12:05:57 [detection_layer] {"stage_name":"detection_layer","events_processed":725,"events_dropped":0,"avg_latency_ms":23.90058977036258,"throughput_eps":0,"last_update":"2026-03-22T12:05:52.481382516Z"} +2026/03/22 12:05:57 ───────────────────────────────────────────────── +2026/03/22 12:06:02 ── Pipeline Health ────────────────────────────── +2026/03/22 12:06:02 [transform_engine] {"stage_name":"transform_engine","events_processed":728,"events_dropped":0,"avg_latency_ms":352.7281486323637,"throughput_eps":0,"last_update":"2026-03-22T12:05:52.481399158Z"} +2026/03/22 12:06:02 [log_collector] {"stage_name":"log_collector","events_processed":34696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6939.2,"last_update":"2026-03-22T12:05:57.367983697Z"} +2026/03/22 12:06:02 [metric_collector] {"stage_name":"metric_collector","events_processed":21869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4373.8,"last_update":"2026-03-22T12:05:57.368158512Z"} +2026/03/22 12:06:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8750,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:05:57.374338336Z"} +2026/03/22 12:06:02 [detection_layer] {"stage_name":"detection_layer","events_processed":725,"events_dropped":0,"avg_latency_ms":23.90058977036258,"throughput_eps":0,"last_update":"2026-03-22T12:05:57.479533115Z"} +2026/03/22 12:06:02 ───────────────────────────────────────────────── +2026/03/22 12:06:07 ── Pipeline Health ────────────────────────────── +2026/03/22 12:06:07 [detection_layer] {"stage_name":"detection_layer","events_processed":725,"events_dropped":0,"avg_latency_ms":23.90058977036258,"throughput_eps":0,"last_update":"2026-03-22T12:06:02.479714429Z"} +2026/03/22 12:06:07 [transform_engine] {"stage_name":"transform_engine","events_processed":729,"events_dropped":0,"avg_latency_ms":1571.104818305891,"throughput_eps":0,"last_update":"2026-03-22T12:06:03.924138389Z"} +2026/03/22 12:06:07 [log_collector] {"stage_name":"log_collector","events_processed":34696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6939.2,"last_update":"2026-03-22T12:06:02.367995475Z"} +2026/03/22 12:06:07 [metric_collector] {"stage_name":"metric_collector","events_processed":21874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4374.8,"last_update":"2026-03-22T12:06:02.368440598Z"} +2026/03/22 12:06:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8752,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:06:02.375526538Z"} +2026/03/22 12:06:07 ───────────────────────────────────────────────── +2026/03/22 12:06:12 ── Pipeline Health ────────────────────────────── +2026/03/22 12:06:12 [detection_layer] {"stage_name":"detection_layer","events_processed":726,"events_dropped":0,"avg_latency_ms":22.345357816290065,"throughput_eps":0,"last_update":"2026-03-22T12:06:07.478952982Z"} +2026/03/22 12:06:12 [transform_engine] {"stage_name":"transform_engine","events_processed":729,"events_dropped":0,"avg_latency_ms":1571.104818305891,"throughput_eps":0,"last_update":"2026-03-22T12:06:07.478918676Z"} +2026/03/22 12:06:12 [log_collector] {"stage_name":"log_collector","events_processed":34696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6939.2,"last_update":"2026-03-22T12:06:07.368636695Z"} +2026/03/22 12:06:12 [metric_collector] {"stage_name":"metric_collector","events_processed":21879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4375.8,"last_update":"2026-03-22T12:06:07.368924836Z"} +2026/03/22 12:06:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:06:07.374800428Z"} +2026/03/22 12:06:12 ───────────────────────────────────────────────── +2026/03/22 12:06:17 ── Pipeline Health ────────────────────────────── +2026/03/22 12:06:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:06:12.377392888Z"} +2026/03/22 12:06:17 [detection_layer] {"stage_name":"detection_layer","events_processed":726,"events_dropped":0,"avg_latency_ms":22.345357816290065,"throughput_eps":0,"last_update":"2026-03-22T12:06:12.479641174Z"} +2026/03/22 12:06:17 [transform_engine] {"stage_name":"transform_engine","events_processed":729,"events_dropped":0,"avg_latency_ms":1571.104818305891,"throughput_eps":0,"last_update":"2026-03-22T12:06:12.479606939Z"} +2026/03/22 12:06:17 [log_collector] {"stage_name":"log_collector","events_processed":34696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6939.2,"last_update":"2026-03-22T12:06:17.368458546Z"} +2026/03/22 12:06:17 [metric_collector] {"stage_name":"metric_collector","events_processed":21884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4376.8,"last_update":"2026-03-22T12:06:12.368619235Z"} +2026/03/22 12:06:17 ───────────────────────────────────────────────── +2026/03/22 12:06:22 ── Pipeline Health ────────────────────────────── +2026/03/22 12:06:22 [log_collector] {"stage_name":"log_collector","events_processed":34696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6939.2,"last_update":"2026-03-22T12:06:22.368144145Z"} +2026/03/22 12:06:22 [metric_collector] {"stage_name":"metric_collector","events_processed":21889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4377.8,"last_update":"2026-03-22T12:06:17.368824105Z"} +2026/03/22 12:06:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8758,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:06:17.377739159Z"} +2026/03/22 12:06:22 [detection_layer] {"stage_name":"detection_layer","events_processed":726,"events_dropped":0,"avg_latency_ms":22.345357816290065,"throughput_eps":0,"last_update":"2026-03-22T12:06:17.480370419Z"} +2026/03/22 12:06:22 [transform_engine] {"stage_name":"transform_engine","events_processed":729,"events_dropped":0,"avg_latency_ms":1571.104818305891,"throughput_eps":0,"last_update":"2026-03-22T12:06:17.480394054Z"} +2026/03/22 12:06:22 ───────────────────────────────────────────────── +2026/03/22 12:06:27 ── Pipeline Health ────────────────────────────── +2026/03/22 12:06:27 [log_collector] {"stage_name":"log_collector","events_processed":34696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6939.2,"last_update":"2026-03-22T12:06:27.368384041Z"} +2026/03/22 12:06:27 [metric_collector] {"stage_name":"metric_collector","events_processed":21899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4379.8,"last_update":"2026-03-22T12:06:27.36866571Z"} +2026/03/22 12:06:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:06:22.379214366Z"} +2026/03/22 12:06:27 [detection_layer] {"stage_name":"detection_layer","events_processed":726,"events_dropped":0,"avg_latency_ms":22.345357816290065,"throughput_eps":0,"last_update":"2026-03-22T12:06:22.47943Z"} +2026/03/22 12:06:27 [transform_engine] {"stage_name":"transform_engine","events_processed":729,"events_dropped":0,"avg_latency_ms":1571.104818305891,"throughput_eps":0,"last_update":"2026-03-22T12:06:22.479447504Z"} +2026/03/22 12:06:27 ───────────────────────────────────────────────── +2026/03/22 12:06:32 ── Pipeline Health ────────────────────────────── +2026/03/22 12:06:32 [log_collector] {"stage_name":"log_collector","events_processed":34696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6939.2,"last_update":"2026-03-22T12:06:27.368384041Z"} +2026/03/22 12:06:32 [metric_collector] {"stage_name":"metric_collector","events_processed":21899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4379.8,"last_update":"2026-03-22T12:06:27.36866571Z"} +2026/03/22 12:06:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:06:27.379437699Z"} +2026/03/22 12:06:32 [detection_layer] {"stage_name":"detection_layer","events_processed":726,"events_dropped":0,"avg_latency_ms":22.345357816290065,"throughput_eps":0,"last_update":"2026-03-22T12:06:27.479862645Z"} +2026/03/22 12:06:32 [transform_engine] {"stage_name":"transform_engine","events_processed":730,"events_dropped":0,"avg_latency_ms":1796.695455444713,"throughput_eps":0,"last_update":"2026-03-22T12:06:30.178872296Z"} +2026/03/22 12:06:32 ───────────────────────────────────────────────── +2026/03/22 12:06:37 ── Pipeline Health ────────────────────────────── +2026/03/22 12:06:37 [detection_layer] {"stage_name":"detection_layer","events_processed":727,"events_dropped":0,"avg_latency_ms":21.476302653032054,"throughput_eps":0,"last_update":"2026-03-22T12:06:32.47921794Z"} +2026/03/22 12:06:37 [transform_engine] {"stage_name":"transform_engine","events_processed":730,"events_dropped":0,"avg_latency_ms":1796.695455444713,"throughput_eps":0,"last_update":"2026-03-22T12:06:32.479233891Z"} +2026/03/22 12:06:37 [log_collector] {"stage_name":"log_collector","events_processed":34707,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6941.4,"last_update":"2026-03-22T12:06:32.369411018Z"} +2026/03/22 12:06:37 [metric_collector] {"stage_name":"metric_collector","events_processed":21904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4380.8,"last_update":"2026-03-22T12:06:32.370144302Z"} +2026/03/22 12:06:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:06:32.451954498Z"} +2026/03/22 12:06:37 ───────────────────────────────────────────────── +2026/03/22 12:06:42 ── Pipeline Health ────────────────────────────── +2026/03/22 12:06:42 [transform_engine] {"stage_name":"transform_engine","events_processed":730,"events_dropped":0,"avg_latency_ms":1796.695455444713,"throughput_eps":0,"last_update":"2026-03-22T12:06:37.479009745Z"} +2026/03/22 12:06:42 [log_collector] {"stage_name":"log_collector","events_processed":34891,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6978.2,"last_update":"2026-03-22T12:06:37.368790312Z"} +2026/03/22 12:06:42 [metric_collector] {"stage_name":"metric_collector","events_processed":21909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4381.8,"last_update":"2026-03-22T12:06:37.369290129Z"} +2026/03/22 12:06:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8766,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:06:37.390813359Z"} +2026/03/22 12:06:42 [detection_layer] {"stage_name":"detection_layer","events_processed":727,"events_dropped":0,"avg_latency_ms":21.476302653032054,"throughput_eps":0,"last_update":"2026-03-22T12:06:37.478967014Z"} +2026/03/22 12:06:42 ───────────────────────────────────────────────── +2026/03/22 12:06:47 ── Pipeline Health ────────────────────────────── +2026/03/22 12:06:47 [transform_engine] {"stage_name":"transform_engine","events_processed":730,"events_dropped":0,"avg_latency_ms":1796.695455444713,"throughput_eps":0,"last_update":"2026-03-22T12:06:42.479569695Z"} +2026/03/22 12:06:47 [log_collector] {"stage_name":"log_collector","events_processed":34891,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6978.2,"last_update":"2026-03-22T12:06:42.368189689Z"} +2026/03/22 12:06:47 [metric_collector] {"stage_name":"metric_collector","events_processed":21914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4382.8,"last_update":"2026-03-22T12:06:42.368299759Z"} +2026/03/22 12:06:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8768,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:06:42.374313577Z"} +2026/03/22 12:06:47 [detection_layer] {"stage_name":"detection_layer","events_processed":727,"events_dropped":0,"avg_latency_ms":21.476302653032054,"throughput_eps":0,"last_update":"2026-03-22T12:06:42.479590745Z"} +2026/03/22 12:06:47 ───────────────────────────────────────────────── +2026/03/22 12:06:52 ── Pipeline Health ────────────────────────────── +2026/03/22 12:06:52 [transform_engine] {"stage_name":"transform_engine","events_processed":730,"events_dropped":0,"avg_latency_ms":1796.695455444713,"throughput_eps":0,"last_update":"2026-03-22T12:06:47.478829819Z"} +2026/03/22 12:06:52 [log_collector] {"stage_name":"log_collector","events_processed":34891,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6978.2,"last_update":"2026-03-22T12:06:47.368651393Z"} +2026/03/22 12:06:52 [metric_collector] {"stage_name":"metric_collector","events_processed":21919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4383.8,"last_update":"2026-03-22T12:06:47.36892149Z"} +2026/03/22 12:06:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8770,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:06:47.377722055Z"} +2026/03/22 12:06:52 [detection_layer] {"stage_name":"detection_layer","events_processed":727,"events_dropped":0,"avg_latency_ms":21.476302653032054,"throughput_eps":0,"last_update":"2026-03-22T12:06:47.479917632Z"} +2026/03/22 12:06:52 ───────────────────────────────────────────────── +2026/03/22 12:06:57 ── Pipeline Health ────────────────────────────── +2026/03/22 12:06:57 [metric_collector] {"stage_name":"metric_collector","events_processed":21924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4384.8,"last_update":"2026-03-22T12:06:52.369651211Z"} +2026/03/22 12:06:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:06:52.38393177Z"} +2026/03/22 12:06:57 [detection_layer] {"stage_name":"detection_layer","events_processed":727,"events_dropped":0,"avg_latency_ms":21.476302653032054,"throughput_eps":0,"last_update":"2026-03-22T12:06:52.479115589Z"} +2026/03/22 12:06:57 [transform_engine] {"stage_name":"transform_engine","events_processed":730,"events_dropped":0,"avg_latency_ms":1796.695455444713,"throughput_eps":0,"last_update":"2026-03-22T12:06:52.479093527Z"} +2026/03/22 12:06:57 [log_collector] {"stage_name":"log_collector","events_processed":34891,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6978.2,"last_update":"2026-03-22T12:06:52.368686554Z"} +2026/03/22 12:06:57 ───────────────────────────────────────────────── +2026/03/22 12:06:59 [ANOMALY] time=2026-03-22T12:06:58Z score=0.8667 method=SEAD details=MAD!:w=0.64,s=0.89 RRCF-fast:w=0.09,s=0.86 RRCF-mid!:w=0.08,s=0.91 RRCF-slow!:w=0.07,s=0.92 COPOD!:w=0.12,s=0.71 +2026/03/22 12:07:02 ── Pipeline Health ────────────────────────────── +2026/03/22 12:07:02 [log_collector] {"stage_name":"log_collector","events_processed":34891,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6978.2,"last_update":"2026-03-22T12:06:57.369270909Z"} +2026/03/22 12:07:02 [metric_collector] {"stage_name":"metric_collector","events_processed":21928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4385.6,"last_update":"2026-03-22T12:06:57.369502582Z"} +2026/03/22 12:07:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:06:57.845565586Z"} +2026/03/22 12:07:02 [detection_layer] {"stage_name":"detection_layer","events_processed":727,"events_dropped":0,"avg_latency_ms":21.476302653032054,"throughput_eps":0,"last_update":"2026-03-22T12:06:57.486515417Z"} +2026/03/22 12:07:02 [transform_engine] {"stage_name":"transform_engine","events_processed":731,"events_dropped":0,"avg_latency_ms":1741.0807509557703,"throughput_eps":0,"last_update":"2026-03-22T12:06:59.000052111Z"} +2026/03/22 12:07:02 ───────────────────────────────────────────────── +2026/03/22 12:07:07 ── Pipeline Health ────────────────────────────── +2026/03/22 12:07:07 [detection_layer] {"stage_name":"detection_layer","events_processed":728,"events_dropped":0,"avg_latency_ms":21.323054722425645,"throughput_eps":0,"last_update":"2026-03-22T12:07:02.479397175Z"} +2026/03/22 12:07:07 [transform_engine] {"stage_name":"transform_engine","events_processed":731,"events_dropped":0,"avg_latency_ms":1741.0807509557703,"throughput_eps":0,"last_update":"2026-03-22T12:07:02.479375403Z"} +2026/03/22 12:07:07 [log_collector] {"stage_name":"log_collector","events_processed":34891,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6978.2,"last_update":"2026-03-22T12:07:02.370416332Z"} +2026/03/22 12:07:07 [metric_collector] {"stage_name":"metric_collector","events_processed":21934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4386.8,"last_update":"2026-03-22T12:07:02.371154917Z"} +2026/03/22 12:07:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:07:02.388217874Z"} +2026/03/22 12:07:07 ───────────────────────────────────────────────── +Saved state: 23 clusters, 34892 messages, reason: none +2026/03/22 12:07:12 ── Pipeline Health ────────────────────────────── +2026/03/22 12:07:12 [metric_collector] {"stage_name":"metric_collector","events_processed":21939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4387.8,"last_update":"2026-03-22T12:07:07.368782865Z"} +2026/03/22 12:07:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:07:07.380944256Z"} +2026/03/22 12:07:12 [detection_layer] {"stage_name":"detection_layer","events_processed":728,"events_dropped":0,"avg_latency_ms":21.323054722425645,"throughput_eps":0,"last_update":"2026-03-22T12:07:07.479135746Z"} +2026/03/22 12:07:12 [transform_engine] {"stage_name":"transform_engine","events_processed":731,"events_dropped":0,"avg_latency_ms":1741.0807509557703,"throughput_eps":0,"last_update":"2026-03-22T12:07:07.479115617Z"} +2026/03/22 12:07:12 [log_collector] {"stage_name":"log_collector","events_processed":35019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7003.8,"last_update":"2026-03-22T12:07:12.368492766Z"} +2026/03/22 12:07:12 ───────────────────────────────────────────────── +Saved state: 24 clusters, 35033 messages, reason: cluster_created +2026/03/22 12:07:17 ── Pipeline Health ────────────────────────────── +2026/03/22 12:07:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8780,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:07:12.375336923Z"} +2026/03/22 12:07:17 [detection_layer] {"stage_name":"detection_layer","events_processed":728,"events_dropped":0,"avg_latency_ms":21.323054722425645,"throughput_eps":0,"last_update":"2026-03-22T12:07:12.479533494Z"} +2026/03/22 12:07:17 [transform_engine] {"stage_name":"transform_engine","events_processed":731,"events_dropped":0,"avg_latency_ms":1741.0807509557703,"throughput_eps":0,"last_update":"2026-03-22T12:07:12.479561698Z"} +2026/03/22 12:07:17 [log_collector] {"stage_name":"log_collector","events_processed":35019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7003.8,"last_update":"2026-03-22T12:07:12.368492766Z"} +2026/03/22 12:07:17 [metric_collector] {"stage_name":"metric_collector","events_processed":21944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4388.8,"last_update":"2026-03-22T12:07:12.369513531Z"} +2026/03/22 12:07:17 ───────────────────────────────────────────────── +2026/03/22 12:07:22 ── Pipeline Health ────────────────────────────── +2026/03/22 12:07:22 [detection_layer] {"stage_name":"detection_layer","events_processed":728,"events_dropped":0,"avg_latency_ms":21.323054722425645,"throughput_eps":0,"last_update":"2026-03-22T12:07:17.479643543Z"} +2026/03/22 12:07:22 [transform_engine] {"stage_name":"transform_engine","events_processed":731,"events_dropped":0,"avg_latency_ms":1741.0807509557703,"throughput_eps":0,"last_update":"2026-03-22T12:07:17.47966785Z"} +2026/03/22 12:07:22 [log_collector] {"stage_name":"log_collector","events_processed":35055,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7011,"last_update":"2026-03-22T12:07:17.368659433Z"} +2026/03/22 12:07:22 [metric_collector] {"stage_name":"metric_collector","events_processed":21949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4389.8,"last_update":"2026-03-22T12:07:17.369085819Z"} +2026/03/22 12:07:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8782,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:07:17.378436757Z"} +2026/03/22 12:07:22 ───────────────────────────────────────────────── +2026/03/22 12:07:27 ── Pipeline Health ────────────────────────────── +2026/03/22 12:07:27 [log_collector] {"stage_name":"log_collector","events_processed":35070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7014,"last_update":"2026-03-22T12:07:22.368077748Z"} +2026/03/22 12:07:27 [metric_collector] {"stage_name":"metric_collector","events_processed":21954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4390.8,"last_update":"2026-03-22T12:07:22.368565281Z"} +2026/03/22 12:07:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:07:22.378030198Z"} +2026/03/22 12:07:27 [detection_layer] {"stage_name":"detection_layer","events_processed":728,"events_dropped":0,"avg_latency_ms":21.323054722425645,"throughput_eps":0,"last_update":"2026-03-22T12:07:22.479298121Z"} +2026/03/22 12:07:27 [transform_engine] {"stage_name":"transform_engine","events_processed":731,"events_dropped":0,"avg_latency_ms":1741.0807509557703,"throughput_eps":0,"last_update":"2026-03-22T12:07:22.479247595Z"} +2026/03/22 12:07:27 ───────────────────────────────────────────────── +2026/03/22 12:07:27 [ANOMALY] time=2026-03-22T12:07:27Z score=0.8340 method=SEAD details=MAD!:w=0.64,s=0.89 RRCF-fast:w=0.09,s=0.78 RRCF-mid:w=0.08,s=0.89 RRCF-slow:w=0.07,s=0.84 COPOD!:w=0.12,s=0.56 +2026/03/22 12:07:32 ── Pipeline Health ────────────────────────────── +2026/03/22 12:07:32 [transform_engine] {"stage_name":"transform_engine","events_processed":732,"events_dropped":0,"avg_latency_ms":1421.2277785646163,"throughput_eps":0,"last_update":"2026-03-22T12:07:27.620996537Z"} +2026/03/22 12:07:32 [log_collector] {"stage_name":"log_collector","events_processed":35070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7014,"last_update":"2026-03-22T12:07:27.368471354Z"} +2026/03/22 12:07:32 [metric_collector] {"stage_name":"metric_collector","events_processed":21959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4391.8,"last_update":"2026-03-22T12:07:27.368915996Z"} +2026/03/22 12:07:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:07:27.378013399Z"} +2026/03/22 12:07:32 [detection_layer] {"stage_name":"detection_layer","events_processed":728,"events_dropped":0,"avg_latency_ms":21.323054722425645,"throughput_eps":0,"last_update":"2026-03-22T12:07:27.479130924Z"} +2026/03/22 12:07:32 ───────────────────────────────────────────────── +2026/03/22 12:07:37 ── Pipeline Health ────────────────────────────── +2026/03/22 12:07:37 [log_collector] {"stage_name":"log_collector","events_processed":35070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7014,"last_update":"2026-03-22T12:07:32.368146595Z"} +2026/03/22 12:07:37 [metric_collector] {"stage_name":"metric_collector","events_processed":21964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4392.8,"last_update":"2026-03-22T12:07:32.368618119Z"} +2026/03/22 12:07:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:07:32.377202349Z"} +2026/03/22 12:07:37 [detection_layer] {"stage_name":"detection_layer","events_processed":729,"events_dropped":0,"avg_latency_ms":20.39306997794052,"throughput_eps":0,"last_update":"2026-03-22T12:07:32.479421665Z"} +2026/03/22 12:07:37 [transform_engine] {"stage_name":"transform_engine","events_processed":732,"events_dropped":0,"avg_latency_ms":1421.2277785646163,"throughput_eps":0,"last_update":"2026-03-22T12:07:32.479464357Z"} +2026/03/22 12:07:37 ───────────────────────────────────────────────── +2026/03/22 12:07:42 ── Pipeline Health ────────────────────────────── +2026/03/22 12:07:42 [transform_engine] {"stage_name":"transform_engine","events_processed":732,"events_dropped":0,"avg_latency_ms":1421.2277785646163,"throughput_eps":0,"last_update":"2026-03-22T12:07:37.478901275Z"} +2026/03/22 12:07:42 [log_collector] {"stage_name":"log_collector","events_processed":35070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7014,"last_update":"2026-03-22T12:07:42.368768312Z"} +2026/03/22 12:07:42 [metric_collector] {"stage_name":"metric_collector","events_processed":21969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4393.8,"last_update":"2026-03-22T12:07:37.368504688Z"} +2026/03/22 12:07:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:07:37.377814718Z"} +2026/03/22 12:07:42 [detection_layer] {"stage_name":"detection_layer","events_processed":729,"events_dropped":0,"avg_latency_ms":20.39306997794052,"throughput_eps":0,"last_update":"2026-03-22T12:07:37.478941983Z"} +2026/03/22 12:07:42 ───────────────────────────────────────────────── +2026/03/22 12:07:47 ── Pipeline Health ────────────────────────────── +2026/03/22 12:07:47 [log_collector] {"stage_name":"log_collector","events_processed":35070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7014,"last_update":"2026-03-22T12:07:47.368941945Z"} +2026/03/22 12:07:47 [metric_collector] {"stage_name":"metric_collector","events_processed":21974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4394.8,"last_update":"2026-03-22T12:07:42.369099676Z"} +2026/03/22 12:07:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:07:42.378261151Z"} +2026/03/22 12:07:47 [detection_layer] {"stage_name":"detection_layer","events_processed":729,"events_dropped":0,"avg_latency_ms":20.39306997794052,"throughput_eps":0,"last_update":"2026-03-22T12:07:42.479488567Z"} +2026/03/22 12:07:47 [transform_engine] {"stage_name":"transform_engine","events_processed":732,"events_dropped":0,"avg_latency_ms":1421.2277785646163,"throughput_eps":0,"last_update":"2026-03-22T12:07:42.479501162Z"} +2026/03/22 12:07:47 ───────────────────────────────────────────────── +2026/03/22 12:07:52 ── Pipeline Health ────────────────────────────── +2026/03/22 12:07:52 [log_collector] {"stage_name":"log_collector","events_processed":35070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7014,"last_update":"2026-03-22T12:07:52.367966538Z"} +2026/03/22 12:07:52 [metric_collector] {"stage_name":"metric_collector","events_processed":21979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4395.8,"last_update":"2026-03-22T12:07:47.369275214Z"} +2026/03/22 12:07:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:07:47.377603062Z"} +2026/03/22 12:07:52 [detection_layer] {"stage_name":"detection_layer","events_processed":729,"events_dropped":0,"avg_latency_ms":20.39306997794052,"throughput_eps":0,"last_update":"2026-03-22T12:07:47.479816107Z"} +2026/03/22 12:07:52 [transform_engine] {"stage_name":"transform_engine","events_processed":732,"events_dropped":0,"avg_latency_ms":1421.2277785646163,"throughput_eps":0,"last_update":"2026-03-22T12:07:47.479829412Z"} +2026/03/22 12:07:52 ───────────────────────────────────────────────── +2026/03/22 12:07:57 ── Pipeline Health ────────────────────────────── +2026/03/22 12:07:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8796,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:07:52.375205883Z"} +2026/03/22 12:07:57 [detection_layer] {"stage_name":"detection_layer","events_processed":729,"events_dropped":0,"avg_latency_ms":20.39306997794052,"throughput_eps":0,"last_update":"2026-03-22T12:07:52.47943599Z"} +2026/03/22 12:07:57 [transform_engine] {"stage_name":"transform_engine","events_processed":732,"events_dropped":0,"avg_latency_ms":1421.2277785646163,"throughput_eps":0,"last_update":"2026-03-22T12:07:52.479448875Z"} +2026/03/22 12:07:57 [log_collector] {"stage_name":"log_collector","events_processed":35070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7014,"last_update":"2026-03-22T12:07:57.368513229Z"} +2026/03/22 12:07:57 [metric_collector] {"stage_name":"metric_collector","events_processed":21984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4396.8,"last_update":"2026-03-22T12:07:52.368456447Z"} +2026/03/22 12:07:57 ───────────────────────────────────────────────── +2026/03/22 12:08:02 ── Pipeline Health ────────────────────────────── +2026/03/22 12:08:02 [detection_layer] {"stage_name":"detection_layer","events_processed":729,"events_dropped":0,"avg_latency_ms":20.39306997794052,"throughput_eps":0,"last_update":"2026-03-22T12:07:57.479290194Z"} +2026/03/22 12:08:02 [transform_engine] {"stage_name":"transform_engine","events_processed":733,"events_dropped":0,"avg_latency_ms":1154.340609051693,"throughput_eps":0,"last_update":"2026-03-22T12:07:57.566101542Z"} +2026/03/22 12:08:02 [log_collector] {"stage_name":"log_collector","events_processed":35070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7014,"last_update":"2026-03-22T12:07:57.368513229Z"} +2026/03/22 12:08:02 [metric_collector] {"stage_name":"metric_collector","events_processed":21989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4397.8,"last_update":"2026-03-22T12:07:57.369031391Z"} +2026/03/22 12:08:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:07:57.378060834Z"} +2026/03/22 12:08:02 ───────────────────────────────────────────────── +2026/03/22 12:08:07 ── Pipeline Health ────────────────────────────── +2026/03/22 12:08:07 [log_collector] {"stage_name":"log_collector","events_processed":35080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7016,"last_update":"2026-03-22T12:08:02.367974721Z"} +2026/03/22 12:08:07 [metric_collector] {"stage_name":"metric_collector","events_processed":21994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4398.8,"last_update":"2026-03-22T12:08:02.368493203Z"} +2026/03/22 12:08:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8800,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:08:02.377111329Z"} +2026/03/22 12:08:07 [detection_layer] {"stage_name":"detection_layer","events_processed":730,"events_dropped":0,"avg_latency_ms":21.206276582352416,"throughput_eps":0,"last_update":"2026-03-22T12:08:02.479441037Z"} +2026/03/22 12:08:07 [transform_engine] {"stage_name":"transform_engine","events_processed":733,"events_dropped":0,"avg_latency_ms":1154.340609051693,"throughput_eps":0,"last_update":"2026-03-22T12:08:02.479454383Z"} +2026/03/22 12:08:07 ───────────────────────────────────────────────── +2026/03/22 12:08:12 ── Pipeline Health ────────────────────────────── +2026/03/22 12:08:12 [log_collector] {"stage_name":"log_collector","events_processed":35090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7018,"last_update":"2026-03-22T12:08:07.369410045Z"} +2026/03/22 12:08:12 [metric_collector] {"stage_name":"metric_collector","events_processed":21999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4399.8,"last_update":"2026-03-22T12:08:07.370043038Z"} +2026/03/22 12:08:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8802,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:08:07.448066876Z"} +2026/03/22 12:08:12 [detection_layer] {"stage_name":"detection_layer","events_processed":730,"events_dropped":0,"avg_latency_ms":21.206276582352416,"throughput_eps":0,"last_update":"2026-03-22T12:08:07.479990595Z"} +2026/03/22 12:08:12 [transform_engine] {"stage_name":"transform_engine","events_processed":733,"events_dropped":0,"avg_latency_ms":1154.340609051693,"throughput_eps":0,"last_update":"2026-03-22T12:08:07.478854219Z"} +2026/03/22 12:08:12 ───────────────────────────────────────────────── +2026/03/22 12:08:17 ── Pipeline Health ────────────────────────────── +2026/03/22 12:08:17 [metric_collector] {"stage_name":"metric_collector","events_processed":22004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4400.8,"last_update":"2026-03-22T12:08:12.369917444Z"} +2026/03/22 12:08:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:08:12.389059604Z"} +2026/03/22 12:08:17 [detection_layer] {"stage_name":"detection_layer","events_processed":730,"events_dropped":0,"avg_latency_ms":21.206276582352416,"throughput_eps":0,"last_update":"2026-03-22T12:08:12.480183302Z"} +2026/03/22 12:08:17 [transform_engine] {"stage_name":"transform_engine","events_processed":733,"events_dropped":0,"avg_latency_ms":1154.340609051693,"throughput_eps":0,"last_update":"2026-03-22T12:08:12.479542043Z"} +2026/03/22 12:08:17 [log_collector] {"stage_name":"log_collector","events_processed":35090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7018,"last_update":"2026-03-22T12:08:12.369456711Z"} +2026/03/22 12:08:17 ───────────────────────────────────────────────── +2026/03/22 12:08:22 ── Pipeline Health ────────────────────────────── +2026/03/22 12:08:22 [log_collector] {"stage_name":"log_collector","events_processed":35090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7018,"last_update":"2026-03-22T12:08:17.369829874Z"} +2026/03/22 12:08:22 [metric_collector] {"stage_name":"metric_collector","events_processed":22009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4401.8,"last_update":"2026-03-22T12:08:17.370005982Z"} +2026/03/22 12:08:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:08:17.389587814Z"} +2026/03/22 12:08:22 [detection_layer] {"stage_name":"detection_layer","events_processed":730,"events_dropped":0,"avg_latency_ms":21.206276582352416,"throughput_eps":0,"last_update":"2026-03-22T12:08:17.479696227Z"} +2026/03/22 12:08:22 [transform_engine] {"stage_name":"transform_engine","events_processed":733,"events_dropped":0,"avg_latency_ms":1154.340609051693,"throughput_eps":0,"last_update":"2026-03-22T12:08:17.479583381Z"} +2026/03/22 12:08:22 ───────────────────────────────────────────────── +2026/03/22 12:08:27 ── Pipeline Health ────────────────────────────── +2026/03/22 12:08:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:08:22.389596481Z"} +2026/03/22 12:08:27 [detection_layer] {"stage_name":"detection_layer","events_processed":730,"events_dropped":0,"avg_latency_ms":21.206276582352416,"throughput_eps":0,"last_update":"2026-03-22T12:08:22.479933292Z"} +2026/03/22 12:08:27 [transform_engine] {"stage_name":"transform_engine","events_processed":733,"events_dropped":0,"avg_latency_ms":1154.340609051693,"throughput_eps":0,"last_update":"2026-03-22T12:08:22.479940485Z"} +2026/03/22 12:08:27 [log_collector] {"stage_name":"log_collector","events_processed":35090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7018,"last_update":"2026-03-22T12:08:22.369346348Z"} +2026/03/22 12:08:27 [metric_collector] {"stage_name":"metric_collector","events_processed":22014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4402.8,"last_update":"2026-03-22T12:08:22.369888437Z"} +2026/03/22 12:08:27 ───────────────────────────────────────────────── +2026/03/22 12:08:27 [ANOMALY] time=2026-03-22T12:08:27Z score=0.8039 method=SEAD details=MAD!:w=0.64,s=0.87 RRCF-fast:w=0.09,s=0.82 RRCF-mid:w=0.08,s=0.81 RRCF-slow:w=0.07,s=0.70 COPOD!:w=0.12,s=0.48 +Saved state: 24 clusters, 35091 messages, reason: none +2026/03/22 12:08:32 ── Pipeline Health ────────────────────────────── +2026/03/22 12:08:32 [metric_collector] {"stage_name":"metric_collector","events_processed":22019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4403.8,"last_update":"2026-03-22T12:08:27.37007839Z"} +2026/03/22 12:08:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:08:27.392298196Z"} +2026/03/22 12:08:32 [detection_layer] {"stage_name":"detection_layer","events_processed":730,"events_dropped":0,"avg_latency_ms":21.206276582352416,"throughput_eps":0,"last_update":"2026-03-22T12:08:27.479501545Z"} +2026/03/22 12:08:32 [transform_engine] {"stage_name":"transform_engine","events_processed":734,"events_dropped":0,"avg_latency_ms":980.8530710413544,"throughput_eps":0,"last_update":"2026-03-22T12:08:27.767653296Z"} +2026/03/22 12:08:32 [log_collector] {"stage_name":"log_collector","events_processed":35090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7018,"last_update":"2026-03-22T12:08:27.369554057Z"} +2026/03/22 12:08:32 ───────────────────────────────────────────────── +2026/03/22 12:08:37 ── Pipeline Health ────────────────────────────── +2026/03/22 12:08:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8812,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:08:32.387025979Z"} +2026/03/22 12:08:37 [detection_layer] {"stage_name":"detection_layer","events_processed":731,"events_dropped":0,"avg_latency_ms":20.641498265881935,"throughput_eps":0,"last_update":"2026-03-22T12:08:32.479411143Z"} +2026/03/22 12:08:37 [transform_engine] {"stage_name":"transform_engine","events_processed":734,"events_dropped":0,"avg_latency_ms":980.8530710413544,"throughput_eps":0,"last_update":"2026-03-22T12:08:32.479448254Z"} +2026/03/22 12:08:37 [log_collector] {"stage_name":"log_collector","events_processed":35100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7020,"last_update":"2026-03-22T12:08:32.370891107Z"} +2026/03/22 12:08:37 [metric_collector] {"stage_name":"metric_collector","events_processed":22024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4404.8,"last_update":"2026-03-22T12:08:32.371263691Z"} +2026/03/22 12:08:37 ───────────────────────────────────────────────── +2026/03/22 12:08:42 ── Pipeline Health ────────────────────────────── +2026/03/22 12:08:42 [metric_collector] {"stage_name":"metric_collector","events_processed":22029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4405.8,"last_update":"2026-03-22T12:08:37.368865049Z"} +2026/03/22 12:08:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:08:37.378442331Z"} +2026/03/22 12:08:42 [detection_layer] {"stage_name":"detection_layer","events_processed":731,"events_dropped":0,"avg_latency_ms":20.641498265881935,"throughput_eps":0,"last_update":"2026-03-22T12:08:37.479727942Z"} +2026/03/22 12:08:42 [transform_engine] {"stage_name":"transform_engine","events_processed":734,"events_dropped":0,"avg_latency_ms":980.8530710413544,"throughput_eps":0,"last_update":"2026-03-22T12:08:37.479675972Z"} +2026/03/22 12:08:42 [log_collector] {"stage_name":"log_collector","events_processed":35115,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7023,"last_update":"2026-03-22T12:08:37.368606414Z"} +2026/03/22 12:08:42 ───────────────────────────────────────────────── +2026/03/22 12:08:47 ── Pipeline Health ────────────────────────────── +2026/03/22 12:08:47 [detection_layer] {"stage_name":"detection_layer","events_processed":731,"events_dropped":0,"avg_latency_ms":20.641498265881935,"throughput_eps":0,"last_update":"2026-03-22T12:08:42.47980893Z"} +2026/03/22 12:08:47 [transform_engine] {"stage_name":"transform_engine","events_processed":734,"events_dropped":0,"avg_latency_ms":980.8530710413544,"throughput_eps":0,"last_update":"2026-03-22T12:08:42.47986153Z"} +2026/03/22 12:08:47 [log_collector] {"stage_name":"log_collector","events_processed":35115,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7023,"last_update":"2026-03-22T12:08:47.36849212Z"} +2026/03/22 12:08:47 [metric_collector] {"stage_name":"metric_collector","events_processed":22034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4406.8,"last_update":"2026-03-22T12:08:42.368557853Z"} +2026/03/22 12:08:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8816,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:08:42.379569864Z"} +2026/03/22 12:08:47 ───────────────────────────────────────────────── +2026/03/22 12:08:52 ── Pipeline Health ────────────────────────────── +2026/03/22 12:08:52 [transform_engine] {"stage_name":"transform_engine","events_processed":734,"events_dropped":0,"avg_latency_ms":980.8530710413544,"throughput_eps":0,"last_update":"2026-03-22T12:08:47.47969247Z"} +2026/03/22 12:08:52 [log_collector] {"stage_name":"log_collector","events_processed":35115,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7023,"last_update":"2026-03-22T12:08:47.36849212Z"} +2026/03/22 12:08:52 [metric_collector] {"stage_name":"metric_collector","events_processed":22039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4407.8,"last_update":"2026-03-22T12:08:47.369009451Z"} +2026/03/22 12:08:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8818,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:08:47.378494878Z"} +2026/03/22 12:08:52 [detection_layer] {"stage_name":"detection_layer","events_processed":731,"events_dropped":0,"avg_latency_ms":20.641498265881935,"throughput_eps":0,"last_update":"2026-03-22T12:08:47.479679304Z"} +2026/03/22 12:08:52 ───────────────────────────────────────────────── +2026/03/22 12:08:57 ── Pipeline Health ────────────────────────────── +2026/03/22 12:08:57 [detection_layer] {"stage_name":"detection_layer","events_processed":731,"events_dropped":0,"avg_latency_ms":20.641498265881935,"throughput_eps":0,"last_update":"2026-03-22T12:08:52.479444578Z"} +2026/03/22 12:08:57 [transform_engine] {"stage_name":"transform_engine","events_processed":734,"events_dropped":0,"avg_latency_ms":980.8530710413544,"throughput_eps":0,"last_update":"2026-03-22T12:08:52.479458716Z"} +2026/03/22 12:08:57 [log_collector] {"stage_name":"log_collector","events_processed":35115,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7023,"last_update":"2026-03-22T12:08:52.367997096Z"} +2026/03/22 12:08:57 [metric_collector] {"stage_name":"metric_collector","events_processed":22044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4408.8,"last_update":"2026-03-22T12:08:52.368298663Z"} +2026/03/22 12:08:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8820,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:08:52.37721512Z"} +2026/03/22 12:08:57 ───────────────────────────────────────────────── +2026/03/22 12:09:02 ── Pipeline Health ────────────────────────────── +2026/03/22 12:09:02 [log_collector] {"stage_name":"log_collector","events_processed":35115,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7023,"last_update":"2026-03-22T12:08:57.368842447Z"} +2026/03/22 12:09:02 [metric_collector] {"stage_name":"metric_collector","events_processed":22049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4409.8,"last_update":"2026-03-22T12:08:57.369466803Z"} +2026/03/22 12:09:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:08:57.378072625Z"} +2026/03/22 12:09:02 [detection_layer] {"stage_name":"detection_layer","events_processed":731,"events_dropped":0,"avg_latency_ms":20.641498265881935,"throughput_eps":0,"last_update":"2026-03-22T12:08:57.479417008Z"} +2026/03/22 12:09:02 [transform_engine] {"stage_name":"transform_engine","events_processed":735,"events_dropped":0,"avg_latency_ms":812.5827392330835,"throughput_eps":0,"last_update":"2026-03-22T12:08:57.618937697Z"} +2026/03/22 12:09:02 ───────────────────────────────────────────────── +2026/03/22 12:09:07 ── Pipeline Health ────────────────────────────── +2026/03/22 12:09:07 [log_collector] {"stage_name":"log_collector","events_processed":35120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7024,"last_update":"2026-03-22T12:09:02.368464137Z"} +2026/03/22 12:09:07 [metric_collector] {"stage_name":"metric_collector","events_processed":22054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4410.8,"last_update":"2026-03-22T12:09:02.369003339Z"} +2026/03/22 12:09:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:09:02.376919761Z"} +2026/03/22 12:09:07 [detection_layer] {"stage_name":"detection_layer","events_processed":732,"events_dropped":0,"avg_latency_ms":21.01059181270555,"throughput_eps":0,"last_update":"2026-03-22T12:09:02.479277215Z"} +2026/03/22 12:09:07 [transform_engine] {"stage_name":"transform_engine","events_processed":735,"events_dropped":0,"avg_latency_ms":812.5827392330835,"throughput_eps":0,"last_update":"2026-03-22T12:09:02.479302203Z"} +2026/03/22 12:09:07 ───────────────────────────────────────────────── +2026/03/22 12:09:12 ── Pipeline Health ────────────────────────────── +2026/03/22 12:09:12 [log_collector] {"stage_name":"log_collector","events_processed":35130,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7026,"last_update":"2026-03-22T12:09:07.367998118Z"} +2026/03/22 12:09:12 [metric_collector] {"stage_name":"metric_collector","events_processed":22059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4411.8,"last_update":"2026-03-22T12:09:07.368313712Z"} +2026/03/22 12:09:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8826,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:09:07.379087206Z"} +2026/03/22 12:09:12 [detection_layer] {"stage_name":"detection_layer","events_processed":732,"events_dropped":0,"avg_latency_ms":21.01059181270555,"throughput_eps":0,"last_update":"2026-03-22T12:09:07.479458606Z"} +2026/03/22 12:09:12 [transform_engine] {"stage_name":"transform_engine","events_processed":735,"events_dropped":0,"avg_latency_ms":812.5827392330835,"throughput_eps":0,"last_update":"2026-03-22T12:09:07.479483654Z"} +2026/03/22 12:09:12 ───────────────────────────────────────────────── +2026/03/22 12:09:17 ── Pipeline Health ────────────────────────────── +2026/03/22 12:09:17 [detection_layer] {"stage_name":"detection_layer","events_processed":732,"events_dropped":0,"avg_latency_ms":21.01059181270555,"throughput_eps":0,"last_update":"2026-03-22T12:09:12.479799965Z"} +2026/03/22 12:09:17 [transform_engine] {"stage_name":"transform_engine","events_processed":735,"events_dropped":0,"avg_latency_ms":812.5827392330835,"throughput_eps":0,"last_update":"2026-03-22T12:09:12.479815465Z"} +2026/03/22 12:09:17 [log_collector] {"stage_name":"log_collector","events_processed":35140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7028,"last_update":"2026-03-22T12:09:12.368694005Z"} +2026/03/22 12:09:17 [metric_collector] {"stage_name":"metric_collector","events_processed":22064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4412.8,"last_update":"2026-03-22T12:09:12.369239139Z"} +2026/03/22 12:09:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:09:12.378436855Z"} +2026/03/22 12:09:17 ───────────────────────────────────────────────── +2026/03/22 12:09:22 ── Pipeline Health ────────────────────────────── +2026/03/22 12:09:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8830,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:09:17.376801698Z"} +2026/03/22 12:09:22 [detection_layer] {"stage_name":"detection_layer","events_processed":732,"events_dropped":0,"avg_latency_ms":21.01059181270555,"throughput_eps":0,"last_update":"2026-03-22T12:09:17.478995009Z"} +2026/03/22 12:09:22 [transform_engine] {"stage_name":"transform_engine","events_processed":735,"events_dropped":0,"avg_latency_ms":812.5827392330835,"throughput_eps":0,"last_update":"2026-03-22T12:09:17.479113044Z"} +2026/03/22 12:09:22 [log_collector] {"stage_name":"log_collector","events_processed":35140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7028,"last_update":"2026-03-22T12:09:17.368528624Z"} +2026/03/22 12:09:22 [metric_collector] {"stage_name":"metric_collector","events_processed":22069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4413.8,"last_update":"2026-03-22T12:09:17.368799703Z"} +2026/03/22 12:09:22 ───────────────────────────────────────────────── +2026/03/22 12:09:27 ── Pipeline Health ────────────────────────────── +2026/03/22 12:09:27 [log_collector] {"stage_name":"log_collector","events_processed":35140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7028,"last_update":"2026-03-22T12:09:22.367986078Z"} +2026/03/22 12:09:27 [metric_collector] {"stage_name":"metric_collector","events_processed":22074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4414.8,"last_update":"2026-03-22T12:09:22.368575055Z"} +2026/03/22 12:09:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8832,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:09:22.377516961Z"} +2026/03/22 12:09:27 [detection_layer] {"stage_name":"detection_layer","events_processed":732,"events_dropped":0,"avg_latency_ms":21.01059181270555,"throughput_eps":0,"last_update":"2026-03-22T12:09:22.479785687Z"} +2026/03/22 12:09:27 [transform_engine] {"stage_name":"transform_engine","events_processed":735,"events_dropped":0,"avg_latency_ms":812.5827392330835,"throughput_eps":0,"last_update":"2026-03-22T12:09:22.479822056Z"} +2026/03/22 12:09:27 ───────────────────────────────────────────────── +Saved state: 24 clusters, 35141 messages, reason: none +2026/03/22 12:09:32 ── Pipeline Health ────────────────────────────── +2026/03/22 12:09:32 [metric_collector] {"stage_name":"metric_collector","events_processed":22079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4415.8,"last_update":"2026-03-22T12:09:27.36846119Z"} +2026/03/22 12:09:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:09:27.376804349Z"} +2026/03/22 12:09:32 [detection_layer] {"stage_name":"detection_layer","events_processed":732,"events_dropped":0,"avg_latency_ms":21.01059181270555,"throughput_eps":0,"last_update":"2026-03-22T12:09:27.479014401Z"} +2026/03/22 12:09:32 [transform_engine] {"stage_name":"transform_engine","events_processed":736,"events_dropped":0,"avg_latency_ms":673.744353786467,"throughput_eps":0,"last_update":"2026-03-22T12:09:27.597425181Z"} +2026/03/22 12:09:32 [log_collector] {"stage_name":"log_collector","events_processed":35140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7028,"last_update":"2026-03-22T12:09:27.368083186Z"} +2026/03/22 12:09:32 ───────────────────────────────────────────────── +2026/03/22 12:09:37 ── Pipeline Health ────────────────────────────── +2026/03/22 12:09:37 [metric_collector] {"stage_name":"metric_collector","events_processed":22089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4417.8,"last_update":"2026-03-22T12:09:37.368646348Z"} +2026/03/22 12:09:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:09:32.379731037Z"} +2026/03/22 12:09:37 [detection_layer] {"stage_name":"detection_layer","events_processed":733,"events_dropped":0,"avg_latency_ms":20.754701250164437,"throughput_eps":0,"last_update":"2026-03-22T12:09:32.47987344Z"} +2026/03/22 12:09:37 [transform_engine] {"stage_name":"transform_engine","events_processed":736,"events_dropped":0,"avg_latency_ms":673.744353786467,"throughput_eps":0,"last_update":"2026-03-22T12:09:32.479857089Z"} +2026/03/22 12:09:37 [log_collector] {"stage_name":"log_collector","events_processed":35165,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7033,"last_update":"2026-03-22T12:09:37.368105323Z"} +2026/03/22 12:09:37 ───────────────────────────────────────────────── +2026/03/22 12:09:42 ── Pipeline Health ────────────────────────────── +2026/03/22 12:09:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:09:37.397457768Z"} +2026/03/22 12:09:42 [detection_layer] {"stage_name":"detection_layer","events_processed":733,"events_dropped":0,"avg_latency_ms":20.754701250164437,"throughput_eps":0,"last_update":"2026-03-22T12:09:37.479966619Z"} +2026/03/22 12:09:42 [transform_engine] {"stage_name":"transform_engine","events_processed":736,"events_dropped":0,"avg_latency_ms":673.744353786467,"throughput_eps":0,"last_update":"2026-03-22T12:09:37.479937674Z"} +2026/03/22 12:09:42 [log_collector] {"stage_name":"log_collector","events_processed":35165,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7033,"last_update":"2026-03-22T12:09:37.368105323Z"} +2026/03/22 12:09:42 [metric_collector] {"stage_name":"metric_collector","events_processed":22089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4417.8,"last_update":"2026-03-22T12:09:37.368646348Z"} +2026/03/22 12:09:42 ───────────────────────────────────────────────── +2026/03/22 12:09:47 ── Pipeline Health ────────────────────────────── +2026/03/22 12:09:47 [metric_collector] {"stage_name":"metric_collector","events_processed":22094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4418.8,"last_update":"2026-03-22T12:09:42.369890954Z"} +2026/03/22 12:09:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:09:42.392937011Z"} +2026/03/22 12:09:47 [detection_layer] {"stage_name":"detection_layer","events_processed":733,"events_dropped":0,"avg_latency_ms":20.754701250164437,"throughput_eps":0,"last_update":"2026-03-22T12:09:42.493916638Z"} +2026/03/22 12:09:47 [transform_engine] {"stage_name":"transform_engine","events_processed":736,"events_dropped":0,"avg_latency_ms":673.744353786467,"throughput_eps":0,"last_update":"2026-03-22T12:09:42.493975602Z"} +2026/03/22 12:09:47 [log_collector] {"stage_name":"log_collector","events_processed":35165,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7033,"last_update":"2026-03-22T12:09:42.369321203Z"} +2026/03/22 12:09:47 ───────────────────────────────────────────────── +2026/03/22 12:09:52 ── Pipeline Health ────────────────────────────── +2026/03/22 12:09:52 [transform_engine] {"stage_name":"transform_engine","events_processed":736,"events_dropped":0,"avg_latency_ms":673.744353786467,"throughput_eps":0,"last_update":"2026-03-22T12:09:47.47978261Z"} +2026/03/22 12:09:52 [log_collector] {"stage_name":"log_collector","events_processed":35165,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7033,"last_update":"2026-03-22T12:09:47.369065975Z"} +2026/03/22 12:09:52 [metric_collector] {"stage_name":"metric_collector","events_processed":22099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4419.8,"last_update":"2026-03-22T12:09:47.369680521Z"} +2026/03/22 12:09:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:09:47.391628838Z"} +2026/03/22 12:09:52 [detection_layer] {"stage_name":"detection_layer","events_processed":733,"events_dropped":0,"avg_latency_ms":20.754701250164437,"throughput_eps":0,"last_update":"2026-03-22T12:09:47.479857734Z"} +2026/03/22 12:09:52 ───────────────────────────────────────────────── +2026/03/22 12:09:57 ── Pipeline Health ────────────────────────────── +2026/03/22 12:09:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:09:52.392461772Z"} +2026/03/22 12:09:57 [detection_layer] {"stage_name":"detection_layer","events_processed":733,"events_dropped":0,"avg_latency_ms":20.754701250164437,"throughput_eps":0,"last_update":"2026-03-22T12:09:52.479578089Z"} +2026/03/22 12:09:57 [transform_engine] {"stage_name":"transform_engine","events_processed":736,"events_dropped":0,"avg_latency_ms":673.744353786467,"throughput_eps":0,"last_update":"2026-03-22T12:09:52.479533062Z"} +2026/03/22 12:09:57 [log_collector] {"stage_name":"log_collector","events_processed":35165,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7033,"last_update":"2026-03-22T12:09:52.369417138Z"} +2026/03/22 12:09:57 [metric_collector] {"stage_name":"metric_collector","events_processed":22104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4420.8,"last_update":"2026-03-22T12:09:52.370257938Z"} +2026/03/22 12:09:57 ───────────────────────────────────────────────── +2026/03/22 12:09:57 [ANOMALY] time=2026-03-22T12:09:57Z score=0.7889 method=SEAD details=MAD!:w=0.64,s=0.88 RRCF-fast:w=0.09,s=0.72 RRCF-mid:w=0.08,s=0.71 RRCF-slow:w=0.07,s=0.72 COPOD!:w=0.12,s=0.48 +2026/03/22 12:10:02 ── Pipeline Health ────────────────────────────── +2026/03/22 12:10:02 [log_collector] {"stage_name":"log_collector","events_processed":35165,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7033,"last_update":"2026-03-22T12:09:57.368825864Z"} +2026/03/22 12:10:02 [metric_collector] {"stage_name":"metric_collector","events_processed":22109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4421.8,"last_update":"2026-03-22T12:09:57.369392549Z"} +2026/03/22 12:10:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:09:57.392330892Z"} +2026/03/22 12:10:02 [detection_layer] {"stage_name":"detection_layer","events_processed":733,"events_dropped":0,"avg_latency_ms":20.754701250164437,"throughput_eps":0,"last_update":"2026-03-22T12:09:57.479538782Z"} +2026/03/22 12:10:02 [transform_engine] {"stage_name":"transform_engine","events_processed":737,"events_dropped":0,"avg_latency_ms":572.0807004291736,"throughput_eps":0,"last_update":"2026-03-22T12:09:57.644997481Z"} +2026/03/22 12:10:02 ───────────────────────────────────────────────── +2026/03/22 12:10:07 ── Pipeline Health ────────────────────────────── +2026/03/22 12:10:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8848,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:10:02.39185661Z"} +2026/03/22 12:10:07 [detection_layer] {"stage_name":"detection_layer","events_processed":734,"events_dropped":0,"avg_latency_ms":19.89665760013155,"throughput_eps":0,"last_update":"2026-03-22T12:10:02.480753537Z"} +2026/03/22 12:10:07 [transform_engine] {"stage_name":"transform_engine","events_processed":737,"events_dropped":0,"avg_latency_ms":572.0807004291736,"throughput_eps":0,"last_update":"2026-03-22T12:10:02.480680958Z"} +2026/03/22 12:10:07 [log_collector] {"stage_name":"log_collector","events_processed":35170,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7034,"last_update":"2026-03-22T12:10:02.370140839Z"} +2026/03/22 12:10:07 [metric_collector] {"stage_name":"metric_collector","events_processed":22114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4422.8,"last_update":"2026-03-22T12:10:02.370128186Z"} +2026/03/22 12:10:07 ───────────────────────────────────────────────── +2026/03/22 12:10:12 ── Pipeline Health ────────────────────────────── +2026/03/22 12:10:12 [log_collector] {"stage_name":"log_collector","events_processed":35175,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7035,"last_update":"2026-03-22T12:10:07.368013792Z"} +2026/03/22 12:10:12 [metric_collector] {"stage_name":"metric_collector","events_processed":22119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4423.8,"last_update":"2026-03-22T12:10:07.368388269Z"} +2026/03/22 12:10:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:10:07.37946307Z"} +2026/03/22 12:10:12 [detection_layer] {"stage_name":"detection_layer","events_processed":734,"events_dropped":0,"avg_latency_ms":19.89665760013155,"throughput_eps":0,"last_update":"2026-03-22T12:10:07.479833471Z"} +2026/03/22 12:10:12 [transform_engine] {"stage_name":"transform_engine","events_processed":737,"events_dropped":0,"avg_latency_ms":572.0807004291736,"throughput_eps":0,"last_update":"2026-03-22T12:10:07.479958511Z"} +2026/03/22 12:10:12 ───────────────────────────────────────────────── +2026/03/22 12:10:17 ── Pipeline Health ────────────────────────────── +2026/03/22 12:10:17 [transform_engine] {"stage_name":"transform_engine","events_processed":737,"events_dropped":0,"avg_latency_ms":572.0807004291736,"throughput_eps":0,"last_update":"2026-03-22T12:10:12.479249981Z"} +2026/03/22 12:10:17 [log_collector] {"stage_name":"log_collector","events_processed":35190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7038,"last_update":"2026-03-22T12:10:12.367997408Z"} +2026/03/22 12:10:17 [metric_collector] {"stage_name":"metric_collector","events_processed":22124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4424.8,"last_update":"2026-03-22T12:10:12.368659435Z"} +2026/03/22 12:10:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:10:12.376993367Z"} +2026/03/22 12:10:17 [detection_layer] {"stage_name":"detection_layer","events_processed":734,"events_dropped":0,"avg_latency_ms":19.89665760013155,"throughput_eps":0,"last_update":"2026-03-22T12:10:12.479211997Z"} +2026/03/22 12:10:17 ───────────────────────────────────────────────── +2026/03/22 12:10:22 ── Pipeline Health ────────────────────────────── +2026/03/22 12:10:22 [detection_layer] {"stage_name":"detection_layer","events_processed":734,"events_dropped":0,"avg_latency_ms":19.89665760013155,"throughput_eps":0,"last_update":"2026-03-22T12:10:17.478947396Z"} +2026/03/22 12:10:22 [transform_engine] {"stage_name":"transform_engine","events_processed":737,"events_dropped":0,"avg_latency_ms":572.0807004291736,"throughput_eps":0,"last_update":"2026-03-22T12:10:17.47883985Z"} +2026/03/22 12:10:22 [log_collector] {"stage_name":"log_collector","events_processed":35190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7038,"last_update":"2026-03-22T12:10:17.368621757Z"} +2026/03/22 12:10:22 [metric_collector] {"stage_name":"metric_collector","events_processed":22129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4425.8,"last_update":"2026-03-22T12:10:17.368961048Z"} +2026/03/22 12:10:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:10:17.3766271Z"} +2026/03/22 12:10:22 ───────────────────────────────────────────────── +2026/03/22 12:10:27 ── Pipeline Health ────────────────────────────── +2026/03/22 12:10:27 [detection_layer] {"stage_name":"detection_layer","events_processed":734,"events_dropped":0,"avg_latency_ms":19.89665760013155,"throughput_eps":0,"last_update":"2026-03-22T12:10:22.479276301Z"} +2026/03/22 12:10:27 [transform_engine] {"stage_name":"transform_engine","events_processed":737,"events_dropped":0,"avg_latency_ms":572.0807004291736,"throughput_eps":0,"last_update":"2026-03-22T12:10:22.479310276Z"} +2026/03/22 12:10:27 [log_collector] {"stage_name":"log_collector","events_processed":35190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7038,"last_update":"2026-03-22T12:10:27.368565196Z"} +2026/03/22 12:10:27 [metric_collector] {"stage_name":"metric_collector","events_processed":22134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4426.8,"last_update":"2026-03-22T12:10:22.369138573Z"} +2026/03/22 12:10:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:10:22.37795058Z"} +2026/03/22 12:10:27 ───────────────────────────────────────────────── +2026/03/22 12:10:32 ── Pipeline Health ────────────────────────────── +2026/03/22 12:10:32 [log_collector] {"stage_name":"log_collector","events_processed":35190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7038,"last_update":"2026-03-22T12:10:32.367975909Z"} +2026/03/22 12:10:32 [metric_collector] {"stage_name":"metric_collector","events_processed":22139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4427.8,"last_update":"2026-03-22T12:10:27.3688594Z"} +2026/03/22 12:10:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:10:27.375319993Z"} +2026/03/22 12:10:32 [detection_layer] {"stage_name":"detection_layer","events_processed":734,"events_dropped":0,"avg_latency_ms":19.89665760013155,"throughput_eps":0,"last_update":"2026-03-22T12:10:27.479726266Z"} +2026/03/22 12:10:32 [transform_engine] {"stage_name":"transform_engine","events_processed":738,"events_dropped":0,"avg_latency_ms":482.3234233433389,"throughput_eps":0,"last_update":"2026-03-22T12:10:27.602943403Z"} +2026/03/22 12:10:32 ───────────────────────────────────────────────── +Saved state: 24 clusters, 35191 messages, reason: none +2026/03/22 12:10:37 ── Pipeline Health ────────────────────────────── +2026/03/22 12:10:37 [log_collector] {"stage_name":"log_collector","events_processed":35190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7038,"last_update":"2026-03-22T12:10:32.367975909Z"} +2026/03/22 12:10:37 [metric_collector] {"stage_name":"metric_collector","events_processed":22144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4428.8,"last_update":"2026-03-22T12:10:32.368443023Z"} +2026/03/22 12:10:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8860,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:10:32.376782936Z"} +2026/03/22 12:10:37 [detection_layer] {"stage_name":"detection_layer","events_processed":735,"events_dropped":0,"avg_latency_ms":20.019660880105242,"throughput_eps":0,"last_update":"2026-03-22T12:10:32.479058696Z"} +2026/03/22 12:10:37 [transform_engine] {"stage_name":"transform_engine","events_processed":738,"events_dropped":0,"avg_latency_ms":482.3234233433389,"throughput_eps":0,"last_update":"2026-03-22T12:10:32.47898224Z"} +2026/03/22 12:10:37 ───────────────────────────────────────────────── +2026/03/22 12:10:42 ── Pipeline Health ────────────────────────────── +2026/03/22 12:10:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8862,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:10:37.377659774Z"} +2026/03/22 12:10:42 [detection_layer] {"stage_name":"detection_layer","events_processed":735,"events_dropped":0,"avg_latency_ms":20.019660880105242,"throughput_eps":0,"last_update":"2026-03-22T12:10:37.478996095Z"} +2026/03/22 12:10:42 [transform_engine] {"stage_name":"transform_engine","events_processed":738,"events_dropped":0,"avg_latency_ms":482.3234233433389,"throughput_eps":0,"last_update":"2026-03-22T12:10:37.478873471Z"} +2026/03/22 12:10:42 [log_collector] {"stage_name":"log_collector","events_processed":35215,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7043,"last_update":"2026-03-22T12:10:42.368720302Z"} +2026/03/22 12:10:42 [metric_collector] {"stage_name":"metric_collector","events_processed":22149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4429.8,"last_update":"2026-03-22T12:10:37.369067427Z"} +2026/03/22 12:10:42 ───────────────────────────────────────────────── +2026/03/22 12:10:47 ── Pipeline Health ────────────────────────────── +2026/03/22 12:10:47 [log_collector] {"stage_name":"log_collector","events_processed":35215,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7043,"last_update":"2026-03-22T12:10:47.368017421Z"} +2026/03/22 12:10:47 [metric_collector] {"stage_name":"metric_collector","events_processed":22154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4430.8,"last_update":"2026-03-22T12:10:42.369463595Z"} +2026/03/22 12:10:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:10:42.377276839Z"} +2026/03/22 12:10:47 [detection_layer] {"stage_name":"detection_layer","events_processed":735,"events_dropped":0,"avg_latency_ms":20.019660880105242,"throughput_eps":0,"last_update":"2026-03-22T12:10:42.479608417Z"} +2026/03/22 12:10:47 [transform_engine] {"stage_name":"transform_engine","events_processed":738,"events_dropped":0,"avg_latency_ms":482.3234233433389,"throughput_eps":0,"last_update":"2026-03-22T12:10:42.479640799Z"} +2026/03/22 12:10:47 ───────────────────────────────────────────────── +2026/03/22 12:10:52 ── Pipeline Health ────────────────────────────── +2026/03/22 12:10:52 [metric_collector] {"stage_name":"metric_collector","events_processed":22159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4431.8,"last_update":"2026-03-22T12:10:47.368720387Z"} +2026/03/22 12:10:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:10:47.377513228Z"} +2026/03/22 12:10:52 [detection_layer] {"stage_name":"detection_layer","events_processed":735,"events_dropped":0,"avg_latency_ms":20.019660880105242,"throughput_eps":0,"last_update":"2026-03-22T12:10:47.479703655Z"} +2026/03/22 12:10:52 [transform_engine] {"stage_name":"transform_engine","events_processed":738,"events_dropped":0,"avg_latency_ms":482.3234233433389,"throughput_eps":0,"last_update":"2026-03-22T12:10:47.479739133Z"} +2026/03/22 12:10:52 [log_collector] {"stage_name":"log_collector","events_processed":35215,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7043,"last_update":"2026-03-22T12:10:47.368017421Z"} +2026/03/22 12:10:52 ───────────────────────────────────────────────── +2026/03/22 12:10:57 ── Pipeline Health ────────────────────────────── +2026/03/22 12:10:57 [log_collector] {"stage_name":"log_collector","events_processed":35215,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7043,"last_update":"2026-03-22T12:10:52.368090725Z"} +2026/03/22 12:10:57 [metric_collector] {"stage_name":"metric_collector","events_processed":22164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4432.8,"last_update":"2026-03-22T12:10:52.368581185Z"} +2026/03/22 12:10:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8868,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:10:52.37767953Z"} +2026/03/22 12:10:57 [detection_layer] {"stage_name":"detection_layer","events_processed":735,"events_dropped":0,"avg_latency_ms":20.019660880105242,"throughput_eps":0,"last_update":"2026-03-22T12:10:52.479956354Z"} +2026/03/22 12:10:57 [transform_engine] {"stage_name":"transform_engine","events_processed":738,"events_dropped":0,"avg_latency_ms":482.3234233433389,"throughput_eps":0,"last_update":"2026-03-22T12:10:52.478855695Z"} +2026/03/22 12:10:57 ───────────────────────────────────────────────── +2026/03/22 12:11:02 ── Pipeline Health ────────────────────────────── +2026/03/22 12:11:02 [detection_layer] {"stage_name":"detection_layer","events_processed":735,"events_dropped":0,"avg_latency_ms":20.019660880105242,"throughput_eps":0,"last_update":"2026-03-22T12:10:57.479323645Z"} +2026/03/22 12:11:02 [transform_engine] {"stage_name":"transform_engine","events_processed":738,"events_dropped":0,"avg_latency_ms":482.3234233433389,"throughput_eps":0,"last_update":"2026-03-22T12:10:57.479277006Z"} +2026/03/22 12:11:02 [log_collector] {"stage_name":"log_collector","events_processed":35225,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7045,"last_update":"2026-03-22T12:11:02.368867737Z"} +2026/03/22 12:11:02 [metric_collector] {"stage_name":"metric_collector","events_processed":22168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4433.6,"last_update":"2026-03-22T12:10:57.368842278Z"} +2026/03/22 12:11:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:10:57.378055493Z"} +2026/03/22 12:11:02 ───────────────────────────────────────────────── +2026/03/22 12:11:07 ── Pipeline Health ────────────────────────────── +2026/03/22 12:11:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:11:02.378682704Z"} +2026/03/22 12:11:07 [detection_layer] {"stage_name":"detection_layer","events_processed":736,"events_dropped":0,"avg_latency_ms":20.360712304084192,"throughput_eps":0,"last_update":"2026-03-22T12:11:02.479891533Z"} +2026/03/22 12:11:07 [transform_engine] {"stage_name":"transform_engine","events_processed":739,"events_dropped":0,"avg_latency_ms":410.09241567467114,"throughput_eps":0,"last_update":"2026-03-22T12:11:02.479863229Z"} +2026/03/22 12:11:07 [log_collector] {"stage_name":"log_collector","events_processed":35225,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7045,"last_update":"2026-03-22T12:11:02.368867737Z"} +2026/03/22 12:11:07 [metric_collector] {"stage_name":"metric_collector","events_processed":22174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4434.8,"last_update":"2026-03-22T12:11:02.369007795Z"} +2026/03/22 12:11:07 ───────────────────────────────────────────────── +2026/03/22 12:11:12 ── Pipeline Health ────────────────────────────── +2026/03/22 12:11:12 [transform_engine] {"stage_name":"transform_engine","events_processed":739,"events_dropped":0,"avg_latency_ms":410.09241567467114,"throughput_eps":0,"last_update":"2026-03-22T12:11:07.479330487Z"} +2026/03/22 12:11:12 [log_collector] {"stage_name":"log_collector","events_processed":35235,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7047,"last_update":"2026-03-22T12:11:07.369675953Z"} +2026/03/22 12:11:12 [metric_collector] {"stage_name":"metric_collector","events_processed":22179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4435.8,"last_update":"2026-03-22T12:11:07.370020073Z"} +2026/03/22 12:11:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:11:07.391841807Z"} +2026/03/22 12:11:12 [detection_layer] {"stage_name":"detection_layer","events_processed":736,"events_dropped":0,"avg_latency_ms":20.360712304084192,"throughput_eps":0,"last_update":"2026-03-22T12:11:07.479306252Z"} +2026/03/22 12:11:12 ───────────────────────────────────────────────── +2026/03/22 12:11:17 ── Pipeline Health ────────────────────────────── +2026/03/22 12:11:17 [log_collector] {"stage_name":"log_collector","events_processed":35240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7048,"last_update":"2026-03-22T12:11:12.369876173Z"} +2026/03/22 12:11:17 [metric_collector] {"stage_name":"metric_collector","events_processed":22184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4436.8,"last_update":"2026-03-22T12:11:12.370683429Z"} +2026/03/22 12:11:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8876,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:11:12.436422305Z"} +2026/03/22 12:11:17 [detection_layer] {"stage_name":"detection_layer","events_processed":736,"events_dropped":0,"avg_latency_ms":20.360712304084192,"throughput_eps":0,"last_update":"2026-03-22T12:11:12.479668501Z"} +2026/03/22 12:11:17 [transform_engine] {"stage_name":"transform_engine","events_processed":739,"events_dropped":0,"avg_latency_ms":410.09241567467114,"throughput_eps":0,"last_update":"2026-03-22T12:11:12.479658443Z"} +2026/03/22 12:11:17 ───────────────────────────────────────────────── +2026/03/22 12:11:22 ── Pipeline Health ────────────────────────────── +2026/03/22 12:11:22 [log_collector] {"stage_name":"log_collector","events_processed":35240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7048,"last_update":"2026-03-22T12:11:17.369232696Z"} +2026/03/22 12:11:22 [metric_collector] {"stage_name":"metric_collector","events_processed":22189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4437.8,"last_update":"2026-03-22T12:11:17.369735649Z"} +2026/03/22 12:11:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:11:17.392818057Z"} +2026/03/22 12:11:22 [detection_layer] {"stage_name":"detection_layer","events_processed":736,"events_dropped":0,"avg_latency_ms":20.360712304084192,"throughput_eps":0,"last_update":"2026-03-22T12:11:17.499888953Z"} +2026/03/22 12:11:22 [transform_engine] {"stage_name":"transform_engine","events_processed":739,"events_dropped":0,"avg_latency_ms":410.09241567467114,"throughput_eps":0,"last_update":"2026-03-22T12:11:17.499153655Z"} +2026/03/22 12:11:22 ───────────────────────────────────────────────── +2026/03/22 12:11:27 ── Pipeline Health ────────────────────────────── +2026/03/22 12:11:27 [metric_collector] {"stage_name":"metric_collector","events_processed":22194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4438.8,"last_update":"2026-03-22T12:11:22.39028615Z"} +2026/03/22 12:11:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:11:22.411363739Z"} +2026/03/22 12:11:27 [detection_layer] {"stage_name":"detection_layer","events_processed":736,"events_dropped":0,"avg_latency_ms":20.360712304084192,"throughput_eps":0,"last_update":"2026-03-22T12:11:22.479437005Z"} +2026/03/22 12:11:27 [transform_engine] {"stage_name":"transform_engine","events_processed":739,"events_dropped":0,"avg_latency_ms":410.09241567467114,"throughput_eps":0,"last_update":"2026-03-22T12:11:22.479429661Z"} +2026/03/22 12:11:27 [log_collector] {"stage_name":"log_collector","events_processed":35240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7048,"last_update":"2026-03-22T12:11:22.373008499Z"} +2026/03/22 12:11:27 ───────────────────────────────────────────────── +2026/03/22 12:11:32 ── Pipeline Health ────────────────────────────── +2026/03/22 12:11:32 [log_collector] {"stage_name":"log_collector","events_processed":35240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7048,"last_update":"2026-03-22T12:11:27.368979893Z"} +2026/03/22 12:11:32 [metric_collector] {"stage_name":"metric_collector","events_processed":22199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4439.8,"last_update":"2026-03-22T12:11:27.369777521Z"} +2026/03/22 12:11:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:11:27.391782376Z"} +2026/03/22 12:11:32 [detection_layer] {"stage_name":"detection_layer","events_processed":736,"events_dropped":0,"avg_latency_ms":20.360712304084192,"throughput_eps":0,"last_update":"2026-03-22T12:11:27.478991181Z"} +2026/03/22 12:11:32 [transform_engine] {"stage_name":"transform_engine","events_processed":740,"events_dropped":0,"avg_latency_ms":361.19279293973693,"throughput_eps":0,"last_update":"2026-03-22T12:11:27.644610502Z"} +2026/03/22 12:11:32 ───────────────────────────────────────────────── +Saved state: 24 clusters, 35241 messages, reason: none +2026/03/22 12:11:37 ── Pipeline Health ────────────────────────────── +2026/03/22 12:11:37 [log_collector] {"stage_name":"log_collector","events_processed":35240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7048,"last_update":"2026-03-22T12:11:32.369448478Z"} +2026/03/22 12:11:37 [metric_collector] {"stage_name":"metric_collector","events_processed":22204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4440.8,"last_update":"2026-03-22T12:11:32.370186231Z"} +2026/03/22 12:11:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:11:32.387018218Z"} +2026/03/22 12:11:37 [detection_layer] {"stage_name":"detection_layer","events_processed":737,"events_dropped":0,"avg_latency_ms":20.760771443267355,"throughput_eps":0,"last_update":"2026-03-22T12:11:32.479292406Z"} +2026/03/22 12:11:37 [transform_engine] {"stage_name":"transform_engine","events_processed":740,"events_dropped":0,"avg_latency_ms":361.19279293973693,"throughput_eps":0,"last_update":"2026-03-22T12:11:32.479392167Z"} +2026/03/22 12:11:37 ───────────────────────────────────────────────── +2026/03/22 12:11:42 ── Pipeline Health ────────────────────────────── +2026/03/22 12:11:42 [log_collector] {"stage_name":"log_collector","events_processed":35253,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7050.6,"last_update":"2026-03-22T12:11:37.368739655Z"} +2026/03/22 12:11:42 [metric_collector] {"stage_name":"metric_collector","events_processed":22209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4441.8,"last_update":"2026-03-22T12:11:37.368732482Z"} +2026/03/22 12:11:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8886,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:11:37.381594586Z"} +2026/03/22 12:11:42 [detection_layer] {"stage_name":"detection_layer","events_processed":737,"events_dropped":0,"avg_latency_ms":20.760771443267355,"throughput_eps":0,"last_update":"2026-03-22T12:11:37.479846853Z"} +2026/03/22 12:11:42 [transform_engine] {"stage_name":"transform_engine","events_processed":740,"events_dropped":0,"avg_latency_ms":361.19279293973693,"throughput_eps":0,"last_update":"2026-03-22T12:11:37.479858916Z"} +2026/03/22 12:11:42 ───────────────────────────────────────────────── +2026/03/22 12:11:47 ── Pipeline Health ────────────────────────────── +2026/03/22 12:11:47 [detection_layer] {"stage_name":"detection_layer","events_processed":737,"events_dropped":0,"avg_latency_ms":20.760771443267355,"throughput_eps":0,"last_update":"2026-03-22T12:11:42.479818502Z"} +2026/03/22 12:11:47 [transform_engine] {"stage_name":"transform_engine","events_processed":740,"events_dropped":0,"avg_latency_ms":361.19279293973693,"throughput_eps":0,"last_update":"2026-03-22T12:11:42.479828791Z"} +2026/03/22 12:11:47 [log_collector] {"stage_name":"log_collector","events_processed":35268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7053.6,"last_update":"2026-03-22T12:11:42.368274818Z"} +2026/03/22 12:11:47 [metric_collector] {"stage_name":"metric_collector","events_processed":22214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4442.8,"last_update":"2026-03-22T12:11:42.36867284Z"} +2026/03/22 12:11:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:11:42.378640521Z"} +2026/03/22 12:11:47 ───────────────────────────────────────────────── +2026/03/22 12:11:52 ── Pipeline Health ────────────────────────────── +2026/03/22 12:11:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:11:47.377183822Z"} +2026/03/22 12:11:52 [detection_layer] {"stage_name":"detection_layer","events_processed":737,"events_dropped":0,"avg_latency_ms":20.760771443267355,"throughput_eps":0,"last_update":"2026-03-22T12:11:47.479382206Z"} +2026/03/22 12:11:52 [transform_engine] {"stage_name":"transform_engine","events_processed":740,"events_dropped":0,"avg_latency_ms":361.19279293973693,"throughput_eps":0,"last_update":"2026-03-22T12:11:47.479396935Z"} +2026/03/22 12:11:52 [log_collector] {"stage_name":"log_collector","events_processed":35279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7055.8,"last_update":"2026-03-22T12:11:47.368483479Z"} +2026/03/22 12:11:52 [metric_collector] {"stage_name":"metric_collector","events_processed":22219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4443.8,"last_update":"2026-03-22T12:11:47.368853657Z"} +2026/03/22 12:11:52 ───────────────────────────────────────────────── +2026/03/22 12:11:57 ── Pipeline Health ────────────────────────────── +2026/03/22 12:11:57 [metric_collector] {"stage_name":"metric_collector","events_processed":22224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4444.8,"last_update":"2026-03-22T12:11:52.368432888Z"} +2026/03/22 12:11:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8892,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:11:52.374557428Z"} +2026/03/22 12:11:57 [detection_layer] {"stage_name":"detection_layer","events_processed":737,"events_dropped":0,"avg_latency_ms":20.760771443267355,"throughput_eps":0,"last_update":"2026-03-22T12:11:52.479815533Z"} +2026/03/22 12:11:57 [transform_engine] {"stage_name":"transform_engine","events_processed":740,"events_dropped":0,"avg_latency_ms":361.19279293973693,"throughput_eps":0,"last_update":"2026-03-22T12:11:52.479829781Z"} +2026/03/22 12:11:57 [log_collector] {"stage_name":"log_collector","events_processed":35286,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7057.2,"last_update":"2026-03-22T12:11:52.368145016Z"} +2026/03/22 12:11:57 ───────────────────────────────────────────────── +2026/03/22 12:12:02 ── Pipeline Health ────────────────────────────── +2026/03/22 12:12:02 [log_collector] {"stage_name":"log_collector","events_processed":35298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7059.6,"last_update":"2026-03-22T12:11:57.367957662Z"} +2026/03/22 12:12:02 [metric_collector] {"stage_name":"metric_collector","events_processed":22229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4445.8,"last_update":"2026-03-22T12:11:57.368140162Z"} +2026/03/22 12:12:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:11:57.379983905Z"} +2026/03/22 12:12:02 [detection_layer] {"stage_name":"detection_layer","events_processed":737,"events_dropped":0,"avg_latency_ms":20.760771443267355,"throughput_eps":0,"last_update":"2026-03-22T12:11:57.479202565Z"} +2026/03/22 12:12:02 [transform_engine] {"stage_name":"transform_engine","events_processed":741,"events_dropped":0,"avg_latency_ms":323.81076135178955,"throughput_eps":0,"last_update":"2026-03-22T12:11:57.653499486Z"} +2026/03/22 12:12:02 ───────────────────────────────────────────────── +2026/03/22 12:12:07 ── Pipeline Health ────────────────────────────── +2026/03/22 12:12:07 [transform_engine] {"stage_name":"transform_engine","events_processed":741,"events_dropped":0,"avg_latency_ms":323.81076135178955,"throughput_eps":0,"last_update":"2026-03-22T12:12:02.479385526Z"} +2026/03/22 12:12:07 [log_collector] {"stage_name":"log_collector","events_processed":35314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7062.8,"last_update":"2026-03-22T12:12:02.367949708Z"} +2026/03/22 12:12:07 [metric_collector] {"stage_name":"metric_collector","events_processed":22234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4446.8,"last_update":"2026-03-22T12:12:02.368212953Z"} +2026/03/22 12:12:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8896,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:12:07.368384291Z"} +2026/03/22 12:12:07 [detection_layer] {"stage_name":"detection_layer","events_processed":738,"events_dropped":0,"avg_latency_ms":20.017806554613884,"throughput_eps":0,"last_update":"2026-03-22T12:12:02.47937238Z"} +2026/03/22 12:12:07 ───────────────────────────────────────────────── +2026/03/22 12:12:12 ── Pipeline Health ────────────────────────────── +2026/03/22 12:12:12 [detection_layer] {"stage_name":"detection_layer","events_processed":738,"events_dropped":0,"avg_latency_ms":20.017806554613884,"throughput_eps":0,"last_update":"2026-03-22T12:12:07.479654129Z"} +2026/03/22 12:12:12 [transform_engine] {"stage_name":"transform_engine","events_processed":741,"events_dropped":0,"avg_latency_ms":323.81076135178955,"throughput_eps":0,"last_update":"2026-03-22T12:12:07.479665992Z"} +2026/03/22 12:12:12 [log_collector] {"stage_name":"log_collector","events_processed":35329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7065.8,"last_update":"2026-03-22T12:12:07.36873905Z"} +2026/03/22 12:12:12 [metric_collector] {"stage_name":"metric_collector","events_processed":22239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4447.8,"last_update":"2026-03-22T12:12:07.368929274Z"} +2026/03/22 12:12:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8896,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:12:07.368384291Z"} +2026/03/22 12:12:12 ───────────────────────────────────────────────── +2026/03/22 12:12:17 ── Pipeline Health ────────────────────────────── +2026/03/22 12:12:17 [metric_collector] {"stage_name":"metric_collector","events_processed":22244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4448.8,"last_update":"2026-03-22T12:12:12.368869866Z"} +2026/03/22 12:12:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8900,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:12:12.374819801Z"} +2026/03/22 12:12:17 [detection_layer] {"stage_name":"detection_layer","events_processed":738,"events_dropped":0,"avg_latency_ms":20.017806554613884,"throughput_eps":0,"last_update":"2026-03-22T12:12:12.479216928Z"} +2026/03/22 12:12:17 [transform_engine] {"stage_name":"transform_engine","events_processed":741,"events_dropped":0,"avg_latency_ms":323.81076135178955,"throughput_eps":0,"last_update":"2026-03-22T12:12:12.479234753Z"} +2026/03/22 12:12:17 [log_collector] {"stage_name":"log_collector","events_processed":35329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7065.8,"last_update":"2026-03-22T12:12:17.367993121Z"} +2026/03/22 12:12:17 ───────────────────────────────────────────────── +2026/03/22 12:12:22 ── Pipeline Health ────────────────────────────── +2026/03/22 12:12:22 [log_collector] {"stage_name":"log_collector","events_processed":35329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7065.8,"last_update":"2026-03-22T12:12:17.367993121Z"} +2026/03/22 12:12:22 [metric_collector] {"stage_name":"metric_collector","events_processed":22249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4449.8,"last_update":"2026-03-22T12:12:17.368682571Z"} +2026/03/22 12:12:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:12:17.379222608Z"} +2026/03/22 12:12:22 [detection_layer] {"stage_name":"detection_layer","events_processed":738,"events_dropped":0,"avg_latency_ms":20.017806554613884,"throughput_eps":0,"last_update":"2026-03-22T12:12:17.47949745Z"} +2026/03/22 12:12:22 [transform_engine] {"stage_name":"transform_engine","events_processed":741,"events_dropped":0,"avg_latency_ms":323.81076135178955,"throughput_eps":0,"last_update":"2026-03-22T12:12:17.479609554Z"} +2026/03/22 12:12:22 ───────────────────────────────────────────────── +2026/03/22 12:12:27 ── Pipeline Health ────────────────────────────── +2026/03/22 12:12:27 [log_collector] {"stage_name":"log_collector","events_processed":35329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7065.8,"last_update":"2026-03-22T12:12:27.368609628Z"} +2026/03/22 12:12:27 [metric_collector] {"stage_name":"metric_collector","events_processed":22254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4450.8,"last_update":"2026-03-22T12:12:22.368276033Z"} +2026/03/22 12:12:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:12:22.376916151Z"} +2026/03/22 12:12:27 [detection_layer] {"stage_name":"detection_layer","events_processed":738,"events_dropped":0,"avg_latency_ms":20.017806554613884,"throughput_eps":0,"last_update":"2026-03-22T12:12:22.479325822Z"} +2026/03/22 12:12:27 [transform_engine] {"stage_name":"transform_engine","events_processed":741,"events_dropped":0,"avg_latency_ms":323.81076135178955,"throughput_eps":0,"last_update":"2026-03-22T12:12:22.479195733Z"} +2026/03/22 12:12:27 ───────────────────────────────────────────────── +2026/03/22 12:12:32 ── Pipeline Health ────────────────────────────── +2026/03/22 12:12:32 [detection_layer] {"stage_name":"detection_layer","events_processed":738,"events_dropped":0,"avg_latency_ms":20.017806554613884,"throughput_eps":0,"last_update":"2026-03-22T12:12:27.479096599Z"} +2026/03/22 12:12:32 [transform_engine] {"stage_name":"transform_engine","events_processed":742,"events_dropped":0,"avg_latency_ms":282.9426664814317,"throughput_eps":0,"last_update":"2026-03-22T12:12:27.598585972Z"} +2026/03/22 12:12:32 [log_collector] {"stage_name":"log_collector","events_processed":35329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7065.8,"last_update":"2026-03-22T12:12:27.368609628Z"} +2026/03/22 12:12:32 [metric_collector] {"stage_name":"metric_collector","events_processed":22259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4451.8,"last_update":"2026-03-22T12:12:27.369102873Z"} +2026/03/22 12:12:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8906,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:12:27.37888074Z"} +2026/03/22 12:12:32 ───────────────────────────────────────────────── +2026/03/22 12:12:37 ── Pipeline Health ────────────────────────────── +2026/03/22 12:12:37 [log_collector] {"stage_name":"log_collector","events_processed":35329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7065.8,"last_update":"2026-03-22T12:12:32.367994301Z"} +2026/03/22 12:12:37 [metric_collector] {"stage_name":"metric_collector","events_processed":22264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4452.8,"last_update":"2026-03-22T12:12:32.36839053Z"} +2026/03/22 12:12:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8908,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:12:32.376757425Z"} +2026/03/22 12:12:37 [detection_layer] {"stage_name":"detection_layer","events_processed":739,"events_dropped":0,"avg_latency_ms":20.980971643691106,"throughput_eps":0,"last_update":"2026-03-22T12:12:32.479463153Z"} +2026/03/22 12:12:37 [transform_engine] {"stage_name":"transform_engine","events_processed":742,"events_dropped":0,"avg_latency_ms":282.9426664814317,"throughput_eps":0,"last_update":"2026-03-22T12:12:32.479436261Z"} +2026/03/22 12:12:37 ───────────────────────────────────────────────── +Saved state: 24 clusters, 35340 messages, reason: none +2026/03/22 12:12:42 ── Pipeline Health ────────────────────────────── +2026/03/22 12:12:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:12:37.398182099Z"} +2026/03/22 12:12:42 [detection_layer] {"stage_name":"detection_layer","events_processed":739,"events_dropped":0,"avg_latency_ms":20.980971643691106,"throughput_eps":0,"last_update":"2026-03-22T12:12:37.479345848Z"} +2026/03/22 12:12:42 [transform_engine] {"stage_name":"transform_engine","events_processed":742,"events_dropped":0,"avg_latency_ms":282.9426664814317,"throughput_eps":0,"last_update":"2026-03-22T12:12:37.47932071Z"} +2026/03/22 12:12:42 [log_collector] {"stage_name":"log_collector","events_processed":35339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7067.8,"last_update":"2026-03-22T12:12:37.368879807Z"} +2026/03/22 12:12:42 [metric_collector] {"stage_name":"metric_collector","events_processed":22269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4453.8,"last_update":"2026-03-22T12:12:37.370739008Z"} +2026/03/22 12:12:42 ───────────────────────────────────────────────── +2026/03/22 12:12:47 ── Pipeline Health ────────────────────────────── +2026/03/22 12:12:47 [log_collector] {"stage_name":"log_collector","events_processed":35354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7070.8,"last_update":"2026-03-22T12:12:42.37433894Z"} +2026/03/22 12:12:47 [metric_collector] {"stage_name":"metric_collector","events_processed":22274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4454.8,"last_update":"2026-03-22T12:12:42.376071598Z"} +2026/03/22 12:12:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8912,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:12:42.401811717Z"} +2026/03/22 12:12:47 [detection_layer] {"stage_name":"detection_layer","events_processed":739,"events_dropped":0,"avg_latency_ms":20.980971643691106,"throughput_eps":0,"last_update":"2026-03-22T12:12:42.479126825Z"} +2026/03/22 12:12:47 [transform_engine] {"stage_name":"transform_engine","events_processed":742,"events_dropped":0,"avg_latency_ms":282.9426664814317,"throughput_eps":0,"last_update":"2026-03-22T12:12:42.479091668Z"} +2026/03/22 12:12:47 ───────────────────────────────────────────────── +2026/03/22 12:12:52 ── Pipeline Health ────────────────────────────── +2026/03/22 12:12:52 [log_collector] {"stage_name":"log_collector","events_processed":35354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7070.8,"last_update":"2026-03-22T12:12:47.369848182Z"} +2026/03/22 12:12:52 [metric_collector] {"stage_name":"metric_collector","events_processed":22279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4455.8,"last_update":"2026-03-22T12:12:47.370422862Z"} +2026/03/22 12:12:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:12:47.459796095Z"} +2026/03/22 12:12:52 [detection_layer] {"stage_name":"detection_layer","events_processed":739,"events_dropped":0,"avg_latency_ms":20.980971643691106,"throughput_eps":0,"last_update":"2026-03-22T12:12:47.478970499Z"} +2026/03/22 12:12:52 [transform_engine] {"stage_name":"transform_engine","events_processed":742,"events_dropped":0,"avg_latency_ms":282.9426664814317,"throughput_eps":0,"last_update":"2026-03-22T12:12:47.478914943Z"} +2026/03/22 12:12:52 ───────────────────────────────────────────────── +2026/03/22 12:12:57 ── Pipeline Health ────────────────────────────── +2026/03/22 12:12:57 [transform_engine] {"stage_name":"transform_engine","events_processed":742,"events_dropped":0,"avg_latency_ms":282.9426664814317,"throughput_eps":0,"last_update":"2026-03-22T12:12:52.479855564Z"} +2026/03/22 12:12:57 [log_collector] {"stage_name":"log_collector","events_processed":35354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7070.8,"last_update":"2026-03-22T12:12:52.368993364Z"} +2026/03/22 12:12:57 [metric_collector] {"stage_name":"metric_collector","events_processed":22284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4456.8,"last_update":"2026-03-22T12:12:52.369598963Z"} +2026/03/22 12:12:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:12:52.390955747Z"} +2026/03/22 12:12:57 [detection_layer] {"stage_name":"detection_layer","events_processed":739,"events_dropped":0,"avg_latency_ms":20.980971643691106,"throughput_eps":0,"last_update":"2026-03-22T12:12:52.480727735Z"} +2026/03/22 12:12:57 ───────────────────────────────────────────────── +2026/03/22 12:13:02 ── Pipeline Health ────────────────────────────── +2026/03/22 12:13:02 [log_collector] {"stage_name":"log_collector","events_processed":35359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7071.8,"last_update":"2026-03-22T12:13:02.370374769Z"} +2026/03/22 12:13:02 [metric_collector] {"stage_name":"metric_collector","events_processed":22289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4457.8,"last_update":"2026-03-22T12:12:57.370185894Z"} +2026/03/22 12:13:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8918,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:12:57.444422998Z"} +2026/03/22 12:13:02 [detection_layer] {"stage_name":"detection_layer","events_processed":739,"events_dropped":0,"avg_latency_ms":20.980971643691106,"throughput_eps":0,"last_update":"2026-03-22T12:12:57.47965659Z"} +2026/03/22 12:13:02 [transform_engine] {"stage_name":"transform_engine","events_processed":743,"events_dropped":0,"avg_latency_ms":563.1486803851453,"throughput_eps":0,"last_update":"2026-03-22T12:12:59.163744016Z"} +2026/03/22 12:13:02 ───────────────────────────────────────────────── +2026/03/22 12:13:07 ── Pipeline Health ────────────────────────────── +2026/03/22 12:13:07 [log_collector] {"stage_name":"log_collector","events_processed":35359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7071.8,"last_update":"2026-03-22T12:13:02.370374769Z"} +2026/03/22 12:13:07 [metric_collector] {"stage_name":"metric_collector","events_processed":22294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4458.8,"last_update":"2026-03-22T12:13:02.370984547Z"} +2026/03/22 12:13:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8920,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:13:02.402178762Z"} +2026/03/22 12:13:07 [detection_layer] {"stage_name":"detection_layer","events_processed":740,"events_dropped":0,"avg_latency_ms":20.304498314952887,"throughput_eps":0,"last_update":"2026-03-22T12:13:02.479008682Z"} +2026/03/22 12:13:07 [transform_engine] {"stage_name":"transform_engine","events_processed":743,"events_dropped":0,"avg_latency_ms":563.1486803851453,"throughput_eps":0,"last_update":"2026-03-22T12:13:02.479009995Z"} +2026/03/22 12:13:07 ───────────────────────────────────────────────── +2026/03/22 12:13:12 ── Pipeline Health ────────────────────────────── +2026/03/22 12:13:12 [log_collector] {"stage_name":"log_collector","events_processed":35379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7075.8,"last_update":"2026-03-22T12:13:07.368022532Z"} +2026/03/22 12:13:12 [metric_collector] {"stage_name":"metric_collector","events_processed":22299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4459.8,"last_update":"2026-03-22T12:13:07.368248325Z"} +2026/03/22 12:13:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:13:07.38470795Z"} +2026/03/22 12:13:12 [detection_layer] {"stage_name":"detection_layer","events_processed":740,"events_dropped":0,"avg_latency_ms":20.304498314952887,"throughput_eps":0,"last_update":"2026-03-22T12:13:07.47996407Z"} +2026/03/22 12:13:12 [transform_engine] {"stage_name":"transform_engine","events_processed":743,"events_dropped":0,"avg_latency_ms":563.1486803851453,"throughput_eps":0,"last_update":"2026-03-22T12:13:07.478886486Z"} +2026/03/22 12:13:12 ───────────────────────────────────────────────── +2026/03/22 12:13:17 ── Pipeline Health ────────────────────────────── +2026/03/22 12:13:17 [detection_layer] {"stage_name":"detection_layer","events_processed":740,"events_dropped":0,"avg_latency_ms":20.304498314952887,"throughput_eps":0,"last_update":"2026-03-22T12:13:12.479230751Z"} +2026/03/22 12:13:17 [transform_engine] {"stage_name":"transform_engine","events_processed":743,"events_dropped":0,"avg_latency_ms":563.1486803851453,"throughput_eps":0,"last_update":"2026-03-22T12:13:12.479308149Z"} +2026/03/22 12:13:17 [log_collector] {"stage_name":"log_collector","events_processed":35384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7076.8,"last_update":"2026-03-22T12:13:17.368120156Z"} +2026/03/22 12:13:17 [metric_collector] {"stage_name":"metric_collector","events_processed":22304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4460.8,"last_update":"2026-03-22T12:13:12.369072699Z"} +2026/03/22 12:13:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:13:12.376964975Z"} +2026/03/22 12:13:17 ───────────────────────────────────────────────── +2026/03/22 12:13:22 ── Pipeline Health ────────────────────────────── +2026/03/22 12:13:22 [log_collector] {"stage_name":"log_collector","events_processed":35384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7076.8,"last_update":"2026-03-22T12:13:17.368120156Z"} +2026/03/22 12:13:22 [metric_collector] {"stage_name":"metric_collector","events_processed":22309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4461.8,"last_update":"2026-03-22T12:13:17.368484122Z"} +2026/03/22 12:13:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:13:17.375422532Z"} +2026/03/22 12:13:22 [detection_layer] {"stage_name":"detection_layer","events_processed":740,"events_dropped":0,"avg_latency_ms":20.304498314952887,"throughput_eps":0,"last_update":"2026-03-22T12:13:17.479630428Z"} +2026/03/22 12:13:22 [transform_engine] {"stage_name":"transform_engine","events_processed":743,"events_dropped":0,"avg_latency_ms":563.1486803851453,"throughput_eps":0,"last_update":"2026-03-22T12:13:17.479650236Z"} +2026/03/22 12:13:22 ───────────────────────────────────────────────── +2026/03/22 12:13:27 ── Pipeline Health ────────────────────────────── +2026/03/22 12:13:27 [log_collector] {"stage_name":"log_collector","events_processed":35384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7076.8,"last_update":"2026-03-22T12:13:22.368415809Z"} +2026/03/22 12:13:27 [metric_collector] {"stage_name":"metric_collector","events_processed":22314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4462.8,"last_update":"2026-03-22T12:13:22.368875901Z"} +2026/03/22 12:13:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:13:22.375375099Z"} +2026/03/22 12:13:27 [detection_layer] {"stage_name":"detection_layer","events_processed":740,"events_dropped":0,"avg_latency_ms":20.304498314952887,"throughput_eps":0,"last_update":"2026-03-22T12:13:22.47966961Z"} +2026/03/22 12:13:27 [transform_engine] {"stage_name":"transform_engine","events_processed":743,"events_dropped":0,"avg_latency_ms":563.1486803851453,"throughput_eps":0,"last_update":"2026-03-22T12:13:22.479649593Z"} +2026/03/22 12:13:27 ───────────────────────────────────────────────── +2026/03/22 12:13:32 ── Pipeline Health ────────────────────────────── +2026/03/22 12:13:32 [log_collector] {"stage_name":"log_collector","events_processed":35384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7076.8,"last_update":"2026-03-22T12:13:27.368434329Z"} +2026/03/22 12:13:32 [metric_collector] {"stage_name":"metric_collector","events_processed":22319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4463.8,"last_update":"2026-03-22T12:13:27.368781153Z"} +2026/03/22 12:13:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8930,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:13:27.376432817Z"} +2026/03/22 12:13:32 [detection_layer] {"stage_name":"detection_layer","events_processed":740,"events_dropped":0,"avg_latency_ms":20.304498314952887,"throughput_eps":0,"last_update":"2026-03-22T12:13:27.479659465Z"} +2026/03/22 12:13:32 [transform_engine] {"stage_name":"transform_engine","events_processed":743,"events_dropped":0,"avg_latency_ms":563.1486803851453,"throughput_eps":0,"last_update":"2026-03-22T12:13:22.479649593Z"} +2026/03/22 12:13:32 ───────────────────────────────────────────────── +2026/03/22 12:13:37 ── Pipeline Health ────────────────────────────── +2026/03/22 12:13:37 [metric_collector] {"stage_name":"metric_collector","events_processed":22324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4464.8,"last_update":"2026-03-22T12:13:32.368469295Z"} +2026/03/22 12:13:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:13:32.376072718Z"} +2026/03/22 12:13:37 [detection_layer] {"stage_name":"detection_layer","events_processed":741,"events_dropped":0,"avg_latency_ms":19.195141651962313,"throughput_eps":0,"last_update":"2026-03-22T12:13:32.479667971Z"} +2026/03/22 12:13:37 [transform_engine] {"stage_name":"transform_engine","events_processed":744,"events_dropped":0,"avg_latency_ms":1444.8849977081163,"throughput_eps":0,"last_update":"2026-03-22T12:13:32.47968327Z"} +2026/03/22 12:13:37 [log_collector] {"stage_name":"log_collector","events_processed":35384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7076.8,"last_update":"2026-03-22T12:13:32.368211651Z"} +2026/03/22 12:13:37 ───────────────────────────────────────────────── +Saved state: 24 clusters, 35385 messages, reason: none +2026/03/22 12:13:42 ── Pipeline Health ────────────────────────────── +2026/03/22 12:13:42 [log_collector] {"stage_name":"log_collector","events_processed":35396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7079.2,"last_update":"2026-03-22T12:13:42.368342179Z"} +2026/03/22 12:13:42 [metric_collector] {"stage_name":"metric_collector","events_processed":22329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4465.8,"last_update":"2026-03-22T12:13:37.368650888Z"} +2026/03/22 12:13:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:13:37.375479918Z"} +2026/03/22 12:13:42 [detection_layer] {"stage_name":"detection_layer","events_processed":741,"events_dropped":0,"avg_latency_ms":19.195141651962313,"throughput_eps":0,"last_update":"2026-03-22T12:13:37.479714205Z"} +2026/03/22 12:13:42 [transform_engine] {"stage_name":"transform_engine","events_processed":744,"events_dropped":0,"avg_latency_ms":1444.8849977081163,"throughput_eps":0,"last_update":"2026-03-22T12:13:37.479683717Z"} +2026/03/22 12:13:42 ───────────────────────────────────────────────── +2026/03/22 12:13:47 ── Pipeline Health ────────────────────────────── +2026/03/22 12:13:47 [transform_engine] {"stage_name":"transform_engine","events_processed":744,"events_dropped":0,"avg_latency_ms":1444.8849977081163,"throughput_eps":0,"last_update":"2026-03-22T12:13:42.478996833Z"} +2026/03/22 12:13:47 [log_collector] {"stage_name":"log_collector","events_processed":35396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7079.2,"last_update":"2026-03-22T12:13:42.368342179Z"} +2026/03/22 12:13:47 [metric_collector] {"stage_name":"metric_collector","events_processed":22334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4466.8,"last_update":"2026-03-22T12:13:42.368594021Z"} +2026/03/22 12:13:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:13:42.375611601Z"} +2026/03/22 12:13:47 [detection_layer] {"stage_name":"detection_layer","events_processed":741,"events_dropped":0,"avg_latency_ms":19.195141651962313,"throughput_eps":0,"last_update":"2026-03-22T12:13:42.478978198Z"} +2026/03/22 12:13:47 ───────────────────────────────────────────────── +2026/03/22 12:13:52 ── Pipeline Health ────────────────────────────── +2026/03/22 12:13:52 [detection_layer] {"stage_name":"detection_layer","events_processed":741,"events_dropped":0,"avg_latency_ms":19.195141651962313,"throughput_eps":0,"last_update":"2026-03-22T12:13:47.479326131Z"} +2026/03/22 12:13:52 [transform_engine] {"stage_name":"transform_engine","events_processed":744,"events_dropped":0,"avg_latency_ms":1444.8849977081163,"throughput_eps":0,"last_update":"2026-03-22T12:13:47.47929928Z"} +2026/03/22 12:13:52 [log_collector] {"stage_name":"log_collector","events_processed":35418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7083.6,"last_update":"2026-03-22T12:13:47.368524345Z"} +2026/03/22 12:13:52 [metric_collector] {"stage_name":"metric_collector","events_processed":22339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4467.8,"last_update":"2026-03-22T12:13:47.368890897Z"} +2026/03/22 12:13:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:13:47.377109778Z"} +2026/03/22 12:13:52 ───────────────────────────────────────────────── +2026/03/22 12:13:57 ── Pipeline Health ────────────────────────────── +2026/03/22 12:13:57 [log_collector] {"stage_name":"log_collector","events_processed":35420,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7084,"last_update":"2026-03-22T12:13:52.368961765Z"} +2026/03/22 12:13:57 [metric_collector] {"stage_name":"metric_collector","events_processed":22344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4468.8,"last_update":"2026-03-22T12:13:52.36908913Z"} +2026/03/22 12:13:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8940,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:13:52.377582547Z"} +2026/03/22 12:13:57 [detection_layer] {"stage_name":"detection_layer","events_processed":741,"events_dropped":0,"avg_latency_ms":19.195141651962313,"throughput_eps":0,"last_update":"2026-03-22T12:13:52.4797674Z"} +2026/03/22 12:13:57 [transform_engine] {"stage_name":"transform_engine","events_processed":744,"events_dropped":0,"avg_latency_ms":1444.8849977081163,"throughput_eps":0,"last_update":"2026-03-22T12:13:52.479783831Z"} +2026/03/22 12:13:57 ───────────────────────────────────────────────── +2026/03/22 12:14:02 ── Pipeline Health ────────────────────────────── +2026/03/22 12:14:02 [metric_collector] {"stage_name":"metric_collector","events_processed":22349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4469.8,"last_update":"2026-03-22T12:13:57.36900606Z"} +2026/03/22 12:14:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:13:57.375111413Z"} +2026/03/22 12:14:02 [detection_layer] {"stage_name":"detection_layer","events_processed":741,"events_dropped":0,"avg_latency_ms":19.195141651962313,"throughput_eps":0,"last_update":"2026-03-22T12:13:57.479474659Z"} +2026/03/22 12:14:02 [transform_engine] {"stage_name":"transform_engine","events_processed":745,"events_dropped":0,"avg_latency_ms":1179.534816166493,"throughput_eps":0,"last_update":"2026-03-22T12:13:57.597629297Z"} +2026/03/22 12:14:02 [log_collector] {"stage_name":"log_collector","events_processed":35685,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7137,"last_update":"2026-03-22T12:13:57.368501494Z"} +2026/03/22 12:14:02 ───────────────────────────────────────────────── +2026/03/22 12:14:07 ── Pipeline Health ────────────────────────────── +2026/03/22 12:14:07 [transform_engine] {"stage_name":"transform_engine","events_processed":745,"events_dropped":0,"avg_latency_ms":1179.534816166493,"throughput_eps":0,"last_update":"2026-03-22T12:14:02.479834441Z"} +2026/03/22 12:14:07 [log_collector] {"stage_name":"log_collector","events_processed":35778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7155.6,"last_update":"2026-03-22T12:14:02.368830147Z"} +2026/03/22 12:14:07 [metric_collector] {"stage_name":"metric_collector","events_processed":22354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4470.8,"last_update":"2026-03-22T12:14:02.36924412Z"} +2026/03/22 12:14:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:14:02.377597709Z"} +2026/03/22 12:14:07 [detection_layer] {"stage_name":"detection_layer","events_processed":742,"events_dropped":0,"avg_latency_ms":18.20838412156985,"throughput_eps":0,"last_update":"2026-03-22T12:14:02.4798596Z"} +2026/03/22 12:14:07 ───────────────────────────────────────────────── +2026/03/22 12:14:12 ── Pipeline Health ────────────────────────────── +2026/03/22 12:14:12 [transform_engine] {"stage_name":"transform_engine","events_processed":745,"events_dropped":0,"avg_latency_ms":1179.534816166493,"throughput_eps":0,"last_update":"2026-03-22T12:14:07.478875104Z"} +2026/03/22 12:14:12 [log_collector] {"stage_name":"log_collector","events_processed":35798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7159.6,"last_update":"2026-03-22T12:14:07.37054452Z"} +2026/03/22 12:14:12 [metric_collector] {"stage_name":"metric_collector","events_processed":22359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4471.8,"last_update":"2026-03-22T12:14:07.371389479Z"} +2026/03/22 12:14:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:14:07.395705691Z"} +2026/03/22 12:14:12 [detection_layer] {"stage_name":"detection_layer","events_processed":742,"events_dropped":0,"avg_latency_ms":18.20838412156985,"throughput_eps":0,"last_update":"2026-03-22T12:14:07.478945859Z"} +2026/03/22 12:14:12 ───────────────────────────────────────────────── +2026/03/22 12:14:17 ── Pipeline Health ────────────────────────────── +2026/03/22 12:14:17 [log_collector] {"stage_name":"log_collector","events_processed":35806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7161.2,"last_update":"2026-03-22T12:14:12.371743392Z"} +2026/03/22 12:14:17 [metric_collector] {"stage_name":"metric_collector","events_processed":22364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4472.8,"last_update":"2026-03-22T12:14:12.372104864Z"} +2026/03/22 12:14:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:14:12.400245111Z"} +2026/03/22 12:14:17 [detection_layer] {"stage_name":"detection_layer","events_processed":742,"events_dropped":0,"avg_latency_ms":18.20838412156985,"throughput_eps":0,"last_update":"2026-03-22T12:14:12.479171357Z"} +2026/03/22 12:14:17 [transform_engine] {"stage_name":"transform_engine","events_processed":745,"events_dropped":0,"avg_latency_ms":1179.534816166493,"throughput_eps":0,"last_update":"2026-03-22T12:14:12.47918361Z"} +2026/03/22 12:14:17 ───────────────────────────────────────────────── +2026/03/22 12:14:22 ── Pipeline Health ────────────────────────────── +2026/03/22 12:14:22 [metric_collector] {"stage_name":"metric_collector","events_processed":22369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4473.8,"last_update":"2026-03-22T12:14:17.371798949Z"} +2026/03/22 12:14:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:14:17.404823079Z"} +2026/03/22 12:14:22 [detection_layer] {"stage_name":"detection_layer","events_processed":742,"events_dropped":0,"avg_latency_ms":18.20838412156985,"throughput_eps":0,"last_update":"2026-03-22T12:14:17.47894815Z"} +2026/03/22 12:14:22 [transform_engine] {"stage_name":"transform_engine","events_processed":745,"events_dropped":0,"avg_latency_ms":1179.534816166493,"throughput_eps":0,"last_update":"2026-03-22T12:14:17.47890673Z"} +2026/03/22 12:14:22 [log_collector] {"stage_name":"log_collector","events_processed":35806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7161.2,"last_update":"2026-03-22T12:14:17.369072897Z"} +2026/03/22 12:14:22 ───────────────────────────────────────────────── +2026/03/22 12:14:27 ── Pipeline Health ────────────────────────────── +2026/03/22 12:14:27 [detection_layer] {"stage_name":"detection_layer","events_processed":742,"events_dropped":0,"avg_latency_ms":18.20838412156985,"throughput_eps":0,"last_update":"2026-03-22T12:14:22.479166034Z"} +2026/03/22 12:14:27 [transform_engine] {"stage_name":"transform_engine","events_processed":745,"events_dropped":0,"avg_latency_ms":1179.534816166493,"throughput_eps":0,"last_update":"2026-03-22T12:14:22.479177947Z"} +2026/03/22 12:14:27 [log_collector] {"stage_name":"log_collector","events_processed":35816,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7163.2,"last_update":"2026-03-22T12:14:22.369585295Z"} +2026/03/22 12:14:27 [metric_collector] {"stage_name":"metric_collector","events_processed":22374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4474.8,"last_update":"2026-03-22T12:14:22.369907663Z"} +2026/03/22 12:14:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:14:22.391952545Z"} +2026/03/22 12:14:27 ───────────────────────────────────────────────── +2026/03/22 12:14:27 [ANOMALY] time=2026-03-22T12:14:27Z score=0.9405 method=SEAD details=MAD!:w=0.63,s=0.91 RRCF-fast!:w=0.10,s=0.99 RRCF-mid!:w=0.08,s=1.00 RRCF-slow!:w=0.07,s=1.00 COPOD!:w=0.13,s=0.99 +2026/03/22 12:14:32 ── Pipeline Health ────────────────────────────── +2026/03/22 12:14:32 [detection_layer] {"stage_name":"detection_layer","events_processed":742,"events_dropped":0,"avg_latency_ms":18.20838412156985,"throughput_eps":0,"last_update":"2026-03-22T12:14:27.479637589Z"} +2026/03/22 12:14:32 [transform_engine] {"stage_name":"transform_engine","events_processed":746,"events_dropped":0,"avg_latency_ms":982.3035099331945,"throughput_eps":0,"last_update":"2026-03-22T12:14:27.673043186Z"} +2026/03/22 12:14:32 [log_collector] {"stage_name":"log_collector","events_processed":35823,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7164.6,"last_update":"2026-03-22T12:14:27.36896002Z"} +2026/03/22 12:14:32 [metric_collector] {"stage_name":"metric_collector","events_processed":22379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4475.8,"last_update":"2026-03-22T12:14:27.368942746Z"} +2026/03/22 12:14:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:14:27.408503526Z"} +2026/03/22 12:14:32 ───────────────────────────────────────────────── +2026/03/22 12:14:37 ── Pipeline Health ────────────────────────────── +2026/03/22 12:14:37 [transform_engine] {"stage_name":"transform_engine","events_processed":746,"events_dropped":0,"avg_latency_ms":982.3035099331945,"throughput_eps":0,"last_update":"2026-03-22T12:14:32.479596728Z"} +2026/03/22 12:14:37 [log_collector] {"stage_name":"log_collector","events_processed":35833,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7166.6,"last_update":"2026-03-22T12:14:32.369589572Z"} +2026/03/22 12:14:37 [metric_collector] {"stage_name":"metric_collector","events_processed":22384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4476.8,"last_update":"2026-03-22T12:14:32.370467864Z"} +2026/03/22 12:14:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:14:32.394314087Z"} +2026/03/22 12:14:37 [detection_layer] {"stage_name":"detection_layer","events_processed":743,"events_dropped":0,"avg_latency_ms":16.33203649725588,"throughput_eps":0,"last_update":"2026-03-22T12:14:32.47963449Z"} +2026/03/22 12:14:37 ───────────────────────────────────────────────── +Saved state: 24 clusters, 35844 messages, reason: none +2026/03/22 12:14:42 ── Pipeline Health ────────────────────────────── +2026/03/22 12:14:42 [log_collector] {"stage_name":"log_collector","events_processed":35833,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7166.6,"last_update":"2026-03-22T12:14:37.3685747Z"} +2026/03/22 12:14:42 [metric_collector] {"stage_name":"metric_collector","events_processed":22389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4477.8,"last_update":"2026-03-22T12:14:37.368957664Z"} +2026/03/22 12:14:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8958,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:14:37.384912091Z"} +2026/03/22 12:14:42 [detection_layer] {"stage_name":"detection_layer","events_processed":743,"events_dropped":0,"avg_latency_ms":16.33203649725588,"throughput_eps":0,"last_update":"2026-03-22T12:14:37.479102734Z"} +2026/03/22 12:14:42 [transform_engine] {"stage_name":"transform_engine","events_processed":746,"events_dropped":0,"avg_latency_ms":982.3035099331945,"throughput_eps":0,"last_update":"2026-03-22T12:14:37.479305963Z"} +2026/03/22 12:14:42 ───────────────────────────────────────────────── +2026/03/22 12:14:47 ── Pipeline Health ────────────────────────────── +2026/03/22 12:14:47 [log_collector] {"stage_name":"log_collector","events_processed":35853,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7170.6,"last_update":"2026-03-22T12:14:42.367970891Z"} +2026/03/22 12:14:47 [metric_collector] {"stage_name":"metric_collector","events_processed":22394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4478.8,"last_update":"2026-03-22T12:14:42.368331572Z"} +2026/03/22 12:14:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:14:42.377313535Z"} +2026/03/22 12:14:47 [detection_layer] {"stage_name":"detection_layer","events_processed":743,"events_dropped":0,"avg_latency_ms":16.33203649725588,"throughput_eps":0,"last_update":"2026-03-22T12:14:42.47959273Z"} +2026/03/22 12:14:47 [transform_engine] {"stage_name":"transform_engine","events_processed":746,"events_dropped":0,"avg_latency_ms":982.3035099331945,"throughput_eps":0,"last_update":"2026-03-22T12:14:42.479681229Z"} +2026/03/22 12:14:47 ───────────────────────────────────────────────── +2026/03/22 12:14:52 ── Pipeline Health ────────────────────────────── +2026/03/22 12:14:52 [metric_collector] {"stage_name":"metric_collector","events_processed":22399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4479.8,"last_update":"2026-03-22T12:14:47.368799782Z"} +2026/03/22 12:14:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8962,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:14:47.385822204Z"} +2026/03/22 12:14:52 [detection_layer] {"stage_name":"detection_layer","events_processed":743,"events_dropped":0,"avg_latency_ms":16.33203649725588,"throughput_eps":0,"last_update":"2026-03-22T12:14:47.479229005Z"} +2026/03/22 12:14:52 [transform_engine] {"stage_name":"transform_engine","events_processed":746,"events_dropped":0,"avg_latency_ms":982.3035099331945,"throughput_eps":0,"last_update":"2026-03-22T12:14:47.478903532Z"} +2026/03/22 12:14:52 [log_collector] {"stage_name":"log_collector","events_processed":35858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7171.6,"last_update":"2026-03-22T12:14:47.368526598Z"} +2026/03/22 12:14:52 ───────────────────────────────────────────────── +2026/03/22 12:14:57 ── Pipeline Health ────────────────────────────── +2026/03/22 12:14:57 [log_collector] {"stage_name":"log_collector","events_processed":35858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7171.6,"last_update":"2026-03-22T12:14:57.368279815Z"} +2026/03/22 12:14:57 [metric_collector] {"stage_name":"metric_collector","events_processed":22404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4480.8,"last_update":"2026-03-22T12:14:52.368582091Z"} +2026/03/22 12:14:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:14:52.377096569Z"} +2026/03/22 12:14:57 [detection_layer] {"stage_name":"detection_layer","events_processed":743,"events_dropped":0,"avg_latency_ms":16.33203649725588,"throughput_eps":0,"last_update":"2026-03-22T12:14:52.479528747Z"} +2026/03/22 12:14:57 [transform_engine] {"stage_name":"transform_engine","events_processed":746,"events_dropped":0,"avg_latency_ms":982.3035099331945,"throughput_eps":0,"last_update":"2026-03-22T12:14:52.479542794Z"} +2026/03/22 12:14:57 ───────────────────────────────────────────────── +2026/03/22 12:15:02 ── Pipeline Health ────────────────────────────── +2026/03/22 12:15:02 [transform_engine] {"stage_name":"transform_engine","events_processed":747,"events_dropped":0,"avg_latency_ms":813.3477199465557,"throughput_eps":0,"last_update":"2026-03-22T12:14:57.61713714Z"} +2026/03/22 12:15:02 [log_collector] {"stage_name":"log_collector","events_processed":35858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7171.6,"last_update":"2026-03-22T12:15:02.367968277Z"} +2026/03/22 12:15:02 [metric_collector] {"stage_name":"metric_collector","events_processed":22409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4481.8,"last_update":"2026-03-22T12:14:57.368794501Z"} +2026/03/22 12:15:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:14:57.378286261Z"} +2026/03/22 12:15:02 [detection_layer] {"stage_name":"detection_layer","events_processed":743,"events_dropped":0,"avg_latency_ms":16.33203649725588,"throughput_eps":0,"last_update":"2026-03-22T12:14:57.479601299Z"} +2026/03/22 12:15:02 ───────────────────────────────────────────────── +2026/03/22 12:15:07 ── Pipeline Health ────────────────────────────── +2026/03/22 12:15:07 [log_collector] {"stage_name":"log_collector","events_processed":35858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7171.6,"last_update":"2026-03-22T12:15:02.367968277Z"} +2026/03/22 12:15:07 [metric_collector] {"stage_name":"metric_collector","events_processed":22414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4482.8,"last_update":"2026-03-22T12:15:02.368563397Z"} +2026/03/22 12:15:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:15:02.377518859Z"} +2026/03/22 12:15:07 [detection_layer] {"stage_name":"detection_layer","events_processed":744,"events_dropped":0,"avg_latency_ms":15.690312197804705,"throughput_eps":0,"last_update":"2026-03-22T12:15:02.479884149Z"} +2026/03/22 12:15:07 [transform_engine] {"stage_name":"transform_engine","events_processed":747,"events_dropped":0,"avg_latency_ms":813.3477199465557,"throughput_eps":0,"last_update":"2026-03-22T12:15:02.479906371Z"} +2026/03/22 12:15:07 ───────────────────────────────────────────────── +2026/03/22 12:15:12 ── Pipeline Health ────────────────────────────── +2026/03/22 12:15:12 [metric_collector] {"stage_name":"metric_collector","events_processed":22419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4483.8,"last_update":"2026-03-22T12:15:07.36895564Z"} +2026/03/22 12:15:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8970,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:15:07.377840397Z"} +2026/03/22 12:15:12 [detection_layer] {"stage_name":"detection_layer","events_processed":744,"events_dropped":0,"avg_latency_ms":15.690312197804705,"throughput_eps":0,"last_update":"2026-03-22T12:15:07.479092495Z"} +2026/03/22 12:15:12 [transform_engine] {"stage_name":"transform_engine","events_processed":747,"events_dropped":0,"avg_latency_ms":813.3477199465557,"throughput_eps":0,"last_update":"2026-03-22T12:15:07.479133704Z"} +2026/03/22 12:15:12 [log_collector] {"stage_name":"log_collector","events_processed":35868,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7173.6,"last_update":"2026-03-22T12:15:07.368489278Z"} +2026/03/22 12:15:12 ───────────────────────────────────────────────── +2026/03/22 12:15:17 ── Pipeline Health ────────────────────────────── +2026/03/22 12:15:17 [log_collector] {"stage_name":"log_collector","events_processed":35883,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7176.6,"last_update":"2026-03-22T12:15:17.368372064Z"} +2026/03/22 12:15:17 [metric_collector] {"stage_name":"metric_collector","events_processed":22424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4484.8,"last_update":"2026-03-22T12:15:12.368636546Z"} +2026/03/22 12:15:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:15:12.380002626Z"} +2026/03/22 12:15:17 [detection_layer] {"stage_name":"detection_layer","events_processed":744,"events_dropped":0,"avg_latency_ms":15.690312197804705,"throughput_eps":0,"last_update":"2026-03-22T12:15:12.479198125Z"} +2026/03/22 12:15:17 [transform_engine] {"stage_name":"transform_engine","events_processed":747,"events_dropped":0,"avg_latency_ms":813.3477199465557,"throughput_eps":0,"last_update":"2026-03-22T12:15:12.479211249Z"} +2026/03/22 12:15:17 ───────────────────────────────────────────────── +2026/03/22 12:15:22 ── Pipeline Health ────────────────────────────── +2026/03/22 12:15:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:15:17.37830606Z"} +2026/03/22 12:15:22 [detection_layer] {"stage_name":"detection_layer","events_processed":744,"events_dropped":0,"avg_latency_ms":15.690312197804705,"throughput_eps":0,"last_update":"2026-03-22T12:15:17.479503413Z"} +2026/03/22 12:15:22 [transform_engine] {"stage_name":"transform_engine","events_processed":747,"events_dropped":0,"avg_latency_ms":813.3477199465557,"throughput_eps":0,"last_update":"2026-03-22T12:15:17.47951702Z"} +2026/03/22 12:15:22 [log_collector] {"stage_name":"log_collector","events_processed":35883,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7176.6,"last_update":"2026-03-22T12:15:22.368489567Z"} +2026/03/22 12:15:22 [metric_collector] {"stage_name":"metric_collector","events_processed":22429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4485.8,"last_update":"2026-03-22T12:15:17.368739808Z"} +2026/03/22 12:15:22 ───────────────────────────────────────────────── +2026/03/22 12:15:27 ── Pipeline Health ────────────────────────────── +2026/03/22 12:15:27 [metric_collector] {"stage_name":"metric_collector","events_processed":22434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4486.8,"last_update":"2026-03-22T12:15:22.368922677Z"} +2026/03/22 12:15:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:15:22.379148893Z"} +2026/03/22 12:15:27 [detection_layer] {"stage_name":"detection_layer","events_processed":744,"events_dropped":0,"avg_latency_ms":15.690312197804705,"throughput_eps":0,"last_update":"2026-03-22T12:15:22.479326293Z"} +2026/03/22 12:15:27 [transform_engine] {"stage_name":"transform_engine","events_processed":747,"events_dropped":0,"avg_latency_ms":813.3477199465557,"throughput_eps":0,"last_update":"2026-03-22T12:15:22.479338446Z"} +2026/03/22 12:15:27 [log_collector] {"stage_name":"log_collector","events_processed":35883,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7176.6,"last_update":"2026-03-22T12:15:22.368489567Z"} +2026/03/22 12:15:27 ───────────────────────────────────────────────── +2026/03/22 12:15:32 ── Pipeline Health ────────────────────────────── +2026/03/22 12:15:32 [transform_engine] {"stage_name":"transform_engine","events_processed":748,"events_dropped":0,"avg_latency_ms":672.3154759572445,"throughput_eps":0,"last_update":"2026-03-22T12:15:27.587567351Z"} +2026/03/22 12:15:32 [log_collector] {"stage_name":"log_collector","events_processed":35883,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7176.6,"last_update":"2026-03-22T12:15:32.367967248Z"} +2026/03/22 12:15:32 [metric_collector] {"stage_name":"metric_collector","events_processed":22439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4487.8,"last_update":"2026-03-22T12:15:27.368894987Z"} +2026/03/22 12:15:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:15:27.378149753Z"} +2026/03/22 12:15:32 [detection_layer] {"stage_name":"detection_layer","events_processed":744,"events_dropped":0,"avg_latency_ms":15.690312197804705,"throughput_eps":0,"last_update":"2026-03-22T12:15:27.479429663Z"} +2026/03/22 12:15:32 ───────────────────────────────────────────────── +2026/03/22 12:15:37 ── Pipeline Health ────────────────────────────── +2026/03/22 12:15:37 [log_collector] {"stage_name":"log_collector","events_processed":35883,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7176.6,"last_update":"2026-03-22T12:15:32.367967248Z"} +2026/03/22 12:15:37 [metric_collector] {"stage_name":"metric_collector","events_processed":22444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4488.8,"last_update":"2026-03-22T12:15:32.368717335Z"} +2026/03/22 12:15:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:15:32.379806934Z"} +2026/03/22 12:15:37 [detection_layer] {"stage_name":"detection_layer","events_processed":745,"events_dropped":0,"avg_latency_ms":15.343357758243766,"throughput_eps":0,"last_update":"2026-03-22T12:15:32.478955334Z"} +2026/03/22 12:15:37 [transform_engine] {"stage_name":"transform_engine","events_processed":748,"events_dropped":0,"avg_latency_ms":672.3154759572445,"throughput_eps":0,"last_update":"2026-03-22T12:15:32.478929584Z"} +2026/03/22 12:15:37 ───────────────────────────────────────────────── +Saved state: 24 clusters, 35902 messages, reason: none +2026/03/22 12:15:42 ── Pipeline Health ────────────────────────────── +2026/03/22 12:15:42 [log_collector] {"stage_name":"log_collector","events_processed":35883,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7176.6,"last_update":"2026-03-22T12:15:37.369466822Z"} +2026/03/22 12:15:42 [metric_collector] {"stage_name":"metric_collector","events_processed":22449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4489.8,"last_update":"2026-03-22T12:15:37.370195057Z"} +2026/03/22 12:15:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:15:37.396154537Z"} +2026/03/22 12:15:42 [detection_layer] {"stage_name":"detection_layer","events_processed":745,"events_dropped":0,"avg_latency_ms":15.343357758243766,"throughput_eps":0,"last_update":"2026-03-22T12:15:37.479326326Z"} +2026/03/22 12:15:42 [transform_engine] {"stage_name":"transform_engine","events_processed":748,"events_dropped":0,"avg_latency_ms":672.3154759572445,"throughput_eps":0,"last_update":"2026-03-22T12:15:37.479339401Z"} +2026/03/22 12:15:42 ───────────────────────────────────────────────── +2026/03/22 12:15:47 ── Pipeline Health ────────────────────────────── +2026/03/22 12:15:47 [metric_collector] {"stage_name":"metric_collector","events_processed":22454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4490.8,"last_update":"2026-03-22T12:15:42.370140309Z"} +2026/03/22 12:15:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:15:42.396226221Z"} +2026/03/22 12:15:47 [detection_layer] {"stage_name":"detection_layer","events_processed":745,"events_dropped":0,"avg_latency_ms":15.343357758243766,"throughput_eps":0,"last_update":"2026-03-22T12:15:42.479405865Z"} +2026/03/22 12:15:47 [transform_engine] {"stage_name":"transform_engine","events_processed":748,"events_dropped":0,"avg_latency_ms":672.3154759572445,"throughput_eps":0,"last_update":"2026-03-22T12:15:42.479417116Z"} +2026/03/22 12:15:47 [log_collector] {"stage_name":"log_collector","events_processed":35916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7183.2,"last_update":"2026-03-22T12:15:42.369113202Z"} +2026/03/22 12:15:47 ───────────────────────────────────────────────── +2026/03/22 12:15:52 ── Pipeline Health ────────────────────────────── +2026/03/22 12:15:52 [detection_layer] {"stage_name":"detection_layer","events_processed":745,"events_dropped":0,"avg_latency_ms":15.343357758243766,"throughput_eps":0,"last_update":"2026-03-22T12:15:47.481251812Z"} +2026/03/22 12:15:52 [transform_engine] {"stage_name":"transform_engine","events_processed":748,"events_dropped":0,"avg_latency_ms":672.3154759572445,"throughput_eps":0,"last_update":"2026-03-22T12:15:47.481901857Z"} +2026/03/22 12:15:52 [log_collector] {"stage_name":"log_collector","events_processed":35922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7184.4,"last_update":"2026-03-22T12:15:52.369313321Z"} +2026/03/22 12:15:52 [metric_collector] {"stage_name":"metric_collector","events_processed":22464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4492.8,"last_update":"2026-03-22T12:15:52.370390835Z"} +2026/03/22 12:15:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:15:47.395631694Z"} +2026/03/22 12:15:52 ───────────────────────────────────────────────── +2026/03/22 12:15:57 ── Pipeline Health ────────────────────────────── +2026/03/22 12:15:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:15:52.421794098Z"} +2026/03/22 12:15:57 [detection_layer] {"stage_name":"detection_layer","events_processed":745,"events_dropped":0,"avg_latency_ms":15.343357758243766,"throughput_eps":0,"last_update":"2026-03-22T12:15:52.479100537Z"} +2026/03/22 12:15:57 [transform_engine] {"stage_name":"transform_engine","events_processed":748,"events_dropped":0,"avg_latency_ms":672.3154759572445,"throughput_eps":0,"last_update":"2026-03-22T12:15:52.479113782Z"} +2026/03/22 12:15:57 [log_collector] {"stage_name":"log_collector","events_processed":35922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7184.4,"last_update":"2026-03-22T12:15:52.369313321Z"} +2026/03/22 12:15:57 [metric_collector] {"stage_name":"metric_collector","events_processed":22464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4492.8,"last_update":"2026-03-22T12:15:52.370390835Z"} +2026/03/22 12:15:57 ───────────────────────────────────────────────── +2026/03/22 12:15:57 [ANOMALY] time=2026-03-22T12:15:57Z score=0.8963 method=SEAD details=MAD!:w=0.63,s=0.92 RRCF-fast!:w=0.10,s=0.90 RRCF-mid!:w=0.08,s=0.93 RRCF-slow!:w=0.07,s=0.94 COPOD!:w=0.13,s=0.75 +2026/03/22 12:16:02 ── Pipeline Health ────────────────────────────── +2026/03/22 12:16:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8990,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:15:57.458858257Z"} +2026/03/22 12:16:02 [detection_layer] {"stage_name":"detection_layer","events_processed":745,"events_dropped":0,"avg_latency_ms":15.343357758243766,"throughput_eps":0,"last_update":"2026-03-22T12:15:57.479786952Z"} +2026/03/22 12:16:02 [transform_engine] {"stage_name":"transform_engine","events_processed":749,"events_dropped":0,"avg_latency_ms":565.6055145657956,"throughput_eps":0,"last_update":"2026-03-22T12:15:57.618573361Z"} +2026/03/22 12:16:02 [log_collector] {"stage_name":"log_collector","events_processed":35922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7184.4,"last_update":"2026-03-22T12:15:57.369848888Z"} +2026/03/22 12:16:02 [metric_collector] {"stage_name":"metric_collector","events_processed":22468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4493.6,"last_update":"2026-03-22T12:15:57.369896359Z"} +2026/03/22 12:16:02 ───────────────────────────────────────────────── +2026/03/22 12:16:07 ── Pipeline Health ────────────────────────────── +2026/03/22 12:16:07 [log_collector] {"stage_name":"log_collector","events_processed":35922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7184.4,"last_update":"2026-03-22T12:16:02.369767125Z"} +2026/03/22 12:16:07 [metric_collector] {"stage_name":"metric_collector","events_processed":22474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4494.8,"last_update":"2026-03-22T12:16:02.370536819Z"} +2026/03/22 12:16:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8992,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:16:02.395920076Z"} +2026/03/22 12:16:07 [detection_layer] {"stage_name":"detection_layer","events_processed":746,"events_dropped":0,"avg_latency_ms":14.640479406595015,"throughput_eps":0,"last_update":"2026-03-22T12:16:02.480531533Z"} +2026/03/22 12:16:07 [transform_engine] {"stage_name":"transform_engine","events_processed":749,"events_dropped":0,"avg_latency_ms":565.6055145657956,"throughput_eps":0,"last_update":"2026-03-22T12:16:02.479696403Z"} +2026/03/22 12:16:07 ───────────────────────────────────────────────── +2026/03/22 12:16:12 ── Pipeline Health ────────────────────────────── +2026/03/22 12:16:12 [log_collector] {"stage_name":"log_collector","events_processed":35922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7184.4,"last_update":"2026-03-22T12:16:07.368396648Z"} +2026/03/22 12:16:12 [metric_collector] {"stage_name":"metric_collector","events_processed":22479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4495.8,"last_update":"2026-03-22T12:16:07.368682486Z"} +2026/03/22 12:16:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:16:07.385006672Z"} +2026/03/22 12:16:12 [detection_layer] {"stage_name":"detection_layer","events_processed":746,"events_dropped":0,"avg_latency_ms":14.640479406595015,"throughput_eps":0,"last_update":"2026-03-22T12:16:07.479368293Z"} +2026/03/22 12:16:12 [transform_engine] {"stage_name":"transform_engine","events_processed":749,"events_dropped":0,"avg_latency_ms":565.6055145657956,"throughput_eps":0,"last_update":"2026-03-22T12:16:07.479382941Z"} +2026/03/22 12:16:12 ───────────────────────────────────────────────── +2026/03/22 12:16:17 ── Pipeline Health ────────────────────────────── +2026/03/22 12:16:17 [log_collector] {"stage_name":"log_collector","events_processed":35932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7186.4,"last_update":"2026-03-22T12:16:12.368011124Z"} +2026/03/22 12:16:17 [metric_collector] {"stage_name":"metric_collector","events_processed":22484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4496.8,"last_update":"2026-03-22T12:16:12.368617626Z"} +2026/03/22 12:16:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8996,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:16:12.378595877Z"} +2026/03/22 12:16:17 [detection_layer] {"stage_name":"detection_layer","events_processed":746,"events_dropped":0,"avg_latency_ms":14.640479406595015,"throughput_eps":0,"last_update":"2026-03-22T12:16:12.479814171Z"} +2026/03/22 12:16:17 [transform_engine] {"stage_name":"transform_engine","events_processed":749,"events_dropped":0,"avg_latency_ms":565.6055145657956,"throughput_eps":0,"last_update":"2026-03-22T12:16:12.479874707Z"} +2026/03/22 12:16:17 ───────────────────────────────────────────────── +2026/03/22 12:16:22 ── Pipeline Health ────────────────────────────── +2026/03/22 12:16:22 [log_collector] {"stage_name":"log_collector","events_processed":35947,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7189.4,"last_update":"2026-03-22T12:16:17.368020259Z"} +2026/03/22 12:16:22 [metric_collector] {"stage_name":"metric_collector","events_processed":22489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4497.8,"last_update":"2026-03-22T12:16:17.368925554Z"} +2026/03/22 12:16:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:16:17.376855051Z"} +2026/03/22 12:16:22 [detection_layer] {"stage_name":"detection_layer","events_processed":746,"events_dropped":0,"avg_latency_ms":14.640479406595015,"throughput_eps":0,"last_update":"2026-03-22T12:16:17.479265549Z"} +2026/03/22 12:16:22 [transform_engine] {"stage_name":"transform_engine","events_processed":749,"events_dropped":0,"avg_latency_ms":565.6055145657956,"throughput_eps":0,"last_update":"2026-03-22T12:16:17.479216545Z"} +2026/03/22 12:16:22 ───────────────────────────────────────────────── +2026/03/22 12:16:27 ── Pipeline Health ────────────────────────────── +2026/03/22 12:16:27 [log_collector] {"stage_name":"log_collector","events_processed":35947,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7189.4,"last_update":"2026-03-22T12:16:22.368941728Z"} +2026/03/22 12:16:27 [metric_collector] {"stage_name":"metric_collector","events_processed":22494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4498.8,"last_update":"2026-03-22T12:16:22.369342215Z"} +2026/03/22 12:16:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:16:22.37870114Z"} +2026/03/22 12:16:27 [detection_layer] {"stage_name":"detection_layer","events_processed":746,"events_dropped":0,"avg_latency_ms":14.640479406595015,"throughput_eps":0,"last_update":"2026-03-22T12:16:22.480042961Z"} +2026/03/22 12:16:27 [transform_engine] {"stage_name":"transform_engine","events_processed":749,"events_dropped":0,"avg_latency_ms":565.6055145657956,"throughput_eps":0,"last_update":"2026-03-22T12:16:22.478916754Z"} +2026/03/22 12:16:27 ───────────────────────────────────────────────── +2026/03/22 12:16:32 ── Pipeline Health ────────────────────────────── +2026/03/22 12:16:32 [log_collector] {"stage_name":"log_collector","events_processed":35947,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7189.4,"last_update":"2026-03-22T12:16:32.368393865Z"} +2026/03/22 12:16:32 [metric_collector] {"stage_name":"metric_collector","events_processed":22499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4499.8,"last_update":"2026-03-22T12:16:27.368969747Z"} +2026/03/22 12:16:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:16:27.375839505Z"} +2026/03/22 12:16:32 [detection_layer] {"stage_name":"detection_layer","events_processed":746,"events_dropped":0,"avg_latency_ms":14.640479406595015,"throughput_eps":0,"last_update":"2026-03-22T12:16:27.479619857Z"} +2026/03/22 12:16:32 [transform_engine] {"stage_name":"transform_engine","events_processed":750,"events_dropped":0,"avg_latency_ms":477.4388932526365,"throughput_eps":0,"last_update":"2026-03-22T12:16:27.604514078Z"} +2026/03/22 12:16:32 ───────────────────────────────────────────────── +2026/03/22 12:16:37 ── Pipeline Health ────────────────────────────── +2026/03/22 12:16:37 [log_collector] {"stage_name":"log_collector","events_processed":35947,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7189.4,"last_update":"2026-03-22T12:16:37.367977422Z"} +2026/03/22 12:16:37 [metric_collector] {"stage_name":"metric_collector","events_processed":22504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4500.8,"last_update":"2026-03-22T12:16:32.368996499Z"} +2026/03/22 12:16:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:16:32.377725488Z"} +2026/03/22 12:16:37 [detection_layer] {"stage_name":"detection_layer","events_processed":747,"events_dropped":0,"avg_latency_ms":14.395378325276011,"throughput_eps":0,"last_update":"2026-03-22T12:16:32.478973859Z"} +2026/03/22 12:16:37 [transform_engine] {"stage_name":"transform_engine","events_processed":750,"events_dropped":0,"avg_latency_ms":477.4388932526365,"throughput_eps":0,"last_update":"2026-03-22T12:16:32.478934144Z"} +2026/03/22 12:16:37 ───────────────────────────────────────────────── +Saved state: 24 clusters, 35953 messages, reason: none +2026/03/22 12:16:42 ── Pipeline Health ────────────────────────────── +2026/03/22 12:16:42 [metric_collector] {"stage_name":"metric_collector","events_processed":22509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4501.8,"last_update":"2026-03-22T12:16:37.368788154Z"} +2026/03/22 12:16:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9006,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:16:37.377720602Z"} +2026/03/22 12:16:42 [detection_layer] {"stage_name":"detection_layer","events_processed":747,"events_dropped":0,"avg_latency_ms":14.395378325276011,"throughput_eps":0,"last_update":"2026-03-22T12:16:37.478949147Z"} +2026/03/22 12:16:42 [transform_engine] {"stage_name":"transform_engine","events_processed":750,"events_dropped":0,"avg_latency_ms":477.4388932526365,"throughput_eps":0,"last_update":"2026-03-22T12:16:37.478912396Z"} +2026/03/22 12:16:42 [log_collector] {"stage_name":"log_collector","events_processed":35947,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7189.4,"last_update":"2026-03-22T12:16:37.367977422Z"} +2026/03/22 12:16:42 ───────────────────────────────────────────────── +2026/03/22 12:16:47 ── Pipeline Health ────────────────────────────── +2026/03/22 12:16:47 [log_collector] {"stage_name":"log_collector","events_processed":35977,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7195.4,"last_update":"2026-03-22T12:16:47.368140435Z"} +2026/03/22 12:16:47 [metric_collector] {"stage_name":"metric_collector","events_processed":22514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4502.8,"last_update":"2026-03-22T12:16:42.368655579Z"} +2026/03/22 12:16:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9008,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:16:42.377536749Z"} +2026/03/22 12:16:47 [detection_layer] {"stage_name":"detection_layer","events_processed":747,"events_dropped":0,"avg_latency_ms":14.395378325276011,"throughput_eps":0,"last_update":"2026-03-22T12:16:42.479768665Z"} +2026/03/22 12:16:47 [transform_engine] {"stage_name":"transform_engine","events_processed":750,"events_dropped":0,"avg_latency_ms":477.4388932526365,"throughput_eps":0,"last_update":"2026-03-22T12:16:42.479781841Z"} +2026/03/22 12:16:47 ───────────────────────────────────────────────── +2026/03/22 12:16:52 ── Pipeline Health ────────────────────────────── +2026/03/22 12:16:52 [detection_layer] {"stage_name":"detection_layer","events_processed":747,"events_dropped":0,"avg_latency_ms":14.395378325276011,"throughput_eps":0,"last_update":"2026-03-22T12:16:47.479454657Z"} +2026/03/22 12:16:52 [transform_engine] {"stage_name":"transform_engine","events_processed":750,"events_dropped":0,"avg_latency_ms":477.4388932526365,"throughput_eps":0,"last_update":"2026-03-22T12:16:47.479465477Z"} +2026/03/22 12:16:52 [log_collector] {"stage_name":"log_collector","events_processed":35977,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7195.4,"last_update":"2026-03-22T12:16:47.368140435Z"} +2026/03/22 12:16:52 [metric_collector] {"stage_name":"metric_collector","events_processed":22519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4503.8,"last_update":"2026-03-22T12:16:47.368585207Z"} +2026/03/22 12:16:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:16:47.3783455Z"} +2026/03/22 12:16:52 ───────────────────────────────────────────────── +2026/03/22 12:16:57 ── Pipeline Health ────────────────────────────── +2026/03/22 12:16:57 [log_collector] {"stage_name":"log_collector","events_processed":35977,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7195.4,"last_update":"2026-03-22T12:16:52.368281673Z"} +2026/03/22 12:16:57 [metric_collector] {"stage_name":"metric_collector","events_processed":22524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4504.8,"last_update":"2026-03-22T12:16:52.36847896Z"} +2026/03/22 12:16:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9012,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:16:52.375099932Z"} +2026/03/22 12:16:57 [detection_layer] {"stage_name":"detection_layer","events_processed":747,"events_dropped":0,"avg_latency_ms":14.395378325276011,"throughput_eps":0,"last_update":"2026-03-22T12:16:52.47924878Z"} +2026/03/22 12:16:57 [transform_engine] {"stage_name":"transform_engine","events_processed":750,"events_dropped":0,"avg_latency_ms":477.4388932526365,"throughput_eps":0,"last_update":"2026-03-22T12:16:52.479258748Z"} +2026/03/22 12:16:57 ───────────────────────────────────────────────── +2026/03/22 12:17:02 ── Pipeline Health ────────────────────────────── +2026/03/22 12:17:02 [log_collector] {"stage_name":"log_collector","events_processed":35977,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7195.4,"last_update":"2026-03-22T12:17:02.368392282Z"} +2026/03/22 12:17:02 [metric_collector] {"stage_name":"metric_collector","events_processed":22529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4505.8,"last_update":"2026-03-22T12:16:57.368839633Z"} +2026/03/22 12:17:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:16:57.377780407Z"} +2026/03/22 12:17:02 [detection_layer] {"stage_name":"detection_layer","events_processed":747,"events_dropped":0,"avg_latency_ms":14.395378325276011,"throughput_eps":0,"last_update":"2026-03-22T12:16:57.479889989Z"} +2026/03/22 12:17:02 [transform_engine] {"stage_name":"transform_engine","events_processed":751,"events_dropped":0,"avg_latency_ms":436.4019190021092,"throughput_eps":0,"last_update":"2026-03-22T12:16:57.751170748Z"} +2026/03/22 12:17:02 ───────────────────────────────────────────────── +2026/03/22 12:17:07 ── Pipeline Health ────────────────────────────── +2026/03/22 12:17:07 [metric_collector] {"stage_name":"metric_collector","events_processed":22534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4506.8,"last_update":"2026-03-22T12:17:02.368655295Z"} +2026/03/22 12:17:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:17:02.376689022Z"} +2026/03/22 12:17:07 [detection_layer] {"stage_name":"detection_layer","events_processed":748,"events_dropped":0,"avg_latency_ms":14.05129606022081,"throughput_eps":0,"last_update":"2026-03-22T12:17:02.48003922Z"} +2026/03/22 12:17:07 [transform_engine] {"stage_name":"transform_engine","events_processed":751,"events_dropped":0,"avg_latency_ms":436.4019190021092,"throughput_eps":0,"last_update":"2026-03-22T12:17:02.478819385Z"} +2026/03/22 12:17:07 [log_collector] {"stage_name":"log_collector","events_processed":35997,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7199.4,"last_update":"2026-03-22T12:17:07.367968307Z"} +2026/03/22 12:17:07 ───────────────────────────────────────────────── +2026/03/22 12:17:12 ── Pipeline Health ────────────────────────────── +2026/03/22 12:17:12 [transform_engine] {"stage_name":"transform_engine","events_processed":751,"events_dropped":0,"avg_latency_ms":436.4019190021092,"throughput_eps":0,"last_update":"2026-03-22T12:17:07.478957036Z"} +2026/03/22 12:17:12 [log_collector] {"stage_name":"log_collector","events_processed":35997,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7199.4,"last_update":"2026-03-22T12:17:07.367968307Z"} +2026/03/22 12:17:12 [metric_collector] {"stage_name":"metric_collector","events_processed":22539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4507.8,"last_update":"2026-03-22T12:17:07.368389835Z"} +2026/03/22 12:17:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9018,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:17:07.374752371Z"} +2026/03/22 12:17:12 [detection_layer] {"stage_name":"detection_layer","events_processed":748,"events_dropped":0,"avg_latency_ms":14.05129606022081,"throughput_eps":0,"last_update":"2026-03-22T12:17:07.479015208Z"} +2026/03/22 12:17:12 ───────────────────────────────────────────────── +2026/03/22 12:17:17 ── Pipeline Health ────────────────────────────── +2026/03/22 12:17:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9020,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:17:12.378280151Z"} +2026/03/22 12:17:17 [detection_layer] {"stage_name":"detection_layer","events_processed":748,"events_dropped":0,"avg_latency_ms":14.05129606022081,"throughput_eps":0,"last_update":"2026-03-22T12:17:12.479520849Z"} +2026/03/22 12:17:17 [transform_engine] {"stage_name":"transform_engine","events_processed":751,"events_dropped":0,"avg_latency_ms":436.4019190021092,"throughput_eps":0,"last_update":"2026-03-22T12:17:12.479549795Z"} +2026/03/22 12:17:17 [log_collector] {"stage_name":"log_collector","events_processed":36007,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7201.4,"last_update":"2026-03-22T12:17:12.368846733Z"} +2026/03/22 12:17:17 [metric_collector] {"stage_name":"metric_collector","events_processed":22544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4508.8,"last_update":"2026-03-22T12:17:12.369188718Z"} +2026/03/22 12:17:17 ───────────────────────────────────────────────── +2026/03/22 12:17:22 ── Pipeline Health ────────────────────────────── +2026/03/22 12:17:22 [log_collector] {"stage_name":"log_collector","events_processed":36012,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7202.4,"last_update":"2026-03-22T12:17:17.368181816Z"} +2026/03/22 12:17:22 [metric_collector] {"stage_name":"metric_collector","events_processed":22549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4509.8,"last_update":"2026-03-22T12:17:17.368809719Z"} +2026/03/22 12:17:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9022,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:17:17.37797848Z"} +2026/03/22 12:17:22 [detection_layer] {"stage_name":"detection_layer","events_processed":748,"events_dropped":0,"avg_latency_ms":14.05129606022081,"throughput_eps":0,"last_update":"2026-03-22T12:17:17.479258705Z"} +2026/03/22 12:17:22 [transform_engine] {"stage_name":"transform_engine","events_processed":751,"events_dropped":0,"avg_latency_ms":436.4019190021092,"throughput_eps":0,"last_update":"2026-03-22T12:17:17.479278902Z"} +2026/03/22 12:17:22 ───────────────────────────────────────────────── +2026/03/22 12:17:27 ── Pipeline Health ────────────────────────────── +2026/03/22 12:17:27 [transform_engine] {"stage_name":"transform_engine","events_processed":751,"events_dropped":0,"avg_latency_ms":436.4019190021092,"throughput_eps":0,"last_update":"2026-03-22T12:17:22.479796084Z"} +2026/03/22 12:17:27 [log_collector] {"stage_name":"log_collector","events_processed":36025,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7205,"last_update":"2026-03-22T12:17:27.368575286Z"} +2026/03/22 12:17:27 [metric_collector] {"stage_name":"metric_collector","events_processed":22554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4510.8,"last_update":"2026-03-22T12:17:22.368541827Z"} +2026/03/22 12:17:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:17:22.374574993Z"} +2026/03/22 12:17:27 [detection_layer] {"stage_name":"detection_layer","events_processed":748,"events_dropped":0,"avg_latency_ms":14.05129606022081,"throughput_eps":0,"last_update":"2026-03-22T12:17:22.479784101Z"} +2026/03/22 12:17:27 ───────────────────────────────────────────────── +2026/03/22 12:17:32 ── Pipeline Health ────────────────────────────── +2026/03/22 12:17:32 [transform_engine] {"stage_name":"transform_engine","events_processed":752,"events_dropped":0,"avg_latency_ms":662.0088182016874,"throughput_eps":0,"last_update":"2026-03-22T12:17:29.043901972Z"} +2026/03/22 12:17:32 [log_collector] {"stage_name":"log_collector","events_processed":36025,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7205,"last_update":"2026-03-22T12:17:27.368575286Z"} +2026/03/22 12:17:32 [metric_collector] {"stage_name":"metric_collector","events_processed":22559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4511.8,"last_update":"2026-03-22T12:17:27.369064032Z"} +2026/03/22 12:17:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:17:27.37623696Z"} +2026/03/22 12:17:32 [detection_layer] {"stage_name":"detection_layer","events_processed":748,"events_dropped":0,"avg_latency_ms":14.05129606022081,"throughput_eps":0,"last_update":"2026-03-22T12:17:27.479450027Z"} +2026/03/22 12:17:32 ───────────────────────────────────────────────── +2026/03/22 12:17:37 ── Pipeline Health ────────────────────────────── +2026/03/22 12:17:37 [detection_layer] {"stage_name":"detection_layer","events_processed":749,"events_dropped":0,"avg_latency_ms":13.838618048176649,"throughput_eps":0,"last_update":"2026-03-22T12:17:32.480016268Z"} +2026/03/22 12:17:37 [transform_engine] {"stage_name":"transform_engine","events_processed":752,"events_dropped":0,"avg_latency_ms":662.0088182016874,"throughput_eps":0,"last_update":"2026-03-22T12:17:32.478909198Z"} +2026/03/22 12:17:37 [log_collector] {"stage_name":"log_collector","events_processed":36025,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7205,"last_update":"2026-03-22T12:17:32.368008678Z"} +2026/03/22 12:17:37 [metric_collector] {"stage_name":"metric_collector","events_processed":22564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4512.8,"last_update":"2026-03-22T12:17:32.371469767Z"} +2026/03/22 12:17:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:17:32.378762846Z"} +2026/03/22 12:17:37 ───────────────────────────────────────────────── +2026/03/22 12:17:42 ── Pipeline Health ────────────────────────────── +2026/03/22 12:17:42 [transform_engine] {"stage_name":"transform_engine","events_processed":752,"events_dropped":0,"avg_latency_ms":662.0088182016874,"throughput_eps":0,"last_update":"2026-03-22T12:17:37.47923301Z"} +2026/03/22 12:17:42 [log_collector] {"stage_name":"log_collector","events_processed":36025,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7205,"last_update":"2026-03-22T12:17:42.368516389Z"} +2026/03/22 12:17:42 [metric_collector] {"stage_name":"metric_collector","events_processed":22569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4513.8,"last_update":"2026-03-22T12:17:37.369098898Z"} +2026/03/22 12:17:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:17:37.380009165Z"} +2026/03/22 12:17:42 [detection_layer] {"stage_name":"detection_layer","events_processed":749,"events_dropped":0,"avg_latency_ms":13.838618048176649,"throughput_eps":0,"last_update":"2026-03-22T12:17:37.479219194Z"} +2026/03/22 12:17:42 ───────────────────────────────────────────────── +Saved state: 24 clusters, 36026 messages, reason: none +2026/03/22 12:17:47 ── Pipeline Health ────────────────────────────── +2026/03/22 12:17:47 [detection_layer] {"stage_name":"detection_layer","events_processed":749,"events_dropped":0,"avg_latency_ms":13.838618048176649,"throughput_eps":0,"last_update":"2026-03-22T12:17:42.479566795Z"} +2026/03/22 12:17:47 [transform_engine] {"stage_name":"transform_engine","events_processed":752,"events_dropped":0,"avg_latency_ms":662.0088182016874,"throughput_eps":0,"last_update":"2026-03-22T12:17:42.479543651Z"} +2026/03/22 12:17:47 [log_collector] {"stage_name":"log_collector","events_processed":36025,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7205,"last_update":"2026-03-22T12:17:42.368516389Z"} +2026/03/22 12:17:47 [metric_collector] {"stage_name":"metric_collector","events_processed":22574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4514.8,"last_update":"2026-03-22T12:17:42.368836611Z"} +2026/03/22 12:17:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:17:42.382297423Z"} +2026/03/22 12:17:47 ───────────────────────────────────────────────── +2026/03/22 12:17:52 ── Pipeline Health ────────────────────────────── +2026/03/22 12:17:52 [log_collector] {"stage_name":"log_collector","events_processed":36034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7206.8,"last_update":"2026-03-22T12:17:47.368936592Z"} +2026/03/22 12:17:52 [metric_collector] {"stage_name":"metric_collector","events_processed":22579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4515.8,"last_update":"2026-03-22T12:17:47.369278927Z"} +2026/03/22 12:17:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:17:47.378036011Z"} +2026/03/22 12:17:52 [detection_layer] {"stage_name":"detection_layer","events_processed":749,"events_dropped":0,"avg_latency_ms":13.838618048176649,"throughput_eps":0,"last_update":"2026-03-22T12:17:47.479389636Z"} +2026/03/22 12:17:52 [transform_engine] {"stage_name":"transform_engine","events_processed":752,"events_dropped":0,"avg_latency_ms":662.0088182016874,"throughput_eps":0,"last_update":"2026-03-22T12:17:47.47940274Z"} +2026/03/22 12:17:52 ───────────────────────────────────────────────── +2026/03/22 12:17:57 ── Pipeline Health ────────────────────────────── +2026/03/22 12:17:57 [log_collector] {"stage_name":"log_collector","events_processed":36056,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7211.2,"last_update":"2026-03-22T12:17:52.368557749Z"} +2026/03/22 12:17:57 [metric_collector] {"stage_name":"metric_collector","events_processed":22584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4516.8,"last_update":"2026-03-22T12:17:52.368800685Z"} +2026/03/22 12:17:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9036,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:17:52.376687181Z"} +2026/03/22 12:17:57 [detection_layer] {"stage_name":"detection_layer","events_processed":749,"events_dropped":0,"avg_latency_ms":13.838618048176649,"throughput_eps":0,"last_update":"2026-03-22T12:17:52.479540117Z"} +2026/03/22 12:17:57 [transform_engine] {"stage_name":"transform_engine","events_processed":752,"events_dropped":0,"avg_latency_ms":662.0088182016874,"throughput_eps":0,"last_update":"2026-03-22T12:17:52.479526781Z"} +2026/03/22 12:17:57 ───────────────────────────────────────────────── +2026/03/22 12:18:02 ── Pipeline Health ────────────────────────────── +2026/03/22 12:18:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:17:57.377036687Z"} +2026/03/22 12:18:02 [detection_layer] {"stage_name":"detection_layer","events_processed":749,"events_dropped":0,"avg_latency_ms":13.838618048176649,"throughput_eps":0,"last_update":"2026-03-22T12:17:57.479792097Z"} +2026/03/22 12:18:02 [transform_engine] {"stage_name":"transform_engine","events_processed":753,"events_dropped":0,"avg_latency_ms":555.12601576135,"throughput_eps":0,"last_update":"2026-03-22T12:17:57.607399466Z"} +2026/03/22 12:18:02 [log_collector] {"stage_name":"log_collector","events_processed":36177,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7235.4,"last_update":"2026-03-22T12:17:57.368465891Z"} +2026/03/22 12:18:02 [metric_collector] {"stage_name":"metric_collector","events_processed":22589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4517.8,"last_update":"2026-03-22T12:17:57.368285696Z"} +2026/03/22 12:18:02 ───────────────────────────────────────────────── +2026/03/22 12:18:07 ── Pipeline Health ────────────────────────────── +2026/03/22 12:18:07 [log_collector] {"stage_name":"log_collector","events_processed":36407,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7281.4,"last_update":"2026-03-22T12:18:02.368622662Z"} +2026/03/22 12:18:07 [metric_collector] {"stage_name":"metric_collector","events_processed":22594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4518.8,"last_update":"2026-03-22T12:18:02.368846732Z"} +2026/03/22 12:18:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:18:02.374878425Z"} +2026/03/22 12:18:07 [detection_layer] {"stage_name":"detection_layer","events_processed":750,"events_dropped":0,"avg_latency_ms":14.35855723854132,"throughput_eps":0,"last_update":"2026-03-22T12:18:02.479249699Z"} +2026/03/22 12:18:07 [transform_engine] {"stage_name":"transform_engine","events_processed":753,"events_dropped":0,"avg_latency_ms":555.12601576135,"throughput_eps":0,"last_update":"2026-03-22T12:18:02.479267352Z"} +2026/03/22 12:18:07 ───────────────────────────────────────────────── +2026/03/22 12:18:12 ── Pipeline Health ────────────────────────────── +2026/03/22 12:18:12 [log_collector] {"stage_name":"log_collector","events_processed":36410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7282,"last_update":"2026-03-22T12:18:07.367970758Z"} +2026/03/22 12:18:12 [metric_collector] {"stage_name":"metric_collector","events_processed":22599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4519.8,"last_update":"2026-03-22T12:18:07.368221609Z"} +2026/03/22 12:18:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:18:07.378342232Z"} +2026/03/22 12:18:12 [detection_layer] {"stage_name":"detection_layer","events_processed":750,"events_dropped":0,"avg_latency_ms":14.35855723854132,"throughput_eps":0,"last_update":"2026-03-22T12:18:07.482112156Z"} +2026/03/22 12:18:12 [transform_engine] {"stage_name":"transform_engine","events_processed":753,"events_dropped":0,"avg_latency_ms":555.12601576135,"throughput_eps":0,"last_update":"2026-03-22T12:18:07.482122515Z"} +2026/03/22 12:18:12 ───────────────────────────────────────────────── +2026/03/22 12:18:17 ── Pipeline Health ────────────────────────────── +2026/03/22 12:18:17 [log_collector] {"stage_name":"log_collector","events_processed":36410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7282,"last_update":"2026-03-22T12:18:12.367964653Z"} +2026/03/22 12:18:17 [metric_collector] {"stage_name":"metric_collector","events_processed":22604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4520.8,"last_update":"2026-03-22T12:18:12.368229932Z"} +2026/03/22 12:18:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:18:12.37897373Z"} +2026/03/22 12:18:17 [detection_layer] {"stage_name":"detection_layer","events_processed":750,"events_dropped":0,"avg_latency_ms":14.35855723854132,"throughput_eps":0,"last_update":"2026-03-22T12:18:12.479144168Z"} +2026/03/22 12:18:17 [transform_engine] {"stage_name":"transform_engine","events_processed":753,"events_dropped":0,"avg_latency_ms":555.12601576135,"throughput_eps":0,"last_update":"2026-03-22T12:18:12.479156282Z"} +2026/03/22 12:18:17 ───────────────────────────────────────────────── +2026/03/22 12:18:22 ── Pipeline Health ────────────────────────────── +2026/03/22 12:18:22 [transform_engine] {"stage_name":"transform_engine","events_processed":753,"events_dropped":0,"avg_latency_ms":555.12601576135,"throughput_eps":0,"last_update":"2026-03-22T12:18:17.479155912Z"} +2026/03/22 12:18:22 [log_collector] {"stage_name":"log_collector","events_processed":36421,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7284.2,"last_update":"2026-03-22T12:18:17.368106405Z"} +2026/03/22 12:18:22 [metric_collector] {"stage_name":"metric_collector","events_processed":22609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4521.8,"last_update":"2026-03-22T12:18:17.368677168Z"} +2026/03/22 12:18:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:18:17.376889828Z"} +2026/03/22 12:18:22 [detection_layer] {"stage_name":"detection_layer","events_processed":750,"events_dropped":0,"avg_latency_ms":14.35855723854132,"throughput_eps":0,"last_update":"2026-03-22T12:18:17.47913935Z"} +2026/03/22 12:18:22 ───────────────────────────────────────────────── +2026/03/22 12:18:27 ── Pipeline Health ────────────────────────────── +2026/03/22 12:18:27 [log_collector] {"stage_name":"log_collector","events_processed":36434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7286.8,"last_update":"2026-03-22T12:18:22.367950321Z"} +2026/03/22 12:18:27 [metric_collector] {"stage_name":"metric_collector","events_processed":22614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4522.8,"last_update":"2026-03-22T12:18:22.368431903Z"} +2026/03/22 12:18:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9048,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:18:22.377877153Z"} +2026/03/22 12:18:27 [detection_layer] {"stage_name":"detection_layer","events_processed":750,"events_dropped":0,"avg_latency_ms":14.35855723854132,"throughput_eps":0,"last_update":"2026-03-22T12:18:22.479109506Z"} +2026/03/22 12:18:27 [transform_engine] {"stage_name":"transform_engine","events_processed":753,"events_dropped":0,"avg_latency_ms":555.12601576135,"throughput_eps":0,"last_update":"2026-03-22T12:18:22.479138622Z"} +2026/03/22 12:18:27 ───────────────────────────────────────────────── +2026/03/22 12:18:27 [ANOMALY] time=2026-03-22T12:18:27Z score=0.7854 method=SEAD details=MAD!:w=0.63,s=0.83 RRCF-fast:w=0.09,s=0.51 RRCF-mid:w=0.08,s=0.81 RRCF-slow:w=0.07,s=0.86 COPOD!:w=0.13,s=0.71 +2026/03/22 12:18:32 ── Pipeline Health ────────────────────────────── +2026/03/22 12:18:32 [transform_engine] {"stage_name":"transform_engine","events_processed":754,"events_dropped":0,"avg_latency_ms":466.31949460908004,"throughput_eps":0,"last_update":"2026-03-22T12:18:27.590749302Z"} +2026/03/22 12:18:32 [log_collector] {"stage_name":"log_collector","events_processed":36452,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7290.4,"last_update":"2026-03-22T12:18:27.36800853Z"} +2026/03/22 12:18:32 [metric_collector] {"stage_name":"metric_collector","events_processed":22618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4523.6,"last_update":"2026-03-22T12:18:27.367897928Z"} +2026/03/22 12:18:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9050,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:18:27.378431424Z"} +2026/03/22 12:18:32 [detection_layer] {"stage_name":"detection_layer","events_processed":750,"events_dropped":0,"avg_latency_ms":14.35855723854132,"throughput_eps":0,"last_update":"2026-03-22T12:18:27.479641134Z"} +2026/03/22 12:18:32 ───────────────────────────────────────────────── +2026/03/22 12:18:37 ── Pipeline Health ────────────────────────────── +2026/03/22 12:18:37 [log_collector] {"stage_name":"log_collector","events_processed":36452,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7290.4,"last_update":"2026-03-22T12:18:32.368615374Z"} +2026/03/22 12:18:37 [metric_collector] {"stage_name":"metric_collector","events_processed":22623,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4524.6,"last_update":"2026-03-22T12:18:32.368607578Z"} +2026/03/22 12:18:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:18:32.377625992Z"} +2026/03/22 12:18:37 [detection_layer] {"stage_name":"detection_layer","events_processed":751,"events_dropped":0,"avg_latency_ms":15.109243990833058,"throughput_eps":0,"last_update":"2026-03-22T12:18:32.480126303Z"} +2026/03/22 12:18:37 [transform_engine] {"stage_name":"transform_engine","events_processed":754,"events_dropped":0,"avg_latency_ms":466.31949460908004,"throughput_eps":0,"last_update":"2026-03-22T12:18:32.478832765Z"} +2026/03/22 12:18:37 ───────────────────────────────────────────────── +2026/03/22 12:18:42 ── Pipeline Health ────────────────────────────── +2026/03/22 12:18:42 [log_collector] {"stage_name":"log_collector","events_processed":36452,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7290.4,"last_update":"2026-03-22T12:18:37.368303521Z"} +2026/03/22 12:18:42 [metric_collector] {"stage_name":"metric_collector","events_processed":22628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4525.6,"last_update":"2026-03-22T12:18:37.368032Z"} +2026/03/22 12:18:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:18:37.378470714Z"} +2026/03/22 12:18:42 [detection_layer] {"stage_name":"detection_layer","events_processed":751,"events_dropped":0,"avg_latency_ms":15.109243990833058,"throughput_eps":0,"last_update":"2026-03-22T12:18:37.479672278Z"} +2026/03/22 12:18:42 [transform_engine] {"stage_name":"transform_engine","events_processed":754,"events_dropped":0,"avg_latency_ms":466.31949460908004,"throughput_eps":0,"last_update":"2026-03-22T12:18:37.479681657Z"} +2026/03/22 12:18:42 ───────────────────────────────────────────────── +2026/03/22 12:18:47 ── Pipeline Health ────────────────────────────── +2026/03/22 12:18:47 [log_collector] {"stage_name":"log_collector","events_processed":36452,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7290.4,"last_update":"2026-03-22T12:18:47.368265728Z"} +2026/03/22 12:18:47 [metric_collector] {"stage_name":"metric_collector","events_processed":22634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4526.8,"last_update":"2026-03-22T12:18:42.368982429Z"} +2026/03/22 12:18:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9056,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:18:42.377303307Z"} +2026/03/22 12:18:47 [detection_layer] {"stage_name":"detection_layer","events_processed":751,"events_dropped":0,"avg_latency_ms":15.109243990833058,"throughput_eps":0,"last_update":"2026-03-22T12:18:42.479495037Z"} +2026/03/22 12:18:47 [transform_engine] {"stage_name":"transform_engine","events_processed":754,"events_dropped":0,"avg_latency_ms":466.31949460908004,"throughput_eps":0,"last_update":"2026-03-22T12:18:42.479502843Z"} +2026/03/22 12:18:47 ───────────────────────────────────────────────── +Saved state: 24 clusters, 36453 messages, reason: none +2026/03/22 12:18:52 ── Pipeline Health ────────────────────────────── +2026/03/22 12:18:52 [log_collector] {"stage_name":"log_collector","events_processed":36452,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7290.4,"last_update":"2026-03-22T12:18:47.368265728Z"} +2026/03/22 12:18:52 [metric_collector] {"stage_name":"metric_collector","events_processed":22639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4527.8,"last_update":"2026-03-22T12:18:47.368751728Z"} +2026/03/22 12:18:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:18:47.377752157Z"} +2026/03/22 12:18:52 [detection_layer] {"stage_name":"detection_layer","events_processed":751,"events_dropped":0,"avg_latency_ms":15.109243990833058,"throughput_eps":0,"last_update":"2026-03-22T12:18:47.479972142Z"} +2026/03/22 12:18:52 [transform_engine] {"stage_name":"transform_engine","events_processed":754,"events_dropped":0,"avg_latency_ms":466.31949460908004,"throughput_eps":0,"last_update":"2026-03-22T12:18:47.478882976Z"} +2026/03/22 12:18:52 ───────────────────────────────────────────────── +2026/03/22 12:18:57 ── Pipeline Health ────────────────────────────── +2026/03/22 12:18:57 [metric_collector] {"stage_name":"metric_collector","events_processed":22644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4528.8,"last_update":"2026-03-22T12:18:52.368233669Z"} +2026/03/22 12:18:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:18:52.377899122Z"} +2026/03/22 12:18:57 [detection_layer] {"stage_name":"detection_layer","events_processed":751,"events_dropped":0,"avg_latency_ms":15.109243990833058,"throughput_eps":0,"last_update":"2026-03-22T12:18:52.479110034Z"} +2026/03/22 12:18:57 [transform_engine] {"stage_name":"transform_engine","events_processed":754,"events_dropped":0,"avg_latency_ms":466.31949460908004,"throughput_eps":0,"last_update":"2026-03-22T12:18:52.479122819Z"} +2026/03/22 12:18:57 [log_collector] {"stage_name":"log_collector","events_processed":36457,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7291.4,"last_update":"2026-03-22T12:18:52.368241064Z"} +2026/03/22 12:18:57 ───────────────────────────────────────────────── +2026/03/22 12:19:02 ── Pipeline Health ────────────────────────────── +2026/03/22 12:19:02 [metric_collector] {"stage_name":"metric_collector","events_processed":22649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4529.8,"last_update":"2026-03-22T12:18:57.368386538Z"} +2026/03/22 12:19:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9062,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:18:57.377762837Z"} +2026/03/22 12:19:02 [detection_layer] {"stage_name":"detection_layer","events_processed":751,"events_dropped":0,"avg_latency_ms":15.109243990833058,"throughput_eps":0,"last_update":"2026-03-22T12:18:57.478967437Z"} +2026/03/22 12:19:02 [transform_engine] {"stage_name":"transform_engine","events_processed":755,"events_dropped":0,"avg_latency_ms":392.40991568726406,"throughput_eps":0,"last_update":"2026-03-22T12:18:57.575708549Z"} +2026/03/22 12:19:02 [log_collector] {"stage_name":"log_collector","events_processed":36477,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7295.4,"last_update":"2026-03-22T12:18:57.367985681Z"} +2026/03/22 12:19:02 ───────────────────────────────────────────────── +2026/03/22 12:19:07 ── Pipeline Health ────────────────────────────── +2026/03/22 12:19:07 [log_collector] {"stage_name":"log_collector","events_processed":36477,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7295.4,"last_update":"2026-03-22T12:19:02.36796931Z"} +2026/03/22 12:19:07 [metric_collector] {"stage_name":"metric_collector","events_processed":22654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4530.8,"last_update":"2026-03-22T12:19:02.368457516Z"} +2026/03/22 12:19:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:19:02.377595367Z"} +2026/03/22 12:19:07 [detection_layer] {"stage_name":"detection_layer","events_processed":752,"events_dropped":0,"avg_latency_ms":15.857117392666447,"throughput_eps":0,"last_update":"2026-03-22T12:19:02.479919883Z"} +2026/03/22 12:19:07 [transform_engine] {"stage_name":"transform_engine","events_processed":755,"events_dropped":0,"avg_latency_ms":392.40991568726406,"throughput_eps":0,"last_update":"2026-03-22T12:19:02.479931675Z"} +2026/03/22 12:19:07 ───────────────────────────────────────────────── +2026/03/22 12:19:12 ── Pipeline Health ────────────────────────────── +2026/03/22 12:19:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:19:07.377138757Z"} +2026/03/22 12:19:12 [detection_layer] {"stage_name":"detection_layer","events_processed":752,"events_dropped":0,"avg_latency_ms":15.857117392666447,"throughput_eps":0,"last_update":"2026-03-22T12:19:07.479512176Z"} +2026/03/22 12:19:12 [transform_engine] {"stage_name":"transform_engine","events_processed":755,"events_dropped":0,"avg_latency_ms":392.40991568726406,"throughput_eps":0,"last_update":"2026-03-22T12:19:07.479527606Z"} +2026/03/22 12:19:12 [log_collector] {"stage_name":"log_collector","events_processed":36477,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7295.4,"last_update":"2026-03-22T12:19:07.367999663Z"} +2026/03/22 12:19:12 [metric_collector] {"stage_name":"metric_collector","events_processed":22659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4531.8,"last_update":"2026-03-22T12:19:07.368332149Z"} +2026/03/22 12:19:12 ───────────────────────────────────────────────── +2026/03/22 12:19:17 ── Pipeline Health ────────────────────────────── +2026/03/22 12:19:17 [log_collector] {"stage_name":"log_collector","events_processed":36477,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7295.4,"last_update":"2026-03-22T12:19:12.368399143Z"} +2026/03/22 12:19:17 [metric_collector] {"stage_name":"metric_collector","events_processed":22664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4532.8,"last_update":"2026-03-22T12:19:12.36898172Z"} +2026/03/22 12:19:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:19:12.378315587Z"} +2026/03/22 12:19:17 [detection_layer] {"stage_name":"detection_layer","events_processed":752,"events_dropped":0,"avg_latency_ms":15.857117392666447,"throughput_eps":0,"last_update":"2026-03-22T12:19:12.479628314Z"} +2026/03/22 12:19:17 [transform_engine] {"stage_name":"transform_engine","events_processed":755,"events_dropped":0,"avg_latency_ms":392.40991568726406,"throughput_eps":0,"last_update":"2026-03-22T12:19:12.479642662Z"} +2026/03/22 12:19:17 ───────────────────────────────────────────────── +2026/03/22 12:19:22 ── Pipeline Health ────────────────────────────── +2026/03/22 12:19:22 [log_collector] {"stage_name":"log_collector","events_processed":36477,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7295.4,"last_update":"2026-03-22T12:19:17.368305884Z"} +2026/03/22 12:19:22 [metric_collector] {"stage_name":"metric_collector","events_processed":22669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4533.8,"last_update":"2026-03-22T12:19:17.368612701Z"} +2026/03/22 12:19:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:19:17.376827285Z"} +2026/03/22 12:19:22 [detection_layer] {"stage_name":"detection_layer","events_processed":752,"events_dropped":0,"avg_latency_ms":15.857117392666447,"throughput_eps":0,"last_update":"2026-03-22T12:19:17.479134257Z"} +2026/03/22 12:19:22 [transform_engine] {"stage_name":"transform_engine","events_processed":755,"events_dropped":0,"avg_latency_ms":392.40991568726406,"throughput_eps":0,"last_update":"2026-03-22T12:19:17.479148846Z"} +2026/03/22 12:19:22 ───────────────────────────────────────────────── +2026/03/22 12:19:27 ── Pipeline Health ────────────────────────────── +2026/03/22 12:19:27 [transform_engine] {"stage_name":"transform_engine","events_processed":755,"events_dropped":0,"avg_latency_ms":392.40991568726406,"throughput_eps":0,"last_update":"2026-03-22T12:19:22.479500652Z"} +2026/03/22 12:19:27 [log_collector] {"stage_name":"log_collector","events_processed":36502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7300.4,"last_update":"2026-03-22T12:19:27.368703634Z"} +2026/03/22 12:19:27 [metric_collector] {"stage_name":"metric_collector","events_processed":22674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4534.8,"last_update":"2026-03-22T12:19:22.368268404Z"} +2026/03/22 12:19:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9072,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:19:22.37641041Z"} +2026/03/22 12:19:27 [detection_layer] {"stage_name":"detection_layer","events_processed":752,"events_dropped":0,"avg_latency_ms":15.857117392666447,"throughput_eps":0,"last_update":"2026-03-22T12:19:22.479489991Z"} +2026/03/22 12:19:27 ───────────────────────────────────────────────── +2026/03/22 12:19:32 ── Pipeline Health ────────────────────────────── +2026/03/22 12:19:32 [log_collector] {"stage_name":"log_collector","events_processed":36502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7300.4,"last_update":"2026-03-22T12:19:32.368777355Z"} +2026/03/22 12:19:32 [metric_collector] {"stage_name":"metric_collector","events_processed":22679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4535.8,"last_update":"2026-03-22T12:19:27.368943573Z"} +2026/03/22 12:19:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:19:27.377108682Z"} +2026/03/22 12:19:32 [detection_layer] {"stage_name":"detection_layer","events_processed":752,"events_dropped":0,"avg_latency_ms":15.857117392666447,"throughput_eps":0,"last_update":"2026-03-22T12:19:27.479374285Z"} +2026/03/22 12:19:32 [transform_engine] {"stage_name":"transform_engine","events_processed":756,"events_dropped":0,"avg_latency_ms":335.6514983498113,"throughput_eps":0,"last_update":"2026-03-22T12:19:27.588008576Z"} +2026/03/22 12:19:32 ───────────────────────────────────────────────── +2026/03/22 12:19:37 ── Pipeline Health ────────────────────────────── +2026/03/22 12:19:37 [log_collector] {"stage_name":"log_collector","events_processed":36502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7300.4,"last_update":"2026-03-22T12:19:37.368464468Z"} +2026/03/22 12:19:37 [metric_collector] {"stage_name":"metric_collector","events_processed":22684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4536.8,"last_update":"2026-03-22T12:19:32.369073822Z"} +2026/03/22 12:19:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9076,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:19:32.377997885Z"} +2026/03/22 12:19:37 [detection_layer] {"stage_name":"detection_layer","events_processed":753,"events_dropped":0,"avg_latency_ms":15.68573611413316,"throughput_eps":0,"last_update":"2026-03-22T12:19:32.479209379Z"} +2026/03/22 12:19:37 [transform_engine] {"stage_name":"transform_engine","events_processed":756,"events_dropped":0,"avg_latency_ms":335.6514983498113,"throughput_eps":0,"last_update":"2026-03-22T12:19:32.479218416Z"} +2026/03/22 12:19:37 ───────────────────────────────────────────────── +2026/03/22 12:19:42 ── Pipeline Health ────────────────────────────── +2026/03/22 12:19:42 [detection_layer] {"stage_name":"detection_layer","events_processed":753,"events_dropped":0,"avg_latency_ms":15.68573611413316,"throughput_eps":0,"last_update":"2026-03-22T12:19:37.479696055Z"} +2026/03/22 12:19:42 [transform_engine] {"stage_name":"transform_engine","events_processed":756,"events_dropped":0,"avg_latency_ms":335.6514983498113,"throughput_eps":0,"last_update":"2026-03-22T12:19:37.479708489Z"} +2026/03/22 12:19:42 [log_collector] {"stage_name":"log_collector","events_processed":36502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7300.4,"last_update":"2026-03-22T12:19:37.368464468Z"} +2026/03/22 12:19:42 [metric_collector] {"stage_name":"metric_collector","events_processed":22689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4537.8,"last_update":"2026-03-22T12:19:37.368822304Z"} +2026/03/22 12:19:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:19:37.378392284Z"} +2026/03/22 12:19:42 ───────────────────────────────────────────────── +2026/03/22 12:19:47 ── Pipeline Health ────────────────────────────── +2026/03/22 12:19:47 [detection_layer] {"stage_name":"detection_layer","events_processed":753,"events_dropped":0,"avg_latency_ms":15.68573611413316,"throughput_eps":0,"last_update":"2026-03-22T12:19:42.479370647Z"} +2026/03/22 12:19:47 [transform_engine] {"stage_name":"transform_engine","events_processed":756,"events_dropped":0,"avg_latency_ms":335.6514983498113,"throughput_eps":0,"last_update":"2026-03-22T12:19:42.479382329Z"} +2026/03/22 12:19:47 [log_collector] {"stage_name":"log_collector","events_processed":36515,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7303,"last_update":"2026-03-22T12:19:42.368659538Z"} +2026/03/22 12:19:47 [metric_collector] {"stage_name":"metric_collector","events_processed":22694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4538.8,"last_update":"2026-03-22T12:19:42.369098568Z"} +2026/03/22 12:19:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:19:42.378083758Z"} +2026/03/22 12:19:47 ───────────────────────────────────────────────── +2026/03/22 12:19:52 ── Pipeline Health ────────────────────────────── +2026/03/22 12:19:52 [log_collector] {"stage_name":"log_collector","events_processed":36516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7303.2,"last_update":"2026-03-22T12:19:47.367977308Z"} +2026/03/22 12:19:52 [metric_collector] {"stage_name":"metric_collector","events_processed":22699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4539.8,"last_update":"2026-03-22T12:19:47.368489489Z"} +2026/03/22 12:19:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9082,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:19:47.377438048Z"} +2026/03/22 12:19:52 [detection_layer] {"stage_name":"detection_layer","events_processed":753,"events_dropped":0,"avg_latency_ms":15.68573611413316,"throughput_eps":0,"last_update":"2026-03-22T12:19:47.479811648Z"} +2026/03/22 12:19:52 [transform_engine] {"stage_name":"transform_engine","events_processed":756,"events_dropped":0,"avg_latency_ms":335.6514983498113,"throughput_eps":0,"last_update":"2026-03-22T12:19:47.479823812Z"} +2026/03/22 12:19:52 ───────────────────────────────────────────────── +Saved state: 24 clusters, 36527 messages, reason: none +2026/03/22 12:19:57 ── Pipeline Health ────────────────────────────── +2026/03/22 12:19:57 [log_collector] {"stage_name":"log_collector","events_processed":36526,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7305.2,"last_update":"2026-03-22T12:19:52.368010371Z"} +2026/03/22 12:19:57 [metric_collector] {"stage_name":"metric_collector","events_processed":22704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4540.8,"last_update":"2026-03-22T12:19:52.36877222Z"} +2026/03/22 12:19:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:19:52.378058276Z"} +2026/03/22 12:19:57 [detection_layer] {"stage_name":"detection_layer","events_processed":753,"events_dropped":0,"avg_latency_ms":15.68573611413316,"throughput_eps":0,"last_update":"2026-03-22T12:19:52.479262546Z"} +2026/03/22 12:19:57 [transform_engine] {"stage_name":"transform_engine","events_processed":756,"events_dropped":0,"avg_latency_ms":335.6514983498113,"throughput_eps":0,"last_update":"2026-03-22T12:19:52.479274279Z"} +2026/03/22 12:19:57 ───────────────────────────────────────────────── +2026/03/22 12:20:02 ── Pipeline Health ────────────────────────────── +2026/03/22 12:20:02 [log_collector] {"stage_name":"log_collector","events_processed":36541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7308.2,"last_update":"2026-03-22T12:19:57.368611997Z"} +2026/03/22 12:20:02 [metric_collector] {"stage_name":"metric_collector","events_processed":22709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4541.8,"last_update":"2026-03-22T12:19:57.369097126Z"} +2026/03/22 12:20:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:19:57.379010734Z"} +2026/03/22 12:20:02 [detection_layer] {"stage_name":"detection_layer","events_processed":753,"events_dropped":0,"avg_latency_ms":15.68573611413316,"throughput_eps":0,"last_update":"2026-03-22T12:19:57.479161827Z"} +2026/03/22 12:20:02 [transform_engine] {"stage_name":"transform_engine","events_processed":757,"events_dropped":0,"avg_latency_ms":291.543540279849,"throughput_eps":0,"last_update":"2026-03-22T12:19:57.59428684Z"} +2026/03/22 12:20:02 ───────────────────────────────────────────────── +2026/03/22 12:20:07 ── Pipeline Health ────────────────────────────── +2026/03/22 12:20:07 [log_collector] {"stage_name":"log_collector","events_processed":36541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7308.2,"last_update":"2026-03-22T12:20:02.369126488Z"} +2026/03/22 12:20:07 [metric_collector] {"stage_name":"metric_collector","events_processed":22714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4542.8,"last_update":"2026-03-22T12:20:02.369684476Z"} +2026/03/22 12:20:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:20:02.382736055Z"} +2026/03/22 12:20:07 [detection_layer] {"stage_name":"detection_layer","events_processed":754,"events_dropped":0,"avg_latency_ms":16.18618409130653,"throughput_eps":0,"last_update":"2026-03-22T12:20:02.478978822Z"} +2026/03/22 12:20:07 [transform_engine] {"stage_name":"transform_engine","events_processed":757,"events_dropped":0,"avg_latency_ms":291.543540279849,"throughput_eps":0,"last_update":"2026-03-22T12:20:02.47894649Z"} +2026/03/22 12:20:07 ───────────────────────────────────────────────── +2026/03/22 12:20:12 ── Pipeline Health ────────────────────────────── +2026/03/22 12:20:12 [log_collector] {"stage_name":"log_collector","events_processed":36541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7308.2,"last_update":"2026-03-22T12:20:07.368168181Z"} +2026/03/22 12:20:12 [metric_collector] {"stage_name":"metric_collector","events_processed":22719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4543.8,"last_update":"2026-03-22T12:20:07.368741339Z"} +2026/03/22 12:20:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:20:07.379826571Z"} +2026/03/22 12:20:12 [detection_layer] {"stage_name":"detection_layer","events_processed":754,"events_dropped":0,"avg_latency_ms":16.18618409130653,"throughput_eps":0,"last_update":"2026-03-22T12:20:07.479029138Z"} +2026/03/22 12:20:12 [transform_engine] {"stage_name":"transform_engine","events_processed":757,"events_dropped":0,"avg_latency_ms":291.543540279849,"throughput_eps":0,"last_update":"2026-03-22T12:20:07.478946039Z"} +2026/03/22 12:20:12 ───────────────────────────────────────────────── +2026/03/22 12:20:17 ── Pipeline Health ────────────────────────────── +2026/03/22 12:20:17 [log_collector] {"stage_name":"log_collector","events_processed":36541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7308.2,"last_update":"2026-03-22T12:20:12.368174546Z"} +2026/03/22 12:20:17 [metric_collector] {"stage_name":"metric_collector","events_processed":22724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4544.8,"last_update":"2026-03-22T12:20:12.368510509Z"} +2026/03/22 12:20:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:20:12.377557497Z"} +2026/03/22 12:20:17 [detection_layer] {"stage_name":"detection_layer","events_processed":754,"events_dropped":0,"avg_latency_ms":16.18618409130653,"throughput_eps":0,"last_update":"2026-03-22T12:20:12.479749058Z"} +2026/03/22 12:20:17 [transform_engine] {"stage_name":"transform_engine","events_processed":757,"events_dropped":0,"avg_latency_ms":291.543540279849,"throughput_eps":0,"last_update":"2026-03-22T12:20:12.479755812Z"} +2026/03/22 12:20:17 ───────────────────────────────────────────────── +2026/03/22 12:20:22 ── Pipeline Health ────────────────────────────── +2026/03/22 12:20:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:20:17.376566333Z"} +2026/03/22 12:20:22 [detection_layer] {"stage_name":"detection_layer","events_processed":754,"events_dropped":0,"avg_latency_ms":16.18618409130653,"throughput_eps":0,"last_update":"2026-03-22T12:20:17.479928417Z"} +2026/03/22 12:20:22 [transform_engine] {"stage_name":"transform_engine","events_processed":757,"events_dropped":0,"avg_latency_ms":291.543540279849,"throughput_eps":0,"last_update":"2026-03-22T12:20:17.479941392Z"} +2026/03/22 12:20:22 [log_collector] {"stage_name":"log_collector","events_processed":36541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7308.2,"last_update":"2026-03-22T12:20:17.367998192Z"} +2026/03/22 12:20:22 [metric_collector] {"stage_name":"metric_collector","events_processed":22729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4545.8,"last_update":"2026-03-22T12:20:17.36884776Z"} +2026/03/22 12:20:22 ───────────────────────────────────────────────── +2026/03/22 12:20:27 ── Pipeline Health ────────────────────────────── +2026/03/22 12:20:27 [log_collector] {"stage_name":"log_collector","events_processed":36546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7309.2,"last_update":"2026-03-22T12:20:22.368721584Z"} +2026/03/22 12:20:27 [metric_collector] {"stage_name":"metric_collector","events_processed":22739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4547.8,"last_update":"2026-03-22T12:20:27.36899099Z"} +2026/03/22 12:20:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:20:22.378460849Z"} +2026/03/22 12:20:27 [detection_layer] {"stage_name":"detection_layer","events_processed":754,"events_dropped":0,"avg_latency_ms":16.18618409130653,"throughput_eps":0,"last_update":"2026-03-22T12:20:22.479814625Z"} +2026/03/22 12:20:27 [transform_engine] {"stage_name":"transform_engine","events_processed":757,"events_dropped":0,"avg_latency_ms":291.543540279849,"throughput_eps":0,"last_update":"2026-03-22T12:20:22.479927492Z"} +2026/03/22 12:20:27 ───────────────────────────────────────────────── +2026/03/22 12:20:32 ── Pipeline Health ────────────────────────────── +2026/03/22 12:20:32 [metric_collector] {"stage_name":"metric_collector","events_processed":22739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4547.8,"last_update":"2026-03-22T12:20:27.36899099Z"} +2026/03/22 12:20:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:20:27.375482724Z"} +2026/03/22 12:20:32 [detection_layer] {"stage_name":"detection_layer","events_processed":754,"events_dropped":0,"avg_latency_ms":16.18618409130653,"throughput_eps":0,"last_update":"2026-03-22T12:20:27.479859742Z"} +2026/03/22 12:20:32 [transform_engine] {"stage_name":"transform_engine","events_processed":757,"events_dropped":0,"avg_latency_ms":291.543540279849,"throughput_eps":0,"last_update":"2026-03-22T12:20:27.479811299Z"} +2026/03/22 12:20:32 [log_collector] {"stage_name":"log_collector","events_processed":36561,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7312.2,"last_update":"2026-03-22T12:20:27.369000889Z"} +2026/03/22 12:20:32 ───────────────────────────────────────────────── +2026/03/22 12:20:37 ── Pipeline Health ────────────────────────────── +2026/03/22 12:20:37 [metric_collector] {"stage_name":"metric_collector","events_processed":22744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4548.8,"last_update":"2026-03-22T12:20:32.368400832Z"} +2026/03/22 12:20:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:20:32.377571958Z"} +2026/03/22 12:20:37 [detection_layer] {"stage_name":"detection_layer","events_processed":755,"events_dropped":0,"avg_latency_ms":16.412583273045225,"throughput_eps":0,"last_update":"2026-03-22T12:20:32.479769601Z"} +2026/03/22 12:20:37 [transform_engine] {"stage_name":"transform_engine","events_processed":758,"events_dropped":0,"avg_latency_ms":255.02374922387924,"throughput_eps":0,"last_update":"2026-03-22T12:20:32.479779361Z"} +2026/03/22 12:20:37 [log_collector] {"stage_name":"log_collector","events_processed":36566,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7313.2,"last_update":"2026-03-22T12:20:32.367982471Z"} +2026/03/22 12:20:37 ───────────────────────────────────────────────── +2026/03/22 12:20:42 ── Pipeline Health ────────────────────────────── +2026/03/22 12:20:42 [transform_engine] {"stage_name":"transform_engine","events_processed":758,"events_dropped":0,"avg_latency_ms":255.02374922387924,"throughput_eps":0,"last_update":"2026-03-22T12:20:37.478839144Z"} +2026/03/22 12:20:42 [log_collector] {"stage_name":"log_collector","events_processed":36566,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7313.2,"last_update":"2026-03-22T12:20:37.368728794Z"} +2026/03/22 12:20:42 [metric_collector] {"stage_name":"metric_collector","events_processed":22749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4549.8,"last_update":"2026-03-22T12:20:37.369377316Z"} +2026/03/22 12:20:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:20:37.378634467Z"} +2026/03/22 12:20:42 [detection_layer] {"stage_name":"detection_layer","events_processed":755,"events_dropped":0,"avg_latency_ms":16.412583273045225,"throughput_eps":0,"last_update":"2026-03-22T12:20:37.478973411Z"} +2026/03/22 12:20:42 ───────────────────────────────────────────────── +2026/03/22 12:20:47 ── Pipeline Health ────────────────────────────── +2026/03/22 12:20:47 [log_collector] {"stage_name":"log_collector","events_processed":36566,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7313.2,"last_update":"2026-03-22T12:20:42.368037287Z"} +2026/03/22 12:20:47 [metric_collector] {"stage_name":"metric_collector","events_processed":22754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4550.8,"last_update":"2026-03-22T12:20:42.368575879Z"} +2026/03/22 12:20:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:20:42.37761929Z"} +2026/03/22 12:20:47 [detection_layer] {"stage_name":"detection_layer","events_processed":755,"events_dropped":0,"avg_latency_ms":16.412583273045225,"throughput_eps":0,"last_update":"2026-03-22T12:20:42.479999152Z"} +2026/03/22 12:20:47 [transform_engine] {"stage_name":"transform_engine","events_processed":758,"events_dropped":0,"avg_latency_ms":255.02374922387924,"throughput_eps":0,"last_update":"2026-03-22T12:20:42.47882865Z"} +2026/03/22 12:20:47 ───────────────────────────────────────────────── +2026/03/22 12:20:52 ── Pipeline Health ────────────────────────────── +2026/03/22 12:20:52 [log_collector] {"stage_name":"log_collector","events_processed":36571,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7314.2,"last_update":"2026-03-22T12:20:47.368592992Z"} +2026/03/22 12:20:52 [metric_collector] {"stage_name":"metric_collector","events_processed":22759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4551.8,"last_update":"2026-03-22T12:20:47.368781463Z"} +2026/03/22 12:20:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:20:47.37852227Z"} +2026/03/22 12:20:52 [detection_layer] {"stage_name":"detection_layer","events_processed":755,"events_dropped":0,"avg_latency_ms":16.412583273045225,"throughput_eps":0,"last_update":"2026-03-22T12:20:47.47969976Z"} +2026/03/22 12:20:52 [transform_engine] {"stage_name":"transform_engine","events_processed":758,"events_dropped":0,"avg_latency_ms":255.02374922387924,"throughput_eps":0,"last_update":"2026-03-22T12:20:47.479711692Z"} +2026/03/22 12:20:52 ───────────────────────────────────────────────── +Saved state: 24 clusters, 36582 messages, reason: none +2026/03/22 12:20:57 ── Pipeline Health ────────────────────────────── +2026/03/22 12:20:57 [log_collector] {"stage_name":"log_collector","events_processed":36571,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7314.2,"last_update":"2026-03-22T12:20:52.368858312Z"} +2026/03/22 12:20:57 [metric_collector] {"stage_name":"metric_collector","events_processed":22764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4552.8,"last_update":"2026-03-22T12:20:52.368271969Z"} +2026/03/22 12:20:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:20:52.380878816Z"} +2026/03/22 12:20:57 [detection_layer] {"stage_name":"detection_layer","events_processed":755,"events_dropped":0,"avg_latency_ms":16.412583273045225,"throughput_eps":0,"last_update":"2026-03-22T12:20:52.478992417Z"} +2026/03/22 12:20:57 [transform_engine] {"stage_name":"transform_engine","events_processed":758,"events_dropped":0,"avg_latency_ms":255.02374922387924,"throughput_eps":0,"last_update":"2026-03-22T12:20:52.478945107Z"} +2026/03/22 12:20:57 ───────────────────────────────────────────────── +2026/03/22 12:21:02 ── Pipeline Health ────────────────────────────── +2026/03/22 12:21:02 [log_collector] {"stage_name":"log_collector","events_processed":36596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7319.2,"last_update":"2026-03-22T12:20:57.368498999Z"} +2026/03/22 12:21:02 [metric_collector] {"stage_name":"metric_collector","events_processed":22768,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4553.6,"last_update":"2026-03-22T12:20:57.368521251Z"} +2026/03/22 12:21:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:20:57.377295196Z"} +2026/03/22 12:21:02 [detection_layer] {"stage_name":"detection_layer","events_processed":755,"events_dropped":0,"avg_latency_ms":16.412583273045225,"throughput_eps":0,"last_update":"2026-03-22T12:20:57.479504954Z"} +2026/03/22 12:21:02 [transform_engine] {"stage_name":"transform_engine","events_processed":759,"events_dropped":0,"avg_latency_ms":237.40726157910342,"throughput_eps":0,"last_update":"2026-03-22T12:20:57.646461123Z"} +2026/03/22 12:21:02 ───────────────────────────────────────────────── +2026/03/22 12:21:07 ── Pipeline Health ────────────────────────────── +2026/03/22 12:21:07 [log_collector] {"stage_name":"log_collector","events_processed":36596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7319.2,"last_update":"2026-03-22T12:21:02.368654865Z"} +2026/03/22 12:21:07 [metric_collector] {"stage_name":"metric_collector","events_processed":22774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4554.8,"last_update":"2026-03-22T12:21:02.368706835Z"} +2026/03/22 12:21:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:21:02.380405141Z"} +2026/03/22 12:21:07 [detection_layer] {"stage_name":"detection_layer","events_processed":756,"events_dropped":0,"avg_latency_ms":15.752888218436182,"throughput_eps":0,"last_update":"2026-03-22T12:21:02.479125735Z"} +2026/03/22 12:21:07 [transform_engine] {"stage_name":"transform_engine","events_processed":759,"events_dropped":0,"avg_latency_ms":237.40726157910342,"throughput_eps":0,"last_update":"2026-03-22T12:21:02.479140613Z"} +2026/03/22 12:21:07 ───────────────────────────────────────────────── +2026/03/22 12:21:12 ── Pipeline Health ────────────────────────────── +2026/03/22 12:21:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:21:07.375544661Z"} +2026/03/22 12:21:12 [detection_layer] {"stage_name":"detection_layer","events_processed":756,"events_dropped":0,"avg_latency_ms":15.752888218436182,"throughput_eps":0,"last_update":"2026-03-22T12:21:07.479997144Z"} +2026/03/22 12:21:12 [transform_engine] {"stage_name":"transform_engine","events_processed":759,"events_dropped":0,"avg_latency_ms":237.40726157910342,"throughput_eps":0,"last_update":"2026-03-22T12:21:07.480035688Z"} +2026/03/22 12:21:12 [log_collector] {"stage_name":"log_collector","events_processed":36596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7319.2,"last_update":"2026-03-22T12:21:07.368429313Z"} +2026/03/22 12:21:12 [metric_collector] {"stage_name":"metric_collector","events_processed":22779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4555.8,"last_update":"2026-03-22T12:21:07.368696765Z"} +2026/03/22 12:21:12 ───────────────────────────────────────────────── +2026/03/22 12:21:17 ── Pipeline Health ────────────────────────────── +2026/03/22 12:21:17 [log_collector] {"stage_name":"log_collector","events_processed":36596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7319.2,"last_update":"2026-03-22T12:21:12.368470264Z"} +2026/03/22 12:21:17 [metric_collector] {"stage_name":"metric_collector","events_processed":22784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4556.8,"last_update":"2026-03-22T12:21:12.368855251Z"} +2026/03/22 12:21:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:21:12.3753025Z"} +2026/03/22 12:21:17 [detection_layer] {"stage_name":"detection_layer","events_processed":756,"events_dropped":0,"avg_latency_ms":15.752888218436182,"throughput_eps":0,"last_update":"2026-03-22T12:21:12.479665852Z"} +2026/03/22 12:21:17 [transform_engine] {"stage_name":"transform_engine","events_processed":759,"events_dropped":0,"avg_latency_ms":237.40726157910342,"throughput_eps":0,"last_update":"2026-03-22T12:21:12.479708484Z"} +2026/03/22 12:21:17 ───────────────────────────────────────────────── +2026/03/22 12:21:22 ── Pipeline Health ────────────────────────────── +2026/03/22 12:21:22 [log_collector] {"stage_name":"log_collector","events_processed":36596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7319.2,"last_update":"2026-03-22T12:21:17.368069931Z"} +2026/03/22 12:21:22 [metric_collector] {"stage_name":"metric_collector","events_processed":22789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4557.8,"last_update":"2026-03-22T12:21:17.36831456Z"} +2026/03/22 12:21:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:21:17.375268719Z"} +2026/03/22 12:21:22 [detection_layer] {"stage_name":"detection_layer","events_processed":756,"events_dropped":0,"avg_latency_ms":15.752888218436182,"throughput_eps":0,"last_update":"2026-03-22T12:21:17.479492825Z"} +2026/03/22 12:21:22 [transform_engine] {"stage_name":"transform_engine","events_processed":759,"events_dropped":0,"avg_latency_ms":237.40726157910342,"throughput_eps":0,"last_update":"2026-03-22T12:21:17.479477406Z"} +2026/03/22 12:21:22 ───────────────────────────────────────────────── +2026/03/22 12:21:27 ── Pipeline Health ────────────────────────────── +2026/03/22 12:21:27 [transform_engine] {"stage_name":"transform_engine","events_processed":759,"events_dropped":0,"avg_latency_ms":237.40726157910342,"throughput_eps":0,"last_update":"2026-03-22T12:21:22.479786293Z"} +2026/03/22 12:21:27 [log_collector] {"stage_name":"log_collector","events_processed":36596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7319.2,"last_update":"2026-03-22T12:21:22.367965378Z"} +2026/03/22 12:21:27 [metric_collector] {"stage_name":"metric_collector","events_processed":22794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4558.8,"last_update":"2026-03-22T12:21:22.368203765Z"} +2026/03/22 12:21:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:21:22.37554182Z"} +2026/03/22 12:21:27 [detection_layer] {"stage_name":"detection_layer","events_processed":756,"events_dropped":0,"avg_latency_ms":15.752888218436182,"throughput_eps":0,"last_update":"2026-03-22T12:21:22.47981045Z"} +2026/03/22 12:21:27 ───────────────────────────────────────────────── +2026/03/22 12:21:32 ── Pipeline Health ────────────────────────────── +2026/03/22 12:21:32 [detection_layer] {"stage_name":"detection_layer","events_processed":756,"events_dropped":0,"avg_latency_ms":15.752888218436182,"throughput_eps":0,"last_update":"2026-03-22T12:21:27.479663749Z"} +2026/03/22 12:21:32 [transform_engine] {"stage_name":"transform_engine","events_processed":759,"events_dropped":0,"avg_latency_ms":237.40726157910342,"throughput_eps":0,"last_update":"2026-03-22T12:21:27.479688957Z"} +2026/03/22 12:21:32 [log_collector] {"stage_name":"log_collector","events_processed":36606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7321.2,"last_update":"2026-03-22T12:21:27.368704343Z"} +2026/03/22 12:21:32 [metric_collector] {"stage_name":"metric_collector","events_processed":22799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4559.8,"last_update":"2026-03-22T12:21:27.368923703Z"} +2026/03/22 12:21:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9122,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:21:27.376408449Z"} +2026/03/22 12:21:32 ───────────────────────────────────────────────── +2026/03/22 12:21:37 ── Pipeline Health ────────────────────────────── +2026/03/22 12:21:37 [log_collector] {"stage_name":"log_collector","events_processed":36615,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7323,"last_update":"2026-03-22T12:21:32.368629221Z"} +2026/03/22 12:21:37 [metric_collector] {"stage_name":"metric_collector","events_processed":22804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4560.8,"last_update":"2026-03-22T12:21:32.368986576Z"} +2026/03/22 12:21:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:21:32.380092648Z"} +2026/03/22 12:21:37 [detection_layer] {"stage_name":"detection_layer","events_processed":757,"events_dropped":0,"avg_latency_ms":16.491074974748948,"throughput_eps":0,"last_update":"2026-03-22T12:21:32.479317348Z"} +2026/03/22 12:21:37 [transform_engine] {"stage_name":"transform_engine","events_processed":760,"events_dropped":0,"avg_latency_ms":261.12067626328275,"throughput_eps":0,"last_update":"2026-03-22T12:21:32.479292099Z"} +2026/03/22 12:21:37 ───────────────────────────────────────────────── +2026/03/22 12:21:42 ── Pipeline Health ────────────────────────────── +2026/03/22 12:21:42 [log_collector] {"stage_name":"log_collector","events_processed":36937,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7387.4,"last_update":"2026-03-22T12:21:42.36889391Z"} +2026/03/22 12:21:42 [metric_collector] {"stage_name":"metric_collector","events_processed":22809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4561.8,"last_update":"2026-03-22T12:21:37.368560785Z"} +2026/03/22 12:21:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9126,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:21:37.376146535Z"} +2026/03/22 12:21:42 [detection_layer] {"stage_name":"detection_layer","events_processed":757,"events_dropped":0,"avg_latency_ms":16.491074974748948,"throughput_eps":0,"last_update":"2026-03-22T12:21:37.479098253Z"} +2026/03/22 12:21:42 [transform_engine] {"stage_name":"transform_engine","events_processed":760,"events_dropped":0,"avg_latency_ms":261.12067626328275,"throughput_eps":0,"last_update":"2026-03-22T12:21:37.479136446Z"} +2026/03/22 12:21:42 ───────────────────────────────────────────────── +2026/03/22 12:21:47 ── Pipeline Health ────────────────────────────── +2026/03/22 12:21:47 [log_collector] {"stage_name":"log_collector","events_processed":36937,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7387.4,"last_update":"2026-03-22T12:21:42.36889391Z"} +2026/03/22 12:21:47 [metric_collector] {"stage_name":"metric_collector","events_processed":22814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4562.8,"last_update":"2026-03-22T12:21:42.369205417Z"} +2026/03/22 12:21:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9128,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:21:42.376548571Z"} +2026/03/22 12:21:47 [detection_layer] {"stage_name":"detection_layer","events_processed":757,"events_dropped":0,"avg_latency_ms":16.491074974748948,"throughput_eps":0,"last_update":"2026-03-22T12:21:42.479858586Z"} +2026/03/22 12:21:47 [transform_engine] {"stage_name":"transform_engine","events_processed":760,"events_dropped":0,"avg_latency_ms":261.12067626328275,"throughput_eps":0,"last_update":"2026-03-22T12:21:42.479814833Z"} +2026/03/22 12:21:47 ───────────────────────────────────────────────── +2026/03/22 12:21:52 ── Pipeline Health ────────────────────────────── +2026/03/22 12:21:52 [transform_engine] {"stage_name":"transform_engine","events_processed":760,"events_dropped":0,"avg_latency_ms":261.12067626328275,"throughput_eps":0,"last_update":"2026-03-22T12:21:47.479911969Z"} +2026/03/22 12:21:52 [log_collector] {"stage_name":"log_collector","events_processed":36991,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7398.2,"last_update":"2026-03-22T12:21:47.368193879Z"} +2026/03/22 12:21:52 [metric_collector] {"stage_name":"metric_collector","events_processed":22819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4563.8,"last_update":"2026-03-22T12:21:47.368816642Z"} +2026/03/22 12:21:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9130,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:21:47.378598697Z"} +2026/03/22 12:21:52 [detection_layer] {"stage_name":"detection_layer","events_processed":757,"events_dropped":0,"avg_latency_ms":16.491074974748948,"throughput_eps":0,"last_update":"2026-03-22T12:21:47.479878594Z"} +2026/03/22 12:21:52 ───────────────────────────────────────────────── +Saved state: 24 clusters, 36997 messages, reason: none +2026/03/22 12:21:57 ── Pipeline Health ────────────────────────────── +2026/03/22 12:21:57 [detection_layer] {"stage_name":"detection_layer","events_processed":757,"events_dropped":0,"avg_latency_ms":16.491074974748948,"throughput_eps":0,"last_update":"2026-03-22T12:21:52.479432641Z"} +2026/03/22 12:21:57 [transform_engine] {"stage_name":"transform_engine","events_processed":760,"events_dropped":0,"avg_latency_ms":261.12067626328275,"throughput_eps":0,"last_update":"2026-03-22T12:21:52.479388586Z"} +2026/03/22 12:21:57 [log_collector] {"stage_name":"log_collector","events_processed":36991,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7398.2,"last_update":"2026-03-22T12:21:52.368447135Z"} +2026/03/22 12:21:57 [metric_collector] {"stage_name":"metric_collector","events_processed":22824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4564.8,"last_update":"2026-03-22T12:21:52.36908671Z"} +2026/03/22 12:21:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:21:52.378159187Z"} +2026/03/22 12:21:57 ───────────────────────────────────────────────── +2026/03/22 12:22:02 ── Pipeline Health ────────────────────────────── +2026/03/22 12:22:02 [log_collector] {"stage_name":"log_collector","events_processed":37001,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7400.2,"last_update":"2026-03-22T12:21:57.367976226Z"} +2026/03/22 12:22:02 [metric_collector] {"stage_name":"metric_collector","events_processed":22829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4565.8,"last_update":"2026-03-22T12:21:57.368233419Z"} +2026/03/22 12:22:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:21:57.377161329Z"} +2026/03/22 12:22:02 [detection_layer] {"stage_name":"detection_layer","events_processed":757,"events_dropped":0,"avg_latency_ms":16.491074974748948,"throughput_eps":0,"last_update":"2026-03-22T12:21:57.479377138Z"} +2026/03/22 12:22:02 [transform_engine] {"stage_name":"transform_engine","events_processed":761,"events_dropped":0,"avg_latency_ms":236.4928356106262,"throughput_eps":0,"last_update":"2026-03-22T12:21:57.617411472Z"} +2026/03/22 12:22:02 ───────────────────────────────────────────────── +2026/03/22 12:22:07 ── Pipeline Health ────────────────────────────── +2026/03/22 12:22:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:22:02.377495695Z"} +2026/03/22 12:22:07 [detection_layer] {"stage_name":"detection_layer","events_processed":758,"events_dropped":0,"avg_latency_ms":17.52846017979916,"throughput_eps":0,"last_update":"2026-03-22T12:22:02.479896058Z"} +2026/03/22 12:22:07 [transform_engine] {"stage_name":"transform_engine","events_processed":761,"events_dropped":0,"avg_latency_ms":236.4928356106262,"throughput_eps":0,"last_update":"2026-03-22T12:22:02.479883213Z"} +2026/03/22 12:22:07 [log_collector] {"stage_name":"log_collector","events_processed":37019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7403.8,"last_update":"2026-03-22T12:22:07.368388008Z"} +2026/03/22 12:22:07 [metric_collector] {"stage_name":"metric_collector","events_processed":22834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4566.8,"last_update":"2026-03-22T12:22:02.368252912Z"} +2026/03/22 12:22:07 ───────────────────────────────────────────────── +2026/03/22 12:22:12 ── Pipeline Health ────────────────────────────── +2026/03/22 12:22:12 [transform_engine] {"stage_name":"transform_engine","events_processed":761,"events_dropped":0,"avg_latency_ms":236.4928356106262,"throughput_eps":0,"last_update":"2026-03-22T12:22:07.479241121Z"} +2026/03/22 12:22:12 [log_collector] {"stage_name":"log_collector","events_processed":37019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7403.8,"last_update":"2026-03-22T12:22:07.368388008Z"} +2026/03/22 12:22:12 [metric_collector] {"stage_name":"metric_collector","events_processed":22839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4567.8,"last_update":"2026-03-22T12:22:07.368705927Z"} +2026/03/22 12:22:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:22:07.378075764Z"} +2026/03/22 12:22:12 [detection_layer] {"stage_name":"detection_layer","events_processed":758,"events_dropped":0,"avg_latency_ms":17.52846017979916,"throughput_eps":0,"last_update":"2026-03-22T12:22:07.479221413Z"} +2026/03/22 12:22:12 ───────────────────────────────────────────────── +2026/03/22 12:22:17 ── Pipeline Health ────────────────────────────── +2026/03/22 12:22:17 [log_collector] {"stage_name":"log_collector","events_processed":37030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7406,"last_update":"2026-03-22T12:22:17.368628982Z"} +2026/03/22 12:22:17 [metric_collector] {"stage_name":"metric_collector","events_processed":22844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4568.8,"last_update":"2026-03-22T12:22:12.36925542Z"} +2026/03/22 12:22:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:22:12.374871316Z"} +2026/03/22 12:22:17 [detection_layer] {"stage_name":"detection_layer","events_processed":758,"events_dropped":0,"avg_latency_ms":17.52846017979916,"throughput_eps":0,"last_update":"2026-03-22T12:22:12.479183792Z"} +2026/03/22 12:22:17 [transform_engine] {"stage_name":"transform_engine","events_processed":761,"events_dropped":0,"avg_latency_ms":236.4928356106262,"throughput_eps":0,"last_update":"2026-03-22T12:22:12.479165807Z"} +2026/03/22 12:22:17 ───────────────────────────────────────────────── +2026/03/22 12:22:22 ── Pipeline Health ────────────────────────────── +2026/03/22 12:22:22 [transform_engine] {"stage_name":"transform_engine","events_processed":761,"events_dropped":0,"avg_latency_ms":236.4928356106262,"throughput_eps":0,"last_update":"2026-03-22T12:22:17.47887922Z"} +2026/03/22 12:22:22 [log_collector] {"stage_name":"log_collector","events_processed":37030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7406,"last_update":"2026-03-22T12:22:17.368628982Z"} +2026/03/22 12:22:22 [metric_collector] {"stage_name":"metric_collector","events_processed":22849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4569.8,"last_update":"2026-03-22T12:22:17.368804568Z"} +2026/03/22 12:22:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:22:17.375732257Z"} +2026/03/22 12:22:22 [detection_layer] {"stage_name":"detection_layer","events_processed":758,"events_dropped":0,"avg_latency_ms":17.52846017979916,"throughput_eps":0,"last_update":"2026-03-22T12:22:17.478949354Z"} +2026/03/22 12:22:22 ───────────────────────────────────────────────── +2026/03/22 12:22:27 ── Pipeline Health ────────────────────────────── +2026/03/22 12:22:27 [transform_engine] {"stage_name":"transform_engine","events_processed":761,"events_dropped":0,"avg_latency_ms":236.4928356106262,"throughput_eps":0,"last_update":"2026-03-22T12:22:22.479097952Z"} +2026/03/22 12:22:27 [log_collector] {"stage_name":"log_collector","events_processed":37038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7407.6,"last_update":"2026-03-22T12:22:22.368137364Z"} +2026/03/22 12:22:27 [metric_collector] {"stage_name":"metric_collector","events_processed":22854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4570.8,"last_update":"2026-03-22T12:22:22.368337507Z"} +2026/03/22 12:22:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:22:22.374755811Z"} +2026/03/22 12:22:27 [detection_layer] {"stage_name":"detection_layer","events_processed":758,"events_dropped":0,"avg_latency_ms":17.52846017979916,"throughput_eps":0,"last_update":"2026-03-22T12:22:22.479085429Z"} +2026/03/22 12:22:27 ───────────────────────────────────────────────── +2026/03/22 12:22:32 ── Pipeline Health ────────────────────────────── +2026/03/22 12:22:32 [transform_engine] {"stage_name":"transform_engine","events_processed":762,"events_dropped":0,"avg_latency_ms":214.82350768850097,"throughput_eps":0,"last_update":"2026-03-22T12:22:27.607068559Z"} +2026/03/22 12:22:32 [log_collector] {"stage_name":"log_collector","events_processed":37056,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7411.2,"last_update":"2026-03-22T12:22:27.369145392Z"} +2026/03/22 12:22:32 [metric_collector] {"stage_name":"metric_collector","events_processed":22859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4571.8,"last_update":"2026-03-22T12:22:27.36919133Z"} +2026/03/22 12:22:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:22:27.379770893Z"} +2026/03/22 12:22:32 [detection_layer] {"stage_name":"detection_layer","events_processed":758,"events_dropped":0,"avg_latency_ms":17.52846017979916,"throughput_eps":0,"last_update":"2026-03-22T12:22:27.478996876Z"} +2026/03/22 12:22:32 ───────────────────────────────────────────────── +2026/03/22 12:22:37 ── Pipeline Health ────────────────────────────── +2026/03/22 12:22:37 [log_collector] {"stage_name":"log_collector","events_processed":37071,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7414.2,"last_update":"2026-03-22T12:22:32.368673014Z"} +2026/03/22 12:22:37 [metric_collector] {"stage_name":"metric_collector","events_processed":22864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4572.8,"last_update":"2026-03-22T12:22:32.369021492Z"} +2026/03/22 12:22:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:22:32.377867875Z"} +2026/03/22 12:22:37 [detection_layer] {"stage_name":"detection_layer","events_processed":759,"events_dropped":0,"avg_latency_ms":17.811120343839328,"throughput_eps":0,"last_update":"2026-03-22T12:22:32.479077999Z"} +2026/03/22 12:22:37 [transform_engine] {"stage_name":"transform_engine","events_processed":762,"events_dropped":0,"avg_latency_ms":214.82350768850097,"throughput_eps":0,"last_update":"2026-03-22T12:22:32.479088409Z"} +2026/03/22 12:22:37 ───────────────────────────────────────────────── +2026/03/22 12:22:42 ── Pipeline Health ────────────────────────────── +2026/03/22 12:22:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:22:37.374431534Z"} +2026/03/22 12:22:42 [detection_layer] {"stage_name":"detection_layer","events_processed":759,"events_dropped":0,"avg_latency_ms":17.811120343839328,"throughput_eps":0,"last_update":"2026-03-22T12:22:37.479721673Z"} +2026/03/22 12:22:42 [transform_engine] {"stage_name":"transform_engine","events_processed":762,"events_dropped":0,"avg_latency_ms":214.82350768850097,"throughput_eps":0,"last_update":"2026-03-22T12:22:37.479734527Z"} +2026/03/22 12:22:42 [log_collector] {"stage_name":"log_collector","events_processed":37071,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7414.2,"last_update":"2026-03-22T12:22:37.36857675Z"} +2026/03/22 12:22:42 [metric_collector] {"stage_name":"metric_collector","events_processed":22869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4573.8,"last_update":"2026-03-22T12:22:37.368976045Z"} +2026/03/22 12:22:42 ───────────────────────────────────────────────── +2026/03/22 12:22:47 ── Pipeline Health ────────────────────────────── +2026/03/22 12:22:47 [detection_layer] {"stage_name":"detection_layer","events_processed":759,"events_dropped":0,"avg_latency_ms":17.811120343839328,"throughput_eps":0,"last_update":"2026-03-22T12:22:42.479400048Z"} +2026/03/22 12:22:47 [transform_engine] {"stage_name":"transform_engine","events_processed":762,"events_dropped":0,"avg_latency_ms":214.82350768850097,"throughput_eps":0,"last_update":"2026-03-22T12:22:42.479382163Z"} +2026/03/22 12:22:47 [log_collector] {"stage_name":"log_collector","events_processed":37071,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7414.2,"last_update":"2026-03-22T12:22:42.36859149Z"} +2026/03/22 12:22:47 [metric_collector] {"stage_name":"metric_collector","events_processed":22874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4574.8,"last_update":"2026-03-22T12:22:42.368929929Z"} +2026/03/22 12:22:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:22:42.377996314Z"} +2026/03/22 12:22:47 ───────────────────────────────────────────────── +2026/03/22 12:22:52 ── Pipeline Health ────────────────────────────── +2026/03/22 12:22:52 [transform_engine] {"stage_name":"transform_engine","events_processed":762,"events_dropped":0,"avg_latency_ms":214.82350768850097,"throughput_eps":0,"last_update":"2026-03-22T12:22:47.479401877Z"} +2026/03/22 12:22:52 [log_collector] {"stage_name":"log_collector","events_processed":37071,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7414.2,"last_update":"2026-03-22T12:22:47.368292002Z"} +2026/03/22 12:22:52 [metric_collector] {"stage_name":"metric_collector","events_processed":22879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4575.8,"last_update":"2026-03-22T12:22:47.368863947Z"} +2026/03/22 12:22:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:22:47.377168343Z"} +2026/03/22 12:22:52 [detection_layer] {"stage_name":"detection_layer","events_processed":759,"events_dropped":0,"avg_latency_ms":17.811120343839328,"throughput_eps":0,"last_update":"2026-03-22T12:22:47.479392148Z"} +2026/03/22 12:22:52 ───────────────────────────────────────────────── +2026/03/22 12:22:57 ── Pipeline Health ────────────────────────────── +2026/03/22 12:22:57 [metric_collector] {"stage_name":"metric_collector","events_processed":22884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4576.8,"last_update":"2026-03-22T12:22:52.368416868Z"} +2026/03/22 12:22:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:22:52.375784651Z"} +2026/03/22 12:22:57 [detection_layer] {"stage_name":"detection_layer","events_processed":759,"events_dropped":0,"avg_latency_ms":17.811120343839328,"throughput_eps":0,"last_update":"2026-03-22T12:22:52.478953716Z"} +2026/03/22 12:22:57 [transform_engine] {"stage_name":"transform_engine","events_processed":762,"events_dropped":0,"avg_latency_ms":214.82350768850097,"throughput_eps":0,"last_update":"2026-03-22T12:22:52.47891958Z"} +2026/03/22 12:22:57 [log_collector] {"stage_name":"log_collector","events_processed":37071,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7414.2,"last_update":"2026-03-22T12:22:52.368058812Z"} +2026/03/22 12:22:57 ───────────────────────────────────────────────── +Saved state: 24 clusters, 37072 messages, reason: none +2026/03/22 12:23:02 ── Pipeline Health ────────────────────────────── +2026/03/22 12:23:02 [log_collector] {"stage_name":"log_collector","events_processed":37091,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7418.2,"last_update":"2026-03-22T12:23:02.368304082Z"} +2026/03/22 12:23:02 [metric_collector] {"stage_name":"metric_collector","events_processed":22889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4577.8,"last_update":"2026-03-22T12:22:57.369152215Z"} +2026/03/22 12:23:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:22:57.37816053Z"} +2026/03/22 12:23:02 [detection_layer] {"stage_name":"detection_layer","events_processed":759,"events_dropped":0,"avg_latency_ms":17.811120343839328,"throughput_eps":0,"last_update":"2026-03-22T12:22:57.479382416Z"} +2026/03/22 12:23:02 [transform_engine] {"stage_name":"transform_engine","events_processed":763,"events_dropped":0,"avg_latency_ms":202.59729535080078,"throughput_eps":0,"last_update":"2026-03-22T12:22:57.633092776Z"} +2026/03/22 12:23:02 ───────────────────────────────────────────────── +2026/03/22 12:23:07 ── Pipeline Health ────────────────────────────── +2026/03/22 12:23:07 [log_collector] {"stage_name":"log_collector","events_processed":37096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7419.2,"last_update":"2026-03-22T12:23:07.367977179Z"} +2026/03/22 12:23:07 [metric_collector] {"stage_name":"metric_collector","events_processed":22894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4578.8,"last_update":"2026-03-22T12:23:02.368762019Z"} +2026/03/22 12:23:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:23:02.37736166Z"} +2026/03/22 12:23:07 [detection_layer] {"stage_name":"detection_layer","events_processed":760,"events_dropped":0,"avg_latency_ms":18.547000675071462,"throughput_eps":0,"last_update":"2026-03-22T12:23:02.479633648Z"} +2026/03/22 12:23:07 [transform_engine] {"stage_name":"transform_engine","events_processed":763,"events_dropped":0,"avg_latency_ms":202.59729535080078,"throughput_eps":0,"last_update":"2026-03-22T12:23:02.47964525Z"} +2026/03/22 12:23:07 ───────────────────────────────────────────────── +2026/03/22 12:23:12 ── Pipeline Health ────────────────────────────── +2026/03/22 12:23:12 [transform_engine] {"stage_name":"transform_engine","events_processed":763,"events_dropped":0,"avg_latency_ms":202.59729535080078,"throughput_eps":0,"last_update":"2026-03-22T12:23:07.479076674Z"} +2026/03/22 12:23:12 [log_collector] {"stage_name":"log_collector","events_processed":37096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7419.2,"last_update":"2026-03-22T12:23:07.367977179Z"} +2026/03/22 12:23:12 [metric_collector] {"stage_name":"metric_collector","events_processed":22899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4579.8,"last_update":"2026-03-22T12:23:07.368925635Z"} +2026/03/22 12:23:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:23:07.378749442Z"} +2026/03/22 12:23:12 [detection_layer] {"stage_name":"detection_layer","events_processed":760,"events_dropped":0,"avg_latency_ms":18.547000675071462,"throughput_eps":0,"last_update":"2026-03-22T12:23:07.479060062Z"} +2026/03/22 12:23:12 ───────────────────────────────────────────────── +2026/03/22 12:23:17 ── Pipeline Health ────────────────────────────── +2026/03/22 12:23:17 [log_collector] {"stage_name":"log_collector","events_processed":37096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7419.2,"last_update":"2026-03-22T12:23:17.368530329Z"} +2026/03/22 12:23:17 [metric_collector] {"stage_name":"metric_collector","events_processed":22904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4580.8,"last_update":"2026-03-22T12:23:12.368657045Z"} +2026/03/22 12:23:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:23:12.377446861Z"} +2026/03/22 12:23:17 [detection_layer] {"stage_name":"detection_layer","events_processed":760,"events_dropped":0,"avg_latency_ms":18.547000675071462,"throughput_eps":0,"last_update":"2026-03-22T12:23:12.479683441Z"} +2026/03/22 12:23:17 [transform_engine] {"stage_name":"transform_engine","events_processed":763,"events_dropped":0,"avg_latency_ms":202.59729535080078,"throughput_eps":0,"last_update":"2026-03-22T12:23:12.479695023Z"} +2026/03/22 12:23:17 ───────────────────────────────────────────────── +2026/03/22 12:23:22 ── Pipeline Health ────────────────────────────── +2026/03/22 12:23:22 [log_collector] {"stage_name":"log_collector","events_processed":37096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7419.2,"last_update":"2026-03-22T12:23:17.368530329Z"} +2026/03/22 12:23:22 [metric_collector] {"stage_name":"metric_collector","events_processed":22909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4581.8,"last_update":"2026-03-22T12:23:17.368899837Z"} +2026/03/22 12:23:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:23:17.378754602Z"} +2026/03/22 12:23:22 [detection_layer] {"stage_name":"detection_layer","events_processed":760,"events_dropped":0,"avg_latency_ms":18.547000675071462,"throughput_eps":0,"last_update":"2026-03-22T12:23:17.479030437Z"} +2026/03/22 12:23:22 [transform_engine] {"stage_name":"transform_engine","events_processed":763,"events_dropped":0,"avg_latency_ms":202.59729535080078,"throughput_eps":0,"last_update":"2026-03-22T12:23:17.478903083Z"} +2026/03/22 12:23:22 ───────────────────────────────────────────────── +2026/03/22 12:23:27 ── Pipeline Health ────────────────────────────── +2026/03/22 12:23:27 [transform_engine] {"stage_name":"transform_engine","events_processed":763,"events_dropped":0,"avg_latency_ms":202.59729535080078,"throughput_eps":0,"last_update":"2026-03-22T12:23:22.478911627Z"} +2026/03/22 12:23:27 [log_collector] {"stage_name":"log_collector","events_processed":37096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7419.2,"last_update":"2026-03-22T12:23:22.368476685Z"} +2026/03/22 12:23:27 [metric_collector] {"stage_name":"metric_collector","events_processed":22914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4582.8,"last_update":"2026-03-22T12:23:22.368846684Z"} +2026/03/22 12:23:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:23:22.377757732Z"} +2026/03/22 12:23:27 [detection_layer] {"stage_name":"detection_layer","events_processed":760,"events_dropped":0,"avg_latency_ms":18.547000675071462,"throughput_eps":0,"last_update":"2026-03-22T12:23:22.478948659Z"} +2026/03/22 12:23:27 ───────────────────────────────────────────────── +2026/03/22 12:23:32 ── Pipeline Health ────────────────────────────── +2026/03/22 12:23:32 [transform_engine] {"stage_name":"transform_engine","events_processed":764,"events_dropped":0,"avg_latency_ms":186.22986588064063,"throughput_eps":0,"last_update":"2026-03-22T12:23:27.600537875Z"} +2026/03/22 12:23:32 [log_collector] {"stage_name":"log_collector","events_processed":37096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7419.2,"last_update":"2026-03-22T12:23:27.368309556Z"} +2026/03/22 12:23:32 [metric_collector] {"stage_name":"metric_collector","events_processed":22919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4583.8,"last_update":"2026-03-22T12:23:27.369000268Z"} +2026/03/22 12:23:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9170,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:23:27.378338123Z"} +2026/03/22 12:23:32 [detection_layer] {"stage_name":"detection_layer","events_processed":760,"events_dropped":0,"avg_latency_ms":18.547000675071462,"throughput_eps":0,"last_update":"2026-03-22T12:23:27.479762989Z"} +2026/03/22 12:23:32 ───────────────────────────────────────────────── +2026/03/22 12:23:37 ── Pipeline Health ────────────────────────────── +2026/03/22 12:23:37 [detection_layer] {"stage_name":"detection_layer","events_processed":761,"events_dropped":0,"avg_latency_ms":18.954906740057172,"throughput_eps":0,"last_update":"2026-03-22T12:23:32.479043954Z"} +2026/03/22 12:23:37 [transform_engine] {"stage_name":"transform_engine","events_processed":764,"events_dropped":0,"avg_latency_ms":186.22986588064063,"throughput_eps":0,"last_update":"2026-03-22T12:23:32.479145779Z"} +2026/03/22 12:23:37 [log_collector] {"stage_name":"log_collector","events_processed":37110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7422,"last_update":"2026-03-22T12:23:32.369049005Z"} +2026/03/22 12:23:37 [metric_collector] {"stage_name":"metric_collector","events_processed":22923,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4584.6,"last_update":"2026-03-22T12:23:32.369039566Z"} +2026/03/22 12:23:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:23:32.377859589Z"} +2026/03/22 12:23:37 ───────────────────────────────────────────────── +2026/03/22 12:23:42 ── Pipeline Health ────────────────────────────── +2026/03/22 12:23:42 [detection_layer] {"stage_name":"detection_layer","events_processed":761,"events_dropped":0,"avg_latency_ms":18.954906740057172,"throughput_eps":0,"last_update":"2026-03-22T12:23:37.479923723Z"} +2026/03/22 12:23:42 [transform_engine] {"stage_name":"transform_engine","events_processed":764,"events_dropped":0,"avg_latency_ms":186.22986588064063,"throughput_eps":0,"last_update":"2026-03-22T12:23:37.479865993Z"} +2026/03/22 12:23:42 [log_collector] {"stage_name":"log_collector","events_processed":37135,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7427,"last_update":"2026-03-22T12:23:37.368575271Z"} +2026/03/22 12:23:42 [metric_collector] {"stage_name":"metric_collector","events_processed":22929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4585.8,"last_update":"2026-03-22T12:23:37.369211379Z"} +2026/03/22 12:23:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:23:37.378490473Z"} +2026/03/22 12:23:42 ───────────────────────────────────────────────── +2026/03/22 12:23:47 ── Pipeline Health ────────────────────────────── +2026/03/22 12:23:47 [log_collector] {"stage_name":"log_collector","events_processed":37135,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7427,"last_update":"2026-03-22T12:23:42.368410582Z"} +2026/03/22 12:23:47 [metric_collector] {"stage_name":"metric_collector","events_processed":22934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4586.8,"last_update":"2026-03-22T12:23:42.369275338Z"} +2026/03/22 12:23:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:23:42.378481371Z"} +2026/03/22 12:23:47 [detection_layer] {"stage_name":"detection_layer","events_processed":761,"events_dropped":0,"avg_latency_ms":18.954906740057172,"throughput_eps":0,"last_update":"2026-03-22T12:23:42.479799972Z"} +2026/03/22 12:23:47 [transform_engine] {"stage_name":"transform_engine","events_processed":764,"events_dropped":0,"avg_latency_ms":186.22986588064063,"throughput_eps":0,"last_update":"2026-03-22T12:23:42.479693168Z"} +2026/03/22 12:23:47 ───────────────────────────────────────────────── +2026/03/22 12:23:52 ── Pipeline Health ────────────────────────────── +2026/03/22 12:23:52 [log_collector] {"stage_name":"log_collector","events_processed":37135,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7427,"last_update":"2026-03-22T12:23:47.368409407Z"} +2026/03/22 12:23:52 [metric_collector] {"stage_name":"metric_collector","events_processed":22939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4587.8,"last_update":"2026-03-22T12:23:47.368848197Z"} +2026/03/22 12:23:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:23:47.378156406Z"} +2026/03/22 12:23:52 [detection_layer] {"stage_name":"detection_layer","events_processed":761,"events_dropped":0,"avg_latency_ms":18.954906740057172,"throughput_eps":0,"last_update":"2026-03-22T12:23:47.479381207Z"} +2026/03/22 12:23:52 [transform_engine] {"stage_name":"transform_engine","events_processed":764,"events_dropped":0,"avg_latency_ms":186.22986588064063,"throughput_eps":0,"last_update":"2026-03-22T12:23:47.479442635Z"} +2026/03/22 12:23:52 ───────────────────────────────────────────────── +2026/03/22 12:23:57 ── Pipeline Health ────────────────────────────── +2026/03/22 12:23:57 [metric_collector] {"stage_name":"metric_collector","events_processed":22944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4588.8,"last_update":"2026-03-22T12:23:52.368732184Z"} +2026/03/22 12:23:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:23:52.377768973Z"} +2026/03/22 12:23:57 [detection_layer] {"stage_name":"detection_layer","events_processed":761,"events_dropped":0,"avg_latency_ms":18.954906740057172,"throughput_eps":0,"last_update":"2026-03-22T12:23:52.480033767Z"} +2026/03/22 12:23:57 [transform_engine] {"stage_name":"transform_engine","events_processed":764,"events_dropped":0,"avg_latency_ms":186.22986588064063,"throughput_eps":0,"last_update":"2026-03-22T12:23:52.478853016Z"} +2026/03/22 12:23:57 [log_collector] {"stage_name":"log_collector","events_processed":37135,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7427,"last_update":"2026-03-22T12:23:52.368009831Z"} +2026/03/22 12:23:57 ───────────────────────────────────────────────── +Saved state: 24 clusters, 37136 messages, reason: none +2026/03/22 12:24:02 ── Pipeline Health ────────────────────────────── +2026/03/22 12:24:02 [log_collector] {"stage_name":"log_collector","events_processed":37135,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7427,"last_update":"2026-03-22T12:23:57.368645259Z"} +2026/03/22 12:24:02 [metric_collector] {"stage_name":"metric_collector","events_processed":22949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4589.8,"last_update":"2026-03-22T12:23:57.369179431Z"} +2026/03/22 12:24:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:23:57.378053097Z"} +2026/03/22 12:24:02 [detection_layer] {"stage_name":"detection_layer","events_processed":761,"events_dropped":0,"avg_latency_ms":18.954906740057172,"throughput_eps":0,"last_update":"2026-03-22T12:23:57.479401817Z"} +2026/03/22 12:24:02 [transform_engine] {"stage_name":"transform_engine","events_processed":765,"events_dropped":0,"avg_latency_ms":175.74208410451251,"throughput_eps":0,"last_update":"2026-03-22T12:23:57.613227952Z"} +2026/03/22 12:24:02 ───────────────────────────────────────────────── +2026/03/22 12:24:07 ── Pipeline Health ────────────────────────────── +2026/03/22 12:24:07 [transform_engine] {"stage_name":"transform_engine","events_processed":765,"events_dropped":0,"avg_latency_ms":175.74208410451251,"throughput_eps":0,"last_update":"2026-03-22T12:24:02.479769896Z"} +2026/03/22 12:24:07 [log_collector] {"stage_name":"log_collector","events_processed":37150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7430,"last_update":"2026-03-22T12:24:02.368754701Z"} +2026/03/22 12:24:07 [metric_collector] {"stage_name":"metric_collector","events_processed":22954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4590.8,"last_update":"2026-03-22T12:24:02.369057962Z"} +2026/03/22 12:24:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:24:02.379476737Z"} +2026/03/22 12:24:07 [detection_layer] {"stage_name":"detection_layer","events_processed":762,"events_dropped":0,"avg_latency_ms":19.591307592045737,"throughput_eps":0,"last_update":"2026-03-22T12:24:02.479762662Z"} +2026/03/22 12:24:07 ───────────────────────────────────────────────── +2026/03/22 12:24:12 ── Pipeline Health ────────────────────────────── +2026/03/22 12:24:12 [log_collector] {"stage_name":"log_collector","events_processed":37160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7432,"last_update":"2026-03-22T12:24:07.368437048Z"} +2026/03/22 12:24:12 [metric_collector] {"stage_name":"metric_collector","events_processed":22958,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4591.6,"last_update":"2026-03-22T12:24:07.368592144Z"} +2026/03/22 12:24:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:24:07.377101824Z"} +2026/03/22 12:24:12 [detection_layer] {"stage_name":"detection_layer","events_processed":762,"events_dropped":0,"avg_latency_ms":19.591307592045737,"throughput_eps":0,"last_update":"2026-03-22T12:24:07.479389421Z"} +2026/03/22 12:24:12 [transform_engine] {"stage_name":"transform_engine","events_processed":765,"events_dropped":0,"avg_latency_ms":175.74208410451251,"throughput_eps":0,"last_update":"2026-03-22T12:24:07.479396234Z"} +2026/03/22 12:24:12 ───────────────────────────────────────────────── +2026/03/22 12:24:17 ── Pipeline Health ────────────────────────────── +2026/03/22 12:24:17 [log_collector] {"stage_name":"log_collector","events_processed":37160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7432,"last_update":"2026-03-22T12:24:12.368683434Z"} +2026/03/22 12:24:17 [metric_collector] {"stage_name":"metric_collector","events_processed":22964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4592.8,"last_update":"2026-03-22T12:24:12.369488446Z"} +2026/03/22 12:24:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:24:12.378025297Z"} +2026/03/22 12:24:17 [detection_layer] {"stage_name":"detection_layer","events_processed":762,"events_dropped":0,"avg_latency_ms":19.591307592045737,"throughput_eps":0,"last_update":"2026-03-22T12:24:12.47921906Z"} +2026/03/22 12:24:17 [transform_engine] {"stage_name":"transform_engine","events_processed":765,"events_dropped":0,"avg_latency_ms":175.74208410451251,"throughput_eps":0,"last_update":"2026-03-22T12:24:12.479232106Z"} +2026/03/22 12:24:17 ───────────────────────────────────────────────── +2026/03/22 12:24:22 ── Pipeline Health ────────────────────────────── +2026/03/22 12:24:22 [log_collector] {"stage_name":"log_collector","events_processed":37160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7432,"last_update":"2026-03-22T12:24:17.368048147Z"} +2026/03/22 12:24:22 [metric_collector] {"stage_name":"metric_collector","events_processed":22969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4593.8,"last_update":"2026-03-22T12:24:17.368643056Z"} +2026/03/22 12:24:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:24:17.377080237Z"} +2026/03/22 12:24:22 [detection_layer] {"stage_name":"detection_layer","events_processed":762,"events_dropped":0,"avg_latency_ms":19.591307592045737,"throughput_eps":0,"last_update":"2026-03-22T12:24:17.479414874Z"} +2026/03/22 12:24:22 [transform_engine] {"stage_name":"transform_engine","events_processed":765,"events_dropped":0,"avg_latency_ms":175.74208410451251,"throughput_eps":0,"last_update":"2026-03-22T12:24:17.479451995Z"} +2026/03/22 12:24:22 ───────────────────────────────────────────────── +2026/03/22 12:24:27 ── Pipeline Health ────────────────────────────── +2026/03/22 12:24:27 [log_collector] {"stage_name":"log_collector","events_processed":37160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7432,"last_update":"2026-03-22T12:24:22.368003179Z"} +2026/03/22 12:24:27 [metric_collector] {"stage_name":"metric_collector","events_processed":22974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4594.8,"last_update":"2026-03-22T12:24:22.368287124Z"} +2026/03/22 12:24:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:24:22.377701436Z"} +2026/03/22 12:24:27 [detection_layer] {"stage_name":"detection_layer","events_processed":762,"events_dropped":0,"avg_latency_ms":19.591307592045737,"throughput_eps":0,"last_update":"2026-03-22T12:24:22.478955533Z"} +2026/03/22 12:24:27 [transform_engine] {"stage_name":"transform_engine","events_processed":765,"events_dropped":0,"avg_latency_ms":175.74208410451251,"throughput_eps":0,"last_update":"2026-03-22T12:24:22.478820305Z"} +2026/03/22 12:24:27 ───────────────────────────────────────────────── +2026/03/22 12:24:32 ── Pipeline Health ────────────────────────────── +2026/03/22 12:24:32 [transform_engine] {"stage_name":"transform_engine","events_processed":766,"events_dropped":0,"avg_latency_ms":161.81877308361,"throughput_eps":0,"last_update":"2026-03-22T12:24:27.584995419Z"} +2026/03/22 12:24:32 [log_collector] {"stage_name":"log_collector","events_processed":37160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7432,"last_update":"2026-03-22T12:24:27.368212943Z"} +2026/03/22 12:24:32 [metric_collector] {"stage_name":"metric_collector","events_processed":22979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4595.8,"last_update":"2026-03-22T12:24:27.368925679Z"} +2026/03/22 12:24:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:24:27.37565119Z"} +2026/03/22 12:24:32 [detection_layer] {"stage_name":"detection_layer","events_processed":762,"events_dropped":0,"avg_latency_ms":19.591307592045737,"throughput_eps":0,"last_update":"2026-03-22T12:24:27.478971005Z"} +2026/03/22 12:24:32 ───────────────────────────────────────────────── +2026/03/22 12:24:37 ── Pipeline Health ────────────────────────────── +2026/03/22 12:24:37 [log_collector] {"stage_name":"log_collector","events_processed":37180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7436,"last_update":"2026-03-22T12:24:32.368565872Z"} +2026/03/22 12:24:37 [metric_collector] {"stage_name":"metric_collector","events_processed":22984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4596.8,"last_update":"2026-03-22T12:24:32.369045551Z"} +2026/03/22 12:24:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:24:32.377756225Z"} +2026/03/22 12:24:37 [detection_layer] {"stage_name":"detection_layer","events_processed":763,"events_dropped":0,"avg_latency_ms":19.11576807363659,"throughput_eps":0,"last_update":"2026-03-22T12:24:32.479030491Z"} +2026/03/22 12:24:37 [transform_engine] {"stage_name":"transform_engine","events_processed":766,"events_dropped":0,"avg_latency_ms":161.81877308361,"throughput_eps":0,"last_update":"2026-03-22T12:24:32.479133889Z"} +2026/03/22 12:24:37 ───────────────────────────────────────────────── +2026/03/22 12:24:42 ── Pipeline Health ────────────────────────────── +2026/03/22 12:24:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:24:37.375764725Z"} +2026/03/22 12:24:42 [detection_layer] {"stage_name":"detection_layer","events_processed":763,"events_dropped":0,"avg_latency_ms":19.11576807363659,"throughput_eps":0,"last_update":"2026-03-22T12:24:37.478940844Z"} +2026/03/22 12:24:42 [transform_engine] {"stage_name":"transform_engine","events_processed":766,"events_dropped":0,"avg_latency_ms":161.81877308361,"throughput_eps":0,"last_update":"2026-03-22T12:24:37.478900067Z"} +2026/03/22 12:24:42 [log_collector] {"stage_name":"log_collector","events_processed":37190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7438,"last_update":"2026-03-22T12:24:37.368549496Z"} +2026/03/22 12:24:42 [metric_collector] {"stage_name":"metric_collector","events_processed":22989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4597.8,"last_update":"2026-03-22T12:24:37.368675988Z"} +2026/03/22 12:24:42 ───────────────────────────────────────────────── +2026/03/22 12:24:47 ── Pipeline Health ────────────────────────────── +2026/03/22 12:24:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:24:42.376365162Z"} +2026/03/22 12:24:47 [detection_layer] {"stage_name":"detection_layer","events_processed":763,"events_dropped":0,"avg_latency_ms":19.11576807363659,"throughput_eps":0,"last_update":"2026-03-22T12:24:42.479829784Z"} +2026/03/22 12:24:47 [transform_engine] {"stage_name":"transform_engine","events_processed":766,"events_dropped":0,"avg_latency_ms":161.81877308361,"throughput_eps":0,"last_update":"2026-03-22T12:24:42.479709725Z"} +2026/03/22 12:24:47 [log_collector] {"stage_name":"log_collector","events_processed":37190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7438,"last_update":"2026-03-22T12:24:42.368305444Z"} +2026/03/22 12:24:47 [metric_collector] {"stage_name":"metric_collector","events_processed":22994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4598.8,"last_update":"2026-03-22T12:24:42.368521188Z"} +2026/03/22 12:24:47 ───────────────────────────────────────────────── +2026/03/22 12:24:52 ── Pipeline Health ────────────────────────────── +2026/03/22 12:24:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:24:47.376381962Z"} +2026/03/22 12:24:52 [detection_layer] {"stage_name":"detection_layer","events_processed":763,"events_dropped":0,"avg_latency_ms":19.11576807363659,"throughput_eps":0,"last_update":"2026-03-22T12:24:47.479570115Z"} +2026/03/22 12:24:52 [transform_engine] {"stage_name":"transform_engine","events_processed":766,"events_dropped":0,"avg_latency_ms":161.81877308361,"throughput_eps":0,"last_update":"2026-03-22T12:24:47.479545137Z"} +2026/03/22 12:24:52 [log_collector] {"stage_name":"log_collector","events_processed":37190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7438,"last_update":"2026-03-22T12:24:52.367946044Z"} +2026/03/22 12:24:52 [metric_collector] {"stage_name":"metric_collector","events_processed":22999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4599.8,"last_update":"2026-03-22T12:24:47.368959275Z"} +2026/03/22 12:24:52 ───────────────────────────────────────────────── +2026/03/22 12:24:57 ── Pipeline Health ────────────────────────────── +2026/03/22 12:24:57 [detection_layer] {"stage_name":"detection_layer","events_processed":763,"events_dropped":0,"avg_latency_ms":19.11576807363659,"throughput_eps":0,"last_update":"2026-03-22T12:24:52.479216367Z"} +2026/03/22 12:24:57 [transform_engine] {"stage_name":"transform_engine","events_processed":766,"events_dropped":0,"avg_latency_ms":161.81877308361,"throughput_eps":0,"last_update":"2026-03-22T12:24:52.47887855Z"} +2026/03/22 12:24:57 [log_collector] {"stage_name":"log_collector","events_processed":37190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7438,"last_update":"2026-03-22T12:24:57.368169472Z"} +2026/03/22 12:24:57 [metric_collector] {"stage_name":"metric_collector","events_processed":23004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4600.8,"last_update":"2026-03-22T12:24:52.368666784Z"} +2026/03/22 12:24:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:24:52.377027568Z"} +2026/03/22 12:24:57 ───────────────────────────────────────────────── +2026/03/22 12:25:02 ── Pipeline Health ────────────────────────────── +2026/03/22 12:25:02 [log_collector] {"stage_name":"log_collector","events_processed":37190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7438,"last_update":"2026-03-22T12:25:02.368278474Z"} +2026/03/22 12:25:02 [metric_collector] {"stage_name":"metric_collector","events_processed":23009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4601.8,"last_update":"2026-03-22T12:24:57.368500607Z"} +2026/03/22 12:25:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9206,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:24:57.375949243Z"} +2026/03/22 12:25:02 [detection_layer] {"stage_name":"detection_layer","events_processed":763,"events_dropped":0,"avg_latency_ms":19.11576807363659,"throughput_eps":0,"last_update":"2026-03-22T12:24:57.479203863Z"} +2026/03/22 12:25:02 [transform_engine] {"stage_name":"transform_engine","events_processed":766,"events_dropped":0,"avg_latency_ms":161.81877308361,"throughput_eps":0,"last_update":"2026-03-22T12:24:57.479161442Z"} +2026/03/22 12:25:02 ───────────────────────────────────────────────── +Saved state: 24 clusters, 37191 messages, reason: none +2026/03/22 12:25:07 ── Pipeline Health ────────────────────────────── +2026/03/22 12:25:07 [log_collector] {"stage_name":"log_collector","events_processed":37195,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7439,"last_update":"2026-03-22T12:25:07.368438645Z"} +2026/03/22 12:25:07 [metric_collector] {"stage_name":"metric_collector","events_processed":23019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4603.8,"last_update":"2026-03-22T12:25:07.368703692Z"} +2026/03/22 12:25:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:25:02.374600994Z"} +2026/03/22 12:25:07 [detection_layer] {"stage_name":"detection_layer","events_processed":764,"events_dropped":0,"avg_latency_ms":18.673574058909274,"throughput_eps":0,"last_update":"2026-03-22T12:25:02.479943414Z"} +2026/03/22 12:25:07 [transform_engine] {"stage_name":"transform_engine","events_processed":767,"events_dropped":0,"avg_latency_ms":278.594879666888,"throughput_eps":0,"last_update":"2026-03-22T12:25:02.479927242Z"} +2026/03/22 12:25:07 ───────────────────────────────────────────────── +2026/03/22 12:25:12 ── Pipeline Health ────────────────────────────── +2026/03/22 12:25:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9210,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:25:07.376019976Z"} +2026/03/22 12:25:12 [detection_layer] {"stage_name":"detection_layer","events_processed":764,"events_dropped":0,"avg_latency_ms":18.673574058909274,"throughput_eps":0,"last_update":"2026-03-22T12:25:07.479288002Z"} +2026/03/22 12:25:12 [transform_engine] {"stage_name":"transform_engine","events_processed":767,"events_dropped":0,"avg_latency_ms":278.594879666888,"throughput_eps":0,"last_update":"2026-03-22T12:25:07.479304103Z"} +2026/03/22 12:25:12 [log_collector] {"stage_name":"log_collector","events_processed":37195,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7439,"last_update":"2026-03-22T12:25:07.368438645Z"} +2026/03/22 12:25:12 [metric_collector] {"stage_name":"metric_collector","events_processed":23019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4603.8,"last_update":"2026-03-22T12:25:07.368703692Z"} +2026/03/22 12:25:12 ───────────────────────────────────────────────── +2026/03/22 12:25:17 ── Pipeline Health ────────────────────────────── +2026/03/22 12:25:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:25:12.375956811Z"} +2026/03/22 12:25:17 [detection_layer] {"stage_name":"detection_layer","events_processed":764,"events_dropped":0,"avg_latency_ms":18.673574058909274,"throughput_eps":0,"last_update":"2026-03-22T12:25:12.479217412Z"} +2026/03/22 12:25:17 [transform_engine] {"stage_name":"transform_engine","events_processed":767,"events_dropped":0,"avg_latency_ms":278.594879666888,"throughput_eps":0,"last_update":"2026-03-22T12:25:12.479243713Z"} +2026/03/22 12:25:17 [log_collector] {"stage_name":"log_collector","events_processed":37215,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7443,"last_update":"2026-03-22T12:25:12.368508825Z"} +2026/03/22 12:25:17 [metric_collector] {"stage_name":"metric_collector","events_processed":23024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4604.8,"last_update":"2026-03-22T12:25:12.368792037Z"} +2026/03/22 12:25:17 ───────────────────────────────────────────────── +2026/03/22 12:25:22 ── Pipeline Health ────────────────────────────── +2026/03/22 12:25:22 [log_collector] {"stage_name":"log_collector","events_processed":37218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7443.6,"last_update":"2026-03-22T12:25:17.368896386Z"} +2026/03/22 12:25:22 [metric_collector] {"stage_name":"metric_collector","events_processed":23029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4605.8,"last_update":"2026-03-22T12:25:17.36928004Z"} +2026/03/22 12:25:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:25:17.375378111Z"} +2026/03/22 12:25:22 [detection_layer] {"stage_name":"detection_layer","events_processed":764,"events_dropped":0,"avg_latency_ms":18.673574058909274,"throughput_eps":0,"last_update":"2026-03-22T12:25:17.479592809Z"} +2026/03/22 12:25:22 [transform_engine] {"stage_name":"transform_engine","events_processed":767,"events_dropped":0,"avg_latency_ms":278.594879666888,"throughput_eps":0,"last_update":"2026-03-22T12:25:17.479628768Z"} +2026/03/22 12:25:22 ───────────────────────────────────────────────── +2026/03/22 12:25:27 ── Pipeline Health ────────────────────────────── +2026/03/22 12:25:27 [metric_collector] {"stage_name":"metric_collector","events_processed":23034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4606.8,"last_update":"2026-03-22T12:25:22.368846649Z"} +2026/03/22 12:25:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:25:22.378575634Z"} +2026/03/22 12:25:27 [detection_layer] {"stage_name":"detection_layer","events_processed":764,"events_dropped":0,"avg_latency_ms":18.673574058909274,"throughput_eps":0,"last_update":"2026-03-22T12:25:22.479807349Z"} +2026/03/22 12:25:27 [transform_engine] {"stage_name":"transform_engine","events_processed":767,"events_dropped":0,"avg_latency_ms":278.594879666888,"throughput_eps":0,"last_update":"2026-03-22T12:25:22.479823379Z"} +2026/03/22 12:25:27 [log_collector] {"stage_name":"log_collector","events_processed":37226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7445.2,"last_update":"2026-03-22T12:25:22.368442014Z"} +2026/03/22 12:25:27 ───────────────────────────────────────────────── +2026/03/22 12:25:32 ── Pipeline Health ────────────────────────────── +2026/03/22 12:25:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:25:27.375734171Z"} +2026/03/22 12:25:32 [detection_layer] {"stage_name":"detection_layer","events_processed":764,"events_dropped":0,"avg_latency_ms":18.673574058909274,"throughput_eps":0,"last_update":"2026-03-22T12:25:27.479757784Z"} +2026/03/22 12:25:32 [transform_engine] {"stage_name":"transform_engine","events_processed":768,"events_dropped":0,"avg_latency_ms":302.70214213351045,"throughput_eps":0,"last_update":"2026-03-22T12:25:27.878905217Z"} +2026/03/22 12:25:32 [log_collector] {"stage_name":"log_collector","events_processed":37254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7450.8,"last_update":"2026-03-22T12:25:27.368864402Z"} +2026/03/22 12:25:32 [metric_collector] {"stage_name":"metric_collector","events_processed":23039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4607.8,"last_update":"2026-03-22T12:25:27.368806321Z"} +2026/03/22 12:25:32 ───────────────────────────────────────────────── +2026/03/22 12:25:37 ── Pipeline Health ────────────────────────────── +2026/03/22 12:25:37 [log_collector] {"stage_name":"log_collector","events_processed":37398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7479.6,"last_update":"2026-03-22T12:25:32.367949402Z"} +2026/03/22 12:25:37 [metric_collector] {"stage_name":"metric_collector","events_processed":23044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4608.8,"last_update":"2026-03-22T12:25:32.36817244Z"} +2026/03/22 12:25:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:25:32.375328146Z"} +2026/03/22 12:25:37 [detection_layer] {"stage_name":"detection_layer","events_processed":765,"events_dropped":0,"avg_latency_ms":17.89898884712742,"throughput_eps":0,"last_update":"2026-03-22T12:25:32.479325679Z"} +2026/03/22 12:25:37 [transform_engine] {"stage_name":"transform_engine","events_processed":768,"events_dropped":0,"avg_latency_ms":302.70214213351045,"throughput_eps":0,"last_update":"2026-03-22T12:25:32.479335668Z"} +2026/03/22 12:25:37 ───────────────────────────────────────────────── +2026/03/22 12:25:42 ── Pipeline Health ────────────────────────────── +2026/03/22 12:25:42 [log_collector] {"stage_name":"log_collector","events_processed":37541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7508.2,"last_update":"2026-03-22T12:25:37.368462068Z"} +2026/03/22 12:25:42 [metric_collector] {"stage_name":"metric_collector","events_processed":23049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4609.8,"last_update":"2026-03-22T12:25:37.368733116Z"} +2026/03/22 12:25:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9222,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:25:37.378089077Z"} +2026/03/22 12:25:42 [detection_layer] {"stage_name":"detection_layer","events_processed":765,"events_dropped":0,"avg_latency_ms":17.89898884712742,"throughput_eps":0,"last_update":"2026-03-22T12:25:37.479252722Z"} +2026/03/22 12:25:42 [transform_engine] {"stage_name":"transform_engine","events_processed":768,"events_dropped":0,"avg_latency_ms":302.70214213351045,"throughput_eps":0,"last_update":"2026-03-22T12:25:37.479265326Z"} +2026/03/22 12:25:42 ───────────────────────────────────────────────── +2026/03/22 12:25:47 ── Pipeline Health ────────────────────────────── +2026/03/22 12:25:47 [log_collector] {"stage_name":"log_collector","events_processed":37541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7508.2,"last_update":"2026-03-22T12:25:42.368017733Z"} +2026/03/22 12:25:47 [metric_collector] {"stage_name":"metric_collector","events_processed":23054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4610.8,"last_update":"2026-03-22T12:25:42.368567456Z"} +2026/03/22 12:25:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:25:42.378575785Z"} +2026/03/22 12:25:47 [detection_layer] {"stage_name":"detection_layer","events_processed":765,"events_dropped":0,"avg_latency_ms":17.89898884712742,"throughput_eps":0,"last_update":"2026-03-22T12:25:42.479755981Z"} +2026/03/22 12:25:47 [transform_engine] {"stage_name":"transform_engine","events_processed":768,"events_dropped":0,"avg_latency_ms":302.70214213351045,"throughput_eps":0,"last_update":"2026-03-22T12:25:42.479789746Z"} +2026/03/22 12:25:47 ───────────────────────────────────────────────── +2026/03/22 12:25:52 ── Pipeline Health ────────────────────────────── +2026/03/22 12:25:52 [log_collector] {"stage_name":"log_collector","events_processed":37541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7508.2,"last_update":"2026-03-22T12:25:47.368787322Z"} +2026/03/22 12:25:52 [metric_collector] {"stage_name":"metric_collector","events_processed":23059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4611.8,"last_update":"2026-03-22T12:25:47.369271269Z"} +2026/03/22 12:25:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:25:47.378883971Z"} +2026/03/22 12:25:52 [detection_layer] {"stage_name":"detection_layer","events_processed":765,"events_dropped":0,"avg_latency_ms":17.89898884712742,"throughput_eps":0,"last_update":"2026-03-22T12:25:47.479254748Z"} +2026/03/22 12:25:52 [transform_engine] {"stage_name":"transform_engine","events_processed":768,"events_dropped":0,"avg_latency_ms":302.70214213351045,"throughput_eps":0,"last_update":"2026-03-22T12:25:47.479271801Z"} +2026/03/22 12:25:52 ───────────────────────────────────────────────── +2026/03/22 12:25:57 ── Pipeline Health ────────────────────────────── +2026/03/22 12:25:57 [log_collector] {"stage_name":"log_collector","events_processed":37541,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7508.2,"last_update":"2026-03-22T12:25:52.36798809Z"} +2026/03/22 12:25:57 [metric_collector] {"stage_name":"metric_collector","events_processed":23064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4612.8,"last_update":"2026-03-22T12:25:52.368499499Z"} +2026/03/22 12:25:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:25:52.377476553Z"} +2026/03/22 12:25:57 [detection_layer] {"stage_name":"detection_layer","events_processed":765,"events_dropped":0,"avg_latency_ms":17.89898884712742,"throughput_eps":0,"last_update":"2026-03-22T12:25:52.479724745Z"} +2026/03/22 12:25:57 [transform_engine] {"stage_name":"transform_engine","events_processed":768,"events_dropped":0,"avg_latency_ms":302.70214213351045,"throughput_eps":0,"last_update":"2026-03-22T12:25:52.4797426Z"} +2026/03/22 12:25:57 ───────────────────────────────────────────────── +2026/03/22 12:26:02 ── Pipeline Health ────────────────────────────── +2026/03/22 12:26:02 [metric_collector] {"stage_name":"metric_collector","events_processed":23069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4613.8,"last_update":"2026-03-22T12:25:57.3694253Z"} +2026/03/22 12:26:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:25:57.378068354Z"} +2026/03/22 12:26:02 [detection_layer] {"stage_name":"detection_layer","events_processed":765,"events_dropped":0,"avg_latency_ms":17.89898884712742,"throughput_eps":0,"last_update":"2026-03-22T12:25:57.479295121Z"} +2026/03/22 12:26:02 [transform_engine] {"stage_name":"transform_engine","events_processed":769,"events_dropped":0,"avg_latency_ms":265.89581310680836,"throughput_eps":0,"last_update":"2026-03-22T12:25:57.597979545Z"} +2026/03/22 12:26:02 [log_collector] {"stage_name":"log_collector","events_processed":37546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7509.2,"last_update":"2026-03-22T12:26:02.368077248Z"} +2026/03/22 12:26:02 ───────────────────────────────────────────────── +Saved state: 24 clusters, 37547 messages, reason: none +2026/03/22 12:26:07 ── Pipeline Health ────────────────────────────── +2026/03/22 12:26:07 [detection_layer] {"stage_name":"detection_layer","events_processed":766,"events_dropped":0,"avg_latency_ms":18.07178447770194,"throughput_eps":0,"last_update":"2026-03-22T12:26:02.479123151Z"} +2026/03/22 12:26:07 [transform_engine] {"stage_name":"transform_engine","events_processed":769,"events_dropped":0,"avg_latency_ms":265.89581310680836,"throughput_eps":0,"last_update":"2026-03-22T12:26:02.479101149Z"} +2026/03/22 12:26:07 [log_collector] {"stage_name":"log_collector","events_processed":37561,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7512.2,"last_update":"2026-03-22T12:26:07.368703589Z"} +2026/03/22 12:26:07 [metric_collector] {"stage_name":"metric_collector","events_processed":23074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4614.8,"last_update":"2026-03-22T12:26:02.368714839Z"} +2026/03/22 12:26:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:26:02.377897808Z"} +2026/03/22 12:26:07 ───────────────────────────────────────────────── +2026/03/22 12:26:12 ── Pipeline Health ────────────────────────────── +2026/03/22 12:26:12 [log_collector] {"stage_name":"log_collector","events_processed":37561,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7512.2,"last_update":"2026-03-22T12:26:07.368703589Z"} +2026/03/22 12:26:12 [metric_collector] {"stage_name":"metric_collector","events_processed":23079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4615.8,"last_update":"2026-03-22T12:26:07.368971733Z"} +2026/03/22 12:26:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:26:07.377001843Z"} +2026/03/22 12:26:12 [detection_layer] {"stage_name":"detection_layer","events_processed":766,"events_dropped":0,"avg_latency_ms":18.07178447770194,"throughput_eps":0,"last_update":"2026-03-22T12:26:07.479269453Z"} +2026/03/22 12:26:12 [transform_engine] {"stage_name":"transform_engine","events_processed":769,"events_dropped":0,"avg_latency_ms":265.89581310680836,"throughput_eps":0,"last_update":"2026-03-22T12:26:07.479245727Z"} +2026/03/22 12:26:12 ───────────────────────────────────────────────── +2026/03/22 12:26:17 ── Pipeline Health ────────────────────────────── +2026/03/22 12:26:17 [metric_collector] {"stage_name":"metric_collector","events_processed":23084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4616.8,"last_update":"2026-03-22T12:26:12.368676419Z"} +2026/03/22 12:26:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:26:12.378060653Z"} +2026/03/22 12:26:17 [detection_layer] {"stage_name":"detection_layer","events_processed":766,"events_dropped":0,"avg_latency_ms":18.07178447770194,"throughput_eps":0,"last_update":"2026-03-22T12:26:12.479256412Z"} +2026/03/22 12:26:17 [transform_engine] {"stage_name":"transform_engine","events_processed":769,"events_dropped":0,"avg_latency_ms":265.89581310680836,"throughput_eps":0,"last_update":"2026-03-22T12:26:12.479306948Z"} +2026/03/22 12:26:17 [log_collector] {"stage_name":"log_collector","events_processed":37566,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7513.2,"last_update":"2026-03-22T12:26:12.368342129Z"} +2026/03/22 12:26:17 ───────────────────────────────────────────────── +2026/03/22 12:26:22 ── Pipeline Health ────────────────────────────── +2026/03/22 12:26:22 [metric_collector] {"stage_name":"metric_collector","events_processed":23089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4617.8,"last_update":"2026-03-22T12:26:17.368331304Z"} +2026/03/22 12:26:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:26:17.377128433Z"} +2026/03/22 12:26:22 [detection_layer] {"stage_name":"detection_layer","events_processed":766,"events_dropped":0,"avg_latency_ms":18.07178447770194,"throughput_eps":0,"last_update":"2026-03-22T12:26:17.479529049Z"} +2026/03/22 12:26:22 [transform_engine] {"stage_name":"transform_engine","events_processed":769,"events_dropped":0,"avg_latency_ms":265.89581310680836,"throughput_eps":0,"last_update":"2026-03-22T12:26:17.479486137Z"} +2026/03/22 12:26:22 [log_collector] {"stage_name":"log_collector","events_processed":37566,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7513.2,"last_update":"2026-03-22T12:26:17.367986954Z"} +2026/03/22 12:26:22 ───────────────────────────────────────────────── +2026/03/22 12:26:27 ── Pipeline Health ────────────────────────────── +2026/03/22 12:26:27 [metric_collector] {"stage_name":"metric_collector","events_processed":23094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4618.8,"last_update":"2026-03-22T12:26:22.369029306Z"} +2026/03/22 12:26:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:26:22.378895824Z"} +2026/03/22 12:26:27 [detection_layer] {"stage_name":"detection_layer","events_processed":766,"events_dropped":0,"avg_latency_ms":18.07178447770194,"throughput_eps":0,"last_update":"2026-03-22T12:26:22.479069042Z"} +2026/03/22 12:26:27 [transform_engine] {"stage_name":"transform_engine","events_processed":769,"events_dropped":0,"avg_latency_ms":265.89581310680836,"throughput_eps":0,"last_update":"2026-03-22T12:26:22.479112847Z"} +2026/03/22 12:26:27 [log_collector] {"stage_name":"log_collector","events_processed":37566,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7513.2,"last_update":"2026-03-22T12:26:22.368450007Z"} +2026/03/22 12:26:27 ───────────────────────────────────────────────── +2026/03/22 12:26:32 ── Pipeline Health ────────────────────────────── +2026/03/22 12:26:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:26:27.375964146Z"} +2026/03/22 12:26:32 [detection_layer] {"stage_name":"detection_layer","events_processed":766,"events_dropped":0,"avg_latency_ms":18.07178447770194,"throughput_eps":0,"last_update":"2026-03-22T12:26:27.479463926Z"} +2026/03/22 12:26:32 [transform_engine] {"stage_name":"transform_engine","events_processed":770,"events_dropped":0,"avg_latency_ms":233.9731784854467,"throughput_eps":0,"last_update":"2026-03-22T12:26:27.58550256Z"} +2026/03/22 12:26:32 [log_collector] {"stage_name":"log_collector","events_processed":37566,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7513.2,"last_update":"2026-03-22T12:26:27.368481233Z"} +2026/03/22 12:26:32 [metric_collector] {"stage_name":"metric_collector","events_processed":23099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4619.8,"last_update":"2026-03-22T12:26:27.368927799Z"} +2026/03/22 12:26:32 ───────────────────────────────────────────────── +2026/03/22 12:26:37 ── Pipeline Health ────────────────────────────── +2026/03/22 12:26:37 [detection_layer] {"stage_name":"detection_layer","events_processed":767,"events_dropped":0,"avg_latency_ms":17.289774582161552,"throughput_eps":0,"last_update":"2026-03-22T12:26:32.47942945Z"} +2026/03/22 12:26:37 [transform_engine] {"stage_name":"transform_engine","events_processed":770,"events_dropped":0,"avg_latency_ms":233.9731784854467,"throughput_eps":0,"last_update":"2026-03-22T12:26:32.479282568Z"} +2026/03/22 12:26:37 [log_collector] {"stage_name":"log_collector","events_processed":37581,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7516.2,"last_update":"2026-03-22T12:26:37.368703438Z"} +2026/03/22 12:26:37 [metric_collector] {"stage_name":"metric_collector","events_processed":23104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4620.8,"last_update":"2026-03-22T12:26:32.369318336Z"} +2026/03/22 12:26:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:26:32.378007028Z"} +2026/03/22 12:26:37 ───────────────────────────────────────────────── +2026/03/22 12:26:42 ── Pipeline Health ────────────────────────────── +2026/03/22 12:26:42 [transform_engine] {"stage_name":"transform_engine","events_processed":770,"events_dropped":0,"avg_latency_ms":233.9731784854467,"throughput_eps":0,"last_update":"2026-03-22T12:26:37.479343455Z"} +2026/03/22 12:26:42 [log_collector] {"stage_name":"log_collector","events_processed":37581,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7516.2,"last_update":"2026-03-22T12:26:37.368703438Z"} +2026/03/22 12:26:42 [metric_collector] {"stage_name":"metric_collector","events_processed":23109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4621.8,"last_update":"2026-03-22T12:26:37.369045885Z"} +2026/03/22 12:26:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9246,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:26:37.377123235Z"} +2026/03/22 12:26:42 [detection_layer] {"stage_name":"detection_layer","events_processed":767,"events_dropped":0,"avg_latency_ms":17.289774582161552,"throughput_eps":0,"last_update":"2026-03-22T12:26:37.479446763Z"} +2026/03/22 12:26:42 ───────────────────────────────────────────────── +2026/03/22 12:26:47 ── Pipeline Health ────────────────────────────── +2026/03/22 12:26:47 [log_collector] {"stage_name":"log_collector","events_processed":37616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7523.2,"last_update":"2026-03-22T12:26:42.368507133Z"} +2026/03/22 12:26:47 [metric_collector] {"stage_name":"metric_collector","events_processed":23114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4622.8,"last_update":"2026-03-22T12:26:42.368293916Z"} +2026/03/22 12:26:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:26:42.377045908Z"} +2026/03/22 12:26:47 [detection_layer] {"stage_name":"detection_layer","events_processed":767,"events_dropped":0,"avg_latency_ms":17.289774582161552,"throughput_eps":0,"last_update":"2026-03-22T12:26:42.479289482Z"} +2026/03/22 12:26:47 [transform_engine] {"stage_name":"transform_engine","events_processed":770,"events_dropped":0,"avg_latency_ms":233.9731784854467,"throughput_eps":0,"last_update":"2026-03-22T12:26:42.479264074Z"} +2026/03/22 12:26:47 ───────────────────────────────────────────────── +2026/03/22 12:26:52 ── Pipeline Health ────────────────────────────── +2026/03/22 12:26:52 [log_collector] {"stage_name":"log_collector","events_processed":37618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7523.6,"last_update":"2026-03-22T12:26:52.367967807Z"} +2026/03/22 12:26:52 [metric_collector] {"stage_name":"metric_collector","events_processed":23119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4623.8,"last_update":"2026-03-22T12:26:47.368278879Z"} +2026/03/22 12:26:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:26:47.378445913Z"} +2026/03/22 12:26:52 [detection_layer] {"stage_name":"detection_layer","events_processed":767,"events_dropped":0,"avg_latency_ms":17.289774582161552,"throughput_eps":0,"last_update":"2026-03-22T12:26:47.479754447Z"} +2026/03/22 12:26:52 [transform_engine] {"stage_name":"transform_engine","events_processed":770,"events_dropped":0,"avg_latency_ms":233.9731784854467,"throughput_eps":0,"last_update":"2026-03-22T12:26:47.479621552Z"} +2026/03/22 12:26:52 ───────────────────────────────────────────────── +2026/03/22 12:26:57 ── Pipeline Health ────────────────────────────── +2026/03/22 12:26:57 [log_collector] {"stage_name":"log_collector","events_processed":37618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7523.6,"last_update":"2026-03-22T12:26:52.367967807Z"} +2026/03/22 12:26:57 [metric_collector] {"stage_name":"metric_collector","events_processed":23124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4624.8,"last_update":"2026-03-22T12:26:52.368333718Z"} +2026/03/22 12:26:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:26:52.377180453Z"} +2026/03/22 12:26:57 [detection_layer] {"stage_name":"detection_layer","events_processed":767,"events_dropped":0,"avg_latency_ms":17.289774582161552,"throughput_eps":0,"last_update":"2026-03-22T12:26:52.479035012Z"} +2026/03/22 12:26:57 [transform_engine] {"stage_name":"transform_engine","events_processed":770,"events_dropped":0,"avg_latency_ms":233.9731784854467,"throughput_eps":0,"last_update":"2026-03-22T12:26:52.478931604Z"} +2026/03/22 12:26:57 ───────────────────────────────────────────────── +2026/03/22 12:27:02 ── Pipeline Health ────────────────────────────── +2026/03/22 12:27:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:26:57.378410133Z"} +2026/03/22 12:27:02 [detection_layer] {"stage_name":"detection_layer","events_processed":767,"events_dropped":0,"avg_latency_ms":17.289774582161552,"throughput_eps":0,"last_update":"2026-03-22T12:26:57.479733334Z"} +2026/03/22 12:27:02 [transform_engine] {"stage_name":"transform_engine","events_processed":771,"events_dropped":0,"avg_latency_ms":211.3166581883574,"throughput_eps":0,"last_update":"2026-03-22T12:26:57.600304032Z"} +2026/03/22 12:27:02 [log_collector] {"stage_name":"log_collector","events_processed":37621,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7524.2,"last_update":"2026-03-22T12:27:02.368857522Z"} +2026/03/22 12:27:02 [metric_collector] {"stage_name":"metric_collector","events_processed":23129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4625.8,"last_update":"2026-03-22T12:26:57.369438068Z"} +2026/03/22 12:27:02 ───────────────────────────────────────────────── +Saved state: 24 clusters, 37622 messages, reason: none +2026/03/22 12:27:07 ── Pipeline Health ────────────────────────────── +2026/03/22 12:27:07 [log_collector] {"stage_name":"log_collector","events_processed":37621,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7524.2,"last_update":"2026-03-22T12:27:02.368857522Z"} +2026/03/22 12:27:07 [metric_collector] {"stage_name":"metric_collector","events_processed":23134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4626.8,"last_update":"2026-03-22T12:27:02.369150063Z"} +2026/03/22 12:27:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:27:02.378263849Z"} +2026/03/22 12:27:07 [detection_layer] {"stage_name":"detection_layer","events_processed":768,"events_dropped":0,"avg_latency_ms":17.655934265729243,"throughput_eps":0,"last_update":"2026-03-22T12:27:02.479444147Z"} +2026/03/22 12:27:07 [transform_engine] {"stage_name":"transform_engine","events_processed":771,"events_dropped":0,"avg_latency_ms":211.3166581883574,"throughput_eps":0,"last_update":"2026-03-22T12:27:02.47947744Z"} +2026/03/22 12:27:07 ───────────────────────────────────────────────── +2026/03/22 12:27:12 ── Pipeline Health ────────────────────────────── +2026/03/22 12:27:12 [detection_layer] {"stage_name":"detection_layer","events_processed":768,"events_dropped":0,"avg_latency_ms":17.655934265729243,"throughput_eps":0,"last_update":"2026-03-22T12:27:07.478999813Z"} +2026/03/22 12:27:12 [transform_engine] {"stage_name":"transform_engine","events_processed":771,"events_dropped":0,"avg_latency_ms":211.3166581883574,"throughput_eps":0,"last_update":"2026-03-22T12:27:07.479025893Z"} +2026/03/22 12:27:12 [log_collector] {"stage_name":"log_collector","events_processed":37631,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7526.2,"last_update":"2026-03-22T12:27:07.368010106Z"} +2026/03/22 12:27:12 [metric_collector] {"stage_name":"metric_collector","events_processed":23139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4627.8,"last_update":"2026-03-22T12:27:07.368432876Z"} +2026/03/22 12:27:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:27:07.374421276Z"} +2026/03/22 12:27:12 ───────────────────────────────────────────────── +2026/03/22 12:27:17 ── Pipeline Health ────────────────────────────── +2026/03/22 12:27:17 [metric_collector] {"stage_name":"metric_collector","events_processed":23144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4628.8,"last_update":"2026-03-22T12:27:12.368808635Z"} +2026/03/22 12:27:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:27:12.375749218Z"} +2026/03/22 12:27:17 [detection_layer] {"stage_name":"detection_layer","events_processed":768,"events_dropped":0,"avg_latency_ms":17.655934265729243,"throughput_eps":0,"last_update":"2026-03-22T12:27:12.479940303Z"} +2026/03/22 12:27:17 [transform_engine] {"stage_name":"transform_engine","events_processed":771,"events_dropped":0,"avg_latency_ms":211.3166581883574,"throughput_eps":0,"last_update":"2026-03-22T12:27:12.47885274Z"} +2026/03/22 12:27:17 [log_collector] {"stage_name":"log_collector","events_processed":37653,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7530.6,"last_update":"2026-03-22T12:27:12.368533227Z"} +2026/03/22 12:27:17 ───────────────────────────────────────────────── +2026/03/22 12:27:22 ── Pipeline Health ────────────────────────────── +2026/03/22 12:27:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:27:17.378625047Z"} +2026/03/22 12:27:22 [detection_layer] {"stage_name":"detection_layer","events_processed":768,"events_dropped":0,"avg_latency_ms":17.655934265729243,"throughput_eps":0,"last_update":"2026-03-22T12:27:17.480005489Z"} +2026/03/22 12:27:22 [transform_engine] {"stage_name":"transform_engine","events_processed":771,"events_dropped":0,"avg_latency_ms":211.3166581883574,"throughput_eps":0,"last_update":"2026-03-22T12:27:17.478820238Z"} +2026/03/22 12:27:22 [log_collector] {"stage_name":"log_collector","events_processed":37657,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7531.4,"last_update":"2026-03-22T12:27:17.368805489Z"} +2026/03/22 12:27:22 [metric_collector] {"stage_name":"metric_collector","events_processed":23149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4629.8,"last_update":"2026-03-22T12:27:17.369309594Z"} +2026/03/22 12:27:22 ───────────────────────────────────────────────── +2026/03/22 12:27:27 ── Pipeline Health ────────────────────────────── +2026/03/22 12:27:27 [log_collector] {"stage_name":"log_collector","events_processed":37673,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7534.6,"last_update":"2026-03-22T12:27:22.367956173Z"} +2026/03/22 12:27:27 [metric_collector] {"stage_name":"metric_collector","events_processed":23154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4630.8,"last_update":"2026-03-22T12:27:22.368408379Z"} +2026/03/22 12:27:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:27:22.377397136Z"} +2026/03/22 12:27:27 [detection_layer] {"stage_name":"detection_layer","events_processed":768,"events_dropped":0,"avg_latency_ms":17.655934265729243,"throughput_eps":0,"last_update":"2026-03-22T12:27:22.479566869Z"} +2026/03/22 12:27:27 [transform_engine] {"stage_name":"transform_engine","events_processed":771,"events_dropped":0,"avg_latency_ms":211.3166581883574,"throughput_eps":0,"last_update":"2026-03-22T12:27:22.479683142Z"} +2026/03/22 12:27:27 ───────────────────────────────────────────────── +2026/03/22 12:27:32 ── Pipeline Health ────────────────────────────── +2026/03/22 12:27:32 [metric_collector] {"stage_name":"metric_collector","events_processed":23159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4631.8,"last_update":"2026-03-22T12:27:27.369486155Z"} +2026/03/22 12:27:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:27:27.379233906Z"} +2026/03/22 12:27:32 [detection_layer] {"stage_name":"detection_layer","events_processed":768,"events_dropped":0,"avg_latency_ms":17.655934265729243,"throughput_eps":0,"last_update":"2026-03-22T12:27:27.479867196Z"} +2026/03/22 12:27:32 [transform_engine] {"stage_name":"transform_engine","events_processed":772,"events_dropped":0,"avg_latency_ms":619.622259950686,"throughput_eps":0,"last_update":"2026-03-22T12:27:29.732769603Z"} +2026/03/22 12:27:32 [log_collector] {"stage_name":"log_collector","events_processed":37686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7537.2,"last_update":"2026-03-22T12:27:27.368534111Z"} +2026/03/22 12:27:32 ───────────────────────────────────────────────── +2026/03/22 12:27:37 ── Pipeline Health ────────────────────────────── +2026/03/22 12:27:37 [log_collector] {"stage_name":"log_collector","events_processed":37687,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7537.4,"last_update":"2026-03-22T12:27:32.368338309Z"} +2026/03/22 12:27:37 [metric_collector] {"stage_name":"metric_collector","events_processed":23164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4632.8,"last_update":"2026-03-22T12:27:32.368839439Z"} +2026/03/22 12:27:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:27:32.377876939Z"} +2026/03/22 12:27:37 [detection_layer] {"stage_name":"detection_layer","events_processed":769,"events_dropped":0,"avg_latency_ms":17.669410812583397,"throughput_eps":0,"last_update":"2026-03-22T12:27:32.479234677Z"} +2026/03/22 12:27:37 [transform_engine] {"stage_name":"transform_engine","events_processed":772,"events_dropped":0,"avg_latency_ms":619.622259950686,"throughput_eps":0,"last_update":"2026-03-22T12:27:32.479271046Z"} +2026/03/22 12:27:37 ───────────────────────────────────────────────── +2026/03/22 12:27:42 ── Pipeline Health ────────────────────────────── +2026/03/22 12:27:42 [log_collector] {"stage_name":"log_collector","events_processed":37697,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7539.4,"last_update":"2026-03-22T12:27:37.368463333Z"} +2026/03/22 12:27:42 [metric_collector] {"stage_name":"metric_collector","events_processed":23168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4633.6,"last_update":"2026-03-22T12:27:37.368513078Z"} +2026/03/22 12:27:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:27:37.377825685Z"} +2026/03/22 12:27:42 [detection_layer] {"stage_name":"detection_layer","events_processed":769,"events_dropped":0,"avg_latency_ms":17.669410812583397,"throughput_eps":0,"last_update":"2026-03-22T12:27:37.479012575Z"} +2026/03/22 12:27:42 [transform_engine] {"stage_name":"transform_engine","events_processed":772,"events_dropped":0,"avg_latency_ms":619.622259950686,"throughput_eps":0,"last_update":"2026-03-22T12:27:37.479069474Z"} +2026/03/22 12:27:42 ───────────────────────────────────────────────── +2026/03/22 12:27:47 ── Pipeline Health ────────────────────────────── +2026/03/22 12:27:47 [log_collector] {"stage_name":"log_collector","events_processed":37707,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7541.4,"last_update":"2026-03-22T12:27:42.368007174Z"} +2026/03/22 12:27:47 [metric_collector] {"stage_name":"metric_collector","events_processed":23174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4634.8,"last_update":"2026-03-22T12:27:42.368505539Z"} +2026/03/22 12:27:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:27:42.378204657Z"} +2026/03/22 12:27:47 [detection_layer] {"stage_name":"detection_layer","events_processed":769,"events_dropped":0,"avg_latency_ms":17.669410812583397,"throughput_eps":0,"last_update":"2026-03-22T12:27:42.479378372Z"} +2026/03/22 12:27:47 [transform_engine] {"stage_name":"transform_engine","events_processed":772,"events_dropped":0,"avg_latency_ms":619.622259950686,"throughput_eps":0,"last_update":"2026-03-22T12:27:42.479415774Z"} +2026/03/22 12:27:47 ───────────────────────────────────────────────── +2026/03/22 12:27:52 ── Pipeline Health ────────────────────────────── +2026/03/22 12:27:52 [detection_layer] {"stage_name":"detection_layer","events_processed":769,"events_dropped":0,"avg_latency_ms":17.669410812583397,"throughput_eps":0,"last_update":"2026-03-22T12:27:47.480082428Z"} +2026/03/22 12:27:52 [transform_engine] {"stage_name":"transform_engine","events_processed":772,"events_dropped":0,"avg_latency_ms":619.622259950686,"throughput_eps":0,"last_update":"2026-03-22T12:27:47.478895895Z"} +2026/03/22 12:27:52 [log_collector] {"stage_name":"log_collector","events_processed":37707,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7541.4,"last_update":"2026-03-22T12:27:47.368180093Z"} +2026/03/22 12:27:52 [metric_collector] {"stage_name":"metric_collector","events_processed":23179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4635.8,"last_update":"2026-03-22T12:27:47.368620777Z"} +2026/03/22 12:27:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:27:47.377704525Z"} +2026/03/22 12:27:52 ───────────────────────────────────────────────── +2026/03/22 12:27:57 ── Pipeline Health ────────────────────────────── +2026/03/22 12:27:57 [log_collector] {"stage_name":"log_collector","events_processed":37707,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7541.4,"last_update":"2026-03-22T12:27:52.368748279Z"} +2026/03/22 12:27:57 [metric_collector] {"stage_name":"metric_collector","events_processed":23184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4636.8,"last_update":"2026-03-22T12:27:52.369235412Z"} +2026/03/22 12:27:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9276,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:27:52.376644283Z"} +2026/03/22 12:27:57 [detection_layer] {"stage_name":"detection_layer","events_processed":769,"events_dropped":0,"avg_latency_ms":17.669410812583397,"throughput_eps":0,"last_update":"2026-03-22T12:27:52.479965622Z"} +2026/03/22 12:27:57 [transform_engine] {"stage_name":"transform_engine","events_processed":772,"events_dropped":0,"avg_latency_ms":619.622259950686,"throughput_eps":0,"last_update":"2026-03-22T12:27:52.478833152Z"} +2026/03/22 12:27:57 ───────────────────────────────────────────────── +2026/03/22 12:28:02 ── Pipeline Health ────────────────────────────── +2026/03/22 12:28:02 [metric_collector] {"stage_name":"metric_collector","events_processed":23189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4637.8,"last_update":"2026-03-22T12:27:57.369410947Z"} +2026/03/22 12:28:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:27:57.37820447Z"} +2026/03/22 12:28:02 [detection_layer] {"stage_name":"detection_layer","events_processed":769,"events_dropped":0,"avg_latency_ms":17.669410812583397,"throughput_eps":0,"last_update":"2026-03-22T12:27:57.479468488Z"} +2026/03/22 12:28:02 [transform_engine] {"stage_name":"transform_engine","events_processed":773,"events_dropped":0,"avg_latency_ms":521.1890033605489,"throughput_eps":0,"last_update":"2026-03-22T12:27:57.607072938Z"} +2026/03/22 12:28:02 [log_collector] {"stage_name":"log_collector","events_processed":37707,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7541.4,"last_update":"2026-03-22T12:27:57.368634891Z"} +2026/03/22 12:28:02 ───────────────────────────────────────────────── +Saved state: 24 clusters, 37708 messages, reason: none +2026/03/22 12:28:07 ── Pipeline Health ────────────────────────────── +2026/03/22 12:28:07 [log_collector] {"stage_name":"log_collector","events_processed":37707,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7541.4,"last_update":"2026-03-22T12:28:02.368603682Z"} +2026/03/22 12:28:07 [metric_collector] {"stage_name":"metric_collector","events_processed":23194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4638.8,"last_update":"2026-03-22T12:28:02.369507013Z"} +2026/03/22 12:28:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:28:02.378608305Z"} +2026/03/22 12:28:07 [detection_layer] {"stage_name":"detection_layer","events_processed":770,"events_dropped":0,"avg_latency_ms":18.20786685006672,"throughput_eps":0,"last_update":"2026-03-22T12:28:02.479765107Z"} +2026/03/22 12:28:07 [transform_engine] {"stage_name":"transform_engine","events_processed":773,"events_dropped":0,"avg_latency_ms":521.1890033605489,"throughput_eps":0,"last_update":"2026-03-22T12:28:02.479773354Z"} +2026/03/22 12:28:07 ───────────────────────────────────────────────── +2026/03/22 12:28:12 ── Pipeline Health ────────────────────────────── +2026/03/22 12:28:12 [detection_layer] {"stage_name":"detection_layer","events_processed":770,"events_dropped":0,"avg_latency_ms":18.20786685006672,"throughput_eps":0,"last_update":"2026-03-22T12:28:07.479740252Z"} +2026/03/22 12:28:12 [transform_engine] {"stage_name":"transform_engine","events_processed":773,"events_dropped":0,"avg_latency_ms":521.1890033605489,"throughput_eps":0,"last_update":"2026-03-22T12:28:07.479749379Z"} +2026/03/22 12:28:12 [log_collector] {"stage_name":"log_collector","events_processed":37717,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7543.4,"last_update":"2026-03-22T12:28:07.368619594Z"} +2026/03/22 12:28:12 [metric_collector] {"stage_name":"metric_collector","events_processed":23199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4639.8,"last_update":"2026-03-22T12:28:07.368887887Z"} +2026/03/22 12:28:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:28:07.377534379Z"} +2026/03/22 12:28:12 ───────────────────────────────────────────────── +2026/03/22 12:28:17 ── Pipeline Health ────────────────────────────── +2026/03/22 12:28:17 [metric_collector] {"stage_name":"metric_collector","events_processed":23204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4640.8,"last_update":"2026-03-22T12:28:12.368669352Z"} +2026/03/22 12:28:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:28:12.378075127Z"} +2026/03/22 12:28:17 [detection_layer] {"stage_name":"detection_layer","events_processed":770,"events_dropped":0,"avg_latency_ms":18.20786685006672,"throughput_eps":0,"last_update":"2026-03-22T12:28:12.479251748Z"} +2026/03/22 12:28:17 [transform_engine] {"stage_name":"transform_engine","events_processed":773,"events_dropped":0,"avg_latency_ms":521.1890033605489,"throughput_eps":0,"last_update":"2026-03-22T12:28:12.479264042Z"} +2026/03/22 12:28:17 [log_collector] {"stage_name":"log_collector","events_processed":37732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7546.4,"last_update":"2026-03-22T12:28:17.368501143Z"} +2026/03/22 12:28:17 ───────────────────────────────────────────────── +2026/03/22 12:28:22 ── Pipeline Health ────────────────────────────── +2026/03/22 12:28:22 [detection_layer] {"stage_name":"detection_layer","events_processed":770,"events_dropped":0,"avg_latency_ms":18.20786685006672,"throughput_eps":0,"last_update":"2026-03-22T12:28:17.479782117Z"} +2026/03/22 12:28:22 [transform_engine] {"stage_name":"transform_engine","events_processed":773,"events_dropped":0,"avg_latency_ms":521.1890033605489,"throughput_eps":0,"last_update":"2026-03-22T12:28:17.479794502Z"} +2026/03/22 12:28:22 [log_collector] {"stage_name":"log_collector","events_processed":37732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7546.4,"last_update":"2026-03-22T12:28:17.368501143Z"} +2026/03/22 12:28:22 [metric_collector] {"stage_name":"metric_collector","events_processed":23209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4641.8,"last_update":"2026-03-22T12:28:17.368765199Z"} +2026/03/22 12:28:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9286,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:28:17.377495511Z"} +2026/03/22 12:28:22 ───────────────────────────────────────────────── +2026/03/22 12:28:27 ── Pipeline Health ────────────────────────────── +2026/03/22 12:28:27 [log_collector] {"stage_name":"log_collector","events_processed":37732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7546.4,"last_update":"2026-03-22T12:28:27.367973772Z"} +2026/03/22 12:28:27 [metric_collector] {"stage_name":"metric_collector","events_processed":23214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4642.8,"last_update":"2026-03-22T12:28:22.368734033Z"} +2026/03/22 12:28:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:28:22.377428247Z"} +2026/03/22 12:28:27 [detection_layer] {"stage_name":"detection_layer","events_processed":770,"events_dropped":0,"avg_latency_ms":18.20786685006672,"throughput_eps":0,"last_update":"2026-03-22T12:28:22.479735563Z"} +2026/03/22 12:28:27 [transform_engine] {"stage_name":"transform_engine","events_processed":773,"events_dropped":0,"avg_latency_ms":521.1890033605489,"throughput_eps":0,"last_update":"2026-03-22T12:28:22.479745612Z"} +2026/03/22 12:28:27 ───────────────────────────────────────────────── +2026/03/22 12:28:32 ── Pipeline Health ────────────────────────────── +2026/03/22 12:28:32 [metric_collector] {"stage_name":"metric_collector","events_processed":23219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4643.8,"last_update":"2026-03-22T12:28:27.368411741Z"} +2026/03/22 12:28:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:28:27.378245927Z"} +2026/03/22 12:28:32 [detection_layer] {"stage_name":"detection_layer","events_processed":770,"events_dropped":0,"avg_latency_ms":18.20786685006672,"throughput_eps":0,"last_update":"2026-03-22T12:28:27.479676805Z"} +2026/03/22 12:28:32 [transform_engine] {"stage_name":"transform_engine","events_processed":774,"events_dropped":0,"avg_latency_ms":442.77396488843914,"throughput_eps":0,"last_update":"2026-03-22T12:28:27.608822818Z"} +2026/03/22 12:28:32 [log_collector] {"stage_name":"log_collector","events_processed":37732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7546.4,"last_update":"2026-03-22T12:28:27.367973772Z"} +2026/03/22 12:28:32 ───────────────────────────────────────────────── +2026/03/22 12:28:37 ── Pipeline Health ────────────────────────────── +2026/03/22 12:28:37 [detection_layer] {"stage_name":"detection_layer","events_processed":771,"events_dropped":0,"avg_latency_ms":19.722798080053376,"throughput_eps":0,"last_update":"2026-03-22T12:28:32.47973931Z"} +2026/03/22 12:28:37 [transform_engine] {"stage_name":"transform_engine","events_processed":774,"events_dropped":0,"avg_latency_ms":442.77396488843914,"throughput_eps":0,"last_update":"2026-03-22T12:28:32.479713591Z"} +2026/03/22 12:28:37 [log_collector] {"stage_name":"log_collector","events_processed":37742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7548.4,"last_update":"2026-03-22T12:28:37.368402507Z"} +2026/03/22 12:28:37 [metric_collector] {"stage_name":"metric_collector","events_processed":23229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4645.8,"last_update":"2026-03-22T12:28:37.368655271Z"} +2026/03/22 12:28:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:28:32.375529961Z"} +2026/03/22 12:28:37 ───────────────────────────────────────────────── +2026/03/22 12:28:42 ── Pipeline Health ────────────────────────────── +2026/03/22 12:28:42 [log_collector] {"stage_name":"log_collector","events_processed":37757,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7551.4,"last_update":"2026-03-22T12:28:42.368182794Z"} +2026/03/22 12:28:42 [metric_collector] {"stage_name":"metric_collector","events_processed":23229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4645.8,"last_update":"2026-03-22T12:28:37.368655271Z"} +2026/03/22 12:28:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:28:37.37595885Z"} +2026/03/22 12:28:42 [detection_layer] {"stage_name":"detection_layer","events_processed":771,"events_dropped":0,"avg_latency_ms":19.722798080053376,"throughput_eps":0,"last_update":"2026-03-22T12:28:37.479213441Z"} +2026/03/22 12:28:42 [transform_engine] {"stage_name":"transform_engine","events_processed":774,"events_dropped":0,"avg_latency_ms":442.77396488843914,"throughput_eps":0,"last_update":"2026-03-22T12:28:37.479193483Z"} +2026/03/22 12:28:42 ───────────────────────────────────────────────── +2026/03/22 12:28:47 ── Pipeline Health ────────────────────────────── +2026/03/22 12:28:47 [log_collector] {"stage_name":"log_collector","events_processed":37757,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7551.4,"last_update":"2026-03-22T12:28:42.368182794Z"} +2026/03/22 12:28:47 [metric_collector] {"stage_name":"metric_collector","events_processed":23234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4646.8,"last_update":"2026-03-22T12:28:42.36864505Z"} +2026/03/22 12:28:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:28:42.375692067Z"} +2026/03/22 12:28:47 [detection_layer] {"stage_name":"detection_layer","events_processed":771,"events_dropped":0,"avg_latency_ms":19.722798080053376,"throughput_eps":0,"last_update":"2026-03-22T12:28:42.479974688Z"} +2026/03/22 12:28:47 [transform_engine] {"stage_name":"transform_engine","events_processed":774,"events_dropped":0,"avg_latency_ms":442.77396488843914,"throughput_eps":0,"last_update":"2026-03-22T12:28:42.478853641Z"} +2026/03/22 12:28:47 ───────────────────────────────────────────────── +2026/03/22 12:28:52 ── Pipeline Health ────────────────────────────── +2026/03/22 12:28:52 [log_collector] {"stage_name":"log_collector","events_processed":37762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7552.4,"last_update":"2026-03-22T12:28:47.368769117Z"} +2026/03/22 12:28:52 [metric_collector] {"stage_name":"metric_collector","events_processed":23239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4647.8,"last_update":"2026-03-22T12:28:47.368738428Z"} +2026/03/22 12:28:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:28:47.378829277Z"} +2026/03/22 12:28:52 [detection_layer] {"stage_name":"detection_layer","events_processed":771,"events_dropped":0,"avg_latency_ms":19.722798080053376,"throughput_eps":0,"last_update":"2026-03-22T12:28:47.479015901Z"} +2026/03/22 12:28:52 [transform_engine] {"stage_name":"transform_engine","events_processed":774,"events_dropped":0,"avg_latency_ms":442.77396488843914,"throughput_eps":0,"last_update":"2026-03-22T12:28:47.479067049Z"} +2026/03/22 12:28:52 ───────────────────────────────────────────────── +2026/03/22 12:28:57 ── Pipeline Health ────────────────────────────── +2026/03/22 12:28:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:28:52.376311796Z"} +2026/03/22 12:28:57 [detection_layer] {"stage_name":"detection_layer","events_processed":771,"events_dropped":0,"avg_latency_ms":19.722798080053376,"throughput_eps":0,"last_update":"2026-03-22T12:28:52.479522854Z"} +2026/03/22 12:28:57 [transform_engine] {"stage_name":"transform_engine","events_processed":774,"events_dropped":0,"avg_latency_ms":442.77396488843914,"throughput_eps":0,"last_update":"2026-03-22T12:28:52.479534757Z"} +2026/03/22 12:28:57 [log_collector] {"stage_name":"log_collector","events_processed":37762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7552.4,"last_update":"2026-03-22T12:28:52.368843752Z"} +2026/03/22 12:28:57 [metric_collector] {"stage_name":"metric_collector","events_processed":23244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4648.8,"last_update":"2026-03-22T12:28:52.369198311Z"} +2026/03/22 12:28:57 ───────────────────────────────────────────────── +2026/03/22 12:29:02 ── Pipeline Health ────────────────────────────── +2026/03/22 12:29:02 [log_collector] {"stage_name":"log_collector","events_processed":37762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7552.4,"last_update":"2026-03-22T12:29:02.36827616Z"} +2026/03/22 12:29:02 [metric_collector] {"stage_name":"metric_collector","events_processed":23249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4649.8,"last_update":"2026-03-22T12:28:57.368795Z"} +2026/03/22 12:29:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:28:57.375044561Z"} +2026/03/22 12:29:02 [detection_layer] {"stage_name":"detection_layer","events_processed":771,"events_dropped":0,"avg_latency_ms":19.722798080053376,"throughput_eps":0,"last_update":"2026-03-22T12:28:57.47922744Z"} +2026/03/22 12:29:02 [transform_engine] {"stage_name":"transform_engine","events_processed":775,"events_dropped":0,"avg_latency_ms":386.39988811075136,"throughput_eps":0,"last_update":"2026-03-22T12:28:57.64014635Z"} +2026/03/22 12:29:02 ───────────────────────────────────────────────── +Saved state: 24 clusters, 37763 messages, reason: none +2026/03/22 12:29:07 ── Pipeline Health ────────────────────────────── +2026/03/22 12:29:07 [log_collector] {"stage_name":"log_collector","events_processed":37767,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7553.4,"last_update":"2026-03-22T12:29:07.36841578Z"} +2026/03/22 12:29:07 [metric_collector] {"stage_name":"metric_collector","events_processed":23254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4650.8,"last_update":"2026-03-22T12:29:02.369157648Z"} +2026/03/22 12:29:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:29:02.379790133Z"} +2026/03/22 12:29:07 [detection_layer] {"stage_name":"detection_layer","events_processed":772,"events_dropped":0,"avg_latency_ms":18.325483264042703,"throughput_eps":0,"last_update":"2026-03-22T12:29:02.479932864Z"} +2026/03/22 12:29:07 [transform_engine] {"stage_name":"transform_engine","events_processed":775,"events_dropped":0,"avg_latency_ms":386.39988811075136,"throughput_eps":0,"last_update":"2026-03-22T12:29:02.478858888Z"} +2026/03/22 12:29:07 ───────────────────────────────────────────────── +2026/03/22 12:29:12 ── Pipeline Health ────────────────────────────── +2026/03/22 12:29:12 [metric_collector] {"stage_name":"metric_collector","events_processed":23259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4651.8,"last_update":"2026-03-22T12:29:07.368676048Z"} +2026/03/22 12:29:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:29:07.378092746Z"} +2026/03/22 12:29:12 [detection_layer] {"stage_name":"detection_layer","events_processed":772,"events_dropped":0,"avg_latency_ms":18.325483264042703,"throughput_eps":0,"last_update":"2026-03-22T12:29:07.479169105Z"} +2026/03/22 12:29:12 [transform_engine] {"stage_name":"transform_engine","events_processed":775,"events_dropped":0,"avg_latency_ms":386.39988811075136,"throughput_eps":0,"last_update":"2026-03-22T12:29:07.479206566Z"} +2026/03/22 12:29:12 [log_collector] {"stage_name":"log_collector","events_processed":37767,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7553.4,"last_update":"2026-03-22T12:29:07.36841578Z"} +2026/03/22 12:29:12 ───────────────────────────────────────────────── +2026/03/22 12:29:17 ── Pipeline Health ────────────────────────────── +2026/03/22 12:29:17 [transform_engine] {"stage_name":"transform_engine","events_processed":775,"events_dropped":0,"avg_latency_ms":386.39988811075136,"throughput_eps":0,"last_update":"2026-03-22T12:29:12.47960866Z"} +2026/03/22 12:29:17 [log_collector] {"stage_name":"log_collector","events_processed":37793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7558.6,"last_update":"2026-03-22T12:29:17.36846333Z"} +2026/03/22 12:29:17 [metric_collector] {"stage_name":"metric_collector","events_processed":23264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4652.8,"last_update":"2026-03-22T12:29:12.368895924Z"} +2026/03/22 12:29:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:29:12.375825066Z"} +2026/03/22 12:29:17 [detection_layer] {"stage_name":"detection_layer","events_processed":772,"events_dropped":0,"avg_latency_ms":18.325483264042703,"throughput_eps":0,"last_update":"2026-03-22T12:29:12.479596948Z"} +2026/03/22 12:29:17 ───────────────────────────────────────────────── +2026/03/22 12:29:22 ── Pipeline Health ────────────────────────────── +2026/03/22 12:29:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:29:17.378311905Z"} +2026/03/22 12:29:22 [detection_layer] {"stage_name":"detection_layer","events_processed":772,"events_dropped":0,"avg_latency_ms":18.325483264042703,"throughput_eps":0,"last_update":"2026-03-22T12:29:17.479697095Z"} +2026/03/22 12:29:22 [transform_engine] {"stage_name":"transform_engine","events_processed":775,"events_dropped":0,"avg_latency_ms":386.39988811075136,"throughput_eps":0,"last_update":"2026-03-22T12:29:17.479713076Z"} +2026/03/22 12:29:22 [log_collector] {"stage_name":"log_collector","events_processed":37793,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7558.6,"last_update":"2026-03-22T12:29:17.36846333Z"} +2026/03/22 12:29:22 [metric_collector] {"stage_name":"metric_collector","events_processed":23269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4653.8,"last_update":"2026-03-22T12:29:17.368838529Z"} +2026/03/22 12:29:22 ───────────────────────────────────────────────── +2026/03/22 12:29:27 ── Pipeline Health ────────────────────────────── +2026/03/22 12:29:27 [log_collector] {"stage_name":"log_collector","events_processed":37807,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7561.4,"last_update":"2026-03-22T12:29:22.372652972Z"} +2026/03/22 12:29:27 [metric_collector] {"stage_name":"metric_collector","events_processed":23274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4654.8,"last_update":"2026-03-22T12:29:22.372646459Z"} +2026/03/22 12:29:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:29:22.37879171Z"} +2026/03/22 12:29:27 [detection_layer] {"stage_name":"detection_layer","events_processed":772,"events_dropped":0,"avg_latency_ms":18.325483264042703,"throughput_eps":0,"last_update":"2026-03-22T12:29:22.47899186Z"} +2026/03/22 12:29:27 [transform_engine] {"stage_name":"transform_engine","events_processed":775,"events_dropped":0,"avg_latency_ms":386.39988811075136,"throughput_eps":0,"last_update":"2026-03-22T12:29:22.479005186Z"} +2026/03/22 12:29:27 ───────────────────────────────────────────────── +2026/03/22 12:29:32 ── Pipeline Health ────────────────────────────── +2026/03/22 12:29:32 [log_collector] {"stage_name":"log_collector","events_processed":38113,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7622.6,"last_update":"2026-03-22T12:29:27.36886272Z"} +2026/03/22 12:29:32 [metric_collector] {"stage_name":"metric_collector","events_processed":23279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4655.8,"last_update":"2026-03-22T12:29:27.369097699Z"} +2026/03/22 12:29:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:29:27.376469099Z"} +2026/03/22 12:29:32 [detection_layer] {"stage_name":"detection_layer","events_processed":772,"events_dropped":0,"avg_latency_ms":18.325483264042703,"throughput_eps":0,"last_update":"2026-03-22T12:29:27.48000066Z"} +2026/03/22 12:29:32 [transform_engine] {"stage_name":"transform_engine","events_processed":776,"events_dropped":0,"avg_latency_ms":333.93391468860113,"throughput_eps":0,"last_update":"2026-03-22T12:29:27.603000942Z"} +2026/03/22 12:29:32 ───────────────────────────────────────────────── +2026/03/22 12:29:37 ── Pipeline Health ────────────────────────────── +2026/03/22 12:29:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:29:32.376808027Z"} +2026/03/22 12:29:37 [detection_layer] {"stage_name":"detection_layer","events_processed":773,"events_dropped":0,"avg_latency_ms":17.495010211234163,"throughput_eps":0,"last_update":"2026-03-22T12:29:32.479017186Z"} +2026/03/22 12:29:37 [transform_engine] {"stage_name":"transform_engine","events_processed":776,"events_dropped":0,"avg_latency_ms":333.93391468860113,"throughput_eps":0,"last_update":"2026-03-22T12:29:32.478907717Z"} +2026/03/22 12:29:37 [log_collector] {"stage_name":"log_collector","events_processed":38159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7631.8,"last_update":"2026-03-22T12:29:37.367955841Z"} +2026/03/22 12:29:37 [metric_collector] {"stage_name":"metric_collector","events_processed":23284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4656.8,"last_update":"2026-03-22T12:29:32.36830969Z"} +2026/03/22 12:29:37 ───────────────────────────────────────────────── +2026/03/22 12:29:42 ── Pipeline Health ────────────────────────────── +2026/03/22 12:29:42 [log_collector] {"stage_name":"log_collector","events_processed":38159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7631.8,"last_update":"2026-03-22T12:29:37.367955841Z"} +2026/03/22 12:29:42 [metric_collector] {"stage_name":"metric_collector","events_processed":23289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4657.8,"last_update":"2026-03-22T12:29:37.368471128Z"} +2026/03/22 12:29:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:29:37.375902882Z"} +2026/03/22 12:29:42 [detection_layer] {"stage_name":"detection_layer","events_processed":773,"events_dropped":0,"avg_latency_ms":17.495010211234163,"throughput_eps":0,"last_update":"2026-03-22T12:29:37.47912426Z"} +2026/03/22 12:29:42 [transform_engine] {"stage_name":"transform_engine","events_processed":776,"events_dropped":0,"avg_latency_ms":333.93391468860113,"throughput_eps":0,"last_update":"2026-03-22T12:29:37.479103862Z"} +2026/03/22 12:29:42 ───────────────────────────────────────────────── +2026/03/22 12:29:47 ── Pipeline Health ────────────────────────────── +2026/03/22 12:29:47 [log_collector] {"stage_name":"log_collector","events_processed":38169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7633.8,"last_update":"2026-03-22T12:29:42.3690048Z"} +2026/03/22 12:29:47 [metric_collector] {"stage_name":"metric_collector","events_processed":23294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4658.8,"last_update":"2026-03-22T12:29:42.3689939Z"} +2026/03/22 12:29:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9320,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:29:42.375993827Z"} +2026/03/22 12:29:47 [detection_layer] {"stage_name":"detection_layer","events_processed":773,"events_dropped":0,"avg_latency_ms":17.495010211234163,"throughput_eps":0,"last_update":"2026-03-22T12:29:42.479234291Z"} +2026/03/22 12:29:47 [transform_engine] {"stage_name":"transform_engine","events_processed":776,"events_dropped":0,"avg_latency_ms":333.93391468860113,"throughput_eps":0,"last_update":"2026-03-22T12:29:42.479207129Z"} +2026/03/22 12:29:47 ───────────────────────────────────────────────── +2026/03/22 12:29:52 ── Pipeline Health ────────────────────────────── +2026/03/22 12:29:52 [transform_engine] {"stage_name":"transform_engine","events_processed":776,"events_dropped":0,"avg_latency_ms":333.93391468860113,"throughput_eps":0,"last_update":"2026-03-22T12:29:47.478879813Z"} +2026/03/22 12:29:52 [log_collector] {"stage_name":"log_collector","events_processed":38199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7639.8,"last_update":"2026-03-22T12:29:52.367980732Z"} +2026/03/22 12:29:52 [metric_collector] {"stage_name":"metric_collector","events_processed":23299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4659.8,"last_update":"2026-03-22T12:29:47.3684514Z"} +2026/03/22 12:29:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:29:47.377746936Z"} +2026/03/22 12:29:52 [detection_layer] {"stage_name":"detection_layer","events_processed":773,"events_dropped":0,"avg_latency_ms":17.495010211234163,"throughput_eps":0,"last_update":"2026-03-22T12:29:47.47895675Z"} +2026/03/22 12:29:52 ───────────────────────────────────────────────── +2026/03/22 12:29:57 ── Pipeline Health ────────────────────────────── +2026/03/22 12:29:57 [log_collector] {"stage_name":"log_collector","events_processed":38199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7639.8,"last_update":"2026-03-22T12:29:52.367980732Z"} +2026/03/22 12:29:57 [metric_collector] {"stage_name":"metric_collector","events_processed":23304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4660.8,"last_update":"2026-03-22T12:29:52.368638842Z"} +2026/03/22 12:29:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:29:52.375403368Z"} +2026/03/22 12:29:57 [detection_layer] {"stage_name":"detection_layer","events_processed":773,"events_dropped":0,"avg_latency_ms":17.495010211234163,"throughput_eps":0,"last_update":"2026-03-22T12:29:52.479767315Z"} +2026/03/22 12:29:57 [transform_engine] {"stage_name":"transform_engine","events_processed":776,"events_dropped":0,"avg_latency_ms":333.93391468860113,"throughput_eps":0,"last_update":"2026-03-22T12:29:52.479746836Z"} +2026/03/22 12:29:57 ───────────────────────────────────────────────── +2026/03/22 12:30:02 ── Pipeline Health ────────────────────────────── +2026/03/22 12:30:02 [transform_engine] {"stage_name":"transform_engine","events_processed":777,"events_dropped":0,"avg_latency_ms":295.98956775088095,"throughput_eps":0,"last_update":"2026-03-22T12:29:57.623675467Z"} +2026/03/22 12:30:02 [log_collector] {"stage_name":"log_collector","events_processed":38201,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7640.2,"last_update":"2026-03-22T12:30:02.368425Z"} +2026/03/22 12:30:02 [metric_collector] {"stage_name":"metric_collector","events_processed":23309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4661.8,"last_update":"2026-03-22T12:29:57.368927939Z"} +2026/03/22 12:30:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:29:57.377220192Z"} +2026/03/22 12:30:02 [detection_layer] {"stage_name":"detection_layer","events_processed":773,"events_dropped":0,"avg_latency_ms":17.495010211234163,"throughput_eps":0,"last_update":"2026-03-22T12:29:57.479428279Z"} +2026/03/22 12:30:02 ───────────────────────────────────────────────── +Saved state: 24 clusters, 38212 messages, reason: none +2026/03/22 12:30:07 ── Pipeline Health ────────────────────────────── +2026/03/22 12:30:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:30:02.388280541Z"} +2026/03/22 12:30:07 [detection_layer] {"stage_name":"detection_layer","events_processed":774,"events_dropped":0,"avg_latency_ms":18.36518276898733,"throughput_eps":0,"last_update":"2026-03-22T12:30:02.479477727Z"} +2026/03/22 12:30:07 [transform_engine] {"stage_name":"transform_engine","events_processed":777,"events_dropped":0,"avg_latency_ms":295.98956775088095,"throughput_eps":0,"last_update":"2026-03-22T12:30:02.47951523Z"} +2026/03/22 12:30:07 [log_collector] {"stage_name":"log_collector","events_processed":38201,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7640.2,"last_update":"2026-03-22T12:30:02.368425Z"} +2026/03/22 12:30:07 [metric_collector] {"stage_name":"metric_collector","events_processed":23319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4663.8,"last_update":"2026-03-22T12:30:07.369219586Z"} +2026/03/22 12:30:07 ───────────────────────────────────────────────── +2026/03/22 12:30:12 ── Pipeline Health ────────────────────────────── +2026/03/22 12:30:12 [metric_collector] {"stage_name":"metric_collector","events_processed":23319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4663.8,"last_update":"2026-03-22T12:30:07.369219586Z"} +2026/03/22 12:30:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9330,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:30:07.379990126Z"} +2026/03/22 12:30:12 [detection_layer] {"stage_name":"detection_layer","events_processed":774,"events_dropped":0,"avg_latency_ms":18.36518276898733,"throughput_eps":0,"last_update":"2026-03-22T12:30:07.479369876Z"} +2026/03/22 12:30:12 [transform_engine] {"stage_name":"transform_engine","events_processed":777,"events_dropped":0,"avg_latency_ms":295.98956775088095,"throughput_eps":0,"last_update":"2026-03-22T12:30:07.479298709Z"} +2026/03/22 12:30:12 [log_collector] {"stage_name":"log_collector","events_processed":38221,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7644.2,"last_update":"2026-03-22T12:30:07.369402597Z"} +2026/03/22 12:30:12 ───────────────────────────────────────────────── +2026/03/22 12:30:17 ── Pipeline Health ────────────────────────────── +2026/03/22 12:30:17 [log_collector] {"stage_name":"log_collector","events_processed":38226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7645.2,"last_update":"2026-03-22T12:30:12.368430952Z"} +2026/03/22 12:30:17 [metric_collector] {"stage_name":"metric_collector","events_processed":23324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4664.8,"last_update":"2026-03-22T12:30:12.368243293Z"} +2026/03/22 12:30:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:30:12.377253631Z"} +2026/03/22 12:30:17 [detection_layer] {"stage_name":"detection_layer","events_processed":774,"events_dropped":0,"avg_latency_ms":18.36518276898733,"throughput_eps":0,"last_update":"2026-03-22T12:30:12.479505973Z"} +2026/03/22 12:30:17 [transform_engine] {"stage_name":"transform_engine","events_processed":777,"events_dropped":0,"avg_latency_ms":295.98956775088095,"throughput_eps":0,"last_update":"2026-03-22T12:30:12.479488339Z"} +2026/03/22 12:30:17 ───────────────────────────────────────────────── +2026/03/22 12:30:22 ── Pipeline Health ────────────────────────────── +2026/03/22 12:30:22 [log_collector] {"stage_name":"log_collector","events_processed":38226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7645.2,"last_update":"2026-03-22T12:30:17.368403033Z"} +2026/03/22 12:30:22 [metric_collector] {"stage_name":"metric_collector","events_processed":23329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4665.8,"last_update":"2026-03-22T12:30:17.368809812Z"} +2026/03/22 12:30:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:30:17.378155964Z"} +2026/03/22 12:30:22 [detection_layer] {"stage_name":"detection_layer","events_processed":774,"events_dropped":0,"avg_latency_ms":18.36518276898733,"throughput_eps":0,"last_update":"2026-03-22T12:30:17.479369787Z"} +2026/03/22 12:30:22 [transform_engine] {"stage_name":"transform_engine","events_processed":777,"events_dropped":0,"avg_latency_ms":295.98956775088095,"throughput_eps":0,"last_update":"2026-03-22T12:30:17.479508052Z"} +2026/03/22 12:30:22 ───────────────────────────────────────────────── +2026/03/22 12:30:27 ── Pipeline Health ────────────────────────────── +2026/03/22 12:30:27 [log_collector] {"stage_name":"log_collector","events_processed":38226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7645.2,"last_update":"2026-03-22T12:30:22.368933838Z"} +2026/03/22 12:30:27 [metric_collector] {"stage_name":"metric_collector","events_processed":23334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4666.8,"last_update":"2026-03-22T12:30:22.369431421Z"} +2026/03/22 12:30:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:30:22.378384981Z"} +2026/03/22 12:30:27 [detection_layer] {"stage_name":"detection_layer","events_processed":774,"events_dropped":0,"avg_latency_ms":18.36518276898733,"throughput_eps":0,"last_update":"2026-03-22T12:30:22.479533528Z"} +2026/03/22 12:30:27 [transform_engine] {"stage_name":"transform_engine","events_processed":777,"events_dropped":0,"avg_latency_ms":295.98956775088095,"throughput_eps":0,"last_update":"2026-03-22T12:30:22.479561451Z"} +2026/03/22 12:30:27 ───────────────────────────────────────────────── +2026/03/22 12:30:32 ── Pipeline Health ────────────────────────────── +2026/03/22 12:30:32 [log_collector] {"stage_name":"log_collector","events_processed":38226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7645.2,"last_update":"2026-03-22T12:30:27.369028267Z"} +2026/03/22 12:30:32 [metric_collector] {"stage_name":"metric_collector","events_processed":23339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4667.8,"last_update":"2026-03-22T12:30:27.369243318Z"} +2026/03/22 12:30:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:30:27.379200009Z"} +2026/03/22 12:30:32 [detection_layer] {"stage_name":"detection_layer","events_processed":774,"events_dropped":0,"avg_latency_ms":18.36518276898733,"throughput_eps":0,"last_update":"2026-03-22T12:30:27.479504119Z"} +2026/03/22 12:30:32 [transform_engine] {"stage_name":"transform_engine","events_processed":778,"events_dropped":0,"avg_latency_ms":261.11545360070477,"throughput_eps":0,"last_update":"2026-03-22T12:30:27.601181057Z"} +2026/03/22 12:30:32 ───────────────────────────────────────────────── +2026/03/22 12:30:37 ── Pipeline Health ────────────────────────────── +2026/03/22 12:30:37 [transform_engine] {"stage_name":"transform_engine","events_processed":778,"events_dropped":0,"avg_latency_ms":261.11545360070477,"throughput_eps":0,"last_update":"2026-03-22T12:30:32.479501153Z"} +2026/03/22 12:30:37 [log_collector] {"stage_name":"log_collector","events_processed":38226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7645.2,"last_update":"2026-03-22T12:30:32.368604244Z"} +2026/03/22 12:30:37 [metric_collector] {"stage_name":"metric_collector","events_processed":23344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4668.8,"last_update":"2026-03-22T12:30:32.369054386Z"} +2026/03/22 12:30:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:30:32.376103637Z"} +2026/03/22 12:30:37 [detection_layer] {"stage_name":"detection_layer","events_processed":775,"events_dropped":0,"avg_latency_ms":19.003792415189864,"throughput_eps":0,"last_update":"2026-03-22T12:30:32.479522334Z"} +2026/03/22 12:30:37 ───────────────────────────────────────────────── +2026/03/22 12:30:42 ── Pipeline Health ────────────────────────────── +2026/03/22 12:30:42 [log_collector] {"stage_name":"log_collector","events_processed":38236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7647.2,"last_update":"2026-03-22T12:30:37.368330219Z"} +2026/03/22 12:30:42 [metric_collector] {"stage_name":"metric_collector","events_processed":23349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4669.8,"last_update":"2026-03-22T12:30:37.368833192Z"} +2026/03/22 12:30:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9342,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:30:37.376823847Z"} +2026/03/22 12:30:42 [detection_layer] {"stage_name":"detection_layer","events_processed":775,"events_dropped":0,"avg_latency_ms":19.003792415189864,"throughput_eps":0,"last_update":"2026-03-22T12:30:37.479057763Z"} +2026/03/22 12:30:42 [transform_engine] {"stage_name":"transform_engine","events_processed":778,"events_dropped":0,"avg_latency_ms":261.11545360070477,"throughput_eps":0,"last_update":"2026-03-22T12:30:37.47910323Z"} +2026/03/22 12:30:42 ───────────────────────────────────────────────── +2026/03/22 12:30:47 ── Pipeline Health ────────────────────────────── +2026/03/22 12:30:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:30:42.377262326Z"} +2026/03/22 12:30:47 [detection_layer] {"stage_name":"detection_layer","events_processed":775,"events_dropped":0,"avg_latency_ms":19.003792415189864,"throughput_eps":0,"last_update":"2026-03-22T12:30:42.479501754Z"} +2026/03/22 12:30:47 [transform_engine] {"stage_name":"transform_engine","events_processed":778,"events_dropped":0,"avg_latency_ms":261.11545360070477,"throughput_eps":0,"last_update":"2026-03-22T12:30:42.479573692Z"} +2026/03/22 12:30:47 [log_collector] {"stage_name":"log_collector","events_processed":38251,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7650.2,"last_update":"2026-03-22T12:30:47.368298527Z"} +2026/03/22 12:30:47 [metric_collector] {"stage_name":"metric_collector","events_processed":23354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4670.8,"last_update":"2026-03-22T12:30:42.368615243Z"} +2026/03/22 12:30:47 ───────────────────────────────────────────────── +2026/03/22 12:30:52 ── Pipeline Health ────────────────────────────── +2026/03/22 12:30:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:30:47.377410119Z"} +2026/03/22 12:30:52 [detection_layer] {"stage_name":"detection_layer","events_processed":775,"events_dropped":0,"avg_latency_ms":19.003792415189864,"throughput_eps":0,"last_update":"2026-03-22T12:30:47.479839351Z"} +2026/03/22 12:30:52 [transform_engine] {"stage_name":"transform_engine","events_processed":778,"events_dropped":0,"avg_latency_ms":261.11545360070477,"throughput_eps":0,"last_update":"2026-03-22T12:30:47.479789395Z"} +2026/03/22 12:30:52 [log_collector] {"stage_name":"log_collector","events_processed":38251,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7650.2,"last_update":"2026-03-22T12:30:47.368298527Z"} +2026/03/22 12:30:52 [metric_collector] {"stage_name":"metric_collector","events_processed":23359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4671.8,"last_update":"2026-03-22T12:30:47.368927292Z"} +2026/03/22 12:30:52 ───────────────────────────────────────────────── +2026/03/22 12:30:57 ── Pipeline Health ────────────────────────────── +2026/03/22 12:30:57 [log_collector] {"stage_name":"log_collector","events_processed":38251,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7650.2,"last_update":"2026-03-22T12:30:52.368480999Z"} +2026/03/22 12:30:57 [metric_collector] {"stage_name":"metric_collector","events_processed":23363,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4672.6,"last_update":"2026-03-22T12:30:52.368488923Z"} +2026/03/22 12:30:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:30:52.377204166Z"} +2026/03/22 12:30:57 [detection_layer] {"stage_name":"detection_layer","events_processed":775,"events_dropped":0,"avg_latency_ms":19.003792415189864,"throughput_eps":0,"last_update":"2026-03-22T12:30:52.47950916Z"} +2026/03/22 12:30:57 [transform_engine] {"stage_name":"transform_engine","events_processed":778,"events_dropped":0,"avg_latency_ms":261.11545360070477,"throughput_eps":0,"last_update":"2026-03-22T12:30:52.479407685Z"} +2026/03/22 12:30:57 ───────────────────────────────────────────────── +2026/03/22 12:31:02 ── Pipeline Health ────────────────────────────── +2026/03/22 12:31:02 [log_collector] {"stage_name":"log_collector","events_processed":38251,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7650.2,"last_update":"2026-03-22T12:31:02.368477077Z"} +2026/03/22 12:31:02 [metric_collector] {"stage_name":"metric_collector","events_processed":23369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4673.8,"last_update":"2026-03-22T12:30:57.36871989Z"} +2026/03/22 12:31:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9350,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:30:57.376840603Z"} +2026/03/22 12:31:02 [detection_layer] {"stage_name":"detection_layer","events_processed":775,"events_dropped":0,"avg_latency_ms":19.003792415189864,"throughput_eps":0,"last_update":"2026-03-22T12:30:57.479593915Z"} +2026/03/22 12:31:02 [transform_engine] {"stage_name":"transform_engine","events_processed":779,"events_dropped":0,"avg_latency_ms":232.68949748056383,"throughput_eps":0,"last_update":"2026-03-22T12:30:57.598129205Z"} +2026/03/22 12:31:02 ───────────────────────────────────────────────── +2026/03/22 12:31:07 ── Pipeline Health ────────────────────────────── +2026/03/22 12:31:07 [log_collector] {"stage_name":"log_collector","events_processed":38251,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7650.2,"last_update":"2026-03-22T12:31:02.368477077Z"} +2026/03/22 12:31:07 [metric_collector] {"stage_name":"metric_collector","events_processed":23374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4674.8,"last_update":"2026-03-22T12:31:02.369012372Z"} +2026/03/22 12:31:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:31:02.378660913Z"} +2026/03/22 12:31:07 [detection_layer] {"stage_name":"detection_layer","events_processed":776,"events_dropped":0,"avg_latency_ms":19.88431433215189,"throughput_eps":0,"last_update":"2026-03-22T12:31:02.479886959Z"} +2026/03/22 12:31:07 [transform_engine] {"stage_name":"transform_engine","events_processed":779,"events_dropped":0,"avg_latency_ms":232.68949748056383,"throughput_eps":0,"last_update":"2026-03-22T12:31:02.479899203Z"} +2026/03/22 12:31:07 ───────────────────────────────────────────────── +Saved state: 24 clusters, 38252 messages, reason: none +2026/03/22 12:31:12 ── Pipeline Health ────────────────────────────── +2026/03/22 12:31:12 [log_collector] {"stage_name":"log_collector","events_processed":38264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7652.8,"last_update":"2026-03-22T12:31:12.368776689Z"} +2026/03/22 12:31:12 [metric_collector] {"stage_name":"metric_collector","events_processed":23379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4675.8,"last_update":"2026-03-22T12:31:07.368321243Z"} +2026/03/22 12:31:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:31:07.376767591Z"} +2026/03/22 12:31:12 [detection_layer] {"stage_name":"detection_layer","events_processed":776,"events_dropped":0,"avg_latency_ms":19.88431433215189,"throughput_eps":0,"last_update":"2026-03-22T12:31:07.478999054Z"} +2026/03/22 12:31:12 [transform_engine] {"stage_name":"transform_engine","events_processed":779,"events_dropped":0,"avg_latency_ms":232.68949748056383,"throughput_eps":0,"last_update":"2026-03-22T12:31:07.479015856Z"} +2026/03/22 12:31:12 ───────────────────────────────────────────────── +2026/03/22 12:31:17 ── Pipeline Health ────────────────────────────── +2026/03/22 12:31:17 [detection_layer] {"stage_name":"detection_layer","events_processed":776,"events_dropped":0,"avg_latency_ms":19.88431433215189,"throughput_eps":0,"last_update":"2026-03-22T12:31:12.479339309Z"} +2026/03/22 12:31:17 [transform_engine] {"stage_name":"transform_engine","events_processed":779,"events_dropped":0,"avg_latency_ms":232.68949748056383,"throughput_eps":0,"last_update":"2026-03-22T12:31:12.479370829Z"} +2026/03/22 12:31:17 [log_collector] {"stage_name":"log_collector","events_processed":38264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7652.8,"last_update":"2026-03-22T12:31:12.368776689Z"} +2026/03/22 12:31:17 [metric_collector] {"stage_name":"metric_collector","events_processed":23384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4676.8,"last_update":"2026-03-22T12:31:12.369143763Z"} +2026/03/22 12:31:17 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:31:12.378277127Z"} +2026/03/22 12:31:17 ───────────────────────────────────────────────── +2026/03/22 12:31:22 ── Pipeline Health ────────────────────────────── +2026/03/22 12:31:22 [transform_engine] {"stage_name":"transform_engine","events_processed":779,"events_dropped":0,"avg_latency_ms":232.68949748056383,"throughput_eps":0,"last_update":"2026-03-22T12:31:17.479193034Z"} +2026/03/22 12:31:22 [log_collector] {"stage_name":"log_collector","events_processed":38290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7658,"last_update":"2026-03-22T12:31:22.368516322Z"} +2026/03/22 12:31:22 [metric_collector] {"stage_name":"metric_collector","events_processed":23389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4677.8,"last_update":"2026-03-22T12:31:17.368534069Z"} +2026/03/22 12:31:22 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:31:17.37697606Z"} +2026/03/22 12:31:22 [detection_layer] {"stage_name":"detection_layer","events_processed":776,"events_dropped":0,"avg_latency_ms":19.88431433215189,"throughput_eps":0,"last_update":"2026-03-22T12:31:17.479181121Z"} +2026/03/22 12:31:22 ───────────────────────────────────────────────── +2026/03/22 12:31:27 ── Pipeline Health ────────────────────────────── +2026/03/22 12:31:27 [log_collector] {"stage_name":"log_collector","events_processed":38290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7658,"last_update":"2026-03-22T12:31:22.368516322Z"} +2026/03/22 12:31:27 [metric_collector] {"stage_name":"metric_collector","events_processed":23394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4678.8,"last_update":"2026-03-22T12:31:22.369096984Z"} +2026/03/22 12:31:27 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9360,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:31:22.378784139Z"} +2026/03/22 12:31:27 [detection_layer] {"stage_name":"detection_layer","events_processed":776,"events_dropped":0,"avg_latency_ms":19.88431433215189,"throughput_eps":0,"last_update":"2026-03-22T12:31:22.478951216Z"} +2026/03/22 12:31:27 [transform_engine] {"stage_name":"transform_engine","events_processed":779,"events_dropped":0,"avg_latency_ms":232.68949748056383,"throughput_eps":0,"last_update":"2026-03-22T12:31:22.478911952Z"} +2026/03/22 12:31:27 ───────────────────────────────────────────────── +2026/03/22 12:31:32 ── Pipeline Health ────────────────────────────── +2026/03/22 12:31:32 [transform_engine] {"stage_name":"transform_engine","events_processed":780,"events_dropped":0,"avg_latency_ms":210.3454143844511,"throughput_eps":0,"last_update":"2026-03-22T12:31:27.600482834Z"} +2026/03/22 12:31:32 [log_collector] {"stage_name":"log_collector","events_processed":38290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7658,"last_update":"2026-03-22T12:31:32.368308528Z"} +2026/03/22 12:31:32 [metric_collector] {"stage_name":"metric_collector","events_processed":23399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4679.8,"last_update":"2026-03-22T12:31:27.368669313Z"} +2026/03/22 12:31:32 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:31:27.377102205Z"} +2026/03/22 12:31:32 [detection_layer] {"stage_name":"detection_layer","events_processed":776,"events_dropped":0,"avg_latency_ms":19.88431433215189,"throughput_eps":0,"last_update":"2026-03-22T12:31:27.479492972Z"} +2026/03/22 12:31:32 ───────────────────────────────────────────────── +2026/03/22 12:31:37 ── Pipeline Health ────────────────────────────── +2026/03/22 12:31:37 [metric_collector] {"stage_name":"metric_collector","events_processed":23404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4680.8,"last_update":"2026-03-22T12:31:32.369062042Z"} +2026/03/22 12:31:37 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:31:32.378658984Z"} +2026/03/22 12:31:37 [detection_layer] {"stage_name":"detection_layer","events_processed":777,"events_dropped":0,"avg_latency_ms":19.693210465721513,"throughput_eps":0,"last_update":"2026-03-22T12:31:32.479893717Z"} +2026/03/22 12:31:37 [transform_engine] {"stage_name":"transform_engine","events_processed":780,"events_dropped":0,"avg_latency_ms":210.3454143844511,"throughput_eps":0,"last_update":"2026-03-22T12:31:32.479917192Z"} +2026/03/22 12:31:37 [log_collector] {"stage_name":"log_collector","events_processed":38290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7658,"last_update":"2026-03-22T12:31:32.368308528Z"} +2026/03/22 12:31:37 ───────────────────────────────────────────────── +2026/03/22 12:31:42 ── Pipeline Health ────────────────────────────── +2026/03/22 12:31:42 [metric_collector] {"stage_name":"metric_collector","events_processed":23409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4681.8,"last_update":"2026-03-22T12:31:37.368680259Z"} +2026/03/22 12:31:42 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:31:37.378461644Z"} +2026/03/22 12:31:42 [detection_layer] {"stage_name":"detection_layer","events_processed":777,"events_dropped":0,"avg_latency_ms":19.693210465721513,"throughput_eps":0,"last_update":"2026-03-22T12:31:37.47920197Z"} +2026/03/22 12:31:42 [transform_engine] {"stage_name":"transform_engine","events_processed":780,"events_dropped":0,"avg_latency_ms":210.3454143844511,"throughput_eps":0,"last_update":"2026-03-22T12:31:37.479225775Z"} +2026/03/22 12:31:42 [log_collector] {"stage_name":"log_collector","events_processed":38300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7660,"last_update":"2026-03-22T12:31:37.367966481Z"} +2026/03/22 12:31:42 ───────────────────────────────────────────────── +2026/03/22 12:31:47 ── Pipeline Health ────────────────────────────── +2026/03/22 12:31:47 [detection_layer] {"stage_name":"detection_layer","events_processed":777,"events_dropped":0,"avg_latency_ms":19.693210465721513,"throughput_eps":0,"last_update":"2026-03-22T12:31:42.479423263Z"} +2026/03/22 12:31:47 [transform_engine] {"stage_name":"transform_engine","events_processed":780,"events_dropped":0,"avg_latency_ms":210.3454143844511,"throughput_eps":0,"last_update":"2026-03-22T12:31:42.47945344Z"} +2026/03/22 12:31:47 [log_collector] {"stage_name":"log_collector","events_processed":38310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7662,"last_update":"2026-03-22T12:31:42.368392868Z"} +2026/03/22 12:31:47 [metric_collector] {"stage_name":"metric_collector","events_processed":23414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4682.8,"last_update":"2026-03-22T12:31:42.368180161Z"} +2026/03/22 12:31:47 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:31:42.378120649Z"} +2026/03/22 12:31:47 ───────────────────────────────────────────────── +2026/03/22 12:31:52 ── Pipeline Health ────────────────────────────── +2026/03/22 12:31:52 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:31:47.377587347Z"} +2026/03/22 12:31:52 [detection_layer] {"stage_name":"detection_layer","events_processed":777,"events_dropped":0,"avg_latency_ms":19.693210465721513,"throughput_eps":0,"last_update":"2026-03-22T12:31:47.479912129Z"} +2026/03/22 12:31:52 [transform_engine] {"stage_name":"transform_engine","events_processed":780,"events_dropped":0,"avg_latency_ms":210.3454143844511,"throughput_eps":0,"last_update":"2026-03-22T12:31:47.47992856Z"} +2026/03/22 12:31:52 [log_collector] {"stage_name":"log_collector","events_processed":38315,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7663,"last_update":"2026-03-22T12:31:47.368333042Z"} +2026/03/22 12:31:52 [metric_collector] {"stage_name":"metric_collector","events_processed":23419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4683.8,"last_update":"2026-03-22T12:31:47.368767384Z"} +2026/03/22 12:31:52 ───────────────────────────────────────────────── +2026/03/22 12:31:57 ── Pipeline Health ────────────────────────────── +2026/03/22 12:31:57 [log_collector] {"stage_name":"log_collector","events_processed":38315,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7663,"last_update":"2026-03-22T12:31:52.368270613Z"} +2026/03/22 12:31:57 [metric_collector] {"stage_name":"metric_collector","events_processed":23424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4684.8,"last_update":"2026-03-22T12:31:52.368486728Z"} +2026/03/22 12:31:57 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:31:52.377748798Z"} +2026/03/22 12:31:57 [detection_layer] {"stage_name":"detection_layer","events_processed":777,"events_dropped":0,"avg_latency_ms":19.693210465721513,"throughput_eps":0,"last_update":"2026-03-22T12:31:52.479962466Z"} +2026/03/22 12:31:57 [transform_engine] {"stage_name":"transform_engine","events_processed":780,"events_dropped":0,"avg_latency_ms":210.3454143844511,"throughput_eps":0,"last_update":"2026-03-22T12:31:52.478849906Z"} +2026/03/22 12:31:57 ───────────────────────────────────────────────── +2026/03/22 12:32:02 ── Pipeline Health ────────────────────────────── +2026/03/22 12:32:02 [log_collector] {"stage_name":"log_collector","events_processed":38315,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7663,"last_update":"2026-03-22T12:31:57.367953518Z"} +2026/03/22 12:32:02 [metric_collector] {"stage_name":"metric_collector","events_processed":23429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4685.8,"last_update":"2026-03-22T12:31:57.368261988Z"} +2026/03/22 12:32:02 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:31:57.376753213Z"} +2026/03/22 12:32:02 [detection_layer] {"stage_name":"detection_layer","events_processed":777,"events_dropped":0,"avg_latency_ms":19.693210465721513,"throughput_eps":0,"last_update":"2026-03-22T12:31:57.480003506Z"} +2026/03/22 12:32:02 [transform_engine] {"stage_name":"transform_engine","events_processed":781,"events_dropped":0,"avg_latency_ms":199.0963757075609,"throughput_eps":0,"last_update":"2026-03-22T12:31:57.632992639Z"} +2026/03/22 12:32:02 ───────────────────────────────────────────────── +2026/03/22 12:32:07 ── Pipeline Health ────────────────────────────── +2026/03/22 12:32:07 [log_collector] {"stage_name":"log_collector","events_processed":38315,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7663,"last_update":"2026-03-22T12:32:02.368617872Z"} +2026/03/22 12:32:07 [metric_collector] {"stage_name":"metric_collector","events_processed":23434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4686.8,"last_update":"2026-03-22T12:32:02.368843524Z"} +2026/03/22 12:32:07 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:32:02.378226797Z"} +2026/03/22 12:32:07 [detection_layer] {"stage_name":"detection_layer","events_processed":778,"events_dropped":0,"avg_latency_ms":19.85211057257721,"throughput_eps":0,"last_update":"2026-03-22T12:32:02.479517648Z"} +2026/03/22 12:32:07 [transform_engine] {"stage_name":"transform_engine","events_processed":781,"events_dropped":0,"avg_latency_ms":199.0963757075609,"throughput_eps":0,"last_update":"2026-03-22T12:32:02.479541604Z"} +2026/03/22 12:32:07 ───────────────────────────────────────────────── +Saved state: 24 clusters, 38321 messages, reason: none +2026/03/22 12:32:12 ── Pipeline Health ────────────────────────────── +2026/03/22 12:32:12 [transform_engine] {"stage_name":"transform_engine","events_processed":781,"events_dropped":0,"avg_latency_ms":199.0963757075609,"throughput_eps":0,"last_update":"2026-03-22T12:32:07.479076475Z"} +2026/03/22 12:32:12 [log_collector] {"stage_name":"log_collector","events_processed":38315,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7663,"last_update":"2026-03-22T12:32:07.368179284Z"} +2026/03/22 12:32:12 [metric_collector] {"stage_name":"metric_collector","events_processed":23439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4687.8,"last_update":"2026-03-22T12:32:07.368512303Z"} +2026/03/22 12:32:12 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":9378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-22T12:32:07.3778563Z"} +2026/03/22 12:32:12 [detection_layer] {"stage_name":"detection_layer","events_processed":778,"events_dropped":0,"avg_latency_ms":19.85211057257721,"throughput_eps":0,"last_update":"2026-03-22T12:32:07.47906331Z"} +2026/03/22 12:32:12 ───────────────────────────────────────────────── +2026/03/22 12:32:15 shutting down… +2026/03/22 12:32:16 pipeline stopped diff --git a/evaluation/data/pipeline_high-bw_run1/anomalies.jsonl b/evaluation/data/pipeline_high-bw_run1/anomalies.jsonl new file mode 100644 index 0000000..748b8e5 --- /dev/null +++ b/evaluation/data/pipeline_high-bw_run1/anomalies.jsonl @@ -0,0 +1,538 @@ +{"timestamp":"2026-03-15T17:00:18.284838087Z","score":0.5,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=0.50 RRCF-fast:w=0.20,s=0.50 RRCF-mid:w=0.20,s=0.50 RRCF-slow:w=0.20,s=0.50 COPOD:w=0.20,s=0.50"} +{"timestamp":"2026-03-15T17:00:48.357633315Z","score":1,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=1.00 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-15T17:01:18.352309326Z","score":0.8999999999999999,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=0.50 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-15T17:01:48.258803248Z","score":0.6659979995709293,"is_anomaly":false,"confidence":0.7399977773010327,"method":"SEAD","details":"MAD!:w=0.20,s=0.33 RRCF-fast:w=0.20,s=0.67 RRCF-mid:w=0.20,s=0.67 RRCF-slow:w=0.20,s=0.67 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-15T17:02:18.258617624Z","score":0.5977825736367888,"is_anomaly":false,"confidence":0.664202859596432,"method":"SEAD","details":"MAD!:w=0.20,s=0.00 RRCF-fast:w=0.20,s=0.75 RRCF-mid:w=0.20,s=0.75 RRCF-slow:w=0.20,s=0.75 COPOD!:w=0.20,s=0.75"} +{"timestamp":"2026-03-15T17:02:48.92416467Z","score":0.9209365849911403,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.21,s=1.00 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=0.60"} +{"timestamp":"2026-03-15T17:03:18.355584736Z","score":0.7981237199693227,"is_anomaly":false,"confidence":0.8666435159343799,"method":"SEAD","details":"MAD!:w=0.21,s=0.50 RRCF-fast:w=0.20,s=0.83 RRCF-mid:w=0.20,s=0.83 RRCF-slow:w=0.20,s=0.83 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-15T17:03:48.312446485Z","score":0.7097022344992907,"is_anomaly":false,"confidence":0.7885580383325453,"method":"SEAD","details":"MAD!:w=0.21,s=0.14 RRCF-fast:w=0.20,s=0.71 RRCF-mid:w=0.20,s=0.86 RRCF-slow:w=0.20,s=0.86 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-15T17:04:18.298522657Z","score":0.9217228894452746,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.21,s=0.62 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-15T17:04:48.851577255Z","score":0.7544423564887714,"is_anomaly":false,"confidence":0.8192120595317965,"method":"SEAD","details":"MAD!:w=0.21,s=0.67 RRCF-fast:w=0.20,s=0.78 RRCF-mid:w=0.20,s=0.78 RRCF-slow:w=0.20,s=0.78 COPOD!:w=0.20,s=0.78"} +{"timestamp":"2026-03-15T17:05:20.308446441Z","score":0.600342174804058,"is_anomaly":false,"confidence":0.6518822083822781,"method":"SEAD","details":"MAD!:w=0.21,s=0.60 RRCF-fast:w=0.20,s=0.70 RRCF-mid:w=0.20,s=0.70 RRCF-slow:w=0.20,s=0.70 COPOD!:w=0.20,s=0.30"} +{"timestamp":"2026-03-15T17:05:50.21058785Z","score":0.610206123353885,"is_anomaly":false,"confidence":0.6625929877242909,"method":"SEAD","details":"MAD!:w=0.21,s=0.00 RRCF-fast:w=0.20,s=0.64 RRCF-mid:w=0.20,s=0.73 RRCF-slow:w=0.20,s=0.73 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-15T17:06:25.141426081Z","score":0.9481412489575111,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.21,s=0.83 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=0.92"} +{"timestamp":"2026-03-15T17:06:48.348008351Z","score":0.7021579378499796,"is_anomaly":false,"confidence":0.7617885439218756,"method":"SEAD","details":"MAD!:w=0.21,s=0.38 RRCF-fast:w=0.20,s=0.77 RRCF-mid:w=0.20,s=0.69 RRCF-slow:w=0.20,s=0.69 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-15T17:07:18.26099164Z","score":0.5250276355512085,"is_anomaly":false,"confidence":0.5701018334028498,"method":"SEAD","details":"MAD!:w=0.22,s=0.36 RRCF-fast:w=0.20,s=0.50 RRCF-mid:w=0.20,s=0.50 RRCF-slow:w=0.20,s=0.50 COPOD!:w=0.20,s=0.79"} +{"timestamp":"2026-03-15T17:07:48.258342367Z","score":0.5257112611946947,"is_anomaly":false,"confidence":0.5708441490569649,"method":"SEAD","details":"MAD!:w=0.22,s=0.13 RRCF-fast:w=0.20,s=0.67 RRCF-mid:w=0.20,s=0.67 RRCF-slow:w=0.20,s=0.67 COPOD!:w=0.19,s=0.53"} +{"timestamp":"2026-03-15T17:08:20.510039188Z","score":0.9618352954890192,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.22,s=0.94 RRCF-fast:w=0.20,s=0.88 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.19,s=1.00"} +{"timestamp":"2026-03-15T17:08:48.304090286Z","score":0.7464823478997425,"is_anomaly":false,"confidence":0.8098771945969596,"method":"SEAD","details":"MAD!:w=0.22,s=0.47 RRCF-fast:w=0.20,s=0.82 RRCF-mid:w=0.20,s=0.76 RRCF-slow:w=0.20,s=0.76 COPOD!:w=0.19,s=0.94"} +{"timestamp":"2026-03-15T17:09:18.261873003Z","score":0.5715483134288925,"is_anomaly":false,"confidence":0.620086926313472,"method":"SEAD","details":"MAD!:w=0.22,s=0.28 RRCF-fast:w=0.20,s=0.72 RRCF-mid:w=0.20,s=0.78 RRCF-slow:w=0.20,s=0.78 COPOD!:w=0.19,s=0.33"} +{"timestamp":"2026-03-15T17:09:48.300017997Z","score":0.764102828217246,"is_anomaly":false,"confidence":0.8289940902705694,"method":"SEAD","details":"MAD!:w=0.22,s=0.58 RRCF-fast!:w=0.20,s=1.00 RRCF-mid:w=0.19,s=0.89 RRCF-slow:w=0.19,s=0.89 COPOD!:w=0.19,s=0.47"} +{"timestamp":"2026-03-15T17:10:21.251848445Z","score":0.7290303121169894,"is_anomaly":false,"confidence":0.7909430485725982,"method":"SEAD","details":"MAD!:w=0.22,s=0.70 RRCF-fast!:w=0.20,s=0.95 RRCF-mid:w=0.19,s=0.85 RRCF-slow:w=0.19,s=0.85 COPOD!:w=0.20,s=0.30"} +{"timestamp":"2026-03-15T17:10:48.298741378Z","score":0.6119934648187804,"is_anomaly":false,"confidence":0.664533774412565,"method":"SEAD","details":"MAD!:w=0.22,s=0.67 RRCF-fast:w=0.19,s=0.38 RRCF-mid:w=0.19,s=0.52 RRCF-slow:w=0.19,s=0.52 COPOD!:w=0.20,s=0.95"} +{"timestamp":"2026-03-15T17:11:18.308166916Z","score":0.4525646125002314,"is_anomaly":false,"confidence":0.4914177804159938,"method":"SEAD","details":"MAD!:w=0.22,s=0.05 RRCF-fast:w=0.20,s=0.59 RRCF-mid:w=0.19,s=0.59 RRCF-slow:w=0.19,s=0.59 COPOD!:w=0.20,s=0.50"} +{"timestamp":"2026-03-15T17:11:48.29945427Z","score":0.9092831247693007,"is_anomaly":false,"confidence":0.9873460774479367,"method":"SEAD","details":"MAD!:w=0.22,s=0.78 RRCF-fast:w=0.19,s=0.91 RRCF-mid!:w=0.19,s=0.96 RRCF-slow!:w=0.19,s=0.96 COPOD!:w=0.20,s=0.96"} +{"timestamp":"2026-03-15T17:12:18.351062349Z","score":0.6904528372062381,"is_anomaly":false,"confidence":0.7497289698974012,"method":"SEAD","details":"MAD!:w=0.22,s=0.38 RRCF-fast:w=0.19,s=0.88 RRCF-mid:w=0.19,s=0.75 RRCF-slow:w=0.19,s=0.75 COPOD!:w=0.19,s=0.75"} +{"timestamp":"2026-03-15T17:12:49.660256746Z","score":0.4675440865772226,"is_anomaly":false,"confidence":0.5076832587574099,"method":"SEAD","details":"MAD!:w=0.23,s=0.32 RRCF-fast:w=0.19,s=0.40 RRCF-mid:w=0.19,s=0.44 RRCF-slow:w=0.19,s=0.44 COPOD!:w=0.19,s=0.76"} +{"timestamp":"2026-03-15T17:13:18.302298478Z","score":0.8771432153646778,"is_anomaly":false,"confidence":0.9524469216011395,"method":"SEAD","details":"MAD!:w=0.23,s=0.88 RRCF-fast!:w=0.19,s=1.00 RRCF-mid!:w=0.19,s=1.00 RRCF-slow!:w=0.19,s=1.00 COPOD!:w=0.19,s=0.50"} +{"timestamp":"2026-03-15T17:13:49.767991473Z","score":0.8166944229385905,"is_anomaly":false,"confidence":0.8981739578041752,"method":"SEAD","details":"MAD!:w=0.23,s=0.67 RRCF-fast:w=0.19,s=0.85 RRCF-mid!:w=0.19,s=0.96 RRCF-slow!:w=0.19,s=1.00 COPOD!:w=0.20,s=0.63"} +{"timestamp":"2026-03-15T17:14:18.302190499Z","score":0.43971784590034824,"is_anomaly":false,"confidence":0.4835873821059986,"method":"SEAD","details":"MAD!:w=0.23,s=0.57 RRCF-fast:w=0.19,s=0.43 RRCF-mid:w=0.19,s=0.46 RRCF-slow:w=0.19,s=0.46 COPOD!:w=0.20,s=0.25"} +{"timestamp":"2026-03-15T17:14:48.258589423Z","score":0.38247254378674195,"is_anomaly":false,"confidence":0.4206308611344582,"method":"SEAD","details":"MAD!:w=0.23,s=0.10 RRCF-fast:w=0.19,s=0.59 RRCF-mid:w=0.19,s=0.59 RRCF-slow:w=0.19,s=0.55 COPOD!:w=0.20,s=0.14"} +{"timestamp":"2026-03-15T17:15:19.741547396Z","score":0.9315440496584699,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.23,s=0.90 RRCF-fast!:w=0.19,s=0.93 RRCF-mid!:w=0.19,s=1.00 RRCF-slow!:w=0.19,s=1.00 COPOD!:w=0.20,s=0.83"} +{"timestamp":"2026-03-15T17:15:50.803552055Z","score":0.8567994527758739,"is_anomaly":false,"confidence":0.9303566247008382,"method":"SEAD","details":"MAD!:w=0.23,s=0.65 RRCF-fast!:w=0.19,s=1.00 RRCF-mid!:w=0.19,s=0.90 RRCF-slow!:w=0.19,s=0.90 COPOD!:w=0.20,s=0.87"} +{"timestamp":"2026-03-15T17:16:18.350296482Z","score":0.491402982517919,"is_anomaly":false,"confidence":0.5335904670598426,"method":"SEAD","details":"MAD!:w=0.23,s=0.53 RRCF-fast:w=0.19,s=0.38 RRCF-mid:w=0.19,s=0.34 RRCF-slow:w=0.19,s=0.34 COPOD!:w=0.20,s=0.84"} +{"timestamp":"2026-03-15T17:16:48.261859358Z","score":0.4398641247606059,"is_anomaly":false,"confidence":0.4776269418863814,"method":"SEAD","details":"MAD!:w=0.23,s=0.06 RRCF-fast:w=0.19,s=0.55 RRCF-mid:w=0.19,s=0.64 RRCF-slow:w=0.19,s=0.64 COPOD!:w=0.20,s=0.39"} +{"timestamp":"2026-03-15T17:17:18.315872119Z","score":0.8078077576284488,"is_anomaly":false,"confidence":0.888400692395344,"method":"SEAD","details":"MAD!:w=0.23,s=0.76 RRCF-fast!:w=0.19,s=0.94 RRCF-mid!:w=0.19,s=0.97 RRCF-slow!:w=0.19,s=0.97 COPOD!:w=0.20,s=0.41"} +{"timestamp":"2026-03-15T17:17:48.30324508Z","score":0.7206261181858585,"is_anomaly":false,"confidence":0.7925211615124745,"method":"SEAD","details":"MAD!:w=0.23,s=0.29 RRCF-fast:w=0.19,s=0.77 RRCF-mid:w=0.19,s=0.89 RRCF-slow:w=0.19,s=0.80 COPOD!:w=0.20,s=0.94"} +{"timestamp":"2026-03-15T17:18:18.307811164Z","score":0.37559012710575923,"is_anomaly":false,"confidence":0.4130618031661506,"method":"SEAD","details":"MAD!:w=0.23,s=0.25 RRCF-fast:w=0.19,s=0.50 RRCF-mid:w=0.19,s=0.53 RRCF-slow:w=0.19,s=0.56 COPOD!:w=0.20,s=0.08"} +{"timestamp":"2026-03-15T17:18:48.297873792Z","score":0.7011706521343486,"is_anomaly":false,"confidence":0.7711246728704511,"method":"SEAD","details":"MAD!:w=0.23,s=0.78 RRCF-fast:w=0.19,s=0.86 RRCF-mid!:w=0.19,s=0.89 RRCF-slow:w=0.19,s=0.86 COPOD!:w=0.20,s=0.11"} +{"timestamp":"2026-03-15T17:19:22.255582033Z","score":0.7545214851959613,"is_anomaly":false,"confidence":0.8297981834727166,"method":"SEAD","details":"MAD!:w=0.23,s=0.68 RRCF-fast:w=0.19,s=0.84 RRCF-mid:w=0.19,s=0.76 RRCF-slow:w=0.19,s=0.76 COPOD!:w=0.20,s=0.74"} +{"timestamp":"2026-03-15T17:19:48.298672793Z","score":0.4528876867840735,"is_anomaly":false,"confidence":0.49807114467122454,"method":"SEAD","details":"MAD!:w=0.23,s=0.56 RRCF-fast:w=0.19,s=0.36 RRCF-mid:w=0.19,s=0.59 RRCF-slow:w=0.19,s=0.56 COPOD!:w=0.20,s=0.18"} +{"timestamp":"2026-03-15T17:20:18.259014563Z","score":0.41376599019215954,"is_anomaly":false,"confidence":0.4550463754588412,"method":"SEAD","details":"MAD!:w=0.23,s=0.10 RRCF-fast:w=0.19,s=0.55 RRCF-mid:w=0.19,s=0.60 RRCF-slow:w=0.19,s=0.60 COPOD!:w=0.20,s=0.30"} +{"timestamp":"2026-03-15T17:20:48.337185023Z","score":0.8568984482983149,"is_anomaly":false,"confidence":0.9521093869981277,"method":"SEAD","details":"MAD!:w=0.23,s=0.85 RRCF-fast:w=0.19,s=0.76 RRCF-mid!:w=0.19,s=0.95 RRCF-slow!:w=0.19,s=0.95 COPOD!:w=0.20,s=0.78"} +{"timestamp":"2026-03-15T17:21:18.277236007Z","score":0.9695880660808485,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.23,s=0.95 RRCF-fast!:w=0.19,s=1.00 RRCF-mid!:w=0.19,s=1.00 RRCF-slow!:w=0.19,s=1.00 COPOD!:w=0.20,s=0.90"} +{"timestamp":"2026-03-15T17:21:48.3056166Z","score":0.8483108309752807,"is_anomaly":false,"confidence":0.932944654824107,"method":"SEAD","details":"MAD!:w=0.23,s=0.60 RRCF-fast!:w=0.19,s=0.98 RRCF-mid!:w=0.19,s=0.95 RRCF-slow!:w=0.19,s=0.93 COPOD!:w=0.20,s=0.84"} +{"timestamp":"2026-03-15T17:22:18.259205423Z","score":0.5635780511040298,"is_anomaly":false,"confidence":0.6198048063929684,"method":"SEAD","details":"MAD!:w=0.24,s=0.16 RRCF-fast:w=0.19,s=0.70 RRCF-mid:w=0.19,s=0.84 RRCF-slow:w=0.19,s=0.77 COPOD!:w=0.20,s=0.45"} +{"timestamp":"2026-03-15T17:22:49.368605102Z","score":0.8730591047442452,"is_anomaly":false,"confidence":0.9601620012091986,"method":"SEAD","details":"MAD!:w=0.24,s=0.78 RRCF-fast!:w=0.19,s=0.93 RRCF-mid!:w=0.19,s=0.96 RRCF-slow!:w=0.19,s=0.96 COPOD!:w=0.20,s=0.78"} +{"timestamp":"2026-03-15T17:23:18.307531584Z","score":0.7624817934045116,"is_anomaly":false,"confidence":0.8385526714772862,"method":"SEAD","details":"MAD!:w=0.24,s=0.35 RRCF-fast:w=0.19,s=0.83 RRCF-mid!:w=0.18,s=0.89 RRCF-slow!:w=0.19,s=0.91 COPOD!:w=0.20,s=0.93"} +{"timestamp":"2026-03-15T17:23:48.259489126Z","score":0.426893882379245,"is_anomaly":false,"confidence":0.47432653597693897,"method":"SEAD","details":"MAD!:w=0.24,s=0.26 RRCF-fast:w=0.19,s=0.55 RRCF-mid:w=0.18,s=0.62 RRCF-slow:w=0.18,s=0.66 COPOD!:w=0.20,s=0.13"} +{"timestamp":"2026-03-15T17:24:18.310384256Z","score":0.6590971473674164,"is_anomaly":false,"confidence":0.7323301637415739,"method":"SEAD","details":"MAD!:w=0.24,s=0.46 RRCF-fast!:w=0.19,s=0.94 RRCF-mid!:w=0.18,s=0.98 RRCF-slow!:w=0.18,s=0.98 COPOD!:w=0.20,s=0.06"} +{"timestamp":"2026-03-15T17:24:50.344865733Z","score":0.8878645743510338,"is_anomaly":false,"confidence":0.9865161937233711,"method":"SEAD","details":"MAD!:w=0.24,s=1.00 RRCF-fast!:w=0.19,s=0.98 RRCF-mid!:w=0.18,s=0.98 RRCF-slow!:w=0.18,s=0.98 COPOD!:w=0.21,s=0.51"} +{"timestamp":"2026-03-15T17:25:18.304531758Z","score":0.569910037607005,"is_anomaly":false,"confidence":0.6332333751188944,"method":"SEAD","details":"MAD!:w=0.24,s=0.50 RRCF-fast:w=0.19,s=0.56 RRCF-mid:w=0.18,s=0.56 RRCF-slow:w=0.18,s=0.58 COPOD!:w=0.21,s=0.66"} +{"timestamp":"2026-03-15T17:25:48.259695393Z","score":0.518573949512203,"is_anomaly":false,"confidence":0.5761932772357812,"method":"SEAD","details":"MAD!:w=0.24,s=0.12 RRCF-fast:w=0.19,s=0.39 RRCF-mid:w=0.18,s=0.61 RRCF-slow:w=0.18,s=0.59 COPOD!:w=0.21,s=0.96"} +{"timestamp":"2026-03-15T17:26:18.304768285Z","score":0.7059187728765488,"is_anomaly":false,"confidence":0.7843541920850543,"method":"SEAD","details":"MAD!:w=0.24,s=0.63 RRCF-fast!:w=0.19,s=0.94 RRCF-mid:w=0.18,s=0.81 RRCF-slow!:w=0.18,s=0.88 COPOD!:w=0.21,s=0.33"} +{"timestamp":"2026-03-15T17:26:48.41289683Z","score":0.6751199853977206,"is_anomaly":false,"confidence":0.7501333171085784,"method":"SEAD","details":"MAD!:w=0.24,s=0.70 RRCF-fast:w=0.19,s=0.74 RRCF-mid!:w=0.18,s=0.91 RRCF-slow!:w=0.18,s=0.91 COPOD!:w=0.21,s=0.19"} +{"timestamp":"2026-03-15T17:27:18.306344711Z","score":0.5640912965552776,"is_anomaly":false,"confidence":0.6353348391758826,"method":"SEAD","details":"MAD!:w=0.24,s=0.57 RRCF-fast:w=0.19,s=0.30 RRCF-mid:w=0.18,s=0.46 RRCF-slow:w=0.18,s=0.44 COPOD!:w=0.21,s=0.98"} +{"timestamp":"2026-03-15T17:27:48.259737768Z","score":0.5196641657512839,"is_anomaly":false,"confidence":0.5852966553273303,"method":"SEAD","details":"MAD!:w=0.24,s=0.00 RRCF-fast:w=0.19,s=0.51 RRCF-mid:w=0.18,s=0.76 RRCF-slow:w=0.18,s=0.71 COPOD!:w=0.21,s=0.76"} +{"timestamp":"2026-03-15T17:28:19.67259582Z","score":0.8591046100052786,"is_anomaly":false,"confidence":0.9676077127339192,"method":"SEAD","details":"MAD!:w=0.25,s=0.89 RRCF-fast!:w=0.19,s=0.93 RRCF-mid!:w=0.18,s=0.96 RRCF-slow!:w=0.18,s=0.96 COPOD!:w=0.21,s=0.57"} +{"timestamp":"2026-03-15T17:28:48.352146015Z","score":0.858616106240694,"is_anomaly":false,"confidence":0.9670575119727933,"method":"SEAD","details":"MAD!:w=0.25,s=0.60 RRCF-fast!:w=0.19,s=0.89 RRCF-mid!:w=0.18,s=0.95 RRCF-slow!:w=0.18,s=0.93 COPOD!:w=0.21,s=1.00"} +{"timestamp":"2026-03-15T17:29:18.261417633Z","score":0.4164139029466968,"is_anomaly":false,"confidence":0.4690061018045076,"method":"SEAD","details":"MAD!:w=0.25,s=0.26 RRCF-fast:w=0.19,s=0.28 RRCF-mid:w=0.18,s=0.57 RRCF-slow:w=0.18,s=0.55 COPOD!:w=0.21,s=0.48"} +{"timestamp":"2026-03-15T17:29:48.260746896Z","score":0.3643875431829525,"is_anomaly":false,"confidence":0.4104089223846937,"method":"SEAD","details":"MAD!:w=0.25,s=0.15 RRCF-fast:w=0.19,s=0.51 RRCF-mid:w=0.18,s=0.64 RRCF-slow:w=0.18,s=0.61 COPOD!:w=0.21,s=0.03"} +{"timestamp":"2026-03-15T17:30:19.598947008Z","score":0.8745149444855649,"is_anomaly":false,"confidence":0.9849643400005833,"method":"SEAD","details":"MAD!:w=0.25,s=0.78 RRCF-fast!:w=0.19,s=0.93 RRCF-mid!:w=0.18,s=0.95 RRCF-slow!:w=0.18,s=0.93 COPOD!:w=0.21,s=0.82"} +{"timestamp":"2026-03-15T17:30:50.342312207Z","score":0.5593675822740092,"is_anomaly":false,"confidence":0.637715224236727,"method":"SEAD","details":"MAD!:w=0.25,s=0.43 RRCF-fast:w=0.19,s=0.67 RRCF-mid:w=0.18,s=0.64 RRCF-slow:w=0.18,s=0.70 COPOD!:w=0.21,s=0.43"} +{"timestamp":"2026-03-15T17:31:18.259771122Z","score":0.4925739218680676,"is_anomaly":false,"confidence":0.5615661310944267,"method":"SEAD","details":"MAD!:w=0.25,s=0.06 RRCF-fast:w=0.19,s=0.47 RRCF-mid:w=0.18,s=0.55 RRCF-slow:w=0.18,s=0.53 COPOD!:w=0.21,s=0.95"} +{"timestamp":"2026-03-15T17:31:48.325818408Z","score":0.7452972489185854,"is_anomaly":false,"confidence":0.8496870703249109,"method":"SEAD","details":"MAD!:w=0.25,s=0.81 RRCF-fast:w=0.19,s=0.71 RRCF-mid:w=0.18,s=0.87 RRCF-slow!:w=0.18,s=0.89 COPOD!:w=0.21,s=0.46"} +{"timestamp":"2026-03-15T17:32:20.58125916Z","score":0.6529209345492505,"is_anomaly":false,"confidence":0.7443720969531692,"method":"SEAD","details":"MAD!:w=0.25,s=0.73 RRCF-fast:w=0.19,s=0.58 RRCF-mid!:w=0.18,s=0.91 RRCF-slow!:w=0.18,s=0.91 COPOD!:w=0.21,s=0.19"} +{"timestamp":"2026-03-15T17:32:48.305678457Z","score":0.482966634612487,"is_anomaly":false,"confidence":0.5506132022142937,"method":"SEAD","details":"MAD!:w=0.25,s=0.55 RRCF-fast:w=0.19,s=0.23 RRCF-mid:w=0.18,s=0.32 RRCF-slow:w=0.18,s=0.34 COPOD!:w=0.21,s=0.88"} +{"timestamp":"2026-03-15T17:33:18.316753064Z","score":0.3891459625930743,"is_anomaly":false,"confidence":0.44365156769899255,"method":"SEAD","details":"MAD!:w=0.25,s=0.14 RRCF-fast:w=0.19,s=0.48 RRCF-mid:w=0.18,s=0.61 RRCF-slow:w=0.18,s=0.61 COPOD!:w=0.21,s=0.24"} +{"timestamp":"2026-03-15T17:33:55.155599327Z","score":0.7628579613229564,"is_anomaly":false,"confidence":0.8723212406298089,"method":"SEAD","details":"MAD!:w=0.25,s=0.79 RRCF-fast:w=0.19,s=0.84 RRCF-mid:w=0.18,s=0.75 RRCF-slow!:w=0.18,s=0.91 COPOD!:w=0.21,s=0.55"} +{"timestamp":"2026-03-15T17:34:19.708435287Z","score":0.6501035024337928,"is_anomaly":false,"confidence":0.7433875276039078,"method":"SEAD","details":"MAD!:w=0.25,s=0.49 RRCF-fast:w=0.19,s=0.74 RRCF-mid:w=0.18,s=0.85 RRCF-slow!:w=0.18,s=0.90 COPOD!:w=0.21,s=0.40"} +{"timestamp":"2026-03-15T17:34:48.313140027Z","score":0.29185455795319387,"is_anomaly":false,"confidence":0.3337330708795124,"method":"SEAD","details":"MAD!:w=0.26,s=0.36 RRCF-fast:w=0.19,s=0.22 RRCF-mid:w=0.17,s=0.28 RRCF-slow:w=0.17,s=0.39 COPOD!:w=0.21,s=0.20"} +{"timestamp":"2026-03-15T17:35:18.262345297Z","score":0.30494527468054144,"is_anomaly":false,"confidence":0.3487021881140363,"method":"SEAD","details":"MAD!:w=0.25,s=0.01 RRCF-fast:w=0.19,s=0.49 RRCF-mid:w=0.17,s=0.53 RRCF-slow:w=0.17,s=0.54 COPOD!:w=0.21,s=0.11"} +{"timestamp":"2026-03-15T17:35:48.344562791Z","score":0.8896213599176868,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.26,s=0.96 RRCF-fast!:w=0.18,s=0.93 RRCF-mid!:w=0.17,s=0.97 RRCF-slow!:w=0.17,s=0.96 COPOD!:w=0.21,s=0.65"} +{"timestamp":"2026-03-15T17:36:20.230614879Z","score":0.5845118512777759,"is_anomaly":false,"confidence":0.6663813172570245,"method":"SEAD","details":"MAD!:w=0.26,s=0.35 RRCF-fast:w=0.18,s=0.58 RRCF-mid:w=0.17,s=0.81 RRCF-slow:w=0.17,s=0.75 COPOD!:w=0.21,s=0.56"} +{"timestamp":"2026-03-15T17:36:48.31095707Z","score":0.5083283961701694,"is_anomaly":false,"confidence":0.579527250813687,"method":"SEAD","details":"MAD!:w=0.26,s=0.23 RRCF-fast:w=0.18,s=0.25 RRCF-mid:w=0.17,s=0.55 RRCF-slow:w=0.17,s=0.59 COPOD!:w=0.21,s=0.97"} +{"timestamp":"2026-03-15T17:37:18.328908967Z","score":0.6040774171969441,"is_anomaly":false,"confidence":0.6907571117064143,"method":"SEAD","details":"MAD!:w=0.26,s=0.45 RRCF-fast:w=0.19,s=0.88 RRCF-mid:w=0.17,s=0.84 RRCF-slow!:w=0.17,s=0.93 COPOD!:w=0.21,s=0.09"} +{"timestamp":"2026-03-15T17:37:49.782119273Z","score":0.7569646179567546,"is_anomaly":false,"confidence":0.8655822553175927,"method":"SEAD","details":"MAD!:w=0.26,s=0.76 RRCF-fast:w=0.18,s=0.81 RRCF-mid:w=0.17,s=0.69 RRCF-slow!:w=0.17,s=0.93 COPOD!:w=0.21,s=0.61"} +{"timestamp":"2026-03-15T17:38:18.360446836Z","score":0.37797003091474823,"is_anomaly":false,"confidence":0.43220534228501933,"method":"SEAD","details":"MAD!:w=0.26,s=0.57 RRCF-fast:w=0.18,s=0.13 RRCF-mid:w=0.17,s=0.24 RRCF-slow:w=0.17,s=0.25 COPOD!:w=0.21,s=0.58"} +{"timestamp":"2026-03-15T17:38:48.311655209Z","score":0.483623735239868,"is_anomaly":false,"confidence":0.5530194061170225,"method":"SEAD","details":"MAD!:w=0.26,s=0.14 RRCF-fast:w=0.19,s=0.51 RRCF-mid:w=0.17,s=0.52 RRCF-slow:w=0.17,s=0.64 COPOD!:w=0.21,s=0.73"} +{"timestamp":"2026-03-15T17:39:19.742261481Z","score":0.823926348131784,"is_anomaly":false,"confidence":0.9421523935379518,"method":"SEAD","details":"MAD!:w=0.26,s=0.90 RRCF-fast!:w=0.18,s=0.92 RRCF-mid:w=0.17,s=0.69 RRCF-slow:w=0.17,s=0.82 COPOD!:w=0.21,s=0.76"} +{"timestamp":"2026-03-15T17:39:50.61833375Z","score":0.7797779980026714,"is_anomaly":false,"confidence":0.8916691509044221,"method":"SEAD","details":"MAD!:w=0.26,s=0.63 RRCF-fast:w=0.18,s=0.77 RRCF-mid:w=0.17,s=0.78 RRCF-slow:w=0.17,s=0.80 COPOD!:w=0.21,s=0.95"} +{"timestamp":"2026-03-15T17:40:18.303137385Z","score":0.6636101940216814,"is_anomaly":false,"confidence":0.7588323083627249,"method":"SEAD","details":"MAD!:w=0.26,s=0.41 RRCF-fast!:w=0.18,s=0.97 RRCF-mid!:w=0.17,s=0.99 RRCF-slow!:w=0.17,s=1.00 COPOD!:w=0.21,s=0.16"} +{"timestamp":"2026-03-15T17:40:48.26222167Z","score":0.5233228149877969,"is_anomaly":false,"confidence":0.5994128142574031,"method":"SEAD","details":"MAD!:w=0.26,s=0.06 RRCF-fast:w=0.18,s=0.54 RRCF-mid:w=0.17,s=0.73 RRCF-slow:w=0.17,s=0.88 COPOD!:w=0.21,s=0.63"} +{"timestamp":"2026-03-15T17:41:18.821294783Z","score":0.9148894207641366,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.27,s=1.00 RRCF-fast!:w=0.18,s=1.00 RRCF-mid!:w=0.17,s=1.00 RRCF-slow!:w=0.17,s=1.00 COPOD!:w=0.21,s=0.60"} +{"timestamp":"2026-03-15T17:41:50.289070055Z","score":0.6889867062024422,"is_anomaly":false,"confidence":0.7878501225702208,"method":"SEAD","details":"MAD!:w=0.27,s=0.30 RRCF-fast:w=0.18,s=0.78 RRCF-mid:w=0.17,s=0.89 RRCF-slow!:w=0.17,s=0.90 COPOD!:w=0.21,s=0.76"} +{"timestamp":"2026-03-15T17:42:18.261393862Z","score":0.5493982770127921,"is_anomaly":false,"confidence":0.6282320050413509,"method":"SEAD","details":"MAD!:w=0.27,s=0.24 RRCF-fast:w=0.18,s=0.38 RRCF-mid:w=0.17,s=0.44 RRCF-slow:w=0.17,s=0.85 COPOD!:w=0.21,s=0.94"} +{"timestamp":"2026-03-15T17:42:48.312521572Z","score":0.7946511124807593,"is_anomaly":false,"confidence":0.9086764239897744,"method":"SEAD","details":"MAD!:w=0.27,s=0.89 RRCF-fast!:w=0.18,s=0.94 RRCF-mid!:w=0.17,s=0.92 RRCF-slow!:w=0.17,s=0.96 COPOD!:w=0.21,s=0.31"} +{"timestamp":"2026-03-15T17:43:18.883824314Z","score":0.7475996991517037,"is_anomaly":false,"confidence":0.8548735546097278,"method":"SEAD","details":"MAD!:w=0.27,s=0.77 RRCF-fast:w=0.18,s=0.81 RRCF-mid:w=0.17,s=0.80 RRCF-slow!:w=0.17,s=0.92 COPOD!:w=0.21,s=0.49"} +{"timestamp":"2026-03-15T17:43:48.351648845Z","score":0.40022349606254637,"is_anomaly":false,"confidence":0.45841512205498186,"method":"SEAD","details":"MAD!:w=0.27,s=0.55 RRCF-fast:w=0.18,s=0.22 RRCF-mid:w=0.17,s=0.38 RRCF-slow:w=0.17,s=0.66 COPOD!:w=0.21,s=0.18"} +{"timestamp":"2026-03-15T17:44:19.751620708Z","score":0.48101675613302836,"is_anomaly":false,"confidence":0.5509555464448629,"method":"SEAD","details":"MAD!:w=0.27,s=0.06 RRCF-fast:w=0.18,s=0.33 RRCF-mid:w=0.17,s=0.88 RRCF-slow:w=0.16,s=0.82 COPOD!:w=0.21,s=0.57"} +{"timestamp":"2026-03-15T17:44:51.065846246Z","score":0.760531048628236,"is_anomaly":false,"confidence":0.8711106092307768,"method":"SEAD","details":"MAD!:w=0.27,s=0.81 RRCF-fast!:w=0.18,s=0.96 RRCF-mid!:w=0.17,s=0.92 RRCF-slow!:w=0.16,s=0.91 COPOD!:w=0.21,s=0.29"} +{"timestamp":"2026-03-15T17:45:20.132103427Z","score":0.8370571494653651,"is_anomaly":false,"confidence":0.9587634387142363,"method":"SEAD","details":"MAD!:w=0.27,s=0.64 RRCF-fast:w=0.18,s=0.87 RRCF-mid:w=0.17,s=0.81 RRCF-slow!:w=0.16,s=0.93 COPOD!:w=0.22,s=1.00"} +{"timestamp":"2026-03-15T17:45:48.320969298Z","score":0.40971450030703266,"is_anomaly":false,"confidence":0.46928609767726415,"method":"SEAD","details":"MAD!:w=0.27,s=0.42 RRCF-fast:w=0.18,s=0.09 RRCF-mid:w=0.17,s=0.26 RRCF-slow:w=0.16,s=0.37 COPOD!:w=0.22,s=0.81"} +{"timestamp":"2026-03-15T17:46:18.307270897Z","score":0.4700045956680341,"is_anomaly":false,"confidence":0.5383422417955515,"method":"SEAD","details":"MAD!:w=0.27,s=0.07 RRCF-fast:w=0.18,s=0.52 RRCF-mid:w=0.17,s=0.68 RRCF-slow:w=0.16,s=0.70 COPOD!:w=0.21,s=0.60"} +{"timestamp":"2026-03-15T17:46:48.410152071Z","score":0.9086379540733496,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.27,s=0.77 RRCF-fast!:w=0.18,s=0.97 RRCF-mid!:w=0.17,s=0.94 RRCF-slow!:w=0.16,s=0.94 COPOD!:w=0.21,s=0.99"} +{"timestamp":"2026-03-15T17:47:18.944780987Z","score":0.7543728531356209,"is_anomaly":false,"confidence":0.8640570255052865,"method":"SEAD","details":"MAD!:w=0.27,s=0.27 RRCF-fast!:w=0.18,s=0.97 RRCF-mid:w=0.17,s=0.87 RRCF-slow!:w=0.16,s=0.93 COPOD!:w=0.21,s=0.98"} +{"timestamp":"2026-03-15T17:47:48.259190624Z","score":0.7503992750062952,"is_anomaly":false,"confidence":0.8595056977569897,"method":"SEAD","details":"MAD!:w=0.28,s=0.24 RRCF-fast!:w=0.18,s=0.99 RRCF-mid!:w=0.17,s=0.99 RRCF-slow!:w=0.16,s=0.99 COPOD!:w=0.21,s=0.84"} +{"timestamp":"2026-03-15T17:48:18.30534463Z","score":0.7696527951362048,"is_anomaly":false,"confidence":0.8815586378446482,"method":"SEAD","details":"MAD!:w=0.28,s=0.81 RRCF-fast!:w=0.18,s=0.92 RRCF-mid!:w=0.17,s=0.93 RRCF-slow!:w=0.16,s=0.94 COPOD!:w=0.21,s=0.33"} +{"timestamp":"2026-03-15T17:48:49.347178664Z","score":0.8873714595163827,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=0.77 RRCF-fast:w=0.18,s=0.87 RRCF-mid!:w=0.17,s=0.92 RRCF-slow!:w=0.16,s=0.96 COPOD!:w=0.21,s=0.98"} +{"timestamp":"2026-03-15T17:49:18.348985249Z","score":0.5734344443238473,"is_anomaly":false,"confidence":0.6557171469049865,"method":"SEAD","details":"MAD!:w=0.28,s=0.57 RRCF-fast:w=0.18,s=0.64 RRCF-mid:w=0.17,s=0.55 RRCF-slow:w=0.16,s=0.63 COPOD!:w=0.21,s=0.49"} +{"timestamp":"2026-03-15T17:49:48.259941949Z","score":0.4070702828442574,"is_anomaly":false,"confidence":0.46548121951617105,"method":"SEAD","details":"MAD!:w=0.28,s=0.21 RRCF-fast:w=0.18,s=0.56 RRCF-mid:w=0.17,s=0.41 RRCF-slow:w=0.16,s=0.85 COPOD!:w=0.21,s=0.20"} +{"timestamp":"2026-03-15T17:50:22.284649463Z","score":0.9829657497994531,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=1.00 RRCF-fast!:w=0.18,s=1.00 RRCF-mid!:w=0.17,s=1.00 RRCF-slow!:w=0.16,s=1.00 COPOD!:w=0.21,s=0.92"} +{"timestamp":"2026-03-15T17:50:49.766240481Z","score":0.8774967499317573,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=0.64 RRCF-fast!:w=0.18,s=0.98 RRCF-mid!:w=0.17,s=0.99 RRCF-slow!:w=0.16,s=0.99 COPOD!:w=0.21,s=0.93"} +{"timestamp":"2026-03-15T17:51:18.301666285Z","score":0.7115630052510872,"is_anomaly":false,"confidence":0.8112278505799654,"method":"SEAD","details":"MAD!:w=0.28,s=0.22 RRCF-fast:w=0.18,s=0.89 RRCF-mid!:w=0.17,s=0.93 RRCF-slow!:w=0.16,s=0.94 COPOD!:w=0.21,s=0.88"} +{"timestamp":"2026-03-15T17:51:48.309538891Z","score":0.5672608912159978,"is_anomaly":false,"confidence":0.6467141069775653,"method":"SEAD","details":"MAD!:w=0.29,s=0.21 RRCF-fast:w=0.18,s=0.79 RRCF-mid!:w=0.16,s=0.92 RRCF-slow:w=0.16,s=0.90 COPOD!:w=0.21,s=0.34"} +{"timestamp":"2026-03-15T17:52:18.54994504Z","score":0.6565208376958396,"is_anomaly":false,"confidence":0.7484762193855503,"method":"SEAD","details":"MAD!:w=0.29,s=0.00 RRCF-fast!:w=0.18,s=0.95 RRCF-mid!:w=0.16,s=0.95 RRCF-slow!:w=0.16,s=0.95 COPOD!:w=0.21,s=0.87"} +{"timestamp":"2026-03-15T17:52:48.357118369Z","score":0.8099665049493124,"is_anomaly":false,"confidence":0.923414205070906,"method":"SEAD","details":"MAD!:w=0.30,s=0.64 RRCF-fast:w=0.18,s=0.86 RRCF-mid:w=0.16,s=0.90 RRCF-slow:w=0.16,s=0.90 COPOD!:w=0.21,s=0.88"} +{"timestamp":"2026-03-15T17:53:18.309565246Z","score":0.4062427224687786,"is_anomaly":false,"confidence":0.4631429797925082,"method":"SEAD","details":"MAD!:w=0.30,s=0.01 RRCF-fast:w=0.18,s=0.51 RRCF-mid:w=0.16,s=0.85 RRCF-slow:w=0.16,s=0.86 COPOD!:w=0.21,s=0.21"} +{"timestamp":"2026-03-15T17:53:48.303092865Z","score":0.7595192521825147,"is_anomaly":false,"confidence":0.8685034566553959,"method":"SEAD","details":"MAD!:w=0.30,s=0.99 RRCF-fast:w=0.17,s=0.91 RRCF-mid!:w=0.16,s=0.92 RRCF-slow!:w=0.15,s=0.94 COPOD!:w=0.21,s=0.06"} +{"timestamp":"2026-03-15T17:54:19.470296488Z","score":0.5855104188751838,"is_anomaly":false,"confidence":0.6695259155572367,"method":"SEAD","details":"MAD!:w=0.30,s=0.00 RRCF-fast:w=0.17,s=0.75 RRCF-mid:w=0.16,s=0.85 RRCF-slow!:w=0.15,s=0.93 COPOD!:w=0.21,s=0.82"} +{"timestamp":"2026-03-15T17:54:48.355608485Z","score":0.3248781043710203,"is_anomaly":false,"confidence":0.37149520019023863,"method":"SEAD","details":"MAD!:w=0.30,s=0.01 RRCF-fast:w=0.17,s=0.45 RRCF-mid:w=0.16,s=0.56 RRCF-slow:w=0.15,s=0.79 COPOD!:w=0.21,s=0.17"} +{"timestamp":"2026-03-15T17:55:18.25993119Z","score":0.3946784000518178,"is_anomaly":false,"confidence":0.45131121262197316,"method":"SEAD","details":"MAD!:w=0.31,s=0.23 RRCF-fast:w=0.17,s=0.42 RRCF-mid:w=0.16,s=0.73 RRCF-slow:w=0.15,s=0.80 COPOD!:w=0.21,s=0.08"} +{"timestamp":"2026-03-15T17:55:55.604689673Z","score":0.7185489204441888,"is_anomaly":false,"confidence":0.8216542495644561,"method":"SEAD","details":"MAD!:w=0.31,s=0.98 RRCF-fast:w=0.17,s=0.56 RRCF-mid:w=0.16,s=0.85 RRCF-slow:w=0.15,s=0.91 COPOD!:w=0.21,s=0.24"} +{"timestamp":"2026-03-15T17:56:18.752625739Z","score":0.8554402295272793,"is_anomaly":false,"confidence":0.9781882344280505,"method":"SEAD","details":"MAD!:w=0.30,s=0.66 RRCF-fast!:w=0.17,s=0.94 RRCF-mid!:w=0.16,s=0.94 RRCF-slow!:w=0.15,s=0.96 COPOD!:w=0.22,s=0.93"} +{"timestamp":"2026-03-15T17:56:48.367356074Z","score":0.47808286387570315,"is_anomaly":false,"confidence":0.54668346937963,"method":"SEAD","details":"MAD!:w=0.31,s=0.26 RRCF-fast:w=0.17,s=0.29 RRCF-mid:w=0.16,s=0.33 RRCF-slow:w=0.15,s=0.69 COPOD!:w=0.22,s=0.90"} +{"timestamp":"2026-03-15T17:57:18.286624959Z","score":0.46123625230196685,"is_anomaly":false,"confidence":0.5282990003718956,"method":"SEAD","details":"MAD!:w=0.31,s=0.25 RRCF-fast:w=0.17,s=0.44 RRCF-mid:w=0.16,s=0.68 RRCF-slow:w=0.15,s=0.81 COPOD!:w=0.21,s=0.39"} +{"timestamp":"2026-03-15T17:57:48.302837383Z","score":0.6494829761019358,"is_anomaly":false,"confidence":0.7439163884468005,"method":"SEAD","details":"MAD!:w=0.31,s=0.03 RRCF-fast!:w=0.17,s=0.91 RRCF-mid!:w=0.16,s=0.93 RRCF-slow!:w=0.15,s=0.95 COPOD!:w=0.21,s=0.91"} +{"timestamp":"2026-03-15T17:58:20.241021231Z","score":0.7216701800640682,"is_anomaly":false,"confidence":0.826599454885102,"method":"SEAD","details":"MAD!:w=0.31,s=0.63 RRCF-fast:w=0.17,s=0.55 RRCF-mid:w=0.15,s=0.81 RRCF-slow:w=0.15,s=0.78 COPOD!:w=0.21,s=0.89"} +{"timestamp":"2026-03-15T17:58:48.259972038Z","score":0.5562277951794319,"is_anomaly":false,"confidence":0.6371021070129883,"method":"SEAD","details":"MAD!:w=0.31,s=0.27 RRCF-fast:w=0.17,s=0.42 RRCF-mid:w=0.15,s=0.74 RRCF-slow:w=0.15,s=0.71 COPOD!:w=0.21,s=0.85"} +{"timestamp":"2026-03-15T17:59:18.299360443Z","score":0.8339492490292455,"is_anomaly":false,"confidence":0.9552036563132154,"method":"SEAD","details":"MAD!:w=0.32,s=0.97 RRCF-fast!:w=0.17,s=0.92 RRCF-mid!:w=0.15,s=0.92 RRCF-slow:w=0.15,s=0.92 COPOD!:w=0.21,s=0.43"} +{"timestamp":"2026-03-15T17:59:48.473443648Z","score":0.6693587675534987,"is_anomaly":false,"confidence":0.7666820767530753,"method":"SEAD","details":"MAD!:w=0.32,s=0.08 RRCF-fast:w=0.17,s=0.90 RRCF-mid!:w=0.15,s=0.94 RRCF-slow!:w=0.15,s=0.94 COPOD!:w=0.21,s=0.98"} +{"timestamp":"2026-03-15T18:00:18.355848515Z","score":0.7296245834566166,"is_anomaly":false,"confidence":0.8357104112331015,"method":"SEAD","details":"MAD!:w=0.32,s=0.54 RRCF-fast:w=0.17,s=0.71 RRCF-mid!:w=0.15,s=0.94 RRCF-slow:w=0.14,s=0.72 COPOD!:w=0.21,s=0.88"} +{"timestamp":"2026-03-15T18:00:48.28312718Z","score":0.4709187218928317,"is_anomaly":false,"confidence":0.5481506168264401,"method":"SEAD","details":"MAD!:w=0.32,s=0.26 RRCF-fast:w=0.17,s=0.40 RRCF-mid:w=0.15,s=0.76 RRCF-slow:w=0.14,s=0.77 COPOD!:w=0.21,s=0.45"} +{"timestamp":"2026-03-15T18:01:18.609428738Z","score":0.8899436506385633,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.32,s=0.97 RRCF-fast:w=0.17,s=0.81 RRCF-mid!:w=0.15,s=0.96 RRCF-slow:w=0.14,s=0.91 COPOD!:w=0.21,s=0.77"} +{"timestamp":"2026-03-15T18:01:49.956995289Z","score":0.7439052429853048,"is_anomaly":false,"confidence":0.8520674476022161,"method":"SEAD","details":"MAD!:w=0.32,s=0.67 RRCF-fast:w=0.17,s=0.70 RRCF-mid:w=0.15,s=0.79 RRCF-slow:w=0.14,s=0.89 COPOD!:w=0.21,s=0.76"} +{"timestamp":"2026-03-15T18:02:18.350706706Z","score":0.479561918670082,"is_anomaly":false,"confidence":0.5492891787785266,"method":"SEAD","details":"MAD!:w=0.32,s=0.27 RRCF-fast:w=0.17,s=0.29 RRCF-mid:w=0.15,s=0.43 RRCF-slow:w=0.14,s=0.55 COPOD!:w=0.21,s=0.94"} +{"timestamp":"2026-03-15T18:02:48.280800469Z","score":0.3326036287100199,"is_anomaly":false,"confidence":0.38096347303708966,"method":"SEAD","details":"MAD!:w=0.33,s=0.26 RRCF-fast:w=0.17,s=0.23 RRCF-mid:w=0.15,s=0.62 RRCF-slow:w=0.14,s=0.72 COPOD!:w=0.21,s=0.06"} +{"timestamp":"2026-03-15T18:03:19.508586089Z","score":0.5065481659656536,"is_anomaly":false,"confidence":0.5801991677459709,"method":"SEAD","details":"MAD!:w=0.33,s=0.02 RRCF-fast:w=0.17,s=0.52 RRCF-mid:w=0.15,s=0.86 RRCF-slow:w=0.14,s=0.87 COPOD!:w=0.21,s=0.75"} +{"timestamp":"2026-03-15T18:03:48.408882833Z","score":0.7255807983981155,"is_anomaly":false,"confidence":0.8445779360835433,"method":"SEAD","details":"MAD!:w=0.33,s=0.63 RRCF-fast:w=0.17,s=0.65 RRCF-mid:w=0.15,s=0.69 RRCF-slow:w=0.14,s=0.80 COPOD!:w=0.21,s=0.92"} +{"timestamp":"2026-03-15T18:04:18.305736772Z","score":0.43581855604018566,"is_anomaly":false,"confidence":0.5072939325020126,"method":"SEAD","details":"MAD!:w=0.33,s=0.30 RRCF-fast:w=0.17,s=0.20 RRCF-mid:w=0.15,s=0.53 RRCF-slow:w=0.14,s=0.66 COPOD!:w=0.21,s=0.64"} +{"timestamp":"2026-03-15T18:04:48.298500143Z","score":0.7344266201716367,"is_anomaly":false,"confidence":0.8548744956299609,"method":"SEAD","details":"MAD!:w=0.33,s=0.96 RRCF-fast:w=0.17,s=0.54 RRCF-mid:w=0.15,s=0.79 RRCF-slow:w=0.14,s=0.80 COPOD!:w=0.20,s=0.44"} +{"timestamp":"2026-03-15T18:05:18.970183666Z","score":0.6227813839480428,"is_anomaly":false,"confidence":0.7249191503514528,"method":"SEAD","details":"MAD!:w=0.33,s=0.21 RRCF-fast:w=0.17,s=0.63 RRCF-mid:w=0.15,s=0.78 RRCF-slow:w=0.14,s=0.88 COPOD!:w=0.21,s=0.99"} +{"timestamp":"2026-03-15T18:05:50.23684221Z","score":0.46635591551080885,"is_anomaly":false,"confidence":0.5428394983329718,"method":"SEAD","details":"MAD!:w=0.33,s=0.21 RRCF-fast:w=0.17,s=0.28 RRCF-mid:w=0.15,s=0.85 RRCF-slow:w=0.14,s=0.69 COPOD!:w=0.20,s=0.60"} +{"timestamp":"2026-03-15T18:06:18.311697116Z","score":0.33522612701714455,"is_anomaly":false,"confidence":0.3902040835458732,"method":"SEAD","details":"MAD!:w=0.34,s=0.30 RRCF-fast:w=0.17,s=0.30 RRCF-mid:w=0.15,s=0.57 RRCF-slow:w=0.14,s=0.66 COPOD!:w=0.20,s=0.04"} +{"timestamp":"2026-03-15T18:06:52.201800869Z","score":0.7999878267785432,"is_anomaly":false,"confidence":0.9311879106010476,"method":"SEAD","details":"MAD!:w=0.34,s=0.95 RRCF-fast:w=0.17,s=0.71 RRCF-mid:w=0.15,s=0.79 RRCF-slow:w=0.14,s=0.79 COPOD!:w=0.20,s=0.63"} +{"timestamp":"2026-03-15T18:07:18.351336573Z","score":0.6832462910436706,"is_anomaly":false,"confidence":0.7957529401994908,"method":"SEAD","details":"MAD!:w=0.34,s=0.63 RRCF-fast:w=0.17,s=0.59 RRCF-mid:w=0.15,s=0.56 RRCF-slow:w=0.14,s=0.75 COPOD!:w=0.21,s=0.90"} +{"timestamp":"2026-03-15T18:07:48.351483858Z","score":0.41098630383015056,"is_anomaly":false,"confidence":0.4786613025809461,"method":"SEAD","details":"MAD!:w=0.34,s=0.29 RRCF-fast:w=0.17,s=0.13 RRCF-mid:w=0.15,s=0.40 RRCF-slow:w=0.14,s=0.48 COPOD!:w=0.20,s=0.81"} +{"timestamp":"2026-03-15T18:08:19.657049767Z","score":0.24731367037798319,"is_anomaly":false,"confidence":0.2880375392220447,"method":"SEAD","details":"MAD!:w=0.34,s=0.04 RRCF-fast:w=0.17,s=0.38 RRCF-mid:w=0.15,s=0.49 RRCF-slow:w=0.14,s=0.53 COPOD!:w=0.20,s=0.11"} +{"timestamp":"2026-03-15T18:08:49.150921136Z","score":0.4032457521325295,"is_anomaly":false,"confidence":0.46964615408633914,"method":"SEAD","details":"MAD!:w=0.34,s=0.00 RRCF-fast:w=0.17,s=0.68 RRCF-mid:w=0.15,s=0.91 RRCF-slow:w=0.14,s=0.91 COPOD!:w=0.20,s=0.14"} +{"timestamp":"2026-03-15T18:09:18.352574025Z","score":0.5907489316519379,"is_anomaly":false,"confidence":0.6880245168454068,"method":"SEAD","details":"MAD!:w=0.34,s=0.65 RRCF-fast:w=0.17,s=0.53 RRCF-mid:w=0.14,s=0.56 RRCF-slow:w=0.14,s=0.65 COPOD!:w=0.20,s=0.52"} +{"timestamp":"2026-03-15T18:09:48.308165644Z","score":0.3527163068746617,"is_anomaly":false,"confidence":0.41079628522107586,"method":"SEAD","details":"MAD!:w=0.34,s=0.24 RRCF-fast:w=0.17,s=0.22 RRCF-mid:w=0.14,s=0.42 RRCF-slow:w=0.14,s=0.59 COPOD!:w=0.20,s=0.45"} +{"timestamp":"2026-03-15T18:10:18.301546434Z","score":0.7029390365801209,"is_anomaly":false,"confidence":0.8186883887583022,"method":"SEAD","details":"MAD!:w=0.34,s=0.95 RRCF-fast:w=0.17,s=0.66 RRCF-mid:w=0.14,s=0.69 RRCF-slow:w=0.14,s=0.81 COPOD!:w=0.20,s=0.26"} +{"timestamp":"2026-03-15T18:10:48.661985475Z","score":0.32886903707343756,"is_anomaly":false,"confidence":0.38378997852840935,"method":"SEAD","details":"MAD!:w=0.34,s=0.01 RRCF-fast:w=0.17,s=0.53 RRCF-mid:w=0.14,s=0.68 RRCF-slow:w=0.14,s=0.75 COPOD!:w=0.21,s=0.16"} +{"timestamp":"2026-03-15T18:11:18.408683316Z","score":0.29108123317009404,"is_anomaly":false,"confidence":0.33969163294453647,"method":"SEAD","details":"MAD!:w=0.34,s=0.27 RRCF-fast:w=0.17,s=0.11 RRCF-mid:w=0.14,s=0.22 RRCF-slow:w=0.13,s=0.30 COPOD!:w=0.21,s=0.53"} +{"timestamp":"2026-03-15T18:11:48.285440857Z","score":0.40945899039844946,"is_anomaly":false,"confidence":0.47783840805357974,"method":"SEAD","details":"MAD!:w=0.34,s=0.29 RRCF-fast:w=0.17,s=0.35 RRCF-mid:w=0.14,s=0.40 RRCF-slow:w=0.13,s=0.61 COPOD!:w=0.20,s=0.53"} +{"timestamp":"2026-03-15T18:12:19.171839226Z","score":0.755830800405208,"is_anomaly":false,"confidence":0.8820541126036421,"method":"SEAD","details":"MAD!:w=0.34,s=0.94 RRCF-fast:w=0.17,s=0.53 RRCF-mid:w=0.14,s=0.82 RRCF-slow:w=0.13,s=0.88 COPOD!:w=0.20,s=0.51"} +{"timestamp":"2026-03-15T18:12:49.301523618Z","score":0.6102760354098189,"is_anomaly":false,"confidence":0.7121917849445814,"method":"SEAD","details":"MAD!:w=0.34,s=0.63 RRCF-fast:w=0.17,s=0.55 RRCF-mid:w=0.14,s=0.57 RRCF-slow:w=0.13,s=0.77 COPOD!:w=0.20,s=0.54"} +{"timestamp":"2026-03-15T18:13:18.303840738Z","score":0.23321395926824284,"is_anomaly":false,"confidence":0.2721605573348562,"method":"SEAD","details":"MAD!:w=0.34,s=0.03 RRCF-fast:w=0.17,s=0.15 RRCF-mid:w=0.14,s=0.21 RRCF-slow:w=0.13,s=0.40 COPOD!:w=0.21,s=0.55"} +{"timestamp":"2026-03-15T18:13:48.313025864Z","score":0.41001011654217034,"is_anomaly":false,"confidence":0.4785368562197518,"method":"SEAD","details":"MAD!:w=0.34,s=0.25 RRCF-fast:w=0.17,s=0.33 RRCF-mid:w=0.14,s=0.34 RRCF-slow:w=0.13,s=0.57 COPOD!:w=0.20,s=0.69"} +{"timestamp":"2026-03-15T18:14:18.639931057Z","score":0.4845699205546392,"is_anomaly":false,"confidence":0.5655581583119843,"method":"SEAD","details":"MAD!:w=0.35,s=0.03 RRCF-fast:w=0.17,s=0.89 RRCF-mid:w=0.14,s=0.77 RRCF-slow:w=0.13,s=0.87 COPOD!:w=0.20,s=0.45"} +{"timestamp":"2026-03-15T18:14:50.290157877Z","score":0.6464847310771359,"is_anomaly":false,"confidence":0.7545344817654158,"method":"SEAD","details":"MAD!:w=0.35,s=0.66 RRCF-fast:w=0.17,s=0.31 RRCF-mid:w=0.14,s=0.56 RRCF-slow:w=0.13,s=0.76 COPOD!:w=0.20,s=0.91"} +{"timestamp":"2026-03-15T18:15:18.311773249Z","score":0.3092685101268385,"is_anomaly":false,"confidence":0.3609578754104767,"method":"SEAD","details":"MAD!:w=0.35,s=0.28 RRCF-fast:w=0.17,s=0.20 RRCF-mid:w=0.14,s=0.33 RRCF-slow:w=0.13,s=0.55 COPOD!:w=0.20,s=0.29"} +{"timestamp":"2026-03-15T18:15:48.294594175Z","score":0.6730551088275818,"is_anomaly":false,"confidence":0.7855456800853526,"method":"SEAD","details":"MAD!:w=0.35,s=0.94 RRCF-fast:w=0.17,s=0.85 RRCF-mid:w=0.14,s=0.64 RRCF-slow:w=0.13,s=0.71 COPOD!:w=0.20,s=0.05"} +{"timestamp":"2026-03-15T18:16:22.607850397Z","score":0.38766947317625566,"is_anomaly":false,"confidence":0.4524623258339829,"method":"SEAD","details":"MAD!:w=0.35,s=0.04 RRCF-fast:w=0.17,s=0.47 RRCF-mid:w=0.14,s=0.53 RRCF-slow:w=0.13,s=0.64 COPOD!:w=0.20,s=0.64"} +{"timestamp":"2026-03-15T18:16:50.261165488Z","score":0.3872561261631735,"is_anomaly":false,"confidence":0.45197989437147085,"method":"SEAD","details":"MAD!:w=0.35,s=0.37 RRCF-fast:w=0.17,s=0.52 RRCF-mid:w=0.14,s=0.39 RRCF-slow:w=0.13,s=0.35 COPOD!:w=0.20,s=0.33"} +{"timestamp":"2026-03-15T18:17:18.262102056Z","score":0.3576493773709373,"is_anomaly":false,"confidence":0.4180880966617343,"method":"SEAD","details":"MAD!:w=0.35,s=0.31 RRCF-fast:w=0.17,s=0.31 RRCF-mid:w=0.14,s=0.38 RRCF-slow:w=0.13,s=0.55 COPOD!:w=0.20,s=0.34"} +{"timestamp":"2026-03-15T18:17:48.303491105Z","score":0.7678637773516226,"is_anomaly":false,"confidence":0.8976241131141893,"method":"SEAD","details":"MAD!:w=0.35,s=0.94 RRCF-fast:w=0.17,s=0.75 RRCF-mid:w=0.14,s=0.63 RRCF-slow:w=0.13,s=0.78 COPOD!:w=0.20,s=0.58"} +{"timestamp":"2026-03-15T18:18:19.352898899Z","score":0.392261215343417,"is_anomaly":false,"confidence":0.4585489456816669,"method":"SEAD","details":"MAD!:w=0.35,s=0.04 RRCF-fast:w=0.17,s=0.57 RRCF-mid:w=0.14,s=0.52 RRCF-slow:w=0.13,s=0.65 COPOD!:w=0.20,s=0.60"} +{"timestamp":"2026-03-15T18:18:48.304324828Z","score":0.35690803766750645,"is_anomaly":false,"confidence":0.41722147889249456,"method":"SEAD","details":"MAD!:w=0.35,s=0.34 RRCF-fast:w=0.17,s=0.08 RRCF-mid:w=0.14,s=0.15 RRCF-slow:w=0.13,s=0.28 COPOD!:w=0.20,s=0.82"} +{"timestamp":"2026-03-15T18:19:18.260066165Z","score":0.3694259105231646,"is_anomaly":false,"confidence":0.4318547313671597,"method":"SEAD","details":"MAD!:w=0.35,s=0.36 RRCF-fast:w=0.17,s=0.39 RRCF-mid:w=0.14,s=0.35 RRCF-slow:w=0.13,s=0.38 COPOD!:w=0.20,s=0.37"} +{"timestamp":"2026-03-15T18:19:48.347946793Z","score":0.34695405211609,"is_anomaly":false,"confidence":0.4055853818189245,"method":"SEAD","details":"MAD!:w=0.35,s=0.04 RRCF-fast:w=0.17,s=0.48 RRCF-mid:w=0.14,s=0.54 RRCF-slow:w=0.13,s=0.67 COPOD!:w=0.20,s=0.43"} +{"timestamp":"2026-03-15T18:20:18.351781018Z","score":0.6494103101273576,"is_anomaly":false,"confidence":0.7591533431695457,"method":"SEAD","details":"MAD!:w=0.36,s=0.66 RRCF-fast:w=0.17,s=0.60 RRCF-mid:w=0.14,s=0.45 RRCF-slow:w=0.13,s=0.71 COPOD!:w=0.20,s=0.78"} +{"timestamp":"2026-03-15T18:20:48.285210217Z","score":0.35349373140810897,"is_anomaly":false,"confidence":0.41670307451067967,"method":"SEAD","details":"MAD!:w=0.36,s=0.28 RRCF-fast:w=0.17,s=0.16 RRCF-mid:w=0.14,s=0.29 RRCF-slow:w=0.13,s=0.44 COPOD!:w=0.20,s=0.64"} +{"timestamp":"2026-03-15T18:21:18.364920622Z","score":0.6474480837197197,"is_anomaly":false,"confidence":0.763220343391544,"method":"SEAD","details":"MAD!:w=0.36,s=0.93 RRCF-fast:w=0.17,s=0.80 RRCF-mid:w=0.14,s=0.56 RRCF-slow:w=0.13,s=0.69 COPOD!:w=0.20,s=0.03"} +{"timestamp":"2026-03-15T18:21:52.678439546Z","score":0.46346461448922116,"is_anomaly":false,"confidence":0.5463382024209075,"method":"SEAD","details":"MAD!:w=0.35,s=0.04 RRCF-fast:w=0.17,s=0.75 RRCF-mid:w=0.14,s=0.67 RRCF-slow:w=0.13,s=0.73 COPOD!:w=0.20,s=0.64"} +{"timestamp":"2026-03-15T18:22:18.304468298Z","score":0.1180528903581623,"is_anomaly":false,"confidence":0.13916230472082974,"method":"SEAD","details":"MAD!:w=0.36,s=0.02 RRCF-fast:w=0.17,s=0.14 RRCF-mid:w=0.14,s=0.13 RRCF-slow:w=0.13,s=0.22 COPOD!:w=0.20,s=0.20"} +{"timestamp":"2026-03-15T18:22:48.259611813Z","score":0.36096180806446193,"is_anomaly":false,"confidence":0.42550654180552383,"method":"SEAD","details":"MAD!:w=0.36,s=0.32 RRCF-fast:w=0.17,s=0.38 RRCF-mid:w=0.14,s=0.31 RRCF-slow:w=0.13,s=0.46 COPOD!:w=0.20,s=0.39"} +{"timestamp":"2026-03-15T18:23:18.299231701Z","score":0.7268783296632708,"is_anomaly":false,"confidence":0.8568537652968522,"method":"SEAD","details":"MAD!:w=0.36,s=0.93 RRCF-fast:w=0.17,s=0.66 RRCF-mid:w=0.14,s=0.49 RRCF-slow:w=0.13,s=0.75 COPOD!:w=0.20,s=0.57"} +{"timestamp":"2026-03-15T18:23:48.359833731Z","score":0.7330274081896355,"is_anomaly":false,"confidence":0.8757196669998288,"method":"SEAD","details":"MAD!:w=0.36,s=0.68 RRCF-fast!:w=0.17,s=0.83 RRCF-mid:w=0.14,s=0.60 RRCF-slow:w=0.13,s=0.59 COPOD!:w=0.20,s=0.93"} +{"timestamp":"2026-03-15T18:24:18.260164469Z","score":0.3611200671199621,"is_anomaly":false,"confidence":0.43141626273739164,"method":"SEAD","details":"MAD!:w=0.36,s=0.36 RRCF-fast:w=0.17,s=0.15 RRCF-mid:w=0.14,s=0.19 RRCF-slow:w=0.13,s=0.26 COPOD!:w=0.20,s=0.73"} +{"timestamp":"2026-03-15T18:24:48.307675354Z","score":0.28622525494029305,"is_anomaly":false,"confidence":0.34194230958197697,"method":"SEAD","details":"MAD!:w=0.36,s=0.25 RRCF-fast:w=0.17,s=0.18 RRCF-mid:w=0.14,s=0.34 RRCF-slow:w=0.13,s=0.35 COPOD!:w=0.20,s=0.37"} +{"timestamp":"2026-03-15T18:25:18.645097914Z","score":0.4000890059593901,"is_anomaly":false,"confidence":0.47797095600333867,"method":"SEAD","details":"MAD!:w=0.36,s=0.02 RRCF-fast:w=0.17,s=0.51 RRCF-mid:w=0.14,s=0.62 RRCF-slow:w=0.13,s=0.76 COPOD!:w=0.20,s=0.61"} +{"timestamp":"2026-03-15T18:25:50.257995003Z","score":0.565196445946711,"is_anomaly":false,"confidence":0.6752184678282795,"method":"SEAD","details":"MAD!:w=0.36,s=0.65 RRCF-fast:w=0.17,s=0.53 RRCF-mid:w=0.14,s=0.44 RRCF-slow:w=0.13,s=0.53 COPOD!:w=0.20,s=0.56"} +{"timestamp":"2026-03-15T18:26:18.260062436Z","score":0.34731844826065744,"is_anomaly":false,"confidence":0.4149279992202353,"method":"SEAD","details":"MAD!:w=0.36,s=0.34 RRCF-fast:w=0.17,s=0.20 RRCF-mid:w=0.14,s=0.28 RRCF-slow:w=0.13,s=0.36 COPOD!:w=0.20,s=0.53"} +{"timestamp":"2026-03-15T18:26:48.298735949Z","score":0.862526363950912,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.36,s=0.92 RRCF-fast!:w=0.17,s=0.97 RRCF-mid!:w=0.14,s=0.99 RRCF-slow!:w=0.13,s=0.98 COPOD!:w=0.20,s=0.48"} +{"timestamp":"2026-03-15T18:27:23.724219529Z","score":0.6068626719464078,"is_anomaly":false,"confidence":0.7249955063809151,"method":"SEAD","details":"MAD!:w=0.36,s=0.08 RRCF-fast!:w=0.17,s=0.92 RRCF-mid!:w=0.14,s=0.97 RRCF-slow:w=0.13,s=0.86 COPOD!:w=0.20,s=0.87"} +{"timestamp":"2026-03-15T18:27:48.409108825Z","score":0.44573397989635966,"is_anomaly":false,"confidence":0.5325012517736135,"method":"SEAD","details":"MAD!:w=0.37,s=0.28 RRCF-fast:w=0.17,s=0.29 RRCF-mid:w=0.14,s=0.69 RRCF-slow:w=0.13,s=0.32 COPOD!:w=0.19,s=0.80"} +{"timestamp":"2026-03-15T18:28:18.309348625Z","score":0.3317676066785315,"is_anomaly":false,"confidence":0.3963500065562238,"method":"SEAD","details":"MAD!:w=0.37,s=0.10 RRCF-fast:w=0.17,s=0.63 RRCF-mid:w=0.14,s=0.78 RRCF-slow:w=0.13,s=0.47 COPOD!:w=0.19,s=0.10"} +{"timestamp":"2026-03-15T18:28:48.571376089Z","score":0.8565731413142674,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.37,s=0.92 RRCF-fast:w=0.17,s=0.75 RRCF-mid!:w=0.14,s=0.88 RRCF-slow:w=0.13,s=0.79 COPOD!:w=0.19,s=0.86"} +{"timestamp":"2026-03-15T18:29:20.792343903Z","score":0.6852271754909363,"is_anomaly":false,"confidence":0.807754835221364,"method":"SEAD","details":"MAD!:w=0.37,s=0.70 RRCF-fast!:w=0.17,s=0.80 RRCF-mid:w=0.14,s=0.58 RRCF-slow:w=0.13,s=0.56 COPOD!:w=0.19,s=0.71"} +{"timestamp":"2026-03-15T18:29:48.353935627Z","score":0.2589740894565497,"is_anomaly":false,"confidence":0.3052820735046068,"method":"SEAD","details":"MAD!:w=0.37,s=0.26 RRCF-fast:w=0.17,s=0.17 RRCF-mid:w=0.14,s=0.44 RRCF-slow:w=0.13,s=0.26 COPOD!:w=0.19,s=0.21"} +{"timestamp":"2026-03-15T18:30:18.309322192Z","score":0.33094209511716954,"is_anomaly":false,"confidence":0.39011890810906436,"method":"SEAD","details":"MAD!:w=0.37,s=0.30 RRCF-fast:w=0.17,s=0.41 RRCF-mid:w=0.14,s=0.63 RRCF-slow:w=0.13,s=0.48 COPOD!:w=0.19,s=0.01"} +{"timestamp":"2026-03-15T18:30:48.30204785Z","score":0.8317168037578316,"is_anomaly":false,"confidence":0.9936200942660314,"method":"SEAD","details":"MAD!:w=0.37,s=0.92 RRCF-fast!:w=0.17,s=0.85 RRCF-mid!:w=0.14,s=0.92 RRCF-slow:w=0.13,s=0.71 COPOD!:w=0.20,s=0.67"} +{"timestamp":"2026-03-15T18:31:18.261966436Z","score":0.710783810174115,"is_anomaly":false,"confidence":0.8491460954943137,"method":"SEAD","details":"MAD!:w=0.37,s=0.88 RRCF-fast!:w=0.17,s=0.84 RRCF-mid!:w=0.14,s=0.81 RRCF-slow:w=0.13,s=0.79 COPOD!:w=0.20,s=0.16"} +{"timestamp":"2026-03-15T18:31:48.261247294Z","score":0.6891429445708652,"is_anomaly":false,"confidence":0.8232925852327122,"method":"SEAD","details":"MAD!:w=0.37,s=0.88 RRCF-fast!:w=0.17,s=0.80 RRCF-mid:w=0.14,s=0.75 RRCF-slow:w=0.13,s=0.77 COPOD!:w=0.20,s=0.15"} +{"timestamp":"2026-03-15T18:32:18.262240661Z","score":0.6178512705002434,"is_anomaly":false,"confidence":0.7381231626715926,"method":"SEAD","details":"MAD!:w=0.36,s=0.88 RRCF-fast:w=0.17,s=0.48 RRCF-mid:w=0.14,s=0.70 RRCF-slow:w=0.13,s=0.58 COPOD!:w=0.20,s=0.23"} +{"timestamp":"2026-03-15T18:32:48.258353813Z","score":0.5914577615473124,"is_anomaly":false,"confidence":0.7065918520916775,"method":"SEAD","details":"MAD!:w=0.36,s=0.86 RRCF-fast:w=0.17,s=0.64 RRCF-mid:w=0.14,s=0.55 RRCF-slow:w=0.13,s=0.66 COPOD!:w=0.20,s=0.05"} +{"timestamp":"2026-03-15T18:33:18.260990017Z","score":0.6360731253181162,"is_anomaly":false,"confidence":0.7598921121746359,"method":"SEAD","details":"MAD!:w=0.36,s=0.89 RRCF-fast:w=0.17,s=0.40 RRCF-mid:w=0.14,s=0.52 RRCF-slow!:w=0.13,s=0.83 COPOD!:w=0.20,s=0.34"} +{"timestamp":"2026-03-15T18:33:48.259578381Z","score":0.5521987422460033,"is_anomaly":false,"confidence":0.6621490970689013,"method":"SEAD","details":"MAD!:w=0.36,s=0.87 RRCF-fast:w=0.17,s=0.38 RRCF-mid:w=0.14,s=0.55 RRCF-slow:w=0.13,s=0.58 COPOD!:w=0.21,s=0.14"} +{"timestamp":"2026-03-15T18:34:18.264075276Z","score":0.5310706631673054,"is_anomaly":false,"confidence":0.6368141272211656,"method":"SEAD","details":"MAD!:w=0.35,s=0.85 RRCF-fast:w=0.17,s=0.43 RRCF-mid:w=0.14,s=0.58 RRCF-slow:w=0.13,s=0.54 COPOD!:w=0.21,s=0.04"} +{"timestamp":"2026-03-15T18:34:48.259285861Z","score":0.5544689241835937,"is_anomaly":false,"confidence":0.664871303414471,"method":"SEAD","details":"MAD!:w=0.35,s=0.88 RRCF-fast:w=0.17,s=0.52 RRCF-mid:w=0.14,s=0.38 RRCF-slow:w=0.13,s=0.53 COPOD!:w=0.21,s=0.17"} +{"timestamp":"2026-03-15T18:35:18.257891957Z","score":0.5105501124163598,"is_anomaly":false,"confidence":0.6122076529365105,"method":"SEAD","details":"MAD!:w=0.35,s=0.88 RRCF-fast:w=0.17,s=0.33 RRCF-mid:w=0.14,s=0.38 RRCF-slow:w=0.13,s=0.64 COPOD!:w=0.21,s=0.07"} +{"timestamp":"2026-03-15T18:35:48.263925364Z","score":0.4639390581467234,"is_anomaly":false,"confidence":0.5563156974921069,"method":"SEAD","details":"MAD!:w=0.34,s=0.82 RRCF-fast:w=0.17,s=0.22 RRCF-mid:w=0.14,s=0.44 RRCF-slow:w=0.13,s=0.58 COPOD!:w=0.22,s=0.04"} +{"timestamp":"2026-03-15T18:36:18.264669334Z","score":0.476339074698316,"is_anomaly":false,"confidence":0.5711847276711336,"method":"SEAD","details":"MAD!:w=0.34,s=0.83 RRCF-fast:w=0.17,s=0.37 RRCF-mid:w=0.14,s=0.36 RRCF-slow:w=0.13,s=0.55 COPOD!:w=0.22,s=0.05"} +{"timestamp":"2026-03-15T18:36:48.302017583Z","score":0.7370288373874593,"is_anomaly":false,"confidence":0.8837814030594716,"method":"SEAD","details":"MAD!:w=0.33,s=0.92 RRCF-fast:w=0.18,s=0.49 RRCF-mid:w=0.14,s=0.60 RRCF-slow:w=0.13,s=0.61 COPOD!:w=0.22,s=0.82"} +{"timestamp":"2026-03-15T18:37:18.261620627Z","score":0.6914711945358716,"is_anomaly":false,"confidence":0.8313781703239521,"method":"SEAD","details":"MAD!:w=0.33,s=0.84 RRCF-fast:w=0.18,s=0.77 RRCF-mid!:w=0.14,s=0.82 RRCF-slow!:w=0.13,s=0.89 COPOD!:w=0.22,s=0.20"} +{"timestamp":"2026-03-15T18:37:48.259453764Z","score":0.7049363692595978,"is_anomaly":false,"confidence":0.8475677851819041,"method":"SEAD","details":"MAD!:w=0.33,s=0.86 RRCF-fast!:w=0.18,s=0.81 RRCF-mid!:w=0.14,s=0.85 RRCF-slow!:w=0.13,s=0.88 COPOD!:w=0.22,s=0.20"} +{"timestamp":"2026-03-15T18:38:18.25866608Z","score":0.7229536960192963,"is_anomaly":false,"confidence":0.869230599589757,"method":"SEAD","details":"MAD!:w=0.33,s=0.84 RRCF-fast:w=0.18,s=0.75 RRCF-mid:w=0.14,s=0.72 RRCF-slow!:w=0.13,s=0.89 COPOD!:w=0.23,s=0.43"} +{"timestamp":"2026-03-15T18:38:48.260866308Z","score":0.5279610944490413,"is_anomaly":false,"confidence":0.634784691211753,"method":"SEAD","details":"MAD!:w=0.33,s=0.82 RRCF-fast:w=0.18,s=0.34 RRCF-mid:w=0.14,s=0.71 RRCF-slow:w=0.13,s=0.71 COPOD!:w=0.23,s=0.04"} +{"timestamp":"2026-03-15T18:39:18.259051867Z","score":0.5807075971748811,"is_anomaly":false,"confidence":0.6982035165709648,"method":"SEAD","details":"MAD!:w=0.33,s=0.88 RRCF-fast:w=0.18,s=0.33 RRCF-mid:w=0.14,s=0.58 RRCF-slow:w=0.13,s=0.71 COPOD!:w=0.23,s=0.28"} +{"timestamp":"2026-03-15T18:39:48.260841981Z","score":0.5714803829790908,"is_anomaly":false,"confidence":0.6871093386559578,"method":"SEAD","details":"MAD!:w=0.32,s=0.85 RRCF-fast:w=0.18,s=0.48 RRCF-mid:w=0.14,s=0.42 RRCF-slow!:w=0.13,s=0.83 COPOD!:w=0.23,s=0.21"} +{"timestamp":"2026-03-15T18:40:22.092606163Z","score":0.9227453631657211,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.32,s=0.92 RRCF-fast!:w=0.18,s=0.85 RRCF-mid!:w=0.14,s=0.92 RRCF-slow!:w=0.13,s=0.94 COPOD!:w=0.23,s=0.98"} +{"timestamp":"2026-03-15T18:40:49.184827376Z","score":0.39970088703187917,"is_anomaly":false,"confidence":0.48057329757673,"method":"SEAD","details":"MAD!:w=0.32,s=0.01 RRCF-fast:w=0.18,s=0.58 RRCF-mid:w=0.14,s=0.46 RRCF-slow:w=0.13,s=0.75 COPOD!:w=0.23,s=0.56"} +{"timestamp":"2026-03-15T18:41:20.235003429Z","score":0.450155009979852,"is_anomaly":false,"confidence":0.5412359206234364,"method":"SEAD","details":"MAD!:w=0.32,s=0.09 RRCF-fast:w=0.18,s=0.50 RRCF-mid:w=0.14,s=0.56 RRCF-slow:w=0.13,s=0.41 COPOD!:w=0.23,s=0.87"} +{"timestamp":"2026-03-15T18:41:48.30118872Z","score":0.43753934480129986,"is_anomaly":false,"confidence":0.5260676985536735,"method":"SEAD","details":"MAD!:w=0.33,s=0.33 RRCF-fast:w=0.18,s=0.15 RRCF-mid:w=0.14,s=0.19 RRCF-slow:w=0.13,s=0.51 COPOD!:w=0.23,s=0.93"} +{"timestamp":"2026-03-15T18:42:18.25888421Z","score":0.336650158658616,"is_anomaly":false,"confidence":0.4047653686177506,"method":"SEAD","details":"MAD!:w=0.33,s=0.25 RRCF-fast:w=0.18,s=0.24 RRCF-mid:w=0.14,s=0.20 RRCF-slow:w=0.13,s=0.37 COPOD!:w=0.23,s=0.61"} +{"timestamp":"2026-03-15T18:42:48.354376089Z","score":0.6615220141281055,"is_anomaly":false,"confidence":0.7953693025549581,"method":"SEAD","details":"MAD!:w=0.33,s=0.04 RRCF-fast!:w=0.18,s=1.00 RRCF-mid!:w=0.14,s=1.00 RRCF-slow!:w=0.13,s=0.97 COPOD!:w=0.23,s=0.91"} +{"timestamp":"2026-03-15T18:43:20.33185615Z","score":0.5764661068073268,"is_anomaly":false,"confidence":0.6931038355877377,"method":"SEAD","details":"MAD!:w=0.33,s=0.64 RRCF-fast:w=0.18,s=0.34 RRCF-mid:w=0.14,s=0.38 RRCF-slow:w=0.12,s=0.55 COPOD!:w=0.22,s=0.81"} +{"timestamp":"2026-03-15T18:43:48.339347249Z","score":0.47072963523584244,"is_anomaly":false,"confidence":0.5713248960944152,"method":"SEAD","details":"MAD!:w=0.33,s=0.33 RRCF-fast:w=0.18,s=0.31 RRCF-mid:w=0.14,s=0.29 RRCF-slow:w=0.12,s=0.43 COPOD!:w=0.22,s=0.95"} +{"timestamp":"2026-03-15T18:44:18.303585533Z","score":0.8279307912598926,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.34,s=0.92 RRCF-fast!:w=0.18,s=0.97 RRCF-mid!:w=0.14,s=0.91 RRCF-slow:w=0.12,s=0.72 COPOD!:w=0.22,s=0.59"} +{"timestamp":"2026-03-15T18:44:49.84086436Z","score":0.4326086108250748,"is_anomaly":false,"confidence":0.5225178425442524,"method":"SEAD","details":"MAD!:w=0.33,s=0.00 RRCF-fast:w=0.18,s=0.73 RRCF-mid:w=0.14,s=0.71 RRCF-slow:w=0.13,s=0.51 COPOD!:w=0.22,s=0.63"} +{"timestamp":"2026-03-15T18:45:20.286225318Z","score":0.2930605039426712,"is_anomaly":false,"confidence":0.3539673932125538,"method":"SEAD","details":"MAD!:w=0.34,s=0.35 RRCF-fast:w=0.18,s=0.20 RRCF-mid:w=0.14,s=0.16 RRCF-slow:w=0.12,s=0.26 COPOD!:w=0.22,s=0.39"} +{"timestamp":"2026-03-15T18:45:48.263050151Z","score":0.3942121596577597,"is_anomaly":false,"confidence":0.47614144058813496,"method":"SEAD","details":"MAD!:w=0.34,s=0.28 RRCF-fast:w=0.18,s=0.29 RRCF-mid:w=0.14,s=0.17 RRCF-slow:w=0.12,s=0.37 COPOD!:w=0.22,s=0.81"} +{"timestamp":"2026-03-15T18:46:18.29676382Z","score":0.9187330091352912,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.34,s=0.92 RRCF-fast!:w=0.18,s=0.98 RRCF-mid!:w=0.14,s=0.96 RRCF-slow!:w=0.12,s=0.90 COPOD!:w=0.22,s=0.86"} +{"timestamp":"2026-03-15T18:46:49.226434886Z","score":0.7494635514762955,"is_anomaly":false,"confidence":0.9011042557876641,"method":"SEAD","details":"MAD!:w=0.34,s=0.58 RRCF-fast!:w=0.18,s=0.86 RRCF-mid!:w=0.14,s=0.93 RRCF-slow!:w=0.12,s=0.84 COPOD!:w=0.22,s=0.75"} +{"timestamp":"2026-03-15T18:47:18.302862763Z","score":0.42832871921155263,"is_anomaly":false,"confidence":0.5173484592350397,"method":"SEAD","details":"MAD!:w=0.34,s=0.29 RRCF-fast:w=0.18,s=0.28 RRCF-mid:w=0.14,s=0.25 RRCF-slow:w=0.12,s=0.26 COPOD!:w=0.22,s=0.97"} +{"timestamp":"2026-03-15T18:47:48.264064983Z","score":0.4015601402654532,"is_anomaly":false,"confidence":0.4850165551330498,"method":"SEAD","details":"MAD!:w=0.34,s=0.26 RRCF-fast:w=0.18,s=0.25 RRCF-mid:w=0.14,s=0.51 RRCF-slow:w=0.12,s=0.34 COPOD!:w=0.21,s=0.72"} +{"timestamp":"2026-03-15T18:48:22.436787359Z","score":0.6422461959455134,"is_anomaly":false,"confidence":0.7757244962084135,"method":"SEAD","details":"MAD!:w=0.34,s=0.04 RRCF-fast!:w=0.18,s=0.94 RRCF-mid!:w=0.14,s=0.98 RRCF-slow!:w=0.13,s=0.95 COPOD!:w=0.21,s=0.96"} +{"timestamp":"2026-03-15T18:48:48.303050987Z","score":0.6209617248406188,"is_anomaly":false,"confidence":0.7500164644144696,"method":"SEAD","details":"MAD!:w=0.35,s=0.65 RRCF-fast:w=0.18,s=0.39 RRCF-mid:w=0.14,s=0.71 RRCF-slow:w=0.12,s=0.45 COPOD!:w=0.21,s=0.82"} +{"timestamp":"2026-03-15T18:49:18.263389599Z","score":0.356977422930901,"is_anomaly":false,"confidence":0.4311681926790951,"method":"SEAD","details":"MAD!:w=0.35,s=0.36 RRCF-fast:w=0.18,s=0.20 RRCF-mid:w=0.14,s=0.24 RRCF-slow:w=0.12,s=0.37 COPOD!:w=0.21,s=0.56"} +{"timestamp":"2026-03-15T18:49:48.72401939Z","score":0.7555098842263257,"is_anomaly":false,"confidence":0.9125278250331029,"method":"SEAD","details":"MAD!:w=0.35,s=0.91 RRCF-fast:w=0.18,s=0.77 RRCF-mid:w=0.14,s=0.76 RRCF-slow:w=0.12,s=0.72 COPOD!:w=0.21,s=0.50"} +{"timestamp":"2026-03-15T18:50:18.254709402Z","score":0.9913918293720253,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.35,s=1.00 RRCF-fast!:w=0.18,s=1.00 RRCF-mid!:w=0.14,s=1.00 RRCF-slow!:w=0.12,s=1.00 COPOD!:w=0.21,s=0.96"} +{"timestamp":"2026-03-15T18:50:48.260017927Z","score":0.8692127545901972,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.35,s=1.00 RRCF-fast!:w=0.18,s=0.98 RRCF-mid!:w=0.14,s=1.00 RRCF-slow!:w=0.12,s=1.00 COPOD!:w=0.21,s=0.41"} +{"timestamp":"2026-03-15T18:51:19.057677652Z","score":0.8690949568534578,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.35,s=1.00 RRCF-fast!:w=0.18,s=0.98 RRCF-mid!:w=0.14,s=0.99 RRCF-slow!:w=0.12,s=0.99 COPOD!:w=0.21,s=0.41"} +{"timestamp":"2026-03-15T18:51:48.265622351Z","score":0.8230851464221957,"is_anomaly":false,"confidence":0.9869727053298554,"method":"SEAD","details":"MAD!:w=0.34,s=0.99 RRCF-fast!:w=0.18,s=0.98 RRCF-mid!:w=0.14,s=0.98 RRCF-slow!:w=0.12,s=0.99 COPOD!:w=0.21,s=0.23"} +{"timestamp":"2026-03-15T18:52:18.303142426Z","score":0.8499050566853966,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.34,s=0.99 RRCF-fast!:w=0.18,s=0.96 RRCF-mid!:w=0.14,s=0.98 RRCF-slow!:w=0.12,s=0.98 COPOD!:w=0.22,s=0.39"} +{"timestamp":"2026-03-15T18:52:48.306992859Z","score":0.7936783996689902,"is_anomaly":false,"confidence":0.9481770750968661,"method":"SEAD","details":"MAD!:w=0.34,s=0.88 RRCF-fast!:w=0.18,s=0.99 RRCF-mid!:w=0.14,s=1.00 RRCF-slow!:w=0.12,s=1.00 COPOD!:w=0.22,s=0.25"} +{"timestamp":"2026-03-15T18:53:18.2613803Z","score":0.5190031750988897,"is_anomaly":false,"confidence":0.6200331428151364,"method":"SEAD","details":"MAD!:w=0.34,s=0.10 RRCF-fast!:w=0.17,s=0.95 RRCF-mid!:w=0.14,s=0.96 RRCF-slow!:w=0.12,s=0.97 COPOD!:w=0.22,s=0.29"} +{"timestamp":"2026-03-15T18:53:48.30854332Z","score":0.7737483701367037,"is_anomaly":false,"confidence":0.9278122991745381,"method":"SEAD","details":"MAD!:w=0.34,s=0.89 RRCF-fast:w=0.17,s=0.90 RRCF-mid:w=0.14,s=0.95 RRCF-slow!:w=0.12,s=0.96 COPOD!:w=0.22,s=0.28"} +{"timestamp":"2026-03-15T18:54:18.258013892Z","score":0.7665765252239903,"is_anomaly":false,"confidence":0.9192124414241274,"method":"SEAD","details":"MAD!:w=0.34,s=0.88 RRCF-fast:w=0.17,s=0.89 RRCF-mid:w=0.14,s=0.94 RRCF-slow!:w=0.12,s=0.96 COPOD!:w=0.23,s=0.28"} +{"timestamp":"2026-03-15T18:54:48.253195166Z","score":0.7158697720577055,"is_anomaly":false,"confidence":0.8584092771724541,"method":"SEAD","details":"MAD!:w=0.34,s=0.89 RRCF-fast:w=0.17,s=0.85 RRCF-mid:w=0.14,s=0.94 RRCF-slow:w=0.12,s=0.95 COPOD!:w=0.23,s=0.10"} +{"timestamp":"2026-03-15T18:55:18.258612088Z","score":0.7009027992195337,"is_anomaly":false,"confidence":0.8404621744493638,"method":"SEAD","details":"MAD!:w=0.34,s=0.88 RRCF-fast:w=0.17,s=0.86 RRCF-mid:w=0.14,s=0.92 RRCF-slow:w=0.12,s=0.95 COPOD!:w=0.23,s=0.05"} +{"timestamp":"2026-03-15T18:55:48.259861906Z","score":0.6878486738366674,"is_anomaly":false,"confidence":0.8248087933856337,"method":"SEAD","details":"MAD!:w=0.34,s=0.89 RRCF-fast:w=0.17,s=0.76 RRCF-mid:w=0.14,s=0.90 RRCF-slow:w=0.12,s=0.94 COPOD!:w=0.23,s=0.09"} +{"timestamp":"2026-03-15T18:56:18.978472421Z","score":0.6580582411329691,"is_anomaly":false,"confidence":0.7890866763163088,"method":"SEAD","details":"MAD!:w=0.33,s=0.88 RRCF-fast:w=0.17,s=0.75 RRCF-mid:w=0.14,s=0.86 RRCF-slow:w=0.12,s=0.94 COPOD!:w=0.24,s=0.03"} +{"timestamp":"2026-03-15T18:56:48.252153435Z","score":0.6347867359416892,"is_anomaly":false,"confidence":0.761181494773944,"method":"SEAD","details":"MAD!:w=0.33,s=0.87 RRCF-fast:w=0.17,s=0.68 RRCF-mid:w=0.14,s=0.86 RRCF-slow:w=0.12,s=0.93 COPOD!:w=0.24,s=0.01"} +{"timestamp":"2026-03-15T18:57:18.261440121Z","score":0.6428838231970847,"is_anomaly":false,"confidence":0.7729600030832985,"method":"SEAD","details":"MAD!:w=0.33,s=0.89 RRCF-fast:w=0.17,s=0.68 RRCF-mid:w=0.14,s=0.87 RRCF-slow:w=0.12,s=0.93 COPOD!:w=0.24,s=0.02"} +{"timestamp":"2026-03-15T18:57:48.260071496Z","score":0.6298010401366527,"is_anomaly":false,"confidence":0.7572301500836695,"method":"SEAD","details":"MAD!:w=0.33,s=0.89 RRCF-fast:w=0.17,s=0.67 RRCF-mid:w=0.14,s=0.84 RRCF-slow:w=0.12,s=0.92 COPOD!:w=0.25,s=0.01"} +{"timestamp":"2026-03-15T18:58:18.25622972Z","score":0.6347123193754086,"is_anomaly":false,"confidence":0.7631351398789531,"method":"SEAD","details":"MAD!:w=0.32,s=0.85 RRCF-fast:w=0.17,s=0.55 RRCF-mid:w=0.13,s=0.85 RRCF-slow:w=0.12,s=0.91 COPOD!:w=0.25,s=0.17"} +{"timestamp":"2026-03-15T18:58:48.251888475Z","score":0.5947537290581588,"is_anomaly":false,"confidence":0.7150916350024009,"method":"SEAD","details":"MAD!:w=0.32,s=0.87 RRCF-fast:w=0.17,s=0.48 RRCF-mid:w=0.13,s=0.78 RRCF-slow:w=0.12,s=0.92 COPOD!:w=0.26,s=0.08"} +{"timestamp":"2026-03-15T18:59:18.260814087Z","score":0.5648663159774905,"is_anomaly":false,"confidence":0.6791570320875239,"method":"SEAD","details":"MAD!:w=0.32,s=0.86 RRCF-fast:w=0.17,s=0.42 RRCF-mid:w=0.13,s=0.78 RRCF-slow:w=0.12,s=0.89 COPOD!:w=0.26,s=0.04"} +{"timestamp":"2026-03-15T18:59:48.292824424Z","score":0.6928361982569853,"is_anomaly":false,"confidence":0.8330193584242122,"method":"SEAD","details":"MAD!:w=0.32,s=0.89 RRCF-fast:w=0.17,s=0.59 RRCF-mid:w=0.13,s=0.83 RRCF-slow:w=0.12,s=0.90 COPOD!:w=0.26,s=0.36"} +{"timestamp":"2026-03-15T19:00:21.897100939Z","score":0.8619168370503452,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=0.89 RRCF-fast:w=0.17,s=0.60 RRCF-mid:w=0.13,s=0.87 RRCF-slow:w=0.12,s=0.90 COPOD!:w=0.26,s=0.98"} +{"timestamp":"2026-03-15T19:00:52.000924419Z","score":0.5816341914928863,"is_anomaly":false,"confidence":0.6993175908734421,"method":"SEAD","details":"MAD!:w=0.31,s=0.08 RRCF-fast:w=0.17,s=0.61 RRCF-mid:w=0.13,s=0.78 RRCF-slow:w=0.12,s=0.91 COPOD!:w=0.26,s=0.91"} +{"timestamp":"2026-03-15T19:01:18.718199766Z","score":0.5796358963121341,"is_anomaly":false,"confidence":0.6969149759788968,"method":"SEAD","details":"MAD!:w=0.32,s=0.38 RRCF-fast:w=0.17,s=0.37 RRCF-mid:w=0.13,s=0.64 RRCF-slow:w=0.12,s=0.86 COPOD!:w=0.26,s=0.80"} +{"timestamp":"2026-03-15T19:01:48.406970016Z","score":0.5390963299582675,"is_anomaly":false,"confidence":0.6481729448323549,"method":"SEAD","details":"MAD!:w=0.32,s=0.28 RRCF-fast:w=0.17,s=0.17 RRCF-mid:w=0.13,s=0.54 RRCF-slow:w=0.12,s=0.86 COPOD!:w=0.26,s=0.96"} +{"timestamp":"2026-03-15T19:02:18.262748691Z","score":0.4510135918316911,"is_anomaly":false,"confidence":0.5422682213392087,"method":"SEAD","details":"MAD!:w=0.32,s=0.20 RRCF-fast:w=0.17,s=0.26 RRCF-mid:w=0.13,s=0.52 RRCF-slow:w=0.12,s=0.85 COPOD!:w=0.26,s=0.67"} +{"timestamp":"2026-03-15T19:02:53.953874183Z","score":0.4710537074801599,"is_anomaly":false,"confidence":0.5663631002185633,"method":"SEAD","details":"MAD!:w=0.32,s=0.02 RRCF-fast:w=0.17,s=0.69 RRCF-mid:w=0.13,s=0.70 RRCF-slow:w=0.12,s=0.86 COPOD!:w=0.25,s=0.60"} +{"timestamp":"2026-03-15T19:03:18.305622278Z","score":0.5033927638564244,"is_anomaly":false,"confidence":0.6052453931218104,"method":"SEAD","details":"MAD!:w=0.33,s=0.57 RRCF-fast:w=0.17,s=0.15 RRCF-mid:w=0.13,s=0.49 RRCF-slow:w=0.11,s=0.83 COPOD!:w=0.25,s=0.52"} +{"timestamp":"2026-03-15T19:03:48.263097116Z","score":0.47087162408152405,"is_anomaly":false,"confidence":0.5687330741316934,"method":"SEAD","details":"MAD!:w=0.33,s=0.32 RRCF-fast:w=0.17,s=0.12 RRCF-mid:w=0.13,s=0.33 RRCF-slow:w=0.11,s=0.81 COPOD!:w=0.25,s=0.83"} +{"timestamp":"2026-03-15T19:04:18.308702772Z","score":0.6182962673938527,"is_anomaly":false,"confidence":0.7467970438120421,"method":"SEAD","details":"MAD!:w=0.33,s=0.89 RRCF-fast:w=0.17,s=0.45 RRCF-mid:w=0.13,s=0.67 RRCF-slow:w=0.11,s=0.83 COPOD!:w=0.25,s=0.26"} +{"timestamp":"2026-03-15T19:04:49.258053772Z","score":0.4260224485328351,"is_anomaly":false,"confidence":0.5145628753395451,"method":"SEAD","details":"MAD!:w=0.33,s=0.01 RRCF-fast:w=0.18,s=0.88 RRCF-mid:w=0.13,s=0.76 RRCF-slow:w=0.11,s=0.85 COPOD!:w=0.25,s=0.29"} +{"timestamp":"2026-03-15T19:05:18.306104795Z","score":0.3309495986932892,"is_anomaly":false,"confidence":0.3997309946519456,"method":"SEAD","details":"MAD!:w=0.33,s=0.10 RRCF-fast:w=0.17,s=0.30 RRCF-mid:w=0.13,s=0.38 RRCF-slow:w=0.11,s=0.74 COPOD!:w=0.25,s=0.45"} +{"timestamp":"2026-03-15T19:05:48.305608321Z","score":0.3177950475755562,"is_anomaly":false,"confidence":0.3838425275764365,"method":"SEAD","details":"MAD!:w=0.33,s=0.24 RRCF-fast:w=0.17,s=0.10 RRCF-mid:w=0.13,s=0.31 RRCF-slow:w=0.11,s=0.71 COPOD!:w=0.25,s=0.41"} +{"timestamp":"2026-03-15T19:06:24.630987443Z","score":0.809074432507385,"is_anomaly":false,"confidence":0.9772247161821181,"method":"SEAD","details":"MAD!:w=0.33,s=0.89 RRCF-fast:w=0.17,s=0.61 RRCF-mid:w=0.13,s=0.72 RRCF-slow:w=0.11,s=0.82 COPOD!:w=0.25,s=0.88"} +{"timestamp":"2026-03-15T19:06:51.534926341Z","score":0.6091755416709033,"is_anomaly":false,"confidence":0.7357807537800335,"method":"SEAD","details":"MAD!:w=0.33,s=0.62 RRCF-fast:w=0.17,s=0.24 RRCF-mid:w=0.13,s=0.47 RRCF-slow:w=0.11,s=0.73 COPOD!:w=0.25,s=0.87"} +{"timestamp":"2026-03-15T19:07:18.305079026Z","score":0.4905015398046394,"is_anomaly":false,"confidence":0.5953220708584325,"method":"SEAD","details":"MAD!:w=0.33,s=0.37 RRCF-fast:w=0.18,s=0.19 RRCF-mid:w=0.13,s=0.42 RRCF-slow:w=0.11,s=0.67 COPOD!:w=0.25,s=0.81"} +{"timestamp":"2026-03-15T19:07:48.310622877Z","score":0.3730534743361843,"is_anomaly":false,"confidence":0.4527752695153715,"method":"SEAD","details":"MAD!:w=0.33,s=0.22 RRCF-fast:w=0.18,s=0.31 RRCF-mid:w=0.13,s=0.23 RRCF-slow:w=0.11,s=0.61 COPOD!:w=0.25,s=0.59"} +{"timestamp":"2026-03-15T19:08:18.353575878Z","score":0.5240770845413167,"is_anomaly":false,"confidence":0.6360727336000821,"method":"SEAD","details":"MAD!:w=0.33,s=0.06 RRCF-fast:w=0.18,s=0.64 RRCF-mid:w=0.13,s=0.61 RRCF-slow:w=0.11,s=0.79 COPOD!:w=0.25,s=0.91"} +{"timestamp":"2026-03-15T19:08:48.297339279Z","score":0.5401090049808747,"is_anomaly":false,"confidence":0.6555306869425254,"method":"SEAD","details":"MAD!:w=0.34,s=0.60 RRCF-fast:w=0.18,s=0.22 RRCF-mid:w=0.13,s=0.23 RRCF-slow:w=0.11,s=0.70 COPOD!:w=0.24,s=0.79"} +{"timestamp":"2026-03-15T19:09:18.261588024Z","score":0.3877880813341698,"is_anomaly":false,"confidence":0.47065867260279015,"method":"SEAD","details":"MAD!:w=0.34,s=0.27 RRCF-fast:w=0.18,s=0.13 RRCF-mid:w=0.13,s=0.22 RRCF-slow:w=0.11,s=0.64 COPOD!:w=0.24,s=0.72"} +{"timestamp":"2026-03-15T19:09:48.305637463Z","score":0.5749909598366751,"is_anomaly":false,"confidence":0.6978669405832709,"method":"SEAD","details":"MAD!:w=0.34,s=0.89 RRCF-fast:w=0.18,s=0.33 RRCF-mid:w=0.13,s=0.55 RRCF-slow:w=0.11,s=0.74 COPOD!:w=0.24,s=0.25"} +{"timestamp":"2026-03-15T19:10:21.528934782Z","score":0.7631126241915399,"is_anomaly":false,"confidence":0.9261903396121067,"method":"SEAD","details":"MAD!:w=0.34,s=0.84 RRCF-fast:w=0.18,s=0.50 RRCF-mid:w=0.13,s=0.52 RRCF-slow:w=0.11,s=0.76 COPOD!:w=0.24,s=0.99"} +{"timestamp":"2026-03-15T19:10:48.305090928Z","score":0.36930866174198984,"is_anomaly":false,"confidence":0.44868828376664155,"method":"SEAD","details":"MAD!:w=0.34,s=0.54 RRCF-fast:w=0.18,s=0.08 RRCF-mid:w=0.13,s=0.18 RRCF-slow:w=0.11,s=0.55 COPOD!:w=0.24,s=0.37"} +{"timestamp":"2026-03-15T19:11:18.261026452Z","score":0.32207858187235167,"is_anomaly":false,"confidence":0.39130651703820657,"method":"SEAD","details":"MAD!:w=0.33,s=0.25 RRCF-fast:w=0.18,s=0.13 RRCF-mid:w=0.13,s=0.16 RRCF-slow:w=0.11,s=0.61 COPOD!:w=0.24,s=0.52"} +{"timestamp":"2026-03-15T19:11:49.300106539Z","score":0.8676071479865969,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.33,s=0.89 RRCF-fast:w=0.18,s=0.82 RRCF-mid:w=0.13,s=0.69 RRCF-slow:w=0.11,s=0.84 COPOD!:w=0.24,s=0.99"} +{"timestamp":"2026-03-15T19:12:20.566996909Z","score":0.6806462898948248,"is_anomaly":false,"confidence":0.8261008904960494,"method":"SEAD","details":"MAD!:w=0.33,s=0.87 RRCF-fast:w=0.18,s=0.37 RRCF-mid:w=0.13,s=0.36 RRCF-slow:w=0.11,s=0.66 COPOD!:w=0.24,s=0.84"} +{"timestamp":"2026-03-15T19:12:48.307153547Z","score":0.44503961056765173,"is_anomaly":false,"confidence":0.5401448947187562,"method":"SEAD","details":"MAD!:w=0.33,s=0.33 RRCF-fast:w=0.18,s=0.10 RRCF-mid:w=0.13,s=0.23 RRCF-slow:w=0.11,s=0.45 COPOD!:w=0.24,s=0.99"} +{"timestamp":"2026-03-15T19:13:18.266584992Z","score":0.22337995624408657,"is_anomaly":false,"confidence":0.27111641319711477,"method":"SEAD","details":"MAD!:w=0.33,s=0.11 RRCF-fast:w=0.18,s=0.32 RRCF-mid:w=0.14,s=0.18 RRCF-slow:w=0.11,s=0.45 COPOD!:w=0.24,s=0.24"} +{"timestamp":"2026-03-15T19:13:52.215437821Z","score":0.889901210493096,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.34,s=0.88 RRCF-fast:w=0.18,s=0.87 RRCF-mid:w=0.14,s=0.75 RRCF-slow:w=0.11,s=0.89 COPOD!:w=0.24,s=1.00"} +{"timestamp":"2026-03-15T19:14:18.359722049Z","score":0.6168415615140294,"is_anomaly":false,"confidence":0.748661045872231,"method":"SEAD","details":"MAD!:w=0.34,s=0.82 RRCF-fast:w=0.18,s=0.38 RRCF-mid:w=0.14,s=0.26 RRCF-slow:w=0.11,s=0.55 COPOD!:w=0.23,s=0.75"} +{"timestamp":"2026-03-15T19:14:48.28471685Z","score":0.29534556425301495,"is_anomaly":false,"confidence":0.3584611232820722,"method":"SEAD","details":"MAD!:w=0.33,s=0.20 RRCF-fast:w=0.19,s=0.17 RRCF-mid:w=0.14,s=0.11 RRCF-slow:w=0.11,s=0.31 COPOD!:w=0.23,s=0.64"} +{"timestamp":"2026-03-15T19:15:18.476589796Z","score":0.8483647619240009,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.33,s=0.89 RRCF-fast:w=0.19,s=0.89 RRCF-mid:w=0.14,s=0.71 RRCF-slow:w=0.11,s=0.67 COPOD!:w=0.23,s=0.93"} +{"timestamp":"2026-03-15T19:15:50.030652593Z","score":0.7453368661746821,"is_anomaly":false,"confidence":0.9002405443098399,"method":"SEAD","details":"MAD!:w=0.33,s=0.87 RRCF-fast:w=0.19,s=0.66 RRCF-mid:w=0.14,s=0.27 RRCF-slow:w=0.11,s=0.68 COPOD!:w=0.23,s=0.94"} +{"timestamp":"2026-03-15T19:16:18.280968224Z","score":0.5558183824984897,"is_anomaly":false,"confidence":0.6713343535063849,"method":"SEAD","details":"MAD!:w=0.33,s=0.32 RRCF-fast:w=0.19,s=0.55 RRCF-mid:w=0.14,s=0.48 RRCF-slow:w=0.11,s=0.62 COPOD!:w=0.23,s=0.92"} +{"timestamp":"2026-03-15T19:16:48.308779249Z","score":0.3527152310614706,"is_anomaly":false,"confidence":0.4260201876593223,"method":"SEAD","details":"MAD!:w=0.34,s=0.25 RRCF-fast:w=0.19,s=0.38 RRCF-mid:w=0.14,s=0.13 RRCF-slow:w=0.11,s=0.41 COPOD!:w=0.23,s=0.58"} +{"timestamp":"2026-03-15T19:17:20.852753143Z","score":0.8725162749211578,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.34,s=0.86 RRCF-fast:w=0.19,s=0.92 RRCF-mid:w=0.14,s=0.75 RRCF-slow:w=0.11,s=0.85 COPOD!:w=0.23,s=0.93"} +{"timestamp":"2026-03-15T19:17:48.307142194Z","score":0.8195589298999377,"is_anomaly":false,"confidence":0.9898882111302866,"method":"SEAD","details":"MAD!:w=0.34,s=0.83 RRCF-fast!:w=0.19,s=0.94 RRCF-mid:w=0.14,s=0.47 RRCF-slow:w=0.11,s=0.85 COPOD!:w=0.23,s=0.89"} +{"timestamp":"2026-03-15T19:18:18.312639412Z","score":0.295801143851189,"is_anomaly":false,"confidence":0.35727762147975867,"method":"SEAD","details":"MAD!:w=0.34,s=0.20 RRCF-fast:w=0.19,s=0.28 RRCF-mid:w=0.14,s=0.13 RRCF-slow:w=0.11,s=0.60 COPOD!:w=0.23,s=0.41"} +{"timestamp":"2026-03-15T19:18:48.262978539Z","score":0.23351909918935765,"is_anomaly":false,"confidence":0.28205147296672356,"method":"SEAD","details":"MAD!:w=0.34,s=0.20 RRCF-fast:w=0.19,s=0.45 RRCF-mid:w=0.14,s=0.16 RRCF-slow:w=0.11,s=0.44 COPOD!:w=0.23,s=0.06"} +{"timestamp":"2026-03-15T19:19:18.47569034Z","score":0.9109428724928212,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.34,s=0.84 RRCF-fast!:w=0.19,s=0.97 RRCF-mid:w=0.14,s=0.87 RRCF-slow:w=0.11,s=0.89 COPOD!:w=0.23,s=1.00"} +{"timestamp":"2026-03-15T19:19:48.354311062Z","score":0.584526582769882,"is_anomaly":false,"confidence":0.7027952064078734,"method":"SEAD","details":"MAD!:w=0.34,s=0.73 RRCF-fast:w=0.18,s=0.70 RRCF-mid:w=0.14,s=0.28 RRCF-slow:w=0.11,s=0.54 COPOD!:w=0.23,s=0.49"} +{"timestamp":"2026-03-15T19:20:18.262611766Z","score":0.31834486446746574,"is_anomaly":false,"confidence":0.3827563216579633,"method":"SEAD","details":"MAD!:w=0.34,s=0.28 RRCF-fast:w=0.18,s=0.69 RRCF-mid:w=0.14,s=0.14 RRCF-slow:w=0.11,s=0.38 COPOD!:w=0.23,s=0.16"} +{"timestamp":"2026-03-15T19:20:48.305195617Z","score":0.7143649541891037,"is_anomaly":false,"confidence":0.8628317266737096,"method":"SEAD","details":"MAD!:w=0.34,s=0.89 RRCF-fast:w=0.18,s=0.85 RRCF-mid:w=0.14,s=0.63 RRCF-slow:w=0.11,s=0.68 COPOD!:w=0.23,s=0.42"} +{"timestamp":"2026-03-15T19:21:18.43798742Z","score":0.39114680611663655,"is_anomaly":false,"confidence":0.47243901331585236,"method":"SEAD","details":"MAD!:w=0.34,s=0.03 RRCF-fast:w=0.18,s=0.78 RRCF-mid:w=0.14,s=0.31 RRCF-slow:w=0.11,s=0.67 COPOD!:w=0.23,s=0.53"} +{"timestamp":"2026-03-15T19:21:48.303218562Z","score":0.4282676510338348,"is_anomaly":false,"confidence":0.5172746992319542,"method":"SEAD","details":"MAD!:w=0.34,s=0.38 RRCF-fast:w=0.18,s=0.40 RRCF-mid:w=0.14,s=0.10 RRCF-slow:w=0.11,s=0.32 COPOD!:w=0.23,s=0.78"} +{"timestamp":"2026-03-15T19:22:18.263718871Z","score":0.26556371232537634,"is_anomaly":false,"confidence":0.32075593168996447,"method":"SEAD","details":"MAD!:w=0.34,s=0.26 RRCF-fast:w=0.18,s=0.43 RRCF-mid:w=0.14,s=0.13 RRCF-slow:w=0.11,s=0.29 COPOD!:w=0.23,s=0.21"} +{"timestamp":"2026-03-15T19:22:51.662164145Z","score":0.5373542518980663,"is_anomaly":false,"confidence":0.6490328147843791,"method":"SEAD","details":"MAD!:w=0.34,s=0.00 RRCF-fast:w=0.18,s=0.87 RRCF-mid:w=0.14,s=0.69 RRCF-slow:w=0.11,s=0.74 COPOD!:w=0.23,s=0.88"} +{"timestamp":"2026-03-15T19:23:18.363839517Z","score":0.5238633093017052,"is_anomaly":false,"confidence":0.6327380438460602,"method":"SEAD","details":"MAD!:w=0.35,s=0.59 RRCF-fast:w=0.18,s=0.67 RRCF-mid:w=0.14,s=0.22 RRCF-slow:w=0.11,s=0.41 COPOD!:w=0.23,s=0.55"} +{"timestamp":"2026-03-15T19:23:48.340263041Z","score":0.3876177741719432,"is_anomaly":false,"confidence":0.47045197067777855,"method":"SEAD","details":"MAD!:w=0.34,s=0.33 RRCF-fast:w=0.18,s=0.14 RRCF-mid:w=0.14,s=0.13 RRCF-slow:w=0.11,s=0.28 COPOD!:w=0.23,s=0.89"} +{"timestamp":"2026-03-15T19:24:18.282299964Z","score":0.2413165312838118,"is_anomaly":false,"confidence":0.2928860471946142,"method":"SEAD","details":"MAD!:w=0.35,s=0.23 RRCF-fast:w=0.18,s=0.12 RRCF-mid:w=0.14,s=0.14 RRCF-slow:w=0.11,s=0.30 COPOD!:w=0.22,s=0.40"} +{"timestamp":"2026-03-15T19:24:55.861270204Z","score":0.47845813909455104,"is_anomaly":false,"confidence":0.580704986773919,"method":"SEAD","details":"MAD!:w=0.35,s=0.03 RRCF-fast!:w=0.18,s=0.94 RRCF-mid!:w=0.14,s=0.96 RRCF-slow!:w=0.11,s=0.93 COPOD!:w=0.22,s=0.27"} +{"timestamp":"2026-03-15T19:25:18.354231623Z","score":0.3827399644323318,"is_anomaly":false,"confidence":0.4645317694963603,"method":"SEAD","details":"MAD!:w=0.35,s=0.58 RRCF-fast:w=0.18,s=0.27 RRCF-mid:w=0.14,s=0.14 RRCF-slow:w=0.11,s=0.25 COPOD!:w=0.22,s=0.38"} +{"timestamp":"2026-03-15T19:25:48.256399074Z","score":0.33222764607204436,"is_anomaly":false,"confidence":0.4032249324534355,"method":"SEAD","details":"MAD!:w=0.35,s=0.26 RRCF-fast:w=0.18,s=0.32 RRCF-mid:w=0.14,s=0.23 RRCF-slow:w=0.11,s=0.29 COPOD!:w=0.22,s=0.55"} +{"timestamp":"2026-03-15T19:26:19.251360922Z","score":0.757117720661342,"is_anomaly":false,"confidence":0.918914320895396,"method":"SEAD","details":"MAD!:w=0.35,s=0.89 RRCF-fast!:w=0.18,s=0.89 RRCF-mid!:w=0.14,s=0.82 RRCF-slow:w=0.11,s=0.58 COPOD!:w=0.22,s=0.50"} +{"timestamp":"2026-03-15T19:26:49.343172008Z","score":0.4870991193004449,"is_anomaly":false,"confidence":0.5911925506508201,"method":"SEAD","details":"MAD!:w=0.35,s=0.18 RRCF-fast:w=0.18,s=0.62 RRCF-mid:w=0.14,s=0.65 RRCF-slow:w=0.11,s=0.59 COPOD!:w=0.22,s=0.71"} +{"timestamp":"2026-03-15T19:27:18.307163753Z","score":0.3630459750272831,"is_anomaly":false,"confidence":0.44107948807651215,"method":"SEAD","details":"MAD!:w=0.35,s=0.35 RRCF-fast:w=0.18,s=0.08 RRCF-mid:w=0.14,s=0.15 RRCF-slow:w=0.11,s=0.26 COPOD!:w=0.22,s=0.80"} +{"timestamp":"2026-03-15T19:27:48.262163443Z","score":0.2730708702511524,"is_anomaly":false,"confidence":0.33176503237622834,"method":"SEAD","details":"MAD!:w=0.35,s=0.21 RRCF-fast:w=0.18,s=0.19 RRCF-mid:w=0.14,s=0.21 RRCF-slow:w=0.11,s=0.21 COPOD!:w=0.22,s=0.51"} +{"timestamp":"2026-03-15T19:28:22.836216208Z","score":0.3611012915033094,"is_anomaly":false,"confidence":0.4387168120733952,"method":"SEAD","details":"MAD!:w=0.35,s=0.02 RRCF-fast:w=0.18,s=0.73 RRCF-mid:w=0.14,s=0.65 RRCF-slow:w=0.11,s=0.62 COPOD!:w=0.22,s=0.29"} +{"timestamp":"2026-03-15T19:28:48.307450253Z","score":0.5493247100608515,"is_anomaly":false,"confidence":0.6673971853928697,"method":"SEAD","details":"MAD!:w=0.35,s=0.58 RRCF-fast:w=0.18,s=0.41 RRCF-mid:w=0.14,s=0.55 RRCF-slow:w=0.11,s=0.40 COPOD!:w=0.22,s=0.68"} +{"timestamp":"2026-03-15T19:29:18.315554535Z","score":0.2925850421334008,"is_anomaly":false,"confidence":0.3554736024641142,"method":"SEAD","details":"MAD!:w=0.35,s=0.38 RRCF-fast:w=0.18,s=0.09 RRCF-mid:w=0.14,s=0.12 RRCF-slow:w=0.11,s=0.17 COPOD!:w=0.22,s=0.49"} +{"timestamp":"2026-03-15T19:29:48.26105075Z","score":0.2298158369508133,"is_anomaly":false,"confidence":0.27921271322873675,"method":"SEAD","details":"MAD!:w=0.35,s=0.19 RRCF-fast:w=0.18,s=0.20 RRCF-mid:w=0.14,s=0.37 RRCF-slow:w=0.11,s=0.24 COPOD!:w=0.22,s=0.21"} +{"timestamp":"2026-03-15T19:30:18.302588249Z","score":0.9905705138162989,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.35,s=1.00 RRCF-fast!:w=0.18,s=1.00 RRCF-mid!:w=0.14,s=1.00 RRCF-slow!:w=0.11,s=0.96 COPOD!:w=0.22,s=0.98"} +{"timestamp":"2026-03-15T19:30:48.256168756Z","score":0.7986570603358619,"is_anomaly":false,"confidence":0.9703213134236254,"method":"SEAD","details":"MAD!:w=0.35,s=0.88 RRCF-fast!:w=0.18,s=0.99 RRCF-mid!:w=0.14,s=0.99 RRCF-slow!:w=0.11,s=0.96 COPOD!:w=0.22,s=0.30"} +{"timestamp":"2026-03-15T19:31:18.261726782Z","score":0.790891717646027,"is_anomaly":false,"confidence":0.9608868791812029,"method":"SEAD","details":"MAD!:w=0.35,s=0.88 RRCF-fast!:w=0.18,s=0.96 RRCF-mid!:w=0.14,s=0.97 RRCF-slow!:w=0.11,s=0.88 COPOD!:w=0.22,s=0.35"} +{"timestamp":"2026-03-15T19:31:48.262118939Z","score":0.7292456416172733,"is_anomaly":false,"confidence":0.8859905257520125,"method":"SEAD","details":"MAD!:w=0.35,s=0.88 RRCF-fast!:w=0.18,s=0.93 RRCF-mid!:w=0.14,s=0.95 RRCF-slow:w=0.11,s=0.75 COPOD!:w=0.22,s=0.18"} +{"timestamp":"2026-03-15T19:32:18.260953935Z","score":0.7053943074587432,"is_anomaly":false,"confidence":0.8570125588160186,"method":"SEAD","details":"MAD!:w=0.35,s=0.87 RRCF-fast!:w=0.18,s=0.91 RRCF-mid!:w=0.14,s=0.94 RRCF-slow:w=0.11,s=0.78 COPOD!:w=0.22,s=0.10"} +{"timestamp":"2026-03-15T19:32:48.258679063Z","score":0.7066286186047486,"is_anomaly":false,"confidence":0.8585121741976965,"method":"SEAD","details":"MAD!:w=0.35,s=0.87 RRCF-fast:w=0.18,s=0.84 RRCF-mid!:w=0.14,s=0.92 RRCF-slow:w=0.11,s=0.72 COPOD!:w=0.23,s=0.21"} +{"timestamp":"2026-03-15T19:33:18.264270695Z","score":0.640777549768959,"is_anomaly":false,"confidence":0.7785070020450553,"method":"SEAD","details":"MAD!:w=0.35,s=0.86 RRCF-fast:w=0.18,s=0.80 RRCF-mid!:w=0.14,s=0.91 RRCF-slow:w=0.11,s=0.54 COPOD!:w=0.23,s=0.07"} +{"timestamp":"2026-03-15T19:33:48.26141538Z","score":0.6618030975591844,"is_anomaly":false,"confidence":0.8075113007919831,"method":"SEAD","details":"MAD!:w=0.34,s=0.87 RRCF-fast:w=0.18,s=0.83 RRCF-mid!:w=0.14,s=0.91 RRCF-slow:w=0.11,s=0.69 COPOD!:w=0.23,s=0.06"} +{"timestamp":"2026-03-15T19:34:18.260915986Z","score":0.6930144372083888,"is_anomaly":false,"confidence":0.845594394649572,"method":"SEAD","details":"MAD!:w=0.34,s=0.87 RRCF-fast:w=0.18,s=0.85 RRCF-mid:w=0.14,s=0.89 RRCF-slow:w=0.11,s=0.68 COPOD!:w=0.24,s=0.21"} +{"timestamp":"2026-03-15T19:34:48.260165598Z","score":0.6202085789560183,"is_anomaly":false,"confidence":0.7567589789202118,"method":"SEAD","details":"MAD!:w=0.34,s=0.87 RRCF-fast:w=0.17,s=0.80 RRCF-mid:w=0.14,s=0.88 RRCF-slow:w=0.11,s=0.50 COPOD!:w=0.24,s=0.05"} +{"timestamp":"2026-03-15T19:35:18.261792189Z","score":0.5660952526965406,"is_anomaly":false,"confidence":0.6907316021383072,"method":"SEAD","details":"MAD!:w=0.34,s=0.73 RRCF-fast:w=0.17,s=0.63 RRCF-mid:w=0.14,s=0.86 RRCF-slow:w=0.11,s=0.55 COPOD!:w=0.24,s=0.14"} +{"timestamp":"2026-03-15T19:35:48.259750893Z","score":0.51665935876153,"is_anomaly":false,"confidence":0.6304114809957723,"method":"SEAD","details":"MAD!:w=0.33,s=0.70 RRCF-fast:w=0.17,s=0.66 RRCF-mid:w=0.14,s=0.81 RRCF-slow:w=0.11,s=0.39 COPOD!:w=0.25,s=0.06"} +{"timestamp":"2026-03-15T19:36:18.308674774Z","score":0.6518569564933848,"is_anomaly":false,"confidence":0.7953753326474912,"method":"SEAD","details":"MAD!:w=0.33,s=0.77 RRCF-fast:w=0.17,s=0.86 RRCF-mid:w=0.14,s=0.87 RRCF-slow:w=0.11,s=0.54 COPOD!:w=0.25,s=0.27"} +{"timestamp":"2026-03-15T19:36:48.261019847Z","score":0.554074238072152,"is_anomaly":false,"confidence":0.676063938611224,"method":"SEAD","details":"MAD!:w=0.33,s=0.76 RRCF-fast:w=0.17,s=0.61 RRCF-mid:w=0.14,s=0.87 RRCF-slow:w=0.11,s=0.60 COPOD!:w=0.25,s=0.05"} +{"timestamp":"2026-03-15T19:37:18.366623621Z","score":0.48683755885729796,"is_anomaly":false,"confidence":0.5961073630276335,"method":"SEAD","details":"MAD!:w=0.33,s=0.77 RRCF-fast:w=0.17,s=0.40 RRCF-mid:w=0.14,s=0.77 RRCF-slow:w=0.11,s=0.41 COPOD!:w=0.25,s=0.05"} +{"timestamp":"2026-03-15T19:37:48.255599107Z","score":0.5251761686066586,"is_anomaly":false,"confidence":0.6430510039691406,"method":"SEAD","details":"MAD!:w=0.33,s=0.78 RRCF-fast:w=0.17,s=0.56 RRCF-mid:w=0.14,s=0.74 RRCF-slow:w=0.11,s=0.59 COPOD!:w=0.26,s=0.04"} +{"timestamp":"2026-03-15T19:38:18.25914591Z","score":0.47293423906547905,"is_anomaly":false,"confidence":0.5790834684088938,"method":"SEAD","details":"MAD!:w=0.32,s=0.76 RRCF-fast:w=0.17,s=0.44 RRCF-mid:w=0.14,s=0.74 RRCF-slow:w=0.11,s=0.41 COPOD!:w=0.26,s=0.03"} +{"timestamp":"2026-03-15T19:38:48.263973011Z","score":0.46225847348068094,"is_anomaly":false,"confidence":0.5660115466656486,"method":"SEAD","details":"MAD!:w=0.32,s=0.76 RRCF-fast:w=0.17,s=0.43 RRCF-mid:w=0.13,s=0.73 RRCF-slow:w=0.11,s=0.36 COPOD!:w=0.26,s=0.02"} +{"timestamp":"2026-03-15T19:39:20.04997168Z","score":0.488114535325158,"is_anomaly":false,"confidence":0.5976709545399463,"method":"SEAD","details":"MAD!:w=0.32,s=0.74 RRCF-fast:w=0.17,s=0.60 RRCF-mid:w=0.13,s=0.68 RRCF-slow:w=0.11,s=0.42 COPOD!:w=0.27,s=0.04"} +{"timestamp":"2026-03-15T19:39:48.257854234Z","score":0.43072205869390173,"is_anomaly":false,"confidence":0.5273968409678842,"method":"SEAD","details":"MAD!:w=0.31,s=0.75 RRCF-fast:w=0.17,s=0.34 RRCF-mid:w=0.13,s=0.69 RRCF-slow:w=0.11,s=0.36 COPOD!:w=0.27,s=0.02"} +{"timestamp":"2026-03-15T19:40:19.55272267Z","score":0.661344038282668,"is_anomaly":false,"confidence":0.8097815042045368,"method":"SEAD","details":"MAD!:w=0.31,s=0.79 RRCF-fast:w=0.17,s=0.41 RRCF-mid:w=0.13,s=0.72 RRCF-slow:w=0.11,s=0.26 COPOD!:w=0.27,s=0.81"} +{"timestamp":"2026-03-15T19:40:52.782297893Z","score":0.2815562860396205,"is_anomaly":false,"confidence":0.3476147276698069,"method":"SEAD","details":"MAD!:w=0.31,s=0.04 RRCF-fast:w=0.17,s=0.42 RRCF-mid:w=0.13,s=0.66 RRCF-slow:w=0.11,s=0.36 COPOD!:w=0.27,s=0.25"} +{"timestamp":"2026-03-15T19:41:18.354652728Z","score":0.418934277056663,"is_anomaly":false,"confidence":0.5172241993918993,"method":"SEAD","details":"MAD!:w=0.31,s=0.35 RRCF-fast:w=0.17,s=0.15 RRCF-mid:w=0.13,s=0.30 RRCF-slow:w=0.11,s=0.17 COPOD!:w=0.27,s=0.83"} +{"timestamp":"2026-03-15T19:41:48.263134239Z","score":0.37820103090283097,"is_anomaly":false,"confidence":0.466934161587952,"method":"SEAD","details":"MAD!:w=0.31,s=0.23 RRCF-fast:w=0.17,s=0.37 RRCF-mid:w=0.13,s=0.41 RRCF-slow:w=0.11,s=0.13 COPOD!:w=0.27,s=0.64"} +{"timestamp":"2026-03-15T19:42:22.362942745Z","score":0.5899171059338583,"is_anomaly":false,"confidence":0.7283228409189281,"method":"SEAD","details":"MAD!:w=0.31,s=0.05 RRCF-fast!:w=0.17,s=0.97 RRCF-mid:w=0.13,s=0.87 RRCF-slow!:w=0.11,s=0.82 COPOD!:w=0.27,s=0.75"} +{"timestamp":"2026-03-15T19:42:48.304550878Z","score":0.5202879868785907,"is_anomaly":false,"confidence":0.6423574107069405,"method":"SEAD","details":"MAD!:w=0.32,s=0.53 RRCF-fast:w=0.17,s=0.58 RRCF-mid:w=0.13,s=0.50 RRCF-slow:w=0.11,s=0.14 COPOD!:w=0.26,s=0.65"} +{"timestamp":"2026-03-15T19:43:19.832841299Z","score":0.2825287675862588,"is_anomaly":false,"confidence":0.3488153718207636,"method":"SEAD","details":"MAD!:w=0.32,s=0.12 RRCF-fast:w=0.17,s=0.27 RRCF-mid:w=0.13,s=0.31 RRCF-slow:w=0.11,s=0.13 COPOD!:w=0.26,s=0.55"} +{"timestamp":"2026-03-15T19:43:48.29720686Z","score":0.6835659241022467,"is_anomaly":false,"confidence":0.8448739654073883,"method":"SEAD","details":"MAD!:w=0.32,s=0.88 RRCF-fast:w=0.17,s=0.87 RRCF-mid:w=0.13,s=0.65 RRCF-slow:w=0.11,s=0.50 COPOD!:w=0.26,s=0.41"} +{"timestamp":"2026-03-15T19:44:19.235342764Z","score":0.46193636464079846,"is_anomaly":false,"confidence":0.5709442123998673,"method":"SEAD","details":"MAD!:w=0.32,s=0.03 RRCF-fast:w=0.17,s=0.78 RRCF-mid:w=0.13,s=0.60 RRCF-slow:w=0.11,s=0.46 COPOD!:w=0.26,s=0.71"} +{"timestamp":"2026-03-15T19:44:48.302868825Z","score":0.4118637606824196,"is_anomaly":false,"confidence":0.5090554640393488,"method":"SEAD","details":"MAD!:w=0.32,s=0.23 RRCF-fast:w=0.17,s=0.62 RRCF-mid:w=0.13,s=0.17 RRCF-slow:w=0.11,s=0.05 COPOD!:w=0.26,s=0.77"} +{"timestamp":"2026-03-15T19:45:18.309229011Z","score":0.1639827769118013,"is_anomaly":false,"confidence":0.20267946967945316,"method":"SEAD","details":"MAD!:w=0.32,s=0.27 RRCF-fast:w=0.17,s=0.18 RRCF-mid:w=0.13,s=0.22 RRCF-slow:w=0.11,s=0.13 COPOD!:w=0.26,s=0.01"} +{"timestamp":"2026-03-15T19:45:48.470702326Z","score":0.8065211720740686,"is_anomaly":false,"confidence":0.9968442205924075,"method":"SEAD","details":"MAD!:w=0.32,s=0.88 RRCF-fast:w=0.17,s=0.87 RRCF-mid:w=0.13,s=0.61 RRCF-slow:w=0.11,s=0.48 COPOD!:w=0.26,s=0.91"} +{"timestamp":"2026-03-15T19:46:18.303914441Z","score":0.5446658292166378,"is_anomaly":false,"confidence":0.6731961947291744,"method":"SEAD","details":"MAD!:w=0.32,s=0.58 RRCF-fast:w=0.17,s=0.34 RRCF-mid:w=0.13,s=0.35 RRCF-slow:w=0.11,s=0.21 COPOD!:w=0.26,s=0.89"} +{"timestamp":"2026-03-15T19:46:48.357678219Z","score":0.3643062697132764,"is_anomaly":false,"confidence":0.45027534559986376,"method":"SEAD","details":"MAD!:w=0.32,s=0.23 RRCF-fast:w=0.17,s=0.32 RRCF-mid:w=0.13,s=0.05 RRCF-slow:w=0.11,s=0.04 COPOD!:w=0.26,s=0.87"} +{"timestamp":"2026-03-15T19:47:18.265363049Z","score":0.297215009614385,"is_anomaly":false,"confidence":0.3679278972102779,"method":"SEAD","details":"MAD!:w=0.32,s=0.26 RRCF-fast:w=0.17,s=0.04 RRCF-mid:w=0.13,s=0.14 RRCF-slow:w=0.11,s=0.12 COPOD!:w=0.26,s=0.68"} +{"timestamp":"2026-03-15T19:47:49.554135685Z","score":0.5590569575253509,"is_anomaly":false,"confidence":0.6920668342757971,"method":"SEAD","details":"MAD!:w=0.33,s=0.04 RRCF-fast:w=0.17,s=0.86 RRCF-mid:w=0.13,s=0.69 RRCF-slow:w=0.11,s=0.69 COPOD!:w=0.25,s=0.89"} +{"timestamp":"2026-03-15T19:48:18.353039522Z","score":0.4775581575710397,"is_anomaly":false,"confidence":0.5911779789947159,"method":"SEAD","details":"MAD!:w=0.33,s=0.59 RRCF-fast:w=0.17,s=0.39 RRCF-mid:w=0.13,s=0.25 RRCF-slow:w=0.11,s=0.09 COPOD!:w=0.25,s=0.69"} +{"timestamp":"2026-03-15T19:48:48.307844801Z","score":0.21803666613678435,"is_anomaly":false,"confidence":0.2699115774486909,"method":"SEAD","details":"MAD!:w=0.33,s=0.26 RRCF-fast:w=0.17,s=0.16 RRCF-mid:w=0.13,s=0.08 RRCF-slow:w=0.11,s=0.09 COPOD!:w=0.25,s=0.34"} +{"timestamp":"2026-03-15T19:49:18.30756831Z","score":0.6956087029584674,"is_anomaly":false,"confidence":0.8611067378216646,"method":"SEAD","details":"MAD!:w=0.33,s=0.88 RRCF-fast:w=0.17,s=0.83 RRCF-mid:w=0.14,s=0.64 RRCF-slow:w=0.11,s=0.28 COPOD!:w=0.25,s=0.59"} +{"timestamp":"2026-03-15T19:49:54.14823069Z","score":0.4601346548606908,"is_anomaly":false,"confidence":0.5696091062699719,"method":"SEAD","details":"MAD!:w=0.33,s=0.11 RRCF-fast:w=0.17,s=0.74 RRCF-mid:w=0.14,s=0.55 RRCF-slow:w=0.12,s=0.23 COPOD!:w=0.25,s=0.79"} +{"timestamp":"2026-03-15T19:50:18.306782766Z","score":0.3039482936612353,"is_anomaly":false,"confidence":0.37626315270054184,"method":"SEAD","details":"MAD!:w=0.33,s=0.41 RRCF-fast:w=0.17,s=0.28 RRCF-mid:w=0.14,s=0.10 RRCF-slow:w=0.12,s=0.06 COPOD!:w=0.25,s=0.40"} +{"timestamp":"2026-03-15T19:50:48.260718822Z","score":0.28808411505535386,"is_anomaly":false,"confidence":0.3571934935254211,"method":"SEAD","details":"MAD!:w=0.33,s=0.27 RRCF-fast:w=0.17,s=0.47 RRCF-mid:w=0.14,s=0.07 RRCF-slow:w=0.12,s=0.04 COPOD!:w=0.25,s=0.41"} +{"timestamp":"2026-03-15T19:51:21.019792407Z","score":0.7796066217684816,"is_anomaly":false,"confidence":0.9666288359964899,"method":"SEAD","details":"MAD!:w=0.33,s=0.87 RRCF-fast!:w=0.17,s=0.87 RRCF-mid:w=0.14,s=0.60 RRCF-slow:w=0.12,s=0.46 COPOD!:w=0.25,s=0.84"} +{"timestamp":"2026-03-15T19:51:48.352337986Z","score":0.6475092957421896,"is_anomaly":false,"confidence":0.8028422788667031,"method":"SEAD","details":"MAD!:w=0.33,s=0.54 RRCF-fast:w=0.17,s=0.81 RRCF-mid:w=0.14,s=0.50 RRCF-slow:w=0.12,s=0.23 COPOD!:w=0.25,s=0.95"} +{"timestamp":"2026-03-15T19:52:18.353839045Z","score":0.34865525741033676,"is_anomaly":false,"confidence":0.43229523226740196,"method":"SEAD","details":"MAD!:w=0.33,s=0.31 RRCF-fast:w=0.17,s=0.42 RRCF-mid:w=0.14,s=0.05 RRCF-slow:w=0.12,s=0.01 COPOD!:w=0.24,s=0.68"} +{"timestamp":"2026-03-15T19:52:48.33482725Z","score":0.32534681347966254,"is_anomaly":false,"confidence":0.40339525451389346,"method":"SEAD","details":"MAD!:w=0.33,s=0.21 RRCF-fast:w=0.17,s=0.32 RRCF-mid:w=0.14,s=0.07 RRCF-slow:w=0.12,s=0.04 COPOD!:w=0.24,s=0.78"} +{"timestamp":"2026-03-15T19:53:21.916325583Z","score":0.589714264427335,"is_anomaly":false,"confidence":0.7311826209234062,"method":"SEAD","details":"MAD!:w=0.33,s=0.03 RRCF-fast!:w=0.17,s=0.97 RRCF-mid:w=0.14,s=0.78 RRCF-slow!:w=0.12,s=0.84 COPOD!:w=0.24,s=0.87"} +{"timestamp":"2026-03-15T19:53:48.353454234Z","score":0.42834837991269437,"is_anomaly":false,"confidence":0.5354436224831106,"method":"SEAD","details":"MAD!:w=0.34,s=0.56 RRCF-fast:w=0.17,s=0.26 RRCF-mid:w=0.14,s=0.19 RRCF-slow:w=0.12,s=0.13 COPOD!:w=0.24,s=0.65"} +{"timestamp":"2026-03-15T19:54:19.855789539Z","score":0.23591891502673043,"is_anomaly":false,"confidence":0.2949031311848183,"method":"SEAD","details":"MAD!:w=0.34,s=0.24 RRCF-fast:w=0.17,s=0.15 RRCF-mid:w=0.14,s=0.10 RRCF-slow:w=0.12,s=0.01 COPOD!:w=0.24,s=0.48"} +{"timestamp":"2026-03-15T19:54:50.53691783Z","score":0.7557841134605048,"is_anomaly":false,"confidence":0.9447445175559214,"method":"SEAD","details":"MAD!:w=0.34,s=0.87 RRCF-fast:w=0.17,s=0.81 RRCF-mid:w=0.14,s=0.56 RRCF-slow:w=0.12,s=0.41 COPOD!:w=0.24,s=0.85"} +{"timestamp":"2026-03-15T19:55:21.048684315Z","score":0.3319011332583396,"is_anomaly":false,"confidence":0.41488272964710776,"method":"SEAD","details":"MAD!:w=0.34,s=0.11 RRCF-fast:w=0.17,s=0.43 RRCF-mid:w=0.14,s=0.38 RRCF-slow:w=0.12,s=0.27 COPOD!:w=0.24,s=0.59"} +{"timestamp":"2026-03-15T19:55:50.265066871Z","score":0.33596905022956136,"is_anomaly":false,"confidence":0.41996770323677196,"method":"SEAD","details":"MAD!:w=0.34,s=0.32 RRCF-fast:w=0.17,s=0.01 RRCF-mid:w=0.14,s=0.00 RRCF-slow:w=0.12,s=0.01 COPOD!:w=0.23,s=0.95"} +{"timestamp":"2026-03-15T19:56:18.262040909Z","score":0.2877063141587448,"is_anomaly":false,"confidence":0.3596383651452601,"method":"SEAD","details":"MAD!:w=0.34,s=0.43 RRCF-fast:w=0.17,s=0.45 RRCF-mid:w=0.14,s=0.07 RRCF-slow:w=0.12,s=0.09 COPOD!:w=0.23,s=0.18"} +{"timestamp":"2026-03-15T19:56:50.631314187Z","score":0.7503254085997937,"is_anomaly":false,"confidence":0.9379210326502915,"method":"SEAD","details":"MAD!:w=0.34,s=0.87 RRCF-fast:w=0.17,s=0.66 RRCF-mid:w=0.14,s=0.61 RRCF-slow:w=0.12,s=0.36 COPOD!:w=0.23,s=0.94"} +{"timestamp":"2026-03-15T19:57:18.30760725Z","score":0.5492820282605061,"is_anomaly":false,"confidence":0.6877570556122232,"method":"SEAD","details":"MAD!:w=0.34,s=0.57 RRCF-fast:w=0.17,s=0.55 RRCF-mid:w=0.14,s=0.22 RRCF-slow:w=0.12,s=0.11 COPOD!:w=0.23,s=0.96"} +{"timestamp":"2026-03-15T19:57:48.270538881Z","score":0.2690951134761224,"is_anomaly":false,"confidence":0.33693449521745783,"method":"SEAD","details":"MAD!:w=0.34,s=0.23 RRCF-fast:w=0.17,s=0.17 RRCF-mid:w=0.14,s=0.00 RRCF-slow:w=0.12,s=0.02 COPOD!:w=0.23,s=0.70"} +{"timestamp":"2026-03-15T19:58:18.310833234Z","score":0.25753279751693775,"is_anomaly":false,"confidence":0.32245729776512166,"method":"SEAD","details":"MAD!:w=0.34,s=0.18 RRCF-fast:w=0.17,s=0.43 RRCF-mid:w=0.14,s=0.10 RRCF-slow:w=0.12,s=0.11 COPOD!:w=0.23,s=0.42"} +{"timestamp":"2026-03-15T19:58:49.79142942Z","score":0.541119010663627,"is_anomaly":false,"confidence":0.6775361260014009,"method":"SEAD","details":"MAD!:w=0.34,s=0.06 RRCF-fast!:w=0.17,s=0.89 RRCF-mid!:w=0.14,s=0.93 RRCF-slow!:w=0.12,s=0.93 COPOD!:w=0.23,s=0.54"} +{"timestamp":"2026-03-15T19:59:18.306232357Z","score":0.42728887674592864,"is_anomaly":false,"confidence":0.5350092022804374,"method":"SEAD","details":"MAD!:w=0.34,s=0.55 RRCF-fast:w=0.17,s=0.56 RRCF-mid:w=0.14,s=0.12 RRCF-slow:w=0.12,s=0.23 COPOD!:w=0.23,s=0.45"} +{"timestamp":"2026-03-15T19:59:48.313916432Z","score":0.21364503105448823,"is_anomaly":false,"confidence":0.267505343237864,"method":"SEAD","details":"MAD!:w=0.34,s=0.18 RRCF-fast:w=0.17,s=0.30 RRCF-mid:w=0.14,s=0.02 RRCF-slow:w=0.12,s=0.05 COPOD!:w=0.23,s=0.41"} +{"timestamp":"2026-03-15T20:00:18.303781526Z","score":0.7125649360656223,"is_anomaly":false,"confidence":0.8922038900726239,"method":"SEAD","details":"MAD!:w=0.34,s=0.86 RRCF-fast:w=0.17,s=0.84 RRCF-mid:w=0.14,s=0.56 RRCF-slow:w=0.12,s=0.62 COPOD!:w=0.22,s=0.54"} +{"timestamp":"2026-03-15T20:00:50.254260623Z","score":0.42174004186667047,"is_anomaly":false,"confidence":0.5284143689939208,"method":"SEAD","details":"MAD!:w=0.34,s=0.08 RRCF-fast:w=0.17,s=0.82 RRCF-mid:w=0.14,s=0.49 RRCF-slow:w=0.12,s=0.33 COPOD!:w=0.23,s=0.65"} +{"timestamp":"2026-03-15T20:01:18.356226296Z","score":0.30957006602468456,"is_anomaly":false,"confidence":0.3878722787948007,"method":"SEAD","details":"MAD!:w=0.34,s=0.33 RRCF-fast:w=0.17,s=0.03 RRCF-mid:w=0.14,s=0.00 RRCF-slow:w=0.12,s=0.01 COPOD!:w=0.22,s=0.84"} +{"timestamp":"2026-03-15T20:01:48.25522978Z","score":0.29196136125894595,"is_anomaly":false,"confidence":0.3658096532579786,"method":"SEAD","details":"MAD!:w=0.34,s=0.27 RRCF-fast:w=0.17,s=0.47 RRCF-mid:w=0.14,s=0.11 RRCF-slow:w=0.12,s=0.05 COPOD!:w=0.22,s=0.44"} +{"timestamp":"2026-03-15T20:02:20.53526244Z","score":0.6751667376987426,"is_anomaly":false,"confidence":0.8459424532886879,"method":"SEAD","details":"MAD!:w=0.34,s=0.86 RRCF-fast:w=0.17,s=0.76 RRCF-mid:w=0.14,s=0.57 RRCF-slow:w=0.12,s=0.33 COPOD!:w=0.22,s=0.59"} +{"timestamp":"2026-03-15T20:02:48.483766262Z","score":0.511708553395362,"is_anomaly":false,"confidence":0.6411393880325101,"method":"SEAD","details":"MAD!:w=0.34,s=0.57 RRCF-fast:w=0.17,s=0.52 RRCF-mid:w=0.14,s=0.28 RRCF-slow:w=0.12,s=0.16 COPOD!:w=0.22,s=0.77"} +{"timestamp":"2026-03-15T20:03:20.270393101Z","score":0.13223473350404522,"is_anomaly":false,"confidence":0.16568199916314713,"method":"SEAD","details":"MAD!:w=0.34,s=0.13 RRCF-fast:w=0.17,s=0.04 RRCF-mid:w=0.14,s=0.01 RRCF-slow:w=0.12,s=0.01 COPOD!:w=0.22,s=0.36"} +{"timestamp":"2026-03-15T20:03:48.308958869Z","score":0.6540374815193621,"is_anomaly":false,"confidence":0.823049853258965,"method":"SEAD","details":"MAD!:w=0.34,s=0.77 RRCF-fast:w=0.17,s=0.78 RRCF-mid:w=0.15,s=0.66 RRCF-slow:w=0.13,s=0.34 COPOD!:w=0.22,s=0.57"} +{"timestamp":"2026-03-15T20:04:20.68798069Z","score":0.6151480966726383,"is_anomaly":false,"confidence":0.7741109110792728,"method":"SEAD","details":"MAD!:w=0.34,s=0.13 RRCF-fast:w=0.17,s=0.76 RRCF-mid!:w=0.15,s=0.87 RRCF-slow!:w=0.13,s=0.79 COPOD!:w=0.22,s=0.99"} +{"timestamp":"2026-03-15T20:04:48.358494463Z","score":0.41052285346290396,"is_anomaly":false,"confidence":0.5166076621743154,"method":"SEAD","details":"MAD!:w=0.35,s=0.55 RRCF-fast:w=0.17,s=0.26 RRCF-mid:w=0.14,s=0.21 RRCF-slow:w=0.13,s=0.13 COPOD!:w=0.22,s=0.61"} +{"timestamp":"2026-03-15T20:05:18.262034209Z","score":0.19799148246711543,"is_anomaly":false,"confidence":0.24915523222388913,"method":"SEAD","details":"MAD!:w=0.34,s=0.20 RRCF-fast:w=0.17,s=0.32 RRCF-mid:w=0.14,s=0.23 RRCF-slow:w=0.13,s=0.09 COPOD!:w=0.22,s=0.14"} +{"timestamp":"2026-03-15T20:05:52.14543347Z","score":0.6447762946303742,"is_anomaly":false,"confidence":0.8113954470125858,"method":"SEAD","details":"MAD!:w=0.34,s=0.86 RRCF-fast:w=0.17,s=0.75 RRCF-mid:w=0.14,s=0.66 RRCF-slow:w=0.13,s=0.41 COPOD!:w=0.22,s=0.35"} +{"timestamp":"2026-03-15T20:06:18.276081363Z","score":0.31076491972003734,"is_anomaly":false,"confidence":0.39107089241954823,"method":"SEAD","details":"MAD!:w=0.34,s=0.00 RRCF-fast:w=0.17,s=0.73 RRCF-mid:w=0.14,s=0.45 RRCF-slow:w=0.13,s=0.19 COPOD!:w=0.22,s=0.44"} +{"timestamp":"2026-03-15T20:06:48.348429713Z","score":0.29796244048951415,"is_anomaly":false,"confidence":0.37496007469155673,"method":"SEAD","details":"MAD!:w=0.34,s=0.33 RRCF-fast:w=0.17,s=0.01 RRCF-mid:w=0.14,s=0.00 RRCF-slow:w=0.13,s=0.01 COPOD!:w=0.22,s=0.83"} +{"timestamp":"2026-03-15T20:07:18.263146178Z","score":0.24275106077936,"is_anomaly":false,"confidence":0.3058556978249644,"method":"SEAD","details":"MAD!:w=0.34,s=0.34 RRCF-fast:w=0.17,s=0.24 RRCF-mid:w=0.15,s=0.22 RRCF-slow:w=0.13,s=0.04 COPOD!:w=0.22,s=0.22"} +{"timestamp":"2026-03-15T20:07:48.344959037Z","score":0.7820199825848617,"is_anomaly":false,"confidence":0.9853109054133378,"method":"SEAD","details":"MAD!:w=0.34,s=0.85 RRCF-fast!:w=0.17,s=0.91 RRCF-mid!:w=0.15,s=0.88 RRCF-slow!:w=0.13,s=0.63 COPOD!:w=0.22,s=0.60"} +{"timestamp":"2026-03-15T20:08:18.597118064Z","score":0.5442739564789333,"is_anomaly":false,"confidence":0.6857613319272983,"method":"SEAD","details":"MAD!:w=0.34,s=0.53 RRCF-fast:w=0.17,s=0.68 RRCF-mid:w=0.15,s=0.66 RRCF-slow:w=0.13,s=0.21 COPOD!:w=0.22,s=0.60"} +{"timestamp":"2026-03-15T20:08:48.354971133Z","score":0.40882864474059094,"is_anomaly":false,"confidence":0.5151061751347852,"method":"SEAD","details":"MAD!:w=0.34,s=0.26 RRCF-fast:w=0.17,s=0.68 RRCF-mid!:w=0.14,s=0.70 RRCF-slow:w=0.13,s=0.37 COPOD!:w=0.22,s=0.26"} +{"timestamp":"2026-03-15T20:09:18.261564307Z","score":0.24687421623263836,"is_anomaly":false,"confidence":0.3110506929955498,"method":"SEAD","details":"MAD!:w=0.34,s=0.35 RRCF-fast:w=0.17,s=0.40 RRCF-mid:w=0.14,s=0.20 RRCF-slow:w=0.13,s=0.13 COPOD!:w=0.22,s=0.06"} +{"timestamp":"2026-03-15T20:09:50.104976064Z","score":0.5426952086282546,"is_anomaly":false,"confidence":0.6837721788253149,"method":"SEAD","details":"MAD!:w=0.34,s=0.09 RRCF-fast!:w=0.17,s=0.90 RRCF-mid!:w=0.14,s=0.69 RRCF-slow!:w=0.13,s=0.77 COPOD!:w=0.22,s=0.75"} +{"timestamp":"2026-03-15T20:10:18.303469425Z","score":0.4189904870879514,"is_anomaly":false,"confidence":0.52790965114169,"method":"SEAD","details":"MAD!:w=0.35,s=0.52 RRCF-fast:w=0.16,s=0.49 RRCF-mid:w=0.14,s=0.29 RRCF-slow:w=0.13,s=0.11 COPOD!:w=0.22,s=0.48"} +{"timestamp":"2026-03-15T20:10:48.304202108Z","score":0.2472784533814731,"is_anomaly":false,"confidence":0.3126577859703236,"method":"SEAD","details":"MAD!:w=0.35,s=0.28 RRCF-fast:w=0.16,s=0.21 RRCF-mid:w=0.14,s=0.22 RRCF-slow:w=0.13,s=0.19 COPOD!:w=0.22,s=0.26"} +{"timestamp":"2026-03-15T20:11:20.703695752Z","score":0.7712922391677498,"is_anomaly":false,"confidence":0.9752185058447544,"method":"SEAD","details":"MAD!:w=0.35,s=0.85 RRCF-fast!:w=0.16,s=0.86 RRCF-mid!:w=0.14,s=0.86 RRCF-slow!:w=0.13,s=0.60 COPOD!:w=0.22,s=0.63"} +{"timestamp":"2026-03-15T20:11:48.288300982Z","score":0.5217682820099305,"is_anomaly":false,"confidence":0.6597215148021744,"method":"SEAD","details":"MAD!:w=0.35,s=0.48 RRCF-fast:w=0.16,s=0.65 RRCF-mid:w=0.14,s=0.63 RRCF-slow:w=0.13,s=0.23 COPOD!:w=0.22,s=0.59"} +{"timestamp":"2026-03-15T20:12:19.373818284Z","score":0.8125982851191891,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.35,s=0.98 RRCF-fast!:w=0.16,s=0.96 RRCF-mid!:w=0.14,s=0.97 RRCF-slow!:w=0.13,s=0.97 COPOD!:w=0.22,s=0.23"} +{"timestamp":"2026-03-15T20:12:48.307332768Z","score":0.7647745436921113,"is_anomaly":false,"confidence":0.9635824082034569,"method":"SEAD","details":"MAD!:w=0.34,s=0.49 RRCF-fast!:w=0.16,s=0.98 RRCF-mid!:w=0.14,s=0.97 RRCF-slow!:w=0.13,s=0.93 COPOD!:w=0.22,s=0.80"} +{"timestamp":"2026-03-15T20:13:18.261485366Z","score":0.8039283734011896,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.35,s=0.98 RRCF-fast!:w=0.16,s=0.95 RRCF-mid!:w=0.14,s=0.97 RRCF-slow!:w=0.13,s=0.97 COPOD!:w=0.22,s=0.22"} +{"timestamp":"2026-03-15T20:13:48.306986273Z","score":0.8525727623941475,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.34,s=0.84 RRCF-fast!:w=0.16,s=0.94 RRCF-mid!:w=0.14,s=0.94 RRCF-slow!:w=0.13,s=0.90 COPOD!:w=0.22,s=0.73"} +{"timestamp":"2026-03-15T20:14:18.306710448Z","score":0.8004475831203726,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.34,s=0.98 RRCF-fast!:w=0.16,s=0.91 RRCF-mid!:w=0.14,s=0.94 RRCF-slow!:w=0.13,s=0.93 COPOD!:w=0.22,s=0.27"} +{"timestamp":"2026-03-15T20:14:48.25778015Z","score":0.6732215846120804,"is_anomaly":false,"confidence":0.8435052959432866,"method":"SEAD","details":"MAD!:w=0.34,s=0.74 RRCF-fast:w=0.16,s=0.82 RRCF-mid!:w=0.14,s=0.86 RRCF-slow:w=0.13,s=0.72 COPOD!:w=0.23,s=0.32"} +{"timestamp":"2026-03-15T20:15:18.310343041Z","score":0.3571725433997281,"is_anomaly":false,"confidence":0.44751525917993845,"method":"SEAD","details":"MAD!:w=0.34,s=0.18 RRCF-fast:w=0.16,s=0.53 RRCF-mid:w=0.14,s=0.63 RRCF-slow:w=0.13,s=0.67 COPOD!:w=0.23,s=0.16"} +{"timestamp":"2026-03-15T20:15:48.31128737Z","score":0.5480618211955529,"is_anomaly":false,"confidence":0.6866877997519214,"method":"SEAD","details":"MAD!:w=0.34,s=0.47 RRCF-fast:w=0.16,s=0.72 RRCF-mid:w=0.14,s=0.74 RRCF-slow:w=0.13,s=0.57 COPOD!:w=0.23,s=0.42"} +{"timestamp":"2026-03-15T20:16:18.26250652Z","score":0.7617495567237039,"is_anomaly":false,"confidence":0.9544254075708752,"method":"SEAD","details":"MAD!:w=0.34,s=0.97 RRCF-fast:w=0.16,s=0.85 RRCF-mid!:w=0.14,s=0.89 RRCF-slow!:w=0.13,s=0.87 COPOD!:w=0.23,s=0.24"} +{"timestamp":"2026-03-15T20:16:48.307880676Z","score":0.5920906442669268,"is_anomaly":false,"confidence":0.7418532107900324,"method":"SEAD","details":"MAD!:w=0.34,s=0.74 RRCF-fast:w=0.16,s=0.64 RRCF-mid:w=0.14,s=0.62 RRCF-slow:w=0.13,s=0.36 COPOD!:w=0.23,s=0.45"} +{"timestamp":"2026-03-15T20:17:18.263244477Z","score":0.58277579715179,"is_anomaly":false,"confidence":0.7333731596152526,"method":"SEAD","details":"MAD!:w=0.34,s=0.73 RRCF-fast:w=0.16,s=0.52 RRCF-mid:w=0.14,s=0.61 RRCF-slow:w=0.13,s=0.60 COPOD!:w=0.23,s=0.38"} +{"timestamp":"2026-03-15T20:17:48.263125888Z","score":0.48275875327280926,"is_anomaly":false,"confidence":0.6075103220653935,"method":"SEAD","details":"MAD!:w=0.34,s=0.48 RRCF-fast:w=0.16,s=0.59 RRCF-mid:w=0.14,s=0.75 RRCF-slow:w=0.13,s=0.72 COPOD!:w=0.23,s=0.12"} +{"timestamp":"2026-03-15T20:18:18.319354134Z","score":0.42944492391200506,"is_anomaly":false,"confidence":0.5404194585109866,"method":"SEAD","details":"MAD!:w=0.34,s=0.41 RRCF-fast:w=0.16,s=0.15 RRCF-mid:w=0.14,s=0.62 RRCF-slow:w=0.13,s=0.48 COPOD!:w=0.23,s=0.51"} +{"timestamp":"2026-03-15T20:18:48.26387908Z","score":0.4258276627005326,"is_anomaly":false,"confidence":0.5358674467480131,"method":"SEAD","details":"MAD!:w=0.34,s=0.46 RRCF-fast:w=0.16,s=0.22 RRCF-mid:w=0.14,s=0.53 RRCF-slow:w=0.13,s=0.48 COPOD!:w=0.23,s=0.43"} +{"timestamp":"2026-03-15T20:19:18.256772321Z","score":0.42060443520305674,"is_anomaly":false,"confidence":0.5292944646991112,"method":"SEAD","details":"MAD!:w=0.34,s=0.48 RRCF-fast:w=0.16,s=0.58 RRCF-mid:w=0.14,s=0.58 RRCF-slow:w=0.13,s=0.40 COPOD!:w=0.23,s=0.13"} +{"timestamp":"2026-03-15T20:19:48.302340864Z","score":0.44248827575497535,"is_anomaly":false,"confidence":0.5568333936809146,"method":"SEAD","details":"MAD!:w=0.34,s=0.24 RRCF-fast:w=0.16,s=0.28 RRCF-mid:w=0.14,s=0.33 RRCF-slow:w=0.13,s=0.37 COPOD!:w=0.24,s=0.94"} +{"timestamp":"2026-03-15T20:20:18.298323668Z","score":0.7703278873719241,"is_anomaly":false,"confidence":0.9693913156015067,"method":"SEAD","details":"MAD!:w=0.34,s=0.84 RRCF-fast:w=0.16,s=0.83 RRCF-mid:w=0.14,s=0.83 RRCF-slow:w=0.13,s=0.70 COPOD!:w=0.23,s=0.64"} +{"timestamp":"2026-03-15T20:20:49.973933488Z","score":0.5333390714163031,"is_anomaly":false,"confidence":0.6719838559783614,"method":"SEAD","details":"MAD!:w=0.34,s=0.10 RRCF-fast:w=0.16,s=0.87 RRCF-mid:w=0.14,s=0.73 RRCF-slow:w=0.13,s=0.69 COPOD!:w=0.23,s=0.73"} +{"timestamp":"2026-03-15T20:21:18.356790941Z","score":0.3012198212886011,"is_anomaly":false,"confidence":0.37952377362698436,"method":"SEAD","details":"MAD!:w=0.34,s=0.48 RRCF-fast:w=0.16,s=0.10 RRCF-mid:w=0.14,s=0.22 RRCF-slow:w=0.13,s=0.14 COPOD!:w=0.23,s=0.31"} +{"timestamp":"2026-03-15T20:21:48.311789217Z","score":0.24445744270903616,"is_anomaly":false,"confidence":0.3080056642728201,"method":"SEAD","details":"MAD!:w=0.34,s=0.39 RRCF-fast:w=0.16,s=0.13 RRCF-mid:w=0.14,s=0.22 RRCF-slow:w=0.13,s=0.47 COPOD!:w=0.23,s=0.00"} +{"timestamp":"2026-03-15T20:22:20.423378989Z","score":0.75113803613731,"is_anomaly":false,"confidence":0.9464010063151246,"method":"SEAD","details":"MAD!:w=0.34,s=0.83 RRCF-fast:w=0.16,s=0.71 RRCF-mid:w=0.14,s=0.77 RRCF-slow:w=0.13,s=0.67 COPOD!:w=0.23,s=0.70"} +{"timestamp":"2026-03-15T20:22:48.811189361Z","score":0.6540284290323359,"is_anomaly":false,"confidence":0.8240471572681121,"method":"SEAD","details":"MAD!:w=0.34,s=0.61 RRCF-fast:w=0.16,s=0.68 RRCF-mid:w=0.14,s=0.71 RRCF-slow:w=0.13,s=0.51 COPOD!:w=0.23,s=0.76"} +{"timestamp":"2026-03-15T20:23:18.307873711Z","score":0.23296829125565702,"is_anomaly":false,"confidence":0.2935298369627021,"method":"SEAD","details":"MAD!:w=0.34,s=0.13 RRCF-fast:w=0.16,s=0.08 RRCF-mid:w=0.14,s=0.13 RRCF-slow:w=0.13,s=0.07 COPOD!:w=0.23,s=0.64"} +{"timestamp":"2026-03-15T20:23:48.262366462Z","score":0.304971615049651,"is_anomaly":false,"confidence":0.38560476515970377,"method":"SEAD","details":"MAD!:w=0.34,s=0.46 RRCF-fast:w=0.16,s=0.18 RRCF-mid:w=0.14,s=0.50 RRCF-slow:w=0.13,s=0.22 COPOD!:w=0.23,s=0.09"} +{"timestamp":"2026-03-15T20:24:23.760792373Z","score":0.4514701640764608,"is_anomaly":false,"confidence":0.5708368844981655,"method":"SEAD","details":"MAD!:w=0.34,s=0.01 RRCF-fast:w=0.16,s=0.87 RRCF-mid:w=0.14,s=0.81 RRCF-slow!:w=0.13,s=0.82 COPOD!:w=0.23,s=0.39"} +{"timestamp":"2026-03-15T20:24:48.355327688Z","score":0.6306243106769489,"is_anomaly":false,"confidence":0.7973585973992869,"method":"SEAD","details":"MAD!:w=0.34,s=0.57 RRCF-fast:w=0.16,s=0.63 RRCF-mid:w=0.14,s=0.66 RRCF-slow:w=0.13,s=0.34 COPOD!:w=0.23,s=0.87"} +{"timestamp":"2026-03-15T20:25:18.28759892Z","score":0.18459927215754351,"is_anomaly":false,"confidence":0.23340650564273974,"method":"SEAD","details":"MAD!:w=0.34,s=0.24 RRCF-fast:w=0.16,s=0.17 RRCF-mid:w=0.14,s=0.21 RRCF-slow:w=0.13,s=0.15 COPOD!:w=0.23,s=0.12"} +{"timestamp":"2026-03-15T20:25:48.341654967Z","score":0.7726804272336361,"is_anomaly":false,"confidence":0.9769737247134234,"method":"SEAD","details":"MAD!:w=0.34,s=0.84 RRCF-fast!:w=0.16,s=0.93 RRCF-mid!:w=0.14,s=0.93 RRCF-slow!:w=0.13,s=0.80 COPOD!:w=0.23,s=0.46"} +{"timestamp":"2026-03-15T20:26:20.822343376Z","score":0.37221944873548085,"is_anomaly":false,"confidence":0.47063262951259294,"method":"SEAD","details":"MAD!:w=0.34,s=0.00 RRCF-fast:w=0.16,s=0.74 RRCF-mid:w=0.14,s=0.74 RRCF-slow:w=0.13,s=0.49 COPOD!:w=0.23,s=0.38"} +{"timestamp":"2026-03-15T20:26:49.249960694Z","score":0.31515690817965863,"is_anomaly":false,"confidence":0.3984830048766687,"method":"SEAD","details":"MAD!:w=0.35,s=0.50 RRCF-fast:w=0.16,s=0.32 RRCF-mid:w=0.14,s=0.26 RRCF-slow:w=0.13,s=0.18 COPOD!:w=0.23,s=0.14"} +{"timestamp":"2026-03-15T20:27:18.261766801Z","score":0.23921541716668623,"is_anomaly":false,"confidence":0.3058942514179649,"method":"SEAD","details":"MAD!:w=0.34,s=0.22 RRCF-fast:w=0.16,s=0.11 RRCF-mid:w=0.14,s=0.40 RRCF-slow:w=0.13,s=0.19 COPOD!:w=0.23,s=0.29"} +{"timestamp":"2026-03-15T20:27:49.18768157Z","score":0.778179534270927,"is_anomaly":false,"confidence":0.9950890662649813,"method":"SEAD","details":"MAD!:w=0.34,s=0.83 RRCF-fast:w=0.16,s=0.79 RRCF-mid:w=0.14,s=0.69 RRCF-slow:w=0.13,s=0.53 COPOD!:w=0.23,s=0.88"} +{"timestamp":"2026-03-15T20:28:19.560140953Z","score":0.5226815637037228,"is_anomaly":false,"confidence":0.6683736673531913,"method":"SEAD","details":"MAD!:w=0.34,s=0.19 RRCF-fast:w=0.16,s=0.77 RRCF-mid:w=0.14,s=0.77 RRCF-slow:w=0.13,s=0.43 COPOD!:w=0.23,s=0.75"} +{"timestamp":"2026-03-15T20:28:48.341328392Z","score":0.529711062067559,"is_anomaly":false,"confidence":0.6773625660007695,"method":"SEAD","details":"MAD!:w=0.35,s=0.37 RRCF-fast:w=0.16,s=0.36 RRCF-mid:w=0.14,s=0.64 RRCF-slow:w=0.13,s=0.28 COPOD!:w=0.23,s=0.95"} +{"timestamp":"2026-03-15T20:29:18.28725846Z","score":0.3607169565745405,"is_anomaly":false,"confidence":0.46126309379235964,"method":"SEAD","details":"MAD!:w=0.35,s=0.42 RRCF-fast:w=0.16,s=0.61 RRCF-mid:w=0.14,s=0.51 RRCF-slow:w=0.13,s=0.16 COPOD!:w=0.23,s=0.12"} +{"timestamp":"2026-03-15T20:29:48.355447399Z","score":0.5131422444796974,"is_anomaly":false,"confidence":0.6561753611251401,"method":"SEAD","details":"MAD!:w=0.35,s=0.01 RRCF-fast:w=0.16,s=0.87 RRCF-mid:w=0.14,s=0.80 RRCF-slow:w=0.13,s=0.56 COPOD!:w=0.23,s=0.84"} +{"timestamp":"2026-03-15T20:30:18.305844674Z","score":0.5964400257861282,"is_anomaly":false,"confidence":0.7626915412246578,"method":"SEAD","details":"MAD!:w=0.35,s=0.57 RRCF-fast:w=0.16,s=0.63 RRCF-mid:w=0.13,s=0.52 RRCF-slow:w=0.13,s=0.28 COPOD!:w=0.23,s=0.85"} +{"timestamp":"2026-03-15T20:30:48.265343564Z","score":0.3209924167060705,"is_anomaly":false,"confidence":0.4116459011773384,"method":"SEAD","details":"MAD!:w=0.35,s=0.24 RRCF-fast:w=0.16,s=0.44 RRCF-mid:w=0.13,s=0.31 RRCF-slow:w=0.13,s=0.07 COPOD!:w=0.23,s=0.50"} +{"timestamp":"2026-03-15T20:31:18.314307698Z","score":0.6415893383990314,"is_anomaly":false,"confidence":0.8227846131109144,"method":"SEAD","details":"MAD!:w=0.35,s=0.84 RRCF-fast:w=0.16,s=0.84 RRCF-mid:w=0.13,s=0.76 RRCF-slow:w=0.13,s=0.65 COPOD!:w=0.23,s=0.13"} +{"timestamp":"2026-03-15T20:31:49.702612896Z","score":0.5770472066721539,"is_anomaly":false,"confidence":0.7400147325908226,"method":"SEAD","details":"MAD!:w=0.35,s=0.07 RRCF-fast!:w=0.16,s=0.96 RRCF-mid:w=0.13,s=0.87 RRCF-slow!:w=0.13,s=0.87 COPOD!:w=0.23,s=0.75"} +{"timestamp":"2026-03-15T20:32:18.296549782Z","score":0.3463223492113262,"is_anomaly":false,"confidence":0.444129419012076,"method":"SEAD","details":"MAD!:w=0.36,s=0.51 RRCF-fast:w=0.15,s=0.22 RRCF-mid:w=0.13,s=0.33 RRCF-slow:w=0.13,s=0.06 COPOD!:w=0.23,s=0.35"} +{"timestamp":"2026-03-15T20:32:48.314456172Z","score":0.31369904478526367,"is_anomaly":false,"confidence":0.4022927622846175,"method":"SEAD","details":"MAD!:w=0.36,s=0.25 RRCF-fast:w=0.16,s=0.48 RRCF-mid:w=0.13,s=0.41 RRCF-slow:w=0.13,s=0.18 COPOD!:w=0.23,s=0.31"} +{"timestamp":"2026-03-15T20:33:22.284618666Z","score":0.8004667800467575,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.36,s=0.83 RRCF-fast:w=0.15,s=0.83 RRCF-mid:w=0.13,s=0.79 RRCF-slow:w=0.13,s=0.66 COPOD!:w=0.23,s=0.82"} +{"timestamp":"2026-03-15T20:33:50.82244188Z","score":0.5216909790811596,"is_anomaly":false,"confidence":0.669025005087887,"method":"SEAD","details":"MAD!:w=0.36,s=0.04 RRCF-fast:w=0.15,s=0.88 RRCF-mid:w=0.13,s=0.85 RRCF-slow:w=0.13,s=0.68 COPOD!:w=0.23,s=0.75"} +{"timestamp":"2026-03-15T20:34:18.310167304Z","score":0.3396298240743145,"is_anomaly":false,"confidence":0.4355468158171231,"method":"SEAD","details":"MAD!:w=0.36,s=0.44 RRCF-fast:w=0.15,s=0.14 RRCF-mid:w=0.13,s=0.13 RRCF-slow:w=0.13,s=0.00 COPOD!:w=0.23,s=0.62"} +{"timestamp":"2026-03-15T20:34:48.264117566Z","score":0.37810001929959497,"is_anomaly":false,"confidence":0.48488162049719646,"method":"SEAD","details":"MAD!:w=0.36,s=0.31 RRCF-fast:w=0.15,s=0.64 RRCF-mid:w=0.13,s=0.38 RRCF-slow:w=0.13,s=0.18 COPOD!:w=0.22,s=0.41"} +{"timestamp":"2026-03-15T20:35:19.119124093Z","score":0.5381605816418742,"is_anomaly":false,"confidence":0.6901458915490336,"method":"SEAD","details":"MAD!:w=0.36,s=0.07 RRCF-fast:w=0.15,s=0.84 RRCF-mid:w=0.13,s=0.78 RRCF-slow!:w=0.13,s=0.89 COPOD!:w=0.22,s=0.73"} +{"timestamp":"2026-03-15T20:35:48.352231214Z","score":0.7474967033716345,"is_anomaly":false,"confidence":0.9586019422018544,"method":"SEAD","details":"MAD!:w=0.36,s=0.54 RRCF-fast:w=0.15,s=0.76 RRCF-mid:w=0.13,s=0.83 RRCF-slow!:w=0.13,s=0.85 COPOD!:w=0.22,s=0.98"} +{"timestamp":"2026-03-15T20:36:18.310385917Z","score":0.36050493125706173,"is_anomaly":false,"confidence":0.4623173931304313,"method":"SEAD","details":"MAD!:w=0.37,s=0.21 RRCF-fast:w=0.15,s=0.50 RRCF-mid:w=0.13,s=0.37 RRCF-slow:w=0.13,s=0.16 COPOD!:w=0.22,s=0.63"} +{"timestamp":"2026-03-15T20:36:48.311689863Z","score":0.3590474597201949,"is_anomaly":false,"confidence":0.4604483079028409,"method":"SEAD","details":"MAD!:w=0.37,s=0.30 RRCF-fast:w=0.15,s=0.53 RRCF-mid:w=0.13,s=0.57 RRCF-slow:w=0.13,s=0.09 COPOD!:w=0.22,s=0.38"} +{"timestamp":"2026-03-15T20:37:18.352352552Z","score":0.5369866391720857,"is_anomaly":false,"confidence":0.6887917882918568,"method":"SEAD","details":"MAD!:w=0.37,s=0.11 RRCF-fast:w=0.15,s=0.77 RRCF-mid:w=0.13,s=0.71 RRCF-slow:w=0.13,s=0.68 COPOD!:w=0.22,s=0.91"} +{"timestamp":"2026-03-15T20:37:48.304670212Z","score":0.5114401054514459,"is_anomaly":false,"confidence":0.6560232958146004,"method":"SEAD","details":"MAD!:w=0.37,s=0.53 RRCF-fast:w=0.15,s=0.38 RRCF-mid:w=0.13,s=0.35 RRCF-slow:w=0.13,s=0.23 COPOD!:w=0.22,s=0.84"} +{"timestamp":"2026-03-15T20:38:18.314663817Z","score":0.20370363371928715,"is_anomaly":false,"confidence":0.2612902815745717,"method":"SEAD","details":"MAD!:w=0.37,s=0.14 RRCF-fast:w=0.15,s=0.32 RRCF-mid:w=0.13,s=0.47 RRCF-slow:w=0.13,s=0.12 COPOD!:w=0.22,s=0.12"} +{"timestamp":"2026-03-15T20:38:48.306834088Z","score":0.7206854221780349,"is_anomaly":false,"confidence":0.9244218841333233,"method":"SEAD","details":"MAD!:w=0.37,s=0.84 RRCF-fast:w=0.15,s=0.67 RRCF-mid:w=0.13,s=0.72 RRCF-slow:w=0.13,s=0.53 COPOD!:w=0.22,s=0.67"} +{"timestamp":"2026-03-15T20:39:20.687165661Z","score":0.5820414111137493,"is_anomaly":false,"confidence":0.7465834625588866,"method":"SEAD","details":"MAD!:w=0.37,s=0.19 RRCF-fast:w=0.15,s=0.77 RRCF-mid:w=0.13,s=0.66 RRCF-slow:w=0.13,s=0.72 COPOD!:w=0.22,s=0.99"} +{"timestamp":"2026-03-15T20:39:48.304970078Z","score":0.43039206114354156,"is_anomaly":false,"confidence":0.5520631163537684,"method":"SEAD","details":"MAD!:w=0.38,s=0.39 RRCF-fast:w=0.15,s=0.13 RRCF-mid:w=0.13,s=0.27 RRCF-slow:w=0.13,s=0.21 COPOD!:w=0.21,s=0.94"} +{"timestamp":"2026-03-15T20:40:18.263576962Z","score":0.24274247596141266,"is_anomaly":false,"confidence":0.31136533372532005,"method":"SEAD","details":"MAD!:w=0.38,s=0.25 RRCF-fast:w=0.15,s=0.36 RRCF-mid:w=0.13,s=0.42 RRCF-slow:w=0.13,s=0.25 COPOD!:w=0.21,s=0.04"} +{"timestamp":"2026-03-15T20:40:55.42508633Z","score":0.806055621266729,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.38,s=0.84 RRCF-fast:w=0.15,s=0.70 RRCF-mid:w=0.13,s=0.72 RRCF-slow:w=0.13,s=0.75 COPOD!:w=0.21,s=0.92"} +{"timestamp":"2026-03-15T20:41:19.802636513Z","score":0.6687845032253126,"is_anomaly":false,"confidence":0.8578486695100447,"method":"SEAD","details":"MAD!:w=0.38,s=0.53 RRCF-fast:w=0.15,s=0.66 RRCF-mid:w=0.13,s=0.67 RRCF-slow:w=0.13,s=0.56 COPOD!:w=0.21,s=0.99"} +{"timestamp":"2026-03-15T20:41:50.33383023Z","score":0.2323742445816137,"is_anomaly":false,"confidence":0.29806602213625305,"method":"SEAD","details":"MAD!:w=0.38,s=0.32 RRCF-fast:w=0.15,s=0.04 RRCF-mid:w=0.13,s=0.18 RRCF-slow:w=0.13,s=0.00 COPOD!:w=0.21,s=0.39"} +{"timestamp":"2026-03-15T20:42:18.286775035Z","score":0.34845241475276634,"is_anomaly":false,"confidence":0.44695928051807343,"method":"SEAD","details":"MAD!:w=0.38,s=0.39 RRCF-fast:w=0.15,s=0.43 RRCF-mid:w=0.13,s=0.34 RRCF-slow:w=0.13,s=0.37 COPOD!:w=0.21,s=0.21"} +{"timestamp":"2026-03-15T20:42:49.69170196Z","score":0.5367552801737105,"is_anomaly":false,"confidence":0.6884950245241885,"method":"SEAD","details":"MAD!:w=0.38,s=0.02 RRCF-fast!:w=0.15,s=0.88 RRCF-mid!:w=0.13,s=0.91 RRCF-slow:w=0.13,s=0.73 COPOD!:w=0.21,s=0.86"} +{"timestamp":"2026-03-15T20:43:18.306936293Z","score":0.5800213097887538,"is_anomaly":false,"confidence":0.7439922822525764,"method":"SEAD","details":"MAD!:w=0.38,s=0.59 RRCF-fast:w=0.15,s=0.52 RRCF-mid:w=0.13,s=0.59 RRCF-slow:w=0.13,s=0.35 COPOD!:w=0.21,s=0.75"} +{"timestamp":"2026-03-15T20:43:48.262289718Z","score":0.28864237858505193,"is_anomaly":false,"confidence":0.3709200330685639,"method":"SEAD","details":"MAD!:w=0.38,s=0.28 RRCF-fast:w=0.15,s=0.27 RRCF-mid:w=0.13,s=0.33 RRCF-slow:w=0.13,s=0.14 COPOD!:w=0.21,s=0.37"} +{"timestamp":"2026-03-15T20:44:18.305303937Z","score":0.6676501477252743,"is_anomaly":false,"confidence":0.8579641564986579,"method":"SEAD","details":"MAD!:w=0.38,s=0.84 RRCF-fast:w=0.15,s=0.82 RRCF-mid:w=0.13,s=0.73 RRCF-slow:w=0.13,s=0.53 COPOD!:w=0.21,s=0.30"} +{"timestamp":"2026-03-15T20:44:48.69478267Z","score":0.45810097995328414,"is_anomaly":false,"confidence":0.58868289357221,"method":"SEAD","details":"MAD!:w=0.38,s=0.10 RRCF-fast:w=0.15,s=0.75 RRCF-mid:w=0.13,s=0.64 RRCF-slow:w=0.13,s=0.49 COPOD!:w=0.21,s=0.77"} +{"timestamp":"2026-03-15T20:45:18.301397931Z","score":0.6750337486175122,"is_anomaly":false,"confidence":0.8674524565207801,"method":"SEAD","details":"MAD!:w=0.39,s=0.50 RRCF-fast:w=0.15,s=0.84 RRCF-mid:w=0.13,s=0.77 RRCF-slow!:w=0.13,s=0.83 COPOD!:w=0.21,s=0.73"} +{"timestamp":"2026-03-15T20:45:48.261657292Z","score":0.366518295451423,"is_anomaly":false,"confidence":0.47099451901521977,"method":"SEAD","details":"MAD!:w=0.39,s=0.37 RRCF-fast:w=0.15,s=0.17 RRCF-mid:w=0.13,s=0.41 RRCF-slow:w=0.13,s=0.27 COPOD!:w=0.21,s=0.53"} +{"timestamp":"2026-03-15T20:46:20.256904898Z","score":0.7025043198154202,"is_anomaly":false,"confidence":0.9027535277878945,"method":"SEAD","details":"MAD!:w=0.39,s=0.84 RRCF-fast:w=0.15,s=0.69 RRCF-mid:w=0.13,s=0.63 RRCF-slow:w=0.13,s=0.47 COPOD!:w=0.21,s=0.65"} +{"timestamp":"2026-03-15T20:46:51.463824677Z","score":0.6271444584405301,"is_anomaly":false,"confidence":0.8059123002098726,"method":"SEAD","details":"MAD!:w=0.39,s=0.54 RRCF-fast:w=0.15,s=0.56 RRCF-mid:w=0.13,s=0.68 RRCF-slow:w=0.13,s=0.47 COPOD!:w=0.21,s=0.91"} +{"timestamp":"2026-03-15T20:47:18.306336454Z","score":0.2618819562688582,"is_anomaly":false,"confidence":0.33845881474695655,"method":"SEAD","details":"MAD!:w=0.39,s=0.25 RRCF-fast:w=0.15,s=0.01 RRCF-mid:w=0.13,s=0.17 RRCF-slow:w=0.13,s=0.01 COPOD!:w=0.20,s=0.68"} +{"timestamp":"2026-03-15T20:47:48.262999734Z","score":0.334147969899313,"is_anomaly":false,"confidence":0.43185612118352723,"method":"SEAD","details":"MAD!:w=0.39,s=0.35 RRCF-fast:w=0.15,s=0.19 RRCF-mid:w=0.13,s=0.48 RRCF-slow:w=0.13,s=0.26 COPOD!:w=0.20,s=0.36"} +{"timestamp":"2026-03-15T20:48:18.799631907Z","score":0.31213771865253576,"is_anomaly":false,"confidence":0.40340985609751673,"method":"SEAD","details":"MAD!:w=0.39,s=0.01 RRCF-fast:w=0.15,s=0.44 RRCF-mid:w=0.13,s=0.75 RRCF-slow:w=0.13,s=0.62 COPOD!:w=0.20,s=0.31"} +{"timestamp":"2026-03-15T20:48:48.354067326Z","score":0.5545121015705826,"is_anomaly":false,"confidence":0.716656891274114,"method":"SEAD","details":"MAD!:w=0.39,s=0.54 RRCF-fast:w=0.15,s=0.57 RRCF-mid:w=0.13,s=0.58 RRCF-slow:w=0.13,s=0.35 COPOD!:w=0.20,s=0.69"} +{"timestamp":"2026-03-15T20:49:18.312649745Z","score":0.3333815850195049,"is_anomaly":false,"confidence":0.43086563783081566,"method":"SEAD","details":"MAD!:w=0.39,s=0.43 RRCF-fast:w=0.15,s=0.22 RRCF-mid:w=0.13,s=0.40 RRCF-slow:w=0.13,s=0.20 COPOD!:w=0.20,s=0.27"} +{"timestamp":"2026-03-15T20:49:48.302792798Z","score":0.5793742961928745,"is_anomaly":false,"confidence":0.7487890360150449,"method":"SEAD","details":"MAD!:w=0.39,s=0.84 RRCF-fast:w=0.15,s=0.54 RRCF-mid:w=0.13,s=0.57 RRCF-slow:w=0.13,s=0.57 COPOD!:w=0.20,s=0.13"} +{"timestamp":"2026-03-15T20:51:00.088873824Z","score":0.6352662361370585,"is_anomaly":false,"confidence":0.8210243286519897,"method":"SEAD","details":"MAD!:w=0.39,s=0.45 RRCF-fast:w=0.15,s=0.71 RRCF-mid:w=0.13,s=0.61 RRCF-slow:w=0.13,s=0.61 COPOD!:w=0.20,s=0.95"} +{"timestamp":"2026-03-15T20:51:18.42689239Z","score":0.6262689006278926,"is_anomaly":false,"confidence":0.8105147724138315,"method":"SEAD","details":"MAD!:w=0.39,s=0.50 RRCF-fast:w=0.15,s=0.64 RRCF-mid!:w=0.13,s=0.80 RRCF-slow!:w=0.13,s=0.80 COPOD!:w=0.20,s=0.64"} +{"timestamp":"2026-03-15T20:52:23.085594615Z","score":0.8111120171405193,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.39,s=0.72 RRCF-fast!:w=0.15,s=0.95 RRCF-mid!:w=0.13,s=0.98 RRCF-slow!:w=0.13,s=0.99 COPOD!:w=0.20,s=0.66"} +{"timestamp":"2026-03-15T20:52:50.898833397Z","score":0.5730110692690489,"is_anomaly":false,"confidence":0.7405651389841518,"method":"SEAD","details":"MAD!:w=0.39,s=0.03 RRCF-fast!:w=0.15,s=0.96 RRCF-mid!:w=0.13,s=0.93 RRCF-slow!:w=0.13,s=0.89 COPOD!:w=0.20,s=0.92"} +{"timestamp":"2026-03-15T20:53:18.308102281Z","score":0.5775273765396527,"is_anomaly":false,"confidence":0.7464020588988339,"method":"SEAD","details":"MAD!:w=0.40,s=0.59 RRCF-fast:w=0.15,s=0.52 RRCF-mid:w=0.13,s=0.50 RRCF-slow:w=0.13,s=0.75 COPOD!:w=0.20,s=0.54"} +{"timestamp":"2026-03-15T20:53:56.652790369Z","score":0.8782192712681711,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.40,s=0.83 RRCF-fast!:w=0.15,s=0.99 RRCF-mid!:w=0.13,s=1.00 RRCF-slow!:w=0.13,s=1.00 COPOD!:w=0.20,s=0.74"} +{"timestamp":"2026-03-15T20:54:36.969546873Z","score":0.7552142251696523,"is_anomaly":false,"confidence":0.9704884180450841,"method":"SEAD","details":"MAD!:w=0.40,s=0.84 RRCF-fast!:w=0.15,s=0.92 RRCF-mid!:w=0.13,s=0.89 RRCF-slow!:w=0.13,s=0.92 COPOD!:w=0.20,s=0.28"} +{"timestamp":"2026-03-15T20:55:40.565415346Z","score":0.5020358642058536,"is_anomaly":false,"confidence":0.648836086229371,"method":"SEAD","details":"MAD!:w=0.40,s=0.02 RRCF-fast!:w=0.15,s=0.89 RRCF-mid!:w=0.13,s=0.87 RRCF-slow!:w=0.13,s=0.91 COPOD!:w=0.20,s=0.68"} +{"timestamp":"2026-03-15T20:55:48.305631784Z","score":0.872418352945188,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.40,s=0.73 RRCF-fast!:w=0.15,s=0.97 RRCF-mid!:w=0.12,s=0.97 RRCF-slow!:w=0.13,s=0.98 COPOD!:w=0.20,s=0.96"} +{"timestamp":"2026-03-15T20:56:18.268772642Z","score":0.5173235865490386,"is_anomaly":false,"confidence":0.6647869338194776,"method":"SEAD","details":"MAD!:w=0.40,s=0.37 RRCF-fast:w=0.14,s=0.46 RRCF-mid:w=0.12,s=0.78 RRCF-slow!:w=0.13,s=0.84 COPOD!:w=0.20,s=0.49"} +{"timestamp":"2026-03-15T20:57:08.486563011Z","score":0.8400601442119895,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.41,s=0.82 RRCF-fast!:w=0.14,s=0.96 RRCF-mid!:w=0.12,s=0.97 RRCF-slow!:w=0.13,s=0.98 COPOD!:w=0.20,s=0.63"} +{"timestamp":"2026-03-15T20:57:21.420656443Z","score":0.8786745201813431,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.41,s=0.84 RRCF-fast!:w=0.14,s=0.89 RRCF-mid!:w=0.12,s=0.91 RRCF-slow!:w=0.13,s=0.95 COPOD!:w=0.20,s=0.89"} +{"timestamp":"2026-03-15T20:57:52.705204713Z","score":0.42391938869608137,"is_anomaly":false,"confidence":0.5436411257844044,"method":"SEAD","details":"MAD!:w=0.41,s=0.09 RRCF-fast:w=0.14,s=0.63 RRCF-mid:w=0.12,s=0.86 RRCF-slow!:w=0.13,s=0.90 COPOD!:w=0.20,s=0.38"} +{"timestamp":"2026-03-15T20:58:42.588173835Z","score":0.7651105517514062,"is_anomaly":false,"confidence":0.9811902281305261,"method":"SEAD","details":"MAD!:w=0.41,s=0.72 RRCF-fast:w=0.14,s=0.87 RRCF-mid!:w=0.12,s=0.94 RRCF-slow!:w=0.12,s=0.96 COPOD!:w=0.20,s=0.55"} +{"timestamp":"2026-03-15T20:58:48.283104202Z","score":0.6985689466593084,"is_anomaly":false,"confidence":0.8960531210915768,"method":"SEAD","details":"MAD!:w=0.41,s=0.73 RRCF-fast:w=0.14,s=0.84 RRCF-mid!:w=0.12,s=0.92 RRCF-slow!:w=0.12,s=0.96 COPOD!:w=0.20,s=0.25"} +{"timestamp":"2026-03-15T20:59:20.962946626Z","score":0.46947286324443593,"is_anomaly":false,"confidence":0.6021919903392694,"method":"SEAD","details":"MAD!:w=0.41,s=0.02 RRCF-fast!:w=0.14,s=0.96 RRCF-mid!:w=0.12,s=0.95 RRCF-slow!:w=0.12,s=0.96 COPOD!:w=0.20,s=0.45"} +{"timestamp":"2026-03-15T21:00:14.466674377Z","score":0.6955821630688332,"is_anomaly":false,"confidence":0.8922219791963222,"method":"SEAD","details":"MAD!:w=0.41,s=0.50 RRCF-fast!:w=0.14,s=0.91 RRCF-mid!:w=0.12,s=0.92 RRCF-slow!:w=0.12,s=0.93 COPOD!:w=0.20,s=0.67"} +{"timestamp":"2026-03-15T21:00:18.311767333Z","score":0.8784713811253497,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.42,s=0.77 RRCF-fast!:w=0.14,s=0.91 RRCF-mid!:w=0.12,s=0.94 RRCF-slow!:w=0.12,s=0.96 COPOD!:w=0.20,s=0.99"} +{"timestamp":"2026-03-15T21:00:48.263353591Z","score":0.3311210849367794,"is_anomaly":false,"confidence":0.4246350702185944,"method":"SEAD","details":"MAD!:w=0.42,s=0.16 RRCF-fast:w=0.14,s=0.40 RRCF-mid:w=0.12,s=0.72 RRCF-slow:w=0.12,s=0.83 COPOD!:w=0.20,s=0.11"} +{"timestamp":"2026-03-15T21:01:18.264192849Z","score":0.39104374613614484,"is_anomaly":false,"confidence":0.5014808665258149,"method":"SEAD","details":"MAD!:w=0.42,s=0.26 RRCF-fast:w=0.14,s=0.35 RRCF-mid:w=0.12,s=0.72 RRCF-slow:w=0.12,s=0.82 COPOD!:w=0.20,s=0.25"} +{"timestamp":"2026-03-15T21:01:50.311698571Z","score":0.38567794807237565,"is_anomaly":false,"confidence":0.4945996797296842,"method":"SEAD","details":"MAD!:w=0.42,s=0.03 RRCF-fast:w=0.14,s=0.79 RRCF-mid:w=0.12,s=0.86 RRCF-slow:w=0.12,s=0.90 COPOD!:w=0.20,s=0.27"} +{"timestamp":"2026-03-15T21:02:18.307134382Z","score":0.4435583988403112,"is_anomaly":false,"confidence":0.5689515538415141,"method":"SEAD","details":"MAD!:w=0.43,s=0.50 RRCF-fast:w=0.14,s=0.20 RRCF-mid:w=0.12,s=0.46 RRCF-slow:w=0.12,s=0.78 COPOD!:w=0.20,s=0.28"} +{"timestamp":"2026-03-15T21:02:48.266702576Z","score":0.47883400476127785,"is_anomaly":false,"confidence":0.6141995095873831,"method":"SEAD","details":"MAD!:w=0.42,s=0.44 RRCF-fast:w=0.14,s=0.39 RRCF-mid:w=0.12,s=0.58 RRCF-slow:w=0.12,s=0.74 COPOD!:w=0.20,s=0.41"} +{"timestamp":"2026-03-15T21:03:21.413133474Z","score":0.7456934194636984,"is_anomaly":false,"confidence":0.9564995969020202,"method":"SEAD","details":"MAD!:w=0.43,s=0.84 RRCF-fast:w=0.14,s=0.67 RRCF-mid:w=0.12,s=0.87 RRCF-slow:w=0.12,s=0.87 COPOD!:w=0.20,s=0.45"} +{"timestamp":"2026-03-15T21:03:49.513853272Z","score":0.2565592892770032,"is_anomaly":false,"confidence":0.32908813510975177,"method":"SEAD","details":"MAD!:w=0.42,s=0.01 RRCF-fast:w=0.14,s=0.41 RRCF-mid:w=0.12,s=0.78 RRCF-slow:w=0.12,s=0.82 COPOD!:w=0.20,s=0.04"} +{"timestamp":"2026-03-15T21:04:18.308455641Z","score":0.44877486644822706,"is_anomaly":false,"confidence":0.5756427073826201,"method":"SEAD","details":"MAD!:w=0.43,s=0.44 RRCF-fast:w=0.14,s=0.02 RRCF-mid:w=0.12,s=0.36 RRCF-slow:w=0.12,s=0.67 COPOD!:w=0.20,s=0.69"} +{"timestamp":"2026-03-15T21:04:49.868321008Z","score":0.47362578922800835,"is_anomaly":false,"confidence":0.6075189409674616,"method":"SEAD","details":"MAD!:w=0.43,s=0.32 RRCF-fast:w=0.14,s=0.31 RRCF-mid:w=0.12,s=0.63 RRCF-slow:w=0.12,s=0.76 COPOD!:w=0.20,s=0.67"} +{"timestamp":"2026-03-15T21:05:20.005447345Z","score":0.3322220288124526,"is_anomaly":false,"confidence":0.42692208440525226,"method":"SEAD","details":"MAD!:w=0.43,s=0.02 RRCF-fast:w=0.14,s=0.72 RRCF-mid:w=0.11,s=0.80 RRCF-slow:w=0.12,s=0.86 COPOD!:w=0.20,s=0.16"} +{"timestamp":"2026-03-15T21:05:48.310902976Z","score":0.5600050623524511,"is_anomaly":false,"confidence":0.7196347856630763,"method":"SEAD","details":"MAD!:w=0.43,s=0.60 RRCF-fast:w=0.14,s=0.42 RRCF-mid:w=0.11,s=0.53 RRCF-slow:w=0.11,s=0.77 COPOD!:w=0.20,s=0.48"} +{"timestamp":"2026-03-15T21:06:18.263421013Z","score":0.41870072509671574,"is_anomaly":false,"confidence":0.5380515763486309,"method":"SEAD","details":"MAD!:w=0.43,s=0.35 RRCF-fast:w=0.14,s=0.02 RRCF-mid:w=0.11,s=0.31 RRCF-slow:w=0.11,s=0.68 COPOD!:w=0.20,s=0.75"} +{"timestamp":"2026-03-15T21:06:48.269316856Z","score":0.30590741150455847,"is_anomaly":false,"confidence":0.39310647226306433,"method":"SEAD","details":"MAD!:w=0.43,s=0.21 RRCF-fast:w=0.14,s=0.05 RRCF-mid:w=0.11,s=0.42 RRCF-slow:w=0.11,s=0.68 COPOD!:w=0.20,s=0.42"} +{"timestamp":"2026-03-15T21:07:25.35072452Z","score":0.49068178095924125,"is_anomaly":false,"confidence":0.6305508682118695,"method":"SEAD","details":"MAD!:w=0.43,s=0.12 RRCF-fast:w=0.14,s=0.72 RRCF-mid:w=0.11,s=0.77 RRCF-slow:w=0.11,s=0.84 COPOD!:w=0.20,s=0.79"} +{"timestamp":"2026-03-15T21:07:48.309087697Z","score":0.5615425800133291,"is_anomaly":false,"confidence":0.7216105735027276,"method":"SEAD","details":"MAD!:w=0.44,s=0.52 RRCF-fast:w=0.14,s=0.31 RRCF-mid:w=0.11,s=0.66 RRCF-slow:w=0.11,s=0.75 COPOD!:w=0.20,s=0.67"} +{"timestamp":"2026-03-15T21:08:18.252669493Z","score":0.24427752750382348,"is_anomaly":false,"confidence":0.3139089589816648,"method":"SEAD","details":"MAD!:w=0.44,s=0.16 RRCF-fast:w=0.14,s=0.16 RRCF-mid:w=0.11,s=0.38 RRCF-slow:w=0.11,s=0.59 COPOD!:w=0.20,s=0.21"} +{"timestamp":"2026-03-15T21:08:48.337204728Z","score":0.6809215865232485,"is_anomaly":false,"confidence":0.8800297523120406,"method":"SEAD","details":"MAD!:w=0.44,s=0.84 RRCF-fast:w=0.14,s=0.71 RRCF-mid:w=0.11,s=0.76 RRCF-slow:w=0.11,s=0.85 COPOD!:w=0.20,s=0.16"} +{"timestamp":"2026-03-15T21:09:19.99405968Z","score":0.25422961800529614,"is_anomaly":false,"confidence":0.3285688575478092,"method":"SEAD","details":"MAD!:w=0.44,s=0.02 RRCF-fast:w=0.14,s=0.50 RRCF-mid:w=0.11,s=0.68 RRCF-slow:w=0.11,s=0.75 COPOD!:w=0.20,s=0.09"} +{"timestamp":"2026-03-15T21:09:48.310693105Z","score":0.35641480612543464,"is_anomaly":false,"confidence":0.46063399921923487,"method":"SEAD","details":"MAD!:w=0.44,s=0.50 RRCF-fast:w=0.14,s=0.13 RRCF-mid:w=0.11,s=0.30 RRCF-slow:w=0.11,s=0.43 COPOD!:w=0.20,s=0.18"} +{"timestamp":"2026-03-15T21:10:19.645929022Z","score":0.30416228775414017,"is_anomaly":false,"confidence":0.39310233080090573,"method":"SEAD","details":"MAD!:w=0.44,s=0.35 RRCF-fast:w=0.14,s=0.10 RRCF-mid:w=0.11,s=0.44 RRCF-slow:w=0.11,s=0.54 COPOD!:w=0.20,s=0.14"} +{"timestamp":"2026-03-15T21:10:49.708911641Z","score":0.8890151394136221,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.44,s=0.84 RRCF-fast:w=0.14,s=0.88 RRCF-mid:w=0.11,s=0.90 RRCF-slow:w=0.11,s=0.93 COPOD!:w=0.20,s=0.97"} +{"timestamp":"2026-03-15T21:11:21.232797358Z","score":0.7284086755937813,"is_anomaly":false,"confidence":0.936041933146217,"method":"SEAD","details":"MAD!:w=0.44,s=0.65 RRCF-fast:w=0.14,s=0.80 RRCF-mid:w=0.11,s=0.76 RRCF-slow:w=0.11,s=0.84 COPOD!:w=0.20,s=0.77"} +{"timestamp":"2026-03-15T21:11:48.309667242Z","score":0.5647728302904628,"is_anomaly":false,"confidence":0.7257616082381246,"method":"SEAD","details":"MAD!:w=0.44,s=0.54 RRCF-fast:w=0.14,s=0.83 RRCF-mid:w=0.11,s=0.78 RRCF-slow:w=0.11,s=0.80 COPOD!:w=0.20,s=0.18"} +{"timestamp":"2026-03-15T21:12:18.32648741Z","score":0.6285411039895805,"is_anomaly":false,"confidence":0.8123327017522914,"method":"SEAD","details":"MAD!:w=0.44,s=0.71 RRCF-fast:w=0.14,s=0.75 RRCF-mid:w=0.11,s=0.81 RRCF-slow:w=0.11,s=0.87 COPOD!:w=0.20,s=0.15"} +{"timestamp":"2026-03-15T21:12:48.327851686Z","score":0.5078994845030741,"is_anomaly":false,"confidence":0.6564142867445909,"method":"SEAD","details":"MAD!:w=0.44,s=0.51 RRCF-fast:w=0.14,s=0.35 RRCF-mid:w=0.11,s=0.38 RRCF-slow:w=0.11,s=0.53 COPOD!:w=0.20,s=0.68"} +{"timestamp":"2026-03-15T21:13:18.266914533Z","score":0.44699659937846964,"is_anomaly":false,"confidence":0.5777027992957136,"method":"SEAD","details":"MAD!:w=0.44,s=0.49 RRCF-fast:w=0.14,s=0.50 RRCF-mid:w=0.11,s=0.39 RRCF-slow:w=0.11,s=0.58 COPOD!:w=0.20,s=0.28"} +{"timestamp":"2026-03-15T21:13:51.06050096Z","score":0.7942442650476176,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.44,s=0.65 RRCF-fast!:w=0.14,s=0.91 RRCF-mid!:w=0.11,s=0.93 RRCF-slow:w=0.11,s=0.92 COPOD!:w=0.20,s=0.88"} +{"timestamp":"2026-03-15T21:14:18.331272713Z","score":0.6192504462711578,"is_anomaly":false,"confidence":0.7957680959206037,"method":"SEAD","details":"MAD!:w=0.44,s=0.54 RRCF-fast:w=0.14,s=0.80 RRCF-mid:w=0.11,s=0.88 RRCF-slow:w=0.11,s=0.90 COPOD!:w=0.20,s=0.39"} +{"timestamp":"2026-03-15T21:14:48.267819729Z","score":0.5795212493767673,"is_anomaly":false,"confidence":0.7447140715666831,"method":"SEAD","details":"MAD!:w=0.44,s=0.48 RRCF-fast:w=0.14,s=0.57 RRCF-mid:w=0.11,s=0.49 RRCF-slow:w=0.11,s=0.68 COPOD!:w=0.20,s=0.79"} +{"timestamp":"2026-03-15T21:15:18.433401699Z","score":0.7257927759783551,"is_anomaly":false,"confidence":0.9380217186759618,"method":"SEAD","details":"MAD!:w=0.44,s=0.84 RRCF-fast:w=0.14,s=0.83 RRCF-mid:w=0.11,s=0.81 RRCF-slow:w=0.11,s=0.84 COPOD!:w=0.20,s=0.31"} +{"timestamp":"2026-03-15T21:15:48.299372124Z","score":0.565824103750776,"is_anomaly":false,"confidence":0.7312766340959241,"method":"SEAD","details":"MAD!:w=0.44,s=0.19 RRCF-fast:w=0.14,s=0.89 RRCF-mid:w=0.11,s=0.88 RRCF-slow:w=0.11,s=0.75 COPOD!:w=0.20,s=0.89"} +{"timestamp":"2026-03-15T21:16:18.30567701Z","score":0.6036883121861,"is_anomaly":false,"confidence":0.780212709306828,"method":"SEAD","details":"MAD!:w=0.44,s=0.52 RRCF-fast:w=0.14,s=0.84 RRCF-mid:w=0.11,s=0.79 RRCF-slow:w=0.11,s=0.68 COPOD!:w=0.20,s=0.49"} +{"timestamp":"2026-03-15T21:16:48.28592117Z","score":0.7126288298246868,"is_anomaly":false,"confidence":0.9210085052570534,"method":"SEAD","details":"MAD!:w=0.45,s=0.75 RRCF-fast!:w=0.14,s=0.96 RRCF-mid:w=0.11,s=0.86 RRCF-slow:w=0.11,s=0.90 COPOD!:w=0.20,s=0.29"} +{"timestamp":"2026-03-15T21:17:19.450418145Z","score":0.7628259656769484,"is_anomaly":false,"confidence":0.9858837771020758,"method":"SEAD","details":"MAD!:w=0.44,s=0.84 RRCF-fast:w=0.13,s=0.83 RRCF-mid:w=0.11,s=0.70 RRCF-slow:w=0.11,s=0.75 COPOD!:w=0.20,s=0.60"} +{"timestamp":"2026-03-15T21:17:50.978340531Z","score":0.4383511365729999,"is_anomaly":false,"confidence":0.566529318175563,"method":"SEAD","details":"MAD!:w=0.44,s=0.12 RRCF-fast:w=0.13,s=0.75 RRCF-mid:w=0.11,s=0.75 RRCF-slow:w=0.11,s=0.74 COPOD!:w=0.21,s=0.59"} +{"timestamp":"2026-03-15T21:18:18.376472901Z","score":0.708014542294944,"is_anomaly":false,"confidence":0.9150449546922521,"method":"SEAD","details":"MAD!:w=0.45,s=0.78 RRCF-fast:w=0.13,s=0.87 RRCF-mid:w=0.11,s=0.85 RRCF-slow:w=0.11,s=0.84 COPOD!:w=0.20,s=0.29"} +{"timestamp":"2026-03-15T21:18:48.336434466Z","score":0.4863294207004425,"is_anomaly":false,"confidence":0.6294056424356542,"method":"SEAD","details":"MAD!:w=0.45,s=0.44 RRCF-fast:w=0.13,s=0.55 RRCF-mid:w=0.11,s=0.39 RRCF-slow:w=0.11,s=0.60 COPOD!:w=0.21,s=0.54"} +{"timestamp":"2026-03-15T21:19:19.541815363Z","score":0.7802925620970422,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.45,s=0.84 RRCF-fast:w=0.13,s=0.66 RRCF-mid:w=0.11,s=0.74 RRCF-slow:w=0.11,s=0.74 COPOD!:w=0.21,s=0.78"} +{"timestamp":"2026-03-15T21:19:50.355470786Z","score":0.7345086338730822,"is_anomaly":false,"confidence":0.9492861791014968,"method":"SEAD","details":"MAD!:w=0.45,s=0.64 RRCF-fast:w=0.13,s=0.77 RRCF-mid:w=0.11,s=0.78 RRCF-slow:w=0.11,s=0.75 COPOD!:w=0.21,s=0.89"} +{"timestamp":"2026-03-15T21:20:18.334142989Z","score":0.5851777357679133,"is_anomaly":false,"confidence":0.7562894583733026,"method":"SEAD","details":"MAD!:w=0.45,s=0.50 RRCF-fast:w=0.13,s=0.48 RRCF-mid:w=0.11,s=0.71 RRCF-slow:w=0.11,s=0.79 COPOD!:w=0.20,s=0.67"} +{"timestamp":"2026-03-15T21:20:48.307064463Z","score":0.3763833182632401,"is_anomaly":false,"confidence":0.48644150060922486,"method":"SEAD","details":"MAD!:w=0.45,s=0.33 RRCF-fast:w=0.13,s=0.60 RRCF-mid:w=0.11,s=0.46 RRCF-slow:w=0.11,s=0.63 COPOD!:w=0.20,s=0.14"} +{"timestamp":"2026-03-15T21:21:25.510456077Z","score":0.3537140190107815,"is_anomaly":false,"confidence":0.45714347540181344,"method":"SEAD","details":"MAD!:w=0.45,s=0.04 RRCF-fast:w=0.13,s=0.68 RRCF-mid:w=0.11,s=0.61 RRCF-slow:w=0.11,s=0.73 COPOD!:w=0.20,s=0.51"} +{"timestamp":"2026-03-15T21:21:48.355622481Z","score":0.5886393633408212,"is_anomaly":false,"confidence":0.7607632998785149,"method":"SEAD","details":"MAD!:w=0.45,s=0.63 RRCF-fast:w=0.13,s=0.58 RRCF-mid:w=0.11,s=0.42 RRCF-slow:w=0.10,s=0.60 COPOD!:w=0.20,s=0.59"} +{"timestamp":"2026-03-15T21:22:18.281857761Z","score":0.4267614050617484,"is_anomaly":false,"confidence":0.5523129485622498,"method":"SEAD","details":"MAD!:w=0.45,s=0.44 RRCF-fast:w=0.13,s=0.38 RRCF-mid:w=0.11,s=0.34 RRCF-slow:w=0.10,s=0.50 COPOD!:w=0.20,s=0.43"} +{"timestamp":"2026-03-15T21:22:48.51408388Z","score":0.6307296274183015,"is_anomaly":false,"confidence":0.816287827655284,"method":"SEAD","details":"MAD!:w=0.45,s=0.85 RRCF-fast:w=0.13,s=0.56 RRCF-mid:w=0.11,s=0.59 RRCF-slow:w=0.10,s=0.73 COPOD!:w=0.20,s=0.17"} +{"timestamp":"2026-03-15T21:23:18.566648972Z","score":0.440597628728058,"is_anomaly":false,"confidence":0.5702197353509955,"method":"SEAD","details":"MAD!:w=0.45,s=0.19 RRCF-fast:w=0.13,s=0.62 RRCF-mid:w=0.11,s=0.71 RRCF-slow:w=0.10,s=0.66 COPOD!:w=0.21,s=0.61"} +{"timestamp":"2026-03-15T21:23:48.356252774Z","score":0.275148660481913,"is_anomaly":false,"confidence":0.35609632492828247,"method":"SEAD","details":"MAD!:w=0.45,s=0.17 RRCF-fast:w=0.13,s=0.21 RRCF-mid:w=0.11,s=0.52 RRCF-slow:w=0.10,s=0.51 COPOD!:w=0.20,s=0.30"} +{"timestamp":"2026-03-15T21:24:19.760104946Z","score":0.4593059481443977,"is_anomaly":false,"confidence":0.5944319694868069,"method":"SEAD","details":"MAD!:w=0.45,s=0.46 RRCF-fast:w=0.13,s=0.56 RRCF-mid:w=0.11,s=0.55 RRCF-slow:w=0.10,s=0.66 COPOD!:w=0.20,s=0.24"} +{"timestamp":"2026-03-15T21:24:49.708345913Z","score":0.7411835514097098,"is_anomaly":false,"confidence":0.9592368659619193,"method":"SEAD","details":"MAD!:w=0.45,s=0.85 RRCF-fast:w=0.13,s=0.41 RRCF-mid:w=0.11,s=0.78 RRCF-slow:w=0.10,s=0.76 COPOD!:w=0.21,s=0.69"} +{"timestamp":"2026-03-15T21:25:19.587926685Z","score":0.6782445679431418,"is_anomaly":false,"confidence":0.8793613283014367,"method":"SEAD","details":"MAD!:w=0.45,s=0.60 RRCF-fast:w=0.13,s=0.59 RRCF-mid:w=0.11,s=0.71 RRCF-slow:w=0.10,s=0.74 COPOD!:w=0.21,s=0.87"} +{"timestamp":"2026-03-15T21:25:48.30515671Z","score":0.43067306351823975,"is_anomaly":false,"confidence":0.5583785777268425,"method":"SEAD","details":"MAD!:w=0.45,s=0.41 RRCF-fast:w=0.13,s=0.21 RRCF-mid:w=0.11,s=0.42 RRCF-slow:w=0.10,s=0.42 COPOD!:w=0.20,s=0.63"} +{"timestamp":"2026-03-15T21:26:18.263357173Z","score":0.2285615150087954,"is_anomaly":false,"confidence":0.29633581592292557,"method":"SEAD","details":"MAD!:w=0.45,s=0.15 RRCF-fast:w=0.13,s=0.18 RRCF-mid:w=0.11,s=0.44 RRCF-slow:w=0.10,s=0.56 COPOD!:w=0.20,s=0.16"} +{"timestamp":"2026-03-15T21:26:48.655108127Z","score":0.3080469189641696,"is_anomaly":false,"confidence":0.3993906632543879,"method":"SEAD","details":"MAD!:w=0.45,s=0.08 RRCF-fast:w=0.13,s=0.57 RRCF-mid:w=0.11,s=0.60 RRCF-slow:w=0.10,s=0.65 COPOD!:w=0.20,s=0.31"} +{"timestamp":"2026-03-15T21:27:18.309223945Z","score":0.5477024156705345,"is_anomaly":false,"confidence":0.7101101085387864,"method":"SEAD","details":"MAD!:w=0.46,s=0.56 RRCF-fast:w=0.13,s=0.39 RRCF-mid:w=0.11,s=0.37 RRCF-slow:w=0.10,s=0.57 COPOD!:w=0.20,s=0.70"} +{"timestamp":"2026-03-15T21:27:48.310045636Z","score":0.3956149911357472,"is_anomaly":false,"confidence":0.5129248954490052,"method":"SEAD","details":"MAD!:w=0.46,s=0.39 RRCF-fast:w=0.13,s=0.15 RRCF-mid:w=0.11,s=0.38 RRCF-slow:w=0.10,s=0.41 COPOD!:w=0.20,s=0.56"} +{"timestamp":"2026-03-15T21:28:18.332845043Z","score":0.66397908552696,"is_anomaly":false,"confidence":0.8608657676154186,"method":"SEAD","details":"MAD!:w=0.46,s=0.85 RRCF-fast:w=0.13,s=0.51 RRCF-mid:w=0.11,s=0.79 RRCF-slow:w=0.10,s=0.74 COPOD!:w=0.20,s=0.24"} +{"timestamp":"2026-03-15T21:28:49.857752984Z","score":0.29612396488002507,"is_anomaly":false,"confidence":0.38441288409055435,"method":"SEAD","details":"MAD!:w=0.45,s=0.06 RRCF-fast:w=0.13,s=0.48 RRCF-mid:w=0.11,s=0.55 RRCF-slow:w=0.10,s=0.63 COPOD!:w=0.20,s=0.41"} +{"timestamp":"2026-03-15T21:29:18.416714633Z","score":0.33602185812167656,"is_anomaly":false,"confidence":0.43620627479560653,"method":"SEAD","details":"MAD!:w=0.46,s=0.53 RRCF-fast:w=0.13,s=0.09 RRCF-mid:w=0.11,s=0.28 RRCF-slow:w=0.10,s=0.41 COPOD!:w=0.20,s=0.06"} +{"timestamp":"2026-03-15T21:29:48.263408389Z","score":0.36065952094545184,"is_anomaly":false,"confidence":0.46818962010565357,"method":"SEAD","details":"MAD!:w=0.45,s=0.33 RRCF-fast:w=0.13,s=0.23 RRCF-mid:w=0.11,s=0.34 RRCF-slow:w=0.10,s=0.40 COPOD!:w=0.20,s=0.50"} +{"timestamp":"2026-03-15T21:30:21.699492597Z","score":0.7982707139467109,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.45,s=0.85 RRCF-fast!:w=0.13,s=0.98 RRCF-mid!:w=0.11,s=0.89 RRCF-slow!:w=0.10,s=0.93 COPOD!:w=0.20,s=0.46"} diff --git a/evaluation/data/pipeline_high-bw_run1/baseline_metrics.csv b/evaluation/data/pipeline_high-bw_run1/baseline_metrics.csv new file mode 100644 index 0000000..9b84eb3 --- /dev/null +++ b/evaluation/data/pipeline_high-bw_run1/baseline_metrics.csv @@ -0,0 +1,3249 @@ +timestamp,cpu_percent,cpu_count,cpu_freq_current,memory_percent,memory_available_mb,memory_used_mb,swap_percent,disk_io_read_mb_s,disk_io_write_mb_s,disk_io_read_count,disk_io_write_count,network_sent_mb_s,network_recv_mb_s,network_packets_sent,network_packets_recv,network_errin,network_errout,network_dropin,network_dropout,tixstream_active,transfer_job_manager_active +1773594003.531823,1.30,4,3992.50,54.02,1564.47,2115.08,0.00,9.724960,10.851607,1750198,2278055,0.000101,0.000144,14480659,11666821,0,0,40262,0,1,1 +1773594008.531914,0.80,4,3992.50,54.04,1563.58,2115.98,0.00,3518373521570.464355,3518373520763.783691,251,357,0.000205,0.000562,14480666,11666835,0,0,40265,0,1,1 +1773594013.536330,0.75,4,3992.50,54.04,1563.58,2115.98,0.00,25136.363690,25942.367920,1750198,2278063,0.000000,0.000020,14480666,11666837,0,0,40267,0,1,1 +1773594018.536262,0.90,4,3992.50,54.47,1546.87,2132.67,0.00,3518484762785.035156,3518484761969.289062,11,0,0.000062,0.000080,14480670,11666844,0,0,40270,0,1,1 +1773594023.532015,0.75,4,3992.50,54.50,1545.70,2133.88,0.00,0.053561,0.000000,75,0,0.000008,0.000028,14480671,11666847,0,0,40272,0,1,1 +1773594028.536392,0.60,4,3992.50,54.52,1544.96,2134.62,0.00,1.957076,0.000195,246,2,0.000000,0.000030,14480671,11666850,0,0,40275,0,1,1 +1773594033.531909,40.18,4,3992.50,60.75,1301.14,2378.39,0.00,3521594425339.975586,3521594425341.989746,11,0,92.218810,0.036140,14490388,11669419,0,0,40277,0,1,1 +1773594038.532774,31.91,4,3992.50,61.07,1288.43,2391.09,0.00,25146.308999,25960.964958,1748710,2277858,119.153169,0.047337,14502636,11673082,0,0,40280,0,1,1 +1773594043.536488,30.36,4,3992.50,60.96,1292.63,2386.88,0.00,9.554427,10.670785,1750199,2278226,119.093132,0.069655,14515047,11678516,0,0,40282,0,1,1 +1773594048.536396,31.05,4,3992.50,61.34,1280.20,2401.74,0.00,3518501624193.973633,3518501624192.924805,1748711,2277899,119.392680,0.093137,14527719,11685827,0,0,40285,0,1,1 +1773594053.536210,31.03,4,3992.50,61.02,1290.54,2389.23,0.00,3518568053354.373535,3518568052548.497559,251,357,119.200577,0.106491,14540512,11694147,0,0,40287,0,1,1 +1773594058.535668,30.51,4,3992.50,61.10,1287.48,2392.27,0.00,0.000000,0.000000,251,357,119.611670,0.110668,14553449,11702810,0,0,40290,0,1,1 +1773594063.536564,30.77,4,3992.50,61.32,1279.06,2400.68,0.00,3517807283574.064941,3517807283564.994141,75,0,119.175221,0.112393,14566308,11711613,0,0,40292,0,1,1 +1773594068.536086,29.00,4,3992.50,61.19,1283.93,2395.80,0.00,25162.572585,25978.863303,1750200,2278324,119.609264,0.110905,14579172,11720297,0,0,40295,0,1,1 +1773594073.534697,12.75,4,3992.50,57.27,1437.57,2242.24,0.00,3519414742697.037109,3519414741880.471191,205,0,98.188673,0.089316,14589722,11727276,0,0,40297,0,1,1 +1773594078.532106,1.15,4,3992.50,56.19,1481.42,2199.85,0.00,3520261437930.351074,0.000000,11,0,0.003120,0.001455,14589780,11727317,0,0,40300,0,1,1 +1773594083.535914,0.65,4,3992.50,55.70,1500.42,2180.85,0.00,0.000000,0.000000,11,0,0.000000,0.000020,14589780,11727319,0,0,40302,0,1,1 +1773594088.535558,0.75,4,3992.50,55.41,1511.96,2169.31,0.00,0.000000,0.000000,11,0,0.000000,0.000030,14589780,11727322,0,0,40305,0,1,1 +1773594093.531845,0.75,4,3992.50,55.41,1511.96,2169.31,0.00,0.180407,0.000000,205,0,0.000000,0.000020,14589780,11727324,0,0,40307,0,1,1 +1773594098.531824,0.65,4,3992.50,55.41,1511.71,2169.56,0.00,0.000000,0.000000,205,0,0.000000,0.000674,14589780,11727331,0,0,40310,0,1,1 +1773594103.536120,0.75,4,3992.50,55.41,1511.71,2169.56,0.00,3515416460031.661133,0.000000,11,0,0.000000,0.000020,14589780,11727333,0,0,40312,0,1,1 +1773594108.536451,0.80,4,3992.50,55.41,1517.22,2169.52,0.00,25149.145293,25964.347328,1748728,2278123,0.000000,0.000030,14589780,11727336,0,0,40315,0,1,1 +1773594113.533986,1.05,4,3992.50,55.39,1518.06,2168.69,0.00,3520173185300.104980,3520173184484.446289,11,0,0.000000,0.000020,14589780,11727338,0,0,40317,0,1,1 +1773594118.533597,0.70,4,3992.50,55.40,1517.82,2168.92,0.00,25152.766815,25968.119056,1748728,2278157,0.000025,0.000061,14589782,11727343,0,0,40320,0,1,1 +1773594123.536049,0.70,4,3992.50,55.40,1517.82,2168.92,0.00,3516712232162.458008,3516712231347.568359,11,0,0.000117,0.000160,14589792,11727355,0,0,40322,0,1,1 +1773594128.536618,0.75,4,3992.50,55.40,1517.59,2169.16,0.00,0.180253,0.000000,205,0,0.000000,0.000030,14589792,11727358,0,0,40325,0,1,1 +1773594133.535864,0.65,4,3992.50,55.22,1524.76,2161.98,0.00,3518968319029.680664,0.000000,11,0,0.000000,0.000020,14589792,11727360,0,0,40327,0,1,1 +1773594138.531829,0.90,4,3992.50,55.33,1520.51,2166.37,0.00,1.657490,10.683817,251,357,0.000000,0.000030,14589792,11727363,0,0,40330,0,1,1 +1773594143.535661,38.84,4,3992.50,61.52,1278.13,2408.55,0.00,0.355880,3515742425351.471680,246,2,78.053818,0.045876,14597924,11730708,0,0,40332,0,1,1 +1773594148.532455,29.25,4,3992.50,61.61,1274.47,2412.21,0.00,3520694653648.244141,3520694653650.258301,11,0,118.639253,0.052596,14609949,11734769,0,0,40335,0,1,1 +1773594153.534462,28.59,4,3992.50,61.69,1271.46,2415.18,0.00,2.011498,0.000195,246,2,119.714339,0.048081,14621960,11738513,0,0,40337,0,1,1 +1773594158.532532,28.42,4,3992.50,61.85,1265.02,2421.67,0.00,0.000000,0.000000,246,2,118.205018,0.043801,14633853,11741963,0,0,40340,0,1,1 +1773594163.535778,28.75,4,3992.50,62.03,1258.15,2428.56,0.00,0.000000,0.000000,246,2,120.085245,0.042219,14646024,11745217,0,0,40342,0,1,1 +1773594168.536073,28.69,4,3992.50,61.58,1275.71,2410.98,0.00,25147.316911,25964.762272,1748728,2278378,118.755041,0.042979,14658000,11748562,0,0,40345,0,1,1 +1773594173.535716,29.18,4,3992.50,61.86,1268.55,2421.80,0.00,3518688605998.840332,3518688605181.288574,246,2,119.571218,0.041457,14670128,11751835,0,0,40347,0,1,1 +1773594178.531818,28.27,4,3992.50,61.62,1277.80,2412.53,0.00,3521181954016.960449,3521181954018.920410,75,0,119.456730,0.032986,14682246,11754386,0,0,40350,0,1,1 +1773594183.535991,16.26,4,3992.50,58.60,1396.23,2294.16,0.00,3515503327300.730469,0.000000,11,0,112.859321,0.037009,14693647,11757280,0,0,40352,0,1,1 +1773594188.531821,1.05,4,3992.50,57.08,1455.48,2234.92,0.00,25181.509071,25998.967176,1750228,2278841,0.003133,0.001580,14693706,11757322,0,0,40355,0,1,1 +1773594193.531904,1.60,4,3992.50,56.18,1490.78,2199.62,0.00,0.000000,0.031249,1750228,2278879,0.003281,0.002897,14693756,11757356,0,0,40357,0,1,1 +1773594198.533258,1.10,4,3992.50,55.92,1499.11,2189.55,0.00,3517484848619.008789,3517484847802.241699,205,0,0.000000,0.000030,14693756,11757359,0,0,40360,0,1,1 +1773594203.536370,0.55,4,3992.50,55.88,1500.69,2187.90,0.00,3516248884751.340332,0.000000,11,0,0.000000,0.000020,14693756,11757361,0,0,40362,0,1,1 +1773594208.531897,0.75,4,3992.50,55.87,1501.32,2187.26,0.00,1.657635,10.684753,251,357,0.000000,0.000030,14693756,11757364,0,0,40365,0,1,1 +1773594213.536583,0.65,4,3992.50,55.87,1501.33,2187.26,0.00,3515142947674.300781,3515142947665.290527,11,0,0.000000,0.000020,14693756,11757366,0,0,40367,0,1,1 +1773594218.535824,0.80,4,3992.50,55.87,1501.09,2187.50,0.00,0.000000,0.000000,11,0,0.000000,0.000020,14693756,11757368,0,0,40369,0,1,1 +1773594223.535292,0.60,4,3992.50,55.87,1501.09,2187.49,0.00,1.656329,10.676332,251,357,0.000000,0.000030,14693756,11757371,0,0,40372,0,1,1 +1773594228.535773,0.95,4,3992.50,56.36,1482.30,2206.64,0.00,3518098480027.490234,3518098480018.291504,205,0,0.000000,0.000674,14693756,11757378,0,0,40375,0,1,1 +1773594233.536058,0.75,4,3992.50,56.30,1484.43,2204.16,0.00,3518236653913.505371,0.000000,11,0,0.000076,0.000113,14693762,11757386,0,0,40377,0,1,1 +1773594238.535851,0.75,4,3992.50,56.29,1484.54,2204.05,0.00,1.656221,10.675637,251,357,0.000117,0.000170,14693772,11757399,0,0,40380,0,1,1 +1773594243.531823,0.70,4,3992.50,56.11,1491.95,2196.64,0.00,3521274573760.784668,3521274573751.758301,11,0,0.000000,0.000020,14693772,11757401,0,0,40382,0,1,1 +1773594248.531879,0.90,4,3992.50,56.09,1492.54,2196.05,0.00,25150.660742,25966.635053,1748739,2278645,0.000000,0.000030,14693772,11757404,0,0,40385,0,1,1 +1773594253.536653,33.77,4,3992.50,61.79,1269.47,2419.08,0.00,0.000000,0.009366,1748739,2278686,80.640235,0.036710,14702201,11760000,0,0,40387,0,1,1 +1773594258.531873,31.47,4,3992.50,62.44,1246.58,2444.59,0.00,3521803626515.604004,3521803625696.816406,246,2,122.486913,0.025028,14714650,11761868,0,0,40390,0,1,1 +1773594263.535814,28.61,4,3992.50,62.06,1258.78,2429.64,0.00,25129.127398,25946.651861,1748739,2278835,121.874026,0.020471,14727140,11763387,0,0,40392,0,1,1 +1773594268.536341,28.54,4,3992.50,61.95,1263.16,2425.41,0.00,9.560515,10.680905,1750228,2279204,120.158127,0.044224,14739298,11766843,0,0,40395,0,1,1 +1773594273.536420,28.33,4,3992.50,61.92,1264.25,2424.36,0.00,3518382213224.327637,3518382212416.082031,251,357,120.171267,0.044397,14751679,11770251,0,0,40397,0,1,1 +1773594278.531803,28.25,4,3992.50,62.24,1251.60,2437.00,0.00,25182.100976,25991.112816,1750228,2279217,119.903603,0.030024,14764025,11772597,0,0,40400,0,1,1 +1773594283.533600,28.28,4,3992.50,62.06,1259.01,2429.66,0.00,3517173007635.429688,3517173006818.439453,11,0,119.499191,0.028991,14776301,11774863,0,0,40402,0,1,1 +1773594288.531810,28.46,4,3992.50,62.04,1259.53,2429.06,0.00,0.000000,0.000000,11,0,119.211385,0.032324,14788616,11777387,0,0,40405,0,1,1 +1773594293.531815,13.45,4,3992.50,56.57,1477.66,2214.72,0.00,25160.550591,25978.059787,1750234,2279264,101.542727,0.030373,14799028,11779676,0,0,40407,0,1,1 +1773594298.534434,1.00,4,3992.50,56.13,1494.87,2197.52,0.00,0.067933,0.019911,1750239,2279299,0.003431,0.002016,14799094,11779729,0,0,40410,0,1,1 +1773594303.535820,0.80,4,3992.50,55.91,1503.43,2188.96,0.00,3517462531436.707031,3517462530619.472168,11,0,0.000000,0.000664,14799094,11779735,0,0,40412,0,1,1 +1773594308.536276,0.60,4,3992.50,55.95,1501.72,2190.67,0.00,0.053511,0.000000,75,0,0.001126,0.001231,14799103,11779752,0,0,40415,0,1,1 +1773594313.536042,0.80,4,3992.50,55.91,1503.38,2189.02,0.00,3518601713365.331055,0.000000,11,0,0.000000,0.000020,14799103,11779754,0,0,40417,0,1,1 +1773594318.535781,0.60,4,3992.50,55.77,1509.05,2183.33,0.00,0.180283,0.000000,205,0,0.000062,0.000080,14799107,11779761,0,0,40420,0,1,1 +1773594323.535198,1.00,4,3992.50,55.86,1505.16,2186.97,0.00,1.476051,10.676440,251,357,0.000000,0.000020,14799107,11779763,0,0,40422,0,1,1 +1773594328.531909,0.65,4,3992.50,55.67,1512.56,2179.57,0.00,3520753292777.910645,3520753292768.832031,75,0,0.000000,0.000030,14799107,11779766,0,0,40425,0,1,1 +1773594333.533350,0.65,4,3992.50,55.68,1512.32,2179.82,0.00,1.958225,0.000195,246,2,0.000000,0.000020,14799107,11779768,0,0,40427,0,1,1 +1773594338.536740,0.65,4,3992.50,55.68,1512.07,2180.07,0.00,3516053288184.843750,3516053288186.854980,11,0,0.000025,0.000061,14799109,11779773,0,0,40430,0,1,1 +1773594343.535801,0.70,4,3992.50,55.67,1512.66,2179.48,0.00,1.656463,10.677201,251,357,0.000140,0.000177,14799120,11779786,0,0,40432,0,1,1 +1773594348.534275,0.70,4,3992.50,55.70,1511.20,2180.92,0.00,3519511389098.031738,3519511389088.956543,75,0,0.000000,0.000030,14799120,11779789,0,0,40435,0,1,1 +1773594353.532336,0.85,4,3992.50,56.09,1496.27,2195.87,0.00,1.603258,10.679336,251,357,0.000031,0.000045,14799122,11779793,0,0,40437,0,1,1 +1773594358.535974,0.70,4,3992.50,56.07,1496.85,2195.29,0.00,3515879488825.184082,3515879488815.991211,205,0,0.000000,0.000030,14799122,11779796,0,0,40440,0,1,1 +1773594363.535592,30.84,4,3992.50,62.43,1247.62,2444.45,0.00,0.000000,0.000000,205,0,65.501728,0.027291,14806048,11781721,0,0,40442,0,1,1 +1773594368.531955,30.06,4,3992.50,62.12,1259.88,2432.12,0.00,3520997958870.201660,0.000000,75,0,118.250633,0.019226,14818194,11783077,0,0,40445,0,1,1 +1773594373.532016,27.76,4,3992.50,62.59,1241.66,2450.35,0.00,25160.286505,25978.244653,1750239,2279637,119.564630,0.018380,14830466,11784423,0,0,40447,0,1,1 +1773594378.532129,27.98,4,3992.50,62.16,1258.21,2433.82,0.00,3518357257723.313965,3518357257722.229492,1748750,2279295,118.759505,0.017979,14842395,11785737,0,0,40450,0,1,1 +1773594383.532169,28.68,4,3992.50,62.53,1240.92,2448.32,0.00,3518409142714.933594,3518409141898.110840,11,0,119.971098,0.045067,14854654,11789267,0,0,40452,0,1,1 +1773594388.536943,34.69,4,3992.50,61.65,1275.30,2413.90,0.00,0.000000,0.000000,11,0,118.252530,0.044480,14866711,11792708,0,0,40455,0,1,1 +1773594393.533021,28.18,4,3992.50,61.74,1272.09,2417.12,0.00,2.013884,0.000195,246,2,119.857256,0.040794,14878845,11795889,0,0,40457,0,1,1 +1773594398.536212,28.51,4,3992.50,61.89,1266.10,2423.10,0.00,3516193088656.895508,3516193088658.906738,11,0,118.485576,0.038147,14890876,11798893,0,0,40460,0,1,1 +1773594403.531793,19.07,4,3992.50,62.06,1259.39,2429.89,0.00,0.180433,0.000000,205,0,120.068289,0.043016,14902936,11802268,0,0,40462,0,1,1 +1773594408.535407,1.50,4,3992.50,57.41,1441.64,2247.61,0.00,3515896052820.091309,0.000000,11,0,6.807417,0.003054,14903684,11802436,0,0,40465,0,1,1 +1773594413.535291,0.75,4,3992.50,56.57,1474.54,2214.70,0.00,2.012351,0.000195,246,2,0.000000,0.000020,14903684,11802438,0,0,40467,0,1,1 +1773594418.531903,0.70,4,3992.50,56.27,1486.05,2203.19,0.00,3520823193301.230957,3520823193303.190918,75,0,0.000000,0.000020,14903684,11802440,0,0,40469,0,1,1 +1773594423.531826,1.10,4,3992.50,56.27,1486.21,2203.02,0.00,0.000000,0.000000,75,0,0.000000,0.000030,14903684,11802443,0,0,40472,0,1,1 +1773594428.536117,0.65,4,3992.50,56.27,1486.21,2203.02,0.00,1.957109,0.000195,246,2,0.000000,0.000030,14903684,11802446,0,0,40475,0,1,1 +1773594433.536038,0.70,4,3992.50,56.27,1486.21,2203.02,0.00,3518493285219.769531,3518493285221.782227,11,0,0.000000,0.000664,14903684,11802452,0,0,40477,0,1,1 +1773594438.536612,0.85,4,3992.50,56.36,1485.21,2206.71,0.00,0.000000,0.000000,11,0,0.000000,0.000030,14903684,11802455,0,0,40480,0,1,1 +1773594443.536357,0.65,4,3992.50,56.33,1486.04,2205.42,0.00,25152.500482,25969.881198,1748761,2279571,0.000000,0.000020,14903684,11802457,0,0,40482,0,1,1 +1773594448.533963,0.70,4,3992.50,56.31,1486.63,2204.83,0.00,3520121933097.876953,3520121932280.093262,75,0,0.000025,0.000061,14903686,11802462,0,0,40485,0,1,1 +1773594453.531880,0.60,4,3992.50,56.30,1487.25,2204.21,0.00,1.959606,0.000195,246,2,0.000117,0.000160,14903696,11802474,0,0,40487,0,1,1 +1773594458.531906,0.75,4,3992.50,56.30,1487.01,2204.46,0.00,3518418889881.395508,3518418889883.407715,11,0,0.000000,0.000030,14903696,11802477,0,0,40490,0,1,1 +1773594463.533102,0.60,4,3992.50,56.31,1486.79,2204.68,0.00,25154.758910,25973.034717,1750250,2279950,0.000000,0.000020,14903696,11802479,0,0,40492,0,1,1 +1773594468.531814,1.00,4,3992.50,56.23,1493.49,2201.65,0.00,3519344037736.214844,3519344036917.351562,205,0,0.000000,0.000030,14903696,11802482,0,0,40495,0,1,1 +1773594473.533020,27.44,4,3992.50,62.18,1260.75,2434.29,0.00,0.000000,0.000000,205,0,60.274371,0.028758,14910042,11804494,0,0,40497,0,1,1 +1773594478.535951,32.73,4,3992.50,62.14,1262.34,2432.75,0.00,25136.298917,25953.421332,1748761,2279674,123.700633,0.021662,14922787,11806082,0,0,40500,0,1,1 +1773594483.532387,29.19,4,3992.50,62.11,1263.23,2431.87,0.00,0.000000,0.009186,1748761,2279687,120.651666,0.026170,14935002,11808123,0,0,40502,0,1,1 +1773594488.535646,29.67,4,3992.50,62.31,1255.79,2439.38,0.00,0.000000,0.005075,1748761,2279697,121.102227,0.065276,14947513,11813222,0,0,40505,0,1,1 +1773594493.531788,28.87,4,3992.50,62.45,1249.97,2445.11,0.00,3521154430438.374512,3521154429629.333984,251,357,120.075834,0.069781,14959924,11818579,0,0,40507,0,1,1 +1773594498.536267,28.61,4,3992.50,62.53,1246.61,2448.34,0.00,0.355834,3515288110433.728516,246,2,119.673561,0.069984,14972356,11824003,0,0,40510,0,1,1 +1773594503.535793,29.38,4,3992.50,62.41,1253.49,2443.54,0.00,3518770344944.878418,3518770344946.837402,75,0,119.797739,0.078117,14985003,11830052,0,0,40512,0,1,1 +1773594508.532784,29.74,4,3992.50,62.14,1264.06,2432.94,0.00,0.126834,0.000000,205,0,119.252103,0.062584,14997598,11834974,0,0,40515,0,1,1 +1773594513.531850,18.78,4,3992.50,62.28,1258.76,2438.34,0.00,1.832374,0.000195,246,2,119.190265,0.032108,15009932,11837475,0,0,40517,0,1,1 +1773594518.531832,1.20,4,3992.50,56.00,1504.59,2192.50,0.00,0.000000,0.000000,246,2,1.805306,0.001861,15010185,11837561,0,0,40520,0,1,1 +1773594523.536268,0.80,4,3992.50,56.02,1503.88,2193.22,0.00,25127.047666,25946.188511,1748772,2279939,0.000645,0.000283,15010199,11837571,0,0,40522,0,1,1 +1773594528.531897,0.95,4,3992.50,56.21,1493.64,2200.83,0.00,3521515632127.437988,3521515631308.813477,75,0,0.000000,0.000030,15010199,11837574,0,0,40525,0,1,1 +1773594533.533340,0.65,4,3992.50,56.21,1493.42,2200.77,0.00,0.126721,0.000000,205,0,0.000000,0.000020,15010199,11837576,0,0,40527,0,1,1 +1773594538.536726,0.70,4,3992.50,56.01,1501.24,2192.95,0.00,1.830791,0.000195,246,2,0.000050,0.000092,15010203,11837583,0,0,40530,0,1,1 +1773594543.536627,0.65,4,3992.50,56.02,1501.05,2193.13,0.00,0.000000,0.000000,246,2,0.000000,0.000020,15010203,11837585,0,0,40532,0,1,1 +1773594548.535949,1.10,4,3992.50,56.02,1501.05,2193.13,0.00,25162.311168,25983.524982,1750261,2280366,0.000000,0.000030,15010203,11837588,0,0,40535,0,1,1 +1773594553.536114,0.70,4,3992.50,56.02,1501.05,2193.14,0.00,3518321158638.108887,3518321157819.045410,11,0,0.000000,0.000020,15010203,11837590,0,0,40537,0,1,1 +1773594558.536403,1.65,4,3992.50,56.41,1485.93,2208.39,0.00,2.012188,0.000195,246,2,0.000025,0.000061,15010205,11837595,0,0,40540,0,1,1 +1773594563.536115,0.65,4,3992.50,56.09,1498.29,2195.90,0.00,3518640227385.081055,3518640227387.039551,75,0,0.000084,0.000604,15010212,11837607,0,0,40542,0,1,1 +1773594568.536471,0.75,4,3992.50,56.10,1497.95,2196.24,0.00,25159.068253,25978.221034,1750261,2280410,0.000033,0.000230,15010215,11837614,0,0,40545,0,1,1 +1773594573.535617,0.85,4,3992.50,56.09,1498.30,2195.89,0.00,3519038328371.383301,3519038327552.085938,11,0,0.000512,0.001107,15010229,11837638,0,0,40547,0,1,1 +1773594578.531809,0.60,4,3992.50,56.09,1498.30,2195.89,0.00,2.013839,0.000195,246,2,0.000000,0.000030,15010229,11837641,0,0,40550,0,1,1 +1773594583.536674,24.84,4,3992.50,62.29,1255.25,2438.91,0.00,0.000000,0.000000,246,2,52.425865,0.033873,15015687,11840040,0,0,40552,0,1,1 +1773594588.536064,35.53,4,3992.50,62.46,1245.43,2445.53,0.00,3518866001001.513184,3518866001003.525879,11,0,122.784791,0.052587,15028218,11844103,0,0,40555,0,1,1 +1773594593.535547,31.23,4,3992.50,62.38,1248.62,2442.28,0.00,1.656324,10.676300,251,357,120.781737,0.049345,15040657,11847879,0,0,40557,0,1,1 +1773594598.533639,29.86,4,3992.50,62.49,1244.15,2446.75,0.00,0.356288,3519780290155.422852,246,2,120.811140,0.040320,15052911,11851000,0,0,40560,0,1,1 +1773594603.531800,30.01,4,3992.50,62.48,1244.51,2446.38,0.00,3519731690170.627930,3519731690172.641113,11,0,119.607414,0.039730,15065061,11854089,0,0,40562,0,1,1 +1773594608.534988,29.27,4,3992.50,62.37,1248.88,2442.07,0.00,25144.916908,25963.705011,1750273,2280590,119.686515,0.046854,15077153,11857734,0,0,40565,0,1,1 +1773594613.536080,29.54,4,3992.50,62.28,1252.39,2438.50,0.00,3517669157649.574707,3517669156839.460449,251,357,119.938242,0.046096,15089368,11861313,0,0,40567,0,1,1 +1773594618.536209,29.42,4,3992.50,62.28,1252.50,2438.54,0.00,0.000000,0.000000,251,357,119.559512,0.042562,15101410,11864635,0,0,40570,0,1,1 +1773594623.531902,20.51,4,3992.50,62.65,1238.11,2452.91,0.00,25171.417257,25981.558743,1748785,2280359,118.863445,0.048335,15113430,11868443,0,0,40572,0,1,1 +1773594628.536698,1.30,4,3992.50,57.37,1444.90,2246.06,0.00,3515065398726.035645,3515065397908.177734,205,0,11.007813,0.004962,15114632,11868754,0,0,40575,0,1,1 +1773594633.536413,0.70,4,3992.50,56.93,1462.21,2228.80,0.00,3518637546030.340332,0.000000,11,0,0.000008,0.000672,15114633,11868761,0,0,40577,0,1,1 +1773594638.535619,0.80,4,3992.50,56.71,1470.70,2220.31,0.00,0.053524,0.000000,75,0,0.000000,0.000030,15114633,11868764,0,0,40580,0,1,1 +1773594643.531895,0.60,4,3992.50,56.69,1471.60,2219.41,0.00,25170.232892,25989.457684,1748798,2280437,0.000031,0.000045,15114635,11868768,0,0,40582,0,1,1 +1773594648.531857,0.95,4,3992.50,56.65,1476.22,2218.08,0.00,3518463823428.649414,3518463822610.082031,11,0,0.000000,0.000030,15114635,11868771,0,0,40585,0,1,1 +1773594653.531833,0.75,4,3992.50,56.61,1477.82,2216.48,0.00,1.656160,10.675248,251,357,0.000031,0.000045,15114637,11868775,0,0,40587,0,1,1 +1773594658.531873,0.65,4,3992.50,56.61,1477.83,2216.48,0.00,3518409300155.473633,3518409300146.274414,205,0,0.000000,0.000030,15114637,11868778,0,0,40590,0,1,1 +1773594663.531750,0.80,4,3992.50,56.62,1477.59,2216.71,0.00,1.832076,0.000195,246,2,0.000000,0.000020,15114637,11868780,0,0,40592,0,1,1 +1773594668.536023,0.80,4,3992.50,56.62,1477.60,2216.71,0.00,3515432797675.232910,3515432797677.243652,11,0,0.000000,0.000030,15114637,11868783,0,0,40595,0,1,1 +1773594673.531837,0.70,4,3992.50,56.59,1478.60,2215.71,0.00,0.000000,0.000000,11,0,0.000126,0.000175,15114647,11868795,0,0,40597,0,1,1 +1773594678.531824,1.05,4,3992.50,56.94,1473.87,2229.18,0.00,25161.169521,25981.017047,1750287,2280922,0.000008,0.000038,15114648,11868799,0,0,40600,0,1,1 +1773594683.531898,0.80,4,3992.50,56.67,1475.57,2218.80,0.00,0.000000,0.000000,1750287,2280922,0.000000,0.000020,15114648,11868801,0,0,40602,0,1,1 +1773594688.536150,0.65,4,3992.50,56.67,1475.60,2218.78,0.00,3515447960356.579102,3515447959535.419434,246,2,0.000000,0.000030,15114648,11868804,0,0,40605,0,1,1 +1773594693.531793,28.81,4,3992.50,62.38,1251.91,2442.41,0.00,3521505512128.529297,3521505512130.543457,11,0,67.359535,0.031777,15121789,11871094,0,0,40607,0,1,1 +1773594698.531796,32.06,4,3992.50,62.50,1247.20,2447.11,0.00,25161.093338,25981.067385,1750287,2281070,122.176145,0.038269,15134459,11873936,0,0,40610,0,1,1 +1773594703.535538,29.99,4,3992.50,62.37,1252.50,2441.82,0.00,3515805801371.396484,3515805800551.854980,205,0,121.891856,0.061147,15147235,11878668,0,0,40612,0,1,1 +1773594708.534482,30.95,4,3992.50,62.52,1242.18,2447.79,0.00,3519179981790.532227,0.000000,11,0,120.403165,0.053176,15159717,11882843,0,0,40615,0,1,1 +1773594713.531932,29.31,4,3992.50,62.46,1244.64,2445.34,0.00,0.000000,0.000000,11,0,120.230840,0.033367,15172019,11885403,0,0,40617,0,1,1 +1773594718.534865,29.71,4,3992.50,62.21,1254.35,2435.61,0.00,0.180168,0.000000,205,0,119.297031,0.029809,15184235,11887730,0,0,40620,0,1,1 +1773594723.536258,31.10,4,3992.50,62.15,1256.47,2433.44,0.00,0.000000,0.000000,205,0,119.735907,0.032325,15196570,11890221,0,0,40622,0,1,1 +1773594728.532507,29.92,4,3992.50,62.42,1246.12,2443.78,0.00,0.000000,0.000000,205,0,119.457704,0.034943,15208807,11892906,0,0,40625,0,1,1 +1773594733.532311,17.68,4,3992.50,56.06,1495.29,2194.72,0.00,3518575586720.033203,0.000000,75,0,114.963574,0.029524,15220527,11895241,0,0,40627,0,1,1 +1773594738.534994,1.35,4,3992.50,56.50,1478.59,2211.97,0.00,1.957739,0.000195,246,2,0.003254,0.001703,15220596,11895293,0,0,40630,0,1,1 +1773594743.536594,0.70,4,3992.50,56.50,1478.46,2212.20,0.00,3517311633283.614746,10.671585,251,357,0.000008,0.000028,15220597,11895296,0,0,40632,0,1,1 +1773594748.536093,0.70,4,3992.50,56.50,1478.46,2212.20,0.00,3518789723347.355957,3518789723338.282715,75,0,0.000000,0.000030,15220597,11895299,0,0,40635,0,1,1 +1773594753.536445,0.70,4,3992.50,56.50,1478.46,2212.20,0.00,25149.876329,25969.162267,1748815,2280977,0.000000,0.000020,15220597,11895301,0,0,40637,0,1,1 +1773594758.533914,0.60,4,3992.50,56.50,1478.46,2212.20,0.00,3520218971429.686035,3520218970609.980957,11,0,0.000000,0.000030,15220597,11895304,0,0,40640,0,1,1 +1773594763.535998,0.75,4,3992.50,56.50,1478.47,2212.20,0.00,0.053493,0.000000,75,0,0.000000,0.000663,15220597,11895310,0,0,40642,0,1,1 +1773594768.531900,0.70,4,3992.50,56.19,1490.71,2199.95,0.00,0.000000,0.000000,75,0,0.000000,0.000043,15220597,11895314,0,0,40645,0,1,1 +1773594773.531843,0.95,4,3992.50,56.33,1488.01,2205.31,0.00,0.000000,0.000000,75,0,0.000000,0.000020,15220597,11895316,0,0,40647,0,1,1 +1773594778.531827,0.65,4,3992.50,56.33,1487.82,2205.53,0.00,0.126758,0.000000,205,0,0.000000,0.000030,15220597,11895319,0,0,40650,0,1,1 +1773594783.536105,0.70,4,3992.50,56.33,1487.82,2205.53,0.00,3515429422936.698242,0.000000,75,0,0.000126,0.000175,15220607,11895331,0,0,40652,0,1,1 +1773594788.536352,0.75,4,3992.50,56.33,1487.82,2205.53,0.00,25159.961683,25980.479289,1750304,2281410,0.000016,0.000046,15220609,11895336,0,0,40655,0,1,1 +1773594793.535917,0.75,4,3992.50,56.34,1487.59,2205.76,0.00,3518744044058.028809,3518744044056.917969,1748815,2281054,0.003281,0.002888,15220659,11895370,0,0,40657,0,1,1 +1773594798.536608,27.80,4,3992.50,62.86,1232.25,2460.96,0.00,3517950306444.990234,3517950305625.709473,11,0,52.471621,0.026963,15226225,11897237,0,0,40660,0,1,1 +1773594803.539539,31.89,4,3992.50,62.92,1229.67,2463.58,0.00,0.180168,0.000000,205,0,118.896628,0.024211,15238500,11899047,0,0,40662,0,1,1 +1773594808.535704,28.97,4,3992.50,62.90,1230.62,2462.64,0.00,1.833437,0.000195,246,2,119.457356,0.018915,15250763,11900462,0,0,40665,0,1,1 +1773594813.533360,30.01,4,3992.50,62.73,1237.24,2455.87,0.00,3520087732259.359863,10.680008,251,357,118.823889,0.032118,15263027,11902978,0,0,40667,0,1,1 +1773594818.533448,28.87,4,3992.50,62.73,1237.33,2455.89,0.00,25159.162313,25970.949920,1750304,2281668,119.571163,0.049086,15275340,11906806,0,0,40669,0,1,1 +1773594823.535589,29.61,4,3992.50,62.85,1232.56,2460.72,0.00,3516930935661.202148,3516930934849.748047,251,357,119.314858,0.029505,15287583,11909097,0,0,40672,0,1,1 +1773594828.532500,29.54,4,3992.50,62.62,1241.56,2451.68,0.00,25175.155053,25987.521417,1750304,2281698,119.041010,0.020657,15299920,11910674,0,0,40675,0,1,1 +1773594833.535654,28.72,4,3992.50,63.00,1226.56,2466.71,0.00,3516219042878.579102,3516219042877.540039,1748815,2281362,120.092436,0.029357,15312219,11912893,0,0,40677,0,1,1 +1773594838.531808,21.85,4,3992.50,62.88,1231.52,2461.80,0.00,9.569666,10.720551,1750305,2281744,118.652773,0.025198,15324212,11914861,0,0,40680,0,1,1 +1773594843.534117,2.50,4,3992.50,56.44,1483.73,2209.58,0.00,0.154616,0.190635,1750320,2281770,19.221434,0.005041,15326253,11915166,0,0,40682,0,1,1 +1773594848.536058,0.90,4,3992.50,56.48,1482.01,2211.30,0.00,3517072062449.220703,3517072061637.524902,251,357,0.000000,0.000030,15326253,11915169,0,0,40685,0,1,1 +1773594853.536969,0.65,4,3992.50,56.48,1482.16,2211.16,0.00,25155.173401,25967.070698,1750320,2281812,0.000000,0.000020,15326253,11915171,0,0,40687,0,1,1 +1773594858.531901,0.90,4,3992.50,56.82,1468.70,2224.62,0.00,3522007312925.081055,3522007312103.130371,75,0,0.000000,0.000030,15326253,11915174,0,0,40690,0,1,1 +1773594863.531909,0.75,4,3992.50,56.84,1467.89,2225.36,0.00,3518431786276.077637,0.000000,11,0,0.000000,0.000020,15326253,11915176,0,0,40692,0,1,1 +1773594868.534059,0.70,4,3992.50,56.65,1475.39,2217.86,0.00,25141.043928,25960.737280,1748831,2281517,0.000000,0.000030,15326253,11915179,0,0,40695,0,1,1 +1773594873.531833,1.10,4,3992.50,56.68,1473.92,2219.33,0.00,3520004002280.834961,3520004001460.423828,11,0,0.000513,0.001107,15326267,11915203,0,0,40697,0,1,1 +1773594878.531905,0.75,4,3992.50,56.68,1473.92,2219.33,0.00,0.053515,0.000000,75,0,0.000008,0.000038,15326268,11915207,0,0,40700,0,1,1 +1773594883.531899,0.65,4,3992.50,56.68,1474.13,2219.12,0.00,1.958791,0.000195,246,2,0.000000,0.000020,15326268,11915209,0,0,40702,0,1,1 +1773594888.536638,1.05,4,3992.50,57.11,1460.45,2236.06,0.00,3515105983717.304199,10.664893,251,357,0.000126,0.000185,15326278,11915222,0,0,40705,0,1,1 +1773594893.536041,0.75,4,3992.50,57.11,1460.07,2236.06,0.00,3518857511075.647949,3518857511066.447754,205,0,0.000000,0.000503,15326278,11915227,0,0,40707,0,1,1 +1773594898.534029,0.80,4,3992.50,57.11,1460.07,2236.05,0.00,3519853403596.718750,0.000000,11,0,0.001230,0.001416,15326287,11915245,0,0,40710,0,1,1 +1773594903.535838,0.75,4,3992.50,57.12,1459.87,2236.26,0.00,0.000000,0.000000,11,0,0.000008,0.000028,15326288,11915248,0,0,40712,0,1,1 +1773594908.532012,24.81,4,3992.50,63.11,1225.24,2470.84,0.00,25180.687158,26002.628816,1750320,2282031,44.501955,0.026588,15331072,11917033,0,0,40715,0,1,1 +1773594913.536048,32.21,4,3992.50,63.19,1221.98,2474.09,0.00,3515599520461.466309,3515599519649.827637,251,357,118.667904,0.033186,15343197,11919586,0,0,40717,0,1,1 +1773594918.532208,29.51,4,3992.50,63.33,1216.55,2479.52,0.00,3521141344024.884277,3521141344015.858398,11,0,119.660378,0.027220,15355529,11921654,0,0,40720,0,1,1 +1773594923.531820,30.06,4,3992.50,63.40,1230.61,2482.19,0.00,0.000000,0.000000,11,0,118.573378,0.040156,15367640,11924738,0,0,40722,0,1,1 +1773594928.535939,28.95,4,3992.50,63.28,1235.40,2477.38,0.00,2.010649,0.000195,246,2,119.663870,0.031531,15379806,11927219,0,0,40725,0,1,1 +1773594933.535844,29.30,4,3992.50,63.33,1233.34,2479.45,0.00,0.000000,0.000000,246,2,118.965690,0.041824,15391956,11930501,0,0,40727,0,1,1 +1773594938.536156,30.20,4,3992.50,63.47,1227.62,2485.14,0.00,3518217746680.191406,3518217746682.022949,205,0,119.360607,0.031894,15404263,11932977,0,0,40730,0,1,1 +1773594943.535503,30.72,4,3992.50,63.66,1220.27,2492.48,0.00,1.476072,10.676590,251,357,119.787229,0.030641,15416762,11935366,0,0,40732,0,1,1 +1773594948.535640,25.79,4,3992.50,63.39,1231.02,2481.84,0.00,3518340561473.836914,3518340561464.637695,205,0,118.560623,0.031599,15428944,11937819,0,0,40735,0,1,1 +1773594953.533415,1.40,4,3992.50,58.54,1421.53,2292.16,0.00,25172.571318,25994.811796,1750331,2282296,27.651620,0.007044,15431801,11938329,0,0,40737,0,1,1 +1773594958.532877,1.05,4,3992.50,57.20,1474.28,2239.41,0.00,3518816065907.730469,3518816065085.894043,75,0,0.001529,0.000702,15431830,11938351,0,0,40740,0,1,1 +1773594963.534067,0.75,4,3992.50,57.20,1474.05,2239.64,0.00,25155.507466,25977.204685,1750331,2282367,0.000000,0.000503,15431830,11938356,0,0,40742,0,1,1 +1773594968.535929,0.65,4,3992.50,57.21,1473.80,2239.89,0.00,3517127705025.234375,3517127704212.716309,251,357,0.000000,0.000191,15431830,11938360,0,0,40745,0,1,1 +1773594973.535838,0.70,4,3992.50,57.21,1473.80,2239.88,0.00,25150.790757,25962.543227,1748842,2282018,0.000000,0.000020,15431830,11938362,0,0,40747,0,1,1 +1773594978.536573,0.85,4,3992.50,57.26,1470.34,2241.77,0.00,3517919932706.341309,3517919931885.524902,205,0,0.000000,0.000030,15431830,11938365,0,0,40750,0,1,1 +1773594983.536034,0.85,4,3992.50,57.28,1469.61,2242.51,0.00,3518816910340.546875,0.000000,11,0,0.000000,0.000020,15431830,11938367,0,0,40752,0,1,1 +1773594988.536433,0.95,4,3992.50,57.28,1469.61,2242.50,0.00,0.000000,0.000000,11,0,0.000000,0.000030,15431830,11938370,0,0,40755,0,1,1 +1773594993.531736,0.70,4,3992.50,57.18,1473.38,2238.73,0.00,0.000000,0.000000,11,0,0.000000,0.000020,15431830,11938372,0,0,40757,0,1,1 +1773594998.534156,0.85,4,3992.50,57.19,1473.13,2238.98,0.00,0.000000,0.000000,11,0,0.000075,0.000123,15431836,11938381,0,0,40760,0,1,1 +1773595003.534628,0.65,4,3992.50,57.22,1471.70,2240.41,0.00,25149.616661,25970.406126,1748842,2282096,0.000066,0.000098,15431842,11938389,0,0,40762,0,1,1 +1773595008.535499,0.95,4,3992.50,57.16,1471.39,2237.91,0.00,3517823869434.271484,3517823868611.536133,246,2,0.000000,0.000030,15431842,11938392,0,0,40765,0,1,1 +1773595013.536625,0.75,4,3992.50,57.16,1470.47,2238.12,0.00,25153.875532,25977.728243,1750331,2282483,0.000000,0.000020,15431842,11938394,0,0,40767,0,1,1 +1773595018.532793,22.64,4,3992.50,63.16,1235.69,2472.81,0.00,3521135777958.169922,3521135777144.539551,251,357,34.679156,0.020447,15435569,11939822,0,0,40769,0,1,1 +1773595023.534829,35.26,4,3992.50,63.06,1239.60,2468.95,0.00,3517005323470.188965,3517005323461.173828,11,0,118.119661,0.026406,15447877,11941811,0,0,40772,0,1,1 +1773595028.533026,29.40,4,3992.50,63.60,1218.57,2489.95,0.00,0.053535,0.000000,75,0,119.012002,0.030493,15460205,11944152,0,0,40775,0,1,1 +1773595033.531800,29.44,4,3992.50,63.37,1227.32,2481.14,0.00,1.603030,10.677813,251,357,119.394110,0.024285,15472411,11945982,0,0,40777,0,1,1 +1773595038.535126,29.51,4,3992.50,63.85,1209.10,2500.02,0.00,3516097854747.357422,3516097854738.344727,11,0,118.857988,0.019117,15484464,11947436,0,0,40780,0,1,1 +1773595043.531808,30.29,4,3992.50,63.43,1225.14,2483.30,0.00,0.180393,0.000000,205,0,119.467010,0.020583,15496494,11948993,0,0,40782,0,1,1 +1773595048.536355,30.40,4,3992.50,63.53,1221.21,2487.31,0.00,0.000000,0.000000,205,0,118.854239,0.021945,15508524,11950705,0,0,40785,0,1,1 +1773595053.531791,29.66,4,3992.50,63.09,1238.39,2470.11,0.00,3521651898106.418457,0.000000,11,0,119.492921,0.080789,15520993,11957022,0,0,40787,0,1,1 +1773595058.535613,28.13,4,3992.50,63.25,1232.16,2476.39,0.00,2.010768,0.000195,246,2,119.491828,0.071345,15533553,11962555,0,0,40790,0,1,1 +1773595063.535806,1.35,4,3992.50,58.13,1432.41,2276.11,0.00,25149.099116,25972.351571,1748853,2282457,38.057610,0.015862,15537603,11963720,0,0,40792,0,1,1 +1773595068.536294,1.10,4,3992.50,57.64,1451.70,2256.83,0.00,3518093568014.238281,3518093567193.045898,11,0,0.000013,0.000030,15537604,11963723,0,0,40795,0,1,1 +1773595073.535901,0.70,4,3992.50,57.30,1465.08,2243.43,0.00,0.000000,0.000000,11,0,0.000000,0.000020,15537604,11963725,0,0,40797,0,1,1 +1773595078.536389,0.75,4,3992.50,57.30,1465.12,2243.38,0.00,0.000000,0.000000,11,0,0.000000,0.000030,15537604,11963728,0,0,40800,0,1,1 +1773595083.531820,0.70,4,3992.50,57.30,1465.09,2243.42,0.00,25175.087541,25997.366713,1748854,2282559,0.000000,0.000020,15537604,11963730,0,0,40802,0,1,1 +1773595088.535810,0.70,4,3992.50,57.33,1464.10,2244.41,0.00,3515631927423.870117,3515631926612.009277,251,357,0.000000,0.000030,15537604,11963733,0,0,40805,0,1,1 +1773595093.536535,0.85,4,3992.50,57.29,1465.43,2243.07,0.00,3517927036992.063477,3517927036982.865723,205,0,0.002173,0.001511,15537648,11963764,0,0,40807,0,1,1 +1773595098.531819,0.90,4,3992.50,57.46,1464.45,2249.65,0.00,25175.646034,25998.186088,1748854,2282592,0.000016,0.000207,15537650,11963770,0,0,40810,0,1,1 +1773595103.531815,0.60,4,3992.50,57.46,1464.26,2249.79,0.00,3518440025223.463379,3518440024401.698730,205,0,0.000000,0.000020,15537650,11963772,0,0,40812,0,1,1 +1773595108.536212,0.70,4,3992.50,57.47,1463.80,2250.25,0.00,3515346172024.650391,0.000000,11,0,0.000063,0.000123,15537655,11963781,0,0,40815,0,1,1 +1773595113.535353,0.70,4,3992.50,57.49,1463.31,2250.74,0.00,0.180304,0.000000,205,0,0.000013,0.000020,15537656,11963783,0,0,40817,0,1,1 +1773595118.531808,0.70,4,3992.50,57.49,1463.31,2250.74,0.00,25179.314177,26002.800355,1750343,2282980,0.000000,0.000030,15537656,11963786,0,0,40820,0,1,1 +1773595123.536684,0.70,4,3992.50,57.49,1463.31,2250.74,0.00,0.000000,0.003902,1750343,2282984,0.000000,0.000020,15537656,11963788,0,0,40822,0,1,1 +1773595128.535565,19.62,4,3992.50,63.56,1223.75,2488.52,0.00,3519224652281.864746,3519224652280.889648,1748854,2282758,26.247548,0.019120,15540510,11965062,0,0,40825,0,1,1 +1773595133.533467,32.93,4,3992.50,63.46,1225.64,2484.64,0.00,3519914386203.232910,3519914385390.159180,251,357,119.216651,0.040134,15552754,11968106,0,0,40827,0,1,1 +1773595138.532462,29.20,4,3992.50,63.43,1226.76,2483.52,0.00,3519144349266.283203,3519144349257.208984,75,0,119.189087,0.020601,15564934,11969627,0,0,40830,0,1,1 +1773595143.533549,28.69,4,3992.50,63.39,1228.39,2481.88,0.00,0.126730,0.000000,205,0,119.139411,0.019858,15577167,11971127,0,0,40832,0,1,1 +1773595148.531897,29.26,4,3992.50,63.36,1229.54,2480.79,0.00,25169.778466,25993.306118,1750343,2283262,119.201962,0.016470,15589303,11972398,0,0,40835,0,1,1 +1773595153.533952,30.31,4,3992.50,63.29,1232.42,2477.82,0.00,3516991555294.291992,3516991554469.543457,246,2,119.714332,0.026823,15601407,11974453,0,0,40837,0,1,1 +1773595158.531863,30.51,4,3992.50,63.56,1221.91,2488.34,0.00,0.000000,0.000000,246,2,118.611433,0.022676,15613386,11976168,0,0,40840,0,1,1 +1773595163.532301,30.01,4,3992.50,63.56,1225.93,2488.37,0.00,3518128825189.794434,10.674064,251,357,120.151224,0.017427,15625454,11977477,0,0,40842,0,1,1 +1773595168.531815,28.87,4,3992.50,63.58,1225.41,2489.16,0.00,0.000000,0.000000,251,357,118.773523,0.027492,15637500,11979595,0,0,40845,0,1,1 +1773595173.531836,1.71,4,3992.50,56.98,1483.60,2230.95,0.00,3518422558873.746582,3518422558864.674316,75,0,45.265412,0.013437,15642159,11980496,0,0,40847,0,1,1 +1773595178.531897,0.65,4,3992.50,57.01,1482.63,2231.93,0.00,3518394323174.741211,0.000000,11,0,0.000176,0.000191,15642162,11980501,0,0,40850,0,1,1 +1773595183.536604,0.65,4,3992.50,57.01,1482.63,2231.93,0.00,0.180104,0.000000,205,0,0.000000,0.000020,15642162,11980503,0,0,40852,0,1,1 +1773595188.531815,0.90,4,3992.50,57.23,1464.95,2240.71,0.00,1.833787,0.000195,246,2,0.000000,0.000030,15642162,11980506,0,0,40855,0,1,1 +1773595193.536487,0.70,4,3992.50,57.23,1464.91,2240.71,0.00,3515152617935.584473,3515152617937.595215,11,0,0.000000,0.000020,15642162,11980508,0,0,40857,0,1,1 +1773595198.535764,0.80,4,3992.50,57.25,1464.18,2241.45,0.00,25155.853628,25978.261695,1748865,2283112,0.000308,0.000584,15642169,11980522,0,0,40860,0,1,1 +1773595203.531834,0.70,4,3992.50,57.29,1462.78,2242.85,0.00,3521205090374.017090,3521205089551.027832,75,0,0.000000,0.000020,15642169,11980524,0,0,40862,0,1,1 +1773595208.534643,0.65,4,3992.50,57.29,1462.78,2242.85,0.00,1.601737,10.669202,251,357,0.001134,0.001239,15642179,11980542,0,0,40865,0,1,1 +1773595213.531809,0.65,4,3992.50,57.09,1470.42,2235.21,0.00,25164.839132,25978.704990,1748874,2283158,0.000000,0.000020,15642179,11980544,0,0,40867,0,1,1 +1773595218.531897,0.90,4,3992.50,56.99,1468.31,2231.28,0.00,0.000000,0.035156,1748874,2283173,0.000163,0.000204,15642191,11980559,0,0,40870,0,1,1 +1773595223.531830,0.75,4,3992.50,57.01,1467.61,2232.02,0.00,3518484601644.430176,3518484600821.780273,205,0,0.000025,0.000051,15642193,11980563,0,0,40872,0,1,1 +1773595228.535771,0.75,4,3992.50,56.62,1482.89,2216.73,0.00,3515666403907.574707,0.000000,11,0,0.000000,0.000673,15642193,11980570,0,0,40875,0,1,1 +1773595233.531898,0.65,4,3992.50,56.65,1481.66,2217.96,0.00,25181.294065,26005.533898,1750363,2283561,0.000000,0.000020,15642193,11980572,0,0,40877,0,1,1 +1773595238.532356,17.18,4,3992.50,63.24,1223.45,2476.10,0.00,3518115485834.191406,3518115485010.611816,75,0,17.828203,0.016513,15644178,11981618,0,0,40880,0,1,1 +1773595243.535616,33.48,4,3992.50,63.27,1222.21,2477.35,0.00,25145.341518,25968.574248,1750364,2283688,118.288891,0.024084,15656364,11983416,0,0,40882,0,1,1 +1773595248.537337,29.07,4,3992.50,63.66,1208.19,2492.36,0.00,3517227124639.344238,3517227123815.911133,11,0,119.943271,0.068607,15668909,11988672,0,0,40885,0,1,1 +1773595253.535720,29.06,4,3992.50,63.19,1225.62,2473.92,0.00,1.656688,10.678649,251,357,118.824059,0.074453,15681390,11994411,0,0,40887,0,1,1 +1773595258.535532,29.36,4,3992.50,63.50,1213.43,2486.14,0.00,3518569198856.812500,3518569198847.739746,75,0,119.595965,0.096782,15694019,12001988,0,0,40890,0,1,1 +1773595263.531819,29.40,4,3992.50,63.06,1230.46,2469.04,0.00,1.603828,10.683129,251,357,118.879071,0.098841,15706583,12009693,0,0,40892,0,1,1 +1773595268.536589,29.36,4,3992.50,63.11,1228.47,2471.07,0.00,0.000000,0.000000,251,357,119.480887,0.102240,15719320,12017658,0,0,40895,0,1,1 +1773595273.535239,30.26,4,3992.50,63.08,1229.73,2469.81,0.00,0.000000,0.000000,251,357,119.939756,0.103488,15732100,12025731,0,0,40897,0,1,1 +1773595278.531822,29.62,4,3992.50,63.54,1211.86,2487.65,0.00,3520843197501.446777,3520843197492.421875,11,0,118.562727,0.101133,15744674,12033587,0,0,40900,0,1,1 +1773595283.531816,2.56,4,3992.50,58.12,1424.23,2275.38,0.00,0.000000,0.000000,11,0,54.288407,0.045876,15750454,12037137,0,0,40902,0,1,1 +1773595288.536286,0.90,4,3992.50,57.64,1442.75,2256.85,0.00,0.000000,0.000000,11,0,0.002898,0.001164,15750508,12037174,0,0,40905,0,1,1 +1773595293.531887,0.65,4,3992.50,57.15,1461.97,2237.64,0.00,0.000000,0.000000,11,0,0.000000,0.000664,15750508,12037180,0,0,40907,0,1,1 +1773595298.535156,0.80,4,3992.50,56.93,1470.67,2228.94,0.00,0.000000,0.000000,11,0,0.000000,0.000030,15750508,12037183,0,0,40910,0,1,1 +1773595303.531819,0.70,4,3992.50,56.92,1470.94,2228.67,0.00,0.053551,0.000000,75,0,0.000000,0.000020,15750508,12037185,0,0,40912,0,1,1 +1773595308.535547,0.90,4,3992.50,57.31,1458.07,2243.71,0.00,0.126663,0.000000,205,0,0.000000,0.000030,15750508,12037188,0,0,40915,0,1,1 +1773595313.531800,0.70,4,3992.50,57.09,1464.28,2235.33,0.00,3521075938402.071777,0.000000,75,0,0.000013,0.000020,15750509,12037190,0,0,40917,0,1,1 +1773595318.536468,0.65,4,3992.50,57.01,1467.53,2232.08,0.00,3515155676077.550293,0.000000,11,0,0.000000,0.000030,15750509,12037193,0,0,40920,0,1,1 +1773595323.536305,0.75,4,3992.50,57.02,1467.06,2232.54,0.00,0.000000,0.000000,11,0,0.000000,0.000020,15750509,12037195,0,0,40922,0,1,1 +1773595328.536550,0.70,4,3992.50,57.03,1466.82,2232.79,0.00,25151.075871,25974.202907,1748885,2283635,0.000025,0.000061,15750511,12037200,0,0,40925,0,1,1 +1773595333.532750,0.70,4,3992.50,56.87,1473.06,2226.55,0.00,0.000000,0.003909,1748885,2283639,0.000117,0.000160,15750521,12037212,0,0,40927,0,1,1 +1773595338.535814,1.05,4,3992.50,57.02,1465.91,2232.48,0.00,3516281878050.664062,3516281877227.816895,205,0,0.000000,0.000030,15750521,12037215,0,0,40930,0,1,1 +1773595343.535771,0.70,4,3992.50,57.03,1465.45,2232.95,0.00,25161.909751,25986.419102,1750374,2284019,0.000000,0.000020,15750521,12037217,0,0,40932,0,1,1 +1773595348.533253,14.39,4,3992.50,63.21,1221.65,2474.66,0.00,3520210129808.799316,3520210128984.008789,75,0,7.418120,0.011140,15751433,12037935,0,0,40935,0,1,1 +1773595353.532528,35.13,4,3992.50,63.51,1211.80,2486.52,0.00,0.000000,0.000000,75,0,120.185661,0.026687,15763800,12039913,0,0,40937,0,1,1 +1773595358.535673,28.75,4,3992.50,63.55,1210.29,2488.01,0.00,0.000000,0.000000,75,0,119.490803,0.019505,15776060,12041302,0,0,40940,0,1,1 +1773595363.537355,28.63,4,3992.50,63.44,1214.56,2483.78,0.00,25153.353426,25977.632919,1750374,2284187,118.731078,0.036949,15788290,12044132,0,0,40942,0,1,1 +1773595368.535647,29.44,4,3992.50,63.38,1216.97,2481.35,0.00,3519639575665.883301,3519639574839.085449,246,2,119.816698,0.047450,15800785,12047850,0,0,40945,0,1,1 +1773595373.531855,29.64,4,3992.50,63.43,1224.85,2483.27,0.00,3521107982666.304199,3521107982668.264160,75,0,118.664678,0.050325,15813118,12051754,0,0,40947,0,1,1 +1773595378.537387,28.93,4,3992.50,63.63,1216.90,2491.30,0.00,3514548630740.566406,0.000000,11,0,120.033663,0.037468,15825378,12054697,0,0,40950,0,1,1 +1773595383.535589,28.96,4,3992.50,63.47,1223.17,2485.03,0.00,2.013029,0.000195,246,2,118.811642,0.026827,15837696,12056759,0,0,40952,0,1,1 +1773595388.535529,29.32,4,3992.50,63.59,1218.35,2489.79,0.00,3518479213893.488281,3518479213895.446777,75,0,119.572373,0.041533,15849996,12059972,0,0,40955,0,1,1 +1773595393.532376,4.42,4,3992.50,58.13,1432.30,2275.93,0.00,1.960025,0.000195,246,2,62.729629,0.019473,15856434,12061289,0,0,40957,0,1,1 +1773595398.536344,1.30,4,3992.50,57.49,1455.99,2251.03,0.00,3515647387990.385742,3515647387992.342773,75,0,0.003092,0.001436,15856491,12061329,0,0,40960,0,1,1 +1773595403.536089,0.60,4,3992.50,57.49,1455.86,2250.96,0.00,1.958889,0.000195,246,2,0.000000,0.000020,15856491,12061331,0,0,40962,0,1,1 +1773595408.531889,0.65,4,3992.50,57.49,1455.88,2250.94,0.00,3521395145589.531250,3521395145591.545410,11,0,0.000000,0.000030,15856491,12061334,0,0,40965,0,1,1 +1773595413.531898,0.70,4,3992.50,57.30,1463.52,2243.30,0.00,0.000000,0.000000,11,0,0.000000,0.000020,15856491,12061336,0,0,40967,0,1,1 +1773595418.531822,1.55,4,3992.50,57.30,1463.28,2243.54,0.00,1.656178,10.675358,251,357,0.000000,0.000030,15856491,12061339,0,0,40970,0,1,1 +1773595423.531821,0.60,4,3992.50,57.30,1463.28,2243.54,0.00,25150.730461,25965.527803,1748896,2284060,0.000000,0.000664,15856491,12061345,0,0,40972,0,1,1 +1773595428.531900,0.95,4,3992.50,57.30,1459.86,2243.50,0.00,3518381043035.546387,3518381042211.743164,11,0,0.000000,0.000030,15856491,12061348,0,0,40975,0,1,1 +1773595433.531784,0.75,4,3992.50,57.31,1459.66,2243.73,0.00,0.180278,0.000000,205,0,0.000000,0.000020,15856491,12061350,0,0,40977,0,1,1 +1773595438.535945,0.70,4,3992.50,57.31,1459.66,2243.73,0.00,25140.836017,25965.345229,1750385,2284479,0.000075,0.000123,15856497,12061359,0,0,40980,0,1,1 +1773595443.536309,0.70,4,3992.50,57.31,1459.66,2243.73,0.00,3518181438668.847656,3518181437843.893066,11,0,0.000117,0.000160,15856507,12061371,0,0,40982,0,1,1 +1773595448.531816,0.95,4,3992.50,57.11,1467.26,2236.13,0.00,0.000000,0.000000,11,0,0.000000,0.000030,15856507,12061374,0,0,40985,0,1,1 +1773595453.533235,0.60,4,3992.50,57.11,1467.33,2236.06,0.00,0.053500,0.000000,75,0,0.000000,0.000020,15856507,12061376,0,0,40987,0,1,1 +1773595458.535918,9.26,4,3992.50,63.38,1222.64,2481.41,0.00,1.601777,10.669469,251,357,1.606828,0.005746,15856838,12061616,0,0,40990,0,1,1 +1773595463.531843,38.52,4,3992.50,63.35,1223.85,2480.17,0.00,25171.238447,25986.987423,1748896,2284330,115.454508,0.045782,15868608,12065108,0,0,40992,0,1,1 +1773595468.535580,28.91,4,3992.50,63.28,1226.51,2477.51,0.00,9.554384,10.673860,1750385,2284704,118.678690,0.035981,15880766,12067844,0,0,40995,0,1,1 +1773595473.532405,28.70,4,3992.50,63.40,1221.59,2482.39,0.00,3520672705973.687012,3520672705147.758789,205,0,120.042907,0.033159,15893018,12070331,0,0,40997,0,1,1 +1773595478.536077,28.75,4,3992.50,63.70,1209.88,2494.12,0.00,1.474796,10.667359,251,357,118.878388,0.024138,15905175,12072184,0,0,41000,0,1,1 +1773595483.532193,29.10,4,3992.50,63.54,1216.24,2487.76,0.00,25170.278944,25986.014808,1748896,2284382,119.658451,0.022887,15917295,12073910,0,0,41002,0,1,1 +1773595488.536124,28.26,4,3992.50,63.61,1213.68,2490.39,0.00,3515672730808.383789,3515672729984.910156,11,0,119.016322,0.031223,15929282,12076338,0,0,41005,0,1,1 +1773595493.532542,30.50,4,3992.50,63.64,1218.36,2491.49,0.00,0.000000,0.000000,11,0,119.298632,0.021985,15941341,12077979,0,0,41007,0,1,1 +1773595498.531766,29.49,4,3992.50,63.30,1231.29,2478.42,0.00,1.656409,10.676852,251,357,119.382128,0.026958,15953489,12080030,0,0,41009,0,1,1 +1773595503.531807,7.52,4,3992.50,58.73,1410.55,2299.38,0.00,0.356149,3518408026492.671387,246,2,73.500133,0.017757,15960966,12081428,0,0,41012,0,1,1 +1773595508.535847,1.05,4,3992.50,57.91,1442.43,2267.49,0.00,3515596981985.681152,3515596981987.511719,205,0,0.003296,0.001968,15961030,12081479,0,0,41015,0,1,1 +1773595513.536232,0.70,4,3992.50,57.32,1465.68,2244.25,0.00,3518165804907.431641,0.000000,11,0,0.000000,0.000020,15961030,12081481,0,0,41017,0,1,1 +1773595518.531897,0.95,4,3992.50,57.32,1466.11,2244.10,0.00,0.000000,0.000000,11,0,0.000062,0.000080,15961034,12081488,0,0,41020,0,1,1 +1773595523.536742,0.60,4,3992.50,57.11,1473.79,2236.14,0.00,1.654549,10.664861,251,357,0.000000,0.000020,15961034,12081490,0,0,41022,0,1,1 +1773595528.535982,0.85,4,3992.50,57.12,1473.57,2236.36,0.00,0.000000,0.000000,251,357,0.000000,0.000030,15961034,12081493,0,0,41025,0,1,1 +1773595533.533505,0.70,4,3992.50,57.12,1473.57,2236.36,0.00,25163.349481,25979.218592,1748910,2284601,0.000000,0.000020,15961034,12081495,0,0,41027,0,1,1 +1773595538.535807,0.70,4,3992.50,57.12,1473.56,2236.37,0.00,3516817987273.682617,3516817986449.577637,11,0,0.000000,0.000020,15961034,12081497,0,0,41029,0,1,1 +1773595543.535940,0.60,4,3992.50,57.07,1475.54,2234.39,0.00,0.000000,0.000000,11,0,0.000031,0.000055,15961036,12081502,0,0,41032,0,1,1 +1773595548.532413,0.95,4,3992.50,57.20,1469.42,2239.47,0.00,25170.296684,25995.493254,1748911,2284626,0.000033,0.000069,15961039,12081508,0,0,41035,0,1,1 +1773595553.536767,0.65,4,3992.50,57.13,1471.71,2236.71,0.00,3515375735808.259766,3515375734984.362793,11,0,0.000132,0.000169,15961049,12081520,0,0,41037,0,1,1 +1773595558.536322,0.70,4,3992.50,57.12,1471.99,2236.44,0.00,0.053520,0.000000,75,0,0.000000,0.000674,15961049,12081527,0,0,41040,0,1,1 +1773595563.536194,0.70,4,3992.50,57.15,1470.77,2237.66,0.00,3518527045323.078125,0.000000,11,0,0.000000,0.000020,15961049,12081529,0,0,41042,0,1,1 +1773595568.536556,1.90,4,3992.50,61.07,1317.26,2391.01,0.00,25160.287153,25985.987542,1750400,2285036,0.003572,0.003632,15961110,12081580,0,0,41045,0,1,1 +1773595573.535549,42.89,4,3992.50,63.62,1217.43,2490.93,0.00,3519145500437.180664,3519145499620.275391,251,357,108.374391,0.049006,15972311,12085357,0,0,41047,0,1,1 +1773595578.531736,29.82,4,3992.50,63.88,1209.57,2500.88,0.00,25179.652103,25997.200692,1750400,2285173,119.657888,0.045679,15984490,12088837,0,0,41050,0,1,1 +1773595583.536184,29.96,4,3992.50,63.84,1210.56,2499.66,0.00,3515310372795.583008,3515310371970.373047,11,0,118.458265,0.041663,15996554,12092035,0,0,41052,0,1,1 +1773595588.532561,29.63,4,3992.50,63.45,1226.09,2484.14,0.00,2.013764,0.000195,246,2,119.849205,0.039236,16008587,12095074,0,0,41055,0,1,1 +1773595593.535561,29.18,4,3992.50,63.75,1214.32,2495.94,0.00,3516327818677.530762,3516327818679.487793,75,0,119.090613,0.049747,16020592,12098960,0,0,41057,0,1,1 +1773595598.535118,28.76,4,3992.50,63.63,1218.96,2491.23,0.00,0.000000,0.000000,75,0,119.172508,0.039899,16032571,12102044,0,0,41060,0,1,1 +1773595603.534176,28.63,4,3992.50,63.64,1218.67,2491.60,0.00,0.126782,0.000000,205,0,119.984722,0.030831,16044605,12104418,0,0,41062,0,1,1 +1773595608.536228,29.07,4,3992.50,63.76,1210.65,2496.49,0.00,0.000000,0.000000,205,0,118.313178,0.040380,16056525,12107582,0,0,41065,0,1,1 +1773595613.531899,9.14,4,3992.50,57.83,1442.93,2264.27,0.00,25174.314073,26000.190025,1748926,2284953,82.584458,0.032983,16064836,12110130,0,0,41067,0,1,1 +1773595618.536219,0.80,4,3992.50,57.26,1465.21,2241.99,0.00,3515399586008.956055,3515399585182.677246,246,2,0.001535,0.000697,16064866,12110152,0,0,41070,0,1,1 +1773595623.536659,0.65,4,3992.50,57.19,1468.17,2239.04,0.00,3518128385460.634766,3518128385462.646973,11,0,0.000000,0.000664,16064866,12110158,0,0,41072,0,1,1 +1773595628.536549,0.65,4,3992.50,57.22,1467.04,2240.17,0.00,25162.812439,25988.968928,1750415,2285371,0.000000,0.000030,16064866,12110161,0,0,41075,0,1,1 +1773595633.531812,0.75,4,3992.50,57.03,1474.20,2233.01,0.00,3521773370906.530273,3521773370088.635742,251,357,0.000000,0.000020,16064866,12110163,0,0,41077,0,1,1 +1773595638.532598,1.00,4,3992.50,57.77,1445.73,2261.72,0.00,25156.652029,25973.717986,1750415,2285405,0.000000,0.000030,16064866,12110166,0,0,41080,0,1,1 +1773595643.531803,0.75,4,3992.50,57.43,1458.71,2248.50,0.00,0.000000,0.004688,1750415,2285410,0.000000,0.000020,16064866,12110168,0,0,41082,0,1,1 +1773595648.534998,0.60,4,3992.50,57.21,1467.32,2239.88,0.00,3516189753374.557617,3516189752548.867188,11,0,0.000000,0.000030,16064866,12110171,0,0,41085,0,1,1 +1773595653.536527,0.70,4,3992.50,57.21,1467.32,2239.88,0.00,25154.572070,25980.653235,1750416,2285441,0.000000,0.000020,16064866,12110173,0,0,41087,0,1,1 +1773595658.531897,0.80,4,3992.50,57.16,1469.43,2237.77,0.00,3521698428399.479980,3521698428398.368164,1748927,2285085,0.000076,0.000123,16064872,12110182,0,0,41090,0,1,1 +1773595663.531893,0.60,4,3992.50,57.19,1467.97,2239.23,0.00,3518439866892.922852,3518439866067.519043,205,0,0.000066,0.000098,16064878,12110190,0,0,41092,0,1,1 +1773595668.531804,0.80,4,3992.50,57.39,1461.66,2246.82,0.00,25152.966571,25978.421174,1748927,2285105,0.000000,0.000030,16064878,12110193,0,0,41095,0,1,1 +1773595673.531896,0.70,4,3992.50,57.40,1460.94,2247.29,0.00,3518372853099.591797,3518372852272.335449,246,2,0.000000,0.000020,16064878,12110195,0,0,41097,0,1,1 +1773595678.536585,1.00,4,3992.50,57.42,1460.24,2247.98,0.00,3515140332048.746094,3515140332050.703125,75,0,0.001369,0.000734,16064900,12110214,0,0,41100,0,1,1 +1773595683.536271,40.63,4,3992.50,63.70,1214.01,2494.11,0.00,25163.788110,25990.368916,1750416,2285593,99.748650,0.032997,16075230,12112591,0,0,41102,0,1,1 +1773595688.535568,28.54,4,3992.50,63.75,1212.09,2496.02,0.00,3518932006086.624512,3518932005260.032715,11,0,118.986235,0.032568,16087469,12115059,0,0,41105,0,1,1 +1773595693.538532,28.48,4,3992.50,63.68,1215.01,2493.14,0.00,25137.798421,25962.682477,1748927,2285265,119.495788,0.021387,16099653,12116569,0,0,41107,0,1,1 +1773595698.532312,28.78,4,3992.50,63.70,1214.08,2493.97,0.00,3522819618541.802246,3522819617715.347656,75,0,118.918298,0.040811,16111775,12119713,0,0,41110,0,1,1 +1773595703.536129,28.46,4,3992.50,63.80,1212.75,2497.79,0.00,25133.460734,25958.328915,1748927,2285308,119.897783,0.091684,16124316,12126876,0,0,41112,0,1,1 +1773595708.536117,28.64,4,3992.50,63.67,1217.72,2492.83,0.00,3518445869365.973145,3518445868540.526367,11,0,118.388088,0.091620,16136788,12134012,0,0,41115,0,1,1 +1773595713.536623,28.94,4,3992.50,63.61,1219.93,2490.58,0.00,0.180255,0.000000,205,0,120.179761,0.091404,16149502,12141112,0,0,41117,0,1,1 +1773595718.536653,28.47,4,3992.50,63.74,1215.07,2495.46,0.00,1.475870,10.675129,251,357,118.380415,0.069279,16161912,12146506,0,0,41120,0,1,1 +1773595723.533597,11.31,4,3992.50,59.69,1373.66,2336.95,0.00,3520588979487.568359,3520588979478.544434,11,0,91.589342,0.034100,16171386,12149163,0,0,41122,0,1,1 +1773595728.532697,1.15,4,3992.50,59.03,1398.57,2310.96,0.00,25166.927076,25993.825535,1750427,2285785,0.003118,0.001468,16171444,12149205,0,0,41125,0,1,1 +1773595733.533896,0.70,4,3992.50,58.50,1419.06,2290.50,0.00,3517593627482.440430,3517593626655.889160,11,0,0.000000,0.000020,16171444,12149207,0,0,41127,0,1,1 +1773595738.532382,0.70,4,3992.50,58.27,1428.35,2281.22,0.00,1.656654,10.678431,251,357,0.000050,0.000092,16171448,12149214,0,0,41130,0,1,1 +1773595743.535542,0.65,4,3992.50,57.69,1450.73,2258.84,0.00,0.000000,0.000000,251,357,0.000008,0.000028,16171449,12149217,0,0,41132,0,1,1 +1773595748.533592,0.85,4,3992.50,57.70,1450.35,2259.21,0.00,3519810236873.642578,3519810236864.620605,11,0,0.000000,0.000030,16171449,12149220,0,0,41135,0,1,1 +1773595753.531867,0.65,4,3992.50,57.69,1450.95,2258.62,0.00,0.053534,0.000000,75,0,0.000000,0.000020,16171449,12149222,0,0,41137,0,1,1 +1773595758.533335,1.00,4,3992.50,57.79,1446.34,2262.71,0.00,3517404554480.942871,0.000000,11,0,0.000000,0.000673,16171449,12149229,0,0,41140,0,1,1 +1773595763.535548,0.65,4,3992.50,57.68,1450.79,2258.27,0.00,0.000000,0.000000,11,0,0.000000,0.000020,16171449,12149231,0,0,41142,0,1,1 +1773595768.531936,0.55,4,3992.50,57.66,1451.39,2257.68,0.00,0.053554,0.000000,75,0,0.000013,0.000061,16171450,12149236,0,0,41145,0,1,1 +1773595773.534858,0.85,4,3992.50,57.60,1453.97,2255.10,0.00,0.000000,0.000000,75,0,0.001547,0.001900,16171475,12149271,0,0,41147,0,1,1 +1773595778.532303,0.55,4,3992.50,57.58,1454.65,2254.42,0.00,0.000000,0.000000,75,0,0.000008,0.000038,16171476,12149275,0,0,41150,0,1,1 +1773595783.536551,0.70,4,3992.50,57.60,1453.95,2255.12,0.00,25131.431411,25956.668810,1748938,2285552,0.000000,0.000020,16171476,12149277,0,0,41152,0,1,1 +1773595788.536060,1.20,4,3992.50,58.00,1438.37,2270.65,0.00,0.000000,0.113683,1748938,2285648,0.001371,0.000722,16171498,12149295,0,0,41155,0,1,1 +1773595793.535965,37.61,4,3992.50,63.88,1207.93,2501.06,0.00,3518504328756.052246,3518504327929.857422,205,0,92.332621,0.035123,16181032,12151854,0,0,41157,0,1,1 +1773595798.536357,28.75,4,3992.50,63.82,1210.23,2498.59,0.00,3518161730486.831543,0.000000,11,0,118.356644,0.022736,16193129,12153451,0,0,41160,0,1,1 +1773595803.532814,29.24,4,3992.50,64.23,1194.33,2514.63,0.00,25170.682262,25997.318601,1748948,2285735,120.053556,0.027533,16205344,12155483,0,0,41162,0,1,1 +1773595808.535737,28.34,4,3992.50,63.75,1213.12,2495.90,0.00,3516381597772.950195,3516381596945.371094,246,2,118.292596,0.020435,16217223,12156996,0,0,41165,0,1,1 +1773595813.535496,28.36,4,3992.50,64.16,1197.03,2511.95,0.00,3518606631197.922363,3518606631199.935059,11,0,119.981153,0.052963,16229578,12161127,0,0,41167,0,1,1 +1773595818.535676,28.74,4,3992.50,63.75,1212.96,2495.96,0.00,0.180267,0.000000,205,0,118.578736,0.075029,16242011,12166953,0,0,41170,0,1,1 +1773595823.535527,28.85,4,3992.50,63.73,1213.83,2495.26,0.00,3518541673681.656738,0.000000,75,0,119.798041,0.096825,16254732,12174503,0,0,41172,0,1,1 +1773595828.536205,29.06,4,3992.50,63.72,1214.38,2494.70,0.00,3517960476690.700684,0.000000,11,0,119.370855,0.087492,16267357,12181307,0,0,41175,0,1,1 +1773595833.534335,13.07,4,3992.50,58.13,1433.39,2275.78,0.00,0.000000,0.000000,11,0,98.789668,0.059279,16277727,12185874,0,0,41177,0,1,1 +1773595838.536034,1.10,4,3992.50,57.75,1448.20,2260.96,0.00,0.053497,0.000000,75,0,0.003116,0.001454,16277785,12185915,0,0,41180,0,1,1 +1773595843.535978,0.70,4,3992.50,57.52,1457.30,2251.86,0.00,25153.210814,25979.601895,1748959,2285955,0.000031,0.000045,16277787,12185919,0,0,41182,0,1,1 +1773595848.531821,0.65,4,3992.50,57.51,1457.68,2251.48,0.00,9.569480,10.712423,1750448,2286320,0.000008,0.000038,16277788,12185923,0,0,41185,0,1,1 +1773595853.531818,1.15,4,3992.50,57.70,1457.85,2259.04,0.00,3518439296715.517090,3518439296714.461426,1748959,2285987,0.000031,0.000045,16277790,12185927,0,0,41187,0,1,1 +1773595858.536161,1.10,4,3992.50,57.65,1459.71,2257.16,0.00,3515383665232.457520,3515383664406.760254,11,0,0.000000,0.000030,16277790,12185930,0,0,41190,0,1,1 +1773595863.536464,0.70,4,3992.50,57.65,1459.72,2257.16,0.00,0.053512,0.000000,75,0,0.000000,0.000020,16277790,12185932,0,0,41192,0,1,1 +1773595868.535975,0.65,4,3992.50,57.66,1459.49,2257.40,0.00,1.602793,10.676238,251,357,0.000000,0.000030,16277790,12185935,0,0,41195,0,1,1 +1773595873.536165,0.55,4,3992.50,57.46,1467.13,2249.75,0.00,25160.282510,25978.562121,1750740,2286414,0.000000,0.000020,16277790,12185937,0,0,41197,0,1,1 +1773595878.536003,0.90,4,3992.50,57.45,1457.50,2249.25,0.00,3518551184778.747070,3518551183951.336914,75,0,0.000025,0.000061,16277792,12185942,0,0,41200,0,1,1 +1773595883.536674,0.75,4,3992.50,57.46,1457.25,2249.50,0.00,0.126741,0.000000,205,0,0.000101,0.000144,16277800,12185952,0,0,41202,0,1,1 +1773595888.536417,0.60,4,3992.50,57.46,1457.04,2249.71,0.00,3518617690747.678223,0.000000,11,0,0.000008,0.000521,16277801,12185959,0,0,41205,0,1,1 +1773595893.531943,0.75,4,3992.50,57.34,1461.71,2245.04,0.00,0.180435,0.000000,205,0,0.000000,0.000181,16277801,12185962,0,0,41207,0,1,1 +1773595898.532733,0.75,4,3992.50,57.16,1468.84,2237.90,0.00,25149.178818,25975.545731,1749252,2286135,0.000000,0.000030,16277801,12185965,0,0,41210,0,1,1 +1773595903.534758,21.20,4,3992.50,63.36,1225.91,2480.76,0.00,9.557652,10.745159,1750741,2286598,30.434595,0.019419,16281054,12187242,0,0,41212,0,1,1 +1773595908.534937,33.05,4,3992.50,63.55,1210.16,2488.03,0.00,3518311406198.521973,3518311405371.046387,11,0,118.560032,0.053170,16293115,12191324,0,0,41215,0,1,1 +1773595913.536067,28.00,4,3992.50,63.23,1222.52,2475.71,0.00,2.011850,0.000195,246,2,119.738273,0.028075,16305362,12193469,0,0,41217,0,1,1 +1773595918.531810,28.24,4,3992.50,63.42,1215.18,2483.06,0.00,3521436063129.917969,10.684099,251,357,118.262410,0.046524,16317329,12197076,0,0,41220,0,1,1 +1773595923.533689,28.33,4,3992.50,63.48,1212.77,2485.44,0.00,25142.222893,25959.405782,1749252,2286353,120.118161,0.048988,16329413,12200892,0,0,41222,0,1,1 +1773595928.534132,28.46,4,3992.50,63.28,1220.72,2477.48,0.00,3518125617118.145508,3518125616291.529297,205,0,118.550267,0.047015,16341412,12204590,0,0,41225,0,1,1 +1773595933.535799,28.89,4,3992.50,63.41,1215.38,2482.81,0.00,1.475387,10.671637,251,357,119.722737,0.045007,16353442,12208081,0,0,41227,0,1,1 +1773595938.531903,27.11,4,3992.50,63.27,1221.10,2477.12,0.00,3521181118141.594238,3521181118132.515137,75,0,119.456120,0.039965,16365562,12211205,0,0,41229,0,1,1 +1773595943.534778,27.46,4,3992.50,63.40,1213.77,2482.20,0.00,25148.380634,25975.767681,1750742,2286767,118.892924,0.052302,16377600,12215334,0,0,41232,0,1,1 +1773595948.536548,1.35,4,3992.50,58.65,1399.52,2296.43,0.00,3517192391651.125488,3517192390823.428711,205,0,41.645072,0.017571,16381854,12216618,0,0,41235,0,1,1 +1773595953.536015,0.75,4,3992.50,57.80,1433.05,2262.92,0.00,3518811976433.757812,0.000000,11,0,0.000000,0.000020,16381854,12216620,0,0,41237,0,1,1 +1773595958.531889,0.65,4,3992.50,57.47,1445.95,2250.02,0.00,25183.808522,26012.282400,1750752,2286805,0.000000,0.000674,16381854,12216627,0,0,41240,0,1,1 +1773595963.531901,0.70,4,3992.50,57.45,1446.56,2249.41,0.00,0.000000,0.023437,1750752,2286806,0.000000,0.000020,16381854,12216629,0,0,41242,0,1,1 +1773595968.535071,0.85,4,3992.50,57.46,1446.34,2249.64,0.00,0.000000,0.059337,1750752,2286835,0.000000,0.000030,16381854,12216632,0,0,41245,0,1,1 +1773595973.531810,0.65,4,3992.50,57.30,1452.62,2243.35,0.00,3520733217919.402344,3520733217100.014160,251,357,0.000000,0.000020,16381854,12216634,0,0,41247,0,1,1 +1773595978.531897,0.80,4,3992.50,57.30,1452.62,2243.35,0.00,3518375937771.937500,3518375937762.918945,11,0,0.000000,0.000030,16381854,12216637,0,0,41250,0,1,1 +1773595983.532405,0.70,4,3992.50,57.33,1451.40,2244.57,0.00,0.000000,0.000000,11,0,0.000000,0.000020,16381854,12216639,0,0,41252,0,1,1 +1773595988.536477,0.65,4,3992.50,57.33,1451.40,2244.57,0.00,0.000000,0.000000,11,0,0.000000,0.000030,16381854,12216642,0,0,41255,0,1,1 +1773595993.536313,2.51,4,3992.50,57.34,1451.17,2244.80,0.00,0.000000,0.000000,11,0,0.002919,0.002044,16381907,12216678,0,0,41257,0,1,1 +1773595998.536576,1.00,4,3992.50,57.55,1443.70,2253.13,0.00,0.053513,0.000000,75,0,0.000008,0.000038,16381908,12216682,0,0,41260,0,1,1 +1773596003.536155,0.65,4,3992.50,57.57,1442.61,2254.09,0.00,25155.527525,25982.605863,1749263,2286571,0.000000,0.000020,16381908,12216684,0,0,41262,0,1,1 +1773596008.534207,0.65,4,3992.50,57.57,1442.61,2254.09,0.00,3519808819436.557617,3519808818609.226074,75,0,0.000000,0.000030,16381908,12216687,0,0,41265,0,1,1 +1773596013.535540,8.27,4,3992.50,63.39,1214.86,2481.84,0.00,1.602210,10.672351,251,357,3.007819,0.006878,16382402,12217067,0,0,41267,0,1,1 +1773596018.531865,37.75,4,3992.50,63.79,1199.27,2497.36,0.00,0.356414,3521024953064.144531,246,2,119.251934,0.041298,16394461,12220203,0,0,41270,0,1,1 +1773596023.536693,28.61,4,3992.50,63.48,1211.27,2485.33,0.00,25127.188615,25955.507767,1749263,2286741,122.051053,0.028193,16406976,12222359,0,0,41272,0,1,1 +1773596028.531811,27.97,4,3992.50,63.69,1202.90,2493.68,0.00,3521876272665.608887,3521876271837.693359,11,0,122.088987,0.028581,16419479,12224473,0,0,41275,0,1,1 +1773596033.535598,29.41,4,3992.50,63.63,1205.33,2491.32,0.00,0.180137,0.000000,205,0,120.073526,0.030247,16431699,12226846,0,0,41277,0,1,1 +1773596038.534864,28.86,4,3992.50,63.64,1196.82,2491.70,0.00,25156.978881,25984.507895,1749263,2286825,120.181980,0.025281,16443927,12228814,0,0,41280,0,1,1 +1773596043.536534,28.30,4,3992.50,63.82,1189.75,2498.55,0.00,3517263053089.722168,3517263052260.759277,246,2,119.123005,0.032657,16456041,12231352,0,0,41282,0,1,1 +1773596048.535931,28.23,4,3992.50,63.52,1201.44,2486.83,0.00,3518861273891.026367,3518861273893.039551,11,0,119.378113,0.027230,16468206,12233458,0,0,41285,0,1,1 +1773596053.535750,28.29,4,3992.50,63.59,1198.78,2489.58,0.00,25154.373469,25981.776862,1749263,2286870,119.967654,0.027393,16480288,12235557,0,0,41287,0,1,1 +1773596058.531812,3.91,4,3992.50,58.80,1386.32,2302.13,0.00,9.648030,10.796102,1750760,2287244,60.329375,0.015089,16486357,12236699,0,0,41290,0,1,1 +1773596063.535902,1.25,4,3992.50,57.86,1422.90,2265.53,0.00,0.078061,0.143632,1750767,2287290,0.002891,0.001147,16486410,12236734,0,0,41292,0,1,1 +1773596068.535831,0.60,4,3992.50,57.49,1437.71,2250.72,0.00,3518487102609.645508,3518487101779.035156,246,2,0.000000,0.000030,16486410,12236737,0,0,41295,0,1,1 +1773596073.531810,0.90,4,3992.50,57.30,1445.12,2243.30,0.00,25171.857040,26002.066407,1749278,2286983,0.001435,0.001778,16486426,12236764,0,0,41297,0,1,1 +1773596078.531829,0.60,4,3992.50,57.30,1444.91,2243.52,0.00,9.561487,10.679256,1750767,2287347,0.000008,0.000038,16486427,12236768,0,0,41300,0,1,1 +1773596083.532014,0.60,4,3992.50,57.30,1444.91,2243.52,0.00,0.000000,0.003906,1750767,2287351,0.000000,0.000020,16486427,12236770,0,0,41302,0,1,1 +1773596088.535716,0.95,4,3992.50,57.36,1447.89,2245.81,0.00,3515834194389.368652,3515834193559.319824,246,2,0.000000,0.000030,16486427,12236773,0,0,41305,0,1,1 +1773596093.534728,0.70,4,3992.50,57.38,1445.22,2246.48,0.00,3519132425456.940430,3519132425458.899414,75,0,0.000000,0.000664,16486427,12236779,0,0,41307,0,1,1 +1773596098.536043,0.75,4,3992.50,57.24,1450.79,2240.91,0.00,1.958274,0.000195,246,2,0.000308,0.000574,16486434,12236792,0,0,41309,0,1,1 +1773596103.536576,0.75,4,3992.50,57.28,1449.11,2242.58,0.00,0.000000,0.000000,246,2,0.000025,0.000061,16486436,12236797,0,0,41312,0,1,1 +1773596108.536083,0.75,4,3992.50,57.28,1449.11,2242.58,0.00,25163.662839,25994.569855,1750768,2287476,0.001227,0.001343,16486453,12236821,0,0,41315,0,1,1 +1773596113.535998,0.60,4,3992.50,57.28,1449.11,2242.58,0.00,3518497126244.450195,3518497125415.623535,11,0,0.000000,0.000020,16486453,12236823,0,0,41317,0,1,1 +1773596118.531954,0.95,4,3992.50,57.33,1446.98,2244.70,0.00,25173.988009,26002.397593,1749279,2287137,0.000062,0.000080,16486457,12236830,0,0,41320,0,1,1 +1773596123.535801,1.00,4,3992.50,57.00,1459.95,2231.74,0.00,0.000000,0.035910,1749279,2287188,0.002506,0.002353,16486494,12236866,0,0,41322,0,1,1 +1773596128.532064,45.01,4,3992.50,63.45,1207.35,2484.27,0.00,3521068528239.896973,3521068527411.502441,11,0,110.455394,0.077645,16498228,12242852,0,0,41325,0,1,1 +1773596133.532126,29.16,4,3992.50,63.98,1186.76,2504.84,0.00,25153.319635,25981.163724,1749279,2287296,124.177681,0.028264,16510686,12244915,0,0,41327,0,1,1 +1773596138.531813,28.61,4,3992.50,63.60,1201.51,2490.25,0.00,3518657544584.601074,3518657543756.514648,205,0,121.835782,0.021305,16522703,12246521,0,0,41330,0,1,1 +1773596143.532073,28.74,4,3992.50,63.56,1203.16,2488.40,0.00,25152.140896,25980.144106,1749279,2287322,120.180563,0.022496,16534539,12248259,0,0,41332,0,1,1 +1773596148.532023,28.81,4,3992.50,64.19,1183.38,2513.04,0.00,3518472043345.198730,3518472042515.312500,246,2,120.170827,0.024610,16546343,12250143,0,0,41335,0,1,1 +1773596153.534777,28.60,4,3992.50,63.96,1189.50,2504.14,0.00,25137.772108,25967.267290,1749279,2287372,118.749838,0.032561,16558307,12252639,0,0,41337,0,1,1 +1773596158.535776,28.55,4,3992.50,64.11,1183.71,2509.93,0.00,9.559614,10.846174,1750768,2287769,119.539997,0.034769,16569990,12255305,0,0,41340,0,1,1 +1773596163.531842,29.05,4,3992.50,63.81,1195.20,2498.43,0.00,3521207165280.785645,3521207164450.906250,11,0,119.197420,0.032244,16581139,12257786,0,0,41342,0,1,1 +1773596168.535752,5.88,4,3992.50,58.84,1390.02,2303.69,0.00,0.180133,0.000000,205,0,71.137554,0.020013,16587876,12259287,0,0,41345,0,1,1 +1773596173.534011,0.90,4,3992.50,57.95,1424.73,2268.97,0.00,3519662616027.334961,0.000000,75,0,0.002259,0.001069,16587920,12259318,0,0,41347,0,1,1 +1773596178.536727,0.65,4,3992.50,57.41,1445.95,2247.74,0.00,3516527351229.947266,0.000000,11,0,0.000000,0.000030,16587920,12259321,0,0,41350,0,1,1 +1773596183.536850,1.00,4,3992.50,57.69,1439.52,2258.82,0.00,0.000000,0.000000,11,0,0.000000,0.000020,16587920,12259323,0,0,41352,0,1,1 +1773596188.532072,0.70,4,3992.50,57.69,1439.52,2258.82,0.00,25187.407344,26017.624412,1750780,2287913,0.000000,0.000030,16587920,12259326,0,0,41355,0,1,1 +1773596193.531890,0.70,4,3992.50,57.71,1439.05,2259.28,0.00,3518565193343.929688,3518565192514.422363,75,0,0.000000,0.000020,16587920,12259328,0,0,41357,0,1,1 +1773596198.536499,0.70,4,3992.50,57.71,1439.05,2259.28,0.00,3515196906701.903320,0.000000,11,0,0.000000,0.000030,16587920,12259331,0,0,41360,0,1,1 +1773596203.536575,0.65,4,3992.50,57.71,1439.05,2259.28,0.00,1.656127,10.675033,251,357,0.000000,0.000020,16587920,12259333,0,0,41362,0,1,1 +1773596208.533420,1.00,4,3992.50,58.02,1426.77,2271.54,0.00,3520658919988.924316,3520658919979.846191,75,0,0.000000,0.000030,16587920,12259336,0,0,41365,0,1,1 +1773596213.536381,0.60,4,3992.50,57.82,1434.47,2263.86,0.00,1.601688,10.668877,251,357,0.000025,0.000051,16587922,12259340,0,0,41367,0,1,1 +1773596218.535847,0.70,4,3992.50,57.65,1441.38,2256.96,0.00,3518812924501.637207,3518812924492.437012,205,0,0.000117,0.000170,16587932,12259353,0,0,41370,0,1,1 +1773596223.535830,0.65,4,3992.50,57.65,1441.38,2256.95,0.00,0.000000,0.000000,205,0,0.000000,0.000664,16587932,12259359,0,0,41372,0,1,1 +1773596228.535827,0.70,4,3992.50,57.65,1441.38,2256.95,0.00,25153.610750,25982.181808,1749291,2287616,0.000000,0.000030,16587932,12259362,0,0,41375,0,1,1 +1773596233.536239,0.95,4,3992.50,57.60,1443.20,2255.11,0.00,3518147341864.295898,3518147341035.974121,11,0,0.002040,0.001634,16587957,12259381,0,0,41377,0,1,1 +1773596238.532309,40.62,4,3992.50,64.06,1187.85,2508.23,0.00,25183.127844,26013.431376,1750780,2288126,98.215955,0.048307,16598070,12262975,0,0,41380,0,1,1 +1773596243.536149,27.91,4,3992.50,63.66,1203.64,2492.44,0.00,3515737129948.898438,3515737129119.831055,75,0,118.072191,0.043063,16610076,12266284,0,0,41382,0,1,1 +1773596248.536640,28.13,4,3992.50,63.88,1195.10,2500.97,0.00,0.126745,0.000000,205,0,120.153911,0.045919,16622267,12269789,0,0,41385,0,1,1 +1773596253.532534,28.25,4,3992.50,63.63,1204.76,2491.31,0.00,3521329192741.382812,0.000000,11,0,118.259011,0.041126,16634278,12273005,0,0,41387,0,1,1 +1773596258.536434,28.23,4,3992.50,63.62,1205.12,2490.96,0.00,0.053474,0.000000,75,0,120.068093,0.036410,16646346,12275863,0,0,41390,0,1,1 +1773596263.536180,28.25,4,3992.50,63.83,1196.81,2499.17,0.00,0.126764,0.000000,205,0,118.167366,0.043948,16658286,12279277,0,0,41392,0,1,1 +1773596268.536123,28.54,4,3992.50,64.01,1189.92,2506.16,0.00,25153.881280,25982.826000,1749291,2287872,120.164327,0.039043,16670443,12282350,0,0,41395,0,1,1 +1773596273.535960,29.67,4,3992.50,63.77,1199.11,2496.91,0.00,3518551794220.782715,3518551793391.947266,75,0,118.764062,0.040805,16682392,12285554,0,0,41397,0,1,1 +1773596278.536551,11.61,4,3992.50,59.12,1381.48,2314.66,0.00,3518021449108.291016,0.000000,11,0,93.519124,0.042943,16691858,12288828,0,0,41400,0,1,1 +1773596283.536425,0.80,4,3992.50,58.30,1413.43,2282.72,0.00,0.000000,0.000000,11,0,0.000790,0.000489,16691876,12288844,0,0,41402,0,1,1 +1773596288.532501,0.75,4,3992.50,57.73,1436.09,2260.06,0.00,0.180415,0.000000,205,0,0.000000,0.000513,16691876,12288850,0,0,41405,0,1,1 +1773596293.531790,0.95,4,3992.50,57.56,1442.67,2253.48,0.00,3518937577173.930176,0.000000,11,0,0.002174,0.001190,16691920,12288879,0,0,41407,0,1,1 +1773596298.536292,1.05,4,3992.50,57.73,1441.29,2260.34,0.00,1.654662,10.665592,251,357,0.000000,0.000030,16691920,12288882,0,0,41410,0,1,1 +1773596303.535510,0.65,4,3992.50,57.73,1441.50,2260.21,0.00,0.000000,0.000000,251,357,0.000000,0.000020,16691920,12288884,0,0,41412,0,1,1 +1773596308.533822,0.70,4,3992.50,57.71,1442.12,2259.58,0.00,25170.330093,25991.718667,1750793,2288411,0.000000,0.000030,16691920,12288887,0,0,41415,0,1,1 +1773596313.531806,0.70,4,3992.50,57.74,1441.15,2260.55,0.00,3519855972898.694336,3519855972077.251953,251,357,0.000000,0.000020,16691920,12288889,0,0,41417,0,1,1 +1773596318.535179,0.70,4,3992.50,57.74,1441.15,2260.55,0.00,3516065756139.526855,3516065756130.514160,11,0,0.000000,0.000030,16691920,12288892,0,0,41420,0,1,1 +1773596323.531817,0.65,4,3992.50,57.74,1440.91,2260.79,0.00,0.000000,0.000000,11,0,0.000038,0.000082,16691923,12288898,0,0,41422,0,1,1 +1773596328.536592,0.90,4,3992.50,57.92,1436.00,2267.81,0.00,0.000000,0.000000,11,0,0.000038,0.000061,16691926,12288903,0,0,41425,0,1,1 +1773596333.535548,0.70,4,3992.50,57.98,1433.79,2270.02,0.00,0.000000,0.000000,11,0,0.000016,0.000036,16691928,12288907,0,0,41427,0,1,1 +1773596338.535886,1.00,4,3992.50,57.98,1433.79,2270.02,0.00,0.000000,0.000000,11,0,0.000101,0.000154,16691936,12288918,0,0,41430,0,1,1 +1773596343.536233,0.90,4,3992.50,57.78,1441.67,2262.14,0.00,0.180261,0.000000,205,0,0.001396,0.000723,16691960,12288936,0,0,41432,0,1,1 +1773596348.537534,39.21,4,3992.50,63.94,1200.28,2503.44,0.00,25147.206371,25976.262855,1749304,2288133,87.100522,0.042894,16700891,12292103,0,0,41435,0,1,1 +1773596353.533854,28.40,4,3992.50,63.93,1200.92,2502.80,0.00,9.568565,10.791829,1750793,2288582,119.251786,0.043329,16712983,12295393,0,0,41437,0,1,1 +1773596358.531851,27.61,4,3992.50,63.92,1200.96,2502.78,0.00,3519847061982.249512,3519847061149.589355,246,2,118.611277,0.027131,16725112,12297450,0,0,41440,0,1,1 +1773596363.535896,28.46,4,3992.50,63.75,1207.14,2495.86,0.00,3515593037161.516602,3515593037163.527344,11,0,119.667411,0.034739,16737270,12300126,0,0,41442,0,1,1 +1773596368.534639,28.04,4,3992.50,64.01,1197.06,2505.96,0.00,25169.818734,26000.461955,1750793,2288662,119.192216,0.031732,16749382,12302618,0,0,41445,0,1,1 +1773596373.533686,28.25,4,3992.50,63.77,1206.31,2496.69,0.00,3519107637068.511230,3519107636237.918945,11,0,119.184582,0.044824,16761385,12306057,0,0,41447,0,1,1 +1773596378.534688,28.49,4,3992.50,63.99,1197.48,2505.49,0.00,25158.448065,25988.721992,1750793,2288682,119.939687,0.043254,16773543,12309419,0,0,41449,0,1,1 +1773596383.533361,28.11,4,3992.50,63.81,1204.64,2498.36,0.00,3519370931250.987305,3519370930429.348145,251,357,118.391893,0.045740,16785533,12313041,0,0,41452,0,1,1 +1773596388.533734,13.75,4,3992.50,58.12,1427.57,2275.51,0.00,0.356126,3518174660163.065918,246,2,104.135842,0.023333,16796189,12314819,0,0,41455,0,1,1 +1773596393.534412,1.25,4,3992.50,57.89,1431.38,2266.45,0.00,25148.664464,25980.020953,1749319,2288386,0.002924,0.001172,16796244,12314856,0,0,41457,0,1,1 +1773596398.536559,0.80,4,3992.50,57.87,1431.96,2265.86,0.00,3516926841607.323730,3516926840778.042480,205,0,0.000316,0.000592,16796252,12314871,0,0,41460,0,1,1 +1773596403.532430,0.75,4,3992.50,57.82,1434.05,2263.77,0.00,3521344895341.871094,0.000000,11,0,0.000000,0.000020,16796252,12314873,0,0,41462,0,1,1 +1773596408.531914,0.65,4,3992.50,57.83,1433.81,2264.01,0.00,1.656323,10.676297,251,357,0.000205,0.000562,16796259,12314887,0,0,41465,0,1,1 +1773596413.535928,0.80,4,3992.50,57.67,1439.98,2257.84,0.00,25141.822895,25962.832950,1750817,2288857,0.000000,0.000020,16796259,12314889,0,0,41467,0,1,1 +1773596418.531834,1.05,4,3992.50,57.65,1444.47,2257.08,0.00,3521320170237.595703,3521320169406.173828,75,0,0.000062,0.000080,16796263,12314896,0,0,41470,0,1,1 +1773596423.531893,0.70,4,3992.50,57.63,1445.20,2256.25,0.00,3518395698850.691406,0.000000,11,0,0.000008,0.000672,16796264,12314903,0,0,41472,0,1,1 +1773596428.531808,0.70,4,3992.50,57.65,1444.22,2257.23,0.00,0.180276,0.000000,205,0,0.000000,0.000030,16796264,12314906,0,0,41475,0,1,1 +1773596433.531899,0.70,4,3992.50,57.65,1444.22,2257.23,0.00,3518372954948.766602,0.000000,11,0,0.000025,0.000051,16796266,12314910,0,0,41477,0,1,1 +1773596438.531891,0.70,4,3992.50,57.66,1444.00,2257.45,0.00,0.053516,0.000000,75,0,0.000101,0.000154,16796274,12314921,0,0,41480,0,1,1 +1773596443.535840,0.65,4,3992.50,57.66,1444.00,2257.45,0.00,1.957243,0.000195,246,2,0.000039,0.000053,16796277,12314926,0,0,41482,0,1,1 +1773596448.535996,1.10,4,3992.50,57.70,1447.50,2259.24,0.00,25151.299245,25983.062698,1749328,2288565,0.000000,0.000030,16796277,12314929,0,0,41485,0,1,1 +1773596453.536262,0.90,4,3992.50,57.30,1463.15,2243.59,0.00,3518250395593.699707,3518250394763.966309,11,0,0.001414,0.000748,16796302,12314949,0,0,41487,0,1,1 +1773596458.532432,42.31,4,3992.50,64.14,1195.22,2511.38,0.00,25182.947244,26014.515795,1750817,2288985,102.023496,0.049718,16806858,12318605,0,0,41489,0,1,1 +1773596463.531863,28.23,4,3992.50,63.91,1204.22,2502.39,0.00,3518837671082.109375,3518837670249.070801,246,2,118.177355,0.044089,16818892,12321964,0,0,41492,0,1,1 +1773596468.536668,28.60,4,3992.50,64.17,1194.26,2512.38,0.00,3515059393575.790527,3515059393577.620605,205,0,120.050652,0.041325,16831136,12325136,0,0,41495,0,1,1 +1773596473.534702,28.35,4,3992.50,63.94,1203.21,2503.30,0.00,1.832752,0.000195,246,2,118.206363,0.041471,16843014,12328372,0,0,41497,0,1,1 +1773596478.535974,28.77,4,3992.50,63.84,1207.34,2499.32,0.00,0.000000,0.000000,246,2,120.131210,0.035305,16855082,12331158,0,0,41500,0,1,1 +1773596483.534457,28.02,4,3992.50,63.87,1205.93,2500.76,0.00,3519504683098.382812,3519504683100.395996,11,0,118.598111,0.045862,16867136,12334743,0,0,41502,0,1,1 +1773596488.535823,28.28,4,3992.50,63.85,1206.95,2499.73,0.00,25147.226656,25977.127633,1749328,2288805,119.735174,0.026519,16879501,12336769,0,0,41505,0,1,1 +1773596493.531859,28.12,4,3992.50,63.87,1206.18,2500.48,0.00,3521229255846.942871,3521229255025.182129,251,357,119.259390,0.031969,16891722,12339247,0,0,41507,0,1,1 +1773596498.536535,10.58,4,3992.50,58.35,1422.10,2284.64,0.00,3515149371565.479980,3515149371556.289551,205,0,89.238202,0.029067,16900833,12341484,0,0,41510,0,1,1 +1773596503.531895,0.85,4,3992.50,57.82,1442.86,2263.88,0.00,3521705701831.866699,0.000000,11,0,0.002927,0.001174,16900888,12341521,0,0,41512,0,1,1 +1773596508.531896,0.70,4,3992.50,57.61,1451.14,2255.59,0.00,0.000000,0.000000,11,0,0.000000,0.000030,16900888,12341524,0,0,41515,0,1,1 +1773596513.531889,0.95,4,3992.50,57.80,1449.19,2263.06,0.00,25163.827069,25995.154859,1750828,2289260,0.000000,0.000020,16900888,12341526,0,0,41517,0,1,1 +1773596518.531950,0.75,4,3992.50,57.84,1447.72,2264.54,0.00,3518394705438.461914,3518394704605.133301,246,2,0.000000,0.000030,16900888,12341529,0,0,41520,0,1,1 +1773596523.533964,0.70,4,3992.50,57.84,1447.72,2264.54,0.00,3517020325896.059570,10.670701,251,357,0.000000,0.000020,16900888,12341531,0,0,41522,0,1,1 +1773596528.536399,0.70,4,3992.50,57.85,1447.48,2264.77,0.00,0.000000,0.000000,251,357,0.000000,0.000030,16900888,12341534,0,0,41525,0,1,1 +1773596533.532656,0.65,4,3992.50,57.81,1448.79,2263.46,0.00,3521073635300.846680,3521073635291.820801,11,0,0.000000,0.000020,16900888,12341536,0,0,41527,0,1,1 +1773596538.531829,0.90,4,3992.50,57.90,1445.36,2266.90,0.00,0.000000,0.000000,11,0,0.000000,0.000020,16900888,12341538,0,0,41529,0,1,1 +1773596543.534657,0.65,4,3992.50,57.73,1452.15,2260.11,0.00,0.053485,0.000000,75,0,0.000025,0.000061,16900890,12341543,0,0,41532,0,1,1 +1773596548.536149,0.80,4,3992.50,57.74,1451.45,2260.75,0.00,0.000000,0.000000,75,0,0.000109,0.000162,16900899,12341555,0,0,41535,0,1,1 +1773596553.536556,0.65,4,3992.50,57.58,1457.93,2254.33,0.00,25161.689503,25993.284744,1750828,2289351,0.000008,0.000028,16900900,12341558,0,0,41537,0,1,1 +1773596558.531838,0.65,4,3992.50,57.58,1457.93,2254.32,0.00,3521760951975.014648,3521760951142.619629,11,0,0.000000,0.000674,16900900,12341565,0,0,41540,0,1,1 +1773596563.535133,0.65,4,3992.50,57.52,1460.25,2252.01,0.00,0.180155,0.000000,205,0,0.000000,0.000020,16900900,12341567,0,0,41542,0,1,1 +1773596568.531823,39.14,4,3992.50,64.24,1198.52,2515.03,0.00,25180.279949,26012.701649,1750828,2289415,84.376025,0.032137,16909551,12343796,0,0,41545,0,1,1 +1773596573.531810,28.62,4,3992.50,64.24,1198.21,2515.16,0.00,3518446735600.261230,3518446734777.587891,251,357,119.162548,0.044072,16921542,12347194,0,0,41547,0,1,1 +1773596578.531807,28.31,4,3992.50,64.23,1198.69,2514.70,0.00,0.356152,3518438690838.901855,246,2,119.163754,0.023865,16933739,12349077,0,0,41550,0,1,1 +1773596583.532532,28.05,4,3992.50,64.24,1198.40,2515.00,0.00,25158.134851,25991.755260,1750828,2289468,119.345677,0.032725,16945800,12351600,0,0,41552,0,1,1 +1773596588.531808,28.44,4,3992.50,63.94,1209.85,2503.55,0.00,3518946770144.886719,3518946769311.024902,246,2,118.977597,0.040139,16957765,12354760,0,0,41555,0,1,1 +1773596593.535068,28.31,4,3992.50,64.01,1207.39,2506.05,0.00,3516144727525.673828,3516144727527.504395,205,0,119.798690,0.048494,16969851,12358435,0,0,41557,0,1,1 +1773596598.535873,28.14,4,3992.50,64.17,1201.27,2512.20,0.00,3517870747967.272949,0.000000,11,0,118.430713,0.028822,16981870,12360657,0,0,41560,0,1,1 +1773596603.532540,28.90,4,3992.50,64.11,1200.53,2510.15,0.00,25180.579222,26013.121141,1750828,2289581,120.243904,0.026329,16994068,12362717,0,0,41562,0,1,1 +1773596608.535965,14.39,4,3992.50,59.21,1392.64,2318.18,0.00,3516028315450.645508,3516028314619.174805,75,0,105.871763,0.037974,17004764,12365660,0,0,41565,0,1,1 +1773596613.536075,1.05,4,3992.50,58.19,1432.68,2278.13,0.00,3518360062505.728027,0.000000,11,0,0.002924,0.001173,17004819,12365697,0,0,41567,0,1,1 +1773596618.536297,0.80,4,3992.50,57.79,1448.18,2262.63,0.00,25162.809822,25994.798045,1750839,2289669,0.000000,0.000030,17004819,12365700,0,0,41570,0,1,1 +1773596623.531825,0.65,4,3992.50,57.67,1453.03,2257.79,0.00,3521586920642.604980,3521586919809.654785,205,0,0.000000,0.000664,17004819,12365706,0,0,41572,0,1,1 +1773596628.531952,1.00,4,3992.50,58.11,1436.91,2274.95,0.00,1.831985,0.000195,246,2,0.000000,0.000030,17004819,12365709,0,0,41575,0,1,1 +1773596633.531905,0.70,4,3992.50,58.12,1436.14,2275.68,0.00,3518470516130.481445,3518470516132.494141,11,0,0.000000,0.000020,17004819,12365711,0,0,41577,0,1,1 +1773596638.531830,0.70,4,3992.50,57.94,1443.54,2268.29,0.00,1.656177,10.675356,251,357,0.000050,0.000092,17004823,12365718,0,0,41580,0,1,1 +1773596643.536465,0.70,4,3992.50,57.94,1443.31,2268.50,0.00,25129.412059,25950.627344,1749350,2289362,0.000008,0.000028,17004824,12365721,0,0,41582,0,1,1 +1773596648.531827,1.00,4,3992.50,57.95,1443.07,2268.74,0.00,3521704189819.555176,3521704188987.788086,11,0,0.000000,0.000030,17004824,12365724,0,0,41585,0,1,1 +1773596653.535965,0.60,4,3992.50,57.95,1442.86,2268.95,0.00,0.000000,0.000000,11,0,0.000025,0.000051,17004826,12365728,0,0,41587,0,1,1 +1773596658.536426,0.70,4,3992.50,57.92,1444.25,2267.55,0.00,25152.048059,25983.079660,1749350,2289372,0.000101,0.000154,17004834,12365739,0,0,41590,0,1,1 +1773596663.536178,1.00,4,3992.50,58.20,1427.70,2278.84,0.00,3518611972185.996582,3518611971354.847168,11,0,0.000008,0.000028,17004835,12365742,0,0,41592,0,1,1 +1773596668.532700,0.70,4,3992.50,58.22,1426.96,2279.57,0.00,0.180399,0.000000,205,0,0.000000,0.000030,17004835,12365745,0,0,41595,0,1,1 +1773596673.536638,0.80,4,3992.50,58.03,1434.60,2271.94,0.00,1.830590,0.000195,246,2,0.000512,0.001106,17004849,12365769,0,0,41597,0,1,1 +1773596678.534955,35.05,4,3992.50,64.21,1192.40,2514.15,0.00,25160.821943,25994.269428,1749350,2289445,78.138913,0.032743,17012974,12368118,0,0,41600,0,1,1 +1773596683.531878,28.80,4,3992.50,64.25,1190.75,2515.68,0.00,3520603422280.673828,3520603421448.827148,205,0,118.639274,0.025110,17025248,12369997,0,0,41602,0,1,1 +1773596688.536116,28.02,4,3992.50,64.50,1181.09,2525.36,0.00,0.000000,0.000000,205,0,120.064392,0.017292,17037545,12371269,0,0,41605,0,1,1 +1773596693.536734,27.87,4,3992.50,64.21,1192.41,2514.00,0.00,3518002577254.612793,0.000000,11,0,118.148927,0.019327,17049666,12372689,0,0,41607,0,1,1 +1773596698.536250,28.63,4,3992.50,64.42,1184.48,2522.03,0.00,0.000000,0.000000,11,0,120.181030,0.022579,17062063,12374310,0,0,41610,0,1,1 +1773596703.531821,27.95,4,3992.50,64.08,1197.65,2508.83,0.00,0.000000,0.000000,11,0,118.467942,0.030793,17074138,12376677,0,0,41612,0,1,1 +1773596708.535537,28.82,4,3992.50,64.15,1194.91,2511.55,0.00,1.654923,10.667268,251,357,119.873577,0.027084,17086308,12378773,0,0,41615,0,1,1 +1773596713.532674,28.69,4,3992.50,64.18,1193.54,2512.91,0.00,25176.700711,26000.815938,1750840,2290102,119.433116,0.042533,17098481,12382106,0,0,41617,0,1,1 +1773596718.535995,15.99,4,3992.50,57.80,1443.67,2262.87,0.00,3516102421930.756836,3516102421929.726562,1749357,2289785,112.478830,0.041113,17109864,12385316,0,0,41620,0,1,1 +1773596723.536510,1.26,4,3992.50,58.38,1430.08,2285.62,0.00,3518074822022.105957,3518074821190.560547,11,0,0.003117,0.001445,17109922,12385356,0,0,41622,0,1,1 +1773596728.536073,0.75,4,3992.50,58.18,1437.66,2278.04,0.00,25166.227482,25999.142894,1750851,2290232,0.000000,0.000030,17109922,12385359,0,0,41625,0,1,1 +1773596733.535675,0.65,4,3992.50,58.21,1436.68,2279.03,0.00,3518717692374.938965,3518717691541.976562,75,0,0.000000,0.000020,17109922,12385361,0,0,41627,0,1,1 +1773596738.536018,0.85,4,3992.50,58.21,1436.71,2278.99,0.00,25152.692362,25984.426326,1749362,2289879,0.000000,0.000020,17109922,12385363,0,0,41629,0,1,1 +1773596743.535797,0.60,4,3992.50,58.19,1437.30,2278.41,0.00,3518592872315.167480,3518592871483.212891,205,0,0.000031,0.000055,17109924,12385368,0,0,41632,0,1,1 +1773596748.536272,1.10,4,3992.50,58.61,1421.10,2294.60,0.00,1.475739,10.674181,251,357,0.000008,0.000038,17109925,12385372,0,0,41635,0,1,1 +1773596753.535629,0.70,4,3992.50,58.39,1429.56,2286.14,0.00,25156.046313,25979.025169,1749362,2289912,0.000031,0.000045,17109927,12385376,0,0,41637,0,1,1 +1773596758.533745,0.65,4,3992.50,58.40,1429.32,2286.39,0.00,0.000000,0.018757,1749362,2289936,0.000000,0.000674,17109927,12385383,0,0,41640,0,1,1 +1773596763.536321,0.75,4,3992.50,58.40,1429.09,2286.62,0.00,3516625312165.869629,3516625311334.333984,75,0,0.000025,0.000051,17109929,12385387,0,0,41642,0,1,1 +1773596768.536471,0.75,4,3992.50,58.40,1429.09,2286.62,0.00,1.958730,0.000195,246,2,0.000101,0.000154,17109937,12385398,0,0,41645,0,1,1 +1773596773.536014,0.65,4,3992.50,58.40,1429.20,2286.50,0.00,0.000000,0.000000,246,2,0.000000,0.000020,17109937,12385400,0,0,41647,0,1,1 +1773596778.535789,0.95,4,3992.50,57.94,1438.34,2268.63,0.00,3518594923565.165527,3518594923567.178223,11,0,0.000000,0.000030,17109937,12385403,0,0,41650,0,1,1 +1773596783.535945,0.60,4,3992.50,57.93,1438.91,2268.02,0.00,0.000000,0.000000,11,0,0.000000,0.000020,17109937,12385405,0,0,41652,0,1,1 +1773596788.533614,32.44,4,3992.50,63.83,1207.73,2499.16,0.00,0.000000,0.000000,11,0,69.533675,0.025686,17117153,12387143,0,0,41655,0,1,1 +1773596793.535071,30.14,4,3992.50,63.94,1203.61,2503.25,0.00,0.000000,0.000000,11,0,119.336051,0.030081,17129457,12389405,0,0,41657,0,1,1 +1773596798.536291,28.26,4,3992.50,64.21,1193.05,2513.79,0.00,0.180229,0.000000,205,0,118.952582,0.071182,17141764,12394863,0,0,41660,0,1,1 +1773596803.536000,28.26,4,3992.50,64.02,1200.15,2506.62,0.00,25155.756462,25988.046064,1749362,2290120,119.390816,0.074914,17154131,12400677,0,0,41662,0,1,1 +1773596808.534770,28.68,4,3992.50,64.27,1189.86,2516.49,0.00,3519302871000.781250,3519302870177.536133,251,357,119.618304,0.089818,17166670,12407698,0,0,41665,0,1,1 +1773596813.534816,28.77,4,3992.50,64.13,1195.01,2510.77,0.00,3518404591863.668945,3518404591854.596680,75,0,118.793945,0.106125,17179364,12415979,0,0,41667,0,1,1 +1773596818.535248,29.03,4,3992.50,64.06,1197.75,2508.01,0.00,1.602498,10.674273,251,357,119.985315,0.105689,17192176,12424238,0,0,41670,0,1,1 +1773596823.534238,28.55,4,3992.50,64.13,1195.05,2510.73,0.00,3519148246450.272461,3519148246441.251953,11,0,118.815247,0.098369,17204841,12431890,0,0,41672,0,1,1 +1773596828.536344,17.82,4,3992.50,64.16,1193.79,2512.06,0.00,25143.879560,25975.821762,1749363,2290210,119.733744,0.075710,17217435,12437764,0,0,41675,0,1,1 +1773596833.535827,1.91,4,3992.50,57.91,1438.51,2267.32,0.00,0.134389,0.096397,1749373,2290230,1.406470,0.002784,17217675,12437889,0,0,41677,0,1,1 +1773596838.536229,0.75,4,3992.50,57.91,1438.56,2267.27,0.00,3518154227731.258301,3518154226899.070312,11,0,0.000008,0.000038,17217676,12437893,0,0,41680,0,1,1 +1773596843.531832,0.85,4,3992.50,58.04,1433.41,2272.36,0.00,0.180432,0.000000,205,0,0.000000,0.000020,17217676,12437895,0,0,41682,0,1,1 +1773596848.531821,0.65,4,3992.50,58.05,1432.93,2272.85,0.00,3518445225308.621094,0.000000,11,0,0.000000,0.000030,17217676,12437898,0,0,41685,0,1,1 +1773596853.536563,0.75,4,3992.50,58.05,1432.93,2272.85,0.00,1.654583,10.665081,251,357,0.000000,0.000020,17217676,12437900,0,0,41687,0,1,1 +1773596858.536170,0.80,4,3992.50,58.05,1432.93,2272.85,0.00,0.356180,3518713315268.947754,246,2,0.000000,0.000030,17217676,12437903,0,0,41690,0,1,1 +1773596863.534930,0.70,4,3992.50,58.05,1432.92,2272.86,0.00,3519310042819.029297,3519310042820.988281,75,0,0.000000,0.000020,17217676,12437905,0,0,41692,0,1,1 +1773596868.531839,0.95,4,3992.50,58.25,1428.58,2280.70,0.00,0.000000,0.000000,75,0,0.000000,0.000030,17217676,12437908,0,0,41695,0,1,1 +1773596873.535561,0.70,4,3992.50,58.26,1427.55,2280.93,0.00,0.126664,0.000000,205,0,0.000000,0.000020,17217676,12437910,0,0,41697,0,1,1 +1773596878.534735,0.75,4,3992.50,58.26,1427.56,2280.93,0.00,3519018511328.083496,0.000000,11,0,0.000126,0.000185,17217686,12437923,0,0,41700,0,1,1 +1773596883.531894,0.75,4,3992.50,58.26,1427.34,2281.15,0.00,2.013449,0.000195,246,2,0.000008,0.000028,17217687,12437926,0,0,41702,0,1,1 +1773596888.534378,0.75,4,3992.50,58.24,1428.25,2280.23,0.00,3516690315473.974609,3516690315475.805664,205,0,0.000008,0.000681,17217688,12437934,0,0,41705,0,1,1 +1773596893.535858,0.85,4,3992.50,57.86,1443.10,2265.39,0.00,3517396210852.644043,0.000000,11,0,0.002842,0.001966,17217735,12437966,0,0,41707,0,1,1 +1773596898.535557,37.39,4,3992.50,64.44,1191.34,2523.05,0.00,25165.683618,25999.478219,1750863,2290798,84.125841,0.030708,17226472,12440153,0,0,41710,0,1,1 +1773596903.535532,28.82,4,3992.50,64.42,1192.20,2522.13,0.00,3518454876621.276855,3518454875787.474609,75,0,119.169712,0.023189,17238814,12441847,0,0,41712,0,1,1 +1773596908.532064,27.90,4,3992.50,64.42,1192.18,2522.16,0.00,1.960148,0.000195,246,2,118.453424,0.038251,17251076,12444756,0,0,41715,0,1,1 +1773596913.536141,28.27,4,3992.50,64.38,1193.54,2520.69,0.00,3515570577476.661133,3515570577478.618164,75,0,119.872283,0.032633,17263442,12447305,0,0,41717,0,1,1 +1773596918.535916,28.51,4,3992.50,64.27,1197.91,2516.43,0.00,25165.248500,25999.128412,1750863,2290869,118.985977,0.063687,17275905,12452249,0,0,41720,0,1,1 +1773596923.535733,28.26,4,3992.50,64.23,1199.77,2514.55,0.00,0.000000,0.006055,1750863,2290882,119.385531,0.066156,17288426,12457399,0,0,41722,0,1,1 +1773596928.536803,28.43,4,3992.50,64.20,1200.89,2513.42,0.00,3517684323997.262695,3517684323161.634766,246,2,119.549062,0.046224,17300908,12461014,0,0,41725,0,1,1 +1773596933.536342,28.09,4,3992.50,64.31,1199.64,2518.00,0.00,0.000000,0.000000,246,2,118.788950,0.060529,17313279,12465702,0,0,41727,0,1,1 +1773596938.535566,14.39,4,3992.50,58.10,1442.99,2274.69,0.00,3518983429711.927734,3518983429713.940430,11,0,107.168313,0.030183,17324312,12468045,0,0,41730,0,1,1 +1773596943.536155,1.10,4,3992.50,58.07,1444.20,2273.46,0.00,0.000000,0.000000,11,0,0.003117,0.001457,17324370,12468086,0,0,41732,0,1,1 +1773596948.536045,0.95,4,3992.50,58.07,1444.23,2273.45,0.00,0.180277,0.000000,205,0,0.000000,0.000030,17324370,12468089,0,0,41735,0,1,1 +1773596953.535773,0.80,4,3992.50,58.07,1444.23,2273.45,0.00,1.832131,0.000195,246,2,0.000000,0.000020,17324370,12468091,0,0,41737,0,1,1 +1773596958.536616,0.95,4,3992.50,58.07,1438.21,2273.38,0.00,3517844265678.331055,10.673201,251,357,0.000000,0.000674,17324370,12468098,0,0,41740,0,1,1 +1773596963.531897,0.75,4,3992.50,58.07,1437.91,2273.61,0.00,0.000000,0.000000,251,357,0.000000,0.000020,17324370,12468100,0,0,41742,0,1,1 +1773596968.536426,0.65,4,3992.50,58.07,1437.91,2273.61,0.00,3515253421360.375977,3515253421351.185059,205,0,0.000000,0.000030,17324370,12468103,0,0,41745,0,1,1 +1773596973.536423,0.75,4,3992.50,58.07,1437.92,2273.61,0.00,0.000000,0.000000,205,0,0.000512,0.001107,17324384,12468127,0,0,41747,0,1,1 +1773596978.536325,0.75,4,3992.50,58.07,1437.92,2273.61,0.00,3518506147677.672363,0.000000,11,0,0.000008,0.000038,17324385,12468131,0,0,41750,0,1,1 +1773596983.531914,0.60,4,3992.50,58.07,1437.92,2273.61,0.00,0.180433,0.000000,205,0,0.000025,0.000051,17324387,12468135,0,0,41752,0,1,1 +1773596988.535286,0.90,4,3992.50,58.27,1437.71,2281.44,0.00,25147.162579,25981.090063,1750875,2291163,0.000101,0.000154,17324395,12468146,0,0,41755,0,1,1 +1773596993.534086,0.65,4,3992.50,58.27,1437.72,2281.44,0.00,0.000000,0.009377,1750875,2291172,0.000000,0.000020,17324395,12468148,0,0,41757,0,1,1 +1773596998.531915,0.80,4,3992.50,58.27,1437.73,2281.43,0.00,3519965950690.838867,3519965949856.157227,11,0,0.000308,0.000585,17324402,12468162,0,0,41760,0,1,1 +1773597003.536669,0.80,4,3992.50,58.08,1445.22,2273.93,0.00,0.000000,0.000000,11,0,0.000000,0.000020,17324402,12468164,0,0,41762,0,1,1 +1773597008.532223,36.29,4,3992.50,64.51,1193.36,2525.68,0.00,0.000000,0.000000,11,0,68.762581,0.031459,17331615,12470328,0,0,41765,0,1,1 +1773597013.531872,29.31,4,3992.50,64.68,1186.71,2532.35,0.00,25166.082638,26000.660693,1750885,2291384,119.774668,0.020975,17343885,12471880,0,0,41767,0,1,1 +1773597018.531942,27.94,4,3992.50,64.25,1203.44,2515.64,0.00,3518387592751.095703,3518387591925.606934,251,357,118.561768,0.018208,17355938,12473222,0,0,41770,0,1,1 +1773597023.535660,28.77,4,3992.50,64.47,1192.50,2523.95,0.00,3515822973004.321289,3515822972995.255859,75,0,119.677067,0.028136,17368051,12475344,0,0,41772,0,1,1 +1773597028.531993,28.25,4,3992.50,64.51,1190.63,2525.78,0.00,0.000000,0.000000,75,0,118.653317,0.032330,17380171,12477859,0,0,41775,0,1,1 +1773597033.536088,28.41,4,3992.50,64.18,1203.55,2512.86,0.00,3515557702754.650879,0.000000,11,0,119.868141,0.029269,17392379,12480094,0,0,41777,0,1,1 +1773597038.533174,28.33,4,3992.50,64.52,1190.75,2526.05,0.00,0.053547,0.000000,75,0,118.829378,0.021918,17404295,12481813,0,0,41780,0,1,1 +1773597043.537221,28.48,4,3992.50,64.46,1192.48,2523.79,0.00,1.957205,0.000195,246,2,119.472578,0.034040,17416710,12484452,0,0,41782,0,1,1 +1773597048.533179,17.92,4,3992.50,64.37,1196.27,2520.25,0.00,3521283496841.919434,10.683636,251,357,119.458169,0.038172,17428717,12487425,0,0,41785,0,1,1 +1773597053.531858,1.30,4,3992.50,58.13,1440.55,2275.95,0.00,25159.881508,25984.741932,1749409,2291190,2.407281,0.002453,17429039,12487536,0,0,41787,0,1,1 +1773597058.536361,0.80,4,3992.50,58.13,1440.68,2275.82,0.00,9.552920,10.803356,1750898,2291605,0.000000,0.000030,17429039,12487539,0,0,41790,0,1,1 +1773597063.535762,0.60,4,3992.50,58.13,1440.68,2275.82,0.00,3518858812496.996582,3518858812495.885742,1749409,2291249,0.000000,0.000020,17429039,12487541,0,0,41792,0,1,1 +1773597068.536224,0.65,4,3992.50,58.09,1442.23,2274.28,0.00,3518112296612.054688,3518112295778.329590,11,0,0.000000,0.000030,17429039,12487544,0,0,41795,0,1,1 +1773597073.535631,0.65,4,3992.50,58.09,1442.23,2274.28,0.00,0.053522,0.000000,75,0,0.000000,0.000020,17429039,12487546,0,0,41797,0,1,1 +1773597078.533275,1.05,4,3992.50,58.15,1441.04,2276.63,0.00,3520096003435.383301,0.000000,11,0,0.000000,0.000030,17429039,12487549,0,0,41800,0,1,1 +1773597083.536148,0.65,4,3992.50,58.11,1442.10,2275.14,0.00,2.011149,0.000195,246,2,0.000000,0.000020,17429039,12487551,0,0,41802,0,1,1 +1773597088.536754,0.55,4,3992.50,58.12,1441.89,2275.35,0.00,3518010794310.820312,3518010794312.832520,11,0,0.000000,0.000674,17429039,12487558,0,0,41805,0,1,1 +1773597093.535848,0.75,4,3992.50,58.12,1441.87,2275.37,0.00,0.053525,0.000000,75,0,0.000000,0.000020,17429039,12487560,0,0,41807,0,1,1 +1773597098.535704,0.60,4,3992.50,58.12,1441.62,2275.62,0.00,3518539164888.819824,0.000000,11,0,0.000126,0.000185,17429049,12487573,0,0,41810,0,1,1 +1773597103.532805,0.65,4,3992.50,58.12,1441.62,2275.61,0.00,0.000000,0.000000,11,0,0.000016,0.000036,17429051,12487577,0,0,41812,0,1,1 +1773597108.535939,0.95,4,3992.50,57.89,1444.46,2266.71,0.00,0.053482,0.000000,75,0,0.000000,0.000030,17429051,12487580,0,0,41815,0,1,1 +1773597113.535854,0.75,4,3992.50,57.68,1452.47,2258.20,0.00,3518496491326.829590,0.000000,11,0,0.000000,0.000020,17429051,12487582,0,0,41817,0,1,1 +1773597118.531791,31.17,4,3992.50,63.88,1209.69,2500.97,0.00,1.657499,10.683878,251,357,68.968239,0.049422,17436532,12491202,0,0,41820,0,1,1 +1773597123.535754,31.77,4,3992.50,64.19,1197.65,2512.99,0.00,3515650338795.432617,3515650338786.367676,75,0,123.485870,0.043849,17449068,12494496,0,0,41822,0,1,1 +1773597128.534720,29.04,4,3992.50,64.17,1198.14,2512.48,0.00,25160.039864,25994.381460,1749409,2291536,120.498787,0.026018,17460840,12496428,0,0,41825,0,1,1 +1773597133.535755,28.40,4,3992.50,64.26,1194.59,2516.01,0.00,3517709263448.894531,3517709262612.939941,246,2,120.070913,0.026238,17472449,12498429,0,0,41827,0,1,1 +1773597138.536673,28.09,4,3992.50,64.28,1193.80,2516.85,0.00,25148.260305,25984.304070,1749409,2291579,119.366048,0.034589,17484176,12501142,0,0,41830,0,1,1 +1773597143.533546,28.45,4,3992.50,64.47,1186.65,2524.09,0.00,3520639001217.460938,3520639000382.753906,11,0,119.307685,0.030730,17495308,12503533,0,0,41832,0,1,1 +1773597148.531817,28.38,4,3992.50,64.58,1182.44,2528.32,0.00,25163.592367,25998.246058,1749409,2291635,119.083845,0.029860,17506209,12505791,0,0,41835,0,1,1 +1773597153.531807,28.21,4,3992.50,64.71,1177.05,2533.73,0.00,3518443784328.849609,3518443783494.482422,11,0,119.859217,0.029278,17517134,12508038,0,0,41837,0,1,1 +1773597158.531898,15.54,4,3992.50,58.57,1417.72,2293.09,0.00,0.000000,0.000000,11,0,114.795785,0.028653,17527562,12510201,0,0,41840,0,1,1 +1773597163.536664,1.10,4,3992.50,58.44,1422.85,2287.93,0.00,25140.628083,25975.281008,1750909,2292040,0.002394,0.001121,17527613,12510239,0,0,41842,0,1,1 +1773597168.531895,1.05,4,3992.50,58.32,1427.34,2283.45,0.00,3521796436571.347168,3521796435734.920410,205,0,0.000856,0.000474,17527631,12510254,0,0,41845,0,1,1 +1773597173.531831,0.70,4,3992.50,58.11,1435.50,2275.30,0.00,3518482156788.876465,0.000000,11,0,0.000000,0.000020,17527631,12510256,0,0,41847,0,1,1 +1773597178.536200,0.60,4,3992.50,58.10,1436.18,2274.62,0.00,1.654706,10.665875,251,357,0.000000,0.000030,17527631,12510259,0,0,41850,0,1,1 +1773597183.535209,0.65,4,3992.50,58.10,1436.18,2274.62,0.00,25158.360822,25984.060979,1749420,2291765,0.000000,0.000020,17527631,12510261,0,0,41852,0,1,1 +1773597188.535313,0.75,4,3992.50,58.07,1437.28,2273.52,0.00,3518363393092.782227,3518363392258.190430,75,0,0.000000,0.000030,17527631,12510264,0,0,41855,0,1,1 +1773597193.535583,0.80,4,3992.50,57.91,1443.49,2267.31,0.00,1.958683,0.000195,246,2,0.002831,0.001950,17527677,12510294,0,0,41857,0,1,1 +1773597198.534454,0.95,4,3992.50,58.14,1435.30,2276.37,0.00,3519231702184.296875,3519231702186.129395,205,0,0.000016,0.000046,17527679,12510299,0,0,41860,0,1,1 +1773597203.531837,0.80,4,3992.50,58.17,1434.36,2277.34,0.00,3520279844451.231934,0.000000,11,0,0.000000,0.000020,17527679,12510301,0,0,41862,0,1,1 +1773597208.534582,1.40,4,3992.50,58.13,1435.61,2276.08,0.00,25150.781544,25986.079788,1750909,2292193,0.000025,0.000061,17527681,12510306,0,0,41865,0,1,1 +1773597213.534161,0.70,4,3992.50,58.14,1435.37,2276.32,0.00,3518733676440.667480,3518733675604.840332,11,0,0.000050,0.000082,17527685,12510312,0,0,41867,0,1,1 +1773597218.536451,0.65,4,3992.50,57.95,1443.00,2268.70,0.00,25143.511157,25977.781361,1749420,2291843,0.000000,0.000673,17527685,12510319,0,0,41870,0,1,1 +1773597223.531932,0.70,4,3992.50,57.94,1443.14,2268.55,0.00,3521619871634.176270,3521619870798.769043,11,0,0.000000,0.000020,17527685,12510321,0,0,41872,0,1,1 +1773597228.532960,29.89,4,3992.50,64.54,1184.53,2527.07,0.00,0.000000,0.000000,11,0,55.870821,0.029458,17533541,12512367,0,0,41875,0,1,1 +1773597233.533722,31.69,4,3992.50,64.12,1200.96,2510.55,0.00,1.655900,10.673570,251,357,119.146479,0.045870,17545626,12515877,0,0,41877,0,1,1 +1773597238.531824,28.44,4,3992.50,64.14,1200.09,2511.41,0.00,25162.923846,25989.035385,1749420,2292014,118.805323,0.041120,17557527,12519076,0,0,41880,0,1,1 +1773597243.535900,28.57,4,3992.50,64.29,1194.71,2516.91,0.00,3515571103840.708496,3515571103015.583008,251,357,119.465567,0.043256,17569586,12522438,0,0,41882,0,1,1 +1773597248.531794,28.64,4,3992.50,64.13,1200.77,2510.83,0.00,3521329004546.559082,3521329004537.352051,205,0,118.861343,0.037915,17581677,12525360,0,0,41885,0,1,1 +1773597253.535872,28.37,4,3992.50,64.50,1186.32,2525.27,0.00,1.830538,0.000195,246,2,119.464781,0.036944,17593748,12528267,0,0,41887,0,1,1 +1773597258.535536,28.72,4,3992.50,64.27,1195.57,2516.11,0.00,3518673423761.917480,3518673423763.749512,205,0,119.175996,0.037314,17606016,12531161,0,0,41890,0,1,1 +1773597263.535541,28.66,4,3992.50,64.27,1201.61,2516.23,0.00,25164.385929,26000.720107,1750909,2292470,119.762890,0.039230,17618104,12534210,0,0,41892,0,1,1 +1773597268.533363,21.42,4,3992.50,64.51,1192.21,2525.75,0.00,3519970187570.057617,3519970187568.948730,1749421,2292124,119.213223,0.042203,17630088,12537513,0,0,41895,0,1,1 +1773597273.535979,1.20,4,3992.50,58.40,1431.49,2286.46,0.00,3516598016330.359375,3516598015504.763672,251,357,15.616809,0.008796,17631760,12538064,0,0,41897,0,1,1 +1773597278.536339,0.75,4,3992.50,58.37,1432.49,2285.47,0.00,0.000000,0.000000,251,357,0.000008,0.000038,17631761,12538068,0,0,41900,0,1,1 +1773597283.535838,1.00,4,3992.50,58.39,1432.03,2285.93,0.00,25165.589763,25992.906821,1750920,2292551,0.000000,0.000020,17631761,12538070,0,0,41902,0,1,1 +1773597288.536454,1.00,4,3992.50,58.30,1424.46,2282.57,0.00,3518003279526.437500,3518003278690.233887,75,0,0.000000,0.000674,17631761,12538077,0,0,41905,0,1,1 +1773597293.536586,0.60,4,3992.50,58.25,1426.39,2280.66,0.00,3518344465323.040527,0.000000,11,0,0.000000,0.000020,17631761,12538079,0,0,41907,0,1,1 +1773597298.536089,0.75,4,3992.50,58.25,1426.39,2280.66,0.00,2.012505,0.000195,246,2,0.000308,0.000584,17631768,12538093,0,0,41910,0,1,1 +1773597303.535253,0.75,4,3992.50,58.25,1426.41,2280.64,0.00,25166.921176,26005.473612,1750920,2292627,0.000000,0.000020,17631768,12538095,0,0,41912,0,1,1 +1773597308.532803,0.65,4,3992.50,58.25,1426.41,2280.64,0.00,3520161924881.316895,3520161924880.236816,1749431,2292305,0.000213,0.000570,17631776,12538110,0,0,41915,0,1,1 +1773597313.535045,0.70,4,3992.50,58.25,1426.41,2280.64,0.00,9.557237,10.676071,1750920,2292669,0.000000,0.000020,17631776,12538112,0,0,41917,0,1,1 +1773597318.536073,0.85,4,3992.50,58.29,1430.89,2282.33,0.00,3517714388391.961914,3517714387553.681641,246,2,0.000188,0.000236,17631790,12538129,0,0,41920,0,1,1 +1773597323.535934,0.70,4,3992.50,58.29,1430.89,2282.33,0.00,3518534813742.284180,10.675296,251,357,0.000008,0.000028,17631791,12538132,0,0,41922,0,1,1 +1773597328.536186,0.75,4,3992.50,58.11,1438.24,2274.98,0.00,3518260260796.334961,3518260260787.316895,11,0,0.000000,0.000030,17631791,12538135,0,0,41925,0,1,1 +1773597333.532279,0.75,4,3992.50,58.13,1437.50,2275.72,0.00,0.180414,0.000000,205,0,0.000000,0.000020,17631791,12538137,0,0,41927,0,1,1 +1773597338.531848,25.41,4,3992.50,64.11,1203.17,2509.96,0.00,1.832189,0.000195,246,2,51.479962,0.025280,17637198,12539922,0,0,41930,0,1,1 +1773597343.531814,33.05,4,3992.50,64.30,1195.72,2517.37,0.00,25153.319677,25990.848631,1749431,2292484,123.971941,0.032341,17649823,12542377,0,0,41932,0,1,1 +1773597348.534966,28.54,4,3992.50,64.34,1194.37,2518.89,0.00,0.000000,0.038843,1749431,2292504,121.091783,0.026283,17662176,12544330,0,0,41935,0,1,1 +1773597353.532536,28.39,4,3992.50,64.20,1199.65,2513.43,0.00,0.000000,0.062042,1749431,2292519,121.225364,0.016829,17674648,12545593,0,0,41937,0,1,1 +1773597358.536609,28.60,4,3992.50,64.47,1178.76,2524.28,0.00,3515573066039.999512,3515573065214.079102,251,357,120.067590,0.015897,17686968,12546818,0,0,41940,0,1,1 +1773597363.533915,28.02,4,3992.50,64.09,1193.91,2509.19,0.00,3520333973979.592285,3520333973970.568848,11,0,119.436675,0.041966,17699243,12550048,0,0,41942,0,1,1 +1773597368.536676,28.69,4,3992.50,64.25,1187.36,2515.70,0.00,25150.837550,25987.159261,1750920,2292935,119.716819,0.069578,17711792,12555495,0,0,41945,0,1,1 +1773597373.536105,28.63,4,3992.50,64.13,1192.14,2510.98,0.00,3518838749375.959961,3518838748537.068359,246,2,119.590290,0.060177,17724200,12560170,0,0,41947,0,1,1 +1773597378.536411,19.40,4,3992.50,64.27,1187.02,2516.14,0.00,3518222102670.896484,3518222102672.909180,11,0,119.158797,0.033999,17736342,12562786,0,0,41950,0,1,1 +1773597383.536577,1.50,4,3992.50,59.39,1382.31,2325.21,0.00,0.000000,0.000000,11,0,9.616688,0.003923,17737427,12563013,0,0,41952,0,1,1 +1773597388.531897,0.70,4,3992.50,58.80,1405.34,2302.18,0.00,0.180442,0.000000,205,0,0.000000,0.000030,17737427,12563016,0,0,41955,0,1,1 +1773597393.531808,0.70,4,3992.50,58.56,1414.85,2292.66,0.00,3518499981033.834961,0.000000,75,0,0.000000,0.000020,17737427,12563018,0,0,41957,0,1,1 +1773597398.533424,0.75,4,3992.50,58.53,1415.92,2291.59,0.00,0.000000,0.000000,75,0,0.000000,0.000030,17737427,12563021,0,0,41960,0,1,1 +1773597403.535816,0.65,4,3992.50,58.54,1415.70,2291.81,0.00,0.126697,0.000000,205,0,0.000000,0.000020,17737427,12563023,0,0,41962,0,1,1 +1773597408.536210,1.10,4,3992.50,58.54,1419.02,2291.97,0.00,0.000000,0.000000,205,0,0.000000,0.000030,17737427,12563026,0,0,41965,0,1,1 +1773597413.536135,1.45,4,3992.50,58.48,1421.28,2289.54,0.00,3518489948936.313965,0.000000,75,0,0.000000,0.000020,17737427,12563028,0,0,41967,0,1,1 +1773597418.535853,0.70,4,3992.50,58.48,1421.28,2289.54,0.00,25166.164432,26003.441741,1750932,2293150,0.000000,0.000664,17737427,12563034,0,0,41969,0,1,1 +1773597423.536176,0.65,4,3992.50,58.48,1421.28,2289.54,0.00,3518209853181.454102,3518209852344.332031,11,0,0.000000,0.000030,17737427,12563037,0,0,41972,0,1,1 +1773597428.535612,0.70,4,3992.50,58.48,1421.06,2289.75,0.00,0.000000,0.000000,11,0,0.000126,0.000185,17737437,12563050,0,0,41975,0,1,1 +1773597433.536044,0.70,4,3992.50,58.40,1424.38,2286.44,0.00,1.656009,10.674273,251,357,0.000016,0.000036,17737439,12563054,0,0,41977,0,1,1 +1773597438.535902,0.90,4,3992.50,58.50,1417.63,2290.31,0.00,25163.855190,25992.076802,1750932,2293175,0.000000,0.000030,17737439,12563057,0,0,41980,0,1,1 +1773597443.536008,0.60,4,3992.50,58.50,1417.17,2290.54,0.00,3518362388963.445801,3518362388126.192871,75,0,0.000000,0.000020,17737439,12563059,0,0,41982,0,1,1 +1773597448.532744,23.61,4,3992.50,64.32,1189.28,2518.39,0.00,1.603684,10.682168,251,357,39.085024,0.020266,17741578,12564395,0,0,41985,0,1,1 +1773597453.536123,32.01,4,3992.50,64.31,1189.62,2517.99,0.00,3516061509491.969238,3516061509482.776367,205,0,118.094306,0.049229,17753786,12568160,0,0,41987,0,1,1 +1773597458.535953,28.05,4,3992.50,64.24,1192.50,2515.18,0.00,25165.473270,26002.950070,1750932,2293267,120.191108,0.085992,17766334,12574815,0,0,41990,0,1,1 +1773597463.536009,28.01,4,3992.50,64.53,1181.09,2526.50,0.00,3518397893771.134277,3518397892931.862793,246,2,118.582616,0.081450,17778742,12581181,0,0,41992,0,1,1 +1773597468.535532,28.16,4,3992.50,64.59,1179.93,2528.71,0.00,3518772599283.979492,3518772599285.992188,11,0,119.807927,0.103765,17791489,12589257,0,0,41995,0,1,1 +1773597473.536107,27.86,4,3992.50,64.54,1180.59,2527.02,0.00,1.655962,10.673969,251,357,118.983181,0.110553,17804187,12597887,0,0,41997,0,1,1 +1773597478.532441,28.47,4,3992.50,64.66,1175.94,2531.58,0.00,25172.035925,26000.080225,1749443,2293076,119.486346,0.110505,17816982,12606497,0,0,42000,0,1,1 +1773597483.536052,28.03,4,3992.50,64.33,1189.00,2518.52,0.00,3515898257260.836426,3515898256424.930176,75,0,120.112771,0.111217,17829888,12615110,0,0,42002,0,1,1 +1773597488.535954,24.58,4,3992.50,64.47,1183.63,2523.99,0.00,25155.675911,25992.206231,1749444,2293095,118.186905,0.082874,17842349,12621579,0,0,42005,0,1,1 +1773597493.536556,1.40,4,3992.50,58.18,1429.93,2277.68,0.00,3518013109763.044922,3518013108926.504883,205,0,33.050018,0.020321,17845879,12623055,0,0,42007,0,1,1 +1773597498.536569,0.75,4,3992.50,58.01,1436.35,2271.25,0.00,25155.130597,25991.793800,1749454,2293163,0.000619,0.000282,17845891,12623065,0,0,42010,0,1,1 +1773597503.531889,0.95,4,3992.50,58.48,1418.17,2289.48,0.00,3521733309873.100098,3521733309044.858887,251,357,0.000000,0.000020,17845891,12623067,0,0,42012,0,1,1 +1773597508.531823,0.70,4,3992.50,58.48,1418.17,2289.48,0.00,3518483562087.741211,3518483562078.668945,75,0,0.000000,0.000030,17845891,12623070,0,0,42015,0,1,1 +1773597513.536435,0.75,4,3992.50,58.47,1418.29,2289.36,0.00,0.000000,0.000000,75,0,0.000000,0.000020,17845891,12623072,0,0,42017,0,1,1 +1773597518.531821,0.80,4,3992.50,58.28,1425.69,2281.96,0.00,1.960598,0.000195,246,2,0.000000,0.000030,17845891,12623075,0,0,42020,0,1,1 +1773597523.531829,0.70,4,3992.50,58.28,1425.69,2281.96,0.00,0.000000,0.000000,246,2,0.000000,0.000020,17845891,12623077,0,0,42022,0,1,1 +1773597528.536692,0.95,4,3992.50,58.29,1422.06,2282.16,0.00,3515018655694.530273,3515018655696.486816,75,0,0.000000,0.000030,17845891,12623080,0,0,42025,0,1,1 +1773597533.532459,0.80,4,3992.50,58.11,1429.21,2275.01,0.00,25176.634380,26014.110817,1749454,2293258,0.000000,0.000020,17845891,12623082,0,0,42027,0,1,1 +1773597538.534601,0.65,4,3992.50,58.11,1428.99,2275.22,0.00,3516930150319.642090,3516930149483.232910,75,0,0.000151,0.000216,17845903,12623097,0,0,42030,0,1,1 +1773597543.536129,0.75,4,3992.50,58.11,1428.99,2275.22,0.00,0.000000,0.000000,75,0,0.000041,0.000067,17845907,12623103,0,0,42032,0,1,1 +1773597548.536589,1.05,4,3992.50,57.92,1436.40,2267.81,0.00,25162.565895,26000.381033,1750943,2293626,0.000000,0.000674,17845907,12623110,0,0,42035,0,1,1 +1773597553.531830,0.65,4,3992.50,57.94,1435.67,2268.55,0.00,3521789709877.478516,3521789709036.827148,246,2,0.000000,0.000020,17845907,12623112,0,0,42037,0,1,1 +1773597558.532582,22.03,4,3992.50,65.13,1154.27,2549.98,0.00,3517907954404.661133,3517907954406.673340,11,0,28.039057,0.021048,17848898,12624517,0,0,42040,0,1,1 +1773597563.536674,32.18,4,3992.50,64.60,1174.71,2529.38,0.00,25134.801952,25970.994771,1749454,2293424,120.079809,0.048229,17861360,12628180,0,0,42042,0,1,1 +1773597568.536711,28.19,4,3992.50,64.67,1172.09,2532.02,0.00,3518410789313.768555,3518410788476.897461,11,0,118.178019,0.062490,17873721,12633012,0,0,42045,0,1,1 +1773597573.535679,28.39,4,3992.50,64.77,1168.16,2535.98,0.00,25160.568360,25997.644267,1749454,2293467,120.205034,0.062986,17886204,12637857,0,0,42047,0,1,1 +1773597578.532699,28.10,4,3992.50,64.40,1182.65,2521.52,0.00,0.000000,0.001075,1749454,2293472,119.065023,0.103900,17898913,12645987,0,0,42050,0,1,1 +1773597583.536713,28.13,4,3992.50,64.67,1171.97,2532.11,0.00,0.000000,0.003610,1749454,2293484,119.302166,0.110965,17911747,12654644,0,0,42052,0,1,1 +1773597588.536375,27.99,4,3992.50,64.84,1176.00,2538.53,0.00,3518675471949.463867,3518675471112.499023,11,0,119.603544,0.108438,17924377,12663079,0,0,42055,0,1,1 +1773597593.532735,28.11,4,3992.50,64.54,1187.80,2526.69,0.00,0.180405,0.000000,205,0,118.879572,0.104281,17936950,12671218,0,0,42057,0,1,1 +1773597598.536174,26.95,4,3992.50,64.42,1192.21,2522.36,0.00,1.830772,0.000195,246,2,119.918086,0.115879,17949759,12680161,0,0,42060,0,1,1 +1773597603.535837,1.76,4,3992.50,58.52,1423.54,2291.04,0.00,3518673924150.761230,3518673924152.773438,11,0,42.276546,0.038903,17954361,12683107,0,0,42062,0,1,1 +1773597608.536548,1.00,4,3992.50,58.48,1425.04,2289.54,0.00,0.000000,0.000000,11,0,0.000213,0.000570,17954369,12683122,0,0,42065,0,1,1 +1773597613.535995,0.65,4,3992.50,58.48,1424.87,2289.71,0.00,25167.864231,26006.262970,1750963,2294056,0.000000,0.000664,17954369,12683128,0,0,42067,0,1,1 +1773597618.531891,1.00,4,3992.50,58.43,1420.53,2287.82,0.00,0.000000,0.072716,1750963,2294085,0.000062,0.000080,17954373,12683135,0,0,42070,0,1,1 +1773597623.531820,0.80,4,3992.50,58.43,1420.53,2287.81,0.00,3518487284867.975098,3518487284027.571777,246,2,0.000000,0.000020,17954373,12683137,0,0,42072,0,1,1 +1773597628.536207,0.70,4,3992.50,58.43,1420.53,2287.81,0.00,25141.007882,25980.684525,1750963,2294109,0.000000,0.000030,17954373,12683140,0,0,42075,0,1,1 +1773597633.536495,0.75,4,3992.50,58.43,1420.53,2287.81,0.00,3518234608694.931152,3518234607856.524414,75,0,0.000000,0.000020,17954373,12683142,0,0,42077,0,1,1 +1773597638.531914,0.65,4,3992.50,58.44,1420.29,2288.05,0.00,0.126874,0.000000,205,0,0.000000,0.000030,17954373,12683145,0,0,42080,0,1,1 +1773597643.532719,0.70,4,3992.50,58.44,1420.29,2288.05,0.00,3517870274538.221191,0.000000,75,0,0.000031,0.000045,17954375,12683149,0,0,42082,0,1,1 +1773597648.536105,1.05,4,3992.50,58.38,1430.88,2285.80,0.00,3516056307838.237305,0.000000,11,0,0.000134,0.000193,17954386,12683163,0,0,42085,0,1,1 +1773597653.536128,0.70,4,3992.50,58.19,1438.49,2278.15,0.00,1.656145,10.675148,251,357,0.000039,0.000053,17954389,12683168,0,0,42087,0,1,1 +1773597658.536306,0.70,4,3992.50,58.12,1441.30,2275.35,0.00,25152.964556,25981.354164,1749474,2293793,0.000000,0.000030,17954389,12683171,0,0,42090,0,1,1 +1773597663.535920,0.70,4,3992.50,58.15,1440.07,2276.57,0.00,3518708795676.597168,3518708794837.082031,246,2,0.000000,0.000020,17954389,12683173,0,0,42092,0,1,1 +1773597668.532361,24.97,4,3992.50,64.48,1192.17,2524.43,0.00,25180.995516,26022.177932,1750963,2294195,40.891227,0.023557,17958769,12684820,0,0,42095,0,1,1 +1773597673.536442,31.29,4,3992.50,64.73,1182.15,2534.41,0.00,3515567463263.051758,3515567462424.984375,205,0,118.668308,0.026526,17970955,12686824,0,0,42097,0,1,1 +1773597678.536249,28.92,4,3992.50,64.52,1190.68,2525.95,0.00,0.000000,0.000000,205,0,119.569496,0.018047,17983165,12688116,0,0,42100,0,1,1 +1773597683.534948,27.91,4,3992.50,64.60,1187.12,2529.38,0.00,25161.885684,25999.902317,1749474,2293979,118.192027,0.017577,17995099,12689435,0,0,42102,0,1,1 +1773597688.534561,28.70,4,3992.50,64.66,1184.91,2531.62,0.00,3518709628267.207520,3518709627438.543457,251,357,120.177761,0.031716,18007339,12691901,0,0,42105,0,1,1 +1773597693.535629,28.36,4,3992.50,64.73,1182.26,2534.19,0.00,3517685978195.928711,3517685978186.858398,75,0,118.943484,0.031461,18019574,12694302,0,0,42107,0,1,1 +1773597698.532179,28.61,4,3992.50,64.71,1182.93,2533.57,0.00,3520866409537.208008,0.000000,11,0,119.446774,0.021857,18031687,12695984,0,0,42110,0,1,1 +1773597703.532506,28.46,4,3992.50,64.95,1173.81,2542.83,0.00,25153.873103,25991.617556,1749474,2294055,120.162921,0.037454,18043979,12698880,0,0,42112,0,1,1 +1773597708.531833,24.12,4,3992.50,64.57,1188.39,2528.19,0.00,3518910955825.140137,3518910954985.215820,246,2,118.183811,0.036715,18056060,12701711,0,0,42115,0,1,1 +1773597713.536630,1.50,4,3992.50,60.34,1343.15,2362.40,0.00,25129.535407,25968.631838,1749485,2294147,31.217220,0.009010,18059322,12702321,0,0,42117,0,1,1 +1773597718.535705,1.75,4,3992.50,58.99,1395.78,2309.77,0.00,9.563293,10.716632,1750974,2294550,0.000008,0.000038,18059323,12702325,0,0,42120,0,1,1 +1773597723.536749,0.65,4,3992.50,58.87,1400.62,2304.93,0.00,3517702813304.324219,3517702812465.457031,11,0,0.000000,0.000020,18059323,12702327,0,0,42122,0,1,1 +1773597728.531911,0.75,4,3992.50,58.86,1400.97,2304.59,0.00,0.180448,0.000000,205,0,0.000000,0.000030,18059323,12702330,0,0,42125,0,1,1 +1773597733.536229,0.70,4,3992.50,58.86,1400.97,2304.59,0.00,25133.773927,25971.173784,1749485,2294203,0.000000,0.000020,18059323,12702332,0,0,42127,0,1,1 +1773597738.532490,1.15,4,3992.50,58.87,1403.29,2304.74,0.00,3521069722773.377930,3521069721934.627441,205,0,0.000000,0.000030,18059323,12702335,0,0,42130,0,1,1 +1773597743.536663,0.70,4,3992.50,58.83,1404.84,2303.19,0.00,3515503524707.155273,0.000000,11,0,0.000000,0.000502,18059323,12702340,0,0,42132,0,1,1 +1773597748.533563,0.65,4,3992.50,58.83,1404.61,2303.43,0.00,1.657180,10.681819,251,357,0.000000,0.000191,18059323,12702344,0,0,42135,0,1,1 +1773597753.535733,0.75,4,3992.50,58.84,1404.39,2303.64,0.00,25143.084945,25971.830023,1749485,2294271,0.000000,0.000020,18059323,12702346,0,0,42137,0,1,1 +1773597758.535937,0.75,4,3992.50,58.84,1404.39,2303.64,0.00,3518294196733.093750,3518294195895.003418,11,0,0.000126,0.000185,18059333,12702359,0,0,42140,0,1,1 +1773597763.531808,0.70,4,3992.50,58.85,1403.96,2304.08,0.00,25186.015118,26025.954273,1750974,2294635,0.000016,0.000036,18059335,12702363,0,0,42142,0,1,1 +1773597768.535642,0.95,4,3992.50,59.04,1409.48,2311.71,0.00,3515741456612.958008,3515741455783.367188,251,357,0.000000,0.000030,18059335,12702366,0,0,42145,0,1,1 +1773597773.536133,0.55,4,3992.50,59.04,1409.41,2311.66,0.00,3518091638701.566406,3518091638692.368164,205,0,0.000000,0.000020,18059335,12702368,0,0,42147,0,1,1 +1773597778.531771,22.36,4,3992.50,64.73,1186.82,2534.34,0.00,25177.439695,26016.552824,1749485,2294347,30.674222,0.019426,18062622,12703665,0,0,42150,0,1,1 +1773597783.532447,32.26,4,3992.50,64.99,1176.29,2544.69,0.00,0.000000,0.111411,1749485,2294444,119.154218,0.030032,18074924,12705905,0,0,42152,0,1,1 +1773597788.535711,28.79,4,3992.50,64.84,1182.40,2538.61,0.00,3516142146414.914551,3516142145575.138672,246,2,119.702494,0.061556,18087362,12710629,0,0,42155,0,1,1 +1773597793.535536,28.65,4,3992.50,64.82,1183.29,2537.68,0.00,0.000000,0.000000,246,2,119.402167,0.096201,18100124,12717952,0,0,42157,0,1,1 +1773597798.532679,28.56,4,3992.50,64.89,1180.35,2540.64,0.00,25177.595364,26019.552715,1750974,2294843,119.261388,0.099822,18112766,12725744,0,0,42160,0,1,1 +1773597803.535924,29.47,4,3992.50,64.95,1181.29,2543.00,0.00,3516155104822.048340,3516155103983.075195,75,0,119.312632,0.083134,18125483,12732246,0,0,42162,0,1,1 +1773597808.536198,28.47,4,3992.50,64.96,1180.94,2543.30,0.00,0.126751,0.000000,205,0,119.180394,0.083168,18137948,12738700,0,0,42165,0,1,1 +1773597813.531806,28.52,4,3992.50,64.92,1182.68,2541.61,0.00,1.833642,0.000195,246,2,119.291684,0.088699,18150453,12745562,0,0,42167,0,1,1 +1773597818.533897,26.71,4,3992.50,64.86,1184.77,2539.56,0.00,25152.691699,25994.019365,1750975,2294934,119.546683,0.109147,18163243,12754066,0,0,42170,0,1,1 +1773597823.532866,1.25,4,3992.50,58.57,1431.18,2293.13,0.00,3519162504931.066406,3519162504089.213379,246,2,40.078020,0.038882,18167646,12757018,0,0,42172,0,1,1 +1773597828.536469,1.00,4,3992.50,58.66,1426.93,2296.75,0.00,3515903933997.748047,3515903933999.759277,11,0,0.000008,0.000038,18167647,12757022,0,0,42175,0,1,1 +1773597833.531891,0.70,4,3992.50,58.67,1426.62,2297.07,0.00,0.180439,0.000000,205,0,0.000000,0.000020,18167647,12757024,0,0,42177,0,1,1 +1773597838.536741,0.65,4,3992.50,58.61,1428.90,2294.80,0.00,0.000000,0.000000,205,0,0.000050,0.000092,18167651,12757031,0,0,42180,0,1,1 +1773597843.535932,0.65,4,3992.50,58.63,1428.17,2295.53,0.00,0.000000,0.000000,205,0,0.000000,0.000020,18167651,12757033,0,0,42182,0,1,1 +1773597848.536359,1.05,4,3992.50,58.65,1427.43,2296.27,0.00,3518137186365.531250,0.000000,11,0,0.000000,0.000030,18167651,12757036,0,0,42185,0,1,1 +1773597853.536613,0.55,4,3992.50,58.66,1427.21,2296.48,0.00,0.053513,0.000000,75,0,0.000000,0.000020,18167651,12757038,0,0,42187,0,1,1 +1773597858.536550,1.00,4,3992.50,58.71,1428.70,2298.65,0.00,1.602657,10.675330,251,357,0.000000,0.000020,18167651,12757040,0,0,42189,0,1,1 +1773597863.535751,0.65,4,3992.50,58.69,1429.32,2297.67,0.00,3518999854026.404297,3518999854017.383789,11,0,0.000000,0.000030,18167651,12757043,0,0,42192,0,1,1 +1773597868.531810,0.70,4,3992.50,58.69,1429.33,2297.66,0.00,2.013892,0.000195,246,2,0.000126,0.000185,18167661,12757056,0,0,42195,0,1,1 +1773597873.531911,0.65,4,3992.50,58.69,1429.33,2297.66,0.00,3518365579181.690430,10.674783,251,357,0.000520,0.001115,18167676,12757081,0,0,42197,0,1,1 +1773597878.535823,0.70,4,3992.50,58.69,1429.33,2297.66,0.00,25134.492189,25963.605534,1749500,2294742,0.000000,0.000030,18167676,12757084,0,0,42200,0,1,1 +1773597883.535805,20.11,4,3992.50,64.93,1184.87,2542.07,0.00,9.561560,10.683732,1750989,2295133,22.836608,0.019651,18170149,12758332,0,0,42202,0,1,1 +1773597888.531918,32.93,4,3992.50,65.36,1169.91,2559.14,0.00,3521173926011.421875,3521173925179.891113,251,357,118.268906,0.051336,18182526,12762259,0,0,42205,0,1,1 +1773597893.532255,28.23,4,3992.50,64.95,1183.98,2542.90,0.00,3518199966806.821777,3518199966797.803711,11,0,120.192653,0.111091,18195462,12770885,0,0,42207,0,1,1 +1773597898.536410,27.90,4,3992.50,64.89,1186.36,2540.52,0.00,0.000000,0.000000,11,0,118.698036,0.110632,18208150,12779521,0,0,42209,0,1,1 +1773597903.536241,28.89,4,3992.50,64.85,1187.84,2539.03,0.00,0.180280,0.000000,205,0,119.600023,0.108184,18220966,12787993,0,0,42212,0,1,1 +1773597908.533839,28.51,4,3992.50,64.95,1183.88,2543.04,0.00,25167.726524,26007.337807,1749500,2294996,119.457845,0.107589,18233851,12796296,0,0,42215,0,1,1 +1773597913.535912,29.15,4,3992.50,65.04,1180.36,2546.49,0.00,3516978699694.635254,3516978698855.901855,75,0,118.945683,0.106760,18246555,12804641,0,0,42217,0,1,1 +1773597918.535534,28.58,4,3992.50,65.21,1174.00,2552.92,0.00,1.602758,10.676003,251,357,120.203685,0.095671,18259364,12812101,0,0,42220,0,1,1 +1773597923.536379,28.68,4,3992.50,65.04,1179.48,2546.50,0.00,3517842156030.946289,3517842156021.875977,75,0,118.172204,0.093559,18272020,12819370,0,0,42222,0,1,1 +1773597928.536283,1.45,4,3992.50,59.83,1383.70,2342.36,0.00,3518505189921.920410,0.000000,11,0,49.282424,0.038434,18277318,12822362,0,0,42225,0,1,1 +1773597933.531824,1.05,4,3992.50,59.25,1406.31,2319.73,0.00,25178.403390,26018.353974,1749511,2295085,0.002229,0.001044,18277360,12822391,0,0,42227,0,1,1 +1773597938.536793,0.65,4,3992.50,58.96,1417.62,2308.43,0.00,9.552029,10.702253,1751000,2295484,0.000000,0.000020,18277360,12822393,0,0,42229,0,1,1 +1773597943.536114,0.70,4,3992.50,58.79,1424.32,2301.73,0.00,3518914953838.856445,3518914952998.336426,75,0,0.000031,0.000055,18277362,12822398,0,0,42232,0,1,1 +1773597948.531902,0.65,4,3992.50,58.77,1424.93,2301.11,0.00,0.126865,0.000000,205,0,0.000000,0.000674,18277362,12822405,0,0,42235,0,1,1 +1773597953.532747,1.05,4,3992.50,58.98,1405.42,2309.38,0.00,25151.518323,25990.887162,1749511,2295159,0.000039,0.000053,18277365,12822410,0,0,42237,0,1,1 +1773597958.535879,0.65,4,3992.50,58.98,1405.42,2309.38,0.00,3516234367679.738770,3516234366840.880371,75,0,0.000000,0.000030,18277365,12822413,0,0,42240,0,1,1 +1773597963.531819,0.70,4,3992.50,58.98,1405.43,2309.38,0.00,0.126861,0.000000,205,0,0.000000,0.000020,18277365,12822415,0,0,42242,0,1,1 +1773597968.536119,0.55,4,3992.50,58.98,1405.43,2309.38,0.00,1.830457,0.000195,246,2,0.000000,0.000030,18277365,12822418,0,0,42245,0,1,1 +1773597973.536555,0.85,4,3992.50,59.00,1404.94,2309.87,0.00,3518130437054.269043,3518130437056.227539,75,0,0.000025,0.000051,18277367,12822422,0,0,42247,0,1,1 +1773597978.536675,0.95,4,3992.50,59.09,1403.46,2313.46,0.00,3518352381407.230469,0.000000,11,0,0.000109,0.000162,18277376,12822434,0,0,42250,0,1,1 +1773597983.536257,0.55,4,3992.50,58.93,1407.61,2307.19,0.00,2.012473,0.000195,246,2,0.000000,0.000020,18277376,12822436,0,0,42252,0,1,1 +1773597988.531916,1.35,4,3992.50,58.78,1413.31,2301.49,0.00,3521493917015.021484,3521493917016.981934,75,0,0.000000,0.000030,18277376,12822439,0,0,42255,0,1,1 +1773597993.535952,15.59,4,3992.50,64.84,1175.95,2538.80,0.00,3515600002962.834961,0.000000,11,0,13.212781,0.013580,18278925,12823324,0,0,42257,0,1,1 +1773597998.532214,33.23,4,3992.50,65.19,1162.32,2552.38,0.00,0.053556,0.000000,75,0,118.251889,0.044907,18290977,12826775,0,0,42260,0,1,1 +1773598003.533677,28.43,4,3992.50,65.03,1168.75,2545.95,0.00,1.602168,10.672073,251,357,119.933030,0.018548,18303349,12828106,0,0,42262,0,1,1 +1773598008.536043,27.14,4,3992.50,65.30,1157.98,2556.71,0.00,0.355984,3516772538964.370117,246,2,118.307659,0.018012,18315499,12829463,0,0,42265,0,1,1 +1773598013.531801,29.13,4,3992.50,64.96,1172.90,2543.27,0.00,25184.870013,26028.512256,1751001,2295806,120.275745,0.041596,18328010,12832666,0,0,42267,0,1,1 +1773598018.536469,28.49,4,3992.50,64.82,1178.25,2537.83,0.00,3515155365070.794434,3515155364228.654297,246,2,118.053017,0.045796,18340094,12836248,0,0,42269,0,1,1 +1773598023.532082,28.79,4,3992.50,64.86,1176.71,2539.45,0.00,3521527286391.810547,3521527286393.824707,11,0,120.268763,0.035519,18352279,12839039,0,0,42272,0,1,1 +1773598028.535573,28.24,4,3992.50,64.94,1173.57,2542.68,0.00,0.000000,0.000000,11,0,119.080100,0.031896,18364447,12841518,0,0,42275,0,1,1 +1773598033.532572,28.33,4,3992.50,64.93,1173.83,2542.31,0.00,0.000000,0.000000,11,0,119.234997,0.051812,18376526,12845563,0,0,42277,0,1,1 +1773598038.535759,3.91,4,3992.50,59.04,1404.54,2311.65,0.00,0.053482,0.000000,75,0,58.842998,0.020837,18382509,12847191,0,0,42280,0,1,1 +1773598043.535598,1.00,4,3992.50,59.04,1404.64,2311.57,0.00,0.000000,0.000000,75,0,0.003262,0.001566,18382568,12847231,0,0,42282,0,1,1 +1773598048.532542,0.60,4,3992.50,58.88,1411.02,2305.19,0.00,25180.983385,26022.704176,1751012,2295981,0.000000,0.000030,18382568,12847234,0,0,42285,0,1,1 +1773598053.534206,0.75,4,3992.50,58.89,1410.45,2305.75,0.00,3517266759740.975098,3517266758899.921875,205,0,0.000000,0.000020,18382568,12847236,0,0,42287,0,1,1 +1773598058.533184,0.65,4,3992.50,58.71,1417.68,2298.52,0.00,25170.612958,26012.150158,1751012,2295989,0.000000,0.000030,18382568,12847239,0,0,42290,0,1,1 +1773598063.536006,0.70,4,3992.50,58.71,1417.64,2298.56,0.00,3516452276518.205078,3516452275675.483887,246,2,0.000000,0.000020,18382568,12847241,0,0,42292,0,1,1 +1773598068.536505,1.00,4,3992.50,58.87,1412.15,2304.75,0.00,0.000000,0.000000,246,2,0.000000,0.000030,18382568,12847244,0,0,42295,0,1,1 +1773598073.535210,0.75,4,3992.50,58.87,1410.17,2304.74,0.00,3519348790605.110352,3519348790606.942871,205,0,0.000000,0.000020,18382568,12847246,0,0,42297,0,1,1 +1773598078.531902,0.80,4,3992.50,58.68,1417.57,2297.34,0.00,25182.130316,26024.233141,1751013,2296051,0.000000,0.000674,18382568,12847253,0,0,42300,0,1,1 +1773598083.536008,0.65,4,3992.50,58.67,1417.91,2297.00,0.00,3515550069864.639160,3515550069021.953613,246,2,0.000025,0.000051,18382570,12847257,0,0,42302,0,1,1 +1773598088.531822,0.75,4,3992.50,58.67,1417.91,2297.00,0.00,25175.150628,26018.130110,1749524,2295700,0.000109,0.000162,18382579,12847269,0,0,42305,0,1,1 +1773598093.533545,0.90,4,3992.50,58.68,1417.47,2297.44,0.00,3517225576894.836426,3517225576054.863770,11,0,0.002173,0.001044,18382623,12847299,0,0,42307,0,1,1 +1773598098.534181,0.70,4,3992.50,58.69,1417.23,2297.68,0.00,2.012048,0.000195,246,2,0.000000,0.000030,18382623,12847302,0,0,42310,0,1,1 +1773598103.536851,12.87,4,3992.50,64.88,1175.95,2540.21,0.00,3516559369694.330078,3516559369696.341797,11,0,5.400850,0.009959,18383357,12847877,0,0,42312,0,1,1 +1773598108.532568,34.29,4,3992.50,64.78,1179.80,2536.42,0.00,0.000000,0.000000,11,0,118.273756,0.039161,18395355,12850843,0,0,42315,0,1,1 +1773598113.532147,28.54,4,3992.50,64.78,1180.03,2536.22,0.00,25158.201887,25998.721280,1749525,2295877,119.975788,0.024266,18407575,12852656,0,0,42317,0,1,1 +1773598118.532064,28.51,4,3992.50,64.82,1178.53,2537.71,0.00,3518496065055.062500,3518496064214.599609,11,0,118.367446,0.027584,18419722,12854730,0,0,42320,0,1,1 +1773598123.532032,28.49,4,3992.50,64.91,1174.95,2541.28,0.00,0.180275,0.000000,205,0,119.964243,0.031134,18431875,12857155,0,0,42322,0,1,1 +1773598128.533991,28.49,4,3992.50,64.81,1179.11,2537.27,0.00,3517059593522.122559,0.000000,11,0,118.715181,0.042788,18443879,12860472,0,0,42325,0,1,1 +1773598133.536463,28.98,4,3992.50,64.93,1163.05,2542.30,0.00,0.053489,0.000000,75,0,119.503947,0.031256,18455951,12862888,0,0,42327,0,1,1 +1773598138.535628,28.72,4,3992.50,64.77,1169.42,2535.85,0.00,3519025157049.311035,0.000000,11,0,119.384999,0.019197,18468238,12864343,0,0,42330,0,1,1 +1773598143.532030,28.15,4,3992.50,64.94,1162.98,2542.39,0.00,0.053554,0.000000,75,0,119.249391,0.023476,18480400,12866141,0,0,42332,0,1,1 +1773598148.536317,5.61,4,3992.50,60.33,1343.52,2361.91,0.00,3515423228436.353027,0.000000,11,0,66.636634,0.015719,18487319,12867268,0,0,42335,0,1,1 +1773598153.532190,1.00,4,3992.50,59.43,1378.46,2326.96,0.00,1.657520,10.684014,251,357,0.003071,0.001307,18487375,12867306,0,0,42337,0,1,1 +1773598158.531877,1.05,4,3992.50,59.18,1394.93,2316.88,0.00,3518657487396.280762,3518657487387.207520,75,0,0.000000,0.000030,18487375,12867309,0,0,42340,0,1,1 +1773598163.535932,0.70,4,3992.50,59.06,1399.47,2312.32,0.00,25135.804411,25976.047805,1749540,2296120,0.000000,0.000020,18487375,12867311,0,0,42342,0,1,1 +1773598168.536338,0.65,4,3992.50,59.07,1399.01,2312.79,0.00,3518151001846.259277,3518151001014.474609,251,357,0.000000,0.000030,18487375,12867314,0,0,42345,0,1,1 +1773598173.532293,0.70,4,3992.50,58.87,1406.75,2305.04,0.00,3521286112453.396484,3521286112444.370117,11,0,0.000513,0.001121,18487389,12867339,0,0,42347,0,1,1 +1773598178.536543,0.80,4,3992.50,58.83,1408.57,2303.22,0.00,0.053470,0.000000,75,0,0.000000,0.000030,18487389,12867342,0,0,42350,0,1,1 +1773598183.535965,0.65,4,3992.50,58.64,1415.97,2295.82,0.00,3518843790873.888184,0.000000,11,0,0.000000,0.000020,18487389,12867344,0,0,42352,0,1,1 +1773598188.532886,0.95,4,3992.50,59.03,1400.00,2311.29,0.00,0.053549,0.000000,75,0,0.000000,0.000030,18487389,12867347,0,0,42355,0,1,1 +1773598193.535930,0.65,4,3992.50,58.99,1401.77,2309.52,0.00,1.601662,10.668700,251,357,0.000025,0.000051,18487391,12867351,0,0,42357,0,1,1 +1773598198.532090,0.65,4,3992.50,58.81,1408.81,2302.48,0.00,25183.492452,26017.188816,1751029,2296552,0.000417,0.000717,18487407,12867374,0,0,42360,0,1,1 +1773598203.533376,0.75,4,3992.50,58.78,1409.88,2301.41,0.00,3517531828712.261230,3517531827870.349121,75,0,0.000000,0.000020,18487407,12867376,0,0,42362,0,1,1 +1773598208.536555,0.70,4,3992.50,58.78,1409.90,2301.39,0.00,1.601619,10.668414,251,357,0.000205,0.000562,18487414,12867390,0,0,42365,0,1,1 +1773598213.536543,5.87,4,3992.50,64.79,1174.44,2536.85,0.00,3518445365341.589355,3518445365332.570801,11,0,2.809104,0.008257,18487897,12867761,0,0,42367,0,1,1 +1773598218.535320,40.86,4,3992.50,65.01,1163.41,2545.44,0.00,2.012797,0.000195,246,2,108.175925,0.045180,18498887,12871198,0,0,42370,0,1,1 +1773598223.535960,28.40,4,3992.50,64.73,1174.47,2534.34,0.00,3517987092988.257324,10.673634,251,357,119.951262,0.040746,18511125,12874292,0,0,42372,0,1,1 +1773598228.531896,28.16,4,3992.50,64.57,1180.73,2528.09,0.00,25175.059513,26007.847144,1749550,2296326,118.258448,0.047778,18523089,12877970,0,0,42375,0,1,1 +1773598233.536530,28.54,4,3992.50,64.74,1174.18,2534.57,0.00,3515179559967.443359,3515179559126.912109,205,0,120.057270,0.036704,18535434,12880778,0,0,42377,0,1,1 +1773598238.536040,28.53,4,3992.50,64.88,1168.58,2540.21,0.00,25158.543513,26000.043622,1749550,2296407,118.173996,0.029623,18547523,12883101,0,0,42380,0,1,1 +1773598243.535768,28.27,4,3992.50,64.80,1171.73,2537.12,0.00,3518628573194.650879,3518628572353.367676,11,0,120.169841,0.046616,18559619,12886745,0,0,42382,0,1,1 +1773598248.536543,28.06,4,3992.50,65.00,1163.93,2544.87,0.00,0.053507,0.000000,75,0,118.742594,0.023308,18571582,12888540,0,0,42385,0,1,1 +1773598253.531803,28.92,4,3992.50,64.63,1176.48,2530.40,0.00,0.000000,0.000000,75,0,119.676498,0.036834,18583616,12891393,0,0,42387,0,1,1 +1773598258.534772,9.22,4,3992.50,59.83,1364.41,2342.54,0.00,0.126683,0.000000,205,0,79.463842,0.033937,18591656,12893958,0,0,42389,0,1,1 +1773598263.533355,0.65,4,3992.50,59.20,1388.54,2317.83,0.00,3519434958839.432617,0.000000,11,0,0.000031,0.000055,18591658,12893963,0,0,42392,0,1,1 +1773598268.531848,0.80,4,3992.50,58.77,1405.92,2301.02,0.00,0.053532,0.000000,75,0,0.000000,0.000030,18591658,12893966,0,0,42395,0,1,1 +1773598273.531811,0.65,4,3992.50,58.59,1413.06,2293.89,0.00,1.602649,10.675275,251,357,0.000000,0.000020,18591658,12893968,0,0,42397,0,1,1 +1773598278.532490,1.00,4,3992.50,58.59,1415.74,2293.80,0.00,3517959477020.483398,3517959477011.465820,11,0,0.000000,0.000674,18591658,12893975,0,0,42400,0,1,1 +1773598283.531813,0.65,4,3992.50,58.70,1409.75,2298.10,0.00,0.053523,0.000000,75,0,0.000000,0.000020,18591658,12893977,0,0,42402,0,1,1 +1773598288.536276,0.60,4,3992.50,58.73,1408.54,2299.32,0.00,0.000000,0.000000,75,0,0.000000,0.000030,18591658,12893980,0,0,42405,0,1,1 +1773598293.536468,0.75,4,3992.50,58.74,1408.07,2299.78,0.00,1.602575,10.674785,251,357,0.000000,0.000020,18591658,12893982,0,0,42407,0,1,1 +1773598298.533565,0.60,4,3992.50,58.55,1415.47,2292.38,0.00,3520481415140.541016,3520481415131.517090,11,0,0.000000,0.000030,18591658,12893985,0,0,42410,0,1,1 +1773598303.531826,0.85,4,3992.50,58.56,1415.25,2292.60,0.00,2.013005,0.000195,246,2,0.000126,0.000175,18591668,12893997,0,0,42412,0,1,1 +1773598308.532720,0.90,4,3992.50,58.86,1403.25,2304.62,0.00,3517807811853.790527,3517807811855.802734,11,0,0.000016,0.000046,18591670,12894002,0,0,42415,0,1,1 +1773598313.531807,0.70,4,3992.50,58.68,1410.44,2297.43,0.00,0.053525,0.000000,75,0,0.000000,0.000020,18591670,12894004,0,0,42417,0,1,1 +1773598318.531842,0.70,4,3992.50,58.63,1412.35,2295.52,0.00,3518413028237.768555,0.000000,11,0,0.000000,0.000030,18591670,12894007,0,0,42420,0,1,1 +1773598323.536191,0.90,4,3992.50,58.61,1413.21,2294.66,0.00,0.180117,0.000000,205,0,0.001369,0.000712,18591692,12894024,0,0,42422,0,1,1 +1773598328.535997,42.20,4,3992.50,64.80,1170.91,2536.89,0.00,3518574023004.239746,0.000000,75,0,100.946868,0.043533,18602137,12897242,0,0,42425,0,1,1 +1773598333.535190,28.47,4,3992.50,64.78,1171.36,2536.36,0.00,1.959105,0.000195,246,2,119.383682,0.032766,18614249,12899730,0,0,42427,0,1,1 +1773598338.535854,28.39,4,3992.50,64.74,1173.04,2534.70,0.00,3517969773423.016602,3517969773425.028809,11,0,118.548252,0.036026,18626390,12902489,0,0,42430,0,1,1 +1773598343.536074,28.89,4,3992.50,64.77,1177.38,2535.90,0.00,0.000000,0.000000,11,0,119.758613,0.040159,18638533,12905564,0,0,42432,0,1,1 +1773598348.535938,28.56,4,3992.50,64.91,1172.24,2541.21,0.00,25157.032493,25998.949647,1749560,2296937,118.966681,0.027028,18650688,12907663,0,0,42435,0,1,1 +1773598353.535007,28.56,4,3992.50,65.02,1167.59,2545.86,0.00,3519091912184.750977,3519091911342.699707,11,0,119.383749,0.042741,18662632,12910972,0,0,42437,0,1,1 +1773598358.536662,28.33,4,3992.50,64.92,1171.62,2541.73,0.00,25148.026956,25989.802634,1749560,2296972,119.722305,0.038454,18674661,12913962,0,0,42440,0,1,1 +1773598363.536407,28.88,4,3992.50,65.05,1166.79,2546.68,0.00,3518616479051.935547,3518616478209.784668,75,0,118.768457,0.040986,18686711,12917168,0,0,42442,0,1,1 +1773598368.531802,10.65,4,3992.50,58.57,1420.23,2293.30,0.00,25189.123165,26033.172124,1751055,2297350,90.003922,0.027520,18695722,12919315,0,0,42445,0,1,1 +1773598373.531882,1.30,4,3992.50,58.75,1412.47,2300.28,0.00,3518380847930.902344,3518380847929.812988,1749571,2297068,0.003118,0.001445,18695780,12919355,0,0,42447,0,1,1 +1773598378.536608,0.60,4,3992.50,58.75,1412.47,2300.28,0.00,3515115141205.803223,3515115140364.470215,11,0,0.000000,0.000030,18695780,12919358,0,0,42450,0,1,1 +1773598383.536473,0.75,4,3992.50,58.75,1412.47,2300.28,0.00,1.656197,10.675483,251,357,0.000000,0.000020,18695780,12919360,0,0,42452,0,1,1 +1773598388.536381,0.70,4,3992.50,58.75,1412.47,2300.28,0.00,3518501741018.275391,3518501741009.256348,11,0,0.000000,0.000030,18695780,12919363,0,0,42455,0,1,1 +1773598393.535929,0.75,4,3992.50,58.75,1412.47,2300.28,0.00,25168.318502,26011.675953,1751060,2297442,0.003281,0.002872,18695830,12919395,0,0,42457,0,1,1 +1773598398.535609,0.95,4,3992.50,58.72,1413.28,2299.04,0.00,3518662347143.144043,3518662346299.809082,11,0,0.000008,0.000038,18695831,12919399,0,0,42460,0,1,1 +1773598403.536016,0.75,4,3992.50,58.72,1412.82,2299.04,0.00,0.053511,0.000000,75,0,0.000000,0.000020,18695831,12919401,0,0,42462,0,1,1 +1773598408.533425,0.65,4,3992.50,58.73,1412.58,2299.27,0.00,3520261697860.489258,0.000000,11,0,0.000000,0.000030,18695831,12919404,0,0,42465,0,1,1 +1773598413.536297,0.75,4,3992.50,58.72,1412.78,2299.08,0.00,1.655201,10.669066,251,357,0.000000,0.000663,18695831,12919410,0,0,42467,0,1,1 +1773598418.531889,0.60,4,3992.50,58.68,1414.28,2297.57,0.00,3521541689458.561523,3521541689449.534668,11,0,0.000076,0.000123,18695837,12919419,0,0,42470,0,1,1 +1773598423.531885,0.65,4,3992.50,58.69,1414.04,2297.81,0.00,0.053516,0.000000,75,0,0.000000,0.000020,18695837,12919421,0,0,42472,0,1,1 +1773598428.532049,1.00,4,3992.50,58.71,1416.57,2298.50,0.00,25155.602686,25998.025587,1749571,2297180,0.000000,0.000030,18695837,12919424,0,0,42475,0,1,1 +1773598433.537541,9.41,4,3992.50,64.67,1183.11,2531.80,0.00,3514577338529.954590,3514577337686.472168,246,2,3.006369,0.007704,18696330,12919820,0,0,42477,0,1,1 +1773598438.535627,36.43,4,3992.50,64.77,1179.32,2535.70,0.00,25174.009044,26019.653787,1751344,2297704,115.207735,0.036674,18708263,12922592,0,0,42480,0,1,1 +1773598443.536506,28.49,4,3992.50,64.83,1176.86,2538.12,0.00,0.000000,0.003906,1751344,2297718,119.462167,0.035143,18720647,12925246,0,0,42482,0,1,1 +1773598448.531744,28.38,4,3992.50,64.62,1185.14,2529.82,0.00,3521791331946.420410,3521791331945.314453,1749855,2297375,118.971641,0.025251,18733040,12927109,0,0,42485,0,1,1 +1773598453.535662,28.02,4,3992.50,64.98,1170.74,2544.25,0.00,0.000000,0.009172,1749855,2297389,120.074307,0.031449,18745272,12929536,0,0,42487,0,1,1 +1773598458.531805,27.86,4,3992.50,64.78,1178.63,2536.40,0.00,3521153781333.673340,3521153780490.806152,11,0,118.265043,0.054907,18757373,12933789,0,0,42490,0,1,1 +1773598463.535239,28.82,4,3992.50,64.93,1173.81,2542.18,0.00,0.000000,0.000000,11,0,120.087695,0.033888,18769607,12936388,0,0,42492,0,1,1 +1773598468.535697,28.49,4,3992.50,65.01,1170.71,2545.27,0.00,25154.515546,25996.910858,1749855,2297493,119.166602,0.053398,18782029,12940507,0,0,42495,0,1,1 +1773598473.535531,28.59,4,3992.50,64.74,1181.23,2534.72,0.00,3518554048980.737793,3518554048138.057129,205,0,119.176962,0.050985,18794298,12944386,0,0,42497,0,1,1 +1773598478.535342,6.96,4,3992.50,60.08,1363.68,2352.38,0.00,1.475935,10.675599,251,357,72.108516,0.023528,18801856,12946182,0,0,42500,0,1,1 +1773598483.536083,1.00,4,3992.50,59.53,1385.28,2330.76,0.00,0.000000,0.000000,251,357,0.002226,0.001675,18801898,12946214,0,0,42502,0,1,1 +1773598488.536611,0.65,4,3992.50,58.97,1407.06,2308.98,0.00,3518066269602.982910,3518066269593.965332,11,0,0.000000,0.000030,18801898,12946217,0,0,42505,0,1,1 +1773598493.536133,1.05,4,3992.50,58.66,1419.23,2296.81,0.00,0.053521,0.000000,75,0,0.000000,0.000020,18801898,12946219,0,0,42507,0,1,1 +1773598498.531862,0.70,4,3992.50,58.66,1419.23,2296.81,0.00,3521445123072.499512,0.000000,11,0,0.001243,0.001255,18801908,12946236,0,0,42510,0,1,1 +1773598503.531898,0.85,4,3992.50,58.48,1426.40,2289.65,0.00,0.180272,0.000000,205,0,0.000000,0.000020,18801908,12946238,0,0,42512,0,1,1 +1773598508.531805,0.90,4,3992.50,58.48,1426.40,2289.65,0.00,3518502480622.537598,0.000000,11,0,0.000213,0.000570,18801916,12946253,0,0,42515,0,1,1 +1773598513.532087,0.70,4,3992.50,58.43,1428.30,2287.75,0.00,2.012191,0.000195,246,2,0.000000,0.000020,18801916,12946255,0,0,42517,0,1,1 +1773598518.536372,0.95,4,3992.50,58.40,1411.94,2286.48,0.00,3515424858896.723145,3515424858898.733887,11,0,0.000062,0.000080,18801920,12946262,0,0,42520,0,1,1 +1773598523.536253,0.60,4,3992.50,58.22,1418.89,2279.56,0.00,2.012352,0.000195,246,2,0.000038,0.000082,18801923,12946268,0,0,42522,0,1,1 +1773598528.536426,0.70,4,3992.50,58.20,1419.84,2278.61,0.00,3518315825577.878906,3518315825579.891113,11,0,0.000088,0.000123,18801930,12946277,0,0,42525,0,1,1 +1773598533.531824,0.70,4,3992.50,58.20,1419.84,2278.61,0.00,0.000000,0.000000,11,0,0.000000,0.000020,18801930,12946279,0,0,42527,0,1,1 +1773598538.531938,0.75,4,3992.50,58.21,1419.60,2278.85,0.00,0.000000,0.000000,11,0,0.000000,0.000030,18801930,12946282,0,0,42530,0,1,1 +1773598543.537555,2.30,4,3992.50,59.35,1374.75,2323.68,0.00,0.000000,0.000000,11,0,0.003612,0.004271,18801994,12946337,0,0,42532,0,1,1 +1773598548.536635,41.59,4,3992.50,64.80,1162.05,2537.01,0.00,1.656457,10.677160,251,357,109.373058,0.043765,18813251,12949700,0,0,42535,0,1,1 +1773598553.534854,28.42,4,3992.50,64.74,1163.50,2534.89,0.00,3519690992502.955078,3519690992493.933105,11,0,119.407802,0.021313,18825443,12951278,0,0,42537,0,1,1 +1773598558.535823,28.23,4,3992.50,64.64,1167.49,2530.89,0.00,25152.083704,25994.947977,1749866,2297961,118.942952,0.016986,18837744,12952542,0,0,42540,0,1,1 +1773598563.531816,28.05,4,3992.50,64.88,1158.28,2540.05,0.00,3521259373814.839844,3521259372971.135742,11,0,119.660372,0.018997,18849898,12953998,0,0,42542,0,1,1 +1773598568.536261,27.97,4,3992.50,64.65,1167.22,2531.08,0.00,0.000000,0.000000,11,0,118.878598,0.076751,18862316,12960011,0,0,42545,0,1,1 +1773598573.536156,28.48,4,3992.50,64.77,1162.32,2536.05,0.00,0.000000,0.000000,11,0,119.792562,0.090724,18874922,12967074,0,0,42547,0,1,1 +1773598578.531827,27.43,4,3992.50,64.72,1164.19,2534.03,0.00,2.014049,0.000195,246,2,118.681290,0.069687,18887191,12972477,0,0,42550,0,1,1 +1773598583.531809,29.86,4,3992.50,64.95,1165.62,2542.86,0.00,3518450163111.051758,3518450163113.010742,75,0,119.966383,0.036568,18899350,12975343,0,0,42552,0,1,1 +1773598588.536382,8.73,4,3992.50,60.00,1359.38,2349.15,0.00,25133.983346,25976.560891,1749872,2298080,80.837743,0.021554,18907523,12976959,0,0,42555,0,1,1 +1773598593.536779,0.90,4,3992.50,59.10,1394.49,2314.02,0.00,3518157525386.492188,3518157524541.252930,246,2,0.002245,0.000945,18907566,12976989,0,0,42557,0,1,1 +1773598598.535741,0.85,4,3992.50,58.77,1407.47,2301.04,0.00,3519167912718.465820,3519167912720.424805,75,0,0.000000,0.000030,18907566,12976992,0,0,42560,0,1,1 +1773598603.536548,0.60,4,3992.50,58.68,1411.06,2297.46,0.00,3517869341749.671387,0.000000,11,0,0.000000,0.000020,18907566,12976994,0,0,42562,0,1,1 +1773598608.535607,0.70,4,3992.50,58.69,1410.58,2297.93,0.00,25161.830200,26005.409109,1749877,2298152,0.000000,0.000674,18907566,12977001,0,0,42565,0,1,1 +1773598613.533117,1.00,4,3992.50,58.74,1408.52,2299.83,0.00,9.566288,10.718229,1751366,2298537,0.000000,0.000020,18907566,12977003,0,0,42567,0,1,1 +1773598618.533792,0.75,4,3992.50,58.73,1409.02,2299.34,0.00,3517962032285.431152,3517962031440.973633,11,0,0.000000,0.000030,18907566,12977006,0,0,42570,0,1,1 +1773598623.536482,0.80,4,3992.50,58.73,1409.02,2299.34,0.00,0.053487,0.000000,75,0,0.000000,0.000020,18907566,12977008,0,0,42572,0,1,1 +1773598628.536445,0.75,4,3992.50,58.73,1408.80,2299.55,0.00,0.000000,0.000000,75,0,0.000000,0.000030,18907566,12977011,0,0,42575,0,1,1 +1773598633.536250,0.75,4,3992.50,58.58,1414.66,2293.69,0.00,1.958865,0.000195,246,2,0.000050,0.000082,18907570,12977017,0,0,42577,0,1,1 +1773598638.533179,1.00,4,3992.50,58.94,1401.30,2307.53,0.00,3520599366675.167969,3520599366677.127930,75,0,0.000092,0.000139,18907578,12977028,0,0,42580,0,1,1 +1773598643.535733,0.60,4,3992.50,58.79,1406.42,2301.94,0.00,1.957789,0.000195,246,2,0.000000,0.000020,18907578,12977030,0,0,42582,0,1,1 +1773598648.535864,0.65,4,3992.50,58.78,1407.09,2301.30,0.00,25163.982658,26010.653406,1751366,2298632,0.000000,0.000030,18907578,12977033,0,0,42585,0,1,1 +1773598653.535052,1.05,4,3992.50,58.74,1408.70,2299.68,0.00,3519008180095.251465,3519008179250.433594,11,0,0.001371,0.000408,18907600,12977050,0,0,42587,0,1,1 +1773598658.533973,16.35,4,3992.50,64.72,1174.34,2534.03,0.00,0.180312,0.000000,205,0,17.630555,0.014166,18909520,12978007,0,0,42589,0,1,1 +1773598663.535628,33.45,4,3992.50,64.78,1171.96,2536.36,0.00,1.475390,10.671662,251,357,119.533910,0.039263,18921994,12980975,0,0,42592,0,1,1 +1773598668.536386,28.38,4,3992.50,65.24,1154.01,2554.32,0.00,25151.623613,25986.209260,1749877,2298447,118.751048,0.027329,18934243,12982994,0,0,42595,0,1,1 +1773598673.535173,27.93,4,3992.50,64.63,1177.96,2530.29,0.00,9.563844,10.693513,1751366,2298824,120.000003,0.032478,18946507,12985408,0,0,42597,0,1,1 +1773598678.531850,28.36,4,3992.50,64.84,1169.68,2538.58,0.00,0.000000,0.033909,1751366,2298872,118.456662,0.054548,18958860,12989546,0,0,42600,0,1,1 +1773598683.536713,28.43,4,3992.50,64.82,1170.55,2537.69,0.00,3515018209011.035645,3515018209009.924805,1749877,2298520,120.065580,0.067469,18971350,12994810,0,0,42602,0,1,1 +1773598688.535782,28.30,4,3992.50,64.82,1170.65,2537.69,0.00,3519092523916.098145,3519092523072.158203,11,0,118.598712,0.057410,18983652,12999299,0,0,42605,0,1,1 +1773598693.533601,28.12,4,3992.50,64.77,1172.27,2535.99,0.00,25177.642164,26023.056879,1751366,2298902,119.829507,0.056252,18995933,13003577,0,0,42607,0,1,1 +1773598698.531788,27.54,4,3992.50,64.76,1172.79,2535.48,0.00,3519713048019.214355,3519713047173.681641,205,0,119.423677,0.071364,19008234,13009111,0,0,42609,0,1,1 +1773598703.533969,2.86,4,3992.50,58.35,1423.62,2284.72,0.00,3516902879113.240234,0.000000,11,0,53.257820,0.027016,19013760,13011147,0,0,42612,0,1,1 +1773598708.532682,0.70,4,3992.50,58.38,1422.66,2285.70,0.00,0.180320,0.000000,205,0,0.000267,0.000371,19013768,13011158,0,0,42615,0,1,1 +1773598713.535085,0.65,4,3992.50,58.39,1422.36,2285.99,0.00,1.475170,10.670067,251,357,0.000000,0.000020,19013768,13011160,0,0,42617,0,1,1 +1773598718.536748,0.80,4,3992.50,58.35,1423.81,2284.54,0.00,25147.234952,25981.952088,1749890,2298654,0.000000,0.000030,19013768,13011163,0,0,42620,0,1,1 +1773598723.536493,0.70,4,3992.50,58.35,1423.81,2284.54,0.00,3518616875971.238770,3518616875127.127930,75,0,0.000000,0.000020,19013768,13011165,0,0,42622,0,1,1 +1773598728.531895,1.05,4,3992.50,58.54,1416.90,2292.10,0.00,25180.355296,26025.271405,1749890,2298689,0.000000,0.000030,19013768,13011168,0,0,42625,0,1,1 +1773598733.535410,0.65,4,3992.50,58.35,1424.07,2284.70,0.00,3515965621628.359863,3515965620784.867188,11,0,0.000000,0.000020,19013768,13011170,0,0,42627,0,1,1 +1773598738.536115,0.70,4,3992.50,58.29,1426.49,2282.29,0.00,0.053508,0.000000,75,0,0.000050,0.000575,19013772,13011180,0,0,42630,0,1,1 +1773598743.536608,0.95,4,3992.50,58.32,1425.51,2283.27,0.00,1.602479,10.674142,251,357,0.000016,0.000197,19013774,13011185,0,0,42632,0,1,1 +1773598748.536371,0.85,4,3992.50,58.32,1425.51,2283.26,0.00,25156.791149,25992.023150,1749890,2298727,0.000101,0.000154,19013782,13011196,0,0,42635,0,1,1 +1773598753.535934,0.85,4,3992.50,58.32,1425.26,2283.52,0.00,3518744507352.474121,3518744506508.188477,11,0,0.000025,0.000051,19013784,13011200,0,0,42637,0,1,1 +1773598758.536546,0.90,4,3992.50,58.59,1414.69,2293.82,0.00,0.000000,0.000000,11,0,0.000000,0.000030,19013784,13011203,0,0,42640,0,1,1 +1773598763.536239,0.65,4,3992.50,58.61,1413.97,2294.56,0.00,2.012428,0.000195,246,2,0.000000,0.000020,19013784,13011205,0,0,42642,0,1,1 +1773598768.535549,24.28,4,3992.50,64.83,1170.20,2538.25,0.00,3518922795594.520020,3518922795596.532715,11,0,42.470089,0.023458,19018277,13012795,0,0,42645,0,1,1 +1773598773.536712,31.50,4,3992.50,64.82,1170.46,2538.00,0.00,0.000000,0.000000,11,0,119.542805,0.033350,19030602,13015262,0,0,42647,0,1,1 +1773598778.536539,28.33,4,3992.50,64.85,1169.65,2538.86,0.00,0.053517,0.000000,75,0,118.977907,0.052669,19042871,13019343,0,0,42650,0,1,1 +1773598783.535933,28.61,4,3992.50,64.79,1171.59,2536.82,0.00,0.126773,0.000000,205,0,119.390725,0.055393,19055195,13023617,0,0,42652,0,1,1 +1773598788.535736,29.17,4,3992.50,65.18,1164.36,2551.94,0.00,3518575964629.900391,0.000000,11,0,119.382296,0.060857,19067530,13028349,0,0,42655,0,1,1 +1773598793.536376,28.71,4,3992.50,64.81,1178.62,2537.63,0.00,0.000000,0.000000,11,0,118.967238,0.073892,19079942,13034112,0,0,42657,0,1,1 +1773598798.534632,29.00,4,3992.50,64.94,1173.67,2542.56,0.00,0.000000,0.000000,11,0,119.420321,0.063458,19092278,13038977,0,0,42660,0,1,1 +1773598803.531801,28.78,4,3992.50,65.12,1166.68,2549.57,0.00,0.053546,0.000000,75,0,119.247447,0.068499,19104671,13044270,0,0,42662,0,1,1 +1773598808.531882,24.62,4,3992.50,65.14,1165.89,2550.45,0.00,3518380520032.531738,0.000000,11,0,119.575729,0.058433,19117065,13048721,0,0,42665,0,1,1 +1773598813.536147,1.35,4,3992.50,59.05,1404.26,2312.06,0.00,2.010589,0.000195,246,2,28.621374,0.012472,19120147,13049602,0,0,42667,0,1,1 +1773598818.536013,1.05,4,3992.50,59.05,1408.20,2312.01,0.00,3518531995318.496094,3518531995320.328125,205,0,0.000062,0.000070,19120151,13049608,0,0,42669,0,1,1 +1773598823.535475,0.75,4,3992.50,59.05,1408.11,2311.95,0.00,3518815508293.158691,0.000000,11,0,0.000000,0.000030,19120151,13049611,0,0,42672,0,1,1 +1773598828.531825,0.50,4,3992.50,59.05,1408.11,2311.94,0.00,25185.306023,26031.818304,1751400,2299546,0.000000,0.000030,19120151,13049614,0,0,42675,0,1,1 +1773598833.536623,0.80,4,3992.50,59.05,1408.11,2311.94,0.00,3515063991925.144531,3515063991080.061523,11,0,0.000000,0.000020,19120151,13049616,0,0,42677,0,1,1 +1773598838.531823,0.55,4,3992.50,58.86,1415.51,2304.55,0.00,25191.106675,26037.820963,1751400,2299554,0.000000,0.000030,19120151,13049619,0,0,42680,0,1,1 +1773598843.536766,0.70,4,3992.50,58.86,1415.51,2304.54,0.00,3514962213337.020020,3514962212491.954590,11,0,0.000031,0.000045,19120153,13049623,0,0,42682,0,1,1 +1773598848.536273,1.00,4,3992.50,58.95,1409.29,2307.83,0.00,25159.840726,26004.835778,1749911,2299215,0.000000,0.000030,19120153,13049626,0,0,42685,0,1,1 +1773598853.533565,0.65,4,3992.50,58.90,1409.86,2306.16,0.00,9.566705,10.692120,1751400,2299586,0.000039,0.000053,19120156,13049631,0,0,42687,0,1,1 +1773598858.536008,0.75,4,3992.50,58.91,1409.62,2306.40,0.00,3516718885165.531738,3516718885164.422852,1749911,2299229,0.000126,0.000185,19120166,13049644,0,0,42690,0,1,1 +1773598863.535782,0.75,4,3992.50,58.91,1409.62,2306.40,0.00,3518596267907.797363,3518596267062.779297,75,0,0.000000,0.000020,19120166,13049646,0,0,42692,0,1,1 +1773598868.536045,0.60,4,3992.50,58.86,1411.67,2304.36,0.00,3518251926478.291992,0.000000,11,0,0.000000,0.000030,19120166,13049649,0,0,42695,0,1,1 +1773598873.536123,0.70,4,3992.50,58.86,1411.67,2304.35,0.00,0.180271,0.000000,205,0,0.000000,0.000664,19120166,13049655,0,0,42697,0,1,1 +1773598878.531815,21.39,4,3992.50,65.18,1157.59,2551.87,0.00,0.000000,0.000000,205,0,37.889141,0.020730,19124148,13051035,0,0,42700,0,1,1 +1773598883.535065,33.15,4,3992.50,65.13,1159.46,2549.96,0.00,3516151851528.884277,0.000000,75,0,122.694979,0.030961,19136707,13053340,0,0,42702,0,1,1 +1773598888.536704,28.81,4,3992.50,64.78,1173.00,2536.46,0.00,25158.619147,26004.669696,1751400,2299786,121.942186,0.062170,19149312,13058129,0,0,42705,0,1,1 +1773598893.535854,28.48,4,3992.50,64.64,1178.81,2530.70,0.00,3519035494878.071777,3519035494876.962402,1749911,2299435,120.399994,0.065878,19161751,13063283,0,0,42707,0,1,1 +1773598898.532400,28.83,4,3992.50,64.97,1165.80,2543.71,0.00,3520869201594.936035,3520869200758.211914,251,357,120.056463,0.041306,19174192,13066473,0,0,42709,0,1,1 +1773598903.532427,28.34,4,3992.50,64.71,1176.10,2533.40,0.00,0.000000,0.000000,251,357,120.172328,0.037536,19186623,13069349,0,0,42712,0,1,1 +1773598908.536466,27.74,4,3992.50,64.98,1165.17,2544.30,0.00,3515597283380.608887,3515597283371.597656,11,0,119.672931,0.030716,19199003,13071703,0,0,42715,0,1,1 +1773598913.534371,29.08,4,3992.50,64.68,1173.11,2532.29,0.00,25167.904482,26013.532715,1749911,2299498,119.611305,0.015461,19211042,13072920,0,0,42717,0,1,1 +1773598918.536646,22.72,4,3992.50,64.71,1172.12,2533.35,0.00,3516836811265.150879,3516836810418.250488,246,2,119.111059,0.023707,19223199,13074723,0,0,42720,0,1,1 +1773598923.531824,1.30,4,3992.50,58.38,1419.76,2285.70,0.00,3521833568678.237305,10.685305,251,357,23.859915,0.007084,19225713,13075197,0,0,42722,0,1,1 +1773598928.534182,0.70,4,3992.50,58.39,1419.52,2285.95,0.00,0.355984,3516778821177.783691,246,2,0.000000,0.000030,19225713,13075200,0,0,42725,0,1,1 +1773598933.536380,0.75,4,3992.50,58.39,1419.52,2285.94,0.00,25144.387492,25991.407403,1749922,2299598,0.000000,0.000020,19225713,13075202,0,0,42727,0,1,1 +1773598938.536739,0.95,4,3992.50,58.58,1418.96,2293.49,0.00,3518185012187.913574,3518185011340.582031,246,2,0.000000,0.000674,19225713,13075209,0,0,42730,0,1,1 +1773598943.536457,0.75,4,3992.50,58.58,1418.97,2293.49,0.00,0.000000,0.000000,246,2,0.000000,0.000020,19225713,13075211,0,0,42732,0,1,1 +1773598948.533210,0.65,4,3992.50,58.58,1418.97,2293.49,0.00,3520724048008.869141,3520724048010.882812,11,0,0.000000,0.000030,19225713,13075214,0,0,42735,0,1,1 +1773598953.533069,0.65,4,3992.50,58.50,1422.02,2290.45,0.00,0.180278,0.000000,205,0,0.000000,0.000020,19225713,13075216,0,0,42737,0,1,1 +1773598958.535547,0.75,4,3992.50,58.50,1422.02,2290.45,0.00,3516694492640.380371,0.000000,11,0,0.000000,0.000030,19225713,13075219,0,0,42740,0,1,1 +1773598963.535810,0.80,4,3992.50,58.53,1421.04,2291.42,0.00,2.012199,0.000195,246,2,0.000000,0.000020,19225713,13075221,0,0,42742,0,1,1 +1773598968.531910,0.95,4,3992.50,58.56,1412.88,2292.94,0.00,3521183949971.333496,3521183949973.347656,11,0,0.000126,0.000185,19225723,13075234,0,0,42745,0,1,1 +1773598973.531984,0.70,4,3992.50,58.56,1412.99,2292.89,0.00,0.053515,0.000000,75,0,0.000016,0.000036,19225725,13075238,0,0,42747,0,1,1 +1773598978.536661,0.65,4,3992.50,58.56,1412.99,2292.89,0.00,3515149431970.973145,0.000000,11,0,0.000000,0.000020,19225725,13075240,0,0,42749,0,1,1 +1773598983.535636,18.25,4,3992.50,64.61,1176.33,2529.45,0.00,2.012717,0.000195,246,2,27.848125,0.019350,19228686,13076582,0,0,42752,0,1,1 +1773598988.531775,34.06,4,3992.50,64.60,1176.71,2529.09,0.00,25174.877601,26023.251423,1749922,2299824,123.465257,0.040795,19241213,13079689,0,0,42755,0,1,1 +1773598993.534162,29.27,4,3992.50,64.65,1174.55,2531.23,0.00,3516758819021.601562,3516758818174.287109,246,2,120.911181,0.041461,19253424,13082662,0,0,42757,0,1,1 +1773598998.536549,28.78,4,3992.50,64.92,1161.51,2541.92,0.00,3516758268392.992676,3516758268394.824219,205,0,120.911707,0.021429,19265880,13084222,0,0,42760,0,1,1 +1773599003.532664,28.39,4,3992.50,64.57,1175.46,2528.05,0.00,1.833456,0.000195,246,2,119.858269,0.026968,19278085,13086264,0,0,42762,0,1,1 +1773599008.531822,28.66,4,3992.50,64.56,1175.60,2527.82,0.00,3519029816319.135742,10.676798,251,357,119.782224,0.031881,19290179,13088768,0,0,42765,0,1,1 +1773599013.531814,28.20,4,3992.50,64.90,1162.53,2540.94,0.00,25155.839293,25992.801610,1749922,2299943,120.165656,0.036521,19302445,13091601,0,0,42767,0,1,1 +1773599018.535925,28.39,4,3992.50,64.77,1167.57,2535.81,0.00,9.553668,10.672865,1751411,2300319,119.264811,0.047115,19314488,13095261,0,0,42770,0,1,1 +1773599023.535753,25.34,4,3992.50,64.73,1169.09,2534.41,0.00,3518558728808.965820,3518558727961.783203,75,0,118.965152,0.045833,19326433,13098853,0,0,42772,0,1,1 +1773599028.536424,1.80,4,3992.50,59.88,1359.49,2344.58,0.00,1.958526,0.000195,246,2,34.244987,0.016172,19329932,13100052,0,0,42775,0,1,1 +1773599033.534026,0.65,4,3992.50,59.16,1387.14,2316.36,0.00,3520125368780.770020,3520125368782.783691,11,0,0.000000,0.000020,19329932,13100054,0,0,42777,0,1,1 +1773599038.536158,0.75,4,3992.50,58.89,1397.82,2305.67,0.00,1.655447,10.670646,251,357,0.000050,0.000092,19329936,13100061,0,0,42780,0,1,1 +1773599043.536345,0.75,4,3992.50,58.89,1397.86,2305.64,0.00,3518305770607.296387,3518305770598.224609,75,0,0.000000,0.000020,19329936,13100063,0,0,42782,0,1,1 +1773599048.531813,0.75,4,3992.50,58.70,1405.26,2298.24,0.00,3521629267179.683105,0.000000,11,0,0.000000,0.000030,19329936,13100066,0,0,42785,0,1,1 +1773599053.534779,0.75,4,3992.50,58.73,1404.28,2299.22,0.00,0.000000,0.000000,11,0,0.000000,0.000020,19329936,13100068,0,0,42787,0,1,1 +1773599058.531893,1.10,4,3992.50,58.93,1396.43,2307.10,0.00,25181.687630,26029.533469,1751422,2300475,0.000000,0.000030,19329936,13100071,0,0,42790,0,1,1 +1773599063.534684,0.65,4,3992.50,58.74,1403.09,2299.95,0.00,3516474291988.041992,3516474291139.146973,246,2,0.000000,0.000020,19329936,13100073,0,0,42792,0,1,1 +1773599068.531802,0.65,4,3992.50,58.69,1405.33,2297.71,0.00,3520466555072.969727,10.681157,251,357,0.000000,0.000674,19329936,13100080,0,0,42795,0,1,1 +1773599073.536129,0.80,4,3992.50,58.69,1405.33,2297.71,0.00,25134.182403,25970.692925,1749933,2300127,0.001559,0.001930,19329962,13100117,0,0,42797,0,1,1 +1773599078.536467,0.70,4,3992.50,58.65,1406.77,2296.28,0.00,0.000000,0.001562,1749933,2300129,0.000008,0.000038,19329963,13100121,0,0,42800,0,1,1 +1773599083.531927,0.75,4,3992.50,58.65,1406.73,2296.31,0.00,3521634959275.463867,3521634958426.425781,246,2,0.000000,0.000020,19329963,13100123,0,0,42802,0,1,1 +1773599088.536391,1.00,4,3992.50,58.78,1405.07,2301.22,0.00,3515298269693.382324,3515298269695.212891,205,0,0.000000,0.000030,19329963,13100126,0,0,42805,0,1,1 +1773599093.532063,16.88,4,3992.50,64.85,1164.70,2539.21,0.00,1.833619,0.000195,246,2,14.838624,0.015760,19331681,13101182,0,0,42807,0,1,1 +1773599098.532658,33.42,4,3992.50,64.95,1161.04,2542.84,0.00,25152.582524,26000.936849,1749933,2300312,118.148563,0.034332,19343651,13103763,0,0,42810,0,1,1 +1773599103.535656,28.23,4,3992.50,65.17,1152.26,2551.71,0.00,3516328457023.789551,3516328456175.842773,246,2,120.096234,0.027441,19355920,13105797,0,0,42812,0,1,1 +1773599108.532399,27.72,4,3992.50,64.95,1161.04,2542.87,0.00,3520731194101.672852,3520731194103.686523,11,0,118.243407,0.028666,19367921,13107894,0,0,42815,0,1,1 +1773599113.531876,27.97,4,3992.50,64.96,1160.61,2543.27,0.00,25169.785338,26017.497360,1751422,2300738,120.179937,0.021961,19380283,13109585,0,0,42817,0,1,1 +1773599118.532177,28.36,4,3992.50,64.92,1172.41,2541.80,0.00,3518225195169.504395,3518225194330.950684,251,357,118.157204,0.023664,19392490,13111424,0,0,42820,0,1,1 +1773599123.533413,28.18,4,3992.50,65.10,1166.61,2548.87,0.00,3517567605667.260254,3517567605658.243652,11,0,120.133088,0.045933,19404586,13115017,0,0,42822,0,1,1 +1773599128.535560,28.30,4,3992.50,65.19,1163.23,2552.25,0.00,0.053493,0.000000,75,0,118.913418,0.034602,19416721,13117688,0,0,42825,0,1,1 +1773599133.534349,28.54,4,3992.50,64.89,1174.79,2540.70,0.00,1.603025,10.677781,251,357,119.391466,0.045762,19428773,13121243,0,0,42827,0,1,1 +1773599138.531910,3.21,4,3992.50,58.41,1428.70,2286.87,0.00,3520154554298.527344,3520154554289.504395,11,0,57.308000,0.023475,19434632,13123029,0,0,42830,0,1,1 +1773599143.534680,0.90,4,3992.50,58.41,1428.71,2286.87,0.00,0.000000,0.000000,11,0,0.001559,0.000717,19434663,13123052,0,0,42832,0,1,1 +1773599148.536124,0.65,4,3992.50,58.46,1426.75,2288.82,0.00,0.000000,0.000000,11,0,0.000000,0.000030,19434663,13123055,0,0,42835,0,1,1 +1773599153.534320,1.05,4,3992.50,58.59,1406.98,2293.75,0.00,25176.387090,26024.597278,1751437,2300937,0.000031,0.000045,19434665,13123059,0,0,42837,0,1,1 +1773599158.535884,0.75,4,3992.50,58.59,1406.74,2293.98,0.00,3517336997986.693848,3517336997139.054688,11,0,0.000000,0.000030,19434665,13123062,0,0,42840,0,1,1 +1773599163.536681,0.65,4,3992.50,58.59,1406.74,2293.98,0.00,25153.739005,26000.421114,1749948,2300606,0.000000,0.000020,19434665,13123064,0,0,42842,0,1,1 +1773599168.536709,0.70,4,3992.50,58.60,1406.50,2294.23,0.00,3518417701542.957031,3518417700696.144531,11,0,0.000000,0.000030,19434665,13123067,0,0,42845,0,1,1 +1773599173.536329,0.70,4,3992.50,58.62,1405.76,2294.96,0.00,0.000000,0.000000,11,0,0.000000,0.000020,19434665,13123069,0,0,42847,0,1,1 +1773599178.536116,1.05,4,3992.50,58.62,1408.16,2294.91,0.00,1.656223,10.675650,251,357,0.000000,0.000020,19434665,13123071,0,0,42849,0,1,1 +1773599183.536749,0.60,4,3992.50,58.59,1408.54,2294.00,0.00,3517992178649.354004,3517992178640.336426,11,0,0.000076,0.000123,19434671,13123080,0,0,42852,0,1,1 +1773599188.531823,0.70,4,3992.50,58.62,1407.31,2295.23,0.00,0.053568,0.000000,75,0,0.000058,0.000100,19434676,13123088,0,0,42855,0,1,1 +1773599193.531943,0.65,4,3992.50,58.62,1407.31,2295.22,0.00,1.602598,10.674940,251,357,0.000000,0.000020,19434676,13123090,0,0,42857,0,1,1 +1773599198.533691,0.70,4,3992.50,58.62,1407.32,2295.22,0.00,3517207265417.836914,3517207265408.821289,11,0,0.000000,0.000030,19434676,13123093,0,0,42860,0,1,1 +1773599203.535545,14.26,4,3992.50,64.71,1169.01,2533.45,0.00,2.011559,0.000195,246,2,6.211225,0.010924,19435477,13123676,0,0,42862,0,1,1 +1773599208.536631,35.23,4,3992.50,64.72,1168.90,2534.11,0.00,25150.272364,25999.222971,1749948,2300797,116.135384,0.039931,19447244,13126706,0,0,42865,0,1,1 +1773599213.534573,28.53,4,3992.50,64.78,1166.91,2536.10,0.00,3519885434955.850098,3519885434108.378418,11,0,119.215154,0.029872,19459494,13128963,0,0,42867,0,1,1 +1773599218.532642,28.23,4,3992.50,64.63,1172.67,2530.32,0.00,0.180343,0.000000,205,0,119.213788,0.027858,19471772,13131064,0,0,42870,0,1,1 +1773599223.535858,28.34,4,3992.50,64.96,1159.61,2543.39,0.00,1.474930,10.668332,251,357,119.286966,0.028634,19483959,13133283,0,0,42872,0,1,1 +1773599228.532135,28.54,4,3992.50,64.85,1164.10,2538.88,0.00,25184.404938,26024.288750,1751437,2301224,119.072809,0.065561,19496411,13138386,0,0,42875,0,1,1 +1773599233.535330,28.46,4,3992.50,64.89,1162.39,2540.64,0.00,3516190373229.302246,3516190372381.566406,11,0,119.513461,0.090578,19508975,13145425,0,0,42877,0,1,1 +1773599238.535757,28.48,4,3992.50,64.81,1165.55,2537.48,0.00,1.656011,10.674284,251,357,118.784761,0.099522,19521631,13153170,0,0,42880,0,1,1 +1773599243.536866,34.46,4,3992.50,64.61,1173.23,2529.78,0.00,25160.072538,25999.327847,1751437,2301272,120.168184,0.099382,19534420,13160944,0,0,42882,0,1,1 +1773599248.535988,7.12,4,3992.50,60.43,1341.14,2366.08,0.00,3519055295745.917969,3519055295744.787598,1749959,2300955,67.923135,0.055268,19541625,13165185,0,0,42885,0,1,1 +1773599253.536095,0.80,4,3992.50,59.72,1369.07,2338.17,0.00,3518361575544.061523,3518361574705.768555,251,357,0.000000,0.000020,19541625,13165187,0,0,42887,0,1,1 +1773599258.535928,0.70,4,3992.50,59.20,1389.52,2317.71,0.00,3518554677940.599121,3518554677931.580078,11,0,0.000000,0.000030,19541625,13165190,0,0,42890,0,1,1 +1773599263.531903,0.70,4,3992.50,59.02,1396.32,2310.91,0.00,2.013926,0.000195,246,2,0.000000,0.000020,19541625,13165192,0,0,42892,0,1,1 +1773599268.532865,1.05,4,3992.50,59.02,1398.48,2310.65,0.00,25151.027686,26000.334124,1749959,2301036,0.000000,0.000674,19541625,13165199,0,0,42895,0,1,1 +1773599273.536666,0.70,4,3992.50,58.81,1406.64,2302.48,0.00,3515764720877.738281,3515764720030.871094,75,0,0.000000,0.000020,19541625,13165201,0,0,42897,0,1,1 +1773599278.535858,0.75,4,3992.50,58.81,1406.40,2302.72,0.00,0.000000,0.000000,75,0,0.000000,0.000030,19541625,13165204,0,0,42900,0,1,1 +1773599283.531898,0.75,4,3992.50,58.80,1406.88,2302.25,0.00,0.126858,0.000000,205,0,0.000000,0.000020,19541625,13165206,0,0,42902,0,1,1 +1773599288.536595,0.65,4,3992.50,58.65,1413.04,2296.08,0.00,1.830312,0.000195,246,2,0.000000,0.000030,19541625,13165209,0,0,42905,0,1,1 +1773599293.531807,0.80,4,3992.50,58.34,1425.04,2284.09,0.00,25179.982679,26030.398252,1749959,2301080,0.002251,0.001123,19541675,13165243,0,0,42907,0,1,1 +1773599298.532043,1.15,4,3992.50,58.54,1425.33,2291.91,0.00,9.561073,10.709261,1751448,2301454,0.000008,0.000038,19541676,13165247,0,0,42910,0,1,1 +1773599303.533065,0.70,4,3992.50,58.36,1432.40,2284.87,0.00,3517717875839.700684,3517717874991.136719,11,0,0.000000,0.000020,19541676,13165249,0,0,42912,0,1,1 +1773599308.536571,0.65,4,3992.50,58.40,1430.93,2286.34,0.00,25140.253796,25987.299718,1749959,2301112,0.000000,0.000030,19541676,13165252,0,0,42915,0,1,1 +1773599313.538547,8.15,4,3992.50,64.88,1176.96,2540.11,0.00,3517047089152.156250,3517047088304.671387,205,0,2.006480,0.006122,19542069,13165572,0,0,42917,0,1,1 +1773599318.531798,35.93,4,3992.50,65.10,1168.23,2548.96,0.00,3523192770797.451660,0.000000,11,0,122.349017,0.063047,19554734,13170411,0,0,42920,0,1,1 +1773599323.531781,28.75,4,3992.50,65.03,1171.40,2545.89,0.00,25167.532040,26016.439832,1751448,2301617,121.773049,0.020592,19566800,13171942,0,0,42922,0,1,1 +1773599328.534259,28.25,4,3992.50,64.76,1173.32,2535.43,0.00,3516694059048.190430,3516694058199.652832,75,0,120.167184,0.024856,19578535,13173836,0,0,42925,0,1,1 +1773599333.535156,28.66,4,3992.50,64.75,1173.12,2534.92,0.00,25162.876751,26011.800192,1751448,2301698,119.553219,0.024834,19590024,13175734,0,0,42927,0,1,1 +1773599338.536369,28.30,4,3992.50,64.67,1176.16,2531.91,0.00,3517583258721.506836,3517583257872.637207,75,0,120.009025,0.032045,19601734,13178156,0,0,42930,0,1,1 +1773599343.536416,28.43,4,3992.50,64.82,1170.36,2537.72,0.00,3518404353319.614746,0.000000,11,0,118.747909,0.034287,19613326,13180818,0,0,42932,0,1,1 +1773599348.532108,28.54,4,3992.50,64.95,1165.20,2542.82,0.00,0.180429,0.000000,205,0,119.620412,0.033351,19624964,13183421,0,0,42935,0,1,1 +1773599353.531853,28.60,4,3992.50,65.05,1161.34,2546.70,0.00,25158.984359,26007.133772,1749959,2301380,118.937123,0.034428,19636466,13186066,0,0,42937,0,1,1 +1773599358.531817,3.77,4,3992.50,59.00,1398.00,2310.14,0.00,3518462049400.494141,3518462048552.382324,205,0,62.398028,0.017675,19642399,13187423,0,0,42940,0,1,1 +1773599363.536395,1.35,4,3992.50,58.66,1411.96,2296.69,0.00,25134.739579,25982.315235,1749968,2301446,0.003762,0.001645,19642467,13187468,0,0,42942,0,1,1 +1773599368.531826,0.70,4,3992.50,58.33,1425.00,2283.65,0.00,3521655425294.403809,3521655424454.483887,251,357,0.000000,0.000030,19642467,13187471,0,0,42945,0,1,1 +1773599373.532797,1.60,4,3992.50,58.16,1431.45,2277.20,0.00,3517754191877.990234,3517754191868.919922,75,0,0.001434,0.001776,19642483,13187498,0,0,42947,0,1,1 +1773599378.532554,0.65,4,3992.50,58.16,1431.45,2277.20,0.00,1.602715,10.675714,251,357,0.000000,0.000030,19642483,13187501,0,0,42950,0,1,1 +1773599383.532146,0.60,4,3992.50,58.16,1431.45,2277.20,0.00,3518724631680.613281,3518724631671.593750,11,0,0.000000,0.000020,19642483,13187503,0,0,42952,0,1,1 +1773599388.536648,1.10,4,3992.50,58.77,1408.43,2300.84,0.00,0.000000,0.000000,11,0,0.000000,0.000030,19642483,13187506,0,0,42955,0,1,1 +1773599393.535770,0.75,4,3992.50,58.65,1412.44,2296.27,0.00,25162.347683,26010.892975,1749968,2301555,0.000000,0.000020,19642483,13187508,0,0,42957,0,1,1 +1773599398.536694,0.75,4,3992.50,58.63,1413.31,2295.39,0.00,3517787649565.502930,3517787648726.280273,251,357,0.000308,0.001228,19642490,13187526,0,0,42960,0,1,1 +1773599403.535875,0.85,4,3992.50,58.64,1412.89,2295.80,0.00,3519013075664.903320,3519013075655.883301,11,0,0.000000,0.000020,19642490,13187528,0,0,42962,0,1,1 +1773599408.536416,0.95,4,3992.50,58.63,1413.14,2295.56,0.00,0.000000,0.000000,11,0,0.000339,0.000725,19642508,13187553,0,0,42965,0,1,1 +1773599413.533576,0.80,4,3992.50,58.63,1413.14,2295.56,0.00,0.180376,0.000000,205,0,0.000000,0.000020,19642508,13187555,0,0,42967,0,1,1 +1773599418.536054,1.00,4,3992.50,58.65,1419.72,2296.28,0.00,1.831124,0.000195,246,2,0.000062,0.000080,19642512,13187562,0,0,42970,0,1,1 +1773599423.532188,0.85,4,3992.50,58.28,1433.59,2281.84,0.00,0.000000,0.000000,246,2,0.000000,0.000020,19642512,13187564,0,0,42972,0,1,1 +1773599428.534108,0.80,4,3992.50,58.29,1433.37,2282.05,0.00,3517086946446.196777,3517086946448.154785,75,0,0.000000,0.000030,19642512,13187567,0,0,42975,0,1,1 +1773599433.536578,0.70,4,3992.50,58.29,1433.37,2282.05,0.00,0.000000,0.000000,75,0,0.000000,0.000020,19642512,13187569,0,0,42977,0,1,1 +1773599438.531893,0.60,4,3992.50,58.29,1433.37,2282.05,0.00,0.126877,0.000000,205,0,0.000000,0.000030,19642512,13187572,0,0,42980,0,1,1 +1773599443.535553,17.75,4,3992.50,64.73,1180.95,2534.39,0.00,3515864033783.775391,0.000000,11,0,2.954223,0.037168,19644805,13190259,0,0,42982,0,1,1 +1773599448.531998,2.63,4,3992.50,65.00,1169.14,2544.84,0.00,0.000000,0.000000,11,0,3.556983,0.046041,19647734,13193696,0,0,42985,0,1,1 +1773599453.536067,1.97,4,3992.50,65.24,1159.57,2554.41,0.00,25147.064334,25996.202530,1751467,2302248,3.476693,0.040475,19650508,13196802,0,0,42987,0,1,1 +1773599458.535008,1.98,4,3992.50,65.30,1157.46,2556.53,0.00,3519182742991.031250,3519182742141.021484,11,0,3.464206,0.040603,19653318,13199921,0,0,42989,0,1,1 +1773599463.536495,2.02,4,3992.50,64.99,1169.46,2544.52,0.00,25150.490079,25998.970170,1749978,2301913,3.486659,0.040834,19656107,13202991,0,0,42992,0,1,1 +1773599468.534851,2.13,4,3992.50,65.19,1161.75,2552.19,0.00,3519594504533.318848,3519594503684.307617,11,0,3.477106,0.040150,19658856,13206066,0,0,42995,0,1,1 +1773599473.535773,2.02,4,3992.50,64.90,1172.82,2541.15,0.00,25153.332783,26001.919809,1749978,2301935,3.500839,0.040990,19661672,13209182,0,0,42997,0,1,1 +1773599478.536168,2.33,4,3992.50,65.29,1158.04,2556.14,0.00,3518158715132.254395,3518158714281.565918,246,2,3.444915,0.040795,19664471,13212262,0,0,43000,0,1,1 +1773599483.531958,2.03,4,3992.50,65.10,1165.13,2548.79,0.00,3521402323306.767578,3521402323308.727539,75,0,3.496215,0.039896,19667205,13215343,0,0,43002,0,1,1 +1773599488.534328,1.92,4,3992.50,64.91,1172.33,2541.56,0.00,3516770068558.357910,0.000000,11,0,3.452812,0.043024,19670140,13218595,0,0,43005,0,1,1 +1773599493.532773,2.13,4,3992.50,65.14,1163.45,2550.46,0.00,25175.361173,26025.531354,1751467,2302351,3.505302,0.038952,19672893,13221575,0,0,43007,0,1,1 +1773599498.535290,1.92,4,3992.50,64.96,1170.55,2543.34,0.00,3516667214162.122070,3516667213310.632812,246,2,3.476163,0.039659,19675653,13224612,0,0,43009,0,1,1 +1773599503.535482,2.08,4,3992.50,64.96,1170.58,2543.31,0.00,3518301908360.995117,10.674589,251,357,3.483090,0.043441,19678581,13227798,0,0,43012,0,1,1 +1773599508.531747,2.33,4,3992.50,65.20,1165.11,2552.68,0.00,3521067835280.440918,3521067835271.361816,75,0,3.435659,0.040257,19681289,13230852,0,0,43015,0,1,1 +1773599513.532539,2.12,4,3992.50,65.12,1161.50,2549.46,0.00,1.958479,0.000195,246,2,3.511789,0.040987,19684098,13233969,0,0,43017,0,1,1 +1773599518.533438,2.07,4,3992.50,65.11,1161.88,2549.05,0.00,25160.997302,26012.821835,1751468,2302416,3.470263,0.039777,19686890,13237027,0,0,43020,0,1,1 +1773599523.531837,1.98,4,3992.50,64.96,1167.76,2543.16,0.00,3519564182658.864258,3519564181808.446289,205,0,3.476603,0.041674,19689733,13240167,0,0,43022,0,1,1 +1773599528.532470,2.02,4,3992.50,65.15,1160.12,2550.82,0.00,1.831799,0.000195,246,2,3.504819,0.041680,19692564,13243308,0,0,43025,0,1,1 +1773599533.535426,2.07,4,3992.50,65.04,1164.38,2546.57,0.00,25141.096891,25991.470982,1749979,2302086,3.458268,0.039404,19695308,13246314,0,0,43027,0,1,1 +1773599538.532051,2.18,4,3992.50,65.15,1153.10,2550.84,0.00,0.000000,0.030880,1749979,2302106,3.474784,0.040916,19698088,13249413,0,0,43030,0,1,1 +1773599543.536638,2.28,4,3992.50,64.91,1162.46,2541.48,0.00,3515212039250.045410,3515212038401.874512,75,0,3.503747,0.040513,19700934,13252516,0,0,43032,0,1,1 +1773599548.532413,1.93,4,3992.50,64.79,1167.07,2536.84,0.00,3521413389160.175293,0.000000,11,0,3.458311,0.043230,19703873,13255765,0,0,43035,0,1,1 +1773599553.536058,1.97,4,3992.50,64.65,1172.93,2531.00,0.00,25149.197027,25998.717142,1751468,2302527,3.483453,0.038752,19706570,13258733,0,0,43037,0,1,1 +1773599558.532481,1.97,4,3992.50,64.70,1170.62,2533.33,0.00,3520956060188.920410,3520956059338.172363,11,0,3.482299,0.038383,19709274,13261658,0,0,43040,0,1,1 +1773599563.534836,2.07,4,3992.50,64.66,1172.38,2531.57,0.00,25146.126891,25994.759715,1749979,2302185,3.452861,0.038145,19711948,13264574,0,0,43042,0,1,1 +1773599568.532134,2.08,4,3992.50,64.98,1160.15,2544.24,0.00,3520339470268.900391,3520339469419.354980,75,0,3.495978,0.041278,19714777,13267706,0,0,43045,0,1,1 +1773599573.531935,2.03,4,3992.50,65.04,1157.84,2546.52,0.00,1.602701,10.675621,251,357,3.494271,0.037708,19717441,13270624,0,0,43047,0,1,1 +1773599578.531976,1.98,4,3992.50,65.15,1153.41,2550.96,0.00,0.000000,0.000000,251,357,3.499884,0.043320,19720369,13273846,0,0,43050,0,1,1 +1773599583.533563,1.97,4,3992.50,64.89,1163.66,2540.70,0.00,0.000000,0.000000,251,357,3.454499,0.040045,19723149,13276884,0,0,43052,0,1,1 +1773599588.533252,2.03,4,3992.50,65.17,1153.01,2551.35,0.00,3518656323351.895996,3518656323342.823242,75,0,3.476239,0.044525,19726151,13280194,0,0,43055,0,1,1 +1773599593.536045,2.43,4,3992.50,64.94,1161.70,2542.66,0.00,3516472643529.022461,0.000000,11,0,3.508809,0.042273,19728992,13283264,0,0,43057,0,1,1 +1773599598.531814,2.23,4,3992.50,65.42,1152.43,2561.38,0.00,0.053561,0.000000,75,0,3.464574,0.041140,19731808,13286388,0,0,43060,0,1,1 +1773599603.533806,2.02,4,3992.50,64.95,1170.57,2542.85,0.00,0.126707,0.000000,205,0,3.518118,0.040551,19734595,13289457,0,0,43062,0,1,1 +1773599608.536316,2.33,4,3992.50,64.78,1177.01,2536.40,0.00,1.475138,10.669839,251,357,3.428916,0.041890,19737480,13292636,0,0,43065,0,1,1 +1773599613.536183,1.82,4,3992.50,65.24,1159.27,2554.14,0.00,3518530576609.104980,3518530576599.905762,205,0,3.524343,0.038958,19740204,13295623,0,0,43067,0,1,1 +1773599618.531796,1.82,4,3992.50,65.15,1162.59,2550.82,0.00,3521526759815.483398,0.000000,11,0,3.463180,0.040706,19743020,13298729,0,0,43070,0,1,1 +1773599623.532679,1.98,4,3992.50,65.04,1166.97,2546.41,0.00,1.655860,10.673311,251,357,3.479209,0.042127,19745922,13301909,0,0,43072,0,1,1 +1773599628.532726,2.53,4,3992.50,65.44,1152.95,2562.12,0.00,3518403998666.380859,3518403998657.182129,205,0,3.470950,0.038857,19748641,13304886,0,0,43075,0,1,1 +1773599633.535043,2.22,4,3992.50,65.16,1162.74,2551.28,0.00,0.000000,0.000000,205,0,3.499695,0.041506,19751483,13308004,0,0,43077,0,1,1 +1773599638.536039,2.07,4,3992.50,64.93,1171.95,2542.05,0.00,3517736708604.835449,0.000000,11,0,3.435500,0.038036,19754147,13310941,0,0,43080,0,1,1 +1773599643.534307,1.92,4,3992.50,64.94,1171.31,2542.70,0.00,0.000000,0.000000,11,0,3.502172,0.039063,19756914,13313938,0,0,43082,0,1,1 +1773599648.536599,2.12,4,3992.50,64.89,1173.25,2540.72,0.00,0.000000,0.000000,11,0,3.457726,0.040365,19759701,13317025,0,0,43085,0,1,1 +1773599653.536306,2.38,4,3992.50,64.93,1171.97,2542.04,0.00,25169.004189,26019.410672,1751468,2302782,3.500110,0.039331,19762472,13320024,0,0,43087,0,1,1 +1773599658.531769,2.43,4,3992.50,65.36,1155.07,2559.03,0.00,3521632662284.129395,3521632662283.051270,1749979,2302443,3.478870,0.039768,19765224,13323024,0,0,43090,0,1,1 +1773599663.532687,2.03,4,3992.50,65.05,1166.98,2547.03,0.00,9.559769,10.695596,1751468,2302828,3.462645,0.040999,19768048,13326115,0,0,43092,0,1,1 +1773599668.536731,2.07,4,3992.50,65.06,1166.79,2547.22,0.00,3515593570543.859863,3515593569694.131836,11,0,3.469565,0.037902,19770731,13329029,0,0,43095,0,1,1 +1773599673.532680,2.08,4,3992.50,65.14,1163.65,2550.35,0.00,2.013936,0.000195,246,2,3.496566,0.040550,19773475,13332051,0,0,43097,0,1,1 +1773599678.531827,2.07,4,3992.50,65.02,1168.24,2545.79,0.00,3519037207540.483398,3519037207542.315918,205,0,3.470822,0.039616,19776239,13335073,0,0,43100,0,1,1 +1773599683.531838,2.08,4,3992.50,65.13,1164.20,2549.79,0.00,0.000000,0.000000,205,0,3.473588,0.041546,19779039,13338206,0,0,43102,0,1,1 +1773599688.531808,2.28,4,3992.50,65.12,1163.88,2549.65,0.00,1.475888,10.675259,251,357,3.498582,0.040677,19781838,13341296,0,0,43105,0,1,1 +1773599693.536380,3.03,4,3992.50,65.05,1166.59,2546.90,0.00,25133.334955,25972.904450,1749979,2302536,3.462550,0.040915,19784654,13344415,0,0,43107,0,1,1 +1773599698.532558,1.72,4,3992.50,65.06,1166.34,2547.16,0.00,3521128729596.552734,3521128728746.546875,11,0,3.491326,0.038860,19787366,13347412,0,0,43110,0,1,1 +1773599703.536110,2.28,4,3992.50,65.25,1158.63,2554.85,0.00,0.000000,0.000000,11,0,3.504740,0.043666,19790272,13350607,0,0,43112,0,1,1 +1773599708.536542,1.92,4,3992.50,65.25,1158.77,2554.74,0.00,25165.359131,26015.828670,1751468,2302971,3.442679,0.043183,19793229,13353836,0,0,43115,0,1,1 +1773599713.535885,1.93,4,3992.50,65.26,1158.48,2555.04,0.00,3518899491804.442383,3518899490953.787598,11,0,3.477603,0.043305,19796182,13357051,0,0,43117,0,1,1 +1773599718.536344,2.58,4,3992.50,65.29,1154.12,2556.43,0.00,2.012120,0.000195,246,2,3.510709,0.037235,19798834,13359932,0,0,43120,0,1,1 +1773599723.535684,1.67,4,3992.50,65.06,1163.24,2547.30,0.00,3518901044377.169922,3518901044379.001953,205,0,3.495094,0.040210,19801562,13362921,0,0,43122,0,1,1 +1773599728.532200,2.08,4,3992.50,64.97,1166.63,2543.88,0.00,1.833309,0.000195,246,2,3.429591,0.040269,19804368,13365964,0,0,43125,0,1,1 +1773599733.532557,2.13,4,3992.50,65.05,1163.53,2547.00,0.00,3518185602321.308105,10.674237,251,357,3.519327,0.040824,19807229,13369084,0,0,43127,0,1,1 +1773599738.531827,1.77,4,3992.50,65.25,1155.79,2554.74,0.00,25159.987742,26000.592506,1749979,2302692,3.443756,0.040537,19810060,13372150,0,0,43129,0,1,1 +1773599743.531827,2.02,4,3992.50,65.42,1149.37,2561.16,0.00,3518437108430.675781,3518437107581.174316,11,0,3.493044,0.069275,19815925,13377351,0,0,43132,0,1,1 +1773599748.531803,2.18,4,3992.50,65.70,1138.09,2572.46,0.00,0.000000,0.000000,11,0,3.554282,0.076362,19822374,13383378,0,0,43135,0,1,1 +1773599753.531825,2.18,4,3992.50,65.57,1143.52,2567.16,0.00,2.012296,0.000195,246,2,3.444821,0.083002,19829057,13389522,0,0,43137,0,1,1 +1773599758.535444,1.88,4,3992.50,65.52,1145.16,2565.34,0.00,3515892498007.566895,3515892498009.523926,75,0,3.569254,0.076081,19835561,13395496,0,0,43140,0,1,1 +1773599763.532360,2.03,4,3992.50,65.34,1152.16,2558.36,0.00,0.126836,0.000000,205,0,3.541800,0.080315,19842233,13401594,0,0,43142,0,1,1 +1773599768.536066,2.13,4,3992.50,65.45,1148.19,2562.31,0.00,0.000000,0.000000,205,0,3.485399,0.081395,19848826,13407723,0,0,43145,0,1,1 +1773599773.533676,1.83,4,3992.50,65.56,1143.68,2566.84,0.00,0.000000,0.000000,205,0,3.503504,0.080346,19855443,13413773,0,0,43147,0,1,1 +1773599778.532582,2.33,4,3992.50,65.71,1140.71,2572.81,0.00,0.000000,0.000000,205,0,3.513810,0.080719,19862074,13419906,0,0,43150,0,1,1 +1773599783.536505,2.28,4,3992.50,65.51,1148.69,2564.80,0.00,1.474722,10.666826,251,357,3.545432,0.075707,19868508,13425888,0,0,43152,0,1,1 +1773599788.533744,1.98,4,3992.50,65.34,1155.14,2558.35,0.00,25170.213406,26011.282635,1749979,2302838,3.449939,0.087988,19875313,13432201,0,0,43155,0,1,1 +1773599793.532634,1.93,4,3992.50,65.77,1138.28,2575.21,0.00,3519218373485.183105,3519218372635.370605,11,0,3.554239,0.076034,19881780,13438186,0,0,43157,0,1,1 +1773599798.531807,2.03,4,3992.50,65.56,1146.68,2566.81,0.00,0.000000,0.000000,11,0,3.532311,0.082684,19888502,13444363,0,0,43160,0,1,1 +1773599803.531800,2.13,4,3992.50,65.64,1143.61,2569.88,0.00,0.180274,0.000000,205,0,3.505678,0.082703,19895160,13450524,0,0,43162,0,1,1 +1773599808.533694,2.69,4,3992.50,65.73,1141.80,2573.41,0.00,3517105117278.061523,0.000000,75,0,3.553682,0.079260,19901654,13456560,0,0,43165,0,1,1 +1773599813.534999,15.02,4,3992.50,72.08,893.13,2821.92,0.00,0.126725,0.000000,205,0,3.573427,0.089424,19908791,13462941,0,0,43167,0,1,1 +1773599818.536148,2.44,4,3992.50,72.57,873.96,2841.08,0.00,3517628517343.347656,0.000000,75,0,3.530439,0.079484,19915364,13469072,0,0,43170,0,1,1 +1773599823.535195,2.85,4,3992.50,72.65,870.48,2844.56,0.00,25162.714801,26012.808312,1749980,2303108,3.512650,0.082462,19922115,13475203,0,0,43172,0,1,1 +1773599828.532127,2.04,4,3992.50,72.54,874.75,2840.28,0.00,3520597637193.522949,3520597636352.147949,251,357,3.524648,0.078597,19928668,13481242,0,0,43175,0,1,1 +1773599833.531848,2.19,4,3992.50,72.56,874.23,2840.81,0.00,0.356172,3518633704156.826172,246,2,3.518579,0.081423,19935364,13487334,0,0,43177,0,1,1 +1773599838.532241,2.69,4,3992.50,72.60,872.57,2842.47,0.00,3518160707483.968262,3518160707485.980469,11,0,3.527340,0.078961,19941966,13493380,0,0,43180,0,1,1 +1773599843.536444,2.54,4,3992.50,72.46,878.09,2836.93,0.00,0.180122,0.000000,205,0,3.538747,0.080794,19948643,13499480,0,0,43182,0,1,1 +1773599848.535754,2.59,4,3992.50,72.36,881.87,2833.17,0.00,25170.826489,26022.186473,1751469,2303554,3.487202,0.079430,19955214,13505512,0,0,43185,0,1,1 +1773599853.532050,2.29,4,3992.50,72.37,881.53,2833.52,0.00,3521045395277.395020,3521045394423.688477,246,2,3.579934,0.079465,19961857,13511596,0,0,43187,0,1,1 +1773599858.535824,2.33,4,3992.50,72.64,871.04,2844.00,0.00,3515783165264.482422,3515783165266.439453,75,0,3.498446,0.079859,19968539,13517563,0,0,43190,0,1,1 +1773599863.536679,2.49,4,3992.50,72.75,866.55,2848.45,0.00,3517836176018.964844,0.000000,11,0,3.508797,0.077910,19975099,13523521,0,0,43192,0,1,1 +1773599868.531737,2.65,4,3992.50,72.69,856.00,2846.10,0.00,25192.432719,26044.387773,1751469,2303618,3.561263,0.079812,19981791,13529564,0,0,43195,0,1,1 +1773599873.536263,2.54,4,3992.50,72.53,862.40,2839.70,0.00,0.000000,0.011708,1751469,2303639,3.492514,0.078494,19988370,13535516,0,0,43197,0,1,1 +1773599878.536412,2.49,4,3992.50,72.34,869.63,2832.46,0.00,0.000000,0.005957,1751469,2303650,3.561182,0.081018,19995117,13541615,0,0,43200,0,1,1 +1773599883.532607,2.70,4,3992.50,72.29,871.63,2830.45,0.00,3521117277906.585449,3521117277054.625977,205,0,3.503820,0.078095,20001675,13547586,0,0,43202,0,1,1 +1773599888.536164,2.44,4,3992.50,72.37,868.60,2833.46,0.00,1.830729,0.000195,246,2,3.523349,0.080340,20008278,13553723,0,0,43205,0,1,1 +1773599893.532481,2.24,4,3992.50,72.26,872.98,2829.11,0.00,25174.502123,26027.176188,1749980,2303336,3.573232,0.081230,20015027,13559759,0,0,43207,0,1,1 +1773599898.531855,2.89,4,3992.50,72.44,864.22,2835.99,0.00,3518878201915.172363,3518878201065.031738,11,0,3.532203,0.078442,20021626,13565757,0,0,43210,0,1,1 +1773599903.531802,2.44,4,3992.50,72.21,873.14,2827.04,0.00,1.656170,10.675307,251,357,3.491385,0.081000,20028301,13571797,0,0,43212,0,1,1 +1773599908.536373,2.18,4,3992.50,71.78,889.84,2810.34,0.00,3515223891400.199707,3515223891391.135742,75,0,3.559160,0.078125,20034974,13577769,0,0,43215,0,1,1 +1773599913.532094,2.45,4,3992.50,71.90,885.31,2814.89,0.00,1.604009,10.684339,251,357,3.496183,0.079506,20041548,13583810,0,0,43217,0,1,1 +1773599918.535391,2.44,4,3992.50,71.89,885.68,2814.49,0.00,3516118824992.620117,3516118824983.426758,205,0,3.559003,0.080199,20048227,13589866,0,0,43220,0,1,1 +1773599923.532470,2.34,4,3992.50,71.93,883.88,2816.30,0.00,3520493328367.999512,0.000000,11,0,3.509128,0.078746,20054823,13595883,0,0,43222,0,1,1 +1773599928.533711,2.75,4,3992.50,72.19,876.85,2826.53,0.00,2.011805,0.000195,246,2,3.518252,0.078141,20061380,13601857,0,0,43225,0,1,1 +1773599933.536457,2.19,4,3992.50,71.99,882.68,2818.62,0.00,3516506193351.792480,3516506193353.750000,75,0,3.489178,0.081356,20068088,13607892,0,0,43227,0,1,1 +1773599938.536187,2.39,4,3992.50,71.98,883.02,2818.29,0.00,0.000000,0.000000,75,0,3.577238,0.077521,20074626,13613950,0,0,43230,0,1,1 +1773599943.535567,2.44,4,3992.50,71.79,890.51,2810.77,0.00,3518873202903.183105,0.000000,11,0,3.551351,0.080091,20081381,13619920,0,0,43232,0,1,1 +1773599948.532703,2.64,4,3992.50,71.99,882.75,2818.55,0.00,0.180377,0.000000,205,0,3.468992,0.079228,20087917,13625965,0,0,43235,0,1,1 +1773599953.532347,3.30,4,3992.50,71.99,882.75,2818.56,0.00,1.832162,0.000195,246,2,3.586173,0.078083,20094614,13631948,0,0,43237,0,1,1 +1773599958.536032,2.84,4,3992.50,72.45,864.60,2836.56,0.00,3515845766862.757812,3515845766864.588379,205,0,3.499929,0.078830,20101259,13637920,0,0,43240,0,1,1 +1773599963.535690,2.29,4,3992.50,72.05,880.34,2820.96,0.00,3518678068730.444824,0.000000,11,0,3.493713,0.078799,20107852,13643908,0,0,43242,0,1,1 +1773599968.532339,2.39,4,3992.50,71.98,883.03,2818.25,0.00,0.000000,0.000000,11,0,3.563590,0.077905,20114511,13649867,0,0,43245,0,1,1 +1773599973.532672,2.04,4,3992.50,71.93,884.95,2816.33,0.00,25165.858395,26017.152539,1751469,2303958,3.478934,0.080109,20121078,13655898,0,0,43247,0,1,1 +1773599978.531794,2.44,4,3992.50,72.00,882.29,2819.02,0.00,3519054755305.285156,3519054754451.772461,246,2,3.588803,0.079741,20127839,13661903,0,0,43250,0,1,1 +1773599983.536105,2.69,4,3992.50,71.87,887.46,2813.83,0.00,25134.290409,25985.813530,1749980,2303623,3.483208,0.080076,20134407,13667957,0,0,43252,0,1,1 +1773599988.536048,2.69,4,3992.50,72.41,870.23,2835.04,0.00,3518477124775.509766,3518477123934.273926,251,357,3.563574,0.079446,20141084,13674000,0,0,43255,0,1,1 +1773599993.532409,2.49,4,3992.50,72.07,879.40,2821.83,0.00,25174.635472,26016.518647,1749980,2303663,3.498402,0.078068,20147679,13679921,0,0,43257,0,1,1 +1773599998.532707,2.24,4,3992.50,72.01,881.88,2819.29,0.00,3518227748552.876465,3518227747702.637207,11,0,3.488281,0.079821,20154328,13685899,0,0,43260,0,1,1 +1773600003.535544,2.54,4,3992.50,71.99,882.77,2818.49,0.00,1.655213,10.669141,251,357,3.572243,0.078660,20160945,13691898,0,0,43262,0,1,1 +1773600008.536011,2.08,4,3992.50,72.13,877.34,2823.90,0.00,0.000000,0.000000,251,357,3.488079,0.079486,20167603,13697846,0,0,43265,0,1,1 +1773600013.532086,40.48,4,3992.50,71.34,908.18,2793.02,0.00,0.356432,3521201317398.910156,246,2,162.530829,0.177624,20192792,13711689,0,0,43267,0,1,1 +1773600018.536024,33.43,4,3992.50,71.11,916.97,2784.17,0.00,3515668250990.022949,10.666599,251,357,136.082448,0.090406,20206919,13718828,0,0,43270,0,1,1 +1773600023.535766,31.97,4,3992.50,71.24,911.77,2789.33,0.00,0.356171,3518619127111.187012,246,2,128.178270,0.074943,20219603,13724678,0,0,43272,0,1,1 +1773600028.531823,30.61,4,3992.50,71.31,909.20,2791.95,0.00,25175.825461,26028.957897,1749989,2303847,123.863554,0.070960,20231772,13730194,0,0,43275,0,1,1 +1773600033.533326,30.24,4,3992.50,71.32,908.66,2792.46,0.00,3517379447226.507812,3517379446376.315918,11,0,122.052738,0.063506,20243760,13735117,0,0,43277,0,1,1 +1773600038.535026,30.01,4,3992.50,71.09,918.04,2783.14,0.00,2.011621,0.000195,246,2,121.390920,0.059979,20255331,13739696,0,0,43280,0,1,1 +1773600043.531865,29.60,4,3992.50,71.26,911.35,2789.81,0.00,3520663178453.467773,3520663178455.481445,11,0,120.029896,0.056085,20266688,13744089,0,0,43282,0,1,1 +1773600048.536019,29.58,4,3992.50,71.46,903.45,2797.72,0.00,25137.098957,25987.009886,1749989,2303911,119.456040,0.057113,20278092,13748477,0,0,43285,0,1,1 +1773600053.536204,30.05,4,3992.50,71.44,905.38,2797.05,0.00,3518306940224.310547,3518306939373.671387,75,0,119.754454,0.059829,20289555,13752971,0,0,43287,0,1,1 +1773600058.532025,29.92,4,3992.50,71.18,915.69,2786.77,0.00,25178.974733,26030.395112,1749989,2303962,119.452705,0.057014,20300855,13757413,0,0,43290,0,1,1 +1773600063.531871,24.52,4,3992.50,71.17,915.90,2786.60,0.00,3518545689340.892578,3518545688490.210938,11,0,119.559220,0.056232,20312282,13761783,0,0,43292,0,1,1 +1773600068.531838,15.73,4,3992.50,64.79,1165.80,2536.61,0.00,0.000000,0.000000,11,0,88.720582,0.044772,20320870,13765144,0,0,43295,0,1,1 +1773600073.532595,18.04,4,3992.50,64.71,1168.92,2533.57,0.00,0.180246,0.000000,205,0,74.287318,0.038964,20328064,13768124,0,0,43297,0,1,1 +1773600078.536462,14.32,4,3992.50,64.69,1169.94,2532.61,0.00,0.000000,0.000000,205,0,87.048944,0.042685,20336568,13771430,0,0,43300,0,1,1 +1773600083.536031,1.36,4,3992.50,58.73,1403.13,2299.42,0.00,0.000000,0.000000,205,0,19.030029,0.011227,20338518,13772238,0,0,43302,0,1,1 +1773600088.536417,0.70,4,3992.50,58.73,1403.16,2299.41,0.00,3518165979395.057617,0.000000,75,0,0.000000,0.000030,20338518,13772241,0,0,43305,0,1,1 +1773600093.531809,0.75,4,3992.50,58.45,1413.98,2288.58,0.00,3521682958825.772949,0.000000,11,0,0.000000,0.000020,20338518,13772243,0,0,43307,0,1,1 +1773600098.536778,0.70,4,3992.50,58.45,1413.98,2288.58,0.00,0.053462,0.000000,75,0,0.000000,0.000030,20338518,13772246,0,0,43310,0,1,1 +1773600103.536168,0.65,4,3992.50,58.45,1413.98,2288.58,0.00,3518866470477.466797,0.000000,11,0,0.000000,0.000020,20338518,13772248,0,0,43312,0,1,1 +1773600108.531919,1.00,4,3992.50,58.50,1412.98,2290.47,0.00,0.053561,0.000000,75,0,0.000000,0.000030,20338518,13772251,0,0,43315,0,1,1 +1773600113.536230,1.15,4,3992.50,58.50,1412.10,2290.47,0.00,1.957101,0.000195,246,2,0.000000,0.000502,20338518,13772256,0,0,43317,0,1,1 +1773600118.536569,0.70,4,3992.50,58.52,1411.36,2291.20,0.00,3518198778440.709961,10.674277,251,357,0.000000,0.000191,20338518,13772260,0,0,43320,0,1,1 +1773600123.536398,0.65,4,3992.50,58.52,1411.36,2291.20,0.00,25167.031704,26010.309298,1751529,2304615,0.000000,0.000020,20338518,13772262,0,0,43322,0,1,1 +1773600128.531901,0.65,4,3992.50,58.53,1411.13,2291.44,0.00,3521604310379.258789,3521604309526.043457,205,0,0.000126,0.000185,20338528,13772275,0,0,43325,0,1,1 +1773600133.536780,0.65,4,3992.50,58.53,1411.13,2291.43,0.00,25143.114261,25994.740758,1751529,2304623,0.000016,0.000036,20338530,13772279,0,0,43327,0,1,1 +1773600138.536555,1.05,4,3992.50,58.53,1418.34,2291.39,0.00,3518595751344.065430,3518595750491.750000,11,0,0.000000,0.000030,20338530,13772282,0,0,43330,0,1,1 +1773600143.535878,17.03,4,3992.50,65.04,1163.24,2546.45,0.00,2.012577,0.000195,246,2,21.639010,0.016751,20340904,13773296,0,0,43332,0,1,1 +1773600148.531792,34.56,4,3992.50,64.88,1169.30,2540.34,0.00,3521315146651.839844,10.683732,251,357,123.270242,0.034048,20353406,13775885,0,0,43335,0,1,1 +1773600153.535683,28.99,4,3992.50,64.80,1172.66,2536.95,0.00,0.000000,0.000000,251,357,122.073562,0.025830,20365843,13777824,0,0,43337,0,1,1 +1773600158.536602,28.77,4,3992.50,65.00,1164.94,2544.70,0.00,3517790614342.093262,3517790614333.076172,11,0,120.941738,0.025306,20377970,13779749,0,0,43340,0,1,1 +1773600163.533619,28.53,4,3992.50,64.75,1174.75,2534.92,0.00,25173.280879,26025.109505,1750040,2304465,120.041913,0.036081,20390169,13782568,0,0,43342,0,1,1 +1773600168.535985,28.93,4,3992.50,65.29,1152.47,2556.33,0.00,9.563249,10.733496,1751530,2304859,119.528193,0.077081,20402651,13788548,0,0,43345,0,1,1 +1773600173.533543,28.97,4,3992.50,64.78,1172.52,2536.30,0.00,3520155982058.405273,3520155982057.459473,1750041,2304539,120.051342,0.093665,20415375,13795838,0,0,43347,0,1,1 +1773600178.536689,29.10,4,3992.50,64.94,1166.30,2542.47,0.00,9.555512,10.672876,1751530,2304903,119.313279,0.089465,20427964,13802855,0,0,43350,0,1,1 +1773600183.536083,26.39,4,3992.50,64.91,1167.46,2541.43,0.00,0.000781,0.005079,1751531,2304913,119.206729,0.102495,20440618,13810796,0,0,43352,0,1,1 +1773600188.536720,2.66,4,3992.50,58.96,1400.29,2308.57,0.00,0.576489,0.093836,1751643,2304935,39.462406,0.035692,20444908,13813512,0,0,43355,0,1,1 +1773600193.536505,0.85,4,3992.50,58.98,1399.61,2309.25,0.00,3518588836126.071289,3518588836125.033203,1750154,2304654,0.002385,0.001802,20444944,13813536,0,0,43357,0,1,1 +1773600198.532226,0.65,4,3992.50,58.94,1401.29,2307.57,0.00,3521450674294.651367,3521450673442.774902,11,0,0.001065,0.000431,20444966,13813552,0,0,43360,0,1,1 +1773600203.535008,1.05,4,3992.50,58.93,1400.65,2307.37,0.00,0.180173,0.000000,205,0,0.000000,0.000020,20444966,13813554,0,0,43362,0,1,1 +1773600208.531900,0.60,4,3992.50,58.93,1400.65,2307.37,0.00,0.000000,0.000000,205,0,0.000000,0.000030,20444966,13813557,0,0,43365,0,1,1 +1773600213.531818,0.75,4,3992.50,58.93,1400.65,2307.37,0.00,0.000000,0.000000,205,0,0.000000,0.000020,20444966,13813559,0,0,43367,0,1,1 +1773600218.534965,0.70,4,3992.50,58.93,1400.65,2307.37,0.00,3516224437592.578125,0.000000,75,0,0.000000,0.000020,20444966,13813561,0,0,43369,0,1,1 +1773600223.534192,0.60,4,3992.50,58.93,1400.65,2307.36,0.00,3518980625354.828613,0.000000,11,0,0.000000,0.000030,20444966,13813564,0,0,43372,0,1,1 +1773600228.535089,1.00,4,3992.50,58.94,1400.82,2307.57,0.00,0.053506,0.000000,75,0,0.000000,0.000030,20444966,13813567,0,0,43375,0,1,1 +1773600233.536212,0.60,4,3992.50,58.96,1400.09,2308.31,0.00,0.000000,0.000000,75,0,0.000050,0.000082,20444970,13813573,0,0,43377,0,1,1 +1773600238.532130,0.75,4,3992.50,58.96,1400.09,2308.31,0.00,1.960390,0.000195,246,2,0.000092,0.000139,20444978,13813584,0,0,43380,0,1,1 +1773600243.536209,0.65,4,3992.50,58.92,1401.53,2306.88,0.00,25145.885023,25999.736737,1751643,2305124,0.000050,0.000082,20444982,13813590,0,0,43382,0,1,1 +1773600248.536013,0.70,4,3992.50,58.93,1401.28,2307.12,0.00,3518575067525.403320,3518575066670.821777,246,2,0.000000,0.000674,20444982,13813597,0,0,43385,0,1,1 +1773600253.536371,14.67,4,3992.50,64.99,1163.91,2544.37,0.00,25155.033259,26008.425022,1750154,2304798,6.812941,0.009545,20445835,13814189,0,0,43387,0,1,1 +1773600258.536093,34.68,4,3992.50,65.08,1160.11,2548.20,0.00,3518633002688.270508,3518633001836.728516,75,0,116.168491,0.044211,20457732,13817559,0,0,43390,0,1,1 +1773600263.533625,28.28,4,3992.50,64.80,1171.46,2536.90,0.00,0.126820,0.000000,205,0,120.226540,0.028071,20470063,13819673,0,0,43392,0,1,1 +1773600268.536725,27.79,4,3992.50,64.68,1175.87,2532.49,0.00,25152.637001,26005.011326,1751643,2305317,118.092847,0.025988,20482283,13821658,0,0,43395,0,1,1 +1773600273.536606,28.21,4,3992.50,64.77,1172.46,2535.78,0.00,3518520671878.652832,3518520671034.929199,251,357,120.167314,0.019919,20494557,13823203,0,0,43397,0,1,1 +1773600278.531946,28.09,4,3992.50,64.61,1178.61,2529.71,0.00,3521719280095.035156,3521719280086.007812,11,0,118.275144,0.018545,20506768,13824565,0,0,43400,0,1,1 +1773600283.536519,28.18,4,3992.50,64.92,1166.65,2541.67,0.00,0.000000,0.000000,11,0,120.054821,0.041936,20518999,13827811,0,0,43402,0,1,1 +1773600288.535669,28.32,4,3992.50,64.71,1174.89,2533.45,0.00,0.180304,0.000000,205,0,118.985089,0.043503,20531147,13831205,0,0,43405,0,1,1 +1773600293.536242,28.61,4,3992.50,64.70,1178.60,2533.30,0.00,25165.346697,26018.345945,1751643,2305387,119.347232,0.049606,20543098,13835089,0,0,43407,0,1,1 +1773600298.535797,5.57,4,3992.50,60.80,1331.68,2380.46,0.00,3518750280707.447266,3518750279854.274414,205,0,67.298239,0.027374,20549963,13837226,0,0,43409,0,1,1 +1773600303.536079,1.20,4,3992.50,59.30,1390.39,2321.75,0.00,3518238609942.724121,0.000000,75,0,0.003262,0.001588,20550022,13837268,0,0,43412,0,1,1 +1773600308.536283,0.85,4,3992.50,58.93,1404.86,2307.29,0.00,0.000000,0.000000,75,0,0.001229,0.001254,20550031,13837285,0,0,43415,0,1,1 +1773600313.531905,0.85,4,3992.50,58.68,1414.65,2297.50,0.00,25190.565206,26044.408543,1751656,2305576,0.000205,0.001197,20550038,13837302,0,0,43417,0,1,1 +1773600318.536425,0.75,4,3992.50,58.69,1414.17,2297.96,0.00,3515259787497.381348,3515259786644.929199,205,0,0.000000,0.000030,20550038,13837305,0,0,43420,0,1,1 +1773600323.532503,0.95,4,3992.50,58.91,1405.62,2306.54,0.00,0.000000,0.000000,205,0,0.000031,0.000045,20550040,13837309,0,0,43422,0,1,1 +1773600328.536018,0.65,4,3992.50,58.86,1407.63,2304.53,0.00,0.000000,0.000000,205,0,0.000031,0.000055,20550042,13837314,0,0,43425,0,1,1 +1773600333.533099,0.80,4,3992.50,58.86,1407.63,2304.53,0.00,25173.517443,26026.259850,1750167,2305306,0.000000,0.000020,20550042,13837316,0,0,43427,0,1,1 +1773600338.535865,0.60,4,3992.50,58.86,1407.48,2304.67,0.00,3516491866050.288086,3516491865198.694824,11,0,0.000000,0.000030,20550042,13837319,0,0,43430,0,1,1 +1773600343.536273,0.70,4,3992.50,58.87,1407.27,2304.89,0.00,0.000000,0.000000,11,0,0.000025,0.000051,20550044,13837323,0,0,43432,0,1,1 +1773600348.536077,1.00,4,3992.50,58.94,1406.24,2307.61,0.00,1.656218,10.675616,251,357,0.000101,0.000154,20550052,13837334,0,0,43435,0,1,1 +1773600353.532270,0.60,4,3992.50,58.96,1404.91,2308.55,0.00,0.356424,3521117873233.267090,246,2,0.000039,0.000053,20550055,13837339,0,0,43437,0,1,1 +1773600358.536376,0.60,4,3992.50,58.96,1404.91,2308.55,0.00,25145.897700,26000.532921,1751656,2305703,0.000031,0.000055,20550057,13837344,0,0,43440,0,1,1 +1773600363.536849,3.56,4,3992.50,64.82,1175.76,2537.70,0.00,3518104760106.898926,3518104759253.474121,205,0,0.404056,0.003508,20550194,13837456,0,0,43442,0,1,1 +1773600368.536507,42.41,4,3992.50,64.70,1180.14,2533.22,0.00,3518677899822.343262,0.000000,11,0,107.558242,0.049963,20561299,13841311,0,0,43445,0,1,1 +1773600373.534651,28.01,4,3992.50,64.92,1171.85,2541.57,0.00,0.000000,0.000000,11,0,119.810339,0.036384,20573479,13844057,0,0,43447,0,1,1 +1773600378.535615,28.51,4,3992.50,65.12,1162.80,2549.67,0.00,0.180239,0.000000,205,0,118.542420,0.033484,20585675,13846556,0,0,43450,0,1,1 +1773600383.536629,28.41,4,3992.50,65.07,1164.76,2547.76,0.00,3517724452479.326172,0.000000,75,0,119.942997,0.033979,20598022,13849150,0,0,43452,0,1,1 +1773600388.531829,28.25,4,3992.50,64.65,1181.41,2531.09,0.00,3521817780639.875977,0.000000,11,0,118.477829,0.027251,20610181,13851299,0,0,43455,0,1,1 +1773600393.536689,28.34,4,3992.50,64.93,1170.38,2542.18,0.00,0.000000,0.000000,11,0,119.847118,0.046446,20622301,13854934,0,0,43457,0,1,1 +1773600398.531813,27.95,4,3992.50,65.00,1167.62,2544.94,0.00,0.000000,0.000000,11,0,118.477267,0.024822,20634325,13856847,0,0,43460,0,1,1 +1773600403.536767,28.29,4,3992.50,64.56,1184.91,2527.64,0.00,25134.099519,25985.742410,1750167,2305596,120.045887,0.033015,20646582,13859424,0,0,43462,0,1,1 +1773600408.532636,8.95,4,3992.50,59.76,1372.99,2339.61,0.00,3521346584360.706543,3521346583507.514648,11,0,82.381182,0.033603,20654956,13862033,0,0,43465,0,1,1 +1773600413.536082,1.25,4,3992.50,59.24,1393.35,2319.27,0.00,0.000000,0.000000,11,0,0.002225,0.001030,20654998,13862061,0,0,43467,0,1,1 +1773600418.531817,0.60,4,3992.50,58.88,1407.43,2305.20,0.00,1.657566,10.684310,251,357,0.000000,0.000030,20654998,13862064,0,0,43470,0,1,1 +1773600423.535580,0.60,4,3992.50,58.76,1412.11,2300.50,0.00,3515790746618.097656,3515790746609.085938,11,0,0.000000,0.000020,20654998,13862066,0,0,43472,0,1,1 +1773600428.533932,0.75,4,3992.50,58.76,1411.90,2300.72,0.00,0.053533,0.000000,75,0,0.000000,0.000030,20654998,13862069,0,0,43475,0,1,1 +1773600433.536191,0.55,4,3992.50,58.76,1411.90,2300.72,0.00,0.000000,0.000000,75,0,0.000000,0.000020,20654998,13862071,0,0,43477,0,1,1 +1773600438.536366,1.00,4,3992.50,58.76,1412.08,2300.68,0.00,3518314241689.411133,0.000000,11,0,0.000000,0.000030,20654998,13862074,0,0,43480,0,1,1 +1773600443.536542,0.65,4,3992.50,58.29,1430.34,2282.30,0.00,1.656094,10.674820,251,357,0.000000,0.000664,20654998,13862080,0,0,43482,0,1,1 +1773600448.534768,0.60,4,3992.50,58.31,1429.63,2283.01,0.00,3519685732218.707031,3519685732209.631348,75,0,0.000000,0.000030,20654998,13862083,0,0,43485,0,1,1 +1773600453.536447,0.60,4,3992.50,58.32,1429.40,2283.24,0.00,3517256228904.033691,0.000000,11,0,0.000025,0.000051,20655000,13862087,0,0,43487,0,1,1 +1773600458.534564,0.70,4,3992.50,58.32,1429.40,2283.24,0.00,0.180341,0.000000,205,0,0.000117,0.000170,20655010,13862100,0,0,43490,0,1,1 +1773600463.536671,0.60,4,3992.50,58.31,1429.53,2283.11,0.00,25148.286873,26000.966837,1750178,2305769,0.000000,0.000020,20655010,13862102,0,0,43492,0,1,1 +1773600468.536548,1.00,4,3992.50,58.55,1415.61,2292.45,0.00,3518524505761.663086,3518524504908.729004,75,0,0.000000,0.000030,20655010,13862105,0,0,43495,0,1,1 +1773600473.534164,14.25,4,3992.50,64.88,1163.84,2540.15,0.00,3520114980869.811523,0.000000,11,0,9.223990,0.013545,20656177,13862892,0,0,43497,0,1,1 +1773600478.532079,35.91,4,3992.50,65.07,1160.15,2547.82,0.00,0.000000,0.000000,11,0,123.824666,0.029041,20668902,13865056,0,0,43500,0,1,1 +1773600483.532823,28.59,4,3992.50,64.94,1165.29,2542.63,0.00,0.000000,0.000000,11,0,122.155739,0.027671,20681540,13867129,0,0,43502,0,1,1 +1773600488.533216,28.25,4,3992.50,64.61,1178.45,2529.54,0.00,0.180259,0.000000,205,0,120.563823,0.040673,20693927,13870261,0,0,43505,0,1,1 +1773600493.533055,27.98,4,3992.50,64.69,1175.06,2532.88,0.00,1.475927,10.675541,251,357,120.173041,0.030388,20706260,13872600,0,0,43507,0,1,1 +1773600498.531870,28.80,4,3992.50,64.84,1169.41,2538.45,0.00,3519271020614.353027,3519271020605.332031,11,0,120.196899,0.024601,20718591,13874428,0,0,43510,0,1,1 +1773600503.535570,28.32,4,3992.50,64.59,1180.68,2528.95,0.00,0.000000,0.000000,11,0,119.878250,0.031547,20730888,13876899,0,0,43512,0,1,1 +1773600508.537288,28.23,4,3992.50,64.72,1175.56,2534.06,0.00,0.180212,0.000000,205,0,119.723748,0.040892,20743137,13880018,0,0,43515,0,1,1 +1773600513.531821,28.50,4,3992.50,64.86,1170.36,2539.25,0.00,25195.996856,26051.475972,1751667,2306397,118.893012,0.024122,20755213,13881864,0,0,43517,0,1,1 +1773600518.535989,1.50,4,3992.50,60.01,1360.21,2349.48,0.00,3515507000895.207031,3515507000041.555176,11,0,50.827293,0.008099,20760376,13882461,0,0,43520,0,1,1 +1773600523.534805,0.95,4,3992.50,59.22,1391.04,2318.62,0.00,2.012781,0.000195,246,2,0.002894,0.001792,20760429,13882500,0,0,43522,0,1,1 +1773600528.536704,0.90,4,3992.50,58.64,1408.36,2295.91,0.00,3517101280165.132324,3517101280167.144043,11,0,0.000000,0.000030,20760429,13882503,0,0,43525,0,1,1 +1773600533.536034,0.70,4,3992.50,58.64,1408.00,2295.85,0.00,0.180298,0.000000,205,0,0.000000,0.000020,20760429,13882505,0,0,43527,0,1,1 +1773600538.536374,0.65,4,3992.50,58.64,1407.78,2296.07,0.00,25157.313943,26010.797947,1750189,2306163,0.000025,0.000061,20760431,13882510,0,0,43530,0,1,1 +1773600543.531898,0.70,4,3992.50,58.25,1423.05,2280.80,0.00,0.000000,0.003128,1750189,2306166,0.000033,0.000059,20760434,13882515,0,0,43532,0,1,1 +1773600548.533585,0.60,4,3992.50,58.25,1423.05,2280.80,0.00,0.000000,0.003124,1750189,2306170,0.000000,0.000030,20760434,13882518,0,0,43535,0,1,1 +1773600553.536219,0.95,4,3992.50,58.25,1423.05,2280.79,0.00,3516584587884.654785,3516584587031.556152,205,0,0.000000,0.000020,20760434,13882520,0,0,43537,0,1,1 +1773600558.535979,1.05,4,3992.50,58.37,1419.95,2285.39,0.00,3518606415850.726562,0.000000,75,0,0.000000,0.000030,20760434,13882523,0,0,43540,0,1,1 +1773600563.536700,0.70,4,3992.50,58.18,1425.88,2278.00,0.00,25165.083099,26019.638207,1751678,2306566,0.000025,0.000695,20760436,13882531,0,0,43542,0,1,1 +1773600568.535851,0.70,4,3992.50,58.18,1425.88,2278.00,0.00,3519034489848.974609,3519034488994.023926,205,0,0.000109,0.000162,20760445,13882543,0,0,43545,0,1,1 +1773600573.533964,0.65,4,3992.50,58.18,1425.88,2277.99,0.00,3519765674745.645996,0.000000,75,0,0.000000,0.000664,20760445,13882549,0,0,43547,0,1,1 +1773600578.532546,0.80,4,3992.50,58.18,1425.88,2277.99,0.00,25166.293300,26020.106354,1750189,2306214,0.000308,0.000585,20760452,13882563,0,0,43550,0,1,1 +1773600583.537286,8.36,4,3992.50,64.73,1169.41,2534.42,0.00,9.552467,10.674548,1751678,2306601,2.805533,0.007201,20760904,13882938,0,0,43552,0,1,1 +1773600588.535920,39.18,4,3992.50,64.62,1173.76,2530.07,0.00,3519398312390.451172,3519398311544.598633,251,357,111.385697,0.033859,20772352,13885523,0,0,43555,0,1,1 +1773600593.532619,28.56,4,3992.50,64.66,1172.25,2531.48,0.00,3520761686162.162109,3520761686152.957031,205,0,120.042324,0.029174,20784468,13887726,0,0,43557,0,1,1 +1773600598.532095,28.24,4,3992.50,64.64,1172.91,2530.84,0.00,1.476034,10.676315,251,357,118.176274,0.017896,20796650,13889073,0,0,43560,0,1,1 +1773600603.534972,27.99,4,3992.50,65.00,1158.82,2545.03,0.00,3516413988753.470215,3516413988744.456543,11,0,120.095589,0.029447,20808909,13891383,0,0,43562,0,1,1 +1773600608.532987,28.34,4,3992.50,64.61,1173.95,2529.81,0.00,0.053537,0.000000,75,0,118.215530,0.027500,20821168,13893439,0,0,43565,0,1,1 +1773600613.535831,7.37,4,3992.50,65.58,1136.01,2567.75,0.00,25144.862689,25998.213499,1750198,2306488,26.352212,0.041724,20824627,13896090,0,0,43567,0,1,1 +1773600618.532397,5.40,4,3992.50,65.60,1120.77,2568.54,0.00,3520855423417.065430,3520855422562.642578,75,0,17.062785,0.031992,20826873,13898290,0,0,43570,0,1,1 +1773600623.534741,5.61,4,3992.50,65.66,1118.44,2570.83,0.00,1.601886,10.670192,251,357,17.056685,0.031445,20829112,13900471,0,0,43572,0,1,1 +1773600628.536560,5.61,4,3992.50,65.44,1127.11,2562.09,0.00,0.356023,3517157938339.149902,246,2,16.890330,0.029934,20831265,13902537,0,0,43575,0,1,1 +1773600633.531907,5.92,4,3992.50,65.45,1126.62,2562.62,0.00,3521714931654.604492,3521714931656.618652,11,0,17.105373,0.029905,20833474,13904670,0,0,43577,0,1,1 +1773600638.534213,6.07,4,3992.50,65.42,1128.06,2561.17,0.00,2.011377,0.000195,246,2,16.958338,0.029738,20835666,13906788,0,0,43580,0,1,1 +1773600643.531802,6.02,4,3992.50,65.39,1129.03,2560.20,0.00,3520134367039.587891,3520134367041.420410,205,0,16.916166,0.030289,20837863,13908935,0,0,43582,0,1,1 +1773600648.533217,5.96,4,3992.50,65.72,1116.04,2573.18,0.00,25151.922086,26005.877316,1750198,2306590,17.018319,0.031028,20840116,13911124,0,0,43585,0,1,1 +1773600653.535895,6.07,4,3992.50,65.20,1136.48,2552.73,0.00,3516554029655.748047,3516554028802.134766,75,0,16.719826,0.029400,20842289,13913219,0,0,43587,0,1,1 +1773600658.536304,5.92,4,3992.50,65.32,1131.77,2557.41,0.00,0.000000,0.000000,75,0,16.810598,0.029426,20844460,13915290,0,0,43590,0,1,1 +1773600663.531843,5.96,4,3992.50,65.23,1135.42,2553.75,0.00,1.604068,10.684729,251,357,16.862908,0.030850,20846672,13917453,0,0,43592,0,1,1 +1773600668.531912,5.56,4,3992.50,65.22,1135.60,2553.60,0.00,25166.780180,26012.900227,1751687,2306987,17.091591,0.029982,20848857,13919566,0,0,43595,0,1,1 +1773600673.536459,6.06,4,3992.50,65.26,1134.00,2555.16,0.00,0.000000,0.001951,1751687,2306995,17.544592,0.031831,20851191,13921811,0,0,43597,0,1,1 +1773600678.531819,5.96,4,3992.50,65.34,1130.80,2558.39,0.00,3521705078098.857422,3521705077242.910645,11,0,17.762224,0.033127,20853535,13924100,0,0,43600,0,1,1 +1773600683.531956,6.01,4,3992.50,65.48,1136.68,2563.61,0.00,0.180269,0.000000,205,0,17.105450,0.030375,20855720,13926222,0,0,43602,0,1,1 +1773600688.532430,5.96,4,3992.50,65.31,1143.35,2556.95,0.00,0.000000,0.000000,205,0,17.246407,0.030668,20857956,13928377,0,0,43605,0,1,1 +1773600693.532449,5.76,4,3992.50,65.27,1144.96,2555.33,0.00,25168.504297,26023.907265,1751687,2307050,17.305405,0.031076,20860204,13930566,0,0,43607,0,1,1 +1773600698.532887,6.12,4,3992.50,65.31,1143.41,2556.87,0.00,3518128826759.064453,3518128825903.859863,75,0,17.004652,0.029090,20862345,13932628,0,0,43610,0,1,1 +1773600703.532268,5.91,4,3992.50,65.23,1146.56,2553.73,0.00,3518873193752.979492,0.000000,11,0,17.577327,0.030651,20864589,13934799,0,0,43612,0,1,1 +1773600708.536736,5.86,4,3992.50,65.64,1117.08,2569.93,0.00,0.053468,0.000000,75,0,17.939091,0.031048,20866886,13937000,0,0,43615,0,1,1 +1773600713.536537,5.97,4,3992.50,65.18,1135.25,2551.81,0.00,25160.166255,26014.434588,1750198,2306746,17.150193,0.032231,20869180,13939245,0,0,43617,0,1,1 +1773600718.533556,5.92,4,3992.50,65.11,1137.85,2549.23,0.00,3520535683510.993164,3520535682656.302734,11,0,17.032818,0.029713,20871308,13941338,0,0,43620,0,1,1 +1773600723.536497,5.56,4,3992.50,65.14,1136.70,2550.31,0.00,25144.433319,25998.119293,1750198,2306763,17.007014,0.028918,20873452,13943380,0,0,43622,0,1,1 +1773600728.536708,5.61,4,3992.50,65.14,1136.86,2550.25,0.00,3518288421342.029785,3518288420487.824219,75,0,17.240218,0.029871,20875650,13945493,0,0,43625,0,1,1 +1773600733.535951,0.90,4,3992.50,65.19,1134.65,2552.46,0.00,1.602879,10.676812,251,357,17.058117,0.029501,20877789,13947580,0,0,43627,0,1,1 +1773600738.531813,1.21,4,3992.50,65.54,1125.73,2565.93,0.00,25178.400351,26024.329003,1750199,2306812,16.916922,0.031104,20880043,13949766,0,0,43629,0,1,1 +1773600743.531837,0.80,4,3992.50,65.55,1120.57,2566.54,0.00,3518420666850.001465,3518420665995.757812,11,0,16.654144,0.028303,20882126,13951763,0,0,43632,0,1,1 +1773600748.532952,1.15,4,3992.50,58.53,1395.59,2291.53,0.00,25163.249991,26018.444893,1751694,2307196,7.702623,0.016982,20883109,13952910,0,0,43635,0,1,1 +1773600753.532664,0.85,4,3992.50,58.44,1398.87,2288.25,0.00,3518640221218.658691,3518640220363.043457,205,0,0.329338,0.001963,20883200,13953022,0,0,43637,0,1,1 +1773600758.531899,0.85,4,3992.50,58.43,1399.52,2287.58,0.00,3518975450957.994629,0.000000,75,0,0.002479,0.001175,20883246,13953067,0,0,43640,0,1,1 +1773600763.531878,0.70,4,3992.50,58.46,1398.30,2288.80,0.00,25168.992740,26024.393226,1751700,2307242,0.000056,0.000198,20883250,13953073,0,0,43642,0,1,1 +1773600768.535380,1.00,4,3992.50,58.54,1398.68,2291.82,0.00,3515974375163.908691,3515974374307.153320,246,2,0.000000,0.000030,20883250,13953076,0,0,43645,0,1,1 +1773600773.536371,1.45,4,3992.50,58.49,1400.43,2290.08,0.00,3517740680748.394531,3517740680750.352539,75,0,0.000000,0.000020,20883250,13953078,0,0,43647,0,1,1 +1773600778.536702,0.75,4,3992.50,58.49,1400.32,2290.19,0.00,1.602530,10.674487,251,357,0.000000,0.000030,20883250,13953081,0,0,43650,0,1,1 +1773600783.531956,0.75,4,3992.50,58.47,1401.21,2289.28,0.00,0.000000,0.000000,251,357,0.000000,0.000020,20883250,13953083,0,0,43652,0,1,1 +1773600788.536502,0.60,4,3992.50,58.46,1401.60,2288.89,0.00,3515241138280.882812,3515241138271.691895,205,0,0.000000,0.000030,20883250,13953086,0,0,43655,0,1,1 +1773600793.535984,0.80,4,3992.50,58.46,1401.60,2288.89,0.00,1.476032,10.676301,251,357,0.001680,0.000903,20883274,13953102,0,0,43657,0,1,1 +1773600798.535106,1.05,4,3992.50,58.86,1385.95,2304.60,0.00,0.000000,0.000000,251,357,0.000677,0.000946,20883290,13953124,0,0,43660,0,1,1 +1773600803.536550,0.60,4,3992.50,58.83,1387.05,2303.45,0.00,0.356050,3517421319909.625488,246,2,0.001347,0.001477,20883315,13953151,0,0,43662,0,1,1 +1773600808.531818,0.65,4,3992.50,58.82,1387.55,2302.96,0.00,3521770372249.859375,3521770372251.874023,11,0,0.000000,0.000030,20883315,13953154,0,0,43665,0,1,1 +1773600813.536225,0.65,4,3992.50,58.82,1387.55,2302.96,0.00,25137.594933,25991.001976,1750443,2307042,0.000000,0.000663,20883315,13953160,0,0,43667,0,1,1 +1773600818.536810,0.90,4,3992.50,58.75,1390.45,2300.05,0.00,3518025487494.559082,3518025486640.319336,205,0,0.000395,0.000064,20883321,13953166,0,0,43670,0,1,1 +1773600823.531902,0.90,4,3992.50,58.76,1389.99,2300.51,0.00,25193.866793,26050.292028,1751932,2307547,0.002198,0.002105,20883359,13953204,0,0,43672,0,1,1 +1773600828.531914,1.35,4,3992.50,58.80,1400.49,2302.11,0.00,0.000000,0.066797,1751932,2307587,0.002265,0.002074,20883400,13953237,0,0,43675,0,1,1 +1773600833.536162,14.97,4,3992.50,65.07,1154.65,2547.54,0.00,3515450273654.937988,3515450272800.139648,75,0,0.662817,0.011863,20884703,13953964,0,0,43677,0,1,1 +1773600838.536498,3.24,4,3992.50,65.07,1154.59,2547.62,0.00,25158.010446,26012.428590,1750443,2307307,6.618269,0.149964,20896612,13962724,0,0,43680,0,1,1 +1773600843.531790,2.84,4,3992.50,64.97,1158.51,2543.72,0.00,0.000000,0.006647,1750443,2307318,7.803413,0.184598,20910531,13973492,0,0,43682,0,1,1 +1773600848.531924,2.69,4,3992.50,64.90,1159.19,2540.99,0.00,3518342344696.553223,3518342343840.135742,246,2,8.539034,0.193991,20925187,13984874,0,0,43685,0,1,1 +1773600853.531855,3.09,4,3992.50,65.12,1152.79,2549.42,0.00,3518485839281.366211,3518485839283.378906,11,0,7.791487,0.191776,20939692,13996075,0,0,43687,0,1,1 +1773600858.536430,2.53,4,3992.50,65.47,1139.00,2563.21,0.00,25146.307387,26001.118965,1751932,2307723,8.548115,0.214693,20955612,14008521,0,0,43690,0,1,1 +1773600863.536125,2.69,4,3992.50,65.10,1153.26,2548.91,0.00,3518651519557.935059,3518651518711.308594,251,357,7.566548,0.195780,20969588,14019980,0,0,43692,0,1,1 +1773600868.536158,2.74,4,3992.50,65.32,1144.87,2557.33,0.00,0.356150,3518414178036.998535,246,2,9.032093,0.223534,20986109,14033035,0,0,43695,0,1,1 +1773600873.531789,2.74,4,3992.50,65.30,1145.39,2556.81,0.00,3521514226314.667480,10.684336,251,357,8.802274,0.223087,21002310,14045885,0,0,43697,0,1,1 +1773600878.536157,2.48,4,3992.50,65.16,1150.89,2551.29,0.00,3515365789497.650879,3515365789488.640137,11,0,8.582027,0.222999,21018121,14058646,0,0,43700,0,1,1 +1773600883.532693,2.89,4,3992.50,65.24,1147.77,2554.41,0.00,25186.765668,26043.016966,1751932,2307798,6.019864,0.164813,21029350,14068371,0,0,43702,0,1,1 +1773600888.534142,3.14,4,3992.50,65.29,1143.74,2556.31,0.00,3517417710139.945801,3517417709282.524414,246,2,8.541349,0.210856,21045019,14080664,0,0,43705,0,1,1 +1773600893.532385,2.69,4,3992.50,65.37,1140.55,2559.21,0.00,3519674058951.770020,10.678753,251,357,8.129718,0.216219,21060214,14093045,0,0,43707,0,1,1 +1773600898.531764,2.99,4,3992.50,65.33,1142.07,2557.72,0.00,3518874365681.921387,3518874365672.721191,205,0,6.398443,0.174257,21072143,14103282,0,0,43710,0,1,1 +1773600903.535337,2.78,4,3992.50,65.36,1140.69,2559.11,0.00,1.830723,0.000195,246,2,7.522746,0.196701,21085980,14114839,0,0,43712,0,1,1 +1773600908.532439,2.44,4,3992.50,65.18,1147.68,2552.08,0.00,3520477589680.407227,3520477589682.240234,205,0,8.454847,0.225964,21101718,14127656,0,0,43715,0,1,1 +1773600913.533314,2.43,4,3992.50,65.25,1144.98,2554.81,0.00,25155.173766,26009.898535,1750443,2307585,4.258166,0.123626,21109825,14135085,0,0,43717,0,1,1 +1773600918.535795,2.53,4,3992.50,65.49,1135.08,2564.26,0.00,0.000000,0.036408,1750443,2307608,4.399442,0.120727,21118012,14142483,0,0,43720,0,1,1 +1773600923.532044,2.44,4,3992.50,65.64,1129.27,2570.12,0.00,3521078746294.073242,3521078745438.647461,75,0,8.481003,0.206722,21133611,14154540,0,0,43722,0,1,1 +1773600928.532234,2.89,4,3992.50,65.40,1138.88,2560.45,0.00,1.958715,0.000195,246,2,6.510770,0.188149,21145930,14165261,0,0,43725,0,1,1 +1773600933.533993,2.74,4,3992.50,65.58,1131.60,2567.75,0.00,25148.893611,26005.367333,1750443,2307660,5.613757,0.153652,21156309,14174406,0,0,43727,0,1,1 +1773600938.535383,2.38,4,3992.50,65.50,1135.04,2564.33,0.00,3517458967130.476562,3517458966284.967285,251,357,7.085298,0.182673,21169327,14185186,0,0,43730,0,1,1 +1773600943.535047,2.74,4,3992.50,65.31,1142.55,2556.83,0.00,3518674292933.045898,3518674292923.973145,75,0,8.515338,0.226032,21185401,14198005,0,0,43732,0,1,1 +1773600948.532580,3.45,4,3992.50,65.70,1130.09,2572.27,0.00,1.603428,10.680465,251,357,6.076974,0.165581,21196695,14207773,0,0,43735,0,1,1 +1773600953.532450,2.48,4,3992.50,65.78,1124.14,2575.24,0.00,25168.310724,26015.244121,1751932,2308075,6.752672,0.174931,21209101,14218199,0,0,43737,0,1,1 +1773600958.531720,2.44,4,3992.50,65.58,1131.76,2567.61,0.00,3518951018831.941406,3518951017984.906250,251,357,8.754532,0.228669,21225488,14231262,0,0,43740,0,1,1 +1773600963.535628,2.64,4,3992.50,65.56,1132.76,2566.63,0.00,0.000000,0.000000,251,357,6.174081,0.166553,21237054,14241023,0,0,43742,0,1,1 +1773600968.532025,2.79,4,3992.50,65.60,1131.16,2568.22,0.00,25185.805999,26033.361548,1751932,2308121,6.417956,0.165642,21248839,14250953,0,0,43745,0,1,1 +1773600973.536274,2.63,4,3992.50,65.57,1132.14,2567.26,0.00,3515449300703.754395,3515449299857.528809,251,357,9.210829,0.230575,21265871,14264301,0,0,43747,0,1,1 +1773600978.534888,2.99,4,3992.50,65.58,1131.67,2567.70,0.00,3519413014003.746582,3519413013994.671875,75,0,8.602273,0.222024,21281942,14277025,0,0,43750,0,1,1 +1773600983.535806,2.64,4,3992.50,65.55,1135.97,2566.49,0.00,25155.082254,26009.886213,1750443,2307809,7.224411,0.187326,21295346,14287980,0,0,43752,0,1,1 +1773600988.532450,2.69,4,3992.50,65.89,1122.86,2579.58,0.00,3520800091247.085938,3520800090391.604492,11,0,8.077310,0.203262,21310136,14299922,0,0,43755,0,1,1 +1773600993.531891,2.84,4,3992.50,65.62,1133.28,2569.16,0.00,1.656338,10.676389,251,357,8.291615,0.220852,21325647,14312518,0,0,43757,0,1,1 +1773600998.532474,2.39,4,3992.50,65.44,1140.17,2562.29,0.00,3518027094873.139160,3518027094863.941406,205,0,5.275303,0.147108,21335541,14321264,0,0,43760,0,1,1 +1773601003.531923,2.94,4,3992.50,65.90,1122.20,2580.30,0.00,25162.345954,26017.566011,1750443,2307867,5.584132,0.148896,21345840,14330211,0,0,43762,0,1,1 +1773601008.531804,2.84,4,3992.50,66.02,1127.06,2584.73,0.00,3518520355915.029297,3518520355060.063477,11,0,8.938524,0.226049,21362351,14343222,0,0,43765,0,1,1 +1773601013.532465,2.94,4,3992.50,66.00,1126.93,2584.14,0.00,0.000000,0.000000,11,0,5.970172,0.173486,21373784,14353258,0,0,43767,0,1,1 +1773601018.532723,2.54,4,3992.50,65.95,1129.18,2581.91,0.00,0.053513,0.000000,75,0,5.748392,0.155379,21384380,14362589,0,0,43770,0,1,1 +1773601023.534540,2.99,4,3992.50,66.03,1126.02,2585.05,0.00,3517158716765.580078,0.000000,11,0,8.120497,0.204945,21399282,14374574,0,0,43772,0,1,1 +1773601028.533939,2.43,4,3992.50,65.97,1128.14,2582.96,0.00,0.000000,0.000000,11,0,6.995494,0.206033,21412815,14386257,0,0,43775,0,1,1 +1773601033.535646,2.84,4,3992.50,66.25,1117.12,2593.99,0.00,1.655587,10.671553,251,357,4.901019,0.135157,21421887,14394508,0,0,43777,0,1,1 +1773601038.531814,3.05,4,3992.50,66.25,1112.10,2593.77,0.00,3521135833440.878906,3521135833431.672363,205,0,6.031828,0.158721,21433000,14404055,0,0,43780,0,1,1 +1773601043.531817,2.38,4,3992.50,65.57,1138.70,2567.20,0.00,1.832030,0.000195,246,2,8.915357,0.238293,21449768,14417618,0,0,43782,0,1,1 +1773601048.532675,2.58,4,3992.50,65.66,1135.03,2570.87,0.00,3517833553570.018066,10.673168,251,357,4.059435,0.124806,21457617,14424976,0,0,43785,0,1,1 +1773601053.531811,1.88,4,3992.50,65.92,1125.04,2580.88,0.00,3519045078171.211426,3519045078162.191406,11,0,3.759377,0.102051,21464619,14431488,0,0,43787,0,1,1 +1773601058.536000,2.89,4,3992.50,65.93,1124.55,2581.30,0.00,0.000000,0.000000,11,0,6.333009,0.160541,21476310,14441144,0,0,43790,0,1,1 +1773601063.536077,2.28,4,3992.50,65.68,1134.25,2571.63,0.00,0.000000,0.000000,11,0,7.885325,0.217519,21491349,14453464,0,0,43792,0,1,1 +1773601068.532524,2.94,4,3992.50,66.07,1119.76,2586.98,0.00,1.657330,10.682789,251,357,6.216697,0.164450,21502824,14463293,0,0,43795,0,1,1 +1773601073.536172,2.74,4,3992.50,65.70,1133.81,2572.21,0.00,0.355893,3515871646392.481934,246,2,7.173243,0.187035,21516001,14474386,0,0,43797,0,1,1 +1773601078.536135,2.49,4,3992.50,65.57,1138.78,2567.22,0.00,3518463363026.750488,3518463363028.763184,11,0,8.983581,0.235106,21532870,14487757,0,0,43800,0,1,1 +1773601083.532167,2.64,4,3992.50,65.79,1130.22,2575.80,0.00,0.000000,0.000000,11,0,7.298576,0.194230,21546364,14499093,0,0,43802,0,1,1 +1773601088.534659,2.69,4,3992.50,65.69,1133.92,2572.10,0.00,2.011302,0.000195,246,2,7.889587,0.206307,21560835,14511212,0,0,43805,0,1,1 +1773601093.536006,2.64,4,3992.50,65.56,1139.35,2566.67,0.00,3517489677360.871094,3517489677362.882812,11,0,9.010566,0.234069,21577655,14524589,0,0,43807,0,1,1 +1773601098.532079,2.84,4,3992.50,65.90,1126.09,2580.13,0.00,0.180415,0.000000,205,0,7.877937,0.205964,21592284,14536440,0,0,43810,0,1,1 +1773601103.531841,3.40,4,3992.50,65.68,1134.67,2571.48,0.00,3518604579754.506836,0.000000,11,0,8.758369,0.217894,21608157,14549042,0,0,43812,0,1,1 +1773601108.536031,2.43,4,3992.50,65.97,1123.09,2583.06,0.00,0.180122,0.000000,205,0,7.560153,0.192311,21622171,14560184,0,0,43815,0,1,1 +1773601113.536160,2.79,4,3992.50,65.79,1130.27,2575.85,0.00,3518347186340.955566,0.000000,75,0,9.095219,0.221471,21638769,14573063,0,0,43817,0,1,1 +1773601118.536288,2.89,4,3992.50,65.83,1128.71,2577.41,0.00,1.958739,0.000195,246,2,7.141423,0.168323,21651684,14582851,0,0,43820,0,1,1 +1773601123.533556,2.64,4,3992.50,66.09,1118.72,2587.40,0.00,3520360204939.244141,3520360204941.077148,205,0,7.751060,0.190071,21665885,14594073,0,0,43822,0,1,1 +1773601128.531784,2.69,4,3992.50,65.93,1127.05,2581.27,0.00,3519685042117.064453,0.000000,11,0,9.186664,0.223823,21682566,14607101,0,0,43825,0,1,1 +1773601133.531783,3.14,4,3992.50,65.89,1127.98,2579.77,0.00,25169.316250,26025.755683,1751932,2308620,8.255458,0.210724,21697664,14619091,0,0,43827,0,1,1 +1773601138.532557,2.64,4,3992.50,66.12,1118.98,2588.77,0.00,3517893138727.679688,3517893137869.360840,246,2,7.373380,0.191860,21711228,14630350,0,0,43830,0,1,1 +1773601143.535896,2.69,4,3992.50,66.20,1115.72,2592.00,0.00,3516089108317.407715,3516089108319.238770,205,0,8.437113,0.217553,21726700,14643061,0,0,43832,0,1,1 +1773601148.532243,2.49,4,3992.50,65.99,1124.18,2583.51,0.00,1.476958,10.683001,251,357,8.189499,0.225621,21742152,14655828,0,0,43835,0,1,1 +1773601153.531719,2.68,4,3992.50,65.95,1125.60,2582.25,0.00,0.356190,3518805339953.341309,246,2,5.060536,0.138368,21751573,14664180,0,0,43837,0,1,1 +1773601158.532583,3.25,4,3992.50,66.43,1106.48,2600.74,0.00,3517829898468.397461,10.673157,251,357,5.833397,0.154440,21762326,14673535,0,0,43840,0,1,1 +1773601163.532219,2.23,4,3992.50,65.95,1125.10,2582.14,0.00,3518693340199.867188,3518693340190.666992,205,0,8.876295,0.229915,21778945,14686680,0,0,43842,0,1,1 +1773601168.536244,2.69,4,3992.50,65.85,1128.97,2578.23,0.00,1.474692,10.666608,251,357,5.071457,0.147453,21788584,14695323,0,0,43845,0,1,1 +1773601173.532315,2.39,4,3992.50,66.33,1110.45,2596.79,0.00,25177.880166,26024.925529,1750443,2308354,4.665111,0.125482,21797221,14702991,0,0,43847,0,1,1 +1773601178.532356,2.64,4,3992.50,66.08,1120.16,2587.10,0.00,3518408096340.087402,3518408095484.642090,75,0,7.653820,0.191068,21811281,14714201,0,0,43850,0,1,1 +1773601183.536668,2.98,4,3992.50,65.81,1130.55,2576.70,0.00,0.000000,0.000000,75,0,7.980917,0.216857,21826481,14726506,0,0,43852,0,1,1 +1773601188.534862,2.49,4,3992.50,66.46,1104.36,2602.21,0.00,3519708798718.821289,0.000000,11,0,7.277958,0.191798,21839894,14737706,0,0,43855,0,1,1 +1773601193.535816,5.56,4,3992.50,72.68,860.75,2845.77,0.00,0.000000,0.000000,11,0,8.496030,0.217421,21855501,14750376,0,0,43857,0,1,1 +1773601198.536147,13.75,4,3992.50,72.83,855.24,2851.29,0.00,0.000000,0.000000,11,0,9.087774,0.247921,21872953,14764593,0,0,43860,0,1,1 +1773601203.534489,3.15,4,3992.50,72.79,856.57,2849.95,0.00,25168.112376,26023.999122,1750453,2308567,7.688158,0.210945,21887332,14777559,0,0,43862,0,1,1 +1773601208.532487,3.30,4,3992.50,72.94,850.76,2855.73,0.00,3519846503512.659668,3519846502656.660645,75,0,9.317247,0.255720,21904835,14792953,0,0,43865,0,1,1 +1773601213.531908,32.24,4,3992.50,72.65,862.14,2844.31,0.00,25172.188575,26029.088946,1751942,2308972,132.693909,0.090012,21924341,14799465,0,0,43867,0,1,1 +1773601218.531936,36.38,4,3992.50,72.63,862.83,2843.69,0.00,3518417538981.565430,3518417538124.642090,205,0,147.040494,0.052575,21939924,14803595,0,0,43870,0,1,1 +1773601223.536684,33.23,4,3992.50,72.77,858.44,2849.05,0.00,1.830293,0.000195,246,2,132.732176,0.045352,21953251,14807042,0,0,43872,0,1,1 +1773601228.535728,31.22,4,3992.50,72.78,858.17,2849.36,0.00,25162.567517,26020.543454,1750453,2308722,126.949294,0.044390,21965900,14810395,0,0,43875,0,1,1 +1773601233.535549,30.22,4,3992.50,72.94,851.85,2855.64,0.00,3518563377704.699707,3518563376846.856934,246,2,123.620227,0.041570,21978202,14813599,0,0,43877,0,1,1 +1773601238.535913,29.82,4,3992.50,72.71,860.71,2846.76,0.00,3518181059969.172363,3518181059971.130859,75,0,122.258750,0.040097,21990252,14816689,0,0,43880,0,1,1 +1773601243.536580,26.19,4,3992.50,73.00,849.43,2858.09,0.00,0.126741,0.000000,205,0,120.977466,0.040325,22002112,14819731,0,0,43882,0,1,1 +1773601248.536622,15.45,4,3992.50,65.54,1141.49,2565.98,0.00,3518407984282.620605,0.000000,11,0,97.885454,0.032661,22011750,14822238,0,0,43885,0,1,1 +1773601253.535992,15.57,4,3992.50,65.35,1138.14,2558.78,0.00,25172.678472,26029.879459,1751968,2309239,61.655435,0.023270,22017956,14823934,0,0,43887,0,1,1 +1773601258.536287,18.28,4,3992.50,65.28,1140.94,2556.02,0.00,3518229644052.646484,3518229643193.591797,246,2,74.649382,0.026261,22025423,14825906,0,0,43890,0,1,1 +1773601263.531814,21.87,4,3992.50,65.45,1134.36,2562.54,0.00,3521587423781.606934,3521587423783.621094,11,0,88.377885,0.029451,22034257,14828158,0,0,43892,0,1,1 +1773601268.536301,23.90,4,3992.50,65.52,1131.78,2565.20,0.00,25137.391656,25992.686201,1750479,2308942,98.307356,0.033803,22044068,14830693,0,0,43895,0,1,1 +1773601273.536689,25.48,4,3992.50,65.47,1133.69,2563.22,0.00,3518164190365.815430,3518164189509.639648,205,0,106.491475,0.035248,22054727,14833409,0,0,43897,0,1,1 +1773601278.536437,8.90,4,3992.50,59.48,1368.20,2328.78,0.00,25170.679949,26028.156699,1751977,2309325,87.099588,0.028576,22063512,14835670,0,0,43900,0,1,1 +1773601283.536233,1.20,4,3992.50,59.02,1389.46,2310.61,0.00,3518580175293.406738,3518580174436.065430,75,0,0.003099,0.001543,22063569,14835709,0,0,43902,0,1,1 +1773601288.531819,0.60,4,3992.50,58.78,1398.68,2301.39,0.00,1.960520,0.000195,246,2,0.000000,0.000030,22063569,14835712,0,0,43905,0,1,1 +1773601293.532548,0.60,4,3992.50,58.75,1399.88,2300.20,0.00,3517924020457.346191,3517924020459.358398,11,0,0.000000,0.000020,22063569,14835714,0,0,43907,0,1,1 +1773601298.533195,0.80,4,3992.50,58.75,1399.88,2300.20,0.00,0.180250,0.000000,205,0,0.000000,0.000030,22063569,14835717,0,0,43910,0,1,1 +1773601303.535702,0.60,4,3992.50,58.75,1399.88,2300.19,0.00,3516674227649.209961,0.000000,11,0,0.000000,0.000020,22063569,14835719,0,0,43912,0,1,1 +1773601308.531807,1.00,4,3992.50,58.93,1388.35,2307.17,0.00,0.000000,0.000000,11,0,0.000000,0.000030,22063569,14835722,0,0,43915,0,1,1 +1773601313.535962,0.70,4,3992.50,58.94,1387.79,2307.66,0.00,0.000000,0.000000,11,0,0.000000,0.000020,22063569,14835724,0,0,43917,0,1,1 +1773601318.532640,0.70,4,3992.50,58.92,1388.53,2306.91,0.00,25186.408357,26044.526168,1751985,2309503,0.000000,0.000030,22063569,14835727,0,0,43920,0,1,1 +1773601323.535223,0.65,4,3992.50,58.92,1388.53,2306.93,0.00,3516620195292.960449,3516620194444.870117,251,357,0.000000,0.000020,22063569,14835729,0,0,43922,0,1,1 +1773601328.536646,0.70,4,3992.50,58.91,1388.98,2306.48,0.00,3517436437011.819824,3517436437002.803223,11,0,0.000126,0.000185,22063579,14835742,0,0,43925,0,1,1 +1773601333.536681,0.65,4,3992.50,58.90,1389.45,2306.01,0.00,0.000000,0.000000,11,0,0.000016,0.000680,22063581,14835750,0,0,43927,0,1,1 +1773601338.536279,0.90,4,3992.50,58.73,1401.74,2299.35,0.00,0.180288,0.000000,205,0,0.000000,0.000030,22063581,14835753,0,0,43930,0,1,1 +1773601343.533835,0.80,4,3992.50,58.76,1399.91,2300.54,0.00,25181.797314,26039.988302,1751985,2309534,0.000000,0.000020,22063581,14835755,0,0,43932,0,1,1 +1773601348.532778,30.20,4,3992.50,64.71,1166.79,2533.65,0.00,3519181551141.698242,3519181550283.745117,205,0,60.300569,0.030266,22069911,14837936,0,0,43935,0,1,1 +1773601353.531783,30.23,4,3992.50,64.86,1160.86,2539.50,0.00,3519137168785.081543,0.000000,75,0,118.989173,0.028203,22082122,14840070,0,0,43937,0,1,1 +1773601358.534600,28.18,4,3992.50,64.68,1168.00,2532.36,0.00,0.126686,0.000000,205,0,119.303275,0.034306,22094438,14842723,0,0,43940,0,1,1 +1773601363.535725,28.84,4,3992.50,64.84,1161.73,2538.61,0.00,3517646035414.376953,0.000000,11,0,119.537811,0.020400,22106628,14844283,0,0,43942,0,1,1 +1773601368.535917,28.28,4,3992.50,64.69,1167.75,2532.67,0.00,0.000000,0.000000,11,0,118.760423,0.024442,22118691,14846148,0,0,43945,0,1,1 +1773601373.532744,28.33,4,3992.50,65.15,1149.70,2550.67,0.00,0.000000,0.000000,11,0,119.843456,0.029795,22130938,14848480,0,0,43947,0,1,1 +1773601378.536155,28.77,4,3992.50,64.68,1168.09,2532.25,0.00,0.180151,0.000000,205,0,118.881603,0.018668,22143010,14849906,0,0,43950,0,1,1 +1773601383.537445,28.51,4,3992.50,65.02,1154.73,2545.61,0.00,1.831559,0.000195,246,2,119.732645,0.017658,22155175,14851252,0,0,43952,0,1,1 +1773601388.532797,19.97,4,3992.50,65.00,1155.61,2544.84,0.00,25191.079781,26051.899915,1751986,2309821,118.872245,0.016715,22167237,14852524,0,0,43955,0,1,1 +1773601393.536587,1.15,4,3992.50,58.64,1404.55,2295.85,0.00,3515771582501.888672,3515771582500.712891,1750515,2309488,11.211374,0.003422,22168505,14852710,0,0,43957,0,1,1 +1773601398.536789,1.10,4,3992.50,58.91,1402.61,2306.43,0.00,3518295122706.124512,3518295121849.328125,11,0,0.001779,0.001559,22168530,14852728,0,0,43960,0,1,1 +1773601403.536589,0.70,4,3992.50,58.88,1403.90,2305.15,0.00,25161.276644,26018.238578,1750515,2309556,0.000000,0.000664,22168530,14852734,0,0,43962,0,1,1 +1773601408.536719,0.80,4,3992.50,58.92,1402.20,2306.84,0.00,3518345898129.251953,3518345897281.365723,251,357,0.001734,0.001353,22168555,14852752,0,0,43965,0,1,1 +1773601413.536301,0.65,4,3992.50,58.92,1402.20,2306.84,0.00,25170.279442,26019.401021,1752004,2309944,0.000000,0.000020,22168555,14852754,0,0,43967,0,1,1 +1773601418.536587,0.75,4,3992.50,58.93,1401.97,2307.07,0.00,3518236248093.825684,3518236247235.805176,11,0,0.000000,0.000020,22168555,14852756,0,0,43969,0,1,1 +1773601423.536476,0.75,4,3992.50,58.93,1401.97,2307.07,0.00,0.180277,0.000000,205,0,0.000000,0.000030,22168555,14852759,0,0,43972,0,1,1 +1773601428.536366,0.90,4,3992.50,59.33,1386.26,2322.78,0.00,25160.643891,26017.930071,1750515,2309608,0.000000,0.000030,22168555,14852762,0,0,43975,0,1,1 +1773601433.531897,0.65,4,3992.50,59.02,1398.39,2310.65,0.00,3521584604893.826172,3521584604035.918945,75,0,0.000000,0.000020,22168555,14852764,0,0,43977,0,1,1 +1773601438.531894,0.70,4,3992.50,59.02,1398.15,2310.88,0.00,3518439241837.340332,0.000000,11,0,0.000076,0.000123,22168561,14852773,0,0,43980,0,1,1 +1773601443.531897,0.65,4,3992.50,59.02,1398.21,2310.83,0.00,1.656151,10.675189,251,357,0.000058,0.000090,22168566,14852780,0,0,43982,0,1,1 +1773601448.536006,0.65,4,3992.50,59.02,1398.21,2310.83,0.00,0.000000,0.000000,251,357,0.000000,0.000030,22168566,14852783,0,0,43985,0,1,1 +1773601453.532348,0.90,4,3992.50,59.02,1398.20,2310.84,0.00,25177.031603,26025.752480,1750515,2309638,0.000050,0.000082,22168570,14852789,0,0,43987,0,1,1 +1773601458.535559,34.27,4,3992.50,64.72,1172.72,2534.05,0.00,3516179696500.285645,3516179695641.706055,246,2,75.461981,0.032250,22176537,14855101,0,0,43990,0,1,1 +1773601463.536286,29.20,4,3992.50,64.62,1176.74,2529.90,0.00,3517925713036.343262,3517925713038.301270,75,0,118.546925,0.030604,22188641,14857418,0,0,43992,0,1,1 +1773601468.531785,28.36,4,3992.50,64.65,1175.80,2531.00,0.00,3521607533952.623047,0.000000,11,0,119.875386,0.020565,22200954,14858860,0,0,43995,0,1,1 +1773601473.534798,28.12,4,3992.50,64.61,1176.96,2529.49,0.00,0.053483,0.000000,75,0,118.692061,0.032105,22213007,14861306,0,0,43997,0,1,1 +1773601478.534197,28.43,4,3992.50,64.44,1183.91,2522.97,0.00,3518860180099.426758,0.000000,11,0,119.779726,0.028489,22225307,14863512,0,0,44000,0,1,1 +1773601483.535993,27.97,4,3992.50,64.79,1170.26,2536.49,0.00,25151.234098,26008.290656,1750515,2309884,118.722317,0.027947,22237411,14865562,0,0,44002,0,1,1 +1773601488.536105,28.61,4,3992.50,64.76,1171.34,2535.40,0.00,3518358547707.729492,3518358546848.372070,246,2,119.565248,0.026354,22249676,14867558,0,0,44005,0,1,1 +1773601493.531925,28.43,4,3992.50,64.69,1178.72,2532.75,0.00,3521380609092.739746,3521380609094.573242,205,0,119.265998,0.025197,22261908,14869511,0,0,44007,0,1,1 +1773601498.533596,16.57,4,3992.50,58.59,1417.64,2293.87,0.00,1.475386,10.671630,251,357,115.519712,0.019346,22273539,14870969,0,0,44010,0,1,1 +1773601503.536050,1.20,4,3992.50,58.24,1431.36,2280.14,0.00,0.000000,0.000000,251,357,0.003254,0.001693,22273608,14871020,0,0,44012,0,1,1 +1773601508.536001,0.70,4,3992.50,58.24,1431.14,2280.36,0.00,25168.626806,26018.321886,1752025,2310440,0.000308,0.000584,22273615,14871034,0,0,44015,0,1,1 +1773601513.536371,0.80,4,3992.50,58.24,1431.14,2280.35,0.00,0.000000,0.004687,1752025,2310444,0.000000,0.000020,22273615,14871036,0,0,44017,0,1,1 +1773601518.535685,0.90,4,3992.50,58.53,1417.59,2291.61,0.00,3518920496006.991699,3518920496005.935059,1750536,2310112,0.000000,0.000030,22273615,14871039,0,0,44020,0,1,1 +1773601523.532702,0.75,4,3992.50,58.42,1421.74,2287.39,0.00,0.000000,0.033614,1750536,2310137,0.000205,0.000552,22273622,14871052,0,0,44022,0,1,1 +1773601528.535539,0.70,4,3992.50,58.46,1420.30,2288.84,0.00,3516442418466.541016,3516442417618.354004,251,357,0.000031,0.000055,22273624,14871057,0,0,44025,0,1,1 +1773601533.536058,0.70,4,3992.50,58.46,1420.30,2288.84,0.00,25165.769875,26015.568484,1752025,2310511,0.000031,0.000689,22273626,14871065,0,0,44027,0,1,1 +1773601538.531935,0.70,4,3992.50,58.45,1420.80,2288.34,0.00,3521340415500.236816,3521340414649.648926,251,357,0.000008,0.000038,22273627,14871069,0,0,44030,0,1,1 +1773601543.536356,0.70,4,3992.50,58.45,1420.80,2288.33,0.00,3515329312563.898438,3515329312554.887695,11,0,0.000000,0.000020,22273627,14871071,0,0,44032,0,1,1 +1773601548.536154,0.90,4,3992.50,58.66,1412.33,2296.68,0.00,2.012386,0.000195,246,2,0.000126,0.000185,22273637,14871084,0,0,44035,0,1,1 +1773601553.536782,0.65,4,3992.50,58.66,1412.29,2296.68,0.00,3517995275500.336914,3517995275502.295410,75,0,0.000031,0.000045,22273639,14871088,0,0,44037,0,1,1 +1773601558.536470,0.70,4,3992.50,58.69,1411.31,2297.65,0.00,0.126766,0.000000,205,0,0.000000,0.000030,22273639,14871091,0,0,44040,0,1,1 +1773601563.531821,1.00,4,3992.50,58.66,1412.11,2296.86,0.00,3521711539203.836426,0.000000,11,0,0.000000,0.000020,22273639,14871093,0,0,44042,0,1,1 +1773601568.535829,30.90,4,3992.50,65.09,1160.46,2548.45,0.00,0.000000,0.000000,11,0,70.859472,0.050879,22281331,14874862,0,0,44045,0,1,1 +1773601573.535916,33.48,4,3992.50,65.16,1157.79,2551.09,0.00,0.180270,0.000000,205,0,123.777685,0.044337,22293793,14878282,0,0,44047,0,1,1 +1773601578.532184,29.68,4,3992.50,65.16,1157.75,2551.16,0.00,25188.658392,26048.612067,1752025,2310724,120.754351,0.021118,22305580,14879872,0,0,44050,0,1,1 +1773601583.535977,29.59,4,3992.50,65.02,1159.31,2545.77,0.00,3515769989109.625488,3515769988251.145508,11,0,120.606564,0.022970,22317327,14881669,0,0,44052,0,1,1 +1773601588.535239,29.99,4,3992.50,65.00,1159.76,2545.07,0.00,25164.194172,26022.426818,1750536,2310440,119.191827,0.029137,22329039,14883939,0,0,44055,0,1,1 +1773601593.535937,29.54,4,3992.50,64.98,1160.54,2544.26,0.00,3517945927903.156250,3517945927045.116699,75,0,119.839111,0.035460,22341036,14886679,0,0,44057,0,1,1 +1773601598.532636,29.14,4,3992.50,65.22,1151.23,2553.57,0.00,0.000000,0.000000,75,0,118.943393,0.033520,22352523,14889260,0,0,44060,0,1,1 +1773601603.535339,29.36,4,3992.50,65.33,1147.16,2557.66,0.00,0.000000,0.000000,75,0,120.010951,0.034657,22364187,14891931,0,0,44062,0,1,1 +1773601608.531840,15.83,4,3992.50,61.41,1300.39,2404.49,0.00,0.126847,0.000000,205,0,111.463389,0.031945,22375049,14894402,0,0,44065,0,1,1 +1773601613.531824,1.15,4,3992.50,60.30,1344.10,2360.77,0.00,25160.541254,26018.987006,1750548,2310541,0.003255,0.001682,22375118,14894452,0,0,44067,0,1,1 +1773601618.533078,0.75,4,3992.50,59.45,1377.44,2327.43,0.00,3517554603242.702148,3517554602384.654785,11,0,0.000008,0.000038,22375119,14894456,0,0,44070,0,1,1 +1773601623.531861,0.60,4,3992.50,59.26,1384.71,2320.15,0.00,0.180317,0.000000,205,0,0.000000,0.000020,22375119,14894458,0,0,44072,0,1,1 +1773601628.531921,1.50,4,3992.50,59.25,1385.21,2319.66,0.00,1.832009,0.000195,246,2,0.000000,0.000030,22375119,14894461,0,0,44075,0,1,1 +1773601633.532670,0.65,4,3992.50,59.06,1392.49,2312.38,0.00,0.000000,0.000000,246,2,0.000000,0.000020,22375119,14894463,0,0,44077,0,1,1 +1773601638.531818,1.10,4,3992.50,59.04,1392.84,2311.70,0.00,3519036934416.649414,3519036934418.481934,205,0,0.000000,0.000030,22375119,14894466,0,0,44080,0,1,1 +1773601643.535976,0.65,4,3992.50,59.05,1392.66,2311.93,0.00,1.474653,10.666325,251,357,0.000000,0.000020,22375119,14894468,0,0,44082,0,1,1 +1773601648.536027,0.65,4,3992.50,59.05,1392.66,2311.93,0.00,3518401297966.855957,3518401297957.837402,11,0,0.000000,0.000030,22375119,14894471,0,0,44085,0,1,1 +1773601653.532106,0.75,4,3992.50,59.05,1392.66,2311.93,0.00,0.180415,0.000000,205,0,0.000000,0.000020,22375119,14894473,0,0,44087,0,1,1 +1773601658.536359,0.65,4,3992.50,59.05,1392.66,2311.93,0.00,3515446850969.481445,0.000000,11,0,0.000126,0.000185,22375129,14894486,0,0,44090,0,1,1 +1773601663.536102,0.65,4,3992.50,58.98,1395.27,2309.32,0.00,1.656238,10.675745,251,357,0.000016,0.000680,22375131,14894494,0,0,44092,0,1,1 +1773601668.535999,1.05,4,3992.50,59.22,1386.06,2318.60,0.00,0.000000,0.000000,251,357,0.000000,0.000030,22375131,14894497,0,0,44095,0,1,1 +1773601673.536544,0.65,4,3992.50,59.23,1385.86,2318.82,0.00,0.000000,0.000000,251,357,0.000000,0.000020,22375131,14894499,0,0,44097,0,1,1 +1773601678.532669,27.93,4,3992.50,65.41,1143.69,2560.93,0.00,0.356429,3521166137981.857422,246,2,63.944685,0.024385,22381983,14896210,0,0,44100,0,1,1 +1773601683.536494,33.74,4,3992.50,65.09,1156.21,2548.33,0.00,25139.395883,25999.442631,1750548,2310858,122.088427,0.053639,22394742,14900305,0,0,44102,0,1,1 +1773601688.532684,29.07,4,3992.50,65.25,1149.74,2554.86,0.00,0.000000,0.007525,1750548,2310870,120.672108,0.057965,22407380,14904813,0,0,44105,0,1,1 +1773601693.531793,30.25,4,3992.50,65.15,1153.82,2550.76,0.00,9.563227,10.683056,1752037,2311240,120.458964,0.043324,22419906,14908188,0,0,44107,0,1,1 +1773601698.535739,29.59,4,3992.50,65.41,1147.87,2561.01,0.00,3515663290068.365723,3515663290067.319336,1750548,2310920,120.217177,0.040588,22432313,14911200,0,0,44110,0,1,1 +1773601703.536685,29.32,4,3992.50,65.13,1158.73,2549.91,0.00,3517770889072.104980,3517770888222.512695,251,357,119.350434,0.046842,22444568,14914814,0,0,44112,0,1,1 +1773601708.536284,30.32,4,3992.50,65.39,1148.64,2560.07,0.00,3518720098495.274902,3518720098486.075195,205,0,120.176290,0.028770,22456758,14917032,0,0,44115,0,1,1 +1773601713.535796,29.79,4,3992.50,65.17,1157.02,2551.67,0.00,25162.913842,26022.134655,1750548,2310993,118.973799,0.018116,22468753,14918394,0,0,44117,0,1,1 +1773601718.531846,18.85,4,3992.50,65.25,1154.14,2554.66,0.00,3521218537203.012695,3521218536352.402832,251,357,119.457218,0.018905,22480812,14919809,0,0,44120,0,1,1 +1773601723.535828,1.15,4,3992.50,59.95,1361.58,2347.18,0.00,25148.657634,25999.043022,1752048,2311392,0.203680,0.001934,22480915,14919879,0,0,44122,0,1,1 +1773601728.536585,1.00,4,3992.50,59.45,1394.66,2327.53,0.00,3517904216300.682129,3517904215449.748535,251,357,0.000000,0.000030,22480915,14919882,0,0,44125,0,1,1 +1773601733.535881,0.75,4,3992.50,59.33,1399.10,2323.09,0.00,3518933186327.064453,3518933186318.044434,11,0,0.000000,0.000664,22480915,14919888,0,0,44127,0,1,1 +1773601738.536746,0.60,4,3992.50,59.33,1399.10,2323.09,0.00,0.053506,0.000000,75,0,0.000000,0.000062,22480915,14919892,0,0,44130,0,1,1 +1773601743.534593,0.60,4,3992.50,59.30,1400.50,2321.69,0.00,25171.562165,26031.193558,1750559,2311145,0.000025,0.000220,22480917,14919901,0,0,44132,0,1,1 +1773601748.536636,0.65,4,3992.50,59.34,1399.05,2323.14,0.00,3517000040438.710938,3517000039577.842773,246,2,0.000008,0.000038,22480918,14919905,0,0,44135,0,1,1 +1773601753.535697,0.70,4,3992.50,59.34,1399.05,2323.14,0.00,3519098608684.475586,3519098608686.488281,11,0,0.000025,0.000051,22480920,14919909,0,0,44137,0,1,1 +1773601758.535908,1.05,4,3992.50,59.44,1400.03,2327.05,0.00,1.656082,10.674744,251,357,0.000000,0.000076,22480920,14919913,0,0,44140,0,1,1 +1773601763.535330,0.70,4,3992.50,59.25,1407.49,2319.61,0.00,3518844168839.820801,3518844168830.800781,11,0,0.000000,0.000020,22480920,14919915,0,0,44142,0,1,1 +1773601768.534234,0.75,4,3992.50,59.25,1407.24,2319.86,0.00,25166.294053,26025.756600,1750559,2311194,0.000126,0.000185,22480930,14919928,0,0,44145,0,1,1 +1773601773.536418,0.60,4,3992.50,59.25,1407.25,2319.85,0.00,9.557348,10.678538,1752048,2311561,0.000008,0.000028,22480931,14919931,0,0,44147,0,1,1 +1773601778.535959,0.65,4,3992.50,59.23,1408.09,2319.00,0.00,3518759892527.070801,3518759892525.960938,1750559,2311206,0.000000,0.000030,22480931,14919934,0,0,44150,0,1,1 +1773601783.536075,0.80,4,3992.50,59.04,1415.47,2311.63,0.00,3518356174978.837402,3518356174119.571289,11,0,0.000308,0.000574,22480938,14919947,0,0,44152,0,1,1 +1773601788.535876,9.42,4,3992.50,65.43,1152.48,2561.86,0.00,0.000000,0.000000,11,0,6.816386,0.011803,22481911,14920637,0,0,44155,0,1,1 +1773601793.534262,37.00,4,3992.50,65.53,1148.73,2565.55,0.00,25178.467807,26039.366477,1752048,2311754,122.208385,0.040414,22494374,14923733,0,0,44157,0,1,1 +1773601798.532532,30.49,4,3992.50,65.81,1137.55,2576.72,0.00,3519654735059.637207,3519654734198.718750,11,0,121.414089,0.041704,22506874,14926898,0,0,44160,0,1,1 +1773601803.536798,29.61,4,3992.50,65.44,1152.11,2562.20,0.00,0.000000,0.000000,11,0,120.661655,0.041913,22519086,14930181,0,0,44162,0,1,1 +1773601808.534505,30.23,4,3992.50,65.34,1156.39,2558.05,0.00,0.180356,0.000000,205,0,119.620516,0.041954,22531310,14933397,0,0,44165,0,1,1 +1773601813.531786,30.33,4,3992.50,65.26,1159.38,2554.91,0.00,1.833028,0.000195,246,2,119.824075,0.039647,22543538,14936437,0,0,44167,0,1,1 +1773601818.531790,30.38,4,3992.50,65.39,1154.18,2560.11,0.00,3518434437762.404785,3518434437764.236816,205,0,119.600057,0.052345,22556011,14940499,0,0,44170,0,1,1 +1773601823.535685,30.09,4,3992.50,65.42,1152.89,2561.44,0.00,1.830605,0.000195,246,2,120.135534,0.061999,22569016,14945352,0,0,44172,0,1,1 +1773601828.536111,30.17,4,3992.50,65.40,1153.56,2560.71,0.00,3518137222245.819336,3518137222247.650879,205,0,118.922094,0.054779,22581861,14949631,0,0,44175,0,1,1 +1773601833.531913,3.62,4,3992.50,60.73,1336.79,2377.60,0.00,1.477119,10.684167,251,357,56.767001,0.036581,22588304,14952399,0,0,44177,0,1,1 +1773601838.531897,0.80,4,3992.50,59.86,1370.89,2343.50,0.00,3518447895815.362793,3518447895806.163574,205,0,0.000619,0.000282,22588316,14952409,0,0,44180,0,1,1 +1773601843.531868,0.60,4,3992.50,59.34,1391.05,2323.35,0.00,3518457924859.643555,0.000000,75,0,0.000000,0.000020,22588316,14952411,0,0,44182,0,1,1 +1773601848.531848,1.05,4,3992.50,59.17,1398.21,2316.62,0.00,25160.896307,26021.173794,1750578,2311732,0.000000,0.000030,22588316,14952414,0,0,44185,0,1,1 +1773601853.536657,0.70,4,3992.50,58.97,1405.71,2308.98,0.00,3515056649698.315918,3515056648847.932129,251,357,0.000031,0.000045,22588318,14952418,0,0,44187,0,1,1 +1773601858.536424,0.65,4,3992.50,58.97,1405.71,2308.98,0.00,3518600922345.438965,3518600922336.239746,205,0,0.000000,0.000030,22588318,14952421,0,0,44190,0,1,1 +1773601863.536653,0.70,4,3992.50,58.98,1405.69,2309.00,0.00,25169.077046,26030.592863,1752067,2312133,0.000008,0.000672,22588319,14952428,0,0,44192,0,1,1 +1773601868.536221,0.70,4,3992.50,58.98,1405.47,2309.22,0.00,3518741000255.784180,3518740999394.281250,75,0,0.000031,0.000055,22588321,14952433,0,0,44195,0,1,1 +1773601873.536341,0.70,4,3992.50,58.98,1405.47,2309.22,0.00,1.958742,0.000195,246,2,0.000000,0.000020,22588321,14952435,0,0,44197,0,1,1 +1773601878.535813,0.90,4,3992.50,58.93,1400.67,2307.40,0.00,25161.492479,26023.898170,1750578,2311804,0.000101,0.000154,22588329,14952446,0,0,44200,0,1,1 +1773601883.535845,0.60,4,3992.50,58.93,1400.63,2307.39,0.00,0.000000,0.007812,1750578,2311813,0.000025,0.000051,22588331,14952450,0,0,44202,0,1,1 +1773601888.531819,0.65,4,3992.50,58.74,1408.26,2299.77,0.00,3521272599042.406250,3521272598181.402832,11,0,0.000000,0.000030,22588331,14952453,0,0,44205,0,1,1 +1773601893.536110,0.75,4,3992.50,58.74,1408.05,2299.98,0.00,0.000000,0.000000,11,0,0.000000,0.000020,22588331,14952455,0,0,44207,0,1,1 +1773601898.536668,14.82,4,3992.50,64.88,1167.87,2540.00,0.00,0.000000,0.000000,11,0,18.441585,0.016618,22590424,14953579,0,0,44210,0,1,1 +1773601903.535543,34.34,4,3992.50,64.90,1166.79,2541.12,0.00,2.012757,0.000195,246,2,120.089452,0.056756,22602455,14957993,0,0,44212,0,1,1 +1773601908.536279,29.82,4,3992.50,65.00,1162.86,2545.06,0.00,3517919528026.053223,3517919528027.885254,205,0,118.287400,0.064065,22614067,14963054,0,0,44215,0,1,1 +1773601913.534436,29.39,4,3992.50,65.26,1152.80,2555.13,0.00,3519734263340.615723,0.000000,11,0,119.913984,0.066962,22625787,14968326,0,0,44217,0,1,1 +1773601918.532668,29.43,4,3992.50,65.08,1159.95,2547.98,0.00,2.013016,0.000195,246,2,118.711504,0.066069,22637618,14973508,0,0,44220,0,1,1 +1773601923.534250,30.44,4,3992.50,65.09,1159.49,2548.48,0.00,3517324259952.712891,3517324259954.724609,11,0,120.017473,0.070783,22649619,14979095,0,0,44222,0,1,1 +1773601928.531796,29.90,4,3992.50,65.11,1158.76,2549.17,0.00,25182.775612,26045.021659,1752067,2312450,118.951515,0.066891,22661421,14984266,0,0,44225,0,1,1 +1773601933.533065,30.02,4,3992.50,64.98,1163.97,2543.98,0.00,3517543773322.615723,3517543772460.831055,205,0,119.792495,0.066670,22673346,14989484,0,0,44227,0,1,1 +1773601938.531792,29.36,4,3992.50,64.88,1167.74,2540.23,0.00,1.832498,0.000195,246,2,119.318431,0.070538,22685274,14995020,0,0,44230,0,1,1 +1773601943.532735,2.96,4,3992.50,58.38,1422.40,2285.60,0.00,3517773739870.190430,10.672987,251,357,52.891390,0.033600,22690710,14997601,0,0,44232,0,1,1 +1773601948.531851,0.70,4,3992.50,58.45,1419.46,2288.54,0.00,25173.368088,26026.478967,1752085,2312566,0.000000,0.000030,22690710,14997604,0,0,44235,0,1,1 +1773601953.536043,0.70,4,3992.50,58.45,1419.46,2288.54,0.00,3515489641813.945801,3515489640961.700195,251,357,0.000000,0.000020,22690710,14997606,0,0,44237,0,1,1 +1773601958.532313,0.60,4,3992.50,58.45,1419.46,2288.54,0.00,3521063884512.080078,3521063884502.874023,205,0,0.000000,0.000030,22690710,14997609,0,0,44240,0,1,1 +1773601963.534331,0.70,4,3992.50,58.49,1418.02,2289.98,0.00,3517017315135.535645,0.000000,11,0,0.000000,0.000020,22690710,14997611,0,0,44242,0,1,1 +1773601968.531809,1.10,4,3992.50,58.71,1403.89,2298.58,0.00,25183.277057,26045.770915,1752085,2312615,0.000000,0.000030,22690710,14997614,0,0,44245,0,1,1 +1773601973.531828,0.75,4,3992.50,58.71,1403.95,2298.52,0.00,3518423362642.156250,3518423361779.920898,205,0,0.000000,0.000020,22690710,14997616,0,0,44247,0,1,1 +1773601978.536193,0.75,4,3992.50,58.71,1403.95,2298.52,0.00,3515368647106.329102,0.000000,11,0,0.000000,0.000030,22690710,14997619,0,0,44250,0,1,1 +1773601983.536101,0.70,4,3992.50,58.67,1405.43,2297.05,0.00,0.180277,0.000000,205,0,0.000000,0.000020,22690710,14997621,0,0,44252,0,1,1 +1773601988.531904,1.00,4,3992.50,58.68,1405.21,2297.27,0.00,3521393309403.070801,0.000000,11,0,0.000126,0.000185,22690720,14997634,0,0,44255,0,1,1 +1773601993.531874,0.75,4,3992.50,58.68,1405.21,2297.27,0.00,2.012317,0.000195,246,2,0.000016,0.000680,22690722,14997642,0,0,44257,0,1,1 +1773601998.536475,1.05,4,3992.50,58.89,1396.88,2305.59,0.00,3515202992938.105469,10.665187,251,357,0.001777,0.001578,22690747,14997662,0,0,44260,0,1,1 +1773602003.536313,11.33,4,3992.50,64.97,1158.75,2543.77,0.00,25160.169310,26012.224971,1750596,2312359,12.892602,0.013485,22692269,14998494,0,0,44262,0,1,1 +1773602008.532405,35.79,4,3992.50,64.88,1161.97,2540.34,0.00,9.569002,10.799945,1752085,2312816,122.376580,0.042453,22705027,15001722,0,0,44265,0,1,1 +1773602013.536627,32.21,4,3992.50,64.58,1174.14,2528.31,0.00,3515468821679.098145,3515468820817.368164,205,0,121.056012,0.050810,22717958,15005706,0,0,44267,0,1,1 +1773602018.535537,31.07,4,3992.50,64.91,1161.00,2541.38,0.00,3519204325041.846191,0.000000,75,0,121.114047,0.051539,22731230,15009757,0,0,44269,0,1,1 +1773602023.535744,30.68,4,3992.50,64.95,1159.38,2543.02,0.00,1.958708,0.000195,246,2,120.219706,0.071031,22744843,15015290,0,0,44272,0,1,1 +1773602028.535678,30.07,4,3992.50,64.75,1167.22,2535.21,0.00,3518483521272.564941,3518483521274.396973,205,0,119.583079,0.072230,22758276,15020994,0,0,44275,0,1,1 +1773602033.532688,30.59,4,3992.50,64.87,1162.45,2539.96,0.00,1.833128,0.000195,246,2,119.683926,0.065969,22771775,15026177,0,0,44277,0,1,1 +1773602038.536607,29.13,4,3992.50,64.88,1161.94,2540.38,0.00,3515681856508.422363,3515681856510.433105,11,0,119.807042,0.062070,22785026,15031044,0,0,44280,0,1,1 +1773602043.535572,31.52,4,3992.50,64.98,1158.42,2543.93,0.00,1.656495,10.677405,251,357,119.231963,0.065721,22798225,15036194,0,0,44282,0,1,1 +1773602048.531903,1.76,4,3992.50,60.58,1330.65,2371.80,0.00,0.356414,3521020936852.804199,246,2,50.560223,0.033579,22804083,15038735,0,0,44285,0,1,1 +1773602053.536282,0.90,4,3992.50,59.37,1378.17,2324.30,0.00,3515358495175.568848,10.665659,251,357,0.000025,0.000051,22804085,15038739,0,0,44287,0,1,1 +1773602058.536553,1.00,4,3992.50,59.02,1389.70,2310.60,0.00,25167.939119,26021.358261,1752377,2313071,0.000000,0.000674,22804085,15038746,0,0,44290,0,1,1 +1773602063.532631,0.60,4,3992.50,58.71,1401.41,2298.75,0.00,0.000000,0.037529,1752377,2313111,0.000000,0.000020,22804085,15038748,0,0,44292,0,1,1 +1773602068.536168,0.70,4,3992.50,58.65,1403.96,2296.20,0.00,3515949548850.268555,3515949547988.356445,11,0,0.000000,0.000030,22804085,15038751,0,0,44295,0,1,1 +1773602073.531862,0.80,4,3992.50,58.69,1402.48,2297.67,0.00,2.014040,0.000195,246,2,0.000000,0.000020,22804085,15038753,0,0,44297,0,1,1 +1773602078.531950,0.55,4,3992.50,58.69,1402.49,2297.66,0.00,3518374852020.190430,3518374852022.022461,205,0,0.000000,0.000030,22804085,15038756,0,0,44300,0,1,1 +1773602083.531834,0.70,4,3992.50,58.69,1402.22,2297.93,0.00,3518519200232.238770,0.000000,11,0,0.000308,0.000575,22804092,15038769,0,0,44302,0,1,1 +1773602088.536642,1.05,4,3992.50,58.90,1393.83,2306.02,0.00,0.180100,0.000000,205,0,0.000212,0.000569,22804100,15038784,0,0,44305,0,1,1 +1773602093.534750,0.65,4,3992.50,58.92,1393.12,2306.75,0.00,3519768730354.175293,0.000000,11,0,0.000134,0.000183,22804111,15038797,0,0,44307,0,1,1 +1773602098.536137,0.60,4,3992.50,58.92,1393.12,2306.75,0.00,2.011747,0.000195,246,2,0.000000,0.000030,22804111,15038800,0,0,44310,0,1,1 +1773602103.535102,0.95,4,3992.50,58.88,1394.62,2305.25,0.00,25164.596791,26028.345062,1750888,2312879,0.000000,0.000020,22804111,15038802,0,0,44312,0,1,1 +1773602108.535754,8.66,4,3992.50,65.18,1147.84,2551.88,0.00,0.000000,0.028805,1750888,2312917,2.808853,0.007736,22804565,15039167,0,0,44315,0,1,1 +1773602113.534063,38.71,4,3992.50,65.12,1150.28,2549.57,0.00,3519627449924.962891,3519627449063.084961,11,0,112.270770,0.049229,22816467,15042903,0,0,44317,0,1,1 +1773602118.535660,28.89,4,3992.50,65.50,1139.46,2564.57,0.00,25153.369088,26014.846324,1750888,2313065,119.790369,0.050017,22829800,15046773,0,0,44320,0,1,1 +1773602123.535935,28.82,4,3992.50,65.19,1151.95,2552.14,0.00,9.560996,10.718452,1752377,2313484,119.038053,0.053637,22842953,15050798,0,0,44322,0,1,1 +1773602128.536669,29.79,4,3992.50,65.45,1141.36,2562.61,0.00,3517920879573.923340,3517920878720.158203,251,357,118.891503,0.055604,22856485,15055148,0,0,44325,0,1,1 +1773602133.535647,30.24,4,3992.50,65.25,1149.17,2554.84,0.00,3519156192198.884766,3519156192189.863770,11,0,119.754731,0.055182,22870304,15059456,0,0,44327,0,1,1 +1773602138.536002,30.09,4,3992.50,65.60,1135.63,2568.42,0.00,25169.179610,26032.042293,1752377,2313516,119.246154,0.048233,22883783,15063217,0,0,44329,0,1,1 +1773602143.532613,30.77,4,3992.50,65.43,1142.09,2561.86,0.00,3520823184133.275391,3520823184132.307617,1750888,2313172,119.427298,0.057382,22897326,15067706,0,0,44332,0,1,1 +1773602148.536540,29.90,4,3992.50,65.49,1139.96,2564.10,0.00,0.000000,0.020297,1750888,2313188,119.529666,0.058987,22911047,15072279,0,0,44335,0,1,1 +1773602153.535456,12.06,4,3992.50,60.77,1324.86,2379.27,0.00,3519199440913.074219,3519199440050.857422,75,0,75.874533,0.038536,22919829,15075238,0,0,44337,0,1,1 +1773602158.531840,1.00,4,3992.50,59.93,1357.83,2346.30,0.00,0.000000,0.000000,75,0,0.002279,0.001069,22919874,15075269,0,0,44340,0,1,1 +1773602163.536034,0.60,4,3992.50,59.43,1377.18,2326.95,0.00,1.957147,0.000195,246,2,0.000000,0.000020,22919874,15075271,0,0,44342,0,1,1 +1773602168.531900,0.75,4,3992.50,59.31,1381.88,2322.25,0.00,3521348796694.627930,3521348796696.642090,11,0,0.000031,0.000055,22919876,15075276,0,0,44345,0,1,1 +1773602173.536735,0.60,4,3992.50,59.32,1381.66,2322.46,0.00,25146.779198,26009.098926,1752388,2313641,0.000000,0.000020,22919876,15075278,0,0,44347,0,1,1 +1773602178.536061,1.00,4,3992.50,59.31,1381.92,2322.23,0.00,3518911804683.365723,3518911803820.095703,11,0,0.000000,0.000030,22919876,15075281,0,0,44350,0,1,1 +1773602183.535779,0.70,4,3992.50,59.32,1381.68,2322.44,0.00,0.000000,0.000000,11,0,0.000000,0.000020,22919876,15075283,0,0,44352,0,1,1 +1773602188.536446,0.65,4,3992.50,59.32,1381.68,2322.44,0.00,0.000000,0.000000,11,0,0.000000,0.000674,22919876,15075290,0,0,44355,0,1,1 +1773602193.535871,0.60,4,3992.50,59.33,1381.25,2322.88,0.00,0.000000,0.000000,11,0,0.000000,0.000020,22919876,15075292,0,0,44357,0,1,1 +1773602198.531893,0.70,4,3992.50,59.33,1381.25,2322.88,0.00,2.013907,0.000195,246,2,0.000025,0.000061,22919878,15075297,0,0,44360,0,1,1 +1773602203.536500,0.60,4,3992.50,59.33,1381.25,2322.88,0.00,0.000000,0.000000,246,2,0.000117,0.000160,22919888,15075309,0,0,44362,0,1,1 +1773602208.536652,1.05,4,3992.50,59.33,1382.66,2322.84,0.00,0.000000,0.000000,246,2,0.000000,0.000030,22919888,15075312,0,0,44365,0,1,1 +1773602213.536079,0.65,4,3992.50,59.33,1382.66,2322.84,0.00,3518840279367.364258,3518840279369.376953,11,0,0.000000,0.000020,22919888,15075314,0,0,44367,0,1,1 +1773602218.536428,2.00,4,3992.50,59.01,1395.12,2310.38,0.00,0.000000,0.000000,11,0,0.002320,0.002331,22919923,15075348,0,0,44370,0,1,1 +1773602223.535941,43.31,4,3992.50,65.76,1130.64,2574.74,0.00,1.656314,10.676237,251,357,104.913291,0.045263,22931340,15078809,0,0,44372,0,1,1 +1773602228.536609,30.13,4,3992.50,65.55,1139.13,2566.25,0.00,0.356105,3517966912280.229980,246,2,119.085993,0.046243,22944470,15082377,0,0,44375,0,1,1 +1773602233.535597,30.80,4,3992.50,65.74,1131.49,2573.93,0.00,3519149840946.959473,3519149840948.972168,11,0,119.234648,0.062204,22958398,15087235,0,0,44377,0,1,1 +1773602238.535722,29.23,4,3992.50,65.39,1145.19,2560.20,0.00,0.053514,0.000000,75,0,118.691440,0.058551,22972191,15091810,0,0,44380,0,1,1 +1773602243.535992,28.81,4,3992.50,65.42,1155.09,2561.17,0.00,3518247758277.858887,0.000000,11,0,119.332455,0.053395,22985657,15095987,0,0,44382,0,1,1 +1773602248.535695,28.95,4,3992.50,65.57,1149.00,2567.23,0.00,2.012424,0.000195,246,2,119.157758,0.058776,22999542,15100557,0,0,44385,0,1,1 +1773602253.535022,28.67,4,3992.50,65.65,1145.91,2570.32,0.00,3518910600182.807617,3518910600184.639648,205,0,119.706807,0.061828,23012974,15105331,0,0,44387,0,1,1 +1773602258.536652,28.67,4,3992.50,65.82,1139.34,2576.94,0.00,0.000000,0.000000,205,0,119.554579,0.044817,23026410,15108824,0,0,44390,0,1,1 +1773602263.535945,9.91,4,3992.50,60.83,1334.70,2381.61,0.00,3518934838349.451660,0.000000,75,0,86.754011,0.041102,23036585,15111978,0,0,44392,0,1,1 +1773602268.534168,1.30,4,3992.50,60.18,1359.90,2356.37,0.00,1.603206,10.678989,251,357,0.003118,0.001455,23036643,15112019,0,0,44395,0,1,1 +1773602273.536985,0.65,4,3992.50,59.45,1388.64,2327.66,0.00,3516456679293.599609,3516456679284.405762,205,0,0.000000,0.000020,23036643,15112021,0,0,44397,0,1,1 +1773602278.536700,0.65,4,3992.50,59.39,1391.20,2325.11,0.00,1.832135,0.000195,246,2,0.000000,0.000030,23036643,15112024,0,0,44400,0,1,1 +1773602283.536281,0.65,4,3992.50,59.25,1396.65,2319.65,0.00,25171.331433,26037.326646,1752399,2314188,0.000000,0.000020,23036643,15112026,0,0,44402,0,1,1 +1773602288.531849,0.80,4,3992.50,59.13,1401.24,2315.06,0.00,3521558706028.259277,3521558705172.609375,251,357,0.000000,0.000030,23036643,15112029,0,0,44405,0,1,1 +1773602293.531824,0.60,4,3992.50,59.15,1400.56,2315.74,0.00,0.356154,3518454433818.051270,246,2,0.000000,0.000020,23036643,15112031,0,0,44407,0,1,1 +1773602298.531934,1.15,4,3992.50,59.26,1405.78,2320.14,0.00,25159.107227,26023.940732,1750910,2313855,0.001109,0.000637,23036665,15112047,0,0,44410,0,1,1 +1773602303.532456,0.65,4,3992.50,59.28,1405.06,2320.88,0.00,3518069395601.945312,3518069394737.183594,246,2,0.000008,0.000028,23036666,15112050,0,0,44412,0,1,1 +1773602308.535910,0.75,4,3992.50,59.28,1405.07,2320.88,0.00,25142.289771,26006.652141,1750910,2313876,0.002402,0.002273,23036694,15112070,0,0,44415,0,1,1 +1773602313.531820,0.75,4,3992.50,59.28,1404.82,2321.12,0.00,0.000000,0.004691,1750910,2313881,0.000076,0.000113,23036700,15112078,0,0,44417,0,1,1 +1773602318.535157,0.80,4,3992.50,59.30,1404.34,2321.61,0.00,3516089934203.065430,3516089933340.635254,75,0,0.000000,0.000030,23036700,15112081,0,0,44420,0,1,1 +1773602323.532654,0.75,4,3992.50,59.30,1404.34,2321.61,0.00,25174.222957,26037.670272,1750910,2313890,0.000000,0.000503,23036700,15112086,0,0,44422,0,1,1 +1773602328.535815,1.30,4,3992.50,59.35,1399.35,2323.54,0.00,3516214112204.040527,3516214111339.613770,246,2,0.001395,0.000906,23036724,15112107,0,0,44425,0,1,1 +1773602333.533436,40.94,4,3992.50,65.46,1159.96,2562.82,0.00,25171.631561,26037.155474,1750910,2314032,99.902282,0.037599,23047125,15114841,0,0,44427,0,1,1 +1773602338.536486,28.31,4,3992.50,65.36,1163.79,2559.02,0.00,3516292624277.065918,3516292623414.491699,11,0,118.366320,0.033899,23059817,15117426,0,0,44430,0,1,1 +1773602343.535693,28.09,4,3992.50,65.74,1148.97,2573.82,0.00,0.000000,0.000000,11,0,119.681684,0.045194,23072808,15120941,0,0,44432,0,1,1 +1773602348.535708,28.51,4,3992.50,65.67,1151.56,2571.25,0.00,0.053515,0.000000,75,0,119.211048,0.051333,23085781,15124959,0,0,44435,0,1,1 +1773602353.532753,28.41,4,3992.50,65.47,1159.63,2563.16,0.00,25186.066320,26050.863649,1752399,2314438,119.575744,0.050981,23099205,15128900,0,0,44437,0,1,1 +1773602358.532435,28.34,4,3992.50,65.51,1143.33,2564.84,0.00,3518661050076.492188,3518661049212.205078,11,0,118.730062,0.052348,23112487,15133031,0,0,44440,0,1,1 +1773602363.532432,28.61,4,3992.50,64.83,1168.48,2538.34,0.00,25161.686710,26025.023988,1750910,2314132,119.771517,0.061355,23125862,15137798,0,0,44442,0,1,1 +1773602368.535627,28.32,4,3992.50,65.20,1153.98,2552.82,0.00,3516189924855.611816,3516189923992.826660,11,0,118.993896,0.058414,23139381,15142358,0,0,44445,0,1,1 +1773602373.535978,11.02,4,3992.50,60.00,1357.88,2348.98,0.00,25159.972309,26023.295525,1750916,2314176,92.065741,0.040884,23149647,15145556,0,0,44447,0,1,1 +1773602378.531817,0.95,4,3992.50,59.11,1392.44,2314.41,0.00,3521367726510.989746,3521367725646.886719,11,0,0.003120,0.001456,23149705,15145597,0,0,44450,0,1,1 +1773602383.531984,0.75,4,3992.50,58.78,1405.38,2301.48,0.00,0.053514,0.000000,75,0,0.000308,0.000574,23149712,15145610,0,0,44452,0,1,1 +1773602388.533210,1.00,4,3992.50,59.01,1396.57,2310.52,0.00,3517575186279.875977,0.000000,11,0,0.000205,0.001045,23149719,15145627,0,0,44455,0,1,1 +1773602393.536657,0.75,4,3992.50,58.68,1409.45,2297.39,0.00,0.000000,0.000000,11,0,0.000000,0.000181,23149719,15145630,0,0,44457,0,1,1 +1773602398.535817,0.65,4,3992.50,58.68,1409.46,2297.39,0.00,0.000000,0.000000,11,0,0.000000,0.000030,23149719,15145633,0,0,44460,0,1,1 +1773602403.533437,0.70,4,3992.50,58.70,1408.79,2298.06,0.00,0.000000,0.000000,11,0,0.000000,0.000020,23149719,15145635,0,0,44462,0,1,1 +1773602408.536299,0.85,4,3992.50,58.70,1408.80,2298.05,0.00,0.000000,0.000000,11,0,0.000307,0.000584,23149726,15145649,0,0,44465,0,1,1 +1773602413.535876,0.75,4,3992.50,58.70,1408.80,2298.05,0.00,25173.508437,26038.323396,1752419,2314728,0.000000,0.000020,23149726,15145651,0,0,44467,0,1,1 +1773602418.535900,0.90,4,3992.50,58.74,1413.59,2299.72,0.00,3518419986380.268066,3518419985524.549805,251,357,0.000021,0.000069,23149728,15145657,0,0,44470,0,1,1 +1773602423.535838,0.70,4,3992.50,58.71,1412.24,2298.79,0.00,25170.031669,26025.798523,1752419,2314744,0.000318,0.000676,23149744,15145678,0,0,44472,0,1,1 +1773602428.531841,0.75,4,3992.50,58.71,1412.24,2298.78,0.00,3521252792938.620605,3521252792073.099609,75,0,0.000031,0.000055,23149746,15145683,0,0,44475,0,1,1 +1773602433.531893,0.60,4,3992.50,58.68,1413.70,2297.33,0.00,0.126756,0.000000,205,0,0.000031,0.000045,23149748,15145687,0,0,44477,0,1,1 +1773602438.531808,0.95,4,3992.50,58.67,1413.90,2297.10,0.00,3518496893849.529297,0.000000,11,0,0.001371,0.000722,23149770,15145705,0,0,44480,0,1,1 +1773602443.535718,38.08,4,3992.50,65.22,1157.57,2553.37,0.00,25142.156561,26005.259657,1750930,2314519,90.459512,0.032458,23159253,15148024,0,0,44482,0,1,1 +1773602448.532519,30.34,4,3992.50,65.25,1156.06,2554.83,0.00,0.000000,0.125960,1750930,2314596,118.842129,0.029022,23171453,15150185,0,0,44485,0,1,1 +1773602453.535334,29.96,4,3992.50,65.19,1158.23,2552.48,0.00,3516456834791.740234,3516456833928.142578,205,0,118.698508,0.020018,23183706,15151643,0,0,44487,0,1,1 +1773602458.535573,30.30,4,3992.50,65.20,1158.09,2552.73,0.00,1.831944,0.000195,246,2,119.759862,0.018215,23196034,15153033,0,0,44490,0,1,1 +1773602463.536300,28.91,4,3992.50,65.31,1153.49,2557.11,0.00,3517925976138.897949,3517925976140.910156,11,0,118.945757,0.019152,23208100,15154478,0,0,44492,0,1,1 +1773602468.536792,28.62,4,3992.50,65.39,1150.61,2560.14,0.00,0.000000,0.000000,11,0,119.750914,0.020619,23220248,15156088,0,0,44495,0,1,1 +1773602473.531787,28.14,4,3992.50,65.49,1146.52,2564.20,0.00,25187.029592,26051.848795,1750930,2314680,119.282017,0.018874,23232292,15157526,0,0,44497,0,1,1 +1773602478.536406,28.79,4,3992.50,65.36,1151.59,2559.15,0.00,0.000000,0.162740,1750930,2314709,119.063278,0.053335,23244487,15161692,0,0,44500,0,1,1 +1773602483.535747,13.70,4,3992.50,60.59,1338.45,2372.37,0.00,0.078917,0.097278,1750938,2314720,100.563180,0.054130,23254917,15165905,0,0,44502,0,1,1 +1773602488.536432,0.90,4,3992.50,59.56,1379.04,2331.78,0.00,3517955225966.120117,3517955225102.103516,11,0,0.003099,0.001328,23254975,15165945,0,0,44505,0,1,1 +1773602493.535754,0.70,4,3992.50,58.95,1402.95,2307.88,0.00,1.656377,10.676643,251,357,0.000000,0.000020,23254975,15165947,0,0,44507,0,1,1 +1773602498.535841,1.40,4,3992.50,58.78,1409.54,2301.29,0.00,0.356146,3518375979982.695801,246,2,0.000000,0.000030,23254975,15165950,0,0,44510,0,1,1 +1773602503.535286,0.70,4,3992.50,58.78,1409.55,2301.28,0.00,0.000000,0.000000,246,2,0.000000,0.000020,23254975,15165952,0,0,44512,0,1,1 +1773602508.535685,1.05,4,3992.50,58.85,1411.91,2304.14,0.00,3518156252442.679688,10.674148,251,357,0.000000,0.000030,23254975,15165955,0,0,44515,0,1,1 +1773602513.536712,0.65,4,3992.50,58.87,1411.15,2304.88,0.00,3517714877087.604980,3517714877078.407715,205,0,0.000000,0.000020,23254975,15165957,0,0,44517,0,1,1 +1773602518.535896,0.70,4,3992.50,58.87,1411.15,2304.88,0.00,3519011899420.169922,0.000000,75,0,0.000013,0.000030,23254976,15165960,0,0,44520,0,1,1 +1773602523.531825,0.80,4,3992.50,58.87,1411.15,2304.88,0.00,1.960385,0.000195,246,2,0.000000,0.000664,23254976,15165966,0,0,44522,0,1,1 +1773602528.536596,0.70,4,3992.50,58.87,1411.15,2304.88,0.00,3515082724662.263184,3515082724664.093750,205,0,0.000025,0.000061,23254978,15165971,0,0,44525,0,1,1 +1773602533.536530,0.75,4,3992.50,58.87,1411.15,2304.88,0.00,3518483555755.862793,0.000000,75,0,0.000117,0.000160,23254988,15165983,0,0,44527,0,1,1 +1773602538.536498,1.05,4,3992.50,59.27,1399.61,2320.37,0.00,25171.644420,26037.162395,1752434,2315237,0.000000,0.000020,23254988,15165985,0,0,44529,0,1,1 +1773602543.536162,0.65,4,3992.50,59.21,1401.75,2318.22,0.00,3518673524569.505371,3518673523701.976074,246,2,0.000000,0.000030,23254988,15165988,0,0,44532,0,1,1 +1773602548.535903,1.00,4,3992.50,59.12,1405.12,2314.86,0.00,3518620079307.727051,3518620079309.686035,75,0,0.001396,0.000733,23255012,15166007,0,0,44535,0,1,1 +1773602553.535600,43.10,4,3992.50,65.65,1149.79,2570.16,0.00,0.000000,0.000000,75,0,110.363519,0.046917,23266491,15169493,0,0,44537,0,1,1 +1773602558.532184,31.10,4,3992.50,65.15,1168.99,2550.91,0.00,0.126844,0.000000,205,0,121.648678,0.028483,23278852,15171726,0,0,44540,0,1,1 +1773602563.536646,30.44,4,3992.50,65.31,1162.70,2557.19,0.00,1.474563,10.665677,251,357,121.859169,0.027239,23291332,15173817,0,0,44542,0,1,1 +1773602568.536076,30.30,4,3992.50,65.61,1150.96,2568.92,0.00,3518838407131.229980,3518838407122.210449,11,0,120.177485,0.025672,23303561,15175828,0,0,44545,0,1,1 +1773602573.531854,30.72,4,3992.50,64.92,1172.04,2541.60,0.00,1.657552,10.684216,251,357,119.665620,0.028847,23315816,15178087,0,0,44547,0,1,1 +1773602578.532137,29.96,4,3992.50,64.89,1173.17,2540.46,0.00,3518238144856.365234,3518238144847.347168,11,0,119.557861,0.036196,23328066,15180932,0,0,44549,0,1,1 +1773602583.536113,30.05,4,3992.50,64.95,1170.83,2542.83,0.00,2.010706,0.000195,246,2,119.468912,0.039352,23340238,15183977,0,0,44552,0,1,1 +1773602588.534819,29.60,4,3992.50,64.94,1170.96,2542.67,0.00,3519347716221.720215,3519347716223.733398,11,0,119.593682,0.041404,23352343,15187179,0,0,44555,0,1,1 +1773602593.535972,7.27,4,3992.50,59.35,1389.98,2323.74,0.00,0.053503,0.000000,75,0,73.083676,0.025250,23359776,15189128,0,0,44557,0,1,1 +1773602598.534199,1.35,4,3992.50,59.12,1401.70,2314.80,0.00,1.959484,0.000195,246,2,0.004228,0.002063,23359856,15189182,0,0,44560,0,1,1 +1773602603.536428,0.80,4,3992.50,59.01,1403.22,2310.48,0.00,3516869427176.296875,3516869427178.127930,205,0,0.000000,0.000020,23359856,15189184,0,0,44562,0,1,1 +1773602608.531879,0.80,4,3992.50,59.01,1403.22,2310.47,0.00,3521641186765.487305,0.000000,11,0,0.001065,0.000431,23359878,15189200,0,0,44565,0,1,1 +1773602613.533020,0.65,4,3992.50,59.01,1403.22,2310.47,0.00,2.011846,0.000195,246,2,0.000000,0.000020,23359878,15189202,0,0,44567,0,1,1 +1773602618.535900,0.65,4,3992.50,59.01,1403.22,2310.47,0.00,3516411901908.423340,3516411901910.434570,11,0,0.000000,0.000030,23359878,15189205,0,0,44570,0,1,1 +1773602623.531842,0.65,4,3992.50,58.96,1405.36,2308.34,0.00,25182.551673,26048.081610,1750956,2315284,0.000000,0.000020,23359878,15189207,0,0,44572,0,1,1 +1773602628.535927,0.95,4,3992.50,59.16,1398.66,2316.16,0.00,3515565170879.312500,3515565170015.137695,75,0,0.000000,0.000030,23359878,15189210,0,0,44575,0,1,1 +1773602633.535846,0.75,4,3992.50,59.13,1399.73,2315.11,0.00,1.958821,0.000195,246,2,0.000000,0.000020,23359878,15189212,0,0,44577,0,1,1 +1773602638.535422,0.70,4,3992.50,59.14,1399.51,2315.32,0.00,25162.234252,26029.307494,1750956,2315327,0.000000,0.000030,23359878,15189215,0,0,44580,0,1,1 +1773602643.531910,0.65,4,3992.50,59.14,1399.51,2315.32,0.00,9.568243,10.686802,1752445,2315691,0.000126,0.000175,23359888,15189227,0,0,44582,0,1,1 +1773602648.536583,0.70,4,3992.50,59.14,1399.51,2315.32,0.00,3515151761882.576172,3515151761026.290039,251,357,0.000008,0.000038,23359889,15189231,0,0,44585,0,1,1 +1773602653.535593,0.85,4,3992.50,59.07,1401.92,2312.91,0.00,3519134302230.596680,3519134302221.395508,205,0,0.000050,0.000726,23359893,15189241,0,0,44587,0,1,1 +1773602658.531831,1.15,4,3992.50,58.95,1416.08,2308.09,0.00,3521086933137.030273,0.000000,11,0,0.002037,0.001351,23359918,15189262,0,0,44590,0,1,1 +1773602663.531836,38.76,4,3992.50,65.34,1165.92,2558.14,0.00,25162.083732,26027.116138,1750956,2315395,93.933317,0.039310,23369687,15192149,0,0,44592,0,1,1 +1773602668.535536,29.48,4,3992.50,65.22,1170.78,2553.32,0.00,3515835987545.187988,3515835986689.806641,251,357,120.076388,0.024921,23381910,15194027,0,0,44595,0,1,1 +1773602673.535774,29.44,4,3992.50,65.06,1176.84,2547.28,0.00,25168.815488,26026.025217,1752445,2315864,118.160100,0.026525,23394101,15196043,0,0,44597,0,1,1 +1773602678.537159,29.67,4,3992.50,65.23,1170.28,2553.83,0.00,3517463052569.299316,3517463051703.269531,11,0,120.135785,0.025599,23406553,15198039,0,0,44600,0,1,1 +1773602683.532661,28.96,4,3992.50,65.65,1153.75,2570.35,0.00,0.000000,0.000000,11,0,119.074356,0.027577,23418730,15200127,0,0,44602,0,1,1 +1773602688.534560,28.47,4,3992.50,65.21,1171.16,2552.94,0.00,25152.556764,26017.396655,1750956,2315542,119.318354,0.018536,23430835,15201483,0,0,44605,0,1,1 +1773602693.535556,31.55,4,3992.50,65.36,1164.96,2559.07,0.00,0.000000,0.035247,1750956,2315552,119.551026,0.050130,23443235,15205428,0,0,44607,0,1,1 +1773602698.535913,30.61,4,3992.50,65.27,1170.14,2555.27,0.00,3518186195614.254883,3518186194749.112793,11,0,118.976327,0.076398,23455882,15211379,0,0,44609,0,1,1 +1773602703.535555,13.24,4,3992.50,60.28,1365.32,2360.17,0.00,0.053519,0.000000,75,0,96.151763,0.047288,23465993,15215044,0,0,44612,0,1,1 +1773602708.533486,0.80,4,3992.50,59.50,1396.02,2329.46,0.00,1.959600,0.000195,246,2,0.004361,0.002804,23466061,15215100,0,0,44615,0,1,1 +1773602713.533467,0.65,4,3992.50,59.15,1409.79,2315.69,0.00,3518450370701.990723,10.675040,251,357,0.000000,0.000020,23466061,15215102,0,0,44617,0,1,1 +1773602718.536606,1.00,4,3992.50,59.01,1403.18,2310.44,0.00,25144.844365,26000.804788,1750973,2315784,0.000000,0.000030,23466061,15215105,0,0,44620,0,1,1 +1773602723.533485,0.65,4,3992.50,58.96,1405.18,2308.45,0.00,3520634660369.438965,3520634659503.201172,205,0,0.000205,0.001197,23466068,15215122,0,0,44622,0,1,1 +1773602728.535871,0.60,4,3992.50,58.96,1405.18,2308.45,0.00,0.000000,0.000000,205,0,0.000031,0.000055,23466070,15215127,0,0,44625,0,1,1 +1773602733.536191,0.75,4,3992.50,58.98,1404.44,2309.18,0.00,0.000000,0.000000,205,0,0.000031,0.000045,23466072,15215131,0,0,44627,0,1,1 +1773602738.536292,0.45,4,3992.50,58.98,1404.45,2309.18,0.00,0.000000,0.000000,205,0,0.000000,0.000030,23466072,15215134,0,0,44630,0,1,1 +1773602743.536423,0.60,4,3992.50,58.78,1412.10,2301.53,0.00,3518344635606.305664,0.000000,11,0,0.000000,0.000020,23466072,15215136,0,0,44632,0,1,1 +1773602748.536067,0.85,4,3992.50,58.80,1407.46,2302.01,0.00,0.000000,0.000000,11,0,0.000000,0.000030,23466072,15215139,0,0,44635,0,1,1 +1773602753.536177,0.65,4,3992.50,58.80,1407.48,2301.98,0.00,0.000000,0.000000,11,0,0.000157,0.000188,23466084,15215152,0,0,44637,0,1,1 +1773602758.536194,0.60,4,3992.50,58.60,1415.12,2294.34,0.00,25171.765387,26038.608092,1752462,2316246,0.000008,0.000050,23466085,15215157,0,0,44640,0,1,1 +1773602763.531837,0.70,4,3992.50,58.61,1414.88,2294.58,0.00,3521505947953.064941,3521505947094.490234,251,357,0.000000,0.000020,23466085,15215159,0,0,44642,0,1,1 +1773602768.531847,0.65,4,3992.50,58.61,1414.66,2294.80,0.00,3518429483114.084961,3518429483105.065918,11,0,0.000031,0.000055,23466087,15215164,0,0,44645,0,1,1 +1773602773.532701,38.24,4,3992.50,64.91,1168.14,2541.22,0.00,0.180243,0.000000,205,0,90.716476,0.032055,23475574,15217408,0,0,44647,0,1,1 +1773602778.535616,30.38,4,3992.50,64.84,1170.80,2538.58,0.00,3516386768594.438477,0.000000,75,0,119.703565,0.037694,23487948,15220249,0,0,44650,0,1,1 +1773602783.531816,29.53,4,3992.50,65.02,1159.55,2545.86,0.00,3521113188709.638184,0.000000,11,0,118.660692,0.045129,23500073,15223718,0,0,44652,0,1,1 +1773602788.536035,29.35,4,3992.50,64.86,1165.80,2539.44,0.00,0.000000,0.000000,11,0,119.679050,0.068519,23512482,15229054,0,0,44655,0,1,1 +1773602793.534454,29.59,4,3992.50,64.92,1163.39,2541.83,0.00,1.656676,10.678573,251,357,118.957063,0.101189,23525192,15236945,0,0,44657,0,1,1 +1773602798.536690,29.97,4,3992.50,65.08,1157.33,2547.92,0.00,0.355993,3516864261789.779785,246,2,119.819430,0.106617,23538086,15245278,0,0,44660,0,1,1 +1773602803.531712,29.97,4,3992.50,65.29,1149.04,2556.23,0.00,25185.349806,26054.241615,1750973,2316171,119.111758,0.094167,23550839,15252606,0,0,44662,0,1,1 +1773602808.531715,30.25,4,3992.50,65.04,1158.97,2546.28,0.00,9.561518,10.822064,1752462,2316549,119.395016,0.098896,23563692,15260321,0,0,44665,0,1,1 +1773602813.533427,13.79,4,3992.50,58.37,1419.96,2285.35,0.00,3517233172191.417480,3517233171333.455078,251,357,99.530366,0.089854,23574377,15267334,0,0,44667,0,1,1 +1773602818.536695,0.95,4,3992.50,58.42,1418.13,2287.18,0.00,3516139032280.932617,3516139032271.919922,11,0,0.002276,0.001080,23574422,15267366,0,0,44670,0,1,1 +1773602823.536606,0.75,4,3992.50,58.42,1418.13,2287.18,0.00,1.656182,10.675385,251,357,0.000000,0.000020,23574422,15267368,0,0,44672,0,1,1 +1773602828.536293,0.70,4,3992.50,58.26,1424.30,2281.02,0.00,25162.359160,26019.569540,1750988,2316286,0.000000,0.000030,23574422,15267371,0,0,44675,0,1,1 +1773602833.533853,0.70,4,3992.50,58.26,1424.30,2281.02,0.00,3520154932733.778809,3520154931876.203125,251,357,0.000000,0.000020,23574422,15267373,0,0,44677,0,1,1 +1773602838.531920,0.95,4,3992.50,58.56,1414.89,2292.80,0.00,25180.081852,26038.761024,1752477,2316679,0.000000,0.000030,23574422,15267376,0,0,44680,0,1,1 +1773602843.536605,0.60,4,3992.50,58.56,1412.59,2292.74,0.00,3515143279331.695312,3515143278465.141113,11,0,0.000000,0.000020,23574422,15267378,0,0,44682,0,1,1 +1773602848.536128,0.70,4,3992.50,58.56,1412.59,2292.73,0.00,25164.842445,26031.303265,1750988,2316358,0.000000,0.000030,23574422,15267381,0,0,44685,0,1,1 +1773602853.535958,0.70,4,3992.50,58.56,1412.59,2292.73,0.00,0.000000,0.001563,1750988,2316359,0.000000,0.000664,23574422,15267387,0,0,44687,0,1,1 +1773602858.535851,0.60,4,3992.50,58.57,1412.34,2292.98,0.00,3518512189252.556152,3518512188386.104492,75,0,0.000025,0.000061,23574424,15267392,0,0,44690,0,1,1 +1773602863.536005,0.70,4,3992.50,58.57,1412.34,2292.98,0.00,3518328554453.396484,0.000000,11,0,0.000109,0.000152,23574433,15267403,0,0,44692,0,1,1 +1773602868.536813,0.90,4,3992.50,58.61,1405.14,2294.70,0.00,0.000000,0.000000,11,0,0.000008,0.000038,23574434,15267407,0,0,44695,0,1,1 +1773602873.535848,0.60,4,3992.50,58.63,1404.32,2295.40,0.00,0.000000,0.000000,11,0,0.000000,0.000020,23574434,15267409,0,0,44697,0,1,1 +1773602878.536417,0.85,4,3992.50,58.63,1404.09,2295.63,0.00,25159.577226,26025.918468,1750988,2316403,0.000000,0.000030,23574434,15267412,0,0,44700,0,1,1 +1773602883.536534,35.75,4,3992.50,65.12,1149.99,2549.77,0.00,3518355360146.844727,3518355359278.412598,246,2,81.514661,0.031226,23582848,15269641,0,0,44702,0,1,1 +1773602888.534637,30.99,4,3992.50,65.26,1144.63,2555.02,0.00,3519772542300.329590,3519772542302.162598,205,0,118.573963,0.025504,23595050,15271520,0,0,44705,0,1,1 +1773602893.535630,29.36,4,3992.50,65.17,1148.11,2551.70,0.00,1.475586,10.673075,251,357,119.782583,0.026170,23607292,15273484,0,0,44707,0,1,1 +1773602898.536501,29.33,4,3992.50,65.13,1149.58,2550.01,0.00,3517824228713.255371,3517824228704.237793,11,0,118.745257,0.027510,23619386,15275525,0,0,44710,0,1,1 +1773602903.535813,31.02,4,3992.50,65.17,1145.91,2551.51,0.00,0.180298,0.000000,205,0,119.594954,0.066374,23631830,15280719,0,0,44712,0,1,1 +1773602908.535622,29.47,4,3992.50,65.16,1146.16,2551.30,0.00,1.475935,10.675604,251,357,118.777368,0.042257,23644210,15284022,0,0,44715,0,1,1 +1773602913.536640,29.93,4,3992.50,65.49,1133.30,2564.13,0.00,3517720577438.419434,3517720577429.402832,11,0,119.540437,0.017410,23656526,15285377,0,0,44717,0,1,1 +1773602918.536569,29.83,4,3992.50,65.48,1133.63,2563.83,0.00,25172.359210,26040.276108,1752477,2317000,119.567460,0.028089,23668725,15287554,0,0,44720,0,1,1 +1773602923.531897,15.89,4,3992.50,59.01,1387.26,2310.26,0.00,3521728524277.325684,3521728523408.428223,205,0,109.455982,0.027555,23679961,15289692,0,0,44722,0,1,1 +1773602928.531852,1.40,4,3992.50,59.54,1368.24,2331.29,0.00,1.475892,10.675291,251,357,0.003126,0.002107,23680020,15289738,0,0,44725,0,1,1 +1773602933.536073,0.65,4,3992.50,59.22,1380.70,2318.59,0.00,3515469031584.265625,3515469031575.254395,11,0,0.000000,0.000020,23680020,15289740,0,0,44727,0,1,1 +1773602938.535990,1.00,4,3992.50,59.23,1380.29,2319.00,0.00,1.656180,10.675373,251,357,0.000000,0.000020,23680020,15289742,0,0,44729,0,1,1 +1773602943.536304,0.75,4,3992.50,59.22,1380.89,2318.40,0.00,25159.341255,26017.174447,1750999,2316767,0.000025,0.000061,23680022,15289747,0,0,44732,0,1,1 +1773602948.536574,0.70,4,3992.50,59.22,1380.89,2318.40,0.00,3518246647445.893066,3518246646588.052246,251,357,0.000000,0.000030,23680022,15289750,0,0,44735,0,1,1 +1773602953.536374,0.90,4,3992.50,59.22,1380.89,2318.40,0.00,0.000000,0.000000,251,357,0.000025,0.000051,23680024,15289754,0,0,44737,0,1,1 +1773602958.534236,1.05,4,3992.50,59.23,1381.04,2319.10,0.00,3519942405949.367676,3519942405940.164551,205,0,0.000008,0.000038,23680025,15289758,0,0,44740,0,1,1 +1773602963.536666,0.65,4,3992.50,59.20,1380.19,2317.84,0.00,3516728009439.217773,0.000000,11,0,0.000000,0.000020,23680025,15289760,0,0,44742,0,1,1 +1773602968.536372,0.50,4,3992.50,59.01,1387.58,2310.44,0.00,25173.619006,26041.843934,1752488,2317176,0.000025,0.000061,23680027,15289765,0,0,44745,0,1,1 +1773602973.536572,0.70,4,3992.50,59.02,1387.36,2310.66,0.00,3518296471385.508301,3518296471384.400391,1750999,2316822,0.000109,0.000152,23680036,15289776,0,0,44747,0,1,1 +1773602978.536358,0.60,4,3992.50,59.02,1387.37,2310.66,0.00,3518587971402.359863,3518587970544.276367,251,357,0.000000,0.000030,23680036,15289779,0,0,44750,0,1,1 +1773602983.535423,0.80,4,3992.50,59.02,1387.37,2310.66,0.00,25175.185188,26034.516163,1752488,2317193,0.000308,0.000575,23680043,15289792,0,0,44752,0,1,1 +1773602988.536345,0.95,4,3992.50,59.22,1379.54,2318.47,0.00,3517788318509.463867,3517788317641.434570,11,0,0.000213,0.000570,23680051,15289807,0,0,44755,0,1,1 +1773602993.532559,32.90,4,3992.50,64.96,1154.68,2543.29,0.00,25191.217044,26060.113812,1752488,2317254,76.582073,0.057160,23688322,15293986,0,0,44757,0,1,1 +1773602998.532479,33.10,4,3992.50,65.24,1143.73,2554.20,0.00,3518493447939.788574,3518493447071.536133,11,0,123.169050,0.033392,23700578,15296445,0,0,44760,0,1,1 +1773603003.531894,30.19,4,3992.50,65.26,1142.94,2555.04,0.00,0.000000,0.000000,11,0,120.733518,0.025835,23712284,15298382,0,0,44762,0,1,1 +1773603008.532065,30.12,4,3992.50,65.56,1131.14,2566.77,0.00,25161.730511,26029.029918,1751008,2317042,119.600373,0.028413,23723823,15300579,0,0,44765,0,1,1 +1773603013.532293,5.38,4,3992.50,65.82,1120.82,2577.18,0.00,3518276570173.250977,3518276569305.961426,11,0,18.225541,0.120777,23730472,15307980,0,0,44767,0,1,1 +1773603018.534882,2.27,4,3992.50,66.37,1105.45,2598.37,0.00,2.011263,0.000195,246,2,5.290459,0.126700,23736171,15316011,0,0,44770,0,1,1 +1773603023.533551,2.69,4,3992.50,66.30,1107.90,2595.91,0.00,3519374000779.892578,3519374000781.851562,75,0,4.609188,0.092055,23739339,15322635,0,0,44772,0,1,1 +1773603028.532555,2.48,4,3992.50,66.17,1113.09,2590.70,0.00,1.959179,0.000195,246,2,4.615882,0.087611,23742561,15329121,0,0,44775,0,1,1 +1773603033.536443,2.53,4,3992.50,66.36,1105.66,2598.12,0.00,25141.026514,26009.856943,1751008,2317231,4.591319,0.090332,23745887,15335801,0,0,44777,0,1,1 +1773603038.532297,2.43,4,3992.50,66.22,1111.09,2592.70,0.00,3521357155049.644043,3521357154181.249512,205,0,4.602462,0.085090,23749093,15342123,0,0,44780,0,1,1 +1773603043.535793,2.48,4,3992.50,66.26,1109.63,2594.18,0.00,1.830751,0.000195,246,2,4.614188,0.081918,23752269,15348245,0,0,44782,0,1,1 +1773603048.535972,2.53,4,3992.50,66.14,1115.84,2589.69,0.00,3518311603045.971680,3518311603047.984375,11,0,4.611516,0.083443,23755504,15354450,0,0,44785,0,1,1 +1773603053.536715,2.63,4,3992.50,66.00,1121.54,2584.01,0.00,2.012006,0.000195,246,2,4.597756,0.082407,23758684,15360558,0,0,44787,0,1,1 +1773603058.533118,1.83,4,3992.50,66.19,1113.89,2591.64,0.00,3520970317457.333496,3520970317459.347656,11,0,4.598297,0.086001,23761953,15366917,0,0,44790,0,1,1 +1773603063.533235,2.22,4,3992.50,66.35,1107.64,2597.87,0.00,0.000000,0.000000,11,0,4.604192,0.086904,23765248,15373298,0,0,44792,0,1,1 +1773603068.534231,1.62,4,3992.50,66.18,1114.61,2590.95,0.00,0.053505,0.000000,75,0,4.611785,0.084327,23768437,15379579,0,0,44795,0,1,1 +1773603073.533444,2.22,4,3992.50,66.43,1104.82,2600.70,0.00,3518991149467.343262,0.000000,11,0,4.613655,0.081070,23771623,15385591,0,0,44797,0,1,1 +1773603078.535568,3.44,4,3992.50,66.46,1107.10,2601.97,0.00,25161.460691,26029.884412,1752497,2317781,4.597858,0.087151,23774841,15392010,0,0,44800,0,1,1 +1773603083.532387,2.53,4,3992.50,66.33,1112.08,2597.00,0.00,3520677163155.876953,3520677162295.556152,251,357,4.607187,0.085721,23778062,15398282,0,0,44802,0,1,1 +1773603088.533852,2.38,4,3992.50,66.19,1117.65,2591.40,0.00,0.356048,3517406581308.430176,246,2,4.584015,0.083959,23781288,15404475,0,0,44805,0,1,1 +1773603093.534602,2.43,4,3992.50,66.31,1112.69,2596.36,0.00,3517909374722.839355,3517909374724.797852,75,0,4.614587,0.083128,23784536,15410621,0,0,44807,0,1,1 +1773603098.536109,2.23,4,3992.50,66.34,1111.71,2597.34,0.00,25164.514546,26033.131231,1752497,2317850,4.617799,0.084693,23787729,15416921,0,0,44810,0,1,1 +1773603103.532370,2.28,4,3992.50,66.33,1112.17,2597.02,0.00,3521070440889.417480,3521070440028.968262,251,357,4.587680,0.085915,23790969,15423239,0,0,44812,0,1,1 +1773603108.536738,2.18,4,3992.50,66.83,1092.90,2616.37,0.00,3515366178660.260254,3515366178651.195801,75,0,4.627433,0.085168,23794163,15429505,0,0,44815,0,1,1 +1773603113.531806,2.48,4,3992.50,66.40,1109.43,2599.71,0.00,1.960723,0.000196,246,2,4.574816,0.083537,23797314,15435679,0,0,44817,0,1,1 +1773603118.536065,2.53,4,3992.50,66.27,1114.52,2594.60,0.00,25139.164366,26008.208526,1751008,2317574,4.616173,0.080985,23800448,15441706,0,0,44820,0,1,1 +1773603123.535733,2.38,4,3992.50,66.03,1124.04,2585.09,0.00,0.000000,0.007813,1751008,2317591,4.594264,0.083667,23803604,15447838,0,0,44822,0,1,1 +1773603128.532586,2.28,4,3992.50,66.19,1117.46,2591.67,0.00,3520653047542.203125,3520653046673.876465,11,0,4.610752,0.083864,23806786,15453978,0,0,44825,0,1,1 +1773603133.531719,2.53,4,3992.50,66.32,1112.39,2596.73,0.00,25166.956100,26034.905925,1751008,2317624,4.599361,0.079920,23809944,15459918,0,0,44827,0,1,1 +1773603138.535546,2.58,4,3992.50,66.74,1098.20,2613.16,0.00,3515745785396.806641,3515745784529.617676,75,0,4.601224,0.084153,23813077,15466147,0,0,44830,0,1,1 +1773603143.532264,2.68,4,3992.50,66.41,1108.81,2600.29,0.00,25179.062768,26047.530570,1751008,2317672,4.576074,0.085717,23816360,15472410,0,0,44832,0,1,1 +1773603148.532410,2.38,4,3992.50,66.38,1110.34,2598.75,0.00,3518334781885.129395,3518334781015.298340,246,2,4.629687,0.078221,23819476,15478241,0,0,44835,0,1,1 +1773603153.533167,2.58,4,3992.50,66.23,1116.11,2592.98,0.00,3517904707165.225098,10.673384,251,357,4.609763,0.082016,23822648,15484296,0,0,44837,0,1,1 +1773603158.535569,2.48,4,3992.50,66.23,1115.94,2593.12,0.00,3516747449009.817871,3516747449000.803223,11,0,4.594978,0.084481,23825889,15490494,0,0,44840,0,1,1 +1773603163.535248,2.54,4,3992.50,66.45,1107.24,2601.84,0.00,2.012434,0.000195,246,2,4.607381,0.081999,23828972,15496576,0,0,44842,0,1,1 +1773603168.531754,2.64,4,3992.50,66.60,1101.12,2607.54,0.00,3520898037049.781250,3520898037051.794922,11,0,4.587233,0.080629,23832182,15502517,0,0,44845,0,1,1 +1773603173.532289,2.18,4,3992.50,66.15,1118.91,2589.77,0.00,25169.455870,26038.398480,1752497,2318140,4.607446,0.085946,23835415,15508861,0,0,44847,0,1,1 +1773603178.532113,2.63,4,3992.50,66.21,1116.22,2592.42,0.00,3518561296036.793457,3518561295165.715332,246,2,4.617420,0.088882,23838588,15515408,0,0,44850,0,1,1 +1773603183.531801,2.23,4,3992.50,66.11,1120.29,2588.35,0.00,25162.146465,26032.154740,1751008,2317817,4.593501,0.079376,23841736,15521315,0,0,44852,0,1,1 +1773603188.531821,2.78,4,3992.50,66.12,1119.84,2588.82,0.00,3518422469679.499023,3518422468820.579590,251,357,4.611419,0.076834,23844920,15527065,0,0,44855,0,1,1 +1773603193.532644,2.28,4,3992.50,66.14,1119.04,2589.64,0.00,0.356094,3517858716003.115234,246,2,4.595685,0.083299,23848090,15533187,0,0,44857,0,1,1 +1773603198.532342,3.09,4,3992.50,66.07,1119.73,2586.82,0.00,3518649232831.793945,3518649232833.752930,75,0,4.614692,0.081594,23851262,15539186,0,0,44860,0,1,1 +1773603203.535217,2.38,4,3992.50,66.06,1120.25,2586.32,0.00,1.601716,10.669062,251,357,4.606336,0.081898,23854412,15545286,0,0,44862,0,1,1 +1773603208.536274,2.33,4,3992.50,66.10,1118.64,2587.93,0.00,3517693036698.579102,3517693036689.381836,205,0,4.590739,0.088048,23857671,15551634,0,0,44865,0,1,1 +1773603213.533792,2.28,4,3992.50,65.78,1130.93,2575.59,0.00,1.476612,10.680497,251,357,4.612698,0.081518,23860824,15557675,0,0,44867,0,1,1 +1773603218.532640,2.78,4,3992.50,66.11,1118.31,2588.21,0.00,3519248117552.038086,3519248117543.017578,11,0,4.578161,0.076683,23863914,15563361,0,0,44870,0,1,1 +1773603223.535071,2.13,4,3992.50,66.13,1117.24,2589.32,0.00,25159.917293,26028.638160,1752497,2318317,4.621242,0.083900,23867056,15569585,0,0,44872,0,1,1 +1773603228.532208,2.74,4,3992.50,66.66,1096.88,2610.02,0.00,3520453271962.382812,3520453271092.561035,205,0,4.599507,0.080571,23870238,15575550,0,0,44875,0,1,1 +1773603233.531804,2.53,4,3992.50,66.46,1104.39,2602.16,0.00,3518721065518.863281,0.000000,11,0,4.616924,0.077378,23873273,15581304,0,0,44877,0,1,1 +1773603238.531797,2.53,4,3992.50,66.26,1112.16,2594.35,0.00,25172.186438,26041.396169,1752497,2318384,4.594055,0.081524,23876472,15587348,0,0,44880,0,1,1 +1773603243.532866,2.33,4,3992.50,65.89,1126.82,2579.71,0.00,3517685307321.809082,3517685306452.605957,205,0,4.604411,0.084377,23879608,15593522,0,0,44882,0,1,1 +1773603248.531895,2.68,4,3992.50,66.05,1120.52,2586.03,0.00,3519120866382.312988,0.000000,75,0,4.592612,0.081922,23882869,15599565,0,0,44885,0,1,1 +1773603253.531811,2.54,4,3992.50,65.86,1128.17,2578.41,0.00,0.126760,0.000000,205,0,4.624254,0.074255,23885994,15605107,0,0,44887,0,1,1 +1773603258.536412,2.58,4,3992.50,65.87,1121.77,2578.89,0.00,1.830347,0.000195,246,2,4.601647,0.083955,23889201,15611296,0,0,44890,0,1,1 +1773603263.535304,2.48,4,3992.50,66.09,1113.03,2587.63,0.00,25166.155790,26036.521294,1751008,2318119,4.597315,0.081438,23892349,15617321,0,0,44892,0,1,1 +1773603268.531803,2.23,4,3992.50,66.14,1111.19,2589.47,0.00,3520902378027.442383,3520902377156.660645,246,2,4.596288,0.089144,23895591,15623832,0,0,44895,0,1,1 +1773603273.531784,2.53,4,3992.50,65.75,1126.21,2574.42,0.00,3518450263740.702637,10.675040,251,357,4.602373,0.085682,23898809,15630158,0,0,44897,0,1,1 +1773603278.535632,2.32,4,3992.50,66.08,1113.59,2587.04,0.00,3515731938235.964844,3515731938226.772461,205,0,4.630372,0.083667,23902083,15636358,0,0,44900,0,1,1 +1773603283.531806,2.64,4,3992.50,65.88,1121.28,2579.38,0.00,1.477009,10.683370,251,357,4.589982,0.086332,23905293,15642584,0,0,44902,0,1,1 +1773603288.532502,2.68,4,3992.50,66.34,1105.17,2597.46,0.00,0.000000,0.000000,251,357,4.602587,0.081591,23908503,15648622,0,0,44905,0,1,1 +1773603293.532306,2.58,4,3992.50,66.21,1108.33,2592.31,0.00,0.356166,3518575433997.304199,246,2,4.641957,0.098229,23913937,15655603,0,0,44907,0,1,1 +1773603298.532053,2.28,4,3992.50,65.96,1118.34,2582.30,0.00,3518615031944.002930,3518615031945.961426,75,0,4.651982,0.119627,23921932,15663814,0,0,44910,0,1,1 +1773603303.536021,2.38,4,3992.50,65.82,1123.77,2576.86,0.00,25152.140102,26020.894242,1752497,2318630,4.672885,0.118198,23930138,15671995,0,0,44912,0,1,1 +1773603308.535218,2.23,4,3992.50,65.90,1120.45,2580.19,0.00,0.000000,0.033501,1752497,2318674,4.687274,0.127072,23939021,15680589,0,0,44915,0,1,1 +1773603313.536666,2.44,4,3992.50,65.80,1124.24,2576.39,0.00,3517418626508.793945,3517418625639.622070,11,0,4.679489,0.122597,23947774,15689085,0,0,44917,0,1,1 +1773603318.534652,2.59,4,3992.50,66.53,1096.68,2604.68,0.00,0.180346,0.000000,205,0,4.694373,0.125438,23956650,15697653,0,0,44920,0,1,1 +1773603323.535135,2.23,4,3992.50,65.83,1123.93,2577.44,0.00,3518097917890.861328,0.000000,11,0,4.666494,0.123797,23965450,15706181,0,0,44922,0,1,1 +1773603328.532294,2.49,4,3992.50,66.03,1116.34,2585.03,0.00,0.000000,0.000000,11,0,4.700744,0.121951,23974263,15714674,0,0,44925,0,1,1 +1773603333.532190,2.49,4,3992.50,66.16,1110.86,2590.48,0.00,0.053517,0.000000,75,0,4.699321,0.125574,23983157,15723254,0,0,44927,0,1,1 +1773603338.532568,3.14,4,3992.50,66.21,1109.19,2592.14,0.00,25170.216305,26039.694744,1752502,2318798,4.661868,0.122531,23991925,15731765,0,0,44930,0,1,1 +1773603343.532634,2.28,4,3992.50,66.38,1102.53,2598.82,0.00,3518390534779.939941,3518390533919.479980,251,357,4.690483,0.123563,24000750,15740288,0,0,44932,0,1,1 +1773603348.531818,2.59,4,3992.50,66.38,1109.70,2599.01,0.00,3519011417235.330566,3519011417226.310547,11,0,4.684650,0.123212,24009543,15748780,0,0,44935,0,1,1 +1773603353.531796,3.05,4,3992.50,66.41,1108.43,2600.14,0.00,0.053516,0.000000,75,0,4.685568,0.129368,24018452,15757438,0,0,44937,0,1,1 +1773603358.535553,15.29,4,3992.50,73.00,850.62,2857.92,0.00,3515795468294.633789,0.000000,11,0,4.750169,0.126392,24027674,15766023,0,0,44940,0,1,1 +1773603363.531983,2.70,4,3992.50,73.07,847.87,2860.68,0.00,0.053554,0.000000,75,0,4.691932,0.118219,24036661,15774448,0,0,44942,0,1,1 +1773603368.535677,2.79,4,3992.50,73.07,847.87,2860.66,0.00,3515839742343.068848,0.000000,11,0,4.688195,0.117388,24045606,15782903,0,0,44945,0,1,1 +1773603373.535715,2.95,4,3992.50,72.86,856.02,2852.56,0.00,0.053515,0.000000,75,0,4.722900,0.117789,24054649,15791363,0,0,44947,0,1,1 +1773603378.536197,2.85,4,3992.50,73.29,838.72,2869.61,0.00,0.126746,0.000000,205,0,4.689618,0.117431,24063607,15799782,0,0,44950,0,1,1 +1773603383.532378,2.70,4,3992.50,73.16,844.01,2864.31,0.00,3521126048480.149902,0.000000,75,0,4.700251,0.118665,24072623,15808236,0,0,44952,0,1,1 +1773603388.532036,2.44,4,3992.50,73.01,849.82,2858.52,0.00,25164.281917,26033.086081,1751014,2318812,4.707124,0.116804,24081573,15816644,0,0,44955,0,1,1 +1773603393.532237,2.75,4,3992.50,72.83,856.96,2851.34,0.00,3518295873477.808105,3518295872609.151855,11,0,4.681931,0.118959,24090536,15825108,0,0,44957,0,1,1 +1773603398.536090,2.49,4,3992.50,73.06,847.82,2860.49,0.00,25143.232708,26011.271411,1751014,2318844,4.695422,0.116762,24099490,15833525,0,0,44960,0,1,1 +1773603403.531784,3.05,4,3992.50,73.28,839.11,2869.22,0.00,3521470091390.145996,3521470090520.689453,11,0,4.677398,0.116827,24108431,15841919,0,0,44962,0,1,1 +1773603408.534577,2.74,4,3992.50,73.37,838.53,2872.40,0.00,1.655228,10.669235,251,357,4.718245,0.117571,24117453,15850395,0,0,44965,0,1,1 +1773603413.532078,2.79,4,3992.50,73.26,840.20,2868.13,0.00,3520196841228.095703,3520196841219.072754,11,0,4.692187,0.117853,24126430,15858775,0,0,44967,0,1,1 +1773603418.535768,2.54,4,3992.50,73.10,846.46,2861.86,0.00,0.000000,0.000000,11,0,4.682339,0.118914,24135432,15867280,0,0,44970,0,1,1 +1773603423.533879,2.75,4,3992.50,73.10,846.27,2862.06,0.00,0.180342,0.000000,205,0,4.695549,0.116941,24144420,15875708,0,0,44972,0,1,1 +1773603428.531817,2.80,4,3992.50,73.31,838.00,2870.26,0.00,3519888803281.737305,0.000000,11,0,4.703069,0.117490,24153398,15884153,0,0,44975,0,1,1 +1773603433.531823,2.80,4,3992.50,73.07,847.44,2860.87,0.00,0.053516,0.000000,75,0,4.693227,0.117285,24162348,15892581,0,0,44977,0,1,1 +1773603438.534845,2.64,4,3992.50,73.31,838.14,2870.33,0.00,25147.359341,26015.723790,1751014,2319026,4.701330,0.116138,24171309,15900938,0,0,44980,0,1,1 +1773603443.532003,2.80,4,3992.50,73.24,840.80,2867.62,0.00,3520438300831.409668,3520438299961.899414,205,0,4.695079,0.119508,24180311,15909447,0,0,44982,0,1,1 +1773603448.532563,2.39,4,3992.50,73.13,845.17,2863.14,0.00,25159.613433,26028.562029,1751014,2319071,4.699308,0.119232,24189291,15917921,0,0,44985,0,1,1 +1773603453.533058,2.74,4,3992.50,73.14,844.81,2863.52,0.00,3518089014634.020508,3518089013765.240723,11,0,4.708386,0.119159,24198346,15926409,0,0,44987,0,1,1 +1773603458.535765,2.75,4,3992.50,73.01,849.95,2858.38,0.00,1.655256,10.669419,251,357,4.703390,0.119088,24207350,15934862,0,0,44990,0,1,1 +1773603463.533928,2.44,4,3992.50,72.93,853.12,2855.18,0.00,0.356283,3519730031759.192383,246,2,4.682804,0.117341,24216327,15943239,0,0,44992,0,1,1 +1773603468.535246,2.84,4,3992.50,73.08,851.79,2861.41,0.00,3517510455326.091309,3517510455328.049316,75,0,4.711440,0.117388,24225302,15951680,0,0,44995,0,1,1 +1773603473.535752,2.29,4,3992.50,72.85,860.96,2852.27,0.00,3518080693621.816406,0.000000,11,0,4.690653,0.117705,24234276,15960103,0,0,44997,0,1,1 +1773603478.535674,2.19,4,3992.50,73.11,850.64,2862.57,0.00,0.000000,0.000000,11,0,4.684489,0.117552,24243227,15968527,0,0,45000,0,1,1 +1773603483.532761,2.49,4,3992.50,73.00,855.05,2858.13,0.00,2.013478,0.000195,246,2,4.708856,0.116412,24252185,15976934,0,0,45002,0,1,1 +1773603488.531782,2.80,4,3992.50,73.09,851.49,2861.71,0.00,3519125840575.579102,3519125840577.411621,205,0,4.700798,0.117995,24261165,15985378,0,0,45005,0,1,1 +1773603493.532618,2.64,4,3992.50,72.84,861.26,2851.96,0.00,1.831725,0.000195,246,2,4.673919,0.119238,24270143,15993845,0,0,45007,0,1,1 +1773603498.532422,3.10,4,3992.50,73.29,843.82,2869.36,0.00,25171.143252,26043.310028,1752503,2319638,4.702979,0.116645,24279135,16002258,0,0,45010,0,1,1 +1773603503.536667,2.49,4,3992.50,73.17,848.46,2864.75,0.00,3515453104553.297852,3515453104552.205078,1751014,2319308,4.710517,0.117456,24288124,16010702,0,0,45012,0,1,1 +1773603508.531896,2.90,4,3992.50,73.11,850.71,2862.49,0.00,3521797212815.321289,3521797211943.450684,246,2,4.691822,0.118556,24297064,16019154,0,0,45015,0,1,1 +1773603513.532343,2.34,4,3992.50,73.02,854.53,2858.70,0.00,25167.912880,26040.005710,1752503,2319702,4.699523,0.117645,24306024,16027590,0,0,45017,0,1,1 +1773603518.531945,2.90,4,3992.50,73.19,847.59,2865.60,0.00,3518717633247.629395,3518717632377.348145,75,0,4.681730,0.117361,24314998,16036023,0,0,45020,0,1,1 +1773603523.536286,2.08,4,3992.50,72.99,855.36,2857.85,0.00,0.000000,0.000000,75,0,4.707752,0.118164,24323991,16044500,0,0,45022,0,1,1 +1773603528.536640,2.74,4,3992.50,73.37,848.89,2872.41,0.00,3518187958635.391113,0.000000,11,0,4.678939,0.118998,24332953,16052976,0,0,45025,0,1,1 +1773603533.532155,2.76,4,3992.50,73.13,857.98,2863.34,0.00,1.657639,10.684780,251,357,4.696940,0.117966,24341947,16061449,0,0,45027,0,1,1 +1773603538.531779,2.09,4,3992.50,73.28,852.12,2869.21,0.00,3518701518257.308594,3518701518248.289062,11,0,4.679363,0.118210,24350921,16069917,0,0,45030,0,1,1 +1773603543.536666,2.34,4,3992.50,73.35,849.53,2871.78,0.00,0.000000,0.000000,11,0,4.716232,0.116089,24359911,16078341,0,0,45032,0,1,1 +1773603548.531757,2.59,4,3992.50,73.47,844.88,2876.43,0.00,0.000000,0.000000,11,0,4.689871,0.117656,24368861,16086777,0,0,45035,0,1,1 +1773603553.535539,2.74,4,3992.50,73.32,850.61,2870.70,0.00,2.010784,0.000195,246,2,4.702794,0.117476,24377843,16095237,0,0,45037,0,1,1 +1773603558.536329,2.54,4,3992.50,73.35,849.51,2871.81,0.00,0.000000,0.000000,246,2,4.688235,0.116493,24386781,16103650,0,0,45040,0,1,1 +1773603563.532223,2.45,4,3992.50,73.21,851.30,2866.35,0.00,3521329079259.554688,3521329079261.568848,11,0,4.685917,0.118042,24395728,16112113,0,0,45042,0,1,1 +1773603568.536067,2.80,4,3992.50,73.23,850.56,2867.08,0.00,0.000000,0.000000,11,0,4.704224,0.117173,24404694,16120553,0,0,45045,0,1,1 +1773603573.535923,2.39,4,3992.50,73.24,850.07,2867.57,0.00,0.000000,0.000000,11,0,4.684771,0.118362,24413682,16129009,0,0,45047,0,1,1 +1773603578.532579,3.00,4,3992.50,73.20,851.86,2865.80,0.00,1.657261,10.682340,251,357,4.707340,0.116885,24422666,16137453,0,0,45050,0,1,1 +1773603583.532679,2.39,4,3992.50,73.20,851.53,2866.13,0.00,3518366535452.999512,3518366535443.927246,75,0,4.694467,0.118684,24431672,16145926,0,0,45052,0,1,1 +1773603588.536211,2.85,4,3992.50,73.07,854.91,2860.83,0.00,1.601505,10.667659,251,357,4.698633,0.116914,24440610,16154369,0,0,45055,0,1,1 +1773603593.532242,2.80,4,3992.50,73.19,849.82,2865.68,0.00,3521232657035.556152,3521232657026.476562,75,0,4.696017,0.118966,24449619,16162793,0,0,45057,0,1,1 +1773603598.535781,2.74,4,3992.50,72.87,862.45,2853.02,0.00,0.000000,0.000000,75,0,4.686541,0.117445,24458595,16171242,0,0,45060,0,1,1 +1773603603.532033,2.75,4,3992.50,72.95,859.45,2856.05,0.00,1.960259,0.000195,246,2,4.698422,0.116185,24467537,16179643,0,0,45062,0,1,1 +1773603608.535227,2.24,4,3992.50,72.73,867.81,2847.70,0.00,25154.155161,26026.055812,1752517,2320155,4.696350,0.115943,24476484,16188054,0,0,45065,0,1,1 +1773603613.536701,32.05,4,3992.50,72.33,883.46,2831.95,0.00,3517400315300.778809,3517400314430.590332,11,0,127.763846,0.132750,24496862,16198196,0,0,45067,0,1,1 +1773603618.532420,23.58,4,3992.50,72.51,876.57,2838.88,0.00,0.180428,0.000000,205,0,125.156104,0.062667,24509663,16203038,0,0,45070,0,1,1 +1773603623.535582,25.84,4,3992.50,65.79,1140.80,2575.83,0.00,1.830873,0.000195,246,2,118.905431,0.051082,24521945,16206884,0,0,45072,0,1,1 +1773603628.531728,29.25,4,3992.50,65.71,1143.96,2572.61,0.00,3521151618184.444336,3521151618186.458496,11,0,115.951176,0.031808,24533513,16209322,0,0,45075,0,1,1 +1773603633.536627,28.27,4,3992.50,66.02,1132.00,2584.66,0.00,0.000000,0.000000,11,0,113.311984,0.037864,24545177,16212263,0,0,45077,0,1,1 +1773603638.534340,29.01,4,3992.50,66.01,1132.33,2584.30,0.00,25174.347449,26044.279811,1751043,2319993,115.817801,0.036752,24556765,16215124,0,0,45080,0,1,1 +1773603643.535865,29.77,4,3992.50,65.93,1135.40,2581.20,0.00,3517364585901.207031,3517364585031.757324,205,0,117.064909,0.036564,24568515,16217997,0,0,45082,0,1,1 +1773603648.535884,29.65,4,3992.50,65.86,1137.82,2578.71,0.00,3518423745986.397949,0.000000,11,0,117.816656,0.037229,24580342,16220874,0,0,45085,0,1,1 +1773603653.536489,16.26,4,3992.50,58.93,1408.50,2307.38,0.00,25159.859881,26029.493742,1751055,2320052,113.450186,0.035442,24591695,16223627,0,0,45087,0,1,1 +1773603658.533569,1.05,4,3992.50,59.01,1405.39,2310.48,0.00,3520493606129.948730,3520493605259.701172,11,0,0.003924,0.002444,24591775,16223688,0,0,45089,0,1,1 +1773603663.531829,0.60,4,3992.50,59.01,1405.38,2310.51,0.00,25171.734595,26041.770633,1751066,2320136,0.000000,0.000030,24591775,16223691,0,0,45092,0,1,1 +1773603668.532722,0.80,4,3992.50,58.93,1408.67,2307.23,0.00,3517808621677.714844,3517808620806.125488,246,2,0.000031,0.000055,24591777,16223696,0,0,45095,0,1,1 +1773603673.536532,0.70,4,3992.50,58.97,1406.99,2308.91,0.00,25151.363350,26023.584682,1752555,2320503,0.000008,0.000028,24591778,16223699,0,0,45097,0,1,1 +1773603678.536575,1.00,4,3992.50,58.93,1408.85,2307.09,0.00,3518406782565.017090,3518406781694.151367,11,0,0.000000,0.000030,24591778,16223702,0,0,45100,0,1,1 +1773603683.532657,0.65,4,3992.50,58.93,1408.64,2307.34,0.00,1.657451,10.683566,251,357,0.000000,0.000020,24591778,16223704,0,0,45102,0,1,1 +1773603688.536200,0.60,4,3992.50,58.96,1407.68,2308.30,0.00,3515946071082.016113,3515946071072.950684,75,0,0.000000,0.000030,24591778,16223707,0,0,45105,0,1,1 +1773603693.534309,0.60,4,3992.50,58.96,1407.69,2308.29,0.00,0.000000,0.000000,75,0,0.000000,0.000020,24591778,16223709,0,0,45107,0,1,1 +1773603698.531820,0.65,4,3992.50,58.96,1407.69,2308.29,0.00,0.000000,0.000000,75,0,0.000000,0.000030,24591778,16223712,0,0,45110,0,1,1 +1773603703.531955,0.60,4,3992.50,58.96,1407.69,2308.29,0.00,0.000000,0.000000,75,0,0.000126,0.000175,24591788,16223724,0,0,45112,0,1,1 +1773603708.531869,0.95,4,3992.50,59.23,1393.07,2318.96,0.00,0.000000,0.000000,75,0,0.000016,0.000046,24591790,16223729,0,0,45115,0,1,1 +1773603713.532726,25.97,4,3992.50,65.32,1154.54,2557.50,0.00,1.958453,0.000195,246,2,50.266192,0.023098,24597137,16225341,0,0,45117,0,1,1 +1773603718.535752,32.34,4,3992.50,65.26,1157.00,2555.00,0.00,3516309247531.824219,10.668544,251,357,118.094073,0.024355,24609306,16227126,0,0,45120,0,1,1 +1773603723.537204,29.92,4,3992.50,65.42,1150.84,2561.18,0.00,3517416089624.725098,3517416089615.528809,205,0,118.732360,0.023238,24621568,16228843,0,0,45122,0,1,1 +1773603728.532300,30.31,4,3992.50,65.33,1154.21,2557.74,0.00,1.477328,10.685675,251,357,119.681332,0.023838,24633792,16230689,0,0,45125,0,1,1 +1773603733.535010,29.70,4,3992.50,65.23,1158.30,2553.70,0.00,25147.691192,26008.296670,1751066,2320354,119.100910,0.022139,24646007,16232413,0,0,45127,0,1,1 +1773603738.532545,29.52,4,3992.50,65.37,1152.56,2559.46,0.00,3520172688698.688477,3520172687828.167969,11,0,119.234944,0.051662,24658414,16236422,0,0,45129,0,1,1 +1773603743.532778,29.88,4,3992.50,65.41,1151.66,2560.89,0.00,0.053513,0.000000,75,0,119.164467,0.031584,24670775,16238887,0,0,45132,0,1,1 +1773603748.536722,29.69,4,3992.50,65.46,1149.68,2562.82,0.00,0.126658,0.000000,205,0,119.081635,0.052122,24683190,16242964,0,0,45135,0,1,1 +1773603753.536014,23.44,4,3992.50,65.36,1153.66,2558.92,0.00,25175.927897,26047.745272,1752556,2320885,119.790131,0.047740,24695574,16246670,0,0,45137,0,1,1 +1773603758.536739,1.15,4,3992.50,59.95,1365.44,2347.13,0.00,3517927105389.599121,3517927104527.229492,251,357,22.229561,0.007313,24697891,16247208,0,0,45140,0,1,1 +1773603763.535768,1.00,4,3992.50,59.34,1389.31,2323.25,0.00,3519120598171.688477,3519120598162.667969,11,0,0.001549,0.000824,24697922,16247231,0,0,45142,0,1,1 +1773603768.536623,1.05,4,3992.50,59.37,1388.05,2324.33,0.00,0.000000,0.000000,11,0,0.000000,0.000030,24697922,16247234,0,0,45145,0,1,1 +1773603773.535423,0.75,4,3992.50,59.32,1389.73,2322.65,0.00,25178.738429,26050.502084,1752570,2320983,0.000000,0.000020,24697922,16247236,0,0,45147,0,1,1 +1773603778.536104,0.60,4,3992.50,59.32,1389.99,2322.39,0.00,3517957852808.026367,3517957851945.608887,251,357,0.000000,0.000020,24697922,16247238,0,0,45149,0,1,1 +1773603783.531904,0.70,4,3992.50,59.30,1390.59,2321.80,0.00,3521395299251.850586,3521395299242.770508,75,0,0.000000,0.000513,24697922,16247244,0,0,45152,0,1,1 +1773603788.531897,0.60,4,3992.50,59.28,1391.60,2320.79,0.00,3518442114998.831543,0.000000,11,0,0.000000,0.000191,24697922,16247248,0,0,45155,0,1,1 +1773603793.531821,0.55,4,3992.50,59.28,1391.35,2321.03,0.00,0.000000,0.000000,11,0,0.000000,0.000020,24697922,16247250,0,0,45157,0,1,1 +1773603798.536479,0.85,4,3992.50,59.30,1390.86,2321.53,0.00,0.000000,0.000000,11,0,0.001108,0.000636,24697944,16247266,0,0,45160,0,1,1 +1773603803.531821,0.95,4,3992.50,59.36,1392.29,2323.96,0.00,25196.165286,26068.714513,1752570,2321047,0.000041,0.000067,24697948,16247272,0,0,45162,0,1,1 +1773603808.531862,0.70,4,3992.50,59.38,1391.56,2324.69,0.00,3518408624086.034668,3518408623212.293457,246,2,0.001140,0.000532,24697976,16247295,0,0,45165,0,1,1 +1773603813.532992,0.65,4,3992.50,59.38,1391.56,2324.69,0.00,3517642259721.026855,3517642259723.039062,11,0,0.000000,0.000020,24697976,16247297,0,0,45167,0,1,1 +1773603818.534972,0.60,4,3992.50,59.38,1391.56,2324.69,0.00,25153.171932,26023.470935,1751081,2320710,0.000000,0.000030,24697976,16247300,0,0,45170,0,1,1 +1773603823.536470,21.12,4,3992.50,65.42,1154.69,2561.48,0.00,9.558659,10.687910,1752570,2321109,46.255925,0.022613,24702948,16248835,0,0,45172,0,1,1 +1773603828.531811,33.97,4,3992.50,65.57,1146.29,2567.03,0.00,3521718702179.915527,3521718701307.329590,11,0,122.283689,0.028026,24715476,16250945,0,0,45175,0,1,1 +1773603833.535567,29.51,4,3992.50,65.34,1155.14,2558.01,0.00,2.010794,0.000195,246,2,120.876342,0.019465,24727858,16252407,0,0,45177,0,1,1 +1773603838.535835,29.69,4,3992.50,65.53,1147.66,2565.60,0.00,3518248296539.084961,3518248296540.916992,205,0,120.759268,0.016366,24740250,16253679,0,0,45180,0,1,1 +1773603843.534749,30.46,4,3992.50,65.37,1153.68,2559.56,0.00,25177.983493,26050.392828,1752570,2321297,119.790542,0.016554,24752479,16254936,0,0,45182,0,1,1 +1773603848.532605,29.19,4,3992.50,65.29,1157.09,2556.21,0.00,3519946661446.701660,3519946660583.311035,251,357,119.216125,0.021067,24764699,16256532,0,0,45185,0,1,1 +1773603853.534593,29.07,4,3992.50,65.58,1145.75,2567.52,0.00,25161.031960,26023.758686,1752570,2321317,120.115441,0.026334,24776921,16258598,0,0,45187,0,1,1 +1773603858.532281,29.14,4,3992.50,65.26,1158.03,2555.21,0.00,0.000000,0.039960,1752570,2321329,119.022999,0.036429,24788939,16261404,0,0,45190,0,1,1 +1773603863.531858,21.80,4,3992.50,65.14,1153.11,2550.41,0.00,0.000781,0.023928,1752571,2321347,119.393160,0.080787,24801336,16267709,0,0,45192,0,1,1 +1773603868.535998,1.20,4,3992.50,59.87,1359.40,2344.09,0.00,3515526684090.663574,3515526683219.052734,205,0,17.816817,0.014282,24803309,16268749,0,0,45195,0,1,1 +1773603873.535571,0.70,4,3992.50,59.41,1377.34,2326.17,0.00,3518737575359.927734,0.000000,11,0,0.000000,0.000020,24803309,16268751,0,0,45197,0,1,1 +1773603878.531913,0.70,4,3992.50,59.00,1393.37,2310.14,0.00,25191.260928,26064.084441,1752585,2321431,0.000000,0.000030,24803309,16268754,0,0,45200,0,1,1 +1773603883.532880,0.75,4,3992.50,58.94,1395.83,2307.68,0.00,3517756876969.047363,3517756876096.850586,205,0,0.000308,0.000574,24803316,16268767,0,0,45202,0,1,1 +1773603888.531832,0.95,4,3992.50,59.33,1380.71,2322.93,0.00,0.000000,0.000000,205,0,0.000000,0.000030,24803316,16268770,0,0,45205,0,1,1 +1773603893.531961,0.60,4,3992.50,59.25,1383.81,2319.71,0.00,1.475841,10.674921,251,357,0.001126,0.001222,24803325,16268786,0,0,45207,0,1,1 +1773603898.531873,0.65,4,3992.50,59.25,1383.81,2319.70,0.00,3518498985983.093262,3518498985974.020996,75,0,0.000008,0.000038,24803326,16268790,0,0,45210,0,1,1 +1773603903.534404,0.90,4,3992.50,59.06,1391.18,2312.26,0.00,25150.495922,26021.439091,1751097,2321211,0.000000,0.000020,24803326,16268792,0,0,45212,0,1,1 +1773603908.531912,1.00,4,3992.50,59.08,1390.50,2313.02,0.00,3520191964916.730957,3520191964044.785645,205,0,0.000000,0.000030,24803326,16268795,0,0,45215,0,1,1 +1773603913.531862,0.85,4,3992.50,59.08,1390.50,2313.01,0.00,25172.913081,26045.679268,1752586,2321620,0.001355,0.001400,24803345,16268821,0,0,45217,0,1,1 +1773603918.532049,1.00,4,3992.50,58.96,1391.60,2308.37,0.00,3518304937664.362305,3518304936791.818359,11,0,0.000000,0.000030,24803345,16268824,0,0,45220,0,1,1 +1773603923.535685,0.85,4,3992.50,58.88,1394.88,2305.10,0.00,25154.551297,26026.582695,1752586,2321689,0.000205,0.001195,24803352,16268841,0,0,45222,0,1,1 +1773603928.531805,0.60,4,3992.50,58.88,1394.66,2305.32,0.00,3521169540852.326172,3521169539988.009277,251,357,0.000039,0.000063,24803355,16268847,0,0,45225,0,1,1 +1773603933.536010,19.75,4,3992.50,64.97,1156.33,2543.55,0.00,3515480419859.726074,3515480419850.534668,205,0,36.425053,0.020895,24807268,16270242,0,0,45227,0,1,1 +1773603938.535893,34.42,4,3992.50,64.72,1165.96,2533.80,0.00,0.000000,0.000000,205,0,122.172919,0.025337,24819821,16272150,0,0,45230,0,1,1 +1773603943.535848,30.29,4,3992.50,65.12,1150.24,2549.60,0.00,3518469357137.535645,0.000000,11,0,120.767150,0.022154,24832172,16273844,0,0,45232,0,1,1 +1773603948.536607,29.69,4,3992.50,65.07,1161.53,2547.81,0.00,0.000000,0.000000,11,0,120.747397,0.021450,24844491,16275517,0,0,45235,0,1,1 +1773603953.536381,29.28,4,3992.50,64.85,1170.30,2538.84,0.00,25164.412072,26036.297912,1751097,2321563,119.570877,0.026166,24856785,16277548,0,0,45237,0,1,1 +1773603958.531812,30.37,4,3992.50,65.01,1163.80,2545.32,0.00,3521655666389.024414,3521655665516.326660,75,0,120.276677,0.025118,24869147,16279508,0,0,45240,0,1,1 +1773603963.532274,30.46,4,3992.50,64.72,1175.50,2533.75,0.00,0.000000,0.000000,75,0,119.558173,0.033967,24881523,16282129,0,0,45242,0,1,1 +1773603968.536170,29.46,4,3992.50,65.01,1163.98,2545.39,0.00,1.957264,0.000195,246,2,119.269822,0.031875,24893626,16284615,0,0,45245,0,1,1 +1773603973.531834,24.89,4,3992.50,64.91,1167.98,2541.35,0.00,0.000000,0.000000,246,2,119.667507,0.034079,24905840,16287265,0,0,45247,0,1,1 +1773603978.536473,1.35,4,3992.50,59.51,1374.91,2329.76,0.00,3515175697401.566895,3515175697403.577637,11,0,27.012634,0.009629,24908624,16288020,0,0,45250,0,1,1 +1773603983.536376,0.90,4,3992.50,59.13,1389.78,2314.89,0.00,25173.469886,26046.651818,1752601,2322037,0.003086,0.001432,24908680,16288059,0,0,45252,0,1,1 +1773603988.533027,0.70,4,3992.50,59.14,1389.36,2315.31,0.00,3520795022111.944824,3520795021238.195312,11,0,0.000008,0.000038,24908681,16288063,0,0,45255,0,1,1 +1773603993.536482,0.55,4,3992.50,59.10,1390.80,2313.87,0.00,25155.595369,26028.222093,1752601,2322084,0.000000,0.000663,24908681,16288069,0,0,45257,0,1,1 +1773603998.535987,0.55,4,3992.50,59.11,1390.55,2314.12,0.00,3518785554038.441895,3518785553163.113281,246,2,0.000000,0.000030,24908681,16288072,0,0,45260,0,1,1 +1773604003.535975,0.75,4,3992.50,59.11,1390.55,2314.11,0.00,25171.026172,26046.274786,1752601,2322090,0.000000,0.000020,24908681,16288074,0,0,45262,0,1,1 +1773604008.531893,1.15,4,3992.50,59.16,1388.60,2316.07,0.00,3521311647310.217773,3521311646436.270020,11,0,0.000000,0.000030,24908681,16288077,0,0,45265,0,1,1 +1773604013.531914,0.70,4,3992.50,58.91,1398.36,2306.31,0.00,25172.874098,26046.199425,1752601,2322154,0.000000,0.000020,24908681,16288079,0,0,45267,0,1,1 +1773604018.534423,1.55,4,3992.50,58.91,1398.13,2306.52,0.00,3516672336776.326660,3516672335912.450195,251,357,0.000000,0.000020,24908681,16288081,0,0,45269,0,1,1 +1773604023.533558,0.70,4,3992.50,58.91,1398.13,2306.52,0.00,3519045842640.201172,3519045842631.000488,205,0,0.000025,0.000061,24908683,16288086,0,0,45272,0,1,1 +1773604028.533694,0.60,4,3992.50,58.56,1411.93,2292.73,0.00,25162.550786,26034.934862,1751112,2321804,0.000117,0.000170,24908693,16288099,0,0,45275,0,1,1 +1773604033.531812,0.70,4,3992.50,58.58,1411.08,2293.57,0.00,3519762174960.298340,3519762174087.562012,205,0,0.000000,0.000020,24908693,16288101,0,0,45277,0,1,1 +1773604038.536234,1.00,4,3992.50,58.98,1395.66,2309.29,0.00,1.830413,0.000195,246,2,0.000000,0.000030,24908693,16288104,0,0,45280,0,1,1 +1773604043.535975,16.69,4,3992.50,64.73,1170.17,2534.44,0.00,3518619362177.432617,10.675553,251,357,24.841663,0.017448,24911444,16289292,0,0,45282,0,1,1 +1773604048.533043,35.96,4,3992.50,65.07,1156.73,2547.82,0.00,25186.088962,26051.081893,1752601,2322310,123.265512,0.069660,24924394,16294642,0,0,45285,0,1,1 +1773604053.535593,30.86,4,3992.50,64.68,1172.36,2532.18,0.00,3516643575217.651367,3516643574344.591797,11,0,121.604991,0.020096,24936355,16296086,0,0,45287,0,1,1 +1773604058.535544,30.27,4,3992.50,64.93,1162.13,2542.26,0.00,0.000000,0.000000,11,0,121.126991,0.024348,24948175,16297857,0,0,45290,0,1,1 +1773604063.536537,29.94,4,3992.50,64.93,1162.52,2542.02,0.00,0.180238,0.000000,205,0,120.106863,0.032001,24960115,16300340,0,0,45292,0,1,1 +1773604068.533467,29.66,4,3992.50,65.27,1149.23,2555.32,0.00,0.000000,0.000000,205,0,119.267891,0.033599,24971777,16302965,0,0,45295,0,1,1 +1773604073.536258,29.56,4,3992.50,65.15,1154.05,2550.64,0.00,1.831009,0.000195,246,2,119.310814,0.032734,24983235,16305531,0,0,45297,0,1,1 +1773604078.536027,30.29,4,3992.50,65.00,1159.59,2545.06,0.00,3518600110214.390137,3518600110216.222656,205,0,118.738648,0.029801,24994265,16307863,0,0,45300,0,1,1 +1773604083.532655,26.58,4,3992.50,65.00,1159.90,2544.82,0.00,3520812009258.187500,0.000000,11,0,119.895417,0.029346,25005291,16310108,0,0,45302,0,1,1 +1773604088.536391,1.35,4,3992.50,60.01,1355.11,2349.59,0.00,0.180139,0.000000,205,0,37.305709,0.010151,25008747,16310863,0,0,45305,0,1,1 +1773604093.536491,0.85,4,3992.50,59.10,1390.86,2313.85,0.00,25172.349056,26046.352195,1752612,2322490,0.001528,0.000692,25008776,16310884,0,0,45307,0,1,1 +1773604098.531825,1.15,4,3992.50,58.84,1401.11,2303.57,0.00,3521723298791.873047,3521723297915.202637,246,2,0.001781,0.001560,25008801,16310902,0,0,45310,0,1,1 +1773604103.536358,0.75,4,3992.50,58.77,1403.58,2301.11,0.00,3515250601870.286621,3515250601872.297363,11,0,0.000008,0.000028,25008802,16310905,0,0,45312,0,1,1 +1773604108.536106,0.70,4,3992.50,58.77,1403.65,2301.04,0.00,25164.737129,26037.612984,1751123,2322204,0.001064,0.000431,25008824,16310921,0,0,45315,0,1,1 +1773604113.536586,0.65,4,3992.50,58.77,1403.65,2301.03,0.00,9.560605,10.679052,1752612,2322568,0.000000,0.000020,25008824,16310923,0,0,45317,0,1,1 +1773604118.536582,0.85,4,3992.50,58.77,1403.66,2301.03,0.00,3518439814801.120117,3518439813936.188477,251,357,0.000000,0.000030,25008824,16310926,0,0,45320,0,1,1 +1773604123.532599,0.60,4,3992.50,58.75,1404.35,2300.34,0.00,25181.872206,26046.478446,1751123,2322220,0.000000,0.000664,25008824,16310932,0,0,45322,0,1,1 +1773604128.536766,1.00,4,3992.50,58.95,1401.93,2308.03,0.00,3515507666885.573242,3515507666013.309570,75,0,0.000000,0.000030,25008824,16310935,0,0,45325,0,1,1 +1773604133.531942,0.80,4,3992.50,58.92,1403.01,2306.95,0.00,0.126880,0.000000,205,0,0.000025,0.000051,25008826,16310939,0,0,45327,0,1,1 +1773604138.534168,0.70,4,3992.50,58.92,1403.01,2306.95,0.00,25152.088644,26024.865269,1751123,2322253,0.000050,0.000082,25008830,16310945,0,0,45329,0,1,1 +1773604143.535580,0.70,4,3992.50,58.76,1409.44,2300.52,0.00,3517444251418.543945,3517444250554.821777,251,357,0.000058,0.000100,25008835,16310953,0,0,45332,0,1,1 +1773604148.536205,0.75,4,3992.50,58.76,1409.44,2300.52,0.00,3517997225633.323730,3517997225624.306152,11,0,0.000000,0.000030,25008835,16310956,0,0,45335,0,1,1 +1773604153.536377,14.99,4,3992.50,64.88,1169.66,2540.23,0.00,25172.162595,26046.249970,1752612,2322656,13.022233,0.012879,25010318,16311792,0,0,45337,0,1,1 +1773604158.532218,36.16,4,3992.50,65.51,1145.04,2564.68,0.00,3521366375990.188477,3521366375113.329590,246,2,118.465069,0.031649,25022525,16314177,0,0,45340,0,1,1 +1773604163.532067,30.33,4,3992.50,64.88,1169.70,2540.10,0.00,3518543892539.607422,3518543892541.439453,205,0,119.971280,0.026678,25034858,16316241,0,0,45342,0,1,1 +1773604168.533126,29.98,4,3992.50,64.83,1171.54,2538.23,0.00,25157.957788,26031.130023,1751123,2322449,118.336321,0.019673,25046908,16317776,0,0,45345,0,1,1 +1773604173.532093,30.47,4,3992.50,64.86,1170.21,2539.55,0.00,3519164349353.071289,3519164348479.713867,11,0,120.008005,0.070602,25059530,16323324,0,0,45347,0,1,1 +1773604178.536216,30.41,4,3992.50,65.10,1160.91,2548.88,0.00,0.053472,0.000000,75,0,118.686689,0.072665,25072115,16329015,0,0,45350,0,1,1 +1773604183.536539,30.43,4,3992.50,64.89,1169.22,2540.50,0.00,25161.791766,26035.118840,1751123,2322476,119.780420,0.086090,25084765,16335721,0,0,45352,0,1,1 +1773604188.535556,30.63,4,3992.50,65.06,1162.41,2547.37,0.00,3519129228226.559082,3519129227351.045410,246,2,119.414890,0.094094,25097488,16343058,0,0,45355,0,1,1 +1773604193.535571,30.26,4,3992.50,65.09,1162.68,2548.35,0.00,3518426593789.810059,10.674968,251,357,118.984998,0.086717,25110026,16349771,0,0,45357,0,1,1 +1773604198.533190,4.61,4,3992.50,60.45,1343.68,2366.78,0.00,3520113248850.991211,3520113248841.968262,11,0,58.926607,0.051004,25116384,16353703,0,0,45360,0,1,1 +1773604203.535920,0.80,4,3992.50,59.45,1382.70,2327.78,0.00,0.053486,0.000000,75,0,0.000013,0.000169,25116385,16353706,0,0,45362,0,1,1 +1773604208.531895,0.60,4,3992.50,59.20,1392.76,2317.71,0.00,25183.837534,26058.025951,1751144,2322614,0.000000,0.000030,25116385,16353709,0,0,45365,0,1,1 +1773604213.533882,0.75,4,3992.50,59.16,1394.35,2316.12,0.00,3517039412374.841797,3517039411510.772949,251,357,0.000308,0.000574,25116392,16353722,0,0,45367,0,1,1 +1773604218.532747,1.00,4,3992.50,59.16,1394.27,2316.28,0.00,3519236716117.185059,3519236716108.164062,11,0,0.000008,0.000038,25116393,16353726,0,0,45370,0,1,1 +1773604223.533497,0.75,4,3992.50,59.13,1395.52,2315.04,0.00,0.000000,0.000000,11,0,0.001139,0.001247,25116403,16353744,0,0,45372,0,1,1 +1773604228.536062,0.65,4,3992.50,59.16,1394.30,2316.26,0.00,25160.270553,26034.512363,1752633,2323075,0.000031,0.000055,25116405,16353749,0,0,45375,0,1,1 +1773604233.536187,0.75,4,3992.50,59.12,1395.71,2314.84,0.00,3518349410040.002441,3518349409165.280762,75,0,0.000000,0.000020,25116405,16353751,0,0,45377,0,1,1 +1773604238.536288,0.70,4,3992.50,59.17,1393.75,2316.81,0.00,25163.055581,26036.767135,1751144,2322726,0.000031,0.000055,25116407,16353756,0,0,45380,0,1,1 +1773604243.531816,0.60,4,3992.50,59.17,1393.99,2316.56,0.00,0.000000,0.006256,1751144,2322733,0.000109,0.000152,25116416,16353767,0,0,45382,0,1,1 +1773604248.531801,1.05,4,3992.50,59.37,1397.12,2324.59,0.00,3518447575807.999023,3518447574943.333008,251,357,0.000025,0.000061,25116418,16353772,0,0,45385,0,1,1 +1773604253.535948,0.65,4,3992.50,59.38,1394.71,2325.03,0.00,25150.661802,26015.774910,1752633,2323128,0.000000,0.000020,25116418,16353774,0,0,45387,0,1,1 +1773604258.534889,0.65,4,3992.50,59.20,1401.89,2317.86,0.00,3519182743689.421387,3519182742814.333008,75,0,0.000031,0.000528,25116420,16353781,0,0,45389,0,1,1 +1773604263.535629,11.78,4,3992.50,65.19,1167.44,2552.23,0.00,0.000000,0.000000,75,0,3.410556,0.009711,25116984,16354253,0,0,45392,0,1,1 +1773604268.532442,35.99,4,3992.50,65.31,1162.65,2557.04,0.00,0.000000,0.000000,75,0,119.240437,0.025790,25129120,16356188,0,0,45395,0,1,1 +1773604273.536450,28.23,4,3992.50,65.17,1168.18,2551.49,0.00,25143.408049,26016.625825,1751144,2322921,118.070981,0.023384,25141273,16357955,0,0,45397,0,1,1 +1773604278.532635,28.19,4,3992.50,65.47,1156.30,2563.36,0.00,3521123862494.274414,3521123861619.688965,75,0,120.055241,0.016110,25153486,16359188,0,0,45400,0,1,1 +1773604283.534212,28.69,4,3992.50,65.36,1160.13,2558.83,0.00,25165.192293,26040.019152,1752633,2323323,118.340422,0.065191,25165672,16364286,0,0,45402,0,1,1 +1773604288.535562,28.30,4,3992.50,64.97,1175.54,2543.61,0.00,3517487350107.103027,3517487350106.012695,1751144,2322994,120.155118,0.085969,25178264,16371019,0,0,45405,0,1,1 +1773604293.535553,28.36,4,3992.50,65.01,1173.93,2545.20,0.00,0.000000,0.009668,1751144,2323006,118.795699,0.110665,25190938,16379674,0,0,45407,0,1,1 +1773604298.532369,28.74,4,3992.50,64.94,1176.58,2542.58,0.00,9.567616,10.826523,1752633,2323383,119.673195,0.111138,25203663,16388352,0,0,45410,0,1,1 +1773604303.535541,28.47,4,3992.50,65.09,1170.91,2548.28,0.00,0.000000,0.007417,1752633,2323397,119.121123,0.109681,25216400,16396946,0,0,45412,0,1,1 +1773604308.531861,6.37,4,3992.50,60.71,1342.46,2376.85,0.00,3521029018616.547363,3521029018615.507812,1751150,2323070,68.765161,0.062995,25223794,16401855,0,0,45415,0,1,1 +1773604313.536226,1.55,4,3992.50,59.55,1387.77,2331.48,0.00,3515368091607.316895,3515368090733.705566,205,0,0.003084,0.001418,25223850,16401893,0,0,45417,0,1,1 +1773604318.531821,0.65,4,3992.50,59.03,1408.07,2311.17,0.00,0.000000,0.000000,205,0,0.000000,0.000030,25223850,16401896,0,0,45420,0,1,1 +1773604323.531829,0.75,4,3992.50,58.97,1410.42,2308.82,0.00,3518432212709.277344,0.000000,11,0,0.000000,0.000664,25223850,16401902,0,0,45422,0,1,1 +1773604328.531811,0.75,4,3992.50,58.78,1418.04,2301.21,0.00,2.012312,0.000195,246,2,0.000000,0.000030,25223850,16401905,0,0,45425,0,1,1 +1773604333.531837,0.70,4,3992.50,58.79,1417.32,2301.93,0.00,25161.613986,26037.904417,1751155,2323126,0.000000,0.000020,25223850,16401907,0,0,45427,0,1,1 +1773604338.531895,1.15,4,3992.50,59.23,1401.62,2319.07,0.00,9.561411,10.740108,1752644,2323514,0.000000,0.000030,25223850,16401910,0,0,45430,0,1,1 +1773604343.536485,0.70,4,3992.50,59.23,1401.75,2319.05,0.00,3515210236180.177734,3515210235305.339355,205,0,0.000000,0.000020,25223850,16401912,0,0,45432,0,1,1 +1773604348.532460,0.70,4,3992.50,59.17,1404.36,2316.45,0.00,25183.845839,26059.138461,1751155,2323225,0.000000,0.000030,25223850,16401915,0,0,45435,0,1,1 +1773604353.535718,0.65,4,3992.50,59.16,1404.53,2316.27,0.00,3516146490932.598633,3516146490058.760254,11,0,0.000025,0.000051,25223852,16401919,0,0,45437,0,1,1 +1773604358.531810,0.50,4,3992.50,59.14,1405.17,2315.64,0.00,0.000000,0.000000,11,0,0.000117,0.000170,25223862,16401932,0,0,45440,0,1,1 +1773604363.531808,0.60,4,3992.50,58.98,1411.80,2309.01,0.00,0.053516,0.000000,75,0,0.000000,0.000020,25223862,16401934,0,0,45442,0,1,1 +1773604368.536392,0.85,4,3992.50,59.02,1408.64,2310.68,0.00,25150.206467,26025.031998,1752644,2323622,0.000000,0.000030,25223862,16401937,0,0,45445,0,1,1 +1773604373.535052,16.12,4,3992.50,65.31,1159.20,2557.05,0.00,3519380237542.394531,3519380236666.405273,205,0,20.439668,0.017306,25226201,16403116,0,0,45447,0,1,1 +1773604378.535278,35.28,4,3992.50,65.36,1158.92,2559.15,0.00,25162.434725,26037.075266,1751155,2323333,118.164948,0.037318,25238515,16405954,0,0,45450,0,1,1 +1773604383.531782,30.33,4,3992.50,65.31,1161.32,2556.85,0.00,3520899082972.379395,3520899082097.267090,11,0,118.450286,0.028052,25250771,16408043,0,0,45452,0,1,1 +1773604388.535847,30.14,4,3992.50,65.17,1166.75,2551.51,0.00,25143.311759,26017.110276,1751155,2323357,119.669256,0.022082,25263154,16409733,0,0,45455,0,1,1 +1773604393.536435,30.20,4,3992.50,65.40,1157.68,2560.55,0.00,9.560399,10.679115,1752644,2323725,118.955367,0.029410,25275563,16412016,0,0,45457,0,1,1 +1773604398.536258,29.82,4,3992.50,65.44,1156.04,2562.11,0.00,0.000000,0.004199,1752644,2323733,119.570155,0.019663,25287846,16413512,0,0,45460,0,1,1 +1773604403.535890,30.52,4,3992.50,65.62,1153.65,2569.07,0.00,3518695414432.752930,3518695413557.003418,75,0,118.977217,0.033588,25300147,16416111,0,0,45462,0,1,1 +1773604408.531804,30.87,4,3992.50,65.58,1155.02,2567.49,0.00,1.603948,10.683928,251,357,119.462478,0.030457,25312294,16418407,0,0,45465,0,1,1 +1773604413.533169,30.36,4,3992.50,65.53,1156.69,2565.65,0.00,25166.633961,26031.504066,1753091,2323906,119.137954,0.041772,25324660,16421671,0,0,45467,0,1,1 +1773604418.534750,2.65,4,3992.50,59.60,1388.96,2333.61,0.00,0.133552,0.095770,1753102,2323933,52.658884,0.020297,25330043,16423178,0,0,45470,0,1,1 +1773604423.536572,0.70,4,3992.50,59.13,1407.56,2315.03,0.00,3517155667786.984375,3517155667785.876953,1751613,2323581,0.000000,0.000020,25330043,16423180,0,0,45472,0,1,1 +1773604428.535310,1.00,4,3992.50,59.14,1405.01,2315.55,0.00,3519325560733.976074,3519325559860.776367,11,0,0.000000,0.000030,25330043,16423183,0,0,45475,0,1,1 +1773604433.531826,0.70,4,3992.50,59.14,1405.02,2315.55,0.00,1.657307,10.682638,251,357,0.000000,0.000020,25330043,16423185,0,0,45477,0,1,1 +1773604438.534369,0.70,4,3992.50,59.14,1405.02,2315.55,0.00,0.355971,3516648988641.821777,246,2,0.000000,0.000030,25330043,16423188,0,0,45480,0,1,1 +1773604443.533177,0.75,4,3992.50,59.14,1405.02,2315.55,0.00,3519276431727.949219,3519276431729.781738,205,0,0.000025,0.000051,25330045,16423192,0,0,45482,0,1,1 +1773604448.536132,0.65,4,3992.50,58.95,1412.66,2307.91,0.00,1.475007,10.668888,251,357,0.000008,0.000038,25330046,16423196,0,0,45485,0,1,1 +1773604453.534054,0.80,4,3992.50,58.77,1419.55,2301.02,0.00,25174.543156,26039.275300,1751613,2323783,0.000025,0.000534,25330048,16423203,0,0,45487,0,1,1 +1773604458.536573,0.65,4,3992.50,58.78,1419.30,2301.25,0.00,3516665385712.848145,3516665384839.895996,11,0,0.000008,0.000199,25330049,16423208,0,0,45490,0,1,1 +1773604463.536021,3.36,4,3992.50,59.18,1409.23,2316.96,0.00,25178.076914,26052.722081,1753102,2324167,0.000126,0.000175,25330059,16423220,0,0,45492,0,1,1 +1773604468.532601,0.50,4,3992.50,59.05,1414.29,2311.91,0.00,3520845444104.232910,3520845443229.032715,75,0,0.000000,0.000030,25330059,16423223,0,0,45495,0,1,1 +1773604473.536240,0.75,4,3992.50,59.06,1414.05,2312.15,0.00,25147.375451,26020.247024,1751613,2323830,0.000000,0.000020,25330059,16423225,0,0,45497,0,1,1 +1773604478.532773,13.20,4,3992.50,65.19,1173.78,2552.35,0.00,3520878405182.806641,3520878404306.733887,246,2,10.426072,0.011429,25331307,16423966,0,0,45500,0,1,1 +1773604483.536193,36.92,4,3992.50,65.15,1175.22,2550.96,0.00,3516032374236.874512,3516032374238.831543,75,0,118.289231,0.034310,25343604,16426507,0,0,45502,0,1,1 +1773604488.536584,31.16,4,3992.50,65.62,1156.95,2569.22,0.00,25173.274770,26047.956719,1753102,2324331,119.966687,0.044905,25356116,16429960,0,0,45505,0,1,1 +1773604493.532389,30.98,4,3992.50,65.29,1166.76,2556.28,0.00,0.000000,0.041246,1753102,2324361,118.671449,0.045223,25368360,16433432,0,0,45507,0,1,1 +1773604498.535528,30.76,4,3992.50,65.02,1177.47,2545.65,0.00,3516229532359.341797,3516229531494.166016,251,357,119.703164,0.060685,25380733,16438163,0,0,45510,0,1,1 +1773604503.536026,31.00,4,3992.50,65.24,1168.98,2554.10,0.00,0.356117,3518086822200.998047,246,2,118.979903,0.096460,25393443,16445688,0,0,45512,0,1,1 +1773604508.531816,31.14,4,3992.50,65.19,1170.89,2552.18,0.00,0.000000,0.000000,246,2,119.487526,0.082744,25406113,16452159,0,0,45515,0,1,1 +1773604513.531827,31.27,4,3992.50,65.51,1158.16,2564.89,0.00,3518429832141.201660,3518429832143.214355,11,0,119.785201,0.076799,25418699,16458098,0,0,45517,0,1,1 +1773604518.536125,31.10,4,3992.50,65.23,1169.25,2553.86,0.00,25153.674394,26027.912397,1753102,2324484,118.677663,0.063400,25431168,16463043,0,0,45520,0,1,1 +1773604523.534580,4.97,4,3992.50,60.04,1366.69,2350.50,0.00,3519524340846.039062,3519524339968.766602,246,2,61.512928,0.026819,25437691,16464966,0,0,45522,0,1,1 +1773604528.534681,0.70,4,3992.50,59.35,1393.49,2323.71,0.00,3518366281431.827637,3518366281433.659180,205,0,0.000031,0.000699,25437693,16464975,0,0,45525,0,1,1 +1773604533.533578,0.70,4,3992.50,58.96,1408.73,2308.47,0.00,3519213336192.183105,0.000000,11,0,0.000000,0.000020,25437693,16464977,0,0,45527,0,1,1 +1773604538.536571,0.75,4,3992.50,58.92,1410.52,2306.68,0.00,2.011101,0.000195,246,2,0.000031,0.000055,25437695,16464982,0,0,45530,0,1,1 +1773604543.531842,0.60,4,3992.50,58.89,1411.38,2305.83,0.00,3521768291028.097656,3521768291030.112305,11,0,0.000008,0.000028,25437696,16464985,0,0,45532,0,1,1 +1773604548.531844,0.75,4,3992.50,58.89,1411.38,2305.82,0.00,0.180273,0.000000,205,0,0.000000,0.000066,25437696,16464989,0,0,45535,0,1,1 +1773604553.535892,0.95,4,3992.50,59.13,1394.60,2315.11,0.00,3515591330669.659668,0.000000,11,0,0.000000,0.000020,25437696,16464991,0,0,45537,0,1,1 +1773604558.531834,0.65,4,3992.50,59.13,1394.61,2315.11,0.00,0.000000,0.000000,11,0,0.000031,0.000055,25437698,16464996,0,0,45540,0,1,1 +1773604563.536032,0.70,4,3992.50,59.14,1394.39,2315.34,0.00,1.654763,10.666238,251,357,0.000000,0.000020,25437698,16464998,0,0,45542,0,1,1 +1773604568.536388,0.80,4,3992.50,59.14,1394.17,2315.55,0.00,0.000000,0.000000,251,357,0.000157,0.000210,25437710,16465013,0,0,45545,0,1,1 +1773604573.531840,0.70,4,3992.50,59.14,1394.17,2315.55,0.00,3521640285108.282227,3521640285099.074219,205,0,0.000008,0.000028,25437711,16465016,0,0,45547,0,1,1 +1773604578.535918,0.90,4,3992.50,59.19,1392.20,2317.52,0.00,25145.179016,26018.853099,1751625,2324359,0.000000,0.000030,25437711,16465019,0,0,45550,0,1,1 +1773604583.536353,0.75,4,3992.50,59.21,1391.40,2318.23,0.00,3518131553074.919922,3518131552200.789062,11,0,0.000000,0.000020,25437711,16465021,0,0,45552,0,1,1 +1773604588.535168,0.95,4,3992.50,59.01,1399.29,2310.34,0.00,1.656545,10.677724,251,357,0.002053,0.001984,25437737,16465045,0,0,45555,0,1,1 +1773604593.532740,31.99,4,3992.50,65.50,1145.02,2564.57,0.00,25176.443196,26042.175062,1751625,2324501,75.745140,0.037440,25445566,16467732,0,0,45557,0,1,1 +1773604598.536556,32.49,4,3992.50,64.86,1170.21,2539.38,0.00,3515753653254.309570,3515753652378.635254,246,2,122.877732,0.050028,25458151,16471592,0,0,45560,0,1,1 +1773604603.534264,31.79,4,3992.50,65.01,1164.44,2545.09,0.00,25184.964300,26062.845064,1753114,2324893,121.022876,0.040098,25470520,16474672,0,0,45562,0,1,1 +1773604608.535597,31.64,4,3992.50,64.96,1166.13,2543.38,0.00,3517499877627.533691,3517499876761.316895,251,357,120.131993,0.050296,25482725,16478638,0,0,45565,0,1,1 +1773604613.531801,31.42,4,3992.50,65.26,1152.63,2555.12,0.00,3521110403505.669434,3521110403496.644043,11,0,120.056170,0.043889,25494986,16482064,0,0,45567,0,1,1 +1773604618.533317,30.84,4,3992.50,65.58,1140.20,2567.69,0.00,1.655650,10.671958,251,357,119.729239,0.042248,25507262,16485362,0,0,45570,0,1,1 +1773604623.536004,30.80,4,3992.50,65.05,1161.00,2546.83,0.00,3516547736134.169434,3516547736124.975098,205,0,119.498361,0.051080,25519388,16489393,0,0,45572,0,1,1 +1773604628.531837,31.23,4,3992.50,65.23,1154.00,2553.84,0.00,3521371389480.535156,0.000000,75,0,119.462413,0.046848,25531534,16493057,0,0,45575,0,1,1 +1773604633.531890,16.10,4,3992.50,58.73,1408.55,2299.40,0.00,3518400243162.832031,0.000000,11,0,106.945831,0.042228,25542505,16496383,0,0,45577,0,1,1 +1773604638.535659,1.15,4,3992.50,58.93,1395.54,2307.07,0.00,0.000000,0.000000,11,0,0.003793,0.001694,25542575,16496432,0,0,45580,0,1,1 +1773604643.535796,0.70,4,3992.50,58.93,1395.69,2307.06,0.00,0.053514,0.000000,75,0,0.000000,0.000020,25542575,16496434,0,0,45582,0,1,1 +1773604648.534464,0.65,4,3992.50,58.74,1402.85,2299.91,0.00,1.959311,0.000195,246,2,0.000000,0.000030,25542575,16496437,0,0,45585,0,1,1 +1773604653.535815,0.60,4,3992.50,58.79,1401.12,2301.63,0.00,3517486253660.177734,10.672115,251,357,0.000000,0.000020,25542575,16496439,0,0,45587,0,1,1 +1773604658.532420,0.65,4,3992.50,58.79,1401.13,2301.63,0.00,25181.452442,26047.852629,1751636,2324783,0.000000,0.000664,25542575,16496445,0,0,45589,0,1,1 +1773604663.535831,0.70,4,3992.50,58.79,1401.13,2301.63,0.00,3516038216159.437988,3516038215294.216309,251,357,0.000000,0.000030,25542575,16496448,0,0,45592,0,1,1 +1773604668.536259,1.00,4,3992.50,58.83,1400.13,2303.31,0.00,25171.760366,26038.654092,1753125,2325163,0.000000,0.000030,25542575,16496451,0,0,45595,0,1,1 +1773604673.533329,0.65,4,3992.50,58.63,1407.68,2295.43,0.00,0.000000,0.019543,1753125,2325185,0.000000,0.000020,25542575,16496453,0,0,45597,0,1,1 +1773604678.536081,0.65,4,3992.50,58.63,1407.43,2295.68,0.00,3516501530363.397949,3516501529487.819824,75,0,0.000000,0.000030,25542575,16496456,0,0,45600,0,1,1 +1773604683.533489,0.65,4,3992.50,58.66,1406.47,2296.64,0.00,0.000000,0.000000,75,0,0.000126,0.000175,25542585,16496468,0,0,45602,0,1,1 +1773604688.535945,0.60,4,3992.50,58.66,1406.25,2296.86,0.00,3516709672380.499512,0.000000,11,0,0.000016,0.000046,25542587,16496473,0,0,45605,0,1,1 +1773604693.536357,0.70,4,3992.50,58.66,1406.26,2296.85,0.00,25163.937346,26038.774346,1751636,2324843,0.000000,0.000020,25542587,16496475,0,0,45607,0,1,1 +1773604698.535626,1.15,4,3992.50,58.71,1404.44,2298.54,0.00,3518951127939.020508,3518951127061.971191,246,2,0.001109,0.000635,25542609,16496491,0,0,45609,0,1,1 +1773604703.532863,29.55,4,3992.50,65.04,1156.31,2546.60,0.00,3520382530022.687988,3520382530024.701660,11,0,62.525214,0.025543,25549152,16498296,0,0,45612,0,1,1 +1773604708.536110,31.45,4,3992.50,64.82,1165.02,2537.87,0.00,1.655078,10.668268,251,357,119.091118,0.020360,25561581,16499810,0,0,45615,0,1,1 +1773604713.536616,30.71,4,3992.50,65.20,1150.31,2552.58,0.00,25171.366332,26038.346771,1753125,2325284,118.956294,0.024764,25574025,16501723,0,0,45617,0,1,1 +1773604718.536686,29.48,4,3992.50,65.06,1155.88,2547.07,0.00,3518387675067.299316,3518387674191.224609,11,0,119.369614,0.042192,25586296,16505011,0,0,45620,0,1,1 +1773604723.534664,29.82,4,3992.50,65.03,1156.87,2546.02,0.00,0.053537,0.000000,75,0,119.413933,0.027958,25598410,16507126,0,0,45622,0,1,1 +1773604728.534474,29.16,4,3992.50,64.98,1158.61,2544.29,0.00,0.126763,0.000000,205,0,118.967793,0.027705,25610419,16509282,0,0,45625,0,1,1 +1773604733.531896,29.11,4,3992.50,65.07,1153.52,2547.79,0.00,1.476640,10.680702,251,357,119.624919,0.027673,25622473,16511391,0,0,45627,0,1,1 +1773604738.535557,29.67,4,3992.50,64.91,1160.01,2541.30,0.00,25145.939473,26011.584052,1751636,2325099,118.873250,0.026137,25634406,16513423,0,0,45630,0,1,1 +1773604743.533559,20.41,4,3992.50,64.94,1158.89,2542.46,0.00,3519844259764.879395,3519844258898.254395,251,357,120.012612,0.023348,25646548,16515214,0,0,45632,0,1,1 +1773604748.536363,1.20,4,3992.50,58.82,1398.37,2302.97,0.00,3516464910921.391113,3516464910912.323730,75,0,8.611388,0.004827,25647511,16515510,0,0,45635,0,1,1 +1773604753.535740,0.90,4,3992.50,58.73,1401.89,2299.46,0.00,0.126774,0.000000,205,0,0.000033,0.000059,25647514,16515515,0,0,45637,0,1,1 +1773604758.531839,1.00,4,3992.50,58.73,1404.43,2299.22,0.00,3521184441914.258789,0.000000,11,0,0.000000,0.000063,25647514,16515519,0,0,45640,0,1,1 +1773604763.536282,0.70,4,3992.50,58.68,1405.61,2297.62,0.00,25143.802667,26018.436488,1751647,2325235,0.000000,0.000020,25647514,16515521,0,0,45642,0,1,1 +1773604768.536724,0.65,4,3992.50,58.71,1404.64,2298.59,0.00,3518125698718.624023,3518125697843.110840,205,0,0.000000,0.000030,25647514,16515524,0,0,45645,0,1,1 +1773604773.536056,0.70,4,3992.50,58.71,1404.64,2298.59,0.00,3518907533395.866211,0.000000,11,0,0.000000,0.000020,25647514,16515526,0,0,45647,0,1,1 +1773604778.536754,0.60,4,3992.50,58.71,1404.64,2298.59,0.00,0.000000,0.000000,11,0,0.000000,0.000030,25647514,16515529,0,0,45650,0,1,1 +1773604783.533899,0.70,4,3992.50,58.71,1404.42,2298.81,0.00,1.657098,10.681293,251,357,0.000308,0.000575,25647521,16515542,0,0,45652,0,1,1 +1773604788.531832,0.85,4,3992.50,58.71,1404.64,2298.59,0.00,3519892652814.448242,3519892652805.425781,11,0,0.000008,0.000682,25647522,16515550,0,0,45655,0,1,1 +1773604793.534208,0.75,4,3992.50,58.70,1405.13,2298.05,0.00,25154.189348,26029.328935,1751647,2325274,0.000330,0.000707,25647539,16515573,0,0,45657,0,1,1 +1773604798.536592,0.55,4,3992.50,58.71,1404.40,2298.79,0.00,3516760437355.113281,3516760436479.921387,75,0,0.000000,0.000030,25647539,16515576,0,0,45660,0,1,1 +1773604803.535638,1.10,4,3992.50,58.70,1405.02,2298.16,0.00,0.126782,0.000000,205,0,0.000000,0.000020,25647539,16515578,0,0,45662,0,1,1 +1773604808.535980,0.90,4,3992.50,58.69,1405.21,2297.96,0.00,1.831906,0.000195,246,2,0.000000,0.000030,25647539,16515581,0,0,45665,0,1,1 +1773604813.532289,28.36,4,3992.50,65.14,1152.64,2550.50,0.00,0.000000,0.000000,246,2,54.320841,0.028378,25653242,16517527,0,0,45667,0,1,1 +1773604818.536430,31.81,4,3992.50,65.44,1147.09,2562.31,0.00,0.000000,0.000000,246,2,118.069150,0.019529,25665514,16518937,0,0,45669,0,1,1 +1773604823.534626,28.38,4,3992.50,65.12,1159.51,2549.62,0.00,25173.225914,26051.455426,1751657,2325593,120.213421,0.033663,25677813,16521476,0,0,45672,0,1,1 +1773604828.536483,28.10,4,3992.50,65.27,1153.70,2555.42,0.00,3517131333349.285645,3517131332482.726074,251,357,118.128071,0.041949,25690050,16524707,0,0,45675,0,1,1 +1773604833.535682,28.51,4,3992.50,65.32,1151.83,2557.29,0.00,25178.095643,26046.242031,1753146,2325974,120.195463,0.049623,25702506,16528587,0,0,45677,0,1,1 +1773604838.531878,28.49,4,3992.50,65.12,1159.61,2549.54,0.00,3521116043159.331055,3521116042281.637207,11,0,118.261169,0.042958,25714679,16531940,0,0,45680,0,1,1 +1773604843.532292,28.56,4,3992.50,65.37,1149.71,2559.22,0.00,2.012138,0.000195,246,2,120.155469,0.022654,25726891,16533680,0,0,45682,0,1,1 +1773604848.535658,28.54,4,3992.50,65.08,1161.11,2548.00,0.00,3516070689375.138184,3516070689377.149414,11,0,118.892394,0.044437,25739246,16537155,0,0,45685,0,1,1 +1773604853.531791,22.02,4,3992.50,64.99,1162.39,2544.51,0.00,2.013862,0.000195,246,2,119.461188,0.045414,25751478,16540711,0,0,45687,0,1,1 +1773604858.531914,1.25,4,3992.50,59.93,1360.46,2346.42,0.00,3518350969876.894531,3518350969878.907227,11,0,17.827147,0.005862,25753370,16541046,0,0,45690,0,1,1 +1773604863.536380,0.80,4,3992.50,59.39,1381.56,2325.33,0.00,0.000000,0.000000,11,0,0.000000,0.000020,25753370,16541048,0,0,45692,0,1,1 +1773604868.535942,0.65,4,3992.50,59.07,1394.05,2312.84,0.00,25178.055920,26055.304575,1753159,2326096,0.000031,0.000055,25753372,16541053,0,0,45695,0,1,1 +1773604873.536567,0.55,4,3992.50,59.09,1393.48,2313.40,0.00,3517997245323.740723,3517997245322.654297,1751670,2325743,0.000000,0.000020,25753372,16541055,0,0,45697,0,1,1 +1773604878.534260,1.05,4,3992.50,59.07,1397.62,2312.73,0.00,3520061515399.178223,3520061514522.687988,11,0,0.000000,0.000030,25753372,16541058,0,0,45700,0,1,1 +1773604883.536589,1.45,4,3992.50,59.06,1398.02,2312.35,0.00,0.000000,0.000000,11,0,0.000000,0.000020,25753372,16541060,0,0,45702,0,1,1 +1773604888.532591,1.05,4,3992.50,59.06,1398.03,2312.34,0.00,0.000000,0.000000,11,0,0.000000,0.000030,25753372,16541063,0,0,45705,0,1,1 +1773604893.532664,0.75,4,3992.50,59.06,1398.03,2312.34,0.00,0.053515,0.000000,75,0,0.000000,0.000020,25753372,16541065,0,0,45707,0,1,1 +1773604898.536073,0.70,4,3992.50,59.06,1398.03,2312.34,0.00,0.000000,0.000000,75,0,0.000000,0.000030,25753372,16541068,0,0,45710,0,1,1 +1773604903.531820,0.60,4,3992.50,59.04,1398.78,2311.59,0.00,1.960457,0.000195,246,2,0.000126,0.000175,25753382,16541080,0,0,45712,0,1,1 +1773604908.534061,0.80,4,3992.50,59.00,1399.58,2309.86,0.00,3516860629802.476074,3516860629804.487793,11,0,0.000008,0.000038,25753383,16541084,0,0,45715,0,1,1 +1773604913.531812,0.80,4,3992.50,59.00,1399.61,2309.86,0.00,1.656898,10.679999,251,357,0.000000,0.000020,25753383,16541086,0,0,45717,0,1,1 +1773604918.531920,0.65,4,3992.50,59.00,1399.61,2309.86,0.00,25164.093839,26031.404792,1751670,2325867,0.000000,0.000674,25753383,16541093,0,0,45720,0,1,1 +1773604923.535871,22.83,4,3992.50,65.06,1162.09,2547.29,0.00,0.000000,0.024297,1751670,2325914,50.835711,0.023020,25758708,16542579,0,0,45722,0,1,1 +1773604928.532158,33.97,4,3992.50,65.02,1163.48,2545.84,0.00,3521051926736.829590,3521051925859.625000,205,0,121.860856,0.025566,25771233,16544492,0,0,45725,0,1,1 +1773604933.532372,29.14,4,3992.50,65.01,1164.14,2545.22,0.00,1.475816,10.674738,251,357,120.570850,0.037065,25783834,16547302,0,0,45727,0,1,1 +1773604938.533276,29.28,4,3992.50,65.19,1157.03,2552.34,0.00,3517801166509.644043,3517801166500.573730,75,0,120.144190,0.023153,25796158,16549084,0,0,45730,0,1,1 +1773604943.533991,29.95,4,3992.50,65.21,1155.95,2553.29,0.00,3517934131637.759277,0.000000,11,0,120.150367,0.021461,25808520,16550709,0,0,45732,0,1,1 +1773604948.532753,29.79,4,3992.50,65.00,1164.48,2544.73,0.00,25182.088071,26060.043760,1753159,2326489,119.797825,0.022597,25820913,16552440,0,0,45735,0,1,1 +1773604953.534454,29.60,4,3992.50,64.99,1164.86,2544.41,0.00,3517240519296.500488,3517240518419.060547,11,0,119.322976,0.026189,25832887,16554445,0,0,45737,0,1,1 +1773604958.535604,30.21,4,3992.50,65.21,1155.97,2553.29,0.00,25170.062971,26047.609079,1753159,2326514,119.346445,0.052757,25845116,16558551,0,0,45740,0,1,1 +1773604963.536110,21.70,4,3992.50,65.49,1145.39,2563.95,0.00,3518081586575.001465,3518081585697.162109,205,0,119.762134,0.049859,25857455,16562421,0,0,45742,0,1,1 +1773604968.536107,1.55,4,3992.50,60.40,1342.62,2364.68,0.00,0.000000,0.000000,205,0,13.621975,0.006129,25858917,16562845,0,0,45745,0,1,1 +1773604973.536387,0.90,4,3992.50,59.50,1376.74,2329.56,0.00,25164.857326,26041.799131,1751686,2326267,0.000771,0.000451,25858934,16562858,0,0,45747,0,1,1 +1773604978.535383,0.75,4,3992.50,59.17,1389.49,2316.80,0.00,3519143809495.808105,3519143808627.841797,251,357,0.000000,0.000030,25858934,16562861,0,0,45750,0,1,1 +1773604983.534970,0.65,4,3992.50,59.16,1390.09,2316.21,0.00,3518727660145.013672,3518727660135.994629,11,0,0.000000,0.000664,25858934,16562867,0,0,45752,0,1,1 +1773604988.531824,0.75,4,3992.50,58.96,1397.72,2308.57,0.00,2.013572,0.000195,246,2,0.000000,0.000030,25858934,16562870,0,0,45755,0,1,1 +1773604993.532345,0.60,4,3992.50,58.83,1403.15,2303.14,0.00,3518071182422.839844,3518071182424.852051,11,0,0.000000,0.000020,25858934,16562872,0,0,45757,0,1,1 +1773604998.536322,0.70,4,3992.50,58.84,1402.71,2303.58,0.00,0.053473,0.000000,75,0,0.001778,0.001558,25858959,16562890,0,0,45760,0,1,1 +1773605003.536588,0.95,4,3992.50,59.23,1386.51,2319.02,0.00,1.602551,10.674627,251,357,0.000008,0.000028,25858960,16562893,0,0,45762,0,1,1 +1773605008.535883,0.60,4,3992.50,59.16,1389.33,2316.20,0.00,25177.904412,26047.139543,1753175,2326709,0.001064,0.000431,25858982,16562909,0,0,45765,0,1,1 +1773605013.536049,0.65,4,3992.50,59.16,1389.34,2316.19,0.00,3518320394469.025391,3518320393590.923340,11,0,0.000038,0.000082,25858985,16562915,0,0,45767,0,1,1 +1773605018.535558,0.60,4,3992.50,59.14,1390.14,2315.39,0.00,25178.480147,26056.707276,1753175,2326720,0.000038,0.000051,25858988,16562919,0,0,45769,0,1,1 +1773605023.531847,0.65,4,3992.50,59.14,1389.91,2315.62,0.00,0.000000,0.002345,1753175,2326723,0.000000,0.000030,25858988,16562922,0,0,45772,0,1,1 +1773605028.536154,0.75,4,3992.50,59.34,1387.34,2323.22,0.00,3515409283649.098633,3515409282771.711426,11,0,0.000000,0.000030,25858988,16562925,0,0,45775,0,1,1 +1773605033.531762,29.49,4,3992.50,64.89,1167.00,2540.52,0.00,0.000000,0.000000,11,0,59.138631,0.026137,25865212,16564775,0,0,45777,0,1,1 +1773605038.531858,32.59,4,3992.50,65.22,1154.08,2553.49,0.00,2.012266,0.000195,246,2,118.372976,0.042796,25877546,16568014,0,0,45780,0,1,1 +1773605043.536611,29.05,4,3992.50,64.87,1167.58,2539.93,0.00,3515095694236.485840,3515095694238.496582,11,0,119.869810,0.074085,25890096,16573762,0,0,45782,0,1,1 +1773605048.534673,28.54,4,3992.50,65.17,1155.91,2551.61,0.00,2.013085,0.000195,246,2,118.828851,0.079728,25902469,16579999,0,0,45785,0,1,1 +1773605053.534812,29.71,4,3992.50,64.93,1165.24,2542.34,0.00,25173.296857,26053.577871,1753175,2326906,119.589381,0.103217,25915114,16588023,0,0,45787,0,1,1 +1773605058.534822,28.29,4,3992.50,64.95,1164.60,2542.96,0.00,0.000000,0.033203,1753175,2326916,119.187868,0.092496,25927682,16595248,0,0,45790,0,1,1 +1773605063.532730,30.48,4,3992.50,64.93,1162.79,2542.19,0.00,3519910321614.462402,3519910321613.530273,1751686,2326597,119.436561,0.078681,25940329,16601392,0,0,45792,0,1,1 +1773605068.534755,28.99,4,3992.50,65.07,1157.55,2547.49,0.00,3517012346352.509766,3517012345475.470703,11,0,119.943451,0.096264,25953079,16608915,0,0,45795,0,1,1 +1773605073.535942,21.07,4,3992.50,65.03,1158.88,2546.23,0.00,25170.038149,26048.371773,1753176,2327009,118.361363,0.086725,25965686,16615665,0,0,45797,0,1,1 +1773605078.535915,1.25,4,3992.50,60.17,1349.34,2355.77,0.00,3518456152408.180176,3518456151529.453125,205,0,12.825114,0.013091,25967149,16616592,0,0,45800,0,1,1 +1773605083.536563,0.80,4,3992.50,59.39,1380.06,2325.05,0.00,1.475688,10.673811,251,357,0.000308,0.000574,25967156,16616605,0,0,45802,0,1,1 +1773605088.535925,0.90,4,3992.50,59.14,1392.97,2315.47,0.00,3518886291965.233398,3518886291956.213379,11,0,0.000008,0.000038,25967157,16616609,0,0,45805,0,1,1 +1773605093.531903,0.75,4,3992.50,59.04,1396.81,2311.62,0.00,0.000000,0.000000,11,0,0.000205,0.000552,25967164,16616622,0,0,45807,0,1,1 +1773605098.536692,0.70,4,3992.50,59.08,1395.32,2313.11,0.00,25152.051302,26029.864379,1753186,2327136,0.000000,0.000030,25967164,16616625,0,0,45810,0,1,1 +1773605103.531879,0.75,4,3992.50,59.09,1395.09,2313.35,0.00,3521827360232.017090,3521827359350.502441,246,2,0.000000,0.000020,25967164,16616627,0,0,45812,0,1,1 +1773605108.534571,0.70,4,3992.50,59.04,1396.90,2311.54,0.00,25160.586176,26040.922795,1753186,2327184,0.000000,0.000030,25967164,16616630,0,0,45815,0,1,1 +1773605113.532578,0.60,4,3992.50,59.07,1395.69,2312.75,0.00,3519840163837.694336,3519840162958.491699,75,0,0.000308,0.001058,25967171,16616646,0,0,45817,0,1,1 +1773605118.536386,1.05,4,3992.50,59.07,1395.54,2312.71,0.00,1.957298,0.000195,246,2,0.000008,0.000199,25967172,16616651,0,0,45820,0,1,1 +1773605123.536555,0.60,4,3992.50,59.07,1395.55,2312.71,0.00,3518318237655.300781,10.674639,251,357,0.001252,0.001377,25967191,16616677,0,0,45822,0,1,1 +1773605128.535585,0.55,4,3992.50,59.08,1395.13,2313.13,0.00,3519119988541.720703,3519119988532.700195,11,0,0.000031,0.000055,25967193,16616682,0,0,45825,0,1,1 +1773605133.532277,0.65,4,3992.50,59.08,1395.14,2313.12,0.00,0.180393,0.000000,205,0,0.000000,0.000020,25967193,16616684,0,0,45827,0,1,1 +1773605138.531902,0.60,4,3992.50,59.07,1395.66,2312.60,0.00,3518700946778.823730,0.000000,11,0,0.000031,0.000045,25967195,16616688,0,0,45829,0,1,1 +1773605143.531784,25.40,4,3992.50,64.93,1166.13,2542.08,0.00,0.053517,0.000000,75,0,52.678013,0.032155,25972694,16619020,0,0,45832,0,1,1 +1773605148.532712,31.52,4,3992.50,65.51,1143.42,2564.72,0.00,25171.419625,26050.309576,1753186,2327368,118.736994,0.054008,25984487,16623237,0,0,45835,0,1,1 +1773605153.536725,28.36,4,3992.50,65.25,1154.01,2554.56,0.00,3515615211330.193848,3515615210451.719238,205,0,119.064886,0.047651,25996458,16626997,0,0,45837,0,1,1 +1773605158.536525,28.55,4,3992.50,65.24,1154.27,2554.11,0.00,0.000000,0.000000,205,0,119.165837,0.057886,26008381,16631536,0,0,45840,0,1,1 +1773605163.535588,28.98,4,3992.50,65.33,1150.61,2557.95,0.00,3519096741102.572266,0.000000,11,0,119.582722,0.046844,26020331,16635219,0,0,45842,0,1,1 +1773605168.535652,28.66,4,3992.50,65.05,1161.58,2546.89,0.00,25175.823204,26054.882914,1753186,2327447,118.758546,0.045084,26032164,16638724,0,0,45845,0,1,1 +1773605173.536616,28.74,4,3992.50,65.07,1160.82,2547.75,0.00,3517758814172.468750,3517758813293.567871,11,0,119.537983,0.051726,26044166,16642779,0,0,45847,0,1,1 +1773605178.535435,29.71,4,3992.50,65.51,1144.43,2564.66,0.00,0.000000,0.000000,11,0,118.789077,0.049765,26056089,16646625,0,0,45850,0,1,1 +1773605183.536039,22.20,4,3992.50,65.45,1146.02,2562.58,0.00,25173.108360,26052.294218,1753187,2327528,119.946447,0.050479,26068037,16650543,0,0,45852,0,1,1 +1773605188.533226,1.15,4,3992.50,58.97,1399.77,2308.81,0.00,3520417150098.198730,3520417149218.412109,11,0,19.038371,0.009672,26069966,16651229,0,0,45855,0,1,1 +1773605193.531974,0.70,4,3992.50,58.78,1407.18,2301.41,0.00,25182.590020,26062.216764,1753197,2327598,0.000619,0.000273,26069978,16651238,0,0,45857,0,1,1 +1773605198.531824,0.65,4,3992.50,58.79,1406.94,2301.66,0.00,3518542385309.459473,3518542384429.973633,75,0,0.000000,0.000030,26069978,16651241,0,0,45860,0,1,1 +1773605203.531834,0.65,4,3992.50,58.79,1406.70,2301.90,0.00,25176.176956,26055.641326,1753197,2327606,0.000000,0.000020,26069978,16651243,0,0,45862,0,1,1 +1773605208.531834,0.90,4,3992.50,59.00,1403.64,2310.01,0.00,3518437131634.230469,3518437130754.637695,205,0,0.000000,0.000030,26069978,16651246,0,0,45865,0,1,1 +1773605213.531893,0.85,4,3992.50,58.82,1410.98,2302.78,0.00,0.000000,0.000000,205,0,0.000000,0.000020,26069978,16651248,0,0,45867,0,1,1 +1773605218.531830,0.60,4,3992.50,58.82,1410.99,2302.78,0.00,3518481889380.836426,0.000000,11,0,0.000000,0.000030,26069978,16651251,0,0,45870,0,1,1 +1773605223.531842,0.65,4,3992.50,58.82,1411.00,2302.77,0.00,0.000000,0.000000,11,0,0.000000,0.000020,26069978,16651253,0,0,45872,0,1,1 +1773605228.536539,0.65,4,3992.50,58.63,1418.39,2295.38,0.00,1.654598,10.665176,251,357,0.000000,0.000030,26069978,16651256,0,0,45875,0,1,1 +1773605233.536527,0.70,4,3992.50,58.64,1417.91,2295.86,0.00,0.356153,3518445876212.096680,246,2,0.000101,0.000144,26069986,16651266,0,0,45877,0,1,1 +1773605238.535973,0.90,4,3992.50,58.59,1409.90,2294.03,0.00,3518826504398.967773,3518826504400.800293,205,0,0.000041,0.000077,26069990,16651273,0,0,45880,0,1,1 +1773605243.536052,0.60,4,3992.50,58.48,1414.18,2289.75,0.00,0.000000,0.000000,205,0,0.000000,0.000020,26069990,16651275,0,0,45882,0,1,1 +1773605248.535461,0.70,4,3992.50,58.51,1413.23,2290.71,0.00,3518852918425.379883,0.000000,75,0,0.000000,0.000674,26069990,16651282,0,0,45885,0,1,1 +1773605253.533099,24.31,4,3992.50,64.96,1160.49,2543.39,0.00,0.000000,0.000000,75,0,40.682640,0.025763,26074367,16652983,0,0,45887,0,1,1 +1773605258.536118,31.61,4,3992.50,65.25,1149.21,2554.66,0.00,1.957607,0.000195,246,2,119.093787,0.029880,26086591,16655244,0,0,45889,0,1,1 +1773605263.536310,28.05,4,3992.50,65.41,1142.94,2560.90,0.00,3518302007571.640137,3518302007573.652832,11,0,119.158994,0.017393,26098701,16656549,0,0,45892,0,1,1 +1773605268.535321,28.39,4,3992.50,65.63,1133.43,2569.39,0.00,0.000000,0.000000,11,0,119.586262,0.017643,26110748,16657865,0,0,45895,0,1,1 +1773605273.535877,28.18,4,3992.50,65.14,1152.46,2550.29,0.00,0.000000,0.000000,11,0,118.750200,0.026860,26122681,16659931,0,0,45897,0,1,1 +1773605278.535101,28.46,4,3992.50,64.90,1161.92,2540.79,0.00,0.000000,0.000000,11,0,119.982445,0.020624,26134821,16661528,0,0,45900,0,1,1 +1773605283.531908,28.55,4,3992.50,65.00,1157.92,2544.84,0.00,0.000000,0.000000,11,0,118.438688,0.023317,26146948,16663322,0,0,45902,0,1,1 +1773605288.533859,28.23,4,3992.50,65.15,1151.77,2550.94,0.00,1.655506,10.671032,251,357,120.118918,0.029440,26159217,16665628,0,0,45905,0,1,1 +1773605293.531876,24.29,4,3992.50,64.98,1158.68,2544.18,0.00,0.000000,0.000000,251,357,118.208634,0.043954,26171227,16669061,0,0,45907,0,1,1 +1773605298.531809,1.40,4,3992.50,58.74,1402.98,2299.85,0.00,3518484705610.461914,3518484705601.262695,205,0,31.446344,0.011155,26174466,16669843,0,0,45909,0,1,1 +1773605303.536303,1.10,4,3992.50,58.79,1408.78,2301.64,0.00,3515277392122.455566,0.000000,11,0,0.001527,0.000702,26174495,16669865,0,0,45912,0,1,1 +1773605308.534380,0.70,4,3992.50,58.81,1408.04,2302.38,0.00,0.000000,0.000000,11,0,0.001735,0.001353,26174520,16669883,0,0,45915,0,1,1 +1773605313.536417,0.70,4,3992.50,58.81,1407.80,2302.62,0.00,2.011485,0.000195,246,2,0.000000,0.000663,26174520,16669889,0,0,45917,0,1,1 +1773605318.536631,0.70,4,3992.50,58.81,1407.80,2302.61,0.00,3518287057537.118652,3518287057539.130859,11,0,0.000000,0.000030,26174520,16669892,0,0,45920,0,1,1 +1773605323.536213,0.65,4,3992.50,58.81,1407.80,2302.61,0.00,25178.538613,26058.685864,1753213,2328136,0.000000,0.000020,26174520,16669894,0,0,45922,0,1,1 +1773605328.535634,1.10,4,3992.50,58.81,1403.34,2302.55,0.00,3518845288828.479980,3518845287957.324219,251,357,0.000000,0.000030,26174520,16669897,0,0,45925,0,1,1 +1773605333.531878,0.75,4,3992.50,58.81,1403.28,2302.55,0.00,0.356420,3521082100677.971680,246,2,0.000000,0.000020,26174520,16669899,0,0,45927,0,1,1 +1773605338.531845,0.70,4,3992.50,58.82,1403.05,2302.78,0.00,25174.589252,26056.874665,1753213,2328207,0.000000,0.000030,26174520,16669902,0,0,45930,0,1,1 +1773605343.536285,0.70,4,3992.50,58.82,1403.05,2302.78,0.00,3515316047078.673828,3515316046199.187012,11,0,0.000075,0.000113,26174526,16669910,0,0,45932,0,1,1 +1773605348.533480,0.55,4,3992.50,58.82,1402.81,2303.02,0.00,25180.999474,26060.653572,1751724,2327853,0.000066,0.000108,26174532,16669919,0,0,45935,0,1,1 +1773605353.536279,0.90,4,3992.50,58.82,1402.81,2303.02,0.00,0.000000,0.003904,1751724,2327858,0.000050,0.000082,26174536,16669925,0,0,45937,0,1,1 +1773605358.534749,0.95,4,3992.50,58.87,1398.85,2304.70,0.00,3519513922688.747559,3519513921809.313477,11,0,0.000000,0.000030,26174536,16669928,0,0,45940,0,1,1 +1773605363.536175,21.24,4,3992.50,65.07,1155.82,2547.67,0.00,25169.259428,26049.337514,1753213,2328279,26.032839,0.018989,26177337,16671242,0,0,45942,0,1,1 +1773605368.533495,32.88,4,3992.50,65.00,1158.57,2544.90,0.00,3520324510644.435547,3520324509763.581055,75,0,118.226947,0.024072,26189344,16673011,0,0,45945,0,1,1 +1773605373.535650,27.85,4,3992.50,65.20,1150.85,2552.64,0.00,0.126703,0.000000,205,0,119.387888,0.016282,26201569,16674228,0,0,45947,0,1,1 +1773605378.535550,27.44,4,3992.50,65.09,1155.19,2548.25,0.00,0.000000,0.000000,205,0,118.889388,0.022904,26213462,16675939,0,0,45950,0,1,1 +1773605383.532175,28.55,4,3992.50,65.30,1147.08,2556.45,0.00,3520813470677.401367,0.000000,75,0,119.459054,0.062225,26225776,16680742,0,0,45952,0,1,1 +1773605388.533759,27.92,4,3992.50,65.59,1135.70,2567.82,0.00,3517323146019.168457,0.000000,11,0,118.946349,0.079354,26238256,16686929,0,0,45955,0,1,1 +1773605393.537368,28.57,4,3992.50,65.32,1147.02,2557.24,0.00,2.010853,0.000195,246,2,119.684931,0.035621,26250645,16689674,0,0,45957,0,1,1 +1773605398.536369,28.40,4,3992.50,64.92,1162.79,2541.63,0.00,25169.893094,26051.628828,1751724,2328130,118.593515,0.041452,26262941,16692876,0,0,45960,0,1,1 +1773605403.534547,27.79,4,3992.50,65.35,1145.90,2558.47,0.00,3519720003396.625488,3519720002525.779297,251,357,120.007257,0.045335,26275135,16696421,0,0,45962,0,1,1 +1773605408.531894,1.55,4,3992.50,61.19,1308.76,2395.61,0.00,25178.757978,26049.791056,1751747,2328231,46.290317,0.008392,26279896,16697034,0,0,45965,0,1,1 +1773605413.531814,0.85,4,3992.50,59.87,1360.37,2344.00,0.00,3518493293832.581543,3518493292952.797852,205,0,0.001163,0.001156,26279921,16697061,0,0,45967,0,1,1 +1773605418.531817,0.85,4,3992.50,59.51,1373.93,2329.76,0.00,25176.422268,26057.388513,1753236,2328632,0.000000,0.000030,26279921,16697064,0,0,45970,0,1,1 +1773605423.536047,0.65,4,3992.50,59.46,1375.64,2328.07,0.00,3515463006940.931641,3515463006939.870605,1751747,2328332,0.000204,0.000552,26279928,16697077,0,0,45972,0,1,1 +1773605428.536738,0.70,4,3992.50,59.47,1375.39,2328.32,0.00,0.000000,0.003125,1751747,2328336,0.000031,0.000055,26279930,16697082,0,0,45975,0,1,1 +1773605433.536879,0.65,4,3992.50,59.26,1383.43,2320.27,0.00,3518338185420.132324,3518338184540.249512,205,0,0.000000,0.000020,26279930,16697084,0,0,45977,0,1,1 +1773605438.536095,0.70,4,3992.50,59.28,1382.95,2320.75,0.00,3518988984948.317871,0.000000,75,0,0.000031,0.000055,26279932,16697089,0,0,45980,0,1,1 +1773605443.536057,0.80,4,3992.50,59.28,1382.95,2320.75,0.00,0.000000,0.000000,75,0,0.000000,0.000664,26279932,16697095,0,0,45982,0,1,1 +1773605448.536313,0.95,4,3992.50,59.27,1391.35,2320.72,0.00,1.958689,0.000195,246,2,0.000000,0.000030,26279932,16697098,0,0,45985,0,1,1 +1773605453.536088,0.85,4,3992.50,59.28,1390.60,2320.94,0.00,3518595849701.159180,3518595849703.117676,75,0,0.000000,0.000020,26279932,16697100,0,0,45987,0,1,1 +1773605458.536096,0.70,4,3992.50,59.28,1390.60,2320.94,0.00,3518431163514.721191,0.000000,11,0,0.000118,0.000030,26279939,16697103,0,0,45990,0,1,1 +1773605463.533303,0.70,4,3992.50,59.28,1390.60,2320.93,0.00,2.013430,0.000195,246,2,0.000019,0.000020,26279940,16697105,0,0,45992,0,1,1 +1773605468.531816,0.70,4,3992.50,59.28,1390.60,2320.93,0.00,3519483080294.123047,3519483080296.135742,11,0,0.000118,0.000030,26279947,16697108,0,0,45995,0,1,1 +1773605473.531846,25.98,4,3992.50,65.30,1154.79,2556.69,0.00,25166.907910,26046.808662,1751747,2328430,40.460866,0.023070,26284275,16698718,0,0,45997,0,1,1 +1773605478.531807,31.76,4,3992.50,65.14,1160.96,2550.45,0.00,3518464289261.518066,3518464288381.425293,205,0,118.163805,0.034585,26296283,16701351,0,0,46000,0,1,1 +1773605483.535397,30.44,4,3992.50,65.41,1150.34,2560.79,0.00,3515912737830.445801,0.000000,75,0,119.879655,0.019589,26308620,16702851,0,0,46002,0,1,1 +1773605488.534073,27.91,4,3992.50,65.22,1157.69,2553.42,0.00,1.603061,10.678024,251,357,118.395639,0.022134,26320838,16704552,0,0,46005,0,1,1 +1773605493.531807,28.00,4,3992.50,65.42,1149.76,2561.38,0.00,25186.370650,26058.982902,1753236,2328958,120.219724,0.024504,26333057,16706446,0,0,46007,0,1,1 +1773605498.536018,28.06,4,3992.50,65.33,1153.50,2557.65,0.00,3515476585582.320801,3515476585581.219727,1751747,2328613,118.064013,0.026569,26345074,16708521,0,0,46010,0,1,1 +1773605503.532041,5.11,4,3992.50,65.67,1139.91,2571.30,0.00,0.000000,0.004007,1751747,2328621,16.128235,0.004245,26346750,16708855,0,0,46012,0,1,1 +1773605508.536078,1.11,4,3992.50,65.92,1130.12,2581.01,0.00,3515598730785.155273,3515598729905.547852,205,0,0.000278,0.000030,26346760,16708858,0,0,46015,0,1,1 +1773605513.532161,0.76,4,3992.50,65.93,1129.93,2581.23,0.00,25196.170593,26078.435275,1753236,2329016,0.000279,0.000664,26346770,16708864,0,0,46017,0,1,1 +1773605518.532014,0.91,4,3992.50,65.93,1129.69,2581.47,0.00,3518541031335.656250,3518541030463.256348,251,357,0.000099,0.000030,26346776,16708867,0,0,46020,0,1,1 +1773605523.532675,0.71,4,3992.50,65.94,1129.47,2581.69,0.00,3517972490344.505859,3517972490335.308105,205,0,0.000037,0.000020,26346778,16708869,0,0,46022,0,1,1 +1773605528.532181,0.81,4,3992.50,65.94,1129.47,2581.69,0.00,3518784544586.631348,0.000000,11,0,0.000279,0.000030,26346788,16708872,0,0,46025,0,1,1 +1773605533.536205,0.61,4,3992.50,65.95,1128.98,2582.18,0.00,0.000000,0.000000,11,0,0.000077,0.000213,26346794,16708883,0,0,46027,0,1,1 +1773605538.535743,1.21,4,3992.50,65.95,1128.98,2582.17,0.00,25178.940148,26060.448485,1753236,2329039,0.000551,0.001181,26346811,16708911,0,0,46030,0,1,1 +1773605543.532702,7.79,4,3992.50,65.55,1147.51,2566.38,0.00,3520578119787.148438,3520578118903.171875,246,2,26.657409,0.016400,26349758,16710175,0,0,46032,0,1,1 +1773605548.531842,11.78,4,3992.50,65.76,1139.21,2574.64,0.00,3519043136027.372559,3519043136029.385742,11,0,46.322627,0.019546,26354412,16711621,0,0,46035,0,1,1 +1773605553.532604,15.98,4,3992.50,65.42,1152.55,2561.33,0.00,0.053507,0.000000,75,0,70.646497,0.042117,26362288,16714709,0,0,46037,0,1,1 +1773605558.535611,29.48,4,3992.50,65.34,1155.70,2558.19,0.00,3516323052701.146484,0.000000,11,0,122.895037,0.056710,26374746,16719103,0,0,46040,0,1,1 +1773605563.535990,5.45,4,3992.50,66.23,1120.93,2593.00,0.00,0.180260,0.000000,205,0,16.183118,0.005731,26376438,16719530,0,0,46042,0,1,1 +1773605568.531886,1.21,4,3992.50,66.27,1120.23,2594.66,0.00,3521327635035.261230,0.000000,11,0,0.000615,0.000030,26376450,16719533,0,0,46045,0,1,1 +1773605573.536145,0.76,4,3992.50,66.17,1124.29,2590.55,0.00,0.180120,0.000000,205,0,0.000278,0.000020,26376460,16719535,0,0,46047,0,1,1 +1773605578.536113,0.81,4,3992.50,66.18,1123.55,2591.28,0.00,3518460226649.822266,0.000000,11,0,0.000168,0.000674,26376461,16719542,0,0,46050,0,1,1 +1773605583.534223,0.81,4,3992.50,66.18,1123.56,2591.28,0.00,25186.136618,26068.122155,1753237,2329203,0.000235,0.000020,26376475,16719544,0,0,46052,0,1,1 +1773605588.535814,0.86,4,3992.50,66.18,1123.56,2591.27,0.00,3517317776220.394531,3517317775339.022949,11,0,0.000315,0.000030,26376487,16719547,0,0,46055,0,1,1 +1773605593.531981,0.76,4,3992.50,66.19,1123.32,2591.52,0.00,0.180412,0.000000,205,0,0.000213,0.000252,26376491,16719558,0,0,46057,0,1,1 +1773605598.536100,1.31,4,3992.50,66.38,1115.86,2599.11,0.00,3515541453169.394043,0.000000,11,0,0.002536,0.002412,26376529,16719599,0,0,46060,0,1,1 +1773605603.533473,11.48,4,3992.50,65.52,1149.41,2565.26,0.00,1.657023,10.680805,251,357,71.942256,0.043525,26384365,16722959,0,0,46062,0,1,1 +1773605608.535842,1.00,4,3992.50,65.61,1145.71,2568.96,0.00,3516771340321.741211,3516771340312.727051,11,0,20.622236,0.012120,26386502,16723745,0,0,46065,0,1,1 +1773605613.535883,1.26,4,3992.50,58.65,1418.38,2296.27,0.00,0.000000,0.000000,11,0,2.410421,0.005363,26386949,16723987,0,0,46067,0,1,1 +1773605618.534946,0.80,4,3992.50,58.65,1418.38,2296.27,0.00,2.012682,0.000195,246,2,0.000000,0.000030,26386949,16723990,0,0,46070,0,1,1 +1773605623.536770,0.65,4,3992.50,58.65,1418.38,2296.27,0.00,25156.027671,26038.295915,1751763,2328966,0.000000,0.000020,26386949,16723992,0,0,46072,0,1,1 +1773605628.532485,0.90,4,3992.50,59.06,1402.05,2312.46,0.00,3521455038288.420898,3521455037405.073730,246,2,0.000000,0.000030,26386949,16723995,0,0,46075,0,1,1 +1773605633.536545,0.75,4,3992.50,59.08,1401.58,2312.95,0.00,3515583034982.307617,3515583034984.318359,11,0,0.000000,0.000020,26386949,16723997,0,0,46077,0,1,1 +1773605638.536662,0.75,4,3992.50,59.08,1401.58,2312.95,0.00,25176.188992,26057.957857,1753252,2329388,0.000000,0.000030,26386949,16724000,0,0,46080,0,1,1 +1773605643.535546,0.65,4,3992.50,59.08,1401.58,2312.95,0.00,3519222661537.286133,3519222660653.287598,246,2,0.000235,0.000664,26386963,16724006,0,0,46082,0,1,1 +1773605648.536655,0.60,4,3992.50,59.08,1401.58,2312.95,0.00,25169.184332,26052.915747,1753252,2329433,0.000061,0.000030,26386968,16724009,0,0,46085,0,1,1 +1773605653.536590,1.05,4,3992.50,58.89,1408.98,2305.55,0.00,3518482963391.954102,3518482962510.027344,11,0,0.000091,0.000137,26386975,16724020,0,0,46087,0,1,1 +1773605658.533892,0.90,4,3992.50,59.29,1394.65,2321.26,0.00,25190.372814,26072.808857,1753252,2329456,0.000309,0.000597,26386997,16724057,0,0,46090,0,1,1 +1773605663.535935,0.75,4,3992.50,59.25,1396.29,2319.62,0.00,3517000311119.166016,3517000310237.513184,75,0,0.000172,0.000312,26387009,16724075,0,0,46092,0,1,1 +1773605668.531821,0.65,4,3992.50,59.14,1400.36,2315.55,0.00,3521334368423.828125,0.000000,11,0,0.000060,0.000165,26387013,16724085,0,0,46095,0,1,1 +1773605673.536002,0.65,4,3992.50,59.15,1400.14,2315.77,0.00,25155.742682,26036.993710,1753252,2329485,0.000089,0.000252,26387019,16724099,0,0,46097,0,1,1 +1773605678.536508,1.60,4,3992.50,59.12,1401.35,2314.55,0.00,3518081532941.506836,3518081532940.422363,1751763,2329154,0.000100,0.000167,26387026,16724109,0,0,46100,0,1,1 +1773605683.536646,2.16,4,3992.50,59.41,1389.70,2326.19,0.00,3518339736965.611816,3518339736093.751465,251,358,0.000064,0.000106,26387031,16724116,0,0,46102,0,1,1 +1773605688.532138,1.00,4,3992.50,59.11,1399.89,2314.40,0.00,25188.274398,26061.224115,1751764,2329387,0.000028,0.000069,26387033,16724121,0,0,46105,0,1,1 +1773605693.531838,1.60,4,3992.50,59.11,1399.91,2314.39,0.00,3518648432813.598633,3518648431941.383301,251,358,0.000085,0.000137,26387039,16724129,0,0,46107,0,1,1 +1773605698.532377,0.80,4,3992.50,59.11,1399.93,2314.38,0.00,0.000000,0.000000,251,358,0.000036,0.000077,26387042,16724135,0,0,46110,0,1,1 +1773605703.531819,0.85,4,3992.50,59.12,1399.69,2314.61,0.00,3518829991241.709961,3518829991232.636719,75,0,0.000000,0.000020,26387042,16724137,0,0,46112,0,1,1 +1773605708.536726,0.85,4,3992.50,59.12,1399.47,2314.83,0.00,3514987519989.313477,0.000000,11,0,0.000000,0.000673,26387042,16724144,0,0,46115,0,1,1 +1773605713.535766,0.75,4,3992.50,59.12,1399.47,2314.83,0.00,1.656470,10.677245,251,358,0.001308,0.001345,26387057,16724166,0,0,46117,0,1,1 +1773605718.531814,1.10,4,3992.50,59.13,1397.70,2315.04,0.00,3521220872717.709961,3521220872708.503418,205,0,0.000008,0.000038,26387058,16724170,0,0,46120,0,1,1 +1773605723.532678,0.70,4,3992.50,59.13,1397.40,2315.02,0.00,3517829147189.966797,0.000000,11,0,0.000205,0.000552,26387065,16724183,0,0,46122,0,1,1 +1773605728.533486,0.80,4,3992.50,59.13,1397.16,2315.26,0.00,25172.712491,26055.145282,1753253,2329990,0.000000,0.000030,26387065,16724186,0,0,46125,0,1,1 +1773605733.536395,0.75,4,3992.50,59.15,1396.43,2315.99,0.00,3516391561595.821777,3516391560713.706055,75,0,0.000000,0.000020,26387065,16724188,0,0,46127,0,1,1 +1773605738.536222,0.75,4,3992.50,59.15,1396.43,2315.99,0.00,1.602692,10.675565,251,358,0.000000,0.000030,26387065,16724191,0,0,46130,0,1,1 +1773605743.531889,0.55,4,3992.50,59.15,1396.43,2315.99,0.00,3521488563227.030273,3521488563218.003906,11,0,0.000000,0.000020,26387065,16724193,0,0,46132,0,1,1 +1773605748.534793,1.85,4,3992.50,59.31,1391.21,2322.11,0.00,0.000000,0.000000,11,0,0.000000,0.000030,26387065,16724196,0,0,46135,0,1,1 +1773605753.533228,0.75,4,3992.50,59.28,1392.20,2320.85,0.00,0.000000,0.000000,11,0,0.000000,0.000020,26387065,16724198,0,0,46137,0,1,1 +1773605758.531898,1.25,4,3992.50,59.19,1395.71,2317.33,0.00,0.053530,0.000000,75,0,0.000174,0.000030,26387076,16724201,0,0,46140,0,1,1 +1773605763.536416,0.70,4,3992.50,59.19,1395.71,2317.32,0.00,0.000000,0.000000,75,0,0.000085,0.000020,26387083,16724203,0,0,46142,0,1,1 +1773605768.533310,0.95,4,3992.50,59.19,1395.52,2317.52,0.00,25182.806272,26064.993258,1751764,2329745,0.000168,0.000227,26387094,16724216,0,0,46145,0,1,1 +1773605773.533369,2.76,4,3992.50,59.51,1383.00,2330.04,0.00,9.561410,10.688350,1753253,2330115,0.000130,0.000773,26387103,16724228,0,0,46147,0,1,1 +1773605778.531918,1.25,4,3992.50,59.04,1393.38,2311.58,0.00,3519459060756.385254,3519459059873.416504,11,0,0.000028,0.000069,26387105,16724233,0,0,46150,0,1,1 +1773605783.533293,1.60,4,3992.50,58.68,1407.40,2297.55,0.00,2.011751,0.000195,246,2,0.000136,0.000165,26387114,16724242,0,0,46152,0,1,1 +1773605788.536554,0.90,4,3992.50,58.69,1407.19,2297.75,0.00,3516144158281.333984,3516144158283.291016,75,0,0.000042,0.000088,26387117,16724248,0,0,46155,0,1,1 +1773605793.531834,0.80,4,3992.50,58.69,1407.27,2297.69,0.00,3521761381842.660645,0.000000,11,0,0.000019,0.000044,26387118,16724251,0,0,46157,0,1,1 +1773605798.536544,0.65,4,3992.50,58.69,1407.27,2297.69,0.00,0.180104,0.000000,205,0,0.000016,0.000046,26387120,16724256,0,0,46160,0,1,1 +1773605803.536569,0.60,4,3992.50,58.69,1407.27,2297.69,0.00,25166.930170,26049.040304,1751765,2330087,0.000000,0.000020,26387120,16724258,0,0,46162,0,1,1 +1773605808.536182,1.10,4,3992.50,58.89,1397.77,2305.71,0.00,3518709265095.102539,3518709264212.919434,205,0,0.000019,0.000054,26387121,16724262,0,0,46165,0,1,1 +1773605813.531835,0.60,4,3992.50,58.87,1398.71,2304.77,0.00,1.833625,0.000195,246,2,0.000000,0.000020,26387121,16724264,0,0,46167,0,1,1 +1773605818.531887,0.65,4,3992.50,58.87,1398.71,2304.77,0.00,25164.960854,26048.987053,1751765,2330140,0.000000,0.000020,26387121,16724266,0,0,46169,0,1,1 +1773605823.536418,0.70,4,3992.50,58.87,1398.71,2304.77,0.00,0.000000,0.006244,1751765,2330144,0.000018,0.000054,26387122,16724270,0,0,46172,0,1,1 +1773605828.532835,0.70,4,3992.50,58.87,1398.71,2304.77,0.00,3520960017764.399414,3520960016890.762695,251,358,0.000000,0.000030,26387122,16724273,0,0,46175,0,1,1 +1773605833.536243,0.75,4,3992.50,58.87,1398.71,2304.77,0.00,3516040898322.240234,3516040898313.227539,11,0,0.000000,0.000020,26387122,16724275,0,0,46177,0,1,1 +1773605838.531905,1.00,4,3992.50,58.93,1389.16,2307.41,0.00,1.657591,10.684466,251,358,0.000000,0.000674,26387122,16724282,0,0,46180,0,1,1 +1773605843.536090,0.70,4,3992.50,58.92,1389.68,2306.91,0.00,3515494711683.906250,3515494711674.895020,11,0,0.000000,0.000020,26387122,16724284,0,0,46182,0,1,1 +1773605848.536263,0.85,4,3992.50,58.75,1396.34,2300.24,0.00,1.656095,10.674827,251,358,0.000028,0.000069,26387124,16724289,0,0,46185,0,1,1 +1773605853.531939,0.95,4,3992.50,58.76,1396.13,2300.46,0.00,25187.357369,26061.301068,1751765,2330314,0.000044,0.000075,26387128,16724295,0,0,46187,0,1,1 +1773605858.534849,2.86,4,3992.50,58.82,1393.59,2303.00,0.00,3516390405385.484863,3516390404503.791016,11,0,0.000085,0.000146,26387134,16724304,0,0,46190,0,1,1 +1773605863.531832,1.60,4,3992.50,58.83,1393.10,2303.48,0.00,0.000000,0.000000,11,0,0.000085,0.000137,26387140,16724312,0,0,46192,0,1,1 +1773605868.536156,1.20,4,3992.50,59.08,1383.54,2313.02,0.00,0.053469,0.000000,75,0,0.000028,0.000069,26387142,16724317,0,0,46195,0,1,1 +1773605873.531799,0.80,4,3992.50,59.10,1382.83,2313.75,0.00,0.000000,0.000000,75,0,0.000000,0.000020,26387142,16724319,0,0,46197,0,1,1 +1773605878.531836,0.70,4,3992.50,58.90,1390.71,2305.88,0.00,25167.014260,26049.612569,1751766,2330631,0.000000,0.000030,26387142,16724322,0,0,46200,0,1,1 +1773605883.531820,0.75,4,3992.50,58.90,1390.46,2306.12,0.00,3518447952981.441895,3518447952098.887695,11,0,0.000000,0.000020,26387142,16724324,0,0,46202,0,1,1 +1773605888.533119,0.65,4,3992.50,58.91,1390.25,2306.34,0.00,0.000000,0.000000,11,0,0.000000,0.000030,26387142,16724327,0,0,46205,0,1,1 +1773605893.534499,0.70,4,3992.50,58.72,1397.67,2298.92,0.00,0.053501,0.000000,75,0,0.000000,0.000020,26387142,16724329,0,0,46207,0,1,1 +1773605898.536717,1.10,4,3992.50,58.89,1394.56,2305.54,0.00,3516877406229.437500,0.000000,11,0,0.000072,0.000128,26387147,16724337,0,0,46210,0,1,1 +1773605903.531813,0.65,4,3992.50,58.91,1393.78,2306.26,0.00,0.000000,0.000000,11,0,0.000016,0.000680,26387149,16724345,0,0,46212,0,1,1 +1773605908.536088,0.65,4,3992.50,58.91,1393.57,2306.46,0.00,0.000000,0.000000,11,0,0.000028,0.000069,26387151,16724350,0,0,46215,0,1,1 +1773605913.531813,0.70,4,3992.50,58.91,1393.58,2306.46,0.00,0.180428,0.000000,205,0,0.000000,0.000020,26387151,16724352,0,0,46217,0,1,1 +1773605918.534751,0.65,4,3992.50,58.92,1393.34,2306.70,0.00,3516370552812.963867,0.000000,11,0,0.000000,0.000030,26387151,16724355,0,0,46220,0,1,1 +1773605923.536582,0.70,4,3992.50,58.92,1393.34,2306.70,0.00,25167.602396,26051.080109,1753255,2331108,0.000000,0.000020,26387151,16724357,0,0,46222,0,1,1 +1773605928.536325,1.25,4,3992.50,59.10,1387.18,2313.95,0.00,3518617387584.720703,3518617386700.874512,11,0,0.000028,0.000069,26387153,16724362,0,0,46225,0,1,1 +1773605933.532019,2.76,4,3992.50,59.51,1371.26,2329.86,0.00,25198.516142,26083.224970,1753255,2331214,0.000093,0.000145,26387160,16724371,0,0,46227,0,1,1 +1773605938.535878,0.90,4,3992.50,59.44,1373.95,2327.19,0.00,3515723874588.051270,3515723873702.775391,246,2,0.000036,0.000077,26387163,16724377,0,0,46230,0,1,1 +1773605943.535935,2.46,4,3992.50,59.23,1381.96,2319.17,0.00,0.000000,0.000000,246,2,0.000085,0.000137,26387169,16724385,0,0,46232,0,1,1 +1773605948.535938,0.95,4,3992.50,59.24,1381.76,2319.38,0.00,3518435389146.404297,3518435389148.416992,11,0,0.000028,0.000069,26387171,16724390,0,0,46235,0,1,1 +1773605953.536174,0.85,4,3992.50,59.25,1381.27,2319.86,0.00,25166.062882,26049.019974,1751766,2331001,0.000000,0.000020,26387171,16724392,0,0,46237,0,1,1 +1773605958.536586,0.95,4,3992.50,59.17,1388.04,2316.64,0.00,3518147294711.528320,3518147293828.602539,11,0,0.000000,0.000030,26387171,16724395,0,0,46240,0,1,1 +1773605963.535958,0.65,4,3992.50,59.17,1388.05,2316.64,0.00,0.180296,0.000000,205,0,0.000000,0.000020,26387171,16724397,0,0,46242,0,1,1 +1773605968.531912,0.55,4,3992.50,59.17,1388.05,2316.64,0.00,3521286872259.044434,0.000000,11,0,0.000000,0.000674,26387171,16724404,0,0,46245,0,1,1 +1773605973.532453,0.75,4,3992.50,59.17,1388.05,2316.64,0.00,2.012087,0.000195,246,2,0.000000,0.000020,26387171,16724406,0,0,46247,0,1,1 +1773605978.531875,0.50,4,3992.50,59.17,1388.05,2316.63,0.00,3518844317353.526367,10.676235,251,358,0.000000,0.000030,26387171,16724409,0,0,46250,0,1,1 +1773605983.531842,0.65,4,3992.50,59.18,1387.82,2316.87,0.00,3518460375832.042480,3518460375823.023438,11,0,0.000000,0.000020,26387171,16724411,0,0,46252,0,1,1 +1773605988.532070,0.75,4,3992.50,59.20,1386.91,2317.81,0.00,25166.104157,26049.328311,1751766,2331222,0.000000,0.000030,26387171,16724414,0,0,46255,0,1,1 +1773605993.536079,0.70,4,3992.50,59.21,1385.69,2318.02,0.00,0.000000,0.003903,1751766,2331227,0.000000,0.000020,26387171,16724416,0,0,46257,0,1,1 +1773605998.531896,0.75,4,3992.50,59.21,1385.70,2318.02,0.00,3521383140454.526855,3521383139570.519043,11,0,0.000000,0.000030,26387171,16724419,0,0,46260,0,1,1 +1773606003.534279,0.85,4,3992.50,59.21,1385.52,2318.18,0.00,25155.278505,26038.134615,1751777,2331247,0.000000,0.000020,26387171,16724421,0,0,46262,0,1,1 +1773606008.535071,1.15,4,3992.50,59.06,1391.51,2312.17,0.00,3517879663814.806152,3517879662931.488770,205,0,0.000056,0.000108,26387175,16724428,0,0,46265,0,1,1 +1773606013.531897,2.66,4,3992.50,58.62,1408.63,2295.07,0.00,25183.077537,26067.222162,1751777,2331381,0.000164,0.000304,26387188,16724448,0,0,46267,0,1,1 +1773606018.532224,29.58,4,3992.50,65.82,1131.50,2577.16,0.00,3518206787611.725098,3518206786728.326172,75,0,63.089539,0.030709,26393756,16726460,0,0,46270,0,1,1 +1773606023.531853,31.77,4,3992.50,65.46,1145.79,2562.90,0.00,0.000000,0.000000,75,0,118.178154,0.030398,26405965,16728688,0,0,46272,0,1,1 +1773606028.534268,29.81,4,3992.50,65.59,1140.72,2567.93,0.00,0.000000,0.000000,75,0,120.117285,0.046126,26418271,16732210,0,0,46275,0,1,1 +1773606033.535166,28.76,4,3992.50,65.49,1144.58,2564.05,0.00,0.000000,0.000000,75,0,118.153379,0.052108,26430388,16736125,0,0,46277,0,1,1 +1773606038.531895,28.69,4,3992.50,65.27,1153.10,2555.52,0.00,1.603686,10.682184,251,358,120.258894,0.060849,26442806,16740807,0,0,46280,0,1,1 +1773606043.535841,28.84,4,3992.50,65.33,1150.99,2557.66,0.00,0.000000,0.000000,251,358,118.686684,0.068765,26455192,16746191,0,0,46282,0,1,1 +1773606048.536351,29.34,4,3992.50,65.31,1151.38,2557.21,0.00,3518078466198.651367,3518078466189.633789,11,0,119.566037,0.063109,26467597,16751100,0,0,46285,0,1,1 +1773606053.536829,29.74,4,3992.50,65.33,1154.45,2557.63,0.00,25174.429567,26059.239885,1753266,2332067,119.566663,0.056079,26479976,16755429,0,0,46287,0,1,1 +1773606058.532572,20.50,4,3992.50,65.26,1157.25,2554.89,0.00,3521434935488.295898,3521434934602.647461,11,0,118.874158,0.048315,26492246,16759149,0,0,46290,0,1,1 +1773606063.536231,1.15,4,3992.50,58.79,1410.34,2301.80,0.00,1.654941,10.667389,251,358,9.009970,0.004238,26493257,16759399,0,0,46292,0,1,1 +1773606068.536645,0.80,4,3992.50,58.84,1408.38,2303.76,0.00,3518145393497.363770,3518145393488.345703,11,0,0.000031,0.000055,26493259,16759404,0,0,46295,0,1,1 +1773606073.531909,0.65,4,3992.50,58.86,1407.64,2304.50,0.00,0.000000,0.000000,11,0,0.000000,0.000020,26493259,16759406,0,0,46297,0,1,1 +1773606078.536354,1.20,4,3992.50,58.95,1406.35,2308.17,0.00,25154.537417,26038.947087,1753277,2332200,0.000000,0.000030,26493259,16759409,0,0,46300,0,1,1 +1773606083.536134,0.75,4,3992.50,58.97,1405.66,2308.86,0.00,3518591858189.509766,3518591857304.274902,11,0,0.000000,0.000020,26493259,16759411,0,0,46302,0,1,1 +1773606088.533360,0.70,4,3992.50,58.92,1407.75,2306.77,0.00,25190.880469,26076.598412,1753277,2332234,0.000000,0.000030,26493259,16759414,0,0,46305,0,1,1 +1773606093.536274,0.65,4,3992.50,58.90,1408.64,2305.88,0.00,3516387605149.755859,3516387604274.059082,251,358,0.000000,0.000020,26493259,16759416,0,0,46307,0,1,1 +1773606098.536345,0.90,4,3992.50,58.90,1408.47,2306.05,0.00,25174.889602,26051.205709,1753277,2332264,0.000000,0.000664,26493259,16759422,0,0,46309,0,1,1 +1773606103.532840,0.70,4,3992.50,58.90,1408.47,2306.05,0.00,3520905665317.730957,3520905664431.762207,11,0,0.000000,0.000030,26493259,16759425,0,0,46312,0,1,1 +1773606108.536065,0.95,4,3992.50,58.94,1406.00,2307.73,0.00,0.180157,0.000000,205,0,0.000126,0.000185,26493269,16759438,0,0,46315,0,1,1 +1773606113.536238,0.70,4,3992.50,58.96,1405.27,2308.47,0.00,3518315188786.630859,0.000000,11,0,0.000016,0.000036,26493271,16759442,0,0,46317,0,1,1 +1773606118.536584,0.70,4,3992.50,58.97,1405.03,2308.71,0.00,1.656038,10.674457,251,358,0.000000,0.000030,26493271,16759445,0,0,46320,0,1,1 +1773606123.536309,0.70,4,3992.50,58.97,1405.03,2308.71,0.00,3518630862360.863281,3518630862351.844238,11,0,0.000000,0.000020,26493271,16759447,0,0,46322,0,1,1 +1773606128.532213,27.28,4,3992.50,65.51,1148.74,2564.91,0.00,1.657510,10.683945,251,358,50.717587,0.024930,26498689,16761202,0,0,46325,0,1,1 +1773606133.535550,32.58,4,3992.50,65.74,1139.60,2573.93,0.00,3516090735181.328613,3516090735172.135742,205,0,119.486349,0.044632,26510871,16764615,0,0,46327,0,1,1 +1773606138.532403,29.15,4,3992.50,65.25,1159.04,2554.62,0.00,3520653190384.332031,0.000000,11,0,118.237554,0.026951,26522952,16766669,0,0,46330,0,1,1 +1773606143.536461,29.72,4,3992.50,65.44,1151.51,2562.26,0.00,25146.931081,26030.684419,1751788,2332130,119.867383,0.045801,26535195,16770253,0,0,46332,0,1,1 +1773606148.533939,30.21,4,3992.50,65.08,1165.82,2547.90,0.00,3520212637459.658203,3520212636572.728516,246,2,118.623261,0.032791,26547352,16772800,0,0,46335,0,1,1 +1773606153.536252,30.45,4,3992.50,65.14,1163.20,2550.48,0.00,3516810351403.403809,3516810351405.415527,11,0,119.908458,0.034729,26559536,16775494,0,0,46337,0,1,1 +1773606158.535737,30.41,4,3992.50,65.33,1155.81,2557.85,0.00,1.656323,10.676295,251,358,118.775903,0.029168,26571656,16777734,0,0,46340,0,1,1 +1773606163.536536,30.23,4,3992.50,65.60,1145.11,2568.52,0.00,3517875697523.482422,3517875697514.464844,11,0,119.543927,0.022795,26583869,16779519,0,0,46342,0,1,1 +1773606168.536230,23.98,4,3992.50,65.11,1165.48,2549.32,0.00,0.180284,0.000000,205,0,119.172925,0.033659,26596150,16782086,0,0,46345,0,1,1 +1773606173.536545,1.50,4,3992.50,59.60,1381.47,2333.50,0.00,25165.713999,26050.499560,1751799,2332264,21.030681,0.010067,26598374,16782802,0,0,46347,0,1,1 +1773606178.535870,0.65,4,3992.50,59.53,1384.09,2330.90,0.00,3518911620977.036133,3518911620090.243164,246,2,0.000000,0.000030,26598374,16782805,0,0,46350,0,1,1 +1773606183.535403,0.70,4,3992.50,59.52,1384.55,2330.43,0.00,3518765823606.440918,3518765823608.453613,11,0,0.000000,0.000020,26598374,16782807,0,0,46352,0,1,1 +1773606188.535937,0.60,4,3992.50,59.52,1384.80,2330.18,0.00,0.053510,0.000000,75,0,0.000000,0.000030,26598374,16782810,0,0,46355,0,1,1 +1773606193.535681,0.60,4,3992.50,59.52,1384.81,2330.18,0.00,3518616649183.851562,0.000000,11,0,0.000000,0.000020,26598374,16782812,0,0,46357,0,1,1 +1773606198.534737,1.05,4,3992.50,59.52,1383.99,2330.34,0.00,0.000000,0.000000,11,0,0.001736,0.001539,26598396,16782828,0,0,46360,0,1,1 +1773606203.536421,0.70,4,3992.50,59.50,1384.40,2329.58,0.00,1.655595,10.671602,251,358,0.000016,0.000036,26598398,16782832,0,0,46362,0,1,1 +1773606208.534750,0.65,4,3992.50,59.51,1383.97,2330.01,0.00,3519613606645.250488,3519613606636.175293,75,0,0.001065,0.000431,26598420,16782848,0,0,46365,0,1,1 +1773606213.534727,0.75,4,3992.50,59.52,1383.75,2330.23,0.00,0.126758,0.000000,205,0,0.000000,0.000020,26598420,16782850,0,0,46367,0,1,1 +1773606218.534152,0.70,4,3992.50,59.52,1383.75,2330.23,0.00,25170.190825,26055.421317,1751799,2332407,0.000076,0.000113,26598426,16782858,0,0,46369,0,1,1 +1773606223.531897,1.50,4,3992.50,59.51,1384.00,2329.97,0.00,9.565839,10.684898,1753288,2332772,0.000000,0.000030,26598426,16782861,0,0,46372,0,1,1 +1773606228.531792,1.10,4,3992.50,59.49,1391.13,2329.14,0.00,3518510725340.436035,3518510725339.355957,1751799,2332428,0.000000,0.000030,26598426,16782864,0,0,46375,0,1,1 +1773606233.533586,0.65,4,3992.50,59.49,1388.09,2329.14,0.00,0.000000,0.013276,1751799,2332444,0.000000,0.000503,26598426,16782869,0,0,46377,0,1,1 +1773606238.535753,24.01,4,3992.50,65.56,1150.26,2566.88,0.00,3516912898801.543945,3516912897916.927246,11,0,44.847796,0.021410,26603188,16784335,0,0,46380,0,1,1 +1773606243.532389,32.73,4,3992.50,65.43,1155.55,2561.62,0.00,0.053552,0.000000,75,0,118.644549,0.030205,26615393,16786647,0,0,46382,0,1,1 +1773606248.532172,29.91,4,3992.50,65.55,1150.66,2566.46,0.00,1.602706,10.675657,251,358,118.970712,0.029701,26627649,16788920,0,0,46385,0,1,1 +1773606253.533382,29.74,4,3992.50,65.69,1145.19,2571.96,0.00,3517586415179.924805,3517586415170.908691,11,0,119.537016,0.023412,26639947,16790694,0,0,46387,0,1,1 +1773606258.531897,29.53,4,3992.50,65.70,1144.85,2572.35,0.00,0.053532,0.000000,75,0,118.798696,0.017179,26652097,16792010,0,0,46389,0,1,1 +1773606263.532082,29.31,4,3992.50,65.67,1146.03,2571.12,0.00,0.126753,0.000000,205,0,119.960342,0.022890,26664278,16793784,0,0,46392,0,1,1 +1773606268.533320,29.48,4,3992.50,65.56,1150.24,2566.95,0.00,1.831578,0.000195,246,2,119.141665,0.036388,26676589,16796571,0,0,46395,0,1,1 +1773606273.536226,30.03,4,3992.50,65.33,1159.24,2557.93,0.00,3516393037479.003418,3516393037481.014648,11,0,119.300344,0.032358,26688853,16799041,0,0,46397,0,1,1 +1773606278.532599,24.43,4,3992.50,65.44,1155.00,2562.24,0.00,25195.316730,26082.455303,1753289,2333082,119.459934,0.045407,26701124,16802542,0,0,46400,0,1,1 +1773606283.536692,1.40,4,3992.50,60.36,1354.19,2363.05,0.00,3515558922492.873047,3515558921606.922852,205,0,26.818902,0.010619,26703955,16803329,0,0,46402,0,1,1 +1773606288.533230,1.05,4,3992.50,59.69,1384.97,2337.11,0.00,25194.438900,26081.753206,1753299,2333136,0.001550,0.000711,26703986,16803352,0,0,46405,0,1,1 +1773606293.533580,0.80,4,3992.50,59.46,1392.91,2328.07,0.00,3518190618354.935547,3518190617466.465820,246,2,0.000308,0.000574,26703993,16803365,0,0,46407,0,1,1 +1773606298.534457,0.75,4,3992.50,59.42,1394.54,2326.43,0.00,25170.744402,26059.203043,1753299,2333204,0.000205,0.000562,26704000,16803379,0,0,46410,0,1,1 +1773606303.536402,0.75,4,3992.50,59.45,1393.43,2327.54,0.00,3517068844000.916016,3517068843999.823242,1751810,2332851,0.000000,0.000663,26704000,16803385,0,0,46412,0,1,1 +1773606308.531860,0.85,4,3992.50,59.46,1393.17,2327.81,0.00,3521636514421.594238,3521636513535.279785,11,0,0.000000,0.000030,26704000,16803388,0,0,46415,0,1,1 +1773606313.531819,0.60,4,3992.50,59.27,1400.57,2320.41,0.00,0.000000,0.000000,11,0,0.000000,0.000020,26704000,16803390,0,0,46417,0,1,1 +1773606318.536546,1.10,4,3992.50,59.46,1393.64,2328.01,0.00,2.010404,0.000195,246,2,0.000307,0.000584,26704007,16803404,0,0,46420,0,1,1 +1773606323.536090,0.70,4,3992.50,59.46,1393.63,2328.01,0.00,25167.892404,26055.685673,1751810,2332935,0.001135,0.001230,26704017,16803421,0,0,46422,0,1,1 +1773606328.536329,0.75,4,3992.50,59.47,1393.39,2328.25,0.00,3518269073079.140137,3518269072193.428711,75,0,0.000063,0.000123,26704022,16803430,0,0,46425,0,1,1 +1773606333.536463,0.55,4,3992.50,59.47,1393.16,2328.49,0.00,3518343188901.777832,0.000000,11,0,0.000063,0.000082,26704027,16803436,0,0,46427,0,1,1 +1773606338.536747,0.70,4,3992.50,59.47,1393.16,2328.49,0.00,0.053513,0.000000,75,0,0.000031,0.000055,26704029,16803441,0,0,46430,0,1,1 +1773606343.533994,0.65,4,3992.50,59.30,1400.08,2321.57,0.00,3520375953848.825684,0.000000,11,0,0.000031,0.000045,26704031,16803445,0,0,46432,0,1,1 +1773606348.532941,23.48,4,3992.50,65.53,1154.47,2565.58,0.00,0.053527,0.000000,75,0,29.052224,0.021124,26707170,16804807,0,0,46435,0,1,1 +1773606353.532087,33.43,4,3992.50,65.35,1161.54,2558.48,0.00,25181.421650,26068.606497,1753299,2333462,118.184868,0.053435,26719265,16808909,0,0,46437,0,1,1 +1773606358.533160,29.20,4,3992.50,65.37,1160.55,2559.45,0.00,3517681882531.668457,3517681881653.896484,251,358,118.137655,0.045350,26731283,16812398,0,0,46440,0,1,1 +1773606363.536594,29.18,4,3992.50,65.46,1157.22,2562.82,0.00,3516022484101.624512,3516022484092.558594,75,0,119.882328,0.043199,26743474,16815755,0,0,46442,0,1,1 +1773606368.531942,29.81,4,3992.50,65.51,1155.09,2564.98,0.00,1.960613,0.000195,246,2,118.473755,0.034775,26755618,16818401,0,0,46445,0,1,1 +1773606373.537211,30.02,4,3992.50,65.53,1154.06,2565.78,0.00,3514732991713.444824,3514732991715.274902,205,0,120.037667,0.041675,26767824,16821658,0,0,46447,0,1,1 +1773606378.531807,29.83,4,3992.50,65.31,1163.23,2556.84,0.00,25194.660006,26081.868818,1751810,2333192,118.290613,0.041993,26779876,16824905,0,0,46450,0,1,1 +1773606383.534541,30.62,4,3992.50,65.31,1163.38,2556.85,0.00,3516514787367.836426,3516514786482.197266,75,0,120.098231,0.037647,26792059,16827849,0,0,46452,0,1,1 +1773606388.536344,29.45,4,3992.50,65.48,1156.79,2563.54,0.00,3517169116068.229980,0.000000,11,0,119.031960,0.043025,26804176,16831211,0,0,46455,0,1,1 +1773606393.535776,1.50,4,3992.50,61.71,1304.38,2415.95,0.00,25170.602675,26056.777614,1751821,2333267,44.157181,0.020233,26808739,16832696,0,0,46457,0,1,1 +1773606398.531854,0.65,4,3992.50,60.35,1357.66,2362.66,0.00,3521199278628.337891,3521199277741.388184,205,0,0.000000,0.000030,26808739,16832699,0,0,46460,0,1,1 +1773606403.531862,0.60,4,3992.50,59.53,1389.43,2330.89,0.00,0.000000,0.000000,205,0,0.000000,0.000020,26808739,16832701,0,0,46462,0,1,1 +1773606408.531815,0.70,4,3992.50,59.35,1396.61,2323.71,0.00,0.000000,0.000000,205,0,0.000000,0.000030,26808739,16832704,0,0,46465,0,1,1 +1773606413.536359,0.95,4,3992.50,59.57,1382.68,2332.36,0.00,3515242028937.768066,0.000000,11,0,0.000000,0.000020,26808739,16832706,0,0,46467,0,1,1 +1773606418.535351,0.60,4,3992.50,59.55,1383.49,2331.57,0.00,0.000000,0.000000,11,0,0.000000,0.000030,26808739,16832709,0,0,46470,0,1,1 +1773606423.536399,0.70,4,3992.50,59.53,1384.36,2330.71,0.00,0.053504,0.000000,75,0,0.000000,0.000020,26808739,16832711,0,0,46472,0,1,1 +1773606428.536238,0.70,4,3992.50,59.54,1384.11,2330.96,0.00,1.602688,10.675538,251,358,0.000000,0.000030,26808739,16832714,0,0,46475,0,1,1 +1773606433.531894,0.70,4,3992.50,59.54,1384.11,2330.96,0.00,25197.542547,26076.737381,1753310,2333752,0.000000,0.000664,26808739,16832720,0,0,46477,0,1,1 +1773606438.536599,1.00,4,3992.50,59.54,1384.36,2331.14,0.00,3515129657606.046875,3515129656719.250488,205,0,0.000126,0.000185,26808749,16832733,0,0,46480,0,1,1 +1773606443.532162,0.65,4,3992.50,59.52,1384.86,2330.29,0.00,25189.916598,26077.269614,1751821,2333423,0.000016,0.000036,26808751,16832737,0,0,46482,0,1,1 +1773606448.532644,0.60,4,3992.50,59.52,1384.62,2330.52,0.00,3518097835036.139648,3518097834158.857910,251,358,0.000000,0.000030,26808751,16832740,0,0,46485,0,1,1 +1773606453.536244,0.80,4,3992.50,59.52,1384.62,2330.52,0.00,3515905526259.415039,3515905526250.222168,205,0,0.000000,0.000020,26808751,16832742,0,0,46487,0,1,1 +1773606458.535229,18.10,4,3992.50,65.43,1153.33,2561.71,0.00,25172.674862,26059.440926,1751821,2333465,24.243289,0.017145,26811405,16833908,0,0,46490,0,1,1 +1773606463.535902,33.84,4,3992.50,65.16,1163.70,2551.34,0.00,3517964151221.410645,3517964150344.141602,251,358,119.361056,0.050849,26823856,16837800,0,0,46492,0,1,1 +1773606468.534885,29.71,4,3992.50,65.32,1157.20,2557.56,0.00,0.000000,0.000000,251,358,119.424731,0.112778,26836761,16846528,0,0,46495,0,1,1 +1773606473.536606,30.46,4,3992.50,65.37,1159.15,2559.30,0.00,0.356030,3517226391025.399414,246,2,118.956809,0.111845,26849558,16855250,0,0,46497,0,1,1 +1773606478.534530,28.56,4,3992.50,65.26,1163.29,2555.11,0.00,3519898498262.820312,3519898498264.652832,205,0,120.048332,0.111006,26862473,16863948,0,0,46500,0,1,1 +1773606483.532243,29.36,4,3992.50,65.47,1155.08,2563.30,0.00,25179.082738,26066.269058,1751821,2333651,118.450251,0.109267,26875163,16872463,0,0,46502,0,1,1 +1773606488.536685,29.55,4,3992.50,65.56,1151.53,2566.88,0.00,3515313826677.569824,3515313825791.576660,205,0,120.091896,0.111828,26888006,16881211,0,0,46505,0,1,1 +1773606493.535756,29.40,4,3992.50,65.25,1163.81,2554.59,0.00,1.476153,10.677179,251,358,119.019105,0.111889,26900777,16889894,0,0,46507,0,1,1 +1773606498.535677,30.32,4,3992.50,65.17,1166.98,2551.50,0.00,3518492703955.867188,3518492703946.848633,11,0,119.400173,0.110768,26913620,16898479,0,0,46510,0,1,1 +1773606503.536596,2.00,4,3992.50,59.31,1396.07,2321.95,0.00,25172.816357,26060.518984,1753321,2334096,46.672546,0.046240,26918710,16901953,0,0,46512,0,1,1 +1773606508.536646,0.90,4,3992.50,59.29,1396.57,2321.46,0.00,0.000000,0.038476,1753321,2334144,0.001734,0.001353,26918735,16901971,0,0,46515,0,1,1 +1773606513.534945,0.65,4,3992.50,59.28,1397.16,2320.87,0.00,3519634815477.849609,3519634814587.630371,246,2,0.000000,0.000020,26918735,16901973,0,0,46517,0,1,1 +1773606518.533500,0.65,4,3992.50,59.28,1397.16,2320.87,0.00,25173.142952,26062.232043,1751832,2333793,0.000000,0.000030,26918735,16901976,0,0,46520,0,1,1 +1773606523.532010,0.70,4,3992.50,59.28,1397.16,2320.86,0.00,3519485928579.084961,3519485927692.000000,11,0,0.000000,0.000020,26918735,16901978,0,0,46522,0,1,1 +1773606528.531977,0.95,4,3992.50,59.55,1381.22,2331.68,0.00,25177.608397,26065.615365,1753321,2334185,0.000000,0.000030,26918735,16901981,0,0,46525,0,1,1 +1773606533.536133,0.65,4,3992.50,59.30,1391.28,2321.68,0.00,0.000000,0.025760,1753321,2334214,0.000000,0.000020,26918735,16901983,0,0,46527,0,1,1 +1773606538.535444,0.60,4,3992.50,59.30,1391.36,2321.59,0.00,3518922350902.182129,3518922350014.033203,11,0,0.000000,0.000020,26918735,16901985,0,0,46529,0,1,1 +1773606543.536054,0.70,4,3992.50,59.20,1395.34,2317.61,0.00,0.053509,0.000000,75,0,0.000025,0.000061,26918737,16901990,0,0,46532,0,1,1 +1773606548.531825,0.80,4,3992.50,59.20,1395.11,2317.84,0.00,3521415398769.689453,0.000000,11,0,0.000117,0.000170,26918747,16902003,0,0,46535,0,1,1 +1773606553.536602,0.70,4,3992.50,59.22,1394.28,2318.67,0.00,0.180101,0.000000,205,0,0.000050,0.000082,26918751,16902009,0,0,46537,0,1,1 +1773606558.536261,1.20,4,3992.50,59.42,1391.93,2326.49,0.00,3518677229820.368164,0.000000,11,0,0.000000,0.000030,26918751,16902012,0,0,46540,0,1,1 +1773606563.536197,0.65,4,3992.50,59.33,1393.54,2323.02,0.00,0.180276,0.000000,205,0,0.000000,0.000020,26918751,16902014,0,0,46542,0,1,1 +1773606568.535566,14.56,4,3992.50,65.33,1158.46,2557.99,0.00,25180.442080,26069.011072,1753321,2334375,16.830521,0.015922,26920665,16903046,0,0,46545,0,1,1 +1773606573.536221,35.22,4,3992.50,65.23,1162.51,2553.87,0.00,3517976261270.388184,3517976260382.227539,11,0,118.148194,0.060851,26932735,16907758,0,0,46547,0,1,1 +1773606578.532596,29.57,4,3992.50,65.19,1164.27,2552.27,0.00,25195.708253,26084.677366,1753321,2334452,118.649492,0.058269,26944783,16912269,0,0,46550,0,1,1 +1773606583.536055,29.77,4,3992.50,65.46,1153.59,2562.88,0.00,0.000000,0.004684,1753321,2334467,119.682218,0.058472,26957002,16916840,0,0,46552,0,1,1 +1773606588.536541,29.19,4,3992.50,65.44,1156.29,2562.12,0.00,3518095917847.439941,3518095916959.196777,11,0,118.750014,0.061230,26969054,16921667,0,0,46555,0,1,1 +1773606593.532373,29.64,4,3992.50,65.20,1165.74,2552.60,0.00,25198.442527,26087.603701,1753321,2334537,119.664839,0.054565,26981266,16925879,0,0,46557,0,1,1 +1773606598.531955,29.06,4,3992.50,65.40,1157.61,2560.67,0.00,3518731765595.637207,3518731764706.962891,205,0,118.773157,0.059819,26993341,16930514,0,0,46560,0,1,1 +1773606603.531812,29.41,4,3992.50,65.43,1156.74,2561.63,0.00,0.000000,0.000000,205,0,119.566340,0.051177,27005452,16934531,0,0,46562,0,1,1 +1773606608.536747,29.70,4,3992.50,65.24,1163.92,2554.44,0.00,25152.452927,26040.393638,1753331,2334639,119.646233,0.049759,27017671,16938422,0,0,46565,0,1,1 +1773606613.534253,3.26,4,3992.50,58.87,1413.68,2304.72,0.00,3520192954393.271973,3520192954391.328125,1751907,2334310,55.708882,0.028495,27023477,16940552,0,0,46567,0,1,1 +1773606618.536241,1.45,4,3992.50,58.96,1410.63,2308.59,0.00,3517038269083.167969,3517038268205.841797,251,358,0.000308,0.000572,27023484,16940565,0,0,46570,0,1,1 +1773606623.536172,0.65,4,3992.50,58.98,1410.07,2309.06,0.00,3518486153135.025879,3518486153126.006836,11,0,0.000205,0.000552,27023491,16940578,0,0,46572,0,1,1 +1773606628.536558,0.60,4,3992.50,59.00,1409.34,2309.80,0.00,1.656024,10.674371,251,358,0.000000,0.000030,27023491,16940581,0,0,46575,0,1,1 +1773606633.534166,0.70,4,3992.50,59.00,1409.34,2309.80,0.00,0.356323,3520121191905.253906,246,2,0.000000,0.000664,27023491,16940587,0,0,46577,0,1,1 +1773606638.531893,0.80,4,3992.50,58.81,1416.53,2302.61,0.00,3520037651024.015625,3520037651025.848633,205,0,0.000031,0.000055,27023493,16940592,0,0,46580,0,1,1 +1773606643.535587,0.65,4,3992.50,58.81,1416.53,2302.61,0.00,1.830679,0.000195,246,2,0.000039,0.000053,27023496,16940597,0,0,46582,0,1,1 +1773606648.535990,1.00,4,3992.50,59.01,1405.87,2310.44,0.00,3518153742790.562012,3518153742792.574707,11,0,0.000000,0.000030,27023496,16940600,0,0,46585,0,1,1 +1773606653.536355,0.75,4,3992.50,59.03,1404.87,2311.18,0.00,0.000000,0.000000,11,0,0.000000,0.000020,27023496,16940602,0,0,46587,0,1,1 +1773606658.535949,0.70,4,3992.50,59.03,1404.92,2311.13,0.00,0.000000,0.000000,11,0,0.000126,0.000185,27023506,16940615,0,0,46590,0,1,1 +1773606663.532628,0.75,4,3992.50,59.04,1404.68,2311.36,0.00,0.000000,0.000000,11,0,0.000031,0.000045,27023508,16940619,0,0,46592,0,1,1 +1773606668.531821,0.70,4,3992.50,59.04,1404.69,2311.36,0.00,0.000000,0.000000,11,0,0.000031,0.000055,27023510,16940624,0,0,46595,0,1,1 +1773606673.531844,0.70,4,3992.50,59.04,1404.69,2311.36,0.00,0.180273,0.000000,205,0,0.000000,0.000020,27023510,16940626,0,0,46597,0,1,1 +1773606678.535532,13.35,4,3992.50,65.65,1145.76,2570.30,0.00,25150.101684,26036.765083,1751910,2334575,3.808295,0.009003,27024075,16941054,0,0,46600,0,1,1 +1773606683.535741,36.52,4,3992.50,65.26,1160.74,2555.23,0.00,3518290309167.121582,3518290308280.021484,11,0,117.760027,0.034280,27036194,16943635,0,0,46602,0,1,1 +1773606688.536183,28.69,4,3992.50,65.45,1153.27,2562.62,0.00,1.656006,10.674251,251,358,118.554622,0.018231,27048430,16945007,0,0,46605,0,1,1 +1773606693.531846,28.50,4,3992.50,65.56,1149.20,2566.73,0.00,0.000000,0.000000,251,358,119.468735,0.016594,27060715,16946258,0,0,46607,0,1,1 +1773606698.536420,29.69,4,3992.50,65.61,1147.30,2568.62,0.00,3515221314286.703125,3515221314277.512207,205,0,118.861255,0.032043,27073019,16948666,0,0,46610,0,1,1 +1773606703.536973,30.29,4,3992.50,65.49,1151.80,2564.16,0.00,0.000000,0.000000,205,0,119.755528,0.027146,27085367,16950784,0,0,46612,0,1,1 +1773606708.535533,29.86,4,3992.50,65.24,1161.66,2554.30,0.00,25185.469328,26074.325994,1753399,2335113,118.605822,0.043749,27097603,16954165,0,0,46615,0,1,1 +1773606713.536693,30.85,4,3992.50,65.26,1161.05,2554.94,0.00,3517620904298.088379,3517620903418.891113,251,358,120.150252,0.057163,27110157,16958621,0,0,46617,0,1,1 +1773606718.532590,30.39,4,3992.50,65.56,1149.29,2566.65,0.00,3521326947811.114258,3521326947801.907715,205,0,119.065598,0.035147,27122386,16961340,0,0,46620,0,1,1 +1773606723.536684,6.38,4,3992.50,59.01,1405.50,2310.53,0.00,25148.215618,26035.090702,1751925,2334832,69.444244,0.015767,27129615,16962474,0,0,46622,0,1,1 +1773606728.535114,0.70,4,3992.50,59.03,1405.06,2310.98,0.00,3519542240437.711914,3519542239559.033691,251,358,0.000000,0.000030,27129615,16962477,0,0,46625,0,1,1 +1773606733.536715,0.60,4,3992.50,59.03,1404.82,2311.22,0.00,25159.279369,26037.438749,1751925,2334878,0.000000,0.000020,27129615,16962479,0,0,46627,0,1,1 +1773606738.536100,1.00,4,3992.50,59.18,1393.77,2316.86,0.00,9.562698,10.737647,1753414,2335268,0.000000,0.000030,27129615,16962482,0,0,46630,0,1,1 +1773606743.536758,0.50,4,3992.50,59.17,1393.67,2316.81,0.00,3517974237995.639648,3517974237107.068848,75,0,0.000000,0.000020,27129615,16962484,0,0,46632,0,1,1 +1773606748.536422,0.80,4,3992.50,59.17,1393.67,2316.81,0.00,1.602744,10.675913,251,358,0.000000,0.000030,27129615,16962487,0,0,46635,0,1,1 +1773606753.534755,0.70,4,3992.50,59.17,1393.67,2316.81,0.00,3519610290063.767578,3519610290054.746094,11,0,0.000000,0.000020,27129615,16962489,0,0,46637,0,1,1 +1773606758.536695,0.80,4,3992.50,59.17,1393.68,2316.81,0.00,2.011525,0.000195,246,2,0.000000,0.000030,27129615,16962492,0,0,46640,0,1,1 +1773606763.531899,0.65,4,3992.50,59.17,1393.68,2316.81,0.00,3521814795501.387695,10.685248,251,358,0.000000,0.000664,27129615,16962498,0,0,46642,0,1,1 +1773606768.531824,1.05,4,3992.50,59.17,1392.15,2316.77,0.00,3518490228307.096191,3518490228298.077148,11,0,0.000126,0.000185,27129625,16962511,0,0,46645,0,1,1 +1773606773.534876,1.60,4,3992.50,59.18,1391.93,2317.00,0.00,2.011077,0.000195,246,2,0.000016,0.000036,27129627,16962515,0,0,46647,0,1,1 +1773606778.535789,0.65,4,3992.50,59.18,1391.93,2317.00,0.00,25162.378277,26051.948278,1751925,2334991,0.000000,0.000030,27129627,16962518,0,0,46650,0,1,1 +1773606783.531844,0.75,4,3992.50,59.18,1391.93,2317.00,0.00,3521216221926.807617,3521216221047.412109,251,358,0.000000,0.000020,27129627,16962520,0,0,46652,0,1,1 +1773606788.532716,17.56,4,3992.50,65.59,1140.91,2567.93,0.00,3517823560443.405273,3517823560434.207520,205,0,19.027321,0.014895,27131719,16963509,0,0,46655,0,1,1 +1773606793.535508,34.83,4,3992.50,65.47,1145.65,2563.21,0.00,25164.317289,26052.955944,1753414,2335479,118.099196,0.045301,27143892,16967004,0,0,46657,0,1,1 +1773606798.535861,29.80,4,3992.50,65.19,1156.41,2552.42,0.00,0.000000,0.005175,1753414,2335489,118.668302,0.032637,27156135,16969507,0,0,46660,0,1,1 +1773606803.534740,28.77,4,3992.50,65.52,1149.35,2565.35,0.00,3519226361066.130859,3519226360176.971680,11,0,119.677686,0.051519,27168255,16973569,0,0,46662,0,1,1 +1773606808.532032,29.43,4,3992.50,65.33,1157.01,2557.65,0.00,0.000000,0.000000,11,0,118.826236,0.050316,27180183,16977477,0,0,46665,0,1,1 +1773606813.535565,29.00,4,3992.50,65.24,1160.09,2554.42,0.00,0.053478,0.000000,75,0,119.478190,0.049111,27192310,16981335,0,0,46667,0,1,1 +1773606818.535761,28.88,4,3992.50,65.32,1157.31,2557.34,0.00,1.958712,0.000195,246,2,119.157320,0.048791,27204361,16985181,0,0,46670,0,1,1 +1773606823.535541,29.23,4,3992.50,65.22,1161.28,2553.34,0.00,3518591767246.874023,3518591767248.886719,11,0,119.165574,0.047755,27216300,16988919,0,0,46672,0,1,1 +1773606828.535659,29.20,4,3992.50,65.30,1157.87,2556.74,0.00,0.180269,0.000000,205,0,119.758704,0.050681,27228378,16992917,0,0,46675,0,1,1 +1773606833.534582,3.10,4,3992.50,59.69,1377.02,2337.00,0.00,1.832426,0.000195,246,2,53.486627,0.025032,27233812,16994804,0,0,46677,0,1,1 +1773606838.536484,0.70,4,3992.50,59.28,1393.16,2320.86,0.00,25167.123534,26058.041399,1753431,2335695,0.000855,0.000598,27233830,16994820,0,0,46680,0,1,1 +1773606843.531905,0.70,4,3992.50,59.28,1393.13,2320.89,0.00,0.000000,0.001564,1753431,2335696,0.000025,0.000051,27233832,16994824,0,0,46682,0,1,1 +1773606848.532539,0.70,4,3992.50,59.27,1393.55,2320.47,0.00,3517991053890.581543,3517991053001.448242,11,0,0.000000,0.000030,27233832,16994827,0,0,46685,0,1,1 +1773606853.536474,0.65,4,3992.50,59.25,1394.14,2319.88,0.00,0.053474,0.000000,75,0,0.000025,0.000051,27233834,16994831,0,0,46687,0,1,1 +1773606858.531905,1.30,4,3992.50,59.48,1387.80,2328.92,0.00,0.126874,0.000000,205,0,0.000000,0.000030,27233834,16994834,0,0,46690,0,1,1 +1773606863.531915,0.80,4,3992.50,59.48,1387.68,2328.91,0.00,3518430125579.490723,0.000000,11,0,0.000000,0.000020,27233834,16994836,0,0,46692,0,1,1 +1773606868.531894,0.60,4,3992.50,59.48,1387.68,2328.90,0.00,25178.812500,26068.281115,1753431,2335777,0.000000,0.000030,27233834,16994839,0,0,46695,0,1,1 +1773606873.531909,0.50,4,3992.50,59.48,1387.68,2328.90,0.00,3518426835309.139648,3518426834428.696289,251,358,0.000000,0.000020,27233834,16994841,0,0,46697,0,1,1 +1773606878.532395,0.75,4,3992.50,59.48,1387.68,2328.90,0.00,3518095265501.536133,3518095265492.337891,205,0,0.000076,0.000123,27233840,16994850,0,0,46700,0,1,1 +1773606883.531899,0.70,4,3992.50,59.48,1387.68,2328.90,0.00,1.476025,10.676254,251,358,0.000066,0.000098,27233846,16994858,0,0,46702,0,1,1 +1773606888.531900,0.95,4,3992.50,59.53,1388.21,2330.57,0.00,0.000000,0.000000,251,358,0.000000,0.000030,27233846,16994861,0,0,46705,0,1,1 +1773606893.536466,0.75,4,3992.50,59.41,1390.50,2326.07,0.00,3515226802159.352539,3515226802150.341797,11,0,0.000307,0.000574,27233853,16994874,0,0,46707,0,1,1 +1773606898.536032,0.95,4,3992.50,59.07,1403.88,2312.69,0.00,0.000000,0.000000,11,0,0.001588,0.001607,27233883,16994908,0,0,46710,0,1,1 +1773606903.532013,35.77,4,3992.50,65.53,1151.05,2565.48,0.00,0.180418,0.000000,205,0,81.582211,0.032007,27242407,16997213,0,0,46712,0,1,1 +1773606908.534329,29.20,4,3992.50,65.42,1155.21,2561.33,0.00,3516808074270.354980,0.000000,11,0,118.310588,0.025125,27254487,16999089,0,0,46715,0,1,1 +1773606913.531812,28.26,4,3992.50,65.41,1155.36,2561.04,0.00,0.053543,0.000000,75,0,120.025908,0.026592,27266551,17001113,0,0,46717,0,1,1 +1773606918.533726,28.79,4,3992.50,65.27,1160.97,2555.54,0.00,3517090434062.864258,0.000000,11,0,118.528073,0.050939,27278614,17005014,0,0,46720,0,1,1 +1773606923.535573,28.82,4,3992.50,65.27,1161.20,2555.46,0.00,2.011562,0.000195,246,2,119.741247,0.079762,27291087,17011199,0,0,46722,0,1,1 +1773606928.536045,28.05,4,3992.50,65.26,1161.63,2554.92,0.00,3518104533398.458496,3518104533400.416992,75,0,118.976401,0.093421,27303564,17018486,0,0,46725,0,1,1 +1773606933.532887,28.48,4,3992.50,65.25,1161.97,2554.54,0.00,1.603650,10.681943,251,358,119.465362,0.089298,27316185,17025443,0,0,46727,0,1,1 +1773606938.531791,28.72,4,3992.50,65.59,1148.31,2568.13,0.00,3519208129429.742676,3519208129420.722168,11,0,119.615233,0.089952,27328720,17032455,0,0,46729,0,1,1 +1773606943.533987,15.33,4,3992.50,58.94,1408.85,2307.72,0.00,1.655425,10.670509,251,358,109.325206,0.080981,27340281,17038795,0,0,46732,0,1,1 +1773606948.535373,1.25,4,3992.50,59.31,1391.48,2322.27,0.00,3517462421555.636719,3517462421546.566895,75,0,0.003129,0.001578,27340340,17038837,0,0,46735,0,1,1 +1773606953.535949,0.75,4,3992.50,59.13,1395.66,2314.88,0.00,1.958563,0.000195,246,2,0.000000,0.000020,27340340,17038839,0,0,46737,0,1,1 +1773606958.535619,0.70,4,3992.50,59.13,1395.66,2314.88,0.00,3518669354499.318848,3518669354501.331055,11,0,0.000000,0.000030,27340340,17038842,0,0,46740,0,1,1 +1773606963.531814,0.65,4,3992.50,59.13,1395.66,2314.87,0.00,25198.041781,26088.765247,1753447,2336271,0.000031,0.000689,27340342,17038850,0,0,46742,0,1,1 +1773606968.531975,0.60,4,3992.50,59.09,1397.14,2313.39,0.00,3518324051996.454590,3518324051104.425781,246,2,0.000031,0.000055,27340344,17038855,0,0,46745,0,1,1 +1773606973.535943,0.65,4,3992.50,59.09,1397.14,2313.39,0.00,3515647406959.955566,3515647406961.786133,205,0,0.000000,0.000020,27340344,17038857,0,0,46747,0,1,1 +1773606978.536237,0.90,4,3992.50,59.48,1381.92,2328.61,0.00,3518230096306.417969,0.000000,11,0,0.000000,0.000030,27340344,17038860,0,0,46750,0,1,1 +1773606983.535806,0.75,4,3992.50,59.35,1386.92,2323.61,0.00,2.012478,0.000195,246,2,0.000000,0.000020,27340344,17038862,0,0,46752,0,1,1 +1773606988.534652,0.70,4,3992.50,59.33,1387.52,2323.01,0.00,3519249810700.978027,3519249810702.991211,11,0,0.000000,0.000030,27340344,17038865,0,0,46755,0,1,1 +1773606993.531819,0.75,4,3992.50,59.14,1395.16,2315.37,0.00,2.013446,0.000195,246,2,0.000126,0.000175,27340354,17038877,0,0,46757,0,1,1 +1773606998.535855,0.60,4,3992.50,59.14,1394.92,2315.61,0.00,3515599327105.186035,3515599327107.016602,205,0,0.000008,0.000038,27340355,17038881,0,0,46760,0,1,1 +1773607003.536713,0.70,4,3992.50,59.14,1394.92,2315.61,0.00,1.831717,0.000195,246,2,0.000000,0.000020,27340355,17038883,0,0,46762,0,1,1 +1773607008.531901,0.90,4,3992.50,59.23,1388.96,2319.02,0.00,3521826361704.613281,3521826361706.573730,75,0,0.000000,0.000030,27340355,17038886,0,0,46765,0,1,1 +1773607013.536673,40.07,4,3992.50,65.20,1154.99,2552.79,0.00,25154.806815,26044.273037,1753447,2336392,94.647833,0.033173,27350249,17041122,0,0,46767,0,1,1 +1773607018.531814,28.33,4,3992.50,65.40,1146.97,2560.75,0.00,0.000000,0.122091,1753447,2336494,119.884783,0.033204,27362376,17043626,0,0,46770,0,1,1 +1773607023.531849,28.46,4,3992.50,65.29,1151.48,2556.20,0.00,0.000000,0.004004,1753447,2336508,118.570041,0.042484,27374392,17046832,0,0,46772,0,1,1 +1773607028.535869,28.43,4,3992.50,65.40,1147.33,2560.36,0.00,0.000000,0.048399,1753447,2336529,119.679267,0.056606,27386645,17051159,0,0,46775,0,1,1 +1773607033.535867,28.39,4,3992.50,65.28,1151.66,2556.00,0.00,3518438593894.576172,3518438593004.086426,75,0,118.983525,0.072390,27399099,17056795,0,0,46777,0,1,1 +1773607038.532690,29.37,4,3992.50,65.44,1153.84,2562.29,0.00,1.603656,10.681983,251,358,119.459961,0.074575,27411608,17062599,0,0,46780,0,1,1 +1773607043.533164,28.89,4,3992.50,65.43,1153.87,2561.58,0.00,3518103381680.621582,3518103381671.603516,11,0,119.783055,0.096909,27424410,17070139,0,0,46782,0,1,1 +1773607048.536004,28.87,4,3992.50,65.26,1160.42,2555.11,0.00,0.053485,0.000000,75,0,118.926015,0.100048,27437222,17077977,0,0,46785,0,1,1 +1773607053.536232,12.08,4,3992.50,60.73,1337.67,2377.87,0.00,0.000000,0.000000,75,0,95.550568,0.081295,27447489,17084328,0,0,46787,0,1,1 +1773607058.531924,2.11,4,3992.50,60.03,1365.07,2350.45,0.00,1.604019,10.684403,251,358,0.003120,0.001456,27447547,17084369,0,0,46790,0,1,1 +1773607063.531820,0.65,4,3992.50,59.51,1385.42,2330.12,0.00,0.356160,3518510057512.159668,246,2,0.000000,0.000020,27447547,17084371,0,0,46792,0,1,1 +1773607068.531811,1.00,4,3992.50,59.18,1395.68,2317.04,0.00,3518443656781.213379,3518443656783.045410,205,0,0.000000,0.000030,27447547,17084374,0,0,46795,0,1,1 +1773607073.536276,0.55,4,3992.50,59.12,1398.16,2314.59,0.00,3515298242300.222168,0.000000,75,0,0.000000,0.000020,27447547,17084376,0,0,46797,0,1,1 +1773607078.536573,0.75,4,3992.50,59.13,1397.68,2315.07,0.00,25177.477235,26068.200646,1753464,2336768,0.000000,0.000030,27447547,17084379,0,0,46800,0,1,1 +1773607083.535944,0.60,4,3992.50,59.14,1397.46,2315.29,0.00,3518879872867.695801,3518879871976.860840,11,0,0.000000,0.000020,27447547,17084381,0,0,46802,0,1,1 +1773607088.535932,0.65,4,3992.50,59.14,1397.38,2315.36,0.00,1.656156,10.675222,251,358,0.000000,0.000030,27447547,17084384,0,0,46805,0,1,1 +1773607093.536385,0.65,4,3992.50,58.94,1405.26,2307.49,0.00,25165.532769,26046.150839,1751975,2336421,0.000000,0.000664,27447547,17084390,0,0,46807,0,1,1 +1773607098.536342,1.05,4,3992.50,58.85,1405.78,2304.25,0.00,3518467503053.910645,3518467502162.173828,246,2,0.001779,0.001559,27447572,17084408,0,0,46810,0,1,1 +1773607103.535552,0.70,4,3992.50,58.87,1405.27,2304.71,0.00,3518993202065.509277,3518993202067.341797,205,0,0.000117,0.000160,27447582,17084420,0,0,46812,0,1,1 +1773607108.535658,0.65,4,3992.50,58.87,1405.28,2304.71,0.00,1.475848,10.674969,251,358,0.001064,0.000439,27447604,17084437,0,0,46815,0,1,1 +1773607113.533734,0.65,4,3992.50,58.68,1412.38,2297.62,0.00,25177.499648,26058.593528,1751975,2336462,0.000000,0.000020,27447604,17084439,0,0,46817,0,1,1 +1773607118.535819,0.70,4,3992.50,58.72,1411.15,2298.84,0.00,9.557538,10.677969,1753464,2336829,0.000000,0.000030,27447604,17084442,0,0,46820,0,1,1 +1773607123.532309,38.16,4,3992.50,65.59,1141.79,2568.12,0.00,3520909471975.016602,3520909471083.496094,11,0,88.991614,0.030963,27456907,17086644,0,0,46822,0,1,1 +1773607128.532234,29.09,4,3992.50,65.55,1144.02,2566.50,0.00,0.180276,0.000000,205,0,119.178945,0.057861,27469077,17091055,0,0,46825,0,1,1 +1773607133.535787,31.06,4,3992.50,65.42,1149.36,2561.16,0.00,3515938985860.939941,0.000000,11,0,119.116732,0.112708,27482018,17099813,0,0,46827,0,1,1 +1773607138.534533,29.85,4,3992.50,65.36,1151.46,2558.99,0.00,25185.344942,26076.698894,1753464,2337049,119.628754,0.111583,27494939,17108510,0,0,46830,0,1,1 +1773607143.536712,29.25,4,3992.50,65.48,1147.05,2563.49,0.00,3516904421800.729004,3516904420909.986816,11,0,118.744771,0.110330,27507724,17117135,0,0,46832,0,1,1 +1773607148.532229,29.95,4,3992.50,65.27,1154.96,2555.57,0.00,0.000000,0.000000,11,0,119.908452,0.113396,27520710,17125977,0,0,46835,0,1,1 +1773607153.536277,29.25,4,3992.50,65.34,1152.44,2558.08,0.00,25149.112025,26038.430354,1751975,2336724,119.101293,0.110103,27533580,17134550,0,0,46837,0,1,1 +1773607158.536366,31.13,4,3992.50,65.47,1147.02,2563.48,0.00,3518373990902.155273,3518373990012.133301,11,0,119.598161,0.113540,27546579,17143394,0,0,46840,0,1,1 +1773607163.531806,14.51,4,3992.50,60.82,1328.97,2381.23,0.00,0.053564,0.000000,75,0,101.460711,0.096202,27557564,17150870,0,0,46842,0,1,1 +1773607168.536333,0.80,4,3992.50,59.97,1362.16,2348.05,0.00,1.601187,10.665539,251,358,0.003128,0.001577,27557623,17150912,0,0,46845,0,1,1 +1773607173.533203,0.65,4,3992.50,59.62,1376.04,2334.17,0.00,3520641013270.569336,3520641013261.544922,11,0,0.000000,0.000020,27557623,17150914,0,0,46847,0,1,1 +1773607178.535762,0.60,4,3992.50,59.45,1382.71,2327.50,0.00,1.655305,10.669734,251,358,0.000000,0.000030,27557623,17150917,0,0,46850,0,1,1 +1773607183.536219,0.75,4,3992.50,59.45,1382.63,2327.58,0.00,3518115369576.665527,3518115369567.647461,11,0,0.000000,0.000020,27557623,17150919,0,0,46852,0,1,1 +1773607188.535861,1.00,4,3992.50,59.27,1392.26,2320.46,0.00,1.656271,10.675962,251,358,0.000000,0.000030,27557623,17150922,0,0,46855,0,1,1 +1773607193.536382,0.65,4,3992.50,59.22,1394.27,2318.45,0.00,3518070132740.279297,3518070132731.261719,11,0,0.000308,0.000574,27557630,17150935,0,0,46857,0,1,1 +1773607198.536479,0.75,4,3992.50,59.23,1393.79,2318.94,0.00,0.000000,0.000000,11,0,0.000205,0.000562,27557637,17150949,0,0,46860,0,1,1 +1773607203.536554,0.70,4,3992.50,59.29,1391.35,2321.38,0.00,0.180271,0.000000,205,0,0.000000,0.000020,27557637,17150951,0,0,46862,0,1,1 +1773607208.535997,0.75,4,3992.50,59.27,1392.07,2320.65,0.00,25181.823746,26073.695006,1753488,2337351,0.000000,0.000030,27557637,17150954,0,0,46865,0,1,1 +1773607213.535885,0.75,4,3992.50,59.24,1393.27,2319.45,0.00,3518516817591.608887,3518516816699.816895,205,0,0.000126,0.000175,27557647,17150966,0,0,46867,0,1,1 +1773607218.536437,1.00,4,3992.50,59.25,1391.81,2319.67,0.00,1.475716,10.674015,251,358,0.000316,0.000592,27557655,17150981,0,0,46870,0,1,1 +1773607223.536286,0.75,4,3992.50,59.25,1391.76,2319.66,0.00,3518543484376.416504,3518543484367.344238,75,0,0.001127,0.001853,27557664,17151000,0,0,46872,0,1,1 +1773607228.532332,0.60,4,3992.50,59.25,1391.77,2319.66,0.00,1.603905,10.683644,251,358,0.000000,0.000030,27557664,17151003,0,0,46875,0,1,1 +1773607233.535547,14.91,4,3992.50,65.52,1146.04,2565.35,0.00,3516176405202.702637,3516176405193.689453,11,0,11.813571,0.011826,27559056,17151776,0,0,46877,0,1,1 +1773607238.536000,34.89,4,3992.50,65.70,1139.10,2572.21,0.00,0.180257,0.000000,205,0,118.754119,0.035582,27571170,17154461,0,0,46880,0,1,1 +1773607243.535531,29.66,4,3992.50,65.35,1152.76,2558.59,0.00,25181.383738,26073.412672,1753488,2337541,118.575442,0.031080,27583342,17156844,0,0,46882,0,1,1 +1773607248.535763,29.41,4,3992.50,65.35,1152.80,2558.57,0.00,3518274590163.745605,3518274589281.040527,251,358,119.158371,0.023749,27595518,17158656,0,0,46885,0,1,1 +1773607253.531932,29.17,4,3992.50,65.43,1149.61,2561.78,0.00,0.356425,3521135013787.486816,246,2,119.256270,0.023840,27607753,17160533,0,0,46887,0,1,1 +1773607258.535553,30.03,4,3992.50,65.64,1141.45,2569.94,0.00,3515890644365.227051,3515890644367.237793,11,0,119.278762,0.030551,27619977,17162903,0,0,46890,0,1,1 +1773607263.535541,29.72,4,3992.50,65.60,1142.95,2568.46,0.00,25169.702965,26060.612841,1751999,2337281,118.962760,0.040679,27632050,17166086,0,0,46892,0,1,1 +1773607268.535627,29.57,4,3992.50,65.64,1141.30,2569.92,0.00,3518376251066.348145,3518376250175.402344,75,0,119.760724,0.025069,27644245,17168052,0,0,46895,0,1,1 +1773607273.536087,29.52,4,3992.50,65.33,1153.34,2557.96,0.00,1.958609,0.000195,246,2,118.549768,0.037216,27656249,17170998,0,0,46897,0,1,1 +1773607278.531817,4.56,4,3992.50,60.36,1348.09,2363.33,0.00,25198.772945,26093.617597,1753494,2337663,61.335358,0.024593,27662402,17172903,0,0,46900,0,1,1 +1773607283.536438,1.25,4,3992.50,59.78,1377.14,2340.58,0.00,3515188395969.843750,3515188395078.418457,205,0,0.002890,0.001146,27662455,17172938,0,0,46902,0,1,1 +1773607288.532584,0.70,4,3992.50,59.52,1387.49,2330.28,0.00,3521151513879.838867,0.000000,75,0,0.000000,0.000030,27662455,17172941,0,0,46905,0,1,1 +1773607293.531896,0.75,4,3992.50,59.30,1396.21,2321.55,0.00,3518921372348.277832,0.000000,11,0,0.000000,0.000664,27662455,17172947,0,0,46907,0,1,1 +1773607298.531825,0.75,4,3992.50,59.33,1394.99,2322.78,0.00,1.656176,10.675347,251,358,0.000000,0.000030,27662455,17172950,0,0,46910,0,1,1 +1773607303.536175,0.70,4,3992.50,59.33,1394.99,2322.78,0.00,3515378778020.189453,3515378778011.125000,75,0,0.000000,0.000020,27662455,17172952,0,0,46912,0,1,1 +1773607308.532550,0.65,4,3992.50,59.33,1394.68,2323.08,0.00,1.960210,0.000195,246,2,0.000000,0.000030,27662455,17172955,0,0,46915,0,1,1 +1773607313.535833,1.10,4,3992.50,59.36,1391.59,2324.25,0.00,3516128324932.806641,3516128324934.764160,75,0,0.000000,0.000020,27662455,17172957,0,0,46917,0,1,1 +1773607318.536733,0.75,4,3992.50,59.40,1390.39,2325.45,0.00,3517804293977.304199,0.000000,11,0,0.000000,0.000030,27662455,17172960,0,0,46920,0,1,1 +1773607323.536780,0.65,4,3992.50,59.40,1390.34,2325.50,0.00,2.012286,0.000195,246,2,0.000025,0.000051,27662457,17172964,0,0,46922,0,1,1 +1773607328.536015,0.75,4,3992.50,59.39,1390.54,2325.30,0.00,25181.177177,26075.646192,1753499,2337837,0.000109,0.000162,27662466,17172976,0,0,46925,0,1,1 +1773607333.534612,0.75,4,3992.50,59.39,1390.54,2325.30,0.00,3519424570234.743164,3519424569351.194824,251,358,0.000008,0.000028,27662467,17172979,0,0,46927,0,1,1 +1773607338.531812,1.00,4,3992.50,59.42,1389.30,2326.25,0.00,3520408768751.431152,3520408768742.227051,205,0,0.000000,0.000030,27662467,17172982,0,0,46930,0,1,1 +1773607343.540545,9.75,4,3992.50,65.34,1157.20,2558.29,0.00,3512302260689.826172,0.000000,11,0,7.603139,0.011361,27663418,17173598,0,0,46932,0,1,1 +1773607348.535543,37.10,4,3992.50,65.48,1151.77,2563.71,0.00,0.000000,0.000000,11,0,121.288530,0.029610,27675752,17175835,0,0,46935,0,1,1 +1773607353.535874,31.13,4,3992.50,65.83,1138.16,2577.32,0.00,0.053512,0.000000,75,0,120.961684,0.023138,27688235,17177530,0,0,46937,0,1,1 +1773607358.535895,29.18,4,3992.50,65.61,1146.93,2568.61,0.00,3518421945265.063965,0.000000,11,0,120.164032,0.020232,27700471,17179042,0,0,46940,0,1,1 +1773607363.536021,29.73,4,3992.50,65.45,1153.14,2562.37,0.00,0.000000,0.000000,11,0,119.759270,0.023604,27712523,17180860,0,0,46942,0,1,1 +1773607368.536152,28.48,4,3992.50,65.48,1151.86,2563.58,0.00,25178.679396,26071.134156,1753499,2338033,119.767020,0.040017,27724872,17183991,0,0,46945,0,1,1 +1773607373.536555,30.66,4,3992.50,65.07,1159.25,2547.77,0.00,3518153495989.453613,3518153495097.047363,11,0,119.158228,0.039510,27737152,17187061,0,0,46947,0,1,1 +1773607378.531786,29.82,4,3992.50,65.17,1155.41,2551.70,0.00,0.180446,0.000000,205,0,120.077409,0.022535,27749324,17188848,0,0,46950,0,1,1 +1773607383.536103,29.33,4,3992.50,65.21,1154.04,2553.02,0.00,3515402017811.698730,0.000000,75,0,119.260493,0.038014,27761529,17191842,0,0,46952,0,1,1 +1773607388.535842,3.66,4,3992.50,58.81,1404.43,2302.69,0.00,25180.669761,26073.523230,1753505,2338119,57.482176,0.017084,27767456,17193173,0,0,46955,0,1,1 +1773607393.536559,1.15,4,3992.50,58.85,1403.06,2304.06,0.00,3517932619294.422852,3517932618410.814941,251,358,0.003764,0.001647,27767524,17193218,0,0,46957,0,1,1 +1773607398.535826,1.05,4,3992.50,59.00,1399.84,2310.17,0.00,0.000000,0.000000,251,358,0.001109,0.000637,27767546,17193234,0,0,46960,0,1,1 +1773607403.536135,0.65,4,3992.50,59.00,1395.60,2310.16,0.00,0.000000,0.000000,251,358,0.000000,0.000020,27767546,17193236,0,0,46962,0,1,1 +1773607408.535987,0.75,4,3992.50,59.01,1395.37,2310.40,0.00,0.000000,0.000000,251,358,0.001734,0.001353,27767571,17193254,0,0,46965,0,1,1 +1773607413.534214,0.75,4,3992.50,59.01,1395.37,2310.40,0.00,3519684665375.816406,3519684665366.741211,75,0,0.000000,0.000020,27767571,17193256,0,0,46967,0,1,1 +1773607418.535954,0.65,4,3992.50,59.01,1395.37,2310.39,0.00,1.602079,10.671482,251,358,0.000000,0.000020,27767571,17193258,0,0,46969,0,1,1 +1773607423.536259,0.70,4,3992.50,59.02,1395.13,2310.64,0.00,0.000000,0.000000,251,358,0.000000,0.000030,27767571,17193261,0,0,46972,0,1,1 +1773607428.536016,0.95,4,3992.50,59.06,1392.95,2312.34,0.00,25169.477205,26052.353815,1752021,2337913,0.000000,0.000674,27767571,17193268,0,0,46975,0,1,1 +1773607433.536443,0.65,4,3992.50,59.00,1395.11,2309.95,0.00,3518136733428.997559,3518136732537.220703,11,0,0.000000,0.000020,27767571,17193270,0,0,46977,0,1,1 +1773607438.536105,0.55,4,3992.50,59.01,1394.64,2310.41,0.00,25171.613967,26063.549742,1752021,2337937,0.000076,0.000123,27767577,17193279,0,0,46980,0,1,1 +1773607443.532988,0.75,4,3992.50,59.01,1394.65,2310.41,0.00,3520631916781.207031,3520631915888.594727,205,0,0.000058,0.000090,27767582,17193286,0,0,46982,0,1,1 +1773607448.532183,0.70,4,3992.50,59.02,1394.41,2310.64,0.00,0.000000,0.000000,205,0,0.000000,0.000030,27767582,17193289,0,0,46985,0,1,1 +1773607453.536185,3.51,4,3992.50,65.25,1150.49,2554.55,0.00,1.830566,0.000195,246,2,0.403605,0.003402,27767719,17193392,0,0,46987,0,1,1 +1773607458.536365,42.12,4,3992.50,65.53,1142.01,2565.83,0.00,3518310724907.145508,3518310724908.977539,205,0,107.947081,0.031084,27778841,17195748,0,0,46990,0,1,1 +1773607463.536134,29.16,4,3992.50,65.23,1154.10,2553.72,0.00,3518599921610.354492,0.000000,11,0,120.172852,0.020672,27791174,17197258,0,0,46992,0,1,1 +1773607468.536211,28.53,4,3992.50,65.47,1144.46,2563.34,0.00,0.180271,0.000000,205,0,118.359582,0.021073,27803188,17198902,0,0,46995,0,1,1 +1773607473.535587,29.15,4,3992.50,65.44,1145.71,2562.11,0.00,1.832260,0.000195,246,2,119.977205,0.019492,27815233,17200393,0,0,46997,0,1,1 +1773607478.536602,28.97,4,3992.50,65.32,1150.36,2557.52,0.00,3517723157515.813965,10.672834,251,358,119.144609,0.036945,27827420,17203280,0,0,47000,0,1,1 +1773607483.536167,29.22,4,3992.50,65.25,1153.11,2554.68,0.00,3518743011576.882812,3518743011567.682617,205,0,119.200816,0.097539,27840037,17210904,0,0,47002,0,1,1 +1773607488.535639,30.65,4,3992.50,65.23,1154.05,2553.79,0.00,3518808712742.961426,0.000000,11,0,119.395065,0.064566,27852643,17215927,0,0,47005,0,1,1 +1773607493.535910,30.86,4,3992.50,65.57,1140.27,2567.25,0.00,25168.548487,26060.786262,1752021,2338230,119.287687,0.063104,27865230,17220774,0,0,47007,0,1,1 +1773607498.535894,8.95,4,3992.50,60.39,1343.14,2364.45,0.00,3518448665820.675781,3518448664926.374512,246,2,81.613901,0.053101,27873792,17224825,0,0,47010,0,1,1 +1773607503.535431,1.05,4,3992.50,59.58,1374.75,2332.83,0.00,3518762710618.408691,3518762710620.241211,205,0,0.002850,0.001079,27873842,17224857,0,0,47012,0,1,1 +1773607508.532727,0.95,4,3992.50,59.21,1389.51,2318.06,0.00,1.833023,0.000195,246,2,0.000249,0.000495,27873849,17224867,0,0,47015,0,1,1 +1773607513.536369,0.85,4,3992.50,59.24,1388.18,2319.40,0.00,3515875719034.091797,10.667228,251,358,0.000000,0.000020,27873849,17224869,0,0,47017,0,1,1 +1773607518.536020,1.20,4,3992.50,59.36,1383.82,2323.90,0.00,25179.708341,26064.449561,1753521,2338794,0.000308,0.000584,27873856,17224883,0,0,47020,0,1,1 +1773607523.531896,0.90,4,3992.50,59.36,1383.40,2324.18,0.00,3521342039462.327148,3521342038567.890625,11,0,0.000213,0.000560,27873864,17224897,0,0,47022,0,1,1 +1773607528.536387,0.65,4,3992.50,59.36,1383.43,2324.15,0.00,25157.011496,26049.965005,1753521,2338856,0.000000,0.000030,27873864,17224900,0,0,47025,0,1,1 +1773607533.534592,0.75,4,3992.50,59.35,1384.01,2323.57,0.00,3519700659096.469238,3519700658202.393066,11,0,0.000000,0.000020,27873864,17224902,0,0,47027,0,1,1 +1773607538.533234,0.70,4,3992.50,59.35,1384.01,2323.57,0.00,0.000000,0.000000,11,0,0.000031,0.000055,27873866,17224907,0,0,47030,0,1,1 +1773607543.531901,0.65,4,3992.50,59.35,1384.01,2323.57,0.00,0.000000,0.000000,11,0,0.000031,0.000045,27873868,17224911,0,0,47032,0,1,1 +1773607548.533811,1.05,4,3992.50,59.35,1384.88,2323.57,0.00,0.180205,0.000000,205,0,0.000076,0.000123,27873874,17224920,0,0,47035,0,1,1 +1773607553.536794,0.70,4,3992.50,59.33,1385.09,2322.86,0.00,1.830939,0.000195,246,2,0.000058,0.000090,27873879,17224927,0,0,47037,0,1,1 +1773607558.535932,0.70,4,3992.50,59.33,1385.09,2322.86,0.00,3519044182771.346680,3519044182773.359863,11,0,0.000000,0.000030,27873879,17224930,0,0,47040,0,1,1 +1773607563.535100,0.95,4,3992.50,59.06,1395.46,2312.49,0.00,0.180303,0.000000,205,0,0.001415,0.001405,27873904,17224955,0,0,47042,0,1,1 +1773607568.535573,42.76,4,3992.50,65.05,1160.94,2546.96,0.00,25167.481687,26060.403053,1752032,2338684,102.138681,0.039289,27884542,17227827,0,0,47045,0,1,1 +1773607573.535536,29.66,4,3992.50,65.34,1149.83,2558.04,0.00,3518463012750.184082,3518463011857.298340,75,0,118.778371,0.049277,27896952,17231605,0,0,47047,0,1,1 +1773607578.533981,29.74,4,3992.50,65.78,1132.22,2575.49,0.00,1.959399,0.000195,246,2,119.617621,0.066604,27909412,17236787,0,0,47049,0,1,1 +1773607583.535570,29.86,4,3992.50,65.42,1146.42,2561.39,0.00,0.000000,0.000000,246,2,118.944239,0.070874,27921952,17242306,0,0,47052,0,1,1 +1773607588.533015,29.85,4,3992.50,65.08,1159.93,2547.92,0.00,3520236446788.166992,3520236446790.180664,11,0,119.449260,0.083358,27934627,17248799,0,0,47055,0,1,1 +1773607593.536057,28.28,4,3992.50,65.17,1156.31,2551.55,0.00,2.011081,0.000195,246,2,119.114221,0.085385,27947229,17255459,0,0,47057,0,1,1 +1773607598.532714,29.02,4,3992.50,65.35,1149.18,2558.62,0.00,25194.443670,26091.247784,1753521,2339189,119.266793,0.085004,27959801,17262080,0,0,47060,0,1,1 +1773607603.534484,29.61,4,3992.50,65.35,1149.32,2558.54,0.00,3517191718683.567383,3517191717798.707031,251,358,119.743170,0.078676,27972444,17268238,0,0,47062,0,1,1 +1773607608.531834,11.22,4,3992.50,60.49,1339.55,2368.39,0.00,3520302884218.849609,3520302884209.826172,11,0,88.574058,0.026171,27981684,17270248,0,0,47065,0,1,1 +1773607613.531817,1.10,4,3992.50,59.88,1366.55,2344.59,0.00,25170.247807,26063.372566,1752045,2338901,0.003796,0.001660,27981754,17270294,0,0,47067,0,1,1 +1773607618.531824,1.50,4,3992.50,59.59,1378.13,2333.00,0.00,3518432245241.719727,3518432244348.418945,205,0,0.000000,0.000030,27981754,17270297,0,0,47070,0,1,1 +1773607623.536382,0.70,4,3992.50,59.45,1383.55,2327.58,0.00,1.474535,10.665472,251,358,0.000000,0.000020,27981754,17270299,0,0,47072,0,1,1 +1773607628.536027,0.65,4,3992.50,59.44,1383.84,2327.30,0.00,0.000000,0.000000,251,358,0.000000,0.000674,27981754,17270306,0,0,47075,0,1,1 +1773607633.531854,0.65,4,3992.50,59.44,1383.85,2327.29,0.00,3521376673834.375000,3521376673825.348633,11,0,0.000000,0.000020,27981754,17270308,0,0,47077,0,1,1 +1773607638.533267,1.00,4,3992.50,59.45,1383.16,2327.47,0.00,0.053501,0.000000,75,0,0.000000,0.000030,27981754,17270311,0,0,47080,0,1,1 +1773607643.531906,0.65,4,3992.50,59.45,1383.16,2327.47,0.00,0.000000,0.000000,75,0,0.000000,0.000020,27981754,17270313,0,0,47082,0,1,1 +1773607648.531914,0.65,4,3992.50,59.45,1383.16,2327.47,0.00,25170.065868,26063.508433,1752045,2339026,0.000000,0.000030,27981754,17270316,0,0,47085,0,1,1 +1773607653.531819,0.70,4,3992.50,59.45,1383.17,2327.47,0.00,9.561706,10.678720,1753534,2339389,0.000000,0.000020,27981754,17270318,0,0,47087,0,1,1 +1773607658.535798,0.75,4,3992.50,59.35,1386.92,2323.71,0.00,3515639390766.737305,3515639389872.940918,11,0,0.000126,0.000175,27981764,17270330,0,0,47089,0,1,1 +1773607663.531824,0.75,4,3992.50,59.35,1386.92,2323.71,0.00,0.053558,0.000000,75,0,0.000016,0.000046,27981766,17270335,0,0,47092,0,1,1 +1773607668.531888,1.05,4,3992.50,59.27,1386.57,2320.66,0.00,0.126756,0.000000,205,0,0.000000,0.000030,27981766,17270338,0,0,47095,0,1,1 +1773607673.531983,1.30,4,3992.50,59.24,1387.82,2319.20,0.00,0.000000,0.000000,205,0,0.002040,0.001647,27981791,17270358,0,0,47097,0,1,1 +1773607678.531719,40.48,4,3992.50,65.16,1155.61,2551.32,0.00,25180.871251,26075.737913,1753534,2339541,93.739858,0.049251,27991567,17273980,0,0,47100,0,1,1 +1773607683.532384,29.74,4,3992.50,65.13,1156.88,2550.07,0.00,3517969248060.065918,3517969247165.365234,205,0,118.148053,0.044192,28003631,17277376,0,0,47102,0,1,1 +1773607688.535902,30.07,4,3992.50,65.19,1154.47,2552.51,0.00,3515963596292.796387,0.000000,11,0,119.681399,0.051213,28015841,17281333,0,0,47105,0,1,1 +1773607693.531810,29.03,4,3992.50,65.18,1155.09,2551.82,0.00,25190.776456,26085.082745,1752045,2339225,118.658396,0.043748,28027824,17284701,0,0,47107,0,1,1 +1773607698.534575,30.13,4,3992.50,65.14,1156.46,2550.44,0.00,3516492701097.502441,3516492700213.435547,251,358,120.100010,0.042074,28040020,17287930,0,0,47110,0,1,1 +1773607703.535561,30.52,4,3992.50,65.24,1152.96,2554.12,0.00,3517743168004.357422,3517743167995.160156,205,0,118.210893,0.039795,28051897,17291037,0,0,47112,0,1,1 +1773607708.535531,30.33,4,3992.50,65.11,1157.70,2549.32,0.00,25170.462606,26064.048155,1752314,2339345,120.089508,0.036599,28064065,17293915,0,0,47115,0,1,1 +1773607713.532701,29.59,4,3992.50,65.03,1161.00,2546.02,0.00,0.000000,0.141389,1752314,2339371,119.030087,0.043883,28076104,17297313,0,0,47117,0,1,1 +1773607718.535799,13.33,4,3992.50,59.07,1394.35,2312.74,0.00,3516258404517.517578,3516258403624.529785,11,0,97.671377,0.040282,28085935,17300487,0,0,47120,0,1,1 +1773607723.536637,0.90,4,3992.50,59.06,1394.73,2312.36,0.00,0.000000,0.000000,11,0,0.003117,0.001457,28085993,17300528,0,0,47122,0,1,1 +1773607728.534545,1.10,4,3992.50,59.26,1386.03,2320.17,0.00,2.013147,0.000195,246,2,0.000000,0.000030,28085993,17300531,0,0,47125,0,1,1 +1773607733.531816,0.75,4,3992.50,59.26,1386.03,2320.17,0.00,3520358637523.322754,3520358637525.282715,75,0,0.000000,0.000020,28085993,17300533,0,0,47127,0,1,1 +1773607738.536466,0.75,4,3992.50,59.24,1386.65,2319.55,0.00,3515168219845.308594,0.000000,11,0,0.000000,0.000020,28085993,17300535,0,0,47129,0,1,1 +1773607743.532089,0.75,4,3992.50,59.24,1386.65,2319.55,0.00,0.180431,0.000000,205,0,0.000025,0.000061,28085995,17300540,0,0,47132,0,1,1 +1773607748.536228,0.70,4,3992.50,59.23,1387.32,2318.88,0.00,1.474658,10.666365,251,358,0.000000,0.000030,28085995,17300543,0,0,47135,0,1,1 +1773607753.531899,0.85,4,3992.50,59.23,1387.32,2318.88,0.00,0.000000,0.000000,251,358,0.000025,0.000051,28085997,17300547,0,0,47137,0,1,1 +1773607758.535238,1.30,4,3992.50,59.25,1386.56,2319.84,0.00,3516089220054.654297,3516089220045.588379,75,0,0.000016,0.000689,28085999,17300556,0,0,47140,0,1,1 +1773607763.535963,0.75,4,3992.50,59.25,1386.36,2319.84,0.00,0.126739,0.000000,205,0,0.000025,0.000051,28086001,17300560,0,0,47142,0,1,1 +1773607768.536895,0.60,4,3992.50,59.25,1386.36,2319.83,0.00,1.475604,10.673205,251,358,0.000101,0.000154,28086009,17300571,0,0,47145,0,1,1 +1773607773.536348,0.70,4,3992.50,59.25,1386.37,2319.83,0.00,0.000000,0.000000,251,358,0.000000,0.000020,28086009,17300573,0,0,47147,0,1,1 +1773607778.536636,0.70,4,3992.50,59.25,1386.37,2319.83,0.00,0.000000,0.000000,251,358,0.000000,0.000020,28086009,17300575,0,0,47149,0,1,1 +1773607783.535330,1.10,4,3992.50,59.07,1393.55,2312.64,0.00,0.000000,0.000000,251,358,0.002793,0.002696,28086067,17300623,0,0,47152,0,1,1 +1773607788.536063,43.41,4,3992.50,65.59,1141.13,2568.08,0.00,25174.861100,26060.758257,1753818,2340060,108.138595,0.037753,28097341,17303505,0,0,47155,0,1,1 +1773607793.535058,28.86,4,3992.50,65.40,1148.77,2560.40,0.00,0.000000,0.072085,1753818,2340115,118.589622,0.028592,28109501,17305600,0,0,47157,0,1,1 +1773607798.536176,28.95,4,3992.50,65.17,1157.72,2551.51,0.00,3517650601853.567383,3517650600967.666504,251,358,118.739356,0.027361,28121750,17307638,0,0,47160,0,1,1 +1773607803.531821,29.81,4,3992.50,65.09,1160.95,2548.23,0.00,3521504167855.979004,3521504167846.898926,75,0,119.669053,0.023170,28133954,17309391,0,0,47162,0,1,1 +1773607808.534186,28.95,4,3992.50,65.22,1155.55,2553.59,0.00,1.601879,10.670149,251,358,118.708111,0.021447,28146136,17311080,0,0,47165,0,1,1 +1773607813.536683,36.27,4,3992.50,65.80,1114.33,2576.25,0.00,25156.493648,26245.949330,1752357,2341108,119.510842,0.035962,28158580,17313894,0,0,47167,0,1,1 +1773607820.103369,17.31,4,3992.50,66.57,1071.87,2606.39,0.00,2679005079123.606445,2679005078286.655762,205,0,60.321233,0.013220,28166802,17315170,0,0,47170,0,1,1 +1773607823.534597,40.07,4,3992.50,66.25,1086.40,2594.01,0.00,5127081721848.397461,0.000000,75,0,128.962675,0.028545,28174762,17316693,0,0,47172,0,1,1 +1773607828.536332,17.75,4,3992.50,66.78,1062.34,2614.70,0.00,1.602081,10.671492,251,358,53.356437,0.012271,28179529,17317622,0,0,47175,0,1,1 +1773607833.536676,8.85,4,3992.50,66.82,1063.23,2616.25,0.00,0.000000,0.000000,251,359,28.912084,0.007390,28182243,17318183,0,0,47177,0,1,1 +1773607838.532608,1.16,4,3992.50,66.55,1074.06,2605.47,0.00,3521301835110.030762,3521301835100.824219,205,0,2.957942,0.001227,28182579,17318281,0,0,47180,0,1,1 +1773607843.535958,11.55,4,3992.50,66.60,1070.69,2607.69,0.00,1.830805,0.000195,246,2,65.905745,0.015541,28188632,17319514,0,0,47182,0,1,1 +1773607848.536222,3.61,4,3992.50,59.81,1334.85,2341.62,0.00,3518251080733.366699,3518251080735.325195,75,0,3.094764,0.000967,28188920,17319591,0,0,47185,0,1,1 +1773607853.535920,0.80,4,3992.50,59.54,1345.34,2331.13,0.00,3518649892972.197266,0.000000,11,0,0.000025,0.000051,28188922,17319595,0,0,47187,0,1,1 +1773607858.535999,0.70,4,3992.50,59.54,1345.19,2331.28,0.00,0.053515,0.000000,75,0,0.000025,0.000061,28188924,17319600,0,0,47190,0,1,1 +1773607863.531816,1.61,4,3992.50,59.25,1377.98,2319.60,0.00,3521382711708.947754,0.000000,11,0,0.003266,0.001728,28188994,17319655,0,0,47192,0,1,1 +1773607868.531810,0.75,4,3992.50,59.25,1377.76,2319.84,0.00,2.012307,0.000195,246,2,0.000031,0.000055,28188996,17319660,0,0,47195,0,1,1 +1773607873.531811,0.75,4,3992.50,59.17,1380.77,2316.83,0.00,3518436011909.255859,3518436011911.268555,11,0,0.000000,0.000020,28188996,17319662,0,0,47197,0,1,1 +1773607878.531835,1.05,4,3992.50,59.12,1380.88,2314.70,0.00,0.000000,0.000000,11,0,0.000000,0.000030,28188996,17319665,0,0,47200,0,1,1 +1773607883.536650,0.70,4,3992.50,59.06,1382.97,2312.22,0.00,0.000000,0.000000,11,0,0.000000,0.000020,28188996,17319667,0,0,47202,0,1,1 +1773607888.531876,0.65,4,3992.50,59.08,1381.99,2313.20,0.00,25205.407175,27218.259486,1754016,2347090,0.000000,0.000030,28188996,17319670,0,0,47205,0,1,1 +1773607893.531874,0.70,4,3992.50,59.08,1382.00,2313.20,0.00,3518438690297.307617,3518438688286.376953,11,0,0.000000,0.000020,28188996,17319672,0,0,47207,0,1,1 +1773607898.531845,0.75,4,3992.50,59.09,1381.78,2313.42,0.00,0.180274,0.000000,205,0,0.000000,0.000020,28188996,17319674,0,0,47209,0,1,1 +1773607903.535894,0.70,4,3992.50,59.09,1381.78,2313.42,0.00,25160.781327,27170.284718,1754016,2347110,0.000000,0.000030,28188996,17319677,0,0,47212,0,1,1 +1773607908.536297,7.91,4,3992.50,59.56,1343.94,2332.07,0.00,3518154021558.937988,3518154019557.167480,251,367,0.000126,0.000829,28189006,17319694,0,0,47215,0,1,1 +1773607913.531801,4.01,4,3992.50,59.80,1332.25,2341.45,0.00,3521603583381.224609,3521603583372.197754,11,0,0.000016,0.000036,28189008,17319698,0,0,47217,0,1,1 +1773607918.535910,3.00,4,3992.50,59.81,1336.09,2341.53,0.00,0.000000,0.000000,11,0,0.000000,0.000030,28189008,17319701,0,0,47220,0,1,1 +1773607923.532213,8.94,4,3992.50,59.28,1354.99,2321.05,0.00,0.180407,0.000000,205,0,0.000000,0.000020,28189008,17319703,0,0,47222,0,1,1 +1773607928.531903,0.70,4,3992.50,59.29,1354.84,2321.26,0.00,3518655381702.553711,0.000000,75,0,0.000000,0.000030,28189008,17319706,0,0,47225,0,1,1 +1773607933.536056,6.27,4,3992.50,59.83,1332.30,2342.46,0.00,1.601307,10.666337,251,367,0.000000,0.000020,28189008,17319708,0,0,47227,0,1,1 +1773607938.536579,0.55,4,3992.50,59.81,1332.90,2341.84,0.00,0.000000,0.000000,251,367,0.000000,0.000030,28189008,17319711,0,0,47230,0,1,1 +1773607943.540554,2.90,4,3992.50,61.33,1303.11,2401.33,0.00,25160.115066,28268.672493,1754202,2353926,0.002901,0.002673,28189066,17319757,0,0,47232,0,1,1 +1773607948.536533,40.12,4,3992.50,66.05,1118.52,2585.91,0.00,0.000000,0.049356,1754202,2353953,116.858967,0.036556,28201300,17322539,0,0,47235,0,1,1 +1773607953.534885,29.06,4,3992.50,65.71,1131.85,2572.57,0.00,3519597397161.897949,3519597394040.771973,11,0,121.206646,0.023381,28213745,17324338,0,0,47237,0,1,1 +1773607958.535736,30.03,4,3992.50,65.85,1125.99,2578.36,0.00,0.180243,0.000000,205,0,121.145899,0.031388,28226161,17326779,0,0,47240,0,1,1 +1773607963.531830,29.02,4,3992.50,65.31,1147.44,2556.90,0.00,3521187800226.446289,0.000000,75,0,120.258235,0.037246,28238443,17329710,0,0,47242,0,1,1 +1773607968.537351,29.43,4,3992.50,65.36,1145.36,2559.04,0.00,3514556394942.996094,0.000000,11,0,120.030694,0.038371,28250625,17332686,0,0,47245,0,1,1 +1773607973.531842,29.72,4,3992.50,65.28,1148.47,2556.05,0.00,25209.547647,28333.174317,1754202,2354019,119.094102,0.039625,28262736,17335726,0,0,47247,0,1,1 +1773607978.531823,29.36,4,3992.50,65.36,1145.76,2558.79,0.00,3518450156930.845703,3518450153810.648926,11,0,119.363787,0.034972,28274874,17338404,0,0,47250,0,1,1 +1773607983.536376,29.53,4,3992.50,65.45,1141.85,2562.65,0.00,2.010474,0.000195,246,2,119.852324,0.046055,28286961,17341993,0,0,47252,0,1,1 +1773607988.535955,5.82,4,3992.50,62.06,1274.77,2429.75,0.00,25181.957707,28304.637505,1754209,2354118,67.698319,0.028787,28293811,17344249,0,0,47255,0,1,1 +1773607993.536732,1.05,4,3992.50,60.33,1342.35,2362.20,0.00,3517890737774.235352,3517890734652.303223,246,2,0.003098,0.002199,28293868,17344293,0,0,47257,0,1,1 +1773607998.535979,1.15,4,3992.50,59.72,1369.02,2338.07,0.00,3518966971764.132324,3518966971765.964355,205,0,0.001779,0.001572,28293893,17344312,0,0,47260,0,1,1 +1773608003.536545,5.95,4,3992.50,59.44,1361.00,2327.22,0.00,1.475712,10.673986,251,377,0.000000,0.000020,28293893,17344314,0,0,47262,0,1,1 +1773608008.532258,8.14,4,3992.50,61.20,1291.36,2395.95,0.00,3521456430265.739258,3521456430256.659180,75,0,0.001065,0.001076,28293915,17344334,0,0,47265,0,1,1 +1773608013.532949,0.70,4,3992.50,60.44,1321.00,2366.31,0.00,0.000000,0.000000,75,0,0.000000,0.000020,28293915,17344336,0,0,47267,0,1,1 +1773608018.536399,0.70,4,3992.50,60.09,1334.85,2352.46,0.00,25164.534588,28754.763590,1754219,2357162,0.000000,0.000020,28293915,17344338,0,0,47269,0,1,1 +1773608023.534387,3.46,4,3992.50,59.95,1338.11,2347.00,0.00,0.000000,92.423120,1754219,2357742,0.000000,0.000030,28293915,17344341,0,0,47272,0,1,1 +1773608028.534921,7.96,4,3992.50,60.30,1324.94,2360.93,0.00,3518061399160.103027,3518061395484.476562,251,379,0.000000,0.000674,28293915,17344348,0,0,47275,0,1,1 +1773608033.535880,0.75,4,3992.50,60.11,1332.61,2353.29,0.00,3517762696176.917480,3517762696167.900879,11,0,0.000000,0.000020,28293915,17344350,0,0,47277,0,1,1 +1773608038.536028,1.70,4,3992.50,59.45,1368.95,2327.57,0.00,1.656103,10.674880,251,382,0.000076,0.000123,28293921,17344359,0,0,47280,0,1,1 +1773608043.536206,0.75,4,3992.50,59.33,1373.48,2323.05,0.00,25169.834447,29191.090248,1752730,2359465,0.000058,0.000090,28293926,17344366,0,0,47282,0,1,1 +1773608048.533789,0.65,4,3992.50,59.33,1373.52,2323.02,0.00,3520139113241.960449,3520139109209.412109,205,0,0.000008,0.000038,28293927,17344370,0,0,47285,0,1,1 +1773608053.533634,1.00,4,3992.50,58.89,1390.76,2305.77,0.00,3518546361228.237305,0.000000,11,0,0.001434,0.000785,28293954,17344392,0,0,47287,0,1,1 +1773608058.535824,40.27,4,3992.50,64.92,1154.56,2541.90,0.00,0.000000,0.000000,11,0,106.705812,0.040203,28305107,17347287,0,0,47289,0,1,1 +1773608063.532564,30.63,4,3992.50,64.91,1155.16,2541.24,0.00,25188.813290,29221.975149,1752730,2359537,122.253036,0.032544,28317724,17349830,0,0,47292,0,1,1 +1773608068.533085,29.05,4,3992.50,65.16,1145.12,2551.32,0.00,0.000000,0.038473,1752730,2359574,120.356970,0.029850,28330174,17352179,0,0,47295,0,1,1 +1773608073.535544,29.94,4,3992.50,64.88,1156.35,2540.07,0.00,3516707506599.213379,3516707502568.613281,246,2,120.708190,0.030565,28342584,17354582,0,0,47297,0,1,1 +1773608078.535694,29.81,4,3992.50,64.99,1153.61,2544.55,0.00,25179.185296,29212.800928,1754219,2359992,119.360109,0.031387,28354739,17356971,0,0,47300,0,1,1 +1773608083.535671,29.34,4,3992.50,65.74,1124.49,2573.68,0.00,3518453320737.570801,3518453316703.815430,246,2,120.165500,0.027568,28367061,17359133,0,0,47302,0,1,1 +1773608088.536537,29.75,4,3992.50,65.23,1144.23,2553.91,0.00,3517828203871.320801,10.673152,251,382,119.542124,0.032636,28379259,17361653,0,0,47305,0,1,1 +1773608093.535843,30.53,4,3992.50,65.38,1138.17,2559.95,0.00,25174.229191,29196.610224,1752730,2359717,118.779234,0.041446,28391409,17364910,0,0,47307,0,1,1 +1773608098.535877,16.16,4,3992.50,67.74,1027.82,2652.08,0.00,3518412822220.608398,3518412818189.614258,205,0,77.504740,0.022161,28398932,17366633,0,0,47309,0,1,1 +1773608103.531843,3.12,4,3992.50,60.34,1317.28,2362.63,0.00,1.477071,10.683815,251,382,0.000237,0.000445,28398938,17366642,0,0,47312,0,1,1 +1773608108.536268,1.15,4,3992.50,59.35,1354.78,2323.56,0.00,25158.162502,29617.238338,1754253,2362608,0.000008,0.000038,28398939,17366646,0,0,47315,0,1,1 +1773608113.536639,1.15,4,3992.50,59.14,1361.43,2315.42,0.00,3518175733286.040527,3518175728814.332031,11,0,0.000000,0.000020,28398939,17366648,0,0,47317,0,1,1 +1773608118.535977,5.48,4,3992.50,59.79,1340.33,2340.90,0.00,2.012571,0.000195,246,2,0.000308,0.000584,28398946,17366662,0,0,47320,0,1,1 +1773608123.535779,0.65,4,3992.50,59.79,1340.36,2340.90,0.00,3518576775341.783691,10.675423,251,382,0.001152,0.001253,28398957,17366680,0,0,47322,0,1,1 +1773608128.536668,0.50,4,3992.50,59.73,1342.52,2338.74,0.00,3517811775015.430664,3517811775006.359863,75,0,0.000008,0.000038,28398958,17366684,0,0,47325,0,1,1 +1773608133.531913,0.65,4,3992.50,59.66,1345.43,2335.83,0.00,3521786494048.572754,0.000000,11,0,0.000000,0.000020,28398958,17366686,0,0,47327,0,1,1 +1773608138.536600,0.80,4,3992.50,59.05,1369.36,2312.12,0.00,0.000000,0.000000,11,0,0.000107,0.000148,28398966,17366697,0,0,47330,0,1,1 +1773608143.536383,1.50,4,3992.50,59.33,1375.61,2322.95,0.00,0.180281,0.000000,205,0,0.004302,0.002800,28399050,17366769,0,0,47332,0,1,1 +1773608148.534121,1.00,4,3992.50,59.45,1381.88,2327.57,0.00,25183.844488,29970.469718,1752803,2364388,0.000000,0.000711,28399050,17366777,0,0,47335,0,1,1 +1773608153.533913,0.65,4,3992.50,59.41,1383.54,2325.91,0.00,3518584099374.770508,3518584094590.291016,11,0,0.000000,0.000020,28399050,17366779,0,0,47337,0,1,1 +1773608158.536637,0.85,4,3992.50,59.41,1383.29,2326.15,0.00,0.000000,0.000000,11,0,0.000000,0.000030,28399050,17366782,0,0,47340,0,1,1 +1773608163.536760,0.60,4,3992.50,59.41,1383.29,2326.15,0.00,1.656112,10.674933,251,388,0.000031,0.000045,28399052,17366786,0,0,47342,0,1,1 +1773608168.531991,0.70,4,3992.50,59.41,1383.29,2326.15,0.00,25204.579226,29985.534330,1754292,2364796,0.000039,0.000063,28399055,17366792,0,0,47345,0,1,1 +1773608173.534561,0.75,4,3992.50,59.36,1385.45,2323.99,0.00,3516629382853.804199,3516629382852.721680,1752803,2364439,0.000000,0.000020,28399055,17366794,0,0,47347,0,1,1 +1773608178.531895,0.95,4,3992.50,59.53,1378.35,2330.86,0.00,9.566624,10.710789,1754292,2364846,0.000000,0.000030,28399055,17366797,0,0,47350,0,1,1 +1773608183.533626,0.60,4,3992.50,59.54,1377.67,2331.11,0.00,3517219669271.286621,3517219664487.468750,11,0,0.000000,0.000020,28399055,17366799,0,0,47352,0,1,1 +1773608188.536610,0.75,4,3992.50,59.57,1376.48,2332.30,0.00,0.180166,0.000000,205,0,0.000188,0.000235,28399069,17366816,0,0,47355,0,1,1 +1773608193.536191,5.88,4,3992.50,60.85,1307.59,2382.45,0.00,3518731746435.093750,0.000000,11,0,0.000016,0.000036,28399071,17366820,0,0,47357,0,1,1 +1773608198.536074,5.13,4,3992.50,60.40,1326.00,2364.81,0.00,25182.791519,30278.979849,1754304,2366798,0.000000,0.000674,28399071,17366827,0,0,47360,0,1,1 +1773608203.531803,4.02,4,3992.50,59.31,1368.32,2322.01,0.00,3521445754827.645508,3521445749727.038086,205,0,0.000000,0.000020,28399071,17366829,0,0,47362,0,1,1 +1773608208.536111,4.46,4,3992.50,59.78,1348.08,2340.46,0.00,3515408054882.668457,0.000000,75,0,0.000000,0.000030,28399071,17366832,0,0,47365,0,1,1 +1773608213.532685,6.27,4,3992.50,60.25,1331.89,2358.82,0.00,0.126845,0.000000,205,0,0.000000,0.000020,28399071,17366834,0,0,47367,0,1,1 +1773608218.531913,0.75,4,3992.50,60.08,1338.30,2352.40,0.00,1.476107,10.676843,251,394,0.000000,0.000664,28399071,17366840,0,0,47369,0,1,1 +1773608223.536148,0.80,4,3992.50,60.03,1340.47,2350.23,0.00,0.000000,0.000000,251,394,0.000000,0.000030,28399071,17366843,0,0,47372,0,1,1 +1773608228.531797,1.26,4,3992.50,60.00,1364.04,2349.25,0.00,25192.924202,30792.858083,1752835,2369630,0.001372,0.000736,28399093,17366862,0,0,47375,0,1,1 +1773608233.536187,38.47,4,3992.50,66.09,1125.86,2587.40,0.00,9.553136,10.669539,1754324,2370062,90.449271,0.032287,28408452,17369189,0,0,47377,0,1,1 +1773608238.535822,29.64,4,3992.50,65.84,1135.63,2577.62,0.00,3518693689433.553711,3518693683827.948242,11,0,119.774198,0.016899,28420716,17370455,0,0,47380,0,1,1 +1773608243.536050,28.93,4,3992.50,65.84,1135.75,2577.64,0.00,0.180265,0.000000,205,0,118.555737,0.023349,28432691,17372244,0,0,47382,0,1,1 +1773608248.536225,29.18,4,3992.50,65.61,1144.53,2568.88,0.00,3518314326125.876465,0.000000,11,0,119.764162,0.027734,28444947,17374378,0,0,47385,0,1,1 +1773608253.535569,29.00,4,3992.50,65.81,1136.82,2576.61,0.00,25175.959394,30780.917336,1752835,2369795,118.585269,0.042092,28457122,17377666,0,0,47387,0,1,1 +1773608258.534990,29.06,4,3992.50,65.92,1132.66,2580.75,0.00,3518844423094.472168,3518844417489.600586,11,0,119.794752,0.061545,28469700,17382463,0,0,47390,0,1,1 +1773608263.533699,29.57,4,3992.50,65.77,1138.20,2575.23,0.00,25179.158478,30784.982289,1752835,2369822,118.805057,0.048568,28482055,17386230,0,0,47392,0,1,1 +1773608268.531862,29.56,4,3992.50,65.49,1149.18,2564.27,0.00,9.565039,10.684493,1754324,2370234,119.809540,0.030307,28494245,17388582,0,0,47395,0,1,1 +1773608273.534916,13.24,4,3992.50,60.86,1325.34,2382.86,0.00,3516289012417.695801,3516289006815.442383,205,0,99.874602,0.015265,28504360,17389737,0,0,47397,0,1,1 +1773608278.531899,1.85,4,3992.50,60.11,1354.77,2353.41,0.00,1.833138,0.000195,246,2,0.003127,0.001464,28504419,17389779,0,0,47400,0,1,1 +1773608283.531837,0.70,4,3992.50,59.57,1375.88,2332.32,0.00,3518481116710.919434,3518481116712.751465,205,0,0.000000,0.000020,28504419,17389781,0,0,47402,0,1,1 +1773608288.532475,7.65,4,3992.50,59.48,1361.46,2328.70,0.00,1.831797,0.000195,246,2,0.000000,0.000030,28504419,17389784,0,0,47405,0,1,1 +1773608293.531821,3.61,4,3992.50,60.10,1337.14,2353.06,0.00,3518898068406.168457,10.676398,251,403,0.000000,0.000664,28504419,17389790,0,0,47407,0,1,1 +1773608298.531896,5.42,4,3992.50,59.17,1366.80,2316.73,0.00,3518384391598.733887,3518384391589.715332,11,0,0.001779,0.001559,28504444,17389808,0,0,47410,0,1,1 +1773608303.531795,4.31,4,3992.50,59.45,1362.33,2327.60,0.00,25182.891165,31422.259627,1754377,2374115,0.000016,0.000680,28504446,17389816,0,0,47412,0,1,1 +1773608308.533795,6.63,4,3992.50,59.72,1349.19,2338.27,0.00,3517030444677.229980,3517030438440.428223,75,0,0.001733,0.001352,28504471,17389834,0,0,47415,0,1,1 +1773608313.535214,2.61,4,3992.50,59.37,1364.51,2324.47,0.00,25165.641948,31711.472385,1752906,2375624,0.000000,0.000020,28504471,17389836,0,0,47417,0,1,1 +1773608318.531820,4.12,4,3992.50,59.99,1341.76,2348.64,0.00,0.003909,162.961415,1752911,2376551,0.000000,0.000030,28504471,17389839,0,0,47420,0,1,1 +1773608323.531911,1.30,4,3992.50,59.49,1378.88,2329.15,0.00,3518372971292.661621,3518372964582.248535,75,0,0.000076,0.000113,28504477,17389847,0,0,47422,0,1,1 +1773608328.536088,0.90,4,3992.50,59.65,1368.30,2335.39,0.00,1.601299,10.666284,251,410,0.000008,0.000681,28504478,17389855,0,0,47425,0,1,1 +1773608333.536634,0.75,4,3992.50,59.47,1372.00,2328.24,0.00,25168.440060,31890.107650,1752911,2376729,0.000000,0.000020,28504478,17389857,0,0,47427,0,1,1 +1773608338.536149,0.70,4,3992.50,59.47,1372.00,2328.24,0.00,0.000000,0.011720,1752911,2376737,0.000000,0.000020,28504478,17389859,0,0,47429,0,1,1 +1773608343.535844,35.75,4,3992.50,65.39,1139.99,2560.12,0.00,3518652146614.939941,3518652139882.916504,205,0,80.120708,0.040857,28512845,17392852,0,0,47432,0,1,1 +1773608348.536775,30.10,4,3992.50,65.33,1142.46,2557.68,0.00,3517782162666.509277,0.000000,11,0,118.139538,0.052168,28524796,17396920,0,0,47435,0,1,1 +1773608353.532334,29.22,4,3992.50,65.38,1140.54,2559.59,0.00,0.053563,0.000000,75,0,119.470250,0.031900,28536988,17399368,0,0,47437,0,1,1 +1773608358.531791,28.19,4,3992.50,65.48,1136.54,2563.61,0.00,1.602811,10.676354,251,410,118.973908,0.036175,28549015,17402191,0,0,47440,0,1,1 +1773608363.535614,30.65,4,3992.50,65.51,1135.04,2565.00,0.00,25161.508689,31880.115264,1754400,2377345,119.871802,0.045860,28561111,17405751,0,0,47442,0,1,1 +1773608368.531800,29.10,4,3992.50,65.34,1141.96,2558.14,0.00,3521123280162.293945,3521123280161.208008,1752911,2376968,118.449660,0.044449,28573030,17409253,0,0,47445,0,1,1 +1773608373.536323,29.36,4,3992.50,65.25,1145.48,2554.68,0.00,3515256975018.952637,3515256968302.370605,251,410,120.054957,0.047132,28585146,17412894,0,0,47447,0,1,1 +1773608378.535007,29.41,4,3992.50,65.29,1143.91,2556.28,0.00,0.000000,0.000000,251,410,118.190713,0.047452,28597002,17416606,0,0,47450,0,1,1 +1773608383.535956,19.97,4,3992.50,59.94,1334.73,2346.73,0.00,0.356085,3517770037753.366699,246,2,112.130720,0.039848,28608331,17419743,0,0,47452,0,1,1 +1773608388.532760,7.60,4,3992.50,59.45,1353.12,2327.66,0.00,25196.589981,32367.550721,1754413,2380078,0.000031,0.000699,28608333,17419752,0,0,47455,0,1,1 +1773608393.536541,6.66,4,3992.50,59.85,1339.59,2343.09,0.00,3515778217510.716797,3515778210351.586426,205,0,0.000000,0.000020,28608333,17419754,0,0,47457,0,1,1 +1773608398.536933,2.11,4,3992.50,60.56,1308.09,2371.18,0.00,3518161524338.707520,0.000000,11,0,0.001640,0.002182,28608353,17419786,0,0,47460,0,1,1 +1773608403.536150,5.23,4,3992.50,59.68,1343.69,2336.67,0.00,25186.513711,32869.398306,1754472,2383284,0.000000,0.000020,28608353,17419788,0,0,47462,0,1,1 +1773608408.531897,2.06,4,3992.50,60.14,1327.16,2354.42,0.00,3521432282291.360840,3521432274612.167969,251,410,0.000000,0.000030,28608353,17419791,0,0,47465,0,1,1 +1773608413.531826,2.18,4,3992.50,58.70,1385.58,2298.31,0.00,25182.771311,32929.580143,1756025,2383651,0.000025,0.000032,28608355,17419794,0,0,47467,0,1,1 +1773608418.536302,1.75,4,3992.50,58.93,1399.80,2307.36,0.00,3515290202403.270996,3515290194654.436035,75,0,0.003639,0.002142,28608413,17419835,0,0,47469,0,1,1 +1773608423.531825,0.75,4,3992.50,58.70,1404.68,2298.20,0.00,0.126871,0.000000,205,0,0.000205,0.000562,28608420,17419849,0,0,47472,0,1,1 +1773608428.531796,0.70,4,3992.50,58.70,1404.68,2298.20,0.00,3518457722898.926758,0.000000,11,0,0.000000,0.000674,28608420,17419856,0,0,47475,0,1,1 +1773608433.531820,0.65,4,3992.50,58.70,1404.68,2298.20,0.00,25174.503819,32929.643516,1754581,2383657,0.000000,0.000020,28608420,17419858,0,0,47477,0,1,1 +1773608438.531819,0.80,4,3992.50,58.70,1404.68,2298.20,0.00,3518438095689.739746,3518438087932.548340,246,2,0.001229,0.001254,28608429,17419875,0,0,47480,0,1,1 +1773608443.531761,0.70,4,3992.50,58.70,1404.70,2298.18,0.00,3518477864189.212891,3518477864191.225098,11,0,0.000087,0.000101,28608435,17419883,0,0,47482,0,1,1 +1773608448.534272,1.00,4,3992.50,58.90,1398.02,2306.02,0.00,0.180183,0.000000,205,0,0.000008,0.000681,28608436,17419891,0,0,47485,0,1,1 +1773608453.531822,0.80,4,3992.50,58.70,1405.93,2298.13,0.00,3520162098872.006836,0.000000,75,0,0.000000,0.000020,28608436,17419893,0,0,47487,0,1,1 +1773608458.535328,0.70,4,3992.50,58.74,1404.21,2299.85,0.00,0.000000,0.000000,75,0,0.000000,0.000030,28608436,17419896,0,0,47490,0,1,1 +1773608463.536536,0.60,4,3992.50,58.55,1411.84,2292.22,0.00,25178.051923,32932.621081,1756070,2384156,0.000101,0.000144,28608444,17419906,0,0,47492,0,1,1 +1773608468.532675,0.75,4,3992.50,58.55,1411.60,2292.46,0.00,3521156358670.162109,3521156350916.804688,251,416,0.000031,0.000055,28608446,17419911,0,0,47495,0,1,1 +1773608473.535830,0.75,4,3992.50,58.55,1411.60,2292.46,0.00,25166.647402,32909.139907,1756070,2384167,0.000008,0.000028,28608447,17419914,0,0,47497,0,1,1 +1773608478.531823,1.00,4,3992.50,58.75,1408.63,2300.26,0.00,0.000000,0.032839,1756070,2384184,0.000000,0.000674,28608447,17419921,0,0,47500,0,1,1 +1773608483.532729,39.40,4,3992.50,64.54,1181.77,2527.04,0.00,3517800009509.865234,3517800001763.855957,251,416,89.912568,0.043364,28617803,17423115,0,0,47502,0,1,1 +1773608488.531792,28.54,4,3992.50,65.14,1158.48,2550.39,0.00,3519096832614.818359,3519096832605.744629,75,0,119.786113,0.037620,28629954,17426054,0,0,47505,0,1,1 +1773608493.536500,28.28,4,3992.50,64.80,1171.71,2537.22,0.00,0.126639,0.000000,205,0,118.052733,0.038983,28642058,17429093,0,0,47507,0,1,1 +1773608498.536011,28.90,4,3992.50,64.74,1174.16,2534.68,0.00,1.476023,10.676238,251,416,120.177067,0.039056,28654368,17432165,0,0,47510,0,1,1 +1773608503.536288,28.88,4,3992.50,64.67,1177.13,2531.79,0.00,25171.578384,32917.583093,1754581,2383880,118.556999,0.023067,28666514,17433965,0,0,47512,0,1,1 +1773608508.533411,28.61,4,3992.50,64.81,1171.36,2537.47,0.00,3520462625554.440430,3520462617803.547852,251,416,119.833323,0.037912,28678786,17436938,0,0,47515,0,1,1 +1773608513.536531,29.28,4,3992.50,64.79,1168.73,2536.69,0.00,25157.274014,32899.035653,1754581,2384005,118.490041,0.037201,28690930,17439818,0,0,47517,0,1,1 +1773608518.531882,28.78,4,3992.50,64.93,1163.30,2542.21,0.00,3521711817156.690918,3521711809402.889160,251,416,119.875416,0.029662,28703176,17442144,0,0,47520,0,1,1 +1773608523.535837,13.74,4,3992.50,58.30,1423.14,2282.45,0.00,25153.105066,32893.665860,1754586,2384057,100.658633,0.038071,28713441,17445105,0,0,47522,0,1,1 +1773608528.531859,0.85,4,3992.50,58.31,1422.86,2282.77,0.00,3521238853176.581543,3521238845414.701660,11,0,0.003120,0.001456,28713499,17445146,0,0,47525,0,1,1 +1773608533.535894,0.85,4,3992.50,58.33,1421.89,2283.75,0.00,0.053472,0.000000,75,0,0.000000,0.000663,28713499,17445152,0,0,47527,0,1,1 +1773608538.536126,1.00,4,3992.50,58.42,1418.25,2287.36,0.00,25183.035722,32939.732411,1756081,2384538,0.000000,0.000030,28713499,17445155,0,0,47530,0,1,1 +1773608543.536592,0.65,4,3992.50,58.43,1418.00,2287.58,0.00,3518109820062.074707,3518109812305.793457,11,0,0.000000,0.000020,28713499,17445157,0,0,47532,0,1,1 +1773608548.536368,0.60,4,3992.50,58.43,1418.00,2287.58,0.00,0.000000,0.000000,11,0,0.000000,0.000030,28713499,17445160,0,0,47535,0,1,1 +1773608553.535460,1.40,4,3992.50,58.27,1424.02,2281.57,0.00,0.000000,0.000000,11,0,0.000000,0.000020,28713499,17445162,0,0,47537,0,1,1 +1773608558.531792,0.60,4,3992.50,58.27,1424.02,2281.57,0.00,0.000000,0.000000,11,0,0.000000,0.000030,28713499,17445165,0,0,47540,0,1,1 +1773608563.535762,0.70,4,3992.50,58.27,1424.02,2281.57,0.00,0.000000,0.000000,11,0,0.000000,0.000020,28713499,17445167,0,0,47542,0,1,1 +1773608568.531818,1.05,4,3992.50,58.89,1399.91,2305.68,0.00,25204.138704,32967.380262,1756081,2384647,0.000025,0.000061,28713501,17445172,0,0,47545,0,1,1 +1773608573.531914,0.65,4,3992.50,58.75,1405.50,2300.05,0.00,3518369642965.909668,3518369635217.959473,251,416,0.000101,0.000144,28713509,17445182,0,0,47547,0,1,1 +1773608578.531804,0.60,4,3992.50,58.56,1412.65,2292.90,0.00,3518515004655.702637,3518515004646.683594,11,0,0.000016,0.000046,28713511,17445187,0,0,47550,0,1,1 +1773608583.532645,0.70,4,3992.50,58.56,1412.65,2292.89,0.00,25170.459450,32925.184778,1754592,2384253,0.000000,0.000020,28713511,17445189,0,0,47552,0,1,1 +1773608588.532370,0.65,4,3992.50,58.57,1412.42,2293.12,0.00,0.000000,0.006250,1754592,2384259,0.000000,0.000030,28713511,17445192,0,0,47555,0,1,1 +1773608593.531816,38.61,4,3992.50,64.56,1177.92,2527.61,0.00,3518827220370.325195,3518827212613.428223,11,0,80.526092,0.034614,28721983,17447690,0,0,47557,0,1,1 +1773608598.531739,30.33,4,3992.50,65.03,1159.21,2546.22,0.00,2.012335,0.000195,246,2,118.161451,0.043511,28733775,17451016,0,0,47560,0,1,1 +1773608603.536242,29.70,4,3992.50,65.17,1153.26,2551.60,0.00,3515271456647.329102,3515271456649.159668,205,0,119.056242,0.036412,28745877,17453783,0,0,47562,0,1,1 +1773608608.532064,29.43,4,3992.50,64.99,1160.59,2544.35,0.00,3521379544748.120117,0.000000,11,0,119.265311,0.029601,28758090,17456028,0,0,47565,0,1,1 +1773608613.535617,29.42,4,3992.50,64.76,1169.46,2535.53,0.00,25166.376648,32918.145814,1756081,2384811,119.278171,0.027274,28770259,17458159,0,0,47567,0,1,1 +1773608618.531830,29.18,4,3992.50,64.67,1173.14,2531.87,0.00,3521103861954.269531,3521103861953.162109,1754592,2384408,119.054639,0.027914,28782435,17460289,0,0,47570,0,1,1 +1773608623.531792,29.45,4,3992.50,64.87,1165.25,2539.72,0.00,3518464166810.198242,3518464159053.968750,11,0,119.363177,0.027233,28794548,17462424,0,0,47572,0,1,1 +1773608628.531782,29.89,4,3992.50,64.96,1161.48,2543.51,0.00,0.000000,0.000000,11,0,118.963141,0.036981,28806660,17465314,0,0,47575,0,1,1 +1773608633.531820,16.91,4,3992.50,60.62,1331.03,2373.47,0.00,0.053515,0.000000,75,0,111.749500,0.043197,28817873,17468717,0,0,47577,0,1,1 +1773608638.531909,1.05,4,3992.50,59.25,1385.20,2319.87,0.00,1.602608,10.675005,251,416,0.003256,0.001704,28817942,17468769,0,0,47580,0,1,1 +1773608643.534578,0.80,4,3992.50,58.97,1396.40,2308.68,0.00,25159.746934,32903.142006,1754603,2384614,0.000025,0.000051,28817944,17468773,0,0,47582,0,1,1 +1773608648.531875,0.70,4,3992.50,58.97,1396.38,2308.70,0.00,9.566695,10.710869,1756092,2385038,0.000000,0.000030,28817944,17468776,0,0,47585,0,1,1 +1773608653.531906,0.65,4,3992.50,58.94,1397.48,2307.59,0.00,3518415367412.480469,3518415359654.838379,11,0,0.000025,0.000051,28817946,17468780,0,0,47587,0,1,1 +1773608658.531830,1.30,4,3992.50,59.14,1389.45,2315.62,0.00,0.000000,0.000000,11,0,0.000000,0.000030,28817946,17468783,0,0,47590,0,1,1 +1773608663.533654,0.75,4,3992.50,58.93,1397.93,2307.14,0.00,0.000000,0.000000,11,0,0.000000,0.000020,28817946,17468785,0,0,47592,0,1,1 +1773608668.531835,0.65,4,3992.50,58.92,1398.38,2306.69,0.00,2.013037,0.000195,246,2,0.000000,0.000674,28817946,17468792,0,0,47595,0,1,1 +1773608673.536478,0.65,4,3992.50,58.89,1399.22,2305.84,0.00,25149.465509,32900.963297,1754603,2384697,0.000000,0.000020,28817946,17468794,0,0,47597,0,1,1 +1773608678.535830,0.70,4,3992.50,58.89,1399.22,2305.84,0.00,3518893201301.178223,3518893193543.309082,205,0,0.000000,0.000030,28817946,17468797,0,0,47600,0,1,1 +1773608683.531897,0.65,4,3992.50,58.89,1399.23,2305.84,0.00,3521207408245.544434,0.000000,11,0,0.000126,0.000175,28817956,17468809,0,0,47602,0,1,1 +1773608688.533683,0.75,4,3992.50,58.70,1406.86,2298.20,0.00,0.180209,0.000000,205,0,0.000016,0.000046,28817958,17468814,0,0,47605,0,1,1 +1773608693.531832,0.95,4,3992.50,58.69,1410.49,2298.02,0.00,1.476425,10.679148,251,416,0.000000,0.000020,28817958,17468816,0,0,47607,0,1,1 +1773608698.532997,0.75,4,3992.50,58.69,1410.71,2297.79,0.00,3517617774192.857422,3517617774183.840332,11,0,0.001434,0.001776,28817974,17468843,0,0,47609,0,1,1 +1773608703.535441,33.15,4,3992.50,64.89,1167.81,2540.63,0.00,0.000000,0.000000,11,0,82.479365,0.033555,28826620,17471258,0,0,47612,0,1,1 +1773608708.536448,34.39,4,3992.50,64.99,1164.07,2544.35,0.00,2.011899,0.000195,246,2,121.745174,0.028422,28839147,17473402,0,0,47615,0,1,1 +1773608713.536431,31.69,4,3992.50,65.00,1163.58,2544.83,0.00,0.000000,0.000000,246,2,120.569756,0.022101,28851618,17475042,0,0,47617,0,1,1 +1773608718.535746,29.46,4,3992.50,64.75,1173.53,2534.91,0.00,3518919597864.565430,10.676464,251,416,120.182023,0.029247,28863933,17477317,0,0,47620,0,1,1 +1773608723.535542,29.52,4,3992.50,65.15,1157.36,2550.94,0.00,3518580384843.415039,3518580384834.395996,11,0,120.171562,0.033138,28876328,17479861,0,0,47622,0,1,1 +1773608728.536152,28.72,4,3992.50,64.78,1172.30,2536.19,0.00,0.000000,0.000000,11,0,119.349660,0.025311,28888599,17481800,0,0,47625,0,1,1 +1773608733.535565,28.48,4,3992.50,64.86,1168.98,2539.47,0.00,0.000000,0.000000,11,0,119.579998,0.025114,28900896,17483706,0,0,47627,0,1,1 +1773608738.532176,28.67,4,3992.50,64.98,1164.23,2544.26,0.00,25191.903618,32954.358626,1754603,2385056,119.644455,0.018041,28913075,17485077,0,0,47630,0,1,1 +1773608743.536393,14.31,4,3992.50,60.76,1329.48,2378.99,0.00,3515472060205.431641,3515472052454.721191,75,0,101.654837,0.021877,28923570,17486779,0,0,47632,0,1,1 +1773608748.536326,1.45,4,3992.50,59.63,1373.43,2334.71,0.00,1.958816,0.000195,246,2,0.003117,0.001455,28923628,17486820,0,0,47635,0,1,1 +1773608753.536798,0.65,4,3992.50,59.13,1392.69,2314.96,0.00,25170.596285,32929.236594,1754619,2385180,0.000000,0.000020,28923628,17486822,0,0,47637,0,1,1 +1773608758.532427,0.60,4,3992.50,58.94,1400.10,2307.56,0.00,3521515204217.735840,3521515196453.588867,11,0,0.000000,0.000030,28923628,17486825,0,0,47640,0,1,1 +1773608763.536175,0.65,4,3992.50,58.95,1399.58,2308.07,0.00,1.654912,10.667200,251,416,0.000000,0.000020,28923628,17486827,0,0,47642,0,1,1 +1773608768.531897,0.70,4,3992.50,58.95,1399.46,2308.20,0.00,25194.887359,32949.884275,1754619,2385198,0.000031,0.000055,28923630,17486832,0,0,47645,0,1,1 +1773608773.533550,0.65,4,3992.50,58.95,1399.46,2308.20,0.00,9.558364,10.677330,1756108,2385621,0.000008,0.000028,28923631,17486835,0,0,47647,0,1,1 +1773608778.536338,0.95,4,3992.50,59.12,1398.34,2314.65,0.00,3516475799695.153320,3516475791940.979004,11,0,0.000000,0.000030,28923631,17486838,0,0,47650,0,1,1 +1773608783.536161,0.75,4,3992.50,59.13,1397.88,2315.10,0.00,1.656211,10.675574,251,416,0.000031,0.000045,28923633,17486842,0,0,47652,0,1,1 +1773608788.536609,0.70,4,3992.50,59.13,1397.88,2315.10,0.00,0.356120,3518122059016.600586,246,2,0.000025,0.000061,28923635,17486847,0,0,47655,0,1,1 +1773608793.532350,0.65,4,3992.50,58.94,1405.28,2307.70,0.00,3521436693297.793457,3521436693299.807617,11,0,0.000101,0.000144,28923643,17486857,0,0,47657,0,1,1 +1773608798.536018,0.70,4,3992.50,58.95,1405.06,2307.92,0.00,0.000000,0.000000,11,0,0.000000,0.000673,28923643,17486864,0,0,47660,0,1,1 +1773608803.531895,0.65,4,3992.50,58.95,1405.06,2307.92,0.00,0.053560,0.000000,75,0,0.000000,0.000020,28923643,17486866,0,0,47662,0,1,1 +1773608808.533411,0.95,4,3992.50,59.14,1397.49,2315.51,0.00,1.602151,10.671960,251,416,0.000000,0.000030,28923643,17486869,0,0,47665,0,1,1 +1773608813.533449,31.70,4,3992.50,65.12,1163.22,2549.66,0.00,0.000000,0.000000,251,416,65.895571,0.030221,28930575,17489018,0,0,47667,0,1,1 +1773608818.535844,32.21,4,3992.50,65.42,1151.71,2561.21,0.00,3516752995780.934082,3516752995771.865723,75,0,118.509757,0.021076,28942821,17490588,0,0,47670,0,1,1 +1773608823.536000,29.55,4,3992.50,65.27,1157.57,2555.30,0.00,1.602586,10.674861,251,416,119.922957,0.019610,28955144,17492136,0,0,47672,0,1,1 +1773608828.531824,28.72,4,3992.50,64.99,1168.30,2544.60,0.00,3521378670714.422852,3521378670705.396484,11,0,118.503259,0.025130,28967277,17494047,0,0,47675,0,1,1 +1773608833.532864,28.96,4,3992.50,65.02,1167.32,2545.61,0.00,0.000000,0.000000,11,0,120.149412,0.052846,28979550,17498204,0,0,47677,0,1,1 +1773608838.534397,28.68,4,3992.50,65.04,1166.74,2546.26,0.00,25176.826202,32933.266942,1756108,2385885,118.951630,0.093521,28992155,17505533,0,0,47680,0,1,1 +1773608843.532785,28.48,4,3992.50,65.34,1154.74,2558.18,0.00,3519572099992.272949,3519572092239.973145,251,416,116.803251,0.028853,29003107,17507815,0,0,47682,0,1,1 +1773608848.535972,28.59,4,3992.50,65.19,1158.59,2552.20,0.00,25166.850044,32911.922698,1756108,2385995,114.132189,0.026797,29013859,17509919,0,0,47685,0,1,1 +1773608853.531760,20.66,4,3992.50,64.94,1168.50,2542.38,0.00,3521403262372.487305,3521403254615.945312,251,416,93.927658,0.021227,29022969,17511602,0,0,47687,0,1,1 +1773608858.536284,1.80,4,3992.50,59.02,1400.18,2310.71,0.00,3515257094289.522949,3515257094280.458984,75,0,38.617735,0.006197,29026807,17512063,0,0,47689,0,1,1 +1773608863.536322,0.90,4,3992.50,58.79,1408.94,2301.93,0.00,3518409933465.660156,0.000000,11,0,0.002893,0.001170,29026860,17512100,0,0,47692,0,1,1 +1773608868.536009,1.10,4,3992.50,59.35,1387.26,2323.63,0.00,0.180285,0.000000,205,0,0.000000,0.000030,29026860,17512103,0,0,47695,0,1,1 +1773608873.535767,0.60,4,3992.50,59.15,1394.92,2315.96,0.00,25185.735212,32945.482091,1756126,2386073,0.000000,0.000664,29026860,17512109,0,0,47697,0,1,1 +1773608878.532858,0.80,4,3992.50,59.42,1384.30,2326.59,0.00,3520485142846.903809,3520485135083.195801,11,0,0.000000,0.000030,29026860,17512112,0,0,47700,0,1,1 +1773608883.533091,0.75,4,3992.50,59.42,1384.51,2326.37,0.00,0.000000,0.000000,11,0,0.000000,0.000020,29026860,17512114,0,0,47702,0,1,1 +1773608888.536263,0.75,4,3992.50,59.42,1384.51,2326.37,0.00,25168.729586,32923.040388,1756126,2386112,0.000000,0.000030,29026860,17512117,0,0,47705,0,1,1 +1773608893.531819,0.55,4,3992.50,59.42,1384.46,2326.42,0.00,3521567332345.436523,3521567324577.289062,246,2,0.000000,0.000020,29026860,17512119,0,0,47707,0,1,1 +1773608898.536530,1.05,4,3992.50,59.50,1382.88,2329.38,0.00,3515124760590.093262,3515124760592.104004,11,0,0.001777,0.001557,29026885,17512137,0,0,47710,0,1,1 +1773608903.536156,0.55,4,3992.50,59.47,1383.73,2328.54,0.00,1.656276,10.675995,251,416,0.000008,0.000028,29026886,17512140,0,0,47712,0,1,1 +1773608908.535742,0.55,4,3992.50,59.44,1385.10,2327.17,0.00,0.000000,0.000000,251,416,0.001810,0.001446,29026917,17512164,0,0,47715,0,1,1 +1773608913.536141,0.55,4,3992.50,59.45,1384.61,2327.66,0.00,25181.032963,32930.717633,1756126,2386193,0.000000,0.000020,29026917,17512166,0,0,47717,0,1,1 +1773608918.533156,0.55,4,3992.50,59.46,1384.15,2328.11,0.00,3520538953903.275391,3520538946139.318359,11,0,0.000000,0.000030,29026917,17512169,0,0,47720,0,1,1 +1773608923.532295,0.70,4,3992.50,59.46,1384.15,2328.11,0.00,0.000000,0.000000,11,0,0.000000,0.000020,29026917,17512171,0,0,47722,0,1,1 +1773608928.536175,33.53,4,3992.50,65.30,1155.32,2556.61,0.00,25165.166994,32918.558369,1756126,2386269,68.246223,0.030240,29034048,17514323,0,0,47725,0,1,1 +1773608933.536052,31.02,4,3992.50,65.15,1160.99,2550.92,0.00,3518523812571.242188,3518523804820.661621,251,416,118.168023,0.043167,29046169,17517600,0,0,47727,0,1,1 +1773608938.535563,29.27,4,3992.50,65.44,1149.71,2562.20,0.00,3518781553325.570312,3518781553316.550781,11,0,119.779506,0.027233,29058498,17519617,0,0,47730,0,1,1 +1773608943.535940,28.73,4,3992.50,65.27,1156.39,2555.52,0.00,0.180260,0.000000,205,0,118.551698,0.041217,29070488,17522863,0,0,47732,0,1,1 +1773608948.535949,29.02,4,3992.50,65.24,1157.64,2554.30,0.00,3518431304251.658691,0.000000,75,0,120.165195,0.030424,29082791,17525214,0,0,47735,0,1,1 +1773608953.532308,29.25,4,3992.50,65.19,1159.58,2552.32,0.00,25202.995216,32968.230264,1756126,2386425,118.246521,0.039318,29094701,17528286,0,0,47737,0,1,1 +1773608958.535617,29.51,4,3992.50,65.37,1152.56,2559.43,0.00,3516110063130.546875,3516110055376.151855,11,0,120.086386,0.035277,29106997,17531022,0,0,47740,0,1,1 +1773608963.536666,29.18,4,3992.50,65.13,1153.76,2549.86,0.00,25179.416006,32937.517162,1756126,2386467,118.938445,0.037242,29119145,17533924,0,0,47742,0,1,1 +1773608968.531832,18.98,4,3992.50,65.09,1155.15,2548.54,0.00,3521842591174.008301,3521842591172.953125,1754638,2386074,119.477956,0.039191,29131256,17537014,0,0,47745,0,1,1 +1773608973.531922,1.00,4,3992.50,59.54,1372.43,2331.25,0.00,3518373791760.286621,3518373784001.571777,205,0,3.808364,0.002981,29131712,17537167,0,0,47747,0,1,1 +1773608978.535838,0.65,4,3992.50,59.08,1390.76,2312.93,0.00,25155.402090,32908.164731,1754650,2386137,0.000000,0.000020,29131712,17537169,0,0,47749,0,1,1 +1773608983.535788,0.75,4,3992.50,58.97,1394.95,2308.74,0.00,9.561621,10.678624,1756139,2386558,0.000000,0.000030,29131712,17537172,0,0,47752,0,1,1 +1773608988.531811,1.05,4,3992.50,59.04,1385.99,2311.64,0.00,3521237459057.283203,3521237451300.361328,251,416,0.000000,0.000030,29131712,17537175,0,0,47755,0,1,1 +1773608993.536190,0.55,4,3992.50,59.04,1385.99,2311.63,0.00,3515359059246.925781,3515359059237.915039,11,0,0.000000,0.000020,29131712,17537177,0,0,47757,0,1,1 +1773608998.536724,1.05,4,3992.50,59.39,1372.25,2325.33,0.00,2.012090,0.000195,246,2,0.000512,0.001116,29131726,17537202,0,0,47760,0,1,1 +1773609003.531903,0.65,4,3992.50,59.20,1379.78,2317.85,0.00,3521832641540.543945,3521832641542.504395,75,0,0.000008,0.000672,29131727,17537209,0,0,47762,0,1,1 +1773609008.531841,0.80,4,3992.50,59.20,1379.78,2317.85,0.00,3518481099823.778320,0.000000,11,0,0.000000,0.000030,29131727,17537212,0,0,47765,0,1,1 +1773609013.531900,0.65,4,3992.50,59.21,1379.55,2318.08,0.00,25175.003231,32933.807838,1754661,2386259,0.000000,0.000020,29131727,17537214,0,0,47767,0,1,1 +1773609018.533449,0.70,4,3992.50,59.22,1379.11,2318.51,0.00,3517347451081.598145,3517347443323.093262,246,2,0.000126,0.000185,29131737,17537227,0,0,47770,0,1,1 +1773609023.534952,9.93,4,3992.50,80.71,581.59,3160.16,0.00,3517380053271.597168,3517380053273.428223,205,0,0.001147,0.001229,29131748,17537244,0,0,47772,0,1,1 +1773609028.533924,29.12,4,3992.50,64.43,1213.43,2522.52,0.00,3519160848297.597656,0.000000,11,0,0.000000,0.000030,29131748,17537247,0,0,47775,0,1,1 +1773609033.533615,28.88,4,3992.50,86.61,343.87,3390.88,0.00,0.000000,0.000000,11,0,0.000000,0.000020,29131748,17537249,0,0,47777,0,1,1 +1773609038.535969,55.73,4,3992.50,94.74,26.92,3709.37,0.00,25695.022253,32938.105139,1790487,2394394,57.274448,0.078435,29139053,17543176,0,0,47780,0,1,1 +1773609043.536674,65.20,4,3992.50,88.03,276.65,3446.75,0.00,3517941503811.196289,3517941496565.542969,205,0,113.173573,0.139836,29153096,17554171,0,0,47782,0,1,1 +1773609048.536892,62.63,4,3992.50,76.46,726.76,2993.39,0.00,1.831951,0.000195,246,2,115.785508,0.144923,29167424,17565627,0,0,47785,0,1,1 +1773609053.532938,55.56,4,3992.50,44.06,1969.83,1725.23,0.00,3521221903843.504395,10.683449,251,416,122.080121,0.088988,29181100,17572657,0,0,47787,0,1,0 +1773609058.535984,29.35,4,3992.50,43.51,1990.70,1703.68,0.00,0.000000,0.000000,251,416,123.097421,0.028138,29193785,17574882,0,0,47789,0,1,0 +1773609063.535626,41.70,4,3992.50,46.94,1855.70,1837.68,0.00,26348.380279,32941.741177,1834445,2400261,121.574875,0.019147,29206186,17576354,0,0,47792,0,1,1 +1773609068.535543,91.52,4,3992.50,51.85,1662.80,2029.87,0.00,3518495914676.306641,3518495908074.234375,75,0,120.364909,0.022125,29218394,17578065,0,0,47795,0,1,1 +1773609073.535542,74.32,4,3992.50,54.16,1571.50,2120.48,0.00,0.000000,0.000000,75,0,119.963303,0.024368,29230633,17580001,0,0,47797,0,1,1 +1773609078.535539,47.51,4,3992.50,55.06,1535.69,2155.77,0.00,0.000000,0.000000,75,0,119.967239,0.030105,29242932,17582037,0,0,47800,0,1,1 +1773609083.533286,3.31,4,3992.50,49.16,1766.97,1924.77,0.00,0.000000,0.000000,75,0,12.222522,0.003234,29244204,17582294,0,0,47802,0,1,1 +1773609088.535734,2.40,4,3992.50,49.04,1771.68,1920.05,0.00,1.957830,0.000195,246,2,0.000008,0.000038,29244205,17582298,0,0,47805,0,1,1 +1773609093.536480,2.86,4,3992.50,48.87,1778.47,1913.24,0.00,3517912545998.568848,10.673408,251,416,0.000000,0.000020,29244205,17582300,0,0,47807,0,1,1 +1773609098.532282,1.96,4,3992.50,48.83,1779.84,1911.85,0.00,26394.686031,32967.644889,1840654,2400607,0.000025,0.000061,29244207,17582305,0,0,47810,0,1,1 +1773609103.536770,2.76,4,3992.50,48.86,1778.89,1912.79,0.00,3515281979301.187012,3515281972739.635254,251,416,0.000506,0.001126,29244221,17582329,0,0,47812,0,1,1 +1773609108.536125,7.42,4,3992.50,49.42,1757.42,1935.05,0.00,3518891496366.167969,3518891496357.147949,11,0,0.000092,0.000048,29244223,17582334,0,0,47815,0,1,1 +1773609113.537728,10.18,4,3992.50,57.27,1496.80,2242.12,0.00,26398.612115,32940.557445,1842896,2401012,0.000000,0.000020,29244223,17582336,0,0,47817,0,1,1 +1773609118.532991,30.07,4,3992.50,64.94,1194.19,2542.57,0.00,3521773206798.678223,3521773200248.430664,11,0,0.000000,0.000030,29244223,17582339,0,0,47820,0,1,1 +1773609123.535500,29.85,4,3992.50,61.94,1313.80,2424.94,0.00,2.011295,0.000195,246,2,0.000025,0.000051,29244225,17582343,0,0,47822,0,1,1 +1773609128.536735,29.25,4,3992.50,63.84,1247.52,2499.58,0.00,0.000000,0.000000,246,2,0.000000,0.000030,29244225,17582346,0,0,47825,0,1,1 +1773609133.537201,32.01,4,3992.50,69.22,1035.03,2710.24,0.00,3518108913733.469238,3518108913735.427246,75,0,0.000995,0.003054,29244255,17582398,0,0,47827,0,1,1 +1773609138.536658,30.44,4,3992.50,72.61,882.96,2842.66,0.00,3518819884064.358398,0.000000,11,0,0.000008,0.000038,29244256,17582402,0,0,47830,0,1,1 +1773609143.533328,33.48,4,3992.50,50.14,1772.81,1962.95,0.00,1.657256,10.682309,251,416,0.004735,0.004667,29244333,17582483,0,0,47832,0,1,1 +1773609148.536020,3.01,4,3992.50,50.36,1755.23,1971.79,0.00,3516544051369.063477,3516544051360.049316,11,0,0.000794,0.000421,29244348,17582496,0,0,47835,0,1,1 +1773609153.536021,1.40,4,3992.50,50.37,1754.80,1971.93,0.00,2.012304,0.000195,246,2,0.000000,0.000020,29244348,17582498,0,0,47837,0,1,1 +1773609158.531900,1.81,4,3992.50,50.30,1755.75,1969.23,0.00,3521340092493.552734,10.683807,251,416,0.000000,0.000030,29244348,17582501,0,0,47840,0,1,1 +1773609163.536272,1.35,4,3992.50,50.33,1754.35,1970.63,0.00,0.000000,0.000000,251,416,0.000000,0.000020,29244348,17582503,0,0,47842,0,1,1 +1773609168.536141,1.50,4,3992.50,50.46,1740.64,1975.54,0.00,27314.853772,32967.922519,1902558,2415238,0.000000,0.000030,29244348,17582506,0,0,47845,0,1,1 +1773609173.531899,1.76,4,3992.50,50.44,1741.04,1975.01,0.00,3521424701075.841797,3521424701075.042969,1901071,2415122,0.000000,0.000020,29244348,17582508,0,0,47847,0,1,1 +1773609178.536661,1.10,4,3992.50,50.44,1741.09,1974.78,0.00,3515089251691.619141,3515089246035.864746,11,0,0.000062,0.000080,29244352,17582515,0,0,47850,0,1,1 +1773609183.532106,0.95,4,3992.50,50.44,1740.76,1975.00,0.00,0.000000,0.000000,11,0,0.000008,0.000028,29244353,17582518,0,0,47852,0,1,1 +1773609188.531890,1.15,4,3992.50,50.44,1740.65,1974.73,0.00,27307.674496,32968.817729,1901094,2415135,0.000194,0.000230,29244367,17582535,0,0,47855,0,1,1 +1773609193.534708,2.00,4,3992.50,50.44,1740.41,1974.97,0.00,3516455978630.292969,3516455972972.527832,75,0,0.000025,0.000051,29244369,17582539,0,0,47857,0,1,1 +1773609198.536479,1.55,4,3992.50,50.56,1738.06,1979.41,0.00,1.602069,10.671413,251,416,0.000000,0.000673,29244369,17582546,0,0,47860,0,1,1 +1773609203.536176,8.37,4,3992.50,57.70,1482.80,2258.91,0.00,3518650629820.755371,3518650629811.555664,205,0,0.000000,0.000020,29244369,17582548,0,0,47862,0,1,1 +1773609208.544918,43.22,4,3992.50,95.29,20.80,3730.68,0.00,3512296932008.571289,0.000000,11,0,11.002852,0.017242,29245872,17583736,0,0,47865,0,1,1 +1773609213.533001,68.35,4,3992.50,57.42,1485.73,2248.10,0.00,0.180704,0.000000,205,0,113.256873,0.128005,29259616,17593716,0,0,47867,0,1,1 +1773609218.536630,62.02,4,3992.50,57.61,1478.97,2255.68,0.00,27930.723273,32952.023850,1943875,2422812,115.104119,0.123099,29273566,17603396,0,0,47870,0,1,1 +1773609223.537047,63.61,4,3992.50,85.82,384.34,3360.07,0.00,3518143739598.990723,3518143734574.645020,11,0,116.578942,0.130467,29287683,17613677,0,0,47872,0,1,1 +1773609228.535304,63.16,4,3992.50,90.33,162.61,3536.59,0.00,1.656730,10.678918,251,416,117.456210,0.129724,29301901,17623949,0,0,47875,0,1,1 +1773609233.535802,59.35,4,3992.50,57.11,1458.72,2235.93,0.00,0.000000,0.000000,251,416,118.957899,0.133272,29316315,17634496,0,0,47877,0,1,1 +1773609238.536409,30.85,4,3992.50,57.51,1442.50,2251.52,0.00,28585.252861,32968.203614,1988831,2428868,124.154262,0.042664,29328893,17637811,0,0,47880,0,1,1 +1773609243.536287,30.36,4,3992.50,57.68,1435.01,2258.41,0.00,3518522814101.253906,3518522809708.465332,205,0,122.569835,0.042494,29341306,17641147,0,0,47882,0,1,1 +1773609248.535536,31.15,4,3992.50,57.18,1454.11,2238.56,0.00,3518965819482.904297,0.000000,11,0,121.784936,0.044729,29353644,17644614,0,0,47885,0,1,1 +1773609253.536688,5.52,4,3992.50,51.21,1687.71,2004.96,0.00,28594.681785,32986.122135,1990429,2429333,64.874532,0.026055,29360246,17646636,0,0,47887,0,1,1 +1773609258.531802,4.82,4,3992.50,51.29,1685.21,2008.24,0.00,8.756994,0.475758,1990944,2429672,0.003133,0.001570,29360305,17646677,0,0,47889,0,1,1 +1773609263.536639,1.05,4,3992.50,51.21,1688.28,2005.17,0.00,3515036486517.609863,3515036482137.614746,75,0,0.000000,0.000673,29360305,17646684,0,0,47892,0,1,1 +1773609268.532665,1.25,4,3992.50,51.00,1696.57,1996.88,0.00,28623.183861,33009.824142,1989460,2429303,0.000000,0.000030,29360305,17646687,0,0,47895,0,1,1 +1773609273.531971,0.90,4,3992.50,50.95,1698.80,1994.66,0.00,0.000000,0.002344,1989460,2429305,0.000000,0.000020,29360305,17646689,0,0,47897,0,1,1 +1773609278.532592,0.95,4,3992.50,50.95,1698.56,1994.90,0.00,3517999575611.960938,3517999571229.350586,75,0,0.000000,0.000030,29360305,17646692,0,0,47900,0,1,1 +1773609283.534275,0.95,4,3992.50,50.96,1698.33,1995.14,0.00,28590.810470,32972.505774,1989460,2429316,0.000000,0.000020,29360305,17646694,0,0,47902,0,1,1 +1773609288.533744,1.75,4,3992.50,51.26,1692.12,2006.87,0.00,3518810339564.454102,3518810335189.893555,251,416,0.000000,0.000030,29360305,17646697,0,0,47905,0,1,1 +1773609293.535102,8.37,4,3992.50,55.56,1555.87,2175.27,0.00,3517481949424.625000,3517481949415.608887,11,0,0.000000,0.000020,29360305,17646699,0,0,47907,0,1,1 +1773609298.535483,28.96,4,3992.50,95.33,20.08,3732.49,0.00,2.012151,0.000195,246,2,0.000512,0.001116,29360319,17646724,0,0,47910,0,1,1 +1773609303.533903,30.40,4,3992.50,74.13,833.01,2902.46,0.00,28949.728247,33010.565146,2012270,2435109,0.000134,0.000183,29360330,17646737,0,0,47912,0,1,1 +1773609308.535963,30.17,4,3992.50,52.61,1671.27,2059.61,0.00,172.122053,2.929262,2023292,2437834,0.000000,0.000030,29360330,17646740,0,0,47915,0,1,1 +1773609313.536584,29.84,4,3992.50,93.11,81.42,3645.40,0.00,139.446165,3518000473742.533203,2031374,2440033,0.000000,0.000020,29360330,17646742,0,0,47917,0,1,1 +1773609318.537785,39.59,4,3992.50,80.56,557.90,3154.04,0.00,3517592000763.745117,3517591997023.683105,11,0,2.406700,0.005891,29360721,17647044,0,0,47920,0,1,1 +1773609323.532663,67.20,4,3992.50,57.68,1430.34,2258.21,0.00,29706.716586,33045.555414,2060152,2445846,106.675668,0.089017,29372947,17653924,0,0,47922,0,1,1 +1773609328.536932,30.66,4,3992.50,57.43,1436.57,2248.44,0.00,3515435712150.020996,3515435708826.459473,251,416,120.482008,0.069168,29385663,17659188,0,0,47925,0,1,1 +1773609333.535609,30.39,4,3992.50,57.24,1443.90,2241.01,0.00,29676.722559,32999.112750,2058897,2445454,120.627064,0.100114,29398501,17667005,0,0,47927,0,1,1 +1773609338.531804,29.37,4,3992.50,57.32,1450.39,2244.17,0.00,3521116331136.270996,3521116327803.204590,11,0,119.488111,0.110429,29411239,17675563,0,0,47930,0,1,1 +1773609343.532730,29.42,4,3992.50,57.22,1453.61,2240.22,0.00,1.655846,10.673220,251,416,120.173671,0.115460,29424022,17684581,0,0,47932,0,1,1 +1773609348.532264,29.78,4,3992.50,57.62,1437.25,2255.91,0.00,3518765392165.922363,3518765392156.849121,75,0,120.209007,0.115850,29436806,17693642,0,0,47935,0,1,1 +1773609353.532634,29.89,4,3992.50,57.35,1447.23,2245.35,0.00,29682.865394,33009.771793,2060665,2446230,119.387392,0.110600,29449542,17702275,0,0,47937,0,1,1 +1773609358.532907,28.96,4,3992.50,57.27,1449.84,2242.10,0.00,0.000781,0.001172,2060666,2446238,118.989826,0.109568,29462312,17710836,0,0,47940,0,1,1 +1773609363.535888,8.57,4,3992.50,51.13,1690.13,2001.79,0.00,3516340347472.405273,3516340344147.288086,11,0,77.276008,0.056027,29470493,17715187,0,0,47942,0,1,1 +1773609368.536600,2.36,4,3992.50,51.17,1688.40,2003.43,0.00,2.012018,0.000195,246,2,0.003160,0.001603,29470554,17715231,0,0,47945,0,1,1 +1773609373.531899,0.90,4,3992.50,51.20,1687.49,2004.40,0.00,3521748126147.117676,3521748126149.078125,75,0,0.000000,0.000020,29470554,17715233,0,0,47947,0,1,1 +1773609378.531892,3.36,4,3992.50,52.14,1657.04,2041.57,0.00,29686.350527,33012.559773,2060804,2446337,0.003426,0.002853,29470598,17715263,0,0,47950,0,1,1 +1773609383.536928,8.32,4,3992.50,61.81,1323.52,2420.05,0.00,18.132714,3514897232146.024902,2061044,2446267,0.000031,0.000045,29470600,17715267,0,0,47952,0,1,1 +1773609388.536872,29.56,4,3992.50,69.62,1015.76,2725.71,0.00,3518476685338.605957,3518476682040.866699,11,0,0.000008,0.000038,29470601,17715271,0,0,47955,0,1,1 +1773609393.533289,29.07,4,3992.50,90.54,193.16,3544.96,0.00,30027.081778,33031.287973,2079855,2451211,0.000000,0.000664,29470601,17715277,0,0,47957,0,1,1 +1773609398.533067,29.60,4,3992.50,54.13,1626.84,2119.12,0.00,3518593694369.785156,3518593691367.598145,11,0,0.000000,0.000030,29470601,17715280,0,0,47960,0,1,1 +1773609403.534923,29.17,4,3992.50,85.98,370.64,3366.18,0.00,0.053496,0.000000,75,0,0.000000,0.000020,29470601,17715282,0,0,47962,0,1,1 +1773609408.537144,29.50,4,3992.50,63.48,1254.46,2485.37,0.00,3516874842158.142578,0.000000,11,0,0.000000,0.000030,29470601,17715285,0,0,47965,0,1,1 +1773609413.532849,23.43,4,3992.50,51.80,1707.69,2028.17,0.00,2.014035,0.000195,246,2,0.000076,0.000113,29470607,17715293,0,0,47967,0,1,1 +1773609418.536379,0.70,4,3992.50,51.79,1703.30,2027.88,0.00,3515954409939.508789,3515954409941.520020,11,0,0.000000,0.000030,29470607,17715296,0,0,47970,0,1,1 +1773609423.536020,1.00,4,3992.50,51.47,1713.50,2015.16,0.00,1.656272,10.675964,251,416,0.000101,0.000144,29470615,17715306,0,0,47972,0,1,1 +1773609428.531863,2.71,4,3992.50,51.76,1688.98,2026.68,0.00,30598.939929,33035.383725,2116264,2461379,0.003270,0.003026,29470654,17715345,0,0,47975,0,1,1 +1773609433.533293,43.41,4,3992.50,58.28,1401.35,2281.66,0.00,3517431467268.106934,3517431464825.313965,75,0,106.922266,0.038596,29481895,17718284,0,0,47977,0,1,1 +1773609438.531821,31.52,4,3992.50,57.55,1441.73,2253.28,0.00,30586.616291,33028.708498,2116407,2461744,119.201630,0.023707,29494199,17720079,0,0,47980,0,1,1 +1773609443.531820,31.43,4,3992.50,57.80,1436.81,2263.15,0.00,3518437820070.605469,3518437817627.273438,246,2,119.166043,0.023743,29506474,17721913,0,0,47982,0,1,1 +1773609448.532599,29.15,4,3992.50,57.74,1439.03,2260.65,0.00,3517889417212.750488,3517889417214.708496,75,0,119.555149,0.040380,29518914,17725040,0,0,47985,0,1,1 +1773609453.531851,28.90,4,3992.50,57.67,1441.27,2257.71,0.00,1.959082,0.000195,246,2,118.790860,0.045929,29531160,17728572,0,0,47987,0,1,1 +1773609458.533978,28.52,4,3992.50,57.82,1434.61,2263.70,0.00,30564.712260,33005.025857,2116530,2461834,119.916745,0.034032,29543345,17731232,0,0,47990,0,1,1 +1773609463.535150,30.20,4,3992.50,57.93,1429.68,2267.97,0.00,3517612473357.583496,3517612470916.804199,246,2,118.962530,0.090691,29556031,17738285,0,0,47992,0,1,1 +1773609468.533792,29.47,4,3992.50,57.52,1444.95,2252.02,0.00,3519392985919.883301,3519392985921.715820,205,0,119.625930,0.097154,29568746,17745888,0,0,47995,0,1,1 +1773609473.536665,16.36,4,3992.50,65.06,1198.05,2547.31,0.00,3516417137652.989746,0.000000,75,0,83.278622,0.043860,29577557,17749315,0,0,47997,0,1,1 +1773609478.534750,28.36,4,3992.50,71.27,954.23,2790.25,0.00,1.603251,10.679285,251,416,0.000718,0.000291,29577572,17749328,0,0,48000,0,1,1 +1773609483.534391,30.84,4,3992.50,53.17,1658.76,2081.80,0.00,0.356178,3518689673449.119141,246,2,0.003087,0.001470,29577628,17749370,0,0,48002,0,1,1 +1773609488.534617,29.42,4,3992.50,84.34,429.79,3302.12,0.00,31045.564686,33025.621651,2147864,2468915,0.000000,0.000030,29577628,17749373,0,0,48005,0,1,1 +1773609493.536493,28.78,4,3992.50,70.05,1007.65,2742.66,0.00,3517117428758.721680,3517117426781.329590,11,0,0.000000,0.000020,29577628,17749375,0,0,48007,0,1,1 +1773609498.536824,29.82,4,3992.50,53.38,1654.87,2089.95,0.00,31347.478841,33041.626050,2167825,2475068,0.000000,0.000030,29577628,17749378,0,0,48010,0,1,1 +1773609503.535068,25.46,4,3992.50,51.50,1719.34,2016.30,0.00,3519673044555.404297,3519673042858.537109,246,2,0.000000,0.000020,29577628,17749380,0,0,48012,0,1,1 +1773609508.534791,0.85,4,3992.50,51.55,1712.27,2018.21,0.00,31494.999834,33048.015176,2177032,2477343,0.000000,0.000030,29577628,17749383,0,0,48015,0,1,1 +1773609513.534995,0.85,4,3992.50,51.56,1709.68,2018.68,0.00,3518293360110.255371,3518293358559.402344,11,0,0.000000,0.000020,29577628,17749385,0,0,48017,0,1,1 +1773609518.535057,1.15,4,3992.50,51.52,1710.80,2017.00,0.00,31486.372200,33035.102062,2175610,2476933,0.000000,0.000030,29577628,17749388,0,0,48020,0,1,1 +1773609523.535239,0.80,4,3992.50,51.51,1710.92,2016.74,0.00,3518309176383.145020,3518309174834.271973,205,0,0.000025,0.000051,29577630,17749392,0,0,48022,0,1,1 +1773609528.535393,1.10,4,3992.50,51.80,1692.93,2027.99,0.00,1.831975,0.000195,246,2,0.000109,0.000806,29577639,17749408,0,0,48025,0,1,1 +1773609533.535576,1.05,4,3992.50,51.72,1695.75,2024.78,0.00,31488.125707,33034.632803,2175868,2477227,0.000008,0.000028,29577640,17749411,0,0,48027,0,1,1 +1773609538.535560,0.80,4,3992.50,51.64,1698.51,2021.85,0.00,0.067188,0.016406,2175874,2477243,0.000000,0.000020,29577640,17749413,0,0,48029,0,1,1 +1773609543.535833,1.95,4,3992.50,51.11,1712.24,2001.00,0.00,3518244939784.684570,3518244938240.268066,11,0,0.001396,0.000733,29577664,17749432,0,0,48032,0,1,1 +1773609548.534598,41.75,4,3992.50,58.41,1415.34,2287.04,0.00,0.000000,0.000000,11,0,98.967914,0.036978,29588054,17752124,0,0,48035,0,1,1 +1773609553.535881,30.36,4,3992.50,58.20,1423.82,2278.47,0.00,2.011788,0.000195,246,2,118.562086,0.095014,29600749,17759479,0,0,48037,0,1,1 +1773609558.534664,31.67,4,3992.50,57.83,1438.30,2264.02,0.00,3519294233747.899902,3519294233749.732422,205,0,119.824682,0.097797,29613612,17767058,0,0,48040,0,1,1 +1773609563.537282,35.33,4,3992.50,92.76,70.70,3631.95,0.00,31501.245165,33018.779964,2177679,2477431,118.531911,0.098441,29626433,17774769,0,0,48042,0,1,1 +1773609568.536409,66.16,4,3992.50,79.49,583.52,3112.40,0.00,3519052182410.158203,3519052180900.763672,251,416,118.196889,0.050091,29638975,17778663,0,0,48045,0,1,1 +1773609573.536564,61.19,4,3992.50,89.82,172.04,3516.58,0.00,3518328332100.363281,3518328332091.291504,75,0,117.963201,0.028745,29651289,17780910,0,0,48047,0,1,1 +1773609578.532837,61.20,4,3992.50,95.92,2.80,3755.56,0.00,3521061817516.684082,0.000000,11,0,117.652465,0.023411,29663570,17782738,0,0,48050,0,1,1 +1773609583.535854,61.38,4,3992.50,58.04,1456.48,2272.22,0.00,0.180165,0.000000,205,0,120.096039,0.021475,29676099,17784404,0,0,48052,0,1,1 +1773609588.537227,43.95,4,3992.50,51.22,1731.59,2005.18,0.00,32414.272784,33047.889135,2242982,2486784,95.708482,0.021819,29686104,17786080,0,0,48055,0,1,1 +1773609593.534072,25.72,4,3992.50,51.82,1704.02,2028.90,0.00,146.814521,2.340149,2252378,2488895,0.003119,0.001781,29686162,17786126,0,0,48057,0,1,1 +1773609598.536417,1.30,4,3992.50,51.17,1724.55,2003.55,0.00,3516788055925.287109,3516788055445.304199,251,416,0.000512,0.001760,29686176,17786155,0,0,48060,0,1,1 +1773609603.534590,0.90,4,3992.50,51.11,1724.95,2001.00,0.00,0.356282,3519722889025.760742,246,2,0.000000,0.000020,29686176,17786157,0,0,48062,0,1,1 +1773609608.536709,3.16,4,3992.50,51.26,1717.44,2006.75,0.00,3516946813338.640137,3516946813340.597656,75,0,0.000000,0.000030,29686176,17786160,0,0,48065,0,1,1 +1773609613.534935,0.75,4,3992.50,50.99,1728.00,1996.19,0.00,32575.488452,33060.386431,2251154,2488499,0.000000,0.000020,29686176,17786162,0,0,48067,0,1,1 +1773609618.535954,2.35,4,3992.50,51.47,1700.43,2015.07,0.00,3517720907837.757812,3517720907353.003906,205,0,0.000000,0.000020,29686176,17786164,0,0,48069,0,1,1 +1773609623.536405,0.75,4,3992.50,51.40,1701.64,2012.27,0.00,32575.228789,33056.773000,2252922,2489285,0.000205,0.000562,29686183,17786178,0,0,48072,0,1,1 +1773609628.536533,1.97,4,3992.50,50.88,1705.04,1992.01,0.00,3518347008107.725098,3518347007626.330078,11,0,0.000008,0.000038,29686184,17786182,0,0,48075,0,1,1 +1773609633.536543,0.95,4,3992.50,50.92,1703.33,1993.70,0.00,32591.383735,33059.712160,2263720,2489296,0.000000,0.000020,29686184,17786184,0,0,48077,0,1,1 +1773609638.533692,1.05,4,3992.50,50.92,1703.51,1993.50,0.00,3520444152637.544922,3520444152166.935059,246,2,0.001356,0.001410,29686203,17786211,0,0,48080,0,1,1 +1773609643.535849,0.90,4,3992.50,50.92,1703.32,1993.73,0.00,3516920170594.536621,3516920170596.548340,11,0,0.000062,0.000070,29686207,17786217,0,0,48082,0,1,1 +1773609648.536509,1.80,4,3992.50,50.98,1700.96,1995.95,0.00,1.655934,10.673786,251,416,0.000000,0.000030,29686207,17786220,0,0,48085,0,1,1 +1773609653.535767,1.80,4,3992.50,50.91,1703.57,1993.34,0.00,3518959779335.318848,3518959779326.298828,11,0,0.001396,0.000723,29686231,17786238,0,0,48087,0,1,1 +1773609658.535868,37.71,4,3992.50,57.68,1438.48,2258.29,0.00,0.053515,0.000000,75,0,94.332939,0.034233,29696125,17788699,0,0,48090,0,1,1 +1773609663.535633,34.54,4,3992.50,57.91,1429.55,2267.13,0.00,32594.755379,33061.546270,2263917,2489494,121.975768,0.020164,29708738,17790215,0,0,48092,0,1,1 +1773609668.536571,31.26,4,3992.50,57.34,1451.96,2244.86,0.00,3517777790873.405762,3517777790872.300781,2262428,2489092,120.345591,0.018562,29721197,17791613,0,0,48095,0,1,1 +1773609673.534589,29.94,4,3992.50,57.31,1452.48,2243.68,0.00,3519832340692.016602,3519832340226.167969,75,0,120.213597,0.016276,29733537,17792848,0,0,48097,0,1,1 +1773609678.531832,31.90,4,3992.50,57.60,1440.45,2254.98,0.00,32611.230075,33078.288983,2263918,2489540,120.237256,0.028944,29745886,17794926,0,0,48100,0,1,1 +1773609683.534191,30.36,4,3992.50,57.61,1439.27,2255.44,0.00,3516777690489.011719,3516777690020.472656,246,2,120.113036,0.033299,29758239,17797544,0,0,48102,0,1,1 +1773609688.534235,30.87,4,3992.50,57.46,1453.44,2249.62,0.00,0.000000,0.000000,246,2,119.174809,0.051193,29770646,17801520,0,0,48105,0,1,1 +1773609693.531736,30.92,4,3992.50,57.43,1453.80,2248.55,0.00,3520196932798.633301,3520196932800.646484,11,0,119.233577,0.042111,29783064,17804753,0,0,48107,0,1,1 +1773609698.536156,11.34,4,3992.50,52.98,1628.16,2074.27,0.00,2.010527,0.000195,246,2,89.845920,0.025828,29792269,17806753,0,0,48110,0,1,1 +1773609703.536740,1.30,4,3992.50,51.95,1668.51,2033.91,0.00,0.000000,0.000000,246,2,0.002257,0.001069,29792313,17806784,0,0,48112,0,1,1 +1773609708.531882,1.25,4,3992.50,51.52,1681.91,2017.02,0.00,32613.673827,33082.084026,2262464,2489361,0.000000,0.000043,29792313,17806788,0,0,48115,0,1,1 +1773609713.536335,0.80,4,3992.50,51.38,1686.96,2011.60,0.00,3515306231541.887207,3515306231076.305176,75,0,0.000000,0.000020,29792313,17806790,0,0,48117,0,1,1 +1773609718.532009,0.95,4,3992.50,51.40,1686.24,2012.32,0.00,32612.163491,33078.612812,2262464,2489411,0.000000,0.000030,29792313,17806793,0,0,48120,0,1,1 +1773609723.531903,1.20,4,3992.50,51.41,1685.78,2012.78,0.00,3518511530894.290039,3518511530426.275879,246,2,0.000050,0.000726,29792317,17806803,0,0,48122,0,1,1 +1773609728.536207,1.15,4,3992.50,51.42,1685.54,2013.03,0.00,0.000000,0.000000,246,2,0.000008,0.000038,29792318,17806807,0,0,48125,0,1,1 +1773609733.536380,0.65,4,3992.50,51.42,1685.54,2013.02,0.00,3518315717217.673340,3518315717219.505371,205,0,0.000000,0.000020,29792318,17806809,0,0,48127,0,1,1 +1773609738.536734,2.01,4,3992.50,51.52,1679.02,2017.07,0.00,3518187857318.632324,0.000000,11,0,0.000000,0.000020,29792318,17806811,0,0,48129,0,1,1 +1773609743.536587,0.90,4,3992.50,51.33,1686.36,2009.68,0.00,0.180279,0.000000,205,0,0.000025,0.000061,29792320,17806816,0,0,48132,0,1,1 +1773609748.531823,2.86,4,3992.50,51.21,1691.09,2004.94,0.00,1.833778,0.000195,246,2,0.000109,0.000152,29792329,17806827,0,0,48134,0,1,1 +1773609753.535840,0.65,4,3992.50,51.21,1690.88,2005.16,0.00,32555.832925,33023.577883,2262464,2489484,0.000000,0.000030,29792329,17806830,0,0,48137,0,1,1 +1773609758.531827,0.70,4,3992.50,51.22,1690.64,2005.40,0.00,0.000000,0.003909,2262464,2489487,0.000000,0.000030,29792329,17806833,0,0,48140,0,1,1 +1773609763.536559,2.05,4,3992.50,50.85,1705.21,1990.83,0.00,3515110288917.902832,3515110288452.230957,11,0,0.000000,0.000020,29792329,17806835,0,0,48142,0,1,1 +1773609768.532703,37.09,4,3992.50,58.11,1420.62,2275.32,0.00,0.000000,0.000000,11,0,76.371761,0.025445,29800400,17808553,0,0,48145,0,1,1 +1773609773.531868,31.10,4,3992.50,57.49,1444.89,2250.99,0.00,32599.204658,33066.438238,2263968,2490025,120.208487,0.072661,29813094,17814152,0,0,48147,0,1,1 +1773609778.535983,29.79,4,3992.50,57.69,1437.34,2258.60,0.00,0.000000,0.010148,2263968,2490041,118.297031,0.097178,29825814,17821710,0,0,48150,0,1,1 +1773609783.536549,30.70,4,3992.50,57.64,1439.33,2256.56,0.00,3518038956091.450195,3518038955624.337402,11,0,119.982994,0.106725,29838647,17830011,0,0,48152,0,1,1 +1773609788.535388,31.19,4,3992.50,57.86,1430.54,2265.42,0.00,0.000000,0.000000,11,0,119.026350,0.110977,29851506,17838619,0,0,48155,0,1,1 +1773609793.536431,29.33,4,3992.50,57.53,1443.24,2252.56,0.00,32587.260082,33054.053399,2263985,2490079,119.375104,0.110692,29864407,17847266,0,0,48157,0,1,1 +1773609798.534972,29.63,4,3992.50,57.59,1441.22,2254.70,0.00,3519464403772.455078,3519464403305.428223,11,0,119.833581,0.112912,29877266,17856050,0,0,48160,0,1,1 +1773609803.532382,30.67,4,3992.50,57.35,1450.73,2245.25,0.00,0.180367,0.000000,205,0,118.659144,0.109982,29890132,17864657,0,0,48162,0,1,1 +1773609808.532090,17.93,4,3992.50,52.20,1652.11,2043.90,0.00,32586.652054,33052.591314,2262526,2489813,113.997842,0.107727,29902554,17873035,0,0,48165,0,1,1 +1773609813.536367,1.40,4,3992.50,51.70,1671.88,2024.11,0.00,9.820310,10.769693,2264037,2490259,0.003416,0.001715,29902625,17873087,0,0,48167,0,1,1 +1773609818.535846,0.70,4,3992.50,51.33,1686.23,2009.75,0.00,3518803936296.580078,3518803935829.668945,205,0,0.000000,0.000020,29902625,17873089,0,0,48169,0,1,1 +1773609823.531858,0.75,4,3992.50,51.32,1686.82,2009.17,0.00,3521245560673.707031,0.000000,11,0,0.000000,0.000030,29902625,17873092,0,0,48172,0,1,1 +1773609828.531861,1.20,4,3992.50,51.55,1678.86,2018.28,0.00,0.000000,0.000000,11,0,0.000000,0.000030,29902625,17873095,0,0,48175,0,1,1 +1773609833.534107,0.90,4,3992.50,51.55,1679.02,2018.18,0.00,0.180192,0.000000,205,0,0.000000,0.000020,29902625,17873097,0,0,48177,0,1,1 +1773609838.532365,0.85,4,3992.50,51.55,1679.02,2018.17,0.00,1.476393,10.678916,251,416,0.000000,0.000030,29902625,17873100,0,0,48180,0,1,1 +1773609843.536248,0.85,4,3992.50,51.55,1679.02,2018.17,0.00,0.000000,0.000000,251,416,0.000000,0.000020,29902625,17873102,0,0,48182,0,1,1 +1773609848.536267,0.75,4,3992.50,51.55,1679.02,2018.17,0.00,0.356151,3518423752309.041504,246,2,0.000000,0.000030,29902625,17873105,0,0,48185,0,1,1 +1773609853.531938,0.70,4,3992.50,51.55,1679.02,2018.17,0.00,0.000000,0.000000,246,2,0.000025,0.000695,29902627,17873113,0,0,48187,0,1,1 +1773609858.535451,1.60,4,3992.50,51.34,1687.19,2010.00,0.00,3515966956597.840820,3515966956599.671875,205,0,0.000117,0.000170,29902637,17873126,0,0,48190,0,1,1 +1773609863.536554,1.25,4,3992.50,51.48,1682.04,2015.38,0.00,1.831627,0.000195,246,2,0.000000,0.000020,29902637,17873128,0,0,48192,0,1,1 +1773609868.533680,0.80,4,3992.50,51.48,1682.05,2015.39,0.00,3520461268517.303223,10.681141,251,416,0.000000,0.000030,29902637,17873131,0,0,48195,0,1,1 +1773609873.536611,1.05,4,3992.50,51.48,1681.82,2015.62,0.00,3516375374444.892578,3516375374435.698730,205,0,0.000000,0.000020,29902637,17873133,0,0,48197,0,1,1 +1773609878.531810,41.36,4,3992.50,57.34,1452.50,2244.88,0.00,3521819535486.034180,0.000000,75,0,91.821583,0.034718,29912242,17875615,0,0,48200,0,1,1 +1773609883.532492,29.04,4,3992.50,57.57,1443.36,2253.95,0.00,0.000000,0.000000,75,0,118.161054,0.056624,29924517,17879949,0,0,48202,0,1,1 +1773609888.536338,29.42,4,3992.50,57.52,1445.51,2251.89,0.00,3515733042733.970703,0.000000,11,0,120.098674,0.089523,29937312,17886906,0,0,48205,0,1,1 +1773609893.536417,29.05,4,3992.50,57.55,1444.98,2253.18,0.00,1.656126,10.675025,251,416,118.996761,0.109863,29950078,17895461,0,0,48207,0,1,1 +1773609898.535544,29.10,4,3992.50,57.47,1447.98,2250.25,0.00,3519052181549.520996,3519052181540.320312,205,0,119.419545,0.111732,29962861,17904137,0,0,48210,0,1,1 +1773609903.531812,29.09,4,3992.50,57.49,1446.79,2250.70,0.00,3521065324999.522461,0.000000,75,0,119.488438,0.110643,29975697,17912738,0,0,48212,0,1,1 +1773609908.536616,28.89,4,3992.50,57.85,1433.21,2264.89,0.00,3515059800933.053711,0.000000,11,0,118.883436,0.111943,29988504,17921465,0,0,48215,0,1,1 +1773609913.533472,28.76,4,3992.50,57.61,1442.54,2255.67,0.00,0.000000,0.000000,11,0,119.872616,0.110727,30001323,17930131,0,0,48217,0,1,1 +1773609918.535946,13.98,4,3992.50,52.74,1633.29,2064.98,0.00,32571.837009,33035.174420,2262696,2490294,98.914262,0.090183,30011943,17937108,0,0,48220,0,1,1 +1773609923.536179,2.11,4,3992.50,52.79,1637.16,2066.74,0.00,0.159368,0.053415,2262708,2490342,0.003322,0.002621,30012008,17937163,0,0,48222,0,1,1 +1773609928.536275,0.70,4,3992.50,51.93,1670.62,2033.28,0.00,0.000000,0.021093,2262708,2490365,0.000000,0.000030,30012008,17937166,0,0,48225,0,1,1 +1773609933.536316,1.20,4,3992.50,51.78,1676.47,2027.43,0.00,3518408357012.286133,3518408356548.754395,75,0,0.000000,0.000020,30012008,17937168,0,0,48227,0,1,1 +1773609938.536163,0.80,4,3992.50,51.78,1676.61,2027.29,0.00,3518544825687.767090,0.000000,11,0,0.000308,0.000584,30012015,17937182,0,0,48230,0,1,1 +1773609943.535597,0.65,4,3992.50,51.76,1677.20,2026.70,0.00,0.000000,0.000000,11,0,0.000070,0.000078,30012020,17937189,0,0,48232,0,1,1 +1773609948.531907,1.15,4,3992.50,51.77,1677.03,2026.87,0.00,1.657375,10.683078,251,416,0.000000,0.000030,30012020,17937192,0,0,48235,0,1,1 +1773609953.531830,0.65,4,3992.50,51.45,1689.52,2014.38,0.00,32586.962720,33041.691139,2262708,2490502,0.000000,0.000020,30012020,17937194,0,0,48237,0,1,1 +1773609958.535821,0.75,4,3992.50,51.51,1687.31,2016.59,0.00,3515631074103.167969,3515631073639.744141,75,0,0.000000,0.000030,30012020,17937197,0,0,48240,0,1,1 +1773609963.531863,0.60,4,3992.50,51.43,1690.32,2013.58,0.00,3521224019659.963379,0.000000,11,0,0.000025,0.000051,30012022,17937201,0,0,48242,0,1,1 +1773609968.531818,0.75,4,3992.50,51.43,1690.32,2013.58,0.00,0.053516,0.000000,75,0,0.000140,0.000187,30012033,17937215,0,0,48245,0,1,1 +1773609973.531827,0.75,4,3992.50,51.44,1690.10,2013.80,0.00,3518431184625.272461,0.000000,11,0,0.000000,0.000020,30012033,17937217,0,0,48247,0,1,1 +1773609978.534466,1.50,4,3992.50,51.67,1680.51,2023.10,0.00,2.011243,0.000195,246,2,0.002798,0.001955,30012077,17937248,0,0,48250,0,1,1 +1773609983.535395,0.70,4,3992.50,51.63,1682.16,2021.41,0.00,32589.609069,33056.462954,2264197,2490963,0.000031,0.000528,30012079,17937255,0,0,48252,0,1,1 +1773609988.535800,37.35,4,3992.50,58.21,1424.62,2278.91,0.00,3518152274205.123535,3518152273749.250977,251,416,77.907778,0.031706,30020285,17939439,0,0,48255,0,1,1 +1773609993.536536,29.16,4,3992.50,58.05,1430.84,2272.69,0.00,3517919803087.134766,3517919803078.063965,75,0,120.150008,0.020752,30032649,17940956,0,0,48257,0,1,1 +1773609998.534757,28.43,4,3992.50,58.06,1430.34,2273.15,0.00,3519689631307.661621,0.000000,11,0,118.806310,0.018132,30044763,17942308,0,0,48260,0,1,1 +1773610003.534045,28.71,4,3992.50,57.77,1441.61,2261.89,0.00,0.000000,0.000000,11,0,119.583294,0.022261,30056966,17943985,0,0,48262,0,1,1 +1773610008.532579,29.45,4,3992.50,58.12,1427.98,2275.49,0.00,1.656638,10.678327,251,416,119.682554,0.053569,30069138,17948191,0,0,48265,0,1,1 +1773610013.532761,29.49,4,3992.50,57.82,1449.70,2263.75,0.00,3518309488617.812012,3518309488608.793457,11,0,118.697193,0.060582,30081487,17952911,0,0,48267,0,1,1 +1773610018.533757,28.75,4,3992.50,57.82,1449.60,2263.91,0.00,32581.800171,33045.722260,2262723,2490805,120.143391,0.025811,30093807,17954872,0,0,48270,0,1,1 +1773610023.536256,28.29,4,3992.50,58.05,1440.71,2272.81,0.00,9.556747,10.678940,2264212,2491233,118.304665,0.025625,30105828,17956869,0,0,48272,0,1,1 +1773610028.536615,15.88,4,3992.50,52.59,1654.42,2059.14,0.00,0.067964,0.096673,2264218,2491246,112.150667,0.033327,30117240,17959441,0,0,48275,0,1,1 +1773610033.535563,1.55,4,3992.50,52.91,1641.96,2071.56,0.00,3519177507065.162109,3519177506599.844727,75,0,0.003118,0.001445,30117298,17959481,0,0,48277,0,1,1 +1773610038.531897,1.10,4,3992.50,52.29,1666.43,2047.14,0.00,1.960227,0.000195,246,2,0.000000,0.000030,30117298,17959484,0,0,48280,0,1,1 +1773610043.536012,0.75,4,3992.50,52.03,1676.64,2036.91,0.00,3515543543196.068848,10.666221,251,416,0.000013,0.000020,30117299,17959486,0,0,48282,0,1,1 +1773610048.531821,0.75,4,3992.50,52.03,1676.64,2036.91,0.00,32623.763927,33080.390736,2264231,2491367,0.000000,0.000030,30117299,17959489,0,0,48285,0,1,1 +1773610053.535031,0.85,4,3992.50,52.02,1676.75,2036.80,0.00,3516179637762.139160,3516179637296.994629,205,0,0.000000,0.000663,30117299,17959495,0,0,48287,0,1,1 +1773610058.531842,0.65,4,3992.50,52.02,1676.75,2036.80,0.00,1.833201,0.000195,246,2,0.000000,0.000030,30117299,17959498,0,0,48290,0,1,1 +1773610063.531834,0.65,4,3992.50,52.02,1676.75,2036.80,0.00,3518442789835.140625,3518442789837.153320,11,0,0.000000,0.000020,30117299,17959500,0,0,48292,0,1,1 +1773610068.531804,1.30,4,3992.50,52.14,1669.38,2041.50,0.00,1.656162,10.675260,251,416,0.000000,0.000030,30117299,17959503,0,0,48295,0,1,1 +1773610073.531825,0.75,4,3992.50,52.17,1668.42,2042.46,0.00,3518421975521.938965,3518421975512.740234,205,0,0.000025,0.000051,30117301,17959507,0,0,48297,0,1,1 +1773610078.531831,0.85,4,3992.50,52.17,1668.42,2042.46,0.00,1.832029,0.000195,246,2,0.000109,0.000162,30117310,17959519,0,0,48300,0,1,1 +1773610083.533541,0.85,4,3992.50,52.17,1668.42,2042.45,0.00,3517234210671.059570,3517234210673.017090,75,0,0.000008,0.000028,30117311,17959522,0,0,48302,0,1,1 +1773610088.536407,0.90,4,3992.50,52.16,1668.78,2042.08,0.00,1.957667,0.000195,246,2,0.000000,0.000030,30117311,17959525,0,0,48305,0,1,1 +1773610093.536597,1.15,4,3992.50,52.16,1668.55,2042.34,0.00,3518303269890.525879,3518303269892.357910,205,0,0.000000,0.000020,30117311,17959527,0,0,48307,0,1,1 +1773610098.536653,34.81,4,3992.50,58.35,1427.69,2284.65,0.00,1.832011,0.000195,246,2,67.898430,0.032470,30124373,17961805,0,0,48310,0,1,1 +1773610103.536187,30.73,4,3992.50,58.06,1439.08,2273.01,0.00,3518764662305.649902,3518764662307.662598,11,0,120.177000,0.037399,30136601,17964670,0,0,48312,0,1,1 +1773610108.532484,28.43,4,3992.50,57.77,1450.19,2261.95,0.00,0.000000,0.000000,11,0,118.250080,0.021266,30148733,17966330,0,0,48315,0,1,1 +1773610113.535786,28.93,4,3992.50,58.12,1436.42,2275.70,0.00,0.180154,0.000000,205,0,120.088919,0.026706,30161114,17968407,0,0,48317,0,1,1 +1773610118.536536,28.10,4,3992.50,58.05,1439.34,2272.76,0.00,32593.172034,33058.801290,2264244,2491663,118.946455,0.022974,30173195,17970095,0,0,48320,0,1,1 +1773610123.535532,28.33,4,3992.50,57.82,1448.27,2263.86,0.00,3519143811214.494629,3519143810746.869629,246,2,119.387467,0.031830,30185380,17972577,0,0,48322,0,1,1 +1773610128.536145,29.04,4,3992.50,57.91,1444.83,2267.27,0.00,3518005639650.146484,3518005639652.159180,11,0,119.352386,0.041754,30197636,17975855,0,0,48325,0,1,1 +1773610133.531804,29.15,4,3992.50,58.03,1439.66,2271.85,0.00,1.657591,10.684471,251,416,119.064379,0.045669,30209610,17979451,0,0,48327,0,1,1 +1773610138.536591,18.70,4,3992.50,57.81,1448.34,2263.23,0.00,3515071675385.372559,3515071675376.362305,11,0,119.448418,0.044440,30221751,17982930,0,0,48330,0,1,1 +1773610143.536287,3.76,4,3992.50,51.92,1678.78,2032.78,0.00,2.012427,0.000195,246,2,2.808110,0.002745,30222132,17983062,0,0,48332,0,1,1 +1773610148.535886,0.80,4,3992.50,51.94,1677.91,2033.66,0.00,3518719609353.387695,3518719609355.400391,11,0,0.000000,0.000030,30222132,17983065,0,0,48335,0,1,1 +1773610153.536202,0.75,4,3992.50,51.94,1677.91,2033.66,0.00,1.656048,10.674522,251,416,0.000000,0.000020,30222132,17983067,0,0,48337,0,1,1 +1773610158.536578,1.40,4,3992.50,52.02,1666.40,2036.55,0.00,32594.271601,33051.023983,2264258,2491843,0.000000,0.000030,30222132,17983070,0,0,48340,0,1,1 +1773610163.535972,0.80,4,3992.50,52.02,1666.16,2036.80,0.00,3518863419731.373535,3518863419274.531738,251,416,0.000000,0.000020,30222132,17983072,0,0,48342,0,1,1 +1773610168.536096,0.80,4,3992.50,52.02,1666.20,2036.77,0.00,32586.358511,33042.047395,2262770,2491459,0.000000,0.000030,30222132,17983075,0,0,48345,0,1,1 +1773610173.531827,0.70,4,3992.50,52.02,1666.20,2036.76,0.00,3521444210048.744141,3521444209592.654297,251,416,0.000000,0.000020,30222132,17983077,0,0,48347,0,1,1 +1773610178.536232,0.90,4,3992.50,52.02,1666.20,2036.76,0.00,3515339671548.546875,3515339671539.355957,205,0,0.000000,0.000030,30222132,17983080,0,0,48350,0,1,1 +1773610183.536122,0.75,4,3992.50,52.02,1666.20,2036.76,0.00,3518514654205.424316,0.000000,75,0,0.000000,0.000664,30222132,17983086,0,0,48352,0,1,1 +1773610188.532748,1.50,4,3992.50,51.99,1668.04,2035.37,0.00,1.960112,0.000195,246,2,0.000126,0.000185,30222142,17983099,0,0,48355,0,1,1 +1773610193.531823,1.05,4,3992.50,51.56,1684.07,2018.61,0.00,3519088728745.520996,3519088728747.534180,11,0,0.000016,0.000036,30222144,17983103,0,0,48357,0,1,1 +1773610198.531900,0.90,4,3992.50,51.57,1683.43,2019.25,0.00,2.012274,0.000195,246,2,0.000512,0.001117,30222158,17983128,0,0,48360,0,1,1 +1773610203.531847,1.15,4,3992.50,51.55,1684.42,2018.25,0.00,0.000000,0.000000,246,2,0.000000,0.000020,30222158,17983130,0,0,48362,0,1,1 +1773610208.534019,32.66,4,3992.50,57.72,1442.73,2259.85,0.00,3516909751673.316895,10.670366,251,416,58.459855,0.027336,30228295,17985080,0,0,48365,0,1,1 +1773610213.533905,31.20,4,3992.50,57.58,1448.24,2254.39,0.00,0.000000,0.000000,251,416,118.165714,0.045694,30240259,17988567,0,0,48367,0,1,1 +1773610218.535539,28.76,4,3992.50,57.60,1447.56,2255.04,0.00,3517287337305.285156,3517287337296.216309,75,0,119.928398,0.027135,30252559,17990614,0,0,48370,0,1,1 +1773610223.536211,28.63,4,3992.50,57.80,1439.29,2263.06,0.00,0.000000,0.000000,75,0,118.350174,0.030122,30264755,17992891,0,0,48372,0,1,1 +1773610228.535984,28.66,4,3992.50,57.91,1435.24,2267.11,0.00,1.958878,0.000195,246,2,120.171061,0.017255,30277087,17994196,0,0,48375,0,1,1 +1773610233.531851,28.52,4,3992.50,57.81,1439.15,2263.27,0.00,0.000000,0.000000,246,2,118.261704,0.016856,30289274,17995486,0,0,48377,0,1,1 +1773610238.532805,30.92,4,3992.50,57.73,1441.04,2260.24,0.00,3517766088059.800781,3517766088061.812988,11,0,120.146948,0.034090,30301696,17998123,0,0,48380,0,1,1 diff --git a/evaluation/data/pipeline_high-bw_run1/pipeline.duckdb b/evaluation/data/pipeline_high-bw_run1/pipeline.duckdb new file mode 100644 index 0000000..1491f87 Binary files /dev/null and b/evaluation/data/pipeline_high-bw_run1/pipeline.duckdb differ diff --git a/evaluation/data/pipeline_high-bw_run2/anomalies.jsonl b/evaluation/data/pipeline_high-bw_run2/anomalies.jsonl new file mode 100644 index 0000000..2162bdd --- /dev/null +++ b/evaluation/data/pipeline_high-bw_run2/anomalies.jsonl @@ -0,0 +1,540 @@ +{"timestamp":"2026-03-15T21:41:36.152358729Z","score":0.5,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=0.50 RRCF-fast:w=0.20,s=0.50 RRCF-mid:w=0.20,s=0.50 RRCF-slow:w=0.20,s=0.50 COPOD:w=0.20,s=0.50"} +{"timestamp":"2026-03-15T21:42:06.18025265Z","score":1,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=1.00 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-15T21:42:36.240993178Z","score":0.8999999999999999,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=0.50 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-15T21:43:07.540691127Z","score":0.5987963992276727,"is_anomaly":false,"confidence":0.665329332475192,"method":"SEAD","details":"MAD!:w=0.20,s=0.00 RRCF-fast:w=0.20,s=0.67 RRCF-mid:w=0.20,s=0.67 RRCF-slow:w=0.20,s=0.67 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-15T21:43:36.221636358Z","score":0.5969672719711794,"is_anomaly":false,"confidence":0.6632969688568661,"method":"SEAD","details":"MAD!:w=0.20,s=0.00 RRCF-fast:w=0.20,s=0.75 RRCF-mid:w=0.20,s=0.75 RRCF-slow:w=0.20,s=0.75 COPOD!:w=0.20,s=0.75"} +{"timestamp":"2026-03-15T21:44:06.250164643Z","score":0.9586946403608447,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.21,s=0.80 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-15T21:44:36.182375069Z","score":0.765930826005642,"is_anomaly":false,"confidence":0.7989309564903294,"method":"SEAD","details":"MAD!:w=0.21,s=0.67 RRCF-fast:w=0.20,s=0.83 RRCF-mid:w=0.20,s=0.83 RRCF-slow:w=0.20,s=0.83 COPOD!:w=0.20,s=0.67"} +{"timestamp":"2026-03-15T21:45:06.147659783Z","score":0.683571050483185,"is_anomaly":false,"confidence":0.7595233894257611,"method":"SEAD","details":"MAD!:w=0.21,s=0.43 RRCF-fast:w=0.20,s=0.86 RRCF-mid:w=0.20,s=0.86 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=0.29"} +{"timestamp":"2026-03-15T21:45:37.494241929Z","score":0.9229294839305959,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.21,s=0.75 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=0.88"} +{"timestamp":"2026-03-15T21:46:06.162315094Z","score":0.7535225079041606,"is_anomaly":false,"confidence":0.8164464577456552,"method":"SEAD","details":"MAD!:w=0.21,s=0.67 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=0.89 RRCF-slow:w=0.20,s=0.89 COPOD!:w=0.20,s=0.33"} +{"timestamp":"2026-03-15T21:46:36.189549175Z","score":0.6196292021120244,"is_anomaly":false,"confidence":0.6713722043780979,"method":"SEAD","details":"MAD!:w=0.21,s=0.60 RRCF-fast:w=0.20,s=0.70 RRCF-mid:w=0.20,s=0.60 RRCF-slow:w=0.20,s=0.60 COPOD!:w=0.20,s=0.60"} +{"timestamp":"2026-03-15T21:47:06.148079835Z","score":0.448414036694936,"is_anomaly":false,"confidence":0.48585947735163765,"method":"SEAD","details":"MAD!:w=0.21,s=0.00 RRCF-fast:w=0.20,s=0.55 RRCF-mid:w=0.20,s=0.64 RRCF-slow:w=0.20,s=0.64 COPOD!:w=0.20,s=0.45"} +{"timestamp":"2026-03-15T21:47:42.888648215Z","score":0.9021462274921748,"is_anomaly":false,"confidence":0.9774812086943968,"method":"SEAD","details":"MAD!:w=0.21,s=1.00 RRCF-fast:w=0.20,s=0.83 RRCF-mid:w=0.20,s=0.83 RRCF-slow:w=0.20,s=0.83 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-15T21:48:06.184300066Z","score":0.8096011993312447,"is_anomaly":false,"confidence":0.8772080786533054,"method":"SEAD","details":"MAD!:w=0.21,s=0.38 RRCF-fast:w=0.20,s=0.85 RRCF-mid:w=0.20,s=0.92 RRCF-slow:w=0.20,s=0.92 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-15T21:48:36.145760069Z","score":0.6368488518184987,"is_anomaly":false,"confidence":0.7059264146000352,"method":"SEAD","details":"MAD!:w=0.21,s=0.29 RRCF-fast:w=0.20,s=0.79 RRCF-mid:w=0.20,s=0.71 RRCF-slow:w=0.20,s=0.71 COPOD!:w=0.20,s=0.71"} +{"timestamp":"2026-03-15T21:49:06.917784935Z","score":0.45796868244505534,"is_anomaly":false,"confidence":0.5076435155286705,"method":"SEAD","details":"MAD!:w=0.21,s=0.07 RRCF-fast:w=0.20,s=0.60 RRCF-mid:w=0.20,s=0.73 RRCF-slow:w=0.19,s=0.67 COPOD!:w=0.20,s=0.27"} +{"timestamp":"2026-03-15T21:49:39.15317946Z","score":0.9874854950515878,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.22,s=1.00 RRCF-fast:w=0.19,s=1.00 RRCF-mid:w=0.19,s=1.00 RRCF-slow:w=0.19,s=1.00 COPOD!:w=0.20,s=0.94"} +{"timestamp":"2026-03-15T21:50:06.242213154Z","score":0.7464844518660539,"is_anomaly":false,"confidence":0.8088206790045396,"method":"SEAD","details":"MAD!:w=0.22,s=0.59 RRCF-fast:w=0.19,s=1.00 RRCF-mid:w=0.19,s=0.94 RRCF-slow:w=0.19,s=0.94 COPOD!:w=0.20,s=0.29"} +{"timestamp":"2026-03-15T21:50:36.140561696Z","score":0.580007767281561,"is_anomaly":false,"confidence":0.6284421262731893,"method":"SEAD","details":"MAD!:w=0.22,s=0.17 RRCF-fast:w=0.19,s=0.61 RRCF-mid:w=0.19,s=0.72 RRCF-slow:w=0.19,s=0.72 COPOD!:w=0.20,s=0.72"} +{"timestamp":"2026-03-15T21:51:06.72627828Z","score":0.8804896884427034,"is_anomaly":false,"confidence":0.9540162100931603,"method":"SEAD","details":"MAD!:w=0.22,s=0.79 RRCF-fast!:w=0.19,s=1.00 RRCF-mid!:w=0.19,s=0.95 RRCF-slow!:w=0.19,s=0.95 COPOD!:w=0.20,s=0.74"} +{"timestamp":"2026-03-15T21:51:36.16031005Z","score":0.9090208779927623,"is_anomaly":false,"confidence":0.984929936490273,"method":"SEAD","details":"MAD!:w=0.22,s=1.00 RRCF-fast!:w=0.19,s=1.00 RRCF-mid!:w=0.19,s=1.00 RRCF-slow!:w=0.19,s=1.00 COPOD!:w=0.20,s=0.55"} +{"timestamp":"2026-03-15T21:52:07.108545973Z","score":0.5010370352642463,"is_anomaly":false,"confidence":0.5511831987518284,"method":"SEAD","details":"MAD!:w=0.22,s=0.62 RRCF-fast:w=0.19,s=0.48 RRCF-mid:w=0.19,s=0.33 RRCF-slow:w=0.19,s=0.33 COPOD!:w=0.20,s=0.71"} +{"timestamp":"2026-03-15T21:52:36.148052427Z","score":0.5202001691168693,"is_anomaly":false,"confidence":0.5722642699533367,"method":"SEAD","details":"MAD!:w=0.22,s=0.05 RRCF-fast:w=0.19,s=0.82 RRCF-mid:w=0.19,s=0.82 RRCF-slow:w=0.19,s=0.82 COPOD!:w=0.20,s=0.18"} +{"timestamp":"2026-03-15T21:53:06.201748547Z","score":0.8944025306798987,"is_anomaly":false,"confidence":0.983918579136331,"method":"SEAD","details":"MAD!:w=0.22,s=0.96 RRCF-fast!:w=0.19,s=0.96 RRCF-mid!:w=0.19,s=0.96 RRCF-slow!:w=0.19,s=0.96 COPOD!:w=0.20,s=0.65"} +{"timestamp":"2026-03-15T21:53:36.187639059Z","score":0.5880825898807331,"is_anomaly":false,"confidence":0.6469406854321067,"method":"SEAD","details":"MAD!:w=0.22,s=0.38 RRCF-fast:w=0.19,s=0.62 RRCF-mid:w=0.19,s=0.54 RRCF-slow:w=0.19,s=0.62 COPOD!:w=0.21,s=0.79"} +{"timestamp":"2026-03-15T21:54:06.143918769Z","score":0.5342978669808746,"is_anomaly":false,"confidence":0.587772932301263,"method":"SEAD","details":"MAD!:w=0.22,s=0.08 RRCF-fast:w=0.19,s=0.80 RRCF-mid:w=0.19,s=0.80 RRCF-slow:w=0.19,s=0.80 COPOD!:w=0.20,s=0.28"} +{"timestamp":"2026-03-15T21:54:36.198387601Z","score":0.9404899445422599,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.22,s=0.77 RRCF-fast!:w=0.19,s=1.00 RRCF-mid!:w=0.19,s=1.00 RRCF-slow!:w=0.19,s=1.00 COPOD!:w=0.21,s=0.96"} +{"timestamp":"2026-03-15T21:55:07.180552898Z","score":0.7910387789040884,"is_anomaly":false,"confidence":0.8702096927089354,"method":"SEAD","details":"MAD!:w=0.22,s=0.63 RRCF-fast!:w=0.19,s=0.93 RRCF-mid!:w=0.19,s=0.93 RRCF-slow!:w=0.19,s=0.93 COPOD!:w=0.21,s=0.59"} +{"timestamp":"2026-03-15T21:55:36.232260307Z","score":0.45843203563773127,"is_anomaly":false,"confidence":0.5043140886378864,"method":"SEAD","details":"MAD!:w=0.23,s=0.50 RRCF-fast:w=0.19,s=0.29 RRCF-mid:w=0.19,s=0.32 RRCF-slow:w=0.19,s=0.29 COPOD!:w=0.21,s=0.86"} +{"timestamp":"2026-03-15T21:56:06.145565562Z","score":0.5118289088197925,"is_anomaly":false,"confidence":0.5630551742111557,"method":"SEAD","details":"MAD!:w=0.23,s=0.07 RRCF-fast:w=0.19,s=0.76 RRCF-mid:w=0.19,s=0.76 RRCF-slow:w=0.19,s=0.76 COPOD!:w=0.20,s=0.31"} +{"timestamp":"2026-03-15T21:56:36.19175388Z","score":0.865324755617335,"is_anomaly":false,"confidence":0.951930562395977,"method":"SEAD","details":"MAD!:w=0.23,s=0.90 RRCF-fast:w=0.19,s=0.87 RRCF-mid!:w=0.19,s=0.93 RRCF-slow!:w=0.19,s=0.93 COPOD!:w=0.21,s=0.70"} +{"timestamp":"2026-03-15T21:57:07.30353368Z","score":0.6754641306104685,"is_anomaly":false,"confidence":0.7430677853098183,"method":"SEAD","details":"MAD!:w=0.23,s=0.68 RRCF-fast:w=0.19,s=0.87 RRCF-mid:w=0.19,s=0.81 RRCF-slow:w=0.19,s=0.87 COPOD!:w=0.21,s=0.19"} +{"timestamp":"2026-03-15T21:57:36.189374061Z","score":0.47313497609225386,"is_anomaly":false,"confidence":0.5204885691261548,"method":"SEAD","details":"MAD!:w=0.23,s=0.56 RRCF-fast:w=0.19,s=0.19 RRCF-mid:w=0.19,s=0.38 RRCF-slow:w=0.19,s=0.38 COPOD!:w=0.21,s=0.81"} +{"timestamp":"2026-03-15T21:58:06.147158466Z","score":0.4810224361439333,"is_anomaly":false,"confidence":0.5291654435991548,"method":"SEAD","details":"MAD!:w=0.23,s=0.27 RRCF-fast:w=0.19,s=0.70 RRCF-mid:w=0.19,s=0.73 RRCF-slow:w=0.19,s=0.73 COPOD!:w=0.21,s=0.06"} +{"timestamp":"2026-03-15T21:58:38.600136354Z","score":0.9368120862420848,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.23,s=0.97 RRCF-fast!:w=0.19,s=0.94 RRCF-mid!:w=0.19,s=0.91 RRCF-slow!:w=0.19,s=0.91 COPOD!:w=0.21,s=0.94"} +{"timestamp":"2026-03-15T21:59:06.189611424Z","score":0.6768127249563691,"is_anomaly":false,"confidence":0.7445513533757999,"method":"SEAD","details":"MAD!:w=0.23,s=0.34 RRCF-fast:w=0.19,s=0.74 RRCF-mid:w=0.19,s=0.71 RRCF-slow:w=0.19,s=0.71 COPOD!:w=0.21,s=0.91"} +{"timestamp":"2026-03-15T21:59:37.601172179Z","score":0.4393644287313281,"is_anomaly":false,"confidence":0.4833381051725704,"method":"SEAD","details":"MAD!:w=0.23,s=0.19 RRCF-fast:w=0.19,s=0.64 RRCF-mid:w=0.19,s=0.64 RRCF-slow:w=0.19,s=0.64 COPOD!:w=0.21,s=0.17"} +{"timestamp":"2026-03-15T22:00:06.148196646Z","score":0.6853372073963628,"is_anomaly":false,"confidence":0.7539290064598709,"method":"SEAD","details":"MAD!:w=0.23,s=0.35 RRCF-fast!:w=0.19,s=0.95 RRCF-mid!:w=0.19,s=0.95 RRCF-slow!:w=0.19,s=0.95 COPOD!:w=0.21,s=0.35"} +{"timestamp":"2026-03-15T22:00:40.737168335Z","score":0.83772996780554,"is_anomaly":false,"confidence":0.9215739573059729,"method":"SEAD","details":"MAD!:w=0.23,s=0.95 RRCF-fast:w=0.19,s=0.82 RRCF-mid:w=0.19,s=0.87 RRCF-slow!:w=0.19,s=0.89 COPOD!:w=0.21,s=0.66"} +{"timestamp":"2026-03-15T22:01:06.190933202Z","score":0.4949387740025434,"is_anomaly":false,"confidence":0.5444745945719457,"method":"SEAD","details":"MAD!:w=0.23,s=0.59 RRCF-fast:w=0.19,s=0.49 RRCF-mid:w=0.19,s=0.38 RRCF-slow:w=0.19,s=0.36 COPOD!:w=0.21,s=0.62"} +{"timestamp":"2026-03-15T22:01:36.194576108Z","score":0.47391217925164925,"is_anomaly":false,"confidence":0.5213435584649163,"method":"SEAD","details":"MAD!:w=0.23,s=0.20 RRCF-fast:w=0.19,s=0.68 RRCF-mid:w=0.19,s=0.72 RRCF-slow:w=0.19,s=0.72 COPOD!:w=0.21,s=0.15"} +{"timestamp":"2026-03-15T22:02:06.183480188Z","score":0.8289459330334543,"is_anomaly":false,"confidence":0.9188598342175571,"method":"SEAD","details":"MAD!:w=0.23,s=0.76 RRCF-fast:w=0.19,s=0.78 RRCF-mid:w=0.19,s=0.83 RRCF-slow:w=0.19,s=0.83 COPOD!:w=0.21,s=0.95"} +{"timestamp":"2026-03-15T22:02:36.646348237Z","score":0.834949094762055,"is_anomaly":false,"confidence":0.9255141453986708,"method":"SEAD","details":"MAD!:w=0.23,s=0.67 RRCF-fast:w=0.19,s=0.88 RRCF-mid!:w=0.19,s=0.93 RRCF-slow:w=0.19,s=0.88 COPOD!:w=0.21,s=0.86"} +{"timestamp":"2026-03-15T22:03:07.02847528Z","score":0.4602439812424295,"is_anomaly":false,"confidence":0.5101656108697984,"method":"SEAD","details":"MAD!:w=0.23,s=0.44 RRCF-fast:w=0.19,s=0.40 RRCF-mid:w=0.19,s=0.51 RRCF-slow:w=0.18,s=0.47 COPOD!:w=0.21,s=0.49"} +{"timestamp":"2026-03-15T22:03:36.147638082Z","score":0.4227229367628856,"is_anomaly":false,"confidence":0.4685747430746223,"method":"SEAD","details":"MAD!:w=0.23,s=0.09 RRCF-fast:w=0.19,s=0.73 RRCF-mid:w=0.19,s=0.70 RRCF-slow:w=0.18,s=0.68 COPOD!:w=0.21,s=0.05"} +{"timestamp":"2026-03-15T22:04:08.457359432Z","score":0.831517434583534,"is_anomaly":false,"confidence":0.9217102607578621,"method":"SEAD","details":"MAD!:w=0.24,s=0.93 RRCF-fast:w=0.18,s=0.73 RRCF-mid:w=0.18,s=0.73 RRCF-slow:w=0.18,s=0.76 COPOD!:w=0.21,s=0.96"} +{"timestamp":"2026-03-15T22:04:36.18868485Z","score":0.7866849075286764,"is_anomaly":false,"confidence":0.872014850314829,"method":"SEAD","details":"MAD!:w=0.23,s=0.35 RRCF-fast:w=0.19,s=0.85 RRCF-mid!:w=0.18,s=0.93 RRCF-slow!:w=0.18,s=0.89 COPOD!:w=0.21,s=1.00"} +{"timestamp":"2026-03-15T22:05:06.145668254Z","score":0.521380094959727,"is_anomaly":false,"confidence":0.579311216621919,"method":"SEAD","details":"MAD!:w=0.24,s=0.32 RRCF-fast:w=0.18,s=0.72 RRCF-mid:w=0.18,s=0.70 RRCF-slow:w=0.18,s=0.70 COPOD!:w=0.21,s=0.26"} +{"timestamp":"2026-03-15T22:05:36.148133138Z","score":0.6851672190816493,"is_anomaly":false,"confidence":0.7612969100907215,"method":"SEAD","details":"MAD!:w=0.24,s=0.31 RRCF-fast!:w=0.18,s=0.96 RRCF-mid!:w=0.18,s=0.96 RRCF-slow!:w=0.18,s=0.98 COPOD!:w=0.21,s=0.38"} +{"timestamp":"2026-03-15T22:06:06.226154629Z","score":0.8719019371206639,"is_anomaly":false,"confidence":0.968779930134071,"method":"SEAD","details":"MAD!:w=0.24,s=0.90 RRCF-fast:w=0.18,s=0.86 RRCF-mid:w=0.18,s=0.88 RRCF-slow:w=0.18,s=0.82 COPOD!:w=0.21,s=0.90"} +{"timestamp":"2026-03-15T22:06:36.242030574Z","score":0.46987953159741247,"is_anomaly":false,"confidence":0.5220883684415695,"method":"SEAD","details":"MAD!:w=0.24,s=0.58 RRCF-fast:w=0.18,s=0.38 RRCF-mid:w=0.18,s=0.46 RRCF-slow:w=0.18,s=0.46 COPOD!:w=0.21,s=0.44"} +{"timestamp":"2026-03-15T22:07:06.168360046Z","score":0.43788483686483654,"is_anomaly":false,"confidence":0.4865387076275962,"method":"SEAD","details":"MAD!:w=0.24,s=0.16 RRCF-fast:w=0.18,s=0.49 RRCF-mid:w=0.18,s=0.65 RRCF-slow:w=0.18,s=0.67 COPOD!:w=0.21,s=0.33"} +{"timestamp":"2026-03-15T22:07:44.314865545Z","score":0.9537042042891403,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.24,s=0.81 RRCF-fast!:w=0.18,s=1.00 RRCF-mid!:w=0.18,s=1.00 RRCF-slow!:w=0.18,s=1.00 COPOD!:w=0.21,s=1.00"} +{"timestamp":"2026-03-15T22:08:06.165273555Z","score":0.7354864285877937,"is_anomaly":false,"confidence":0.8152629875007411,"method":"SEAD","details":"MAD!:w=0.24,s=0.72 RRCF-fast:w=0.18,s=0.72 RRCF-mid!:w=0.18,s=0.92 RRCF-slow!:w=0.18,s=0.94 COPOD!:w=0.21,s=0.43"} +{"timestamp":"2026-03-15T22:08:36.188214184Z","score":0.4767991547856337,"is_anomaly":false,"confidence":0.5297768386507042,"method":"SEAD","details":"MAD!:w=0.24,s=0.59 RRCF-fast:w=0.18,s=0.41 RRCF-mid:w=0.18,s=0.46 RRCF-slow:w=0.18,s=0.44 COPOD!:w=0.21,s=0.44"} +{"timestamp":"2026-03-15T22:09:06.146503044Z","score":0.40981420216380454,"is_anomaly":false,"confidence":0.4553491135153384,"method":"SEAD","details":"MAD!:w=0.24,s=0.04 RRCF-fast:w=0.18,s=0.69 RRCF-mid:w=0.18,s=0.67 RRCF-slow:w=0.18,s=0.67 COPOD!:w=0.21,s=0.15"} +{"timestamp":"2026-03-15T22:09:36.81932084Z","score":0.8216467523876767,"is_anomaly":false,"confidence":0.9129408359863075,"method":"SEAD","details":"MAD!:w=0.24,s=0.88 RRCF-fast:w=0.18,s=0.80 RRCF-mid!:w=0.18,s=0.91 RRCF-slow!:w=0.18,s=0.89 COPOD!:w=0.22,s=0.64"} +{"timestamp":"2026-03-15T22:10:07.403890572Z","score":0.7402733403198029,"is_anomaly":false,"confidence":0.8225259336886699,"method":"SEAD","details":"MAD!:w=0.24,s=0.35 RRCF-fast:w=0.18,s=0.70 RRCF-mid!:w=0.18,s=0.88 RRCF-slow!:w=0.18,s=0.88 COPOD!:w=0.22,s=0.98"} +{"timestamp":"2026-03-15T22:10:36.189106154Z","score":0.5349202317157957,"is_anomaly":false,"confidence":0.5943558130175509,"method":"SEAD","details":"MAD!:w=0.24,s=0.26 RRCF-fast:w=0.18,s=0.55 RRCF-mid:w=0.18,s=0.67 RRCF-slow:w=0.18,s=0.66 COPOD!:w=0.21,s=0.62"} +{"timestamp":"2026-03-15T22:11:06.145681605Z","score":0.3993610605470449,"is_anomaly":false,"confidence":0.4437345117189388,"method":"SEAD","details":"MAD!:w=0.25,s=0.08 RRCF-fast:w=0.18,s=0.54 RRCF-mid:w=0.18,s=0.63 RRCF-slow:w=0.18,s=0.59 COPOD!:w=0.21,s=0.29"} +{"timestamp":"2026-03-15T22:11:38.146594508Z","score":0.8701323461561615,"is_anomaly":false,"confidence":0.9668137179512907,"method":"SEAD","details":"MAD!:w=0.25,s=0.88 RRCF-fast!:w=0.18,s=0.88 RRCF-mid!:w=0.18,s=0.92 RRCF-slow!:w=0.18,s=0.92 COPOD!:w=0.21,s=0.77"} +{"timestamp":"2026-03-15T22:12:06.237647506Z","score":0.4737603260236666,"is_anomaly":false,"confidence":0.5296947512699095,"method":"SEAD","details":"MAD!:w=0.25,s=0.61 RRCF-fast:w=0.18,s=0.36 RRCF-mid:w=0.18,s=0.43 RRCF-slow:w=0.18,s=0.41 COPOD!:w=0.22,s=0.51"} +{"timestamp":"2026-03-15T22:12:36.145594783Z","score":0.4477036981659278,"is_anomaly":false,"confidence":0.5005617524646274,"method":"SEAD","details":"MAD!:w=0.25,s=0.00 RRCF-fast:w=0.18,s=0.52 RRCF-mid:w=0.18,s=0.66 RRCF-slow:w=0.18,s=0.65 COPOD!:w=0.22,s=0.56"} +{"timestamp":"2026-03-15T22:13:06.187064876Z","score":0.9739323070929216,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.94 RRCF-fast!:w=0.18,s=1.00 RRCF-mid!:w=0.18,s=1.00 RRCF-slow!:w=0.18,s=1.00 COPOD!:w=0.21,s=0.95"} +{"timestamp":"2026-03-15T22:13:36.172922943Z","score":0.8018163744382456,"is_anomaly":false,"confidence":0.8909070827091619,"method":"SEAD","details":"MAD!:w=0.25,s=0.86 RRCF-fast!:w=0.18,s=1.00 RRCF-mid!:w=0.18,s=0.98 RRCF-slow!:w=0.18,s=0.98 COPOD!:w=0.21,s=0.27"} +{"timestamp":"2026-03-15T22:14:07.484334281Z","score":0.7180342630319472,"is_anomaly":false,"confidence":0.7978158478132747,"method":"SEAD","details":"MAD!:w=0.25,s=0.49 RRCF-fast:w=0.18,s=0.71 RRCF-mid!:w=0.18,s=0.94 RRCF-slow!:w=0.18,s=0.95 COPOD!:w=0.22,s=0.62"} +{"timestamp":"2026-03-15T22:14:36.152541433Z","score":0.5734619311618567,"is_anomaly":false,"confidence":0.6371799235131742,"method":"SEAD","details":"MAD!:w=0.25,s=0.17 RRCF-fast:w=0.18,s=0.71 RRCF-mid!:w=0.18,s=0.94 RRCF-slow!:w=0.18,s=0.92 COPOD!:w=0.22,s=0.35"} +{"timestamp":"2026-03-15T22:15:12.719834377Z","score":0.7655475877094258,"is_anomaly":false,"confidence":0.8559318220259046,"method":"SEAD","details":"MAD!:w=0.25,s=0.72 RRCF-fast!:w=0.18,s=0.90 RRCF-mid!:w=0.17,s=0.91 RRCF-slow!:w=0.17,s=0.96 COPOD!:w=0.22,s=0.45"} +{"timestamp":"2026-03-15T22:15:36.239760841Z","score":0.868767137778901,"is_anomaly":false,"confidence":0.9713379691786981,"method":"SEAD","details":"MAD!:w=0.25,s=0.75 RRCF-fast!:w=0.18,s=0.91 RRCF-mid!:w=0.17,s=0.94 RRCF-slow!:w=0.17,s=0.93 COPOD!:w=0.22,s=0.87"} +{"timestamp":"2026-03-15T22:16:06.240254062Z","score":0.5899431956351051,"is_anomaly":false,"confidence":0.6595947298881718,"method":"SEAD","details":"MAD!:w=0.25,s=0.33 RRCF-fast:w=0.18,s=0.64 RRCF-mid:w=0.17,s=0.86 RRCF-slow!:w=0.17,s=0.88 COPOD!:w=0.22,s=0.41"} +{"timestamp":"2026-03-15T22:16:36.169064863Z","score":0.5351728019779223,"is_anomaly":false,"confidence":0.5983578798363859,"method":"SEAD","details":"MAD!:w=0.26,s=0.26 RRCF-fast:w=0.18,s=0.71 RRCF-mid:w=0.17,s=0.79 RRCF-slow:w=0.17,s=0.83 COPOD!:w=0.22,s=0.29"} +{"timestamp":"2026-03-15T22:17:08.620491171Z","score":0.7825294096466174,"is_anomaly":false,"confidence":0.8749185996284708,"method":"SEAD","details":"MAD!:w=0.26,s=0.62 RRCF-fast:w=0.18,s=0.83 RRCF-mid:w=0.17,s=0.86 RRCF-slow:w=0.17,s=0.87 COPOD!:w=0.22,s=0.80"} +{"timestamp":"2026-03-15T22:17:36.189411966Z","score":0.5502114081296289,"is_anomaly":false,"confidence":0.6151720162412491,"method":"SEAD","details":"MAD!:w=0.26,s=0.49 RRCF-fast:w=0.18,s=0.40 RRCF-mid:w=0.17,s=0.57 RRCF-slow:w=0.17,s=0.67 COPOD!:w=0.22,s=0.64"} +{"timestamp":"2026-03-15T22:18:06.14584402Z","score":0.4741735759977153,"is_anomaly":false,"confidence":0.5301567915256931,"method":"SEAD","details":"MAD!:w=0.26,s=0.10 RRCF-fast:w=0.18,s=0.63 RRCF-mid:w=0.17,s=0.68 RRCF-slow:w=0.17,s=0.75 COPOD!:w=0.22,s=0.41"} +{"timestamp":"2026-03-15T22:18:36.186864553Z","score":0.5932059373771712,"is_anomaly":false,"confidence":0.6737227535581449,"method":"SEAD","details":"MAD!:w=0.26,s=0.62 RRCF-fast:w=0.18,s=0.77 RRCF-mid:w=0.17,s=0.80 RRCF-slow:w=0.17,s=0.82 COPOD!:w=0.22,s=0.08"} +{"timestamp":"2026-03-15T22:19:10.059312722Z","score":0.8321692155056821,"is_anomaly":false,"confidence":0.9451209099081168,"method":"SEAD","details":"MAD!:w=0.26,s=0.91 RRCF-fast:w=0.18,s=0.77 RRCF-mid:w=0.17,s=0.81 RRCF-slow!:w=0.17,s=0.89 COPOD!:w=0.22,s=0.76"} +{"timestamp":"2026-03-15T22:19:36.288612654Z","score":0.5014562802502698,"is_anomaly":false,"confidence":0.5695197647767812,"method":"SEAD","details":"MAD!:w=0.26,s=0.43 RRCF-fast:w=0.18,s=0.36 RRCF-mid:w=0.17,s=0.53 RRCF-slow:w=0.17,s=0.58 COPOD!:w=0.22,s=0.62"} +{"timestamp":"2026-03-15T22:20:06.170032465Z","score":0.35242092075107684,"is_anomaly":false,"confidence":0.40025559115222975,"method":"SEAD","details":"MAD!:w=0.26,s=0.17 RRCF-fast:w=0.18,s=0.42 RRCF-mid:w=0.17,s=0.62 RRCF-slow:w=0.17,s=0.73 COPOD!:w=0.22,s=0.03"} +{"timestamp":"2026-03-15T22:20:38.212178598Z","score":0.7898505964119447,"is_anomaly":false,"confidence":0.8970583151393068,"method":"SEAD","details":"MAD!:w=0.26,s=0.83 RRCF-fast:w=0.18,s=0.73 RRCF-mid:w=0.17,s=0.74 RRCF-slow:w=0.17,s=0.86 COPOD!:w=0.22,s=0.77"} +{"timestamp":"2026-03-15T22:21:07.785445391Z","score":0.8248780373811679,"is_anomaly":false,"confidence":0.9368400882014937,"method":"SEAD","details":"MAD!:w=0.26,s=0.90 RRCF-fast:w=0.18,s=0.76 RRCF-mid:w=0.17,s=0.76 RRCF-slow:w=0.17,s=0.85 COPOD!:w=0.22,s=0.82"} +{"timestamp":"2026-03-15T22:21:36.187662623Z","score":0.4796338691542243,"is_anomaly":false,"confidence":0.5447353619808301,"method":"SEAD","details":"MAD!:w=0.26,s=0.35 RRCF-fast:w=0.18,s=0.35 RRCF-mid:w=0.17,s=0.50 RRCF-slow:w=0.17,s=0.64 COPOD!:w=0.22,s=0.60"} +{"timestamp":"2026-03-15T22:22:06.147741964Z","score":0.31753924040296405,"is_anomaly":false,"confidence":0.36419146108516937,"method":"SEAD","details":"MAD!:w=0.26,s=0.02 RRCF-fast:w=0.18,s=0.46 RRCF-mid:w=0.17,s=0.48 RRCF-slow:w=0.17,s=0.56 COPOD!:w=0.22,s=0.25"} +{"timestamp":"2026-03-15T22:22:36.924179569Z","score":0.8235864353428862,"is_anomaly":false,"confidence":0.9445860827682836,"method":"SEAD","details":"MAD!:w=0.26,s=0.95 RRCF-fast:w=0.18,s=0.87 RRCF-mid:w=0.17,s=0.73 RRCF-slow:w=0.17,s=0.74 COPOD!:w=0.22,s=0.77"} +{"timestamp":"2026-03-15T22:23:06.238390954Z","score":0.39448290638022654,"is_anomaly":false,"confidence":0.45243953429321654,"method":"SEAD","details":"MAD!:w=0.26,s=0.49 RRCF-fast:w=0.18,s=0.20 RRCF-mid:w=0.17,s=0.36 RRCF-slow:w=0.17,s=0.47 COPOD!:w=0.22,s=0.40"} +{"timestamp":"2026-03-15T22:23:36.146626468Z","score":0.3842841197101202,"is_anomaly":false,"confidence":0.44074236258628535,"method":"SEAD","details":"MAD!:w=0.26,s=0.02 RRCF-fast:w=0.18,s=0.40 RRCF-mid:w=0.17,s=0.46 RRCF-slow:w=0.17,s=0.55 COPOD!:w=0.22,s=0.61"} +{"timestamp":"2026-03-15T22:24:13.425130484Z","score":0.9143824088551588,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.26,s=0.84 RRCF-fast:w=0.18,s=0.87 RRCF-mid!:w=0.17,s=0.95 RRCF-slow!:w=0.17,s=0.96 COPOD!:w=0.22,s=0.98"} +{"timestamp":"2026-03-15T22:24:36.167767671Z","score":0.7315009829981794,"is_anomaly":false,"confidence":0.8307888128615839,"method":"SEAD","details":"MAD!:w=0.26,s=0.72 RRCF-fast:w=0.18,s=0.86 RRCF-mid:w=0.17,s=0.74 RRCF-slow:w=0.17,s=0.81 COPOD!:w=0.22,s=0.57"} +{"timestamp":"2026-03-15T22:25:06.190904444Z","score":0.35264331977139185,"is_anomaly":false,"confidence":0.40445296054272784,"method":"SEAD","details":"MAD!:w=0.26,s=0.59 RRCF-fast:w=0.18,s=0.28 RRCF-mid:w=0.17,s=0.36 RRCF-slow:w=0.17,s=0.38 COPOD!:w=0.22,s=0.11"} +{"timestamp":"2026-03-15T22:25:36.149793318Z","score":0.3121167072646985,"is_anomaly":false,"confidence":0.3579722603844888,"method":"SEAD","details":"MAD!:w=0.26,s=0.08 RRCF-fast:w=0.18,s=0.34 RRCF-mid:w=0.17,s=0.42 RRCF-slow:w=0.17,s=0.62 COPOD!:w=0.22,s=0.25"} +{"timestamp":"2026-03-15T22:26:06.241257146Z","score":0.6529022153442019,"is_anomaly":false,"confidence":0.7488252836096702,"method":"SEAD","details":"MAD!:w=0.26,s=0.91 RRCF-fast:w=0.18,s=0.61 RRCF-mid:w=0.17,s=0.63 RRCF-slow:w=0.16,s=0.73 COPOD!:w=0.22,s=0.35"} +{"timestamp":"2026-03-15T22:26:36.927796193Z","score":0.6370628226434223,"is_anomaly":false,"confidence":0.7306587994829264,"method":"SEAD","details":"MAD!:w=0.26,s=0.36 RRCF-fast:w=0.18,s=0.63 RRCF-mid:w=0.17,s=0.60 RRCF-slow:w=0.16,s=0.77 COPOD!:w=0.23,s=0.90"} +{"timestamp":"2026-03-15T22:27:06.189065484Z","score":0.3859864595116839,"is_anomaly":false,"confidence":0.44269480669621064,"method":"SEAD","details":"MAD!:w=0.26,s=0.32 RRCF-fast:w=0.18,s=0.35 RRCF-mid:w=0.17,s=0.37 RRCF-slow:w=0.16,s=0.52 COPOD!:w=0.23,s=0.41"} +{"timestamp":"2026-03-15T22:27:36.148894172Z","score":0.3973168445456684,"is_anomaly":false,"confidence":0.4556898289018058,"method":"SEAD","details":"MAD!:w=0.26,s=0.18 RRCF-fast:w=0.18,s=0.36 RRCF-mid:w=0.17,s=0.41 RRCF-slow:w=0.16,s=0.52 COPOD!:w=0.22,s=0.58"} +{"timestamp":"2026-03-15T22:28:06.554983051Z","score":0.7456477961048434,"is_anomaly":false,"confidence":0.8551968568475059,"method":"SEAD","details":"MAD!:w=0.27,s=0.89 RRCF-fast:w=0.18,s=0.60 RRCF-mid:w=0.17,s=0.49 RRCF-slow:w=0.16,s=0.72 COPOD!:w=0.22,s=0.89"} +{"timestamp":"2026-03-15T22:28:36.234748687Z","score":0.5464272952271966,"is_anomaly":false,"confidence":0.6279818209736223,"method":"SEAD","details":"MAD!:w=0.27,s=0.43 RRCF-fast:w=0.18,s=0.84 RRCF-mid:w=0.17,s=0.53 RRCF-slow:w=0.16,s=0.54 COPOD!:w=0.22,s=0.47"} +{"timestamp":"2026-03-15T22:29:06.149911699Z","score":0.3152649233760567,"is_anomaly":false,"confidence":0.36231835854482364,"method":"SEAD","details":"MAD!:w=0.27,s=0.12 RRCF-fast:w=0.18,s=0.40 RRCF-mid:w=0.17,s=0.40 RRCF-slow:w=0.16,s=0.59 COPOD!:w=0.22,s=0.22"} +{"timestamp":"2026-03-15T22:29:36.184256276Z","score":0.943188845172185,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.27,s=0.91 RRCF-fast!:w=0.18,s=0.97 RRCF-mid!:w=0.17,s=0.91 RRCF-slow!:w=0.16,s=0.98 COPOD!:w=0.22,s=0.97"} +{"timestamp":"2026-03-15T22:30:06.893030258Z","score":0.8800629262085979,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.27,s=0.77 RRCF-fast!:w=0.18,s=0.94 RRCF-mid:w=0.17,s=0.89 RRCF-slow!:w=0.16,s=0.95 COPOD!:w=0.22,s=0.91"} +{"timestamp":"2026-03-15T22:30:36.285122202Z","score":0.6864320188067702,"is_anomaly":false,"confidence":0.7799806108910761,"method":"SEAD","details":"MAD!:w=0.27,s=0.47 RRCF-fast!:w=0.18,s=0.92 RRCF-mid:w=0.17,s=0.76 RRCF-slow:w=0.16,s=0.84 COPOD!:w=0.22,s=0.60"} +{"timestamp":"2026-03-15T22:31:06.149130204Z","score":0.35472218474572986,"is_anomaly":false,"confidence":0.4030645697960596,"method":"SEAD","details":"MAD:w=0.27,s=0.00 RRCF-fast:w=0.18,s=0.65 RRCF-mid:w=0.17,s=0.49 RRCF-slow:w=0.16,s=0.53 COPOD!:w=0.22,s=0.32"} +{"timestamp":"2026-03-15T22:31:41.218004194Z","score":0.7480619045187843,"is_anomaly":false,"confidence":0.8500095643632124,"method":"SEAD","details":"MAD!:w=0.27,s=1.00 RRCF-fast:w=0.18,s=0.59 RRCF-mid:w=0.17,s=0.68 RRCF-slow:w=0.16,s=0.73 COPOD!:w=0.22,s=0.63"} +{"timestamp":"2026-03-15T22:32:09.200126812Z","score":0.8016680124986684,"is_anomaly":false,"confidence":0.919447449728196,"method":"SEAD","details":"MAD!:w=0.27,s=0.94 RRCF-fast:w=0.18,s=0.63 RRCF-mid:w=0.17,s=0.58 RRCF-slow:w=0.16,s=0.70 COPOD!:w=0.22,s=1.00"} +{"timestamp":"2026-03-15T22:32:36.190048238Z","score":0.3993056540999932,"is_anomaly":false,"confidence":0.4579708303191127,"method":"SEAD","details":"MAD!:w=0.27,s=0.01 RRCF-fast:w=0.18,s=0.48 RRCF-mid:w=0.17,s=0.41 RRCF-slow:w=0.16,s=0.62 COPOD!:w=0.22,s=0.64"} +{"timestamp":"2026-03-15T22:33:06.14563451Z","score":0.38679549921554324,"is_anomaly":false,"confidence":0.4436227088712317,"method":"SEAD","details":"MAD:w=0.27,s=0.00 RRCF-fast:w=0.18,s=0.38 RRCF-mid:w=0.17,s=0.40 RRCF-slow:w=0.16,s=0.66 COPOD!:w=0.22,s=0.66"} +{"timestamp":"2026-03-15T22:33:36.63713922Z","score":0.8666256999290137,"is_anomaly":false,"confidence":0.9939485887494708,"method":"SEAD","details":"MAD!:w=0.27,s=0.99 RRCF-fast!:w=0.18,s=0.93 RRCF-mid:w=0.17,s=0.74 RRCF-slow:w=0.16,s=0.77 COPOD!:w=0.22,s=0.83"} +{"timestamp":"2026-03-15T22:34:06.190090007Z","score":0.4453552730573539,"is_anomaly":false,"confidence":0.5107859658255588,"method":"SEAD","details":"MAD!:w=0.27,s=0.03 RRCF-fast:w=0.18,s=0.46 RRCF-mid:w=0.17,s=0.57 RRCF-slow:w=0.16,s=0.67 COPOD!:w=0.22,s=0.70"} +{"timestamp":"2026-03-15T22:34:36.146298584Z","score":0.2783088593043699,"is_anomaly":false,"confidence":0.3191974320225123,"method":"SEAD","details":"MAD!:w=0.28,s=0.02 RRCF-fast:w=0.18,s=0.47 RRCF-mid:w=0.17,s=0.45 RRCF-slow:w=0.16,s=0.52 COPOD!:w=0.22,s=0.14"} +{"timestamp":"2026-03-15T22:35:06.187089615Z","score":0.9494536683203819,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=1.00 RRCF-fast!:w=0.18,s=0.93 RRCF-mid:w=0.17,s=0.87 RRCF-slow!:w=0.16,s=0.94 COPOD!:w=0.22,s=0.96"} +{"timestamp":"2026-03-15T22:35:38.116644979Z","score":0.8069098385259941,"is_anomaly":false,"confidence":0.9254593941959834,"method":"SEAD","details":"MAD!:w=0.28,s=0.98 RRCF-fast:w=0.18,s=0.60 RRCF-mid:w=0.17,s=0.75 RRCF-slow:w=0.16,s=0.88 COPOD!:w=0.22,s=0.74"} +{"timestamp":"2026-03-15T22:36:06.231961203Z","score":0.33570281516779815,"is_anomaly":false,"confidence":0.3850235913873646,"method":"SEAD","details":"MAD!:w=0.28,s=0.04 RRCF-fast:w=0.18,s=0.31 RRCF-mid:w=0.17,s=0.44 RRCF-slow:w=0.16,s=0.55 COPOD!:w=0.22,s=0.50"} +{"timestamp":"2026-03-15T22:36:36.202250532Z","score":0.3329648072123521,"is_anomaly":false,"confidence":0.38188332086051163,"method":"SEAD","details":"MAD:w=0.28,s=0.01 RRCF-fast:w=0.18,s=0.35 RRCF-mid:w=0.17,s=0.35 RRCF-slow:w=0.16,s=0.51 COPOD!:w=0.22,s=0.59"} +{"timestamp":"2026-03-15T22:37:07.411155221Z","score":0.7590885758783618,"is_anomaly":false,"confidence":0.8706123287042431,"method":"SEAD","details":"MAD!:w=0.28,s=0.97 RRCF-fast:w=0.18,s=0.59 RRCF-mid:w=0.17,s=0.57 RRCF-slow:w=0.16,s=0.60 COPOD!:w=0.22,s=0.88"} +{"timestamp":"2026-03-15T22:37:38.02456714Z","score":0.7808874333687726,"is_anomaly":false,"confidence":0.8956138300914274,"method":"SEAD","details":"MAD!:w=0.28,s=0.98 RRCF-fast:w=0.18,s=0.54 RRCF-mid:w=0.17,s=0.69 RRCF-slow:w=0.16,s=0.71 COPOD!:w=0.22,s=0.85"} +{"timestamp":"2026-03-15T22:38:06.192992438Z","score":0.2563013753457078,"is_anomaly":false,"confidence":0.29395665318981606,"method":"SEAD","details":"MAD:w=0.28,s=0.01 RRCF-fast:w=0.18,s=0.24 RRCF-mid:w=0.17,s=0.32 RRCF-slow:w=0.16,s=0.42 COPOD!:w=0.22,s=0.42"} +{"timestamp":"2026-03-15T22:38:36.14702153Z","score":0.21351406177845889,"is_anomaly":false,"confidence":0.24538113394090488,"method":"SEAD","details":"MAD:w=0.28,s=0.02 RRCF-fast:w=0.18,s=0.34 RRCF-mid:w=0.17,s=0.36 RRCF-slow:w=0.16,s=0.52 COPOD!:w=0.22,s=0.03"} +{"timestamp":"2026-03-15T22:39:08.47439665Z","score":0.7083573211828564,"is_anomaly":false,"confidence":0.8140799779620288,"method":"SEAD","details":"MAD!:w=0.28,s=0.98 RRCF-fast:w=0.18,s=0.50 RRCF-mid:w=0.17,s=0.47 RRCF-slow:w=0.16,s=0.67 COPOD!:w=0.22,s=0.74"} +{"timestamp":"2026-03-15T22:39:36.297682888Z","score":0.21310437809387978,"is_anomaly":false,"confidence":0.24491030477751508,"method":"SEAD","details":"MAD!:w=0.28,s=0.05 RRCF-fast:w=0.18,s=0.16 RRCF-mid:w=0.17,s=0.26 RRCF-slow:w=0.16,s=0.31 COPOD!:w=0.22,s=0.36"} +{"timestamp":"2026-03-15T22:40:06.168024801Z","score":0.20956451395930573,"is_anomaly":false,"confidence":0.24084211428877908,"method":"SEAD","details":"MAD!:w=0.28,s=0.06 RRCF-fast:w=0.18,s=0.32 RRCF-mid:w=0.17,s=0.34 RRCF-slow:w=0.16,s=0.44 COPOD!:w=0.22,s=0.04"} +{"timestamp":"2026-03-15T22:40:36.491719742Z","score":0.8770886795374265,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=0.99 RRCF-fast:w=0.18,s=0.70 RRCF-mid:w=0.17,s=0.80 RRCF-slow:w=0.16,s=0.89 COPOD!:w=0.22,s=0.92"} +{"timestamp":"2026-03-15T22:41:06.930310212Z","score":0.7888196659094371,"is_anomaly":false,"confidence":0.904711450136704,"method":"SEAD","details":"MAD!:w=0.28,s=0.94 RRCF-fast:w=0.18,s=0.53 RRCF-mid:w=0.17,s=0.63 RRCF-slow:w=0.16,s=0.78 COPOD!:w=0.22,s=0.93"} +{"timestamp":"2026-03-15T22:41:36.190540351Z","score":0.43791712734445987,"is_anomaly":false,"confidence":0.5022550228419275,"method":"SEAD","details":"MAD!:w=0.28,s=0.08 RRCF-fast:w=0.18,s=0.42 RRCF-mid:w=0.17,s=0.34 RRCF-slow:w=0.16,s=0.61 COPOD!:w=0.22,s=0.86"} +{"timestamp":"2026-03-15T22:42:06.147045923Z","score":0.2441385234945372,"is_anomaly":false,"confidence":0.28057631068771,"method":"SEAD","details":"MAD!:w=0.28,s=0.04 RRCF-fast:w=0.18,s=0.27 RRCF-mid:w=0.17,s=0.36 RRCF-slow:w=0.16,s=0.52 COPOD!:w=0.21,s=0.20"} +{"timestamp":"2026-03-15T22:42:38.431262799Z","score":0.8639961731025044,"is_anomaly":false,"confidence":0.9929480002889631,"method":"SEAD","details":"MAD!:w=0.28,s=0.98 RRCF-fast:w=0.18,s=0.87 RRCF-mid:w=0.17,s=0.64 RRCF-slow:w=0.16,s=0.79 COPOD!:w=0.21,s=0.93"} +{"timestamp":"2026-03-15T22:43:07.717097351Z","score":0.7531299287813791,"is_anomaly":false,"confidence":0.8655349178873254,"method":"SEAD","details":"MAD!:w=0.28,s=0.97 RRCF-fast:w=0.18,s=0.55 RRCF-mid:w=0.17,s=0.56 RRCF-slow:w=0.16,s=0.73 COPOD!:w=0.21,s=0.80"} +{"timestamp":"2026-03-15T22:43:36.191449752Z","score":0.3119316360799791,"is_anomaly":false,"confidence":0.3584875765829732,"method":"SEAD","details":"MAD!:w=0.28,s=0.08 RRCF-fast:w=0.18,s=0.25 RRCF-mid:w=0.17,s=0.28 RRCF-slow:w=0.16,s=0.42 COPOD!:w=0.21,s=0.61"} +{"timestamp":"2026-03-15T22:44:06.144302017Z","score":0.30395963374998325,"is_anomaly":false,"confidence":0.3493257492296833,"method":"SEAD","details":"MAD!:w=0.28,s=0.04 RRCF-fast:w=0.18,s=0.37 RRCF-mid:w=0.17,s=0.31 RRCF-slow:w=0.16,s=0.38 COPOD!:w=0.21,s=0.54"} +{"timestamp":"2026-03-15T22:44:40.690202512Z","score":0.6744368918492816,"is_anomaly":false,"confidence":0.7750969089111891,"method":"SEAD","details":"MAD!:w=0.28,s=0.94 RRCF-fast:w=0.18,s=0.56 RRCF-mid:w=0.17,s=0.51 RRCF-slow:w=0.15,s=0.68 COPOD!:w=0.21,s=0.54"} +{"timestamp":"2026-03-15T22:45:06.190391552Z","score":0.3474518080537114,"is_anomaly":false,"confidence":0.3999366377301175,"method":"SEAD","details":"MAD!:w=0.28,s=0.08 RRCF-fast:w=0.18,s=0.41 RRCF-mid:w=0.17,s=0.29 RRCF-slow:w=0.15,s=0.35 COPOD!:w=0.21,s=0.69"} +{"timestamp":"2026-03-15T22:45:36.147771573Z","score":0.23148205538108013,"is_anomaly":false,"confidence":0.26644890824587303,"method":"SEAD","details":"MAD!:w=0.28,s=0.06 RRCF-fast:w=0.18,s=0.42 RRCF-mid:w=0.17,s=0.30 RRCF-slow:w=0.15,s=0.38 COPOD!:w=0.21,s=0.13"} +{"timestamp":"2026-03-15T22:46:06.185093784Z","score":0.8807436040465366,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=0.98 RRCF-fast:w=0.18,s=0.62 RRCF-mid!:w=0.17,s=0.85 RRCF-slow!:w=0.15,s=0.95 COPOD!:w=0.21,s=0.93"} +{"timestamp":"2026-03-15T22:46:36.171322836Z","score":0.7223971431147228,"is_anomaly":false,"confidence":0.8302152497903751,"method":"SEAD","details":"MAD!:w=0.28,s=0.71 RRCF-fast:w=0.18,s=0.78 RRCF-mid:w=0.17,s=0.61 RRCF-slow:w=0.15,s=0.74 COPOD!:w=0.21,s=0.78"} +{"timestamp":"2026-03-15T22:47:06.23215102Z","score":0.25720068875532703,"is_anomaly":false,"confidence":0.2955880101360668,"method":"SEAD","details":"MAD!:w=0.29,s=0.08 RRCF-fast:w=0.18,s=0.13 RRCF-mid:w=0.17,s=0.21 RRCF-slow:w=0.15,s=0.32 COPOD!:w=0.21,s=0.60"} +{"timestamp":"2026-03-15T22:47:36.146924593Z","score":0.214928079254244,"is_anomaly":false,"confidence":0.24700619417689265,"method":"SEAD","details":"MAD:w=0.29,s=0.02 RRCF-fast:w=0.18,s=0.17 RRCF-mid:w=0.17,s=0.31 RRCF-slow:w=0.15,s=0.39 COPOD!:w=0.21,s=0.30"} +{"timestamp":"2026-03-15T22:48:09.467101274Z","score":0.6953932680604844,"is_anomaly":false,"confidence":0.799181033933984,"method":"SEAD","details":"MAD!:w=0.29,s=0.92 RRCF-fast:w=0.18,s=0.47 RRCF-mid:w=0.17,s=0.56 RRCF-slow:w=0.15,s=0.64 COPOD!:w=0.21,s=0.73"} +{"timestamp":"2026-03-15T22:48:37.946612986Z","score":0.7440767096686716,"is_anomaly":false,"confidence":0.8564742809805004,"method":"SEAD","details":"MAD!:w=0.29,s=0.97 RRCF-fast:w=0.18,s=0.63 RRCF-mid:w=0.17,s=0.47 RRCF-slow:w=0.15,s=0.72 COPOD!:w=0.21,s=0.77"} +{"timestamp":"2026-03-15T22:49:06.236812694Z","score":0.30097800966035015,"is_anomaly":false,"confidence":0.3464426732689655,"method":"SEAD","details":"MAD!:w=0.28,s=0.13 RRCF-fast:w=0.18,s=0.13 RRCF-mid:w=0.17,s=0.21 RRCF-slow:w=0.15,s=0.31 COPOD!:w=0.21,s=0.76"} +{"timestamp":"2026-03-15T22:49:36.147894304Z","score":0.1904865570477072,"is_anomaly":false,"confidence":0.2192607762935268,"method":"SEAD","details":"MAD:w=0.29,s=0.04 RRCF-fast:w=0.18,s=0.32 RRCF-mid:w=0.17,s=0.29 RRCF-slow:w=0.15,s=0.31 COPOD!:w=0.21,s=0.12"} +{"timestamp":"2026-03-15T22:50:10.37364848Z","score":0.6551290379650547,"is_anomaly":false,"confidence":0.7540904915441028,"method":"SEAD","details":"MAD!:w=0.29,s=0.89 RRCF-fast:w=0.18,s=0.45 RRCF-mid:w=0.17,s=0.39 RRCF-slow:w=0.15,s=0.66 COPOD!:w=0.21,s=0.72"} +{"timestamp":"2026-03-15T22:50:36.231519333Z","score":0.6521844441845587,"is_anomaly":false,"confidence":0.7507010979397081,"method":"SEAD","details":"MAD!:w=0.29,s=0.59 RRCF-fast:w=0.18,s=0.57 RRCF-mid:w=0.17,s=0.53 RRCF-slow:w=0.15,s=0.67 COPOD!:w=0.21,s=0.91"} +{"timestamp":"2026-03-15T22:51:06.141424889Z","score":0.25735630356098027,"is_anomaly":false,"confidence":0.29623162798139446,"method":"SEAD","details":"MAD!:w=0.29,s=0.09 RRCF-fast:w=0.18,s=0.27 RRCF-mid:w=0.17,s=0.25 RRCF-slow:w=0.15,s=0.37 COPOD!:w=0.21,s=0.41"} +{"timestamp":"2026-03-15T22:51:36.142456729Z","score":0.20116133908137732,"is_anomaly":false,"confidence":0.2315480527908416,"method":"SEAD","details":"MAD:w=0.29,s=0.00 RRCF-fast:w=0.18,s=0.25 RRCF-mid:w=0.17,s=0.24 RRCF-slow:w=0.15,s=0.32 COPOD!:w=0.20,s=0.31"} +{"timestamp":"2026-03-15T22:52:06.230008823Z","score":0.6509345237427118,"is_anomaly":false,"confidence":0.7511138012593332,"method":"SEAD","details":"MAD!:w=0.29,s=0.94 RRCF-fast:w=0.18,s=0.46 RRCF-mid:w=0.17,s=0.42 RRCF-slow:w=0.15,s=0.34 COPOD!:w=0.20,s=0.84"} +{"timestamp":"2026-03-15T22:52:36.235975858Z","score":0.2402527706426577,"is_anomaly":false,"confidence":0.2772278397263514,"method":"SEAD","details":"MAD!:w=0.29,s=0.10 RRCF-fast:w=0.18,s=0.05 RRCF-mid:w=0.17,s=0.13 RRCF-slow:w=0.15,s=0.22 COPOD!:w=0.20,s=0.72"} +{"timestamp":"2026-03-15T22:53:06.218864727Z","score":0.222727703970002,"is_anomaly":false,"confidence":0.2570056530613457,"method":"SEAD","details":"MAD!:w=0.29,s=0.10 RRCF-fast:w=0.18,s=0.38 RRCF-mid:w=0.17,s=0.25 RRCF-slow:w=0.15,s=0.33 COPOD!:w=0.20,s=0.15"} +{"timestamp":"2026-03-15T22:53:36.193850318Z","score":0.5919293229458559,"is_anomaly":false,"confidence":0.6830276588778079,"method":"SEAD","details":"MAD!:w=0.29,s=0.97 RRCF-fast:w=0.18,s=0.45 RRCF-mid:w=0.17,s=0.40 RRCF-slow:w=0.15,s=0.51 COPOD!:w=0.20,s=0.41"} +{"timestamp":"2026-03-15T22:54:09.382323358Z","score":0.7216982237344627,"is_anomaly":false,"confidence":0.8327680840685636,"method":"SEAD","details":"MAD!:w=0.29,s=0.97 RRCF-fast:w=0.18,s=0.53 RRCF-mid:w=0.17,s=0.39 RRCF-slow:w=0.15,s=0.57 COPOD!:w=0.20,s=0.94"} +{"timestamp":"2026-03-15T22:54:36.188966263Z","score":0.2735709823180958,"is_anomaly":false,"confidence":0.31567374743272014,"method":"SEAD","details":"MAD!:w=0.28,s=0.15 RRCF-fast:w=0.18,s=0.08 RRCF-mid:w=0.18,s=0.13 RRCF-slow:w=0.15,s=0.25 COPOD!:w=0.20,s=0.77"} +{"timestamp":"2026-03-15T22:55:06.146682807Z","score":0.22086375060001934,"is_anomaly":false,"confidence":0.25523798916679785,"method":"SEAD","details":"MAD:w=0.28,s=0.04 RRCF-fast:w=0.18,s=0.43 RRCF-mid:w=0.18,s=0.23 RRCF-slow:w=0.15,s=0.34 COPOD!:w=0.20,s=0.18"} +{"timestamp":"2026-03-15T22:55:38.05024636Z","score":0.6633729076120265,"is_anomaly":false,"confidence":0.7666172766995055,"method":"SEAD","details":"MAD!:w=0.29,s=0.88 RRCF-fast:w=0.18,s=0.51 RRCF-mid:w=0.18,s=0.46 RRCF-slow:w=0.15,s=0.67 COPOD!:w=0.20,s=0.68"} +{"timestamp":"2026-03-15T22:56:06.299118134Z","score":0.19190277973720002,"is_anomaly":false,"confidence":0.22176966334482576,"method":"SEAD","details":"MAD!:w=0.28,s=0.10 RRCF-fast:w=0.18,s=0.16 RRCF-mid:w=0.18,s=0.14 RRCF-slow:w=0.15,s=0.21 COPOD!:w=0.20,s=0.38"} +{"timestamp":"2026-03-15T22:56:37.92615159Z","score":0.2571416258452328,"is_anomaly":false,"confidence":0.29716198938719174,"method":"SEAD","details":"MAD:w=0.28,s=0.03 RRCF-fast:w=0.18,s=0.40 RRCF-mid:w=0.18,s=0.22 RRCF-slow:w=0.15,s=0.33 COPOD!:w=0.20,s=0.43"} +{"timestamp":"2026-03-15T22:57:06.179123844Z","score":0.9636239772994455,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=0.98 RRCF-fast!:w=0.18,s=1.00 RRCF-mid!:w=0.18,s=0.95 RRCF-slow!:w=0.15,s=0.97 COPOD!:w=0.20,s=0.91"} +{"timestamp":"2026-03-15T22:57:36.247810818Z","score":0.8577649818425473,"is_anomaly":false,"confidence":0.9897756112157854,"method":"SEAD","details":"MAD!:w=0.29,s=0.84 RRCF-fast!:w=0.18,s=0.96 RRCF-mid!:w=0.18,s=0.93 RRCF-slow!:w=0.15,s=0.97 COPOD!:w=0.20,s=0.64"} +{"timestamp":"2026-03-15T22:58:06.235182257Z","score":0.42034123509181354,"is_anomaly":false,"confidence":0.4850320445450027,"method":"SEAD","details":"MAD!:w=0.29,s=0.14 RRCF-fast:w=0.18,s=0.79 RRCF-mid:w=0.18,s=0.54 RRCF-slow:w=0.15,s=0.25 COPOD!:w=0.20,s=0.51"} +{"timestamp":"2026-03-15T22:58:36.168333385Z","score":0.3492307879017815,"is_anomaly":false,"confidence":0.403583493520459,"method":"SEAD","details":"MAD:w=0.29,s=0.06 RRCF-fast:w=0.18,s=0.75 RRCF-mid:w=0.18,s=0.53 RRCF-slow:w=0.15,s=0.35 COPOD!:w=0.20,s=0.23"} +{"timestamp":"2026-03-15T22:59:06.190646314Z","score":0.6463520168030972,"is_anomaly":false,"confidence":0.7469473311693023,"method":"SEAD","details":"MAD!:w=0.29,s=0.88 RRCF-fast:w=0.18,s=0.74 RRCF-mid:w=0.18,s=0.55 RRCF-slow:w=0.15,s=0.60 COPOD!:w=0.20,s=0.34"} +{"timestamp":"2026-03-15T22:59:37.070271949Z","score":0.8766917717711741,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=0.95 RRCF-fast!:w=0.18,s=0.88 RRCF-mid:w=0.18,s=0.69 RRCF-slow!:w=0.15,s=0.81 COPOD!:w=0.20,s=0.99"} +{"timestamp":"2026-03-15T23:00:06.235626949Z","score":0.5293882268455605,"is_anomaly":false,"confidence":0.6108614444378043,"method":"SEAD","details":"MAD!:w=0.29,s=0.18 RRCF-fast!:w=0.18,s=0.84 RRCF-mid:w=0.18,s=0.59 RRCF-slow:w=0.15,s=0.69 COPOD!:w=0.20,s=0.57"} +{"timestamp":"2026-03-15T23:00:36.140334418Z","score":0.3275219140151488,"is_anomaly":false,"confidence":0.3779277651724112,"method":"SEAD","details":"MAD:w=0.29,s=0.06 RRCF-fast:w=0.18,s=0.63 RRCF-mid:w=0.18,s=0.30 RRCF-slow:w=0.15,s=0.28 COPOD!:w=0.20,s=0.51"} +{"timestamp":"2026-03-15T23:01:06.235311566Z","score":0.8643659229216751,"is_anomaly":false,"confidence":0.9973924417340454,"method":"SEAD","details":"MAD!:w=0.29,s=0.94 RRCF-fast!:w=0.18,s=0.88 RRCF-mid:w=0.18,s=0.71 RRCF-slow:w=0.15,s=0.75 COPOD!:w=0.20,s=0.97"} +{"timestamp":"2026-03-15T23:01:36.183416828Z","score":0.5361131118209224,"is_anomaly":false,"confidence":0.6186212939044341,"method":"SEAD","details":"MAD!:w=0.29,s=0.16 RRCF-fast:w=0.18,s=0.66 RRCF-mid:w=0.18,s=0.68 RRCF-slow:w=0.15,s=0.46 COPOD!:w=0.20,s=0.90"} +{"timestamp":"2026-03-15T23:02:06.194267736Z","score":0.2406910958479766,"is_anomaly":false,"confidence":0.2781511730544033,"method":"SEAD","details":"MAD!:w=0.30,s=0.09 RRCF-fast:w=0.18,s=0.40 RRCF-mid:w=0.18,s=0.39 RRCF-slow:w=0.15,s=0.39 COPOD!:w=0.20,s=0.06"} +{"timestamp":"2026-03-15T23:02:36.182940716Z","score":0.8968122903743472,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=0.98 RRCF-fast!:w=0.18,s=0.86 RRCF-mid!:w=0.18,s=0.83 RRCF-slow!:w=0.15,s=0.92 COPOD!:w=0.20,s=0.86"} +{"timestamp":"2026-03-15T23:03:06.82968474Z","score":0.7165108639825857,"is_anomaly":false,"confidence":0.8267823860304119,"method":"SEAD","details":"MAD!:w=0.30,s=0.95 RRCF-fast:w=0.18,s=0.69 RRCF-mid:w=0.18,s=0.70 RRCF-slow:w=0.15,s=0.76 COPOD!:w=0.20,s=0.37"} +{"timestamp":"2026-03-15T23:03:36.199599824Z","score":0.24205939783441185,"is_anomaly":false,"confidence":0.2793125081038321,"method":"SEAD","details":"MAD:w=0.29,s=0.05 RRCF-fast:w=0.18,s=0.36 RRCF-mid:w=0.18,s=0.20 RRCF-slow:w=0.15,s=0.25 COPOD!:w=0.20,s=0.46"} +{"timestamp":"2026-03-15T23:04:06.152469849Z","score":0.24921297040748147,"is_anomaly":false,"confidence":0.2875670204886548,"method":"SEAD","details":"MAD:w=0.30,s=0.08 RRCF-fast:w=0.18,s=0.44 RRCF-mid:w=0.18,s=0.39 RRCF-slow:w=0.15,s=0.32 COPOD!:w=0.20,s=0.15"} +{"timestamp":"2026-03-15T23:04:36.711755279Z","score":0.6743748521928259,"is_anomaly":false,"confidence":0.7781616126178403,"method":"SEAD","details":"MAD!:w=0.30,s=0.89 RRCF-fast:w=0.18,s=0.64 RRCF-mid:w=0.18,s=0.38 RRCF-slow:w=0.15,s=0.43 COPOD!:w=0.20,s=0.84"} +{"timestamp":"2026-03-15T23:05:06.969637927Z","score":0.7289434730039493,"is_anomaly":false,"confidence":0.8423929493198316,"method":"SEAD","details":"MAD!:w=0.29,s=0.84 RRCF-fast:w=0.18,s=0.67 RRCF-mid:w=0.18,s=0.47 RRCF-slow:w=0.15,s=0.65 COPOD!:w=0.20,s=0.91"} +{"timestamp":"2026-03-15T23:05:36.203887243Z","score":0.29565831397352943,"is_anomaly":false,"confidence":0.34167324123600573,"method":"SEAD","details":"MAD!:w=0.29,s=0.19 RRCF-fast:w=0.18,s=0.20 RRCF-mid:w=0.18,s=0.17 RRCF-slow:w=0.15,s=0.26 COPOD!:w=0.20,s=0.67"} +{"timestamp":"2026-03-15T23:06:06.197651273Z","score":0.21019142615796343,"is_anomaly":false,"confidence":0.24290467225568957,"method":"SEAD","details":"MAD!:w=0.29,s=0.09 RRCF-fast:w=0.18,s=0.40 RRCF-mid:w=0.18,s=0.25 RRCF-slow:w=0.15,s=0.27 COPOD!:w=0.20,s=0.13"} +{"timestamp":"2026-03-15T23:06:39.188948998Z","score":0.7881727671030999,"is_anomaly":false,"confidence":0.9108404237676134,"method":"SEAD","details":"MAD!:w=0.30,s=1.00 RRCF-fast:w=0.18,s=0.41 RRCF-mid!:w=0.18,s=0.83 RRCF-slow!:w=0.15,s=0.82 COPOD!:w=0.20,s=0.75"} +{"timestamp":"2026-03-15T23:07:06.188414121Z","score":0.28435466812690263,"is_anomaly":false,"confidence":0.32861034690269547,"method":"SEAD","details":"MAD!:w=0.29,s=0.16 RRCF-fast:w=0.18,s=0.23 RRCF-mid:w=0.18,s=0.23 RRCF-slow:w=0.15,s=0.40 COPOD!:w=0.20,s=0.47"} +{"timestamp":"2026-03-15T23:07:36.149825216Z","score":0.24347746310518625,"is_anomaly":false,"confidence":0.28137119795155513,"method":"SEAD","details":"MAD!:w=0.29,s=0.10 RRCF-fast:w=0.18,s=0.31 RRCF-mid:w=0.18,s=0.43 RRCF-slow:w=0.15,s=0.34 COPOD!:w=0.20,s=0.15"} +{"timestamp":"2026-03-15T23:08:06.184634545Z","score":0.9150065516265526,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=0.97 RRCF-fast!:w=0.18,s=0.89 RRCF-mid!:w=0.18,s=0.84 RRCF-slow!:w=0.15,s=0.85 COPOD!:w=0.20,s=0.98"} +{"timestamp":"2026-03-15T23:08:36.154260478Z","score":0.7343920657783616,"is_anomaly":false,"confidence":0.848689536513301,"method":"SEAD","details":"MAD!:w=0.30,s=0.84 RRCF-fast:w=0.18,s=0.68 RRCF-mid!:w=0.18,s=0.75 RRCF-slow:w=0.15,s=0.67 COPOD!:w=0.20,s=0.66"} +{"timestamp":"2026-03-15T23:09:06.187224696Z","score":0.21664119790241326,"is_anomaly":false,"confidence":0.2503582574011284,"method":"SEAD","details":"MAD!:w=0.29,s=0.15 RRCF-fast:w=0.18,s=0.14 RRCF-mid:w=0.18,s=0.19 RRCF-slow:w=0.15,s=0.22 COPOD!:w=0.20,s=0.41"} +{"timestamp":"2026-03-15T23:09:36.141240629Z","score":0.23498778128247583,"is_anomaly":false,"confidence":0.2715602203184771,"method":"SEAD","details":"MAD!:w=0.30,s=0.11 RRCF-fast:w=0.18,s=0.38 RRCF-mid:w=0.18,s=0.38 RRCF-slow:w=0.15,s=0.30 COPOD!:w=0.20,s=0.12"} +{"timestamp":"2026-03-15T23:10:07.810348658Z","score":0.5884234945313452,"is_anomaly":false,"confidence":0.6800030748127107,"method":"SEAD","details":"MAD!:w=0.30,s=0.85 RRCF-fast:w=0.18,s=0.49 RRCF-mid:w=0.18,s=0.47 RRCF-slow:w=0.15,s=0.36 COPOD!:w=0.20,s=0.57"} +{"timestamp":"2026-03-15T23:10:37.699306478Z","score":0.7322285642017677,"is_anomaly":false,"confidence":0.8461893173036352,"method":"SEAD","details":"MAD!:w=0.29,s=0.73 RRCF-fast:w=0.18,s=0.56 RRCF-mid:w=0.18,s=0.70 RRCF-slow:w=0.15,s=0.64 COPOD!:w=0.20,s=0.99"} +{"timestamp":"2026-03-15T23:11:06.848622169Z","score":0.3595063464656483,"is_anomaly":false,"confidence":0.41545829370057874,"method":"SEAD","details":"MAD!:w=0.29,s=0.19 RRCF-fast:w=0.18,s=0.28 RRCF-mid:w=0.18,s=0.33 RRCF-slow:w=0.15,s=0.29 COPOD!:w=0.20,s=0.77"} +{"timestamp":"2026-03-15T23:11:36.199189018Z","score":0.2423966100410237,"is_anomaly":false,"confidence":0.28012212578859425,"method":"SEAD","details":"MAD:w=0.30,s=0.03 RRCF-fast:w=0.18,s=0.23 RRCF-mid:w=0.18,s=0.33 RRCF-slow:w=0.15,s=0.24 COPOD!:w=0.19,s=0.49"} +{"timestamp":"2026-03-15T23:12:06.188125621Z","score":0.8092275223960254,"is_anomaly":false,"confidence":0.9362094235051812,"method":"SEAD","details":"MAD!:w=0.30,s=0.96 RRCF-fast:w=0.18,s=0.69 RRCF-mid!:w=0.18,s=0.77 RRCF-slow:w=0.15,s=0.77 COPOD!:w=0.19,s=0.75"} +{"timestamp":"2026-03-15T23:12:36.145754339Z","score":0.5114176140881469,"is_anomaly":false,"confidence":0.5916679504896322,"method":"SEAD","details":"MAD!:w=0.30,s=0.45 RRCF-fast:w=0.18,s=0.37 RRCF-mid:w=0.18,s=0.69 RRCF-slow!:w=0.15,s=0.79 COPOD!:w=0.19,s=0.35"} +{"timestamp":"2026-03-15T23:13:06.145316129Z","score":0.5011537889639461,"is_anomaly":false,"confidence":0.5797935523302188,"method":"SEAD","details":"MAD!:w=0.30,s=0.46 RRCF-fast:w=0.18,s=0.57 RRCF-mid:w=0.18,s=0.55 RRCF-slow:w=0.15,s=0.55 COPOD!:w=0.19,s=0.42"} +{"timestamp":"2026-03-15T23:13:36.146245227Z","score":0.4584643657785761,"is_anomaly":false,"confidence":0.5304054146754233,"method":"SEAD","details":"MAD!:w=0.30,s=0.46 RRCF-fast:w=0.18,s=0.42 RRCF-mid:w=0.18,s=0.62 RRCF-slow:w=0.15,s=0.56 COPOD!:w=0.19,s=0.26"} +{"timestamp":"2026-03-15T23:14:06.146441998Z","score":0.47220001932203437,"is_anomaly":false,"confidence":0.5462964316385052,"method":"SEAD","details":"MAD!:w=0.30,s=0.41 RRCF-fast:w=0.18,s=0.53 RRCF-mid:w=0.18,s=0.51 RRCF-slow:w=0.15,s=0.46 COPOD!:w=0.19,s=0.48"} +{"timestamp":"2026-03-15T23:14:36.145928502Z","score":0.5386997740777184,"is_anomaly":false,"confidence":0.6232311568425088,"method":"SEAD","details":"MAD!:w=0.30,s=0.70 RRCF-fast:w=0.18,s=0.41 RRCF-mid:w=0.18,s=0.55 RRCF-slow:w=0.15,s=0.73 COPOD!:w=0.19,s=0.25"} +{"timestamp":"2026-03-15T23:15:06.150258443Z","score":0.4640721047706086,"is_anomaly":false,"confidence":0.5371228706999738,"method":"SEAD","details":"MAD!:w=0.30,s=0.47 RRCF-fast:w=0.18,s=0.27 RRCF-mid:w=0.18,s=0.36 RRCF-slow:w=0.15,s=0.59 COPOD!:w=0.20,s=0.64"} +{"timestamp":"2026-03-15T23:15:36.148825372Z","score":0.452932378523397,"is_anomaly":false,"confidence":0.5242296119171134,"method":"SEAD","details":"MAD!:w=0.30,s=0.65 RRCF-fast:w=0.18,s=0.22 RRCF-mid:w=0.18,s=0.48 RRCF-slow:w=0.15,s=0.40 COPOD!:w=0.19,s=0.38"} +{"timestamp":"2026-03-15T23:16:06.146192122Z","score":0.41357624839313034,"is_anomaly":false,"confidence":0.4786783336181093,"method":"SEAD","details":"MAD!:w=0.29,s=0.46 RRCF-fast:w=0.18,s=0.26 RRCF-mid:w=0.18,s=0.44 RRCF-slow:w=0.15,s=0.37 COPOD!:w=0.20,s=0.50"} +{"timestamp":"2026-03-15T23:16:36.146785226Z","score":0.35682133579480935,"is_anomaly":false,"confidence":0.41298948641578775,"method":"SEAD","details":"MAD!:w=0.29,s=0.45 RRCF-fast:w=0.18,s=0.36 RRCF-mid:w=0.18,s=0.31 RRCF-slow:w=0.15,s=0.38 COPOD!:w=0.19,s=0.23"} +{"timestamp":"2026-03-15T23:17:06.146894593Z","score":0.3695749716659711,"is_anomaly":false,"confidence":0.4277507044260076,"method":"SEAD","details":"MAD!:w=0.29,s=0.38 RRCF-fast:w=0.18,s=0.37 RRCF-mid:w=0.18,s=0.44 RRCF-slow:w=0.15,s=0.32 COPOD!:w=0.20,s=0.32"} +{"timestamp":"2026-03-15T23:17:36.148434521Z","score":0.3732390735119605,"is_anomaly":false,"confidence":0.4319915818280823,"method":"SEAD","details":"MAD!:w=0.29,s=0.44 RRCF-fast:w=0.18,s=0.43 RRCF-mid:w=0.18,s=0.33 RRCF-slow:w=0.15,s=0.37 COPOD!:w=0.20,s=0.27"} +{"timestamp":"2026-03-15T23:18:06.188539548Z","score":0.8319574612361476,"is_anomaly":false,"confidence":0.9629179933155146,"method":"SEAD","details":"MAD!:w=0.29,s=0.96 RRCF-fast:w=0.18,s=0.72 RRCF-mid:w=0.18,s=0.69 RRCF-slow!:w=0.15,s=0.82 COPOD!:w=0.20,s=0.89"} +{"timestamp":"2026-03-15T23:18:36.147739869Z","score":0.697784620870789,"is_anomaly":false,"confidence":0.8134916155843669,"method":"SEAD","details":"MAD!:w=0.29,s=0.66 RRCF-fast!:w=0.18,s=0.91 RRCF-mid:w=0.18,s=0.72 RRCF-slow:w=0.15,s=0.73 COPOD!:w=0.20,s=0.51"} +{"timestamp":"2026-03-15T23:19:06.14512624Z","score":0.605933448196087,"is_anomaly":false,"confidence":0.7064096355326768,"method":"SEAD","details":"MAD!:w=0.29,s=0.46 RRCF-fast:w=0.18,s=0.62 RRCF-mid!:w=0.18,s=0.75 RRCF-slow!:w=0.15,s=0.83 COPOD!:w=0.20,s=0.50"} +{"timestamp":"2026-03-15T23:19:36.143754068Z","score":0.6731190806235112,"is_anomaly":false,"confidence":0.7847360231209228,"method":"SEAD","details":"MAD!:w=0.29,s=0.66 RRCF-fast:w=0.18,s=0.64 RRCF-mid:w=0.18,s=0.64 RRCF-slow!:w=0.15,s=0.85 COPOD!:w=0.20,s=0.61"} +{"timestamp":"2026-03-15T23:20:06.146896639Z","score":0.5667303204493142,"is_anomaly":false,"confidence":0.6607058255420178,"method":"SEAD","details":"MAD!:w=0.29,s=0.59 RRCF-fast:w=0.18,s=0.54 RRCF-mid:w=0.18,s=0.49 RRCF-slow:w=0.15,s=0.61 COPOD!:w=0.20,s=0.59"} +{"timestamp":"2026-03-15T23:20:36.147781807Z","score":0.44761636766458673,"is_anomaly":false,"confidence":0.5218403375515182,"method":"SEAD","details":"MAD!:w=0.29,s=0.41 RRCF-fast:w=0.18,s=0.37 RRCF-mid:w=0.18,s=0.62 RRCF-slow:w=0.15,s=0.64 COPOD!:w=0.20,s=0.27"} +{"timestamp":"2026-03-15T23:21:06.148971193Z","score":0.5230282398941621,"is_anomaly":false,"confidence":0.6097570441388921,"method":"SEAD","details":"MAD!:w=0.29,s=0.67 RRCF-fast:w=0.18,s=0.31 RRCF-mid:w=0.18,s=0.43 RRCF-slow:w=0.15,s=0.56 COPOD!:w=0.20,s=0.55"} +{"timestamp":"2026-03-15T23:21:45.4804237Z","score":0.7073682643548358,"is_anomaly":false,"confidence":0.8246644236226018,"method":"SEAD","details":"MAD!:w=0.29,s=0.87 RRCF-fast:w=0.18,s=0.72 RRCF-mid:w=0.18,s=0.55 RRCF-slow:w=0.15,s=0.46 COPOD!:w=0.20,s=0.80"} +{"timestamp":"2026-03-15T23:22:07.251332281Z","score":0.5823592518186577,"is_anomaly":false,"confidence":0.6951634466941251,"method":"SEAD","details":"MAD!:w=0.29,s=0.82 RRCF-fast:w=0.18,s=0.51 RRCF-mid:w=0.18,s=0.33 RRCF-slow:w=0.15,s=0.45 COPOD!:w=0.20,s=0.63"} +{"timestamp":"2026-03-15T23:22:37.295338115Z","score":0.5507983035452956,"is_anomaly":false,"confidence":0.6574890772836133,"method":"SEAD","details":"MAD!:w=0.29,s=0.84 RRCF-fast:w=0.18,s=0.56 RRCF-mid:w=0.18,s=0.46 RRCF-slow:w=0.15,s=0.53 COPOD!:w=0.20,s=0.22"} +{"timestamp":"2026-03-15T23:23:06.298577159Z","score":0.20785232846574064,"is_anomaly":false,"confidence":0.24811375556996768,"method":"SEAD","details":"MAD:w=0.29,s=0.04 RRCF-fast:w=0.18,s=0.04 RRCF-mid:w=0.18,s=0.13 RRCF-slow:w=0.15,s=0.15 COPOD!:w=0.20,s=0.72"} +{"timestamp":"2026-03-15T23:23:36.283421071Z","score":0.2621172277828687,"is_anomaly":false,"confidence":0.31288987842883675,"method":"SEAD","details":"MAD:w=0.29,s=0.04 RRCF-fast:w=0.18,s=0.33 RRCF-mid:w=0.18,s=0.22 RRCF-slow:w=0.15,s=0.29 COPOD!:w=0.20,s=0.53"} +{"timestamp":"2026-03-15T23:24:07.289639098Z","score":0.7185882464376536,"is_anomaly":false,"confidence":0.8577802801062712,"method":"SEAD","details":"MAD!:w=0.29,s=0.94 RRCF-fast!:w=0.18,s=0.98 RRCF-mid:w=0.18,s=0.59 RRCF-slow:w=0.15,s=0.26 COPOD!:w=0.20,s=0.63"} +{"timestamp":"2026-03-15T23:24:38.255862232Z","score":0.48066531561482445,"is_anomaly":false,"confidence":0.5737711841369867,"method":"SEAD","details":"MAD!:w=0.29,s=0.54 RRCF-fast:w=0.18,s=0.21 RRCF-mid:w=0.18,s=0.33 RRCF-slow:w=0.15,s=0.41 COPOD!:w=0.20,s=0.84"} +{"timestamp":"2026-03-15T23:25:06.196478006Z","score":0.21593515891020992,"is_anomaly":false,"confidence":0.25862074737831464,"method":"SEAD","details":"MAD!:w=0.29,s=0.15 RRCF-fast:w=0.18,s=0.41 RRCF-mid:w=0.18,s=0.18 RRCF-slow:w=0.15,s=0.22 COPOD!:w=0.19,s=0.16"} +{"timestamp":"2026-03-15T23:25:36.194573081Z","score":0.2764499368477622,"is_anomaly":false,"confidence":0.33109795385375596,"method":"SEAD","details":"MAD:w=0.29,s=0.02 RRCF-fast:w=0.18,s=0.29 RRCF-mid:w=0.18,s=0.19 RRCF-slow:w=0.15,s=0.22 COPOD!:w=0.19,s=0.75"} +{"timestamp":"2026-03-15T23:26:07.369324031Z","score":0.6480115756057954,"is_anomaly":false,"confidence":0.776109082183587,"method":"SEAD","details":"MAD!:w=0.29,s=0.93 RRCF-fast!:w=0.18,s=0.89 RRCF-mid:w=0.18,s=0.55 RRCF-slow:w=0.15,s=0.30 COPOD!:w=0.19,s=0.37"} +{"timestamp":"2026-03-15T23:26:36.240367968Z","score":0.2077624172564072,"is_anomaly":false,"confidence":0.2488324360847599,"method":"SEAD","details":"MAD:w=0.29,s=0.03 RRCF-fast:w=0.18,s=0.09 RRCF-mid:w=0.18,s=0.09 RRCF-slow:w=0.16,s=0.14 COPOD!:w=0.19,s=0.75"} +{"timestamp":"2026-03-15T23:27:06.17024288Z","score":0.22150257818580799,"is_anomaly":false,"confidence":0.26528872188181973,"method":"SEAD","details":"MAD:w=0.29,s=0.02 RRCF-fast:w=0.18,s=0.23 RRCF-mid:w=0.18,s=0.23 RRCF-slow:w=0.16,s=0.18 COPOD!:w=0.19,s=0.55"} +{"timestamp":"2026-03-15T23:27:36.181559296Z","score":0.9747425744202294,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=0.96 RRCF-fast!:w=0.18,s=1.00 RRCF-mid!:w=0.18,s=0.98 RRCF-slow!:w=0.16,s=0.99 COPOD!:w=0.19,s=0.96"} +{"timestamp":"2026-03-15T23:28:07.740266795Z","score":0.8537920111705846,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=0.95 RRCF-fast!:w=0.18,s=0.98 RRCF-mid!:w=0.18,s=0.98 RRCF-slow!:w=0.16,s=0.97 COPOD!:w=0.19,s=0.38"} +{"timestamp":"2026-03-15T23:28:37.234159981Z","score":0.3796508251323259,"is_anomaly":false,"confidence":0.4531899773465586,"method":"SEAD","details":"MAD:w=0.29,s=0.00 RRCF-fast:w=0.18,s=0.61 RRCF-mid:w=0.18,s=0.28 RRCF-slow:w=0.16,s=0.40 COPOD!:w=0.19,s=0.80"} +{"timestamp":"2026-03-15T23:29:06.197706302Z","score":0.4075945110166838,"is_anomaly":false,"confidence":0.48654641314120645,"method":"SEAD","details":"MAD:w=0.29,s=0.07 RRCF-fast:w=0.18,s=0.73 RRCF-mid:w=0.18,s=0.42 RRCF-slow:w=0.16,s=0.63 COPOD!:w=0.19,s=0.42"} +{"timestamp":"2026-03-15T23:29:38.214537123Z","score":0.9629080317147306,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=1.00 RRCF-fast!:w=0.18,s=0.98 RRCF-mid!:w=0.18,s=0.99 RRCF-slow!:w=0.15,s=0.99 COPOD!:w=0.19,s=0.85"} +{"timestamp":"2026-03-15T23:30:06.186537412Z","score":0.8112796890200518,"is_anomaly":false,"confidence":0.9502076365270195,"method":"SEAD","details":"MAD!:w=0.29,s=0.76 RRCF-fast!:w=0.18,s=0.88 RRCF-mid:w=0.18,s=0.66 RRCF-slow:w=0.15,s=0.77 COPOD!:w=0.19,s=1.00"} +{"timestamp":"2026-03-15T23:30:36.195280655Z","score":0.48341470221057836,"is_anomaly":false,"confidence":0.5661972657108804,"method":"SEAD","details":"MAD!:w=0.29,s=0.22 RRCF-fast:w=0.18,s=0.71 RRCF-mid:w=0.18,s=0.44 RRCF-slow:w=0.15,s=0.53 COPOD!:w=0.19,s=0.68"} +{"timestamp":"2026-03-15T23:31:06.148489221Z","score":0.44594083023401854,"is_anomaly":false,"confidence":0.5223061640300605,"method":"SEAD","details":"MAD!:w=0.30,s=0.15 RRCF-fast!:w=0.18,s=0.94 RRCF-mid:w=0.18,s=0.48 RRCF-slow:w=0.15,s=0.81 COPOD!:w=0.19,s=0.12"} +{"timestamp":"2026-03-15T23:31:36.260442154Z","score":0.9792317415695946,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=1.00 RRCF-fast!:w=0.18,s=1.00 RRCF-mid!:w=0.18,s=1.00 RRCF-slow!:w=0.15,s=1.00 COPOD!:w=0.19,s=0.89"} +{"timestamp":"2026-03-15T23:32:06.165166087Z","score":0.8273446131908975,"is_anomaly":false,"confidence":0.9690236057099825,"method":"SEAD","details":"MAD!:w=0.30,s=0.86 RRCF-fast!:w=0.18,s=0.96 RRCF-mid!:w=0.18,s=0.99 RRCF-slow!:w=0.15,s=1.00 COPOD!:w=0.19,s=0.36"} +{"timestamp":"2026-03-15T23:32:36.15813005Z","score":0.8431573800592425,"is_anomaly":false,"confidence":0.9875442368021673,"method":"SEAD","details":"MAD!:w=0.30,s=0.87 RRCF-fast!:w=0.18,s=0.93 RRCF-mid!:w=0.18,s=0.98 RRCF-slow!:w=0.15,s=0.98 COPOD!:w=0.19,s=0.48"} +{"timestamp":"2026-03-15T23:33:06.145145501Z","score":0.8278565473839518,"is_anomaly":false,"confidence":0.9696232062993021,"method":"SEAD","details":"MAD!:w=0.30,s=0.88 RRCF-fast!:w=0.18,s=0.94 RRCF-mid!:w=0.18,s=0.96 RRCF-slow!:w=0.15,s=0.97 COPOD!:w=0.19,s=0.42"} +{"timestamp":"2026-03-15T23:33:36.141786868Z","score":0.8393378384397491,"is_anomaly":false,"confidence":0.9830706160965149,"method":"SEAD","details":"MAD!:w=0.30,s=0.90 RRCF-fast:w=0.18,s=0.91 RRCF-mid!:w=0.18,s=0.97 RRCF-slow!:w=0.15,s=0.96 COPOD!:w=0.20,s=0.46"} +{"timestamp":"2026-03-15T23:34:06.14495719Z","score":0.7420773732437869,"is_anomaly":false,"confidence":0.8691547397197682,"method":"SEAD","details":"MAD!:w=0.30,s=0.85 RRCF-fast:w=0.18,s=0.88 RRCF-mid!:w=0.18,s=0.95 RRCF-slow!:w=0.15,s=0.95 COPOD!:w=0.20,s=0.11"} +{"timestamp":"2026-03-15T23:34:36.147800109Z","score":0.7332759967463047,"is_anomaly":false,"confidence":0.8588461676292246,"method":"SEAD","details":"MAD!:w=0.30,s=0.86 RRCF-fast:w=0.17,s=0.79 RRCF-mid:w=0.18,s=0.90 RRCF-slow!:w=0.15,s=0.95 COPOD!:w=0.20,s=0.19"} +{"timestamp":"2026-03-15T23:35:08.161784361Z","score":0.7019853471347614,"is_anomaly":false,"confidence":0.8325673993216285,"method":"SEAD","details":"MAD!:w=0.30,s=0.85 RRCF-fast:w=0.17,s=0.67 RRCF-mid:w=0.18,s=0.89 RRCF-slow:w=0.15,s=0.89 COPOD!:w=0.20,s=0.21"} +{"timestamp":"2026-03-15T23:35:36.145915569Z","score":0.6930461690547076,"is_anomaly":false,"confidence":0.8219653714067146,"method":"SEAD","details":"MAD!:w=0.29,s=0.85 RRCF-fast:w=0.17,s=0.70 RRCF-mid:w=0.18,s=0.82 RRCF-slow:w=0.15,s=0.91 COPOD!:w=0.20,s=0.19"} +{"timestamp":"2026-03-15T23:36:06.142214472Z","score":0.6756821862219504,"is_anomaly":false,"confidence":0.801371371705808,"method":"SEAD","details":"MAD!:w=0.29,s=0.87 RRCF-fast:w=0.18,s=0.59 RRCF-mid:w=0.18,s=0.82 RRCF-slow:w=0.15,s=0.89 COPOD!:w=0.21,s=0.19"} +{"timestamp":"2026-03-15T23:36:36.140980107Z","score":0.6334375160465583,"is_anomaly":false,"confidence":0.7512684239353409,"method":"SEAD","details":"MAD!:w=0.29,s=0.65 RRCF-fast:w=0.18,s=0.63 RRCF-mid:w=0.18,s=0.89 RRCF-slow:w=0.15,s=0.93 COPOD!:w=0.21,s=0.17"} +{"timestamp":"2026-03-15T23:37:06.19005951Z","score":0.7001832243669481,"is_anomaly":false,"confidence":0.8304300489165515,"method":"SEAD","details":"MAD!:w=0.29,s=0.69 RRCF-fast:w=0.18,s=0.64 RRCF-mid:w=0.18,s=0.75 RRCF-slow:w=0.15,s=0.87 COPOD!:w=0.21,s=0.60"} +{"timestamp":"2026-03-15T23:37:36.184868857Z","score":0.7466470600320396,"is_anomaly":false,"confidence":0.8855370037555482,"method":"SEAD","details":"MAD!:w=0.29,s=0.70 RRCF-fast:w=0.18,s=0.65 RRCF-mid:w=0.18,s=0.81 RRCF-slow:w=0.15,s=0.91 COPOD!:w=0.21,s=0.72"} +{"timestamp":"2026-03-15T23:38:06.179564392Z","score":0.702525338429985,"is_anomaly":false,"confidence":0.8332078388267488,"method":"SEAD","details":"MAD!:w=0.29,s=0.78 RRCF-fast:w=0.18,s=0.44 RRCF-mid:w=0.17,s=0.76 RRCF-slow:w=0.15,s=0.85 COPOD!:w=0.21,s=0.67"} +{"timestamp":"2026-03-15T23:38:36.139012369Z","score":0.5925628309532935,"is_anomaly":false,"confidence":0.7059884635426572,"method":"SEAD","details":"MAD!:w=0.29,s=0.72 RRCF-fast:w=0.18,s=0.53 RRCF-mid:w=0.17,s=0.72 RRCF-slow:w=0.15,s=0.86 COPOD!:w=0.21,s=0.17"} +{"timestamp":"2026-03-15T23:39:06.13943312Z","score":0.5204681190431173,"is_anomaly":false,"confidence":0.6200937157922239,"method":"SEAD","details":"MAD!:w=0.29,s=0.73 RRCF-fast:w=0.18,s=0.46 RRCF-mid:w=0.17,s=0.58 RRCF-slow:w=0.15,s=0.79 COPOD!:w=0.21,s=0.05"} +{"timestamp":"2026-03-15T23:39:36.147757855Z","score":0.5038066395831433,"is_anomaly":false,"confidence":0.6002429731032655,"method":"SEAD","details":"MAD!:w=0.29,s=0.69 RRCF-fast:w=0.18,s=0.44 RRCF-mid:w=0.17,s=0.61 RRCF-slow:w=0.15,s=0.75 COPOD!:w=0.21,s=0.06"} +{"timestamp":"2026-03-15T23:40:06.14836319Z","score":0.6966841790475486,"is_anomaly":false,"confidence":0.8300402378410816,"method":"SEAD","details":"MAD!:w=0.29,s=0.82 RRCF-fast:w=0.18,s=0.45 RRCF-mid:w=0.17,s=0.77 RRCF-slow:w=0.15,s=0.85 COPOD!:w=0.22,s=0.57"} +{"timestamp":"2026-03-15T23:40:36.147000725Z","score":0.5424340633736274,"is_anomaly":false,"confidence":0.6462642794490975,"method":"SEAD","details":"MAD!:w=0.29,s=0.82 RRCF-fast:w=0.18,s=0.46 RRCF-mid:w=0.17,s=0.53 RRCF-slow:w=0.15,s=0.79 COPOD!:w=0.22,s=0.10"} +{"timestamp":"2026-03-15T23:41:06.14066101Z","score":0.5558522746773245,"is_anomaly":false,"confidence":0.6622509426128126,"method":"SEAD","details":"MAD!:w=0.28,s=0.81 RRCF-fast:w=0.18,s=0.30 RRCF-mid:w=0.17,s=0.56 RRCF-slow:w=0.15,s=0.74 COPOD!:w=0.22,s=0.31"} +{"timestamp":"2026-03-15T23:41:37.103880336Z","score":0.9014985099835053,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=1.00 RRCF-fast!:w=0.18,s=0.93 RRCF-mid!:w=0.17,s=0.98 RRCF-slow!:w=0.15,s=0.99 COPOD!:w=0.22,s=0.64"} +{"timestamp":"2026-03-15T23:42:07.39514528Z","score":0.43516158877986744,"is_anomaly":false,"confidence":0.5184582046113784,"method":"SEAD","details":"MAD!:w=0.28,s=0.15 RRCF-fast:w=0.18,s=0.34 RRCF-mid:w=0.17,s=0.36 RRCF-slow:w=0.15,s=0.52 COPOD!:w=0.22,s=0.88"} +{"timestamp":"2026-03-15T23:42:36.230569064Z","score":0.3995011596447995,"is_anomaly":false,"confidence":0.4759718212959813,"method":"SEAD","details":"MAD!:w=0.28,s=0.14 RRCF-fast:w=0.18,s=0.24 RRCF-mid:w=0.17,s=0.39 RRCF-slow:w=0.14,s=0.60 COPOD!:w=0.22,s=0.74"} +{"timestamp":"2026-03-15T23:43:07.2141853Z","score":0.9354070180310073,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=0.95 RRCF-fast:w=0.18,s=0.91 RRCF-mid:w=0.17,s=0.91 RRCF-slow:w=0.14,s=0.88 COPOD!:w=0.22,s=1.00"} +{"timestamp":"2026-03-15T23:43:38.075310083Z","score":0.6699934631840659,"is_anomaly":false,"confidence":0.7946244426360716,"method":"SEAD","details":"MAD!:w=0.28,s=0.65 RRCF-fast:w=0.18,s=0.50 RRCF-mid:w=0.17,s=0.77 RRCF-slow:w=0.14,s=0.70 COPOD!:w=0.22,s=0.74"} +{"timestamp":"2026-03-15T23:44:06.239121077Z","score":0.3603949441526103,"is_anomaly":false,"confidence":0.42743496371613093,"method":"SEAD","details":"MAD!:w=0.28,s=0.15 RRCF-fast:w=0.18,s=0.18 RRCF-mid:w=0.17,s=0.21 RRCF-slow:w=0.14,s=0.40 COPOD!:w=0.22,s=0.87"} +{"timestamp":"2026-03-15T23:44:36.170738855Z","score":0.3632162106781903,"is_anomaly":false,"confidence":0.43078103716849375,"method":"SEAD","details":"MAD:w=0.29,s=0.08 RRCF-fast:w=0.18,s=0.31 RRCF-mid:w=0.17,s=0.37 RRCF-slow:w=0.14,s=0.51 COPOD!:w=0.21,s=0.69"} +{"timestamp":"2026-03-15T23:45:06.235313939Z","score":0.703185694316898,"is_anomaly":false,"confidence":0.8377862430508969,"method":"SEAD","details":"MAD!:w=0.29,s=0.68 RRCF-fast:w=0.18,s=0.64 RRCF-mid:w=0.17,s=0.70 RRCF-slow:w=0.14,s=0.74 COPOD!:w=0.21,s=0.77"} +{"timestamp":"2026-03-15T23:45:38.099448425Z","score":0.6820319248661724,"is_anomaly":false,"confidence":0.8125833170276301,"method":"SEAD","details":"MAD!:w=0.29,s=0.65 RRCF-fast:w=0.18,s=0.47 RRCF-mid:w=0.17,s=0.57 RRCF-slow:w=0.14,s=0.71 COPOD!:w=0.21,s=0.99"} +{"timestamp":"2026-03-15T23:46:07.469179693Z","score":0.31391023339715385,"is_anomaly":false,"confidence":0.3739974763686143,"method":"SEAD","details":"MAD!:w=0.29,s=0.19 RRCF-fast:w=0.18,s=0.08 RRCF-mid:w=0.17,s=0.29 RRCF-slow:w=0.14,s=0.39 COPOD!:w=0.21,s=0.65"} +{"timestamp":"2026-03-15T23:46:37.589409003Z","score":0.25930508075132574,"is_anomaly":false,"confidence":0.30894005831233556,"method":"SEAD","details":"MAD!:w=0.29,s=0.14 RRCF-fast:w=0.18,s=0.29 RRCF-mid:w=0.17,s=0.21 RRCF-slow:w=0.14,s=0.43 COPOD!:w=0.21,s=0.32"} +{"timestamp":"2026-03-15T23:47:06.232746316Z","score":0.7214467096409172,"is_anomaly":false,"confidence":0.8595426973505919,"method":"SEAD","details":"MAD!:w=0.29,s=0.78 RRCF-fast:w=0.18,s=0.53 RRCF-mid:w=0.17,s=0.65 RRCF-slow:w=0.14,s=0.83 COPOD!:w=0.21,s=0.78"} +{"timestamp":"2026-03-15T23:47:36.373995863Z","score":0.2730673985288535,"is_anomaly":false,"confidence":0.3253366952173398,"method":"SEAD","details":"MAD!:w=0.29,s=0.19 RRCF-fast:w=0.18,s=0.12 RRCF-mid:w=0.17,s=0.17 RRCF-slow:w=0.14,s=0.36 COPOD!:w=0.21,s=0.55"} +{"timestamp":"2026-03-15T23:48:06.433527115Z","score":0.33012385657396953,"is_anomaly":false,"confidence":0.39331463619898166,"method":"SEAD","details":"MAD:w=0.29,s=0.08 RRCF-fast:w=0.18,s=0.16 RRCF-mid:w=0.17,s=0.31 RRCF-slow:w=0.14,s=0.50 COPOD!:w=0.21,s=0.74"} +{"timestamp":"2026-03-15T23:48:36.179262203Z","score":0.9329272909701075,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=0.94 RRCF-fast!:w=0.18,s=0.95 RRCF-mid:w=0.17,s=0.91 RRCF-slow:w=0.14,s=0.92 COPOD!:w=0.21,s=0.93"} +{"timestamp":"2026-03-15T23:49:08.413547339Z","score":0.7049481012650485,"is_anomaly":false,"confidence":0.8398860017743051,"method":"SEAD","details":"MAD!:w=0.29,s=0.65 RRCF-fast:w=0.18,s=0.86 RRCF-mid:w=0.17,s=0.68 RRCF-slow:w=0.14,s=0.71 COPOD!:w=0.21,s=0.66"} +{"timestamp":"2026-03-15T23:49:36.167499489Z","score":0.33277082661159363,"is_anomaly":false,"confidence":0.39646827698151155,"method":"SEAD","details":"MAD!:w=0.29,s=0.14 RRCF-fast:w=0.18,s=0.26 RRCF-mid:w=0.17,s=0.18 RRCF-slow:w=0.14,s=0.29 COPOD!:w=0.21,s=0.84"} +{"timestamp":"2026-03-15T23:50:06.140423648Z","score":0.27526112866085645,"is_anomaly":false,"confidence":0.32795033901073883,"method":"SEAD","details":"MAD!:w=0.29,s=0.14 RRCF-fast:w=0.18,s=0.58 RRCF-mid:w=0.18,s=0.25 RRCF-slow:w=0.14,s=0.51 COPOD!:w=0.20,s=0.05"} +{"timestamp":"2026-03-15T23:50:36.247265801Z","score":0.7141953099298689,"is_anomaly":false,"confidence":0.8509032682924096,"method":"SEAD","details":"MAD!:w=0.30,s=0.88 RRCF-fast:w=0.18,s=0.83 RRCF-mid:w=0.18,s=0.67 RRCF-slow:w=0.14,s=0.74 COPOD!:w=0.20,s=0.40"} +{"timestamp":"2026-03-15T23:51:06.135459263Z","score":0.759715562234774,"is_anomaly":false,"confidence":0.9051367964620951,"method":"SEAD","details":"MAD!:w=0.29,s=0.93 RRCF-fast:w=0.18,s=0.92 RRCF-mid:w=0.18,s=0.78 RRCF-slow:w=0.14,s=0.78 COPOD!:w=0.21,s=0.34"} +{"timestamp":"2026-03-15T23:51:36.17455251Z","score":0.2715036490163875,"is_anomaly":false,"confidence":0.32347362001585384,"method":"SEAD","details":"MAD!:w=0.29,s=0.18 RRCF-fast:w=0.18,s=0.07 RRCF-mid:w=0.18,s=0.10 RRCF-slow:w=0.14,s=0.20 COPOD!:w=0.21,s=0.77"} +{"timestamp":"2026-03-15T23:52:06.142940991Z","score":0.29488760454991614,"is_anomaly":false,"confidence":0.3520079451405845,"method":"SEAD","details":"MAD!:w=0.29,s=0.15 RRCF-fast:w=0.18,s=0.24 RRCF-mid:w=0.18,s=0.26 RRCF-slow:w=0.14,s=0.29 COPOD!:w=0.21,s=0.58"} +{"timestamp":"2026-03-15T23:52:41.579443994Z","score":0.9279953364484474,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=1.00 RRCF-fast:w=0.18,s=0.93 RRCF-mid!:w=0.18,s=0.97 RRCF-slow!:w=0.14,s=0.98 COPOD!:w=0.20,s=0.75"} +{"timestamp":"2026-03-15T23:53:07.659317969Z","score":0.32884201502445015,"is_anomaly":false,"confidence":0.39178743047702563,"method":"SEAD","details":"MAD!:w=0.29,s=0.25 RRCF-fast:w=0.18,s=0.18 RRCF-mid:w=0.18,s=0.29 RRCF-slow:w=0.14,s=0.39 COPOD!:w=0.21,s=0.57"} +{"timestamp":"2026-03-15T23:53:36.195872975Z","score":0.3319100175126542,"is_anomaly":false,"confidence":0.3954426957917732,"method":"SEAD","details":"MAD!:w=0.29,s=0.14 RRCF-fast:w=0.18,s=0.61 RRCF-mid:w=0.18,s=0.41 RRCF-slow:w=0.14,s=0.65 COPOD!:w=0.20,s=0.08"} +{"timestamp":"2026-03-15T23:54:06.201682789Z","score":0.9680881794763365,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=0.94 RRCF-fast!:w=0.18,s=1.00 RRCF-mid!:w=0.18,s=0.99 RRCF-slow!:w=0.14,s=1.00 COPOD!:w=0.21,s=0.95"} +{"timestamp":"2026-03-15T23:54:38.435079124Z","score":0.882355908198619,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=0.81 RRCF-fast!:w=0.18,s=0.98 RRCF-mid!:w=0.18,s=0.98 RRCF-slow!:w=0.14,s=0.99 COPOD!:w=0.21,s=0.74"} +{"timestamp":"2026-03-15T23:55:06.195275013Z","score":0.5842173383525919,"is_anomaly":false,"confidence":0.6928923972788369,"method":"SEAD","details":"MAD!:w=0.30,s=0.25 RRCF-fast:w=0.18,s=0.85 RRCF-mid:w=0.18,s=0.82 RRCF-slow:w=0.14,s=0.94 COPOD!:w=0.21,s=0.38"} +{"timestamp":"2026-03-15T23:55:37.072198701Z","score":0.5764149523622673,"is_anomaly":false,"confidence":0.6836386254743649,"method":"SEAD","details":"MAD!:w=0.30,s=0.09 RRCF-fast:w=0.18,s=0.85 RRCF-mid:w=0.17,s=0.81 RRCF-slow:w=0.14,s=0.93 COPOD!:w=0.21,s=0.61"} +{"timestamp":"2026-03-15T23:56:06.185147006Z","score":0.7617666733193086,"is_anomaly":false,"confidence":0.9034691403232274,"method":"SEAD","details":"MAD!:w=0.30,s=0.79 RRCF-fast:w=0.18,s=0.81 RRCF-mid:w=0.17,s=0.78 RRCF-slow:w=0.14,s=0.92 COPOD!:w=0.21,s=0.55"} +{"timestamp":"2026-03-15T23:56:37.695407329Z","score":0.845063034088104,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=0.91 RRCF-fast:w=0.18,s=0.83 RRCF-mid:w=0.17,s=0.87 RRCF-slow:w=0.14,s=0.93 COPOD!:w=0.21,s=0.69"} +{"timestamp":"2026-03-15T23:57:06.308150575Z","score":0.5721400742910216,"is_anomaly":false,"confidence":0.6770383405877056,"method":"SEAD","details":"MAD!:w=0.30,s=0.26 RRCF-fast:w=0.18,s=0.57 RRCF-mid:w=0.17,s=0.68 RRCF-slow:w=0.14,s=0.85 COPOD!:w=0.21,s=0.75"} +{"timestamp":"2026-03-15T23:57:37.550290966Z","score":0.4930506296615195,"is_anomaly":false,"confidence":0.583448346185872,"method":"SEAD","details":"MAD!:w=0.30,s=0.16 RRCF-fast:w=0.18,s=0.54 RRCF-mid:w=0.17,s=0.66 RRCF-slow:w=0.14,s=0.82 COPOD!:w=0.21,s=0.59"} +{"timestamp":"2026-03-15T23:58:06.30677988Z","score":0.8211984939056594,"is_anomaly":false,"confidence":0.9717600472156535,"method":"SEAD","details":"MAD!:w=0.31,s=0.88 RRCF-fast:w=0.18,s=0.74 RRCF-mid:w=0.17,s=0.80 RRCF-slow:w=0.14,s=0.86 COPOD!:w=0.21,s=0.79"} +{"timestamp":"2026-03-15T23:58:36.195992846Z","score":0.7002101047792342,"is_anomaly":false,"confidence":0.8304619295748031,"method":"SEAD","details":"MAD!:w=0.31,s=0.51 RRCF-fast:w=0.18,s=0.66 RRCF-mid:w=0.17,s=0.65 RRCF-slow:w=0.14,s=0.82 COPOD!:w=0.21,s=0.98"} +{"timestamp":"2026-03-15T23:59:06.150080534Z","score":0.39768542131128304,"is_anomaly":false,"confidence":0.47166214839196524,"method":"SEAD","details":"MAD!:w=0.31,s=0.19 RRCF-fast:w=0.18,s=0.66 RRCF-mid:w=0.17,s=0.55 RRCF-slow:w=0.14,s=0.63 COPOD!:w=0.20,s=0.20"} +{"timestamp":"2026-03-15T23:59:36.146171174Z","score":0.4417333049663857,"is_anomaly":false,"confidence":0.5239037401716727,"method":"SEAD","details":"MAD!:w=0.31,s=0.11 RRCF-fast:w=0.18,s=0.53 RRCF-mid:w=0.17,s=0.47 RRCF-slow:w=0.14,s=0.74 COPOD!:w=0.21,s=0.64"} +{"timestamp":"2026-03-16T00:00:06.513470792Z","score":0.7646812394960759,"is_anomaly":false,"confidence":0.9069258688601497,"method":"SEAD","details":"MAD!:w=0.31,s=0.74 RRCF-fast:w=0.18,s=0.61 RRCF-mid:w=0.17,s=0.64 RRCF-slow:w=0.14,s=0.82 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-16T00:00:36.189404024Z","score":0.4727893406707436,"is_anomaly":false,"confidence":0.5607367638026535,"method":"SEAD","details":"MAD!:w=0.31,s=0.25 RRCF-fast:w=0.18,s=0.32 RRCF-mid:w=0.17,s=0.62 RRCF-slow:w=0.14,s=0.59 COPOD!:w=0.20,s=0.75"} +{"timestamp":"2026-03-16T00:01:06.146651605Z","score":0.2884690915658904,"is_anomaly":false,"confidence":0.342129593345458,"method":"SEAD","details":"MAD:w=0.31,s=0.06 RRCF-fast:w=0.18,s=0.19 RRCF-mid:w=0.17,s=0.32 RRCF-slow:w=0.13,s=0.65 COPOD!:w=0.20,s=0.47"} +{"timestamp":"2026-03-16T00:01:36.195606458Z","score":0.6709974431624913,"is_anomaly":false,"confidence":0.7958151811650457,"method":"SEAD","details":"MAD!:w=0.32,s=0.74 RRCF-fast:w=0.18,s=0.59 RRCF-mid:w=0.17,s=0.63 RRCF-slow:w=0.13,s=0.78 COPOD!:w=0.20,s=0.60"} +{"timestamp":"2026-03-16T00:02:08.344555334Z","score":0.764151823705232,"is_anomaly":false,"confidence":0.9104222265562567,"method":"SEAD","details":"MAD!:w=0.32,s=0.89 RRCF-fast:w=0.18,s=0.63 RRCF-mid:w=0.17,s=0.75 RRCF-slow:w=0.13,s=0.80 COPOD!:w=0.20,s=0.67"} +{"timestamp":"2026-03-16T00:02:37.805273837Z","score":0.35652285327340605,"is_anomaly":false,"confidence":0.4247668065771333,"method":"SEAD","details":"MAD!:w=0.31,s=0.26 RRCF-fast:w=0.18,s=0.17 RRCF-mid:w=0.17,s=0.21 RRCF-slow:w=0.13,s=0.44 COPOD!:w=0.20,s=0.74"} +{"timestamp":"2026-03-16T00:03:06.19648251Z","score":0.2839765743282092,"is_anomaly":false,"confidence":0.33833405492131186,"method":"SEAD","details":"MAD!:w=0.32,s=0.11 RRCF-fast:w=0.18,s=0.29 RRCF-mid:w=0.17,s=0.28 RRCF-slow:w=0.13,s=0.58 COPOD!:w=0.20,s=0.36"} +{"timestamp":"2026-03-16T00:03:38.293024172Z","score":0.5862941291404656,"is_anomaly":false,"confidence":0.6985198358629129,"method":"SEAD","details":"MAD!:w=0.32,s=0.80 RRCF-fast:w=0.18,s=0.50 RRCF-mid:w=0.17,s=0.61 RRCF-slow:w=0.13,s=0.69 COPOD!:w=0.20,s=0.24"} +{"timestamp":"2026-03-16T00:04:06.246549576Z","score":0.46327021647824845,"is_anomaly":false,"confidence":0.5519472556359721,"method":"SEAD","details":"MAD!:w=0.31,s=0.49 RRCF-fast:w=0.18,s=0.18 RRCF-mid:w=0.17,s=0.28 RRCF-slow:w=0.13,s=0.51 COPOD!:w=0.20,s=0.79"} +{"timestamp":"2026-03-16T00:04:36.197525522Z","score":0.3088566761944114,"is_anomaly":false,"confidence":0.3679765906521588,"method":"SEAD","details":"MAD!:w=0.31,s=0.15 RRCF-fast:w=0.18,s=0.22 RRCF-mid:w=0.17,s=0.38 RRCF-slow:w=0.13,s=0.45 COPOD!:w=0.20,s=0.48"} +{"timestamp":"2026-03-16T00:05:06.146804163Z","score":0.22865045418206406,"is_anomaly":false,"confidence":0.2729405213723237,"method":"SEAD","details":"MAD!:w=0.32,s=0.15 RRCF-fast:w=0.18,s=0.40 RRCF-mid:w=0.17,s=0.27 RRCF-slow:w=0.13,s=0.36 COPOD!:w=0.20,s=0.07"} +{"timestamp":"2026-03-16T00:05:36.568474902Z","score":0.8067560058935002,"is_anomaly":false,"confidence":0.9630263174263932,"method":"SEAD","details":"MAD!:w=0.32,s=0.99 RRCF-fast:w=0.18,s=0.76 RRCF-mid!:w=0.17,s=0.83 RRCF-slow:w=0.13,s=0.84 COPOD!:w=0.20,s=0.51"} +{"timestamp":"2026-03-16T00:06:06.297559315Z","score":0.2986320377459749,"is_anomaly":false,"confidence":0.3564776828125785,"method":"SEAD","details":"MAD!:w=0.31,s=0.22 RRCF-fast:w=0.18,s=0.11 RRCF-mid:w=0.17,s=0.15 RRCF-slow:w=0.13,s=0.26 COPOD!:w=0.20,s=0.74"} +{"timestamp":"2026-03-16T00:06:36.172890662Z","score":0.23685979219576392,"is_anomaly":false,"confidence":0.28274002518523433,"method":"SEAD","details":"MAD!:w=0.32,s=0.09 RRCF-fast:w=0.18,s=0.12 RRCF-mid:w=0.17,s=0.18 RRCF-slow:w=0.13,s=0.35 COPOD!:w=0.20,s=0.55"} +{"timestamp":"2026-03-16T00:07:06.278804802Z","score":0.4842524062657517,"is_anomaly":false,"confidence":0.5780531016865329,"method":"SEAD","details":"MAD!:w=0.32,s=0.47 RRCF-fast:w=0.18,s=0.40 RRCF-mid:w=0.17,s=0.53 RRCF-slow:w=0.13,s=0.63 COPOD!:w=0.20,s=0.44"} +{"timestamp":"2026-03-16T00:07:39.241776989Z","score":0.7957707821330039,"is_anomaly":false,"confidence":0.9499132330404157,"method":"SEAD","details":"MAD!:w=0.32,s=0.99 RRCF-fast:w=0.18,s=0.62 RRCF-mid:w=0.17,s=0.83 RRCF-slow:w=0.13,s=0.80 COPOD!:w=0.20,s=0.62"} +{"timestamp":"2026-03-16T00:08:06.192298582Z","score":0.2888552144343391,"is_anomaly":false,"confidence":0.3448070685485974,"method":"SEAD","details":"MAD!:w=0.31,s=0.24 RRCF-fast:w=0.18,s=0.09 RRCF-mid:w=0.17,s=0.12 RRCF-slow:w=0.13,s=0.26 COPOD!:w=0.20,s=0.71"} +{"timestamp":"2026-03-16T00:08:37.080992796Z","score":0.22504385525549583,"is_anomaly":false,"confidence":0.26953003083335175,"method":"SEAD","details":"MAD:w=0.32,s=0.06 RRCF-fast:w=0.18,s=0.18 RRCF-mid:w=0.17,s=0.32 RRCF-slow:w=0.13,s=0.45 COPOD!:w=0.20,s=0.29"} +{"timestamp":"2026-03-16T00:09:08.008322906Z","score":0.9040558334688441,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.32,s=1.00 RRCF-fast!:w=0.18,s=0.96 RRCF-mid!:w=0.17,s=0.97 RRCF-slow!:w=0.13,s=0.96 COPOD!:w=0.20,s=0.61"} +{"timestamp":"2026-03-16T00:09:36.189119494Z","score":0.5948259479621417,"is_anomaly":false,"confidence":0.710044967736211,"method":"SEAD","details":"MAD!:w=0.32,s=0.55 RRCF-fast:w=0.18,s=0.43 RRCF-mid:w=0.17,s=0.48 RRCF-slow:w=0.13,s=0.56 COPOD!:w=0.20,s=0.95"} +{"timestamp":"2026-03-16T00:10:06.14762941Z","score":0.24161369816044054,"is_anomaly":false,"confidence":0.2884147725947482,"method":"SEAD","details":"MAD!:w=0.32,s=0.21 RRCF-fast:w=0.18,s=0.33 RRCF-mid:w=0.17,s=0.28 RRCF-slow:w=0.13,s=0.41 COPOD!:w=0.20,s=0.07"} +{"timestamp":"2026-03-16T00:10:36.153984593Z","score":0.2707812624763847,"is_anomaly":false,"confidence":0.3232321546114731,"method":"SEAD","details":"MAD!:w=0.32,s=0.10 RRCF-fast:w=0.18,s=0.34 RRCF-mid:w=0.17,s=0.35 RRCF-slow:w=0.13,s=0.27 COPOD!:w=0.20,s=0.42"} +{"timestamp":"2026-03-16T00:11:07.942636026Z","score":0.7672772338043006,"is_anomaly":false,"confidence":0.9159004253055522,"method":"SEAD","details":"MAD!:w=0.32,s=0.99 RRCF-fast:w=0.18,s=0.55 RRCF-mid:w=0.17,s=0.71 RRCF-slow:w=0.13,s=0.81 COPOD!:w=0.20,s=0.64"} +{"timestamp":"2026-03-16T00:11:38.250115322Z","score":0.19609693568942765,"is_anomaly":false,"confidence":0.2340813188324989,"method":"SEAD","details":"MAD:w=0.32,s=0.05 RRCF-fast:w=0.18,s=0.07 RRCF-mid:w=0.17,s=0.13 RRCF-slow:w=0.13,s=0.17 COPOD!:w=0.20,s=0.62"} +{"timestamp":"2026-03-16T00:12:06.194983017Z","score":0.1910825701698071,"is_anomaly":false,"confidence":0.22885535342039273,"method":"SEAD","details":"MAD:w=0.32,s=0.05 RRCF-fast:w=0.18,s=0.41 RRCF-mid:w=0.17,s=0.19 RRCF-slow:w=0.13,s=0.29 COPOD!:w=0.20,s=0.13"} +{"timestamp":"2026-03-16T00:12:36.190564677Z","score":0.9510354179036389,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.32,s=0.93 RRCF-fast!:w=0.18,s=0.99 RRCF-mid!:w=0.17,s=0.91 RRCF-slow!:w=0.13,s=0.93 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-16T00:13:06.148641044Z","score":0.6469221627173614,"is_anomaly":false,"confidence":0.7722323273357337,"method":"SEAD","details":"MAD!:w=0.32,s=0.62 RRCF-fast!:w=0.18,s=0.92 RRCF-mid:w=0.17,s=0.81 RRCF-slow:w=0.13,s=0.68 COPOD!:w=0.20,s=0.28"} +{"timestamp":"2026-03-16T00:13:36.14790387Z","score":0.49817959104867837,"is_anomaly":false,"confidence":0.5946780110465375,"method":"SEAD","details":"MAD!:w=0.32,s=0.60 RRCF-fast:w=0.18,s=0.67 RRCF-mid:w=0.17,s=0.55 RRCF-slow:w=0.13,s=0.43 COPOD!:w=0.20,s=0.18"} +{"timestamp":"2026-03-16T00:14:06.147431716Z","score":0.5072236315311095,"is_anomaly":false,"confidence":0.6054739009275242,"method":"SEAD","details":"MAD!:w=0.32,s=0.45 RRCF-fast:w=0.18,s=0.76 RRCF-mid:w=0.17,s=0.50 RRCF-slow:w=0.13,s=0.41 COPOD!:w=0.20,s=0.43"} +{"timestamp":"2026-03-16T00:14:36.148384147Z","score":0.533306154247812,"is_anomaly":false,"confidence":0.636608662388937,"method":"SEAD","details":"MAD!:w=0.32,s=0.61 RRCF-fast:w=0.18,s=0.66 RRCF-mid:w=0.17,s=0.55 RRCF-slow:w=0.13,s=0.35 COPOD!:w=0.20,s=0.39"} +{"timestamp":"2026-03-16T00:15:06.147406063Z","score":0.4736933548889924,"is_anomaly":false,"confidence":0.5673320180363645,"method":"SEAD","details":"MAD!:w=0.32,s=0.39 RRCF-fast:w=0.18,s=0.67 RRCF-mid:w=0.17,s=0.52 RRCF-slow:w=0.13,s=0.45 COPOD!:w=0.20,s=0.40"} +{"timestamp":"2026-03-16T00:15:36.146191599Z","score":0.42035109370676793,"is_anomaly":false,"confidence":0.5034451756924896,"method":"SEAD","details":"MAD!:w=0.32,s=0.42 RRCF-fast:w=0.18,s=0.49 RRCF-mid:w=0.17,s=0.49 RRCF-slow:w=0.13,s=0.29 COPOD!:w=0.20,s=0.38"} +{"timestamp":"2026-03-16T00:16:06.147186361Z","score":0.4380284505077612,"is_anomaly":false,"confidence":0.5246169536031309,"method":"SEAD","details":"MAD!:w=0.32,s=0.42 RRCF-fast:w=0.18,s=0.47 RRCF-mid:w=0.17,s=0.65 RRCF-slow:w=0.13,s=0.42 COPOD!:w=0.20,s=0.26"} +{"timestamp":"2026-03-16T00:16:36.148160135Z","score":0.3210027770607379,"is_anomaly":false,"confidence":0.3844579017745,"method":"SEAD","details":"MAD!:w=0.32,s=0.41 RRCF-fast:w=0.18,s=0.25 RRCF-mid:w=0.17,s=0.40 RRCF-slow:w=0.13,s=0.25 COPOD!:w=0.20,s=0.22"} +{"timestamp":"2026-03-16T00:17:06.148928405Z","score":0.33784371238842503,"is_anomaly":false,"confidence":0.404627916250037,"method":"SEAD","details":"MAD!:w=0.32,s=0.40 RRCF-fast:w=0.18,s=0.31 RRCF-mid:w=0.17,s=0.28 RRCF-slow:w=0.13,s=0.33 COPOD!:w=0.20,s=0.31"} +{"timestamp":"2026-03-16T00:17:36.146843046Z","score":0.3792012880609393,"is_anomaly":false,"confidence":0.45416096674612794,"method":"SEAD","details":"MAD!:w=0.32,s=0.43 RRCF-fast:w=0.18,s=0.42 RRCF-mid:w=0.17,s=0.30 RRCF-slow:w=0.13,s=0.29 COPOD!:w=0.20,s=0.39"} +{"timestamp":"2026-03-16T00:18:06.152669642Z","score":0.4256327531532242,"is_anomaly":false,"confidence":0.5097709019907634,"method":"SEAD","details":"MAD!:w=0.32,s=0.59 RRCF-fast:w=0.18,s=0.40 RRCF-mid:w=0.17,s=0.36 RRCF-slow:w=0.13,s=0.37 COPOD!:w=0.20,s=0.28"} +{"timestamp":"2026-03-16T00:18:36.181576793Z","score":0.9025115386381537,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=0.93 RRCF-fast!:w=0.18,s=0.93 RRCF-mid:w=0.17,s=0.81 RRCF-slow:w=0.13,s=0.80 COPOD!:w=0.20,s=0.98"} +{"timestamp":"2026-03-16T00:19:06.142291622Z","score":0.6094090228516456,"is_anomaly":false,"confidence":0.7298756614920527,"method":"SEAD","details":"MAD!:w=0.31,s=0.54 RRCF-fast!:w=0.18,s=0.87 RRCF-mid:w=0.17,s=0.74 RRCF-slow:w=0.13,s=0.47 COPOD!:w=0.20,s=0.48"} +{"timestamp":"2026-03-16T00:19:36.147819098Z","score":0.5643027522433256,"is_anomaly":false,"confidence":0.6758528822695968,"method":"SEAD","details":"MAD!:w=0.32,s=0.59 RRCF-fast:w=0.18,s=0.77 RRCF-mid:w=0.17,s=0.70 RRCF-slow:w=0.13,s=0.45 COPOD!:w=0.20,s=0.30"} +{"timestamp":"2026-03-16T00:20:06.148042279Z","score":0.5531380382210991,"is_anomaly":false,"confidence":0.6624811520739874,"method":"SEAD","details":"MAD!:w=0.31,s=0.54 RRCF-fast:w=0.18,s=0.66 RRCF-mid:w=0.17,s=0.55 RRCF-slow:w=0.13,s=0.63 COPOD!:w=0.20,s=0.43"} +{"timestamp":"2026-03-16T00:20:36.150253846Z","score":0.49260559162520856,"is_anomaly":false,"confidence":0.5899827842385912,"method":"SEAD","details":"MAD!:w=0.32,s=0.61 RRCF-fast:w=0.18,s=0.65 RRCF-mid:w=0.17,s=0.39 RRCF-slow:w=0.13,s=0.40 COPOD!:w=0.20,s=0.31"} +{"timestamp":"2026-03-16T00:21:06.147846714Z","score":0.4534735704311892,"is_anomaly":false,"confidence":0.5431152309476073,"method":"SEAD","details":"MAD!:w=0.31,s=0.61 RRCF-fast:w=0.18,s=0.52 RRCF-mid:w=0.17,s=0.40 RRCF-slow:w=0.13,s=0.47 COPOD!:w=0.20,s=0.19"} +{"timestamp":"2026-03-16T00:21:36.68449276Z","score":0.6836929288790781,"is_anomaly":false,"confidence":0.8188438470897652,"method":"SEAD","details":"MAD!:w=0.31,s=0.75 RRCF-fast:w=0.18,s=0.63 RRCF-mid:w=0.17,s=0.58 RRCF-slow:w=0.13,s=0.39 COPOD!:w=0.20,s=0.90"} +{"timestamp":"2026-03-16T00:22:06.316437703Z","score":0.5762754747031678,"is_anomaly":false,"confidence":0.6924979486930238,"method":"SEAD","details":"MAD!:w=0.31,s=0.75 RRCF-fast:w=0.18,s=0.45 RRCF-mid:w=0.17,s=0.38 RRCF-slow:w=0.13,s=0.44 COPOD!:w=0.20,s=0.68"} +{"timestamp":"2026-03-16T00:22:37.662527657Z","score":0.6965870126590354,"is_anomaly":false,"confidence":0.8370737581727801,"method":"SEAD","details":"MAD!:w=0.31,s=0.80 RRCF-fast:w=0.18,s=0.82 RRCF-mid:w=0.17,s=0.55 RRCF-slow:w=0.13,s=0.46 COPOD!:w=0.20,s=0.72"} +{"timestamp":"2026-03-16T00:23:07.849761528Z","score":0.21502203539617315,"is_anomaly":false,"confidence":0.25838739452229226,"method":"SEAD","details":"MAD!:w=0.31,s=0.12 RRCF-fast:w=0.18,s=0.06 RRCF-mid:w=0.17,s=0.13 RRCF-slow:w=0.14,s=0.07 COPOD!:w=0.20,s=0.66"} +{"timestamp":"2026-03-16T00:23:36.146988959Z","score":0.1497878018606204,"is_anomaly":false,"confidence":0.17999680722339534,"method":"SEAD","details":"MAD!:w=0.31,s=0.12 RRCF-fast:w=0.18,s=0.11 RRCF-mid:w=0.17,s=0.12 RRCF-slow:w=0.14,s=0.08 COPOD!:w=0.20,s=0.30"} +{"timestamp":"2026-03-16T00:24:06.494798073Z","score":0.7835991374091645,"is_anomaly":false,"confidence":0.9416343729237772,"method":"SEAD","details":"MAD!:w=0.31,s=0.97 RRCF-fast:w=0.18,s=0.77 RRCF-mid:w=0.17,s=0.64 RRCF-slow:w=0.14,s=0.59 COPOD!:w=0.20,s=0.76"} +{"timestamp":"2026-03-16T00:24:36.240926556Z","score":0.2417577862638375,"is_anomaly":false,"confidence":0.2905151761915744,"method":"SEAD","details":"MAD!:w=0.31,s=0.25 RRCF-fast:w=0.18,s=0.05 RRCF-mid:w=0.17,s=0.02 RRCF-slow:w=0.14,s=0.06 COPOD!:w=0.20,s=0.71"} +{"timestamp":"2026-03-16T00:25:06.149569835Z","score":0.12849863032405345,"is_anomaly":false,"confidence":0.15445336608091273,"method":"SEAD","details":"MAD!:w=0.31,s=0.17 RRCF-fast:w=0.18,s=0.20 RRCF-mid:w=0.17,s=0.13 RRCF-slow:w=0.14,s=0.10 COPOD!:w=0.20,s=0.02"} +{"timestamp":"2026-03-16T00:25:36.194346521Z","score":0.84009360426802,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=0.92 RRCF-fast:w=0.18,s=0.70 RRCF-mid!:w=0.17,s=0.81 RRCF-slow:w=0.14,s=0.67 COPOD!:w=0.20,s=0.99"} +{"timestamp":"2026-03-16T00:26:07.078447364Z","score":0.7368786812767167,"is_anomaly":false,"confidence":0.8854913971180003,"method":"SEAD","details":"MAD!:w=0.31,s=0.86 RRCF-fast!:w=0.18,s=0.91 RRCF-mid:w=0.17,s=0.68 RRCF-slow:w=0.14,s=0.47 COPOD!:w=0.20,s=0.62"} +{"timestamp":"2026-03-16T00:26:36.243546534Z","score":0.19316276557567502,"is_anomaly":false,"confidence":0.23211957613488057,"method":"SEAD","details":"MAD!:w=0.31,s=0.17 RRCF-fast:w=0.18,s=0.02 RRCF-mid:w=0.18,s=0.04 RRCF-slow:w=0.14,s=0.03 COPOD!:w=0.20,s=0.63"} +{"timestamp":"2026-03-16T00:27:07.411278658Z","score":0.14952401733413917,"is_anomaly":false,"confidence":0.17967982298321178,"method":"SEAD","details":"MAD:w=0.31,s=0.04 RRCF-fast:w=0.18,s=0.19 RRCF-mid:w=0.18,s=0.07 RRCF-slow:w=0.14,s=0.07 COPOD!:w=0.20,s=0.41"} +{"timestamp":"2026-03-16T00:27:37.235648504Z","score":0.7321061040469602,"is_anomaly":false,"confidence":0.8797562928377292,"method":"SEAD","details":"MAD!:w=0.31,s=0.98 RRCF-fast!:w=0.18,s=0.91 RRCF-mid!:w=0.18,s=0.77 RRCF-slow:w=0.14,s=0.77 COPOD!:w=0.20,s=0.12"} +{"timestamp":"2026-03-16T00:28:06.29118759Z","score":0.5107754888144904,"is_anomaly":false,"confidence":0.6137880124586306,"method":"SEAD","details":"MAD!:w=0.31,s=0.59 RRCF-fast:w=0.18,s=0.40 RRCF-mid:w=0.18,s=0.23 RRCF-slow:w=0.14,s=0.20 COPOD!:w=0.20,s=0.95"} +{"timestamp":"2026-03-16T00:28:36.194440653Z","score":0.2532854863087688,"is_anomaly":false,"confidence":0.3044452368182738,"method":"SEAD","details":"MAD!:w=0.31,s=0.19 RRCF-fast:w=0.18,s=0.23 RRCF-mid:w=0.18,s=0.06 RRCF-slow:w=0.14,s=0.07 COPOD!:w=0.20,s=0.67"} +{"timestamp":"2026-03-16T00:29:06.15185886Z","score":0.266429032611912,"is_anomaly":false,"confidence":0.3202435761752093,"method":"SEAD","details":"MAD:w=0.31,s=0.04 RRCF-fast:w=0.18,s=0.43 RRCF-mid:w=0.18,s=0.06 RRCF-slow:w=0.14,s=0.09 COPOD!:w=0.20,s=0.78"} +{"timestamp":"2026-03-16T00:29:36.237200295Z","score":0.7554648910041588,"is_anomaly":false,"confidence":0.9080571137395249,"method":"SEAD","details":"MAD!:w=0.31,s=0.88 RRCF-fast!:w=0.18,s=0.81 RRCF-mid:w=0.18,s=0.61 RRCF-slow:w=0.14,s=0.38 COPOD!:w=0.19,s=0.91"} +{"timestamp":"2026-03-16T00:30:08.299692916Z","score":0.26957593077368713,"is_anomaly":false,"confidence":0.3240260990906231,"method":"SEAD","details":"MAD!:w=0.31,s=0.32 RRCF-fast:w=0.18,s=0.51 RRCF-mid:w=0.18,s=0.00 RRCF-slow:w=0.14,s=0.03 COPOD!:w=0.19,s=0.39"} +{"timestamp":"2026-03-16T00:30:36.149916398Z","score":0.22932091555829948,"is_anomaly":false,"confidence":0.2756401934511982,"method":"SEAD","details":"MAD!:w=0.31,s=0.12 RRCF-fast:w=0.18,s=0.25 RRCF-mid:w=0.18,s=0.10 RRCF-slow:w=0.14,s=0.06 COPOD!:w=0.19,s=0.61"} +{"timestamp":"2026-03-16T00:31:06.192165775Z","score":0.8694040028943968,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=0.91 RRCF-fast!:w=0.18,s=0.84 RRCF-mid!:w=0.18,s=0.84 RRCF-slow:w=0.14,s=0.75 COPOD!:w=0.19,s=0.95"} +{"timestamp":"2026-03-16T00:31:36.987894261Z","score":0.7405869205688018,"is_anomaly":false,"confidence":0.8899475091959167,"method":"SEAD","details":"MAD!:w=0.31,s=0.90 RRCF-fast!:w=0.18,s=0.91 RRCF-mid:w=0.18,s=0.67 RRCF-slow:w=0.14,s=0.51 COPOD!:w=0.19,s=0.56"} +{"timestamp":"2026-03-16T00:32:06.390019996Z","score":0.19256443497579318,"is_anomaly":false,"confidence":0.23145947232647582,"method":"SEAD","details":"MAD:w=0.31,s=0.05 RRCF-fast:w=0.18,s=0.09 RRCF-mid:w=0.18,s=0.01 RRCF-slow:w=0.14,s=0.01 COPOD!:w=0.19,s=0.81"} +{"timestamp":"2026-03-16T00:32:36.149979892Z","score":0.14730897163033696,"is_anomaly":false,"confidence":0.17706310537976405,"method":"SEAD","details":"MAD:w=0.31,s=0.09 RRCF-fast:w=0.18,s=0.25 RRCF-mid:w=0.18,s=0.10 RRCF-slow:w=0.14,s=0.04 COPOD!:w=0.19,s=0.26"} +{"timestamp":"2026-03-16T00:33:08.93362916Z","score":0.6312496235102314,"is_anomaly":false,"confidence":0.7587522835269745,"method":"SEAD","details":"MAD!:w=0.31,s=0.84 RRCF-fast:w=0.18,s=0.56 RRCF-mid:w=0.18,s=0.59 RRCF-slow:w=0.14,s=0.37 COPOD!:w=0.19,s=0.60"} +{"timestamp":"2026-03-16T00:33:36.184996043Z","score":0.7417597457931014,"is_anomaly":false,"confidence":0.8915837411818777,"method":"SEAD","details":"MAD!:w=0.31,s=0.87 RRCF-fast:w=0.18,s=0.70 RRCF-mid:w=0.18,s=0.65 RRCF-slow:w=0.14,s=0.55 COPOD!:w=0.19,s=0.82"} +{"timestamp":"2026-03-16T00:34:06.194528553Z","score":0.2661962605730096,"is_anomaly":false,"confidence":0.3199637877848792,"method":"SEAD","details":"MAD!:w=0.30,s=0.32 RRCF-fast:w=0.18,s=0.06 RRCF-mid:w=0.18,s=0.04 RRCF-slow:w=0.14,s=0.03 COPOD!:w=0.19,s=0.77"} +{"timestamp":"2026-03-16T00:34:36.146665409Z","score":0.2035540109773207,"is_anomaly":false,"confidence":0.24466877269767376,"method":"SEAD","details":"MAD!:w=0.30,s=0.12 RRCF-fast:w=0.18,s=0.36 RRCF-mid:w=0.18,s=0.13 RRCF-slow:w=0.14,s=0.05 COPOD!:w=0.19,s=0.37"} +{"timestamp":"2026-03-16T00:35:10.933494855Z","score":0.676590189109571,"is_anomaly":false,"confidence":0.8136813023631208,"method":"SEAD","details":"MAD!:w=0.31,s=0.75 RRCF-fast:w=0.18,s=0.67 RRCF-mid:w=0.18,s=0.44 RRCF-slow:w=0.14,s=0.45 COPOD!:w=0.19,s=0.97"} +{"timestamp":"2026-03-16T00:35:36.191785603Z","score":0.18177310423051102,"is_anomaly":false,"confidence":0.2186040805284524,"method":"SEAD","details":"MAD!:w=0.30,s=0.25 RRCF-fast:w=0.18,s=0.01 RRCF-mid:w=0.18,s=0.02 RRCF-slow:w=0.14,s=0.02 COPOD!:w=0.19,s=0.52"} +{"timestamp":"2026-03-16T00:36:06.150592139Z","score":0.2108628101959402,"is_anomaly":false,"confidence":0.2535879603072315,"method":"SEAD","details":"MAD!:w=0.30,s=0.21 RRCF-fast:w=0.18,s=0.31 RRCF-mid:w=0.18,s=0.15 RRCF-slow:w=0.15,s=0.06 COPOD!:w=0.19,s=0.29"} +{"timestamp":"2026-03-16T00:36:36.197721508Z","score":0.9352845399196059,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=0.91 RRCF-fast!:w=0.18,s=0.95 RRCF-mid!:w=0.18,s=0.98 RRCF-slow!:w=0.15,s=0.90 COPOD!:w=0.19,s=0.95"} +{"timestamp":"2026-03-16T00:37:06.142936232Z","score":0.7470590970580103,"is_anomaly":false,"confidence":0.8979534794339212,"method":"SEAD","details":"MAD!:w=0.30,s=0.63 RRCF-fast!:w=0.18,s=0.95 RRCF-mid!:w=0.18,s=0.95 RRCF-slow!:w=0.15,s=0.82 COPOD!:w=0.19,s=0.49"} +{"timestamp":"2026-03-16T00:37:36.196122963Z","score":0.4308648630881444,"is_anomaly":false,"confidence":0.5178929009759133,"method":"SEAD","details":"MAD!:w=0.31,s=0.24 RRCF-fast:w=0.18,s=0.44 RRCF-mid:w=0.18,s=0.73 RRCF-slow:w=0.15,s=0.08 COPOD!:w=0.19,s=0.71"} +{"timestamp":"2026-03-16T00:38:06.1484326Z","score":0.3547665417987285,"is_anomaly":false,"confidence":0.42642389584631607,"method":"SEAD","details":"MAD!:w=0.31,s=0.22 RRCF-fast:w=0.18,s=0.60 RRCF-mid:w=0.18,s=0.64 RRCF-slow:w=0.15,s=0.15 COPOD!:w=0.19,s=0.22"} +{"timestamp":"2026-03-16T00:38:36.233741826Z","score":0.7878722256236095,"is_anomaly":false,"confidence":0.9475113724082235,"method":"SEAD","details":"MAD!:w=0.31,s=0.97 RRCF-fast:w=0.18,s=0.85 RRCF-mid!:w=0.18,s=0.84 RRCF-slow:w=0.15,s=0.54 COPOD!:w=0.19,s=0.58"} +{"timestamp":"2026-03-16T00:39:08.495054257Z","score":0.8581182010749766,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=0.98 RRCF-fast:w=0.18,s=0.82 RRCF-mid:w=0.18,s=0.76 RRCF-slow!:w=0.15,s=0.67 COPOD!:w=0.19,s=0.95"} +{"timestamp":"2026-03-16T00:39:36.575155995Z","score":0.4403573570968841,"is_anomaly":false,"confidence":0.5293027319480829,"method":"SEAD","details":"MAD!:w=0.31,s=0.34 RRCF-fast:w=0.18,s=0.55 RRCF-mid:w=0.18,s=0.44 RRCF-slow:w=0.15,s=0.16 COPOD!:w=0.19,s=0.73"} +{"timestamp":"2026-03-16T00:40:06.1479781Z","score":0.3812394134282624,"is_anomaly":false,"confidence":0.4582438780725704,"method":"SEAD","details":"MAD!:w=0.31,s=0.25 RRCF-fast:w=0.18,s=0.55 RRCF-mid:w=0.18,s=0.62 RRCF-slow:w=0.15,s=0.20 COPOD!:w=0.19,s=0.34"} +{"timestamp":"2026-03-16T00:40:38.315555948Z","score":0.6438752179404077,"is_anomaly":false,"confidence":0.7739280527440892,"method":"SEAD","details":"MAD!:w=0.31,s=0.96 RRCF-fast:w=0.18,s=0.65 RRCF-mid:w=0.18,s=0.76 RRCF-slow:w=0.15,s=0.44 COPOD!:w=0.19,s=0.16"} +{"timestamp":"2026-03-16T00:41:06.234429817Z","score":0.19454708656199876,"is_anomaly":false,"confidence":0.23384258886618411,"method":"SEAD","details":"MAD!:w=0.30,s=0.13 RRCF-fast:w=0.18,s=0.16 RRCF-mid:w=0.18,s=0.20 RRCF-slow:w=0.15,s=0.03 COPOD!:w=0.19,s=0.46"} +{"timestamp":"2026-03-16T00:41:36.698637093Z","score":0.32959764687259774,"is_anomaly":false,"confidence":0.3961712734481299,"method":"SEAD","details":"MAD!:w=0.31,s=0.15 RRCF-fast:w=0.18,s=0.50 RRCF-mid:w=0.18,s=0.31 RRCF-slow:w=0.15,s=0.05 COPOD!:w=0.19,s=0.71"} +{"timestamp":"2026-03-16T00:42:06.199382849Z","score":0.8206174190504182,"is_anomaly":false,"confidence":0.9868914167282914,"method":"SEAD","details":"MAD!:w=0.31,s=0.90 RRCF-fast:w=0.18,s=0.80 RRCF-mid!:w=0.18,s=0.84 RRCF-slow:w=0.15,s=0.61 COPOD!:w=0.19,s=0.87"} +{"timestamp":"2026-03-16T00:42:36.673695751Z","score":0.47334813443149115,"is_anomaly":false,"confidence":0.5692582196650727,"method":"SEAD","details":"MAD!:w=0.31,s=0.62 RRCF-fast:w=0.18,s=0.59 RRCF-mid:w=0.18,s=0.42 RRCF-slow:w=0.15,s=0.18 COPOD!:w=0.19,s=0.41"} +{"timestamp":"2026-03-16T00:43:07.741523237Z","score":0.23092559456570366,"is_anomaly":false,"confidence":0.27771587817802385,"method":"SEAD","details":"MAD!:w=0.31,s=0.26 RRCF-fast:w=0.18,s=0.06 RRCF-mid:w=0.18,s=0.10 RRCF-slow:w=0.15,s=0.02 COPOD!:w=0.19,s=0.66"} +{"timestamp":"2026-03-16T00:43:37.454577861Z","score":0.21212744436169118,"is_anomaly":false,"confidence":0.2551088354123751,"method":"SEAD","details":"MAD!:w=0.30,s=0.23 RRCF-fast:w=0.18,s=0.33 RRCF-mid:w=0.18,s=0.20 RRCF-slow:w=0.15,s=0.12 COPOD!:w=0.18,s=0.15"} +{"timestamp":"2026-03-16T00:44:08.09943443Z","score":0.5338691191944577,"is_anomaly":false,"confidence":0.6420420029579372,"method":"SEAD","details":"MAD!:w=0.30,s=0.84 RRCF-fast:w=0.18,s=0.71 RRCF-mid:w=0.18,s=0.63 RRCF-slow:w=0.15,s=0.23 COPOD!:w=0.18,s=0.03"} +{"timestamp":"2026-03-16T00:44:36.30562141Z","score":0.7372275315067873,"is_anomaly":false,"confidence":0.8866050197444485,"method":"SEAD","details":"MAD!:w=0.30,s=0.89 RRCF-fast:w=0.18,s=0.64 RRCF-mid:w=0.18,s=0.74 RRCF-slow:w=0.15,s=0.48 COPOD!:w=0.19,s=0.79"} +{"timestamp":"2026-03-16T00:45:06.197507427Z","score":0.1504639233904403,"is_anomaly":false,"confidence":0.1815123488691607,"method":"SEAD","details":"MAD!:w=0.30,s=0.27 RRCF-fast:w=0.18,s=0.10 RRCF-mid:w=0.18,s=0.15 RRCF-slow:w=0.15,s=0.06 COPOD!:w=0.19,s=0.08"} +{"timestamp":"2026-03-16T00:45:36.151382922Z","score":0.15248552865945048,"is_anomaly":false,"confidence":0.183951115003898,"method":"SEAD","details":"MAD!:w=0.30,s=0.13 RRCF-fast:w=0.18,s=0.17 RRCF-mid:w=0.18,s=0.16 RRCF-slow:w=0.15,s=0.09 COPOD!:w=0.19,s=0.22"} +{"timestamp":"2026-03-16T00:46:08.243957092Z","score":0.55494570253229,"is_anomaly":false,"confidence":0.6694594670384778,"method":"SEAD","details":"MAD!:w=0.30,s=0.85 RRCF-fast:w=0.18,s=0.67 RRCF-mid:w=0.18,s=0.45 RRCF-slow:w=0.15,s=0.19 COPOD!:w=0.19,s=0.38"} +{"timestamp":"2026-03-16T00:46:37.723914769Z","score":0.12598705694736415,"is_anomaly":false,"confidence":0.151984649332105,"method":"SEAD","details":"MAD!:w=0.30,s=0.20 RRCF-fast:w=0.18,s=0.07 RRCF-mid:w=0.18,s=0.04 RRCF-slow:w=0.16,s=0.01 COPOD!:w=0.19,s=0.24"} +{"timestamp":"2026-03-16T00:47:06.151533066Z","score":0.17513008835057298,"is_anomaly":false,"confidence":0.21126840891745485,"method":"SEAD","details":"MAD!:w=0.30,s=0.12 RRCF-fast:w=0.18,s=0.33 RRCF-mid:w=0.18,s=0.18 RRCF-slow:w=0.16,s=0.12 COPOD!:w=0.19,s=0.15"} +{"timestamp":"2026-03-16T00:47:36.192692295Z","score":0.7831116727422672,"is_anomaly":false,"confidence":0.9447077807312949,"method":"SEAD","details":"MAD!:w=0.30,s=0.89 RRCF-fast:w=0.18,s=0.77 RRCF-mid:w=0.18,s=0.79 RRCF-slow:w=0.16,s=0.54 COPOD!:w=0.19,s=0.82"} +{"timestamp":"2026-03-16T00:48:06.628109938Z","score":0.5234240429003031,"is_anomaly":false,"confidence":0.6314332721132717,"method":"SEAD","details":"MAD!:w=0.30,s=0.59 RRCF-fast:w=0.18,s=0.57 RRCF-mid:w=0.18,s=0.42 RRCF-slow:w=0.16,s=0.22 COPOD!:w=0.19,s=0.72"} +{"timestamp":"2026-03-16T00:48:37.523866314Z","score":0.2345884712222945,"is_anomaly":false,"confidence":0.28336850383511514,"method":"SEAD","details":"MAD!:w=0.30,s=0.30 RRCF-fast:w=0.18,s=0.02 RRCF-mid:w=0.18,s=0.03 RRCF-slow:w=0.16,s=0.00 COPOD!:w=0.19,s=0.73"} +{"timestamp":"2026-03-16T00:49:06.197307546Z","score":0.2279815716778656,"is_anomaly":false,"confidence":0.2753877738821941,"method":"SEAD","details":"MAD!:w=0.30,s=0.24 RRCF-fast:w=0.18,s=0.30 RRCF-mid:w=0.18,s=0.24 RRCF-slow:w=0.16,s=0.09 COPOD!:w=0.18,s=0.23"} +{"timestamp":"2026-03-16T00:49:43.531539825Z","score":0.6126501708055115,"is_anomaly":false,"confidence":0.7400438792705113,"method":"SEAD","details":"MAD!:w=0.30,s=0.85 RRCF-fast:w=0.18,s=0.47 RRCF-mid:w=0.18,s=0.60 RRCF-slow:w=0.16,s=0.27 COPOD!:w=0.18,s=0.68"} +{"timestamp":"2026-03-16T00:50:06.24402935Z","score":0.6540667391367577,"is_anomaly":false,"confidence":0.7900725568984454,"method":"SEAD","details":"MAD!:w=0.29,s=0.52 RRCF-fast:w=0.18,s=0.67 RRCF-mid!:w=0.18,s=0.81 RRCF-slow:w=0.16,s=0.37 COPOD!:w=0.18,s=0.95"} +{"timestamp":"2026-03-16T00:50:36.17320567Z","score":0.3085459738297899,"is_anomaly":false,"confidence":0.3727046368175781,"method":"SEAD","details":"MAD!:w=0.29,s=0.26 RRCF-fast:w=0.18,s=0.34 RRCF-mid:w=0.18,s=0.16 RRCF-slow:w=0.16,s=0.08 COPOD!:w=0.18,s=0.71"} +{"timestamp":"2026-03-16T00:51:06.25712991Z","score":0.17643601173442783,"is_anomaly":false,"confidence":0.21312389482449612,"method":"SEAD","details":"MAD!:w=0.30,s=0.14 RRCF-fast:w=0.18,s=0.25 RRCF-mid:w=0.18,s=0.24 RRCF-slow:w=0.16,s=0.08 COPOD!:w=0.18,s=0.19"} +{"timestamp":"2026-03-16T00:51:39.640687453Z","score":0.6326811984920702,"is_anomaly":false,"confidence":0.7642401337422036,"method":"SEAD","details":"MAD!:w=0.30,s=0.88 RRCF-fast:w=0.18,s=0.46 RRCF-mid:w=0.18,s=0.52 RRCF-slow:w=0.16,s=0.24 COPOD!:w=0.18,s=0.86"} +{"timestamp":"2026-03-16T00:52:07.479936249Z","score":0.20946144159269886,"is_anomaly":false,"confidence":0.25317314968045695,"method":"SEAD","details":"MAD!:w=0.29,s=0.37 RRCF-fast:w=0.18,s=0.17 RRCF-mid:w=0.18,s=0.11 RRCF-slow:w=0.16,s=0.02 COPOD!:w=0.18,s=0.26"} +{"timestamp":"2026-03-16T00:52:36.195790464Z","score":0.18796842855388288,"is_anomaly":false,"confidence":0.22719484185547234,"method":"SEAD","details":"MAD:w=0.29,s=0.09 RRCF-fast:w=0.18,s=0.39 RRCF-mid:w=0.19,s=0.21 RRCF-slow:w=0.16,s=0.07 COPOD!:w=0.18,s=0.24"} +{"timestamp":"2026-03-16T00:53:07.169385078Z","score":0.7612723583852736,"is_anomaly":false,"confidence":0.920139378739898,"method":"SEAD","details":"MAD!:w=0.29,s=0.84 RRCF-fast!:w=0.18,s=0.95 RRCF-mid!:w=0.18,s=0.97 RRCF-slow!:w=0.16,s=0.97 COPOD!:w=0.18,s=0.04"} +{"timestamp":"2026-03-16T00:53:36.199127206Z","score":0.2375483935616788,"is_anomaly":false,"confidence":0.28712146036160635,"method":"SEAD","details":"MAD:w=0.29,s=0.09 RRCF-fast:w=0.18,s=0.33 RRCF-mid:w=0.18,s=0.56 RRCF-slow:w=0.16,s=0.28 COPOD!:w=0.18,s=0.02"} +{"timestamp":"2026-03-16T00:54:07.5539872Z","score":0.2742107781069453,"is_anomaly":false,"confidence":0.33143477788459985,"method":"SEAD","details":"MAD!:w=0.29,s=0.21 RRCF-fast:w=0.18,s=0.20 RRCF-mid:w=0.18,s=0.38 RRCF-slow:w=0.16,s=0.19 COPOD!:w=0.18,s=0.41"} +{"timestamp":"2026-03-16T00:54:36.149471246Z","score":0.2523330479696723,"is_anomaly":false,"confidence":0.30499146781952907,"method":"SEAD","details":"MAD!:w=0.29,s=0.25 RRCF-fast:w=0.18,s=0.47 RRCF-mid:w=0.18,s=0.39 RRCF-slow:w=0.16,s=0.13 COPOD!:w=0.18,s=0.01"} +{"timestamp":"2026-03-16T00:55:06.149435828Z","score":0.22810435178727645,"is_anomaly":false,"confidence":0.2765310039184274,"method":"SEAD","details":"MAD!:w=0.29,s=0.21 RRCF-fast:w=0.18,s=0.15 RRCF-mid:w=0.18,s=0.38 RRCF-slow:w=0.16,s=0.23 COPOD!:w=0.18,s=0.18"} +{"timestamp":"2026-03-16T00:55:36.147238935Z","score":0.2698142920335633,"is_anomaly":false,"confidence":0.32709598244386856,"method":"SEAD","details":"MAD!:w=0.29,s=0.22 RRCF-fast:w=0.18,s=0.36 RRCF-mid:w=0.18,s=0.29 RRCF-slow:w=0.16,s=0.15 COPOD!:w=0.18,s=0.35"} +{"timestamp":"2026-03-16T00:56:06.240444282Z","score":0.8431634428080951,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=1.00 RRCF-fast!:w=0.18,s=0.98 RRCF-mid!:w=0.18,s=0.99 RRCF-slow!:w=0.16,s=0.99 COPOD!:w=0.18,s=0.19"} +{"timestamp":"2026-03-16T00:56:36.148337219Z","score":0.5076917908916074,"is_anomaly":false,"confidence":0.6136400513125297,"method":"SEAD","details":"MAD!:w=0.29,s=0.31 RRCF-fast:w=0.18,s=0.69 RRCF-mid!:w=0.18,s=0.83 RRCF-slow:w=0.16,s=0.59 COPOD!:w=0.19,s=0.26"} +{"timestamp":"2026-03-16T00:57:06.191097947Z","score":0.8147749471024963,"is_anomaly":false,"confidence":0.9848072183126659,"method":"SEAD","details":"MAD!:w=0.29,s=0.99 RRCF-fast!:w=0.18,s=0.94 RRCF-mid!:w=0.18,s=0.95 RRCF-slow!:w=0.16,s=0.95 COPOD!:w=0.19,s=0.17"} +{"timestamp":"2026-03-16T00:57:36.148815051Z","score":0.5148686947761447,"is_anomaly":false,"confidence":0.6223146758524267,"method":"SEAD","details":"MAD!:w=0.29,s=0.31 RRCF-fast:w=0.18,s=0.79 RRCF-mid!:w=0.18,s=0.83 RRCF-slow!:w=0.16,s=0.68 COPOD!:w=0.19,s=0.13"} +{"timestamp":"2026-03-16T00:58:07.175429608Z","score":0.8010820894941156,"is_anomaly":false,"confidence":0.9682568505577226,"method":"SEAD","details":"MAD!:w=0.29,s=0.99 RRCF-fast!:w=0.17,s=0.85 RRCF-mid!:w=0.18,s=0.93 RRCF-slow!:w=0.16,s=0.94 COPOD!:w=0.19,s=0.21"} +{"timestamp":"2026-03-16T00:58:36.200569412Z","score":0.45687036329143293,"is_anomaly":false,"confidence":0.5538641381966116,"method":"SEAD","details":"MAD!:w=0.29,s=0.32 RRCF-fast:w=0.17,s=0.70 RRCF-mid:w=0.18,s=0.80 RRCF-slow:w=0.16,s=0.61 COPOD!:w=0.19,s=0.00"} +{"timestamp":"2026-03-16T00:59:06.946037471Z","score":0.8541970963318478,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=1.00 RRCF-fast!:w=0.17,s=0.96 RRCF-mid!:w=0.18,s=0.98 RRCF-slow!:w=0.16,s=0.97 COPOD!:w=0.19,s=0.33"} +{"timestamp":"2026-03-16T00:59:36.196204287Z","score":0.41488735828929457,"is_anomaly":false,"confidence":0.5014686161902471,"method":"SEAD","details":"MAD!:w=0.29,s=0.30 RRCF-fast:w=0.17,s=0.56 RRCF-mid:w=0.18,s=0.73 RRCF-slow:w=0.16,s=0.58 COPOD!:w=0.20,s=0.04"} +{"timestamp":"2026-03-16T01:00:06.193494628Z","score":0.5175513245335591,"is_anomaly":false,"confidence":0.6255571333660715,"method":"SEAD","details":"MAD!:w=0.29,s=0.30 RRCF-fast:w=0.17,s=0.67 RRCF-mid!:w=0.18,s=0.89 RRCF-slow!:w=0.16,s=0.89 COPOD!:w=0.20,s=0.08"} +{"timestamp":"2026-03-16T01:00:37.190083645Z","score":0.3274605916091827,"is_anomaly":false,"confidence":0.3957970915483873,"method":"SEAD","details":"MAD!:w=0.30,s=0.30 RRCF-fast:w=0.17,s=0.24 RRCF-mid:w=0.17,s=0.60 RRCF-slow:w=0.16,s=0.44 COPOD!:w=0.20,s=0.12"} +{"timestamp":"2026-03-16T01:01:06.193815866Z","score":0.7895652057507959,"is_anomaly":false,"confidence":0.9543365523413585,"method":"SEAD","details":"MAD!:w=0.30,s=0.99 RRCF-fast:w=0.17,s=0.77 RRCF-mid!:w=0.17,s=0.90 RRCF-slow!:w=0.16,s=0.87 COPOD!:w=0.20,s=0.35"} +{"timestamp":"2026-03-16T01:01:36.15099373Z","score":0.59410779977227,"is_anomaly":false,"confidence":0.7180898869709429,"method":"SEAD","details":"MAD!:w=0.29,s=0.69 RRCF-fast:w=0.17,s=0.69 RRCF-mid:w=0.17,s=0.76 RRCF-slow:w=0.16,s=0.75 COPOD!:w=0.20,s=0.10"} +{"timestamp":"2026-03-16T01:02:06.197592594Z","score":0.8460680342647675,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=0.94 RRCF-fast!:w=0.17,s=0.89 RRCF-mid:w=0.17,s=0.81 RRCF-slow:w=0.16,s=0.81 COPOD!:w=0.20,s=0.73"} +{"timestamp":"2026-03-16T01:02:36.19466779Z","score":0.5018892103478693,"is_anomaly":false,"confidence":0.6066265524014064,"method":"SEAD","details":"MAD!:w=0.29,s=0.45 RRCF-fast:w=0.17,s=0.34 RRCF-mid:w=0.17,s=0.47 RRCF-slow:w=0.16,s=0.21 COPOD!:w=0.21,s=0.96"} +{"timestamp":"2026-03-16T01:03:06.35977949Z","score":0.3445351437824882,"is_anomaly":false,"confidence":0.4164348667886858,"method":"SEAD","details":"MAD!:w=0.29,s=0.23 RRCF-fast:w=0.17,s=0.16 RRCF-mid:w=0.17,s=0.43 RRCF-slow:w=0.16,s=0.47 COPOD!:w=0.20,s=0.50"} +{"timestamp":"2026-03-16T01:03:36.147204973Z","score":0.30626953309696414,"is_anomaly":false,"confidence":0.37018375198666703,"method":"SEAD","details":"MAD!:w=0.29,s=0.23 RRCF-fast:w=0.17,s=0.55 RRCF-mid:w=0.17,s=0.45 RRCF-slow:w=0.16,s=0.27 COPOD!:w=0.20,s=0.11"} +{"timestamp":"2026-03-16T01:04:07.261256553Z","score":0.8121928139434667,"is_anomaly":false,"confidence":0.9816862296486183,"method":"SEAD","details":"MAD!:w=0.29,s=0.70 RRCF-fast!:w=0.17,s=0.89 RRCF-mid:w=0.17,s=0.80 RRCF-slow:w=0.16,s=0.78 COPOD!:w=0.20,s=0.95"} +{"timestamp":"2026-03-16T01:04:36.453648815Z","score":0.28990787832871345,"is_anomaly":false,"confidence":0.35040764598756324,"method":"SEAD","details":"MAD!:w=0.29,s=0.36 RRCF-fast:w=0.17,s=0.08 RRCF-mid:w=0.17,s=0.12 RRCF-slow:w=0.16,s=0.01 COPOD!:w=0.20,s=0.72"} +{"timestamp":"2026-03-16T01:05:06.195708314Z","score":0.28331248302630163,"is_anomaly":false,"confidence":0.3434598451981644,"method":"SEAD","details":"MAD!:w=0.29,s=0.19 RRCF-fast:w=0.17,s=0.44 RRCF-mid:w=0.17,s=0.57 RRCF-slow:w=0.16,s=0.33 COPOD!:w=0.20,s=0.00"} +{"timestamp":"2026-03-16T01:05:37.548077509Z","score":0.7805367464286035,"is_anomaly":false,"confidence":0.9462450338799907,"method":"SEAD","details":"MAD!:w=0.29,s=0.72 RRCF-fast:w=0.17,s=0.85 RRCF-mid:w=0.17,s=0.76 RRCF-slow:w=0.16,s=0.80 COPOD!:w=0.20,s=0.81"} +{"timestamp":"2026-03-16T01:06:06.385898209Z","score":0.8681695699390732,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=0.86 RRCF-fast:w=0.17,s=0.82 RRCF-mid:w=0.17,s=0.86 RRCF-slow:w=0.16,s=0.81 COPOD!:w=0.20,s=0.99"} +{"timestamp":"2026-03-16T01:06:36.241948361Z","score":0.28342764651775865,"is_anomaly":false,"confidence":0.3425750793549458,"method":"SEAD","details":"MAD!:w=0.30,s=0.41 RRCF-fast:w=0.17,s=0.23 RRCF-mid:w=0.17,s=0.23 RRCF-slow:w=0.16,s=0.03 COPOD!:w=0.20,s=0.38"} +{"timestamp":"2026-03-16T01:07:06.152327828Z","score":0.25914446673832686,"is_anomaly":false,"confidence":0.31322433555088985,"method":"SEAD","details":"MAD:w=0.29,s=0.10 RRCF-fast:w=0.17,s=0.30 RRCF-mid:w=0.17,s=0.54 RRCF-slow:w=0.16,s=0.48 COPOD!:w=0.20,s=0.04"} +{"timestamp":"2026-03-16T01:07:36.245736205Z","score":0.6968683503374178,"is_anomaly":false,"confidence":0.8422951442806165,"method":"SEAD","details":"MAD!:w=0.30,s=0.71 RRCF-fast:w=0.17,s=0.70 RRCF-mid:w=0.17,s=0.71 RRCF-slow:w=0.16,s=0.65 COPOD!:w=0.20,s=0.71"} +{"timestamp":"2026-03-16T01:08:06.249664225Z","score":0.5081837897015157,"is_anomaly":false,"confidence":0.6142347234746058,"method":"SEAD","details":"MAD!:w=0.30,s=0.51 RRCF-fast:w=0.17,s=0.35 RRCF-mid:w=0.17,s=0.45 RRCF-slow:w=0.16,s=0.24 COPOD!:w=0.20,s=0.90"} +{"timestamp":"2026-03-16T01:08:36.150425786Z","score":0.2560604313920023,"is_anomaly":false,"confidence":0.3104221712641857,"method":"SEAD","details":"MAD!:w=0.30,s=0.15 RRCF-fast:w=0.17,s=0.18 RRCF-mid:w=0.17,s=0.29 RRCF-slow:w=0.16,s=0.36 COPOD!:w=0.20,s=0.36"} +{"timestamp":"2026-03-16T01:09:07.236221999Z","score":0.24246436057378562,"is_anomaly":false,"confidence":0.2939396487553047,"method":"SEAD","details":"MAD:w=0.30,s=0.04 RRCF-fast:w=0.17,s=0.24 RRCF-mid:w=0.17,s=0.54 RRCF-slow:w=0.16,s=0.21 COPOD!:w=0.20,s=0.31"} +{"timestamp":"2026-03-16T01:09:37.941425216Z","score":0.9257112181052738,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=0.97 RRCF-fast!:w=0.17,s=0.93 RRCF-mid!:w=0.17,s=0.96 RRCF-slow!:w=0.16,s=0.84 COPOD!:w=0.20,s=0.90"} +{"timestamp":"2026-03-16T01:10:06.193070848Z","score":0.18759849845856702,"is_anomaly":false,"confidence":0.22674771246172537,"method":"SEAD","details":"MAD!:w=0.30,s=0.37 RRCF-fast:w=0.17,s=0.10 RRCF-mid:w=0.17,s=0.12 RRCF-slow:w=0.16,s=0.06 COPOD!:w=0.20,s=0.15"} +{"timestamp":"2026-03-16T01:10:36.202985299Z","score":0.19821982437342128,"is_anomaly":false,"confidence":0.23958556230749883,"method":"SEAD","details":"MAD:w=0.30,s=0.05 RRCF-fast:w=0.17,s=0.43 RRCF-mid:w=0.17,s=0.34 RRCF-slow:w=0.16,s=0.26 COPOD!:w=0.20,s=0.04"} +{"timestamp":"2026-03-16T01:11:06.495383194Z","score":0.7882020919084528,"is_anomaly":false,"confidence":0.9526889754784527,"method":"SEAD","details":"MAD!:w=0.30,s=0.96 RRCF-fast:w=0.17,s=0.75 RRCF-mid:w=0.17,s=0.82 RRCF-slow:w=0.16,s=0.64 COPOD!:w=0.20,s=0.67"} +{"timestamp":"2026-03-16T01:11:36.4966959Z","score":0.8125706496525704,"is_anomaly":false,"confidence":0.9821429144484946,"method":"SEAD","details":"MAD!:w=0.30,s=0.87 RRCF-fast!:w=0.17,s=0.90 RRCF-mid:w=0.17,s=0.81 RRCF-slow:w=0.16,s=0.68 COPOD!:w=0.20,s=0.77"} +{"timestamp":"2026-03-16T01:12:07.707521495Z","score":0.10467916596984439,"is_anomaly":false,"confidence":0.12690259799155398,"method":"SEAD","details":"MAD!:w=0.30,s=0.23 RRCF-fast:w=0.17,s=0.01 RRCF-mid:w=0.17,s=0.07 RRCF-slow:w=0.16,s=0.04 COPOD!:w=0.20,s=0.09"} +{"timestamp":"2026-03-16T01:12:36.169760357Z","score":0.23533565290698047,"is_anomaly":false,"confidence":0.2852975133804347,"method":"SEAD","details":"MAD:w=0.29,s=0.10 RRCF-fast:w=0.17,s=0.38 RRCF-mid:w=0.17,s=0.35 RRCF-slow:w=0.16,s=0.39 COPOD!:w=0.20,s=0.08"} +{"timestamp":"2026-03-16T01:13:06.187303748Z","score":0.8609878557040637,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=0.97 RRCF-fast:w=0.17,s=0.65 RRCF-mid!:w=0.17,s=0.92 RRCF-slow:w=0.16,s=0.81 COPOD!:w=0.20,s=0.88"} +{"timestamp":"2026-03-16T01:13:36.203602735Z","score":0.6822581356062424,"is_anomaly":false,"confidence":0.8246359796492945,"method":"SEAD","details":"MAD!:w=0.29,s=0.36 RRCF-fast:w=0.17,s=0.62 RRCF-mid:w=0.17,s=0.86 RRCF-slow!:w=0.16,s=0.85 COPOD!:w=0.20,s=0.92"} +{"timestamp":"2026-03-16T01:14:06.194531045Z","score":0.30479633948452234,"is_anomaly":false,"confidence":0.36840312322695346,"method":"SEAD","details":"MAD!:w=0.30,s=0.16 RRCF-fast:w=0.17,s=0.41 RRCF-mid:w=0.17,s=0.34 RRCF-slow:w=0.16,s=0.34 COPOD!:w=0.20,s=0.37"} +{"timestamp":"2026-03-16T01:14:36.201076775Z","score":0.8983743775532402,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=0.87 RRCF-fast!:w=0.17,s=0.95 RRCF-mid!:w=0.17,s=0.94 RRCF-slow!:w=0.16,s=0.85 COPOD!:w=0.20,s=0.91"} +{"timestamp":"2026-03-16T01:15:06.139340984Z","score":0.7445919994827647,"is_anomaly":false,"confidence":0.8999780594582311,"method":"SEAD","details":"MAD!:w=0.30,s=0.64 RRCF-fast:w=0.17,s=0.83 RRCF-mid:w=0.17,s=0.81 RRCF-slow:w=0.16,s=0.66 COPOD!:w=0.20,s=0.85"} +{"timestamp":"2026-03-16T01:15:36.300744443Z","score":0.18038396123643924,"is_anomaly":false,"confidence":0.21802760102677834,"method":"SEAD","details":"MAD:w=0.30,s=0.07 RRCF-fast:w=0.17,s=0.11 RRCF-mid:w=0.17,s=0.13 RRCF-slow:w=0.16,s=0.05 COPOD!:w=0.20,s=0.56"} +{"timestamp":"2026-03-16T01:16:07.112069308Z","score":0.3133651686858448,"is_anomaly":false,"confidence":0.37876014866073765,"method":"SEAD","details":"MAD:w=0.30,s=0.10 RRCF-fast:w=0.17,s=0.56 RRCF-mid:w=0.17,s=0.59 RRCF-slow:w=0.16,s=0.53 COPOD!:w=0.20,s=0.00"} +{"timestamp":"2026-03-16T01:16:38.121293451Z","score":0.7521238149228483,"is_anomaly":false,"confidence":0.9090816606904129,"method":"SEAD","details":"MAD!:w=0.30,s=0.72 RRCF-fast:w=0.17,s=0.79 RRCF-mid:w=0.17,s=0.87 RRCF-slow:w=0.16,s=0.58 COPOD!:w=0.20,s=0.82"} +{"timestamp":"2026-03-16T01:17:06.773104098Z","score":0.7623280808959368,"is_anomaly":false,"confidence":0.9214154159483734,"method":"SEAD","details":"MAD!:w=0.30,s=0.55 RRCF-fast!:w=0.17,s=0.88 RRCF-mid:w=0.17,s=0.88 RRCF-slow:w=0.16,s=0.63 COPOD!:w=0.20,s=0.99"} +{"timestamp":"2026-03-16T01:17:36.191494121Z","score":0.4222324713318283,"is_anomaly":false,"confidence":0.5103465528147513,"method":"SEAD","details":"MAD!:w=0.30,s=0.32 RRCF-fast:w=0.17,s=0.53 RRCF-mid:w=0.17,s=0.52 RRCF-slow:w=0.16,s=0.32 COPOD!:w=0.20,s=0.48"} +{"timestamp":"2026-03-16T01:18:06.204770753Z","score":0.3178043073232701,"is_anomaly":false,"confidence":0.38412567418256877,"method":"SEAD","details":"MAD!:w=0.30,s=0.15 RRCF-fast:w=0.17,s=0.52 RRCF-mid:w=0.17,s=0.58 RRCF-slow:w=0.16,s=0.38 COPOD!:w=0.20,s=0.13"} +{"timestamp":"2026-03-16T01:18:36.895274764Z","score":0.7804948406741423,"is_anomaly":false,"confidence":0.9461942315158082,"method":"SEAD","details":"MAD!:w=0.31,s=0.83 RRCF-fast:w=0.17,s=0.74 RRCF-mid:w=0.17,s=0.81 RRCF-slow:w=0.16,s=0.63 COPOD!:w=0.20,s=0.83"} +{"timestamp":"2026-03-16T01:19:06.193652665Z","score":0.11410949525979419,"is_anomaly":false,"confidence":0.13833499025149257,"method":"SEAD","details":"MAD:w=0.31,s=0.08 RRCF-fast:w=0.17,s=0.04 RRCF-mid:w=0.17,s=0.03 RRCF-slow:w=0.16,s=0.04 COPOD!:w=0.20,s=0.35"} +{"timestamp":"2026-03-16T01:19:36.194009826Z","score":0.273683833543804,"is_anomaly":false,"confidence":0.3317870292833817,"method":"SEAD","details":"MAD:w=0.31,s=0.05 RRCF-fast:w=0.17,s=0.42 RRCF-mid:w=0.17,s=0.48 RRCF-slow:w=0.16,s=0.37 COPOD!:w=0.20,s=0.24"} +{"timestamp":"2026-03-16T01:20:06.187104207Z","score":0.9570631509756848,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=0.87 RRCF-fast!:w=0.17,s=1.00 RRCF-mid!:w=0.17,s=1.00 RRCF-slow!:w=0.16,s=1.00 COPOD!:w=0.20,s=0.99"} +{"timestamp":"2026-03-16T01:20:36.282535955Z","score":0.8443089413980983,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=0.77 RRCF-fast!:w=0.17,s=0.96 RRCF-mid!:w=0.17,s=0.99 RRCF-slow!:w=0.16,s=0.98 COPOD!:w=0.20,s=0.63"} +{"timestamp":"2026-03-16T01:21:06.192903808Z","score":0.5019788180778962,"is_anomaly":false,"confidence":0.6063596642004734,"method":"SEAD","details":"MAD:w=0.31,s=0.00 RRCF-fast:w=0.17,s=0.74 RRCF-mid:w=0.16,s=0.91 RRCF-slow!:w=0.16,s=0.88 COPOD!:w=0.20,s=0.43"} +{"timestamp":"2026-03-16T01:21:36.196124738Z","score":0.411114223816395,"is_anomaly":false,"confidence":0.49660080012114016,"method":"SEAD","details":"MAD:w=0.31,s=0.03 RRCF-fast:w=0.17,s=0.65 RRCF-mid:w=0.16,s=0.91 RRCF-slow:w=0.16,s=0.88 COPOD!:w=0.20,s=0.03"} +{"timestamp":"2026-03-16T01:22:06.183893828Z","score":0.8235430923387939,"is_anomaly":false,"confidence":0.9954051542833622,"method":"SEAD","details":"MAD!:w=0.32,s=0.71 RRCF-fast:w=0.17,s=0.86 RRCF-mid:w=0.16,s=0.89 RRCF-slow!:w=0.16,s=0.90 COPOD!:w=0.20,s=0.85"} +{"timestamp":"2026-03-16T01:22:37.74889172Z","score":0.8295016365355447,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.32,s=0.65 RRCF-fast:w=0.17,s=0.86 RRCF-mid!:w=0.16,s=0.95 RRCF-slow:w=0.16,s=0.85 COPOD!:w=0.20,s=0.97"} +{"timestamp":"2026-03-16T01:23:06.24030963Z","score":0.5509103060747834,"is_anomaly":false,"confidence":0.6654659044682009,"method":"SEAD","details":"MAD!:w=0.32,s=0.39 RRCF-fast:w=0.17,s=0.50 RRCF-mid:w=0.16,s=0.79 RRCF-slow:w=0.16,s=0.69 COPOD!:w=0.20,s=0.55"} +{"timestamp":"2026-03-16T01:23:36.150353152Z","score":0.45188548820718,"is_anomaly":false,"confidence":0.5458499901162223,"method":"SEAD","details":"MAD!:w=0.32,s=0.15 RRCF-fast:w=0.17,s=0.60 RRCF-mid:w=0.16,s=0.84 RRCF-slow:w=0.16,s=0.79 COPOD!:w=0.20,s=0.23"} +{"timestamp":"2026-03-16T01:24:08.482103472Z","score":0.9823218756087817,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.32,s=0.99 RRCF-fast!:w=0.17,s=0.97 RRCF-mid!:w=0.16,s=0.99 RRCF-slow!:w=0.16,s=0.99 COPOD!:w=0.20,s=0.96"} +{"timestamp":"2026-03-16T01:24:36.192902844Z","score":0.5634062540960171,"is_anomaly":false,"confidence":0.6796658643758365,"method":"SEAD","details":"MAD!:w=0.32,s=0.42 RRCF-fast:w=0.17,s=0.46 RRCF-mid:w=0.16,s=0.76 RRCF-slow:w=0.16,s=0.65 COPOD!:w=0.20,s=0.67"} +{"timestamp":"2026-03-16T01:25:06.151160569Z","score":0.447167567534663,"is_anomaly":false,"confidence":0.5401510309337096,"method":"SEAD","details":"MAD!:w=0.32,s=0.18 RRCF-fast:w=0.17,s=0.60 RRCF-mid:w=0.16,s=0.86 RRCF-slow:w=0.16,s=0.81 COPOD!:w=0.20,s=0.14"} +{"timestamp":"2026-03-16T01:25:36.201637428Z","score":0.9169091831301047,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.32,s=0.86 RRCF-fast!:w=0.17,s=0.91 RRCF-mid!:w=0.16,s=0.98 RRCF-slow!:w=0.15,s=0.97 COPOD!:w=0.20,s=0.92"} +{"timestamp":"2026-03-16T01:26:06.674052758Z","score":0.7360370318304373,"is_anomaly":false,"confidence":0.887919226694285,"method":"SEAD","details":"MAD!:w=0.33,s=0.60 RRCF-fast!:w=0.17,s=0.93 RRCF-mid!:w=0.16,s=0.96 RRCF-slow!:w=0.15,s=0.95 COPOD!:w=0.20,s=0.45"} +{"timestamp":"2026-03-16T01:26:36.194407422Z","score":0.5566542350045255,"is_anomaly":false,"confidence":0.671520557399321,"method":"SEAD","details":"MAD!:w=0.33,s=0.26 RRCF-fast:w=0.16,s=0.66 RRCF-mid:w=0.16,s=0.70 RRCF-slow:w=0.15,s=0.83 COPOD!:w=0.20,s=0.63"} +{"timestamp":"2026-03-16T01:27:06.155770767Z","score":0.4171628751034696,"is_anomaly":false,"confidence":0.5032449747076977,"method":"SEAD","details":"MAD:w=0.33,s=0.11 RRCF-fast:w=0.16,s=0.52 RRCF-mid:w=0.16,s=0.80 RRCF-slow:w=0.15,s=0.80 COPOD!:w=0.20,s=0.24"} +{"timestamp":"2026-03-16T01:27:38.450422288Z","score":0.8084044168857599,"is_anomaly":false,"confidence":0.9752197153890066,"method":"SEAD","details":"MAD!:w=0.33,s=0.95 RRCF-fast:w=0.16,s=0.88 RRCF-mid:w=0.15,s=0.91 RRCF-slow!:w=0.15,s=0.89 COPOD!:w=0.20,s=0.37"} +{"timestamp":"2026-03-16T01:28:10.283063764Z","score":0.8149666854569566,"is_anomaly":false,"confidence":0.9831361165795918,"method":"SEAD","details":"MAD!:w=0.33,s=0.81 RRCF-fast:w=0.16,s=0.80 RRCF-mid:w=0.15,s=0.88 RRCF-slow:w=0.15,s=0.84 COPOD!:w=0.20,s=0.77"} +{"timestamp":"2026-03-16T01:28:36.19122893Z","score":0.34835256891545996,"is_anomaly":false,"confidence":0.4207885653816028,"method":"SEAD","details":"MAD:w=0.33,s=0.05 RRCF-fast:w=0.16,s=0.36 RRCF-mid:w=0.15,s=0.56 RRCF-slow:w=0.15,s=0.79 COPOD!:w=0.20,s=0.35"} +{"timestamp":"2026-03-16T01:29:06.205264033Z","score":0.33760261317612256,"is_anomaly":false,"confidence":0.4078032773225695,"method":"SEAD","details":"MAD:w=0.33,s=0.05 RRCF-fast:w=0.16,s=0.44 RRCF-mid:w=0.15,s=0.75 RRCF-slow:w=0.15,s=0.75 COPOD!:w=0.20,s=0.11"} +{"timestamp":"2026-03-16T01:29:40.074717256Z","score":0.8578006977262954,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.34,s=0.97 RRCF-fast:w=0.16,s=0.80 RRCF-mid:w=0.15,s=0.89 RRCF-slow!:w=0.15,s=0.91 COPOD!:w=0.20,s=0.66"} +{"timestamp":"2026-03-16T01:30:06.584848874Z","score":0.42404807308285475,"is_anomaly":false,"confidence":0.5115509422081225,"method":"SEAD","details":"MAD!:w=0.33,s=0.36 RRCF-fast:w=0.16,s=0.29 RRCF-mid:w=0.15,s=0.65 RRCF-slow:w=0.15,s=0.59 COPOD!:w=0.20,s=0.35"} +{"timestamp":"2026-03-16T01:30:37.677328495Z","score":0.3282648637136253,"is_anomaly":false,"confidence":0.3960027435231741,"method":"SEAD","details":"MAD!:w=0.33,s=0.17 RRCF-fast:w=0.16,s=0.30 RRCF-mid:w=0.15,s=0.70 RRCF-slow:w=0.15,s=0.58 COPOD!:w=0.20,s=0.15"} +{"timestamp":"2026-03-16T01:31:06.190226139Z","score":0.872673501516169,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.34,s=0.85 RRCF-fast:w=0.16,s=0.82 RRCF-mid!:w=0.15,s=0.96 RRCF-slow!:w=0.15,s=0.90 COPOD!:w=0.20,s=0.87"} +{"timestamp":"2026-03-16T01:32:05.066867964Z","score":0.7892648232358564,"is_anomaly":false,"confidence":0.9514927861170482,"method":"SEAD","details":"MAD!:w=0.34,s=0.61 RRCF-fast:w=0.16,s=0.77 RRCF-mid:w=0.15,s=0.87 RRCF-slow!:w=0.15,s=0.92 COPOD!:w=0.20,s=0.95"} +{"timestamp":"2026-03-16T01:32:06.211877042Z","score":0.7664332257115496,"is_anomaly":false,"confidence":0.9245877145531736,"method":"SEAD","details":"MAD!:w=0.34,s=0.46 RRCF-fast:w=0.16,s=0.85 RRCF-mid:w=0.15,s=0.90 RRCF-slow!:w=0.15,s=0.95 COPOD!:w=0.20,s=0.98"} +{"timestamp":"2026-03-16T01:32:36.194095773Z","score":0.40321847922899773,"is_anomaly":false,"confidence":0.4864231346831697,"method":"SEAD","details":"MAD!:w=0.34,s=0.22 RRCF-fast:w=0.16,s=0.36 RRCF-mid:w=0.15,s=0.65 RRCF-slow:w=0.15,s=0.73 COPOD!:w=0.20,s=0.32"} +{"timestamp":"2026-03-16T01:33:24.17093118Z","score":0.8321524632725324,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.34,s=0.61 RRCF-fast!:w=0.16,s=1.00 RRCF-mid!:w=0.15,s=1.00 RRCF-slow!:w=0.15,s=1.00 COPOD!:w=0.20,s=0.83"} +{"timestamp":"2026-03-16T01:33:59.161342335Z","score":0.762067813151438,"is_anomaly":false,"confidence":0.9187056174286197,"method":"SEAD","details":"MAD!:w=0.34,s=0.58 RRCF-fast:w=0.16,s=0.74 RRCF-mid:w=0.15,s=0.88 RRCF-slow!:w=0.15,s=0.92 COPOD!:w=0.20,s=0.89"} +{"timestamp":"2026-03-16T01:34:09.461543151Z","score":0.7488351486492089,"is_anomaly":false,"confidence":0.902753069634385,"method":"SEAD","details":"MAD!:w=0.35,s=0.70 RRCF-fast:w=0.16,s=0.69 RRCF-mid:w=0.15,s=0.85 RRCF-slow:w=0.14,s=0.89 COPOD!:w=0.20,s=0.70"} +{"timestamp":"2026-03-16T01:34:36.195044503Z","score":0.3573560446759521,"is_anomaly":false,"confidence":0.43080812494652526,"method":"SEAD","details":"MAD!:w=0.35,s=0.32 RRCF-fast:w=0.16,s=0.07 RRCF-mid:w=0.15,s=0.46 RRCF-slow:w=0.14,s=0.69 COPOD!:w=0.20,s=0.33"} +{"timestamp":"2026-03-16T01:35:13.57790982Z","score":0.8134734127926095,"is_anomaly":false,"confidence":0.9813347051668081,"method":"SEAD","details":"MAD!:w=0.35,s=0.60 RRCF-fast!:w=0.16,s=0.94 RRCF-mid!:w=0.15,s=0.98 RRCF-slow!:w=0.14,s=0.99 COPOD!:w=0.20,s=0.83"} +{"timestamp":"2026-03-16T01:35:41.880440097Z","score":0.739254016256908,"is_anomaly":false,"confidence":0.8918000400239293,"method":"SEAD","details":"MAD!:w=0.35,s=0.70 RRCF-fast:w=0.16,s=0.65 RRCF-mid:w=0.15,s=0.86 RRCF-slow!:w=0.14,s=0.92 COPOD!:w=0.20,s=0.67"} +{"timestamp":"2026-03-16T01:36:08.003972129Z","score":0.722086777810574,"is_anomaly":false,"confidence":0.8710903196884763,"method":"SEAD","details":"MAD!:w=0.35,s=0.65 RRCF-fast:w=0.16,s=0.66 RRCF-mid:w=0.15,s=0.83 RRCF-slow:w=0.14,s=0.87 COPOD!:w=0.20,s=0.73"} +{"timestamp":"2026-03-16T01:36:50.682847879Z","score":0.7564945079540748,"is_anomaly":false,"confidence":0.9125981295134051,"method":"SEAD","details":"MAD!:w=0.35,s=0.45 RRCF-fast!:w=0.16,s=0.98 RRCF-mid!:w=0.15,s=0.99 RRCF-slow!:w=0.14,s=1.00 COPOD!:w=0.20,s=0.76"} +{"timestamp":"2026-03-16T01:37:06.174723995Z","score":0.4401560336183125,"is_anomaly":false,"confidence":0.5309828012637693,"method":"SEAD","details":"MAD!:w=0.35,s=0.28 RRCF-fast:w=0.16,s=0.32 RRCF-mid:w=0.15,s=0.77 RRCF-slow:w=0.14,s=0.80 COPOD!:w=0.20,s=0.32"} +{"timestamp":"2026-03-16T01:37:36.260251725Z","score":0.68162241912778,"is_anomaly":false,"confidence":0.8222760881803751,"method":"SEAD","details":"MAD!:w=0.35,s=0.67 RRCF-fast:w=0.16,s=0.74 RRCF-mid:w=0.14,s=0.87 RRCF-slow:w=0.14,s=0.89 COPOD!:w=0.20,s=0.38"} +{"timestamp":"2026-03-16T01:38:23.1558987Z","score":0.8158545857362054,"is_anomaly":false,"confidence":0.9842072362315087,"method":"SEAD","details":"MAD!:w=0.35,s=0.82 RRCF-fast:w=0.16,s=0.86 RRCF-mid:w=0.14,s=0.92 RRCF-slow:w=0.14,s=0.91 COPOD!:w=0.20,s=0.63"} +{"timestamp":"2026-03-16T01:38:36.194937981Z","score":0.46091125159390123,"is_anomaly":false,"confidence":0.5567525594263798,"method":"SEAD","details":"MAD!:w=0.35,s=0.29 RRCF-fast:w=0.16,s=0.20 RRCF-mid:w=0.14,s=0.75 RRCF-slow:w=0.14,s=0.74 COPOD!:w=0.20,s=0.58"} +{"timestamp":"2026-03-16T01:39:06.152877804Z","score":0.4199783416822738,"is_anomaly":false,"confidence":0.5073081115434991,"method":"SEAD","details":"MAD!:w=0.36,s=0.29 RRCF-fast:w=0.16,s=0.41 RRCF-mid:w=0.14,s=0.67 RRCF-slow:w=0.14,s=0.76 COPOD!:w=0.20,s=0.24"} +{"timestamp":"2026-03-16T01:40:02.68311347Z","score":0.7031124646086209,"is_anomaly":false,"confidence":0.8493167890384808,"method":"SEAD","details":"MAD!:w=0.36,s=0.43 RRCF-fast!:w=0.16,s=0.93 RRCF-mid!:w=0.14,s=0.96 RRCF-slow!:w=0.14,s=0.98 COPOD!:w=0.20,s=0.63"} +{"timestamp":"2026-03-16T01:40:07.661846746Z","score":0.9422985649100515,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.36,s=0.86 RRCF-fast!:w=0.16,s=0.98 RRCF-mid!:w=0.14,s=0.99 RRCF-slow!:w=0.14,s=0.99 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-16T01:40:37.851001739Z","score":0.7429598610008564,"is_anomaly":false,"confidence":0.8962705906307551,"method":"SEAD","details":"MAD!:w=0.36,s=0.69 RRCF-fast!:w=0.16,s=0.95 RRCF-mid!:w=0.14,s=0.98 RRCF-slow!:w=0.14,s=0.99 COPOD!:w=0.20,s=0.35"} +{"timestamp":"2026-03-16T01:41:38.350076501Z","score":0.7401800818116742,"is_anomaly":false,"confidence":0.8929172004053999,"method":"SEAD","details":"MAD!:w=0.36,s=0.50 RRCF-fast:w=0.16,s=0.84 RRCF-mid:w=0.14,s=0.94 RRCF-slow:w=0.14,s=0.95 COPOD!:w=0.20,s=0.81"} +{"timestamp":"2026-03-16T01:42:06.248597881Z","score":0.586901403285893,"is_anomaly":false,"confidence":0.7080092680329334,"method":"SEAD","details":"MAD!:w=0.36,s=0.29 RRCF-fast:w=0.16,s=0.74 RRCF-mid:w=0.14,s=0.91 RRCF-slow:w=0.14,s=0.94 COPOD!:w=0.20,s=0.53"} +{"timestamp":"2026-03-16T01:42:36.198507566Z","score":0.49072614884689564,"is_anomaly":false,"confidence":0.5927671290365499,"method":"SEAD","details":"MAD!:w=0.37,s=0.31 RRCF-fast:w=0.16,s=0.68 RRCF-mid:w=0.14,s=0.88 RRCF-slow:w=0.14,s=0.91 COPOD!:w=0.20,s=0.12"} +{"timestamp":"2026-03-16T01:43:06.187235096Z","score":0.7057480755063928,"is_anomaly":false,"confidence":0.8525004455621873,"method":"SEAD","details":"MAD!:w=0.37,s=0.69 RRCF-fast:w=0.16,s=0.74 RRCF-mid:w=0.14,s=0.91 RRCF-slow:w=0.13,s=0.90 COPOD!:w=0.20,s=0.44"} +{"timestamp":"2026-03-16T01:43:36.167241791Z","score":0.7673555676034863,"is_anomaly":false,"confidence":0.9269185223313748,"method":"SEAD","details":"MAD!:w=0.37,s=0.84 RRCF-fast:w=0.16,s=0.73 RRCF-mid:w=0.14,s=0.90 RRCF-slow:w=0.13,s=0.90 COPOD!:w=0.20,s=0.50"} +{"timestamp":"2026-03-16T01:44:06.235581663Z","score":0.517492458103511,"is_anomaly":false,"confidence":0.6250991910842532,"method":"SEAD","details":"MAD!:w=0.37,s=0.29 RRCF-fast:w=0.16,s=0.35 RRCF-mid:w=0.14,s=0.72 RRCF-slow:w=0.13,s=0.87 COPOD!:w=0.20,s=0.69"} +{"timestamp":"2026-03-16T01:44:36.150380809Z","score":0.41714746888477766,"is_anomaly":false,"confidence":0.503888590605431,"method":"SEAD","details":"MAD!:w=0.37,s=0.28 RRCF-fast:w=0.16,s=0.46 RRCF-mid:w=0.14,s=0.79 RRCF-slow:w=0.13,s=0.87 COPOD!:w=0.20,s=0.08"} +{"timestamp":"2026-03-16T01:45:07.648177548Z","score":0.6920356472416487,"is_anomaly":false,"confidence":0.8359366721547342,"method":"SEAD","details":"MAD!:w=0.37,s=0.67 RRCF-fast:w=0.16,s=0.57 RRCF-mid:w=0.14,s=0.80 RRCF-slow:w=0.13,s=0.89 COPOD!:w=0.20,s=0.63"} +{"timestamp":"2026-03-16T01:45:37.414484327Z","score":0.6680527573358624,"is_anomaly":false,"confidence":0.8074661352532663,"method":"SEAD","details":"MAD!:w=0.37,s=0.53 RRCF-fast:w=0.16,s=0.53 RRCF-mid:w=0.14,s=0.69 RRCF-slow:w=0.13,s=0.84 COPOD!:w=0.20,s=0.90"} +{"timestamp":"2026-03-16T01:46:06.245462072Z","score":0.45330727143454846,"is_anomaly":false,"confidence":0.5479062342428699,"method":"SEAD","details":"MAD!:w=0.37,s=0.36 RRCF-fast:w=0.16,s=0.21 RRCF-mid:w=0.14,s=0.77 RRCF-slow:w=0.13,s=0.80 COPOD!:w=0.20,s=0.38"} +{"timestamp":"2026-03-16T01:46:36.198266243Z","score":0.3812671894765834,"is_anomaly":false,"confidence":0.46083238277954636,"method":"SEAD","details":"MAD!:w=0.37,s=0.19 RRCF-fast:w=0.16,s=0.26 RRCF-mid:w=0.13,s=0.72 RRCF-slow:w=0.13,s=0.80 COPOD!:w=0.20,s=0.33"} +{"timestamp":"2026-03-16T01:47:10.447186372Z","score":0.7316976871797712,"is_anomaly":false,"confidence":0.884392882377954,"method":"SEAD","details":"MAD!:w=0.38,s=0.80 RRCF-fast:w=0.16,s=0.67 RRCF-mid:w=0.13,s=0.82 RRCF-slow:w=0.13,s=0.87 COPOD!:w=0.20,s=0.51"} +{"timestamp":"2026-03-16T01:47:36.240594564Z","score":0.4009981798001209,"is_anomaly":false,"confidence":0.4846809580998584,"method":"SEAD","details":"MAD!:w=0.37,s=0.21 RRCF-fast:w=0.16,s=0.38 RRCF-mid:w=0.13,s=0.56 RRCF-slow:w=0.13,s=0.75 COPOD!:w=0.20,s=0.45"} +{"timestamp":"2026-03-16T01:48:06.170951355Z","score":0.3740570640587281,"is_anomaly":false,"confidence":0.452117603831452,"method":"SEAD","details":"MAD:w=0.38,s=0.01 RRCF-fast:w=0.16,s=0.28 RRCF-mid:w=0.13,s=0.63 RRCF-slow:w=0.13,s=0.75 COPOD!:w=0.20,s=0.73"} +{"timestamp":"2026-03-16T01:48:42.670021388Z","score":0.5445400700102385,"is_anomaly":false,"confidence":0.6581780570372723,"method":"SEAD","details":"MAD!:w=0.38,s=0.62 RRCF-fast:w=0.16,s=0.66 RRCF-mid:w=0.13,s=0.63 RRCF-slow:w=0.13,s=0.79 COPOD!:w=0.20,s=0.10"} +{"timestamp":"2026-03-16T01:49:08.627590459Z","score":0.5446328125543267,"is_anomaly":false,"confidence":0.6602585932381387,"method":"SEAD","details":"MAD!:w=0.38,s=0.61 RRCF-fast:w=0.16,s=0.47 RRCF-mid:w=0.13,s=0.62 RRCF-slow:w=0.13,s=0.81 COPOD!:w=0.20,s=0.26"} +{"timestamp":"2026-03-16T01:49:36.243003363Z","score":0.4083600202012597,"is_anomaly":false,"confidence":0.4950550283745288,"method":"SEAD","details":"MAD!:w=0.38,s=0.38 RRCF-fast:w=0.16,s=0.12 RRCF-mid:w=0.13,s=0.42 RRCF-slow:w=0.13,s=0.68 COPOD!:w=0.20,s=0.52"} +{"timestamp":"2026-03-16T01:50:06.236877762Z","score":0.3183445213320564,"is_anomaly":false,"confidence":0.3859292003248627,"method":"SEAD","details":"MAD!:w=0.38,s=0.23 RRCF-fast:w=0.16,s=0.39 RRCF-mid:w=0.13,s=0.56 RRCF-slow:w=0.13,s=0.74 COPOD!:w=0.20,s=0.01"} +{"timestamp":"2026-03-16T01:50:36.422733896Z","score":0.6914007898610701,"is_anomaly":false,"confidence":0.8381854753414664,"method":"SEAD","details":"MAD!:w=0.38,s=0.79 RRCF-fast:w=0.16,s=0.58 RRCF-mid:w=0.13,s=0.77 RRCF-slow:w=0.13,s=0.76 COPOD!:w=0.21,s=0.51"} +{"timestamp":"2026-03-16T01:51:08.013250207Z","score":0.5824139306309093,"is_anomaly":false,"confidence":0.7060606589550663,"method":"SEAD","details":"MAD!:w=0.38,s=0.52 RRCF-fast:w=0.16,s=0.40 RRCF-mid:w=0.13,s=0.45 RRCF-slow:w=0.13,s=0.67 COPOD!:w=0.21,s=0.88"} +{"timestamp":"2026-03-16T01:51:36.151714525Z","score":0.27223325367330525,"is_anomaly":false,"confidence":0.33002849068159756,"method":"SEAD","details":"MAD:w=0.38,s=0.02 RRCF-fast:w=0.16,s=0.23 RRCF-mid:w=0.13,s=0.44 RRCF-slow:w=0.13,s=0.61 COPOD!:w=0.21,s=0.45"} +{"timestamp":"2026-03-16T01:52:06.279111638Z","score":0.5715827623668341,"is_anomaly":false,"confidence":0.6929300290034409,"method":"SEAD","details":"MAD!:w=0.38,s=0.53 RRCF-fast:w=0.16,s=0.81 RRCF-mid:w=0.13,s=0.82 RRCF-slow:w=0.12,s=0.92 COPOD!:w=0.20,s=0.09"} +{"timestamp":"2026-03-16T01:52:36.209983302Z","score":0.5938456655653016,"is_anomaly":false,"confidence":0.7210483806937205,"method":"SEAD","details":"MAD!:w=0.38,s=0.65 RRCF-fast:w=0.16,s=0.50 RRCF-mid:w=0.13,s=0.57 RRCF-slow:w=0.12,s=0.76 COPOD!:w=0.21,s=0.47"} +{"timestamp":"2026-03-16T01:53:06.296429098Z","score":0.38022872045141176,"is_anomaly":false,"confidence":0.4616743357278705,"method":"SEAD","details":"MAD!:w=0.38,s=0.24 RRCF-fast:w=0.16,s=0.11 RRCF-mid:w=0.13,s=0.26 RRCF-slow:w=0.12,s=0.61 COPOD!:w=0.21,s=0.79"} +{"timestamp":"2026-03-16T01:53:36.168075522Z","score":0.54366789423972,"is_anomaly":false,"confidence":0.6601224484875993,"method":"SEAD","details":"MAD!:w=0.38,s=0.54 RRCF-fast:w=0.16,s=0.71 RRCF-mid:w=0.13,s=0.79 RRCF-slow:w=0.12,s=0.90 COPOD!:w=0.20,s=0.05"} +{"timestamp":"2026-03-16T01:54:07.787100877Z","score":0.8902235911393993,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.38,s=0.86 RRCF-fast!:w=0.16,s=0.91 RRCF-mid:w=0.13,s=0.91 RRCF-slow:w=0.12,s=0.94 COPOD!:w=0.21,s=0.89"} +{"timestamp":"2026-03-16T01:54:38.673526897Z","score":0.5144935893479416,"is_anomaly":false,"confidence":0.6237207999637882,"method":"SEAD","details":"MAD!:w=0.38,s=0.55 RRCF-fast:w=0.16,s=0.68 RRCF-mid:w=0.13,s=0.54 RRCF-slow:w=0.12,s=0.76 COPOD!:w=0.21,s=0.16"} +{"timestamp":"2026-03-16T01:55:06.216284744Z","score":0.5788529000465295,"is_anomaly":false,"confidence":0.7017436200438529,"method":"SEAD","details":"MAD!:w=0.38,s=0.54 RRCF-fast:w=0.16,s=0.71 RRCF-mid:w=0.13,s=0.81 RRCF-slow:w=0.12,s=0.86 COPOD!:w=0.21,s=0.24"} +{"timestamp":"2026-03-16T01:55:36.172035011Z","score":0.21726078603154908,"is_anomaly":false,"confidence":0.26379840258186893,"method":"SEAD","details":"MAD!:w=0.38,s=0.13 RRCF-fast:w=0.16,s=0.16 RRCF-mid:w=0.13,s=0.28 RRCF-slow:w=0.12,s=0.54 COPOD!:w=0.21,s=0.18"} +{"timestamp":"2026-03-16T01:56:15.711540392Z","score":0.44272377960712395,"is_anomaly":false,"confidence":0.537555939010583,"method":"SEAD","details":"MAD!:w=0.38,s=0.53 RRCF-fast:w=0.16,s=0.53 RRCF-mid:w=0.13,s=0.51 RRCF-slow:w=0.12,s=0.69 COPOD!:w=0.21,s=0.04"} +{"timestamp":"2026-03-16T01:56:36.64780196Z","score":0.6839825038849099,"is_anomaly":false,"confidence":0.8304926775538082,"method":"SEAD","details":"MAD!:w=0.38,s=0.56 RRCF-fast:w=0.16,s=0.64 RRCF-mid:w=0.13,s=0.63 RRCF-slow:w=0.12,s=0.74 COPOD!:w=0.21,s=0.94"} +{"timestamp":"2026-03-16T01:57:07.786999285Z","score":0.3884302026203822,"is_anomaly":false,"confidence":0.47163258882313414,"method":"SEAD","details":"MAD!:w=0.38,s=0.30 RRCF-fast:w=0.16,s=0.41 RRCF-mid:w=0.13,s=0.27 RRCF-slow:w=0.12,s=0.49 COPOD!:w=0.21,s=0.55"} +{"timestamp":"2026-03-16T01:57:36.148746374Z","score":0.21181765910911218,"is_anomaly":false,"confidence":0.25718934894905776,"method":"SEAD","details":"MAD:w=0.38,s=0.09 RRCF-fast:w=0.16,s=0.11 RRCF-mid:w=0.13,s=0.20 RRCF-slow:w=0.12,s=0.52 COPOD!:w=0.21,s=0.33"} +{"timestamp":"2026-03-16T01:58:09.570142898Z","score":0.7342673441578383,"is_anomaly":false,"confidence":0.8915486130513292,"method":"SEAD","details":"MAD!:w=0.39,s=0.58 RRCF-fast!:w=0.16,s=0.86 RRCF-mid:w=0.13,s=0.76 RRCF-slow:w=0.12,s=0.86 COPOD!:w=0.21,s=0.83"} +{"timestamp":"2026-03-16T01:58:36.273371731Z","score":0.4478517015757027,"is_anomaly":false,"confidence":0.5437822702716653,"method":"SEAD","details":"MAD!:w=0.39,s=0.22 RRCF-fast:w=0.16,s=0.74 RRCF-mid:w=0.13,s=0.28 RRCF-slow:w=0.12,s=0.56 COPOD!:w=0.21,s=0.69"} +{"timestamp":"2026-03-16T01:59:06.173566247Z","score":0.33628112034367474,"is_anomaly":false,"confidence":0.40833457711200555,"method":"SEAD","details":"MAD!:w=0.39,s=0.22 RRCF-fast:w=0.16,s=0.24 RRCF-mid:w=0.13,s=0.29 RRCF-slow:w=0.12,s=0.59 COPOD!:w=0.21,s=0.51"} +{"timestamp":"2026-03-16T01:59:36.245224624Z","score":0.9133819414849571,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.39,s=0.86 RRCF-fast!:w=0.16,s=0.98 RRCF-mid!:w=0.13,s=0.93 RRCF-slow!:w=0.12,s=0.96 COPOD!:w=0.20,s=0.93"} +{"timestamp":"2026-03-16T02:00:06.770352831Z","score":0.6735123738292126,"is_anomaly":false,"confidence":0.8177798284752069,"method":"SEAD","details":"MAD!:w=0.39,s=0.49 RRCF-fast!:w=0.16,s=0.97 RRCF-mid:w=0.13,s=0.85 RRCF-slow:w=0.12,s=0.92 COPOD!:w=0.20,s=0.55"} +{"timestamp":"2026-03-16T02:00:36.246596652Z","score":0.4999817925059957,"is_anomaly":false,"confidence":0.6070787121425049,"method":"SEAD","details":"MAD!:w=0.39,s=0.30 RRCF-fast:w=0.15,s=0.85 RRCF-mid:w=0.13,s=0.30 RRCF-slow:w=0.12,s=0.65 COPOD!:w=0.20,s=0.66"} +{"timestamp":"2026-03-16T02:01:06.232957522Z","score":0.6935719786522034,"is_anomaly":false,"confidence":0.8421362335374629,"method":"SEAD","details":"MAD!:w=0.40,s=0.75 RRCF-fast:w=0.15,s=0.90 RRCF-mid:w=0.13,s=0.76 RRCF-slow:w=0.12,s=0.82 COPOD!:w=0.20,s=0.32"} +{"timestamp":"2026-03-16T02:01:42.163553312Z","score":0.5761543446181686,"is_anomaly":false,"confidence":0.6995675497961504,"method":"SEAD","details":"MAD!:w=0.40,s=0.70 RRCF-fast:w=0.15,s=0.74 RRCF-mid:w=0.13,s=0.64 RRCF-slow:w=0.12,s=0.65 COPOD!:w=0.21,s=0.14"} +{"timestamp":"2026-03-16T02:02:06.351432892Z","score":0.3659639143204621,"is_anomaly":false,"confidence":0.444353984737618,"method":"SEAD","details":"MAD!:w=0.39,s=0.29 RRCF-fast:w=0.15,s=0.61 RRCF-mid:w=0.13,s=0.24 RRCF-slow:w=0.12,s=0.54 COPOD!:w=0.21,s=0.31"} +{"timestamp":"2026-03-16T02:02:36.451946239Z","score":0.9456169637753131,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.39,s=1.00 RRCF-fast!:w=0.15,s=0.97 RRCF-mid!:w=0.13,s=0.98 RRCF-slow!:w=0.12,s=0.95 COPOD!:w=0.21,s=0.80"} +{"timestamp":"2026-03-16T02:03:06.297290487Z","score":0.38552076331704166,"is_anomaly":false,"confidence":0.4680999428512159,"method":"SEAD","details":"MAD!:w=0.39,s=0.28 RRCF-fast:w=0.15,s=0.51 RRCF-mid:w=0.13,s=0.27 RRCF-slow:w=0.12,s=0.59 COPOD!:w=0.21,s=0.45"} +{"timestamp":"2026-03-16T02:03:37.24772283Z","score":0.3563234669685973,"is_anomaly":false,"confidence":0.4326485377582112,"method":"SEAD","details":"MAD!:w=0.39,s=0.28 RRCF-fast:w=0.15,s=0.59 RRCF-mid:w=0.13,s=0.38 RRCF-slow:w=0.12,s=0.60 COPOD!:w=0.21,s=0.17"} +{"timestamp":"2026-03-16T02:04:13.140615207Z","score":0.7345348343774939,"is_anomaly":false,"confidence":0.8918734001145645,"method":"SEAD","details":"MAD!:w=0.40,s=0.76 RRCF-fast:w=0.15,s=0.73 RRCF-mid:w=0.13,s=0.65 RRCF-slow:w=0.12,s=0.75 COPOD!:w=0.21,s=0.74"} +{"timestamp":"2026-03-16T02:04:36.193800707Z","score":0.5520813043209625,"is_anomaly":false,"confidence":0.6703380248013833,"method":"SEAD","details":"MAD!:w=0.40,s=0.51 RRCF-fast:w=0.15,s=0.42 RRCF-mid:w=0.13,s=0.41 RRCF-slow:w=0.12,s=0.52 COPOD!:w=0.21,s=0.83"} +{"timestamp":"2026-03-16T02:05:06.150325212Z","score":0.31197171202781615,"is_anomaly":false,"confidence":0.378796564197821,"method":"SEAD","details":"MAD!:w=0.40,s=0.20 RRCF-fast:w=0.15,s=0.52 RRCF-mid:w=0.13,s=0.45 RRCF-slow:w=0.12,s=0.52 COPOD!:w=0.21,s=0.17"} +{"timestamp":"2026-03-16T02:05:36.147587308Z","score":0.2860201185603109,"is_anomaly":false,"confidence":0.34730437450217394,"method":"SEAD","details":"MAD!:w=0.40,s=0.16 RRCF-fast:w=0.15,s=0.53 RRCF-mid:w=0.13,s=0.36 RRCF-slow:w=0.12,s=0.49 COPOD!:w=0.21,s=0.18"} +{"timestamp":"2026-03-16T02:06:06.841857232Z","score":0.9350352219515051,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.40,s=0.97 RRCF-fast!:w=0.15,s=0.92 RRCF-mid!:w=0.13,s=0.92 RRCF-slow:w=0.12,s=0.90 COPOD!:w=0.21,s=0.91"} +{"timestamp":"2026-03-16T02:06:36.247631524Z","score":0.4183298474011085,"is_anomaly":false,"confidence":0.5079367865340618,"method":"SEAD","details":"MAD!:w=0.40,s=0.43 RRCF-fast:w=0.15,s=0.12 RRCF-mid:w=0.13,s=0.36 RRCF-slow:w=0.12,s=0.56 COPOD!:w=0.21,s=0.57"} +{"timestamp":"2026-03-16T02:07:06.766074398Z","score":0.16613083854670255,"is_anomaly":false,"confidence":0.20171633652214876,"method":"SEAD","details":"MAD:w=0.40,s=0.02 RRCF-fast:w=0.15,s=0.11 RRCF-mid:w=0.13,s=0.51 RRCF-slow:w=0.12,s=0.53 COPOD!:w=0.21,s=0.07"} +{"timestamp":"2026-03-16T02:07:36.200120489Z","score":0.7887616569822427,"is_anomaly":false,"confidence":0.9577156970219588,"method":"SEAD","details":"MAD!:w=0.40,s=0.65 RRCF-fast:w=0.15,s=0.84 RRCF-mid!:w=0.13,s=0.92 RRCF-slow!:w=0.11,s=0.93 COPOD!:w=0.21,s=0.87"} +{"timestamp":"2026-03-16T02:08:08.339980107Z","score":0.7051735079781412,"is_anomaly":false,"confidence":0.8562228294648322,"method":"SEAD","details":"MAD!:w=0.40,s=0.70 RRCF-fast:w=0.15,s=0.55 RRCF-mid:w=0.13,s=0.73 RRCF-slow:w=0.11,s=0.76 COPOD!:w=0.21,s=0.78"} +{"timestamp":"2026-03-16T02:08:38.159072102Z","score":0.48333447793529993,"is_anomaly":false,"confidence":0.5868655154987732,"method":"SEAD","details":"MAD!:w=0.40,s=0.46 RRCF-fast:w=0.15,s=0.27 RRCF-mid:w=0.13,s=0.57 RRCF-slow:w=0.11,s=0.43 COPOD!:w=0.21,s=0.65"} +{"timestamp":"2026-03-16T02:09:07.509709055Z","score":0.2066014383855445,"is_anomaly":false,"confidence":0.25086900771496196,"method":"SEAD","details":"MAD!:w=0.40,s=0.12 RRCF-fast:w=0.15,s=0.37 RRCF-mid:w=0.13,s=0.32 RRCF-slow:w=0.11,s=0.49 COPOD!:w=0.21,s=0.01"} +{"timestamp":"2026-03-16T02:09:37.15288526Z","score":0.7554108728908453,"is_anomaly":false,"confidence":0.9172693935730082,"method":"SEAD","details":"MAD!:w=0.40,s=0.94 RRCF-fast:w=0.15,s=0.82 RRCF-mid:w=0.13,s=0.79 RRCF-slow:w=0.11,s=0.78 COPOD!:w=0.21,s=0.31"} +{"timestamp":"2026-03-16T02:10:06.643583327Z","score":0.5445505586137405,"is_anomaly":false,"confidence":0.6612289796120592,"method":"SEAD","details":"MAD!:w=0.40,s=0.54 RRCF-fast:w=0.15,s=0.30 RRCF-mid:w=0.13,s=0.38 RRCF-slow:w=0.11,s=0.52 COPOD!:w=0.21,s=0.84"} +{"timestamp":"2026-03-16T02:10:36.1985802Z","score":0.23864528555142708,"is_anomaly":false,"confidence":0.28977874718576574,"method":"SEAD","details":"MAD:w=0.40,s=0.01 RRCF-fast:w=0.15,s=0.42 RRCF-mid:w=0.13,s=0.45 RRCF-slow:w=0.11,s=0.57 COPOD!:w=0.21,s=0.23"} +{"timestamp":"2026-03-16T02:11:06.19885153Z","score":0.2562851576815595,"is_anomaly":false,"confidence":0.3111982360919706,"method":"SEAD","details":"MAD!:w=0.40,s=0.27 RRCF-fast:w=0.15,s=0.21 RRCF-mid:w=0.13,s=0.45 RRCF-slow:w=0.11,s=0.47 COPOD!:w=0.21,s=0.03"} +{"timestamp":"2026-03-16T02:11:37.13738725Z","score":0.8536686473709135,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.40,s=0.94 RRCF-fast:w=0.15,s=0.84 RRCF-mid:w=0.13,s=0.85 RRCF-slow:w=0.11,s=0.74 COPOD!:w=0.21,s=0.76"} diff --git a/evaluation/data/pipeline_high-bw_run2/baseline_metrics.csv b/evaluation/data/pipeline_high-bw_run2/baseline_metrics.csv new file mode 100644 index 0000000..3f703ca --- /dev/null +++ b/evaluation/data/pipeline_high-bw_run2/baseline_metrics.csv @@ -0,0 +1,3249 @@ +timestamp,cpu_percent,cpu_count,cpu_freq_current,memory_percent,memory_available_mb,memory_used_mb,swap_percent,disk_io_read_mb_s,disk_io_write_mb_s,disk_io_read_count,disk_io_write_count,network_sent_mb_s,network_recv_mb_s,network_packets_sent,network_packets_recv,network_errin,network_errout,network_dropin,network_dropout,tixstream_active,transfer_job_manager_active +1773610881.438582,1.10,4,3992.50,46.85,1832.64,1834.11,0.00,3511054025834.197266,3511054025385.729980,205,0,0.000000,0.000030,30327690,18005816,0,0,48701,0,1,1 +1773610886.441543,0.70,4,3992.50,46.87,1831.66,1835.09,0.00,32590.488631,33039.510331,2265829,2495008,0.000031,0.000045,30327692,18005820,0,0,48703,0,1,1 +1773610891.441709,0.65,4,3992.50,46.89,1830.93,1835.83,0.00,3518320420811.723633,3518320420371.649902,251,417,0.000000,0.000030,30327692,18005823,0,0,48706,0,1,1 +1773610896.439242,0.90,4,3992.50,47.34,1813.08,1853.65,0.00,0.356328,3520174031057.882812,246,2,0.000000,0.000020,30327692,18005825,0,0,48708,0,1,1 +1773610901.441037,0.80,4,3992.50,47.36,1812.65,1854.11,0.00,3517174576269.747559,3517174576271.759277,11,0,0.000000,0.000030,30327692,18005828,0,0,48711,0,1,1 +1773610906.442505,1.05,4,3992.50,47.36,1812.65,1854.11,0.00,0.000000,0.000000,11,0,0.000000,0.000664,30327692,18005834,0,0,48713,0,1,1 +1773610911.441875,42.34,4,3992.50,54.10,1570.52,2118.09,0.00,0.000000,0.000000,11,0,93.948200,0.027714,30337570,18007755,0,0,48716,0,1,1 +1773610916.440009,30.08,4,3992.50,54.06,1572.11,2116.56,0.00,0.180341,0.000000,205,0,119.828818,0.070628,30350110,18013193,0,0,48718,0,1,1 +1773610921.438339,31.23,4,3992.50,53.88,1579.04,2109.64,0.00,0.000000,0.000000,205,0,119.036303,0.096621,30362971,18020642,0,0,48721,0,1,1 +1773610926.438631,32.01,4,3992.50,54.81,1542.80,2145.85,0.00,1.475793,10.674573,251,417,119.390204,0.099266,30375828,18028329,0,0,48723,0,1,1 +1773610931.442336,29.12,4,3992.50,54.13,1569.50,2119.13,0.00,3515832122834.027344,3515832122824.961914,75,0,119.708766,0.111634,30388632,18037030,0,0,48726,0,1,1 +1773610936.437539,29.25,4,3992.50,54.17,1567.92,2120.76,0.00,0.000000,0.000000,75,0,118.708504,0.110371,30401360,18045664,0,0,48728,0,1,1 +1773610941.437672,29.14,4,3992.50,54.13,1569.29,2119.36,0.00,1.602594,10.674912,251,417,120.196079,0.112935,30414244,18054472,0,0,48731,0,1,1 +1773610946.441969,29.39,4,3992.50,54.27,1564.06,2124.61,0.00,32590.658143,33031.310970,2267373,2495908,118.897835,0.109977,30427039,18063043,0,0,48733,0,1,1 +1773610951.437562,12.47,4,3992.50,49.68,1743.88,1944.89,0.00,3521540789749.360352,3521540789307.939453,251,417,96.044384,0.088645,30437369,18069973,0,0,48736,0,1,1 +1773610956.437653,1.90,4,3992.50,49.14,1764.70,1924.07,0.00,3518373700125.413086,3518373700116.213867,205,0,0.003130,0.001568,30437428,18070014,0,0,48738,0,1,1 +1773610961.442373,0.85,4,3992.50,48.56,1787.64,1901.12,0.00,3515118678840.482910,0.000000,11,0,0.000000,0.000030,30437428,18070017,0,0,48741,0,1,1 +1773610966.437575,0.70,4,3992.50,48.16,1803.23,1885.53,0.00,0.053567,0.000000,75,0,0.000000,0.000020,30437428,18070019,0,0,48743,0,1,1 +1773610971.437562,0.80,4,3992.50,48.11,1804.99,1883.78,0.00,1.958794,0.000195,246,2,0.000000,0.000674,30437428,18070026,0,0,48746,0,1,1 +1773610976.437642,0.75,4,3992.50,47.94,1811.64,1877.13,0.00,3518380976005.580566,3518380976007.412598,205,0,0.000000,0.000020,30437428,18070028,0,0,48748,0,1,1 +1773610981.437556,0.70,4,3992.50,47.97,1810.64,1878.13,0.00,32620.942813,33071.318132,2267392,2496070,0.000000,0.000030,30437428,18070031,0,0,48751,0,1,1 +1773610986.442225,0.75,4,3992.50,47.77,1818.51,1870.25,0.00,3515154344797.428711,3515154344356.672363,251,417,0.000000,0.000020,30437428,18070033,0,0,48753,0,1,1 +1773610991.437455,1.75,4,3992.50,48.01,1811.79,1879.82,0.00,0.356492,3521796778308.396973,246,2,0.000000,0.000030,30437428,18070036,0,0,48756,0,1,1 +1773610996.441049,0.80,4,3992.50,48.01,1811.79,1879.82,0.00,32595.115718,33047.060517,2267392,2496117,0.000000,0.000020,30437428,18070038,0,0,48758,0,1,1 +1773611001.437627,0.65,4,3992.50,48.01,1811.78,1879.82,0.00,3520846708549.515625,3520846708098.895996,75,0,0.000126,0.000185,30437438,18070051,0,0,48761,0,1,1 +1773611006.442258,0.90,4,3992.50,48.01,1811.79,1879.82,0.00,1.956977,0.000195,246,2,0.000016,0.000036,30437440,18070055,0,0,48763,0,1,1 +1773611011.442110,0.65,4,3992.50,48.02,1809.54,1880.06,0.00,3518541543489.922363,3518541543491.880859,75,0,0.000000,0.000030,30437440,18070058,0,0,48766,0,1,1 +1773611016.442190,0.85,4,3992.50,48.36,1797.55,1893.33,0.00,32610.417431,33059.661301,2265903,2495735,0.000000,0.000020,30437440,18070060,0,0,48768,0,1,1 +1773611021.437791,37.47,4,3992.50,54.97,1540.30,2152.30,0.00,3521535482351.428711,3521535481901.781738,75,0,75.376223,0.034030,30445363,18072509,0,0,48771,0,1,1 +1773611026.439398,31.84,4,3992.50,55.10,1535.16,2157.35,0.00,1.602122,10.671764,251,417,119.680677,0.029915,30457730,18074765,0,0,48773,0,1,1 +1773611031.442327,31.33,4,3992.50,54.89,1543.39,2149.13,0.00,0.355944,3516377197663.135742,246,2,118.549248,0.024733,30470013,18076581,0,0,48776,0,1,1 +1773611036.441589,29.76,4,3992.50,54.84,1545.49,2147.12,0.00,3518957233343.216309,3518957233345.229492,11,0,119.785048,0.027786,30482367,18078661,0,0,48778,0,1,1 +1773611041.442177,29.78,4,3992.50,55.09,1535.84,2156.76,0.00,1.655958,10.673940,251,417,118.954198,0.028329,30494680,18080873,0,0,48781,0,1,1 +1773611046.439080,29.44,4,3992.50,55.37,1525.27,2167.84,0.00,3520617814072.088379,3520617814063.063965,11,0,119.843247,0.028382,30507097,18083079,0,0,48783,0,1,1 +1773611051.442182,29.77,4,3992.50,54.91,1542.74,2149.82,0.00,32590.994650,33039.937436,2265983,2496002,118.692844,0.039331,30519267,18086113,0,0,48786,0,1,1 +1773611056.441549,30.79,4,3992.50,54.79,1547.28,2145.28,0.00,0.000000,0.162228,2265983,2496017,119.579421,0.028801,30531527,18088355,0,0,48788,0,1,1 +1773611061.442182,18.39,4,3992.50,50.42,1718.58,1974.07,0.00,9.629054,10.680776,2267478,2496448,114.943397,0.034226,30543266,18091017,0,0,48791,0,1,1 +1773611066.441550,1.40,4,3992.50,49.50,1754.64,1938.01,0.00,3518881538749.406250,3518881538748.390625,2265997,2496062,0.003796,0.001673,30543336,18091064,0,0,48793,0,1,1 +1773611071.437580,0.90,4,3992.50,49.21,1765.83,1926.80,0.00,3521233620291.170898,3521233619841.340332,75,0,0.000000,0.000030,30543336,18091067,0,0,48796,0,1,1 +1773611076.438127,0.90,4,3992.50,49.17,1776.97,1925.09,0.00,32617.338431,33067.947710,2267487,2496549,0.000000,0.000020,30543336,18091069,0,0,48798,0,1,1 +1773611081.442386,0.70,4,3992.50,49.17,1776.98,1925.03,0.00,3515442942735.089355,3515442942293.879395,251,417,0.000000,0.000030,30543336,18091072,0,0,48801,0,1,1 +1773611086.437565,0.80,4,3992.50,49.03,1782.31,1919.70,0.00,32641.212601,33082.129378,2265998,2496137,0.000000,0.000020,30543336,18091074,0,0,48803,0,1,1 +1773611091.442265,1.00,4,3992.50,49.08,1780.36,1921.66,0.00,3515133020129.665527,3515133019680.396973,205,0,0.000000,0.000030,30543336,18091077,0,0,48806,0,1,1 +1773611096.438107,0.75,4,3992.50,49.08,1780.36,1921.65,0.00,0.000000,0.000000,205,0,0.000513,0.001108,30543350,18091101,0,0,48808,0,1,1 +1773611101.440951,1.10,4,3992.50,49.08,1780.37,1921.65,0.00,1.830990,0.000195,246,2,0.000000,0.000673,30543350,18091108,0,0,48811,0,1,1 +1773611106.441846,1.25,4,3992.50,49.29,1772.20,1929.82,0.00,0.000000,0.000000,246,2,0.000000,0.000020,30543350,18091110,0,0,48813,0,1,1 +1773611111.441559,0.65,4,3992.50,49.29,1772.20,1929.82,0.00,3518639570768.998047,3518639570771.010254,11,0,0.000126,0.000185,30543360,18091123,0,0,48816,0,1,1 +1773611116.437572,1.25,4,3992.50,49.33,1770.73,1931.29,0.00,1.657474,10.683714,251,417,0.000008,0.000028,30543361,18091126,0,0,48818,0,1,1 +1773611121.442174,0.65,4,3992.50,49.33,1770.73,1931.29,0.00,0.355825,3515201584627.688965,246,2,0.001125,0.001230,30543370,18091143,0,0,48821,0,1,1 +1773611126.437563,0.70,4,3992.50,49.33,1770.72,1931.31,0.00,32639.516386,33091.626556,2266002,2496308,0.000000,0.000020,30543370,18091145,0,0,48823,0,1,1 +1773611131.438128,33.35,4,3992.50,55.17,1542.04,2159.96,0.00,0.060149,0.098622,2266010,2496433,73.700223,0.037705,30551138,18093839,0,0,48826,0,1,1 +1773611136.441534,34.52,4,3992.50,55.81,1516.76,2185.12,0.00,0.000000,0.072021,2266010,2496461,122.685704,0.048575,30563671,18097623,0,0,48828,0,1,1 +1773611141.440994,31.30,4,3992.50,55.45,1531.40,2170.96,0.00,3518817023422.126953,3518817022981.306641,251,417,121.579830,0.045634,30576093,18101160,0,0,48831,0,1,1 +1773611146.437561,31.32,4,3992.50,55.36,1534.88,2167.45,0.00,32632.234215,33073.362307,2266010,2496509,120.247859,0.038177,30588400,18104160,0,0,48833,0,1,1 +1773611151.442307,29.79,4,3992.50,55.44,1531.63,2170.77,0.00,9.552455,10.670046,2267499,2496944,120.050747,0.050649,30600595,18108102,0,0,48836,0,1,1 +1773611156.441605,29.25,4,3992.50,55.55,1527.54,2174.79,0.00,3518931587557.779297,3518931587106.752930,11,0,119.580032,0.044470,30612733,18111577,0,0,48838,0,1,1 +1773611161.438439,29.72,4,3992.50,55.35,1535.53,2166.88,0.00,2.013579,0.000195,246,2,119.438724,0.048809,30624856,18115395,0,0,48841,0,1,1 +1773611166.441609,29.94,4,3992.50,55.57,1527.96,2175.76,0.00,3516208190977.842773,3516208190979.800293,75,0,119.489084,0.043113,30637063,18118689,0,0,48843,0,1,1 +1773611171.441782,15.76,4,3992.50,50.99,1707.50,1996.31,0.00,0.126753,0.000000,205,0,108.544034,0.038844,30648079,18121720,0,0,48846,0,1,1 +1773611176.437561,2.56,4,3992.50,49.70,1757.96,1945.82,0.00,32648.568607,33100.259423,2267514,2497066,0.006819,0.004429,30648207,18121813,0,0,48848,0,1,1 +1773611181.437556,0.75,4,3992.50,49.40,1769.50,1934.30,0.00,0.000000,0.037598,2267514,2497106,0.000000,0.000030,30648207,18121816,0,0,48851,0,1,1 +1773611186.437640,1.10,4,3992.50,49.33,1772.41,1931.39,0.00,3518377486987.948242,3518377486536.789062,11,0,0.000031,0.000045,30648209,18121820,0,0,48853,0,1,1 +1773611191.441845,0.70,4,3992.50,49.32,1772.64,1931.16,0.00,0.180122,0.000000,205,0,0.000008,0.000038,30648210,18121824,0,0,48856,0,1,1 +1773611196.442483,1.50,4,3992.50,49.61,1757.11,1942.40,0.00,1.831798,0.000195,246,2,0.000000,0.000020,30648210,18121826,0,0,48858,0,1,1 +1773611201.441889,0.65,4,3992.50,49.59,1757.41,1941.55,0.00,3518855305896.983887,3518855305898.996582,11,0,0.000000,0.000030,30648210,18121829,0,0,48861,0,1,1 +1773611206.441711,0.70,4,3992.50,49.60,1757.17,1941.79,0.00,1.656211,10.675576,251,417,0.000000,0.000020,30648210,18121831,0,0,48863,0,1,1 +1773611211.442029,0.65,4,3992.50,49.41,1764.32,1934.64,0.00,3518213104336.119141,3518213104326.920410,205,0,0.000000,0.000030,30648210,18121834,0,0,48866,0,1,1 +1773611216.442128,0.65,4,3992.50,49.43,1763.86,1935.11,0.00,0.000000,0.000000,205,0,0.000000,0.000664,30648210,18121840,0,0,48868,0,1,1 +1773611221.441789,0.70,4,3992.50,49.43,1763.61,1935.35,0.00,1.475979,10.675918,251,417,0.000176,0.000247,30648224,18121857,0,0,48871,0,1,1 +1773611226.439891,0.95,4,3992.50,49.69,1753.54,1945.39,0.00,0.356288,3519773683130.969238,246,2,0.000008,0.000028,30648225,18121860,0,0,48873,0,1,1 +1773611231.441695,0.75,4,3992.50,49.60,1757.02,1941.95,0.00,32597.849027,33050.008727,2266025,2496796,0.000000,0.000673,30648225,18121867,0,0,48876,0,1,1 +1773611236.441831,0.90,4,3992.50,49.61,1756.52,1942.45,0.00,0.000000,0.015625,2266025,2496813,0.000000,0.000020,30648225,18121869,0,0,48878,0,1,1 +1773611241.442050,30.72,4,3992.50,55.70,1518.27,2180.67,0.00,3518282620930.665527,3518282620480.358398,11,0,57.684450,0.030621,30654366,18124003,0,0,48881,0,1,1 +1773611246.439926,32.19,4,3992.50,55.40,1529.84,2169.13,0.00,0.000000,0.000000,11,0,118.222300,0.041064,30666661,18127092,0,0,48883,0,1,1 +1773611251.441628,29.50,4,3992.50,55.42,1528.95,2169.96,0.00,0.000000,0.000000,11,0,119.946866,0.081096,30679314,18133461,0,0,48886,0,1,1 +1773611256.438256,29.11,4,3992.50,55.34,1532.07,2166.80,0.00,1.657270,10.682398,251,417,118.469172,0.093708,30691891,18140735,0,0,48888,0,1,1 +1773611261.442117,29.68,4,3992.50,55.77,1520.60,2183.33,0.00,3515722634355.070312,3515722634346.058594,11,0,120.100526,0.098114,30704604,18148432,0,0,48891,0,1,1 +1773611266.441632,30.74,4,3992.50,55.50,1530.95,2172.91,0.00,0.053521,0.000000,75,0,118.203192,0.098452,30717252,18156139,0,0,48893,0,1,1 +1773611271.440824,31.00,4,3992.50,55.50,1530.89,2172.99,0.00,0.126778,0.000000,205,0,120.011406,0.098933,30730052,18163886,0,0,48896,0,1,1 +1773611276.440897,31.12,4,3992.50,55.52,1530.15,2173.74,0.00,1.832004,0.000195,246,2,119.188628,0.089098,30742718,18170858,0,0,48898,0,1,1 +1773611281.441982,22.30,4,3992.50,55.55,1528.91,2175.05,0.00,3517673865913.582520,3517673865915.414062,205,0,119.371826,0.107473,30755652,18179231,0,0,48901,0,1,1 +1773611286.442127,1.55,4,3992.50,50.30,1730.14,1969.47,0.00,3518334940034.037598,0.000000,75,0,14.427432,0.015723,30757311,18180382,0,0,48903,0,1,1 +1773611291.441538,0.75,4,3992.50,49.82,1748.96,1950.42,0.00,32625.147543,33077.104854,2267534,2497580,0.000000,0.000030,30757311,18180385,0,0,48906,0,1,1 +1773611296.442344,1.00,4,3992.50,49.40,1765.14,1934.19,0.00,0.000000,0.000781,2267534,2497581,0.000000,0.000020,30757311,18180387,0,0,48908,0,1,1 +1773611301.441909,0.65,4,3992.50,49.41,1764.72,1934.65,0.00,3518742957841.534180,3518742957398.663574,251,417,0.000000,0.000030,30757311,18180390,0,0,48911,0,1,1 +1773611306.441751,0.70,4,3992.50,49.41,1764.72,1934.65,0.00,32620.725119,33063.592399,2267534,2497590,0.000000,0.000020,30757311,18180392,0,0,48913,0,1,1 +1773611311.441733,1.75,4,3992.50,49.41,1764.72,1934.65,0.00,3518450304303.622070,3518450303851.748535,11,0,0.000000,0.000030,30757311,18180395,0,0,48916,0,1,1 +1773611316.441946,0.85,4,3992.50,49.51,1762.13,1938.30,0.00,0.000000,0.000000,11,0,0.000000,0.000020,30757311,18180397,0,0,48918,0,1,1 +1773611321.437968,0.90,4,3992.50,49.47,1763.52,1936.90,0.00,2.013907,0.000195,246,2,0.000000,0.000030,30757311,18180400,0,0,48921,0,1,1 +1773611326.437624,0.70,4,3992.50,49.47,1763.55,1936.90,0.00,3518679274310.655762,3518679274312.668457,11,0,0.000000,0.000020,30757311,18180402,0,0,48923,0,1,1 +1773611331.441989,0.55,4,3992.50,49.47,1763.55,1936.89,0.00,0.000000,0.000000,11,0,0.000126,0.000828,30757321,18180419,0,0,48926,0,1,1 +1773611336.440589,0.65,4,3992.50,49.47,1763.56,1936.89,0.00,32620.923993,33071.964230,2266045,2497214,0.000016,0.000036,30757323,18180423,0,0,48928,0,1,1 +1773611341.441538,0.60,4,3992.50,49.37,1767.55,1932.91,0.00,9.559710,10.677271,2267534,2497637,0.000000,0.000674,30757323,18180430,0,0,48931,0,1,1 +1773611346.437589,0.65,4,3992.50,49.33,1769.23,1931.21,0.00,0.000000,0.024238,2267534,2497646,0.000000,0.000020,30757323,18180432,0,0,48933,0,1,1 +1773611351.437934,25.92,4,3992.50,55.83,1514.43,2185.87,0.00,3518194527792.542969,3518194527340.518066,11,0,55.477114,0.027325,30763136,18182380,0,0,48936,0,1,1 +1773611356.441634,35.08,4,3992.50,55.53,1525.93,2174.00,0.00,1.654928,10.667300,251,417,122.078902,0.036345,30775625,18185164,0,0,48938,0,1,1 +1773611361.438507,31.35,4,3992.50,55.76,1517.37,2183.04,0.00,3520638883359.227051,3520638883350.021973,205,0,121.844523,0.037751,30788151,18188057,0,0,48941,0,1,1 +1773611366.439191,29.91,4,3992.50,55.60,1523.48,2176.90,0.00,1.475677,10.673737,251,417,120.147564,0.044359,30800338,18191524,0,0,48943,0,1,1 +1773611371.437558,30.34,4,3992.50,55.47,1528.52,2171.87,0.00,3519586308760.648926,3519586308751.627441,11,0,119.602141,0.042869,30812462,18194863,0,0,48946,0,1,1 +1773611376.439581,29.74,4,3992.50,55.46,1529.20,2171.18,0.00,32608.190217,33060.218665,2267540,2497861,119.514327,0.045885,30824607,18198490,0,0,48948,0,1,1 +1773611381.438030,29.08,4,3992.50,55.97,1508.01,2191.49,0.00,3519529054542.610352,3519529054090.078125,205,0,119.599217,0.053318,30836707,18202696,0,0,48951,0,1,1 +1773611386.437599,28.98,4,3992.50,55.91,1510.60,2188.93,0.00,1.476006,10.676115,251,417,119.973137,0.046837,30848859,18206388,0,0,48953,0,1,1 +1773611391.439070,19.35,4,3992.50,55.71,1518.47,2181.12,0.00,32610.130619,33053.453573,2267541,2497938,118.928234,0.051562,30860994,18210381,0,0,48956,0,1,1 +1773611396.442425,1.40,4,3992.50,49.82,1748.85,1950.73,0.00,3516077833887.859375,3516077833435.510254,205,0,8.209638,0.007224,30861930,18210760,0,0,48958,0,1,1 +1773611401.442410,2.06,4,3992.50,49.54,1760.15,1939.43,0.00,32611.919008,33063.450980,2266077,2497589,0.000000,0.000030,30861930,18210763,0,0,48961,0,1,1 +1773611406.442020,0.90,4,3992.50,49.70,1763.76,1945.92,0.00,3518711670968.654785,3518711670517.269043,11,0,0.000000,0.000020,30861930,18210765,0,0,48963,0,1,1 +1773611411.438308,0.75,4,3992.50,49.72,1762.60,1946.50,0.00,0.180407,0.000000,205,0,0.000000,0.000030,30861930,18210768,0,0,48966,0,1,1 +1773611416.442097,0.65,4,3992.50,49.72,1762.60,1946.50,0.00,1.830644,0.000195,246,2,0.000000,0.000020,30861930,18210770,0,0,48968,0,1,1 +1773611421.441580,0.80,4,3992.50,49.72,1762.39,1946.71,0.00,32622.918851,33077.570238,2267566,2498125,0.000205,0.000562,30861937,18210784,0,0,48971,0,1,1 +1773611426.442037,0.60,4,3992.50,49.73,1762.15,1946.96,0.00,0.000000,0.094523,2267566,2498132,0.000008,0.000028,30861938,18210787,0,0,48973,0,1,1 +1773611431.441922,0.65,4,3992.50,49.71,1762.76,1946.34,0.00,3518518400093.127930,3518518400092.036133,2266077,2497725,0.000000,0.000030,30861938,18210790,0,0,48976,0,1,1 +1773611436.442287,0.65,4,3992.50,49.81,1758.45,1949.98,0.00,0.000000,0.042184,2266077,2497756,0.000000,0.000020,30861938,18210792,0,0,48978,0,1,1 +1773611441.441859,0.75,4,3992.50,49.74,1760.89,1947.59,0.00,3518737954474.469238,3518737954031.813477,251,417,0.001430,0.001460,30861962,18210823,0,0,48981,0,1,1 +1773611446.441717,0.60,4,3992.50,49.78,1759.44,1949.03,0.00,3518537412604.810059,3518537412595.791016,11,0,0.000000,0.000020,30861962,18210825,0,0,48983,0,1,1 +1773611451.442214,0.80,4,3992.50,49.75,1760.71,1947.76,0.00,1.655988,10.674134,251,417,0.000000,0.000674,30861962,18210832,0,0,48986,0,1,1 +1773611456.442053,0.65,4,3992.50,49.79,1759.27,1949.20,0.00,0.000000,0.000000,251,417,0.000000,0.000020,30861962,18210834,0,0,48988,0,1,1 +1773611461.441423,29.98,4,3992.50,55.69,1528.10,2180.27,0.00,3518879786837.645996,3518879786828.625977,11,0,72.516369,0.026060,30869597,18212611,0,0,48991,0,1,1 +1773611466.441066,33.72,4,3992.50,55.90,1519.78,2188.47,0.00,0.000000,0.000000,11,0,121.375608,0.017453,30881966,18213912,0,0,48993,0,1,1 +1773611471.442095,30.61,4,3992.50,55.95,1517.80,2190.56,0.00,0.180236,0.000000,205,0,120.942749,0.025050,30894177,18215808,0,0,48996,0,1,1 +1773611476.441573,30.27,4,3992.50,55.88,1520.52,2187.86,0.00,3518804088546.235840,0.000000,75,0,120.175709,0.022056,30906161,18217448,0,0,48998,0,1,1 +1773611481.441567,29.92,4,3992.50,55.94,1518.10,2190.26,0.00,3518441699118.443359,0.000000,11,0,119.759380,0.020631,30918069,18219061,0,0,49001,0,1,1 +1773611486.441554,30.17,4,3992.50,55.97,1517.07,2191.27,0.00,32612.125517,33064.092437,2266084,2498038,119.364167,0.028639,30930099,18221263,0,0,49003,0,1,1 +1773611491.440209,28.69,4,3992.50,56.32,1503.52,2204.88,0.00,3519383749020.420898,3519383748568.333496,11,0,119.803227,0.038606,30942408,18224234,0,0,49006,0,1,1 +1773611496.441276,28.87,4,3992.50,56.34,1502.82,2205.98,0.00,0.000000,0.000000,11,0,119.537901,0.024523,30954567,18226143,0,0,49008,0,1,1 +1773611501.440727,16.49,4,3992.50,51.01,1711.62,1996.97,0.00,2.012526,0.000195,246,2,111.965692,0.017579,30965946,18227464,0,0,49011,0,1,1 +1773611506.439641,1.10,4,3992.50,50.19,1743.59,1964.99,0.00,32626.815778,33082.009538,2267591,2498536,0.002925,0.001173,30966001,18227501,0,0,49013,0,1,1 +1773611511.442335,0.95,4,3992.50,49.87,1756.08,1952.50,0.00,3516542344387.222656,3516542343934.330566,75,0,0.000000,0.000030,30966001,18227504,0,0,49016,0,1,1 +1773611516.442605,1.05,4,3992.50,49.78,1759.60,1948.98,0.00,1.602550,10.674618,251,417,0.000000,0.000664,30966001,18227510,0,0,49018,0,1,1 +1773611521.442561,0.70,4,3992.50,49.79,1759.14,1949.44,0.00,0.000000,0.000000,251,417,0.000050,0.000092,30966005,18227517,0,0,49021,0,1,1 +1773611526.442087,0.65,4,3992.50,49.80,1758.90,1949.67,0.00,0.000000,0.000000,251,417,0.000000,0.000020,30966005,18227519,0,0,49023,0,1,1 +1773611531.442043,0.90,4,3992.50,50.19,1750.42,1965.10,0.00,32610.811843,33053.912505,2266102,2498200,0.000000,0.000030,30966005,18227522,0,0,49026,0,1,1 +1773611536.438931,0.85,4,3992.50,50.19,1750.42,1965.10,0.00,3520628305484.748535,3520628305032.351074,11,0,0.000000,0.000020,30966005,18227524,0,0,49028,0,1,1 +1773611541.442140,0.65,4,3992.50,50.19,1750.42,1965.10,0.00,32591.269309,33043.210757,2266102,2498233,0.000000,0.000030,30966005,18227527,0,0,49031,0,1,1 +1773611546.441628,0.70,4,3992.50,50.10,1754.02,1961.49,0.00,3518797293506.489258,3518797293063.230957,251,417,0.000025,0.000051,30966007,18227531,0,0,49033,0,1,1 +1773611551.442437,0.65,4,3992.50,50.10,1754.03,1961.49,0.00,0.356095,3517867848996.900879,246,2,0.000117,0.000170,30966017,18227544,0,0,49036,0,1,1 +1773611556.442014,0.90,4,3992.50,50.49,1739.08,1976.95,0.00,32612.931866,33067.259992,2266102,2498260,0.000000,0.000020,30966017,18227546,0,0,49038,0,1,1 +1773611561.439137,0.65,4,3992.50,50.30,1745.99,1969.41,0.00,3520462910477.576172,3520462910025.038086,11,0,0.000000,0.000030,30966017,18227549,0,0,49041,0,1,1 +1773611566.438028,29.52,4,3992.50,55.89,1526.99,2188.39,0.00,0.053527,0.000000,75,0,52.690948,0.025139,30971643,18229250,0,0,49043,0,1,1 +1773611571.439049,33.17,4,3992.50,56.06,1520.28,2195.04,0.00,3517718460908.233398,0.000000,11,0,118.741923,0.043518,30983937,18232604,0,0,49046,0,1,1 +1773611576.440809,29.46,4,3992.50,55.98,1523.53,2191.77,0.00,2.011597,0.000195,246,2,119.522941,0.037208,30996217,18235474,0,0,49048,0,1,1 +1773611581.438585,31.33,4,3992.50,56.25,1512.77,2202.48,0.00,0.000000,0.000000,246,2,118.618484,0.034551,31008473,18238139,0,0,49051,0,1,1 +1773611586.441657,31.37,4,3992.50,56.87,1491.98,2226.69,0.00,3516276448566.136230,10.668444,251,417,119.691466,0.041740,31020691,18241324,0,0,49053,0,1,1 +1773611591.442305,30.59,4,3992.50,56.60,1502.41,2216.18,0.00,32615.941283,33060.521223,2267599,2498935,118.949666,0.034989,31032975,18244047,0,0,49056,0,1,1 +1773611596.442048,30.21,4,3992.50,56.05,1523.89,2194.58,0.00,3518617912887.025391,3518617912442.365234,251,417,119.370785,0.037862,31045278,18247026,0,0,49058,0,1,1 +1773611601.441108,30.50,4,3992.50,56.26,1515.58,2202.82,0.00,3519098260228.793457,3519098260219.592773,205,0,119.387032,0.037151,31057523,18249911,0,0,49061,0,1,1 +1773611606.442327,24.03,4,3992.50,56.23,1516.96,2201.57,0.00,3517580099135.195801,0.000000,11,0,118.935547,0.038196,31069710,18252869,0,0,49063,0,1,1 +1773611611.441733,1.30,4,3992.50,50.74,1731.93,1986.59,0.00,0.000000,0.000000,11,0,19.432222,0.009155,31071767,18253503,0,0,49066,0,1,1 +1773611616.442295,1.10,4,3992.50,50.60,1737.13,1981.06,0.00,0.053510,0.000000,75,0,0.000000,0.000020,31071767,18253505,0,0,49068,0,1,1 +1773611621.441766,0.60,4,3992.50,50.34,1747.11,1971.11,0.00,1.958997,0.000195,246,2,0.000000,0.000030,31071767,18253508,0,0,49071,0,1,1 +1773611626.440835,0.60,4,3992.50,50.34,1747.30,1970.92,0.00,32626.042178,33081.941063,2267614,2499104,0.000000,0.000020,31071767,18253510,0,0,49073,0,1,1 +1773611631.439477,0.85,4,3992.50,50.14,1755.19,1963.03,0.00,3519393518660.665039,3519393518215.761230,251,417,0.000000,0.000030,31071767,18253513,0,0,49076,0,1,1 +1773611636.437559,0.60,4,3992.50,50.14,1755.13,1963.09,0.00,3519787099327.038574,3519787099317.962402,75,0,0.000000,0.000020,31071767,18253515,0,0,49078,0,1,1 +1773611641.438717,0.75,4,3992.50,50.15,1754.91,1963.30,0.00,1.958336,0.000195,246,2,0.000000,0.000030,31071767,18253518,0,0,49081,0,1,1 +1773611646.437484,0.85,4,3992.50,50.13,1756.38,1962.60,0.00,3519304741431.222168,3519304741433.235352,11,0,0.000000,0.000664,31071767,18253524,0,0,49083,0,1,1 +1773611651.442024,0.70,4,3992.50,50.09,1757.64,1961.05,0.00,0.053467,0.000000,75,0,0.000000,0.000030,31071767,18253527,0,0,49086,0,1,1 +1773611656.442405,0.60,4,3992.50,50.09,1757.64,1961.05,0.00,0.000000,0.000000,75,0,0.000113,0.000175,31071776,18253539,0,0,49088,0,1,1 +1773611661.441634,0.90,4,3992.50,50.09,1757.64,1961.05,0.00,32617.399768,33070.385451,2266125,2498747,0.000029,0.000046,31071779,18253544,0,0,49091,0,1,1 +1773611666.437633,0.65,4,3992.50,50.09,1757.64,1961.05,0.00,3521255170584.198730,3521255170130.973633,11,0,0.000000,0.000020,31071779,18253546,0,0,49093,0,1,1 +1773611671.442060,0.75,4,3992.50,49.96,1762.55,1956.14,0.00,0.053468,0.000000,75,0,0.000000,0.000030,31071779,18253549,0,0,49096,0,1,1 +1773611676.440632,25.84,4,3992.50,56.52,1497.65,2212.84,0.00,0.126794,0.000000,205,0,47.684051,0.024514,31076784,18255272,0,0,49098,0,1,1 +1773611681.439595,33.02,4,3992.50,55.96,1519.48,2190.92,0.00,3519167463581.272949,0.000000,75,0,118.790756,0.036384,31088961,18258044,0,0,49101,0,1,1 +1773611686.437542,29.18,4,3992.50,56.28,1506.82,2203.61,0.00,3519882107112.563965,0.000000,11,0,118.813835,0.023357,31101134,18259793,0,0,49103,0,1,1 +1773611691.441731,29.44,4,3992.50,56.11,1513.45,2196.98,0.00,0.180123,0.000000,205,0,118.864323,0.047753,31113272,18263504,0,0,49106,0,1,1 +1773611696.441664,29.49,4,3992.50,55.91,1521.29,2189.19,0.00,32622.305010,33076.599083,2267622,2499393,119.366963,0.031795,31125549,18265935,0,0,49108,0,1,1 +1773611701.437850,29.35,4,3992.50,56.06,1515.72,2194.72,0.00,3521123643114.905762,3521123643113.797852,2266133,2498984,119.254359,0.037503,31137660,18268853,0,0,49111,0,1,1 +1773611706.438441,29.36,4,3992.50,56.33,1504.90,2205.52,0.00,3518021067553.259766,3518021067100.312988,11,0,119.148539,0.033006,31149746,18271418,0,0,49113,0,1,1 +1773611711.440649,29.42,4,3992.50,55.92,1521.07,2189.35,0.00,1.655421,10.670484,251,417,120.112175,0.027993,31162037,18273577,0,0,49116,0,1,1 +1773611716.437639,23.31,4,3992.50,56.13,1513.04,2197.46,0.00,3520556229563.837891,3520556229554.760254,75,0,118.230946,0.038350,31173957,18276555,0,0,49118,0,1,1 +1773611721.438334,1.20,4,3992.50,49.79,1761.17,1949.32,0.00,3517948332268.025391,0.000000,11,0,25.234282,0.013101,31176606,18277481,0,0,49121,0,1,1 +1773611726.439292,0.70,4,3992.50,49.83,1759.45,1951.04,0.00,0.000000,0.000000,11,0,0.000008,0.000028,31176607,18277484,0,0,49123,0,1,1 +1773611731.437572,0.60,4,3992.50,49.84,1759.21,1951.29,0.00,1.656722,10.678869,251,417,0.000000,0.000030,31176607,18277487,0,0,49126,0,1,1 +1773611736.437552,0.85,4,3992.50,50.13,1746.65,1962.54,0.00,0.000000,0.000000,251,417,0.000000,0.000020,31176607,18277489,0,0,49128,0,1,1 +1773611741.437603,0.60,4,3992.50,50.14,1745.83,1963.27,0.00,32620.217520,33065.680895,2267639,2499635,0.000370,0.000635,31176618,18277507,0,0,49131,0,1,1 +1773611746.437645,0.65,4,3992.50,50.14,1745.83,1963.27,0.00,3518408313593.521973,3518408313592.418945,2266150,2499224,0.000000,0.000056,31176618,18277510,0,0,49133,0,1,1 +1773611751.442423,0.60,4,3992.50,50.14,1745.83,1963.27,0.00,3515077736334.164551,3515077735881.212891,11,0,0.000000,0.000030,31176618,18277513,0,0,49136,0,1,1 +1773611756.442045,0.55,4,3992.50,50.14,1745.84,1963.26,0.00,0.180287,0.000000,205,0,0.000000,0.000020,31176618,18277515,0,0,49138,0,1,1 +1773611761.438355,0.75,4,3992.50,50.11,1747.29,1961.81,0.00,1.476969,10.683080,251,417,0.000000,0.000030,31176618,18277518,0,0,49141,0,1,1 +1773611766.442237,0.80,4,3992.50,50.12,1760.89,1962.48,0.00,3515707265002.888184,3515707264993.823242,75,0,0.000157,0.000200,31176630,18277532,0,0,49143,0,1,1 +1773611771.437627,0.70,4,3992.50,50.12,1760.89,1962.48,0.00,0.000000,0.000000,75,0,0.000008,0.000038,31176631,18277536,0,0,49146,0,1,1 +1773611776.437561,1.60,4,3992.50,50.12,1760.89,1962.47,0.00,32613.026262,33066.635482,2266150,2499274,0.002843,0.001979,31176678,18277569,0,0,49148,0,1,1 +1773611781.437638,0.70,4,3992.50,50.14,1760.42,1962.95,0.00,3518383449851.649414,3518383449398.052734,75,0,0.000000,0.000674,31176678,18277576,0,0,49151,0,1,1 +1773611786.442126,1.25,4,3992.50,49.96,1767.34,1956.02,0.00,0.000000,0.000000,75,0,0.001400,0.000749,31176702,18277596,0,0,49153,0,1,1 +1773611791.438055,31.28,4,3992.50,56.12,1526.25,2197.08,0.00,3521304410575.892578,0.000000,11,0,76.972181,0.043582,31184616,18280793,0,0,49156,0,1,1 +1773611796.441661,32.71,4,3992.50,56.54,1506.39,2213.76,0.00,1.654959,10.667502,251,417,121.679113,0.043656,31196920,18284149,0,0,49158,0,1,1 +1773611801.442332,30.24,4,3992.50,56.46,1509.83,2210.37,0.00,0.356105,3517965453223.213379,246,2,120.551260,0.033001,31209183,18286626,0,0,49161,0,1,1 +1773611806.441260,29.65,4,3992.50,56.33,1514.74,2205.45,0.00,3519191713730.875000,3519191713732.887695,11,0,120.188597,0.049551,31221270,18290487,0,0,49163,0,1,1 +1773611811.437629,29.31,4,3992.50,56.39,1512.26,2207.92,0.00,32645.919314,33101.122303,2267644,2499921,120.251394,0.027180,31233484,18292614,0,0,49166,0,1,1 +1773611816.442340,29.36,4,3992.50,56.34,1514.36,2205.89,0.00,3515125639941.355469,3515125639940.248047,2266155,2499517,119.254611,0.023697,31245802,18294410,0,0,49168,0,1,1 +1773611821.441492,29.82,4,3992.50,56.34,1514.25,2205.97,0.00,3519033758767.657715,3519033758313.636230,205,0,119.585370,0.024563,31258139,18296323,0,0,49171,0,1,1 +1773611826.441357,29.95,4,3992.50,56.03,1526.53,2193.68,0.00,3518531936910.944336,0.000000,11,0,119.567616,0.043998,31270312,18299741,0,0,49173,0,1,1 +1773611831.442481,16.70,4,3992.50,51.59,1700.48,2019.80,0.00,0.000000,0.000000,11,0,107.323345,0.036029,31281212,18302517,0,0,49176,0,1,1 +1773611836.441978,1.35,4,3992.50,50.49,1743.45,1976.82,0.00,0.180292,0.000000,205,0,0.002258,0.001069,31281256,18302548,0,0,49178,0,1,1 +1773611841.441840,0.75,4,3992.50,50.06,1760.31,1959.96,0.00,32613.511161,33067.711194,2266168,2499672,0.000000,0.000030,31281256,18302551,0,0,49181,0,1,1 +1773611846.442269,0.75,4,3992.50,50.19,1755.12,1965.14,0.00,3518134960033.817871,3518134959579.849121,11,0,0.000000,0.000664,31281256,18302557,0,0,49183,0,1,1 +1773611851.437714,0.65,4,3992.50,50.19,1755.32,1964.95,0.00,2.014140,0.000195,246,2,0.000000,0.000030,31281256,18302560,0,0,49186,0,1,1 +1773611856.437557,1.05,4,3992.50,50.02,1756.70,1958.42,0.00,32611.800836,33067.900866,2266168,2499708,0.000000,0.000020,31281256,18302562,0,0,49188,0,1,1 +1773611861.437570,0.65,4,3992.50,50.03,1754.71,1958.65,0.00,9.561500,10.701927,2267657,2500157,0.000000,0.000030,31281256,18302565,0,0,49191,0,1,1 +1773611866.437572,0.65,4,3992.50,50.03,1754.72,1958.65,0.00,3518435281937.303711,3518435281480.077637,246,2,0.000000,0.000020,31281256,18302567,0,0,49193,0,1,1 +1773611871.441868,0.70,4,3992.50,50.03,1754.72,1958.65,0.00,3515416970030.319336,3515416970032.149902,205,0,0.000000,0.000030,31281256,18302570,0,0,49196,0,1,1 +1773611876.441560,0.65,4,3992.50,49.84,1761.89,1951.47,0.00,32624.184877,33079.712776,2267657,2500172,0.000025,0.000051,31281258,18302574,0,0,49198,0,1,1 +1773611881.441708,0.55,4,3992.50,49.84,1761.89,1951.47,0.00,3518332764810.565918,3518332764355.079102,205,0,0.000117,0.000170,31281268,18302587,0,0,49201,0,1,1 +1773611886.441569,1.50,4,3992.50,49.99,1756.31,1957.06,0.00,32613.514899,33067.952491,2266168,2499772,0.000000,0.000020,31281268,18302589,0,0,49203,0,1,1 +1773611891.442420,0.65,4,3992.50,49.86,1761.08,1952.28,0.00,3517839147133.288574,3517839146679.067383,75,0,0.000000,0.000030,31281268,18302592,0,0,49206,0,1,1 +1773611896.442278,0.65,4,3992.50,49.86,1761.38,1951.98,0.00,1.958844,0.000195,246,2,0.000000,0.000020,31281268,18302594,0,0,49208,0,1,1 +1773611901.442126,28.87,4,3992.50,56.24,1511.29,2202.03,0.00,3518544608233.100098,3518544608235.112793,11,0,65.897777,0.027240,31288149,18304464,0,0,49211,0,1,1 +1773611906.440880,32.75,4,3992.50,56.33,1507.83,2205.42,0.00,0.053529,0.000000,75,0,122.809719,0.043110,31300874,18307720,0,0,49213,0,1,1 +1773611911.441921,29.92,4,3992.50,56.42,1504.29,2209.01,0.00,1.958381,0.000195,246,2,121.367273,0.082086,31313748,18314024,0,0,49216,0,1,1 +1773611916.441698,30.36,4,3992.50,56.24,1511.32,2201.91,0.00,3518593649073.418945,3518593649075.431641,11,0,120.187503,0.063550,31326341,18318967,0,0,49218,0,1,1 +1773611921.441380,30.88,4,3992.50,56.35,1506.95,2206.28,0.00,0.000000,0.000000,11,0,120.195863,0.080273,31339088,18325221,0,0,49221,0,1,1 +1773611926.441556,31.15,4,3992.50,56.26,1510.63,2202.59,0.00,0.053514,0.000000,75,0,119.984206,0.085621,31351862,18331867,0,0,49223,0,1,1 +1773611931.442108,31.17,4,3992.50,56.28,1509.82,2203.45,0.00,1.602460,10.674016,251,417,118.974643,0.080089,31364548,18338136,0,0,49226,0,1,1 +1773611936.441534,31.25,4,3992.50,55.98,1521.66,2191.55,0.00,0.000000,0.000000,251,417,119.603320,0.081922,31377325,18344510,0,0,49228,0,1,1 +1773611941.441856,18.47,4,3992.50,56.02,1519.86,2193.45,0.00,32609.037909,33054.633783,2266174,2500075,116.577177,0.079898,31389762,18350707,0,0,49231,0,1,1 +1773611946.442479,2.31,4,3992.50,50.02,1766.87,1958.42,0.00,0.140607,0.152032,2266188,2500124,0.003243,0.001684,31389830,18350766,0,0,49233,0,1,1 +1773611951.441982,0.75,4,3992.50,50.04,1766.22,1959.14,0.00,3518786752251.437012,3518786751796.736816,11,0,0.000000,0.000030,31389830,18350769,0,0,49236,0,1,1 +1773611956.442268,0.65,4,3992.50,50.06,1765.48,1959.88,0.00,2.012190,0.000195,246,2,0.000000,0.000053,31389830,18350772,0,0,49238,0,1,1 +1773611961.441167,1.00,4,3992.50,50.06,1765.48,1959.88,0.00,32627.670992,33085.615380,2267677,2500612,0.000000,0.000030,31389830,18350775,0,0,49241,0,1,1 +1773611966.437635,0.60,4,3992.50,50.06,1765.49,1959.88,0.00,3520924252228.986328,3520924251772.779297,75,0,0.000000,0.000020,31389830,18350777,0,0,49243,0,1,1 +1773611971.437644,0.70,4,3992.50,50.06,1765.49,1959.87,0.00,3518431068517.245605,0.000000,11,0,0.000000,0.000030,31389830,18350780,0,0,49246,0,1,1 +1773611976.437641,0.70,4,3992.50,50.06,1765.50,1959.86,0.00,0.180274,0.000000,205,0,0.000000,0.000664,31389830,18350786,0,0,49248,0,1,1 +1773611981.437655,0.80,4,3992.50,50.30,1746.52,1969.40,0.00,32622.226225,33078.397575,2267678,2500648,0.000000,0.000030,31389830,18350789,0,0,49251,0,1,1 +1773611986.441931,1.05,4,3992.50,50.30,1746.52,1969.39,0.00,3515431112835.872559,3515431112380.270020,11,0,0.000025,0.000051,31389832,18350793,0,0,49253,0,1,1 +1773611991.439401,0.75,4,3992.50,50.30,1746.53,1969.39,0.00,0.180365,0.000000,205,0,0.000117,0.000170,31389842,18350806,0,0,49256,0,1,1 +1773611996.441566,0.75,4,3992.50,50.30,1746.74,1969.18,0.00,32598.645102,33053.539765,2266189,2500264,0.000512,0.001106,31389856,18350830,0,0,49258,0,1,1 +1773612001.441731,1.41,4,3992.50,50.52,1737.80,1977.83,0.00,3518320858471.687988,3518320858016.791504,11,0,0.000000,0.000030,31389856,18350833,0,0,49261,0,1,1 +1773612006.442346,1.00,4,3992.50,50.71,1730.15,1985.42,0.00,32621.410548,33074.594059,2271384,2500799,0.000000,0.000020,31389856,18350835,0,0,49263,0,1,1 +1773612011.441618,28.00,4,3992.50,56.52,1502.46,2212.70,0.00,3518949493076.574707,3518949492623.269531,11,0,55.288940,0.030319,31395653,18353020,0,0,49266,0,1,1 +1773612016.440545,32.98,4,3992.50,56.77,1492.36,2222.71,0.00,0.000000,0.000000,11,0,122.793760,0.049850,31407986,18356865,0,0,49268,0,1,1 +1773612021.439780,29.89,4,3992.50,56.46,1504.50,2210.61,0.00,1.656406,10.676829,251,417,121.587457,0.047562,31420324,18360453,0,0,49271,0,1,1 +1773612026.442358,28.74,4,3992.50,56.49,1503.44,2211.71,0.00,0.355969,3516623654404.335449,246,2,120.101671,0.046726,31432529,18364138,0,0,49273,0,1,1 +1773612031.441739,29.11,4,3992.50,56.54,1501.43,2213.70,0.00,0.000000,0.000000,246,2,120.177267,0.049860,31444593,18368033,0,0,49276,0,1,1 +1773612036.442196,29.89,4,3992.50,56.40,1506.79,2208.34,0.00,32610.890174,33065.118300,2269901,2500576,119.551646,0.048943,31456675,18371873,0,0,49278,0,1,1 +1773612041.442402,29.52,4,3992.50,56.63,1497.92,2217.24,0.00,3518292120601.531250,3518292120149.238770,75,0,119.357622,0.049183,31468792,18375663,0,0,49281,0,1,1 +1773612046.437731,30.09,4,3992.50,56.33,1509.55,2205.52,0.00,1.604135,10.685177,251,417,119.674964,0.047816,31480867,18379372,0,0,49283,0,1,1 +1773612051.438565,19.63,4,3992.50,56.31,1510.49,2204.70,0.00,0.000000,0.000000,251,417,119.341913,0.053631,31492891,18383585,0,0,49286,0,1,1 +1773612056.441972,2.10,4,3992.50,49.94,1760.07,1955.12,0.00,32592.207816,33035.284326,2269914,2500691,7.608511,0.004778,31493742,18383881,0,0,49288,0,1,1 +1773612061.439255,0.65,4,3992.50,50.01,1757.14,1958.05,0.00,3520349941510.167969,3520349941057.524414,11,0,0.000000,0.000030,31493742,18383884,0,0,49291,0,1,1 +1773612066.437636,1.05,4,3992.50,50.20,1766.14,1965.62,0.00,1.656689,10.678654,251,417,0.000031,0.000045,31493744,18383888,0,0,49293,0,1,1 +1773612071.440015,0.70,4,3992.50,50.21,1765.42,1965.85,0.00,0.355983,3516764255981.840820,246,2,0.000000,0.000030,31493744,18383891,0,0,49296,0,1,1 +1773612076.441921,1.20,4,3992.50,50.22,1765.21,1966.06,0.00,3517096571857.850586,3517096571859.808594,75,0,0.002842,0.001950,31493791,18383921,0,0,49298,0,1,1 +1773612081.441637,0.75,4,3992.50,50.22,1765.20,1966.07,0.00,32627.434126,33081.156785,2271403,2501194,0.000008,0.000038,31493792,18383925,0,0,49301,0,1,1 +1773612086.437731,0.70,4,3992.50,50.22,1765.21,1966.06,0.00,3521187359505.184082,3521187359049.172852,246,2,0.000031,0.000045,31493794,18383929,0,0,49303,0,1,1 +1773612091.438448,0.75,4,3992.50,50.22,1765.21,1966.06,0.00,0.000000,0.000000,246,2,0.000000,0.000030,31493794,18383932,0,0,49306,0,1,1 +1773612096.437560,1.00,4,3992.50,50.57,1750.74,1980.11,0.00,3519062568117.729980,3519062568119.743164,11,0,0.000000,0.000020,31493794,18383934,0,0,49308,0,1,1 +1773612101.441776,0.75,4,3992.50,50.54,1751.97,1978.88,0.00,0.180122,0.000000,205,0,0.000075,0.000123,31493800,18383943,0,0,49311,0,1,1 +1773612106.437582,0.70,4,3992.50,50.49,1753.89,1976.96,0.00,3521391319555.169922,0.000000,75,0,0.000000,0.000664,31493800,18383949,0,0,49313,0,1,1 +1773612111.437575,0.75,4,3992.50,50.49,1753.89,1976.96,0.00,1.602639,10.675208,251,417,0.000000,0.000030,31493800,18383952,0,0,49316,0,1,1 +1773612116.437563,0.65,4,3992.50,50.49,1753.89,1976.97,0.00,0.000000,0.000000,251,417,0.000000,0.000020,31493800,18383954,0,0,49318,0,1,1 +1773612121.438327,23.25,4,3992.50,56.54,1516.94,2213.82,0.00,32619.042117,33063.782923,2271410,2501333,46.069070,0.033567,31498907,18386332,0,0,49321,0,1,1 +1773612126.439960,33.75,4,3992.50,56.75,1506.15,2221.96,0.00,3517287722409.094238,3517287721955.415039,11,0,122.147524,0.055134,31511559,18390538,0,0,49323,0,1,1 +1773612131.440653,29.06,4,3992.50,56.95,1497.89,2229.76,0.00,2.012026,0.000195,246,2,122.019703,0.018896,31523559,18391913,0,0,49326,0,1,1 +1773612136.437682,28.83,4,3992.50,56.70,1507.71,2219.92,0.00,0.000000,0.000000,246,2,120.225256,0.021448,31535394,18393568,0,0,49328,0,1,1 +1773612141.437548,29.18,4,3992.50,56.58,1512.65,2215.04,0.00,32624.537765,33080.542055,2271410,2501487,119.963327,0.023887,31547202,18395404,0,0,49331,0,1,1 +1773612146.437546,28.88,4,3992.50,56.87,1500.91,2226.75,0.00,3518438381676.167969,3518438381231.207031,251,417,120.019268,0.034720,31559310,18398080,0,0,49333,0,1,1 +1773612151.441563,29.39,4,3992.50,56.88,1500.81,2226.82,0.00,32597.832966,33042.610899,2271410,2501536,119.076587,0.034683,31571135,18400777,0,0,49336,0,1,1 +1773612156.439468,29.36,4,3992.50,56.67,1509.04,2218.64,0.00,3519912084893.470703,3519912084437.112793,246,2,119.563452,0.032757,31582640,18403340,0,0,49338,0,1,1 +1773612161.437562,22.18,4,3992.50,56.76,1502.64,2222.18,0.00,3519778709180.229004,3519778709182.187988,75,0,119.755373,0.034888,31594467,18406056,0,0,49341,0,1,1 +1773612166.437658,1.65,4,3992.50,51.39,1712.87,2011.94,0.00,1.958751,0.000195,246,2,16.602280,0.006465,31596174,18406498,0,0,49343,0,1,1 +1773612171.437569,0.80,4,3992.50,50.88,1732.87,1991.94,0.00,32624.385604,33080.598067,2271421,2501633,0.000619,0.000282,31596186,18406508,0,0,49346,0,1,1 +1773612176.437559,0.70,4,3992.50,50.64,1742.00,1982.82,0.00,3518443817918.505859,3518443817917.398438,2269932,2501219,0.000000,0.000503,31596186,18406513,0,0,49348,0,1,1 +1773612181.437565,0.70,4,3992.50,50.53,1746.61,1978.22,0.00,3518432993553.805176,3518432993100.720703,11,0,0.000000,0.000191,31596186,18406517,0,0,49351,0,1,1 +1773612186.438607,0.65,4,3992.50,50.53,1746.36,1978.46,0.00,0.000000,0.000000,11,0,0.000000,0.000020,31596186,18406519,0,0,49353,0,1,1 +1773612191.441540,0.95,4,3992.50,50.49,1748.66,1976.96,0.00,1.655182,10.668938,251,417,0.000000,0.000030,31596186,18406522,0,0,49356,0,1,1 +1773612196.442317,0.80,4,3992.50,50.51,1747.92,1977.70,0.00,32619.085806,33064.317064,2271421,2501708,0.000000,0.000020,31596186,18406524,0,0,49358,0,1,1 +1773612201.437563,0.70,4,3992.50,50.51,1747.92,1977.70,0.00,3521785704192.127930,3521785703737.322754,75,0,0.000000,0.000030,31596186,18406527,0,0,49361,0,1,1 +1773612206.437635,0.70,4,3992.50,50.52,1747.69,1977.93,0.00,3518386673591.676270,0.000000,11,0,0.000000,0.000020,31596186,18406529,0,0,49363,0,1,1 +1773612211.441299,0.65,4,3992.50,50.52,1747.69,1977.93,0.00,32601.920780,33056.012206,2271421,2501722,0.000101,0.000154,31596194,18406540,0,0,49366,0,1,1 +1773612216.441888,0.95,4,3992.50,50.91,1732.36,1993.40,0.00,3518023351170.768555,3518023350716.217285,205,0,0.000041,0.000067,31596198,18406546,0,0,49368,0,1,1 +1773612221.442554,0.60,4,3992.50,50.67,1741.94,1983.67,0.00,3517968544409.939453,0.000000,11,0,0.000000,0.000030,31596198,18406549,0,0,49371,0,1,1 +1773612226.437560,0.75,4,3992.50,50.68,1741.20,1984.41,0.00,32648.859262,33102.673625,2269932,2501342,0.000000,0.000020,31596198,18406551,0,0,49373,0,1,1 +1773612231.438810,21.35,4,3992.50,56.80,1501.90,2223.66,0.00,3517557787523.631836,3517557787070.330566,75,0,33.222516,0.019430,31599674,18407829,0,0,49376,0,1,1 +1773612236.439203,33.20,4,3992.50,57.04,1492.25,2233.20,0.00,3518161219689.945801,0.000000,11,0,119.977179,0.022349,31611968,18409487,0,0,49378,0,1,1 +1773612241.441552,28.97,4,3992.50,57.22,1485.27,2240.21,0.00,0.000000,0.000000,11,0,118.710019,0.030687,31623981,18411802,0,0,49381,0,1,1 +1773612246.440089,28.85,4,3992.50,56.90,1497.91,2227.57,0.00,0.053531,0.000000,75,0,119.605366,0.045592,31636074,18415349,0,0,49383,0,1,1 +1773612251.437618,29.87,4,3992.50,56.75,1504.05,2221.81,0.00,0.126820,0.000000,205,0,118.839985,0.073176,31648462,18421044,0,0,49386,0,1,1 +1773612256.438570,28.77,4,3992.50,56.93,1496.78,2229.11,0.00,1.831683,0.000195,246,2,119.564577,0.089648,31661008,18428091,0,0,49388,0,1,1 +1773612261.441662,29.72,4,3992.50,56.63,1508.60,2217.22,0.00,3516262819465.875977,3516262819467.887207,11,0,119.110527,0.080597,31673491,18434377,0,0,49391,0,1,1 +1773612266.437574,29.48,4,3992.50,56.56,1511.55,2214.33,0.00,0.000000,0.000000,11,0,119.289223,0.100373,31686040,18442201,0,0,49393,0,1,1 +1773612271.441560,26.33,4,3992.50,56.75,1504.15,2221.81,0.00,1.654833,10.666691,251,417,119.895532,0.096460,31698761,18449786,0,0,49396,0,1,1 +1773612276.442282,1.91,4,3992.50,51.61,1705.70,2020.78,0.00,3517929345825.930664,3517929345816.859863,75,0,37.255502,0.025263,31702711,18451663,0,0,49398,0,1,1 +1773612281.442563,0.70,4,3992.50,51.19,1721.95,2004.04,0.00,32624.101675,33078.984451,2271440,2502115,0.000000,0.000030,31702711,18451666,0,0,49401,0,1,1 +1773612286.437567,0.70,4,3992.50,50.93,1732.12,1993.88,0.00,3521956117580.357910,3521956117125.048340,11,0,0.000000,0.000020,31702711,18451668,0,0,49403,0,1,1 +1773612291.437650,0.80,4,3992.50,50.92,1732.44,1993.55,0.00,32615.884126,33069.658934,2269951,2501719,0.000000,0.000030,31702711,18451671,0,0,49406,0,1,1 +1773612296.437558,1.05,4,3992.50,50.92,1732.44,1993.55,0.00,0.000000,0.006250,2269951,2501724,0.000512,0.001107,31702725,18451695,0,0,49408,0,1,1 +1773612301.441579,0.65,4,3992.50,50.92,1732.44,1993.55,0.00,3515610368188.073730,3515610367734.649902,11,0,0.000000,0.000030,31702725,18451698,0,0,49411,0,1,1 +1773612306.437643,0.95,4,3992.50,50.76,1726.39,1987.46,0.00,32642.119618,33096.324328,2269951,2501748,0.000000,0.000020,31702725,18451700,0,0,49413,0,1,1 +1773612311.440109,0.65,4,3992.50,50.71,1728.57,1985.29,0.00,3516702555697.772461,3516702555244.148926,11,0,0.000000,0.000673,31702725,18451707,0,0,49416,0,1,1 +1773612316.437644,0.70,4,3992.50,50.71,1728.32,1985.54,0.00,1.656969,10.680460,251,417,0.000000,0.000020,31702725,18451709,0,0,49418,0,1,1 +1773612321.442421,0.70,4,3992.50,50.71,1728.32,1985.54,0.00,3515079144104.891602,3515079144095.701172,205,0,0.000330,0.000717,31702742,18451733,0,0,49421,0,1,1 +1773612326.440941,1.00,4,3992.50,50.52,1735.98,1977.88,0.00,3519478835951.048340,0.000000,75,0,0.000008,0.000028,31702743,18451736,0,0,49423,0,1,1 +1773612331.441687,0.75,4,3992.50,50.52,1735.75,1978.11,0.00,32621.074774,33076.183979,2271442,2502250,0.000000,0.000030,31702743,18451739,0,0,49426,0,1,1 +1773612336.442028,0.90,4,3992.50,50.54,1735.54,1978.80,0.00,3518197114190.052734,3518197113732.948242,246,2,0.000000,0.000020,31702743,18451741,0,0,49428,0,1,1 +1773612341.442261,20.56,4,3992.50,56.56,1499.17,2214.58,0.00,3518273603529.439453,3518273603531.397949,75,0,24.838422,0.018090,31705407,18452900,0,0,49431,0,1,1 +1773612346.442163,33.62,4,3992.50,56.70,1493.68,2220.04,0.00,1.602668,10.675405,251,417,119.167250,0.024444,31717542,18454735,0,0,49433,0,1,1 +1773612351.442320,28.77,4,3992.50,56.49,1501.91,2211.78,0.00,32623.367737,33069.545393,2271450,2502420,119.159730,0.018943,31729692,18456183,0,0,49436,0,1,1 +1773612356.441535,28.85,4,3992.50,56.59,1498.09,2215.68,0.00,0.000000,0.008302,2271450,2502434,118.982056,0.017613,31741855,18457516,0,0,49438,0,1,1 +1773612361.441872,29.29,4,3992.50,56.70,1493.74,2220.00,0.00,3518199459259.725586,3518199458804.537598,11,0,119.356080,0.016764,31754060,18458791,0,0,49441,0,1,1 +1773612366.442438,28.71,4,3992.50,56.82,1487.34,2224.65,0.00,2.012077,0.000195,246,2,119.153953,0.033007,31766216,18461367,0,0,49443,0,1,1 +1773612371.437598,29.16,4,3992.50,56.31,1507.27,2204.75,0.00,0.000000,0.000000,246,2,119.291335,0.053213,31778445,18465467,0,0,49446,0,1,1 +1773612376.437592,28.77,4,3992.50,56.57,1497.13,2214.92,0.00,3518441294495.218750,3518441294497.230957,11,0,119.176933,0.059894,31790709,18470107,0,0,49448,0,1,1 +1773612381.437596,28.82,4,3992.50,56.62,1495.24,2216.82,0.00,1.656151,10.675187,251,417,119.186645,0.082808,31803270,18476514,0,0,49451,0,1,1 +1773612386.441876,1.85,4,3992.50,51.40,1699.63,2012.43,0.00,32587.071435,33031.982748,2269972,2502151,47.236797,0.032778,31808273,18478983,0,0,49453,0,1,1 +1773612391.437665,1.05,4,3992.50,50.65,1728.91,1983.16,0.00,3521402958182.060547,3521402957736.393066,251,417,0.000000,0.000030,31808273,18478986,0,0,49456,0,1,1 +1773612396.442231,1.20,4,3992.50,50.63,1727.61,1982.19,0.00,32585.212729,33030.204234,2269972,2502223,0.000000,0.000020,31808273,18478988,0,0,49458,0,1,1 +1773612401.437656,0.65,4,3992.50,50.54,1731.20,1978.61,0.00,3521659213420.462402,3521659212963.615234,246,2,0.000000,0.000030,31808273,18478991,0,0,49461,0,1,1 +1773612406.441841,0.65,4,3992.50,50.54,1731.14,1978.67,0.00,3515495145134.505859,10.666074,251,417,0.000000,0.000020,31808273,18478993,0,0,49463,0,1,1 +1773612411.442280,0.70,4,3992.50,50.54,1731.14,1978.67,0.00,0.356121,3518128198303.980957,246,2,0.000000,0.000030,31808273,18478996,0,0,49466,0,1,1 +1773612416.437657,0.70,4,3992.50,50.54,1731.14,1978.67,0.00,3521693505451.051758,3521693505453.065918,11,0,0.000000,0.000020,31808273,18478998,0,0,49468,0,1,1 +1773612421.441705,0.80,4,3992.50,50.54,1731.15,1978.66,0.00,32590.234368,33044.463138,2269972,2502285,0.000050,0.000092,31808277,18479005,0,0,49471,0,1,1 +1773612426.440560,0.85,4,3992.50,50.67,1723.85,1983.96,0.00,3519243591227.795410,3519243590773.040527,75,0,0.000016,0.000036,31808279,18479009,0,0,49473,0,1,1 +1773612431.438662,0.60,4,3992.50,50.68,1723.64,1984.21,0.00,32628.951752,33083.814290,2269972,2502315,0.000126,0.000185,31808289,18479022,0,0,49476,0,1,1 +1773612436.442194,0.80,4,3992.50,50.69,1723.16,1984.68,0.00,3515953336657.419434,3515953336203.103516,11,0,0.000000,0.000020,31808289,18479024,0,0,49478,0,1,1 +1773612441.442309,0.60,4,3992.50,50.69,1723.16,1984.68,0.00,0.000000,0.000000,11,0,0.000000,0.000030,31808289,18479027,0,0,49481,0,1,1 +1773612446.441684,0.65,4,3992.50,50.69,1723.15,1984.70,0.00,32630.265608,33086.085393,2271461,2502749,0.000000,0.000664,31808289,18479033,0,0,49483,0,1,1 +1773612451.439922,15.20,4,3992.50,56.31,1503.09,2204.66,0.00,3519677218375.560059,3519677217919.637207,11,0,17.035321,0.014971,31810204,18479986,0,0,49486,0,1,1 +1773612456.441644,35.65,4,3992.50,56.19,1507.68,2200.09,0.00,1.655582,10.671521,251,417,122.928460,0.028978,31822810,18482175,0,0,49488,0,1,1 +1773612461.437561,29.72,4,3992.50,56.14,1509.61,2198.16,0.00,0.356443,3521312979967.490234,246,2,121.465138,0.019047,31835245,18483661,0,0,49491,0,1,1 +1773612466.437568,29.75,4,3992.50,56.20,1507.22,2200.51,0.00,3518431900271.316895,3518431900273.148926,205,0,120.165118,0.024598,31847553,18485576,0,0,49493,0,1,1 +1773612471.437573,29.06,4,3992.50,56.40,1499.77,2207.99,0.00,3518433797409.609863,0.000000,11,0,120.166718,0.024114,31859916,18487406,0,0,49496,0,1,1 +1773612476.442114,29.03,4,3992.50,56.29,1503.88,2203.88,0.00,2.010479,0.000195,246,2,120.056473,0.021482,31872227,18489057,0,0,49498,0,1,1 +1773612481.437925,29.08,4,3992.50,56.19,1507.93,2199.82,0.00,32651.602870,33110.223956,2271474,2503069,119.061452,0.039698,31884245,18492151,0,0,49501,0,1,1 +1773612486.442186,30.03,4,3992.50,56.33,1500.61,2205.43,0.00,3515441420432.421387,3515441419976.584961,11,0,119.462180,0.045693,31896385,18495698,0,0,49503,0,1,1 +1773612491.440531,28.77,4,3992.50,56.19,1505.93,2200.02,0.00,0.053533,0.000000,75,0,119.803194,0.048993,31908487,18499503,0,0,49506,0,1,1 +1773612496.441508,1.65,4,3992.50,50.96,1710.89,1995.04,0.00,0.000000,0.000000,75,0,45.256080,0.017440,31913126,18500785,0,0,49508,0,1,1 +1773612501.441699,0.80,4,3992.50,50.38,1733.30,1972.63,0.00,3518303181234.439453,0.000000,11,0,0.000000,0.000030,31913126,18500788,0,0,49511,0,1,1 +1773612506.438323,0.65,4,3992.50,50.16,1742.23,1963.71,0.00,0.053552,0.000000,75,0,0.000000,0.000020,31913126,18500790,0,0,49513,0,1,1 +1773612511.440686,0.80,4,3992.50,49.99,1748.87,1957.07,0.00,32601.400725,33056.396456,2269997,2502786,0.000000,0.000673,31913126,18500797,0,0,49516,0,1,1 +1773612516.438021,1.05,4,3992.50,50.11,1748.16,1961.89,0.00,3520312901069.103516,3520312900613.703613,11,0,0.000000,0.000020,31913126,18500799,0,0,49518,0,1,1 +1773612521.442012,0.60,4,3992.50,50.06,1750.12,1959.93,0.00,0.053473,0.000000,75,0,0.000000,0.000030,31913126,18500802,0,0,49521,0,1,1 +1773612526.437573,1.05,4,3992.50,50.06,1750.12,1959.93,0.00,1.960530,0.000195,246,2,0.000000,0.000020,31913126,18500804,0,0,49523,0,1,1 +1773612531.437656,0.85,4,3992.50,50.06,1750.12,1959.93,0.00,3518378543437.354492,3518378543439.367188,11,0,0.000000,0.000030,31913126,18500807,0,0,49526,0,1,1 +1773612536.442076,0.60,4,3992.50,49.87,1757.52,1952.54,0.00,1.654689,10.665766,251,417,0.000000,0.000020,31913126,18500809,0,0,49528,0,1,1 +1773612541.439074,1.10,4,3992.50,49.80,1760.46,1949.59,0.00,32634.802619,33081.429332,2269997,2502866,0.000126,0.000185,31913136,18500822,0,0,49531,0,1,1 +1773612546.437892,1.00,4,3992.50,50.24,1733.59,1967.02,0.00,3519268928733.214355,3519268928275.716797,246,2,0.000016,0.000036,31913138,18500826,0,0,49533,0,1,1 +1773612551.437649,0.70,4,3992.50,50.24,1733.50,1967.07,0.00,3518607819137.122070,3518607819139.134277,11,0,0.000000,0.000030,31913138,18500829,0,0,49536,0,1,1 +1773612556.438657,2.06,4,3992.50,50.23,1734.09,1966.48,0.00,0.000000,0.000000,11,0,0.000000,0.000020,31913138,18500831,0,0,49538,0,1,1 +1773612561.442733,21.29,4,3992.50,56.45,1490.50,2209.97,0.00,0.053472,0.000000,75,0,28.621339,0.019683,31916236,18502130,0,0,49541,0,1,1 +1773612566.441725,34.91,4,3992.50,56.36,1493.75,2206.75,0.00,1.602960,10.677347,251,417,118.191150,0.019987,31928542,18503575,0,0,49543,0,1,1 +1773612571.442227,30.75,4,3992.50,56.50,1488.36,2212.21,0.00,3518080151187.403809,3518080151178.205566,205,0,119.155346,0.024017,31940829,18505391,0,0,49546,0,1,1 +1773612576.441858,30.54,4,3992.50,56.59,1484.83,2215.65,0.00,3518700764496.461426,0.000000,11,0,119.184744,0.042516,31953266,18508590,0,0,49548,0,1,1 +1773612581.437690,29.34,4,3992.50,56.29,1488.31,2204.00,0.00,32653.662888,33110.779269,2271492,2503520,119.269957,0.041070,31965481,18511759,0,0,49551,0,1,1 +1773612586.437544,28.45,4,3992.50,56.39,1484.47,2207.68,0.00,3518539805731.529785,3518539805272.768555,246,2,119.181202,0.063214,31977817,18516703,0,0,49553,0,1,1 +1773612591.441645,28.47,4,3992.50,56.21,1491.48,2200.78,0.00,3515553709541.976562,3515553709543.987305,11,0,119.887861,0.083170,31990308,18523162,0,0,49556,0,1,1 +1773612596.438468,28.82,4,3992.50,56.22,1491.02,2201.30,0.00,0.180388,0.000000,205,0,118.580017,0.062476,32002743,18527928,0,0,49558,0,1,1 +1773612601.442233,28.00,4,3992.50,56.56,1477.85,2214.64,0.00,32592.203139,33047.807176,2270018,2503185,119.959606,0.045747,32015196,18531489,0,0,49561,0,1,1 +1773612606.442376,2.21,4,3992.50,51.44,1678.39,2013.93,0.00,3518335917856.906250,3518335917399.140137,246,2,43.461092,0.009513,32019664,18532190,0,0,49563,0,1,1 +1773612611.439725,2.16,4,3992.50,51.13,1690.37,2001.82,0.00,3520304191648.369141,3520304191650.329102,75,0,0.001529,0.000703,32019693,18532212,0,0,49566,0,1,1 +1773612616.438926,0.75,4,3992.50,50.67,1708.29,1983.93,0.00,3518999601323.431641,0.000000,11,0,0.000000,0.000020,32019693,18532214,0,0,49568,0,1,1 +1773612621.442262,0.65,4,3992.50,50.61,1710.69,1981.53,0.00,0.053480,0.000000,75,0,0.000205,0.000562,32019700,18532228,0,0,49571,0,1,1 +1773612626.442581,0.65,4,3992.50,50.63,1709.79,1982.43,0.00,3518212270574.342285,0.000000,11,0,0.000008,0.000028,32019701,18532231,0,0,49573,0,1,1 +1773612631.440027,0.65,4,3992.50,50.64,1709.58,1982.64,0.00,0.180366,0.000000,205,0,0.000000,0.000030,32019701,18532234,0,0,49576,0,1,1 +1773612636.442423,0.85,4,3992.50,50.75,1705.22,1986.99,0.00,0.000000,0.000000,205,0,0.000000,0.000020,32019701,18532236,0,0,49578,0,1,1 +1773612641.442491,0.70,4,3992.50,50.70,1707.22,1985.00,0.00,0.000000,0.000000,205,0,0.000370,0.001279,32019712,18532258,0,0,49581,0,1,1 +1773612646.442171,0.70,4,3992.50,50.70,1707.23,1984.99,0.00,0.000000,0.000000,205,0,0.000000,0.000020,32019712,18532260,0,0,49583,0,1,1 +1773612651.442125,0.70,4,3992.50,50.70,1707.23,1984.99,0.00,1.832048,0.000195,246,2,0.000076,0.000123,32019718,18532269,0,0,49586,0,1,1 +1773612656.442014,0.65,4,3992.50,50.72,1706.24,1985.97,0.00,3518514816762.500977,3518514816764.513184,11,0,0.000050,0.000082,32019722,18532275,0,0,49588,0,1,1 +1773612661.438422,1.81,4,3992.50,50.69,1707.53,1984.68,0.00,0.180403,0.000000,205,0,0.000000,0.000030,32019722,18532278,0,0,49591,0,1,1 +1773612666.442172,0.90,4,3992.50,50.87,1707.21,1991.81,0.00,3515800777383.435059,0.000000,11,0,0.000031,0.000045,32019724,18532282,0,0,49593,0,1,1 +1773612671.441675,17.56,4,3992.50,56.90,1471.13,2227.86,0.00,32620.475583,33076.528892,2270043,2503523,18.832742,0.014230,32021836,18533218,0,0,49596,0,1,1 +1773612676.437560,34.39,4,3992.50,57.19,1459.93,2239.01,0.00,9.569400,10.769411,2271532,2504037,118.463910,0.031187,32033943,18535454,0,0,49598,0,1,1 +1773612681.441702,28.87,4,3992.50,56.74,1477.50,2221.37,0.00,0.000000,0.008782,2271532,2504052,119.466010,0.026209,32046163,18537452,0,0,49601,0,1,1 +1773612686.441718,28.93,4,3992.50,56.61,1482.50,2216.41,0.00,3518426208620.238281,3518426208161.011230,246,2,118.764336,0.015937,32058461,18538672,0,0,49603,0,1,1 +1773612691.440435,29.13,4,3992.50,56.62,1482.07,2216.87,0.00,3519339880847.886230,3519339880849.899414,11,0,119.601020,0.034618,32070887,18541363,0,0,49606,0,1,1 +1773612696.437536,29.23,4,3992.50,56.71,1478.59,2220.33,0.00,0.053547,0.000000,75,0,118.840585,0.035103,32083140,18544045,0,0,49608,0,1,1 +1773612701.442138,29.46,4,3992.50,56.57,1488.43,2214.97,0.00,1.601163,10.665381,251,417,119.656721,0.024274,32095468,18545888,0,0,49611,0,1,1 +1773612706.438457,29.42,4,3992.50,56.55,1489.11,2214.17,0.00,3521029342797.893066,3521029342788.687012,205,0,118.649715,0.016511,32107540,18547121,0,0,49613,0,1,1 +1773612711.437543,29.04,4,3992.50,56.98,1472.34,2231.04,0.00,32623.020690,33079.705407,2270045,2503765,119.986231,0.020579,32119674,18548630,0,0,49616,0,1,1 +1773612716.441978,2.71,4,3992.50,50.63,1721.18,1982.25,0.00,3515318932995.350098,3515318932539.280273,75,0,53.229949,0.015046,32125137,18549720,0,0,49618,0,1,1 +1773612721.441749,0.80,4,3992.50,50.65,1720.22,1983.22,0.00,0.000000,0.000000,75,0,0.000669,0.000345,32125153,18549734,0,0,49621,0,1,1 +1773612726.441952,1.00,4,3992.50,50.77,1715.84,1987.57,0.00,3518294409756.960938,0.000000,11,0,0.000000,0.000020,32125153,18549736,0,0,49623,0,1,1 +1773612731.438785,0.65,4,3992.50,50.73,1717.17,1986.23,0.00,2.013580,0.000195,246,2,0.000000,0.000030,32125153,18549739,0,0,49626,0,1,1 +1773612736.442278,0.65,4,3992.50,50.73,1717.18,1986.23,0.00,3515981356378.816406,3515981356380.647461,205,0,0.000000,0.000020,32125153,18549741,0,0,49628,0,1,1 +1773612741.441779,0.80,4,3992.50,50.73,1717.12,1986.29,0.00,1.832214,0.000195,246,2,0.000000,0.000030,32125153,18549744,0,0,49631,0,1,1 +1773612746.442090,1.25,4,3992.50,50.71,1718.04,1985.37,0.00,0.000000,0.000000,246,2,0.000000,0.000020,32125153,18549746,0,0,49633,0,1,1 +1773612751.437625,0.65,4,3992.50,50.71,1717.80,1985.60,0.00,32644.539515,33103.584296,2270059,2503920,0.000000,0.000030,32125153,18549749,0,0,49636,0,1,1 +1773612756.441895,1.00,4,3992.50,50.76,1723.59,1987.18,0.00,0.000000,0.037468,2270059,2503949,0.000000,0.000020,32125153,18549751,0,0,49638,0,1,1 +1773612761.441539,0.70,4,3992.50,50.74,1724.05,1986.72,0.00,3518688172034.404297,3518688171577.531250,205,0,0.000101,0.000154,32125161,18549762,0,0,49641,0,1,1 +1773612766.442184,0.70,4,3992.50,50.75,1723.81,1986.96,0.00,1.475688,10.673818,251,417,0.000041,0.000067,32125165,18549768,0,0,49643,0,1,1 +1773612771.442017,0.80,4,3992.50,50.75,1723.81,1986.96,0.00,32616.832896,33064.509355,2270059,2503968,0.000000,0.000513,32125165,18549774,0,0,49646,0,1,1 +1773612776.441542,0.75,4,3992.50,50.75,1723.81,1986.96,0.00,3518771688296.527344,3518771687839.623047,205,0,0.000000,0.000181,32125165,18549777,0,0,49648,0,1,1 +1773612781.441758,14.47,4,3992.50,57.08,1475.97,2234.70,0.00,3518285159856.923340,0.000000,11,0,12.021552,0.012586,32126578,18550560,0,0,49651,0,1,1 +1773612786.439665,36.27,4,3992.50,57.52,1459.73,2251.84,0.00,32640.662881,33098.837002,2271555,2504559,122.422621,0.032845,32139180,18553026,0,0,49653,0,1,1 +1773612791.441792,29.81,4,3992.50,57.13,1474.16,2236.71,0.00,3516941473098.425781,3516941472640.638184,11,0,122.118075,0.028089,32151729,18555144,0,0,49656,0,1,1 +1773612796.437728,29.57,4,3992.50,56.95,1481.09,2229.77,0.00,0.000000,0.000000,11,0,120.265482,0.024058,32164110,18556939,0,0,49658,0,1,1 +1773612801.437690,29.21,4,3992.50,56.99,1479.74,2231.14,0.00,0.053516,0.000000,75,0,120.566529,0.019220,32176473,18558420,0,0,49661,0,1,1 +1773612806.438313,29.59,4,3992.50,56.96,1480.54,2230.29,0.00,3517998593261.735352,0.000000,11,0,119.753185,0.030170,32188847,18560771,0,0,49663,0,1,1 +1773612811.441285,29.11,4,3992.50,57.17,1472.53,2238.33,0.00,2.011109,0.000195,246,2,120.093356,0.031007,32201043,18563150,0,0,49666,0,1,1 +1773612816.438921,29.15,4,3992.50,57.24,1469.61,2241.04,0.00,3520101245926.641113,3520101245928.600586,75,0,119.219585,0.035802,32213102,18565906,0,0,49668,0,1,1 +1773612821.442032,29.25,4,3992.50,57.24,1469.29,2241.16,0.00,3516249823006.250488,0.000000,11,0,119.088933,0.032930,32225213,18568449,0,0,49671,0,1,1 +1773612826.442443,1.50,4,3992.50,50.86,1719.07,1991.47,0.00,0.000000,0.000000,11,0,49.866150,0.008403,32230348,18569065,0,0,49673,0,1,1 +1773612831.441983,1.30,4,3992.50,50.88,1718.35,1992.20,0.00,32630.145581,33088.491894,2271568,2504774,0.001541,0.000702,32230378,18569087,0,0,49676,0,1,1 +1773612836.442043,0.65,4,3992.50,50.88,1718.35,1992.20,0.00,3518394441133.498535,3518394440675.200195,11,0,0.000000,0.000020,32230378,18569089,0,0,49678,0,1,1 +1773612841.441958,0.70,4,3992.50,50.88,1718.35,1992.20,0.00,0.000000,0.000000,11,0,0.000000,0.000674,32230378,18569096,0,0,49681,0,1,1 +1773612846.441831,0.70,4,3992.50,50.91,1717.38,1993.17,0.00,32627.972227,33086.370826,2271568,2504830,0.000000,0.000020,32230378,18569098,0,0,49683,0,1,1 +1773612851.437764,1.00,4,3992.50,51.23,1698.95,2005.96,0.00,3521301084454.145020,3521301084453.079590,2270079,2504438,0.000000,0.000030,32230378,18569101,0,0,49686,0,1,1 +1773612856.442119,0.65,4,3992.50,51.18,1701.26,2003.64,0.00,3515375502858.986816,3515375502402.062500,11,0,0.000000,0.000020,32230378,18569103,0,0,49688,0,1,1 +1773612861.440223,1.30,4,3992.50,51.15,1702.30,2002.61,0.00,0.053536,0.000000,75,0,0.000000,0.000030,32230378,18569106,0,0,49691,0,1,1 +1773612866.441338,0.65,4,3992.50,51.15,1702.30,2002.61,0.00,3517653280150.806152,0.000000,11,0,0.000000,0.000020,32230378,18569108,0,0,49693,0,1,1 +1773612871.442182,0.80,4,3992.50,51.15,1702.30,2002.60,0.00,0.180243,0.000000,205,0,0.000063,0.000123,32230383,18569117,0,0,49696,0,1,1 +1773612876.441594,0.90,4,3992.50,50.96,1704.09,1995.03,0.00,3518851043359.973633,0.000000,11,0,0.000079,0.000098,32230390,18569125,0,0,49698,0,1,1 +1773612881.441627,0.65,4,3992.50,50.69,1714.09,1984.48,0.00,1.656141,10.675124,251,417,0.000000,0.000030,32230390,18569128,0,0,49701,0,1,1 +1773612886.441579,0.65,4,3992.50,50.69,1714.09,1984.48,0.00,3518471378164.666016,3518471378155.466309,205,0,0.000000,0.000020,32230390,18569130,0,0,49703,0,1,1 +1773612891.441959,1.50,4,3992.50,50.52,1720.76,1977.80,0.00,3518169464225.015625,0.000000,11,0,0.002053,0.001353,32230416,18569151,0,0,49706,0,1,1 +1773612896.438279,33.27,4,3992.50,56.25,1496.04,2202.45,0.00,0.000000,0.000000,11,0,75.965155,0.029126,32238347,18571163,0,0,49708,0,1,1 +1773612901.437568,33.08,4,3992.50,56.20,1498.23,2200.25,0.00,1.656388,10.676715,251,417,122.188066,0.020110,32250949,18572646,0,0,49711,0,1,1 +1773612906.440364,29.76,4,3992.50,56.55,1484.32,2214.18,0.00,3516471027556.898438,3516471027547.831543,75,0,121.424967,0.023874,32263411,18574393,0,0,49713,0,1,1 +1773612911.439866,29.11,4,3992.50,56.45,1488.48,2209.95,0.00,3518787200829.532227,0.000000,11,0,120.452668,0.018373,32275720,18575822,0,0,49716,0,1,1 +1773612916.440094,29.54,4,3992.50,56.61,1481.98,2216.45,0.00,32626.053247,33084.498939,2271868,2505273,119.959336,0.019824,32287974,18577331,0,0,49718,0,1,1 +1773612921.438227,29.08,4,3992.50,56.61,1481.84,2216.58,0.00,3519751600036.810547,3519751599577.992188,205,0,118.808083,0.031885,32300065,18579725,0,0,49721,0,1,1 +1773612926.437553,29.08,4,3992.50,56.41,1489.71,2208.68,0.00,3518911809445.290039,0.000000,75,0,120.183183,0.035514,32312439,18582460,0,0,49723,0,1,1 +1773612931.440902,29.34,4,3992.50,56.53,1485.17,2213.23,0.00,3516082159555.602051,0.000000,11,0,119.757406,0.021624,32324594,18584158,0,0,49726,0,1,1 +1773612936.439557,15.53,4,3992.50,50.25,1731.43,1967.27,0.00,0.000000,0.000000,11,0,106.705661,0.028923,32335565,18586374,0,0,49728,0,1,1 +1773612941.437588,1.25,4,3992.50,50.44,1723.92,1974.77,0.00,0.180344,0.000000,205,0,0.003489,0.002061,32335634,18586430,0,0,49731,0,1,1 +1773612946.441483,0.70,4,3992.50,50.43,1724.30,1974.38,0.00,0.000000,0.000000,205,0,0.000000,0.000020,32335634,18586432,0,0,49733,0,1,1 +1773612951.442321,0.60,4,3992.50,50.43,1724.31,1974.38,0.00,1.475632,10.673408,251,417,0.000000,0.000030,32335634,18586435,0,0,49736,0,1,1 +1773612956.437554,0.70,4,3992.50,50.35,1727.39,1971.30,0.00,0.000000,0.000000,251,417,0.000000,0.000020,32335634,18586437,0,0,49738,0,1,1 +1773612961.437557,0.65,4,3992.50,50.35,1727.40,1971.29,0.00,3518434944416.994141,3518434944407.794922,205,0,0.000000,0.000030,32335634,18586440,0,0,49741,0,1,1 +1773612966.437656,1.00,4,3992.50,50.53,1717.20,1978.36,0.00,32626.917741,33085.935979,2271882,2505499,0.000031,0.000045,32335636,18586444,0,0,49743,0,1,1 +1773612971.441619,0.65,4,3992.50,50.35,1724.45,1971.12,0.00,3515650685584.663086,3515650685126.179688,11,0,0.000008,0.000681,32335637,18586452,0,0,49746,0,1,1 +1773612976.442211,1.50,4,3992.50,50.38,1722.98,1972.60,0.00,32623.879918,33082.708563,2271882,2505538,0.002843,0.001950,32335684,18586482,0,0,49748,0,1,1 +1773612981.442436,0.70,4,3992.50,50.38,1722.98,1972.60,0.00,0.000000,0.006250,2271882,2505544,0.000000,0.000030,32335684,18586485,0,0,49751,0,1,1 +1773612986.437496,0.60,4,3992.50,50.38,1722.98,1972.60,0.00,0.000000,0.008602,2271882,2505552,0.000107,0.000138,32335692,18586495,0,0,49753,0,1,1 +1773612991.439430,0.60,4,3992.50,50.38,1722.98,1972.60,0.00,3517077070499.552246,3517077070040.832031,11,0,0.000000,0.000030,32335692,18586498,0,0,49756,0,1,1 +1773612996.440133,1.70,4,3992.50,50.53,1717.21,1978.30,0.00,0.000000,0.000000,11,0,0.000000,0.000020,32335692,18586500,0,0,49758,0,1,1 +1773613001.442152,30.04,4,3992.50,56.35,1489.22,2206.25,0.00,0.180201,0.000000,205,0,58.061436,0.026153,32341778,18588316,0,0,49761,0,1,1 +1773613006.441160,30.85,4,3992.50,56.38,1487.97,2207.48,0.00,3519135068851.366699,0.000000,11,0,118.187715,0.036473,32353842,18591070,0,0,49763,0,1,1 +1773613011.441862,28.95,4,3992.50,56.49,1483.91,2211.56,0.00,32613.661056,33071.473884,2270403,2505319,120.150864,0.023100,32366223,18592791,0,0,49766,0,1,1 +1773613016.437641,29.05,4,3992.50,56.59,1479.80,2215.81,0.00,3521409980150.097168,3521409979691.779297,75,0,118.262625,0.044516,32378168,18596181,0,0,49768,0,1,1 +1773613021.439715,29.02,4,3992.50,56.37,1488.47,2206.98,0.00,3516978712184.038086,0.000000,11,0,120.116122,0.023678,32390456,18597976,0,0,49771,0,1,1 +1773613026.437550,28.61,4,3992.50,56.57,1480.72,2214.70,0.00,32632.426434,33090.504985,2270408,2505366,118.214237,0.032367,32402460,18600492,0,0,49773,0,1,1 +1773613031.442201,29.58,4,3992.50,56.59,1487.21,2215.67,0.00,0.000000,0.216693,2270408,2505436,120.053962,0.017268,32414388,18601786,0,0,49776,0,1,1 +1773613036.437532,28.42,4,3992.50,56.51,1490.22,2212.66,0.00,3521725809608.533203,3521725809149.827637,205,0,118.670031,0.017206,32426109,18603064,0,0,49778,0,1,1 +1773613041.442210,21.24,4,3992.50,56.70,1483.06,2219.86,0.00,1.830319,0.000195,246,2,119.655267,0.033838,32438087,18605639,0,0,49781,0,1,1 +1773613046.440996,1.30,4,3992.50,51.38,1691.34,2011.56,0.00,32624.337401,33084.560182,2270419,2505512,14.026723,0.007592,32439573,18606144,0,0,49783,0,1,1 +1773613051.438544,0.90,4,3992.50,50.78,1714.66,1988.25,0.00,3520163457383.945801,3520163456925.622070,11,0,0.000184,0.000199,32439577,18606150,0,0,49786,0,1,1 +1773613056.440631,0.95,4,3992.50,50.73,1718.52,1986.17,0.00,0.000000,0.000000,11,0,0.000000,0.000020,32439577,18606152,0,0,49788,0,1,1 +1773613061.441434,0.70,4,3992.50,50.73,1718.52,1986.17,0.00,1.655886,10.673480,251,417,0.000000,0.000030,32439577,18606155,0,0,49791,0,1,1 +1773613066.441763,0.70,4,3992.50,50.73,1718.52,1986.17,0.00,3518205807338.313477,3518205807329.241699,75,0,0.000000,0.000020,32439577,18606157,0,0,49793,0,1,1 +1773613071.441085,0.55,4,3992.50,50.73,1718.53,1986.16,0.00,32632.358692,33091.951153,2271908,2506057,0.000000,0.000030,32439577,18606160,0,0,49796,0,1,1 +1773613076.437606,0.65,4,3992.50,50.73,1718.53,1986.16,0.00,3520886970201.410156,3520886970200.303711,2270419,2505644,0.000000,0.000020,32439577,18606162,0,0,49798,0,1,1 +1773613081.441890,0.60,4,3992.50,50.73,1718.54,1986.16,0.00,3515425382676.520508,3515425382227.553223,251,417,0.000000,0.000030,32439577,18606165,0,0,49801,0,1,1 +1773613086.441952,0.95,4,3992.50,50.73,1716.71,1986.34,0.00,3518393566024.072266,3518393566015.053711,11,0,0.000000,0.000020,32439577,18606167,0,0,49803,0,1,1 +1773613091.441828,0.65,4,3992.50,50.55,1723.23,1979.18,0.00,1.656193,10.675460,251,417,0.000101,0.000154,32439585,18606178,0,0,49806,0,1,1 +1773613096.438774,0.70,4,3992.50,50.55,1723.23,1979.18,0.00,0.356370,3520587494995.663574,246,2,0.000041,0.000067,32439589,18606184,0,0,49808,0,1,1 +1773613101.442156,0.60,4,3992.50,50.55,1723.23,1979.18,0.00,0.000000,0.000000,246,2,0.000000,0.000030,32439589,18606187,0,0,49811,0,1,1 +1773613106.437646,0.70,4,3992.50,50.36,1730.89,1971.52,0.00,3521613537367.411133,3521613537369.425293,11,0,0.000000,0.000664,32439589,18606193,0,0,49813,0,1,1 +1773613111.437569,28.08,4,3992.50,56.67,1483.62,2218.71,0.00,2.012336,0.000195,246,2,47.672108,0.024401,32444605,18607858,0,0,49816,0,1,1 +1773613116.441756,31.04,4,3992.50,56.69,1478.76,2219.49,0.00,3515493370590.741211,3515493370592.697754,75,0,120.065510,0.026742,32456846,18609870,0,0,49818,0,1,1 +1773613121.438206,27.99,4,3992.50,56.39,1490.10,2207.76,0.00,0.000000,0.000000,75,0,118.250394,0.022811,32469111,18611591,0,0,49821,0,1,1 +1773613126.437592,28.26,4,3992.50,56.26,1495.06,2202.88,0.00,32622.405471,33081.168097,2270426,2505943,120.186303,0.034064,32481593,18614224,0,0,49823,0,1,1 +1773613131.442156,28.82,4,3992.50,56.53,1484.66,2213.38,0.00,3515228404066.858398,3515228403608.624023,11,0,119.274003,0.060483,32494151,18618911,0,0,49826,0,1,1 +1773613136.442192,29.91,4,3992.50,56.44,1488.15,2209.79,0.00,0.180272,0.000000,205,0,118.968057,0.045567,32506361,18622420,0,0,49828,0,1,1 +1773613141.438483,29.17,4,3992.50,56.28,1494.43,2203.46,0.00,32642.480445,33101.818495,2270426,2505989,119.456405,0.034589,32518629,18625074,0,0,49831,0,1,1 +1773613146.442197,28.82,4,3992.50,56.39,1490.24,2207.70,0.00,3515826201377.036133,3515826200918.379395,205,0,118.885424,0.041709,32530992,18628317,0,0,49833,0,1,1 +1773613151.440667,25.48,4,3992.50,56.39,1486.69,2207.76,0.00,32628.252782,33087.440628,2270427,2506022,119.805081,0.032676,32543229,18630867,0,0,49836,0,1,1 +1773613156.442122,2.66,4,3992.50,50.95,1699.47,1994.97,0.00,3517413761517.916992,3517413761057.171875,246,2,22.827925,0.006957,32545602,18631334,0,0,49838,0,1,1 +1773613161.438307,1.20,4,3992.50,50.37,1722.25,1972.19,0.00,3521123519084.277832,3521123519086.291992,11,0,0.000000,0.000030,32545602,18631337,0,0,49841,0,1,1 +1773613166.442568,2.40,4,3992.50,50.52,1716.40,1978.05,0.00,32590.854328,33049.386311,2270439,2506100,0.000000,0.000020,32545602,18631339,0,0,49843,0,1,1 +1773613171.437589,0.70,4,3992.50,50.52,1716.31,1978.14,0.00,9.571054,10.711056,2271928,2506523,0.000000,0.000513,32545602,18631345,0,0,49846,0,1,1 +1773613176.437574,1.00,4,3992.50,50.53,1713.77,1978.33,0.00,3518448372661.420898,3518448372201.357910,11,0,0.000000,0.000181,32545602,18631348,0,0,49848,0,1,1 +1773613181.437620,0.65,4,3992.50,50.49,1715.49,1976.62,0.00,0.000000,0.000000,11,0,0.000000,0.000030,32545602,18631351,0,0,49851,0,1,1 +1773613186.442252,0.60,4,3992.50,50.49,1715.24,1976.87,0.00,1.654620,10.665315,251,417,0.000000,0.000020,32545602,18631353,0,0,49853,0,1,1 +1773613191.437579,0.70,4,3992.50,50.49,1715.25,1976.86,0.00,3521728641121.636230,3521728641112.609375,11,0,0.000000,0.000030,32545602,18631356,0,0,49856,0,1,1 +1773613196.442117,0.60,4,3992.50,50.49,1715.25,1976.86,0.00,32598.602223,33058.351238,2271928,2506599,0.000512,0.001106,32545616,18631380,0,0,49858,0,1,1 +1773613201.437569,0.70,4,3992.50,50.47,1716.07,1976.03,0.00,3521640721256.531250,3521640720795.892578,75,0,0.000142,0.000201,32545628,18631395,0,0,49861,0,1,1 +1773613206.442229,0.95,4,3992.50,50.49,1715.20,1976.87,0.00,32597.772844,33057.638322,2271939,2506664,0.000000,0.000020,32545628,18631397,0,0,49863,0,1,1 +1773613211.442432,0.60,4,3992.50,50.44,1717.37,1974.70,0.00,3518294169561.214844,3518294169098.980957,246,2,0.000000,0.000030,32545628,18631400,0,0,49866,0,1,1 +1773613216.442182,0.75,4,3992.50,50.44,1717.37,1974.70,0.00,32627.826246,33090.107491,2271939,2506670,0.000000,0.000020,32545628,18631402,0,0,49868,0,1,1 +1773613221.442369,1.10,4,3992.50,50.23,1725.30,1966.80,0.00,3518305229253.981445,3518305228793.752930,11,0,0.003167,0.002846,32545662,18631436,0,0,49871,0,1,1 +1773613226.440554,35.50,4,3992.50,56.59,1476.28,2215.70,0.00,2.013035,0.000195,246,2,80.744876,0.048546,32554093,18635080,0,0,49873,0,1,1 +1773613231.438475,31.35,4,3992.50,56.80,1467.93,2224.02,0.00,3519900827291.999512,3519900827293.958984,75,0,119.651187,0.059785,32566191,18639713,0,0,49876,0,1,1 +1773613236.437609,28.46,4,3992.50,56.62,1475.19,2216.80,0.00,0.126780,0.000000,205,0,118.545529,0.056821,32578202,18644093,0,0,49878,0,1,1 +1773613241.442556,30.23,4,3992.50,57.03,1458.37,2232.90,0.00,3514959250202.914062,0.000000,75,0,119.845858,0.057306,32590359,18648540,0,0,49881,0,1,1 +1773613246.440659,29.60,4,3992.50,56.67,1472.62,2218.60,0.00,32630.982929,33090.523272,2270456,2506467,118.806747,0.056041,32602373,18652933,0,0,49883,0,1,1 +1773613251.440994,29.60,4,3992.50,56.75,1469.21,2222.04,0.00,0.000000,0.008300,2270456,2506478,119.554145,0.057567,32614424,18657441,0,0,49886,0,1,1 +1773613256.441055,30.25,4,3992.50,56.64,1473.55,2217.70,0.00,3518394377811.658691,3518394377352.343750,11,0,119.160752,0.051220,32626425,18661424,0,0,49888,0,1,1 +1773613261.442228,29.93,4,3992.50,56.71,1470.92,2220.29,0.00,0.180231,0.000000,205,0,119.135198,0.063111,32638500,18666353,0,0,49891,0,1,1 +1773613266.442375,15.72,4,3992.50,52.11,1651.10,2040.22,0.00,1.831977,0.000195,246,2,109.945468,0.049212,32649537,18670214,0,0,49893,0,1,1 +1773613271.442449,1.25,4,3992.50,51.48,1676.78,2015.59,0.00,32616.289522,33077.809917,2270467,2506597,0.003138,0.001586,32649597,18670257,0,0,49896,0,1,1 +1773613276.441555,0.85,4,3992.50,50.95,1697.74,1994.66,0.00,3519066763349.651367,3519066762889.873535,205,0,0.002174,0.001029,32649641,18670285,0,0,49898,0,1,1 +1773613281.442425,0.95,4,3992.50,51.01,1695.18,1997.21,0.00,3517824970846.483398,0.000000,11,0,0.000000,0.000030,32649641,18670288,0,0,49901,0,1,1 +1773613286.437991,0.70,4,3992.50,51.01,1695.07,1997.33,0.00,0.180433,0.000000,205,0,0.000031,0.000045,32649643,18670292,0,0,49903,0,1,1 +1773613291.437657,0.70,4,3992.50,51.02,1694.84,1997.56,0.00,32620.782109,33080.582415,2270467,2506654,0.000000,0.000030,32649643,18670295,0,0,49906,0,1,1 +1773613296.439710,0.80,4,3992.50,51.02,1695.34,1997.73,0.00,3516993629044.624023,3516993628594.238281,251,417,0.000000,0.000020,32649643,18670297,0,0,49908,0,1,1 +1773613301.441692,0.80,4,3992.50,51.02,1695.37,1997.70,0.00,3517043058640.367676,3517043058631.352539,11,0,0.000000,0.000030,32649643,18670300,0,0,49911,0,1,1 +1773613306.442378,0.80,4,3992.50,51.02,1695.38,1997.70,0.00,0.000000,0.000000,11,0,0.000000,0.000664,32649643,18670306,0,0,49913,0,1,1 +1773613311.441725,0.60,4,3992.50,51.02,1695.38,1997.70,0.00,0.180297,0.000000,205,0,0.000000,0.000030,32649643,18670309,0,0,49916,0,1,1 +1773613316.442079,0.70,4,3992.50,51.02,1695.38,1997.70,0.00,3518188099352.819336,0.000000,11,0,0.000076,0.000113,32649649,18670317,0,0,49918,0,1,1 +1773613321.441242,0.65,4,3992.50,51.02,1695.38,1997.70,0.00,1.656430,10.676984,251,417,0.000109,0.000162,32649658,18670329,0,0,49921,0,1,1 +1773613326.441565,0.90,4,3992.50,51.22,1689.28,2005.28,0.00,0.356129,3518209950804.394531,246,2,0.000008,0.000028,32649659,18670332,0,0,49923,0,1,1 +1773613331.442033,9.17,4,3992.50,56.95,1464.64,2229.90,0.00,3518107751460.729004,10.674000,251,417,2.006646,0.005607,32650004,18670611,0,0,49926,0,1,1 +1773613336.442323,38.17,4,3992.50,57.19,1455.59,2238.92,0.00,0.356132,3518233237893.264648,246,2,121.587173,0.088908,32662926,18677488,0,0,49928,0,1,1 +1773613341.442395,30.38,4,3992.50,57.64,1437.75,2256.72,0.00,3518386404788.856934,3518386404790.869629,11,0,122.544323,0.017202,32675026,18678737,0,0,49931,0,1,1 +1773613346.441630,30.26,4,3992.50,57.37,1448.27,2246.22,0.00,0.180301,0.000000,205,0,120.780281,0.021923,32686831,18680400,0,0,49933,0,1,1 +1773613351.442247,30.16,4,3992.50,57.32,1450.45,2244.04,0.00,3518003121774.223633,0.000000,11,0,120.242684,0.025471,32698726,18682389,0,0,49936,0,1,1 +1773613356.437774,29.23,4,3992.50,57.33,1449.66,2244.77,0.00,0.000000,0.000000,11,0,119.256630,0.033450,32710373,18684984,0,0,49938,0,1,1 +1773613361.439648,29.86,4,3992.50,57.33,1448.38,2244.75,0.00,0.000000,0.000000,11,0,119.507092,0.031217,32721523,18687379,0,0,49941,0,1,1 +1773613366.440948,29.28,4,3992.50,57.18,1454.45,2238.65,0.00,32610.327940,33070.360504,2270474,2507007,119.074875,0.027914,32732572,18689558,0,0,49943,0,1,1 +1773613371.437657,29.78,4,3992.50,57.19,1454.15,2238.97,0.00,3520754691211.199219,3520754690750.743652,11,0,119.405812,0.028112,32743515,18691665,0,0,49946,0,1,1 +1773613376.441975,4.46,4,3992.50,52.33,1644.42,2048.78,0.00,0.053469,0.000000,75,0,61.027281,0.015407,32749124,18692762,0,0,49948,0,1,1 +1773613381.441935,0.85,4,3992.50,51.51,1676.56,2016.64,0.00,0.126759,0.000000,205,0,0.000619,0.000282,32749136,18692772,0,0,49951,0,1,1 +1773613386.439382,0.85,4,3992.50,51.21,1688.14,2005.05,0.00,1.832967,0.000195,246,2,0.000000,0.000020,32749136,18692774,0,0,49953,0,1,1 +1773613391.442501,0.80,4,3992.50,50.97,1697.45,1995.75,0.00,0.000000,0.000000,246,2,0.000000,0.000030,32749136,18692777,0,0,49956,0,1,1 +1773613396.441181,0.70,4,3992.50,50.97,1697.53,1995.67,0.00,3519366117413.129883,3519366117414.962402,205,0,0.000000,0.000020,32749136,18692779,0,0,49958,0,1,1 +1773613401.441773,0.70,4,3992.50,51.01,1696.07,1997.14,0.00,3518020797647.701660,0.000000,11,0,0.000000,0.000030,32749136,18692782,0,0,49961,0,1,1 +1773613406.442189,0.70,4,3992.50,51.01,1696.07,1997.12,0.00,32616.247680,33076.469289,2270486,2507167,0.000000,0.000020,32749136,18692784,0,0,49963,0,1,1 +1773613411.441823,0.60,4,3992.50,50.99,1696.79,1996.41,0.00,3518695345054.930176,3518695344592.624512,246,2,0.000000,0.000030,32749136,18692787,0,0,49966,0,1,1 +1773613416.438964,0.90,4,3992.50,51.00,1697.94,1996.83,0.00,3520449621100.399414,3520449621102.358887,75,0,0.000000,0.000020,32749136,18692789,0,0,49968,0,1,1 +1773613421.442322,0.60,4,3992.50,50.98,1698.26,1996.02,0.00,3516075998594.518555,0.000000,11,0,0.000101,0.000154,32749144,18692800,0,0,49971,0,1,1 +1773613426.441768,0.75,4,3992.50,50.95,1699.41,1994.87,0.00,0.000000,0.000000,11,0,0.000041,0.000067,32749148,18692806,0,0,49973,0,1,1 +1773613431.442289,0.65,4,3992.50,50.95,1699.41,1994.87,0.00,32615.568896,33075.952003,2270486,2507228,0.000000,0.000030,32749148,18692809,0,0,49976,0,1,1 +1773613436.442337,0.60,4,3992.50,50.92,1700.71,1993.56,0.00,0.000000,0.007031,2270486,2507233,0.000000,0.000664,32749148,18692815,0,0,49978,0,1,1 +1773613441.442435,1.50,4,3992.50,51.05,1695.37,1998.87,0.00,3518368136029.974609,3518368135569.545410,11,0,0.003702,0.003355,32749207,18692865,0,0,49981,0,1,1 +1773613446.437658,44.03,4,3992.50,57.15,1456.84,2237.42,0.00,32659.749566,33121.834441,2271981,2507717,108.455981,0.042006,32760323,18696081,0,0,49983,0,1,1 +1773613451.441536,29.61,4,3992.50,57.15,1456.62,2237.49,0.00,3515710273239.047363,3515710272777.581543,205,0,119.871348,0.031914,32772521,18698596,0,0,49986,0,1,1 +1773613456.441152,29.19,4,3992.50,57.36,1448.21,2245.91,0.00,1.475992,10.676016,251,417,118.370554,0.044930,32784522,18702099,0,0,49988,0,1,1 +1773613461.441806,30.03,4,3992.50,57.30,1450.79,2243.39,0.00,3517976543925.076660,3517976543916.005371,75,0,119.950168,0.024315,32796810,18703954,0,0,49991,0,1,1 +1773613466.440766,30.47,4,3992.50,57.15,1456.78,2237.41,0.00,32635.283889,33097.170861,2271981,2507808,118.990063,0.017729,32809112,18705305,0,0,49993,0,1,1 +1773613471.441942,29.58,4,3992.50,57.26,1452.39,2241.76,0.00,3517609699379.162109,3517609698915.521973,246,2,119.334165,0.028530,32821220,18707544,0,0,49996,0,1,1 +1773613476.442525,29.69,4,3992.50,57.63,1437.83,2256.48,0.00,0.000000,0.000000,246,2,119.748716,0.023171,32833316,18709319,0,0,49998,0,1,1 +1773613481.442304,30.08,4,3992.50,57.28,1451.59,2242.64,0.00,0.000000,0.000000,246,2,118.567951,0.033041,32845355,18711858,0,0,50001,0,1,1 +1773613486.440788,9.64,4,3992.50,50.75,1707.38,1986.96,0.00,3519504571144.180664,3519504571146.193848,11,0,82.136760,0.033021,32853672,18714433,0,0,50003,0,1,1 +1773613491.437600,1.20,4,3992.50,50.80,1705.59,1988.73,0.00,32639.945794,33101.055748,2270506,2507547,0.002926,0.001183,32853727,18714471,0,0,50006,0,1,1 +1773613496.441588,0.75,4,3992.50,50.81,1705.11,1989.22,0.00,0.000000,0.010929,2270506,2507554,0.000520,0.001114,32853742,18714496,0,0,50008,0,1,1 +1773613501.437605,0.65,4,3992.50,50.81,1705.11,1989.22,0.00,3521242704559.225586,3521242704096.017578,246,2,0.000000,0.000513,32853742,18714502,0,0,50011,0,1,1 +1773613506.442246,0.90,4,3992.50,50.94,1702.61,1994.42,0.00,3515174364980.683105,3515174364982.693359,11,0,0.000000,0.000181,32853742,18714505,0,0,50013,0,1,1 +1773613511.437496,0.75,4,3992.50,50.94,1702.48,1994.42,0.00,32659.748153,33122.226705,2271996,2508047,0.000000,0.000030,32853742,18714508,0,0,50016,0,1,1 +1773613516.441703,0.65,4,3992.50,50.94,1702.49,1994.42,0.00,3515479183166.419434,3515479182704.715332,75,0,0.000000,0.000020,32853742,18714510,0,0,50018,0,1,1 +1773613521.442255,0.65,4,3992.50,50.94,1702.49,1994.42,0.00,3518048955593.187500,0.000000,11,0,0.000205,0.000562,32853749,18714524,0,0,50021,0,1,1 +1773613526.442127,0.75,4,3992.50,50.96,1701.75,1995.15,0.00,32620.000159,33081.072522,2270507,2507679,0.000016,0.000036,32853751,18714528,0,0,50023,0,1,1 +1773613531.438355,0.65,4,3992.50,50.96,1701.52,1995.39,0.00,9.568742,10.685795,2271996,2508101,0.000025,0.000061,32853753,18714533,0,0,50026,0,1,1 +1773613536.441823,0.90,4,3992.50,51.34,1687.25,2009.91,0.00,0.000000,0.060895,2271996,2508146,0.000101,0.000144,32853761,18714543,0,0,50028,0,1,1 +1773613541.442218,0.70,4,3992.50,51.19,1692.85,2004.00,0.00,3518159602609.042969,3518159602146.842285,11,0,0.001292,0.001304,32853774,18714564,0,0,50031,0,1,1 +1773613546.437596,0.80,4,3992.50,51.19,1692.62,2004.24,0.00,0.180440,0.000000,205,0,0.000000,0.000020,32853774,18714566,0,0,50033,0,1,1 +1773613551.440297,1.40,4,3992.50,51.01,1699.57,1997.27,0.00,1.475082,10.669431,251,417,0.002039,0.001656,32853799,18714587,0,0,50036,0,1,1 +1773613556.439518,41.31,4,3992.50,57.10,1460.93,2235.72,0.00,32622.616081,33074.867267,2270513,2507875,97.153350,0.037430,32863889,18717320,0,0,50038,0,1,1 +1773613561.438567,30.31,4,3992.50,57.45,1447.38,2249.40,0.00,3519107023505.682129,3519107023044.394531,11,0,119.787100,0.035185,32876053,18720029,0,0,50041,0,1,1 +1773613566.437868,29.90,4,3992.50,57.42,1449.02,2248.07,0.00,1.656384,10.676687,251,417,118.178389,0.033638,32888034,18722615,0,0,50043,0,1,1 +1773613571.441546,29.20,4,3992.50,57.41,1448.81,2247.64,0.00,0.000000,0.000000,251,417,120.077056,0.048051,32900251,18726310,0,0,50046,0,1,1 +1773613576.442139,28.60,4,3992.50,57.40,1449.25,2247.14,0.00,0.000000,0.000000,251,417,118.549691,0.037228,32912307,18729114,0,0,50048,0,1,1 +1773613581.441347,29.41,4,3992.50,57.17,1458.26,2238.16,0.00,32632.269029,33085.784747,2272002,2508413,119.782254,0.041364,32924444,18732334,0,0,50051,0,1,1 +1773613586.441533,29.57,4,3992.50,56.94,1467.08,2229.37,0.00,3518305836490.428223,3518305836027.801758,205,0,118.957432,0.030045,32936423,18734635,0,0,50053,0,1,1 +1773613591.441863,29.21,4,3992.50,57.01,1464.25,2232.11,0.00,32626.421881,33089.184918,2272002,2508445,119.354463,0.036903,32948535,18737547,0,0,50056,0,1,1 +1773613596.441961,11.78,4,3992.50,51.94,1663.07,2033.39,0.00,3518368053694.001953,3518368053229.385742,246,2,93.526121,0.033309,32958024,18740127,0,0,50058,0,1,1 +1773613601.437670,1.25,4,3992.50,51.78,1670.65,2027.41,0.00,32645.336494,33109.269270,2270526,2508084,0.003120,0.001456,32958082,18740168,0,0,50061,0,1,1 +1773613606.438378,0.55,4,3992.50,51.50,1681.72,2016.34,0.00,3517939317493.665039,3517939317030.195801,246,2,0.000000,0.000020,32958082,18740170,0,0,50063,0,1,1 +1773613611.437689,0.65,4,3992.50,51.51,1681.47,2016.59,0.00,32621.820513,33085.465979,2270526,2508139,0.000000,0.000030,32958082,18740173,0,0,50066,0,1,1 +1773613616.437737,0.55,4,3992.50,51.47,1682.82,2015.24,0.00,3518403202564.553223,3518403202100.976074,246,2,0.000000,0.000020,32958082,18740175,0,0,50068,0,1,1 +1773613621.442319,0.70,4,3992.50,51.52,1680.86,2017.20,0.00,3515215980958.544922,3515215980960.375488,205,0,0.000050,0.000092,32958086,18740182,0,0,50071,0,1,1 +1773613626.442122,0.90,4,3992.50,51.52,1680.93,2017.12,0.00,3518575727468.543457,0.000000,11,0,0.000008,0.000028,32958087,18740185,0,0,50073,0,1,1 +1773613631.438190,0.60,4,3992.50,51.52,1680.99,2017.07,0.00,32654.576990,33117.822252,2272015,2508626,0.000000,0.000513,32958087,18740191,0,0,50076,0,1,1 +1773613636.441571,0.75,4,3992.50,51.48,1682.54,2015.53,0.00,0.000000,0.003123,2272015,2508630,0.000000,0.000181,32958087,18740194,0,0,50078,0,1,1 +1773613641.442556,0.70,4,3992.50,51.52,1681.07,2017.00,0.00,3517744514067.211914,3517744513604.418945,11,0,0.000025,0.000074,32958089,18740200,0,0,50081,0,1,1 +1773613646.441890,0.60,4,3992.50,51.52,1681.07,2017.00,0.00,1.656373,10.676617,251,417,0.000101,0.000144,32958097,18740210,0,0,50083,0,1,1 +1773613651.441534,0.70,4,3992.50,51.52,1681.07,2017.00,0.00,0.356178,3518687824597.881836,246,2,0.000000,0.000030,32958097,18740213,0,0,50086,0,1,1 +1773613656.437672,1.05,4,3992.50,51.91,1666.33,2032.46,0.00,3521156408538.943848,10.683250,251,417,0.000000,0.000020,32958097,18740215,0,0,50088,0,1,1 +1773613661.437688,1.05,4,3992.50,51.50,1681.79,2016.50,0.00,0.356151,3518426539595.886230,246,2,0.001383,0.000745,32958120,18740235,0,0,50091,0,1,1 +1773613666.442055,38.23,4,3992.50,57.20,1458.85,2239.41,0.00,3515366345142.775879,3515366345144.786621,11,0,90.049537,0.032768,32967478,18742628,0,0,50093,0,1,1 +1773613671.437557,28.61,4,3992.50,57.25,1456.86,2241.29,0.00,0.053564,0.000000,75,0,118.271000,0.017466,32979627,18743900,0,0,50096,0,1,1 +1773613676.441418,28.55,4,3992.50,57.39,1451.41,2246.75,0.00,3515722424278.677246,0.000000,11,0,120.079384,0.036757,32991973,18746716,0,0,50098,0,1,1 +1773613681.440278,28.88,4,3992.50,57.34,1453.23,2244.95,0.00,0.180315,0.000000,205,0,118.198693,0.040279,33004284,18749835,0,0,50101,0,1,1 +1773613686.441544,29.12,4,3992.50,57.64,1441.44,2256.77,0.00,32620.505041,33083.602992,2272023,2508844,120.145140,0.045549,33016808,18753367,0,0,50103,0,1,1 +1773613691.441549,30.19,4,3992.50,57.33,1460.45,2244.42,0.00,3518433740401.656738,3518433740400.568848,2270534,2508452,118.170120,0.039835,33028960,18756422,0,0,50106,0,1,1 +1773613696.441524,29.10,4,3992.50,57.29,1461.74,2243.12,0.00,3518454743908.351074,3518454743446.401855,11,0,120.171166,0.040105,33041185,18759509,0,0,50108,0,1,1 +1773613701.438651,28.71,4,3992.50,57.38,1458.24,2246.64,0.00,0.000000,0.000000,11,0,119.241857,0.045215,33053418,18762966,0,0,50111,0,1,1 +1773613706.441854,14.23,4,3992.50,52.08,1666.03,2038.94,0.00,0.053481,0.000000,75,0,101.085731,0.051015,33063869,18766926,0,0,50113,0,1,1 +1773613711.441569,1.10,4,3992.50,51.44,1690.97,2013.99,0.00,3518637819092.309082,0.000000,11,0,0.002924,0.001183,33063924,18766964,0,0,50116,0,1,1 +1773613716.442435,2.00,4,3992.50,51.25,1693.87,2006.40,0.00,1.655865,10.673346,251,417,0.000000,0.000020,33063924,18766966,0,0,50118,0,1,1 +1773613721.439837,0.75,4,3992.50,51.25,1693.87,2006.40,0.00,32644.394505,33098.969554,2272034,2509057,0.000000,0.000030,33063924,18766969,0,0,50121,0,1,1 +1773613726.442241,0.60,4,3992.50,51.25,1693.87,2006.40,0.00,3516746109501.456543,3516746109047.335449,251,417,0.000000,0.000020,33063924,18766971,0,0,50123,0,1,1 +1773613731.437585,0.65,4,3992.50,51.25,1693.88,2006.40,0.00,3521716752668.685059,3521716752659.657715,11,0,0.000000,0.000030,33063924,18766974,0,0,50126,0,1,1 +1773613736.440732,0.65,4,3992.50,51.25,1693.88,2006.39,0.00,0.000000,0.000000,11,0,0.000000,0.000020,33063924,18766976,0,0,50128,0,1,1 +1773613741.437561,0.85,4,3992.50,51.25,1693.89,2006.38,0.00,1.657203,10.681971,251,417,0.000000,0.000030,33063924,18766979,0,0,50131,0,1,1 +1773613746.438483,0.85,4,3992.50,51.29,1696.55,2008.30,0.00,3517788040497.949707,3517788040488.878906,75,0,0.000000,0.000020,33063924,18766981,0,0,50133,0,1,1 +1773613751.441365,0.75,4,3992.50,51.29,1696.59,2008.30,0.00,0.000000,0.000000,75,0,0.000025,0.000061,33063926,18766986,0,0,50136,0,1,1 +1773613756.442287,0.65,4,3992.50,51.10,1704.23,2000.65,0.00,0.000000,0.000000,75,0,0.000109,0.000152,33063935,18766997,0,0,50138,0,1,1 +1773613761.439008,0.75,4,3992.50,51.11,1703.77,2001.12,0.00,0.000000,0.000000,75,0,0.000013,0.000030,33063936,18767000,0,0,50141,0,1,1 +1773613766.437666,0.75,4,3992.50,51.11,1703.77,2001.12,0.00,1.959315,0.000195,246,2,0.000000,0.000664,33063936,18767006,0,0,50143,0,1,1 +1773613771.442149,0.80,4,3992.50,50.90,1712.18,1992.70,0.00,3515285767845.342773,3515285767847.353516,11,0,0.000000,0.000030,33063936,18767009,0,0,50146,0,1,1 +1773613776.439627,37.55,4,3992.50,57.78,1450.45,2262.16,0.00,0.000000,0.000000,11,0,79.958593,0.033060,33072340,18769328,0,0,50148,0,1,1 +1773613781.437575,32.26,4,3992.50,57.54,1459.77,2252.77,0.00,0.180347,0.000000,205,0,118.415770,0.027902,33084616,18771486,0,0,50151,0,1,1 +1773613786.441926,30.43,4,3992.50,57.72,1452.72,2259.83,0.00,3515378062210.381348,0.000000,75,0,119.874495,0.053639,33097147,18775681,0,0,50153,0,1,1 +1773613791.441632,30.34,4,3992.50,58.15,1436.04,2276.55,0.00,3518644331066.779297,0.000000,11,0,118.784511,0.057860,33109516,18780197,0,0,50156,0,1,1 +1773613796.440634,30.98,4,3992.50,57.93,1444.43,2268.14,0.00,0.000000,0.000000,11,0,119.603613,0.061940,33122014,18784961,0,0,50158,0,1,1 +1773613801.442094,30.95,4,3992.50,57.62,1456.59,2255.99,0.00,0.180221,0.000000,205,0,118.945783,0.065932,33134403,18790081,0,0,50161,0,1,1 +1773613806.440333,30.90,4,3992.50,57.43,1464.19,2248.35,0.00,1.832677,0.000195,246,2,119.415472,0.044369,33146761,18793530,0,0,50163,0,1,1 +1773613811.438566,30.87,4,3992.50,57.37,1468.88,2246.04,0.00,32629.126602,33094.197010,2270564,2509095,119.209915,0.027588,33158980,18795643,0,0,50166,0,1,1 +1773613816.439263,16.81,4,3992.50,51.28,1707.14,2007.75,0.00,3517946447361.466797,3517946446907.654785,251,417,111.341984,0.029010,33170501,18797864,0,0,50168,0,1,1 +1773613821.442103,1.85,4,3992.50,51.35,1704.25,2010.64,0.00,3516439714290.795898,3516439714281.602051,205,0,0.004006,0.002221,33170579,18797924,0,0,50171,0,1,1 +1773613826.442192,0.65,4,3992.50,51.35,1704.25,2010.64,0.00,1.475853,10.675006,251,417,0.000000,0.000020,33170579,18797926,0,0,50173,0,1,1 +1773613831.441890,0.80,4,3992.50,51.35,1704.28,2010.60,0.00,3518649755031.366699,3518649755022.166992,205,0,0.000000,0.000674,33170579,18797933,0,0,50176,0,1,1 +1773613836.437597,0.95,4,3992.50,51.94,1685.47,2033.41,0.00,1.477147,10.684368,251,417,0.000000,0.000020,33170579,18797935,0,0,50178,0,1,1 +1773613841.437562,0.80,4,3992.50,51.62,1693.87,2021.01,0.00,3518462212481.410645,3518462212472.391602,11,0,0.000370,0.000635,33170590,18797953,0,0,50181,0,1,1 +1773613846.442377,0.60,4,3992.50,51.62,1694.00,2020.88,0.00,0.053464,0.000000,75,0,0.000000,0.000020,33170590,18797955,0,0,50183,0,1,1 +1773613851.441625,0.70,4,3992.50,51.61,1694.42,2020.46,0.00,0.126777,0.000000,205,0,0.000000,0.000030,33170590,18797958,0,0,50186,0,1,1 +1773613856.437582,0.60,4,3992.50,51.47,1699.58,2015.30,0.00,32655.543390,33120.330737,2272068,2509701,0.000000,0.000020,33170590,18797960,0,0,50188,0,1,1 +1773613861.437581,0.70,4,3992.50,51.51,1698.11,2016.77,0.00,3518438056569.095703,3518438056102.852539,246,2,0.000000,0.000030,33170590,18797963,0,0,50191,0,1,1 +1773613866.437638,0.90,4,3992.50,51.71,1687.66,2024.57,0.00,3518397205410.297852,10.674879,251,417,0.000157,0.000200,33170602,18797977,0,0,50193,0,1,1 +1773613871.442429,0.55,4,3992.50,51.71,1687.33,2024.57,0.00,32596.426362,33051.262089,2272068,2509741,0.000008,0.000038,33170603,18797981,0,0,50196,0,1,1 +1773613876.440660,1.50,4,3992.50,51.71,1687.34,2024.56,0.00,3519682292726.381348,3519682292261.873047,75,0,0.003514,0.002889,33170653,18798015,0,0,50198,0,1,1 +1773613881.437546,0.65,4,3992.50,51.71,1687.34,2024.56,0.00,0.126837,0.000000,205,0,0.000000,0.000030,33170653,18798018,0,0,50201,0,1,1 +1773613886.437986,41.99,4,3992.50,57.61,1456.31,2255.54,0.00,3518127447612.014160,0.000000,11,0,94.128406,0.034378,33180552,18800477,0,0,50203,0,1,1 +1773613891.438192,31.94,4,3992.50,57.66,1454.26,2257.54,0.00,0.180266,0.000000,205,0,120.162894,0.021707,33192978,18802132,0,0,50206,0,1,1 +1773613896.440506,30.31,4,3992.50,57.62,1455.74,2256.09,0.00,0.000000,0.000000,205,0,118.111559,0.028349,33205095,18804225,0,0,50208,0,1,1 +1773613901.440840,30.78,4,3992.50,58.28,1429.86,2281.86,0.00,0.000000,0.000000,205,0,120.157652,0.018124,33217439,18805652,0,0,50211,0,1,1 +1773613906.439008,30.46,4,3992.50,58.06,1438.61,2273.15,0.00,3519726656519.963867,0.000000,11,0,119.006863,0.019497,33229512,18807148,0,0,50213,0,1,1 +1773613911.442561,30.15,4,3992.50,57.73,1451.45,2260.14,0.00,2.010876,0.000195,246,2,119.282106,0.024126,33241752,18809001,0,0,50216,0,1,1 +1773613916.441540,30.34,4,3992.50,57.78,1449.50,2262.23,0.00,3519155839507.056641,3519155839509.069336,11,0,119.589589,0.023962,33253870,18810839,0,0,50218,0,1,1 +1773613921.442216,30.72,4,3992.50,57.96,1442.25,2269.39,0.00,32624.934171,33089.503140,2272075,2510008,118.757940,0.047471,33266136,18814492,0,0,50221,0,1,1 +1773613926.440148,12.64,4,3992.50,53.01,1636.32,2075.51,0.00,3519893376559.114746,3519893376094.290527,11,0,96.181980,0.045663,33276127,18818058,0,0,50223,0,1,1 +1773613931.438237,1.55,4,3992.50,52.61,1658.81,2059.76,0.00,2.013074,0.000195,246,2,0.003972,0.001811,33276208,18818116,0,0,50226,0,1,1 +1773613936.441493,1.60,4,3992.50,51.94,1685.07,2033.53,0.00,32606.245626,33072.647472,2272086,2510114,0.000000,0.000020,33276208,18818118,0,0,50228,0,1,1 +1773613941.442274,0.70,4,3992.50,51.74,1693.02,2025.57,0.00,3517887560498.036621,3517887560033.235352,205,0,0.000000,0.000030,33276208,18818121,0,0,50231,0,1,1 +1773613946.437637,0.80,4,3992.50,51.75,1692.33,2026.26,0.00,1.833732,0.000195,246,2,0.000000,0.000020,33276208,18818123,0,0,50233,0,1,1 +1773613951.437568,0.65,4,3992.50,51.76,1692.09,2026.50,0.00,3518485735836.456055,3518485735838.468750,11,0,0.000000,0.000030,33276208,18818126,0,0,50236,0,1,1 +1773613956.442493,0.90,4,3992.50,51.91,1681.11,2032.57,0.00,0.000000,0.000000,11,0,0.000000,0.000020,33276208,18818128,0,0,50238,0,1,1 +1773613961.441643,0.85,4,3992.50,51.93,1680.69,2033.00,0.00,0.000000,0.000000,11,0,0.000000,0.000513,33276208,18818134,0,0,50241,0,1,1 +1773613966.441762,0.60,4,3992.50,51.93,1680.69,2033.00,0.00,0.180269,0.000000,205,0,0.000000,0.000181,33276208,18818137,0,0,50243,0,1,1 +1773613971.441601,0.60,4,3992.50,51.91,1681.15,2032.54,0.00,1.832090,0.000195,246,2,0.000000,0.000030,33276208,18818140,0,0,50246,0,1,1 +1773613976.441682,0.80,4,3992.50,51.91,1681.15,2032.54,0.00,3518380021132.377930,3518380021134.336426,75,0,0.000126,0.000175,33276218,18818152,0,0,50248,0,1,1 +1773613981.439420,0.60,4,3992.50,51.92,1680.91,2032.79,0.00,3520029961192.064941,0.000000,11,0,0.000016,0.000046,33276220,18818157,0,0,50251,0,1,1 +1773613986.437547,1.00,4,3992.50,51.70,1687.12,2024.02,0.00,2.013059,0.000195,246,2,0.000000,0.000020,33276220,18818159,0,0,50253,0,1,1 +1773613991.437644,0.60,4,3992.50,51.70,1686.89,2024.25,0.00,3518369015852.922363,3518369015854.934570,11,0,0.000000,0.000030,33276220,18818162,0,0,50256,0,1,1 +1773613996.437874,37.55,4,3992.50,57.51,1459.54,2251.59,0.00,32628.011492,33093.073734,2272094,2510319,87.121991,0.029654,33285361,18820266,0,0,50258,0,1,1 +1773614001.437556,29.90,4,3992.50,57.79,1448.39,2262.58,0.00,3518661274864.154297,3518661274399.041016,11,0,118.193107,0.078020,33297824,18826268,0,0,50261,0,1,1 +1773614006.443579,30.71,4,3992.50,57.70,1451.79,2259.24,0.00,0.000000,0.000000,11,0,120.057337,0.111711,33310904,18834987,0,0,50263,0,1,1 +1773614011.437552,31.11,4,3992.50,58.01,1439.93,2271.12,0.00,0.000000,0.000000,11,0,118.341469,0.108699,33323689,18843469,0,0,50266,0,1,1 +1773614016.438332,30.63,4,3992.50,57.62,1455.28,2255.80,0.00,0.053507,0.000000,75,0,120.181299,0.109466,33336663,18851988,0,0,50268,0,1,1 +1773614021.441342,30.90,4,3992.50,57.59,1450.91,2254.59,0.00,0.000000,0.000000,75,0,118.727506,0.108640,33349550,18860489,0,0,50271,0,1,1 +1773614026.439256,31.42,4,3992.50,57.12,1468.94,2236.42,0.00,0.000000,0.000000,75,0,119.648728,0.106581,33362553,18868765,0,0,50273,0,1,1 +1773614031.437571,30.71,4,3992.50,57.28,1462.74,2242.64,0.00,1.603177,10.678796,251,417,119.039105,0.108953,33375466,18877238,0,0,50276,0,1,1 +1773614036.441534,15.36,4,3992.50,52.51,1649.40,2056.05,0.00,3515650295235.845703,3515650295226.833984,11,0,104.290315,0.092122,33386785,18884379,0,0,50278,0,1,1 +1773614041.437703,1.70,4,3992.50,51.80,1677.41,2028.04,0.00,0.000000,0.000000,11,0,0.003132,0.001579,33386844,18884421,0,0,50281,0,1,1 +1773614046.442595,0.85,4,3992.50,51.50,1688.83,2016.21,0.00,2.010337,0.000195,246,2,0.000000,0.000020,33386844,18884423,0,0,50283,0,1,1 +1773614051.438891,0.85,4,3992.50,51.40,1692.57,2012.39,0.00,3521046083611.839355,3521046083613.672852,205,0,0.000000,0.000030,33386844,18884426,0,0,50286,0,1,1 +1773614056.437804,0.70,4,3992.50,51.41,1692.11,2012.86,0.00,3519202219396.089355,0.000000,75,0,0.000000,0.000020,33386844,18884428,0,0,50288,0,1,1 +1773614061.437660,1.10,4,3992.50,51.41,1692.11,2012.85,0.00,1.958846,0.000195,246,2,0.000000,0.000030,33386844,18884431,0,0,50291,0,1,1 +1773614066.437557,0.65,4,3992.50,51.41,1692.11,2012.85,0.00,32628.306230,33095.994427,2272109,2510710,0.000000,0.000020,33386844,18884433,0,0,50293,0,1,1 +1773614071.441667,0.65,4,3992.50,51.36,1694.03,2010.93,0.00,3515547583871.504883,3515547583415.232422,251,417,0.000000,0.000030,33386844,18884436,0,0,50296,0,1,1 +1773614076.438530,0.95,4,3992.50,51.39,1692.77,2012.11,0.00,0.356376,3520646205944.499512,246,2,0.000000,0.000020,33386844,18884438,0,0,50298,0,1,1 +1773614081.442563,0.65,4,3992.50,51.36,1693.85,2011.05,0.00,32591.784692,33058.028794,2270620,2510332,0.000000,0.000030,33386844,18884441,0,0,50301,0,1,1 +1773614086.439018,0.60,4,3992.50,51.36,1693.85,2011.05,0.00,3520933724600.569824,3520933724135.631836,11,0,0.000126,0.000175,33386854,18884453,0,0,50303,0,1,1 +1773614091.439704,0.60,4,3992.50,51.36,1693.86,2011.04,0.00,32625.174029,33090.839929,2272109,2510759,0.000016,0.000046,33386856,18884458,0,0,50306,0,1,1 +1773614096.438254,0.75,4,3992.50,51.33,1695.24,2009.66,0.00,0.000000,0.003907,2272109,2510763,0.001447,0.002421,33386873,18884489,0,0,50308,0,1,1 +1773614101.442203,0.60,4,3992.50,51.38,1693.42,2011.48,0.00,3515660319996.555176,3515660319531.189453,11,0,0.000000,0.000030,33386873,18884492,0,0,50311,0,1,1 +1773614106.437660,34.52,4,3992.50,57.94,1445.58,2268.32,0.00,2.014135,0.000195,246,2,77.983857,0.039514,33395016,18887376,0,0,50313,0,1,1 +1773614111.437664,29.52,4,3992.50,57.62,1457.95,2256.06,0.00,3518434386394.779297,10.674991,251,417,118.163544,0.029359,33407083,18889594,0,0,50316,0,1,1 +1773614116.442178,28.66,4,3992.50,57.65,1456.98,2256.98,0.00,0.355831,3515263407606.543457,246,2,120.057714,0.024279,33419376,18891421,0,0,50318,0,1,1 +1773614121.440337,29.82,4,3992.50,57.67,1456.04,2257.99,0.00,32639.667856,33107.924099,2272115,2511049,118.206839,0.025351,33431511,18893351,0,0,50321,0,1,1 +1773614126.442288,31.06,4,3992.50,57.47,1463.85,2250.14,0.00,0.000000,0.007517,2272115,2511062,120.123562,0.030291,33443984,18895690,0,0,50323,0,1,1 +1773614131.437982,29.82,4,3992.50,57.86,1448.47,2265.48,0.00,3521469833676.834473,3521469833210.300293,75,0,118.664095,0.030312,33456114,18898070,0,0,50326,0,1,1 +1773614136.441144,30.78,4,3992.50,57.66,1456.25,2257.71,0.00,1.601624,10.668449,251,417,119.689492,0.032261,33468373,18900576,0,0,50328,0,1,1 +1773614141.442258,31.20,4,3992.50,57.48,1463.46,2250.54,0.00,0.356073,3517653253411.979492,246,2,119.336868,0.040148,33480467,18903665,0,0,50331,0,1,1 +1773614146.439126,17.48,4,3992.50,51.28,1706.24,2007.84,0.00,32638.582667,33106.002932,2270634,2510717,113.225600,0.038906,33492015,18906734,0,0,50333,0,1,1 +1773614151.437574,2.71,4,3992.50,51.29,1706.13,2007.93,0.00,3519530089606.616699,3519530089141.356445,11,0,0.003131,0.001579,33492074,18906776,0,0,50336,0,1,1 +1773614156.437571,0.75,4,3992.50,51.09,1713.68,2000.40,0.00,2.012306,0.000195,246,2,0.000000,0.000033,33492074,18906779,0,0,50338,0,1,1 +1773614161.441591,0.60,4,3992.50,50.95,1719.35,1994.73,0.00,3515611072421.121582,3515611072423.078613,75,0,0.000000,0.000512,33492074,18906785,0,0,50341,0,1,1 +1773614166.438740,0.90,4,3992.50,51.22,1712.16,2005.46,0.00,3520444033075.579590,0.000000,11,0,0.000031,0.000206,33492076,18906790,0,0,50343,0,1,1 +1773614171.441869,0.80,4,3992.50,51.23,1710.93,2005.95,0.00,1.655117,10.668519,251,417,0.000000,0.000030,33492076,18906793,0,0,50346,0,1,1 +1773614176.439766,0.85,4,3992.50,51.19,1712.70,2004.18,0.00,0.000000,0.000000,251,417,0.002844,0.001951,33492123,18906823,0,0,50348,0,1,1 +1773614181.441404,0.65,4,3992.50,51.03,1718.86,1998.02,0.00,32607.887272,33063.936794,2270641,2510850,0.000000,0.000030,33492123,18906826,0,0,50351,0,1,1 +1773614186.442314,0.60,4,3992.50,51.04,1718.62,1998.27,0.00,3517797094087.612305,3517797093620.467285,246,2,0.000031,0.000045,33492125,18906830,0,0,50353,0,1,1 +1773614191.441995,0.60,4,3992.50,51.04,1718.62,1998.27,0.00,3518661608710.534180,3518661608712.366699,205,0,0.000008,0.000038,33492126,18906834,0,0,50356,0,1,1 +1773614196.439577,0.80,4,3992.50,51.60,1696.95,2020.33,0.00,0.000000,0.000000,205,0,0.000076,0.000113,33492132,18906842,0,0,50358,0,1,1 +1773614201.441595,0.60,4,3992.50,51.38,1705.08,2011.81,0.00,3517018082942.358887,0.000000,75,0,0.000000,0.000030,33492132,18906845,0,0,50361,0,1,1 +1773614206.437582,0.80,4,3992.50,51.39,1704.83,2012.06,0.00,1.960362,0.000195,246,2,0.000000,0.000020,33492132,18906847,0,0,50363,0,1,1 +1773614211.437553,0.85,4,3992.50,51.39,1704.82,2012.07,0.00,3518457968486.947266,3518457968488.905762,75,0,0.000000,0.000030,33492132,18906850,0,0,50366,0,1,1 +1773614216.441736,32.01,4,3992.50,57.57,1462.74,2253.97,0.00,1.601297,10.666272,251,417,72.644418,0.038580,33499713,18909665,0,0,50368,0,1,1 +1773614221.440827,34.99,4,3992.50,57.72,1456.79,2260.04,0.00,3519076706761.742188,3519076706752.721680,11,0,122.798494,0.028951,33512539,18911848,0,0,50371,0,1,1 +1773614226.437539,30.91,4,3992.50,57.82,1453.20,2263.58,0.00,1.657242,10.682221,251,417,121.652154,0.035880,33525115,18914608,0,0,50373,0,1,1 +1773614231.437557,31.17,4,3992.50,57.40,1464.09,2247.17,0.00,0.356151,3518424360994.128418,246,2,120.163159,0.020073,33537317,18916148,0,0,50376,0,1,1 +1773614236.440922,30.55,4,3992.50,57.67,1453.34,2257.96,0.00,3516071018960.823242,3516071018962.780762,75,0,120.082086,0.016350,33549488,18917437,0,0,50378,0,1,1 +1773614241.442545,30.56,4,3992.50,57.60,1456.22,2255.10,0.00,3517295037665.565430,0.000000,11,0,120.063605,0.022472,33561786,18919175,0,0,50381,0,1,1 +1773614246.442272,31.10,4,3992.50,57.61,1455.59,2255.66,0.00,0.000000,0.000000,11,0,119.232420,0.025600,33573969,18921180,0,0,50383,0,1,1 +1773614251.441491,31.02,4,3992.50,57.63,1454.93,2256.43,0.00,1.656411,10.676864,251,417,119.183720,0.042897,33586261,18924548,0,0,50386,0,1,1 +1773614256.437571,16.87,4,3992.50,50.91,1718.18,1993.21,0.00,3521197621474.599121,3521197621465.573242,11,0,109.637483,0.045073,33597580,18928106,0,0,50388,0,1,1 +1773614261.437689,1.35,4,3992.50,52.32,1660.80,2048.25,0.00,2.012257,0.000195,246,2,0.003264,0.001712,33597650,18928159,0,0,50391,0,1,1 +1773614266.438365,0.80,4,3992.50,51.81,1680.67,2028.38,0.00,3517962042674.886230,10.673558,251,417,0.000000,0.000020,33597650,18928161,0,0,50393,0,1,1 +1773614271.437787,0.65,4,3992.50,51.47,1693.82,2015.23,0.00,0.356194,3518843876732.978027,246,2,0.000000,0.000030,33597650,18928164,0,0,50396,0,1,1 +1773614276.442294,0.60,4,3992.50,51.49,1693.04,2016.01,0.00,3515268335087.838867,3515268335089.849609,11,0,0.000000,0.000020,33597650,18928166,0,0,50398,0,1,1 +1773614281.442135,0.65,4,3992.50,51.49,1693.04,2016.01,0.00,1.656205,10.675535,251,417,0.000000,0.000030,33597650,18928169,0,0,50401,0,1,1 +1773614286.437486,0.95,4,3992.50,51.60,1688.93,2020.11,0.00,3521711844466.426270,3521711844457.398926,11,0,0.000000,0.000020,33597650,18928171,0,0,50403,0,1,1 +1773614291.437643,0.65,4,3992.50,51.50,1692.85,2016.20,0.00,1.656101,10.674861,251,417,0.000000,0.000674,33597650,18928178,0,0,50406,0,1,1 +1773614296.437608,0.65,4,3992.50,51.45,1694.48,2014.57,0.00,3518461270934.483887,3518461270925.464844,11,0,0.000000,0.000020,33597650,18928180,0,0,50408,0,1,1 +1773614301.437551,0.60,4,3992.50,51.46,1694.38,2014.66,0.00,0.053516,0.000000,75,0,0.000000,0.000030,33597650,18928183,0,0,50411,0,1,1 +1773614306.439967,0.65,4,3992.50,51.50,1692.67,2016.38,0.00,1.601863,10.670039,251,417,0.000126,0.000175,33597660,18928195,0,0,50413,0,1,1 +1773614311.441589,1.75,4,3992.50,51.51,1692.44,2016.61,0.00,32617.717005,33075.705659,2272148,2511770,0.000016,0.000046,33597662,18928200,0,0,50416,0,1,1 +1773614316.441894,1.05,4,3992.50,51.37,1692.83,2011.30,0.00,3518222739875.619629,3518222739406.479980,246,2,0.000000,0.000020,33597662,18928202,0,0,50418,0,1,1 +1773614321.442283,0.65,4,3992.50,51.31,1695.14,2009.02,0.00,32615.840545,33083.907824,2270659,2511386,0.000000,0.000030,33597662,18928205,0,0,50421,0,1,1 +1773614326.437843,28.99,4,3992.50,57.60,1448.96,2254.97,0.00,3521564644016.138672,3521564643549.632324,11,0,61.354266,0.043170,33604340,18931385,0,0,50423,0,1,1 +1773614331.437586,34.73,4,3992.50,57.93,1435.81,2268.22,0.00,0.053518,0.000000,75,0,123.389369,0.039735,33616877,18934350,0,0,50426,0,1,1 +1773614336.437860,30.55,4,3992.50,57.55,1450.93,2253.14,0.00,32628.142008,33095.479311,2272157,2511955,120.367211,0.023074,33628518,18936064,0,0,50428,0,1,1 +1773614341.440578,30.86,4,3992.50,57.75,1443.20,2260.84,0.00,3516524974368.755859,3516524973901.700195,11,0,120.362209,0.025862,33640099,18938045,0,0,50431,0,1,1 +1773614346.441675,31.06,4,3992.50,57.81,1440.75,2263.27,0.00,0.053504,0.000000,75,0,119.086242,0.025702,33651559,18940026,0,0,50433,0,1,1 +1773614351.437585,30.96,4,3992.50,57.73,1440.77,2260.32,0.00,1.603949,10.683934,251,417,119.859632,0.030201,33663171,18942354,0,0,50436,0,1,1 +1773614356.437824,30.92,4,3992.50,57.62,1445.25,2255.91,0.00,32617.207308,33074.493683,2270668,2511639,119.131454,0.031998,33674511,18944873,0,0,50438,0,1,1 +1773614361.437984,30.92,4,3992.50,57.68,1442.59,2258.48,0.00,3518324688385.895996,3518324687919.530273,75,0,119.746836,0.031645,33685723,18947282,0,0,50441,0,1,1 +1773614366.437575,19.02,4,3992.50,57.98,1431.18,2270.04,0.00,3518725206688.883789,0.000000,11,0,119.617251,0.029822,33696744,18949596,0,0,50443,0,1,1 +1773614371.437558,1.30,4,3992.50,51.93,1668.02,2033.19,0.00,0.000000,0.000000,11,0,2.521349,0.002933,33697082,18949743,0,0,50446,0,1,1 +1773614376.441898,1.00,4,3992.50,51.80,1673.39,2028.04,0.00,0.180117,0.000000,205,0,0.000000,0.000020,33697082,18949745,0,0,50448,0,1,1 +1773614381.437598,0.70,4,3992.50,51.54,1683.31,2017.97,0.00,32658.031955,33126.377015,2272170,2512211,0.000000,0.000030,33697082,18949748,0,0,50451,0,1,1 +1773614386.437556,0.65,4,3992.50,51.46,1686.49,2014.79,0.00,3518466956559.050293,3518466956100.303223,251,417,0.000000,0.000020,33697082,18949750,0,0,50453,0,1,1 +1773614391.440671,0.65,4,3992.50,51.45,1686.81,2014.46,0.00,32608.155112,33066.620265,2272170,2512218,0.000000,0.000030,33697082,18949753,0,0,50456,0,1,1 +1773614396.440538,0.75,4,3992.50,51.46,1686.58,2014.69,0.00,0.000000,0.006250,2272170,2512225,0.000512,0.001107,33697096,18949777,0,0,50458,0,1,1 +1773614401.441664,0.75,4,3992.50,51.46,1686.41,2014.87,0.00,3517644752200.227539,3517644751741.573730,251,417,0.000008,0.000038,33697097,18949781,0,0,50461,0,1,1 +1773614406.442168,0.85,4,3992.50,51.66,1684.23,2022.44,0.00,32625.191529,33083.988203,2272179,2512298,0.000000,0.000020,33697097,18949783,0,0,50463,0,1,1 +1773614411.442333,0.70,4,3992.50,51.47,1691.17,2015.02,0.00,3518321324264.830566,3518321323796.984375,11,0,0.000000,0.000030,33697097,18949786,0,0,50466,0,1,1 +1773614416.439078,0.70,4,3992.50,51.28,1698.57,2007.63,0.00,32651.395387,33119.595784,2272179,2512333,0.000126,0.000175,33697107,18949798,0,0,50468,0,1,1 +1773614421.442264,0.65,4,3992.50,51.28,1698.57,2007.63,0.00,3516197068985.478027,3516197068517.880859,11,0,0.000205,0.001044,33697114,18949815,0,0,50471,0,1,1 +1773614426.437649,0.60,4,3992.50,51.28,1698.57,2007.62,0.00,2.014163,0.000195,246,2,0.000008,0.000189,33697115,18949819,0,0,50473,0,1,1 +1773614431.438346,0.70,4,3992.50,51.19,1701.99,2004.21,0.00,3517946868300.202637,3517946868302.034668,205,0,0.000000,0.000030,33697115,18949822,0,0,50476,0,1,1 +1773614436.438082,25.41,4,3992.50,57.73,1446.03,2260.11,0.00,0.000000,0.000000,205,0,52.683458,0.025871,33702748,18951598,0,0,50478,0,1,1 +1773614441.437782,33.59,4,3992.50,57.71,1443.43,2259.53,0.00,3518648201807.576660,0.000000,75,0,122.794332,0.060901,33715646,18956195,0,0,50481,0,1,1 +1773614446.442432,31.05,4,3992.50,57.60,1447.59,2255.23,0.00,3515167856012.271484,0.000000,11,0,121.277488,0.088156,33728402,18963057,0,0,50483,0,1,1 +1773614451.441536,29.99,4,3992.50,57.67,1444.98,2257.94,0.00,0.000000,0.000000,11,0,120.813825,0.094528,33741197,18970426,0,0,50486,0,1,1 +1773614456.437758,31.06,4,3992.50,57.54,1450.15,2252.68,0.00,32654.861274,33123.345110,2272186,2512591,120.090333,0.115379,33754087,18979398,0,0,50488,0,1,1 +1773614461.439725,29.74,4,3992.50,57.73,1442.53,2260.30,0.00,0.000000,0.007419,2272186,2512600,119.550615,0.108999,33767015,18987928,0,0,50491,0,1,1 +1773614466.441579,29.69,4,3992.50,57.49,1452.01,2250.82,0.00,3517133117552.249512,3517133117084.232422,75,0,119.552059,0.108731,33779849,18996400,0,0,50493,0,1,1 +1773614471.438332,29.06,4,3992.50,57.50,1451.54,2251.28,0.00,0.000000,0.000000,75,0,119.679030,0.114650,33792805,19005316,0,0,50496,0,1,1 +1773614476.442443,20.61,4,3992.50,57.70,1443.94,2258.96,0.00,0.000000,0.000000,75,0,119.294174,0.089103,33805579,19012172,0,0,50498,0,1,1 +1773614481.441887,1.35,4,3992.50,51.18,1698.94,2003.95,0.00,0.126772,0.000000,205,0,9.819870,0.008126,33806681,19012659,0,0,50501,0,1,1 +1773614486.442020,0.70,4,3992.50,51.18,1698.95,2003.94,0.00,32629.279044,33097.876661,2272199,2512738,0.000031,0.000045,33806683,19012663,0,0,50503,0,1,1 +1773614491.437672,0.60,4,3992.50,51.18,1698.95,2003.94,0.00,3521499379852.322754,3521499379381.471191,246,2,0.000000,0.000674,33806683,19012670,0,0,50506,0,1,1 +1773614496.437654,1.00,4,3992.50,51.39,1690.96,2012.12,0.00,3518449645193.303711,3518449645195.315918,11,0,0.000000,0.000020,33806683,19012672,0,0,50508,0,1,1 +1773614501.437583,0.60,4,3992.50,51.38,1691.11,2011.75,0.00,1.656176,10.675347,251,417,0.000000,0.000030,33806683,19012675,0,0,50511,0,1,1 +1773614506.441944,0.70,4,3992.50,51.38,1691.12,2011.73,0.00,32590.678182,33048.680215,2270710,2512386,0.000000,0.000020,33806683,19012677,0,0,50513,0,1,1 +1773614511.437739,0.65,4,3992.50,51.40,1690.52,2012.32,0.00,0.000000,0.009383,2270710,2512394,0.000000,0.000030,33806683,19012680,0,0,50516,0,1,1 +1773614516.441942,0.60,4,3992.50,51.35,1692.30,2010.54,0.00,9.553492,10.672669,2272199,2512820,0.000000,0.000020,33806683,19012682,0,0,50518,0,1,1 +1773614521.441483,0.65,4,3992.50,51.36,1692.07,2010.78,0.00,3518760508822.261230,3518760508353.667969,11,0,0.000050,0.000092,33806687,19012689,0,0,50521,0,1,1 +1773614526.438537,0.95,4,3992.50,51.59,1682.97,2019.84,0.00,2.013491,0.000195,246,2,0.000142,0.000191,33806699,19012703,0,0,50523,0,1,1 +1773614531.437562,0.80,4,3992.50,51.40,1690.35,2012.47,0.00,3519123205644.156250,3519123205646.169434,11,0,0.000000,0.000030,33806699,19012706,0,0,50526,0,1,1 +1773614536.441941,0.60,4,3992.50,51.42,1689.61,2013.21,0.00,0.180116,0.000000,205,0,0.000000,0.000020,33806699,19012708,0,0,50528,0,1,1 +1773614541.441487,0.65,4,3992.50,51.43,1689.39,2013.43,0.00,32623.547867,33091.272490,2270710,2512453,0.000000,0.000030,33806699,19012711,0,0,50531,0,1,1 +1773614546.439307,30.16,4,3992.50,57.45,1453.31,2249.43,0.00,3519971828366.060547,3519971827896.342285,246,2,59.913224,0.025438,33812975,19014508,0,0,50533,0,1,1 +1773614551.437998,32.12,4,3992.50,57.46,1453.05,2249.65,0.00,0.000000,0.000000,246,2,120.219796,0.068575,33825774,19019767,0,0,50536,0,1,1 +1773614556.437547,29.56,4,3992.50,57.45,1453.53,2249.20,0.00,3518754442188.103516,3518754442189.935547,205,0,118.598550,0.090395,33838295,19026796,0,0,50538,0,1,1 +1773614561.440272,29.58,4,3992.50,57.71,1443.00,2259.37,0.00,1.831033,0.000195,246,2,119.726970,0.094429,33851058,19034184,0,0,50541,0,1,1 +1773614566.442003,29.66,4,3992.50,57.65,1445.14,2257.29,0.00,3517219506688.406250,3517219506690.237793,205,0,119.356888,0.109109,33863918,19042674,0,0,50543,0,1,1 +1773614571.442078,29.39,4,3992.50,57.49,1451.51,2250.95,0.00,3518384787764.389648,0.000000,11,0,118.995186,0.110731,33876705,19051328,0,0,50546,0,1,1 +1773614576.441183,29.19,4,3992.50,57.51,1450.68,2251.70,0.00,2.012665,0.000195,246,2,119.815277,0.095296,33889495,19058786,0,0,50548,0,1,1 +1773614581.441729,29.36,4,3992.50,57.82,1438.76,2263.66,0.00,3518052936885.821777,10.673834,251,417,118.721303,0.075960,33902078,19064703,0,0,50551,0,1,1 +1773614586.439661,21.88,4,3992.50,57.69,1443.84,2258.65,0.00,3519893036641.678711,3519893036632.476074,205,0,119.885350,0.070388,33914753,19070208,0,0,50553,0,1,1 +1773614591.441218,1.36,4,3992.50,52.48,1648.03,2054.71,0.00,32610.617525,33078.499250,2270728,2512775,10.416189,0.007813,33915928,19070731,0,0,50556,0,1,1 +1773614596.441774,0.85,4,3992.50,51.94,1669.07,2033.68,0.00,3518046216489.816895,3518046216022.021484,11,0,0.000000,0.000020,33915928,19070733,0,0,50558,0,1,1 +1773614601.438751,0.80,4,3992.50,51.64,1680.79,2021.96,0.00,1.657154,10.681654,251,417,0.000000,0.000030,33915928,19070736,0,0,50561,0,1,1 +1773614606.442214,0.70,4,3992.50,51.65,1680.71,2022.04,0.00,32596.719343,33055.395483,2270728,2512838,0.000000,0.000020,33915928,19070738,0,0,50563,0,1,1 +1773614611.442170,0.85,4,3992.50,51.65,1680.47,2022.29,0.00,3518468332299.382324,3518468331831.312012,75,0,0.000000,0.000030,33915928,19070741,0,0,50566,0,1,1 +1773614616.441471,1.05,4,3992.50,51.83,1678.00,2029.35,0.00,1.602861,10.676688,251,417,0.000000,0.000020,33915928,19070743,0,0,50568,0,1,1 +1773614621.437603,0.55,4,3992.50,51.86,1673.57,2030.30,0.00,0.356428,3521160604062.416992,246,2,0.000000,0.000674,33915928,19070750,0,0,50571,0,1,1 +1773614626.441698,0.55,4,3992.50,51.84,1674.17,2029.70,0.00,3515558516289.698242,3515558516291.709473,11,0,0.000000,0.000020,33915928,19070752,0,0,50573,0,1,1 +1773614631.441366,0.65,4,3992.50,51.85,1673.69,2030.18,0.00,32632.682853,33101.947027,2272217,2513333,0.000000,0.000030,33915928,19070755,0,0,50576,0,1,1 +1773614636.442250,0.65,4,3992.50,51.85,1673.69,2030.18,0.00,3517815267320.079590,3517815266850.929688,11,0,0.000126,0.000175,33915938,19070767,0,0,50578,0,1,1 +1773614641.442382,0.60,4,3992.50,51.85,1673.69,2030.18,0.00,0.053514,0.000000,75,0,0.000016,0.000046,33915940,19070772,0,0,50581,0,1,1 +1773614646.441931,0.90,4,3992.50,51.85,1672.91,2030.13,0.00,3518754199373.951172,0.000000,11,0,0.000000,0.000020,33915940,19070774,0,0,50583,0,1,1 +1773614651.441646,0.70,4,3992.50,51.82,1674.09,2028.96,0.00,1.656247,10.675805,251,417,0.000000,0.000030,33915940,19070777,0,0,50586,0,1,1 +1773614656.441598,27.40,4,3992.50,57.70,1443.94,2259.03,0.00,0.000000,0.000000,251,417,52.077660,0.025832,33921461,19072606,0,0,50588,0,1,1 +1773614661.441562,31.86,4,3992.50,57.95,1433.90,2269.03,0.00,0.000000,0.000000,251,417,119.767414,0.022379,33933699,19074250,0,0,50591,0,1,1 +1773614666.438144,29.48,4,3992.50,57.74,1442.39,2260.66,0.00,3520844592709.328613,3520844592700.303711,11,0,118.644766,0.020899,33945869,19075852,0,0,50593,0,1,1 +1773614671.441125,29.25,4,3992.50,57.75,1441.95,2260.95,0.00,0.000000,0.000000,11,0,119.695038,0.023734,33958201,19077679,0,0,50596,0,1,1 +1773614676.440748,28.56,4,3992.50,57.68,1444.52,2258.45,0.00,2.012457,0.000195,246,2,119.174696,0.022419,33970415,19079396,0,0,50598,0,1,1 +1773614681.438634,28.63,4,3992.50,57.75,1443.11,2260.99,0.00,3519925103750.063477,3519925103752.076660,11,0,119.621380,0.038963,33982703,19082455,0,0,50601,0,1,1 +1773614686.441890,28.41,4,3992.50,58.14,1427.68,2276.41,0.00,32599.767788,33067.971375,2270735,2513209,119.096059,0.049588,33995066,19086310,0,0,50603,0,1,1 +1773614691.442476,29.05,4,3992.50,57.92,1436.23,2267.79,0.00,9.560403,10.683221,2272224,2513640,119.153832,0.027246,34007341,19088361,0,0,50606,0,1,1 +1773614696.441946,21.52,4,3992.50,57.68,1445.89,2258.27,0.00,3518810723346.360840,3518810722876.679688,11,0,119.581860,0.026826,34019692,19090344,0,0,50608,0,1,1 +1773614701.442341,1.45,4,3992.50,51.30,1695.70,2008.45,0.00,32618.562953,33087.100024,2270747,2513260,18.627964,0.006112,34021685,19090755,0,0,50611,0,1,1 +1773614706.441837,1.26,4,3992.50,51.63,1692.25,2021.36,0.00,3518792133011.138672,3518792132542.336914,205,0,0.000619,0.000273,34021697,19090764,0,0,50613,0,1,1 +1773614711.441963,0.85,4,3992.50,51.44,1699.61,2013.97,0.00,32629.699133,33099.755323,2272236,2513819,0.000000,0.000030,34021697,19090767,0,0,50616,0,1,1 +1773614716.441989,1.75,4,3992.50,51.34,1703.68,2009.89,0.00,3518418677816.468262,3518418677344.570801,246,2,0.000000,0.000020,34021697,19090769,0,0,50618,0,1,1 +1773614721.438270,0.75,4,3992.50,51.38,1701.75,2011.82,0.00,3521056427690.879395,10.682947,251,417,0.000205,0.000562,34021704,19090783,0,0,50621,0,1,1 +1773614726.438075,0.55,4,3992.50,51.38,1701.75,2011.82,0.00,3518574175011.024414,3518574175002.005371,11,0,0.000000,0.000020,34021704,19090785,0,0,50623,0,1,1 +1773614731.442038,0.75,4,3992.50,51.38,1701.75,2011.82,0.00,0.180131,0.000000,205,0,0.000000,0.000030,34021704,19090788,0,0,50626,0,1,1 +1773614736.437593,0.95,4,3992.50,51.37,1691.49,2011.20,0.00,3521567920092.655273,0.000000,75,0,0.000000,0.000020,34021704,19090790,0,0,50628,0,1,1 +1773614741.441756,0.65,4,3992.50,51.37,1691.50,2011.20,0.00,32603.504752,33073.175327,2272236,2513921,0.000370,0.000634,34021715,19090808,0,0,50631,0,1,1 +1773614746.440621,0.55,4,3992.50,51.37,1691.50,2011.20,0.00,0.000000,0.007033,2272236,2513926,0.000109,0.000152,34021724,19090819,0,0,50633,0,1,1 +1773614751.441451,0.65,4,3992.50,51.37,1691.50,2011.20,0.00,3517853038868.116699,3517853038396.167480,246,2,0.000025,0.000705,34021726,19090828,0,0,50636,0,1,1 +1773614756.439828,0.55,4,3992.50,51.37,1691.50,2011.20,0.00,3519579805269.169922,3519579805271.183105,11,0,0.000000,0.000020,34021726,19090830,0,0,50638,0,1,1 +1773614761.441937,0.45,4,3992.50,51.37,1691.51,2011.19,0.00,0.000000,0.000000,11,0,0.000000,0.000030,34021726,19090833,0,0,50641,0,1,1 +1773614766.442477,23.98,4,3992.50,57.47,1454.89,2250.18,0.00,0.000000,0.000000,11,0,49.069839,0.024528,34026995,19092507,0,0,50643,0,1,1 +1773614771.441953,33.53,4,3992.50,57.41,1457.06,2247.91,0.00,0.000000,0.000000,11,0,122.389368,0.041763,34039594,19095688,0,0,50646,0,1,1 +1773614776.442339,30.11,4,3992.50,57.52,1453.08,2251.84,0.00,0.053511,0.000000,75,0,120.366317,0.044797,34052012,19099039,0,0,50648,0,1,1 +1773614781.438141,30.01,4,3992.50,57.41,1457.36,2247.58,0.00,0.126864,0.000000,205,0,120.673415,0.035578,34064464,19101726,0,0,50651,0,1,1 +1773614786.442159,28.85,4,3992.50,57.37,1458.78,2246.19,0.00,1.474694,10.666623,251,417,120.122538,0.027721,34076773,19103833,0,0,50653,0,1,1 +1773614791.439114,29.65,4,3992.50,57.51,1453.37,2251.53,0.00,3520581394335.694336,3520581394326.669922,11,0,119.790136,0.025943,34089078,19105830,0,0,50656,0,1,1 +1773614796.440800,30.11,4,3992.50,57.88,1438.19,2266.31,0.00,0.180213,0.000000,205,0,120.130383,0.034714,34101582,19108563,0,0,50658,0,1,1 +1773614801.441858,29.30,4,3992.50,58.02,1432.92,2271.72,0.00,0.000000,0.000000,205,0,118.939784,0.030126,34113742,19110877,0,0,50661,0,1,1 +1773614806.437557,21.76,4,3992.50,57.77,1442.84,2261.70,0.00,3521465849108.064941,0.000000,75,0,119.465522,0.029185,34125854,19113154,0,0,50663,0,1,1 +1773614811.442095,1.25,4,3992.50,52.79,1637.58,2066.95,0.00,0.000000,0.000000,75,0,14.610310,0.005652,34127430,19113513,0,0,50666,0,1,1 +1773614816.442574,0.85,4,3992.50,52.28,1657.74,2046.81,0.00,0.126746,0.000000,205,0,0.000619,0.000916,34127442,19113526,0,0,50668,0,1,1 +1773614821.439720,0.60,4,3992.50,51.95,1670.73,2033.81,0.00,3520446454410.678223,0.000000,75,0,0.000050,0.000092,34127446,19113533,0,0,50671,0,1,1 +1773614826.442216,0.90,4,3992.50,52.00,1675.13,2035.78,0.00,32604.957583,33074.328796,2270763,2513958,0.000000,0.000020,34127446,19113535,0,0,50673,0,1,1 +1773614831.442379,0.65,4,3992.50,52.00,1675.12,2035.79,0.00,0.000000,0.027343,2270763,2513987,0.000000,0.000030,34127446,19113538,0,0,50676,0,1,1 +1773614836.441740,0.70,4,3992.50,51.99,1675.51,2035.39,0.00,3518887569240.222168,3518887568779.602539,251,417,0.000000,0.000020,34127446,19113540,0,0,50678,0,1,1 +1773614841.437582,0.70,4,3992.50,51.99,1675.28,2035.62,0.00,0.356449,3521364992157.687500,246,2,0.000000,0.000030,34127446,19113543,0,0,50681,0,1,1 +1773614846.437661,0.70,4,3992.50,52.00,1675.03,2035.87,0.00,3518381735963.889648,3518381735965.721680,205,0,0.000000,0.000020,34127446,19113545,0,0,50683,0,1,1 +1773614851.441547,0.70,4,3992.50,52.00,1675.03,2035.87,0.00,32605.326781,33075.858779,2272252,2514427,0.000000,0.000030,34127446,19113548,0,0,50686,0,1,1 +1773614856.437631,0.85,4,3992.50,51.90,1677.42,2032.12,0.00,3521194909204.196777,3521194908742.136230,251,417,0.000101,0.000144,34127454,19113558,0,0,50688,0,1,1 +1773614861.437668,0.70,4,3992.50,51.75,1683.46,2026.04,0.00,32628.948411,33090.683189,2272252,2514451,0.000041,0.000077,34127458,19113565,0,0,50691,0,1,1 +1773614866.437543,0.65,4,3992.50,51.75,1683.46,2026.04,0.00,3518524985265.592285,3518524984794.823242,11,0,0.000000,0.000664,34127458,19113571,0,0,50693,0,1,1 +1773614871.442379,0.50,4,3992.50,51.75,1683.47,2026.04,0.00,0.180099,0.000000,205,0,0.000000,0.000030,34127458,19113574,0,0,50696,0,1,1 +1773614876.437738,1.20,4,3992.50,51.56,1690.65,2018.85,0.00,3521705660942.130859,0.000000,11,0,0.001372,0.001370,34127480,19113596,0,0,50698,0,1,1 +1773614881.437576,33.64,4,3992.50,58.15,1432.75,2276.67,0.00,32622.349656,33092.117868,2270768,2514174,70.705068,0.025199,34134941,19115386,0,0,50701,0,1,1 +1773614886.439877,30.97,4,3992.50,57.90,1442.68,2266.79,0.00,3516818897978.784668,3516818897509.194336,75,0,120.130509,0.067586,34147581,19120599,0,0,50703,0,1,1 +1773614891.437929,29.23,4,3992.50,57.81,1445.86,2263.50,0.00,1.603261,10.679354,251,417,118.236389,0.093481,34160197,19127915,0,0,50706,0,1,1 +1773614896.441620,30.73,4,3992.50,58.03,1437.42,2271.95,0.00,3515842143294.368652,3515842143285.176270,205,0,120.088162,0.047379,34172785,19131569,0,0,50708,0,1,1 +1773614901.438993,30.52,4,3992.50,58.04,1436.89,2272.56,0.00,0.000000,0.000000,205,0,119.038650,0.052425,34185177,19135646,0,0,50711,0,1,1 +1773614906.437504,31.00,4,3992.50,57.81,1446.17,2263.23,0.00,3519484984903.317383,0.000000,11,0,119.433768,0.107189,34198048,19144036,0,0,50713,0,1,1 +1773614911.441559,30.82,4,3992.50,57.96,1440.22,2269.20,0.00,0.053472,0.000000,75,0,119.098004,0.097120,34210888,19151590,0,0,50716,0,1,1 +1773614916.437799,30.52,4,3992.50,57.72,1449.47,2259.92,0.00,1.960263,0.000195,246,2,119.275213,0.077562,34223564,19157657,0,0,50718,0,1,1 +1773614921.437539,19.53,4,3992.50,57.74,1452.32,2260.56,0.00,3518619787950.812500,3518619787952.825195,11,0,119.599566,0.095908,34236419,19165165,0,0,50721,0,1,1 +1773614926.437704,0.80,4,3992.50,52.17,1670.30,2042.57,0.00,0.180267,0.000000,205,0,0.001904,0.000928,34236469,19165207,0,0,50723,0,1,1 +1773614931.437568,0.90,4,3992.50,51.75,1686.72,2026.16,0.00,32622.139952,33092.416025,2270779,2514370,0.002411,0.001690,34236515,19165243,0,0,50726,0,1,1 +1773614936.441671,1.25,4,3992.50,51.63,1691.37,2021.51,0.00,3515552418710.489258,3515552418240.737793,75,0,0.000000,0.000181,34236515,19165246,0,0,50728,0,1,1 +1773614941.438554,0.65,4,3992.50,51.63,1691.61,2021.27,0.00,1.603636,10.681853,251,417,0.000000,0.000030,34236515,19165249,0,0,50731,0,1,1 +1773614946.438960,0.95,4,3992.50,51.44,1692.60,2013.89,0.00,3518151928274.353516,3518151928265.335449,11,0,0.000000,0.000020,34236515,19165251,0,0,50733,0,1,1 +1773614951.437670,0.70,4,3992.50,51.44,1692.61,2013.89,0.00,0.053529,0.000000,75,0,0.000000,0.000030,34236515,19165254,0,0,50736,0,1,1 +1773614956.437886,0.65,4,3992.50,51.45,1692.18,2014.33,0.00,0.126752,0.000000,205,0,0.000000,0.000020,34236515,19165256,0,0,50738,0,1,1 +1773614961.441540,0.95,4,3992.50,51.45,1692.18,2014.33,0.00,1.830693,0.000195,246,2,0.000000,0.000030,34236515,19165259,0,0,50741,0,1,1 +1773614966.439347,0.60,4,3992.50,51.45,1692.18,2014.33,0.00,32633.733631,33106.272720,2270779,2514493,0.000000,0.000020,34236515,19165261,0,0,50743,0,1,1 +1773614971.438577,0.75,4,3992.50,51.45,1691.94,2014.56,0.00,3518979540391.021484,3518979539920.628906,11,0,0.000025,0.000061,34236517,19165266,0,0,50746,0,1,1 +1773614976.442100,0.85,4,3992.50,51.54,1685.71,2017.96,0.00,0.053478,0.000000,75,0,0.000117,0.000160,34236527,19165278,0,0,50748,0,1,1 +1773614981.438129,0.60,4,3992.50,51.54,1685.49,2017.96,0.00,3521234072288.253906,0.000000,11,0,0.000000,0.000030,34236527,19165281,0,0,50751,0,1,1 +1773614986.442337,0.65,4,3992.50,51.54,1685.49,2017.96,0.00,32603.554363,33074.636012,2272268,2514948,0.000000,0.000663,34236527,19165287,0,0,50753,0,1,1 +1773614991.441612,1.81,4,3992.50,51.24,1697.43,2006.00,0.00,3518947073794.620117,3518947073323.020020,75,0,0.002346,0.002342,34236564,19165322,0,0,50756,0,1,1 +1773614996.438988,43.11,4,3992.50,57.69,1444.85,2258.52,0.00,1.603478,10.680801,251,417,112.840519,0.075928,34248622,19171098,0,0,50758,0,1,1 +1773615001.437890,30.03,4,3992.50,57.96,1434.07,2269.27,0.00,3519210025995.568359,3519210025986.547363,11,0,121.981506,0.033308,34260947,19173562,0,0,50761,0,1,1 +1773615006.438480,29.63,4,3992.50,57.97,1433.82,2269.50,0.00,2.012067,0.000195,246,2,119.829814,0.021886,34272598,19175216,0,0,50763,0,1,1 +1773615011.442489,30.37,4,3992.50,57.95,1436.11,2268.93,0.00,3515618663570.664551,3515618663572.621582,75,0,120.388090,0.025557,34284407,19177211,0,0,50766,0,1,1 +1773615016.438773,29.34,4,3992.50,58.20,1426.42,2278.68,0.00,32645.691331,33116.782738,2270796,2514820,119.198570,0.025434,34295894,19179160,0,0,50768,0,1,1 +1773615021.441650,29.84,4,3992.50,57.99,1434.81,2270.33,0.00,3516413910466.961426,3516413910005.558105,251,417,119.948601,0.031775,34307595,19181551,0,0,50771,0,1,1 +1773615026.441659,28.70,4,3992.50,58.05,1432.32,2272.74,0.00,0.000000,0.000000,251,417,119.569537,0.032444,34319232,19184056,0,0,50773,0,1,1 +1773615031.440068,28.81,4,3992.50,58.12,1429.53,2275.53,0.00,3519557186179.367188,3519557186170.345215,11,0,119.456102,0.032670,34330709,19186591,0,0,50776,0,1,1 +1773615036.437599,6.65,4,3992.50,51.75,1688.32,2026.09,0.00,0.180362,0.000000,205,0,72.269678,0.021462,34337619,19188202,0,0,50778,0,1,1 +1773615041.442425,0.70,4,3992.50,51.76,1687.86,2026.55,0.00,1.830265,0.000195,246,2,0.000413,0.000808,34337633,19188223,0,0,50781,0,1,1 +1773615046.441747,0.80,4,3992.50,51.76,1687.86,2026.55,0.00,0.000000,0.000000,246,2,0.000008,0.000028,34337634,19188226,0,0,50783,0,1,1 +1773615051.437589,0.65,4,3992.50,51.77,1687.40,2027.01,0.00,32656.332760,33130.674411,2272301,2515402,0.000000,0.000030,34337634,19188229,0,0,50786,0,1,1 +1773615056.437653,0.70,4,3992.50,51.73,1689.20,2025.21,0.00,0.000000,0.028906,2272301,2515408,0.000000,0.000664,34337634,19188235,0,0,50788,0,1,1 +1773615061.441960,0.65,4,3992.50,51.73,1688.98,2025.43,0.00,3515408443063.233398,3515408442591.495117,205,0,0.000000,0.000030,34337634,19188238,0,0,50791,0,1,1 +1773615066.442336,0.80,4,3992.50,51.75,1686.04,2026.25,0.00,3518173088371.175293,0.000000,75,0,0.000031,0.000045,34337636,19188242,0,0,50793,0,1,1 +1773615071.441292,0.65,4,3992.50,51.75,1686.07,2026.25,0.00,3519171957792.685547,0.000000,11,0,0.000000,0.000030,34337636,19188245,0,0,50796,0,1,1 +1773615076.437632,0.75,4,3992.50,51.76,1685.84,2026.48,0.00,1.657365,10.683014,251,417,0.002175,0.001029,34337680,19188273,0,0,50798,0,1,1 +1773615081.437581,0.55,4,3992.50,51.58,1692.99,2019.33,0.00,3518473095899.786133,3518473095890.713867,75,0,0.000058,0.000100,34337685,19188281,0,0,50801,0,1,1 +1773615086.437955,0.60,4,3992.50,51.58,1692.99,2019.33,0.00,0.000000,0.000000,75,0,0.000056,0.000076,34337689,19188287,0,0,50803,0,1,1 +1773615091.437591,0.65,4,3992.50,51.58,1692.99,2019.33,0.00,3518693373279.414551,0.000000,11,0,0.000000,0.000030,34337689,19188290,0,0,50806,0,1,1 +1773615096.438275,1.25,4,3992.50,51.53,1693.98,2017.36,0.00,1.655926,10.673735,251,417,0.002040,0.001634,34337714,19188309,0,0,50808,0,1,1 +1773615101.441094,40.06,4,3992.50,58.24,1431.04,2280.22,0.00,0.355952,3516454820829.810547,246,2,106.092400,0.046964,34348776,19191751,0,0,50811,0,1,1 +1773615106.437559,29.55,4,3992.50,57.90,1444.27,2267.00,0.00,3520926362278.258789,3520926362280.091797,205,0,121.255328,0.024927,34361238,19193612,0,0,50813,0,1,1 +1773615111.437485,29.20,4,3992.50,58.03,1439.43,2271.88,0.00,3518488872262.580566,0.000000,75,0,120.974288,0.031851,34373760,19196052,0,0,50816,0,1,1 +1773615116.441589,30.56,4,3992.50,57.89,1444.95,2266.32,0.00,3515551795840.958008,0.000000,11,0,120.080289,0.050466,34386378,19199926,0,0,50818,0,1,1 +1773615121.441546,29.80,4,3992.50,57.93,1443.28,2268.05,0.00,2.012322,0.000195,246,2,119.571586,0.033546,34398792,19202472,0,0,50821,0,1,1 +1773615126.437567,29.43,4,3992.50,58.16,1436.40,2277.21,0.00,32645.595572,33119.377472,2270817,2515335,119.058279,0.019542,34410884,19203979,0,0,50823,0,1,1 +1773615131.441490,29.23,4,3992.50,58.05,1440.13,2272.93,0.00,3515678887811.233398,3515678887340.030273,205,0,120.079474,0.042184,34423271,19207278,0,0,50826,0,1,1 +1773615136.442187,29.31,4,3992.50,58.10,1438.25,2274.73,0.00,3517947383961.065918,0.000000,11,0,119.147446,0.028533,34435446,19209470,0,0,50828,0,1,1 +1773615141.438501,8.94,4,3992.50,53.59,1614.64,2098.19,0.00,0.180406,0.000000,205,0,79.172800,0.024740,34443621,19211352,0,0,50831,0,1,1 +1773615146.437566,0.75,4,3992.50,52.77,1646.97,2066.12,0.00,1.476155,10.677191,251,417,0.000650,0.000298,34443635,19211363,0,0,50833,0,1,1 +1773615151.442117,0.60,4,3992.50,52.47,1658.95,2054.15,0.00,3515237754777.124512,3515237754767.933594,205,0,0.000000,0.000030,34443635,19211366,0,0,50836,0,1,1 +1773615156.441965,1.00,4,3992.50,52.35,1663.37,2049.70,0.00,1.475924,10.675520,251,417,0.000000,0.000020,34443635,19211368,0,0,50838,0,1,1 +1773615161.441603,0.60,4,3992.50,52.32,1664.79,2048.29,0.00,3518692056487.560547,3518692056478.360840,205,0,0.000000,0.000030,34443635,19211371,0,0,50841,0,1,1 +1773615166.437575,1.56,4,3992.50,52.12,1672.66,2040.42,0.00,3521273858367.219238,0.000000,11,0,0.000000,0.000020,34443635,19211373,0,0,50843,0,1,1 +1773615171.437598,0.60,4,3992.50,52.15,1671.46,2041.62,0.00,32621.595464,33093.277336,2270829,2515523,0.000000,0.000030,34443635,19211376,0,0,50846,0,1,1 +1773615176.442350,0.60,4,3992.50,52.15,1671.46,2041.62,0.00,3515095798606.276855,3515095798135.040527,11,0,0.000000,0.000020,34443635,19211378,0,0,50848,0,1,1 +1773615181.437595,0.80,4,3992.50,52.15,1671.46,2041.62,0.00,0.180445,0.000000,205,0,0.000000,0.000030,34443635,19211381,0,0,50851,0,1,1 +1773615186.437610,0.90,4,3992.50,52.24,1667.02,2045.27,0.00,32631.023595,33104.042470,2272318,2515968,0.000101,0.000788,34443643,19211395,0,0,50853,0,1,1 +1773615191.442337,0.60,4,3992.50,52.24,1667.05,2045.27,0.00,3515114496698.320312,3515114496225.926758,11,0,0.000041,0.000077,34443647,19211402,0,0,50856,0,1,1 +1773615196.437576,0.60,4,3992.50,52.25,1666.81,2045.51,0.00,0.000000,0.000000,11,0,0.000000,0.000020,34443647,19211404,0,0,50858,0,1,1 +1773615201.439941,0.65,4,3992.50,52.25,1666.81,2045.51,0.00,0.000000,0.000000,11,0,0.000000,0.000030,34443647,19211407,0,0,50861,0,1,1 +1773615206.437721,23.42,4,3992.50,58.00,1441.51,2270.73,0.00,32636.263798,33108.191829,2270836,2515608,39.677328,0.022338,34447870,19212958,0,0,50863,0,1,1 +1773615211.437650,32.38,4,3992.50,58.11,1437.11,2275.14,0.00,3518487490634.194824,3518487490171.488770,251,417,118.164925,0.043643,34459905,19216311,0,0,50866,0,1,1 +1773615216.441123,28.86,4,3992.50,58.17,1439.91,2277.29,0.00,0.355905,3515995055665.979492,246,2,119.687383,0.036194,34472301,19219037,0,0,50868,0,1,1 +1773615221.438010,29.52,4,3992.50,58.12,1440.69,2275.54,0.00,3520628987020.600586,10.681650,251,417,118.637697,0.046501,34484422,19222677,0,0,50871,0,1,1 +1773615226.442198,29.84,4,3992.50,58.10,1441.32,2274.88,0.00,3515493251866.790039,3515493251857.778809,11,0,119.451361,0.027195,34496683,19224802,0,0,50873,0,1,1 +1773615231.441612,30.39,4,3992.50,58.00,1445.22,2271.01,0.00,1.656346,10.676444,251,417,118.790824,0.042301,34508841,19228130,0,0,50876,0,1,1 +1773615236.441935,30.44,4,3992.50,58.08,1442.43,2273.78,0.00,32618.020317,33080.967255,2270836,2515814,119.557468,0.027589,34521160,19230301,0,0,50878,0,1,1 +1773615241.437584,30.35,4,3992.50,58.07,1442.66,2273.58,0.00,9.569850,10.688010,2272325,2516240,118.945282,0.030080,34533096,19232631,0,0,50881,0,1,1 +1773615246.441547,26.89,4,3992.50,58.05,1443.71,2272.59,0.00,3515650959586.327637,3515650959122.601074,251,417,119.817614,0.082738,34545738,19239099,0,0,50883,0,1,1 +1773615251.437580,1.86,4,3992.50,52.73,1653.52,2064.58,0.00,32655.660334,33120.273257,2272336,2516301,32.681134,0.025249,34549288,19240980,0,0,50886,0,1,1 +1773615256.437618,0.65,4,3992.50,52.06,1679.72,2038.39,0.00,3518410200602.437988,3518410200138.196777,251,417,0.000000,0.000020,34549288,19240982,0,0,50888,0,1,1 +1773615261.442162,0.80,4,3992.50,51.99,1682.54,2035.56,0.00,0.355829,3515242672334.915527,246,2,0.000000,0.000673,34549288,19240989,0,0,50891,0,1,1 +1773615266.442268,0.60,4,3992.50,51.99,1682.46,2035.65,0.00,3518362664629.395996,10.674774,251,417,0.000000,0.000020,34549288,19240991,0,0,50893,0,1,1 +1773615271.437599,1.05,4,3992.50,52.00,1682.32,2035.79,0.00,3521725599029.283691,3521725599020.256348,11,0,0.000000,0.000030,34549288,19240994,0,0,50896,0,1,1 +1773615276.442137,0.75,4,3992.50,51.85,1694.00,2030.02,0.00,0.180110,0.000000,205,0,0.000000,0.000020,34549288,19240996,0,0,50898,0,1,1 +1773615281.440583,0.55,4,3992.50,51.84,1694.30,2029.73,0.00,1.476338,10.678513,251,417,0.000000,0.000030,34549288,19240999,0,0,50901,0,1,1 +1773615286.442039,0.75,4,3992.50,51.85,1694.05,2029.97,0.00,0.000000,0.000000,251,417,0.000000,0.000020,34549288,19241001,0,0,50903,0,1,1 +1773615291.442008,0.60,4,3992.50,51.82,1695.03,2029.00,0.00,3518458892440.006348,3518458892430.987793,11,0,0.000000,0.000030,34549288,19241004,0,0,50906,0,1,1 +1773615296.441736,0.75,4,3992.50,51.83,1694.81,2029.21,0.00,2.012414,0.000195,246,2,0.000638,0.001262,34549312,19241038,0,0,50908,0,1,1 +1773615301.441943,0.55,4,3992.50,51.86,1693.79,2030.24,0.00,3518291536131.289551,3518291536133.121582,205,0,0.000016,0.000046,34549314,19241043,0,0,50911,0,1,1 +1773615306.438678,0.85,4,3992.50,51.95,1690.45,2034.13,0.00,3520736444830.292480,0.000000,11,0,0.000000,0.000020,34549314,19241045,0,0,50913,0,1,1 +1773615311.442027,0.75,4,3992.50,51.97,1689.54,2034.85,0.00,0.000000,0.000000,11,0,0.000000,0.000030,34549314,19241048,0,0,50916,0,1,1 +1773615316.437462,20.72,4,3992.50,58.10,1449.59,2274.78,0.00,2.014144,0.000195,246,2,31.275956,0.023356,34552653,19242669,0,0,50918,0,1,1 +1773615321.440805,35.10,4,3992.50,58.15,1447.76,2276.58,0.00,3516086134288.027832,3516086134290.038574,11,0,120.087581,0.063733,34564978,19247535,0,0,50921,0,1,1 +1773615326.440184,29.59,4,3992.50,58.54,1432.32,2292.02,0.00,1.656358,10.676522,251,417,120.178182,0.062670,34577053,19252415,0,0,50923,0,1,1 +1773615331.437551,30.58,4,3992.50,58.30,1441.84,2282.47,0.00,3520290792652.374512,3520290792643.297363,75,0,118.623112,0.049425,34589043,19256311,0,0,50926,0,1,1 +1773615336.438800,30.65,4,3992.50,58.19,1445.94,2278.39,0.00,3517558528390.848145,0.000000,11,0,119.733399,0.048730,34601221,19260128,0,0,50928,0,1,1 +1773615341.441555,30.46,4,3992.50,58.11,1443.86,2275.27,0.00,32603.958837,33076.454146,2270857,2516341,119.498705,0.054520,34613329,19264319,0,0,50931,0,1,1 +1773615346.442313,30.58,4,3992.50,58.04,1446.96,2272.45,0.00,3517903973184.886719,3517903972712.022461,205,0,118.943422,0.047817,34625380,19268079,0,0,50933,0,1,1 +1773615351.438525,29.83,4,3992.50,58.18,1441.32,2277.87,0.00,3521104631555.801758,0.000000,75,0,120.053466,0.057189,34637456,19272562,0,0,50936,0,1,1 +1773615356.441883,27.23,4,3992.50,58.00,1448.42,2270.88,0.00,0.000000,0.000000,75,0,118.881164,0.044765,34649414,19276072,0,0,50938,0,1,1 +1773615361.437579,1.81,4,3992.50,53.14,1638.73,2080.54,0.00,1.960477,0.000195,246,2,38.086762,0.017684,34653280,19277392,0,0,50941,0,1,1 +1773615366.442545,1.00,4,3992.50,52.54,1661.79,2057.15,0.00,0.000000,0.000000,246,2,0.000031,0.000045,34653282,19277396,0,0,50943,0,1,1 +1773615371.437582,0.70,4,3992.50,52.43,1666.05,2052.89,0.00,3521932947099.854492,3521932947101.814941,75,0,0.000000,0.000030,34653282,19277399,0,0,50946,0,1,1 +1773615376.437664,0.90,4,3992.50,52.45,1665.59,2053.35,0.00,1.958757,0.000195,246,2,0.002843,0.001950,34653329,19277429,0,0,50948,0,1,1 +1773615381.437642,0.65,4,3992.50,52.46,1664.87,2054.07,0.00,3518452195376.468262,3518452195378.480957,11,0,0.000000,0.000030,34653329,19277432,0,0,50951,0,1,1 +1773615386.437566,0.60,4,3992.50,52.46,1664.88,2054.06,0.00,0.000000,0.000000,11,0,0.000031,0.000528,34653331,19277439,0,0,50953,0,1,1 +1773615391.442088,0.75,4,3992.50,52.46,1664.88,2054.06,0.00,32602.089856,33075.856761,2272357,2516964,0.000000,0.000191,34653331,19277443,0,0,50956,0,1,1 +1773615396.441818,0.60,4,3992.50,52.46,1664.88,2054.05,0.00,0.000000,0.021095,2272357,2516971,0.000000,0.000020,34653331,19277445,0,0,50958,0,1,1 +1773615401.442310,0.90,4,3992.50,52.62,1658.66,2060.06,0.00,3518091041124.794434,3518091040650.571289,75,0,0.000000,0.000030,34653331,19277448,0,0,50961,0,1,1 +1773615406.442042,0.70,4,3992.50,52.62,1658.67,2060.06,0.00,1.602723,10.675767,251,417,0.000076,0.000113,34653337,19277456,0,0,50963,0,1,1 +1773615411.441833,0.55,4,3992.50,52.62,1658.45,2060.28,0.00,32621.723380,33085.878723,2270868,2516597,0.000008,0.000038,34653338,19277460,0,0,50966,0,1,1 +1773615416.442366,0.50,4,3992.50,52.62,1658.45,2060.28,0.00,3518062519491.214844,3518062519027.128418,251,417,0.000000,0.000020,34653338,19277462,0,0,50968,0,1,1 +1773615421.437566,0.60,4,3992.50,52.60,1659.31,2059.42,0.00,32661.276671,33126.986067,2272357,2517029,0.000101,0.000154,34653346,19277473,0,0,50971,0,1,1 +1773615426.441761,16.72,4,3992.50,58.35,1433.82,2284.47,0.00,3515487434805.518066,3515487434329.623535,246,2,24.421662,0.019199,34656131,19278681,0,0,50973,0,1,1 +1773615431.438622,36.05,4,3992.50,58.28,1436.30,2281.91,0.00,3520647192353.289551,3520647192355.303223,11,0,124.263458,0.063966,34669060,19283586,0,0,50976,0,1,1 +1773615436.437946,30.45,4,3992.50,58.43,1430.45,2287.79,0.00,0.053523,0.000000,75,0,121.604400,0.022700,34681179,19285245,0,0,50978,0,1,1 +1773615441.441682,29.62,4,3992.50,58.77,1417.42,2300.83,0.00,0.126663,0.000000,205,0,119.550520,0.025855,34692732,19287243,0,0,50981,0,1,1 +1773615446.437547,30.78,4,3992.50,58.67,1421.17,2297.11,0.00,1.833547,0.000195,246,2,120.063332,0.024734,34704171,19289168,0,0,50983,0,1,1 +1773615451.442037,29.80,4,3992.50,58.64,1422.44,2295.70,0.00,3515280699136.371094,3515280699138.327637,75,0,120.022074,0.028718,34715750,19291339,0,0,50986,0,1,1 +1773615456.441388,30.92,4,3992.50,58.69,1424.80,2297.65,0.00,0.000000,0.000000,75,0,118.550700,0.033834,34727314,19293941,0,0,50988,0,1,1 +1773615461.438404,31.30,4,3992.50,58.53,1430.66,2291.75,0.00,0.000000,0.000000,75,0,118.471721,0.030641,34738273,19296285,0,0,50991,0,1,1 +1773615466.437551,26.74,4,3992.50,58.69,1424.83,2297.71,0.00,0.126779,0.000000,205,0,120.115359,0.029305,34749204,19298584,0,0,50993,0,1,1 +1773615471.437666,1.51,4,3992.50,53.59,1624.28,2098.24,0.00,0.000000,0.000000,205,0,38.408917,0.011696,34752787,19299401,0,0,50996,0,1,1 +1773615476.439652,0.75,4,3992.50,52.61,1662.84,2059.69,0.00,3517040097061.230957,0.000000,11,0,0.000000,0.000020,34752787,19299403,0,0,50998,0,1,1 +1773615481.437651,0.60,4,3992.50,52.26,1676.25,2046.29,0.00,2.013110,0.000195,246,2,0.000000,0.000030,34752787,19299406,0,0,51001,0,1,1 +1773615486.442005,1.20,4,3992.50,52.37,1678.00,2050.45,0.00,0.000000,0.000000,246,2,0.000000,0.000020,34752787,19299408,0,0,51003,0,1,1 +1773615491.441989,0.60,4,3992.50,52.42,1676.30,2052.17,0.00,32620.274013,33096.100188,2270889,2517068,0.000000,0.000030,34752787,19299411,0,0,51006,0,1,1 +1773615496.442366,0.65,4,3992.50,52.23,1683.71,2044.76,0.00,0.000000,0.004687,2270889,2517073,0.000000,0.000020,34752787,19299413,0,0,51008,0,1,1 +1773615501.437646,0.60,4,3992.50,52.23,1683.71,2044.76,0.00,3521761894168.559570,3521761893694.241211,75,0,0.000000,0.000030,34752787,19299416,0,0,51011,0,1,1 +1773615506.442047,0.80,4,3992.50,52.23,1683.71,2044.75,0.00,1.957066,0.000195,246,2,0.000000,0.000020,34752787,19299418,0,0,51013,0,1,1 +1773615511.441889,0.70,4,3992.50,52.23,1683.71,2044.75,0.00,32630.755817,33107.733533,2272378,2517509,0.000000,0.000030,34752787,19299421,0,0,51016,0,1,1 +1773615516.442275,0.95,4,3992.50,52.22,1685.74,2044.71,0.00,3518165748358.719727,3518165747881.793945,246,2,0.000126,0.000175,34752797,19299433,0,0,51018,0,1,1 +1773615521.438646,0.70,4,3992.50,52.02,1691.05,2036.83,0.00,3520992643937.568848,3520992643939.583008,11,0,0.000016,0.000529,34752799,19299441,0,0,51021,0,1,1 +1773615526.441994,0.70,4,3992.50,52.04,1690.58,2037.31,0.00,32600.351654,33073.921297,2270889,2517124,0.000000,0.000181,34752799,19299444,0,0,51023,0,1,1 +1773615531.438393,0.80,4,3992.50,52.04,1690.58,2037.31,0.00,0.000000,0.005473,2270889,2517130,0.000000,0.000030,34752799,19299447,0,0,51026,0,1,1 +1773615536.439551,21.95,4,3992.50,58.53,1436.25,2291.59,0.00,3517622140397.173340,3517622139923.210938,205,0,35.044524,0.017530,34756542,19300645,0,0,51028,0,1,1 +1773615541.441703,36.11,4,3992.50,58.51,1437.18,2290.63,0.00,0.000000,0.000000,205,0,119.918612,0.021489,34769028,19302236,0,0,51031,0,1,1 +1773615546.440364,31.25,4,3992.50,58.10,1442.11,2274.75,0.00,3519379775509.379883,0.000000,11,0,118.397084,0.018671,34781286,19303633,0,0,51033,0,1,1 +1773615551.438551,31.02,4,3992.50,57.98,1445.99,2270.07,0.00,32643.634382,33119.029161,2272385,2517773,120.011634,0.026456,34793547,19305649,0,0,51036,0,1,1 +1773615556.441958,30.42,4,3992.50,57.75,1454.89,2261.23,0.00,3516041260648.200195,3516041260173.301758,11,0,119.096601,0.063527,34805887,19310637,0,0,51038,0,1,1 +1773615561.437898,29.76,4,3992.50,57.98,1445.84,2270.20,0.00,0.000000,0.000000,11,0,119.278974,0.062537,34818507,19315497,0,0,51041,0,1,1 +1773615566.441806,30.20,4,3992.50,58.04,1443.56,2272.46,0.00,0.180133,0.000000,205,0,119.277652,0.040200,34830800,19318622,0,0,51043,0,1,1 +1773615571.437563,29.89,4,3992.50,57.63,1459.68,2256.37,0.00,3521425589237.963379,0.000000,11,0,119.280839,0.065847,34843183,19323767,0,0,51046,0,1,1 +1773615576.437589,26.92,4,3992.50,57.88,1449.85,2266.28,0.00,0.000000,0.000000,11,0,119.389197,0.092812,34855859,19331032,0,0,51048,0,1,1 +1773615581.441152,2.06,4,3992.50,53.67,1614.72,2101.35,0.00,0.000000,0.000000,11,0,35.836089,0.033441,34859765,19333551,0,0,51051,0,1,1 +1773615586.437580,0.80,4,3992.50,52.47,1661.75,2054.33,0.00,1.657337,10.682828,251,417,0.000000,0.000020,34859765,19333553,0,0,51053,0,1,1 +1773615591.440556,0.65,4,3992.50,52.00,1680.12,2035.96,0.00,32601.303837,33066.382741,2270911,2517516,0.000000,0.000673,34859765,19333560,0,0,51056,0,1,1 +1773615596.441923,0.75,4,3992.50,51.99,1680.73,2035.35,0.00,3517475542767.631836,3517475542293.386230,11,0,0.000512,0.001106,34859779,19333584,0,0,51058,0,1,1 +1773615601.438012,1.00,4,3992.50,51.84,1686.57,2029.51,0.00,1.657449,10.683551,251,417,0.000000,0.000030,34859779,19333587,0,0,51061,0,1,1 +1773615606.437593,1.00,4,3992.50,51.66,1693.44,2022.77,0.00,32633.021583,33099.640485,2272409,2517985,0.000000,0.000020,34859779,19333589,0,0,51063,0,1,1 +1773615611.440217,0.75,4,3992.50,51.67,1693.21,2023.00,0.00,3516591602163.255859,3516591601687.853027,75,0,0.000000,0.000030,34859779,19333592,0,0,51066,0,1,1 +1773615616.437620,0.70,4,3992.50,51.68,1692.99,2023.21,0.00,3520265538348.488770,0.000000,11,0,0.000000,0.000020,34859779,19333594,0,0,51068,0,1,1 +1773615621.441605,0.50,4,3992.50,51.68,1693.00,2023.21,0.00,2.010702,0.000195,246,2,0.000204,0.000561,34859786,19333608,0,0,51071,0,1,1 +1773615626.441660,0.50,4,3992.50,51.68,1692.75,2023.45,0.00,3518398496646.262695,3518398496648.221191,75,0,0.000134,0.000183,34859797,19333621,0,0,51073,0,1,1 +1773615631.440727,0.70,4,3992.50,51.68,1692.75,2023.45,0.00,1.959155,0.000195,246,2,0.000000,0.000030,34859797,19333624,0,0,51076,0,1,1 +1773615636.440710,0.70,4,3992.50,51.75,1687.63,2025.99,0.00,3518449144164.374512,3518449144166.386719,11,0,0.000000,0.000020,34859797,19333626,0,0,51078,0,1,1 +1773615641.439356,0.65,4,3992.50,51.56,1695.05,2018.59,0.00,0.000000,0.000000,11,0,0.000370,0.000635,34859808,19333644,0,0,51081,0,1,1 +1773615646.441290,12.64,4,3992.50,58.04,1441.30,2272.31,0.00,32619.330560,33094.934110,2272414,2518192,13.017481,0.014014,34861332,19334591,0,0,51083,0,1,1 +1773615651.438232,36.05,4,3992.50,57.92,1445.74,2267.83,0.00,0.000000,0.081397,2272414,2518285,122.244683,0.032386,34873875,19337049,0,0,51086,0,1,1 +1773615656.439308,30.70,4,3992.50,57.87,1447.79,2265.79,0.00,3517680182029.121094,3517680181553.354492,11,0,122.141661,0.034886,34886356,19339699,0,0,51088,0,1,1 +1773615661.437757,30.35,4,3992.50,58.04,1441.19,2272.39,0.00,0.180329,0.000000,205,0,120.202231,0.030291,34898673,19342102,0,0,51091,0,1,1 +1773615666.440185,30.57,4,3992.50,58.00,1439.89,2270.81,0.00,1.475163,10.670015,251,417,120.104587,0.043449,34910831,19345518,0,0,51093,0,1,1 +1773615671.438563,29.19,4,3992.50,57.63,1454.14,2256.44,0.00,3519578771585.804688,3519578771576.602539,205,0,120.201744,0.044859,34922956,19349034,0,0,51096,0,1,1 +1773615676.441843,31.38,4,3992.50,57.71,1451.08,2259.53,0.00,3516130673574.079590,0.000000,11,0,119.287175,0.039660,34935100,19352031,0,0,51098,0,1,1 +1773615681.441537,30.68,4,3992.50,57.79,1447.78,2262.74,0.00,2.012428,0.000195,246,2,119.368942,0.041559,34947218,19355324,0,0,51101,0,1,1 +1773615686.441604,31.25,4,3992.50,57.67,1452.73,2257.88,0.00,3518390575429.003418,3518390575430.835449,205,0,119.761573,0.048257,34959360,19359110,0,0,51103,0,1,1 +1773615691.442365,1.35,4,3992.50,52.30,1663.00,2047.67,0.00,1.831752,0.000195,246,2,49.058882,0.019471,34964287,19360655,0,0,51106,0,1,1 +1773615696.441584,1.20,4,3992.50,52.14,1678.79,2041.23,0.00,3518986876742.780762,3518986876744.739746,75,0,0.003099,0.001543,34964344,19360694,0,0,51108,0,1,1 +1773615701.442215,0.60,4,3992.50,52.06,1681.64,2038.34,0.00,3517993335924.367188,0.000000,11,0,0.000000,0.000030,34964344,19360697,0,0,51111,0,1,1 +1773615706.437645,0.70,4,3992.50,52.07,1681.42,2038.55,0.00,0.180438,0.000000,205,0,0.000000,0.000020,34964344,19360699,0,0,51113,0,1,1 +1773615711.441668,0.75,4,3992.50,52.07,1681.42,2038.55,0.00,3515608543920.485840,0.000000,11,0,0.000000,0.000030,34964344,19360702,0,0,51116,0,1,1 +1773615716.441948,0.65,4,3992.50,52.07,1681.42,2038.55,0.00,0.000000,0.000000,11,0,0.000000,0.000020,34964344,19360704,0,0,51118,0,1,1 +1773615721.440490,0.65,4,3992.50,52.07,1681.43,2038.55,0.00,0.000000,0.000000,11,0,0.000050,0.000736,34964348,19360715,0,0,51121,0,1,1 +1773615726.442567,0.95,4,3992.50,52.07,1680.03,2038.72,0.00,32608.989322,33084.083848,2270937,2518172,0.000008,0.000028,34964349,19360718,0,0,51123,0,1,1 +1773615731.442318,1.00,4,3992.50,52.07,1680.05,2038.72,0.00,3518612038612.033203,3518612038136.664062,75,0,0.000000,0.000030,34964349,19360721,0,0,51126,0,1,1 +1773615736.442413,1.10,4,3992.50,52.08,1679.81,2038.96,0.00,0.000000,0.000000,75,0,0.000000,0.000020,34964349,19360723,0,0,51128,0,1,1 +1773615741.437571,0.65,4,3992.50,52.08,1679.81,2038.96,0.00,0.000000,0.000000,75,0,0.000126,0.000185,34964359,19360736,0,0,51131,0,1,1 +1773615746.442281,0.85,4,3992.50,52.08,1679.82,2038.96,0.00,1.601129,10.665149,251,417,0.000008,0.000028,34964360,19360739,0,0,51133,0,1,1 +1773615751.437580,0.70,4,3992.50,52.08,1679.82,2038.96,0.00,3521748328486.053223,3521748328476.972656,75,0,0.000000,0.000030,34964360,19360742,0,0,51136,0,1,1 +1773615756.439162,19.65,4,3992.50,58.28,1436.88,2281.84,0.00,32621.777538,33098.239572,2272434,2518790,26.172128,0.020638,34967250,19362063,0,0,51138,0,1,1 +1773615761.437653,35.10,4,3992.50,57.97,1449.25,2269.47,0.00,3519499363976.350586,3519499363508.669434,251,417,123.893102,0.066441,34980219,19367167,0,0,51141,0,1,1 +1773615766.443250,29.77,4,3992.50,58.19,1440.73,2278.08,0.00,3514503420985.084473,3514503420976.022461,75,0,121.829378,0.017178,34992233,19368476,0,0,51143,0,1,1 +1773615771.437722,29.96,4,3992.50,58.19,1440.38,2278.34,0.00,32668.215276,33145.486078,2272434,2518864,120.695911,0.023403,35004170,19370300,0,0,51146,0,1,1 +1773615776.437550,29.31,4,3992.50,58.38,1433.16,2285.57,0.00,3518558498964.594238,3518558498496.907227,251,417,119.893946,0.027894,35015823,19372435,0,0,51148,0,1,1 +1773615781.438190,29.20,4,3992.50,58.59,1424.57,2294.09,0.00,0.000000,0.000000,251,417,119.071426,0.030901,35027027,19374852,0,0,51151,0,1,1 +1773615786.437956,29.15,4,3992.50,58.40,1432.34,2286.32,0.00,0.356169,3518601837215.284668,246,2,119.462726,0.029667,35038035,19377113,0,0,51153,0,1,1 +1773615791.437825,29.68,4,3992.50,58.22,1443.55,2279.41,0.00,32621.433705,33099.099928,2270945,2518502,118.838603,0.027432,35048917,19379264,0,0,51156,0,1,1 +1773615796.437653,25.87,4,3992.50,58.58,1429.46,2293.59,0.00,3518558328668.404785,3518558328192.746582,11,0,119.633613,0.027206,35059836,19381393,0,0,51158,0,1,1 +1773615801.441595,1.65,4,3992.50,52.85,1653.76,2069.27,0.00,0.180131,0.000000,205,0,35.877917,0.010127,35063160,19382086,0,0,51161,0,1,1 +1773615806.441857,0.85,4,3992.50,52.24,1677.80,2045.23,0.00,3518252908722.648926,0.000000,11,0,0.000008,0.000028,35063161,19382089,0,0,51163,0,1,1 +1773615811.439155,0.75,4,3992.50,51.87,1692.32,2030.71,0.00,1.657048,10.680969,251,417,0.000000,0.000030,35063161,19382092,0,0,51166,0,1,1 +1773615816.437545,0.95,4,3992.50,51.86,1687.57,2030.29,0.00,3519570450029.841797,3519570450020.820312,11,0,0.000000,0.000020,35063161,19382094,0,0,51168,0,1,1 +1773615821.441913,0.55,4,3992.50,51.81,1689.56,2028.30,0.00,0.053469,0.000000,75,0,0.000000,0.000030,35063161,19382097,0,0,51171,0,1,1 +1773615826.441431,0.60,4,3992.50,51.81,1689.56,2028.30,0.00,0.000000,0.000000,75,0,0.000000,0.000020,35063161,19382099,0,0,51173,0,1,1 +1773615831.439090,0.65,4,3992.50,51.81,1689.57,2028.30,0.00,3520085159983.354980,0.000000,11,0,0.000000,0.000030,35063161,19382102,0,0,51176,0,1,1 +1773615836.441815,0.70,4,3992.50,51.81,1689.57,2028.30,0.00,2.011209,0.000195,246,2,0.000000,0.000020,35063161,19382104,0,0,51178,0,1,1 +1773615841.437615,0.80,4,3992.50,51.81,1689.57,2028.29,0.00,3521395411326.141602,3521395411327.975098,205,0,0.000000,0.000030,35063161,19382107,0,0,51181,0,1,1 +1773615846.437643,0.75,4,3992.50,51.81,1689.33,2028.50,0.00,1.475871,10.675135,251,417,0.000126,0.000175,35063171,19382119,0,0,51183,0,1,1 +1773615851.441595,0.80,4,3992.50,51.72,1692.99,2024.87,0.00,32604.799480,33072.669823,2272445,2519162,0.000016,0.000689,35063173,19382128,0,0,51186,0,1,1 +1773615856.437616,0.70,4,3992.50,51.76,1691.27,2026.58,0.00,3521239411901.877930,3521239411900.767090,2270956,2518747,0.000000,0.000020,35063173,19382130,0,0,51188,0,1,1 +1773615861.441832,0.95,4,3992.50,51.57,1698.91,2018.95,0.00,3515472828328.084473,3515472827850.326172,246,2,0.000000,0.000030,35063173,19382133,0,0,51191,0,1,1 +1773615866.437932,15.04,4,3992.50,57.95,1449.05,2268.70,0.00,32646.119204,33124.667550,2270961,2518788,17.243282,0.016489,35065188,19383209,0,0,51193,0,1,1 +1773615871.441949,36.14,4,3992.50,57.87,1452.08,2265.73,0.00,3515612490610.325195,3515612490132.533691,246,2,123.676510,0.041836,35077969,19386444,0,0,51196,0,1,1 +1773615876.440735,28.51,4,3992.50,57.74,1457.11,2260.70,0.00,3519291913265.402344,3519291913267.415039,11,0,121.800709,0.044492,35090513,19389964,0,0,51198,0,1,1 +1773615881.437524,31.89,4,3992.50,57.96,1443.14,2269.07,0.00,0.053550,0.000000,75,0,121.043964,0.054838,35102808,19394284,0,0,51201,0,1,1 +1773615886.441944,29.96,4,3992.50,58.19,1434.14,2278.16,0.00,32593.805563,33069.719862,2270961,2518875,120.058630,0.053550,35115033,19398509,0,0,51203,0,1,1 +1773615891.441829,29.04,4,3992.50,57.85,1447.49,2264.92,0.00,3518517734836.837402,3518517734369.564453,251,417,120.165792,0.049666,35127029,19402443,0,0,51206,0,1,1 +1773615896.443531,29.82,4,3992.50,57.87,1446.74,2265.59,0.00,3517239995959.491211,3517239995950.294922,205,0,120.124451,0.017489,35138976,19403720,0,0,51208,0,1,1 +1773615901.442087,29.94,4,3992.50,57.78,1450.26,2262.05,0.00,3519453757347.931152,0.000000,11,0,118.803328,0.046056,35151003,19407334,0,0,51211,0,1,1 +1773615906.437809,29.37,4,3992.50,57.90,1445.50,2266.89,0.00,1.657571,10.684337,251,417,119.685496,0.076959,35163496,19413360,0,0,51213,0,1,1 +1773615911.438896,1.95,4,3992.50,52.18,1676.78,2042.97,0.00,0.000000,0.000000,251,417,42.861340,0.031965,35168090,19415776,0,0,51216,0,1,1 +1773615916.440034,0.65,4,3992.50,52.00,1683.99,2035.72,0.00,0.000000,0.000000,251,417,0.000619,0.000285,35168102,19415786,0,0,51218,0,1,1 +1773615921.440997,0.65,4,3992.50,52.00,1684.03,2035.72,0.00,3517759789657.537598,3517759789648.520508,11,0,0.001139,0.001875,35168112,19415807,0,0,51221,0,1,1 +1773615926.441497,0.55,4,3992.50,52.00,1684.03,2035.72,0.00,0.053510,0.000000,75,0,0.000000,0.000020,35168112,19415809,0,0,51223,0,1,1 +1773615931.437579,0.55,4,3992.50,52.00,1684.03,2035.72,0.00,32648.382240,33125.350765,2270975,2519065,0.000000,0.000030,35168112,19415812,0,0,51226,0,1,1 +1773615936.442459,0.95,4,3992.50,52.19,1680.24,2043.51,0.00,3515006192775.787598,3515006192299.530762,205,0,0.000000,0.000020,35168112,19415814,0,0,51228,0,1,1 +1773615941.440065,0.65,4,3992.50,52.19,1680.23,2043.51,0.00,3520122702066.860352,0.000000,75,0,0.000370,0.000635,35168123,19415832,0,0,51231,0,1,1 +1773615946.440097,0.65,4,3992.50,52.20,1680.00,2043.74,0.00,32632.150175,33110.099485,2272464,2519616,0.000008,0.000028,35168124,19415835,0,0,51233,0,1,1 +1773615951.442317,0.45,4,3992.50,52.20,1680.00,2043.74,0.00,3516875489401.967285,3516875488924.280762,11,0,0.000000,0.000030,35168124,19415838,0,0,51236,0,1,1 +1773615956.437613,0.65,4,3992.50,52.20,1680.00,2043.74,0.00,2.014200,0.000195,246,2,0.000101,0.000144,35168132,19415848,0,0,51238,0,1,1 +1773615961.441709,0.55,4,3992.50,52.20,1680.00,2043.74,0.00,3515556657379.325684,3515556657381.282715,75,0,0.000033,0.000069,35168135,19415854,0,0,51241,0,1,1 +1773615966.441800,0.90,4,3992.50,52.20,1679.74,2043.70,0.00,3518373226562.346680,0.000000,11,0,0.000031,0.000045,35168137,19415858,0,0,51243,0,1,1 +1773615971.441557,0.75,4,3992.50,52.20,1679.77,2043.70,0.00,32624.439034,33101.305044,2270975,2519231,0.000000,0.000030,35168137,19415861,0,0,51246,0,1,1 +1773615976.442350,5.01,4,3992.50,58.32,1440.24,2283.21,0.00,9.583440,10.695959,2272470,2519697,1.207313,0.005431,35168425,19416073,0,0,51248,0,1,1 +1773615981.437939,40.29,4,3992.50,58.58,1429.84,2293.57,0.00,3521544136743.868164,3521544136265.310059,205,0,118.469127,0.034026,35180605,19418687,0,0,51251,0,1,1 +1773615986.437559,32.43,4,3992.50,58.52,1432.29,2291.14,0.00,3518704526273.362305,0.000000,11,0,121.579788,0.026305,35193122,19420637,0,0,51253,0,1,1 +1773615991.442035,29.34,4,3992.50,58.37,1437.93,2285.44,0.00,0.000000,0.000000,11,0,121.859326,0.022550,35205637,19422381,0,0,51256,0,1,1 +1773615996.442322,29.52,4,3992.50,58.36,1438.41,2284.94,0.00,0.000000,0.000000,11,0,120.158946,0.027266,35217975,19424490,0,0,51258,0,1,1 +1773616001.442294,29.54,4,3992.50,58.09,1443.75,2274.47,0.00,0.000000,0.000000,11,0,119.565175,0.024966,35230260,19426419,0,0,51261,0,1,1 +1773616006.437559,29.41,4,3992.50,58.13,1442.17,2276.09,0.00,0.180444,0.000000,205,0,119.079278,0.026048,35242537,19428450,0,0,51263,0,1,1 +1773616011.437640,29.39,4,3992.50,57.94,1449.75,2268.48,0.00,0.000000,0.000000,205,0,120.166045,0.035985,35254892,19431244,0,0,51266,0,1,1 +1773616016.437551,29.91,4,3992.50,57.90,1451.21,2267.00,0.00,3518499789623.977539,0.000000,11,0,119.166879,0.028160,35267083,19433437,0,0,51268,0,1,1 +1773616021.441366,5.37,4,3992.50,52.96,1644.71,2073.60,0.00,0.053475,0.000000,75,0,64.242844,0.022453,35273732,19435117,0,0,51271,0,1,1 +1773616026.441540,0.95,4,3992.50,52.37,1662.49,2050.49,0.00,32631.379056,33109.773988,2272481,2520014,0.000000,0.000020,35273732,19435119,0,0,51273,0,1,1 +1773616031.441674,0.75,4,3992.50,51.98,1677.70,2035.29,0.00,0.000000,0.004687,2272481,2520018,0.000000,0.000030,35273732,19435122,0,0,51276,0,1,1 +1773616036.438097,0.65,4,3992.50,51.78,1685.58,2027.41,0.00,3520956232417.517090,3520956231947.836914,251,417,0.000000,0.000020,35273732,19435124,0,0,51278,0,1,1 +1773616041.437572,0.75,4,3992.50,51.79,1685.34,2027.65,0.00,3518806168376.000488,3518806168366.980957,11,0,0.000000,0.000030,35273732,19435127,0,0,51281,0,1,1 +1773616046.441997,0.60,4,3992.50,51.79,1685.34,2027.65,0.00,2.010525,0.000195,246,2,0.000000,0.000020,35273732,19435129,0,0,51283,0,1,1 +1773616051.437612,0.65,4,3992.50,51.79,1685.34,2027.65,0.00,3521525514918.704590,3521525514920.664551,75,0,0.000000,0.000674,35273732,19435136,0,0,51286,0,1,1 +1773616056.440202,1.20,4,3992.50,51.85,1687.55,2030.06,0.00,3516615460003.599609,0.000000,11,0,0.000000,0.000020,35273732,19435138,0,0,51288,0,1,1 +1773616061.438215,1.25,4,3992.50,51.88,1686.34,2031.29,0.00,0.000000,0.000000,11,0,0.000000,0.000030,35273732,19435141,0,0,51291,0,1,1 +1773616066.437642,0.75,4,3992.50,51.88,1686.34,2031.29,0.00,0.000000,0.000000,11,0,0.000126,0.000175,35273742,19435153,0,0,51293,0,1,1 +1773616071.437664,0.55,4,3992.50,51.90,1685.61,2032.02,0.00,0.000000,0.000000,11,0,0.000016,0.000046,35273744,19435158,0,0,51296,0,1,1 +1773616076.439928,0.55,4,3992.50,51.90,1685.61,2032.02,0.00,0.180192,0.000000,205,0,0.000000,0.000020,35273744,19435160,0,0,51298,0,1,1 +1773616081.441718,13.54,4,3992.50,57.79,1454.84,2262.69,0.00,32620.756553,33099.402769,2272488,2520228,11.217222,0.013260,35275056,19435926,0,0,51301,0,1,1 +1773616086.437815,36.16,4,3992.50,57.87,1446.88,2265.71,0.00,3521185520705.412109,3521185520226.400879,11,0,122.314148,0.054668,35287499,19440152,0,0,51303,0,1,1 +1773616091.438325,30.80,4,3992.50,57.55,1459.56,2253.03,0.00,0.000000,0.000000,11,0,122.106060,0.039396,35299960,19443195,0,0,51306,0,1,1 +1773616096.440569,30.01,4,3992.50,58.04,1440.22,2272.29,0.00,32608.419163,33085.903791,2270999,2519942,120.512268,0.040242,35312248,19446341,0,0,51308,0,1,1 +1773616101.438650,29.94,4,3992.50,57.80,1449.57,2263.02,0.00,3519788251204.169922,3519788250726.233887,75,0,120.010252,0.041653,35324465,19449609,0,0,51311,0,1,1 +1773616106.441416,30.15,4,3992.50,57.56,1458.91,2253.69,0.00,1.601751,10.669293,251,417,119.897339,0.051167,35336574,19453590,0,0,51313,0,1,1 +1773616111.441641,30.23,4,3992.50,57.65,1455.27,2257.26,0.00,3518278928549.159668,3518278928540.087891,75,0,120.158392,0.045703,35348777,19457144,0,0,51316,0,1,1 +1773616116.438231,30.34,4,3992.50,57.85,1445.87,2265.00,0.00,1.960126,0.000195,246,2,119.283938,0.047254,35360941,19460805,0,0,51318,0,1,1 +1773616121.438389,29.71,4,3992.50,57.69,1452.40,2258.65,0.00,3518325705399.320801,3518325705401.279297,75,0,119.320607,0.042291,35372958,19464061,0,0,51321,0,1,1 +1773616126.439152,1.96,4,3992.50,51.22,1705.42,2005.55,0.00,3517900392058.500000,0.000000,11,0,50.662781,0.021377,35378096,19465690,0,0,51323,0,1,1 +1773616131.437585,0.80,4,3992.50,51.29,1702.99,2008.00,0.00,0.000000,0.000000,11,0,0.001458,0.000676,35378120,19465710,0,0,51326,0,1,1 +1773616136.442486,0.65,4,3992.50,51.29,1702.99,2008.00,0.00,1.654530,10.664740,251,417,0.000000,0.000020,35378120,19465712,0,0,51328,0,1,1 +1773616141.437570,0.70,4,3992.50,51.29,1703.00,2008.00,0.00,3521900483809.900391,3521900483800.872559,11,0,0.000000,0.000030,35378120,19465715,0,0,51331,0,1,1 +1773616146.441595,1.05,4,3992.50,51.56,1693.22,2018.65,0.00,0.180128,0.000000,205,0,0.000000,0.000020,35378120,19465717,0,0,51333,0,1,1 +1773616151.442070,0.75,4,3992.50,51.60,1691.61,2020.13,0.00,3518102498722.152832,0.000000,11,0,0.000000,0.000030,35378120,19465720,0,0,51336,0,1,1 +1773616156.439855,0.55,4,3992.50,51.60,1691.61,2020.12,0.00,0.000000,0.000000,11,0,0.000000,0.000020,35378120,19465722,0,0,51338,0,1,1 +1773616161.442156,0.65,4,3992.50,51.60,1691.61,2020.12,0.00,0.053491,0.000000,75,0,0.000000,0.000030,35378120,19465725,0,0,51341,0,1,1 +1773616166.437640,0.65,4,3992.50,51.60,1691.61,2020.12,0.00,32662.232062,33141.912408,2272506,2520616,0.000000,0.000020,35378120,19465727,0,0,51343,0,1,1 +1773616171.442340,0.65,4,3992.50,51.60,1691.61,2020.12,0.00,3515132941024.453125,3515132941023.344238,2271017,2520201,0.000075,0.000123,35378126,19465736,0,0,51346,0,1,1 +1773616176.442366,0.90,4,3992.50,51.50,1694.00,2016.14,0.00,3518419114103.787598,3518419113625.526367,205,0,0.000066,0.000098,35378132,19465744,0,0,51348,0,1,1 +1773616181.441641,0.55,4,3992.50,51.31,1701.39,2008.75,0.00,1.476093,10.676743,251,417,0.000000,0.000674,35378132,19465751,0,0,51351,0,1,1 +1773616186.437640,0.60,4,3992.50,51.31,1701.40,2008.75,0.00,32647.700181,33117.180401,2271017,2520226,0.000000,0.000020,35378132,19465753,0,0,51353,0,1,1 +1773616191.441713,9.12,4,3992.50,57.93,1441.96,2268.03,0.00,0.004684,0.013563,2271022,2520257,2.205343,0.005752,35378500,19466044,0,0,51356,0,1,1 +1773616196.440532,38.88,4,3992.50,57.93,1442.18,2267.91,0.00,0.000000,0.082246,2271022,2520353,116.592022,0.036823,35390479,19468792,0,0,51358,0,1,1 +1773616201.442411,28.97,4,3992.50,58.05,1437.10,2272.96,0.00,9.571208,10.699886,2272520,2520781,118.721537,0.029748,35402590,19471078,0,0,51361,0,1,1 +1773616206.441624,29.03,4,3992.50,58.14,1433.80,2276.25,0.00,3518991080931.747559,3518991080461.349121,251,417,119.785155,0.025332,35414771,19473006,0,0,51363,0,1,1 +1773616211.438508,29.54,4,3992.50,57.76,1447.91,2261.33,0.00,0.356374,3520631627015.159668,246,2,118.650011,0.053646,35427076,19477186,0,0,51366,0,1,1 +1773616216.438673,31.06,4,3992.50,57.53,1456.66,2252.58,0.00,32620.155040,33100.515814,2271031,2520499,119.794287,0.105613,35440061,19485408,0,0,51368,0,1,1 +1773616221.442144,29.34,4,3992.50,57.62,1453.13,2256.12,0.00,0.000000,0.002928,2271031,2520510,118.700541,0.075885,35452597,19491294,0,0,51371,0,1,1 +1773616226.440005,29.79,4,3992.50,57.72,1449.37,2259.85,0.00,9.565616,10.828070,2272520,2520946,119.632786,0.066039,35465098,19496429,0,0,51373,0,1,1 +1773616231.437612,29.44,4,3992.50,57.65,1452.25,2257.01,0.00,0.000000,0.006839,2272520,2520957,119.644060,0.090815,35477599,19503507,0,0,51376,0,1,1 +1773616236.439673,7.06,4,3992.50,53.59,1611.04,2098.27,0.00,3516987507061.676270,3516987506580.226562,246,2,71.882144,0.049345,35485133,19507360,0,0,51378,0,1,1 +1773616241.437638,1.51,4,3992.50,52.55,1646.95,2057.33,0.00,3519870107172.980957,10.679347,251,417,0.004393,0.002829,35485203,19507418,0,0,51381,0,1,1 +1773616246.437573,0.65,4,3992.50,52.10,1664.39,2039.89,0.00,3518482748603.758789,3518482748594.739746,11,0,0.000000,0.000020,35485203,19507420,0,0,51383,0,1,1 +1773616251.442053,0.65,4,3992.50,51.92,1671.43,2032.85,0.00,32603.725942,33083.000457,2272531,2521068,0.000000,0.000673,35485203,19507427,0,0,51386,0,1,1 +1773616256.442152,0.55,4,3992.50,51.91,1672.01,2032.27,0.00,0.000000,0.028906,2272531,2521074,0.000000,0.000020,35485203,19507429,0,0,51388,0,1,1 +1773616261.440768,0.70,4,3992.50,51.74,1678.46,2025.82,0.00,3519411556555.306152,3519411556554.195801,2271042,2520660,0.000000,0.000030,35485203,19507432,0,0,51391,0,1,1 +1773616266.441767,0.60,4,3992.50,51.80,1676.26,2028.02,0.00,3517734713482.960938,3517734713004.433594,11,0,0.000031,0.000045,35485205,19507436,0,0,51393,0,1,1 +1773616271.438984,0.95,4,3992.50,52.26,1658.13,2046.16,0.00,1.657074,10.681138,251,417,0.000000,0.000030,35485205,19507439,0,0,51396,0,1,1 +1773616276.439210,0.95,4,3992.50,52.13,1663.27,2041.02,0.00,3518278701982.150879,3518278701973.132324,11,0,0.002843,0.001950,35485252,19507469,0,0,51398,0,1,1 +1773616281.441005,0.65,4,3992.50,51.94,1670.67,2033.62,0.00,0.000000,0.000000,11,0,0.000008,0.000038,35485253,19507473,0,0,51401,0,1,1 +1773616286.437578,0.65,4,3992.50,51.93,1671.10,2033.18,0.00,1.657288,10.682516,251,417,0.000107,0.000138,35485261,19507483,0,0,51403,0,1,1 +1773616291.442347,0.75,4,3992.50,51.93,1671.10,2033.18,0.00,3515085123176.647949,3515085123167.638184,11,0,0.000000,0.000030,35485261,19507486,0,0,51406,0,1,1 +1773616296.441936,0.85,4,3992.50,51.73,1672.69,2025.52,0.00,0.000000,0.000000,11,0,0.000000,0.000020,35485261,19507488,0,0,51408,0,1,1 +1773616301.437500,1.10,4,3992.50,51.73,1672.83,2025.31,0.00,1.657623,10.684675,251,417,0.000000,0.000030,35485261,19507491,0,0,51411,0,1,1 +1773616306.442254,0.80,4,3992.50,51.73,1672.61,2025.53,0.00,3515094773454.304688,3515094773445.294434,11,0,0.000000,0.000020,35485261,19507493,0,0,51413,0,1,1 +1773616311.438331,0.90,4,3992.50,51.74,1672.37,2025.77,0.00,0.000000,0.000000,11,0,0.000000,0.000030,35485261,19507496,0,0,51416,0,1,1 +1773616316.442411,0.65,4,3992.50,51.73,1672.64,2025.49,0.00,1.654802,10.666491,251,417,0.000000,0.000663,35485261,19507502,0,0,51418,0,1,1 +1773616321.444546,8.72,4,3992.50,58.20,1419.39,2278.75,0.00,3516935747418.061523,3516935747409.046387,11,0,0.294486,0.006582,35485574,19507856,0,0,51421,0,1,1 +1773616326.439568,9.81,4,3992.50,58.64,1402.11,2296.02,0.00,32665.477194,33146.048166,2272538,2521307,3.653825,0.041647,35488296,19511032,0,0,51423,0,1,1 +1773616331.438385,2.28,4,3992.50,58.56,1405.21,2292.92,0.00,3519269269460.956543,3519269268980.697266,75,0,3.533960,0.049351,35491425,19514621,0,0,51426,0,1,1 +1773616336.437576,2.08,4,3992.50,58.52,1406.81,2291.32,0.00,3519007011425.046387,0.000000,11,0,3.486194,0.039925,35494195,19517699,0,0,51428,0,1,1 +1773616341.437627,1.97,4,3992.50,58.23,1418.11,2280.02,0.00,0.053515,0.000000,75,0,3.447351,0.041209,35497029,19520833,0,0,51431,0,1,1 +1773616346.441553,2.33,4,3992.50,58.16,1421.01,2277.10,0.00,3515676438880.145996,0.000000,11,0,3.522474,0.041778,35499875,19524013,0,0,51433,0,1,1 +1773616351.437558,3.60,4,3992.50,58.19,1417.89,2278.22,0.00,0.180418,0.000000,205,0,3.450168,0.040765,35502711,19527142,0,0,51436,0,1,1 +1773616356.437752,2.33,4,3992.50,58.55,1410.77,2292.42,0.00,32631.504563,33111.892339,2272538,2521451,3.499592,0.039472,35505483,19530177,0,0,51438,0,1,1 +1773616361.439998,3.03,4,3992.50,58.44,1414.59,2288.00,0.00,3516857612711.958984,3516857612231.948242,11,0,3.454799,0.040090,35508246,19533214,0,0,51441,0,1,1 +1773616366.438447,2.23,4,3992.50,58.56,1409.85,2292.72,0.00,2.012929,0.000195,246,2,3.504998,0.040603,35511008,19536309,0,0,51443,0,1,1 +1773616371.438318,2.28,4,3992.50,58.60,1408.23,2294.34,0.00,0.000000,0.000000,246,2,3.463338,0.040927,35513847,19539441,0,0,51446,0,1,1 +1773616376.437642,2.08,4,3992.50,58.54,1410.78,2291.80,0.00,32635.356215,33117.691884,2272538,2521509,3.464760,0.040626,35516663,19542525,0,0,51448,0,1,1 +1773616381.438540,2.53,4,3992.50,58.52,1411.36,2291.24,0.00,3517804900772.163086,3517804900291.991211,11,0,3.502638,0.039278,35519388,19545504,0,0,51451,0,1,1 +1773616386.439040,2.48,4,3992.50,58.76,1402.83,2300.48,0.00,0.053510,0.000000,75,0,3.479230,0.041956,35522184,19548587,0,0,51453,0,1,1 +1773616391.440038,2.38,4,3992.50,58.65,1407.11,2296.19,0.00,1.602317,10.673065,251,417,3.473631,0.043469,35525110,19551805,0,0,51456,0,1,1 +1773616396.441854,1.82,4,3992.50,58.69,1405.62,2297.68,0.00,0.356023,3517160082323.552246,246,2,3.502293,0.039038,35527828,19554798,0,0,51458,0,1,1 +1773616401.437573,2.28,4,3992.50,58.47,1414.00,2289.30,0.00,32658.901962,33141.664111,2272538,2521597,3.462275,0.039364,35530520,19557790,0,0,51461,0,1,1 +1773616406.438079,2.12,4,3992.50,58.34,1419.04,2284.22,0.00,3518080980401.788574,3518080979921.320312,205,0,3.469361,0.041889,35533401,19560963,0,0,51463,0,1,1 +1773616411.438451,1.97,4,3992.50,58.55,1411.05,2292.24,0.00,32630.345441,33110.839190,2272538,2521620,3.508261,0.041250,35536267,19564103,0,0,51466,0,1,1 +1773616416.439860,2.38,4,3992.50,58.91,1411.05,2306.50,0.00,0.000000,0.032413,2272538,2521643,3.474934,0.037789,35538972,19567004,0,0,51468,0,1,1 +1773616421.441961,2.12,4,3992.50,58.91,1411.28,2306.34,0.00,3516959652262.949707,3516959651782.716309,75,0,3.452197,0.042584,35541864,19570209,0,0,51471,0,1,1 +1773616426.437549,2.13,4,3992.50,58.83,1414.23,2303.34,0.00,0.126870,0.000000,205,0,3.496389,0.038759,35544587,19573179,0,0,51473,0,1,1 +1773616431.438280,2.27,4,3992.50,58.60,1423.24,2294.36,0.00,1.831763,0.000195,246,2,3.501643,0.041854,35547449,19576323,0,0,51476,0,1,1 +1773616436.441637,2.27,4,3992.50,58.57,1424.60,2292.97,0.00,0.000000,0.000000,246,2,3.456249,0.040163,35550243,19579376,0,0,51478,0,1,1 +1773616441.437896,2.48,4,3992.50,58.95,1409.48,2308.12,0.00,32646.166236,33127.492660,2271348,2521285,3.483094,0.039426,35552986,19582409,0,0,51481,0,1,1 +1773616446.437639,2.18,4,3992.50,58.76,1402.52,2300.42,0.00,3518617613081.822266,3518617612602.843750,11,0,3.435084,0.039679,35555743,19585387,0,0,51483,0,1,1 +1773616451.442013,2.48,4,3992.50,58.75,1402.38,2300.12,0.00,32604.788872,33084.542666,2272837,2521806,3.523333,0.040374,35558521,19588482,0,0,51486,0,1,1 +1773616456.437562,2.02,4,3992.50,58.52,1411.18,2291.34,0.00,3521572020500.130371,3521572020019.529297,11,0,3.486376,0.041971,35561471,19591623,0,0,51488,0,1,1 +1773616461.437559,2.57,4,3992.50,58.36,1417.80,2284.75,0.00,1.656153,10.675201,251,417,3.461419,0.042703,35564417,19594817,0,0,51491,0,1,1 +1773616466.438203,2.12,4,3992.50,58.41,1415.52,2287.02,0.00,32627.446777,33098.552654,2272837,2521836,3.498350,0.037889,35567147,19597745,0,0,51493,0,1,1 +1773616471.437829,2.23,4,3992.50,58.28,1420.87,2281.69,0.00,3518700727639.787598,3518700727168.585938,251,417,3.446191,0.041278,35570015,19600851,0,0,51496,0,1,1 +1773616476.441969,2.33,4,3992.50,58.57,1410.59,2293.05,0.00,32595.099210,33064.798929,2271348,2521450,3.516411,0.038397,35572705,19603811,0,0,51498,0,1,1 +1773616481.441269,2.02,4,3992.50,58.63,1408.25,2295.38,0.00,3518929985513.060547,3518929985033.885742,11,0,3.468843,0.042949,35575613,19607035,0,0,51501,0,1,1 +1773616486.437574,2.02,4,3992.50,58.74,1404.00,2299.67,0.00,2.013793,0.000195,246,2,3.464346,0.038798,35578347,19609994,0,0,51503,0,1,1 +1773616491.441880,2.32,4,3992.50,58.80,1401.66,2302.00,0.00,0.000000,0.000000,246,2,3.498423,0.041621,35581204,19613153,0,0,51506,0,1,1 +1773616496.437876,2.07,4,3992.50,58.75,1403.66,2300.01,0.00,3521256732671.796387,10.683554,251,417,3.456579,0.042242,35583991,19616201,0,0,51508,0,1,1 +1773616501.437644,2.28,4,3992.50,58.44,1415.73,2287.91,0.00,3518600351601.906250,3518600351592.706543,205,0,3.485194,0.041603,35586812,19619348,0,0,51511,0,1,1 +1773616506.441861,3.08,4,3992.50,59.18,1386.54,2317.09,0.00,3515472647360.469727,0.000000,75,0,3.484483,0.040219,35589619,19622429,0,0,51513,0,1,1 +1773616511.442128,2.08,4,3992.50,59.12,1388.84,2314.83,0.00,0.000000,0.000000,75,0,3.479041,0.041965,35592459,19625528,0,0,51516,0,1,1 +1773616516.442456,2.43,4,3992.50,58.83,1400.46,2303.21,0.00,32621.550932,33100.889177,2271348,2521674,3.499199,0.037781,35595120,19628415,0,0,51518,0,1,1 +1773616521.438871,1.97,4,3992.50,58.69,1405.64,2298.03,0.00,3520961488755.663574,3520961488276.003418,11,0,3.440552,0.039310,35597851,19631405,0,0,51521,0,1,1 +1773616526.439560,2.28,4,3992.50,58.63,1408.09,2295.56,0.00,0.000000,0.000000,11,0,3.501092,0.040835,35600651,19634483,0,0,51523,0,1,1 +1773616531.437564,2.22,4,3992.50,58.50,1413.19,2290.49,0.00,2.013109,0.000195,246,2,3.485417,0.040108,35603455,19637534,0,0,51526,0,1,1 +1773616536.437649,2.13,4,3992.50,59.20,1386.55,2317.65,0.00,3518377444314.567383,3518377444316.580078,11,0,3.471532,0.041590,35606318,19640669,0,0,51528,0,1,1 +1773616541.441766,2.37,4,3992.50,58.96,1395.39,2308.30,0.00,0.180125,0.000000,205,0,3.486681,0.038191,35609039,19643610,0,0,51531,0,1,1 +1773616546.441169,2.13,4,3992.50,58.83,1400.16,2303.48,0.00,3518857402683.243164,0.000000,75,0,3.445623,0.042968,35611934,19646817,0,0,51533,0,1,1 +1773616551.437924,2.08,4,3992.50,58.93,1396.43,2307.27,0.00,1.603677,10.682127,251,417,3.492862,0.038216,35614609,19649766,0,0,51536,0,1,1 +1773616556.437581,2.22,4,3992.50,59.04,1392.27,2311.42,0.00,3518678944236.220215,3518678944227.200684,11,0,3.499454,0.041369,35617465,19652886,0,0,51538,0,1,1 +1773616561.437571,2.03,4,3992.50,58.54,1411.59,2292.10,0.00,0.000000,0.000000,11,0,3.416290,0.041259,35620336,19656004,0,0,51541,0,1,1 +1773616566.437561,2.43,4,3992.50,58.68,1401.35,2297.50,0.00,0.000000,0.000000,11,0,3.533440,0.039626,35623124,19659042,0,0,51543,0,1,1 +1773616571.441700,2.17,4,3992.50,58.47,1409.62,2289.23,0.00,32596.763333,33075.835897,2271348,2521851,3.440543,0.041241,35625954,19662149,0,0,51546,0,1,1 +1773616576.438115,2.88,4,3992.50,58.53,1407.27,2291.59,0.00,3520961727648.193359,3520961727168.326660,75,0,3.508581,0.040630,35628730,19665164,0,0,51548,0,1,1 +1773616581.437684,2.23,4,3992.50,58.46,1409.96,2288.89,0.00,1.958958,0.000195,246,2,3.484996,0.042934,35631579,19668288,0,0,51551,0,1,1 +1773616586.438367,2.07,4,3992.50,58.24,1418.43,2280.41,0.00,3517956666554.459961,3517956666556.418457,75,0,3.490709,0.040197,35634359,19671317,0,0,51553,0,1,1 +1773616591.438371,2.18,4,3992.50,58.39,1412.85,2286.00,0.00,1.958787,0.000195,246,2,3.490078,0.039558,35637155,19674353,0,0,51556,0,1,1 +1773616596.437617,2.53,4,3992.50,58.56,1406.04,2292.80,0.00,3518968069143.400879,3518968069145.413574,11,0,3.489425,0.038780,35639886,19677342,0,0,51558,0,1,1 +1773616601.440007,1.92,4,3992.50,58.34,1414.86,2284.00,0.00,32617.716099,33098.142982,2272837,2522358,3.435945,0.040291,35642658,19680338,0,0,51561,0,1,1 +1773616606.441188,2.17,4,3992.50,58.51,1408.03,2290.83,0.00,3517606160789.478516,3517606160308.935547,11,0,3.502029,0.040376,35645467,19683435,0,0,51563,0,1,1 +1773616611.438127,2.18,4,3992.50,58.62,1403.67,2295.19,0.00,0.053548,0.000000,75,0,3.465220,0.040896,35648291,19686555,0,0,51566,0,1,1 +1773616616.441340,2.02,4,3992.50,58.37,1413.52,2285.31,0.00,0.126676,0.000000,205,0,3.476090,0.041486,35651154,19689667,0,0,51568,0,1,1 +1773616621.442031,2.08,4,3992.50,58.45,1410.22,2288.59,0.00,32619.059365,33098.740934,2271348,2521980,3.498814,0.039976,35654258,19692723,0,0,51571,0,1,1 +1773616626.442085,2.34,4,3992.50,58.82,1408.02,2303.09,0.00,0.039062,0.037109,2271350,2522003,3.516278,0.079103,35660841,19698782,0,0,51573,0,1,1 +1773616631.441771,2.03,4,3992.50,58.84,1407.48,2303.62,0.00,9.562123,10.713855,2272839,2522465,3.508128,0.076866,35667335,19704776,0,0,51576,0,1,1 +1773616636.437569,2.08,4,3992.50,58.81,1408.41,2302.69,0.00,3521396552278.152832,3521396551797.031250,11,0,3.473610,0.083340,35674029,19710932,0,0,51578,0,1,1 +1773616641.437582,1.88,4,3992.50,58.78,1409.91,2301.18,0.00,32633.263965,33113.997890,2272839,2522493,3.532764,0.080417,35680659,19717033,0,0,51581,0,1,1 +1773616646.441972,2.23,4,3992.50,58.65,1414.88,2296.20,0.00,0.000000,0.003513,2272839,2522503,3.519912,0.079021,35687192,19723144,0,0,51583,0,1,1 +1773616651.442394,1.88,4,3992.50,58.71,1412.36,2298.75,0.00,3518140382409.051758,3518140381928.353516,11,0,3.517195,0.080480,35693843,19729247,0,0,51586,0,1,1 +1773616656.441930,2.28,4,3992.50,58.79,1409.39,2301.72,0.00,0.000000,0.000000,11,0,3.543479,0.076194,35700266,19735262,0,0,51588,0,1,1 +1773616661.442165,2.18,4,3992.50,58.90,1405.16,2305.90,0.00,0.053513,0.000000,75,0,3.434875,0.085677,35707048,19741521,0,0,51591,0,1,1 +1773616666.442297,2.08,4,3992.50,58.57,1418.09,2292.98,0.00,1.958738,0.000195,246,2,3.560165,0.076402,35713510,19747551,0,0,51593,0,1,1 +1773616671.441537,2.89,4,3992.50,58.87,1406.07,2304.94,0.00,32636.290957,33119.183326,2272839,2522576,3.569726,0.080335,35720227,19753625,0,0,51596,0,1,1 +1773616676.439431,2.33,4,3992.50,58.68,1413.69,2297.40,0.00,3519919685465.229980,3519919684982.207520,246,2,3.477390,0.081853,35726791,19759770,0,0,51598,0,1,1 +1773616681.438025,2.49,4,3992.50,58.81,1408.64,2302.45,0.00,32640.514861,33123.500682,2272840,2522608,3.497684,0.080722,35733411,19765850,0,0,51601,0,1,1 +1773616686.441191,2.99,4,3992.50,59.12,1398.82,2314.81,0.00,3516211071031.121582,3516211071030.129883,2271358,2522320,3.523037,0.082313,35740030,19771966,0,0,51603,0,1,1 +1773616691.441653,13.62,4,3992.50,65.82,1136.67,2576.90,0.00,3518111888821.665039,3518111888339.852051,246,2,3.514393,0.080399,35746693,19777986,0,0,51606,0,1,1 +1773616696.441411,5.38,4,3992.50,65.62,1144.59,2568.99,0.00,3518607289209.349121,3518607289211.181641,205,0,3.597872,0.084080,35753601,19784173,0,0,51608,0,1,1 +1773616701.438243,2.14,4,3992.50,65.75,1139.14,2574.44,0.00,3520668479004.466309,0.000000,75,0,3.528421,0.079919,35760299,19790154,0,0,51611,0,1,1 +1773616706.438091,3.60,4,3992.50,65.65,1143.11,2570.48,0.00,1.958849,0.000195,246,2,3.550505,0.080625,35766960,19796221,0,0,51613,0,1,1 +1773616711.441753,2.29,4,3992.50,65.64,1143.62,2569.96,0.00,0.000000,0.000000,246,2,3.508351,0.081217,35773678,19802300,0,0,51616,0,1,1 +1773616716.442431,2.80,4,3992.50,65.87,1137.29,2579.03,0.00,3517960314182.653320,10.673553,251,417,3.493433,0.079641,35780237,19808362,0,0,51618,0,1,1 +1773616721.437601,2.80,4,3992.50,65.70,1143.81,2572.35,0.00,32653.737525,33125.136050,2271362,2522503,3.568012,0.079117,35786923,19814411,0,0,51621,0,1,1 +1773616726.441588,2.44,4,3992.50,65.73,1142.75,2573.60,0.00,9.553905,10.669031,2272851,2522932,3.484980,0.079799,35793519,19820436,0,0,51623,0,1,1 +1773616731.441768,2.70,4,3992.50,65.94,1134.57,2581.75,0.00,3518310385492.757812,3518310385020.715332,251,417,3.564265,0.079571,35800225,19826476,0,0,51626,0,1,1 +1773616736.439341,2.24,4,3992.50,65.75,1142.27,2574.07,0.00,0.000000,0.000000,251,417,3.490204,0.079312,35806807,19832476,0,0,51628,0,1,1 +1773616741.437559,2.34,4,3992.50,65.79,1140.29,2576.01,0.00,3519691886823.268555,3519691886814.246582,11,0,3.569036,0.079967,35813484,19838581,0,0,51631,0,1,1 +1773616746.439113,2.54,4,3992.50,65.77,1133.74,2574.96,0.00,0.180217,0.000000,205,0,3.474357,0.080158,35820103,19844608,0,0,51633,0,1,1 +1773616751.442055,2.79,4,3992.50,65.75,1134.36,2574.32,0.00,32604.483350,33084.462217,2271362,2522656,3.578871,0.077289,35826711,19850613,0,0,51636,0,1,1 +1773616756.439306,2.59,4,3992.50,65.87,1129.88,2578.79,0.00,3520373113923.650879,3520373113443.305176,11,0,3.490459,0.080303,35833383,19856606,0,0,51638,0,1,1 +1773616761.439982,2.79,4,3992.50,65.84,1130.89,2577.81,0.00,2.012033,0.000195,246,2,3.583950,0.078445,35840031,19862645,0,0,51641,0,1,1 +1773616766.439073,3.25,4,3992.50,65.72,1135.74,2572.93,0.00,3519076864444.684082,3519076864446.696777,11,0,3.502986,0.080710,35846729,19868687,0,0,51643,0,1,1 +1773616771.437976,4.01,4,3992.50,65.73,1135.21,2573.48,0.00,32640.574345,33121.902027,2272851,2523136,3.498708,0.078810,35853313,19874659,0,0,51646,0,1,1 +1773616776.437599,3.05,4,3992.50,65.98,1128.15,2583.21,0.00,3518702026840.306641,3518702026358.868164,205,0,3.574297,0.080302,35860059,19880702,0,0,51648,0,1,1 +1773616781.442269,2.53,4,3992.50,65.87,1132.51,2578.82,0.00,32602.787092,33083.783145,2272851,2523176,3.499163,0.079268,35866684,19886678,0,0,51651,0,1,1 +1773616786.438439,2.79,4,3992.50,65.80,1134.99,2576.35,0.00,3521134031114.167969,3521134030632.480957,75,0,3.542948,0.077631,35873181,19892729,0,0,51653,0,1,1 +1773616791.437614,2.64,4,3992.50,65.80,1135.11,2576.25,0.00,32638.743581,33120.156988,2272851,2523212,3.518162,0.079056,35879871,19898647,0,0,51656,0,1,1 +1773616796.441652,2.24,4,3992.50,65.72,1137.81,2573.25,0.00,3515598076554.018066,3515598076552.908691,2271362,2522804,3.542902,0.078069,35886460,19904675,0,0,51658,0,1,1 +1773616801.441661,2.70,4,3992.50,65.84,1133.39,2577.92,0.00,3518430829713.818359,3518430829233.648926,11,0,3.518389,0.081143,35893046,19910749,0,0,51661,0,1,1 +1773616806.442003,2.55,4,3992.50,66.25,1117.59,2593.80,0.00,2.012167,0.000195,246,2,3.526723,0.080122,35899791,19916721,0,0,51663,0,1,1 +1773616811.441752,2.35,4,3992.50,66.08,1124.31,2587.02,0.00,3518613763067.879883,3518613763069.712402,205,0,3.486082,0.077536,35906305,19922656,0,0,51666,0,1,1 +1773616816.441993,2.39,4,3992.50,66.01,1126.80,2584.55,0.00,32631.670116,33113.227338,2272860,2523360,3.572755,0.080073,35913007,19928721,0,0,51668,0,1,1 +1773616821.437675,2.44,4,3992.50,65.81,1134.56,2576.75,0.00,0.000000,0.002346,2272860,2523374,3.535415,0.078547,35919624,19934686,0,0,51671,0,1,1 +1773616826.438316,2.29,4,3992.50,65.82,1134.18,2577.17,0.00,3517986385697.550781,3517986385225.227539,251,417,3.507892,0.080884,35926246,19940740,0,0,51673,0,1,1 +1773616831.437645,2.44,4,3992.50,65.91,1130.82,2580.54,0.00,3518909432451.740723,3518909432442.720703,11,0,3.543625,0.078238,35932884,19946695,0,0,51676,0,1,1 +1773616836.438370,2.65,4,3992.50,66.22,1119.10,2592.70,0.00,32619.132285,33099.411051,2271371,2523012,3.481132,0.079188,35939483,19952675,0,0,51678,0,1,1 +1773616841.440059,2.44,4,3992.50,66.14,1121.85,2589.50,0.00,3517249188063.405762,3517249187583.039551,205,0,3.536352,0.080553,35946185,19958664,0,0,51681,0,1,1 +1773616846.442002,2.34,4,3992.50,66.06,1124.91,2586.41,0.00,32611.013015,33091.368171,2271371,2523045,3.551723,0.079196,35952866,19964693,0,0,51683,0,1,1 +1773616851.441541,2.29,4,3992.50,65.92,1130.29,2581.05,0.00,3518761203498.028809,3518761203015.611328,246,2,3.528138,0.077583,35959412,19970676,0,0,51686,0,1,1 +1773616856.438854,3.26,4,3992.50,65.85,1133.32,2578.01,0.00,0.000000,0.000000,246,2,3.511705,0.080130,35966104,19976674,0,0,51688,0,1,1 +1773616861.437918,2.49,4,3992.50,65.66,1140.54,2570.84,0.00,3519095739380.011230,10.676998,251,417,3.498753,0.077864,35972603,19982658,0,0,51691,0,1,1 +1773616866.438740,2.60,4,3992.50,65.85,1135.18,2578.05,0.00,32626.432767,33098.830220,2272862,2523520,3.567155,0.080622,35979377,19988702,0,0,51693,0,1,1 +1773616871.438084,2.34,4,3992.50,66.08,1125.75,2587.35,0.00,3518898546779.793945,3518898546298.236328,11,0,3.484239,0.079263,35985945,19994668,0,0,51696,0,1,1 +1773616876.437685,2.44,4,3992.50,66.01,1128.66,2584.40,0.00,2.012465,0.000195,246,2,3.566389,0.078794,35992555,20000735,0,0,51698,0,1,1 +1773616881.437551,2.59,4,3992.50,65.68,1141.59,2571.50,0.00,32632.311924,33115.855716,2272862,2523565,3.470698,0.080432,35999202,20006696,0,0,51701,0,1,1 +1773616886.437615,2.54,4,3992.50,65.70,1140.92,2572.20,0.00,3518392705175.324219,3518392704691.799805,246,2,3.565446,0.076960,36005800,20012650,0,0,51703,0,1,1 +1773616891.441570,33.60,4,3992.50,65.27,1157.50,2555.49,0.00,32605.647304,33088.804275,2272862,2523596,132.191959,0.141535,36025883,20023577,0,0,51706,0,1,1 +1773616896.441537,31.03,4,3992.50,65.21,1159.72,2553.30,0.00,3518460461421.082031,3518460460939.551758,11,0,125.303963,0.068443,36039043,20028974,0,0,51708,0,1,1 +1773616901.441760,29.48,4,3992.50,65.07,1162.84,2547.52,0.00,0.000000,0.000000,11,0,119.991208,0.060902,36051078,20033748,0,0,51711,0,1,1 +1773616906.441540,30.64,4,3992.50,65.24,1154.45,2554.35,0.00,0.053518,0.000000,75,0,119.479253,0.055642,36062882,20038128,0,0,51713,0,1,1 +1773616911.441754,29.55,4,3992.50,65.58,1141.40,2567.44,0.00,3518286099902.469727,0.000000,11,0,119.435880,0.053852,36074523,20042332,0,0,51716,0,1,1 +1773616916.439907,29.11,4,3992.50,65.52,1143.42,2565.41,0.00,0.053535,0.000000,75,0,119.588859,0.051660,36086098,20046319,0,0,51718,0,1,1 +1773616921.438208,29.33,4,3992.50,65.79,1131.02,2575.79,0.00,0.000000,0.000000,75,0,119.027299,0.046288,36097249,20049949,0,0,51721,0,1,1 +1773616926.442396,29.34,4,3992.50,65.45,1146.18,2562.56,0.00,32596.536950,33076.821920,2271373,2523274,119.742812,0.047169,36108601,20053641,0,0,51723,0,1,1 +1773616931.439666,29.77,4,3992.50,65.52,1141.27,2565.11,0.00,3520358955000.364746,3520358954517.455078,246,2,119.100006,0.045499,36119811,20057128,0,0,51726,0,1,1 +1773616936.437537,29.11,4,3992.50,65.70,1134.08,2572.24,0.00,32645.338514,33129.359927,2272862,2523746,119.746752,0.045673,36131123,20060640,0,0,51728,0,1,1 +1773616941.441681,22.81,4,3992.50,65.48,1143.34,2563.54,0.00,0.000781,0.067815,2272863,2523759,119.277723,0.045988,36142351,20064193,0,0,51731,0,1,1 +1773616946.440230,16.44,4,3992.50,59.41,1380.30,2326.05,0.00,3519458091504.353027,3519458091020.330078,246,2,87.749990,0.037344,36150762,20067020,0,0,51733,0,1,1 +1773616951.439566,18.74,4,3992.50,58.34,1422.07,2284.32,0.00,3518904957915.156738,3518904957917.169434,11,0,76.911199,0.038811,36158118,20070004,0,0,51736,0,1,1 +1773616956.437552,21.90,4,3992.50,58.28,1424.54,2281.81,0.00,0.000000,0.000000,11,0,89.353564,0.045472,36166755,20073529,0,0,51738,0,1,1 +1773616961.439250,8.00,4,3992.50,53.25,1627.38,2085.00,0.00,0.180212,0.000000,205,0,76.876481,0.039259,36174275,20076563,0,0,51741,0,1,1 +1773616966.437551,1.00,4,3992.50,52.54,1655.47,2056.89,0.00,1.476380,10.678823,251,417,0.003087,0.001420,36174331,20076601,0,0,51743,0,1,1 +1773616971.437549,0.75,4,3992.50,52.51,1656.31,2056.06,0.00,3518439110949.780762,3518439110940.708496,75,0,0.000000,0.000674,36174331,20076608,0,0,51746,0,1,1 +1773616976.438672,0.55,4,3992.50,52.49,1657.14,2055.24,0.00,32616.797294,33097.598335,2271424,2523496,0.000000,0.000020,36174331,20076610,0,0,51748,0,1,1 +1773616981.441585,0.75,4,3992.50,52.46,1658.29,2054.08,0.00,0.000000,0.129612,2271424,2523544,0.000000,0.000030,36174331,20076613,0,0,51751,0,1,1 +1773616986.437589,1.00,4,3992.50,52.76,1653.83,2065.65,0.00,3521251655663.301270,3521251655181.751465,205,0,0.000000,0.000020,36174331,20076615,0,0,51753,0,1,1 +1773616991.442462,0.60,4,3992.50,52.75,1653.18,2065.41,0.00,1.474442,10.664801,251,417,0.000000,0.000030,36174331,20076618,0,0,51756,0,1,1 +1773616996.439342,0.70,4,3992.50,52.76,1652.96,2065.62,0.00,32652.456429,33126.017884,2272913,2524026,0.000000,0.000020,36174331,20076620,0,0,51758,0,1,1 +1773617001.441551,0.70,4,3992.50,52.76,1652.96,2065.62,0.00,3516883335868.831543,3516883335867.723633,2271424,2523610,0.000000,0.000030,36174331,20076623,0,0,51761,0,1,1 +1773617006.437774,0.60,4,3992.50,52.76,1652.96,2065.63,0.00,3521096856487.716797,3521096856006.176270,11,0,0.000025,0.000051,36174333,20076627,0,0,51763,0,1,1 +1773617011.441599,0.60,4,3992.50,52.76,1652.96,2065.63,0.00,0.000000,0.000000,11,0,0.000117,0.000170,36174343,20076640,0,0,51766,0,1,1 +1773617016.440553,1.00,4,3992.50,52.76,1652.95,2065.82,0.00,0.053527,0.000000,75,0,0.000000,0.000020,36174343,20076642,0,0,51768,0,1,1 +1773617021.437675,0.70,4,3992.50,52.43,1665.95,2052.64,0.00,1.603560,10.681343,251,417,0.000000,0.000030,36174343,20076645,0,0,51771,0,1,1 +1773617026.442406,0.65,4,3992.50,52.43,1665.70,2052.88,0.00,0.355816,3515111229608.669922,246,2,0.000000,0.000020,36174343,20076647,0,0,51773,0,1,1 +1773617031.440562,36.93,4,3992.50,58.74,1418.68,2299.80,0.00,32634.211228,33117.662659,2271430,2523712,86.355769,0.033076,36183278,20078951,0,0,51776,0,1,1 +1773617036.438063,28.83,4,3992.50,58.44,1430.39,2288.14,0.00,3520196420469.654785,3520196419988.100098,75,0,119.426698,0.021643,36195538,20080513,0,0,51778,0,1,1 +1773617041.438433,28.18,4,3992.50,58.47,1429.41,2289.13,0.00,3518176537332.601074,0.000000,11,0,118.953167,0.019093,36207517,20081944,0,0,51781,0,1,1 +1773617046.441534,29.56,4,3992.50,59.01,1408.26,2310.24,0.00,0.000000,0.000000,11,0,119.289682,0.022912,36219502,20083727,0,0,51783,0,1,1 +1773617051.441019,28.48,4,3992.50,58.66,1419.69,2296.84,0.00,32627.539072,33109.056778,2271430,2523868,119.378236,0.027277,36231620,20085798,0,0,51786,0,1,1 +1773617056.441205,28.77,4,3992.50,58.35,1432.05,2284.40,0.00,3518306727298.840820,3518306726815.378418,246,2,119.358468,0.022664,36243669,20087566,0,0,51788,0,1,1 +1773617061.441682,29.02,4,3992.50,58.68,1418.91,2297.55,0.00,32619.052917,33102.516486,2271430,2523909,119.560506,0.045978,36255916,20091149,0,0,51791,0,1,1 +1773617066.442076,28.66,4,3992.50,58.53,1425.04,2291.41,0.00,3518160162660.498047,3518160162179.038574,11,0,119.162598,0.046610,36268159,20094775,0,0,51793,0,1,1 +1773617071.437843,13.98,4,3992.50,51.85,1686.59,2029.95,0.00,0.000000,0.000000,11,0,104.036863,0.031189,36278887,20097176,0,0,51796,0,1,1 +1773617076.442108,1.60,4,3992.50,51.86,1686.23,2030.30,0.00,0.180120,0.000000,205,0,0.003792,0.001671,36278957,20097223,0,0,51798,0,1,1 +1773617081.442091,1.10,4,3992.50,52.19,1672.17,2043.50,0.00,1.832038,0.000195,246,2,0.000000,0.000030,36278957,20097226,0,0,51801,0,1,1 +1773617086.438774,0.65,4,3992.50,51.85,1685.46,2030.20,0.00,0.000000,0.000000,246,2,0.000000,0.000020,36278957,20097228,0,0,51803,0,1,1 +1773617091.439743,1.85,4,3992.50,52.28,1668.98,2046.69,0.00,3517755458025.363281,10.672932,251,417,0.000000,0.000030,36278957,20097231,0,0,51806,0,1,1 +1773617096.437636,0.65,4,3992.50,52.29,1668.54,2047.12,0.00,0.356302,3519920587886.354492,246,2,0.000000,0.000020,36278957,20097233,0,0,51808,0,1,1 +1773617101.437567,0.70,4,3992.50,52.29,1668.55,2047.11,0.00,3518485655615.532715,10.675147,251,417,0.001229,0.001898,36278966,20097254,0,0,51811,0,1,1 +1773617106.437640,1.00,4,3992.50,52.48,1658.73,2054.62,0.00,0.356147,3518385520270.846680,246,2,0.000205,0.000552,36278973,20097267,0,0,51813,0,1,1 +1773617111.437569,0.65,4,3992.50,52.41,1661.01,2052.01,0.00,3518487186177.058105,3518487186178.890137,205,0,0.000000,0.000030,36278973,20097270,0,0,51816,0,1,1 +1773617116.437643,0.60,4,3992.50,52.29,1665.65,2047.38,0.00,32623.678896,33105.793350,2271444,2524160,0.000000,0.000020,36278973,20097272,0,0,51818,0,1,1 +1773617121.437558,0.60,4,3992.50,52.25,1667.16,2045.86,0.00,3518496956226.024414,3518496955743.894531,205,0,0.000126,0.000185,36278983,20097285,0,0,51821,0,1,1 +1773617126.437637,0.70,4,3992.50,52.29,1665.69,2047.33,0.00,32623.646821,33105.767051,2271444,2524168,0.000008,0.000028,36278984,20097288,0,0,51823,0,1,1 +1773617131.437639,0.70,4,3992.50,52.30,1665.46,2047.56,0.00,0.000000,0.003125,2271444,2524171,0.001126,0.001219,36278993,20097304,0,0,51826,0,1,1 +1773617136.437566,0.85,4,3992.50,52.30,1671.30,2047.52,0.00,3518488316782.845215,3518488316300.887695,11,0,0.000000,0.000020,36278993,20097306,0,0,51828,0,1,1 +1773617141.438421,35.18,4,3992.50,58.72,1419.71,2299.02,0.00,32628.334699,33111.374684,2272939,2524654,77.299444,0.050175,36287126,20101041,0,0,51831,0,1,1 +1773617146.442647,29.89,4,3992.50,58.69,1420.99,2297.74,0.00,3515465442926.778809,3515465442442.053711,246,2,119.263976,0.059838,36299277,20105684,0,0,51833,0,1,1 +1773617151.438595,28.67,4,3992.50,58.61,1424.01,2294.76,0.00,3521290960967.844238,3521290960969.858398,11,0,119.060248,0.053849,36311390,20109855,0,0,51836,0,1,1 +1773617156.441554,28.18,4,3992.50,58.79,1417.12,2301.65,0.00,2.011115,0.000195,246,2,119.092421,0.052785,36323534,20113989,0,0,51838,0,1,1 +1773617161.441266,29.12,4,3992.50,58.69,1421.07,2297.69,0.00,3518640152785.551758,3518640152787.564453,11,0,119.171375,0.051239,36335730,20118000,0,0,51841,0,1,1 +1773617166.440646,28.74,4,3992.50,58.84,1415.27,2303.52,0.00,1.656358,10.676519,251,417,119.577936,0.064736,36347880,20123076,0,0,51843,0,1,1 +1773617171.437642,30.48,4,3992.50,58.72,1419.60,2299.16,0.00,3520552334897.105957,3520552334887.900879,205,0,118.834781,0.059896,36360061,20127768,0,0,51846,0,1,1 +1773617176.441538,29.67,4,3992.50,58.73,1419.30,2299.48,0.00,0.000000,0.000000,205,0,119.870840,0.060466,36372273,20132515,0,0,51848,0,1,1 +1773617181.442114,16.59,4,3992.50,53.98,1605.38,2113.45,0.00,3518031998439.461426,0.000000,75,0,113.142980,0.055193,36383783,20136748,0,0,51851,0,1,1 +1773617186.442117,1.05,4,3992.50,53.25,1634.11,2084.71,0.00,0.126758,0.000000,205,0,0.003922,0.001798,36383863,20136805,0,0,51853,0,1,1 +1773617191.437830,0.75,4,3992.50,52.70,1655.36,2063.46,0.00,1.477145,10.684356,251,417,0.000000,0.000030,36383863,20136808,0,0,51856,0,1,1 +1773617196.438812,1.05,4,3992.50,52.53,1664.38,2056.53,0.00,3517746732888.923828,3517746732879.906738,11,0,0.000000,0.000020,36383863,20136810,0,0,51858,0,1,1 +1773617201.442331,0.60,4,3992.50,52.35,1670.45,2049.60,0.00,32601.536373,33083.727016,2271461,2524538,0.000031,0.000055,36383865,20136815,0,0,51861,0,1,1 +1773617206.442027,0.65,4,3992.50,52.36,1670.20,2049.84,0.00,3518651163031.205566,3518651162546.634277,246,2,0.000000,0.000020,36383865,20136817,0,0,51863,0,1,1 +1773617211.437612,0.70,4,3992.50,52.36,1669.98,2050.05,0.00,3521546939783.101562,3521546939785.062012,75,0,0.000000,0.000030,36383865,20136820,0,0,51866,0,1,1 +1773617216.442383,0.70,4,3992.50,52.34,1670.98,2049.05,0.00,32593.329064,33075.498623,2271461,2524588,0.000000,0.000020,36383865,20136822,0,0,51868,0,1,1 +1773617221.441094,0.65,4,3992.50,52.34,1670.77,2049.27,0.00,3519344497057.418945,3519344496583.739746,251,417,0.000000,0.000030,36383865,20136825,0,0,51871,0,1,1 +1773617226.441824,1.10,4,3992.50,52.53,1662.49,2056.86,0.00,0.356100,3517923591324.606934,246,2,0.000050,0.000082,36383869,20136831,0,0,51873,0,1,1 +1773617231.437609,0.60,4,3992.50,52.54,1662.26,2057.09,0.00,32649.996058,33135.046337,2271461,2524613,0.000134,0.000193,36383880,20136845,0,0,51876,0,1,1 +1773617236.441999,0.65,4,3992.50,52.54,1662.26,2057.09,0.00,3515350973005.041504,3515350972522.655762,205,0,0.000000,0.000502,36383880,20136850,0,0,51878,0,1,1 +1773617241.442114,0.65,4,3992.50,52.54,1662.27,2057.09,0.00,32623.556412,33106.371298,2271461,2524632,0.000000,0.000191,36383880,20136854,0,0,51881,0,1,1 +1773617246.441911,0.65,4,3992.50,52.55,1662.02,2057.33,0.00,3518579989087.207031,3518579988604.361328,205,0,0.000000,0.000020,36383880,20136856,0,0,51883,0,1,1 +1773617251.438032,18.58,4,3992.50,58.81,1416.90,2302.40,0.00,1.833454,0.000195,246,2,18.243729,0.014823,36385879,20137838,0,0,51886,0,1,1 +1773617256.437832,33.27,4,3992.50,59.17,1402.66,2316.79,0.00,0.000000,0.000000,246,2,118.570482,0.029343,36398071,20140053,0,0,51888,0,1,1 +1773617261.441774,28.22,4,3992.50,59.20,1401.45,2317.83,0.00,3515665482121.788086,3515665482123.618652,205,0,119.676244,0.024760,36410491,20141880,0,0,51891,0,1,1 +1773617266.439767,28.03,4,3992.50,58.94,1411.89,2307.52,0.00,0.000000,0.000000,205,0,119.009249,0.016646,36422442,20143116,0,0,51893,0,1,1 +1773617271.437573,28.30,4,3992.50,58.78,1417.93,2301.34,0.00,32638.648499,33121.861018,2271468,2524782,119.417991,0.025176,36434627,20145078,0,0,51896,0,1,1 +1773617276.441967,28.46,4,3992.50,58.88,1413.82,2305.43,0.00,0.000000,0.006732,2271468,2524794,119.464236,0.036938,36446802,20147929,0,0,51898,0,1,1 +1773617281.442111,28.22,4,3992.50,58.72,1420.05,2299.20,0.00,3518335392926.776855,3518335392443.963867,11,0,118.761210,0.030969,36458838,20150297,0,0,51901,0,1,1 +1773617286.437621,28.30,4,3992.50,59.00,1409.43,2309.86,0.00,0.180435,0.000000,205,0,119.669963,0.020176,36470981,20151870,0,0,51903,0,1,1 +1773617291.438453,29.51,4,3992.50,58.61,1422.89,2294.52,0.00,3517851441589.496094,0.000000,11,0,118.743400,0.022097,36483048,20153540,0,0,51906,0,1,1 +1773617296.440918,2.26,4,3992.50,55.18,1557.07,2160.42,0.00,0.000000,0.000000,11,0,53.847069,0.014760,36488501,20154666,0,0,51908,0,1,1 +1773617301.441940,1.25,4,3992.50,53.57,1620.06,2097.42,0.00,0.000000,0.000000,11,0,0.002892,0.001157,36488554,20154702,0,0,51911,0,1,1 +1773617306.437571,0.70,4,3992.50,52.86,1647.80,2069.68,0.00,1.657601,10.684531,251,417,0.000000,0.000664,36488554,20154708,0,0,51913,0,1,1 +1773617311.442189,0.65,4,3992.50,52.68,1654.88,2062.60,0.00,32602.450483,33077.286798,2272975,2525425,0.000000,0.000030,36488554,20154711,0,0,51916,0,1,1 +1773617316.441789,0.65,4,3992.50,52.49,1662.49,2054.98,0.00,3518718724416.482422,3518718723932.149902,11,0,0.000000,0.000020,36488554,20154713,0,0,51918,0,1,1 +1773617321.442392,0.95,4,3992.50,52.42,1665.02,2052.22,0.00,0.000000,0.000000,11,0,0.000013,0.000030,36488555,20154716,0,0,51921,0,1,1 +1773617326.441873,0.75,4,3992.50,52.45,1663.80,2053.45,0.00,0.180292,0.000000,205,0,0.000000,0.000020,36488555,20154718,0,0,51923,0,1,1 +1773617331.438565,0.60,4,3992.50,52.45,1663.55,2053.69,0.00,1.833244,0.000195,246,2,0.000000,0.000030,36488555,20154721,0,0,51926,0,1,1 +1773617336.441682,0.60,4,3992.50,52.45,1663.55,2053.69,0.00,3516245554827.639648,3516245554829.597168,75,0,0.000000,0.000020,36488555,20154723,0,0,51928,0,1,1 +1773617341.441768,0.75,4,3992.50,52.45,1663.55,2053.70,0.00,0.126756,0.000000,205,0,0.000025,0.000061,36488557,20154728,0,0,51931,0,1,1 +1773617346.441896,0.90,4,3992.50,52.77,1650.99,2066.17,0.00,3518346904880.350586,0.000000,11,0,0.000117,0.000160,36488567,20154740,0,0,51933,0,1,1 +1773617351.442190,0.65,4,3992.50,52.75,1651.94,2065.26,0.00,0.000000,0.000000,11,0,0.000000,0.000030,36488567,20154743,0,0,51936,0,1,1 +1773617356.437558,0.65,4,3992.50,52.75,1651.94,2065.26,0.00,2.014170,0.000195,246,2,0.000000,0.000020,36488567,20154745,0,0,51938,0,1,1 +1773617361.441595,14.69,4,3992.50,58.69,1419.22,2297.89,0.00,32596.350373,33081.304627,2271492,2525152,11.412312,0.013898,36489953,20155612,0,0,51941,0,1,1 +1773617366.441666,33.60,4,3992.50,58.71,1418.43,2298.71,0.00,9.561388,10.758832,2272981,2525664,118.169770,0.043102,36502171,20158873,0,0,51943,0,1,1 +1773617371.442140,28.21,4,3992.50,58.63,1421.49,2295.66,0.00,3518103991396.149902,3518103990911.484375,205,0,120.192053,0.107962,36515177,20167169,0,0,51946,0,1,1 +1773617376.437860,27.71,4,3992.50,58.64,1421.11,2296.04,0.00,32662.019761,33147.187104,2272981,2525691,118.296679,0.109092,36527831,20175658,0,0,51948,0,1,1 +1773617381.437664,28.64,4,3992.50,58.84,1412.41,2303.84,0.00,3518575332407.682129,3518575331921.079102,246,2,120.202435,0.106213,36540763,20183973,0,0,51951,0,1,1 +1773617386.437545,28.05,4,3992.50,58.54,1424.57,2291.77,0.00,32623.441555,33108.996619,2271492,2525344,118.200871,0.107120,36553507,20192332,0,0,51953,0,1,1 +1773617391.442223,28.11,4,3992.50,58.55,1423.78,2292.54,0.00,9.552587,10.808444,2272981,2525775,120.084164,0.109238,36566352,20200894,0,0,51956,0,1,1 +1773617396.441232,28.79,4,3992.50,58.81,1413.79,2302.46,0.00,3519134322389.018555,3519134321903.953613,205,0,119.420292,0.108711,36579149,20209405,0,0,51958,0,1,1 +1773617401.437851,28.98,4,3992.50,58.68,1418.99,2297.28,0.00,32646.590302,33130.878732,2271501,2525448,119.077175,0.108695,36591932,20217880,0,0,51961,0,1,1 +1773617406.442119,4.82,4,3992.50,52.46,1664.20,2054.11,0.00,3515436391318.010254,3515436390834.461914,205,0,60.654103,0.058334,36598539,20222274,0,0,51963,0,1,1 +1773617411.442112,0.85,4,3992.50,52.47,1663.57,2054.35,0.00,1.832034,0.000195,246,2,0.000008,0.000038,36598540,20222278,0,0,51966,0,1,1 +1773617416.438098,0.70,4,3992.50,52.51,1661.85,2056.07,0.00,32658.609347,33146.102492,2273003,2526005,0.000000,0.000020,36598540,20222280,0,0,51968,0,1,1 +1773617421.442152,0.65,4,3992.50,52.51,1661.85,2056.07,0.00,3515586541807.907715,3515586541323.157715,75,0,0.000000,0.000030,36598540,20222283,0,0,51971,0,1,1 +1773617426.441695,0.60,4,3992.50,52.51,1661.85,2056.07,0.00,1.958968,0.000195,246,2,0.000000,0.000020,36598540,20222285,0,0,51973,0,1,1 +1773617431.441839,0.65,4,3992.50,52.51,1661.85,2056.07,0.00,3518336014500.738281,3518336014502.750977,11,0,0.000205,0.000562,36598547,20222299,0,0,51976,0,1,1 +1773617436.442158,0.90,4,3992.50,52.52,1661.44,2056.26,0.00,32622.758205,33106.780443,2271514,2525640,0.000000,0.000664,36598547,20222305,0,0,51978,0,1,1 +1773617441.440324,0.65,4,3992.50,52.46,1663.10,2053.87,0.00,3519728052009.894531,3519728051534.686035,251,417,0.000000,0.000030,36598547,20222308,0,0,51981,0,1,1 +1773617446.441987,0.65,4,3992.50,52.46,1663.10,2053.87,0.00,32621.898636,33097.912530,2273003,2526082,0.000031,0.000045,36598549,20222312,0,0,51983,0,1,1 +1773617451.440600,0.60,4,3992.50,52.46,1662.86,2054.11,0.00,0.000000,0.004689,2273003,2526087,0.000165,0.000218,36598562,20222328,0,0,51986,0,1,1 +1773617456.441575,0.85,4,3992.50,52.50,1661.42,2055.55,0.00,3517751739509.810059,3517751739033.725586,251,417,0.001229,0.001231,36598571,20222343,0,0,51988,0,1,1 +1773617461.442116,0.65,4,3992.50,52.50,1661.42,2055.55,0.00,3518056621998.299805,3518056621989.101562,205,0,0.000000,0.000030,36598571,20222346,0,0,51991,0,1,1 +1773617466.441647,1.96,4,3992.50,52.54,1661.61,2057.18,0.00,32627.717479,33112.182999,2271514,2525713,0.000000,0.000020,36598571,20222348,0,0,51993,0,1,1 +1773617471.441927,11.34,4,3992.50,58.73,1419.19,2299.52,0.00,3518239963428.153809,3518239962943.941406,11,0,7.614539,0.009847,36599528,20222964,0,0,51996,0,1,1 +1773617476.441820,35.47,4,3992.50,58.60,1424.34,2294.38,0.00,32625.570685,33109.944266,2271521,2525862,122.173885,0.031402,36612069,20225315,0,0,51998,0,1,1 +1773617481.438004,30.29,4,3992.50,58.67,1421.53,2297.14,0.00,3521124325105.945801,3521124324619.198730,246,2,120.863234,0.030079,36624526,20227463,0,0,52001,0,1,1 +1773617486.437557,29.50,4,3992.50,58.85,1414.77,2303.95,0.00,3518751913384.994629,3518751913386.826660,205,0,120.574702,0.027068,36636710,20229565,0,0,52003,0,1,1 +1773617491.441599,6.57,4,3992.50,59.68,1381.96,2336.72,0.00,32607.889062,33093.193777,2273010,2526316,24.188611,0.045067,36640359,20232442,0,0,52006,0,1,1 +1773617496.441665,3.85,4,3992.50,60.04,1367.47,2350.80,0.00,3518391262652.159180,3518391262164.636719,246,2,8.862240,0.023775,36641924,20234080,0,0,52008,0,1,1 +1773617501.437830,3.64,4,3992.50,59.73,1379.69,2338.47,0.00,32647.895339,33134.778977,2271521,2525966,8.370311,0.016161,36643145,20235233,0,0,52011,0,1,1 +1773617506.440880,3.49,4,3992.50,59.51,1388.12,2330.10,0.00,9.555695,10.673958,2273010,2526394,8.583834,0.017793,36644388,20236451,0,0,52013,0,1,1 +1773617511.440190,3.94,4,3992.50,59.49,1389.12,2329.09,0.00,3518922660190.927246,3518922659705.189453,75,0,8.563172,0.015429,36645541,20237555,0,0,52016,0,1,1 +1773617516.438273,3.69,4,3992.50,59.41,1392.32,2325.92,0.00,32646.894957,33132.795700,2273010,2526416,8.915232,0.015624,36646716,20238667,0,0,52018,0,1,1 +1773617521.438178,3.89,4,3992.50,59.40,1392.62,2325.55,0.00,3518503962634.518066,3518503962633.411133,2271521,2526005,9.083499,0.015847,36647930,20239819,0,0,52021,0,1,1 +1773617526.438442,4.14,4,3992.50,60.06,1366.98,2351.29,0.00,9.561020,10.713498,2273010,2526447,9.223204,0.016363,36649161,20240997,0,0,52023,0,1,1 +1773617531.438499,3.43,4,3992.50,59.47,1390.05,2328.19,0.00,0.000000,0.010644,2273010,2526462,9.553614,0.016957,36650435,20242213,0,0,52026,0,1,1 +1773617536.441302,4.15,4,3992.50,59.40,1392.61,2325.57,0.00,3516466006732.919434,3516466006731.811035,2271521,2526053,9.667042,0.017481,36651761,20243468,0,0,52028,0,1,1 +1773617541.438349,4.05,4,3992.50,59.35,1394.50,2323.71,0.00,0.000000,0.004983,2271521,2526060,9.840942,0.017847,36653106,20244755,0,0,52031,0,1,1 +1773617546.441738,4.19,4,3992.50,59.35,1394.70,2323.51,0.00,3516053786150.138672,3516053785674.867188,251,417,10.281221,0.018638,36654492,20246086,0,0,52033,0,1,1 +1773617551.442088,4.35,4,3992.50,59.36,1394.06,2324.17,0.00,3518190911594.033691,3518190911585.015625,11,0,10.021968,0.016826,36655747,20247282,0,0,52036,0,1,1 +1773617556.437765,4.65,4,3992.50,60.04,1367.32,2350.86,0.00,2.014046,0.000195,246,2,10.030131,0.017814,36657090,20248564,0,0,52038,0,1,1 +1773617561.438110,3.99,4,3992.50,59.36,1394.18,2324.05,0.00,3518194839031.448730,3518194839033.460938,11,0,10.104758,0.017031,36658374,20249801,0,0,52041,0,1,1 +1773617566.437681,4.50,4,3992.50,59.46,1390.27,2327.93,0.00,0.000000,0.000000,11,0,10.680418,0.018712,36659793,20251140,0,0,52043,0,1,1 +1773617571.442213,3.99,4,3992.50,59.59,1384.98,2333.23,0.00,0.000000,0.000000,11,0,10.657466,0.020564,36661280,20252573,0,0,52046,0,1,1 +1773617576.441770,4.30,4,3992.50,59.51,1388.09,2330.11,0.00,1.656299,10.676141,251,417,10.501127,0.019251,36662723,20253949,0,0,52048,0,1,1 +1773617581.441178,4.45,4,3992.50,59.64,1383.39,2334.84,0.00,0.356195,3518853807382.322266,246,2,10.583356,0.019285,36664172,20255342,0,0,52051,0,1,1 +1773617586.437479,3.59,4,3992.50,60.02,1371.91,2349.74,0.00,3521042078627.789551,3521042078629.803711,11,0,10.635566,0.019580,36665637,20256744,0,0,52053,0,1,1 +1773617591.438399,3.68,4,3992.50,59.61,1384.28,2333.93,0.00,0.000000,0.000000,11,0,10.754289,0.017915,36666977,20258019,0,0,52056,0,1,1 +1773617596.437553,3.58,4,3992.50,59.58,1385.43,2332.75,0.00,0.053525,0.000000,75,0,10.815439,0.018807,36668390,20259362,0,0,52058,0,1,1 +1773617601.437788,3.54,4,3992.50,59.60,1384.84,2333.39,0.00,3518271900766.925781,0.000000,11,0,11.190326,0.020230,36669871,20260799,0,0,52061,0,1,1 +1773617606.442355,3.48,4,3992.50,59.46,1390.02,2328.17,0.00,0.000000,0.000000,11,0,11.088120,0.018750,36671314,20262175,0,0,52063,0,1,1 +1773617611.441099,3.84,4,3992.50,59.40,1392.69,2325.50,0.00,2.012810,0.000195,246,2,11.856508,0.022783,36672994,20263774,0,0,52066,0,1,1 +1773617616.442416,3.84,4,3992.50,59.79,1377.19,2341.05,0.00,0.000000,0.000000,246,2,11.511304,0.020199,36674493,20265231,0,0,52068,0,1,1 +1773617621.438090,4.19,4,3992.50,59.54,1386.89,2331.30,0.00,3521483864314.455566,10.684244,251,417,11.390269,0.018771,36675894,20266574,0,0,52071,0,1,1 +1773617626.442123,4.09,4,3992.50,59.45,1390.65,2327.53,0.00,3515601214163.232910,3515601214154.041016,205,0,11.491042,0.022492,36677620,20268163,0,0,52073,0,1,1 +1773617631.438146,3.84,4,3992.50,59.48,1389.43,2328.77,0.00,3521238129864.581543,0.000000,11,0,9.314800,0.019082,36678947,20269513,0,0,52076,0,1,1 +1773617636.438224,3.99,4,3992.50,59.53,1387.62,2330.61,0.00,0.053515,0.000000,75,0,9.102957,0.016977,36680180,20270694,0,0,52078,0,1,1 +1773617641.441844,3.74,4,3992.50,59.40,1392.52,2325.71,0.00,32601.213948,33085.789097,2271521,2526305,9.264167,0.016566,36681439,20271891,0,0,52081,0,1,1 +1773617646.438131,4.35,4,3992.50,59.68,1382.08,2336.53,0.00,3521052035555.608398,3521052035068.361816,246,2,9.310544,0.015957,36682659,20273054,0,0,52083,0,1,1 +1773617651.437562,3.84,4,3992.50,59.39,1393.29,2325.34,0.00,32626.570722,33113.554555,2271521,2526341,9.352745,0.016466,36683896,20274236,0,0,52086,0,1,1 +1773617656.441949,4.14,4,3992.50,59.41,1392.64,2325.94,0.00,3515352899835.471680,3515352899350.980469,11,0,9.351320,0.016102,36685114,20275406,0,0,52088,0,1,1 +1773617661.437937,3.84,4,3992.50,59.50,1388.89,2329.69,0.00,0.180418,0.000000,205,0,9.372570,0.016812,36686401,20276627,0,0,52091,0,1,1 +1773617666.441924,4.58,4,3992.50,59.36,1394.64,2323.93,0.00,1.830572,0.000195,246,2,9.601333,0.017442,36687678,20277848,0,0,52093,0,1,1 +1773617671.442170,4.00,4,3992.50,59.48,1389.66,2328.91,0.00,32630.817984,33118.870494,2273010,2526799,9.569099,0.016773,36688942,20279052,0,0,52096,0,1,1 +1773617676.441929,4.15,4,3992.50,59.61,1373.51,2333.99,0.00,3518606449369.846680,3518606448881.746582,246,2,9.756390,0.017597,36690275,20280311,0,0,52098,0,1,1 +1773617681.437569,4.30,4,3992.50,59.07,1394.53,2312.80,0.00,3521507858793.121094,3521507858795.135254,11,0,9.859219,0.018513,36691653,20281642,0,0,52101,0,1,1 +1773617686.441924,4.75,4,3992.50,59.04,1395.54,2311.74,0.00,0.000000,0.000000,11,0,9.705956,0.016793,36692955,20282875,0,0,52103,0,1,1 +1773617691.437578,4.04,4,3992.50,59.06,1394.81,2312.44,0.00,0.053562,0.000000,75,0,9.984067,0.017850,36694291,20284169,0,0,52106,0,1,1 +1773617696.442106,4.14,4,3992.50,58.99,1397.59,2309.66,0.00,3515254167326.157715,0.000000,11,0,9.860537,0.016973,36695570,20285390,0,0,52108,0,1,1 +1773617701.441881,3.94,4,3992.50,58.99,1397.66,2309.64,0.00,1.656227,10.675674,251,417,9.915343,0.017716,36696868,20286612,0,0,52111,0,1,1 +1773617706.438453,4.09,4,3992.50,59.08,1394.16,2313.16,0.00,32645.594432,33122.009808,2271521,2526514,9.993903,0.018706,36698215,20287901,0,0,52113,0,1,1 +1773617711.439724,3.64,4,3992.50,59.01,1396.30,2310.19,0.00,9.559094,10.726180,2273010,2526974,10.085744,0.017188,36699528,20289144,0,0,52116,0,1,1 +1773617716.437647,3.95,4,3992.50,59.06,1394.30,2312.14,0.00,0.000000,0.007425,2273010,2526987,10.460248,0.019428,36700981,20290542,0,0,52118,0,1,1 +1773617721.441245,4.04,4,3992.50,59.05,1394.48,2312.02,0.00,3515906998078.209961,3515906997592.096680,205,0,10.173451,0.016847,36702281,20291784,0,0,52121,0,1,1 +1773617726.437674,4.40,4,3992.50,59.11,1392.14,2314.38,0.00,3520952129923.770508,0.000000,75,0,10.227525,0.018393,36703679,20293099,0,0,52123,0,1,1 +1773617731.441916,3.79,4,3992.50,59.17,1389.83,2316.50,0.00,3515454274918.701660,0.000000,11,0,10.260670,0.018920,36705087,20294438,0,0,52126,0,1,1 +1773617736.441662,4.50,4,3992.50,59.49,1386.89,2329.21,0.00,1.656236,10.675737,251,417,10.222286,0.017588,36706418,20295729,0,0,52128,0,1,1 +1773617741.442113,4.20,4,3992.50,59.21,1397.75,2318.24,0.00,3518120171371.428711,3518120171362.410645,11,0,10.148926,0.017583,36707754,20297002,0,0,52131,0,1,1 +1773617746.442430,4.39,4,3992.50,59.24,1396.75,2319.21,0.00,1.656047,10.674519,251,417,10.331000,0.017798,36709111,20298294,0,0,52133,0,1,1 +1773617751.438478,3.24,4,3992.50,59.08,1403.05,2312.96,0.00,0.000000,0.000000,251,417,10.287267,0.017668,36710462,20299576,0,0,52136,0,1,1 +1773617756.438355,3.59,4,3992.50,59.26,1395.86,2320.13,0.00,32633.578587,33110.943065,2273010,2527088,10.473862,0.019567,36711869,20300922,0,0,52138,0,1,1 +1773617761.437586,3.19,4,3992.50,59.14,1400.71,2315.30,0.00,3518978761860.109863,3518978761373.482422,205,0,10.420229,0.018127,36713261,20302249,0,0,52141,0,1,1 +1773617766.442477,3.63,4,3992.50,59.52,1386.10,2330.23,0.00,1.830241,0.000195,246,2,10.565276,0.018948,36714649,20303575,0,0,52143,0,1,1 +1773617771.442312,3.73,4,3992.50,59.37,1391.52,2324.48,0.00,3518553578003.672852,3518553578005.685547,11,0,10.584125,0.018646,36716124,20304928,0,0,52146,0,1,1 +1773617776.442090,4.10,4,3992.50,59.46,1387.87,2328.12,0.00,0.180281,0.000000,205,0,10.672822,0.074913,36721179,20309435,0,0,52148,0,1,1 +1773617781.441723,3.79,4,3992.50,59.21,1397.74,2318.19,0.00,1.475987,10.675980,251,417,12.005465,0.151581,36731438,20318144,0,0,52151,0,1,1 +1773617786.442059,3.61,4,3992.50,59.33,1393.19,2322.79,0.00,3518201030639.076172,3518201030630.058105,11,0,10.222596,0.274947,36747792,20333595,0,0,52153,0,1,1 +1773617791.438286,2.53,4,3992.50,59.35,1392.36,2323.61,0.00,1.657403,10.683256,251,417,7.169753,0.219583,36761016,20346347,0,0,52156,0,1,1 +1773617796.437726,2.64,4,3992.50,59.68,1379.54,2336.70,0.00,3518831313062.422852,3518831313053.222656,205,0,8.043334,0.240417,36775757,20360336,0,0,52158,0,1,1 +1773617801.437563,2.33,4,3992.50,59.50,1386.73,2329.53,0.00,3518551769410.079590,0.000000,11,0,8.787859,0.284663,36792202,20376468,0,0,52161,0,1,1 +1773617806.437538,0.70,4,3992.50,59.54,1384.99,2331.27,0.00,1.656161,10.675248,251,417,4.901680,0.155194,36801455,20385720,0,0,52163,0,1,1 +1773617811.437547,0.71,4,3992.50,59.54,1385.15,2331.11,0.00,32632.721368,33110.229642,2273011,2527236,5.642985,0.164398,36811868,20395642,0,0,52166,0,1,1 +1773617816.440140,0.66,4,3992.50,59.47,1387.86,2328.39,0.00,3516613479489.673340,3516613479012.411621,251,417,9.052834,0.272423,36828647,20411252,0,0,52168,0,1,1 +1773617821.442221,0.76,4,3992.50,59.47,1387.80,2328.46,0.00,3516972950253.305176,3516972950244.236328,75,0,5.501337,0.189699,36839229,20422196,0,0,52171,0,1,1 +1773617826.442391,1.06,4,3992.50,59.34,1383.39,2323.44,0.00,0.000000,0.000000,75,0,4.883328,0.143622,36848283,20430962,0,0,52173,0,1,1 +1773617831.442436,1.06,4,3992.50,59.46,1378.96,2327.88,0.00,1.602623,10.675101,251,417,7.269211,0.207436,36861684,20443145,0,0,52176,0,1,1 +1773617836.441122,1.06,4,3992.50,59.21,1388.71,2318.12,0.00,3519361919818.231445,3519361919809.210449,11,0,8.382802,0.281145,36877663,20458911,0,0,52178,0,1,1 +1773617841.442257,2.17,4,3992.50,59.33,1383.86,2322.95,0.00,0.180233,0.000000,205,0,6.026405,0.188006,36888859,20470003,0,0,52181,0,1,1 +1773617846.437743,14.41,4,3992.50,58.90,1400.73,2306.03,0.00,1.477213,10.684842,251,417,6.011754,0.164150,36900020,20479860,0,0,52183,0,1,1 +1773617851.442287,2.43,4,3992.50,59.07,1394.04,2312.73,0.00,32593.688309,33069.872641,2271536,2527094,7.166004,0.182766,36913425,20490551,0,0,52186,0,1,1 +1773617856.441738,2.95,4,3992.50,59.37,1388.04,2324.38,0.00,9.562574,10.745321,2273025,2527553,8.367287,0.206793,36928778,20502625,0,0,52188,0,1,1 +1773617861.439496,3.40,4,3992.50,59.12,1397.93,2314.48,0.00,3520015850798.416992,3520015850797.249023,2271545,2527182,8.869933,0.235260,36945376,20516177,0,0,52191,0,1,1 +1773617866.441592,3.10,4,3992.50,59.32,1390.05,2322.35,0.00,3516963051042.807129,3516963050557.359375,11,0,9.033784,0.235133,36962089,20529683,0,0,52193,0,1,1 +1773617871.439832,2.84,4,3992.50,59.14,1396.94,2315.47,0.00,0.000000,0.000000,11,0,9.113280,0.221373,36978751,20542581,0,0,52196,0,1,1 +1773617876.441656,2.69,4,3992.50,59.16,1396.10,2316.32,0.00,0.000000,0.000000,11,0,8.519207,0.211939,36994482,20554927,0,0,52198,0,1,1 +1773617881.438008,2.84,4,3992.50,59.50,1382.93,2329.50,0.00,32658.437040,33145.719661,2273034,2527680,8.495189,0.216820,37010152,20567513,0,0,52201,0,1,1 +1773617886.442477,2.94,4,3992.50,59.66,1376.42,2336.00,0.00,3515294830297.442383,3515294829819.961426,251,417,7.652394,0.205226,37024484,20579379,0,0,52203,0,1,1 +1773617891.442395,2.74,4,3992.50,59.62,1378.02,2334.38,0.00,3518494788345.056152,3518494788336.037598,11,0,8.663925,0.222544,37040352,20592329,0,0,52206,0,1,1 +1773617896.441908,2.64,4,3992.50,59.69,1375.64,2336.80,0.00,0.000000,0.000000,11,0,7.889195,0.211250,37055179,20604459,0,0,52208,0,1,1 +1773617901.441828,2.89,4,3992.50,59.71,1374.62,2337.79,0.00,0.180276,0.000000,205,0,7.039749,0.188922,37068167,20615565,0,0,52211,0,1,1 +1773617906.442291,2.49,4,3992.50,59.49,1383.34,2329.05,0.00,3518111207329.726074,0.000000,11,0,8.782146,0.225880,37084241,20628648,0,0,52213,0,1,1 +1773617911.442317,2.64,4,3992.50,59.57,1380.11,2332.32,0.00,1.656144,10.675139,251,417,8.102843,0.202240,37099232,20640379,0,0,52216,0,1,1 +1773617916.437688,2.99,4,3992.50,60.16,1349.76,2355.34,0.00,0.356482,3521698101986.852539,246,2,9.667413,0.244134,37116887,20654447,0,0,52218,0,1,1 +1773617921.441230,2.69,4,3992.50,59.70,1367.89,2337.20,0.00,3515946621289.065430,3515946621291.022949,75,0,8.288644,0.209439,37132219,20666486,0,0,52221,0,1,1 +1773617926.437604,2.64,4,3992.50,59.68,1368.55,2336.48,0.00,1.603800,10.682941,251,417,7.422130,0.194250,37145941,20677933,0,0,52223,0,1,1 +1773617931.440819,2.58,4,3992.50,59.82,1363.08,2341.97,0.00,3516176864823.113281,3516176864814.100098,11,0,8.543937,0.215615,37161613,20690581,0,0,52226,0,1,1 +1773617936.441057,2.64,4,3992.50,59.67,1368.97,2336.11,0.00,32633.051794,33120.152031,2273034,2527865,7.939022,0.214148,37176548,20702779,0,0,52228,0,1,1 +1773617941.440778,2.89,4,3992.50,59.61,1371.42,2333.66,0.00,3518632977619.555176,3518632977141.424316,251,417,6.727886,0.182065,37188953,20713563,0,0,52231,0,1,1 +1773617946.438170,2.79,4,3992.50,59.72,1366.18,2338.17,0.00,32640.416904,33117.691580,2271545,2527477,7.734760,0.205339,37203142,20725614,0,0,52233,0,1,1 +1773617951.441841,2.64,4,3992.50,59.55,1372.85,2331.46,0.00,3515855924143.046387,3515855923666.370605,251,417,8.288611,0.229011,37218876,20738602,0,0,52236,0,1,1 +1773617956.442465,2.89,4,3992.50,59.71,1366.61,2337.72,0.00,0.000000,0.000000,251,417,5.154309,0.144094,37228476,20747243,0,0,52238,0,1,1 +1773617961.442314,2.75,4,3992.50,59.97,1356.52,2347.80,0.00,0.356163,3518543495627.023926,246,2,5.716469,0.154903,37239028,20756567,0,0,52241,0,1,1 +1773617966.440042,2.94,4,3992.50,59.62,1369.88,2334.43,0.00,32647.427559,33136.861071,2273034,2527941,9.020539,0.230919,37255756,20769760,0,0,52243,0,1,1 +1773617971.441403,2.54,4,3992.50,59.68,1367.82,2336.49,0.00,3517480023767.618652,3517480023766.508789,2271545,2527532,5.306609,0.157951,37265965,20778936,0,0,52246,0,1,1 +1773617976.442038,2.79,4,3992.50,60.02,1363.71,2349.74,0.00,3517990718610.029297,3517990718124.001953,11,0,4.978757,0.135482,37275180,20787242,0,0,52248,0,1,1 +1773617981.438554,2.90,4,3992.50,59.88,1368.98,2344.50,0.00,0.000000,0.000000,11,0,7.491310,0.189155,37288945,20798422,0,0,52251,0,1,1 +1773617986.440554,2.38,4,3992.50,59.53,1382.87,2330.64,0.00,32621.562577,33108.618416,2273034,2527998,7.409248,0.211036,37303174,20810334,0,0,52253,0,1,1 +1773617991.437850,2.49,4,3992.50,59.62,1379.18,2334.32,0.00,3520340392660.507812,3520340392172.993652,11,0,4.846646,0.134965,37312222,20818481,0,0,52256,0,1,1 +1773617996.442316,2.79,4,3992.50,59.92,1367.50,2345.98,0.00,1.654675,10.665671,251,417,5.560846,0.147321,37322484,20827424,0,0,52258,0,1,1 +1773618001.439141,2.54,4,3992.50,59.53,1382.84,2330.66,0.00,3520672612075.487305,3520672612066.409180,75,0,8.905368,0.225281,37339103,20840346,0,0,52261,0,1,1 +1773618006.440094,2.89,4,3992.50,59.77,1364.91,2340.26,0.00,3517766707070.605469,0.000000,11,0,5.563310,0.166228,37349761,20849959,0,0,52263,0,1,1 +1773618011.438659,2.74,4,3992.50,59.72,1367.18,2337.97,0.00,0.000000,0.000000,11,0,5.120790,0.141851,37359266,20858470,0,0,52266,0,1,1 +1773618016.438164,2.64,4,3992.50,59.68,1368.59,2336.59,0.00,0.000000,0.000000,11,0,7.789040,0.194249,37373556,20869900,0,0,52268,0,1,1 +1773618021.439100,2.49,4,3992.50,59.51,1375.42,2329.76,0.00,0.000000,0.000000,11,0,7.984013,0.214420,37388628,20882108,0,0,52271,0,1,1 +1773618026.439326,2.79,4,3992.50,59.65,1369.87,2335.27,0.00,0.000000,0.000000,11,0,7.779536,0.199536,37402939,20893739,0,0,52273,0,1,1 +1773618031.437530,2.34,4,3992.50,59.70,1367.94,2337.20,0.00,1.656748,10.679032,251,417,9.098095,0.223474,37419571,20906612,0,0,52276,0,1,1 +1773618036.439248,3.05,4,3992.50,59.75,1365.91,2339.27,0.00,3517228608235.496094,3517228608226.480469,11,0,5.580729,0.157736,37430146,20915834,0,0,52278,0,1,1 +1773618041.441648,2.48,4,3992.50,59.78,1364.51,2340.64,0.00,0.180187,0.000000,205,0,4.804369,0.131600,37439087,20923836,0,0,52281,0,1,1 +1773618046.442255,2.84,4,3992.50,59.81,1363.57,2341.54,0.00,1.475700,10.673899,251,417,7.917012,0.194399,37453621,20935288,0,0,52283,0,1,1 +1773618051.441926,2.44,4,3992.50,59.83,1362.57,2342.56,0.00,3518668531780.746094,3518668531771.672852,75,0,7.327615,0.205132,37467595,20946964,0,0,52286,0,1,1 +1773618056.439677,2.99,4,3992.50,59.67,1368.72,2336.39,0.00,3520020397193.126465,0.000000,11,0,7.600045,0.187168,37481175,20957984,0,0,52288,0,1,1 +1773618061.438661,2.99,4,3992.50,59.71,1367.55,2337.59,0.00,0.180310,0.000000,205,0,10.431791,0.212058,37496667,20970364,0,0,52291,0,1,1 +1773618066.442372,3.09,4,3992.50,59.98,1366.01,2348.51,0.00,1.830673,0.000195,246,2,9.062592,0.218277,37512953,20982887,0,0,52293,0,1,1 +1773618071.439651,3.70,4,3992.50,59.77,1374.36,2340.23,0.00,3520353149817.899902,3520353149819.859375,75,0,7.057501,0.187256,37526237,20993732,0,0,52296,0,1,1 +1773618076.437886,2.69,4,3992.50,59.79,1373.55,2341.01,0.00,0.126803,0.000000,205,0,6.381928,0.168548,37538025,21003771,0,0,52298,0,1,1 +1773618081.438273,2.28,4,3992.50,59.77,1374.64,2339.94,0.00,32622.348009,33108.911060,2271554,2527883,8.759284,0.221321,37554048,21016596,0,0,52301,0,1,1 +1773618086.437649,3.04,4,3992.50,59.79,1373.61,2340.95,0.00,3518876054702.515625,3518876054215.854004,205,0,6.890742,0.178294,37567068,21026893,0,0,52303,0,1,1 +1773618091.439555,26.39,4,3992.50,59.75,1374.99,2339.51,0.00,3517096781398.725586,0.000000,11,0,109.211454,0.070890,37582621,21032022,0,0,52306,0,1,1 +1773618096.437533,30.43,4,3992.50,59.54,1383.27,2331.22,0.00,0.053537,0.000000,75,0,129.162895,0.034589,37595747,21034665,0,0,52308,0,1,1 +1773618101.442036,31.09,4,3992.50,59.65,1379.17,2335.33,0.00,3515271189728.876953,0.000000,11,0,124.807826,0.031594,37608120,21037143,0,0,52311,0,1,1 +1773618106.441612,29.88,4,3992.50,59.63,1379.89,2334.66,0.00,0.000000,0.000000,11,0,122.611159,0.032735,37620267,21039706,0,0,52313,0,1,1 +1773618111.437562,29.57,4,3992.50,59.56,1382.45,2332.05,0.00,0.000000,0.000000,11,0,121.327725,0.035061,37632396,21042435,0,0,52316,0,1,1 +1773618116.441546,4.67,4,3992.50,53.17,1632.79,2081.82,0.00,0.180130,0.000000,205,0,68.222289,0.019478,37639189,21043950,0,0,52318,0,1,1 +1773618121.438581,1.40,4,3992.50,52.72,1650.36,2064.25,0.00,1.833119,0.000195,246,2,0.002228,0.001054,37639231,21043980,0,0,52321,0,1,1 +1773618126.441716,0.60,4,3992.50,52.59,1655.63,2058.96,0.00,32612.229149,33101.782974,2273056,2528455,0.000000,0.000020,37639231,21043982,0,0,52323,0,1,1 +1773618131.441674,0.95,4,3992.50,52.88,1654.04,2070.46,0.00,3518467079700.396973,3518467079212.363770,205,0,0.000013,0.000061,37639232,21043987,0,0,52326,0,1,1 +1773618136.439795,0.60,4,3992.50,52.88,1654.05,2070.45,0.00,3519760168466.404297,0.000000,11,0,0.000033,0.000059,37639235,21043992,0,0,52328,0,1,1 +1773618141.439803,0.70,4,3992.50,52.88,1654.05,2070.45,0.00,2.012301,0.000195,246,2,0.000000,0.000030,37639235,21043995,0,0,52331,0,1,1 +1773618146.441964,0.60,4,3992.50,52.88,1654.05,2070.45,0.00,32618.584215,33108.322462,2273056,2528532,0.000000,0.000020,37639235,21043997,0,0,52333,0,1,1 +1773618151.437551,0.70,4,3992.50,52.88,1654.05,2070.44,0.00,3521545155366.681152,3521545154878.312500,11,0,0.000000,0.000030,37639235,21044000,0,0,52336,0,1,1 +1773618156.441968,0.95,4,3992.50,52.75,1651.01,2065.17,0.00,0.053468,0.000000,75,0,0.000000,0.000663,37639235,21044006,0,0,52338,0,1,1 +1773618161.441564,0.65,4,3992.50,52.75,1651.04,2065.17,0.00,32627.712890,33114.680429,2271567,2528148,0.000025,0.000061,37639237,21044011,0,0,52341,0,1,1 +1773618166.442128,0.65,4,3992.50,52.75,1650.80,2065.40,0.00,0.000000,0.003906,2271567,2528150,0.000117,0.000160,37639247,21044023,0,0,52343,0,1,1 +1773618171.442486,0.75,4,3992.50,52.75,1650.81,2065.40,0.00,3518184920993.970703,3518184920505.115234,246,2,0.000000,0.000030,37639247,21044026,0,0,52346,0,1,1 +1773618176.442052,0.65,4,3992.50,52.55,1658.68,2057.52,0.00,0.000000,0.000000,246,2,0.000000,0.000020,37639247,21044028,0,0,52348,0,1,1 +1773618181.439639,1.20,4,3992.50,52.21,1672.00,2044.21,0.00,3520136096261.594238,10.680154,251,417,0.001371,0.000735,37639269,21044047,0,0,52351,0,1,1 +1773618186.441737,40.54,4,3992.50,59.41,1390.22,2325.93,0.00,32609.805112,33087.623578,2271573,2528302,102.322156,0.074568,37650418,21049737,0,0,52353,0,1,1 +1773618191.440641,30.52,4,3992.50,58.76,1419.62,2300.39,0.00,3519208995100.031738,3519208994610.874512,246,2,122.931659,0.027008,37662687,21051758,0,0,52356,0,1,1 +1773618196.441761,28.87,4,3992.50,58.99,1410.45,2309.54,0.00,3517648891102.812012,10.672608,251,417,120.563819,0.025623,37674504,21053649,0,0,52358,0,1,1 +1773618201.442536,28.37,4,3992.50,59.21,1401.88,2318.15,0.00,32618.442229,33096.445739,2271573,2528379,120.361331,0.031805,37686142,21056096,0,0,52361,0,1,1 +1773618206.442374,28.51,4,3992.50,59.16,1403.94,2316.09,0.00,3518550788151.869141,3518550787664.756348,11,0,118.709135,0.029652,37697167,21058414,0,0,52363,0,1,1 +1773618211.442280,28.41,4,3992.50,59.08,1406.73,2313.27,0.00,0.053517,0.000000,75,0,120.113190,0.028436,37708223,21060614,0,0,52366,0,1,1 +1773618216.438104,28.51,4,3992.50,59.16,1403.92,2316.11,0.00,3521377889726.313965,0.000000,11,0,120.079472,0.028915,37719181,21062829,0,0,52368,0,1,1 +1773618221.442005,29.39,4,3992.50,58.49,1410.66,2290.08,0.00,0.000000,0.000000,11,0,118.120429,0.028213,37729990,21065014,0,0,52371,0,1,1 +1773618226.437563,8.11,4,3992.50,53.30,1613.83,2086.94,0.00,0.180434,0.000000,205,0,82.201825,0.020666,37737529,21066594,0,0,52373,0,1,1 +1773618231.442329,1.10,4,3992.50,52.43,1648.02,2052.75,0.00,32594.038167,33081.111782,2271584,2528484,0.003158,0.001602,37737590,21066638,0,0,52376,0,1,1 +1773618236.441927,0.80,4,3992.50,52.06,1662.41,2038.36,0.00,3518719843469.522949,3518719842991.145996,251,417,0.000000,0.000020,37737590,21066640,0,0,52378,0,1,1 +1773618241.441666,0.60,4,3992.50,51.87,1670.05,2030.71,0.00,0.356171,3518621099752.164551,246,2,0.000000,0.000030,37737590,21066643,0,0,52381,0,1,1 +1773618246.442537,0.90,4,3992.50,52.15,1668.94,2041.80,0.00,3517824123900.184082,3517824123902.016113,205,0,0.000000,0.000020,37737590,21066645,0,0,52383,0,1,1 +1773618251.441423,0.75,4,3992.50,52.18,1667.93,2042.79,0.00,1.832439,0.000195,246,2,0.000000,0.000030,37737590,21066648,0,0,52386,0,1,1 +1773618256.441730,0.75,4,3992.50,52.17,1668.30,2042.41,0.00,32621.269034,33110.770582,2271584,2528590,0.000000,0.000020,37737590,21066650,0,0,52388,0,1,1 +1773618261.442178,0.60,4,3992.50,52.17,1668.31,2042.40,0.00,3518122490051.920898,3518122489564.444824,11,0,0.000000,0.000030,37737590,21066653,0,0,52391,0,1,1 +1773618266.440994,0.85,4,3992.50,52.17,1668.31,2042.40,0.00,32642.576346,33131.339520,2273073,2529016,0.000000,0.000020,37737590,21066655,0,0,52393,0,1,1 +1773618271.441792,0.65,4,3992.50,52.17,1668.31,2042.40,0.00,3517875751682.218750,3517875751681.108398,2271584,2528600,0.000000,0.000674,37737590,21066662,0,0,52396,0,1,1 +1773618276.442349,0.95,4,3992.50,52.17,1669.72,2042.38,0.00,3518045354661.803223,3518045354183.338379,251,417,0.000126,0.000175,37737600,21066674,0,0,52398,0,1,1 +1773618281.437634,0.65,4,3992.50,52.08,1673.25,2038.87,0.00,0.000000,0.000000,251,417,0.000016,0.000690,37737602,21066683,0,0,52401,0,1,1 +1773618286.442287,0.60,4,3992.50,52.12,1671.56,2040.55,0.00,3515166508845.755371,3515166508836.745117,11,0,0.000000,0.000020,37737602,21066685,0,0,52403,0,1,1 +1773618291.440567,0.75,4,3992.50,52.07,1673.36,2038.75,0.00,0.180335,0.000000,205,0,0.000000,0.000030,37737602,21066688,0,0,52406,0,1,1 +1773618296.438855,40.37,4,3992.50,58.53,1420.53,2291.55,0.00,1.476385,10.678853,251,417,93.973173,0.036825,37747618,21069253,0,0,52408,0,1,1 +1773618301.437605,28.44,4,3992.50,58.50,1421.62,2290.33,0.00,32641.397096,33121.248057,2273083,2529191,118.794333,0.028775,37759767,21071450,0,0,52411,0,1,1 +1773618306.438644,29.00,4,3992.50,58.78,1412.54,2301.37,0.00,3517706190832.440430,3517706190831.442383,2271595,2528866,119.541358,0.024611,37772094,21073302,0,0,52413,0,1,1 +1773618311.442122,28.81,4,3992.50,58.67,1414.77,2297.12,0.00,3515992110339.664062,3515992109852.197754,75,0,119.688362,0.039126,37784370,21076303,0,0,52416,0,1,1 +1773618316.437566,28.59,4,3992.50,58.78,1410.61,2301.26,0.00,3521645561107.517090,0.000000,11,0,118.690624,0.067590,37796789,21081523,0,0,52418,0,1,1 +1773618321.440509,28.48,4,3992.50,58.46,1422.90,2288.99,0.00,0.053484,0.000000,75,0,119.707298,0.059815,37809169,21086185,0,0,52421,0,1,1 +1773618326.441832,28.92,4,3992.50,58.50,1421.44,2290.45,0.00,3517506584276.648438,0.000000,11,0,118.941915,0.045715,37821476,21089761,0,0,52423,0,1,1 +1773618331.442333,28.46,4,3992.50,58.77,1410.80,2301.12,0.00,32631.651140,33120.689526,2273084,2529397,119.353683,0.027494,37833613,21091907,0,0,52426,0,1,1 +1773618336.441538,11.98,4,3992.50,52.02,1675.11,2036.85,0.00,3518996540454.764160,3518996539965.599121,11,0,96.760338,0.051790,37843685,21095904,0,0,52428,0,1,1 +1773618341.441971,2.10,4,3992.50,52.41,1659.98,2051.98,0.00,32622.670147,33110.728195,2271606,2529034,0.003129,0.001715,37843747,21095953,0,0,52431,0,1,1 +1773618346.439876,0.65,4,3992.50,52.27,1665.50,2046.46,0.00,0.000000,0.046895,2271606,2529086,0.000000,0.000664,37843747,21095959,0,0,52433,0,1,1 +1773618351.442158,1.80,4,3992.50,52.26,1665.78,2046.19,0.00,3516831810061.596191,3516831809571.660645,246,2,0.000031,0.000055,37843749,21095964,0,0,52436,0,1,1 +1773618356.440001,0.60,4,3992.50,52.26,1665.78,2046.19,0.00,3519955588893.518066,10.679607,251,417,0.000000,0.000020,37843749,21095966,0,0,52438,0,1,1 +1773618361.441429,0.70,4,3992.50,52.26,1665.78,2046.18,0.00,3517432856580.380371,3517432856571.364258,11,0,0.001260,0.001279,37843760,21095985,0,0,52441,0,1,1 +1773618366.437648,0.75,4,3992.50,52.26,1665.68,2046.29,0.00,0.000000,0.000000,11,0,0.000008,0.000028,37843761,21095988,0,0,52443,0,1,1 +1773618371.439499,1.05,4,3992.50,52.45,1658.69,2053.63,0.00,0.000000,0.000000,11,0,0.000000,0.000030,37843761,21095991,0,0,52446,0,1,1 +1773618376.442108,0.75,4,3992.50,52.47,1657.96,2054.37,0.00,32618.033970,33107.177250,2273095,2529584,0.000000,0.000020,37843761,21095993,0,0,52448,0,1,1 +1773618381.442497,0.65,4,3992.50,52.48,1657.75,2054.59,0.00,3518163148631.449219,3518163148142.035156,75,0,0.000025,0.000061,37843763,21095998,0,0,52451,0,1,1 +1773618386.442309,1.00,4,3992.50,52.48,1657.75,2054.59,0.00,0.126763,0.000000,205,0,0.001241,0.000785,37843795,21096024,0,0,52453,0,1,1 +1773618391.437637,0.70,4,3992.50,52.48,1657.52,2054.82,0.00,0.000000,0.000000,205,0,0.001736,0.001362,37843820,21096043,0,0,52456,0,1,1 +1773618396.439634,0.70,4,3992.50,52.48,1657.52,2054.80,0.00,32621.841778,33111.257864,2273095,2529604,0.000000,0.000663,37843820,21096049,0,0,52458,0,1,1 +1773618401.442160,0.95,4,3992.50,52.68,1656.66,2062.40,0.00,3516661081647.188965,3516661081167.019043,251,417,0.000000,0.000030,37843820,21096052,0,0,52461,0,1,1 +1773618406.442197,31.12,4,3992.50,58.81,1416.54,2302.46,0.00,3518411206415.363770,3518411206406.344727,11,0,58.487150,0.028561,37850125,21098096,0,0,52463,0,1,1 +1773618411.441533,30.68,4,3992.50,59.17,1402.27,2316.68,0.00,32639.416518,33129.042725,2273102,2529755,119.384390,0.035174,37862436,21100743,0,0,52466,0,1,1 +1773618416.437663,28.33,4,3992.50,58.80,1416.74,2302.23,0.00,3521162783709.875488,3521162783219.881836,75,0,119.058594,0.022309,37874673,21102398,0,0,52468,0,1,1 +1773618421.441597,28.64,4,3992.50,58.93,1411.69,2307.24,0.00,1.957249,0.000195,246,2,119.072853,0.026051,37886851,21104384,0,0,52471,0,1,1 +1773618426.442309,28.32,4,3992.50,58.86,1417.73,2304.48,0.00,3517936258979.432129,3517936258981.444336,11,0,119.158149,0.051299,37899186,21108359,0,0,52473,0,1,1 +1773618431.441528,28.54,4,3992.50,59.08,1409.29,2312.93,0.00,1.656411,10.676864,251,417,119.782771,0.028226,37911381,21110543,0,0,52476,0,1,1 +1773618436.442358,28.29,4,3992.50,58.80,1420.23,2301.96,0.00,0.356093,3517853224130.199707,246,2,118.543319,0.019602,37923520,21112070,0,0,52478,0,1,1 +1773618441.441575,28.67,4,3992.50,58.83,1418.74,2303.41,0.00,3518987980469.760742,3518987980471.773438,11,0,120.201419,0.065741,37936043,21117164,0,0,52481,0,1,1 +1773618446.442039,20.10,4,3992.50,58.85,1418.30,2303.92,0.00,0.000000,0.000000,11,0,118.178526,0.095036,37948628,21124579,0,0,52483,0,1,1 +1773618451.441928,1.56,4,3992.50,52.79,1655.25,2066.99,0.00,0.053517,0.000000,75,0,13.625708,0.011178,37950164,21125374,0,0,52486,0,1,1 +1773618456.438429,0.90,4,3992.50,52.92,1650.12,2072.07,0.00,32657.980860,33148.361992,2273114,2529986,0.000000,0.000020,37950164,21125376,0,0,52488,0,1,1 +1773618461.441204,0.80,4,3992.50,52.94,1649.69,2072.55,0.00,3516485579498.680176,3516485579008.967285,11,0,0.000000,0.000030,37950164,21125379,0,0,52491,0,1,1 +1773618466.437788,0.60,4,3992.50,52.84,1653.33,2068.91,0.00,0.180397,0.000000,205,0,0.000000,0.000664,37950164,21125385,0,0,52493,0,1,1 +1773618471.437566,0.65,4,3992.50,52.87,1652.36,2069.88,0.00,0.000000,0.000000,205,0,0.000000,0.000030,37950164,21125388,0,0,52496,0,1,1 +1773618476.437568,0.60,4,3992.50,52.87,1652.36,2069.88,0.00,0.000000,0.000000,205,0,0.000000,0.000020,37950164,21125390,0,0,52498,0,1,1 +1773618481.441975,0.60,4,3992.50,52.87,1652.37,2069.87,0.00,0.000000,0.000000,205,0,0.000000,0.000030,37950164,21125393,0,0,52501,0,1,1 +1773618486.437486,0.80,4,3992.50,53.06,1645.43,2077.47,0.00,1.477205,10.684787,251,417,0.000000,0.000020,37950164,21125395,0,0,52503,0,1,1 +1773618491.437550,0.80,4,3992.50,53.07,1644.56,2077.68,0.00,3518392307862.642578,3518392307853.570312,75,0,0.000000,0.000030,37950164,21125398,0,0,52506,0,1,1 +1773618496.441558,0.60,4,3992.50,53.08,1644.07,2078.17,0.00,1.957220,0.000195,246,2,0.000126,0.000175,37950174,21125410,0,0,52508,0,1,1 +1773618501.441118,0.70,4,3992.50,53.08,1644.07,2078.17,0.00,3518746489807.839355,3518746489809.671387,205,0,0.000016,0.000046,37950176,21125415,0,0,52511,0,1,1 +1773618506.441718,0.65,4,3992.50,52.89,1651.47,2070.77,0.00,32621.528515,33110.637933,2271625,2529666,0.000000,0.000020,37950176,21125417,0,0,52513,0,1,1 +1773618511.442487,0.55,4,3992.50,52.90,1651.25,2070.99,0.00,3517895842445.344238,3517895841956.431152,11,0,0.000000,0.000030,37950176,21125420,0,0,52516,0,1,1 +1773618516.441867,27.36,4,3992.50,59.28,1400.95,2321.06,0.00,0.053522,0.000000,75,0,51.282702,0.024213,37955649,21127120,0,0,52518,0,1,1 +1773618521.441343,31.25,4,3992.50,59.07,1409.29,2312.76,0.00,0.126771,0.000000,205,0,118.778203,0.020372,37967935,21128653,0,0,52521,0,1,1 +1773618526.439487,28.07,4,3992.50,58.89,1416.20,2305.84,0.00,3519743998316.304688,0.000000,75,0,119.009252,0.023309,37980227,21130409,0,0,52523,0,1,1 +1773618531.440460,28.63,4,3992.50,58.99,1412.25,2309.76,0.00,3517752836400.779785,0.000000,11,0,119.342810,0.031725,37992444,21132891,0,0,52526,0,1,1 +1773618536.441604,27.82,4,3992.50,59.06,1409.91,2312.14,0.00,2.011844,0.000195,246,2,119.537954,0.023701,38004583,21134661,0,0,52528,0,1,1 +1773618541.439757,27.92,4,3992.50,59.18,1404.83,2317.22,0.00,32645.258026,33137.733995,2273120,2530309,118.808898,0.022526,38016782,21136389,0,0,52531,0,1,1 +1773618546.438076,27.09,4,3992.50,59.19,1404.54,2317.48,0.00,3519620187465.833496,3519620186975.333008,75,0,119.802600,0.019123,38028829,21137876,0,0,52533,0,1,1 +1773618551.437559,29.73,4,3992.50,59.29,1400.59,2321.25,0.00,0.126771,0.000000,205,0,118.581891,0.043089,38040868,21141203,0,0,52536,0,1,1 +1773618556.441847,22.02,4,3992.50,58.94,1414.18,2307.79,0.00,32607.064132,33097.324200,2273121,2530369,120.067038,0.038857,38053083,21144249,0,0,52538,0,1,1 +1773618561.437576,1.30,4,3992.50,55.23,1559.61,2162.32,0.00,3521445595111.605957,3521445594620.632812,75,0,20.249742,0.007968,38055264,21144785,0,0,52541,0,1,1 +1773618566.437603,0.90,4,3992.50,53.94,1609.99,2111.98,0.00,1.958778,0.000195,246,2,0.000000,0.000020,38055264,21144787,0,0,52543,0,1,1 +1773618571.438610,0.65,4,3992.50,53.29,1635.45,2086.52,0.00,3517729097049.590332,3517729097051.421875,205,0,0.000000,0.000030,38055264,21144790,0,0,52546,0,1,1 +1773618576.439627,0.90,4,3992.50,53.47,1629.28,2093.45,0.00,3517721610032.653809,0.000000,75,0,0.000000,0.000020,38055264,21144792,0,0,52548,0,1,1 +1773618581.441962,0.60,4,3992.50,53.42,1631.07,2091.65,0.00,1.957875,0.000195,246,2,0.000000,0.000030,38055264,21144795,0,0,52551,0,1,1 +1773618586.442441,0.70,4,3992.50,53.22,1639.03,2083.70,0.00,0.000000,0.000000,246,2,0.000000,0.000020,38055264,21144797,0,0,52553,0,1,1 +1773618591.442401,0.70,4,3992.50,53.03,1646.45,2076.28,0.00,3518464836570.776855,3518464836572.789551,11,0,0.000000,0.000030,38055264,21144800,0,0,52556,0,1,1 +1773618596.441608,0.60,4,3992.50,53.02,1647.07,2075.66,0.00,1.656415,10.676889,251,417,0.000000,0.000664,38055264,21144806,0,0,52558,0,1,1 +1773618601.441821,1.05,4,3992.50,53.06,1645.35,2077.38,0.00,0.356137,3518287244693.350098,246,2,0.000000,0.000030,38055264,21144809,0,0,52561,0,1,1 +1773618606.442131,1.75,4,3992.50,53.24,1648.60,2084.55,0.00,3518219413508.575195,3518219413510.406738,205,0,0.000434,0.000730,38055281,21144832,0,0,52563,0,1,1 +1773618611.441704,0.55,4,3992.50,53.24,1648.60,2084.55,0.00,3518737324804.442383,0.000000,11,0,0.000008,0.000038,38055282,21144836,0,0,52566,0,1,1 +1773618616.442355,0.60,4,3992.50,53.24,1648.60,2084.55,0.00,0.000000,0.000000,11,0,0.000205,0.000552,38055289,21144849,0,0,52568,0,1,1 +1773618621.441781,0.65,4,3992.50,53.24,1648.60,2084.55,0.00,0.000000,0.000000,11,0,0.000000,0.000030,38055289,21144852,0,0,52571,0,1,1 +1773618626.438130,20.10,4,3992.50,59.29,1411.73,2321.29,0.00,32649.702041,33139.711302,2271660,2530218,28.067013,0.019819,38058456,21146071,0,0,52573,0,1,1 +1773618631.441947,32.24,4,3992.50,59.18,1416.17,2316.87,0.00,3515753353510.470703,3515753353021.139160,75,0,120.076293,0.026852,38070854,21148101,0,0,52576,0,1,1 +1773618636.440897,27.94,4,3992.50,59.28,1414.83,2320.87,0.00,1.959200,0.000195,246,2,118.387590,0.019905,38082960,21149616,0,0,52578,0,1,1 +1773618641.442227,28.13,4,3992.50,59.37,1410.97,2324.59,0.00,32624.734357,33117.534154,2273149,2530776,119.931753,0.021932,38095155,21151282,0,0,52581,0,1,1 +1773618646.441551,28.12,4,3992.50,59.30,1413.83,2321.80,0.00,3518912639057.136230,3518912638575.171875,251,417,119.195361,0.052664,38107758,21155396,0,0,52583,0,1,1 +1773618651.437569,28.10,4,3992.50,59.42,1409.06,2326.52,0.00,3521241954156.855957,3521241954147.830078,11,0,119.265740,0.038184,38120131,21158381,0,0,52586,0,1,1 +1773618656.437734,29.15,4,3992.50,59.21,1417.45,2318.19,0.00,1.656098,10.674842,251,417,119.363543,0.024648,38132354,21160262,0,0,52588,0,1,1 +1773618661.442097,27.87,4,3992.50,59.26,1415.59,2320.02,0.00,3515369678317.301270,3515369678308.236816,75,0,118.869241,0.036641,38144709,21162962,0,0,52591,0,1,1 +1773618666.442415,26.84,4,3992.50,59.80,1394.65,2341.20,0.00,3518213676362.647949,0.000000,11,0,120.159886,0.025081,38157043,21164864,0,0,52593,0,1,1 +1773618671.437642,1.56,4,3992.50,55.33,1569.38,2166.27,0.00,0.180446,0.000000,205,0,42.102588,0.010216,38161370,21165540,0,0,52596,0,1,1 +1773618676.440474,0.65,4,3992.50,53.90,1625.22,2110.43,0.00,1.475043,10.669153,251,417,0.000008,0.000028,38161371,21165543,0,0,52598,0,1,1 +1773618681.437763,0.65,4,3992.50,53.29,1649.34,2086.31,0.00,0.000000,0.000000,251,417,0.000000,0.000030,38161371,21165546,0,0,52601,0,1,1 +1773618686.440003,0.80,4,3992.50,53.28,1649.82,2085.84,0.00,3516861645720.474609,3516861645711.406250,75,0,0.001140,0.000652,38161395,21165563,0,0,52603,0,1,1 +1773618691.441709,0.75,4,3992.50,53.27,1649.92,2085.74,0.00,3517237641619.968750,0.000000,11,0,0.001064,0.000431,38161417,21165579,0,0,52606,0,1,1 +1773618696.439080,1.00,4,3992.50,53.31,1645.81,2087.13,0.00,32652.747455,33144.220299,2273161,2530991,0.000000,0.000020,38161417,21165581,0,0,52608,0,1,1 +1773618701.441810,0.70,4,3992.50,53.31,1645.61,2087.36,0.00,3516517333609.335449,3516517333118.388672,11,0,0.000000,0.000030,38161417,21165584,0,0,52611,0,1,1 +1773618706.442400,0.65,4,3992.50,53.31,1645.61,2087.36,0.00,2.012067,0.000195,246,2,0.000031,0.000045,38161419,21165588,0,0,52613,0,1,1 +1773618711.439194,0.80,4,3992.50,53.21,1649.52,2083.46,0.00,3520694466933.373047,10.681849,251,417,0.000008,0.000038,38161420,21165592,0,0,52616,0,1,1 +1773618716.441849,0.70,4,3992.50,53.25,1648.29,2084.69,0.00,0.355963,3516570343261.719238,246,2,0.000075,0.000113,38161426,21165600,0,0,52618,0,1,1 +1773618721.441994,0.70,4,3992.50,53.25,1648.07,2084.91,0.00,3518335073724.998535,3518335073727.011230,11,0,0.000000,0.000030,38161426,21165603,0,0,52621,0,1,1 +1773618726.441930,0.95,4,3992.50,53.45,1631.82,2092.52,0.00,1.656173,10.675331,251,417,0.000000,0.000664,38161426,21165609,0,0,52623,0,1,1 +1773618731.437645,0.65,4,3992.50,53.15,1643.14,2080.86,0.00,3521455270007.831055,3521455269998.804688,11,0,0.000050,0.000092,38161430,21165616,0,0,52626,0,1,1 +1773618736.437594,23.97,4,3992.50,58.79,1422.16,2301.80,0.00,32635.913487,33127.335913,2273166,2531114,36.268862,0.022555,38165371,21167183,0,0,52628,0,1,1 +1773618741.438493,31.92,4,3992.50,58.86,1419.57,2304.38,0.00,3517804829019.208496,3517804828527.879883,11,0,120.034026,0.050862,38178076,21171109,0,0,52631,0,1,1 +1773618746.441549,28.14,4,3992.50,59.61,1389.97,2333.95,0.00,32615.650354,33106.902053,2273166,2531216,115.925274,0.050673,38190462,21175078,0,0,52633,0,1,1 +1773618751.441121,28.35,4,3992.50,59.03,1412.80,2311.14,0.00,3518738556908.941895,3518738556417.167480,205,0,120.077104,0.032594,38202036,21177644,0,0,52636,0,1,1 +1773618756.438104,28.87,4,3992.50,58.96,1415.49,2308.45,0.00,3520561387475.787598,0.000000,11,0,120.906262,0.036996,38214207,21180496,0,0,52638,0,1,1 +1773618761.441978,28.79,4,3992.50,59.19,1406.53,2317.39,0.00,32600.770311,33090.886559,2271678,2530831,118.892055,0.031537,38226221,21182995,0,0,52641,0,1,1 +1773618766.442314,29.11,4,3992.50,59.06,1411.84,2312.14,0.00,3518200568826.891602,3518200568345.446289,251,417,119.726805,0.035283,38238579,21185691,0,0,52643,0,1,1 +1773618771.441673,28.99,4,3992.50,59.07,1411.18,2312.81,0.00,32638.120923,33120.839960,2273167,2531319,119.779985,0.034847,38250708,21188339,0,0,52646,0,1,1 +1773618776.441737,25.48,4,3992.50,59.13,1408.98,2315.04,0.00,3518392442702.413574,3518392442210.743652,11,0,119.578998,0.036662,38263201,21191123,0,0,52648,0,1,1 +1773618781.442395,1.36,4,3992.50,52.44,1670.90,2053.11,0.00,1.655934,10.673790,251,417,34.793510,0.013454,38266931,21192067,0,0,52651,0,1,1 +1773618786.442125,0.75,4,3992.50,52.28,1677.08,2046.93,0.00,3518626993769.485840,3518626993760.413086,75,0,0.000619,0.000273,38266943,21192076,0,0,52653,0,1,1 +1773618791.439488,1.00,4,3992.50,52.51,1671.41,2055.71,0.00,3520293587126.266113,0.000000,11,0,0.000000,0.000030,38266943,21192079,0,0,52656,0,1,1 +1773618796.438102,0.55,4,3992.50,52.47,1672.64,2054.48,0.00,2.012863,0.000195,246,2,0.000000,0.000664,38266943,21192085,0,0,52658,0,1,1 +1773618801.440354,0.65,4,3992.50,52.48,1672.40,2054.72,0.00,3516853605574.558105,3516853605576.515625,75,0,0.000000,0.000030,38266943,21192088,0,0,52661,0,1,1 +1773618806.440302,0.55,4,3992.50,52.47,1672.87,2054.26,0.00,1.602653,10.675307,251,417,0.000000,0.000020,38266943,21192090,0,0,52663,0,1,1 +1773618811.442429,0.70,4,3992.50,52.47,1672.86,2054.27,0.00,32620.202968,33102.892748,2273182,2531478,0.000000,0.000030,38266943,21192093,0,0,52666,0,1,1 +1773618816.441194,0.85,4,3992.50,52.68,1668.10,2062.35,0.00,3519306400585.201172,3519306400093.111816,75,0,0.000000,0.000020,38266943,21192095,0,0,52668,0,1,1 +1773618821.442220,0.65,4,3992.50,52.68,1668.03,2062.35,0.00,1.602308,10.673003,251,417,0.000000,0.000030,38266943,21192098,0,0,52671,0,1,1 +1773618826.437636,0.70,4,3992.50,52.61,1670.46,2059.93,0.00,3521666403002.776855,3521666402993.749512,11,0,0.000101,0.000144,38266951,21192108,0,0,52673,0,1,1 +1773618831.439846,0.65,4,3992.50,52.57,1672.21,2058.17,0.00,32621.316813,33113.183875,2273182,2531538,0.000041,0.000077,38266955,21192115,0,0,52676,0,1,1 +1773618836.442189,0.65,4,3992.50,52.61,1670.50,2059.88,0.00,3516789416217.780273,3516789415725.746094,205,0,0.000000,0.000020,38266955,21192117,0,0,52678,0,1,1 +1773618841.441654,0.65,4,3992.50,52.61,1670.50,2059.88,0.00,3518813488277.049805,0.000000,11,0,0.000000,0.000030,38266955,21192120,0,0,52681,0,1,1 +1773618846.437599,21.88,4,3992.50,59.20,1412.47,2317.74,0.00,1.657496,10.683859,251,417,26.679092,0.020144,38270009,21193523,0,0,52683,0,1,1 +1773618851.442477,32.70,4,3992.50,58.82,1427.47,2302.83,0.00,3515008094228.107910,3515008094219.098145,11,0,118.192611,0.062049,38281807,21198297,0,0,52686,0,1,1 +1773618856.439643,28.22,4,3992.50,58.78,1429.07,2301.23,0.00,32654.302652,33146.881095,2273190,2531756,119.716242,0.059123,38294599,21202851,0,0,52688,0,1,1 +1773618861.441302,28.04,4,3992.50,58.98,1420.94,2309.34,0.00,3517270304237.625488,3517270303745.489258,11,0,118.750147,0.065428,38307377,21207848,0,0,52691,0,1,1 +1773618866.441568,28.75,4,3992.50,58.87,1425.60,2304.75,0.00,0.000000,0.000000,11,0,119.972676,0.053771,38320375,21211993,0,0,52693,0,1,1 +1773618871.437563,28.32,4,3992.50,58.86,1425.92,2304.41,0.00,32652.384565,33144.048985,2271701,2531386,118.791754,0.060097,38333699,21216675,0,0,52696,0,1,1 +1773618876.438666,28.30,4,3992.50,59.18,1413.16,2317.10,0.00,0.000000,0.026850,2271701,2531401,119.406949,0.065094,38347129,21221802,0,0,52698,0,1,1 +1773618881.441568,29.18,4,3992.50,58.89,1424.64,2305.70,0.00,3516396165682.989746,3516396165191.977051,11,0,119.779313,0.074040,38361094,21227626,0,0,52701,0,1,1 +1773618886.442333,27.92,4,3992.50,59.00,1420.36,2310.03,0.00,0.000000,0.000000,11,0,119.151212,0.073067,38375006,21233325,0,0,52703,0,1,1 +1773618891.442020,1.71,4,3992.50,52.66,1668.66,2061.70,0.00,0.000000,0.000000,11,0,46.120389,0.031870,38380724,21235733,0,0,52706,0,1,1 +1773618896.443022,0.75,4,3992.50,52.67,1668.24,2062.13,0.00,32619.839090,33111.356304,2271718,2531548,0.000236,0.000336,38380730,21235741,0,0,52708,0,1,1 +1773618901.441679,0.65,4,3992.50,52.65,1669.04,2061.33,0.00,3519382585187.188477,3519382584693.427734,246,2,0.000000,0.000030,38380730,21235744,0,0,52711,0,1,1 +1773618906.441835,1.10,4,3992.50,52.74,1661.46,2064.89,0.00,0.000000,0.000000,246,2,0.000308,0.000574,38380737,21235757,0,0,52713,0,1,1 +1773618911.441556,0.70,4,3992.50,52.74,1661.22,2064.89,0.00,32626.202093,33119.960696,2271719,2531628,0.000000,0.000030,38380737,21235760,0,0,52716,0,1,1 +1773618916.441642,0.60,4,3992.50,52.74,1661.22,2064.89,0.00,3518376794578.119629,3518376794086.229004,205,0,0.000205,0.000552,38380744,21235773,0,0,52718,0,1,1 +1773618921.442132,0.60,4,3992.50,52.63,1665.59,2060.52,0.00,3518092354916.113770,0.000000,11,0,0.000000,0.000030,38380744,21235776,0,0,52721,0,1,1 +1773618926.441771,0.65,4,3992.50,52.63,1665.59,2060.52,0.00,2.012450,0.000195,246,2,0.000000,0.000664,38380744,21235782,0,0,52723,0,1,1 +1773618931.441348,0.70,4,3992.50,52.50,1670.56,2055.55,0.00,3518734592624.222656,3518734592626.054688,205,0,0.000000,0.000030,38380744,21235785,0,0,52726,0,1,1 +1773618936.441896,0.75,4,3992.50,52.50,1670.57,2055.54,0.00,1.475717,10.674025,251,417,0.000101,0.000144,38380752,21235795,0,0,52728,0,1,1 +1773618941.437563,0.95,4,3992.50,52.72,1659.23,2064.10,0.00,3521489428150.168457,3521489428140.960938,205,0,0.001161,0.001272,38380764,21235815,0,0,52731,0,1,1 +1773618946.442230,1.60,4,3992.50,52.72,1659.24,2064.09,0.00,0.000000,0.000000,205,0,0.000000,0.000056,38380764,21235818,0,0,52733,0,1,1 +1773618951.437564,0.60,4,3992.50,52.72,1659.23,2064.11,0.00,32666.254577,33159.847742,2273208,2532148,0.000031,0.000055,38380766,21235823,0,0,52736,0,1,1 +1773618956.442202,1.10,4,3992.50,52.71,1659.67,2063.67,0.00,3515176631279.408691,3515176630795.923828,251,417,0.002038,0.001633,38380791,21235842,0,0,52738,0,1,1 +1773618961.437562,38.91,4,3992.50,58.62,1428.34,2294.98,0.00,0.000000,0.000000,251,417,89.389126,0.043944,38390938,21238992,0,0,52741,0,1,1 +1773618966.439232,28.22,4,3992.50,59.09,1410.31,2313.45,0.00,3517262150687.003418,3517262150677.987793,11,0,119.151177,0.052909,38404133,21243055,0,0,52743,0,1,1 +1773618971.437568,28.33,4,3992.50,58.78,1421.92,2301.48,0.00,0.053533,0.000000,75,0,119.398856,0.062366,38417862,21247860,0,0,52746,0,1,1 +1773618976.441542,27.89,4,3992.50,59.07,1410.55,2312.81,0.00,32600.428953,33092.207438,2271724,2531962,119.194377,0.049448,38431424,21251701,0,0,52748,0,1,1 +1773618981.441552,28.35,4,3992.50,58.95,1415.41,2307.96,0.00,3518429912108.067871,3518429911624.971680,251,417,119.451775,0.051129,38444985,21255686,0,0,52751,0,1,1 +1773618986.437665,28.85,4,3992.50,59.28,1402.35,2321.02,0.00,0.356429,3521174655261.952148,246,2,119.439531,0.058511,38458888,21260154,0,0,52753,0,1,1 +1773618991.441503,28.92,4,3992.50,58.92,1416.54,2306.83,0.00,3515738832919.169922,3515738832921.180664,11,0,119.746255,0.075381,38474013,21265950,0,0,52756,0,1,1 +1773618996.442276,28.79,4,3992.50,59.33,1400.43,2322.91,0.00,0.000000,0.000000,11,0,119.181621,0.072070,38488843,21271577,0,0,52758,0,1,1 +1773619001.442399,13.41,4,3992.50,53.62,1619.40,2099.32,0.00,32625.624323,33117.855272,2271730,2532036,101.580558,0.057394,38501708,21276067,0,0,52761,0,1,1 +1773619006.442085,1.05,4,3992.50,52.76,1653.23,2065.50,0.00,0.034377,0.156650,2271735,2532066,0.003161,0.002238,38501769,21276114,0,0,52763,0,1,1 +1773619011.441875,1.00,4,3992.50,52.77,1652.77,2065.95,0.00,3518584842114.294434,3518584841621.854980,75,0,0.000000,0.000030,38501769,21276117,0,0,52766,0,1,1 +1773619016.441832,0.60,4,3992.50,52.77,1652.78,2065.95,0.00,3518467789997.790527,0.000000,11,0,0.000000,0.000020,38501769,21276119,0,0,52768,0,1,1 +1773619021.441546,0.70,4,3992.50,52.78,1652.46,2066.27,0.00,0.000000,0.000000,11,0,0.000000,0.000030,38501769,21276122,0,0,52771,0,1,1 +1773619026.441451,0.95,4,3992.50,52.78,1652.23,2066.49,0.00,0.000000,0.000000,11,0,0.000000,0.000020,38501769,21276124,0,0,52773,0,1,1 +1773619031.439817,0.70,4,3992.50,52.59,1659.70,2059.03,0.00,0.053533,0.000000,75,0,0.000025,0.000061,38501771,21276129,0,0,52776,0,1,1 +1773619036.441181,0.70,4,3992.50,52.58,1659.93,2058.79,0.00,1.958255,0.000195,246,2,0.000033,0.000059,38501774,21276134,0,0,52778,0,1,1 +1773619041.440208,0.55,4,3992.50,52.59,1659.69,2059.04,0.00,32640.358403,33136.110180,2273224,2532617,0.000000,0.000030,38501774,21276137,0,0,52781,0,1,1 +1773619046.442471,0.70,4,3992.50,52.59,1659.69,2059.03,0.00,3516846029905.541504,3516846029410.109863,246,2,0.000000,0.000663,38501774,21276143,0,0,52783,0,1,1 +1773619051.437647,0.70,4,3992.50,52.59,1659.69,2059.03,0.00,3521834491584.532715,10.685307,251,417,0.000126,0.000185,38501784,21276156,0,0,52786,0,1,1 +1773619056.442507,0.55,4,3992.50,52.59,1659.69,2059.02,0.00,3515021091344.654785,3515021091335.645020,11,0,0.000008,0.000671,38501785,21276163,0,0,52788,0,1,1 +1773619061.437648,1.00,4,3992.50,52.92,1656.41,2072.03,0.00,0.000000,0.000000,11,0,0.000000,0.000030,38501785,21276166,0,0,52791,0,1,1 +1773619066.441748,0.85,4,3992.50,52.72,1664.26,2064.18,0.00,0.180126,0.000000,205,0,0.001369,0.000408,38501807,21276183,0,0,52793,0,1,1 +1773619071.437644,36.27,4,3992.50,59.54,1397.10,2331.27,0.00,32662.658231,33156.952536,2273229,2532704,85.294836,0.056313,38511491,21280378,0,0,52796,0,1,1 +1773619076.438934,30.02,4,3992.50,59.29,1406.93,2321.43,0.00,3517529664849.916504,3517529664356.154785,205,0,120.891296,0.045164,38524692,21283794,0,0,52798,0,1,1 +1773619081.441566,28.86,4,3992.50,59.70,1390.95,2337.39,0.00,1.475102,10.669579,251,417,120.479480,0.032575,38537214,21286282,0,0,52801,0,1,1 +1773619086.438577,28.85,4,3992.50,59.79,1387.60,2340.91,0.00,32653.892574,33139.048131,2273229,2532849,119.669274,0.046697,38550396,21289880,0,0,52803,0,1,1 +1773619091.442351,28.86,4,3992.50,59.58,1395.87,2332.66,0.00,3515783490291.810547,3515783489798.298828,11,0,119.934055,0.038779,38562923,21292873,0,0,52806,0,1,1 +1773619096.439349,28.45,4,3992.50,59.75,1389.04,2339.49,0.00,0.180382,0.000000,205,0,119.816621,0.039475,38575475,21295958,0,0,52808,0,1,1 +1773619101.439888,29.11,4,3992.50,59.62,1394.15,2334.45,0.00,32632.331118,33126.526884,2273229,2532916,118.301028,0.037194,38587906,21298872,0,0,52811,0,1,1 +1773619106.442004,28.72,4,3992.50,59.76,1388.64,2339.81,0.00,3516949003894.816406,3516949003400.956543,11,0,118.749157,0.046187,38600837,21302389,0,0,52813,0,1,1 +1773619111.437556,13.12,4,3992.50,54.31,1602.24,2126.36,0.00,32665.160212,33159.703937,2273235,2532944,103.365833,0.033613,38611887,21304958,0,0,52816,0,1,1 +1773619116.437571,1.45,4,3992.50,53.57,1631.23,2097.24,0.00,0.067969,0.064355,2273240,2532990,0.003921,0.001798,38611967,21305015,0,0,52818,0,1,1 +1773619121.437564,0.55,4,3992.50,53.04,1652.00,2076.48,0.00,3518442067586.853516,3518442067101.771484,251,417,0.000000,0.000030,38611967,21305018,0,0,52821,0,1,1 +1773619126.437613,0.60,4,3992.50,52.84,1659.82,2068.67,0.00,3518402872084.234863,3518402872075.215820,11,0,0.000000,0.000020,38611967,21305020,0,0,52823,0,1,1 +1773619131.441664,0.70,4,3992.50,52.84,1659.57,2068.91,0.00,0.000000,0.000000,11,0,0.000000,0.000030,38611967,21305023,0,0,52826,0,1,1 +1773619136.437680,0.60,4,3992.50,52.84,1659.87,2068.62,0.00,0.000000,0.000000,11,0,0.000000,0.000020,38611967,21305025,0,0,52828,0,1,1 +1773619141.442168,0.65,4,3992.50,52.84,1659.87,2068.62,0.00,0.053468,0.000000,75,0,0.000000,0.000030,38611967,21305028,0,0,52831,0,1,1 +1773619146.442160,1.00,4,3992.50,52.84,1649.48,2068.80,0.00,1.602640,10.675214,251,417,0.000000,0.000020,38611967,21305030,0,0,52833,0,1,1 +1773619151.441800,0.80,4,3992.50,52.82,1650.34,2067.98,0.00,3518690270270.882812,3518690270261.810059,75,0,0.000000,0.000030,38611967,21305033,0,0,52836,0,1,1 +1773619156.437568,0.65,4,3992.50,52.79,1651.37,2066.95,0.00,1.603994,10.684239,251,417,0.000000,0.000697,38611967,21305040,0,0,52838,0,1,1 +1773619161.441787,0.55,4,3992.50,52.79,1651.37,2066.95,0.00,3515470668411.592773,3515470668402.581543,11,0,0.000126,0.000185,38611977,21305053,0,0,52841,0,1,1 +1773619166.442082,0.95,4,3992.50,52.80,1651.13,2067.18,0.00,0.000000,0.000000,11,0,0.000016,0.000680,38611979,21305061,0,0,52843,0,1,1 +1773619171.437640,0.65,4,3992.50,52.80,1651.14,2067.18,0.00,0.000000,0.000000,11,0,0.000000,0.000030,38611979,21305064,0,0,52846,0,1,1 +1773619176.437639,0.85,4,3992.50,52.88,1652.84,2070.48,0.00,2.012305,0.000195,246,2,0.000000,0.000020,38611979,21305066,0,0,52848,0,1,1 +1773619181.437533,39.63,4,3992.50,58.89,1417.48,2305.78,0.00,3518511829481.723633,10.675226,251,417,102.417541,0.046966,38622609,21308506,0,0,52851,0,1,1 +1773619186.440907,29.41,4,3992.50,58.89,1417.68,2305.55,0.00,32612.524863,33097.748005,2273247,2533353,121.941972,0.042578,38635201,21311743,0,0,52853,0,1,1 +1773619191.437690,28.95,4,3992.50,59.15,1407.41,2315.87,0.00,3520702903476.325684,3520702902981.437988,11,0,121.350140,0.068146,38648445,21317048,0,0,52856,0,1,1 +1773619196.442077,28.86,4,3992.50,59.24,1403.78,2319.29,0.00,32607.579759,33101.728235,2273247,2533381,120.364109,0.064586,38661948,21322074,0,0,52858,0,1,1 +1773619201.441548,30.12,4,3992.50,59.01,1412.81,2310.37,0.00,2.996411,0.007423,2273481,2533392,119.938505,0.062800,38675773,21327004,0,0,52861,0,1,1 +1773619206.440447,30.88,4,3992.50,59.04,1413.54,2311.70,0.00,7.711853,0.651511,2273937,2533523,119.664813,0.061735,38689437,21331787,0,0,52863,0,1,1 +1773619211.437616,29.33,4,3992.50,58.94,1417.27,2307.80,0.00,3520430422819.122070,3520430422334.313477,11,0,119.570784,0.070591,38703113,21337314,0,0,52866,0,1,1 +1773619216.439265,29.20,4,3992.50,59.16,1408.96,2316.17,0.00,0.000000,0.000000,11,0,119.689915,0.071067,38717087,21342802,0,0,52868,0,1,1 +1773619221.438653,8.41,4,3992.50,52.43,1672.38,2052.88,0.00,2.012551,0.000195,246,2,81.600318,0.047756,38726500,21346514,0,0,52871,0,1,1 +1773619226.437612,1.51,4,3992.50,52.44,1672.25,2053.00,0.00,3519169957078.460938,10.677223,251,417,0.002925,0.001173,38726555,21346551,0,0,52873,0,1,1 +1773619231.441700,0.75,4,3992.50,52.44,1672.26,2053.00,0.00,32618.717130,33094.227001,2273952,2533782,0.000000,0.000030,38726555,21346554,0,0,52876,0,1,1 +1773619236.437673,0.90,4,3992.50,52.64,1662.06,2061.05,0.00,3521273118757.339355,3521273118271.850586,205,0,0.000000,0.000020,38726555,21346556,0,0,52878,0,1,1 +1773619241.441567,0.65,4,3992.50,52.62,1662.80,2060.32,0.00,1.830606,0.000195,246,2,0.000204,0.000561,38726562,21346570,0,0,52881,0,1,1 +1773619246.437561,1.31,4,3992.50,53.01,1642.14,2075.50,0.00,3521258334716.961426,3521258334718.975586,11,0,0.000000,0.000020,38726562,21346572,0,0,52883,0,1,1 +1773619251.437551,0.60,4,3992.50,53.02,1641.86,2075.73,0.00,32639.142112,33122.036756,2272957,2533508,0.000031,0.000055,38726564,21346577,0,0,52886,0,1,1 +1773619256.437609,0.55,4,3992.50,53.02,1641.86,2075.72,0.00,3518395930088.636230,3518395929605.748047,11,0,0.000000,0.000020,38726564,21346579,0,0,52888,0,1,1 +1773619261.437647,0.85,4,3992.50,53.02,1641.87,2075.71,0.00,32648.387932,33132.470670,2274446,2534017,0.001261,0.001279,38726575,21346598,0,0,52891,0,1,1 +1773619266.441910,0.85,4,3992.50,53.02,1642.12,2075.68,0.00,3515440265519.484375,3515440265033.800293,246,2,0.000033,0.000059,38726578,21346603,0,0,52893,0,1,1 +1773619271.442116,0.70,4,3992.50,53.02,1641.62,2075.91,0.00,3518292074407.689453,3518292074409.521484,205,0,0.000101,0.000637,38726586,21346617,0,0,52896,0,1,1 +1773619276.441982,0.65,4,3992.50,53.02,1641.62,2075.91,0.00,3518531388708.994629,0.000000,11,0,0.000000,0.000181,38726586,21346620,0,0,52898,0,1,1 +1773619281.439166,0.70,4,3992.50,53.02,1641.61,2075.91,0.00,0.053546,0.000000,75,0,0.000000,0.000030,38726586,21346623,0,0,52901,0,1,1 +1773619286.442400,0.90,4,3992.50,53.03,1641.38,2076.15,0.00,32627.483134,33111.403096,2274446,2534073,0.001809,0.001581,38726613,21346643,0,0,52903,0,1,1 +1773619291.438192,38.84,4,3992.50,58.84,1413.89,2303.57,0.00,3521400754955.239746,3521400754954.135742,2272963,2533697,84.801183,0.039124,38735758,21349351,0,0,52906,0,1,1 +1773619296.441617,28.11,4,3992.50,59.31,1395.37,2322.13,0.00,3516028653020.057617,3516028652535.301758,246,2,119.715880,0.100579,38748602,21357118,0,0,52908,0,1,1 +1773619301.441581,28.05,4,3992.50,58.98,1408.12,2309.36,0.00,3518462469330.820312,3518462469332.652344,205,0,118.600648,0.105941,38761443,21365366,0,0,52911,0,1,1 +1773619306.442409,28.29,4,3992.50,59.12,1402.92,2314.59,0.00,0.000000,0.000000,205,0,120.179955,0.107444,38774434,21373743,0,0,52913,0,1,1 +1773619311.437978,28.25,4,3992.50,58.84,1413.90,2303.55,0.00,32677.416524,33162.403388,2274452,2534297,118.301808,0.107218,38787207,21382103,0,0,52916,0,1,1 +1773619316.441553,28.51,4,3992.50,58.78,1416.13,2301.27,0.00,3515923643125.272461,3515923642641.241699,11,0,120.117804,0.105669,38800220,21390335,0,0,52918,0,1,1 +1773619321.440851,28.61,4,3992.50,58.82,1414.64,2302.80,0.00,0.053523,0.000000,75,0,119.216158,0.107746,38813086,21398717,0,0,52921,0,1,1 +1773619326.441875,28.73,4,3992.50,58.79,1415.73,2301.70,0.00,32641.909589,33126.415238,2274452,2534337,119.174967,0.108425,38825938,21407152,0,0,52923,0,1,1 +1773619331.437560,14.63,4,3992.50,54.32,1590.25,2126.86,0.00,3521475523869.798340,3521475523868.739746,2272969,2533942,105.667215,0.097076,38837283,21414733,0,0,52926,0,1,1 +1773619336.437644,0.95,4,3992.50,54.10,1598.91,2118.17,0.00,3518378109008.862793,3518378108525.197754,205,0,0.003142,0.001476,38837343,21414775,0,0,52928,0,1,1 +1773619341.440970,0.65,4,3992.50,53.31,1630.08,2087.02,0.00,0.000000,0.000000,205,0,0.000000,0.000673,38837343,21414782,0,0,52931,0,1,1 +1773619346.437566,0.60,4,3992.50,53.08,1638.90,2078.21,0.00,3520834756518.872559,0.000000,75,0,0.000000,0.000020,38837343,21414784,0,0,52933,0,1,1 +1773619351.437635,0.65,4,3992.50,52.90,1646.02,2071.10,0.00,32648.270224,33133.030018,2274463,2534438,0.000000,0.000030,38837343,21414787,0,0,52936,0,1,1 +1773619356.437644,0.70,4,3992.50,52.90,1645.80,2071.30,0.00,3518431075275.120605,3518431074790.228027,205,0,0.000000,0.000020,38837343,21414789,0,0,52938,0,1,1 +1773619361.437647,0.90,4,3992.50,52.77,1643.00,2066.21,0.00,1.832030,0.000195,246,2,0.000000,0.000030,38837343,21414792,0,0,52941,0,1,1 +1773619366.438554,0.70,4,3992.50,52.77,1643.00,2066.22,0.00,0.000000,0.000000,246,2,0.000000,0.000020,38837343,21414794,0,0,52943,0,1,1 +1773619371.437579,1.71,4,3992.50,52.77,1643.33,2065.89,0.00,3519122884637.754883,3519122884639.587402,205,0,0.000000,0.000030,38837343,21414797,0,0,52946,0,1,1 +1773619376.442472,0.65,4,3992.50,52.73,1644.56,2064.66,0.00,1.474436,10.664759,251,417,0.000025,0.000051,38837345,21414801,0,0,52948,0,1,1 +1773619381.441733,0.60,4,3992.50,52.76,1643.59,2065.63,0.00,3518957053146.395996,3518957053137.322754,75,0,0.000109,0.000162,38837354,21414813,0,0,52951,0,1,1 +1773619386.442312,0.85,4,3992.50,52.79,1635.05,2066.85,0.00,3518030139022.972168,0.000000,11,0,0.000008,0.000028,38837355,21414816,0,0,52953,0,1,1 +1773619391.441851,0.70,4,3992.50,52.62,1641.71,2060.20,0.00,32651.786250,33136.704886,2274463,2534551,0.000000,0.000030,38837355,21414819,0,0,52956,0,1,1 +1773619396.441888,0.60,4,3992.50,52.63,1641.26,2060.64,0.00,3518411202620.900879,3518411202145.049805,251,417,0.000000,0.000020,38837355,21414821,0,0,52958,0,1,1 +1773619401.442404,35.88,4,3992.50,59.08,1388.52,2313.30,0.00,3518074122523.834961,3518074122514.636719,205,0,75.703197,0.039742,38845380,21417727,0,0,52961,0,1,1 +1773619406.438125,29.29,4,3992.50,58.80,1399.57,2302.21,0.00,3521450559201.094727,0.000000,11,0,119.264499,0.053214,38857346,21421789,0,0,52963,0,1,1 +1773619411.441369,29.03,4,3992.50,58.81,1399.34,2302.40,0.00,2.011000,0.000195,246,2,119.083854,0.040342,38869260,21424919,0,0,52966,0,1,1 +1773619416.438165,28.71,4,3992.50,58.79,1400.21,2301.59,0.00,3520692991519.725586,3520692991521.559082,205,0,119.239998,0.037485,38881372,21427809,0,0,52968,0,1,1 +1773619421.439773,28.81,4,3992.50,58.77,1405.51,2300.83,0.00,1.831442,0.000195,246,2,119.123554,0.044431,38893400,21431274,0,0,52971,0,1,1 +1773619426.440328,28.76,4,3992.50,58.71,1407.59,2298.71,0.00,32643.148255,33130.270605,2274468,2534800,119.151892,0.041333,38905626,21434472,0,0,52973,0,1,1 +1773619431.441900,28.51,4,3992.50,59.28,1385.36,2320.89,0.00,3517330783656.698242,3517330783171.687012,11,0,119.126940,0.040566,38917754,21437590,0,0,52976,0,1,1 +1773619436.437874,28.78,4,3992.50,58.74,1406.36,2299.93,0.00,32665.522636,33149.976217,2272979,2534407,119.459897,0.045638,38929914,21441155,0,0,52978,0,1,1 +1773619441.441992,18.45,4,3992.50,54.90,1556.98,2149.38,0.00,0.035908,0.097186,2272985,2534419,115.263537,0.044487,38941679,21444652,0,0,52981,0,1,1 +1773619446.441566,1.30,4,3992.50,53.58,1613.99,2097.63,0.00,3518737076797.686035,3518737076313.339355,205,0,0.003118,0.001445,38941737,21444692,0,0,52983,0,1,1 +1773619451.437640,0.65,4,3992.50,53.19,1629.22,2082.41,0.00,0.000000,0.000000,205,0,0.000000,0.000030,38941737,21444695,0,0,52986,0,1,1 +1773619456.437583,0.65,4,3992.50,53.14,1631.07,2080.54,0.00,0.000000,0.000000,205,0,0.000000,0.000020,38941737,21444697,0,0,52988,0,1,1 +1773619461.441694,0.75,4,3992.50,53.15,1630.82,2080.80,0.00,0.000000,0.000000,205,0,0.000000,0.000030,38941737,21444700,0,0,52991,0,1,1 +1773619466.442348,0.90,4,3992.50,53.15,1630.82,2080.80,0.00,1.475686,10.673799,251,417,0.000000,0.000020,38941737,21444702,0,0,52993,0,1,1 +1773619471.437566,0.60,4,3992.50,53.16,1630.37,2081.25,0.00,3521805807684.259766,3521805807675.232422,11,0,0.000000,0.000674,38941737,21444709,0,0,52996,0,1,1 +1773619476.440757,1.00,4,3992.50,53.32,1623.86,2087.72,0.00,2.011021,0.000195,246,2,0.000000,0.000020,38941737,21444711,0,0,52998,0,1,1 +1773619481.439862,0.55,4,3992.50,53.13,1631.54,2080.08,0.00,3519067385169.373047,3519067385171.385742,11,0,0.000000,0.000030,38941737,21444714,0,0,53001,0,1,1 +1773619486.442020,0.70,4,3992.50,53.13,1631.30,2080.31,0.00,0.180196,0.000000,205,0,0.000025,0.000051,38941739,21444718,0,0,53003,0,1,1 +1773619491.438838,0.70,4,3992.50,53.14,1631.06,2080.56,0.00,0.000000,0.000000,205,0,0.000117,0.000170,38941749,21444731,0,0,53006,0,1,1 +1773619496.441612,0.65,4,3992.50,53.14,1631.06,2080.56,0.00,0.000000,0.000000,205,0,0.000000,0.000020,38941749,21444733,0,0,53008,0,1,1 +1773619501.441590,1.45,4,3992.50,53.14,1631.05,2080.57,0.00,3518453001107.469238,0.000000,11,0,0.000000,0.000030,38941749,21444736,0,0,53011,0,1,1 +1773619506.441488,1.05,4,3992.50,53.11,1638.54,2079.30,0.00,0.000000,0.000000,11,0,0.000308,0.000575,38941756,21444749,0,0,53013,0,1,1 +1773619511.438281,33.72,4,3992.50,59.54,1386.69,2331.06,0.00,0.180389,0.000000,205,0,67.141555,0.027794,38948825,21446704,0,0,53016,0,1,1 +1773619516.441820,30.45,4,3992.50,59.25,1398.20,2319.59,0.00,3515948682989.140625,0.000000,75,0,120.084567,0.027297,38961166,21448719,0,0,53018,0,1,1 +1773619521.441947,28.00,4,3992.50,59.07,1404.84,2312.88,0.00,1.958739,0.000195,246,2,118.162533,0.020455,38973315,21450235,0,0,53021,0,1,1 +1773619526.441863,27.88,4,3992.50,59.24,1398.37,2319.36,0.00,3518496615881.803711,3518496615883.762207,75,0,120.165311,0.017684,38985406,21451554,0,0,53023,0,1,1 +1773619531.437574,28.09,4,3992.50,59.17,1401.09,2316.62,0.00,3521458137525.378418,0.000000,11,0,118.270427,0.040486,38997459,21454648,0,0,53026,0,1,1 +1773619536.442536,28.10,4,3992.50,59.39,1392.29,2325.43,0.00,0.180095,0.000000,205,0,120.060491,0.061270,39009882,21459362,0,0,53028,0,1,1 +1773619541.439348,28.33,4,3992.50,59.67,1381.58,2336.21,0.00,1.833200,0.000195,246,2,119.461436,0.077347,39022450,21465313,0,0,53031,0,1,1 +1773619546.441533,27.80,4,3992.50,59.27,1397.17,2320.62,0.00,3516900855666.230957,3516900855668.062500,205,0,118.928662,0.061340,39034898,21470087,0,0,53033,0,1,1 +1773619551.437720,18.04,4,3992.50,59.75,1378.41,2339.46,0.00,1.477005,10.683343,251,417,119.865028,0.043363,39047253,21473471,0,0,53036,0,1,1 +1773619556.441936,1.15,4,3992.50,53.39,1627.69,2090.17,0.00,0.355852,3515472957855.893555,246,2,3.405663,0.003229,39047689,21473643,0,0,53038,0,1,1 +1773619561.442068,0.80,4,3992.50,53.39,1627.71,2090.16,0.00,3518344421694.760742,3518344421696.773438,11,0,0.001261,0.001279,39047700,21473662,0,0,53041,0,1,1 +1773619566.437641,0.95,4,3992.50,53.47,1631.79,2093.53,0.00,32677.926340,33164.593207,2274498,2535479,0.000000,0.000020,39047700,21473664,0,0,53043,0,1,1 +1773619571.441687,0.65,4,3992.50,53.39,1634.88,2090.39,0.00,3515592789560.746582,3515592789074.723145,205,0,0.000000,0.000030,39047700,21473667,0,0,53046,0,1,1 +1773619576.442172,0.60,4,3992.50,53.39,1634.88,2090.39,0.00,3518096018302.210938,0.000000,11,0,0.000000,0.000020,39047700,21473669,0,0,53048,0,1,1 +1773619581.442319,0.65,4,3992.50,53.39,1634.88,2090.39,0.00,0.053514,0.000000,75,0,0.000000,0.000030,39047700,21473672,0,0,53051,0,1,1 +1773619586.441772,0.75,4,3992.50,53.34,1636.80,2088.47,0.00,3518822771220.541016,0.000000,11,0,0.001141,0.000665,39047724,21473690,0,0,53053,0,1,1 +1773619591.442260,2.61,4,3992.50,53.38,1635.24,2090.03,0.00,0.000000,0.000000,11,0,0.001750,0.001381,39047751,21473711,0,0,53056,0,1,1 +1773619596.441552,0.95,4,3992.50,53.62,1626.04,2099.38,0.00,2.012590,0.000195,246,2,0.000000,0.000020,39047751,21473713,0,0,53058,0,1,1 +1773619601.441629,0.70,4,3992.50,53.57,1628.00,2097.28,0.00,32646.480938,33134.820757,2274498,2535557,0.000076,0.000606,39047757,21473725,0,0,53061,0,1,1 +1773619606.441160,0.65,4,3992.50,53.38,1635.39,2089.88,0.00,3518766763634.558594,3518766763147.997559,205,0,0.000031,0.000206,39047759,21473730,0,0,53063,0,1,1 +1773619611.441580,0.60,4,3992.50,53.38,1635.18,2090.10,0.00,0.000000,0.000000,205,0,0.000000,0.000030,39047759,21473733,0,0,53066,0,1,1 +1773619616.441959,0.70,4,3992.50,53.38,1635.17,2090.11,0.00,32646.338207,33132.829292,2274498,2535571,0.000000,0.000020,39047759,21473735,0,0,53068,0,1,1 +1773619621.441231,30.20,4,3992.50,60.06,1373.85,2351.37,0.00,3518949916357.709473,3518949916356.397949,2273080,2535190,54.289064,0.027617,39053525,21475655,0,0,53071,0,1,1 +1773619626.438052,30.59,4,3992.50,59.76,1382.00,2339.92,0.00,3520675726083.858398,3520675725607.537109,251,417,118.240966,0.020927,39065705,21477173,0,0,53073,0,1,1 +1773619631.441160,27.82,4,3992.50,59.96,1374.07,2347.68,0.00,32617.706827,33093.803283,2273080,2535417,120.097186,0.035592,39078077,21479879,0,0,53076,0,1,1 +1773619636.441684,27.81,4,3992.50,59.40,1396.17,2325.58,0.00,3518068671215.346680,3518068670729.932617,75,0,118.156250,0.034304,39090214,21482500,0,0,53078,0,1,1 +1773619641.441623,28.10,4,3992.50,59.51,1391.79,2330.02,0.00,32639.986882,33125.533894,2273080,2535445,120.176992,0.057070,39102452,21486932,0,0,53081,0,1,1 +1773619646.441508,28.09,4,3992.50,59.51,1392.00,2329.76,0.00,3518518102865.282227,3518518102388.802246,251,417,118.387491,0.086380,39114848,21493684,0,0,53083,0,1,1 +1773619651.441957,28.49,4,3992.50,59.48,1393.13,2328.65,0.00,3518121620003.420898,3518121619994.349609,75,0,119.974750,0.077730,39127378,21499749,0,0,53086,0,1,1 +1773619656.441583,28.08,4,3992.50,59.52,1391.64,2330.16,0.00,3518700390078.822754,0.000000,11,0,119.388067,0.070250,39139681,21505191,0,0,53088,0,1,1 +1773619661.439911,21.57,4,3992.50,59.33,1404.48,2322.73,0.00,0.000000,0.000000,11,0,119.013517,0.050147,39151969,21509110,0,0,53091,0,1,1 +1773619666.441893,1.50,4,3992.50,53.95,1614.93,2112.25,0.00,32626.805023,33112.163063,2273091,2535516,17.821426,0.009230,39153871,21509740,0,0,53093,0,1,1 +1773619671.442160,0.85,4,3992.50,53.49,1633.02,2094.17,0.00,3518249180709.623047,3518249180223.918457,205,0,0.001528,0.001185,39153900,21509765,0,0,53096,0,1,1 +1773619676.441702,0.65,4,3992.50,53.28,1641.33,2085.86,0.00,3518759454058.814941,0.000000,11,0,0.000000,0.000181,39153900,21509768,0,0,53098,0,1,1 +1773619681.440710,0.75,4,3992.50,53.24,1642.57,2084.62,0.00,0.000000,0.000000,11,0,0.000000,0.000030,39153900,21509771,0,0,53101,0,1,1 +1773619686.437570,1.00,4,3992.50,53.39,1641.39,2090.24,0.00,2.013570,0.000195,246,2,0.000000,0.000020,39153900,21509773,0,0,53103,0,1,1 +1773619691.437570,0.60,4,3992.50,53.39,1638.98,2090.24,0.00,3518437279251.589355,10.675000,251,417,0.000000,0.000030,39153900,21509776,0,0,53106,0,1,1 +1773619696.442071,0.70,4,3992.50,53.39,1639.04,2090.23,0.00,0.355832,3515271985562.122070,246,2,0.000000,0.000020,39153900,21509778,0,0,53108,0,1,1 +1773619701.440462,0.70,4,3992.50,53.39,1639.04,2090.23,0.00,3519570259207.516113,3519570259209.349121,205,0,0.000000,0.000030,39153900,21509781,0,0,53111,0,1,1 +1773619706.437654,0.50,4,3992.50,53.39,1639.04,2090.23,0.00,3520413991747.665527,0.000000,11,0,0.000000,0.000020,39153900,21509783,0,0,53113,0,1,1 +1773619711.437555,0.65,4,3992.50,53.39,1639.04,2090.23,0.00,0.180277,0.000000,205,0,0.000076,0.000123,39153906,21509792,0,0,53116,0,1,1 +1773619716.440861,0.65,4,3992.50,53.25,1644.51,2084.76,0.00,3516111854327.441895,0.000000,75,0,0.000066,0.000098,39153912,21509800,0,0,53118,0,1,1 +1773619721.441549,0.95,4,3992.50,53.47,1628.63,2093.58,0.00,3517953668965.709961,0.000000,11,0,0.000000,0.000030,39153912,21509803,0,0,53121,0,1,1 +1773619726.437560,0.70,4,3992.50,53.47,1628.63,2093.58,0.00,0.180417,0.000000,205,0,0.000000,0.000020,39153912,21509805,0,0,53123,0,1,1 +1773619731.438423,25.78,4,3992.50,59.46,1394.35,2327.81,0.00,0.000000,0.000000,205,0,48.063931,0.023169,39159078,21511423,0,0,53126,0,1,1 +1773619736.441545,32.08,4,3992.50,59.04,1410.70,2311.42,0.00,3516241548108.167969,0.000000,11,0,120.093597,0.024754,39171389,21513235,0,0,53128,0,1,1 +1773619741.441769,28.29,4,3992.50,59.25,1402.18,2319.81,0.00,0.053513,0.000000,75,0,118.965509,0.035369,39183600,21515872,0,0,53131,0,1,1 +1773619746.438432,27.82,4,3992.50,59.04,1410.45,2311.66,0.00,32661.488221,33147.848445,2273097,2535807,119.460920,0.060404,39196100,21520519,0,0,53133,0,1,1 +1773619751.441536,28.27,4,3992.50,59.11,1403.08,2314.19,0.00,9.555592,10.733865,2274586,2536283,119.700672,0.044969,39208483,21524034,0,0,53136,0,1,1 +1773619756.442105,28.15,4,3992.50,58.92,1410.18,2307.02,0.00,3518036409265.883301,3518036408778.724609,75,0,118.555930,0.038568,39220608,21527010,0,0,53138,0,1,1 +1773619761.441938,28.15,4,3992.50,58.90,1411.32,2305.90,0.00,1.602690,10.675553,251,417,119.784629,0.061239,39233044,21531752,0,0,53141,0,1,1 +1773619766.437551,29.49,4,3992.50,59.05,1405.11,2312.06,0.00,0.356465,3521526553262.316895,246,2,118.689075,0.076284,39245554,21537660,0,0,53143,0,1,1 +1773619771.437641,22.44,4,3992.50,59.09,1403.80,2313.48,0.00,3518374336235.527832,3518374336237.486816,75,0,119.778366,0.067698,39258036,21542929,0,0,53146,0,1,1 +1773619776.437652,1.85,4,3992.50,54.44,1587.01,2131.37,0.00,3518429094681.968262,0.000000,11,0,22.437583,0.014306,39260479,21543972,0,0,53148,0,1,1 +1773619781.441907,0.65,4,3992.50,53.30,1631.16,2086.93,0.00,1.654744,10.666120,251,417,0.000000,0.000030,39260479,21543975,0,0,53151,0,1,1 +1773619786.442331,0.70,4,3992.50,53.07,1640.13,2077.96,0.00,0.000000,0.000000,251,417,0.000000,0.000020,39260479,21543977,0,0,53153,0,1,1 +1773619791.441646,0.75,4,3992.50,53.07,1640.10,2077.99,0.00,0.000000,0.000000,251,417,0.000000,0.000030,39260479,21543980,0,0,53156,0,1,1 +1773619796.442297,0.65,4,3992.50,53.09,1639.36,2078.73,0.00,3517979142667.898926,3517979142658.701172,205,0,0.000000,0.000020,39260479,21543982,0,0,53158,0,1,1 +1773619801.442139,0.75,4,3992.50,53.08,1639.90,2078.19,0.00,32650.312263,33137.939746,2274604,2536462,0.000000,0.000513,39260479,21543988,0,0,53161,0,1,1 +1773619806.441580,1.05,4,3992.50,53.24,1636.25,2084.43,0.00,3518830532223.792480,3518830531736.125977,205,0,0.000308,0.000736,39260486,21544002,0,0,53163,0,1,1 +1773619811.437994,0.65,4,3992.50,53.22,1633.52,2083.57,0.00,3520962317006.379395,0.000000,75,0,0.000016,0.000046,39260488,21544007,0,0,53166,0,1,1 +1773619816.437657,0.65,4,3992.50,53.25,1632.07,2085.02,0.00,1.602745,10.675915,251,417,0.000205,0.000552,39260495,21544020,0,0,53168,0,1,1 +1773619821.437814,0.70,4,3992.50,53.25,1632.09,2084.99,0.00,3518326586360.680664,3518326586351.662109,11,0,0.000126,0.000185,39260505,21544033,0,0,53171,0,1,1 +1773619826.437498,0.65,4,3992.50,53.25,1632.10,2084.99,0.00,0.180285,0.000000,205,0,0.000000,0.000020,39260505,21544035,0,0,53173,0,1,1 +1773619831.441437,0.65,4,3992.50,53.25,1632.10,2084.99,0.00,3515667486583.003906,0.000000,11,0,0.000000,0.000030,39260505,21544038,0,0,53176,0,1,1 +1773619836.441845,0.95,4,3992.50,53.28,1633.47,2086.00,0.00,0.180259,0.000000,205,0,0.000000,0.000020,39260505,21544040,0,0,53178,0,1,1 +1773619841.440814,30.98,4,3992.50,59.22,1400.76,2318.59,0.00,32656.042932,33144.012907,2274612,2536638,64.107297,0.025976,39267300,21545849,0,0,53181,0,1,1 +1773619846.437769,30.39,4,3992.50,59.40,1393.94,2325.45,0.00,3520581067418.759277,3520581067417.721191,2273123,2536309,119.636015,0.042885,39279363,21549151,0,0,53183,0,1,1 +1773619851.441914,28.31,4,3992.50,59.75,1379.94,2339.46,0.00,3515522394752.589844,3515522394266.340820,11,0,118.464347,0.023495,39291403,21550951,0,0,53186,0,1,1 +1773619856.437554,28.67,4,3992.50,59.43,1392.52,2326.83,0.00,1.657598,10.684513,251,417,119.869688,0.035776,39303643,21553713,0,0,53188,0,1,1 +1773619861.441557,28.60,4,3992.50,59.15,1403.44,2315.95,0.00,3515622680816.354492,3515622680807.342773,11,0,118.668735,0.030032,39315772,21555984,0,0,53191,0,1,1 +1773619866.437541,28.86,4,3992.50,59.27,1398.82,2320.53,0.00,0.180418,0.000000,205,0,119.657965,0.038365,39327811,21558999,0,0,53193,0,1,1 +1773619871.438634,28.90,4,3992.50,59.17,1402.93,2316.48,0.00,1.475557,10.672864,251,417,118.735815,0.032705,39339779,21561456,0,0,53196,0,1,1 +1773619876.437526,28.62,4,3992.50,59.12,1404.85,2314.57,0.00,0.000000,0.000000,251,417,119.590189,0.035898,39351897,21564221,0,0,53198,0,1,1 +1773619881.440883,19.34,4,3992.50,59.23,1400.51,2318.95,0.00,0.355913,3516077016156.459961,246,2,119.282170,0.045261,39363954,21567762,0,0,53201,0,1,1 +1773619886.437564,1.50,4,3992.50,54.14,1599.70,2119.77,0.00,3520774189644.273438,3520774189646.287109,11,0,7.421098,0.006824,39364821,21568084,0,0,53203,0,1,1 +1773619891.440400,0.70,4,3992.50,53.63,1619.89,2099.57,0.00,0.053485,0.000000,75,0,0.001114,0.000526,39364847,21568107,0,0,53206,0,1,1 +1773619896.439955,0.50,4,3992.50,53.27,1633.89,2085.57,0.00,0.126769,0.000000,205,0,0.000008,0.000028,39364848,21568110,0,0,53208,0,1,1 +1773619901.442389,1.00,4,3992.50,53.16,1634.99,2081.38,0.00,1.475161,10.670000,251,417,0.000000,0.000030,39364848,21568113,0,0,53211,0,1,1 +1773619906.441800,0.70,4,3992.50,53.16,1634.99,2081.38,0.00,3518851990041.018066,3518851990031.998047,11,0,0.000044,0.000047,39364851,21568117,0,0,53213,0,1,1 +1773619911.441636,0.70,4,3992.50,53.14,1635.78,2080.59,0.00,32641.131375,33128.200655,2273136,2536572,0.000000,0.000030,39364851,21568120,0,0,53216,0,1,1 +1773619916.441879,0.70,4,3992.50,53.15,1635.56,2080.80,0.00,3518266022452.344238,3518266021965.260742,75,0,0.000000,0.000020,39364851,21568122,0,0,53218,0,1,1 +1773619921.438529,1.00,4,3992.50,53.15,1635.34,2081.02,0.00,3520795894268.275391,0.000000,11,0,0.000000,0.000030,39364851,21568125,0,0,53221,0,1,1 +1773619926.440568,0.95,4,3992.50,53.35,1629.40,2088.86,0.00,32636.316502,33124.425297,2274625,2537014,0.000000,0.000020,39364851,21568127,0,0,53223,0,1,1 +1773619931.438632,0.55,4,3992.50,53.35,1627.53,2088.86,0.00,3519799972387.065918,3519799971898.388672,205,0,0.000167,0.000254,39364863,21568145,0,0,53226,0,1,1 +1773619936.442477,0.75,4,3992.50,53.36,1627.30,2089.09,0.00,1.830623,0.000195,246,2,0.000066,0.000741,39364869,21568157,0,0,53228,0,1,1 +1773619941.437741,0.60,4,3992.50,53.36,1627.30,2089.09,0.00,3521773401025.792969,10.685122,251,417,0.000000,0.000030,39364869,21568160,0,0,53231,0,1,1 +1773619946.441176,0.65,4,3992.50,53.16,1635.24,2081.15,0.00,3516021752568.242676,3516021752559.229980,11,0,0.000000,0.000020,39364869,21568162,0,0,53233,0,1,1 +1773619951.440149,1.46,4,3992.50,53.19,1633.82,2082.56,0.00,32656.375611,33144.778090,2274632,2537079,0.005195,0.004749,39364949,21568233,0,0,53236,0,1,1 +1773619956.441821,19.10,4,3992.50,60.72,1339.09,2377.27,0.00,3517261123702.657227,3517261123212.506836,246,2,4.494362,0.115355,39373490,21575809,0,0,53238,0,1,1 +1773619961.441805,2.84,4,3992.50,60.59,1344.04,2372.34,0.00,3518448427102.152344,3518448427104.165039,11,0,4.666286,0.120566,39382290,21584143,0,0,53241,0,1,1 +1773619966.441561,2.23,4,3992.50,60.51,1347.15,2369.20,0.00,32651.259368,33139.770105,2274632,2537254,4.709340,0.118487,39391119,21592399,0,0,53243,0,1,1 +1773619971.441723,2.83,4,3992.50,60.33,1354.41,2361.91,0.00,3518323380287.441406,3518323379807.989258,251,417,4.676880,0.118724,39399858,21600685,0,0,53246,0,1,1 +1773619976.441872,2.74,4,3992.50,60.36,1353.03,2363.31,0.00,3518332416054.197754,3518332416045.179199,11,0,4.678405,0.118392,39408634,21608949,0,0,53248,0,1,1 +1773619981.438938,2.69,4,3992.50,60.29,1356.07,2360.30,0.00,0.053547,0.000000,75,0,4.670876,0.118158,39417363,21617262,0,0,53251,0,1,1 +1773619986.441846,2.84,4,3992.50,60.62,1343.18,2373.30,0.00,1.601705,10.668990,251,417,4.672778,0.119642,39426204,21625457,0,0,53253,0,1,1 +1773619991.437831,2.39,4,3992.50,60.45,1349.51,2366.89,0.00,32674.247764,33154.182654,2274632,2537356,4.667531,0.118547,39434916,21633699,0,0,53256,0,1,1 +1773619996.441878,2.43,4,3992.50,60.14,1361.82,2354.54,0.00,3515591879055.204102,3515591878566.977051,75,0,4.699981,0.118582,39443722,21642017,0,0,53258,0,1,1 +1773620001.441594,2.44,4,3992.50,59.85,1372.97,2343.42,0.00,1.602728,10.675801,251,417,4.670967,0.119855,39452501,21650280,0,0,53261,0,1,1 +1773620006.437585,2.54,4,3992.50,59.86,1372.63,2343.71,0.00,0.356438,3521260610561.739258,246,2,4.696323,0.118429,39461266,21658546,0,0,53263,0,1,1 +1773620011.440389,2.69,4,3992.50,59.83,1373.87,2342.49,0.00,0.000000,0.000000,246,2,4.669343,0.119349,39470041,21666889,0,0,53266,0,1,1 +1773620016.438314,2.69,4,3992.50,60.08,1366.89,2352.27,0.00,3519897565806.654785,3519897565808.667969,11,0,4.662949,0.119003,39478801,21675184,0,0,53268,0,1,1 +1773620021.441533,2.63,4,3992.50,60.07,1367.17,2351.69,0.00,32619.105869,33106.317307,2273143,2537040,4.696994,0.118472,39487545,21683503,0,0,53271,0,1,1 +1773620026.437572,2.59,4,3992.50,59.90,1373.79,2345.05,0.00,3521226602518.454102,3521226602030.542969,11,0,4.670633,0.120039,39496373,21691796,0,0,53273,0,1,1 +1773620031.442125,2.38,4,3992.50,59.72,1380.76,2338.12,0.00,0.180109,0.000000,205,0,4.672067,0.118591,39505129,21700047,0,0,53276,0,1,1 +1773620036.441138,3.19,4,3992.50,59.91,1373.35,2345.54,0.00,32655.937285,33144.888066,2274632,2537527,4.710098,0.118400,39513914,21708343,0,0,53278,0,1,1 +1773620041.441543,2.49,4,3992.50,59.90,1373.67,2345.18,0.00,3518152095444.006348,3518152094955.191406,205,0,4.672364,0.118503,39522646,21716667,0,0,53281,0,1,1 +1773620046.437766,2.59,4,3992.50,60.08,1365.75,2352.24,0.00,1.476995,10.683266,251,417,4.670515,0.118941,39531437,21724947,0,0,53283,0,1,1 +1773620051.438253,3.49,4,3992.50,59.95,1370.73,2347.26,0.00,3518094115196.565918,3518094115187.367188,205,0,4.686836,0.118104,39540184,21733256,0,0,53286,0,1,1 +1773620056.441668,2.23,4,3992.50,59.90,1372.58,2345.37,0.00,32627.207617,33115.784766,2274633,2537606,4.680783,0.119629,39548987,21741585,0,0,53288,0,1,1 +1773620061.439792,2.44,4,3992.50,59.91,1372.17,2345.77,0.00,3519758351578.807129,3519758351577.699219,2273144,2537201,4.672277,0.119013,39557784,21749867,0,0,53291,0,1,1 +1773620066.437829,3.10,4,3992.50,59.92,1371.90,2346.06,0.00,9.565279,10.686715,2274633,2537637,4.671356,0.119869,39566557,21758178,0,0,53293,0,1,1 +1773620071.441922,2.48,4,3992.50,59.95,1370.59,2347.32,0.00,3515558997223.135742,3515558996734.610840,205,0,4.690631,0.118521,39575342,21766511,0,0,53296,0,1,1 +1773620076.441960,2.74,4,3992.50,60.18,1362.97,2356.23,0.00,0.000000,0.000000,205,0,4.671150,0.119869,39584165,21774849,0,0,53298,0,1,1 +1773620081.442039,2.64,4,3992.50,60.20,1360.92,2357.07,0.00,3518381548086.928711,0.000000,11,0,4.687608,0.118172,39592887,21783135,0,0,53301,0,1,1 +1773620086.441017,2.69,4,3992.50,60.08,1365.64,2352.36,0.00,1.656491,10.677377,251,417,4.682766,0.119659,39601705,21791384,0,0,53303,0,1,1 +1773620091.441045,2.29,4,3992.50,59.98,1369.79,2348.19,0.00,3518418117944.889160,3518418117935.816895,75,0,4.694467,0.118545,39610463,21799665,0,0,53306,0,1,1 +1773620096.440500,2.79,4,3992.50,59.88,1373.46,2344.54,0.00,1.959002,0.000195,246,2,4.663170,0.118761,39619208,21807984,0,0,53308,0,1,1 +1773620101.437551,2.54,4,3992.50,60.03,1367.65,2350.32,0.00,3520513221732.772461,10.681299,251,417,4.666571,0.118898,39627986,21816321,0,0,53311,0,1,1 +1773620106.437561,2.99,4,3992.50,59.88,1373.22,2344.45,0.00,3518430754672.220703,3518430754663.148438,75,0,4.706345,0.118912,39636762,21824620,0,0,53313,0,1,1 +1773620111.438254,2.90,4,3992.50,60.01,1367.93,2349.62,0.00,0.126740,0.000000,205,0,4.666736,0.119367,39645519,21832908,0,0,53316,0,1,1 +1773620116.437555,2.23,4,3992.50,59.82,1375.53,2342.04,0.00,3518929235421.717773,0.000000,11,0,4.686234,0.119068,39654318,21841193,0,0,53318,0,1,1 +1773620121.438169,2.39,4,3992.50,59.92,1371.44,2346.03,0.00,2.175123,0.000195,258,2,4.678953,0.118853,39663096,21849513,0,0,53321,0,1,1 +1773620126.441455,2.69,4,3992.50,60.04,1366.66,2350.88,0.00,32626.506615,33116.947960,2274985,2538003,4.672633,0.119277,39671904,21857821,0,0,53323,0,1,1 +1773620131.437951,3.35,4,3992.50,59.79,1376.81,2340.79,0.00,3520904443227.936035,3520904443226.994629,2273482,2537599,4.686030,0.120177,39680702,21866110,0,0,53326,0,1,1 +1773620136.441924,2.84,4,3992.50,60.00,1368.64,2348.98,0.00,3515644070857.210938,3515644070369.770508,205,0,4.682165,0.119263,39689485,21874425,0,0,53328,0,1,1 +1773620141.438252,2.84,4,3992.50,59.93,1371.20,2346.54,0.00,32664.204979,33152.470271,2273482,2537671,4.671037,0.120518,39698250,21882712,0,0,53331,0,1,1 +1773620146.437616,2.48,4,3992.50,59.93,1371.27,2346.34,0.00,0.000000,0.003809,2273482,2537685,4.685666,0.119272,39707056,21891033,0,0,53333,0,1,1 +1773620151.438031,2.54,4,3992.50,59.85,1374.16,2343.44,0.00,3518144680508.579590,3518144680020.889648,11,0,4.689881,0.118810,39715815,21899353,0,0,53336,0,1,1 +1773620156.438023,2.54,4,3992.50,59.72,1379.39,2338.20,0.00,32650.180865,33138.870378,2274985,2538131,4.650037,0.118492,39724536,21907634,0,0,53338,0,1,1 +1773620161.442109,2.43,4,3992.50,59.99,1369.07,2348.57,0.00,0.000000,0.006928,2274985,2538145,4.690853,0.119473,39733365,21915971,0,0,53341,0,1,1 +1773620166.437591,2.89,4,3992.50,60.28,1357.02,2360.12,0.00,3521618876482.275391,3521618875992.957520,205,0,4.691420,0.118910,39742135,21924280,0,0,53343,0,1,1 +1773620171.441852,2.38,4,3992.50,60.17,1361.29,2355.77,0.00,3515441868202.211426,0.000000,75,0,4.664427,0.120135,39750919,21932562,0,0,53346,0,1,1 +1773620176.441905,2.54,4,3992.50,60.23,1358.98,2358.09,0.00,32649.724902,33138.524014,2274985,2538205,4.710434,0.119759,39759753,21940774,0,0,53348,0,1,1 +1773620181.437963,2.39,4,3992.50,60.23,1358.96,2358.13,0.00,3521213430482.321777,3521213429993.185059,11,0,4.672386,0.120248,39768524,21949052,0,0,53351,0,1,1 +1773620186.441393,2.53,4,3992.50,60.16,1361.65,2355.38,0.00,0.053479,0.000000,75,0,4.687146,0.120423,39777363,21957411,0,0,53353,0,1,1 +1773620191.441215,2.79,4,3992.50,59.84,1374.25,2342.79,0.00,2.121951,0.000195,258,2,4.653368,0.121088,39786150,21965759,0,0,53356,0,1,1 +1773620196.441571,2.54,4,3992.50,60.14,1357.81,2354.79,0.00,32635.900793,33125.901765,2273482,2537858,4.691694,0.118845,39794925,21974121,0,0,53358,0,1,1 +1773620201.441550,2.64,4,3992.50,60.03,1362.45,2350.20,0.00,3518451860855.663574,3518451860365.625488,258,2,4.671244,0.118902,39803718,21982402,0,0,53361,0,1,1 +1773620206.438175,2.49,4,3992.50,59.86,1368.83,2343.76,0.00,3520813309313.249023,3520813309315.372070,75,0,4.688588,0.118730,39812497,21990716,0,0,53363,0,1,1 +1773620211.437545,2.58,4,3992.50,59.87,1368.78,2343.86,0.00,32644.462701,33132.456970,2273482,2537910,4.679084,0.119321,39821297,21998951,0,0,53366,0,1,1 +1773620216.441725,2.28,4,3992.50,59.79,1371.80,2340.84,0.00,3515497882525.267578,3515497882037.742188,75,0,4.680487,0.119012,39830039,22007234,0,0,53368,0,1,1 +1773620221.438231,2.44,4,3992.50,59.84,1369.61,2342.99,0.00,0.000000,0.000000,75,0,4.662593,0.118572,39838787,22015504,0,0,53371,0,1,1 +1773620226.441678,2.94,4,3992.50,60.22,1356.43,2357.89,0.00,0.000000,0.000000,75,0,4.682048,0.118862,39847577,22023765,0,0,53373,0,1,1 +1773620231.441841,2.38,4,3992.50,59.60,1380.87,2333.42,0.00,3518322870426.503418,0.000000,11,0,4.703039,0.118866,39856348,22031973,0,0,53376,0,1,1 +1773620236.441583,2.44,4,3992.50,59.97,1366.27,2348.03,0.00,32642.083284,33130.107399,2273482,2538039,4.685967,0.118145,39865102,22040213,0,0,53378,0,1,1 +1773620241.441048,2.64,4,3992.50,59.75,1375.07,2339.26,0.00,3518813812479.219727,3518813811991.168457,11,0,4.650281,0.119270,39873862,22048482,0,0,53381,0,1,1 +1773620246.441649,2.23,4,3992.50,59.91,1368.59,2345.73,0.00,0.000000,0.000000,11,0,4.678226,0.119075,39882682,22056778,0,0,53383,0,1,1 +1773620251.442371,2.49,4,3992.50,59.89,1369.38,2344.96,0.00,2.175077,0.000195,258,2,4.712746,0.119151,39891446,22065136,0,0,53386,0,1,1 +1773620256.438596,3.35,4,3992.50,59.94,1365.96,2346.90,0.00,3521095447917.705566,3521095447919.882812,11,0,4.641624,0.120016,39900194,22073387,0,0,53388,0,1,1 +1773620261.438176,2.99,4,3992.50,59.69,1376.10,2336.82,0.00,32652.870683,33141.921775,2274987,2538548,4.694794,0.119457,39908966,22081647,0,0,53391,0,1,1 +1773620266.440685,2.88,4,3992.50,60.03,1362.67,2350.26,0.00,3516672792566.431641,3516672792077.486816,205,0,4.699757,0.118982,39917796,22089946,0,0,53393,0,1,1 +1773620271.438492,2.74,4,3992.50,59.82,1370.69,2342.22,0.00,32664.279562,33153.691421,2274987,2538574,4.675674,0.118753,39926541,22098244,0,0,53396,0,1,1 +1773620276.440442,2.34,4,3992.50,59.77,1372.79,2340.11,0.00,0.000000,0.005174,2274987,2538587,4.676865,0.119479,39935353,22106540,0,0,53398,0,1,1 +1773620281.442040,2.48,4,3992.50,59.94,1366.04,2346.85,0.00,3517312505710.893066,3517312505222.027344,11,0,4.670454,0.119175,39944116,22114867,0,0,53401,0,1,1 +1773620286.442454,2.89,4,3992.50,59.89,1369.34,2345.01,0.00,32647.431321,33136.450259,2274987,2538627,4.694673,0.119020,39952937,22123158,0,0,53403,0,1,1 +1773620291.438091,2.59,4,3992.50,59.71,1374.02,2337.64,0.00,3521510033210.612793,3521510032721.125977,11,0,4.669598,0.119294,39961672,22131417,0,0,53406,0,1,1 +1773620296.438285,2.28,4,3992.50,59.63,1377.14,2334.51,0.00,32639.135860,33127.246376,2273484,2538242,4.658580,0.118257,39970412,22139646,0,0,53408,0,1,1 +1773620301.438154,3.15,4,3992.50,59.74,1372.86,2338.80,0.00,0.000000,0.003027,2273484,2538255,4.695155,0.118324,39979215,22147897,0,0,53411,0,1,1 +1773620306.438404,2.69,4,3992.50,59.79,1370.75,2340.88,0.00,3518261033096.869141,3518261032608.760742,11,0,4.700670,0.118907,39988018,22156209,0,0,53413,0,1,1 +1773620311.437554,2.99,4,3992.50,59.95,1364.20,2347.32,0.00,32655.701496,33144.883490,2274994,2538727,4.656312,0.122292,39996822,22164503,0,0,53416,0,1,1 +1773620316.439645,15.58,4,3992.50,67.26,1078.09,2633.54,0.00,3516966065904.183594,3516966065415.235352,75,0,4.767901,0.126213,40006067,22173011,0,0,53418,0,1,1 +1773620321.441605,2.54,4,3992.50,67.10,1084.36,2627.28,0.00,32627.582611,33115.859019,2273491,2538474,4.710716,0.116906,40015016,22181361,0,0,53421,0,1,1 +1773620326.437556,2.85,4,3992.50,67.06,1086.12,2625.52,0.00,3521288578403.312988,3521288577914.502930,11,0,4.703491,0.117108,40023994,22189771,0,0,53423,0,1,1 +1773620331.441921,2.74,4,3992.50,67.13,1083.25,2628.36,0.00,32611.952785,33099.988051,2273491,2538536,4.677906,0.115533,40032925,22198088,0,0,53426,0,1,1 +1773620336.441616,2.99,4,3992.50,67.22,1079.96,2631.66,0.00,3518651958980.915527,3518651958492.244141,205,0,4.696672,0.116003,40041881,22206462,0,0,53428,0,1,1 +1773620341.441581,2.59,4,3992.50,67.13,1083.49,2628.16,0.00,32650.199663,33139.819034,2274994,2538992,4.706922,0.115317,40050821,22214795,0,0,53431,0,1,1 +1773620346.441911,5.83,4,3992.50,67.72,1060.30,2651.52,0.00,3518204566620.104004,3518204566130.520508,205,0,4.694712,0.116413,40059800,22223160,0,0,53433,0,1,1 +1773620351.438349,2.79,4,3992.50,67.59,1065.32,2646.32,0.00,3520946023058.100098,0.000000,11,0,4.696044,0.116079,40068726,22231496,0,0,53436,0,1,1 +1773620356.438228,3.26,4,3992.50,67.62,1064.03,2647.57,0.00,0.180278,0.000000,205,0,4.696219,0.115279,40077632,22239811,0,0,53438,0,1,1 +1773620361.441462,2.44,4,3992.50,67.66,1060.62,2649.02,0.00,32619.145107,33107.582115,2273491,2538668,4.685923,0.116479,40086605,22248182,0,0,53441,0,1,1 +1773620366.438489,2.85,4,3992.50,67.53,1065.70,2643.89,0.00,3520530495645.344727,3520530495156.427734,75,0,4.718313,0.116765,40095632,22256506,0,0,53443,0,1,1 +1773620371.441690,2.74,4,3992.50,67.57,1066.03,2645.58,0.00,1.603173,10.668366,253,417,4.685098,0.115879,40104538,22264878,0,0,53446,0,1,1 +1773620376.442316,3.66,4,3992.50,67.79,1061.49,2654.09,0.00,3517996745135.241699,3517996745126.044922,205,0,4.681868,0.116226,40113462,22273234,0,0,53448,0,1,1 +1773620381.441488,2.54,4,3992.50,67.56,1070.50,2645.04,0.00,3519020077550.740723,0.000000,11,0,4.710567,0.116309,40122451,22281582,0,0,53451,0,1,1 +1773620386.442142,2.65,4,3992.50,67.57,1070.02,2645.55,0.00,0.180250,0.000000,205,0,4.704525,0.116294,40131422,22289953,0,0,53453,0,1,1 +1773620391.439106,2.75,4,3992.50,67.67,1066.21,2649.34,0.00,3520575450097.859375,0.000000,11,0,4.703091,0.116927,40140423,22298290,0,0,53456,0,1,1 +1773620396.437546,2.39,4,3992.50,67.58,1069.53,2646.00,0.00,32660.338106,33150.107101,2274994,2539224,4.673494,0.117179,40149397,22306677,0,0,53458,0,1,1 +1773620401.441549,3.25,4,3992.50,67.47,1073.98,2641.59,0.00,3515622719154.922852,3515622718663.524902,258,2,4.710249,0.115405,40158306,22315032,0,0,53461,0,1,1 +1773620406.441543,3.36,4,3992.50,67.86,1064.80,2656.79,0.00,32638.292373,33129.208694,2273497,2538886,4.683606,0.117143,40167281,22323372,0,0,53463,0,1,1 +1773620411.438125,2.90,4,3992.50,67.46,1082.42,2641.10,0.00,3520844657291.679199,3520844656811.627441,253,417,4.708253,0.116102,40176266,22331702,0,0,53466,0,1,1 +1773620416.441564,2.95,4,3992.50,67.77,1070.25,2653.25,0.00,32616.337553,33095.765433,2273497,2538937,4.685635,0.115924,40185207,22340047,0,0,53468,0,1,1 +1773620421.441554,3.05,4,3992.50,67.74,1071.30,2652.16,0.00,9.727755,10.687425,2275001,2539379,4.687903,0.116193,40194175,22348395,0,0,53471,0,1,1 +1773620426.437656,2.60,4,3992.50,67.71,1072.63,2650.86,0.00,3521181969270.379395,3521181968789.287109,253,417,4.711774,0.116031,40203150,22356732,0,0,53473,0,1,1 +1773620431.441170,2.49,4,3992.50,67.36,1086.39,2637.11,0.00,0.000000,0.000000,253,417,4.690022,0.115303,40212074,22365075,0,0,53476,0,1,1 +1773620436.441449,3.41,4,3992.50,68.22,1052.52,2670.98,0.00,3518240425250.781250,3518240425241.764648,11,0,4.682683,0.115737,40221006,22373411,0,0,53478,0,1,1 +1773620441.441992,2.79,4,3992.50,67.92,1064.35,2659.12,0.00,32636.892511,33125.689538,2273498,2539041,4.704567,0.115714,40229972,22381795,0,0,53481,0,1,1 +1773620446.441327,2.94,4,3992.50,67.71,1072.62,2650.89,0.00,0.000000,0.005567,2273498,2539055,4.707446,0.117674,40239001,22390219,0,0,53483,0,1,1 +1773620451.437977,2.39,4,3992.50,67.67,1073.98,2649.54,0.00,3520796786787.233887,3520796786297.870117,205,0,4.678231,0.115859,40247920,22398529,0,0,53486,0,1,1 +1773620456.437965,2.55,4,3992.50,67.64,1075.36,2648.10,0.00,0.000000,0.000000,205,0,4.693637,0.117465,40256932,22406887,0,0,53488,0,1,1 +1773620461.442338,2.84,4,3992.50,67.74,1071.43,2652.05,0.00,0.000000,0.000000,205,0,4.693894,0.116418,40265886,22415223,0,0,53491,0,1,1 +1773620466.439142,3.46,4,3992.50,67.72,1064.32,2651.31,0.00,0.000000,0.000000,205,0,4.709741,0.115411,40274826,22423575,0,0,53493,0,1,1 +1773620471.440616,2.80,4,3992.50,67.54,1070.89,2644.51,0.00,1.477006,10.672051,253,417,4.694555,0.116377,40283794,22431939,0,0,53496,0,1,1 +1773620476.437640,2.74,4,3992.50,67.56,1070.22,2645.15,0.00,32658.215720,33138.414804,2273498,2539169,4.674431,0.117581,40292777,22440271,0,0,53498,0,1,1 +1773620481.437867,3.75,4,3992.50,67.53,1071.48,2643.91,0.00,3518276837814.609375,3518276837323.525879,258,2,4.720895,0.116251,40301742,22448640,0,0,53501,0,1,1 +1773620486.441533,3.46,4,3992.50,67.84,1057.69,2655.97,0.00,3515859462291.392090,3515859462293.385742,205,0,4.704320,0.118118,40310764,22457050,0,0,53503,0,1,1 +1773620491.441560,36.00,4,3992.50,70.61,950.32,2764.56,0.00,3518418839921.940430,0.000000,11,0,136.489702,0.144772,40334548,22468196,0,0,53506,0,1,1 +1773620496.437564,32.69,4,3992.50,70.17,967.77,2747.34,0.00,1.659041,10.683732,253,417,134.343032,0.051836,40349364,22472238,0,0,53508,0,1,1 +1773620501.437615,30.62,4,3992.50,66.68,1104.75,2610.56,0.00,3518401390851.883789,3518401390842.686035,205,0,123.339749,0.056178,40363464,22476526,0,0,53511,0,1,1 +1773620506.441675,29.81,4,3992.50,66.71,1103.55,2611.64,0.00,32615.082506,33105.789778,2273851,2539420,121.657226,0.048836,40376774,22480211,0,0,53513,0,1,1 +1773620511.437680,29.60,4,3992.50,66.79,1100.05,2615.13,0.00,9.733951,10.793880,2275354,2539868,120.089838,0.046531,40389732,22483716,0,0,53516,0,1,1 +1773620516.441739,29.58,4,3992.50,66.76,1101.14,2613.97,0.00,3515583352229.043945,3515583351746.468750,253,417,119.545717,0.034010,40401991,22486323,0,0,53518,0,1,1 +1773620521.441111,29.30,4,3992.50,66.94,1094.51,2620.66,0.00,3518879224450.064453,3518879224440.992676,75,0,119.926682,0.034265,40414211,22488872,0,0,53521,0,1,1 +1773620526.441612,30.37,4,3992.50,66.98,1091.04,2622.24,0.00,3518084630663.163086,0.000000,11,0,119.624458,0.034418,40426440,22491407,0,0,53523,0,1,1 +1773620531.441627,29.64,4,3992.50,66.81,1097.73,2615.64,0.00,0.000000,0.000000,11,0,119.704974,0.034849,40438719,22493954,0,0,53526,0,1,1 +1773620536.440400,17.52,4,3992.50,60.76,1334.41,2379.00,0.00,1.658122,10.677816,253,417,116.517839,0.032865,40450570,22496419,0,0,53528,0,1,1 +1773620541.437738,16.24,4,3992.50,60.31,1351.91,2361.43,0.00,3520311566388.199219,3520311566379.177246,11,0,65.687286,0.024229,40457183,22498184,0,0,53531,0,1,1 +1773620546.441633,19.77,4,3992.50,60.19,1356.80,2356.50,0.00,0.180133,0.000000,205,0,80.416041,0.026560,40465225,22500179,0,0,53533,0,1,1 +1773620551.442301,23.05,4,3992.50,60.26,1354.22,2359.13,0.00,1.477244,10.673771,253,417,92.505592,0.030344,40474500,22502433,0,0,53536,0,1,1 +1773620556.441608,10.82,4,3992.50,56.30,1507.39,2204.29,0.00,3518924619353.278320,3518924619344.259766,11,0,93.980111,0.030098,40483917,22504729,0,0,53538,0,1,1 +1773620561.438165,1.25,4,3992.50,54.73,1569.56,2142.89,0.00,2.176889,0.000195,258,2,0.004087,0.002044,40483998,22504788,0,0,53541,0,1,1 +1773620566.438935,0.75,4,3992.50,53.76,1607.77,2104.68,0.00,0.000000,0.000000,258,2,0.000000,0.000020,40483998,22504790,0,0,53543,0,1,1 +1773620571.441555,0.65,4,3992.50,53.67,1611.25,2101.20,0.00,32632.575611,33126.822559,2275421,2540235,0.000000,0.000030,40483998,22504793,0,0,53546,0,1,1 +1773620576.441820,0.60,4,3992.50,53.66,1611.59,2100.87,0.00,3518251105781.466309,3518251105289.161621,11,0,0.000000,0.000020,40483998,22504795,0,0,53548,0,1,1 +1773620581.441795,0.65,4,3992.50,53.66,1611.59,2100.86,0.00,0.180274,0.000000,205,0,0.000000,0.000030,40483998,22504798,0,0,53551,0,1,1 +1773620586.442076,0.60,4,3992.50,53.47,1618.99,2093.46,0.00,1.995005,0.000195,258,2,0.000000,0.000020,40483998,22504800,0,0,53553,0,1,1 +1773620591.442202,1.00,4,3992.50,53.62,1613.74,2099.53,0.00,32648.852897,33143.526842,2275421,2540277,0.000000,0.000674,40483998,22504807,0,0,53556,0,1,1 +1773620596.442043,0.65,4,3992.50,53.63,1613.57,2099.75,0.00,0.000000,0.023438,2275421,2540304,0.000000,0.000020,40483998,22504809,0,0,53558,0,1,1 +1773620601.440536,0.65,4,3992.50,53.63,1613.57,2099.75,0.00,3519497736752.224121,3519497736259.360352,205,0,0.000000,0.000030,40483998,22504812,0,0,53561,0,1,1 +1773620606.441960,0.65,4,3992.50,53.48,1619.57,2093.75,0.00,3517435804758.225098,0.000000,11,0,0.000126,0.000175,40484008,22504824,0,0,53563,0,1,1 +1773620611.441554,0.65,4,3992.50,53.44,1621.05,2092.27,0.00,0.000000,0.000000,11,0,0.000016,0.000046,40484010,22504829,0,0,53566,0,1,1 +1773620616.437549,0.95,4,3992.50,53.49,1617.00,2094.17,0.00,0.000000,0.000000,11,0,0.000000,0.000020,40484010,22504831,0,0,53568,0,1,1 +1773620621.441700,14.29,4,3992.50,59.60,1377.58,2333.57,0.00,1.656340,10.666341,253,417,4.609778,0.009918,40484819,22505403,0,0,53571,0,1,1 +1773620626.441543,34.71,4,3992.50,59.61,1377.25,2333.84,0.00,3518547607535.039062,3518547607525.968262,75,0,118.170533,0.034682,40496987,22508011,0,0,53573,0,1,1 +1773620631.441898,28.45,4,3992.50,59.92,1365.05,2346.07,0.00,32649.501684,33142.195709,2275427,2540488,119.357911,0.018296,40509326,22509379,0,0,53576,0,1,1 +1773620636.442330,28.57,4,3992.50,59.60,1377.77,2333.29,0.00,3518133168717.380371,3518133168222.572266,258,2,118.957453,0.025387,40521564,22511301,0,0,53578,0,1,1 +1773620641.441641,29.54,4,3992.50,59.81,1369.48,2341.60,0.00,32654.198058,33149.121540,2275427,2540512,119.649950,0.068811,40533992,22516627,0,0,53581,0,1,1 +1773620646.438909,28.69,4,3992.50,59.58,1378.52,2332.60,0.00,3520360238492.479004,3520360237997.353027,258,2,119.197856,0.066319,40546457,22521756,0,0,53583,0,1,1 +1773620651.437525,28.77,4,3992.50,59.75,1375.70,2339.39,0.00,3519411914938.097168,3519411914940.219727,75,0,119.618504,0.079685,40558984,22527973,0,0,53586,0,1,1 +1773620656.441331,28.90,4,3992.50,59.65,1379.90,2335.26,0.00,3515760651861.059082,0.000000,11,0,118.902171,0.099465,40571612,22535719,0,0,53588,0,1,1 +1773620661.437560,28.61,4,3992.50,59.57,1383.01,2332.15,0.00,1.658966,10.683252,253,417,119.684869,0.100442,40584290,22543539,0,0,53591,0,1,1 +1773620666.437623,5.53,4,3992.50,53.10,1636.11,2079.11,0.00,32640.146855,33123.122423,2273930,2540201,67.509869,0.057467,40591526,22547978,0,0,53593,0,1,1 +1773620671.439504,0.95,4,3992.50,53.13,1635.19,2080.01,0.00,3517114445068.656738,3517114444576.788574,75,0,0.002226,0.001053,40591568,22548008,0,0,53596,0,1,1 +1773620676.437637,1.00,4,3992.50,53.56,1618.55,2096.82,0.00,2.122667,0.000195,258,2,0.000000,0.000020,40591568,22548010,0,0,53598,0,1,1 +1773620681.441807,0.60,4,3992.50,53.54,1619.13,2096.09,0.00,0.000000,0.000000,258,2,0.000000,0.000030,40591568,22548013,0,0,53601,0,1,1 +1773620686.442438,0.70,4,3992.50,53.51,1620.29,2094.92,0.00,32645.713511,33140.851227,2275438,2540728,0.000000,0.000020,40591568,22548015,0,0,53603,0,1,1 +1773620691.437636,0.65,4,3992.50,53.49,1620.87,2094.34,0.00,3521819424543.392578,3521819424049.713379,205,0,0.000000,0.000030,40591568,22548018,0,0,53606,0,1,1 +1773620696.442191,0.60,4,3992.50,53.49,1620.87,2094.34,0.00,32622.107949,33114.868204,2275438,2540732,0.000000,0.000020,40591568,22548020,0,0,53608,0,1,1 +1773620701.437758,0.60,4,3992.50,53.49,1620.87,2094.34,0.00,3521559898343.345703,3521559897858.904785,253,417,0.000000,0.000030,40591568,22548023,0,0,53611,0,1,1 +1773620706.441990,1.00,4,3992.50,53.50,1625.23,2094.46,0.00,3515461781792.283203,3515461781783.273926,11,0,0.000307,0.000574,40591575,22548036,0,0,53613,0,1,1 +1773620711.438348,0.70,4,3992.50,53.50,1625.26,2094.46,0.00,0.053555,0.000000,75,0,0.000033,0.000069,40591578,22548042,0,0,53616,0,1,1 +1773620716.442120,0.65,4,3992.50,53.50,1625.27,2094.45,0.00,3515784353407.733398,0.000000,11,0,0.000313,0.000684,40591594,22548064,0,0,53618,0,1,1 +1773620721.441708,1.45,4,3992.50,53.51,1624.53,2095.19,0.00,0.180288,0.000000,205,0,0.000000,0.000674,40591594,22548071,0,0,53621,0,1,1 +1773620726.437639,0.65,4,3992.50,53.48,1625.88,2093.84,0.00,32668.696303,33161.568290,2273937,2540403,0.000000,0.000020,40591594,22548073,0,0,53623,0,1,1 +1773620731.441897,7.96,4,3992.50,59.55,1388.15,2331.37,0.00,9.722579,10.674600,2275445,2540850,1.405903,0.005359,40591977,22548333,0,0,53626,0,1,1 +1773620736.441099,37.71,4,3992.50,60.17,1374.30,2355.95,0.00,3518999396207.765625,3518999395714.389648,75,0,114.177241,0.052224,40603684,22552367,0,0,53628,0,1,1 +1773620741.441984,28.72,4,3992.50,59.72,1391.77,2338.14,0.00,32646.189969,33139.621374,2275445,2541008,118.344423,0.033209,40615826,22554826,0,0,53631,0,1,1 +1773620746.441303,28.41,4,3992.50,59.70,1392.54,2337.36,0.00,3518916634252.861328,3518916633759.329102,11,0,119.780746,0.050446,40628000,22558747,0,0,53633,0,1,1 +1773620751.437622,28.23,4,3992.50,60.16,1374.59,2355.33,0.00,0.000000,0.000000,11,0,118.651046,0.040018,40640124,22561838,0,0,53636,0,1,1 +1773620756.441570,28.53,4,3992.50,59.83,1387.57,2342.30,0.00,32626.263524,33119.398309,2275445,2541048,120.069028,0.045298,40652302,22565391,0,0,53638,0,1,1 +1773620761.437569,28.29,4,3992.50,59.83,1387.55,2342.30,0.00,3521254676471.439941,3521254675975.343750,258,2,118.256739,0.038867,40664322,22568365,0,0,53641,0,1,1 +1773620766.437616,28.39,4,3992.50,59.71,1391.94,2337.93,0.00,32649.540243,33145.286465,2275445,2541072,120.165623,0.027104,40676624,22570448,0,0,53643,0,1,1 +1773620771.439740,29.03,4,3992.50,59.50,1389.83,2329.41,0.00,0.000000,0.068623,2275445,2541098,118.715889,0.040318,40688865,22573564,0,0,53646,0,1,1 +1773620776.441651,7.48,4,3992.50,54.90,1569.82,2149.55,0.00,3517092684550.778320,3517092684066.336914,253,417,75.875235,0.025865,40696576,22575571,0,0,53648,0,1,1 +1773620781.439173,0.95,4,3992.50,54.08,1601.83,2117.54,0.00,32656.975203,33140.880008,2273957,2540725,0.003101,0.001554,40696633,22575611,0,0,53651,0,1,1 +1773620786.441671,0.75,4,3992.50,53.44,1627.19,2092.18,0.00,3516680322931.783203,3516680322439.293457,75,0,0.001809,0.002217,40696660,22575634,0,0,53653,0,1,1 +1773620791.442174,0.80,4,3992.50,53.44,1626.95,2092.42,0.00,0.000000,0.000000,75,0,0.001064,0.000431,40696682,22575650,0,0,53656,0,1,1 +1773620796.442223,0.90,4,3992.50,53.84,1611.06,2107.86,0.00,32651.798418,33145.579522,2275460,2541217,0.000000,0.000020,40696682,22575652,0,0,53658,0,1,1 +1773620801.441656,0.70,4,3992.50,53.77,1613.89,2105.09,0.00,3518835997585.816406,3518835997101.046387,253,417,0.000000,0.000030,40696682,22575655,0,0,53661,0,1,1 +1773620806.442085,0.75,4,3992.50,53.74,1614.74,2104.23,0.00,32647.713503,33132.415775,2275460,2541246,0.000031,0.000045,40696684,22575659,0,0,53663,0,1,1 +1773620811.441836,0.70,4,3992.50,53.74,1614.74,2104.23,0.00,3518612561475.812988,3518612560991.044922,253,417,0.000008,0.000038,40696685,22575663,0,0,53666,0,1,1 +1773620816.442209,0.65,4,3992.50,53.74,1614.74,2104.23,0.00,0.000000,0.000000,253,417,0.000000,0.000020,40696685,22575665,0,0,53668,0,1,1 +1773620821.442455,0.75,4,3992.50,53.56,1622.14,2096.83,0.00,0.517650,3518264633770.320801,258,2,0.000000,0.000030,40696685,22575668,0,0,53671,0,1,1 +1773620826.441926,0.70,4,3992.50,53.56,1622.14,2096.83,0.00,3518809470772.557129,3518809470774.732422,11,0,0.000076,0.000113,40696691,22575676,0,0,53673,0,1,1 +1773620831.437582,2.66,4,3992.50,53.65,1615.70,2100.50,0.00,0.000000,0.000000,11,0,0.000050,0.000092,40696695,22575683,0,0,53676,0,1,1 +1773620836.441622,0.65,4,3992.50,53.63,1616.63,2099.57,0.00,0.000000,0.000000,11,0,0.000050,0.000082,40696699,22575689,0,0,53678,0,1,1 +1773620841.440000,1.05,4,3992.50,53.45,1623.62,2092.57,0.00,0.053533,0.000000,75,0,0.001483,0.001344,40696728,22575718,0,0,53681,0,1,1 +1773620846.441935,42.39,4,3992.50,59.63,1381.46,2334.69,0.00,32629.764758,33122.700883,2273962,2541005,102.307708,0.032738,40707487,22578117,0,0,53683,0,1,1 +1773620851.438412,27.97,4,3992.50,59.48,1387.35,2328.78,0.00,3520917894573.874512,3520917894080.453125,11,0,120.254552,0.023007,40719929,22579682,0,0,53686,0,1,1 +1773620856.437655,27.97,4,3992.50,59.39,1390.95,2325.20,0.00,32647.397791,33140.617656,2273962,2541049,118.181931,0.019785,40732081,22581168,0,0,53688,0,1,1 +1773620861.441158,28.43,4,3992.50,59.57,1378.19,2332.22,0.00,3515973348074.536621,3515973347579.562988,258,2,120.081118,0.017501,40744307,22582456,0,0,53691,0,1,1 +1773620866.442123,28.08,4,3992.50,59.53,1379.70,2330.72,0.00,3517758460200.389160,3517758460202.510742,75,0,119.342129,0.023175,40756535,22584288,0,0,53693,0,1,1 +1773620871.441551,27.96,4,3992.50,59.41,1384.25,2326.17,0.00,0.000000,0.000000,75,0,118.980956,0.030673,40768813,22586685,0,0,53696,0,1,1 +1773620876.441777,28.05,4,3992.50,59.56,1378.55,2331.82,0.00,32640.922015,33134.178053,2273962,2541135,120.161194,0.025858,40781024,22588690,0,0,53698,0,1,1 +1773620881.441893,29.70,4,3992.50,59.57,1377.98,2332.46,0.00,3518355887444.831055,3518355886949.442383,258,2,118.161596,0.031453,40793193,22591129,0,0,53701,0,1,1 +1773620886.442329,10.67,4,3992.50,54.95,1566.86,2151.50,0.00,3518130568620.663574,3518130568622.838867,11,0,87.915598,0.017051,40802245,22592393,0,0,53703,0,1,1 +1773620891.440586,1.20,4,3992.50,54.13,1599.11,2119.27,0.00,0.000000,0.000000,11,0,0.000650,0.000295,40802259,22592404,0,0,53706,0,1,1 +1773620896.441790,0.70,4,3992.50,53.40,1627.54,2090.85,0.00,0.180230,0.000000,205,0,0.000000,0.000020,40802259,22592406,0,0,53708,0,1,1 +1773620901.441397,0.60,4,3992.50,53.35,1629.58,2088.80,0.00,32644.984318,33138.635415,2273977,2541265,0.000000,0.000030,40802259,22592409,0,0,53711,0,1,1 +1773620906.441854,0.60,4,3992.50,53.16,1636.86,2081.52,0.00,3518115872347.145020,3518115871853.578125,205,0,0.000000,0.000020,40802259,22592411,0,0,53713,0,1,1 +1773620911.441569,0.65,4,3992.50,53.17,1636.62,2081.76,0.00,1.477526,10.675803,253,417,0.000000,0.000030,40802259,22592414,0,0,53716,0,1,1 +1773620916.441799,0.95,4,3992.50,53.31,1628.14,2087.12,0.00,3518275360474.935059,3518275360465.737793,205,0,0.000000,0.000664,40802259,22592420,0,0,53718,0,1,1 +1773620921.442405,0.55,4,3992.50,53.33,1627.45,2087.86,0.00,1.994876,0.000195,258,2,0.000000,0.000030,40802259,22592423,0,0,53721,0,1,1 +1773620926.441986,0.70,4,3992.50,53.33,1627.45,2087.85,0.00,32652.884809,33149.665673,2275480,2541744,0.000000,0.000020,40802259,22592425,0,0,53723,0,1,1 +1773620931.441715,0.60,4,3992.50,53.33,1627.46,2087.85,0.00,3518627628988.602051,3518627628493.958008,75,0,0.000101,0.000154,40802267,22592436,0,0,53726,0,1,1 +1773620936.437639,0.65,4,3992.50,53.33,1627.24,2088.07,0.00,2.123606,0.000195,258,2,0.000041,0.000067,40802271,22592442,0,0,53728,0,1,1 +1773620941.439315,0.70,4,3992.50,53.33,1627.24,2088.07,0.00,3517258105081.058105,3517258105083.052734,205,0,0.000000,0.000030,40802271,22592445,0,0,53731,0,1,1 +1773620946.437636,0.90,4,3992.50,53.33,1627.27,2088.03,0.00,3519618743487.360840,0.000000,11,0,0.000000,0.000020,40802271,22592447,0,0,53733,0,1,1 +1773620951.442126,0.95,4,3992.50,52.69,1652.39,2062.90,0.00,1.656228,10.665619,253,417,0.001382,0.000732,40802294,22592466,0,0,53736,0,1,1 +1773620956.441697,39.72,4,3992.50,59.34,1392.03,2323.23,0.00,32643.747064,33128.539928,2273982,2541488,95.147453,0.032918,40812396,22594789,0,0,53738,0,1,1 +1773620961.441569,28.36,4,3992.50,59.54,1384.15,2331.08,0.00,0.000000,0.007031,2273982,2541503,118.793814,0.086394,40825013,22601465,0,0,53741,0,1,1 +1773620966.441796,28.49,4,3992.50,59.33,1392.34,2322.81,0.00,9.725730,10.682718,2275485,2541937,120.197460,0.110826,40837923,22610068,0,0,53743,0,1,1 +1773620971.437670,27.94,4,3992.50,59.28,1394.36,2320.80,0.00,3521343222475.300293,3521343221980.104980,75,0,118.290690,0.111646,40850530,22618795,0,0,53746,0,1,1 +1773620976.437930,28.78,4,3992.50,59.71,1377.39,2337.84,0.00,2.121765,0.000195,258,2,120.196014,0.108513,40863493,22627236,0,0,53748,0,1,1 +1773620981.441537,28.01,4,3992.50,59.45,1387.77,2327.49,0.00,3515901066385.303223,3515901066387.477051,11,0,118.714257,0.106460,40876338,22635559,0,0,53751,0,1,1 +1773620986.438306,28.60,4,3992.50,59.43,1388.35,2326.74,0.00,0.180390,0.000000,205,0,119.678529,0.109385,40889225,22644027,0,0,53753,0,1,1 +1773620991.438556,28.25,4,3992.50,59.47,1386.77,2328.49,0.00,3518260900385.529297,0.000000,75,0,119.794042,0.106215,40902183,22652333,0,0,53756,0,1,1 +1773620996.441751,12.10,4,3992.50,53.51,1620.13,2095.16,0.00,32621.777182,33115.577732,2273988,2541644,94.898315,0.087928,40912382,22659180,0,0,53758,0,1,1 +1773621001.441987,1.70,4,3992.50,53.27,1629.58,2085.71,0.00,3518270655083.295898,3518270654589.076660,205,0,0.003116,0.001455,40912440,22659221,0,0,53761,0,1,1 +1773621006.439751,1.05,4,3992.50,53.22,1631.56,2083.73,0.00,3520011433324.246582,0.000000,11,0,0.000308,0.000575,40912447,22659234,0,0,53763,0,1,1 +1773621011.438450,1.25,4,3992.50,53.10,1630.09,2078.87,0.00,0.053530,0.000000,75,0,0.000000,0.000030,40912447,22659237,0,0,53766,0,1,1 +1773621016.437555,0.85,4,3992.50,53.10,1630.09,2078.86,0.00,32648.584766,33142.970653,2274001,2541807,0.000205,0.000552,40912454,22659250,0,0,53768,0,1,1 +1773621021.439899,0.60,4,3992.50,53.10,1630.10,2078.86,0.00,3516788640770.298340,3516788640276.286133,11,0,0.000000,0.000030,40912454,22659253,0,0,53771,0,1,1 +1773621026.438536,0.65,4,3992.50,53.10,1630.10,2078.86,0.00,2.175984,0.000195,258,2,0.000000,0.000020,40912454,22659255,0,0,53773,0,1,1 +1773621031.440648,0.70,4,3992.50,53.11,1629.55,2079.41,0.00,3516951837636.869141,3516951837638.989746,75,0,0.000000,0.000030,40912454,22659258,0,0,53776,0,1,1 +1773621036.437640,0.85,4,3992.50,53.22,1625.88,2083.79,0.00,3520554926880.090332,0.000000,11,0,0.000000,0.000020,40912454,22659260,0,0,53778,0,1,1 +1773621041.439282,0.65,4,3992.50,53.06,1631.50,2077.38,0.00,0.180214,0.000000,205,0,0.000230,0.000593,40912463,22659276,0,0,53781,0,1,1 +1773621046.437579,0.70,4,3992.50,53.09,1630.27,2078.61,0.00,32663.468816,33159.127466,2275504,2542322,0.000117,0.000160,40912473,22659288,0,0,53783,0,1,1 +1773621051.439226,0.50,4,3992.50,53.09,1630.27,2078.60,0.00,3517278470041.546875,3517278469544.226074,258,2,0.000031,0.000699,40912475,22659297,0,0,53786,0,1,1 +1773621056.438580,0.70,4,3992.50,53.09,1630.27,2078.60,0.00,32644.836266,33141.442933,2274001,2541912,0.000000,0.000020,40912475,22659299,0,0,53788,0,1,1 +1773621061.437641,0.95,4,3992.50,53.04,1632.39,2076.49,0.00,3519097792539.189941,3519097792044.676270,75,0,0.001722,0.001313,40912507,22659331,0,0,53791,0,1,1 +1773621066.440027,37.42,4,3992.50,59.63,1374.03,2334.55,0.00,32627.175583,33121.433696,2274006,2541977,93.088781,0.037163,40922263,22662073,0,0,53793,0,1,1 +1773621071.441240,29.77,4,3992.50,59.68,1370.48,2336.62,0.00,3517583349716.343262,3517583349222.022461,11,0,122.540134,0.025736,40934790,22663986,0,0,53796,0,1,1 +1773621076.439629,28.39,4,3992.50,59.37,1382.87,2324.32,0.00,0.180332,0.000000,205,0,120.207231,0.023042,40947211,22665771,0,0,53798,0,1,1 +1773621081.442185,28.49,4,3992.50,59.50,1377.73,2329.38,0.00,1.476687,10.669742,253,417,120.109675,0.026524,40959651,22667784,0,0,53801,0,1,1 +1773621086.441785,28.48,4,3992.50,59.41,1381.02,2326.11,0.00,0.000000,0.000000,253,417,120.176360,0.019101,40971929,22669180,0,0,53803,0,1,1 +1773621091.441530,28.30,4,3992.50,59.50,1377.77,2329.36,0.00,32642.801867,33128.410878,2274006,2542145,120.172189,0.025980,40984124,22671068,0,0,53806,0,1,1 +1773621096.438552,28.68,4,3992.50,59.32,1384.70,2322.46,0.00,3520533953457.248047,3520533952960.175293,258,2,120.235973,0.019057,40996299,22672530,0,0,53808,0,1,1 +1773621101.442023,28.41,4,3992.50,59.38,1384.93,2324.71,0.00,3515996547530.388184,3515996547532.562012,11,0,119.095714,0.055194,41008754,22676794,0,0,53811,0,1,1 +1773621106.441642,10.79,4,3992.50,55.01,1555.91,2153.84,0.00,2.175557,0.000195,258,2,89.746320,0.049079,41018307,22680589,0,0,53813,0,1,1 +1773621111.441757,0.90,4,3992.50,54.25,1585.56,2124.18,0.00,3518356072775.354980,3518356072777.476562,75,0,0.003117,0.001455,41018365,22680630,0,0,53816,0,1,1 +1773621116.440160,0.65,4,3992.50,53.90,1599.30,2110.46,0.00,1.604712,10.678605,253,417,0.000000,0.000664,41018365,22680636,0,0,53818,0,1,1 +1773621121.437623,0.65,4,3992.50,53.43,1617.91,2091.85,0.00,3520223602672.295898,3520223602663.273926,11,0,0.000000,0.000030,41018365,22680639,0,0,53821,0,1,1 +1773621126.442249,0.95,4,3992.50,53.61,1611.93,2098.84,0.00,0.000000,0.000000,11,0,0.000000,0.000020,41018365,22680641,0,0,53823,0,1,1 +1773621131.442070,0.75,4,3992.50,53.56,1612.88,2096.88,0.00,1.657774,10.675579,253,417,0.000025,0.000061,41018367,22680646,0,0,53826,0,1,1 +1773621136.441765,0.70,4,3992.50,53.55,1612.97,2096.79,0.00,0.517707,3518651422259.921387,258,2,0.000033,0.000059,41018370,22680651,0,0,53828,0,1,1 +1773621141.437562,0.60,4,3992.50,53.55,1612.99,2096.77,0.00,3521397555545.409180,3521397555547.532715,75,0,0.000008,0.000038,41018371,22680655,0,0,53831,0,1,1 +1773621146.437567,0.70,4,3992.50,53.51,1614.78,2094.98,0.00,3518433760818.060547,0.000000,11,0,0.000000,0.000020,41018371,22680657,0,0,53833,0,1,1 +1773621151.442304,0.65,4,3992.50,53.51,1614.78,2094.98,0.00,0.000000,0.000000,11,0,0.000025,0.000061,41018373,22680662,0,0,53836,0,1,1 +1773621156.440617,0.90,4,3992.50,53.23,1616.12,2084.19,0.00,0.053534,0.000000,75,0,0.000101,0.000144,41018381,22680672,0,0,53838,0,1,1 +1773621161.441540,0.65,4,3992.50,53.22,1616.55,2083.78,0.00,0.000000,0.000000,75,0,0.000008,0.000038,41018382,22680676,0,0,53841,0,1,1 +1773621166.437633,0.65,4,3992.50,53.03,1623.98,2076.35,0.00,3521188883486.175293,0.000000,11,0,0.000000,0.000020,41018382,22680678,0,0,53843,0,1,1 +1773621171.442271,0.75,4,3992.50,53.03,1623.96,2076.35,0.00,0.053466,0.000000,75,0,0.000000,0.000030,41018382,22680681,0,0,53846,0,1,1 +1773621176.438386,36.21,4,3992.50,59.08,1387.13,2313.08,0.00,0.000000,0.000000,75,0,77.775797,0.028502,41026692,22682621,0,0,53848,0,1,1 +1773621181.441643,29.04,4,3992.50,59.23,1381.14,2319.07,0.00,0.000000,0.000000,75,0,119.090097,0.023532,41038919,22684307,0,0,53851,0,1,1 +1773621186.441995,28.25,4,3992.50,59.48,1371.41,2328.82,0.00,3518189681019.034668,0.000000,11,0,119.157684,0.026876,41051004,22686344,0,0,53853,0,1,1 +1773621191.441580,28.59,4,3992.50,59.24,1380.92,2319.29,0.00,0.000000,0.000000,11,0,119.790602,0.065000,41063475,22691391,0,0,53856,0,1,1 +1773621196.441728,28.50,4,3992.50,59.03,1389.11,2311.10,0.00,2.175326,0.000195,258,2,118.586226,0.088835,41076050,22698299,0,0,53858,0,1,1 +1773621201.437540,28.14,4,3992.50,59.08,1387.07,2313.14,0.00,32677.894564,33176.706157,2275530,2543059,120.085925,0.086467,41088526,22705063,0,0,53861,0,1,1 +1773621206.438060,28.53,4,3992.50,59.02,1389.37,2310.88,0.00,3518071742157.195801,3518071741661.028320,11,0,118.981202,0.096233,41101286,22712595,0,0,53863,0,1,1 +1773621211.437637,28.51,4,3992.50,59.14,1384.89,2315.36,0.00,2.175574,0.000195,258,2,119.604703,0.105604,41114038,22720799,0,0,53866,0,1,1 +1773621216.437636,15.97,4,3992.50,53.24,1616.47,2084.29,0.00,3518438174340.459473,3518438174342.634766,11,0,112.581581,0.096035,41126001,22728270,0,0,53868,0,1,1 +1773621221.441683,1.15,4,3992.50,52.72,1636.16,2064.11,0.00,0.053472,0.000000,75,0,0.002922,0.001182,41126056,22728308,0,0,53871,0,1,1 +1773621226.442280,0.70,4,3992.50,52.72,1636.18,2064.11,0.00,3518017403866.342773,0.000000,11,0,0.000000,0.000020,41126056,22728310,0,0,53873,0,1,1 +1773621231.441937,0.60,4,3992.50,52.66,1638.52,2061.77,0.00,0.000000,0.000000,11,0,0.000000,0.000030,41126056,22728313,0,0,53876,0,1,1 +1773621236.441825,0.65,4,3992.50,52.70,1637.05,2063.24,0.00,1.657752,10.675435,253,417,0.000000,0.000020,41126056,22728315,0,0,53878,0,1,1 +1773621241.437581,0.75,4,3992.50,52.70,1637.05,2063.24,0.00,32669.187347,33156.182012,2274038,2542782,0.000000,0.000030,41126056,22728318,0,0,53881,0,1,1 +1773621246.440788,0.95,4,3992.50,52.75,1635.43,2065.36,0.00,9.719938,10.731008,2275541,2543229,0.000000,0.000663,41126056,22728324,0,0,53883,0,1,1 +1773621251.438395,0.65,4,3992.50,52.78,1634.48,2066.34,0.00,3520121705127.474609,3520121704630.626465,11,0,0.000000,0.000030,41126056,22728327,0,0,53886,0,1,1 +1773621256.439212,0.65,4,3992.50,52.78,1634.23,2066.59,0.00,0.180244,0.000000,205,0,0.000000,0.000020,41126056,22728329,0,0,53888,0,1,1 +1773621261.442074,0.65,4,3992.50,52.78,1634.23,2066.59,0.00,32624.257040,33119.888276,2274038,2542886,0.000025,0.000074,41126058,22728335,0,0,53891,0,1,1 +1773621266.437566,0.85,4,3992.50,52.78,1634.24,2066.58,0.00,3521612274546.799316,3521612274048.440430,258,2,0.000117,0.000160,41126068,22728347,0,0,53893,0,1,1 +1773621271.438346,0.90,4,3992.50,52.80,1633.50,2067.32,0.00,3517888665908.558594,3517888665910.680176,75,0,0.000000,0.000030,41126068,22728350,0,0,53896,0,1,1 +1773621276.437637,0.90,4,3992.50,52.96,1632.24,2073.44,0.00,0.000000,0.000000,75,0,0.000000,0.000020,41126068,22728352,0,0,53898,0,1,1 +1773621281.441451,1.45,4,3992.50,52.96,1629.50,2073.53,0.00,2.120258,0.000195,258,2,0.000000,0.000030,41126068,22728355,0,0,53901,0,1,1 +1773621286.437562,40.51,4,3992.50,59.11,1388.75,2314.23,0.00,3521175689187.250977,3521175689189.374512,75,0,94.011261,0.047967,41136013,22731832,0,0,53903,0,1,1 +1773621291.437551,28.21,4,3992.50,59.49,1373.73,2329.24,0.00,3518444838982.624512,0.000000,11,0,119.565844,0.038838,41148233,22734803,0,0,53906,0,1,1 +1773621296.440253,28.12,4,3992.50,59.47,1374.61,2328.31,0.00,32635.242971,33131.773321,2275548,2543500,118.700819,0.029434,41160436,22737039,0,0,53908,0,1,1 +1773621301.437640,28.14,4,3992.50,59.48,1374.19,2328.74,0.00,3520276476333.904785,3520276475836.666016,205,0,119.629397,0.028093,41172768,22739209,0,0,53911,0,1,1 +1773621306.441634,28.38,4,3992.50,59.20,1385.05,2317.91,0.00,3515629329175.373047,0.000000,11,0,118.675716,0.036824,41185087,22742055,0,0,53913,0,1,1 +1773621311.442460,28.52,4,3992.50,59.35,1379.47,2323.55,0.00,0.000000,0.000000,11,0,120.154851,0.052360,41197530,22746140,0,0,53916,0,1,1 +1773621316.439180,28.09,4,3992.50,59.29,1381.64,2321.39,0.00,0.000000,0.000000,11,0,118.246265,0.031482,41209719,22748524,0,0,53918,0,1,1 +1773621321.439356,28.58,4,3992.50,59.53,1372.55,2330.58,0.00,0.180267,0.000000,205,0,120.168198,0.033485,41222175,22751082,0,0,53921,0,1,1 +1773621326.439167,12.36,4,3992.50,53.36,1614.00,2089.17,0.00,1.477497,10.675600,253,417,96.337003,0.016616,41232063,22752327,0,0,53923,0,1,1 +1773621331.437555,0.95,4,3992.50,53.13,1623.11,2080.04,0.00,3519571975199.498047,3519571975190.478027,11,0,0.003797,0.001683,41232133,22752375,0,0,53926,0,1,1 +1773621336.442062,1.00,4,3992.50,53.32,1617.85,2087.60,0.00,0.000000,0.000000,11,0,0.000008,0.000028,41232134,22752378,0,0,53928,0,1,1 +1773621341.441856,0.70,4,3992.50,53.30,1618.74,2086.72,0.00,1.657783,10.675634,253,417,0.001139,0.001257,41232144,22752397,0,0,53931,0,1,1 +1773621346.437650,0.65,4,3992.50,53.30,1618.74,2086.72,0.00,0.000000,0.000000,253,417,0.000000,0.000020,41232144,22752399,0,0,53933,0,1,1 +1773621351.437565,0.65,4,3992.50,53.19,1622.85,2082.61,0.00,0.517685,3518497221064.827148,258,2,0.000031,0.000055,41232146,22752404,0,0,53936,0,1,1 +1773621356.441693,0.65,4,3992.50,53.21,1622.12,2083.35,0.00,32623.916304,33122.902372,2275560,2543806,0.000000,0.000020,41232146,22752406,0,0,53938,0,1,1 +1773621361.437645,0.65,4,3992.50,53.22,1621.90,2083.57,0.00,3521288294345.034180,3521288293847.228027,205,0,0.000339,0.000610,41232155,22752422,0,0,53941,0,1,1 +1773621366.441968,1.00,4,3992.50,53.62,1608.36,2099.28,0.00,32614.923954,33111.077825,2274057,2543409,0.000000,0.000663,41232155,22752428,0,0,53943,0,1,1 +1773621371.439180,0.75,4,3992.50,53.37,1615.96,2089.48,0.00,3520399678663.138672,3520399678166.405273,75,0,0.000000,0.000030,41232155,22752431,0,0,53946,0,1,1 +1773621376.439570,0.55,4,3992.50,53.37,1615.95,2089.50,0.00,3518163224885.682129,0.000000,11,0,0.000126,0.000819,41232165,22752447,0,0,53948,0,1,1 +1773621381.442032,0.65,4,3992.50,53.36,1616.40,2089.05,0.00,32627.229528,33123.402508,2274057,2543420,0.000008,0.000038,41232166,22752451,0,0,53951,0,1,1 +1773621386.438706,0.80,4,3992.50,53.39,1615.20,2090.25,0.00,3520779151352.992188,3520779150856.190918,75,0,0.001141,0.000661,41232190,22752469,0,0,53953,0,1,1 +1773621391.441556,0.70,4,3992.50,53.39,1615.21,2090.25,0.00,0.000000,0.000000,75,0,0.001064,0.000439,41232212,22752486,0,0,53956,0,1,1 +1773621396.440996,37.85,4,3992.50,59.84,1364.04,2342.93,0.00,32646.911567,33143.512741,2274062,2543495,84.931695,0.039260,41241055,22755305,0,0,53958,0,1,1 +1773621401.441533,28.50,4,3992.50,59.74,1367.80,2339.11,0.00,3518059582202.982422,3518059581715.560059,253,417,118.753325,0.019110,41253287,22756707,0,0,53961,0,1,1 +1773621406.441850,28.15,4,3992.50,59.61,1373.12,2333.75,0.00,0.000000,0.000000,253,417,119.557113,0.016588,41265474,22757939,0,0,53963,0,1,1 +1773621411.441625,28.01,4,3992.50,60.19,1350.34,2356.61,0.00,32643.115088,33130.734368,2274062,2543648,119.369468,0.018699,41277618,22759338,0,0,53966,0,1,1 +1773621416.442247,28.36,4,3992.50,59.69,1370.07,2336.84,0.00,3517999478708.127441,3517999478209.399414,258,2,118.969522,0.078050,41290129,22765418,0,0,53968,0,1,1 +1773621421.441549,28.30,4,3992.50,59.77,1366.99,2339.99,0.00,3518929205152.699219,3518929205154.875000,11,0,119.588215,0.050805,41302454,22769386,0,0,53971,0,1,1 +1773621426.438141,28.53,4,3992.50,59.79,1367.46,2340.73,0.00,32675.298176,33173.391213,2275565,2544114,118.847425,0.027433,41314725,22771472,0,0,53973,0,1,1 +1773621431.442105,28.54,4,3992.50,59.62,1374.03,2334.16,0.00,3515649882114.837402,3515649882113.891113,2274062,2543706,120.071669,0.022348,41327045,22773114,0,0,53976,0,1,1 +1773621436.438286,14.38,4,3992.50,55.46,1536.73,2171.54,0.00,3521127113129.132812,3521127112631.766113,205,0,105.424994,0.028480,41337808,22775328,0,0,53978,0,1,1 +1773621441.437682,0.95,4,3992.50,54.21,1585.90,2122.36,0.00,0.000000,0.000000,205,0,0.003796,0.001682,41337878,22775376,0,0,53981,0,1,1 +1773621446.437548,0.85,4,3992.50,53.59,1610.21,2098.05,0.00,1.995171,0.000195,258,2,0.000000,0.000020,41337878,22775378,0,0,53983,0,1,1 +1773621451.439990,0.60,4,3992.50,53.56,1611.35,2096.91,0.00,3516719557944.365234,3516719557946.485840,75,0,0.000000,0.000030,41337878,22775381,0,0,53986,0,1,1 +1773621456.437659,0.95,4,3992.50,54.15,1588.40,2120.00,0.00,1.604948,10.680175,253,417,0.000000,0.000020,41337878,22775383,0,0,53988,0,1,1 +1773621461.442176,0.65,4,3992.50,54.03,1593.09,2115.23,0.00,3515261630497.841309,3515261630488.651855,205,0,0.000000,0.000030,41337878,22775386,0,0,53991,0,1,1 +1773621466.442193,0.70,4,3992.50,54.03,1593.10,2115.23,0.00,32643.146361,33140.250386,2274073,2543844,0.000000,0.000020,41337878,22775388,0,0,53993,0,1,1 +1773621471.442081,0.60,4,3992.50,53.88,1598.63,2109.70,0.00,3518516240818.206543,3518516240321.269531,11,0,0.000000,0.000030,41337878,22775391,0,0,53996,0,1,1 +1773621476.437575,0.60,4,3992.50,53.92,1597.17,2111.15,0.00,32682.622526,33181.061302,2275576,2544283,0.000000,0.000020,41337878,22775393,0,0,53998,0,1,1 +1773621481.441597,0.75,4,3992.50,53.92,1597.18,2111.15,0.00,3515608837982.518555,3515608837484.929688,11,0,0.000000,0.000030,41337878,22775396,0,0,54001,0,1,1 +1773621486.438080,0.90,4,3992.50,53.69,1606.25,2101.93,0.00,0.053553,0.000000,75,0,0.000126,0.000820,41337888,22775412,0,0,54003,0,1,1 +1773621491.441547,0.65,4,3992.50,53.64,1607.99,2100.30,0.00,3515999089944.611328,0.000000,11,0,0.000016,0.000046,41337890,22775417,0,0,54006,0,1,1 +1773621496.442012,0.65,4,3992.50,53.63,1608.55,2099.74,0.00,0.000000,0.000000,11,0,0.000000,0.000020,41337890,22775419,0,0,54008,0,1,1 +1773621501.439615,0.65,4,3992.50,53.63,1608.55,2099.74,0.00,0.000000,0.000000,11,0,0.000000,0.000030,41337890,22775422,0,0,54011,0,1,1 +1773621506.441647,35.36,4,3992.50,59.91,1362.82,2345.42,0.00,0.000000,0.000000,11,0,78.884145,0.029489,41346264,22777443,0,0,54013,0,1,1 +1773621511.441779,29.24,4,3992.50,59.58,1375.46,2332.79,0.00,32642.583796,33139.799773,2274078,2544076,118.965620,0.028355,41358490,22779552,0,0,54016,0,1,1 +1773621516.442107,28.38,4,3992.50,60.04,1357.09,2350.75,0.00,3518205909790.497070,3518205909302.317383,253,417,118.962775,0.039111,41370626,22782539,0,0,54018,0,1,1 +1773621521.437665,27.84,4,3992.50,59.64,1372.82,2335.02,0.00,3521565652299.691895,3521565652290.666504,11,0,119.485403,0.063740,41382980,22787475,0,0,54021,0,1,1 +1773621526.441635,27.97,4,3992.50,59.81,1366.06,2341.79,0.00,32617.549203,33114.485625,2274078,2544166,119.293673,0.085246,41395567,22794151,0,0,54023,0,1,1 +1773621531.439138,28.06,4,3992.50,59.58,1375.25,2332.62,0.00,3520195453322.985840,3520195452834.428223,253,417,119.054516,0.099049,41408266,22801845,0,0,54026,0,1,1 +1773621536.442395,27.97,4,3992.50,59.92,1362.02,2345.86,0.00,32630.255791,33119.351899,2275581,2544616,120.117268,0.097402,41421028,22809439,0,0,54028,0,1,1 +1773621541.441875,28.51,4,3992.50,59.51,1378.07,2329.79,0.00,0.000000,0.003125,2275581,2544628,118.205267,0.097632,41433595,22817034,0,0,54031,0,1,1 +1773621546.438224,16.16,4,3992.50,54.93,1557.27,2150.69,0.00,3521008191764.597656,3521008191265.798340,11,0,112.663804,0.095087,41445528,22824445,0,0,54033,0,1,1 +1773621551.437620,2.31,4,3992.50,55.22,1557.17,2162.05,0.00,0.000000,0.000000,11,0,0.003118,0.001455,41445586,22824486,0,0,54036,0,1,1 +1773621556.438953,0.75,4,3992.50,54.31,1592.92,2126.32,0.00,1.657273,10.672351,253,417,0.000000,0.000664,41445586,22824492,0,0,54038,0,1,1 +1773621561.441590,0.70,4,3992.50,53.98,1605.94,2113.31,0.00,3516582678520.855957,3516582678511.790039,75,0,0.000000,0.000030,41445586,22824495,0,0,54041,0,1,1 +1773621566.437646,0.80,4,3992.50,53.96,1606.56,2112.68,0.00,3521214163727.886719,0.000000,11,0,0.000000,0.000020,41445586,22824497,0,0,54043,0,1,1 +1773621571.438292,0.65,4,3992.50,53.96,1606.67,2112.58,0.00,32639.376908,33136.907464,2274090,2544323,0.000000,0.000030,41445586,22824500,0,0,54046,0,1,1 +1773621576.439067,0.75,4,3992.50,53.65,1608.80,2100.46,0.00,3517891713761.399902,3517891713263.881836,11,0,0.000000,0.000020,41445586,22824502,0,0,54048,0,1,1 +1773621581.437575,0.95,4,3992.50,53.71,1606.17,2103.05,0.00,0.000000,0.000000,11,0,0.000000,0.000030,41445586,22824505,0,0,54051,0,1,1 +1773621586.442588,0.65,4,3992.50,53.72,1605.95,2103.27,0.00,2.173212,0.000195,258,2,0.000000,0.000020,41445586,22824507,0,0,54053,0,1,1 +1773621591.442398,0.65,4,3992.50,53.70,1606.82,2102.40,0.00,3518571220704.765625,10.675407,253,417,0.000025,0.000061,41445588,22824512,0,0,54056,0,1,1 +1773621596.437599,0.70,4,3992.50,53.70,1606.82,2102.39,0.00,3521817020605.022461,3521817020595.942871,75,0,0.000117,0.000160,41445598,22824524,0,0,54058,0,1,1 +1773621601.437579,0.80,4,3992.50,53.69,1607.09,2102.12,0.00,3518451480426.041504,0.000000,11,0,0.000000,0.000030,41445598,22824527,0,0,54061,0,1,1 +1773621606.442487,1.00,4,3992.50,53.56,1606.90,2097.00,0.00,0.000000,0.000000,11,0,0.001228,0.001243,41445607,22824543,0,0,54063,0,1,1 +1773621611.442293,0.85,4,3992.50,53.57,1606.72,2097.19,0.00,32644.864239,33142.747815,2274096,2544463,0.000000,0.000030,41445607,22824546,0,0,54066,0,1,1 +1773621616.437556,33.27,4,3992.50,59.95,1356.72,2347.07,0.00,3521773857639.484375,3521773857138.970703,258,2,66.962367,0.029321,41452716,22826543,0,0,54068,0,1,1 +1773621621.440293,29.93,4,3992.50,59.49,1374.81,2329.04,0.00,3516512426112.122559,3516512426114.296875,11,0,119.700890,0.022549,41464990,22828221,0,0,54071,0,1,1 +1773621626.438423,28.27,4,3992.50,59.48,1375.08,2328.72,0.00,0.000000,0.000000,11,0,118.412816,0.021700,41477339,22829798,0,0,54073,0,1,1 +1773621631.441290,28.29,4,3992.50,59.63,1369.00,2334.82,0.00,32624.903622,33122.576064,2274102,2544617,119.899074,0.027562,41489616,22831869,0,0,54076,0,1,1 +1773621636.441735,28.41,4,3992.50,59.64,1368.91,2334.94,0.00,3518123938669.118164,3518123938180.221191,253,417,118.753665,0.018886,41501779,22833266,0,0,54078,0,1,1 +1773621641.442005,29.53,4,3992.50,59.54,1372.56,2331.20,0.00,3518247031445.736816,3518247031436.539551,205,0,119.555645,0.018997,41513763,22834676,0,0,54081,0,1,1 +1773621646.441852,28.92,4,3992.50,59.74,1364.75,2339.02,0.00,1.995178,0.000195,258,2,119.367515,0.018982,41525904,22836098,0,0,54083,0,1,1 +1773621651.437474,28.54,4,3992.50,59.95,1356.68,2347.05,0.00,3521520421855.145996,3521520421857.143066,205,0,119.071611,0.033357,41537980,22838671,0,0,54086,0,1,1 +1773621656.437670,18.95,4,3992.50,59.44,1376.25,2327.38,0.00,0.000000,0.000000,205,0,119.771700,0.054838,41550333,22842931,0,0,54088,0,1,1 +1773621661.440849,1.25,4,3992.50,54.35,1575.77,2128.08,0.00,0.000000,0.000000,205,0,4.009029,0.005498,41550853,22843180,0,0,54091,0,1,1 +1773621666.437565,1.00,4,3992.50,54.03,1591.21,2115.31,0.00,1.996428,0.000195,258,2,0.000000,0.000020,41550853,22843182,0,0,54093,0,1,1 +1773621671.439484,0.65,4,3992.50,53.81,1597.13,2106.95,0.00,3517088015230.594238,3517088015232.588867,205,0,0.000000,0.000030,41550853,22843185,0,0,54096,0,1,1 +1773621676.441554,0.70,4,3992.50,53.81,1597.13,2106.95,0.00,1.994292,0.000195,258,2,0.000000,0.000020,41550853,22843187,0,0,54098,0,1,1 +1773621681.437564,0.60,4,3992.50,53.82,1596.89,2107.20,0.00,32667.639871,33168.523175,2274113,2544848,0.000000,0.000674,41550853,22843194,0,0,54101,0,1,1 +1773621686.441964,0.70,4,3992.50,53.82,1596.88,2107.21,0.00,3515343590919.511230,3515343590419.467773,258,2,0.001834,0.001585,41550882,22843214,0,0,54103,0,1,1 +1773621691.441908,0.70,4,3992.50,53.82,1596.88,2107.21,0.00,3518476699559.805176,3518476699561.980469,11,0,0.001072,0.000439,41550905,22843231,0,0,54106,0,1,1 +1773621696.442383,0.70,4,3992.50,53.83,1596.65,2107.43,0.00,32640.641368,33139.028922,2274113,2544863,0.000000,0.000020,41550905,22843233,0,0,54108,0,1,1 +1773621701.441784,0.90,4,3992.50,53.77,1599.59,2105.16,0.00,3518858798159.159668,3518858797660.665039,11,0,0.000000,0.000030,41550905,22843236,0,0,54111,0,1,1 +1773621706.442235,0.70,4,3992.50,53.77,1599.59,2105.16,0.00,0.000000,0.000000,11,0,0.000107,0.000138,41550913,22843246,0,0,54113,0,1,1 +1773621711.439775,0.70,4,3992.50,53.77,1599.59,2105.16,0.00,32669.548976,33169.214978,2275616,2545315,0.000000,0.000030,41550913,22843249,0,0,54116,0,1,1 +1773621716.437572,0.60,4,3992.50,53.77,1599.59,2105.15,0.00,0.000000,0.006253,2275616,2545319,0.000000,0.000020,41550913,22843251,0,0,54118,0,1,1 +1773621721.441249,0.70,4,3992.50,53.77,1599.59,2105.15,0.00,0.000000,0.005465,2275616,2545324,0.000000,0.000030,41550913,22843254,0,0,54121,0,1,1 +1773621726.442373,30.24,4,3992.50,59.98,1362.88,2348.16,0.00,3517646144146.058105,3517646143646.684570,75,0,62.892405,0.048067,41557943,22846822,0,0,54123,0,1,1 +1773621731.439250,31.94,4,3992.50,59.61,1377.27,2333.77,0.00,32664.103413,33163.095711,2274118,2545058,122.269990,0.059942,41570731,22851367,0,0,54126,0,1,1 +1773621736.438391,28.79,4,3992.50,59.99,1362.18,2348.84,0.00,3519041234447.315430,3519041233948.602539,11,0,121.995174,0.019919,41582749,22852872,0,0,54128,0,1,1 +1773621741.438174,25.05,4,3992.50,60.28,1350.84,2360.18,0.00,0.000000,0.000000,11,0,103.349050,0.022873,41592899,22854652,0,0,54131,0,1,1 +1773621746.441946,29.44,4,3992.50,60.72,1333.62,2377.46,0.00,0.000000,0.000000,11,0,121.987757,0.030719,41604077,22856935,0,0,54133,0,1,1 +1773621751.438262,28.83,4,3992.50,60.84,1329.21,2381.93,0.00,32667.816044,33166.845574,2274118,2545117,120.296824,0.029126,41614959,22859120,0,0,54136,0,1,1 +1773621756.438200,28.83,4,3992.50,60.46,1344.07,2366.98,0.00,3518481000327.700195,3518480999829.032227,11,0,120.033686,0.028434,41625787,22861305,0,0,54138,0,1,1 +1773621761.442255,28.90,4,3992.50,60.20,1343.08,2356.77,0.00,2.173628,0.000195,258,2,118.185042,0.029403,41636669,22863596,0,0,54141,0,1,1 +1773621766.442186,19.38,4,3992.50,60.13,1345.69,2354.23,0.00,32642.024915,33143.066371,2274119,2545176,120.170479,0.029257,41647670,22865845,0,0,54143,0,1,1 +1773621771.437571,1.30,4,3992.50,53.94,1587.93,2111.95,0.00,3521687335849.179199,3521687335347.681641,258,2,14.287347,0.005754,41649074,22866198,0,0,54146,0,1,1 +1773621776.438614,0.75,4,3992.50,53.37,1610.50,2089.41,0.00,32634.931999,33135.830858,2274131,2545243,0.000619,0.000273,41649086,22866207,0,0,54148,0,1,1 +1773621781.440872,0.65,4,3992.50,53.11,1620.56,2079.36,0.00,3516849008022.892090,3516849007524.109375,205,0,0.000000,0.000030,41649086,22866210,0,0,54151,0,1,1 +1773621786.437638,0.80,4,3992.50,53.12,1620.32,2079.59,0.00,0.000000,0.000000,205,0,0.000000,0.000020,41649086,22866212,0,0,54153,0,1,1 +1773621791.440000,1.00,4,3992.50,53.25,1622.31,2084.70,0.00,32638.063497,33137.845135,2275635,2545697,0.000000,0.000030,41649086,22866215,0,0,54156,0,1,1 +1773621796.441845,0.70,4,3992.50,53.25,1622.31,2084.70,0.00,3517139358840.401855,3517139358340.748535,11,0,0.000000,0.000020,41649086,22866217,0,0,54158,0,1,1 +1773621801.437621,0.75,4,3992.50,53.25,1622.31,2084.70,0.00,32681.273652,33181.560356,2275635,2545725,0.000000,0.000030,41649086,22866220,0,0,54161,0,1,1 +1773621806.441623,0.60,4,3992.50,53.21,1623.85,2083.15,0.00,3515623221481.265625,3515623220981.747559,75,0,0.000000,0.000020,41649086,22866222,0,0,54163,0,1,1 +1773621811.437565,0.65,4,3992.50,53.21,1623.61,2083.40,0.00,1.605502,10.683866,253,417,0.000000,0.000513,41649086,22866228,0,0,54166,0,1,1 +1773621816.437648,0.60,4,3992.50,53.02,1631.00,2076.00,0.00,3518378990968.054199,3518378990959.037109,11,0,0.000101,0.000305,41649094,22866239,0,0,54168,0,1,1 +1773621821.437691,1.05,4,3992.50,53.19,1628.83,2082.51,0.00,0.000000,0.000000,11,0,0.000041,0.000077,41649098,22866246,0,0,54171,0,1,1 +1773621826.442224,0.65,4,3992.50,53.16,1630.19,2081.15,0.00,0.000000,0.000000,11,0,0.000000,0.000020,41649098,22866248,0,0,54173,0,1,1 +1773621831.437638,0.65,4,3992.50,53.16,1630.19,2081.15,0.00,2.177387,0.000195,258,2,0.000000,0.000030,41649098,22866251,0,0,54176,0,1,1 +1773621836.442038,27.99,4,3992.50,59.80,1370.14,2341.12,0.00,3515343706421.031738,10.665614,253,417,50.431808,0.027950,41654507,22868179,0,0,54178,0,1,1 +1773621841.441702,31.49,4,3992.50,59.74,1372.25,2339.02,0.00,32644.482012,33134.713437,2274137,2545538,118.374323,0.030803,41666618,22870486,0,0,54181,0,1,1 +1773621846.441549,28.46,4,3992.50,59.48,1382.40,2328.81,0.00,3518544886639.035645,3518544886139.804199,11,0,119.770034,0.023230,41678892,22872208,0,0,54183,0,1,1 +1773621851.438439,28.61,4,3992.50,59.45,1383.25,2327.48,0.00,32673.988957,33174.540578,2275640,2546009,118.649448,0.051594,41691271,22876186,0,0,54186,0,1,1 +1773621856.439238,28.46,4,3992.50,59.71,1372.85,2337.93,0.00,3517875054272.690918,3517875053781.546875,253,417,120.150419,0.032762,41703739,22878706,0,0,54188,0,1,1 +1773621861.441798,28.12,4,3992.50,59.60,1377.12,2333.45,0.00,0.000000,0.000000,253,417,118.303704,0.021809,41715955,22880356,0,0,54191,0,1,1 +1773621866.437561,28.72,4,3992.50,59.67,1374.52,2336.25,0.00,0.518115,3521421696161.289551,258,2,120.069986,0.029162,41728227,22882654,0,0,54193,0,1,1 +1773621871.437939,28.12,4,3992.50,59.54,1379.85,2331.05,0.00,3518171183774.231934,3518171183776.407227,11,0,118.762039,0.043149,41740407,22885998,0,0,54196,0,1,1 +1773621876.437668,22.45,4,3992.50,60.06,1358.86,2351.60,0.00,2.175509,0.000195,258,2,119.573023,0.027742,41752649,22888113,0,0,54198,0,1,1 +1773621881.441695,1.45,4,3992.50,53.16,1628.88,2081.52,0.00,3515604949643.468262,3515604949645.642090,11,0,21.417427,0.008680,41754942,22888667,0,0,54201,0,1,1 +1773621886.437640,0.75,4,3992.50,53.17,1628.68,2081.75,0.00,32680.343963,33181.181426,2275653,2546176,0.000000,0.000020,41754942,22888669,0,0,54203,0,1,1 +1773621891.439597,0.60,4,3992.50,53.16,1628.93,2081.50,0.00,3517060925669.901367,3517060925169.485840,205,0,0.000000,0.000030,41754942,22888672,0,0,54206,0,1,1 +1773621896.441549,0.65,4,3992.50,53.17,1628.70,2081.73,0.00,0.000000,0.000000,205,0,0.000000,0.000020,41754942,22888674,0,0,54208,0,1,1 +1773621901.442055,0.75,4,3992.50,53.10,1631.57,2078.86,0.00,1.994916,0.000195,258,2,0.000000,0.000030,41754942,22888677,0,0,54211,0,1,1 +1773621906.437644,1.30,4,3992.50,53.03,1638.99,2076.28,0.00,3521543663264.196289,10.684425,253,417,0.000308,0.000575,41754949,22888690,0,0,54213,0,1,1 +1773621911.442556,0.80,4,3992.50,53.04,1638.49,2076.76,0.00,32620.147274,33111.360456,2275654,2546318,0.000016,0.000046,41754951,22888695,0,0,54216,0,1,1 +1773621916.442561,0.95,4,3992.50,53.01,1639.67,2075.58,0.00,3518433999083.625000,3518433998582.731934,205,0,0.001126,0.001222,41754960,22888711,0,0,54218,0,1,1 +1773621921.437654,0.60,4,3992.50,53.07,1637.48,2077.77,0.00,0.000000,0.000000,205,0,0.000000,0.000030,41754960,22888714,0,0,54221,0,1,1 +1773621926.441148,0.60,4,3992.50,53.08,1637.25,2078.01,0.00,32630.872464,33131.448259,2275654,2546355,0.000126,0.000175,41754970,22888726,0,0,54223,0,1,1 +1773621931.442036,0.70,4,3992.50,53.08,1637.25,2078.00,0.00,3517812697637.127441,3517812697136.417480,75,0,0.000000,0.000030,41754970,22888729,0,0,54226,0,1,1 +1773621936.437780,1.05,4,3992.50,53.08,1628.34,2078.25,0.00,32681.616902,33182.890813,2275654,2546378,0.000000,0.000020,41754970,22888731,0,0,54228,0,1,1 +1773621941.441580,0.95,4,3992.50,53.08,1628.28,2078.21,0.00,3515765122313.801270,3515765121811.214355,258,2,0.000205,0.000561,41754977,22888745,0,0,54231,0,1,1 +1773621946.441899,23.72,4,3992.50,59.37,1381.98,2324.43,0.00,32639.878731,33141.892950,2274156,2546015,45.265575,0.032166,41759847,22891030,0,0,54233,0,1,1 +1773621951.441827,33.20,4,3992.50,59.54,1375.20,2331.22,0.00,3518487386461.646973,3518487385961.588867,205,0,122.570698,0.045551,41772302,22894534,0,0,54236,0,1,1 +1773621956.442576,29.17,4,3992.50,59.29,1385.28,2321.15,0.00,0.000000,0.000000,205,0,121.748486,0.043429,41784642,22897899,0,0,54238,0,1,1 +1773621961.437567,28.97,4,3992.50,59.39,1381.07,2325.28,0.00,0.000000,0.000000,205,0,120.286153,0.024669,41796893,22899738,0,0,54241,0,1,1 +1773621966.440560,28.56,4,3992.50,59.44,1379.23,2327.15,0.00,1.993923,0.000195,258,2,120.294204,0.021966,41809191,22901406,0,0,54243,0,1,1 +1773621971.442420,28.86,4,3992.50,59.33,1376.84,2322.90,0.00,0.000000,0.000000,258,2,119.919345,0.021143,41821391,22903047,0,0,54246,0,1,1 +1773621976.437867,26.47,4,3992.50,59.62,1365.36,2334.39,0.00,3521643438437.884766,3521643438440.062012,11,0,120.274960,0.033922,41833669,22905715,0,0,54248,0,1,1 +1773621981.442351,30.39,4,3992.50,59.33,1377.04,2322.85,0.00,2.173441,0.000195,258,2,118.456023,0.040774,41845783,22908920,0,0,54251,0,1,1 +1773621986.441798,21.86,4,3992.50,59.09,1386.50,2313.33,0.00,3518826522700.204590,10.676181,253,417,119.777596,0.037489,41857875,22911759,0,0,54253,0,1,1 +1773621991.440679,1.45,4,3992.50,54.70,1558.20,2141.61,0.00,3519224594561.570312,3519224594552.551270,11,0,16.832363,0.008914,41859696,22912291,0,0,54256,0,1,1 +1773621996.439209,0.70,4,3992.50,53.73,1596.30,2103.52,0.00,0.180326,0.000000,205,0,0.000000,0.000020,41859696,22912293,0,0,54258,0,1,1 +1773622001.442249,1.05,4,3992.50,53.08,1621.47,2078.36,0.00,1.993905,0.000195,258,2,0.000000,0.000030,41859696,22912296,0,0,54261,0,1,1 +1773622006.442358,0.65,4,3992.50,53.07,1622.07,2077.76,0.00,3518360100501.242188,3518360100503.237305,205,0,0.000031,0.000045,41859698,22912300,0,0,54263,0,1,1 +1773622011.441642,0.65,4,3992.50,53.08,1621.83,2078.01,0.00,1.477653,10.676724,253,417,0.000008,0.000682,41859699,22912308,0,0,54266,0,1,1 +1773622016.437573,0.65,4,3992.50,53.08,1621.83,2078.01,0.00,3521303265923.013672,3521303265913.935547,75,0,0.000000,0.000020,41859699,22912310,0,0,54268,0,1,1 +1773622021.442193,0.60,4,3992.50,53.08,1621.83,2078.00,0.00,3515188724557.499023,0.000000,11,0,0.000000,0.000030,41859699,22912313,0,0,54271,0,1,1 +1773622026.442319,1.00,4,3992.50,53.47,1606.34,2093.49,0.00,2.175336,0.000195,258,2,0.000000,0.000020,41859699,22912315,0,0,54273,0,1,1 +1773622031.441911,0.70,4,3992.50,53.20,1616.81,2083.00,0.00,3518724183359.669922,10.675871,253,417,0.000025,0.000061,41859701,22912320,0,0,54276,0,1,1 +1773622036.437648,0.65,4,3992.50,53.20,1617.07,2082.74,0.00,3521440214920.853516,3521440214911.828613,11,0,0.000159,0.000215,41859714,22912335,0,0,54278,0,1,1 +1773622041.438056,0.70,4,3992.50,53.21,1616.61,2083.20,0.00,0.053511,0.000000,75,0,0.000000,0.000030,41859714,22912338,0,0,54281,0,1,1 +1773622046.441748,0.70,4,3992.50,53.20,1617.10,2082.72,0.00,0.000000,0.000000,75,0,0.000000,0.000020,41859714,22912340,0,0,54283,0,1,1 +1773622051.438654,0.60,4,3992.50,53.20,1617.10,2082.72,0.00,0.000000,0.000000,75,0,0.000000,0.000030,41859714,22912343,0,0,54286,0,1,1 +1773622056.441554,28.36,4,3992.50,59.71,1362.57,2337.79,0.00,3516398238023.862305,0.000000,11,0,61.454932,0.028032,41866235,22914347,0,0,54288,0,1,1 +1773622061.442355,32.04,4,3992.50,59.37,1375.71,2324.59,0.00,32648.775771,33150.337660,2275676,2547026,122.152451,0.025702,41878751,22916248,0,0,54291,0,1,1 +1773622066.440411,28.66,4,3992.50,59.67,1363.90,2336.27,0.00,3519805524563.199707,3519805524070.383789,253,417,122.022566,0.043134,41891247,22919552,0,0,54293,0,1,1 +1773622071.438773,28.39,4,3992.50,59.67,1363.80,2336.29,0.00,0.000000,0.000000,253,417,120.210055,0.035736,41903544,22922285,0,0,54296,0,1,1 +1773622076.441907,28.94,4,3992.50,59.41,1374.15,2326.04,0.00,0.000000,0.000000,253,417,119.901716,0.051699,41915899,22926226,0,0,54298,0,1,1 +1773622081.442320,28.23,4,3992.50,59.47,1371.59,2328.52,0.00,3518146387643.070801,3518146387634.054688,11,0,119.566300,0.053756,41928152,22930382,0,0,54301,0,1,1 +1773622086.438478,28.80,4,3992.50,59.45,1372.41,2327.70,0.00,32679.119822,33181.343916,2275676,2547109,119.262595,0.038193,41940325,22933334,0,0,54303,0,1,1 +1773622091.442234,28.42,4,3992.50,59.76,1360.54,2339.56,0.00,3515796114407.057617,3515796113905.542480,75,0,119.886213,0.055268,41952676,22937659,0,0,54306,0,1,1 +1773622096.440144,18.20,4,3992.50,59.47,1371.76,2328.44,0.00,0.126811,0.000000,205,0,119.427973,0.062965,41964963,22942545,0,0,54308,0,1,1 +1773622101.437564,1.20,4,3992.50,54.71,1558.32,2141.86,0.00,0.000000,0.000000,205,0,1.607457,0.003000,41965220,22942679,0,0,54311,0,1,1 +1773622106.440072,0.65,4,3992.50,53.76,1595.19,2105.00,0.00,32627.871088,33128.828564,2274184,2546806,0.000008,0.000028,41965221,22942682,0,0,54313,0,1,1 +1773622111.442444,0.65,4,3992.50,53.53,1604.54,2095.65,0.00,3516768878056.861816,3516768877553.896484,258,2,0.000000,0.000030,41965221,22942685,0,0,54316,0,1,1 +1773622116.442031,0.65,4,3992.50,53.53,1604.54,2095.65,0.00,32644.936923,33148.239961,2274184,2546818,0.000000,0.000020,41965221,22942687,0,0,54318,0,1,1 +1773622121.438973,1.00,4,3992.50,53.39,1610.01,2090.15,0.00,3520590879402.235352,3520590878900.789062,75,0,0.000000,0.000030,41965221,22942690,0,0,54321,0,1,1 +1773622126.437570,0.70,4,3992.50,53.39,1609.83,2090.32,0.00,3519424394755.947266,0.000000,11,0,0.000000,0.000020,41965221,22942692,0,0,54323,0,1,1 +1773622131.437565,0.80,4,3992.50,53.39,1609.83,2090.32,0.00,0.180274,0.000000,205,0,0.000000,0.000030,41965221,22942695,0,0,54326,0,1,1 +1773622136.441509,0.60,4,3992.50,53.39,1609.83,2090.32,0.00,3515664055888.319824,0.000000,75,0,0.000000,0.000020,41965221,22942697,0,0,54328,0,1,1 +1773622141.442128,0.70,4,3992.50,53.39,1609.84,2090.32,0.00,0.126742,0.000000,205,0,0.000000,0.000513,41965221,22942703,0,0,54331,0,1,1 +1773622146.442187,0.90,4,3992.50,53.49,1606.05,2094.25,0.00,3518395361792.265625,0.000000,11,0,0.000126,0.000336,41965231,22942716,0,0,54333,0,1,1 +1773622151.437640,0.60,4,3992.50,53.51,1605.05,2094.95,0.00,0.053564,0.000000,75,0,0.000016,0.000046,41965233,22942721,0,0,54336,0,1,1 +1773622156.442326,0.70,4,3992.50,53.51,1605.05,2094.95,0.00,2.119888,0.000195,258,2,0.000000,0.000020,41965233,22942723,0,0,54338,0,1,1 +1773622161.441555,26.91,4,3992.50,59.86,1356.17,2343.77,0.00,3518980488091.324219,3518980488093.446289,75,0,44.475338,0.024438,41970072,22944370,0,0,54341,0,1,1 +1773622166.437553,31.08,4,3992.50,59.71,1362.12,2337.80,0.00,2.123574,0.000195,258,2,118.257386,0.046527,41982063,22947949,0,0,54343,0,1,1 +1773622171.442027,28.16,4,3992.50,59.71,1362.20,2337.70,0.00,32613.078219,33116.324774,2274190,2547148,120.059343,0.038106,41994418,22950893,0,0,54346,0,1,1 +1773622176.438202,27.97,4,3992.50,59.53,1369.02,2330.90,0.00,3521131009066.588867,3521131008564.629395,75,0,118.453177,0.035953,42006461,22953661,0,0,54348,0,1,1 +1773622181.441486,28.85,4,3992.50,59.53,1369.04,2330.88,0.00,32622.957260,33124.278394,2274190,2547186,119.887478,0.023766,42018774,22955502,0,0,54351,0,1,1 +1773622186.441645,28.69,4,3992.50,59.76,1368.58,2339.77,0.00,0.000000,0.044823,2274190,2547230,119.159822,0.021064,42030943,22957135,0,0,54353,0,1,1 +1773622191.442109,27.86,4,3992.50,59.79,1367.65,2340.73,0.00,0.000000,0.014842,2274190,2547249,119.154392,0.018121,42043196,22958489,0,0,54356,0,1,1 +1773622196.438108,28.49,4,3992.50,59.90,1363.26,2345.18,0.00,3521255214250.875000,3521255213748.636230,205,0,120.059986,0.016388,42055334,22959713,0,0,54358,0,1,1 +1773622201.437478,23.22,4,3992.50,59.85,1365.30,2343.18,0.00,1.995368,0.000195,258,2,118.376695,0.019585,42067285,22961210,0,0,54361,0,1,1 +1773622206.440845,1.56,4,3992.50,55.06,1546.00,2155.85,0.00,3516069113128.934082,10.667815,253,417,27.622322,0.008317,42070121,22961716,0,0,54363,0,1,1 +1773622211.437546,0.75,4,3992.50,54.28,1574.77,2125.32,0.00,3520760557365.042969,3520760557356.019531,11,0,0.000619,0.000766,42070133,22961729,0,0,54366,0,1,1 +1773622216.439048,0.85,4,3992.50,54.02,1585.00,2115.09,0.00,32644.517432,33147.339320,2275714,2547882,0.000205,0.000713,42070140,22961743,0,0,54368,0,1,1 +1773622221.439043,0.65,4,3992.50,53.99,1586.09,2114.01,0.00,3518440877630.335938,3518440877136.379883,253,417,0.000000,0.000030,42070140,22961746,0,0,54371,0,1,1 +1773622226.441379,0.70,4,3992.50,53.98,1586.65,2113.45,0.00,3516794293412.407227,3516794293403.394531,11,0,0.000000,0.000020,42070140,22961748,0,0,54373,0,1,1 +1773622231.442274,0.65,4,3992.50,53.98,1586.65,2113.45,0.00,1.657418,10.673285,253,417,0.000000,0.000030,42070140,22961751,0,0,54376,0,1,1 +1773622236.438476,0.95,4,3992.50,53.98,1590.30,2113.41,0.00,3521112001190.797363,3521112001181.773438,11,0,0.000000,0.000020,42070140,22961753,0,0,54378,0,1,1 +1773622241.441860,0.60,4,3992.50,53.95,1591.52,2112.22,0.00,0.180152,0.000000,205,0,0.001138,0.001231,42070150,22961770,0,0,54381,0,1,1 +1773622246.439781,0.60,4,3992.50,53.95,1591.52,2112.22,0.00,3519900306836.154297,0.000000,75,0,0.000008,0.000028,42070151,22961773,0,0,54383,0,1,1 +1773622251.438664,0.65,4,3992.50,53.95,1591.52,2112.22,0.00,32651.839636,33154.118938,2274211,2547524,0.000132,0.000179,42070161,22961786,0,0,54386,0,1,1 +1773622256.442204,0.65,4,3992.50,53.95,1591.52,2112.22,0.00,3515948294104.415039,3515948293611.667480,253,417,0.000025,0.000051,42070163,22961790,0,0,54388,0,1,1 +1773622261.438212,0.75,4,3992.50,53.95,1591.30,2112.43,0.00,3521248756994.062012,3521248756985.037598,11,0,0.000339,0.000610,42070172,22961806,0,0,54391,0,1,1 +1773622266.442163,0.90,4,3992.50,53.93,1602.02,2111.59,0.00,0.000000,0.000000,11,0,0.000000,0.000020,42070172,22961808,0,0,54393,0,1,1 +1773622271.441469,23.26,4,3992.50,59.66,1377.66,2335.87,0.00,32649.131278,33151.376129,2274216,2547599,37.463338,0.021638,42074266,22963282,0,0,54396,0,1,1 +1773622276.442192,31.98,4,3992.50,59.78,1372.85,2340.62,0.00,9.724765,10.793556,2275719,2548117,119.152023,0.025482,42086605,22965111,0,0,54398,0,1,1 +1773622281.440547,28.20,4,3992.50,59.57,1381.06,2332.45,0.00,0.000000,0.004005,2275719,2548131,118.814629,0.048022,42098993,22968779,0,0,54401,0,1,1 +1773622286.437542,28.46,4,3992.50,59.67,1377.28,2336.23,0.00,0.000000,0.006840,2275719,2548143,119.655253,0.065201,42111522,22973785,0,0,54403,0,1,1 +1773622291.441594,28.36,4,3992.50,59.58,1380.79,2332.67,0.00,3515588688776.507812,3515588688282.670410,253,417,119.091924,0.081798,42124213,22980146,0,0,54406,0,1,1 +1773622296.437498,27.90,4,3992.50,59.40,1388.02,2325.51,0.00,3521321639640.366211,3521321639631.161133,205,0,119.286803,0.085155,42136901,22986786,0,0,54408,0,1,1 +1773622301.439521,29.02,4,3992.50,59.56,1378.94,2331.83,0.00,1.994310,0.000195,258,2,119.141459,0.084675,42149555,22993417,0,0,54411,0,1,1 +1773622306.442167,28.40,4,3992.50,59.63,1376.16,2334.57,0.00,3516576446213.698242,3516576446215.818848,75,0,119.123334,0.076421,42162170,22999344,0,0,54413,0,1,1 +1773622311.440197,25.04,4,3992.50,59.69,1374.02,2336.84,0.00,0.000000,0.000000,75,0,120.040098,0.089408,42174944,23006284,0,0,54416,0,1,1 +1773622316.437860,1.40,4,3992.50,54.74,1567.82,2143.03,0.00,32669.659744,33173.391368,2275732,2548285,33.874108,0.030021,42178612,23008531,0,0,54418,0,1,1 +1773622321.441630,0.70,4,3992.50,54.09,1593.07,2117.79,0.00,0.000000,0.161597,2275732,2548328,0.000000,0.000030,42178612,23008534,0,0,54421,0,1,1 +1773622326.442103,0.70,4,3992.50,53.76,1606.31,2104.64,0.00,3518104557738.623047,3518104557244.083008,253,417,0.000000,0.000020,42178612,23008536,0,0,54423,0,1,1 +1773622331.441664,1.00,4,3992.50,53.99,1596.87,2113.99,0.00,3518745922536.490723,3518745922527.291992,205,0,0.000000,0.000030,42178612,23008539,0,0,54426,0,1,1 +1773622336.440567,0.75,4,3992.50,53.91,1600.08,2110.78,0.00,3519209362832.369629,0.000000,11,0,0.000000,0.000020,42178612,23008541,0,0,54428,0,1,1 +1773622341.441845,0.65,4,3992.50,53.90,1600.67,2110.19,0.00,0.053502,0.000000,75,0,0.000000,0.000674,42178612,23008548,0,0,54431,0,1,1 +1773622346.442449,0.65,4,3992.50,53.87,1601.63,2109.23,0.00,32640.719815,33143.484152,2274229,2547984,0.000000,0.000020,42178612,23008550,0,0,54433,0,1,1 +1773622351.439569,0.70,4,3992.50,53.87,1601.64,2109.23,0.00,9.731779,10.686235,2275732,2548407,0.000033,0.000075,42178615,23008556,0,0,54436,0,1,1 +1773622356.438388,0.90,4,3992.50,54.07,1603.87,2116.83,0.00,3519268300709.900391,3519268300203.879883,258,2,0.000008,0.000028,42178616,23008559,0,0,54438,0,1,1 +1773622361.441708,0.65,4,3992.50,54.07,1603.86,2116.83,0.00,3516102800724.107910,10.667917,253,417,0.000126,0.000185,42178626,23008572,0,0,54441,0,1,1 +1773622366.442498,0.70,4,3992.50,54.07,1603.87,2116.83,0.00,0.000000,0.000000,253,417,0.000000,0.000020,42178626,23008574,0,0,54443,0,1,1 +1773622371.441681,0.60,4,3992.50,53.88,1611.28,2109.42,0.00,3519012323880.897461,3519012323871.825195,75,0,0.000000,0.000030,42178626,23008577,0,0,54446,0,1,1 +1773622376.437555,0.60,4,3992.50,53.88,1611.28,2109.42,0.00,0.000000,0.000000,75,0,0.000000,0.000020,42178626,23008579,0,0,54448,0,1,1 +1773622381.439481,1.00,4,3992.50,53.68,1618.92,2101.78,0.00,3517081930201.415039,0.000000,11,0,0.000086,0.000030,42178632,23008582,0,0,54451,0,1,1 +1773622386.441705,0.70,4,3992.50,53.69,1618.69,2102.00,0.00,0.180193,0.000000,205,0,0.000056,0.000020,42178636,23008584,0,0,54453,0,1,1 +1773622391.441743,3.16,4,3992.50,53.68,1615.20,2101.86,0.00,0.000000,0.000000,205,0,0.000074,0.000057,42178643,23008589,0,0,54456,0,1,1 +1773622396.437557,2.01,4,3992.50,53.69,1614.97,2102.08,0.00,3521385390907.096680,0.000000,75,0,0.000036,0.000067,42178646,23008594,0,0,54458,0,1,1 +1773622401.439241,3.66,4,3992.50,53.15,1636.17,2080.88,0.00,0.000000,0.000000,75,0,0.000085,0.000146,42178652,23008603,0,0,54461,0,1,1 +1773622406.442477,2.35,4,3992.50,53.12,1637.13,2079.92,0.00,0.126676,0.000000,205,0,0.000085,0.000780,42178658,23008615,0,0,54463,0,1,1 +1773622411.441554,1.05,4,3992.50,53.15,1636.17,2080.88,0.00,1.477714,10.677168,253,418,0.000028,0.000069,42178660,23008620,0,0,54466,0,1,1 +1773622416.441681,0.95,4,3992.50,53.17,1618.62,2081.64,0.00,0.517663,3518347260917.460938,258,2,0.000000,0.000020,42178660,23008622,0,0,54468,0,1,1 +1773622421.441625,0.65,4,3992.50,53.17,1618.41,2081.89,0.00,3518477062670.767090,3518477062672.888672,75,0,0.000000,0.000030,42178660,23008625,0,0,54471,0,1,1 +1773622426.441782,0.70,4,3992.50,53.17,1618.41,2081.89,0.00,32643.760387,33146.951797,2274250,2548423,0.000000,0.000020,42178660,23008627,0,0,54473,0,1,1 +1773622431.441567,0.60,4,3992.50,53.17,1618.41,2081.89,0.00,9.726589,10.679755,2275753,2548845,0.000000,0.000030,42178660,23008630,0,0,54476,0,1,1 +1773622436.438951,1.70,4,3992.50,53.17,1618.42,2081.89,0.00,3520279107613.610840,3520279107612.781738,2274250,2548555,0.000000,0.000020,42178660,23008632,0,0,54478,0,1,1 +1773622441.442244,0.70,4,3992.50,53.18,1618.18,2082.12,0.00,3516121422807.036133,3516121422301.916016,258,2,0.000000,0.000030,42178660,23008635,0,0,54481,0,1,1 +1773622446.442507,0.75,4,3992.50,53.18,1618.18,2082.12,0.00,32640.951358,33146.408422,2274250,2548564,0.000000,0.000020,42178660,23008637,0,0,54483,0,1,1 +1773622451.442142,0.95,4,3992.50,53.42,1608.86,2091.44,0.00,0.000000,0.019533,2274250,2548577,0.000000,0.000030,42178660,23008640,0,0,54486,0,1,1 +1773622456.441782,0.75,4,3992.50,53.42,1608.86,2091.44,0.00,3518691196889.561523,3518691196386.143066,75,0,0.000000,0.000020,42178660,23008642,0,0,54488,0,1,1 +1773622461.442122,0.70,4,3992.50,53.42,1608.87,2091.43,0.00,3518197835627.887207,0.000000,11,0,0.000000,0.000030,42178660,23008645,0,0,54491,0,1,1 +1773622466.439759,0.90,4,3992.50,53.44,1608.13,2092.17,0.00,0.000000,0.000000,11,0,0.000000,0.000020,42178660,23008647,0,0,54493,0,1,1 +1773622471.437563,0.95,4,3992.50,53.43,1608.57,2091.73,0.00,32659.184430,33162.800549,2274250,2548635,0.000028,0.000552,42178662,23008655,0,0,54496,0,1,1 +1773622476.440564,3.86,4,3992.50,54.04,1585.16,2115.83,0.00,3516326590517.097656,3516326590014.004883,11,0,0.000101,0.000313,42178670,23008666,0,0,54498,0,1,1 +1773622481.441542,0.85,4,3992.50,53.77,1595.78,2105.19,0.00,0.180238,0.000000,205,0,0.000028,0.000069,42178672,23008671,0,0,54501,0,1,1 +1773622486.441993,2.30,4,3992.50,53.18,1618.74,2082.24,0.00,0.000000,0.000000,205,0,0.000085,0.000137,42178678,23008679,0,0,54503,0,1,1 +1773622491.441085,1.05,4,3992.50,53.23,1617.07,2083.91,0.00,3519076477277.782715,0.000000,75,0,0.000028,0.000069,42178680,23008684,0,0,54506,0,1,1 +1773622496.437640,0.55,4,3992.50,53.23,1617.07,2083.93,0.00,3520862624815.331055,0.000000,11,0,0.000000,0.000020,42178680,23008686,0,0,54508,0,1,1 +1773622501.437646,0.70,4,3992.50,53.23,1617.07,2083.93,0.00,0.000000,0.000000,11,0,0.000000,0.000030,42178680,23008689,0,0,54511,0,1,1 +1773622506.441394,1.00,4,3992.50,53.36,1617.41,2089.33,0.00,32620.463640,33123.821642,2274255,2548983,0.000000,0.000020,42178680,23008691,0,0,54513,0,1,1 +1773622511.437565,0.70,4,3992.50,53.36,1617.30,2089.29,0.00,3521133826720.300781,3521133826216.179199,11,0,0.000000,0.000030,42178680,23008694,0,0,54516,0,1,1 +1773622516.437669,0.60,4,3992.50,53.36,1617.30,2089.29,0.00,0.053515,0.000000,75,0,0.000000,0.000020,42178680,23008696,0,0,54518,0,1,1 +1773622521.441849,0.75,4,3992.50,53.36,1617.30,2089.29,0.00,0.126652,0.000000,205,0,0.000000,0.000030,42178680,23008699,0,0,54521,0,1,1 +1773622526.442454,0.75,4,3992.50,53.36,1617.30,2089.29,0.00,32650.512378,33155.398929,2275758,2549488,0.000000,0.000020,42178680,23008701,0,0,54523,0,1,1 +1773622531.442225,0.70,4,3992.50,53.36,1617.30,2089.29,0.00,3518598089030.179199,3518598089029.231934,2274255,2549071,0.000000,0.000030,42178680,23008704,0,0,54526,0,1,1 +1773622536.437632,0.85,4,3992.50,53.46,1618.98,2093.19,0.00,3521672553012.428711,3521672552508.144531,11,0,0.000000,0.000664,42178680,23008710,0,0,54528,0,1,1 +1773622541.441669,0.65,4,3992.50,53.46,1618.45,2093.19,0.00,0.180128,0.000000,205,0,0.000212,0.000569,42178688,23008725,0,0,54531,0,1,1 +1773622546.439889,0.65,4,3992.50,53.46,1618.45,2093.19,0.00,3519690543231.878418,0.000000,11,0,0.000008,0.000064,42178689,23008729,0,0,54533,0,1,1 +1773622551.441601,6.61,4,3992.50,59.60,1378.06,2333.43,0.00,0.000000,0.000000,11,0,1.607762,0.006650,42179117,23009020,0,0,54536,0,1,1 +1773622556.441532,38.88,4,3992.50,59.66,1375.67,2335.94,0.00,32645.394350,33149.371470,2274262,2549237,110.153566,0.043261,42190311,23012343,0,0,54538,0,1,1 +1773622561.441953,5.34,4,3992.50,60.61,1338.45,2373.13,0.00,3518140998725.426758,3518140998230.515625,253,418,15.284388,0.004029,42191924,23012635,0,0,54541,0,1,1 +1773622566.439395,1.11,4,3992.50,60.76,1340.01,2378.98,0.00,3520237843628.974609,3520237843619.772461,205,0,0.000447,0.000020,42191935,23012637,0,0,54543,0,1,1 +1773622571.441335,0.81,4,3992.50,60.78,1339.28,2379.72,0.00,3517072335808.004395,0.000000,11,0,0.000278,0.000030,42191945,23012640,0,0,54546,0,1,1 +1773622576.438361,0.91,4,3992.50,60.42,1353.43,2365.61,0.00,32674.105243,33179.435657,2275765,2549731,0.000168,0.000020,42191946,23012642,0,0,54548,0,1,1 +1773622581.437775,0.81,4,3992.50,60.42,1353.43,2365.61,0.00,3518849556543.651367,3518849556047.581055,253,418,0.000000,0.000030,42191946,23012645,0,0,54551,0,1,1 +1773622586.442421,0.76,4,3992.50,60.44,1352.77,2366.28,0.00,32622.698419,33118.261219,2275765,2549742,0.000744,0.000020,42191976,23012647,0,0,54553,0,1,1 +1773622591.438270,0.86,4,3992.50,60.46,1352.03,2367.02,0.00,3521360680292.525391,3521360679787.064941,11,0,0.002882,0.002003,42192026,23012681,0,0,54556,0,1,1 +1773622596.441334,1.01,4,3992.50,60.76,1340.27,2378.76,0.00,1.656699,10.668656,253,418,0.000031,0.000045,42192028,23012685,0,0,54558,0,1,1 +1773622601.438061,0.96,4,3992.50,60.68,1343.26,2375.77,0.00,32664.663788,33160.106636,2274262,2549346,0.000050,0.000575,42192032,23012695,0,0,54561,0,1,1 +1773622606.437557,1.21,4,3992.50,60.66,1344.10,2374.93,0.00,3518792456044.893066,3518792455540.706543,11,0,0.004840,0.004456,42192101,23012763,0,0,54563,0,1,1 +1773622611.439645,14.18,4,3992.50,59.69,1382.03,2336.95,0.00,0.000000,0.000000,11,0,53.267842,0.037890,42198009,23015564,0,0,54566,0,1,1 +1773622616.441575,32.09,4,3992.50,59.72,1380.63,2338.29,0.00,2.174551,0.000195,258,2,136.165894,0.099341,42212615,23023265,0,0,54568,0,1,1 +1773622621.438130,5.86,4,3992.50,61.17,1324.02,2394.98,0.00,3520863042675.596680,3520863042677.593262,205,0,16.425931,0.011018,42214419,23024103,0,0,54571,0,1,1 +1773622626.437567,1.16,4,3992.50,60.99,1325.41,2387.88,0.00,32658.336510,33163.647288,2275775,2549890,0.000707,0.000020,42214430,23024105,0,0,54573,0,1,1 +1773622631.441199,0.71,4,3992.50,61.06,1322.37,2390.58,0.00,3515882689861.753418,3515882689356.866211,205,0,0.000539,0.000030,42214440,23024108,0,0,54576,0,1,1 +1773622636.439869,1.72,4,3992.50,61.06,1322.15,2390.80,0.00,3519373548773.791504,0.000000,11,0,0.000168,0.000020,42214441,23024110,0,0,54578,0,1,1 +1773622641.437858,0.76,4,3992.50,61.06,1322.15,2390.80,0.00,0.053537,0.000000,75,0,0.000000,0.000030,42214441,23024113,0,0,54581,0,1,1 +1773622646.437570,0.71,4,3992.50,61.06,1322.15,2390.79,0.00,2.121997,0.000195,258,2,0.000539,0.000020,42214451,23024115,0,0,54583,0,1,1 +1773622651.441374,0.71,4,3992.50,61.07,1321.93,2391.01,0.00,3515762022665.735352,3515762022667.855469,75,0,0.000263,0.000324,42214459,23024131,0,0,54586,0,1,1 +1773622656.441645,1.11,4,3992.50,61.18,1311.04,2395.41,0.00,0.126751,0.000000,205,0,0.000000,0.000020,42214459,23024133,0,0,54588,0,1,1 +1773622661.438520,22.56,4,3992.50,60.01,1356.72,2349.61,0.00,32675.075676,33180.725190,2275775,2549953,93.605065,0.060389,42224381,23028839,0,0,54591,0,1,1 +1773622666.441942,25.10,4,3992.50,59.79,1365.48,2340.89,0.00,3516030669822.360840,3516030669317.552734,11,0,104.685257,0.070374,42235239,23034146,0,0,54593,0,1,1 +1773622671.441487,31.20,4,3992.50,59.40,1380.87,2325.48,0.00,32648.079593,33152.390022,2274273,2549591,133.721616,0.056078,42249113,23038473,0,0,54596,0,1,1 +1773622676.437562,28.72,4,3992.50,59.44,1379.30,2327.07,0.00,3521201424287.958984,3521201423783.297852,11,0,118.553922,0.050828,42261000,23042488,0,0,54598,0,1,1 +1773622681.437563,5.75,4,3992.50,60.83,1324.86,2381.54,0.00,0.053516,0.000000,75,0,15.913008,0.006085,42262628,23042972,0,0,54601,0,1,1 +1773622686.438174,0.86,4,3992.50,60.84,1324.41,2382.02,0.00,3518008053413.125488,0.000000,11,0,0.000539,0.000020,42262638,23042974,0,0,54603,0,1,1 +1773622691.438246,1.01,4,3992.50,60.97,1319.09,2387.30,0.00,32654.362444,33159.644868,2275776,2550058,0.000539,0.000030,42262648,23042977,0,0,54606,0,1,1 +1773622696.437626,0.91,4,3992.50,60.97,1319.09,2387.30,0.00,3518873469657.170898,3518873469656.310059,2274273,2549666,0.000000,0.000020,42262648,23042979,0,0,54608,0,1,1 +1773622701.441976,0.81,4,3992.50,60.94,1320.57,2385.82,0.00,3515378777720.603516,3515378777214.439453,258,2,0.000000,0.000030,42262648,23042982,0,0,54611,0,1,1 +1773622706.438221,0.86,4,3992.50,60.98,1318.91,2387.48,0.00,32677.198686,33185.143499,2275776,2550096,0.000540,0.000020,42262658,23042984,0,0,54613,0,1,1 +1773622711.442336,0.76,4,3992.50,60.98,1318.91,2387.48,0.00,3515544148768.060547,3515544148767.113770,2274273,2549677,0.000095,0.000119,42262665,23042994,0,0,54616,0,1,1 +1773622716.437655,1.11,4,3992.50,61.20,1310.32,2396.06,0.00,3521734275286.109375,3521734274779.019043,258,2,0.000076,0.000113,42262671,23043002,0,0,54618,0,1,1 +1773622721.438005,0.96,4,3992.50,61.11,1313.61,2392.77,0.00,3518190662523.232422,3518190662525.227539,205,0,0.002615,0.002171,42262710,23043036,0,0,54621,0,1,1 +1773622726.442363,1.16,4,3992.50,61.11,1313.62,2392.77,0.00,0.000000,0.000000,205,0,0.003501,0.002017,42262772,23043083,0,0,54623,0,1,1 +1773622731.442390,15.05,4,3992.50,59.49,1377.00,2329.28,0.00,0.000000,0.000000,205,0,60.893149,0.034912,42269407,23045634,0,0,54626,0,1,1 +1773622736.437607,29.33,4,3992.50,59.68,1369.89,2336.50,0.00,3521806299800.603027,0.000000,11,0,135.314972,0.056573,42283052,23049942,0,0,54628,0,1,1 +1773622741.439976,1.70,4,3992.50,60.60,1333.80,2372.60,0.00,32639.377150,33144.622222,2275777,2550213,16.456620,0.005866,42284772,23050400,0,0,54631,0,1,1 +1773622746.437565,0.70,4,3992.50,60.64,1332.33,2374.07,0.00,0.000000,0.021104,2275777,2550219,0.000614,0.000020,42284784,23050402,0,0,54633,0,1,1 +1773622751.437619,1.00,4,3992.50,61.03,1316.83,2389.55,0.00,0.000000,0.035156,2275777,2550245,0.000278,0.000030,42284794,23050405,0,0,54636,0,1,1 +1773622756.442086,0.75,4,3992.50,61.05,1316.25,2390.14,0.00,3515296715603.202637,3515296715107.122559,253,418,0.000168,0.000053,42284795,23050408,0,0,54638,0,1,1 +1773622761.440489,0.75,4,3992.50,61.03,1317.08,2389.31,0.00,0.517841,3519561908813.507324,258,2,0.000024,0.000030,42284798,23050411,0,0,54641,0,1,1 +1773622766.441858,1.00,4,3992.50,61.03,1316.83,2389.55,0.00,0.000000,0.000000,258,2,0.000286,0.000227,42284809,23050420,0,0,54643,0,1,1 +1773622771.442373,0.70,4,3992.50,61.06,1315.88,2390.50,0.00,32649.298628,33157.044970,2275777,2550288,0.000176,0.000150,42284811,23050425,0,0,54646,0,1,1 +1773622776.437564,0.95,4,3992.50,60.98,1327.69,2387.50,0.00,3521824536095.121094,3521824535588.830566,205,0,0.000000,0.000020,42284811,23050427,0,0,54648,0,1,1 +1773622781.437564,0.75,4,3992.50,61.02,1325.29,2388.96,0.00,1.995117,0.000195,258,2,0.000331,0.000684,42284834,23050468,0,0,54651,0,1,1 +1773622786.437569,0.90,4,3992.50,61.02,1325.30,2388.96,0.00,3518433447675.668945,3518433447677.844238,11,0,0.004028,0.003807,42284909,23050543,0,0,54653,0,1,1 +1773622791.437572,3.36,4,3992.50,54.69,1573.18,2141.06,0.00,0.180273,0.000000,205,0,20.438183,0.016369,42287300,23051606,0,0,54656,0,1,1 +1773622796.437560,0.95,4,3992.50,54.03,1598.84,2115.40,0.00,3518445550413.730469,0.000000,11,0,0.000619,0.000273,42287312,23051615,0,0,54658,0,1,1 +1773622801.437605,1.10,4,3992.50,53.80,1607.70,2106.52,0.00,0.000000,0.000000,11,0,0.000000,0.000674,42287312,23051622,0,0,54661,0,1,1 +1773622806.437662,1.15,4,3992.50,53.44,1617.77,2092.39,0.00,0.000000,0.000000,11,0,0.000000,0.000020,42287312,23051624,0,0,54663,0,1,1 +1773622811.442474,0.85,4,3992.50,53.44,1617.77,2092.38,0.00,0.180100,0.000000,205,0,0.000000,0.000030,42287312,23051627,0,0,54666,0,1,1 +1773622816.437893,0.95,4,3992.50,53.40,1619.57,2090.59,0.00,1.996947,0.000195,258,2,0.000000,0.000020,42287312,23051629,0,0,54668,0,1,1 +1773622821.438413,0.85,4,3992.50,53.44,1617.86,2092.29,0.00,32639.701159,33146.829885,2274296,2550169,0.000000,0.000030,42287312,23051632,0,0,54671,0,1,1 +1773622826.442493,0.60,4,3992.50,53.44,1617.86,2092.29,0.00,3515568677506.296387,3515568677001.701660,11,0,0.000000,0.000020,42287312,23051634,0,0,54673,0,1,1 +1773622831.442096,0.75,4,3992.50,53.41,1619.17,2090.98,0.00,1.657846,10.676042,253,418,0.000124,0.000168,42287320,23051645,0,0,54676,0,1,1 +1773622836.441939,0.70,4,3992.50,53.43,1618.36,2091.79,0.00,3518547963623.265625,3518547963614.194824,75,0,0.000117,0.000160,42287330,23051657,0,0,54678,0,1,1 +1773622841.442163,1.00,4,3992.50,53.64,1609.11,2100.11,0.00,2.121780,0.000195,258,2,0.001131,0.001219,42287339,23051673,0,0,54681,0,1,1 +1773622846.441898,0.70,4,3992.50,53.64,1609.11,2100.11,0.00,3518623605855.423828,3518623605857.545898,75,0,0.000000,0.000020,42287339,23051675,0,0,54683,0,1,1 +1773622851.442132,0.75,4,3992.50,53.44,1616.74,2092.48,0.00,0.000000,0.000000,75,0,0.000000,0.000030,42287339,23051678,0,0,54686,0,1,1 +1773622856.442816,10.99,4,3992.50,59.57,1376.86,2332.26,0.00,2.121585,0.000195,258,2,3.210318,0.008109,42287951,23052085,0,0,54688,0,1,1 +1773622861.442115,12.50,4,3992.50,60.57,1337.68,2371.54,0.00,3518930532680.562012,10.676497,253,418,13.466115,0.008024,42289380,23052695,0,0,54691,0,1,1 +1773622866.438293,1.01,4,3992.50,60.42,1343.46,2365.55,0.00,3521128621571.810547,3521128621562.605469,205,0,0.000447,0.000503,42289391,23052700,0,0,54693,0,1,1 +1773622871.442072,0.71,4,3992.50,60.43,1343.00,2366.02,0.00,0.000000,0.000000,205,0,0.000278,0.000191,42289401,23052704,0,0,54696,0,1,1 +1773622876.437835,0.76,4,3992.50,60.44,1342.76,2366.26,0.00,1.996809,0.000195,258,2,0.000168,0.000020,42289402,23052706,0,0,54698,0,1,1 +1773622881.441765,0.76,4,3992.50,60.44,1342.76,2366.26,0.00,3515674158294.903320,10.666617,253,418,0.000000,0.000030,42289402,23052709,0,0,54701,0,1,1 +1773622886.439336,0.81,4,3992.50,60.36,1345.96,2363.05,0.00,3520147227409.732422,3520147227400.710938,11,0,0.000546,0.000020,42289419,23052711,0,0,54703,0,1,1 +1773622891.438484,0.91,4,3992.50,60.36,1345.72,2363.30,0.00,0.000000,0.000000,11,0,0.002889,0.001999,42289469,23052746,0,0,54706,0,1,1 +1773622896.438459,1.16,4,3992.50,60.91,1324.08,2384.92,0.00,0.000000,0.000000,11,0,0.000000,0.000020,42289469,23052748,0,0,54708,0,1,1 +1773622901.439480,0.71,4,3992.50,60.68,1333.13,2375.89,0.00,1.657376,10.673015,253,418,0.000071,0.000130,42289474,23052758,0,0,54711,0,1,1 +1773622906.439303,1.06,4,3992.50,60.71,1331.91,2377.10,0.00,3518561962310.818848,3518561962301.748047,75,0,0.003913,0.003625,42289541,23052822,0,0,54713,0,1,1 +1773622911.439960,13.87,4,3992.50,59.62,1374.57,2334.34,0.00,32640.932278,33146.301232,2274301,2550493,53.842456,0.038078,42295525,23055635,0,0,54716,0,1,1 +1773622916.442014,31.82,4,3992.50,59.35,1385.34,2323.62,0.00,3516992776144.104492,3516992775638.929688,11,0,132.802030,0.109359,42309734,23064119,0,0,54718,0,1,1 +1773622921.441617,30.19,4,3992.50,59.43,1382.25,2326.71,0.00,2.175563,0.000195,258,2,127.807644,0.090229,42323088,23071089,0,0,54721,0,1,1 +1773622926.440944,29.53,4,3992.50,59.55,1369.56,2331.61,0.00,3518910836685.087891,3518910836687.263672,11,0,124.188667,0.049090,42335717,23074862,0,0,54723,0,1,1 +1773622931.438657,28.54,4,3992.50,59.31,1378.93,2322.25,0.00,0.180356,0.000000,205,0,122.224720,0.049597,42348164,23078650,0,0,54726,0,1,1 +1773622936.437955,29.16,4,3992.50,59.22,1382.67,2318.56,0.00,1.477649,10.676695,253,418,120.182250,0.036845,42360356,23081458,0,0,54728,0,1,1 +1773622941.438571,28.69,4,3992.50,59.31,1378.98,2322.21,0.00,3518003757749.532227,3518003757740.335938,205,0,120.150847,0.039128,42372625,23084481,0,0,54731,0,1,1 +1773622946.441551,28.06,4,3992.50,59.49,1372.14,2329.02,0.00,0.000000,0.000000,205,0,120.090087,0.044916,42384686,23088014,0,0,54733,0,1,1 +1773622951.437579,10.32,4,3992.50,54.38,1572.24,2129.02,0.00,1.478616,10.683683,253,418,88.993829,0.025861,42393813,23090010,0,0,54736,0,1,1 +1773622956.437563,1.30,4,3992.50,54.02,1594.87,2115.15,0.00,3518448014035.393555,3518448014026.376465,11,0,0.003177,0.001566,42393871,23090050,0,0,54738,0,1,1 +1773622961.442300,0.65,4,3992.50,53.69,1608.06,2101.92,0.00,32614.530573,33119.729946,2274316,2550737,0.000000,0.000030,42393871,23090053,0,0,54741,0,1,1 +1773622966.437560,0.70,4,3992.50,53.68,1608.19,2101.80,0.00,3521775604682.755371,3521775604176.543945,75,0,0.000000,0.000020,42393871,23090055,0,0,54743,0,1,1 +1773622971.441769,0.65,4,3992.50,53.68,1608.19,2101.80,0.00,1.602850,10.666216,253,418,0.000000,0.000030,42393871,23090058,0,0,54746,0,1,1 +1773622976.441667,0.65,4,3992.50,53.49,1615.82,2094.16,0.00,32654.158524,33151.797857,2275819,2551166,0.000000,0.000020,42393871,23090060,0,0,54748,0,1,1 +1773622981.437641,0.55,4,3992.50,53.50,1615.37,2094.62,0.00,3521272919286.010742,3521272918787.980957,253,418,0.000000,0.000030,42393871,23090063,0,0,54751,0,1,1 +1773622986.437572,0.90,4,3992.50,53.70,1605.52,2102.48,0.00,3518485835763.187012,3518485835754.169922,11,0,0.000000,0.000020,42393871,23090065,0,0,54753,0,1,1 +1773622991.441939,0.80,4,3992.50,53.66,1606.91,2100.95,0.00,0.000000,0.000000,11,0,0.000000,0.000030,42393871,23090068,0,0,54756,0,1,1 +1773622996.441767,0.65,4,3992.50,53.66,1606.95,2100.91,0.00,2.175466,0.000195,258,2,0.000025,0.000051,42393873,23090072,0,0,54758,0,1,1 +1773623001.437555,0.65,4,3992.50,53.67,1606.74,2101.12,0.00,3521403288280.962891,10.683999,253,418,0.000117,0.000815,42393883,23090089,0,0,54761,0,1,1 +1773623006.441956,0.60,4,3992.50,53.67,1606.74,2101.12,0.00,3515342897197.005371,3515342897187.996094,11,0,0.000000,0.000020,42393883,23090091,0,0,54763,0,1,1 +1773623011.441834,0.70,4,3992.50,53.47,1614.38,2093.48,0.00,0.000000,0.000000,11,0,0.000000,0.000030,42393883,23090094,0,0,54766,0,1,1 +1773623016.445547,1.80,4,3992.50,55.18,1547.91,2160.54,0.00,0.000000,0.000000,11,0,0.003859,0.003365,42393946,23090145,0,0,54768,0,1,1 +1773623021.438414,42.05,4,3992.50,59.42,1381.86,2326.39,0.00,0.000000,0.000000,11,0,108.309760,0.032170,42405350,23092581,0,0,54771,0,1,1 +1773623026.442136,28.04,4,3992.50,59.52,1378.16,2330.25,0.00,2.173772,0.000195,258,2,120.079196,0.019791,42417721,23094009,0,0,54773,0,1,1 +1773623031.442339,27.90,4,3992.50,59.40,1382.70,2325.74,0.00,32651.663538,33160.800241,2275825,2551373,118.159181,0.018889,42429765,23095404,0,0,54776,0,1,1 +1773623036.441544,28.24,4,3992.50,59.42,1382.04,2326.32,0.00,3518996497498.114258,3518996496988.875977,258,2,120.188286,0.031740,42441961,23097841,0,0,54778,0,1,1 +1773623041.441975,27.97,4,3992.50,59.52,1377.93,2330.43,0.00,0.000000,0.000000,258,2,118.567229,0.060679,42454237,23102570,0,0,54781,0,1,1 +1773623046.438009,28.25,4,3992.50,59.36,1384.38,2323.96,0.00,32669.171462,33177.971600,2274322,2551081,119.872966,0.052037,42466743,23106581,0,0,54783,0,1,1 +1773623051.440346,28.21,4,3992.50,59.78,1371.12,2340.71,0.00,3516793658992.108887,3516793658483.949707,258,2,119.719706,0.044677,42479116,23110035,0,0,54786,0,1,1 +1773623056.438268,28.04,4,3992.50,59.61,1378.07,2333.71,0.00,32666.562435,33176.246333,2275825,2551577,118.619319,0.039142,42491306,23113036,0,0,54788,0,1,1 +1773623061.439258,9.18,4,3992.50,53.08,1633.68,2078.20,0.00,3517740653728.979980,3517740653221.729980,75,0,82.100859,0.021076,42499756,23114597,0,0,54791,0,1,1 +1773623066.437638,1.15,4,3992.50,53.10,1632.77,2079.11,0.00,0.000000,0.000000,75,0,0.002236,0.001709,42499799,23114632,0,0,54793,0,1,1 +1773623071.439057,0.75,4,3992.50,53.06,1634.29,2077.59,0.00,1.603744,10.672165,253,418,0.000000,0.000030,42499799,23114635,0,0,54796,0,1,1 +1773623076.441547,0.75,4,3992.50,53.11,1631.74,2079.50,0.00,3516686450445.835938,3516686450436.643066,205,0,0.000000,0.000020,42499799,23114637,0,0,54798,0,1,1 +1773623081.441594,0.85,4,3992.50,53.33,1623.41,2087.83,0.00,3518404251286.716797,0.000000,11,0,0.000000,0.000030,42499799,23114640,0,0,54801,0,1,1 +1773623086.442100,0.75,4,3992.50,53.33,1623.41,2087.83,0.00,0.000000,0.000000,11,0,0.000000,0.000020,42499799,23114642,0,0,54803,0,1,1 +1773623091.442304,0.60,4,3992.50,53.03,1634.93,2076.31,0.00,0.000000,0.000000,11,0,0.000000,0.000030,42499799,23114645,0,0,54806,0,1,1 +1773623096.439110,0.55,4,3992.50,53.03,1634.98,2076.26,0.00,32666.463879,33173.357304,2274340,2551326,0.000000,0.000020,42499799,23114647,0,0,54808,0,1,1 +1773623101.437563,0.60,4,3992.50,53.06,1633.76,2077.48,0.00,3519525957078.520020,3519525956571.613281,205,0,0.000000,0.000030,42499799,23114650,0,0,54811,0,1,1 +1773623106.437554,1.00,4,3992.50,53.26,1625.72,2085.09,0.00,1.477444,10.675216,253,418,0.000025,0.000051,42499801,23114654,0,0,54813,0,1,1 +1773623111.437649,0.60,4,3992.50,53.26,1625.45,2085.31,0.00,0.517666,3518370286654.977051,258,2,0.000117,0.000170,42499811,23114667,0,0,54816,0,1,1 +1773623116.441711,0.70,4,3992.50,53.26,1625.45,2085.31,0.00,3515580616821.322754,10.666333,253,418,0.000000,0.000020,42499811,23114669,0,0,54818,0,1,1 +1773623121.437565,0.65,4,3992.50,53.26,1625.45,2085.31,0.00,3521357518562.148438,3521357518553.123535,11,0,0.000000,0.000030,42499811,23114672,0,0,54821,0,1,1 +1773623126.441968,0.90,4,3992.50,53.00,1635.51,2075.20,0.00,0.000000,0.000000,11,0,0.001689,0.001276,42499841,23114701,0,0,54823,0,1,1 +1773623131.443236,40.31,4,3992.50,59.90,1365.45,2345.28,0.00,0.053502,0.000000,75,0,96.714945,0.035291,42510016,23117186,0,0,54826,0,1,1 +1773623136.441156,27.82,4,3992.50,59.93,1364.41,2346.28,0.00,1.604867,10.679638,253,418,118.415353,0.026920,42522080,23119199,0,0,54828,0,1,1 +1773623141.441704,28.17,4,3992.50,59.93,1369.04,2346.49,0.00,3518051752837.632324,3518051752828.615723,11,0,119.958252,0.041264,42534297,23122336,0,0,54831,0,1,1 +1773623146.437573,27.61,4,3992.50,59.66,1379.79,2335.73,0.00,2.177190,0.000195,258,2,118.478240,0.071601,42546546,23127877,0,0,54833,0,1,1 +1773623151.439377,28.33,4,3992.50,59.54,1384.24,2331.21,0.00,0.000000,0.000000,258,2,120.147052,0.092970,42559166,23135101,0,0,54836,0,1,1 +1773623156.442349,27.94,4,3992.50,59.57,1383.01,2332.48,0.00,3516347143477.609863,3516347143479.784180,11,0,118.316105,0.082593,42571652,23141541,0,0,54838,0,1,1 +1773623161.442031,28.70,4,3992.50,59.58,1382.88,2332.56,0.00,0.053519,0.000000,75,0,119.997704,0.088941,42584324,23148415,0,0,54841,0,1,1 +1773623166.441574,28.38,4,3992.50,59.98,1370.66,2348.34,0.00,1.604346,10.676171,253,418,119.402576,0.097821,42596896,23156035,0,0,54843,0,1,1 +1773623171.441953,11.72,4,3992.50,54.51,1585.04,2134.02,0.00,3518170414761.025879,3518170414751.829102,205,0,94.139644,0.062708,42606787,23160890,0,0,54846,0,1,1 +1773623176.441982,0.90,4,3992.50,54.07,1602.25,2116.82,0.00,1.477433,10.675133,253,418,0.003169,0.001602,42606849,23160934,0,0,54848,0,1,1 +1773623181.441869,0.80,4,3992.50,53.89,1609.28,2109.79,0.00,32654.593746,33153.750713,2275865,2552227,0.001230,0.001254,42606858,23160951,0,0,54851,0,1,1 +1773623186.441723,0.60,4,3992.50,53.89,1609.26,2109.81,0.00,3518540187123.502930,3518540186613.149902,258,2,0.000031,0.000045,42606860,23160955,0,0,54853,0,1,1 +1773623191.441650,0.85,4,3992.50,53.91,1608.22,2110.86,0.00,3518488352924.078125,3518488352926.200195,75,0,0.002174,0.001038,42606904,23160984,0,0,54856,0,1,1 +1773623196.439530,0.95,4,3992.50,54.03,1597.21,2115.46,0.00,3519929838651.156738,0.000000,11,0,0.000000,0.000664,42606904,23160990,0,0,54858,0,1,1 +1773623201.438050,0.70,4,3992.50,53.97,1599.68,2113.04,0.00,1.658206,10.678356,253,418,0.000000,0.000030,42606904,23160993,0,0,54861,0,1,1 +1773623206.438304,0.60,4,3992.50,53.98,1599.43,2113.28,0.00,3518258190053.890137,3518258190044.692871,205,0,0.000000,0.000020,42606904,23160995,0,0,54863,0,1,1 +1773623211.442177,0.60,4,3992.50,53.98,1599.44,2113.28,0.00,1.993573,0.000195,258,2,0.000000,0.000030,42606904,23160998,0,0,54866,0,1,1 +1773623216.441689,0.65,4,3992.50,53.98,1599.44,2113.28,0.00,3518780048547.626953,3518780048549.622559,205,0,0.000000,0.000020,42606904,23161000,0,0,54868,0,1,1 +1773623221.442085,1.45,4,3992.50,53.98,1599.44,2113.28,0.00,32652.750726,33161.164894,2275865,2552302,0.000076,0.000123,42606910,23161009,0,0,54871,0,1,1 +1773623226.441937,1.00,4,3992.50,53.98,1601.48,2113.25,0.00,3518541097748.599609,3518541097238.135254,258,2,0.000039,0.000053,42606913,23161014,0,0,54873,0,1,1 +1773623231.442101,0.75,4,3992.50,53.66,1611.96,2100.76,0.00,3518322348322.492188,3518322348324.487305,205,0,0.000008,0.000038,42606914,23161018,0,0,54876,0,1,1 +1773623236.442205,1.00,4,3992.50,53.55,1616.19,2096.53,0.00,1.995075,0.000195,258,2,0.001484,0.000533,42606945,23161043,0,0,54878,0,1,1 +1773623241.441368,40.58,4,3992.50,59.84,1369.78,2342.85,0.00,3519026366386.754395,3519026366388.876953,75,0,90.545907,0.046172,42616481,23164455,0,0,54881,0,1,1 +1773623246.440185,28.11,4,3992.50,59.52,1382.17,2330.48,0.00,2.122377,0.000195,258,2,119.795759,0.028872,42628728,23166620,0,0,54883,0,1,1 +1773623251.442206,27.94,4,3992.50,59.65,1377.15,2335.48,0.00,3517015764052.443848,3517015764054.564941,75,0,119.317528,0.017333,42640959,23167883,0,0,54886,0,1,1 +1773623256.441875,28.32,4,3992.50,59.78,1372.12,2340.38,0.00,2.122015,0.000195,258,2,118.973538,0.025221,42653231,23169801,0,0,54888,0,1,1 +1773623261.441928,28.27,4,3992.50,60.18,1356.17,2356.06,0.00,3518399996875.351074,3518399996877.472656,75,0,119.965151,0.019002,42665508,23171205,0,0,54891,0,1,1 +1773623266.440778,28.22,4,3992.50,59.68,1375.48,2336.79,0.00,0.126787,0.000000,205,0,118.389232,0.030310,42677529,23173481,0,0,54893,0,1,1 +1773623271.442602,28.72,4,3992.50,59.80,1370.95,2341.27,0.00,32633.732937,33141.348747,2274368,2552163,120.119671,0.035151,42689730,23176263,0,0,54896,0,1,1 +1773623276.441696,28.29,4,3992.50,59.68,1375.40,2336.77,0.00,0.000000,0.005177,2274368,2552173,118.788012,0.039985,42701934,23179381,0,0,54898,0,1,1 +1773623281.439104,13.08,4,3992.50,54.69,1571.12,2141.18,0.00,9.767173,10.773847,2275877,2552606,99.589219,0.043256,42712098,23182729,0,0,54901,0,1,1 +1773623286.438745,1.20,4,3992.50,54.17,1578.54,2121.04,0.00,3518689357880.605469,3518689357380.955566,253,418,0.002258,0.001069,42712142,23182760,0,0,54903,0,1,1 +1773623291.442066,0.70,4,3992.50,53.65,1599.03,2100.57,0.00,3516101880115.538574,3516101880106.473633,75,0,0.000000,0.000030,42712142,23182763,0,0,54906,0,1,1 +1773623296.440010,0.65,4,3992.50,53.47,1606.26,2093.32,0.00,1.604859,10.679587,253,418,0.000000,0.000020,42712142,23182765,0,0,54908,0,1,1 +1773623301.437636,0.85,4,3992.50,53.47,1606.28,2093.32,0.00,32669.471006,33169.462154,2275882,2552714,0.000000,0.000030,42712142,23182768,0,0,54911,0,1,1 +1773623306.437636,0.55,4,3992.50,53.47,1606.04,2093.55,0.00,3518437045341.780762,3518437044832.955566,75,0,0.000000,0.000020,42712142,23182770,0,0,54913,0,1,1 +1773623311.439861,0.70,4,3992.50,53.47,1606.05,2093.55,0.00,1.603486,10.670446,253,418,0.000000,0.000030,42712142,23182773,0,0,54916,0,1,1 +1773623316.441024,0.95,4,3992.50,53.47,1602.86,2093.51,0.00,32646.366020,33146.144150,2275882,2552742,0.000000,0.000020,42712142,23182775,0,0,54918,0,1,1 +1773623321.442027,0.70,4,3992.50,53.47,1602.88,2093.51,0.00,0.000000,0.016403,2275882,2552759,0.000000,0.000030,42712142,23182778,0,0,54921,0,1,1 +1773623326.441942,0.60,4,3992.50,53.47,1602.88,2093.51,0.00,3518496687376.856445,3518496686867.919434,11,0,0.000025,0.000695,42712144,23182786,0,0,54923,0,1,1 +1773623331.439821,0.75,4,3992.50,53.47,1602.88,2093.51,0.00,0.000000,0.000000,11,0,0.000117,0.000170,42712154,23182799,0,0,54926,0,1,1 +1773623336.437642,0.55,4,3992.50,53.47,1602.88,2093.51,0.00,0.000000,0.000000,11,0,0.000000,0.000020,42712154,23182801,0,0,54928,0,1,1 +1773623341.437565,0.65,4,3992.50,53.47,1602.88,2093.50,0.00,0.000000,0.000000,11,0,0.000000,0.000030,42712154,23182804,0,0,54931,0,1,1 +1773623346.437571,0.70,4,3992.50,53.47,1602.89,2093.49,0.00,0.180273,0.000000,205,0,0.000000,0.000020,42712154,23182806,0,0,54933,0,1,1 +1773623351.442202,21.57,4,3992.50,59.55,1365.60,2331.54,0.00,3515181770221.181152,0.000000,75,0,33.422604,0.020697,42715908,23184207,0,0,54936,0,1,1 +1773623356.441875,32.49,4,3992.50,59.42,1370.72,2326.37,0.00,1.604304,10.675893,253,418,119.176018,0.023069,42728293,23185897,0,0,54938,0,1,1 +1773623361.441467,28.33,4,3992.50,59.38,1372.21,2324.86,0.00,3518724174912.956543,3518724174903.884766,75,0,119.174166,0.017095,42740405,23187141,0,0,54941,0,1,1 +1773623366.437565,27.83,4,3992.50,59.65,1361.72,2335.37,0.00,3521185048735.894531,0.000000,11,0,119.159082,0.026858,42752486,23189148,0,0,54943,0,1,1 +1773623371.438160,28.36,4,3992.50,59.30,1375.27,2321.77,0.00,0.180252,0.000000,205,0,119.259952,0.049899,42764688,23192992,0,0,54946,0,1,1 +1773623376.441544,28.37,4,3992.50,59.29,1375.73,2321.33,0.00,32623.643462,33131.657587,2274385,2552566,119.497664,0.060228,42777041,23197650,0,0,54948,0,1,1 +1773623381.437603,28.66,4,3992.50,59.44,1368.54,2327.27,0.00,9.733844,10.874391,2275888,2553024,118.865893,0.041928,42789326,23200895,0,0,54951,0,1,1 +1773623386.442285,28.82,4,3992.50,59.79,1355.00,2340.77,0.00,3515145900829.841309,3515145900320.946777,75,0,120.062811,0.054512,42801693,23205170,0,0,54953,0,1,1 +1773623391.441499,25.92,4,3992.50,59.46,1367.82,2328.05,0.00,1.604451,10.676873,253,418,118.390325,0.046784,42813920,23208790,0,0,54956,0,1,1 +1773623396.441787,1.35,4,3992.50,55.15,1536.41,2159.43,0.00,0.000000,0.000000,253,418,38.455904,0.013268,42817945,23209734,0,0,54958,0,1,1 +1773623401.441721,0.75,4,3992.50,54.12,1577.13,2118.74,0.00,3518483206716.200195,3518483206707.183105,11,0,0.000000,0.000030,42817945,23209737,0,0,54961,0,1,1 +1773623406.442090,1.00,4,3992.50,53.70,1594.92,2102.39,0.00,0.180260,0.000000,205,0,0.000000,0.000020,42817945,23209739,0,0,54963,0,1,1 +1773623411.439389,0.70,4,3992.50,53.49,1603.27,2094.08,0.00,3520338669122.323242,0.000000,75,0,0.000000,0.000030,42817945,23209742,0,0,54966,0,1,1 +1773623416.439185,0.65,4,3992.50,53.50,1602.80,2094.54,0.00,3518580275060.846680,0.000000,11,0,0.000000,0.000020,42817945,23209744,0,0,54968,0,1,1 +1773623421.437574,0.70,4,3992.50,53.48,1603.31,2094.04,0.00,32656.571570,33165.268937,2274402,2552818,0.000000,0.000030,42817945,23209747,0,0,54971,0,1,1 +1773623426.442215,0.70,4,3992.50,53.48,1603.31,2094.04,0.00,0.000000,0.009366,2274402,2552824,0.000307,0.000574,42817952,23209760,0,0,54973,0,1,1 +1773623431.437567,0.65,4,3992.50,53.29,1610.74,2086.61,0.00,3521711347903.098145,3521711347394.082031,11,0,0.000213,0.000570,42817960,23209775,0,0,54976,0,1,1 +1773623436.437739,1.05,4,3992.50,53.50,1603.23,2094.45,0.00,0.000000,0.000000,11,0,0.000000,0.000020,42817960,23209777,0,0,54978,0,1,1 +1773623441.441848,0.70,4,3992.50,53.50,1602.89,2094.45,0.00,1.656354,10.666429,253,418,0.000330,0.001360,42817977,23209805,0,0,54981,0,1,1 +1773623446.437618,0.60,4,3992.50,53.50,1602.89,2094.45,0.00,3521416639355.951660,3521416639346.926758,11,0,0.000000,0.000020,42817977,23209807,0,0,54983,0,1,1 +1773623451.441626,0.60,4,3992.50,53.42,1605.80,2091.55,0.00,32629.615310,33138.860804,2275905,2553291,0.000000,0.000030,42817977,23209810,0,0,54986,0,1,1 +1773623456.442045,19.60,4,3992.50,59.83,1354.72,2342.52,0.00,3518141884508.151367,3518141884007.557617,253,418,23.636270,0.017922,42820646,23210992,0,0,54988,0,1,1 +1773623461.438792,33.32,4,3992.50,59.81,1355.67,2341.56,0.00,32665.645468,33165.760993,2274407,2553007,118.241687,0.045821,42832752,23214454,0,0,54991,0,1,1 +1773623466.441719,28.18,4,3992.50,59.54,1366.13,2331.11,0.00,3516378794988.479004,3516378794479.968750,11,0,118.493514,0.039577,42844817,23217514,0,0,54993,0,1,1 +1773623471.438678,28.36,4,3992.50,59.65,1363.16,2335.59,0.00,0.000000,0.000000,11,0,119.842563,0.020386,42857294,23219043,0,0,54996,0,1,1 +1773623476.441502,27.79,4,3992.50,59.96,1351.32,2347.39,0.00,0.180172,0.000000,205,0,119.095441,0.017618,42869460,23220359,0,0,54998,0,1,1 +1773623481.439571,28.19,4,3992.50,59.84,1355.72,2343.00,0.00,3519796935301.461426,0.000000,11,0,119.213121,0.037208,42881712,23223199,0,0,55001,0,1,1 +1773623486.441998,28.15,4,3992.50,59.67,1362.61,2336.10,0.00,0.000000,0.000000,11,0,120.104191,0.029172,42893815,23225488,0,0,55003,0,1,1 +1773623491.441747,28.23,4,3992.50,59.65,1363.38,2335.37,0.00,1.657798,10.675730,253,418,118.173411,0.028326,42906008,23227567,0,0,55006,0,1,1 +1773623496.441560,28.82,4,3992.50,59.58,1366.19,2332.57,0.00,32656.124868,33156.384627,2275964,2553569,120.171652,0.023477,42918379,23229354,0,0,55008,0,1,1 +1773623501.437558,1.76,4,3992.50,53.38,1608.85,2089.88,0.00,3521255275557.478027,3521255275047.811523,11,0,48.508417,0.008507,42923369,23229917,0,0,55011,0,1,1 +1773623506.441696,0.75,4,3992.50,53.27,1613.12,2085.61,0.00,1.656344,10.666368,253,418,0.000000,0.000663,42923369,23229923,0,0,55013,0,1,1 +1773623511.441421,0.60,4,3992.50,53.23,1614.62,2084.11,0.00,3518630987631.019043,3518630987622.001465,11,0,0.000000,0.000030,42923369,23229926,0,0,55016,0,1,1 +1773623516.439190,0.65,4,3992.50,53.32,1611.19,2087.54,0.00,1.658455,10.679961,253,418,0.000000,0.000020,42923369,23229928,0,0,55018,0,1,1 +1773623521.437560,0.60,4,3992.50,53.33,1610.73,2088.00,0.00,3519584677252.441406,3519584677243.421387,11,0,0.000000,0.000030,42923369,23229931,0,0,55021,0,1,1 +1773623526.438475,0.70,4,3992.50,53.34,1610.49,2088.23,0.00,0.000000,0.000000,11,0,0.000031,0.000045,42923371,23229935,0,0,55023,0,1,1 +1773623531.438061,1.00,4,3992.50,53.54,1601.77,2096.29,0.00,32649.671667,33158.236656,2274472,2553281,0.000008,0.000038,42923372,23229939,0,0,55026,0,1,1 +1773623536.442186,0.80,4,3992.50,53.57,1600.83,2097.22,0.00,3515537019207.157227,3515537018698.873047,205,0,0.000050,0.000082,42923376,23229945,0,0,55028,0,1,1 +1773623541.437641,0.65,4,3992.50,53.57,1600.83,2097.22,0.00,32686.240297,33196.368953,2275978,2553728,0.000000,0.000030,42923376,23229948,0,0,55031,0,1,1 +1773623546.437651,0.65,4,3992.50,53.57,1600.83,2097.22,0.00,0.000000,0.007031,2275978,2553733,0.000126,0.000175,42923386,23229960,0,0,55033,0,1,1 +1773623551.442411,0.65,4,3992.50,53.56,1601.08,2096.97,0.00,3515090363783.746582,3515090363274.686035,75,0,0.000000,0.000030,42923386,23229963,0,0,55036,0,1,1 +1773623556.437649,1.00,4,3992.50,53.75,1593.48,2104.57,0.00,1.605729,10.685372,253,418,0.000000,0.000020,42923386,23229965,0,0,55038,0,1,1 +1773623561.441763,0.60,4,3992.50,53.47,1604.65,2093.40,0.00,32628.207888,33128.310524,2275978,2553753,0.000000,0.000512,42923386,23229971,0,0,55041,0,1,1 +1773623566.440675,14.31,4,3992.50,59.73,1359.55,2338.44,0.00,3519202805544.954590,3519202805033.136230,258,2,17.556857,0.013306,42925499,23230821,0,0,55043,0,1,1 +1773623571.439984,34.11,4,3992.50,59.64,1362.97,2335.04,0.00,3518923394597.776855,3518923394599.952637,11,0,123.273678,0.040074,42938352,23233871,0,0,55046,0,1,1 +1773623576.439785,28.97,4,3992.50,59.91,1352.39,2345.59,0.00,0.000000,0.000000,11,0,121.782667,0.042903,42951008,23237139,0,0,55048,0,1,1 +1773623581.437497,29.07,4,3992.50,59.71,1360.18,2337.82,0.00,0.180356,0.000000,205,0,121.441409,0.059454,42963827,23241675,0,0,55051,0,1,1 +1773623586.437540,28.71,4,3992.50,59.94,1352.16,2346.77,0.00,3518406960434.699219,0.000000,11,0,120.177811,0.052257,42976393,23245704,0,0,55053,0,1,1 +1773623591.437543,28.36,4,3992.50,59.60,1365.66,2333.32,0.00,32647.013381,33155.762234,2274483,2553585,119.980562,0.055451,42988953,23249965,0,0,55056,0,1,1 +1773623596.438211,28.23,4,3992.50,59.86,1355.43,2343.48,0.00,3517966966178.836914,3517966965669.975586,205,0,118.559968,0.056188,43001326,23254334,0,0,55058,0,1,1 +1773623601.437555,28.38,4,3992.50,60.08,1346.91,2352.09,0.00,0.000000,0.000000,205,0,120.191108,0.049202,43013852,23258183,0,0,55061,0,1,1 +1773623606.442116,26.87,4,3992.50,59.61,1365.00,2334.05,0.00,1.476095,10.665464,253,418,119.878831,0.081034,43026506,23264500,0,0,55063,0,1,1 +1773623611.437647,2.11,4,3992.50,54.61,1561.00,2138.04,0.00,3521585100274.583984,3521585100265.558594,11,0,42.707561,0.034391,43031022,23267124,0,0,55066,0,1,1 +1773623616.441660,1.15,4,3992.50,54.09,1580.07,2117.60,0.00,0.000000,0.000000,11,0,0.001527,0.000692,43031051,23267145,0,0,55068,0,1,1 +1773623621.437870,0.55,4,3992.50,53.71,1594.92,2102.75,0.00,32671.934945,33181.312472,2274494,2553731,0.000000,0.000030,43031051,23267148,0,0,55071,0,1,1 +1773623626.438594,0.75,4,3992.50,53.51,1602.55,2095.12,0.00,3517928012443.078125,3517928011934.160645,11,0,0.000000,0.000664,43031051,23267154,0,0,55073,0,1,1 +1773623631.438386,0.65,4,3992.50,53.51,1602.55,2095.12,0.00,32648.525413,33157.545001,2274494,2553738,0.000000,0.000030,43031051,23267157,0,0,55076,0,1,1 +1773623636.442398,0.75,4,3992.50,53.32,1609.95,2087.73,0.00,0.000000,0.001561,2274494,2553740,0.000000,0.000020,43031051,23267159,0,0,55078,0,1,1 +1773623641.442107,0.60,4,3992.50,53.32,1609.95,2087.72,0.00,3518642284228.334961,3518642283719.305176,11,0,0.000000,0.000030,43031051,23267162,0,0,55081,0,1,1 +1773623646.442358,0.90,4,3992.50,53.55,1603.71,2096.50,0.00,0.180264,0.000000,205,0,0.000000,0.000020,43031051,23267164,0,0,55083,0,1,1 +1773623651.441737,0.75,4,3992.50,53.55,1603.42,2096.73,0.00,32651.044644,33160.428820,2274494,2553764,0.000000,0.000030,43031051,23267167,0,0,55086,0,1,1 +1773623656.437554,0.55,4,3992.50,53.55,1603.42,2096.73,0.00,3521383481174.517090,3521383480662.772949,258,2,0.000076,0.000113,43031057,23267175,0,0,55088,0,1,1 +1773623661.441584,0.70,4,3992.50,53.56,1603.20,2096.95,0.00,3515603248056.275879,3515603248058.269531,205,0,0.000066,0.000108,43031063,23267184,0,0,55091,0,1,1 +1773623666.437633,1.05,4,3992.50,53.56,1603.20,2096.95,0.00,1.478610,10.683638,253,418,0.000000,0.000020,43031063,23267186,0,0,55093,0,1,1 +1773623671.442206,0.55,4,3992.50,53.57,1602.96,2097.19,0.00,0.517203,3515221771541.060547,258,2,0.000000,0.000030,43031063,23267189,0,0,55096,0,1,1 +1773623676.437548,14.02,4,3992.50,60.37,1334.09,2363.61,0.00,32675.439806,33187.327540,2274499,2553841,8.626390,0.012052,43032225,23267929,0,0,55098,0,1,1 +1773623681.442232,35.35,4,3992.50,59.59,1364.67,2333.02,0.00,3515144317693.546875,3515144317184.733887,75,0,122.054905,0.052312,43044659,23271947,0,0,55101,0,1,1 +1773623686.441788,29.28,4,3992.50,59.70,1360.37,2337.29,0.00,1.604342,10.676144,253,418,122.178676,0.030854,43057051,23274310,0,0,55103,0,1,1 +1773623691.441691,28.69,4,3992.50,59.52,1367.51,2330.14,0.00,3518505579074.732910,3518505579065.535156,205,0,120.168248,0.029765,43069395,23276591,0,0,55106,0,1,1 +1773623696.441580,28.49,4,3992.50,59.58,1364.78,2332.85,0.00,3518515482482.199707,0.000000,75,0,120.166985,0.032468,43081666,23279130,0,0,55108,0,1,1 +1773623701.441864,29.18,4,3992.50,59.52,1367.19,2330.47,0.00,0.000000,0.000000,75,0,120.155805,0.043272,43093793,23282513,0,0,55111,0,1,1 +1773623706.438194,28.98,4,3992.50,59.85,1355.39,2343.36,0.00,32680.837096,33191.733628,2276002,2554519,120.251494,0.047445,43105881,23286211,0,0,55113,0,1,1 +1773623711.438675,28.89,4,3992.50,59.63,1363.58,2334.77,0.00,3518098923257.028809,3518098923256.098633,2274499,2554126,118.751944,0.045794,43117923,23289770,0,0,55116,0,1,1 +1773623716.439556,28.74,4,3992.50,59.74,1359.18,2339.11,0.00,3517817402944.648438,3517817402435.146484,75,0,119.540096,0.050573,43129947,23293751,0,0,55118,0,1,1 +1773623721.442059,2.51,4,3992.50,52.92,1626.60,2071.75,0.00,0.126694,0.000000,205,0,53.449779,0.016413,43135458,23294952,0,0,55121,0,1,1 +1773623726.441790,0.65,4,3992.50,52.96,1624.88,2073.48,0.00,0.000000,0.000000,205,0,0.000308,0.000575,43135465,23294965,0,0,55123,0,1,1 +1773623731.442288,0.75,4,3992.50,52.96,1624.88,2073.48,0.00,1.477294,10.674132,253,418,0.000205,0.000562,43135472,23294979,0,0,55126,0,1,1 +1773623736.438158,1.46,4,3992.50,52.97,1621.61,2073.91,0.00,0.000000,0.000000,253,418,0.000000,0.000020,43135472,23294981,0,0,55128,0,1,1 +1773623741.437954,0.55,4,3992.50,52.99,1620.88,2074.64,0.00,3518580762754.545898,3518580762745.347656,205,0,0.001139,0.001232,43135482,23294998,0,0,55131,0,1,1 +1773623746.442155,0.75,4,3992.50,53.01,1620.14,2075.38,0.00,32619.639077,33129.241996,2274508,2554271,0.000000,0.000020,43135482,23295000,0,0,55133,0,1,1 +1773623751.441743,0.60,4,3992.50,53.01,1619.91,2075.61,0.00,3518726892725.924316,3518726892216.031738,11,0,0.000000,0.000030,43135482,23295003,0,0,55136,0,1,1 +1773623756.441948,0.60,4,3992.50,53.01,1619.92,2075.60,0.00,32655.609995,33166.510117,2276011,2554708,0.000000,0.000020,43135482,23295005,0,0,55138,0,1,1 +1773623761.441831,0.85,4,3992.50,53.01,1619.92,2075.60,0.00,3518519432175.192383,3518519431673.277344,253,418,0.000000,0.000674,43135482,23295012,0,0,55141,0,1,1 +1773623766.441658,1.35,4,3992.50,53.01,1619.93,2075.59,0.00,32646.701773,33147.706401,2274508,2554312,0.000126,0.000175,43135492,23295024,0,0,55143,0,1,1 +1773623771.441249,1.05,4,3992.50,53.06,1617.93,2077.54,0.00,3518724523725.702148,3518724523215.476074,205,0,0.000039,0.000063,43135495,23295030,0,0,55146,0,1,1 +1773623776.442392,0.70,4,3992.50,53.09,1616.71,2078.77,0.00,3517633346647.163574,0.000000,11,0,0.000031,0.000045,43135497,23295034,0,0,55148,0,1,1 +1773623781.441820,6.52,4,3992.50,59.70,1357.79,2337.54,0.00,0.000000,0.000000,11,0,2.210220,0.008103,43136022,23295407,0,0,55151,0,1,1 +1773623786.441537,39.31,4,3992.50,59.68,1358.93,2336.45,0.00,32649.077194,33159.269930,2274514,2554466,119.370901,0.037674,43148098,23298285,0,0,55153,0,1,1 +1773623791.442871,28.55,4,3992.50,59.68,1358.82,2336.60,0.00,9.723578,10.699197,2276017,2554905,121.740413,0.034386,43160672,23300776,0,0,55156,0,1,1 +1773623796.437882,28.64,4,3992.50,59.45,1367.86,2327.46,0.00,3521951279894.350098,3521951279382.645996,75,0,120.886582,0.029505,43172966,23303032,0,0,55158,0,1,1 +1773623801.441673,28.74,4,3992.50,59.65,1359.45,2335.43,0.00,0.000000,0.000000,75,0,120.273445,0.033423,43185210,23305641,0,0,55161,0,1,1 +1773623806.440865,28.42,4,3992.50,59.43,1367.92,2326.95,0.00,3519005611337.909668,0.000000,11,0,118.781829,0.029430,43197340,23307941,0,0,55163,0,1,1 +1773623811.442093,29.36,4,3992.50,59.41,1368.95,2325.86,0.00,2.174856,0.000195,258,2,120.135898,0.046752,43209590,23311579,0,0,55166,0,1,1 +1773623816.441633,28.38,4,3992.50,59.60,1361.24,2333.61,0.00,3518760707554.178223,3518760707556.353516,11,0,120.177287,0.028657,43221906,23313761,0,0,55168,0,1,1 +1773623821.441573,29.63,4,3992.50,59.56,1363.04,2331.79,0.00,0.000000,0.000000,11,0,119.569688,0.025065,43234284,23315670,0,0,55171,0,1,1 +1773623826.442483,4.51,4,3992.50,55.71,1513.93,2180.99,0.00,0.000000,0.000000,11,0,62.278186,0.020733,43240770,23317204,0,0,55173,0,1,1 +1773623831.439358,1.30,4,3992.50,54.51,1562.50,2134.02,0.00,1.658752,10.681873,253,418,0.002895,0.001158,43240823,23317240,0,0,55176,0,1,1 +1773623836.441019,0.75,4,3992.50,53.83,1588.91,2107.61,0.00,3517268729299.043945,3517268729289.976562,75,0,0.000050,0.000082,43240827,23317246,0,0,55178,0,1,1 +1773623841.439368,0.65,4,3992.50,53.52,1600.90,2095.61,0.00,32667.781678,33179.549286,2276028,2555201,0.000000,0.000030,43240827,23317249,0,0,55181,0,1,1 +1773623846.441730,0.65,4,3992.50,53.52,1600.90,2095.61,0.00,3516775706493.419922,3516775705979.942383,258,2,0.000000,0.000020,43240827,23317251,0,0,55183,0,1,1 +1773623851.441720,0.55,4,3992.50,53.33,1608.53,2087.98,0.00,3518443862962.058105,3518443862964.233398,11,0,0.000000,0.000030,43240827,23317254,0,0,55186,0,1,1 +1773623856.440910,0.90,4,3992.50,53.47,1603.89,2093.57,0.00,1.657984,10.676925,253,418,0.000000,0.000020,43240827,23317256,0,0,55188,0,1,1 +1773623861.438573,0.70,4,3992.50,53.48,1603.71,2093.76,0.00,3520083124420.742676,3520083124411.721191,11,0,0.000000,0.000030,43240827,23317259,0,0,55191,0,1,1 +1773623866.441561,0.65,4,3992.50,53.49,1603.23,2094.24,0.00,32627.821555,33138.404473,2274525,2554866,0.000000,0.000020,43240827,23317261,0,0,55193,0,1,1 +1773623871.437566,0.65,4,3992.50,53.49,1603.23,2094.23,0.00,3521250940254.216797,3521250939742.919922,11,0,0.000025,0.000061,43240829,23317266,0,0,55196,0,1,1 +1773623876.437603,0.65,4,3992.50,53.49,1603.23,2094.23,0.00,1.657702,10.675115,253,418,0.000117,0.000160,43240839,23317278,0,0,55198,0,1,1 +1773623881.441597,0.65,4,3992.50,53.49,1603.23,2094.23,0.00,32619.608626,33121.087246,2274525,2554875,0.000000,0.000030,43240839,23317281,0,0,55201,0,1,1 +1773623886.437580,0.90,4,3992.50,53.49,1600.23,2094.19,0.00,9.733994,10.724634,2276028,2555311,0.000000,0.000020,43240839,23317283,0,0,55203,0,1,1 +1773623891.441862,14.95,4,3992.50,59.43,1367.41,2327.00,0.00,3515425822390.890137,3515425821879.388184,75,0,10.411231,0.013185,43242204,23318118,0,0,55206,0,1,1 +1773623896.441782,33.65,4,3992.50,59.36,1370.45,2323.96,0.00,0.126760,0.000000,205,0,118.169942,0.039204,43254415,23321082,0,0,55208,0,1,1 +1773623901.441783,28.68,4,3992.50,59.56,1362.56,2331.87,0.00,3518437112477.896484,0.000000,75,0,120.167147,0.032649,43266739,23323561,0,0,55211,0,1,1 +1773623906.438412,28.34,4,3992.50,59.55,1362.68,2331.70,0.00,3520810444258.717285,0.000000,11,0,118.250198,0.034889,43279023,23326227,0,0,55213,0,1,1 +1773623911.441905,28.31,4,3992.50,59.96,1346.91,2347.46,0.00,2.173872,0.000195,258,2,120.081830,0.028520,43291320,23328444,0,0,55216,0,1,1 +1773623916.438442,28.38,4,3992.50,59.70,1356.84,2337.53,0.00,0.000000,0.000000,258,2,118.245001,0.030506,43303437,23330808,0,0,55218,0,1,1 +1773623921.438267,28.44,4,3992.50,59.63,1359.53,2334.78,0.00,3518560883481.283691,3518560883483.405762,75,0,120.168405,0.047288,43315631,23334481,0,0,55221,0,1,1 +1773623926.438869,28.33,4,3992.50,59.72,1356.19,2338.11,0.00,0.000000,0.000000,75,0,118.750984,0.020951,43327882,23336077,0,0,55223,0,1,1 +1773623931.437745,28.65,4,3992.50,59.45,1366.87,2327.43,0.00,1.604560,10.677595,253,418,119.593208,0.043611,43340205,23339455,0,0,55226,0,1,1 +1773623936.441641,4.46,4,3992.50,53.40,1603.45,2090.91,0.00,3515697673189.995117,3515697673180.931152,75,0,61.639626,0.027183,43346588,23341518,0,0,55228,0,1,1 +1773623941.441555,0.75,4,3992.50,53.45,1601.50,2092.86,0.00,3518497734081.168457,0.000000,11,0,0.001704,0.000848,43346620,23341542,0,0,55231,0,1,1 +1773623946.442465,1.05,4,3992.50,53.67,1596.77,2101.20,0.00,32641.540259,33152.807677,2274548,2555282,0.000000,0.000020,43346620,23341544,0,0,55233,0,1,1 +1773623951.442126,0.65,4,3992.50,53.67,1596.89,2101.20,0.00,3518675807199.263184,3518675806687.687988,205,0,0.000000,0.000030,43346620,23341547,0,0,55236,0,1,1 +1773623956.442446,0.70,4,3992.50,53.67,1596.89,2101.20,0.00,0.000000,0.000000,205,0,0.000000,0.000503,43346620,23341552,0,0,55238,0,1,1 +1773623961.441861,0.60,4,3992.50,53.67,1596.64,2101.44,0.00,1.477614,10.676444,253,418,0.000000,0.000191,43346620,23341556,0,0,55241,0,1,1 +1773623966.437634,0.85,4,3992.50,53.63,1598.49,2099.59,0.00,3521414201178.692871,3521414201169.668457,11,0,0.000000,0.000020,43346620,23341558,0,0,55243,0,1,1 +1773623971.442025,0.65,4,3992.50,53.63,1598.49,2099.59,0.00,0.000000,0.000000,11,0,0.000000,0.000030,43346620,23341561,0,0,55246,0,1,1 +1773623976.441955,0.90,4,3992.50,53.64,1600.61,2100.03,0.00,32657.659703,33170.150710,2276051,2555759,0.000000,0.000020,43346620,23341563,0,0,55248,0,1,1 +1773623981.441949,0.55,4,3992.50,53.64,1597.96,2100.03,0.00,3518441205544.862793,3518441205032.378418,11,0,0.000076,0.000123,43346626,23341572,0,0,55251,0,1,1 +1773623986.439564,0.60,4,3992.50,53.64,1597.96,2100.03,0.00,32672.793049,33185.537174,2276051,2555776,0.000066,0.000098,43346632,23341580,0,0,55253,0,1,1 +1773623991.441894,0.65,4,3992.50,53.60,1599.30,2098.68,0.00,0.000000,0.003904,2276051,2555779,0.000000,0.000030,43346632,23341583,0,0,55256,0,1,1 +1773623996.441427,0.55,4,3992.50,53.64,1597.83,2100.15,0.00,3518765428052.553223,3518765428051.606445,2274548,2555362,0.000000,0.000020,43346632,23341585,0,0,55258,0,1,1 +1773624001.442142,10.02,4,3992.50,59.77,1357.89,2340.15,0.00,9.776337,10.813201,2276065,2555950,2.009142,0.007002,43347125,23341925,0,0,55261,0,1,1 +1773624006.440946,36.01,4,3992.50,59.95,1350.38,2347.07,0.00,0.000000,0.100219,2276065,2555996,116.188603,0.050803,43358926,23345818,0,0,55263,0,1,1 +1773624011.441552,28.20,4,3992.50,59.65,1358.42,2335.46,0.00,0.000000,0.003808,2276065,2556007,118.148808,0.049314,43370953,23349622,0,0,55266,0,1,1 +1773624016.441541,28.52,4,3992.50,59.75,1354.45,2339.44,0.00,3518444612106.786133,3518444611594.087402,11,0,119.365288,0.051533,43383069,23353581,0,0,55268,0,1,1 +1773624021.438237,28.61,4,3992.50,59.71,1356.00,2337.90,0.00,32669.121357,33181.263625,2274562,2555645,119.040048,0.047175,43395060,23357225,0,0,55271,0,1,1 +1773624026.441683,28.81,4,3992.50,59.55,1362.08,2331.67,0.00,0.000000,0.001952,2274562,2555654,119.280219,0.049690,43407094,23361072,0,0,55273,0,1,1 +1773624031.441779,28.46,4,3992.50,59.87,1349.61,2344.15,0.00,3518369468030.005859,3518369467518.156250,75,0,118.959051,0.049153,43419066,23364897,0,0,55276,0,1,1 +1773624036.442004,29.66,4,3992.50,59.92,1351.11,2345.92,0.00,1.604127,10.674716,253,418,119.959243,0.038560,43431255,23367866,0,0,55278,0,1,1 +1773624041.441435,28.43,4,3992.50,59.89,1351.89,2344.98,0.00,0.000000,0.000000,253,418,118.374195,0.046831,43443177,23371480,0,0,55281,0,1,1 +1773624046.442474,7.72,4,3992.50,53.74,1593.22,2103.95,0.00,32648.889782,33152.727641,2276074,2556153,74.086940,0.030350,43450706,23373831,0,0,55283,0,1,1 +1773624051.442409,1.10,4,3992.50,53.72,1593.82,2103.34,0.00,3518483146615.570312,3518483146102.603516,11,0,0.002227,0.001053,43450748,23373861,0,0,55286,0,1,1 +1773624056.442019,0.70,4,3992.50,53.72,1593.82,2103.34,0.00,32659.958436,33172.921145,2276082,2556208,0.000000,0.000020,43450748,23373863,0,0,55288,0,1,1 +1773624061.437643,0.65,4,3992.50,53.74,1593.09,2104.08,0.00,3521518665639.477539,3521518665126.105469,11,0,0.000000,0.000030,43450748,23373866,0,0,55291,0,1,1 +1773624066.437648,1.00,4,3992.50,53.77,1593.07,2105.39,0.00,0.000000,0.000000,11,0,0.000000,0.000020,43450748,23373868,0,0,55293,0,1,1 +1773624071.437637,0.70,4,3992.50,53.78,1592.88,2105.58,0.00,1.657718,10.675217,253,418,0.000031,0.000055,43450750,23373873,0,0,55296,0,1,1 +1773624076.437571,0.60,4,3992.50,53.78,1592.88,2105.58,0.00,0.517683,3518483555041.608398,258,2,0.000039,0.000053,43450753,23373878,0,0,55298,0,1,1 +1773624081.437746,0.65,4,3992.50,53.78,1592.89,2105.57,0.00,32644.364114,33158.707243,2274579,2555870,0.001229,0.001254,43450762,23373895,0,0,55301,0,1,1 +1773624086.441878,0.70,4,3992.50,53.78,1592.89,2105.57,0.00,3515532482287.264160,3515532481775.500977,11,0,0.000031,0.000528,43450764,23373902,0,0,55303,0,1,1 +1773624091.441814,0.90,4,3992.50,53.78,1592.89,2105.57,0.00,0.000000,0.000000,11,0,0.002843,0.002121,43450811,23373934,0,0,55306,0,1,1 +1773624096.441951,0.90,4,3992.50,53.78,1589.64,2105.54,0.00,0.000000,0.000000,11,0,0.000076,0.000113,43450817,23373942,0,0,55308,0,1,1 +1773624101.437639,0.65,4,3992.50,53.78,1589.67,2105.54,0.00,0.000000,0.000000,11,0,0.000000,0.000030,43450817,23373945,0,0,55311,0,1,1 +1773624106.441635,0.65,4,3992.50,53.78,1589.67,2105.54,0.00,0.180129,0.000000,205,0,0.000000,0.000020,43450817,23373947,0,0,55313,0,1,1 +1773624111.441667,0.95,4,3992.50,53.74,1590.97,2104.23,0.00,3518414738879.131348,0.000000,11,0,0.001396,0.000745,43450841,23373967,0,0,55316,0,1,1 +1773624116.441583,37.73,4,3992.50,60.28,1335.15,2360.00,0.00,0.180276,0.000000,205,0,83.722110,0.030755,43459675,23376198,0,0,55318,0,1,1 +1773624121.440808,28.72,4,3992.50,59.96,1347.71,2347.38,0.00,1.477671,10.676851,253,418,120.202161,0.063100,43472223,23381019,0,0,55321,0,1,1 +1773624126.440555,28.08,4,3992.50,60.26,1348.50,2359.44,0.00,3518615311336.479004,3518615311327.461426,11,0,118.600696,0.106072,43484814,23389268,0,0,55323,0,1,1 +1773624131.441533,28.16,4,3992.50,60.09,1355.58,2352.47,0.00,0.053505,0.000000,75,0,119.776173,0.108971,43497654,23397757,0,0,55326,0,1,1 +1773624136.441588,27.82,4,3992.50,60.09,1355.52,2352.54,0.00,1.604182,10.675078,253,418,118.996587,0.112368,43510434,23406573,0,0,55328,0,1,1 +1773624141.442016,28.15,4,3992.50,59.93,1361.45,2346.55,0.00,0.000000,0.000000,253,418,119.379998,0.089829,43523086,23413578,0,0,55331,0,1,1 +1773624146.438434,28.54,4,3992.50,59.98,1359.77,2348.39,0.00,3520959952040.459473,3520959952031.436035,11,0,119.668108,0.068044,43535532,23418852,0,0,55333,0,1,1 +1773624151.437674,28.36,4,3992.50,59.88,1363.54,2344.51,0.00,0.053524,0.000000,75,0,118.802384,0.076197,43547903,23424775,0,0,55336,0,1,1 +1773624156.438022,14.44,4,3992.50,56.49,1496.54,2211.54,0.00,32655.155827,33168.827138,2276096,2556625,106.556833,0.066103,43559064,23429879,0,0,55338,0,1,1 +1773624161.441741,1.20,4,3992.50,55.29,1538.78,2164.68,0.00,0.058550,0.058648,2276103,2556672,0.003128,0.001577,43559123,23429921,0,0,55341,0,1,1 +1773624166.439729,0.65,4,3992.50,54.40,1573.70,2129.77,0.00,3519853741363.873047,3519853740850.012695,11,0,0.000000,0.000020,43559123,23429923,0,0,55343,0,1,1 +1773624171.442159,0.55,4,3992.50,54.11,1584.91,2118.55,0.00,32641.674028,33155.124184,2276103,2556726,0.000000,0.000030,43559123,23429926,0,0,55346,0,1,1 +1773624176.439988,0.70,4,3992.50,53.90,1593.08,2110.38,0.00,3519966000946.926270,3519966000432.950195,75,0,0.000000,0.000020,43559123,23429928,0,0,55348,0,1,1 +1773624181.437563,0.75,4,3992.50,53.91,1592.84,2110.62,0.00,3520144079577.402832,0.000000,11,0,0.000000,0.000030,43559123,23429931,0,0,55351,0,1,1 +1773624186.441952,0.95,4,3992.50,53.93,1596.22,2111.54,0.00,0.180115,0.000000,205,0,0.000000,0.000020,43559123,23429933,0,0,55353,0,1,1 +1773624191.440091,0.60,4,3992.50,53.93,1596.11,2111.54,0.00,0.000000,0.000000,205,0,0.000000,0.000030,43559123,23429936,0,0,55356,0,1,1 +1773624196.441745,0.65,4,3992.50,53.93,1596.11,2111.54,0.00,32646.559608,33160.453977,2276103,2556790,0.000000,0.000020,43559123,23429938,0,0,55358,0,1,1 +1773624201.442011,0.65,4,3992.50,53.93,1596.11,2111.53,0.00,3518250045711.192383,3518250045710.246094,2274600,2556373,0.000000,0.000030,43559123,23429941,0,0,55361,0,1,1 +1773624206.438698,0.65,4,3992.50,53.93,1596.11,2111.52,0.00,3520770134998.114258,3520770134482.659668,258,2,0.000126,0.000175,43559133,23429953,0,0,55363,0,1,1 +1773624211.441543,0.65,4,3992.50,53.93,1596.12,2111.52,0.00,32636.794277,33152.571815,2276103,2556800,0.000016,0.000046,43559135,23429958,0,0,55366,0,1,1 +1773624216.437907,0.95,4,3992.50,53.87,1590.24,2109.12,0.00,3520997335642.032227,3520997335136.786621,253,418,0.000000,0.000020,43559135,23429960,0,0,55368,0,1,1 +1773624221.438171,0.75,4,3992.50,53.65,1598.89,2100.35,0.00,32644.429272,33148.389058,2274600,2556413,0.000000,0.000674,43559135,23429967,0,0,55371,0,1,1 +1773624226.437590,14.54,4,3992.50,59.59,1366.08,2333.06,0.00,3518846375844.917480,3518846375329.678223,258,2,7.817877,0.011325,43560263,23430700,0,0,55373,0,1,1 +1773624231.441869,34.32,4,3992.50,59.56,1367.04,2332.07,0.00,3515428779458.834473,3515428779460.827637,205,0,119.665455,0.026832,43572568,23432690,0,0,55376,0,1,1 +1773624236.439717,28.07,4,3992.50,59.78,1358.72,2340.39,0.00,32671.426115,33185.913682,2276108,2556970,118.629579,0.057022,43584951,23437062,0,0,55378,0,1,1 +1773624241.441553,28.36,4,3992.50,59.60,1365.84,2333.29,0.00,3517145682441.351562,3517145681927.454590,11,0,119.746030,0.085294,43597602,23443664,0,0,55381,0,1,1 +1773624246.440826,27.15,4,3992.50,59.60,1365.81,2333.30,0.00,2.175707,0.000195,258,2,118.807828,0.095849,43610211,23451169,0,0,55383,0,1,1 +1773624251.438030,30.50,4,3992.50,59.76,1361.68,2339.64,0.00,3520406103720.614746,10.680974,253,418,119.665671,0.109983,43623075,23459774,0,0,55386,0,1,1 +1773624256.440687,28.60,4,3992.50,59.92,1355.21,2346.10,0.00,3516568868501.355469,3516568868492.342773,11,0,119.330974,0.100053,43635930,23467556,0,0,55388,0,1,1 +1773624261.441396,28.86,4,3992.50,59.56,1369.62,2331.76,0.00,0.000000,0.000000,11,0,119.368427,0.074168,43648604,23473305,0,0,55391,0,1,1 +1773624266.438936,28.14,4,3992.50,59.70,1363.80,2337.57,0.00,0.180362,0.000000,205,0,119.438421,0.056930,43661219,23477746,0,0,55393,0,1,1 +1773624271.442396,4.82,4,3992.50,53.63,1601.74,2099.68,0.00,3516004623814.438477,0.000000,75,0,63.054601,0.038100,43667857,23480688,0,0,55396,0,1,1 +1773624276.438072,1.26,4,3992.50,53.75,1592.10,2104.40,0.00,32685.903413,33200.724542,2276125,2557146,0.003089,0.001421,43667913,23480726,0,0,55398,0,1,1 +1773624281.440480,0.70,4,3992.50,53.35,1607.82,2088.65,0.00,3516743234160.045898,3516743233643.796875,258,2,0.000000,0.000030,43667913,23480729,0,0,55401,0,1,1 +1773624286.442413,0.70,4,3992.50,53.35,1607.60,2088.87,0.00,3517077619923.115234,3517077619925.236328,75,0,0.000000,0.000664,43667913,23480735,0,0,55403,0,1,1 +1773624291.437554,0.65,4,3992.50,53.35,1607.60,2088.87,0.00,0.126881,0.000000,205,0,0.000000,0.000030,43667913,23480738,0,0,55406,0,1,1 +1773624296.442031,0.60,4,3992.50,53.35,1607.61,2088.87,0.00,0.000000,0.000000,205,0,0.000000,0.000020,43667913,23480740,0,0,55408,0,1,1 +1773624301.437938,0.60,4,3992.50,53.16,1615.23,2081.24,0.00,1.996752,0.000195,258,2,0.000000,0.000030,43667913,23480743,0,0,55411,0,1,1 +1773624306.439242,1.05,4,3992.50,53.36,1606.16,2089.30,0.00,0.000000,0.000000,258,2,0.000000,0.000020,43667913,23480745,0,0,55413,0,1,1 +1773624311.441553,0.70,4,3992.50,53.38,1605.42,2090.02,0.00,32630.713553,33146.315130,2274622,2556882,0.000000,0.000030,43667913,23480748,0,0,55416,0,1,1 +1773624316.442029,0.60,4,3992.50,53.39,1605.18,2090.26,0.00,3518101974293.656738,3518101973779.987305,75,0,0.000025,0.000051,43667915,23480752,0,0,55418,0,1,1 +1773624321.441564,0.65,4,3992.50,53.39,1605.18,2090.25,0.00,32650.954322,33164.725786,2274622,2556887,0.000117,0.000170,43667925,23480765,0,0,55421,0,1,1 +1773624326.438534,0.70,4,3992.50,53.39,1605.18,2090.25,0.00,3520570110115.875977,3520570109601.894043,11,0,0.001243,0.001245,43667935,23480781,0,0,55423,0,1,1 +1773624331.440596,0.55,4,3992.50,53.39,1605.18,2090.25,0.00,2.174494,0.000195,258,2,0.000205,0.000562,43667942,23480795,0,0,55426,0,1,1 +1773624336.437820,26.55,4,3992.50,60.05,1343.38,2350.96,0.00,3520391959322.317871,3520391959324.494629,11,0,44.091828,0.022284,43672731,23482341,0,0,55428,0,1,1 +1773624341.442396,31.81,4,3992.50,59.41,1368.39,2326.01,0.00,2.173402,0.000195,258,2,119.856827,0.033832,43684986,23484885,0,0,55431,0,1,1 +1773624346.442114,28.62,4,3992.50,59.68,1357.91,2336.43,0.00,0.000000,0.000000,258,2,118.372894,0.022451,43697199,23486525,0,0,55433,0,1,1 +1773624351.440570,28.44,4,3992.50,59.45,1366.73,2327.64,0.00,3519523696406.333984,10.678296,253,418,120.001862,0.030407,43709403,23488807,0,0,55436,0,1,1 +1773624356.437552,29.07,4,3992.50,59.61,1360.46,2333.91,0.00,3520562289282.427734,3520562289273.351562,75,0,118.437963,0.033473,43721581,23491423,0,0,55438,0,1,1 +1773624361.437668,28.82,4,3992.50,59.43,1367.62,2326.70,0.00,32656.907613,33171.736714,2276131,2557534,119.967529,0.038912,43733902,23494414,0,0,55441,0,1,1 +1773624366.442423,27.53,4,3992.50,59.44,1367.17,2327.18,0.00,3515093711885.211914,3515093711370.913574,11,0,118.848937,0.022268,43745922,23496109,0,0,55443,0,1,1 +1773624371.439399,29.81,4,3992.50,59.49,1365.12,2329.19,0.00,0.053548,0.000000,75,0,119.436351,0.027806,43758021,23498229,0,0,55446,0,1,1 +1773624376.440362,23.54,4,3992.50,59.44,1367.33,2327.05,0.00,1.603890,10.673140,253,418,119.340884,0.033219,43770124,23500807,0,0,55448,0,1,1 +1773624381.437601,1.31,4,3992.50,53.96,1581.91,2112.47,0.00,0.000000,0.000000,253,418,27.057790,0.012478,43772995,23501673,0,0,55451,0,1,1 +1773624386.442506,0.65,4,3992.50,53.54,1598.02,2096.36,0.00,3514989045401.875977,3514989045392.867676,11,0,0.000031,0.000045,43772997,23501677,0,0,55453,0,1,1 +1773624391.437564,0.80,4,3992.50,53.35,1605.58,2088.80,0.00,0.180452,0.000000,205,0,0.003516,0.002885,43773047,23501710,0,0,55456,0,1,1 +1773624396.437566,0.95,4,3992.50,53.52,1598.77,2095.50,0.00,3518435724103.198242,0.000000,75,0,0.000000,0.000020,43773047,23501712,0,0,55458,0,1,1 +1773624401.437568,0.55,4,3992.50,53.48,1600.40,2093.89,0.00,3518435548885.254883,0.000000,11,0,0.000000,0.000030,43773047,23501715,0,0,55461,0,1,1 +1773624406.442080,0.70,4,3992.50,53.50,1599.69,2094.60,0.00,0.000000,0.000000,11,0,0.000000,0.000020,43773047,23501717,0,0,55463,0,1,1 +1773624411.440131,0.60,4,3992.50,53.30,1607.62,2086.67,0.00,2.176239,0.000195,258,2,0.000000,0.000030,43773047,23501720,0,0,55466,0,1,1 +1773624416.437560,0.60,4,3992.50,53.30,1607.62,2086.66,0.00,3520247753266.227539,3520247753268.404297,11,0,0.000000,0.000664,43773047,23501726,0,0,55468,0,1,1 +1773624421.441622,0.60,4,3992.50,53.31,1607.16,2087.13,0.00,2.173625,0.000195,258,2,0.000000,0.000030,43773047,23501729,0,0,55471,0,1,1 +1773624426.441917,0.95,4,3992.50,53.31,1610.11,2087.32,0.00,0.000000,0.000000,258,2,0.000107,0.000138,43773055,23501739,0,0,55473,0,1,1 +1773624431.442171,0.65,4,3992.50,53.31,1609.83,2087.32,0.00,3518258482053.968262,3518258482055.963379,205,0,0.000008,0.000038,43773056,23501743,0,0,55476,0,1,1 +1773624436.439098,0.60,4,3992.50,53.27,1611.68,2085.46,0.00,32677.751818,33193.556371,2276142,2557807,0.000101,0.000144,43773064,23501753,0,0,55478,0,1,1 +1773624441.442248,0.60,4,3992.50,53.27,1611.46,2085.68,0.00,0.000000,0.003904,2276142,2557812,0.000000,0.000030,43773064,23501756,0,0,55481,0,1,1 +1773624446.438184,22.71,4,3992.50,59.80,1355.73,2341.29,0.00,3521299770644.909668,3521299770643.982910,2274644,2557434,36.285241,0.018881,43777046,23503060,0,0,55483,0,1,1 +1773624451.440040,31.80,4,3992.50,59.82,1355.09,2342.05,0.00,9.722562,10.754307,2276147,2557951,118.322895,0.032820,43789237,23505523,0,0,55486,0,1,1 +1773624456.437782,28.41,4,3992.50,59.55,1365.62,2331.43,0.00,0.000000,0.033511,2276147,2557968,120.027726,0.034669,43801728,23508172,0,0,55488,0,1,1 +1773624461.439384,28.20,4,3992.50,59.96,1351.04,2347.38,0.00,3517309706819.647461,3517309706304.307617,75,0,118.729623,0.031319,43813927,23510572,0,0,55491,0,1,1 +1773624466.441540,28.26,4,3992.50,59.60,1365.06,2333.38,0.00,2.120961,0.000195,258,2,119.513505,0.018020,43826200,23511947,0,0,55493,0,1,1 +1773624471.441548,28.31,4,3992.50,59.82,1356.21,2342.23,0.00,32645.900180,33162.654486,2274644,2557632,119.962384,0.017899,43838394,23513343,0,0,55496,0,1,1 +1773624476.441508,28.38,4,3992.50,59.70,1361.16,2337.32,0.00,3518465544215.419434,3518465543700.781738,75,0,118.363775,0.039088,43850499,23516409,0,0,55498,0,1,1 +1773624481.438279,28.55,4,3992.50,59.93,1352.12,2346.31,0.00,3520710696549.168945,0.000000,11,0,120.242464,0.044440,43862695,23519851,0,0,55501,0,1,1 +1773624486.437564,25.21,4,3992.50,59.74,1359.39,2339.13,0.00,0.000000,0.000000,11,0,118.178692,0.040271,43874723,23522966,0,0,55503,0,1,1 +1773624491.442392,1.66,4,3992.50,53.53,1610.54,2095.73,0.00,2.173292,0.000195,258,2,35.817158,0.016448,43878409,23524173,0,0,55506,0,1,1 +1773624496.437639,0.95,4,3992.50,53.35,1617.70,2088.58,0.00,3521785036754.655762,3521785036756.779785,75,0,0.000663,0.000439,43878424,23524185,0,0,55508,0,1,1 +1773624501.437715,0.70,4,3992.50,53.26,1621.01,2085.27,0.00,1.604175,10.675032,253,418,0.000000,0.000030,43878424,23524188,0,0,55511,0,1,1 +1773624506.441529,0.60,4,3992.50,53.26,1621.04,2085.24,0.00,3515755812941.279297,3515755812932.269043,11,0,0.000000,0.000020,43878424,23524190,0,0,55513,0,1,1 +1773624511.438154,0.65,4,3992.50,53.26,1621.04,2085.24,0.00,2.176860,0.000195,258,2,0.000000,0.000030,43878424,23524193,0,0,55516,0,1,1 +1773624516.437553,1.05,4,3992.50,53.65,1598.62,2100.68,0.00,32650.019285,33167.252718,2274655,2557817,0.000000,0.000020,43878424,23524195,0,0,55518,0,1,1 +1773624521.442333,0.70,4,3992.50,53.61,1600.34,2098.98,0.00,3515076449604.347168,3515076449089.789062,75,0,0.000000,0.000030,43878424,23524198,0,0,55521,0,1,1 +1773624526.438018,0.65,4,3992.50,53.62,1600.08,2099.24,0.00,32676.414168,33191.945337,2274655,2557852,0.000000,0.000020,43878424,23524200,0,0,55523,0,1,1 +1773624531.440453,0.70,4,3992.50,53.62,1599.86,2099.46,0.00,3516724500456.036621,3516724499941.254395,11,0,0.000000,0.000030,43878424,23524203,0,0,55526,0,1,1 +1773624536.438603,0.75,4,3992.50,53.63,1599.41,2099.91,0.00,0.000000,0.000000,11,0,0.000101,0.000144,43878432,23524213,0,0,55528,0,1,1 +1773624541.437565,0.65,4,3992.50,53.43,1607.23,2092.09,0.00,0.053527,0.000000,75,0,0.000041,0.000077,43878436,23524220,0,0,55531,0,1,1 +1773624546.442070,0.95,4,3992.50,53.53,1604.50,2095.92,0.00,2.119965,0.000195,258,2,0.000000,0.000020,43878436,23524222,0,0,55533,0,1,1 +1773624551.442032,0.70,4,3992.50,53.53,1604.51,2095.92,0.00,32656.059171,33174.272495,2276158,2558306,0.000000,0.000674,43878436,23524229,0,0,55536,0,1,1 +1773624556.439393,20.51,4,3992.50,59.95,1353.21,2347.15,0.00,3520295502201.809082,3520295501685.321777,205,0,27.859021,0.021168,43881548,23525715,0,0,55538,0,1,1 +1773624561.442066,31.96,4,3992.50,59.82,1358.25,2342.11,0.00,1.476652,10.669492,253,418,118.102123,0.025783,43893689,23527622,0,0,55541,0,1,1 +1773624566.439007,28.46,4,3992.50,59.81,1358.85,2341.54,0.00,32676.334732,33183.799627,2276164,2558458,120.237063,0.018410,43905721,23528968,0,0,55543,0,1,1 +1773624571.438185,27.82,4,3992.50,59.64,1365.46,2334.88,0.00,3519015645662.623047,3519015645661.676758,2274661,2558050,118.182466,0.027686,43917513,23531050,0,0,55546,0,1,1 +1773624576.442381,27.84,4,3992.50,59.77,1360.19,2340.17,0.00,0.000000,0.033175,2274661,2558060,120.073274,0.052202,43929739,23535108,0,0,55548,0,1,1 +1773624581.438088,28.51,4,3992.50,59.80,1362.06,2341.18,0.00,3521460684773.222168,3521460684266.544922,253,418,118.279464,0.071284,43941899,23540679,0,0,55551,0,1,1 +1773624586.438612,28.38,4,3992.50,59.84,1360.22,2343.05,0.00,0.517622,3518069077420.649902,258,2,120.155821,0.029501,43954206,23542928,0,0,55553,0,1,1 +1773624591.441675,28.22,4,3992.50,60.00,1354.02,2349.30,0.00,3516282966560.820312,3516282966562.814453,205,0,119.295456,0.032103,43966417,23545378,0,0,55556,0,1,1 +1773624596.441941,27.03,4,3992.50,59.80,1361.91,2341.45,0.00,0.000000,0.000000,205,0,118.965662,0.048216,43978598,23549110,0,0,55558,0,1,1 +1773624601.442375,2.36,4,3992.50,53.87,1594.27,2109.07,0.00,32645.420494,33160.986910,2274681,2558188,44.263131,0.017503,43983194,23550361,0,0,55561,0,1,1 +1773624606.437680,0.90,4,3992.50,53.79,1597.18,2106.16,0.00,3521744646669.720703,3521744646151.627930,258,2,0.000000,0.000020,43983194,23550363,0,0,55563,0,1,1 +1773624611.441983,1.15,4,3992.50,53.66,1602.06,2100.87,0.00,3515411350904.176270,10.665819,253,418,0.000000,0.000030,43983194,23550366,0,0,55566,0,1,1 +1773624616.439921,0.85,4,3992.50,53.56,1605.96,2096.98,0.00,32669.982786,33177.708915,2276184,2558755,0.000000,0.000664,43983194,23550372,0,0,55568,0,1,1 +1773624621.442314,0.75,4,3992.50,53.59,1604.73,2098.20,0.00,3516754280882.725098,3516754280881.779297,2274681,2558337,0.000000,0.000030,43983194,23550375,0,0,55571,0,1,1 +1773624626.437563,0.70,4,3992.50,53.59,1604.73,2098.20,0.00,3521783349379.387695,3521783348863.128906,205,0,0.000308,0.000575,43983201,23550388,0,0,55573,0,1,1 +1773624631.441613,0.80,4,3992.50,53.59,1604.74,2098.20,0.00,32621.832953,33137.309534,2274681,2558377,0.001134,0.001239,43983211,23550406,0,0,55576,0,1,1 +1773624636.441938,0.60,4,3992.50,53.46,1609.93,2093.00,0.00,3518208328746.542969,3518208328239.879395,253,418,0.000000,0.000020,43983211,23550408,0,0,55578,0,1,1 +1773624641.441850,0.95,4,3992.50,53.68,1601.75,2101.49,0.00,3518499629879.776367,3518499629870.758789,11,0,0.001127,0.001232,43983220,23550425,0,0,55581,0,1,1 +1773624646.437632,0.60,4,3992.50,53.68,1601.76,2101.49,0.00,1.659115,10.684209,253,418,0.000126,0.000175,43983230,23550437,0,0,55583,0,1,1 +1773624651.441845,0.70,4,3992.50,53.68,1601.76,2101.49,0.00,0.517240,3515474878498.068848,258,2,0.000000,0.000030,43983230,23550440,0,0,55586,0,1,1 +1773624656.441999,0.55,4,3992.50,53.68,1601.51,2101.73,0.00,3518328983674.155273,3518328983676.330566,11,0,0.000000,0.000020,43983230,23550442,0,0,55588,0,1,1 +1773624661.441494,0.70,4,3992.50,53.67,1601.81,2101.44,0.00,32661.465573,33178.252765,2276184,2558847,0.000000,0.000030,43983230,23550445,0,0,55591,0,1,1 +1773624666.439146,18.21,4,3992.50,59.78,1362.48,2340.66,0.00,0.004690,0.072495,2276189,2558909,20.443992,0.016440,43985612,23551556,0,0,55593,0,1,1 +1773624671.438914,34.54,4,3992.50,59.79,1362.10,2341.02,0.00,3518600252089.369629,3518600251570.367676,258,2,124.178407,0.033654,43998318,23554114,0,0,55596,0,1,1 +1773624676.437700,29.03,4,3992.50,59.66,1367.31,2335.79,0.00,3519291688679.939941,3519291688682.062500,75,0,122.000739,0.019315,44010888,23555504,0,0,55598,0,1,1 +1773624681.441854,28.44,4,3992.50,59.99,1354.37,2348.80,0.00,0.126653,0.000000,205,0,120.266908,0.022110,44023232,23557096,0,0,55601,0,1,1 +1773624686.441599,28.08,4,3992.50,60.09,1350.44,2352.68,0.00,3518616733634.833008,0.000000,11,0,120.173364,0.019933,44035561,23558591,0,0,55603,0,1,1 +1773624691.442269,39.48,4,3992.50,59.80,1345.21,2341.36,0.00,0.000000,0.000000,11,0,120.158476,0.043441,44047934,23561873,0,0,55606,0,1,1 +1773624696.438582,29.82,4,3992.50,60.45,1315.25,2366.88,0.00,0.180406,0.000000,205,0,120.064453,0.053651,44060391,23566094,0,0,55608,0,1,1 +1773624701.438124,23.98,4,3992.50,60.77,1301.93,2379.12,0.00,32661.049777,33632.520650,2276224,2562097,96.418305,0.023141,44069473,23567926,0,0,55611,0,1,1 +1773624706.437635,15.85,4,3992.50,61.12,1292.07,2392.93,0.00,0.014845,262.816301,2276243,2563579,40.379892,0.010022,44073221,23568649,0,0,55613,0,1,1 +1773624711.438362,10.20,4,3992.50,60.83,1298.23,2381.59,0.00,3517926065895.621094,3517926064659.648438,258,2,32.242663,0.008128,44076236,23569295,0,0,55616,0,1,1 +1773624716.440638,6.46,4,3992.50,60.79,1299.73,2380.13,0.00,0.000000,0.000000,258,2,19.730082,0.005454,44078128,23569728,0,0,55618,0,1,1 +1773624721.437600,8.84,4,3992.50,60.17,1324.18,2355.69,0.00,32666.274684,34003.005619,2274753,2563697,89.440683,0.021011,44086259,23571366,0,0,55621,0,1,1 +1773624726.441825,2.25,4,3992.50,53.69,1602.18,2102.20,0.00,0.080401,1.947085,2274759,2563826,0.003791,0.001671,44086329,23571413,0,0,55623,0,1,1 +1773624731.441681,0.60,4,3992.50,53.73,1600.73,2103.66,0.00,3518538476364.716309,3518538475029.012207,75,0,0.000000,0.000030,44086329,23571416,0,0,55626,0,1,1 +1773624736.442301,0.65,4,3992.50,53.54,1608.12,2096.27,0.00,2.121612,0.000195,258,2,0.000050,0.000082,44086333,23571422,0,0,55628,0,1,1 +1773624741.437647,0.65,4,3992.50,53.54,1608.12,2096.27,0.00,32676.930953,34016.107173,2274759,2563884,0.000008,0.000038,44086334,23571426,0,0,55631,0,1,1 +1773624746.437565,0.55,4,3992.50,53.54,1608.14,2096.25,0.00,3518494367954.723633,3518494366627.965332,253,424,0.000000,0.000020,44086334,23571428,0,0,55633,0,1,1 +1773624751.437564,0.80,4,3992.50,53.36,1615.06,2089.34,0.00,3518438315782.290039,3518438315773.219238,75,0,0.000000,0.000674,44086334,23571435,0,0,55636,0,1,1 +1773624756.439162,0.90,4,3992.50,53.41,1610.92,2091.14,0.00,2.121197,0.000195,258,2,0.000000,0.000020,44086334,23571437,0,0,55638,0,1,1 +1773624761.441823,0.75,4,3992.50,53.43,1609.73,2092.09,0.00,32629.149147,33966.472571,2274759,2563960,0.000013,0.000030,44086335,23571440,0,0,55641,0,1,1 +1773624766.439616,0.55,4,3992.50,53.43,1609.73,2092.09,0.00,3519990835423.612305,3519990834084.986328,258,2,0.000000,0.000020,44086335,23571442,0,0,55643,0,1,1 +1773624771.441932,0.60,4,3992.50,53.43,1609.73,2092.09,0.00,32641.118791,33979.492499,2276262,2564397,0.000126,0.000185,44086345,23571455,0,0,55646,0,1,1 +1773624776.441404,0.65,4,3992.50,53.43,1609.73,2092.09,0.00,3518808878563.235840,3518808877226.096191,205,0,0.000008,0.000028,44086346,23571458,0,0,55648,0,1,1 +1773624781.437545,0.70,4,3992.50,53.43,1609.74,2092.09,0.00,32683.459989,34021.495379,2276262,2564401,0.000000,0.000030,44086346,23571461,0,0,55651,0,1,1 +1773624786.442273,9.07,4,3992.50,53.41,1590.33,2091.19,0.00,3515112741786.369629,296.507465,2274783,2565753,0.000000,0.000020,44086346,23571463,0,0,55653,0,1,1 +1773624791.438739,3.97,4,3992.50,53.54,1584.88,2096.21,0.00,3520926313400.623047,3520926311756.088867,75,0,0.000000,0.000030,44086346,23571466,0,0,55656,0,1,1 +1773624796.437741,6.19,4,3992.50,54.41,1549.44,2130.22,0.00,3519139254641.956055,0.000000,11,0,0.001383,0.000408,44086369,23571483,0,0,55658,0,1,1 +1773624801.437564,6.87,4,3992.50,54.35,1550.79,2127.82,0.00,0.053518,0.000000,75,0,0.000133,0.000973,44086378,23571499,0,0,55661,0,1,1 +1773624806.437551,24.65,4,3992.50,60.13,1329.20,2354.35,0.00,3518447009165.446289,0.000000,11,0,43.668327,0.023492,44091347,23573255,0,0,55663,0,1,1 +1773624811.437546,42.15,4,3992.50,60.13,1329.62,2354.39,0.00,0.000000,0.000000,11,0,121.969157,0.037634,44103874,23576237,0,0,55666,0,1,1 +1773624816.437539,28.74,4,3992.50,61.01,1296.25,2388.54,0.00,0.000000,0.000000,11,0,97.468653,0.034742,44113746,23578945,0,0,55668,0,1,1 +1773624821.439869,0.96,4,3992.50,61.08,1292.62,2391.44,0.00,1.656943,10.670224,253,441,0.000252,0.000281,44113766,23578968,0,0,55671,0,1,1 +1773624826.441530,4.20,4,3992.50,61.23,1286.60,2397.32,0.00,3517268474030.103027,3517268474021.088867,11,0,14.428700,0.004039,44115234,23579289,0,0,55673,0,1,1 +1773624831.437914,26.77,4,3992.50,61.23,1291.79,2397.48,0.00,0.180404,0.000000,205,0,109.242096,0.024946,44125019,23581226,0,0,55676,0,1,1 +1773624836.441688,23.53,4,3992.50,60.78,1309.59,2379.71,0.00,1.476327,10.667142,253,444,101.176024,0.021793,44134084,23582956,0,0,55678,0,1,1 +1773624841.441724,32.22,4,3992.50,61.00,1321.82,2388.29,0.00,32656.603700,35709.379959,2276359,2574599,134.152418,0.029744,44146044,23585240,0,0,55681,0,1,1 +1773624846.437544,30.80,4,3992.50,60.68,1334.26,2375.88,0.00,3521381228409.267578,3521381225344.889648,11,0,128.206361,0.029711,44157598,23587490,0,0,55683,0,1,1 +1773624851.437572,29.72,4,3992.50,60.64,1336.59,2374.12,0.00,0.180272,0.000000,205,0,126.088424,0.027769,44168901,23589660,0,0,55686,0,1,1 +1773624856.442091,23.38,4,3992.50,60.79,1330.62,2380.21,0.00,1.993315,0.000195,258,2,121.923298,0.027405,44179820,23591768,0,0,55688,0,1,1 +1773624861.437570,1.21,4,3992.50,55.64,1532.32,2178.47,0.00,3521621898900.476562,3521621898902.600586,75,0,27.035500,0.008043,44182317,23592303,0,0,55691,0,1,1 +1773624866.442278,0.75,4,3992.50,54.50,1577.22,2133.62,0.00,0.000000,0.000000,75,0,0.000000,0.000020,44182317,23592305,0,0,55693,0,1,1 +1773624871.437617,1.05,4,3992.50,53.99,1596.99,2113.85,0.00,32679.354716,35743.350809,2274876,2574288,0.000000,0.000030,44182317,23592308,0,0,55696,0,1,1 +1773624876.441692,1.00,4,3992.50,54.06,1597.68,2116.68,0.00,3515571947129.167969,3515571944070.574219,11,0,0.000031,0.000045,44182319,23592312,0,0,55698,0,1,1 +1773624881.441828,6.37,4,3992.50,54.72,1549.90,2142.41,0.00,1.657670,10.674905,253,452,0.000000,0.000030,44182319,23592315,0,0,55701,0,1,1 +1773624886.439006,5.67,4,3992.50,53.68,1591.85,2101.76,0.00,32675.476907,36129.099371,2276401,2577106,0.000031,0.000703,44182321,23592324,0,0,55703,0,1,1 +1773624891.441555,6.80,4,3992.50,53.74,1586.71,2103.86,0.00,3516644501985.023438,3516644498535.109375,253,455,0.000008,0.000038,44182322,23592328,0,0,55706,0,1,1 +1773624896.437562,3.51,4,3992.50,54.25,1565.57,2124.09,0.00,32683.129825,36472.970833,2276405,2578958,0.000000,0.000020,44182322,23592330,0,0,55708,0,1,1 +1773624901.439592,5.96,4,3992.50,54.24,1561.79,2123.67,0.00,3517009092573.921387,3517009088788.643555,253,456,0.000000,0.000030,44182322,23592333,0,0,55711,0,1,1 +1773624906.437615,5.02,4,3992.50,54.43,1554.46,2130.97,0.00,3519828881640.628418,3519828881631.607910,11,0,0.000126,0.000175,44182332,23592345,0,0,55713,0,1,1 +1773624911.441610,4.51,4,3992.50,54.14,1569.41,2119.53,0.00,32622.907602,36938.599511,2274906,2581620,0.000000,0.000030,44182332,23592348,0,0,55716,0,1,1 +1773624916.440038,1.46,4,3992.50,54.25,1586.65,2124.01,0.00,0.000000,63.080768,2274906,2582026,0.000000,0.000020,44182332,23592350,0,0,55718,0,1,1 +1773624921.437551,0.65,4,3992.50,53.94,1598.84,2111.83,0.00,3520188117804.027832,3520188113419.646973,11,0,0.000000,0.000030,44182332,23592353,0,0,55721,0,1,1 +1773624926.441842,16.28,4,3992.50,60.04,1359.94,2350.63,0.00,0.053470,0.000000,75,0,8.610237,0.013287,44183490,23593210,0,0,55723,0,1,1 +1773624931.437852,33.25,4,3992.50,59.61,1376.70,2333.86,0.00,2.123570,0.000195,258,2,118.259579,0.032544,44195645,23595648,0,0,55726,0,1,1 +1773624936.438403,27.90,4,3992.50,59.62,1374.14,2334.45,0.00,3518049471280.206543,3518049471282.381836,11,0,119.176085,0.090976,44208196,23602696,0,0,55728,0,1,1 +1773624941.441863,28.43,4,3992.50,59.62,1376.33,2334.25,0.00,0.000000,0.000000,11,0,119.110107,0.102511,44220855,23610715,0,0,55731,0,1,1 +1773624946.439502,28.14,4,3992.50,59.76,1370.83,2339.79,0.00,0.053541,0.000000,75,0,120.251019,0.101449,44233601,23618562,0,0,55733,0,1,1 +1773624951.440109,27.77,4,3992.50,59.88,1366.07,2344.46,0.00,3518010317328.394531,0.000000,11,0,118.182540,0.106449,44246330,23626859,0,0,55736,0,1,1 +1773624956.441552,28.09,4,3992.50,59.74,1371.53,2339.06,0.00,2.174763,0.000195,258,2,120.163393,0.104157,44259221,23634971,0,0,55738,0,1,1 +1773624961.441721,28.02,4,3992.50,59.94,1363.92,2346.75,0.00,3518318439599.789551,10.674640,253,460,118.988869,0.100332,44271909,23642797,0,0,55741,0,1,1 +1773624966.442168,28.24,4,3992.50,59.54,1379.55,2331.03,0.00,32644.392014,37017.583050,2274911,2582310,119.374426,0.070443,44284545,23648256,0,0,55743,0,1,1 +1773624971.442386,4.97,4,3992.50,53.77,1605.14,2105.14,0.00,3518284445395.481934,3518284441013.072266,11,0,63.493707,0.025795,44291208,23650175,0,0,55746,0,1,1 +1773624976.441622,5.06,4,3992.50,55.21,1526.73,2161.73,0.00,1.657968,10.676826,253,463,0.000031,0.000045,44291210,23650179,0,0,55748,0,1,1 +1773624981.437598,6.28,4,3992.50,54.25,1563.35,2124.07,0.00,3521271204710.986816,3521271204701.781738,205,0,0.001238,0.001908,44291220,23650201,0,0,55751,0,1,1 +1773624986.437552,7.52,4,3992.50,54.20,1568.93,2122.22,0.00,32658.969323,37722.174655,2276429,2586541,0.000031,0.000045,44291222,23650205,0,0,55753,0,1,1 +1773624991.437599,0.80,4,3992.50,54.20,1568.94,2122.22,0.00,0.000000,0.000000,2276429,2586541,0.002174,0.001038,44291266,23650234,0,0,55756,0,1,1 +1773624996.439147,3.97,4,3992.50,53.13,1605.34,2080.16,0.00,0.000000,104.527775,2276429,2587095,0.000000,0.000020,44291266,23650236,0,0,55758,0,1,1 +1773625001.438403,7.77,4,3992.50,54.48,1554.26,2133.09,0.00,3518960963008.467285,3518960957849.178223,253,464,0.000000,0.000030,44291266,23650239,0,0,55761,0,1,1 +1773625006.441550,4.76,4,3992.50,54.01,1576.09,2114.68,0.00,3516224376447.401855,3516224376438.209961,205,0,0.000000,0.000663,44291266,23650245,0,0,55763,0,1,1 +1773625011.437719,1.81,4,3992.50,54.23,1587.09,2123.09,0.00,3521134779815.368164,0.000000,11,0,0.000000,0.000030,44291266,23650248,0,0,55766,0,1,1 +1773625016.437641,0.65,4,3992.50,54.23,1587.12,2123.09,0.00,0.000000,0.000000,11,0,0.000076,0.000113,44291272,23650256,0,0,55768,0,1,1 +1773625021.440906,0.65,4,3992.50,53.98,1596.69,2113.52,0.00,0.000000,0.000000,11,0,0.000000,0.000030,44291272,23650259,0,0,55771,0,1,1 +1773625026.439423,0.95,4,3992.50,53.97,1597.88,2112.91,0.00,32658.810466,38335.329747,2274926,2589413,0.000031,0.000045,44291274,23650263,0,0,55773,0,1,1 +1773625031.437554,0.70,4,3992.50,53.95,1598.75,2112.18,0.00,3519752695068.723633,3519752689400.786621,253,468,0.000016,0.000690,44291276,23650272,0,0,55776,0,1,1 +1773625036.439172,20.43,4,3992.50,60.44,1344.52,2366.33,0.00,3517299168445.636230,3517299168436.621582,11,0,21.230336,0.018947,44293755,23651460,0,0,55778,0,1,1 +1773625041.437565,32.64,4,3992.50,59.92,1364.89,2345.98,0.00,0.000000,0.000000,11,0,118.200872,0.035269,44305817,23654176,0,0,55781,0,1,1 +1773625046.437457,27.97,4,3992.50,59.96,1363.30,2347.52,0.00,0.000000,0.000000,11,0,120.166753,0.031854,44318021,23656611,0,0,55783,0,1,1 +1773625051.441871,27.63,4,3992.50,59.82,1368.96,2341.90,0.00,1.656253,10.665780,253,468,118.058793,0.024647,44330147,23658505,0,0,55786,0,1,1 +1773625056.441574,28.61,4,3992.50,60.04,1367.51,2350.89,0.00,3518646497271.470703,3518646497262.452637,11,0,120.175629,0.033880,44342506,23661104,0,0,55788,0,1,1 +1773625061.441702,27.73,4,3992.50,60.26,1359.12,2359.25,0.00,0.000000,0.000000,11,0,118.760231,0.017803,44354684,23662472,0,0,55791,0,1,1 +1773625066.442003,28.36,4,3992.50,60.01,1368.73,2349.64,0.00,0.053512,0.000000,75,0,119.557397,0.025800,44366900,23664443,0,0,55793,0,1,1 +1773625071.440144,39.52,4,3992.50,60.28,1335.71,2359.98,0.00,32670.954534,38820.698054,2276443,2592613,119.207409,0.023864,44379085,23666310,0,0,55796,0,1,1 +1773625076.437686,25.33,4,3992.50,60.99,1307.72,2387.86,0.00,3520167554717.425781,3520167548576.020508,253,468,99.573747,0.024679,44389131,23668263,0,0,55798,0,1,1 +1773625081.437669,4.38,4,3992.50,60.05,1350.80,2351.04,0.00,32657.589458,38833.325247,2276463,2592801,70.503095,0.016494,44395629,23669571,0,0,55801,0,1,1 +1773625086.437560,9.78,4,3992.50,60.10,1348.67,2353.23,0.00,3518513815790.473145,3518513809603.431152,258,2,0.000000,0.000020,44395629,23669573,0,0,55803,0,1,1 +1773625094.063725,26.04,4,3992.50,60.14,1346.93,2354.67,0.00,2306819624303.358398,6.998931,253,468,0.000088,0.000114,44395640,23669588,0,0,55807,0,1,1 +1773625096.439297,10.17,4,3992.50,53.69,1593.52,2102.09,0.00,7405452279155.888672,7405452279136.910156,11,0,0.001834,0.001073,44395655,23669599,0,0,55808,0,1,1 +1773625101.438666,0.85,4,3992.50,53.68,1593.90,2101.70,0.00,0.180296,0.000000,205,0,0.000025,0.000061,44395657,23669604,0,0,55811,0,1,1 +1773625106.442536,3.20,4,3992.50,53.85,1609.86,2108.53,0.00,32624.116484,39064.824205,2274973,2593906,0.002916,0.001206,44395712,23669644,0,0,55813,0,1,1 +1773625111.438259,0.65,4,3992.50,53.87,1609.11,2109.28,0.00,0.000000,0.132926,2274973,2593955,0.000000,0.000030,44395712,23669647,0,0,55816,0,1,1 +1773625116.442023,1.10,4,3992.50,53.75,1610.12,2104.49,0.00,9.718856,10.722007,2276476,2594458,0.000000,0.000020,44395712,23669649,0,0,55818,0,1,1 +1773625121.441759,0.65,4,3992.50,53.73,1610.84,2103.81,0.00,3518623059452.534668,3518623053003.369141,258,2,0.000000,0.000030,44395712,23669652,0,0,55821,0,1,1 +1773625126.442488,0.55,4,3992.50,53.73,1610.84,2103.80,0.00,3517924017644.912598,10.673443,253,474,0.000000,0.000020,44395712,23669654,0,0,55823,0,1,1 +1773625131.441664,0.70,4,3992.50,53.73,1610.84,2103.80,0.00,0.000000,0.000000,253,474,0.000000,0.000030,44395712,23669657,0,0,55826,0,1,1 +1773625136.437625,0.65,4,3992.50,53.73,1610.84,2103.80,0.00,0.518094,3521281557855.185547,258,2,0.000000,0.000020,44395712,23669659,0,0,55828,0,1,1 +1773625141.442073,0.65,4,3992.50,53.74,1610.62,2104.02,0.00,32618.354024,39060.549637,2274973,2594029,0.000025,0.000061,44395714,23669664,0,0,55831,0,1,1 +1773625146.441872,0.95,4,3992.50,54.03,1599.87,2115.54,0.00,3518578953855.676270,3518578947418.682617,253,474,0.000016,0.000036,44395716,23669668,0,0,55833,0,1,1 +1773625151.437667,0.60,4,3992.50,53.85,1607.27,2108.15,0.00,3521398727748.710938,3521398727739.505859,205,0,0.000101,0.000154,44395724,23669679,0,0,55836,0,1,1 +1773625156.439831,0.70,4,3992.50,53.84,1607.28,2108.14,0.00,3516914434872.904297,0.000000,11,0,0.000000,0.000020,44395724,23669681,0,0,55838,0,1,1 +1773625161.442032,0.70,4,3992.50,53.85,1607.06,2108.36,0.00,1.656985,10.670499,253,474,0.000000,0.000673,44395724,23669688,0,0,55841,0,1,1 +1773625166.442187,7.23,4,3992.50,54.09,1576.36,2117.64,0.00,3518328776803.304199,3518328776794.287109,11,0,0.000000,0.000020,44395724,23669690,0,0,55843,0,1,1 +1773625171.441831,4.26,4,3992.50,54.23,1569.62,2123.32,0.00,32651.886327,39463.429578,2274994,2596198,0.000000,0.000674,44395724,23669697,0,0,55846,0,1,1 +1773625176.437635,3.61,4,3992.50,54.71,1551.01,2142.02,0.00,3521392220125.884277,3521392213309.104980,11,0,0.001359,0.000424,44395745,23669715,0,0,55848,0,1,1 +1773625181.440876,8.44,4,3992.50,53.89,1587.91,2110.02,0.00,32628.434137,39875.399208,2275014,2598769,0.000021,0.000352,44395747,23669720,0,0,55851,0,1,1 +1773625186.442132,4.16,4,3992.50,53.81,1588.83,2106.64,0.00,0.005467,116.111455,2275021,2599428,0.000112,0.000641,44395754,23669733,0,0,55853,0,1,1 +1773625191.440563,1.25,4,3992.50,53.81,1587.48,2106.84,0.00,3519541785832.572266,3519541778471.482422,253,479,0.000000,0.000674,44395754,23669740,0,0,55856,0,1,1 +1773625196.442032,6.92,4,3992.50,54.07,1578.55,2116.91,0.00,3517403331485.512207,3517403331476.497559,11,0,0.000000,0.000020,44395754,23669742,0,0,55858,0,1,1 +1773625201.442239,1.45,4,3992.50,53.98,1586.04,2113.28,0.00,1.657646,10.674754,253,480,0.001383,0.000431,44395777,23669761,0,0,55861,0,1,1 +1773625206.441796,54.95,4,3992.50,66.17,1115.94,2590.82,0.00,3518749155846.759277,3518749155837.687988,75,0,92.354262,0.065334,44406032,23674597,0,0,55863,0,1,1 +1773625211.441421,40.12,4,3992.50,66.43,1105.65,2601.07,0.00,3518701105132.369629,0.000000,11,0,148.227712,0.089902,44421324,23681503,0,0,55866,0,1,1 +1773625216.442318,31.45,4,3992.50,66.54,1101.55,2605.23,0.00,2.175000,0.000195,258,2,134.157482,0.060125,44434875,23686212,0,0,55868,0,1,1 +1773625221.441533,30.35,4,3992.50,66.36,1108.47,2598.18,0.00,0.000000,0.000000,258,2,126.995156,0.053787,44447664,23690341,0,0,55871,0,1,1 +1773625226.437536,29.75,4,3992.50,66.29,1111.50,2595.31,0.00,3521251912441.979980,3521251912444.156738,11,0,123.466721,0.056205,44460085,23694648,0,0,55873,0,1,1 +1773625231.438460,29.53,4,3992.50,66.48,1104.01,2602.75,0.00,0.000000,0.000000,11,0,122.144046,0.052186,44472354,23698637,0,0,55876,0,1,1 +1773625236.440795,29.06,4,3992.50,66.41,1106.73,2599.98,0.00,1.656941,10.670213,253,484,120.310192,0.055602,44484497,23702810,0,0,55878,0,1,1 +1773625241.441745,29.58,4,3992.50,66.65,1097.73,2609.50,0.00,32641.755546,40372.621743,2275038,2602143,120.543291,0.050588,44496645,23706653,0,0,55881,0,1,1 +1773625246.441534,29.10,4,3992.50,66.32,1110.73,2596.54,0.00,9.726582,10.695568,2276541,2602660,117.966014,0.050396,44508491,23710515,0,0,55883,0,1,1 +1773625251.442240,28.98,4,3992.50,66.51,1103.21,2604.11,0.00,3517940760306.756836,3517940752565.527344,11,0,119.748592,0.055569,44520586,23714767,0,0,55886,0,1,1 +1773625256.441478,29.18,4,3992.50,66.38,1108.23,2599.02,0.00,2.175722,0.000195,258,2,120.183738,0.057706,44532686,23719196,0,0,55888,0,1,1 +1773625261.440619,33.57,4,3992.50,66.75,1063.42,2613.48,0.00,3519041273429.856445,3519041273432.032227,11,0,120.183126,0.051482,44544789,23723239,0,0,55891,0,1,1 +1773625266.438190,32.27,4,3992.50,66.52,1073.45,2604.41,0.00,1.658521,10.680385,253,485,119.418961,0.048264,44556794,23727043,0,0,55893,0,1,1 +1773625271.441566,35.92,4,3992.50,66.71,1067.52,2611.65,0.00,3516063538296.124512,3516063538287.059570,75,0,118.878986,0.053162,44568713,23731269,0,0,55896,0,1,1 +1773625276.441749,32.34,4,3992.50,66.72,1065.95,2612.36,0.00,1.604140,10.674804,253,485,119.354896,0.045337,44580642,23734871,0,0,55898,0,1,1 +1773625281.441901,17.12,4,3992.50,68.62,991.70,2686.43,0.00,3518329814678.793457,3518329814669.596191,205,0,69.093611,0.021718,44587719,23736550,0,0,55901,0,1,1 +1773625286.437570,1.21,4,3992.50,68.34,1002.35,2675.79,0.00,3521488011990.136719,0.000000,11,0,5.107112,0.003258,44588432,23736809,0,0,55903,0,1,1 +1773625291.442537,9.32,4,3992.50,53.88,1571.52,2109.42,0.00,0.180095,0.000000,205,0,62.536621,0.020431,44594624,23738308,0,0,55906,0,1,1 +1773625296.440653,1.05,4,3992.50,53.18,1598.96,2081.98,0.00,1.995870,0.000195,258,2,0.000008,0.000028,44594625,23738311,0,0,55908,0,1,1 +1773625301.441618,2.10,4,3992.50,53.07,1614.81,2077.97,0.00,32652.404044,41213.713113,2276867,2607908,0.008835,0.007001,44594766,23738424,0,0,55911,0,1,1 +1773625306.441754,0.90,4,3992.50,53.10,1613.84,2078.95,0.00,3518341330553.875000,3518341330553.035156,2275364,2607439,0.000480,0.001302,44594782,23738450,0,0,55913,0,1,1 +1773625311.437563,0.70,4,3992.50,52.90,1621.47,2071.32,0.00,3521388859307.580566,3521388850740.452148,11,0,0.000235,0.001300,44594790,23738469,0,0,55916,0,1,1 +1773625316.440937,28.89,4,3992.50,61.00,1304.60,2388.20,0.00,32638.927290,41193.990853,2276874,2607960,77.461608,0.112973,44603038,23741417,0,0,55918,0,1,1 +1773625321.442124,1.05,4,3992.50,53.70,1590.38,2102.42,0.00,0.085917,0.122920,2276883,2607987,12.617295,0.005912,44604383,23741812,0,0,55921,0,1,1 +1773625326.440267,1.00,4,3992.50,53.42,1593.94,2091.63,0.00,3519744487464.791504,3519744478909.757812,253,490,0.000031,0.000045,44604385,23741816,0,0,55923,0,1,1 +1773625331.442133,0.60,4,3992.50,53.07,1607.50,2077.83,0.00,32637.468544,41185.322226,2275380,2607594,0.000000,0.000030,44604385,23741819,0,0,55926,0,1,1 +1773625336.442338,0.65,4,3992.50,53.07,1607.61,2077.73,0.00,3518292745389.133789,3518292736829.369141,75,0,0.000050,0.000082,44604389,23741825,0,0,55928,0,1,1 +1773625341.441834,0.70,4,3992.50,53.08,1607.12,2078.22,0.00,32654.554595,41215.575521,2275380,2607634,0.000008,0.000038,44604390,23741829,0,0,55931,0,1,1 +1773625346.438038,0.55,4,3992.50,53.08,1607.12,2078.21,0.00,3521110277804.929688,3521110269247.347168,253,490,0.000000,0.000020,44604390,23741831,0,0,55933,0,1,1 +1773625351.437656,0.55,4,3992.50,53.07,1607.41,2077.94,0.00,0.517715,3518705975376.077148,258,2,0.000062,0.000080,44604394,23741838,0,0,55936,0,1,1 +1773625356.441888,1.10,4,3992.50,53.07,1616.84,2077.76,0.00,3515461976383.660156,3515461976385.833984,11,0,0.000031,0.000045,44604396,23741842,0,0,55938,0,1,1 +1773625361.441717,0.70,4,3992.50,53.09,1614.13,2078.49,0.00,32652.428275,41212.874198,2275380,2607669,0.000056,0.000086,44604400,23741849,0,0,55941,0,1,1 +1773625366.442195,0.65,4,3992.50,53.09,1614.13,2078.49,0.00,3518100419440.194336,3518100410878.685547,258,2,0.000101,0.000144,44604408,23741859,0,0,55943,0,1,1 +1773625371.437675,0.70,4,3992.50,53.09,1614.13,2078.49,0.00,3521621012763.725098,3521621012765.722168,205,0,0.000000,0.000030,44604408,23741862,0,0,55946,0,1,1 +1773625376.437660,0.70,4,3992.50,53.09,1614.13,2078.49,0.00,1.477446,10.675228,253,490,0.000000,0.000664,44604408,23741868,0,0,55948,0,1,1 +1773625381.438990,26.37,4,3992.50,59.25,1372.77,2319.82,0.00,3517501640679.342773,3517501640670.147461,205,0,45.258376,0.026925,44609312,23743663,0,0,55951,0,1,1 +1773625386.441532,32.02,4,3992.50,59.41,1359.58,2326.17,0.00,3516648888830.295898,0.000000,75,0,119.503774,0.049349,44621496,23747500,0,0,55953,0,1,1 +1773625391.437546,28.05,4,3992.50,59.38,1361.09,2324.66,0.00,0.000000,0.000000,75,0,118.660225,0.020762,44633823,23749100,0,0,55956,0,1,1 +1773625396.440501,28.70,4,3992.50,59.46,1357.86,2327.89,0.00,1.603251,10.668888,253,490,119.894743,0.026535,44646203,23751172,0,0,55958,0,1,1 +1773625401.441573,28.46,4,3992.50,59.28,1364.89,2320.88,0.00,3517683065472.847656,3517683065463.778809,75,0,118.939625,0.021758,44658434,23752815,0,0,55961,0,1,1 +1773625406.441872,28.54,4,3992.50,59.33,1362.74,2322.98,0.00,3518227147502.141602,0.000000,11,0,119.557613,0.036694,44670686,23755673,0,0,55963,0,1,1 +1773625411.441406,28.73,4,3992.50,59.26,1365.47,2320.28,0.00,32664.121279,41226.369741,2276887,2608447,118.978334,0.042866,44682916,23759037,0,0,55966,0,1,1 +1773625416.438361,28.59,4,3992.50,59.31,1363.45,2322.24,0.00,3520581502565.629395,3520581493998.780762,205,0,119.441240,0.031584,44695287,23761462,0,0,55968,0,1,1 +1773625421.440452,23.03,4,3992.50,59.28,1364.77,2321.00,0.00,3516965862299.212402,0.000000,75,0,119.315936,0.038343,44707570,23764423,0,0,55971,0,1,1 +1773625426.437745,1.20,4,3992.50,52.92,1613.84,2071.93,0.00,32678.797371,41245.022885,2276897,2608516,25.852221,0.008005,44710263,23764985,0,0,55973,0,1,1 +1773625431.437564,0.55,4,3992.50,52.94,1613.09,2072.69,0.00,3518565001466.445801,3518564992904.420410,205,0,0.000160,0.000229,44710269,23764994,0,0,55976,0,1,1 +1773625436.441548,0.75,4,3992.50,52.94,1613.09,2072.69,0.00,1.476265,10.666696,253,490,0.000000,0.000020,44710269,23764996,0,0,55978,0,1,1 +1773625441.441643,0.55,4,3992.50,52.90,1614.63,2071.15,0.00,3518369886984.776855,3518369886975.759766,11,0,0.000000,0.000513,44710269,23765002,0,0,55981,0,1,1 +1773625446.437707,0.95,4,3992.50,53.11,1606.28,2079.50,0.00,2.177105,0.000195,258,2,0.000000,0.000181,44710269,23765005,0,0,55983,0,1,1 +1773625451.441605,0.60,4,3992.50,53.07,1607.88,2077.91,0.00,3515696562391.917480,3515696562393.911133,205,0,0.000000,0.000030,44710269,23765008,0,0,55986,0,1,1 +1773625456.441056,0.85,4,3992.50,52.96,1612.29,2073.50,0.00,32654.834317,41216.812385,2275394,2608146,0.000000,0.000020,44710269,23765010,0,0,55988,0,1,1 +1773625461.438315,0.70,4,3992.50,52.96,1612.29,2073.50,0.00,9.731507,10.685937,2276897,2608643,0.000000,0.000030,44710269,23765013,0,0,55991,0,1,1 +1773625466.439764,0.65,4,3992.50,52.97,1612.04,2073.74,0.00,3517418092968.592773,3517418084409.206055,75,0,0.000000,0.000020,44710269,23765015,0,0,55993,0,1,1 +1773625471.441228,0.85,4,3992.50,52.93,1613.57,2072.21,0.00,32651.540702,41210.909611,2276897,2608654,0.000113,0.000185,44710278,23765028,0,0,55996,0,1,1 +1773625476.441768,1.10,4,3992.50,53.12,1605.87,2079.80,0.00,3518057748770.730957,3518057740207.656250,258,2,0.000029,0.000036,44710281,23765032,0,0,55998,0,1,1 +1773625481.442175,0.70,4,3992.50,53.18,1603.70,2081.99,0.00,0.000000,0.000000,258,2,0.000000,0.000030,44710281,23765035,0,0,56001,0,1,1 +1773625486.437660,1.51,4,3992.50,53.18,1603.46,2082.22,0.00,3521617093181.747559,3521617093183.924805,11,0,0.000000,0.000020,44710281,23765037,0,0,56003,0,1,1 +1773625491.441790,30.07,4,3992.50,59.71,1347.90,2337.76,0.00,32624.484999,41178.380875,2275395,2608255,63.040160,0.031342,44716945,23767306,0,0,56006,0,1,1 +1773625496.440131,30.08,4,3992.50,59.43,1358.85,2326.82,0.00,0.000000,0.015630,2275395,2608273,118.605505,0.026327,44729070,23769284,0,0,56008,0,1,1 +1773625501.437639,28.16,4,3992.50,59.65,1350.15,2335.46,0.00,3520191658765.187500,3520191650208.962891,253,490,119.827843,0.030066,44741298,23771576,0,0,56011,0,1,1 +1773625506.443024,28.09,4,3992.50,60.01,1336.06,2349.56,0.00,3514652321269.717285,3514652321260.656738,75,0,118.835084,0.022234,44753446,23773305,0,0,56013,0,1,1 +1773625511.437876,28.82,4,3992.50,59.32,1376.37,2322.66,0.00,32685.049263,41255.012207,2275399,2608370,119.490612,0.024672,44765688,23775123,0,0,56016,0,1,1 +1773625516.442127,28.27,4,3992.50,59.47,1370.87,2328.27,0.00,3515448747389.551270,3515448738835.681641,75,0,119.069551,0.039316,44777948,23778143,0,0,56018,0,1,1 +1773625521.437691,28.33,4,3992.50,59.38,1374.21,2324.86,0.00,32680.400161,41249.375770,2275399,2608483,119.285932,0.059366,44790486,23782781,0,0,56021,0,1,1 +1773625526.438086,28.42,4,3992.50,59.36,1374.84,2324.22,0.00,3518158873681.483887,3518158865120.662109,205,0,119.986100,0.102358,44803300,23790718,0,0,56023,0,1,1 +1773625531.441675,19.30,4,3992.50,59.32,1376.47,2322.67,0.00,32627.859239,41183.230893,2275400,2608510,118.307800,0.097151,44815955,23798260,0,0,56026,0,1,1 +1773625536.437649,1.10,4,3992.50,53.56,1602.25,2096.88,0.00,3521272413932.787598,3521272405362.379395,258,2,9.024009,0.007666,44816977,23798794,0,0,56028,0,1,1 +1773625541.442577,1.25,4,3992.50,53.43,1603.37,2091.94,0.00,0.000000,0.000000,258,2,0.002665,0.001902,44817016,23798830,0,0,56031,0,1,1 +1773625546.441782,0.65,4,3992.50,53.43,1603.37,2091.93,0.00,3518996749070.688477,3518996749072.684082,205,0,0.000000,0.000020,44817016,23798832,0,0,56033,0,1,1 +1773625551.437584,0.55,4,3992.50,53.43,1603.37,2091.93,0.00,32678.853393,41247.760965,2275410,2608621,0.000000,0.000030,44817016,23798835,0,0,56036,0,1,1 +1773625556.441773,0.70,4,3992.50,53.43,1603.21,2092.09,0.00,3515491860591.346680,3515491852045.991699,253,490,0.000000,0.000020,44817016,23798837,0,0,56038,0,1,1 +1773625561.441885,0.80,4,3992.50,53.43,1603.21,2092.09,0.00,3518358119709.549316,3518358119700.352051,205,0,0.000000,0.000030,44817016,23798840,0,0,56041,0,1,1 +1773625566.442409,0.95,4,3992.50,53.39,1606.24,2090.47,0.00,32647.989934,41208.906957,2275410,2608696,0.000000,0.000020,44817016,23798842,0,0,56043,0,1,1 +1773625571.441972,0.70,4,3992.50,53.28,1610.86,2085.86,0.00,0.000000,0.007813,2275410,2608702,0.000031,0.000055,44817018,23798847,0,0,56046,0,1,1 +1773625576.442216,0.65,4,3992.50,53.28,1610.86,2085.86,0.00,3518265023304.275391,3518265014740.876953,258,2,0.000039,0.000697,44817021,23798856,0,0,56048,0,1,1 +1773625581.442080,0.75,4,3992.50,53.29,1610.42,2086.29,0.00,3518533183206.956543,3518533183209.131836,11,0,0.000383,0.000678,44817034,23798876,0,0,56051,0,1,1 +1773625586.441639,0.55,4,3992.50,53.29,1610.42,2086.29,0.00,32664.198492,41227.583710,2276913,2609233,0.000081,0.000107,44817040,23798884,0,0,56053,0,1,1 +1773625591.441993,0.80,4,3992.50,53.27,1611.14,2085.57,0.00,3518188356572.369141,3518188348010.164551,205,0,0.002843,0.001976,44817087,23798917,0,0,56056,0,1,1 +1773625596.438187,1.10,4,3992.50,53.56,1600.86,2096.87,0.00,3521117417264.033691,0.000000,11,0,0.000000,0.000020,44817087,23798919,0,0,56058,0,1,1 +1773625601.438039,29.71,4,3992.50,59.43,1370.93,2326.71,0.00,0.180279,0.000000,205,0,57.887704,0.025696,44823287,23800737,0,0,56061,0,1,1 +1773625606.438782,31.86,4,3992.50,59.75,1358.27,2339.35,0.00,32646.574867,41207.221534,2275411,2608824,119.350167,0.020744,44835631,23802242,0,0,56063,0,1,1 +1773625611.438578,28.82,4,3992.50,59.34,1374.88,2323.16,0.00,3518580559799.014160,3518580551234.751465,258,2,118.970565,0.025478,44847848,23804151,0,0,56066,0,1,1 +1773625616.437715,28.92,4,3992.50,59.64,1362.92,2335.08,0.00,32664.859786,41231.157411,2276935,2609344,119.391219,0.027397,44860244,23806175,0,0,56068,0,1,1 +1773625621.437644,28.61,4,3992.50,59.63,1363.14,2334.71,0.00,3518487000108.875977,3518486991546.058594,75,0,118.967645,0.022512,44872456,23807883,0,0,56071,0,1,1 +1773625626.441540,28.91,4,3992.50,59.60,1363.61,2333.58,0.00,1.602950,10.666884,253,490,119.945323,0.021618,44884582,23809568,0,0,56073,0,1,1 +1773625631.441588,29.40,4,3992.50,59.65,1372.01,2335.54,0.00,3518403482873.116699,3518403482864.099609,11,0,118.493054,0.036561,44896816,23812415,0,0,56076,0,1,1 +1773625636.437509,29.11,4,3992.50,59.34,1384.36,2323.13,0.00,32678.328073,41247.346095,2275436,2609030,120.065976,0.025155,44909136,23814318,0,0,56078,0,1,1 +1773625641.441845,20.82,4,3992.50,59.39,1382.23,2325.41,0.00,3515388015848.208008,3515388007293.600586,11,0,119.058732,0.030758,44921192,23816705,0,0,56081,0,1,1 +1773625646.439948,1.20,4,3992.50,53.19,1625.13,2082.50,0.00,0.000000,0.000000,11,0,13.228227,0.005790,44922663,23817013,0,0,56083,0,1,1 +1773625651.437647,0.60,4,3992.50,53.20,1624.90,2082.73,0.00,0.000000,0.000000,11,0,0.000000,0.000030,44922663,23817016,0,0,56086,0,1,1 +1773625656.441981,1.40,4,3992.50,53.32,1625.93,2087.63,0.00,2.173507,0.000195,258,2,0.000000,0.000020,44922663,23817018,0,0,56088,0,1,1 +1773625661.441777,0.65,4,3992.50,53.22,1629.85,2083.64,0.00,32660.655882,41226.398405,2276960,2609661,0.000000,0.000030,44922663,23817021,0,0,56091,0,1,1 +1773625666.440642,0.70,4,3992.50,53.25,1628.64,2084.84,0.00,3519235983667.011230,3519235975101.669434,205,0,0.000000,0.000020,44922663,23817023,0,0,56093,0,1,1 +1773625671.437652,0.80,4,3992.50,53.13,1633.13,2080.33,0.00,3520542449613.161621,0.000000,11,0,0.000000,0.000030,44922663,23817026,0,0,56096,0,1,1 +1773625676.437573,0.70,4,3992.50,53.13,1633.16,2080.33,0.00,0.180276,0.000000,205,0,0.000000,0.000020,44922663,23817028,0,0,56098,0,1,1 +1773625681.437644,0.60,4,3992.50,53.15,1632.68,2080.82,0.00,3518386791807.647949,0.000000,11,0,0.000000,0.000030,44922663,23817031,0,0,56101,0,1,1 +1773625686.442577,0.85,4,3992.50,53.37,1623.62,2089.57,0.00,0.053463,0.000000,75,0,0.000000,0.000020,44922663,23817033,0,0,56103,0,1,1 +1773625691.439955,0.65,4,3992.50,53.31,1625.93,2087.35,0.00,1.605041,10.680798,253,490,0.000126,0.000185,44922673,23817046,0,0,56106,0,1,1 +1773625696.442131,0.60,4,3992.50,53.33,1625.47,2087.80,0.00,0.000000,0.000000,253,490,0.000016,0.000036,44922675,23817050,0,0,56108,0,1,1 +1773625701.437647,0.60,4,3992.50,53.33,1625.23,2088.05,0.00,3521595319218.291992,3521595319209.267090,11,0,0.000000,0.000030,44922675,23817053,0,0,56111,0,1,1 +1773625706.437657,0.70,4,3992.50,53.33,1625.23,2088.05,0.00,0.053516,0.000000,75,0,0.000000,0.000020,44922675,23817055,0,0,56113,0,1,1 +1773625711.441552,28.63,4,3992.50,59.70,1375.73,2337.50,0.00,2.120223,0.000195,258,2,49.037355,0.026709,44927981,23818787,0,0,56116,0,1,1 +1773625716.437559,31.34,4,3992.50,59.67,1377.04,2336.12,0.00,0.000000,0.000000,258,2,119.860935,0.032646,44940160,23821273,0,0,56118,0,1,1 +1773625721.437574,28.08,4,3992.50,59.80,1371.82,2341.38,0.00,3518427215844.046387,3518427215846.221680,11,0,118.361237,0.018181,44952221,23822689,0,0,56121,0,1,1 +1773625726.442697,29.52,4,3992.50,59.87,1359.50,2344.20,0.00,2.173164,0.000195,258,2,119.839176,0.023853,44964308,23824549,0,0,56123,0,1,1 +1773625731.437747,28.69,4,3992.50,59.56,1371.80,2331.85,0.00,3521924170910.871094,3521924170912.868164,205,0,118.482738,0.031142,44976339,23826977,0,0,56126,0,1,1 +1773625736.442006,28.99,4,3992.50,59.51,1373.64,2330.10,0.00,3515442786356.585938,0.000000,11,0,120.087649,0.088596,44989005,23833890,0,0,56128,0,1,1 +1773625741.442424,28.89,4,3992.50,59.48,1374.79,2328.94,0.00,2.175209,0.000195,258,2,118.370922,0.072762,45001321,23839570,0,0,56131,0,1,1 +1773625746.442245,29.38,4,3992.50,59.45,1376.16,2327.59,0.00,3518563105181.723633,10.675382,253,490,119.979622,0.044391,45013800,23843010,0,0,56133,0,1,1 +1773625751.438582,23.17,4,3992.50,59.36,1380.41,2324.25,0.00,0.518055,3521016864273.050781,258,2,118.657306,0.041401,45026039,23846245,0,0,56136,0,1,1 +1773625756.441677,1.45,4,3992.50,52.99,1630.03,2074.63,0.00,3516260812921.777344,3516260812923.771484,205,0,22.821612,0.006000,45028453,23846635,0,0,56138,0,1,1 +1773625761.442309,0.60,4,3992.50,53.03,1628.46,2076.21,0.00,3517992552214.436035,0.000000,75,0,0.000000,0.000030,45028453,23846638,0,0,56141,0,1,1 +1773625766.438794,0.70,4,3992.50,53.01,1629.30,2075.36,0.00,0.126847,0.000000,205,0,0.000000,0.000020,45028453,23846640,0,0,56143,0,1,1 +1773625771.439596,0.85,4,3992.50,53.01,1629.30,2075.36,0.00,32656.243412,41218.777516,2276994,2610065,0.000000,0.000030,45028453,23846643,0,0,56146,0,1,1 +1773625776.442390,1.10,4,3992.50,53.70,1602.48,2102.39,0.00,3516471658454.114746,3516471649894.992188,205,0,0.000000,0.000663,45028453,23846649,0,0,56148,0,1,1 +1773625781.440651,0.65,4,3992.50,53.52,1609.37,2095.51,0.00,1.477956,10.678911,253,490,0.000000,0.000030,45028453,23846652,0,0,56151,0,1,1 +1773625786.441952,0.70,4,3992.50,53.45,1612.28,2092.64,0.00,3517521624032.520020,3517521624023.451660,75,0,0.000000,0.000020,45028453,23846654,0,0,56153,0,1,1 +1773625791.441606,0.70,4,3992.50,53.47,1611.53,2093.40,0.00,2.122022,0.000195,258,2,0.000000,0.000030,45028453,23846657,0,0,56156,0,1,1 +1773625796.440046,0.65,4,3992.50,53.46,1611.77,2093.16,0.00,3519535377829.204102,3519535377831.326660,75,0,0.000000,0.000020,45028453,23846659,0,0,56158,0,1,1 +1773625801.439336,0.80,4,3992.50,53.44,1612.74,2092.19,0.00,3518936606513.320312,0.000000,11,0,0.000126,0.000185,45028463,23846672,0,0,56161,0,1,1 +1773625806.441609,1.05,4,3992.50,53.83,1597.69,2107.41,0.00,2.174402,0.000195,258,2,0.000016,0.000036,45028465,23846676,0,0,56163,0,1,1 +1773625811.438581,0.65,4,3992.50,53.26,1619.77,2085.21,0.00,3520568690018.830078,3520568690020.953125,75,0,0.000000,0.000030,45028465,23846679,0,0,56166,0,1,1 +1773625816.438469,0.70,4,3992.50,53.20,1621.96,2083.02,0.00,3518516225609.431641,0.000000,11,0,0.000000,0.000020,45028465,23846681,0,0,56168,0,1,1 +1773625821.440161,23.97,4,3992.50,59.71,1367.23,2337.69,0.00,2.174655,0.000195,258,2,43.852646,0.026905,45033279,23848605,0,0,56171,0,1,1 +1773625826.442112,33.18,4,3992.50,59.69,1367.77,2337.04,0.00,3517064810097.585449,3517064810099.760254,11,0,122.719325,0.051743,45045588,23852561,0,0,56173,0,1,1 +1773625831.441411,29.18,4,3992.50,59.60,1371.66,2333.32,0.00,32656.642218,41220.931431,2275536,2609882,121.585362,0.046767,45057995,23856130,0,0,56176,0,1,1 +1773625836.441536,29.02,4,3992.50,60.26,1347.89,2359.23,0.00,0.014843,0.073143,2275539,2609918,120.160467,0.043388,45070145,23859520,0,0,56178,0,1,1 +1773625841.441078,28.96,4,3992.50,59.76,1367.29,2339.85,0.00,3518759785982.479492,3518759777427.563965,253,490,120.174193,0.048561,45082208,23863222,0,0,56181,0,1,1 +1773625846.438141,28.58,4,3992.50,59.69,1370.02,2337.11,0.00,32669.613949,41228.845656,2275539,2609969,119.431035,0.044651,45094158,23866701,0,0,56183,0,1,1 +1773625851.441111,28.64,4,3992.50,59.65,1371.33,2335.54,0.00,3516348498276.868652,3516348489718.676270,75,0,119.690861,0.038484,45106171,23869685,0,0,56186,0,1,1 +1773625856.441743,28.42,4,3992.50,59.62,1372.82,2334.07,0.00,32657.628969,41220.785978,2277042,2610485,119.347781,0.038671,45118236,23872698,0,0,56188,0,1,1 +1773625861.440570,22.02,4,3992.50,59.66,1371.53,2335.65,0.00,3519263077586.465332,3519263069018.093262,258,2,119.391408,0.048639,45130381,23876495,0,0,56191,0,1,1 +1773625866.441739,1.40,4,3992.50,53.43,1615.38,2091.79,0.00,3517614707546.693359,3517614707548.868164,11,0,19.025447,0.010422,45132396,23877221,0,0,56193,0,1,1 +1773625871.441671,1.05,4,3992.50,53.47,1621.27,2093.60,0.00,0.000000,0.000000,11,0,0.000207,0.000216,45132401,23877228,0,0,56196,0,1,1 +1773625876.442043,0.65,4,3992.50,53.50,1620.39,2094.52,0.00,0.000000,0.000000,11,0,0.000031,0.000045,45132403,23877232,0,0,56198,0,1,1 +1773625881.437573,0.75,4,3992.50,53.50,1620.39,2094.52,0.00,32681.399231,41252.466835,2275553,2610120,0.001243,0.001255,45132413,23877249,0,0,56201,0,1,1 +1773625886.437670,0.70,4,3992.50,53.49,1620.65,2094.27,0.00,3518368794622.654297,3518368786059.235352,205,0,0.000031,0.000045,45132415,23877253,0,0,56203,0,1,1 +1773625891.441642,1.00,4,3992.50,53.61,1615.90,2098.96,0.00,3515644372555.914551,0.000000,11,0,0.002172,0.001038,45132459,23877282,0,0,56206,0,1,1 +1773625896.442300,1.00,4,3992.50,53.69,1609.32,2102.12,0.00,0.053509,0.000000,75,0,0.000000,0.000020,45132459,23877284,0,0,56208,0,1,1 +1773625901.442194,2.86,4,3992.50,80.33,549.26,3144.97,0.00,2.121920,0.000195,258,2,0.000000,0.000030,45132459,23877287,0,0,56211,0,1,1 +1773625906.443281,30.34,4,3992.50,64.39,1221.72,2521.16,0.00,3517672637808.455078,3517672637810.629883,11,0,0.000000,0.000664,45132459,23877293,0,0,56213,0,1,1 +1773625911.442360,28.82,4,3992.50,77.01,720.69,3015.17,0.00,0.000000,0.000000,11,0,0.000050,0.000092,45132463,23877300,0,0,56216,0,1,1 +1773625916.441372,28.68,4,3992.50,92.76,107.33,3631.74,0.00,33077.040139,41242.870625,2302862,2618574,0.000033,0.000059,45132466,23877305,0,0,56218,0,1,1 +1773625921.438752,28.99,4,3992.50,53.26,1655.36,2085.42,0.00,3520281153999.724121,3520281145829.052246,258,2,0.000008,0.000038,45132467,23877309,0,0,56221,0,1,1 +1773625926.438582,28.99,4,3992.50,71.11,942.45,2784.30,0.00,3518557351429.212402,3518557351431.387695,11,0,0.000031,0.000045,45132469,23877313,0,0,56223,0,1,1 +1773625931.445520,46.44,4,3992.50,59.56,1410.48,2331.79,0.00,33510.439381,41176.004552,2333150,2626879,29.605470,0.020863,45135761,23878778,0,0,56226,0,1,1 +1773625936.442070,33.22,4,3992.50,59.63,1359.69,2334.47,0.00,3520866188517.929688,3520866180836.248047,205,0,119.047758,0.029075,45147927,23880942,0,0,56228,0,1,1 +1773625941.441612,27.58,4,3992.50,60.00,1345.14,2349.02,0.00,1.477577,10.676175,253,490,119.776262,0.021900,45160178,23882596,0,0,56231,0,1,1 +1773625946.441854,28.08,4,3992.50,59.47,1365.96,2328.20,0.00,3518266538475.414062,3518266538466.396973,11,0,118.565088,0.035780,45172349,23885315,0,0,56233,0,1,1 +1773625951.439474,28.51,4,3992.50,59.33,1371.05,2322.79,0.00,0.053541,0.000000,75,0,120.231774,0.047772,45184777,23889050,0,0,56236,0,1,1 +1773625956.437606,28.56,4,3992.50,60.12,1341.32,2353.79,0.00,33593.089283,41259.327062,2335510,2627453,118.208625,0.023220,45197000,23890853,0,0,56238,0,1,1 +1773625961.441600,28.27,4,3992.50,59.59,1359.16,2333.27,0.00,3515628956985.645508,3515628949328.388184,75,0,120.072651,0.020068,45209469,23892396,0,0,56241,0,1,1 +1773625966.442136,28.20,4,3992.50,59.61,1358.08,2333.67,0.00,33567.519515,41229.263394,2334026,2627289,119.152727,0.028100,45221723,23894560,0,0,56243,0,1,1 +1773625971.439994,26.87,4,3992.50,59.46,1363.03,2328.16,0.00,3519945023313.575684,3519945015647.726562,75,0,119.218144,0.022971,45234008,23896255,0,0,56246,0,1,1 +1773625976.442400,1.45,4,3992.50,54.43,1559.91,2131.22,0.00,33565.876569,41224.623152,2335656,2627818,41.641800,0.012096,45238340,23897112,0,0,56248,0,1,1 +1773625981.442298,0.90,4,3992.50,53.93,1579.59,2111.54,0.00,3518508703768.439941,3518508696105.725586,205,0,0.000619,0.000926,45238352,23897126,0,0,56251,0,1,1 +1773625986.437729,1.15,4,3992.50,54.01,1576.72,2114.55,0.00,3521655319348.156738,0.000000,75,0,0.000000,0.000020,45238352,23897128,0,0,56253,0,1,1 +1773625991.437786,2.61,4,3992.50,78.54,599.88,3074.97,0.00,2.121851,0.000195,258,2,0.000000,0.000030,45238352,23897131,0,0,56256,0,1,1 +1773625996.438850,29.51,4,3992.50,82.17,521.76,3217.18,0.00,3517688983067.108398,3517688983069.283203,11,0,0.000000,0.000020,45238352,23897133,0,0,56258,0,1,1 +1773626001.439027,28.77,4,3992.50,93.36,101.93,3655.10,0.00,0.000000,0.000000,11,0,0.000000,0.000030,45238352,23897136,0,0,56261,0,1,1 +1773626006.442104,28.97,4,3992.50,67.50,1100.05,2642.93,0.00,0.180163,0.000000,205,0,0.000000,0.000020,45238352,23897138,0,0,56263,0,1,1 +1773626011.442326,28.55,4,3992.50,85.69,380.51,3355.13,0.00,3518280426566.994629,0.000000,11,0,0.000000,0.000030,45238352,23897141,0,0,56266,0,1,1 +1773626016.441552,29.35,4,3992.50,54.81,1592.36,2145.85,0.00,34313.894067,41265.936977,2381381,2642433,0.000000,0.000020,45238352,23897143,0,0,56268,0,1,1 +1773626021.438756,27.65,4,3992.50,53.71,1647.21,2102.83,0.00,3520405848188.150879,3520405841233.295410,11,0,0.000101,0.000798,45238360,23897158,0,0,56271,0,1,1 +1773626026.437997,1.30,4,3992.50,53.66,1627.94,2101.09,0.00,2.175721,0.000195,258,2,0.000041,0.000067,45238364,23897164,0,0,56273,0,1,1 +1773626031.442104,0.75,4,3992.50,53.51,1633.79,2095.06,0.00,3515549287092.606934,3515549287094.780762,11,0,0.000000,0.000030,45238364,23897167,0,0,56276,0,1,1 +1773626036.441528,0.80,4,3992.50,53.33,1639.32,2088.06,0.00,0.053522,0.000000,75,0,0.000000,0.000664,45238364,23897173,0,0,56278,0,1,1 +1773626041.441819,18.84,4,3992.50,60.62,1309.88,2373.59,0.00,0.000000,0.000000,75,0,21.436203,0.020838,45240842,23898512,0,0,56281,0,1,1 +1773626046.441927,32.41,4,3992.50,60.73,1305.61,2377.83,0.00,3518361122916.519043,0.000000,11,0,118.161225,0.033556,45252883,23901062,0,0,56283,0,1,1 +1773626051.441507,28.77,4,3992.50,60.69,1324.30,2376.16,0.00,0.000000,0.000000,11,0,118.173242,0.034647,45264978,23903690,0,0,56286,0,1,1 +1773626056.441554,27.77,4,3992.50,59.96,1352.75,2347.66,0.00,34461.951072,41262.595174,2391539,2645744,119.562063,0.041130,45277163,23906929,0,0,56288,0,1,1 +1773626061.437554,28.51,4,3992.50,59.68,1363.80,2336.57,0.00,3521254084022.965820,3521254077216.633301,205,0,118.859654,0.018494,45289463,23908360,0,0,56291,0,1,1 +1773626066.441822,27.74,4,3992.50,59.86,1356.00,2343.66,0.00,34422.980795,41217.137990,2390036,2645281,119.661958,0.015688,45301724,23909579,0,0,56293,0,1,1 +1773626071.437562,28.29,4,3992.50,60.27,1339.49,2359.53,0.00,3521437323527.153320,3521437316721.578125,11,0,118.664008,0.017250,45313890,23910920,0,0,56296,0,1,1 +1773626076.441585,27.94,4,3992.50,59.82,1356.32,2341.99,0.00,2.173642,0.000195,258,2,120.068383,0.019465,45326055,23912379,0,0,56298,0,1,1 +1773626081.441577,30.13,4,3992.50,91.98,91.18,3601.11,0.00,0.000000,0.000000,258,2,118.566442,0.033221,45338010,23914905,0,0,56301,0,1,1 +1773626086.439680,31.98,4,3992.50,95.79,6.16,3750.48,0.00,3519772812721.184082,3519772812723.306641,75,0,52.296583,0.024559,45343446,23916813,0,0,56303,0,1,1 +1773626091.442963,29.94,4,3992.50,57.68,1484.52,2258.37,0.00,34777.752924,41241.911026,2413591,2651251,0.003072,0.002246,45343501,23916861,0,0,56306,0,1,1 +1773626096.443114,29.25,4,3992.50,65.92,1155.66,2580.85,0.00,144.196812,3518330838475.444336,2421877,2653581,0.000000,0.000020,45343501,23916863,0,0,56308,0,1,1 +1773626101.440724,29.05,4,3992.50,81.27,547.78,3181.87,0.00,3520120241989.418945,3520120235670.099121,11,0,0.000000,0.000030,45343501,23916866,0,0,56311,0,1,1 +1773626106.441038,29.29,4,3992.50,95.49,19.48,3738.62,0.00,0.000000,0.000000,11,0,0.000000,0.000020,45343501,23916868,0,0,56313,0,1,1 +1773626111.439257,28.36,4,3992.50,53.73,1650.40,2103.48,0.00,2.176166,0.000195,258,2,0.000000,0.000030,45343501,23916871,0,0,56316,0,1,1 +1773626116.441684,0.75,4,3992.50,53.54,1631.62,2096.39,0.00,3516729887161.718262,3516729887163.892578,11,0,0.000000,0.000020,45343501,23916873,0,0,56318,0,1,1 +1773626121.441732,0.65,4,3992.50,53.53,1631.94,2095.68,0.00,1.657699,10.675093,253,490,0.000000,0.000030,45343501,23916876,0,0,56321,0,1,1 +1773626126.441274,0.80,4,3992.50,53.52,1630.79,2095.45,0.00,3518760053005.202637,3518760052996.131348,75,0,0.000308,0.000575,45343508,23916889,0,0,56323,0,1,1 +1773626131.441463,0.75,4,3992.50,53.47,1632.73,2093.52,0.00,35424.159197,41279.113904,2453050,2662856,0.000213,0.000570,45343516,23916904,0,0,56326,0,1,1 +1773626136.442158,1.05,4,3992.50,53.67,1616.80,2101.11,0.00,3517947971130.784180,3517947965276.421875,75,0,0.000126,0.000175,45343526,23916916,0,0,56328,0,1,1 +1773626141.437641,0.75,4,3992.50,53.45,1622.84,2092.64,0.00,0.126872,0.000000,205,0,0.000205,0.000562,45343533,23916930,0,0,56331,0,1,1 +1773626146.437569,0.75,4,3992.50,53.38,1625.06,2090.12,0.00,35430.304958,41281.617225,2453304,2663175,0.000000,0.000700,45343533,23916937,0,0,56333,0,1,1 +1773626151.438928,13.98,4,3992.50,60.35,1330.95,2362.68,0.00,3517480891401.858398,3517480885561.417480,253,490,12.019328,0.013643,45345057,23917837,0,0,56336,0,1,1 +1773626156.441945,33.43,4,3992.50,60.04,1342.77,2350.68,0.00,0.000000,0.000000,253,490,119.492973,0.037390,45357183,23920693,0,0,56338,0,1,1 +1773626161.441569,28.20,4,3992.50,60.22,1335.84,2357.62,0.00,0.517715,3518701758945.569336,258,2,118.773618,0.021500,45369436,23922344,0,0,56341,0,1,1 +1773626166.441566,27.69,4,3992.50,59.58,1360.85,2332.62,0.00,35433.160854,41281.169970,2453820,2663343,119.766606,0.032300,45381781,23924824,0,0,56343,0,1,1 +1773626171.441544,29.66,4,3992.50,88.93,195.20,3481.80,0.00,3518452834083.106934,3518452828246.268066,253,490,118.567891,0.031970,45394056,23927325,0,0,56346,0,1,1 +1773626176.441345,61.99,4,3992.50,61.57,1320.08,2410.68,0.00,35674.426938,41274.562630,2469688,2665473,117.168681,0.034742,45406238,23930052,0,0,56348,0,1,1 +1773626181.441929,60.33,4,3992.50,71.93,914.06,2816.29,0.00,3518026300104.179199,3518026294504.919922,253,490,117.553003,0.033236,45418507,23932650,0,0,56351,0,1,1 +1773626186.460556,59.68,4,3992.50,94.12,68.25,3685.10,0.00,3505378198626.361328,3505378198617.377930,11,0,114.013169,0.026768,45428996,23934739,0,0,56353,0,1,1 +1773626191.441370,62.12,4,3992.50,76.81,718.09,3007.35,0.00,0.053722,0.000000,75,0,120.778695,0.030529,45440158,23936963,0,0,56356,0,1,1 +1773626196.438865,35.76,4,3992.50,62.97,1281.30,2465.30,0.00,3520200866831.558594,0.000000,11,0,67.283168,0.018090,45446481,23938345,0,0,56358,0,1,1 +1773626201.443296,29.19,4,3992.50,53.75,1636.23,2104.51,0.00,0.053468,0.000000,75,0,0.002212,0.001090,45446522,23938378,0,0,56361,0,1,1 +1773626206.442054,0.65,4,3992.50,53.36,1640.56,2089.07,0.00,3519311316423.638672,0.000000,11,0,0.000000,0.000020,45446522,23938380,0,0,56363,0,1,1 +1773626211.437607,0.60,4,3992.50,53.59,1631.29,2098.29,0.00,36771.726830,41332.852598,2541349,2677426,0.000000,0.000674,45446522,23938387,0,0,56366,0,1,1 +1773626216.437735,0.60,4,3992.50,53.49,1634.05,2094.24,0.00,3518347310035.711426,3518347305478.578613,205,0,0.000000,0.000020,45446522,23938389,0,0,56368,0,1,1 +1773626221.442533,0.65,4,3992.50,53.50,1632.43,2094.67,0.00,3515063960178.368652,0.000000,75,0,0.000000,0.000030,45446522,23938392,0,0,56371,0,1,1 +1773626226.442320,0.80,4,3992.50,53.48,1626.52,2093.84,0.00,2.121965,0.000195,258,2,0.000031,0.000045,45446524,23938396,0,0,56373,0,1,1 +1773626231.439172,1.15,4,3992.50,53.77,1608.12,2105.34,0.00,3520653894958.249512,10.681725,253,490,0.000000,0.000030,45446524,23938399,0,0,56376,0,1,1 +1773626236.441855,0.65,4,3992.50,53.61,1614.51,2098.95,0.00,0.000000,0.000000,253,490,0.000050,0.000082,45446528,23938405,0,0,56378,0,1,1 +1773626241.438655,0.80,4,3992.50,53.39,1622.75,2090.40,0.00,36767.452423,41312.279618,2541719,2677843,0.000033,0.000069,45446531,23938411,0,0,56381,0,1,1 +1773626246.441576,0.65,4,3992.50,53.42,1621.77,2091.38,0.00,3516382881028.974121,3516382881028.029785,2540216,2677356,0.000101,0.000144,45446539,23938421,0,0,56383,0,1,1 +1773626251.441663,0.60,4,3992.50,53.41,1622.13,2090.93,0.00,3518376238093.004883,3518376233543.038086,75,0,0.000000,0.000030,45446539,23938424,0,0,56386,0,1,1 +1773626256.438905,1.05,4,3992.50,53.51,1622.09,2094.89,0.00,3520379006290.316895,0.000000,11,0,0.000000,0.000020,45446539,23938426,0,0,56388,0,1,1 +1773626261.443540,11.07,4,3992.50,78.05,619.28,3055.96,0.00,36717.361318,41258.331837,2542248,2677909,5.608316,0.009686,45447406,23939030,0,0,56391,0,1,1 +1773626266.442014,67.10,4,3992.50,91.79,121.23,3593.92,0.00,3519511517102.621582,3519511512553.877930,258,2,114.394583,0.049564,45459165,23942852,0,0,56393,0,1,1 +1773626271.445847,62.24,4,3992.50,94.70,47.67,3707.64,0.00,3515742062110.662598,3515742062112.836426,11,0,118.676898,0.043613,45471513,23946176,0,0,56396,0,1,1 +1773626276.442906,62.01,4,3992.50,66.98,1108.09,2622.31,0.00,0.000000,0.000000,11,0,118.433899,0.046453,45483681,23949731,0,0,56398,0,1,1 +1773626281.443865,62.81,4,3992.50,73.28,858.40,2869.03,0.00,0.000000,0.000000,11,0,118.541982,0.047135,45495941,23953428,0,0,56401,0,1,1 +1773626286.442757,62.28,4,3992.50,83.42,435.72,3266.02,0.00,0.000000,0.000000,11,0,119.592457,0.043532,45508264,23956827,0,0,56403,0,1,1 +1773626291.452673,62.75,4,3992.50,95.23,27.50,3728.54,0.00,1.654434,10.654065,253,490,118.329577,0.038487,45520525,23959836,0,0,56406,0,1,1 +1773626296.441533,30.00,4,3992.50,59.89,1348.37,2344.93,0.00,3526294234633.783691,3526294234624.565430,205,0,120.432942,0.056146,45532723,23964218,0,0,56408,0,1,1 +1773626301.440203,28.49,4,3992.50,60.19,1336.04,2356.59,0.00,3519373214344.359863,0.000000,11,0,120.997009,0.045782,45544976,23967797,0,0,56411,0,1,1 +1773626306.441687,6.98,4,3992.50,53.71,1589.82,2102.69,0.00,2.174745,0.000195,258,2,70.479074,0.032578,45552247,23970282,0,0,56413,0,1,1 +1773626311.442358,0.70,4,3992.50,53.76,1587.88,2104.71,0.00,3517965161281.411133,10.673568,253,490,0.000000,0.000030,45552247,23970285,0,0,56416,0,1,1 +1773626316.437620,1.00,4,3992.50,53.84,1588.11,2107.83,0.00,3521773937546.733398,3521773937537.708008,11,0,0.000000,0.000020,45552247,23970287,0,0,56418,0,1,1 +1773626321.441762,0.75,4,3992.50,53.63,1595.93,2099.69,0.00,0.000000,0.000000,11,0,0.000000,0.000030,45552247,23970290,0,0,56421,0,1,1 +1773626326.441646,0.75,4,3992.50,53.61,1596.75,2098.84,0.00,38231.799160,41304.591244,2640572,2696190,0.000000,0.000020,45552247,23970292,0,0,56423,0,1,1 +1773626331.442120,0.70,4,3992.50,53.59,1597.31,2098.29,0.00,3518103467984.040039,3518103464911.610840,11,0,0.000000,0.000030,45552247,23970295,0,0,56426,0,1,1 +1773626336.442497,0.75,4,3992.50,53.59,1597.34,2098.28,0.00,2.175227,0.000195,258,2,0.000000,0.000020,45552247,23970297,0,0,56428,0,1,1 +1773626341.438872,0.80,4,3992.50,53.61,1596.83,2098.79,0.00,38266.410342,41344.381387,2642090,2696691,0.000000,0.000674,45552247,23970304,0,0,56431,0,1,1 +1773626346.442312,0.90,4,3992.50,53.90,1585.38,2110.21,0.00,3516018500814.617188,3516018497740.991699,258,2,0.000000,0.000020,45552247,23970306,0,0,56433,0,1,1 +1773626351.437582,1.61,4,3992.50,62.85,1218.56,2460.65,0.00,3521768074588.312500,10.685106,253,490,0.000126,0.000185,45552257,23970319,0,0,56436,0,1,1 +1773626356.439428,29.80,4,3992.50,78.22,680.23,3062.60,0.00,0.000000,0.000000,253,490,0.000016,0.000069,45552259,23970324,0,0,56438,0,1,1 +1773626361.438596,29.69,4,3992.50,79.52,623.43,3113.33,0.00,3519022361069.379395,3519022361060.180176,205,0,0.000000,0.000030,45552259,23970327,0,0,56441,0,1,1 +1773626366.438651,30.02,4,3992.50,80.08,607.16,3135.31,0.00,38825.175397,41324.453634,2681863,2708313,0.000000,0.000020,45552259,23970329,0,0,56443,0,1,1 +1773626371.448430,32.45,4,3992.50,78.78,592.87,3084.21,0.00,3511569390130.116211,3511569387635.868652,11,0,0.204945,0.004698,45552374,23970415,0,0,56446,0,1,1 +1773626376.440696,73.75,4,3992.50,88.86,242.20,3479.08,0.00,0.000000,0.000000,11,0,99.295265,0.047497,45562802,23974030,0,0,56448,0,1,1 +1773626381.443442,64.19,4,3992.50,59.48,1427.44,2328.59,0.00,0.000000,0.000000,11,0,121.901374,0.044606,45575370,23977530,0,0,56451,0,1,1 +1773626386.443111,29.13,4,3992.50,59.79,1351.96,2340.98,0.00,0.000000,0.000000,11,0,122.176473,0.048161,45587852,23981296,0,0,56453,0,1,1 +1773626391.437585,28.49,4,3992.50,59.62,1358.94,2334.07,0.00,1.659549,10.687005,253,490,120.496212,0.050892,45600015,23985297,0,0,56456,0,1,1 +1773626396.442063,28.66,4,3992.50,59.35,1369.08,2323.84,0.00,3515288947737.729492,3515288947728.540039,205,0,120.055183,0.049356,45612104,23989173,0,0,56458,0,1,1 +1773626401.440149,28.93,4,3992.50,59.41,1366.12,2325.95,0.00,1.478007,10.679285,253,490,120.206990,0.051593,45624150,23993244,0,0,56461,0,1,1 +1773626406.437954,29.52,4,3992.50,59.80,1349.77,2341.25,0.00,3519982160027.421387,3519982160018.399902,11,0,120.217959,0.044989,45636392,23996710,0,0,56463,0,1,1 +1773626411.437594,29.11,4,3992.50,59.59,1357.69,2333.06,0.00,39693.028566,41328.274734,2753568,2719844,119.571042,0.050113,45648410,24000605,0,0,56466,0,1,1 +1773626416.441551,9.36,4,3992.50,53.70,1587.89,2102.52,0.00,3515655356969.516602,3515655355335.680176,11,0,81.446148,0.039931,45656646,24003751,0,0,56468,0,1,1 +1773626421.437708,1.25,4,3992.50,53.31,1603.22,2087.26,0.00,0.180412,0.000000,205,0,0.003133,0.001580,45656705,24003793,0,0,56471,0,1,1 +1773626426.440125,0.80,4,3992.50,53.31,1603.20,2087.38,0.00,39684.201337,41316.329540,2755423,2720501,0.000308,0.000574,45656712,24003806,0,0,56473,0,1,1 +1773626431.437634,0.55,4,3992.50,53.32,1602.96,2087.62,0.00,3520191085379.070801,3520191083745.339355,205,0,0.000213,0.000570,45656720,24003821,0,0,56476,0,1,1 +1773626436.441746,0.95,4,3992.50,53.55,1600.44,2096.64,0.00,0.000000,0.000000,205,0,0.000000,0.000020,45656720,24003823,0,0,56478,0,1,1 +1773626441.441550,1.55,4,3992.50,63.42,1198.25,2483.04,0.00,3518575400931.944824,0.000000,75,0,0.001127,0.001232,45656729,24003840,0,0,56481,0,1,1 +1773626446.442177,29.51,4,3992.50,85.21,397.66,3336.24,0.00,3517996187252.318848,0.000000,11,0,0.000000,0.000020,45656729,24003842,0,0,56483,0,1,1 +1773626451.442820,28.87,4,3992.50,77.04,719.99,3016.14,0.00,40024.064987,41337.576725,2775352,2727650,0.000000,0.000030,45656729,24003845,0,0,56486,0,1,1 +1773626456.442533,28.65,4,3992.50,80.67,574.53,3158.50,0.00,3518638919868.698242,3518638918554.888184,75,0,0.000000,0.000020,45656729,24003847,0,0,56488,0,1,1 +1773626461.442963,29.50,4,3992.50,82.49,499.36,3229.72,0.00,0.126747,0.000000,205,0,0.000000,0.000030,45656729,24003850,0,0,56491,0,1,1 +1773626466.443430,29.20,4,3992.50,82.85,475.59,3243.60,0.00,40497.989361,41337.652483,2803549,2737322,0.000126,0.000175,45656739,24003862,0,0,56493,0,1,1 +1773626471.440465,29.65,4,3992.50,81.91,518.73,3207.12,0.00,3520525044627.324707,3520525043787.211914,75,0,0.000039,0.000546,45656742,24003871,0,0,56496,0,1,1 +1773626476.443238,2.00,4,3992.50,53.19,1646.77,2082.31,0.00,2.120699,0.000195,258,2,0.000031,0.000206,45656744,24003876,0,0,56498,0,1,1 +1773626481.439088,1.40,4,3992.50,53.20,1633.07,2082.96,0.00,3521360217457.695801,3521360217459.692871,205,0,0.001680,0.001291,45656773,24003906,0,0,56501,0,1,1 +1773626486.441029,40.51,4,3992.50,59.64,1328.14,2335.11,0.00,40684.001710,41329.118262,2816188,2741334,92.696203,0.048745,45666454,24007568,0,0,56503,0,1,1 +1773626491.442023,28.36,4,3992.50,59.15,1377.34,2315.90,0.00,9.724239,10.674343,2817691,2741839,119.947670,0.035980,45678840,24010165,0,0,56506,0,1,1 +1773626496.438561,27.30,4,3992.50,59.19,1375.82,2317.41,0.00,3520874836572.418457,3520874836569.202637,2816303,2741357,118.646386,0.022781,45691014,24011888,0,0,56508,0,1,1 +1773626501.438540,28.49,4,3992.50,59.28,1372.22,2320.81,0.00,9.818401,10.979441,2817820,2742155,119.763422,0.025777,45703182,24013934,0,0,56511,0,1,1 +1773626506.437603,17.52,4,3992.50,52.15,1654.37,2041.98,0.00,3519096541290.081055,3519096540645.875977,11,0,63.698797,0.012696,45709639,24014905,0,0,56513,0,1,1 +1773626511.437635,1.25,4,3992.50,52.19,1653.20,2043.20,0.00,40714.794828,41345.367914,2827029,2741834,0.003294,0.002998,45709681,24014942,0,0,56516,0,1,1 +1773626516.442142,0.75,4,3992.50,52.10,1656.54,2039.88,0.00,3515268568355.641602,3515268567725.452148,205,0,0.000000,0.000020,45709681,24014944,0,0,56518,0,1,1 +1773626521.437816,0.85,4,3992.50,52.23,1651.66,2044.76,0.00,3521483884756.923828,0.000000,11,0,0.000000,0.000030,45709681,24014947,0,0,56521,0,1,1 +1773626526.441087,1.00,4,3992.50,52.55,1639.39,2057.32,0.00,0.053481,0.000000,75,0,0.000031,0.000045,45709683,24014951,0,0,56523,0,1,1 +1773626531.442411,0.65,4,3992.50,52.54,1639.50,2056.92,0.00,1.603774,10.672368,253,490,0.000039,0.000063,45709686,24014957,0,0,56526,0,1,1 +1773626536.437572,0.75,4,3992.50,52.51,1640.70,2055.72,0.00,0.518177,3521845666604.785645,258,2,0.000520,0.001341,45709705,24014985,0,0,56528,0,1,1 +1773626541.442304,23.10,4,3992.50,58.82,1393.20,2302.83,0.00,3515110547627.987305,3515110547630.160645,11,0,43.024541,0.072441,45714356,24017239,0,0,56531,0,1,1 +1773626546.440233,33.06,4,3992.50,58.85,1391.17,2304.11,0.00,40732.563328,41363.124695,2827079,2742091,122.216649,0.050569,45726629,24021151,0,0,56533,0,1,1 +1773626551.442133,28.58,4,3992.50,58.95,1386.79,2307.88,0.00,3517099970276.095215,3517099969645.854980,205,0,122.119584,0.047215,45738927,24024844,0,0,56536,0,1,1 +1773626556.442092,28.67,4,3992.50,58.71,1395.31,2298.73,0.00,0.000000,0.000000,205,0,120.165418,0.051947,45751153,24028905,0,0,56538,0,1,1 +1773626561.437624,13.86,4,3992.50,52.30,1646.21,2047.79,0.00,3521584230371.479980,0.000000,11,0,103.232308,0.044459,45761549,24032386,0,0,56541,0,1,1 +1773626566.437615,1.85,4,3992.50,52.35,1644.45,2049.54,0.00,0.053516,0.000000,75,0,0.003764,0.001632,45761617,24032431,0,0,56543,0,1,1 +1773626571.437646,0.75,4,3992.50,52.44,1640.85,2053.12,0.00,0.126757,0.000000,205,0,0.000176,0.000191,45761620,24032436,0,0,56546,0,1,1 +1773626576.438939,0.60,4,3992.50,52.44,1640.79,2053.18,0.00,40705.161675,41335.551211,2827102,2742218,0.000000,0.000020,45761620,24032438,0,0,56548,0,1,1 +1773626581.442140,0.70,4,3992.50,52.44,1640.80,2053.16,0.00,3516186205620.358398,3516186204988.215820,258,2,0.000062,0.000080,45761624,24032445,0,0,56551,0,1,1 +1773626586.437673,1.05,4,3992.50,52.48,1638.61,2054.88,0.00,3521583273053.630859,10.684545,253,490,0.000070,0.000078,45761629,24032452,0,0,56553,0,1,1 +1773626591.437992,0.60,4,3992.50,52.44,1640.04,2053.10,0.00,0.517643,3518213147246.386719,258,2,0.000000,0.000030,45761629,24032455,0,0,56556,0,1,1 +1773626596.441849,0.65,4,3992.50,52.44,1640.23,2052.95,0.00,3515725231173.629395,3515725231175.749512,75,0,0.000000,0.000020,45761629,24032457,0,0,56558,0,1,1 +1773626601.439280,0.95,4,3992.50,52.49,1638.26,2054.91,0.00,2.122966,0.000195,258,2,0.000000,0.000030,45761629,24032460,0,0,56561,0,1,1 +1773626606.437633,0.65,4,3992.50,52.49,1638.04,2055.13,0.00,40727.589606,41360.004700,2827125,2742280,0.000000,0.000664,45761629,24032466,0,0,56563,0,1,1 +1773626611.442067,0.60,4,3992.50,52.48,1638.58,2054.61,0.00,3515320048106.562012,3515320047476.908691,205,0,0.000101,0.000154,45761637,24032477,0,0,56566,0,1,1 +1773626616.441543,0.65,4,3992.50,52.48,1638.58,2054.60,0.00,3518805589825.173828,0.000000,11,0,0.000033,0.000059,45761640,24032482,0,0,56568,0,1,1 +1773626621.437637,1.05,4,3992.50,52.64,1631.50,2061.16,0.00,1.659011,10.683543,253,490,0.000000,0.000030,45761640,24032485,0,0,56571,0,1,1 +1773626626.440794,0.70,4,3992.50,52.34,1643.27,2049.42,0.00,0.517349,3516217099635.282227,258,2,0.000000,0.000020,45761640,24032487,0,0,56573,0,1,1 +1773626631.438869,35.31,4,3992.50,58.47,1403.29,2289.34,0.00,3519792376815.455078,3519792376817.451172,205,0,78.345023,0.034017,45769926,24034945,0,0,56576,0,1,1 +1773626636.442026,29.12,4,3992.50,59.02,1381.79,2310.82,0.00,1.993858,0.000195,258,2,119.293311,0.030422,45782124,24037227,0,0,56578,0,1,1 +1773626641.437560,27.80,4,3992.50,58.83,1389.11,2303.49,0.00,3521582256521.171875,10.684542,253,490,119.083891,0.053290,45794488,24041277,0,0,56581,0,1,1 +1773626646.441478,27.70,4,3992.50,58.71,1393.99,2298.75,0.00,3515682640594.809082,3515682640585.618652,205,0,119.687646,0.066674,45806840,24046412,0,0,56583,0,1,1 +1773626651.442007,27.55,4,3992.50,58.75,1392.49,2300.07,0.00,3518065151681.279297,0.000000,75,0,118.573736,0.089367,45819330,24053419,0,0,56586,0,1,1 +1773626656.439348,28.68,4,3992.50,58.90,1386.71,2305.88,0.00,40747.913769,41379.441329,2828642,2743032,120.049525,0.076784,45831919,24059424,0,0,56588,0,1,1 +1773626661.438716,27.86,4,3992.50,58.82,1389.83,2302.81,0.00,3518881812656.855469,3518881812034.656250,253,490,118.392873,0.055498,45844288,24063726,0,0,56591,0,1,1 +1773626666.438737,28.09,4,3992.50,58.92,1385.73,2306.91,0.00,0.517674,3518421901626.199707,258,2,120.177926,0.059750,45856834,24068387,0,0,56593,0,1,1 +1773626671.438257,16.10,4,3992.50,53.99,1578.89,2113.81,0.00,40730.525566,41361.554011,2828762,2743061,111.964350,0.023991,45868205,24070252,0,0,56596,0,1,1 +1773626676.437592,1.30,4,3992.50,53.60,1596.46,2098.38,0.00,3518904893251.235840,3518904892622.359375,11,0,0.003788,0.003011,45868266,24070298,0,0,56598,0,1,1 +1773626681.439579,0.70,4,3992.50,53.12,1612.96,2079.89,0.00,0.000000,0.000000,11,0,0.000008,0.000038,45868267,24070302,0,0,56601,0,1,1 +1773626686.442072,0.65,4,3992.50,52.88,1622.35,2070.50,0.00,1.656889,10.669875,253,490,0.000000,0.000020,45868267,24070304,0,0,56603,0,1,1 +1773626691.441606,0.60,4,3992.50,52.93,1620.66,2072.20,0.00,40721.365679,41340.222808,2827275,2742697,0.000000,0.000030,45868267,24070307,0,0,56606,0,1,1 +1773626696.442164,0.55,4,3992.50,52.93,1620.66,2072.20,0.00,3518044550874.099121,3518044550246.298340,75,0,0.000000,0.000020,45868267,24070309,0,0,56608,0,1,1 +1773626701.442157,0.70,4,3992.50,52.93,1620.66,2072.20,0.00,0.000000,0.000000,75,0,0.000000,0.000030,45868267,24070312,0,0,56611,0,1,1 +1773626706.441547,0.95,4,3992.50,52.90,1621.68,2071.27,0.00,40734.073977,41362.868091,2828800,2743245,0.000000,0.000020,45868267,24070314,0,0,56613,0,1,1 +1773626711.442013,0.70,4,3992.50,52.70,1629.44,2063.41,0.00,3518109095243.193848,3518109095242.353516,2827298,2742776,0.000000,0.000030,45868267,24070317,0,0,56616,0,1,1 +1773626716.440570,0.65,4,3992.50,52.70,1629.45,2063.40,0.00,3519452957603.626465,3519452956975.621582,11,0,0.000025,0.000051,45868269,24070321,0,0,56618,0,1,1 +1773626721.438695,0.55,4,3992.50,52.70,1629.45,2063.40,0.00,0.180341,0.000000,205,0,0.000117,0.000170,45868279,24070334,0,0,56621,0,1,1 +1773626726.442278,0.60,4,3992.50,52.70,1629.45,2063.40,0.00,0.000000,0.000000,205,0,0.001229,0.001243,45868288,24070350,0,0,56623,0,1,1 +1773626731.437858,0.70,4,3992.50,52.70,1629.45,2063.40,0.00,3521550128194.732910,0.000000,75,0,0.000205,0.000562,45868295,24070364,0,0,56626,0,1,1 +1773626736.441678,0.90,4,3992.50,52.74,1627.99,2064.83,0.00,40688.293254,41315.743003,2827298,2742801,0.000000,0.000502,45868295,24070369,0,0,56628,0,1,1 +1773626741.442364,32.68,4,3992.50,59.34,1369.43,2323.36,0.00,3517954603294.925781,3517954602667.135742,11,0,66.489182,0.030108,45875344,24072467,0,0,56631,0,1,1 +1773626746.441169,29.13,4,3992.50,58.98,1383.43,2309.31,0.00,40729.280472,41357.300368,2827305,2742946,118.791842,0.017818,45887400,24073768,0,0,56633,0,1,1 +1773626751.437544,28.25,4,3992.50,59.08,1379.54,2313.09,0.00,9.733228,10.690856,2828808,2743452,119.650279,0.016449,45899498,24074997,0,0,56636,0,1,1 +1773626756.440532,27.77,4,3992.50,59.02,1382.18,2310.57,0.00,3516336226881.821289,3516336226253.369629,11,0,119.090597,0.020321,45911480,24076570,0,0,56638,0,1,1 +1773626761.442437,28.39,4,3992.50,58.85,1388.74,2303.95,0.00,0.000000,0.000000,11,0,119.129276,0.049658,45923706,24080407,0,0,56641,0,1,1 +1773626766.440725,28.18,4,3992.50,58.97,1383.91,2308.80,0.00,0.053534,0.000000,75,0,119.423677,0.075611,45936141,24086348,0,0,56643,0,1,1 +1773626771.442180,28.29,4,3992.50,59.52,1365.08,2330.20,0.00,3517413732939.618164,0.000000,11,0,118.947895,0.065492,45948579,24091417,0,0,56646,0,1,1 +1773626776.438200,28.07,4,3992.50,59.06,1383.14,2312.14,0.00,40751.981938,41380.602956,2827305,2743059,119.913354,0.064319,45961018,24096390,0,0,56648,0,1,1 +1773626781.440087,18.62,4,3992.50,58.92,1388.38,2307.00,0.00,3517110190625.664551,3517110189997.727051,75,0,118.901096,0.077917,45973425,24102408,0,0,56651,0,1,1 +1773626786.437697,1.20,4,3992.50,53.68,1593.78,2101.58,0.00,2.122889,0.000195,258,2,5.215073,0.006406,45974078,24102827,0,0,56653,0,1,1 +1773626791.440559,0.80,4,3992.50,53.12,1615.46,2079.91,0.00,40694.304237,41324.269930,2827327,2743133,0.002172,0.001038,45974122,24102856,0,0,56656,0,1,1 +1773626796.442132,1.10,4,3992.50,53.09,1621.39,2078.59,0.00,3517330597667.336426,3517330597039.329102,75,0,0.000000,0.000020,45974122,24102858,0,0,56658,0,1,1 +1773626801.441832,0.65,4,3992.50,53.06,1622.54,2077.46,0.00,0.000000,0.000000,75,0,0.000000,0.000513,45974122,24102864,0,0,56661,0,1,1 +1773626806.438555,0.80,4,3992.50,53.06,1622.54,2077.45,0.00,2.123267,0.000195,258,2,0.000000,0.000181,45974122,24102867,0,0,56663,0,1,1 +1773626811.442340,0.60,4,3992.50,53.07,1622.29,2077.70,0.00,0.000000,0.000000,258,2,0.000000,0.000030,45974122,24102870,0,0,56666,0,1,1 +1773626816.437568,0.60,4,3992.50,53.07,1622.29,2077.70,0.00,40766.233920,41398.221231,2828830,2743700,0.000000,0.000020,45974122,24102872,0,0,56668,0,1,1 +1773626821.441576,0.65,4,3992.50,53.07,1622.29,2077.70,0.00,3515619062678.658691,3515619062049.954102,11,0,0.000000,0.000030,45974122,24102875,0,0,56671,0,1,1 +1773626826.437947,0.60,4,3992.50,53.07,1622.30,2077.69,0.00,0.000000,0.000000,11,0,0.000031,0.000045,45974124,24102879,0,0,56673,0,1,1 +1773626831.440486,0.95,4,3992.50,53.14,1619.61,2080.35,0.00,0.000000,0.000000,11,0,0.000092,0.000139,45974132,24102890,0,0,56676,0,1,1 +1773626836.442345,0.75,4,3992.50,53.13,1619.64,2080.35,0.00,0.180206,0.000000,205,0,0.000101,0.000144,45974140,24102900,0,0,56678,0,1,1 +1773626841.441805,0.60,4,3992.50,53.13,1619.68,2080.32,0.00,3518817859820.059570,0.000000,11,0,0.000000,0.000030,45974140,24102903,0,0,56681,0,1,1 +1773626846.438063,0.65,4,3992.50,53.12,1620.25,2079.75,0.00,0.000000,0.000000,11,0,0.000000,0.000020,45974140,24102905,0,0,56683,0,1,1 +1773626851.441575,19.24,4,3992.50,59.25,1380.24,2319.68,0.00,0.180147,0.000000,205,0,20.219313,0.016950,45976495,24104069,0,0,56686,0,1,1 +1773626856.442108,33.42,4,3992.50,59.80,1360.66,2341.31,0.00,1.477284,10.674057,253,490,120.159180,0.045052,45988821,24107520,0,0,56688,0,1,1 +1773626861.441563,28.05,4,3992.50,59.61,1366.05,2334.02,0.00,40722.794848,41342.148802,2827340,2743443,119.212599,0.112596,46001585,24116224,0,0,56691,0,1,1 +1773626866.437860,28.79,4,3992.50,59.53,1369.16,2330.87,0.00,3521044482589.084473,3521044481960.134766,205,0,119.286400,0.111016,46014342,24124854,0,0,56693,0,1,1 +1773626871.441621,28.04,4,3992.50,59.35,1376.26,2323.68,0.00,3515793333702.446777,0.000000,75,0,119.907387,0.113304,46027193,24133696,0,0,56696,0,1,1 +1773626876.437890,28.02,4,3992.50,59.19,1382.62,2317.22,0.00,0.000000,0.000000,75,0,118.486605,0.107872,46039975,24142099,0,0,56698,0,1,1 +1773626881.441570,28.00,4,3992.50,59.29,1378.36,2321.46,0.00,1.603019,10.667345,253,490,120.111722,0.108060,46052825,24150511,0,0,56701,0,1,1 +1773626886.442079,28.54,4,3992.50,59.47,1371.64,2328.26,0.00,0.000000,0.000000,253,490,118.586056,0.106819,46065569,24158856,0,0,56703,0,1,1 +1773626891.441534,29.15,4,3992.50,59.36,1375.55,2324.12,0.00,40732.606313,41353.026041,2828848,2744016,119.807575,0.102294,46078296,24166828,0,0,56706,0,1,1 +1773626896.437633,2.01,4,3992.50,54.02,1584.81,2114.92,0.00,3521184539995.812988,3521184539365.952148,11,0,49.926513,0.047031,46083740,24170390,0,0,56708,0,1,1 +1773626901.441676,0.70,4,3992.50,53.44,1607.47,2092.26,0.00,0.000000,0.000000,11,0,0.000039,0.000063,46083743,24170396,0,0,56711,0,1,1 +1773626906.437613,0.60,4,3992.50,53.20,1616.77,2082.93,0.00,2.177160,0.000195,258,2,0.000000,0.000020,46083743,24170398,0,0,56713,0,1,1 +1773626911.441554,0.60,4,3992.50,53.21,1616.41,2083.32,0.00,0.000000,0.000000,258,2,0.000000,0.000030,46083743,24170401,0,0,56716,0,1,1 +1773626916.437558,0.65,4,3992.50,53.21,1616.42,2083.31,0.00,3521251268242.309082,3521251268244.486328,11,0,0.000000,0.000020,46083743,24170403,0,0,56718,0,1,1 +1773626921.442387,1.00,4,3992.50,53.20,1616.66,2083.08,0.00,1.656115,10.664895,253,490,0.000000,0.000030,46083743,24170406,0,0,56721,0,1,1 +1773626926.442468,0.80,4,3992.50,53.22,1615.95,2083.78,0.00,3518380525660.245605,3518380525651.228516,11,0,0.000000,0.000020,46083743,24170408,0,0,56723,0,1,1 +1773626931.442189,0.60,4,3992.50,53.22,1615.95,2083.78,0.00,0.000000,0.000000,11,0,0.000000,0.000030,46083743,24170411,0,0,56726,0,1,1 +1773626936.442437,0.70,4,3992.50,53.19,1617.12,2082.61,0.00,0.000000,0.000000,11,0,0.000000,0.000664,46083743,24170417,0,0,56728,0,1,1 +1773626941.437638,0.65,4,3992.50,53.19,1617.12,2082.61,0.00,0.000000,0.000000,11,0,0.000126,0.000185,46083753,24170430,0,0,56731,0,1,1 +1773626946.437594,0.65,4,3992.50,53.20,1616.64,2083.09,0.00,0.000000,0.000000,11,0,0.000008,0.000028,46083754,24170433,0,0,56733,0,1,1 +1773626951.437819,1.00,4,3992.50,53.20,1619.61,2082.79,0.00,40718.481364,41347.060090,2827369,2743709,0.000000,0.000030,46083754,24170436,0,0,56736,0,1,1 +1773626956.441952,0.65,4,3992.50,53.20,1619.37,2083.03,0.00,3515531865833.854492,3515531865205.766602,11,0,0.000000,0.000020,46083754,24170438,0,0,56738,0,1,1 +1773626961.441619,16.64,4,3992.50,59.59,1369.21,2332.99,0.00,0.053519,0.000000,75,0,10.221256,0.012106,46085100,24171214,0,0,56741,0,1,1 +1773626966.442147,33.33,4,3992.50,59.56,1370.32,2331.96,0.00,1.604030,10.674070,253,490,118.552730,0.033534,46097291,24173756,0,0,56743,0,1,1 +1773626971.439239,28.61,4,3992.50,59.44,1375.30,2327.03,0.00,3520484514966.914062,3520484514957.838379,75,0,119.839690,0.026973,46109688,24175758,0,0,56746,0,1,1 +1773626976.438100,27.81,4,3992.50,59.84,1359.60,2342.75,0.00,0.000000,0.000000,75,0,118.594876,0.021964,46121974,24177340,0,0,56748,0,1,1 +1773626981.439564,28.30,4,3992.50,59.57,1368.38,2332.41,0.00,3517407181212.940430,0.000000,11,0,119.732538,0.024906,46134364,24179259,0,0,56751,0,1,1 +1773626986.437716,27.85,4,3992.50,59.73,1362.35,2338.40,0.00,0.053535,0.000000,75,0,119.413127,0.032971,46146707,24181850,0,0,56753,0,1,1 +1773626991.437981,27.99,4,3992.50,59.59,1367.55,2333.26,0.00,1.604114,10.674630,253,490,118.958905,0.025013,46158855,24183748,0,0,56756,0,1,1 +1773626996.441612,28.41,4,3992.50,60.18,1344.46,2356.35,0.00,3515884436294.296875,3515884436285.286133,11,0,120.084915,0.034736,46171335,24186444,0,0,56758,0,1,1 +1773627001.439382,28.23,4,3992.50,59.85,1357.23,2343.36,0.00,1.658454,10.679958,253,490,118.214849,0.030338,46183429,24188751,0,0,56761,0,1,1 +1773627006.442037,4.16,4,3992.50,53.64,1600.61,2100.25,0.00,3516569733118.141602,3516569733109.129395,11,0,61.854102,0.027710,46189767,24190873,0,0,56763,0,1,1 +1773627011.439790,1.20,4,3992.50,53.63,1601.10,2099.77,0.00,40739.058786,41368.258270,2827414,2744159,0.001705,0.000861,46189799,24190898,0,0,56766,0,1,1 +1773627016.441808,0.60,4,3992.50,53.66,1600.12,2100.75,0.00,0.000000,0.003124,2827414,2744161,0.000000,0.000020,46189799,24190900,0,0,56768,0,1,1 +1773627021.442171,0.75,4,3992.50,53.66,1600.12,2100.75,0.00,3518182095036.757324,3518182094416.899414,253,490,0.000000,0.000030,46189799,24190903,0,0,56771,0,1,1 +1773627026.438497,0.70,4,3992.50,53.66,1599.90,2100.96,0.00,3521024559837.823242,3521024559828.799316,11,0,0.000308,0.000575,46189806,24190916,0,0,56773,0,1,1 +1773627031.441813,0.65,4,3992.50,53.65,1600.44,2100.43,0.00,0.053480,0.000000,75,0,0.001134,0.001239,46189816,24190934,0,0,56776,0,1,1 +1773627036.442558,1.05,4,3992.50,53.84,1592.91,2107.98,0.00,1.603960,10.673605,253,490,0.000000,0.000020,46189816,24190936,0,0,56778,0,1,1 +1773627041.442441,0.60,4,3992.50,53.62,1601.52,2099.35,0.00,3518519137599.661133,3518519137590.643555,11,0,0.000205,0.000562,46189823,24190950,0,0,56781,0,1,1 +1773627046.440490,0.70,4,3992.50,53.63,1601.27,2099.59,0.00,0.180344,0.000000,205,0,0.000000,0.000020,46189823,24190952,0,0,56783,0,1,1 +1773627051.442395,0.75,4,3992.50,53.63,1601.05,2099.82,0.00,3517097395250.034668,0.000000,75,0,0.000076,0.000123,46189829,24190961,0,0,56786,0,1,1 +1773627056.442336,0.70,4,3992.50,53.46,1607.70,2093.17,0.00,2.121900,0.000195,258,2,0.000050,0.000082,46189833,24190967,0,0,56788,0,1,1 +1773627061.441824,0.60,4,3992.50,53.47,1607.23,2093.63,0.00,0.000000,0.000000,258,2,0.000000,0.000030,46189833,24190970,0,0,56791,0,1,1 +1773627066.442181,0.95,4,3992.50,53.47,1607.96,2093.63,0.00,3518185865460.972656,3518185865463.147949,11,0,0.000000,0.000664,46189833,24190976,0,0,56793,0,1,1 +1773627071.439877,12.37,4,3992.50,60.20,1344.07,2356.78,0.00,0.000000,0.000000,11,0,3.437521,0.007986,46190458,24191444,0,0,56796,0,1,1 +1773627076.441190,34.34,4,3992.50,60.15,1345.67,2355.11,0.00,0.053502,0.000000,75,0,118.510056,0.027756,46202676,24193514,0,0,56798,0,1,1 +1773627081.441587,27.64,4,3992.50,60.00,1351.68,2349.14,0.00,3518157917102.371094,0.000000,11,0,118.155709,0.017560,46214892,24194782,0,0,56801,0,1,1 +1773627086.437557,28.00,4,3992.50,59.94,1354.23,2346.61,0.00,2.177145,0.000195,258,2,119.859750,0.017291,46227002,24196079,0,0,56803,0,1,1 +1773627091.441896,28.41,4,3992.50,60.03,1350.69,2350.12,0.00,3515386571881.700195,3515386571883.820312,75,0,118.464760,0.027508,46239064,24198072,0,0,56806,0,1,1 +1773627096.437556,28.04,4,3992.50,59.95,1353.32,2347.34,0.00,0.126868,0.000000,205,0,120.270360,0.026990,46251216,24200174,0,0,56808,0,1,1 +1773627101.442087,28.27,4,3992.50,59.84,1357.93,2342.90,0.00,3515251221400.877930,0.000000,75,0,118.459592,0.035472,46263288,24202920,0,0,56811,0,1,1 +1773627106.441680,27.88,4,3992.50,59.97,1352.99,2347.78,0.00,3518723721665.927734,0.000000,11,0,119.774899,0.025597,46275446,24204932,0,0,56813,0,1,1 +1773627111.441753,27.86,4,3992.50,59.97,1353.00,2347.81,0.00,0.000000,0.000000,11,0,119.163707,0.030471,46287487,24207290,0,0,56816,0,1,1 +1773627116.441866,6.43,4,3992.50,56.02,1507.39,2193.28,0.00,40722.199169,41349.388703,2827744,2744511,69.293046,0.018099,46294433,24208695,0,0,56818,0,1,1 diff --git a/evaluation/data/pipeline_high-bw_run2/pipeline.duckdb b/evaluation/data/pipeline_high-bw_run2/pipeline.duckdb new file mode 100644 index 0000000..4d0309d Binary files /dev/null and b/evaluation/data/pipeline_high-bw_run2/pipeline.duckdb differ diff --git a/evaluation/data/pipeline_high-bw_run3/anomalies.jsonl b/evaluation/data/pipeline_high-bw_run3/anomalies.jsonl new file mode 100644 index 0000000..5d679e6 --- /dev/null +++ b/evaluation/data/pipeline_high-bw_run3/anomalies.jsonl @@ -0,0 +1,537 @@ +{"timestamp":"2026-03-16T05:29:07.987394201Z","score":0.5,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=0.50 RRCF-fast:w=0.20,s=0.50 RRCF-mid:w=0.20,s=0.50 RRCF-slow:w=0.20,s=0.50 COPOD:w=0.20,s=0.50"} +{"timestamp":"2026-03-16T05:29:38.026009493Z","score":1,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=1.00 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-16T05:30:08.126108276Z","score":0.8999999999999999,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=0.50 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-16T05:30:38.00911377Z","score":0.5322634659801535,"is_anomaly":false,"confidence":0.5914038510890595,"method":"SEAD","details":"MAD!:w=0.20,s=0.00 RRCF-fast:w=0.20,s=0.67 RRCF-mid:w=0.20,s=0.67 RRCF-slow:w=0.20,s=0.67 COPOD!:w=0.20,s=0.67"} +{"timestamp":"2026-03-16T05:31:14.671436205Z","score":1,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=1.00 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-16T05:31:38.315499562Z","score":0.6796228627624461,"is_anomaly":false,"confidence":0.6796228627624461,"method":"SEAD","details":"MAD!:w=0.20,s=0.60 RRCF-fast:w=0.20,s=0.80 RRCF-mid:w=0.20,s=0.80 RRCF-slow:w=0.20,s=0.80 COPOD!:w=0.20,s=0.40"} +{"timestamp":"2026-03-16T05:32:08.486137113Z","score":0.6660111613915561,"is_anomaly":false,"confidence":0.6660111613915561,"method":"SEAD","details":"MAD!:w=0.20,s=0.50 RRCF-fast:w=0.20,s=0.67 RRCF-mid:w=0.20,s=0.67 RRCF-slow:w=0.20,s=0.67 COPOD!:w=0.20,s=0.83"} +{"timestamp":"2026-03-16T05:32:39.138665241Z","score":0.5410224314054424,"is_anomaly":false,"confidence":0.601136034894936,"method":"SEAD","details":"MAD!:w=0.20,s=0.29 RRCF-fast:w=0.20,s=0.71 RRCF-mid:w=0.20,s=0.71 RRCF-slow:w=0.20,s=0.71 COPOD!:w=0.20,s=0.29"} +{"timestamp":"2026-03-16T05:33:13.382870613Z","score":0.875,"is_anomaly":false,"confidence":0.9722222222222223,"method":"SEAD","details":"MAD!:w=0.21,s=0.88 RRCF-fast:w=0.20,s=0.88 RRCF-mid:w=0.20,s=0.88 RRCF-slow:w=0.20,s=0.88 COPOD!:w=0.20,s=0.88"} +{"timestamp":"2026-03-16T05:33:40.79705459Z","score":0.7085672440100366,"is_anomaly":false,"confidence":0.7872969377889296,"method":"SEAD","details":"MAD!:w=0.21,s=0.33 RRCF-fast:w=0.20,s=0.78 RRCF-mid:w=0.20,s=0.78 RRCF-slow:w=0.20,s=0.78 COPOD!:w=0.20,s=0.89"} +{"timestamp":"2026-03-16T05:34:08.03007479Z","score":0.49846704740687664,"is_anomaly":false,"confidence":0.5538522748965297,"method":"SEAD","details":"MAD!:w=0.21,s=0.30 RRCF-fast:w=0.20,s=0.50 RRCF-mid:w=0.20,s=0.50 RRCF-slow:w=0.20,s=0.50 COPOD!:w=0.20,s=0.70"} +{"timestamp":"2026-03-16T05:34:37.990479108Z","score":0.5046699642219842,"is_anomaly":false,"confidence":0.5607444046910935,"method":"SEAD","details":"MAD!:w=0.21,s=0.09 RRCF-fast:w=0.20,s=0.64 RRCF-mid:w=0.20,s=0.64 RRCF-slow:w=0.20,s=0.64 COPOD!:w=0.20,s=0.55"} +{"timestamp":"2026-03-16T05:35:10.292908782Z","score":0.8642954772411104,"is_anomaly":false,"confidence":0.9603283080456784,"method":"SEAD","details":"MAD!:w=0.21,s=0.67 RRCF-fast:w=0.20,s=0.83 RRCF-mid:w=0.20,s=0.92 RRCF-slow:w=0.20,s=0.92 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-16T05:35:38.039597303Z","score":0.5839934676253731,"is_anomaly":false,"confidence":0.648881630694859,"method":"SEAD","details":"MAD!:w=0.21,s=0.54 RRCF-fast:w=0.20,s=0.54 RRCF-mid:w=0.20,s=0.62 RRCF-slow:w=0.20,s=0.62 COPOD!:w=0.20,s=0.62"} +{"timestamp":"2026-03-16T05:36:08.040725194Z","score":0.5220652462122118,"is_anomaly":false,"confidence":0.5966459956710992,"method":"SEAD","details":"MAD!:w=0.21,s=0.07 RRCF-fast:w=0.20,s=0.71 RRCF-mid:w=0.20,s=0.64 RRCF-slow:w=0.20,s=0.71 COPOD!:w=0.20,s=0.50"} +{"timestamp":"2026-03-16T05:36:38.02848974Z","score":0.9725823975556341,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.21,s=0.93 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=0.93"} +{"timestamp":"2026-03-16T05:37:08.711248158Z","score":0.9077439852449596,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.21,s=0.62 RRCF-fast:w=0.20,s=0.94 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-16T05:37:39.010652365Z","score":0.6576806213603863,"is_anomaly":false,"confidence":0.7245221472692079,"method":"SEAD","details":"MAD!:w=0.21,s=0.59 RRCF-fast:w=0.20,s=0.76 RRCF-mid:w=0.20,s=0.65 RRCF-slow:w=0.20,s=0.59 COPOD!:w=0.20,s=0.71"} +{"timestamp":"2026-03-16T05:38:08.071648565Z","score":0.5019723271816615,"is_anomaly":false,"confidence":0.5529888771955912,"method":"SEAD","details":"MAD!:w=0.21,s=0.06 RRCF-fast:w=0.20,s=0.67 RRCF-mid:w=0.20,s=0.78 RRCF-slow:w=0.20,s=0.78 COPOD!:w=0.20,s=0.28"} +{"timestamp":"2026-03-16T05:38:38.024067155Z","score":0.8424800850914634,"is_anomaly":false,"confidence":0.9281031863451188,"method":"SEAD","details":"MAD!:w=0.22,s=0.89 RRCF-fast:w=0.20,s=0.89 RRCF-mid:w=0.19,s=0.89 RRCF-slow:w=0.19,s=0.89 COPOD!:w=0.20,s=0.63"} +{"timestamp":"2026-03-16T05:39:07.982147432Z","score":0.8447373328833497,"is_anomaly":false,"confidence":0.9305898431873308,"method":"SEAD","details":"MAD!:w=0.22,s=0.60 RRCF-fast:w=0.20,s=0.90 RRCF-mid!:w=0.19,s=0.95 RRCF-slow:w=0.19,s=0.90 COPOD!:w=0.20,s=0.90"} +{"timestamp":"2026-03-16T05:39:38.516955081Z","score":0.6542474759155039,"is_anomaly":false,"confidence":0.7269416399061155,"method":"SEAD","details":"MAD!:w=0.22,s=0.57 RRCF-fast:w=0.19,s=0.71 RRCF-mid:w=0.19,s=0.76 RRCF-slow:w=0.19,s=0.76 COPOD!:w=0.20,s=0.48"} +{"timestamp":"2026-03-16T05:40:07.989543042Z","score":0.4899612676266386,"is_anomaly":false,"confidence":0.544401408474043,"method":"SEAD","details":"MAD!:w=0.22,s=0.18 RRCF-fast:w=0.19,s=0.77 RRCF-mid:w=0.19,s=0.68 RRCF-slow:w=0.19,s=0.77 COPOD!:w=0.20,s=0.09"} +{"timestamp":"2026-03-16T05:40:38.517167304Z","score":0.7887317583069753,"is_anomaly":false,"confidence":0.8763686203410838,"method":"SEAD","details":"MAD!:w=0.22,s=0.74 RRCF-fast:w=0.19,s=0.83 RRCF-mid:w=0.19,s=0.87 RRCF-slow:w=0.19,s=0.87 COPOD!:w=0.20,s=0.65"} +{"timestamp":"2026-03-16T05:41:08.07857552Z","score":0.7107667517078238,"is_anomaly":false,"confidence":0.7897408352309154,"method":"SEAD","details":"MAD!:w=0.22,s=0.42 RRCF-fast:w=0.19,s=0.71 RRCF-mid:w=0.19,s=0.75 RRCF-slow:w=0.19,s=0.75 COPOD!:w=0.20,s=0.96"} +{"timestamp":"2026-03-16T05:41:38.012710692Z","score":0.48336452340597075,"is_anomaly":false,"confidence":0.5370716926733009,"method":"SEAD","details":"MAD!:w=0.22,s=0.16 RRCF-fast:w=0.19,s=0.80 RRCF-mid:w=0.19,s=0.68 RRCF-slow:w=0.19,s=0.72 COPOD!:w=0.20,s=0.12"} +{"timestamp":"2026-03-16T05:42:08.010782101Z","score":0.45622213517226307,"is_anomaly":false,"confidence":0.5069134835247368,"method":"SEAD","details":"MAD!:w=0.22,s=0.08 RRCF-fast:w=0.19,s=0.73 RRCF-mid:w=0.19,s=0.58 RRCF-slow:w=0.19,s=0.58 COPOD!:w=0.20,s=0.38"} +{"timestamp":"2026-03-16T05:42:38.577942966Z","score":0.9833709333043174,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.22,s=0.93 RRCF-fast!:w=0.19,s=1.00 RRCF-mid!:w=0.19,s=1.00 RRCF-slow!:w=0.19,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-16T05:43:08.032949688Z","score":0.45950385099742364,"is_anomaly":false,"confidence":0.5105598344415818,"method":"SEAD","details":"MAD!:w=0.22,s=0.50 RRCF-fast:w=0.19,s=0.39 RRCF-mid:w=0.19,s=0.43 RRCF-slow:w=0.19,s=0.43 COPOD!:w=0.20,s=0.54"} +{"timestamp":"2026-03-16T05:43:37.990204818Z","score":0.46656523841893505,"is_anomaly":false,"confidence":0.5184058204654834,"method":"SEAD","details":"MAD!:w=0.22,s=0.03 RRCF-fast:w=0.19,s=0.48 RRCF-mid:w=0.19,s=0.76 RRCF-slow:w=0.19,s=0.76 COPOD!:w=0.20,s=0.38"} +{"timestamp":"2026-03-16T05:44:19.19103782Z","score":0.9924442979108492,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.23,s=0.97 RRCF-fast!:w=0.19,s=1.00 RRCF-mid!:w=0.19,s=1.00 RRCF-slow!:w=0.19,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-16T05:44:40.895082291Z","score":0.9804084075535594,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.23,s=1.00 RRCF-fast!:w=0.19,s=1.00 RRCF-mid!:w=0.19,s=1.00 RRCF-slow!:w=0.19,s=1.00 COPOD!:w=0.20,s=0.90"} +{"timestamp":"2026-03-16T05:45:08.083447916Z","score":0.5212066123064992,"is_anomaly":false,"confidence":0.5358996971530989,"method":"SEAD","details":"MAD!:w=0.23,s=0.38 RRCF-fast:w=0.19,s=0.56 RRCF-mid:w=0.19,s=0.50 RRCF-slow:w=0.19,s=0.53 COPOD!:w=0.20,s=0.66"} +{"timestamp":"2026-03-16T05:45:37.984604136Z","score":0.4986657513324362,"is_anomaly":false,"confidence":0.512723397612089,"method":"SEAD","details":"MAD!:w=0.23,s=0.18 RRCF-fast:w=0.19,s=0.70 RRCF-mid:w=0.19,s=0.76 RRCF-slow:w=0.19,s=0.76 COPOD!:w=0.20,s=0.18"} +{"timestamp":"2026-03-16T05:46:13.699873681Z","score":0.9262046222932452,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.23,s=0.82 RRCF-fast!:w=0.19,s=0.94 RRCF-mid!:w=0.19,s=0.94 RRCF-slow!:w=0.19,s=0.94 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-16T05:46:40.633448187Z","score":0.8151979245730264,"is_anomaly":false,"confidence":0.8801488407114935,"method":"SEAD","details":"MAD!:w=0.23,s=0.31 RRCF-fast!:w=0.19,s=0.94 RRCF-mid!:w=0.19,s=0.97 RRCF-slow!:w=0.19,s=0.97 COPOD!:w=0.20,s=0.97"} +{"timestamp":"2026-03-16T05:47:08.081108224Z","score":0.5356047727361235,"is_anomaly":false,"confidence":0.5782790971286537,"method":"SEAD","details":"MAD!:w=0.23,s=0.31 RRCF-fast:w=0.19,s=0.72 RRCF-mid:w=0.19,s=0.72 RRCF-slow:w=0.19,s=0.72 COPOD!:w=0.20,s=0.28"} +{"timestamp":"2026-03-16T05:47:40.011808212Z","score":0.530464251806782,"is_anomaly":false,"confidence":0.572729005058703,"method":"SEAD","details":"MAD!:w=0.23,s=0.19 RRCF-fast:w=0.19,s=0.70 RRCF-mid:w=0.19,s=0.78 RRCF-slow:w=0.19,s=0.81 COPOD!:w=0.20,s=0.27"} +{"timestamp":"2026-03-16T05:48:15.882341449Z","score":0.989675807600777,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.23,s=1.00 RRCF-fast!:w=0.19,s=0.97 RRCF-mid!:w=0.19,s=1.00 RRCF-slow!:w=0.19,s=1.00 COPOD!:w=0.20,s=0.97"} +{"timestamp":"2026-03-16T05:48:38.030053987Z","score":0.4239776598311729,"is_anomaly":false,"confidence":0.43592981005696263,"method":"SEAD","details":"MAD!:w=0.23,s=0.59 RRCF-fast:w=0.19,s=0.28 RRCF-mid:w=0.19,s=0.36 RRCF-slow:w=0.19,s=0.41 COPOD!:w=0.20,s=0.44"} +{"timestamp":"2026-03-16T05:49:07.990057408Z","score":0.5733699604921495,"is_anomaly":false,"confidence":0.5895335571908202,"method":"SEAD","details":"MAD!:w=0.23,s=0.23 RRCF-fast:w=0.19,s=0.75 RRCF-mid:w=0.19,s=0.82 RRCF-slow:w=0.19,s=0.82 COPOD!:w=0.20,s=0.35"} +{"timestamp":"2026-03-16T05:49:40.253606812Z","score":0.9297060614750674,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.24,s=0.90 RRCF-fast!:w=0.19,s=0.95 RRCF-mid!:w=0.19,s=0.95 RRCF-slow!:w=0.19,s=0.95 COPOD!:w=0.21,s=0.90"} +{"timestamp":"2026-03-16T05:50:11.0587967Z","score":0.7702553326841496,"is_anomaly":false,"confidence":0.8284933965710258,"method":"SEAD","details":"MAD!:w=0.24,s=0.62 RRCF-fast:w=0.19,s=0.88 RRCF-mid:w=0.19,s=0.86 RRCF-slow!:w=0.19,s=0.90 COPOD!:w=0.21,s=0.64"} +{"timestamp":"2026-03-16T05:50:38.030211247Z","score":0.4371692185696601,"is_anomaly":false,"confidence":0.47022304864405146,"method":"SEAD","details":"MAD!:w=0.24,s=0.47 RRCF-fast:w=0.19,s=0.35 RRCF-mid:w=0.19,s=0.42 RRCF-slow:w=0.18,s=0.35 COPOD!:w=0.21,s=0.58"} +{"timestamp":"2026-03-16T05:51:07.989533133Z","score":0.5078274934156297,"is_anomaly":false,"confidence":0.5462237092548509,"method":"SEAD","details":"MAD!:w=0.24,s=0.30 RRCF-fast:w=0.19,s=0.64 RRCF-mid:w=0.19,s=0.77 RRCF-slow:w=0.18,s=0.80 COPOD!:w=0.21,s=0.14"} +{"timestamp":"2026-03-16T05:51:38.100803199Z","score":0.8901450945392376,"is_anomaly":false,"confidence":0.9574478767266908,"method":"SEAD","details":"MAD!:w=0.24,s=0.71 RRCF-fast!:w=0.19,s=0.91 RRCF-mid!:w=0.18,s=0.93 RRCF-slow!:w=0.18,s=0.93 COPOD!:w=0.21,s=1.00"} +{"timestamp":"2026-03-16T05:52:10.527777525Z","score":0.7886802747694681,"is_anomaly":false,"confidence":0.8483114259986125,"method":"SEAD","details":"MAD!:w=0.24,s=0.37 RRCF-fast:w=0.19,s=0.87 RRCF-mid!:w=0.18,s=0.91 RRCF-slow!:w=0.18,s=0.91 COPOD!:w=0.21,s=0.98"} +{"timestamp":"2026-03-16T05:52:38.126621737Z","score":0.7269282316250449,"is_anomaly":false,"confidence":0.7848462576500644,"method":"SEAD","details":"MAD!:w=0.24,s=0.34 RRCF-fast!:w=0.19,s=0.94 RRCF-mid:w=0.18,s=0.83 RRCF-slow:w=0.18,s=0.85 COPOD!:w=0.21,s=0.79"} +{"timestamp":"2026-03-16T05:53:07.993455063Z","score":0.5428897607868897,"is_anomaly":false,"confidence":0.5861445167944818,"method":"SEAD","details":"MAD!:w=0.24,s=0.17 RRCF-fast:w=0.19,s=0.77 RRCF-mid:w=0.18,s=0.77 RRCF-slow:w=0.18,s=0.77 COPOD!:w=0.20,s=0.38"} +{"timestamp":"2026-03-16T05:54:10.707138472Z","score":0.8618412683330146,"is_anomaly":false,"confidence":0.9305084941156204,"method":"SEAD","details":"MAD!:w=0.25,s=0.98 RRCF-fast:w=0.18,s=0.84 RRCF-mid!:w=0.18,s=0.96 RRCF-slow!:w=0.18,s=0.96 COPOD!:w=0.21,s=0.57"} +{"timestamp":"2026-03-16T05:54:38.136386358Z","score":0.6660311200669911,"is_anomaly":false,"confidence":0.7190971671226656,"method":"SEAD","details":"MAD!:w=0.24,s=0.62 RRCF-fast:w=0.19,s=0.80 RRCF-mid:w=0.18,s=0.78 RRCF-slow:w=0.18,s=0.78 COPOD!:w=0.21,s=0.40"} +{"timestamp":"2026-03-16T05:55:08.013141338Z","score":0.4772627352543371,"is_anomaly":false,"confidence":0.5152886562719303,"method":"SEAD","details":"MAD!:w=0.24,s=0.25 RRCF-fast:w=0.18,s=0.67 RRCF-mid:w=0.18,s=0.73 RRCF-slow:w=0.18,s=0.73 COPOD!:w=0.21,s=0.14"} +{"timestamp":"2026-03-16T05:56:01.936793608Z","score":0.8364171663605279,"is_anomaly":false,"confidence":0.9030587261480004,"method":"SEAD","details":"MAD!:w=0.25,s=0.98 RRCF-fast:w=0.18,s=0.85 RRCF-mid!:w=0.18,s=0.96 RRCF-slow!:w=0.18,s=0.96 COPOD!:w=0.21,s=0.44"} +{"timestamp":"2026-03-16T05:56:08.030161574Z","score":0.7175132999693626,"is_anomaly":false,"confidence":0.7746811910664284,"method":"SEAD","details":"MAD!:w=0.24,s=0.42 RRCF-fast:w=0.18,s=0.74 RRCF-mid:w=0.18,s=0.81 RRCF-slow:w=0.18,s=0.77 COPOD!:w=0.21,s=0.92"} +{"timestamp":"2026-03-16T05:56:37.988140584Z","score":0.4098529475364147,"is_anomaly":false,"confidence":0.45150720268976907,"method":"SEAD","details":"MAD!:w=0.25,s=0.06 RRCF-fast:w=0.18,s=0.52 RRCF-mid:w=0.18,s=0.74 RRCF-slow:w=0.18,s=0.76 COPOD!:w=0.21,s=0.15"} +{"timestamp":"2026-03-16T05:57:08.038494658Z","score":0.4749984755247242,"is_anomaly":false,"confidence":0.5232736137563536,"method":"SEAD","details":"MAD!:w=0.25,s=0.31 RRCF-fast:w=0.18,s=0.62 RRCF-mid:w=0.18,s=0.75 RRCF-slow:w=0.18,s=0.76 COPOD!:w=0.21,s=0.07"} +{"timestamp":"2026-03-16T05:57:38.633346207Z","score":0.8967173565096738,"is_anomaly":false,"confidence":0.9878527107703058,"method":"SEAD","details":"MAD!:w=0.25,s=0.95 RRCF-fast:w=0.18,s=0.77 RRCF-mid!:w=0.18,s=0.93 RRCF-slow!:w=0.18,s=0.91 COPOD!:w=0.21,s=0.91"} +{"timestamp":"2026-03-16T05:58:08.030279486Z","score":0.6764902168280633,"is_anomaly":false,"confidence":0.7452434032328056,"method":"SEAD","details":"MAD!:w=0.25,s=0.58 RRCF-fast:w=0.18,s=0.86 RRCF-mid:w=0.18,s=0.75 RRCF-slow:w=0.18,s=0.79 COPOD!:w=0.21,s=0.47"} +{"timestamp":"2026-03-16T05:58:37.994039009Z","score":0.40675344075393327,"is_anomaly":false,"confidence":0.4480926862260273,"method":"SEAD","details":"MAD!:w=0.25,s=0.00 RRCF-fast:w=0.18,s=0.48 RRCF-mid:w=0.18,s=0.67 RRCF-slow:w=0.18,s=0.69 COPOD!:w=0.21,s=0.36"} +{"timestamp":"2026-03-16T05:59:08.033464055Z","score":0.9622728704439953,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.93 RRCF-fast!:w=0.18,s=0.97 RRCF-mid!:w=0.18,s=1.00 RRCF-slow!:w=0.18,s=1.00 COPOD!:w=0.21,s=0.93"} +{"timestamp":"2026-03-16T05:59:39.277083236Z","score":0.8665781547048304,"is_anomaly":false,"confidence":0.9356227920340301,"method":"SEAD","details":"MAD!:w=0.25,s=0.85 RRCF-fast!:w=0.18,s=0.95 RRCF-mid!:w=0.18,s=0.97 RRCF-slow!:w=0.18,s=0.97 COPOD!:w=0.21,s=0.65"} +{"timestamp":"2026-03-16T06:00:08.033311139Z","score":0.5599760976817143,"is_anomaly":false,"confidence":0.6168876982760748,"method":"SEAD","details":"MAD!:w=0.25,s=0.51 RRCF-fast:w=0.18,s=0.43 RRCF-mid:w=0.18,s=0.82 RRCF-slow:w=0.18,s=0.84 COPOD!:w=0.21,s=0.30"} +{"timestamp":"2026-03-16T06:00:39.146796406Z","score":0.44849562318358077,"is_anomaly":false,"confidence":0.49407721832775553,"method":"SEAD","details":"MAD!:w=0.25,s=0.02 RRCF-fast:w=0.18,s=0.44 RRCF-mid:w=0.18,s=0.85 RRCF-slow:w=0.17,s=0.85 COPOD!:w=0.22,s=0.31"} +{"timestamp":"2026-03-16T06:01:10.121502752Z","score":0.7800768451274596,"is_anomaly":false,"confidence":0.8593577680572035,"method":"SEAD","details":"MAD!:w=0.25,s=0.73 RRCF-fast!:w=0.18,s=0.92 RRCF-mid:w=0.17,s=0.87 RRCF-slow:w=0.17,s=0.87 COPOD!:w=0.22,s=0.57"} +{"timestamp":"2026-03-16T06:01:38.031581331Z","score":0.6476141408258695,"is_anomaly":false,"confidence":0.7134325882105486,"method":"SEAD","details":"MAD!:w=0.26,s=0.36 RRCF-fast:w=0.18,s=0.50 RRCF-mid:w=0.17,s=0.84 RRCF-slow:w=0.17,s=0.84 COPOD!:w=0.22,s=0.80"} +{"timestamp":"2026-03-16T06:02:07.990536946Z","score":0.5216311724401067,"is_anomaly":false,"confidence":0.5746456940712659,"method":"SEAD","details":"MAD!:w=0.26,s=0.31 RRCF-fast:w=0.18,s=0.55 RRCF-mid:w=0.17,s=0.80 RRCF-slow:w=0.17,s=0.82 COPOD!:w=0.22,s=0.29"} +{"timestamp":"2026-03-16T06:02:37.983249984Z","score":0.4505244412817311,"is_anomaly":false,"confidence":0.49631222966479327,"method":"SEAD","details":"MAD!:w=0.26,s=0.11 RRCF-fast:w=0.18,s=0.45 RRCF-mid:w=0.17,s=0.67 RRCF-slow:w=0.17,s=0.67 COPOD!:w=0.22,s=0.52"} +{"timestamp":"2026-03-16T06:03:09.607659077Z","score":0.8240204279804373,"is_anomaly":false,"confidence":0.915578253311597,"method":"SEAD","details":"MAD!:w=0.26,s=0.73 RRCF-fast!:w=0.18,s=0.91 RRCF-mid:w=0.17,s=0.84 RRCF-slow:w=0.17,s=0.87 COPOD!:w=0.22,s=0.82"} +{"timestamp":"2026-03-16T06:03:38.084074718Z","score":0.5159195703927543,"is_anomaly":false,"confidence":0.5732439671030604,"method":"SEAD","details":"MAD!:w=0.26,s=0.62 RRCF-fast:w=0.18,s=0.21 RRCF-mid:w=0.17,s=0.54 RRCF-slow:w=0.17,s=0.59 COPOD!:w=0.22,s=0.57"} +{"timestamp":"2026-03-16T06:04:07.988364873Z","score":0.5007055472309969,"is_anomaly":false,"confidence":0.55633949692333,"method":"SEAD","details":"MAD!:w=0.26,s=0.07 RRCF-fast:w=0.18,s=0.57 RRCF-mid:w=0.17,s=0.62 RRCF-slow:w=0.17,s=0.62 COPOD!:w=0.22,s=0.77"} +{"timestamp":"2026-03-16T06:04:39.18875597Z","score":0.9549440901739562,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.26,s=0.96 RRCF-fast!:w=0.18,s=1.00 RRCF-mid!:w=0.17,s=1.00 RRCF-slow!:w=0.17,s=1.00 COPOD!:w=0.22,s=0.84"} +{"timestamp":"2026-03-16T06:05:08.585209467Z","score":0.9306510243064778,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.26,s=0.92 RRCF-fast!:w=0.18,s=0.96 RRCF-mid!:w=0.17,s=1.00 RRCF-slow!:w=0.17,s=1.00 COPOD!:w=0.22,s=0.82"} +{"timestamp":"2026-03-16T06:05:38.03148331Z","score":0.6454056715424185,"is_anomaly":false,"confidence":0.6968283854429707,"method":"SEAD","details":"MAD!:w=0.26,s=0.54 RRCF-fast:w=0.18,s=0.72 RRCF-mid!:w=0.17,s=0.90 RRCF-slow!:w=0.17,s=0.92 COPOD!:w=0.22,s=0.29"} +{"timestamp":"2026-03-16T06:06:07.990860391Z","score":0.4461968348782606,"is_anomaly":false,"confidence":0.48174757946413105,"method":"SEAD","details":"MAD!:w=0.26,s=0.03 RRCF-fast:w=0.18,s=0.67 RRCF-mid:w=0.17,s=0.81 RRCF-slow:w=0.17,s=0.88 COPOD!:w=0.22,s=0.15"} +{"timestamp":"2026-03-16T06:06:39.207871552Z","score":0.7992895907025301,"is_anomaly":false,"confidence":0.8805231471589839,"method":"SEAD","details":"MAD!:w=0.27,s=0.80 RRCF-fast:w=0.18,s=0.82 RRCF-mid!:w=0.17,s=0.91 RRCF-slow!:w=0.17,s=0.92 COPOD!:w=0.22,s=0.61"} +{"timestamp":"2026-03-16T06:07:08.030013172Z","score":0.7045774545714183,"is_anomaly":false,"confidence":0.7761852086315773,"method":"SEAD","details":"MAD!:w=0.27,s=0.35 RRCF-fast:w=0.18,s=0.71 RRCF-mid:w=0.17,s=0.84 RRCF-slow:w=0.17,s=0.85 COPOD!:w=0.22,s=0.92"} +{"timestamp":"2026-03-16T06:07:37.988338263Z","score":0.5574145424002459,"is_anomaly":false,"confidence":0.6140658065058119,"method":"SEAD","details":"MAD!:w=0.27,s=0.32 RRCF-fast:w=0.18,s=0.63 RRCF-mid:w=0.17,s=0.68 RRCF-slow:w=0.17,s=0.76 COPOD!:w=0.22,s=0.54"} +{"timestamp":"2026-03-16T06:08:07.988559059Z","score":0.47416101758529655,"is_anomaly":false,"confidence":0.5223510431273656,"method":"SEAD","details":"MAD!:w=0.27,s=0.29 RRCF-fast:w=0.18,s=0.60 RRCF-mid:w=0.17,s=0.66 RRCF-slow:w=0.17,s=0.79 COPOD!:w=0.22,s=0.22"} +{"timestamp":"2026-03-16T06:08:38.070096129Z","score":0.6754493553471926,"is_anomaly":false,"confidence":0.7440967567137545,"method":"SEAD","details":"MAD!:w=0.27,s=0.74 RRCF-fast:w=0.18,s=0.69 RRCF-mid:w=0.17,s=0.79 RRCF-slow:w=0.16,s=0.85 COPOD!:w=0.22,s=0.36"} +{"timestamp":"2026-03-16T06:09:08.563843719Z","score":0.4920178335109764,"is_anomaly":false,"confidence":0.5420226864716737,"method":"SEAD","details":"MAD!:w=0.27,s=0.62 RRCF-fast:w=0.18,s=0.39 RRCF-mid:w=0.17,s=0.53 RRCF-slow:w=0.16,s=0.67 COPOD!:w=0.22,s=0.25"} +{"timestamp":"2026-03-16T06:09:39.306132109Z","score":0.39108485294047196,"is_anomaly":false,"confidence":0.43083166542264184,"method":"SEAD","details":"MAD!:w=0.27,s=0.06 RRCF-fast:w=0.18,s=0.50 RRCF-mid:w=0.17,s=0.60 RRCF-slow:w=0.16,s=0.72 COPOD!:w=0.22,s=0.30"} +{"timestamp":"2026-03-16T06:10:08.026474136Z","score":0.8982087702178749,"is_anomaly":false,"confidence":0.9980097446865278,"method":"SEAD","details":"MAD!:w=0.27,s=0.86 RRCF-fast!:w=0.18,s=0.91 RRCF-mid:w=0.17,s=0.85 RRCF-slow!:w=0.16,s=0.91 COPOD!:w=0.22,s=0.95"} +{"timestamp":"2026-03-16T06:10:42.567838244Z","score":0.6000664001530516,"is_anomaly":false,"confidence":0.6667404446145018,"method":"SEAD","details":"MAD!:w=0.27,s=0.78 RRCF-fast:w=0.18,s=0.61 RRCF-mid:w=0.17,s=0.71 RRCF-slow:w=0.16,s=0.73 COPOD!:w=0.22,s=0.20"} +{"timestamp":"2026-03-16T06:11:08.56808412Z","score":0.4789899036216183,"is_anomaly":false,"confidence":0.5322110040240204,"method":"SEAD","details":"MAD!:w=0.27,s=0.61 RRCF-fast:w=0.18,s=0.31 RRCF-mid:w=0.16,s=0.49 RRCF-slow:w=0.16,s=0.57 COPOD!:w=0.22,s=0.37"} +{"timestamp":"2026-03-16T06:11:37.988721453Z","score":0.36363740410855405,"is_anomaly":false,"confidence":0.40404156012061565,"method":"SEAD","details":"MAD!:w=0.27,s=0.18 RRCF-fast:w=0.18,s=0.38 RRCF-mid:w=0.16,s=0.50 RRCF-slow:w=0.16,s=0.65 COPOD!:w=0.22,s=0.26"} +{"timestamp":"2026-03-16T06:12:08.02810578Z","score":0.6840068861667263,"is_anomaly":false,"confidence":0.7600076512963627,"method":"SEAD","details":"MAD!:w=0.27,s=0.93 RRCF-fast!:w=0.18,s=0.92 RRCF-mid:w=0.16,s=0.75 RRCF-slow:w=0.16,s=0.85 COPOD!:w=0.22,s=0.04"} +{"timestamp":"2026-03-16T06:12:38.024158889Z","score":0.7120626998838833,"is_anomaly":false,"confidence":0.7911807776487593,"method":"SEAD","details":"MAD!:w=0.27,s=0.43 RRCF-fast:w=0.18,s=0.70 RRCF-mid:w=0.16,s=0.76 RRCF-slow:w=0.16,s=0.78 COPOD!:w=0.23,s=0.98"} +{"timestamp":"2026-03-16T06:13:08.030726081Z","score":0.389749107210493,"is_anomaly":false,"confidence":0.4339181715136817,"method":"SEAD","details":"MAD!:w=0.27,s=0.39 RRCF-fast:w=0.18,s=0.45 RRCF-mid:w=0.16,s=0.43 RRCF-slow:w=0.16,s=0.53 COPOD!:w=0.23,s=0.22"} +{"timestamp":"2026-03-16T06:13:37.989783626Z","score":0.2860018958603799,"is_anomaly":false,"confidence":0.31841360866584006,"method":"SEAD","details":"MAD!:w=0.27,s=0.06 RRCF-fast:w=0.18,s=0.33 RRCF-mid:w=0.16,s=0.44 RRCF-slow:w=0.16,s=0.69 COPOD!:w=0.23,s=0.12"} +{"timestamp":"2026-03-16T06:14:10.66517628Z","score":0.650824323954562,"is_anomaly":false,"confidence":0.7245802373948032,"method":"SEAD","details":"MAD!:w=0.27,s=0.83 RRCF-fast:w=0.18,s=0.71 RRCF-mid:w=0.16,s=0.60 RRCF-slow:w=0.16,s=0.75 COPOD!:w=0.23,s=0.36"} +{"timestamp":"2026-03-16T06:14:38.031685702Z","score":0.6869052318895844,"is_anomaly":false,"confidence":0.7647500833497368,"method":"SEAD","details":"MAD!:w=0.27,s=0.47 RRCF-fast:w=0.18,s=0.67 RRCF-mid:w=0.16,s=0.86 RRCF-slow:w=0.16,s=0.84 COPOD!:w=0.23,s=0.73"} +{"timestamp":"2026-03-16T06:15:07.990196745Z","score":0.3311900219981026,"is_anomaly":false,"confidence":0.368722765775007,"method":"SEAD","details":"MAD!:w=0.27,s=0.29 RRCF-fast:w=0.18,s=0.29 RRCF-mid:w=0.16,s=0.44 RRCF-slow:w=0.16,s=0.49 COPOD!:w=0.23,s=0.23"} +{"timestamp":"2026-03-16T06:15:38.027676073Z","score":0.8878233533780299,"is_anomaly":false,"confidence":0.9884376358991397,"method":"SEAD","details":"MAD!:w=0.27,s=0.91 RRCF-fast!:w=0.18,s=0.91 RRCF-mid:w=0.16,s=0.89 RRCF-slow!:w=0.16,s=0.90 COPOD!:w=0.23,s=0.83"} +{"timestamp":"2026-03-16T06:16:09.706725389Z","score":0.8045660974843479,"is_anomaly":false,"confidence":0.8957450919669684,"method":"SEAD","details":"MAD!:w=0.27,s=0.91 RRCF-fast:w=0.18,s=0.74 RRCF-mid:w=0.16,s=0.87 RRCF-slow:w=0.16,s=0.88 COPOD!:w=0.23,s=0.62"} +{"timestamp":"2026-03-16T06:16:39.62766445Z","score":0.42346222031791664,"is_anomaly":false,"confidence":0.472236003065865,"method":"SEAD","details":"MAD!:w=0.27,s=0.62 RRCF-fast:w=0.18,s=0.33 RRCF-mid:w=0.16,s=0.31 RRCF-slow:w=0.16,s=0.44 COPOD!:w=0.23,s=0.34"} +{"timestamp":"2026-03-16T06:17:08.832345967Z","score":0.2712290649320524,"is_anomaly":false,"confidence":0.30246884702641125,"method":"SEAD","details":"MAD!:w=0.27,s=0.15 RRCF-fast:w=0.18,s=0.37 RRCF-mid:w=0.16,s=0.39 RRCF-slow:w=0.16,s=0.53 COPOD!:w=0.23,s=0.08"} +{"timestamp":"2026-03-16T06:17:38.044375285Z","score":0.6561145582800167,"is_anomaly":false,"confidence":0.7316849099852776,"method":"SEAD","details":"MAD!:w=0.27,s=0.78 RRCF-fast:w=0.18,s=0.68 RRCF-mid:w=0.16,s=0.58 RRCF-slow:w=0.16,s=0.65 COPOD!:w=0.23,s=0.55"} +{"timestamp":"2026-03-16T06:18:09.117051762Z","score":0.8502348954531402,"is_anomaly":false,"confidence":0.9481637544772648,"method":"SEAD","details":"MAD!:w=0.27,s=0.97 RRCF-fast!:w=0.18,s=0.96 RRCF-mid:w=0.16,s=0.75 RRCF-slow:w=0.16,s=0.88 COPOD!:w=0.23,s=0.68"} +{"timestamp":"2026-03-16T06:18:38.03342703Z","score":0.4341160044335889,"is_anomaly":false,"confidence":0.48411687504668666,"method":"SEAD","details":"MAD!:w=0.27,s=0.39 RRCF-fast:w=0.18,s=0.28 RRCF-mid:w=0.16,s=0.31 RRCF-slow:w=0.16,s=0.44 COPOD!:w=0.23,s=0.69"} +{"timestamp":"2026-03-16T06:19:07.993400152Z","score":0.30672722868314833,"is_anomaly":false,"confidence":0.3420556393343763,"method":"SEAD","details":"MAD:w=0.27,s=0.00 RRCF-fast:w=0.18,s=0.35 RRCF-mid:w=0.16,s=0.39 RRCF-slow:w=0.16,s=0.55 COPOD!:w=0.23,s=0.40"} +{"timestamp":"2026-03-16T06:19:38.768448334Z","score":0.7500320839062455,"is_anomaly":false,"confidence":0.8364197240762945,"method":"SEAD","details":"MAD!:w=0.27,s=0.82 RRCF-fast:w=0.18,s=0.59 RRCF-mid:w=0.16,s=0.69 RRCF-slow:w=0.16,s=0.71 COPOD!:w=0.23,s=0.86"} +{"timestamp":"2026-03-16T06:20:08.032087166Z","score":0.4899544531159179,"is_anomaly":false,"confidence":0.5504208876975626,"method":"SEAD","details":"MAD!:w=0.27,s=0.01 RRCF-fast:w=0.18,s=0.55 RRCF-mid:w=0.16,s=0.56 RRCF-slow:w=0.16,s=0.81 COPOD!:w=0.23,s=0.73"} +{"timestamp":"2026-03-16T06:20:37.990425813Z","score":0.2663770046386051,"is_anomaly":false,"confidence":0.29925121901220925,"method":"SEAD","details":"MAD:w=0.27,s=0.00 RRCF-fast:w=0.18,s=0.39 RRCF-mid:w=0.16,s=0.35 RRCF-slow:w=0.16,s=0.46 COPOD!:w=0.23,s=0.29"} +{"timestamp":"2026-03-16T06:21:08.029552609Z","score":0.8181834665283896,"is_anomaly":false,"confidence":0.9191574177599695,"method":"SEAD","details":"MAD!:w=0.28,s=1.00 RRCF-fast:w=0.18,s=0.71 RRCF-mid:w=0.16,s=0.78 RRCF-slow:w=0.15,s=0.83 COPOD!:w=0.23,s=0.71"} +{"timestamp":"2026-03-16T06:21:38.040998648Z","score":0.727758935145127,"is_anomaly":false,"confidence":0.8175733816988949,"method":"SEAD","details":"MAD!:w=0.27,s=0.94 RRCF-fast:w=0.18,s=0.66 RRCF-mid:w=0.16,s=0.53 RRCF-slow:w=0.15,s=0.68 COPOD!:w=0.23,s=0.69"} +{"timestamp":"2026-03-16T06:22:09.310453471Z","score":0.2177655841607308,"is_anomaly":false,"confidence":0.24464054848659472,"method":"SEAD","details":"MAD!:w=0.27,s=0.02 RRCF-fast:w=0.18,s=0.10 RRCF-mid:w=0.16,s=0.26 RRCF-slow:w=0.15,s=0.37 COPOD!:w=0.23,s=0.41"} +{"timestamp":"2026-03-16T06:22:39.403418136Z","score":0.25733035416033073,"is_anomaly":false,"confidence":0.28908810006253155,"method":"SEAD","details":"MAD:w=0.27,s=0.02 RRCF-fast:w=0.18,s=0.28 RRCF-mid:w=0.16,s=0.46 RRCF-slow:w=0.15,s=0.45 COPOD!:w=0.23,s=0.25"} +{"timestamp":"2026-03-16T06:23:13.624364993Z","score":0.7131509967451982,"is_anomaly":false,"confidence":0.8032577584626148,"method":"SEAD","details":"MAD!:w=0.28,s=0.85 RRCF-fast:w=0.18,s=0.77 RRCF-mid:w=0.16,s=0.55 RRCF-slow:w=0.15,s=0.69 COPOD!:w=0.23,s=0.64"} +{"timestamp":"2026-03-16T06:23:38.873010897Z","score":0.8468360025579647,"is_anomaly":false,"confidence":0.9538338897438159,"method":"SEAD","details":"MAD!:w=0.28,s=0.99 RRCF-fast:w=0.18,s=0.71 RRCF-mid:w=0.16,s=0.71 RRCF-slow:w=0.15,s=0.74 COPOD!:w=0.23,s=0.94"} +{"timestamp":"2026-03-16T06:24:08.03543359Z","score":0.4486038698735364,"is_anomaly":false,"confidence":0.5052850526702958,"method":"SEAD","details":"MAD!:w=0.27,s=0.05 RRCF-fast:w=0.18,s=0.65 RRCF-mid:w=0.16,s=0.61 RRCF-slow:w=0.15,s=0.72 COPOD!:w=0.23,s=0.47"} +{"timestamp":"2026-03-16T06:24:38.12756025Z","score":0.23299506676370946,"is_anomaly":false,"confidence":0.2624340369930566,"method":"SEAD","details":"MAD:w=0.28,s=0.02 RRCF-fast:w=0.18,s=0.25 RRCF-mid:w=0.16,s=0.35 RRCF-slow:w=0.15,s=0.45 COPOD!:w=0.23,s=0.25"} +{"timestamp":"2026-03-16T06:25:08.706191721Z","score":0.6138983521894376,"is_anomaly":false,"confidence":0.6914645237182033,"method":"SEAD","details":"MAD!:w=0.28,s=0.52 RRCF-fast:w=0.18,s=0.63 RRCF-mid:w=0.16,s=0.52 RRCF-slow:w=0.15,s=0.68 COPOD!:w=0.23,s=0.73"} +{"timestamp":"2026-03-16T06:25:38.032330291Z","score":0.6690005437427051,"is_anomaly":false,"confidence":0.7535288874721103,"method":"SEAD","details":"MAD!:w=0.28,s=0.93 RRCF-fast:w=0.18,s=0.29 RRCF-mid:w=0.16,s=0.48 RRCF-slow:w=0.15,s=0.68 COPOD!:w=0.23,s=0.78"} +{"timestamp":"2026-03-16T06:26:07.988704683Z","score":0.2438426200269314,"is_anomaly":false,"confidence":0.2746521806383535,"method":"SEAD","details":"MAD:w=0.28,s=0.02 RRCF-fast:w=0.18,s=0.36 RRCF-mid:w=0.16,s=0.32 RRCF-slow:w=0.15,s=0.39 COPOD!:w=0.23,s=0.27"} +{"timestamp":"2026-03-16T06:26:38.026685628Z","score":0.9305464240381827,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=0.99 RRCF-fast!:w=0.18,s=0.94 RRCF-mid:w=0.16,s=0.87 RRCF-slow!:w=0.15,s=0.96 COPOD!:w=0.23,s=0.88"} +{"timestamp":"2026-03-16T06:27:08.678085563Z","score":0.8203029433363669,"is_anomaly":false,"confidence":0.923948373530885,"method":"SEAD","details":"MAD!:w=0.28,s=0.96 RRCF-fast!:w=0.18,s=0.93 RRCF-mid:w=0.16,s=0.59 RRCF-slow:w=0.15,s=0.89 COPOD!:w=0.23,s=0.69"} +{"timestamp":"2026-03-16T06:27:38.085262912Z","score":0.25057316477837743,"is_anomaly":false,"confidence":0.28223313097699615,"method":"SEAD","details":"MAD!:w=0.28,s=0.05 RRCF-fast:w=0.18,s=0.24 RRCF-mid:w=0.16,s=0.25 RRCF-slow:w=0.15,s=0.33 COPOD!:w=0.23,s=0.45"} +{"timestamp":"2026-03-16T06:28:07.989478246Z","score":0.24772025374327644,"is_anomaly":false,"confidence":0.27901975409943813,"method":"SEAD","details":"MAD:w=0.28,s=0.04 RRCF-fast:w=0.18,s=0.50 RRCF-mid:w=0.16,s=0.44 RRCF-slow:w=0.15,s=0.40 COPOD!:w=0.23,s=0.06"} +{"timestamp":"2026-03-16T06:28:38.028950902Z","score":0.6413221427266411,"is_anomaly":false,"confidence":0.722353315314933,"method":"SEAD","details":"MAD!:w=0.28,s=0.77 RRCF-fast:w=0.18,s=0.72 RRCF-mid:w=0.16,s=0.50 RRCF-slow:w=0.15,s=0.69 COPOD!:w=0.23,s=0.49"} +{"timestamp":"2026-03-16T06:29:11.068149236Z","score":0.788852850904586,"is_anomaly":false,"confidence":0.8885245560427347,"method":"SEAD","details":"MAD!:w=0.28,s=0.97 RRCF-fast:w=0.18,s=0.77 RRCF-mid:w=0.16,s=0.52 RRCF-slow:w=0.15,s=0.71 COPOD!:w=0.23,s=0.82"} +{"timestamp":"2026-03-16T06:29:38.031312945Z","score":0.34295507931773406,"is_anomaly":false,"confidence":0.3862875176833807,"method":"SEAD","details":"MAD:w=0.28,s=0.03 RRCF-fast:w=0.18,s=0.18 RRCF-mid:w=0.16,s=0.23 RRCF-slow:w=0.15,s=0.40 COPOD!:w=0.23,s=0.88"} +{"timestamp":"2026-03-16T06:30:07.993043674Z","score":0.22960547691302954,"is_anomaly":false,"confidence":0.2624062593291766,"method":"SEAD","details":"MAD:w=0.28,s=0.04 RRCF-fast:w=0.18,s=0.34 RRCF-mid:w=0.16,s=0.43 RRCF-slow:w=0.15,s=0.54 COPOD!:w=0.23,s=0.02"} +{"timestamp":"2026-03-16T06:30:39.745995392Z","score":0.631197993336353,"is_anomaly":false,"confidence":0.7213691352415462,"method":"SEAD","details":"MAD!:w=0.28,s=0.84 RRCF-fast:w=0.18,s=0.68 RRCF-mid:w=0.16,s=0.50 RRCF-slow:w=0.15,s=0.66 COPOD!:w=0.23,s=0.40"} +{"timestamp":"2026-03-16T06:31:08.082105979Z","score":0.5839218693235865,"is_anomaly":false,"confidence":0.667339279226956,"method":"SEAD","details":"MAD!:w=0.28,s=0.58 RRCF-fast:w=0.18,s=0.54 RRCF-mid:w=0.16,s=0.43 RRCF-slow:w=0.15,s=0.37 COPOD!:w=0.23,s=0.88"} +{"timestamp":"2026-03-16T06:31:39.366903671Z","score":0.26335081780968106,"is_anomaly":false,"confidence":0.3009723632110641,"method":"SEAD","details":"MAD!:w=0.28,s=0.06 RRCF-fast:w=0.18,s=0.52 RRCF-mid:w=0.16,s=0.36 RRCF-slow:w=0.15,s=0.50 COPOD!:w=0.23,s=0.08"} +{"timestamp":"2026-03-16T06:32:08.038230516Z","score":0.8177176375313148,"is_anomaly":false,"confidence":0.9345344428929312,"method":"SEAD","details":"MAD!:w=0.28,s=0.98 RRCF-fast:w=0.18,s=0.87 RRCF-mid:w=0.16,s=0.81 RRCF-slow!:w=0.15,s=0.95 COPOD!:w=0.23,s=0.49"} +{"timestamp":"2026-03-16T06:32:39.016637037Z","score":0.869055125502256,"is_anomaly":false,"confidence":0.9932058577168641,"method":"SEAD","details":"MAD!:w=0.28,s=0.98 RRCF-fast!:w=0.18,s=0.95 RRCF-mid!:w=0.16,s=0.98 RRCF-slow!:w=0.15,s=0.98 COPOD!:w=0.23,s=0.52"} +{"timestamp":"2026-03-16T06:33:08.0384919Z","score":0.16496825690815153,"is_anomaly":false,"confidence":0.1898248477768437,"method":"SEAD","details":"MAD!:w=0.28,s=0.07 RRCF-fast:w=0.18,s=0.09 RRCF-mid:w=0.16,s=0.27 RRCF-slow:w=0.15,s=0.33 COPOD!:w=0.23,s=0.16"} +{"timestamp":"2026-03-16T06:33:38.048449597Z","score":0.3191253820473381,"is_anomaly":false,"confidence":0.36720959658675834,"method":"SEAD","details":"MAD:w=0.28,s=0.02 RRCF-fast:w=0.18,s=0.45 RRCF-mid:w=0.16,s=0.36 RRCF-slow:w=0.15,s=0.59 COPOD!:w=0.23,s=0.38"} +{"timestamp":"2026-03-16T06:34:11.947793689Z","score":0.6922611505456914,"is_anomaly":false,"confidence":0.7965675941967554,"method":"SEAD","details":"MAD!:w=0.28,s=0.81 RRCF-fast:w=0.18,s=0.54 RRCF-mid:w=0.16,s=0.74 RRCF-slow:w=0.15,s=0.77 COPOD!:w=0.23,s=0.58"} +{"timestamp":"2026-03-16T06:34:41.051992816Z","score":0.7646879723210739,"is_anomaly":false,"confidence":0.8799073267983261,"method":"SEAD","details":"MAD!:w=0.28,s=0.97 RRCF-fast:w=0.18,s=0.85 RRCF-mid:w=0.16,s=0.70 RRCF-slow:w=0.15,s=0.80 COPOD!:w=0.23,s=0.48"} +{"timestamp":"2026-03-16T06:35:08.03449653Z","score":0.23858778433165845,"is_anomaly":false,"confidence":0.27453699694109807,"method":"SEAD","details":"MAD!:w=0.28,s=0.08 RRCF-fast:w=0.18,s=0.11 RRCF-mid:w=0.16,s=0.25 RRCF-slow:w=0.15,s=0.27 COPOD!:w=0.23,s=0.50"} +{"timestamp":"2026-03-16T06:35:39.239145167Z","score":0.31687170464987,"is_anomaly":false,"confidence":0.3646163463643797,"method":"SEAD","details":"MAD:w=0.28,s=0.03 RRCF-fast:w=0.18,s=0.50 RRCF-mid:w=0.16,s=0.36 RRCF-slow:w=0.15,s=0.49 COPOD!:w=0.23,s=0.38"} +{"timestamp":"2026-03-16T06:36:12.529502554Z","score":0.868748265766628,"is_anomaly":false,"confidence":0.9996469041760145,"method":"SEAD","details":"MAD!:w=0.28,s=0.95 RRCF-fast:w=0.18,s=0.83 RRCF-mid:w=0.16,s=0.77 RRCF-slow:w=0.15,s=0.80 COPOD!:w=0.23,s=0.90"} +{"timestamp":"2026-03-16T06:36:38.138907505Z","score":0.7064205762964607,"is_anomaly":false,"confidence":0.8131476103415055,"method":"SEAD","details":"MAD!:w=0.28,s=0.58 RRCF-fast:w=0.18,s=0.80 RRCF-mid:w=0.16,s=0.60 RRCF-slow:w=0.15,s=0.54 COPOD!:w=0.23,s=0.97"} +{"timestamp":"2026-03-16T06:37:09.229455938Z","score":0.3949596809247811,"is_anomaly":false,"confidence":0.4546307560985442,"method":"SEAD","details":"MAD!:w=0.28,s=0.08 RRCF-fast:w=0.18,s=0.67 RRCF-mid:w=0.16,s=0.48 RRCF-slow:w=0.15,s=0.44 COPOD!:w=0.23,s=0.47"} +{"timestamp":"2026-03-16T06:37:38.09635202Z","score":0.8182996813186697,"is_anomaly":false,"confidence":0.9419295710438744,"method":"SEAD","details":"MAD!:w=0.28,s=0.98 RRCF-fast:w=0.17,s=0.80 RRCF-mid!:w=0.16,s=0.81 RRCF-slow!:w=0.15,s=0.94 COPOD!:w=0.23,s=0.56"} +{"timestamp":"2026-03-16T06:38:08.634445611Z","score":0.8542695842395035,"is_anomaly":false,"confidence":0.9833338584977228,"method":"SEAD","details":"MAD!:w=0.28,s=0.96 RRCF-fast:w=0.17,s=0.77 RRCF-mid!:w=0.16,s=0.82 RRCF-slow:w=0.15,s=0.80 COPOD!:w=0.23,s=0.84"} +{"timestamp":"2026-03-16T06:38:38.080339124Z","score":0.4122714504455053,"is_anomaly":false,"confidence":0.4745580125926304,"method":"SEAD","details":"MAD!:w=0.28,s=0.12 RRCF-fast:w=0.17,s=0.67 RRCF-mid:w=0.16,s=0.31 RRCF-slow:w=0.15,s=0.41 COPOD!:w=0.23,s=0.66"} +{"timestamp":"2026-03-16T06:39:07.990294064Z","score":0.364708433261055,"is_anomaly":false,"confidence":0.4198091065416028,"method":"SEAD","details":"MAD:w=0.29,s=0.07 RRCF-fast:w=0.17,s=0.60 RRCF-mid:w=0.16,s=0.37 RRCF-slow:w=0.15,s=0.62 COPOD!:w=0.23,s=0.38"} +{"timestamp":"2026-03-16T06:39:38.419127682Z","score":0.60748689846391,"is_anomaly":false,"confidence":0.6992668905391511,"method":"SEAD","details":"MAD!:w=0.29,s=0.80 RRCF-fast:w=0.17,s=0.66 RRCF-mid:w=0.16,s=0.60 RRCF-slow:w=0.15,s=0.65 COPOD!:w=0.23,s=0.30"} +{"timestamp":"2026-03-16T06:40:08.699240972Z","score":0.7996795392166187,"is_anomaly":false,"confidence":0.9228014055916303,"method":"SEAD","details":"MAD!:w=0.29,s=0.93 RRCF-fast:w=0.17,s=0.70 RRCF-mid:w=0.16,s=0.63 RRCF-slow:w=0.15,s=0.64 COPOD!:w=0.23,s=0.94"} +{"timestamp":"2026-03-16T06:40:38.034119698Z","score":0.334742217289259,"is_anomaly":false,"confidence":0.38628047045944436,"method":"SEAD","details":"MAD!:w=0.28,s=0.12 RRCF-fast:w=0.17,s=0.19 RRCF-mid:w=0.16,s=0.22 RRCF-slow:w=0.15,s=0.27 COPOD!:w=0.23,s=0.84"} +{"timestamp":"2026-03-16T06:41:07.992299842Z","score":0.22654812638395824,"is_anomaly":false,"confidence":0.26142838375740496,"method":"SEAD","details":"MAD:w=0.29,s=0.06 RRCF-fast:w=0.17,s=0.45 RRCF-mid:w=0.16,s=0.32 RRCF-slow:w=0.15,s=0.45 COPOD!:w=0.23,s=0.05"} +{"timestamp":"2026-03-16T06:41:42.204882225Z","score":0.7960557226043681,"is_anomaly":false,"confidence":0.9186196516522122,"method":"SEAD","details":"MAD!:w=0.29,s=0.92 RRCF-fast:w=0.17,s=0.71 RRCF-mid:w=0.16,s=0.62 RRCF-slow:w=0.15,s=0.53 COPOD!:w=0.23,s=1.00"} +{"timestamp":"2026-03-16T06:42:10.471981924Z","score":0.7188126894557675,"is_anomaly":false,"confidence":0.8294839715877744,"method":"SEAD","details":"MAD!:w=0.29,s=0.77 RRCF-fast:w=0.17,s=0.50 RRCF-mid:w=0.17,s=0.70 RRCF-slow:w=0.15,s=0.48 COPOD!:w=0.23,s=0.99"} +{"timestamp":"2026-03-16T06:42:38.079253214Z","score":0.3673374936359994,"is_anomaly":false,"confidence":0.42389424617000654,"method":"SEAD","details":"MAD!:w=0.29,s=0.10 RRCF-fast:w=0.17,s=0.38 RRCF-mid:w=0.17,s=0.36 RRCF-slow:w=0.15,s=0.47 COPOD!:w=0.23,s=0.64"} +{"timestamp":"2026-03-16T06:43:08.00799261Z","score":0.26089421735341606,"is_anomaly":false,"confidence":0.3018576681509523,"method":"SEAD","details":"MAD!:w=0.29,s=0.09 RRCF-fast:w=0.17,s=0.39 RRCF-mid:w=0.17,s=0.32 RRCF-slow:w=0.15,s=0.47 COPOD!:w=0.22,s=0.20"} +{"timestamp":"2026-03-16T06:43:39.342488428Z","score":0.9154011744651894,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=0.97 RRCF-fast!:w=0.17,s=0.99 RRCF-mid!:w=0.16,s=0.98 RRCF-slow!:w=0.15,s=1.00 COPOD!:w=0.22,s=0.68"} +{"timestamp":"2026-03-16T06:44:08.082640625Z","score":0.19751842134356593,"is_anomaly":false,"confidence":0.22792914899965797,"method":"SEAD","details":"MAD!:w=0.29,s=0.09 RRCF-fast:w=0.17,s=0.06 RRCF-mid:w=0.16,s=0.19 RRCF-slow:w=0.15,s=0.50 COPOD!:w=0.22,s=0.26"} +{"timestamp":"2026-03-16T06:44:38.037541768Z","score":0.3283635670961713,"is_anomaly":false,"confidence":0.3789197377217718,"method":"SEAD","details":"MAD:w=0.29,s=0.04 RRCF-fast:w=0.17,s=0.31 RRCF-mid:w=0.16,s=0.41 RRCF-slow:w=0.15,s=0.47 COPOD!:w=0.22,s=0.56"} +{"timestamp":"2026-03-16T06:45:10.256396732Z","score":0.6121176775390165,"is_anomaly":false,"confidence":0.7063617680825488,"method":"SEAD","details":"MAD!:w=0.29,s=0.60 RRCF-fast:w=0.17,s=0.68 RRCF-mid:w=0.16,s=0.60 RRCF-slow:w=0.15,s=0.74 COPOD!:w=0.22,s=0.50"} +{"timestamp":"2026-03-16T06:45:38.070916142Z","score":0.8597854471760931,"is_anomaly":false,"confidence":0.9921614600000493,"method":"SEAD","details":"MAD!:w=0.29,s=0.96 RRCF-fast!:w=0.17,s=0.93 RRCF-mid!:w=0.16,s=0.93 RRCF-slow!:w=0.15,s=0.93 COPOD!:w=0.22,s=0.57"} +{"timestamp":"2026-03-16T06:46:09.652433413Z","score":0.2508735945963103,"is_anomaly":false,"confidence":0.28949909853400546,"method":"SEAD","details":"MAD!:w=0.29,s=0.10 RRCF-fast:w=0.17,s=0.08 RRCF-mid:w=0.16,s=0.21 RRCF-slow:w=0.15,s=0.18 COPOD!:w=0.23,s=0.65"} +{"timestamp":"2026-03-16T06:46:37.986001472Z","score":0.23503407883264962,"is_anomaly":false,"confidence":0.27193718470319234,"method":"SEAD","details":"MAD!:w=0.29,s=0.08 RRCF-fast:w=0.17,s=0.39 RRCF-mid:w=0.16,s=0.44 RRCF-slow:w=0.15,s=0.32 COPOD!:w=0.22,s=0.11"} +{"timestamp":"2026-03-16T06:47:09.434406245Z","score":0.7498133478375087,"is_anomaly":false,"confidence":0.867542834113819,"method":"SEAD","details":"MAD!:w=0.29,s=0.88 RRCF-fast:w=0.17,s=0.59 RRCF-mid:w=0.16,s=0.70 RRCF-slow:w=0.15,s=0.69 COPOD!:w=0.22,s=0.77"} +{"timestamp":"2026-03-16T06:47:39.601584457Z","score":0.6746418340610566,"is_anomaly":false,"confidence":0.7805685113782602,"method":"SEAD","details":"MAD!:w=0.29,s=0.59 RRCF-fast:w=0.17,s=0.61 RRCF-mid:w=0.16,s=0.58 RRCF-slow:w=0.15,s=0.58 COPOD!:w=0.22,s=0.97"} +{"timestamp":"2026-03-16T06:48:07.988687122Z","score":0.3548054814794059,"is_anomaly":false,"confidence":0.41051410174211367,"method":"SEAD","details":"MAD:w=0.29,s=0.05 RRCF-fast:w=0.17,s=0.30 RRCF-mid:w=0.16,s=0.48 RRCF-slow:w=0.15,s=0.43 COPOD!:w=0.22,s=0.66"} +{"timestamp":"2026-03-16T06:48:39.218537552Z","score":0.37476345348121964,"is_anomaly":false,"confidence":0.4336057093315933,"method":"SEAD","details":"MAD:w=0.30,s=0.03 RRCF-fast:w=0.17,s=0.51 RRCF-mid:w=0.16,s=0.44 RRCF-slow:w=0.15,s=0.49 COPOD!:w=0.22,s=0.61"} +{"timestamp":"2026-03-16T06:49:13.114105712Z","score":0.8601262360018059,"is_anomaly":false,"confidence":0.9951761390067515,"method":"SEAD","details":"MAD!:w=0.30,s=0.96 RRCF-fast!:w=0.17,s=0.86 RRCF-mid!:w=0.16,s=0.86 RRCF-slow!:w=0.15,s=0.85 COPOD!:w=0.22,s=0.74"} +{"timestamp":"2026-03-16T06:49:38.13399936Z","score":0.21086081703335152,"is_anomaly":false,"confidence":0.24396843739878576,"method":"SEAD","details":"MAD:w=0.30,s=0.09 RRCF-fast:w=0.17,s=0.12 RRCF-mid:w=0.16,s=0.15 RRCF-slow:w=0.15,s=0.23 COPOD!:w=0.22,s=0.48"} +{"timestamp":"2026-03-16T06:50:08.005761308Z","score":0.25881941158116306,"is_anomaly":false,"confidence":0.30030983789134996,"method":"SEAD","details":"MAD:w=0.30,s=0.02 RRCF-fast:w=0.17,s=0.55 RRCF-mid:w=0.16,s=0.45 RRCF-slow:w=0.15,s=0.27 COPOD!:w=0.22,s=0.20"} +{"timestamp":"2026-03-16T06:50:38.028861514Z","score":0.9183497948806627,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=0.98 RRCF-fast!:w=0.17,s=0.96 RRCF-mid!:w=0.16,s=0.90 RRCF-slow:w=0.15,s=0.78 COPOD!:w=0.22,s=0.91"} +{"timestamp":"2026-03-16T06:51:14.161071735Z","score":0.6989860859716084,"is_anomaly":false,"confidence":0.8087350962460421,"method":"SEAD","details":"MAD!:w=0.30,s=0.84 RRCF-fast:w=0.17,s=0.84 RRCF-mid:w=0.16,s=0.71 RRCF-slow:w=0.15,s=0.60 COPOD!:w=0.22,s=0.45"} +{"timestamp":"2026-03-16T06:51:38.083314451Z","score":0.15802858521853044,"is_anomaly":false,"confidence":0.18284092579422995,"method":"SEAD","details":"MAD!:w=0.30,s=0.14 RRCF-fast:w=0.17,s=0.10 RRCF-mid:w=0.16,s=0.20 RRCF-slow:w=0.15,s=0.23 COPOD!:w=0.22,s=0.15"} +{"timestamp":"2026-03-16T06:52:07.989834363Z","score":0.2752732683809024,"is_anomaly":false,"confidence":0.3184943987669509,"method":"SEAD","details":"MAD:w=0.30,s=0.07 RRCF-fast:w=0.17,s=0.53 RRCF-mid:w=0.16,s=0.47 RRCF-slow:w=0.15,s=0.42 COPOD!:w=0.22,s=0.12"} +{"timestamp":"2026-03-16T06:52:40.060149891Z","score":0.7583497636247181,"is_anomaly":false,"confidence":0.8774195672588982,"method":"SEAD","details":"MAD!:w=0.30,s=0.77 RRCF-fast:w=0.17,s=0.77 RRCF-mid:w=0.16,s=0.77 RRCF-slow:w=0.15,s=0.63 COPOD!:w=0.22,s=0.81"} +{"timestamp":"2026-03-16T06:53:08.074121196Z","score":0.6617080993527855,"is_anomaly":false,"confidence":0.7677841891148594,"method":"SEAD","details":"MAD!:w=0.30,s=0.60 RRCF-fast:w=0.17,s=0.71 RRCF-mid:w=0.16,s=0.62 RRCF-slow:w=0.15,s=0.48 COPOD!:w=0.22,s=0.86"} +{"timestamp":"2026-03-16T06:53:37.987333175Z","score":0.30495574163606587,"is_anomaly":false,"confidence":0.3538421201689675,"method":"SEAD","details":"MAD:w=0.30,s=0.01 RRCF-fast:w=0.17,s=0.43 RRCF-mid:w=0.16,s=0.31 RRCF-slow:w=0.15,s=0.33 COPOD!:w=0.22,s=0.58"} +{"timestamp":"2026-03-16T06:54:09.262176229Z","score":0.2991429153124915,"is_anomaly":false,"confidence":0.3470974601751177,"method":"SEAD","details":"MAD:w=0.30,s=0.01 RRCF-fast:w=0.17,s=0.43 RRCF-mid:w=0.16,s=0.49 RRCF-slow:w=0.15,s=0.39 COPOD!:w=0.22,s=0.39"} +{"timestamp":"2026-03-16T06:54:39.058822248Z","score":0.8188755438742064,"is_anomaly":false,"confidence":0.950146591910233,"method":"SEAD","details":"MAD!:w=0.31,s=0.96 RRCF-fast:w=0.17,s=0.78 RRCF-mid!:w=0.16,s=0.88 RRCF-slow!:w=0.15,s=0.94 COPOD!:w=0.22,s=0.53"} +{"timestamp":"2026-03-16T06:55:09.463558995Z","score":0.305369960536483,"is_anomaly":false,"confidence":0.3543227410392332,"method":"SEAD","details":"MAD!:w=0.30,s=0.12 RRCF-fast:w=0.17,s=0.82 RRCF-mid:w=0.16,s=0.43 RRCF-slow:w=0.15,s=0.35 COPOD!:w=0.22,s=0.04"} +{"timestamp":"2026-03-16T06:55:37.984764281Z","score":0.2911940166609979,"is_anomaly":false,"confidence":0.3378743016382001,"method":"SEAD","details":"MAD:w=0.31,s=0.00 RRCF-fast:w=0.17,s=0.50 RRCF-mid:w=0.16,s=0.32 RRCF-slow:w=0.15,s=0.33 COPOD!:w=0.22,s=0.49"} +{"timestamp":"2026-03-16T06:56:08.040768892Z","score":0.9198659389398411,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=0.97 RRCF-fast!:w=0.17,s=0.92 RRCF-mid!:w=0.16,s=0.85 RRCF-slow!:w=0.15,s=0.94 COPOD!:w=0.22,s=0.88"} +{"timestamp":"2026-03-16T06:56:38.964859563Z","score":0.6447685764513925,"is_anomaly":false,"confidence":0.7481291510889388,"method":"SEAD","details":"MAD!:w=0.31,s=0.61 RRCF-fast!:w=0.17,s=0.92 RRCF-mid:w=0.16,s=0.60 RRCF-slow:w=0.15,s=0.62 COPOD!:w=0.22,s=0.53"} +{"timestamp":"2026-03-16T06:57:08.082236832Z","score":0.1924816488192005,"is_anomaly":false,"confidence":0.22333770253483126,"method":"SEAD","details":"MAD:w=0.31,s=0.11 RRCF-fast:w=0.17,s=0.10 RRCF-mid:w=0.16,s=0.15 RRCF-slow:w=0.15,s=0.22 COPOD!:w=0.22,s=0.38"} +{"timestamp":"2026-03-16T06:57:38.039589623Z","score":0.2620542622194277,"is_anomaly":false,"confidence":0.3040632560173136,"method":"SEAD","details":"MAD!:w=0.31,s=0.18 RRCF-fast:w=0.17,s=0.54 RRCF-mid:w=0.16,s=0.38 RRCF-slow:w=0.15,s=0.35 COPOD!:w=0.22,s=0.02"} +{"timestamp":"2026-03-16T06:58:14.094879917Z","score":0.7350819689192466,"is_anomaly":false,"confidence":0.8529203647222098,"method":"SEAD","details":"MAD!:w=0.31,s=0.95 RRCF-fast!:w=0.17,s=0.92 RRCF-mid!:w=0.16,s=0.85 RRCF-slow!:w=0.15,s=0.88 COPOD!:w=0.22,s=0.11"} +{"timestamp":"2026-03-16T06:58:38.07863922Z","score":0.8022094596664064,"is_anomaly":false,"confidence":0.930808826569713,"method":"SEAD","details":"MAD!:w=0.31,s=0.81 RRCF-fast:w=0.17,s=0.83 RRCF-mid:w=0.16,s=0.70 RRCF-slow:w=0.14,s=0.66 COPOD!:w=0.22,s=0.94"} +{"timestamp":"2026-03-16T06:59:08.860339006Z","score":0.3916207451375377,"is_anomaly":false,"confidence":0.4544000844784516,"method":"SEAD","details":"MAD!:w=0.31,s=0.18 RRCF-fast:w=0.17,s=0.72 RRCF-mid:w=0.16,s=0.50 RRCF-slow:w=0.15,s=0.36 COPOD!:w=0.22,s=0.37"} +{"timestamp":"2026-03-16T06:59:38.034273279Z","score":0.7523695058707291,"is_anomaly":false,"confidence":0.8729792057021971,"method":"SEAD","details":"MAD!:w=0.31,s=0.73 RRCF-fast:w=0.16,s=0.81 RRCF-mid:w=0.16,s=0.80 RRCF-slow:w=0.15,s=0.84 COPOD!:w=0.22,s=0.64"} +{"timestamp":"2026-03-16T07:00:07.989765241Z","score":0.6962126930349637,"is_anomaly":false,"confidence":0.8094308299107643,"method":"SEAD","details":"MAD!:w=0.31,s=0.75 RRCF-fast:w=0.16,s=0.83 RRCF-mid:w=0.16,s=0.73 RRCF-slow:w=0.14,s=0.56 COPOD!:w=0.22,s=0.59"} +{"timestamp":"2026-03-16T07:00:39.449296517Z","score":0.643168988420837,"is_anomaly":false,"confidence":0.7477611558630408,"method":"SEAD","details":"MAD!:w=0.31,s=0.74 RRCF-fast:w=0.16,s=0.76 RRCF-mid:w=0.16,s=0.66 RRCF-slow:w=0.15,s=0.63 COPOD!:w=0.22,s=0.43"} +{"timestamp":"2026-03-16T07:01:07.987696267Z","score":0.4690105186250241,"is_anomaly":false,"confidence":0.5452810285210732,"method":"SEAD","details":"MAD!:w=0.31,s=0.43 RRCF-fast:w=0.16,s=0.66 RRCF-mid:w=0.16,s=0.60 RRCF-slow:w=0.15,s=0.68 COPOD!:w=0.22,s=0.15"} +{"timestamp":"2026-03-16T07:01:37.991763051Z","score":0.5384820044779114,"is_anomaly":false,"confidence":0.6260499702706206,"method":"SEAD","details":"MAD!:w=0.31,s=0.71 RRCF-fast:w=0.16,s=0.62 RRCF-mid:w=0.16,s=0.58 RRCF-slow:w=0.14,s=0.52 COPOD!:w=0.22,s=0.22"} +{"timestamp":"2026-03-16T07:02:07.990825019Z","score":0.4873257498133774,"is_anomaly":false,"confidence":0.5665746833611923,"method":"SEAD","details":"MAD!:w=0.31,s=0.43 RRCF-fast:w=0.16,s=0.77 RRCF-mid:w=0.16,s=0.64 RRCF-slow:w=0.14,s=0.50 COPOD!:w=0.23,s=0.24"} +{"timestamp":"2026-03-16T07:02:37.992373633Z","score":0.6628393370127938,"is_anomaly":false,"confidence":0.7706302973548665,"method":"SEAD","details":"MAD!:w=0.31,s=0.80 RRCF-fast:w=0.16,s=0.62 RRCF-mid:w=0.16,s=0.76 RRCF-slow:w=0.14,s=0.64 COPOD!:w=0.23,s=0.46"} +{"timestamp":"2026-03-16T07:03:07.990591986Z","score":0.5350395178895668,"is_anomaly":false,"confidence":0.622294224270564,"method":"SEAD","details":"MAD!:w=0.30,s=0.72 RRCF-fast:w=0.16,s=0.47 RRCF-mid:w=0.16,s=0.63 RRCF-slow:w=0.14,s=0.48 COPOD!:w=0.23,s=0.31"} +{"timestamp":"2026-03-16T07:03:37.988049248Z","score":0.4748444242078099,"is_anomaly":false,"confidence":0.5522824627555679,"method":"SEAD","details":"MAD!:w=0.30,s=0.66 RRCF-fast:w=0.16,s=0.51 RRCF-mid:w=0.16,s=0.63 RRCF-slow:w=0.15,s=0.40 COPOD!:w=0.23,s=0.14"} +{"timestamp":"2026-03-16T07:04:07.991414717Z","score":0.40221851798911196,"is_anomaly":false,"confidence":0.4678126610658175,"method":"SEAD","details":"MAD!:w=0.30,s=0.45 RRCF-fast:w=0.16,s=0.43 RRCF-mid:w=0.16,s=0.56 RRCF-slow:w=0.15,s=0.40 COPOD!:w=0.23,s=0.22"} +{"timestamp":"2026-03-16T07:04:37.989452157Z","score":0.44819390630495454,"is_anomaly":false,"confidence":0.521285755390507,"method":"SEAD","details":"MAD!:w=0.30,s=0.46 RRCF-fast:w=0.16,s=0.57 RRCF-mid:w=0.16,s=0.51 RRCF-slow:w=0.15,s=0.38 COPOD!:w=0.23,s=0.34"} +{"timestamp":"2026-03-16T07:05:07.993034907Z","score":0.3943530117484671,"is_anomaly":false,"confidence":0.45866444127856876,"method":"SEAD","details":"MAD!:w=0.30,s=0.40 RRCF-fast:w=0.16,s=0.50 RRCF-mid:w=0.16,s=0.61 RRCF-slow:w=0.15,s=0.46 COPOD!:w=0.23,s=0.13"} +{"timestamp":"2026-03-16T07:05:38.027909935Z","score":0.8411807085232673,"is_anomaly":false,"confidence":0.9783611845095405,"method":"SEAD","details":"MAD!:w=0.30,s=0.97 RRCF-fast:w=0.16,s=0.80 RRCF-mid:w=0.16,s=0.74 RRCF-slow:w=0.15,s=0.62 COPOD!:w=0.23,s=0.91"} +{"timestamp":"2026-03-16T07:06:07.98403895Z","score":0.6854563818424407,"is_anomaly":false,"confidence":0.7972412002247488,"method":"SEAD","details":"MAD!:w=0.30,s=0.56 RRCF-fast:w=0.16,s=0.72 RRCF-mid!:w=0.16,s=0.95 RRCF-slow!:w=0.15,s=0.85 COPOD!:w=0.23,s=0.54"} +{"timestamp":"2026-03-16T07:06:37.988467858Z","score":0.5968134460978649,"is_anomaly":false,"confidence":0.6986242482566744,"method":"SEAD","details":"MAD!:w=0.30,s=0.39 RRCF-fast!:w=0.16,s=0.86 RRCF-mid:w=0.16,s=0.82 RRCF-slow!:w=0.15,s=0.91 COPOD!:w=0.24,s=0.34"} +{"timestamp":"2026-03-16T07:07:07.992290755Z","score":0.6226315442046373,"is_anomaly":false,"confidence":0.7288466728672338,"method":"SEAD","details":"MAD!:w=0.30,s=0.73 RRCF-fast:w=0.16,s=0.55 RRCF-mid:w=0.16,s=0.71 RRCF-slow:w=0.14,s=0.75 COPOD!:w=0.24,s=0.39"} +{"timestamp":"2026-03-16T07:07:37.985038747Z","score":0.6310616385113548,"is_anomaly":false,"confidence":0.7387148625607979,"method":"SEAD","details":"MAD!:w=0.30,s=0.72 RRCF-fast:w=0.16,s=0.43 RRCF-mid:w=0.16,s=0.67 RRCF-slow:w=0.14,s=0.77 COPOD!:w=0.24,s=0.54"} +{"timestamp":"2026-03-16T07:08:07.985927365Z","score":0.44437233500903334,"is_anomaly":false,"confidence":0.5201781067795208,"method":"SEAD","details":"MAD!:w=0.30,s=0.59 RRCF-fast:w=0.16,s=0.36 RRCF-mid:w=0.16,s=0.62 RRCF-slow:w=0.14,s=0.65 COPOD!:w=0.24,s=0.07"} +{"timestamp":"2026-03-16T07:08:37.990219912Z","score":0.5419543642601361,"is_anomaly":false,"confidence":0.6344067192121796,"method":"SEAD","details":"MAD!:w=0.30,s=0.70 RRCF-fast:w=0.16,s=0.48 RRCF-mid:w=0.16,s=0.52 RRCF-slow:w=0.14,s=0.68 COPOD!:w=0.24,s=0.32"} +{"timestamp":"2026-03-16T07:09:10.662345595Z","score":0.8865529892865793,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=0.92 RRCF-fast:w=0.16,s=0.76 RRCF-mid!:w=0.16,s=0.86 RRCF-slow:w=0.14,s=0.83 COPOD!:w=0.24,s=0.98"} +{"timestamp":"2026-03-16T07:09:40.05776589Z","score":0.5303395006280408,"is_anomaly":false,"confidence":0.6168277241373472,"method":"SEAD","details":"MAD!:w=0.30,s=0.79 RRCF-fast:w=0.16,s=0.46 RRCF-mid:w=0.16,s=0.53 RRCF-slow:w=0.14,s=0.35 COPOD!:w=0.24,s=0.38"} +{"timestamp":"2026-03-16T07:10:08.02712977Z","score":0.49499305561399387,"is_anomaly":false,"confidence":0.579434249733533,"method":"SEAD","details":"MAD!:w=0.30,s=0.37 RRCF-fast:w=0.16,s=0.23 RRCF-mid:w=0.16,s=0.57 RRCF-slow:w=0.14,s=0.55 COPOD!:w=0.24,s=0.75"} +{"timestamp":"2026-03-16T07:10:38.032086658Z","score":0.19780125359878536,"is_anomaly":false,"confidence":0.2315443008249837,"method":"SEAD","details":"MAD!:w=0.30,s=0.14 RRCF-fast:w=0.16,s=0.10 RRCF-mid:w=0.16,s=0.16 RRCF-slow:w=0.14,s=0.19 COPOD!:w=0.24,s=0.36"} +{"timestamp":"2026-03-16T07:11:08.050744638Z","score":0.26836360141553817,"is_anomaly":false,"confidence":0.3141439264215915,"method":"SEAD","details":"MAD:w=0.30,s=0.02 RRCF-fast:w=0.16,s=0.35 RRCF-mid:w=0.16,s=0.42 RRCF-slow:w=0.14,s=0.23 COPOD!:w=0.24,s=0.44"} +{"timestamp":"2026-03-16T07:11:44.478896212Z","score":0.7517357762499133,"is_anomaly":false,"confidence":0.8799748816050043,"method":"SEAD","details":"MAD!:w=0.30,s=0.86 RRCF-fast:w=0.16,s=0.64 RRCF-mid:w=0.16,s=0.69 RRCF-slow:w=0.14,s=0.48 COPOD!:w=0.24,s=0.90"} +{"timestamp":"2026-03-16T07:12:08.035152113Z","score":0.46423277301165355,"is_anomaly":false,"confidence":0.5434265500918279,"method":"SEAD","details":"MAD!:w=0.30,s=0.54 RRCF-fast:w=0.16,s=0.18 RRCF-mid:w=0.16,s=0.37 RRCF-slow:w=0.14,s=0.21 COPOD!:w=0.24,s=0.79"} +{"timestamp":"2026-03-16T07:12:37.995954372Z","score":0.3264572005940032,"is_anomaly":false,"confidence":0.38214775126826644,"method":"SEAD","details":"MAD:w=0.30,s=0.08 RRCF-fast:w=0.17,s=0.42 RRCF-mid:w=0.16,s=0.37 RRCF-slow:w=0.15,s=0.25 COPOD!:w=0.24,s=0.59"} +{"timestamp":"2026-03-16T07:13:08.023562096Z","score":0.9434139498384477,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=0.97 RRCF-fast!:w=0.16,s=0.98 RRCF-mid!:w=0.16,s=0.97 RRCF-slow!:w=0.15,s=0.95 COPOD!:w=0.23,s=0.87"} +{"timestamp":"2026-03-16T07:13:42.006133987Z","score":0.9108859363921864,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=0.93 RRCF-fast!:w=0.16,s=0.95 RRCF-mid!:w=0.16,s=0.95 RRCF-slow!:w=0.15,s=0.87 COPOD!:w=0.24,s=0.86"} +{"timestamp":"2026-03-16T07:14:08.082243424Z","score":0.4736910161674072,"is_anomaly":false,"confidence":0.5509409559364062,"method":"SEAD","details":"MAD!:w=0.30,s=0.20 RRCF-fast:w=0.16,s=0.61 RRCF-mid:w=0.16,s=0.67 RRCF-slow:w=0.15,s=0.22 COPOD!:w=0.24,s=0.76"} +{"timestamp":"2026-03-16T07:14:38.016309258Z","score":0.4212031260749585,"is_anomaly":false,"confidence":0.489893295424308,"method":"SEAD","details":"MAD:w=0.30,s=0.10 RRCF-fast:w=0.16,s=0.52 RRCF-mid:w=0.15,s=0.58 RRCF-slow:w=0.15,s=0.53 COPOD!:w=0.23,s=0.59"} +{"timestamp":"2026-03-16T07:15:10.502101082Z","score":0.6309348244048798,"is_anomaly":false,"confidence":0.7338282201415974,"method":"SEAD","details":"MAD!:w=0.30,s=0.57 RRCF-fast:w=0.16,s=0.75 RRCF-mid:w=0.15,s=0.76 RRCF-slow:w=0.15,s=0.36 COPOD!:w=0.23,s=0.70"} +{"timestamp":"2026-03-16T07:15:39.308891335Z","score":0.7110491339723356,"is_anomaly":false,"confidence":0.8270076404616155,"method":"SEAD","details":"MAD!:w=0.30,s=0.91 RRCF-fast:w=0.16,s=0.45 RRCF-mid:w=0.15,s=0.71 RRCF-slow:w=0.15,s=0.65 COPOD!:w=0.23,s=0.68"} +{"timestamp":"2026-03-16T07:16:08.028734503Z","score":0.2877856436499518,"is_anomaly":false,"confidence":0.33471797481006943,"method":"SEAD","details":"MAD!:w=0.30,s=0.16 RRCF-fast:w=0.16,s=0.06 RRCF-mid:w=0.15,s=0.21 RRCF-slow:w=0.15,s=0.13 COPOD!:w=0.23,s=0.77"} +{"timestamp":"2026-03-16T07:16:37.990078181Z","score":0.2599395433772785,"is_anomaly":false,"confidence":0.30428280272753067,"method":"SEAD","details":"MAD!:w=0.30,s=0.14 RRCF-fast:w=0.16,s=0.44 RRCF-mid:w=0.15,s=0.47 RRCF-slow:w=0.15,s=0.27 COPOD!:w=0.23,s=0.14"} +{"timestamp":"2026-03-16T07:17:08.076636606Z","score":0.8272176736926697,"is_anomaly":false,"confidence":0.9683332860657609,"method":"SEAD","details":"MAD!:w=0.30,s=0.91 RRCF-fast:w=0.16,s=0.75 RRCF-mid:w=0.15,s=0.79 RRCF-slow:w=0.15,s=0.53 COPOD!:w=0.23,s=0.99"} +{"timestamp":"2026-03-16T07:17:38.077950942Z","score":0.5806503382039859,"is_anomaly":false,"confidence":0.6797038650520355,"method":"SEAD","details":"MAD!:w=0.30,s=0.72 RRCF-fast:w=0.16,s=0.17 RRCF-mid:w=0.15,s=0.44 RRCF-slow:w=0.15,s=0.47 COPOD!:w=0.23,s=0.85"} +{"timestamp":"2026-03-16T07:18:07.990506231Z","score":0.42153378483460613,"is_anomaly":false,"confidence":0.49344351316202856,"method":"SEAD","details":"MAD!:w=0.30,s=0.16 RRCF-fast:w=0.17,s=0.46 RRCF-mid:w=0.15,s=0.45 RRCF-slow:w=0.15,s=0.38 COPOD!:w=0.23,s=0.75"} +{"timestamp":"2026-03-16T07:18:37.989690179Z","score":0.18046968838947713,"is_anomaly":false,"confidence":0.21125613239541555,"method":"SEAD","details":"MAD!:w=0.31,s=0.12 RRCF-fast:w=0.17,s=0.15 RRCF-mid:w=0.15,s=0.39 RRCF-slow:w=0.15,s=0.36 COPOD!:w=0.23,s=0.02"} +{"timestamp":"2026-03-16T07:19:08.070921375Z","score":0.9813088701657555,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=1.00 RRCF-fast!:w=0.17,s=1.00 RRCF-mid!:w=0.15,s=1.00 RRCF-slow!:w=0.15,s=1.00 COPOD!:w=0.23,s=0.92"} +{"timestamp":"2026-03-16T07:19:37.989226438Z","score":0.8518438036200627,"is_anomaly":false,"confidence":0.990763226358257,"method":"SEAD","details":"MAD!:w=0.31,s=0.96 RRCF-fast!:w=0.17,s=1.00 RRCF-mid!:w=0.15,s=1.00 RRCF-slow!:w=0.15,s=1.00 COPOD!:w=0.23,s=0.41"} +{"timestamp":"2026-03-16T07:20:07.987646872Z","score":0.8430228543126378,"is_anomaly":false,"confidence":0.9868346829451058,"method":"SEAD","details":"MAD!:w=0.30,s=1.00 RRCF-fast!:w=0.17,s=0.98 RRCF-mid!:w=0.15,s=0.98 RRCF-slow!:w=0.15,s=0.99 COPOD!:w=0.23,s=0.36"} +{"timestamp":"2026-03-16T07:20:37.990489654Z","score":0.7665195998966465,"is_anomaly":false,"confidence":0.8972806875466898,"method":"SEAD","details":"MAD!:w=0.30,s=0.95 RRCF-fast!:w=0.16,s=0.95 RRCF-mid!:w=0.15,s=0.97 RRCF-slow!:w=0.15,s=0.99 COPOD!:w=0.23,s=0.13"} +{"timestamp":"2026-03-16T07:21:07.991921037Z","score":0.8644571693384047,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=1.00 RRCF-fast!:w=0.16,s=0.96 RRCF-mid!:w=0.15,s=0.96 RRCF-slow!:w=0.15,s=0.98 COPOD!:w=0.24,s=0.49"} +{"timestamp":"2026-03-16T07:21:37.991213375Z","score":0.7298462110544562,"is_anomaly":false,"confidence":0.8488701610984305,"method":"SEAD","details":"MAD!:w=0.30,s=0.94 RRCF-fast!:w=0.16,s=0.92 RRCF-mid!:w=0.15,s=0.96 RRCF-slow!:w=0.15,s=0.96 COPOD!:w=0.24,s=0.05"} +{"timestamp":"2026-03-16T07:22:07.989109162Z","score":0.80068285591057,"is_anomaly":false,"confidence":0.9312589071382383,"method":"SEAD","details":"MAD!:w=0.30,s=0.95 RRCF-fast:w=0.16,s=0.87 RRCF-mid!:w=0.15,s=0.94 RRCF-slow!:w=0.15,s=0.96 COPOD!:w=0.24,s=0.39"} +{"timestamp":"2026-03-16T07:22:37.991601738Z","score":0.7844300951799643,"is_anomaly":false,"confidence":0.9123556321595948,"method":"SEAD","details":"MAD!:w=0.30,s=1.00 RRCF-fast:w=0.16,s=0.86 RRCF-mid!:w=0.15,s=0.93 RRCF-slow!:w=0.14,s=0.96 COPOD!:w=0.24,s=0.28"} +{"timestamp":"2026-03-16T07:23:08.03379563Z","score":0.8321424633958181,"is_anomaly":false,"confidence":0.9740981989152948,"method":"SEAD","details":"MAD!:w=0.29,s=0.93 RRCF-fast:w=0.16,s=0.78 RRCF-mid:w=0.15,s=0.93 RRCF-slow!:w=0.14,s=0.95 COPOD!:w=0.25,s=0.62"} +{"timestamp":"2026-03-16T07:23:38.034479611Z","score":0.7022498969291102,"is_anomaly":false,"confidence":0.8220471732635479,"method":"SEAD","details":"MAD!:w=0.29,s=0.22 RRCF-fast:w=0.16,s=0.83 RRCF-mid:w=0.15,s=0.93 RRCF-slow!:w=0.14,s=0.96 COPOD!:w=0.25,s=0.90"} +{"timestamp":"2026-03-16T07:24:07.99141784Z","score":0.5996433272025339,"is_anomaly":false,"confidence":0.701936880658527,"method":"SEAD","details":"MAD!:w=0.30,s=0.17 RRCF-fast:w=0.16,s=0.65 RRCF-mid:w=0.15,s=0.88 RRCF-slow:w=0.14,s=0.93 COPOD!:w=0.25,s=0.72"} +{"timestamp":"2026-03-16T07:24:38.024199475Z","score":0.8530342003316025,"is_anomaly":false,"confidence":0.9985538711307382,"method":"SEAD","details":"MAD!:w=0.30,s=0.95 RRCF-fast:w=0.16,s=0.87 RRCF-mid:w=0.15,s=0.91 RRCF-slow:w=0.14,s=0.93 COPOD!:w=0.25,s=0.64"} +{"timestamp":"2026-03-16T07:25:07.988123959Z","score":0.7751037417405559,"is_anomaly":false,"confidence":0.9073292038491299,"method":"SEAD","details":"MAD!:w=0.30,s=0.85 RRCF-fast:w=0.16,s=0.80 RRCF-mid:w=0.15,s=0.81 RRCF-slow:w=0.14,s=0.93 COPOD!:w=0.25,s=0.56"} +{"timestamp":"2026-03-16T07:25:37.98549803Z","score":0.5836182090128199,"is_anomaly":false,"confidence":0.6831780269133361,"method":"SEAD","details":"MAD!:w=0.30,s=0.68 RRCF-fast:w=0.16,s=0.70 RRCF-mid:w=0.15,s=0.78 RRCF-slow:w=0.14,s=0.91 COPOD!:w=0.25,s=0.09"} +{"timestamp":"2026-03-16T07:26:07.991215679Z","score":0.6995065309411905,"is_anomaly":false,"confidence":0.8188358146496721,"method":"SEAD","details":"MAD!:w=0.30,s=0.88 RRCF-fast:w=0.16,s=0.62 RRCF-mid:w=0.15,s=0.82 RRCF-slow:w=0.14,s=0.90 COPOD!:w=0.25,s=0.35"} +{"timestamp":"2026-03-16T07:26:37.982756845Z","score":0.6775734718090286,"is_anomaly":false,"confidence":0.7943098548049228,"method":"SEAD","details":"MAD!:w=0.30,s=0.88 RRCF-fast:w=0.16,s=0.54 RRCF-mid:w=0.15,s=0.81 RRCF-slow:w=0.14,s=0.91 COPOD!:w=0.25,s=0.32"} +{"timestamp":"2026-03-16T07:27:07.984566693Z","score":0.49426705553717065,"is_anomaly":false,"confidence":0.5794223201660997,"method":"SEAD","details":"MAD!:w=0.29,s=0.69 RRCF-fast:w=0.16,s=0.39 RRCF-mid:w=0.15,s=0.63 RRCF-slow:w=0.14,s=0.87 COPOD!:w=0.26,s=0.06"} +{"timestamp":"2026-03-16T07:27:37.990992786Z","score":0.4151944665022704,"is_anomaly":false,"confidence":0.4867266357443472,"method":"SEAD","details":"MAD!:w=0.29,s=0.36 RRCF-fast:w=0.16,s=0.44 RRCF-mid:w=0.15,s=0.68 RRCF-slow:w=0.14,s=0.82 COPOD!:w=0.26,s=0.09"} +{"timestamp":"2026-03-16T07:28:07.991598211Z","score":0.6222838871080397,"is_anomaly":false,"confidence":0.7294946519918398,"method":"SEAD","details":"MAD!:w=0.29,s=0.88 RRCF-fast:w=0.16,s=0.47 RRCF-mid:w=0.15,s=0.57 RRCF-slow:w=0.14,s=0.89 COPOD!:w=0.26,s=0.31"} +{"timestamp":"2026-03-16T07:28:37.987124071Z","score":0.6348198659123734,"is_anomaly":false,"confidence":0.7441904036972937,"method":"SEAD","details":"MAD!:w=0.29,s=0.88 RRCF-fast:w=0.16,s=0.51 RRCF-mid:w=0.15,s=0.69 RRCF-slow:w=0.14,s=0.88 COPOD!:w=0.26,s=0.28"} +{"timestamp":"2026-03-16T07:29:15.679887666Z","score":0.807807921156181,"is_anomaly":false,"confidence":0.9469818687716852,"method":"SEAD","details":"MAD!:w=0.29,s=0.88 RRCF-fast:w=0.16,s=0.62 RRCF-mid:w=0.15,s=0.84 RRCF-slow:w=0.14,s=0.91 COPOD!:w=0.26,s=0.78"} +{"timestamp":"2026-03-16T07:29:38.026140753Z","score":0.378438356223746,"is_anomaly":false,"confidence":0.4436379644293682,"method":"SEAD","details":"MAD!:w=0.29,s=0.11 RRCF-fast:w=0.16,s=0.19 RRCF-mid:w=0.15,s=0.46 RRCF-slow:w=0.14,s=0.76 COPOD!:w=0.26,s=0.55"} +{"timestamp":"2026-03-16T07:30:07.985990542Z","score":0.34887876873290025,"is_anomaly":false,"confidence":0.40955720667366186,"method":"SEAD","details":"MAD!:w=0.29,s=0.11 RRCF-fast:w=0.16,s=0.22 RRCF-mid:w=0.15,s=0.39 RRCF-slow:w=0.14,s=0.71 COPOD!:w=0.26,s=0.48"} +{"timestamp":"2026-03-16T07:30:38.041188758Z","score":0.9408391289261282,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=0.95 RRCF-fast!:w=0.16,s=0.94 RRCF-mid:w=0.15,s=0.90 RRCF-slow:w=0.14,s=0.93 COPOD!:w=0.26,s=0.97"} +{"timestamp":"2026-03-16T07:31:12.521056269Z","score":0.5718165641878448,"is_anomaly":false,"confidence":0.6703325188668413,"method":"SEAD","details":"MAD!:w=0.29,s=0.56 RRCF-fast:w=0.16,s=0.59 RRCF-mid:w=0.15,s=0.61 RRCF-slow:w=0.14,s=0.69 COPOD!:w=0.26,s=0.49"} +{"timestamp":"2026-03-16T07:31:38.039804745Z","score":0.33650124484317134,"is_anomaly":false,"confidence":0.39447567836361336,"method":"SEAD","details":"MAD!:w=0.29,s=0.14 RRCF-fast:w=0.16,s=0.10 RRCF-mid:w=0.15,s=0.27 RRCF-slow:w=0.14,s=0.52 COPOD!:w=0.26,s=0.64"} +{"timestamp":"2026-03-16T07:32:07.990636085Z","score":0.4064901561020118,"is_anomaly":false,"confidence":0.47652269503848227,"method":"SEAD","details":"MAD:w=0.29,s=0.06 RRCF-fast:w=0.16,s=0.24 RRCF-mid:w=0.15,s=0.40 RRCF-slow:w=0.14,s=0.64 COPOD!:w=0.26,s=0.78"} +{"timestamp":"2026-03-16T07:32:47.152252976Z","score":0.5203477474294838,"is_anomaly":false,"confidence":0.6099963485956453,"method":"SEAD","details":"MAD!:w=0.30,s=0.55 RRCF-fast:w=0.16,s=0.51 RRCF-mid:w=0.15,s=0.55 RRCF-slow:w=0.14,s=0.74 COPOD!:w=0.26,s=0.36"} +{"timestamp":"2026-03-16T07:33:08.025698593Z","score":0.5753897522207165,"is_anomaly":false,"confidence":0.675463916947561,"method":"SEAD","details":"MAD!:w=0.30,s=0.54 RRCF-fast:w=0.16,s=0.24 RRCF-mid:w=0.15,s=0.43 RRCF-slow:w=0.13,s=0.68 COPOD!:w=0.26,s=0.86"} +{"timestamp":"2026-03-16T07:33:38.030264289Z","score":0.36287033176143846,"is_anomaly":false,"confidence":0.42598224019398395,"method":"SEAD","details":"MAD:w=0.30,s=0.04 RRCF-fast:w=0.17,s=0.16 RRCF-mid:w=0.15,s=0.20 RRCF-slow:w=0.13,s=0.52 COPOD!:w=0.26,s=0.88"} +{"timestamp":"2026-03-16T07:34:07.984629678Z","score":0.32098046064508684,"is_anomaly":false,"confidence":0.3768067094941853,"method":"SEAD","details":"MAD:w=0.30,s=0.07 RRCF-fast:w=0.17,s=0.41 RRCF-mid:w=0.15,s=0.40 RRCF-slow:w=0.13,s=0.43 COPOD!:w=0.25,s=0.45"} +{"timestamp":"2026-03-16T07:34:38.091507726Z","score":0.7042493161697352,"is_anomaly":false,"confidence":0.8267352690445146,"method":"SEAD","details":"MAD!:w=0.30,s=0.82 RRCF-fast:w=0.17,s=0.34 RRCF-mid:w=0.15,s=0.46 RRCF-slow:w=0.13,s=0.74 COPOD!:w=0.25,s=0.94"} +{"timestamp":"2026-03-16T07:35:08.027697318Z","score":0.34088698899167447,"is_anomaly":false,"confidence":0.40017546355683303,"method":"SEAD","details":"MAD!:w=0.30,s=0.19 RRCF-fast:w=0.17,s=0.16 RRCF-mid:w=0.15,s=0.17 RRCF-slow:w=0.13,s=0.38 COPOD!:w=0.25,s=0.73"} +{"timestamp":"2026-03-16T07:35:38.040649438Z","score":0.23650823387044728,"is_anomaly":false,"confidence":0.2776427237779546,"method":"SEAD","details":"MAD!:w=0.30,s=0.17 RRCF-fast:w=0.17,s=0.29 RRCF-mid:w=0.15,s=0.23 RRCF-slow:w=0.13,s=0.42 COPOD!:w=0.25,s=0.19"} +{"timestamp":"2026-03-16T07:36:08.03931146Z","score":0.8355675226069157,"is_anomaly":false,"confidence":0.9808928808967348,"method":"SEAD","details":"MAD!:w=0.30,s=0.94 RRCF-fast:w=0.17,s=0.67 RRCF-mid:w=0.15,s=0.77 RRCF-slow:w=0.13,s=0.81 COPOD!:w=0.25,s=0.87"} +{"timestamp":"2026-03-16T07:36:42.037093003Z","score":0.5289587440093783,"is_anomaly":false,"confidence":0.6221324799042328,"method":"SEAD","details":"MAD!:w=0.30,s=0.59 RRCF-fast:w=0.17,s=0.42 RRCF-mid:w=0.15,s=0.43 RRCF-slow:w=0.13,s=0.58 COPOD!:w=0.25,s=0.57"} +{"timestamp":"2026-03-16T07:37:08.077965255Z","score":0.25545330297265045,"is_anomaly":false,"confidence":0.30045026890657595,"method":"SEAD","details":"MAD:w=0.30,s=0.07 RRCF-fast:w=0.17,s=0.09 RRCF-mid:w=0.15,s=0.11 RRCF-slow:w=0.13,s=0.23 COPOD!:w=0.25,s=0.69"} +{"timestamp":"2026-03-16T07:37:37.992247028Z","score":0.20048880658572937,"is_anomaly":false,"confidence":0.2358040203453154,"method":"SEAD","details":"MAD:w=0.30,s=0.09 RRCF-fast:w=0.17,s=0.15 RRCF-mid:w=0.15,s=0.21 RRCF-slow:w=0.13,s=0.31 COPOD!:w=0.25,s=0.30"} +{"timestamp":"2026-03-16T07:38:10.550180452Z","score":0.7743093275546129,"is_anomaly":false,"confidence":0.9107004801795836,"method":"SEAD","details":"MAD!:w=0.30,s=0.89 RRCF-fast!:w=0.17,s=0.93 RRCF-mid:w=0.15,s=0.77 RRCF-slow:w=0.13,s=0.84 COPOD!:w=0.25,s=0.49"} +{"timestamp":"2026-03-16T07:38:40.54808253Z","score":0.6387797745019835,"is_anomaly":false,"confidence":0.7512979976686798,"method":"SEAD","details":"MAD!:w=0.30,s=0.73 RRCF-fast:w=0.17,s=0.38 RRCF-mid:w=0.15,s=0.32 RRCF-slow:w=0.13,s=0.51 COPOD!:w=0.25,s=0.97"} +{"timestamp":"2026-03-16T07:39:08.027782296Z","score":0.3127675749781985,"is_anomaly":false,"confidence":0.3678601956362968,"method":"SEAD","details":"MAD!:w=0.30,s=0.12 RRCF-fast:w=0.17,s=0.14 RRCF-mid:w=0.15,s=0.16 RRCF-slow:w=0.13,s=0.27 COPOD!:w=0.25,s=0.79"} +{"timestamp":"2026-03-16T07:39:37.990662168Z","score":0.22329320787174567,"is_anomaly":false,"confidence":0.26262531574023384,"method":"SEAD","details":"MAD:w=0.30,s=0.03 RRCF-fast:w=0.17,s=0.27 RRCF-mid:w=0.15,s=0.17 RRCF-slow:w=0.13,s=0.45 COPOD!:w=0.24,s=0.34"} +{"timestamp":"2026-03-16T07:40:17.560440832Z","score":0.7945320481941511,"is_anomaly":false,"confidence":0.9382360289290683,"method":"SEAD","details":"MAD!:w=0.31,s=0.86 RRCF-fast:w=0.17,s=0.67 RRCF-mid:w=0.15,s=0.56 RRCF-slow:w=0.13,s=0.72 COPOD!:w=0.24,s=0.99"} +{"timestamp":"2026-03-16T07:40:38.02920354Z","score":0.2805825326224992,"is_anomaly":false,"confidence":0.3313304249877989,"method":"SEAD","details":"MAD!:w=0.30,s=0.23 RRCF-fast:w=0.17,s=0.15 RRCF-mid:w=0.15,s=0.16 RRCF-slow:w=0.13,s=0.23 COPOD!:w=0.24,s=0.54"} +{"timestamp":"2026-03-16T07:41:09.24315178Z","score":0.211114142601113,"is_anomaly":false,"confidence":0.24929755225736586,"method":"SEAD","details":"MAD!:w=0.31,s=0.16 RRCF-fast:w=0.17,s=0.19 RRCF-mid:w=0.15,s=0.23 RRCF-slow:w=0.13,s=0.33 COPOD!:w=0.24,s=0.22"} +{"timestamp":"2026-03-16T07:41:39.369913093Z","score":0.6962711748042039,"is_anomaly":false,"confidence":0.8222030861950099,"method":"SEAD","details":"MAD!:w=0.31,s=0.83 RRCF-fast:w=0.17,s=0.54 RRCF-mid:w=0.15,s=0.51 RRCF-slow:w=0.13,s=0.64 COPOD!:w=0.24,s=0.79"} +{"timestamp":"2026-03-16T07:42:10.270638831Z","score":0.7706370329511505,"is_anomaly":false,"confidence":0.9100192134289916,"method":"SEAD","details":"MAD!:w=0.30,s=0.90 RRCF-fast:w=0.17,s=0.91 RRCF-mid:w=0.15,s=0.77 RRCF-slow:w=0.13,s=0.75 COPOD!:w=0.24,s=0.52"} +{"timestamp":"2026-03-16T07:42:39.541060276Z","score":0.2849653909524365,"is_anomaly":false,"confidence":0.33650599418502053,"method":"SEAD","details":"MAD!:w=0.30,s=0.22 RRCF-fast:w=0.17,s=0.12 RRCF-mid:w=0.15,s=0.16 RRCF-slow:w=0.13,s=0.29 COPOD!:w=0.24,s=0.56"} +{"timestamp":"2026-03-16T07:43:07.991801193Z","score":0.2665602054650358,"is_anomaly":false,"confidence":0.3155539539790237,"method":"SEAD","details":"MAD:w=0.30,s=0.09 RRCF-fast:w=0.17,s=0.28 RRCF-mid:w=0.15,s=0.18 RRCF-slow:w=0.13,s=0.28 COPOD!:w=0.24,s=0.54"} +{"timestamp":"2026-03-16T07:43:41.469742048Z","score":0.8988599180278315,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=0.91 RRCF-fast!:w=0.17,s=0.94 RRCF-mid:w=0.15,s=0.91 RRCF-slow:w=0.13,s=0.85 COPOD!:w=0.24,s=0.88"} +{"timestamp":"2026-03-16T07:44:08.091197184Z","score":0.14980733504301488,"is_anomaly":false,"confidence":0.17690241627718326,"method":"SEAD","details":"MAD!:w=0.31,s=0.23 RRCF-fast:w=0.17,s=0.04 RRCF-mid:w=0.15,s=0.10 RRCF-slow:w=0.13,s=0.15 COPOD!:w=0.24,s=0.15"} +{"timestamp":"2026-03-16T07:44:38.01544715Z","score":0.2666744288926467,"is_anomaly":false,"confidence":0.31490681559018063,"method":"SEAD","details":"MAD:w=0.30,s=0.11 RRCF-fast:w=0.17,s=0.44 RRCF-mid:w=0.15,s=0.25 RRCF-slow:w=0.13,s=0.22 COPOD!:w=0.24,s=0.38"} +{"timestamp":"2026-03-16T07:45:08.755708807Z","score":0.8156265274671918,"is_anomaly":false,"confidence":0.963145786201223,"method":"SEAD","details":"MAD!:w=0.31,s=0.94 RRCF-fast:w=0.17,s=0.77 RRCF-mid:w=0.15,s=0.53 RRCF-slow:w=0.13,s=0.70 COPOD!:w=0.24,s=0.93"} +{"timestamp":"2026-03-16T07:45:42.476254158Z","score":0.707651058380095,"is_anomaly":false,"confidence":0.8356412059035685,"method":"SEAD","details":"MAD!:w=0.31,s=0.83 RRCF-fast:w=0.17,s=0.81 RRCF-mid:w=0.15,s=0.39 RRCF-slow:w=0.13,s=0.51 COPOD!:w=0.24,s=0.79"} +{"timestamp":"2026-03-16T07:46:08.030410585Z","score":0.3307925872212193,"is_anomaly":false,"confidence":0.3906217806305147,"method":"SEAD","details":"MAD!:w=0.30,s=0.23 RRCF-fast:w=0.17,s=0.10 RRCF-mid:w=0.15,s=0.12 RRCF-slow:w=0.13,s=0.14 COPOD!:w=0.24,s=0.88"} +{"timestamp":"2026-03-16T07:46:38.040431496Z","score":0.15985424705691195,"is_anomaly":false,"confidence":0.1892354473209796,"method":"SEAD","details":"MAD!:w=0.31,s=0.18 RRCF-fast:w=0.17,s=0.24 RRCF-mid:w=0.15,s=0.19 RRCF-slow:w=0.14,s=0.20 COPOD!:w=0.23,s=0.03"} +{"timestamp":"2026-03-16T07:47:08.246208687Z","score":0.7380590047447598,"is_anomaly":false,"confidence":0.873714202053242,"method":"SEAD","details":"MAD!:w=0.31,s=0.85 RRCF-fast:w=0.17,s=0.65 RRCF-mid:w=0.15,s=0.43 RRCF-slow:w=0.14,s=0.58 COPOD!:w=0.23,s=0.95"} +{"timestamp":"2026-03-16T07:47:38.027354811Z","score":0.6810338707670505,"is_anomaly":false,"confidence":0.8062078521408202,"method":"SEAD","details":"MAD!:w=0.30,s=0.71 RRCF-fast:w=0.17,s=0.78 RRCF-mid:w=0.16,s=0.38 RRCF-slow:w=0.14,s=0.38 COPOD!:w=0.23,s=0.95"} +{"timestamp":"2026-03-16T07:48:07.991768947Z","score":0.3663782237672531,"is_anomaly":false,"confidence":0.4337185175854498,"method":"SEAD","details":"MAD!:w=0.30,s=0.20 RRCF-fast:w=0.17,s=0.55 RRCF-mid:w=0.16,s=0.21 RRCF-slow:w=0.14,s=0.24 COPOD!:w=0.23,s=0.64"} +{"timestamp":"2026-03-16T07:48:37.989672955Z","score":0.20425677927247216,"is_anomaly":false,"confidence":0.24179916208424293,"method":"SEAD","details":"MAD:w=0.31,s=0.12 RRCF-fast:w=0.17,s=0.26 RRCF-mid:w=0.16,s=0.16 RRCF-slow:w=0.14,s=0.24 COPOD!:w=0.23,s=0.28"} +{"timestamp":"2026-03-16T07:49:10.62827702Z","score":0.7589129531011429,"is_anomaly":false,"confidence":0.8984011047679619,"method":"SEAD","details":"MAD!:w=0.31,s=0.89 RRCF-fast:w=0.17,s=0.85 RRCF-mid:w=0.16,s=0.66 RRCF-slow:w=0.14,s=0.65 COPOD!:w=0.23,s=0.65"} +{"timestamp":"2026-03-16T07:49:38.031338003Z","score":0.20447108859242918,"is_anomaly":false,"confidence":0.24205286144333898,"method":"SEAD","details":"MAD:w=0.31,s=0.11 RRCF-fast:w=0.17,s=0.07 RRCF-mid:w=0.16,s=0.09 RRCF-slow:w=0.14,s=0.11 COPOD!:w=0.23,s=0.56"} +{"timestamp":"2026-03-16T07:50:08.038757705Z","score":0.146810884818892,"is_anomaly":false,"confidence":0.17414816700146865,"method":"SEAD","details":"MAD:w=0.31,s=0.07 RRCF-fast:w=0.17,s=0.36 RRCF-mid:w=0.16,s=0.18 RRCF-slow:w=0.14,s=0.23 COPOD!:w=0.23,s=0.01"} +{"timestamp":"2026-03-16T07:50:39.328477215Z","score":0.5755441774329151,"is_anomaly":false,"confidence":0.6827147976933406,"method":"SEAD","details":"MAD!:w=0.31,s=0.68 RRCF-fast:w=0.17,s=0.60 RRCF-mid:w=0.16,s=0.41 RRCF-slow:w=0.14,s=0.45 COPOD!:w=0.23,s=0.61"} +{"timestamp":"2026-03-16T07:51:09.95618995Z","score":0.4991134744837278,"is_anomaly":false,"confidence":0.5920521275673861,"method":"SEAD","details":"MAD!:w=0.31,s=0.64 RRCF-fast:w=0.17,s=0.52 RRCF-mid:w=0.16,s=0.39 RRCF-slow:w=0.14,s=0.31 COPOD!:w=0.23,s=0.49"} +{"timestamp":"2026-03-16T07:51:38.082061165Z","score":0.16550904661485127,"is_anomaly":false,"confidence":0.1963280660401547,"method":"SEAD","details":"MAD!:w=0.30,s=0.15 RRCF-fast:w=0.17,s=0.07 RRCF-mid:w=0.16,s=0.13 RRCF-slow:w=0.14,s=0.11 COPOD!:w=0.23,s=0.32"} +{"timestamp":"2026-03-16T07:52:07.988249409Z","score":0.18940238537486465,"is_anomaly":false,"confidence":0.2246705227574105,"method":"SEAD","details":"MAD:w=0.30,s=0.10 RRCF-fast:w=0.17,s=0.41 RRCF-mid:w=0.16,s=0.20 RRCF-slow:w=0.14,s=0.17 COPOD!:w=0.23,s=0.15"} +{"timestamp":"2026-03-16T07:52:38.118710367Z","score":0.6006736866189433,"is_anomaly":false,"confidence":0.7125236089936199,"method":"SEAD","details":"MAD!:w=0.31,s=0.77 RRCF-fast:w=0.17,s=0.64 RRCF-mid:w=0.16,s=0.45 RRCF-slow:w=0.14,s=0.34 COPOD!:w=0.23,s=0.60"} +{"timestamp":"2026-03-16T07:53:08.036267868Z","score":0.4571908636464448,"is_anomaly":false,"confidence":0.542672606435332,"method":"SEAD","details":"MAD!:w=0.30,s=0.26 RRCF-fast:w=0.17,s=0.77 RRCF-mid:w=0.16,s=0.34 RRCF-slow:w=0.14,s=0.22 COPOD!:w=0.23,s=0.71"} +{"timestamp":"2026-03-16T07:53:38.035549618Z","score":0.19949149104090302,"is_anomaly":false,"confidence":0.23679074980062623,"method":"SEAD","details":"MAD:w=0.31,s=0.00 RRCF-fast:w=0.17,s=0.41 RRCF-mid:w=0.16,s=0.18 RRCF-slow:w=0.14,s=0.16 COPOD!:w=0.23,s=0.34"} +{"timestamp":"2026-03-16T07:54:08.050904367Z","score":0.9405233358276998,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=0.94 RRCF-fast!:w=0.17,s=0.99 RRCF-mid!:w=0.16,s=0.96 RRCF-slow!:w=0.14,s=0.95 COPOD!:w=0.23,s=0.88"} +{"timestamp":"2026-03-16T07:54:42.821141178Z","score":0.6595370594649465,"is_anomaly":false,"confidence":0.782347781072558,"method":"SEAD","details":"MAD!:w=0.31,s=0.62 RRCF-fast!:w=0.17,s=0.92 RRCF-mid!:w=0.16,s=0.90 RRCF-slow:w=0.14,s=0.73 COPOD!:w=0.23,s=0.31"} +{"timestamp":"2026-03-16T07:55:08.027626235Z","score":0.32184040074720655,"is_anomaly":false,"confidence":0.3817694847782276,"method":"SEAD","details":"MAD:w=0.31,s=0.08 RRCF-fast:w=0.17,s=0.36 RRCF-mid:w=0.16,s=0.36 RRCF-slow:w=0.14,s=0.32 COPOD!:w=0.23,s=0.59"} +{"timestamp":"2026-03-16T07:55:38.035526888Z","score":0.2930211886027783,"is_anomaly":false,"confidence":0.3475839202979786,"method":"SEAD","details":"MAD!:w=0.31,s=0.15 RRCF-fast:w=0.17,s=0.40 RRCF-mid:w=0.16,s=0.38 RRCF-slow:w=0.14,s=0.41 COPOD!:w=0.23,s=0.28"} +{"timestamp":"2026-03-16T07:56:08.820556093Z","score":0.684389424732427,"is_anomaly":false,"confidence":0.8118278421887468,"method":"SEAD","details":"MAD!:w=0.31,s=0.63 RRCF-fast:w=0.17,s=0.73 RRCF-mid:w=0.16,s=0.62 RRCF-slow:w=0.14,s=0.68 COPOD!:w=0.23,s=0.76"} +{"timestamp":"2026-03-16T07:56:42.378810839Z","score":0.6756686187665398,"is_anomaly":false,"confidence":0.8019995139626193,"method":"SEAD","details":"MAD!:w=0.31,s=0.77 RRCF-fast:w=0.17,s=0.75 RRCF-mid:w=0.16,s=0.65 RRCF-slow:w=0.14,s=0.48 COPOD!:w=0.23,s=0.62"} +{"timestamp":"2026-03-16T07:57:08.078074493Z","score":0.2369283027598653,"is_anomaly":false,"confidence":0.28122718501309535,"method":"SEAD","details":"MAD:w=0.31,s=0.06 RRCF-fast:w=0.17,s=0.39 RRCF-mid:w=0.16,s=0.29 RRCF-slow:w=0.14,s=0.21 COPOD!:w=0.23,s=0.35"} +{"timestamp":"2026-03-16T07:57:37.987259209Z","score":0.20026438665486881,"is_anomaly":false,"confidence":0.2377081550041948,"method":"SEAD","details":"MAD:w=0.31,s=0.01 RRCF-fast:w=0.17,s=0.37 RRCF-mid:w=0.16,s=0.40 RRCF-slow:w=0.14,s=0.25 COPOD!:w=0.23,s=0.17"} +{"timestamp":"2026-03-16T07:58:10.598401492Z","score":0.8158016739810989,"is_anomaly":false,"confidence":0.9683334816069057,"method":"SEAD","details":"MAD!:w=0.31,s=0.90 RRCF-fast!:w=0.17,s=0.90 RRCF-mid!:w=0.16,s=0.85 RRCF-slow!:w=0.14,s=0.84 COPOD!:w=0.23,s=0.61"} +{"timestamp":"2026-03-16T07:58:38.035790385Z","score":0.37839734630999,"is_anomaly":false,"confidence":0.4491469329733883,"method":"SEAD","details":"MAD!:w=0.31,s=0.27 RRCF-fast:w=0.17,s=0.32 RRCF-mid:w=0.16,s=0.37 RRCF-slow:w=0.14,s=0.28 COPOD!:w=0.23,s=0.64"} +{"timestamp":"2026-03-16T07:59:08.376312337Z","score":0.2443298159206177,"is_anomaly":false,"confidence":0.29001257150676996,"method":"SEAD","details":"MAD:w=0.31,s=0.03 RRCF-fast:w=0.17,s=0.40 RRCF-mid:w=0.16,s=0.48 RRCF-slow:w=0.14,s=0.28 COPOD!:w=0.23,s=0.23"} +{"timestamp":"2026-03-16T07:59:38.069490739Z","score":0.7970401306669725,"is_anomaly":false,"confidence":0.9460640610637606,"method":"SEAD","details":"MAD!:w=0.32,s=0.94 RRCF-fast:w=0.17,s=0.80 RRCF-mid!:w=0.16,s=0.90 RRCF-slow:w=0.14,s=0.68 COPOD!:w=0.23,s=0.59"} +{"timestamp":"2026-03-16T08:00:07.984164415Z","score":0.5279723271571904,"is_anomaly":false,"confidence":0.627656247709331,"method":"SEAD","details":"MAD!:w=0.31,s=0.40 RRCF-fast:w=0.17,s=0.71 RRCF-mid:w=0.16,s=0.72 RRCF-slow:w=0.14,s=0.50 COPOD!:w=0.23,s=0.46"} +{"timestamp":"2026-03-16T08:00:37.994132513Z","score":0.4182266502469243,"is_anomaly":false,"confidence":0.49719001637726695,"method":"SEAD","details":"MAD!:w=0.31,s=0.39 RRCF-fast:w=0.16,s=0.65 RRCF-mid:w=0.16,s=0.62 RRCF-slow:w=0.14,s=0.34 COPOD!:w=0.23,s=0.19"} +{"timestamp":"2026-03-16T08:01:07.992417165Z","score":0.40108967117155087,"is_anomaly":false,"confidence":0.4768174865489757,"method":"SEAD","details":"MAD!:w=0.32,s=0.40 RRCF-fast:w=0.16,s=0.64 RRCF-mid:w=0.15,s=0.64 RRCF-slow:w=0.14,s=0.30 COPOD!:w=0.23,s=0.13"} +{"timestamp":"2026-03-16T08:01:37.984302749Z","score":0.39441762634478433,"is_anomaly":false,"confidence":0.4688857249677102,"method":"SEAD","details":"MAD!:w=0.31,s=0.41 RRCF-fast:w=0.16,s=0.52 RRCF-mid:w=0.15,s=0.50 RRCF-slow:w=0.14,s=0.47 COPOD!:w=0.23,s=0.17"} +{"timestamp":"2026-03-16T08:02:07.989102236Z","score":0.43533530237011586,"is_anomaly":false,"confidence":0.5175288709775188,"method":"SEAD","details":"MAD!:w=0.31,s=0.44 RRCF-fast:w=0.16,s=0.46 RRCF-mid:w=0.15,s=0.60 RRCF-slow:w=0.14,s=0.32 COPOD!:w=0.23,s=0.37"} +{"timestamp":"2026-03-16T08:02:37.984066569Z","score":0.3855591658124974,"is_anomaly":false,"confidence":0.45835474102748364,"method":"SEAD","details":"MAD!:w=0.31,s=0.41 RRCF-fast:w=0.16,s=0.60 RRCF-mid:w=0.15,s=0.52 RRCF-slow:w=0.14,s=0.37 COPOD!:w=0.23,s=0.12"} +{"timestamp":"2026-03-16T08:03:07.995421183Z","score":0.4058830552175456,"is_anomaly":false,"confidence":0.4852638988552208,"method":"SEAD","details":"MAD!:w=0.31,s=0.39 RRCF-fast:w=0.16,s=0.45 RRCF-mid:w=0.15,s=0.42 RRCF-slow:w=0.14,s=0.38 COPOD!:w=0.23,s=0.40"} +{"timestamp":"2026-03-16T08:03:37.983849952Z","score":0.37958518497346316,"is_anomaly":false,"confidence":0.4538228054609862,"method":"SEAD","details":"MAD!:w=0.31,s=0.43 RRCF-fast:w=0.16,s=0.56 RRCF-mid:w=0.15,s=0.46 RRCF-slow:w=0.14,s=0.19 COPOD!:w=0.23,s=0.25"} +{"timestamp":"2026-03-16T08:04:07.990168005Z","score":0.4698079965228461,"is_anomaly":false,"confidence":0.5616910023106112,"method":"SEAD","details":"MAD!:w=0.31,s=0.44 RRCF-fast:w=0.16,s=0.56 RRCF-mid:w=0.15,s=0.46 RRCF-slow:w=0.14,s=0.29 COPOD!:w=0.23,s=0.57"} +{"timestamp":"2026-03-16T08:04:37.991025856Z","score":0.3808151965769412,"is_anomaly":false,"confidence":0.4552933773872298,"method":"SEAD","details":"MAD!:w=0.31,s=0.45 RRCF-fast:w=0.16,s=0.50 RRCF-mid:w=0.15,s=0.38 RRCF-slow:w=0.14,s=0.27 COPOD!:w=0.23,s=0.26"} +{"timestamp":"2026-03-16T08:05:07.987248424Z","score":0.3949320398657407,"is_anomaly":false,"confidence":0.4721711315230346,"method":"SEAD","details":"MAD!:w=0.31,s=0.47 RRCF-fast:w=0.16,s=0.41 RRCF-mid:w=0.15,s=0.43 RRCF-slow:w=0.14,s=0.27 COPOD!:w=0.23,s=0.33"} +{"timestamp":"2026-03-16T08:05:37.985150349Z","score":0.31131156996485937,"is_anomaly":false,"confidence":0.3721965336023151,"method":"SEAD","details":"MAD!:w=0.31,s=0.40 RRCF-fast:w=0.16,s=0.23 RRCF-mid:w=0.15,s=0.37 RRCF-slow:w=0.14,s=0.23 COPOD!:w=0.23,s=0.26"} +{"timestamp":"2026-03-16T08:06:08.032445941Z","score":0.6381673534424823,"is_anomaly":false,"confidence":0.7629773504282763,"method":"SEAD","details":"MAD!:w=0.31,s=0.69 RRCF-fast:w=0.16,s=0.60 RRCF-mid!:w=0.15,s=0.81 RRCF-slow:w=0.14,s=0.48 COPOD!:w=0.23,s=0.58"} +{"timestamp":"2026-03-16T08:06:37.993808623Z","score":0.5454990189507641,"is_anomaly":false,"confidence":0.6528485181530789,"method":"SEAD","details":"MAD!:w=0.31,s=0.66 RRCF-fast:w=0.16,s=0.72 RRCF-mid!:w=0.15,s=0.82 RRCF-slow:w=0.14,s=0.29 COPOD!:w=0.23,s=0.25"} +{"timestamp":"2026-03-16T08:07:07.990021369Z","score":0.5335737861754939,"is_anomaly":false,"confidence":0.638576502483939,"method":"SEAD","details":"MAD!:w=0.31,s=0.65 RRCF-fast:w=0.16,s=0.48 RRCF-mid!:w=0.15,s=0.77 RRCF-slow:w=0.14,s=0.43 COPOD!:w=0.24,s=0.32"} +{"timestamp":"2026-03-16T08:07:37.987937274Z","score":0.482034472231047,"is_anomaly":false,"confidence":0.5768946963461806,"method":"SEAD","details":"MAD!:w=0.31,s=0.67 RRCF-fast:w=0.16,s=0.45 RRCF-mid:w=0.15,s=0.75 RRCF-slow:w=0.14,s=0.30 COPOD!:w=0.24,s=0.19"} +{"timestamp":"2026-03-16T08:08:07.984600036Z","score":0.4605136888640591,"is_anomaly":false,"confidence":0.5511388085397176,"method":"SEAD","details":"MAD!:w=0.31,s=0.64 RRCF-fast:w=0.16,s=0.43 RRCF-mid:w=0.15,s=0.59 RRCF-slow:w=0.14,s=0.33 COPOD!:w=0.24,s=0.24"} +{"timestamp":"2026-03-16T08:08:37.997441999Z","score":0.44253674936501924,"is_anomaly":false,"confidence":0.5296241624905833,"method":"SEAD","details":"MAD!:w=0.31,s=0.65 RRCF-fast:w=0.16,s=0.30 RRCF-mid:w=0.15,s=0.73 RRCF-slow:w=0.14,s=0.43 COPOD!:w=0.24,s=0.10"} +{"timestamp":"2026-03-16T08:09:10.697778732Z","score":0.7826749088657452,"is_anomaly":false,"confidence":0.9366985763446752,"method":"SEAD","details":"MAD!:w=0.30,s=0.87 RRCF-fast!:w=0.16,s=0.83 RRCF-mid:w=0.15,s=0.75 RRCF-slow:w=0.14,s=0.56 COPOD!:w=0.24,s=0.79"} +{"timestamp":"2026-03-16T08:09:38.647403711Z","score":0.5935908120947059,"is_anomaly":false,"confidence":0.7104043611493439,"method":"SEAD","details":"MAD!:w=0.30,s=0.58 RRCF-fast:w=0.16,s=0.73 RRCF-mid:w=0.15,s=0.61 RRCF-slow:w=0.14,s=0.24 COPOD!:w=0.24,s=0.72"} +{"timestamp":"2026-03-16T08:10:08.505292382Z","score":0.6672052509466031,"is_anomaly":false,"confidence":0.8017920972616431,"method":"SEAD","details":"MAD!:w=0.30,s=0.40 RRCF-fast:w=0.16,s=0.68 RRCF-mid:w=0.15,s=0.76 RRCF-slow:w=0.14,s=0.60 COPOD!:w=0.24,s=0.97"} +{"timestamp":"2026-03-16T08:10:38.032022532Z","score":0.21323228151885062,"is_anomaly":false,"confidence":0.25624492307325536,"method":"SEAD","details":"MAD:w=0.31,s=0.05 RRCF-fast:w=0.16,s=0.07 RRCF-mid:w=0.15,s=0.15 RRCF-slow:w=0.14,s=0.10 COPOD!:w=0.24,s=0.63"} +{"timestamp":"2026-03-16T08:11:07.991266242Z","score":0.18048436862485548,"is_anomaly":false,"confidence":0.21689118938640922,"method":"SEAD","details":"MAD:w=0.31,s=0.07 RRCF-fast:w=0.16,s=0.21 RRCF-mid:w=0.15,s=0.21 RRCF-slow:w=0.14,s=0.19 COPOD!:w=0.24,s=0.28"} +{"timestamp":"2026-03-16T08:11:38.079019473Z","score":0.8556378650391196,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=0.90 RRCF-fast!:w=0.16,s=0.96 RRCF-mid!:w=0.15,s=0.87 RRCF-slow!:w=0.14,s=0.90 COPOD!:w=0.24,s=0.69"} +{"timestamp":"2026-03-16T08:12:08.08045245Z","score":0.4150438934668128,"is_anomaly":false,"confidence":0.49672094981851755,"method":"SEAD","details":"MAD!:w=0.31,s=0.28 RRCF-fast:w=0.16,s=0.40 RRCF-mid:w=0.15,s=0.26 RRCF-slow:w=0.14,s=0.56 COPOD!:w=0.24,s=0.62"} +{"timestamp":"2026-03-16T08:12:38.039809476Z","score":0.17520956460516773,"is_anomaly":false,"confidence":0.20968929483822615,"method":"SEAD","details":"MAD:w=0.31,s=0.03 RRCF-fast:w=0.16,s=0.28 RRCF-mid:w=0.15,s=0.12 RRCF-slow:w=0.14,s=0.09 COPOD!:w=0.24,s=0.38"} +{"timestamp":"2026-03-16T08:13:08.038461444Z","score":0.8784117876237385,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=0.94 RRCF-fast!:w=0.16,s=0.96 RRCF-mid:w=0.15,s=0.77 RRCF-slow!:w=0.14,s=0.68 COPOD!:w=0.23,s=0.93"} +{"timestamp":"2026-03-16T08:13:41.035079556Z","score":0.6481371923349505,"is_anomaly":false,"confidence":0.7756849982785414,"method":"SEAD","details":"MAD!:w=0.31,s=0.82 RRCF-fast!:w=0.16,s=0.81 RRCF-mid:w=0.15,s=0.34 RRCF-slow:w=0.14,s=0.19 COPOD!:w=0.23,s=0.80"} +{"timestamp":"2026-03-16T08:14:09.575684253Z","score":0.32240577841715334,"is_anomaly":false,"confidence":0.385852453206018,"method":"SEAD","details":"MAD!:w=0.31,s=0.26 RRCF-fast:w=0.16,s=0.24 RRCF-mid:w=0.15,s=0.03 RRCF-slow:w=0.15,s=0.05 COPOD!:w=0.23,s=0.82"} +{"timestamp":"2026-03-16T08:14:38.746718448Z","score":0.2611844170695894,"is_anomaly":false,"confidence":0.31258325629353234,"method":"SEAD","details":"MAD:w=0.31,s=0.12 RRCF-fast:w=0.16,s=0.38 RRCF-mid:w=0.15,s=0.23 RRCF-slow:w=0.15,s=0.17 COPOD!:w=0.23,s=0.44"} +{"timestamp":"2026-03-16T08:15:13.878935309Z","score":0.5985278918846506,"is_anomaly":false,"confidence":0.7163130156343116,"method":"SEAD","details":"MAD!:w=0.31,s=0.67 RRCF-fast!:w=0.16,s=0.87 RRCF-mid:w=0.15,s=0.31 RRCF-slow:w=0.15,s=0.48 COPOD!:w=0.23,s=0.57"} +{"timestamp":"2026-03-16T08:15:39.648955518Z","score":0.5699888314619068,"is_anomaly":false,"confidence":0.6821577144161601,"method":"SEAD","details":"MAD!:w=0.31,s=0.54 RRCF-fast:w=0.16,s=0.81 RRCF-mid:w=0.15,s=0.30 RRCF-slow:w=0.15,s=0.15 COPOD!:w=0.23,s=0.89"} +{"timestamp":"2026-03-16T08:16:08.032470002Z","score":0.2844644415585096,"is_anomaly":false,"confidence":0.34044458869224503,"method":"SEAD","details":"MAD!:w=0.31,s=0.20 RRCF-fast:w=0.16,s=0.28 RRCF-mid:w=0.15,s=0.06 RRCF-slow:w=0.15,s=0.11 COPOD!:w=0.23,s=0.67"} +{"timestamp":"2026-03-16T08:16:38.039777217Z","score":0.19596732092007643,"is_anomaly":false,"confidence":0.2354973211201966,"method":"SEAD","details":"MAD!:w=0.31,s=0.21 RRCF-fast:w=0.16,s=0.32 RRCF-mid:w=0.15,s=0.12 RRCF-slow:w=0.15,s=0.06 COPOD!:w=0.23,s=0.23"} +{"timestamp":"2026-03-16T08:17:11.871893194Z","score":0.7305262272232718,"is_anomaly":false,"confidence":0.877886010337858,"method":"SEAD","details":"MAD!:w=0.31,s=0.80 RRCF-fast!:w=0.16,s=0.87 RRCF-mid:w=0.15,s=0.53 RRCF-slow:w=0.15,s=0.29 COPOD!:w=0.23,s=0.96"} +{"timestamp":"2026-03-16T08:17:39.56992336Z","score":0.25505948466329237,"is_anomaly":false,"confidence":0.3065093969876771,"method":"SEAD","details":"MAD!:w=0.31,s=0.23 RRCF-fast:w=0.16,s=0.02 RRCF-mid:w=0.16,s=0.01 RRCF-slow:w=0.15,s=0.01 COPOD!:w=0.23,s=0.78"} +{"timestamp":"2026-03-16T08:18:07.994909305Z","score":0.15976132930138037,"is_anomaly":false,"confidence":0.19198795438154206,"method":"SEAD","details":"MAD!:w=0.31,s=0.18 RRCF-fast:w=0.16,s=0.18 RRCF-mid:w=0.16,s=0.16 RRCF-slow:w=0.15,s=0.07 COPOD!:w=0.22,s=0.17"} +{"timestamp":"2026-03-16T08:18:38.793983219Z","score":0.4832537390384718,"is_anomaly":false,"confidence":0.5807343817865074,"method":"SEAD","details":"MAD!:w=0.31,s=0.67 RRCF-fast:w=0.16,s=0.68 RRCF-mid:w=0.16,s=0.41 RRCF-slow:w=0.15,s=0.22 COPOD!:w=0.22,s=0.30"} +{"timestamp":"2026-03-16T08:19:10.422672413Z","score":0.43927446231729317,"is_anomaly":false,"confidence":0.5278837238093776,"method":"SEAD","details":"MAD!:w=0.31,s=0.62 RRCF-fast:w=0.16,s=0.47 RRCF-mid:w=0.16,s=0.23 RRCF-slow:w=0.15,s=0.11 COPOD!:w=0.22,s=0.53"} +{"timestamp":"2026-03-16T08:19:38.141399882Z","score":0.2015820593351891,"is_anomaly":false,"confidence":0.24224464944688717,"method":"SEAD","details":"MAD:w=0.31,s=0.07 RRCF-fast:w=0.16,s=0.01 RRCF-mid:w=0.16,s=0.00 RRCF-slow:w=0.15,s=0.01 COPOD!:w=0.22,s=0.79"} +{"timestamp":"2026-03-16T08:20:07.983464391Z","score":0.13831475165953858,"is_anomaly":false,"confidence":0.16720478304350841,"method":"SEAD","details":"MAD:w=0.31,s=0.07 RRCF-fast:w=0.16,s=0.15 RRCF-mid:w=0.16,s=0.16 RRCF-slow:w=0.15,s=0.10 COPOD!:w=0.22,s=0.24"} +{"timestamp":"2026-03-16T08:20:45.383218334Z","score":0.7859652799363411,"is_anomaly":false,"confidence":0.9501311503994113,"method":"SEAD","details":"MAD!:w=0.31,s=0.89 RRCF-fast!:w=0.16,s=0.86 RRCF-mid!:w=0.16,s=0.79 RRCF-slow!:w=0.15,s=0.75 COPOD!:w=0.22,s=0.61"} +{"timestamp":"2026-03-16T08:21:08.251820965Z","score":0.5829732476307343,"is_anomaly":false,"confidence":0.7047398359229474,"method":"SEAD","details":"MAD!:w=0.31,s=0.54 RRCF-fast:w=0.16,s=0.45 RRCF-mid:w=0.16,s=0.56 RRCF-slow:w=0.15,s=0.35 COPOD!:w=0.22,s=0.91"} +{"timestamp":"2026-03-16T08:21:38.082126142Z","score":0.1805573493605492,"is_anomaly":false,"confidence":0.21827066212759663,"method":"SEAD","details":"MAD!:w=0.31,s=0.22 RRCF-fast:w=0.16,s=0.15 RRCF-mid:w=0.16,s=0.13 RRCF-slow:w=0.15,s=0.04 COPOD!:w=0.22,s=0.28"} +{"timestamp":"2026-03-16T08:22:07.990719045Z","score":0.23093270180038566,"is_anomaly":false,"confidence":0.279167997909801,"method":"SEAD","details":"MAD:w=0.31,s=0.05 RRCF-fast:w=0.16,s=0.14 RRCF-mid:w=0.16,s=0.15 RRCF-slow:w=0.15,s=0.04 COPOD!:w=0.22,s=0.75"} +{"timestamp":"2026-03-16T08:22:51.503979039Z","score":0.9463450990696027,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=0.92 RRCF-fast!:w=0.16,s=0.99 RRCF-mid!:w=0.16,s=0.98 RRCF-slow!:w=0.15,s=0.98 COPOD!:w=0.22,s=0.91"} +{"timestamp":"2026-03-16T08:23:08.035503983Z","score":0.2797296867596518,"is_anomaly":false,"confidence":0.338157289980216,"method":"SEAD","details":"MAD!:w=0.31,s=0.31 RRCF-fast:w=0.16,s=0.07 RRCF-mid:w=0.16,s=0.18 RRCF-slow:w=0.15,s=0.12 COPOD!:w=0.22,s=0.57"} +{"timestamp":"2026-03-16T08:23:37.985210555Z","score":0.31311618977049566,"is_anomaly":false,"confidence":0.3785172872005458,"method":"SEAD","details":"MAD!:w=0.31,s=0.17 RRCF-fast:w=0.16,s=0.16 RRCF-mid:w=0.16,s=0.31 RRCF-slow:w=0.15,s=0.35 COPOD!:w=0.22,s=0.61"} +{"timestamp":"2026-03-16T08:24:08.032240546Z","score":0.8828902999869773,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=0.94 RRCF-fast!:w=0.16,s=0.92 RRCF-mid:w=0.16,s=0.77 RRCF-slow!:w=0.15,s=0.83 COPOD!:w=0.21,s=0.90"} +{"timestamp":"2026-03-16T08:24:40.021036048Z","score":0.6528515535317801,"is_anomaly":false,"confidence":0.7845430106614375,"method":"SEAD","details":"MAD!:w=0.31,s=0.56 RRCF-fast:w=0.16,s=0.76 RRCF-mid:w=0.16,s=0.63 RRCF-slow!:w=0.15,s=0.65 COPOD!:w=0.21,s=0.73"} +{"timestamp":"2026-03-16T08:25:08.133454903Z","score":0.5570033669240826,"is_anomaly":false,"confidence":0.6693605859879519,"method":"SEAD","details":"MAD!:w=0.31,s=0.25 RRCF-fast:w=0.16,s=0.66 RRCF-mid!:w=0.16,s=0.86 RRCF-slow!:w=0.15,s=0.94 COPOD!:w=0.21,s=0.43"} +{"timestamp":"2026-03-16T08:25:38.01608213Z","score":0.21689507280200254,"is_anomaly":false,"confidence":0.26064656274947706,"method":"SEAD","details":"MAD:w=0.31,s=0.13 RRCF-fast:w=0.16,s=0.37 RRCF-mid:w=0.16,s=0.24 RRCF-slow:w=0.15,s=0.12 COPOD!:w=0.21,s=0.27"} +{"timestamp":"2026-03-16T08:26:10.749160178Z","score":0.9106998498959914,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=0.93 RRCF-fast!:w=0.16,s=0.99 RRCF-mid!:w=0.16,s=0.99 RRCF-slow!:w=0.15,s=0.99 COPOD!:w=0.21,s=0.71"} +{"timestamp":"2026-03-16T08:26:39.120286058Z","score":0.6961318114985455,"is_anomaly":false,"confidence":0.8365536457035992,"method":"SEAD","details":"MAD!:w=0.31,s=0.54 RRCF-fast:w=0.16,s=0.63 RRCF-mid:w=0.16,s=0.69 RRCF-slow!:w=0.15,s=0.77 COPOD!:w=0.21,s=0.92"} +{"timestamp":"2026-03-16T08:27:08.711285994Z","score":0.328122659588979,"is_anomaly":false,"confidence":0.39431067878686504,"method":"SEAD","details":"MAD:w=0.32,s=0.08 RRCF-fast:w=0.16,s=0.24 RRCF-mid:w=0.16,s=0.12 RRCF-slow:w=0.15,s=0.46 COPOD!:w=0.21,s=0.81"} +{"timestamp":"2026-03-16T08:27:37.987438905Z","score":0.3454590275401159,"is_anomaly":false,"confidence":0.415144092191092,"method":"SEAD","details":"MAD:w=0.32,s=0.06 RRCF-fast:w=0.16,s=0.55 RRCF-mid:w=0.16,s=0.19 RRCF-slow!:w=0.15,s=0.70 COPOD!:w=0.21,s=0.48"} +{"timestamp":"2026-03-16T08:28:08.743143611Z","score":0.9112666101472304,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.32,s=0.88 RRCF-fast!:w=0.16,s=0.89 RRCF-mid!:w=0.16,s=0.94 RRCF-slow!:w=0.15,s=0.89 COPOD!:w=0.21,s=0.97"} +{"timestamp":"2026-03-16T08:28:38.034203482Z","score":0.31992183957571807,"is_anomaly":false,"confidence":0.38287969663730226,"method":"SEAD","details":"MAD!:w=0.32,s=0.33 RRCF-fast:w=0.16,s=0.37 RRCF-mid:w=0.16,s=0.15 RRCF-slow:w=0.15,s=0.11 COPOD!:w=0.21,s=0.54"} +{"timestamp":"2026-03-16T08:29:07.985392065Z","score":0.3101651211424298,"is_anomaly":false,"confidence":0.37120294021808675,"method":"SEAD","details":"MAD!:w=0.32,s=0.22 RRCF-fast:w=0.16,s=0.56 RRCF-mid:w=0.16,s=0.28 RRCF-slow:w=0.15,s=0.44 COPOD!:w=0.21,s=0.19"} +{"timestamp":"2026-03-16T08:29:38.043799886Z","score":0.9491422947573054,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.32,s=0.93 RRCF-fast!:w=0.16,s=0.99 RRCF-mid!:w=0.16,s=0.98 RRCF-slow!:w=0.15,s=0.94 COPOD!:w=0.21,s=0.93"} +{"timestamp":"2026-03-16T08:30:08.010899874Z","score":0.8677783944315829,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.32,s=0.78 RRCF-fast!:w=0.16,s=0.94 RRCF-mid!:w=0.16,s=0.92 RRCF-slow!:w=0.15,s=0.85 COPOD!:w=0.21,s=0.92"} +{"timestamp":"2026-03-16T08:30:38.075918622Z","score":0.31977154535128705,"is_anomaly":false,"confidence":0.38231107420080523,"method":"SEAD","details":"MAD!:w=0.32,s=0.30 RRCF-fast:w=0.16,s=0.14 RRCF-mid:w=0.16,s=0.06 RRCF-slow:w=0.15,s=0.07 COPOD!:w=0.21,s=0.86"} +{"timestamp":"2026-03-16T08:31:08.063179777Z","score":0.33692336403396017,"is_anomaly":false,"confidence":0.4028173710255168,"method":"SEAD","details":"MAD:w=0.32,s=0.14 RRCF-fast:w=0.16,s=0.60 RRCF-mid:w=0.16,s=0.27 RRCF-slow:w=0.15,s=0.54 COPOD!:w=0.21,s=0.34"} +{"timestamp":"2026-03-16T08:31:51.360665328Z","score":0.759986234242333,"is_anomaly":false,"confidence":0.9086210384098571,"method":"SEAD","details":"MAD!:w=0.32,s=0.77 RRCF-fast:w=0.16,s=0.74 RRCF-mid!:w=0.16,s=0.84 RRCF-slow:w=0.15,s=0.70 COPOD!:w=0.21,s=0.74"} +{"timestamp":"2026-03-16T08:32:09.408779027Z","score":0.6958081984166524,"is_anomaly":false,"confidence":0.8318913413079477,"method":"SEAD","details":"MAD!:w=0.32,s=0.75 RRCF-fast:w=0.16,s=0.86 RRCF-mid:w=0.16,s=0.74 RRCF-slow:w=0.15,s=0.74 COPOD!:w=0.21,s=0.42"} +{"timestamp":"2026-03-16T08:32:39.256099057Z","score":0.1300594186572958,"is_anomaly":false,"confidence":0.15549587441302612,"method":"SEAD","details":"MAD!:w=0.32,s=0.19 RRCF-fast:w=0.16,s=0.12 RRCF-mid:w=0.16,s=0.06 RRCF-slow:w=0.15,s=0.01 COPOD!:w=0.21,s=0.18"} +{"timestamp":"2026-03-16T08:33:08.032565946Z","score":0.2325060896049368,"is_anomaly":false,"confidence":0.278261281481517,"method":"SEAD","details":"MAD:w=0.32,s=0.15 RRCF-fast:w=0.16,s=0.49 RRCF-mid:w=0.16,s=0.40 RRCF-slow:w=0.15,s=0.17 COPOD!:w=0.21,s=0.08"} +{"timestamp":"2026-03-16T08:33:43.241442307Z","score":0.7264896785099634,"is_anomaly":false,"confidence":0.8694565775406916,"method":"SEAD","details":"MAD!:w=0.32,s=0.89 RRCF-fast!:w=0.16,s=0.87 RRCF-mid!:w=0.16,s=0.92 RRCF-slow!:w=0.15,s=0.87 COPOD!:w=0.21,s=0.12"} +{"timestamp":"2026-03-16T08:34:08.034082996Z","score":0.751551773825596,"is_anomaly":false,"confidence":0.8994506769253117,"method":"SEAD","details":"MAD!:w=0.32,s=0.67 RRCF-fast:w=0.16,s=0.74 RRCF-mid:w=0.16,s=0.70 RRCF-slow:w=0.15,s=0.68 COPOD!:w=0.21,s=0.97"} +{"timestamp":"2026-03-16T08:34:37.990395434Z","score":0.2881297882787323,"is_anomaly":false,"confidence":0.34483124401459064,"method":"SEAD","details":"MAD!:w=0.32,s=0.28 RRCF-fast:w=0.16,s=0.33 RRCF-mid:w=0.16,s=0.40 RRCF-slow:w=0.15,s=0.16 COPOD!:w=0.21,s=0.27"} +{"timestamp":"2026-03-16T08:35:07.991410529Z","score":0.27427764567457336,"is_anomaly":false,"confidence":0.32825311929171824,"method":"SEAD","details":"MAD:w=0.32,s=0.06 RRCF-fast:w=0.16,s=0.52 RRCF-mid:w=0.16,s=0.40 RRCF-slow:w=0.15,s=0.41 COPOD!:w=0.21,s=0.22"} +{"timestamp":"2026-03-16T08:35:58.088099918Z","score":0.8083690385967034,"is_anomaly":false,"confidence":0.9674490890630181,"method":"SEAD","details":"MAD!:w=0.32,s=0.91 RRCF-fast:w=0.16,s=0.80 RRCF-mid!:w=0.16,s=0.93 RRCF-slow!:w=0.15,s=0.91 COPOD!:w=0.21,s=0.51"} +{"timestamp":"2026-03-16T08:36:08.031306953Z","score":0.11795603476439326,"is_anomaly":false,"confidence":0.1411687644301662,"method":"SEAD","details":"MAD:w=0.32,s=0.07 RRCF-fast:w=0.16,s=0.04 RRCF-mid:w=0.16,s=0.03 RRCF-slow:w=0.15,s=0.05 COPOD!:w=0.21,s=0.36"} +{"timestamp":"2026-03-16T08:36:37.987288642Z","score":0.26860601422877745,"is_anomaly":false,"confidence":0.3227884960138273,"method":"SEAD","details":"MAD!:w=0.32,s=0.22 RRCF-fast:w=0.16,s=0.37 RRCF-mid:w=0.16,s=0.39 RRCF-slow:w=0.15,s=0.49 COPOD!:w=0.21,s=0.01"} +{"timestamp":"2026-03-16T08:37:15.026788634Z","score":0.9374097748997247,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.32,s=0.93 RRCF-fast!:w=0.16,s=0.98 RRCF-mid!:w=0.16,s=0.99 RRCF-slow!:w=0.15,s=0.98 COPOD!:w=0.21,s=0.85"} +{"timestamp":"2026-03-16T08:37:40.03022648Z","score":0.7261331898763488,"is_anomaly":false,"confidence":0.8690299350205247,"method":"SEAD","details":"MAD!:w=0.32,s=0.56 RRCF-fast!:w=0.16,s=0.97 RRCF-mid!:w=0.16,s=0.98 RRCF-slow!:w=0.15,s=0.98 COPOD!:w=0.21,s=0.44"} +{"timestamp":"2026-03-16T08:38:08.028005463Z","score":0.5784747201860608,"is_anomaly":false,"confidence":0.6923135528069088,"method":"SEAD","details":"MAD!:w=0.33,s=0.26 RRCF-fast:w=0.16,s=0.69 RRCF-mid:w=0.16,s=0.91 RRCF-slow!:w=0.15,s=0.94 COPOD!:w=0.21,s=0.47"} +{"timestamp":"2026-03-16T08:38:38.090692853Z","score":0.4352185123269552,"is_anomaly":false,"confidence":0.5208657595607619,"method":"SEAD","details":"MAD:w=0.33,s=0.14 RRCF-fast:w=0.15,s=0.57 RRCF-mid:w=0.15,s=0.86 RRCF-slow!:w=0.15,s=0.91 COPOD!:w=0.21,s=0.15"} +{"timestamp":"2026-03-16T08:39:11.627389812Z","score":0.7823423281271817,"is_anomaly":false,"confidence":0.9363005465869774,"method":"SEAD","details":"MAD!:w=0.33,s=0.73 RRCF-fast:w=0.15,s=0.84 RRCF-mid:w=0.15,s=0.90 RRCF-slow!:w=0.15,s=0.91 COPOD!:w=0.21,s=0.65"} +{"timestamp":"2026-03-16T08:39:37.990591026Z","score":0.8384470517817659,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.33,s=1.00 RRCF-fast!:w=0.15,s=0.99 RRCF-mid!:w=0.15,s=0.99 RRCF-slow!:w=0.15,s=0.99 COPOD!:w=0.21,s=0.27"} +{"timestamp":"2026-03-16T08:40:07.990449836Z","score":0.7203161970958015,"is_anomaly":false,"confidence":0.862068208262167,"method":"SEAD","details":"MAD!:w=0.33,s=0.81 RRCF-fast:w=0.15,s=0.82 RRCF-mid!:w=0.15,s=0.92 RRCF-slow!:w=0.15,s=0.92 COPOD!:w=0.22,s=0.24"} +{"timestamp":"2026-03-16T08:40:38.032425927Z","score":0.8142506157141328,"is_anomaly":false,"confidence":0.9744881097983853,"method":"SEAD","details":"MAD!:w=0.33,s=0.99 RRCF-fast!:w=0.15,s=0.95 RRCF-mid!:w=0.15,s=0.96 RRCF-slow!:w=0.15,s=0.96 COPOD!:w=0.22,s=0.25"} +{"timestamp":"2026-03-16T08:41:08.031536544Z","score":0.7151215533380405,"is_anomaly":false,"confidence":0.8558513034433272,"method":"SEAD","details":"MAD!:w=0.33,s=0.91 RRCF-fast:w=0.15,s=0.89 RRCF-mid!:w=0.15,s=0.94 RRCF-slow!:w=0.15,s=0.94 COPOD!:w=0.22,s=0.02"} +{"timestamp":"2026-03-16T08:41:39.276418011Z","score":0.6837220766485702,"is_anomaly":false,"confidence":0.8182726807229203,"method":"SEAD","details":"MAD!:w=0.32,s=0.83 RRCF-fast:w=0.15,s=0.70 RRCF-mid:w=0.15,s=0.85 RRCF-slow:w=0.15,s=0.88 COPOD!:w=0.23,s=0.23"} +{"timestamp":"2026-03-16T08:42:08.04992217Z","score":0.8941216500243989,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.32,s=0.92 RRCF-fast:w=0.15,s=0.87 RRCF-mid:w=0.15,s=0.90 RRCF-slow:w=0.15,s=0.91 COPOD!:w=0.23,s=0.86"} +{"timestamp":"2026-03-16T08:42:38.008970531Z","score":0.8340004178475678,"is_anomaly":false,"confidence":0.9971105943180532,"method":"SEAD","details":"MAD!:w=0.32,s=1.00 RRCF-fast!:w=0.15,s=0.95 RRCF-mid!:w=0.15,s=0.97 RRCF-slow!:w=0.15,s=0.99 COPOD!:w=0.23,s=0.33"} +{"timestamp":"2026-03-16T08:43:07.990153465Z","score":0.635133562505806,"is_anomaly":false,"confidence":0.7601223663220311,"method":"SEAD","details":"MAD!:w=0.32,s=0.78 RRCF-fast:w=0.15,s=0.79 RRCF-mid:w=0.15,s=0.81 RRCF-slow:w=0.15,s=0.89 COPOD!:w=0.23,s=0.06"} +{"timestamp":"2026-03-16T08:43:38.034236919Z","score":0.8551690624161762,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.32,s=0.99 RRCF-fast!:w=0.15,s=0.96 RRCF-mid!:w=0.15,s=0.95 RRCF-slow!:w=0.14,s=0.96 COPOD!:w=0.23,s=0.48"} +{"timestamp":"2026-03-16T08:44:09.169169725Z","score":0.37530278094094965,"is_anomaly":false,"confidence":0.44870286746264576,"method":"SEAD","details":"MAD!:w=0.32,s=0.19 RRCF-fast:w=0.15,s=0.31 RRCF-mid:w=0.15,s=0.62 RRCF-slow:w=0.14,s=0.79 COPOD!:w=0.24,s=0.25"} +{"timestamp":"2026-03-16T08:44:38.631022925Z","score":0.5084071368111384,"is_anomaly":false,"confidence":0.6078391946728594,"method":"SEAD","details":"MAD!:w=0.32,s=0.21 RRCF-fast:w=0.15,s=0.42 RRCF-mid:w=0.15,s=0.74 RRCF-slow:w=0.14,s=0.72 COPOD!:w=0.24,s=0.69"} +{"timestamp":"2026-03-16T08:45:08.038679786Z","score":0.3573840071830001,"is_anomaly":false,"confidence":0.4272796178228531,"method":"SEAD","details":"MAD!:w=0.32,s=0.22 RRCF-fast:w=0.15,s=0.36 RRCF-mid:w=0.15,s=0.72 RRCF-slow:w=0.14,s=0.77 COPOD!:w=0.23,s=0.07"} +{"timestamp":"2026-03-16T08:45:38.040487027Z","score":0.3689414474678569,"is_anomaly":false,"confidence":0.4410974120404757,"method":"SEAD","details":"MAD!:w=0.32,s=0.22 RRCF-fast:w=0.15,s=0.46 RRCF-mid:w=0.15,s=0.57 RRCF-slow:w=0.14,s=0.70 COPOD!:w=0.24,s=0.19"} +{"timestamp":"2026-03-16T08:46:08.04140036Z","score":0.4175678657622664,"is_anomaly":false,"confidence":0.49923397385447565,"method":"SEAD","details":"MAD!:w=0.32,s=0.22 RRCF-fast:w=0.15,s=0.30 RRCF-mid:w=0.15,s=0.62 RRCF-slow:w=0.14,s=0.75 COPOD!:w=0.24,s=0.43"} +{"timestamp":"2026-03-16T08:46:38.044193251Z","score":0.6528294093173773,"is_anomaly":false,"confidence":0.7813006030686694,"method":"SEAD","details":"MAD!:w=0.33,s=0.91 RRCF-fast:w=0.15,s=0.54 RRCF-mid:w=0.15,s=0.85 RRCF-slow:w=0.14,s=0.87 COPOD!:w=0.24,s=0.12"} +{"timestamp":"2026-03-16T08:47:07.994425657Z","score":0.6001557253859896,"is_anomaly":false,"confidence":0.7182611927203001,"method":"SEAD","details":"MAD!:w=0.32,s=0.76 RRCF-fast:w=0.15,s=0.39 RRCF-mid:w=0.15,s=0.67 RRCF-slow:w=0.14,s=0.71 COPOD!:w=0.24,s=0.41"} +{"timestamp":"2026-03-16T08:47:37.990856784Z","score":0.47813724264517393,"is_anomaly":false,"confidence":0.5722305256114039,"method":"SEAD","details":"MAD!:w=0.32,s=0.22 RRCF-fast:w=0.15,s=0.30 RRCF-mid:w=0.15,s=0.56 RRCF-slow:w=0.14,s=0.78 COPOD!:w=0.24,s=0.71"} +{"timestamp":"2026-03-16T08:48:07.993165954Z","score":0.36108517632306575,"is_anomaly":false,"confidence":0.4321436228115997,"method":"SEAD","details":"MAD!:w=0.32,s=0.23 RRCF-fast:w=0.15,s=0.57 RRCF-mid:w=0.15,s=0.60 RRCF-slow:w=0.14,s=0.72 COPOD!:w=0.24,s=0.05"} +{"timestamp":"2026-03-16T08:48:37.992620924Z","score":0.42536879461805877,"is_anomaly":false,"confidence":0.5090777024110943,"method":"SEAD","details":"MAD!:w=0.32,s=0.37 RRCF-fast:w=0.15,s=0.40 RRCF-mid:w=0.14,s=0.36 RRCF-slow:w=0.14,s=0.76 COPOD!:w=0.24,s=0.36"} +{"timestamp":"2026-03-16T08:49:07.991574522Z","score":0.3889084794389309,"is_anomaly":false,"confidence":0.46544231186195706,"method":"SEAD","details":"MAD!:w=0.33,s=0.23 RRCF-fast:w=0.15,s=0.20 RRCF-mid:w=0.14,s=0.52 RRCF-slow:w=0.14,s=0.54 COPOD!:w=0.24,s=0.55"} +{"timestamp":"2026-03-16T08:49:37.990894807Z","score":0.3673723936015146,"is_anomaly":false,"confidence":0.4396681101909477,"method":"SEAD","details":"MAD!:w=0.33,s=0.23 RRCF-fast:w=0.15,s=0.59 RRCF-mid:w=0.14,s=0.60 RRCF-slow:w=0.14,s=0.69 COPOD!:w=0.24,s=0.08"} +{"timestamp":"2026-03-16T08:50:07.993175233Z","score":0.3066956859605789,"is_anomaly":false,"confidence":0.3677404464042299,"method":"SEAD","details":"MAD!:w=0.33,s=0.24 RRCF-fast:w=0.15,s=0.14 RRCF-mid:w=0.14,s=0.38 RRCF-slow:w=0.14,s=0.63 COPOD!:w=0.24,s=0.28"} +{"timestamp":"2026-03-16T08:50:39.277263759Z","score":0.34897016124174646,"is_anomaly":false,"confidence":0.41842924029029505,"method":"SEAD","details":"MAD!:w=0.33,s=0.24 RRCF-fast:w=0.15,s=0.24 RRCF-mid:w=0.14,s=0.34 RRCF-slow:w=0.14,s=0.64 COPOD!:w=0.24,s=0.41"} +{"timestamp":"2026-03-16T08:51:08.032944411Z","score":0.7588186486279683,"is_anomaly":false,"confidence":0.9098540389060804,"method":"SEAD","details":"MAD!:w=0.33,s=0.49 RRCF-fast!:w=0.15,s=0.94 RRCF-mid:w=0.14,s=0.94 RRCF-slow!:w=0.13,s=0.96 COPOD!:w=0.24,s=0.78"} +{"timestamp":"2026-03-16T08:51:38.876201337Z","score":0.8734625163503057,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.33,s=0.88 RRCF-fast!:w=0.15,s=0.96 RRCF-mid:w=0.14,s=0.93 RRCF-slow:w=0.13,s=0.94 COPOD!:w=0.24,s=0.74"} +{"timestamp":"2026-03-16T08:52:08.032650526Z","score":0.5359122400382675,"is_anomaly":false,"confidence":0.6413751438857468,"method":"SEAD","details":"MAD!:w=0.33,s=0.38 RRCF-fast:w=0.15,s=0.84 RRCF-mid:w=0.14,s=0.94 RRCF-slow:w=0.13,s=0.94 COPOD!:w=0.24,s=0.09"} +{"timestamp":"2026-03-16T08:52:38.040667492Z","score":0.33803790779702975,"is_anomaly":false,"confidence":0.40456085074055265,"method":"SEAD","details":"MAD!:w=0.33,s=0.29 RRCF-fast:w=0.15,s=0.59 RRCF-mid:w=0.14,s=0.46 RRCF-slow:w=0.13,s=0.67 COPOD!:w=0.24,s=0.00"} +{"timestamp":"2026-03-16T08:53:09.170714636Z","score":0.8605166778417214,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.33,s=0.82 RRCF-fast:w=0.15,s=0.90 RRCF-mid:w=0.14,s=0.90 RRCF-slow:w=0.13,s=0.86 COPOD!:w=0.24,s=0.87"} +{"timestamp":"2026-03-16T08:53:38.036130841Z","score":0.7777727187021086,"is_anomaly":false,"confidence":0.9308316774633711,"method":"SEAD","details":"MAD!:w=0.33,s=0.69 RRCF-fast:w=0.15,s=0.67 RRCF-mid:w=0.14,s=0.72 RRCF-slow:w=0.13,s=0.77 COPOD!:w=0.24,s=0.99"} +{"timestamp":"2026-03-16T08:54:07.990902053Z","score":0.4552089469661819,"is_anomaly":false,"confidence":0.544790139216948,"method":"SEAD","details":"MAD!:w=0.33,s=0.36 RRCF-fast:w=0.15,s=0.25 RRCF-mid:w=0.14,s=0.35 RRCF-slow:w=0.13,s=0.52 COPOD!:w=0.24,s=0.74"} +{"timestamp":"2026-03-16T08:54:38.012608062Z","score":0.28997692986896945,"is_anomaly":false,"confidence":0.34704188712871525,"method":"SEAD","details":"MAD:w=0.33,s=0.01 RRCF-fast:w=0.15,s=0.33 RRCF-mid:w=0.14,s=0.38 RRCF-slow:w=0.13,s=0.57 COPOD!:w=0.24,s=0.45"} +{"timestamp":"2026-03-16T08:55:08.258541689Z","score":0.8239257627109857,"is_anomaly":false,"confidence":0.9860672422264469,"method":"SEAD","details":"MAD!:w=0.34,s=0.73 RRCF-fast:w=0.15,s=0.86 RRCF-mid:w=0.14,s=0.82 RRCF-slow:w=0.13,s=0.81 COPOD!:w=0.24,s=0.95"} +{"timestamp":"2026-03-16T08:55:39.934476862Z","score":0.3709521120124194,"is_anomaly":false,"confidence":0.443952286291685,"method":"SEAD","details":"MAD:w=0.34,s=0.12 RRCF-fast:w=0.15,s=0.41 RRCF-mid:w=0.14,s=0.26 RRCF-slow:w=0.13,s=0.40 COPOD!:w=0.24,s=0.75"} +{"timestamp":"2026-03-16T08:56:07.992569822Z","score":0.2828928720250684,"is_anomaly":false,"confidence":0.3385637478374713,"method":"SEAD","details":"MAD!:w=0.34,s=0.22 RRCF-fast:w=0.15,s=0.51 RRCF-mid:w=0.14,s=0.38 RRCF-slow:w=0.13,s=0.59 COPOD!:w=0.24,s=0.00"} +{"timestamp":"2026-03-16T08:56:38.029618557Z","score":0.9209068264980169,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.34,s=0.92 RRCF-fast:w=0.15,s=0.90 RRCF-mid:w=0.14,s=0.90 RRCF-slow:w=0.13,s=0.88 COPOD!:w=0.24,s=0.98"} +{"timestamp":"2026-03-16T08:57:08.017965838Z","score":0.6426696868066807,"is_anomaly":false,"confidence":0.7691415348475891,"method":"SEAD","details":"MAD!:w=0.34,s=0.50 RRCF-fast:w=0.15,s=0.82 RRCF-mid:w=0.14,s=0.75 RRCF-slow:w=0.13,s=0.62 COPOD!:w=0.24,s=0.68"} +{"timestamp":"2026-03-16T08:57:40.136334663Z","score":0.2192284761228751,"is_anomaly":false,"confidence":0.2623707482537099,"method":"SEAD","details":"MAD:w=0.34,s=0.08 RRCF-fast:w=0.15,s=0.19 RRCF-mid:w=0.14,s=0.18 RRCF-slow:w=0.13,s=0.25 COPOD!:w=0.24,s=0.44"} +{"timestamp":"2026-03-16T08:58:07.991317598Z","score":0.3310100659680806,"is_anomaly":false,"confidence":0.39614999029085163,"method":"SEAD","details":"MAD!:w=0.34,s=0.29 RRCF-fast:w=0.15,s=0.63 RRCF-mid:w=0.14,s=0.46 RRCF-slow:w=0.13,s=0.54 COPOD!:w=0.24,s=0.01"} +{"timestamp":"2026-03-16T08:58:38.078328772Z","score":0.811460326554057,"is_anomaly":false,"confidence":0.9711487158121634,"method":"SEAD","details":"MAD!:w=0.34,s=0.84 RRCF-fast:w=0.15,s=0.91 RRCF-mid:w=0.14,s=0.89 RRCF-slow:w=0.13,s=0.86 COPOD!:w=0.24,s=0.64"} +{"timestamp":"2026-03-16T08:59:08.035671913Z","score":0.6757485275545089,"is_anomaly":false,"confidence":0.8087300059799092,"method":"SEAD","details":"MAD!:w=0.34,s=0.51 RRCF-fast:w=0.15,s=0.83 RRCF-mid:w=0.14,s=0.61 RRCF-slow:w=0.13,s=0.51 COPOD!:w=0.24,s=0.95"} +{"timestamp":"2026-03-16T08:59:38.036881644Z","score":0.33173729604925306,"is_anomaly":false,"confidence":0.39702033297590905,"method":"SEAD","details":"MAD:w=0.35,s=0.05 RRCF-fast:w=0.15,s=0.47 RRCF-mid:w=0.14,s=0.39 RRCF-slow:w=0.13,s=0.49 COPOD!:w=0.24,s=0.54"} +{"timestamp":"2026-03-16T09:00:08.041039752Z","score":0.8454621966336309,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.35,s=0.91 RRCF-fast!:w=0.15,s=0.92 RRCF-mid:w=0.14,s=0.85 RRCF-slow:w=0.13,s=0.80 COPOD!:w=0.24,s=0.72"} +{"timestamp":"2026-03-16T09:00:38.007523449Z","score":0.7427180272760108,"is_anomaly":false,"confidence":0.8888785252911451,"method":"SEAD","details":"MAD!:w=0.35,s=0.68 RRCF-fast:w=0.15,s=0.83 RRCF-mid:w=0.14,s=0.71 RRCF-slow:w=0.13,s=0.75 COPOD!:w=0.24,s=0.81"} +{"timestamp":"2026-03-16T09:01:08.08178253Z","score":0.19248172540450453,"is_anomaly":false,"confidence":0.23036046782188735,"method":"SEAD","details":"MAD!:w=0.35,s=0.24 RRCF-fast:w=0.15,s=0.24 RRCF-mid:w=0.14,s=0.09 RRCF-slow:w=0.13,s=0.06 COPOD!:w=0.24,s=0.22"} +{"timestamp":"2026-03-16T09:01:39.013784799Z","score":0.27238949731967077,"is_anomaly":false,"confidence":0.3259933996355357,"method":"SEAD","details":"MAD:w=0.35,s=0.11 RRCF-fast:w=0.15,s=0.52 RRCF-mid:w=0.14,s=0.33 RRCF-slow:w=0.13,s=0.53 COPOD!:w=0.24,s=0.19"} +{"timestamp":"2026-03-16T09:02:08.196272652Z","score":0.796839455914698,"is_anomaly":false,"confidence":0.9536505840109861,"method":"SEAD","details":"MAD!:w=0.35,s=0.71 RRCF-fast:w=0.15,s=0.78 RRCF-mid:w=0.14,s=0.81 RRCF-slow:w=0.13,s=0.73 COPOD!:w=0.24,s=0.97"} +{"timestamp":"2026-03-16T09:02:39.300732766Z","score":0.7977621569354331,"is_anomaly":false,"confidence":0.9547548646295725,"method":"SEAD","details":"MAD!:w=0.35,s=0.82 RRCF-fast:w=0.15,s=0.85 RRCF-mid:w=0.14,s=0.85 RRCF-slow:w=0.13,s=0.75 COPOD!:w=0.23,s=0.73"} +{"timestamp":"2026-03-16T09:03:08.034396502Z","score":0.24358021343980188,"is_anomaly":false,"confidence":0.2920624597148842,"method":"SEAD","details":"MAD!:w=0.35,s=0.18 RRCF-fast:w=0.15,s=0.08 RRCF-mid:w=0.14,s=0.11 RRCF-slow:w=0.13,s=0.21 COPOD!:w=0.24,s=0.54"} +{"timestamp":"2026-03-16T09:03:38.041028384Z","score":0.21672938139743353,"is_anomaly":false,"confidence":0.25986723358817987,"method":"SEAD","details":"MAD!:w=0.35,s=0.18 RRCF-fast:w=0.15,s=0.42 RRCF-mid:w=0.14,s=0.22 RRCF-slow:w=0.13,s=0.47 COPOD!:w=0.23,s=0.00"} +{"timestamp":"2026-03-16T09:04:12.377910985Z","score":0.730427324517982,"is_anomaly":false,"confidence":0.8758117009139004,"method":"SEAD","details":"MAD!:w=0.35,s=0.70 RRCF-fast:w=0.14,s=0.82 RRCF-mid:w=0.14,s=0.76 RRCF-slow:w=0.13,s=0.74 COPOD!:w=0.23,s=0.71"} +{"timestamp":"2026-03-16T09:04:38.077720306Z","score":0.5805864081722356,"is_anomaly":false,"confidence":0.6961464236080883,"method":"SEAD","details":"MAD!:w=0.35,s=0.57 RRCF-fast:w=0.14,s=0.47 RRCF-mid:w=0.14,s=0.27 RRCF-slow:w=0.13,s=0.39 COPOD!:w=0.23,s=0.96"} +{"timestamp":"2026-03-16T09:05:07.991048061Z","score":0.3426199714312751,"is_anomaly":false,"confidence":0.4108151076417045,"method":"SEAD","details":"MAD!:w=0.35,s=0.32 RRCF-fast:w=0.15,s=0.48 RRCF-mid:w=0.14,s=0.31 RRCF-slow:w=0.13,s=0.44 COPOD!:w=0.23,s=0.25"} +{"timestamp":"2026-03-16T09:05:38.65721222Z","score":0.2576922936309576,"is_anomaly":false,"confidence":0.30898341069902985,"method":"SEAD","details":"MAD:w=0.35,s=0.05 RRCF-fast:w=0.14,s=0.55 RRCF-mid:w=0.14,s=0.44 RRCF-slow:w=0.13,s=0.51 COPOD!:w=0.23,s=0.15"} +{"timestamp":"2026-03-16T09:06:16.037566628Z","score":0.7656721132097203,"is_anomaly":false,"confidence":0.9180716182202968,"method":"SEAD","details":"MAD!:w=0.35,s=0.85 RRCF-fast:w=0.14,s=0.89 RRCF-mid:w=0.14,s=0.86 RRCF-slow:w=0.13,s=0.82 COPOD!:w=0.23,s=0.48"} +{"timestamp":"2026-03-16T09:06:39.270978202Z","score":0.1840078802747947,"is_anomaly":false,"confidence":0.22112545431691213,"method":"SEAD","details":"MAD:w=0.35,s=0.06 RRCF-fast:w=0.14,s=0.05 RRCF-mid:w=0.14,s=0.08 RRCF-slow:w=0.13,s=0.13 COPOD!:w=0.24,s=0.55"} +{"timestamp":"2026-03-16T09:07:09.446252308Z","score":0.20496117222433236,"is_anomaly":false,"confidence":0.24630538788745868,"method":"SEAD","details":"MAD:w=0.35,s=0.09 RRCF-fast:w=0.14,s=0.31 RRCF-mid:w=0.14,s=0.35 RRCF-slow:w=0.13,s=0.51 COPOD!:w=0.23,s=0.05"} +{"timestamp":"2026-03-16T09:07:39.288905379Z","score":0.8349104039844594,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.35,s=0.71 RRCF-fast!:w=0.14,s=0.96 RRCF-mid:w=0.14,s=0.84 RRCF-slow:w=0.13,s=0.89 COPOD!:w=0.23,s=0.92"} +{"timestamp":"2026-03-16T09:08:08.550218645Z","score":0.8044095361161001,"is_anomaly":false,"confidence":0.9645193442374557,"method":"SEAD","details":"MAD!:w=0.36,s=0.77 RRCF-fast:w=0.14,s=0.87 RRCF-mid:w=0.14,s=0.84 RRCF-slow:w=0.13,s=0.77 COPOD!:w=0.23,s=0.81"} +{"timestamp":"2026-03-16T09:08:38.033878602Z","score":0.5930731452965843,"is_anomaly":false,"confidence":0.7111185229705503,"method":"SEAD","details":"MAD!:w=0.36,s=0.40 RRCF-fast:w=0.14,s=0.77 RRCF-mid:w=0.14,s=0.64 RRCF-slow:w=0.13,s=0.67 COPOD!:w=0.23,s=0.71"} +{"timestamp":"2026-03-16T09:09:08.048331809Z","score":0.2722196741304334,"is_anomaly":false,"confidence":0.32640232343407244,"method":"SEAD","details":"MAD:w=0.36,s=0.17 RRCF-fast:w=0.14,s=0.50 RRCF-mid:w=0.14,s=0.52 RRCF-slow:w=0.13,s=0.50 COPOD!:w=0.23,s=0.02"} +{"timestamp":"2026-03-16T09:09:43.868494182Z","score":0.6092200165454821,"is_anomaly":false,"confidence":0.7304792701636639,"method":"SEAD","details":"MAD!:w=0.36,s=0.77 RRCF-fast:w=0.14,s=0.80 RRCF-mid:w=0.14,s=0.77 RRCF-slow:w=0.13,s=0.70 COPOD!:w=0.23,s=0.10"} +{"timestamp":"2026-03-16T09:10:08.04323733Z","score":0.7016708262241544,"is_anomaly":false,"confidence":0.8432099755620771,"method":"SEAD","details":"MAD!:w=0.36,s=0.52 RRCF-fast:w=0.14,s=0.72 RRCF-mid:w=0.14,s=0.73 RRCF-slow:w=0.13,s=0.67 COPOD!:w=0.24,s=0.96"} +{"timestamp":"2026-03-16T09:10:38.084774503Z","score":0.2923331310133611,"is_anomaly":false,"confidence":0.35130178289472713,"method":"SEAD","details":"MAD!:w=0.36,s=0.23 RRCF-fast:w=0.14,s=0.52 RRCF-mid:w=0.14,s=0.26 RRCF-slow:w=0.13,s=0.49 COPOD!:w=0.23,s=0.16"} +{"timestamp":"2026-03-16T09:11:08.037917232Z","score":0.29645679112747525,"is_anomaly":false,"confidence":0.35625725662128865,"method":"SEAD","details":"MAD!:w=0.36,s=0.23 RRCF-fast:w=0.14,s=0.62 RRCF-mid:w=0.14,s=0.42 RRCF-slow:w=0.13,s=0.54 COPOD!:w=0.23,s=0.01"} +{"timestamp":"2026-03-16T09:11:38.923884231Z","score":0.7916048474831402,"is_anomaly":false,"confidence":0.951285245380639,"method":"SEAD","details":"MAD!:w=0.36,s=0.83 RRCF-fast:w=0.14,s=0.78 RRCF-mid:w=0.14,s=0.83 RRCF-slow:w=0.13,s=0.78 COPOD!:w=0.24,s=0.73"} +{"timestamp":"2026-03-16T09:12:10.308238566Z","score":0.15258286902981744,"is_anomaly":false,"confidence":0.18336147443690737,"method":"SEAD","details":"MAD:w=0.36,s=0.13 RRCF-fast:w=0.14,s=0.07 RRCF-mid:w=0.14,s=0.08 RRCF-slow:w=0.13,s=0.04 COPOD!:w=0.24,s=0.33"} +{"timestamp":"2026-03-16T09:12:39.384756306Z","score":0.18765497533262673,"is_anomaly":false,"confidence":0.22550823156751526,"method":"SEAD","details":"MAD:w=0.36,s=0.04 RRCF-fast:w=0.14,s=0.48 RRCF-mid:w=0.14,s=0.29 RRCF-slow:w=0.13,s=0.45 COPOD!:w=0.24,s=0.04"} +{"timestamp":"2026-03-16T09:13:08.029480536Z","score":0.933286925082569,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.36,s=0.92 RRCF-fast!:w=0.14,s=0.98 RRCF-mid!:w=0.14,s=0.96 RRCF-slow!:w=0.13,s=0.89 COPOD!:w=0.24,s=0.94"} +{"timestamp":"2026-03-16T09:13:38.005689166Z","score":0.8523054234824787,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.36,s=0.76 RRCF-fast!:w=0.14,s=0.97 RRCF-mid!:w=0.14,s=0.96 RRCF-slow!:w=0.13,s=0.92 COPOD!:w=0.24,s=0.82"} +{"timestamp":"2026-03-16T09:14:08.03400653Z","score":0.6125550115530999,"is_anomaly":false,"confidence":0.7344780631333664,"method":"SEAD","details":"MAD!:w=0.36,s=0.39 RRCF-fast:w=0.14,s=0.75 RRCF-mid:w=0.14,s=0.77 RRCF-slow:w=0.13,s=0.55 COPOD!:w=0.24,s=0.81"} +{"timestamp":"2026-03-16T09:14:37.994073223Z","score":0.3938220284557266,"is_anomaly":false,"confidence":0.47220843062899565,"method":"SEAD","details":"MAD!:w=0.36,s=0.31 RRCF-fast:w=0.14,s=0.67 RRCF-mid:w=0.14,s=0.75 RRCF-slow:w=0.13,s=0.58 COPOD!:w=0.23,s=0.06"} +{"timestamp":"2026-03-16T09:15:09.772365556Z","score":0.7400217601022683,"is_anomaly":false,"confidence":0.8873158145557712,"method":"SEAD","details":"MAD!:w=0.36,s=0.69 RRCF-fast:w=0.14,s=0.85 RRCF-mid:w=0.14,s=0.82 RRCF-slow:w=0.13,s=0.66 COPOD!:w=0.24,s=0.76"} +{"timestamp":"2026-03-16T09:15:38.507131479Z","score":0.7515451417641046,"is_anomaly":false,"confidence":0.9011328120239218,"method":"SEAD","details":"MAD!:w=0.37,s=0.66 RRCF-fast:w=0.14,s=0.84 RRCF-mid:w=0.14,s=0.81 RRCF-slow:w=0.13,s=0.63 COPOD!:w=0.24,s=0.88"} +{"timestamp":"2026-03-16T09:16:10.211123549Z","score":0.3879578424955805,"is_anomaly":false,"confidence":0.46517703611809036,"method":"SEAD","details":"MAD!:w=0.37,s=0.35 RRCF-fast:w=0.14,s=0.58 RRCF-mid:w=0.14,s=0.67 RRCF-slow:w=0.13,s=0.56 COPOD!:w=0.23,s=0.08"} +{"timestamp":"2026-03-16T09:16:38.01154081Z","score":0.240333082199783,"is_anomaly":false,"confidence":0.28881242428012693,"method":"SEAD","details":"MAD:w=0.37,s=0.00 RRCF-fast:w=0.14,s=0.58 RRCF-mid:w=0.13,s=0.60 RRCF-slow:w=0.13,s=0.57 COPOD!:w=0.24,s=0.04"} +{"timestamp":"2026-03-16T09:17:09.981725922Z","score":0.6712405335055531,"is_anomaly":false,"confidence":0.8066413661506298,"method":"SEAD","details":"MAD!:w=0.37,s=0.72 RRCF-fast:w=0.14,s=0.73 RRCF-mid:w=0.13,s=0.73 RRCF-slow:w=0.12,s=0.60 COPOD!:w=0.24,s=0.56"} +{"timestamp":"2026-03-16T09:17:39.380405789Z","score":0.19008492301541777,"is_anomaly":false,"confidence":0.22842834175258486,"method":"SEAD","details":"MAD!:w=0.37,s=0.20 RRCF-fast:w=0.14,s=0.21 RRCF-mid:w=0.13,s=0.27 RRCF-slow:w=0.12,s=0.35 COPOD!:w=0.24,s=0.03"} +{"timestamp":"2026-03-16T09:18:08.01092336Z","score":0.23339863267095767,"is_anomaly":false,"confidence":0.28047917626808927,"method":"SEAD","details":"MAD:w=0.37,s=0.03 RRCF-fast:w=0.14,s=0.32 RRCF-mid:w=0.13,s=0.46 RRCF-slow:w=0.12,s=0.49 COPOD!:w=0.24,s=0.23"} +{"timestamp":"2026-03-16T09:18:38.032538587Z","score":0.8842551671277579,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.37,s=0.91 RRCF-fast:w=0.14,s=0.86 RRCF-mid:w=0.13,s=0.85 RRCF-slow:w=0.12,s=0.83 COPOD!:w=0.24,s=0.90"} +{"timestamp":"2026-03-16T09:19:43.333349267Z","score":0.8808607629386286,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.37,s=0.72 RRCF-fast!:w=0.14,s=0.94 RRCF-mid!:w=0.13,s=0.98 RRCF-slow!:w=0.12,s=0.97 COPOD!:w=0.24,s=1.00"} +{"timestamp":"2026-03-16T09:20:08.090391575Z","score":0.3721669354013962,"is_anomaly":false,"confidence":0.4457567346451747,"method":"SEAD","details":"MAD!:w=0.37,s=0.37 RRCF-fast:w=0.14,s=0.31 RRCF-mid:w=0.13,s=0.44 RRCF-slow:w=0.12,s=0.56 COPOD!:w=0.24,s=0.27"} +{"timestamp":"2026-03-16T09:20:55.254134829Z","score":0.8060130417938663,"is_anomaly":false,"confidence":0.9664420119525446,"method":"SEAD","details":"MAD!:w=0.37,s=0.63 RRCF-fast!:w=0.14,s=0.99 RRCF-mid!:w=0.13,s=0.99 RRCF-slow!:w=0.12,s=0.99 COPOD!:w=0.24,s=0.78"} +{"timestamp":"2026-03-16T09:21:43.635319348Z","score":0.9341689087301287,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.37,s=0.91 RRCF-fast!:w=0.13,s=0.91 RRCF-mid!:w=0.13,s=0.92 RRCF-slow!:w=0.12,s=0.91 COPOD!:w=0.24,s=1.00"} +{"timestamp":"2026-03-16T09:22:08.04349212Z","score":0.5857708807617015,"is_anomaly":false,"confidence":0.7015972947111637,"method":"SEAD","details":"MAD!:w=0.37,s=0.21 RRCF-fast!:w=0.13,s=0.94 RRCF-mid!:w=0.13,s=0.96 RRCF-slow!:w=0.12,s=0.96 COPOD!:w=0.24,s=0.58"} +{"timestamp":"2026-03-16T09:22:49.870070537Z","score":0.7276494587411352,"is_anomaly":false,"confidence":0.8715299932406632,"method":"SEAD","details":"MAD!:w=0.38,s=0.44 RRCF-fast!:w=0.13,s=1.00 RRCF-mid!:w=0.13,s=1.00 RRCF-slow!:w=0.12,s=1.00 COPOD!:w=0.24,s=0.75"} +{"timestamp":"2026-03-16T09:23:33.95072763Z","score":0.763461048198757,"is_anomaly":false,"confidence":0.9144227267444229,"method":"SEAD","details":"MAD!:w=0.38,s=0.67 RRCF-fast:w=0.13,s=0.81 RRCF-mid!:w=0.13,s=0.91 RRCF-slow!:w=0.12,s=0.89 COPOD!:w=0.24,s=0.74"} +{"timestamp":"2026-03-16T09:23:43.274495697Z","score":0.6795125092819869,"is_anomaly":false,"confidence":0.8138747655306917,"method":"SEAD","details":"MAD!:w=0.38,s=0.44 RRCF-fast:w=0.13,s=0.74 RRCF-mid!:w=0.13,s=0.92 RRCF-slow!:w=0.12,s=0.91 COPOD!:w=0.24,s=0.79"} +{"timestamp":"2026-03-16T09:24:28.009527813Z","score":0.655157266109312,"is_anomaly":false,"confidence":0.7855598775360045,"method":"SEAD","details":"MAD!:w=0.38,s=0.42 RRCF-fast!:w=0.13,s=0.97 RRCF-mid!:w=0.13,s=0.98 RRCF-slow!:w=0.12,s=0.98 COPOD!:w=0.23,s=0.51"} +{"timestamp":"2026-03-16T09:24:38.015728893Z","score":0.4406117403293396,"is_anomaly":false,"confidence":0.5283111745513193,"method":"SEAD","details":"MAD!:w=0.39,s=0.22 RRCF-fast:w=0.13,s=0.39 RRCF-mid:w=0.13,s=0.84 RRCF-slow:w=0.12,s=0.84 COPOD!:w=0.23,s=0.40"} +{"timestamp":"2026-03-16T09:25:13.821744978Z","score":0.7205551002152191,"is_anomaly":false,"confidence":0.8639745074407343,"method":"SEAD","details":"MAD!:w=0.39,s=0.58 RRCF-fast:w=0.13,s=0.76 RRCF-mid:w=0.13,s=0.89 RRCF-slow:w=0.12,s=0.88 COPOD!:w=0.23,s=0.77"} +{"timestamp":"2026-03-16T09:26:05.846483584Z","score":0.6709018982353147,"is_anomaly":false,"confidence":0.8044383238641697,"method":"SEAD","details":"MAD!:w=0.39,s=0.49 RRCF-fast:w=0.13,s=0.65 RRCF-mid:w=0.13,s=0.87 RRCF-slow:w=0.12,s=0.84 COPOD!:w=0.23,s=0.79"} +{"timestamp":"2026-03-16T09:26:08.384167415Z","score":0.6618594473867165,"is_anomaly":false,"confidence":0.7935960620917651,"method":"SEAD","details":"MAD!:w=0.39,s=0.44 RRCF-fast:w=0.13,s=0.56 RRCF-mid:w=0.13,s=0.87 RRCF-slow:w=0.12,s=0.85 COPOD!:w=0.23,s=0.88"} +{"timestamp":"2026-03-16T09:26:38.055055872Z","score":0.4164244189419567,"is_anomaly":false,"confidence":0.49930960468423596,"method":"SEAD","details":"MAD!:w=0.39,s=0.26 RRCF-fast:w=0.13,s=0.46 RRCF-mid:w=0.13,s=0.69 RRCF-slow:w=0.12,s=0.76 COPOD!:w=0.23,s=0.33"} +{"timestamp":"2026-03-16T09:27:33.751438557Z","score":0.628764299565643,"is_anomaly":false,"confidence":0.7539136505331627,"method":"SEAD","details":"MAD!:w=0.40,s=0.44 RRCF-fast!:w=0.13,s=0.95 RRCF-mid!:w=0.13,s=0.96 RRCF-slow!:w=0.12,s=0.96 COPOD!:w=0.23,s=0.42"} +{"timestamp":"2026-03-16T09:27:45.025148911Z","score":0.9037836256447989,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.40,s=0.91 RRCF-fast:w=0.13,s=0.71 RRCF-mid:w=0.12,s=0.90 RRCF-slow!:w=0.12,s=0.92 COPOD!:w=0.23,s=1.00"} +{"timestamp":"2026-03-16T09:28:09.676212889Z","score":0.7829879859057639,"is_anomaly":false,"confidence":0.9388340451034072,"method":"SEAD","details":"MAD!:w=0.40,s=0.84 RRCF-fast:w=0.13,s=0.88 RRCF-mid:w=0.12,s=0.87 RRCF-slow!:w=0.12,s=0.90 COPOD!:w=0.23,s=0.52"} +{"timestamp":"2026-03-16T09:29:16.634332789Z","score":0.5742032344112057,"is_anomaly":false,"confidence":0.6884927418779233,"method":"SEAD","details":"MAD!:w=0.40,s=0.47 RRCF-fast:w=0.13,s=0.86 RRCF-mid!:w=0.12,s=0.94 RRCF-slow!:w=0.12,s=0.94 COPOD!:w=0.23,s=0.21"} +{"timestamp":"2026-03-16T09:29:38.62568089Z","score":0.6382903943015517,"is_anomaly":false,"confidence":0.7653358207528062,"method":"SEAD","details":"MAD!:w=0.40,s=0.76 RRCF-fast:w=0.13,s=0.52 RRCF-mid:w=0.12,s=0.85 RRCF-slow:w=0.12,s=0.79 COPOD!:w=0.23,s=0.31"} +{"timestamp":"2026-03-16T09:30:08.103013681Z","score":0.618728797532003,"is_anomaly":false,"confidence":0.7418806805023562,"method":"SEAD","details":"MAD!:w=0.40,s=0.54 RRCF-fast:w=0.13,s=0.40 RRCF-mid:w=0.12,s=0.67 RRCF-slow:w=0.12,s=0.74 COPOD!:w=0.24,s=0.79"} +{"timestamp":"2026-03-16T09:30:38.083564194Z","score":0.3488353962667133,"is_anomaly":false,"confidence":0.41826765167217306,"method":"SEAD","details":"MAD!:w=0.40,s=0.18 RRCF-fast:w=0.13,s=0.07 RRCF-mid:w=0.12,s=0.51 RRCF-slow:w=0.12,s=0.67 COPOD!:w=0.23,s=0.55"} +{"timestamp":"2026-03-16T09:31:08.007459974Z","score":0.3033343862679349,"is_anomaly":false,"confidence":0.36371011306061,"method":"SEAD","details":"MAD!:w=0.40,s=0.22 RRCF-fast:w=0.13,s=0.19 RRCF-mid:w=0.12,s=0.64 RRCF-slow:w=0.11,s=0.67 COPOD!:w=0.23,s=0.16"} +{"timestamp":"2026-03-16T09:31:39.118676837Z","score":0.7192199863859006,"is_anomaly":false,"confidence":0.864299105048549,"method":"SEAD","details":"MAD!:w=0.40,s=0.75 RRCF-fast:w=0.13,s=0.38 RRCF-mid:w=0.12,s=0.76 RRCF-slow:w=0.11,s=0.84 COPOD!:w=0.23,s=0.78"} +{"timestamp":"2026-03-16T09:32:08.030760494Z","score":0.45214160539080317,"is_anomaly":false,"confidence":0.5433463923301037,"method":"SEAD","details":"MAD!:w=0.40,s=0.35 RRCF-fast:w=0.13,s=0.04 RRCF-mid:w=0.12,s=0.39 RRCF-slow:w=0.11,s=0.65 COPOD!:w=0.23,s=0.78"} +{"timestamp":"2026-03-16T09:32:39.288745211Z","score":0.3225860826279278,"is_anomaly":false,"confidence":0.3876572784322461,"method":"SEAD","details":"MAD!:w=0.40,s=0.16 RRCF-fast:w=0.13,s=0.06 RRCF-mid:w=0.12,s=0.53 RRCF-slow:w=0.11,s=0.72 COPOD!:w=0.23,s=0.44"} +{"timestamp":"2026-03-16T09:33:08.938201924Z","score":0.7752805328969834,"is_anomaly":false,"confidence":0.9316680340205309,"method":"SEAD","details":"MAD!:w=0.40,s=0.91 RRCF-fast:w=0.13,s=0.50 RRCF-mid:w=0.12,s=0.79 RRCF-slow:w=0.11,s=0.88 COPOD!:w=0.23,s=0.64"} +{"timestamp":"2026-03-16T09:33:39.666902789Z","score":0.5358090598534861,"is_anomaly":false,"confidence":0.6438910203752244,"method":"SEAD","details":"MAD!:w=0.40,s=0.74 RRCF-fast:w=0.13,s=0.29 RRCF-mid:w=0.12,s=0.60 RRCF-slow:w=0.11,s=0.79 COPOD!:w=0.23,s=0.17"} +{"timestamp":"2026-03-16T09:34:08.031057297Z","score":0.28433618431670404,"is_anomaly":false,"confidence":0.34169171364766215,"method":"SEAD","details":"MAD:w=0.40,s=0.07 RRCF-fast:w=0.13,s=0.01 RRCF-mid:w=0.12,s=0.40 RRCF-slow:w=0.11,s=0.58 COPOD!:w=0.23,s=0.60"} +{"timestamp":"2026-03-16T09:34:38.056107188Z","score":0.2590133869346307,"is_anomaly":false,"confidence":0.313113942281243,"method":"SEAD","details":"MAD!:w=0.40,s=0.31 RRCF-fast:w=0.13,s=0.08 RRCF-mid:w=0.12,s=0.36 RRCF-slow:w=0.11,s=0.64 COPOD!:w=0.23,s=0.04"} +{"timestamp":"2026-03-16T09:35:08.028263491Z","score":0.482764081587082,"is_anomaly":false,"confidence":0.5835998153086365,"method":"SEAD","details":"MAD!:w=0.40,s=0.68 RRCF-fast:w=0.13,s=0.34 RRCF-mid:w=0.12,s=0.58 RRCF-slow:w=0.11,s=0.75 COPOD!:w=0.23,s=0.06"} +{"timestamp":"2026-03-16T09:35:38.149673021Z","score":0.5106824085924222,"is_anomaly":false,"confidence":0.6173494895397416,"method":"SEAD","details":"MAD!:w=0.40,s=0.53 RRCF-fast:w=0.13,s=0.14 RRCF-mid:w=0.12,s=0.44 RRCF-slow:w=0.11,s=0.60 COPOD!:w=0.24,s=0.68"} +{"timestamp":"2026-03-16T09:36:08.064724291Z","score":0.2589051472658326,"is_anomaly":false,"confidence":0.31298309441345634,"method":"SEAD","details":"MAD!:w=0.40,s=0.29 RRCF-fast:w=0.13,s=0.04 RRCF-mid:w=0.12,s=0.31 RRCF-slow:w=0.11,s=0.58 COPOD!:w=0.23,s=0.15"} +{"timestamp":"2026-03-16T09:36:38.02141577Z","score":0.26539775944262123,"is_anomaly":false,"confidence":0.32083182925468123,"method":"SEAD","details":"MAD:w=0.40,s=0.01 RRCF-fast:w=0.14,s=0.11 RRCF-mid:w=0.12,s=0.34 RRCF-slow:w=0.11,s=0.66 COPOD!:w=0.24,s=0.56"} +{"timestamp":"2026-03-16T09:37:08.032872091Z","score":0.5939840683828196,"is_anomaly":false,"confidence":0.7180505050518278,"method":"SEAD","details":"MAD!:w=0.40,s=0.61 RRCF-fast:w=0.14,s=0.27 RRCF-mid:w=0.12,s=0.66 RRCF-slow:w=0.11,s=0.71 COPOD!:w=0.23,s=0.67"} +{"timestamp":"2026-03-16T09:37:38.034682812Z","score":0.3474467175392916,"is_anomaly":false,"confidence":0.4200184891943883,"method":"SEAD","details":"MAD!:w=0.40,s=0.34 RRCF-fast:w=0.14,s=0.00 RRCF-mid:w=0.12,s=0.11 RRCF-slow:w=0.11,s=0.56 COPOD!:w=0.23,s=0.59"} +{"timestamp":"2026-03-16T09:38:07.9908522Z","score":0.23490478391856262,"is_anomaly":false,"confidence":0.2850715539835372,"method":"SEAD","details":"MAD:w=0.40,s=0.02 RRCF-fast:w=0.14,s=0.14 RRCF-mid:w=0.12,s=0.34 RRCF-slow:w=0.11,s=0.60 COPOD!:w=0.23,s=0.43"} +{"timestamp":"2026-03-16T09:38:41.199454885Z","score":0.8489412480585385,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.40,s=0.91 RRCF-fast:w=0.14,s=0.84 RRCF-mid:w=0.12,s=0.78 RRCF-slow:w=0.11,s=0.82 COPOD!:w=0.23,s=0.80"} +{"timestamp":"2026-03-16T09:39:17.791215609Z","score":0.45434294104621964,"is_anomaly":false,"confidence":0.5492423040456198,"method":"SEAD","details":"MAD!:w=0.40,s=0.59 RRCF-fast:w=0.14,s=0.38 RRCF-mid:w=0.12,s=0.48 RRCF-slow:w=0.11,s=0.69 COPOD!:w=0.23,s=0.14"} +{"timestamp":"2026-03-16T09:39:38.080757222Z","score":0.6777811128074822,"is_anomaly":false,"confidence":0.8193503770076525,"method":"SEAD","details":"MAD!:w=0.40,s=0.60 RRCF-fast:w=0.14,s=0.82 RRCF-mid:w=0.12,s=0.81 RRCF-slow!:w=0.11,s=0.90 COPOD!:w=0.23,s=0.56"} +{"timestamp":"2026-03-16T09:40:08.004363828Z","score":0.27738021875299734,"is_anomaly":false,"confidence":0.33531708469764926,"method":"SEAD","details":"MAD!:w=0.40,s=0.37 RRCF-fast:w=0.14,s=0.11 RRCF-mid:w=0.12,s=0.37 RRCF-slow:w=0.11,s=0.49 COPOD!:w=0.23,s=0.06"} +{"timestamp":"2026-03-16T09:40:38.12479047Z","score":0.5213228905948858,"is_anomaly":false,"confidence":0.6302124666506692,"method":"SEAD","details":"MAD!:w=0.40,s=0.57 RRCF-fast:w=0.14,s=0.53 RRCF-mid:w=0.12,s=0.53 RRCF-slow:w=0.11,s=0.71 COPOD!:w=0.23,s=0.35"} +{"timestamp":"2026-03-16T09:41:08.055683634Z","score":0.6963193169065152,"is_anomaly":false,"confidence":0.8417606865169731,"method":"SEAD","details":"MAD!:w=0.40,s=0.65 RRCF-fast:w=0.14,s=0.54 RRCF-mid:w=0.12,s=0.56 RRCF-slow:w=0.11,s=0.72 COPOD!:w=0.23,s=0.93"} +{"timestamp":"2026-03-16T09:41:38.005778865Z","score":0.39196142119813554,"is_anomaly":false,"confidence":0.47566954396844263,"method":"SEAD","details":"MAD!:w=0.40,s=0.37 RRCF-fast:w=0.14,s=0.05 RRCF-mid:w=0.12,s=0.17 RRCF-slow:w=0.11,s=0.47 COPOD!:w=0.23,s=0.70"} +{"timestamp":"2026-03-16T09:42:07.990963155Z","score":0.3100764822948825,"is_anomaly":false,"confidence":0.37629708168138265,"method":"SEAD","details":"MAD!:w=0.40,s=0.32 RRCF-fast:w=0.14,s=0.17 RRCF-mid:w=0.12,s=0.34 RRCF-slow:w=0.11,s=0.51 COPOD!:w=0.23,s=0.26"} +{"timestamp":"2026-03-16T09:42:39.862891082Z","score":0.7460141740118207,"is_anomaly":false,"confidence":0.9053345629309223,"method":"SEAD","details":"MAD!:w=0.40,s=0.66 RRCF-fast:w=0.14,s=0.80 RRCF-mid:w=0.12,s=0.69 RRCF-slow:w=0.11,s=0.88 COPOD!:w=0.23,s=0.83"} +{"timestamp":"2026-03-16T09:43:08.044201847Z","score":0.4869247338231344,"is_anomaly":false,"confidence":0.5909134255524722,"method":"SEAD","details":"MAD!:w=0.40,s=0.37 RRCF-fast!:w=0.14,s=0.93 RRCF-mid:w=0.12,s=0.67 RRCF-slow:w=0.11,s=0.70 COPOD!:w=0.23,s=0.24"} +{"timestamp":"2026-03-16T09:43:37.988214377Z","score":0.38951103529750225,"is_anomaly":false,"confidence":0.4726958483931535,"method":"SEAD","details":"MAD!:w=0.40,s=0.18 RRCF-fast:w=0.14,s=0.66 RRCF-mid:w=0.12,s=0.39 RRCF-slow:w=0.11,s=0.44 COPOD!:w=0.23,s=0.56"} +{"timestamp":"2026-03-16T09:44:10.458865838Z","score":0.901774505228619,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.40,s=0.91 RRCF-fast!:w=0.14,s=0.97 RRCF-mid:w=0.12,s=0.91 RRCF-slow!:w=0.11,s=0.96 COPOD!:w=0.23,s=0.83"} +{"timestamp":"2026-03-16T09:44:40.968037496Z","score":0.4843451712105494,"is_anomaly":false,"confidence":0.5877829660092456,"method":"SEAD","details":"MAD!:w=0.40,s=0.54 RRCF-fast:w=0.14,s=0.87 RRCF-mid:w=0.12,s=0.55 RRCF-slow:w=0.11,s=0.71 COPOD!:w=0.23,s=0.03"} +{"timestamp":"2026-03-16T09:45:08.036407809Z","score":0.360237222149302,"is_anomaly":false,"confidence":0.43717025684932925,"method":"SEAD","details":"MAD!:w=0.40,s=0.33 RRCF-fast:w=0.14,s=0.46 RRCF-mid:w=0.12,s=0.18 RRCF-slow:w=0.11,s=0.48 COPOD!:w=0.23,s=0.39"} +{"timestamp":"2026-03-16T09:45:38.020175412Z","score":0.5341410859772028,"is_anomaly":false,"confidence":0.6482134032602934,"method":"SEAD","details":"MAD!:w=0.40,s=0.54 RRCF-fast:w=0.14,s=0.88 RRCF-mid:w=0.12,s=0.78 RRCF-slow:w=0.11,s=0.88 COPOD!:w=0.23,s=0.04"} +{"timestamp":"2026-03-16T09:46:10.69329566Z","score":0.5206185604297975,"is_anomaly":false,"confidence":0.6318029781200488,"method":"SEAD","details":"MAD!:w=0.40,s=0.52 RRCF-fast:w=0.13,s=0.65 RRCF-mid:w=0.12,s=0.55 RRCF-slow:w=0.11,s=0.73 COPOD!:w=0.24,s=0.34"} +{"timestamp":"2026-03-16T09:46:38.111893356Z","score":0.6352653709351548,"is_anomaly":false,"confidence":0.7709340076581649,"method":"SEAD","details":"MAD!:w=0.40,s=0.57 RRCF-fast:w=0.13,s=0.62 RRCF-mid:w=0.12,s=0.43 RRCF-slow:w=0.11,s=0.61 COPOD!:w=0.24,s=0.87"} +{"timestamp":"2026-03-16T09:47:08.793919609Z","score":0.5389053620554275,"is_anomaly":false,"confidence":0.6539951483681196,"method":"SEAD","details":"MAD!:w=0.40,s=0.56 RRCF-fast:w=0.13,s=0.81 RRCF-mid:w=0.12,s=0.80 RRCF-slow:w=0.11,s=0.88 COPOD!:w=0.24,s=0.07"} +{"timestamp":"2026-03-16T09:47:38.810321959Z","score":0.3110403815093099,"is_anomaly":false,"confidence":0.3774668332818251,"method":"SEAD","details":"MAD!:w=0.40,s=0.34 RRCF-fast:w=0.13,s=0.56 RRCF-mid:w=0.12,s=0.15 RRCF-slow:w=0.11,s=0.56 COPOD!:w=0.24,s=0.10"} +{"timestamp":"2026-03-16T09:48:09.337834054Z","score":0.459693069729936,"is_anomaly":false,"confidence":0.557930205043468,"method":"SEAD","details":"MAD!:w=0.40,s=0.52 RRCF-fast:w=0.13,s=0.60 RRCF-mid:w=0.12,s=0.49 RRCF-slow:w=0.11,s=0.68 COPOD!:w=0.24,s=0.18"} +{"timestamp":"2026-03-16T09:48:38.150132707Z","score":0.7167648636069355,"is_anomaly":false,"confidence":0.8699386474438476,"method":"SEAD","details":"MAD!:w=0.40,s=0.77 RRCF-fast:w=0.13,s=0.71 RRCF-mid:w=0.12,s=0.67 RRCF-slow:w=0.11,s=0.72 COPOD!:w=0.24,s=0.66"} +{"timestamp":"2026-03-16T09:49:08.033668121Z","score":0.2724876200328263,"is_anomaly":false,"confidence":0.33071865496261793,"method":"SEAD","details":"MAD!:w=0.40,s=0.27 RRCF-fast:w=0.13,s=0.14 RRCF-mid:w=0.12,s=0.13 RRCF-slow:w=0.11,s=0.36 COPOD!:w=0.24,s=0.38"} +{"timestamp":"2026-03-16T09:49:38.08403309Z","score":0.7771210305883292,"is_anomaly":false,"confidence":0.9431930226715406,"method":"SEAD","details":"MAD!:w=0.40,s=0.91 RRCF-fast:w=0.13,s=0.73 RRCF-mid:w=0.12,s=0.69 RRCF-slow:w=0.11,s=0.74 COPOD!:w=0.24,s=0.65"} +{"timestamp":"2026-03-16T09:50:08.097229257Z","score":0.4872281344452919,"is_anomaly":false,"confidence":0.5913495565937297,"method":"SEAD","details":"MAD!:w=0.40,s=0.52 RRCF-fast:w=0.13,s=0.54 RRCF-mid:w=0.12,s=0.43 RRCF-slow:w=0.11,s=0.61 COPOD!:w=0.24,s=0.38"} +{"timestamp":"2026-03-16T09:50:38.028051926Z","score":0.2470436603157547,"is_anomaly":false,"confidence":0.29983728085270706,"method":"SEAD","details":"MAD:w=0.40,s=0.08 RRCF-fast:w=0.13,s=0.17 RRCF-mid:w=0.12,s=0.03 RRCF-slow:w=0.11,s=0.38 COPOD!:w=0.24,s=0.62"} +{"timestamp":"2026-03-16T09:51:07.989855913Z","score":0.2897320495988688,"is_anomaly":false,"confidence":0.35164824637301717,"method":"SEAD","details":"MAD!:w=0.40,s=0.31 RRCF-fast:w=0.13,s=0.20 RRCF-mid:w=0.12,s=0.14 RRCF-slow:w=0.10,s=0.45 COPOD!:w=0.24,s=0.31"} +{"timestamp":"2026-03-16T09:51:40.08741931Z","score":0.503267175459731,"is_anomaly":false,"confidence":0.6135137994419767,"method":"SEAD","details":"MAD!:w=0.40,s=0.72 RRCF-fast:w=0.13,s=0.63 RRCF-mid:w=0.12,s=0.44 RRCF-slow:w=0.10,s=0.69 COPOD!:w=0.24,s=0.03"} +{"timestamp":"2026-03-16T09:52:12.793093638Z","score":0.8165843551731954,"is_anomaly":false,"confidence":0.9954668111416898,"method":"SEAD","details":"MAD!:w=0.40,s=0.88 RRCF-fast!:w=0.13,s=0.99 RRCF-mid!:w=0.12,s=0.98 RRCF-slow:w=0.10,s=0.89 COPOD!:w=0.24,s=0.50"} +{"timestamp":"2026-03-16T09:52:38.083814994Z","score":0.22156271075490677,"is_anomaly":false,"confidence":0.2700986416722566,"method":"SEAD","details":"MAD!:w=0.40,s=0.21 RRCF-fast:w=0.13,s=0.25 RRCF-mid:w=0.12,s=0.19 RRCF-slow:w=0.10,s=0.35 COPOD!:w=0.24,s=0.19"} +{"timestamp":"2026-03-16T09:53:09.091116361Z","score":0.23416619870221467,"is_anomaly":false,"confidence":0.2854630726421694,"method":"SEAD","details":"MAD:w=0.40,s=0.00 RRCF-fast:w=0.13,s=0.34 RRCF-mid:w=0.12,s=0.31 RRCF-slow:w=0.10,s=0.48 COPOD!:w=0.25,s=0.41"} +{"timestamp":"2026-03-16T09:53:38.571234695Z","score":0.8741384998599839,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.40,s=0.88 RRCF-fast!:w=0.13,s=0.94 RRCF-mid:w=0.12,s=0.86 RRCF-slow:w=0.10,s=0.86 COPOD!:w=0.24,s=0.84"} +{"timestamp":"2026-03-16T09:54:08.027743694Z","score":0.552290730883517,"is_anomaly":false,"confidence":0.6703161326893087,"method":"SEAD","details":"MAD!:w=0.40,s=0.54 RRCF-fast:w=0.13,s=0.55 RRCF-mid:w=0.12,s=0.19 RRCF-slow:w=0.10,s=0.37 COPOD!:w=0.24,s=0.83"} +{"timestamp":"2026-03-16T09:54:37.993689742Z","score":0.32695933497923346,"is_anomaly":false,"confidence":0.3985836423424402,"method":"SEAD","details":"MAD!:w=0.40,s=0.29 RRCF-fast:w=0.13,s=0.26 RRCF-mid:w=0.12,s=0.31 RRCF-slow:w=0.10,s=0.46 COPOD!:w=0.24,s=0.38"} +{"timestamp":"2026-03-16T09:55:08.044187795Z","score":0.7323928999220795,"is_anomaly":false,"confidence":0.8928322223778249,"method":"SEAD","details":"MAD!:w=0.40,s=0.92 RRCF-fast:w=0.13,s=0.73 RRCF-mid:w=0.12,s=0.67 RRCF-slow:w=0.10,s=0.71 COPOD!:w=0.24,s=0.47"} +{"timestamp":"2026-03-16T09:55:38.286180261Z","score":0.7865063227170421,"is_anomaly":false,"confidence":0.9587998301190218,"method":"SEAD","details":"MAD!:w=0.40,s=0.85 RRCF-fast:w=0.13,s=0.85 RRCF-mid:w=0.12,s=0.80 RRCF-slow:w=0.10,s=0.70 COPOD!:w=0.24,s=0.69"} +{"timestamp":"2026-03-16T09:56:10.439587479Z","score":0.35915651414299843,"is_anomaly":false,"confidence":0.43783399420977764,"method":"SEAD","details":"MAD!:w=0.40,s=0.34 RRCF-fast:w=0.13,s=0.24 RRCF-mid:w=0.12,s=0.14 RRCF-slow:w=0.10,s=0.28 COPOD!:w=0.24,s=0.59"} +{"timestamp":"2026-03-16T09:56:38.036761576Z","score":0.1668470658972484,"is_anomaly":false,"confidence":0.20339688800657202,"method":"SEAD","details":"MAD:w=0.40,s=0.02 RRCF-fast:w=0.13,s=0.30 RRCF-mid:w=0.12,s=0.32 RRCF-slow:w=0.10,s=0.33 COPOD!:w=0.24,s=0.19"} +{"timestamp":"2026-03-16T09:57:08.081568668Z","score":0.7155200885136149,"is_anomaly":false,"confidence":0.8722632221742674,"method":"SEAD","details":"MAD!:w=0.40,s=0.77 RRCF-fast:w=0.13,s=0.68 RRCF-mid:w=0.12,s=0.59 RRCF-slow:w=0.10,s=0.66 COPOD!:w=0.24,s=0.74"} +{"timestamp":"2026-03-16T09:57:38.71829868Z","score":0.8097989900900472,"is_anomaly":false,"confidence":0.9871950316262458,"method":"SEAD","details":"MAD!:w=0.40,s=0.87 RRCF-fast:w=0.13,s=0.78 RRCF-mid:w=0.12,s=0.75 RRCF-slow:w=0.10,s=0.68 COPOD!:w=0.24,s=0.82"} +{"timestamp":"2026-03-16T09:58:08.067034028Z","score":0.39031974702636757,"is_anomaly":false,"confidence":0.47665332045418557,"method":"SEAD","details":"MAD!:w=0.40,s=0.39 RRCF-fast:w=0.13,s=0.17 RRCF-mid:w=0.12,s=0.21 RRCF-slow:w=0.10,s=0.39 COPOD!:w=0.24,s=0.61"} +{"timestamp":"2026-03-16T09:58:38.706291237Z","score":0.15522317357255194,"is_anomaly":false,"confidence":0.18955648966895627,"method":"SEAD","details":"MAD:w=0.40,s=0.01 RRCF-fast:w=0.13,s=0.29 RRCF-mid:w=0.12,s=0.32 RRCF-slow:w=0.10,s=0.43 COPOD!:w=0.24,s=0.11"} +{"timestamp":"2026-03-16T09:59:11.767491065Z","score":0.7353381226674535,"is_anomaly":false,"confidence":0.8979852044285918,"method":"SEAD","details":"MAD!:w=0.40,s=0.87 RRCF-fast:w=0.13,s=0.64 RRCF-mid:w=0.12,s=0.78 RRCF-slow:w=0.10,s=0.78 COPOD!:w=0.24,s=0.52"} diff --git a/evaluation/data/pipeline_high-bw_run3/baseline_metrics.csv b/evaluation/data/pipeline_high-bw_run3/baseline_metrics.csv new file mode 100644 index 0000000..8cf44f0 --- /dev/null +++ b/evaluation/data/pipeline_high-bw_run3/baseline_metrics.csv @@ -0,0 +1,3248 @@ +timestamp,cpu_percent,cpu_count,cpu_freq_current,memory_percent,memory_available_mb,memory_used_mb,swap_percent,disk_io_read_mb_s,disk_io_write_mb_s,disk_io_read_count,disk_io_write_count,network_sent_mb_s,network_recv_mb_s,network_packets_sent,network_packets_recv,network_errin,network_errout,network_dropin,network_dropout,tixstream_active,transfer_job_manager_active +1773638933.294314,1.90,4,3992.50,48.19,1799.14,1886.70,0.00,3509113196101.591797,3509113195472.090332,258,2,0.000000,0.000030,46298371,24219239,0,0,62727,0,1,1 +1773638938.292231,0.70,4,3992.50,48.22,1797.96,1887.86,0.00,3519903856372.662598,3519903856374.785645,75,0,0.000000,0.000020,46298371,24219241,0,0,62729,0,1,1 +1773638943.290444,0.75,4,3992.50,48.22,1797.96,1887.86,0.00,40765.583233,41395.011894,2834985,2760070,0.000000,0.000030,46298371,24219244,0,0,62732,0,1,1 +1773638948.290376,0.85,4,3992.50,48.57,1784.19,1901.66,0.00,3518484688009.551270,3518484688008.646973,2833482,2759593,0.000000,0.000020,46298371,24219246,0,0,62734,0,1,1 +1773638953.290675,0.65,4,3992.50,48.41,1790.33,1895.52,0.00,3518226922419.201660,3518226921790.992676,11,0,0.000000,0.000674,46298371,24219253,0,0,62737,0,1,1 +1773638958.292689,0.70,4,3992.50,48.43,1789.59,1896.27,0.00,0.053494,0.000000,75,0,0.000000,0.000020,46298371,24219255,0,0,62739,0,1,1 +1773638963.295185,41.45,4,3992.50,55.06,1532.19,2155.63,0.00,0.000000,0.000000,75,0,100.296992,0.044126,46309057,24222491,0,0,62742,0,1,1 +1773638968.294490,31.20,4,3992.50,55.29,1523.17,2164.61,0.00,2.122170,0.000195,258,2,121.786628,0.028266,46321579,24224613,0,0,62744,0,1,1 +1773638973.293169,28.81,4,3992.50,55.52,1514.15,2173.61,0.00,3519366857379.008301,3519366857381.184082,11,0,120.199562,0.026695,46333911,24226590,0,0,62747,0,1,1 +1773638978.293278,29.10,4,3992.50,55.82,1506.10,2185.51,0.00,0.053514,0.000000,75,0,120.165299,0.021419,46346305,24228177,0,0,62749,0,1,1 +1773638983.294483,29.42,4,3992.50,55.64,1509.47,2178.23,0.00,3517588772802.806152,0.000000,11,0,120.138377,0.020556,46358655,24229696,0,0,62752,0,1,1 +1773638988.294707,29.67,4,3992.50,55.61,1510.66,2177.09,0.00,1.657641,10.674719,253,492,120.165240,0.024537,46371097,24231496,0,0,62754,0,1,1 +1773638993.294463,29.10,4,3992.50,55.63,1509.75,2178.05,0.00,3518608328656.668457,3518608328647.650879,11,0,118.569109,0.021403,46383189,24233162,0,0,62757,0,1,1 +1773638998.290963,29.33,4,3992.50,55.67,1508.18,2179.63,0.00,2.176915,0.000195,258,2,119.855119,0.035656,46395528,24235924,0,0,62759,0,1,1 +1773639003.294431,10.09,4,3992.50,49.91,1733.77,1954.12,0.00,0.000000,0.000000,258,2,84.265901,0.033385,46404148,24238445,0,0,62762,0,1,1 +1773639008.294068,0.95,4,3992.50,49.81,1737.75,1950.29,0.00,3518692920742.095703,10.675776,253,492,0.000031,0.000045,46404150,24238449,0,0,62764,0,1,1 +1773639013.294153,0.70,4,3992.50,49.69,1742.36,1945.53,0.00,40749.064889,41369.579414,2835052,2760481,0.000000,0.000030,46404150,24238452,0,0,62767,0,1,1 +1773639018.295108,0.60,4,3992.50,49.70,1742.11,1945.78,0.00,3517765244652.887207,3517765244651.943848,2833549,2759992,0.000000,0.000664,46404150,24238458,0,0,62769,0,1,1 +1773639023.294413,0.55,4,3992.50,49.72,1741.38,1946.52,0.00,9.727525,10.681564,2835052,2760489,0.000000,0.000030,46404150,24238461,0,0,62772,0,1,1 +1773639028.294615,0.55,4,3992.50,49.72,1741.38,1946.52,0.00,3518294474553.977539,3518294473922.274902,258,2,0.000308,0.000574,46404157,24238474,0,0,62774,0,1,1 +1773639033.294555,0.65,4,3992.50,49.72,1741.38,1946.52,0.00,3518479601634.353027,3518479601636.528320,11,0,0.001139,0.001232,46404167,24238491,0,0,62777,0,1,1 +1773639038.294985,0.80,4,3992.50,49.82,1739.15,1950.66,0.00,0.000000,0.000000,11,0,0.000000,0.000020,46404167,24238493,0,0,62779,0,1,1 +1773639043.293038,0.60,4,3992.50,49.82,1737.45,1950.45,0.00,0.000000,0.000000,11,0,0.000205,0.000562,46404174,24238507,0,0,62782,0,1,1 +1773639048.295084,0.70,4,3992.50,49.83,1736.99,1950.91,0.00,2.174501,0.000195,258,2,0.000134,0.000183,46404185,24238520,0,0,62784,0,1,1 +1773639053.290543,0.70,4,3992.50,49.63,1744.63,1943.27,0.00,3521635981275.536621,3521635981277.713867,11,0,0.000000,0.000030,46404185,24238523,0,0,62787,0,1,1 +1773639058.294733,0.60,4,3992.50,49.64,1744.39,1943.52,0.00,1.656327,10.666257,253,492,0.000000,0.000020,46404185,24238525,0,0,62789,0,1,1 +1773639063.294844,0.60,4,3992.50,49.64,1744.39,1943.51,0.00,3518359120308.264160,3518359120299.193848,75,0,0.000000,0.000030,46404185,24238528,0,0,62792,0,1,1 +1773639068.294550,36.29,4,3992.50,55.52,1514.21,2173.62,0.00,0.000000,0.000000,75,0,82.124444,0.034247,46412883,24241007,0,0,62794,0,1,1 +1773639073.295538,31.32,4,3992.50,55.56,1512.47,2175.29,0.00,2.121456,0.000195,258,2,119.739773,0.044062,46425089,24244480,0,0,62797,0,1,1 +1773639078.290632,28.82,4,3992.50,55.85,1503.30,2186.69,0.00,3521893218747.707520,3521893218749.885254,11,0,118.682445,0.028029,46437324,24246642,0,0,62799,0,1,1 +1773639083.295546,29.57,4,3992.50,55.75,1507.24,2182.66,0.00,1.656087,10.664712,253,492,119.447069,0.034268,46449514,24249267,0,0,62802,0,1,1 +1773639088.294669,29.38,4,3992.50,55.86,1502.74,2187.17,0.00,3519054890991.283691,3519054890982.264648,11,0,118.784864,0.018781,46461766,24250683,0,0,62804,0,1,1 +1773639093.294759,30.59,4,3992.50,56.00,1497.69,2192.37,0.00,0.000000,0.000000,11,0,119.965206,0.034377,46474036,24253214,0,0,62807,0,1,1 +1773639098.293529,29.53,4,3992.50,55.97,1505.50,2191.20,0.00,0.180318,0.000000,205,0,118.393478,0.036467,46486120,24255942,0,0,62809,0,1,1 +1773639103.292599,29.72,4,3992.50,56.01,1503.92,2192.75,0.00,1.477716,10.677179,253,492,120.187251,0.031427,46498385,24258390,0,0,62812,0,1,1 +1773639108.294562,16.22,4,3992.50,51.40,1684.41,2012.38,0.00,3517056713475.886230,3517056713466.872559,11,0,108.105381,0.035629,46509356,24261164,0,0,62814,0,1,1 +1773639113.295252,0.95,4,3992.50,50.38,1724.42,1972.36,0.00,0.000000,0.000000,11,0,0.003130,0.001578,46509415,24261206,0,0,62817,0,1,1 +1773639118.294840,0.70,4,3992.50,49.90,1743.05,1953.73,0.00,40745.491125,41374.600154,2833689,2760590,0.000000,0.000020,46509415,24261208,0,0,62819,0,1,1 +1773639123.290570,0.70,4,3992.50,49.66,1752.65,1944.13,0.00,9.734486,10.693900,2835192,2761092,0.000000,0.000030,46509415,24261211,0,0,62822,0,1,1 +1773639128.294798,0.65,4,3992.50,49.68,1751.67,1945.11,0.00,0.000000,0.030443,2835192,2761095,0.000031,0.000045,46509417,24261215,0,0,62824,0,1,1 +1773639133.290384,0.85,4,3992.50,49.87,1745.87,1952.67,0.00,3521545592054.022949,3521545591423.366699,75,0,0.000008,0.000038,46509418,24261219,0,0,62827,0,1,1 +1773639138.294714,0.70,4,3992.50,49.87,1745.87,1952.66,0.00,2.120039,0.000195,258,2,0.000050,0.000082,46509422,24261225,0,0,62829,0,1,1 +1773639143.294633,0.70,4,3992.50,49.77,1749.90,1948.64,0.00,40750.351495,41382.658293,2835192,2761166,0.000000,0.000030,46509422,24261228,0,0,62832,0,1,1 +1773639148.290453,0.65,4,3992.50,49.77,1749.90,1948.64,0.00,3521381094843.066895,3521381094212.417969,11,0,0.000000,0.000020,46509422,24261230,0,0,62834,0,1,1 +1773639153.294462,0.70,4,3992.50,49.72,1751.73,1946.82,0.00,0.053473,0.000000,75,0,0.000000,0.000673,46509422,24261237,0,0,62837,0,1,1 +1773639158.292749,0.70,4,3992.50,49.75,1750.76,1947.79,0.00,0.126801,0.000000,205,0,0.000126,0.000175,46509432,24261249,0,0,62839,0,1,1 +1773639163.294338,0.85,4,3992.50,50.07,1738.28,1960.27,0.00,3517319915328.779297,0.000000,11,0,0.000008,0.000038,46509433,24261253,0,0,62842,0,1,1 +1773639168.294754,0.65,4,3992.50,50.09,1737.54,1961.01,0.00,1.657577,10.674305,253,492,0.000000,0.000020,46509433,24261255,0,0,62844,0,1,1 +1773639173.295288,0.75,4,3992.50,50.09,1737.30,1961.25,0.00,3518061819020.430176,3518061819011.414062,11,0,0.000000,0.000030,46509433,24261258,0,0,62847,0,1,1 +1773639178.293059,34.26,4,3992.50,56.20,1498.27,2200.20,0.00,2.176361,0.000195,258,2,79.952288,0.031603,46517883,24263516,0,0,62849,0,1,1 +1773639183.290380,31.84,4,3992.50,56.26,1495.57,2202.89,0.00,40771.614126,41404.365445,2835199,2761368,122.034895,0.033137,46530392,24266033,0,0,62852,0,1,1 +1773639188.293996,30.03,4,3992.50,56.18,1499.02,2199.47,0.00,3515894788747.378418,3515894788117.596680,11,0,120.276225,0.029938,46542561,24268367,0,0,62854,0,1,1 +1773639193.293225,29.93,4,3992.50,56.40,1490.22,2208.18,0.00,0.180301,0.000000,205,0,120.584360,0.046607,46554915,24272039,0,0,62857,0,1,1 +1773639198.294644,30.71,4,3992.50,56.41,1489.89,2208.54,0.00,40730.487565,41359.880557,2833696,2760939,119.730866,0.045684,46567080,24275581,0,0,62859,0,1,1 +1773639203.293740,30.30,4,3992.50,56.28,1494.95,2203.42,0.00,0.000000,0.005958,2833696,2760948,120.186273,0.039719,46579357,24278681,0,0,62862,0,1,1 +1773639208.294546,31.32,4,3992.50,56.14,1500.57,2197.89,0.00,9.724605,10.682556,2835199,2761453,119.745953,0.035163,46591698,24281446,0,0,62864,0,1,1 +1773639213.294400,29.71,4,3992.50,56.46,1487.67,2210.70,0.00,3518539837012.569336,3518539836382.195312,11,0,118.765167,0.048579,46603674,24285237,0,0,62867,0,1,1 +1773639218.292341,14.27,4,3992.50,49.92,1744.10,1954.41,0.00,40768.811426,41399.608024,2835206,2761487,104.184553,0.046096,46614183,24288849,0,0,62869,0,1,1 +1773639223.294583,1.25,4,3992.50,50.22,1730.05,1966.21,0.00,3516860163019.927734,3516860162398.687500,253,492,0.003129,0.002221,46614242,24288895,0,0,62872,0,1,1 +1773639228.294739,0.70,4,3992.50,50.22,1730.07,1966.20,0.00,3518327134498.812500,3518327134489.795410,11,0,0.000000,0.000020,46614242,24288897,0,0,62874,0,1,1 +1773639233.294321,0.60,4,3992.50,50.23,1729.59,1966.69,0.00,40745.847307,41375.575969,2833711,2761119,0.000000,0.000030,46614242,24288900,0,0,62877,0,1,1 +1773639238.290357,0.75,4,3992.50,50.23,1729.59,1966.69,0.00,3521228574909.111816,3521228574278.882324,75,0,0.000000,0.000020,46614242,24288902,0,0,62879,0,1,1 +1773639243.294719,0.70,4,3992.50,50.23,1729.59,1966.69,0.00,3515370311938.753418,0.000000,11,0,0.000000,0.000030,46614242,24288905,0,0,62882,0,1,1 +1773639248.294455,0.85,4,3992.50,50.23,1731.57,1966.74,0.00,0.000000,0.000000,11,0,0.000000,0.000020,46614242,24288907,0,0,62884,0,1,1 +1773639253.293741,0.75,4,3992.50,50.04,1737.88,1959.27,0.00,0.053523,0.000000,75,0,0.000000,0.000030,46614242,24288910,0,0,62887,0,1,1 +1773639258.290580,0.60,4,3992.50,50.05,1737.63,1959.52,0.00,0.000000,0.000000,75,0,0.000000,0.000020,46614242,24288912,0,0,62889,0,1,1 +1773639263.290467,0.70,4,3992.50,50.05,1737.64,1959.51,0.00,1.604235,10.675437,253,492,0.000000,0.000030,46614242,24288915,0,0,62892,0,1,1 +1773639268.294125,0.75,4,3992.50,50.05,1737.64,1959.51,0.00,40720.712134,41341.955920,2835214,2761676,0.000126,0.000175,46614252,24288927,0,0,62894,0,1,1 +1773639273.295105,0.60,4,3992.50,49.95,1741.62,1955.53,0.00,3517747841522.979004,3517747840890.211914,258,2,0.000016,0.000046,46614254,24288932,0,0,62897,0,1,1 +1773639278.290374,1.10,4,3992.50,50.17,1737.39,1964.35,0.00,3521769543849.999023,3521769543851.996094,205,0,0.000000,0.000020,46614254,24288934,0,0,62899,0,1,1 +1773639283.292855,0.65,4,3992.50,50.17,1735.09,1964.36,0.00,1.994128,0.000195,258,2,0.000000,0.000030,46614254,24288937,0,0,62902,0,1,1 +1773639288.290349,32.48,4,3992.50,56.62,1482.69,2216.64,0.00,40770.471013,41403.704932,2835219,2761782,60.721224,0.026571,46620765,24290757,0,0,62904,0,1,1 +1773639293.291738,29.44,4,3992.50,56.63,1481.97,2217.36,0.00,3517460793474.455078,3517460792843.834961,75,0,120.139442,0.029790,46633318,24293016,0,0,62907,0,1,1 +1773639298.291023,28.18,4,3992.50,56.59,1483.62,2215.73,0.00,0.126776,0.000000,205,0,118.196124,0.059771,46645767,24297671,0,0,62909,0,1,1 +1773639303.294616,28.56,4,3992.50,56.99,1467.95,2231.38,0.00,0.000000,0.000000,205,0,120.083120,0.033570,46658154,24300288,0,0,62912,0,1,1 +1773639308.294343,29.13,4,3992.50,56.89,1472.10,2227.18,0.00,1.477522,10.675779,253,492,119.176133,0.031210,46670469,24302678,0,0,62914,0,1,1 +1773639313.290947,29.55,4,3992.50,56.73,1478.32,2220.96,0.00,0.518028,3520828520395.291992,258,2,119.248155,0.029678,46682654,24304989,0,0,62917,0,1,1 +1773639318.290355,28.34,4,3992.50,56.81,1475.01,2224.33,0.00,40745.170209,41377.571272,2833720,2761516,119.378735,0.025988,46694757,24306988,0,0,62919,0,1,1 +1773639323.290452,27.92,4,3992.50,56.55,1485.28,2214.03,0.00,3518368961743.714844,3518368961113.522461,75,0,118.964033,0.035248,46706746,24309729,0,0,62922,0,1,1 +1773639328.295091,18.98,4,3992.50,56.86,1473.41,2226.01,0.00,0.126640,0.000000,205,0,120.063900,0.058897,46718929,24314287,0,0,62924,0,1,1 +1773639333.291476,1.15,4,3992.50,50.39,1726.65,1972.78,0.00,3520983028197.943848,0.000000,75,0,9.424796,0.008473,46719987,24314840,0,0,62927,0,1,1 +1773639338.294871,0.95,4,3992.50,50.64,1718.04,1982.54,0.00,40714.981525,41344.936011,2833732,2761654,0.000000,0.000020,46719987,24314842,0,0,62929,0,1,1 +1773639343.292125,0.60,4,3992.50,50.67,1716.76,1983.73,0.00,3520370318950.808105,3520370318320.132812,11,0,0.001127,0.001220,46719996,24314858,0,0,62932,0,1,1 +1773639348.294760,0.70,4,3992.50,50.67,1716.76,1983.73,0.00,0.180178,0.000000,205,0,0.000000,0.000020,46719996,24314860,0,0,62934,0,1,1 +1773639353.295240,0.60,4,3992.50,50.67,1716.76,1983.73,0.00,40738.579791,41369.082004,2833732,2761688,0.000000,0.000674,46719996,24314867,0,0,62937,0,1,1 +1773639358.295236,0.65,4,3992.50,50.67,1716.52,1983.97,0.00,3518440206667.145996,3518440206045.780273,253,492,0.000000,0.000020,46719996,24314869,0,0,62939,0,1,1 +1773639363.294499,0.55,4,3992.50,50.67,1716.52,1983.97,0.00,0.000000,0.000000,253,492,0.000000,0.000030,46719996,24314872,0,0,62942,0,1,1 +1773639368.294254,0.85,4,3992.50,50.74,1713.79,1986.69,0.00,0.000000,0.000000,253,492,0.000000,0.000020,46719996,24314874,0,0,62944,0,1,1 +1773639373.291238,0.70,4,3992.50,50.73,1714.23,1986.27,0.00,3520560218647.255371,3520560218638.179199,75,0,0.000031,0.000055,46719998,24314879,0,0,62947,0,1,1 +1773639378.294678,0.65,4,3992.50,50.74,1713.98,1986.52,0.00,3516018335238.069336,0.000000,11,0,0.000165,0.000208,46720011,24314894,0,0,62949,0,1,1 +1773639383.294737,0.65,4,3992.50,50.77,1712.76,1987.73,0.00,0.180271,0.000000,205,0,0.000308,0.000584,46720018,24314908,0,0,62952,0,1,1 +1773639388.295224,0.55,4,3992.50,50.77,1712.77,1987.73,0.00,3518094389582.464355,0.000000,11,0,0.000031,0.000045,46720020,24314912,0,0,62954,0,1,1 +1773639393.292194,0.75,4,3992.50,50.74,1713.89,1986.61,0.00,2.176710,0.000195,258,2,0.002845,0.001977,46720067,24314945,0,0,62957,0,1,1 +1773639398.295317,28.42,4,3992.50,57.28,1457.73,2242.66,0.00,40724.937036,41358.052352,2835245,2762310,59.452329,0.028507,46726412,24316866,0,0,62959,0,1,1 +1773639403.290864,31.62,4,3992.50,57.06,1466.34,2234.03,0.00,3521573289728.891602,3521573289096.993164,11,0,123.679540,0.023366,46738958,24318635,0,0,62962,0,1,1 +1773639408.295262,28.70,4,3992.50,57.10,1464.75,2235.64,0.00,1.656258,10.665815,253,492,120.659365,0.019169,46751264,24320102,0,0,62964,0,1,1 +1773639413.292890,28.82,4,3992.50,57.13,1463.70,2236.66,0.00,3520106858222.299316,3520106858213.277832,11,0,121.426256,0.024087,46763646,24321922,0,0,62967,0,1,1 +1773639418.290891,28.63,4,3992.50,57.23,1459.60,2240.84,0.00,0.180346,0.000000,205,0,119.620816,0.043061,46775941,24325237,0,0,62969,0,1,1 +1773639423.294962,28.63,4,3992.50,57.22,1460.46,2240.18,0.00,3515575239548.397461,0.000000,11,0,119.673445,0.046468,46788156,24328827,0,0,62972,0,1,1 +1773639428.295560,28.37,4,3992.50,57.09,1465.11,2235.23,0.00,1.657516,10.673918,253,492,119.659085,0.045434,46800581,24332353,0,0,62974,0,1,1 +1773639433.295120,28.62,4,3992.50,57.23,1465.52,2240.70,0.00,3518746896610.910645,3518746896601.892578,11,0,119.883756,0.040572,46812974,24335487,0,0,62977,0,1,1 +1773639438.295062,17.87,4,3992.50,57.23,1465.44,2240.84,0.00,0.000000,0.000000,11,0,118.765413,0.031685,46825036,24337947,0,0,62979,0,1,1 +1773639443.290427,1.10,4,3992.50,50.66,1722.95,1983.34,0.00,1.659253,10.685098,253,492,2.610212,0.002356,46825393,24338048,0,0,62982,0,1,1 +1773639448.294592,0.65,4,3992.50,50.66,1722.71,1983.59,0.00,3515509104786.924316,3515509104777.860840,75,0,0.000000,0.000020,46825393,24338050,0,0,62984,0,1,1 +1773639453.294629,0.85,4,3992.50,50.81,1717.07,1989.23,0.00,2.121859,0.000195,258,2,0.000000,0.000030,46825393,24338053,0,0,62987,0,1,1 +1773639458.294651,0.65,4,3992.50,50.84,1715.61,1990.66,0.00,40740.616974,41373.594762,2833759,2762153,0.000000,0.000020,46825393,24338055,0,0,62989,0,1,1 +1773639463.294978,0.95,4,3992.50,50.89,1706.71,1992.57,0.00,3518206809327.540039,3518206808696.775879,11,0,0.000000,0.000030,46825393,24338058,0,0,62992,0,1,1 +1773639468.294904,0.65,4,3992.50,50.89,1706.73,1992.57,0.00,40753.299461,41385.129792,2835262,2762708,0.000000,0.000020,46825393,24338060,0,0,62994,0,1,1 +1773639473.294946,0.55,4,3992.50,50.89,1706.80,1992.50,0.00,3518407945643.126953,3518407945020.329102,253,492,0.000000,0.000030,46825393,24338063,0,0,62997,0,1,1 +1773639478.294801,0.75,4,3992.50,50.89,1706.80,1992.50,0.00,0.517691,3518538867201.183594,258,2,0.000000,0.000020,46825393,24338065,0,0,62999,0,1,1 +1773639483.294483,0.65,4,3992.50,50.89,1706.80,1992.50,0.00,40743.387129,41376.576717,2833759,2762228,0.000000,0.000030,46825393,24338068,0,0,63002,0,1,1 +1773639488.294605,0.85,4,3992.50,50.98,1703.06,1996.14,0.00,3518351761560.733398,3518351760927.599121,258,2,0.000126,0.000175,46825403,24338080,0,0,63004,0,1,1 +1773639493.294775,0.65,4,3992.50,50.98,1703.06,1996.12,0.00,3518317329254.845215,3518317329256.840332,205,0,0.000016,0.000690,46825405,24338089,0,0,63007,0,1,1 +1773639498.294380,0.65,4,3992.50,50.98,1703.06,1996.12,0.00,3518714983281.229980,0.000000,11,0,0.000000,0.000020,46825405,24338091,0,0,63009,0,1,1 +1773639503.290431,0.65,4,3992.50,50.99,1702.70,1996.48,0.00,40775.182077,41406.709769,2833759,2762268,0.000000,0.000030,46825405,24338094,0,0,63012,0,1,1 +1773639508.293934,1.05,4,3992.50,50.96,1703.96,1995.23,0.00,9.719361,10.681285,2835262,2762792,0.001482,0.001332,46825434,24338122,0,0,63014,0,1,1 +1773639513.290573,43.87,4,3992.50,57.49,1448.39,2250.75,0.00,3520804079978.700195,3520804079977.784180,2833767,2762407,104.219233,0.046910,46836309,24341642,0,0,63017,0,1,1 +1773639518.294570,28.16,4,3992.50,57.78,1441.27,2262.02,0.00,3515626820359.058594,3515626819726.313477,258,2,118.472626,0.019786,46848616,24343098,0,0,63019,0,1,1 +1773639523.292765,28.02,4,3992.50,57.42,1455.37,2247.98,0.00,3519707843826.951660,3519707843829.127441,11,0,119.809468,0.022243,46860878,24344750,0,0,63022,0,1,1 +1773639528.290795,28.22,4,3992.50,57.39,1456.32,2247.02,0.00,2.176248,0.000195,258,2,119.012160,0.019117,46873182,24346211,0,0,63024,0,1,1 +1773639533.294560,28.13,4,3992.50,57.48,1452.84,2250.51,0.00,3515790131114.458984,3515790131116.632812,11,0,119.275115,0.019721,46885437,24347731,0,0,63027,0,1,1 +1773639538.294577,27.97,4,3992.50,57.54,1450.39,2252.96,0.00,40752.605767,41384.873516,2835270,2763033,119.964973,0.023825,46897756,24349593,0,0,63029,0,1,1 +1773639543.292830,28.28,4,3992.50,57.37,1457.08,2246.25,0.00,3519666993983.199219,3519666993348.532227,258,2,118.418242,0.057542,46910077,24354063,0,0,63032,0,1,1 +1773639548.290335,28.73,4,3992.50,57.72,1452.89,2259.82,0.00,3520193666538.261230,3520193666540.257812,205,0,120.235463,0.049017,46922546,24357831,0,0,63034,0,1,1 +1773639553.294542,9.63,4,3992.50,51.27,1705.29,2007.43,0.00,3515478979023.452148,0.000000,75,0,86.046661,0.017809,46931360,24359163,0,0,63037,0,1,1 +1773639558.294436,0.95,4,3992.50,51.25,1705.99,2006.71,0.00,3518511732369.042480,0.000000,11,0,0.003130,0.001729,46931419,24359205,0,0,63039,0,1,1 +1773639563.290445,0.60,4,3992.50,51.07,1713.13,1999.58,0.00,2.177128,0.000195,258,2,0.000000,0.000674,46931419,24359212,0,0,63042,0,1,1 +1773639568.292553,0.65,4,3992.50,51.08,1712.89,1999.82,0.00,40733.563627,41367.808048,2835284,2763160,0.000000,0.000020,46931419,24359214,0,0,63044,0,1,1 +1773639573.290461,0.65,4,3992.50,51.08,1712.89,1999.82,0.00,3519910264655.687012,3519910264023.085449,11,0,0.000000,0.000030,46931419,24359217,0,0,63047,0,1,1 +1773639578.295001,0.60,4,3992.50,51.08,1712.67,2000.03,0.00,40706.225035,41337.084153,2833781,2762678,0.000000,0.000020,46931419,24359219,0,0,63049,0,1,1 +1773639583.290391,1.20,4,3992.50,51.38,1701.17,2011.57,0.00,3521684211695.450195,3521684211063.435059,11,0,0.000000,0.000030,46931419,24359222,0,0,63052,0,1,1 +1773639588.293094,0.65,4,3992.50,51.38,1700.93,2011.82,0.00,1.656819,10.669426,253,492,0.000000,0.000020,46931419,24359224,0,0,63054,0,1,1 +1773639593.294707,0.95,4,3992.50,51.39,1700.76,2011.99,0.00,40738.115130,41361.433230,2835284,2763230,0.000000,0.000030,46931419,24359227,0,0,63057,0,1,1 +1773639598.293947,0.60,4,3992.50,51.39,1700.76,2011.98,0.00,3518971925885.484863,3518971925261.871582,253,492,0.000000,0.000020,46931419,24359229,0,0,63059,0,1,1 +1773639603.294815,0.60,4,3992.50,51.38,1700.98,2011.77,0.00,3517826666142.411621,3517826666133.395996,11,0,0.000126,0.000185,46931429,24359242,0,0,63062,0,1,1 +1773639608.290378,0.90,4,3992.50,51.52,1701.96,2017.14,0.00,0.000000,0.000000,11,0,0.000016,0.000036,46931431,24359246,0,0,63064,0,1,1 +1773639613.290386,0.70,4,3992.50,51.41,1705.00,2012.80,0.00,1.657712,10.675177,253,492,0.000000,0.000030,46931431,24359249,0,0,63067,0,1,1 +1773639618.290387,0.65,4,3992.50,51.45,1703.52,2014.29,0.00,40751.289038,41374.885442,2835297,2763329,0.000000,0.000020,46931431,24359251,0,0,63069,0,1,1 +1773639623.290467,38.88,4,3992.50,57.47,1467.70,2250.08,0.00,3518380635495.530273,3518380634871.944336,253,492,98.741939,0.034547,46941842,24361677,0,0,63072,0,1,1 +1773639628.290349,31.46,4,3992.50,57.71,1458.45,2259.28,0.00,3518520720267.133789,3518520720258.116211,11,0,122.171166,0.025270,46954235,24363528,0,0,63074,0,1,1 +1773639633.291278,30.72,4,3992.50,57.97,1447.91,2269.84,0.00,40745.433120,41378.048100,2835301,2763498,120.944742,0.023887,46966614,24365309,0,0,63077,0,1,1 +1773639638.294334,29.54,4,3992.50,57.64,1460.96,2256.72,0.00,3516288013599.541992,3516288012967.196289,11,0,120.089506,0.029830,46978719,24367623,0,0,63079,0,1,1 +1773639643.290361,29.95,4,3992.50,57.78,1455.72,2262.02,0.00,0.000000,0.000000,11,0,119.456641,0.035166,46990725,24370335,0,0,63082,0,1,1 +1773639648.290369,28.44,4,3992.50,57.91,1450.68,2267.11,0.00,0.180273,0.000000,205,0,120.163964,0.032395,47002815,24372840,0,0,63084,0,1,1 +1773639653.291386,28.93,4,3992.50,57.66,1460.30,2257.49,0.00,3517722119295.218750,0.000000,75,0,119.737653,0.036130,47014847,24375663,0,0,63087,0,1,1 +1773639658.292783,28.97,4,3992.50,57.69,1459.18,2258.59,0.00,0.000000,0.000000,75,0,119.330122,0.025787,47026929,24377677,0,0,63089,0,1,1 +1773639663.291788,9.56,4,3992.50,52.22,1673.23,2044.61,0.00,3519137999466.946777,0.000000,11,0,84.735847,0.022348,47035640,24379362,0,0,63092,0,1,1 +1773639668.290445,1.20,4,3992.50,51.95,1682.52,2033.82,0.00,2.175975,0.000195,258,2,0.002925,0.001173,47035695,24379399,0,0,63094,0,1,1 +1773639673.292895,0.65,4,3992.50,51.51,1699.58,2016.75,0.00,40721.299210,41355.251009,2833814,2763223,0.000031,0.000055,47035697,24379404,0,0,63097,0,1,1 +1773639678.290365,1.45,4,3992.50,51.52,1699.34,2017.00,0.00,3520218190853.130371,3520218190229.745117,253,492,0.000031,0.000045,47035699,24379408,0,0,63099,0,1,1 +1773639683.290479,0.70,4,3992.50,51.50,1700.05,2016.29,0.00,3518356874942.687988,3518356874933.670898,11,0,0.001229,0.001254,47035708,24379425,0,0,63102,0,1,1 +1773639688.294673,0.60,4,3992.50,51.57,1697.38,2018.95,0.00,0.000000,0.000000,11,0,0.000031,0.000528,47035710,24379432,0,0,63104,0,1,1 +1773639693.290412,0.70,4,3992.50,51.57,1697.38,2018.95,0.00,0.000000,0.000000,11,0,0.002175,0.001200,47035754,24379462,0,0,63107,0,1,1 +1773639698.294637,0.85,4,3992.50,51.52,1686.63,2017.01,0.00,40718.745314,41351.418234,2835317,2763786,0.000008,0.000028,47035755,24379465,0,0,63109,0,1,1 +1773639703.295002,0.70,4,3992.50,51.52,1686.45,2017.14,0.00,3518180272719.099609,3518180272094.955078,253,492,0.000000,0.000030,47035755,24379468,0,0,63112,0,1,1 +1773639708.294601,0.60,4,3992.50,51.52,1686.45,2017.14,0.00,3518719030126.283203,3518719030117.084961,205,0,0.000000,0.000020,47035755,24379470,0,0,63114,0,1,1 +1773639713.294915,0.65,4,3992.50,51.54,1685.79,2017.80,0.00,3518216746163.411621,0.000000,11,0,0.000076,0.000123,47035761,24379479,0,0,63117,0,1,1 +1773639718.295243,0.65,4,3992.50,51.54,1685.79,2017.80,0.00,40750.476929,41383.674912,2835317,2763819,0.000000,0.000020,47035761,24379481,0,0,63119,0,1,1 +1773639723.294987,0.55,4,3992.50,51.54,1685.79,2017.80,0.00,3518617079243.650391,3518617078610.378418,11,0,0.000000,0.000030,47035761,24379484,0,0,63122,0,1,1 +1773639728.294595,0.85,4,3992.50,51.53,1686.64,2017.37,0.00,0.053520,0.000000,75,0,0.000031,0.000045,47035763,24379488,0,0,63124,0,1,1 +1773639733.292293,36.64,4,3992.50,57.39,1457.09,2246.88,0.00,1.604938,10.680112,253,492,86.116850,0.056032,47045035,24383531,0,0,63127,0,1,1 +1773639738.295115,31.46,4,3992.50,57.51,1452.40,2251.52,0.00,3516452418346.345215,3516452418337.333496,11,0,122.060824,0.030351,47057282,24385813,0,0,63129,0,1,1 +1773639743.295038,30.18,4,3992.50,57.57,1449.66,2254.18,0.00,0.000000,0.000000,11,0,120.871967,0.025778,47069013,24387801,0,0,63132,0,1,1 +1773639748.294652,28.74,4,3992.50,57.65,1446.85,2257.04,0.00,2.175559,0.000195,258,2,119.465302,0.028121,47080492,24390001,0,0,63134,0,1,1 +1773639753.293197,28.93,4,3992.50,57.73,1443.64,2260.33,0.00,3519461479163.090332,3519461479165.266113,11,0,118.735597,0.032165,47091815,24392522,0,0,63137,0,1,1 +1773639758.290270,29.21,4,3992.50,57.72,1444.23,2259.75,0.00,40767.288682,41400.173858,2833816,2763474,119.956511,0.029978,47102871,24394826,0,0,63139,0,1,1 +1773639763.294650,29.69,4,3992.50,58.45,1424.05,2288.48,0.00,3515357578505.307617,3515357577873.166504,205,0,119.932609,0.030890,47113951,24397171,0,0,63142,0,1,1 +1773639768.294597,29.26,4,3992.50,58.06,1439.35,2273.23,0.00,3518474639119.925293,0.000000,11,0,118.482427,0.028406,47124760,24399397,0,0,63144,0,1,1 +1773639773.295187,12.29,4,3992.50,53.54,1616.24,2096.38,0.00,0.053509,0.000000,75,0,99.709783,0.023797,47133841,24401286,0,0,63147,0,1,1 +1773639778.293559,0.90,4,3992.50,52.41,1660.78,2051.79,0.00,3519583587235.596191,0.000000,11,0,0.003257,0.001695,47133910,24401337,0,0,63149,0,1,1 +1773639783.292993,0.75,4,3992.50,51.84,1683.06,2029.55,0.00,2.175637,0.000195,258,2,0.000000,0.000030,47133910,24401340,0,0,63152,0,1,1 +1773639788.294967,1.30,4,3992.50,51.43,1694.17,2013.42,0.00,3517048633062.469238,3517048633064.644043,11,0,0.000000,0.000020,47133910,24401342,0,0,63154,0,1,1 +1773639793.291009,0.55,4,3992.50,51.23,1701.44,2005.77,0.00,40785.643966,41419.816347,2835337,2764184,0.000000,0.000030,47133910,24401345,0,0,63157,0,1,1 +1773639798.292666,0.65,4,3992.50,51.24,1701.20,2006.02,0.00,3517271718035.705566,3517271717402.244629,11,0,0.000000,0.000020,47133910,24401347,0,0,63159,0,1,1 +1773639803.295197,0.60,4,3992.50,51.24,1701.20,2006.02,0.00,40732.736397,41366.119700,2835337,2764218,0.000000,0.000030,47133910,24401350,0,0,63162,0,1,1 +1773639808.292014,0.60,4,3992.50,51.24,1701.20,2006.02,0.00,3520679132376.521973,3520679131742.414062,11,0,0.000000,0.000020,47133910,24401352,0,0,63164,0,1,1 +1773639813.290417,0.60,4,3992.50,51.24,1701.20,2006.02,0.00,0.000000,0.000000,11,0,0.000000,0.000030,47133910,24401355,0,0,63167,0,1,1 +1773639818.294573,0.95,4,3992.50,51.24,1701.84,2006.21,0.00,40709.795335,41342.182274,2833834,2763786,0.000000,0.000020,47133910,24401357,0,0,63169,0,1,1 +1773639823.295003,0.60,4,3992.50,51.24,1701.85,2006.21,0.00,3518134307436.829590,3518134306803.971680,11,0,0.000126,0.000185,47133920,24401370,0,0,63172,0,1,1 +1773639828.295046,0.65,4,3992.50,51.25,1701.61,2006.46,0.00,0.000000,0.000000,11,0,0.000016,0.000680,47133922,24401378,0,0,63174,0,1,1 +1773639833.294939,0.70,4,3992.50,51.25,1701.61,2006.46,0.00,40754.235239,41388.133315,2835337,2764304,0.000000,0.000030,47133922,24401381,0,0,63177,0,1,1 +1773639838.294742,0.70,4,3992.50,51.25,1701.60,2006.47,0.00,3518575684602.710449,3518575683968.620605,205,0,0.000000,0.000020,47133922,24401383,0,0,63179,0,1,1 +1773639843.291300,18.68,4,3992.50,57.25,1466.52,2241.42,0.00,1.996491,0.000195,258,2,26.461113,0.018475,47136930,24402655,0,0,63182,0,1,1 +1773639848.290768,33.11,4,3992.50,57.32,1463.59,2244.38,0.00,3518811736424.898438,10.676136,253,492,118.177743,0.024610,47149098,24404495,0,0,63184,0,1,1 +1773639853.294687,29.14,4,3992.50,57.48,1457.54,2250.45,0.00,3515681646435.708984,3515681646426.645508,75,0,119.077079,0.032973,47161486,24407053,0,0,63187,0,1,1 +1773639858.294909,29.92,4,3992.50,57.26,1466.20,2241.88,0.00,0.126752,0.000000,205,0,119.166602,0.041554,47173895,24410329,0,0,63189,0,1,1 +1773639863.294791,28.74,4,3992.50,57.49,1456.84,2250.76,0.00,0.000000,0.000000,205,0,119.371472,0.026099,47186254,24412326,0,0,63192,0,1,1 +1773639868.293311,29.23,4,3992.50,57.38,1460.91,2246.66,0.00,40765.330084,41399.811805,2835343,2764558,119.009415,0.046145,47198632,24415914,0,0,63194,0,1,1 +1773639873.293536,28.91,4,3992.50,57.57,1453.45,2254.15,0.00,3518279117180.628906,3518279116546.543457,11,0,119.371401,0.049338,47211077,24419743,0,0,63197,0,1,1 +1773639878.292820,29.22,4,3992.50,57.81,1444.18,2263.49,0.00,0.000000,0.000000,11,0,118.991744,0.055654,47223391,24424094,0,0,63199,0,1,1 +1773639883.295309,29.43,4,3992.50,57.60,1448.29,2255.23,0.00,0.053489,0.000000,75,0,119.915058,0.054694,47235700,24428373,0,0,63202,0,1,1 +1773639888.290376,2.31,4,3992.50,52.48,1648.80,2054.70,0.00,0.126883,0.000000,205,0,45.914157,0.018580,47240511,24429784,0,0,63204,0,1,1 +1773639893.294875,0.80,4,3992.50,51.83,1674.46,2029.07,0.00,1.993324,0.000195,258,2,0.000854,0.000598,47240529,24429800,0,0,63207,0,1,1 +1773639898.290601,0.65,4,3992.50,51.46,1688.95,2014.59,0.00,40786.283709,41423.403746,2835358,2764694,0.000000,0.000020,47240529,24429802,0,0,63209,0,1,1 +1773639903.293924,0.70,4,3992.50,51.40,1691.14,2012.39,0.00,3516100185812.126953,3516100185178.147949,11,0,0.000000,0.000030,47240529,24429805,0,0,63212,0,1,1 +1773639908.295008,1.05,4,3992.50,51.37,1691.83,2011.38,0.00,2.174919,0.000195,258,2,0.000000,0.000020,47240529,24429807,0,0,63214,0,1,1 +1773639913.295256,0.65,4,3992.50,51.32,1693.89,2009.32,0.00,3518262590473.791992,10.674470,253,492,0.000000,0.000030,47240529,24429810,0,0,63217,0,1,1 +1773639918.294393,0.70,4,3992.50,51.32,1693.89,2009.32,0.00,3519044657924.686035,3519044657915.666992,11,0,0.000000,0.000020,47240529,24429812,0,0,63219,0,1,1 +1773639923.290404,0.70,4,3992.50,51.32,1693.89,2009.32,0.00,0.053558,0.000000,75,0,0.000000,0.000030,47240529,24429815,0,0,63222,0,1,1 +1773639928.290653,0.70,4,3992.50,51.30,1694.75,2008.46,0.00,2.121769,0.000195,258,2,0.000308,0.000574,47240536,24429828,0,0,63224,0,1,1 +1773639933.294678,0.60,4,3992.50,51.31,1694.44,2008.77,0.00,0.000000,0.000000,258,2,0.000288,0.000663,47240550,24429849,0,0,63227,0,1,1 +1773639938.292479,0.75,4,3992.50,51.26,1696.39,2006.84,0.00,3519985466746.263184,10.679697,253,492,0.000050,0.000082,47240554,24429855,0,0,63229,0,1,1 +1773639943.293083,0.60,4,3992.50,51.22,1697.94,2005.29,0.00,40737.290046,41361.883284,2833855,2764377,0.000205,0.001206,47240561,24429873,0,0,63232,0,1,1 +1773639948.294949,0.75,4,3992.50,51.22,1697.94,2005.29,0.00,3517123978855.923340,3517123978222.473633,11,0,0.000000,0.000020,47240561,24429875,0,0,63234,0,1,1 +1773639953.291053,13.20,4,3992.50,57.70,1444.19,2258.96,0.00,40785.406985,41420.539501,2835361,2764925,23.456193,0.017030,47243204,24430985,0,0,63237,0,1,1 +1773639958.294446,35.55,4,3992.50,57.45,1454.06,2249.12,0.00,3516050814554.503906,3516050814553.638184,2833858,2764525,120.684544,0.036263,47255521,24433765,0,0,63239,0,1,1 +1773639963.292903,29.93,4,3992.50,57.67,1445.30,2257.87,0.00,0.000000,0.004005,2833858,2764538,121.206745,0.025148,47268015,24435700,0,0,63242,0,1,1 +1773639968.292723,29.37,4,3992.50,57.67,1445.18,2257.91,0.00,3518563744247.729980,3518563743613.931641,11,0,119.967904,0.035639,47280198,24438480,0,0,63244,0,1,1 +1773639973.293535,40.64,4,3992.50,57.42,1455.04,2248.11,0.00,0.000000,0.000000,11,0,119.541491,0.042559,47292252,24441853,0,0,63247,0,1,1 +1773639978.290501,31.71,4,3992.50,57.51,1456.22,2251.69,0.00,0.180383,0.000000,205,0,119.434181,0.044393,47304304,24445284,0,0,63249,0,1,1 +1773639983.294559,29.61,4,3992.50,57.49,1456.88,2250.95,0.00,0.000000,0.000000,205,0,120.067435,0.042304,47316537,24448557,0,0,63252,0,1,1 +1773639988.292419,29.42,4,3992.50,57.41,1460.08,2247.75,0.00,0.000000,0.000000,205,0,119.413142,0.043746,47328592,24452000,0,0,63254,0,1,1 +1773639993.290356,28.96,4,3992.50,57.86,1442.79,2265.17,0.00,3519889069495.136719,0.000000,11,0,119.013376,0.045570,47340686,24455465,0,0,63257,0,1,1 +1773639998.294329,1.55,4,3992.50,51.97,1673.04,2034.90,0.00,2.173664,0.000195,258,2,42.626404,0.017271,47345063,24456760,0,0,63259,0,1,1 +1773640003.290472,0.85,4,3992.50,51.96,1671.50,2034.38,0.00,0.000000,0.000000,258,2,0.001705,0.000849,47345095,24456784,0,0,63262,0,1,1 +1773640008.294829,0.65,4,3992.50,51.95,1671.95,2033.93,0.00,3515373801767.426758,3515373801769.600586,11,0,0.000000,0.000341,47345095,24456788,0,0,63264,0,1,1 +1773640013.294713,0.80,4,3992.50,51.93,1672.55,2033.33,0.00,1.657753,10.675442,253,492,0.000000,0.000352,47345095,24456793,0,0,63267,0,1,1 +1773640018.290927,0.65,4,3992.50,51.93,1672.57,2033.30,0.00,3521103380614.916016,3521103380605.892090,11,0,0.000000,0.000020,47345095,24456795,0,0,63269,0,1,1 +1773640023.295109,0.65,4,3992.50,51.94,1672.36,2033.52,0.00,0.000000,0.000000,11,0,0.000000,0.000030,47345095,24456798,0,0,63272,0,1,1 +1773640028.290576,0.90,4,3992.50,52.03,1668.65,2037.13,0.00,0.000000,0.000000,11,0,0.000031,0.000045,47345097,24456802,0,0,63274,0,1,1 +1773640033.294670,0.65,4,3992.50,52.04,1668.41,2037.38,0.00,0.000000,0.000000,11,0,0.000016,0.000046,47345099,24456807,0,0,63277,0,1,1 +1773640038.294861,0.60,4,3992.50,52.04,1668.17,2037.62,0.00,40752.199965,41387.504907,2835372,2765371,0.000050,0.000082,47345103,24456813,0,0,63279,0,1,1 +1773640043.295283,2.51,4,3992.50,52.35,1656.21,2049.50,0.00,3.651644,3518139728346.045898,2834639,2764884,0.000076,0.000123,47345109,24456822,0,0,63282,0,1,1 +1773640048.294538,24.37,4,3992.50,54.79,1559.35,2145.00,0.00,3518961355426.641113,3518961354803.351562,258,2,0.000050,0.000082,47345113,24456828,0,0,63284,0,1,1 +1773640053.295260,7.57,4,3992.50,54.08,1585.31,2117.50,0.00,40802.813438,41422.080071,2837359,2765376,0.000000,0.000030,47345113,24456831,0,0,63287,0,1,1 +1773640058.294410,0.70,4,3992.50,52.97,1628.89,2073.93,0.00,3519035099994.691895,3519035099377.406250,11,0,0.000000,0.000020,47345113,24456833,0,0,63289,0,1,1 +1773640063.290932,15.72,4,3992.50,58.22,1432.74,2279.51,0.00,2.176905,0.000195,258,2,14.637718,0.014884,47346864,24457699,0,0,63292,0,1,1 +1773640068.292391,36.14,4,3992.50,58.22,1433.38,2279.48,0.00,40806.567749,41437.685138,2838870,2766062,118.531747,0.027363,47359177,24459741,0,0,63294,0,1,1 +1773640073.291811,29.95,4,3992.50,57.98,1442.88,2269.91,0.00,3518845644110.206055,3518845643480.953613,75,0,119.783058,0.034603,47371500,24462428,0,0,63297,0,1,1 +1773640078.290408,30.94,4,3992.50,58.09,1438.55,2274.21,0.00,0.126793,0.000000,205,0,118.201891,0.030402,47383842,24464801,0,0,63299,0,1,1 +1773640083.290647,30.45,4,3992.50,57.97,1443.07,2269.70,0.00,1.477371,10.674685,253,492,120.175683,0.060893,47396566,24469566,0,0,63302,0,1,1 +1773640088.291443,29.86,4,3992.50,58.30,1430.32,2282.50,0.00,3517877375986.654297,3517877375977.638184,11,0,118.534106,0.045807,47408609,24473169,0,0,63304,0,1,1 +1773640093.294544,29.76,4,3992.50,58.04,1440.45,2272.39,0.00,2.174042,0.000195,258,2,119.701762,0.020124,47420397,24474736,0,0,63307,0,1,1 +1773640098.294536,29.66,4,3992.50,58.22,1433.24,2279.56,0.00,3518442775761.184570,3518442775763.359863,11,0,119.371253,0.040221,47432478,24477864,0,0,63309,0,1,1 +1773640103.291228,29.60,4,3992.50,57.95,1443.93,2268.91,0.00,0.000000,0.000000,11,0,119.059386,0.068308,47444901,24483222,0,0,63312,0,1,1 +1773640108.295127,3.16,4,3992.50,52.63,1652.12,2060.76,0.00,0.053474,0.000000,75,0,57.443235,0.039436,47450881,24486311,0,0,63314,0,1,1 +1773640113.294723,1.05,4,3992.50,51.81,1684.55,2028.33,0.00,3518721481465.424316,0.000000,11,0,0.003891,0.001783,47450959,24486367,0,0,63317,0,1,1 +1773640118.295303,1.25,4,3992.50,52.10,1671.42,2039.76,0.00,0.000000,0.000000,11,0,0.000000,0.000020,47450959,24486369,0,0,63319,0,1,1 +1773640123.294772,0.70,4,3992.50,52.09,1671.21,2039.59,0.00,0.180293,0.000000,205,0,0.000000,0.000030,47450959,24486372,0,0,63322,0,1,1 +1773640128.295225,0.65,4,3992.50,52.09,1671.22,2039.59,0.00,40816.955616,41446.685863,2838883,2766443,0.000000,0.000020,47450959,24486374,0,0,63324,0,1,1 +1773640133.290384,0.65,4,3992.50,51.91,1678.61,2032.20,0.00,3521846693203.358398,3521846692573.141113,11,0,0.000000,0.000674,47450959,24486381,0,0,63327,0,1,1 +1773640138.290446,0.70,4,3992.50,51.92,1678.12,2032.69,0.00,0.180271,0.000000,205,0,0.000000,0.000020,47450959,24486383,0,0,63329,0,1,1 +1773640143.294537,0.60,4,3992.50,51.92,1678.12,2032.68,0.00,3515561145184.891113,0.000000,75,0,0.000000,0.000030,47450959,24486386,0,0,63332,0,1,1 +1773640148.294363,0.85,4,3992.50,51.92,1674.51,2032.89,0.00,2.121949,0.000195,258,2,0.000000,0.000020,47450959,24486388,0,0,63334,0,1,1 +1773640153.295202,0.65,4,3992.50,51.95,1673.58,2033.83,0.00,3517847004915.710449,10.673209,253,492,0.000000,0.000030,47450959,24486391,0,0,63337,0,1,1 +1773640158.294068,0.70,4,3992.50,51.95,1673.58,2033.82,0.00,3519235777675.728027,3519235777666.708496,11,0,0.000126,0.000175,47450969,24486403,0,0,63339,0,1,1 +1773640163.295022,0.70,4,3992.50,51.95,1673.59,2033.82,0.00,2.174976,0.000195,258,2,0.000016,0.000046,47450971,24486408,0,0,63342,0,1,1 +1773640168.290812,0.65,4,3992.50,51.95,1673.59,2033.82,0.00,40843.311445,41474.846344,2837380,2766010,0.000000,0.000020,47450971,24486410,0,0,63344,0,1,1 +1773640173.294394,0.90,4,3992.50,51.75,1681.21,2026.20,0.00,3515918787872.272949,3515918787243.895020,11,0,0.001395,0.000732,47450995,24486429,0,0,63347,0,1,1 +1773640178.294907,41.00,4,3992.50,57.86,1441.78,2265.52,0.00,40806.913609,41435.798554,2837382,2766139,101.136124,0.049918,47461702,24490163,0,0,63349,0,1,1 +1773640183.293712,29.16,4,3992.50,58.25,1426.59,2280.58,0.00,3519278193914.846191,3519278193294.766113,253,492,118.593080,0.027091,47473915,24492229,0,0,63352,0,1,1 +1773640188.293599,29.34,4,3992.50,58.23,1427.39,2279.93,0.00,40820.097177,41441.065846,2838885,2766707,119.766981,0.021604,47486178,24493908,0,0,63354,0,1,1 +1773640193.294053,28.95,4,3992.50,58.04,1434.92,2272.39,0.00,3518117286766.242188,3518117286136.273438,75,0,118.751801,0.029939,47498265,24496212,0,0,63357,0,1,1 +1773640198.291241,29.70,4,3992.50,58.57,1414.21,2293.04,0.00,40843.749516,41474.137590,2838885,2766726,119.630873,0.022899,47510484,24497981,0,0,63359,0,1,1 +1773640203.291989,29.24,4,3992.50,57.95,1438.46,2268.86,0.00,3517910613533.976074,3517910612904.090332,11,0,118.743974,0.028880,47522602,24500250,0,0,63362,0,1,1 +1773640208.291009,29.00,4,3992.50,57.92,1439.34,2267.88,0.00,0.000000,0.000000,11,0,119.588979,0.025953,47534827,24502229,0,0,63364,0,1,1 +1773640213.293324,29.35,4,3992.50,58.05,1444.77,2272.65,0.00,40801.947496,41431.847382,2838895,2766804,119.307890,0.028172,47547010,24504431,0,0,63367,0,1,1 +1773640218.290375,11.05,4,3992.50,53.51,1622.36,2095.08,0.00,3520513598667.473145,3520513598036.909668,11,0,89.975303,0.026125,47556108,24506458,0,0,63369,0,1,1 +1773640223.290448,0.90,4,3992.50,52.63,1656.82,2060.63,0.00,40820.387939,41450.584094,2838908,2766846,0.002924,0.001183,47556163,24506496,0,0,63372,0,1,1 +1773640228.294921,0.70,4,3992.50,52.16,1675.45,2042.00,0.00,3515292593304.444824,3515292592674.749023,75,0,0.000307,0.000574,47556170,24506509,0,0,63374,0,1,1 +1773640233.294708,0.70,4,3992.50,52.08,1678.56,2038.89,0.00,0.000000,0.000000,75,0,0.000205,0.000562,47556177,24506523,0,0,63377,0,1,1 +1773640238.291987,1.00,4,3992.50,52.27,1675.94,2046.42,0.00,1.605073,10.681007,253,492,0.000000,0.000020,47556177,24506525,0,0,63379,0,1,1 +1773640243.294408,0.65,4,3992.50,52.24,1677.25,2045.14,0.00,3516734554416.545410,3516734554407.479004,75,0,0.001139,0.001231,47556187,24506542,0,0,63382,0,1,1 +1773640248.290640,0.65,4,3992.50,52.25,1676.50,2045.89,0.00,1.605409,10.683246,253,492,0.000000,0.000020,47556187,24506544,0,0,63384,0,1,1 +1773640253.294490,0.50,4,3992.50,52.26,1676.28,2046.12,0.00,0.517277,3515729862028.008789,258,2,0.000000,0.000030,47556187,24506547,0,0,63387,0,1,1 +1773640258.290693,0.80,4,3992.50,52.25,1676.80,2045.60,0.00,3521111233709.239746,3521111233711.416992,11,0,0.000000,0.000020,47556187,24506549,0,0,63389,0,1,1 +1773640263.294763,0.60,4,3992.50,52.25,1676.79,2045.60,0.00,0.053472,0.000000,75,0,0.000025,0.000061,47556189,24506554,0,0,63392,0,1,1 +1773640268.290449,0.95,4,3992.50,52.34,1667.94,2049.25,0.00,2.123707,0.000195,258,2,0.000109,0.000797,47556198,24506569,0,0,63394,0,1,1 +1773640273.290473,0.70,4,3992.50,52.12,1676.46,2040.73,0.00,3518420773633.960449,3518420773636.082520,75,0,0.000031,0.000055,47556200,24506574,0,0,63397,0,1,1 +1773640278.294546,0.60,4,3992.50,52.13,1676.00,2041.20,0.00,40777.988030,41407.088563,2837405,2766520,0.000031,0.000045,47556202,24506578,0,0,63399,0,1,1 +1773640283.294752,0.95,4,3992.50,51.93,1684.20,2032.99,0.00,3518292294646.646484,3518292294016.933105,205,0,0.001666,0.000975,47556230,24506607,0,0,63402,0,1,1 +1773640288.292857,38.96,4,3992.50,58.29,1435.02,2282.07,0.00,40826.581448,41456.554889,2837409,2766575,88.967236,0.034326,47565882,24509090,0,0,63404,0,1,1 +1773640293.294293,30.10,4,3992.50,58.18,1439.29,2277.82,0.00,3517426908192.020020,3517426907562.645996,11,0,120.149399,0.065461,47578446,24514041,0,0,63407,0,1,1 +1773640298.294764,29.02,4,3992.50,58.03,1442.24,2272.05,0.00,1.657559,10.674190,253,492,118.776697,0.090190,47590940,24521093,0,0,63409,0,1,1 +1773640303.293535,29.19,4,3992.50,58.03,1442.27,2272.05,0.00,0.517803,3519302537795.960449,258,2,119.627186,0.108810,47603778,24529591,0,0,63412,0,1,1 +1773640308.293611,29.23,4,3992.50,57.99,1443.96,2270.34,0.00,3518383613343.622559,3518383613345.617676,205,0,119.194214,0.109144,47616566,24538129,0,0,63414,0,1,1 +1773640313.290345,30.08,4,3992.50,57.90,1447.36,2266.88,0.00,0.000000,0.000000,205,0,119.275464,0.104511,47629469,24546288,0,0,63417,0,1,1 +1773640318.294724,29.00,4,3992.50,57.98,1444.55,2269.88,0.00,3515358670087.420410,0.000000,11,0,119.691174,0.106853,47642309,24554662,0,0,63419,0,1,1 +1773640323.295194,30.01,4,3992.50,58.27,1433.09,2281.21,0.00,0.053511,0.000000,75,0,118.584490,0.109702,47655088,24563253,0,0,63422,0,1,1 +1773640328.294557,13.76,4,3992.50,53.39,1624.04,2090.32,0.00,1.604404,10.676555,253,492,101.376485,0.087553,47665893,24570105,0,0,63424,0,1,1 +1773640333.295182,1.25,4,3992.50,52.53,1646.08,2056.55,0.00,40804.648679,41425.631989,2837423,2766880,0.002924,0.001182,47665948,24570143,0,0,63427,0,1,1 +1773640338.294912,0.75,4,3992.50,52.04,1665.04,2037.59,0.00,3518626653154.324707,3518626652524.212402,11,0,0.000050,0.000726,47665952,24570153,0,0,63429,0,1,1 +1773640343.290369,0.60,4,3992.50,51.89,1670.86,2031.77,0.00,40858.255184,41489.937987,2838926,2767428,0.000000,0.000030,47665952,24570156,0,0,63432,0,1,1 +1773640348.290380,0.70,4,3992.50,51.90,1670.70,2031.93,0.00,0.000000,0.006250,2838926,2767433,0.000000,0.000020,47665952,24570158,0,0,63434,0,1,1 +1773640353.291779,0.65,4,3992.50,51.81,1674.14,2028.48,0.00,0.000000,0.031241,2838926,2767443,0.000000,0.000030,47665952,24570161,0,0,63437,0,1,1 +1773640358.290385,0.80,4,3992.50,51.80,1670.69,2027.90,0.00,3519418188284.966309,3519418187653.644043,11,0,0.000000,0.000020,47665952,24570163,0,0,63439,0,1,1 +1773640363.290392,0.70,4,3992.50,51.79,1670.62,2027.82,0.00,1.657713,10.675181,253,492,0.000000,0.000030,47665952,24570166,0,0,63442,0,1,1 +1773640368.290498,0.75,4,3992.50,51.61,1677.79,2020.66,0.00,3518362058778.983887,3518362058769.966797,11,0,0.000000,0.000020,47665952,24570168,0,0,63444,0,1,1 +1773640373.294958,0.65,4,3992.50,51.61,1677.79,2020.66,0.00,40775.035761,41404.754812,2837423,2767024,0.000025,0.000061,47665954,24570173,0,0,63447,0,1,1 +1773640378.294617,0.70,4,3992.50,51.43,1684.96,2013.48,0.00,3518677063732.915039,3518677063102.591309,11,0,0.000117,0.000160,47665964,24570185,0,0,63449,0,1,1 +1773640383.294848,0.65,4,3992.50,51.43,1684.75,2013.70,0.00,0.180265,0.000000,205,0,0.000000,0.000043,47665964,24570189,0,0,63452,0,1,1 +1773640388.290354,0.95,4,3992.50,52.02,1666.48,2036.79,0.00,40847.935359,41479.036978,2837423,2767086,0.000000,0.000020,47665964,24570191,0,0,63454,0,1,1 +1773640393.294487,0.70,4,3992.50,51.69,1674.54,2023.94,0.00,9.718137,10.672036,2838926,2767586,0.000000,0.000030,47665964,24570194,0,0,63457,0,1,1 +1773640398.295239,37.16,4,3992.50,57.71,1439.04,2259.37,0.00,3517908757764.443359,3517908757142.246094,253,492,75.702262,0.041661,47674076,24573131,0,0,63459,0,1,1 +1773640403.294166,29.86,4,3992.50,57.62,1442.26,2256.11,0.00,0.000000,0.000000,253,492,119.591025,0.034649,47686330,24575759,0,0,63462,0,1,1 +1773640408.290847,29.40,4,3992.50,57.72,1438.39,2259.98,0.00,0.518020,3520774468666.154785,258,2,118.842133,0.025563,47698521,24577760,0,0,63464,0,1,1 +1773640413.290381,29.30,4,3992.50,57.82,1434.63,2263.69,0.00,3518765017030.010742,3518765017032.186523,11,0,119.573293,0.034153,47710653,24580472,0,0,63467,0,1,1 +1773640418.290622,28.98,4,3992.50,57.91,1430.98,2267.39,0.00,0.000000,0.000000,11,0,118.759425,0.032400,47722818,24583010,0,0,63469,0,1,1 +1773640423.291492,21.96,4,3992.50,58.57,1405.25,2293.21,0.00,40814.052137,41445.335546,2838931,2767706,85.386204,0.038485,47731624,24586051,0,0,63472,0,1,1 +1773640428.290390,25.01,4,3992.50,59.27,1377.88,2320.59,0.00,3519212731462.138184,3519212730828.429688,258,2,96.240993,0.022292,47740378,24587816,0,0,63474,0,1,1 +1773640433.295373,28.66,4,3992.50,58.77,1397.62,2300.79,0.00,3514934066715.296387,3514934066717.289551,205,0,115.583502,0.025998,47750828,24589856,0,0,63477,0,1,1 +1773640438.294969,25.45,4,3992.50,58.55,1406.23,2292.27,0.00,40824.272845,41456.162673,2838931,2767837,112.171608,0.024351,47760894,24591788,0,0,63479,0,1,1 +1773640443.294646,3.16,4,3992.50,52.72,1634.23,2064.25,0.00,3518664185237.948730,3518664184606.249512,11,0,63.536623,0.015203,47766733,24592989,0,0,63482,0,1,1 +1773640448.293185,0.60,4,3992.50,51.86,1667.90,2030.58,0.00,0.180326,0.000000,205,0,0.000151,0.000177,47766745,24593003,0,0,63484,0,1,1 +1773640453.291435,1.40,4,3992.50,51.81,1670.07,2028.38,0.00,1.995816,0.000195,258,2,0.003125,0.001601,47766804,24593047,0,0,63487,0,1,1 +1773640458.290369,0.75,4,3992.50,51.72,1673.53,2024.95,0.00,3519188003007.204102,3519188003009.326172,75,0,0.000000,0.000020,47766804,24593049,0,0,63489,0,1,1 +1773640463.294560,0.80,4,3992.50,51.64,1676.50,2021.97,0.00,3515490068094.360840,0.000000,11,0,0.000000,0.000030,47766804,24593052,0,0,63492,0,1,1 +1773640468.290358,0.65,4,3992.50,51.65,1676.29,2022.18,0.00,2.177220,0.000195,258,2,0.000000,0.000664,47766804,24593058,0,0,63494,0,1,1 +1773640473.293688,0.65,4,3992.50,51.65,1676.27,2022.21,0.00,3516096102084.196777,3516096102086.370605,11,0,0.000000,0.000030,47766804,24593061,0,0,63497,0,1,1 +1773640478.294456,1.00,4,3992.50,51.81,1670.02,2028.51,0.00,0.000000,0.000000,11,0,0.000000,0.000020,47766804,24593063,0,0,63499,0,1,1 +1773640483.290977,0.90,4,3992.50,51.82,1669.71,2028.75,0.00,2.176905,0.000195,258,2,0.000000,0.000030,47766804,24593066,0,0,63502,0,1,1 +1773640488.292223,0.55,4,3992.50,51.84,1668.97,2029.49,0.00,3517560696775.173340,3517560696777.167969,205,0,0.000000,0.000020,47766804,24593068,0,0,63504,0,1,1 +1773640493.292046,0.70,4,3992.50,51.84,1668.97,2029.49,0.00,1.477494,10.675573,253,492,0.000000,0.000030,47766804,24593071,0,0,63507,0,1,1 +1773640498.291501,0.70,4,3992.50,51.85,1668.52,2029.94,0.00,40824.090955,41447.258977,2838943,2768088,0.000126,0.000175,47766814,24593083,0,0,63509,0,1,1 +1773640503.292107,0.70,4,3992.50,51.87,1667.62,2030.84,0.00,3518010662039.342773,3518010661407.248047,75,0,0.000016,0.000046,47766816,24593088,0,0,63512,0,1,1 +1773640508.293555,0.95,4,3992.50,51.87,1668.18,2030.79,0.00,40809.445929,41441.491041,2838944,2768148,0.000000,0.000020,47766816,24593090,0,0,63514,0,1,1 +1773640513.290486,0.55,4,3992.50,51.62,1677.30,2021.14,0.00,3520598061159.331543,3520598060526.768555,11,0,0.000000,0.000030,47766816,24593093,0,0,63517,0,1,1 +1773640518.294990,32.55,4,3992.50,58.33,1414.80,2283.74,0.00,40784.601525,41416.214270,2838947,2768209,76.970845,0.031743,47775151,24595374,0,0,63519,0,1,1 +1773640523.290294,34.56,4,3992.50,57.84,1433.84,2264.55,0.00,3521744398079.865723,3521744397456.115723,253,492,121.159069,0.030590,47787685,24597711,0,0,63522,0,1,1 +1773640528.294843,31.39,4,3992.50,58.01,1427.26,2271.10,0.00,3515239645660.947266,3515239645651.937988,11,0,120.856076,0.035697,47800081,24600467,0,0,63524,0,1,1 +1773640533.294048,31.30,4,3992.50,58.19,1419.94,2278.39,0.00,0.053524,0.000000,75,0,120.181801,0.044812,47812258,24603995,0,0,63527,0,1,1 +1773640538.294548,30.70,4,3992.50,57.94,1430.02,2268.31,0.00,40807.479351,41438.831699,2837444,2767832,119.751507,0.040523,47824438,24607211,0,0,63529,0,1,1 +1773640543.294590,30.83,4,3992.50,58.64,1402.48,2295.99,0.00,3518407687335.229492,3518407686712.890137,253,492,117.186869,0.026743,47834973,24609227,0,0,63532,0,1,1 +1773640548.293730,26.05,4,3992.50,58.62,1403.38,2294.97,0.00,0.000000,0.000000,253,492,103.617625,0.023123,47844384,24611058,0,0,63534,0,1,1 +1773640553.293662,27.73,4,3992.50,59.12,1383.59,2314.83,0.00,3518485524021.114746,3518485524012.043457,75,0,106.443385,0.023059,47853802,24612885,0,0,63537,0,1,1 +1773640558.293271,8.24,4,3992.50,58.72,1399.33,2299.07,0.00,0.126768,0.000000,205,0,34.995189,0.008967,47857191,24613571,0,0,63539,0,1,1 +1773640563.294806,13.12,4,3992.50,52.20,1654.76,2043.67,0.00,1.476988,10.671919,253,492,104.127696,0.022791,47866519,24615378,0,0,63542,0,1,1 +1773640568.294305,1.60,4,3992.50,52.13,1661.02,2040.89,0.00,0.517728,3518790090736.774902,258,2,0.003250,0.001708,47866588,24615430,0,0,63544,0,1,1 +1773640573.290452,0.70,4,3992.50,52.11,1661.58,2040.28,0.00,3521150518034.656250,10.683232,253,492,0.000031,0.000055,47866590,24615435,0,0,63547,0,1,1 +1773640578.295144,0.90,4,3992.50,51.76,1675.32,2026.54,0.00,0.000000,0.000000,253,492,0.000031,0.000045,47866592,24615439,0,0,63549,0,1,1 +1773640583.293948,0.65,4,3992.50,51.76,1675.32,2026.54,0.00,3519279019719.383789,3519279019710.184082,205,0,0.001230,0.001254,47866601,24615456,0,0,63552,0,1,1 +1773640588.295071,0.80,4,3992.50,51.77,1675.11,2026.75,0.00,3517647355642.308105,0.000000,75,0,0.000031,0.000045,47866603,24615460,0,0,63554,0,1,1 +1773640593.294350,0.90,4,3992.50,51.76,1675.16,2026.70,0.00,0.126776,0.000000,205,0,0.002174,0.001039,47866647,24615489,0,0,63557,0,1,1 +1773640598.295010,0.85,4,3992.50,51.91,1672.13,2032.32,0.00,3517973054554.147949,0.000000,11,0,0.000000,0.000664,47866647,24615495,0,0,63559,0,1,1 +1773640603.294307,0.70,4,3992.50,51.91,1671.99,2032.31,0.00,0.180299,0.000000,205,0,0.000000,0.000030,47866647,24615498,0,0,63562,0,1,1 +1773640608.295068,0.65,4,3992.50,51.91,1671.99,2032.31,0.00,40805.406090,41437.348128,2837458,2768097,0.000000,0.000020,47866647,24615500,0,0,63564,0,1,1 +1773640613.290932,0.60,4,3992.50,51.93,1671.00,2033.30,0.00,3521349964675.791504,3521349964041.233398,258,2,0.000076,0.000123,47866653,24615509,0,0,63567,0,1,1 +1773640618.293860,0.70,4,3992.50,51.94,1670.77,2033.53,0.00,40785.737965,41419.412535,2837458,2768110,0.000016,0.000036,47866655,24615513,0,0,63569,0,1,1 +1773640623.294540,0.75,4,3992.50,51.94,1670.77,2033.53,0.00,3517958692620.577148,3517958691988.612793,205,0,0.000000,0.000030,47866655,24615516,0,0,63572,0,1,1 +1773640628.290386,1.91,4,3992.50,51.66,1678.47,2022.63,0.00,3521362936800.476562,0.000000,75,0,0.000031,0.000045,47866657,24615520,0,0,63574,0,1,1 +1773640633.294601,37.15,4,3992.50,57.92,1431.26,2267.59,0.00,40787.102122,41419.593610,2838964,2768788,83.053998,0.035138,47875541,24618055,0,0,63577,0,1,1 +1773640638.293625,31.89,4,3992.50,58.00,1427.90,2270.94,0.00,3519124451649.387207,3519124451648.456055,2837461,2768315,120.158502,0.100425,47888441,24625802,0,0,63579,0,1,1 +1773640643.290381,30.37,4,3992.50,58.47,1409.62,2289.21,0.00,3520721613641.243652,3520721613017.815918,253,492,118.335686,0.106949,47901163,24634151,0,0,63582,0,1,1 +1773640648.290374,30.65,4,3992.50,58.05,1425.95,2272.88,0.00,40810.218203,41433.259273,2837461,2768337,120.193205,0.102010,47914028,24642158,0,0,63584,0,1,1 +1773640653.293846,30.92,4,3992.50,57.99,1428.36,2270.43,0.00,3515995913660.692383,3515995913029.019531,75,0,118.710021,0.104329,47926708,24650341,0,0,63587,0,1,1 +1773640658.293849,30.95,4,3992.50,58.09,1424.22,2274.54,0.00,40821.471273,41454.561158,2838964,2768855,119.598744,0.112034,47939578,24659077,0,0,63589,0,1,1 +1773640663.294608,29.22,4,3992.50,59.24,1379.36,2319.47,0.00,3517902936509.567383,3517902935874.452148,258,2,107.882792,0.074010,47950763,24664829,0,0,63592,0,1,1 +1773640668.290807,30.15,4,3992.50,58.92,1392.11,2306.67,0.00,40850.420564,41486.315305,2838964,2768908,122.124984,0.027474,47961738,24667003,0,0,63594,0,1,1 +1773640673.290366,15.86,4,3992.50,53.46,1605.65,2093.25,0.00,3518747653208.003418,3518747652572.535156,258,2,115.549912,0.026858,47972050,24669047,0,0,63597,0,1,1 +1773640678.294466,0.90,4,3992.50,52.59,1639.77,2059.11,0.00,3515554839217.856445,3515554839219.850098,205,0,0.004111,0.002057,47972133,24669107,0,0,63599,0,1,1 +1773640683.290366,0.80,4,3992.50,52.05,1661.14,2037.75,0.00,3521324712754.101074,0.000000,11,0,0.000000,0.000030,47972133,24669110,0,0,63602,0,1,1 +1773640688.294454,0.85,4,3992.50,52.34,1658.58,2049.16,0.00,0.180126,0.000000,205,0,0.000000,0.000020,47972133,24669112,0,0,63604,0,1,1 +1773640693.294350,0.70,4,3992.50,52.32,1659.44,2048.31,0.00,40822.369903,41456.005004,2838978,2769059,0.000000,0.000030,47972133,24669115,0,0,63607,0,1,1 +1773640698.294768,0.75,4,3992.50,52.65,1646.57,2061.17,0.00,3518143159653.814941,3518143159029.442871,253,492,0.000000,0.000020,47972133,24669117,0,0,63609,0,1,1 +1773640703.294379,0.75,4,3992.50,52.67,1645.53,2062.22,0.00,3518711010341.570312,3518711010332.372070,205,0,0.000000,0.000030,47972133,24669120,0,0,63612,0,1,1 +1773640708.290368,0.85,4,3992.50,52.67,1645.53,2062.21,0.00,40844.567529,41477.760794,2837475,2768580,0.000000,0.000020,47972133,24669122,0,0,63614,0,1,1 +1773640713.290455,0.70,4,3992.50,52.67,1645.54,2062.21,0.00,3518375772413.993164,3518375771781.499023,11,0,0.000000,0.000030,47972133,24669125,0,0,63617,0,1,1 +1773640718.290789,0.95,4,3992.50,52.72,1643.61,2064.14,0.00,0.000000,0.000000,11,0,0.000000,0.000020,47972133,24669127,0,0,63619,0,1,1 +1773640723.290373,0.70,4,3992.50,52.53,1651.04,2056.71,0.00,1.657853,10.676084,253,492,0.000126,0.000185,47972143,24669140,0,0,63622,0,1,1 +1773640728.293711,0.65,4,3992.50,52.34,1658.46,2049.29,0.00,0.000000,0.000000,253,492,0.000016,0.000036,47972145,24669144,0,0,63624,0,1,1 +1773640733.290373,0.70,4,3992.50,52.56,1650.06,2057.68,0.00,3520788178571.586426,3520788178562.563477,11,0,0.000000,0.000674,47972145,24669151,0,0,63627,0,1,1 +1773640738.292396,0.70,4,3992.50,52.38,1656.98,2050.77,0.00,0.053494,0.000000,75,0,0.000000,0.000020,47972145,24669153,0,0,63629,0,1,1 +1773640743.291264,30.05,4,3992.50,58.39,1421.75,2285.92,0.00,40830.924208,41464.642040,2838981,2769171,61.305998,0.030212,47978689,24671208,0,0,63632,0,1,1 +1773640748.293113,31.80,4,3992.50,58.68,1421.36,2297.48,0.00,0.000000,0.140768,2838981,2769291,118.330737,0.046103,47990950,24674700,0,0,63634,0,1,1 +1773640753.294712,29.36,4,3992.50,58.84,1411.15,2303.56,0.00,3517312258441.124512,3517312257807.665527,11,0,119.933399,0.041720,48003209,24677913,0,0,63637,0,1,1 +1773640758.293195,29.50,4,3992.50,58.36,1429.92,2284.77,0.00,0.053532,0.000000,75,0,118.606582,0.044695,48015382,24681431,0,0,63639,0,1,1 +1773640763.294424,28.80,4,3992.50,58.69,1416.88,2297.86,0.00,0.000000,0.000000,75,0,119.751412,0.062801,48027827,24686290,0,0,63642,0,1,1 +1773640768.293425,28.71,4,3992.50,58.72,1415.86,2298.94,0.00,40829.835063,41463.722844,2838981,2769356,119.008635,0.078075,48040300,24692388,0,0,63644,0,1,1 +1773640773.294802,29.26,4,3992.50,58.62,1419.53,2295.20,0.00,3517468398171.324219,3517468397537.610840,205,0,119.346132,0.057926,48052740,24696900,0,0,63647,0,1,1 +1773640778.294960,29.31,4,3992.50,58.48,1424.95,2289.80,0.00,3518326463928.244629,0.000000,11,0,119.775471,0.059664,48065168,24701567,0,0,63649,0,1,1 +1773640783.294997,20.79,4,3992.50,58.33,1436.64,2283.62,0.00,0.180272,0.000000,205,0,119.169840,0.038254,48077454,24704518,0,0,63652,0,1,1 +1773640788.290397,1.20,4,3992.50,53.17,1638.43,2081.81,0.00,40859.306020,41493.938734,2838993,2769436,10.228010,0.004518,48078601,24704772,0,0,63654,0,1,1 +1773640793.295003,0.60,4,3992.50,52.70,1656.84,2063.42,0.00,3515199553973.544434,3515199553340.259277,11,0,0.000000,0.000030,48078601,24704775,0,0,63657,0,1,1 +1773640798.294559,0.75,4,3992.50,52.51,1664.37,2055.88,0.00,1.657862,10.676143,253,492,0.000000,0.000664,48078601,24704781,0,0,63659,0,1,1 +1773640803.294937,1.00,4,3992.50,52.45,1666.86,2053.40,0.00,3518171119045.476074,3518171119036.278809,205,0,0.000000,0.000030,48078601,24704784,0,0,63662,0,1,1 +1773640808.294594,1.00,4,3992.50,52.25,1672.56,2045.68,0.00,40824.565809,41458.847389,2839004,2769626,0.000000,0.000020,48078601,24704786,0,0,63664,0,1,1 +1773640813.294401,0.70,4,3992.50,52.21,1674.08,2044.16,0.00,3518572753447.455566,3518572752813.373047,11,0,0.000000,0.000030,48078601,24704789,0,0,63667,0,1,1 +1773640818.294579,0.65,4,3992.50,52.16,1676.27,2041.98,0.00,40820.488315,41454.618004,2839004,2769633,0.000000,0.000020,48078601,24704791,0,0,63669,0,1,1 +1773640823.294374,0.65,4,3992.50,52.17,1675.56,2042.69,0.00,3518581264519.839355,3518581263885.607422,75,0,0.000000,0.000030,48078601,24704794,0,0,63672,0,1,1 +1773640828.294796,0.75,4,3992.50,52.18,1675.11,2043.14,0.00,0.000000,0.000000,75,0,0.000308,0.000574,48078608,24704807,0,0,63674,0,1,1 +1773640833.295134,0.65,4,3992.50,52.20,1674.38,2043.87,0.00,0.126749,0.000000,205,0,0.000339,0.000725,48078626,24704832,0,0,63677,0,1,1 +1773640838.294660,0.65,4,3992.50,52.01,1682.02,2036.22,0.00,40815.901871,41449.383486,2837501,2769161,0.000000,0.000020,48078626,24704834,0,0,63679,0,1,1 +1773640843.290452,0.90,4,3992.50,52.48,1663.66,2054.57,0.00,3521400546360.023926,3521400545735.273926,253,492,0.000205,0.000562,48078633,24704848,0,0,63682,0,1,1 +1773640848.295141,0.75,4,3992.50,52.49,1663.03,2055.20,0.00,3515140955753.103516,3515140955744.094727,11,0,0.000000,0.000020,48078633,24704850,0,0,63684,0,1,1 +1773640853.291118,25.87,4,3992.50,58.53,1426.54,2291.68,0.00,0.000000,0.000000,11,0,56.729900,0.023950,48084702,24706528,0,0,63687,0,1,1 +1773640858.293662,35.87,4,3992.50,58.32,1434.99,2283.17,0.00,0.000000,0.000000,11,0,122.107719,0.029315,48097238,24708753,0,0,63689,0,1,1 +1773640863.290547,31.35,4,3992.50,58.31,1435.24,2282.88,0.00,0.000000,0.000000,11,0,120.841929,0.031223,48109590,24711099,0,0,63692,0,1,1 +1773640868.290362,31.50,4,3992.50,58.36,1433.25,2284.83,0.00,0.053518,0.000000,75,0,120.171459,0.021473,48122061,24712776,0,0,63694,0,1,1 +1773640873.294857,31.27,4,3992.50,58.52,1426.90,2291.24,0.00,3515276841422.187988,0.000000,11,0,120.060236,0.027861,48134481,24714947,0,0,63697,0,1,1 +1773640878.294608,30.07,4,3992.50,58.47,1428.75,2289.37,0.00,40824.042700,41458.595562,2839011,2769966,119.770675,0.027318,48146681,24717040,0,0,63699,0,1,1 +1773640883.294922,30.43,4,3992.50,58.36,1433.23,2284.89,0.00,3518216384503.088867,3518216383868.427246,205,0,119.956329,0.034488,48158900,24719719,0,0,63702,0,1,1 +1773640888.294286,29.65,4,3992.50,58.47,1428.73,2289.41,0.00,3518884746979.186523,0.000000,75,0,118.776918,0.037459,48170916,24722628,0,0,63704,0,1,1 +1773640893.294497,20.00,4,3992.50,58.36,1433.16,2285.05,0.00,3518288511233.850098,0.000000,11,0,119.560271,0.042663,48183038,24725835,0,0,63707,0,1,1 +1773640898.294307,2.40,4,3992.50,53.45,1625.93,2092.49,0.00,0.180280,0.000000,205,0,7.414418,0.004037,48183871,24726052,0,0,63709,0,1,1 +1773640903.291210,0.65,4,3992.50,52.66,1656.34,2061.89,0.00,3520618227650.361328,0.000000,75,0,0.000000,0.000030,48183871,24726055,0,0,63712,0,1,1 +1773640908.292697,0.75,4,3992.50,52.58,1659.67,2058.56,0.00,3517390832243.590820,0.000000,11,0,0.000000,0.000020,48183871,24726057,0,0,63714,0,1,1 +1773640913.294273,0.60,4,3992.50,52.58,1659.43,2058.80,0.00,0.000000,0.000000,11,0,0.000000,0.000030,48183871,24726060,0,0,63717,0,1,1 +1773640918.295108,0.70,4,3992.50,52.58,1659.43,2058.80,0.00,0.180243,0.000000,205,0,0.000000,0.000020,48183871,24726062,0,0,63719,0,1,1 +1773640923.290449,0.65,4,3992.50,52.58,1659.43,2058.80,0.00,40850.331094,41484.921881,2837524,2769654,0.000000,0.000030,48183871,24726065,0,0,63722,0,1,1 +1773640928.290363,0.95,4,3992.50,52.27,1664.63,2046.52,0.00,3518497831195.744141,3518497830561.733887,205,0,0.000031,0.000689,48183873,24726073,0,0,63724,0,1,1 +1773640933.290495,0.70,4,3992.50,52.24,1665.72,2045.29,0.00,40820.910795,41455.913750,2839027,2770193,0.000016,0.000046,48183875,24726078,0,0,63727,0,1,1 +1773640938.290361,0.65,4,3992.50,51.96,1676.79,2034.21,0.00,3518531326072.092773,3518531325446.253906,253,492,0.000050,0.000082,48183879,24726084,0,0,63729,0,1,1 +1773640943.294648,0.70,4,3992.50,51.96,1676.55,2034.46,0.00,0.517232,3515422998011.539551,258,2,0.000126,0.000185,48183889,24726097,0,0,63732,0,1,1 +1773640948.290455,0.65,4,3992.50,51.99,1675.57,2035.44,0.00,0.000000,0.000000,258,2,0.000000,0.000020,48183889,24726099,0,0,63734,0,1,1 +1773640953.294961,0.60,4,3992.50,51.99,1675.57,2035.44,0.00,3515269302320.920410,3515269302323.093750,11,0,0.000000,0.000030,48183889,24726102,0,0,63737,0,1,1 +1773640958.294138,0.85,4,3992.50,52.01,1676.30,2036.15,0.00,40828.890792,41463.888690,2839027,2770234,0.000000,0.000020,48183889,24726104,0,0,63739,0,1,1 +1773640963.293705,24.47,4,3992.50,58.49,1422.51,2289.91,0.00,3518742087471.794434,3518742086836.666016,205,0,45.472940,0.030592,48188814,24728311,0,0,63742,0,1,1 +1773640968.294881,36.15,4,3992.50,58.74,1412.55,2299.86,0.00,40802.711531,41436.773463,2837528,2769889,124.144009,0.045891,48201576,24731842,0,0,63744,0,1,1 +1773640973.293814,31.00,4,3992.50,58.89,1406.70,2305.68,0.00,3519188507778.793945,3519188507144.574219,75,0,120.792304,0.031334,48213910,24734245,0,0,63747,0,1,1 +1773640978.295022,29.50,4,3992.50,58.64,1416.41,2296.00,0.00,40812.301104,41447.265011,2839031,2770429,120.936990,0.039757,48226216,24737327,0,0,63749,0,1,1 +1773640983.294540,29.30,4,3992.50,58.61,1417.89,2294.51,0.00,0.000000,0.031741,2839031,2770470,119.773838,0.037853,48238295,24740278,0,0,63752,0,1,1 +1773640988.290482,29.05,4,3992.50,58.53,1420.68,2291.65,0.00,3521294907340.603516,3521294906714.016602,253,492,119.458993,0.044655,48250393,24743820,0,0,63754,0,1,1 +1773640993.290694,29.47,4,3992.50,58.58,1415.04,2293.38,0.00,3518287668286.200684,3518287668277.130371,75,0,119.956524,0.037773,48262452,24746793,0,0,63757,0,1,1 +1773640998.290316,29.57,4,3992.50,58.69,1410.71,2297.69,0.00,0.000000,0.000000,75,0,120.172766,0.042755,48274657,24750087,0,0,63759,0,1,1 +1773641003.292545,22.52,4,3992.50,58.35,1424.07,2284.46,0.00,3516869412413.804688,0.000000,11,0,118.507759,0.043765,48286642,24753537,0,0,63762,0,1,1 +1773641008.290398,1.10,4,3992.50,52.82,1640.41,2068.12,0.00,0.180351,0.000000,205,0,16.230386,0.008109,48288306,24754102,0,0,63764,0,1,1 +1773641013.295230,1.00,4,3992.50,52.38,1657.61,2050.92,0.00,1.993191,0.000195,258,2,0.002225,0.001052,48288348,24754132,0,0,63767,0,1,1 +1773641018.290488,0.95,4,3992.50,52.35,1663.65,2049.50,0.00,3521777179950.561523,10.685134,253,492,0.000008,0.000028,48288349,24754135,0,0,63769,0,1,1 +1773641023.295149,0.70,4,3992.50,52.34,1663.37,2049.41,0.00,3515160129142.062988,3515160129132.874023,205,0,0.000000,0.000030,48288349,24754138,0,0,63772,0,1,1 +1773641028.294377,0.60,4,3992.50,52.35,1663.15,2049.63,0.00,3518980488093.265625,0.000000,11,0,0.000000,0.000020,48288349,24754140,0,0,63774,0,1,1 +1773641033.294569,0.70,4,3992.50,52.35,1663.15,2049.63,0.00,0.000000,0.000000,11,0,0.000000,0.000030,48288349,24754143,0,0,63777,0,1,1 +1773641038.290470,0.75,4,3992.50,52.35,1663.15,2049.63,0.00,0.053560,0.000000,75,0,0.000000,0.000020,48288349,24754145,0,0,63779,0,1,1 +1773641043.290547,0.65,4,3992.50,52.35,1663.16,2049.62,0.00,40811.860959,41446.548511,2837539,2770194,0.000000,0.000030,48288349,24754148,0,0,63782,0,1,1 +1773641048.293213,0.90,4,3992.50,52.55,1659.34,2057.45,0.00,0.000000,0.028110,2837539,2770209,0.000000,0.000020,48288349,24754150,0,0,63784,0,1,1 +1773641053.294661,0.60,4,3992.50,52.55,1659.34,2057.45,0.00,3517418418879.136230,3517418418253.662598,253,492,0.000025,0.000061,48288351,24754155,0,0,63787,0,1,1 +1773641058.294677,0.65,4,3992.50,52.55,1659.34,2057.45,0.00,3518426188467.034668,3518426188458.017578,11,0,0.000117,0.000160,48288361,24754167,0,0,63789,0,1,1 +1773641063.290380,0.70,4,3992.50,52.55,1659.37,2057.45,0.00,40857.379478,41493.562172,2839042,2770718,0.000000,0.000030,48288361,24754170,0,0,63792,0,1,1 +1773641068.291670,0.65,4,3992.50,52.57,1658.63,2058.18,0.00,0.000000,0.004686,2839042,2770723,0.000000,0.000664,48288361,24754176,0,0,63794,0,1,1 +1773641073.293923,20.90,4,3992.50,58.65,1420.63,2296.23,0.00,3516852378737.831543,3516852378738.209473,2837563,2770553,32.437644,0.023088,48291968,24755695,0,0,63797,0,1,1 +1773641078.291254,34.76,4,3992.50,58.80,1414.54,2302.18,0.00,0.000000,0.084518,2837563,2770579,119.830447,0.040213,48304257,24758774,0,0,63799,0,1,1 +1773641083.294923,31.16,4,3992.50,58.51,1425.79,2290.88,0.00,3515857050045.847168,3515857049410.209961,11,0,118.477223,0.032024,48316411,24761243,0,0,63802,0,1,1 +1773641088.290908,30.58,4,3992.50,58.58,1423.11,2293.50,0.00,0.053559,0.000000,75,0,119.458674,0.033315,48328567,24763859,0,0,63804,0,1,1 +1773641093.290375,31.04,4,3992.50,58.46,1427.70,2288.96,0.00,40826.659594,41463.912784,2839066,2771160,118.975723,0.020359,48340731,24765439,0,0,63807,0,1,1 +1773641098.291108,30.85,4,3992.50,58.64,1420.77,2296.06,0.00,3517922024667.079102,3517922024030.041016,11,0,119.748129,0.034381,48352919,24768115,0,0,63809,0,1,1 +1773641103.292033,31.49,4,3992.50,58.60,1422.35,2294.31,0.00,0.000000,0.000000,11,0,118.942266,0.028223,48365168,24770328,0,0,63812,0,1,1 +1773641108.294686,29.72,4,3992.50,58.64,1420.89,2295.90,0.00,0.000000,0.000000,11,0,119.700533,0.035923,48377331,24773125,0,0,63814,0,1,1 +1773641113.294716,27.29,4,3992.50,58.81,1414.18,2302.61,0.00,0.000000,0.000000,11,0,119.361929,0.042736,48389424,24776463,0,0,63817,0,1,1 +1773641118.294622,1.30,4,3992.50,52.25,1670.95,2045.84,0.00,0.000000,0.000000,11,0,38.452555,0.015109,48393291,24777636,0,0,63819,0,1,1 +1773641123.295178,1.00,4,3992.50,52.34,1667.38,2049.40,0.00,1.657530,10.674008,253,492,0.002893,0.001157,48393344,24777672,0,0,63822,0,1,1 +1773641128.290490,0.65,4,3992.50,52.34,1667.44,2049.34,0.00,3521739152067.095703,3521739152058.016602,75,0,0.000316,0.000583,48393352,24777686,0,0,63824,0,1,1 +1773641133.294747,0.75,4,3992.50,52.34,1667.44,2049.34,0.00,0.126650,0.000000,205,0,0.000204,0.001205,48393359,24777704,0,0,63827,0,1,1 +1773641138.290368,0.90,4,3992.50,52.49,1669.80,2055.00,0.00,3521521940258.026367,0.000000,11,0,0.000000,0.000020,48393359,24777706,0,0,63829,0,1,1 +1773641143.293337,0.65,4,3992.50,52.49,1669.43,2054.92,0.00,0.053484,0.000000,75,0,0.001138,0.001231,48393369,24777723,0,0,63832,0,1,1 +1773641148.295228,0.70,4,3992.50,52.50,1668.97,2055.38,0.00,3517107204945.696289,0.000000,11,0,0.000000,0.000020,48393369,24777725,0,0,63834,0,1,1 +1773641153.294758,0.70,4,3992.50,52.31,1676.36,2047.98,0.00,40826.402453,41464.025931,2839085,2771463,0.000000,0.000030,48393369,24777728,0,0,63837,0,1,1 +1773641158.294305,0.75,4,3992.50,52.31,1676.14,2048.20,0.00,0.000000,0.032034,2839085,2771501,0.000000,0.000020,48393369,24777730,0,0,63839,0,1,1 +1773641163.294736,0.65,4,3992.50,52.31,1676.14,2048.20,0.00,3518134124433.161133,3518134124432.216797,2837582,2771013,0.000025,0.000061,48393371,24777735,0,0,63842,0,1,1 +1773641168.295256,0.90,4,3992.50,53.11,1644.89,2079.41,0.00,3518071475799.936523,3518071475172.368164,253,492,0.000109,0.000152,48393380,24777746,0,0,63844,0,1,1 +1773641173.294425,0.65,4,3992.50,52.60,1664.79,2059.51,0.00,40827.689793,41456.425463,2839085,2771539,0.000031,0.000055,48393382,24777751,0,0,63847,0,1,1 +1773641178.290397,0.70,4,3992.50,52.41,1672.43,2051.88,0.00,3521273863291.423340,3521273863290.477051,2837582,2771049,0.000031,0.000045,48393384,24777755,0,0,63849,0,1,1 +1773641183.290378,25.77,4,3992.50,58.84,1420.70,2303.54,0.00,3518450477665.006348,3518450477028.120117,205,0,48.874346,0.022821,48398681,24779312,0,0,63852,0,1,1 +1773641188.290436,31.59,4,3992.50,58.94,1416.62,2307.56,0.00,3518396421520.663574,0.000000,11,0,118.165642,0.022758,48410898,24781009,0,0,63854,0,1,1 +1773641193.290342,28.11,4,3992.50,58.83,1421.03,2303.22,0.00,1.657746,10.675396,253,492,120.172963,0.037474,48423058,24783775,0,0,63857,0,1,1 +1773641198.290407,28.82,4,3992.50,58.78,1422.86,2301.38,0.00,3518391465570.419922,3518391465561.402832,11,0,118.165877,0.041721,48434970,24786988,0,0,63859,0,1,1 +1773641203.290344,28.65,4,3992.50,58.73,1427.61,2299.31,0.00,0.000000,0.000000,11,0,120.192917,0.092151,48447570,24794116,0,0,63862,0,1,1 +1773641208.290551,27.99,4,3992.50,58.62,1431.81,2295.29,0.00,0.053513,0.000000,75,0,118.587312,0.101921,48460084,24802049,0,0,63864,0,1,1 +1773641213.292599,28.89,4,3992.50,58.74,1427.34,2299.67,0.00,40796.097405,41432.869981,2837585,2771319,119.744673,0.108128,48472763,24810521,0,0,63867,0,1,1 +1773641218.293239,28.75,4,3992.50,58.58,1433.54,2293.45,0.00,3517987448257.335449,3517987447629.453125,253,492,119.383246,0.110282,48485549,24819158,0,0,63869,0,1,1 +1773641223.295265,22.95,4,3992.50,58.72,1428.16,2298.91,0.00,3517011889871.783203,3517011889862.589355,205,0,118.949194,0.106897,48498349,24827521,0,0,63872,0,1,1 +1773641228.295256,1.95,4,3992.50,53.71,1616.16,2103.05,0.00,3518443298604.680664,0.000000,11,0,23.242122,0.023531,48500917,24829268,0,0,63874,0,1,1 +1773641233.295237,0.80,4,3992.50,53.00,1644.05,2075.16,0.00,2.175399,0.000195,258,2,0.000008,0.000038,48500918,24829272,0,0,63877,0,1,1 +1773641238.295090,0.65,4,3992.50,52.68,1656.84,2062.38,0.00,40811.966549,41451.344780,2837596,2771454,0.000050,0.000082,48500922,24829278,0,0,63879,0,1,1 +1773641243.290589,0.55,4,3992.50,52.60,1659.82,2059.39,0.00,3521607401460.327637,3521607400831.594727,253,492,0.000000,0.000030,48500922,24829281,0,0,63882,0,1,1 +1773641248.294392,0.75,4,3992.50,52.60,1659.82,2059.39,0.00,0.000000,0.000000,253,492,0.000000,0.000020,48500922,24829283,0,0,63884,0,1,1 +1773641253.293466,0.65,4,3992.50,52.60,1659.83,2059.39,0.00,0.000000,0.000000,253,492,0.000000,0.000030,48500922,24829286,0,0,63887,0,1,1 +1773641258.294465,0.90,4,3992.50,52.48,1662.48,2054.70,0.00,40803.152179,41431.314473,2837599,2771484,0.000000,0.000020,48500922,24829288,0,0,63889,0,1,1 +1773641263.294725,0.65,4,3992.50,52.48,1662.49,2054.70,0.00,3518254095720.542480,3518254095081.095703,258,2,0.000000,0.000674,48500922,24829295,0,0,63892,0,1,1 +1773641268.294394,0.65,4,3992.50,52.48,1662.60,2054.59,0.00,3518669975937.272461,3518669975939.448242,11,0,0.000000,0.000020,48500922,24829297,0,0,63894,0,1,1 +1773641273.294744,0.80,4,3992.50,52.48,1662.38,2054.80,0.00,2.175239,0.000195,258,2,0.000126,0.000185,48500932,24829310,0,0,63897,0,1,1 +1773641278.294960,0.70,4,3992.50,52.48,1662.39,2054.80,0.00,3518284843926.603027,3518284843928.778320,11,0,0.000016,0.000036,48500934,24829314,0,0,63899,0,1,1 +1773641283.290473,0.55,4,3992.50,52.48,1662.39,2054.80,0.00,0.000000,0.000000,11,0,0.000000,0.000030,48500934,24829317,0,0,63902,0,1,1 +1773641288.294903,0.95,4,3992.50,52.43,1658.77,2052.60,0.00,1.656248,10.665747,253,492,0.000000,0.000020,48500934,24829319,0,0,63904,0,1,1 +1773641293.290821,22.98,4,3992.50,58.87,1406.27,2304.94,0.00,40854.382535,41484.233616,2839104,2772094,38.490557,0.021720,48505118,24830829,0,0,63907,0,1,1 +1773641298.291170,33.03,4,3992.50,58.66,1414.39,2296.83,0.00,0.000000,0.116398,2839104,2772193,120.163473,0.030272,48517568,24833099,0,0,63909,0,1,1 +1773641303.290362,28.51,4,3992.50,58.92,1404.34,2306.87,0.00,3519006139975.854980,3519006139337.281250,11,0,118.673208,0.021737,48529863,24834735,0,0,63912,0,1,1 +1773641308.293533,28.68,4,3992.50,58.85,1407.23,2303.93,0.00,1.656664,10.668429,253,492,119.601830,0.019299,48542110,24836212,0,0,63914,0,1,1 +1773641313.293443,28.42,4,3992.50,58.75,1411.16,2300.05,0.00,40821.764276,41451.323424,2839104,2772252,119.365794,0.016544,48554239,24837441,0,0,63917,0,1,1 +1773641318.291025,28.65,4,3992.50,58.99,1413.79,2309.50,0.00,3520140156956.435059,3520140156315.384766,258,2,119.024231,0.034014,48566319,24840069,0,0,63919,0,1,1 +1773641323.290531,28.60,4,3992.50,58.90,1414.36,2306.23,0.00,0.000000,0.000000,258,2,119.779755,0.031409,48578625,24842523,0,0,63922,0,1,1 +1773641328.290637,28.39,4,3992.50,58.76,1419.89,2300.72,0.00,3518362649148.767090,10.674774,253,492,118.579175,0.066976,48591133,24847697,0,0,63924,0,1,1 +1773641333.290584,24.17,4,3992.50,58.94,1413.25,2307.47,0.00,3518474827007.056152,3518474826997.985352,75,0,120.175335,0.046197,48603602,24851257,0,0,63927,0,1,1 +1773641338.292575,1.50,4,3992.50,52.61,1661.04,2059.69,0.00,2.121030,0.000195,258,2,31.634914,0.010703,48606908,24852014,0,0,63929,0,1,1 +1773641343.294941,0.80,4,3992.50,52.61,1661.05,2059.68,0.00,40801.354510,41442.135422,2839119,2772451,0.000626,0.000278,48606921,24852024,0,0,63932,0,1,1 +1773641348.290359,0.65,4,3992.50,52.61,1660.81,2059.90,0.00,3521664151995.917480,3521664151994.996582,2837616,2771962,0.000000,0.000020,48606921,24852026,0,0,63934,0,1,1 +1773641353.290448,0.95,4,3992.50,52.71,1662.31,2063.79,0.00,9.726000,10.713482,2839119,2772488,0.000000,0.000030,48606921,24852029,0,0,63937,0,1,1 +1773641358.295217,0.60,4,3992.50,52.71,1662.31,2063.79,0.00,3515084605500.651367,3515084604862.284180,11,0,0.000000,0.000020,48606921,24852031,0,0,63939,0,1,1 +1773641363.294039,0.65,4,3992.50,52.72,1662.07,2064.03,0.00,40832.450459,41471.611436,2839119,2772522,0.000000,0.000030,48606921,24852034,0,0,63942,0,1,1 +1773641368.295194,0.75,4,3992.50,52.72,1661.85,2064.25,0.00,3517624372406.084961,3517624371767.041992,205,0,0.000000,0.000020,48606921,24852036,0,0,63944,0,1,1 +1773641373.292179,0.70,4,3992.50,52.72,1661.85,2064.25,0.00,1.996321,0.000195,258,2,0.000000,0.000030,48606921,24852039,0,0,63947,0,1,1 +1773641378.294698,0.70,4,3992.50,52.72,1661.86,2064.23,0.00,3516664856916.500977,3516664856918.622070,75,0,0.000000,0.000020,48606921,24852041,0,0,63949,0,1,1 +1773641383.292447,1.20,4,3992.50,52.92,1654.09,2072.01,0.00,2.122831,0.000195,258,2,0.000101,0.000154,48606929,24852052,0,0,63952,0,1,1 +1773641388.294865,0.55,4,3992.50,52.94,1653.55,2072.54,0.00,3516735915437.171875,3516735915439.346191,11,0,0.000041,0.000067,48606933,24852058,0,0,63954,0,1,1 +1773641393.291658,0.75,4,3992.50,52.94,1653.32,2072.77,0.00,0.180389,0.000000,205,0,0.000000,0.000030,48606933,24852061,0,0,63957,0,1,1 +1773641398.294661,0.60,4,3992.50,52.90,1655.08,2071.02,0.00,0.000000,0.000000,205,0,0.000000,0.000663,48606933,24852067,0,0,63959,0,1,1 +1773641403.292842,17.81,4,3992.50,59.23,1406.85,2319.16,0.00,3519716981497.262695,0.000000,75,0,25.652140,0.020895,48609814,24853410,0,0,63962,0,1,1 +1773641408.293796,34.68,4,3992.50,59.21,1407.93,2318.09,0.00,3517766413041.376465,0.000000,11,0,122.543273,0.050781,48622093,24857331,0,0,63964,0,1,1 +1773641413.293673,29.09,4,3992.50,58.89,1419.96,2305.85,0.00,0.053517,0.000000,75,0,121.770329,0.041136,48634405,24860466,0,0,63967,0,1,1 +1773641418.294094,28.80,4,3992.50,59.10,1411.79,2314.05,0.00,0.126747,0.000000,205,0,120.554066,0.036798,48646608,24863332,0,0,63969,0,1,1 +1773641423.291692,28.70,4,3992.50,59.05,1413.86,2311.89,0.00,40832.683191,41471.449522,2837641,2772267,120.022305,0.036800,48658845,24866214,0,0,63972,0,1,1 +1773641428.293632,28.69,4,3992.50,59.02,1415.03,2310.81,0.00,3517072107272.154785,3517072106633.943359,205,0,119.914843,0.049983,48670855,24870107,0,0,63974,0,1,1 +1773641433.294021,28.78,4,3992.50,59.03,1414.70,2311.05,0.00,1.477327,10.674366,253,492,119.953333,0.049030,48682932,24873914,0,0,63977,0,1,1 +1773641438.294643,28.33,4,3992.50,59.10,1411.73,2314.04,0.00,0.517611,3517999666107.251953,258,2,118.746090,0.047705,48694883,24877647,0,0,63979,0,1,1 +1773641443.290351,26.23,4,3992.50,59.46,1401.25,2328.04,0.00,3521459901881.317383,10.684171,253,492,119.864125,0.037154,48706912,24880554,0,0,63982,0,1,1 +1773641448.290355,1.50,4,3992.50,53.65,1628.77,2100.50,0.00,0.517675,3518434140094.268066,258,2,36.451572,0.013249,48710638,24881537,0,0,63984,0,1,1 +1773641453.290362,0.80,4,3992.50,53.24,1644.82,2084.45,0.00,40820.877166,41462.625764,2839158,2773022,0.001528,0.000702,48710667,24881559,0,0,63987,0,1,1 +1773641458.294154,0.75,4,3992.50,53.18,1647.03,2082.25,0.00,3515770629716.518555,3515770629077.428711,11,0,0.000000,0.000020,48710667,24881561,0,0,63989,0,1,1 +1773641463.290484,0.80,4,3992.50,53.12,1649.49,2079.79,0.00,0.000000,0.000000,11,0,0.000000,0.000352,48710667,24881566,0,0,63992,0,1,1 +1773641468.290365,0.65,4,3992.50,52.98,1654.94,2074.33,0.00,1.657754,10.675448,253,492,0.000000,0.000342,48710667,24881570,0,0,63994,0,1,1 +1773641473.294890,1.05,4,3992.50,53.12,1652.89,2079.91,0.00,0.000000,0.000000,253,492,0.000031,0.000055,48710669,24881575,0,0,63997,0,1,1 +1773641478.295006,0.60,4,3992.50,52.93,1660.29,2072.52,0.00,3518355424006.093262,3518355423997.022949,75,0,0.000039,0.000053,48710672,24881580,0,0,63999,0,1,1 +1773641483.295043,0.70,4,3992.50,52.95,1659.86,2072.95,0.00,0.000000,0.000000,75,0,0.001229,0.001254,48710681,24881597,0,0,64002,0,1,1 +1773641488.294558,0.60,4,3992.50,52.80,1665.64,2067.16,0.00,0.126770,0.000000,205,0,0.000031,0.000045,48710683,24881601,0,0,64004,0,1,1 +1773641493.291196,0.90,4,3992.50,52.80,1665.43,2067.38,0.00,3520804795897.010254,0.000000,11,0,0.002200,0.001070,48710729,24881632,0,0,64007,0,1,1 +1773641498.290890,0.85,4,3992.50,53.29,1645.65,2086.53,0.00,40825.613059,41465.405498,2839158,2773137,0.000050,0.000082,48710733,24881638,0,0,64009,0,1,1 +1773641503.293562,0.70,4,3992.50,53.08,1653.95,2078.26,0.00,3516557532894.839355,3516557532264.440918,253,492,0.000000,0.000030,48710733,24881641,0,0,64012,0,1,1 +1773641508.293652,1.45,4,3992.50,53.08,1653.95,2078.26,0.00,3518374039994.208984,3518374039985.011230,205,0,0.000000,0.000020,48710733,24881643,0,0,64014,0,1,1 +1773641513.290650,0.85,4,3992.50,52.83,1663.96,2068.25,0.00,1.996316,0.000195,258,2,0.001384,0.000419,48710756,24881661,0,0,64017,0,1,1 +1773641518.290504,38.00,4,3992.50,58.95,1424.04,2308.12,0.00,40812.425865,41453.514191,2837658,2772795,78.916510,0.031823,48719103,24883953,0,0,64019,0,1,1 +1773641523.290871,29.16,4,3992.50,59.23,1413.02,2319.09,0.00,3518178940772.074219,3518178940133.046875,205,0,118.158001,0.019485,48731357,24885358,0,0,64022,0,1,1 +1773641528.290664,28.27,4,3992.50,59.49,1404.26,2328.98,0.00,1.477503,10.675638,253,492,120.171760,0.017522,48743674,24886600,0,0,64024,0,1,1 +1773641533.294334,27.94,4,3992.50,58.94,1424.34,2307.79,0.00,40791.539718,41422.048330,2839161,2773396,118.680347,0.026008,48755820,24888513,0,0,64027,0,1,1 +1773641538.294846,28.42,4,3992.50,58.93,1425.06,2307.05,0.00,3518076740394.447754,3518076739754.470703,75,0,119.549915,0.020644,48767864,24890121,0,0,64029,0,1,1 +1773641543.294601,28.05,4,3992.50,59.11,1417.95,2314.33,0.00,40815.357268,41454.503427,2837658,2772923,118.965951,0.017018,48779751,24891432,0,0,64032,0,1,1 +1773641548.294900,28.18,4,3992.50,58.96,1423.66,2308.50,0.00,3518226889277.779785,3518226888638.756836,11,0,119.364307,0.043946,48791870,24894818,0,0,64034,0,1,1 +1773641553.294866,28.43,4,3992.50,59.10,1418.08,2314.08,0.00,40823.410405,41463.571525,2839161,2773447,120.180373,0.063792,48804312,24899810,0,0,64037,0,1,1 +1773641558.290392,16.59,4,3992.50,52.83,1656.53,2068.42,0.00,3521588355049.268066,3521588354417.563477,253,492,111.470764,0.067728,48815966,24905072,0,0,64039,0,1,1 +1773641563.290421,1.05,4,3992.50,52.86,1655.20,2069.71,0.00,0.000000,0.000000,253,492,0.002258,0.001079,48816010,24905104,0,0,64042,0,1,1 +1773641568.294724,0.80,4,3992.50,52.68,1662.36,2062.56,0.00,40776.802730,41406.585772,2837673,2773059,0.000000,0.000020,48816010,24905106,0,0,64044,0,1,1 +1773641573.293405,0.60,4,3992.50,52.69,1662.11,2062.81,0.00,3519366028714.616211,3519366028075.104980,11,0,0.000000,0.000030,48816010,24905109,0,0,64047,0,1,1 +1773641578.294675,0.65,4,3992.50,52.63,1664.38,2060.55,0.00,0.000000,0.000000,11,0,0.000000,0.000020,48816010,24905111,0,0,64049,0,1,1 +1773641583.291437,0.65,4,3992.50,52.67,1662.69,2062.23,0.00,0.000000,0.000000,11,0,0.000000,0.000030,48816010,24905114,0,0,64052,0,1,1 +1773641588.290467,0.90,4,3992.50,52.78,1660.66,2066.35,0.00,40831.202929,41471.711928,2839176,2773601,0.000000,0.000020,48816010,24905116,0,0,64054,0,1,1 +1773641593.293018,0.70,4,3992.50,52.74,1659.93,2064.98,0.00,3516642737823.874512,3516642737822.957520,2837673,2773142,0.000000,0.000512,48816010,24905122,0,0,64057,0,1,1 +1773641598.295006,0.70,4,3992.50,52.71,1661.30,2063.61,0.00,3517039239934.004395,3517039239292.616211,258,2,0.000000,0.000181,48816010,24905125,0,0,64059,0,1,1 +1773641603.294906,0.65,4,3992.50,52.75,1659.61,2065.30,0.00,3518507567774.813965,10.675213,253,492,0.000025,0.000061,48816012,24905130,0,0,64062,0,1,1 +1773641608.293077,0.65,4,3992.50,52.76,1659.38,2065.53,0.00,0.000000,0.000000,253,492,0.000117,0.000160,48816022,24905142,0,0,64064,0,1,1 +1773641613.294858,0.65,4,3992.50,52.78,1658.64,2066.27,0.00,3517183900494.497559,3517183900485.483398,11,0,0.000000,0.000030,48816022,24905145,0,0,64067,0,1,1 +1773641618.294709,1.00,4,3992.50,52.89,1651.62,2070.66,0.00,0.000000,0.000000,11,0,0.000000,0.000020,48816022,24905147,0,0,64069,0,1,1 +1773641623.295173,0.65,4,3992.50,52.91,1650.89,2071.39,0.00,0.180257,0.000000,205,0,0.000000,0.000030,48816022,24905150,0,0,64072,0,1,1 +1773641628.293688,34.64,4,3992.50,58.97,1413.25,2308.95,0.00,0.000000,0.000000,205,0,73.329217,0.028503,48823778,24907162,0,0,64074,0,1,1 +1773641633.291318,30.85,4,3992.50,59.19,1404.62,2317.56,0.00,3520105619967.314453,0.000000,11,0,118.220023,0.022773,48835873,24908856,0,0,64077,0,1,1 +1773641638.295107,29.51,4,3992.50,59.09,1408.77,2313.38,0.00,0.053475,0.000000,75,0,120.079150,0.026787,48848325,24910865,0,0,64079,0,1,1 +1773641643.293696,29.07,4,3992.50,59.07,1409.39,2312.79,0.00,2.122474,0.000195,258,2,118.195029,0.026419,48860393,24912935,0,0,64082,0,1,1 +1773641648.294634,29.65,4,3992.50,59.27,1401.79,2320.44,0.00,40813.557767,41456.192144,2839184,2773920,119.944396,0.022339,48872816,24914662,0,0,64084,0,1,1 +1773641653.294414,29.49,4,3992.50,59.14,1408.11,2315.56,0.00,3518592324610.731934,3518592323970.070312,75,0,118.369296,0.027453,48885025,24916777,0,0,64087,0,1,1 +1773641658.290688,29.47,4,3992.50,59.13,1408.65,2314.97,0.00,40853.771830,41495.087057,2839184,2773978,120.253636,0.023194,48897262,24918525,0,0,64089,0,1,1 +1773641663.293682,29.29,4,3992.50,58.99,1414.21,2309.43,0.00,3516331505792.936035,3516331505791.999512,2837681,2773503,118.894227,0.031479,48909536,24920912,0,0,64092,0,1,1 +1773641668.294292,17.75,4,3992.50,58.99,1414.09,2309.62,0.00,3518008471297.026367,3518008470657.077637,205,0,118.148439,0.031728,48921632,24923358,0,0,64094,0,1,1 +1773641673.294765,1.00,4,3992.50,53.64,1623.62,2100.03,0.00,40819.496905,41460.375485,2839196,2774026,0.002559,0.001264,48921695,24923407,0,0,64097,0,1,1 +1773641678.295259,1.30,4,3992.50,53.07,1650.14,2077.70,0.00,3518089566738.160156,3518089566097.410645,75,0,0.001704,0.000838,48921727,24923430,0,0,64099,0,1,1 +1773641683.292241,0.90,4,3992.50,52.90,1656.67,2071.17,0.00,2.123157,0.000195,258,2,0.000008,0.000038,48921728,24923434,0,0,64102,0,1,1 +1773641688.291165,0.75,4,3992.50,52.89,1657.05,2070.79,0.00,3519194809878.271973,3519194809880.447754,11,0,0.000000,0.000020,48921728,24923436,0,0,64104,0,1,1 +1773641693.290452,0.60,4,3992.50,52.89,1657.05,2070.79,0.00,1.657951,10.676716,253,492,0.000000,0.000030,48921728,24923439,0,0,64107,0,1,1 +1773641698.294895,0.65,4,3992.50,52.89,1657.06,2070.78,0.00,40775.925303,41406.408623,2837693,2773665,0.000000,0.000020,48921728,24923441,0,0,64109,0,1,1 +1773641703.295094,0.95,4,3992.50,52.88,1657.29,2070.55,0.00,0.017968,0.027343,2837694,2773674,0.000000,0.000030,48921728,24923444,0,0,64112,0,1,1 +1773641708.290371,0.90,4,3992.50,52.95,1650.12,2072.96,0.00,3521763763433.090332,3521763762792.234863,205,0,0.000000,0.000020,48921728,24923446,0,0,64114,0,1,1 +1773641713.295316,0.80,4,3992.50,52.76,1657.53,2065.57,0.00,0.000000,0.000000,205,0,0.000000,0.000030,48921728,24923449,0,0,64117,0,1,1 +1773641718.295149,0.60,4,3992.50,52.76,1657.54,2065.57,0.00,3518555078367.011719,0.000000,11,0,0.000076,0.000113,48921734,24923457,0,0,64119,0,1,1 +1773641723.294353,0.65,4,3992.50,52.76,1657.54,2065.57,0.00,1.657979,10.676894,253,492,0.000066,0.000108,48921740,24923466,0,0,64122,0,1,1 +1773641728.294597,0.70,4,3992.50,52.76,1657.54,2065.57,0.00,3518265381022.304688,3518265381013.234375,75,0,0.001229,0.001888,48921749,24923486,0,0,64124,0,1,1 +1773641733.291144,0.65,4,3992.50,52.77,1657.08,2066.02,0.00,0.000000,0.000000,75,0,0.000205,0.000562,48921756,24923500,0,0,64127,0,1,1 +1773641738.290995,31.35,4,3992.50,59.23,1412.57,2318.88,0.00,40824.741448,41466.087791,2839200,2774396,64.098346,0.031223,48928643,24925658,0,0,64129,0,1,1 +1773641743.294656,31.30,4,3992.50,59.29,1407.33,2321.44,0.00,3515862968514.439453,3515862967873.581543,75,0,120.079529,0.027570,48940954,24927711,0,0,64132,0,1,1 +1773641748.290424,29.48,4,3992.50,59.34,1405.45,2323.36,0.00,3521417512703.745605,0.000000,11,0,118.463631,0.017967,48953107,24929080,0,0,64134,0,1,1 +1773641753.290908,28.96,4,3992.50,59.38,1403.82,2324.96,0.00,1.657554,10.674162,253,492,119.953943,0.018782,48965395,24930514,0,0,64137,0,1,1 +1773641758.294983,29.31,4,3992.50,59.11,1414.56,2314.25,0.00,0.000000,0.000000,253,492,119.271339,0.035805,48977502,24933274,0,0,64139,0,1,1 +1773641763.290686,29.73,4,3992.50,59.12,1414.18,2314.64,0.00,3521463573692.676758,3521463573683.651855,11,0,119.079492,0.062111,48989858,24938111,0,0,64142,0,1,1 +1773641768.290552,28.77,4,3992.50,59.20,1410.79,2318.00,0.00,0.053517,0.000000,75,0,119.175000,0.044422,49002070,24941571,0,0,64144,0,1,1 +1773641773.295099,29.61,4,3992.50,59.16,1411.84,2316.41,0.00,40786.427359,41427.526455,2839200,2774621,119.065220,0.052326,49014217,24945620,0,0,64147,0,1,1 +1773641778.290324,20.17,4,3992.50,59.19,1410.89,2317.44,0.00,3521800234418.239746,3521800233775.997559,11,0,119.889742,0.056470,49026548,24950032,0,0,64149,0,1,1 +1773641783.294738,1.05,4,3992.50,53.92,1617.33,2111.00,0.00,40787.733967,41428.748869,2839216,2774670,6.408169,0.005141,49027306,24950311,0,0,64152,0,1,1 +1773641788.294739,0.80,4,3992.50,53.32,1640.54,2087.79,0.00,3518436372191.328125,3518436371547.572266,258,2,0.000031,0.000045,49027308,24950315,0,0,64154,0,1,1 +1773641793.294881,0.85,4,3992.50,52.85,1659.28,2069.05,0.00,3518336974275.350586,3518336974277.472656,75,0,0.002831,0.002604,49027354,24950350,0,0,64157,0,1,1 +1773641798.293234,0.65,4,3992.50,52.83,1659.82,2068.49,0.00,0.126800,0.000000,205,0,0.000000,0.000020,49027354,24950352,0,0,64159,0,1,1 +1773641803.294578,1.00,4,3992.50,52.93,1656.02,2072.30,0.00,1.994581,0.000195,258,2,0.000000,0.000030,49027354,24950355,0,0,64162,0,1,1 +1773641808.293170,0.70,4,3992.50,52.80,1661.14,2067.18,0.00,3519428220741.644531,3519428220743.767090,75,0,0.000000,0.000020,49027354,24950357,0,0,64164,0,1,1 +1773641813.294666,0.65,4,3992.50,52.83,1659.75,2068.58,0.00,0.126720,0.000000,205,0,0.000000,0.000030,49027354,24950360,0,0,64167,0,1,1 +1773641818.295074,0.60,4,3992.50,52.83,1659.99,2068.33,0.00,3518149775342.744141,0.000000,11,0,0.000000,0.000020,49027354,24950362,0,0,64169,0,1,1 +1773641823.291942,0.65,4,3992.50,52.83,1660.01,2068.31,0.00,0.000000,0.000000,11,0,0.000000,0.000030,49027354,24950365,0,0,64172,0,1,1 +1773641828.291006,0.70,4,3992.50,52.83,1659.77,2068.55,0.00,0.000000,0.000000,11,0,0.000107,0.000138,49027362,24950375,0,0,64174,0,1,1 +1773641833.290425,0.95,4,3992.50,53.04,1655.27,2076.59,0.00,0.053522,0.000000,75,0,0.000016,0.000046,49027364,24950380,0,0,64177,0,1,1 +1773641838.294870,0.70,4,3992.50,53.04,1655.28,2076.58,0.00,3515312003707.613770,0.000000,11,0,0.000101,0.000144,49027372,24950390,0,0,64179,0,1,1 +1773641843.295096,0.60,4,3992.50,53.05,1655.03,2076.83,0.00,0.053513,0.000000,75,0,0.000000,0.000030,49027372,24950393,0,0,64182,0,1,1 +1773641848.291004,25.93,4,3992.50,59.65,1396.30,2335.48,0.00,0.000000,0.000000,75,0,62.957883,0.028203,49034102,24952406,0,0,64184,0,1,1 +1773641853.290918,33.15,4,3992.50,59.15,1415.75,2316.03,0.00,0.000000,0.000000,75,0,120.560410,0.027421,49046515,24954434,0,0,64187,0,1,1 +1773641858.295236,29.97,4,3992.50,59.95,1384.48,2347.26,0.00,0.126648,0.000000,205,0,121.065669,0.026701,49058888,24956386,0,0,64189,0,1,1 +1773641863.293792,29.85,4,3992.50,59.14,1416.32,2315.49,0.00,3519453819308.213867,0.000000,11,0,120.207748,0.041275,49071217,24959536,0,0,64192,0,1,1 +1773641868.294594,30.01,4,3992.50,59.25,1411.81,2319.93,0.00,1.657449,10.673484,253,492,119.557139,0.057853,49083570,24964061,0,0,64194,0,1,1 +1773641873.294541,29.50,4,3992.50,59.33,1408.75,2323.07,0.00,3518474636303.818848,3518474636294.621094,205,0,119.790828,0.081304,49096304,24970366,0,0,64197,0,1,1 +1773641878.295210,29.10,4,3992.50,59.55,1400.37,2331.40,0.00,40808.441852,41449.844340,2837721,2774667,119.561926,0.058097,49108774,24974886,0,0,64199,0,1,1 +1773641883.294353,30.03,4,3992.50,59.14,1416.28,2315.61,0.00,3519039980323.726562,3519039979680.132812,258,2,118.784286,0.019529,49120965,24976397,0,0,64202,0,1,1 +1773641888.293418,18.67,4,3992.50,59.34,1408.50,2323.34,0.00,40829.276361,41473.857002,2839225,2775184,119.987724,0.018805,49133129,24977811,0,0,64204,0,1,1 +1773641893.294949,1.25,4,3992.50,53.54,1625.70,2096.21,0.00,3517360409069.438965,3517360408427.351074,11,0,3.006876,0.002790,49133523,24977949,0,0,64207,0,1,1 +1773641898.294601,1.00,4,3992.50,53.13,1641.65,2080.26,0.00,2.175542,0.000195,258,2,0.000000,0.000020,49133523,24977951,0,0,64209,0,1,1 +1773641903.294875,0.70,4,3992.50,53.06,1644.49,2077.42,0.00,40809.808559,41453.433492,2837732,2774796,0.000000,0.000030,49133523,24977954,0,0,64212,0,1,1 +1773641908.295079,0.65,4,3992.50,53.05,1644.73,2077.18,0.00,3518293667425.343262,3518293666783.704102,205,0,0.000000,0.000020,49133523,24977956,0,0,64214,0,1,1 +1773641913.290380,0.60,4,3992.50,53.07,1644.29,2077.61,0.00,3521747514198.266602,0.000000,75,0,0.000000,0.000030,49133523,24977959,0,0,64217,0,1,1 +1773641918.295214,1.00,4,3992.50,53.09,1649.01,2078.68,0.00,3515038259683.043457,0.000000,11,0,0.000000,0.000020,49133523,24977961,0,0,64219,0,1,1 +1773641923.294456,0.70,4,3992.50,53.10,1648.83,2078.85,0.00,2.175720,0.000195,258,2,0.000000,0.000352,49133523,24977966,0,0,64222,0,1,1 +1773641928.295163,0.65,4,3992.50,53.10,1648.59,2079.09,0.00,40816.004248,41460.656181,2839235,2775369,0.000000,0.000342,49133523,24977970,0,0,64224,0,1,1 +1773641933.295209,0.65,4,3992.50,53.10,1648.59,2079.09,0.00,3518405205460.659180,3518405204827.114746,253,492,0.000000,0.000030,49133523,24977973,0,0,64227,0,1,1 +1773641938.290380,0.65,4,3992.50,53.10,1648.59,2079.09,0.00,0.000000,0.000000,253,492,0.000126,0.000175,49133533,24977985,0,0,64229,0,1,1 +1773641943.290366,0.60,4,3992.50,53.11,1648.35,2079.33,0.00,3518447382120.302734,3518447382111.285645,11,0,0.000016,0.000046,49133535,24977990,0,0,64232,0,1,1 +1773641948.290381,0.95,4,3992.50,53.11,1651.00,2079.29,0.00,0.000000,0.000000,11,0,0.000000,0.000020,49133535,24977992,0,0,64234,0,1,1 +1773641953.295170,0.60,4,3992.50,53.11,1650.36,2079.29,0.00,0.053464,0.000000,75,0,0.000000,0.000030,49133535,24977995,0,0,64237,0,1,1 +1773641958.296548,25.70,4,3992.50,59.18,1412.32,2317.16,0.00,3517468439684.880859,0.000000,11,0,46.257199,0.023333,49138540,24979626,0,0,64239,0,1,1 +1773641963.294664,33.00,4,3992.50,59.06,1417.29,2312.28,0.00,1.658339,10.679218,253,492,119.209701,0.044263,49150683,24983027,0,0,64242,0,1,1 +1773641968.294542,29.77,4,3992.50,59.00,1417.56,2310.04,0.00,0.517688,3518523327545.785645,258,2,118.369012,0.019676,49162895,24984456,0,0,64244,0,1,1 +1773641973.294430,29.46,4,3992.50,59.06,1417.23,2312.34,0.00,3518515600704.958496,3518515600707.080566,75,0,119.966777,0.040052,49175135,24987583,0,0,64247,0,1,1 +1773641978.292556,28.94,4,3992.50,59.01,1419.29,2310.26,0.00,1.604801,10.679199,253,492,118.807076,0.025808,49187277,24989604,0,0,64249,0,1,1 +1773641983.290367,29.67,4,3992.50,59.42,1403.97,2326.42,0.00,3519978290576.939941,3519978290567.918457,11,0,119.618258,0.019805,49199565,24991091,0,0,64252,0,1,1 +1773641988.293622,30.24,4,3992.50,59.23,1411.51,2318.90,0.00,0.180156,0.000000,205,0,118.684990,0.041524,49211639,24994314,0,0,64254,0,1,1 +1773641993.290369,29.47,4,3992.50,59.19,1412.82,2317.52,0.00,3520727523113.591797,0.000000,75,0,119.641902,0.028233,49223828,24996472,0,0,64257,0,1,1 +1773641998.290480,24.42,4,3992.50,59.41,1404.38,2326.07,0.00,40823.053686,41466.081093,2839242,2775730,119.762842,0.022220,49236158,24998151,0,0,64259,0,1,1 +1773642003.294588,1.05,4,3992.50,53.00,1655.51,2074.93,0.00,3515548727134.830566,3515548726490.197266,258,2,25.214469,0.008896,49238741,24998830,0,0,64262,0,1,1 +1773642008.290361,1.40,4,3992.50,53.25,1645.94,2084.78,0.00,3521414574763.948242,3521414574766.125488,11,0,0.003089,0.001421,49238797,24998868,0,0,64264,0,1,1 +1773642013.294973,0.65,4,3992.50,53.14,1650.07,2080.37,0.00,0.053466,0.000000,75,0,0.000000,0.000030,49238797,24998871,0,0,64267,0,1,1 +1773642018.294368,0.70,4,3992.50,53.12,1650.72,2079.71,0.00,3518863215131.877930,0.000000,11,0,0.000000,0.000020,49238797,24998873,0,0,64269,0,1,1 +1773642023.290460,0.65,4,3992.50,53.12,1650.72,2079.71,0.00,1.659012,10.683546,253,492,0.000000,0.000030,49238797,24998876,0,0,64272,0,1,1 +1773642028.293305,0.70,4,3992.50,53.12,1650.72,2079.71,0.00,3516436155568.875000,3516436155559.863281,11,0,0.000307,0.000574,49238804,24998889,0,0,64274,0,1,1 +1773642033.290379,0.65,4,3992.50,53.12,1650.72,2079.71,0.00,0.053547,0.000000,75,0,0.001127,0.001232,49238813,24998906,0,0,64277,0,1,1 +1773642038.294847,0.95,4,3992.50,53.12,1650.14,2079.71,0.00,1.602767,10.665664,253,492,0.000008,0.000028,49238814,24998909,0,0,64279,0,1,1 +1773642043.293856,0.65,4,3992.50,53.07,1652.09,2077.71,0.00,0.517778,3519134782326.481934,258,2,0.001139,0.001232,49238824,24998926,0,0,64282,0,1,1 +1773642048.294698,0.60,4,3992.50,53.07,1652.09,2077.71,0.00,3517844786231.457031,10.673203,253,492,0.000025,0.000051,49238826,24998930,0,0,64284,0,1,1 +1773642053.295210,0.65,4,3992.50,53.07,1652.09,2077.70,0.00,3518076879004.209961,3518076878995.193848,11,0,0.000101,0.000154,49238834,24998941,0,0,64287,0,1,1 +1773642058.294475,0.65,4,3992.50,53.07,1652.09,2077.70,0.00,40820.452906,41462.919734,2837759,2775491,0.000000,0.000664,49238834,24998947,0,0,64289,0,1,1 +1773642063.294769,0.65,4,3992.50,53.07,1652.10,2077.70,0.00,3518230283462.452637,3518230282820.117676,11,0,0.000000,0.000030,49238834,24998950,0,0,64292,0,1,1 +1773642068.290872,23.24,4,3992.50,59.84,1378.94,2342.88,0.00,0.053557,0.000000,75,0,35.683787,0.020114,49242788,25000281,0,0,64294,0,1,1 +1773642073.294758,36.45,4,3992.50,59.40,1396.24,2325.55,0.00,2.120227,0.000195,258,2,120.077796,0.025100,49255255,25002129,0,0,64297,0,1,1 +1773642078.292643,30.54,4,3992.50,59.90,1376.70,2345.27,0.00,40839.370981,41485.216716,2839269,2776129,119.019933,0.035099,49267447,25004783,0,0,64299,0,1,1 +1773642083.295003,30.96,4,3992.50,59.29,1400.44,2321.38,0.00,3516777836925.153809,3516777836282.060059,11,0,119.314562,0.038246,49279710,25007719,0,0,64302,0,1,1 +1773642088.290361,30.75,4,3992.50,59.22,1403.40,2318.44,0.00,2.177412,0.000195,258,2,120.092877,0.067168,49292282,25012960,0,0,64304,0,1,1 +1773642093.295188,30.52,4,3992.50,59.27,1401.07,2320.66,0.00,3515043966811.733398,3515043966813.906738,11,0,118.472206,0.073701,49304867,25018553,0,0,64307,0,1,1 +1773642098.293916,31.06,4,3992.50,59.77,1381.79,2340.21,0.00,1.658137,10.677912,253,492,120.010371,0.058772,49317407,25023092,0,0,64309,0,1,1 +1773642103.291432,29.80,4,3992.50,59.26,1401.64,2320.18,0.00,0.000000,0.000000,253,492,119.046185,0.085966,49330027,25029800,0,0,64312,0,1,1 +1773642108.290378,26.97,4,3992.50,59.37,1397.50,2324.38,0.00,0.517785,3519178806126.175781,258,2,119.410085,0.072410,49342651,25035435,0,0,64314,0,1,1 +1773642113.294226,1.45,4,3992.50,52.95,1648.60,2073.28,0.00,3515731407769.661133,10.666791,253,492,34.429658,0.021816,49346355,25037042,0,0,64317,0,1,1 +1773642118.295004,0.75,4,3992.50,52.98,1647.62,2074.26,0.00,40806.677104,41440.377692,2837783,2775916,0.000000,0.000020,49346355,25037044,0,0,64319,0,1,1 +1773642123.294944,0.65,4,3992.50,52.98,1647.62,2074.26,0.00,3518479829638.623535,3518479828993.624023,258,2,0.000000,0.000674,49346355,25037051,0,0,64322,0,1,1 +1773642128.290381,0.65,4,3992.50,52.98,1647.62,2074.26,0.00,40859.524671,41506.116793,2839286,2776422,0.000031,0.000045,49346357,25037055,0,0,64324,0,1,1 +1773642133.294918,1.05,4,3992.50,53.13,1641.57,2080.27,0.00,3515247629216.080078,3515247628570.663086,258,2,0.000000,0.000030,49346357,25037058,0,0,64327,0,1,1 +1773642138.292475,0.55,4,3992.50,53.12,1641.97,2079.91,0.00,3520156890005.611328,3520156890007.734375,75,0,0.000050,0.000082,49346361,25037064,0,0,64329,0,1,1 +1773642143.290605,0.70,4,3992.50,53.13,1641.67,2080.21,0.00,0.126805,0.000000,205,0,0.000000,0.000030,49346361,25037067,0,0,64332,0,1,1 +1773642148.290453,0.65,4,3992.50,53.13,1641.67,2080.21,0.00,0.000000,0.000000,205,0,0.000000,0.000020,49346361,25037069,0,0,64334,0,1,1 +1773642153.295152,0.70,4,3992.50,53.11,1642.32,2079.56,0.00,3515133891335.814941,0.000000,75,0,0.000000,0.000030,49346361,25037072,0,0,64337,0,1,1 +1773642158.290786,0.60,4,3992.50,53.13,1641.84,2080.03,0.00,40860.040654,41504.594834,2839286,2776508,0.000126,0.000175,49346371,25037084,0,0,64339,0,1,1 +1773642163.294611,1.00,4,3992.50,53.20,1639.01,2082.88,0.00,3515747273367.698730,3515747273366.774414,2837783,2776030,0.000008,0.000038,49346372,25037088,0,0,64342,0,1,1 +1773642168.294475,0.65,4,3992.50,53.20,1639.01,2082.88,0.00,3518532822903.495117,3518532822269.482910,253,492,0.000000,0.000020,49346372,25037090,0,0,64344,0,1,1 +1773642173.290457,0.70,4,3992.50,53.20,1639.00,2082.89,0.00,0.518092,3521267201320.231934,258,2,0.000000,0.000030,49346372,25037093,0,0,64347,0,1,1 +1773642178.290590,17.64,4,3992.50,59.39,1396.71,2325.14,0.00,3518343535799.058594,3518343535801.233887,11,0,30.648098,0.021765,49349813,25038589,0,0,64349,0,1,1 +1773642183.291925,36.44,4,3992.50,59.42,1395.38,2326.50,0.00,40803.849576,41446.744371,2837788,2776182,122.139925,0.026984,49362490,25040616,0,0,64352,0,1,1 +1773642188.294868,31.52,4,3992.50,59.17,1405.00,2316.76,0.00,0.000000,0.038259,2837788,2776199,122.098665,0.018358,49375123,25041948,0,0,64354,0,1,1 +1773642193.290454,29.63,4,3992.50,59.65,1386.33,2335.51,0.00,3521545464400.635742,3521545463754.785645,258,2,120.277199,0.040317,49387361,25045088,0,0,64357,0,1,1 +1773642198.291497,29.53,4,3992.50,59.61,1393.83,2333.77,0.00,3517703413134.882324,3517703413137.057129,11,0,120.150138,0.049196,49399692,25048888,0,0,64359,0,1,1 +1773642203.294996,28.71,4,3992.50,59.21,1409.45,2318.15,0.00,1.656556,10.667730,253,492,120.086792,0.037813,49412016,25051789,0,0,64362,0,1,1 +1773642208.294798,28.56,4,3992.50,59.19,1410.25,2317.30,0.00,40814.707567,41449.067277,2837788,2776304,119.279896,0.020991,49424028,25053395,0,0,64364,0,1,1 +1773642213.290983,28.26,4,3992.50,59.16,1411.20,2316.35,0.00,3521123614259.524414,3521123613615.681152,11,0,119.146784,0.037823,49436124,25056348,0,0,64367,0,1,1 +1773642218.294479,24.46,4,3992.50,59.37,1403.13,2324.52,0.00,0.053478,0.000000,75,0,120.098503,0.070476,49448622,25061864,0,0,64369,0,1,1 +1773642223.295038,1.46,4,3992.50,53.66,1629.07,2100.93,0.00,2.121637,0.000195,258,2,31.447231,0.018801,49451987,25063233,0,0,64372,0,1,1 +1773642228.294660,0.80,4,3992.50,53.22,1646.45,2083.56,0.00,3518703312226.493164,3518703312228.668945,11,0,0.000000,0.000020,49451987,25063235,0,0,64374,0,1,1 +1773642233.295163,0.65,4,3992.50,53.06,1652.75,2077.25,0.00,0.053510,0.000000,75,0,0.000000,0.000030,49451987,25063238,0,0,64377,0,1,1 +1773642238.294571,0.65,4,3992.50,53.02,1654.11,2075.89,0.00,1.604389,10.676459,253,492,0.000000,0.000020,49451987,25063240,0,0,64379,0,1,1 +1773642243.294559,0.75,4,3992.50,53.06,1652.64,2077.37,0.00,0.517677,3518445876212.096680,258,2,0.000000,0.000030,49451987,25063243,0,0,64382,0,1,1 +1773642248.290435,0.85,4,3992.50,53.08,1644.60,2078.04,0.00,3521341389414.686035,3521341389416.683105,205,0,0.000000,0.000020,49451987,25063245,0,0,64384,0,1,1 +1773642253.290824,0.70,4,3992.50,53.08,1644.31,2078.27,0.00,0.000000,0.000000,205,0,0.000000,0.000674,49451987,25063252,0,0,64387,0,1,1 +1773642258.294708,0.75,4,3992.50,53.08,1644.31,2078.27,0.00,3515706240619.803711,0.000000,11,0,0.000000,0.000020,49451987,25063254,0,0,64389,0,1,1 +1773642263.290373,0.75,4,3992.50,53.08,1644.31,2078.27,0.00,0.053562,0.000000,75,0,0.000000,0.000030,49451987,25063257,0,0,64392,0,1,1 +1773642268.294907,0.60,4,3992.50,52.88,1652.12,2070.46,0.00,40777.910740,41420.989891,2837802,2776522,0.000126,0.000175,49451997,25063269,0,0,64394,0,1,1 +1773642273.291556,0.60,4,3992.50,52.91,1651.21,2071.38,0.00,3520797397275.891113,3520797396629.673828,258,2,0.000016,0.000046,49451999,25063274,0,0,64397,0,1,1 +1773642278.290655,0.95,4,3992.50,53.22,1640.15,2083.63,0.00,3519071339906.015137,3519071339908.137207,75,0,0.000000,0.000020,49451999,25063276,0,0,64399,0,1,1 +1773642283.290577,0.90,4,3992.50,53.22,1640.16,2083.63,0.00,40815.521508,41459.244573,2837802,2776561,0.000000,0.000030,49451999,25063279,0,0,64402,0,1,1 +1773642288.295060,24.22,4,3992.50,59.16,1407.69,2316.07,0.00,3515285606253.629883,3515285605608.373535,258,2,39.425151,0.021834,49456285,25064792,0,0,64404,0,1,1 +1773642293.294084,32.64,4,3992.50,59.41,1397.81,2325.86,0.00,40830.487968,41477.509942,2839308,2777201,118.186123,0.029209,49468306,25066998,0,0,64407,0,1,1 +1773642298.290550,28.62,4,3992.50,59.24,1404.29,2319.35,0.00,3520926058581.268066,3520926057945.115234,253,492,119.249172,0.025578,49480514,25068925,0,0,64409,0,1,1 +1773642303.290663,28.64,4,3992.50,59.69,1386.71,2336.98,0.00,3518357292913.991211,3518357292904.974121,11,0,119.163066,0.023626,49492750,25070714,0,0,64412,0,1,1 +1773642308.294636,28.90,4,3992.50,59.39,1398.29,2325.44,0.00,0.000000,0.000000,11,0,119.269262,0.020738,49504957,25072297,0,0,64414,0,1,1 +1773642313.290698,29.10,4,3992.50,59.21,1406.36,2318.07,0.00,0.053558,0.000000,75,0,119.055837,0.020400,49517046,25073897,0,0,64417,0,1,1 +1773642318.290449,28.71,4,3992.50,59.28,1403.39,2320.97,0.00,0.000000,0.000000,75,0,119.566390,0.016917,49529007,25075186,0,0,64419,0,1,1 +1773642323.294987,28.81,4,3992.50,59.37,1400.10,2324.30,0.00,1.602744,10.665514,253,492,119.254341,0.020655,49540963,25076721,0,0,64422,0,1,1 +1773642328.293363,25.35,4,3992.50,59.35,1400.98,2323.51,0.00,3519580442520.516113,3519580442511.442383,75,0,119.606900,0.027301,49553193,25078748,0,0,64424,0,1,1 +1773642333.293911,1.15,4,3992.50,53.14,1643.83,2080.65,0.00,40820.304055,41465.336164,2839335,2777450,32.643595,0.008493,49556564,25079331,0,0,64427,0,1,1 +1773642338.295341,1.25,4,3992.50,53.53,1628.99,2095.71,0.00,3517431019577.974609,3517431018933.109863,11,0,0.003085,0.001419,49556620,25079369,0,0,64429,0,1,1 +1773642343.292763,1.41,4,3992.50,53.48,1630.82,2093.89,0.00,40836.229983,41480.830474,2837841,2777081,0.000205,0.000562,49556627,25079383,0,0,64432,0,1,1 +1773642348.295084,0.65,4,3992.50,53.51,1629.59,2095.12,0.00,3516804407921.701172,3516804407277.731934,11,0,0.000008,0.000028,49556628,25079386,0,0,64434,0,1,1 +1773642353.294307,0.60,4,3992.50,53.51,1629.59,2095.12,0.00,0.000000,0.000000,11,0,0.000000,0.000030,49556628,25079389,0,0,64437,0,1,1 +1773642358.291432,0.65,4,3992.50,53.51,1629.59,2095.12,0.00,0.000000,0.000000,11,0,0.000000,0.000020,49556628,25079391,0,0,64439,0,1,1 +1773642363.290381,0.85,4,3992.50,53.51,1629.60,2095.12,0.00,0.180311,0.000000,205,0,0.000000,0.000030,49556628,25079394,0,0,64442,0,1,1 +1773642368.293355,0.75,4,3992.50,53.52,1626.21,2095.61,0.00,3516345265460.960449,0.000000,11,0,0.000000,0.000020,49556628,25079396,0,0,64444,0,1,1 +1773642373.290461,0.75,4,3992.50,53.49,1627.42,2094.30,0.00,0.000000,0.000000,11,0,0.000031,0.000055,49556630,25079401,0,0,64447,0,1,1 +1773642378.294394,0.55,4,3992.50,53.49,1627.43,2094.30,0.00,0.180132,0.000000,205,0,0.000056,0.000076,49556634,25079407,0,0,64449,0,1,1 +1773642383.295220,0.80,4,3992.50,53.30,1634.84,2086.89,0.00,3517856177946.015625,0.000000,75,0,0.001338,0.001374,49556652,25079432,0,0,64452,0,1,1 +1773642388.290369,0.60,4,3992.50,53.30,1634.84,2086.89,0.00,0.000000,0.000000,75,0,0.000031,0.000690,49556654,25079440,0,0,64454,0,1,1 +1773642393.290384,0.85,4,3992.50,53.31,1634.38,2087.36,0.00,0.000000,0.000000,75,0,0.002843,0.001976,49556701,25079473,0,0,64457,0,1,1 +1773642398.295078,21.99,4,3992.50,60.02,1374.50,2349.76,0.00,2.119885,0.000195,258,2,30.019341,0.021194,49559983,25080913,0,0,64459,0,1,1 +1773642403.290787,32.71,4,3992.50,59.43,1394.63,2327.00,0.00,3521459499383.495117,3521459499385.672363,11,0,119.468755,0.019440,49572204,25082313,0,0,64462,0,1,1 +1773642408.294579,28.72,4,3992.50,59.39,1396.34,2325.33,0.00,40784.323604,41428.316103,2837847,2777363,118.871293,0.016894,49584191,25083599,0,0,64464,0,1,1 +1773642413.294407,28.54,4,3992.50,59.56,1389.59,2332.02,0.00,3518558388737.839355,3518558388093.335938,11,0,120.167014,0.018151,49596196,25084954,0,0,64467,0,1,1 +1773642418.294192,28.90,4,3992.50,59.50,1392.03,2329.72,0.00,40817.010315,41461.531150,2837847,2777390,118.771940,0.034648,49608270,25087641,0,0,64469,0,1,1 +1773642423.294938,29.01,4,3992.50,59.49,1392.43,2329.22,0.00,3517912049336.391113,3517912048691.940430,75,0,119.558439,0.056076,49620540,25091987,0,0,64472,0,1,1 +1773642428.295073,27.26,4,3992.50,59.42,1395.01,2326.60,0.00,3518342343114.880371,0.000000,11,0,118.979995,0.075851,49632937,25097877,0,0,64474,0,1,1 +1773642433.290432,30.14,4,3992.50,59.84,1383.25,2342.77,0.00,0.000000,0.000000,11,0,119.494940,0.080868,49645405,25104146,0,0,64477,0,1,1 +1773642438.291554,26.86,4,3992.50,59.54,1395.20,2330.95,0.00,40806.107193,41450.676687,2837849,2777477,119.357236,0.070520,49658040,25109691,0,0,64479,0,1,1 +1773642443.294606,1.55,4,3992.50,53.40,1635.46,2090.69,0.00,3516290848047.245605,3516290847400.750977,258,2,40.844868,0.033893,49662463,25112246,0,0,64482,0,1,1 +1773642448.293552,0.60,4,3992.50,53.41,1635.21,2090.93,0.00,40821.819260,41468.895267,2837859,2777551,0.000008,0.000028,49662464,25112249,0,0,64484,0,1,1 +1773642453.292674,0.65,4,3992.50,53.41,1635.21,2090.93,0.00,3519055245077.878418,3519055244432.820312,205,0,0.000000,0.000674,49662464,25112256,0,0,64487,0,1,1 +1773642458.294745,0.95,4,3992.50,53.53,1621.40,2095.90,0.00,1.994291,0.000195,258,2,0.000000,0.000020,49662464,25112258,0,0,64489,0,1,1 +1773642463.291877,0.55,4,3992.50,53.47,1624.04,2093.27,0.00,3520456793554.331543,3520456793556.507812,11,0,0.000000,0.000030,49662464,25112261,0,0,64492,0,1,1 +1773642468.291024,0.70,4,3992.50,53.46,1624.15,2093.16,0.00,2.175762,0.000195,258,2,0.000000,0.000020,49662464,25112263,0,0,64494,0,1,1 +1773642473.295110,0.65,4,3992.50,53.46,1624.15,2093.16,0.00,3515564043154.021484,10.666283,253,492,0.000000,0.000030,49662464,25112266,0,0,64497,0,1,1 +1773642478.291150,0.60,4,3992.50,53.46,1624.15,2093.16,0.00,3521226172831.694336,3521226172822.616699,75,0,0.000000,0.000020,49662464,25112268,0,0,64499,0,1,1 +1773642483.295167,0.65,4,3992.50,53.46,1624.15,2093.16,0.00,40792.292226,41437.745541,2839362,2778129,0.000000,0.000030,49662464,25112271,0,0,64502,0,1,1 +1773642488.294984,0.90,4,3992.50,53.52,1624.03,2095.32,0.00,3518566028501.923828,3518566027855.801758,205,0,0.000126,0.000175,49662474,25112283,0,0,64504,0,1,1 +1773642493.292099,0.65,4,3992.50,53.38,1627.42,2089.93,0.00,40838.772063,41484.341565,2837859,2777666,0.000016,0.000046,49662476,25112288,0,0,64507,0,1,1 +1773642498.295037,0.60,4,3992.50,53.18,1635.07,2082.29,0.00,9.720462,10.673808,2839362,2778163,0.000000,0.000020,49662476,25112290,0,0,64509,0,1,1 +1773642503.294556,0.65,4,3992.50,53.21,1634.08,2083.27,0.00,3518775439203.308594,3518775438555.100586,258,2,0.000000,0.000030,49662476,25112293,0,0,64512,0,1,1 +1773642508.290459,17.51,4,3992.50,59.54,1386.17,2331.14,0.00,3521322350120.285156,3521322350122.408691,75,0,24.859506,0.019398,49665208,25113638,0,0,64514,0,1,1 +1773642513.294634,35.42,4,3992.50,59.90,1372.17,2345.27,0.00,0.000000,0.000000,75,0,122.668238,0.040319,49677808,25116730,0,0,64517,0,1,1 +1773642518.293983,29.08,4,3992.50,59.59,1383.93,2333.19,0.00,40830.380491,41476.721385,2839365,2778359,121.583809,0.049156,49690143,25120444,0,0,64519,0,1,1 +1773642523.291173,28.63,4,3992.50,59.47,1388.70,2328.24,0.00,3520415748731.159668,3520415748093.615723,253,492,120.232390,0.044563,49702279,25123850,0,0,64522,0,1,1 +1773642528.295060,28.54,4,3992.50,59.33,1393.99,2323.02,0.00,3515704406845.084961,3515704406836.074707,11,0,120.068092,0.044466,49714279,25127346,0,0,64524,0,1,1 +1773642533.290570,28.98,4,3992.50,59.69,1380.14,2336.80,0.00,2.177346,0.000195,258,2,120.271901,0.037911,49726464,25130298,0,0,64527,0,1,1 +1773642538.290688,28.39,4,3992.50,59.43,1390.02,2326.98,0.00,3518354645765.222656,10.674750,253,492,119.158738,0.047216,49738412,25133963,0,0,64529,0,1,1 +1773642543.291302,28.82,4,3992.50,59.40,1391.27,2325.77,0.00,3518005204878.574219,3518005204869.377441,205,0,119.147861,0.046679,49750478,25137597,0,0,64532,0,1,1 +1773642548.293455,25.50,4,3992.50,59.35,1393.38,2323.68,0.00,0.000000,0.000000,205,0,120.111803,0.040408,49762672,25140805,0,0,64534,0,1,1 +1773642553.290503,1.56,4,3992.50,53.56,1620.14,2096.86,0.00,3520515707979.050781,0.000000,11,0,37.276575,0.011106,49766587,25141603,0,0,64537,0,1,1 +1773642558.290454,0.70,4,3992.50,53.35,1628.30,2088.71,0.00,0.000000,0.000000,11,0,0.000008,0.000028,49766588,25141606,0,0,64539,0,1,1 +1773642563.290449,0.70,4,3992.50,53.32,1629.38,2087.64,0.00,0.053516,0.000000,75,0,0.000000,0.000030,49766588,25141609,0,0,64542,0,1,1 +1773642568.294986,0.75,4,3992.50,53.10,1637.84,2079.17,0.00,1.602745,10.665518,253,492,0.000000,0.000020,49766588,25141611,0,0,64544,0,1,1 +1773642573.293739,0.60,4,3992.50,53.11,1637.60,2079.42,0.00,40824.082290,41460.707113,2837877,2778077,0.000000,0.000030,49766588,25141614,0,0,64547,0,1,1 +1773642578.295020,0.80,4,3992.50,53.30,1631.84,2086.76,0.00,0.000000,0.058579,2837877,2778104,0.000000,0.000020,49766588,25141616,0,0,64549,0,1,1 +1773642583.294480,0.95,4,3992.50,53.30,1629.79,2086.69,0.00,3518816787877.064941,3518816787240.471191,253,492,0.000000,0.000513,49766588,25141622,0,0,64552,0,1,1 +1773642588.294606,0.55,4,3992.50,53.30,1629.79,2086.68,0.00,3518348913804.541016,3518348913795.523926,11,0,0.000000,0.000181,49766588,25141625,0,0,64554,0,1,1 +1773642593.294367,0.60,4,3992.50,53.30,1629.79,2086.68,0.00,40817.509204,41463.208749,2837877,2778143,0.000000,0.000030,49766588,25141628,0,0,64557,0,1,1 +1773642598.290451,0.65,4,3992.50,53.30,1629.55,2086.93,0.00,3521194506328.573730,3521194505682.345215,75,0,0.000126,0.000175,49766598,25141640,0,0,64559,0,1,1 +1773642603.294696,0.90,4,3992.50,53.31,1629.19,2087.28,0.00,1.602838,10.666139,253,492,0.000016,0.000046,49766600,25141645,0,0,64562,0,1,1 +1773642608.294554,1.00,4,3992.50,53.20,1629.63,2083.09,0.00,0.000000,0.000000,253,492,0.000000,0.000020,49766600,25141647,0,0,64564,0,1,1 +1773642613.294986,0.70,4,3992.50,53.20,1629.46,2083.00,0.00,0.000000,0.000000,253,492,0.000000,0.000030,49766600,25141650,0,0,64567,0,1,1 +1773642618.294671,15.11,4,3992.50,59.54,1381.49,2330.95,0.00,0.517708,3518658795706.452637,258,2,12.022978,0.013655,49768101,25142568,0,0,64569,0,1,1 +1773642623.290362,33.94,4,3992.50,59.52,1381.95,2330.45,0.00,3521471894335.470703,10.684207,253,492,119.468034,0.032702,49780215,25145021,0,0,64572,0,1,1 +1773642628.290339,27.66,4,3992.50,59.51,1382.54,2329.89,0.00,40823.864704,41461.737605,2839395,2778951,118.365496,0.019836,49792367,25146458,0,0,64574,0,1,1 +1773642633.294792,28.48,4,3992.50,59.51,1382.47,2329.98,0.00,3515306364497.450195,3515306363851.084961,75,0,119.458356,0.016490,49804623,25147681,0,0,64577,0,1,1 +1773642638.290352,28.40,4,3992.50,59.40,1386.90,2325.50,0.00,40851.830020,41498.476043,2837892,2778497,118.869098,0.026050,49816777,25149683,0,0,64579,0,1,1 +1773642643.293565,28.34,4,3992.50,59.49,1389.46,2329.29,0.00,0.000000,0.069389,2837892,2778564,119.888472,0.020227,49829044,25151174,0,0,64582,0,1,1 +1773642648.294428,27.90,4,3992.50,59.48,1390.11,2328.68,0.00,0.000000,0.009080,2837892,2778577,118.341077,0.026218,49841032,25153200,0,0,64584,0,1,1 +1773642653.294096,28.46,4,3992.50,59.57,1386.54,2332.25,0.00,3518670561487.595703,3518670560850.473633,253,492,120.175439,0.035168,49853212,25155885,0,0,64587,0,1,1 +1773642658.294442,28.19,4,3992.50,59.46,1390.80,2328.00,0.00,3518193887777.888672,3518193887768.691895,205,0,118.975669,0.068652,49865684,25161200,0,0,64589,0,1,1 +1773642663.291291,4.11,4,3992.50,54.00,1604.68,2114.12,0.00,40841.250034,41487.977547,2837904,2778631,59.930964,0.029928,49872037,25163444,0,0,64592,0,1,1 +1773642668.294509,1.25,4,3992.50,53.70,1625.05,2102.35,0.00,3516174383269.651367,3516174382623.873535,75,0,0.000008,0.000028,49872038,25163447,0,0,64594,0,1,1 +1773642673.295011,0.70,4,3992.50,53.37,1637.44,2089.59,0.00,0.126745,0.000000,205,0,0.000031,0.000055,49872040,25163452,0,0,64597,0,1,1 +1773642678.290552,0.75,4,3992.50,53.23,1642.92,2084.11,0.00,40861.672419,41509.703971,2839407,2779231,0.000031,0.000045,49872042,25163456,0,0,64599,0,1,1 +1773642683.294423,0.65,4,3992.50,53.27,1641.20,2085.83,0.00,3515715719320.231445,3515715718671.285156,258,2,0.000307,0.000584,49872049,25163470,0,0,64602,0,1,1 +1773642688.294718,0.65,4,3992.50,53.27,1641.20,2085.83,0.00,40811.105093,41459.573241,2837904,2778745,0.000031,0.000045,49872051,25163474,0,0,64604,0,1,1 +1773642693.292571,0.90,4,3992.50,53.29,1640.77,2086.27,0.00,0.000000,0.008597,2837904,2778752,0.003514,0.002883,49872101,25163507,0,0,64607,0,1,1 +1773642698.290701,0.65,4,3992.50,53.26,1641.88,2085.15,0.00,0.000000,0.113324,2837904,2778762,0.000008,0.000028,49872102,25163510,0,0,64609,0,1,1 +1773642703.290455,0.80,4,3992.50,53.63,1627.20,2099.80,0.00,9.726650,10.697010,2839407,2779272,0.000000,0.000030,49872102,25163513,0,0,64612,0,1,1 +1773642708.295221,0.65,4,3992.50,53.57,1629.70,2097.30,0.00,3515086406316.876953,3515086405670.016602,75,0,0.000075,0.000113,49872108,25163521,0,0,64614,0,1,1 +1773642713.294509,0.65,4,3992.50,53.57,1629.53,2097.46,0.00,3518938619631.906738,0.000000,11,0,0.000000,0.000513,49872108,25163527,0,0,64617,0,1,1 +1773642718.294606,0.65,4,3992.50,53.38,1636.88,2090.11,0.00,0.053515,0.000000,75,0,0.000000,0.000181,49872108,25163530,0,0,64619,0,1,1 +1773642723.295077,0.60,4,3992.50,53.22,1643.29,2083.70,0.00,3518105718889.889648,0.000000,11,0,0.000000,0.000030,49872108,25163533,0,0,64622,0,1,1 +1773642728.291268,11.58,4,3992.50,59.74,1384.22,2339.02,0.00,0.180411,0.000000,205,0,2.813149,0.008561,49872721,25163996,0,0,64624,0,1,1 +1773642733.294536,35.16,4,3992.50,59.67,1386.81,2336.36,0.00,40798.576558,41445.967748,2839410,2779490,119.289569,0.026547,49885034,25165964,0,0,64627,0,1,1 +1773642738.292549,28.08,4,3992.50,59.49,1393.95,2329.23,0.00,3519836568489.427246,3519836567841.535645,11,0,118.816636,0.030238,49897341,25168264,0,0,64629,0,1,1 +1773642743.293579,28.18,4,3992.50,59.40,1397.50,2325.68,0.00,0.000000,0.000000,11,0,119.547188,0.036372,49909687,25171049,0,0,64632,0,1,1 +1773642748.293577,28.30,4,3992.50,59.64,1388.02,2335.22,0.00,40825.441029,41473.102225,2839410,2779537,119.170005,0.037061,49921833,25173869,0,0,64634,0,1,1 +1773642753.295036,28.00,4,3992.50,59.67,1387.04,2336.16,0.00,3517410310770.430176,3517410310120.783203,258,2,119.135811,0.044394,49934049,25177339,0,0,64637,0,1,1 +1773642758.291026,28.23,4,3992.50,59.45,1395.43,2327.67,0.00,3521261266755.232422,3521261266757.409668,11,0,119.267101,0.041246,49946334,25180522,0,0,64639,0,1,1 +1773642763.290360,28.66,4,3992.50,59.63,1389.97,2334.79,0.00,1.657936,10.676618,253,492,119.181025,0.021606,49958447,25182148,0,0,64642,0,1,1 +1773642768.293622,28.72,4,3992.50,59.79,1383.89,2340.83,0.00,3516143091476.307617,3516143091467.296387,11,0,119.690597,0.032103,49970722,25184637,0,0,64644,0,1,1 +1773642773.290577,5.67,4,3992.50,53.65,1624.49,2100.35,0.00,2.176716,0.000195,258,2,68.540486,0.020386,49977833,25186213,0,0,64647,0,1,1 +1773642778.294393,1.00,4,3992.50,53.64,1624.82,2100.00,0.00,3515753736713.800293,3515753736715.974121,11,0,0.002225,0.001043,49977875,25186242,0,0,64649,0,1,1 +1773642783.294359,0.70,4,3992.50,53.70,1622.43,2102.39,0.00,2.175406,0.000195,258,2,0.000000,0.000513,49977875,25186248,0,0,64652,0,1,1 +1773642788.295126,0.90,4,3992.50,53.41,1622.94,2091.29,0.00,0.000000,0.000000,258,2,0.000000,0.000181,49977875,25186251,0,0,64654,0,1,1 +1773642793.294485,0.85,4,3992.50,53.41,1622.95,2091.29,0.00,40818.892295,41468.427046,2837918,2779294,0.000000,0.000030,49977875,25186254,0,0,64657,0,1,1 +1773642798.294915,0.60,4,3992.50,53.41,1622.95,2091.29,0.00,3518134435413.760254,3518134434766.485840,75,0,0.000000,0.000020,49977875,25186256,0,0,64659,0,1,1 +1773642803.292973,0.60,4,3992.50,53.41,1622.95,2091.29,0.00,40831.642714,41479.233454,2837918,2779304,0.000000,0.000030,49977875,25186259,0,0,64662,0,1,1 +1773642808.294613,0.70,4,3992.50,53.41,1622.95,2091.29,0.00,3517283237479.780273,3517283236832.526855,205,0,0.000000,0.000020,49977875,25186261,0,0,64664,0,1,1 +1773642813.293808,0.55,4,3992.50,53.41,1622.95,2091.29,0.00,40822.229152,41469.810322,2837918,2779314,0.000000,0.000030,49977875,25186264,0,0,64667,0,1,1 +1773642818.295263,0.95,4,3992.50,53.56,1613.05,2096.96,0.00,3517413268762.344238,3517413268115.235352,11,0,0.000025,0.000051,49977877,25186268,0,0,64669,0,1,1 +1773642823.295146,0.60,4,3992.50,53.48,1616.29,2093.75,0.00,2.175441,0.000195,258,2,0.000130,0.000170,49977888,25186281,0,0,64672,0,1,1 +1773642828.290377,0.80,4,3992.50,53.53,1614.22,2095.82,0.00,0.000000,0.000000,258,2,0.000000,0.000020,49977888,25186283,0,0,64674,0,1,1 +1773642833.290373,0.65,4,3992.50,53.54,1613.98,2096.07,0.00,40813.689727,41463.212005,2837918,2779350,0.000000,0.000030,49977888,25186286,0,0,64677,0,1,1 +1773642838.296549,16.55,4,3992.50,59.38,1385.08,2324.89,0.00,3514096590397.054199,3514096589750.505859,11,0,18.808917,0.015953,49980088,25187360,0,0,64679,0,1,1 +1773642843.290902,33.59,4,3992.50,59.42,1383.67,2326.27,0.00,0.000000,0.000000,11,0,119.100076,0.029553,49992285,25189590,0,0,64682,0,1,1 +1773642848.294542,27.83,4,3992.50,59.26,1389.77,2320.26,0.00,0.000000,0.000000,11,0,118.087695,0.049339,50004404,25193338,0,0,64684,0,1,1 +1773642853.294618,33.67,4,3992.50,59.81,1367.32,2341.74,0.00,0.053515,0.000000,75,0,120.171274,0.050426,50016664,25197243,0,0,64687,0,1,1 +1773642858.294980,28.15,4,3992.50,59.32,1386.44,2322.67,0.00,3518182690881.830566,0.000000,11,0,118.576708,0.081763,50029127,25203614,0,0,64689,0,1,1 +1773642863.290361,28.28,4,3992.50,59.52,1378.73,2330.34,0.00,1.659248,10.685065,253,492,119.908604,0.110115,50041938,25212200,0,0,64692,0,1,1 +1773642868.295157,28.58,4,3992.50,59.43,1382.09,2326.99,0.00,3515065555188.952637,3515065555179.943848,11,0,118.874825,0.089170,50054572,25219177,0,0,64694,0,1,1 +1773642873.291945,28.51,4,3992.50,59.47,1380.60,2328.47,0.00,2.176789,0.000195,258,2,119.458385,0.067490,50067038,25224397,0,0,64697,0,1,1 +1773642878.294623,28.38,4,3992.50,59.42,1382.61,2326.38,0.00,40791.818179,41441.367596,2837921,2779630,119.915685,0.055040,50079650,25228685,0,0,64699,0,1,1 +1773642883.294583,2.71,4,3992.50,54.73,1569.95,2142.86,0.00,3518465702824.205078,3518465702176.477539,11,0,52.675067,0.008589,50085120,25229318,0,0,64702,0,1,1 +1773642888.295244,0.85,4,3992.50,53.95,1600.51,2112.34,0.00,0.180250,0.000000,205,0,0.001704,0.000838,50085152,25229341,0,0,64704,0,1,1 +1773642893.295064,0.60,4,3992.50,53.54,1616.60,2096.26,0.00,40817.286242,41465.256104,2837933,2779722,0.000000,0.000030,50085152,25229344,0,0,64707,0,1,1 +1773642898.290574,0.60,4,3992.50,53.41,1621.57,2091.28,0.00,0.000000,0.003128,2837933,2779725,0.000000,0.000020,50085152,25229346,0,0,64709,0,1,1 +1773642903.294624,0.80,4,3992.50,53.40,1622.32,2090.53,0.00,3515589031191.579102,3515589030544.280273,75,0,0.000000,0.000030,50085152,25229349,0,0,64712,0,1,1 +1773642908.290783,1.00,4,3992.50,53.54,1616.73,2096.12,0.00,3521142238379.225586,0.000000,11,0,0.000000,0.000020,50085152,25229351,0,0,64714,0,1,1 +1773642913.290390,0.70,4,3992.50,53.18,1630.93,2081.93,0.00,40819.208243,41467.177821,2837933,2779830,0.000000,0.000513,50085152,25229357,0,0,64717,0,1,1 +1773642918.294999,0.70,4,3992.50,53.19,1630.48,2082.38,0.00,3515196912985.978027,3515196912336.482422,258,2,0.000000,0.000181,50085152,25229360,0,0,64719,0,1,1 +1773642923.295319,1.30,4,3992.50,53.19,1630.48,2082.38,0.00,40811.212700,41461.364155,2837933,2779841,0.000000,0.000030,50085152,25229363,0,0,64722,0,1,1 +1773642928.294650,0.70,4,3992.50,53.19,1630.39,2082.47,0.00,3518908503342.383789,3518908502692.103516,258,2,0.000383,0.000668,50085165,25229382,0,0,64724,0,1,1 +1773642933.294694,0.65,4,3992.50,53.21,1629.41,2083.45,0.00,3518405857070.113770,3518405857072.289062,11,0,0.000263,0.000632,50085177,25229401,0,0,64727,0,1,1 +1773642938.294622,0.65,4,3992.50,53.21,1629.41,2083.44,0.00,0.180276,0.000000,205,0,0.000000,0.000020,50085177,25229403,0,0,64729,0,1,1 +1773642943.295364,0.95,4,3992.50,53.51,1617.83,2094.97,0.00,40809.765932,41457.924957,2837933,2779877,0.001126,0.001231,50085186,25229420,0,0,64732,0,1,1 +1773642948.292504,13.91,4,3992.50,59.63,1378.11,2334.59,0.00,3520451006861.218262,3520451006212.718750,75,0,8.221726,0.011668,50086316,25230180,0,0,64734,0,1,1 +1773642953.293547,33.17,4,3992.50,59.78,1372.39,2340.40,0.00,3517703356865.487793,0.000000,11,0,118.749780,0.049873,50098657,25233975,0,0,64737,0,1,1 +1773642958.294697,28.59,4,3992.50,59.73,1374.27,2338.44,0.00,40816.390489,41465.383818,2839441,2780539,119.573943,0.106992,50111610,25242269,0,0,64739,0,1,1 +1773642963.294745,28.05,4,3992.50,59.57,1380.48,2332.29,0.00,3518403183097.450195,3518403182448.260254,75,0,119.199067,0.112093,50124408,25250963,0,0,64742,0,1,1 +1773642968.290407,28.78,4,3992.50,59.56,1380.83,2331.88,0.00,40851.442657,41500.361657,2837938,2780115,119.303065,0.110264,50137251,25259544,0,0,64744,0,1,1 +1773642973.294571,29.13,4,3992.50,59.72,1374.67,2338.05,0.00,3515509108266.651855,3515509107627.898926,253,492,119.897714,0.107854,50150148,25267986,0,0,64747,0,1,1 +1773642978.290622,28.36,4,3992.50,59.53,1381.92,2330.81,0.00,3521218135976.202148,3521218135966.997070,205,0,118.492487,0.107768,50162953,25276370,0,0,64749,0,1,1 +1773642983.292081,28.81,4,3992.50,59.51,1382.96,2329.81,0.00,3517411309444.790527,0.000000,11,0,120.161488,0.109077,50175761,25284835,0,0,64752,0,1,1 +1773642988.290483,28.30,4,3992.50,59.55,1381.24,2331.52,0.00,0.180331,0.000000,205,0,118.834085,0.108966,50188524,25293337,0,0,64754,0,1,1 +1773642993.290455,4.82,4,3992.50,54.55,1577.18,2135.62,0.00,3518456421062.461426,0.000000,11,0,63.309524,0.062130,50195409,25297929,0,0,64757,0,1,1 +1773642998.294678,1.15,4,3992.50,54.11,1594.95,2118.48,0.00,0.000000,0.000000,11,0,0.001527,0.000692,50195438,25297950,0,0,64759,0,1,1 +1773643003.292966,0.55,4,3992.50,54.03,1597.63,2115.25,0.00,2.176136,0.000195,258,2,0.000000,0.000043,50195438,25297954,0,0,64762,0,1,1 +1773643008.292573,0.65,4,3992.50,53.91,1602.29,2110.59,0.00,40826.957626,41478.835538,2839458,2780858,0.000000,0.000020,50195438,25297956,0,0,64764,0,1,1 +1773643013.294729,0.55,4,3992.50,53.79,1606.88,2106.01,0.00,3516920981922.482422,3516920981272.931152,205,0,0.000000,0.000030,50195438,25297959,0,0,64767,0,1,1 +1773643018.295324,0.65,4,3992.50,53.72,1609.49,2103.40,0.00,1.994880,0.000195,258,2,0.000000,0.000020,50195438,25297961,0,0,64769,0,1,1 +1773643023.294949,0.60,4,3992.50,53.73,1609.25,2103.63,0.00,3518701303599.885254,3518701303602.061035,11,0,0.000000,0.000030,50195438,25297964,0,0,64772,0,1,1 +1773643028.292688,0.95,4,3992.50,53.74,1609.01,2103.88,0.00,40844.385215,41494.364071,2839458,2780877,0.000031,0.000045,50195440,25297968,0,0,64774,0,1,1 +1773643033.292704,0.95,4,3992.50,53.46,1619.76,2093.04,0.00,3518426031537.376953,3518426030885.519043,258,2,0.000008,0.000038,50195441,25297972,0,0,64777,0,1,1 +1773643038.290763,0.65,4,3992.50,53.46,1619.76,2093.04,0.00,3519803932556.938477,3519803932559.114746,11,0,0.000126,0.000175,50195451,25297984,0,0,64779,0,1,1 +1773643043.294881,0.60,4,3992.50,53.33,1624.78,2088.02,0.00,0.000000,0.000000,11,0,0.000050,0.000092,50195455,25297991,0,0,64782,0,1,1 +1773643048.292697,0.60,4,3992.50,53.36,1623.55,2089.25,0.00,1.658439,10.679860,253,492,0.000000,0.000020,50195455,25297993,0,0,64784,0,1,1 +1773643053.290457,0.65,4,3992.50,53.36,1623.55,2089.25,0.00,0.517908,3520013939980.705566,258,2,0.000000,0.000674,50195455,25298000,0,0,64787,0,1,1 +1773643058.296582,8.51,4,3992.50,59.64,1372.38,2334.86,0.00,3514132434601.268555,3514132434603.440918,11,0,1.005592,0.005352,50195734,25298209,0,0,64789,0,1,1 +1773643063.292585,35.75,4,3992.50,59.78,1366.80,2340.49,0.00,0.000000,0.000000,11,0,118.265310,0.044622,50208064,25301623,0,0,64792,0,1,1 +1773643068.294652,29.34,4,3992.50,59.64,1372.14,2335.05,0.00,2.174492,0.000195,258,2,118.348342,0.103821,50220794,25309642,0,0,64794,0,1,1 +1773643073.294334,30.21,4,3992.50,59.51,1377.07,2330.13,0.00,3518661327199.331543,3518661327201.506836,11,0,120.007311,0.108761,50233783,25318110,0,0,64797,0,1,1 +1773643078.293637,28.68,4,3992.50,59.57,1374.98,2332.32,0.00,2.175694,0.000195,258,2,118.811920,0.109093,50246548,25326643,0,0,64799,0,1,1 +1773643083.294307,29.18,4,3992.50,59.63,1372.57,2334.62,0.00,3517965655839.544434,3517965655841.539062,205,0,119.582329,0.112584,50259388,25335404,0,0,64802,0,1,1 +1773643088.290837,29.22,4,3992.50,59.48,1381.18,2328.78,0.00,40844.389448,41494.121419,2837958,2780696,119.079567,0.108308,50272152,25343831,0,0,64804,0,1,1 +1773643093.291472,29.74,4,3992.50,59.78,1371.88,2340.44,0.00,3517990039272.562988,3517990038623.544434,11,0,119.583712,0.110891,50285059,25352516,0,0,64807,0,1,1 +1773643098.292672,29.08,4,3992.50,59.51,1382.21,2330.14,0.00,0.180230,0.000000,205,0,119.368599,0.110644,50297902,25361182,0,0,64809,0,1,1 +1773643103.294393,6.83,4,3992.50,53.48,1618.32,2094.03,0.00,1.476933,10.671522,253,492,71.697183,0.069637,50305687,25366567,0,0,64812,0,1,1 +1773643108.291928,0.70,4,3992.50,53.51,1617.38,2095.00,0.00,3520172594127.693359,3520172594118.491211,205,0,0.000771,0.000464,50305704,25366581,0,0,64814,0,1,1 +1773643113.290590,0.70,4,3992.50,53.49,1618.07,2094.31,0.00,3519378973580.075684,0.000000,11,0,0.000000,0.000030,50305704,25366584,0,0,64817,0,1,1 +1773643118.290760,1.10,4,3992.50,53.59,1619.73,2098.21,0.00,0.180267,0.000000,205,0,0.000000,0.000664,50305704,25366590,0,0,64819,0,1,1 +1773643123.290378,0.65,4,3992.50,53.56,1620.74,2097.03,0.00,3518705940900.620605,0.000000,11,0,0.000000,0.000030,50305704,25366593,0,0,64822,0,1,1 +1773643128.291014,0.65,4,3992.50,53.56,1620.74,2097.03,0.00,0.053509,0.000000,75,0,0.000000,0.000020,50305704,25366595,0,0,64824,0,1,1 +1773643133.292754,0.65,4,3992.50,53.56,1620.74,2097.03,0.00,1.603641,10.671481,253,492,0.000000,0.000030,50305704,25366598,0,0,64827,0,1,1 +1773643138.295023,0.65,4,3992.50,53.56,1620.74,2097.03,0.00,0.000000,0.000000,253,492,0.000000,0.000020,50305704,25366600,0,0,64829,0,1,1 +1773643143.290349,0.70,4,3992.50,53.37,1628.14,2089.63,0.00,3521728861083.093262,3521728861074.067383,11,0,0.000000,0.000030,50305704,25366603,0,0,64832,0,1,1 +1773643148.293660,0.90,4,3992.50,53.53,1622.09,2095.96,0.00,0.000000,0.000000,11,0,0.000088,0.000144,50305711,25366613,0,0,64834,0,1,1 +1773643153.295061,0.75,4,3992.50,53.51,1622.75,2095.01,0.00,40804.883845,41454.184957,2837969,2780923,0.000054,0.000077,50305716,25366620,0,0,64837,0,1,1 +1773643158.290360,0.65,4,3992.50,53.52,1622.45,2095.31,0.00,0.000000,0.003910,2837969,2780927,0.000000,0.000020,50305716,25366622,0,0,64839,0,1,1 +1773643163.295177,0.65,4,3992.50,53.52,1622.23,2095.53,0.00,3515050372745.286133,3515050372094.251465,258,2,0.000000,0.000030,50305716,25366625,0,0,64842,0,1,1 +1773643168.292650,1.20,4,3992.50,53.49,1623.41,2094.33,0.00,0.000000,0.000000,258,2,0.002321,0.002323,50305751,25366658,0,0,64844,0,1,1 +1773643173.294924,42.27,4,3992.50,59.72,1379.29,2338.36,0.00,40805.323352,41457.718859,2839475,2781560,107.305218,0.032554,50317096,25369117,0,0,64847,0,1,1 +1773643178.294370,28.76,4,3992.50,59.73,1372.37,2338.70,0.00,3518827347595.390625,3518827347594.492188,2837972,2781086,119.782099,0.021443,50329458,25370701,0,0,64849,0,1,1 +1773643183.294757,29.36,4,3992.50,59.68,1378.29,2336.55,0.00,9.725419,10.706983,2839475,2781613,118.560738,0.031721,50341753,25373085,0,0,64852,0,1,1 +1773643188.290831,29.03,4,3992.50,59.82,1372.84,2342.07,0.00,3521201822736.885742,3521201822735.965820,2837972,2781159,119.867726,0.042911,50354141,25376406,0,0,64854,0,1,1 +1773643193.292870,29.01,4,3992.50,59.73,1376.26,2338.59,0.00,9.722208,10.676800,2839475,2781663,118.537804,0.088313,50366572,25383321,0,0,64857,0,1,1 +1773643198.294590,29.38,4,3992.50,59.72,1376.54,2338.35,0.00,3517227154688.698242,3517227154038.285645,11,0,119.954440,0.101955,50379347,25391268,0,0,64859,0,1,1 +1773643203.294895,29.15,4,3992.50,59.70,1377.68,2337.21,0.00,40823.597455,41474.322111,2839486,2781691,118.984595,0.099370,50392015,25399049,0,0,64862,0,1,1 +1773643208.292990,30.23,4,3992.50,59.90,1369.73,2345.14,0.00,3519777969033.062012,3519777969032.134277,2837984,2781220,119.637183,0.083665,50404805,25405549,0,0,64864,0,1,1 +1773643213.295174,9.40,4,3992.50,54.60,1577.10,2137.68,0.00,3516901385764.890625,3516901385115.337402,11,0,82.888559,0.038473,50413458,25408520,0,0,64867,0,1,1 +1773643218.294583,0.90,4,3992.50,53.92,1603.53,2111.23,0.00,1.657911,10.676456,253,492,0.002258,0.001069,50413502,25408551,0,0,64869,0,1,1 +1773643223.294592,0.70,4,3992.50,53.61,1615.82,2098.95,0.00,3518431029812.967773,3518431029803.950684,11,0,0.000000,0.000030,50413502,25408554,0,0,64872,0,1,1 +1773643228.294655,0.65,4,3992.50,53.54,1618.45,2096.32,0.00,1.657694,10.675060,253,492,0.000308,0.000574,50413509,25408567,0,0,64874,0,1,1 +1773643233.290373,0.70,4,3992.50,53.55,1618.21,2096.55,0.00,40849.858916,41491.293982,2837997,2781368,0.000205,0.000562,50413516,25408581,0,0,64877,0,1,1 +1773643238.290426,1.00,4,3992.50,53.64,1623.47,2100.16,0.00,3518400300158.939941,3518400299518.060547,253,492,0.000000,0.000020,50413516,25408583,0,0,64879,0,1,1 +1773643243.294558,0.70,4,3992.50,53.64,1623.48,2100.16,0.00,3515531473060.523438,3515531473051.513672,11,0,0.000204,0.000561,50413523,25408597,0,0,64882,0,1,1 +1773643248.292885,0.65,4,3992.50,53.45,1630.88,2092.77,0.00,2.176119,0.000195,258,2,0.000000,0.000664,50413523,25408603,0,0,64884,0,1,1 +1773643253.290383,0.50,4,3992.50,53.45,1630.88,2092.76,0.00,3520198437381.031738,10.680344,253,492,0.000000,0.000030,50413523,25408606,0,0,64887,0,1,1 +1773643258.294317,0.75,4,3992.50,53.45,1630.88,2092.76,0.00,3515670995269.494141,3515670995260.484375,11,0,0.000025,0.000051,50413525,25408610,0,0,64889,0,1,1 +1773643263.291795,0.70,4,3992.50,53.45,1630.88,2092.76,0.00,2.176489,0.000195,258,2,0.000109,0.000162,50413534,25408622,0,0,64892,0,1,1 +1773643268.294434,0.85,4,3992.50,53.40,1618.18,2090.81,0.00,3516580634355.067383,3516580634357.187988,75,0,0.000000,0.000020,50413534,25408624,0,0,64894,0,1,1 +1773643273.294616,0.80,4,3992.50,53.40,1618.13,2090.81,0.00,3518309440068.506348,0.000000,11,0,0.000031,0.000055,50413536,25408629,0,0,64897,0,1,1 +1773643278.295290,0.90,4,3992.50,53.40,1618.27,2090.67,0.00,0.180249,0.000000,205,0,0.001427,0.000760,50413562,25408650,0,0,64899,0,1,1 +1773643283.294689,42.09,4,3992.50,59.56,1377.05,2331.83,0.00,3518860213180.562500,0.000000,11,0,99.356225,0.036506,50424008,25411251,0,0,64902,0,1,1 +1773643288.290689,29.90,4,3992.50,59.64,1373.81,2334.98,0.00,40858.968644,41510.716831,2839503,2782123,118.484070,0.083717,50436602,25417741,0,0,64904,0,1,1 +1773643293.291293,30.68,4,3992.50,59.51,1378.91,2329.91,0.00,3518012371582.715332,3518012370940.583496,253,492,119.577253,0.089090,50449364,25424646,0,0,64907,0,1,1 +1773643298.293688,30.27,4,3992.50,59.67,1372.55,2336.25,0.00,3516752943757.849609,3516752943748.836914,11,0,118.724851,0.070004,50461862,25430073,0,0,64909,0,1,1 +1773643303.291042,30.26,4,3992.50,59.64,1374.03,2334.87,0.00,40838.164879,41488.926938,2838000,2781724,120.249999,0.079494,50474452,25436274,0,0,64912,0,1,1 +1773643308.291289,28.81,4,3992.50,59.56,1377.00,2331.88,0.00,3518263894273.500488,3518263893623.114746,11,0,118.778836,0.081849,50486925,25442706,0,0,64914,0,1,1 +1773643313.290397,29.46,4,3992.50,59.71,1371.13,2337.68,0.00,1.658011,10.677099,253,492,119.607953,0.080614,50499551,25449017,0,0,64917,0,1,1 +1773643318.293609,29.22,4,3992.50,59.79,1367.83,2341.05,0.00,0.000000,0.000000,253,492,119.318363,0.101383,50512356,25456911,0,0,64919,0,1,1 +1773643323.290394,11.70,4,3992.50,53.31,1621.61,2087.34,0.00,0.000000,0.000000,253,492,91.606656,0.079561,50522125,25463133,0,0,64922,0,1,1 +1773643328.294540,0.95,4,3992.50,53.35,1620.03,2088.91,0.00,40790.956662,41432.937605,2839519,2782316,0.003751,0.001378,50522193,25463177,0,0,64924,0,1,1 +1773643333.295410,1.10,4,3992.50,53.40,1620.25,2090.80,0.00,3517824956760.327637,3517824956106.735840,258,2,0.000249,0.000494,50522200,25463187,0,0,64927,0,1,1 +1773643338.294388,0.65,4,3992.50,53.40,1620.25,2090.80,0.00,3519156404798.847656,3519156404801.023438,11,0,0.000050,0.000082,50522204,25463193,0,0,64929,0,1,1 +1773643343.294138,0.65,4,3992.50,53.40,1620.25,2090.80,0.00,2.175499,0.000195,258,2,0.000000,0.000030,50522204,25463196,0,0,64932,0,1,1 +1773643348.295021,0.50,4,3992.50,53.30,1624.13,2086.92,0.00,40807.324082,41460.093270,2838016,2781921,0.000000,0.000020,50522204,25463198,0,0,64934,0,1,1 +1773643353.294915,0.60,4,3992.50,53.30,1624.07,2086.99,0.00,3518511708440.739258,3518511707790.016113,11,0,0.000000,0.000030,50522204,25463201,0,0,64937,0,1,1 +1773643358.294394,0.85,4,3992.50,53.40,1624.41,2090.61,0.00,0.180292,0.000000,205,0,0.000000,0.000020,50522204,25463203,0,0,64939,0,1,1 +1773643363.290447,0.65,4,3992.50,53.21,1631.81,2083.21,0.00,40848.775325,41500.349592,2838016,2781980,0.000000,0.000030,50522204,25463206,0,0,64942,0,1,1 +1773643368.290580,0.65,4,3992.50,53.21,1631.59,2083.43,0.00,0.000000,0.002344,2838016,2781983,0.000000,0.000020,50522204,25463208,0,0,64944,0,1,1 +1773643373.290392,0.60,4,3992.50,53.21,1631.59,2083.43,0.00,9.726537,10.678917,2839519,2782481,0.000076,0.000606,50522210,25463220,0,0,64947,0,1,1 +1773643378.290399,0.60,4,3992.50,53.21,1631.60,2083.43,0.00,3518432076181.866699,3518432075530.033203,11,0,0.000066,0.000259,50522216,25463229,0,0,64949,0,1,1 +1773643383.290464,0.70,4,3992.50,53.21,1631.60,2083.43,0.00,40825.899791,41477.735718,2839519,2782491,0.000000,0.000030,50522216,25463232,0,0,64952,0,1,1 +1773643388.290383,1.30,4,3992.50,53.36,1626.73,2089.14,0.00,3518494715148.984375,3518494714497.075684,75,0,0.001396,0.001367,50522240,25463254,0,0,64954,0,1,1 +1773643393.292933,37.00,4,3992.50,59.70,1378.60,2337.30,0.00,0.126693,0.000000,205,0,95.092187,0.032843,50532447,25465608,0,0,64957,0,1,1 +1773643398.293025,32.64,4,3992.50,60.03,1365.50,2350.39,0.00,1.995080,0.000195,258,2,122.170100,0.027149,50545133,25467691,0,0,64959,0,1,1 +1773643403.293057,30.49,4,3992.50,59.88,1371.25,2344.56,0.00,3518414506664.919434,10.674931,253,492,120.367947,0.025776,50557511,25469632,0,0,64962,0,1,1 +1773643408.290879,30.36,4,3992.50,59.66,1380.06,2335.80,0.00,3519970831308.982422,3519970831299.961426,11,0,120.222111,0.035324,50569844,25472383,0,0,64964,0,1,1 +1773643413.295054,30.81,4,3992.50,59.86,1372.08,2343.73,0.00,1.656332,10.666289,253,492,120.066448,0.028129,50582089,25474563,0,0,64967,0,1,1 +1773643418.290342,28.40,4,3992.50,59.82,1373.65,2342.11,0.00,0.000000,0.000000,253,492,120.076186,0.020732,50594260,25476180,0,0,64969,0,1,1 +1773643423.293455,32.36,4,3992.50,59.60,1374.73,2333.64,0.00,40789.668242,41431.512800,2838019,2782241,119.087445,0.022730,50606312,25477959,0,0,64972,0,1,1 +1773643428.294721,30.46,4,3992.50,59.40,1382.64,2325.74,0.00,3517546665249.190430,3517546664598.093750,11,0,119.336338,0.030777,50618553,25480366,0,0,64974,0,1,1 +1773643433.294982,11.04,4,3992.50,54.77,1563.96,2144.52,0.00,0.000000,0.000000,11,0,88.918535,0.029241,50627658,25482657,0,0,64977,0,1,1 +1773643438.290464,0.95,4,3992.50,53.94,1596.77,2111.70,0.00,0.000000,0.000000,11,0,0.003132,0.001570,50627717,25482698,0,0,64979,0,1,1 +1773643443.295246,0.65,4,3992.50,53.55,1611.71,2096.75,0.00,1.656131,10.664997,253,492,0.000000,0.000673,50627717,25482705,0,0,64982,0,1,1 +1773643448.292734,1.00,4,3992.50,53.32,1620.95,2087.64,0.00,3520205548936.995605,3520205548927.973633,11,0,0.000000,0.000020,50627717,25482707,0,0,64984,0,1,1 +1773643453.295059,0.60,4,3992.50,53.33,1619.93,2087.98,0.00,0.000000,0.000000,11,0,0.000000,0.000030,50627717,25482710,0,0,64987,0,1,1 +1773643458.290479,0.65,4,3992.50,53.31,1620.77,2087.15,0.00,0.053565,0.000000,75,0,0.000000,0.000020,50627717,25482712,0,0,64989,0,1,1 +1773643463.294374,0.80,4,3992.50,53.32,1620.52,2087.40,0.00,0.000000,0.000000,75,0,0.000000,0.000030,50627717,25482715,0,0,64992,0,1,1 +1773643468.290738,0.70,4,3992.50,53.32,1620.28,2087.64,0.00,1.605367,10.682964,253,492,0.000000,0.000020,50627717,25482717,0,0,64994,0,1,1 +1773643473.294425,0.60,4,3992.50,53.32,1620.28,2087.64,0.00,3515844445879.083984,3515844445870.073730,11,0,0.000000,0.000030,50627717,25482720,0,0,64997,0,1,1 +1773643478.292041,0.85,4,3992.50,53.52,1612.80,2095.23,0.00,40846.064966,41498.859141,2839533,2782930,0.000000,0.000020,50627717,25482722,0,0,64999,0,1,1 +1773643483.294271,0.90,4,3992.50,53.48,1614.38,2093.68,0.00,3516868819703.270996,3516868819050.898926,205,0,0.000126,0.000185,50627727,25482735,0,0,65002,0,1,1 +1773643488.291812,0.65,4,3992.50,53.48,1614.38,2093.68,0.00,0.000000,0.000000,205,0,0.000016,0.000036,50627729,25482739,0,0,65004,0,1,1 +1773643493.291759,0.70,4,3992.50,53.48,1614.38,2093.68,0.00,3518475114119.119141,0.000000,11,0,0.000000,0.000030,50627729,25482742,0,0,65007,0,1,1 +1773643498.295581,1.95,4,3992.50,53.43,1616.05,2092.00,0.00,1.656448,10.667040,253,492,0.001395,0.001205,50627753,25482763,0,0,65009,0,1,1 +1773643503.294617,41.61,4,3992.50,59.63,1373.57,2334.45,0.00,40823.082426,41465.782399,2838032,2782504,104.771401,0.063423,50638810,25487548,0,0,65012,0,1,1 +1773643508.290764,32.88,4,3992.50,59.65,1372.43,2335.57,0.00,0.000000,0.151484,2838032,2782648,119.057082,0.059296,50651062,25492169,0,0,65014,0,1,1 +1773643513.294576,29.43,4,3992.50,59.74,1370.55,2339.08,0.00,0.016394,0.046742,2838033,2782685,119.271219,0.051750,50663112,25496235,0,0,65017,0,1,1 +1773643518.295110,29.82,4,3992.50,59.46,1381.83,2327.82,0.00,3518061687453.254395,3518061686801.548828,11,0,119.349828,0.063501,50675195,25501214,0,0,65019,0,1,1 +1773643523.294457,29.85,4,3992.50,59.70,1372.01,2337.57,0.00,0.053523,0.000000,75,0,118.978155,0.050727,50687339,25505215,0,0,65022,0,1,1 +1773643528.291224,30.08,4,3992.50,59.50,1379.84,2329.73,0.00,40852.966921,41506.216040,2839536,2783247,119.439836,0.051080,50699450,25509191,0,0,65024,0,1,1 +1773643533.290430,29.54,4,3992.50,59.55,1378.34,2331.36,0.00,3518996100060.354980,3518996099407.478027,11,0,118.981502,0.055542,50711539,25513541,0,0,65027,0,1,1 +1773643538.291629,29.66,4,3992.50,60.06,1358.31,2351.39,0.00,40807.092014,41458.942391,2838033,2782786,119.934533,0.062992,50723731,25518509,0,0,65029,0,1,1 +1773643543.294822,10.13,4,3992.50,54.14,1590.03,2119.64,0.00,3516192179219.925781,3516192178568.154785,205,0,85.661933,0.039308,50732412,25521574,0,0,65032,0,1,1 +1773643548.292042,1.05,4,3992.50,53.51,1614.57,2095.09,0.00,3520394526413.312988,0.000000,75,0,0.003119,0.001458,50732470,25521615,0,0,65034,0,1,1 +1773643553.295181,0.55,4,3992.50,53.36,1620.62,2089.04,0.00,3516229691752.826660,0.000000,11,0,0.000000,0.000030,50732470,25521618,0,0,65037,0,1,1 +1773643558.294329,1.00,4,3992.50,53.52,1614.16,2095.50,0.00,0.000000,0.000000,11,0,0.000000,0.000020,50732470,25521620,0,0,65039,0,1,1 +1773643563.290340,0.55,4,3992.50,53.27,1624.07,2085.59,0.00,0.053558,0.000000,75,0,0.000000,0.000513,50732470,25521626,0,0,65042,0,1,1 +1773643568.291759,0.75,4,3992.50,53.29,1623.34,2086.32,0.00,1.603744,10.672167,253,492,0.000000,0.000181,50732470,25521629,0,0,65044,0,1,1 +1773643573.294570,0.90,4,3992.50,53.29,1623.37,2086.51,0.00,0.000000,0.000000,253,492,0.000031,0.000055,50732472,25521634,0,0,65047,0,1,1 +1773643578.290591,0.60,4,3992.50,53.30,1623.13,2086.75,0.00,0.518088,3521239972223.824707,258,2,0.000031,0.000045,50732474,25521638,0,0,65049,0,1,1 +1773643583.294475,0.65,4,3992.50,53.30,1622.91,2086.97,0.00,3515705946230.382812,3515705946232.502930,75,0,0.000307,0.000584,50732481,25521652,0,0,65052,0,1,1 +1773643588.294626,0.55,4,3992.50,53.30,1622.91,2086.96,0.00,1.604151,10.674873,253,492,0.000064,0.000084,50732486,25521659,0,0,65054,0,1,1 +1773643593.291253,0.85,4,3992.50,53.31,1622.70,2087.18,0.00,40842.909287,41486.580595,2838044,2782953,0.002921,0.002063,50732539,25521697,0,0,65057,0,1,1 +1773643598.295025,0.80,4,3992.50,53.53,1617.56,2095.75,0.00,9.718839,10.700130,2839547,2783463,0.000000,0.000020,50732539,25521699,0,0,65059,0,1,1 +1773643603.295285,0.65,4,3992.50,53.53,1617.51,2095.74,0.00,3518254632562.309570,3518254631909.106934,11,0,0.000000,0.000030,50732539,25521702,0,0,65062,0,1,1 +1773643608.294716,0.65,4,3992.50,53.48,1619.57,2093.68,0.00,1.657903,10.676410,253,492,0.000000,0.000020,50732539,25521704,0,0,65064,0,1,1 +1773643613.293525,39.40,4,3992.50,59.58,1380.50,2332.67,0.00,3519275327820.137695,3519275327811.118164,11,0,100.570190,0.054486,50743101,25525679,0,0,65067,0,1,1 +1773643618.293664,30.48,4,3992.50,59.59,1380.12,2333.01,0.00,0.000000,0.000000,11,0,121.563517,0.044404,50755398,25529092,0,0,65069,0,1,1 +1773643623.293196,30.08,4,3992.50,59.66,1377.51,2335.70,0.00,0.000000,0.000000,11,0,120.775288,0.048464,50767574,25532867,0,0,65072,0,1,1 +1773643628.295027,29.46,4,3992.50,59.64,1378.05,2335.12,0.00,0.000000,0.000000,11,0,120.120955,0.036928,50779853,25535715,0,0,65074,0,1,1 +1773643633.292490,29.24,4,3992.50,59.41,1386.96,2326.21,0.00,0.180365,0.000000,205,0,120.224654,0.045136,50792004,25539177,0,0,65077,0,1,1 +1773643638.294587,31.02,4,3992.50,59.34,1389.77,2323.32,0.00,1.994281,0.000195,258,2,119.513134,0.029453,50804189,25541488,0,0,65079,0,1,1 +1773643643.290370,30.04,4,3992.50,59.46,1385.03,2328.07,0.00,3521407119980.567871,3521407119982.745117,11,0,118.862011,0.043506,50816170,25544882,0,0,65082,0,1,1 +1773643648.293950,29.20,4,3992.50,59.65,1377.64,2335.44,0.00,40797.568236,41450.722000,2839551,2783750,120.076763,0.042604,50828207,25548183,0,0,65084,0,1,1 +1773643653.294404,9.69,4,3992.50,54.69,1572.07,2141.11,0.00,3518117642763.553223,3518117642107.815918,258,2,83.705693,0.033150,50836687,25550790,0,0,65087,0,1,1 +1773643658.290899,8.07,4,3992.50,55.00,1559.85,2153.31,0.00,3520905336763.215332,3520905336765.392090,11,0,0.002926,0.001173,50836742,25550827,0,0,65089,0,1,1 +1773643663.290449,1.00,4,3992.50,54.63,1575.47,2138.76,0.00,0.000000,0.000000,11,0,0.000000,0.000030,50836742,25550830,0,0,65092,0,1,1 +1773643668.294669,0.65,4,3992.50,54.32,1587.39,2126.85,0.00,1.656317,10.666194,253,492,0.000000,0.000020,50836742,25550832,0,0,65094,0,1,1 +1773643673.290382,0.65,4,3992.50,54.08,1596.91,2117.33,0.00,40873.806515,41505.667361,2840343,2783969,0.000000,0.000030,50836742,25550835,0,0,65097,0,1,1 +1773643678.294780,0.75,4,3992.50,54.08,1596.82,2117.41,0.00,3515345201929.762695,3515345201928.816406,2838840,2783478,0.000000,0.000020,50836742,25550837,0,0,65099,0,1,1 +1773643683.295220,0.70,4,3992.50,54.06,1597.53,2116.71,0.00,3518127601672.256348,3518127601032.869141,75,0,0.000000,0.000030,50836742,25550840,0,0,65102,0,1,1 +1773643688.294481,0.95,4,3992.50,54.05,1598.12,2116.33,0.00,40846.408896,41487.023449,2840343,2783992,0.000000,0.000020,50836742,25550842,0,0,65104,0,1,1 +1773643693.290493,0.70,4,3992.50,53.81,1607.40,2106.84,0.00,3521245631161.224121,3521245630520.066406,205,0,0.000000,0.000030,50836742,25550845,0,0,65107,0,1,1 +1773643698.293434,0.60,4,3992.50,53.81,1607.41,2106.83,0.00,1.476573,10.668920,253,492,0.000025,0.000694,50836744,25550853,0,0,65109,0,1,1 +1773643703.294929,0.70,4,3992.50,53.81,1607.41,2106.83,0.00,40816.835002,41447.173496,2838840,2783527,0.000117,0.000170,50836754,25550866,0,0,65112,0,1,1 +1773643708.290428,0.60,4,3992.50,53.82,1607.17,2107.06,0.00,0.000000,0.001564,2838840,2783529,0.000000,0.000020,50836754,25550868,0,0,65114,0,1,1 +1773643713.291784,0.70,4,3992.50,53.82,1607.18,2107.06,0.00,9.723534,10.676401,2840343,2784026,0.000000,0.000030,50836754,25550871,0,0,65117,0,1,1 +1773643718.294962,0.60,4,3992.50,53.82,1607.18,2107.05,0.00,3516202070991.593750,3516202070349.328125,258,2,0.000000,0.000020,50836754,25550873,0,0,65119,0,1,1 +1773643723.294705,29.35,4,3992.50,59.34,1390.56,2323.18,0.00,3518618217159.627441,10.675549,253,492,66.103050,0.035266,50843856,25553361,0,0,65122,0,1,1 +1773643728.293626,33.48,4,3992.50,59.50,1384.15,2329.57,0.00,0.000000,0.000000,253,492,122.199860,0.037471,50856431,25556184,0,0,65124,0,1,1 +1773643733.294978,30.99,4,3992.50,59.63,1378.97,2334.71,0.00,3517485629825.632812,3517485629816.564453,75,0,121.738248,0.039900,50868983,25559235,0,0,65127,0,1,1 +1773643738.293616,30.88,4,3992.50,59.70,1376.30,2337.36,0.00,40841.772077,41481.744395,2838842,2783720,120.601744,0.031926,50881368,25561661,0,0,65129,0,1,1 +1773643743.290701,30.89,4,3992.50,59.61,1380.02,2333.70,0.00,3520489585317.005371,3520489584676.707520,205,0,119.835321,0.024124,50893655,25563562,0,0,65132,0,1,1 +1773643748.290587,29.76,4,3992.50,59.54,1382.55,2331.09,0.00,3518517829385.801270,0.000000,75,0,119.569564,0.025554,50905995,25565531,0,0,65134,0,1,1 +1773643753.294920,31.37,4,3992.50,59.70,1375.83,2337.34,0.00,40795.283156,41434.605265,2838842,2783768,119.460388,0.022832,50918233,25567318,0,0,65137,0,1,1 +1773643758.294867,30.18,4,3992.50,59.33,1390.38,2322.81,0.00,3518474734807.246094,3518474734167.416504,11,0,119.768243,0.030993,50930578,25569744,0,0,65139,0,1,1 +1773643763.294545,17.16,4,3992.50,53.21,1629.76,2083.45,0.00,40843.133164,41484.041700,2840353,2784314,116.165255,0.034065,50942319,25572403,0,0,65142,0,1,1 +1773643768.295262,0.80,4,3992.50,53.06,1635.62,2077.59,0.00,0.099205,0.096080,2840362,2784338,0.003959,0.002475,50942402,25572467,0,0,65144,0,1,1 +1773643773.294048,0.70,4,3992.50,53.07,1635.54,2077.67,0.00,3519291659096.067871,3519291658454.994629,75,0,0.000000,0.000030,50942402,25572470,0,0,65147,0,1,1 +1773643778.294729,1.00,4,3992.50,53.16,1636.62,2081.36,0.00,0.126741,0.000000,205,0,0.000000,0.000020,50942402,25572472,0,0,65149,0,1,1 +1773643783.294593,0.90,4,3992.50,53.05,1640.70,2077.13,0.00,3518532990388.137695,0.000000,75,0,0.000000,0.000030,50942402,25572475,0,0,65152,0,1,1 +1773643788.294905,0.65,4,3992.50,53.05,1640.70,2077.12,0.00,3518217748792.768555,0.000000,11,0,0.000000,0.000020,50942402,25572477,0,0,65154,0,1,1 +1773643793.294819,0.55,4,3992.50,53.05,1640.70,2077.12,0.00,40841.300561,41482.316480,2840362,2784445,0.000000,0.000030,50942402,25572480,0,0,65157,0,1,1 +1773643798.294545,1.20,4,3992.50,52.99,1643.28,2074.55,0.00,3518630239508.376465,3518630238865.161133,258,2,0.000000,0.000020,50942402,25572482,0,0,65159,0,1,1 +1773643803.290665,1.00,4,3992.50,53.02,1641.88,2075.95,0.00,3521169105819.253418,3521169105821.250488,205,0,0.000000,0.000030,50942402,25572485,0,0,65162,0,1,1 +1773643808.294773,0.80,4,3992.50,53.22,1633.61,2083.79,0.00,40806.906151,41447.713301,2840371,2784505,0.000000,0.000020,50942402,25572487,0,0,65164,0,1,1 +1773643813.295192,0.50,4,3992.50,53.24,1633.05,2084.28,0.00,3518142449751.863281,3518142449750.931641,2838868,2784029,0.000126,0.000185,50942412,25572500,0,0,65167,0,1,1 +1773643818.293739,0.60,4,3992.50,53.24,1633.05,2084.27,0.00,0.000000,0.001563,2838868,2784031,0.000016,0.000036,50942414,25572504,0,0,65169,0,1,1 +1773643823.293422,0.55,4,3992.50,53.24,1633.05,2084.27,0.00,9.726788,10.682318,2840371,2784527,0.000000,0.000030,50942414,25572507,0,0,65172,0,1,1 +1773643828.294724,0.60,4,3992.50,53.24,1633.05,2084.27,0.00,3517521509383.039551,3517521509382.095703,2838868,2784038,0.000308,0.000574,50942421,25572520,0,0,65174,0,1,1 +1773643833.290882,26.09,4,3992.50,59.63,1382.73,2334.46,0.00,9.787598,10.697477,2840376,2784576,57.931447,0.029424,50948670,25574554,0,0,65177,0,1,1 +1773643838.294435,33.74,4,3992.50,59.83,1377.00,2342.64,0.00,3515939306935.724609,3515939306304.047363,253,492,122.081776,0.025084,50961111,25576443,0,0,65179,0,1,1 +1773643843.291121,29.41,4,3992.50,59.31,1395.30,2322.31,0.00,3520770302950.963379,3520770302941.940430,11,0,120.249433,0.027635,50973473,25578515,0,0,65182,0,1,1 +1773643848.291002,29.44,4,3992.50,59.57,1385.32,2332.34,0.00,0.180278,0.000000,205,0,120.189558,0.084867,50986076,25585158,0,0,65184,0,1,1 +1773643853.293934,30.21,4,3992.50,59.38,1392.77,2324.86,0.00,3516375169210.271484,0.000000,75,0,120.111394,0.073077,50998664,25590888,0,0,65187,0,1,1 +1773643858.291377,30.34,4,3992.50,59.45,1390.23,2327.40,0.00,2.122961,0.000195,258,2,119.813757,0.068857,51011119,25596261,0,0,65189,0,1,1 +1773643863.290693,28.98,4,3992.50,59.58,1385.10,2332.51,0.00,40834.348082,41477.150942,2838873,2784278,119.215457,0.053789,51023552,25600497,0,0,65192,0,1,1 +1773643868.294780,29.45,4,3992.50,59.41,1391.53,2326.11,0.00,0.000000,0.016100,2838873,2784289,119.467573,0.020303,51035813,25602062,0,0,65194,0,1,1 +1773643873.294033,19.48,4,3992.50,59.36,1393.76,2323.96,0.00,3518962620960.065918,3518962620328.433105,253,492,120.183381,0.027895,51048110,25604246,0,0,65197,0,1,1 +1773643878.294589,1.20,4,3992.50,53.98,1609.45,2113.39,0.00,3518046178048.905273,3518046178039.835938,75,0,6.211241,0.004382,51048815,25604510,0,0,65199,0,1,1 +1773643883.294396,0.70,4,3992.50,53.39,1632.65,2090.19,0.00,3518572989911.112305,0.000000,11,0,0.000316,0.000592,51048823,25604525,0,0,65202,0,1,1 +1773643888.290380,0.65,4,3992.50,53.19,1640.29,2082.55,0.00,2.177139,0.000195,258,2,0.000031,0.000045,51048825,25604529,0,0,65204,0,1,1 +1773643893.292685,0.95,4,3992.50,53.19,1640.18,2082.66,0.00,3516816077647.755859,3516816077649.876465,75,0,0.002842,0.001959,51048872,25604560,0,0,65207,0,1,1 +1773643898.295254,1.00,4,3992.50,53.21,1630.35,2083.32,0.00,40819.790820,41461.139846,2840389,2784915,0.000000,0.000663,51048872,25604566,0,0,65209,0,1,1 +1773643903.291306,0.70,4,3992.50,53.03,1637.45,2076.23,0.00,3521217708170.952637,3521217707537.845215,253,492,0.000000,0.000030,51048872,25604569,0,0,65212,0,1,1 +1773643908.294584,0.65,4,3992.50,53.04,1636.98,2076.69,0.00,3516131856326.714844,3516131856317.703613,11,0,0.000000,0.000020,51048872,25604571,0,0,65214,0,1,1 +1773643913.295145,0.55,4,3992.50,53.05,1636.50,2077.18,0.00,1.657529,10.673999,253,492,0.000000,0.000030,51048872,25604574,0,0,65217,0,1,1 +1773643918.294662,0.75,4,3992.50,53.05,1636.50,2077.18,0.00,3518776586438.240234,3518776586429.222168,11,0,0.000000,0.000020,51048872,25604576,0,0,65219,0,1,1 +1773643923.293114,0.60,4,3992.50,53.05,1636.50,2077.18,0.00,40853.463989,41495.426029,2840389,2784961,0.000076,0.000123,51048878,25604585,0,0,65222,0,1,1 +1773643928.295044,0.95,4,3992.50,53.15,1638.05,2081.08,0.00,3517079549311.619141,3517079548679.117676,253,492,0.000039,0.000053,51048881,25604590,0,0,65224,0,1,1 +1773643933.294649,0.65,4,3992.50,53.15,1637.65,2081.07,0.00,3518715074069.768555,3518715074060.750488,11,0,0.000000,0.000030,51048881,25604593,0,0,65227,0,1,1 +1773643938.294617,0.70,4,3992.50,53.15,1637.65,2081.06,0.00,0.180275,0.000000,205,0,0.000101,0.000144,51048889,25604603,0,0,65229,0,1,1 +1773643943.294537,28.79,4,3992.50,59.97,1370.80,2347.90,0.00,3518493646928.514160,0.000000,11,0,60.100806,0.048490,51055521,25608133,0,0,65232,0,1,1 +1773643948.291683,34.59,4,3992.50,60.05,1367.70,2350.99,0.00,0.180376,0.000000,205,0,123.357838,0.062895,51068224,25612929,0,0,65234,0,1,1 +1773643953.294348,28.95,4,3992.50,60.09,1366.08,2352.49,0.00,1.994054,0.000195,258,2,121.337850,0.018735,51080053,25614319,0,0,65237,0,1,1 +1773643958.292764,29.93,4,3992.50,59.81,1377.02,2341.62,0.00,3519551990370.687500,3519551990372.810059,75,0,120.296926,0.022050,51091733,25616050,0,0,65239,0,1,1 +1773643963.295472,30.10,4,3992.50,59.78,1379.96,2340.57,0.00,3516533006963.182617,0.000000,11,0,119.853358,0.022342,51103381,25617798,0,0,65242,0,1,1 +1773643968.292880,30.04,4,3992.50,59.90,1375.38,2345.09,0.00,0.180367,0.000000,205,0,119.674193,0.026544,51115130,25619815,0,0,65244,0,1,1 +1773643973.290351,29.86,4,3992.50,59.76,1380.94,2339.54,0.00,40851.677924,41493.318909,2838922,2784820,119.242966,0.030096,51126808,25622120,0,0,65247,0,1,1 +1773643978.294583,30.68,4,3992.50,59.88,1376.16,2344.33,0.00,3515461530950.450684,3515461530309.856934,11,0,119.675916,0.031861,51138485,25624619,0,0,65249,0,1,1 +1773643983.292305,19.20,4,3992.50,59.93,1374.03,2346.55,0.00,0.053540,0.000000,75,0,119.251699,0.033462,51150046,25627185,0,0,65252,0,1,1 +1773643988.294673,1.30,4,3992.50,54.52,1581.15,2134.69,0.00,2.120871,0.000195,258,2,2.669459,0.002838,51150381,25627327,0,0,65254,0,1,1 +1773643993.293671,0.80,4,3992.50,54.03,1600.48,2115.32,0.00,40837.286475,41481.043119,2838932,2784965,0.000000,0.000030,51150381,25627330,0,0,65257,0,1,1 +1773643998.294465,0.70,4,3992.50,53.80,1609.44,2106.36,0.00,3517878286949.987793,3517878286308.583984,75,0,0.000000,0.000020,51150381,25627332,0,0,65259,0,1,1 +1773644003.294913,0.45,4,3992.50,53.71,1613.09,2102.71,0.00,40837.290688,41479.696099,2840435,2785465,0.000000,0.000030,51150381,25627335,0,0,65262,0,1,1 +1773644008.294132,0.50,4,3992.50,53.68,1614.14,2101.66,0.00,3518986498021.880859,3518986497379.371094,11,0,0.000000,0.000020,51150381,25627337,0,0,65264,0,1,1 +1773644013.291618,0.60,4,3992.50,53.69,1613.91,2101.89,0.00,0.000000,0.000000,11,0,0.000000,0.000030,51150381,25627340,0,0,65267,0,1,1 +1773644018.290614,0.75,4,3992.50,53.69,1619.45,2102.10,0.00,40839.468895,41481.112524,2838932,2784997,0.000000,0.000020,51150381,25627342,0,0,65269,0,1,1 +1773644023.290445,0.55,4,3992.50,53.67,1618.19,2101.25,0.00,9.726501,10.696065,2840435,2785514,0.000000,0.000030,51150381,25627345,0,0,65272,0,1,1 +1773644028.293823,0.70,4,3992.50,53.68,1617.95,2101.49,0.00,3516061515060.875488,3516061514418.645020,205,0,0.000000,0.000342,51150381,25627349,0,0,65274,0,1,1 +1773644033.295079,0.60,4,3992.50,53.67,1618.33,2101.11,0.00,3517553590978.837402,0.000000,11,0,0.000126,0.000507,51150391,25627364,0,0,65277,0,1,1 +1773644038.293603,0.60,4,3992.50,53.67,1618.33,2101.11,0.00,40843.329414,41485.067300,2838932,2785033,0.000016,0.000036,51150393,25627368,0,0,65279,0,1,1 +1773644043.294795,0.75,4,3992.50,53.67,1618.33,2101.11,0.00,3517598955175.833984,3517598954534.384766,75,0,0.000000,0.000030,51150393,25627371,0,0,65282,0,1,1 +1773644048.294894,0.50,4,3992.50,53.67,1618.33,2101.10,0.00,2.121833,0.000195,258,2,0.000000,0.000020,51150393,25627373,0,0,65284,0,1,1 +1773644053.291102,1.05,4,3992.50,53.62,1619.45,2099.41,0.00,3521107664116.333008,3521107664118.510254,11,0,0.002431,0.002038,51150426,25627407,0,0,65287,0,1,1 +1773644058.294718,40.08,4,3992.50,59.76,1378.92,2339.91,0.00,40811.486627,41453.658565,2840437,2785693,102.072525,0.033143,51161213,25629858,0,0,65289,0,1,1 +1773644063.291302,32.51,4,3992.50,59.98,1370.38,2348.38,0.00,3520842859274.011719,3520842858628.759277,258,2,122.654175,0.021048,51173788,25631415,0,0,65292,0,1,1 +1773644068.294548,30.95,4,3992.50,59.78,1378.12,2340.69,0.00,3516154139759.206543,3516154139761.327148,75,0,121.696157,0.031492,51186383,25633761,0,0,65294,0,1,1 +1773644073.295165,30.14,4,3992.50,59.64,1383.79,2334.99,0.00,0.000000,0.000000,75,0,120.153987,0.024952,51198760,25635633,0,0,65297,0,1,1 +1773644078.293407,30.02,4,3992.50,59.79,1377.76,2341.00,0.00,0.000000,0.000000,75,0,119.804655,0.015975,51210850,25636871,0,0,65299,0,1,1 +1773644083.291043,29.12,4,3992.50,60.01,1356.99,2349.41,0.00,40860.262153,41503.401635,2840437,2785793,119.419007,0.016746,51222932,25638135,0,0,65302,0,1,1 +1773644088.290816,29.90,4,3992.50,59.76,1366.64,2339.78,0.00,3518597389485.488770,3518597388842.677734,11,0,119.771339,0.026319,51235142,25640162,0,0,65304,0,1,1 +1773644093.294122,30.80,4,3992.50,59.53,1375.80,2330.62,0.00,40804.287204,41445.866014,2838934,2785356,119.685585,0.020002,51247331,25641692,0,0,65307,0,1,1 +1773644098.290627,9.80,4,3992.50,54.93,1555.70,2150.79,0.00,3520898201251.559570,3520898200609.107422,11,0,80.169308,0.019231,51255527,25643068,0,0,65309,0,1,1 +1773644103.295152,0.95,4,3992.50,54.21,1584.07,2122.42,0.00,0.000000,0.000000,11,0,0.001773,0.000906,51255564,25643097,0,0,65312,0,1,1 +1773644108.294797,0.60,4,3992.50,53.75,1602.20,2104.29,0.00,40834.329855,41476.518164,2838950,2785472,0.000000,0.000020,51255564,25643099,0,0,65314,0,1,1 +1773644113.294423,1.00,4,3992.50,53.63,1603.00,2099.71,0.00,3518700561086.005371,3518700560443.814453,11,0,0.000000,0.000030,51255564,25643102,0,0,65317,0,1,1 +1773644118.294668,0.70,4,3992.50,53.61,1603.61,2099.10,0.00,40839.159354,41482.294830,2840453,2786027,0.000000,0.000020,51255564,25643104,0,0,65319,0,1,1 +1773644123.295111,0.60,4,3992.50,53.63,1602.88,2099.84,0.00,3518125594398.073242,3518125593752.788574,258,2,0.000000,0.000030,51255564,25643107,0,0,65322,0,1,1 +1773644128.292708,0.60,4,3992.50,53.52,1607.14,2095.57,0.00,0.000000,0.000000,258,2,0.000308,0.000575,51255571,25643120,0,0,65324,0,1,1 +1773644133.290367,0.55,4,3992.50,53.52,1607.14,2095.57,0.00,3520085626963.386719,3520085626965.383301,205,0,0.000205,0.000562,51255578,25643134,0,0,65327,0,1,1 +1773644138.290507,0.80,4,3992.50,53.62,1604.59,2099.48,0.00,1.477400,10.674896,253,492,0.000000,0.000020,51255578,25643136,0,0,65329,0,1,1 +1773644143.290387,0.55,4,3992.50,53.64,1604.10,2099.93,0.00,40840.484237,41474.712269,2840453,2786062,0.000280,0.000655,51255591,25643156,0,0,65332,0,1,1 +1773644148.293652,0.65,4,3992.50,53.64,1604.10,2099.93,0.00,3516141182000.424805,3516141181366.626465,253,492,0.000058,0.000127,51255596,25643164,0,0,65334,0,1,1 +1773644153.292797,0.55,4,3992.50,53.64,1604.11,2099.93,0.00,40836.757271,41470.154116,2838950,2785595,0.000000,0.000030,51255596,25643167,0,0,65337,0,1,1 +1773644158.294064,0.70,4,3992.50,53.47,1610.76,2093.27,0.00,3517546038568.086426,3517546037934.958008,253,492,0.000000,0.000020,51255596,25643169,0,0,65339,0,1,1 +1773644163.290361,10.74,4,3992.50,59.44,1376.95,2327.06,0.00,40860.038472,41493.812520,2838952,2785629,3.613775,0.009104,51256270,25643690,0,0,65342,0,1,1 +1773644168.290609,37.59,4,3992.50,59.77,1365.41,2339.99,0.00,3518263019661.511719,3518263019019.221191,11,0,118.158983,0.034597,51268378,25646285,0,0,65344,0,1,1 +1773644173.294619,30.63,4,3992.50,59.42,1376.93,2326.23,0.00,40808.426479,41451.354680,2840455,2786284,119.071691,0.020617,51280725,25647836,0,0,65347,0,1,1 +1773644178.290650,30.42,4,3992.50,59.35,1379.65,2323.55,0.00,3521232915001.342285,3521232914357.386719,11,0,119.262537,0.023530,51293149,25649615,0,0,65349,0,1,1 +1773644183.294787,30.28,4,3992.50,59.57,1370.70,2332.48,0.00,0.053471,0.000000,75,0,118.986149,0.040164,51305572,25652661,0,0,65352,0,1,1 +1773644188.290755,30.44,4,3992.50,59.38,1378.05,2325.05,0.00,40864.335479,41507.420468,2838952,2785826,119.350075,0.027875,51317787,25654810,0,0,65354,0,1,1 +1773644193.290370,30.31,4,3992.50,59.44,1376.05,2327.10,0.00,3518708107168.713379,3518708106525.970703,205,0,119.176916,0.024175,51330123,25656609,0,0,65357,0,1,1 +1773644198.290457,30.53,4,3992.50,59.43,1376.32,2326.86,0.00,3518376512666.124023,0.000000,11,0,119.163195,0.023462,51342417,25658450,0,0,65359,0,1,1 +1773644203.294653,30.56,4,3992.50,59.40,1374.66,2325.65,0.00,2.173566,0.000195,258,2,119.464063,0.036510,51354630,25661287,0,0,65362,0,1,1 +1773644208.294770,6.33,4,3992.50,52.77,1634.49,2065.92,0.00,3518354645763.618652,3518354645765.740234,75,0,69.097057,0.025745,51361757,25663201,0,0,65364,0,1,1 +1773644213.291361,0.65,4,3992.50,52.79,1633.52,2066.89,0.00,3520838428437.185059,0.000000,11,0,0.000176,0.000191,51361760,25663206,0,0,65367,0,1,1 +1773644218.291633,0.70,4,3992.50,52.80,1633.29,2067.12,0.00,0.180264,0.000000,205,0,0.000000,0.000020,51361760,25663208,0,0,65369,0,1,1 +1773644223.292581,0.70,4,3992.50,52.80,1633.07,2067.34,0.00,1.477161,10.673172,253,492,0.000000,0.000030,51361760,25663211,0,0,65372,0,1,1 +1773644228.295235,0.90,4,3992.50,53.05,1627.27,2076.87,0.00,40808.253761,41441.802845,2838963,2785988,0.000031,0.000045,51361762,25663215,0,0,65374,0,1,1 +1773644233.294846,0.55,4,3992.50,53.08,1625.84,2078.34,0.00,9.726929,10.678565,2840466,2786485,0.000008,0.000682,51361763,25663223,0,0,65377,0,1,1 +1773644238.290566,0.75,4,3992.50,53.10,1625.11,2079.08,0.00,3521451170334.136230,3521451170333.215332,2838963,2786021,0.000050,0.000082,51361767,25663229,0,0,65379,0,1,1 +1773644243.290615,0.55,4,3992.50,53.07,1626.57,2077.61,0.00,3518402920621.280273,3518402919978.352051,11,0,0.000000,0.000030,51361767,25663232,0,0,65382,0,1,1 +1773644248.290368,0.65,4,3992.50,53.07,1626.35,2077.83,0.00,40843.313079,41487.239878,2840466,2786524,0.000000,0.000020,51361767,25663234,0,0,65384,0,1,1 +1773644253.290856,0.65,4,3992.50,53.09,1625.65,2078.52,0.00,3518093734546.011719,3518093733902.179199,11,0,0.000101,0.000154,51361775,25663245,0,0,65387,0,1,1 +1773644258.294388,0.85,4,3992.50,53.38,1620.91,2089.79,0.00,0.180146,0.000000,205,0,0.000025,0.000051,51361777,25663249,0,0,65389,0,1,1 +1773644263.291503,0.55,4,3992.50,53.38,1618.92,2089.79,0.00,40854.966227,41498.524604,2838963,2786075,0.000000,0.000030,51361777,25663252,0,0,65392,0,1,1 +1773644268.295199,0.65,4,3992.50,53.38,1618.92,2089.79,0.00,3515838055236.436035,3515838054593.724121,205,0,0.000000,0.000020,51361777,25663254,0,0,65394,0,1,1 +1773644273.294612,15.56,4,3992.50,59.96,1360.96,2347.64,0.00,1.995351,0.000195,258,2,19.408962,0.018383,51364133,25664447,0,0,65397,0,1,1 +1773644278.291080,35.96,4,3992.50,59.80,1367.13,2341.46,0.00,0.000000,0.000000,258,2,119.283763,0.041010,51376599,25667604,0,0,65399,0,1,1 +1773644283.294574,30.49,4,3992.50,59.65,1373.13,2335.56,0.00,3515979879292.251465,3515979879294.425781,11,0,118.283738,0.018439,51388939,25668984,0,0,65402,0,1,1 +1773644288.290352,30.68,4,3992.50,59.60,1375.29,2333.49,0.00,0.053561,0.000000,75,0,119.669287,0.017023,51401422,25670258,0,0,65404,0,1,1 +1773644293.294287,30.21,4,3992.50,59.70,1371.22,2337.43,0.00,1.602938,10.666799,253,492,118.675408,0.028423,51413808,25672442,0,0,65407,0,1,1 +1773644298.294257,30.82,4,3992.50,59.46,1376.54,2328.03,0.00,0.517679,3518458717210.663574,258,2,119.971902,0.035647,51426173,25675185,0,0,65409,0,1,1 +1773644303.294913,30.22,4,3992.50,59.52,1374.36,2330.24,0.00,40833.768799,41480.193600,2840468,2786824,118.752256,0.028560,51438390,25677348,0,0,65412,0,1,1 +1773644308.294661,29.96,4,3992.50,59.52,1374.18,2330.42,0.00,3518613956579.988281,3518613955933.445801,258,2,119.580228,0.051135,51450701,25681327,0,0,65414,0,1,1 +1773644313.292581,30.38,4,3992.50,59.58,1371.87,2332.78,0.00,0.000000,0.000000,258,2,119.432458,0.074967,51463275,25687192,0,0,65417,0,1,1 +1773644318.294581,2.41,4,3992.50,54.73,1562.25,2142.78,0.00,3517030270160.051270,3517030270162.045898,205,0,52.459503,0.023026,51468789,25688922,0,0,65419,0,1,1 +1773644323.290419,0.65,4,3992.50,54.10,1586.57,2118.12,0.00,3521369007754.734375,0.000000,11,0,0.000000,0.000030,51468789,25688925,0,0,65422,0,1,1 +1773644328.290358,0.85,4,3992.50,53.65,1604.35,2100.34,0.00,0.000000,0.000000,11,0,0.000000,0.000020,51468789,25688927,0,0,65424,0,1,1 +1773644333.294981,0.75,4,3992.50,53.54,1608.48,2096.21,0.00,0.180107,0.000000,205,0,0.000000,0.000030,51468789,25688930,0,0,65427,0,1,1 +1773644338.293545,0.55,4,3992.50,53.53,1608.84,2095.85,0.00,40843.275781,41487.128774,2838977,2786469,0.000000,0.000020,51468789,25688932,0,0,65429,0,1,1 +1773644343.295151,0.65,4,3992.50,53.45,1611.95,2092.74,0.00,3517306996112.481934,3517306995469.200684,11,0,0.000000,0.000030,51468789,25688935,0,0,65432,0,1,1 +1773644348.292287,0.70,4,3992.50,53.47,1611.37,2093.32,0.00,0.180377,0.000000,205,0,0.000000,0.000020,51468789,25688937,0,0,65434,0,1,1 +1773644353.294493,1.05,4,3992.50,53.67,1604.53,2101.16,0.00,1.476790,10.670488,253,492,0.000000,0.000030,51468789,25688940,0,0,65437,0,1,1 +1773644358.294307,0.70,4,3992.50,53.67,1604.53,2101.16,0.00,40841.309257,41476.935190,2840480,2787036,0.000000,0.000053,51468789,25688943,0,0,65439,0,1,1 +1773644363.290717,0.70,4,3992.50,53.67,1604.32,2101.38,0.00,3520965304224.963379,3520965303579.880371,11,0,0.000126,0.000830,51468799,25688960,0,0,65442,0,1,1 +1773644368.293192,0.55,4,3992.50,53.69,1603.58,2102.11,0.00,1.656895,10.669915,253,492,0.000016,0.000036,51468801,25688964,0,0,65444,0,1,1 +1773644373.291305,18.43,4,3992.50,60.53,1335.66,2370.02,0.00,40845.502517,41480.405369,2838980,2786587,2.877531,0.038826,51471080,25691747,0,0,65447,0,1,1 +1773644378.290375,2.34,4,3992.50,60.96,1313.82,2386.89,0.00,3519091950008.250000,3519091949373.468262,253,492,3.574974,0.048250,51474050,25695311,0,0,65449,0,1,1 +1773644383.290297,2.48,4,3992.50,60.70,1324.37,2376.41,0.00,3518491357759.839844,3518491357750.822754,11,0,3.483544,0.041603,51476855,25698494,0,0,65452,0,1,1 +1773644388.294903,2.48,4,3992.50,60.49,1332.28,2368.50,0.00,40803.881662,41448.066306,2840483,2787213,3.495061,0.039049,51479556,25701513,0,0,65454,0,1,1 +1773644393.293889,2.18,4,3992.50,60.25,1342.04,2358.87,0.00,3519151227756.072754,3519151227111.163574,11,0,3.463948,0.044364,51482509,25704827,0,0,65457,0,1,1 +1773644398.294441,2.28,4,3992.50,60.24,1342.02,2358.70,0.00,0.180254,0.000000,205,0,3.495792,0.038245,51485169,25707793,0,0,65459,0,1,1 +1773644403.294588,2.58,4,3992.50,60.46,1333.58,2367.08,0.00,40830.374845,41474.405702,2838990,2786750,3.492563,0.043106,51488059,25711072,0,0,65462,0,1,1 +1773644408.290566,2.53,4,3992.50,60.33,1338.69,2361.87,0.00,3521269160746.469238,3521269160101.900879,205,0,3.430433,0.043279,51490987,25714324,0,0,65464,0,1,1 +1773644413.294306,1.87,4,3992.50,60.36,1334.80,2363.35,0.00,3515807773516.768555,0.000000,11,0,3.507181,0.040551,51493821,25717428,0,0,65467,0,1,1 +1773644418.294991,1.92,4,3992.50,60.45,1333.25,2366.88,0.00,1.657488,10.673734,253,492,3.446612,0.041053,51496644,25720552,0,0,65469,0,1,1 +1773644423.294956,1.72,4,3992.50,60.55,1329.32,2370.83,0.00,0.517679,3518461718476.855469,258,2,3.481692,0.037941,51499290,25723477,0,0,65472,0,1,1 +1773644428.290592,1.82,4,3992.50,60.66,1325.25,2374.89,0.00,3521510144132.937500,3521510144135.061035,75,0,3.495943,0.039660,51501972,25726445,0,0,65474,0,1,1 +1773644433.291079,1.92,4,3992.50,60.68,1324.47,2375.69,0.00,40827.738184,41471.745470,2838992,2786926,3.456935,0.042622,51504832,25729575,0,0,65477,0,1,1 +1773644438.290806,1.97,4,3992.50,60.40,1335.32,2364.84,0.00,3518629229613.085938,3518629228968.980957,75,0,3.516300,0.041158,51507703,25732718,0,0,65479,0,1,1 +1773644443.294368,2.02,4,3992.50,60.45,1333.47,2366.58,0.00,0.000000,0.000000,75,0,3.486296,0.040895,51510499,25735817,0,0,65482,0,1,1 +1773644448.294623,2.07,4,3992.50,60.63,1326.10,2373.92,0.00,3518257360492.437988,0.000000,11,0,3.475259,0.039091,51513279,25738814,0,0,65484,0,1,1 +1773644453.294969,1.72,4,3992.50,60.48,1331.98,2368.03,0.00,0.000000,0.000000,11,0,3.469297,0.040609,51516074,25741906,0,0,65487,0,1,1 +1773644458.294923,1.77,4,3992.50,60.32,1338.44,2361.74,0.00,40841.867080,41486.952254,2840495,2787524,3.460329,0.041092,51518899,25745007,0,0,65489,0,1,1 +1773644463.291693,2.23,4,3992.50,60.26,1340.85,2359.19,0.00,3520711616049.660156,3520711615401.987305,258,2,3.473934,0.039616,51521685,25748029,0,0,65492,0,1,1 +1773644468.292475,2.07,4,3992.50,60.42,1333.31,2365.68,0.00,3517887192847.222656,3517887192849.217285,205,0,3.473711,0.039128,51524393,25751041,0,0,65494,0,1,1 +1773644473.290354,2.68,4,3992.50,60.18,1342.45,2356.18,0.00,3519929899219.507812,0.000000,11,0,3.492189,0.040563,51527173,25754101,0,0,65497,0,1,1 +1773644478.290546,2.28,4,3992.50,60.24,1340.03,2358.56,0.00,0.000000,0.000000,11,0,3.501576,0.039366,51529934,25757161,0,0,65499,0,1,1 +1773644483.290980,2.43,4,3992.50,60.27,1338.90,2359.73,0.00,0.053511,0.000000,75,0,3.477744,0.042699,51532831,25760333,0,0,65502,0,1,1 +1773644488.290431,2.13,4,3992.50,60.11,1345.29,2353.32,0.00,40845.916484,41491.198020,2840495,2787602,3.452927,0.039160,51535570,25763346,0,0,65504,0,1,1 +1773644493.291202,2.53,4,3992.50,60.26,1339.43,2359.14,0.00,3517894750885.915527,3517894750240.803711,75,0,3.497564,0.043156,51538429,25766472,0,0,65507,0,1,1 +1773644498.290776,2.38,4,3992.50,60.16,1339.75,2355.33,0.00,0.126769,0.000000,205,0,3.446934,0.043554,51541364,25769742,0,0,65509,0,1,1 +1773644503.295073,1.82,4,3992.50,60.20,1337.48,2356.78,0.00,0.000000,0.000000,205,0,3.516017,0.038685,51544084,25772725,0,0,65512,0,1,1 +1773644508.294849,2.33,4,3992.50,60.42,1328.57,2365.67,0.00,3518595003794.613281,0.000000,75,0,3.452257,0.042439,51547036,25775896,0,0,65514,0,1,1 +1773644513.290360,1.98,4,3992.50,60.38,1330.07,2364.20,0.00,3521598780533.951172,0.000000,11,0,3.476072,0.039028,51549731,25778863,0,0,65517,0,1,1 +1773644518.290370,2.18,4,3992.50,60.30,1333.48,2360.79,0.00,40831.682886,41475.965515,2838992,2787195,3.510526,0.041683,51552575,25781996,0,0,65519,0,1,1 +1773644523.291135,2.18,4,3992.50,59.94,1347.61,2346.65,0.00,3517898822587.637695,3517898821943.272461,205,0,3.427586,0.041310,51555391,25785119,0,0,65522,0,1,1 +1773644528.294908,2.13,4,3992.50,60.16,1338.80,2355.57,0.00,40810.511333,41455.481060,2840495,2787722,3.504800,0.038274,51558074,25788094,0,0,65524,0,1,1 +1773644533.294447,1.93,4,3992.50,59.97,1346.11,2348.13,0.00,3518761649239.745117,3518761648594.355957,75,0,3.440212,0.041648,51560927,25791190,0,0,65527,0,1,1 +1773644538.290359,2.18,4,3992.50,60.17,1338.25,2355.97,0.00,1.605512,10.683931,253,492,3.526706,0.038677,51563639,25794168,0,0,65529,0,1,1 +1773644543.294541,2.02,4,3992.50,59.97,1346.43,2347.84,0.00,3515496854343.562988,3515496854334.553223,11,0,3.467107,0.038995,51566427,25797145,0,0,65532,0,1,1 +1773644548.293538,2.23,4,3992.50,60.53,1324.55,2369.70,0.00,0.000000,0.000000,11,0,3.501412,0.041070,51569255,25800272,0,0,65534,0,1,1 +1773644553.293222,1.93,4,3992.50,60.03,1344.10,2350.15,0.00,0.053519,0.000000,75,0,3.448191,0.039809,51572004,25803256,0,0,65537,0,1,1 +1773644558.294335,2.38,4,3992.50,60.29,1333.36,2360.53,0.00,40822.625215,41466.938092,2838992,2787313,3.507426,0.042872,51574901,25806406,0,0,65539,0,1,1 +1773644563.294617,2.13,4,3992.50,59.92,1348.01,2345.82,0.00,3518238593739.672852,3518238593095.306641,11,0,3.515764,0.038528,51577595,25809381,0,0,65542,0,1,1 +1773644568.291182,1.88,4,3992.50,59.90,1348.70,2345.13,0.00,40869.572190,41515.390572,2840495,2787839,3.498703,0.043042,51580524,25812579,0,0,65544,0,1,1 +1773644573.290462,2.18,4,3992.50,60.18,1337.68,2356.16,0.00,3518943711543.703125,3518943710898.055664,205,0,3.429063,0.040323,51583276,25815568,0,0,65547,0,1,1 +1773644578.295045,2.12,4,3992.50,60.08,1341.77,2352.07,0.00,40803.902522,41448.894152,2840495,2787871,3.529517,0.039115,51586009,25818579,0,0,65549,0,1,1 +1773644583.294340,2.38,4,3992.50,60.10,1340.69,2353.15,0.00,3518933493202.770996,3518933492566.296387,253,492,3.475325,0.038368,51588722,25821513,0,0,65552,0,1,1 +1773644588.290259,2.59,4,3992.50,60.41,1338.29,2365.30,0.00,3521311375060.672363,3521311375051.594238,75,0,3.497511,0.042986,51591665,25824743,0,0,65554,0,1,1 +1773644593.290370,1.93,4,3992.50,59.99,1354.73,2348.80,0.00,1.604164,10.674960,253,492,3.417248,0.041379,51594543,25827828,0,0,65557,0,1,1 +1773644598.291071,1.97,4,3992.50,60.07,1351.52,2352.02,0.00,0.517603,3517943552739.898438,258,2,3.518496,0.038312,51597247,25830795,0,0,65559,0,1,1 +1773644603.291248,2.07,4,3992.50,59.85,1360.50,2343.07,0.00,40828.138984,41474.818585,2838992,2787448,3.443995,0.041945,51600125,25833912,0,0,65562,0,1,1 +1773644608.290667,2.12,4,3992.50,59.81,1361.76,2341.80,0.00,3518846312053.782227,3518846311408.999512,205,0,3.505579,0.039932,51602916,25836980,0,0,65564,0,1,1 +1773644613.291131,2.07,4,3992.50,59.81,1361.71,2341.86,0.00,3518110806302.254883,0.000000,11,0,3.479121,0.040384,51605751,25840068,0,0,65567,0,1,1 +1773644618.290777,2.63,4,3992.50,60.32,1331.56,2361.74,0.00,0.180286,0.000000,205,0,3.490592,0.040976,51608568,25843170,0,0,65569,0,1,1 +1773644623.290989,2.12,4,3992.50,59.88,1349.05,2344.27,0.00,1.477379,10.674744,253,492,3.493419,0.040763,51611385,25846242,0,0,65572,0,1,1 +1773644628.290358,2.13,4,3992.50,59.76,1353.39,2339.90,0.00,3518881251580.245117,3518881251571.227051,11,0,3.455427,0.041155,51614211,25849349,0,0,65574,0,1,1 +1773644633.290358,1.92,4,3992.50,60.04,1342.64,2350.68,0.00,40831.765088,41476.368155,2838992,2787531,3.489930,0.039953,51616976,25852390,0,0,65577,0,1,1 +1773644638.291553,2.43,4,3992.50,59.81,1351.71,2341.55,0.00,0.000000,0.005956,2838992,2787541,3.468120,0.041235,51619811,25855496,0,0,65579,0,1,1 +1773644643.290377,1.98,4,3992.50,60.05,1342.17,2351.11,0.00,3519265164570.917969,3519265163925.977539,205,0,3.473611,0.040208,51622616,25858594,0,0,65582,0,1,1 +1773644648.291216,2.18,4,3992.50,60.65,1322.67,2374.63,0.00,40834.453527,41480.124238,2840495,2788067,3.459829,0.039809,51625387,25861618,0,0,65584,0,1,1 +1773644653.290991,1.97,4,3992.50,60.46,1328.44,2367.26,0.00,3518595261343.337402,3518595260706.727539,253,492,3.501378,0.038742,51628103,25864591,0,0,65587,0,1,1 +1773644658.290291,2.17,4,3992.50,60.12,1342.07,2353.80,0.00,3518930451732.672363,3518930451723.654297,11,0,3.464504,0.039801,51630876,25867622,0,0,65589,0,1,1 +1773644663.291084,2.03,4,3992.50,60.13,1341.70,2354.03,0.00,2.175046,0.000195,258,2,3.496587,0.039152,51633618,25870612,0,0,65592,0,1,1 +1773644668.290928,1.72,4,3992.50,59.94,1348.72,2346.96,0.00,40840.589018,41488.418335,2840495,2788117,3.456895,0.039529,51636387,25873647,0,0,65594,0,1,1 +1773644673.290919,1.88,4,3992.50,60.14,1341.15,2354.55,0.00,3518443637053.839844,3518443636417.222656,253,492,3.487605,0.073170,51642242,25878929,0,0,65597,0,1,1 +1773644678.291196,2.13,4,3992.50,60.45,1329.17,2366.83,0.00,3518241759997.229492,3518241759988.032715,205,0,3.565899,0.076235,51648710,25884946,0,0,65599,0,1,1 +1773644683.291282,2.23,4,3992.50,59.97,1347.86,2347.89,0.00,3518377096706.700684,0.000000,75,0,3.453107,0.086062,51655447,25891185,0,0,65602,0,1,1 +1773644688.290352,1.83,4,3992.50,60.37,1332.25,2363.47,0.00,2.122269,0.000195,258,2,3.575595,0.076592,51661934,25897182,0,0,65604,0,1,1 +1773644693.293986,1.73,4,3992.50,60.41,1330.54,2365.20,0.00,40799.939197,41446.398537,2838992,2787698,3.533713,0.079791,51668560,25903269,0,0,65607,0,1,1 +1773644698.290345,2.54,4,3992.50,60.05,1344.65,2351.10,0.00,3521000630447.888184,3521000629802.610840,75,0,3.484715,0.080625,51675138,25909345,0,0,65609,0,1,1 +1773644703.294722,1.83,4,3992.50,60.05,1344.70,2351.06,0.00,3515360483128.876953,0.000000,11,0,3.517197,0.080911,51681765,25915466,0,0,65612,0,1,1 +1773644708.290375,2.24,4,3992.50,60.64,1322.12,2374.00,0.00,0.180430,0.000000,205,0,3.502648,0.080117,51688345,25921541,0,0,65614,0,1,1 +1773644713.290375,1.72,4,3992.50,60.37,1332.33,2363.54,0.00,0.000000,0.000000,205,0,3.489015,0.082025,51694946,25927688,0,0,65617,0,1,1 +1773644718.290453,1.78,4,3992.50,60.36,1332.55,2363.28,0.00,40830.943892,41475.954412,2838992,2787784,3.512527,0.080689,51701614,25933773,0,0,65619,0,1,1 +1773644723.290642,1.73,4,3992.50,60.38,1331.66,2364.18,0.00,3518304238778.684570,3518304238142.885742,253,492,3.539993,0.076961,51708038,25939841,0,0,65622,0,1,1 +1773644728.291131,1.78,4,3992.50,60.44,1329.57,2366.29,0.00,3518093201988.446777,3518093201979.430664,11,0,3.579603,0.084429,51714877,25946035,0,0,65624,0,1,1 +1773644733.290794,2.49,4,3992.50,60.35,1332.84,2363.02,0.00,0.000000,0.000000,11,0,3.467792,0.084265,51721491,25952232,0,0,65627,0,1,1 +1773644738.292930,1.93,4,3992.50,60.72,1317.71,2377.38,0.00,40814.350900,41459.083526,2838996,2787965,3.505101,0.085604,51728198,25958394,0,0,65629,0,1,1 +1773644743.294401,17.75,4,3992.50,68.14,1027.48,2667.64,0.00,3517402165429.428223,3517402164784.609863,11,0,3.599326,0.083645,51735098,25964623,0,0,65632,0,1,1 +1773644748.291074,2.04,4,3992.50,67.68,1045.38,2649.75,0.00,1.658819,10.682304,253,492,3.518635,0.081102,51741697,25970732,0,0,65634,0,1,1 +1773644753.290440,2.03,4,3992.50,67.82,1039.66,2655.46,0.00,40845.039387,41482.108185,2840499,2788529,3.514219,0.086931,51748541,25976967,0,0,65637,0,1,1 +1773644758.291575,1.93,4,3992.50,67.48,1053.21,2641.93,0.00,3517638526908.227051,3517638526262.314453,75,0,3.575615,0.080387,51755255,25983090,0,0,65639,0,1,1 +1773644763.290942,1.93,4,3992.50,67.36,1057.93,2637.19,0.00,0.126774,0.000000,205,0,3.495614,0.081516,51761928,25989160,0,0,65642,0,1,1 +1773644768.291837,2.34,4,3992.50,67.80,1041.62,2654.52,0.00,40834.031122,41480.214648,2840499,2788647,3.575799,0.080580,51768633,25995283,0,0,65644,0,1,1 +1773644773.294549,2.08,4,3992.50,67.79,1041.81,2654.14,0.00,3516529391066.084473,3516529390420.262207,75,0,3.497052,0.080809,51775343,26001272,0,0,65647,0,1,1 +1773644778.292384,2.09,4,3992.50,67.86,1039.23,2656.76,0.00,40849.425886,41494.967443,2838996,2788200,3.572757,0.078852,51781986,26007321,0,0,65649,0,1,1 +1773644783.291005,2.19,4,3992.50,67.57,1050.44,2645.55,0.00,9.728855,10.685955,2840499,2788706,3.473165,0.080414,51788656,26013327,0,0,65652,0,1,1 +1773644788.290685,2.44,4,3992.50,67.50,1053.27,2642.71,0.00,3518661998581.600098,3518661997944.411621,253,492,3.566574,0.078565,51795327,26019318,0,0,65654,0,1,1 +1773644793.294608,2.70,4,3992.50,67.72,1044.78,2651.21,0.00,40798.128567,41433.848633,2838996,2788241,3.507365,0.080906,51801966,26025378,0,0,65657,0,1,1 +1773644798.290856,2.50,4,3992.50,68.03,1035.80,2663.64,0.00,3521079082277.734863,3521079081632.013672,11,0,3.525856,0.080469,51808709,26031358,0,0,65659,0,1,1 +1773644803.295043,3.91,4,3992.50,67.78,1045.87,2653.54,0.00,0.053471,0.000000,75,0,3.560451,0.079153,51815297,26037442,0,0,65662,0,1,1 +1773644808.290823,3.36,4,3992.50,67.44,1058.92,2640.50,0.00,40875.968643,41522.824462,2840499,2788806,3.529625,0.080529,51822129,26043358,0,0,65664,0,1,1 +1773644813.290945,2.54,4,3992.50,67.70,1048.81,2650.62,0.00,3518351332935.225586,3518351332288.984863,11,0,3.548808,0.076998,51828690,26049320,0,0,65667,0,1,1 +1773644818.291190,2.75,4,3992.50,67.69,1049.32,2650.06,0.00,40839.511351,41485.749549,2840499,2788833,3.491265,0.078910,51835288,26055265,0,0,65669,0,1,1 +1773644823.290642,2.60,4,3992.50,67.83,1043.68,2655.72,0.00,3518823033026.726074,3518823032380.205078,205,0,3.552132,0.079172,51841984,26061262,0,0,65672,0,1,1 +1773644828.295180,2.65,4,3992.50,67.82,1051.07,2655.25,0.00,3515246374753.556152,0.000000,75,0,3.480588,0.078751,51848636,26067178,0,0,65674,0,1,1 +1773644833.291914,2.29,4,3992.50,67.52,1062.82,2643.57,0.00,40858.428559,41504.283884,2838996,2788404,3.568519,0.077146,51855206,26073156,0,0,65677,0,1,1 +1773644838.294875,2.54,4,3992.50,67.80,1051.64,2654.70,0.00,3516354569784.150391,3516354569139.099121,75,0,3.487990,0.080011,51861934,26079096,0,0,65679,0,1,1 +1773644843.294464,2.39,4,3992.50,67.98,1044.97,2661.41,0.00,40844.820998,41491.276788,2840499,2788931,3.538883,0.078043,51868494,26085124,0,0,65682,0,1,1 +1773644848.291007,2.24,4,3992.50,67.50,1063.68,2642.70,0.00,3520871533828.888672,3520871533182.091797,11,0,3.545289,0.079114,51875202,26091061,0,0,65684,0,1,1 +1773644853.291427,2.70,4,3992.50,67.80,1051.91,2654.48,0.00,0.180258,0.000000,205,0,3.533708,0.080099,51881927,26097084,0,0,65687,0,1,1 +1773644858.293380,2.49,4,3992.50,67.93,1052.85,2659.79,0.00,0.000000,0.000000,205,0,3.533020,0.077935,51888531,26103029,0,0,65689,0,1,1 +1773644863.293013,2.24,4,3992.50,67.89,1054.53,2658.11,0.00,3518695374155.143066,0.000000,11,0,3.510797,0.080748,51895295,26108981,0,0,65692,0,1,1 +1773644868.295125,2.08,4,3992.50,67.74,1060.39,2652.20,0.00,0.000000,0.000000,11,0,3.516508,0.077494,51901787,26114983,0,0,65694,0,1,1 +1773644873.294460,2.59,4,3992.50,67.77,1059.31,2653.32,0.00,0.053523,0.000000,75,0,3.554955,0.080358,51908544,26120945,0,0,65697,0,1,1 +1773644878.294850,2.60,4,3992.50,67.78,1056.89,2653.70,0.00,40828.550509,41474.038617,2838996,2788555,3.531337,0.080481,51915211,26126909,0,0,65699,0,1,1 +1773644883.294663,2.13,4,3992.50,67.94,1052.55,2660.07,0.00,3518569267104.833008,3518569266459.323730,11,0,3.490939,0.080156,51921866,26132882,0,0,65702,0,1,1 +1773644888.294986,2.39,4,3992.50,68.08,1047.74,2665.32,0.00,0.000000,0.000000,11,0,3.563291,0.079493,51928579,26138893,0,0,65704,0,1,1 +1773644893.290899,2.34,4,3992.50,67.71,1062.25,2650.87,0.00,2.177170,0.000195,258,2,3.508827,0.077951,51935187,26144824,0,0,65707,0,1,1 +1773644898.294973,3.30,4,3992.50,67.62,1065.66,2647.45,0.00,40796.371725,41443.682059,2838996,2788658,3.538252,0.078829,51941811,26150849,0,0,65709,0,1,1 +1773644903.292221,2.40,4,3992.50,67.56,1067.84,2645.28,0.00,3520375052140.837402,3520375051494.819336,11,0,3.506931,0.079338,51948520,26156753,0,0,65712,0,1,1 +1773644908.290857,2.49,4,3992.50,67.22,1081.39,2631.71,0.00,0.000000,0.000000,11,0,3.545986,0.079192,51955160,26162813,0,0,65714,0,1,1 +1773644913.294550,2.90,4,3992.50,67.21,1081.64,2631.45,0.00,40811.365778,41457.529426,2840499,2789199,3.497587,0.079797,51961864,26168745,0,0,65717,0,1,1 +1773644918.290559,3.56,4,3992.50,67.66,1052.20,2648.84,0.00,3521248057826.994629,3521248057179.656738,205,0,3.561393,0.078495,51968460,26174795,0,0,65719,0,1,1 +1773644923.290325,2.34,4,3992.50,67.18,1070.73,2630.34,0.00,3518602120134.680664,0.000000,75,0,3.544103,0.079041,51975159,26180763,0,0,65722,0,1,1 +1773644928.290833,2.44,4,3992.50,67.27,1067.30,2633.77,0.00,1.604036,10.674112,253,492,3.476143,0.078486,51981749,26186701,0,0,65724,0,1,1 +1773644933.290437,2.34,4,3992.50,67.16,1071.47,2629.59,0.00,40843.093245,41480.856745,2840499,2789288,3.569043,0.078201,51988377,26192720,0,0,65727,0,1,1 +1773644938.291290,3.26,4,3992.50,66.97,1079.24,2621.84,0.00,3517836476358.502441,3517836475709.707520,258,2,3.481838,0.080236,51995085,26198649,0,0,65729,0,1,1 +1773644943.291127,36.09,4,3992.50,65.67,1129.88,2571.14,0.00,3518551836262.746582,3518551836264.921875,11,0,146.876353,0.160855,52019470,26211233,0,0,65732,0,1,1 +1773644948.295095,30.51,4,3992.50,65.88,1121.59,2579.38,0.00,1.656400,10.666731,253,492,119.879596,0.084653,52032515,26217906,0,0,65734,0,1,1 +1773644953.294890,30.54,4,3992.50,65.81,1124.42,2576.46,0.00,3518581398236.273438,3518581398227.075195,205,0,119.767645,0.070419,52044555,26223367,0,0,65737,0,1,1 +1773644958.294023,30.51,4,3992.50,65.67,1129.82,2571.07,0.00,1.995463,0.000195,258,2,119.380654,0.063090,52056478,26228358,0,0,65739,0,1,1 +1773644963.290339,31.16,4,3992.50,65.79,1125.20,2575.73,0.00,3521031312503.768066,3521031312505.944824,11,0,119.048865,0.061189,52068382,26233103,0,0,65742,0,1,1 +1773644968.294709,30.38,4,3992.50,65.75,1126.65,2574.31,0.00,0.180116,0.000000,205,0,119.653122,0.060266,52079979,26237789,0,0,65744,0,1,1 +1773644973.294585,30.56,4,3992.50,65.58,1133.27,2567.69,0.00,40832.620422,41478.780558,2838996,2788931,119.759213,0.059832,52091341,26242379,0,0,65747,0,1,1 +1773644978.294951,30.38,4,3992.50,65.98,1117.78,2583.12,0.00,3518180003871.141113,3518180003234.241211,253,492,118.344635,0.054846,52102639,26246642,0,0,65749,0,1,1 +1773644983.291643,31.06,4,3992.50,65.81,1122.16,2576.48,0.00,3520765940647.826660,3520765940638.803711,11,0,119.435851,0.055011,52114048,26250846,0,0,65752,0,1,1 +1773644988.294542,31.76,4,3992.50,65.41,1137.70,2560.97,0.00,40817.853334,41464.525713,2840499,2789493,119.685928,0.052705,52125549,26254978,0,0,65754,0,1,1 +1773644993.292250,31.53,4,3992.50,65.55,1132.27,2566.43,0.00,3520050802978.399414,3520050802331.055664,11,0,119.412353,0.056810,52137076,26259337,0,0,65757,0,1,1 +1773644998.291119,16.10,4,3992.50,58.90,1392.61,2306.13,0.00,0.000000,0.000000,11,0,107.767369,0.053243,52147505,26263431,0,0,65759,0,1,1 +1773645003.290390,17.93,4,3992.50,58.92,1391.79,2306.92,0.00,0.053523,0.000000,75,0,68.100001,0.033174,52154060,26265986,0,0,65762,0,1,1 +1773645008.294574,22.19,4,3992.50,59.55,1367.00,2331.48,0.00,1.602858,10.666270,253,492,82.441556,0.044434,52162075,26269372,0,0,65764,0,1,1 +1773645013.295286,5.67,4,3992.50,53.01,1623.00,2075.27,0.00,40834.379006,41472.523538,2840557,2789687,61.873509,0.030448,52168088,26271722,0,0,65767,0,1,1 +1773645018.290569,0.90,4,3992.50,53.28,1612.34,2085.93,0.00,3521759490291.702637,3521759489643.837891,11,0,0.001705,0.001484,52168120,26271749,0,0,65769,0,1,1 +1773645023.294336,0.65,4,3992.50,52.99,1623.67,2074.60,0.00,2.173753,0.000195,258,2,0.000000,0.000030,52168120,26271752,0,0,65772,0,1,1 +1773645028.294695,0.50,4,3992.50,53.02,1622.54,2075.74,0.00,3518184798823.724121,3518184798825.719238,205,0,0.000000,0.000020,52168120,26271754,0,0,65774,0,1,1 +1773645033.295276,0.60,4,3992.50,53.02,1622.32,2075.96,0.00,40836.930422,41484.359902,2840557,2789756,0.001229,0.001254,52168129,26271771,0,0,65777,0,1,1 +1773645038.290411,0.85,4,3992.50,53.12,1618.68,2079.59,0.00,0.000000,0.097751,2840557,2789818,0.000213,0.000561,52168137,26271785,0,0,65779,0,1,1 +1773645043.292422,0.60,4,3992.50,53.12,1618.39,2079.82,0.00,0.000000,0.005467,2840557,2789825,0.000000,0.000030,52168137,26271788,0,0,65782,0,1,1 +1773645048.293647,0.65,4,3992.50,53.12,1618.39,2079.82,0.00,3517575208749.103027,3517575208101.653809,205,0,0.000000,0.000020,52168137,26271790,0,0,65784,0,1,1 +1773645053.290419,0.55,4,3992.50,53.12,1618.40,2079.82,0.00,0.000000,0.000000,205,0,0.001127,0.001232,52168146,26271807,0,0,65787,0,1,1 +1773645058.294816,0.75,4,3992.50,53.13,1618.17,2080.05,0.00,3515345641673.795410,0.000000,11,0,0.000075,0.000113,52168152,26271815,0,0,65789,0,1,1 +1773645063.291723,0.60,4,3992.50,53.12,1618.26,2079.96,0.00,2.176737,0.000195,258,2,0.000050,0.000092,52168156,26271822,0,0,65792,0,1,1 +1773645068.295211,0.80,4,3992.50,53.13,1614.69,2080.22,0.00,0.000000,0.000000,258,2,0.000000,0.000020,52168156,26271824,0,0,65794,0,1,1 +1773645073.290365,0.65,4,3992.50,53.09,1616.29,2078.54,0.00,0.000000,0.000000,258,2,0.000000,0.000030,52168156,26271827,0,0,65797,0,1,1 +1773645078.294103,18.63,4,3992.50,59.42,1368.42,2326.30,0.00,3515808960970.172363,3515808960972.292969,75,0,28.424225,0.019188,52171345,26273119,0,0,65799,0,1,1 +1773645083.290657,34.39,4,3992.50,59.33,1371.82,2322.93,0.00,0.000000,0.000000,75,0,118.246998,0.023202,52183579,26274810,0,0,65802,0,1,1 +1773645088.294594,29.88,4,3992.50,59.25,1375.09,2319.64,0.00,0.126658,0.000000,205,0,118.876634,0.029015,52195946,26276984,0,0,65804,0,1,1 +1773645093.294565,30.41,4,3992.50,59.27,1374.38,2320.41,0.00,3518457480827.640625,0.000000,11,0,119.372076,0.032777,52208374,26279439,0,0,65807,0,1,1 +1773645098.294552,30.58,4,3992.50,59.48,1365.89,2328.84,0.00,40841.991528,41489.749212,2840562,2790014,119.182216,0.059664,52221031,26284050,0,0,65809,0,1,1 +1773645103.294836,30.53,4,3992.50,59.22,1376.27,2318.45,0.00,3518237593219.852539,3518237593218.963379,2839059,2789543,119.168874,0.049453,52233470,26287925,0,0,65812,0,1,1 +1773645108.294947,30.09,4,3992.50,59.57,1361.25,2332.27,0.00,3518359008410.995117,3518359007773.160156,253,492,119.374118,0.055578,52245897,26292262,0,0,65814,0,1,1 +1773645113.294073,29.83,4,3992.50,59.60,1360.20,2333.35,0.00,3519052264613.668945,3519052264604.469727,205,0,119.199809,0.063680,52258320,26297225,0,0,65817,0,1,1 +1773645118.294477,29.30,4,3992.50,59.50,1364.00,2329.65,0.00,1.477322,10.674334,253,492,119.574976,0.071672,52271065,26302851,0,0,65819,0,1,1 +1773645123.291913,1.21,4,3992.50,52.97,1619.94,2073.71,0.00,3520242279995.212891,3520242279986.191406,11,0,44.091743,0.026970,52275752,26304923,0,0,65822,0,1,1 +1773645128.294430,1.20,4,3992.50,53.20,1611.21,2082.70,0.00,0.000000,0.000000,11,0,0.002226,0.001043,52275794,26304952,0,0,65824,0,1,1 +1773645133.293951,0.60,4,3992.50,53.22,1609.92,2083.69,0.00,0.180291,0.000000,205,0,0.000031,0.000055,52275796,26304957,0,0,65827,0,1,1 +1773645138.291474,0.70,4,3992.50,53.03,1617.55,2076.05,0.00,1.996106,0.000195,258,2,0.000025,0.000051,52275798,26304961,0,0,65829,0,1,1 +1773645143.291726,0.65,4,3992.50,53.03,1617.55,2076.05,0.00,3518260091225.866211,10.674463,253,492,0.000033,0.000069,52275801,26304967,0,0,65832,0,1,1 +1773645148.293347,0.60,4,3992.50,53.03,1617.34,2076.27,0.00,3517297079846.947266,3517297079837.933105,11,0,0.000000,0.000664,52275801,26304973,0,0,65834,0,1,1 +1773645153.294505,0.70,4,3992.50,53.03,1617.34,2076.27,0.00,40822.817134,41469.778950,2839073,2789785,0.000000,0.000030,52275801,26304976,0,0,65837,0,1,1 +1773645158.290380,1.00,4,3992.50,53.42,1603.55,2091.49,0.00,3521342289525.151855,3521342288877.505859,11,0,0.000000,0.000020,52275801,26304978,0,0,65839,0,1,1 +1773645163.294663,0.60,4,3992.50,53.26,1609.57,2085.14,0.00,0.000000,0.000000,11,0,0.000000,0.000030,52275801,26304981,0,0,65842,0,1,1 +1773645168.295225,0.75,4,3992.50,53.26,1609.57,2085.13,0.00,2.175146,0.000195,258,2,0.000025,0.000051,52275803,26304985,0,0,65844,0,1,1 +1773645173.294542,0.75,4,3992.50,53.27,1609.09,2085.61,0.00,3518917898696.435547,3518917898698.431152,205,0,0.000117,0.000170,52275813,26304998,0,0,65847,0,1,1 +1773645178.290842,0.65,4,3992.50,53.27,1609.09,2085.61,0.00,0.000000,0.000000,205,0,0.000000,0.000020,52275813,26305000,0,0,65849,0,1,1 +1773645183.290361,0.65,4,3992.50,53.20,1611.67,2083.04,0.00,1.477584,10.676223,253,492,0.000000,0.000030,52275813,26305003,0,0,65852,0,1,1 +1773645188.290600,19.53,4,3992.50,59.69,1354.41,2337.05,0.00,40828.684105,41467.003135,2839076,2789937,10.220945,0.014143,52277177,26305861,0,0,65854,0,1,1 +1773645193.293572,34.56,4,3992.50,59.40,1365.83,2325.66,0.00,3516346632464.233398,3516346631817.070801,205,0,118.699493,0.035340,52289520,26308544,0,0,65857,0,1,1 +1773645198.294584,28.80,4,3992.50,59.51,1361.70,2329.91,0.00,40833.573463,41482.047986,2840579,2790556,119.544063,0.024248,52301869,26310389,0,0,65859,0,1,1 +1773645203.293805,29.87,4,3992.50,59.55,1359.77,2331.69,0.00,0.000000,0.007325,2840579,2790563,118.987542,0.034261,52314154,26313063,0,0,65862,0,1,1 +1773645208.290656,29.23,4,3992.50,59.44,1364.26,2327.23,0.00,3520654715081.130371,3520654714432.288574,11,0,119.463905,0.082844,52326734,26319561,0,0,65864,0,1,1 +1773645213.295059,29.20,4,3992.50,59.58,1358.93,2332.52,0.00,0.180115,0.000000,205,0,119.689126,0.102205,52339464,26327519,0,0,65867,0,1,1 +1773645218.293154,29.21,4,3992.50,59.75,1352.12,2339.29,0.00,40847.674252,41495.765218,2839076,2790098,118.635340,0.095562,52352035,26334995,0,0,65869,0,1,1 +1773645223.294128,29.36,4,3992.50,59.55,1361.17,2331.57,0.00,3517752139293.271484,3517752138654.749512,253,492,120.162604,0.084260,52364596,26341572,0,0,65872,0,1,1 +1773645228.294538,28.84,4,3992.50,59.95,1345.75,2347.02,0.00,3518148658772.106445,3518148658763.090332,11,0,118.310113,0.038919,52376045,26344618,0,0,65874,0,1,1 +1773645233.295282,4.27,4,3992.50,54.69,1551.53,2141.30,0.00,0.000000,0.000000,11,0,61.715466,0.015438,52382131,26345812,0,0,65877,0,1,1 +1773645238.294759,0.95,4,3992.50,53.65,1592.41,2100.41,0.00,0.000000,0.000000,11,0,0.002893,0.001148,52382184,26345847,0,0,65879,0,1,1 +1773645243.294336,0.65,4,3992.50,53.27,1607.12,2085.70,0.00,40845.609022,41494.425275,2840590,2790708,0.000000,0.000030,52382184,26345850,0,0,65882,0,1,1 +1773645248.294474,1.05,4,3992.50,53.44,1603.36,2092.14,0.00,3518339985157.700195,3518339984508.903320,75,0,0.000000,0.000020,52382184,26345852,0,0,65884,0,1,1 +1773645253.294687,0.65,4,3992.50,53.46,1602.42,2093.12,0.00,3518287182784.755859,0.000000,11,0,0.000000,0.000030,52382184,26345855,0,0,65887,0,1,1 +1773645258.293616,0.65,4,3992.50,53.46,1602.42,2093.12,0.00,0.180312,0.000000,205,0,0.000000,0.000020,52382184,26345857,0,0,65889,0,1,1 +1773645263.290428,0.75,4,3992.50,53.46,1602.42,2093.12,0.00,3520681871011.838379,0.000000,11,0,0.000000,0.000030,52382184,26345860,0,0,65892,0,1,1 +1773645268.295198,0.55,4,3992.50,53.49,1601.46,2094.08,0.00,1.656135,10.665021,253,492,0.000000,0.000020,52382184,26345862,0,0,65894,0,1,1 +1773645273.290446,0.55,4,3992.50,53.49,1601.46,2094.07,0.00,0.000000,0.000000,253,492,0.000000,0.000030,52382184,26345865,0,0,65897,0,1,1 +1773645278.290498,1.00,4,3992.50,53.44,1615.21,2092.17,0.00,0.517670,3518400556990.242676,258,2,0.000025,0.000051,52382186,26345869,0,0,65899,0,1,1 +1773645283.295200,0.95,4,3992.50,53.40,1616.63,2090.68,0.00,3515131916279.798828,3515131916281.792480,205,0,0.000117,0.000813,52382196,26345886,0,0,65902,0,1,1 +1773645288.290459,0.65,4,3992.50,53.44,1615.15,2092.16,0.00,40871.000031,41519.798250,2839087,2790327,0.000000,0.000020,52382196,26345888,0,0,65904,0,1,1 +1773645293.293549,0.70,4,3992.50,53.44,1615.15,2092.16,0.00,3516263941824.782715,3516263941177.180176,11,0,0.000000,0.000030,52382196,26345891,0,0,65907,0,1,1 +1773645298.293374,1.00,4,3992.50,53.44,1615.04,2092.27,0.00,0.053517,0.000000,75,0,0.001396,0.000735,52382220,26345910,0,0,65909,0,1,1 +1773645303.294586,42.75,4,3992.50,59.86,1363.63,2343.55,0.00,2.121361,0.000195,258,2,101.122678,0.032734,52392928,26348268,0,0,65912,0,1,1 +1773645308.293183,30.08,4,3992.50,59.40,1381.54,2325.68,0.00,3519424903101.550781,3519424903103.546875,205,0,119.801551,0.024887,52405289,26350191,0,0,65914,0,1,1 +1773645313.291230,29.37,4,3992.50,59.49,1376.63,2329.10,0.00,1.995897,0.000195,258,2,118.210441,0.020973,52417520,26351826,0,0,65917,0,1,1 +1773645318.290356,29.36,4,3992.50,59.97,1357.89,2347.84,0.00,3519052432149.202148,3519052432151.324219,75,0,119.586288,0.023492,52429874,26353637,0,0,65919,0,1,1 +1773645323.293820,29.50,4,3992.50,59.78,1365.28,2340.45,0.00,3516001431384.327637,0.000000,11,0,118.925303,0.030074,52442281,26356010,0,0,65922,0,1,1 +1773645328.294543,28.76,4,3992.50,59.80,1364.64,2341.13,0.00,1.657475,10.673651,253,492,119.919561,0.043735,52454705,26359400,0,0,65924,0,1,1 +1773645333.290383,28.76,4,3992.50,59.69,1368.84,2336.95,0.00,0.000000,0.000000,253,492,118.465495,0.032302,52466846,26361879,0,0,65927,0,1,1 +1773645338.290374,28.56,4,3992.50,59.39,1380.33,2325.43,0.00,0.000000,0.000000,253,492,119.976256,0.043471,52479276,26365204,0,0,65929,0,1,1 +1773645343.294617,11.09,4,3992.50,53.41,1614.65,2091.11,0.00,40805.955454,41445.893591,2840602,2791170,89.453663,0.029036,52488619,26367459,0,0,65932,0,1,1 +1773645348.293748,0.80,4,3992.50,53.44,1613.28,2092.48,0.00,3519049273583.085449,3519049272933.419922,75,0,0.003034,0.002089,52488676,26367503,0,0,65934,0,1,1 +1773645353.294498,0.70,4,3992.50,53.44,1613.28,2092.48,0.00,3517909269203.298828,0.000000,11,0,0.000205,0.000562,52488683,26367517,0,0,65937,0,1,1 +1773645358.291376,0.60,4,3992.50,53.45,1613.04,2092.72,0.00,40867.838199,41517.795429,2840609,2791221,0.000000,0.000020,52488683,26367519,0,0,65939,0,1,1 +1773645363.293819,0.75,4,3992.50,53.45,1613.04,2092.72,0.00,3516718572996.807617,3516718572345.399414,258,2,0.000000,0.000030,52488683,26367522,0,0,65942,0,1,1 +1773645368.294446,0.95,4,3992.50,53.70,1603.45,2102.32,0.00,3517996540412.776855,3517996540414.951660,11,0,0.000000,0.000020,52488683,26367524,0,0,65944,0,1,1 +1773645373.292799,0.50,4,3992.50,53.48,1611.84,2093.89,0.00,1.658261,10.678713,253,492,0.000000,0.000030,52488683,26367527,0,0,65947,0,1,1 +1773645378.294544,0.80,4,3992.50,53.47,1612.09,2093.64,0.00,40816.683425,41456.175283,2839106,2790831,0.000031,0.000045,52488685,26367531,0,0,65949,0,1,1 +1773645383.290425,0.65,4,3992.50,53.28,1619.73,2085.99,0.00,3521338245100.398438,3521338244451.130371,11,0,0.000039,0.000063,52488688,26367537,0,0,65952,0,1,1 +1773645388.294677,0.65,4,3992.50,53.29,1619.15,2086.57,0.00,2.173542,0.000195,258,2,0.001254,0.001274,52488699,26367555,0,0,65954,0,1,1 +1773645393.290449,0.75,4,3992.50,53.31,1618.71,2087.01,0.00,3521415253562.505859,3521415253564.629395,75,0,0.001211,0.000770,52488729,26367580,0,0,65957,0,1,1 +1773645398.295171,1.00,4,3992.50,53.40,1615.68,2090.91,0.00,1.602686,10.665123,253,492,0.001763,0.001375,52488756,26367600,0,0,65959,0,1,1 +1773645403.290383,0.65,4,3992.50,53.40,1615.70,2090.91,0.00,40870.073747,41510.459962,2839106,2790872,0.000000,0.000030,52488756,26367603,0,0,65962,0,1,1 +1773645408.295255,7.21,4,3992.50,59.98,1358.34,2348.25,0.00,3515011947085.885254,3515011946435.553711,258,2,0.804361,0.004031,52488974,26367757,0,0,65964,0,1,1 +1773645413.294536,38.79,4,3992.50,59.48,1377.65,2328.94,0.00,40836.326887,41487.425619,2839110,2790945,113.376992,0.027678,52500811,26369776,0,0,65967,0,1,1 +1773645418.293654,28.36,4,3992.50,59.52,1376.39,2330.17,0.00,9.727889,10.705991,2840613,2791453,119.802433,0.066085,52513161,26374877,0,0,65969,0,1,1 +1773645423.290941,28.02,4,3992.50,59.61,1372.45,2334.00,0.00,3520347004167.373047,3520347003517.158203,75,0,119.658989,0.103491,52525883,26382930,0,0,65972,0,1,1 +1773645428.291977,28.61,4,3992.50,59.67,1364.53,2336.11,0.00,0.126732,0.000000,205,0,118.773414,0.110228,52538719,26391563,0,0,65974,0,1,1 +1773645433.290651,29.05,4,3992.50,59.27,1380.23,2320.39,0.00,40843.329488,41492.670455,2839112,2791055,119.632112,0.113005,52551550,26400408,0,0,65977,0,1,1 +1773645438.293461,29.28,4,3992.50,59.34,1377.54,2323.12,0.00,3516460824234.401367,3516460823594.790039,253,492,118.930717,0.111449,52564313,26409140,0,0,65979,0,1,1 +1773645443.294536,29.28,4,3992.50,59.49,1371.45,2329.16,0.00,0.000000,0.000000,253,492,119.972896,0.114278,52577199,26418082,0,0,65982,0,1,1 +1773645448.294615,28.58,4,3992.50,59.31,1378.52,2322.10,0.00,3518381880919.165527,3518381880910.095215,75,0,118.994700,0.109714,52590011,26426674,0,0,65984,0,1,1 +1773645453.294992,7.68,4,3992.50,53.30,1613.88,2086.94,0.00,1.604078,10.674390,253,492,75.719430,0.074450,52598103,26432455,0,0,65987,0,1,1 +1773645458.294550,1.20,4,3992.50,53.32,1615.81,2087.70,0.00,40834.713308,41475.031804,2839123,2791260,0.001553,0.000692,52598134,26432476,0,0,65989,0,1,1 +1773645463.294399,0.65,4,3992.50,53.30,1616.89,2086.66,0.00,3518543493508.850586,3518543492859.551270,11,0,0.000000,0.000030,52598134,26432479,0,0,65992,0,1,1 +1773645468.295010,0.55,4,3992.50,53.30,1616.65,2086.90,0.00,1.657512,10.673890,253,492,0.000000,0.000020,52598134,26432481,0,0,65994,0,1,1 +1773645473.295239,0.70,4,3992.50,53.30,1616.65,2086.89,0.00,40829.240244,41469.551822,2839123,2791300,0.000000,0.000030,52598134,26432484,0,0,65997,0,1,1 +1773645478.294783,0.60,4,3992.50,53.30,1616.66,2086.89,0.00,3518757613567.213867,3518757612915.621094,258,2,0.000000,0.000664,52598134,26432490,0,0,65999,0,1,1 +1773645483.295156,0.80,4,3992.50,53.31,1616.41,2087.14,0.00,40827.545881,41479.038659,2839123,2791307,0.000000,0.000030,52598134,26432493,0,0,66002,0,1,1 +1773645488.292275,1.00,4,3992.50,53.31,1612.41,2087.10,0.00,3520465524395.805664,3520465523745.884277,205,0,0.000000,0.000020,52598134,26432495,0,0,66004,0,1,1 +1773645493.294884,0.70,4,3992.50,53.29,1613.13,2086.24,0.00,40811.283038,41460.582745,2839123,2791378,0.000000,0.000030,52598134,26432498,0,0,66007,0,1,1 +1773645498.293312,0.70,4,3992.50,53.29,1613.13,2086.24,0.00,3519544169575.843262,3519544168935.200684,253,492,0.000050,0.000113,52598138,26432506,0,0,66009,0,1,1 +1773645503.294423,0.60,4,3992.50,53.29,1613.13,2086.24,0.00,3517655160268.836426,3517655160259.640625,205,0,0.000092,0.000108,52598146,26432515,0,0,66012,0,1,1 +1773645508.294956,0.65,4,3992.50,53.30,1612.39,2086.98,0.00,40837.956607,41488.480546,2840626,2791876,0.000000,0.000020,52598146,26432517,0,0,66014,0,1,1 +1773645513.292387,0.65,4,3992.50,53.29,1612.99,2086.38,0.00,0.000000,0.004690,2840626,2791880,0.000000,0.000030,52598146,26432520,0,0,66017,0,1,1 +1773645518.290351,2.31,4,3992.50,53.32,1611.89,2087.66,0.00,3519870291677.656738,3519870291026.974121,11,0,0.002266,0.002306,52598183,26432554,0,0,66019,0,1,1 +1773645523.291246,42.77,4,3992.50,59.40,1373.78,2325.71,0.00,2.175001,0.000195,258,2,107.733259,0.061065,52609348,26437204,0,0,66022,0,1,1 +1773645528.291726,29.02,4,3992.50,59.43,1372.62,2326.85,0.00,40826.680843,41478.395998,2839126,2791545,118.951259,0.051604,52621387,26441218,0,0,66024,0,1,1 +1773645533.292241,31.20,4,3992.50,59.57,1366.94,2332.47,0.00,3518074093657.024902,3518074093007.436035,75,0,119.351669,0.055162,52633529,26445524,0,0,66027,0,1,1 +1773645538.294058,29.58,4,3992.50,59.56,1367.71,2331.76,0.00,1.603617,10.671318,253,492,118.918850,0.050412,52645574,26449473,0,0,66029,0,1,1 +1773645543.290351,7.33,4,3992.50,60.43,1333.49,2365.93,0.00,3521048105487.500000,3521048105478.476074,11,0,26.753459,0.052271,52649609,26452774,0,0,66032,0,1,1 +1773645548.293834,4.85,4,3992.50,60.87,1315.02,2383.34,0.00,40814.058840,41464.231214,2840629,2792099,14.819757,0.030760,52651693,26454843,0,0,66034,0,1,1 +1773645553.291555,4.46,4,3992.50,60.60,1325.77,2372.58,0.00,3520041910090.977539,3520041909440.055664,11,0,15.243688,0.029265,52653793,26456871,0,0,66037,0,1,1 +1773645558.295263,5.00,4,3992.50,60.61,1325.23,2373.11,0.00,40802.515500,41451.839790,2839126,2791648,14.152692,0.027676,52655746,26458814,0,0,66039,0,1,1 +1773645563.291194,4.65,4,3992.50,60.49,1329.88,2368.50,0.00,3521302181905.757324,3521302181264.447266,253,492,12.891817,0.026198,52657658,26460645,0,0,66042,0,1,1 +1773645568.290361,4.45,4,3992.50,60.62,1325.00,2373.35,0.00,0.000000,0.000000,253,492,11.063222,0.020808,52659143,26462130,0,0,66044,0,1,1 +1773645573.294120,4.34,4,3992.50,60.39,1334.09,2364.22,0.00,40800.438697,41440.754472,2839126,2791671,11.181191,0.019615,52660621,26463531,0,0,66047,0,1,1 +1773645578.293419,4.04,4,3992.50,60.71,1321.64,2376.75,0.00,3518930645291.647461,3518930644639.565918,258,2,11.271510,0.020197,52662105,26464965,0,0,66049,0,1,1 +1773645583.294631,3.84,4,3992.50,60.68,1322.51,2375.85,0.00,3517584599841.362793,3517584599843.483887,75,0,11.619927,0.019902,52663588,26466390,0,0,66052,0,1,1 +1773645588.295000,3.49,4,3992.50,60.56,1327.15,2371.11,0.00,3518177587079.014160,0.000000,11,0,12.038029,0.023151,52665283,26468021,0,0,66054,0,1,1 +1773645593.294660,3.48,4,3992.50,60.32,1336.57,2361.77,0.00,0.053519,0.000000,75,0,11.960867,0.020927,52666828,26469508,0,0,66057,0,1,1 +1773645598.295067,3.78,4,3992.50,60.42,1332.89,2365.42,0.00,1.604068,10.674325,253,492,11.778447,0.019902,52668310,26470925,0,0,66059,0,1,1 +1773645603.290375,3.69,4,3992.50,60.58,1326.54,2371.81,0.00,3521741777521.914551,3521741777512.888672,11,0,11.831298,0.020372,52669843,26472385,0,0,66062,0,1,1 +1773645608.290369,3.89,4,3992.50,60.62,1324.75,2373.37,0.00,40832.834626,41482.799500,2839135,2791815,12.099167,0.021293,52671413,26473899,0,0,66064,0,1,1 +1773645613.290454,4.71,4,3992.50,60.55,1327.48,2370.67,0.00,3518377703948.841797,3518377703298.888672,11,0,11.993328,0.022178,52672991,26475432,0,0,66067,0,1,1 +1773645618.290556,4.80,4,3992.50,60.54,1327.80,2370.32,0.00,0.000000,0.000000,11,0,12.796926,0.023876,52674757,26477127,0,0,66069,0,1,1 +1773645623.295161,4.29,4,3992.50,60.41,1332.97,2365.19,0.00,1.656189,10.665371,253,492,10.627624,0.018768,52676153,26478492,0,0,66072,0,1,1 +1773645628.290378,4.25,4,3992.50,60.62,1324.90,2373.21,0.00,3521806142576.345703,3521806142567.139648,205,0,10.580441,0.017745,52677494,26479769,0,0,66074,0,1,1 +1773645633.290384,4.44,4,3992.50,60.45,1331.37,2366.78,0.00,40842.284933,41493.415666,2840638,2792373,10.902926,0.018723,52678917,26481117,0,0,66077,0,1,1 +1773645638.293448,4.80,4,3992.50,60.76,1318.86,2379.02,0.00,3516282492804.728516,3516282492153.996094,205,0,10.924364,0.019979,52680363,26482502,0,0,66079,0,1,1 +1773645643.292658,3.89,4,3992.50,60.60,1325.45,2372.47,0.00,3518992638235.509766,0.000000,75,0,11.092743,0.019958,52681883,26483943,0,0,66082,0,1,1 +1773645648.294642,4.45,4,3992.50,60.69,1321.88,2376.03,0.00,2.121033,0.000195,258,2,10.715381,0.019174,52683301,26485321,0,0,66084,0,1,1 +1773645653.293834,3.95,4,3992.50,60.65,1323.49,2374.46,0.00,40837.209440,41489.548286,2839135,2791930,10.330151,0.018728,52684677,26486638,0,0,66087,0,1,1 +1773645658.290623,4.60,4,3992.50,60.83,1316.45,2381.48,0.00,3520698245666.856445,3520698245014.203613,258,2,10.305966,0.018162,52686046,26487958,0,0,66089,0,1,1 +1773645663.291004,4.35,4,3992.50,60.68,1322.11,2375.80,0.00,40837.224800,41490.364615,2840638,2792440,10.573889,0.017950,52687440,26489273,0,0,66092,0,1,1 +1773645668.290405,4.45,4,3992.50,60.92,1322.70,2385.05,0.00,3518858740689.541504,3518858740038.395508,75,0,10.768373,0.021381,52689037,26490784,0,0,66094,0,1,1 +1773645673.291086,4.20,4,3992.50,60.65,1333.00,2374.76,0.00,3517957862498.676270,0.000000,11,0,10.281048,0.018988,52690440,26492156,0,0,66097,0,1,1 +1773645678.295093,4.09,4,3992.50,60.66,1332.76,2374.99,0.00,1.656388,10.666648,253,492,10.403654,0.018710,52691809,26493466,0,0,66099,0,1,1 +1773645683.294378,4.04,4,3992.50,60.60,1335.00,2372.75,0.00,3518939945756.013184,3518939945746.813965,205,0,10.669750,0.018662,52693210,26494805,0,0,66102,0,1,1 +1773645688.290761,4.60,4,3992.50,60.67,1332.39,2375.32,0.00,1.478511,10.682922,253,492,10.448101,0.020241,52694614,26496147,0,0,66104,0,1,1 +1773645693.290490,4.19,4,3992.50,60.60,1335.16,2372.61,0.00,0.517704,3518628263349.968750,258,2,10.570964,0.018708,52696019,26497471,0,0,66107,0,1,1 +1773645698.294659,5.25,4,3992.50,60.98,1327.48,2387.54,0.00,0.000000,0.000000,258,2,10.894308,0.020876,52697501,26498903,0,0,66109,0,1,1 +1773645703.294355,4.10,4,3992.50,60.86,1331.96,2382.80,0.00,3518650724125.795410,3518650724127.791016,205,0,11.013456,0.019412,52698939,26500285,0,0,66112,0,1,1 +1773645708.290390,4.45,4,3992.50,61.02,1325.81,2388.95,0.00,1.478614,10.683667,253,492,10.930746,0.018377,52700321,26501611,0,0,66114,0,1,1 +1773645713.293572,4.30,4,3992.50,60.79,1334.70,2380.09,0.00,3516199510764.910156,3516199510755.718262,205,0,10.749075,0.018023,52701709,26502920,0,0,66117,0,1,1 +1773645718.294489,4.55,4,3992.50,60.98,1327.21,2387.52,0.00,0.000000,0.000000,205,0,10.887079,0.019264,52703153,26504294,0,0,66119,0,1,1 +1773645723.293941,4.45,4,3992.50,60.73,1337.09,2377.69,0.00,3518822470680.044434,0.000000,11,0,11.227842,0.020013,52704638,26505738,0,0,66122,0,1,1 +1773645728.290804,4.55,4,3992.50,60.79,1333.04,2380.09,0.00,0.180387,0.000000,205,0,11.477531,0.020193,52706168,26507184,0,0,66124,0,1,1 +1773645733.291102,4.60,4,3992.50,60.78,1333.49,2379.49,0.00,0.000000,0.000000,205,0,11.468381,0.021137,52707727,26508683,0,0,66127,0,1,1 +1773645738.290921,4.60,4,3992.50,60.86,1330.08,2382.87,0.00,40843.811616,41495.234764,2840638,2792633,11.734233,0.021017,52709287,26510190,0,0,66129,0,1,1 +1773645743.294348,4.75,4,3992.50,60.68,1337.05,2375.87,0.00,3516027686304.475586,3516027685653.702637,11,0,11.754361,0.021078,52710823,26511670,0,0,66132,0,1,1 +1773645748.291137,4.60,4,3992.50,60.62,1339.43,2373.55,0.00,0.000000,0.000000,11,0,11.674558,0.020218,52712343,26513113,0,0,66134,0,1,1 +1773645753.295163,4.80,4,3992.50,60.75,1334.60,2378.34,0.00,1.656381,10.666607,253,492,12.144621,0.021872,52713966,26514668,0,0,66137,0,1,1 +1773645758.290942,4.81,4,3992.50,60.93,1322.29,2385.63,0.00,3521409891555.335938,3521409891546.311523,11,0,11.907987,0.022314,52715627,26516274,0,0,66139,0,1,1 +1773645763.291031,4.55,4,3992.50,60.59,1335.66,2372.22,0.00,0.000000,0.000000,11,0,11.754019,0.021246,52717207,26517786,0,0,66142,0,1,1 +1773645768.292587,4.75,4,3992.50,60.66,1332.95,2374.91,0.00,2.174714,0.000195,258,2,11.696177,0.020793,52718741,26519277,0,0,66144,0,1,1 +1773645773.294629,2.97,4,3992.50,60.60,1335.23,2372.70,0.00,3517000834790.668457,3517000834792.663086,205,0,11.384640,0.019280,52720233,26520665,0,0,66147,0,1,1 +1773645778.290375,0.90,4,3992.50,60.55,1337.13,2370.80,0.00,3521433481834.034668,0.000000,75,0,10.608459,0.019535,52721632,26522055,0,0,66149,0,1,1 +1773645783.294905,0.75,4,3992.50,60.60,1335.48,2372.45,0.00,2.119954,0.000195,258,2,10.789094,0.017985,52723004,26523352,0,0,66152,0,1,1 +1773645788.294431,1.25,4,3992.50,61.18,1314.61,2395.48,0.00,40844.207873,41497.788397,2840639,2792759,10.976955,0.019207,52724419,26524725,0,0,66154,0,1,1 +1773645793.293850,0.75,4,3992.50,61.21,1311.38,2396.55,0.00,0.000000,0.015236,2840639,2792778,11.050222,0.018860,52725853,26526084,0,0,66157,0,1,1 +1773645798.294435,1.15,4,3992.50,53.94,1595.92,2112.01,0.00,3518025310708.924805,3518025310055.467285,258,2,9.800681,0.017024,52727096,26527321,0,0,66159,0,1,1 +1773645803.294577,0.80,4,3992.50,53.59,1609.86,2098.07,0.00,3518337419685.782715,10.674697,253,492,1.316274,0.004571,52727316,26527626,0,0,66162,0,1,1 +1773645808.294802,1.00,4,3992.50,53.61,1608.85,2099.06,0.00,40839.180043,41481.446161,2840653,2792816,0.002528,0.001800,52727366,26527674,0,0,66164,0,1,1 +1773645813.291137,1.50,4,3992.50,53.61,1608.86,2099.07,0.00,3521017922071.604004,3521017921417.636719,258,2,0.000044,0.000196,52727369,26527680,0,0,66167,0,1,1 +1773645818.294101,0.90,4,3992.50,53.62,1613.88,2099.36,0.00,3516352416278.752441,3516352416280.873047,75,0,0.000000,0.000020,52727369,26527682,0,0,66169,0,1,1 +1773645823.292722,0.65,4,3992.50,53.51,1614.08,2095.11,0.00,3519408087579.700195,0.000000,11,0,0.000000,0.000030,52727369,26527685,0,0,66172,0,1,1 +1773645828.291684,0.65,4,3992.50,53.51,1614.08,2095.11,0.00,0.000000,0.000000,11,0,0.000000,0.000020,52727369,26527687,0,0,66174,0,1,1 +1773645833.290370,0.65,4,3992.50,53.53,1613.37,2095.82,0.00,0.180321,0.000000,205,0,0.000000,0.000030,52727369,26527690,0,0,66177,0,1,1 +1773645838.293983,0.55,4,3992.50,53.53,1613.37,2095.81,0.00,40812.999187,41464.249614,2840653,2792929,0.000000,0.000020,52727369,26527692,0,0,66179,0,1,1 +1773645843.294882,0.75,4,3992.50,53.53,1613.38,2095.81,0.00,3517805164116.076172,3517805164115.132324,2839150,2792439,0.000000,0.000030,52727369,26527695,0,0,66182,0,1,1 +1773645848.295027,0.90,4,3992.50,53.56,1622.57,2097.03,0.00,3518334403131.850586,3518334402481.092285,205,0,0.000025,0.000051,52727371,26527699,0,0,66184,0,1,1 +1773645853.294491,0.50,4,3992.50,53.54,1623.45,2096.14,0.00,3518814730551.490234,0.000000,11,0,0.000119,0.000170,52727381,26527712,0,0,66187,0,1,1 +1773645858.290492,0.55,4,3992.50,53.54,1623.45,2096.14,0.00,1.659042,10.683740,253,492,0.000000,0.000020,52727381,26527714,0,0,66189,0,1,1 +1773645863.290379,0.50,4,3992.50,53.54,1623.45,2096.14,0.00,0.517687,3518516843464.243164,258,2,0.000000,0.000030,52727381,26527717,0,0,66192,0,1,1 +1773645868.290452,0.80,4,3992.50,53.34,1631.11,2088.47,0.00,3518385458356.671875,3518385458358.847168,11,0,0.000058,0.000020,52727385,26527719,0,0,66194,0,1,1 +1773645873.293804,0.70,4,3992.50,53.35,1630.64,2088.95,0.00,2.173933,0.000195,258,2,0.003192,0.003581,52727428,26527768,0,0,66197,0,1,1 +1773645878.292333,1.15,4,3992.50,53.44,1621.79,2092.38,0.00,40842.787564,41495.909143,2839152,2792559,0.001612,0.002357,52727460,26527794,0,0,66199,0,1,1 +1773645883.294941,13.83,4,3992.50,60.76,1335.29,2378.88,0.00,3516601347416.438477,3516601346766.023438,11,0,0.403960,0.007001,52728293,26528194,0,0,66202,0,1,1 +1773645888.290831,2.79,4,3992.50,60.70,1337.61,2376.51,0.00,0.000000,0.000000,11,0,7.213476,0.166393,52741783,26537798,0,0,66204,0,1,1 +1773645893.290659,2.85,4,3992.50,60.74,1336.15,2377.98,0.00,0.000000,0.000000,11,0,9.213669,0.243510,52758744,26551832,0,0,66207,0,1,1 +1773645898.294932,3.00,4,3992.50,60.51,1344.93,2369.23,0.00,40807.800346,41458.990969,2840655,2793117,9.395786,0.246430,52776128,26566049,0,0,66209,0,1,1 +1773645903.294508,3.15,4,3992.50,60.69,1337.90,2376.23,0.00,3518735446318.131348,3518735445666.275391,75,0,8.991818,0.239173,52792819,26579810,0,0,66212,0,1,1 +1773645908.295130,3.15,4,3992.50,60.88,1328.73,2383.61,0.00,40837.549298,41489.438415,2840655,2793272,8.356336,0.229790,52808348,26593064,0,0,66214,0,1,1 +1773645913.294909,2.95,4,3992.50,60.76,1333.24,2379.02,0.00,3518592343592.623047,3518592342940.677734,11,0,8.949074,0.230681,52824783,26606416,0,0,66217,0,1,1 +1773645918.290352,2.84,4,3992.50,60.70,1335.78,2376.49,0.00,0.053564,0.000000,75,0,7.405788,0.207502,52838750,26618329,0,0,66219,0,1,1 +1773645923.291287,2.74,4,3992.50,60.83,1330.71,2381.65,0.00,0.126734,0.000000,205,0,7.865441,0.208378,52853166,26630527,0,0,66222,0,1,1 +1773645928.294981,2.74,4,3992.50,60.48,1344.36,2367.90,0.00,3515839713534.339355,0.000000,11,0,9.390568,0.242805,52870590,26644537,0,0,66224,0,1,1 +1773645933.291013,2.39,4,3992.50,60.68,1336.28,2375.93,0.00,0.000000,0.000000,11,0,6.608754,0.189521,52883149,26655409,0,0,66227,0,1,1 +1773645938.290377,2.64,4,3992.50,61.43,1307.66,2404.96,0.00,0.053522,0.000000,75,0,6.567317,0.180167,52895226,26666085,0,0,66229,0,1,1 +1773645943.291028,2.84,4,3992.50,61.24,1314.52,2397.81,0.00,2.121599,0.000195,258,2,8.353404,0.217440,52910567,26678765,0,0,66232,0,1,1 +1773645948.291173,2.44,4,3992.50,60.80,1332.02,2380.32,0.00,0.000000,0.000000,258,2,7.111613,0.205116,52924190,26690362,0,0,66234,0,1,1 +1773645953.294666,2.39,4,3992.50,60.63,1338.42,2373.91,0.00,3515981123080.461914,3515981123082.455566,205,0,5.132438,0.143976,52933746,26699025,0,0,66237,0,1,1 +1773645958.295270,2.63,4,3992.50,61.14,1318.45,2393.88,0.00,1.477263,10.673905,253,492,5.991755,0.159551,52944785,26708622,0,0,66239,0,1,1 +1773645963.293926,2.85,4,3992.50,60.60,1339.62,2372.71,0.00,0.000000,0.000000,253,492,9.108944,0.233818,52961620,26721973,0,0,66242,0,1,1 +1773645968.290634,2.69,4,3992.50,60.68,1332.47,2375.78,0.00,0.518017,3520755451003.389160,258,2,6.561483,0.182829,52973839,26732628,0,0,66244,0,1,1 +1773645973.290309,2.79,4,3992.50,60.87,1325.02,2383.14,0.00,3518666113593.844238,3518666113596.020020,11,0,7.193646,0.192763,52987036,26744012,0,0,66247,0,1,1 +1773645978.295283,2.49,4,3992.50,60.39,1343.97,2364.22,0.00,0.000000,0.000000,11,0,9.213589,0.239096,53004144,26757702,0,0,66249,0,1,1 +1773645983.291021,2.79,4,3992.50,60.46,1341.20,2367.00,0.00,40867.790572,41519.525667,2839152,2792999,6.448576,0.182166,53016254,26768244,0,0,66252,0,1,1 +1773645988.290338,2.39,4,3992.50,60.66,1333.37,2374.79,0.00,3518917707933.527344,3518917707282.258301,11,0,6.554724,0.179244,53028326,26778844,0,0,66254,0,1,1 +1773645993.290407,3.30,4,3992.50,60.90,1323.95,2384.24,0.00,40842.114263,41494.250296,2840655,2793514,9.102281,0.231016,53045024,26792181,0,0,66257,0,1,1 +1773645998.291088,3.00,4,3992.50,60.66,1328.07,2374.83,0.00,3517958108688.069336,3517958108035.833496,205,0,6.869436,0.202150,53058312,26803608,0,0,66259,0,1,1 +1773646003.294166,2.64,4,3992.50,60.60,1330.21,2372.50,0.00,3516272562660.064941,0.000000,75,0,5.700385,0.154887,53068884,26812844,0,0,66262,0,1,1 +1773646008.294705,2.34,4,3992.50,60.63,1328.80,2373.89,0.00,3518057868664.564941,0.000000,11,0,7.013376,0.182445,53081774,26823689,0,0,66264,0,1,1 +1773646013.294860,2.59,4,3992.50,60.34,1340.31,2362.39,0.00,0.180268,0.000000,205,0,8.432875,0.230960,53097661,26836776,0,0,66267,0,1,1 +1773646018.290687,1.93,4,3992.50,60.42,1337.02,2365.64,0.00,1.996784,0.000195,258,2,4.384201,0.126590,53105937,26844394,0,0,66269,0,1,1 +1773646023.291120,2.13,4,3992.50,60.34,1340.21,2362.48,0.00,0.000000,0.000000,258,2,4.800881,0.128546,53114811,26852310,0,0,66272,0,1,1 +1773646028.294459,2.49,4,3992.50,60.51,1331.96,2369.06,0.00,3516089429473.165039,3516089429475.339355,11,0,8.747050,0.217974,53131003,26864936,0,0,66274,0,1,1 +1773646033.290687,2.95,4,3992.50,60.43,1334.96,2365.97,0.00,0.053556,0.000000,75,0,6.109445,0.182449,53142701,26875465,0,0,66277,0,1,1 +1773646038.294083,2.49,4,3992.50,60.49,1332.82,2368.13,0.00,40805.185729,41456.140137,2839152,2793170,5.492958,0.151499,53152856,26884643,0,0,66279,0,1,1 +1773646043.290343,2.49,4,3992.50,60.82,1319.64,2381.32,0.00,3521070695836.034668,3521070695184.023926,205,0,7.843446,0.200886,53167240,26896439,0,0,66282,0,1,1 +1773646048.290370,2.34,4,3992.50,60.24,1342.45,2358.52,0.00,1.477433,10.675137,253,492,6.962115,0.202766,53180674,26907870,0,0,66284,0,1,1 +1773646053.295046,2.07,4,3992.50,60.35,1338.15,2362.80,0.00,0.517192,3515150200356.531738,258,2,3.447756,0.098765,53187209,26913988,0,0,66287,0,1,1 +1773646058.290908,2.49,4,3992.50,60.63,1326.83,2373.80,0.00,3521351576635.151367,3521351576637.328613,11,0,4.046852,0.107215,53194710,26920721,0,0,66289,0,1,1 +1773646063.293502,2.64,4,3992.50,60.29,1340.05,2360.57,0.00,40811.778781,41462.856253,2839152,2793241,8.395653,0.208527,53210322,26932845,0,0,66292,0,1,1 +1773646068.294351,2.79,4,3992.50,60.40,1335.80,2364.81,0.00,3517839560280.200684,3517839559628.716309,205,0,5.623319,0.174439,53221204,26942766,0,0,66294,0,1,1 +1773646073.294710,2.53,4,3992.50,60.49,1332.38,2368.25,0.00,3518184512465.864258,0.000000,11,0,4.535746,0.124963,53229630,26950467,0,0,66297,0,1,1 +1773646078.294716,2.44,4,3992.50,60.62,1327.20,2373.41,0.00,40842.625924,41495.017978,2840655,2793779,5.936338,0.154808,53240595,26959785,0,0,66299,0,1,1 +1773646083.294641,2.69,4,3992.50,60.34,1338.26,2362.35,0.00,3518490516097.426270,3518490515445.023438,11,0,8.365073,0.223719,53256410,26972514,0,0,66302,0,1,1 +1773646088.291351,3.05,4,3992.50,60.64,1321.80,2374.26,0.00,40859.831753,41511.745693,2839152,2793322,5.391963,0.152973,53266490,26981619,0,0,66304,0,1,1 +1773646093.294711,2.79,4,3992.50,60.79,1315.94,2380.10,0.00,3516074427917.598633,3516074427266.551270,11,0,5.893169,0.158296,53277346,26991153,0,0,66307,0,1,1 +1773646098.290751,2.70,4,3992.50,60.38,1332.10,2363.92,0.00,0.180416,0.000000,205,0,9.106635,0.231757,53294293,27004426,0,0,66309,0,1,1 +1773646103.290906,2.53,4,3992.50,60.10,1343.19,2352.86,0.00,1.477396,10.674865,253,492,5.402219,0.164466,53304760,27013931,0,0,66312,0,1,1 +1773646108.294432,2.13,4,3992.50,60.30,1335.15,2360.86,0.00,3515957266396.028320,3515957266387.017578,11,0,4.864080,0.132646,53313760,27022087,0,0,66314,0,1,1 +1773646113.290262,3.04,4,3992.50,60.32,1334.36,2361.64,0.00,0.180424,0.000000,205,0,7.185008,0.182680,53326976,27032917,0,0,66317,0,1,1 +1773646118.295257,2.94,4,3992.50,60.68,1322.73,2375.77,0.00,1.993126,0.000195,258,2,7.087249,0.202478,53340642,27044408,0,0,66319,0,1,1 +1773646123.291324,2.18,4,3992.50,60.63,1324.59,2373.90,0.00,3521207213720.053711,3521207213722.050781,205,0,5.426595,0.148443,53350639,27053396,0,0,66322,0,1,1 +1773646128.293535,2.39,4,3992.50,60.53,1328.71,2369.80,0.00,3516881954354.002441,0.000000,11,0,6.536374,0.172234,53362694,27063700,0,0,66324,0,1,1 +1773646133.290518,2.90,4,3992.50,60.74,1320.19,2378.29,0.00,0.180382,0.000000,205,0,8.654514,0.237092,53379109,27077066,0,0,66327,0,1,1 +1773646138.292448,2.08,4,3992.50,60.91,1313.76,2384.70,0.00,40826.739852,41479.229725,2840655,2793962,4.276495,0.126145,53387248,27084651,0,0,66329,0,1,1 +1773646143.294447,31.53,4,3992.50,60.52,1329.12,2369.29,0.00,3517030790429.537109,3517030789777.056641,205,0,125.729594,0.081676,53404843,27090808,0,0,66332,0,1,1 +1773646148.293338,36.57,4,3992.50,60.78,1318.63,2379.80,0.00,3519218108600.655762,0.000000,75,0,136.816518,0.033656,53418568,27093404,0,0,66334,0,1,1 +1773646153.294761,33.23,4,3992.50,60.32,1336.64,2361.79,0.00,0.000000,0.000000,75,0,134.132834,0.033906,53431806,27096085,0,0,66337,0,1,1 +1773646158.295574,32.69,4,3992.50,60.36,1335.08,2363.30,0.00,0.000000,0.000000,75,0,129.611897,0.032788,53444315,27098658,0,0,66339,0,1,1 +1773646163.293363,26.09,4,3992.50,60.61,1325.31,2373.20,0.00,3519993454309.191895,0.000000,11,0,106.939661,0.025818,53454416,27100706,0,0,66342,0,1,1 +1773646168.290387,0.96,4,3992.50,54.56,1562.18,2136.33,0.00,0.000000,0.000000,11,0,52.412639,0.013074,53459306,27101716,0,0,66344,0,1,1 +1773646173.292313,1.05,4,3992.50,53.73,1594.67,2103.82,0.00,40827.028027,41479.611616,2840666,2794071,0.003767,0.002474,53459366,27101758,0,0,66347,0,1,1 +1773646178.290386,0.90,4,3992.50,53.78,1596.52,2105.69,0.00,3519794068366.304688,3519794067722.239258,253,492,0.000000,0.000020,53459366,27101760,0,0,66349,0,1,1 +1773646183.292997,0.70,4,3992.50,53.78,1596.59,2105.68,0.00,0.000000,0.000000,253,492,0.000000,0.000030,53459366,27101763,0,0,66352,0,1,1 +1773646188.294562,0.65,4,3992.50,53.79,1596.26,2106.00,0.00,0.000000,0.000000,253,492,0.000000,0.000020,53459366,27101765,0,0,66354,0,1,1 +1773646193.290368,0.65,4,3992.50,53.79,1596.26,2106.00,0.00,0.518110,3521391347034.526855,258,2,0.000000,0.000030,53459366,27101768,0,0,66357,0,1,1 +1773646198.294371,0.55,4,3992.50,53.79,1596.26,2106.00,0.00,0.000000,0.000000,258,2,0.000000,0.000663,53459366,27101774,0,0,66359,0,1,1 +1773646203.294361,0.80,4,3992.50,53.79,1596.34,2105.92,0.00,40840.671304,41495.838196,2840675,2794191,0.000000,0.000030,53459366,27101777,0,0,66362,0,1,1 +1773646208.294758,0.95,4,3992.50,53.99,1589.46,2113.76,0.00,3518157846712.719238,3518157846059.780273,11,0,0.000000,0.000020,53459366,27101779,0,0,66364,0,1,1 +1773646213.293604,0.65,4,3992.50,53.99,1589.06,2114.01,0.00,0.053528,0.000000,75,0,0.000000,0.000030,53459366,27101782,0,0,66367,0,1,1 +1773646218.294822,0.65,4,3992.50,53.80,1596.70,2106.36,0.00,3517580751839.269043,0.000000,11,0,0.000126,0.000175,53459376,27101794,0,0,66369,0,1,1 +1773646223.294978,0.55,4,3992.50,53.81,1596.46,2106.61,0.00,2.175323,0.000195,258,2,0.000016,0.000046,53459378,27101799,0,0,66372,0,1,1 +1773646228.294534,0.65,4,3992.50,53.80,1596.79,2106.28,0.00,40834.488312,41488.917457,2839172,2793848,0.000000,0.000020,53459378,27101801,0,0,66374,0,1,1 +1773646233.292122,15.53,4,3992.50,59.92,1356.82,2346.19,0.00,0.004690,0.025598,2839175,2793888,19.243140,0.015640,53461640,27102798,0,0,66377,0,1,1 +1773646238.292547,36.54,4,3992.50,60.33,1346.62,2361.88,0.00,3518138320494.200684,3518138319841.985840,75,0,124.163247,0.033228,53474460,27105291,0,0,66379,0,1,1 +1773646243.295166,31.27,4,3992.50,60.28,1348.35,2360.10,0.00,40821.341503,41474.401169,2840678,2794546,121.907781,0.024649,53487102,27107160,0,0,66382,0,1,1 +1773646248.293653,30.73,4,3992.50,60.05,1357.30,2351.15,0.00,3519501531472.349121,3519501530816.627441,258,2,120.405817,0.025769,53499658,27109125,0,0,66384,0,1,1 +1773646253.292304,30.69,4,3992.50,60.04,1357.76,2350.66,0.00,3519386840809.015625,3519386840811.191895,11,0,120.199717,0.022906,53512069,27110885,0,0,66387,0,1,1 +1773646258.290498,29.95,4,3992.50,59.88,1364.07,2344.40,0.00,0.180339,0.000000,205,0,120.209306,0.020616,53524444,27112436,0,0,66389,0,1,1 +1773646263.295342,30.61,4,3992.50,60.45,1341.62,2366.86,0.00,40793.350868,41445.465086,2839175,2794104,119.850233,0.035041,53536787,27115116,0,0,66392,0,1,1 +1773646268.293110,30.28,4,3992.50,60.38,1344.36,2364.14,0.00,0.000000,0.020126,2839175,2794119,119.017777,0.032397,53549038,27117584,0,0,66394,0,1,1 +1773646273.294562,28.28,4,3992.50,59.93,1362.33,2346.54,0.00,3517415734439.479492,3517415733786.902832,205,0,119.530824,0.031929,53561403,27120093,0,0,66397,0,1,1 +1773646278.290424,1.41,4,3992.50,55.25,1545.84,2163.02,0.00,0.000000,0.000000,205,0,40.895332,0.016722,53565731,27121296,0,0,66399,0,1,1 +1773646283.290384,0.70,4,3992.50,54.41,1578.44,2130.42,0.00,40843.052174,41496.903126,2840689,2794714,0.000031,0.000055,53565733,27121301,0,0,66402,0,1,1 +1773646288.294025,0.60,4,3992.50,54.09,1591.24,2117.62,0.00,3515877033659.127441,3515877033005.937500,11,0,0.000000,0.000020,53565733,27121303,0,0,66404,0,1,1 +1773646293.290415,0.80,4,3992.50,54.08,1591.36,2117.50,0.00,0.180404,0.000000,205,0,0.001261,0.001280,53565744,27121322,0,0,66407,0,1,1 +1773646298.294395,1.05,4,3992.50,54.06,1593.73,2116.75,0.00,40800.528097,41453.004544,2839186,2794258,0.001108,0.000627,53565766,27121337,0,0,66409,0,1,1 +1773646303.290417,0.55,4,3992.50,54.06,1593.73,2116.75,0.00,3521238327929.264648,3521238327275.749023,205,0,0.000031,0.000055,53565768,27121342,0,0,66412,0,1,1 +1773646308.290615,0.60,4,3992.50,54.06,1593.73,2116.75,0.00,0.000000,0.000000,205,0,0.001742,0.001351,53565794,27121360,0,0,66414,0,1,1 +1773646313.290402,0.65,4,3992.50,53.87,1601.36,2109.12,0.00,3518586765006.085449,0.000000,75,0,0.000000,0.000030,53565794,27121363,0,0,66417,0,1,1 +1773646318.290405,0.55,4,3992.50,53.87,1601.36,2109.12,0.00,3518435602365.450684,0.000000,11,0,0.000000,0.000020,53565794,27121365,0,0,66419,0,1,1 +1773646323.290455,0.55,4,3992.50,53.62,1611.08,2099.40,0.00,0.000000,0.000000,11,0,0.000076,0.000123,53565800,27121374,0,0,66422,0,1,1 +1773646328.294595,0.75,4,3992.50,53.75,1606.82,2104.29,0.00,0.000000,0.000000,11,0,0.000000,0.000020,53565800,27121376,0,0,66424,0,1,1 +1773646333.294713,0.55,4,3992.50,53.77,1606.08,2105.02,0.00,0.053514,0.000000,75,0,0.000000,0.000674,53565800,27121383,0,0,66427,0,1,1 +1773646338.290674,0.70,4,3992.50,53.77,1606.09,2105.02,0.00,40866.146872,41519.649351,2839186,2794353,0.000031,0.000045,53565802,27121387,0,0,66429,0,1,1 +1773646343.297544,11.02,4,3992.50,60.07,1359.39,2351.78,0.00,3513609523377.204102,3513609522725.178711,11,0,13.116173,0.014085,53567451,27122340,0,0,66432,0,1,1 +1773646348.290653,36.70,4,3992.50,59.78,1370.29,2340.62,0.00,40899.278742,41554.153738,2840691,2794983,121.426311,0.032485,53580016,27124832,0,0,66434,0,1,1 +1773646353.295237,30.18,4,3992.50,60.04,1360.30,2350.74,0.00,3515214041569.945801,3515214040916.572266,11,0,121.654518,0.042778,53592337,27128176,0,0,66437,0,1,1 +1773646358.292391,29.35,4,3992.50,59.73,1372.39,2338.61,0.00,1.658659,10.681276,253,492,120.231841,0.057394,53604427,27132656,0,0,66439,0,1,1 +1773646363.290349,28.82,4,3992.50,59.91,1365.38,2345.57,0.00,3519874074981.035645,3519874074972.014648,11,0,120.210878,0.059519,53616499,27137354,0,0,66442,0,1,1 +1773646368.295139,34.87,4,3992.50,59.74,1368.45,2338.91,0.00,40794.108429,41446.736484,2839188,2794603,119.648110,0.055741,53628652,27141749,0,0,66444,0,1,1 +1773646373.291311,28.28,4,3992.50,59.78,1366.84,2340.55,0.00,3521133069360.778809,3521133068716.049316,253,492,119.252446,0.053662,53640605,27145934,0,0,66447,0,1,1 +1773646378.291155,32.26,4,3992.50,59.77,1367.07,2340.25,0.00,40832.800932,41477.218574,2839188,2794639,119.569320,0.031058,53652926,27148361,0,0,66449,0,1,1 +1773646383.290791,30.95,4,3992.50,59.77,1367.39,2339.97,0.00,3518693599179.702637,3518693598526.239746,11,0,119.372869,0.046134,53665124,27151951,0,0,66452,0,1,1 +1773646388.290452,2.36,4,3992.50,55.18,1549.51,2160.42,0.00,40836.097242,41489.574511,2839200,2794703,51.075501,0.020974,53670305,27153531,0,0,66454,0,1,1 +1773646393.294627,0.65,4,3992.50,54.47,1577.37,2132.51,0.00,3515501903251.250977,3515501902598.362793,11,0,0.000000,0.000030,53670305,27153534,0,0,66457,0,1,1 +1773646398.295104,0.45,4,3992.50,54.14,1590.33,2119.55,0.00,0.000000,0.000000,11,0,0.000013,0.000020,53670306,27153536,0,0,66459,0,1,1 +1773646403.294252,0.60,4,3992.50,54.01,1595.29,2114.58,0.00,0.000000,0.000000,11,0,0.000000,0.000674,53670306,27153543,0,0,66462,0,1,1 +1773646408.295227,0.60,4,3992.50,54.02,1595.05,2114.82,0.00,40835.088977,41489.525040,2840703,2795272,0.000000,0.000020,53670306,27153545,0,0,66464,0,1,1 +1773646413.293467,0.55,4,3992.50,54.01,1595.45,2114.43,0.00,3519676257397.899902,3519676256740.929688,258,2,0.000000,0.000030,53670306,27153548,0,0,66467,0,1,1 +1773646418.294543,0.85,4,3992.50,54.02,1597.88,2115.14,0.00,0.000000,0.000000,258,2,0.000000,0.000020,53670306,27153550,0,0,66469,0,1,1 +1773646423.290434,0.60,4,3992.50,54.00,1595.09,2114.07,0.00,3521330527715.774902,3521330527717.952148,11,0,0.000000,0.000030,53670306,27153553,0,0,66472,0,1,1 +1773646428.290447,0.60,4,3992.50,53.99,1595.41,2113.76,0.00,0.000000,0.000000,11,0,0.000000,0.000020,53670306,27153555,0,0,66474,0,1,1 +1773646433.290384,0.70,4,3992.50,53.99,1595.18,2113.99,0.00,0.180276,0.000000,205,0,0.000126,0.000185,53670316,27153568,0,0,66477,0,1,1 +1773646438.290392,0.65,4,3992.50,53.99,1595.18,2113.99,0.00,3518431360546.412109,0.000000,11,0,0.000016,0.000036,53670318,27153572,0,0,66479,0,1,1 +1773646443.294567,0.65,4,3992.50,53.99,1595.18,2113.99,0.00,2.173576,0.000195,258,2,0.000000,0.000030,53670318,27153575,0,0,66482,0,1,1 +1773646448.291488,1.45,4,3992.50,54.00,1591.43,2114.20,0.00,3520605265903.509766,3520605265905.686523,11,0,0.000000,0.000020,53670318,27153577,0,0,66484,0,1,1 +1773646453.294586,8.63,4,3992.50,59.83,1363.02,2342.56,0.00,40817.769103,41472.059321,2840705,2795385,2.007164,0.006070,53670788,27153893,0,0,66487,0,1,1 +1773646458.294623,37.88,4,3992.50,59.97,1357.49,2348.06,0.00,3518411169094.823730,3518411168437.957520,258,2,122.171008,0.041094,53683427,27157015,0,0,66489,0,1,1 +1773646463.294646,31.28,4,3992.50,59.64,1370.50,2335.07,0.00,40830.974286,41486.985698,2839202,2795004,122.169014,0.033934,53695937,27159605,0,0,66492,0,1,1 +1773646468.295157,30.13,4,3992.50,59.78,1364.88,2340.71,0.00,3518077173766.907227,3518077173113.135254,11,0,120.551520,0.038403,53708157,27162554,0,0,66494,0,1,1 +1773646473.293095,30.51,4,3992.50,59.81,1363.91,2341.65,0.00,1.658399,10.679600,253,492,120.223140,0.053099,53720543,27166645,0,0,66497,0,1,1 +1773646478.295193,31.45,4,3992.50,60.06,1352.41,2351.63,0.00,0.000000,0.000000,253,492,120.123236,0.057642,53733048,27171163,0,0,66499,0,1,1 +1773646483.295265,30.44,4,3992.50,60.00,1354.76,2349.24,0.00,3518386816434.578613,3518386816425.507812,75,0,119.762802,0.039988,53745250,27174291,0,0,66502,0,1,1 +1773646488.295033,30.09,4,3992.50,59.89,1359.30,2344.70,0.00,40844.901170,41500.051302,2840705,2795615,119.569045,0.041223,53757406,27177500,0,0,66504,0,1,1 +1773646493.294414,30.79,4,3992.50,59.90,1358.88,2345.06,0.00,0.000000,0.004493,2840705,2795626,119.175703,0.046067,53769363,27181111,0,0,66507,0,1,1 +1773646498.293342,4.21,4,3992.50,53.39,1613.94,2090.18,0.00,3519191869294.267090,3519191868638.875977,205,0,59.696668,0.022317,53775456,27182784,0,0,66509,0,1,1 +1773646503.290386,0.70,4,3992.50,53.47,1610.77,2093.35,0.00,3520518647235.135254,0.000000,11,0,0.000619,0.000283,53775468,27182794,0,0,66512,0,1,1 +1773646508.294456,0.90,4,3992.50,53.66,1599.70,2101.10,0.00,1.656367,10.666514,253,492,0.000000,0.000020,53775468,27182796,0,0,66514,0,1,1 +1773646513.292283,0.75,4,3992.50,53.66,1599.59,2101.03,0.00,0.517901,3519966519574.371582,258,2,0.000000,0.000030,53775468,27182799,0,0,66517,0,1,1 +1773646518.290362,0.55,4,3992.50,53.66,1599.59,2101.03,0.00,3519789623279.694336,3519789623281.816895,75,0,0.000000,0.000020,53775468,27182801,0,0,66519,0,1,1 +1773646523.295290,0.65,4,3992.50,53.66,1599.59,2101.03,0.00,40793.207228,41447.015714,2839213,2795313,0.000000,0.000030,53775468,27182804,0,0,66522,0,1,1 +1773646528.294371,0.60,4,3992.50,53.66,1599.59,2101.03,0.00,3519084203764.696289,3519084203119.195801,253,492,0.000000,0.000020,53775468,27182806,0,0,66524,0,1,1 +1773646533.295208,0.75,4,3992.50,53.47,1607.18,2093.44,0.00,0.000000,0.000000,253,492,0.000000,0.000674,53775468,27182813,0,0,66527,0,1,1 +1773646538.294848,0.95,4,3992.50,53.54,1604.41,2096.11,0.00,40844.478521,41490.903866,2840716,2795833,0.001230,0.001244,53775477,27182829,0,0,66529,0,1,1 +1773646543.290403,0.70,4,3992.50,53.58,1602.73,2097.80,0.00,3521567969445.602051,3521567968789.622559,11,0,0.000109,0.000162,53775486,27182841,0,0,66532,0,1,1 +1773646548.294958,0.70,4,3992.50,53.58,1602.73,2097.80,0.00,0.053467,0.000000,75,0,0.000230,0.000583,53775495,27182856,0,0,66534,0,1,1 +1773646553.290375,0.65,4,3992.50,53.58,1602.73,2097.80,0.00,2.123822,0.000195,258,2,0.000000,0.000030,53775495,27182859,0,0,66537,0,1,1 +1773646558.290462,0.65,4,3992.50,53.58,1602.73,2097.80,0.00,3518375788595.062988,3518375788597.058105,205,0,0.000205,0.000552,53775502,27182872,0,0,66539,0,1,1 +1773646563.298548,1.45,4,3992.50,54.33,1573.50,2126.99,0.00,3512756414337.317383,0.000000,11,0,0.002923,0.002691,53775562,27182920,0,0,66542,0,1,1 +1773646568.293837,43.63,4,3992.50,60.44,1334.30,2366.18,0.00,0.000000,0.000000,11,0,114.067913,0.037137,53787427,27185754,0,0,66544,0,1,1 +1773646573.294532,30.01,4,3992.50,60.37,1336.72,2363.68,0.00,0.053508,0.000000,75,0,122.555266,0.027986,53800093,27187861,0,0,66547,0,1,1 +1773646578.294536,29.87,4,3992.50,59.92,1354.42,2346.02,0.00,2.121873,0.000195,258,2,121.569159,0.038551,53812591,27190871,0,0,66549,0,1,1 +1773646583.290552,29.22,4,3992.50,60.00,1351.51,2348.98,0.00,3521243205194.152832,3521243205196.329590,11,0,120.260074,0.036535,53824856,27193734,0,0,66552,0,1,1 +1773646588.294868,29.02,4,3992.50,59.82,1358.44,2342.02,0.00,0.000000,0.000000,11,0,120.060679,0.038173,53837116,27196723,0,0,66554,0,1,1 +1773646593.290693,28.97,4,3992.50,60.15,1345.55,2354.82,0.00,0.000000,0.000000,11,0,119.862704,0.038376,53849237,27199661,0,0,66557,0,1,1 +1773646598.290353,31.32,4,3992.50,60.23,1342.12,2358.29,0.00,0.000000,0.000000,11,0,119.373297,0.031874,53861408,27202074,0,0,66559,0,1,1 +1773646603.295096,30.25,4,3992.50,60.44,1339.76,2366.45,0.00,1.656144,10.665079,253,492,119.247963,0.039700,53873426,27205179,0,0,66562,0,1,1 +1773646608.294369,6.17,4,3992.50,54.19,1584.61,2121.72,0.00,40837.898201,41483.854673,2839226,2795678,68.504660,0.026588,53880370,27207240,0,0,66564,0,1,1 +1773646613.290361,1.00,4,3992.50,54.08,1589.03,2117.30,0.00,9.827799,10.781786,2840735,2796193,0.002228,0.001067,53880412,27207271,0,0,66567,0,1,1 +1773646618.290450,0.65,4,3992.50,54.08,1588.82,2117.52,0.00,3518374735185.421387,3518374734538.617188,253,492,0.000000,0.000020,53880412,27207273,0,0,66569,0,1,1 +1773646623.290377,0.65,4,3992.50,54.04,1590.70,2115.63,0.00,3518488514073.839355,3518488514064.641602,205,0,0.000000,0.000030,53880412,27207276,0,0,66572,0,1,1 +1773646628.294537,1.00,4,3992.50,54.34,1577.93,2127.52,0.00,1.476213,10.666321,253,492,0.000000,0.000020,53880412,27207278,0,0,66574,0,1,1 +1773646633.294399,0.55,4,3992.50,54.30,1579.45,2125.87,0.00,40842.900900,41489.884424,2840735,2796295,0.000000,0.000030,53880412,27207281,0,0,66577,0,1,1 +1773646638.295086,0.65,4,3992.50,54.29,1579.82,2125.50,0.00,3517953955252.876953,3517953954596.803711,205,0,0.000031,0.000045,53880414,27207285,0,0,66579,0,1,1 +1773646643.294556,0.75,4,3992.50,53.89,1595.32,2109.99,0.00,1.995329,0.000195,258,2,0.000025,0.000061,53880416,27207290,0,0,66582,0,1,1 +1773646648.290661,0.65,4,3992.50,53.90,1595.08,2110.24,0.00,3521180427451.485352,3521180427453.608887,75,0,0.000008,0.000028,53880417,27207293,0,0,66584,0,1,1 +1773646653.295276,0.70,4,3992.50,53.90,1594.86,2110.46,0.00,3515192320791.055176,0.000000,11,0,0.000050,0.000092,53880421,27207300,0,0,66587,0,1,1 +1773646658.290661,1.00,4,3992.50,54.10,1589.57,2118.25,0.00,0.180440,0.000000,205,0,0.000101,0.000144,53880429,27207310,0,0,66589,0,1,1 +1773646663.294693,0.60,4,3992.50,53.74,1601.23,2104.09,0.00,40800.619316,41455.372648,2839232,2795844,0.000000,0.000673,53880429,27207317,0,0,66592,0,1,1 +1773646668.294812,0.70,4,3992.50,53.74,1601.23,2104.09,0.00,3518353410128.263672,3518353409473.124512,75,0,0.000000,0.000020,53880429,27207319,0,0,66594,0,1,1 +1773646673.293564,0.90,4,3992.50,53.67,1604.16,2101.15,0.00,40853.584596,41509.874384,2840735,2796366,0.001396,0.000733,53880453,27207338,0,0,66597,0,1,1 +1773646678.292606,40.52,4,3992.50,60.11,1351.87,2353.38,0.00,3519111015865.125000,3519111015206.750977,258,2,99.560701,0.034122,53890803,27209817,0,0,66599,0,1,1 +1773646683.294546,28.88,4,3992.50,59.93,1358.61,2346.56,0.00,3517072634641.215332,3517072634643.390137,11,0,119.917819,0.029713,53903008,27212095,0,0,66602,0,1,1 +1773646688.290655,28.87,4,3992.50,60.09,1352.71,2352.52,0.00,2.177085,0.000195,258,2,118.254235,0.022253,53915123,27213833,0,0,66604,0,1,1 +1773646693.290452,29.66,4,3992.50,59.78,1368.71,2340.49,0.00,0.000000,0.000000,258,2,119.171364,0.025162,53927417,27215795,0,0,66607,0,1,1 +1773646698.295316,29.16,4,3992.50,59.80,1367.86,2341.31,0.00,0.000000,0.000000,258,2,119.050234,0.029210,53939594,27218053,0,0,66609,0,1,1 +1773646703.290870,29.44,4,3992.50,60.13,1355.06,2354.14,0.00,3521568620801.566406,3521568620803.563477,205,0,119.668459,0.028606,53951647,27220293,0,0,66612,0,1,1 +1773646708.291142,29.00,4,3992.50,59.92,1362.92,2346.17,0.00,1.477361,10.674616,253,492,118.756838,0.023275,53963753,27222109,0,0,66614,0,1,1 +1773646713.290955,29.40,4,3992.50,59.91,1363.12,2345.76,0.00,3518568329737.830566,3518568329728.759277,75,0,120.170454,0.026912,53976051,27224204,0,0,66617,0,1,1 +1773646718.294506,11.46,4,3992.50,56.78,1486.12,2223.14,0.00,40804.767265,41459.869691,2839242,2796133,90.859851,0.025492,53985268,27226182,0,0,66619,0,1,1 +1773646723.295064,1.90,4,3992.50,54.97,1557.23,2152.05,0.00,3518044661919.472168,3518044661261.855957,258,2,0.003129,0.001578,53985327,27226224,0,0,66622,0,1,1 +1773646728.294658,0.55,4,3992.50,54.13,1589.96,2119.31,0.00,3518723160735.318359,10.675868,253,492,0.000000,0.000020,53985327,27226226,0,0,66624,0,1,1 +1773646733.294575,0.55,4,3992.50,53.99,1595.39,2113.88,0.00,40842.612240,41490.209868,2840751,2796729,0.000000,0.000674,53985327,27226233,0,0,66627,0,1,1 +1773646738.290582,0.65,4,3992.50,53.98,1596.00,2113.28,0.00,3521249465335.518066,3521249464678.208496,205,0,0.000000,0.000020,53985327,27226235,0,0,66629,0,1,1 +1773646743.291933,0.50,4,3992.50,53.97,1596.17,2113.10,0.00,3517486692524.045898,0.000000,11,0,0.000000,0.000030,53985327,27226238,0,0,66632,0,1,1 +1773646748.295270,0.90,4,3992.50,54.37,1580.93,2128.52,0.00,0.180153,0.000000,205,0,0.000000,0.000020,53985327,27226240,0,0,66634,0,1,1 +1773646753.295124,0.60,4,3992.50,54.09,1591.44,2117.88,0.00,1.477484,10.675506,253,492,0.000000,0.000030,53985327,27226243,0,0,66637,0,1,1 +1773646758.294814,0.60,4,3992.50,54.09,1591.44,2117.88,0.00,3518655606205.169922,3518655606196.152344,11,0,0.000000,0.000020,53985327,27226245,0,0,66639,0,1,1 +1773646763.294593,0.55,4,3992.50,54.08,1592.10,2117.21,0.00,0.180281,0.000000,205,0,0.000000,0.000030,53985327,27226248,0,0,66642,0,1,1 +1773646768.293385,0.55,4,3992.50,54.05,1593.21,2116.11,0.00,3519287943954.151367,0.000000,11,0,0.000126,0.000175,53985337,27226260,0,0,66644,0,1,1 +1773646773.291879,0.80,4,3992.50,54.05,1592.97,2116.35,0.00,0.053532,0.000000,75,0,0.000008,0.000038,53985338,27226264,0,0,66647,0,1,1 +1773646778.292795,1.00,4,3992.50,54.17,1591.32,2120.98,0.00,1.603905,10.673239,253,492,0.000000,0.000020,53985338,27226266,0,0,66649,0,1,1 +1773646783.294856,6.21,4,3992.50,60.08,1359.89,2352.39,0.00,3516987960136.001465,3516987960126.807617,205,0,2.208923,0.008032,53985883,27226667,0,0,66652,0,1,1 +1773646788.293552,38.63,4,3992.50,60.24,1353.76,2358.48,0.00,3519354987684.449707,0.000000,11,0,120.176589,0.058734,53998429,27231192,0,0,66654,0,1,1 +1773646793.292685,30.61,4,3992.50,60.04,1361.66,2350.60,0.00,40850.677222,41507.622145,2840754,2796953,121.759916,0.056531,54011800,27235575,0,0,66657,0,1,1 +1773646798.290354,31.22,4,3992.50,60.06,1360.93,2351.36,0.00,3520078589838.249023,3520078589181.111328,11,0,120.220469,0.060972,54025236,27240313,0,0,66659,0,1,1 +1773646803.292548,30.36,4,3992.50,60.00,1363.37,2348.93,0.00,0.000000,0.000000,11,0,120.111597,0.058906,54038812,27244907,0,0,66662,0,1,1 +1773646808.290351,30.97,4,3992.50,60.09,1359.82,2352.46,0.00,0.000000,0.000000,11,0,120.234774,0.070709,54053478,27250456,0,0,66664,0,1,1 +1773646813.290377,30.62,4,3992.50,60.12,1358.39,2353.85,0.00,0.180272,0.000000,205,0,119.715374,0.063379,54067695,27255455,0,0,66667,0,1,1 +1773646818.294139,30.92,4,3992.50,60.02,1362.02,2350.05,0.00,3515791801266.400391,0.000000,11,0,119.766285,0.062645,54081992,27260394,0,0,66669,0,1,1 +1773646823.294547,30.75,4,3992.50,59.91,1366.49,2345.55,0.00,1.657580,10.674325,253,492,119.768895,0.058448,54095803,27265000,0,0,66672,0,1,1 +1773646828.290404,5.02,4,3992.50,56.24,1510.27,2201.84,0.00,40866.182777,41513.882053,2839270,2796653,62.649859,0.039351,54103280,27267990,0,0,66674,0,1,1 +1773646833.290369,0.70,4,3992.50,54.68,1571.17,2140.98,0.00,3518462520684.412109,3518462520037.244141,253,492,0.000000,0.000030,54103280,27267993,0,0,66677,0,1,1 +1773646838.290414,0.80,4,3992.50,54.23,1583.76,2123.41,0.00,0.000000,0.000000,253,492,0.000308,0.000574,54103287,27268006,0,0,66679,0,1,1 +1773646843.290383,0.65,4,3992.50,53.93,1595.78,2111.38,0.00,40832.577426,41479.919962,2839270,2796759,0.000000,0.000030,54103287,27268009,0,0,66682,0,1,1 +1773646848.294971,0.55,4,3992.50,53.93,1595.56,2111.60,0.00,3515211594424.897461,3515211593778.151855,253,492,0.001125,0.001221,54103296,27268025,0,0,66684,0,1,1 +1773646853.290797,0.70,4,3992.50,53.93,1595.57,2111.60,0.00,40866.440318,41514.324393,2839270,2796765,0.000000,0.000030,54103296,27268028,0,0,66687,0,1,1 +1773646858.293111,0.60,4,3992.50,53.93,1595.57,2111.60,0.00,3516810154516.192871,3516810153860.082031,75,0,0.001126,0.001221,54103305,27268044,0,0,66689,0,1,1 +1773646863.290401,0.65,4,3992.50,53.93,1595.57,2111.60,0.00,2.123026,0.000195,258,2,0.000000,0.000030,54103305,27268047,0,0,66692,0,1,1 +1773646868.290386,0.70,4,3992.50,53.93,1595.57,2111.59,0.00,3518447512302.719727,3518447512304.895020,11,0,0.000000,0.000664,54103305,27268053,0,0,66694,0,1,1 +1773646873.294362,1.00,4,3992.50,53.73,1601.46,2103.77,0.00,0.053473,0.000000,75,0,0.000126,0.000185,54103315,27268066,0,0,66697,0,1,1 +1773646878.294766,0.70,4,3992.50,53.73,1601.46,2103.77,0.00,0.126748,0.000000,205,0,0.000008,0.000028,54103316,27268069,0,0,66699,0,1,1 +1773646883.294304,0.75,4,3992.50,53.73,1601.46,2103.77,0.00,40837.579680,41494.342339,2839270,2796811,0.000031,0.000055,54103318,27268074,0,0,66702,0,1,1 +1773646888.294802,0.90,4,3992.50,53.54,1609.12,2096.10,0.00,3518086756757.652344,3518086756101.142578,75,0,0.001370,0.000712,54103340,27268091,0,0,66704,0,1,1 +1773646893.294852,43.64,4,3992.50,60.31,1344.03,2361.13,0.00,40833.522262,41490.113895,2839272,2796859,110.098415,0.051236,54115778,27271880,0,0,66707,0,1,1 +1773646898.290847,30.76,4,3992.50,60.27,1345.66,2359.54,0.00,3521258066196.765625,3521258065539.514160,205,0,122.612785,0.044810,54129171,27275204,0,0,66709,0,1,1 +1773646903.294568,30.28,4,3992.50,60.17,1349.34,2355.81,0.00,40803.438502,41459.838062,2839272,2796995,121.667735,0.055838,54142813,27279548,0,0,66712,0,1,1 +1773646908.290751,29.99,4,3992.50,60.23,1347.14,2358.01,0.00,3521125005444.019043,3521125004784.632812,258,2,120.423004,0.050735,54155656,27283545,0,0,66714,0,1,1 +1773646913.291153,30.95,4,3992.50,60.03,1354.99,2350.12,0.00,3518154686987.041016,3518154686989.216309,11,0,119.779031,0.059648,54169157,27288201,0,0,66717,0,1,1 +1773646918.294333,30.70,4,3992.50,59.93,1358.86,2346.32,0.00,1.656661,10.668411,253,492,119.859813,0.073346,54183078,27293968,0,0,66719,0,1,1 +1773646923.294996,30.93,4,3992.50,59.93,1358.98,2346.22,0.00,3517970988369.120605,3517970988360.104492,11,0,119.652688,0.063613,54196549,27298918,0,0,66722,0,1,1 +1773646928.294689,31.35,4,3992.50,60.03,1354.93,2350.25,0.00,1.657816,10.675849,253,492,119.346266,0.056924,54209941,27303372,0,0,66724,0,1,1 +1773646933.290366,7.90,4,3992.50,54.74,1567.25,2143.28,0.00,3521482180292.068359,3521482180282.989746,75,0,73.059138,0.034164,54218183,27305921,0,0,66727,0,1,1 +1773646938.292703,0.65,4,3992.50,54.20,1588.38,2122.16,0.00,40824.711989,41482.298607,2840786,2797615,0.000238,0.000553,54218190,27305931,0,0,66729,0,1,1 +1773646943.294075,0.65,4,3992.50,54.01,1596.10,2114.43,0.00,3517471929421.822754,3517471928764.109375,75,0,0.000025,0.000061,54218192,27305936,0,0,66732,0,1,1 +1773646948.292144,0.70,4,3992.50,54.00,1596.12,2114.41,0.00,0.126807,0.000000,205,0,0.000000,0.000020,54218192,27305938,0,0,66734,0,1,1 +1773646953.293936,0.80,4,3992.50,54.00,1596.49,2114.05,0.00,3517176595812.819824,0.000000,11,0,0.000025,0.000061,54218194,27305943,0,0,66737,0,1,1 +1773646958.293286,0.90,4,3992.50,54.00,1596.24,2114.28,0.00,40849.162216,41507.187514,2840786,2797665,0.000000,0.000020,54218194,27305945,0,0,66739,0,1,1 +1773646963.290448,1.10,4,3992.50,53.86,1597.19,2108.91,0.00,3520435448166.817383,3520435448165.903809,2839283,2797197,0.000000,0.000030,54218194,27305948,0,0,66742,0,1,1 +1773646968.290587,0.70,4,3992.50,53.86,1597.20,2108.91,0.00,3518339640380.087402,3518339639720.903809,258,2,0.000000,0.000020,54218194,27305950,0,0,66744,0,1,1 +1773646973.290451,0.60,4,3992.50,53.86,1597.20,2108.91,0.00,40833.055417,41492.390556,2839283,2797227,0.000000,0.000030,54218194,27305953,0,0,66747,0,1,1 +1773646978.290580,0.60,4,3992.50,53.86,1597.20,2108.91,0.00,3518346516445.397949,3518346515797.289551,253,492,0.000101,0.000144,54218202,27305963,0,0,66749,0,1,1 +1773646983.290622,0.70,4,3992.50,53.80,1599.74,2106.36,0.00,40832.123944,41480.254039,2839283,2797236,0.000033,0.000069,54218205,27305969,0,0,66752,0,1,1 +1773646988.295122,0.95,4,3992.50,53.86,1600.16,2108.55,0.00,0.000000,0.039027,2839283,2797254,0.000008,0.000028,54218206,27305972,0,0,66754,0,1,1 +1773646993.291818,0.80,4,3992.50,53.75,1604.19,2104.62,0.00,3520763249719.563965,3520763249059.760742,258,2,0.001397,0.000746,54218230,27305992,0,0,66757,0,1,1 +1773646998.290492,38.88,4,3992.50,59.98,1360.42,2348.37,0.00,3519370914173.841309,3519370914175.837402,205,0,103.103672,0.047038,54229608,27309426,0,0,66759,0,1,1 +1773647003.292608,30.47,4,3992.50,60.04,1358.24,2350.50,0.00,40826.398526,41484.551305,2840788,2797896,121.789776,0.053986,54243049,27313577,0,0,66762,0,1,1 +1773647008.290883,29.33,4,3992.50,60.26,1349.49,2359.17,0.00,3519651395680.016113,3519651395021.537598,11,0,120.628038,0.052598,54256602,27317592,0,0,66764,0,1,1 +1773647013.294363,28.88,4,3992.50,60.05,1357.52,2351.23,0.00,0.000000,0.000000,11,0,119.732405,0.055399,54269941,27321916,0,0,66767,0,1,1 +1773647018.290904,29.37,4,3992.50,60.11,1355.23,2353.53,0.00,2.176896,0.000195,258,2,120.023709,0.056228,54283468,27326306,0,0,66769,0,1,1 +1773647023.294701,30.98,4,3992.50,59.94,1355.22,2346.87,0.00,3515767371703.114258,3515767371705.107910,205,0,120.033157,0.059634,54296902,27330960,0,0,66772,0,1,1 +1773647028.290482,29.96,4,3992.50,59.90,1356.97,2345.02,0.00,40868.434646,41526.741548,2839285,2797515,119.656003,0.076235,54310938,27336911,0,0,66774,0,1,1 +1773647033.293344,30.14,4,3992.50,59.95,1354.80,2347.25,0.00,9.720608,10.675433,2840788,2798025,119.812517,0.063594,54325349,27341851,0,0,66777,0,1,1 +1773647038.294787,8.75,4,3992.50,53.74,1598.25,2103.89,0.00,3517421481633.216797,3517421480974.880371,11,0,81.909760,0.043860,54335351,27345292,0,0,66779,0,1,1 +1773647043.292102,1.05,4,3992.50,53.73,1598.58,2103.55,0.00,40865.937322,41524.782377,2840799,2798059,0.003132,0.001579,54335410,27345334,0,0,66782,0,1,1 +1773647048.294358,1.10,4,3992.50,53.74,1597.57,2104.23,0.00,0.000000,0.185854,2840799,2798126,0.000000,0.000020,54335410,27345336,0,0,66784,0,1,1 +1773647053.290379,0.60,4,3992.50,53.73,1598.27,2103.54,0.00,3521239286457.932129,3521239285798.676758,75,0,0.000000,0.000030,54335410,27345339,0,0,66787,0,1,1 +1773647058.290445,0.60,4,3992.50,53.53,1605.91,2095.91,0.00,2.121847,0.000195,258,2,0.000000,0.000020,54335410,27345341,0,0,66789,0,1,1 +1773647063.290447,0.70,4,3992.50,53.54,1605.69,2096.13,0.00,3518435978835.859863,3518435978837.981934,75,0,0.000000,0.000674,54335410,27345348,0,0,66792,0,1,1 +1773647068.290372,0.60,4,3992.50,53.54,1605.69,2096.12,0.00,0.126760,0.000000,205,0,0.000000,0.000020,54335410,27345350,0,0,66794,0,1,1 +1773647073.294625,0.70,4,3992.50,53.54,1605.69,2096.12,0.00,1.993421,0.000195,258,2,0.000000,0.000030,54335410,27345353,0,0,66797,0,1,1 +1773647078.294946,1.15,4,3992.50,53.93,1590.69,2111.29,0.00,3518211391780.858887,10.674315,253,492,0.000000,0.000020,54335410,27345355,0,0,66799,0,1,1 +1773647083.290376,0.65,4,3992.50,53.73,1598.09,2103.68,0.00,3521655885441.860352,3521655885432.834961,11,0,0.000000,0.000030,54335410,27345358,0,0,66802,0,1,1 +1773647088.290360,0.85,4,3992.50,53.73,1598.07,2103.70,0.00,0.053516,0.000000,75,0,0.000126,0.000175,54335420,27345370,0,0,66804,0,1,1 +1773647093.295141,0.75,4,3992.50,53.73,1598.17,2103.60,0.00,1.602667,10.664999,253,492,0.000016,0.000046,54335422,27345375,0,0,66807,0,1,1 +1773647098.290450,0.60,4,3992.50,53.73,1598.17,2103.60,0.00,0.000000,0.000000,253,492,0.000000,0.000020,54335422,27345377,0,0,66809,0,1,1 +1773647103.294195,0.90,4,3992.50,53.72,1598.63,2103.14,0.00,0.517288,3515803680655.993652,258,2,0.000000,0.000030,54335422,27345380,0,0,66812,0,1,1 +1773647108.294175,36.87,4,3992.50,59.79,1360.71,2341.02,0.00,3518451535313.643555,10.675043,253,492,92.202911,0.045187,54345148,27348650,0,0,66814,0,1,1 +1773647113.294577,33.05,4,3992.50,59.72,1365.29,2338.13,0.00,0.517634,3518154550485.106445,258,2,122.356632,0.045585,54357725,27352189,0,0,66817,0,1,1 +1773647118.293809,30.02,4,3992.50,59.91,1357.93,2345.50,0.00,3518977260692.517090,10.676639,253,492,120.374839,0.058524,54370557,27356797,0,0,66819,0,1,1 +1773647123.291243,30.22,4,3992.50,59.77,1363.41,2340.04,0.00,3520244160770.178223,3520244160760.976074,205,0,120.538978,0.065486,54383446,27361900,0,0,66822,0,1,1 +1773647128.291914,29.87,4,3992.50,59.99,1354.46,2348.82,0.00,3517964905208.263672,0.000000,11,0,119.881368,0.062352,54396157,27366758,0,0,66824,0,1,1 +1773647133.290381,29.01,4,3992.50,59.78,1363.01,2340.39,0.00,0.053532,0.000000,75,0,119.891091,0.061013,54409401,27371543,0,0,66827,0,1,1 +1773647138.293485,31.03,4,3992.50,59.91,1357.98,2345.43,0.00,3516254143904.405273,0.000000,11,0,120.067821,0.062250,54422604,27376390,0,0,66829,0,1,1 +1773647143.294550,30.83,4,3992.50,60.00,1354.46,2348.94,0.00,0.180235,0.000000,205,0,119.351999,0.065254,54435781,27381535,0,0,66832,0,1,1 +1773647148.294875,12.71,4,3992.50,55.06,1547.87,2155.65,0.00,40841.285458,41500.778938,2840832,2798684,91.821308,0.051856,54446069,27385554,0,0,66834,0,1,1 +1773647153.290451,0.80,4,3992.50,54.26,1579.18,2124.32,0.00,3521553367373.274414,3521553366722.360352,253,492,0.003120,0.001456,54446127,27385595,0,0,66837,0,1,1 +1773647158.295160,0.75,4,3992.50,53.86,1594.91,2108.60,0.00,3515126276290.641113,3515126276281.632324,11,0,0.000204,0.000551,54446134,27385608,0,0,66839,0,1,1 +1773647163.294704,0.60,4,3992.50,53.80,1597.27,2106.24,0.00,2.175589,0.000195,258,2,0.000000,0.000030,54446134,27385611,0,0,66842,0,1,1 +1773647168.294695,0.90,4,3992.50,54.00,1594.23,2114.14,0.00,3518443178273.378906,10.675018,253,492,0.000000,0.000020,54446134,27385613,0,0,66844,0,1,1 +1773647173.292059,0.55,4,3992.50,53.93,1596.86,2111.55,0.00,3520293150378.178711,3520293150368.976074,205,0,0.000000,0.000030,54446134,27385616,0,0,66847,0,1,1 +1773647178.291637,0.60,4,3992.50,53.74,1604.50,2103.91,0.00,40847.460096,41507.242338,2840839,2798820,0.000000,0.000020,54446134,27385618,0,0,66849,0,1,1 +1773647183.294926,0.55,4,3992.50,53.74,1604.50,2103.91,0.00,3516123986719.833008,3516123986060.540039,205,0,0.000031,0.000055,54446136,27385623,0,0,66852,0,1,1 +1773647188.294752,0.75,4,3992.50,53.74,1604.29,2104.13,0.00,3518559721614.020508,0.000000,75,0,0.000016,0.000036,54446138,27385627,0,0,66854,0,1,1 +1773647193.294658,0.65,4,3992.50,53.74,1604.29,2104.13,0.00,1.604229,10.675395,253,492,0.001286,0.001310,54446151,27385648,0,0,66857,0,1,1 +1773647198.292451,1.15,4,3992.50,54.34,1580.92,2127.50,0.00,40860.570186,41511.431576,2840839,2798848,0.001211,0.001404,54446181,27385676,0,0,66859,0,1,1 +1773647203.294352,0.65,4,3992.50,54.14,1588.81,2119.61,0.00,3517099650213.033203,3517099649553.692383,11,0,0.000031,0.000055,54446183,27385681,0,0,66862,0,1,1 +1773647208.290952,0.85,4,3992.50,54.10,1590.15,2118.27,0.00,0.053552,0.000000,75,0,0.001735,0.001352,54446208,27385699,0,0,66864,0,1,1 +1773647213.293562,35.37,4,3992.50,59.98,1360.21,2348.16,0.00,3516601255369.860840,0.000000,11,0,76.799421,0.039819,54454579,27388551,0,0,66867,0,1,1 +1773647218.295142,29.54,4,3992.50,60.21,1351.14,2357.25,0.00,1.657191,10.671824,253,492,119.352313,0.046073,54467525,27392138,0,0,66869,0,1,1 +1773647223.293179,29.26,4,3992.50,60.08,1356.02,2352.33,0.00,0.517879,3519818900406.567871,258,2,119.217829,0.063612,54481140,27397119,0,0,66872,0,1,1 +1773647228.293774,30.32,4,3992.50,60.11,1358.27,2353.32,0.00,40837.307657,41499.120397,2840849,2799058,119.504348,0.065707,54494858,27402267,0,0,66874,0,1,1 +1773647233.295089,29.19,4,3992.50,59.72,1373.34,2338.21,0.00,3517511558119.396973,3517511558118.496582,2839346,2798601,119.748904,0.065906,54508778,27407416,0,0,66877,0,1,1 +1773647238.294607,28.67,4,3992.50,59.88,1367.04,2344.50,0.00,3518776905960.517090,3518776905310.656250,253,492,118.756742,0.070544,54523478,27412947,0,0,66879,0,1,1 +1773647243.291306,29.16,4,3992.50,59.91,1366.00,2345.55,0.00,3520761543829.423340,3520761543820.219727,205,0,119.637535,0.062240,54537406,27417785,0,0,66882,0,1,1 +1773647248.294197,29.13,4,3992.50,59.81,1369.79,2341.73,0.00,3516403969955.024414,0.000000,75,0,119.616503,0.068580,54551831,27423155,0,0,66884,0,1,1 +1773647253.294777,16.81,4,3992.50,53.53,1615.97,2095.64,0.00,3518029163938.114746,0.000000,11,0,113.988184,0.054246,54565250,27427424,0,0,66887,0,1,1 +1773647258.290376,1.30,4,3992.50,53.38,1629.39,2089.84,0.00,40880.453761,41540.886513,2840862,2799189,0.003925,0.001812,54565330,27427482,0,0,66889,0,1,1 +1773647263.293418,0.70,4,3992.50,53.18,1637.03,2082.20,0.00,3516298047858.270996,3516298047857.469727,2839359,2798762,0.000000,0.000352,54565330,27427487,0,0,66892,0,1,1 +1773647268.290986,0.70,4,3992.50,53.19,1636.79,2082.45,0.00,3520149549725.126953,3520149549065.756348,11,0,0.000000,0.000342,54565330,27427491,0,0,66894,0,1,1 +1773647273.294608,0.65,4,3992.50,53.19,1636.55,2082.68,0.00,0.180143,0.000000,205,0,0.000000,0.000030,54565330,27427494,0,0,66897,0,1,1 +1773647278.290457,0.60,4,3992.50,53.18,1636.98,2082.26,0.00,40868.495041,41528.307369,2839359,2798774,0.000000,0.000020,54565330,27427496,0,0,66899,0,1,1 +1773647283.290455,0.65,4,3992.50,53.18,1636.98,2082.25,0.00,3518438475500.191406,3518438474841.106934,11,0,0.000000,0.000030,54565330,27427499,0,0,66902,0,1,1 +1773647288.290927,0.95,4,3992.50,53.43,1612.68,2091.91,0.00,40840.620480,41500.637820,2840862,2799293,0.000000,0.000020,54565330,27427501,0,0,66904,0,1,1 +1773647293.294827,0.65,4,3992.50,53.18,1622.62,2081.97,0.00,3515694963936.363281,3515694963276.797852,11,0,0.000000,0.000030,54565330,27427504,0,0,66907,0,1,1 +1773647298.294633,0.60,4,3992.50,53.18,1622.62,2081.96,0.00,0.053518,0.000000,75,0,0.000000,0.000020,54565330,27427506,0,0,66909,0,1,1 +1773647303.290449,0.80,4,3992.50,53.19,1622.18,2082.42,0.00,2.123652,0.000195,258,2,0.000126,0.000185,54565340,27427519,0,0,66912,0,1,1 +1773647308.294600,0.60,4,3992.50,53.19,1622.18,2082.42,0.00,0.000000,0.000000,258,2,0.000016,0.000036,54565342,27427523,0,0,66914,0,1,1 +1773647313.295333,0.65,4,3992.50,53.19,1622.18,2082.41,0.00,3517921402098.633301,3517921402100.628418,205,0,0.000000,0.000030,54565342,27427526,0,0,66917,0,1,1 +1773647318.290377,0.95,4,3992.50,53.38,1612.28,2090.04,0.00,3521927670947.769043,0.000000,11,0,0.000000,0.000020,54565342,27427528,0,0,66919,0,1,1 +1773647323.294161,32.38,4,3992.50,59.50,1372.58,2329.49,0.00,0.000000,0.000000,11,0,68.073092,0.038237,54572934,27430309,0,0,66922,0,1,1 +1773647328.290449,32.33,4,3992.50,59.67,1365.75,2336.29,0.00,0.000000,0.000000,11,0,119.243581,0.049557,54585024,27434116,0,0,66924,0,1,1 +1773647333.295378,29.52,4,3992.50,59.43,1375.30,2326.81,0.00,40794.530556,41453.253714,2839361,2799029,118.833595,0.061411,54597376,27438875,0,0,66927,0,1,1 +1773647338.293967,29.67,4,3992.50,59.48,1373.15,2328.94,0.00,0.000000,0.026961,2839361,2799042,119.731520,0.060600,54610005,27443638,0,0,66929,0,1,1 +1773647343.291603,31.28,4,3992.50,59.50,1372.64,2329.46,0.00,3520101516400.343262,3520101515749.653809,253,492,118.962853,0.054418,54622839,27447891,0,0,66932,0,1,1 +1773647348.294727,30.90,4,3992.50,59.58,1369.46,2332.52,0.00,0.517352,3516239880331.642578,258,2,119.638322,0.045491,54635287,27451461,0,0,66934,0,1,1 +1773647353.291547,30.40,4,3992.50,59.78,1361.39,2340.60,0.00,3520676776158.971680,3520676776160.968262,205,0,119.099887,0.043234,54647536,27454854,0,0,66937,0,1,1 +1773647358.293483,30.12,4,3992.50,59.88,1357.64,2344.33,0.00,3517075313615.195312,0.000000,11,0,119.315020,0.041534,54659919,27458078,0,0,66939,0,1,1 +1773647363.290386,19.35,4,3992.50,59.78,1361.68,2340.39,0.00,1.658742,10.681812,253,492,119.114799,0.040574,54672276,27461271,0,0,66942,0,1,1 +1773647368.290566,1.00,4,3992.50,55.35,1535.15,2166.89,0.00,3518310781198.322266,3518310781189.251953,75,0,3.865959,0.003026,54672757,27461418,0,0,66944,0,1,1 +1773647373.294888,0.75,4,3992.50,54.26,1577.68,2124.37,0.00,40799.493456,41458.709710,2839372,2799217,0.000000,0.000030,54672757,27461421,0,0,66947,0,1,1 +1773647378.292928,1.05,4,3992.50,53.85,1596.29,2108.49,0.00,3519817071501.387207,3519817070841.395508,11,0,0.000000,0.000020,54672757,27461423,0,0,66949,0,1,1 +1773647383.290377,0.70,4,3992.50,53.83,1597.23,2107.55,0.00,2.176501,0.000195,258,2,0.000000,0.000030,54672757,27461426,0,0,66952,0,1,1 +1773647388.295147,0.80,4,3992.50,53.83,1597.23,2107.54,0.00,40793.720989,41455.098568,2839372,2799287,0.000000,0.000020,54672757,27461428,0,0,66954,0,1,1 +1773647393.294586,0.60,4,3992.50,53.64,1604.63,2100.15,0.00,9.727264,10.682840,2840875,2799787,0.000000,0.000513,54672757,27461434,0,0,66957,0,1,1 +1773647398.295068,0.65,4,3992.50,53.64,1604.63,2100.15,0.00,3518097765889.268555,3518097765228.542969,11,0,0.000000,0.000181,54672757,27461437,0,0,66959,0,1,1 +1773647403.293097,0.55,4,3992.50,53.64,1604.71,2100.07,0.00,0.053537,0.000000,75,0,0.000000,0.000030,54672757,27461440,0,0,66962,0,1,1 +1773647408.295028,0.95,4,3992.50,53.87,1596.69,2109.13,0.00,3517078742846.047852,0.000000,11,0,0.000000,0.000020,54672757,27461442,0,0,66964,0,1,1 +1773647413.291089,0.65,4,3992.50,53.82,1598.55,2107.10,0.00,40867.024505,41527.487573,2839381,2799395,0.000126,0.000185,54672767,27461455,0,0,66967,0,1,1 +1773647418.290365,0.60,4,3992.50,53.82,1598.31,2107.34,0.00,3518947125421.970215,3518947124770.950684,253,492,0.000016,0.000036,54672769,27461459,0,0,66969,0,1,1 +1773647423.290645,0.65,4,3992.50,53.83,1598.07,2107.59,0.00,3518239548554.701660,3518239548545.504883,205,0,0.000000,0.000030,54672769,27461462,0,0,66972,0,1,1 +1773647428.293257,0.45,4,3992.50,53.83,1598.07,2107.59,0.00,40813.337038,41473.135842,2839381,2799411,0.000000,0.000020,54672769,27461464,0,0,66974,0,1,1 +1773647433.290886,35.30,4,3992.50,59.68,1368.80,2336.78,0.00,3520105681950.785645,3520105681299.531250,253,492,88.572680,0.032514,54682187,27463684,0,0,66977,0,1,1 +1773647438.293742,33.32,4,3992.50,59.81,1363.74,2341.77,0.00,3516429134442.173340,3516429134433.161133,11,0,122.302530,0.031674,54694879,27466141,0,0,66979,0,1,1 +1773647443.294793,31.66,4,3992.50,59.99,1360.43,2348.82,0.00,40835.984455,41496.969595,2840889,2800085,121.341214,0.035027,54707277,27468867,0,0,66982,0,1,1 +1773647448.294593,30.27,4,3992.50,59.78,1368.71,2340.64,0.00,3518578103296.463867,3518578103295.540527,2839386,2799627,120.171738,0.041701,54719627,27472080,0,0,66984,0,1,1 +1773647453.294595,30.52,4,3992.50,59.68,1372.52,2336.77,0.00,3518435730415.515625,3518435729755.314941,11,0,119.964625,0.038764,54731928,27475140,0,0,66987,0,1,1 +1773647458.290379,30.90,4,3992.50,59.70,1371.77,2337.46,0.00,40869.304040,41530.075337,2839386,2799645,119.467199,0.033384,54744316,27477679,0,0,66989,0,1,1 +1773647463.290384,30.12,4,3992.50,59.68,1372.54,2336.75,0.00,3518434064085.824219,3518434063425.610840,11,0,119.763738,0.038973,54756505,27480738,0,0,66992,0,1,1 +1773647468.294779,29.23,4,3992.50,59.61,1375.49,2333.82,0.00,40798.975946,41458.769407,2839387,2799677,119.457723,0.049078,54768601,27484536,0,0,66994,0,1,1 +1773647473.294890,12.88,4,3992.50,55.44,1540.75,2170.74,0.00,3518359251168.049805,3518359250507.691406,11,0,94.329214,0.041677,54778254,27487749,0,0,66997,0,1,1 +1773647478.290380,0.85,4,3992.50,54.23,1588.13,2123.34,0.00,0.053564,0.000000,75,0,0.001605,0.000743,54778288,27487774,0,0,66999,0,1,1 +1773647483.295125,0.55,4,3992.50,53.87,1602.56,2108.93,0.00,40805.940142,41466.825204,2840905,2800272,0.000031,0.000055,54778290,27487779,0,0,67002,0,1,1 +1773647488.294719,0.65,4,3992.50,53.85,1602.96,2108.54,0.00,0.000000,0.007032,2840905,2800277,0.000000,0.000020,54778290,27487781,0,0,67004,0,1,1 +1773647493.293853,0.80,4,3992.50,53.86,1602.75,2108.75,0.00,3519047032979.531738,3519047032978.587891,2839402,2799789,0.000339,0.000610,54778299,27487797,0,0,67007,0,1,1 +1773647498.294478,1.20,4,3992.50,53.86,1605.55,2108.60,0.00,3517997574550.657715,3517997573890.038086,205,0,0.001109,0.000627,54778321,27487812,0,0,67009,0,1,1 +1773647503.291603,0.60,4,3992.50,53.86,1605.60,2108.60,0.00,3520461455209.327148,0.000000,75,0,0.000031,0.000055,54778323,27487817,0,0,67012,0,1,1 +1773647508.290477,0.85,4,3992.50,53.86,1605.60,2108.59,0.00,3519229668316.011719,0.000000,11,0,0.001065,0.000421,54778345,27487832,0,0,67014,0,1,1 +1773647513.290429,0.70,4,3992.50,53.86,1605.39,2108.81,0.00,1.657731,10.675298,253,492,0.000000,0.000030,54778345,27487835,0,0,67017,0,1,1 +1773647518.290383,0.45,4,3992.50,53.87,1604.97,2109.23,0.00,3518469538690.745117,3518469538681.728027,11,0,0.000013,0.000051,54778346,27487839,0,0,67019,0,1,1 +1773647523.293356,0.60,4,3992.50,53.87,1604.97,2109.22,0.00,0.180166,0.000000,205,0,0.000063,0.000092,54778351,27487846,0,0,67022,0,1,1 +1773647528.290370,0.90,4,3992.50,53.87,1606.31,2109.18,0.00,1.996310,0.000195,258,2,0.000008,0.000511,54778352,27487852,0,0,67024,0,1,1 +1773647533.290451,0.55,4,3992.50,53.84,1607.52,2107.98,0.00,3518380150606.446289,3518380150608.621582,11,0,0.000000,0.000191,54778352,27487856,0,0,67027,0,1,1 +1773647538.294603,33.23,4,3992.50,59.74,1376.29,2339.08,0.00,0.000000,0.000000,11,0,76.459038,0.050025,54786705,27491506,0,0,67029,0,1,1 +1773647543.291434,33.47,4,3992.50,60.26,1356.00,2359.37,0.00,40860.896166,41522.136660,2839404,2800038,122.235962,0.033543,54799024,27494052,0,0,67032,0,1,1 +1773647548.294797,30.79,4,3992.50,60.06,1363.87,2351.56,0.00,9.719635,10.698566,2840907,2800552,121.238622,0.023254,54810933,27495823,0,0,67034,0,1,1 +1773647553.294493,29.88,4,3992.50,59.96,1367.89,2347.48,0.00,3518650569973.164551,3518650569311.323242,11,0,119.806169,0.026659,54822764,27497897,0,0,67037,0,1,1 +1773647558.294411,30.12,4,3992.50,60.23,1363.03,2358.15,0.00,2.175426,0.000195,258,2,119.785881,0.031685,54834320,27500354,0,0,67039,0,1,1 +1773647563.293978,30.67,4,3992.50,60.65,1346.46,2374.74,0.00,3518742038913.010254,10.675925,253,492,119.634964,0.030664,54845459,27502715,0,0,67042,0,1,1 +1773647568.290395,30.29,4,3992.50,60.16,1365.75,2355.38,0.00,0.518047,3520960689849.245117,258,2,119.103636,0.028626,54856364,27504928,0,0,67044,0,1,1 +1773647573.290350,30.30,4,3992.50,60.18,1365.02,2356.15,0.00,3518468831471.494629,3518468831473.669922,11,0,120.043547,0.028794,54867283,27507150,0,0,67047,0,1,1 +1773647578.290458,15.67,4,3992.50,55.26,1557.81,2163.41,0.00,0.180270,0.000000,205,0,107.088720,0.026566,54877092,27509183,0,0,67049,0,1,1 +1773647583.294339,0.85,4,3992.50,54.15,1601.03,2120.16,0.00,3515707912797.837402,0.000000,11,0,0.003253,0.001675,54877161,27509234,0,0,67052,0,1,1 +1773647588.292621,1.00,4,3992.50,53.85,1613.56,2108.47,0.00,0.180335,0.000000,205,0,0.000176,0.000181,54877164,27509238,0,0,67054,0,1,1 +1773647593.290461,0.70,4,3992.50,53.54,1625.23,2096.24,0.00,1.478080,10.679810,253,492,0.000000,0.000030,54877164,27509241,0,0,67057,0,1,1 +1773647598.290968,1.45,4,3992.50,53.48,1627.76,2093.70,0.00,0.517623,3518079997805.483887,258,2,0.000000,0.000664,54877164,27509247,0,0,67059,0,1,1 +1773647603.290770,0.55,4,3992.50,53.48,1627.52,2093.95,0.00,3518576836565.683594,3518576836567.805176,75,0,0.000000,0.000030,54877164,27509250,0,0,67062,0,1,1 +1773647608.292576,0.65,4,3992.50,53.49,1627.30,2094.17,0.00,3517166857454.570312,0.000000,11,0,0.000000,0.000020,54877164,27509252,0,0,67064,0,1,1 +1773647613.295105,0.65,4,3992.50,53.49,1627.30,2094.16,0.00,2.174290,0.000195,258,2,0.000000,0.000030,54877164,27509255,0,0,67067,0,1,1 +1773647618.294414,1.00,4,3992.50,53.62,1622.12,2099.31,0.00,40848.316492,41512.859534,2840921,2800839,0.000000,0.000020,54877164,27509257,0,0,67069,0,1,1 +1773647623.290486,0.65,4,3992.50,53.62,1622.14,2099.29,0.00,0.000000,0.004691,2840921,2800844,0.000000,0.000030,54877164,27509260,0,0,67072,0,1,1 +1773647628.293643,0.65,4,3992.50,53.47,1627.86,2093.57,0.00,0.000000,0.015615,2840921,2800862,0.000101,0.000144,54877172,27509270,0,0,67074,0,1,1 +1773647633.293374,0.50,4,3992.50,53.47,1627.86,2093.57,0.00,0.000000,0.006250,2840921,2800868,0.000041,0.000077,54877176,27509277,0,0,67077,0,1,1 +1773647638.295250,0.70,4,3992.50,53.48,1627.38,2094.05,0.00,3517117563114.268555,3517117562452.214355,11,0,0.000000,0.000020,54877176,27509279,0,0,67079,0,1,1 +1773647643.294578,0.55,4,3992.50,53.49,1627.14,2094.29,0.00,0.000000,0.000000,11,0,0.000000,0.000030,54877176,27509282,0,0,67082,0,1,1 +1773647648.291372,30.66,4,3992.50,60.55,1356.54,2370.79,0.00,40871.071174,41533.858781,2840924,2800936,67.544908,0.026724,54884499,27511178,0,0,67084,0,1,1 +1773647653.295142,34.05,4,3992.50,60.21,1370.05,2357.34,0.00,0.000000,0.103047,2840924,2801053,123.281181,0.024565,54897330,27513024,0,0,67087,0,1,1 +1773647658.290620,30.82,4,3992.50,60.22,1369.67,2357.63,0.00,3521622321180.973633,3521622320517.728516,205,0,121.077842,0.022927,54909831,27514755,0,0,67089,0,1,1 +1773647663.291188,31.37,4,3992.50,59.98,1379.10,2348.17,0.00,3518037272073.462891,0.000000,11,0,121.158364,0.028344,54922397,27516910,0,0,67092,0,1,1 +1773647668.294453,29.39,4,3992.50,60.01,1377.62,2349.68,0.00,40818.206352,41480.251346,2840924,2801079,120.289076,0.028568,54934794,27519081,0,0,67094,0,1,1 +1773647673.293156,30.42,4,3992.50,60.27,1367.46,2359.78,0.00,3519350178274.002441,3519350177611.172852,205,0,119.797382,0.023403,54947148,27520908,0,0,67097,0,1,1 +1773647678.290469,30.33,4,3992.50,59.92,1381.30,2345.97,0.00,3520329071041.285156,0.000000,11,0,119.429826,0.021543,54959481,27522579,0,0,67099,0,1,1 +1773647683.290430,30.14,4,3992.50,60.59,1355.11,2372.30,0.00,40845.176581,41507.859211,2840924,2801121,119.765231,0.031171,54971753,27525027,0,0,67102,0,1,1 +1773647688.294326,17.22,4,3992.50,55.37,1559.58,2167.80,0.00,3515697979459.229004,3515697978796.887207,205,0,113.068260,0.032697,54983379,27527578,0,0,67104,0,1,1 +1773647693.294890,1.00,4,3992.50,55.87,1539.97,2187.41,0.00,40840.204540,41502.962245,2840935,2801167,0.003263,0.001712,54983449,27527631,0,0,67107,0,1,1 +1773647698.294211,0.75,4,3992.50,54.66,1587.18,2140.20,0.00,3518915095828.167480,3518915095163.249512,258,2,0.000000,0.000020,54983449,27527633,0,0,67109,0,1,1 +1773647703.294579,0.65,4,3992.50,54.14,1607.64,2119.69,0.00,0.000000,0.000000,258,2,0.000000,0.000030,54983449,27527636,0,0,67112,0,1,1 +1773647708.294400,0.80,4,3992.50,54.09,1599.97,2117.58,0.00,3518562897577.426270,3518562897579.602051,11,0,0.000000,0.000020,54983449,27527638,0,0,67114,0,1,1 +1773647713.294694,0.60,4,3992.50,54.05,1601.27,2116.28,0.00,0.053512,0.000000,75,0,0.000000,0.000030,54983449,27527641,0,0,67117,0,1,1 +1773647718.290375,0.60,4,3992.50,54.05,1601.27,2116.28,0.00,3521479401556.529297,0.000000,11,0,0.000000,0.000020,54983449,27527643,0,0,67119,0,1,1 +1773647723.295102,0.50,4,3992.50,54.05,1601.28,2116.27,0.00,40806.421799,41468.650483,2840936,2801318,0.000000,0.000043,54983449,27527647,0,0,67122,0,1,1 +1773647728.290390,0.60,4,3992.50,53.86,1608.92,2108.63,0.00,0.000000,0.094620,2840936,2801322,0.000000,0.000664,54983449,27527653,0,0,67124,0,1,1 +1773647733.290459,0.55,4,3992.50,53.87,1608.43,2109.12,0.00,3518388137892.141113,3518388137229.201172,11,0,0.000000,0.000030,54983449,27527656,0,0,67127,0,1,1 +1773647738.294924,0.85,4,3992.50,54.14,1602.16,2119.61,0.00,0.053468,0.000000,75,0,0.000433,0.000729,54983466,27527679,0,0,67129,0,1,1 +1773647743.295211,0.60,4,3992.50,54.15,1601.73,2120.07,0.00,3518235049689.896973,0.000000,11,0,0.000008,0.000038,54983467,27527683,0,0,67132,0,1,1 +1773647748.294552,0.55,4,3992.50,54.15,1601.73,2120.07,0.00,0.180297,0.000000,205,0,0.000205,0.000589,54983474,27527697,0,0,67134,0,1,1 +1773647753.295246,0.55,4,3992.50,54.15,1601.73,2120.07,0.00,0.000000,0.000000,205,0,0.000000,0.000030,54983474,27527700,0,0,67137,0,1,1 +1773647758.293939,25.86,4,3992.50,59.88,1377.27,2344.47,0.00,40845.769383,41508.232218,2839435,2800935,61.512783,0.033062,54990250,27529944,0,0,67139,0,1,1 +1773647763.290356,33.84,4,3992.50,59.92,1375.81,2345.89,0.00,3520960072554.816895,3520960071901.256348,253,492,121.462327,0.039995,55002848,27532987,0,0,67142,0,1,1 +1773647768.292684,30.56,4,3992.50,60.01,1372.01,2349.71,0.00,40824.344713,41478.259986,2840938,2801547,121.712217,0.031968,55015348,27535502,0,0,67144,0,1,1 +1773647773.291495,30.10,4,3992.50,59.85,1371.69,2343.23,0.00,0.000000,0.071599,2840938,2801584,120.193439,0.037672,55027603,27538437,0,0,67147,0,1,1 +1773647778.291561,28.59,4,3992.50,59.68,1378.65,2336.46,0.00,3518391172112.578613,3518391171447.103516,258,2,119.559858,0.048154,55039648,27542234,0,0,67149,0,1,1 +1773647783.293605,29.30,4,3992.50,59.71,1377.21,2337.77,0.00,3516999420832.452637,10.670638,253,492,119.712696,0.044048,55051776,27545709,0,0,67152,0,1,1 +1773647788.292167,31.09,4,3992.50,59.64,1380.13,2334.90,0.00,3519449151872.841309,3519449151863.821289,11,0,119.601323,0.039077,55064098,27548725,0,0,67154,0,1,1 +1773647793.294795,30.72,4,3992.50,59.96,1367.26,2347.68,0.00,1.656844,10.669588,253,492,119.301714,0.043387,55076322,27552054,0,0,67157,0,1,1 +1773647798.291205,19.73,4,3992.50,59.58,1382.17,2332.87,0.00,40872.690214,41527.644211,2840939,2801681,119.049461,0.048522,55088401,27555742,0,0,67159,0,1,1 +1773647803.290411,1.55,4,3992.50,54.49,1580.42,2133.53,0.00,3518995862120.224121,3518995861456.437500,205,0,3.408567,0.003847,55088827,27555926,0,0,67162,0,1,1 +1773647808.290401,0.65,4,3992.50,53.94,1602.24,2111.71,0.00,3518444835464.098633,0.000000,75,0,0.001064,0.000421,55088849,27555941,0,0,67164,0,1,1 +1773647813.295107,0.55,4,3992.50,53.92,1602.94,2111.01,0.00,1.602691,10.665156,253,492,0.000000,0.000030,55088849,27555944,0,0,67167,0,1,1 +1773647818.295107,0.65,4,3992.50,53.91,1603.28,2110.67,0.00,3518437450950.039062,3518437450941.021484,11,0,0.000000,0.000020,55088849,27555946,0,0,67169,0,1,1 +1773647823.294574,0.60,4,3992.50,53.91,1603.28,2110.67,0.00,0.180293,0.000000,205,0,0.000000,0.000030,55088849,27555949,0,0,67172,0,1,1 +1773647828.290372,0.80,4,3992.50,53.94,1602.35,2111.77,0.00,0.000000,0.000000,205,0,0.000000,0.000020,55088849,27555951,0,0,67174,0,1,1 +1773647833.291842,0.60,4,3992.50,53.86,1605.29,2108.64,0.00,1.994531,0.000195,258,2,0.000000,0.000030,55088849,27555954,0,0,67177,0,1,1 +1773647838.294442,0.70,4,3992.50,53.86,1605.32,2108.64,0.00,3516608227974.871582,3516608227977.045898,11,0,0.000031,0.000045,55088851,27555958,0,0,67179,0,1,1 +1773647843.295292,0.55,4,3992.50,53.87,1605.01,2108.94,0.00,40838.213368,41501.853601,2840955,2801861,0.000033,0.000069,55088854,27555964,0,0,67182,0,1,1 +1773647848.295034,0.65,4,3992.50,53.87,1604.79,2109.16,0.00,3518618982821.903320,3518618982158.062500,75,0,0.000101,0.000144,55088862,27555974,0,0,67184,0,1,1 +1773647853.295029,0.45,4,3992.50,53.87,1604.80,2109.16,0.00,1.604201,10.675205,253,492,0.000050,0.000092,55088866,27555981,0,0,67187,0,1,1 +1773647858.290388,0.85,4,3992.50,53.96,1601.61,2112.81,0.00,3521706270056.862305,3521706270047.783203,75,0,0.000000,0.000020,55088866,27555983,0,0,67189,0,1,1 +1773647863.294578,0.65,4,3992.50,53.93,1602.95,2111.48,0.00,0.126652,0.000000,205,0,0.000000,0.000512,55088866,27555989,0,0,67192,0,1,1 +1773647868.290296,25.09,4,3992.50,59.95,1367.34,2347.06,0.00,3521453017165.794922,0.000000,75,0,45.109766,0.024722,55093851,27557664,0,0,67194,0,1,1 +1773647873.291149,34.06,4,3992.50,59.90,1368.96,2345.38,0.00,0.000000,0.000000,75,0,120.155540,0.041931,55106423,27560858,0,0,67197,0,1,1 +1773647878.290360,29.16,4,3992.50,59.92,1368.49,2345.83,0.00,3518992306694.178223,0.000000,11,0,118.993475,0.046585,55118804,27564443,0,0,67199,0,1,1 +1773647883.292619,29.08,4,3992.50,59.99,1365.70,2348.68,0.00,1.656966,10.670374,253,492,119.311440,0.023276,55131076,27566271,0,0,67202,0,1,1 +1773647888.292573,28.86,4,3992.50,60.00,1365.00,2349.27,0.00,3518470050281.044922,3518470050271.974121,75,0,119.766026,0.019249,55143346,27567743,0,0,67204,0,1,1 +1773647893.294980,30.13,4,3992.50,60.42,1345.41,2365.43,0.00,3516744556823.663574,0.000000,11,0,118.505507,0.023568,55155483,27569588,0,0,67207,0,1,1 +1773647898.293533,29.39,4,3992.50,60.25,1352.05,2358.91,0.00,40847.259710,41510.659228,2839455,2801657,120.200987,0.021137,55167773,27571196,0,0,67209,0,1,1 +1773647903.293532,29.38,4,3992.50,60.53,1340.85,2369.97,0.00,3518437877364.885742,3518437876701.624512,75,0,118.761615,0.015720,55179824,27572399,0,0,67212,0,1,1 +1773647908.294537,24.38,4,3992.50,59.96,1363.20,2347.75,0.00,2.121449,0.000195,258,2,119.538873,0.019094,55191897,27573883,0,0,67214,0,1,1 +1773647913.295098,1.40,4,3992.50,55.29,1546.14,2164.78,0.00,3518042789846.298340,3518042789848.293457,205,0,25.034627,0.008382,55194474,27574463,0,0,67217,0,1,1 +1773647918.295170,1.00,4,3992.50,54.53,1585.95,2135.07,0.00,1.477420,10.675041,253,492,0.000000,0.000020,55194474,27574465,0,0,67219,0,1,1 +1773647923.293542,0.70,4,3992.50,53.92,1607.72,2111.04,0.00,40847.217802,41501.821317,2839466,2801778,0.000000,0.000030,55194474,27574468,0,0,67222,0,1,1 +1773647928.294803,0.60,4,3992.50,53.73,1615.16,2103.60,0.00,3517550010980.412109,3517550010317.171387,11,0,0.000000,0.000664,55194474,27574474,0,0,67224,0,1,1 +1773647933.291912,0.60,4,3992.50,53.74,1614.86,2103.90,0.00,0.000000,0.000000,11,0,0.000000,0.000030,55194474,27574477,0,0,67227,0,1,1 +1773647938.294885,0.55,4,3992.50,53.74,1614.73,2104.03,0.00,0.000000,0.000000,11,0,0.000000,0.000020,55194474,27574479,0,0,67229,0,1,1 +1773647943.295003,0.70,4,3992.50,53.74,1614.73,2104.03,0.00,0.053514,0.000000,75,0,0.000000,0.000030,55194474,27574482,0,0,67232,0,1,1 +1773647948.290379,0.60,4,3992.50,53.75,1614.50,2104.27,0.00,3521694260498.067383,0.000000,11,0,0.000000,0.000020,55194474,27574484,0,0,67234,0,1,1 +1773647953.290377,0.90,4,3992.50,53.82,1610.17,2107.11,0.00,1.657715,10.675198,253,492,0.000000,0.000030,55194474,27574487,0,0,67237,0,1,1 +1773647958.295020,0.80,4,3992.50,53.81,1610.59,2106.69,0.00,40796.041267,41449.913625,2839466,2801857,0.000800,0.001452,55194508,27574532,0,0,67239,0,1,1 +1773647963.290368,0.55,4,3992.50,53.81,1610.60,2106.69,0.00,0.000000,0.007820,2839466,2801864,0.000008,0.000038,55194509,27574536,0,0,67242,0,1,1 +1773647968.290685,0.65,4,3992.50,53.79,1611.19,2106.10,0.00,3518213682672.960449,3518213682007.322754,258,2,0.000000,0.000020,55194509,27574538,0,0,67244,0,1,1 +1773647973.294721,0.70,4,3992.50,53.79,1611.19,2106.10,0.00,3515599762687.653320,3515599762689.773438,75,0,0.000000,0.000030,55194509,27574541,0,0,67247,0,1,1 +1773647978.294687,7.62,4,3992.50,60.87,1334.27,2383.00,0.00,1.604210,10.675268,253,492,0.102451,0.004407,55194795,27574683,0,0,67249,0,1,1 +1773647983.290358,13.04,4,3992.50,60.79,1337.26,2380.00,0.00,3521486153146.472656,3521486153137.447754,11,0,4.842941,0.126818,55204014,27583042,0,0,67252,0,1,1 +1773647988.290848,2.28,4,3992.50,60.87,1334.17,2383.00,0.00,0.180256,0.000000,205,0,4.685500,0.120284,55212848,27591349,0,0,67254,0,1,1 +1773647993.290354,1.78,4,3992.50,60.97,1330.15,2387.10,0.00,0.000000,0.000000,205,0,4.709817,0.119218,55221677,27599642,0,0,67257,0,1,1 +1773647998.293438,2.13,4,3992.50,60.84,1335.30,2381.95,0.00,40819.972122,41484.381039,2840973,2802585,4.678010,0.120472,55230452,27607931,0,0,67259,0,1,1 +1773648003.293180,2.24,4,3992.50,60.71,1340.44,2376.83,0.00,3518618549307.642090,3518618548640.793945,258,2,4.670649,0.120093,55239263,27616238,0,0,67262,0,1,1 +1773648008.290321,2.49,4,3992.50,61.11,1328.14,2392.78,0.00,3520450128336.612793,10.681107,253,492,4.685289,0.118809,55248020,27624532,0,0,67264,0,1,1 +1773648013.290369,2.28,4,3992.50,60.90,1336.50,2384.45,0.00,3518403784749.268066,3518403784740.250977,11,0,4.689059,0.119845,55256848,27632805,0,0,67267,0,1,1 +1773648018.290790,1.93,4,3992.50,60.98,1333.28,2387.67,0.00,40832.175887,41496.065123,2839479,2802281,4.652425,0.120527,55265561,27641066,0,0,67269,0,1,1 +1773648023.294618,2.13,4,3992.50,61.06,1330.22,2390.72,0.00,3515745388217.879395,3515745387554.388672,75,0,4.669859,0.119825,55274353,27649370,0,0,67272,0,1,1 +1773648028.294361,2.33,4,3992.50,60.94,1334.93,2386.01,0.00,0.126764,0.000000,205,0,4.709623,0.118562,55283155,27657642,0,0,67274,0,1,1 +1773648033.294805,2.64,4,3992.50,61.02,1331.82,2389.12,0.00,1.477310,10.674249,253,492,4.666892,0.117745,55291872,27665914,0,0,67277,0,1,1 +1773648038.294763,2.85,4,3992.50,60.89,1332.53,2384.04,0.00,0.000000,0.000000,253,492,4.686610,0.119707,55300665,27674254,0,0,67279,0,1,1 +1773648043.290795,2.13,4,3992.50,60.71,1339.65,2376.93,0.00,0.518087,3521231129712.395020,258,2,4.666399,0.118981,55309427,27682543,0,0,67282,0,1,1 +1773648048.294007,2.23,4,3992.50,60.50,1347.78,2368.79,0.00,3516178502309.132324,3516178502311.306152,11,0,4.690896,0.118899,55318225,27690810,0,0,67284,0,1,1 +1773648053.293273,2.13,4,3992.50,60.67,1341.03,2375.54,0.00,40841.616423,41505.788077,2839479,2802441,4.659113,0.119444,55326999,27699094,0,0,67287,0,1,1 +1773648058.291213,2.03,4,3992.50,60.42,1351.00,2365.68,0.00,3519887146134.875488,3519887145470.347168,205,0,4.686645,0.121256,55335778,27707375,0,0,67289,0,1,1 +1773648063.290339,2.08,4,3992.50,60.72,1339.08,2377.46,0.00,3519052216747.543945,0.000000,75,0,4.682219,0.118818,55344518,27715680,0,0,67292,0,1,1 +1773648068.294560,2.64,4,3992.50,60.93,1327.62,2385.70,0.00,0.126651,0.000000,205,0,4.673121,0.119194,55353276,27724003,0,0,67294,0,1,1 +1773648073.290362,2.13,4,3992.50,60.66,1338.46,2374.84,0.00,40879.492376,41545.321119,2840982,2803014,4.681591,0.117948,55362020,27732259,0,0,67297,0,1,1 +1773648078.291939,2.33,4,3992.50,60.68,1337.56,2375.73,0.00,3517326984274.950684,3517326983619.085449,253,492,4.694106,0.118502,55370807,27740602,0,0,67299,0,1,1 +1773648083.293319,1.98,4,3992.50,60.45,1346.71,2366.62,0.00,0.000000,0.000000,253,492,4.642114,0.118894,55379549,27748841,0,0,67302,0,1,1 +1773648088.291850,2.34,4,3992.50,60.47,1345.79,2367.48,0.00,3519471119689.007812,3519471119679.987793,11,0,4.720125,0.118855,55388376,27757162,0,0,67304,0,1,1 +1773648093.290366,2.18,4,3992.50,60.40,1348.66,2364.64,0.00,0.180327,0.000000,205,0,4.665597,0.118792,55397102,27765463,0,0,67307,0,1,1 +1773648098.295271,2.58,4,3992.50,60.62,1340.84,2373.21,0.00,40795.420339,41459.163382,2839479,2802617,4.670479,0.120244,55405954,27773813,0,0,67309,0,1,1 +1773648103.291170,1.93,4,3992.50,60.53,1344.01,2370.06,0.00,3521325480341.812012,3521325479686.077637,253,492,4.694155,0.118027,55414708,27782105,0,0,67312,0,1,1 +1773648108.291173,1.88,4,3992.50,60.66,1339.06,2375.00,0.00,3518434769902.559570,3518434769893.542480,11,0,4.679392,0.120106,55423463,27790433,0,0,67314,0,1,1 +1773648113.290356,2.38,4,3992.50,60.53,1344.25,2369.82,0.00,0.180303,0.000000,205,0,4.657386,0.119309,55432240,27798686,0,0,67317,0,1,1 +1773648118.291721,2.03,4,3992.50,60.70,1337.48,2376.71,0.00,40824.297354,41488.537953,2839479,2802679,4.706591,0.118531,55441045,27806982,0,0,67319,0,1,1 +1773648123.291198,1.93,4,3992.50,60.49,1345.62,2368.45,0.00,3518805149207.522949,3518805148543.031250,205,0,4.666915,0.119311,55449767,27815252,0,0,67322,0,1,1 +1773648128.295247,2.39,4,3992.50,60.64,1339.84,2374.03,0.00,1.476246,10.666556,253,492,4.687295,0.120615,55458577,27823502,0,0,67324,0,1,1 +1773648133.294272,2.08,4,3992.50,60.71,1336.88,2376.98,0.00,40851.654644,41508.022109,2840982,2803246,4.668458,0.119593,55467388,27831743,0,0,67327,0,1,1 +1773648138.290632,2.09,4,3992.50,60.85,1331.47,2382.37,0.00,0.000000,0.013095,2840982,2803260,4.684954,0.118720,55476185,27840062,0,0,67329,0,1,1 +1773648143.295216,2.03,4,3992.50,60.94,1327.81,2386.09,0.00,3515214058427.258789,3515214057760.425293,258,2,4.676631,0.118621,55484961,27848308,0,0,67332,0,1,1 +1773648148.295164,2.03,4,3992.50,60.87,1330.71,2383.14,0.00,40833.868783,41500.385491,2839479,2802793,4.683382,0.119425,55493769,27856582,0,0,67334,0,1,1 +1773648153.295205,1.98,4,3992.50,60.92,1328.64,2385.22,0.00,3518408928593.891602,3518408927929.508789,75,0,4.667846,0.119176,55502538,27864805,0,0,67337,0,1,1 +1773648158.290392,2.33,4,3992.50,61.11,1321.86,2392.78,0.00,0.126880,0.000000,205,0,4.702379,0.117843,55511296,27873128,0,0,67339,0,1,1 +1773648163.290418,2.75,4,3992.50,60.48,1346.84,2367.91,0.00,40844.949371,41510.458166,2840982,2803344,4.642231,0.119083,55520075,27881332,0,0,67342,0,1,1 +1773648168.290390,2.03,4,3992.50,60.87,1331.49,2383.29,0.00,3518457340763.348145,3518457340095.836914,258,2,4.694135,0.118233,55528875,27889655,0,0,67344,0,1,1 +1773648173.291545,1.98,4,3992.50,60.73,1337.06,2377.74,0.00,40833.734594,41501.102268,2840982,2803374,4.688217,0.118786,55537689,27897956,0,0,67347,0,1,1 +1773648178.294414,1.93,4,3992.50,60.90,1330.34,2384.44,0.00,3516419454291.285156,3516419453626.140137,205,0,4.681779,0.119275,55546469,27906251,0,0,67349,0,1,1 +1773648183.290554,1.88,4,3992.50,60.86,1331.97,2382.79,0.00,0.000000,0.000000,205,0,4.703329,0.117847,55555258,27914531,0,0,67352,0,1,1 +1773648188.291257,2.64,4,3992.50,60.90,1330.40,2384.39,0.00,1.477234,10.673694,253,492,4.673161,0.118457,55564005,27922824,0,0,67354,0,1,1 +1773648193.291570,2.28,4,3992.50,61.03,1325.21,2389.39,0.00,3518216815818.261719,3518216815809.245117,11,0,4.676615,0.118851,55572755,27931159,0,0,67357,0,1,1 +1773648198.294078,2.03,4,3992.50,61.13,1321.30,2393.31,0.00,0.000000,0.000000,11,0,4.655166,0.119445,55581544,27939482,0,0,67359,0,1,1 +1773648203.293952,1.93,4,3992.50,60.94,1328.86,2385.77,0.00,40846.377477,41511.820664,2840982,2803487,4.698576,0.117396,55590266,27947773,0,0,67362,0,1,1 +1773648208.293184,2.03,4,3992.50,60.77,1335.33,2379.29,0.00,3518977828014.304688,3518977827348.595703,205,0,4.683038,0.119682,55599059,27956110,0,0,67364,0,1,1 +1773648213.290914,1.98,4,3992.50,60.87,1331.59,2383.01,0.00,3520035227435.500000,0.000000,11,0,4.682470,0.119181,55607834,27964456,0,0,67367,0,1,1 +1773648218.290456,2.23,4,3992.50,61.19,1319.12,2395.81,0.00,1.657867,10.676172,253,492,4.660139,0.119220,55616586,27972741,0,0,67369,0,1,1 +1773648223.294481,2.03,4,3992.50,61.35,1312.68,2402.05,0.00,40801.118574,41456.106971,2839479,2803066,4.675595,0.119294,55625367,27981066,0,0,67372,0,1,1 +1773648228.291302,2.08,4,3992.50,61.19,1318.85,2395.91,0.00,3520675097848.139160,3520675097183.002930,205,0,4.705698,0.119996,55634203,27989400,0,0,67374,0,1,1 +1773648233.295133,1.88,4,3992.50,60.98,1327.07,2387.69,0.00,3515743845337.276855,0.000000,75,0,4.671595,0.118465,55642981,27997659,0,0,67377,0,1,1 +1773648238.294086,1.83,4,3992.50,60.64,1340.38,2374.38,0.00,40853.846994,41519.539819,2840982,2803601,4.669005,0.119214,55651777,28005947,0,0,67379,0,1,1 +1773648243.290424,2.24,4,3992.50,60.76,1335.78,2378.98,0.00,3521015465414.152832,3521015464748.165527,11,0,4.675132,0.118947,55660542,28014246,0,0,67382,0,1,1 +1773648248.294293,2.94,4,3992.50,60.89,1330.90,2383.84,0.00,1.656433,10.666942,253,492,4.704976,0.118598,55669347,28022538,0,0,67384,0,1,1 +1773648253.293644,2.49,4,3992.50,60.81,1333.80,2380.95,0.00,40839.261677,41494.938867,2839479,2803176,4.650010,0.118792,55678114,28030811,0,0,67387,0,1,1 +1773648258.290577,2.49,4,3992.50,60.66,1339.89,2374.83,0.00,3520597049408.737305,3520597048743.539551,205,0,4.700677,0.119363,55686878,28039093,0,0,67389,0,1,1 +1773648263.290422,2.13,4,3992.50,60.64,1340.50,2374.27,0.00,0.000000,0.000000,205,0,4.672383,0.118741,55695653,28047373,0,0,67392,0,1,1 +1773648268.290358,2.64,4,3992.50,60.72,1337.57,2377.19,0.00,40845.690324,41511.461098,2840982,2803715,4.676943,0.119287,55704401,28055698,0,0,67394,0,1,1 +1773648273.290469,2.33,4,3992.50,60.76,1336.00,2378.74,0.00,0.000000,0.005371,2840982,2803730,4.678939,0.119550,55713190,28063985,0,0,67397,0,1,1 +1773648278.290450,2.70,4,3992.50,60.95,1334.84,2386.42,0.00,3518450576151.485840,3518450575483.721191,258,2,4.672767,0.118486,55721954,28072257,0,0,67399,0,1,1 +1773648283.292112,2.28,4,3992.50,61.05,1330.93,2390.27,0.00,40829.592867,41497.176934,2840982,2803773,4.705134,0.118494,55730753,28080496,0,0,67402,0,1,1 +1773648288.290931,2.54,4,3992.50,61.13,1327.86,2393.38,0.00,3519268954997.760254,3519268954331.972168,11,0,4.666552,0.119340,55739485,28088764,0,0,67404,0,1,1 +1773648293.294038,1.93,4,3992.50,61.14,1327.40,2393.86,0.00,0.053482,0.000000,75,0,4.679784,0.119360,55748286,28097027,0,0,67407,0,1,1 +1773648298.291168,2.64,4,3992.50,61.08,1330.02,2391.22,0.00,2.123094,0.000195,258,2,4.670780,0.117644,55757022,28105277,0,0,67409,0,1,1 +1773648303.291559,2.23,4,3992.50,60.92,1336.29,2384.95,0.00,3518161915527.321777,10.674165,253,492,4.682340,0.119933,55765855,28113600,0,0,67412,0,1,1 +1773648308.293955,2.23,4,3992.50,61.32,1322.80,2400.69,0.00,3516752059366.770020,3516752059357.576660,205,0,4.685020,0.118492,55774622,28121898,0,0,67414,0,1,1 +1773648313.291120,1.93,4,3992.50,61.07,1332.54,2390.87,0.00,3520433320627.021484,0.000000,11,0,4.673289,0.119065,55783374,28130168,0,0,67417,0,1,1 +1773648318.290955,2.03,4,3992.50,60.97,1336.13,2387.28,0.00,0.000000,0.000000,11,0,4.678704,0.118992,55792160,28138466,0,0,67419,0,1,1 +1773648323.290561,2.54,4,3992.50,61.08,1331.81,2391.57,0.00,0.000000,0.000000,11,0,4.703632,0.117786,55800905,28146784,0,0,67422,0,1,1 +1773648328.290430,2.38,4,3992.50,61.01,1334.64,2388.74,0.00,0.000000,0.000000,11,0,4.658367,0.119401,55809679,28155126,0,0,67424,0,1,1 +1773648333.293968,2.33,4,3992.50,61.05,1333.30,2390.08,0.00,0.000000,0.000000,11,0,4.686727,0.117925,55818472,28163424,0,0,67427,0,1,1 +1773648338.291011,3.09,4,3992.50,61.19,1324.96,2395.62,0.00,0.180380,0.000000,205,0,4.680615,0.120926,55827258,28171770,0,0,67429,0,1,1 +1773648343.294871,22.46,4,3992.50,67.95,1059.99,2660.49,0.00,3515723154984.727051,0.000000,11,0,4.749767,0.126187,55836494,28180293,0,0,67432,0,1,1 +1773648348.290358,2.39,4,3992.50,67.91,1061.80,2658.67,0.00,2.177356,0.000195,258,2,4.691309,0.117485,55845429,28188746,0,0,67434,0,1,1 +1773648353.290349,2.75,4,3992.50,68.04,1056.64,2663.88,0.00,40833.526627,41500.730193,2839482,2803701,4.683608,0.117040,55854418,28197139,0,0,67437,0,1,1 +1773648358.294186,2.54,4,3992.50,68.08,1055.07,2665.41,0.00,3515738953716.838867,3515738953052.321289,11,0,4.713198,0.115903,55863362,28205513,0,0,67439,0,1,1 +1773648363.294556,2.34,4,3992.50,68.05,1056.26,2664.20,0.00,1.657592,10.674404,253,492,4.684610,0.115954,55872322,28213820,0,0,67442,0,1,1 +1773648368.292172,3.05,4,3992.50,68.19,1037.11,2669.61,0.00,3520115857090.841309,3520115857081.639160,205,0,4.712259,0.117273,55881344,28222191,0,0,67444,0,1,1 +1773648373.290992,2.74,4,3992.50,67.61,1061.74,2646.90,0.00,3519267384351.145020,0.000000,75,0,4.688150,0.115386,55890274,28230524,0,0,67447,0,1,1 +1773648378.290374,2.44,4,3992.50,67.43,1068.80,2639.87,0.00,2.122138,0.000195,258,2,4.683929,0.117274,55899233,28238905,0,0,67449,0,1,1 +1773648383.290349,2.90,4,3992.50,67.40,1067.68,2638.98,0.00,3518454157978.394531,3518454157980.569824,11,0,4.698391,0.114908,55908141,28247239,0,0,67452,0,1,1 +1773648388.290883,2.75,4,3992.50,67.43,1068.76,2639.88,0.00,0.000000,0.000000,11,0,4.697065,0.117552,55917110,28255599,0,0,67454,0,1,1 +1773648393.294860,2.95,4,3992.50,67.52,1065.28,2643.37,0.00,2.173661,0.000195,258,2,4.702396,0.116455,55926075,28263953,0,0,67457,0,1,1 +1773648398.294425,3.05,4,3992.50,67.68,1068.02,2649.66,0.00,3518743634449.596191,10.675930,253,492,4.683715,0.116727,55935018,28272290,0,0,67459,0,1,1 +1773648403.291013,2.50,4,3992.50,67.50,1072.71,2642.58,0.00,3520840037852.935547,3520840037843.912109,11,0,4.680562,0.116626,55943981,28280662,0,0,67462,0,1,1 +1773648408.291038,2.95,4,3992.50,67.40,1076.33,2638.96,0.00,0.053515,0.000000,75,0,4.704264,0.116787,55952993,28289038,0,0,67464,0,1,1 +1773648413.291351,2.85,4,3992.50,67.51,1072.32,2642.97,0.00,3518216549155.756836,0.000000,11,0,4.694885,0.116190,55961929,28297414,0,0,67467,0,1,1 +1773648418.295335,2.89,4,3992.50,67.61,1068.33,2646.96,0.00,40812.829774,41478.519113,2840985,2804524,4.704178,0.116763,55970930,28305782,0,0,67469,0,1,1 +1773648423.290494,2.55,4,3992.50,67.48,1073.16,2642.11,0.00,3521846970951.466309,3521846970950.521973,2839482,2804047,4.693981,0.116453,55979876,28314149,0,0,67472,0,1,1 +1773648428.290567,3.10,4,3992.50,67.46,1073.70,2641.29,0.00,9.726031,10.712149,2840985,2804573,4.697848,0.114897,55988792,28322473,0,0,67474,0,1,1 +1773648433.290931,2.29,4,3992.50,67.47,1073.32,2641.70,0.00,3518181240760.213867,3518181240091.825195,258,2,4.676604,0.117703,55997791,28330847,0,0,67477,0,1,1 +1773648438.290390,2.85,4,3992.50,67.59,1068.69,2646.31,0.00,3518817252404.679688,3518817252406.675293,205,0,4.697873,0.115896,56006741,28339163,0,0,67479,0,1,1 +1773648443.291234,2.55,4,3992.50,67.53,1071.14,2643.88,0.00,1.994781,0.000195,258,2,4.703286,0.116568,56015667,28347543,0,0,67482,0,1,1 +1773648448.294246,2.49,4,3992.50,67.46,1073.80,2641.22,0.00,3516318903124.737793,3516318903126.731934,205,0,4.697280,0.115564,56024616,28355901,0,0,67484,0,1,1 +1773648453.291118,2.54,4,3992.50,67.37,1077.28,2637.72,0.00,1.478366,10.681878,253,492,4.705645,0.116290,56033608,28364224,0,0,67487,0,1,1 +1773648458.291058,2.95,4,3992.50,67.82,1059.70,2655.32,0.00,40844.180710,41501.520547,2840985,2804718,4.681534,0.116488,56042531,28372587,0,0,67489,0,1,1 +1773648463.295053,2.34,4,3992.50,67.74,1062.89,2652.13,0.00,3515628214845.878906,3515628214189.072266,253,492,4.709310,0.116276,56051524,28380966,0,0,67492,0,1,1 +1773648468.294437,2.90,4,3992.50,67.82,1059.53,2655.47,0.00,3518870467696.735352,3518870467687.536621,205,0,4.687818,0.116710,56060515,28389363,0,0,67494,0,1,1 +1773648473.294302,2.60,4,3992.50,67.70,1064.35,2650.66,0.00,1.477481,10.675483,253,492,4.698813,0.116359,56069506,28397689,0,0,67497,0,1,1 +1773648478.294579,2.24,4,3992.50,67.75,1062.34,2652.63,0.00,40831.705377,41488.097593,2839482,2804320,4.698215,0.116184,56078468,28406049,0,0,67499,0,1,1 +1773648483.294997,2.49,4,3992.50,67.87,1057.60,2657.42,0.00,3518143346787.828613,3518143346122.438477,11,0,4.681322,0.115258,56087398,28414368,0,0,67502,0,1,1 +1773648488.290457,3.01,4,3992.50,68.14,1047.20,2667.79,0.00,0.053564,0.000000,75,0,4.700732,0.115452,56096339,28422705,0,0,67504,0,1,1 +1773648493.290627,2.39,4,3992.50,67.97,1053.65,2661.32,0.00,1.604144,10.674831,253,492,4.697554,0.115221,56105268,28431025,0,0,67507,0,1,1 +1773648498.293734,2.84,4,3992.50,68.10,1048.62,2666.38,0.00,3516252779037.598633,3516252779028.586914,11,0,4.704054,0.116825,56114265,28439400,0,0,67509,0,1,1 +1773648503.295148,2.29,4,3992.50,68.05,1050.58,2664.40,0.00,0.000000,0.000000,11,0,4.693092,0.115502,56123190,28447724,0,0,67512,0,1,1 +1773648508.295121,2.14,4,3992.50,68.13,1047.65,2667.35,0.00,0.180274,0.000000,205,0,4.688781,0.116016,56132141,28456059,0,0,67514,0,1,1 +1773648513.294492,2.49,4,3992.50,68.08,1049.72,2665.29,0.00,0.000000,0.000000,205,0,4.698098,0.116103,56141111,28464436,0,0,67517,0,1,1 +1773648518.294883,3.10,4,3992.50,67.99,1053.14,2662.10,0.00,3518162531861.506836,0.000000,11,0,4.675573,0.117404,56150070,28472794,0,0,67519,0,1,1 +1773648523.290644,2.55,4,3992.50,68.01,1052.29,2662.84,0.00,2.177236,0.000195,258,2,4.719926,0.116038,56159038,28481160,0,0,67522,0,1,1 +1773648528.291191,2.75,4,3992.50,68.03,1051.52,2663.61,0.00,3518051996259.822266,3518051996261.817383,205,0,4.690195,0.115881,56167986,28489462,0,0,67524,0,1,1 +1773648533.294406,3.00,4,3992.50,67.75,1062.57,2652.59,0.00,40809.203269,41474.573722,2839482,2804583,4.689534,0.115872,56176940,28497808,0,0,67527,0,1,1 +1773648538.294583,2.29,4,3992.50,67.96,1054.28,2660.84,0.00,3518312624002.844238,3518312623337.069824,205,0,4.706944,0.115930,56185891,28506119,0,0,67529,0,1,1 +1773648543.294320,37.15,4,3992.50,66.77,1100.99,2614.09,0.00,0.000000,0.000000,205,0,154.128512,0.156839,56210604,28518293,0,0,67532,0,1,1 +1773648548.293942,32.76,4,3992.50,66.90,1095.64,2619.44,0.00,1.995268,0.000195,258,2,131.393319,0.085761,56224250,28525030,0,0,67534,0,1,1 +1773648553.292777,32.56,4,3992.50,66.51,1111.48,2604.12,0.00,40842.964866,41510.989700,2839482,2804660,125.797809,0.074732,56236758,28530908,0,0,67537,0,1,1 +1773648558.293561,31.30,4,3992.50,66.59,1108.77,2607.00,0.00,9.724646,10.680453,2840985,2805166,122.944083,0.068773,56248883,28536315,0,0,67539,0,1,1 +1773648563.296535,30.68,4,3992.50,66.79,1100.69,2614.93,0.00,3516345969662.375977,3516345968995.942383,205,0,121.688414,0.063998,56260861,28541374,0,0,67542,0,1,1 +1773648568.294666,30.00,4,3992.50,66.65,1106.16,2609.55,0.00,0.000000,0.000000,205,0,120.199976,0.060338,56272397,28546137,0,0,67544,0,1,1 +1773648573.294648,30.29,4,3992.50,66.53,1110.99,2604.61,0.00,1.477447,10.675234,253,492,120.356131,0.056653,56283937,28550598,0,0,67547,0,1,1 +1773648578.295048,30.95,4,3992.50,66.67,1105.41,2610.23,0.00,0.000000,0.000000,253,492,119.544698,0.055566,56295351,28554955,0,0,67549,0,1,1 +1773648583.294348,25.16,4,3992.50,66.66,1105.76,2609.86,0.00,3518929411391.369141,3518929411382.297363,75,0,119.371458,0.057071,56306814,28559440,0,0,67552,0,1,1 +1773648588.294370,16.16,4,3992.50,60.10,1362.55,2353.06,0.00,3518421398504.750000,0.000000,11,0,83.908186,0.040604,56314850,28562536,0,0,67554,0,1,1 +1773648593.290567,18.87,4,3992.50,59.93,1369.08,2346.55,0.00,1.658977,10.683321,253,492,74.754941,0.036769,56322063,28565422,0,0,67557,0,1,1 +1773648598.295079,21.71,4,3992.50,60.04,1364.92,2350.80,0.00,3515265777577.328125,3515265777568.139160,205,0,88.038808,0.042506,56330655,28568617,0,0,67559,0,1,1 +1773648603.295005,24.09,4,3992.50,59.88,1371.03,2344.58,0.00,3518488884225.564453,0.000000,11,0,98.330656,0.046857,56340228,28572300,0,0,67562,0,1,1 +1773648608.290446,3.87,4,3992.50,54.88,1567.12,2148.56,0.00,0.000000,0.000000,11,0,59.935557,0.029492,56346141,28574536,0,0,67564,0,1,1 +1773648613.295249,1.10,4,3992.50,54.43,1589.18,2131.16,0.00,0.000000,0.000000,11,0,0.001527,0.000862,56346170,28574559,0,0,67567,0,1,1 +1773648618.290431,0.70,4,3992.50,53.97,1607.42,2112.93,0.00,0.000000,0.000000,11,0,0.000000,0.000020,56346170,28574561,0,0,67569,0,1,1 +1773648623.293723,1.05,4,3992.50,53.92,1609.24,2111.10,0.00,0.180155,0.000000,205,0,0.000000,0.000030,56346170,28574564,0,0,67572,0,1,1 +1773648628.294466,0.55,4,3992.50,53.93,1608.99,2111.36,0.00,0.000000,0.000000,205,0,0.000000,0.000020,56346170,28574566,0,0,67574,0,1,1 +1773648633.295193,0.70,4,3992.50,53.99,1606.58,2113.77,0.00,0.000000,0.000000,205,0,0.000000,0.000030,56346170,28574569,0,0,67577,0,1,1 +1773648638.294755,0.90,4,3992.50,54.03,1604.22,2115.45,0.00,1.477571,10.676131,253,492,0.001230,0.001244,56346179,28574585,0,0,67579,0,1,1 +1773648643.295357,0.60,4,3992.50,54.06,1603.24,2116.43,0.00,3518013164461.161621,3518013164452.145508,11,0,0.000008,0.000038,56346180,28574589,0,0,67582,0,1,1 +1773648648.295260,0.75,4,3992.50,54.05,1603.50,2116.17,0.00,0.053517,0.000000,75,0,0.000213,0.001204,56346188,28574607,0,0,67584,0,1,1 +1773648653.290359,0.65,4,3992.50,54.05,1603.51,2116.16,0.00,3521889158253.361816,0.000000,11,0,0.000076,0.000123,56346194,28574616,0,0,67587,0,1,1 +1773648658.290673,0.70,4,3992.50,54.05,1603.51,2116.16,0.00,0.000000,0.000000,11,0,0.000255,0.001258,56346205,28574637,0,0,67589,0,1,1 +1773648663.293845,0.75,4,3992.50,54.07,1602.77,2116.90,0.00,40819.769393,41486.757158,2841044,2805612,0.000000,0.000030,56346205,28574640,0,0,67592,0,1,1 +1773648668.290458,1.35,4,3992.50,53.96,1605.11,2112.47,0.00,3520822004562.537598,3520822004561.619141,2839541,2805133,0.000000,0.000020,56346205,28574642,0,0,67594,0,1,1 +1773648673.296537,3.40,4,3992.50,59.96,1370.14,2347.37,0.00,3514164933779.514648,3514164933113.777832,75,0,0.204108,0.004128,56346327,28574733,0,0,67597,0,1,1 +1773648678.294540,40.95,4,3992.50,59.69,1380.65,2336.84,0.00,40852.204246,41519.128499,2839543,2805281,108.798771,0.036649,56357794,28577483,0,0,67599,0,1,1 +1773648683.290359,28.13,4,3992.50,59.88,1373.05,2344.45,0.00,3521382013903.817383,3521382013236.601074,75,0,119.063448,0.018862,56369953,28578931,0,0,67602,0,1,1 +1773648688.294488,28.07,4,3992.50,59.93,1371.15,2346.26,0.00,3515533519520.469727,0.000000,11,0,118.269197,0.034377,56382035,28581617,0,0,67604,0,1,1 +1773648693.290359,28.44,4,3992.50,59.65,1382.04,2335.45,0.00,0.180422,0.000000,205,0,120.065491,0.024202,56394359,28583447,0,0,67607,0,1,1 +1773648698.295227,28.59,4,3992.50,60.03,1366.11,2350.40,0.00,1.993177,0.000195,258,2,118.851430,0.023967,56406614,28585228,0,0,67609,0,1,1 +1773648703.294530,28.01,4,3992.50,59.68,1379.94,2336.58,0.00,3518927448258.658691,3518927448260.654297,205,0,119.382576,0.031248,56418817,28587681,0,0,67612,0,1,1 +1773648708.294567,28.48,4,3992.50,60.03,1366.23,2350.28,0.00,3518411254970.609863,0.000000,75,0,119.564728,0.020727,56431139,28589233,0,0,67614,0,1,1 +1773648713.294393,28.66,4,3992.50,59.71,1378.67,2337.79,0.00,1.604255,10.675566,253,492,118.773174,0.035819,56443427,28591962,0,0,67617,0,1,1 +1773648718.295333,8.86,4,3992.50,53.62,1617.10,2099.44,0.00,40836.399290,41495.103263,2841051,2805900,82.500872,0.035516,56451917,28594744,0,0,67619,0,1,1 +1773648723.290374,0.90,4,3992.50,53.63,1616.68,2099.86,0.00,3521930625262.574219,3521930624593.885742,205,0,0.003278,0.001701,56451977,28594786,0,0,67622,0,1,1 +1773648728.293291,0.95,4,3992.50,53.92,1604.27,2111.12,0.00,1.993954,0.000195,258,2,0.000000,0.000020,56451977,28594788,0,0,67624,0,1,1 +1773648733.295205,0.75,4,3992.50,53.94,1603.23,2111.86,0.00,3517090557814.941895,3517090557817.116699,11,0,0.000000,0.000030,56451977,28594791,0,0,67627,0,1,1 +1773648738.290697,0.55,4,3992.50,53.94,1603.23,2111.86,0.00,1.659211,10.684830,253,492,0.000031,0.000045,56451979,28594795,0,0,67629,0,1,1 +1773648743.294843,0.70,4,3992.50,53.94,1603.23,2111.85,0.00,3515522036059.103027,3515522036050.093262,11,0,0.000025,0.000061,56451981,28594800,0,0,67632,0,1,1 +1773648748.294375,0.60,4,3992.50,53.90,1604.73,2110.35,0.00,40839.894981,41507.045162,2839553,2805537,0.000000,0.000020,56451981,28594802,0,0,67634,0,1,1 +1773648753.294608,0.55,4,3992.50,53.71,1612.14,2102.94,0.00,3518272993467.300781,3518272992800.063965,205,0,0.000025,0.000061,56451983,28594807,0,0,67637,0,1,1 +1773648758.295151,0.95,4,3992.50,54.04,1605.46,2115.71,0.00,3518055166385.890625,0.000000,75,0,0.000008,0.000028,56451984,28594810,0,0,67639,0,1,1 +1773648763.290380,0.70,4,3992.50,53.85,1610.82,2108.32,0.00,1.605732,10.685392,253,492,0.000000,0.000030,56451984,28594813,0,0,67642,0,1,1 +1773648768.290537,0.65,4,3992.50,53.86,1610.37,2108.77,0.00,40842.865685,41501.928645,2841056,2806070,0.000126,0.000819,56451994,28594829,0,0,67644,0,1,1 +1773648773.290452,0.65,4,3992.50,53.86,1610.37,2108.77,0.00,3518496634149.191895,3518496633480.899414,205,0,0.000008,0.000038,56451995,28594833,0,0,67647,0,1,1 +1773648778.290566,0.60,4,3992.50,53.86,1610.37,2108.77,0.00,40834.967917,41502.290354,2839553,2805582,0.000000,0.000020,56451995,28594835,0,0,67649,0,1,1 +1773648783.290412,0.90,4,3992.50,53.67,1618.02,2101.12,0.00,9.726471,10.683434,2841056,2806090,0.001396,0.000733,56452019,28594854,0,0,67652,0,1,1 +1773648788.294672,42.96,4,3992.50,59.92,1374.88,2345.91,0.00,3515441798590.883301,3515441797932.347656,253,492,100.460048,0.040059,56462678,28597799,0,0,67654,0,1,1 +1773648793.290708,28.20,4,3992.50,60.18,1364.60,2356.08,0.00,3521229035745.661621,3521229035736.637207,11,0,118.257149,0.037785,56474774,28600713,0,0,67657,0,1,1 +1773648798.294868,28.46,4,3992.50,59.91,1374.94,2345.80,0.00,40811.849958,41479.578129,2841058,2806269,119.666157,0.016731,56487117,28601995,0,0,67659,0,1,1 +1773648803.290586,28.17,4,3992.50,59.89,1375.95,2344.76,0.00,3521452479334.768066,3521452478665.857910,75,0,118.665535,0.017899,56499306,28603350,0,0,67662,0,1,1 +1773648808.295955,28.36,4,3992.50,60.05,1369.50,2351.23,0.00,0.000000,0.000000,75,0,120.045196,0.049617,56511624,28607240,0,0,67664,0,1,1 +1773648813.290374,28.46,4,3992.50,60.12,1366.73,2354.01,0.00,3522368745845.141602,0.000000,11,0,118.321021,0.093036,56524173,28614507,0,0,67667,0,1,1 +1773648818.290609,28.69,4,3992.50,60.13,1366.43,2354.25,0.00,2.175288,0.000195,258,2,120.183551,0.080813,56537006,28620816,0,0,67669,0,1,1 +1773648823.294947,29.15,4,3992.50,60.02,1370.90,2349.87,0.00,3515387107864.595703,3515387107866.769531,11,0,118.478467,0.063703,56549568,28625803,0,0,67672,0,1,1 +1773648828.290567,11.50,4,3992.50,54.96,1568.84,2151.95,0.00,0.000000,0.000000,11,0,91.418457,0.050697,56559169,28629732,0,0,67674,0,1,1 +1773648833.295017,1.05,4,3992.50,54.36,1592.52,2128.29,0.00,0.180113,0.000000,205,0,0.003135,0.001585,56559229,28629775,0,0,67677,0,1,1 +1773648838.292136,0.55,4,3992.50,54.01,1606.09,2114.71,0.00,1.996268,0.000195,258,2,0.000000,0.000664,56559229,28629781,0,0,67679,0,1,1 +1773648843.295189,0.65,4,3992.50,54.02,1605.85,2114.96,0.00,3516289755873.045898,3516289755875.166504,75,0,0.000000,0.000030,56559229,28629784,0,0,67682,0,1,1 +1773648848.294724,0.55,4,3992.50,54.02,1605.86,2114.94,0.00,3518764827704.947754,0.000000,11,0,0.000000,0.000020,56559229,28629786,0,0,67684,0,1,1 +1773648853.290788,1.05,4,3992.50,54.01,1604.26,2114.72,0.00,0.053558,0.000000,75,0,0.000000,0.000030,56559229,28629789,0,0,67687,0,1,1 +1773648858.290490,0.65,4,3992.50,54.01,1604.27,2114.72,0.00,0.126765,0.000000,205,0,0.000000,0.000020,56559229,28629791,0,0,67689,0,1,1 +1773648863.290449,0.70,4,3992.50,54.01,1604.27,2114.71,0.00,3518465877342.988281,0.000000,11,0,0.000000,0.000030,56559229,28629794,0,0,67692,0,1,1 +1773648868.290447,0.55,4,3992.50,54.01,1604.27,2114.71,0.00,0.000000,0.000000,11,0,0.000000,0.000020,56559229,28629796,0,0,67694,0,1,1 +1773648873.290377,0.70,4,3992.50,53.82,1611.66,2107.32,0.00,0.180276,0.000000,205,0,0.000000,0.000030,56559229,28629799,0,0,67697,0,1,1 +1773648878.292562,0.60,4,3992.50,53.67,1617.59,2101.39,0.00,3516900274226.578613,0.000000,11,0,0.000126,0.000175,56559239,28629811,0,0,67699,0,1,1 +1773648883.290588,0.85,4,3992.50,53.79,1612.89,2106.04,0.00,40852.335217,41520.407762,2839566,2806016,0.000016,0.000046,56559241,28629816,0,0,67702,0,1,1 +1773648888.290455,0.95,4,3992.50,53.79,1612.89,2106.04,0.00,3518531218386.635254,3518531217718.628418,205,0,0.000000,0.000020,56559241,28629818,0,0,67704,0,1,1 +1773648893.295355,7.51,4,3992.50,59.90,1373.68,2345.30,0.00,3514992426321.418457,0.000000,11,0,2.005916,0.005965,56559679,28630126,0,0,67707,0,1,1 +1773648898.291688,38.25,4,3992.50,60.00,1369.93,2349.00,0.00,40875.926461,41545.273362,2841072,2806654,113.640106,0.056532,56571222,28634453,0,0,67709,0,1,1 +1773648903.290990,28.73,4,3992.50,60.04,1368.28,2350.56,0.00,0.016409,0.093177,2841073,2806737,119.585677,0.046550,56583479,28638001,0,0,67712,0,1,1 +1773648908.290719,28.46,4,3992.50,60.27,1359.10,2359.61,0.00,3518627622925.916504,3518627622925.007812,2839570,2806286,118.168045,0.043161,56595430,28641326,0,0,67714,0,1,1 +1773648913.294682,28.69,4,3992.50,60.20,1362.06,2356.92,0.00,3515650791902.116211,3515650791234.621094,11,0,120.068390,0.034876,56607653,28644097,0,0,67717,0,1,1 +1773648918.294970,28.73,4,3992.50,59.94,1373.60,2346.64,0.00,0.000000,0.000000,11,0,119.156340,0.043527,56619789,28647489,0,0,67719,0,1,1 +1773648923.291867,28.79,4,3992.50,60.00,1371.25,2348.97,0.00,40861.602568,41530.132926,2839570,2806379,119.236937,0.040945,56631845,28650663,0,0,67722,0,1,1 +1773648928.290379,28.26,4,3992.50,60.12,1366.29,2353.90,0.00,3519484404005.411133,3519484403337.096680,11,0,119.198016,0.039743,56643982,28653782,0,0,67724,0,1,1 +1773648933.294852,28.94,4,3992.50,59.98,1371.76,2348.53,0.00,2.173446,0.000195,258,2,119.057574,0.041865,56656132,28657025,0,0,67727,0,1,1 +1773648938.290680,7.58,4,3992.50,55.42,1550.37,2169.94,0.00,3521375336708.068848,3521375336710.065918,205,0,75.366100,0.033794,56663748,28659617,0,0,67729,0,1,1 +1773648943.295656,1.20,4,3992.50,54.65,1592.22,2139.70,0.00,40795.599283,41463.417233,2839581,2806458,0.003070,0.001441,56663803,28659657,0,0,67732,0,1,1 +1773648948.294865,0.70,4,3992.50,54.23,1608.58,2123.34,0.00,3518993908074.677734,3518993907415.288574,253,492,0.001127,0.001222,56663812,28659673,0,0,67734,0,1,1 +1773648953.295069,0.65,4,3992.50,54.14,1612.38,2119.54,0.00,3518293905956.117676,3518293905947.100586,11,0,0.000000,0.000030,56663812,28659676,0,0,67737,0,1,1 +1773648958.292481,0.75,4,3992.50,54.13,1612.70,2119.21,0.00,0.000000,0.000000,11,0,0.001140,0.001222,56663822,28659692,0,0,67739,0,1,1 +1773648963.295174,0.60,4,3992.50,54.13,1612.47,2119.45,0.00,40824.116482,41493.090474,2841084,2807021,0.000008,0.000038,56663823,28659696,0,0,67742,0,1,1 +1773648968.294930,1.10,4,3992.50,54.11,1614.27,2118.61,0.00,3518608914173.598145,3518608914172.708496,2839581,2806555,0.000000,0.000664,56663823,28659702,0,0,67744,0,1,1 +1773648973.290459,0.60,4,3992.50,54.13,1613.54,2119.36,0.00,3521585976539.870117,3521585975870.773926,75,0,0.000000,0.000030,56663823,28659705,0,0,67747,0,1,1 +1773648978.290549,0.65,4,3992.50,54.12,1613.80,2119.10,0.00,3518374127953.406250,0.000000,11,0,0.000000,0.000020,56663823,28659707,0,0,67749,0,1,1 +1773648983.295257,0.60,4,3992.50,53.94,1621.21,2111.68,0.00,40797.959172,41465.895736,2839581,2806590,0.000056,0.000086,56663827,28659714,0,0,67752,0,1,1 +1773648988.290368,0.65,4,3992.50,53.94,1620.96,2111.93,0.00,9.735691,10.690531,2841084,2807088,0.000101,0.000144,56663835,28659724,0,0,67754,0,1,1 +1773648993.294600,0.75,4,3992.50,53.95,1620.75,2112.14,0.00,3515461407295.972168,3515461406627.018555,11,0,0.000346,0.000617,56663845,28659741,0,0,67757,0,1,1 +1773648998.294967,1.00,4,3992.50,53.95,1621.73,2112.10,0.00,40833.386570,41501.942204,2839581,2806611,0.001779,0.001557,56663870,28659759,0,0,67759,0,1,1 +1773649003.294628,1.35,4,3992.50,53.72,1630.41,2103.39,0.00,3518675306363.335449,3518675305703.703125,253,492,0.001547,0.001400,56663904,28659793,0,0,67762,0,1,1 +1773649008.294840,42.14,4,3992.50,60.05,1382.52,2351.21,0.00,40832.991813,41492.657025,2839584,2806755,106.749036,0.052998,56675030,28663711,0,0,67764,0,1,1 +1773649013.290400,29.18,4,3992.50,59.91,1387.96,2345.76,0.00,0.000000,0.011631,2839584,2806770,119.076711,0.035873,56687310,28666462,0,0,67767,0,1,1 +1773649018.295074,28.43,4,3992.50,60.09,1381.08,2352.61,0.00,3515150880204.118164,3515150879535.966797,75,0,119.459663,0.046523,56699618,28670083,0,0,67769,0,1,1 +1773649023.294475,29.40,4,3992.50,59.98,1385.36,2348.25,0.00,2.122129,0.000195,258,2,118.781051,0.030665,56711797,28672476,0,0,67772,0,1,1 +1773649028.293818,30.58,4,3992.50,60.05,1382.58,2351.16,0.00,3518899817526.636230,3518899817528.811523,11,0,119.588958,0.043901,56724287,28675836,0,0,67774,0,1,1 +1773649033.294019,28.85,4,3992.50,60.10,1374.81,2353.11,0.00,1.657648,10.674766,253,492,119.158850,0.025097,56736502,28677801,0,0,67777,0,1,1 +1773649038.294545,29.57,4,3992.50,60.22,1370.31,2357.68,0.00,3518067234155.315918,3518067234146.299805,11,0,119.752709,0.016436,56748805,28679067,0,0,67779,0,1,1 +1773649043.292168,29.52,4,3992.50,60.07,1376.02,2351.86,0.00,1.658503,10.680273,253,492,119.019977,0.025115,56760888,28681037,0,0,67782,0,1,1 +1773649048.294813,9.60,4,3992.50,55.19,1567.28,2160.73,0.00,40813.273825,41472.858457,2839596,2806906,83.873307,0.013860,56769521,28681992,0,0,67784,0,1,1 +1773649053.294785,1.25,4,3992.50,54.35,1600.01,2128.00,0.00,0.000000,0.036524,2839596,2806946,0.000675,0.000339,56769537,28682006,0,0,67787,0,1,1 +1773649058.294821,0.65,4,3992.50,54.19,1606.38,2121.61,0.00,3518411645488.652832,3518411644819.616699,75,0,0.000000,0.000020,56769537,28682008,0,0,67789,0,1,1 +1773649063.294984,1.05,4,3992.50,54.28,1612.72,2125.14,0.00,2.121806,0.000195,258,2,0.000000,0.000030,56769537,28682011,0,0,67792,0,1,1 +1773649068.292176,0.75,4,3992.50,54.26,1613.35,2124.55,0.00,3520414848393.243164,10.681000,253,492,0.000000,0.000020,56769537,28682013,0,0,67794,0,1,1 +1773649073.294317,0.60,4,3992.50,54.27,1613.11,2124.79,0.00,3516930453884.115234,3516930453875.102051,11,0,0.000000,0.000030,56769537,28682016,0,0,67797,0,1,1 +1773649078.295044,0.60,4,3992.50,54.07,1620.75,2117.15,0.00,40840.319167,41510.320397,2841099,2807546,0.000000,0.000020,56769537,28682018,0,0,67799,0,1,1 +1773649083.294634,0.70,4,3992.50,54.08,1620.50,2117.39,0.00,3518725866123.286621,3518725865452.953125,205,0,0.000000,0.000030,56769537,28682021,0,0,67802,0,1,1 +1773649088.294289,0.90,4,3992.50,54.28,1610.23,2125.02,0.00,1.995255,0.000195,258,2,0.000000,0.000664,56769537,28682027,0,0,67804,0,1,1 +1773649093.290373,0.65,4,3992.50,54.27,1608.98,2124.98,0.00,3521195130035.981445,3521195130038.158691,11,0,0.000101,0.000154,56769545,28682038,0,0,67807,0,1,1 +1773649098.294633,0.85,4,3992.50,54.28,1608.76,2125.20,0.00,0.000000,0.000000,11,0,0.000041,0.000067,56769549,28682044,0,0,67809,0,1,1 +1773649103.290851,0.60,4,3992.50,54.28,1608.76,2125.20,0.00,0.000000,0.000000,11,0,0.000000,0.000674,56769549,28682051,0,0,67812,0,1,1 +1773649108.295198,1.05,4,3992.50,54.08,1616.41,2117.50,0.00,0.000000,0.000000,11,0,0.001395,0.000722,56769573,28682069,0,0,67814,0,1,1 +1773649113.294366,40.65,4,3992.50,60.17,1378.12,2355.76,0.00,0.000000,0.000000,11,0,96.555394,0.046507,56779782,28685534,0,0,67817,0,1,1 +1773649118.290839,29.57,4,3992.50,60.15,1378.81,2355.08,0.00,1.658885,10.682729,253,492,118.245644,0.049594,56791793,28689338,0,0,67819,0,1,1 +1773649123.294868,29.30,4,3992.50,60.13,1379.64,2354.21,0.00,3515604511952.458984,3515604511943.268555,205,0,119.268798,0.048610,56804007,28693117,0,0,67822,0,1,1 +1773649128.294961,28.81,4,3992.50,60.03,1383.55,2350.38,0.00,40845.346657,41515.964563,2841103,2807804,118.959697,0.045999,56816059,28696741,0,0,67824,0,1,1 +1773649133.291629,29.12,4,3992.50,60.19,1377.50,2356.43,0.00,3520783400491.143555,3520783399820.193359,75,0,119.442882,0.041131,56828233,28699977,0,0,67827,0,1,1 +1773649138.294637,29.36,4,3992.50,60.20,1377.18,2356.84,0.00,1.603235,10.668777,253,492,118.891966,0.048340,56840391,28703788,0,0,67829,0,1,1 +1773649143.291685,30.17,4,3992.50,59.99,1385.17,2348.73,0.00,3520515659365.756348,3520515659356.733887,11,0,119.235055,0.042492,56852680,28707124,0,0,67832,0,1,1 +1773649148.291212,30.13,4,3992.50,60.18,1377.71,2356.22,0.00,0.053521,0.000000,75,0,119.174123,0.046706,56864792,28710786,0,0,67834,0,1,1 +1773649153.290404,12.91,4,3992.50,54.56,1587.96,2136.08,0.00,0.126778,0.000000,205,0,95.745907,0.033580,56874520,28713416,0,0,67837,0,1,1 +1773649158.290450,1.10,4,3992.50,54.07,1606.97,2117.04,0.00,40836.157552,41505.965082,2839615,2807398,0.003118,0.002076,56874578,28713459,0,0,67839,0,1,1 +1773649163.290457,0.65,4,3992.50,53.97,1610.92,2113.09,0.00,3518432060692.689941,3518432060020.882324,258,2,0.000000,0.000030,56874578,28713462,0,0,67842,0,1,1 +1773649168.294673,0.60,4,3992.50,54.02,1609.20,2114.81,0.00,0.000000,0.000000,258,2,0.000000,0.000020,56874578,28713464,0,0,67844,0,1,1 +1773649173.291787,0.65,4,3992.50,53.83,1616.46,2107.56,0.00,40867.847464,41541.053152,2841118,2807940,0.000000,0.000030,56874578,28713467,0,0,67847,0,1,1 +1773649178.294760,1.05,4,3992.50,53.89,1609.62,2109.77,0.00,3516346094067.953125,3516346093395.535645,258,2,0.000000,0.000020,56874578,28713469,0,0,67849,0,1,1 +1773649183.295080,0.70,4,3992.50,53.84,1611.57,2107.83,0.00,3518212378222.816895,3518212378224.812012,205,0,0.000000,0.000030,56874578,28713472,0,0,67852,0,1,1 +1773649188.295157,0.95,4,3992.50,53.84,1611.57,2107.83,0.00,40845.622995,41516.525452,2841118,2807998,0.000000,0.000020,56874578,28713474,0,0,67854,0,1,1 +1773649193.295213,0.75,4,3992.50,53.72,1616.18,2103.21,0.00,3518397772538.565430,3518397771876.858398,253,492,0.000000,0.000030,56874578,28713477,0,0,67857,0,1,1 +1773649198.294740,0.60,4,3992.50,53.68,1617.82,2101.58,0.00,0.517725,3518769838185.328613,258,2,0.000025,0.000051,56874580,28713481,0,0,67859,0,1,1 +1773649203.294923,0.70,4,3992.50,53.69,1617.27,2102.13,0.00,3518308710397.314453,10.674610,253,492,0.000117,0.000170,56874590,28713494,0,0,67862,0,1,1 +1773649208.290442,0.80,4,3992.50,53.90,1609.49,2110.43,0.00,3521593072540.263184,3521593072531.057617,205,0,0.000000,0.000020,56874590,28713496,0,0,67864,0,1,1 +1773649213.294069,0.70,4,3992.50,53.96,1607.30,2112.62,0.00,40806.949032,41476.585408,2839625,2807584,0.000000,0.000673,56874590,28713503,0,0,67867,0,1,1 +1773649218.294695,0.75,4,3992.50,53.76,1614.97,2104.95,0.00,3517996697973.497070,3517996697303.638672,11,0,0.000000,0.000020,56874590,28713505,0,0,67869,0,1,1 +1773649223.292610,36.68,4,3992.50,60.64,1345.64,2374.17,0.00,2.176298,0.000195,258,2,95.577699,0.032261,56884616,28715815,0,0,67872,0,1,1 +1773649228.294540,30.71,4,3992.50,60.46,1352.52,2367.32,0.00,40818.800429,41490.816476,2839627,2807742,121.722897,0.019639,56897097,28717242,0,0,67874,0,1,1 +1773649233.291245,30.40,4,3992.50,60.50,1351.19,2368.59,0.00,3520757504267.743164,3520757503597.020508,205,0,120.443189,0.016642,56909231,28718504,0,0,67877,0,1,1 +1773649238.293981,31.00,4,3992.50,60.40,1355.00,2364.83,0.00,40823.942351,41494.849756,2841130,2808258,120.223821,0.020257,56921396,28720022,0,0,67879,0,1,1 +1773649243.294279,31.59,4,3992.50,60.27,1360.24,2359.57,0.00,3518227181945.397461,3518227181283.360352,253,492,119.837554,0.034722,56933722,28722733,0,0,67882,0,1,1 +1773649248.294209,30.92,4,3992.50,60.59,1353.46,2372.05,0.00,3518486673174.642090,3518486673165.571289,75,0,119.168673,0.022341,56946105,28724443,0,0,67884,0,1,1 +1773649253.290375,30.89,4,3992.50,60.64,1351.19,2374.30,0.00,40868.014333,41538.818871,2839627,2807849,119.866457,0.049630,56958650,28728300,0,0,67887,0,1,1 +1773649258.291224,29.42,4,3992.50,61.16,1330.98,2394.49,0.00,3517840440290.473145,3517840439620.296387,75,0,110.055688,0.022222,56970085,28730025,0,0,67889,0,1,1 +1773649263.293495,11.72,4,3992.50,55.58,1549.62,2175.96,0.00,3516839321683.454102,0.000000,11,0,98.556593,0.022390,56978964,28731778,0,0,67892,0,1,1 +1773649268.295220,1.15,4,3992.50,54.73,1582.96,2142.82,0.00,40822.806394,41492.961770,2839642,2807914,0.003137,0.001342,56979026,28731822,0,0,67894,0,1,1 +1773649273.295245,0.75,4,3992.50,54.33,1598.39,2127.16,0.00,3518419434508.679688,3518419433838.296387,11,0,0.000771,0.000473,56979043,28731837,0,0,67897,0,1,1 +1773649278.294677,0.55,4,3992.50,54.22,1602.61,2122.94,0.00,40841.524527,41512.053598,2839642,2807977,0.000000,0.000020,56979043,28731839,0,0,67899,0,1,1 +1773649283.294937,0.70,4,3992.50,54.21,1603.20,2122.35,0.00,9.725667,10.679524,2841145,2808473,0.000031,0.000699,56979045,28731848,0,0,67902,0,1,1 +1773649288.290419,0.55,4,3992.50,54.21,1602.96,2122.59,0.00,3521618956399.942383,3521618955736.954102,253,492,0.000000,0.000020,56979045,28731850,0,0,67904,0,1,1 +1773649293.290422,0.70,4,3992.50,54.21,1602.96,2122.59,0.00,3518435090080.111328,3518435090070.913574,205,0,0.001273,0.001304,56979057,28731871,0,0,67907,0,1,1 +1773649298.294399,1.15,4,3992.50,54.22,1609.82,2122.98,0.00,40804.251486,41474.425081,2839642,2808014,0.001108,0.000627,56979079,28731886,0,0,67909,0,1,1 +1773649303.290373,0.70,4,3992.50,54.22,1609.82,2122.97,0.00,3521272971710.731445,3521272971039.664551,11,0,0.000031,0.000055,56979081,28731891,0,0,67912,0,1,1 +1773649308.295297,0.85,4,3992.50,54.03,1617.22,2115.58,0.00,0.000000,0.000000,11,0,0.002426,0.002275,56979111,28731911,0,0,67914,0,1,1 +1773649313.291345,0.65,4,3992.50,54.03,1617.22,2115.58,0.00,40878.923698,41551.053973,2841145,2808546,0.000046,0.000100,56979115,28731919,0,0,67917,0,1,1 +1773649318.295133,0.70,4,3992.50,54.04,1616.99,2115.81,0.00,3515774019141.258789,3515774018469.987793,205,0,0.000038,0.000051,56979118,28731923,0,0,67919,0,1,1 +1773649323.295211,0.55,4,3992.50,54.04,1616.99,2115.81,0.00,1.477418,10.675028,253,492,0.000000,0.000030,56979118,28731926,0,0,67922,0,1,1 +1773649328.294234,0.85,4,3992.50,54.12,1611.99,2118.95,0.00,40843.213550,41505.011968,2839642,2808074,0.000000,0.000020,56979118,28731928,0,0,67924,0,1,1 +1773649333.291268,34.46,4,3992.50,60.41,1365.87,2365.02,0.00,3520525298624.896973,3520525297953.812012,11,0,82.982804,0.054641,56988199,28735935,0,0,67927,0,1,1 +1773649338.290722,33.32,4,3992.50,60.62,1357.56,2373.33,0.00,2.175628,0.000195,258,2,123.021374,0.033039,57000430,28738481,0,0,67929,0,1,1 +1773649343.292653,29.87,4,3992.50,60.66,1355.80,2375.09,0.00,40818.962235,41491.588999,2839645,2808144,120.415480,0.022587,57012176,28740229,0,0,67932,0,1,1 +1773649348.294661,30.68,4,3992.50,60.91,1345.97,2384.86,0.00,9.722266,10.676863,2841148,2808646,120.754710,0.025557,57023887,28742181,0,0,67934,0,1,1 +1773649353.290339,29.80,4,3992.50,60.62,1357.49,2373.34,0.00,3521481254754.958984,3521481254082.711426,11,0,119.454956,0.031992,57035483,28744684,0,0,67937,0,1,1 +1773649358.290346,29.92,4,3992.50,61.16,1336.26,2394.58,0.00,40836.838778,41507.591168,2839645,2808166,119.839580,0.031919,57046845,28747211,0,0,67939,0,1,1 +1773649363.291991,29.40,4,3992.50,61.44,1325.46,2405.39,0.00,3517279856351.490234,3517279855680.957520,11,0,111.950581,0.028760,57057382,28749491,0,0,67942,0,1,1 +1773649368.290607,23.14,4,3992.50,61.24,1333.19,2397.68,0.00,0.000000,0.000000,11,0,95.965579,0.023756,57066296,28751345,0,0,67944,0,1,1 +1773649373.294562,19.97,4,3992.50,61.02,1338.91,2388.93,0.00,2.173671,0.000195,258,2,77.076447,0.019746,57073520,28752878,0,0,67947,0,1,1 +1773649378.294387,1.10,4,3992.50,55.73,1545.96,2181.90,0.00,40845.938267,41520.164398,2841154,2808815,53.945358,0.014052,57078499,28753956,0,0,67949,0,1,1 +1773649383.290415,1.25,4,3992.50,54.73,1584.99,2142.86,0.00,3521234659394.138672,3521234658719.399902,258,2,0.002895,0.001158,57078552,28753992,0,0,67952,0,1,1 +1773649388.290379,1.00,4,3992.50,54.41,1598.09,2130.14,0.00,3518462984437.209473,3518462984439.331543,75,0,0.000000,0.000020,57078552,28753994,0,0,67954,0,1,1 +1773649393.290463,0.65,4,3992.50,54.15,1607.91,2119.96,0.00,0.126756,0.000000,205,0,0.000000,0.000030,57078552,28753997,0,0,67957,0,1,1 +1773649398.294446,0.55,4,3992.50,54.15,1607.67,2120.20,0.00,3515636999091.405273,0.000000,75,0,0.000000,0.000020,57078552,28753999,0,0,67959,0,1,1 +1773649403.294498,0.65,4,3992.50,54.11,1609.30,2118.58,0.00,3518400628071.816406,0.000000,11,0,0.000000,0.000030,57078552,28754002,0,0,67962,0,1,1 +1773649408.295191,0.55,4,3992.50,54.15,1607.84,2120.03,0.00,1.657485,10.673717,253,492,0.000000,0.000020,57078552,28754004,0,0,67964,0,1,1 +1773649413.295317,0.55,4,3992.50,54.15,1607.84,2120.03,0.00,40834.347220,41496.568568,2839657,2808450,0.000000,0.000674,57078552,28754011,0,0,67967,0,1,1 +1773649418.294938,0.80,4,3992.50,54.15,1596.80,2120.24,0.00,3518704073713.741699,3518704073042.435059,11,0,0.000000,0.000020,57078552,28754013,0,0,67969,0,1,1 +1773649423.293645,0.55,4,3992.50,54.14,1597.37,2119.55,0.00,0.000000,0.000000,11,0,0.000025,0.000061,57078554,28754018,0,0,67972,0,1,1 +1773649428.295076,0.60,4,3992.50,54.14,1597.15,2119.77,0.00,0.180222,0.000000,205,0,0.000117,0.000160,57078564,28754030,0,0,67974,0,1,1 +1773649433.295232,0.75,4,3992.50,53.98,1603.31,2113.62,0.00,1.477395,10.674861,253,492,0.000000,0.000030,57078564,28754033,0,0,67977,0,1,1 +1773649438.291269,0.70,4,3992.50,53.99,1603.09,2113.83,0.00,0.000000,0.000000,253,492,0.000000,0.000020,57078564,28754035,0,0,67979,0,1,1 +1773649443.294417,0.60,4,3992.50,53.80,1610.72,2106.20,0.00,0.517350,3516223828955.080078,258,2,0.000000,0.000030,57078564,28754038,0,0,67982,0,1,1 +1773649448.295559,37.45,4,3992.50,60.52,1347.46,2369.35,0.00,3517633323434.093262,3517633323436.268066,11,0,101.527630,0.038720,57089414,28756838,0,0,67984,0,1,1 +1773649453.295548,31.00,4,3992.50,60.65,1342.17,2374.57,0.00,0.180274,0.000000,205,0,120.974348,0.037036,57102033,28759708,0,0,67987,0,1,1 +1773649458.290959,30.59,4,3992.50,60.58,1345.03,2371.71,0.00,3521668804166.791016,0.000000,11,0,121.078777,0.030405,57114471,28762088,0,0,67989,0,1,1 +1773649463.294027,29.94,4,3992.50,60.32,1354.94,2361.83,0.00,0.000000,0.000000,11,0,120.294052,0.028029,57126982,28764286,0,0,67992,0,1,1 +1773649468.291159,28.79,4,3992.50,60.13,1362.66,2354.07,0.00,0.000000,0.000000,11,0,119.431552,0.032444,57139167,28766860,0,0,67994,0,1,1 +1773649473.290401,28.78,4,3992.50,60.13,1362.63,2354.11,0.00,40843.236954,41514.843660,2839659,2808697,119.180216,0.046507,57151314,28770528,0,0,67997,0,1,1 +1773649478.294436,29.20,4,3992.50,60.96,1329.85,2386.84,0.00,3515600512962.076172,3515600512300.122559,253,492,112.816995,0.031990,57162455,28773064,0,0,67999,0,1,1 +1773649483.294863,28.61,4,3992.50,60.08,1370.34,2352.21,0.00,0.000000,0.000000,253,492,121.469380,0.027522,57173504,28775175,0,0,68002,0,1,1 +1773649488.290372,9.88,4,3992.50,56.53,1509.54,2213.16,0.00,40872.167344,41535.480800,2839665,2808748,88.704928,0.019813,57181646,28776672,0,0,68004,0,1,1 +1773649493.290381,1.00,4,3992.50,54.83,1575.84,2146.86,0.00,9.794905,10.680450,2841173,2809263,0.003138,0.001586,57181706,28776715,0,0,68007,0,1,1 +1773649498.290385,0.70,4,3992.50,54.04,1606.79,2115.90,0.00,3518434030296.822754,3518434029624.202637,11,0,0.000000,0.000020,57181706,28776717,0,0,68009,0,1,1 +1773649503.294907,0.55,4,3992.50,53.91,1611.86,2110.81,0.00,0.000000,0.000000,11,0,0.000000,0.000030,57181706,28776720,0,0,68012,0,1,1 +1773649508.291738,0.85,4,3992.50,54.09,1605.46,2117.60,0.00,1.658766,10.681964,253,492,0.000000,0.000020,57181706,28776722,0,0,68014,0,1,1 +1773649513.293537,0.65,4,3992.50,54.09,1605.44,2117.59,0.00,0.000000,0.000000,253,492,0.000000,0.000030,57181706,28776725,0,0,68017,0,1,1 +1773649518.290456,0.55,4,3992.50,54.09,1605.23,2117.80,0.00,0.000000,0.000000,253,492,0.000000,0.000020,57181706,28776727,0,0,68019,0,1,1 +1773649523.291368,0.60,4,3992.50,53.90,1612.62,2110.41,0.00,3517795407512.654785,3517795407503.639160,11,0,0.000000,0.000030,57181706,28776730,0,0,68022,0,1,1 +1773649528.294647,0.65,4,3992.50,53.90,1612.62,2110.41,0.00,0.000000,0.000000,11,0,0.000000,0.000020,57181706,28776732,0,0,68024,0,1,1 +1773649533.293090,0.70,4,3992.50,53.90,1612.62,2110.41,0.00,0.000000,0.000000,11,0,0.000000,0.000030,57181706,28776735,0,0,68027,0,1,1 +1773649538.293205,0.85,4,3992.50,53.98,1604.02,2113.47,0.00,0.053514,0.000000,75,0,0.000434,0.000730,57181723,28776758,0,0,68029,0,1,1 +1773649543.294473,0.65,4,3992.50,53.79,1611.59,2105.84,0.00,0.000000,0.000000,75,0,0.000008,0.000038,57181724,28776762,0,0,68032,0,1,1 +1773649548.291710,0.50,4,3992.50,53.79,1611.39,2106.05,0.00,0.126828,0.000000,205,0,0.000205,0.001197,57181731,28776779,0,0,68034,0,1,1 +1773649553.295195,0.60,4,3992.50,53.60,1618.77,2098.68,0.00,40808.583393,41480.315380,2839671,2808977,0.000000,0.000030,57181731,28776782,0,0,68037,0,1,1 +1773649558.291164,35.97,4,3992.50,60.06,1365.67,2351.67,0.00,3521276020069.116699,3521276019396.554688,11,0,89.804836,0.048805,57191342,28780373,0,0,68039,0,1,1 +1773649563.294726,32.32,4,3992.50,59.66,1381.62,2335.73,0.00,0.053478,0.000000,75,0,122.082760,0.040401,57203788,28783449,0,0,68042,0,1,1 +1773649568.292856,30.66,4,3992.50,59.75,1378.24,2339.15,0.00,3519753851653.843750,0.000000,11,0,120.811988,0.028681,57216200,28785694,0,0,68044,0,1,1 +1773649573.290639,30.41,4,3992.50,60.06,1369.18,2351.42,0.00,0.000000,0.000000,11,0,120.017861,0.040421,57228420,28788847,0,0,68047,0,1,1 +1773649578.295295,30.95,4,3992.50,60.06,1369.08,2351.59,0.00,40808.937081,41481.523613,2841177,2809697,119.652836,0.036807,57240666,28791744,0,0,68049,0,1,1 +1773649583.294973,30.34,4,3992.50,59.86,1376.78,2343.82,0.00,3518664142985.520020,3518664142312.209961,75,0,120.172496,0.038716,57252945,28794764,0,0,68052,0,1,1 +1773649588.295052,30.18,4,3992.50,60.13,1366.54,2354.11,0.00,2.121842,0.000195,258,2,119.763640,0.042883,57265220,28798137,0,0,68054,0,1,1 +1773649593.294472,29.53,4,3992.50,59.97,1372.76,2347.88,0.00,0.000000,0.000000,258,2,118.978162,0.049272,57277331,28801935,0,0,68057,0,1,1 +1773649598.294677,12.63,4,3992.50,56.01,1527.91,2192.77,0.00,40843.161442,41518.709129,2841185,2809736,94.125360,0.039361,57286882,28804997,0,0,68059,0,1,1 +1773649603.294874,1.00,4,3992.50,54.82,1577.84,2146.23,0.00,3518299311946.657227,3518299311945.677246,2839689,2809287,0.003161,0.001591,57286943,28805040,0,0,68062,0,1,1 +1773649608.292318,0.65,4,3992.50,54.40,1594.16,2129.92,0.00,3520236439743.481934,3520236439070.717773,11,0,0.001743,0.001364,57286969,28805059,0,0,68064,0,1,1 +1773649613.295141,0.60,4,3992.50,54.21,1601.81,2122.27,0.00,0.053485,0.000000,75,0,0.000000,0.000030,57286969,28805062,0,0,68067,0,1,1 +1773649618.294453,0.55,4,3992.50,54.20,1602.00,2122.07,0.00,1.604420,10.676664,253,492,0.000000,0.000664,57286969,28805068,0,0,68069,0,1,1 +1773649623.295117,0.60,4,3992.50,54.20,1601.95,2122.12,0.00,3517970099847.624512,3517970099838.608398,11,0,0.000000,0.000030,57286969,28805071,0,0,68072,0,1,1 +1773649628.294571,0.55,4,3992.50,54.20,1601.87,2122.21,0.00,0.180293,0.000000,205,0,0.000000,0.000020,57286969,28805073,0,0,68074,0,1,1 +1773649633.295145,0.85,4,3992.50,54.20,1601.42,2122.15,0.00,40842.226816,41515.832630,2841192,2809880,0.000000,0.000030,57286969,28805076,0,0,68077,0,1,1 +1773649638.292668,0.65,4,3992.50,54.21,1601.18,2122.38,0.00,3520181070666.821777,3520181069992.931641,75,0,0.000031,0.000045,57286971,28805080,0,0,68079,0,1,1 +1773649643.295211,0.55,4,3992.50,54.21,1601.19,2122.38,0.00,3516648645601.971680,0.000000,11,0,0.000033,0.000069,57286974,28805086,0,0,68082,0,1,1 +1773649648.292780,0.55,4,3992.50,54.21,1601.19,2122.38,0.00,0.000000,0.000000,11,0,0.000101,0.000144,57286982,28805096,0,0,68084,0,1,1 +1773649653.291211,0.65,4,3992.50,54.21,1601.19,2122.38,0.00,40850.185673,41523.073088,2839689,2809420,0.000050,0.000092,57286986,28805103,0,0,68087,0,1,1 +1773649658.290637,0.85,4,3992.50,54.22,1600.89,2122.84,0.00,3518841228141.016602,3518841227466.087891,258,2,0.000000,0.000020,57286986,28805105,0,0,68089,0,1,1 +1773649663.294341,0.55,4,3992.50,54.15,1603.39,2120.16,0.00,40804.967606,41479.373444,2839689,2809453,0.000000,0.000030,57286986,28805108,0,0,68092,0,1,1 +1773649668.290871,34.06,4,3992.50,60.51,1354.44,2369.03,0.00,3520880493627.026855,3520880492953.829102,11,0,74.562101,0.032277,57294899,28807369,0,0,68094,0,1,1 +1773649673.294012,32.17,4,3992.50,60.26,1364.32,2359.17,0.00,1.656674,10.668493,253,492,119.293645,0.021737,57307291,28808979,0,0,68097,0,1,1 +1773649678.291101,30.47,4,3992.50,60.44,1357.11,2366.41,0.00,3520487052601.652344,3520487052592.449219,205,0,118.835519,0.017230,57319558,28810218,0,0,68099,0,1,1 +1773649683.290850,29.39,4,3992.50,60.54,1353.23,2370.21,0.00,3518613451304.736328,0.000000,11,0,119.371861,0.030293,57331709,28812560,0,0,68102,0,1,1 +1773649688.294572,30.80,4,3992.50,60.47,1355.93,2367.51,0.00,0.000000,0.000000,11,0,119.296410,0.077511,57344375,28818619,0,0,68104,0,1,1 +1773649693.296550,30.85,4,3992.50,60.38,1361.72,2364.15,0.00,0.180202,0.000000,205,0,119.332997,0.064479,57356910,28823648,0,0,68107,0,1,1 +1773649698.294471,30.52,4,3992.50,60.30,1365.07,2360.81,0.00,3519900873775.797852,0.000000,11,0,119.224176,0.048145,57369300,28827408,0,0,68109,0,1,1 +1773649703.290680,30.85,4,3992.50,60.64,1351.48,2374.36,0.00,40868.353811,41541.934321,2839691,2809695,119.461179,0.032044,57381795,28829909,0,0,68112,0,1,1 +1773649708.294812,18.01,4,3992.50,60.25,1367.05,2358.87,0.00,3515531425935.859375,3515531425263.291992,75,0,116.075761,0.051727,57393914,28833945,0,0,68114,0,1,1 +1773649713.294562,1.05,4,3992.50,53.99,1612.20,2113.69,0.00,2.121981,0.000195,258,2,0.003243,0.001581,57393982,28833996,0,0,68117,0,1,1 +1773649718.290411,0.90,4,3992.50,54.00,1602.07,2114.39,0.00,3521360664338.652344,10.683870,253,492,0.000000,0.000020,57393982,28833998,0,0,68119,0,1,1 +1773649723.290457,0.60,4,3992.50,54.00,1601.84,2114.32,0.00,40845.198141,41510.277041,2841206,2810288,0.000000,0.000030,57393982,28834001,0,0,68122,0,1,1 +1773649728.290344,0.50,4,3992.50,54.00,1601.84,2114.32,0.00,3518516633053.135254,3518516633052.190918,2839703,2809796,0.000000,0.000020,57393982,28834003,0,0,68124,0,1,1 +1773649733.290621,0.55,4,3992.50,54.00,1601.84,2114.32,0.00,3518242335525.283691,3518242334852.163086,11,0,0.000000,0.000030,57393982,28834006,0,0,68127,0,1,1 +1773649738.290431,0.65,4,3992.50,54.00,1601.84,2114.32,0.00,0.000000,0.000000,11,0,0.000000,0.000020,57393982,28834008,0,0,68129,0,1,1 +1773649743.290379,0.65,4,3992.50,54.00,1601.84,2114.31,0.00,40847.662852,41521.879499,2841206,2810301,0.000000,0.000352,57393982,28834013,0,0,68132,0,1,1 +1773649748.294805,0.80,4,3992.50,54.20,1597.55,2121.91,0.00,0.000000,0.037467,2841206,2810314,0.000000,0.000341,57393982,28834017,0,0,68134,0,1,1 +1773649753.290389,0.55,4,3992.50,54.20,1594.46,2121.91,0.00,3521547097694.185059,3521547097028.367676,253,492,0.000025,0.000061,57393984,28834022,0,0,68137,0,1,1 +1773649758.294991,0.65,4,3992.50,54.20,1594.23,2122.14,0.00,3515201396395.172852,3515201396386.164062,11,0,0.000117,0.000160,57393994,28834034,0,0,68139,0,1,1 +1773649763.290390,0.60,4,3992.50,54.20,1594.23,2122.14,0.00,0.053565,0.000000,75,0,0.000000,0.000030,57393994,28834037,0,0,68142,0,1,1 +1773649768.293652,0.60,4,3992.50,54.20,1594.23,2122.14,0.00,3516142952329.437500,0.000000,11,0,0.000000,0.000020,57393994,28834039,0,0,68144,0,1,1 +1773649773.294324,0.60,4,3992.50,54.20,1594.23,2122.14,0.00,40832.019270,41505.274279,2839703,2809870,0.000000,0.000030,57393994,28834042,0,0,68147,0,1,1 +1773649778.291134,30.84,4,3992.50,60.37,1355.27,2363.55,0.00,0.001563,0.067328,2839705,2809935,71.952331,0.040771,57401651,28837027,0,0,68149,0,1,1 +1773649783.293442,34.46,4,3992.50,60.35,1355.84,2362.97,0.00,0.000000,0.127871,2839705,2810052,122.111480,0.041152,57414084,28840212,0,0,68152,0,1,1 +1773649788.295557,30.95,4,3992.50,60.21,1361.43,2357.40,0.00,3516950166345.857910,3516950165672.603516,11,0,120.716049,0.032253,57426467,28842698,0,0,68154,0,1,1 +1773649793.294843,30.06,4,3992.50,60.43,1352.76,2366.10,0.00,40843.334508,41517.027074,2839705,2810075,120.382740,0.031563,57438855,28845178,0,0,68157,0,1,1 +1773649798.291150,30.38,4,3992.50,60.37,1355.23,2363.61,0.00,3521038001076.240723,3521038000411.170410,253,492,120.055239,0.039579,57451108,28848298,0,0,68159,0,1,1 +1773649803.291111,30.95,4,3992.50,60.43,1353.02,2365.77,0.00,0.000000,0.000000,253,492,119.784028,0.065121,57463660,28853366,0,0,68162,0,1,1 +1773649808.294237,31.70,4,3992.50,60.59,1347.48,2372.24,0.00,40810.351012,41474.675139,2839714,2810191,119.906576,0.070741,57476196,28858881,0,0,68164,0,1,1 +1773649813.293049,30.50,4,3992.50,60.16,1364.09,2355.47,0.00,9.728484,10.742299,2841217,2810713,118.790608,0.045638,57488220,28862474,0,0,68167,0,1,1 +1773649818.290366,17.33,4,3992.50,53.92,1608.57,2111.19,0.00,3520326480085.618164,3520326479410.304688,205,0,111.812312,0.048062,57499545,28866212,0,0,68169,0,1,1 +1773649823.292001,1.10,4,3992.50,53.59,1621.62,2098.15,0.00,3517286535627.461914,0.000000,11,0,0.003129,0.001578,57499604,28866254,0,0,68172,0,1,1 +1773649828.295086,0.65,4,3992.50,53.60,1621.23,2098.54,0.00,0.000000,0.000000,11,0,0.000000,0.000020,57499604,28866256,0,0,68174,0,1,1 +1773649833.291076,0.80,4,3992.50,53.60,1621.34,2098.43,0.00,40880.188726,41555.498123,2841233,2810793,0.000000,0.000030,57499604,28866259,0,0,68177,0,1,1 +1773649838.294903,0.85,4,3992.50,53.93,1607.96,2111.63,0.00,0.000000,0.062452,2841233,2810818,0.000307,0.000574,57499611,28866272,0,0,68179,0,1,1 +1773649843.293845,0.60,4,3992.50,53.96,1607.03,2112.61,0.00,3519181857181.922852,3519181856506.769531,205,0,0.000000,0.000030,57499611,28866275,0,0,68182,0,1,1 +1773649848.294560,0.50,4,3992.50,53.96,1607.04,2112.61,0.00,3517934114754.016602,0.000000,75,0,0.000205,0.000552,57499618,28866288,0,0,68184,0,1,1 +1773649853.295067,0.65,4,3992.50,53.96,1606.82,2112.83,0.00,40843.210827,41518.077041,2841233,2810862,0.000008,0.000038,57499619,28866292,0,0,68187,0,1,1 +1773649858.294994,0.55,4,3992.50,53.96,1606.82,2112.82,0.00,3518488431708.604980,3518488431033.660156,75,0,0.000205,0.000552,57499626,28866305,0,0,68189,0,1,1 +1773649863.294768,0.60,4,3992.50,53.96,1606.82,2112.82,0.00,0.126764,0.000000,205,0,0.000000,0.000030,57499626,28866308,0,0,68192,0,1,1 +1773649868.290362,0.85,4,3992.50,54.25,1595.80,2124.10,0.00,40873.514126,41548.375637,2839730,2810407,0.000126,0.000175,57499636,28866320,0,0,68194,0,1,1 +1773649873.294657,0.70,4,3992.50,54.12,1600.67,2118.97,0.00,9.717825,10.678718,2841233,2810915,0.000000,0.000030,57499636,28866323,0,0,68197,0,1,1 +1773649878.292637,0.45,4,3992.50,54.12,1600.67,2118.97,0.00,3519858605912.087402,3519858605236.766113,11,0,0.000000,0.000020,57499636,28866325,0,0,68199,0,1,1 +1773649883.295277,0.65,4,3992.50,54.12,1600.67,2118.97,0.00,0.000000,0.000000,11,0,0.000031,0.000686,57499638,28866333,0,0,68202,0,1,1 +1773649888.291272,27.53,4,3992.50,60.62,1346.32,2373.21,0.00,0.000000,0.000000,11,0,60.748985,0.049141,57506359,28869944,0,0,68204,0,1,1 +1773649893.294449,33.55,4,3992.50,60.63,1345.62,2373.99,0.00,40821.458640,41496.209487,2841235,2811084,123.912539,0.054983,57519230,28874105,0,0,68207,0,1,1 +1773649898.293562,29.53,4,3992.50,60.45,1352.58,2366.90,0.00,3519062148546.692383,3519062147871.392578,11,0,120.358576,0.019510,57531139,28875499,0,0,68209,0,1,1 +1773649903.295069,27.16,4,3992.50,61.12,1326.50,2393.05,0.00,40825.367934,41499.435603,2839732,2810607,111.494989,0.022877,57541930,28877305,0,0,68212,0,1,1 +1773649908.295057,22.96,4,3992.50,60.63,1345.66,2373.89,0.00,0.000000,0.019629,2839732,2810617,96.979044,0.023382,57550878,28879112,0,0,68214,0,1,1 +1773649913.290668,29.76,4,3992.50,60.35,1360.84,2362.93,0.00,3521528777320.816895,3521528776645.933594,11,0,119.464685,0.028234,57562697,28881236,0,0,68217,0,1,1 +1773649918.291593,27.86,4,3992.50,60.78,1344.43,2379.54,0.00,0.000000,0.000000,11,0,115.266862,0.034200,57573971,28883905,0,0,68219,0,1,1 +1773649923.294930,28.86,4,3992.50,61.50,1315.92,2407.85,0.00,0.180153,0.000000,205,0,113.342433,0.023921,57584605,28885804,0,0,68222,0,1,1 +1773649928.291146,19.76,4,3992.50,60.95,1337.64,2386.18,0.00,1.478561,10.683282,253,492,90.356554,0.021462,57593172,28887508,0,0,68224,0,1,1 +1773649933.294457,7.08,4,3992.50,57.35,1478.64,2245.21,0.00,3516108261832.873535,3516108261823.682129,205,0,73.463941,0.017837,57599927,28888900,0,0,68227,0,1,1 +1773649938.291568,0.75,4,3992.50,55.61,1546.67,2177.19,0.00,40861.189896,41536.367720,2839739,2810735,0.001696,0.000762,57599965,28888929,0,0,68229,0,1,1 +1773649943.294877,0.95,4,3992.50,54.73,1581.05,2142.80,0.00,3516110059436.368164,3516110058771.218750,253,492,0.002251,0.001084,57600009,28888961,0,0,68232,0,1,1 +1773649948.292658,0.70,4,3992.50,54.49,1590.64,2133.21,0.00,0.000000,0.000000,253,492,0.000008,0.000028,57600010,28888964,0,0,68234,0,1,1 +1773649953.294666,0.70,4,3992.50,54.47,1591.25,2132.60,0.00,3517024626890.021973,3517024626880.955078,75,0,0.000025,0.000704,57600012,28888973,0,0,68237,0,1,1 +1773649958.295211,0.70,4,3992.50,54.47,1591.11,2132.71,0.00,1.604024,10.674031,253,492,0.000000,0.000020,57600012,28888975,0,0,68239,0,1,1 +1773649963.295104,1.20,4,3992.50,54.43,1595.55,2131.19,0.00,3518512642977.797363,3518512642968.780273,11,0,0.000000,0.000030,57600012,28888978,0,0,68242,0,1,1 +1773649968.293588,0.65,4,3992.50,54.43,1595.59,2131.15,0.00,40850.218951,41525.089435,2839745,2810853,0.000000,0.000020,57600012,28888980,0,0,68244,0,1,1 +1773649973.295232,0.65,4,3992.50,54.44,1595.35,2131.39,0.00,3517280484332.396484,3517280483655.777832,258,2,0.000000,0.000030,57600012,28888983,0,0,68247,0,1,1 +1773649978.294384,0.60,4,3992.50,54.44,1595.13,2131.61,0.00,3519033661157.161621,3519033661159.337402,11,0,0.000000,0.000020,57600012,28888985,0,0,68249,0,1,1 +1773649983.293854,0.70,4,3992.50,54.43,1595.73,2131.00,0.00,0.000000,0.000000,11,0,0.000025,0.000061,57600014,28888990,0,0,68252,0,1,1 +1773649988.291230,0.95,4,3992.50,54.43,1600.07,2131.00,0.00,1.658585,10.680799,253,492,0.000109,0.000152,57600023,28889001,0,0,68254,0,1,1 +1773649993.291373,0.80,4,3992.50,54.41,1600.74,2130.22,0.00,40844.728822,41511.446342,2841248,2811376,0.000008,0.000038,57600024,28889005,0,0,68257,0,1,1 +1773649998.294642,0.60,4,3992.50,54.41,1600.50,2130.45,0.00,0.000000,0.015615,2841248,2811393,0.000000,0.000020,57600024,28889007,0,0,68259,0,1,1 +1773650003.295209,25.53,4,3992.50,60.39,1366.47,2364.44,0.00,3518038553159.338867,3518038552483.645508,11,0,45.866027,0.026672,57605052,28890853,0,0,68262,0,1,1 +1773650008.290333,32.44,4,3992.50,60.61,1357.76,2373.07,0.00,1.659333,10.685615,253,492,119.682805,0.029917,57617306,28893113,0,0,68264,0,1,1 +1773650013.290366,28.67,4,3992.50,60.47,1363.51,2367.38,0.00,3518414355373.118652,3518414355363.920898,205,0,118.762731,0.018983,57629467,28894573,0,0,68267,0,1,1 +1773650018.290754,29.31,4,3992.50,60.42,1365.22,2365.69,0.00,3518163743422.562500,0.000000,75,0,119.353492,0.019132,57641608,28895991,0,0,68269,0,1,1 +1773650023.294288,29.33,4,3992.50,60.94,1340.58,2385.75,0.00,1.603066,10.667656,253,492,119.078201,0.021013,57653746,28897651,0,0,68272,0,1,1 +1773650028.291609,29.29,4,3992.50,60.24,1367.85,2358.35,0.00,40867.803947,41535.106221,2841250,2811613,119.827627,0.019073,57665874,28899090,0,0,68274,0,1,1 +1773650033.290359,29.61,4,3992.50,60.34,1363.62,2362.62,0.00,3519316667796.208008,3519316667129.097168,253,492,118.596062,0.031096,57677988,28901516,0,0,68277,0,1,1 +1773650038.295022,28.92,4,3992.50,60.39,1361.66,2364.57,0.00,0.000000,0.000000,253,492,119.868937,0.067116,57690472,28906760,0,0,68279,0,1,1 +1773650043.294305,24.10,4,3992.50,60.01,1376.97,2349.33,0.00,3518941785017.758301,3518941785008.559082,205,0,118.794142,0.062903,57702816,28911689,0,0,68282,0,1,1 +1773650048.294973,1.56,4,3992.50,56.18,1523.26,2199.46,0.00,40842.052748,41518.276890,2841261,2811685,25.635919,0.010948,57705483,28912469,0,0,68284,0,1,1 +1773650053.290450,0.65,4,3992.50,54.90,1573.39,2149.39,0.00,3521623078307.381836,3521623077630.635254,11,0,0.000000,0.000030,57705483,28912472,0,0,68287,0,1,1 +1773650058.290610,0.70,4,3992.50,54.28,1597.57,2125.20,0.00,1.657662,10.674854,253,492,0.000000,0.000020,57705483,28912474,0,0,68289,0,1,1 +1773650063.290377,0.60,4,3992.50,54.16,1602.34,2120.44,0.00,3518600913196.649414,3518600913187.451172,205,0,0.000000,0.000030,57705483,28912477,0,0,68292,0,1,1 +1773650068.290366,0.75,4,3992.50,54.14,1602.95,2119.83,0.00,3518445127495.677734,0.000000,75,0,0.000000,0.000020,57705483,28912479,0,0,68294,0,1,1 +1773650073.294318,0.60,4,3992.50,53.99,1609.13,2113.64,0.00,0.126658,0.000000,205,0,0.000000,0.000030,57705483,28912482,0,0,68297,0,1,1 +1773650078.290821,1.00,4,3992.50,54.23,1601.81,2123.21,0.00,3520899888930.912598,0.000000,11,0,0.000000,0.000020,57705483,28912484,0,0,68299,0,1,1 +1773650083.290383,0.65,4,3992.50,54.04,1609.21,2115.82,0.00,1.657860,10.676130,253,492,0.000000,0.000674,57705483,28912491,0,0,68302,0,1,1 +1773650088.294385,0.95,4,3992.50,54.02,1610.02,2115.00,0.00,40803.650467,41469.529024,2839758,2811306,0.000000,0.000020,57705483,28912493,0,0,68304,0,1,1 +1773650093.294562,0.80,4,3992.50,53.96,1612.43,2112.60,0.00,3518313172134.161133,3518313171458.702148,75,0,0.000126,0.000185,57705493,28912506,0,0,68307,0,1,1 +1773650098.290386,0.60,4,3992.50,53.96,1612.43,2112.60,0.00,2.123648,0.000195,258,2,0.000016,0.000036,57705495,28912510,0,0,68309,0,1,1 +1773650103.290364,0.70,4,3992.50,53.96,1612.56,2112.46,0.00,3518452878662.765137,3518452878664.940918,11,0,0.000000,0.000030,57705495,28912513,0,0,68312,0,1,1 +1773650108.294576,0.95,4,3992.50,54.15,1604.89,2120.28,0.00,40813.336209,41489.221610,2841263,2811872,0.000000,0.000020,57705495,28912515,0,0,68314,0,1,1 +1773650113.293823,27.74,4,3992.50,59.94,1378.05,2346.93,0.00,3518966925986.458008,3518966925318.920410,253,492,69.311346,0.031393,57712811,28914786,0,0,68317,0,1,1 +1773650118.294537,35.38,4,3992.50,60.08,1372.60,2352.34,0.00,0.000000,0.000000,253,492,120.755654,0.022205,57725443,28916403,0,0,68319,0,1,1 +1773650123.294538,31.45,4,3992.50,60.26,1365.47,2359.46,0.00,3518437009034.373535,3518437009025.302734,75,0,120.370972,0.026092,57737918,28918363,0,0,68322,0,1,1 +1773650128.291600,31.32,4,3992.50,60.16,1369.58,2355.39,0.00,3520505677769.513672,0.000000,11,0,120.038673,0.025564,57750236,28920326,0,0,68324,0,1,1 +1773650133.293681,30.15,4,3992.50,60.19,1368.24,2356.73,0.00,40821.010944,41496.337337,2839763,2811551,119.638171,0.017426,57762368,28921672,0,0,68327,0,1,1 +1773650138.294429,29.94,4,3992.50,60.21,1367.79,2357.17,0.00,9.724718,10.705138,2841266,2812051,119.619975,0.020100,57774456,28923214,0,0,68329,0,1,1 +1773650143.294116,30.04,4,3992.50,60.62,1351.54,2373.44,0.00,3518656777962.610352,3518656777294.998535,253,492,114.224455,0.026868,57785652,28925330,0,0,68332,0,1,1 +1773650148.290767,23.73,4,3992.50,60.85,1342.79,2382.21,0.00,40863.722392,41530.959047,2839763,2811574,93.645305,0.020820,57794025,28926932,0,0,68334,0,1,1 +1773650153.294476,23.64,4,3992.50,61.15,1330.86,2394.19,0.00,3515829170268.313965,3515829169590.833984,258,2,113.955311,0.024144,57804135,28928852,0,0,68337,0,1,1 +1773650158.290451,1.26,4,3992.50,55.56,1549.76,2175.42,0.00,3521271718525.414062,3521271718527.411133,205,0,33.834662,0.009232,57807224,28929494,0,0,68339,0,1,1 +1773650163.294442,1.80,4,3992.50,54.10,1606.74,2118.32,0.00,40815.106990,41491.663333,2841277,2812181,0.003084,0.001416,57807280,28929532,0,0,68342,0,1,1 +1773650168.295069,1.00,4,3992.50,53.96,1612.30,2112.46,0.00,3517995959979.210449,3517995959302.379395,11,0,0.000000,0.000020,57807280,28929534,0,0,68344,0,1,1 +1773650173.294799,0.70,4,3992.50,53.96,1611.70,2112.46,0.00,40840.348634,41516.480987,2839774,2811775,0.000000,0.000674,57807280,28929541,0,0,68347,0,1,1 +1773650178.290383,0.70,4,3992.50,53.95,1611.70,2112.45,0.00,3521547615828.349609,3521547615160.681641,253,492,0.000000,0.000020,57807280,28929543,0,0,68349,0,1,1 +1773650183.291728,0.75,4,3992.50,53.77,1619.09,2105.06,0.00,0.000000,0.000000,253,492,0.000031,0.000042,57807282,28929547,0,0,68352,0,1,1 +1773650188.290393,0.50,4,3992.50,53.77,1618.88,2105.27,0.00,3519376845193.814453,3519376845184.794922,11,0,0.000000,0.000032,57807282,28929550,0,0,68354,0,1,1 +1773650193.294379,0.60,4,3992.50,53.58,1626.51,2097.64,0.00,0.000000,0.000000,11,0,0.000346,0.000617,57807292,28929567,0,0,68357,0,1,1 +1773650198.290413,0.95,4,3992.50,54.00,1610.06,2114.05,0.00,0.180417,0.000000,205,0,0.001110,0.000628,57807314,28929582,0,0,68359,0,1,1 +1773650203.290390,0.50,4,3992.50,53.92,1613.09,2111.05,0.00,1.995126,0.000195,258,2,0.000031,0.000055,57807316,28929587,0,0,68362,0,1,1 +1773650208.290419,0.55,4,3992.50,53.94,1612.35,2111.78,0.00,3518416574071.500977,3518416574073.676758,11,0,0.001835,0.001475,57807349,28929613,0,0,68364,0,1,1 +1773650213.290387,0.50,4,3992.50,53.94,1612.35,2111.78,0.00,0.180275,0.000000,205,0,0.000000,0.000030,57807349,28929616,0,0,68367,0,1,1 +1773650218.292176,0.70,4,3992.50,53.94,1612.35,2111.78,0.00,3517178511988.320312,0.000000,11,0,0.000000,0.000020,57807349,28929618,0,0,68369,0,1,1 +1773650223.290318,25.13,4,3992.50,60.27,1364.49,2359.59,0.00,40853.337697,41529.893556,2839777,2811892,56.706791,0.029968,57813473,28931665,0,0,68372,0,1,1 +1773650228.293630,33.52,4,3992.50,60.13,1369.91,2354.13,0.00,3516107956788.587891,3516107956121.742676,253,492,122.641444,0.023349,57826202,28933402,0,0,68374,0,1,1 +1773650233.293743,29.41,4,3992.50,59.86,1380.39,2343.67,0.00,3518358002198.853516,3518358002189.836426,11,0,121.623699,0.046397,57838711,28937009,0,0,68377,0,1,1 +1773650238.290645,29.28,4,3992.50,59.82,1382.23,2341.91,0.00,0.000000,0.000000,11,0,120.245813,0.046808,57850889,28940610,0,0,68379,0,1,1 +1773650243.295213,28.96,4,3992.50,59.86,1380.38,2343.76,0.00,0.180109,0.000000,205,0,120.061740,0.042638,57863179,28943929,0,0,68382,0,1,1 +1773650248.291255,29.51,4,3992.50,59.94,1377.32,2346.80,0.00,40880.056119,41558.237731,2841280,2812582,120.263162,0.032041,57875440,28946430,0,0,68384,0,1,1 +1773650253.290291,28.61,4,3992.50,59.82,1382.17,2341.91,0.00,3519115928783.431152,3519115928103.660156,258,2,119.590573,0.027463,57887723,28948562,0,0,68387,0,1,1 +1773650258.291145,29.65,4,3992.50,59.85,1380.67,2343.44,0.00,3517836608636.832031,3517836608639.007324,11,0,118.748306,0.038938,57900001,28951585,0,0,68389,0,1,1 +1773650263.290481,20.58,4,3992.50,59.88,1373.77,2344.44,0.00,0.053523,0.000000,75,0,120.181217,0.032675,57912259,28954105,0,0,68392,0,1,1 +1773650268.290450,0.85,4,3992.50,54.39,1588.88,2129.34,0.00,3518459024032.787109,0.000000,11,0,5.408607,0.001521,57912838,28954215,0,0,68394,0,1,1 +1773650273.294442,1.00,4,3992.50,54.01,1603.57,2114.64,0.00,40805.714806,41481.993840,2839789,2812190,0.003084,0.001428,57912894,28954254,0,0,68397,0,1,1 +1773650278.290376,0.70,4,3992.50,53.98,1604.59,2113.62,0.00,9.734087,10.716918,2841292,2812722,0.000000,0.000020,57912894,28954256,0,0,68399,0,1,1 +1773650283.290378,0.70,4,3992.50,53.98,1604.82,2113.39,0.00,3518435923940.674316,3518435923939.728027,2839789,2812231,0.000000,0.000030,57912894,28954259,0,0,68402,0,1,1 +1773650288.294739,0.85,4,3992.50,53.99,1611.24,2113.81,0.00,3515371034711.792480,3515371034035.347168,205,0,0.000000,0.000020,57912894,28954261,0,0,68404,0,1,1 +1773650293.294751,0.60,4,3992.50,53.88,1615.68,2109.38,0.00,40838.013200,41515.131093,2839789,2812286,0.000000,0.000030,57912894,28954264,0,0,68407,0,1,1 +1773650298.294561,0.60,4,3992.50,53.90,1614.94,2110.11,0.00,3518571135529.930664,3518571134852.785645,205,0,0.000000,0.000020,57912894,28954266,0,0,68409,0,1,1 +1773650303.292783,0.55,4,3992.50,53.90,1614.94,2110.11,0.00,1.477967,10.678991,253,492,0.000000,0.000674,57912894,28954273,0,0,68412,0,1,1 +1773650308.295304,0.55,4,3992.50,53.90,1614.70,2110.36,0.00,0.517415,3516664685381.163086,258,2,0.000000,0.000020,57912894,28954275,0,0,68414,0,1,1 +1773650313.294785,0.55,4,3992.50,53.90,1614.71,2110.35,0.00,40850.076793,41530.227362,2841292,2812795,0.000025,0.000061,57912896,28954280,0,0,68417,0,1,1 +1773650318.290412,0.80,4,3992.50,54.06,1608.57,2116.45,0.00,3521517351226.022949,3521517350556.550293,253,492,0.000117,0.000160,57912906,28954292,0,0,68419,0,1,1 +1773650323.290623,0.60,4,3992.50,53.92,1613.90,2111.07,0.00,3518288796905.222168,3518288796896.205566,11,0,0.000000,0.000030,57912906,28954295,0,0,68422,0,1,1 +1773650328.294386,0.75,4,3992.50,53.92,1613.90,2111.07,0.00,0.053475,0.000000,75,0,0.000000,0.000020,57912906,28954297,0,0,68424,0,1,1 +1773650333.292195,24.04,4,3992.50,60.27,1365.10,2359.83,0.00,3519979578046.745117,0.000000,11,0,41.883774,0.022211,57917501,28955788,0,0,68427,0,1,1 +1773650338.294134,32.38,4,3992.50,59.97,1376.80,2348.12,0.00,1.657072,10.671056,253,492,118.322148,0.024458,57929791,28957611,0,0,68429,0,1,1 +1773650343.294888,29.46,4,3992.50,60.02,1374.95,2350.07,0.00,3517907142594.180176,3517907142585.164551,11,0,120.160768,0.050940,57942220,28961481,0,0,68432,0,1,1 +1773650348.290539,29.02,4,3992.50,59.93,1378.55,2346.38,0.00,0.000000,0.000000,11,0,118.274064,0.041121,57954442,28964671,0,0,68434,0,1,1 +1773650353.293260,29.91,4,3992.50,60.17,1368.59,2355.77,0.00,1.656813,10.669390,253,492,120.119274,0.072571,57966991,28970315,0,0,68437,0,1,1 +1773650358.295534,29.27,4,3992.50,60.18,1367.82,2356.31,0.00,3516837169651.916504,3516837169642.903809,11,0,118.734418,0.082704,57979613,28976745,0,0,68439,0,1,1 +1773650363.293608,29.49,4,3992.50,60.05,1373.16,2351.05,0.00,0.180343,0.000000,205,0,119.628044,0.067357,57992154,28981966,0,0,68442,0,1,1 +1773650368.290345,29.41,4,3992.50,60.54,1353.84,2370.38,0.00,40874.523381,41553.448484,2841295,2813091,119.667228,0.088288,58004822,28988836,0,0,68444,0,1,1 +1773650373.295149,4.89,4,3992.50,61.07,1333.10,2391.18,0.00,3515060468080.427734,3515060467402.596680,205,0,13.033684,0.009480,58006250,28989518,0,0,68447,0,1,1 +1773650378.290586,1.11,4,3992.50,61.12,1331.64,2392.79,0.00,40875.424524,41553.617262,2839792,2812623,0.000700,0.000020,58006270,28989520,0,0,68449,0,1,1 +1773650383.290870,0.86,4,3992.50,61.07,1333.30,2391.12,0.00,0.000000,0.015917,2839792,2812644,0.001280,0.000030,58006288,28989523,0,0,68452,0,1,1 +1773650388.294647,1.16,4,3992.50,61.12,1331.58,2392.84,0.00,3515781491556.373047,3515781490879.475098,11,0,0.000336,0.000020,58006290,28989525,0,0,68454,0,1,1 +1773650393.294883,0.86,4,3992.50,61.07,1333.29,2391.13,0.00,0.180265,0.000000,205,0,0.000019,0.000030,58006291,28989528,0,0,68457,0,1,1 +1773650398.294373,0.81,4,3992.50,61.10,1332.09,2392.34,0.00,40852.009501,41530.689471,2841295,2813184,0.000726,0.000020,58006303,28989530,0,0,68459,0,1,1 +1773650403.292546,0.86,4,3992.50,61.11,1331.68,2392.75,0.00,3519723643219.672363,3519723642538.817871,258,2,0.000039,0.000073,58006306,28989536,0,0,68462,0,1,1 +1773650408.290386,1.01,4,3992.50,61.31,1329.15,2400.41,0.00,40863.518400,41544.504266,2841304,2813265,0.000033,0.000059,58006309,28989541,0,0,68464,0,1,1 +1773650413.291307,1.06,4,3992.50,61.14,1335.70,2393.86,0.00,3517788998526.791992,3517788997848.400391,11,0,0.003499,0.002053,58006371,28989590,0,0,68467,0,1,1 +1773650418.290864,1.01,4,3992.50,61.15,1335.48,2394.08,0.00,0.053520,0.000000,75,0,0.004351,0.002458,58006446,28989643,0,0,68469,0,1,1 +1773650423.292993,9.95,4,3992.50,60.28,1369.47,2359.96,0.00,40830.603794,41508.897807,2841304,2813310,42.948855,0.029843,58012029,28991716,0,0,68472,0,1,1 +1773650428.294810,12.00,4,3992.50,55.53,1555.62,2173.93,0.00,3517159035255.473633,3517159034577.190918,11,0,94.625936,0.065022,58022114,28996740,0,0,68474,0,1,1 +1773650433.294896,0.65,4,3992.50,54.58,1592.80,2136.76,0.00,0.000000,0.000000,11,0,0.000174,0.000674,58022125,28996747,0,0,68477,0,1,1 +1773650438.290464,1.00,4,3992.50,54.24,1605.40,2123.66,0.00,0.000000,0.000000,11,0,0.000061,0.000020,58022129,28996749,0,0,68479,0,1,1 +1773650443.290388,0.75,4,3992.50,54.11,1610.62,2118.44,0.00,1.657740,10.675359,253,492,0.000075,0.000030,58022134,28996752,0,0,68482,0,1,1 +1773650448.290451,0.70,4,3992.50,54.00,1614.79,2114.27,0.00,40836.217480,41504.899553,2839809,2812925,0.000042,0.000020,58022137,28996754,0,0,68484,0,1,1 +1773650453.294822,0.85,4,3992.50,53.98,1615.73,2113.32,0.00,3515363912470.302246,3515363911802.195801,253,492,0.000198,0.000030,58022150,28996757,0,0,68487,0,1,1 +1773650458.294755,0.65,4,3992.50,53.92,1617.82,2111.23,0.00,40837.367217,41506.091417,2839818,2812953,0.000154,0.000020,58022160,28996759,0,0,68489,0,1,1 +1773650463.294643,0.85,4,3992.50,53.94,1617.16,2111.89,0.00,3518515841355.285645,3518515840677.484375,75,0,0.001399,0.001457,58022178,28996784,0,0,68492,0,1,1 +1773650468.294565,0.95,4,3992.50,53.94,1617.35,2111.84,0.00,3518492410510.574707,0.000000,11,0,0.000075,0.000020,58022183,28996786,0,0,68494,0,1,1 +1773650473.290389,0.60,4,3992.50,53.97,1613.89,2112.94,0.00,0.053560,0.000000,75,0,0.000028,0.000030,58022185,28996789,0,0,68497,0,1,1 +1773650478.290446,0.75,4,3992.50,53.97,1613.66,2113.17,0.00,40837.957442,41515.903702,2839818,2813097,0.000019,0.000020,58022186,28996791,0,0,68499,0,1,1 +1773650483.290878,0.60,4,3992.50,53.97,1613.66,2113.17,0.00,3518132932576.167480,3518132931896.150879,258,2,0.000018,0.000030,58022187,28996794,0,0,68502,0,1,1 +1773650488.290446,0.60,4,3992.50,53.78,1621.08,2105.75,0.00,0.000000,0.000000,258,2,0.000000,0.000020,58022187,28996796,0,0,68504,0,1,1 +1773650493.292117,0.75,4,3992.50,53.78,1621.08,2105.75,0.00,3517261272368.049805,3517261272370.224609,11,0,0.000000,0.000030,58022187,28996799,0,0,68507,0,1,1 +1773650498.290583,0.70,4,3992.50,53.78,1621.08,2105.74,0.00,1.658224,10.678471,253,492,0.000100,0.000664,58022194,28996805,0,0,68509,0,1,1 +1773650503.294805,1.00,4,3992.50,53.80,1623.96,2106.45,0.00,0.000000,0.000000,253,492,0.000147,0.000030,58022205,28996808,0,0,68512,0,1,1 +1773650508.291553,0.85,4,3992.50,53.80,1623.98,2106.44,0.00,40863.404452,41532.826094,2839818,2813185,0.000234,0.000198,58022221,28996819,0,0,68514,0,1,1 +1773650513.294496,2.45,4,3992.50,53.80,1624.13,2106.28,0.00,3516366913353.945801,3516366912676.340820,11,0,0.000083,0.000139,58022227,28996828,0,0,68517,0,1,1 +1773650518.294961,3.06,4,3992.50,54.45,1598.57,2131.84,0.00,40846.078371,41523.423080,2841819,2813832,0.000075,0.000121,58022232,28996835,0,0,68519,0,1,1 +1773650523.294367,1.20,4,3992.50,54.12,1611.41,2118.98,0.00,3518855600079.125977,3518855599401.637207,11,0,0.002000,0.001373,58022255,28996856,0,0,68522,0,1,1 +1773650528.290537,41.61,4,3992.50,60.49,1360.18,2368.15,0.00,0.180412,0.000000,205,0,105.834145,0.037495,58033473,28999568,0,0,68524,0,1,1 +1773650533.290374,32.33,4,3992.50,60.26,1368.77,2359.37,0.00,3518551962936.738770,0.000000,11,0,122.178106,0.024375,58046277,29001412,0,0,68527,0,1,1 +1773650538.293668,29.36,4,3992.50,60.31,1366.75,2361.45,0.00,1.656623,10.668167,253,493,121.690895,0.029497,58058889,29003702,0,0,68529,0,1,1 +1773650543.290941,29.49,4,3992.50,60.49,1359.82,2368.37,0.00,3520357212409.261719,3520357212400.239746,11,0,120.612530,0.032969,58071406,29006211,0,0,68532,0,1,1 +1773650548.294311,29.66,4,3992.50,60.27,1368.55,2359.70,0.00,2.173926,0.000195,258,2,119.908783,0.028503,58083625,29008447,0,0,68534,0,1,1 +1773650553.290351,4.85,4,3992.50,61.09,1336.27,2392.00,0.00,3521225738672.239258,3521225738674.416016,11,0,13.321145,0.002675,58085039,29008660,0,0,68537,0,1,1 +1773650558.290905,1.16,4,3992.50,61.28,1331.98,2399.36,0.00,2.175150,0.000195,258,2,0.000325,0.000020,58085052,29008662,0,0,68539,0,1,1 +1773650563.292304,0.71,4,3992.50,61.33,1330.02,2401.32,0.00,3517453207679.250000,10.672015,253,493,0.000981,0.000673,58085068,29008669,0,0,68542,0,1,1 +1773650568.294972,0.91,4,3992.50,61.33,1330.02,2401.32,0.00,40826.435583,41495.045163,2841822,2814262,0.000336,0.000020,58085070,29008671,0,0,68544,0,1,1 +1773650573.291085,0.86,4,3992.50,61.34,1329.80,2401.54,0.00,0.000000,0.005473,2841822,2814267,0.000118,0.000030,58085077,29008674,0,0,68547,0,1,1 +1773650578.295116,0.76,4,3992.50,61.34,1329.57,2401.77,0.00,3515602773062.837402,3515602772385.340332,75,0,0.000483,0.000020,58085090,29008676,0,0,68549,0,1,1 +1773650583.294952,0.81,4,3992.50,61.34,1329.57,2401.77,0.00,3518552274690.765137,0.000000,11,0,0.000584,0.001411,58085110,29008713,0,0,68552,0,1,1 +1773650588.294695,1.16,4,3992.50,61.44,1325.91,2405.43,0.00,0.053518,0.000000,75,0,0.000087,0.000101,58085116,29008721,0,0,68554,0,1,1 +1773650593.290962,18.83,4,3992.50,60.77,1351.98,2379.31,0.00,0.126853,0.000000,205,0,75.018776,0.019820,58092534,29010116,0,0,68557,0,1,1 +1773650598.290740,20.71,4,3992.50,60.95,1345.01,2386.21,0.00,3518593437246.508301,0.000000,11,0,85.103341,0.020812,58100229,29011652,0,0,68559,0,1,1 +1773650603.293578,29.52,4,3992.50,60.91,1346.36,2384.94,0.00,40826.706646,41504.382904,2841822,2814358,130.032966,0.042773,58113299,29014860,0,0,68562,0,1,1 +1773650608.292980,21.00,4,3992.50,57.27,1488.97,2242.38,0.00,3518857772880.281250,3518857772202.139160,11,0,133.640612,0.042094,58126133,29018118,0,0,68564,0,1,1 +1773650613.290473,0.60,4,3992.50,55.23,1568.90,2162.45,0.00,0.000000,0.000000,11,0,0.000142,0.000030,58126142,29018121,0,0,68567,0,1,1 +1773650618.290500,1.05,4,3992.50,54.68,1590.72,2140.73,0.00,1.657706,10.675138,253,493,0.000093,0.000020,58126148,29018123,0,0,68569,0,1,1 +1773650623.294719,0.95,4,3992.50,54.30,1605.30,2126.04,0.00,3515470761141.768066,3515470761132.758789,11,0,0.000702,0.000030,58126154,29018126,0,0,68572,0,1,1 +1773650628.295330,0.65,4,3992.50,54.11,1612.70,2118.65,0.00,0.053509,0.000000,75,0,0.000403,0.000020,58126169,29018128,0,0,68574,0,1,1 +1773650633.294334,0.70,4,3992.50,54.08,1613.83,2117.52,0.00,3519137760821.882812,0.000000,11,0,0.000205,0.000674,58126172,29018135,0,0,68577,0,1,1 +1773650638.295248,0.85,4,3992.50,54.09,1613.59,2117.75,0.00,1.657412,10.673246,253,493,0.000223,0.000020,58126176,29018137,0,0,68579,0,1,1 +1773650643.290361,0.75,4,3992.50,54.11,1612.86,2118.49,0.00,40888.243315,41558.120372,2841828,2814469,0.001484,0.001866,58126197,29018169,0,0,68582,0,1,1 +1773650648.290744,0.65,4,3992.50,54.11,1612.86,2118.48,0.00,3518167779817.634766,3518167779137.271973,258,2,0.000050,0.000082,58126201,29018175,0,0,68584,0,1,1 +1773650653.293179,1.40,4,3992.50,54.29,1597.18,2125.56,0.00,3516724739067.648438,10.669804,253,493,0.003166,0.001547,58126263,29018224,0,0,68587,0,1,1 +1773650658.290741,0.70,4,3992.50,54.29,1597.19,2125.56,0.00,3520153440682.718262,3520153440673.696777,11,0,0.000000,0.000020,58126263,29018226,0,0,68589,0,1,1 +1773650663.294688,0.80,4,3992.50,54.29,1597.20,2125.56,0.00,0.053473,0.000000,75,0,0.000050,0.000080,58126267,29018233,0,0,68592,0,1,1 +1773650668.295054,0.65,4,3992.50,54.29,1597.20,2125.56,0.00,3518179346038.886230,0.000000,11,0,0.000000,0.000020,58126267,29018235,0,0,68594,0,1,1 +1773650673.294826,0.75,4,3992.50,54.26,1598.48,2124.28,0.00,0.000000,0.000000,11,0,0.000000,0.000030,58126267,29018238,0,0,68597,0,1,1 +1773650678.290374,0.65,4,3992.50,54.26,1598.48,2124.27,0.00,2.177329,0.000195,258,2,0.000000,0.000020,58126267,29018240,0,0,68599,0,1,1 +1773650683.294421,1.00,4,3992.50,54.39,1590.87,2129.55,0.00,40805.065359,41484.198155,2840330,2814110,0.000000,0.000030,58126267,29018243,0,0,68602,0,1,1 +1773650688.291247,0.95,4,3992.50,54.20,1598.26,2122.16,0.00,3520672302765.197266,3520672302087.259766,11,0,0.000236,0.000020,58126281,29018245,0,0,68604,0,1,1 +1773650693.293762,0.75,4,3992.50,54.21,1597.83,2122.59,0.00,40819.739853,41496.933140,2840330,2814138,0.000061,0.000030,58126286,29018248,0,0,68607,0,1,1 +1773650698.291200,0.60,4,3992.50,54.21,1597.83,2122.59,0.00,0.000000,0.001563,2840330,2814140,0.000045,0.000720,58126289,29018257,0,0,68609,0,1,1 +1773650703.294782,0.80,4,3992.50,54.21,1597.95,2122.47,0.00,0.021859,0.021079,2840331,2814146,0.000111,0.000247,58126298,29018273,0,0,68612,0,1,1 +1773650708.293932,1.20,4,3992.50,54.27,1593.77,2124.88,0.00,3519035319592.565918,3519035318912.740723,258,2,0.000015,0.000059,58126299,29018277,0,0,68614,0,1,1 +1773650713.294559,0.75,4,3992.50,54.27,1593.02,2124.88,0.00,0.000000,0.000000,258,2,0.000060,0.000124,58126303,29018285,0,0,68617,0,1,1 +1773650718.294558,1.65,4,3992.50,53.89,1607.88,2110.00,0.00,3518437857681.145508,3518437857683.141113,205,0,0.000100,0.000157,58126310,29018294,0,0,68619,0,1,1 +1773650723.294794,4.01,4,3992.50,54.03,1602.68,2115.20,0.00,40839.816382,41516.094005,2840823,2814372,0.000085,0.000146,58126316,29018303,0,0,68622,0,1,1 +1773650728.294676,1.60,4,3992.50,53.44,1625.68,2092.19,0.00,3518520187527.274414,3518520186848.953613,258,2,0.000071,0.000136,58126321,29018311,0,0,68624,0,1,1 +1773650733.295004,1.10,4,3992.50,53.47,1624.34,2093.54,0.00,3518206730456.128906,10.674301,253,493,0.000056,0.000108,58126325,29018318,0,0,68627,0,1,1 +1773650738.291158,1.00,4,3992.50,53.62,1618.37,2099.47,0.00,40881.449997,41550.103337,2842329,2814911,0.000045,0.000076,58126328,29018323,0,0,68629,0,1,1 +1773650743.290496,0.70,4,3992.50,53.63,1617.92,2099.92,0.00,3518903463559.911133,3518903462882.484863,205,0,0.000000,0.000030,58126328,29018326,0,0,68632,0,1,1 +1773650748.293801,0.80,4,3992.50,53.67,1616.70,2101.15,0.00,40814.788825,41490.773104,2840826,2814469,0.000000,0.000020,58126328,29018328,0,0,68634,0,1,1 +1773650753.290384,0.60,4,3992.50,53.69,1615.71,2102.12,0.00,3520843038252.008789,3520843037575.295410,11,0,0.000000,0.000030,58126328,29018331,0,0,68637,0,1,1 +1773650758.294781,0.80,4,3992.50,53.69,1615.72,2102.12,0.00,40806.063482,41481.899682,2840826,2814672,0.000000,0.000020,58126328,29018333,0,0,68639,0,1,1 +1773650763.293349,0.60,4,3992.50,53.69,1615.72,2102.12,0.00,3519444559775.925293,3519444559108.320801,253,493,0.000192,0.001170,58126334,29018349,0,0,68642,0,1,1 +1773650768.293370,1.00,4,3992.50,53.78,1609.62,2105.52,0.00,0.000000,0.000000,253,493,0.000008,0.000028,58126335,29018352,0,0,68644,0,1,1 +1773650773.290453,0.75,4,3992.50,53.78,1609.65,2105.52,0.00,40873.858233,41542.669989,2842329,2815206,0.000000,0.000030,58126335,29018355,0,0,68647,0,1,1 +1773650778.290359,0.65,4,3992.50,53.78,1609.65,2105.52,0.00,3518503797234.290527,3518503796556.785156,75,0,0.000000,0.000020,58126335,29018357,0,0,68649,0,1,1 +1773650783.292414,0.70,4,3992.50,53.78,1609.66,2105.51,0.00,3516991096704.393066,0.000000,11,0,0.000000,0.000030,58126335,29018360,0,0,68652,0,1,1 +1773650788.295231,0.60,4,3992.50,53.78,1609.43,2105.75,0.00,40828.669912,41505.741608,2842329,2815218,0.000000,0.000020,58126335,29018362,0,0,68654,0,1,1 +1773650793.294982,0.85,4,3992.50,53.79,1609.19,2105.97,0.00,3518612734139.957031,3518612733462.470215,11,0,0.000014,0.000030,58126336,29018365,0,0,68657,0,1,1 +1773650798.294793,1.00,4,3992.50,54.23,1582.51,2123.17,0.00,0.000000,0.000000,11,0,0.000079,0.000020,58126342,29018367,0,0,68659,0,1,1 +1773650803.294262,0.75,4,3992.50,53.95,1593.54,2112.16,0.00,40856.005517,41533.585707,2842329,2815248,0.000052,0.000057,58126347,29018372,0,0,68662,0,1,1 +1773650808.290380,1.00,4,3992.50,53.95,1593.45,2112.25,0.00,3521171253284.692871,3521171252615.683105,253,493,0.000267,0.000209,58126365,29018384,0,0,68664,0,1,1 +1773650813.294584,2.70,4,3992.50,54.25,1581.78,2123.91,0.00,40815.701407,41483.746359,2842329,2815382,0.000160,0.000107,58126376,29018391,0,0,68667,0,1,1 +1773650818.290653,0.85,4,3992.50,54.11,1587.02,2118.68,0.00,3521205609601.722656,3521205608923.511719,75,0,0.000075,0.000102,58126381,29018397,0,0,68669,0,1,1 +1773650823.295073,1.60,4,3992.50,53.50,1611.11,2094.59,0.00,40805.815084,41482.076778,2840826,2815036,0.000099,0.000146,58126388,29018406,0,0,68672,0,1,1 +1773650828.294546,1.30,4,3992.50,53.90,1596.50,2110.38,0.00,9.749855,10.890600,2842330,2815691,0.000028,0.000703,58126390,29018414,0,0,68674,0,1,1 +1773650833.294576,0.65,4,3992.50,53.48,1612.00,2093.70,0.00,3518416334813.042480,3518416334812.127441,2840827,2815235,0.000019,0.000054,58126391,29018418,0,0,68677,0,1,1 +1773650838.294604,0.65,4,3992.50,53.48,1611.75,2093.94,0.00,3518417421275.351074,3518417420598.269531,75,0,0.000008,0.000028,58126392,29018421,0,0,68679,0,1,1 +1773650843.290455,0.70,4,3992.50,53.38,1615.55,2090.13,0.00,2.123637,0.000195,258,2,0.000000,0.000030,58126392,29018424,0,0,68682,0,1,1 +1773650848.295200,0.70,4,3992.50,53.39,1615.54,2090.15,0.00,0.000000,0.000000,258,2,0.000000,0.000020,58126392,29018426,0,0,68684,0,1,1 +1773650853.291391,0.65,4,3992.50,53.39,1615.54,2090.15,0.00,3521119551981.169922,3521119551983.347168,11,0,0.000000,0.000030,58126392,29018429,0,0,68687,0,1,1 +1773650858.293933,0.95,4,3992.50,53.68,1603.99,2101.68,0.00,40830.937719,41508.659812,2842330,2815809,0.000018,0.000044,58126393,29018432,0,0,68689,0,1,1 +1773650863.293293,0.70,4,3992.50,53.70,1603.02,2102.66,0.00,3518887962938.419434,3518887962937.474121,2840827,2815319,0.000008,0.000038,58126394,29018436,0,0,68692,0,1,1 +1773650868.290359,0.70,4,3992.50,53.70,1603.02,2102.66,0.00,3520502764598.014648,3520502763920.495605,11,0,0.000000,0.000020,58126394,29018438,0,0,68694,0,1,1 +1773650873.291284,0.55,4,3992.50,53.54,1609.48,2096.21,0.00,2.174988,0.000195,258,2,0.000000,0.000030,58126394,29018441,0,0,68697,0,1,1 +1773650878.294709,0.70,4,3992.50,53.56,1608.74,2096.95,0.00,3516028850070.119141,3516028850072.292969,11,0,0.000000,0.000020,58126394,29018443,0,0,68699,0,1,1 +1773650883.295323,0.65,4,3992.50,53.58,1607.76,2097.93,0.00,40836.955390,41514.022489,2840827,2815349,0.000000,0.000030,58126394,29018446,0,0,68702,0,1,1 +1773650888.294741,1.25,4,3992.50,54.08,1593.78,2117.24,0.00,3518846472521.454590,3518846471844.225098,11,0,0.000028,0.000059,58126396,29018450,0,0,68704,0,1,1 +1773650893.295134,2.96,4,3992.50,54.16,1590.14,2120.49,0.00,0.053511,0.000000,75,0,0.000093,0.000154,58126403,29018460,0,0,68707,0,1,1 +1773650898.294585,1.10,4,3992.50,54.08,1593.31,2117.33,0.00,2.122108,0.000195,258,2,0.000028,0.000703,58126405,29018468,0,0,68709,0,1,1 +1773650903.291317,1.76,4,3992.50,53.93,1599.27,2111.36,0.00,3520738644614.087891,3520738644616.264648,11,0,0.000085,0.000147,58126411,29018477,0,0,68712,0,1,1 +1773650908.294425,0.95,4,3992.50,53.91,1600.11,2110.51,0.00,40816.633735,41493.667347,2840830,2815697,0.000028,0.000059,58126413,29018481,0,0,68714,0,1,1 +1773650913.290447,0.65,4,3992.50,53.93,1599.14,2111.49,0.00,3521238632397.659180,3521238631719.484863,205,0,0.000000,0.000030,58126413,29018484,0,0,68717,0,1,1 +1773650918.294674,1.00,4,3992.50,53.79,1602.45,2106.16,0.00,40817.058259,41495.185749,2842333,2816263,0.000000,0.000020,58126413,29018486,0,0,68719,0,1,1 +1773650923.294905,0.60,4,3992.50,53.81,1601.68,2106.79,0.00,3518274476686.764648,3518274476008.275391,11,0,0.000000,0.000030,58126413,29018489,0,0,68722,0,1,1 +1773650928.295003,0.65,4,3992.50,53.82,1601.45,2107.03,0.00,0.000000,0.000000,11,0,0.000000,0.000020,58126413,29018491,0,0,68724,0,1,1 +1773650933.290428,0.65,4,3992.50,53.63,1608.84,2099.63,0.00,40879.414454,41557.643666,2840830,2815808,0.000000,0.000030,58126413,29018494,0,0,68727,0,1,1 +1773650938.292706,0.65,4,3992.50,53.63,1608.84,2099.63,0.00,3516835184906.869141,3516835184227.395020,258,2,0.000000,0.000020,58126413,29018496,0,0,68729,0,1,1 +1773650943.290450,0.70,4,3992.50,53.63,1608.84,2099.63,0.00,0.000000,0.000000,258,2,0.000000,0.000030,58126413,29018499,0,0,68732,0,1,1 +1773650948.290366,1.00,4,3992.50,53.92,1597.62,2111.16,0.00,40850.255069,41531.034845,2842333,2816326,0.000000,0.000020,58126413,29018501,0,0,68734,0,1,1 +1773650953.290453,0.65,4,3992.50,53.75,1604.54,2104.25,0.00,3518376022878.287598,3518376022199.652832,75,0,0.000000,0.000030,58126413,29018504,0,0,68737,0,1,1 +1773650958.294463,0.75,4,3992.50,53.78,1603.31,2105.48,0.00,2.120174,0.000195,258,2,0.000000,0.000020,58126413,29018506,0,0,68739,0,1,1 +1773650963.290443,0.70,4,3992.50,53.78,1603.31,2105.48,0.00,3521268797746.702148,3521268797748.699219,205,0,0.000000,0.000674,58126413,29018513,0,0,68742,0,1,1 +1773650968.291557,1.20,4,3992.50,53.78,1603.27,2105.52,0.00,3517652977699.926270,0.000000,11,0,0.000056,0.000098,58126417,29018519,0,0,68744,0,1,1 +1773650973.293862,2.75,4,3992.50,54.03,1593.42,2115.36,0.00,0.180190,0.000000,205,0,0.000072,0.000124,58126423,29018528,0,0,68747,0,1,1 +1773650978.295119,2.01,4,3992.50,53.63,1615.88,2099.71,0.00,40841.327860,41520.167124,2842337,2816600,0.000085,0.000137,58126429,29018536,0,0,68749,0,1,1 +1773650983.290462,0.90,4,3992.50,53.68,1614.01,2101.60,0.00,3521717545797.181152,3521717545126.744141,253,493,0.000028,0.000069,58126431,29018541,0,0,68752,0,1,1 +1773650988.290385,1.10,4,3992.50,53.75,1611.23,2104.42,0.00,3518491486538.664062,3518491486529.593262,75,0,0.000028,0.000059,58126433,29018545,0,0,68754,0,1,1 +1773650993.294409,0.70,4,3992.50,53.75,1611.23,2104.42,0.00,2.120168,0.000195,258,2,0.000000,0.000030,58126433,29018548,0,0,68757,0,1,1 +1773650998.294909,0.65,4,3992.50,53.75,1611.23,2104.41,0.00,3518086075042.429199,3518086075044.604492,11,0,0.000000,0.000020,58126433,29018550,0,0,68759,0,1,1 +1773651003.294420,0.85,4,3992.50,53.77,1610.32,2105.33,0.00,0.053521,0.000000,75,0,0.000000,0.000030,58126433,29018553,0,0,68762,0,1,1 +1773651008.294737,1.00,4,3992.50,53.80,1606.69,2106.28,0.00,3518214844335.768555,0.000000,11,0,0.000000,0.000020,58126433,29018555,0,0,68764,0,1,1 +1773651013.295039,0.60,4,3992.50,53.80,1606.45,2106.52,0.00,0.000000,0.000000,11,0,0.000000,0.000030,58126433,29018558,0,0,68767,0,1,1 +1773651018.294734,0.65,4,3992.50,53.81,1606.21,2106.75,0.00,40854.278395,41533.443279,2842346,2816883,0.000000,0.000020,58126433,29018560,0,0,68769,0,1,1 +1773651023.295150,0.70,4,3992.50,53.81,1606.21,2106.75,0.00,3518145031822.455566,3518145031143.334473,75,0,0.000000,0.000030,58126433,29018563,0,0,68772,0,1,1 +1773651028.295096,0.60,4,3992.50,53.74,1608.75,2104.22,0.00,3518474988156.484375,0.000000,11,0,0.000000,0.000664,58126433,29018569,0,0,68774,0,1,1 +1773651033.294821,0.75,4,3992.50,53.78,1607.52,2105.44,0.00,0.000000,0.000000,11,0,0.000000,0.000030,58126433,29018572,0,0,68777,0,1,1 +1773651038.291502,0.70,4,3992.50,53.78,1607.52,2105.44,0.00,1.658816,10.682285,253,493,0.000000,0.000020,58126433,29018574,0,0,68779,0,1,1 +1773651043.290391,0.95,4,3992.50,53.97,1599.90,2113.03,0.00,40849.486278,41518.845790,2840843,2816425,0.000000,0.000030,58126433,29018577,0,0,68782,0,1,1 +1773651048.290380,1.05,4,3992.50,53.84,1605.15,2107.79,0.00,3518445096505.495605,3518445095827.085938,205,0,0.000056,0.000098,58126437,29018583,0,0,68784,0,1,1 +1773651053.290494,2.96,4,3992.50,54.37,1584.37,2128.56,0.00,3518356629368.479980,0.000000,11,0,0.000101,0.000163,58126445,29018594,0,0,68787,0,1,1 +1773651058.292370,1.55,4,3992.50,54.04,1597.29,2115.64,0.00,0.000000,0.000000,11,0,0.001170,0.001263,58126457,29018612,0,0,68789,0,1,1 +1773651063.294823,31.79,4,3992.50,60.16,1357.57,2355.32,0.00,2.174324,0.000195,258,2,75.276936,0.034268,58134560,29020899,0,0,68792,0,1,1 +1773651068.294462,34.39,4,3992.50,60.76,1337.67,2378.95,0.00,3518691218275.562500,10.675771,253,493,122.379830,0.022933,58147186,29022606,0,0,68794,0,1,1 +1773651073.294701,30.66,4,3992.50,60.50,1347.91,2368.63,0.00,40848.205860,41518.871587,2842350,2817460,121.965681,0.024261,58159693,29024385,0,0,68797,0,1,1 +1773651078.294799,29.20,4,3992.50,60.30,1355.55,2360.96,0.00,3518367796373.550781,3518367795693.849121,11,0,120.167659,0.032426,58171928,29026830,0,0,68799,0,1,1 +1773651083.294762,29.15,4,3992.50,60.42,1351.01,2365.47,0.00,0.180275,0.000000,205,0,120.179501,0.058697,58184323,29031308,0,0,68802,0,1,1 +1773651088.295486,28.84,4,3992.50,60.47,1348.98,2367.55,0.00,3517928112619.787109,0.000000,11,0,119.752125,0.027263,58196616,29033350,0,0,68804,0,1,1 +1773651093.293574,29.41,4,3992.50,60.70,1339.81,2376.71,0.00,2.176223,0.000195,258,2,119.209225,0.017611,58208672,29034587,0,0,68807,0,1,1 +1773651098.294390,29.15,4,3992.50,60.37,1352.73,2363.68,0.00,3517863183666.800781,3517863183668.922363,75,0,119.548404,0.035707,58220802,29037385,0,0,68809,0,1,1 +1773651103.293456,15.59,4,3992.50,55.71,1530.45,2181.23,0.00,1.604499,10.677189,253,493,106.973675,0.038718,58231794,29040379,0,0,68812,0,1,1 +1773651108.290912,1.15,4,3992.50,54.95,1560.12,2151.55,0.00,40861.326080,41531.650462,2840880,2817124,0.004057,0.002616,58231864,29040426,0,0,68814,0,1,1 +1773651113.292596,0.70,4,3992.50,54.48,1578.68,2133.00,0.00,3517252740918.639648,3517252740239.687500,205,0,0.000316,0.000592,58231872,29040441,0,0,68817,0,1,1 +1773651118.295233,0.75,4,3992.50,54.32,1584.89,2126.78,0.00,1.994066,0.000195,258,2,0.001020,0.000400,58231891,29040454,0,0,68819,0,1,1 +1773651123.292413,0.85,4,3992.50,54.33,1584.65,2127.02,0.00,3520422528637.002930,10.681023,253,493,0.000000,0.000030,58231891,29040457,0,0,68822,0,1,1 +1773651128.294012,1.00,4,3992.50,54.33,1585.66,2127.18,0.00,40837.204753,41508.043112,2842383,2817708,0.000000,0.000033,58231891,29040460,0,0,68824,0,1,1 +1773651133.294822,0.65,4,3992.50,54.33,1585.55,2127.17,0.00,3517866610170.971191,3517866609490.831055,205,0,0.000000,0.000030,58231891,29040463,0,0,68827,0,1,1 +1773651138.290676,0.65,4,3992.50,54.23,1589.35,2123.38,0.00,40885.645819,41566.590038,2842383,2817750,0.000000,0.000020,58231891,29040465,0,0,68829,0,1,1 +1773651143.294796,0.55,4,3992.50,54.30,1586.91,2125.82,0.00,3515540046634.304199,3515540045954.611328,75,0,0.000000,0.000030,58231891,29040468,0,0,68832,0,1,1 +1773651148.295119,0.60,4,3992.50,54.30,1586.91,2125.81,0.00,40849.225354,41529.445072,2842383,2817760,0.000000,0.000020,58231891,29040470,0,0,68834,0,1,1 +1773651153.294299,0.70,4,3992.50,54.30,1586.92,2125.81,0.00,3519014792491.630859,3519014791811.255371,75,0,0.000126,0.000185,58231901,29040483,0,0,68837,0,1,1 +1773651158.294965,0.95,4,3992.50,54.35,1585.09,2127.78,0.00,3517968381901.576660,0.000000,11,0,0.000039,0.000697,58231904,29040492,0,0,68839,0,1,1 +1773651163.295279,0.70,4,3992.50,54.31,1586.39,2126.34,0.00,40849.353665,41529.579706,2842383,2817792,0.000058,0.000100,58231909,29040500,0,0,68842,0,1,1 +1773651168.294980,0.65,4,3992.50,54.31,1586.39,2126.35,0.00,3518647545153.088379,3518647544472.778809,11,0,0.000000,0.000020,58231909,29040502,0,0,68844,0,1,1 +1773651173.294529,30.02,4,3992.50,60.17,1356.81,2355.79,0.00,1.657864,10.676158,253,493,59.293813,0.025907,58238300,29042337,0,0,68847,0,1,1 +1773651178.291316,31.01,4,3992.50,60.43,1346.61,2366.04,0.00,0.000000,0.000000,253,493,120.046958,0.018579,58250790,29043678,0,0,68849,0,1,1 +1773651183.292644,28.61,4,3992.50,60.64,1338.38,2374.30,0.00,3517503041679.922852,3517503041670.727539,205,0,118.931457,0.018671,58262978,29045125,0,0,68852,0,1,1 +1773651188.293621,29.74,4,3992.50,60.25,1353.81,2358.82,0.00,1.994728,0.000195,258,2,119.345201,0.034721,58275214,29047793,0,0,68854,0,1,1 +1773651193.295411,29.81,4,3992.50,60.36,1352.80,2363.32,0.00,3517177868573.035156,3517177868575.209473,11,0,119.744525,0.075197,58287872,29053640,0,0,68857,0,1,1 +1773651198.290860,30.03,4,3992.50,60.42,1350.58,2365.52,0.00,40879.423890,41559.589697,2840883,2817571,118.692419,0.068506,58300442,29058939,0,0,68859,0,1,1 +1773651203.293264,29.80,4,3992.50,60.15,1360.93,2355.17,0.00,9.721499,10.824582,2842386,2818082,119.921567,0.058318,58313039,29063485,0,0,68862,0,1,1 +1773651208.290370,30.68,4,3992.50,60.39,1351.74,2364.32,0.00,0.000000,0.007328,2842386,2818092,118.657186,0.090690,58325653,29070577,0,0,68864,0,1,1 +1773651213.294661,21.55,4,3992.50,60.13,1361.85,2354.34,0.00,3515420113622.638672,3515420113621.697754,2840884,2817612,119.888742,0.090859,58338442,29077642,0,0,68867,0,1,1 +1773651218.294297,1.65,4,3992.50,54.72,1576.67,2142.39,0.00,3518693974290.783691,3518693973611.018066,11,0,11.021944,0.009774,58339686,29078326,0,0,68869,0,1,1 +1773651223.295171,0.65,4,3992.50,54.24,1592.65,2123.52,0.00,0.000000,0.000000,11,0,0.000000,0.000674,58339686,29078333,0,0,68872,0,1,1 +1773651228.293143,0.60,4,3992.50,54.24,1592.41,2123.77,0.00,0.000000,0.000000,11,0,0.000000,0.000020,58339686,29078335,0,0,68874,0,1,1 +1773651233.290400,0.65,4,3992.50,54.24,1592.41,2123.77,0.00,40874.508154,41555.703888,2842398,2818182,0.000000,0.000030,58339686,29078338,0,0,68877,0,1,1 +1773651238.290364,0.65,4,3992.50,54.24,1592.41,2123.77,0.00,3518462330666.323242,3518462329985.496094,11,0,0.000000,0.000020,58339686,29078340,0,0,68879,0,1,1 +1773651243.290449,0.75,4,3992.50,54.24,1592.41,2123.77,0.00,0.053515,0.000000,75,0,0.000000,0.000030,58339686,29078343,0,0,68882,0,1,1 +1773651248.294858,1.00,4,3992.50,54.29,1588.02,2125.45,0.00,40806.320590,41485.733730,2840895,2817753,0.000000,0.000020,58339686,29078345,0,0,68884,0,1,1 +1773651253.293662,0.70,4,3992.50,54.08,1596.14,2117.34,0.00,3519278828209.221191,3519278827538.119141,253,493,0.000000,0.000030,58339686,29078348,0,0,68887,0,1,1 +1773651258.290508,0.65,4,3992.50,54.10,1595.41,2118.07,0.00,40876.209574,41548.566340,2842398,2818295,0.000000,0.000020,58339686,29078350,0,0,68889,0,1,1 +1773651263.290583,0.65,4,3992.50,54.13,1594.19,2119.28,0.00,3518384236784.081543,3518384236783.140625,2840895,2817807,0.000126,0.000185,58339696,29078363,0,0,68892,0,1,1 +1773651268.295051,0.70,4,3992.50,54.13,1594.20,2119.28,0.00,3515295988833.741211,3515295988154.339844,11,0,0.000016,0.000036,58339698,29078367,0,0,68894,0,1,1 +1773651273.295310,0.45,4,3992.50,54.09,1595.55,2117.92,0.00,0.000000,0.000000,11,0,0.000000,0.000030,58339698,29078370,0,0,68897,0,1,1 +1773651278.294652,1.00,4,3992.50,54.29,1587.86,2125.61,0.00,0.000000,0.000000,11,0,0.000000,0.000020,58339698,29078372,0,0,68899,0,1,1 +1773651283.295538,25.31,4,3992.50,60.05,1362.12,2351.28,0.00,40835.127457,41515.057743,2840898,2817871,55.874983,0.024991,58345788,29080133,0,0,68902,0,1,1 +1773651288.293354,32.95,4,3992.50,59.93,1367.12,2346.34,0.00,3519975035277.872070,3519975034597.470703,75,0,122.624710,0.039324,58358398,29083123,0,0,68904,0,1,1 +1773651293.294961,29.33,4,3992.50,60.04,1362.78,2350.59,0.00,1.603684,10.671765,253,493,120.930408,0.029187,58370841,29085269,0,0,68907,0,1,1 +1773651298.291191,29.07,4,3992.50,60.29,1352.85,2360.55,0.00,3521092468232.982910,3521092468223.905273,75,0,120.255954,0.037255,58383013,29088094,0,0,68909,0,1,1 +1773651303.291280,29.09,4,3992.50,60.23,1355.24,2358.11,0.00,2.121837,0.000195,258,2,120.163670,0.038737,58395296,29091086,0,0,68912,0,1,1 +1773651308.294718,29.31,4,3992.50,60.05,1364.55,2351.19,0.00,3516020066739.488770,3516020066741.609375,75,0,120.081296,0.029702,58407466,29093433,0,0,68914,0,1,1 +1773651313.290348,28.64,4,3992.50,60.41,1350.62,2365.05,0.00,0.000000,0.000000,75,0,119.670724,0.028170,58419807,29095592,0,0,68917,0,1,1 +1773651318.290989,29.20,4,3992.50,59.97,1367.67,2348.00,0.00,40846.807264,41528.087482,2842402,2818625,118.747921,0.034094,58431894,29098217,0,0,68919,0,1,1 +1773651323.290368,19.01,4,3992.50,60.24,1357.05,2358.70,0.00,3518874398755.200195,3518874398754.258789,2840900,2818142,120.178537,0.045060,58444092,29101767,0,0,68922,0,1,1 +1773651328.295274,1.20,4,3992.50,55.31,1550.40,2165.34,0.00,3514988166746.940430,3514988166067.234375,11,0,7.006735,0.003947,58444898,29101995,0,0,68924,0,1,1 +1773651333.295244,0.70,4,3992.50,54.62,1577.22,2138.53,0.00,0.000000,0.000000,11,0,0.000000,0.000030,58444898,29101998,0,0,68927,0,1,1 +1773651338.292339,0.55,4,3992.50,54.34,1588.04,2127.70,0.00,40875.928183,41557.876528,2842414,2818710,0.000000,0.000020,58444898,29102000,0,0,68929,0,1,1 +1773651343.294746,0.90,4,3992.50,54.32,1588.80,2126.63,0.00,3516744570874.206543,3516744570873.296875,2840911,2818243,0.000000,0.000030,58444898,29102003,0,0,68932,0,1,1 +1773651348.290379,0.70,4,3992.50,54.31,1588.99,2126.44,0.00,3521512805206.604492,3521512804525.187012,205,0,0.000000,0.000057,58444898,29102006,0,0,68934,0,1,1 +1773651353.295138,0.65,4,3992.50,54.27,1590.55,2124.89,0.00,3515091733682.835449,0.000000,11,0,0.000000,0.000030,58444898,29102009,0,0,68937,0,1,1 +1773651358.294638,0.65,4,3992.50,54.12,1596.51,2118.92,0.00,40846.534091,41527.293301,2840911,2818299,0.000205,0.001196,58444905,29102026,0,0,68939,0,1,1 +1773651363.290558,0.85,4,3992.50,54.12,1596.52,2118.92,0.00,9.734115,10.691928,2842414,2818800,0.001443,0.001796,58444922,29102055,0,0,68942,0,1,1 +1773651368.290376,0.90,4,3992.50,54.12,1606.64,2118.90,0.00,0.000000,0.035158,2842414,2818818,0.000000,0.000020,58444922,29102057,0,0,68944,0,1,1 +1773651373.290376,0.70,4,3992.50,54.00,1608.04,2114.03,0.00,3518437355915.754883,3518437355233.891113,205,0,0.000126,0.000185,58444932,29102070,0,0,68947,0,1,1 +1773651378.295166,0.75,4,3992.50,54.04,1606.36,2115.71,0.00,1.476028,10.664980,253,493,0.000000,0.000020,58444932,29102072,0,0,68949,0,1,1 +1773651383.294749,0.60,4,3992.50,54.04,1606.36,2115.71,0.00,0.517719,3518730247320.030273,258,2,0.000000,0.000030,58444932,29102075,0,0,68952,0,1,1 +1773651388.290466,0.65,4,3992.50,54.04,1606.35,2115.72,0.00,40885.025696,41569.528427,2842414,2818878,0.000000,0.000020,58444932,29102077,0,0,68954,0,1,1 +1773651393.294533,16.44,4,3992.50,59.91,1376.55,2345.43,0.00,3515578019442.663086,3515578018761.295898,205,0,21.419221,0.019520,58447436,29103363,0,0,68957,0,1,1 +1773651398.293982,35.03,4,3992.50,60.19,1365.47,2356.49,0.00,3518824936942.635254,0.000000,75,0,123.182882,0.046008,58459927,29106904,0,0,68959,0,1,1 +1773651403.293336,29.31,4,3992.50,59.97,1373.88,2348.12,0.00,3518891675854.417969,0.000000,11,0,121.183116,0.038016,58472276,29109818,0,0,68962,0,1,1 +1773651408.295108,28.97,4,3992.50,60.20,1365.04,2356.94,0.00,0.180210,0.000000,205,0,121.122653,0.046041,58484514,29113384,0,0,68964,0,1,1 +1773651413.295198,28.96,4,3992.50,60.31,1360.86,2361.09,0.00,3518373951334.127441,0.000000,75,0,120.563021,0.047415,58496697,29116984,0,0,68967,0,1,1 +1773651418.295982,28.59,4,3992.50,60.22,1364.02,2357.87,0.00,1.603948,10.673522,253,493,119.345139,0.045977,58508715,29120461,0,0,68969,0,1,1 +1773651423.294694,28.48,4,3992.50,60.10,1368.70,2353.20,0.00,40851.320147,41523.632087,2840913,2818658,119.592239,0.045699,58520665,29123984,0,0,68972,0,1,1 +1773651428.294406,28.87,4,3992.50,60.68,1345.99,2375.85,0.00,3518639773430.082520,3518639772748.887207,11,0,119.769025,0.048046,58532704,29127743,0,0,68974,0,1,1 +1773651433.295289,26.70,4,3992.50,60.00,1372.96,2349.00,0.00,0.053506,0.000000,75,0,118.539775,0.047076,58544644,29131418,0,0,68977,0,1,1 +1773651438.294928,2.01,4,3992.50,53.84,1614.07,2107.89,0.00,0.000000,0.000000,75,0,40.661788,0.020214,58548828,29132920,0,0,68979,0,1,1 +1773651443.294753,0.75,4,3992.50,53.81,1615.13,2106.84,0.00,40853.693728,41536.043054,2842427,2819287,0.000000,0.000030,58548828,29132923,0,0,68982,0,1,1 +1773651448.290442,0.65,4,3992.50,53.63,1622.29,2099.68,0.00,3521473341498.486816,3521473340824.651367,253,493,0.000000,0.000020,58548828,29132925,0,0,68984,0,1,1 +1773651453.295275,0.60,4,3992.50,53.63,1622.29,2099.68,0.00,0.517176,3515039366542.525879,258,2,0.000025,0.000061,58548830,29132930,0,0,68987,0,1,1 +1773651458.292949,0.65,4,3992.50,53.63,1620.88,2099.87,0.00,3520075290701.868652,3520075290704.045410,11,0,0.000031,0.000045,58548832,29132934,0,0,68989,0,1,1 +1773651463.294860,1.10,4,3992.50,53.77,1615.52,2105.24,0.00,0.000000,0.000000,11,0,0.000025,0.000061,58548834,29132939,0,0,68992,0,1,1 +1773651468.290381,0.65,4,3992.50,53.77,1615.52,2105.23,0.00,40888.944918,41571.969312,2842427,2819368,0.000000,0.000020,58548834,29132941,0,0,68994,0,1,1 +1773651473.290562,0.75,4,3992.50,53.77,1615.53,2105.23,0.00,3518310199956.099609,3518310199273.657715,75,0,0.000000,0.000030,58548834,29132944,0,0,68997,0,1,1 +1773651478.290451,0.55,4,3992.50,53.77,1615.53,2105.23,0.00,3518515343145.965332,0.000000,11,0,0.000000,0.000020,58548834,29132946,0,0,68999,0,1,1 +1773651483.290385,0.70,4,3992.50,53.77,1615.53,2105.23,0.00,40852.856998,41535.308253,2842427,2819396,0.000126,0.000185,58548844,29132959,0,0,69002,0,1,1 +1773651488.295336,1.00,4,3992.50,53.82,1613.21,2107.23,0.00,3514956405824.143555,3514956405142.196289,205,0,0.000016,0.000679,58548846,29132967,0,0,69004,0,1,1 +1773651493.294324,0.70,4,3992.50,53.85,1612.25,2108.21,0.00,1.995521,0.000195,258,2,0.000000,0.000030,58548846,29132970,0,0,69007,0,1,1 +1773651498.290948,14.08,4,3992.50,60.87,1337.31,2383.07,0.00,0.000000,0.000000,258,2,8.222639,0.011367,58549981,29133706,0,0,69009,0,1,1 +1773651503.293059,34.26,4,3992.50,60.26,1361.02,2359.35,0.00,40823.190633,41506.758091,2840926,2819076,118.516237,0.038812,58562157,29136647,0,0,69012,0,1,1 +1773651508.290295,28.15,4,3992.50,60.38,1356.44,2363.91,0.00,3520382944950.600098,3520382944277.564941,253,493,119.829480,0.020774,58574346,29138268,0,0,69014,0,1,1 +1773651513.294167,29.85,4,3992.50,60.38,1356.42,2363.94,0.00,3515714776471.519043,3515714776462.508789,11,0,118.671689,0.020430,58586440,29139814,0,0,69017,0,1,1 +1773651518.294685,28.60,4,3992.50,60.57,1348.50,2371.43,0.00,1.657543,10.674089,253,493,119.556981,0.027312,58598759,29141885,0,0,69019,0,1,1 +1773651523.294673,28.17,4,3992.50,60.26,1360.50,2359.44,0.00,0.000000,0.000000,253,493,119.564235,0.020410,58610876,29143437,0,0,69022,0,1,1 +1773651528.292901,28.45,4,3992.50,60.12,1366.18,2353.77,0.00,3519684519609.159668,3519684519600.139160,11,0,118.805239,0.031821,58622974,29145905,0,0,69024,0,1,1 +1773651533.294373,28.81,4,3992.50,60.26,1360.77,2359.36,0.00,0.000000,0.000000,11,0,119.729912,0.046658,58635194,29149535,0,0,69027,0,1,1 +1773651538.294060,28.81,4,3992.50,60.15,1364.75,2355.11,0.00,2.175527,0.000195,258,2,118.570098,0.040472,58647236,29152664,0,0,69029,0,1,1 +1773651543.294727,4.86,4,3992.50,54.77,1575.49,2144.52,0.00,3517967764226.684570,3517967764228.806152,75,0,63.879481,0.024125,58653772,29154525,0,0,69032,0,1,1 +1773651548.295107,1.25,4,3992.50,54.76,1576.23,2143.78,0.00,1.604078,10.674386,253,493,0.002893,0.001147,58653825,29154560,0,0,69034,0,1,1 +1773651553.294615,0.70,4,3992.50,54.41,1589.60,2130.41,0.00,3518782967310.936035,3518782967301.917969,11,0,0.000000,0.000030,58653825,29154563,0,0,69037,0,1,1 +1773651558.295352,0.65,4,3992.50,54.22,1596.98,2123.02,0.00,1.657471,10.673623,253,493,0.000000,0.000696,58653825,29154570,0,0,69039,0,1,1 +1773651563.292824,0.70,4,3992.50,54.22,1597.23,2122.77,0.00,3520217284900.475586,3520217284891.453613,11,0,0.000000,0.000030,58653825,29154573,0,0,69042,0,1,1 +1773651568.290411,0.70,4,3992.50,54.22,1597.23,2122.77,0.00,40873.503403,41555.601972,2842560,2819861,0.000000,0.000020,58653825,29154575,0,0,69044,0,1,1 +1773651573.294904,0.65,4,3992.50,54.22,1597.23,2122.77,0.00,3515278918416.003906,3515278917743.855957,253,493,0.000000,0.000030,58653825,29154578,0,0,69047,0,1,1 +1773651578.294757,0.95,4,3992.50,54.16,1599.40,2120.35,0.00,3518540360521.875488,3518540360512.858398,11,0,0.000000,0.000020,58653825,29154580,0,0,69049,0,1,1 +1773651583.290615,0.60,4,3992.50,54.17,1598.90,2120.83,0.00,1.659089,10.684047,253,493,0.000000,0.000030,58653825,29154583,0,0,69052,0,1,1 +1773651588.294788,0.95,4,3992.50,54.17,1598.73,2121.00,0.00,0.000000,0.000000,253,493,0.000025,0.000051,58653827,29154587,0,0,69054,0,1,1 +1773651593.294684,0.55,4,3992.50,54.17,1598.73,2121.00,0.00,3518510284821.701172,3518510284812.630371,75,0,0.000117,0.000170,58653837,29154600,0,0,69057,0,1,1 +1773651598.292932,0.60,4,3992.50,54.18,1598.48,2121.24,0.00,0.126802,0.000000,205,0,0.000000,0.000020,58653837,29154602,0,0,69059,0,1,1 +1773651603.290373,1.10,4,3992.50,54.18,1598.57,2121.16,0.00,3520238946733.412109,0.000000,75,0,0.000000,0.000030,58653837,29154605,0,0,69062,0,1,1 +1773651608.290967,9.86,4,3992.50,60.64,1352.20,2374.23,0.00,0.000000,0.000000,75,0,2.008006,0.006189,58654294,29154930,0,0,69064,0,1,1 +1773651613.290841,38.03,4,3992.50,60.34,1363.91,2362.51,0.00,0.000000,0.000000,75,0,122.195933,0.082957,58667258,29161315,0,0,69067,0,1,1 +1773651618.290354,29.00,4,3992.50,60.44,1359.89,2366.51,0.00,40857.732158,41539.820771,2842575,2820050,122.181835,0.019629,58679375,29162737,0,0,69069,0,1,1 +1773651623.294711,28.71,4,3992.50,60.68,1350.58,2375.84,0.00,3515374076357.096680,3515374075675.721680,11,0,121.515647,0.021730,58691255,29164303,0,0,69072,0,1,1 +1773651628.294702,28.62,4,3992.50,60.64,1352.41,2374.06,0.00,1.657718,10.675214,253,493,119.931197,0.021425,58703000,29165928,0,0,69074,0,1,1 +1773651633.290904,28.84,4,3992.50,60.51,1357.16,2369.29,0.00,40883.215298,41556.739517,2842575,2820141,119.084588,0.022564,58714731,29167676,0,0,69077,0,1,1 +1773651638.290466,28.67,4,3992.50,60.64,1357.53,2374.00,0.00,3518745410129.491211,3518745409445.226074,258,2,119.682031,0.031511,58726625,29170111,0,0,69079,0,1,1 +1773651643.290970,28.52,4,3992.50,60.55,1359.98,2370.83,0.00,3518082485550.979980,10.673924,253,493,119.959720,0.034565,58738429,29172777,0,0,69082,0,1,1 +1773651648.294865,28.46,4,3992.50,61.12,1337.91,2392.90,0.00,0.000000,0.000000,253,493,119.218983,0.032934,58750087,29175357,0,0,69084,0,1,1 +1773651653.294484,3.81,4,3992.50,55.68,1550.80,2180.10,0.00,3518705646712.883301,3518705646703.865234,11,0,59.547743,0.020128,58756079,29176823,0,0,69087,0,1,1 +1773651658.292986,0.70,4,3992.50,54.92,1580.80,2150.11,0.00,0.000000,0.000000,11,0,0.000205,0.000552,58756086,29176836,0,0,69089,0,1,1 +1773651663.290793,0.70,4,3992.50,54.52,1596.22,2134.69,0.00,2.176345,0.000195,258,2,0.000513,0.001104,58756100,29176860,0,0,69092,0,1,1 +1773651668.295257,1.10,4,3992.50,54.84,1583.77,2147.29,0.00,3515299129470.539062,3515299129472.712402,11,0,0.000008,0.000028,58756101,29176863,0,0,69094,0,1,1 +1773651673.294893,0.60,4,3992.50,54.76,1586.83,2144.07,0.00,40856.930574,41539.331181,2842588,2820350,0.000000,0.000030,58756101,29176866,0,0,69097,0,1,1 +1773651678.290380,0.65,4,3992.50,54.76,1586.83,2144.07,0.00,3521616276837.255859,3521616276154.288086,11,0,0.000000,0.000020,58756101,29176868,0,0,69099,0,1,1 +1773651683.290381,0.70,4,3992.50,54.76,1586.84,2144.07,0.00,40853.945502,41536.416564,2842588,2820386,0.000000,0.000030,58756101,29176871,0,0,69102,0,1,1 +1773651688.290377,0.70,4,3992.50,54.75,1587.31,2143.59,0.00,3518440022891.475586,3518440022209.003418,11,0,0.000000,0.000664,58756101,29176877,0,0,69104,0,1,1 +1773651693.290379,0.65,4,3992.50,54.75,1587.32,2143.59,0.00,0.000000,0.000000,11,0,0.000000,0.000030,58756101,29176880,0,0,69107,0,1,1 +1773651698.294883,0.65,4,3992.50,54.56,1594.73,2136.17,0.00,1.656223,10.665586,253,493,0.000126,0.000175,58756111,29176892,0,0,69109,0,1,1 +1773651703.294609,1.05,4,3992.50,54.37,1588.47,2128.73,0.00,3518630122000.337402,3518630121991.319336,11,0,0.000047,0.000071,58756115,29176899,0,0,69112,0,1,1 +1773651708.292844,0.70,4,3992.50,54.37,1588.69,2128.51,0.00,0.000000,0.000000,11,0,0.001842,0.001608,58756144,29176921,0,0,69114,0,1,1 +1773651713.292396,0.75,4,3992.50,54.38,1588.05,2129.16,0.00,40857.621674,41540.270564,2842588,2820484,0.000308,0.000584,58756151,29176935,0,0,69117,0,1,1 +1773651718.295944,2.40,4,3992.50,54.54,1582.00,2135.19,0.00,3515942327841.143555,3515942327840.183105,2841090,2820024,0.004899,0.003762,58756234,29176999,0,0,69119,0,1,1 +1773651723.292747,41.57,4,3992.50,60.00,1367.87,2349.28,0.00,3520688060803.237305,3520688060120.994141,205,0,114.453356,0.075596,58768446,29182831,0,0,69122,0,1,1 +1773651728.294537,29.56,4,3992.50,60.46,1349.88,2367.21,0.00,40839.183952,41521.864953,2842593,2820662,122.860622,0.020711,58780685,29184338,0,0,69124,0,1,1 +1773651733.290744,29.08,4,3992.50,60.35,1354.13,2362.91,0.00,3521108552809.132812,3521108552123.692383,258,2,120.385578,0.022071,58792463,29186044,0,0,69127,0,1,1 +1773651738.290380,28.25,4,3992.50,60.36,1353.98,2363.05,0.00,0.000000,0.000000,258,2,120.068657,0.027351,58804216,29188184,0,0,69129,0,1,1 +1773651743.290370,28.28,4,3992.50,60.57,1345.67,2371.40,0.00,3518443614561.126953,10.675019,253,493,119.424448,0.032013,58815542,29190670,0,0,69132,0,1,1 +1773651748.290381,28.36,4,3992.50,60.63,1343.05,2373.91,0.00,3518429773032.113281,3518429773023.042480,75,0,119.551370,0.028127,58826571,29192845,0,0,69134,0,1,1 +1773651753.295204,28.27,4,3992.50,60.80,1336.46,2380.61,0.00,3515046461494.623535,0.000000,11,0,118.814310,0.027908,58837248,29194959,0,0,69137,0,1,1 +1773651758.290784,28.71,4,3992.50,61.09,1325.11,2391.96,0.00,2.177315,0.000195,258,2,119.468755,0.028395,58848004,29197095,0,0,69139,0,1,1 +1773651763.290443,6.01,4,3992.50,54.94,1566.28,2150.82,0.00,40844.936540,41529.234557,2841096,2820310,70.459089,0.017571,58854404,29198403,0,0,69142,0,1,1 +1773651768.291184,0.95,4,3992.50,54.57,1580.52,2136.59,0.00,3517916176614.030762,3517916175932.055664,11,0,0.003086,0.001432,58854460,29198442,0,0,69144,0,1,1 +1773651773.294720,0.65,4,3992.50,54.56,1581.05,2136.05,0.00,1.656543,10.667651,253,493,0.000000,0.000030,58854460,29198445,0,0,69147,0,1,1 +1773651778.290623,0.80,4,3992.50,54.36,1588.69,2128.41,0.00,3521322445979.440918,3521322445970.235352,205,0,0.000000,0.000020,58854460,29198447,0,0,69149,0,1,1 +1773651783.294749,0.70,4,3992.50,54.19,1595.62,2121.48,0.00,3515536360539.584473,0.000000,11,0,0.000000,0.000030,58854460,29198450,0,0,69152,0,1,1 +1773651788.294807,1.05,4,3992.50,54.33,1589.36,2127.00,0.00,0.000000,0.000000,11,0,0.000000,0.000020,58854460,29198452,0,0,69154,0,1,1 +1773651793.294957,0.75,4,3992.50,54.35,1588.38,2127.98,0.00,40852.897169,41536.112323,2842604,2820961,0.000000,0.000030,58854460,29198455,0,0,69157,0,1,1 +1773651798.295108,0.55,4,3992.50,54.35,1588.38,2127.96,0.00,3518331113566.988770,3518331112883.773926,11,0,0.000000,0.000020,58854460,29198457,0,0,69159,0,1,1 +1773651803.295216,0.70,4,3992.50,54.35,1588.39,2127.96,0.00,40843.510696,41525.807329,2841101,2820488,0.000000,0.000030,58854460,29198460,0,0,69162,0,1,1 +1773651808.292944,0.65,4,3992.50,54.35,1588.39,2127.96,0.00,0.000000,0.004690,2841101,2820493,0.000025,0.000051,58854462,29198464,0,0,69164,0,1,1 +1773651813.294395,0.70,4,3992.50,54.35,1588.39,2127.96,0.00,3517416832952.143066,3517416832267.850098,258,2,0.000117,0.000170,58854472,29198477,0,0,69167,0,1,1 +1773651818.294406,1.00,4,3992.50,54.55,1589.50,2135.58,0.00,3518429192492.005859,3518429192494.127441,75,0,0.000000,0.000342,58854472,29198481,0,0,69169,0,1,1 +1773651823.295000,0.55,4,3992.50,54.36,1596.55,2128.49,0.00,0.000000,0.000000,75,0,0.000000,0.000352,58854472,29198486,0,0,69172,0,1,1 +1773651828.292994,1.00,4,3992.50,54.35,1597.12,2127.91,0.00,3519849492174.289062,0.000000,11,0,0.001396,0.000723,58854496,29198504,0,0,69174,0,1,1 +1773651833.290454,41.29,4,3992.50,60.39,1360.49,2364.50,0.00,0.180365,0.000000,205,0,97.189269,0.040659,58864706,29201492,0,0,69177,0,1,1 +1773651838.290860,28.28,4,3992.50,60.46,1357.74,2367.23,0.00,40840.902433,41523.564794,2841103,2820714,120.157357,0.019212,58877037,29202913,0,0,69179,0,1,1 +1773651843.291442,28.02,4,3992.50,60.23,1366.82,2358.15,0.00,3518027480370.208984,3518027479687.750977,11,0,118.201513,0.016357,58889310,29204127,0,0,69182,0,1,1 +1773651848.293888,27.86,4,3992.50,60.37,1361.54,2363.45,0.00,1.656904,10.669976,253,493,120.056802,0.019691,58901525,29205605,0,0,69184,0,1,1 +1773651853.294008,28.43,4,3992.50,60.61,1343.91,2372.95,0.00,40851.488790,41526.077825,2842606,2821279,119.767518,0.038412,58913779,29208622,0,0,69187,0,1,1 +1773651858.290365,28.29,4,3992.50,60.26,1357.52,2359.35,0.00,3521002015189.601074,3521002014503.303223,258,2,118.655538,0.037737,58925881,29211521,0,0,69189,0,1,1 +1773651863.290840,28.28,4,3992.50,60.15,1361.80,2355.10,0.00,0.000000,0.000000,258,2,120.174174,0.076423,58938438,29217474,0,0,69192,0,1,1 +1773651868.290309,28.29,4,3992.50,60.17,1360.96,2355.92,0.00,3518810946014.227539,3518810946016.349609,75,0,118.405844,0.099320,58950981,29225210,0,0,69194,0,1,1 +1773651873.291964,11.41,4,3992.50,54.74,1573.80,2143.18,0.00,3517273242573.164062,0.000000,11,0,92.913484,0.059097,58960731,29229775,0,0,69197,0,1,1 +1773651878.295081,1.30,4,3992.50,54.40,1593.39,2129.95,0.00,1.656682,10.668545,253,493,0.003116,0.001444,58960789,29229815,0,0,69199,0,1,1 +1773651883.290443,0.55,4,3992.50,54.34,1593.52,2127.52,0.00,40890.546933,41566.092584,2842622,2821491,0.000000,0.000513,58960789,29229821,0,0,69202,0,1,1 +1773651888.290358,0.90,4,3992.50,54.33,1594.07,2126.98,0.00,3518497367409.439453,3518497366734.509277,253,493,0.000000,0.000181,58960789,29229824,0,0,69204,0,1,1 +1773651893.292493,0.65,4,3992.50,54.13,1601.57,2119.46,0.00,3516934907229.367188,3516934907220.300293,75,0,0.000000,0.000030,58960789,29229827,0,0,69207,0,1,1 +1773651898.290455,0.70,4,3992.50,54.14,1601.33,2119.71,0.00,0.000000,0.000000,75,0,0.000000,0.000020,58960789,29229829,0,0,69209,0,1,1 +1773651903.290554,0.65,4,3992.50,54.16,1600.60,2120.43,0.00,0.126755,0.000000,205,0,0.000000,0.000030,58960789,29229832,0,0,69212,0,1,1 +1773651908.290374,1.00,4,3992.50,54.55,1585.22,2135.89,0.00,3518563725175.227051,0.000000,75,0,0.000000,0.000020,58960789,29229834,0,0,69214,0,1,1 +1773651913.290456,0.60,4,3992.50,54.26,1596.65,2124.49,0.00,0.126756,0.000000,205,0,0.000000,0.000030,58960789,29229837,0,0,69217,0,1,1 +1773651918.290447,0.65,4,3992.50,54.26,1596.65,2124.49,0.00,1.995121,0.000195,258,2,0.000025,0.000051,58960791,29229841,0,0,69219,0,1,1 +1773651923.290585,0.70,4,3992.50,54.10,1603.07,2118.08,0.00,3518340449594.642090,10.674706,253,493,0.000117,0.000170,58960801,29229854,0,0,69222,0,1,1 +1773651928.294743,0.60,4,3992.50,54.08,1603.60,2117.54,0.00,40818.674516,41493.170097,2842623,2821601,0.000000,0.000020,58960801,29229856,0,0,69224,0,1,1 +1773651933.295048,0.55,4,3992.50,54.02,1606.02,2115.12,0.00,3518222346779.768066,3518222346095.682129,75,0,0.000000,0.000030,58960801,29229859,0,0,69227,0,1,1 +1773651938.294636,0.90,4,3992.50,53.87,1611.96,2109.17,0.00,2.122050,0.000195,258,2,0.001383,0.000421,58960824,29229877,0,0,69229,0,1,1 +1773651943.294708,37.44,4,3992.50,60.36,1357.77,2363.12,0.00,3518386679924.217285,10.674847,253,493,89.727029,0.033111,58970226,29232272,0,0,69232,0,1,1 +1773651948.294533,28.05,4,3992.50,60.15,1365.73,2355.09,0.00,3518559907398.920898,3518559907389.903320,11,0,119.769840,0.047991,58982390,29235941,0,0,69234,0,1,1 +1773651953.292938,28.06,4,3992.50,60.45,1354.06,2366.76,0.00,2.176085,0.000195,258,2,118.401954,0.035741,58994498,29238627,0,0,69237,0,1,1 +1773651958.295547,28.28,4,3992.50,60.43,1354.76,2365.91,0.00,3516601652536.372070,3516601652538.546387,11,0,119.500012,0.039592,59006604,29241705,0,0,69239,0,1,1 +1773651963.292541,28.73,4,3992.50,59.91,1375.27,2345.55,0.00,40869.149597,41552.912929,2841123,2821320,118.837465,0.035059,59018808,29244297,0,0,69242,0,1,1 +1773651968.290350,28.18,4,3992.50,60.11,1367.52,2353.31,0.00,3519979364629.902832,3519979363946.070801,205,0,119.616529,0.030887,59031001,29246666,0,0,69244,0,1,1 +1773651973.295206,28.14,4,3992.50,60.02,1371.75,2349.75,0.00,40814.482476,41498.353016,2842626,2821840,118.648942,0.021261,59043177,29248350,0,0,69247,0,1,1 +1773651978.290361,28.54,4,3992.50,60.11,1367.39,2353.45,0.00,3521849445694.695312,3521849445009.623535,75,0,120.288826,0.043725,59055486,29251726,0,0,69249,0,1,1 +1773651983.290344,13.34,4,3992.50,55.62,1543.20,2177.69,0.00,2.121882,0.000195,258,2,100.741507,0.025779,59065788,29253707,0,0,69252,0,1,1 +1773651988.294431,1.96,4,3992.50,54.68,1580.22,2140.66,0.00,40809.180831,41494.282240,2841159,2821440,0.003115,0.001431,59065846,29253746,0,0,69254,0,1,1 +1773651993.294227,0.70,4,3992.50,53.97,1607.99,2112.90,0.00,3518580679685.137695,3518580679001.443359,205,0,0.000000,0.000030,59065846,29253749,0,0,69257,0,1,1 +1773651998.290450,0.60,4,3992.50,53.97,1607.74,2113.14,0.00,0.000000,0.000000,205,0,0.000000,0.000020,59065846,29253751,0,0,69259,0,1,1 +1773652003.295179,1.15,4,3992.50,54.06,1609.10,2116.52,0.00,1.993232,0.000195,258,2,0.000031,0.000055,59065848,29253756,0,0,69262,0,1,1 +1773652008.294897,0.85,4,3992.50,53.90,1615.42,2110.20,0.00,3518635241894.854492,3518635241896.976074,75,0,0.001849,0.001607,59065878,29253778,0,0,69264,0,1,1 +1773652013.292692,0.70,4,3992.50,53.77,1620.36,2105.26,0.00,0.126814,0.000000,205,0,0.000308,0.000585,59065885,29253792,0,0,69267,0,1,1 +1773652018.290552,0.60,4,3992.50,53.78,1620.13,2105.49,0.00,40862.019961,41546.163697,2841159,2821598,0.001735,0.001988,59065910,29253813,0,0,69269,0,1,1 +1773652023.294676,0.65,4,3992.50,53.78,1619.91,2105.71,0.00,0.000000,0.093673,2841159,2821604,0.000000,0.000030,59065910,29253816,0,0,69272,0,1,1 +1773652028.290463,0.65,4,3992.50,53.78,1619.91,2105.70,0.00,3521404676184.917480,3521404675509.601562,253,493,0.000000,0.000020,59065910,29253818,0,0,69274,0,1,1 +1773652033.293687,1.00,4,3992.50,53.97,1612.64,2112.95,0.00,3516170078055.092285,3516170078046.027344,75,0,0.000075,0.000123,59065916,29253827,0,0,69277,0,1,1 +1773652038.290462,0.75,4,3992.50,53.97,1612.42,2113.20,0.00,40871.012344,41555.327771,2841159,2821641,0.000008,0.000028,59065917,29253830,0,0,69279,0,1,1 +1773652043.290456,0.70,4,3992.50,53.97,1612.74,2112.87,0.00,3518441744123.823730,3518441743440.001953,11,0,0.000000,0.000030,59065917,29253833,0,0,69282,0,1,1 +1773652048.290563,0.65,4,3992.50,53.97,1612.75,2112.87,0.00,40843.834307,41527.650429,2841159,2821651,0.000000,0.000020,59065917,29253835,0,0,69284,0,1,1 +1773652053.294375,36.85,4,3992.50,60.42,1359.92,2365.56,0.00,3515756500041.113770,3515756499355.630371,258,2,80.057672,0.031210,59074429,29256012,0,0,69287,0,1,1 +1773652058.291324,28.94,4,3992.50,60.18,1369.21,2356.32,0.00,40877.207360,41564.698591,2842665,2822285,119.266140,0.089923,59087189,29262961,0,0,69289,0,1,1 +1773652063.294540,28.68,4,3992.50,60.33,1363.38,2362.18,0.00,3516175961738.361328,3516175961737.460449,2841162,2821826,119.923402,0.112605,59100088,29271737,0,0,69292,0,1,1 +1773652068.293395,28.78,4,3992.50,60.27,1366.07,2359.52,0.00,3519243404181.398926,3519243403495.071289,258,2,118.423807,0.110022,59112807,29280322,0,0,69294,0,1,1 +1773652073.294577,28.41,4,3992.50,60.26,1366.47,2359.14,0.00,40842.606555,41529.595815,2842665,2822373,120.170981,0.112444,59125706,29289073,0,0,69297,0,1,1 +1773652078.290565,27.75,4,3992.50,60.20,1368.68,2356.93,0.00,3521262931529.376465,3521262930843.849609,11,0,118.490497,0.108605,59138427,29297498,0,0,69299,0,1,1 +1773652083.294687,28.53,4,3992.50,60.21,1368.16,2357.42,0.00,0.053472,0.000000,75,0,119.899297,0.109450,59151324,29306065,0,0,69302,0,1,1 +1773652088.294836,28.81,4,3992.50,60.46,1358.34,2367.26,0.00,40853.166793,41538.356057,2842665,2822415,119.395792,0.109304,59164184,29314530,0,0,69304,0,1,1 +1773652093.291687,15.42,4,3992.50,55.62,1549.66,2177.64,0.00,0.068012,0.116382,2842671,2822446,110.052832,0.102446,59176113,29322489,0,0,69307,0,1,1 +1773652098.290627,1.10,4,3992.50,54.75,1584.00,2143.73,0.00,3519183333434.686035,3519183332747.160645,258,2,0.003118,0.001569,59176171,29322530,0,0,69309,0,1,1 +1773652103.293068,0.70,4,3992.50,54.27,1603.09,2124.65,0.00,40832.467696,41519.478776,2842676,2822503,0.000013,0.000030,59176172,29322533,0,0,69312,0,1,1 +1773652108.293725,0.70,4,3992.50,54.09,1610.16,2117.58,0.00,3517974352505.888672,3517974352504.947754,2841173,2822012,0.000000,0.000020,59176172,29322535,0,0,69314,0,1,1 +1773652113.294869,0.55,4,3992.50,54.09,1609.93,2117.81,0.00,3517632525077.478027,3517632524402.419922,253,493,0.000000,0.000030,59176172,29322538,0,0,69317,0,1,1 +1773652118.290376,1.00,4,3992.50,54.39,1600.82,2129.40,0.00,0.000000,0.000000,253,493,0.000000,0.000020,59176172,29322540,0,0,69319,0,1,1 +1773652123.294872,0.65,4,3992.50,54.37,1599.60,2128.73,0.00,3515276234526.653320,3515276234517.463867,205,0,0.000000,0.000030,59176172,29322543,0,0,69322,0,1,1 +1773652128.295268,0.70,4,3992.50,54.38,1599.34,2128.98,0.00,40851.158348,41536.603215,2842676,2822588,0.000000,0.000020,59176172,29322545,0,0,69324,0,1,1 +1773652133.295281,0.65,4,3992.50,54.38,1599.35,2128.98,0.00,3518428331144.079590,3518428330458.708496,75,0,0.000000,0.000030,59176172,29322548,0,0,69327,0,1,1 +1773652138.294760,0.65,4,3992.50,54.37,1599.62,2128.71,0.00,40849.052157,41533.648255,2841173,2822109,0.000000,0.000020,59176172,29322550,0,0,69329,0,1,1 +1773652143.292830,0.60,4,3992.50,54.36,1600.08,2128.25,0.00,3519795816967.301758,3519795816282.512695,75,0,0.000113,0.000185,59176181,29322563,0,0,69332,0,1,1 +1773652148.294366,1.00,4,3992.50,54.45,1596.10,2131.95,0.00,0.126719,0.000000,205,0,0.000029,0.000036,59176184,29322567,0,0,69334,0,1,1 +1773652153.294891,0.60,4,3992.50,54.42,1597.13,2130.78,0.00,1.994908,0.000195,258,2,0.000000,0.000674,59176184,29322574,0,0,69337,0,1,1 +1773652158.294719,0.60,4,3992.50,54.42,1597.13,2130.78,0.00,3518558012237.150391,3518558012239.145996,205,0,0.000000,0.000020,59176184,29322576,0,0,69339,0,1,1 +1773652163.294542,18.85,4,3992.50,60.58,1356.04,2371.74,0.00,0.000000,0.000000,205,0,21.837003,0.016908,59178703,29323725,0,0,69342,0,1,1 +1773652168.295339,32.78,4,3992.50,60.22,1370.02,2357.77,0.00,3517876140003.203613,0.000000,75,0,118.345480,0.033812,59190775,29326269,0,0,69344,0,1,1 +1773652173.293355,28.25,4,3992.50,60.25,1368.83,2359.10,0.00,3519833870515.365723,0.000000,11,0,120.014637,0.021022,59203096,29327824,0,0,69347,0,1,1 +1773652178.294784,27.66,4,3992.50,60.34,1365.30,2362.54,0.00,40833.200401,41517.815548,2841176,2822369,118.130425,0.018954,59215206,29329216,0,0,69349,0,1,1 +1773652183.295134,27.94,4,3992.50,60.27,1368.21,2359.58,0.00,3518190368391.267090,3518190367706.504395,11,0,120.161439,0.033544,59227551,29331845,0,0,69352,0,1,1 +1773652188.295073,28.18,4,3992.50,60.48,1359.86,2367.95,0.00,1.657735,10.675325,253,493,118.365735,0.030165,59239695,29334180,0,0,69354,0,1,1 +1773652193.294407,28.19,4,3992.50,60.53,1358.04,2369.74,0.00,40848.652664,41524.748920,2841176,2822445,119.979597,0.022816,59251866,29335953,0,0,69357,0,1,1 +1773652198.293867,28.37,4,3992.50,60.31,1366.37,2361.43,0.00,3518817157361.759766,3518817156676.661621,11,0,119.577332,0.019687,59264086,29337442,0,0,69359,0,1,1 +1773652203.294529,28.54,4,3992.50,60.34,1365.41,2362.38,0.00,0.053509,0.000000,75,0,118.748845,0.026040,59276277,29339477,0,0,69362,0,1,1 +1773652208.294917,2.06,4,3992.50,56.15,1529.38,2198.48,0.00,3518164331613.992188,0.000000,11,0,50.269603,0.012077,59281432,29340329,0,0,69364,0,1,1 +1773652213.294234,0.75,4,3992.50,55.18,1567.39,2160.48,0.00,2.175688,0.000195,258,2,0.000619,0.000283,59281444,29340339,0,0,69367,0,1,1 +1773652218.290476,0.60,4,3992.50,54.73,1584.95,2142.92,0.00,3521083405876.229980,3521083405878.353516,75,0,0.000000,0.000664,59281444,29340345,0,0,69369,0,1,1 +1773652223.290443,0.60,4,3992.50,54.74,1584.86,2143.01,0.00,0.126759,0.000000,205,0,0.000000,0.000030,59281444,29340348,0,0,69372,0,1,1 +1773652228.295348,0.65,4,3992.50,54.72,1585.44,2142.43,0.00,1.475993,10.664733,253,493,0.000000,0.000020,59281444,29340350,0,0,69374,0,1,1 +1773652233.290351,0.60,4,3992.50,54.73,1585.19,2142.68,0.00,3521957073207.910645,3521957073198.831055,75,0,0.000000,0.000030,59281444,29340353,0,0,69377,0,1,1 +1773652238.290373,1.05,4,3992.50,54.73,1585.98,2142.61,0.00,0.000000,0.000000,75,0,0.000000,0.000020,59281444,29340355,0,0,69379,0,1,1 +1773652243.290449,0.55,4,3992.50,54.39,1598.36,2129.68,0.00,0.126756,0.000000,205,0,0.000000,0.000030,59281444,29340358,0,0,69382,0,1,1 +1773652248.290377,0.70,4,3992.50,54.39,1598.36,2129.68,0.00,40845.436204,41531.007757,2841200,2822730,0.000000,0.000020,59281444,29340360,0,0,69384,0,1,1 +1773652253.290380,0.65,4,3992.50,54.39,1598.37,2129.68,0.00,3518434904983.014160,3518434904295.458008,258,2,0.000101,0.000154,59281452,29340371,0,0,69387,0,1,1 +1773652258.290375,0.60,4,3992.50,54.40,1598.15,2129.89,0.00,0.000000,0.000000,258,2,0.000246,0.000599,59281463,29340388,0,0,69389,0,1,1 +1773652263.294708,0.80,4,3992.50,54.40,1598.15,2129.89,0.00,3515390528886.744629,3515390528888.918457,11,0,0.000512,0.001116,59281477,29340413,0,0,69392,0,1,1 +1773652268.295012,0.90,4,3992.50,53.98,1604.42,2113.48,0.00,1.657614,10.674548,253,493,0.000000,0.000020,59281477,29340415,0,0,69394,0,1,1 +1773652273.296792,17.99,4,3992.50,60.47,1349.02,2367.41,0.00,3517184747834.082031,3517184747825.068359,11,0,12.018801,0.014568,59283011,29341378,0,0,69397,0,1,1 +1773652278.290629,33.27,4,3992.50,60.73,1338.70,2377.68,0.00,40895.444697,41581.831684,2841203,2822908,118.307579,0.061567,59294928,29346149,0,0,69399,0,1,1 +1773652283.294133,28.40,4,3992.50,60.34,1354.01,2362.40,0.00,0.000000,0.008685,2841203,2822926,118.080904,0.037608,59306997,29348986,0,0,69402,0,1,1 +1773652288.292854,28.30,4,3992.50,60.21,1359.15,2357.29,0.00,0.000000,0.003517,2841203,2822932,119.994098,0.045399,59319193,29352563,0,0,69404,0,1,1 +1773652293.294150,28.25,4,3992.50,60.25,1357.37,2359.06,0.00,0.000000,0.013473,2841203,2822944,118.331598,0.027392,59331356,29354714,0,0,69407,0,1,1 +1773652298.295249,28.35,4,3992.50,60.44,1350.12,2366.27,0.00,9.724035,10.707901,2842706,2823453,120.136220,0.036539,59343438,29357560,0,0,69409,0,1,1 +1773652303.290565,28.54,4,3992.50,60.13,1369.24,2354.22,0.00,3521736537190.293457,3521736536503.045410,75,0,118.274054,0.050038,59355479,29361460,0,0,69412,0,1,1 +1773652308.294980,28.73,4,3992.50,60.01,1373.83,2349.65,0.00,40818.661465,41504.869350,2842706,2823531,120.059028,0.039248,59367684,29364488,0,0,69414,0,1,1 +1773652313.292553,28.22,4,3992.50,60.26,1364.21,2359.20,0.00,0.000000,0.003810,2842706,2823544,119.009506,0.047769,59379759,29368112,0,0,69417,0,1,1 +1773652318.294921,4.46,4,3992.50,55.52,1549.63,2173.89,0.00,3516771533594.068848,3516771532907.629395,11,0,61.271891,0.030456,59386038,29370273,0,0,69419,0,1,1 +1773652323.294529,0.75,4,3992.50,54.52,1588.92,2134.61,0.00,40858.097487,41545.009211,2842717,2823621,0.001549,0.000698,59386069,29370295,0,0,69422,0,1,1 +1773652328.290460,0.75,4,3992.50,54.21,1601.27,2122.25,0.00,3521302802136.080078,3521302801448.482422,205,0,0.000000,0.000020,59386069,29370297,0,0,69424,0,1,1 +1773652333.290393,1.00,4,3992.50,54.37,1589.85,2128.88,0.00,3518484599352.087891,0.000000,11,0,0.000000,0.000030,59386069,29370300,0,0,69427,0,1,1 +1773652338.294668,0.70,4,3992.50,54.38,1589.72,2129.01,0.00,0.000000,0.000000,11,0,0.000000,0.000020,59386069,29370302,0,0,69429,0,1,1 +1773652343.290398,0.65,4,3992.50,54.38,1589.72,2129.01,0.00,0.180428,0.000000,205,0,0.000000,0.000030,59386069,29370305,0,0,69432,0,1,1 +1773652348.295166,0.65,4,3992.50,54.38,1589.72,2129.01,0.00,40815.792638,41502.302699,2842717,2823693,0.000000,0.000663,59386069,29370311,0,0,69434,0,1,1 +1773652353.290375,0.65,4,3992.50,54.18,1597.36,2121.38,0.00,3521811684862.137207,3521811684861.190918,2841214,2823203,0.000025,0.000061,59386071,29370316,0,0,69437,0,1,1 +1773652358.290446,0.70,4,3992.50,54.00,1604.53,2114.20,0.00,9.726035,10.697897,2842717,2823704,0.000039,0.000053,59386074,29370321,0,0,69439,0,1,1 +1773652363.290448,0.90,4,3992.50,54.09,1601.99,2117.61,0.00,3518435377850.558594,3518435377161.372559,258,2,0.000088,0.000154,59386081,29370332,0,0,69442,0,1,1 +1773652368.295109,0.65,4,3992.50,54.07,1602.53,2117.09,0.00,40814.676321,41503.253516,2842717,2823734,0.000063,0.000082,59386086,29370338,0,0,69444,0,1,1 +1773652373.293576,0.65,4,3992.50,54.07,1602.53,2117.09,0.00,3519515991891.137207,3519515991203.882324,11,0,0.000000,0.000030,59386086,29370341,0,0,69447,0,1,1 +1773652378.290445,0.70,4,3992.50,54.07,1602.53,2117.09,0.00,0.000000,0.000000,11,0,0.000000,0.000020,59386086,29370343,0,0,69449,0,1,1 +1773652383.295296,20.78,4,3992.50,60.41,1354.12,2365.26,0.00,0.180099,0.000000,205,0,28.018872,0.019902,59389264,29371681,0,0,69452,0,1,1 +1773652388.291121,32.11,4,3992.50,60.56,1346.20,2371.09,0.00,1.996785,0.000195,258,2,118.467387,0.030459,59401560,29373952,0,0,69454,0,1,1 +1773652393.290376,27.97,4,3992.50,60.32,1355.57,2361.81,0.00,40849.103578,41537.645925,2841218,2823455,119.999909,0.063155,59413983,29378807,0,0,69457,0,1,1 +1773652398.291557,27.80,4,3992.50,60.17,1361.62,2355.73,0.00,3517606721594.049316,3517606720907.766602,205,0,118.551402,0.068119,59426280,29384081,0,0,69459,0,1,1 +1773652403.295294,28.35,4,3992.50,60.44,1350.82,2366.52,0.00,1.993627,0.000195,258,2,119.705387,0.100421,59438960,29391893,0,0,69462,0,1,1 +1773652408.294838,27.76,4,3992.50,60.21,1360.12,2357.26,0.00,3518757967597.505371,3518757967599.500488,205,0,119.405306,0.099916,59451727,29399678,0,0,69464,0,1,1 +1773652413.294555,27.92,4,3992.50,60.09,1364.86,2352.46,0.00,1.477525,10.675799,253,493,118.997497,0.092274,59464379,29406872,0,0,69467,0,1,1 +1773652418.293902,28.26,4,3992.50,60.32,1358.86,2361.80,0.00,0.517743,3518897127319.506836,258,2,120.213186,0.102704,59477205,29414829,0,0,69469,0,1,1 +1773652423.295030,26.90,4,3992.50,60.10,1367.56,2353.15,0.00,3517643858480.459961,3517643858482.634766,11,0,118.169260,0.109307,59489873,29423345,0,0,69472,0,1,1 +1773652428.294646,1.51,4,3992.50,53.84,1612.83,2107.87,0.00,40848.466851,41534.960171,2841229,2823579,44.077009,0.035570,59494614,29426056,0,0,69474,0,1,1 +1773652433.294688,0.65,4,3992.50,53.84,1612.84,2107.87,0.00,3518407502234.830566,3518407501557.412598,253,493,0.000000,0.000030,59494614,29426059,0,0,69477,0,1,1 +1773652438.294839,0.75,4,3992.50,53.84,1612.70,2108.00,0.00,3518330649201.169434,3518330649192.152832,11,0,0.000000,0.000020,59494614,29426061,0,0,69479,0,1,1 +1773652443.290380,0.60,4,3992.50,53.85,1612.46,2108.24,0.00,40881.791373,41568.913746,2841229,2823631,0.000000,0.000030,59494614,29426064,0,0,69482,0,1,1 +1773652448.290451,1.05,4,3992.50,53.86,1603.25,2108.67,0.00,9.726034,10.736957,2842732,2824153,0.000000,0.000020,59494614,29426066,0,0,69484,0,1,1 +1773652453.294931,0.80,4,3992.50,53.68,1610.30,2101.49,0.00,0.000000,0.028100,2842732,2824185,0.000000,0.000030,59494614,29426069,0,0,69487,0,1,1 +1773652458.294765,0.65,4,3992.50,53.62,1612.36,2099.45,0.00,3518554097323.272949,3518554096644.719727,253,493,0.000000,0.000020,59494614,29426071,0,0,69489,0,1,1 +1773652463.294580,0.65,4,3992.50,53.62,1612.36,2099.44,0.00,0.517695,3518567290305.247559,258,2,0.000000,0.000030,59494614,29426074,0,0,69492,0,1,1 +1773652468.295001,0.60,4,3992.50,53.65,1611.38,2100.41,0.00,3518141151675.743164,10.674102,253,493,0.000000,0.000020,59494614,29426076,0,0,69494,0,1,1 +1773652473.294992,0.65,4,3992.50,53.65,1611.39,2100.41,0.00,40853.469779,41532.135687,2842732,2824223,0.000126,0.000185,59494624,29426089,0,0,69497,0,1,1 +1773652478.295042,0.95,4,3992.50,53.69,1616.99,2102.10,0.00,3518402503320.976074,3518402502642.318359,253,493,0.000016,0.000680,59494626,29426097,0,0,69499,0,1,1 +1773652483.290453,0.65,4,3992.50,53.70,1616.44,2102.59,0.00,40890.926258,41570.255064,2842732,2824246,0.000000,0.000030,59494626,29426100,0,0,69502,0,1,1 +1773652488.294936,0.90,4,3992.50,53.70,1616.46,2102.59,0.00,3515285409599.683594,3515285409598.749023,2841229,2823766,0.000000,0.000020,59494626,29426102,0,0,69504,0,1,1 +1773652493.290723,17.17,4,3992.50,59.87,1374.86,2344.13,0.00,3521404407627.481445,3521404406937.937500,258,2,22.256163,0.018604,59497233,29427384,0,0,69507,0,1,1 +1773652498.293916,32.26,4,3992.50,60.09,1366.33,2352.61,0.00,3516191248052.133789,10.668186,253,493,118.688171,0.029170,59509334,29429589,0,0,69509,0,1,1 +1773652503.294072,28.85,4,3992.50,60.16,1363.46,2355.46,0.00,0.517660,3518327707959.270508,258,2,119.561257,0.024090,59521543,29431426,0,0,69512,0,1,1 +1773652508.294729,27.89,4,3992.50,59.93,1372.72,2346.23,0.00,3517975098227.704102,10.673598,253,493,118.146484,0.017529,59533636,29432790,0,0,69514,0,1,1 +1773652513.294743,28.33,4,3992.50,59.87,1361.16,2344.21,0.00,3518427433282.941895,3518427433273.744141,205,0,120.164104,0.024372,59545701,29434652,0,0,69517,0,1,1 +1773652518.290347,28.02,4,3992.50,60.04,1354.59,2350.78,0.00,3521533409374.289551,0.000000,11,0,118.272198,0.035865,59557816,29437404,0,0,69519,0,1,1 +1773652523.295202,28.63,4,3992.50,59.92,1359.21,2346.12,0.00,0.053464,0.000000,75,0,120.053094,0.036418,59570064,29440222,0,0,69522,0,1,1 +1773652528.294356,28.12,4,3992.50,59.84,1362.33,2342.97,0.00,0.000000,0.000000,75,0,119.586588,0.034332,59582095,29442901,0,0,69524,0,1,1 +1773652533.295285,28.18,4,3992.50,59.87,1361.18,2344.19,0.00,3517783338090.952637,0.000000,11,0,118.749958,0.044716,59594232,29446385,0,0,69527,0,1,1 +1773652538.294389,1.55,4,3992.50,54.24,1583.50,2123.52,0.00,2.175781,0.000195,258,2,49.883584,0.023768,59599397,29448188,0,0,69529,0,1,1 +1773652543.294357,1.10,4,3992.50,54.17,1582.89,2120.91,0.00,3518459965576.569824,3518459965578.564941,205,0,0.001659,0.001331,59599426,29448215,0,0,69532,0,1,1 +1773652548.294554,1.50,4,3992.50,54.18,1582.65,2121.16,0.00,0.000000,0.000000,205,0,0.000008,0.000189,59599427,29448219,0,0,69534,0,1,1 +1773652553.295013,0.60,4,3992.50,54.17,1582.85,2120.96,0.00,1.994934,0.000195,258,2,0.000000,0.000030,59599427,29448222,0,0,69537,0,1,1 +1773652558.290388,0.65,4,3992.50,54.17,1582.85,2120.96,0.00,3521694847753.486328,3521694847755.609863,75,0,0.000205,0.000552,59599434,29448235,0,0,69539,0,1,1 +1773652563.290473,0.70,4,3992.50,53.98,1590.51,2113.30,0.00,40854.446946,41542.921504,2842746,2824757,0.000512,0.001117,59599448,29448260,0,0,69542,0,1,1 +1773652568.294824,0.70,4,3992.50,53.98,1590.27,2113.55,0.00,3515378457688.244141,3515378457687.326172,2841243,2824271,0.000000,0.000020,59599448,29448262,0,0,69544,0,1,1 +1773652573.290373,1.10,4,3992.50,53.84,1595.76,2108.01,0.00,3521571980558.262695,3521571979870.136230,11,0,0.000000,0.000030,59599448,29448265,0,0,69547,0,1,1 +1773652578.290366,0.60,4,3992.50,53.84,1595.77,2108.00,0.00,1.657717,10.675210,253,493,0.000000,0.000020,59599448,29448267,0,0,69549,0,1,1 +1773652583.295206,0.65,4,3992.50,53.73,1600.05,2103.72,0.00,40814.033031,41492.895908,2842746,2824830,0.000075,0.000123,59599454,29448276,0,0,69552,0,1,1 +1773652588.295213,0.65,4,3992.50,53.57,1606.26,2097.51,0.00,3518432119781.648926,3518432119093.059082,75,0,0.000058,0.000090,59599459,29448283,0,0,69554,0,1,1 +1773652593.294673,0.70,4,3992.50,53.58,1606.02,2097.75,0.00,40859.556910,41548.234781,2842746,2824841,0.000000,0.000030,59599459,29448286,0,0,69557,0,1,1 +1773652598.290456,0.90,4,3992.50,53.79,1600.68,2106.12,0.00,3521407397697.176270,3521407397007.864746,205,0,0.000000,0.000020,59599459,29448288,0,0,69559,0,1,1 +1773652603.296539,16.42,4,3992.50,60.13,1352.26,2354.39,0.00,40795.666873,41482.651969,2841245,2824399,6.807332,0.011355,59600485,29449025,0,0,69562,0,1,1 +1773652608.294399,34.19,4,3992.50,60.21,1349.60,2357.18,0.00,3519943574353.805664,3519943573665.690430,205,0,118.215378,0.056806,59612522,29453323,0,0,69564,0,1,1 +1773652613.294829,28.45,4,3992.50,60.26,1347.62,2359.13,0.00,40841.777100,41529.632614,2841245,2824518,118.152614,0.038934,59624504,29456257,0,0,69567,0,1,1 +1773652618.291127,27.97,4,3992.50,60.05,1355.62,2351.09,0.00,3521044228055.622559,3521044227367.324707,75,0,119.657542,0.044462,59636817,29459553,0,0,69569,0,1,1 +1773652623.294494,28.10,4,3992.50,60.32,1345.05,2361.70,0.00,0.126673,0.000000,205,0,118.682904,0.040688,59648908,29462713,0,0,69572,0,1,1 +1773652628.291671,28.16,4,3992.50,60.20,1349.62,2357.13,0.00,40868.369550,41556.766248,2841245,2824602,119.830413,0.035085,59661053,29465470,0,0,69574,0,1,1 +1773652633.294793,28.48,4,3992.50,60.34,1344.25,2362.43,0.00,3516241488312.508789,3516241487625.110352,11,0,118.487823,0.023216,59673091,29467276,0,0,69577,0,1,1 +1773652638.295455,28.36,4,3992.50,60.18,1350.76,2355.99,0.00,1.657495,10.673782,253,493,120.149818,0.028201,59685321,29469463,0,0,69579,0,1,1 +1773652643.291951,28.23,4,3992.50,60.04,1356.23,2350.52,0.00,40882.190298,41562.652961,2842748,2825187,118.446220,0.036403,59697460,29472296,0,0,69582,0,1,1 +1773652648.290347,5.62,4,3992.50,56.65,1488.92,2217.89,0.00,0.135200,0.097004,2842759,2825213,67.114708,0.027859,59704261,29474428,0,0,69584,0,1,1 +1773652653.290657,0.70,4,3992.50,55.20,1545.49,2161.32,0.00,3518218781633.432129,3518218780944.509766,11,0,0.001553,0.000733,59704292,29474452,0,0,69587,0,1,1 +1773652658.293291,0.60,4,3992.50,54.44,1575.26,2131.55,0.00,2.174245,0.000195,258,2,0.000039,0.000053,59704295,29474457,0,0,69589,0,1,1 +1773652663.294433,1.20,4,3992.50,54.41,1576.69,2130.12,0.00,40843.830731,41535.010645,2842759,2825292,0.000025,0.000061,59704297,29474462,0,0,69592,0,1,1 +1773652668.290446,0.55,4,3992.50,54.31,1580.49,2126.32,0.00,3521244916469.297852,3521244915788.610352,253,493,0.000000,0.000020,59704297,29474464,0,0,69594,0,1,1 +1773652673.295217,0.70,4,3992.50,54.31,1580.49,2126.32,0.00,3515083437544.063477,3515083437535.055176,11,0,0.000000,0.000351,59704297,29474469,0,0,69597,0,1,1 +1773652678.294389,0.70,4,3992.50,54.31,1580.49,2126.31,0.00,40852.369984,41540.762908,2841256,2824844,0.000000,0.000342,59704297,29474473,0,0,69599,0,1,1 +1773652683.290448,0.60,4,3992.50,54.31,1580.50,2126.31,0.00,3521213037462.159668,3521213036782.361816,253,493,0.000000,0.000030,59704297,29474476,0,0,69602,0,1,1 +1773652688.290374,0.90,4,3992.50,54.25,1582.39,2123.89,0.00,40854.281021,41534.547117,2842759,2825362,0.000000,0.000020,59704297,29474478,0,0,69604,0,1,1 +1773652693.290444,0.70,4,3992.50,54.22,1583.34,2122.95,0.00,3518387985218.205566,3518387985217.276855,2841256,2824889,0.000076,0.000123,59704303,29474487,0,0,69607,0,1,1 +1773652698.295265,0.70,4,3992.50,54.22,1583.34,2122.95,0.00,3515047555656.966797,3515047554969.285156,11,0,0.000066,0.000098,59704309,29474495,0,0,69609,0,1,1 +1773652703.290612,0.55,4,3992.50,54.22,1583.46,2122.84,0.00,1.659259,10.685141,253,493,0.000000,0.000030,59704309,29474498,0,0,69612,0,1,1 +1773652708.295080,0.60,4,3992.50,54.22,1583.46,2122.84,0.00,3515295726187.635254,3515295726178.572754,75,0,0.000000,0.000020,59704309,29474500,0,0,69614,0,1,1 +1773652713.294429,9.32,4,3992.50,60.01,1356.79,2349.45,0.00,1.604408,10.676585,253,493,3.812645,0.008391,59704994,29474950,0,0,69617,0,1,1 +1773652718.294604,37.18,4,3992.50,60.98,1318.66,2387.51,0.00,40842.527696,41521.939234,2841258,2824982,115.955858,0.033790,59716778,29477521,0,0,69619,0,1,1 +1773652723.292847,27.92,4,3992.50,60.12,1352.52,2353.68,0.00,3519673680790.543945,3519673680110.869629,253,493,118.204437,0.021785,59728733,29479108,0,0,69622,0,1,1 +1773652728.290583,27.90,4,3992.50,60.03,1355.93,2350.27,0.00,3520030957105.902344,3520030957096.827637,75,0,120.220532,0.022487,59740971,29480813,0,0,69624,0,1,1 +1773652733.292543,27.79,4,3992.50,60.12,1352.21,2353.99,0.00,40839.273438,41528.497284,2842761,2825539,118.528687,0.056051,59753257,29485197,0,0,69627,0,1,1 +1773652738.290588,28.09,4,3992.50,60.06,1354.70,2351.54,0.00,3519813750996.391602,3519813750315.703125,253,493,119.836264,0.090244,59765857,29492228,0,0,69629,0,1,1 +1773652743.293833,33.50,4,3992.50,60.49,1319.04,2368.45,0.00,3516155101155.463867,3516155101146.452637,11,0,118.910110,0.091219,59778419,29499376,0,0,69632,0,1,1 +1773652748.290728,16.17,4,3992.50,61.20,1290.06,2395.96,0.00,0.000000,0.000000,11,0,65.582169,0.027424,59784912,29501489,0,0,69634,0,1,1 +1773652753.294262,35.05,4,3992.50,61.52,1275.13,2408.68,0.00,1.656544,10.667655,253,493,118.459472,0.027077,59795576,29503636,0,0,69637,0,1,1 +1773652758.291296,7.23,4,3992.50,61.97,1257.96,2426.27,0.00,3520525780515.777344,3520525780506.754883,11,0,5.818939,0.001821,59796143,29503781,0,0,69639,0,1,1 +1773652763.294966,9.70,4,3992.50,60.96,1301.29,2386.55,0.00,40825.517977,42314.704738,2842830,2830432,30.742639,0.008060,59799140,29504422,0,0,69642,0,1,1 +1773652768.290363,10.99,4,3992.50,61.34,1283.12,2401.49,0.00,3521678943224.200684,3521678941732.548340,11,0,89.416688,0.020838,59807224,29506076,0,0,69644,0,1,1 +1773652773.294925,1.26,4,3992.50,61.08,1291.52,2391.49,0.00,0.180109,0.000000,205,0,0.000205,0.000426,59807228,29506084,0,0,69647,0,1,1 +1773652778.293592,0.80,4,3992.50,60.86,1300.22,2382.80,0.00,40856.586586,42438.607983,2841357,2830374,0.000025,0.000051,59807230,29506088,0,0,69649,0,1,1 +1773652783.293948,1.15,4,3992.50,54.09,1572.93,2117.69,0.00,3518186853968.176270,3518186852386.815918,75,0,0.000854,0.000453,59807256,29506113,0,0,69652,0,1,1 +1773652788.294950,1.70,4,3992.50,54.55,1577.57,2135.85,0.00,0.000000,0.000000,75,0,0.003110,0.001487,59807314,29506157,0,0,69654,0,1,1 +1773652793.294915,0.65,4,3992.50,54.41,1583.01,2130.41,0.00,40855.939257,42467.551106,2842874,2831189,0.000000,0.000030,59807314,29506160,0,0,69657,0,1,1 +1773652798.294569,0.65,4,3992.50,54.41,1583.01,2130.40,0.00,3518680680435.365723,3518680678823.526855,205,0,0.000000,0.000020,59807314,29506162,0,0,69659,0,1,1 +1773652803.294724,0.70,4,3992.50,54.38,1584.25,2129.17,0.00,3518328443981.167969,0.000000,11,0,0.000000,0.000030,59807314,29506165,0,0,69662,0,1,1 +1773652808.294734,1.10,4,3992.50,54.41,1580.18,2130.34,0.00,0.000000,0.000000,11,0,0.000000,0.000020,59807314,29506167,0,0,69664,0,1,1 +1773652813.294988,0.80,4,3992.50,54.38,1581.56,2128.91,0.00,1.657631,10.674654,253,499,0.000000,0.000674,59807314,29506174,0,0,69667,0,1,1 +1773652818.295290,0.60,4,3992.50,54.38,1581.32,2129.15,0.00,40851.621567,42454.125568,2842887,2831280,0.000000,0.000020,59807314,29506176,0,0,69669,0,1,1 +1773652823.294579,0.65,4,3992.50,54.38,1581.32,2129.15,0.00,3518937755927.670898,3518937754313.647461,258,2,0.000000,0.000030,59807314,29506179,0,0,69672,0,1,1 +1773652828.294823,0.60,4,3992.50,54.40,1580.58,2129.89,0.00,0.000000,0.000000,258,2,0.000013,0.000051,59807315,29506183,0,0,69674,0,1,1 +1773652833.294599,0.70,4,3992.50,54.42,1579.93,2130.55,0.00,3518594841931.601074,10.675478,253,499,0.000113,0.000154,59807324,29506194,0,0,69677,0,1,1 +1773652838.294715,12.09,4,3992.50,54.50,1554.28,2133.61,0.00,40853.179809,42918.374630,2842928,2833916,0.000016,0.000036,59807326,29506198,0,0,69679,0,1,1 +1773652843.295246,0.65,4,3992.50,54.53,1553.06,2134.83,0.00,3518064044970.907227,3518064042905.883301,253,505,0.000000,0.000030,59807326,29506201,0,0,69682,0,1,1 +1773652848.294719,2.81,4,3992.50,54.26,1565.61,2124.26,0.00,3518807820981.486816,3518807820972.415039,75,0,0.000000,0.000020,59807326,29506203,0,0,69684,0,1,1 +1773652853.293588,6.67,4,3992.50,55.65,1513.41,2178.67,0.00,40865.023949,43281.446930,2842976,2835847,0.001371,0.000722,59807348,29506221,0,0,69687,0,1,1 +1773652858.290449,3.56,4,3992.50,54.42,1557.78,2130.80,0.00,3520646990833.127930,3520646988424.811035,253,508,0.000317,0.001174,59807362,29506245,0,0,69689,0,1,1 +1773652863.294415,5.12,4,3992.50,54.94,1540.64,2150.89,0.00,40821.812065,43453.994482,2842998,2837240,0.001433,0.001785,59807378,29506273,0,0,69692,0,1,1 +1773652868.291418,33.84,4,3992.50,60.46,1312.50,2367.21,0.00,3520547671586.167480,112.116625,2841505,2837464,61.926964,0.034128,59814044,29508877,0,0,69694,0,1,1 +1773652873.293920,32.74,4,3992.50,61.81,1263.71,2419.95,0.00,3516677287681.960938,3516677284918.234863,75,0,118.300920,0.044641,59826044,29512390,0,0,69697,0,1,1 +1773652878.290438,28.14,4,3992.50,60.69,1307.46,2376.30,0.00,3520889330144.592285,0.000000,11,0,118.242276,0.048706,59838033,29516245,0,0,69699,0,1,1 +1773652883.293953,28.69,4,3992.50,60.62,1310.27,2373.51,0.00,2.173862,0.000195,258,2,120.077289,0.053116,59850141,29520430,0,0,69702,0,1,1 +1773652888.292649,26.87,4,3992.50,61.27,1284.93,2398.82,0.00,3519354898971.757324,3519354898973.752930,205,0,107.422032,0.026916,59860239,29522559,0,0,69704,0,1,1 +1773652893.290873,29.68,4,3992.50,60.64,1309.40,2374.28,0.00,40860.514888,43765.854060,2841515,2838370,125.601861,0.026628,59871446,29524674,0,0,69707,0,1,1 +1773652898.295420,29.36,4,3992.50,60.48,1331.92,2368.08,0.00,3515240442125.312500,3515240439223.770508,75,0,121.772337,0.027806,59883129,29526846,0,0,69709,0,1,1 +1773652903.293532,38.77,4,3992.50,60.45,1333.17,2366.86,0.00,40871.412813,43777.554327,2843035,2838918,120.717636,0.020475,59894815,29528429,0,0,69712,0,1,1 +1773652908.290373,22.37,4,3992.50,60.36,1336.71,2363.34,0.00,0.002345,0.031465,2843038,2838942,119.540166,0.018401,59906582,29529724,0,0,69714,0,1,1 +1773652913.294655,1.20,4,3992.50,54.82,1553.66,2146.41,0.00,3515426934661.911621,3515426931768.387207,253,517,11.810552,0.004103,59907834,29529929,0,0,69717,0,1,1 +1773652918.294489,0.75,4,3992.50,54.34,1572.55,2127.51,0.00,40846.105448,43741.438259,2841552,2838498,0.001064,0.001065,59907856,29529948,0,0,69719,0,1,1 +1773652923.295135,0.70,4,3992.50,53.98,1586.49,2113.58,0.00,3517982542670.841797,3517982539766.909668,75,0,0.000000,0.000030,59907856,29529951,0,0,69722,0,1,1 +1773652928.295159,0.95,4,3992.50,54.36,1571.97,2128.21,0.00,0.000000,0.000000,75,0,0.000031,0.000045,59907858,29529955,0,0,69724,0,1,1 +1773652933.294393,6.02,4,3992.50,54.41,1548.45,2130.12,0.00,0.126777,0.000000,205,0,0.000008,0.000038,59907859,29529959,0,0,69727,0,1,1 +1773652938.295141,3.30,4,3992.50,54.19,1558.94,2121.82,0.00,1.994819,0.000195,258,2,0.000000,0.000342,59907859,29529963,0,0,69729,0,1,1 +1773652943.294487,5.47,4,3992.50,54.18,1558.44,2121.18,0.00,3518897126624.136230,3518897126626.312012,11,0,0.000031,0.000377,59907861,29529970,0,0,69732,0,1,1 +1773652948.292566,3.77,4,3992.50,53.82,1570.52,2107.23,0.00,2.176227,0.000195,258,2,0.000000,0.000503,59907861,29529975,0,0,69734,0,1,1 +1773652953.291394,8.12,4,3992.50,54.22,1555.27,2122.68,0.00,3519261689544.161133,3519261689546.336914,11,0,0.000025,0.000222,59907863,29529981,0,0,69737,0,1,1 +1773652958.290472,1.10,4,3992.50,54.01,1565.43,2114.53,0.00,0.000000,0.000000,11,0,0.000132,0.000169,59907873,29529993,0,0,69739,0,1,1 +1773652963.294592,5.46,4,3992.50,53.96,1566.06,2112.60,0.00,0.053472,0.000000,75,0,0.000050,0.000735,59907877,29530004,0,0,69742,0,1,1 +1773652968.290647,1.50,4,3992.50,54.04,1567.78,2115.93,0.00,0.126858,0.000000,205,0,0.000000,0.000020,59907877,29530006,0,0,69744,0,1,1 +1773652973.291274,0.85,4,3992.50,54.03,1589.89,2115.45,0.00,3517995921325.037109,0.000000,11,0,0.000000,0.000030,59907877,29530009,0,0,69747,0,1,1 +1773652978.293556,23.32,4,3992.50,60.30,1344.50,2360.71,0.00,0.000000,0.000000,11,0,44.448440,0.033752,59912736,29532406,0,0,69749,0,1,1 +1773652983.294725,32.91,4,3992.50,60.11,1351.98,2353.28,0.00,0.180231,0.000000,205,0,123.340651,0.050419,59925329,29536294,0,0,69752,0,1,1 +1773652988.290473,28.60,4,3992.50,60.25,1346.18,2359.07,0.00,3521431455286.570801,0.000000,11,0,122.070831,0.048739,59937655,29540132,0,0,69754,0,1,1 +1773652993.294337,28.51,4,3992.50,60.26,1345.90,2359.34,0.00,0.000000,0.000000,11,0,120.279279,0.047153,59949768,29543782,0,0,69757,0,1,1 +1773652998.290348,27.06,4,3992.50,60.69,1329.25,2375.98,0.00,0.000000,0.000000,11,0,114.211005,0.022771,59960350,29545586,0,0,69759,0,1,1 +1773653003.290661,26.20,4,3992.50,60.52,1335.82,2369.41,0.00,40844.135099,44874.995234,2841624,2845158,109.284370,0.025632,59970585,29547595,0,0,69762,0,1,1 +1773653008.294241,29.85,4,3992.50,60.67,1329.78,2375.42,0.00,3515919827101.388672,3515919823073.160156,11,0,126.802934,0.029517,59982343,29549938,0,0,69764,0,1,1 +1773653013.290446,25.29,4,3992.50,61.25,1307.16,2398.16,0.00,0.000000,0.000000,11,0,61.900992,0.015598,59988380,29551119,0,0,69767,0,1,1 +1773653018.295322,23.92,4,3992.50,61.21,1308.72,2396.51,0.00,1.656100,10.664794,253,529,100.431170,0.023624,59997526,29552946,0,0,69769,0,1,1 +1773653023.290375,12.53,4,3992.50,54.07,1587.66,2116.78,0.00,3521921808885.071777,3521921808875.992188,75,0,102.592973,0.023118,60006637,29554719,0,0,69772,0,1,1 +1773653028.290359,6.38,4,3992.50,54.30,1559.38,2126.14,0.00,2.121882,0.000195,258,2,0.003086,0.001420,60006693,29554757,0,0,69774,0,1,1 +1773653033.290371,1.05,4,3992.50,53.98,1571.48,2113.24,0.00,3518429336747.226562,3518429336749.401855,11,0,0.000000,0.000674,60006693,29554764,0,0,69777,0,1,1 +1773653038.290729,0.65,4,3992.50,53.98,1571.48,2113.24,0.00,40853.632218,45094.058908,2843144,2846978,0.000000,0.000020,60006693,29554766,0,0,69779,0,1,1 +1773653043.290449,5.19,4,3992.50,54.30,1552.32,2126.02,0.00,3518633841361.476562,3518633837120.508301,11,0,0.000000,0.000030,60006693,29554769,0,0,69782,0,1,1 +1773653048.294836,1.30,4,3992.50,54.01,1569.72,2114.61,0.00,40820.747003,45281.613876,2843145,2848137,0.000000,0.000020,60006693,29554771,0,0,69784,0,1,1 +1773653053.294393,3.28,4,3992.50,54.39,1555.37,2129.45,0.00,3518748944665.631836,3518748940200.455566,11,0,0.000000,0.000030,60006693,29554774,0,0,69787,0,1,1 +1773653058.291079,6.02,4,3992.50,54.36,1554.00,2128.27,0.00,0.000000,0.000000,11,0,0.000000,0.000020,60006693,29554776,0,0,69789,0,1,1 +1773653063.291091,0.70,4,3992.50,54.21,1559.95,2122.32,0.00,0.000000,0.000000,11,0,0.000000,0.000030,60006693,29554779,0,0,69792,0,1,1 +1773653068.295050,1.45,4,3992.50,54.30,1580.51,2125.82,0.00,0.000000,0.000000,11,0,0.000025,0.000051,60006695,29554783,0,0,69794,0,1,1 +1773653073.295038,0.65,4,3992.50,54.25,1580.29,2124.04,0.00,1.657719,10.675222,253,535,0.000101,0.000154,60006703,29554794,0,0,69797,0,1,1 +1773653078.294982,0.90,4,3992.50,54.33,1576.30,2127.04,0.00,0.000000,0.000000,253,535,0.000016,0.000036,60006705,29554798,0,0,69799,0,1,1 +1773653083.294494,0.60,4,3992.50,54.31,1576.98,2126.35,0.00,0.000000,0.000000,253,535,0.000000,0.000030,60006705,29554801,0,0,69802,0,1,1 +1773653088.290446,0.90,4,3992.50,54.32,1576.77,2126.57,0.00,40888.003289,45734.899493,2843145,2850571,0.000000,0.000020,60006705,29554803,0,0,69804,0,1,1 +1773653093.291058,28.10,4,3992.50,60.44,1337.04,2366.26,0.00,3518006621711.450684,3518006616860.054199,11,0,53.875814,0.028711,60012573,29556811,0,0,69807,0,1,1 +1773653098.292466,30.65,4,3992.50,60.21,1345.69,2357.49,0.00,0.000000,0.000000,11,0,118.129172,0.027279,60024694,29558933,0,0,69809,0,1,1 +1773653103.294883,28.80,4,3992.50,60.31,1341.79,2361.46,0.00,0.180186,0.000000,205,0,120.108607,0.025912,60037099,29560914,0,0,69812,0,1,1 +1773653108.292655,29.12,4,3992.50,60.41,1338.22,2365.06,0.00,0.000000,0.000000,205,0,118.214759,0.029702,60049211,29563235,0,0,69814,0,1,1 +1773653113.290425,30.14,4,3992.50,60.35,1340.35,2362.91,0.00,40874.624268,45729.140690,2843150,2850764,119.820213,0.021110,60061644,29564896,0,0,69817,0,1,1 +1773653118.294338,29.02,4,3992.50,61.06,1316.12,2390.52,0.00,3515686081793.726562,3515686076943.176270,258,2,118.674891,0.041944,60073858,29568187,0,0,69819,0,1,1 +1773653123.293687,33.55,4,3992.50,61.35,1284.33,2401.79,0.00,40849.987354,45950.620919,2841647,2851648,104.260199,0.025033,60083605,29570122,0,0,69822,0,1,1 +1773653128.293429,17.21,4,3992.50,62.09,1255.96,2430.87,0.00,9.726672,81.078778,2843150,2852576,57.561885,0.013314,60088858,29571180,0,0,69824,0,1,1 +1773653133.293610,6.22,4,3992.50,61.89,1261.21,2423.29,0.00,3518310287202.742676,3518310282033.786621,11,0,23.217751,0.005702,60091077,29571632,0,0,69827,0,1,1 +1773653138.291247,25.15,4,3992.50,62.01,1256.50,2428.02,0.00,40866.157390,46126.961347,2841647,2852515,98.072974,0.023504,60100091,29573480,0,0,69829,0,1,1 +1773653143.293331,6.25,4,3992.50,62.33,1248.38,2440.36,0.00,0.010152,207.545591,2841660,2853625,0.000483,0.000696,60100117,29573509,0,0,69832,0,1,1 +1773653148.290700,5.58,4,3992.50,62.15,1254.29,2433.36,0.00,3520289734590.386719,3520289729121.515625,75,0,19.778605,0.005492,60102054,29573945,0,0,69834,0,1,1 +1773653153.291092,0.86,4,3992.50,62.20,1252.62,2435.09,0.00,1.604073,10.674357,253,535,0.343340,0.000420,60102115,29573979,0,0,69837,0,1,1 +1773653158.294565,3.07,4,3992.50,61.41,1285.74,2404.52,0.00,3515995685304.140625,3515995685295.076172,75,0,11.799349,0.003068,60103251,29574192,0,0,69839,0,1,1 +1773653163.290894,4.02,4,3992.50,55.62,1512.83,2177.55,0.00,0.000000,0.000000,75,0,61.578404,0.015646,60109029,29575365,0,0,69842,0,1,1 +1773653168.290383,1.15,4,3992.50,54.94,1562.84,2151.21,0.00,40860.863410,46386.017088,2843179,2854663,0.002078,0.001995,60109071,29575409,0,0,69844,0,1,1 +1773653173.294954,1.15,4,3992.50,54.24,1588.07,2123.44,0.00,3515223796499.020020,3515223790988.538574,253,541,0.001527,0.000710,60109100,29575432,0,0,69847,0,1,1 +1773653178.291598,0.80,4,3992.50,54.18,1590.09,2121.42,0.00,0.000000,0.000000,253,541,0.000000,0.000020,60109100,29575434,0,0,69849,0,1,1 +1773653183.291663,0.65,4,3992.50,54.17,1590.69,2120.83,0.00,40844.828429,46359.375266,2841676,2854169,0.000000,0.000674,60109100,29575441,0,0,69852,0,1,1 +1773653188.292041,0.50,4,3992.50,54.19,1589.94,2121.59,0.00,3518171101421.197754,3518171095897.979004,11,0,0.000000,0.000020,60109100,29575443,0,0,69854,0,1,1 +1773653193.294796,0.70,4,3992.50,54.19,1589.94,2121.58,0.00,40824.524252,46345.124070,2841676,2854176,0.000000,0.000673,60109100,29575450,0,0,69857,0,1,1 +1773653198.295183,0.90,4,3992.50,54.33,1584.36,2127.16,0.00,9.725420,10.730811,2843179,2854749,0.000000,0.000020,60109100,29575452,0,0,69859,0,1,1 +1773653203.294857,0.45,4,3992.50,54.04,1595.84,2115.68,0.00,3518666690654.687500,3518666685129.679688,11,0,0.000031,0.000055,60109102,29575457,0,0,69862,0,1,1 +1773653208.290749,0.70,4,3992.50,54.04,1595.59,2115.93,0.00,40880.612669,46408.985600,2841680,2854271,0.001180,0.000686,60109129,29575477,0,0,69864,0,1,1 +1773653213.294044,0.60,4,3992.50,54.04,1595.60,2115.93,0.00,3516120373820.864746,3516120368298.497070,258,2,0.001341,0.001997,60109146,29575505,0,0,69867,0,1,1 +1773653218.294732,4.91,4,3992.50,54.24,1567.35,2123.78,0.00,3517953232798.996094,10.673532,253,544,0.001784,0.001426,60109175,29575528,0,0,69869,0,1,1 +1773653223.290418,4.48,4,3992.50,54.63,1552.85,2138.91,0.00,40890.394092,46737.591857,2843205,2856583,0.000000,0.000030,60109175,29575531,0,0,69872,0,1,1 +1773653228.294857,0.81,4,3992.50,54.63,1551.81,2139.06,0.00,3515316492915.262695,3515316487069.101562,205,0,0.000000,0.000020,60109175,29575533,0,0,69874,0,1,1 +1773653233.290394,3.81,4,3992.50,54.64,1554.28,2139.15,0.00,40893.096795,46932.492360,2843216,2857487,0.000000,0.000030,60109175,29575536,0,0,69877,0,1,1 +1773653238.294694,2.05,4,3992.50,54.20,1569.58,2121.98,0.00,3515413846029.106445,3515413840000.412109,75,0,0.001357,0.000398,60109196,29575552,0,0,69879,0,1,1 +1773653243.294770,5.03,4,3992.50,54.54,1555.32,2135.46,0.00,40846.393014,47128.026283,2841727,2858363,0.000013,0.000344,60109197,29575556,0,0,69882,0,1,1 +1773653248.292714,4.55,4,3992.50,54.68,1552.20,2140.88,0.00,3519884946697.129883,3519884940412.816406,75,0,0.000000,0.000020,60109197,29575558,0,0,69884,0,1,1 +1773653253.294814,1.61,4,3992.50,54.17,1574.21,2120.96,0.00,3516959613869.341309,0.000000,11,0,0.000152,0.001331,60109207,29575578,0,0,69887,0,1,1 +1773653258.297662,39.34,4,3992.50,60.56,1349.55,2371.17,0.00,0.000000,0.000000,11,0,100.904612,0.070211,60120230,29580911,0,0,69889,0,1,1 +1773653263.294464,31.06,4,3992.50,60.91,1335.75,2384.90,0.00,40882.957239,47419.578171,2843245,2860443,121.858723,0.029816,60132470,29583209,0,0,69892,0,1,1 +1773653268.291091,29.92,4,3992.50,60.88,1335.86,2383.76,0.00,3520812094504.135254,3520812087967.286133,11,0,120.389786,0.021978,60144317,29584861,0,0,69894,0,1,1 +1773653273.290376,29.19,4,3992.50,60.73,1341.84,2377.76,0.00,0.053523,0.000000,75,0,119.595485,0.025409,60156020,29586833,0,0,69897,0,1,1 +1773653278.290403,30.63,4,3992.50,60.84,1337.58,2382.03,0.00,0.000000,0.000000,75,0,120.123634,0.026274,60167597,29588765,0,0,69899,0,1,1 +1773653283.293916,29.38,4,3992.50,60.81,1338.75,2380.88,0.00,2.120385,0.000195,258,2,119.092960,0.029907,60179055,29591082,0,0,69902,0,1,1 +1773653288.294528,29.96,4,3992.50,60.74,1341.64,2378.01,0.00,3518006877838.168457,10.673694,253,549,119.163751,0.031864,60190544,29593528,0,0,69904,0,1,1 +1773653293.294680,30.03,4,3992.50,60.35,1344.36,2362.94,0.00,0.000000,0.000000,253,549,119.747056,0.032240,60201936,29596029,0,0,69907,0,1,1 +1773653298.292810,9.56,4,3992.50,55.06,1551.61,2155.84,0.00,3519753455883.958008,3519753455874.883789,75,0,84.570168,0.023621,60209982,29597832,0,0,69909,0,1,1 +1773653303.290585,1.10,4,3992.50,54.71,1565.47,2141.99,0.00,3520003194240.206055,0.000000,11,0,0.003150,0.001480,60210042,29597875,0,0,69912,0,1,1 +1773653308.294677,0.70,4,3992.50,54.10,1589.38,2118.08,0.00,0.000000,0.000000,11,0,0.000000,0.000020,60210042,29597877,0,0,69914,0,1,1 +1773653313.294899,8.04,4,3992.50,53.72,1582.67,2103.14,0.00,0.000000,0.000000,11,0,0.000000,0.000030,60210042,29597880,0,0,69917,0,1,1 +1773653318.294819,0.70,4,3992.50,53.88,1575.79,2109.63,0.00,2.175425,0.000195,258,2,0.000000,0.000020,60210042,29597882,0,0,69919,0,1,1 +1773653323.294485,8.47,4,3992.50,54.38,1559.35,2128.92,0.00,3518672154141.086426,10.675713,253,552,0.000000,0.000674,60210042,29597889,0,0,69922,0,1,1 +1773653328.294889,0.55,4,3992.50,54.35,1560.09,2127.93,0.00,0.517634,3518153404362.809570,258,2,0.000000,0.000020,60210042,29597891,0,0,69924,0,1,1 +1773653333.294607,5.80,4,3992.50,54.86,1540.82,2147.87,0.00,3518635578295.475098,3518635578297.470215,205,0,0.000000,0.000030,60210042,29597894,0,0,69927,0,1,1 +1773653338.294435,4.57,4,3992.50,54.97,1534.49,2152.36,0.00,3518557813081.755371,0.000000,11,0,0.000000,0.000020,60210042,29597896,0,0,69929,0,1,1 +1773653343.294869,0.80,4,3992.50,54.43,1555.82,2131.04,0.00,0.180258,0.000000,205,0,0.000025,0.000061,60210044,29597901,0,0,69932,0,1,1 +1773653348.294626,0.55,4,3992.50,53.99,1573.03,2113.83,0.00,0.000000,0.000000,205,0,0.000117,0.000160,60210054,29597913,0,0,69934,0,1,1 +1773653353.290408,1.66,4,3992.50,53.41,1595.55,2091.29,0.00,3521408365498.733398,0.000000,11,0,0.000000,0.000030,60210054,29597916,0,0,69937,0,1,1 +1773653358.290408,1.15,4,3992.50,53.36,1616.34,2089.30,0.00,40847.356854,48485.637808,2841887,2865779,0.000000,0.000020,60210054,29597918,0,0,69939,0,1,1 +1773653363.294932,0.65,4,3992.50,53.20,1621.86,2082.94,0.00,3515256655913.478027,3515256648281.921875,205,0,0.000000,0.000030,60210054,29597921,0,0,69942,0,1,1 +1773653368.294592,34.73,4,3992.50,59.48,1375.96,2328.83,0.00,40859.678962,48499.694203,2843393,2866415,90.738809,0.044460,60219707,29601201,0,0,69944,0,1,1 +1773653373.294616,31.98,4,3992.50,59.36,1380.76,2323.97,0.00,3518420594857.745117,3518420587218.464844,11,0,121.967623,0.040371,60232164,29604284,0,0,69947,0,1,1 +1773653378.290687,30.75,4,3992.50,59.53,1373.75,2330.82,0.00,2.177101,0.000195,258,2,120.259214,0.031396,60244454,29606747,0,0,69949,0,1,1 +1773653383.293535,31.03,4,3992.50,59.21,1383.18,2318.28,0.00,3516434290809.478027,3516434290811.652344,11,0,120.095597,0.038075,60256697,29609745,0,0,69952,0,1,1 +1773653388.294141,30.13,4,3992.50,59.45,1373.84,2327.65,0.00,2.175127,0.000195,258,2,119.549225,0.040216,60268914,29612911,0,0,69954,0,1,1 +1773653393.290561,31.07,4,3992.50,59.32,1379.01,2322.43,0.00,3520958307278.196777,3520958307280.320312,75,0,119.448920,0.040727,60281101,29616042,0,0,69957,0,1,1 +1773653398.294667,31.05,4,3992.50,59.07,1388.95,2312.54,0.00,2.120134,0.000195,258,2,119.465865,0.040938,60293358,29619286,0,0,69959,0,1,1 +1773653403.291167,31.84,4,3992.50,59.17,1384.81,2316.67,0.00,3520901494174.473633,3520901494176.597168,75,0,119.247180,0.044297,60305576,29622757,0,0,69962,0,1,1 +1773653408.294636,13.36,4,3992.50,53.24,1617.81,2084.59,0.00,3515998579072.674805,0.000000,11,0,94.665170,0.032853,60315298,29625329,0,0,69964,0,1,1 +1773653413.290424,1.00,4,3992.50,53.27,1616.68,2085.71,0.00,40881.862445,48527.330092,2841910,2866225,0.003120,0.001443,60315356,29625369,0,0,69967,0,1,1 +1773653418.294565,0.90,4,3992.50,53.27,1616.60,2085.79,0.00,9.718123,10.700903,2843413,2866821,0.000000,0.000020,60315356,29625371,0,0,69969,0,1,1 +1773653423.294369,0.65,4,3992.50,53.28,1616.39,2086.01,0.00,0.000000,0.039064,2843413,2866837,0.000000,0.000674,60315356,29625378,0,0,69972,0,1,1 +1773653428.294888,0.55,4,3992.50,53.29,1616.15,2086.25,0.00,3518072217288.692383,3518072209647.260254,258,2,0.000000,0.000020,60315356,29625380,0,0,69974,0,1,1 +1773653433.290413,0.70,4,3992.50,53.12,1622.75,2079.65,0.00,40881.839971,48530.033195,2841910,2866352,0.000000,0.000030,60315356,29625383,0,0,69977,0,1,1 +1773653438.290486,0.90,4,3992.50,53.21,1624.19,2083.27,0.00,0.000000,0.048437,2841910,2866383,0.000000,0.000020,60315356,29625385,0,0,69979,0,1,1 +1773653443.294482,0.60,4,3992.50,53.21,1623.53,2083.27,0.00,3515627748341.170410,3515627740717.059082,253,555,0.000000,0.000030,60315356,29625388,0,0,69982,0,1,1 +1773653448.290412,0.55,4,3992.50,53.21,1623.54,2083.27,0.00,3521303117907.757324,3521303117898.732422,11,0,0.000000,0.000020,60315356,29625390,0,0,69984,0,1,1 +1773653453.294948,0.65,4,3992.50,53.21,1623.54,2083.27,0.00,0.180110,0.000000,205,0,0.000025,0.000061,60315358,29625395,0,0,69987,0,1,1 +1773653458.290474,0.50,4,3992.50,53.21,1623.54,2083.27,0.00,40883.827374,48530.096397,2841910,2866414,0.001236,0.001355,60315376,29625420,0,0,69989,0,1,1 +1773653463.290425,0.65,4,3992.50,53.21,1623.54,2083.27,0.00,9.726268,10.682527,2843413,2866978,0.000512,0.001117,60315390,29625445,0,0,69992,0,1,1 +1773653468.291924,0.80,4,3992.50,53.49,1616.64,2094.30,0.00,3517382959112.017578,3517382951471.929688,258,2,0.000000,0.000020,60315390,29625447,0,0,69994,0,1,1 +1773653473.290663,34.39,4,3992.50,59.87,1362.57,2344.16,0.00,3519324072916.534180,3519324072918.656738,75,0,71.325921,0.030993,60323135,29627623,0,0,69997,0,1,1 +1773653478.290974,32.21,4,3992.50,59.70,1369.25,2337.41,0.00,3518218849926.582031,0.000000,11,0,118.770358,0.052442,60335721,29631688,0,0,69999,0,1,1 +1773653483.294723,30.51,4,3992.50,59.33,1383.73,2322.98,0.00,0.180138,0.000000,205,0,119.300397,0.084872,60348420,29638316,0,0,70002,0,1,1 +1773653488.291184,30.49,4,3992.50,59.60,1373.14,2333.54,0.00,1.478488,10.682756,253,555,119.068755,0.073708,60361090,29644080,0,0,70004,0,1,1 +1773653493.290446,29.68,4,3992.50,59.69,1369.53,2337.13,0.00,3518957108754.258301,3518957108745.059082,205,0,119.601695,0.063878,60373814,29649057,0,0,70007,0,1,1 +1773653498.290681,29.25,4,3992.50,59.29,1385.37,2321.36,0.00,0.000000,0.000000,205,0,118.766910,0.045763,60386101,29652634,0,0,70009,0,1,1 +1773653503.294801,30.46,4,3992.50,59.50,1372.19,2329.54,0.00,1.993475,0.000195,258,2,120.070255,0.027538,60398525,29654775,0,0,70012,0,1,1 +1773653508.294775,28.98,4,3992.50,59.51,1371.86,2329.95,0.00,3518455328222.327148,3518455328224.449219,75,0,118.967902,0.030166,60410626,29657074,0,0,70014,0,1,1 +1773653513.292959,19.25,4,3992.50,59.78,1361.45,2340.38,0.00,0.126804,0.000000,205,0,119.410581,0.025220,60422901,29658970,0,0,70017,0,1,1 +1773653518.290970,1.05,4,3992.50,54.32,1575.06,2126.76,0.00,0.000000,0.000000,205,0,0.204896,0.002176,60423025,29659049,0,0,70019,0,1,1 +1773653523.295249,0.65,4,3992.50,53.56,1604.66,2097.16,0.00,3515428443673.047852,0.000000,11,0,0.000000,0.000030,60423025,29659052,0,0,70022,0,1,1 +1773653528.290455,0.85,4,3992.50,53.29,1614.61,2086.50,0.00,0.000000,0.000000,11,0,0.000000,0.000020,60423025,29659054,0,0,70024,0,1,1 +1773653533.291649,0.60,4,3992.50,53.25,1616.39,2084.74,0.00,0.000000,0.000000,11,0,0.000000,0.000030,60423025,29659057,0,0,70027,0,1,1 +1773653538.293994,0.65,4,3992.50,53.26,1615.90,2085.22,0.00,0.180189,0.000000,205,0,0.000000,0.000020,60423025,29659059,0,0,70029,0,1,1 +1773653543.290408,0.60,4,3992.50,53.26,1615.90,2085.22,0.00,1.996549,0.000195,258,2,0.000000,0.000030,60423025,29659062,0,0,70032,0,1,1 +1773653548.290607,2.61,4,3992.50,53.80,1594.59,2106.54,0.00,0.000000,0.000000,258,2,0.000000,0.000664,60423025,29659068,0,0,70034,0,1,1 +1773653553.293587,0.55,4,3992.50,53.74,1597.09,2104.04,0.00,3516341382914.862793,3516341382916.983398,75,0,0.000025,0.000061,60423027,29659073,0,0,70037,0,1,1 +1773653558.294844,0.60,4,3992.50,53.70,1598.62,2102.50,0.00,3517553367318.753418,0.000000,11,0,0.000031,0.000045,60423029,29659077,0,0,70039,0,1,1 +1773653563.291298,0.75,4,3992.50,53.69,1597.20,2102.26,0.00,40900.960439,48532.644143,2844294,2867474,0.000159,0.000224,60423042,29659093,0,0,70042,0,1,1 +1773653568.290390,0.70,4,3992.50,53.51,1604.61,2094.84,0.00,3519075915482.322266,3519075907863.685547,253,555,0.000000,0.000020,60423042,29659095,0,0,70044,0,1,1 +1773653573.294995,0.60,4,3992.50,53.37,1609.87,2089.59,0.00,3515199791426.327148,3515199791417.265137,75,0,0.000000,0.000030,60423042,29659098,0,0,70047,0,1,1 +1773653578.294924,0.75,4,3992.50,53.36,1610.12,2089.34,0.00,40862.758750,48488.309928,2842791,2866988,0.000000,0.000020,60423042,29659100,0,0,70049,0,1,1 +1773653583.290350,29.37,4,3992.50,59.46,1371.30,2328.05,0.00,3521658718028.542480,3521658710393.994629,258,2,68.764488,0.030936,60430359,29661261,0,0,70052,0,1,1 +1773653588.294987,33.94,4,3992.50,59.56,1367.51,2331.88,0.00,0.000000,0.000000,258,2,123.257472,0.036086,60443044,29664016,0,0,70054,0,1,1 +1773653593.294879,31.44,4,3992.50,59.79,1362.15,2340.99,0.00,3518513557106.753906,3518513557108.875977,75,0,120.369554,0.025565,60455455,29665998,0,0,70057,0,1,1 +1773653598.291423,30.83,4,3992.50,59.46,1375.04,2328.16,0.00,1.605309,10.682578,253,555,120.647626,0.043326,60467718,29669409,0,0,70059,0,1,1 +1773653603.291658,30.42,4,3992.50,59.49,1373.88,2329.29,0.00,3518271719934.651367,3518271719925.634766,11,0,119.760201,0.039672,60480100,29672506,0,0,70062,0,1,1 +1773653608.290463,30.65,4,3992.50,59.69,1366.14,2336.98,0.00,40881.727082,48510.239139,2844296,2867795,119.993937,0.044252,60492460,29676019,0,0,70064,0,1,1 +1773653613.291077,30.32,4,3992.50,59.68,1366.37,2336.77,0.00,3518005409539.740723,3518005401913.988281,11,0,119.549304,0.040657,60504708,29679165,0,0,70067,0,1,1 +1773653618.290467,29.78,4,3992.50,59.73,1364.70,2338.48,0.00,40867.215299,48493.939066,2842793,2867265,119.578806,0.043237,60516921,29682551,0,0,70069,0,1,1 +1773653623.294898,17.40,4,3992.50,54.24,1579.71,2123.53,0.00,3515321521682.759277,3515321514063.718750,11,0,113.454418,0.037233,60528489,29685483,0,0,70072,0,1,1 +1773653628.294947,1.10,4,3992.50,53.89,1593.30,2109.93,0.00,40871.695763,48498.359296,2844311,2867871,0.003243,0.001682,60528557,29685533,0,0,70074,0,1,1 +1773653633.294562,0.70,4,3992.50,53.73,1599.72,2103.53,0.00,3518707916444.575684,3518707916443.758789,2842808,2867361,0.000013,0.000030,60528558,29685536,0,0,70077,0,1,1 +1773653638.291639,0.55,4,3992.50,53.73,1599.72,2103.53,0.00,9.731861,10.709776,2844311,2867926,0.000000,0.000020,60528558,29685538,0,0,70079,0,1,1 +1773653643.293580,0.60,4,3992.50,53.73,1599.50,2103.74,0.00,0.000000,0.003124,2844311,2867929,0.000000,0.000030,60528558,29685541,0,0,70082,0,1,1 +1773653648.290368,0.95,4,3992.50,53.82,1596.02,2107.36,0.00,3520698539442.476074,3520698531808.496094,258,2,0.000000,0.000020,60528558,29685543,0,0,70084,0,1,1 +1773653653.290962,0.55,4,3992.50,53.78,1597.67,2105.64,0.00,3518019180955.631348,3518019180957.626465,205,0,0.000000,0.000030,60528558,29685546,0,0,70087,0,1,1 +1773653658.293133,0.75,4,3992.50,53.87,1594.37,2108.94,0.00,1.994251,0.000195,258,2,0.000000,0.000020,60528558,29685548,0,0,70089,0,1,1 +1773653663.294559,0.55,4,3992.50,53.87,1594.14,2109.17,0.00,3517433976211.144531,3517433976213.319336,11,0,0.000000,0.000030,60528558,29685551,0,0,70092,0,1,1 +1773653668.294676,0.60,4,3992.50,53.87,1594.14,2109.17,0.00,0.000000,0.000000,11,0,0.000000,0.000020,60528558,29685553,0,0,70094,0,1,1 +1773653673.295344,0.65,4,3992.50,53.87,1594.14,2109.17,0.00,1.657493,10.673769,253,555,0.000113,0.000185,60528567,29685566,0,0,70097,0,1,1 +1773653678.294988,1.05,4,3992.50,53.90,1588.28,2110.40,0.00,3518687404445.750977,3518687404436.679688,75,0,0.000029,0.000680,60528570,29685574,0,0,70099,0,1,1 +1773653683.290444,0.60,4,3992.50,53.92,1587.37,2111.07,0.00,2.123805,0.000195,258,2,0.000000,0.000030,60528570,29685577,0,0,70102,0,1,1 +1773653688.290360,0.75,4,3992.50,53.92,1587.37,2111.07,0.00,3518496360436.095215,10.675179,253,555,0.000000,0.000020,60528570,29685579,0,0,70104,0,1,1 +1773653693.294642,30.91,4,3992.50,59.70,1360.91,2337.46,0.00,0.000000,0.000000,253,555,55.637782,0.028636,60534684,29687630,0,0,70107,0,1,1 +1773653698.294920,32.68,4,3992.50,59.53,1367.43,2330.91,0.00,40858.464332,48475.233941,2842824,2867621,118.158391,0.051221,60546862,29691595,0,0,70109,0,1,1 +1773653703.290575,29.31,4,3992.50,59.76,1358.62,2339.73,0.00,3521497254054.154297,3521497246421.311035,11,0,120.069752,0.023752,60559180,29693441,0,0,70112,0,1,1 +1773653708.290386,29.70,4,3992.50,60.04,1348.13,2350.72,0.00,40863.931937,48490.564163,2842824,2867708,118.365840,0.032608,60571175,29695983,0,0,70114,0,1,1 +1773653713.294584,29.44,4,3992.50,59.52,1368.01,2330.34,0.00,9.718014,10.744204,2844327,2868312,119.865515,0.033598,60583490,29698586,0,0,70117,0,1,1 +1773653718.293900,29.59,4,3992.50,59.59,1365.25,2333.04,0.00,0.000000,0.005469,2844327,2868326,118.779798,0.030742,60595644,29700953,0,0,70119,0,1,1 +1773653723.294529,29.60,4,3992.50,59.89,1353.54,2344.82,0.00,3517994512130.052246,3517994504503.580566,75,0,119.748273,0.030071,60607853,29703332,0,0,70122,0,1,1 +1773653728.296366,29.31,4,3992.50,59.63,1363.79,2334.53,0.00,40857.058876,48481.718778,2844327,2868352,119.118472,0.033751,60619910,29705957,0,0,70124,0,1,1 +1773653733.290360,21.28,4,3992.50,59.67,1362.09,2336.33,0.00,3522668391559.368164,3522668383922.607910,205,0,119.305029,0.050843,60631966,29709945,0,0,70127,0,1,1 +1773653738.294502,1.70,4,3992.50,54.49,1572.18,2133.57,0.00,3515524980332.142578,0.000000,11,0,16.412640,0.009472,60633718,29710612,0,0,70129,0,1,1 +1773653743.290375,0.65,4,3992.50,53.96,1593.04,2112.80,0.00,40896.242186,48529.175393,2842835,2867929,0.000000,0.000030,60633718,29710615,0,0,70132,0,1,1 +1773653748.295187,0.60,4,3992.50,53.81,1599.03,2106.80,0.00,3515054733491.930664,3515054725881.638184,253,555,0.000000,0.000663,60633718,29710621,0,0,70134,0,1,1 +1773653753.295124,0.80,4,3992.50,53.80,1599.38,2106.46,0.00,0.000000,0.000000,253,555,0.000000,0.000030,60633718,29710624,0,0,70137,0,1,1 +1773653758.292998,0.65,4,3992.50,53.61,1607.02,2098.82,0.00,3519933898150.965332,3519933898141.763672,205,0,0.000205,0.000552,60633725,29710637,0,0,70139,0,1,1 +1773653763.295201,0.60,4,3992.50,53.61,1606.78,2099.06,0.00,3516887503658.572266,0.000000,11,0,0.002355,0.002442,60633743,29710667,0,0,70142,0,1,1 +1773653768.295275,1.10,4,3992.50,53.71,1602.25,2102.75,0.00,1.657691,10.675039,253,555,0.000000,0.000020,60633743,29710669,0,0,70144,0,1,1 +1773653773.294800,0.65,4,3992.50,53.52,1609.68,2095.31,0.00,0.000000,0.000000,253,555,0.000008,0.000038,60633744,29710673,0,0,70147,0,1,1 +1773653778.295192,0.75,4,3992.50,53.52,1609.68,2095.31,0.00,3518161442018.883789,3518161442009.686523,205,0,0.000000,0.000020,60633744,29710675,0,0,70149,0,1,1 +1773653783.290463,0.60,4,3992.50,53.52,1609.76,2095.24,0.00,1.997006,0.000195,258,2,0.000126,0.000185,60633754,29710688,0,0,70152,0,1,1 +1773653788.294973,0.65,4,3992.50,53.52,1609.76,2095.23,0.00,3515266665435.028809,3515266665437.202637,11,0,0.000000,0.000020,60633754,29710690,0,0,70154,0,1,1 +1773653793.294358,0.70,4,3992.50,53.52,1609.76,2095.23,0.00,40867.523040,48495.267533,2842841,2868006,0.000000,0.000030,60633754,29710693,0,0,70157,0,1,1 +1773653798.294767,1.00,4,3992.50,53.71,1600.40,2102.83,0.00,3518149604324.518555,3518149596707.351074,253,555,0.000000,0.000020,60633754,29710695,0,0,70159,0,1,1 +1773653803.290705,26.40,4,3992.50,59.94,1356.43,2346.77,0.00,40903.801605,48528.794770,2844346,2868631,48.312570,0.024723,60638995,29712443,0,0,70162,0,1,1 +1773653808.291209,32.96,4,3992.50,59.89,1358.49,2344.64,0.00,0.000000,0.083585,2844346,2868729,118.153317,0.046716,60651072,29715925,0,0,70164,0,1,1 +1773653813.294528,29.66,4,3992.50,59.74,1364.25,2338.94,0.00,3516103034732.002930,3516103034731.055664,2842847,2868184,120.085774,0.035066,60663333,29718557,0,0,70167,0,1,1 +1773653818.291568,29.17,4,3992.50,59.96,1355.49,2347.66,0.00,3520521734423.525391,3520521726789.878418,258,2,118.232418,0.041450,60675293,29721760,0,0,70169,0,1,1 +1773653823.293089,29.75,4,3992.50,59.93,1356.96,2346.20,0.00,3517367036594.145996,3517367036596.320801,11,0,120.126690,0.035095,60687409,29724474,0,0,70172,0,1,1 +1773653828.294582,29.75,4,3992.50,60.35,1345.20,2362.70,0.00,1.657220,10.672010,253,555,118.737724,0.055947,60699627,29728873,0,0,70174,0,1,1 +1773653833.295369,30.26,4,3992.50,59.97,1359.95,2347.91,0.00,40864.143784,48482.204215,2844353,2868874,119.573685,0.097831,60712361,29736514,0,0,70177,0,1,1 +1773653838.290283,30.82,4,3992.50,59.72,1369.55,2338.24,0.00,3522019691069.553711,3522019683433.455566,75,0,119.314674,0.100175,60725170,29744350,0,0,70179,0,1,1 +1773653843.294652,25.06,4,3992.50,60.10,1354.70,2353.20,0.00,3515365781772.198730,0.000000,11,0,119.076284,0.068542,60737739,29749722,0,0,70182,0,1,1 +1773653848.295036,1.35,4,3992.50,54.92,1557.81,2150.07,0.00,0.000000,0.000000,11,0,23.836315,0.014574,60740319,29750790,0,0,70184,0,1,1 +1773653853.294756,0.60,4,3992.50,54.39,1578.29,2129.61,0.00,0.000000,0.000000,11,0,0.000033,0.000069,60740322,29750796,0,0,70187,0,1,1 +1773653858.294577,0.90,4,3992.50,53.99,1593.99,2113.66,0.00,0.000000,0.000000,11,0,0.000031,0.000045,60740324,29750800,0,0,70189,0,1,1 +1773653863.291845,0.55,4,3992.50,54.01,1590.66,2114.64,0.00,2.176580,0.000195,258,2,0.000025,0.000061,60740326,29750805,0,0,70192,0,1,1 +1773653868.292278,0.60,4,3992.50,54.02,1590.42,2114.89,0.00,3518132563228.030762,3518132563230.152344,75,0,0.000000,0.000020,60740326,29750807,0,0,70194,0,1,1 +1773653873.293826,0.65,4,3992.50,54.02,1590.42,2114.88,0.00,0.126719,0.000000,205,0,0.000000,0.000030,60740326,29750810,0,0,70197,0,1,1 +1773653878.295434,0.60,4,3992.50,53.98,1592.05,2113.25,0.00,0.000000,0.000000,205,0,0.000000,0.000664,60740326,29750816,0,0,70199,0,1,1 +1773653883.295014,0.50,4,3992.50,54.02,1590.45,2114.85,0.00,0.000000,0.000000,205,0,0.000000,0.000030,60740326,29750819,0,0,70202,0,1,1 +1773653888.290344,0.85,4,3992.50,53.75,1593.59,2104.31,0.00,40910.397759,48546.247278,2844364,2869050,0.000000,0.000020,60740326,29750821,0,0,70204,0,1,1 +1773653893.290375,0.55,4,3992.50,53.75,1593.62,2104.31,0.00,3518415712008.136230,3518415704379.645508,11,0,0.000126,0.000185,60740336,29750834,0,0,70207,0,1,1 +1773653898.290359,0.70,4,3992.50,53.75,1593.62,2104.31,0.00,0.053516,0.000000,75,0,0.000016,0.000036,60740338,29750838,0,0,70209,0,1,1 +1773653903.290864,0.55,4,3992.50,53.75,1593.37,2104.57,0.00,3518082278709.061523,0.000000,11,0,0.000000,0.000030,60740338,29750841,0,0,70212,0,1,1 +1773653908.290361,0.60,4,3992.50,53.75,1593.62,2104.32,0.00,40866.754731,48495.137224,2842861,2868520,0.000000,0.000020,60740338,29750843,0,0,70214,0,1,1 +1773653913.294836,28.99,4,3992.50,59.64,1362.87,2335.05,0.00,3515291040190.360840,3515291032569.566406,11,0,67.841980,0.033375,60747666,29753198,0,0,70217,0,1,1 +1773653918.294865,32.78,4,3992.50,59.75,1358.50,2339.34,0.00,1.657705,10.675132,253,555,122.572363,0.033031,60760322,29755683,0,0,70219,0,1,1 +1773653923.290362,31.03,4,3992.50,59.44,1365.86,2327.39,0.00,40897.830958,48523.458510,2842864,2868696,121.877113,0.036982,60772818,29758590,0,0,70222,0,1,1 +1773653928.292593,29.01,4,3992.50,59.49,1363.93,2329.29,0.00,3516868324009.824219,3516868316385.268066,205,0,120.111403,0.031457,60785099,29761060,0,0,70224,0,1,1 +1773653933.294552,29.63,4,3992.50,59.61,1359.33,2333.89,0.00,0.000000,0.000000,205,0,120.116084,0.047258,60797278,29764779,0,0,70227,0,1,1 +1773653938.292884,29.97,4,3992.50,59.60,1359.92,2333.35,0.00,3519611529381.564453,0.000000,11,0,120.203024,0.041845,60809426,29768056,0,0,70229,0,1,1 +1773653943.290532,29.33,4,3992.50,59.87,1349.25,2344.00,0.00,1.658495,10.680219,253,555,119.419889,0.039063,60821573,29771078,0,0,70232,0,1,1 +1773653948.290359,29.22,4,3992.50,59.49,1363.93,2329.31,0.00,3518558912315.760254,3518558912306.742676,11,0,118.965413,0.043381,60833570,29774458,0,0,70234,0,1,1 +1773653953.303097,23.46,4,3992.50,77.40,715.22,3030.19,0.00,0.000000,0.000000,11,0,68.802376,0.027517,60840493,29776633,0,0,70237,0,1,1 +1773653958.294502,30.37,4,3992.50,84.42,423.15,3305.27,0.00,2.179137,0.000196,258,2,45.455654,0.011984,60844825,29777546,0,0,70239,0,1,1 +1773653963.294239,29.67,4,3992.50,94.35,32.59,3693.84,0.00,3518622988656.202637,3518622988658.378418,11,0,0.003074,0.001455,60844880,29777587,0,0,70242,0,1,1 +1773653968.295453,28.92,4,3992.50,58.96,1434.97,2308.33,0.00,41353.141589,48497.688522,2874776,2877395,0.000000,0.000020,60844880,29777589,0,0,70244,0,1,1 +1773653973.296070,29.19,4,3992.50,54.15,1623.48,2120.15,0.00,3518003561619.829102,3518003554474.426270,11,0,0.000000,0.000030,60844880,29777592,0,0,70247,0,1,1 +1773653978.295111,29.73,4,3992.50,83.41,449.01,3265.53,0.00,41682.798641,48524.937667,2894633,2884044,0.000000,0.000020,60844880,29777594,0,0,70249,0,1,1 +1773653983.295704,24.44,4,3992.50,53.97,1617.02,2113.04,0.00,3518019332054.503906,3518019325212.314941,258,2,0.000000,0.000030,60844880,29777597,0,0,70252,0,1,1 +1773653988.294865,0.65,4,3992.50,53.69,1625.24,2102.18,0.00,3519027629225.292480,3519027629227.415039,75,0,0.000000,0.000020,60844880,29777599,0,0,70254,0,1,1 +1773653993.290377,0.90,4,3992.50,54.03,1603.09,2115.34,0.00,1.605641,10.684787,253,555,0.000000,0.000030,60844880,29777602,0,0,70257,0,1,1 +1773653998.294390,0.75,4,3992.50,53.79,1612.50,2105.83,0.00,0.517261,3515615343264.285156,258,2,0.000000,0.000020,60844880,29777604,0,0,70259,0,1,1 +1773654003.290580,0.80,4,3992.50,53.61,1617.74,2098.77,0.00,0.000000,0.000000,258,2,0.000025,0.000061,60844882,29777609,0,0,70262,0,1,1 +1773654008.291043,0.95,4,3992.50,53.89,1595.94,2110.07,0.00,41812.568199,48503.525301,2902787,2886795,0.000117,0.000160,60844892,29777621,0,0,70264,0,1,1 +1773654013.293335,0.70,4,3992.50,53.80,1598.81,2106.56,0.00,3516824571471.500488,3516824564782.990723,258,2,0.000000,0.000673,60844892,29777628,0,0,70267,0,1,1 +1773654018.290682,0.70,4,3992.50,53.81,1598.56,2106.80,0.00,41848.640915,48544.480300,2904308,2887375,0.000000,0.000020,60844892,29777630,0,0,70269,0,1,1 +1773654023.295154,25.48,4,3992.50,59.95,1346.42,2347.05,0.00,3515292880295.719238,3515292873620.597168,253,555,58.433686,0.033858,60851085,29780099,0,0,70272,0,1,1 +1773654028.293741,33.27,4,3992.50,60.20,1336.43,2356.99,0.00,3519431749614.165527,3519431749605.145996,11,0,122.202894,0.043786,60863503,29783471,0,0,70274,0,1,1 +1773654033.290397,29.86,4,3992.50,59.82,1353.56,2341.95,0.00,1.658824,10.682339,253,555,121.245923,0.043936,60875756,29786902,0,0,70277,0,1,1 +1773654038.294921,31.77,4,3992.50,60.18,1342.63,2356.14,0.00,3515256960128.203125,3515256960119.013672,205,0,120.654987,0.042085,60888010,29790211,0,0,70279,0,1,1 +1773654043.291402,37.75,4,3992.50,79.52,599.94,3113.32,0.00,41900.987741,48542.908568,2906354,2887440,118.644627,0.044544,60900022,29793701,0,0,70282,0,1,1 +1773654048.294907,62.45,4,3992.50,83.22,453.65,3258.21,0.00,3515972710633.900391,3515972704001.482910,11,0,120.083056,0.037654,60912483,29796664,0,0,70284,0,1,1 +1773654053.306727,63.24,4,3992.50,93.41,97.56,3657.14,0.00,2.170260,0.000195,258,2,117.484185,0.039907,60924566,29799787,0,0,70287,0,1,1 +1773654058.296152,63.12,4,3992.50,61.42,1322.73,2404.57,0.00,3525894245321.574707,3525894245323.754883,11,0,119.017267,0.041390,60936832,29802977,0,0,70289,0,1,1 +1773654063.291526,52.70,4,3992.50,70.79,963.38,2771.66,0.00,2.177405,0.000195,258,2,120.278614,0.039970,60949263,29806028,0,0,70292,0,1,1 +1773654068.303226,30.67,4,3992.50,94.32,65.31,3692.71,0.00,3510223301099.569336,3510223301101.560059,205,0,7.396322,0.004441,60950110,29806298,0,0,70294,0,1,1 +1773654073.295217,24.66,4,3992.50,53.34,1645.90,2088.21,0.00,3524082352530.377930,0.000000,11,0,0.000000,0.000030,60950110,29806301,0,0,70297,0,1,1 +1773654078.294542,0.70,4,3992.50,53.34,1640.18,2088.30,0.00,43076.276571,48532.536245,2985500,2905653,0.000000,0.000342,60950110,29806305,0,0,70299,0,1,1 +1773654083.290404,0.60,4,3992.50,53.33,1640.04,2088.09,0.00,3521351206479.177734,3521351201019.082520,75,0,0.000000,0.000352,60950110,29806310,0,0,70302,0,1,1 +1773654088.290450,0.60,4,3992.50,53.38,1636.43,2089.95,0.00,0.126757,0.000000,205,0,0.000000,0.000020,60950110,29806312,0,0,70304,0,1,1 +1773654093.290426,0.65,4,3992.50,53.38,1634.43,2090.01,0.00,43072.103245,48526.227876,2985602,2905667,0.000000,0.000030,60950110,29806315,0,0,70307,0,1,1 +1773654098.295001,0.75,4,3992.50,53.55,1618.51,2096.74,0.00,3515220653844.515625,3515220648395.583496,11,0,0.000000,0.000020,60950110,29806317,0,0,70309,0,1,1 +1773654103.290435,0.55,4,3992.50,53.51,1620.05,2095.20,0.00,0.000000,0.000000,11,0,0.000031,0.000055,60950112,29806322,0,0,70312,0,1,1 +1773654108.290412,0.75,4,3992.50,53.42,1621.89,2091.62,0.00,1.657722,10.675244,253,555,0.001180,0.000686,60950139,29806342,0,0,70314,0,1,1 +1773654113.290437,0.60,4,3992.50,53.47,1620.06,2093.34,0.00,3518419071431.229004,3518419071422.211914,11,0,0.001330,0.001378,60950156,29806367,0,0,70317,0,1,1 +1773654118.290414,0.65,4,3992.50,53.46,1620.18,2093.07,0.00,43087.199954,48537.273045,2987462,2906604,0.001721,0.001351,60950180,29806385,0,0,70319,0,1,1 +1773654123.294929,0.70,4,3992.50,53.43,1620.95,2091.82,0.00,3515262725368.375977,3515262719923.245605,11,0,0.000000,0.000030,60950180,29806388,0,0,70322,0,1,1 +1773654128.290445,1.00,4,3992.50,53.73,1608.64,2103.54,0.00,0.180435,0.000000,205,0,0.000000,0.000020,60950180,29806390,0,0,70324,0,1,1 +1773654133.294045,28.27,4,3992.50,68.71,1040.48,2690.32,0.00,3515905590204.147949,0.000000,11,0,50.641487,0.027606,60955710,29808311,0,0,70327,0,1,1 +1773654138.296933,67.39,4,3992.50,94.24,64.87,3689.62,0.00,0.180169,0.000000,205,0,118.498879,0.036176,60968061,29811072,0,0,70329,0,1,1 +1773654143.295672,63.55,4,3992.50,60.97,1359.36,2387.07,0.00,3519324700220.217285,0.000000,11,0,117.994947,0.042749,60980361,29814419,0,0,70332,0,1,1 +1773654148.297857,60.98,4,3992.50,65.75,1166.52,2574.30,0.00,1.656991,10.670534,253,555,114.709707,0.049876,60992261,29818279,0,0,70334,0,1,1 +1773654153.295328,65.64,4,3992.50,73.01,864.13,2858.35,0.00,0.517938,3520217157395.121582,258,2,121.832150,0.047615,61004960,29822002,0,0,70337,0,1,1 +1773654158.295094,63.50,4,3992.50,59.94,1404.16,2346.76,0.00,44299.937221,48556.417837,3071711,2924811,117.969210,0.039968,61017206,29825175,0,0,70339,0,1,1 +1773654163.291457,57.27,4,3992.50,60.51,1324.84,2368.98,0.00,197.040190,2.744379,3085511,2927445,121.055598,0.046898,61029726,29828869,0,0,70342,0,1,1 +1773654168.292987,32.50,4,3992.50,60.16,1337.93,2355.43,0.00,3517360911209.289551,3517360911206.611816,3084115,2926891,122.729092,0.050686,61042192,29832870,0,0,70344,0,1,1 +1773654173.290583,22.97,4,3992.50,60.20,1335.89,2357.09,0.00,3520129911089.415039,3520129907030.190430,11,0,121.624345,0.055143,61054574,29837220,0,0,70347,0,1,1 +1773654178.294678,1.20,4,3992.50,55.10,1535.38,2157.45,0.00,2.173610,0.000195,258,2,18.413647,0.011711,61056512,29838065,0,0,70349,0,1,1 +1773654183.295166,0.65,4,3992.50,54.44,1561.42,2131.46,0.00,44494.966851,48552.306143,3085868,2927503,0.000000,0.000030,61056512,29838068,0,0,70352,0,1,1 +1773654188.294843,0.95,4,3992.50,54.43,1571.22,2131.18,0.00,3518664716431.101562,3518664712373.103516,258,2,0.000000,0.000020,61056512,29838070,0,0,70354,0,1,1 +1773654193.294999,0.70,4,3992.50,54.44,1570.91,2131.48,0.00,0.000000,0.000000,258,2,0.000000,0.000030,61056512,29838073,0,0,70357,0,1,1 +1773654198.295173,0.60,4,3992.50,54.27,1577.61,2124.83,0.00,3518314473184.290527,3518314473186.465820,11,0,0.000000,0.000020,61056512,29838075,0,0,70359,0,1,1 +1773654203.294480,0.65,4,3992.50,54.29,1576.87,2125.56,0.00,0.000000,0.000000,11,0,0.000000,0.000030,61056512,29838078,0,0,70362,0,1,1 +1773654208.291372,0.65,4,3992.50,54.29,1576.87,2125.56,0.00,44534.053189,48587.469457,3086149,2927691,0.000000,0.000020,61056512,29838080,0,0,70364,0,1,1 +1773654213.295237,0.65,4,3992.50,54.29,1576.67,2125.76,0.00,3515719205454.070801,3515719201406.250488,75,0,0.000000,0.000673,61056512,29838087,0,0,70367,0,1,1 +1773654218.294948,0.85,4,3992.50,54.47,1578.64,2132.55,0.00,3518640420923.375977,0.000000,11,0,0.000000,0.000020,61056512,29838089,0,0,70369,0,1,1 +1773654223.295767,7.07,4,3992.50,64.24,1213.81,2515.17,0.00,0.180244,0.000000,205,0,0.000126,0.000185,61056522,29838102,0,0,70372,0,1,1 +1773654228.294061,30.62,4,3992.50,68.86,1049.97,2695.90,0.00,44685.516164,48567.911229,3116456,2929444,0.000016,0.000036,61056524,29838106,0,0,70374,0,1,1 +1773654233.295009,28.67,4,3992.50,91.54,146.84,3584.01,0.00,3517770484091.870117,3517770480209.539551,258,2,0.000000,0.000030,61056524,29838109,0,0,70377,0,1,1 +1773654238.290917,28.66,4,3992.50,79.63,625.63,3117.75,0.00,44943.554857,48604.957100,3133029,2932714,0.000000,0.000020,61056524,29838111,0,0,70379,0,1,1 +1773654243.295913,50.00,4,3992.50,68.87,1029.98,2696.50,0.00,3514924500975.754395,3514924497323.120605,75,0,20.815614,0.020048,61059003,29839401,0,0,70382,0,1,1 +1773654248.295768,66.48,4,3992.50,76.24,737.05,2985.09,0.00,45257.410218,48559.831481,3155199,2935649,119.970559,0.043875,61071332,29842781,0,0,70384,0,1,1 +1773654253.295745,55.28,4,3992.50,59.64,1341.06,2335.16,0.00,3518453181033.493164,3518453177731.026367,205,0,119.565077,0.050490,61083570,29846735,0,0,70387,0,1,1 +1773654258.294999,29.23,4,3992.50,59.86,1332.00,2343.61,0.00,3518962466111.730957,0.000000,11,0,120.381085,0.055933,61095691,29851112,0,0,70389,0,1,1 +1773654263.290532,28.86,4,3992.50,59.55,1362.21,2331.38,0.00,1.659197,10.684741,253,555,120.270953,0.056079,61107789,29855486,0,0,70392,0,1,1 +1773654268.294769,28.93,4,3992.50,59.52,1362.61,2330.35,0.00,0.517237,3515458180783.372559,258,2,119.859002,0.048602,61119806,29859324,0,0,70394,0,1,1 +1773654273.294888,29.00,4,3992.50,59.71,1352.65,2337.67,0.00,3518353122352.412109,3518353122354.587402,11,0,120.160590,0.053717,61131910,29863476,0,0,70397,0,1,1 +1773654278.294798,30.30,4,3992.50,59.53,1361.04,2330.54,0.00,1.657745,10.675388,253,555,118.361523,0.050973,61143788,29867432,0,0,70399,0,1,1 +1773654283.291862,28.86,4,3992.50,59.80,1349.88,2341.14,0.00,45473.082960,48578.109986,3167448,2937211,120.033235,0.052278,61155894,29871552,0,0,70402,0,1,1 +1773654288.290468,1.55,4,3992.50,53.73,1587.15,2103.73,0.00,3519418197034.284668,3519418193921.195801,11,0,46.078771,0.025979,61160607,29873503,0,0,70404,0,1,1 +1773654293.295038,1.05,4,3992.50,53.68,1589.34,2101.64,0.00,2.173404,0.000195,258,2,0.000000,0.000030,61160607,29873506,0,0,70407,0,1,1 +1773654298.291253,0.65,4,3992.50,53.67,1589.70,2101.29,0.00,3521102894334.042480,3521102894336.166016,75,0,0.000000,0.000020,61160607,29873508,0,0,70409,0,1,1 +1773654303.295282,0.75,4,3992.50,53.65,1590.59,2100.39,0.00,45416.142052,48521.406449,3167813,2937261,0.000000,0.000030,61160607,29873511,0,0,70412,0,1,1 +1773654308.294946,1.40,4,3992.50,53.84,1583.39,2107.87,0.00,9.739326,10.819867,3169318,2937928,0.000000,0.000020,61160607,29873513,0,0,70414,0,1,1 +1773654313.295895,7.41,4,3992.50,91.30,160.64,3574.59,0.00,12.067632,3517769571385.696289,3169325,2937406,0.000000,0.000030,61160607,29873516,0,0,70417,0,1,1 +1773654318.294844,28.61,4,3992.50,59.53,1412.59,2330.74,0.00,3519177047156.374512,3519177044069.372070,205,0,0.000000,0.000020,61160607,29873518,0,0,70419,0,1,1 +1773654323.293882,28.77,4,3992.50,63.77,1248.58,2496.82,0.00,1.477726,10.677249,253,555,0.000000,0.000030,61160607,29873521,0,0,70422,0,1,1 +1773654328.291606,28.31,4,3992.50,81.02,579.56,3172.20,0.00,45897.101282,48578.053899,3193936,2942666,0.000000,0.000020,61160607,29873523,0,0,70424,0,1,1 +1773654333.292174,28.21,4,3992.50,58.17,1466.78,2277.61,0.00,3518037636359.725098,3518037633669.104980,258,2,0.000126,0.000185,61160617,29873536,0,0,70427,0,1,1 +1773654338.295336,29.03,4,3992.50,68.69,1057.50,2689.48,0.00,3516213338263.975586,3516213338266.096191,75,0,0.000016,0.000036,61160619,29873540,0,0,70429,0,1,1 +1773654343.295890,25.05,4,3992.50,53.49,1646.36,2094.05,0.00,46251.838926,48566.902586,3218001,2947713,0.000000,0.000674,61160619,29873547,0,0,70432,0,1,1 +1773654348.295056,0.50,4,3992.50,53.49,1643.70,2094.06,0.00,3519023838797.069336,3519023836481.236816,205,0,0.000000,0.000020,61160619,29873549,0,0,70434,0,1,1 +1773654353.295140,18.25,4,3992.50,60.56,1322.53,2371.01,0.00,3518378357671.960449,0.000000,75,0,24.840055,0.017520,61163450,29874746,0,0,70437,0,1,1 +1773654358.290499,33.95,4,3992.50,60.98,1306.17,2387.39,0.00,2.123846,0.000195,258,2,124.167511,0.058552,61176446,29879195,0,0,70439,0,1,1 +1773654363.293241,28.67,4,3992.50,60.11,1339.93,2353.57,0.00,3516509111858.105469,3516509111860.279785,11,0,121.346548,0.024578,61188327,29880993,0,0,70442,0,1,1 +1773654368.290532,28.10,4,3992.50,60.16,1340.06,2355.47,0.00,2.176570,0.000195,258,2,119.575523,0.025290,61199793,29882972,0,0,70444,0,1,1 +1773654373.290404,28.87,4,3992.50,60.27,1341.75,2359.84,0.00,3518527422516.780273,3518527422518.902344,75,0,120.001773,0.026462,61211268,29884999,0,0,70447,0,1,1 +1773654378.294552,28.69,4,3992.50,60.42,1335.51,2365.53,0.00,0.126653,0.000000,205,0,120.064304,0.027820,61222840,29887176,0,0,70449,0,1,1 +1773654383.294340,29.15,4,3992.50,60.08,1348.14,2352.27,0.00,46280.477192,48585.542161,3220377,2948646,118.280722,0.030633,61234316,29889528,0,0,70452,0,1,1 +1773654388.294550,28.98,4,3992.50,60.45,1333.10,2366.61,0.00,3518288994616.655273,3518288994615.710938,3218874,2948100,120.069979,0.035444,61246167,29892245,0,0,70454,0,1,1 +1773654393.295025,25.16,4,3992.50,60.21,1341.81,2357.41,0.00,3518103315718.243652,3518103313414.566406,75,0,119.439024,0.033394,61257659,29894892,0,0,70457,0,1,1 +1773654398.294324,1.30,4,3992.50,55.09,1550.05,2156.88,0.00,46275.579847,48579.774717,3218886,2948133,37.657926,0.014448,61261596,29896009,0,0,70459,0,1,1 +1773654403.292305,7.27,4,3992.50,91.37,149.71,3577.40,0.00,31.628007,10.853504,3221894,2948766,0.003119,0.001455,61261654,29896050,0,0,70462,0,1,1 +1773654408.295255,28.56,4,3992.50,80.11,604.81,3136.33,0.00,124.036567,3516362060155.386230,3228640,2950062,0.001158,0.000679,61261679,29896069,0,0,70464,0,1,1 +1773654413.296192,27.98,4,3992.50,75.75,782.09,2965.61,0.00,3517778200285.460938,3517778198135.411621,75,0,0.000308,0.001228,61261686,29896087,0,0,70467,0,1,1 +1773654418.293355,28.71,4,3992.50,64.81,1204.47,2537.40,0.00,46726.189019,48617.879776,3247239,2954424,0.001052,0.000424,61261707,29896102,0,0,70469,0,1,1 +1773654423.292255,28.59,4,3992.50,57.95,1474.50,2268.95,0.00,3519211448528.741699,3519211446637.761719,11,0,0.000000,0.000030,61261707,29896105,0,0,70472,0,1,1 +1773654428.291301,28.46,4,3992.50,94.00,52.25,3680.21,0.00,0.000000,0.000000,11,0,0.000000,0.000020,61261707,29896107,0,0,70474,0,1,1 +1773654433.294959,25.88,4,3992.50,53.68,1643.21,2101.75,0.00,2.173800,0.000195,258,2,0.000000,0.000030,61261707,29896110,0,0,70477,0,1,1 +1773654438.290369,0.60,4,3992.50,53.63,1640.58,2099.73,0.00,0.000000,0.000000,258,2,0.000000,0.000020,61261707,29896112,0,0,70479,0,1,1 +1773654443.294774,0.60,4,3992.50,53.68,1636.36,2101.75,0.00,3515340031904.207520,3515340031906.381348,11,0,0.000000,0.000030,61261707,29896115,0,0,70482,0,1,1 +1773654448.294840,0.65,4,3992.50,53.57,1640.70,2097.23,0.00,0.053515,0.000000,75,0,0.000076,0.000113,61261713,29896123,0,0,70484,0,1,1 +1773654453.290387,0.65,4,3992.50,53.54,1641.02,2096.12,0.00,3521573350961.047852,0.000000,11,0,0.000066,0.000108,61261719,29896132,0,0,70487,0,1,1 +1773654458.290361,0.70,4,3992.50,53.65,1630.66,2100.36,0.00,47106.869606,48586.571475,3272105,2959743,0.000031,0.000045,61261721,29896136,0,0,70489,0,1,1 +1773654463.294454,1.05,4,3992.50,53.87,1617.19,2109.12,0.00,11.601051,10.690858,3273723,2960315,0.000050,0.000092,61261725,29896143,0,0,70492,0,1,1 +1773654468.290411,22.60,4,3992.50,60.26,1334.64,2359.12,0.00,3521284087553.987305,3521284086073.953613,75,0,36.887434,0.021248,61265775,29897585,0,0,70494,0,1,1 +1773654473.293688,32.26,4,3992.50,60.31,1332.66,2361.08,0.00,3516133018703.009766,0.000000,11,0,118.085807,0.032975,61277758,29900064,0,0,70497,0,1,1 +1773654478.294603,27.91,4,3992.50,60.16,1338.17,2355.57,0.00,47104.858884,48577.541070,3272683,2959873,119.345269,0.022680,61290013,29901683,0,0,70499,0,1,1 +1773654483.291288,28.25,4,3992.50,60.03,1343.25,2350.49,0.00,3520771144335.365723,3520771142861.256836,205,0,119.045755,0.028603,61302237,29903862,0,0,70502,0,1,1 +1773654488.290605,28.61,4,3992.50,60.38,1329.73,2363.99,0.00,3518917786781.376953,0.000000,11,0,119.382104,0.027347,61314536,29906018,0,0,70504,0,1,1 +1773654493.297406,35.15,4,3992.50,84.50,426.14,3308.30,0.00,47101.929365,48531.627734,3277289,2960801,118.802482,0.042976,61326693,29909351,0,0,70507,0,1,1 +1773654498.295274,61.66,4,3992.50,74.40,815.86,2913.11,0.00,3519938202758.586426,3519938201324.156250,258,2,118.813684,0.048397,61338870,29913166,0,0,70509,0,1,1 +1773654503.295480,62.16,4,3992.50,70.97,950.37,2778.61,0.00,47605.523540,48599.864239,3309869,2964253,118.759275,0.046687,61351077,29916818,0,0,70512,0,1,1 +1773654508.296063,58.48,4,3992.50,66.28,1145.86,2595.11,0.00,3518026952295.034668,3518026951302.763672,205,0,118.349400,0.048602,61363222,29920631,0,0,70514,0,1,1 +1773654513.295748,29.73,4,3992.50,90.31,193.02,3535.84,0.00,3518658778122.546387,0.000000,11,0,37.856920,0.015749,61367130,29921802,0,0,70517,0,1,1 +1773654518.292765,30.04,4,3992.50,77.21,698.98,3022.75,0.00,0.053548,0.000000,75,0,0.000868,0.000614,61367149,29921819,0,0,70519,0,1,1 +1773654523.295375,25.82,4,3992.50,53.91,1631.27,2110.81,0.00,0.000000,0.000000,75,0,0.000000,0.000030,61367149,29921822,0,0,70522,0,1,1 +1773654528.290447,0.65,4,3992.50,53.73,1635.16,2103.82,0.00,0.126883,0.000000,205,0,0.000000,0.000020,61367149,29921824,0,0,70524,0,1,1 +1773654533.290373,0.70,4,3992.50,53.76,1632.77,2104.67,0.00,3518489407784.531738,0.000000,75,0,0.000000,0.000030,61367149,29921827,0,0,70527,0,1,1 +1773654538.294660,0.60,4,3992.50,53.67,1635.45,2101.38,0.00,1.602825,10.666048,253,555,0.000000,0.000020,61367149,29921829,0,0,70529,0,1,1 +1773654543.293018,0.70,4,3992.50,53.71,1633.71,2102.95,0.00,3519593701617.175293,3519593701608.154785,11,0,0.000000,0.000674,61367149,29921836,0,0,70532,0,1,1 +1773654548.290423,1.05,4,3992.50,54.19,1604.43,2121.52,0.00,0.053543,0.000000,75,0,0.000000,0.000020,61367149,29921838,0,0,70534,0,1,1 +1773654553.292891,0.75,4,3992.50,53.89,1612.40,2110.08,0.00,0.000000,0.000000,75,0,0.000000,0.000030,61367149,29921841,0,0,70537,0,1,1 +1773654558.290358,1.47,4,3992.50,53.65,1586.17,2100.34,0.00,48380.860530,48625.646368,3370071,2972223,0.000076,0.000113,61367155,29921849,0,0,70539,0,1,1 +1773654563.291387,0.70,4,3992.50,53.56,1589.66,2096.83,0.00,3517713066026.829590,3517713065782.218262,75,0,0.000066,0.000108,61367161,29921858,0,0,70542,0,1,1 +1773654568.294957,0.70,4,3992.50,53.52,1590.93,2095.54,0.00,0.000000,0.000000,75,0,0.000000,0.000020,61367161,29921860,0,0,70544,0,1,1 +1773654573.291570,0.60,4,3992.50,53.51,1591.63,2094.84,0.00,0.126844,0.000000,205,0,0.000000,0.000030,61367161,29921863,0,0,70547,0,1,1 +1773654578.290938,19.03,4,3992.50,59.66,1347.00,2335.89,0.00,1.477628,10.676547,253,555,30.052278,0.023903,61370553,29923496,0,0,70549,0,1,1 +1773654583.291206,33.48,4,3992.50,59.80,1341.55,2341.30,0.00,0.517648,3518248684924.042969,258,2,118.155378,0.064827,61382521,29928570,0,0,70552,0,1,1 +1773654588.295778,29.52,4,3992.50,59.34,1371.39,2323.45,0.00,3515222292029.403320,3515222292031.576660,11,0,120.054036,0.051670,61394754,29932650,0,0,70554,0,1,1 +1773654593.291046,29.87,4,3992.50,59.15,1378.86,2316.01,0.00,0.000000,0.000000,11,0,118.274302,0.043585,61406825,29936052,0,0,70557,0,1,1 +1773654598.294810,29.78,4,3992.50,59.70,1357.62,2337.23,0.00,1.656468,10.667165,253,555,119.673142,0.051694,61419012,29940133,0,0,70559,0,1,1 +1773654603.294551,30.87,4,3992.50,59.66,1358.43,2335.75,0.00,3518619731650.383301,3518619731641.312500,75,0,118.568948,0.043402,61431160,29943526,0,0,70562,0,1,1 +1773654608.291677,29.47,4,3992.50,59.68,1354.36,2336.61,0.00,3520460328013.963867,0.000000,11,0,120.230715,0.048636,61443230,29947377,0,0,70564,0,1,1 +1773654613.295056,29.18,4,3992.50,59.21,1372.07,2318.00,0.00,0.053479,0.000000,75,0,118.680878,0.051250,61455239,29951358,0,0,70567,0,1,1 +1773654618.290376,27.22,4,3992.50,59.20,1371.89,2317.90,0.00,0.126877,0.000000,205,0,119.674281,0.049413,61467307,29955240,0,0,70569,0,1,1 +1773654623.290465,1.70,4,3992.50,54.12,1570.88,2118.89,0.00,3518374920980.768555,0.000000,11,0,42.060155,0.022325,61471645,29956910,0,0,70572,0,1,1 +1773654628.290388,0.70,4,3992.50,53.31,1602.68,2087.08,0.00,0.000000,0.000000,11,0,0.000000,0.000020,61471645,29956912,0,0,70574,0,1,1 +1773654633.294924,0.70,4,3992.50,52.97,1615.76,2074.01,0.00,2.173419,0.000195,258,2,0.000000,0.000030,61471645,29956915,0,0,70577,0,1,1 +1773654638.294318,0.85,4,3992.50,53.16,1608.52,2081.26,0.00,48365.328231,48607.727626,3370469,2972667,0.000000,0.000020,61471645,29956917,0,0,70579,0,1,1 +1773654643.294948,0.60,4,3992.50,53.15,1608.96,2080.78,0.00,9.837434,10.713105,3371979,2973267,0.000000,0.000030,61471645,29956920,0,0,70582,0,1,1 +1773654648.295119,0.55,4,3992.50,53.18,1607.77,2082.00,0.00,3518316824225.043457,3518316823983.980957,11,0,0.000000,0.000020,61471645,29956922,0,0,70584,0,1,1 +1773654653.290417,0.55,4,3992.50,53.18,1607.77,2082.00,0.00,1.659275,10.685242,253,555,0.000000,0.000030,61471645,29956925,0,0,70587,0,1,1 +1773654658.291579,0.70,4,3992.50,53.18,1607.77,2082.00,0.00,48358.590944,48590.610490,3371979,2973284,0.000205,0.000552,61471652,29956938,0,0,70589,0,1,1 +1773654663.290395,0.65,4,3992.50,53.18,1607.51,2082.26,0.00,0.000000,0.003126,3371979,2973288,0.001442,0.001795,61471669,29956967,0,0,70592,0,1,1 +1773654668.294701,0.85,4,3992.50,53.58,1591.91,2097.94,0.00,3515409115612.612793,3515409115611.691895,3370476,2972744,0.000126,0.000175,61471679,29956979,0,0,70594,0,1,1 +1773654673.290411,0.60,4,3992.50,53.36,1600.75,2089.06,0.00,3521458607925.923340,3521458607685.544922,11,0,0.000000,0.000513,61471679,29956985,0,0,70597,0,1,1 +1773654678.294763,0.70,4,3992.50,53.29,1603.28,2086.53,0.00,0.053469,0.000000,75,0,0.000000,0.000181,61471679,29956988,0,0,70599,0,1,1 +1773654683.295014,0.50,4,3992.50,53.29,1603.27,2086.54,0.00,0.126751,0.000000,205,0,0.000000,0.000030,61471679,29956991,0,0,70602,0,1,1 +1773654688.294840,16.28,4,3992.50,59.54,1358.77,2330.95,0.00,48373.182825,48614.326355,3372000,2973349,17.832156,0.016857,61473833,29958135,0,0,70604,0,1,1 +1773654693.290805,33.99,4,3992.50,59.51,1359.91,2329.82,0.00,3521278769801.642090,3521278769569.517578,253,555,119.263476,0.024493,61486180,29959966,0,0,70607,0,1,1 +1773654698.290962,29.43,4,3992.50,59.46,1361.80,2327.94,0.00,3518327242156.311035,3518327242147.240723,75,0,119.163527,0.019203,61498528,29961377,0,0,70609,0,1,1 +1773654703.290585,29.64,4,3992.50,59.32,1367.16,2322.51,0.00,3518702097480.785645,0.000000,11,0,118.773698,0.027883,61510734,29963515,0,0,70612,0,1,1 +1773654708.290453,30.77,4,3992.50,59.33,1366.76,2322.86,0.00,48363.233164,48603.407469,3370497,2972932,119.573710,0.028416,61523143,29965626,0,0,70614,0,1,1 +1773654713.294687,30.05,4,3992.50,59.48,1361.07,2328.59,0.00,3515460350957.823730,3515460350717.858887,11,0,119.070004,0.044623,61535346,29969075,0,0,70617,0,1,1 +1773654718.292850,29.86,4,3992.50,59.56,1357.70,2331.92,0.00,48389.454154,48630.812225,3372000,2973516,119.207888,0.022967,61547354,29970817,0,0,70619,0,1,1 +1773654723.293762,29.80,4,3992.50,59.48,1360.87,2328.77,0.00,3517795878989.017578,3517795878745.617188,258,2,119.939435,0.015942,61559387,29972055,0,0,70622,0,1,1 +1773654728.293857,29.21,4,3992.50,59.67,1353.41,2336.22,0.00,3518370766560.173828,3518370766562.295898,75,0,118.763018,0.026512,61571472,29974076,0,0,70624,0,1,1 +1773654733.294593,2.51,4,3992.50,53.62,1594.21,2099.42,0.00,2.121563,0.000195,258,2,53.866490,0.011834,61576926,29975001,0,0,70627,0,1,1 +1773654738.290404,1.20,4,3992.50,53.52,1597.18,2095.36,0.00,3521387067785.113770,3521387067787.110840,205,0,0.003097,0.001429,61576983,29975040,0,0,70629,0,1,1 +1773654743.294488,0.60,4,3992.50,53.52,1597.21,2095.36,0.00,3515565909097.988770,0.000000,11,0,0.000000,0.000030,61576983,29975043,0,0,70632,0,1,1 +1773654748.290467,0.80,4,3992.50,53.54,1596.48,2096.09,0.00,2.177141,0.000195,258,2,0.000000,0.000664,61576983,29975049,0,0,70634,0,1,1 +1773654753.294418,0.55,4,3992.50,53.54,1596.48,2096.09,0.00,48321.765291,48564.128273,3370516,2973061,0.000025,0.000061,61576985,29975054,0,0,70637,0,1,1 +1773654758.294778,1.15,4,3992.50,53.94,1580.50,2112.02,0.00,3518184254438.672363,3518184254198.310547,11,0,0.000039,0.000053,61576988,29975059,0,0,70639,0,1,1 +1773654763.294363,0.65,4,3992.50,53.74,1588.50,2104.01,0.00,0.000000,0.000000,11,0,0.000025,0.000061,61576990,29975064,0,0,70642,0,1,1 +1773654768.290373,0.70,4,3992.50,53.72,1589.21,2103.30,0.00,0.053558,0.000000,75,0,0.000000,0.000020,61576990,29975066,0,0,70644,0,1,1 +1773654773.290687,0.55,4,3992.50,53.74,1588.48,2104.04,0.00,2.121742,0.000195,258,2,0.000000,0.000030,61576990,29975069,0,0,70647,0,1,1 +1773654778.294563,0.65,4,3992.50,53.74,1588.48,2104.04,0.00,48322.488938,48565.037439,3370516,2973126,0.000025,0.000051,61576992,29975073,0,0,70649,0,1,1 +1773654783.294616,0.65,4,3992.50,53.74,1588.48,2104.04,0.00,3518399873225.075195,3518399872982.341309,258,2,0.000109,0.000162,61577001,29975085,0,0,70652,0,1,1 +1773654788.292979,0.55,4,3992.50,53.55,1595.88,2096.64,0.00,3519589252097.886719,3519589252099.882812,205,0,0.000000,0.000020,61577001,29975087,0,0,70654,0,1,1 +1773654793.294468,1.05,4,3992.50,53.83,1590.93,2107.43,0.00,0.000000,0.000000,205,0,0.000000,0.000030,61577001,29975090,0,0,70657,0,1,1 +1773654798.290385,13.92,4,3992.50,59.95,1350.90,2347.35,0.00,1.478649,10.683921,253,555,9.227244,0.013526,61578267,29975947,0,0,70659,0,1,1 +1773654803.290356,34.12,4,3992.50,60.07,1346.53,2351.70,0.00,0.517679,3518457411854.984375,258,2,118.168739,0.029666,61590479,29978155,0,0,70662,0,1,1 +1773654808.290473,29.33,4,3992.50,59.71,1360.42,2337.84,0.00,3518354732313.060547,3518354732315.236328,11,0,120.174289,0.051112,61603004,29982095,0,0,70664,0,1,1 +1773654813.290708,29.70,4,3992.50,59.66,1362.66,2335.62,0.00,0.053513,0.000000,75,0,118.166797,0.042608,61615339,29985332,0,0,70667,0,1,1 +1773654818.294956,30.63,4,3992.50,59.84,1355.32,2342.98,0.00,48321.086639,48561.593702,3370527,2973282,120.077731,0.057814,61627869,29989828,0,0,70669,0,1,1 +1773654823.294731,29.82,4,3992.50,60.12,1356.04,2353.74,0.00,3518595947721.104980,3518595947478.260742,258,2,118.996427,0.092032,61640483,29996976,0,0,70672,0,1,1 +1773654828.290848,29.73,4,3992.50,59.82,1367.55,2342.21,0.00,0.000000,0.000000,258,2,119.484442,0.095410,61653215,30004438,0,0,70674,0,1,1 +1773654833.294912,30.53,4,3992.50,60.09,1357.07,2352.66,0.00,3515580125740.645508,3515580125742.765625,75,0,119.491474,0.089069,61665957,30011390,0,0,70677,0,1,1 +1773654838.294469,31.39,4,3992.50,59.90,1364.55,2345.21,0.00,48376.153185,48618.053499,3372030,2973933,118.801210,0.091266,61678667,30018523,0,0,70679,0,1,1 +1773654843.290425,4.68,4,3992.50,55.02,1555.50,2154.32,0.00,3521285454369.977539,3521285454136.981445,253,555,62.950511,0.044834,61685419,30022017,0,0,70682,0,1,1 +1773654848.292876,1.25,4,3992.50,54.22,1580.53,2122.70,0.00,48336.984094,48568.758338,3370542,2973457,0.003093,0.001427,61685476,30022056,0,0,70684,0,1,1 +1773654853.294812,0.55,4,3992.50,53.94,1591.35,2111.88,0.00,3517075615436.891113,3517075615196.079102,11,0,0.000000,0.000030,61685476,30022059,0,0,70687,0,1,1 +1773654858.293046,0.75,4,3992.50,53.83,1595.68,2107.54,0.00,2.176159,0.000195,258,2,0.000000,0.000020,61685476,30022061,0,0,70689,0,1,1 +1773654863.290418,0.65,4,3992.50,53.84,1595.44,2107.79,0.00,3520287424779.637695,3520287424781.813965,11,0,0.000000,0.000030,61685476,30022064,0,0,70692,0,1,1 +1773654868.290442,0.65,4,3992.50,53.65,1602.84,2100.39,0.00,48362.117474,48603.075624,3370543,2973483,0.000000,0.000020,61685476,30022066,0,0,70694,0,1,1 +1773654873.294322,0.70,4,3992.50,53.45,1610.46,2092.78,0.00,3515708560746.279297,3515708560505.326660,205,0,0.000000,0.000030,61685476,30022069,0,0,70697,0,1,1 +1773654878.293884,1.00,4,3992.50,53.88,1593.80,2109.41,0.00,3518745304591.950684,0.000000,75,0,0.000000,0.000664,61685476,30022075,0,0,70699,0,1,1 +1773654883.294707,0.55,4,3992.50,53.78,1597.65,2105.58,0.00,0.126737,0.000000,205,0,0.000000,0.000030,61685476,30022078,0,0,70702,0,1,1 +1773654888.294780,0.60,4,3992.50,53.70,1600.59,2102.65,0.00,0.000000,0.000000,205,0,0.000025,0.000051,61685478,30022082,0,0,70704,0,1,1 +1773654893.293965,0.70,4,3992.50,53.57,1605.86,2097.37,0.00,3519010330389.072266,0.000000,11,0,0.000117,0.000170,61685488,30022095,0,0,70707,0,1,1 +1773654898.294692,0.55,4,3992.50,53.57,1605.86,2097.37,0.00,2.175075,0.000195,258,2,0.000000,0.000020,61685488,30022097,0,0,70709,0,1,1 +1773654903.292138,0.60,4,3992.50,53.56,1606.25,2096.98,0.00,48385.002200,48628.339066,3370556,2973550,0.000000,0.000030,61685488,30022100,0,0,70712,0,1,1 +1773654908.293569,8.92,4,3992.50,59.72,1360.17,2338.32,0.00,3517430902332.202148,3517430902089.059082,258,2,3.811096,0.009599,61686197,30022625,0,0,70714,0,1,1 +1773654913.290392,37.61,4,3992.50,59.70,1362.76,2337.56,0.00,3520674086767.080566,10.681787,253,555,122.449191,0.029864,61698804,30024854,0,0,70717,0,1,1 +1773654918.294465,30.19,4,3992.50,59.65,1364.74,2335.48,0.00,48331.213180,48564.104992,3372067,2974266,122.070872,0.019925,61711378,30026324,0,0,70719,0,1,1 +1773654923.290282,30.29,4,3992.50,59.43,1373.30,2326.83,0.00,3521383346783.770508,3521383346782.827637,3370564,2973721,120.267515,0.028008,61723693,30028519,0,0,70722,0,1,1 +1773654928.291078,30.46,4,3992.50,59.56,1368.29,2332.01,0.00,3517877314267.681641,3517877314026.562500,11,0,120.151469,0.032979,61736152,30031062,0,0,70724,0,1,1 +1773654933.290374,30.81,4,3992.50,59.46,1372.39,2327.95,0.00,0.000000,0.000000,11,0,120.190246,0.037958,61748669,30033984,0,0,70727,0,1,1 +1773654938.293383,30.26,4,3992.50,60.05,1349.25,2351.02,0.00,0.000000,0.000000,11,0,120.097425,0.032036,61761067,30036477,0,0,70729,0,1,1 +1773654943.291617,30.23,4,3992.50,59.83,1357.78,2342.41,0.00,48379.629830,48621.058844,3370565,2973793,119.406951,0.017172,61773317,30037719,0,0,70732,0,1,1 +1773654948.294293,30.44,4,3992.50,59.77,1359.93,2340.27,0.00,3516555244332.654297,3516555244091.439941,11,0,119.296654,0.015769,61785248,30038931,0,0,70734,0,1,1 +1773654953.290431,3.41,4,3992.50,54.46,1568.27,2132.04,0.00,0.180413,0.000000,205,0,57.723826,0.008592,61791077,30039556,0,0,70737,0,1,1 +1773654958.291442,1.50,4,3992.50,53.93,1588.73,2111.57,0.00,1.477143,10.673038,253,555,0.003298,0.001972,61791141,30039607,0,0,70739,0,1,1 +1773654963.295211,0.60,4,3992.50,53.56,1603.31,2097.00,0.00,48324.646487,48556.741872,3370584,2973852,0.000512,0.001116,61791155,30039632,0,0,70742,0,1,1 +1773654968.290375,0.70,4,3992.50,53.56,1603.30,2097.00,0.00,9.735587,10.717005,3372087,2974413,0.000000,0.000020,61791155,30039634,0,0,70744,0,1,1 +1773654973.290377,0.85,4,3992.50,53.53,1611.16,2095.83,0.00,3518435969168.382812,3518435968926.060547,75,0,0.000000,0.000030,61791155,30039637,0,0,70747,0,1,1 +1773654978.294568,0.60,4,3992.50,53.53,1611.16,2095.82,0.00,3515490508567.608887,0.000000,11,0,0.000000,0.000020,61791155,30039639,0,0,70749,0,1,1 +1773654983.290384,0.55,4,3992.50,53.37,1617.39,2089.61,0.00,0.053560,0.000000,75,0,0.000000,0.000030,61791155,30039642,0,0,70752,0,1,1 +1773654988.294468,0.65,4,3992.50,53.38,1616.97,2090.02,0.00,48323.218088,48564.466281,3370585,2973898,0.000000,0.000020,61791155,30039644,0,0,70754,0,1,1 +1773654993.290613,0.60,4,3992.50,53.42,1615.64,2091.35,0.00,3521151652244.926270,3521151652003.348633,11,0,0.000000,0.000030,61791155,30039647,0,0,70757,0,1,1 +1773654998.290839,0.85,4,3992.50,53.44,1613.62,2092.22,0.00,48360.550603,48602.059513,3370585,2973917,0.000025,0.000051,61791157,30039651,0,0,70759,0,1,1 +1773655003.294449,0.65,4,3992.50,53.40,1615.09,2090.67,0.00,3515898752643.868164,3515898752411.533203,253,555,0.000140,0.000187,61791168,30039665,0,0,70762,0,1,1 +1773655008.292592,0.65,4,3992.50,53.42,1614.14,2091.62,0.00,48388.869347,48622.355295,3372092,2974514,0.001172,0.001330,61791194,30039689,0,0,70764,0,1,1 +1773655013.294389,0.50,4,3992.50,53.40,1615.06,2090.71,0.00,3517172785431.449219,3517172785188.939453,205,0,0.001229,0.001254,61791203,30039706,0,0,70767,0,1,1 +1773655018.295537,2.91,4,3992.50,59.90,1360.52,2345.33,0.00,1.477102,10.672745,253,555,0.205285,0.004345,61791340,30039795,0,0,70769,0,1,1 +1773655023.294694,40.19,4,3992.50,60.12,1351.80,2353.88,0.00,3519030718045.409180,3519030718036.336914,75,0,118.593367,0.041098,61803928,30042933,0,0,70772,0,1,1 +1773655028.290919,30.09,4,3992.50,59.92,1354.16,2345.94,0.00,48399.340608,48641.210142,3370596,2974097,121.867466,0.035444,61816556,30045642,0,0,70774,0,1,1 +1773655033.291745,30.43,4,3992.50,59.97,1352.18,2348.00,0.00,3517855895342.422852,3517855895109.845215,253,555,120.559309,0.053033,61829187,30049770,0,0,70777,0,1,1 +1773655038.294664,30.21,4,3992.50,59.45,1372.54,2327.56,0.00,3516384448428.985840,3516384448419.793945,205,0,120.111627,0.068998,61841725,30055164,0,0,70779,0,1,1 +1773655043.291553,30.59,4,3992.50,59.59,1366.85,2333.24,0.00,48402.510118,48645.458337,3372099,2974706,119.256029,0.066940,61854163,30060378,0,0,70782,0,1,1 +1773655048.290365,30.88,4,3992.50,59.68,1363.61,2336.47,0.00,3519272972358.932617,3519272972114.082520,258,2,119.405255,0.059759,61866548,30065053,0,0,70784,0,1,1 +1773655053.290340,30.56,4,3992.50,59.65,1364.85,2335.26,0.00,3518455177633.274414,10.675055,253,555,119.977947,0.050431,61878993,30068956,0,0,70787,0,1,1 +1773655058.294767,30.65,4,3992.50,59.42,1373.79,2326.30,0.00,0.000000,0.000000,253,555,119.067552,0.045885,61891337,30072554,0,0,70789,0,1,1 +1773655063.294842,6.33,4,3992.50,54.40,1564.99,2129.73,0.00,0.517668,3518384381738.387207,258,2,66.498865,0.024835,61898365,30074413,0,0,70792,0,1,1 +1773655068.294776,0.65,4,3992.50,53.63,1595.07,2099.61,0.00,48371.183883,48616.130675,3372113,2974783,0.000619,0.000595,61898377,30074424,0,0,70794,0,1,1 +1773655073.294848,0.55,4,3992.50,53.25,1609.72,2085.00,0.00,3518386928500.301758,3518386928257.537109,11,0,0.000000,0.000352,61898377,30074429,0,0,70797,0,1,1 +1773655078.290604,0.65,4,3992.50,53.20,1611.89,2082.83,0.00,0.000000,0.000000,11,0,0.000000,0.000664,61898377,30074435,0,0,70799,0,1,1 +1773655083.295160,0.60,4,3992.50,53.01,1619.29,2075.43,0.00,48318.966774,48560.615730,3370610,2974251,0.000000,0.000030,61898377,30074438,0,0,70802,0,1,1 +1773655088.290406,0.95,4,3992.50,53.30,1612.38,2086.79,0.00,0.075071,0.070379,3370613,2974280,0.000000,0.000020,61898377,30074440,0,0,70804,0,1,1 +1773655093.292824,0.60,4,3992.50,53.30,1612.50,2086.67,0.00,3516736444268.569824,3516736444026.822266,11,0,0.000000,0.000030,61898377,30074443,0,0,70807,0,1,1 +1773655098.291573,0.60,4,3992.50,53.31,1612.05,2087.12,0.00,0.000000,0.000000,11,0,0.000000,0.000020,61898377,30074445,0,0,70809,0,1,1 +1773655103.294539,0.55,4,3992.50,53.31,1612.06,2087.11,0.00,48344.114332,48586.906621,3372116,2974875,0.000000,0.000030,61898377,30074448,0,0,70812,0,1,1 +1773655108.290365,0.65,4,3992.50,53.32,1611.57,2087.60,0.00,0.000000,0.005473,3372116,2974878,0.000101,0.000144,61898385,30074458,0,0,70814,0,1,1 +1773655113.290403,0.55,4,3992.50,53.32,1611.57,2087.60,0.00,3518410386814.778809,3518410386571.785156,75,0,0.000041,0.000077,61898389,30074465,0,0,70817,0,1,1 +1773655118.290390,0.65,4,3992.50,53.32,1611.57,2087.60,0.00,3518446824798.318848,0.000000,11,0,0.000000,0.000020,61898389,30074467,0,0,70819,0,1,1 +1773655123.290376,0.95,4,3992.50,53.32,1611.54,2087.55,0.00,0.053516,0.000000,75,0,0.000000,0.000030,61898389,30074470,0,0,70822,0,1,1 +1773655128.295072,11.92,4,3992.50,59.83,1356.45,2342.54,0.00,3515136096768.820312,0.000000,11,0,10.011111,0.013929,61899714,30075361,0,0,70824,0,1,1 +1773655133.294839,38.26,4,3992.50,59.81,1357.48,2341.53,0.00,0.000000,0.000000,11,0,115.766968,0.046786,61911572,30078935,0,0,70827,0,1,1 +1773655138.291331,31.01,4,3992.50,59.44,1371.66,2327.33,0.00,0.180400,0.000000,205,0,119.248673,0.040953,61923791,30082100,0,0,70829,0,1,1 +1773655143.294924,31.44,4,3992.50,59.77,1359.02,2339.96,0.00,3515910331862.512695,0.000000,11,0,119.878746,0.048938,61936044,30085869,0,0,70832,0,1,1 +1773655148.293542,31.18,4,3992.50,59.77,1359.03,2340.04,0.00,0.000000,0.000000,11,0,119.797940,0.043895,61948249,30089269,0,0,70834,0,1,1 +1773655153.291254,31.30,4,3992.50,59.87,1354.29,2344.03,0.00,2.176386,0.000195,258,2,119.217829,0.042777,61960399,30092635,0,0,70837,0,1,1 +1773655158.291155,30.68,4,3992.50,59.59,1365.15,2333.12,0.00,48371.574866,48616.955665,3372121,2975097,119.164427,0.046509,61972445,30096262,0,0,70839,0,1,1 +1773655163.294360,30.36,4,3992.50,60.01,1348.70,2349.59,0.00,3516183398766.423340,3516183398523.378418,11,0,119.686304,0.052913,61984600,30100422,0,0,70842,0,1,1 diff --git a/evaluation/data/pipeline_high-bw_run3/pipeline.duckdb b/evaluation/data/pipeline_high-bw_run3/pipeline.duckdb new file mode 100644 index 0000000..cdfe173 Binary files /dev/null and b/evaluation/data/pipeline_high-bw_run3/pipeline.duckdb differ diff --git a/evaluation/data/pipeline_high-iops_run1/anomalies.jsonl b/evaluation/data/pipeline_high-iops_run1/anomalies.jsonl new file mode 100644 index 0000000..f9998e2 --- /dev/null +++ b/evaluation/data/pipeline_high-iops_run1/anomalies.jsonl @@ -0,0 +1,540 @@ +{"timestamp":"2026-03-14T21:13:09.37659315Z","score":0.5,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=0.50 RRCF-fast:w=0.20,s=0.50 RRCF-mid:w=0.20,s=0.50 RRCF-slow:w=0.20,s=0.50 COPOD:w=0.20,s=0.50"} +{"timestamp":"2026-03-14T21:13:39.371053828Z","score":1,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=1.00 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-14T21:14:09.323942216Z","score":0.8999999999999999,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=0.50 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-14T21:14:39.36892353Z","score":1,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=1.00 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-14T21:15:09.321324912Z","score":0.8497994402320771,"is_anomaly":false,"confidence":0.8497994402320771,"method":"SEAD","details":"MAD!:w=0.20,s=0.75 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=0.75 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=0.75"} +{"timestamp":"2026-03-14T21:15:39.388300471Z","score":0.6799982200932951,"is_anomaly":false,"confidence":0.6799982200932951,"method":"SEAD","details":"MAD!:w=0.20,s=0.60 RRCF-fast:w=0.20,s=0.60 RRCF-mid:w=0.20,s=0.60 RRCF-slow:w=0.20,s=0.60 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-14T21:16:09.366973012Z","score":0.4319527599079831,"is_anomaly":false,"confidence":0.4319527599079831,"method":"SEAD","details":"MAD!:w=0.20,s=0.00 RRCF-fast:w=0.20,s=0.50 RRCF-mid:w=0.20,s=0.50 RRCF-slow:w=0.20,s=0.50 COPOD!:w=0.20,s=0.67"} +{"timestamp":"2026-03-14T21:16:39.323074794Z","score":0.34109919696973423,"is_anomaly":false,"confidence":0.3789991077441492,"method":"SEAD","details":"MAD!:w=0.20,s=0.00 RRCF-fast:w=0.20,s=0.43 RRCF-mid:w=0.20,s=0.43 RRCF-slow:w=0.20,s=0.43 COPOD!:w=0.20,s=0.43"} +{"timestamp":"2026-03-14T21:17:09.370562286Z","score":0.3721253965400861,"is_anomaly":false,"confidence":0.4134726628223179,"method":"SEAD","details":"MAD!:w=0.21,s=0.00 RRCF-fast:w=0.20,s=0.50 RRCF-mid:w=0.20,s=0.38 RRCF-slow:w=0.20,s=0.38 COPOD!:w=0.20,s=0.62"} +{"timestamp":"2026-03-14T21:17:39.31659519Z","score":0.5313643185482995,"is_anomaly":false,"confidence":0.5904047983869994,"method":"SEAD","details":"MAD!:w=0.21,s=0.33 RRCF-fast:w=0.20,s=0.56 RRCF-mid:w=0.20,s=0.56 RRCF-slow:w=0.20,s=0.56 COPOD!:w=0.20,s=0.67"} +{"timestamp":"2026-03-14T21:18:09.367708883Z","score":0.9792078371102934,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.21,s=0.90 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-14T21:18:39.371076246Z","score":0.7616692219060869,"is_anomaly":false,"confidence":0.7778422445574198,"method":"SEAD","details":"MAD!:w=0.21,s=0.55 RRCF-fast:w=0.20,s=0.91 RRCF-mid:w=0.20,s=0.91 RRCF-slow:w=0.20,s=0.73 COPOD!:w=0.20,s=0.73"} +{"timestamp":"2026-03-14T21:19:09.325120168Z","score":0.4776364350208623,"is_anomaly":false,"confidence":0.4877784030307588,"method":"SEAD","details":"MAD!:w=0.21,s=0.00 RRCF-fast:w=0.20,s=0.58 RRCF-mid:w=0.20,s=0.58 RRCF-slow:w=0.20,s=0.58 COPOD!:w=0.20,s=0.67"} +{"timestamp":"2026-03-14T21:19:39.365309716Z","score":0.5322706226512168,"is_anomaly":false,"confidence":0.543572674236332,"method":"SEAD","details":"MAD!:w=0.21,s=0.08 RRCF-fast:w=0.20,s=0.69 RRCF-mid:w=0.20,s=0.69 RRCF-slow:w=0.20,s=0.69 COPOD!:w=0.20,s=0.54"} +{"timestamp":"2026-03-14T21:20:09.32203333Z","score":0.511118072274318,"is_anomaly":false,"confidence":0.5679089691936868,"method":"SEAD","details":"MAD!:w=0.21,s=0.29 RRCF-fast:w=0.20,s=0.64 RRCF-mid:w=0.20,s=0.71 RRCF-slow:w=0.20,s=0.64 COPOD!:w=0.20,s=0.29"} +{"timestamp":"2026-03-14T21:20:39.366782541Z","score":0.95959548958448,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.21,s=0.93 RRCF-fast:w=0.20,s=0.93 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=0.93"} +{"timestamp":"2026-03-14T21:21:09.319197465Z","score":0.7867881027537511,"is_anomaly":false,"confidence":0.8199164244659412,"method":"SEAD","details":"MAD!:w=0.21,s=0.75 RRCF-fast:w=0.20,s=0.88 RRCF-mid:w=0.20,s=0.69 RRCF-slow:w=0.20,s=0.88 COPOD!:w=0.20,s=0.75"} +{"timestamp":"2026-03-14T21:21:39.416439478Z","score":0.9264292305321544,"is_anomaly":false,"confidence":0.9654372499534287,"method":"SEAD","details":"MAD!:w=0.21,s=0.76 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=0.88"} +{"timestamp":"2026-03-14T21:22:09.369441756Z","score":0.5995649068450801,"is_anomaly":false,"confidence":0.6248100510608915,"method":"SEAD","details":"MAD!:w=0.22,s=0.00 RRCF-fast:w=0.20,s=0.67 RRCF-mid:w=0.20,s=0.83 RRCF-slow:w=0.20,s=0.83 COPOD!:w=0.20,s=0.72"} +{"timestamp":"2026-03-14T21:22:39.320878505Z","score":0.4436304095794144,"is_anomaly":false,"confidence":0.46230981115960995,"method":"SEAD","details":"MAD!:w=0.22,s=0.05 RRCF-fast:w=0.19,s=0.53 RRCF-mid:w=0.20,s=0.58 RRCF-slow:w=0.20,s=0.58 COPOD!:w=0.20,s=0.53"} +{"timestamp":"2026-03-14T21:23:09.368864723Z","score":0.5678103982840679,"is_anomaly":false,"confidence":0.5917184943521762,"method":"SEAD","details":"MAD!:w=0.22,s=0.10 RRCF-fast:w=0.19,s=0.85 RRCF-mid:w=0.20,s=0.85 RRCF-slow:w=0.19,s=0.85 COPOD!:w=0.20,s=0.25"} +{"timestamp":"2026-03-14T21:23:39.322066545Z","score":0.4003981533455111,"is_anomaly":false,"confidence":0.43219507777784233,"method":"SEAD","details":"MAD!:w=0.22,s=0.10 RRCF-fast:w=0.19,s=0.57 RRCF-mid:w=0.19,s=0.52 RRCF-slow:w=0.19,s=0.52 COPOD!:w=0.20,s=0.33"} +{"timestamp":"2026-03-14T21:24:09.357565201Z","score":0.9999999999999998,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.22,s=1.00 RRCF-fast!:w=0.19,s=1.00 RRCF-mid!:w=0.19,s=1.00 RRCF-slow!:w=0.19,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-14T21:24:39.36438606Z","score":0.9048399867160648,"is_anomaly":false,"confidence":0.942938974325395,"method":"SEAD","details":"MAD!:w=0.22,s=0.96 RRCF-fast!:w=0.19,s=1.00 RRCF-mid!:w=0.19,s=1.00 RRCF-slow!:w=0.19,s=0.96 COPOD!:w=0.20,s=0.61"} +{"timestamp":"2026-03-14T21:25:09.325673155Z","score":0.5717427179475381,"is_anomaly":false,"confidence":0.5958163873770516,"method":"SEAD","details":"MAD!:w=0.22,s=0.00 RRCF-fast!:w=0.19,s=0.92 RRCF-mid!:w=0.19,s=0.92 RRCF-slow!:w=0.19,s=0.92 COPOD!:w=0.20,s=0.21"} +{"timestamp":"2026-03-14T21:25:39.369354817Z","score":0.6364611250597773,"is_anomaly":false,"confidence":0.6632598130857982,"method":"SEAD","details":"MAD!:w=0.23,s=0.12 RRCF-fast:w=0.19,s=0.88 RRCF-mid:w=0.19,s=0.88 RRCF-slow:w=0.19,s=0.88 COPOD!:w=0.20,s=0.52"} +{"timestamp":"2026-03-14T21:26:09.330244129Z","score":0.5313051436054657,"is_anomaly":false,"confidence":0.5536761576854943,"method":"SEAD","details":"MAD!:w=0.23,s=0.00 RRCF-fast:w=0.19,s=0.73 RRCF-mid:w=0.19,s=0.85 RRCF-slow:w=0.19,s=0.81 COPOD!:w=0.20,s=0.38"} +{"timestamp":"2026-03-14T21:26:39.369545025Z","score":0.8300923575022341,"is_anomaly":false,"confidence":0.8960127013969723,"method":"SEAD","details":"MAD!:w=0.23,s=0.67 RRCF-fast:w=0.19,s=0.89 RRCF-mid:w=0.19,s=0.89 RRCF-slow:w=0.19,s=0.89 COPOD!:w=0.20,s=0.85"} +{"timestamp":"2026-03-14T21:27:09.323099159Z","score":0.596310765592436,"is_anomaly":false,"confidence":0.643665750107978,"method":"SEAD","details":"MAD!:w=0.23,s=0.21 RRCF-fast:w=0.19,s=0.82 RRCF-mid:w=0.19,s=0.75 RRCF-slow:w=0.19,s=0.75 COPOD!:w=0.20,s=0.54"} +{"timestamp":"2026-03-14T21:27:40.357969428Z","score":0.9395210752710499,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.23,s=0.97 RRCF-fast:w=0.19,s=0.90 RRCF-mid!:w=0.19,s=0.93 RRCF-slow!:w=0.19,s=0.93 COPOD!:w=0.20,s=0.97"} +{"timestamp":"2026-03-14T21:28:09.367035262Z","score":0.8051311793445071,"is_anomaly":false,"confidence":0.8569591470976087,"method":"SEAD","details":"MAD!:w=0.23,s=0.80 RRCF-fast:w=0.19,s=0.83 RRCF-mid:w=0.19,s=0.83 RRCF-slow:w=0.19,s=0.87 COPOD!:w=0.20,s=0.70"} +{"timestamp":"2026-03-14T21:28:39.322337952Z","score":0.5043085762798055,"is_anomaly":false,"confidence":0.5367719677116488,"method":"SEAD","details":"MAD!:w=0.23,s=0.48 RRCF-fast:w=0.19,s=0.61 RRCF-mid:w=0.19,s=0.68 RRCF-slow:w=0.19,s=0.61 COPOD!:w=0.20,s=0.16"} +{"timestamp":"2026-03-14T21:29:09.378063969Z","score":0.48258118424291424,"is_anomaly":false,"confidence":0.5136459382815767,"method":"SEAD","details":"MAD!:w=0.23,s=0.19 RRCF-fast:w=0.19,s=0.72 RRCF-mid:w=0.19,s=0.66 RRCF-slow:w=0.19,s=0.66 COPOD!:w=0.20,s=0.28"} +{"timestamp":"2026-03-14T21:29:39.323623879Z","score":0.39445339236582977,"is_anomaly":false,"confidence":0.41984517723780784,"method":"SEAD","details":"MAD!:w=0.24,s=0.06 RRCF-fast:w=0.19,s=0.48 RRCF-mid:w=0.19,s=0.58 RRCF-slow:w=0.19,s=0.58 COPOD!:w=0.20,s=0.36"} +{"timestamp":"2026-03-14T21:30:09.419503701Z","score":0.9780333029602962,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.24,s=1.00 RRCF-fast!:w=0.19,s=1.00 RRCF-mid!:w=0.19,s=0.94 RRCF-slow!:w=0.19,s=0.94 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-14T21:30:39.36448781Z","score":0.8337309260027427,"is_anomaly":false,"confidence":0.8873999189025249,"method":"SEAD","details":"MAD!:w=0.24,s=0.94 RRCF-fast!:w=0.19,s=0.94 RRCF-mid!:w=0.19,s=0.91 RRCF-slow!:w=0.19,s=0.91 COPOD!:w=0.20,s=0.46"} +{"timestamp":"2026-03-14T21:31:09.32340221Z","score":0.5564238044588143,"is_anomaly":false,"confidence":0.5922419614677481,"method":"SEAD","details":"MAD!:w=0.24,s=0.06 RRCF-fast:w=0.19,s=0.75 RRCF-mid:w=0.19,s=0.78 RRCF-slow:w=0.19,s=0.78 COPOD!:w=0.20,s=0.56"} +{"timestamp":"2026-03-14T21:31:39.37156183Z","score":0.5249825065344312,"is_anomaly":false,"confidence":0.5587767218345526,"method":"SEAD","details":"MAD!:w=0.24,s=0.08 RRCF-fast:w=0.19,s=0.51 RRCF-mid:w=0.19,s=0.65 RRCF-slow:w=0.19,s=0.73 COPOD!:w=0.20,s=0.76"} +{"timestamp":"2026-03-14T21:32:09.324356337Z","score":0.42892995088625707,"is_anomaly":false,"confidence":0.4565410635014352,"method":"SEAD","details":"MAD!:w=0.24,s=0.08 RRCF-fast:w=0.19,s=0.55 RRCF-mid:w=0.19,s=0.50 RRCF-slow:w=0.18,s=0.53 COPOD!:w=0.20,s=0.58"} +{"timestamp":"2026-03-14T21:32:39.370599942Z","score":0.7612299917539398,"is_anomaly":false,"confidence":0.810231948798303,"method":"SEAD","details":"MAD!:w=0.24,s=0.64 RRCF-fast:w=0.18,s=0.79 RRCF-mid:w=0.18,s=0.82 RRCF-slow:w=0.18,s=0.85 COPOD!:w=0.20,s=0.74"} +{"timestamp":"2026-03-14T21:33:09.326762041Z","score":0.414056313073901,"is_anomaly":false,"confidence":0.44070997870318834,"method":"SEAD","details":"MAD!:w=0.24,s=0.03 RRCF-fast:w=0.18,s=0.53 RRCF-mid:w=0.18,s=0.65 RRCF-slow:w=0.18,s=0.62 COPOD!:w=0.20,s=0.38"} +{"timestamp":"2026-03-14T21:33:39.398852152Z","score":0.9153468808411761,"is_anomaly":false,"confidence":0.9880375647424117,"method":"SEAD","details":"MAD!:w=0.25,s=0.95 RRCF-fast:w=0.18,s=0.85 RRCF-mid!:w=0.18,s=0.90 RRCF-slow!:w=0.18,s=0.90 COPOD!:w=0.20,s=0.95"} +{"timestamp":"2026-03-14T21:34:09.368993147Z","score":0.7418924816621858,"is_anomaly":false,"confidence":0.8008085854933916,"method":"SEAD","details":"MAD!:w=0.25,s=0.81 RRCF-fast:w=0.18,s=0.45 RRCF-mid:w=0.18,s=0.86 RRCF-slow:w=0.18,s=0.86 COPOD!:w=0.20,s=0.71"} +{"timestamp":"2026-03-14T21:34:39.320079689Z","score":0.5117335092428364,"is_anomaly":false,"confidence":0.5523719377344012,"method":"SEAD","details":"MAD!:w=0.25,s=0.02 RRCF-fast:w=0.19,s=0.77 RRCF-mid:w=0.18,s=0.84 RRCF-slow:w=0.18,s=0.81 COPOD!:w=0.20,s=0.30"} +{"timestamp":"2026-03-14T21:35:09.370831293Z","score":0.3115276924098308,"is_anomaly":false,"confidence":0.3362671234271017,"method":"SEAD","details":"MAD!:w=0.25,s=0.02 RRCF-fast:w=0.18,s=0.43 RRCF-mid:w=0.18,s=0.55 RRCF-slow:w=0.18,s=0.55 COPOD!:w=0.20,s=0.14"} +{"timestamp":"2026-03-14T21:35:39.326772564Z","score":0.44278111326083625,"is_anomaly":false,"confidence":0.47794380689661137,"method":"SEAD","details":"MAD!:w=0.25,s=0.00 RRCF-fast:w=0.18,s=0.56 RRCF-mid:w=0.18,s=0.69 RRCF-slow:w=0.18,s=0.67 COPOD!:w=0.20,s=0.47"} +{"timestamp":"2026-03-14T21:36:09.369028839Z","score":0.8375120563885494,"is_anomaly":false,"confidence":0.9040216227930009,"method":"SEAD","details":"MAD!:w=0.25,s=0.70 RRCF-fast!:w=0.18,s=0.91 RRCF-mid!:w=0.18,s=0.89 RRCF-slow:w=0.18,s=0.87 COPOD!:w=0.20,s=0.87"} +{"timestamp":"2026-03-14T21:36:39.324854524Z","score":0.541650637582959,"is_anomaly":false,"confidence":0.5917435771291408,"method":"SEAD","details":"MAD!:w=0.25,s=0.06 RRCF-fast:w=0.18,s=0.66 RRCF-mid:w=0.18,s=0.68 RRCF-slow:w=0.18,s=0.70 COPOD!:w=0.20,s=0.77"} +{"timestamp":"2026-03-14T21:37:09.39695864Z","score":0.8053681033170232,"is_anomaly":false,"confidence":0.8798501641005367,"method":"SEAD","details":"MAD!:w=0.26,s=0.71 RRCF-fast:w=0.18,s=0.79 RRCF-mid:w=0.18,s=0.85 RRCF-slow:w=0.18,s=0.85 COPOD!:w=0.20,s=0.85"} +{"timestamp":"2026-03-14T21:37:39.416881671Z","score":0.454076223345842,"is_anomaly":false,"confidence":0.4960701050606735,"method":"SEAD","details":"MAD!:w=0.26,s=0.08 RRCF-fast:w=0.18,s=0.53 RRCF-mid:w=0.18,s=0.65 RRCF-slow:w=0.18,s=0.69 COPOD!:w=0.20,s=0.47"} +{"timestamp":"2026-03-14T21:38:09.322496743Z","score":0.3707271175280028,"is_anomaly":false,"confidence":0.4050127064259134,"method":"SEAD","details":"MAD!:w=0.26,s=0.00 RRCF-fast:w=0.18,s=0.34 RRCF-mid:w=0.18,s=0.58 RRCF-slow:w=0.18,s=0.54 COPOD!:w=0.20,s=0.54"} +{"timestamp":"2026-03-14T21:38:39.369742467Z","score":0.7122317510366842,"is_anomaly":false,"confidence":0.7781003747805038,"method":"SEAD","details":"MAD!:w=0.26,s=0.63 RRCF-fast:w=0.18,s=0.65 RRCF-mid:w=0.18,s=0.75 RRCF-slow:w=0.18,s=0.75 COPOD!:w=0.20,s=0.82"} +{"timestamp":"2026-03-14T21:39:09.324644637Z","score":0.4221151746472598,"is_anomaly":false,"confidence":0.46115323434472044,"method":"SEAD","details":"MAD!:w=0.26,s=0.29 RRCF-fast:w=0.18,s=0.37 RRCF-mid:w=0.18,s=0.54 RRCF-slow:w=0.18,s=0.54 COPOD!:w=0.20,s=0.44"} +{"timestamp":"2026-03-14T21:39:39.385849828Z","score":0.8834271296957068,"is_anomaly":false,"confidence":0.9651282461178695,"method":"SEAD","details":"MAD!:w=0.26,s=0.81 RRCF-fast!:w=0.18,s=0.92 RRCF-mid!:w=0.18,s=0.92 RRCF-slow!:w=0.18,s=0.92 COPOD!:w=0.20,s=0.87"} +{"timestamp":"2026-03-14T21:40:09.365907562Z","score":0.5589405798965671,"is_anomaly":false,"confidence":0.6177231202227587,"method":"SEAD","details":"MAD!:w=0.26,s=0.26 RRCF-fast:w=0.18,s=0.81 RRCF-mid:w=0.18,s=0.78 RRCF-slow:w=0.18,s=0.78 COPOD!:w=0.20,s=0.33"} +{"timestamp":"2026-03-14T21:40:39.324691515Z","score":0.32156143342996496,"is_anomaly":false,"confidence":0.35537933573980046,"method":"SEAD","details":"MAD!:w=0.27,s=0.07 RRCF-fast:w=0.18,s=0.25 RRCF-mid:w=0.18,s=0.38 RRCF-slow:w=0.18,s=0.49 COPOD!:w=0.20,s=0.51"} +{"timestamp":"2026-03-14T21:41:09.372056402Z","score":0.3987443206686946,"is_anomaly":false,"confidence":0.4406793759367964,"method":"SEAD","details":"MAD!:w=0.27,s=0.43 RRCF-fast:w=0.18,s=0.45 RRCF-mid:w=0.18,s=0.43 RRCF-slow:w=0.18,s=0.46 COPOD!:w=0.20,s=0.23"} +{"timestamp":"2026-03-14T21:41:39.321982091Z","score":0.33936118039295826,"is_anomaly":false,"confidence":0.3750510425877636,"method":"SEAD","details":"MAD!:w=0.27,s=0.11 RRCF-fast:w=0.18,s=0.23 RRCF-mid:w=0.18,s=0.49 RRCF-slow:w=0.18,s=0.40 COPOD!:w=0.20,s=0.56"} +{"timestamp":"2026-03-14T21:42:09.376103846Z","score":0.9830827411344218,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.27,s=1.00 RRCF-fast!:w=0.18,s=0.98 RRCF-mid!:w=0.18,s=1.00 RRCF-slow!:w=0.17,s=1.00 COPOD!:w=0.20,s=0.93"} +{"timestamp":"2026-03-14T21:42:39.324826932Z","score":0.8635956535816712,"is_anomaly":false,"confidence":0.9434627152364937,"method":"SEAD","details":"MAD!:w=0.27,s=0.97 RRCF-fast!:w=0.18,s=0.92 RRCF-mid!:w=0.18,s=1.00 RRCF-slow!:w=0.17,s=1.00 COPOD!:w=0.20,s=0.44"} +{"timestamp":"2026-03-14T21:43:09.388088998Z","score":0.8377383418696189,"is_anomaly":false,"confidence":0.9152140673705719,"method":"SEAD","details":"MAD!:w=0.27,s=0.73 RRCF-fast!:w=0.18,s=0.90 RRCF-mid!:w=0.18,s=0.92 RRCF-slow!:w=0.17,s=0.92 COPOD!:w=0.20,s=0.78"} +{"timestamp":"2026-03-14T21:43:39.370882059Z","score":0.5787243531614021,"is_anomaly":false,"confidence":0.639587509015562,"method":"SEAD","details":"MAD!:w=0.27,s=0.34 RRCF-fast:w=0.18,s=0.74 RRCF-mid:w=0.17,s=0.87 RRCF-slow:w=0.17,s=0.87 COPOD!:w=0.20,s=0.25"} +{"timestamp":"2026-03-14T21:44:09.325434899Z","score":0.5048440991454674,"is_anomaly":false,"confidence":0.5579374326478406,"method":"SEAD","details":"MAD!:w=0.27,s=0.03 RRCF-fast:w=0.18,s=0.45 RRCF-mid:w=0.17,s=0.79 RRCF-slow:w=0.17,s=0.81 COPOD!:w=0.20,s=0.68"} +{"timestamp":"2026-03-14T21:44:39.375810711Z","score":0.44817745179009455,"is_anomaly":false,"confidence":0.4953112797508703,"method":"SEAD","details":"MAD!:w=0.27,s=0.14 RRCF-fast:w=0.18,s=0.62 RRCF-mid:w=0.17,s=0.76 RRCF-slow:w=0.17,s=0.78 COPOD!:w=0.20,s=0.16"} +{"timestamp":"2026-03-14T21:45:09.324576849Z","score":0.427436514852527,"is_anomaly":false,"confidence":0.47238906450611456,"method":"SEAD","details":"MAD!:w=0.27,s=0.38 RRCF-fast:w=0.18,s=0.36 RRCF-mid:w=0.17,s=0.72 RRCF-slow:w=0.17,s=0.69 COPOD!:w=0.20,s=0.09"} +{"timestamp":"2026-03-14T21:45:39.372150934Z","score":0.8732621475664535,"is_anomaly":false,"confidence":0.9651011895879881,"method":"SEAD","details":"MAD!:w=0.27,s=0.82 RRCF-fast!:w=0.18,s=0.89 RRCF-mid!:w=0.17,s=0.89 RRCF-slow!:w=0.17,s=0.92 COPOD!:w=0.20,s=0.88"} +{"timestamp":"2026-03-14T21:46:09.324890513Z","score":0.6282793150114874,"is_anomaly":false,"confidence":0.6943540562256771,"method":"SEAD","details":"MAD!:w=0.28,s=0.50 RRCF-fast:w=0.18,s=0.70 RRCF-mid:w=0.17,s=0.80 RRCF-slow:w=0.17,s=0.83 COPOD!:w=0.20,s=0.42"} +{"timestamp":"2026-03-14T21:46:39.370075676Z","score":0.8246882007244025,"is_anomaly":false,"confidence":0.916320223027114,"method":"SEAD","details":"MAD!:w=0.28,s=0.75 RRCF-fast:w=0.18,s=0.82 RRCF-mid:w=0.17,s=0.87 RRCF-slow:w=0.17,s=0.87 COPOD!:w=0.21,s=0.87"} +{"timestamp":"2026-03-14T21:47:09.37560011Z","score":0.4666934931960681,"is_anomaly":false,"confidence":0.518548325773409,"method":"SEAD","details":"MAD!:w=0.28,s=0.21 RRCF-fast:w=0.18,s=0.49 RRCF-mid:w=0.17,s=0.69 RRCF-slow:w=0.17,s=0.75 COPOD!:w=0.21,s=0.38"} +{"timestamp":"2026-03-14T21:47:39.329309974Z","score":0.35131736864373114,"is_anomaly":false,"confidence":0.390352631826368,"method":"SEAD","details":"MAD!:w=0.28,s=0.13 RRCF-fast:w=0.18,s=0.38 RRCF-mid:w=0.17,s=0.59 RRCF-slow:w=0.17,s=0.61 COPOD!:w=0.21,s=0.22"} +{"timestamp":"2026-03-14T21:48:09.37101724Z","score":0.3716341682351164,"is_anomaly":false,"confidence":0.4129268535945738,"method":"SEAD","details":"MAD!:w=0.28,s=0.24 RRCF-fast:w=0.18,s=0.30 RRCF-mid:w=0.17,s=0.57 RRCF-slow:w=0.17,s=0.59 COPOD!:w=0.21,s=0.27"} +{"timestamp":"2026-03-14T21:48:39.322332544Z","score":0.38894205160359674,"is_anomaly":false,"confidence":0.4321578351151075,"method":"SEAD","details":"MAD!:w=0.28,s=0.21 RRCF-fast:w=0.18,s=0.38 RRCF-mid:w=0.17,s=0.54 RRCF-slow:w=0.17,s=0.65 COPOD!:w=0.21,s=0.31"} +{"timestamp":"2026-03-14T21:49:09.367990645Z","score":0.9106177706652586,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=0.94 RRCF-fast!:w=0.18,s=0.92 RRCF-mid:w=0.17,s=0.88 RRCF-slow:w=0.17,s=0.88 COPOD!:w=0.21,s=0.92"} +{"timestamp":"2026-03-14T21:49:39.325085818Z","score":0.7190861594762614,"is_anomaly":false,"confidence":0.7947108549944177,"method":"SEAD","details":"MAD!:w=0.28,s=0.85 RRCF-fast:w=0.18,s=0.67 RRCF-mid:w=0.17,s=0.82 RRCF-slow:w=0.17,s=0.86 COPOD!:w=0.21,s=0.38"} +{"timestamp":"2026-03-14T21:50:09.359039482Z","score":0.818232776714377,"is_anomaly":false,"confidence":0.9091475296826412,"method":"SEAD","details":"MAD!:w=0.28,s=0.78 RRCF-fast:w=0.18,s=0.80 RRCF-mid:w=0.17,s=0.85 RRCF-slow:w=0.17,s=0.82 COPOD!:w=0.21,s=0.85"} +{"timestamp":"2026-03-14T21:50:39.813912491Z","score":0.4863839048583858,"is_anomaly":false,"confidence":0.5404265609537621,"method":"SEAD","details":"MAD!:w=0.28,s=0.07 RRCF-fast:w=0.18,s=0.48 RRCF-mid:w=0.17,s=0.73 RRCF-slow:w=0.17,s=0.75 COPOD!:w=0.21,s=0.65"} +{"timestamp":"2026-03-14T21:51:09.317167825Z","score":0.35072767898596047,"is_anomaly":false,"confidence":0.38969742109551164,"method":"SEAD","details":"MAD!:w=0.28,s=0.07 RRCF-fast:w=0.18,s=0.20 RRCF-mid:w=0.17,s=0.36 RRCF-slow:w=0.16,s=0.55 COPOD!:w=0.21,s=0.71"} +{"timestamp":"2026-03-14T21:51:39.372084069Z","score":0.3312934327701433,"is_anomaly":false,"confidence":0.36810381418904814,"method":"SEAD","details":"MAD!:w=0.29,s=0.42 RRCF-fast:w=0.18,s=0.18 RRCF-mid:w=0.17,s=0.27 RRCF-slow:w=0.16,s=0.42 COPOD!:w=0.20,s=0.32"} +{"timestamp":"2026-03-14T21:52:09.323610002Z","score":0.26795121020587104,"is_anomaly":false,"confidence":0.2977235668954123,"method":"SEAD","details":"MAD!:w=0.29,s=0.06 RRCF-fast:w=0.18,s=0.22 RRCF-mid:w=0.17,s=0.38 RRCF-slow:w=0.16,s=0.53 COPOD!:w=0.20,s=0.29"} +{"timestamp":"2026-03-14T21:52:41.290773732Z","score":0.9141261658521316,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=0.96 RRCF-fast:w=0.18,s=0.84 RRCF-mid:w=0.17,s=0.84 RRCF-slow!:w=0.16,s=0.94 COPOD!:w=0.20,s=0.96"} +{"timestamp":"2026-03-14T21:53:09.36613122Z","score":0.7275057999429946,"is_anomaly":false,"confidence":0.8040159703632583,"method":"SEAD","details":"MAD!:w=0.29,s=0.90 RRCF-fast:w=0.18,s=0.54 RRCF-mid:w=0.17,s=0.76 RRCF-slow:w=0.16,s=0.78 COPOD!:w=0.20,s=0.59"} +{"timestamp":"2026-03-14T21:53:39.326407624Z","score":0.3173147926987885,"is_anomaly":false,"confidence":0.3525719918875428,"method":"SEAD","details":"MAD!:w=0.28,s=0.36 RRCF-fast:w=0.18,s=0.21 RRCF-mid:w=0.17,s=0.40 RRCF-slow:w=0.16,s=0.59 COPOD!:w=0.21,s=0.07"} +{"timestamp":"2026-03-14T21:54:09.370115828Z","score":0.27712345229041,"is_anomaly":false,"confidence":0.3079149469893445,"method":"SEAD","details":"MAD!:w=0.28,s=0.28 RRCF-fast:w=0.18,s=0.11 RRCF-mid:w=0.17,s=0.26 RRCF-slow:w=0.16,s=0.48 COPOD!:w=0.21,s=0.28"} +{"timestamp":"2026-03-14T21:54:39.320840121Z","score":0.2467360589928255,"is_anomaly":false,"confidence":0.27415117665869504,"method":"SEAD","details":"MAD!:w=0.28,s=0.36 RRCF-fast:w=0.18,s=0.12 RRCF-mid:w=0.17,s=0.25 RRCF-slow:w=0.16,s=0.43 COPOD!:w=0.21,s=0.05"} +{"timestamp":"2026-03-14T21:55:09.363474204Z","score":0.9285361296683852,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=0.94 RRCF-fast!:w=0.18,s=0.93 RRCF-mid:w=0.17,s=0.85 RRCF-slow!:w=0.16,s=0.92 COPOD!:w=0.21,s=0.99"} +{"timestamp":"2026-03-14T21:55:39.36624765Z","score":0.7418848036442152,"is_anomaly":false,"confidence":0.8199071819722924,"method":"SEAD","details":"MAD!:w=0.28,s=0.85 RRCF-fast:w=0.18,s=0.72 RRCF-mid:w=0.17,s=0.66 RRCF-slow:w=0.16,s=0.78 COPOD!:w=0.21,s=0.66"} +{"timestamp":"2026-03-14T21:56:09.32472738Z","score":0.23922667173668993,"is_anomaly":false,"confidence":0.2643856098854728,"method":"SEAD","details":"MAD!:w=0.28,s=0.02 RRCF-fast:w=0.18,s=0.20 RRCF-mid:w=0.17,s=0.31 RRCF-slow:w=0.16,s=0.48 COPOD!:w=0.21,s=0.33"} +{"timestamp":"2026-03-14T21:56:39.371312061Z","score":0.23872154295562487,"is_anomaly":false,"confidence":0.2652461588395832,"method":"SEAD","details":"MAD!:w=0.28,s=0.09 RRCF-fast:w=0.18,s=0.16 RRCF-mid:w=0.17,s=0.28 RRCF-slow:w=0.16,s=0.57 COPOD!:w=0.21,s=0.22"} +{"timestamp":"2026-03-14T21:57:09.325880545Z","score":0.3062833394269252,"is_anomaly":false,"confidence":0.3403148215854725,"method":"SEAD","details":"MAD!:w=0.29,s=0.02 RRCF-fast:w=0.18,s=0.26 RRCF-mid:w=0.17,s=0.44 RRCF-slow:w=0.16,s=0.40 COPOD!:w=0.21,s=0.56"} +{"timestamp":"2026-03-14T21:57:39.373073221Z","score":0.8746517560426309,"is_anomaly":false,"confidence":0.9718352844918122,"method":"SEAD","details":"MAD!:w=0.29,s=0.92 RRCF-fast:w=0.18,s=0.83 RRCF-mid:w=0.17,s=0.78 RRCF-slow:w=0.16,s=0.85 COPOD!:w=0.21,s=0.94"} +{"timestamp":"2026-03-14T21:58:09.325925326Z","score":0.6596537066455972,"is_anomaly":false,"confidence":0.7329485629395525,"method":"SEAD","details":"MAD!:w=0.29,s=0.81 RRCF-fast:w=0.18,s=0.50 RRCF-mid:w=0.17,s=0.59 RRCF-slow:w=0.16,s=0.68 COPOD!:w=0.21,s=0.63"} +{"timestamp":"2026-03-14T21:58:39.395133429Z","score":0.700841433133629,"is_anomaly":false,"confidence":0.7787127034818101,"method":"SEAD","details":"MAD!:w=0.29,s=0.67 RRCF-fast:w=0.18,s=0.68 RRCF-mid:w=0.17,s=0.66 RRCF-slow:w=0.16,s=0.75 COPOD!:w=0.21,s=0.76"} +{"timestamp":"2026-03-14T21:59:09.375354753Z","score":0.29873878568189455,"is_anomaly":false,"confidence":0.33193198409099395,"method":"SEAD","details":"MAD!:w=0.29,s=0.18 RRCF-fast:w=0.18,s=0.28 RRCF-mid:w=0.17,s=0.37 RRCF-slow:w=0.16,s=0.51 COPOD!:w=0.21,s=0.25"} +{"timestamp":"2026-03-14T21:59:39.32344434Z","score":0.20541123519478405,"is_anomaly":false,"confidence":0.2282347057719823,"method":"SEAD","details":"MAD!:w=0.29,s=0.15 RRCF-fast:w=0.18,s=0.18 RRCF-mid:w=0.17,s=0.20 RRCF-slow:w=0.16,s=0.33 COPOD!:w=0.21,s=0.20"} +{"timestamp":"2026-03-14T22:00:09.367743939Z","score":0.6354286451195679,"is_anomaly":false,"confidence":0.7192768070621047,"method":"SEAD","details":"MAD!:w=0.29,s=0.66 RRCF-fast:w=0.18,s=0.59 RRCF-mid:w=0.17,s=0.59 RRCF-slow:w=0.16,s=0.71 COPOD!:w=0.21,s=0.63"} +{"timestamp":"2026-03-14T22:00:39.324993043Z","score":0.41244037443590675,"is_anomaly":false,"confidence":0.4668640576817811,"method":"SEAD","details":"MAD!:w=0.29,s=0.57 RRCF-fast:w=0.18,s=0.37 RRCF-mid:w=0.17,s=0.40 RRCF-slow:w=0.16,s=0.44 COPOD!:w=0.21,s=0.22"} +{"timestamp":"2026-03-14T22:01:09.373821687Z","score":0.8714862167941436,"is_anomaly":false,"confidence":0.9864834206465041,"method":"SEAD","details":"MAD!:w=0.29,s=0.81 RRCF-fast!:w=0.18,s=0.88 RRCF-mid!:w=0.17,s=0.90 RRCF-slow!:w=0.16,s=0.92 COPOD!:w=0.21,s=0.90"} +{"timestamp":"2026-03-14T22:01:39.318059122Z","score":0.5547977481131874,"is_anomaly":false,"confidence":0.6280062378255074,"method":"SEAD","details":"MAD!:w=0.29,s=0.63 RRCF-fast:w=0.18,s=0.45 RRCF-mid:w=0.17,s=0.45 RRCF-slow:w=0.16,s=0.63 COPOD!:w=0.21,s=0.57"} +{"timestamp":"2026-03-14T22:02:09.347101124Z","score":0.3453580920682797,"is_anomaly":false,"confidence":0.39092991426156115,"method":"SEAD","details":"MAD!:w=0.29,s=0.45 RRCF-fast:w=0.18,s=0.16 RRCF-mid:w=0.17,s=0.26 RRCF-slow:w=0.16,s=0.36 COPOD!:w=0.21,s=0.43"} +{"timestamp":"2026-03-14T22:02:39.373336252Z","score":0.12323083438211213,"is_anomaly":false,"confidence":0.13949179308604495,"method":"SEAD","details":"MAD:w=0.28,s=0.00 RRCF-fast:w=0.19,s=0.11 RRCF-mid:w=0.17,s=0.19 RRCF-slow:w=0.16,s=0.30 COPOD!:w=0.21,s=0.11"} +{"timestamp":"2026-03-14T22:03:09.324350828Z","score":0.3255841880972796,"is_anomaly":false,"confidence":0.36854673934388443,"method":"SEAD","details":"MAD:w=0.29,s=0.01 RRCF-fast:w=0.19,s=0.39 RRCF-mid:w=0.17,s=0.21 RRCF-slow:w=0.16,s=0.39 COPOD!:w=0.21,s=0.75"} +{"timestamp":"2026-03-14T22:03:39.37186222Z","score":0.8092839430489449,"is_anomaly":false,"confidence":0.9252641836684314,"method":"SEAD","details":"MAD!:w=0.29,s=0.85 RRCF-fast:w=0.18,s=0.81 RRCF-mid:w=0.17,s=0.66 RRCF-slow:w=0.16,s=0.84 COPOD!:w=0.20,s=0.84"} +{"timestamp":"2026-03-14T22:04:09.325709876Z","score":0.42170160350702546,"is_anomaly":false,"confidence":0.48213657675029187,"method":"SEAD","details":"MAD!:w=0.29,s=0.02 RRCF-fast:w=0.18,s=0.64 RRCF-mid:w=0.17,s=0.40 RRCF-slow:w=0.16,s=0.61 COPOD!:w=0.20,s=0.67"} +{"timestamp":"2026-03-14T22:04:39.419338181Z","score":0.8030703132722532,"is_anomaly":false,"confidence":0.9181600651049413,"method":"SEAD","details":"MAD!:w=0.29,s=0.87 RRCF-fast:w=0.18,s=0.79 RRCF-mid:w=0.17,s=0.65 RRCF-slow:w=0.16,s=0.83 COPOD!:w=0.20,s=0.83"} +{"timestamp":"2026-03-14T22:05:09.370907325Z","score":0.3661259461571703,"is_anomaly":false,"confidence":0.418596251168248,"method":"SEAD","details":"MAD!:w=0.29,s=0.03 RRCF-fast:w=0.18,s=0.43 RRCF-mid:w=0.17,s=0.41 RRCF-slow:w=0.16,s=0.70 COPOD!:w=0.20,s=0.49"} +{"timestamp":"2026-03-14T22:05:39.328609565Z","score":0.23624006376197554,"is_anomaly":false,"confidence":0.2700961406981513,"method":"SEAD","details":"MAD:w=0.29,s=0.02 RRCF-fast:w=0.18,s=0.22 RRCF-mid:w=0.17,s=0.16 RRCF-slow:w=0.16,s=0.29 COPOD!:w=0.20,s=0.59"} +{"timestamp":"2026-03-14T22:06:09.376355879Z","score":0.19648365809284674,"is_anomaly":false,"confidence":0.2246421581336996,"method":"SEAD","details":"MAD:w=0.29,s=0.00 RRCF-fast:w=0.18,s=0.12 RRCF-mid:w=0.17,s=0.17 RRCF-slow:w=0.16,s=0.33 COPOD!:w=0.20,s=0.47"} +{"timestamp":"2026-03-14T22:06:39.326634372Z","score":0.22049440432474232,"is_anomaly":false,"confidence":0.2524950897496254,"method":"SEAD","details":"MAD:w=0.30,s=0.02 RRCF-fast:w=0.18,s=0.11 RRCF-mid:w=0.17,s=0.19 RRCF-slow:w=0.15,s=0.26 COPOD!:w=0.20,s=0.62"} +{"timestamp":"2026-03-14T22:07:09.377611966Z","score":0.7972153817851914,"is_anomaly":false,"confidence":0.9129164524155959,"method":"SEAD","details":"MAD!:w=0.30,s=0.83 RRCF-fast:w=0.18,s=0.65 RRCF-mid:w=0.17,s=0.75 RRCF-slow!:w=0.15,s=0.90 COPOD!:w=0.20,s=0.84"} +{"timestamp":"2026-03-14T22:07:39.326225732Z","score":0.43347613885359526,"is_anomaly":false,"confidence":0.49638718460610776,"method":"SEAD","details":"MAD!:w=0.30,s=0.06 RRCF-fast:w=0.18,s=0.41 RRCF-mid:w=0.17,s=0.66 RRCF-slow:w=0.15,s=0.76 COPOD!:w=0.20,s=0.56"} +{"timestamp":"2026-03-14T22:08:09.381091482Z","score":0.8365059020227097,"is_anomaly":false,"confidence":0.9579092651087951,"method":"SEAD","details":"MAD!:w=0.30,s=0.91 RRCF-fast:w=0.18,s=0.62 RRCF-mid:w=0.17,s=0.85 RRCF-slow!:w=0.15,s=0.89 COPOD!:w=0.20,s=0.87"} +{"timestamp":"2026-03-14T22:08:39.373301542Z","score":0.4087444118532031,"is_anomaly":false,"confidence":0.4680661047684979,"method":"SEAD","details":"MAD!:w=0.30,s=0.07 RRCF-fast:w=0.18,s=0.52 RRCF-mid:w=0.17,s=0.51 RRCF-slow:w=0.15,s=0.66 COPOD!:w=0.20,s=0.53"} +{"timestamp":"2026-03-14T22:09:09.32772518Z","score":0.27614922394788277,"is_anomaly":false,"confidence":0.31622717727710553,"method":"SEAD","details":"MAD:w=0.30,s=0.03 RRCF-fast:w=0.18,s=0.35 RRCF-mid:w=0.17,s=0.27 RRCF-slow:w=0.15,s=0.47 COPOD!:w=0.20,s=0.45"} +{"timestamp":"2026-03-14T22:09:39.370623308Z","score":0.7491167937106635,"is_anomaly":false,"confidence":0.8578372437168499,"method":"SEAD","details":"MAD!:w=0.30,s=0.95 RRCF-fast:w=0.18,s=0.50 RRCF-mid:w=0.17,s=0.70 RRCF-slow:w=0.15,s=0.73 COPOD!:w=0.19,s=0.73"} +{"timestamp":"2026-03-14T22:10:09.323671887Z","score":0.16878339690851768,"is_anomaly":false,"confidence":0.1936730537511031,"method":"SEAD","details":"MAD!:w=0.30,s=0.05 RRCF-fast:w=0.18,s=0.11 RRCF-mid:w=0.17,s=0.22 RRCF-slow:w=0.15,s=0.29 COPOD!:w=0.19,s=0.27"} +{"timestamp":"2026-03-14T22:10:41.056902741Z","score":0.9364548339049589,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=1.00 RRCF-fast!:w=0.19,s=0.93 RRCF-mid:w=0.17,s=0.77 RRCF-slow!:w=0.15,s=0.91 COPOD!:w=0.19,s=1.00"} +{"timestamp":"2026-03-14T22:11:09.37007836Z","score":0.535290874183445,"is_anomaly":false,"confidence":0.6129784460200829,"method":"SEAD","details":"MAD!:w=0.30,s=0.09 RRCF-fast!:w=0.19,s=0.88 RRCF-mid:w=0.17,s=0.58 RRCF-slow:w=0.15,s=0.67 COPOD!:w=0.19,s=0.75"} +{"timestamp":"2026-03-14T22:11:39.325787503Z","score":0.23268060294322296,"is_anomaly":false,"confidence":0.2664498897514809,"method":"SEAD","details":"MAD:w=0.31,s=0.05 RRCF-fast:w=0.18,s=0.51 RRCF-mid:w=0.17,s=0.24 RRCF-slow:w=0.15,s=0.34 COPOD!:w=0.19,s=0.16"} +{"timestamp":"2026-03-14T22:12:09.372414815Z","score":0.20421071823508838,"is_anomaly":false,"confidence":0.23384812774052863,"method":"SEAD","details":"MAD:w=0.31,s=0.03 RRCF-fast:w=0.18,s=0.28 RRCF-mid:w=0.17,s=0.17 RRCF-slow:w=0.15,s=0.36 COPOD!:w=0.19,s=0.32"} +{"timestamp":"2026-03-14T22:12:39.327544997Z","score":0.23700485519250503,"is_anomaly":false,"confidence":0.27140172725105943,"method":"SEAD","details":"MAD:w=0.31,s=0.05 RRCF-fast:w=0.18,s=0.38 RRCF-mid:w=0.17,s=0.19 RRCF-slow:w=0.15,s=0.25 COPOD!:w=0.19,s=0.43"} +{"timestamp":"2026-03-14T22:13:09.376292093Z","score":0.7762202957195238,"is_anomaly":false,"confidence":0.8888743178467552,"method":"SEAD","details":"MAD!:w=0.31,s=0.84 RRCF-fast:w=0.18,s=0.62 RRCF-mid:w=0.17,s=0.80 RRCF-slow:w=0.15,s=0.77 COPOD!:w=0.19,s=0.81"} +{"timestamp":"2026-03-14T22:13:39.325606336Z","score":0.3862612813716595,"is_anomaly":false,"confidence":0.44322133147735077,"method":"SEAD","details":"MAD!:w=0.31,s=0.10 RRCF-fast:w=0.18,s=0.49 RRCF-mid:w=0.17,s=0.68 RRCF-slow:w=0.15,s=0.64 COPOD!:w=0.19,s=0.31"} +{"timestamp":"2026-03-14T22:14:09.361964356Z","score":0.8017941717413934,"is_anomaly":false,"confidence":0.9200308120659442,"method":"SEAD","details":"MAD!:w=0.31,s=0.84 RRCF-fast:w=0.18,s=0.75 RRCF-mid:w=0.16,s=0.70 RRCF-slow:w=0.15,s=0.75 COPOD!:w=0.19,s=0.92"} +{"timestamp":"2026-03-14T22:14:39.36867108Z","score":0.4144799387344874,"is_anomaly":false,"confidence":0.47560125535799835,"method":"SEAD","details":"MAD!:w=0.31,s=0.09 RRCF-fast:w=0.18,s=0.50 RRCF-mid:w=0.16,s=0.45 RRCF-slow:w=0.15,s=0.63 COPOD!:w=0.19,s=0.67"} +{"timestamp":"2026-03-14T22:15:09.325094445Z","score":0.1996034088130999,"is_anomaly":false,"confidence":0.22903794112471756,"method":"SEAD","details":"MAD:w=0.31,s=0.07 RRCF-fast:w=0.18,s=0.35 RRCF-mid:w=0.16,s=0.23 RRCF-slow:w=0.15,s=0.41 COPOD!:w=0.19,s=0.08"} +{"timestamp":"2026-03-14T22:15:39.373550919Z","score":0.30973214509138974,"is_anomaly":false,"confidence":0.35540682012249486,"method":"SEAD","details":"MAD:w=0.32,s=0.06 RRCF-fast:w=0.18,s=0.44 RRCF-mid:w=0.16,s=0.37 RRCF-slow:w=0.15,s=0.62 COPOD!:w=0.19,s=0.30"} +{"timestamp":"2026-03-14T22:16:09.326372869Z","score":0.23814891408866465,"is_anomaly":false,"confidence":0.2732675623542518,"method":"SEAD","details":"MAD:w=0.32,s=0.09 RRCF-fast:w=0.18,s=0.25 RRCF-mid:w=0.16,s=0.26 RRCF-slow:w=0.15,s=0.23 COPOD!:w=0.19,s=0.47"} +{"timestamp":"2026-03-14T22:16:39.370737442Z","score":0.794351453218025,"is_anomaly":false,"confidence":0.9198187252605277,"method":"SEAD","details":"MAD!:w=0.32,s=1.00 RRCF-fast:w=0.18,s=0.47 RRCF-mid:w=0.16,s=0.53 RRCF-slow:w=0.15,s=0.80 COPOD!:w=0.19,s=0.98"} +{"timestamp":"2026-03-14T22:17:09.372046073Z","score":0.3097254537681604,"is_anomaly":false,"confidence":0.35864637864214227,"method":"SEAD","details":"MAD!:w=0.32,s=0.15 RRCF-fast:w=0.18,s=0.18 RRCF-mid:w=0.16,s=0.27 RRCF-slow:w=0.15,s=0.71 COPOD!:w=0.19,s=0.43"} +{"timestamp":"2026-03-14T22:17:39.327198354Z","score":0.14460447992374184,"is_anomaly":false,"confidence":0.16744465922681537,"method":"SEAD","details":"MAD:w=0.32,s=0.00 RRCF-fast:w=0.18,s=0.16 RRCF-mid:w=0.16,s=0.17 RRCF-slow:w=0.15,s=0.40 COPOD!:w=0.19,s=0.15"} +{"timestamp":"2026-03-14T22:18:09.375141523Z","score":0.2965795756806174,"is_anomaly":false,"confidence":0.3434241180471267,"method":"SEAD","details":"MAD!:w=0.32,s=0.10 RRCF-fast:w=0.18,s=0.53 RRCF-mid:w=0.16,s=0.35 RRCF-slow:w=0.15,s=0.48 COPOD!:w=0.19,s=0.22"} +{"timestamp":"2026-03-14T22:18:39.329042273Z","score":0.12803754840089487,"is_anomaly":false,"confidence":0.14826099213199226,"method":"SEAD","details":"MAD:w=0.32,s=0.09 RRCF-fast:w=0.18,s=0.08 RRCF-mid:w=0.16,s=0.18 RRCF-slow:w=0.15,s=0.24 COPOD!:w=0.19,s=0.11"} +{"timestamp":"2026-03-14T22:19:11.443659301Z","score":0.7912828567729645,"is_anomaly":false,"confidence":0.9162654460929752,"method":"SEAD","details":"MAD!:w=0.32,s=0.98 RRCF-fast:w=0.18,s=0.59 RRCF-mid:w=0.16,s=0.60 RRCF-slow:w=0.15,s=0.67 COPOD!:w=0.19,s=0.92"} +{"timestamp":"2026-03-14T22:19:39.325446Z","score":0.3427089318481895,"is_anomaly":false,"confidence":0.39683957466302733,"method":"SEAD","details":"MAD!:w=0.32,s=0.17 RRCF-fast:w=0.18,s=0.18 RRCF-mid:w=0.16,s=0.17 RRCF-slow:w=0.15,s=0.71 COPOD!:w=0.19,s=0.66"} +{"timestamp":"2026-03-14T22:20:09.381065776Z","score":0.7687861993427362,"is_anomaly":false,"confidence":0.9046678109517035,"method":"SEAD","details":"MAD!:w=0.32,s=0.85 RRCF-fast!:w=0.18,s=0.78 RRCF-mid:w=0.17,s=0.65 RRCF-slow:w=0.14,s=0.72 COPOD!:w=0.19,s=0.76"} +{"timestamp":"2026-03-14T22:20:39.369217907Z","score":0.37966237231866307,"is_anomaly":false,"confidence":0.44676703036539855,"method":"SEAD","details":"MAD!:w=0.32,s=0.12 RRCF-fast:w=0.18,s=0.64 RRCF-mid:w=0.17,s=0.44 RRCF-slow:w=0.15,s=0.53 COPOD!:w=0.19,s=0.41"} +{"timestamp":"2026-03-14T22:21:09.32696435Z","score":0.19481937220403966,"is_anomaly":false,"confidence":0.22925335435715893,"method":"SEAD","details":"MAD:w=0.32,s=0.03 RRCF-fast:w=0.18,s=0.30 RRCF-mid:w=0.17,s=0.15 RRCF-slow:w=0.14,s=0.21 COPOD!:w=0.19,s=0.41"} +{"timestamp":"2026-03-14T22:21:39.370647719Z","score":0.19897913649491697,"is_anomaly":false,"confidence":0.23414834968657605,"method":"SEAD","details":"MAD:w=0.32,s=0.11 RRCF-fast:w=0.18,s=0.18 RRCF-mid:w=0.17,s=0.17 RRCF-slow:w=0.14,s=0.17 COPOD!:w=0.19,s=0.42"} +{"timestamp":"2026-03-14T22:22:09.328248249Z","score":0.2268975546199998,"is_anomaly":false,"confidence":0.2670012992218904,"method":"SEAD","details":"MAD:w=0.33,s=0.06 RRCF-fast:w=0.18,s=0.25 RRCF-mid:w=0.17,s=0.16 RRCF-slow:w=0.14,s=0.18 COPOD!:w=0.18,s=0.60"} +{"timestamp":"2026-03-14T22:22:39.374832082Z","score":0.8166962772918787,"is_anomaly":false,"confidence":0.9610459111020854,"method":"SEAD","details":"MAD!:w=0.33,s=1.00 RRCF-fast:w=0.18,s=0.73 RRCF-mid:w=0.17,s=0.50 RRCF-slow:w=0.14,s=0.64 COPOD!:w=0.18,s=1.00"} +{"timestamp":"2026-03-14T22:23:09.326841765Z","score":0.42475224582921506,"is_anomaly":false,"confidence":0.49982645989177965,"method":"SEAD","details":"MAD!:w=0.33,s=0.20 RRCF-fast:w=0.18,s=0.46 RRCF-mid:w=0.17,s=0.32 RRCF-slow:w=0.15,s=0.58 COPOD!:w=0.18,s=0.76"} +{"timestamp":"2026-03-14T22:23:39.326696273Z","score":0.15829746339916334,"is_anomaly":false,"confidence":0.18895812151307728,"method":"SEAD","details":"MAD:w=0.33,s=0.04 RRCF-fast:w=0.18,s=0.18 RRCF-mid:w=0.17,s=0.17 RRCF-slow:w=0.14,s=0.20 COPOD!:w=0.18,s=0.30"} +{"timestamp":"2026-03-14T22:24:09.370005316Z","score":0.17114831083654014,"is_anomaly":false,"confidence":0.20429805141135193,"method":"SEAD","details":"MAD:w=0.33,s=0.07 RRCF-fast:w=0.18,s=0.26 RRCF-mid:w=0.17,s=0.18 RRCF-slow:w=0.14,s=0.16 COPOD!:w=0.18,s=0.27"} +{"timestamp":"2026-03-14T22:24:39.325597955Z","score":0.1874936708336815,"is_anomaly":false,"confidence":0.22380934650220655,"method":"SEAD","details":"MAD:w=0.33,s=0.05 RRCF-fast:w=0.18,s=0.36 RRCF-mid:w=0.17,s=0.20 RRCF-slow:w=0.14,s=0.17 COPOD!:w=0.18,s=0.27"} +{"timestamp":"2026-03-14T22:25:11.109216975Z","score":0.790685717445466,"is_anomaly":false,"confidence":0.943833746084555,"method":"SEAD","details":"MAD!:w=0.33,s=0.96 RRCF-fast!:w=0.18,s=0.78 RRCF-mid:w=0.17,s=0.43 RRCF-slow:w=0.14,s=0.72 COPOD!:w=0.18,s=0.89"} +{"timestamp":"2026-03-14T22:25:39.328401479Z","score":0.3339934128868458,"is_anomaly":false,"confidence":0.39868464435023643,"method":"SEAD","details":"MAD!:w=0.33,s=0.20 RRCF-fast:w=0.18,s=0.22 RRCF-mid:w=0.17,s=0.15 RRCF-slow:w=0.14,s=0.64 COPOD!:w=0.18,s=0.61"} +{"timestamp":"2026-03-14T22:26:09.364072974Z","score":0.8331915999615027,"is_anomaly":false,"confidence":0.9945725990075027,"method":"SEAD","details":"MAD!:w=0.33,s=0.86 RRCF-fast!:w=0.18,s=0.91 RRCF-mid!:w=0.17,s=0.76 RRCF-slow!:w=0.14,s=0.81 COPOD!:w=0.18,s=0.80"} +{"timestamp":"2026-03-14T22:26:39.374125352Z","score":0.40181210579153304,"is_anomaly":false,"confidence":0.4797687421052709,"method":"SEAD","details":"MAD!:w=0.33,s=0.17 RRCF-fast:w=0.18,s=0.55 RRCF-mid:w=0.17,s=0.35 RRCF-slow:w=0.14,s=0.42 COPOD!:w=0.18,s=0.71"} +{"timestamp":"2026-03-14T22:27:09.328735454Z","score":0.2141505828475406,"is_anomaly":false,"confidence":0.25569850751878503,"method":"SEAD","details":"MAD:w=0.33,s=0.11 RRCF-fast:w=0.18,s=0.51 RRCF-mid:w=0.17,s=0.21 RRCF-slow:w=0.14,s=0.15 COPOD!:w=0.18,s=0.17"} +{"timestamp":"2026-03-14T22:27:39.374409107Z","score":0.38319107233156846,"is_anomaly":false,"confidence":0.4575349923724483,"method":"SEAD","details":"MAD!:w=0.33,s=0.14 RRCF-fast:w=0.18,s=0.58 RRCF-mid:w=0.17,s=0.28 RRCF-slow:w=0.14,s=0.42 COPOD!:w=0.18,s=0.71"} +{"timestamp":"2026-03-14T22:28:09.329805335Z","score":0.19521095134189986,"is_anomaly":false,"confidence":0.23308434768530076,"method":"SEAD","details":"MAD:w=0.33,s=0.07 RRCF-fast:w=0.18,s=0.30 RRCF-mid:w=0.17,s=0.18 RRCF-slow:w=0.14,s=0.25 COPOD!:w=0.18,s=0.31"} +{"timestamp":"2026-03-14T22:28:39.378016665Z","score":0.8386773579116749,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.34,s=0.87 RRCF-fast!:w=0.18,s=0.89 RRCF-mid!:w=0.17,s=0.76 RRCF-slow:w=0.14,s=0.77 COPOD!:w=0.18,s=0.85"} +{"timestamp":"2026-03-14T22:29:09.337688097Z","score":0.4635712237722397,"is_anomaly":false,"confidence":0.5533603997850529,"method":"SEAD","details":"MAD!:w=0.34,s=0.21 RRCF-fast!:w=0.18,s=0.80 RRCF-mid:w=0.17,s=0.30 RRCF-slow:w=0.14,s=0.50 COPOD!:w=0.18,s=0.74"} +{"timestamp":"2026-03-14T22:29:39.387883459Z","score":0.8209546847345179,"is_anomaly":false,"confidence":0.9799655139364349,"method":"SEAD","details":"MAD!:w=0.34,s=0.89 RRCF-fast:w=0.17,s=0.75 RRCF-mid!:w=0.17,s=0.84 RRCF-slow:w=0.14,s=0.73 COPOD!:w=0.18,s=0.81"} +{"timestamp":"2026-03-14T22:30:09.371436016Z","score":0.30574899332285194,"is_anomaly":false,"confidence":0.3650681694557062,"method":"SEAD","details":"MAD!:w=0.34,s=0.17 RRCF-fast:w=0.18,s=0.49 RRCF-mid:w=0.17,s=0.27 RRCF-slow:w=0.14,s=0.42 COPOD!:w=0.18,s=0.32"} +{"timestamp":"2026-03-14T22:30:39.327262141Z","score":0.18472492682011757,"is_anomaly":false,"confidence":0.2205639016310681,"method":"SEAD","details":"MAD!:w=0.34,s=0.14 RRCF-fast:w=0.17,s=0.35 RRCF-mid:w=0.17,s=0.23 RRCF-slow:w=0.14,s=0.12 COPOD!:w=0.18,s=0.10"} +{"timestamp":"2026-03-14T22:31:09.373087151Z","score":0.23039653917019806,"is_anomaly":false,"confidence":0.2750963850761684,"method":"SEAD","details":"MAD:w=0.34,s=0.14 RRCF-fast:w=0.17,s=0.21 RRCF-mid:w=0.17,s=0.21 RRCF-slow:w=0.14,s=0.14 COPOD!:w=0.18,s=0.52"} +{"timestamp":"2026-03-14T22:31:39.329812827Z","score":0.18068840536121686,"is_anomaly":false,"confidence":0.2157442438982509,"method":"SEAD","details":"MAD:w=0.34,s=0.14 RRCF-fast:w=0.17,s=0.33 RRCF-mid:w=0.17,s=0.13 RRCF-slow:w=0.14,s=0.12 COPOD!:w=0.17,s=0.21"} +{"timestamp":"2026-03-14T22:32:09.369209269Z","score":0.8174738832251178,"is_anomaly":false,"confidence":0.9760741675172552,"method":"SEAD","details":"MAD!:w=0.34,s=1.00 RRCF-fast:w=0.17,s=0.53 RRCF-mid!:w=0.17,s=0.76 RRCF-slow:w=0.14,s=0.65 COPOD!:w=0.17,s=0.95"} +{"timestamp":"2026-03-14T22:32:39.327691103Z","score":0.3691440385510739,"is_anomaly":false,"confidence":0.44076265617341254,"method":"SEAD","details":"MAD!:w=0.34,s=0.25 RRCF-fast:w=0.17,s=0.12 RRCF-mid:w=0.17,s=0.35 RRCF-slow:w=0.14,s=0.58 COPOD!:w=0.17,s=0.69"} +{"timestamp":"2026-03-14T22:33:09.323333719Z","score":0.10714603258483894,"is_anomaly":false,"confidence":0.127933719601441,"method":"SEAD","details":"MAD:w=0.34,s=0.00 RRCF-fast:w=0.18,s=0.14 RRCF-mid:w=0.17,s=0.08 RRCF-slow:w=0.14,s=0.11 COPOD!:w=0.17,s=0.31"} +{"timestamp":"2026-03-14T22:33:39.367247732Z","score":0.13690517926043708,"is_anomaly":false,"confidence":0.16366313606322927,"method":"SEAD","details":"MAD:w=0.34,s=0.00 RRCF-fast:w=0.17,s=0.37 RRCF-mid:w=0.17,s=0.14 RRCF-slow:w=0.14,s=0.13 COPOD!:w=0.17,s=0.17"} +{"timestamp":"2026-03-14T22:34:09.328256229Z","score":0.13891928586049748,"is_anomaly":false,"confidence":0.1660708974372856,"method":"SEAD","details":"MAD:w=0.34,s=0.09 RRCF-fast:w=0.17,s=0.25 RRCF-mid:w=0.17,s=0.15 RRCF-slow:w=0.14,s=0.15 COPOD!:w=0.17,s=0.10"} +{"timestamp":"2026-03-14T22:34:39.371593622Z","score":0.19278266677011086,"is_anomaly":false,"confidence":0.23046181300568652,"method":"SEAD","details":"MAD:w=0.34,s=0.12 RRCF-fast:w=0.17,s=0.23 RRCF-mid:w=0.17,s=0.26 RRCF-slow:w=0.14,s=0.13 COPOD!:w=0.17,s=0.29"} +{"timestamp":"2026-03-14T22:35:09.325082573Z","score":0.4356926538917303,"is_anomaly":false,"confidence":0.5208482723650908,"method":"SEAD","details":"MAD!:w=0.34,s=0.19 RRCF-fast:w=0.17,s=0.68 RRCF-mid:w=0.17,s=0.57 RRCF-slow:w=0.14,s=0.56 COPOD!:w=0.17,s=0.45"} +{"timestamp":"2026-03-14T22:35:39.374170452Z","score":0.7701411767875799,"is_anomaly":false,"confidence":0.9206643670120476,"method":"SEAD","details":"MAD!:w=0.35,s=0.96 RRCF-fast:w=0.17,s=0.62 RRCF-mid:w=0.17,s=0.42 RRCF-slow:w=0.14,s=0.70 COPOD!:w=0.17,s=0.92"} +{"timestamp":"2026-03-14T22:36:09.326843867Z","score":0.4172544612638914,"is_anomaly":false,"confidence":0.49880635660184935,"method":"SEAD","details":"MAD!:w=0.34,s=0.27 RRCF-fast:w=0.17,s=0.57 RRCF-mid:w=0.17,s=0.11 RRCF-slow:w=0.14,s=0.58 COPOD!:w=0.17,s=0.73"} +{"timestamp":"2026-03-14T22:36:39.401062848Z","score":0.7986508702200565,"is_anomaly":false,"confidence":0.9579240079879552,"method":"SEAD","details":"MAD!:w=0.34,s=0.81 RRCF-fast!:w=0.17,s=0.87 RRCF-mid!:w=0.17,s=0.84 RRCF-slow:w=0.14,s=0.65 COPOD!:w=0.17,s=0.79"} +{"timestamp":"2026-03-14T22:37:09.378787283Z","score":0.33399464315801014,"is_anomaly":false,"confidence":0.40060243987748084,"method":"SEAD","details":"MAD!:w=0.34,s=0.21 RRCF-fast:w=0.17,s=0.54 RRCF-mid:w=0.17,s=0.42 RRCF-slow:w=0.14,s=0.45 COPOD!:w=0.17,s=0.20"} +{"timestamp":"2026-03-14T22:37:39.32737074Z","score":0.26895648446872067,"is_anomaly":false,"confidence":0.32259386821382696,"method":"SEAD","details":"MAD:w=0.35,s=0.09 RRCF-fast:w=0.17,s=0.35 RRCF-mid:w=0.17,s=0.22 RRCF-slow:w=0.14,s=0.22 COPOD!:w=0.17,s=0.64"} +{"timestamp":"2026-03-14T22:38:09.373614493Z","score":0.36653220431493694,"is_anomaly":false,"confidence":0.4396288933076367,"method":"SEAD","details":"MAD!:w=0.35,s=0.19 RRCF-fast:w=0.17,s=0.59 RRCF-mid:w=0.17,s=0.27 RRCF-slow:w=0.14,s=0.33 COPOD!:w=0.17,s=0.64"} +{"timestamp":"2026-03-14T22:38:39.327110055Z","score":0.17614661142710486,"is_anomaly":false,"confidence":0.2112751319800813,"method":"SEAD","details":"MAD:w=0.35,s=0.09 RRCF-fast:w=0.17,s=0.19 RRCF-mid:w=0.17,s=0.22 RRCF-slow:w=0.14,s=0.11 COPOD!:w=0.17,s=0.34"} +{"timestamp":"2026-03-14T22:39:09.368049674Z","score":0.8811426015642897,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.35,s=0.90 RRCF-fast!:w=0.17,s=0.93 RRCF-mid!:w=0.17,s=0.81 RRCF-slow!:w=0.14,s=0.88 COPOD!:w=0.17,s=0.87"} +{"timestamp":"2026-03-14T22:39:39.381125967Z","score":0.45451395517633764,"is_anomaly":false,"confidence":0.5433481749229766,"method":"SEAD","details":"MAD!:w=0.35,s=0.28 RRCF-fast:w=0.17,s=0.45 RRCF-mid:w=0.17,s=0.57 RRCF-slow:w=0.14,s=0.49 COPOD!:w=0.17,s=0.68"} +{"timestamp":"2026-03-14T22:40:09.325294629Z","score":0.1336648877313843,"is_anomaly":false,"confidence":0.16032137415392528,"method":"SEAD","details":"MAD:w=0.35,s=0.09 RRCF-fast:w=0.17,s=0.13 RRCF-mid:w=0.17,s=0.21 RRCF-slow:w=0.14,s=0.16 COPOD!:w=0.17,s=0.14"} +{"timestamp":"2026-03-14T22:40:40.850941116Z","score":0.17542691712310768,"is_anomaly":false,"confidence":0.21041191066784368,"method":"SEAD","details":"MAD!:w=0.35,s=0.18 RRCF-fast:w=0.17,s=0.22 RRCF-mid:w=0.17,s=0.14 RRCF-slow:w=0.14,s=0.14 COPOD!:w=0.17,s=0.19"} +{"timestamp":"2026-03-14T22:41:09.325166827Z","score":0.22622744215093787,"is_anomaly":false,"confidence":0.2713434695718528,"method":"SEAD","details":"MAD:w=0.35,s=0.09 RRCF-fast:w=0.17,s=0.43 RRCF-mid:w=0.17,s=0.22 RRCF-slow:w=0.14,s=0.19 COPOD!:w=0.17,s=0.34"} +{"timestamp":"2026-03-14T22:41:39.370377124Z","score":0.9118550603725545,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.35,s=0.95 RRCF-fast!:w=0.17,s=0.97 RRCF-mid!:w=0.17,s=0.74 RRCF-slow!:w=0.14,s=0.89 COPOD!:w=0.17,s=0.95"} +{"timestamp":"2026-03-14T22:42:09.328222236Z","score":0.5488081134052889,"is_anomaly":false,"confidence":0.6560720158438161,"method":"SEAD","details":"MAD!:w=0.35,s=0.32 RRCF-fast!:w=0.17,s=0.97 RRCF-mid:w=0.17,s=0.67 RRCF-slow:w=0.14,s=0.41 COPOD!:w=0.17,s=0.60"} +{"timestamp":"2026-03-14T22:42:39.427280262Z","score":0.7616950761070687,"is_anomaly":false,"confidence":0.91056748585426,"method":"SEAD","details":"MAD!:w=0.36,s=0.82 RRCF-fast!:w=0.17,s=0.87 RRCF-mid:w=0.17,s=0.72 RRCF-slow:w=0.14,s=0.50 COPOD!:w=0.17,s=0.80"} +{"timestamp":"2026-03-14T22:43:09.378348439Z","score":0.9611927947175978,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.35,s=1.00 RRCF-fast!:w=0.17,s=0.97 RRCF-mid!:w=0.17,s=1.00 RRCF-slow!:w=0.14,s=1.00 COPOD!:w=0.17,s=0.79"} +{"timestamp":"2026-03-14T22:43:39.37082143Z","score":0.7821443359788697,"is_anomaly":false,"confidence":0.9350135295968728,"method":"SEAD","details":"MAD!:w=0.35,s=0.74 RRCF-fast!:w=0.17,s=0.90 RRCF-mid!:w=0.17,s=0.81 RRCF-slow!:w=0.14,s=0.77 COPOD!:w=0.17,s=0.74"} +{"timestamp":"2026-03-14T22:44:09.375722308Z","score":0.6282026911431563,"is_anomaly":false,"confidence":0.7509841707322487,"method":"SEAD","details":"MAD!:w=0.35,s=0.27 RRCF-fast!:w=0.17,s=0.91 RRCF-mid!:w=0.17,s=0.87 RRCF-slow!:w=0.14,s=0.88 COPOD!:w=0.17,s=0.64"} +{"timestamp":"2026-03-14T22:44:39.372224798Z","score":0.6314717350714326,"is_anomaly":false,"confidence":0.7548921454642519,"method":"SEAD","details":"MAD!:w=0.36,s=0.28 RRCF-fast:w=0.17,s=0.82 RRCF-mid!:w=0.17,s=0.87 RRCF-slow!:w=0.14,s=0.93 COPOD!:w=0.17,s=0.70"} +{"timestamp":"2026-03-14T22:45:09.37180686Z","score":0.4876781854553337,"is_anomaly":false,"confidence":0.582994315134066,"method":"SEAD","details":"MAD!:w=0.36,s=0.21 RRCF-fast:w=0.16,s=0.72 RRCF-mid:w=0.17,s=0.66 RRCF-slow:w=0.14,s=0.61 COPOD!:w=0.17,s=0.58"} +{"timestamp":"2026-03-14T22:45:39.328408999Z","score":0.5126730352535427,"is_anomaly":false,"confidence":0.6128743790257495,"method":"SEAD","details":"MAD!:w=0.36,s=0.18 RRCF-fast:w=0.16,s=0.61 RRCF-mid:w=0.17,s=0.76 RRCF-slow!:w=0.14,s=0.85 COPOD!:w=0.17,s=0.62"} +{"timestamp":"2026-03-14T22:46:09.326386394Z","score":0.4859725557779162,"is_anomaly":false,"confidence":0.5809553221355788,"method":"SEAD","details":"MAD!:w=0.37,s=0.19 RRCF-fast:w=0.16,s=0.76 RRCF-mid:w=0.16,s=0.69 RRCF-slow:w=0.14,s=0.78 COPOD!:w=0.16,s=0.42"} +{"timestamp":"2026-03-14T22:46:39.370982514Z","score":0.5901454314157449,"is_anomaly":false,"confidence":0.7078368008311156,"method":"SEAD","details":"MAD!:w=0.37,s=0.33 RRCF-fast:w=0.16,s=0.71 RRCF-mid!:w=0.16,s=0.79 RRCF-slow!:w=0.14,s=0.86 COPOD!:w=0.16,s=0.65"} +{"timestamp":"2026-03-14T22:47:09.371074623Z","score":0.597754899564084,"is_anomaly":false,"confidence":0.7169638080117441,"method":"SEAD","details":"MAD!:w=0.37,s=0.30 RRCF-fast:w=0.16,s=0.77 RRCF-mid!:w=0.16,s=0.87 RRCF-slow!:w=0.14,s=0.90 COPOD!:w=0.16,s=0.59"} +{"timestamp":"2026-03-14T22:47:39.372093151Z","score":0.4845664345822982,"is_anomaly":false,"confidence":0.5812024233112161,"method":"SEAD","details":"MAD!:w=0.38,s=0.25 RRCF-fast:w=0.16,s=0.66 RRCF-mid:w=0.16,s=0.58 RRCF-slow:w=0.14,s=0.75 COPOD!:w=0.16,s=0.54"} +{"timestamp":"2026-03-14T22:48:09.370546245Z","score":0.43210499299054494,"is_anomaly":false,"confidence":0.5182787150072966,"method":"SEAD","details":"MAD!:w=0.38,s=0.19 RRCF-fast:w=0.16,s=0.29 RRCF-mid:w=0.16,s=0.63 RRCF-slow:w=0.14,s=0.57 COPOD!:w=0.16,s=0.82"} +{"timestamp":"2026-03-14T22:48:39.327903162Z","score":0.32165697790758946,"is_anomaly":false,"confidence":0.38580430193437654,"method":"SEAD","details":"MAD:w=0.38,s=0.15 RRCF-fast:w=0.16,s=0.33 RRCF-mid:w=0.16,s=0.35 RRCF-slow:w=0.14,s=0.42 COPOD!:w=0.16,s=0.62"} +{"timestamp":"2026-03-14T22:49:09.372691972Z","score":0.5684271553978737,"is_anomaly":false,"confidence":0.6817872981192541,"method":"SEAD","details":"MAD!:w=0.38,s=0.29 RRCF-fast:w=0.16,s=0.64 RRCF-mid!:w=0.16,s=0.86 RRCF-slow:w=0.14,s=0.73 COPOD!:w=0.16,s=0.73"} +{"timestamp":"2026-03-14T22:49:39.367642276Z","score":0.5769259756510755,"is_anomaly":false,"confidence":0.6919810188847159,"method":"SEAD","details":"MAD!:w=0.39,s=0.35 RRCF-fast:w=0.16,s=0.74 RRCF-mid:w=0.16,s=0.74 RRCF-slow:w=0.14,s=0.68 COPOD!:w=0.16,s=0.71"} +{"timestamp":"2026-03-14T22:50:09.391424866Z","score":0.5154931068860712,"is_anomaly":false,"confidence":0.6186969562701896,"method":"SEAD","details":"MAD!:w=0.39,s=0.29 RRCF-fast:w=0.16,s=0.50 RRCF-mid:w=0.16,s=0.79 RRCF-slow:w=0.13,s=0.81 COPOD!:w=0.16,s=0.57"} +{"timestamp":"2026-03-14T22:50:39.374334219Z","score":0.6255125072786596,"is_anomaly":false,"confidence":0.7507426950866537,"method":"SEAD","details":"MAD!:w=0.39,s=0.23 RRCF-fast!:w=0.16,s=0.95 RRCF-mid!:w=0.16,s=0.98 RRCF-slow!:w=0.13,s=0.99 COPOD!:w=0.16,s=0.63"} +{"timestamp":"2026-03-14T22:51:09.32933346Z","score":0.36929764678155486,"is_anomaly":false,"confidence":0.4432325611523425,"method":"SEAD","details":"MAD:w=0.40,s=0.16 RRCF-fast:w=0.16,s=0.17 RRCF-mid:w=0.16,s=0.55 RRCF-slow:w=0.13,s=0.51 COPOD!:w=0.16,s=0.81"} +{"timestamp":"2026-03-14T22:51:39.371639528Z","score":0.627807465074819,"is_anomaly":false,"confidence":0.7534971129135563,"method":"SEAD","details":"MAD!:w=0.40,s=0.35 RRCF-fast:w=0.16,s=0.80 RRCF-mid!:w=0.15,s=0.88 RRCF-slow:w=0.13,s=0.83 COPOD!:w=0.16,s=0.75"} +{"timestamp":"2026-03-14T22:52:09.369295631Z","score":0.4923169578787784,"is_anomaly":false,"confidence":0.5908808464962029,"method":"SEAD","details":"MAD!:w=0.40,s=0.30 RRCF-fast:w=0.16,s=0.41 RRCF-mid:w=0.15,s=0.64 RRCF-slow!:w=0.13,s=0.87 COPOD!:w=0.16,s=0.59"} +{"timestamp":"2026-03-14T22:52:39.368890299Z","score":0.5710865753765283,"is_anomaly":false,"confidence":0.6854204667964909,"method":"SEAD","details":"MAD!:w=0.40,s=0.37 RRCF-fast:w=0.16,s=0.60 RRCF-mid:w=0.15,s=0.64 RRCF-slow!:w=0.13,s=0.86 COPOD!:w=0.16,s=0.76"} +{"timestamp":"2026-03-14T22:53:09.372610228Z","score":0.47195384323541667,"is_anomaly":false,"confidence":0.5664409521858155,"method":"SEAD","details":"MAD!:w=0.41,s=0.22 RRCF-fast:w=0.16,s=0.56 RRCF-mid:w=0.15,s=0.56 RRCF-slow:w=0.13,s=0.65 COPOD!:w=0.15,s=0.82"} +{"timestamp":"2026-03-14T22:53:39.327623335Z","score":0.22635757905158488,"is_anomaly":false,"confidence":0.27268963146787634,"method":"SEAD","details":"MAD:w=0.41,s=0.13 RRCF-fast:w=0.16,s=0.06 RRCF-mid:w=0.15,s=0.40 RRCF-slow:w=0.13,s=0.45 COPOD!:w=0.15,s=0.29"} +{"timestamp":"2026-03-14T22:54:09.378281263Z","score":0.23862439076483274,"is_anomaly":false,"confidence":0.287467278319317,"method":"SEAD","details":"MAD:w=0.41,s=0.15 RRCF-fast:w=0.16,s=0.04 RRCF-mid:w=0.15,s=0.29 RRCF-slow:w=0.13,s=0.47 COPOD!:w=0.15,s=0.43"} +{"timestamp":"2026-03-14T22:54:39.328238115Z","score":0.24930251571400797,"is_anomaly":false,"confidence":0.300331057695995,"method":"SEAD","details":"MAD:w=0.41,s=0.15 RRCF-fast:w=0.16,s=0.12 RRCF-mid:w=0.15,s=0.28 RRCF-slow:w=0.13,s=0.43 COPOD!:w=0.15,s=0.46"} +{"timestamp":"2026-03-14T22:55:09.374943007Z","score":0.9275846303092214,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.41,s=0.97 RRCF-fast!:w=0.16,s=0.91 RRCF-mid!:w=0.15,s=0.91 RRCF-slow:w=0.13,s=0.78 COPOD!:w=0.15,s=0.99"} +{"timestamp":"2026-03-14T22:55:39.327267183Z","score":0.4072560123020034,"is_anomaly":false,"confidence":0.4887903482474146,"method":"SEAD","details":"MAD!:w=0.41,s=0.37 RRCF-fast:w=0.16,s=0.47 RRCF-mid:w=0.15,s=0.55 RRCF-slow:w=0.13,s=0.19 COPOD!:w=0.15,s=0.48"} +{"timestamp":"2026-03-14T22:56:09.374588733Z","score":0.7169123049035812,"is_anomaly":false,"confidence":0.8604411097479929,"method":"SEAD","details":"MAD!:w=0.41,s=0.81 RRCF-fast:w=0.16,s=0.50 RRCF-mid:w=0.15,s=0.64 RRCF-slow:w=0.13,s=0.69 COPOD!:w=0.15,s=0.80"} +{"timestamp":"2026-03-14T22:56:39.37623073Z","score":0.34794770491516097,"is_anomaly":false,"confidence":0.41916745982596826,"method":"SEAD","details":"MAD!:w=0.41,s=0.25 RRCF-fast:w=0.16,s=0.29 RRCF-mid:w=0.15,s=0.35 RRCF-slow:w=0.13,s=0.48 COPOD!:w=0.15,s=0.56"} +{"timestamp":"2026-03-14T22:57:09.328280946Z","score":0.19998866498654677,"is_anomaly":false,"confidence":0.24092339024577578,"method":"SEAD","details":"MAD:w=0.41,s=0.11 RRCF-fast:w=0.16,s=0.04 RRCF-mid:w=0.15,s=0.26 RRCF-slow:w=0.13,s=0.31 COPOD!:w=0.15,s=0.45"} +{"timestamp":"2026-03-14T22:57:39.378984098Z","score":0.16110859938956457,"is_anomaly":false,"confidence":0.19408514960232118,"method":"SEAD","details":"MAD:w=0.41,s=0.06 RRCF-fast:w=0.16,s=0.05 RRCF-mid:w=0.15,s=0.33 RRCF-slow:w=0.13,s=0.33 COPOD!:w=0.15,s=0.23"} +{"timestamp":"2026-03-14T22:58:09.327557358Z","score":0.19317718346640744,"is_anomaly":false,"confidence":0.23271769908553522,"method":"SEAD","details":"MAD:w=0.42,s=0.04 RRCF-fast:w=0.16,s=0.11 RRCF-mid:w=0.15,s=0.23 RRCF-slow:w=0.13,s=0.27 COPOD!:w=0.15,s=0.59"} +{"timestamp":"2026-03-14T22:58:39.377776937Z","score":0.895446629302355,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.42,s=0.99 RRCF-fast!:w=0.16,s=0.95 RRCF-mid:w=0.15,s=0.64 RRCF-slow:w=0.13,s=0.69 COPOD!:w=0.15,s=1.00"} +{"timestamp":"2026-03-14T22:59:09.371580633Z","score":0.47390387457303895,"is_anomaly":false,"confidence":0.5687813878523685,"method":"SEAD","details":"MAD!:w=0.42,s=0.37 RRCF-fast:w=0.16,s=0.80 RRCF-mid:w=0.15,s=0.47 RRCF-slow:w=0.13,s=0.26 COPOD!:w=0.15,s=0.60"} +{"timestamp":"2026-03-14T22:59:39.329245494Z","score":0.18226730987644127,"is_anomaly":false,"confidence":0.21875797821877088,"method":"SEAD","details":"MAD:w=0.42,s=0.07 RRCF-fast:w=0.16,s=0.17 RRCF-mid:w=0.15,s=0.27 RRCF-slow:w=0.13,s=0.35 COPOD!:w=0.15,s=0.27"} +{"timestamp":"2026-03-14T23:00:09.373744606Z","score":0.35554536884504195,"is_anomaly":false,"confidence":0.42832025332083007,"method":"SEAD","details":"MAD!:w=0.42,s=0.21 RRCF-fast:w=0.16,s=0.47 RRCF-mid:w=0.15,s=0.47 RRCF-slow:w=0.13,s=0.50 COPOD!:w=0.15,s=0.41"} +{"timestamp":"2026-03-14T23:00:39.328495657Z","score":0.18568450164691677,"is_anomaly":false,"confidence":0.22369137598814362,"method":"SEAD","details":"MAD:w=0.42,s=0.11 RRCF-fast:w=0.16,s=0.15 RRCF-mid:w=0.15,s=0.22 RRCF-slow:w=0.13,s=0.21 COPOD!:w=0.15,s=0.39"} +{"timestamp":"2026-03-14T23:01:09.374074825Z","score":0.4093110612321704,"is_anomaly":false,"confidence":0.4930909886507042,"method":"SEAD","details":"MAD!:w=0.42,s=0.28 RRCF-fast:w=0.16,s=0.27 RRCF-mid:w=0.15,s=0.47 RRCF-slow:w=0.13,s=0.52 COPOD!:w=0.15,s=0.76"} +{"timestamp":"2026-03-14T23:01:39.330143075Z","score":0.30479208845099576,"is_anomaly":false,"confidence":0.3671785262161933,"method":"SEAD","details":"MAD!:w=0.42,s=0.28 RRCF-fast:w=0.16,s=0.05 RRCF-mid:w=0.15,s=0.35 RRCF-slow:w=0.13,s=0.28 COPOD!:w=0.15,s=0.62"} +{"timestamp":"2026-03-14T23:02:10.618937313Z","score":0.9229598957790218,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.42,s=0.96 RRCF-fast!:w=0.16,s=0.90 RRCF-mid!:w=0.15,s=0.96 RRCF-slow:w=0.13,s=0.77 COPOD!:w=0.15,s=0.94"} +{"timestamp":"2026-03-14T23:02:39.375927949Z","score":0.4574985827290581,"is_anomaly":false,"confidence":0.5490916888146695,"method":"SEAD","details":"MAD!:w=0.42,s=0.35 RRCF-fast:w=0.16,s=0.54 RRCF-mid:w=0.15,s=0.69 RRCF-slow:w=0.13,s=0.40 COPOD!:w=0.15,s=0.49"} +{"timestamp":"2026-03-14T23:03:09.329869954Z","score":0.9497256876996126,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.42,s=1.00 RRCF-fast!:w=0.16,s=0.98 RRCF-mid!:w=0.15,s=0.95 RRCF-slow!:w=0.13,s=0.99 COPOD!:w=0.15,s=0.74"} +{"timestamp":"2026-03-14T23:03:39.370275005Z","score":0.7523282178518496,"is_anomaly":false,"confidence":0.9029474347636373,"method":"SEAD","details":"MAD!:w=0.42,s=0.79 RRCF-fast:w=0.16,s=0.76 RRCF-mid:w=0.15,s=0.64 RRCF-slow:w=0.13,s=0.72 COPOD!:w=0.15,s=0.77"} +{"timestamp":"2026-03-14T23:04:09.375748204Z","score":0.6903586187952542,"is_anomaly":false,"confidence":0.8285712659935025,"method":"SEAD","details":"MAD!:w=0.42,s=0.76 RRCF-fast:w=0.16,s=0.71 RRCF-mid:w=0.15,s=0.46 RRCF-slow:w=0.13,s=0.69 COPOD!:w=0.15,s=0.70"} +{"timestamp":"2026-03-14T23:04:39.377337571Z","score":0.7594347223158375,"is_anomaly":false,"confidence":0.9114766907766796,"method":"SEAD","details":"MAD!:w=0.42,s=0.75 RRCF-fast:w=0.16,s=0.63 RRCF-mid:w=0.15,s=0.74 RRCF-slow!:w=0.13,s=0.96 COPOD!:w=0.15,s=0.77"} +{"timestamp":"2026-03-14T23:05:09.370150907Z","score":0.7672884637758117,"is_anomaly":false,"confidence":0.9209027837189717,"method":"SEAD","details":"MAD!:w=0.42,s=0.75 RRCF-fast:w=0.16,s=0.70 RRCF-mid:w=0.15,s=0.67 RRCF-slow!:w=0.13,s=0.90 COPOD!:w=0.15,s=0.87"} +{"timestamp":"2026-03-14T23:05:39.375845578Z","score":0.760098035040347,"is_anomaly":false,"confidence":0.9122728014486309,"method":"SEAD","details":"MAD!:w=0.42,s=0.81 RRCF-fast:w=0.16,s=0.72 RRCF-mid:w=0.15,s=0.60 RRCF-slow:w=0.13,s=0.87 COPOD!:w=0.15,s=0.74"} +{"timestamp":"2026-03-14T23:06:09.371632264Z","score":0.6529443518424686,"is_anomaly":false,"confidence":0.7836665082468878,"method":"SEAD","details":"MAD!:w=0.42,s=0.69 RRCF-fast:w=0.16,s=0.58 RRCF-mid:w=0.15,s=0.62 RRCF-slow:w=0.13,s=0.78 COPOD!:w=0.15,s=0.55"} +{"timestamp":"2026-03-14T23:06:39.375553261Z","score":0.6065523096171173,"is_anomaly":false,"confidence":0.7307046067045435,"method":"SEAD","details":"MAD!:w=0.42,s=0.68 RRCF-fast:w=0.16,s=0.30 RRCF-mid:w=0.15,s=0.37 RRCF-slow:w=0.13,s=0.73 COPOD!:w=0.15,s=0.86"} +{"timestamp":"2026-03-14T23:07:09.328856424Z","score":0.3324142335362487,"is_anomaly":false,"confidence":0.4004545163341708,"method":"SEAD","details":"MAD!:w=0.42,s=0.18 RRCF-fast:w=0.16,s=0.17 RRCF-mid:w=0.15,s=0.22 RRCF-slow:w=0.13,s=0.58 COPOD!:w=0.15,s=0.83"} +{"timestamp":"2026-03-14T23:07:39.371598714Z","score":0.3175508362161721,"is_anomaly":false,"confidence":0.38254880116194473,"method":"SEAD","details":"MAD!:w=0.42,s=0.27 RRCF-fast:w=0.16,s=0.42 RRCF-mid:w=0.15,s=0.25 RRCF-slow:w=0.13,s=0.53 COPOD!:w=0.14,s=0.24"} +{"timestamp":"2026-03-14T23:08:09.371047593Z","score":0.7965150468158303,"is_anomaly":false,"confidence":0.9595499098588998,"method":"SEAD","details":"MAD!:w=0.42,s=0.87 RRCF-fast:w=0.16,s=0.54 RRCF-mid:w=0.15,s=0.73 RRCF-slow!:w=0.13,s=0.88 COPOD!:w=0.14,s=0.86"} +{"timestamp":"2026-03-14T23:08:39.369787659Z","score":0.8468359378194685,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.42,s=0.94 RRCF-fast:w=0.16,s=0.67 RRCF-mid:w=0.15,s=0.79 RRCF-slow!:w=0.13,s=0.92 COPOD!:w=0.14,s=0.75"} +{"timestamp":"2026-03-14T23:09:09.37196122Z","score":0.8417724288089238,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.42,s=0.98 RRCF-fast:w=0.16,s=0.65 RRCF-mid:w=0.15,s=0.66 RRCF-slow!:w=0.13,s=0.96 COPOD!:w=0.14,s=0.75"} +{"timestamp":"2026-03-14T23:09:39.376852433Z","score":0.7411768755227636,"is_anomaly":false,"confidence":0.8889881044430938,"method":"SEAD","details":"MAD!:w=0.42,s=0.87 RRCF-fast:w=0.16,s=0.52 RRCF-mid:w=0.15,s=0.55 RRCF-slow:w=0.13,s=0.88 COPOD!:w=0.15,s=0.70"} +{"timestamp":"2026-03-14T23:10:09.372696807Z","score":0.6677774819684904,"is_anomaly":false,"confidence":0.8014692922964476,"method":"SEAD","details":"MAD!:w=0.42,s=0.81 RRCF-fast:w=0.16,s=0.43 RRCF-mid:w=0.15,s=0.53 RRCF-slow:w=0.13,s=0.68 COPOD!:w=0.15,s=0.65"} +{"timestamp":"2026-03-14T23:10:39.326529567Z","score":0.3994449893220359,"is_anomaly":false,"confidence":0.47941552620128686,"method":"SEAD","details":"MAD!:w=0.41,s=0.19 RRCF-fast:w=0.16,s=0.42 RRCF-mid:w=0.15,s=0.39 RRCF-slow:w=0.13,s=0.64 COPOD!:w=0.15,s=0.77"} +{"timestamp":"2026-03-14T23:11:09.326474972Z","score":0.3375740873649018,"is_anomaly":false,"confidence":0.40515781409762086,"method":"SEAD","details":"MAD!:w=0.42,s=0.19 RRCF-fast:w=0.16,s=0.52 RRCF-mid:w=0.15,s=0.36 RRCF-slow:w=0.12,s=0.78 COPOD!:w=0.14,s=0.14"} +{"timestamp":"2026-03-14T23:11:39.376405635Z","score":0.6576500486175464,"is_anomaly":false,"confidence":0.789314304954506,"method":"SEAD","details":"MAD!:w=0.42,s=0.75 RRCF-fast:w=0.16,s=0.51 RRCF-mid:w=0.15,s=0.44 RRCF-slow:w=0.12,s=0.72 COPOD!:w=0.14,s=0.72"} +{"timestamp":"2026-03-14T23:12:09.362410404Z","score":0.7650683239763396,"is_anomaly":false,"confidence":0.9182381627607495,"method":"SEAD","details":"MAD!:w=0.42,s=0.89 RRCF-fast:w=0.16,s=0.71 RRCF-mid:w=0.15,s=0.50 RRCF-slow:w=0.12,s=0.73 COPOD!:w=0.14,s=0.79"} +{"timestamp":"2026-03-14T23:12:39.373111295Z","score":0.6636334650677795,"is_anomaly":false,"confidence":0.7964956260942171,"method":"SEAD","details":"MAD!:w=0.42,s=0.88 RRCF-fast:w=0.16,s=0.46 RRCF-mid:w=0.15,s=0.44 RRCF-slow:w=0.12,s=0.64 COPOD!:w=0.15,s=0.53"} +{"timestamp":"2026-03-14T23:13:09.370276845Z","score":0.9817556860713785,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.41,s=0.99 RRCF-fast!:w=0.16,s=0.99 RRCF-mid!:w=0.16,s=0.99 RRCF-slow!:w=0.12,s=1.00 COPOD!:w=0.15,s=0.93"} +{"timestamp":"2026-03-14T23:13:39.328828745Z","score":0.9325977379949234,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.41,s=0.99 RRCF-fast!:w=0.16,s=0.88 RRCF-mid!:w=0.16,s=0.98 RRCF-slow!:w=0.12,s=0.98 COPOD!:w=0.15,s=0.75"} +{"timestamp":"2026-03-14T23:14:09.366019476Z","score":0.827981522001585,"is_anomaly":false,"confidence":0.9931040053549138,"method":"SEAD","details":"MAD!:w=0.41,s=0.83 RRCF-fast:w=0.16,s=0.74 RRCF-mid:w=0.16,s=0.80 RRCF-slow!:w=0.12,s=0.95 COPOD!:w=0.15,s=0.84"} +{"timestamp":"2026-03-14T23:14:39.375527869Z","score":0.5346454887800379,"is_anomaly":false,"confidence":0.6412686300883111,"method":"SEAD","details":"MAD!:w=0.41,s=0.26 RRCF-fast:w=0.16,s=0.74 RRCF-mid:w=0.16,s=0.74 RRCF-slow!:w=0.12,s=0.92 COPOD!:w=0.15,s=0.53"} +{"timestamp":"2026-03-14T23:15:09.333245397Z","score":0.35214074593462563,"is_anomaly":false,"confidence":0.42236737891316656,"method":"SEAD","details":"MAD!:w=0.42,s=0.20 RRCF-fast:w=0.16,s=0.34 RRCF-mid:w=0.15,s=0.61 RRCF-slow:w=0.12,s=0.82 COPOD!:w=0.15,s=0.11"} +{"timestamp":"2026-03-14T23:15:39.378993614Z","score":0.37557068818949635,"is_anomaly":false,"confidence":0.45046990159060124,"method":"SEAD","details":"MAD!:w=0.42,s=0.17 RRCF-fast:w=0.16,s=0.49 RRCF-mid:w=0.15,s=0.63 RRCF-slow:w=0.12,s=0.66 COPOD!:w=0.15,s=0.32"} +{"timestamp":"2026-03-14T23:16:09.3366586Z","score":0.2902611460521427,"is_anomaly":false,"confidence":0.3481472702995161,"method":"SEAD","details":"MAD:w=0.42,s=0.17 RRCF-fast:w=0.16,s=0.24 RRCF-mid:w=0.15,s=0.42 RRCF-slow:w=0.12,s=0.61 COPOD!:w=0.15,s=0.28"} +{"timestamp":"2026-03-14T23:16:39.376669308Z","score":0.8617575773411221,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.42,s=0.85 RRCF-fast:w=0.16,s=0.79 RRCF-mid:w=0.15,s=0.85 RRCF-slow!:w=0.12,s=0.92 COPOD!:w=0.15,s=0.92"} +{"timestamp":"2026-03-14T23:17:09.327075163Z","score":0.341563732486547,"is_anomaly":false,"confidence":0.4096810155815467,"method":"SEAD","details":"MAD!:w=0.42,s=0.30 RRCF-fast:w=0.16,s=0.32 RRCF-mid:w=0.15,s=0.22 RRCF-slow:w=0.12,s=0.59 COPOD!:w=0.15,s=0.40"} +{"timestamp":"2026-03-14T23:17:39.334396227Z","score":0.2039740263412021,"is_anomaly":false,"confidence":0.2446521053490717,"method":"SEAD","details":"MAD!:w=0.42,s=0.18 RRCF-fast:w=0.16,s=0.17 RRCF-mid:w=0.15,s=0.36 RRCF-slow:w=0.12,s=0.35 COPOD!:w=0.15,s=0.03"} +{"timestamp":"2026-03-14T23:18:09.378708799Z","score":0.20856535574489893,"is_anomaly":false,"confidence":0.2501590731974513,"method":"SEAD","details":"MAD:w=0.42,s=0.09 RRCF-fast:w=0.16,s=0.18 RRCF-mid:w=0.15,s=0.24 RRCF-slow:w=0.12,s=0.50 COPOD!:w=0.15,s=0.31"} +{"timestamp":"2026-03-14T23:18:39.327593338Z","score":0.2726659835138449,"is_anomaly":false,"confidence":0.3270431442685238,"method":"SEAD","details":"MAD:w=0.42,s=0.18 RRCF-fast:w=0.16,s=0.24 RRCF-mid:w=0.15,s=0.23 RRCF-slow:w=0.12,s=0.56 COPOD!:w=0.15,s=0.41"} +{"timestamp":"2026-03-14T23:19:09.373982944Z","score":0.7527230593931884,"is_anomaly":false,"confidence":0.9028369176636638,"method":"SEAD","details":"MAD!:w=0.42,s=0.81 RRCF-fast:w=0.16,s=0.67 RRCF-mid:w=0.15,s=0.63 RRCF-slow:w=0.12,s=0.70 COPOD!:w=0.14,s=0.84"} +{"timestamp":"2026-03-14T23:19:39.329853396Z","score":0.30108219132360925,"is_anomaly":false,"confidence":0.3611263321694496,"method":"SEAD","details":"MAD!:w=0.42,s=0.25 RRCF-fast:w=0.16,s=0.06 RRCF-mid:w=0.15,s=0.32 RRCF-slow:w=0.12,s=0.54 COPOD!:w=0.14,s=0.49"} +{"timestamp":"2026-03-14T23:20:09.40031425Z","score":0.6985179069620625,"is_anomaly":false,"confidence":0.8383640773554814,"method":"SEAD","details":"MAD!:w=0.42,s=0.78 RRCF-fast:w=0.16,s=0.65 RRCF-mid:w=0.15,s=0.57 RRCF-slow:w=0.12,s=0.56 COPOD!:w=0.14,s=0.77"} +{"timestamp":"2026-03-14T23:20:39.375033333Z","score":0.2676097085370801,"is_anomaly":false,"confidence":0.32118627762143176,"method":"SEAD","details":"MAD!:w=0.42,s=0.25 RRCF-fast:w=0.16,s=0.05 RRCF-mid:w=0.15,s=0.14 RRCF-slow:w=0.12,s=0.48 COPOD!:w=0.14,s=0.53"} +{"timestamp":"2026-03-14T23:21:09.330644618Z","score":0.18384915464025375,"is_anomaly":false,"confidence":0.22065651483854185,"method":"SEAD","details":"MAD:w=0.42,s=0.09 RRCF-fast:w=0.16,s=0.15 RRCF-mid:w=0.15,s=0.15 RRCF-slow:w=0.12,s=0.52 COPOD!:w=0.14,s=0.27"} +{"timestamp":"2026-03-14T23:21:39.372407311Z","score":0.20737000237604442,"is_anomaly":false,"confidence":0.24888633345034428,"method":"SEAD","details":"MAD!:w=0.42,s=0.18 RRCF-fast:w=0.16,s=0.04 RRCF-mid:w=0.15,s=0.06 RRCF-slow:w=0.12,s=0.44 COPOD!:w=0.14,s=0.44"} +{"timestamp":"2026-03-14T23:22:09.330382872Z","score":0.21894733417642004,"is_anomaly":false,"confidence":0.26278149490049635,"method":"SEAD","details":"MAD:w=0.42,s=0.17 RRCF-fast:w=0.16,s=0.13 RRCF-mid:w=0.15,s=0.16 RRCF-slow:w=0.12,s=0.28 COPOD!:w=0.14,s=0.49"} +{"timestamp":"2026-03-14T23:22:39.375936956Z","score":0.8667698201494898,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.42,s=0.81 RRCF-fast!:w=0.16,s=0.98 RRCF-mid!:w=0.15,s=0.88 RRCF-slow:w=0.12,s=0.83 COPOD!:w=0.14,s=0.93"} +{"timestamp":"2026-03-14T23:23:09.328828448Z","score":0.5196614261861114,"is_anomaly":false,"confidence":0.6232963297614342,"method":"SEAD","details":"MAD!:w=0.43,s=0.33 RRCF-fast!:w=0.16,s=0.92 RRCF-mid:w=0.15,s=0.57 RRCF-slow:w=0.12,s=0.50 COPOD!:w=0.14,s=0.60"} +{"timestamp":"2026-03-14T23:23:39.336032307Z","score":0.21190549398725775,"is_anomaly":false,"confidence":0.25432984921721336,"method":"SEAD","details":"MAD!:w=0.43,s=0.20 RRCF-fast:w=0.16,s=0.51 RRCF-mid:w=0.15,s=0.17 RRCF-slow:w=0.12,s=0.13 COPOD!:w=0.14,s=0.03"} +{"timestamp":"2026-03-14T23:24:09.3878946Z","score":0.194932495583399,"is_anomaly":false,"confidence":0.23395878642128148,"method":"SEAD","details":"MAD:w=0.43,s=0.10 RRCF-fast:w=0.16,s=0.44 RRCF-mid:w=0.15,s=0.11 RRCF-slow:w=0.12,s=0.21 COPOD!:w=0.14,s=0.29"} +{"timestamp":"2026-03-14T23:24:39.330543956Z","score":0.16216387236515845,"is_anomaly":false,"confidence":0.1946297494749721,"method":"SEAD","details":"MAD:w=0.43,s=0.08 RRCF-fast:w=0.16,s=0.29 RRCF-mid:w=0.15,s=0.09 RRCF-slow:w=0.12,s=0.22 COPOD!:w=0.14,s=0.29"} +{"timestamp":"2026-03-14T23:25:09.374434315Z","score":0.21394934505924512,"is_anomaly":false,"confidence":0.2567828877164995,"method":"SEAD","details":"MAD!:w=0.43,s=0.19 RRCF-fast:w=0.16,s=0.28 RRCF-mid:w=0.15,s=0.08 RRCF-slow:w=0.12,s=0.19 COPOD!:w=0.14,s=0.39"} +{"timestamp":"2026-03-14T23:25:39.328435328Z","score":0.14766524902747172,"is_anomaly":false,"confidence":0.17722844185454406,"method":"SEAD","details":"MAD:w=0.43,s=0.09 RRCF-fast:w=0.16,s=0.09 RRCF-mid:w=0.15,s=0.08 RRCF-slow:w=0.12,s=0.10 COPOD!:w=0.14,s=0.51"} +{"timestamp":"2026-03-14T23:26:09.383105123Z","score":0.9579273330300756,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.43,s=0.95 RRCF-fast!:w=0.16,s=1.00 RRCF-mid!:w=0.15,s=0.91 RRCF-slow!:w=0.12,s=0.97 COPOD!:w=0.14,s=0.99"} +{"timestamp":"2026-03-14T23:26:39.329466251Z","score":0.716622640438232,"is_anomaly":false,"confidence":0.8600934532601424,"method":"SEAD","details":"MAD!:w=0.43,s=0.67 RRCF-fast!:w=0.16,s=1.00 RRCF-mid:w=0.15,s=0.62 RRCF-slow:w=0.12,s=0.55 COPOD!:w=0.14,s=0.78"} +{"timestamp":"2026-03-14T23:27:09.328628298Z","score":0.2927763871661842,"is_anomaly":false,"confidence":0.35139142926994443,"method":"SEAD","details":"MAD:w=0.43,s=0.12 RRCF-fast!:w=0.16,s=0.94 RRCF-mid:w=0.15,s=0.21 RRCF-slow:w=0.12,s=0.18 COPOD!:w=0.14,s=0.29"} +{"timestamp":"2026-03-14T23:27:39.375006796Z","score":0.3443234536971959,"is_anomaly":false,"confidence":0.4132584314497473,"method":"SEAD","details":"MAD!:w=0.43,s=0.25 RRCF-fast:w=0.16,s=0.83 RRCF-mid:w=0.15,s=0.17 RRCF-slow:w=0.12,s=0.30 COPOD!:w=0.14,s=0.32"} +{"timestamp":"2026-03-14T23:28:09.328682565Z","score":0.27713169401879045,"is_anomaly":false,"confidence":0.3326146039297506,"method":"SEAD","details":"MAD:w=0.44,s=0.11 RRCF-fast:w=0.15,s=0.83 RRCF-mid:w=0.15,s=0.09 RRCF-slow:w=0.12,s=0.23 COPOD!:w=0.14,s=0.42"} +{"timestamp":"2026-03-14T23:28:39.374056716Z","score":0.8603929058320032,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.44,s=0.76 RRCF-fast!:w=0.15,s=0.94 RRCF-mid!:w=0.15,s=0.94 RRCF-slow:w=0.12,s=0.89 COPOD!:w=0.14,s=0.96"} +{"timestamp":"2026-03-14T23:29:09.33006142Z","score":0.7163156965981885,"is_anomaly":false,"confidence":0.8591689168021004,"method":"SEAD","details":"MAD!:w=0.44,s=0.69 RRCF-fast!:w=0.15,s=0.93 RRCF-mid:w=0.15,s=0.75 RRCF-slow:w=0.12,s=0.66 COPOD!:w=0.14,s=0.56"} +{"timestamp":"2026-03-14T23:29:39.42078948Z","score":0.924160042486416,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.44,s=0.92 RRCF-fast!:w=0.15,s=0.99 RRCF-mid!:w=0.15,s=0.92 RRCF-slow:w=0.12,s=0.81 COPOD!:w=0.14,s=0.97"} +{"timestamp":"2026-03-14T23:30:09.382769681Z","score":0.6535251058378657,"is_anomaly":false,"confidence":0.7838561404590573,"method":"SEAD","details":"MAD!:w=0.44,s=0.68 RRCF-fast!:w=0.15,s=0.94 RRCF-mid:w=0.15,s=0.58 RRCF-slow:w=0.12,s=0.66 COPOD!:w=0.14,s=0.32"} +{"timestamp":"2026-03-14T23:30:39.332627227Z","score":0.29418553864712893,"is_anomaly":false,"confidence":0.3528542956389759,"method":"SEAD","details":"MAD!:w=0.44,s=0.24 RRCF-fast:w=0.15,s=0.60 RRCF-mid:w=0.15,s=0.29 RRCF-slow:w=0.12,s=0.14 COPOD!:w=0.14,s=0.27"} +{"timestamp":"2026-03-14T23:31:09.376176065Z","score":0.26488148963460817,"is_anomaly":false,"confidence":0.317706206371115,"method":"SEAD","details":"MAD:w=0.44,s=0.19 RRCF-fast:w=0.15,s=0.77 RRCF-mid:w=0.15,s=0.24 RRCF-slow:w=0.12,s=0.16 COPOD!:w=0.14,s=0.08"} +{"timestamp":"2026-03-14T23:31:39.33143335Z","score":0.2317024916116954,"is_anomaly":false,"confidence":0.2779103957707012,"method":"SEAD","details":"MAD:w=0.44,s=0.15 RRCF-fast:w=0.15,s=0.65 RRCF-mid:w=0.15,s=0.16 RRCF-slow:w=0.12,s=0.14 COPOD!:w=0.14,s=0.19"} +{"timestamp":"2026-03-14T23:32:09.373548705Z","score":0.5947366060639214,"is_anomaly":false,"confidence":0.7133435830614312,"method":"SEAD","details":"MAD!:w=0.44,s=0.33 RRCF-fast:w=0.15,s=0.87 RRCF-mid:w=0.15,s=0.78 RRCF-slow:w=0.12,s=0.74 COPOD!:w=0.14,s=0.82"} +{"timestamp":"2026-03-14T23:32:39.32817619Z","score":0.2994555910388121,"is_anomaly":false,"confidence":0.3591753426666423,"method":"SEAD","details":"MAD:w=0.44,s=0.18 RRCF-fast:w=0.15,s=0.56 RRCF-mid:w=0.15,s=0.28 RRCF-slow:w=0.12,s=0.35 COPOD!:w=0.14,s=0.39"} +{"timestamp":"2026-03-14T23:33:09.385448674Z","score":0.8328951308764347,"is_anomaly":false,"confidence":0.9989975241408939,"method":"SEAD","details":"MAD!:w=0.45,s=0.81 RRCF-fast!:w=0.15,s=0.96 RRCF-mid!:w=0.15,s=0.80 RRCF-slow:w=0.12,s=0.81 COPOD!:w=0.14,s=0.84"} +{"timestamp":"2026-03-14T23:33:39.377836751Z","score":0.4153680119028278,"is_anomaly":false,"confidence":0.49852640367716106,"method":"SEAD","details":"MAD!:w=0.45,s=0.33 RRCF-fast:w=0.15,s=0.70 RRCF-mid:w=0.15,s=0.30 RRCF-slow:w=0.12,s=0.43 COPOD!:w=0.14,s=0.51"} +{"timestamp":"2026-03-14T23:34:09.330388524Z","score":0.1921735955224948,"is_anomaly":false,"confidence":0.2306475431717916,"method":"SEAD","details":"MAD:w=0.45,s=0.15 RRCF-fast:w=0.15,s=0.24 RRCF-mid:w=0.15,s=0.24 RRCF-slow:w=0.12,s=0.23 COPOD!:w=0.14,s=0.19"} +{"timestamp":"2026-03-14T23:34:39.374440872Z","score":0.4643257656137727,"is_anomaly":false,"confidence":0.5572857019144536,"method":"SEAD","details":"MAD!:w=0.45,s=0.42 RRCF-fast:w=0.14,s=0.56 RRCF-mid:w=0.15,s=0.46 RRCF-slow:w=0.12,s=0.38 COPOD!:w=0.14,s=0.58"} +{"timestamp":"2026-03-14T23:35:09.33178828Z","score":0.2603458440657063,"is_anomaly":false,"confidence":0.3124681574775064,"method":"SEAD","details":"MAD!:w=0.45,s=0.25 RRCF-fast:w=0.14,s=0.43 RRCF-mid:w=0.15,s=0.27 RRCF-slow:w=0.12,s=0.24 COPOD!:w=0.14,s=0.12"} +{"timestamp":"2026-03-14T23:35:39.410319301Z","score":0.8988067598741547,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.45,s=0.92 RRCF-fast:w=0.14,s=0.86 RRCF-mid!:w=0.15,s=0.92 RRCF-slow:w=0.12,s=0.80 COPOD!:w=0.14,s=0.93"} +{"timestamp":"2026-03-14T23:36:09.374752431Z","score":0.4586948704156658,"is_anomaly":false,"confidence":0.5501713515832287,"method":"SEAD","details":"MAD!:w=0.45,s=0.36 RRCF-fast:w=0.14,s=0.67 RRCF-mid:w=0.15,s=0.55 RRCF-slow:w=0.12,s=0.58 COPOD!:w=0.14,s=0.35"} +{"timestamp":"2026-03-14T23:36:39.331013844Z","score":0.20433614130703986,"is_anomaly":false,"confidence":0.24524508086313057,"method":"SEAD","details":"MAD!:w=0.45,s=0.21 RRCF-fast:w=0.14,s=0.19 RRCF-mid:w=0.15,s=0.16 RRCF-slow:w=0.12,s=0.17 COPOD!:w=0.14,s=0.29"} +{"timestamp":"2026-03-14T23:37:09.375793284Z","score":0.27392086670739535,"is_anomaly":false,"confidence":0.3287609557274122,"method":"SEAD","details":"MAD!:w=0.45,s=0.26 RRCF-fast:w=0.14,s=0.52 RRCF-mid:w=0.15,s=0.22 RRCF-slow:w=0.12,s=0.25 COPOD!:w=0.14,s=0.16"} +{"timestamp":"2026-03-14T23:37:39.328880777Z","score":0.16780771901967206,"is_anomaly":false,"confidence":0.2014035175431744,"method":"SEAD","details":"MAD:w=0.45,s=0.08 RRCF-fast:w=0.14,s=0.27 RRCF-mid:w=0.15,s=0.14 RRCF-slow:w=0.12,s=0.26 COPOD!:w=0.14,s=0.31"} +{"timestamp":"2026-03-14T23:38:09.375947544Z","score":0.9262279723023616,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.45,s=0.94 RRCF-fast:w=0.14,s=0.83 RRCF-mid!:w=0.15,s=0.96 RRCF-slow:w=0.12,s=0.88 COPOD!:w=0.14,s=0.97"} +{"timestamp":"2026-03-14T23:38:39.32839767Z","score":0.5797668578656181,"is_anomaly":false,"confidence":0.6953884518177401,"method":"SEAD","details":"MAD!:w=0.45,s=0.37 RRCF-fast:w=0.14,s=0.79 RRCF-mid!:w=0.15,s=0.93 RRCF-slow:w=0.12,s=0.62 COPOD!:w=0.14,s=0.63"} +{"timestamp":"2026-03-14T23:39:09.394210087Z","score":0.7617000987022835,"is_anomaly":false,"confidence":0.9136042276303635,"method":"SEAD","details":"MAD!:w=0.45,s=0.79 RRCF-fast:w=0.14,s=0.91 RRCF-mid:w=0.15,s=0.78 RRCF-slow:w=0.12,s=0.36 COPOD!:w=0.14,s=0.82"} +{"timestamp":"2026-03-14T23:39:39.37418757Z","score":0.4156299634377062,"is_anomaly":false,"confidence":0.49851810755109127,"method":"SEAD","details":"MAD!:w=0.45,s=0.32 RRCF-fast:w=0.14,s=0.72 RRCF-mid:w=0.15,s=0.47 RRCF-slow:w=0.12,s=0.21 COPOD!:w=0.14,s=0.52"} +{"timestamp":"2026-03-14T23:40:09.328137293Z","score":0.2547329720353106,"is_anomaly":false,"confidence":0.3057315652811195,"method":"SEAD","details":"MAD:w=0.45,s=0.11 RRCF-fast:w=0.14,s=0.39 RRCF-mid:w=0.15,s=0.53 RRCF-slow:w=0.12,s=0.17 COPOD!:w=0.14,s=0.36"} +{"timestamp":"2026-03-14T23:40:39.373504316Z","score":0.21088139744887266,"is_anomaly":false,"confidence":0.25310072432153224,"method":"SEAD","details":"MAD:w=0.46,s=0.19 RRCF-fast:w=0.14,s=0.10 RRCF-mid:w=0.15,s=0.42 RRCF-slow:w=0.12,s=0.08 COPOD!:w=0.14,s=0.28"} +{"timestamp":"2026-03-14T23:41:09.33156379Z","score":0.22055624449427927,"is_anomaly":false,"confidence":0.26471251571003596,"method":"SEAD","details":"MAD!:w=0.46,s=0.22 RRCF-fast:w=0.14,s=0.15 RRCF-mid:w=0.15,s=0.43 RRCF-slow:w=0.12,s=0.13 COPOD!:w=0.14,s=0.16"} +{"timestamp":"2026-03-14T23:41:39.708607291Z","score":0.9433767290073,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.46,s=0.95 RRCF-fast:w=0.14,s=0.83 RRCF-mid!:w=0.15,s=0.97 RRCF-slow!:w=0.12,s=0.95 COPOD!:w=0.14,s=1.00"} +{"timestamp":"2026-03-14T23:42:09.379852255Z","score":0.4919911311240944,"is_anomaly":false,"confidence":0.5901078103014689,"method":"SEAD","details":"MAD!:w=0.46,s=0.43 RRCF-fast:w=0.14,s=0.21 RRCF-mid:w=0.15,s=0.63 RRCF-slow:w=0.12,s=0.63 COPOD!:w=0.14,s=0.73"} +{"timestamp":"2026-03-14T23:42:39.329424153Z","score":0.2588607169353142,"is_anomaly":false,"confidence":0.31048472458182824,"method":"SEAD","details":"MAD:w=0.46,s=0.19 RRCF-fast:w=0.14,s=0.12 RRCF-mid:w=0.15,s=0.40 RRCF-slow:w=0.12,s=0.11 COPOD!:w=0.14,s=0.60"} +{"timestamp":"2026-03-14T23:43:09.375597782Z","score":0.7850642300625196,"is_anomaly":false,"confidence":0.9416278148952064,"method":"SEAD","details":"MAD!:w=0.46,s=0.99 RRCF-fast:w=0.14,s=0.66 RRCF-mid:w=0.15,s=0.63 RRCF-slow:w=0.12,s=0.61 COPOD!:w=0.14,s=0.56"} +{"timestamp":"2026-03-14T23:43:39.337427034Z","score":0.2641923897774292,"is_anomaly":false,"confidence":0.31708479752992724,"method":"SEAD","details":"MAD!:w=0.46,s=0.29 RRCF-fast:w=0.14,s=0.07 RRCF-mid:w=0.15,s=0.37 RRCF-slow:w=0.12,s=0.08 COPOD!:w=0.14,s=0.42"} +{"timestamp":"2026-03-14T23:44:09.377677108Z","score":0.8957678644458004,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.45,s=0.87 RRCF-fast:w=0.14,s=0.92 RRCF-mid!:w=0.15,s=0.97 RRCF-slow!:w=0.12,s=0.95 COPOD!:w=0.14,s=0.82"} +{"timestamp":"2026-03-14T23:44:39.374884708Z","score":0.46884746326407095,"is_anomaly":false,"confidence":0.5623486530743477,"method":"SEAD","details":"MAD!:w=0.46,s=0.34 RRCF-fast:w=0.14,s=0.26 RRCF-mid:w=0.15,s=0.66 RRCF-slow:w=0.12,s=0.74 COPOD!:w=0.14,s=0.70"} +{"timestamp":"2026-03-14T23:45:09.327097584Z","score":0.2587414766346329,"is_anomaly":false,"confidence":0.31034170445751436,"method":"SEAD","details":"MAD:w=0.46,s=0.15 RRCF-fast:w=0.14,s=0.48 RRCF-mid:w=0.15,s=0.43 RRCF-slow:w=0.12,s=0.12 COPOD!:w=0.14,s=0.32"} +{"timestamp":"2026-03-14T23:45:39.376032292Z","score":0.2794863072890867,"is_anomaly":false,"confidence":0.3352236297975197,"method":"SEAD","details":"MAD:w=0.46,s=0.20 RRCF-fast:w=0.14,s=0.37 RRCF-mid:w=0.15,s=0.34 RRCF-slow:w=0.12,s=0.37 COPOD!:w=0.13,s=0.32"} +{"timestamp":"2026-03-14T23:46:09.33049009Z","score":0.3312918888699614,"is_anomaly":false,"confidence":0.39736068141110503,"method":"SEAD","details":"MAD!:w=0.46,s=0.24 RRCF-fast:w=0.14,s=0.69 RRCF-mid:w=0.15,s=0.50 RRCF-slow:w=0.12,s=0.24 COPOD!:w=0.13,s=0.15"} +{"timestamp":"2026-03-14T23:46:39.416250331Z","score":0.7921385215990976,"is_anomaly":false,"confidence":0.9507279257684523,"method":"SEAD","details":"MAD!:w=0.46,s=0.73 RRCF-fast:w=0.14,s=0.84 RRCF-mid:w=0.15,s=0.83 RRCF-slow!:w=0.12,s=0.90 COPOD!:w=0.13,s=0.82"} +{"timestamp":"2026-03-14T23:47:09.378414731Z","score":0.45762631646458496,"is_anomaly":false,"confidence":0.5492449953716881,"method":"SEAD","details":"MAD!:w=0.46,s=0.31 RRCF-fast:w=0.14,s=0.65 RRCF-mid:w=0.15,s=0.65 RRCF-slow:w=0.12,s=0.42 COPOD!:w=0.13,s=0.58"} +{"timestamp":"2026-03-14T23:47:39.328620539Z","score":0.19628973154209814,"is_anomaly":false,"confidence":0.2355877466253472,"method":"SEAD","details":"MAD:w=0.46,s=0.07 RRCF-fast:w=0.14,s=0.07 RRCF-mid:w=0.14,s=0.37 RRCF-slow:w=0.12,s=0.06 COPOD!:w=0.13,s=0.68"} +{"timestamp":"2026-03-14T23:48:09.380129956Z","score":0.7925852541908509,"is_anomaly":false,"confidence":0.9512640960704261,"method":"SEAD","details":"MAD!:w=0.47,s=0.75 RRCF-fast:w=0.14,s=0.79 RRCF-mid!:w=0.14,s=0.87 RRCF-slow:w=0.12,s=0.78 COPOD!:w=0.13,s=0.87"} +{"timestamp":"2026-03-14T23:48:39.332052438Z","score":0.4380701149336258,"is_anomaly":false,"confidence":0.525773561511982,"method":"SEAD","details":"MAD!:w=0.47,s=0.33 RRCF-fast:w=0.14,s=0.53 RRCF-mid:w=0.14,s=0.25 RRCF-slow:w=0.12,s=0.62 COPOD!:w=0.13,s=0.75"} +{"timestamp":"2026-03-14T23:49:09.332115752Z","score":0.23668223707519623,"is_anomaly":false,"confidence":0.2840669986184835,"method":"SEAD","details":"MAD:w=0.47,s=0.20 RRCF-fast:w=0.14,s=0.28 RRCF-mid:w=0.14,s=0.42 RRCF-slow:w=0.12,s=0.24 COPOD!:w=0.13,s=0.12"} +{"timestamp":"2026-03-14T23:49:39.415590277Z","score":0.5378005557320769,"is_anomaly":false,"confidence":0.6454704485221955,"method":"SEAD","details":"MAD!:w=0.47,s=0.34 RRCF-fast:w=0.14,s=0.80 RRCF-mid:w=0.14,s=0.66 RRCF-slow:w=0.12,s=0.57 COPOD!:w=0.13,s=0.79"} +{"timestamp":"2026-03-14T23:50:09.335904812Z","score":0.21229921377292424,"is_anomaly":false,"confidence":0.254893090261588,"method":"SEAD","details":"MAD:w=0.47,s=0.14 RRCF-fast:w=0.14,s=0.28 RRCF-mid:w=0.14,s=0.24 RRCF-slow:w=0.12,s=0.23 COPOD!:w=0.13,s=0.37"} +{"timestamp":"2026-03-14T23:50:41.649664836Z","score":0.7432291859824441,"is_anomaly":false,"confidence":0.8923442561134469,"method":"SEAD","details":"MAD!:w=0.47,s=0.72 RRCF-fast!:w=0.14,s=0.93 RRCF-mid:w=0.14,s=0.85 RRCF-slow:w=0.12,s=0.51 COPOD!:w=0.13,s=0.72"} +{"timestamp":"2026-03-14T23:51:09.387479811Z","score":0.4131133968878651,"is_anomaly":false,"confidence":0.49599689273385017,"method":"SEAD","details":"MAD!:w=0.47,s=0.32 RRCF-fast:w=0.14,s=0.52 RRCF-mid:w=0.14,s=0.57 RRCF-slow:w=0.12,s=0.39 COPOD!:w=0.13,s=0.48"} +{"timestamp":"2026-03-14T23:51:39.328072731Z","score":0.21419393568456147,"is_anomaly":false,"confidence":0.25716795277596416,"method":"SEAD","details":"MAD!:w=0.47,s=0.23 RRCF-fast:w=0.14,s=0.03 RRCF-mid:w=0.14,s=0.22 RRCF-slow:w=0.12,s=0.14 COPOD!:w=0.13,s=0.40"} +{"timestamp":"2026-03-14T23:52:09.378140368Z","score":0.9100684252220347,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.47,s=0.92 RRCF-fast:w=0.14,s=0.82 RRCF-mid!:w=0.14,s=0.97 RRCF-slow!:w=0.12,s=0.98 COPOD!:w=0.13,s=0.86"} +{"timestamp":"2026-03-14T23:52:39.376007417Z","score":0.524588073388827,"is_anomaly":false,"confidence":0.6296127726360483,"method":"SEAD","details":"MAD!:w=0.47,s=0.39 RRCF-fast:w=0.14,s=0.54 RRCF-mid!:w=0.14,s=0.96 RRCF-slow:w=0.12,s=0.42 COPOD!:w=0.13,s=0.62"} +{"timestamp":"2026-03-14T23:53:09.333144004Z","score":0.23484812263311988,"is_anomaly":false,"confidence":0.28186568688879116,"method":"SEAD","details":"MAD:w=0.47,s=0.13 RRCF-fast:w=0.14,s=0.32 RRCF-mid:w=0.14,s=0.52 RRCF-slow:w=0.12,s=0.33 COPOD!:w=0.13,s=0.12"} +{"timestamp":"2026-03-14T23:53:39.377143122Z","score":0.2667857032119991,"is_anomaly":false,"confidence":0.3203112772808111,"method":"SEAD","details":"MAD:w=0.48,s=0.13 RRCF-fast:w=0.14,s=0.17 RRCF-mid:w=0.14,s=0.55 RRCF-slow:w=0.12,s=0.42 COPOD!:w=0.13,s=0.41"} +{"timestamp":"2026-03-14T23:54:09.331901669Z","score":0.2475485686168089,"is_anomaly":false,"confidence":0.2972145705262075,"method":"SEAD","details":"MAD:w=0.48,s=0.12 RRCF-fast:w=0.14,s=0.15 RRCF-mid:w=0.14,s=0.52 RRCF-slow:w=0.12,s=0.24 COPOD!:w=0.13,s=0.53"} +{"timestamp":"2026-03-14T23:54:39.406952184Z","score":0.9793779600522738,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.48,s=0.97 RRCF-fast!:w=0.14,s=0.98 RRCF-mid!:w=0.14,s=1.00 RRCF-slow!:w=0.12,s=1.00 COPOD!:w=0.13,s=0.97"} +{"timestamp":"2026-03-14T23:55:09.376465731Z","score":0.6537693330227449,"is_anomaly":false,"confidence":0.7846566540672661,"method":"SEAD","details":"MAD!:w=0.48,s=0.45 RRCF-fast!:w=0.14,s=0.99 RRCF-mid!:w=0.14,s=1.00 RRCF-slow!:w=0.12,s=1.00 COPOD!:w=0.13,s=0.37"} +{"timestamp":"2026-03-14T23:55:39.332861357Z","score":0.40886978924909334,"is_anomaly":false,"confidence":0.4907272100054597,"method":"SEAD","details":"MAD:w=0.48,s=0.09 RRCF-fast:w=0.14,s=0.85 RRCF-mid!:w=0.14,s=0.93 RRCF-slow!:w=0.11,s=0.97 COPOD!:w=0.13,s=0.09"} +{"timestamp":"2026-03-14T23:56:09.375691694Z","score":0.4654094456660157,"is_anomaly":false,"confidence":0.5585863391895931,"method":"SEAD","details":"MAD!:w=0.49,s=0.26 RRCF-fast:w=0.14,s=0.70 RRCF-mid:w=0.14,s=0.90 RRCF-slow!:w=0.11,s=0.96 COPOD!:w=0.13,s=0.09"} +{"timestamp":"2026-03-14T23:56:39.332112574Z","score":0.43679224675833545,"is_anomaly":false,"confidence":0.524426462066971,"method":"SEAD","details":"MAD:w=0.49,s=0.23 RRCF-fast:w=0.13,s=0.66 RRCF-mid:w=0.13,s=0.85 RRCF-slow!:w=0.11,s=0.95 COPOD!:w=0.13,s=0.11"} +{"timestamp":"2026-03-14T23:57:09.377866581Z","score":0.9436840145971415,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=0.94 RRCF-fast:w=0.13,s=0.91 RRCF-mid!:w=0.13,s=0.97 RRCF-slow!:w=0.11,s=0.97 COPOD!:w=0.13,s=0.96"} +{"timestamp":"2026-03-14T23:57:39.333567961Z","score":0.6414187392920797,"is_anomaly":false,"confidence":0.7698334204542103,"method":"SEAD","details":"MAD!:w=0.49,s=0.48 RRCF-fast:w=0.13,s=0.76 RRCF-mid!:w=0.13,s=0.94 RRCF-slow!:w=0.11,s=0.96 COPOD!:w=0.13,s=0.55"} +{"timestamp":"2026-03-14T23:58:09.394724268Z","score":0.8178063488995898,"is_anomaly":false,"confidence":0.9815345581224969,"method":"SEAD","details":"MAD!:w=0.50,s=0.79 RRCF-fast:w=0.13,s=0.80 RRCF-mid:w=0.13,s=0.90 RRCF-slow:w=0.11,s=0.93 COPOD!:w=0.13,s=0.78"} +{"timestamp":"2026-03-14T23:58:39.384663997Z","score":0.5595004466580249,"is_anomaly":false,"confidence":0.6715147472488637,"method":"SEAD","details":"MAD!:w=0.50,s=0.33 RRCF-fast:w=0.13,s=0.69 RRCF-mid:w=0.13,s=0.86 RRCF-slow:w=0.11,s=0.91 COPOD!:w=0.13,s=0.69"} +{"timestamp":"2026-03-14T23:59:09.332496457Z","score":0.3621130996367867,"is_anomaly":false,"confidence":0.43460963799145114,"method":"SEAD","details":"MAD:w=0.50,s=0.19 RRCF-fast:w=0.13,s=0.55 RRCF-mid:w=0.13,s=0.67 RRCF-slow:w=0.11,s=0.75 COPOD!:w=0.13,s=0.20"} +{"timestamp":"2026-03-14T23:59:39.380844395Z","score":0.40897784611199256,"is_anomaly":false,"confidence":0.49085690029866985,"method":"SEAD","details":"MAD!:w=0.50,s=0.31 RRCF-fast:w=0.13,s=0.56 RRCF-mid:w=0.13,s=0.62 RRCF-slow:w=0.11,s=0.67 COPOD!:w=0.13,s=0.19"} +{"timestamp":"2026-03-15T00:00:09.330437575Z","score":0.631922468165196,"is_anomaly":false,"confidence":0.7587059219571134,"method":"SEAD","details":"MAD!:w=0.50,s=0.46 RRCF-fast!:w=0.13,s=0.86 RRCF-mid:w=0.13,s=0.86 RRCF-slow!:w=0.11,s=0.93 COPOD!:w=0.13,s=0.57"} +{"timestamp":"2026-03-15T00:00:39.38624359Z","score":0.8488656964580317,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.51,s=0.83 RRCF-fast:w=0.13,s=0.86 RRCF-mid:w=0.13,s=0.86 RRCF-slow:w=0.11,s=0.91 COPOD!:w=0.13,s=0.85"} +{"timestamp":"2026-03-15T00:01:09.331019277Z","score":0.6243220219582997,"is_anomaly":false,"confidence":0.7493138696875319,"method":"SEAD","details":"MAD!:w=0.51,s=0.45 RRCF-fast:w=0.13,s=0.80 RRCF-mid:w=0.13,s=0.91 RRCF-slow!:w=0.11,s=0.94 COPOD!:w=0.13,s=0.60"} +{"timestamp":"2026-03-15T00:01:39.398773707Z","score":0.8617942401871911,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.51,s=0.90 RRCF-fast:w=0.13,s=0.67 RRCF-mid:w=0.13,s=0.87 RRCF-slow:w=0.11,s=0.85 COPOD!:w=0.13,s=0.89"} +{"timestamp":"2026-03-15T00:02:09.375184421Z","score":0.49538391191227293,"is_anomaly":false,"confidence":0.594177205693151,"method":"SEAD","details":"MAD!:w=0.51,s=0.45 RRCF-fast:w=0.13,s=0.49 RRCF-mid:w=0.13,s=0.75 RRCF-slow:w=0.11,s=0.83 COPOD!:w=0.13,s=0.13"} +{"timestamp":"2026-03-15T00:02:39.332990284Z","score":0.2959544323705966,"is_anomaly":false,"confidence":0.354975955839286,"method":"SEAD","details":"MAD:w=0.51,s=0.23 RRCF-fast:w=0.13,s=0.37 RRCF-mid:w=0.13,s=0.51 RRCF-slow:w=0.11,s=0.48 COPOD!:w=0.13,s=0.11"} +{"timestamp":"2026-03-15T00:03:09.386363489Z","score":0.740464232217449,"is_anomaly":false,"confidence":0.8881333402942679,"method":"SEAD","details":"MAD!:w=0.51,s=0.98 RRCF-fast:w=0.13,s=0.54 RRCF-mid:w=0.13,s=0.61 RRCF-slow:w=0.11,s=0.63 COPOD!:w=0.13,s=0.21"} +{"timestamp":"2026-03-15T00:03:39.335650315Z","score":0.36752522836108814,"is_anomaly":false,"confidence":0.4411052972426384,"method":"SEAD","details":"MAD!:w=0.51,s=0.34 RRCF-fast:w=0.13,s=0.32 RRCF-mid:w=0.13,s=0.37 RRCF-slow:w=0.11,s=0.45 COPOD!:w=0.13,s=0.43"} +{"timestamp":"2026-03-15T00:04:09.376014411Z","score":0.928347055938548,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.51,s=0.98 RRCF-fast:w=0.13,s=0.81 RRCF-mid:w=0.13,s=0.83 RRCF-slow:w=0.11,s=0.93 COPOD!:w=0.13,s=0.93"} +{"timestamp":"2026-03-15T00:04:39.336544263Z","score":0.5304953105735029,"is_anomaly":false,"confidence":0.6362907912231598,"method":"SEAD","details":"MAD!:w=0.50,s=0.45 RRCF-fast:w=0.13,s=0.28 RRCF-mid:w=0.13,s=0.72 RRCF-slow:w=0.11,s=0.87 COPOD!:w=0.13,s=0.62"} +{"timestamp":"2026-03-15T00:05:09.33130227Z","score":0.2585401226237966,"is_anomaly":false,"confidence":0.31010019487143997,"method":"SEAD","details":"MAD:w=0.51,s=0.22 RRCF-fast:w=0.13,s=0.48 RRCF-mid:w=0.13,s=0.29 RRCF-slow:w=0.11,s=0.41 COPOD!:w=0.13,s=0.02"} +{"timestamp":"2026-03-15T00:05:39.374197631Z","score":0.2042721959657306,"is_anomaly":false,"confidence":0.24500973826783368,"method":"SEAD","details":"MAD:w=0.51,s=0.12 RRCF-fast:w=0.13,s=0.29 RRCF-mid:w=0.13,s=0.45 RRCF-slow:w=0.11,s=0.39 COPOD!:w=0.13,s=0.03"} +{"timestamp":"2026-03-15T00:06:09.331747972Z","score":0.23946937642449184,"is_anomaly":false,"confidence":0.28722621286535327,"method":"SEAD","details":"MAD!:w=0.51,s=0.28 RRCF-fast:w=0.13,s=0.07 RRCF-mid:w=0.13,s=0.35 RRCF-slow:w=0.11,s=0.43 COPOD!:w=0.13,s=0.00"} +{"timestamp":"2026-03-15T00:06:39.367437925Z","score":0.8860366062320977,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.51,s=0.93 RRCF-fast:w=0.13,s=0.82 RRCF-mid:w=0.13,s=0.85 RRCF-slow:w=0.11,s=0.86 COPOD!:w=0.13,s=0.86"} +{"timestamp":"2026-03-15T00:07:09.372369307Z","score":0.4885238314748942,"is_anomaly":false,"confidence":0.5859490349207547,"method":"SEAD","details":"MAD!:w=0.51,s=0.45 RRCF-fast:w=0.13,s=0.47 RRCF-mid:w=0.13,s=0.82 RRCF-slow:w=0.11,s=0.58 COPOD!:w=0.13,s=0.26"} +{"timestamp":"2026-03-15T00:07:39.330477345Z","score":0.30997709715818267,"is_anomaly":false,"confidence":0.37179512896845923,"method":"SEAD","details":"MAD!:w=0.51,s=0.26 RRCF-fast:w=0.13,s=0.27 RRCF-mid:w=0.13,s=0.27 RRCF-slow:w=0.11,s=0.41 COPOD!:w=0.13,s=0.48"} +{"timestamp":"2026-03-15T00:08:09.391441081Z","score":0.21876249509550394,"is_anomaly":false,"confidence":0.2623898049990103,"method":"SEAD","details":"MAD:w=0.51,s=0.25 RRCF-fast:w=0.13,s=0.01 RRCF-mid:w=0.13,s=0.31 RRCF-slow:w=0.10,s=0.30 COPOD!:w=0.13,s=0.17"} +{"timestamp":"2026-03-15T00:08:39.330534424Z","score":0.17474141568426516,"is_anomaly":false,"confidence":0.20958970122656853,"method":"SEAD","details":"MAD:w=0.51,s=0.17 RRCF-fast:w=0.13,s=0.05 RRCF-mid:w=0.13,s=0.19 RRCF-slow:w=0.10,s=0.32 COPOD!:w=0.13,s=0.19"} +{"timestamp":"2026-03-15T00:09:09.366385485Z","score":0.8925595315980563,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.51,s=0.98 RRCF-fast:w=0.13,s=0.77 RRCF-mid:w=0.13,s=0.74 RRCF-slow:w=0.10,s=0.74 COPOD!:w=0.13,s=0.94"} +{"timestamp":"2026-03-15T00:09:39.335845287Z","score":0.4489895138070097,"is_anomaly":false,"confidence":0.5367439879639013,"method":"SEAD","details":"MAD!:w=0.50,s=0.48 RRCF-fast:w=0.13,s=0.43 RRCF-mid:w=0.13,s=0.43 RRCF-slow:w=0.11,s=0.52 COPOD!:w=0.13,s=0.32"} +{"timestamp":"2026-03-15T00:10:09.333219229Z","score":0.15571443647621505,"is_anomaly":false,"confidence":0.18676821456387094,"method":"SEAD","details":"MAD:w=0.50,s=0.08 RRCF-fast:w=0.13,s=0.28 RRCF-mid:w=0.13,s=0.13 RRCF-slow:w=0.11,s=0.23 COPOD!:w=0.13,s=0.27"} +{"timestamp":"2026-03-15T00:10:39.392249911Z","score":0.2567551909456517,"is_anomaly":false,"confidence":0.3079592983034038,"method":"SEAD","details":"MAD!:w=0.51,s=0.32 RRCF-fast:w=0.13,s=0.14 RRCF-mid:w=0.13,s=0.26 RRCF-slow:w=0.10,s=0.30 COPOD!:w=0.13,s=0.09"} +{"timestamp":"2026-03-15T00:11:09.333599497Z","score":0.20891103817456544,"is_anomaly":false,"confidence":0.25057369429268145,"method":"SEAD","details":"MAD!:w=0.50,s=0.28 RRCF-fast:w=0.13,s=0.04 RRCF-mid:w=0.13,s=0.16 RRCF-slow:w=0.11,s=0.26 COPOD!:w=0.13,s=0.11"} +{"timestamp":"2026-03-15T00:11:39.389418385Z","score":0.8388433436908561,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.50,s=0.95 RRCF-fast:w=0.13,s=0.48 RRCF-mid:w=0.13,s=0.76 RRCF-slow:w=0.11,s=0.80 COPOD!:w=0.13,s=0.90"} +{"timestamp":"2026-03-15T00:12:09.333298122Z","score":0.4482924518014008,"is_anomaly":false,"confidence":0.5359106860064096,"method":"SEAD","details":"MAD!:w=0.50,s=0.48 RRCF-fast:w=0.13,s=0.18 RRCF-mid:w=0.13,s=0.46 RRCF-slow:w=0.11,s=0.64 COPOD!:w=0.13,s=0.42"} +{"timestamp":"2026-03-15T00:12:39.33271421Z","score":0.3698494194987633,"is_anomaly":false,"confidence":0.4421360549930974,"method":"SEAD","details":"MAD!:w=0.50,s=0.36 RRCF-fast:w=0.13,s=0.43 RRCF-mid:w=0.13,s=0.51 RRCF-slow:w=0.11,s=0.46 COPOD!:w=0.13,s=0.11"} +{"timestamp":"2026-03-15T00:13:09.380618463Z","score":0.21139236552070118,"is_anomaly":false,"confidence":0.25270875556232747,"method":"SEAD","details":"MAD:w=0.50,s=0.23 RRCF-fast:w=0.13,s=0.22 RRCF-mid:w=0.13,s=0.18 RRCF-slow:w=0.11,s=0.25 COPOD!:w=0.13,s=0.14"} +{"timestamp":"2026-03-15T00:13:39.331328543Z","score":0.18959012061073738,"is_anomaly":false,"confidence":0.2273996498123349,"method":"SEAD","details":"MAD:w=0.50,s=0.13 RRCF-fast:w=0.13,s=0.24 RRCF-mid:w=0.13,s=0.04 RRCF-slow:w=0.11,s=0.23 COPOD!:w=0.13,s=0.46"} +{"timestamp":"2026-03-15T00:14:09.374776813Z","score":0.835559426705428,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.50,s=0.87 RRCF-fast:w=0.13,s=0.67 RRCF-mid:w=0.13,s=0.76 RRCF-slow:w=0.11,s=0.82 COPOD!:w=0.13,s=0.95"} +{"timestamp":"2026-03-15T00:14:39.339166543Z","score":0.48269658837344365,"is_anomaly":false,"confidence":0.5776927085565821,"method":"SEAD","details":"MAD!:w=0.50,s=0.55 RRCF-fast:w=0.13,s=0.35 RRCF-mid:w=0.13,s=0.44 RRCF-slow:w=0.11,s=0.40 COPOD!:w=0.13,s=0.48"} +{"timestamp":"2026-03-15T00:15:09.33174935Z","score":0.224873777292067,"is_anomaly":false,"confidence":0.2691296035983148,"method":"SEAD","details":"MAD!:w=0.50,s=0.27 RRCF-fast:w=0.13,s=0.34 RRCF-mid:w=0.13,s=0.15 RRCF-slow:w=0.11,s=0.18 COPOD!:w=0.13,s=0.04"} +{"timestamp":"2026-03-15T00:15:39.379152327Z","score":0.0809121218189169,"is_anomaly":false,"confidence":0.09683586736367708,"method":"SEAD","details":"MAD:w=0.50,s=0.09 RRCF-fast:w=0.13,s=0.06 RRCF-mid:w=0.13,s=0.02 RRCF-slow:w=0.11,s=0.18 COPOD!:w=0.13,s=0.04"} +{"timestamp":"2026-03-15T00:16:09.336009593Z","score":0.16370878014096982,"is_anomaly":false,"confidence":0.1959271536035036,"method":"SEAD","details":"MAD:w=0.50,s=0.21 RRCF-fast:w=0.13,s=0.11 RRCF-mid:w=0.13,s=0.13 RRCF-slow:w=0.11,s=0.13 COPOD!:w=0.13,s=0.10"} +{"timestamp":"2026-03-15T00:16:39.383713134Z","score":0.8522420851082595,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.50,s=0.84 RRCF-fast!:w=0.14,s=0.93 RRCF-mid:w=0.13,s=0.82 RRCF-slow:w=0.11,s=0.75 COPOD!:w=0.13,s=0.92"} +{"timestamp":"2026-03-15T00:17:09.332444107Z","score":0.4448653551759836,"is_anomaly":false,"confidence":0.53241617646523,"method":"SEAD","details":"MAD!:w=0.50,s=0.47 RRCF-fast:w=0.14,s=0.62 RRCF-mid:w=0.13,s=0.41 RRCF-slow:w=0.11,s=0.40 COPOD!:w=0.13,s=0.25"} +{"timestamp":"2026-03-15T00:17:39.380258827Z","score":0.7689447436467115,"is_anomaly":false,"confidence":0.9202753497481619,"method":"SEAD","details":"MAD!:w=0.50,s=0.84 RRCF-fast:w=0.13,s=0.74 RRCF-mid:w=0.13,s=0.71 RRCF-slow:w=0.11,s=0.59 COPOD!:w=0.13,s=0.73"} +{"timestamp":"2026-03-15T00:18:09.376595981Z","score":0.44630425738314544,"is_anomaly":false,"confidence":0.5341382588942863,"method":"SEAD","details":"MAD!:w=0.50,s=0.39 RRCF-fast:w=0.14,s=0.65 RRCF-mid:w=0.13,s=0.39 RRCF-slow:w=0.11,s=0.18 COPOD!:w=0.13,s=0.72"} +{"timestamp":"2026-03-15T00:18:39.330216436Z","score":0.12105358209412034,"is_anomaly":false,"confidence":0.14487728607339037,"method":"SEAD","details":"MAD:w=0.50,s=0.08 RRCF-fast:w=0.13,s=0.04 RRCF-mid:w=0.13,s=0.05 RRCF-slow:w=0.11,s=0.10 COPOD!:w=0.13,s=0.43"} +{"timestamp":"2026-03-15T00:19:09.3789575Z","score":0.41417170608819254,"is_anomaly":false,"confidence":0.4956819262051202,"method":"SEAD","details":"MAD!:w=0.50,s=0.35 RRCF-fast:w=0.13,s=0.77 RRCF-mid:w=0.13,s=0.47 RRCF-slow:w=0.11,s=0.29 COPOD!:w=0.13,s=0.35"} +{"timestamp":"2026-03-15T00:19:39.329303406Z","score":0.3885808037277184,"is_anomaly":false,"confidence":0.46505465836209214,"method":"SEAD","details":"MAD!:w=0.50,s=0.37 RRCF-fast:w=0.13,s=0.54 RRCF-mid:w=0.13,s=0.35 RRCF-slow:w=0.11,s=0.31 COPOD!:w=0.13,s=0.39"} +{"timestamp":"2026-03-15T00:20:09.378962776Z","score":0.864875594136008,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.50,s=0.98 RRCF-fast:w=0.13,s=0.72 RRCF-mid:w=0.13,s=0.70 RRCF-slow:w=0.11,s=0.61 COPOD!:w=0.13,s=0.96"} +{"timestamp":"2026-03-15T00:20:39.333331739Z","score":0.5316130033836276,"is_anomaly":false,"confidence":0.6362360191180572,"method":"SEAD","details":"MAD!:w=0.50,s=0.62 RRCF-fast:w=0.13,s=0.46 RRCF-mid:w=0.13,s=0.34 RRCF-slow:w=0.11,s=0.58 COPOD!:w=0.13,s=0.44"} +{"timestamp":"2026-03-15T00:21:09.333249907Z","score":0.1987494123633159,"is_anomaly":false,"confidence":0.23786388617141882,"method":"SEAD","details":"MAD:w=0.49,s=0.24 RRCF-fast:w=0.13,s=0.29 RRCF-mid:w=0.13,s=0.16 RRCF-slow:w=0.11,s=0.04 COPOD!:w=0.13,s=0.12"} +{"timestamp":"2026-03-15T00:21:39.375821018Z","score":0.12493111272514304,"is_anomaly":false,"confidence":0.1495179262326566,"method":"SEAD","details":"MAD:w=0.49,s=0.14 RRCF-fast:w=0.13,s=0.06 RRCF-mid:w=0.13,s=0.13 RRCF-slow:w=0.11,s=0.04 COPOD!:w=0.13,s=0.18"} +{"timestamp":"2026-03-15T00:22:09.330022433Z","score":0.09705353174358153,"is_anomaly":false,"confidence":0.11615395463403375,"method":"SEAD","details":"MAD:w=0.49,s=0.13 RRCF-fast:w=0.13,s=0.14 RRCF-mid:w=0.13,s=0.00 RRCF-slow:w=0.11,s=0.06 COPOD!:w=0.13,s=0.07"} +{"timestamp":"2026-03-15T00:22:39.392279964Z","score":0.8152768233333514,"is_anomaly":false,"confidence":0.9757257201297459,"method":"SEAD","details":"MAD!:w=0.49,s=0.78 RRCF-fast!:w=0.13,s=0.89 RRCF-mid:w=0.13,s=0.81 RRCF-slow:w=0.11,s=0.77 COPOD!:w=0.13,s=0.91"} +{"timestamp":"2026-03-15T00:23:09.332247739Z","score":0.5341801466171217,"is_anomaly":false,"confidence":0.6393083837535879,"method":"SEAD","details":"MAD!:w=0.49,s=0.54 RRCF-fast:w=0.13,s=0.62 RRCF-mid:w=0.13,s=0.62 RRCF-slow:w=0.11,s=0.42 COPOD!:w=0.13,s=0.43"} +{"timestamp":"2026-03-15T00:23:39.33392999Z","score":0.9384595952999328,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=1.00 RRCF-fast!:w=0.13,s=1.00 RRCF-mid!:w=0.13,s=0.99 RRCF-slow!:w=0.11,s=1.00 COPOD!:w=0.13,s=0.55"} +{"timestamp":"2026-03-15T00:24:09.432805531Z","score":0.9481290545598234,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=0.94 RRCF-fast!:w=0.13,s=0.93 RRCF-mid!:w=0.13,s=0.95 RRCF-slow!:w=0.11,s=0.96 COPOD!:w=0.13,s=0.99"} +{"timestamp":"2026-03-15T00:24:39.377860927Z","score":0.9718930753675299,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=0.99 RRCF-fast!:w=0.13,s=0.97 RRCF-mid!:w=0.13,s=0.98 RRCF-slow!:w=0.11,s=0.97 COPOD!:w=0.13,s=0.89"} +{"timestamp":"2026-03-15T00:25:09.33466404Z","score":0.6038978135531954,"is_anomaly":false,"confidence":0.7210616360047089,"method":"SEAD","details":"MAD!:w=0.49,s=0.72 RRCF-fast:w=0.13,s=0.35 RRCF-mid:w=0.13,s=0.67 RRCF-slow:w=0.11,s=0.75 COPOD!:w=0.13,s=0.26"} +{"timestamp":"2026-03-15T00:25:41.41501189Z","score":0.9702217405673659,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=1.00 RRCF-fast!:w=0.14,s=0.98 RRCF-mid!:w=0.13,s=0.98 RRCF-slow!:w=0.11,s=0.98 COPOD!:w=0.14,s=0.83"} +{"timestamp":"2026-03-15T00:26:09.336133576Z","score":0.768119280645938,"is_anomaly":false,"confidence":0.9168964129440359,"method":"SEAD","details":"MAD!:w=0.49,s=0.83 RRCF-fast:w=0.14,s=0.68 RRCF-mid:w=0.13,s=0.81 RRCF-slow:w=0.11,s=0.91 COPOD!:w=0.14,s=0.47"} +{"timestamp":"2026-03-15T00:26:39.429934727Z","score":0.9626580223307757,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=1.00 RRCF-fast!:w=0.14,s=0.91 RRCF-mid!:w=0.13,s=0.97 RRCF-slow!:w=0.11,s=0.98 COPOD!:w=0.14,s=0.87"} +{"timestamp":"2026-03-15T00:27:09.332661641Z","score":0.7056805580422301,"is_anomaly":false,"confidence":0.8423639253126823,"method":"SEAD","details":"MAD!:w=0.49,s=0.82 RRCF-fast:w=0.14,s=0.61 RRCF-mid:w=0.13,s=0.67 RRCF-slow:w=0.11,s=0.76 COPOD!:w=0.14,s=0.37"} +{"timestamp":"2026-03-15T00:27:39.425352396Z","score":0.9435944786893705,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=0.99 RRCF-fast:w=0.14,s=0.85 RRCF-mid!:w=0.13,s=0.95 RRCF-slow!:w=0.11,s=0.96 COPOD!:w=0.14,s=0.87"} +{"timestamp":"2026-03-15T00:28:09.39543474Z","score":0.8553717783717463,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=0.84 RRCF-fast:w=0.14,s=0.78 RRCF-mid!:w=0.13,s=0.90 RRCF-slow!:w=0.11,s=0.92 COPOD!:w=0.14,s=0.88"} +{"timestamp":"2026-03-15T00:28:39.377732983Z","score":0.9376679734023512,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=0.99 RRCF-fast:w=0.14,s=0.85 RRCF-mid!:w=0.13,s=0.89 RRCF-slow!:w=0.11,s=0.96 COPOD!:w=0.14,s=0.87"} +{"timestamp":"2026-03-15T00:29:09.34556209Z","score":0.8190621870433401,"is_anomaly":false,"confidence":0.9730209246723395,"method":"SEAD","details":"MAD!:w=0.48,s=0.97 RRCF-fast:w=0.14,s=0.54 RRCF-mid:w=0.13,s=0.80 RRCF-slow:w=0.11,s=0.85 COPOD!:w=0.14,s=0.57"} +{"timestamp":"2026-03-15T00:29:39.432226902Z","score":0.6977241441973927,"is_anomaly":false,"confidence":0.828875026454176,"method":"SEAD","details":"MAD!:w=0.48,s=0.67 RRCF-fast:w=0.14,s=0.67 RRCF-mid:w=0.13,s=0.79 RRCF-slow:w=0.11,s=0.85 COPOD!:w=0.14,s=0.63"} +{"timestamp":"2026-03-15T00:30:09.400724419Z","score":0.8790541499549396,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.48,s=0.87 RRCF-fast!:w=0.14,s=0.92 RRCF-mid:w=0.13,s=0.80 RRCF-slow:w=0.11,s=0.90 COPOD!:w=0.14,s=0.92"} +{"timestamp":"2026-03-15T00:30:39.379441413Z","score":0.8606689876486764,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.48,s=0.97 RRCF-fast:w=0.14,s=0.76 RRCF-mid:w=0.13,s=0.73 RRCF-slow:w=0.11,s=0.92 COPOD!:w=0.14,s=0.65"} +{"timestamp":"2026-03-15T00:31:09.332932921Z","score":0.5225713424006876,"is_anomaly":false,"confidence":0.6170868748748015,"method":"SEAD","details":"MAD!:w=0.48,s=0.70 RRCF-fast:w=0.14,s=0.37 RRCF-mid:w=0.13,s=0.37 RRCF-slow:w=0.11,s=0.66 COPOD!:w=0.14,s=0.09"} +{"timestamp":"2026-03-15T00:31:39.377204022Z","score":0.8578010926783416,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.48,s=0.98 RRCF-fast:w=0.14,s=0.64 RRCF-mid:w=0.13,s=0.78 RRCF-slow:w=0.11,s=0.87 COPOD!:w=0.14,s=0.74"} +{"timestamp":"2026-03-15T00:32:09.332036291Z","score":0.45103501375606486,"is_anomaly":false,"confidence":0.5313384857440334,"method":"SEAD","details":"MAD!:w=0.48,s=0.69 RRCF-fast:w=0.14,s=0.08 RRCF-mid:w=0.13,s=0.27 RRCF-slow:w=0.11,s=0.63 COPOD!:w=0.14,s=0.05"} +{"timestamp":"2026-03-15T00:32:40.438352874Z","score":0.6705282215169519,"is_anomaly":false,"confidence":0.7899108472810141,"method":"SEAD","details":"MAD!:w=0.47,s=0.67 RRCF-fast:w=0.14,s=0.45 RRCF-mid:w=0.13,s=0.81 RRCF-slow:w=0.11,s=0.85 COPOD!:w=0.14,s=0.64"} +{"timestamp":"2026-03-15T00:33:09.369039959Z","score":0.9085524694655231,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.47,s=0.96 RRCF-fast!:w=0.14,s=0.85 RRCF-mid:w=0.13,s=0.80 RRCF-slow:w=0.11,s=0.84 COPOD!:w=0.14,s=0.97"} +{"timestamp":"2026-03-15T00:33:39.386111494Z","score":0.5118959742294316,"is_anomaly":false,"confidence":0.6030352932924059,"method":"SEAD","details":"MAD!:w=0.47,s=0.67 RRCF-fast:w=0.14,s=0.34 RRCF-mid:w=0.13,s=0.31 RRCF-slow:w=0.11,s=0.39 COPOD!:w=0.14,s=0.43"} +{"timestamp":"2026-03-15T00:34:09.332586376Z","score":0.26048808571984616,"is_anomaly":false,"confidence":0.3068660764674036,"method":"SEAD","details":"MAD:w=0.47,s=0.24 RRCF-fast:w=0.14,s=0.17 RRCF-mid:w=0.14,s=0.41 RRCF-slow:w=0.11,s=0.59 COPOD!:w=0.14,s=0.02"} +{"timestamp":"2026-03-15T00:34:39.379434464Z","score":0.24283497710522733,"is_anomaly":false,"confidence":0.2860699615009513,"method":"SEAD","details":"MAD:w=0.47,s=0.18 RRCF-fast:w=0.14,s=0.21 RRCF-mid:w=0.14,s=0.36 RRCF-slow:w=0.11,s=0.61 COPOD!:w=0.14,s=0.08"} +{"timestamp":"2026-03-15T00:35:09.332372397Z","score":0.2649166694563829,"is_anomaly":false,"confidence":0.3120831370165758,"method":"SEAD","details":"MAD!:w=0.47,s=0.30 RRCF-fast:w=0.14,s=0.30 RRCF-mid:w=0.13,s=0.23 RRCF-slow:w=0.11,s=0.42 COPOD!:w=0.14,s=0.02"} +{"timestamp":"2026-03-15T00:35:39.378491123Z","score":0.8232576377872756,"is_anomaly":false,"confidence":0.9698326145377201,"method":"SEAD","details":"MAD!:w=0.47,s=0.89 RRCF-fast:w=0.14,s=0.54 RRCF-mid:w=0.13,s=0.80 RRCF-slow:w=0.11,s=0.83 COPOD!:w=0.14,s=0.90"} +{"timestamp":"2026-03-15T00:36:09.333842674Z","score":0.39354566343225333,"is_anomaly":false,"confidence":0.4636135787726586,"method":"SEAD","details":"MAD!:w=0.47,s=0.60 RRCF-fast:w=0.14,s=0.04 RRCF-mid:w=0.14,s=0.19 RRCF-slow:w=0.11,s=0.26 COPOD!:w=0.14,s=0.37"} +{"timestamp":"2026-03-15T00:36:39.429618656Z","score":0.786973531673487,"is_anomaly":false,"confidence":0.9293105034014946,"method":"SEAD","details":"MAD!:w=0.47,s=0.78 RRCF-fast:w=0.14,s=0.81 RRCF-mid:w=0.14,s=0.82 RRCF-slow:w=0.11,s=0.76 COPOD!:w=0.15,s=0.77"} +{"timestamp":"2026-03-15T00:37:09.376794025Z","score":0.4242881925251926,"is_anomaly":false,"confidence":0.5010276177197901,"method":"SEAD","details":"MAD!:w=0.46,s=0.49 RRCF-fast:w=0.14,s=0.38 RRCF-mid:w=0.14,s=0.22 RRCF-slow:w=0.11,s=0.47 COPOD!:w=0.15,s=0.40"} +{"timestamp":"2026-03-15T00:37:39.335013387Z","score":0.23527722572691773,"is_anomaly":false,"confidence":0.2778309412951189,"method":"SEAD","details":"MAD:w=0.46,s=0.25 RRCF-fast:w=0.14,s=0.04 RRCF-mid:w=0.14,s=0.22 RRCF-slow:w=0.11,s=0.44 COPOD!:w=0.15,s=0.24"} +{"timestamp":"2026-03-15T00:38:09.379658696Z","score":0.7241700710376471,"is_anomaly":false,"confidence":0.8551480147409949,"method":"SEAD","details":"MAD!:w=0.46,s=0.73 RRCF-fast:w=0.15,s=0.51 RRCF-mid!:w=0.14,s=0.84 RRCF-slow:w=0.11,s=0.71 COPOD!:w=0.15,s=0.82"} +{"timestamp":"2026-03-15T00:38:39.334617843Z","score":0.3518380389322453,"is_anomaly":false,"confidence":0.4154736746744579,"method":"SEAD","details":"MAD!:w=0.46,s=0.42 RRCF-fast:w=0.15,s=0.17 RRCF-mid:w=0.14,s=0.27 RRCF-slow:w=0.11,s=0.51 COPOD!:w=0.15,s=0.28"} +{"timestamp":"2026-03-15T00:39:09.39955277Z","score":0.8799325057916645,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.46,s=0.83 RRCF-fast!:w=0.15,s=0.98 RRCF-mid!:w=0.14,s=0.98 RRCF-slow:w=0.11,s=0.89 COPOD!:w=0.15,s=0.84"} +{"timestamp":"2026-03-15T00:39:39.380764607Z","score":0.6536880417535722,"is_anomaly":false,"confidence":0.7700723971779567,"method":"SEAD","details":"MAD!:w=0.46,s=0.52 RRCF-fast!:w=0.15,s=0.93 RRCF-mid!:w=0.14,s=0.95 RRCF-slow:w=0.11,s=0.68 COPOD!:w=0.15,s=0.51"} +{"timestamp":"2026-03-15T00:40:09.334720101Z","score":0.3665795481939811,"is_anomaly":false,"confidence":0.4328814258141815,"method":"SEAD","details":"MAD:w=0.46,s=0.17 RRCF-fast:w=0.15,s=0.84 RRCF-mid:w=0.14,s=0.78 RRCF-slow:w=0.11,s=0.41 COPOD!:w=0.15,s=0.09"} +{"timestamp":"2026-03-15T00:40:39.384093349Z","score":0.4407519249980779,"is_anomaly":false,"confidence":0.5204690841687436,"method":"SEAD","details":"MAD!:w=0.47,s=0.38 RRCF-fast:w=0.14,s=0.71 RRCF-mid:w=0.13,s=0.76 RRCF-slow:w=0.11,s=0.38 COPOD!:w=0.15,s=0.12"} +{"timestamp":"2026-03-15T00:41:09.338218572Z","score":0.2811884822437404,"is_anomaly":false,"confidence":0.33204599578966515,"method":"SEAD","details":"MAD:w=0.47,s=0.07 RRCF-fast:w=0.14,s=0.60 RRCF-mid:w=0.13,s=0.50 RRCF-slow:w=0.11,s=0.44 COPOD!:w=0.15,s=0.33"} +{"timestamp":"2026-03-15T00:41:39.379038566Z","score":0.8616396554270753,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.47,s=0.87 RRCF-fast!:w=0.14,s=0.92 RRCF-mid:w=0.13,s=0.88 RRCF-slow:w=0.11,s=0.66 COPOD!:w=0.15,s=0.91"} +{"timestamp":"2026-03-15T00:42:10.332858999Z","score":0.5604434925067303,"is_anomaly":false,"confidence":0.6602263406864374,"method":"SEAD","details":"MAD!:w=0.47,s=0.61 RRCF-fast:w=0.14,s=0.43 RRCF-mid:w=0.13,s=0.64 RRCF-slow:w=0.11,s=0.33 COPOD!:w=0.15,s=0.61"} +{"timestamp":"2026-03-15T00:42:39.417009326Z","score":0.7120426840716532,"is_anomaly":false,"confidence":0.8388166550288405,"method":"SEAD","details":"MAD!:w=0.47,s=0.74 RRCF-fast:w=0.14,s=0.77 RRCF-mid:w=0.13,s=0.68 RRCF-slow:w=0.11,s=0.64 COPOD!:w=0.15,s=0.66"} +{"timestamp":"2026-03-15T00:43:09.381268511Z","score":0.4123978661619146,"is_anomaly":false,"confidence":0.48582227775569414,"method":"SEAD","details":"MAD!:w=0.47,s=0.43 RRCF-fast:w=0.14,s=0.34 RRCF-mid:w=0.13,s=0.59 RRCF-slow:w=0.11,s=0.32 COPOD!:w=0.15,s=0.34"} +{"timestamp":"2026-03-15T00:43:39.339549309Z","score":0.2695459666802428,"is_anomaly":false,"confidence":0.31829774179671805,"method":"SEAD","details":"MAD:w=0.47,s=0.10 RRCF-fast:w=0.14,s=0.42 RRCF-mid:w=0.13,s=0.44 RRCF-slow:w=0.11,s=0.42 COPOD!:w=0.15,s=0.39"} +{"timestamp":"2026-03-15T00:44:09.400698235Z","score":0.2165564615351706,"is_anomaly":false,"confidence":0.2557242222062343,"method":"SEAD","details":"MAD:w=0.47,s=0.15 RRCF-fast:w=0.14,s=0.35 RRCF-mid:w=0.13,s=0.31 RRCF-slow:w=0.11,s=0.28 COPOD!:w=0.15,s=0.16"} +{"timestamp":"2026-03-15T00:44:39.333027522Z","score":0.2690043833127176,"is_anomaly":false,"confidence":0.31765820426254143,"method":"SEAD","details":"MAD:w=0.47,s=0.14 RRCF-fast:w=0.14,s=0.38 RRCF-mid:w=0.13,s=0.24 RRCF-slow:w=0.11,s=0.46 COPOD!:w=0.15,s=0.47"} +{"timestamp":"2026-03-15T00:45:10.217760836Z","score":0.8599417497776358,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.47,s=0.91 RRCF-fast:w=0.14,s=0.84 RRCF-mid:w=0.13,s=0.87 RRCF-slow:w=0.11,s=0.61 COPOD!:w=0.14,s=0.91"} +{"timestamp":"2026-03-15T00:45:39.376756961Z","score":0.4509206951742856,"is_anomaly":false,"confidence":0.531203813578276,"method":"SEAD","details":"MAD!:w=0.47,s=0.58 RRCF-fast:w=0.14,s=0.09 RRCF-mid:w=0.13,s=0.46 RRCF-slow:w=0.11,s=0.29 COPOD!:w=0.14,s=0.51"} +{"timestamp":"2026-03-15T00:46:09.330669951Z","score":0.1511582265861875,"is_anomaly":false,"confidence":0.17807083878746516,"method":"SEAD","details":"MAD:w=0.47,s=0.08 RRCF-fast:w=0.14,s=0.16 RRCF-mid:w=0.13,s=0.28 RRCF-slow:w=0.11,s=0.21 COPOD!:w=0.15,s=0.22"} +{"timestamp":"2026-03-15T00:46:39.376953783Z","score":0.23823027162195706,"is_anomaly":false,"confidence":0.2813180936030892,"method":"SEAD","details":"MAD:w=0.47,s=0.23 RRCF-fast:w=0.14,s=0.35 RRCF-mid:w=0.13,s=0.20 RRCF-slow:w=0.11,s=0.20 COPOD!:w=0.14,s=0.20"} +{"timestamp":"2026-03-15T00:47:09.334545037Z","score":0.1543119847706235,"is_anomaly":false,"confidence":0.1822218187479902,"method":"SEAD","details":"MAD:w=0.47,s=0.12 RRCF-fast:w=0.14,s=0.17 RRCF-mid:w=0.13,s=0.05 RRCF-slow:w=0.11,s=0.23 COPOD!:w=0.14,s=0.28"} +{"timestamp":"2026-03-15T00:47:39.379574969Z","score":0.797287062522238,"is_anomaly":false,"confidence":0.9414894041639108,"method":"SEAD","details":"MAD!:w=0.47,s=0.89 RRCF-fast:w=0.14,s=0.57 RRCF-mid:w=0.13,s=0.68 RRCF-slow:w=0.11,s=0.62 COPOD!:w=0.14,s=0.95"} +{"timestamp":"2026-03-15T00:48:09.377066045Z","score":0.43539359710599623,"is_anomaly":false,"confidence":0.5141416154669796,"method":"SEAD","details":"MAD!:w=0.47,s=0.62 RRCF-fast:w=0.14,s=0.27 RRCF-mid:w=0.13,s=0.25 RRCF-slow:w=0.11,s=0.13 COPOD!:w=0.14,s=0.41"} +{"timestamp":"2026-03-15T00:48:39.334324421Z","score":0.2096555614722442,"is_anomaly":false,"confidence":0.24757518205012613,"method":"SEAD","details":"MAD:w=0.47,s=0.20 RRCF-fast:w=0.14,s=0.37 RRCF-mid:w=0.13,s=0.15 RRCF-slow:w=0.11,s=0.24 COPOD!:w=0.15,s=0.11"} +{"timestamp":"2026-03-15T00:49:09.384321595Z","score":0.18538648178842967,"is_anomaly":false,"confidence":0.21891664430985808,"method":"SEAD","details":"MAD:w=0.47,s=0.20 RRCF-fast:w=0.14,s=0.25 RRCF-mid:w=0.13,s=0.16 RRCF-slow:w=0.11,s=0.23 COPOD!:w=0.15,s=0.05"} +{"timestamp":"2026-03-15T00:49:39.335706066Z","score":0.2404884553793834,"is_anomaly":false,"confidence":0.2839847066465094,"method":"SEAD","details":"MAD:w=0.47,s=0.28 RRCF-fast:w=0.14,s=0.34 RRCF-mid:w=0.13,s=0.15 RRCF-slow:w=0.11,s=0.24 COPOD!:w=0.15,s=0.09"} +{"timestamp":"2026-03-15T00:50:09.386765714Z","score":0.316437057064627,"is_anomaly":false,"confidence":0.3759175832265895,"method":"SEAD","details":"MAD!:w=0.47,s=0.32 RRCF-fast:w=0.14,s=0.45 RRCF-mid:w=0.13,s=0.28 RRCF-slow:w=0.11,s=0.38 COPOD!:w=0.15,s=0.15"} +{"timestamp":"2026-03-15T00:50:39.332777227Z","score":0.21535542179168082,"is_anomaly":false,"confidence":0.2558356800737708,"method":"SEAD","details":"MAD:w=0.47,s=0.19 RRCF-fast:w=0.14,s=0.33 RRCF-mid:w=0.13,s=0.17 RRCF-slow:w=0.11,s=0.06 COPOD!:w=0.15,s=0.34"} +{"timestamp":"2026-03-15T00:51:09.399435666Z","score":0.8004716370810657,"is_anomaly":false,"confidence":0.9509359176965476,"method":"SEAD","details":"MAD!:w=0.47,s=0.90 RRCF-fast:w=0.14,s=0.51 RRCF-mid:w=0.13,s=0.73 RRCF-slow:w=0.11,s=0.70 COPOD!:w=0.15,s=0.90"} +{"timestamp":"2026-03-15T00:51:39.37850498Z","score":0.42425913394107045,"is_anomaly":false,"confidence":0.5040069256501797,"method":"SEAD","details":"MAD!:w=0.47,s=0.56 RRCF-fast:w=0.14,s=0.23 RRCF-mid:w=0.13,s=0.31 RRCF-slow:w=0.11,s=0.22 COPOD!:w=0.15,s=0.44"} +{"timestamp":"2026-03-15T00:52:09.33394939Z","score":0.19130674100268424,"is_anomaly":false,"confidence":0.2272665799631571,"method":"SEAD","details":"MAD:w=0.46,s=0.14 RRCF-fast:w=0.14,s=0.34 RRCF-mid:w=0.13,s=0.10 RRCF-slow:w=0.11,s=0.18 COPOD!:w=0.15,s=0.28"} +{"timestamp":"2026-03-15T00:52:39.38415043Z","score":0.21096936060320903,"is_anomaly":false,"confidence":0.2506251730075345,"method":"SEAD","details":"MAD!:w=0.47,s=0.30 RRCF-fast:w=0.14,s=0.15 RRCF-mid:w=0.13,s=0.23 RRCF-slow:w=0.11,s=0.09 COPOD!:w=0.15,s=0.05"} +{"timestamp":"2026-03-15T00:53:09.331068488Z","score":0.1827840396206513,"is_anomaly":false,"confidence":0.21714187037378238,"method":"SEAD","details":"MAD:w=0.46,s=0.24 RRCF-fast:w=0.14,s=0.09 RRCF-mid:w=0.13,s=0.09 RRCF-slow:w=0.11,s=0.03 COPOD!:w=0.15,s=0.30"} +{"timestamp":"2026-03-15T00:53:39.826300169Z","score":0.791313393638124,"is_anomaly":false,"confidence":0.943338705122695,"method":"SEAD","details":"MAD!:w=0.46,s=0.90 RRCF-fast:w=0.14,s=0.61 RRCF-mid:w=0.14,s=0.71 RRCF-slow:w=0.11,s=0.50 COPOD!:w=0.15,s=0.93"} +{"timestamp":"2026-03-15T00:54:09.381393134Z","score":0.4222782352577491,"is_anomaly":false,"confidence":0.5034053598133739,"method":"SEAD","details":"MAD!:w=0.46,s=0.62 RRCF-fast:w=0.14,s=0.46 RRCF-mid:w=0.14,s=0.21 RRCF-slow:w=0.11,s=0.06 COPOD!:w=0.15,s=0.24"} +{"timestamp":"2026-03-15T00:54:39.334160297Z","score":0.16420653401191238,"is_anomaly":false,"confidence":0.19575351613260028,"method":"SEAD","details":"MAD:w=0.46,s=0.24 RRCF-fast:w=0.15,s=0.09 RRCF-mid:w=0.14,s=0.13 RRCF-slow:w=0.11,s=0.14 COPOD!:w=0.15,s=0.04"} +{"timestamp":"2026-03-15T00:55:09.384341452Z","score":0.19333862220502895,"is_anomaly":false,"confidence":0.23048239419097205,"method":"SEAD","details":"MAD!:w=0.46,s=0.30 RRCF-fast:w=0.15,s=0.17 RRCF-mid:w=0.14,s=0.14 RRCF-slow:w=0.11,s=0.02 COPOD!:w=0.15,s=0.06"} +{"timestamp":"2026-03-15T00:55:39.335673625Z","score":0.18162364098122669,"is_anomaly":false,"confidence":0.21651675768456896,"method":"SEAD","details":"MAD:w=0.46,s=0.22 RRCF-fast:w=0.15,s=0.28 RRCF-mid:w=0.14,s=0.07 RRCF-slow:w=0.11,s=0.07 COPOD!:w=0.15,s=0.14"} +{"timestamp":"2026-03-15T00:56:09.383411826Z","score":0.5067087355983741,"is_anomaly":false,"confidence":0.6040564539367848,"method":"SEAD","details":"MAD!:w=0.46,s=0.41 RRCF-fast:w=0.15,s=0.82 RRCF-mid:w=0.14,s=0.39 RRCF-slow:w=0.11,s=0.48 COPOD!:w=0.15,s=0.63"} +{"timestamp":"2026-03-15T00:56:39.33457332Z","score":0.3010090059778775,"is_anomaly":false,"confidence":0.3589091837740756,"method":"SEAD","details":"MAD:w=0.46,s=0.22 RRCF-fast:w=0.14,s=0.51 RRCF-mid:w=0.14,s=0.27 RRCF-slow:w=0.11,s=0.18 COPOD!:w=0.15,s=0.45"} +{"timestamp":"2026-03-15T00:57:09.376987518Z","score":0.7594576426412937,"is_anomaly":false,"confidence":0.9055420841840299,"method":"SEAD","details":"MAD!:w=0.46,s=0.79 RRCF-fast:w=0.14,s=0.59 RRCF-mid!:w=0.14,s=0.83 RRCF-slow:w=0.11,s=0.69 COPOD!:w=0.15,s=0.83"} +{"timestamp":"2026-03-15T00:57:39.379409063Z","score":0.47551968286909246,"is_anomaly":false,"confidence":0.5669876244818949,"method":"SEAD","details":"MAD!:w=0.46,s=0.53 RRCF-fast:w=0.14,s=0.70 RRCF-mid:w=0.14,s=0.35 RRCF-slow:w=0.11,s=0.29 COPOD!:w=0.15,s=0.36"} +{"timestamp":"2026-03-15T00:58:09.33358785Z","score":0.13376553309448636,"is_anomaly":false,"confidence":0.15949582021334818,"method":"SEAD","details":"MAD:w=0.46,s=0.08 RRCF-fast:w=0.14,s=0.28 RRCF-mid:w=0.14,s=0.10 RRCF-slow:w=0.11,s=0.05 COPOD!:w=0.15,s=0.25"} +{"timestamp":"2026-03-15T00:58:39.37605344Z","score":0.23983429355857316,"is_anomaly":false,"confidence":0.2859672927808208,"method":"SEAD","details":"MAD!:w=0.46,s=0.32 RRCF-fast:w=0.14,s=0.19 RRCF-mid:w=0.14,s=0.24 RRCF-slow:w=0.11,s=0.07 COPOD!:w=0.15,s=0.18"} +{"timestamp":"2026-03-15T00:59:09.335352862Z","score":0.22124864962842994,"is_anomaly":false,"confidence":0.2638066325998641,"method":"SEAD","details":"MAD:w=0.46,s=0.23 RRCF-fast:w=0.14,s=0.34 RRCF-mid:w=0.14,s=0.23 RRCF-slow:w=0.11,s=0.01 COPOD!:w=0.15,s=0.23"} +{"timestamp":"2026-03-15T00:59:41.644444881Z","score":0.7519747846825301,"is_anomaly":false,"confidence":0.896619871263681,"method":"SEAD","details":"MAD!:w=0.46,s=0.89 RRCF-fast:w=0.14,s=0.58 RRCF-mid:w=0.14,s=0.55 RRCF-slow:w=0.11,s=0.45 COPOD!:w=0.15,s=0.92"} +{"timestamp":"2026-03-15T01:00:09.38050715Z","score":0.4597858813382875,"is_anomaly":false,"confidence":0.5488418738387483,"method":"SEAD","details":"MAD!:w=0.45,s=0.62 RRCF-fast:w=0.14,s=0.58 RRCF-mid:w=0.14,s=0.21 RRCF-slow:w=0.12,s=0.09 COPOD!:w=0.15,s=0.38"} +{"timestamp":"2026-03-15T01:00:39.33300532Z","score":0.28187760901816794,"is_anomaly":false,"confidence":0.3364745230462877,"method":"SEAD","details":"MAD!:w=0.45,s=0.31 RRCF-fast:w=0.14,s=0.23 RRCF-mid:w=0.14,s=0.18 RRCF-slow:w=0.12,s=0.09 COPOD!:w=0.15,s=0.48"} +{"timestamp":"2026-03-15T01:01:09.390627617Z","score":0.31839532537629783,"is_anomaly":false,"confidence":0.3800653610597796,"method":"SEAD","details":"MAD!:w=0.45,s=0.38 RRCF-fast:w=0.14,s=0.53 RRCF-mid:w=0.14,s=0.33 RRCF-slow:w=0.12,s=0.19 COPOD!:w=0.15,s=0.01"} +{"timestamp":"2026-03-15T01:01:39.331835184Z","score":0.19381199274551628,"is_anomaly":false,"confidence":0.2313514650803462,"method":"SEAD","details":"MAD!:w=0.45,s=0.29 RRCF-fast:w=0.14,s=0.20 RRCF-mid:w=0.14,s=0.15 RRCF-slow:w=0.12,s=0.00 COPOD!:w=0.15,s=0.09"} +{"timestamp":"2026-03-15T01:02:09.382286199Z","score":0.9676336469803182,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.45,s=0.94 RRCF-fast!:w=0.14,s=1.00 RRCF-mid!:w=0.14,s=0.99 RRCF-slow!:w=0.12,s=1.00 COPOD!:w=0.15,s=0.99"} +{"timestamp":"2026-03-15T01:02:39.334797589Z","score":0.7407935443877638,"is_anomaly":false,"confidence":0.8832878787050554,"method":"SEAD","details":"MAD!:w=0.45,s=0.63 RRCF-fast!:w=0.14,s=1.00 RRCF-mid!:w=0.14,s=0.99 RRCF-slow!:w=0.12,s=0.99 COPOD!:w=0.15,s=0.38"} +{"timestamp":"2026-03-15T01:03:42.330875133Z","score":0.7836122873948637,"is_anomaly":false,"confidence":0.9343429627646984,"method":"SEAD","details":"MAD!:w=0.45,s=0.57 RRCF-fast!:w=0.14,s=1.00 RRCF-mid!:w=0.14,s=1.00 RRCF-slow!:w=0.12,s=1.00 COPOD!:w=0.15,s=0.84"} +{"timestamp":"2026-03-15T01:04:09.381545232Z","score":0.5647745346042748,"is_anomaly":false,"confidence":0.6741657942309788,"method":"SEAD","details":"MAD!:w=0.45,s=0.35 RRCF-fast!:w=0.14,s=0.93 RRCF-mid!:w=0.14,s=0.95 RRCF-slow!:w=0.12,s=0.96 COPOD!:w=0.15,s=0.19"} +{"timestamp":"2026-03-15T01:04:39.335992023Z","score":0.5114656093962067,"is_anomaly":false,"confidence":0.6105314557463677,"method":"SEAD","details":"MAD!:w=0.46,s=0.33 RRCF-fast!:w=0.14,s=0.85 RRCF-mid!:w=0.14,s=0.92 RRCF-slow!:w=0.12,s=0.95 COPOD!:w=0.15,s=0.02"} +{"timestamp":"2026-03-15T01:05:21.174783052Z","score":0.7990987494488835,"is_anomaly":false,"confidence":0.9538762994487017,"method":"SEAD","details":"MAD!:w=0.46,s=0.63 RRCF-fast!:w=0.14,s=1.00 RRCF-mid!:w=0.14,s=1.00 RRCF-slow!:w=0.11,s=1.00 COPOD!:w=0.15,s=0.80"} +{"timestamp":"2026-03-15T01:05:39.382704214Z","score":0.8637672427950975,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.46,s=0.79 RRCF-fast!:w=0.14,s=0.92 RRCF-mid!:w=0.14,s=0.96 RRCF-slow!:w=0.11,s=0.97 COPOD!:w=0.15,s=0.87"} +{"timestamp":"2026-03-15T01:06:09.33791045Z","score":0.6367374402587742,"is_anomaly":false,"confidence":0.7592162042436253,"method":"SEAD","details":"MAD!:w=0.46,s=0.51 RRCF-fast:w=0.14,s=0.84 RRCF-mid!:w=0.13,s=0.93 RRCF-slow!:w=0.11,s=0.95 COPOD!:w=0.15,s=0.33"} +{"timestamp":"2026-03-15T01:06:55.793956361Z","score":0.8022743157868709,"is_anomaly":false,"confidence":0.9565947002367533,"method":"SEAD","details":"MAD!:w=0.46,s=0.66 RRCF-fast!:w=0.14,s=0.98 RRCF-mid!:w=0.13,s=0.99 RRCF-slow!:w=0.11,s=0.99 COPOD!:w=0.15,s=0.78"} +{"timestamp":"2026-03-15T01:07:09.388934145Z","score":0.8567021504184409,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.47,s=0.77 RRCF-fast!:w=0.14,s=0.94 RRCF-mid!:w=0.13,s=0.95 RRCF-slow!:w=0.11,s=0.96 COPOD!:w=0.15,s=0.89"} +{"timestamp":"2026-03-15T01:07:39.333402407Z","score":0.6158602508998741,"is_anomaly":false,"confidence":0.734323211530808,"method":"SEAD","details":"MAD!:w=0.47,s=0.52 RRCF-fast:w=0.14,s=0.84 RRCF-mid:w=0.13,s=0.89 RRCF-slow:w=0.11,s=0.92 COPOD!:w=0.15,s=0.25"} +{"timestamp":"2026-03-15T01:08:21.599849331Z","score":0.7402835273130052,"is_anomaly":false,"confidence":0.8826797579898037,"method":"SEAD","details":"MAD!:w=0.47,s=0.56 RRCF-fast!:w=0.14,s=0.96 RRCF-mid!:w=0.13,s=0.98 RRCF-slow!:w=0.11,s=0.99 COPOD!:w=0.15,s=0.72"} +{"timestamp":"2026-03-15T01:08:39.436787795Z","score":0.9041285319856927,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.47,s=0.87 RRCF-fast:w=0.14,s=0.90 RRCF-mid!:w=0.13,s=0.96 RRCF-slow!:w=0.11,s=0.96 COPOD!:w=0.15,s=0.91"} +{"timestamp":"2026-03-15T01:09:09.333459248Z","score":0.6053135962530312,"is_anomaly":false,"confidence":0.7216050539182808,"method":"SEAD","details":"MAD!:w=0.47,s=0.58 RRCF-fast:w=0.14,s=0.69 RRCF-mid:w=0.13,s=0.78 RRCF-slow:w=0.11,s=0.91 COPOD!:w=0.15,s=0.23"} +{"timestamp":"2026-03-15T01:10:02.9712415Z","score":0.7192158463246162,"is_anomaly":false,"confidence":0.8573899426323315,"method":"SEAD","details":"MAD!:w=0.47,s=0.55 RRCF-fast!:w=0.14,s=0.92 RRCF-mid!:w=0.13,s=0.97 RRCF-slow!:w=0.11,s=0.97 COPOD!:w=0.15,s=0.69"} +{"timestamp":"2026-03-15T01:10:09.418392556Z","score":0.9464254741471647,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.47,s=0.94 RRCF-fast:w=0.14,s=0.91 RRCF-mid!:w=0.13,s=0.95 RRCF-slow!:w=0.11,s=0.97 COPOD!:w=0.15,s=0.98"} +{"timestamp":"2026-03-15T01:10:39.378067175Z","score":0.6210574330516067,"is_anomaly":false,"confidence":0.7403735604779247,"method":"SEAD","details":"MAD!:w=0.47,s=0.57 RRCF-fast:w=0.14,s=0.63 RRCF-mid:w=0.13,s=0.75 RRCF-slow:w=0.11,s=0.86 COPOD!:w=0.15,s=0.50"} +{"timestamp":"2026-03-15T01:11:37.920079315Z","score":0.7328643115638802,"is_anomaly":false,"confidence":0.8736605196619013,"method":"SEAD","details":"MAD!:w=0.47,s=0.60 RRCF-fast:w=0.14,s=0.91 RRCF-mid!:w=0.13,s=0.96 RRCF-slow!:w=0.11,s=0.96 COPOD!:w=0.15,s=0.64"} +{"timestamp":"2026-03-15T01:11:39.463991172Z","score":0.8465573278929275,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.48,s=0.80 RRCF-fast:w=0.14,s=0.83 RRCF-mid:w=0.13,s=0.92 RRCF-slow:w=0.11,s=0.93 COPOD!:w=0.15,s=0.88"} +{"timestamp":"2026-03-15T01:12:09.382257003Z","score":0.5530710667082055,"is_anomaly":false,"confidence":0.6570315773953065,"method":"SEAD","details":"MAD!:w=0.48,s=0.39 RRCF-fast:w=0.14,s=0.57 RRCF-mid:w=0.13,s=0.76 RRCF-slow:w=0.11,s=0.90 COPOD!:w=0.15,s=0.63"} +{"timestamp":"2026-03-15T01:13:05.189673472Z","score":0.6582347582299121,"is_anomaly":false,"confidence":0.7819628390077938,"method":"SEAD","details":"MAD!:w=0.48,s=0.52 RRCF-fast:w=0.13,s=0.76 RRCF-mid:w=0.13,s=0.93 RRCF-slow:w=0.11,s=0.93 COPOD!:w=0.15,s=0.57"} +{"timestamp":"2026-03-15T01:13:09.426620264Z","score":0.8727088840918026,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.48,s=0.87 RRCF-fast:w=0.13,s=0.78 RRCF-mid:w=0.13,s=0.91 RRCF-slow:w=0.11,s=0.92 COPOD!:w=0.15,s=0.91"} +{"timestamp":"2026-03-15T01:13:39.37765656Z","score":0.5688036292608387,"is_anomaly":false,"confidence":0.6719020797759617,"method":"SEAD","details":"MAD!:w=0.48,s=0.54 RRCF-fast:w=0.13,s=0.35 RRCF-mid:w=0.13,s=0.66 RRCF-slow:w=0.11,s=0.79 COPOD!:w=0.15,s=0.63"} +{"timestamp":"2026-03-15T01:14:09.337404211Z","score":0.40233677993077455,"is_anomaly":false,"confidence":0.4779638369720257,"method":"SEAD","details":"MAD!:w=0.48,s=0.33 RRCF-fast:w=0.13,s=0.45 RRCF-mid:w=0.13,s=0.67 RRCF-slow:w=0.11,s=0.85 COPOD!:w=0.15,s=0.05"} +{"timestamp":"2026-03-15T01:14:39.384891985Z","score":0.4629840863705703,"is_anomaly":false,"confidence":0.5500109893426604,"method":"SEAD","details":"MAD!:w=0.48,s=0.33 RRCF-fast:w=0.13,s=0.33 RRCF-mid:w=0.13,s=0.63 RRCF-slow:w=0.11,s=0.89 COPOD!:w=0.15,s=0.55"} +{"timestamp":"2026-03-15T01:15:09.33512692Z","score":0.39116653131120205,"is_anomaly":false,"confidence":0.4646939219245847,"method":"SEAD","details":"MAD!:w=0.48,s=0.34 RRCF-fast:w=0.13,s=0.40 RRCF-mid:w=0.13,s=0.59 RRCF-slow:w=0.11,s=0.86 COPOD!:w=0.15,s=0.05"} +{"timestamp":"2026-03-15T01:15:41.46057027Z","score":0.8111511163217306,"is_anomaly":false,"confidence":0.9636228136736182,"method":"SEAD","details":"MAD!:w=0.48,s=0.78 RRCF-fast:w=0.13,s=0.82 RRCF-mid:w=0.13,s=0.88 RRCF-slow:w=0.11,s=0.93 COPOD!:w=0.15,s=0.78"} +{"timestamp":"2026-03-15T01:16:09.336803358Z","score":0.4613361094118773,"is_anomaly":false,"confidence":0.5480532429229721,"method":"SEAD","details":"MAD!:w=0.49,s=0.51 RRCF-fast:w=0.13,s=0.17 RRCF-mid:w=0.13,s=0.57 RRCF-slow:w=0.10,s=0.72 COPOD!:w=0.15,s=0.31"} +{"timestamp":"2026-03-15T01:16:39.38118307Z","score":0.8224487291533088,"is_anomaly":false,"confidence":0.977044033524646,"method":"SEAD","details":"MAD!:w=0.48,s=0.84 RRCF-fast:w=0.13,s=0.70 RRCF-mid:w=0.13,s=0.86 RRCF-slow:w=0.10,s=0.91 COPOD!:w=0.15,s=0.78"} +{"timestamp":"2026-03-15T01:17:09.385349051Z","score":0.4925590122645856,"is_anomaly":false,"confidence":0.5871883182589945,"method":"SEAD","details":"MAD!:w=0.48,s=0.56 RRCF-fast:w=0.14,s=0.33 RRCF-mid:w=0.13,s=0.61 RRCF-slow:w=0.10,s=0.78 COPOD!:w=0.15,s=0.12"} +{"timestamp":"2026-03-15T01:17:39.338193277Z","score":0.3721274960918185,"is_anomaly":false,"confidence":0.4436197758385752,"method":"SEAD","details":"MAD!:w=0.48,s=0.26 RRCF-fast:w=0.14,s=0.22 RRCF-mid:w=0.13,s=0.75 RRCF-slow:w=0.10,s=0.81 COPOD!:w=0.15,s=0.25"} +{"timestamp":"2026-03-15T01:18:09.383125232Z","score":0.40915652288553017,"is_anomaly":false,"confidence":0.48776273420167837,"method":"SEAD","details":"MAD!:w=0.48,s=0.26 RRCF-fast:w=0.14,s=0.26 RRCF-mid:w=0.12,s=0.62 RRCF-slow:w=0.10,s=0.83 COPOD!:w=0.15,s=0.54"} +{"timestamp":"2026-03-15T01:18:39.338610933Z","score":0.3747073465324666,"is_anomaly":false,"confidence":0.4466952612197871,"method":"SEAD","details":"MAD:w=0.49,s=0.25 RRCF-fast:w=0.14,s=0.38 RRCF-mid:w=0.12,s=0.53 RRCF-slow:w=0.10,s=0.77 COPOD!:w=0.15,s=0.37"} +{"timestamp":"2026-03-15T01:19:09.385454538Z","score":0.48952358836577925,"is_anomaly":false,"confidence":0.5835697356933266,"method":"SEAD","details":"MAD!:w=0.49,s=0.40 RRCF-fast:w=0.14,s=0.37 RRCF-mid:w=0.12,s=0.62 RRCF-slow:w=0.10,s=0.79 COPOD!:w=0.15,s=0.58"} +{"timestamp":"2026-03-15T01:19:39.335260497Z","score":0.35462154236789434,"is_anomaly":false,"confidence":0.42275061849758816,"method":"SEAD","details":"MAD!:w=0.49,s=0.25 RRCF-fast:w=0.14,s=0.19 RRCF-mid:w=0.12,s=0.58 RRCF-slow:w=0.10,s=0.75 COPOD!:w=0.15,s=0.38"} +{"timestamp":"2026-03-15T01:20:09.371887395Z","score":0.9088545193850037,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=0.93 RRCF-fast:w=0.14,s=0.85 RRCF-mid:w=0.12,s=0.87 RRCF-slow:w=0.10,s=0.91 COPOD!:w=0.15,s=0.91"} +{"timestamp":"2026-03-15T01:20:39.342538524Z","score":0.5369611942180785,"is_anomaly":false,"confidence":0.6401209454145326,"method":"SEAD","details":"MAD!:w=0.49,s=0.60 RRCF-fast:w=0.14,s=0.02 RRCF-mid:w=0.12,s=0.50 RRCF-slow:w=0.10,s=0.62 COPOD!:w=0.15,s=0.77"} +{"timestamp":"2026-03-15T01:21:09.334241403Z","score":0.3506842893972715,"is_anomaly":false,"confidence":0.4180569495303896,"method":"SEAD","details":"MAD!:w=0.49,s=0.36 RRCF-fast:w=0.14,s=0.29 RRCF-mid:w=0.12,s=0.46 RRCF-slow:w=0.10,s=0.77 COPOD!:w=0.15,s=0.00"} +{"timestamp":"2026-03-15T01:21:39.379615074Z","score":0.3794504357949605,"is_anomaly":false,"confidence":0.4523495818961897,"method":"SEAD","details":"MAD!:w=0.49,s=0.36 RRCF-fast:w=0.14,s=0.45 RRCF-mid:w=0.12,s=0.55 RRCF-slow:w=0.10,s=0.73 COPOD!:w=0.15,s=0.01"} +{"timestamp":"2026-03-15T01:22:09.334908228Z","score":0.2557048683299236,"is_anomaly":false,"confidence":0.30483030026183294,"method":"SEAD","details":"MAD:w=0.49,s=0.02 RRCF-fast:w=0.14,s=0.39 RRCF-mid:w=0.12,s=0.50 RRCF-slow:w=0.10,s=0.66 COPOD!:w=0.15,s=0.42"} +{"timestamp":"2026-03-15T01:22:39.38360788Z","score":0.4429083794428938,"is_anomaly":false,"confidence":0.5279989199105113,"method":"SEAD","details":"MAD!:w=0.49,s=0.42 RRCF-fast:w=0.14,s=0.43 RRCF-mid:w=0.12,s=0.54 RRCF-slow:w=0.10,s=0.75 COPOD!:w=0.15,s=0.25"} +{"timestamp":"2026-03-15T01:23:09.336318501Z","score":0.2718558212172362,"is_anomaly":false,"confidence":0.3240841371180086,"method":"SEAD","details":"MAD:w=0.49,s=0.08 RRCF-fast:w=0.14,s=0.33 RRCF-mid:w=0.12,s=0.39 RRCF-slow:w=0.10,s=0.68 COPOD!:w=0.15,s=0.49"} +{"timestamp":"2026-03-15T01:23:40.061788958Z","score":0.9377817857328679,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.50,s=0.90 RRCF-fast!:w=0.14,s=0.99 RRCF-mid!:w=0.12,s=0.99 RRCF-slow!:w=0.10,s=0.99 COPOD!:w=0.15,s=0.94"} +{"timestamp":"2026-03-15T01:24:09.40436137Z","score":0.7537802322604409,"is_anomaly":false,"confidence":0.8985947589973796,"method":"SEAD","details":"MAD!:w=0.50,s=0.70 RRCF-fast!:w=0.14,s=0.97 RRCF-mid!:w=0.12,s=0.98 RRCF-slow!:w=0.10,s=0.98 COPOD!:w=0.15,s=0.40"} +{"timestamp":"2026-03-15T01:24:39.33501886Z","score":0.5351572989788875,"is_anomaly":false,"confidence":0.6379704899656594,"method":"SEAD","details":"MAD!:w=0.50,s=0.32 RRCF-fast:w=0.13,s=0.90 RRCF-mid:w=0.12,s=0.89 RRCF-slow:w=0.10,s=0.90 COPOD!:w=0.15,s=0.38"} +{"timestamp":"2026-03-15T01:25:09.450967475Z","score":0.797899958992306,"is_anomaly":false,"confidence":0.9511906662829297,"method":"SEAD","details":"MAD!:w=0.50,s=0.76 RRCF-fast:w=0.13,s=0.90 RRCF-mid:w=0.12,s=0.86 RRCF-slow:w=0.10,s=0.93 COPOD!:w=0.15,s=0.70"} +{"timestamp":"2026-03-15T01:25:39.362237484Z","score":0.5291544219060353,"is_anomaly":false,"confidence":0.6308143539385916,"method":"SEAD","details":"MAD!:w=0.50,s=0.40 RRCF-fast:w=0.13,s=0.85 RRCF-mid:w=0.12,s=0.84 RRCF-slow:w=0.10,s=0.88 COPOD!:w=0.15,s=0.19"} +{"timestamp":"2026-03-15T01:26:09.38156695Z","score":0.8355818724034725,"is_anomaly":false,"confidence":0.9961119423407077,"method":"SEAD","details":"MAD!:w=0.50,s=0.81 RRCF-fast:w=0.13,s=0.89 RRCF-mid:w=0.12,s=0.82 RRCF-slow:w=0.10,s=0.89 COPOD!:w=0.15,s=0.84"} +{"timestamp":"2026-03-15T01:26:39.345243291Z","score":0.6559947830991139,"is_anomaly":false,"confidence":0.7820229939630676,"method":"SEAD","details":"MAD!:w=0.50,s=0.56 RRCF-fast:w=0.13,s=0.88 RRCF-mid:w=0.12,s=0.93 RRCF-slow:w=0.10,s=0.95 COPOD!:w=0.15,s=0.39"} +{"timestamp":"2026-03-15T01:27:09.35891722Z","score":0.6106257373733099,"is_anomaly":false,"confidence":0.7280818202768482,"method":"SEAD","details":"MAD!:w=0.50,s=0.36 RRCF-fast:w=0.13,s=0.86 RRCF-mid:w=0.12,s=0.93 RRCF-slow:w=0.10,s=0.92 COPOD!:w=0.15,s=0.77"} +{"timestamp":"2026-03-15T01:27:39.400584196Z","score":0.8455134857065285,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.51,s=0.84 RRCF-fast:w=0.13,s=0.81 RRCF-mid:w=0.12,s=0.87 RRCF-slow:w=0.10,s=0.89 COPOD!:w=0.15,s=0.84"} +{"timestamp":"2026-03-15T01:28:09.459865515Z","score":0.7928458051562052,"is_anomaly":false,"confidence":0.9451655200215755,"method":"SEAD","details":"MAD!:w=0.51,s=0.86 RRCF-fast:w=0.13,s=0.79 RRCF-mid:w=0.12,s=0.84 RRCF-slow:w=0.10,s=0.91 COPOD!:w=0.15,s=0.47"} +{"timestamp":"2026-03-15T01:28:39.358830083Z","score":0.5944290255144293,"is_anomaly":false,"confidence":0.7086293644519849,"method":"SEAD","details":"MAD!:w=0.51,s=0.42 RRCF-fast:w=0.13,s=0.82 RRCF-mid:w=0.12,s=0.85 RRCF-slow:w=0.10,s=0.88 COPOD!:w=0.15,s=0.60"} +{"timestamp":"2026-03-15T01:29:09.381321502Z","score":0.4838629212442916,"is_anomaly":false,"confidence":0.5768215542073997,"method":"SEAD","details":"MAD!:w=0.51,s=0.42 RRCF-fast:w=0.13,s=0.69 RRCF-mid:w=0.12,s=0.81 RRCF-slow:w=0.10,s=0.85 COPOD!:w=0.15,s=0.05"} +{"timestamp":"2026-03-15T01:29:39.371629028Z","score":0.7856511716813313,"is_anomaly":false,"confidence":0.9365886700900757,"method":"SEAD","details":"MAD!:w=0.51,s=0.85 RRCF-fast:w=0.13,s=0.77 RRCF-mid:w=0.12,s=0.75 RRCF-slow:w=0.09,s=0.86 COPOD!:w=0.15,s=0.58"} +{"timestamp":"2026-03-15T01:30:10.036881099Z","score":0.4857275485670073,"is_anomaly":false,"confidence":0.5790444094481786,"method":"SEAD","details":"MAD!:w=0.51,s=0.42 RRCF-fast:w=0.13,s=0.63 RRCF-mid:w=0.12,s=0.71 RRCF-slow:w=0.09,s=0.84 COPOD!:w=0.15,s=0.17"} +{"timestamp":"2026-03-15T01:30:39.335836109Z","score":0.4646301612356161,"is_anomaly":false,"confidence":0.5540034637307433,"method":"SEAD","details":"MAD!:w=0.51,s=0.34 RRCF-fast:w=0.13,s=0.60 RRCF-mid:w=0.12,s=0.70 RRCF-slow:w=0.09,s=0.83 COPOD!:w=0.15,s=0.35"} +{"timestamp":"2026-03-15T01:31:12.451315665Z","score":0.9006433181179795,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.51,s=0.92 RRCF-fast:w=0.13,s=0.79 RRCF-mid:w=0.12,s=0.89 RRCF-slow:w=0.09,s=0.94 COPOD!:w=0.15,s=0.93"} +{"timestamp":"2026-03-15T01:31:39.40265261Z","score":0.6358027310910435,"is_anomaly":false,"confidence":0.7579516913057364,"method":"SEAD","details":"MAD!:w=0.51,s=0.68 RRCF-fast:w=0.13,s=0.54 RRCF-mid:w=0.12,s=0.64 RRCF-slow:w=0.09,s=0.84 COPOD!:w=0.15,s=0.44"} +{"timestamp":"2026-03-15T01:32:09.33995462Z","score":0.43496983713297277,"is_anomaly":false,"confidence":0.5185352430873849,"method":"SEAD","details":"MAD!:w=0.51,s=0.35 RRCF-fast:w=0.13,s=0.58 RRCF-mid:w=0.12,s=0.58 RRCF-slow:w=0.09,s=0.78 COPOD!:w=0.15,s=0.27"} +{"timestamp":"2026-03-15T01:32:39.397099645Z","score":0.694469352112146,"is_anomaly":false,"confidence":0.8278892087961573,"method":"SEAD","details":"MAD!:w=0.51,s=0.75 RRCF-fast:w=0.13,s=0.49 RRCF-mid:w=0.11,s=0.73 RRCF-slow:w=0.09,s=0.78 COPOD!:w=0.15,s=0.62"} +{"timestamp":"2026-03-15T01:33:09.363653722Z","score":0.42424622512940874,"is_anomaly":false,"confidence":0.5057514353785689,"method":"SEAD","details":"MAD!:w=0.51,s=0.40 RRCF-fast:w=0.13,s=0.41 RRCF-mid:w=0.11,s=0.55 RRCF-slow:w=0.09,s=0.74 COPOD!:w=0.15,s=0.21"} +{"timestamp":"2026-03-15T01:33:39.392880563Z","score":0.8046974718704152,"is_anomaly":false,"confidence":0.9592941017208275,"method":"SEAD","details":"MAD!:w=0.51,s=0.91 RRCF-fast:w=0.13,s=0.45 RRCF-mid:w=0.11,s=0.61 RRCF-slow:w=0.09,s=0.82 COPOD!:w=0.15,s=0.89"} +{"timestamp":"2026-03-15T01:34:09.334888388Z","score":0.506051253462455,"is_anomaly":false,"confidence":0.6033920537959124,"method":"SEAD","details":"MAD!:w=0.51,s=0.60 RRCF-fast:w=0.13,s=0.29 RRCF-mid:w=0.12,s=0.43 RRCF-slow:w=0.09,s=0.71 COPOD!:w=0.15,s=0.33"} +{"timestamp":"2026-03-15T01:34:39.405601112Z","score":0.6649885650720263,"is_anomaly":false,"confidence":0.7929015357322422,"method":"SEAD","details":"MAD!:w=0.51,s=0.73 RRCF-fast:w=0.13,s=0.46 RRCF-mid:w=0.12,s=0.56 RRCF-slow:w=0.09,s=0.72 COPOD!:w=0.15,s=0.68"} +{"timestamp":"2026-03-15T01:35:09.38597313Z","score":0.46376739577488924,"is_anomaly":false,"confidence":0.5529747421936849,"method":"SEAD","details":"MAD!:w=0.51,s=0.46 RRCF-fast:w=0.13,s=0.29 RRCF-mid:w=0.12,s=0.40 RRCF-slow:w=0.09,s=0.69 COPOD!:w=0.15,s=0.54"} +{"timestamp":"2026-03-15T01:35:39.335384019Z","score":0.3900434346926406,"is_anomaly":false,"confidence":0.4650697088852587,"method":"SEAD","details":"MAD!:w=0.51,s=0.34 RRCF-fast:w=0.13,s=0.35 RRCF-mid:w=0.12,s=0.43 RRCF-slow:w=0.09,s=0.68 COPOD!:w=0.15,s=0.36"} +{"timestamp":"2026-03-15T01:36:09.380088483Z","score":0.33567125743085535,"is_anomaly":false,"confidence":0.4002388454443127,"method":"SEAD","details":"MAD!:w=0.51,s=0.34 RRCF-fast:w=0.13,s=0.23 RRCF-mid:w=0.12,s=0.41 RRCF-slow:w=0.09,s=0.69 COPOD!:w=0.15,s=0.14"} +{"timestamp":"2026-03-15T01:36:39.338190783Z","score":0.31417312074426434,"is_anomaly":false,"confidence":0.3746054639254389,"method":"SEAD","details":"MAD!:w=0.51,s=0.35 RRCF-fast:w=0.13,s=0.15 RRCF-mid:w=0.12,s=0.41 RRCF-slow:w=0.09,s=0.64 COPOD!:w=0.15,s=0.08"} +{"timestamp":"2026-03-15T01:37:09.384797017Z","score":0.7703706584902809,"is_anomaly":false,"confidence":0.9195838604820324,"method":"SEAD","details":"MAD!:w=0.51,s=0.83 RRCF-fast:w=0.13,s=0.62 RRCF-mid:w=0.12,s=0.56 RRCF-slow:w=0.09,s=0.73 COPOD!:w=0.16,s=0.88"} +{"timestamp":"2026-03-15T01:37:39.335671171Z","score":0.4753602081874539,"is_anomaly":false,"confidence":0.5674327942619539,"method":"SEAD","details":"MAD!:w=0.50,s=0.56 RRCF-fast:w=0.13,s=0.04 RRCF-mid:w=0.12,s=0.40 RRCF-slow:w=0.09,s=0.63 COPOD!:w=0.16,s=0.55"} +{"timestamp":"2026-03-15T01:38:09.41716422Z","score":0.5473685008500119,"is_anomaly":false,"confidence":0.6533883833327058,"method":"SEAD","details":"MAD!:w=0.50,s=0.70 RRCF-fast:w=0.13,s=0.05 RRCF-mid:w=0.12,s=0.38 RRCF-slow:w=0.09,s=0.66 COPOD!:w=0.16,s=0.54"} +{"timestamp":"2026-03-15T01:38:39.368266779Z","score":0.5302191666396606,"is_anomaly":false,"confidence":0.6329173921493748,"method":"SEAD","details":"MAD!:w=0.50,s=0.60 RRCF-fast:w=0.13,s=0.27 RRCF-mid:w=0.12,s=0.52 RRCF-slow:w=0.09,s=0.68 COPOD!:w=0.16,s=0.47"} +{"timestamp":"2026-03-15T01:39:09.339042036Z","score":0.3595460256645797,"is_anomaly":false,"confidence":0.4291865463172718,"method":"SEAD","details":"MAD!:w=0.50,s=0.43 RRCF-fast:w=0.14,s=0.06 RRCF-mid:w=0.12,s=0.39 RRCF-slow:w=0.09,s=0.56 COPOD!:w=0.16,s=0.26"} +{"timestamp":"2026-03-15T01:39:39.38694126Z","score":0.463597140657958,"is_anomaly":false,"confidence":0.553391336516038,"method":"SEAD","details":"MAD!:w=0.50,s=0.47 RRCF-fast:w=0.14,s=0.10 RRCF-mid:w=0.12,s=0.44 RRCF-slow:w=0.09,s=0.60 COPOD!:w=0.16,s=0.70"} +{"timestamp":"2026-03-15T01:40:09.338721319Z","score":0.4213356968027719,"is_anomaly":false,"confidence":0.502944267612794,"method":"SEAD","details":"MAD!:w=0.50,s=0.41 RRCF-fast:w=0.14,s=0.05 RRCF-mid:w=0.12,s=0.42 RRCF-slow:w=0.09,s=0.60 COPOD!:w=0.16,s=0.66"} +{"timestamp":"2026-03-15T01:40:39.473425021Z","score":0.7085636795774647,"is_anomaly":false,"confidence":0.8460340053286811,"method":"SEAD","details":"MAD!:w=0.50,s=0.78 RRCF-fast:w=0.14,s=0.45 RRCF-mid:w=0.12,s=0.58 RRCF-slow:w=0.09,s=0.63 COPOD!:w=0.16,s=0.86"} +{"timestamp":"2026-03-15T01:41:09.378371086Z","score":0.4257378662841145,"is_anomaly":false,"confidence":0.5083364030840897,"method":"SEAD","details":"MAD!:w=0.50,s=0.54 RRCF-fast:w=0.14,s=0.03 RRCF-mid:w=0.12,s=0.32 RRCF-slow:w=0.09,s=0.43 COPOD!:w=0.16,s=0.49"} +{"timestamp":"2026-03-15T01:41:39.338771258Z","score":0.357339646499418,"is_anomaly":false,"confidence":0.4266680625951925,"method":"SEAD","details":"MAD!:w=0.49,s=0.34 RRCF-fast:w=0.14,s=0.01 RRCF-mid:w=0.12,s=0.39 RRCF-slow:w=0.09,s=0.54 COPOD!:w=0.16,s=0.59"} +{"timestamp":"2026-03-15T01:42:09.385503024Z","score":0.37050889368886375,"is_anomaly":false,"confidence":0.44239231048988326,"method":"SEAD","details":"MAD!:w=0.49,s=0.34 RRCF-fast:w=0.14,s=0.03 RRCF-mid:w=0.12,s=0.37 RRCF-slow:w=0.09,s=0.49 COPOD!:w=0.15,s=0.69"} +{"timestamp":"2026-03-15T01:42:39.338069047Z","score":0.33334078470474193,"is_anomaly":false,"confidence":0.3980131177360558,"method":"SEAD","details":"MAD!:w=0.50,s=0.35 RRCF-fast:w=0.14,s=0.02 RRCF-mid:w=0.12,s=0.38 RRCF-slow:w=0.09,s=0.49 COPOD!:w=0.15,s=0.41"} +{"timestamp":"2026-03-15T01:43:09.976296274Z","score":0.8218872609322921,"is_anomaly":false,"confidence":0.9813437963823073,"method":"SEAD","details":"MAD!:w=0.49,s=0.91 RRCF-fast:w=0.14,s=0.66 RRCF-mid:w=0.12,s=0.63 RRCF-slow:w=0.09,s=0.67 COPOD!:w=0.15,s=0.94"} diff --git a/evaluation/data/pipeline_high-iops_run1/baseline_metrics.csv b/evaluation/data/pipeline_high-iops_run1/baseline_metrics.csv new file mode 100644 index 0000000..a31c7fd --- /dev/null +++ b/evaluation/data/pipeline_high-iops_run1/baseline_metrics.csv @@ -0,0 +1,3248 @@ +timestamp,cpu_percent,cpu_count,cpu_freq_current,memory_percent,memory_available_mb,memory_used_mb,swap_percent,disk_io_read_mb_s,disk_io_write_mb_s,disk_io_read_count,disk_io_write_count,network_sent_mb_s,network_recv_mb_s,network_packets_sent,network_packets_recv,network_errin,network_errout,network_dropin,network_dropout,tixstream_active,transfer_job_manager_active +1773522774.661694,2.01,4,3992.50,58.94,1358.96,2307.81,0.00,3510302007454.508301,3510302007456.335938,199,0,0.000157,0.000169,2469805,2128732,0,0,4648,0,1,1 +1773522779.662329,2.01,4,3992.50,58.96,1358.27,2308.50,0.00,1.314774,0.022068,221,21,0.000050,0.000082,2469809,2128738,0,0,4650,0,1,1 +1773522784.663009,2.06,4,3992.50,58.97,1358.09,2308.68,0.00,249.472614,845.379655,49447,449276,0.000031,0.000055,2469811,2128743,0,0,4653,0,1,1 +1773522789.662760,1.86,4,3992.50,59.47,1338.37,2328.49,0.00,3518612964053.528809,3518612963458.930664,70,0,0.000000,0.000020,2469811,2128745,0,0,4655,0,1,1 +1773522794.664194,2.11,4,3992.50,59.39,1341.50,2325.36,0.00,1.441481,0.022064,221,21,0.000000,0.000673,2469811,2128752,0,0,4658,0,1,1 +1773522799.664876,1.56,4,3992.50,59.35,1342.99,2323.88,0.00,0.000000,0.000000,221,21,0.000000,0.000020,2469811,2128754,0,0,4660,0,1,1 +1773522804.664845,13.02,4,3992.50,60.03,1316.68,2350.19,0.00,3518459266806.720703,3518459266808.013672,199,0,10.188932,0.051840,2472931,2131187,0,0,4663,0,1,1 +1773522809.665107,17.62,4,3992.50,60.47,1299.10,2367.72,0.00,250.846622,845.801482,49496,450097,30.043627,0.122209,2481335,2137903,0,0,4665,0,1,1 +1773522814.663442,1.71,4,3992.50,60.20,1309.89,2356.95,0.00,3519609113874.413086,3519609113277.935547,221,21,0.001414,0.000650,2481362,2137922,0,0,4668,0,1,1 +1773522819.665739,2.16,4,3992.50,60.54,1296.66,2370.17,0.00,3516821132507.058105,3516821132508.527344,11,0,0.005599,0.004723,2481455,2137994,0,0,4670,0,1,1 +1773522824.664222,1.61,4,3992.50,60.49,1298.67,2368.15,0.00,0.177007,0.000000,199,0,0.001889,0.001351,2481491,2138026,0,0,4673,0,1,1 +1773522829.662826,1.66,4,3992.50,60.49,1298.46,2368.35,0.00,3519420077328.018555,0.000000,11,0,0.001786,0.001319,2481527,2138057,0,0,4675,0,1,1 +1773522834.663424,1.71,4,3992.50,60.51,1297.69,2369.13,0.00,1.491716,0.022068,221,21,0.001589,0.000796,2481557,2138078,0,0,4678,0,1,1 +1773522839.664047,1.76,4,3992.50,60.51,1297.73,2369.07,0.00,3517998423713.912109,3517998423715.381836,11,0,0.001589,0.000774,2481587,2138097,0,0,4680,0,1,1 +1773522844.664702,1.76,4,3992.50,60.52,1297.50,2369.30,0.00,255.064168,846.615633,50254,450588,0.001589,0.000796,2481617,2138118,0,0,4683,0,1,1 +1773522849.665188,1.71,4,3992.50,60.94,1281.05,2385.77,0.00,3518095175444.467773,0.061713,49496,450617,0.001597,0.000794,2481648,2138139,0,0,4685,0,1,1 +1773522854.665867,1.71,4,3992.50,60.91,1281.86,2384.95,0.00,3517959139796.461914,3517959139200.741211,70,0,0.001682,0.000872,2481684,2138166,0,0,4688,0,1,1 +1773522859.662050,1.91,4,3992.50,60.92,1281.75,2385.06,0.00,3521125197126.258789,0.000000,11,0,0.001590,0.001431,2481714,2138190,0,0,4690,0,1,1 +1773522864.662377,1.56,4,3992.50,60.92,1281.76,2385.05,0.00,2.008658,0.000195,238,2,0.001702,0.000896,2481752,2138218,0,0,4693,0,1,1 +1773522869.664768,8.09,4,3992.50,60.77,1287.60,2379.21,0.00,3516755364236.012207,3516755364238.020020,11,0,4.021144,0.016642,2482781,2139015,0,0,4695,0,1,1 +1773522874.664790,21.36,4,3992.50,61.32,1266.02,2400.82,0.00,251.066900,847.386919,49536,451771,32.324260,0.141664,2492236,2146466,0,0,4698,0,1,1 +1773522879.664193,3.98,4,3992.50,61.18,1271.54,2395.39,0.00,4.066794,0.277865,50301,451943,3.893481,0.018986,2493483,2147410,0,0,4700,0,1,1 +1773522884.665917,1.66,4,3992.50,60.96,1280.21,2386.64,0.00,3517224139127.833984,3517224138533.496582,238,2,0.001589,0.000796,2493513,2147431,0,0,4703,0,1,1 +1773522889.665362,1.61,4,3992.50,60.96,1280.26,2386.60,0.00,253.153628,848.214501,50301,452218,0.001589,0.000786,2493543,2147451,0,0,4705,0,1,1 +1773522894.665942,1.51,4,3992.50,60.78,1287.12,2379.73,0.00,3518028915341.035156,3518028914746.109375,238,2,0.001589,0.000783,2493573,2147471,0,0,4708,0,1,1 +1773522899.665247,1.66,4,3992.50,60.77,1287.39,2379.46,0.00,253.160653,848.275444,50301,452269,0.001597,0.000794,2493604,2147492,0,0,4710,0,1,1 +1773522904.665626,2.11,4,3992.50,60.51,1297.92,2368.94,0.00,3518170852134.655273,3518170851541.676758,11,0,0.001589,0.000796,2493634,2147513,0,0,4713,0,1,1 +1773522909.661277,1.91,4,3992.50,60.98,1280.51,2387.35,0.00,0.050044,0.000000,70,0,0.000971,0.000549,2493652,2147526,0,0,4715,0,1,1 +1773522914.661809,1.66,4,3992.50,60.98,1280.34,2387.53,0.00,3518062716032.315918,0.000000,11,0,0.001589,0.000783,2493682,2147546,0,0,4718,0,1,1 +1773522919.665904,1.66,4,3992.50,60.92,1282.78,2385.09,0.00,254.925491,847.983520,50301,452725,0.001681,0.000861,2493718,2147572,0,0,4720,0,1,1 +1773522924.665388,1.81,4,3992.50,60.92,1282.57,2385.30,0.00,0.000000,0.007423,50301,452734,0.001652,0.001478,2493752,2147600,0,0,4723,0,1,1 +1773522929.663555,1.61,4,3992.50,60.92,1282.59,2385.29,0.00,3519727539336.095215,3519727538742.326660,11,0,0.001590,0.000786,2493782,2147620,0,0,4725,0,1,1 +1773522934.661290,1.76,4,3992.50,60.93,1282.36,2385.51,0.00,0.000000,0.000000,11,0,0.001590,0.000796,2493812,2147641,0,0,4728,0,1,1 +1773522939.664556,9.78,4,3992.50,61.48,1260.94,2406.92,0.00,0.000000,0.000000,11,0,4.051302,0.023933,2495096,2148638,0,0,4730,0,1,1 +1773522944.662157,21.90,4,3992.50,62.08,1237.14,2430.66,0.00,255.288769,849.777067,50342,453861,34.184892,0.142520,2504583,2156201,0,0,4733,0,1,1 +1773522949.664821,2.92,4,3992.50,61.61,1255.69,2412.11,0.00,3516563600422.725586,3516563599827.370117,221,21,2.013105,0.009184,2505233,2156710,0,0,4735,0,1,1 +1773522954.661914,1.51,4,3992.50,61.30,1267.60,2400.20,0.00,0.517195,3520483890775.758301,238,2,0.001590,0.000797,2505263,2156731,0,0,4738,0,1,1 +1773522959.665211,1.81,4,3992.50,61.18,1272.59,2395.21,0.00,3516119039334.020020,3516119039336.027344,11,0,0.001588,0.000786,2505293,2156751,0,0,4740,0,1,1 +1773522964.663724,1.56,4,3992.50,61.18,1272.61,2395.20,0.00,2.009386,0.000195,238,2,0.001590,0.000796,2505323,2156772,0,0,4743,0,1,1 +1773522969.661986,2.06,4,3992.50,61.35,1270.29,2402.04,0.00,3519660737986.047363,0.021883,221,21,0.001590,0.000786,2505353,2156792,0,0,4745,0,1,1 +1773522974.661490,1.66,4,3992.50,61.35,1270.31,2401.96,0.00,3518786078223.853516,3518786078225.146973,199,0,0.001589,0.000796,2505383,2156813,0,0,4748,0,1,1 +1773522979.661206,1.61,4,3992.50,61.35,1270.09,2402.18,0.00,0.000000,0.000000,199,0,0.001589,0.000786,2505413,2156833,0,0,4750,0,1,1 +1773522984.661458,2.36,4,3992.50,61.16,1277.74,2394.52,0.00,3518259703533.554688,0.000000,70,0,0.001597,0.000804,2505444,2156855,0,0,4753,0,1,1 +1773522989.665606,1.81,4,3992.50,61.17,1277.39,2394.88,0.00,3515521337051.602051,0.000000,11,0,0.001681,0.001504,2505480,2156885,0,0,4755,0,1,1 +1773522994.661273,1.56,4,3992.50,61.17,1277.22,2395.05,0.00,0.177107,0.000000,199,0,0.001653,0.000847,2505514,2156910,0,0,4758,0,1,1 +1773522999.661233,1.76,4,3992.50,61.37,1269.32,2402.86,0.00,0.000000,0.000000,199,0,0.001589,0.000786,2505544,2156930,0,0,4760,0,1,1 +1773523004.661295,1.41,4,3992.50,61.29,1272.64,2399.54,0.00,3518394123332.317383,0.000000,70,0,0.001589,0.000796,2505574,2156951,0,0,4763,0,1,1 +1773523009.664691,14.11,4,3992.50,61.24,1274.24,2397.86,0.00,1.957459,0.000195,238,2,12.069743,0.055834,2509158,2159746,0,0,4765,0,1,1 +1773523014.665067,18.27,4,3992.50,61.49,1264.79,2407.30,0.00,3518172816786.917480,3518172816788.749023,199,0,28.156186,0.118464,2517125,2166002,0,0,4768,0,1,1 +1773523019.665441,1.66,4,3992.50,61.50,1264.36,2407.75,0.00,250.944149,851.004020,49628,455718,0.001589,0.000786,2517155,2166022,0,0,4770,0,1,1 +1773523024.662010,1.71,4,3992.50,61.30,1272.01,2400.11,0.00,3520853240659.261230,3520853240058.921387,11,0,0.001598,0.000805,2517186,2166044,0,0,4773,0,1,1 +1773523029.663731,1.86,4,3992.50,61.51,1263.76,2408.35,0.00,0.049983,0.000000,70,0,0.001589,0.000786,2517216,2166064,0,0,4775,0,1,1 +1773523034.665926,1.91,4,3992.50,61.37,1269.18,2402.93,0.00,0.000000,0.000000,70,0,0.001589,0.000796,2517246,2166085,0,0,4778,0,1,1 +1773523039.665660,1.66,4,3992.50,61.36,1269.71,2402.39,0.00,3518624222353.118652,0.000000,11,0,0.001589,0.000786,2517276,2166105,0,0,4780,0,1,1 +1773523044.663317,1.66,4,3992.50,61.16,1277.61,2394.50,0.00,0.000000,0.000000,11,0,0.001590,0.000797,2517306,2166126,0,0,4783,0,1,1 +1773523049.665614,1.51,4,3992.50,61.16,1277.37,2394.73,0.00,255.083460,851.420643,50386,456144,0.001588,0.000786,2517336,2166146,0,0,4785,0,1,1 +1773523054.664413,1.71,4,3992.50,61.00,1283.91,2388.20,0.00,3519282491013.877930,3519282490415.652832,221,21,0.001577,0.001307,2517365,2166170,0,0,4788,0,1,1 +1773523059.665650,1.66,4,3992.50,61.62,1271.62,2412.53,0.00,0.516767,3517567147091.505859,238,2,0.001581,0.000899,2517403,2166199,0,0,4790,0,1,1 +1773523064.661462,1.66,4,3992.50,61.73,1267.46,2416.69,0.00,3521387031133.464355,0.021893,221,21,0.001591,0.000809,2517433,2166221,0,0,4793,0,1,1 +1773523069.665912,1.41,4,3992.50,61.74,1266.79,2417.36,0.00,0.516435,3515308528048.278809,238,2,0.001588,0.000786,2517463,2166241,0,0,4795,0,1,1 +1773523074.665682,1.86,4,3992.50,61.69,1268.66,2415.49,0.00,3518598718897.358398,0.021876,221,21,0.001597,0.000804,2517494,2166263,0,0,4798,0,1,1 +1773523079.662185,19.53,4,3992.50,61.86,1262.36,2421.76,0.00,0.000000,0.000000,221,21,22.143636,0.095657,2523639,2171171,0,0,4800,0,1,1 +1773523084.665586,11.71,4,3992.50,62.06,1254.26,2429.80,0.00,3516046054254.428223,3516046054255.896973,11,0,18.097434,0.081793,2529022,2175327,0,0,4803,0,1,1 +1773523089.662573,2.11,4,3992.50,61.98,1267.65,2426.71,0.00,255.389743,853.300935,50431,457368,0.001590,0.000787,2529052,2175347,0,0,4805,0,1,1 +1773523094.665598,1.91,4,3992.50,61.89,1271.16,2423.21,0.00,3516309985958.607422,3516309985361.241211,199,0,0.001588,0.000796,2529082,2175368,0,0,4808,0,1,1 +1773523099.665443,1.81,4,3992.50,61.90,1270.93,2423.45,0.00,0.000000,0.000000,199,0,0.001589,0.000786,2529112,2175388,0,0,4810,0,1,1 +1773523104.666056,1.56,4,3992.50,61.90,1270.94,2423.44,0.00,3518005659350.397461,0.000000,11,0,0.001589,0.000796,2529142,2175409,0,0,4813,0,1,1 +1773523109.665138,1.61,4,3992.50,61.90,1270.95,2423.43,0.00,2.009158,0.000195,238,2,0.000971,0.000549,2529160,2175422,0,0,4815,0,1,1 +1773523114.662679,1.56,4,3992.50,61.90,1270.96,2423.42,0.00,3520168299516.767578,3520168299518.777344,11,0,0.001422,0.000659,2529188,2175442,0,0,4818,0,1,1 +1773523119.665442,2.46,4,3992.50,62.05,1266.97,2429.57,0.00,255.094917,852.722092,50431,457574,0.005863,0.005114,2529281,2175519,0,0,4820,0,1,1 +1773523124.665736,1.66,4,3992.50,62.05,1266.94,2429.52,0.00,3518230106605.446777,3518230106007.524902,11,0,0.002558,0.002272,2529320,2175553,0,0,4823,0,1,1 +1773523129.665990,1.61,4,3992.50,62.05,1266.96,2429.50,0.00,0.000000,0.000000,11,0,0.001879,0.001394,2529362,2175590,0,0,4825,0,1,1 +1773523134.665347,1.51,4,3992.50,62.05,1266.97,2429.48,0.00,0.000000,0.000000,11,0,0.001589,0.000796,2529392,2175611,0,0,4828,0,1,1 +1773523139.665757,1.86,4,3992.50,62.06,1266.77,2429.69,0.00,1.491772,0.022069,221,21,0.001589,0.000786,2529422,2175631,0,0,4830,0,1,1 +1773523144.662294,1.61,4,3992.50,61.91,1272.67,2423.78,0.00,249.856164,853.991698,49673,457845,0.001590,0.000797,2529452,2175652,0,0,4833,0,1,1 +1773523149.665542,2.06,4,3992.50,62.08,1268.98,2430.65,0.00,3516153370675.218750,3516153370073.312500,70,0,0.002983,0.001497,2529506,2175688,0,0,4835,0,1,1 +1773523154.665656,23.26,4,3992.50,62.39,1256.93,2442.65,0.00,251.148955,853.572804,49711,458415,30.171912,0.128772,2538003,2182389,0,0,4838,0,1,1 +1773523159.665933,7.84,4,3992.50,62.35,1258.24,2441.26,0.00,3518242226944.129395,3518242226341.775391,11,0,10.064982,0.047443,2541049,2184706,0,0,4840,0,1,1 +1773523164.664598,1.96,4,3992.50,62.35,1258.28,2441.25,0.00,251.278789,854.267471,49720,458896,0.002847,0.004069,2541122,2184795,0,0,4843,0,1,1 +1773523169.665275,1.61,4,3992.50,62.35,1258.30,2441.23,0.00,0.000000,0.018845,49720,458919,0.002733,0.003954,2541187,2184875,0,0,4845,0,1,1 +1773523174.665553,1.56,4,3992.50,62.35,1258.31,2441.21,0.00,3518241951129.239746,3518241950526.426758,11,0,0.003655,0.004634,2541254,2184959,0,0,4848,0,1,1 +1773523179.661207,2.01,4,3992.50,62.54,1250.18,2448.72,0.00,0.177107,0.000000,199,0,0.002736,0.003958,2541319,2185039,0,0,4850,0,1,1 +1773523184.663282,1.96,4,3992.50,62.54,1250.20,2448.71,0.00,0.000000,0.000000,199,0,0.002504,0.003973,2541377,2185112,0,0,4853,0,1,1 +1773523189.663869,1.66,4,3992.50,62.54,1250.22,2448.69,0.00,1.831621,0.000195,238,2,0.002729,0.003949,2541442,2185192,0,0,4855,0,1,1 +1773523194.662410,1.71,4,3992.50,62.55,1250.00,2448.91,0.00,253.337732,855.082066,50478,459331,0.002734,0.003953,2541507,2185272,0,0,4858,0,1,1 +1773523199.663048,1.81,4,3992.50,62.36,1257.41,2441.48,0.00,0.000000,0.032906,50478,459372,0.002733,0.003954,2541572,2185352,0,0,4860,0,1,1 +1773523204.663543,1.91,4,3992.50,62.38,1256.77,2442.13,0.00,3518088565349.492676,3518088564747.950684,238,2,0.002721,0.003977,2541636,2185434,0,0,4863,0,1,1 +1773523209.664032,1.86,4,3992.50,62.77,1240.45,2457.59,0.00,3518093487629.356445,3518093487631.365234,11,0,0.002741,0.003962,2541702,2185515,0,0,4865,0,1,1 +1773523214.662029,1.76,4,3992.50,62.60,1246.42,2451.04,0.00,0.050020,0.000000,70,0,0.002735,0.003966,2541767,2185596,0,0,4868,0,1,1 +1773523219.661321,1.71,4,3992.50,62.60,1246.65,2450.80,0.00,251.206671,855.173848,49729,459523,0.002734,0.003942,2541832,2185675,0,0,4870,0,1,1 +1773523224.662094,4.78,4,3992.50,61.93,1272.79,2424.66,0.00,0.003125,0.042181,49733,459586,2.016942,0.013240,2542441,2186161,0,0,4873,0,1,1 +1773523229.663826,25.06,4,3992.50,62.37,1255.65,2441.75,0.00,3517219047249.319824,3517219046645.607910,70,0,34.170680,0.139951,2551859,2193553,0,0,4875,0,1,1 +1773523234.665939,5.39,4,3992.50,62.59,1247.03,2450.38,0.00,255.164738,855.385526,50539,460570,4.033832,0.025210,2553148,2194591,0,0,4878,0,1,1 +1773523239.662232,2.16,4,3992.50,62.34,1260.39,2440.73,0.00,3521047516782.368652,3521047516181.499023,11,0,0.002736,0.003957,2553213,2194671,0,0,4880,0,1,1 +1773523244.665626,1.71,4,3992.50,62.34,1260.32,2440.68,0.00,1.490882,0.022055,221,21,0.002732,0.003962,2553278,2194752,0,0,4883,0,1,1 +1773523249.663996,1.81,4,3992.50,62.34,1260.36,2440.67,0.00,3519584437842.812988,3519584437844.283203,11,0,0.002735,0.004600,2553343,2194836,0,0,4885,0,1,1 +1773523254.665661,1.61,4,3992.50,62.33,1260.51,2440.53,0.00,2.008121,0.000195,238,2,0.002733,0.003963,2553408,2194917,0,0,4888,0,1,1 +1773523259.665621,1.71,4,3992.50,62.37,1259.29,2441.75,0.00,3518465445973.958008,3518465445975.790039,199,0,0.002767,0.003962,2553476,2194998,0,0,4890,0,1,1 +1773523264.665562,1.61,4,3992.50,62.37,1259.30,2441.73,0.00,3518478935228.411621,0.000000,11,0,0.002609,0.003952,2553540,2195078,0,0,4893,0,1,1 +1773523269.665247,2.06,4,3992.50,62.50,1249.74,2447.08,0.00,255.338630,856.404292,50539,460886,0.002630,0.003333,2553599,2195147,0,0,4895,0,1,1 +1773523274.661381,1.86,4,3992.50,62.50,1249.72,2447.07,0.00,3521159615266.872070,0.177090,49781,461106,0.002736,0.003967,2553664,2195228,0,0,4898,0,1,1 +1773523279.663568,1.66,4,3992.50,62.50,1249.73,2447.06,0.00,3516899062581.586426,3516899061976.585449,11,0,0.002732,0.003953,2553729,2195308,0,0,4900,0,1,1 +1773523284.665309,1.76,4,3992.50,62.31,1257.39,2439.40,0.00,1.491375,0.022063,221,21,0.002741,0.003971,2553795,2195390,0,0,4903,0,1,1 +1773523289.665360,1.76,4,3992.50,62.31,1257.17,2439.62,0.00,253.828093,856.595522,50539,461224,0.002734,0.003954,2553860,2195470,0,0,4905,0,1,1 +1773523294.665637,1.96,4,3992.50,62.32,1256.94,2439.86,0.00,3518242267045.928223,3518242266444.480957,199,0,0.002746,0.003979,2553926,2195552,0,0,4908,0,1,1 +1773523299.663075,10.12,4,3992.50,62.92,1236.03,2463.52,0.00,1.832775,0.000195,238,2,10.062455,0.045513,2556806,2197869,0,0,4910,0,1,1 +1773523304.663664,20.48,4,3992.50,62.66,1245.54,2453.47,0.00,3518022695042.729980,3518022695044.738281,11,0,30.165555,0.127466,2565267,2204553,0,0,4913,0,1,1 +1773523309.662291,3.97,4,3992.50,62.00,1271.58,2427.48,0.00,251.366670,857.681966,49827,462428,0.013570,0.009332,2565532,2204771,0,0,4915,0,1,1 +1773523314.666129,1.81,4,3992.50,61.88,1276.16,2422.92,0.00,0.000000,0.085969,49827,462530,0.002503,0.003971,2565590,2204844,0,0,4918,0,1,1 +1773523319.663339,1.76,4,3992.50,61.90,1275.43,2423.64,0.00,3520401799131.413574,3520401798524.790039,70,0,0.002735,0.003957,2565655,2204924,0,0,4920,0,1,1 +1773523324.664312,1.66,4,3992.50,61.81,1278.89,2420.18,0.00,255.258788,857.439960,50585,462610,0.002733,0.003963,2565720,2205005,0,0,4923,0,1,1 +1773523329.664821,2.01,4,3992.50,62.29,1249.61,2438.91,0.00,3518079443169.287109,3518079442565.630371,221,21,0.002733,0.003954,2565785,2205085,0,0,4925,0,1,1 +1773523334.665705,1.81,4,3992.50,61.96,1262.26,2426.01,0.00,3517815288688.316406,3517815288689.786133,11,0,0.002512,0.003338,2565844,2205155,0,0,4928,0,1,1 +1773523339.662446,1.56,4,3992.50,61.96,1262.26,2426.01,0.00,2.010099,0.000195,238,2,0.002735,0.003944,2565909,2205234,0,0,4930,0,1,1 +1773523344.664618,1.61,4,3992.50,61.96,1262.27,2426.00,0.00,3516909746751.619629,0.021866,221,21,0.002732,0.003963,2565974,2205315,0,0,4933,0,1,1 +1773523349.666108,1.46,4,3992.50,61.76,1270.15,2418.12,0.00,3517389052972.651367,3517389052974.070801,70,0,0.002733,0.003953,2566039,2205395,0,0,4935,0,1,1 +1773523354.661181,1.56,4,3992.50,61.77,1269.68,2418.59,0.00,0.000000,0.000000,70,0,0.002736,0.003968,2566104,2205476,0,0,4938,0,1,1 +1773523359.661498,1.76,4,3992.50,61.96,1263.39,2425.70,0.00,1.441803,0.022069,221,21,0.002566,0.003816,2566167,2205555,0,0,4940,0,1,1 +1773523364.661756,1.51,4,3992.50,61.69,1273.68,2415.42,0.00,3518255569086.838867,3518255569088.308594,11,0,0.002733,0.003964,2566232,2205636,0,0,4943,0,1,1 +1773523369.666533,11.21,4,3992.50,61.66,1275.14,2413.94,0.00,255.131144,857.658891,50606,463395,10.188240,0.057267,2569538,2208195,0,0,4945,0,1,1 +1773523374.665953,18.16,4,3992.50,62.25,1251.78,2437.21,0.00,0.018752,0.391452,50630,464054,30.027535,0.112887,2577368,2214453,0,0,4948,0,1,1 +1773523379.665981,2.36,4,3992.50,61.98,1262.42,2426.55,0.00,3518417473824.195801,3518417473220.723633,11,0,0.015235,0.010110,2577657,2214689,0,0,4950,0,1,1 +1773523384.665566,1.61,4,3992.50,62.06,1259.37,2429.62,0.00,0.050004,0.000000,70,0,0.002729,0.003973,2577722,2214771,0,0,4953,0,1,1 +1773523389.665024,1.96,4,3992.50,62.12,1260.26,2432.29,0.00,1.959001,0.000195,238,2,0.002734,0.003955,2577787,2214851,0,0,4955,0,1,1 +1773523394.665507,2.01,4,3992.50,62.12,1260.38,2432.16,0.00,3518097222780.059570,3518097222782.067871,11,0,0.002733,0.003964,2577852,2214932,0,0,4958,0,1,1 +1773523399.666135,1.91,4,3992.50,62.15,1259.41,2433.13,0.00,0.000000,0.000000,11,0,0.002721,0.003954,2577916,2215012,0,0,4960,0,1,1 +1773523404.661508,1.66,4,3992.50,62.16,1258.68,2433.85,0.00,255.636498,860.565218,50638,464625,0.002736,0.003968,2577981,2215093,0,0,4963,0,1,1 +1773523409.665844,1.56,4,3992.50,62.17,1258.60,2433.95,0.00,3515388322179.061523,3515388321575.216797,11,0,0.002739,0.003959,2578047,2215174,0,0,4965,0,1,1 +1773523414.665567,2.51,4,3992.50,62.17,1258.61,2433.93,0.00,0.050003,0.000000,70,0,0.002721,0.003964,2578111,2215255,0,0,4968,0,1,1 +1773523419.665586,2.26,4,3992.50,62.37,1250.79,2441.75,0.00,0.126953,0.000000,199,0,0.005178,0.005416,2578226,2215371,0,0,4970,0,1,1 +1773523424.665541,1.76,4,3992.50,62.36,1251.01,2441.52,0.00,3518468560549.028809,0.000000,70,0,0.003703,0.005441,2578300,2215465,0,0,4973,0,1,1 +1773523429.662323,1.61,4,3992.50,62.37,1250.57,2441.97,0.00,3520703330001.584961,0.000000,11,0,0.002932,0.004489,2578371,2215556,0,0,4975,0,1,1 +1773523434.662168,3.82,4,3992.50,61.76,1274.51,2418.05,0.00,0.176959,0.000000,199,0,0.002742,0.003972,2578437,2215638,0,0,4978,0,1,1 +1773523439.662254,1.66,4,3992.50,61.78,1273.89,2418.68,0.00,3518376832129.232910,0.000000,11,0,0.002734,0.003954,2578502,2215718,0,0,4980,0,1,1 +1773523444.662349,20.24,4,3992.50,62.59,1241.91,2450.36,0.00,0.049999,0.000000,70,0,24.137698,0.106516,2585232,2221143,0,0,4983,0,1,1 +1773523449.662740,12.50,4,3992.50,62.40,1237.87,2443.16,0.00,3518162664134.226562,0.000000,11,0,16.091933,0.071997,2589698,2224710,0,0,4985,0,1,1 +1773523454.665343,1.76,4,3992.50,62.34,1240.16,2440.70,0.00,0.049974,0.000000,70,0,0.002720,0.003962,2589762,2224791,0,0,4988,0,1,1 +1773523459.661159,1.56,4,3992.50,62.38,1238.73,2442.14,0.00,3521384312460.673828,0.000000,11,0,0.002736,0.003958,2589827,2224871,0,0,4990,0,1,1 +1773523464.661767,2.01,4,3992.50,62.39,1238.26,2442.61,0.00,2.008544,0.000195,238,2,0.002858,0.004076,2589901,2224960,0,0,4993,0,1,1 +1773523469.663148,1.61,4,3992.50,62.40,1237.78,2443.09,0.00,3517465915542.574707,0.021869,221,21,0.002512,0.003328,2589960,2225029,0,0,4995,0,1,1 +1773523474.663223,1.81,4,3992.50,62.39,1238.05,2442.82,0.00,3518384808873.072754,3518384808874.542480,11,0,0.003655,0.004634,2590027,2225113,0,0,4998,0,1,1 +1773523479.663553,1.96,4,3992.50,62.43,1243.45,2444.21,0.00,0.000000,0.000000,11,0,0.002721,0.003954,2590091,2225193,0,0,5000,0,1,1 +1773523484.664586,1.86,4,3992.50,62.40,1242.34,2443.07,0.00,251.320706,861.301844,49923,466422,0.002114,0.003726,2590144,2225267,0,0,5003,0,1,1 +1773523489.664794,1.71,4,3992.50,62.32,1245.51,2439.90,0.00,3518290688008.858887,3518290687398.727539,70,0,0.002558,0.003808,2590206,2225345,0,0,5005,0,1,1 +1773523494.666076,1.61,4,3992.50,62.36,1244.05,2441.36,0.00,3517535720758.491211,0.000000,11,0,0.002733,0.003963,2590271,2225426,0,0,5008,0,1,1 +1773523499.661246,1.71,4,3992.50,62.37,1243.38,2442.02,0.00,255.680498,862.412631,50681,466534,0.002736,0.003958,2590336,2225506,0,0,5010,0,1,1 +1773523504.661209,1.81,4,3992.50,62.37,1243.42,2441.98,0.00,3518463041183.464844,3518463040577.264160,70,0,0.002742,0.003960,2590402,2225587,0,0,5013,0,1,1 +1773523509.661208,2.21,4,3992.50,62.16,1248.13,2433.89,0.00,255.383548,861.737090,50681,466656,0.002505,0.003977,2590460,2225660,0,0,5015,0,1,1 +1773523514.661207,2.86,4,3992.50,62.08,1248.62,2430.64,0.00,0.014844,0.060840,50685,466711,0.006908,0.006075,2590596,2225787,0,0,5018,0,1,1 +1773523519.665570,22.67,4,3992.50,62.45,1234.34,2444.88,0.00,3515369925331.444336,3515369924724.154785,221,21,28.241409,0.126392,2598738,2232157,0,0,5020,0,1,1 +1773523524.661205,8.71,4,3992.50,62.24,1242.43,2436.79,0.00,250.149892,862.805756,49973,467556,11.976694,0.048277,2601990,2234721,0,0,5023,0,1,1 +1773523529.665715,2.01,4,3992.50,62.09,1248.13,2431.08,0.00,4.057180,0.517697,50731,467842,0.002502,0.003318,2602048,2234789,0,0,5025,0,1,1 +1773523534.665730,1.61,4,3992.50,62.08,1248.76,2430.45,0.00,3518427035449.277832,3518427034840.700684,221,21,0.002734,0.003964,2602113,2234870,0,0,5028,0,1,1 +1773523539.664778,1.86,4,3992.50,62.39,1235.57,2442.54,0.00,3519107222263.076660,3519107222264.546875,11,0,0.002742,0.003963,2602179,2234951,0,0,5030,0,1,1 +1773523544.661303,1.71,4,3992.50,62.54,1229.47,2448.65,0.00,255.661986,863.479397,50731,467927,0.002736,0.003967,2602244,2235032,0,0,5033,0,1,1 +1773523549.665695,1.91,4,3992.50,62.55,1228.99,2449.12,0.00,3515349076409.213379,3515349075802.351562,11,0,0.002731,0.003951,2602309,2235112,0,0,5035,0,1,1 +1773523554.666024,1.56,4,3992.50,62.56,1228.76,2449.36,0.00,0.000000,0.000000,11,0,0.002733,0.003964,2602374,2235193,0,0,5038,0,1,1 +1773523559.663586,1.56,4,3992.50,62.57,1228.54,2449.58,0.00,2.009769,0.000195,238,2,0.002735,0.003956,2602439,2235273,0,0,5040,0,1,1 +1773523564.665820,1.71,4,3992.50,62.57,1228.54,2449.57,0.00,3516865573002.903320,3516865573004.861328,70,0,0.002720,0.003962,2602503,2235354,0,0,5043,0,1,1 +1773523569.665373,1.86,4,3992.50,62.57,1227.79,2449.81,0.00,251.395937,863.162114,49973,468079,0.002505,0.003321,2602561,2235422,0,0,5045,0,1,1 +1773523574.666049,2.01,4,3992.50,62.48,1231.15,2446.06,0.00,3517961450079.152344,3517961449467.573730,11,0,0.002512,0.003982,2602620,2235496,0,0,5048,0,1,1 +1773523579.661212,1.46,4,3992.50,62.49,1230.68,2446.54,0.00,1.493339,0.022092,221,21,0.002736,0.003958,2602685,2235576,0,0,5050,0,1,1 +1773523584.669909,5.57,4,3992.50,62.16,1243.48,2433.70,0.00,3512327417695.973633,3512327417697.391113,70,0,2.021758,0.019968,2603495,2236214,0,0,5053,0,1,1 +1773523589.661205,23.75,4,3992.50,63.24,1201.01,2476.07,0.00,0.000000,0.000000,70,0,34.251456,0.143170,2613029,2243717,0,0,5055,0,1,1 +1773523594.661289,4.22,4,3992.50,62.65,1223.98,2453.05,0.00,255.470592,863.738355,50783,469365,4.021537,0.017654,2614145,2244619,0,0,5058,0,1,1 +1773523599.665503,1.91,4,3992.50,62.51,1236.98,2447.46,0.00,3515474272695.986328,3515474272088.220703,70,0,0.002731,0.003951,2614210,2244699,0,0,5060,0,1,1 +1773523604.661302,1.81,4,3992.50,62.57,1234.80,2449.63,0.00,3521396213471.556152,0.000000,11,0,0.002736,0.003968,2614275,2244780,0,0,5063,0,1,1 +1773523609.661211,1.56,4,3992.50,62.57,1234.82,2449.62,0.00,0.000000,0.000000,11,0,0.002734,0.003954,2614340,2244860,0,0,5065,0,1,1 +1773523614.661214,1.91,4,3992.50,62.57,1234.55,2449.88,0.00,255.524710,864.462727,50783,469644,0.002742,0.003972,2614406,2244942,0,0,5068,0,1,1 +1773523619.661192,1.81,4,3992.50,62.58,1234.35,2450.08,0.00,3518452551191.919922,3518452550582.928711,70,0,0.002115,0.003704,2614459,2245014,0,0,5070,0,1,1 +1773523624.661272,1.71,4,3992.50,62.58,1234.14,2450.29,0.00,0.000000,0.000000,70,0,0.002505,0.003343,2614517,2245084,0,0,5073,0,1,1 +1773523629.666087,1.96,4,3992.50,62.59,1238.64,2450.45,0.00,1.956905,0.000195,238,2,0.002731,0.003951,2614582,2245164,0,0,5075,0,1,1 +1773523634.665454,1.86,4,3992.50,62.59,1238.43,2450.44,0.00,253.548194,864.874176,50783,469941,0.002734,0.003965,2614647,2245245,0,0,5078,0,1,1 +1773523639.665665,1.76,4,3992.50,62.59,1238.45,2450.43,0.00,3518288954264.062012,3518288953654.848145,11,0,0.002746,0.004437,2614713,2245328,0,0,5080,0,1,1 +1773523644.661171,1.81,4,3992.50,62.59,1238.23,2450.64,0.00,2.010596,0.000195,238,2,0.002736,0.004129,2614778,2245410,0,0,5083,0,1,1 +1773523649.664302,1.66,4,3992.50,62.40,1245.87,2443.02,0.00,3516236086582.626465,3516236086584.583984,70,0,0.002740,0.003960,2614844,2245491,0,0,5085,0,1,1 +1773523654.665545,10.45,4,3992.50,63.00,1222.36,2466.54,0.00,0.126922,0.000000,199,0,10.104156,0.052308,2617927,2247958,0,0,5088,0,1,1 +1773523659.665695,18.99,4,3992.50,63.13,1217.16,2471.68,0.00,255.367618,865.524280,50818,470984,28.107060,0.113450,2625624,2254108,0,0,5090,0,1,1 +1773523664.661207,3.47,4,3992.50,63.04,1220.37,2468.25,0.00,3521598405948.411621,3521598405337.865723,11,0,2.027314,0.015475,2626452,2254740,0,0,5093,0,1,1 +1773523669.663063,1.81,4,3992.50,62.62,1236.76,2451.86,0.00,0.000000,0.000000,11,0,0.002733,0.003940,2626517,2254819,0,0,5095,0,1,1 +1773523674.663552,1.56,4,3992.50,62.23,1252.29,2436.33,0.00,251.471486,865.815764,50066,471356,0.002504,0.003343,2626575,2254889,0,0,5098,0,1,1 +1773523679.665550,1.81,4,3992.50,62.23,1252.07,2436.55,0.00,4.059217,0.217784,50824,471389,0.002720,0.003953,2626639,2254969,0,0,5100,0,1,1 +1773523684.665323,1.61,4,3992.50,62.23,1252.07,2436.54,0.00,3518597141534.725098,3518597140924.085938,70,0,0.002729,0.003972,2626704,2255051,0,0,5103,0,1,1 +1773523689.665855,2.01,4,3992.50,62.40,1240.02,2443.07,0.00,0.000000,0.000000,70,0,0.002733,0.003954,2626769,2255131,0,0,5105,0,1,1 +1773523694.665600,1.86,4,3992.50,62.33,1241.73,2440.45,0.00,3518617115776.279297,0.000000,11,0,0.002734,0.003964,2626834,2255212,0,0,5108,0,1,1 +1773523699.662661,1.56,4,3992.50,62.33,1241.73,2440.44,0.00,0.177057,0.000000,199,0,0.002735,0.003957,2626899,2255292,0,0,5110,0,1,1 +1773523704.661188,1.91,4,3992.50,62.33,1241.75,2440.43,0.00,0.000000,0.000000,199,0,0.002734,0.004610,2626964,2255377,0,0,5113,0,1,1 +1773523709.665330,1.71,4,3992.50,62.35,1241.03,2441.15,0.00,1.313853,0.022052,221,21,0.002731,0.003938,2627029,2255456,0,0,5115,0,1,1 +1773523714.661195,1.51,4,3992.50,62.35,1241.21,2440.97,0.00,3521350083756.391602,3521350083757.862793,11,0,0.002507,0.003346,2627087,2255526,0,0,5118,0,1,1 +1773523719.665319,2.31,4,3992.50,62.63,1233.22,2451.96,0.00,0.000000,0.000000,11,0,0.007013,0.007643,2627216,2255660,0,0,5120,0,1,1 +1773523724.665637,1.86,4,3992.50,62.56,1235.88,2449.34,0.00,255.540700,866.491732,50824,471754,0.003033,0.004519,2627287,2255752,0,0,5123,0,1,1 +1773523729.666538,16.94,4,3992.50,63.24,1209.28,2475.90,0.00,0.015622,0.292037,50844,472286,14.229994,0.073227,2631411,2259058,0,0,5125,0,1,1 +1773523734.661853,15.37,4,3992.50,63.10,1214.35,2470.67,0.00,3521736736454.440918,3521736735842.424316,199,0,26.018519,0.099350,2638407,2264558,0,0,5128,0,1,1 +1773523739.663962,2.41,4,3992.50,62.47,1239.01,2446.01,0.00,255.307458,866.585093,50869,472718,0.010329,0.008269,2638616,2264746,0,0,5130,0,1,1 +1773523744.664451,2.01,4,3992.50,62.48,1238.61,2446.41,0.00,3518093598084.651367,0.426521,50111,472940,0.002504,0.003343,2638674,2264816,0,0,5133,0,1,1 +1773523749.665901,1.96,4,3992.50,62.79,1224.38,2458.44,0.00,3517416837663.814453,3517416837048.146973,11,0,0.002720,0.003953,2638738,2264896,0,0,5135,0,1,1 +1773523754.665588,1.71,4,3992.50,62.73,1226.61,2456.19,0.00,0.050003,0.000000,70,0,0.002742,0.003972,2638804,2264978,0,0,5138,0,1,1 +1773523759.665565,1.66,4,3992.50,62.71,1227.55,2455.25,0.00,251.482414,867.684289,50111,473044,0.002734,0.003954,2638869,2265058,0,0,5140,0,1,1 +1773523764.665508,1.46,4,3992.50,62.72,1227.11,2455.70,0.00,3518477386830.652832,3518477386212.488281,238,2,0.002846,0.004077,2638942,2265147,0,0,5143,0,1,1 +1773523769.665595,1.91,4,3992.50,62.72,1227.12,2455.68,0.00,253.578874,867.755068,50869,473123,0.002734,0.004115,2639007,2265228,0,0,5145,0,1,1 +1773523774.661190,1.71,4,3992.50,62.69,1228.32,2454.48,0.00,3521539893046.244141,3521539892431.515137,238,2,0.003659,0.005121,2639074,2265315,0,0,5148,0,1,1 +1773523779.662657,1.81,4,3992.50,62.95,1219.29,2464.77,0.00,3517404637465.374512,3517404637467.382324,11,0,0.002512,0.003328,2639133,2265384,0,0,5150,0,1,1 +1773523784.663012,1.76,4,3992.50,62.97,1218.58,2465.45,0.00,255.573981,868.023651,50869,473431,0.002733,0.003964,2639198,2265465,0,0,5153,0,1,1 +1773523789.663942,1.96,4,3992.50,62.97,1218.68,2465.36,0.00,3517782740175.017090,0.006932,50111,473446,0.002733,0.003941,2639263,2265544,0,0,5155,0,1,1 +1773523794.663941,1.61,4,3992.50,62.95,1219.32,2464.70,0.00,3518437933429.933105,3518437932813.321777,70,0,0.002734,0.003964,2639328,2265625,0,0,5158,0,1,1 +1773523799.664423,1.66,4,3992.50,62.95,1219.58,2464.46,0.00,1.441756,0.022068,221,21,0.002733,0.003954,2639393,2265705,0,0,5160,0,1,1 +1773523804.668542,24.74,4,3992.50,62.74,1227.38,2456.58,0.00,3515541188314.488281,3515541188315.907227,70,0,26.123971,0.111139,2646532,2271369,0,0,5163,0,1,1 +1773523809.665601,11.04,4,3992.50,63.83,1185.24,2499.06,0.00,3520507618005.095703,0.000000,11,0,14.097199,0.066547,2650632,2274643,0,0,5165,0,1,1 +1773523814.665972,2.26,4,3992.50,63.25,1208.09,2476.23,0.00,1.491784,0.022069,221,21,0.002733,0.003964,2650697,2274724,0,0,5168,0,1,1 +1773523819.665219,1.76,4,3992.50,62.78,1226.20,2458.13,0.00,0.000000,0.000000,221,21,0.002505,0.003321,2650755,2274792,0,0,5170,0,1,1 +1773523824.665306,2.06,4,3992.50,62.78,1226.20,2458.12,0.00,3518376025729.971191,3518376025731.440918,11,0,0.002746,0.003964,2650821,2274873,0,0,5173,0,1,1 +1773523829.661296,1.81,4,3992.50,62.78,1226.22,2458.10,0.00,1.493092,0.022088,221,21,0.002756,0.003966,2650888,2274954,0,0,5175,0,1,1 +1773523834.665899,2.26,4,3992.50,62.41,1240.91,2443.43,0.00,0.000000,0.000000,221,21,0.002731,0.004121,2650953,2275036,0,0,5178,0,1,1 +1773523839.665367,2.06,4,3992.50,62.44,1243.31,2444.57,0.00,3518811526680.432617,3518811526681.902344,11,0,0.002734,0.004438,2651018,2275119,0,0,5180,0,1,1 +1773523844.663959,1.86,4,3992.50,62.40,1244.73,2443.00,0.00,255.715690,869.911274,50932,475024,0.002734,0.003965,2651083,2275200,0,0,5183,0,1,1 +1773523849.665128,1.86,4,3992.50,62.40,1244.75,2442.99,0.00,3517614303565.739746,3517614302951.683594,199,0,0.002733,0.003953,2651148,2275280,0,0,5185,0,1,1 +1773523854.666070,2.06,4,3992.50,62.38,1245.43,2442.31,0.00,3517774602969.472168,0.000000,11,0,0.002729,0.003971,2651213,2275362,0,0,5188,0,1,1 +1773523859.661231,1.86,4,3992.50,62.41,1244.29,2443.45,0.00,0.177125,0.000000,199,0,0.002507,0.003324,2651271,2275430,0,0,5190,0,1,1 +1773523864.661233,1.66,4,3992.50,62.41,1244.30,2443.43,0.00,0.000000,0.000000,199,0,0.002734,0.003952,2651336,2275510,0,0,5193,0,1,1 +1773523869.665585,1.86,4,3992.50,62.13,1251.79,2432.70,0.00,3515377491106.985840,0.000000,70,0,0.002731,0.003951,2651401,2275590,0,0,5195,0,1,1 +1773523874.664056,4.08,4,3992.50,62.53,1235.95,2448.25,0.00,251.611305,870.100797,50176,475199,2.016000,0.013136,2652024,2276110,0,0,5198,0,1,1 +1773523879.665653,23.16,4,3992.50,63.03,1216.34,2467.79,0.00,3517313303927.053711,3517313303306.993164,238,2,32.174012,0.137498,2661217,2283306,0,0,5200,0,1,1 +1773523884.665539,5.33,4,3992.50,62.90,1221.62,2462.50,0.00,3518517806864.939453,3518517806866.897949,70,0,6.041570,0.030210,2662970,2284695,0,0,5203,0,1,1 +1773523889.664322,1.61,4,3992.50,62.87,1222.68,2461.43,0.00,3519294000011.640625,0.000000,11,0,0.002342,0.003176,2663026,2284761,0,0,5205,0,1,1 +1773523894.664639,1.61,4,3992.50,62.70,1229.40,2454.71,0.00,1.491800,0.022069,221,21,0.002733,0.003964,2663091,2284842,0,0,5208,0,1,1 +1773523899.661228,2.01,4,3992.50,62.78,1226.71,2458.02,0.00,3520839345183.544434,3520839345184.838379,199,0,0.002735,0.003957,2663156,2284922,0,0,5210,0,1,1 +1773523904.662753,1.76,4,3992.50,62.83,1223.97,2460.05,0.00,1.314541,0.022064,221,21,0.002741,0.004615,2663222,2285008,0,0,5213,0,1,1 +1773523909.665290,1.76,4,3992.50,62.81,1224.70,2459.32,0.00,3516652529526.395996,3516652529527.688477,199,0,0.002732,0.003952,2663287,2285088,0,0,5215,0,1,1 +1773523914.666046,1.81,4,3992.50,62.87,1222.53,2461.49,0.00,1.831559,0.000195,238,2,0.002733,0.003964,2663352,2285169,0,0,5218,0,1,1 +1773523919.661216,1.91,4,3992.50,62.86,1222.86,2461.17,0.00,249.848982,872.003233,50211,476562,0.002507,0.003324,2663410,2285237,0,0,5220,0,1,1 +1773523924.664905,1.71,4,3992.50,62.87,1222.42,2461.59,0.00,3515842778944.602539,3515842778323.507812,238,2,0.002719,0.003961,2663474,2285318,0,0,5223,0,1,1 +1773523929.661292,1.91,4,3992.50,63.07,1212.12,2469.40,0.00,3520981524353.981445,3520981524355.814941,199,0,0.002744,0.003965,2663540,2285399,0,0,5225,0,1,1 +1773523934.661344,1.81,4,3992.50,63.07,1212.16,2469.39,0.00,1.831817,0.000195,238,2,0.002734,0.003964,2663605,2285480,0,0,5228,0,1,1 +1773523939.665783,1.96,4,3992.50,63.07,1212.16,2469.38,0.00,3515315884679.601074,3515315884681.431152,199,0,0.002731,0.003951,2663670,2285560,0,0,5230,0,1,1 +1773523944.662526,7.19,4,3992.50,62.43,1237.12,2444.40,0.00,1.833030,0.000195,238,2,4.035007,0.022670,2664859,2286466,0,0,5233,0,1,1 +1773523949.661192,26.54,4,3992.50,62.89,1219.05,2462.40,0.00,3519376081988.961426,3519376081990.970703,11,0,36.205572,0.149230,2674798,2294332,0,0,5235,0,1,1 +1773523954.661225,1.96,4,3992.50,62.95,1216.94,2464.54,0.00,0.050000,0.000000,70,0,0.005454,0.005309,2674915,2294448,0,0,5238,0,1,1 +1773523959.661196,1.86,4,3992.50,62.92,1225.76,2463.52,0.00,255.657618,871.769840,51006,477525,0.002505,0.003321,2674973,2294516,0,0,5240,0,1,1 +1773523964.661193,1.91,4,3992.50,62.90,1224.34,2462.63,0.00,3518438931256.686523,3518438930639.157715,221,21,0.002734,0.003964,2675038,2294597,0,0,5243,0,1,1 +1773523969.665343,1.75,4,3992.50,62.90,1224.35,2462.62,0.00,3515520032468.078613,3515520032469.546875,11,0,0.002731,0.004582,2675103,2294680,0,0,5245,0,1,1 +1773523974.662825,1.61,4,3992.50,62.88,1225.07,2461.90,0.00,0.000000,0.000000,11,0,0.002735,0.003954,2675168,2294760,0,0,5248,0,1,1 +1773523979.665574,1.66,4,3992.50,62.90,1224.38,2462.60,0.00,1.491075,0.022058,221,21,0.002745,0.003952,2675234,2294840,0,0,5250,0,1,1 +1773523984.665919,1.86,4,3992.50,62.85,1226.30,2460.67,0.00,3518194604032.758789,3518194604034.228516,11,0,0.002741,0.003972,2675300,2294922,0,0,5253,0,1,1 +1773523989.666044,1.96,4,3992.50,62.99,1223.61,2466.27,0.00,0.000000,0.000000,11,0,0.002734,0.003942,2675365,2295001,0,0,5255,0,1,1 +1773523994.665658,2.16,4,3992.50,62.99,1223.25,2466.34,0.00,0.050004,0.000000,70,0,0.002734,0.003965,2675430,2295082,0,0,5258,0,1,1 +1773523999.661194,1.71,4,3992.50,62.99,1223.26,2466.32,0.00,251.820117,873.479283,50248,478169,0.002507,0.003324,2675488,2295150,0,0,5260,0,1,1 +1773524004.664545,1.86,4,3992.50,62.93,1225.67,2463.92,0.00,3516081234491.031738,3516081233870.393555,11,0,0.002732,0.003949,2675553,2295230,0,0,5263,0,1,1 +1773524009.662879,1.61,4,3992.50,62.89,1227.48,2462.11,0.00,0.000000,0.000000,11,0,0.002717,0.003964,2675617,2295311,0,0,5265,0,1,1 +1773524014.661554,12.12,4,3992.50,62.86,1228.36,2461.18,0.00,1.492290,0.022076,221,21,14.088398,0.063574,2679700,2298511,0,0,5268,0,1,1 +1773524019.665854,17.48,4,3992.50,63.74,1194.07,2495.49,0.00,249.972025,872.554839,50291,479023,26.133670,0.116858,2687196,2304433,0,0,5270,0,1,1 +1773524024.666048,1.91,4,3992.50,63.30,1211.11,2478.46,0.00,3518300666900.989746,3518300666279.315430,70,0,0.003564,0.005458,2687280,2304543,0,0,5273,0,1,1 +1773524029.662131,4.16,4,3992.50,62.83,1229.81,2459.78,0.00,1.443025,0.022088,221,21,0.002933,0.004490,2687351,2304634,0,0,5275,0,1,1 +1773524034.661281,1.61,4,3992.50,62.78,1231.46,2458.13,0.00,254.291846,873.679817,51050,479268,0.003412,0.005552,2687420,2304723,0,0,5278,0,1,1 +1773524039.665920,1.61,4,3992.50,62.41,1246.17,2443.42,0.00,3515176318056.637207,3515176317437.928223,221,21,0.002744,0.003951,2687486,2304803,0,0,5280,0,1,1 +1773524044.661292,1.61,4,3992.50,62.51,1242.03,2447.57,0.00,254.484193,874.755311,51050,479579,0.002724,0.003968,2687550,2304884,0,0,5283,0,1,1 +1773524049.665633,2.36,4,3992.50,62.82,1232.32,2459.45,0.00,3515384973515.023926,3515384972897.283691,70,0,0.002719,0.003951,2687614,2304964,0,0,5285,0,1,1 +1773524054.665722,1.71,4,3992.50,62.74,1230.78,2456.55,0.00,1.441869,0.022070,221,21,0.002734,0.003952,2687679,2305044,0,0,5288,0,1,1 +1773524059.665502,1.66,4,3992.50,62.75,1230.57,2456.75,0.00,250.198811,874.116715,50292,479622,0.002513,0.003341,2687738,2305114,0,0,5290,0,1,1 +1773524064.665934,1.56,4,3992.50,62.60,1236.57,2450.76,0.00,4.060489,0.067963,51050,479703,0.002846,0.004076,2687811,2305203,0,0,5293,0,1,1 +1773524069.665569,1.86,4,3992.50,62.60,1236.36,2450.96,0.00,3518694054544.172852,0.003907,50292,479710,0.002734,0.003955,2687876,2305283,0,0,5295,0,1,1 +1773524074.665787,1.76,4,3992.50,62.60,1236.36,2450.95,0.00,3518283697470.095703,3518283696847.453125,199,0,0.003655,0.004634,2687943,2305367,0,0,5298,0,1,1 +1773524079.663655,1.86,4,3992.50,62.42,1243.42,2444.04,0.00,3519938012597.317383,0.000000,11,0,0.002735,0.003956,2688008,2305447,0,0,5300,0,1,1 +1773524084.662412,12.02,4,3992.50,63.14,1215.38,2471.89,0.00,251.749287,874.515003,50301,479957,12.075729,0.055612,2691414,2308186,0,0,5303,0,1,1 +1773524089.664610,18.14,4,3992.50,62.62,1235.62,2451.61,0.00,0.019523,0.097028,50326,480458,28.143406,0.117554,2699282,2314427,0,0,5305,0,1,1 +1773524094.664562,2.31,4,3992.50,62.66,1233.90,2453.34,0.00,3518470869843.797363,3518470869219.633301,221,21,0.008056,0.007082,2699448,2314583,0,0,5308,0,1,1 +1773524099.663703,1.66,4,3992.50,62.68,1233.17,2454.07,0.00,3519042295535.873535,3519042295537.343750,11,0,0.002742,0.004607,2699514,2314668,0,0,5310,0,1,1 +1773524104.662435,1.61,4,3992.50,62.73,1231.22,2456.02,0.00,0.000000,0.000000,11,0,0.002734,0.003965,2699579,2314749,0,0,5313,0,1,1 +1773524109.665340,2.01,4,3992.50,62.97,1223.25,2465.57,0.00,0.000000,0.000000,11,0,0.002732,0.003952,2699644,2314829,0,0,5315,0,1,1 +1773524114.663203,1.86,4,3992.50,62.90,1226.04,2462.66,0.00,251.814620,875.843740,50327,481121,0.002506,0.003332,2699702,2314898,0,0,5318,0,1,1 +1773524119.663788,1.61,4,3992.50,62.92,1225.32,2463.38,0.00,3518026237733.129883,3518026237107.970215,221,21,0.002733,0.003954,2699767,2314978,0,0,5320,0,1,1 +1773524124.664919,1.71,4,3992.50,62.94,1224.60,2464.10,0.00,3517640959895.195312,3517640959896.665039,11,0,0.002733,0.003963,2699832,2315059,0,0,5323,0,1,1 +1773524129.665495,1.76,4,3992.50,62.94,1224.48,2464.21,0.00,2.008558,0.000195,238,2,0.002733,0.003954,2699897,2315139,0,0,5325,0,1,1 +1773524134.665901,1.86,4,3992.50,62.94,1224.50,2464.20,0.00,3518151332347.488281,3518151332349.496582,11,0,0.002721,0.003964,2699961,2315220,0,0,5328,0,1,1 +1773524139.661567,1.76,4,3992.50,63.27,1211.68,2477.18,0.00,2.010532,0.000195,238,2,0.002744,0.003966,2700027,2315301,0,0,5330,0,1,1 +1773524144.665799,1.66,4,3992.50,63.24,1212.64,2476.10,0.00,253.544508,874.977088,51085,481277,0.002731,0.003961,2700092,2315382,0,0,5333,0,1,1 +1773524149.661654,1.81,4,3992.50,63.19,1214.54,2474.20,0.00,3521355997481.043457,3521355997485.094238,50327,481264,0.002711,0.003958,2700155,2315462,0,0,5335,0,1,1 +1773524154.663180,8.91,4,3992.50,62.91,1225.70,2463.03,0.00,3517364254252.554688,3517364253628.747070,11,0,4.023521,0.019977,2701173,2316316,0,0,5338,0,1,1 +1773524159.661584,23.86,4,3992.50,63.17,1215.40,2473.27,0.00,0.000000,0.000000,11,0,34.196075,0.141731,2710676,2323859,0,0,5340,0,1,1 +1773524164.662283,4.78,4,3992.50,62.60,1237.83,2450.84,0.00,251.706197,876.013498,50371,482043,2.024433,0.016191,2711385,2324435,0,0,5343,0,1,1 +1773524169.663272,2.76,4,3992.50,62.91,1225.91,2462.95,0.00,3517741965627.114258,3517741965002.843262,11,0,0.002733,0.003954,2711450,2324515,0,0,5345,0,1,1 +1773524174.663699,1.76,4,3992.50,62.93,1224.80,2463.75,0.00,0.000000,0.000000,11,0,0.002733,0.003964,2711515,2324596,0,0,5348,0,1,1 +1773524179.664216,1.86,4,3992.50,62.93,1224.65,2463.90,0.00,0.000000,0.000000,11,0,0.002741,0.003949,2711581,2324676,0,0,5350,0,1,1 +1773524184.664803,1.71,4,3992.50,62.72,1233.05,2455.50,0.00,0.049994,0.000000,70,0,0.002733,0.003964,2711646,2324757,0,0,5353,0,1,1 +1773524189.665257,1.61,4,3992.50,62.74,1232.32,2456.23,0.00,255.729077,876.821243,51129,482449,0.002721,0.003954,2711710,2324837,0,0,5355,0,1,1 +1773524194.665349,1.56,4,3992.50,62.73,1232.53,2456.02,0.00,3518371978716.595703,3518371978093.500488,238,2,0.002734,0.003964,2711775,2324918,0,0,5358,0,1,1 +1773524199.665324,2.16,4,3992.50,62.93,1215.55,2463.87,0.00,3518455003819.218750,3518455003821.227051,11,0,0.002505,0.003321,2711833,2324986,0,0,5360,0,1,1 +1773524204.665299,1.66,4,3992.50,62.89,1217.12,2462.25,0.00,0.000000,0.000000,11,0,0.002734,0.003964,2711898,2325067,0,0,5363,0,1,1 +1773524209.665858,1.56,4,3992.50,62.89,1217.00,2462.36,0.00,0.176933,0.000000,199,0,0.002733,0.003954,2711963,2325147,0,0,5365,0,1,1 +1773524214.665185,1.66,4,3992.50,62.90,1216.79,2462.58,0.00,3518910052568.388672,0.000000,11,0,0.002721,0.003965,2712027,2325228,0,0,5368,0,1,1 +1773524219.665751,1.86,4,3992.50,62.90,1216.81,2462.57,0.00,2.008562,0.000195,238,2,0.002733,0.003954,2712092,2325308,0,0,5370,0,1,1 +1773524224.666094,1.71,4,3992.50,62.90,1216.58,2462.80,0.00,3518196302500.295410,3518196302502.303711,11,0,0.002741,0.003972,2712158,2325390,0,0,5373,0,1,1 +1773524229.664555,13.85,4,3992.50,64.18,1172.89,2512.88,0.00,0.000000,0.000000,11,0,10.265933,0.049286,2715044,2327673,0,0,5375,0,1,1 +1773524234.662332,15.04,4,3992.50,63.37,1204.72,2481.04,0.00,0.000000,0.000000,11,0,23.944983,0.100967,2721863,2333013,0,0,5378,0,1,1 +1773524239.665588,6.13,4,3992.50,62.99,1219.70,2466.05,0.00,0.000000,0.000000,11,0,6.036829,0.032385,2723676,2334510,0,0,5380,0,1,1 +1773524244.662132,1.96,4,3992.50,62.98,1219.99,2465.75,0.00,0.177076,0.000000,199,0,0.002736,0.003967,2723741,2334591,0,0,5383,0,1,1 +1773524249.666039,1.66,4,3992.50,63.00,1219.27,2466.48,0.00,3515689875139.559082,0.000000,70,0,0.002731,0.003951,2723806,2334671,0,0,5385,0,1,1 +1773524254.665894,1.86,4,3992.50,63.00,1219.05,2466.67,0.00,1.441936,0.022071,221,21,0.002734,0.003964,2723871,2334752,0,0,5388,0,1,1 +1773524259.661272,2.16,4,3992.50,63.46,1201.53,2484.58,0.00,254.581618,879.163751,51171,483918,0.002736,0.003958,2723936,2334832,0,0,5390,0,1,1 +1773524264.665577,1.91,4,3992.50,63.29,1207.90,2477.91,0.00,3515410379122.846680,3515410378500.797363,70,0,0.002564,0.003810,2723999,2334911,0,0,5393,0,1,1 +1773524269.665590,1.86,4,3992.50,63.33,1206.46,2479.34,0.00,3518428277001.125488,0.000000,11,0,0.002734,0.003954,2724064,2334991,0,0,5395,0,1,1 +1773524274.665358,1.81,4,3992.50,63.33,1206.24,2479.57,0.00,1.491964,0.022071,221,21,0.002505,0.003331,2724122,2335060,0,0,5398,0,1,1 +1773524279.666001,1.66,4,3992.50,62.79,1227.57,2458.23,0.00,254.313614,878.632715,51171,484281,0.002733,0.003954,2724187,2335140,0,0,5400,0,1,1 +1773524284.663830,1.66,4,3992.50,62.80,1227.19,2458.61,0.00,3519965538946.760254,3519965538321.550293,238,2,0.002735,0.003966,2724252,2335221,0,0,5403,0,1,1 +1773524289.665557,2.11,4,3992.50,63.15,1221.24,2472.34,0.00,249.682290,878.527527,50413,484324,0.002733,0.003953,2724317,2335301,0,0,5405,0,1,1 +1773524294.663134,1.86,4,3992.50,63.17,1220.23,2473.29,0.00,4.062809,0.042892,51171,484366,0.002722,0.004610,2724381,2335386,0,0,5408,0,1,1 +1773524299.665315,1.71,4,3992.50,63.14,1221.61,2471.93,0.00,3516903271174.433594,3516903270550.200195,221,21,0.002732,0.003940,2724446,2335465,0,0,5410,0,1,1 +1773524304.662858,14.72,4,3992.50,63.36,1212.66,2480.85,0.00,3520166913298.072266,3520166913299.365723,199,0,12.092738,0.064171,2728077,2338351,0,0,5413,0,1,1 +1773524309.663388,16.88,4,3992.50,62.93,1229.60,2463.86,0.00,1.831642,0.000195,238,2,28.136921,0.109731,2735733,2344460,0,0,5415,0,1,1 +1773524314.665665,2.36,4,3992.50,62.99,1227.24,2466.18,0.00,3516835528739.299316,3516835528741.307129,11,0,0.011417,0.007987,2735956,2344651,0,0,5418,0,1,1 +1773524319.664886,2.31,4,3992.50,63.40,1212.33,2482.26,0.00,255.903032,879.870701,51203,485459,0.005408,0.006051,2736078,2344779,0,0,5420,0,1,1 +1773524324.665502,1.66,4,3992.50,63.34,1210.35,2479.79,0.00,3518003968549.588867,3518003967925.618652,199,0,0.003033,0.004518,2736149,2344871,0,0,5423,0,1,1 +1773524329.664044,1.56,4,3992.50,63.34,1210.22,2479.91,0.00,1.315325,0.022077,221,21,0.002619,0.005388,2736221,2344977,0,0,5425,0,1,1 +1773524334.664568,2.56,4,3992.50,63.36,1209.50,2480.63,0.00,250.284242,879.784149,50445,485463,0.003848,0.006144,2736302,2345084,0,0,5428,0,1,1 +1773524339.665133,1.81,4,3992.50,63.31,1211.34,2478.79,0.00,0.000000,0.048823,50445,485487,0.003420,0.005855,2736388,2345200,0,0,5430,0,1,1 +1773524344.665379,1.71,4,3992.50,63.34,1210.15,2479.98,0.00,3518263613282.851562,3518263612654.687500,70,0,0.003898,0.007140,2736490,2345342,0,0,5433,0,1,1 +1773524349.661215,2.01,4,3992.50,63.35,1212.53,2480.21,0.00,1.443096,0.022089,221,21,0.003881,0.007128,2736590,2345482,0,0,5435,0,1,1 +1773524354.666078,2.16,4,3992.50,63.29,1212.36,2477.82,0.00,3515018539812.137207,3515018539813.555664,70,0,0.003874,0.007125,2736690,2345623,0,0,5438,0,1,1 +1773524359.664563,1.71,4,3992.50,63.09,1220.24,2469.95,0.00,255.890723,880.542992,51203,485834,0.003879,0.007756,2736790,2345766,0,0,5440,0,1,1 +1773524364.665619,1.76,4,3992.50,63.09,1220.27,2469.93,0.00,3517694220249.861328,3517694219625.403320,199,0,0.003532,0.005989,2736884,2345892,0,0,5443,0,1,1 +1773524369.661186,1.76,4,3992.50,63.07,1220.80,2469.39,0.00,251.848681,881.086546,50445,485861,0.003881,0.007129,2736984,2346032,0,0,5445,0,1,1 +1773524374.661339,2.06,4,3992.50,63.07,1220.82,2469.38,0.00,3518329290917.107422,3518329290288.573242,70,0,0.004800,0.007802,2737086,2346176,0,0,5448,0,1,1 +1773524379.666535,19.68,4,3992.50,64.00,1182.13,2505.88,0.00,1.956756,0.000195,238,2,22.228853,0.101852,2743606,2351214,0,0,5450,0,1,1 +1773524384.661325,11.40,4,3992.50,62.76,1228.45,2457.02,0.00,0.000000,0.000000,238,2,18.005527,0.077896,2748632,2355235,0,0,5453,0,1,1 +1773524389.663129,1.66,4,3992.50,62.81,1226.51,2458.96,0.00,3517168500785.115723,0.021867,221,21,0.003419,0.005853,2748718,2355351,0,0,5455,0,1,1 +1773524394.663753,1.81,4,3992.50,62.79,1227.05,2458.43,0.00,3517998092359.870117,3517998092361.290039,70,0,0.003428,0.005872,2748805,2355469,0,0,5458,0,1,1 +1773524399.664710,1.91,4,3992.50,62.80,1226.81,2458.66,0.00,3517764212044.239746,0.000000,11,0,0.003877,0.007121,2748905,2355609,0,0,5460,0,1,1 +1773524404.664966,1.76,4,3992.50,62.72,1229.89,2455.59,0.00,1.491818,0.022069,221,21,0.003878,0.007132,2749005,2355750,0,0,5463,0,1,1 +1773524409.665810,1.86,4,3992.50,63.15,1214.29,2472.42,0.00,3517843963897.099609,3517843963898.519043,70,0,0.003891,0.007109,2749106,2355889,0,0,5465,0,1,1 +1773524414.664299,1.76,4,3992.50,63.38,1204.53,2481.47,0.00,0.126991,0.000000,199,0,0.003434,0.005867,2749193,2356006,0,0,5468,0,1,1 +1773524419.665640,1.91,4,3992.50,63.37,1205.02,2480.98,0.00,255.658309,881.603667,51252,487484,0.003877,0.007121,2749293,2356146,0,0,5470,0,1,1 +1773524424.661191,1.61,4,3992.50,63.38,1204.43,2481.56,0.00,3521571202041.719238,3521571201415.175781,70,0,0.003881,0.007622,2749393,2356290,0,0,5473,0,1,1 +1773524429.665893,1.86,4,3992.50,63.33,1206.68,2479.32,0.00,251.556353,881.012428,50494,487480,0.003862,0.007277,2749492,2356431,0,0,5475,0,1,1 +1773524434.665187,1.56,4,3992.50,63.32,1206.95,2479.05,0.00,3518934042002.239746,3518934041372.152344,11,0,0.003408,0.005841,2749577,2356546,0,0,5478,0,1,1 +1773524439.663888,2.36,4,3992.50,63.71,1192.84,2494.29,0.00,255.970353,882.194772,51252,487582,0.003281,0.006895,2749667,2356680,0,0,5480,0,1,1 +1773524444.665586,2.81,4,3992.50,63.28,1208.34,2477.69,0.00,3517242461861.581055,3517242461233.724121,238,2,0.008038,0.008900,2749837,2356864,0,0,5483,0,1,1 +1773524449.663416,21.78,4,3992.50,63.04,1217.90,2468.05,0.00,3519965289172.596680,3519965289174.605957,11,0,28.179207,0.124379,2757950,2363213,0,0,5485,0,1,1 +1773524454.664225,9.30,4,3992.50,63.87,1185.39,2500.52,0.00,1.491653,0.022067,221,21,12.063279,0.051795,2761270,2365886,0,0,5488,0,1,1 +1773524459.665474,1.86,4,3992.50,63.40,1203.53,2482.39,0.00,0.000000,0.000000,221,21,0.003877,0.007121,2761370,2366026,0,0,5490,0,1,1 +1773524464.665403,1.96,4,3992.50,63.29,1208.00,2477.92,0.00,3518487236844.510742,3518487236845.803711,199,0,0.003878,0.007132,2761470,2366167,0,0,5493,0,1,1 +1773524469.665250,2.01,4,3992.50,63.29,1207.95,2477.95,0.00,1.314982,0.022071,221,21,0.003420,0.005855,2761556,2366283,0,0,5495,0,1,1 +1773524474.663544,1.86,4,3992.50,63.11,1214.99,2470.95,0.00,0.000000,0.000000,221,21,0.003879,0.007135,2761656,2366424,0,0,5498,0,1,1 +1773524479.662820,1.61,4,3992.50,62.98,1220.05,2465.89,0.00,0.516969,3518947245800.773926,238,2,0.003879,0.007123,2761756,2366564,0,0,5500,0,1,1 +1773524484.661131,2.01,4,3992.50,62.98,1220.07,2465.87,0.00,3519625887908.763672,3519625887910.772949,11,0,0.003879,0.007135,2761856,2366705,0,0,5503,0,1,1 +1773524489.666155,1.96,4,3992.50,63.01,1218.89,2467.04,0.00,0.049950,0.000000,70,0,0.003425,0.006340,2761943,2366825,0,0,5505,0,1,1 +1773524494.663733,1.76,4,3992.50,63.01,1218.91,2467.03,0.00,3520142251737.282715,0.000000,11,0,0.003867,0.007297,2762042,2366967,0,0,5508,0,1,1 +1773524499.665559,2.01,4,3992.50,63.30,1210.93,2478.33,0.00,255.850225,883.102621,51303,489066,0.003877,0.007120,2762142,2367107,0,0,5510,0,1,1 +1773524504.661802,1.96,4,3992.50,63.28,1211.41,2477.50,0.00,3521083008145.388184,3521083007517.384766,70,0,0.003881,0.007138,2762242,2367248,0,0,5513,0,1,1 +1773524509.664570,1.61,4,3992.50,62.98,1223.00,2465.91,0.00,0.000000,0.000000,70,0,0.003876,0.007118,2762342,2367388,0,0,5515,0,1,1 +1773524514.661920,1.76,4,3992.50,62.98,1223.04,2465.88,0.00,3520302768693.299805,0.000000,11,0,0.003422,0.005868,2762428,2367505,0,0,5518,0,1,1 +1773524519.665652,7.24,4,3992.50,63.57,1199.96,2488.95,0.00,1.490782,0.022054,221,21,4.024464,0.025039,2763509,2368405,0,0,5520,0,1,1 +1773524524.664731,23.33,4,3992.50,63.80,1190.82,2497.99,0.00,0.516990,3519085223793.543457,238,2,32.183031,0.136730,2772507,2375580,0,0,5523,0,1,1 +1773524529.665748,4.88,4,3992.50,63.60,1201.83,2489.99,0.00,3517721278026.914062,0.021871,221,21,4.030200,0.022772,2773613,2376517,0,0,5525,0,1,1 +1773524534.665390,1.96,4,3992.50,63.61,1201.09,2490.62,0.00,3518688877473.943848,3518688877475.237305,199,0,0.003878,0.007133,2773713,2376658,0,0,5528,0,1,1 +1773524539.666050,1.76,4,3992.50,63.64,1200.11,2491.59,0.00,1.831594,0.000195,238,2,0.003886,0.007129,2773814,2376799,0,0,5530,0,1,1 +1773524544.663598,1.66,4,3992.50,63.64,1199.89,2491.80,0.00,3520163906303.888672,3520163906305.898438,11,0,0.003539,0.006489,2773907,2376927,0,0,5533,0,1,1 +1773524549.665463,1.86,4,3992.50,63.46,1207.08,2484.61,0.00,0.049981,0.000000,70,0,0.003773,0.006499,2774001,2377056,0,0,5535,0,1,1 +1773524554.661195,1.81,4,3992.50,63.46,1207.09,2484.60,0.00,0.000000,0.000000,70,0,0.003423,0.006515,2774087,2377177,0,0,5538,0,1,1 +1773524559.661198,2.06,4,3992.50,63.56,1199.95,2488.48,0.00,1.958788,0.000195,238,2,0.003878,0.007122,2774187,2377317,0,0,5540,0,1,1 +1773524564.661293,1.71,4,3992.50,63.38,1205.34,2481.57,0.00,249.905212,884.904279,50591,490744,0.003420,0.005865,2774273,2377434,0,0,5543,0,1,1 +1773524569.666049,2.01,4,3992.50,63.38,1205.35,2481.55,0.00,3515093525128.820312,3515093524494.412598,238,2,0.003874,0.007103,2774373,2377573,0,0,5545,0,1,1 +1773524574.664828,1.66,4,3992.50,63.38,1205.37,2481.54,0.00,3519296744323.032715,0.021880,221,21,0.003879,0.007134,2774473,2377714,0,0,5548,0,1,1 +1773524579.665960,1.76,4,3992.50,63.38,1205.38,2481.53,0.00,3517640794603.543457,3517640794604.962891,70,0,0.003877,0.007121,2774573,2377854,0,0,5550,0,1,1 +1773524584.665987,1.76,4,3992.50,63.38,1205.39,2481.51,0.00,3518417615519.132812,0.000000,11,0,0.003428,0.005873,2774660,2377972,0,0,5553,0,1,1 +1773524589.665556,9.32,4,3992.50,63.23,1211.11,2475.59,0.00,0.176968,0.000000,199,0,6.053462,0.040915,2776648,2379598,0,0,5555,0,1,1 +1773524594.665219,23.05,4,3992.50,63.24,1210.52,2476.10,0.00,255.850357,885.965500,51388,492078,34.184923,0.137083,2785992,2386891,0,0,5558,0,1,1 +1773524599.665837,1.91,4,3992.50,63.27,1209.63,2476.99,0.00,0.000000,0.041889,51388,492089,0.003420,0.005854,2786078,2387007,0,0,5560,0,1,1 +1773524604.665666,1.66,4,3992.50,63.27,1209.41,2477.21,0.00,3518557862087.415527,3518557861457.456543,11,0,0.003420,0.005865,2786164,2387124,0,0,5563,0,1,1 +1773524609.661658,1.61,4,3992.50,63.27,1209.43,2477.20,0.00,256.215409,886.744492,51388,492187,0.003881,0.007128,2786264,2387264,0,0,5565,0,1,1 +1773524614.662463,1.96,4,3992.50,63.27,1209.44,2477.18,0.00,0.000000,0.008202,51388,492196,0.003877,0.007131,2786364,2387405,0,0,5568,0,1,1 +1773524619.665565,2.26,4,3992.50,63.35,1210.40,2480.26,0.00,3516255530302.136230,3516255529672.495117,11,0,0.007680,0.010019,2786512,2387577,0,0,5570,0,1,1 +1773524624.665811,1.66,4,3992.50,63.31,1212.02,2478.64,0.00,0.049998,0.000000,70,0,0.004177,0.007848,2786618,2387730,0,0,5573,0,1,1 +1773524629.665970,1.86,4,3992.50,63.27,1213.33,2477.31,0.00,3518325162892.682617,0.000000,11,0,0.004075,0.007654,2786724,2387881,0,0,5575,0,1,1 +1773524634.664554,1.91,4,3992.50,63.23,1215.08,2475.56,0.00,256.082605,886.831605,51388,492576,0.003887,0.007142,2786825,2388023,0,0,5578,0,1,1 +1773524639.664732,1.91,4,3992.50,63.21,1215.95,2474.70,0.00,3518312260692.888672,3518312260062.340820,11,0,0.004548,0.008044,2786928,2388165,0,0,5580,0,1,1 +1773524644.665226,1.61,4,3992.50,63.24,1214.74,2475.91,0.00,0.049995,0.000000,70,0,0.003420,0.005865,2787014,2388282,0,0,5583,0,1,1 +1773524649.665493,1.91,4,3992.50,63.14,1216.19,2471.88,0.00,3518249292855.570312,0.000000,11,0,0.003878,0.007122,2787114,2388422,0,0,5585,0,1,1 +1773524654.663559,1.86,4,3992.50,63.03,1220.21,2467.88,0.00,0.000000,0.000000,11,0,0.003880,0.007135,2787214,2388563,0,0,5588,0,1,1 +1773524659.661210,13.88,4,3992.50,63.31,1209.53,2478.53,0.00,256.140513,887.533438,51401,493246,14.102633,0.070319,2791447,2391915,0,0,5590,0,1,1 +1773524664.661949,19.25,4,3992.50,63.09,1217.61,2470.26,0.00,3517917204883.215332,3517917204250.203613,238,2,26.141816,0.113211,2798919,2397919,0,0,5593,0,1,1 +1773524669.661280,1.71,4,3992.50,63.07,1218.73,2469.16,0.00,0.000000,0.000000,238,2,0.003879,0.007123,2799019,2398059,0,0,5595,0,1,1 +1773524674.664103,1.71,4,3992.50,63.09,1217.75,2470.13,0.00,249.875914,886.969830,50679,493944,0.003751,0.007103,2799118,2398198,0,0,5598,0,1,1 +1773524679.665247,2.21,4,3992.50,63.25,1221.43,2476.48,0.00,4.059911,0.244573,51437,494001,0.004466,0.006549,2799207,2398319,0,0,5600,0,1,1 +1773524684.664774,1.86,4,3992.50,63.21,1218.13,2474.74,0.00,3518770044863.132812,3518770044231.444336,11,0,0.003874,0.007302,2799307,2398462,0,0,5603,0,1,1 +1773524689.663750,1.86,4,3992.50,63.23,1217.18,2475.71,0.00,0.050010,0.000000,70,0,0.003879,0.007607,2799407,2398605,0,0,5605,0,1,1 +1773524694.665955,1.90,4,3992.50,63.09,1222.87,2470.00,0.00,251.864718,887.528163,50679,494050,0.003864,0.007129,2799506,2398746,0,0,5608,0,1,1 +1773524699.665013,1.76,4,3992.50,63.08,1223.02,2469.86,0.00,3519100481651.804688,3519100481015.741211,70,0,0.003421,0.005856,2799592,2398862,0,0,5610,0,1,1 +1773524704.665701,2.06,4,3992.50,63.08,1223.06,2469.83,0.00,256.002169,888.088221,51438,494361,0.003877,0.007131,2799692,2399003,0,0,5613,0,1,1 +1773524709.665503,2.16,4,3992.50,63.20,1220.52,2474.25,0.00,3518576689933.108887,3518576689300.960938,11,0,0.003878,0.007123,2799792,2399143,0,0,5615,0,1,1 +1773524714.663813,1.76,4,3992.50,63.19,1220.71,2474.00,0.00,0.000000,0.000000,11,0,0.002963,0.004599,2799864,2399236,0,0,5618,0,1,1 +1773524719.665360,2.01,4,3992.50,63.19,1220.58,2474.13,0.00,256.008218,888.072385,51438,494471,0.003872,0.007128,2799964,2399377,0,0,5620,0,1,1 +1773524724.661210,2.06,4,3992.50,63.21,1219.91,2474.81,0.00,3521359531377.537598,3521359530744.752930,11,0,0.003881,0.007138,2800064,2399518,0,0,5623,0,1,1 +1773524729.665654,19.85,4,3992.50,64.09,1185.31,2509.35,0.00,0.000000,0.000000,11,0,24.122180,0.110828,2807026,2405080,0,0,5625,0,1,1 +1773524734.665452,11.88,4,3992.50,63.49,1208.84,2485.79,0.00,0.000000,0.000000,11,0,16.098436,0.072632,2811790,2408839,0,0,5628,0,1,1 +1773524739.666115,2.11,4,3992.50,63.17,1217.93,2473.19,0.00,0.176930,0.000000,199,0,0.003702,0.006976,2811887,2408977,0,0,5630,0,1,1 +1773524744.663964,2.11,4,3992.50,63.16,1217.38,2473.04,0.00,251.997850,889.849469,50731,495798,0.003867,0.007135,2811986,2409118,0,0,5633,0,1,1 +1773524749.661891,1.76,4,3992.50,63.17,1217.23,2473.18,0.00,3519897040874.154297,3519897040236.489258,11,0,0.003422,0.005858,2812072,2409234,0,0,5635,0,1,1 +1773524754.661244,1.96,4,3992.50,63.12,1219.00,2471.41,0.00,252.098990,889.597401,50731,495819,0.003887,0.007785,2812173,2409380,0,0,5638,0,1,1 +1773524759.661292,1.91,4,3992.50,63.17,1217.05,2473.36,0.00,3518403939308.655762,3518403938669.776367,221,21,0.003878,0.007122,2812273,2409520,0,0,5640,0,1,1 +1773524764.665608,2.06,4,3992.50,63.14,1218.30,2472.12,0.00,3515402125289.019531,3515402125290.311523,199,0,0.003875,0.007126,2812373,2409661,0,0,5643,0,1,1 +1773524769.664162,2.16,4,3992.50,63.27,1203.71,2477.24,0.00,3519455216231.555176,0.000000,11,0,0.003421,0.005857,2812459,2409777,0,0,5645,0,1,1 +1773524774.661276,1.91,4,3992.50,63.26,1203.98,2476.74,0.00,0.177055,0.000000,199,0,0.003880,0.007136,2812559,2409918,0,0,5648,0,1,1 +1773524779.665871,2.01,4,3992.50,63.26,1204.00,2476.73,0.00,3515206681917.332031,0.000000,70,0,0.003874,0.007116,2812659,2410058,0,0,5650,0,1,1 +1773524784.661192,2.06,4,3992.50,63.28,1203.01,2477.71,0.00,0.000000,0.000000,70,0,0.003890,0.007147,2812760,2410200,0,0,5653,0,1,1 +1773524789.665406,2.11,4,3992.50,63.30,1202.54,2478.18,0.00,251.804205,889.043848,50731,495955,0.003875,0.007104,2812860,2410339,0,0,5655,0,1,1 +1773524794.665697,2.82,4,3992.50,63.16,1207.69,2473.04,0.00,3518232265973.960938,3518232265334.801758,221,21,0.007607,0.008001,2813018,2410504,0,0,5658,0,1,1 +1773524799.666034,14.85,4,3992.50,63.87,1185.85,2500.80,0.00,0.000000,0.000000,221,21,16.097375,0.073626,2817540,2414035,0,0,5660,0,1,1 +1773524804.665483,16.99,4,3992.50,63.28,1209.16,2477.42,0.00,3518824688484.870117,3518824688486.340332,11,0,24.134824,0.101714,2824305,2419507,0,0,5663,0,1,1 +1773524809.661619,2.11,4,3992.50,63.26,1209.96,2476.61,0.00,0.000000,0.000000,11,0,0.003652,0.006506,2824398,2419636,0,0,5665,0,1,1 +1773524814.661427,1.71,4,3992.50,63.23,1210.83,2475.75,0.00,0.000000,0.000000,11,0,0.003878,0.007133,2824498,2419777,0,0,5668,0,1,1 +1773524819.662370,1.91,4,3992.50,63.24,1210.58,2475.98,0.00,0.049991,0.000000,70,0,0.003885,0.007785,2824599,2419923,0,0,5670,0,1,1 +1773524824.662933,1.71,4,3992.50,63.25,1210.39,2476.19,0.00,1.441732,0.022068,221,21,0.003865,0.007119,2824698,2420063,0,0,5673,0,1,1 +1773524829.665555,2.26,4,3992.50,63.43,1204.40,2483.47,0.00,0.516624,3516592988659.082031,238,2,0.003418,0.005852,2824784,2420179,0,0,5675,0,1,1 +1773524834.664010,2.16,4,3992.50,63.43,1204.37,2483.32,0.00,3519525390523.439941,3519525390525.449219,11,0,0.003879,0.007122,2824884,2420319,0,0,5678,0,1,1 +1773524839.664545,2.36,4,3992.50,63.43,1204.15,2483.54,0.00,0.049995,0.000000,70,0,0.003878,0.007122,2824984,2420459,0,0,5680,0,1,1 +1773524844.665169,1.66,4,3992.50,63.26,1211.10,2476.59,0.00,3517997623118.949707,0.000000,11,0,0.003878,0.007131,2825084,2420600,0,0,5683,0,1,1 +1773524849.665837,1.86,4,3992.50,63.25,1211.12,2476.57,0.00,0.049993,0.000000,70,0,0.003428,0.005862,2825171,2420717,0,0,5685,0,1,1 +1773524854.666003,1.96,4,3992.50,63.25,1211.13,2476.56,0.00,1.958724,0.000195,238,2,0.003878,0.007132,2825271,2420858,0,0,5688,0,1,1 +1773524859.661275,2.01,4,3992.50,63.64,1196.16,2491.53,0.00,3521767103774.147461,3521767103775.981445,199,0,0.003882,0.007129,2825371,2420998,0,0,5690,0,1,1 +1773524864.661276,1.86,4,3992.50,63.54,1199.87,2487.83,0.00,1.831836,0.000195,238,2,0.003891,0.007132,2825472,2421139,0,0,5693,0,1,1 +1773524869.661203,7.19,4,3992.50,63.11,1216.79,2471.04,0.00,3518488091848.756836,3518488091850.589355,199,0,2.031523,0.022034,2826383,2421843,0,0,5695,0,1,1 +1773524874.665550,25.48,4,3992.50,63.45,1202.79,2484.13,0.00,3515381545734.321289,0.000000,11,0,38.165273,0.152796,2836881,2430232,0,0,5698,0,1,1 +1773524879.665916,3.12,4,3992.50,63.01,1219.95,2466.91,0.00,0.000000,0.000000,11,0,0.011510,0.011194,2837121,2430471,0,0,5700,0,1,1 +1773524884.662436,1.71,4,3992.50,62.96,1221.71,2465.18,0.00,0.050035,0.000000,70,0,0.003431,0.006522,2837208,2430593,0,0,5703,0,1,1 +1773524889.665962,2.06,4,3992.50,63.33,1207.25,2479.57,0.00,256.020920,891.915263,51580,499023,0.003875,0.007117,2837308,2430733,0,0,5705,0,1,1 +1773524894.665999,2.11,4,3992.50,63.31,1208.10,2478.64,0.00,3518410559733.877441,3518410559737.924316,50822,499008,0.003420,0.005865,2837394,2430850,0,0,5708,0,1,1 +1773524899.661202,1.81,4,3992.50,63.30,1208.54,2478.20,0.00,0.000000,0.005572,50822,499016,0.003869,0.007129,2837493,2430990,0,0,5710,0,1,1 +1773524904.661211,1.71,4,3992.50,63.30,1208.56,2478.19,0.00,3518430871233.324219,3518430870592.979980,11,0,0.003272,0.006895,2837582,2431124,0,0,5713,0,1,1 +1773524909.666048,1.71,4,3992.50,63.33,1207.37,2479.37,0.00,2.006848,0.000195,238,2,0.003417,0.005850,2837668,2431240,0,0,5715,0,1,1 +1773524914.662795,1.86,4,3992.50,63.31,1208.20,2478.54,0.00,3520727611891.797852,3520727611893.807617,11,0,0.003881,0.007137,2837768,2431381,0,0,5718,0,1,1 +1773524919.662022,2.36,4,3992.50,63.50,1201.85,2486.23,0.00,252.229601,892.927727,50822,499142,0.008152,0.010819,2837931,2431575,0,0,5720,0,1,1 +1773524924.661335,1.76,4,3992.50,63.37,1205.67,2481.12,0.00,3518920646394.870605,3518920645754.133301,70,0,0.004166,0.007675,2838036,2431726,0,0,5723,0,1,1 +1773524929.665214,1.86,4,3992.50,63.35,1206.43,2480.37,0.00,3515709713552.813965,0.000000,11,0,0.003614,0.006382,2838128,2431853,0,0,5725,0,1,1 +1773524934.665833,1.76,4,3992.50,63.40,1204.73,2482.07,0.00,2.008541,0.000195,238,2,0.003878,0.007131,2838228,2431994,0,0,5728,0,1,1 +1773524939.665312,16.89,4,3992.50,63.30,1208.35,2478.39,0.00,3518803993526.738770,3518803993528.747559,11,0,18.121094,0.088993,2843502,2436209,0,0,5730,0,1,1 +1773524944.665595,14.90,4,3992.50,63.80,1188.78,2497.93,0.00,0.000000,0.000000,11,0,22.114531,0.091477,2849461,2441038,0,0,5733,0,1,1 +1773524949.661268,2.21,4,3992.50,63.53,1204.43,2487.52,0.00,0.050043,0.000000,70,0,0.003877,0.007781,2849561,2441183,0,0,5735,0,1,1 +1773524954.666152,1.91,4,3992.50,63.57,1203.19,2488.72,0.00,3515004289083.228516,0.000000,11,0,0.003874,0.007125,2849661,2441324,0,0,5738,0,1,1 +1773524959.662241,1.76,4,3992.50,63.54,1204.11,2487.80,0.00,0.050039,0.000000,70,0,0.003881,0.007128,2849761,2441464,0,0,5740,0,1,1 +1773524964.662143,2.01,4,3992.50,63.56,1203.39,2488.53,0.00,3518506322902.850586,0.000000,11,0,0.003533,0.005978,2849855,2441589,0,0,5743,0,1,1 +1773524969.662424,1.66,4,3992.50,63.57,1203.19,2488.73,0.00,0.000000,0.000000,11,0,0.003878,0.007122,2849955,2441729,0,0,5745,0,1,1 +1773524974.663053,4.02,4,3992.50,63.20,1217.65,2474.27,0.00,0.176931,0.000000,199,0,0.003865,0.007131,2850054,2441870,0,0,5748,0,1,1 +1773524979.662986,1.96,4,3992.50,63.63,1200.73,2491.19,0.00,256.111559,894.287450,51623,500738,0.004800,0.007792,2850156,2442013,0,0,5750,0,1,1 +1773524984.664421,2.11,4,3992.50,63.64,1200.14,2491.77,0.00,0.000000,0.173778,51623,500948,0.003427,0.005871,2850243,2442131,0,0,5753,0,1,1 +1773524989.665330,1.61,4,3992.50,63.62,1201.02,2490.89,0.00,3517797676527.120117,3517797675889.072266,11,0,0.003865,0.007121,2850342,2442271,0,0,5755,0,1,1 +1773524994.661195,1.76,4,3992.50,63.63,1200.55,2491.38,0.00,256.497225,895.245012,51623,501010,0.003423,0.005870,2850428,2442388,0,0,5758,0,1,1 +1773524999.665259,1.65,4,3992.50,63.63,1200.56,2491.36,0.00,3515579310084.067871,0.011709,50865,501028,0.003875,0.007117,2850528,2442528,0,0,5760,0,1,1 +1773525004.665893,2.26,4,3992.50,63.55,1204.00,2487.93,0.00,3517991149164.806641,3517991148522.596191,11,0,0.004778,0.006237,2850635,2442658,0,0,5763,0,1,1 +1773525009.661189,14.63,4,3992.50,63.48,1203.14,2485.44,0.00,256.552209,895.851135,51653,501520,14.100618,0.065592,2854524,2445806,0,0,5765,0,1,1 +1773525014.664472,17.59,4,3992.50,64.13,1177.70,2510.82,0.00,3516128647499.522461,0.480641,50924,502236,26.128794,0.112085,2861887,2451713,0,0,5768,0,1,1 +1773525019.661210,1.41,4,3992.50,63.67,1195.56,2492.97,0.00,3520733738887.735840,3520733738243.922363,199,0,0.003881,0.007114,2861987,2451852,0,0,5770,0,1,1 +1773525024.661187,1.60,4,3992.50,63.49,1202.58,2485.94,0.00,3518453542248.106934,0.000000,70,0,0.003865,0.007132,2862086,2451993,0,0,5773,0,1,1 +1773525029.665236,1.25,4,3992.50,63.50,1202.45,2486.05,0.00,1.440728,0.022052,221,21,0.003417,0.005850,2862172,2452109,0,0,5775,0,1,1 +1773525034.665750,1.26,4,3992.50,63.30,1210.09,2478.44,0.00,250.755025,895.617452,50924,502530,0.003886,0.007140,2862273,2452251,0,0,5778,0,1,1 +1773525039.662583,1.76,4,3992.50,63.31,1209.68,2478.79,0.00,4.064195,0.262569,51683,502611,0.003880,0.007127,2862373,2452391,0,0,5780,0,1,1 +1773525044.665410,1.91,4,3992.50,63.49,1202.89,2485.87,0.00,3516448883945.592285,3516448883306.293945,11,0,0.003406,0.005862,2862458,2452508,0,0,5783,0,1,1 +1773525049.665792,1.56,4,3992.50,63.46,1204.25,2484.51,0.00,1.491781,0.022069,221,21,0.003878,0.007122,2862558,2452648,0,0,5785,0,1,1 +1773525054.665732,1.36,4,3992.50,63.46,1204.26,2484.49,0.00,250.784538,896.090974,50925,502680,0.003420,0.005865,2862644,2452765,0,0,5788,0,1,1 +1773525059.665846,1.65,4,3992.50,63.27,1211.68,2477.06,0.00,3518356825437.699219,3518356824792.415039,221,21,0.003878,0.007122,2862744,2452905,0,0,5790,0,1,1 +1773525064.665143,1.61,4,3992.50,63.27,1211.70,2477.04,0.00,0.516967,3518931923557.942871,238,2,0.003879,0.007133,2862844,2453046,0,0,5793,0,1,1 +1773525069.665746,1.81,4,3992.50,63.57,1200.21,2488.82,0.00,3518013385365.423828,3518013385367.432129,11,0,0.003878,0.007122,2862944,2453186,0,0,5795,0,1,1 +1773525074.665223,1.76,4,3992.50,63.47,1203.41,2485.16,0.00,1.492050,0.022073,221,21,0.003878,0.007108,2863044,2453325,0,0,5798,0,1,1 +1773525079.665556,4.97,4,3992.50,63.36,1207.78,2480.78,0.00,3518203363051.671875,3518203363052.964844,199,0,2.016475,0.015083,2863737,2453914,0,0,5800,0,1,1 +1773525084.664112,22.87,4,3992.50,63.92,1185.99,2502.48,0.00,256.253999,897.162463,51712,503852,34.202598,0.143384,2873425,2461415,0,0,5803,0,1,1 +1773525089.664691,5.13,4,3992.50,62.84,1228.10,2460.39,0.00,3518029656852.447754,3518029656211.925781,70,0,4.034916,0.028480,2874790,2462554,0,0,5805,0,1,1 +1773525094.663698,1.61,4,3992.50,62.87,1226.91,2461.58,0.00,252.297750,897.097844,50956,503951,0.003421,0.005866,2874876,2462671,0,0,5808,0,1,1 +1773525099.665420,2.11,4,3992.50,63.27,1215.18,2477.19,0.00,3517226262099.687500,3517226261453.279785,238,2,0.003864,0.007107,2874975,2462810,0,0,5810,0,1,1 +1773525104.665026,1.91,4,3992.50,63.24,1216.29,2476.04,0.00,3518714076787.271484,3518714076789.104004,199,0,0.003878,0.007133,2875075,2462951,0,0,5813,0,1,1 +1773525109.663149,1.76,4,3992.50,63.24,1216.29,2476.03,0.00,1.832524,0.000195,238,2,0.003879,0.007125,2875175,2463091,0,0,5815,0,1,1 +1773525114.665885,1.76,4,3992.50,63.21,1217.43,2474.91,0.00,3516512899880.400391,0.021863,221,21,0.003418,0.005862,2875261,2463208,0,0,5818,0,1,1 +1773525119.664224,1.71,4,3992.50,63.21,1217.45,2474.89,0.00,3519606217226.166016,3519606217227.459473,199,0,0.003879,0.007125,2875361,2463348,0,0,5820,0,1,1 +1773525124.661202,1.76,4,3992.50,63.21,1217.57,2474.75,0.00,252.273195,898.203779,50956,504343,0.003880,0.007137,2875461,2463489,0,0,5823,0,1,1 +1773525129.665853,2.36,4,3992.50,63.42,1206.71,2483.05,0.00,3515167253118.060547,3515167252473.296875,11,0,0.003895,0.007124,2875563,2463630,0,0,5825,0,1,1 +1773525134.666104,1.71,4,3992.50,63.32,1210.60,2479.18,0.00,256.345629,897.744782,51714,504442,0.003878,0.007119,2875663,2463770,0,0,5828,0,1,1 +1773525139.665429,1.46,4,3992.50,63.32,1210.60,2479.16,0.00,3518912189535.134766,3518912189539.175293,50956,504424,0.003421,0.005869,2875749,2463887,0,0,5830,0,1,1 +1773525144.665269,1.66,4,3992.50,63.35,1209.40,2480.38,0.00,3518550150572.185547,3518550149926.693848,11,0,0.003866,0.007777,2875848,2464032,0,0,5833,0,1,1 +1773525149.665958,1.71,4,3992.50,63.36,1209.17,2480.60,0.00,1.491689,0.022067,221,21,0.003877,0.007121,2875948,2464172,0,0,5835,0,1,1 +1773525154.663332,8.24,4,3992.50,62.97,1224.21,2465.54,0.00,3520286343484.276367,3520286343485.569824,199,0,6.043307,0.031678,2877677,2465550,0,0,5838,0,1,1 +1773525159.662997,22.45,4,3992.50,63.50,1202.93,2486.27,0.00,1.315030,0.022072,221,21,34.186689,0.141825,2887258,2473128,0,0,5840,0,1,1 +1773525164.661255,2.92,4,3992.50,63.02,1221.89,2467.28,0.00,3519663706797.725586,3519663706799.019043,199,0,0.020373,0.014091,2887646,2473461,0,0,5843,0,1,1 +1773525169.664560,1.86,4,3992.50,63.09,1219.00,2470.18,0.00,3516112820619.367188,0.000000,11,0,0.003418,0.005851,2887732,2473577,0,0,5845,0,1,1 +1773525174.661927,1.51,4,3992.50,63.09,1219.02,2470.16,0.00,0.050026,0.000000,70,0,0.003880,0.007136,2887832,2473718,0,0,5848,0,1,1 +1773525179.665227,1.40,4,3992.50,63.09,1219.03,2470.15,0.00,0.126869,0.000000,199,0,0.003883,0.007126,2887933,2473859,0,0,5850,0,1,1 +1773525184.665354,1.51,4,3992.50,63.09,1219.05,2470.13,0.00,3518347505798.685059,0.000000,11,0,0.003878,0.007132,2888033,2474000,0,0,5853,0,1,1 +1773525189.665765,2.36,4,3992.50,63.32,1207.36,2479.15,0.00,0.049996,0.000000,70,0,0.003473,0.006330,2888123,2474125,0,0,5855,0,1,1 +1773525194.665240,2.06,4,3992.50,63.16,1213.25,2473.02,0.00,256.393250,899.307195,51753,505796,0.003662,0.006512,2888217,2474255,0,0,5858,0,1,1 +1773525199.665398,1.71,4,3992.50,62.92,1222.81,2463.45,0.00,3518326309574.225586,3518326308931.399414,70,0,0.003878,0.007122,2888317,2474395,0,0,5860,0,1,1 +1773525204.666151,1.76,4,3992.50,62.93,1222.36,2463.90,0.00,256.327686,899.098414,51753,505811,0.003877,0.007131,2888417,2474536,0,0,5863,0,1,1 +1773525209.662675,1.86,4,3992.50,62.97,1220.94,2465.33,0.00,3520885023663.356934,3520885023020.041992,70,0,0.003881,0.007772,2888517,2474680,0,0,5865,0,1,1 +1773525214.665722,1.91,4,3992.50,62.98,1220.46,2465.80,0.00,0.000000,0.000000,70,0,0.003418,0.005862,2888603,2474797,0,0,5868,0,1,1 +1773525219.661292,2.36,4,3992.50,63.18,1207.86,2473.63,0.00,252.529209,900.157790,50995,505915,0.006582,0.009213,2888762,2474984,0,0,5870,0,1,1 +1773525224.664397,1.86,4,3992.50,62.97,1216.03,2465.37,0.00,0.000000,0.032402,50995,505955,0.004162,0.007682,2888867,2475136,0,0,5873,0,1,1 +1773525229.661523,15.60,4,3992.50,62.45,1236.26,2445.11,0.00,3520461271789.654785,3520461271140.235840,238,2,14.102717,0.070368,2893075,2478439,0,0,5875,0,1,1 +1773525234.665608,17.14,4,3992.50,64.13,1170.36,2510.91,0.00,0.000000,0.000000,238,2,26.116714,0.106747,2900179,2484097,0,0,5878,0,1,1 +1773525239.665215,2.16,4,3992.50,64.03,1174.40,2506.88,0.00,3518713682661.642578,0.021877,221,21,0.006604,0.007968,2900315,2484247,0,0,5880,0,1,1 +1773525244.661182,1.81,4,3992.50,63.59,1191.42,2489.87,0.00,0.000000,0.000000,221,21,0.003881,0.007138,2900415,2484388,0,0,5883,0,1,1 +1773525249.665643,2.11,4,3992.50,63.61,1190.65,2490.62,0.00,3515300636892.592285,3515300636894.061035,11,0,0.003862,0.007116,2900514,2484528,0,0,5885,0,1,1 +1773525254.665189,2.16,4,3992.50,63.60,1191.18,2490.11,0.00,0.000000,0.000000,11,0,0.003878,0.007120,2900614,2484668,0,0,5888,0,1,1 +1773525259.665434,1.81,4,3992.50,63.57,1192.43,2488.86,0.00,252.377479,900.553536,51039,507287,0.003420,0.005855,2900700,2484784,0,0,5890,0,1,1 +1773525264.665600,1.86,4,3992.50,63.59,1191.78,2489.50,0.00,0.000000,0.031542,51039,507323,0.003990,0.007245,2900808,2484933,0,0,5893,0,1,1 +1773525269.665410,1.81,4,3992.50,63.56,1192.61,2488.68,0.00,3518570777799.820312,3518570777151.556152,11,0,0.003878,0.007123,2900908,2485073,0,0,5895,0,1,1 +1773525274.665464,1.91,4,3992.50,63.56,1192.62,2488.66,0.00,0.176951,0.000000,199,0,0.003878,0.007776,2901008,2485218,0,0,5898,0,1,1 +1773525279.663440,2.26,4,3992.50,63.36,1196.50,2480.73,0.00,3519862196230.346680,0.000000,70,0,0.004364,0.006536,2901098,2485338,0,0,5900,0,1,1 +1773525284.661256,1.86,4,3992.50,63.37,1195.59,2481.22,0.00,252.450121,901.329761,51039,507643,0.003880,0.007135,2901198,2485479,0,0,5903,0,1,1 +1773525289.665386,1.76,4,3992.50,63.37,1195.61,2481.20,0.00,3515533219992.151855,3515533219344.090820,70,0,0.003875,0.007117,2901298,2485619,0,0,5905,0,1,1 +1773525294.665358,1.71,4,3992.50,63.36,1195.96,2480.85,0.00,0.126954,0.000000,199,0,0.003891,0.007132,2901399,2485760,0,0,5908,0,1,1 +1773525299.664075,1.86,4,3992.50,63.38,1195.51,2481.30,0.00,3519340590530.860840,0.000000,70,0,0.003866,0.007124,2901498,2485900,0,0,5910,0,1,1 +1773525304.665843,18.75,4,3992.50,63.90,1175.06,2501.66,0.00,256.319399,900.906838,51809,508215,18.115539,0.089191,2906833,2490087,0,0,5913,0,1,1 +1773525309.666063,14.34,4,3992.50,63.63,1191.18,2491.41,0.00,3518282478785.438965,3518282478140.524902,199,0,22.108784,0.083672,2912773,2494782,0,0,5915,0,1,1 +1773525314.665840,1.86,4,3992.50,63.58,1193.04,2489.39,0.00,256.307845,902.331158,51826,509189,0.006488,0.008913,2912923,2494964,0,0,5918,0,1,1 +1773525319.665875,1.81,4,3992.50,63.63,1191.35,2491.09,0.00,3518412658550.560059,3518412657904.747559,11,0,0.003878,0.007122,2913023,2495104,0,0,5920,0,1,1 +1773525324.661202,1.51,4,3992.50,63.56,1194.06,2488.38,0.00,256.713234,903.170170,51826,509202,0.003882,0.007139,2913123,2495245,0,0,5923,0,1,1 +1773525329.661203,1.81,4,3992.50,63.55,1194.35,2488.10,0.00,3518436397275.470215,3518436396629.440430,199,0,0.003886,0.007118,2913224,2495385,0,0,5925,0,1,1 +1773525334.661204,1.71,4,3992.50,63.55,1194.37,2488.08,0.00,0.000000,0.000000,199,0,0.003420,0.005865,2913310,2495502,0,0,5928,0,1,1 +1773525339.661273,2.16,4,3992.50,63.95,1184.84,2503.76,0.00,1.314923,0.022070,221,21,0.003878,0.007605,2913410,2495645,0,0,5930,0,1,1 +1773525344.661203,2.01,4,3992.50,63.85,1186.49,2499.73,0.00,0.000000,0.000000,221,21,0.003878,0.007330,2913510,2495788,0,0,5933,0,1,1 +1773525349.665650,1.71,4,3992.50,63.83,1187.04,2499.19,0.00,0.516435,3515310352276.883301,238,2,0.003875,0.007116,2913610,2495928,0,0,5935,0,1,1 +1773525354.663825,1.71,4,3992.50,63.84,1186.84,2499.40,0.00,3519722164412.412109,0.021883,221,21,0.002639,0.005484,2913682,2496036,0,0,5938,0,1,1 +1773525359.661929,1.96,4,3992.50,63.84,1186.86,2499.38,0.00,3519771939487.017578,3519771939488.488281,11,0,0.003879,0.007125,2913782,2496176,0,0,5940,0,1,1 +1773525364.662381,1.86,4,3992.50,63.84,1186.68,2499.56,0.00,252.389667,902.626057,51068,509513,0.003886,0.007140,2913883,2496318,0,0,5943,0,1,1 +1773525369.663579,1.96,4,3992.50,64.04,1179.39,2507.14,0.00,3517594417631.483887,3517594416981.344238,11,0,0.003877,0.007121,2913983,2496458,0,0,5945,0,1,1 +1773525374.664206,2.46,4,3992.50,63.86,1185.84,2500.37,0.00,256.441213,902.717571,51826,509617,0.006440,0.007884,2914124,2496616,0,0,5948,0,1,1 +1773525379.665556,25.53,4,3992.50,64.53,1158.91,2526.48,0.00,3517486941238.619141,3517486940592.436523,11,0,32.265165,0.136006,2922971,2503628,0,0,5950,0,1,1 +1773525384.666009,7.54,4,3992.50,63.78,1188.16,2497.23,0.00,0.000000,0.000000,11,0,7.955729,0.037089,2925255,2505422,0,0,5953,0,1,1 +1773525389.663738,1.81,4,3992.50,63.28,1207.88,2477.49,0.00,0.050023,0.000000,70,0,0.003422,0.005858,2925341,2505538,0,0,5955,0,1,1 +1773525394.664315,1.66,4,3992.50,63.28,1207.86,2477.53,0.00,1.441728,0.022068,221,21,0.003890,0.007132,2925442,2505679,0,0,5958,0,1,1 +1773525399.664736,1.96,4,3992.50,63.66,1191.88,2492.51,0.00,3518141523862.871582,3518141523864.291504,70,0,0.003873,0.007130,2925542,2505820,0,0,5960,0,1,1 +1773525404.665662,1.85,4,3992.50,63.76,1187.52,2496.32,0.00,3517785714968.737793,0.000000,11,0,0.003877,0.007775,2925642,2505965,0,0,5963,0,1,1 +1773525409.665721,1.56,4,3992.50,63.79,1186.23,2497.62,0.00,0.000000,0.000000,11,0,0.003420,0.005855,2925728,2506081,0,0,5965,0,1,1 +1773525414.661205,1.61,4,3992.50,63.79,1186.23,2497.60,0.00,0.177113,0.000000,199,0,0.003882,0.007139,2925828,2506222,0,0,5968,0,1,1 +1773525419.661217,1.65,4,3992.50,63.79,1186.26,2497.59,0.00,1.314938,0.022070,221,21,0.003878,0.007122,2925928,2506362,0,0,5970,0,1,1 +1773525424.661161,1.56,4,3992.50,63.79,1186.28,2497.57,0.00,250.955479,904.229382,51109,511108,0.003878,0.007132,2926028,2506503,0,0,5973,0,1,1 +1773525429.661280,2.11,4,3992.50,63.69,1186.61,2493.68,0.00,3518353267054.839355,3518353266403.058105,11,0,0.003891,0.007122,2926129,2506643,0,0,5975,0,1,1 +1773525434.663907,1.61,4,3992.50,63.70,1186.41,2493.87,0.00,0.176860,0.000000,199,0,0.003426,0.005870,2926216,2506761,0,0,5978,0,1,1 +1773525439.661188,1.71,4,3992.50,63.73,1185.27,2495.00,0.00,3520351489422.323730,0.000000,11,0,0.003261,0.006889,2926304,2506894,0,0,5980,0,1,1 +1773525444.665733,1.71,4,3992.50,63.72,1185.48,2494.80,0.00,1.490540,0.022050,221,21,0.003862,0.007126,2926403,2507035,0,0,5983,0,1,1 +1773525449.666590,5.58,4,3992.50,63.25,1203.74,2476.52,0.00,0.000000,0.000000,221,21,2.021303,0.017620,2927133,2507643,0,0,5985,0,1,1 +1773525454.664834,23.27,4,3992.50,63.98,1175.28,2504.91,0.00,251.065023,905.201087,51140,512215,34.209024,0.149911,2937062,2515616,0,0,5988,0,1,1 +1773525459.665738,4.48,4,3992.50,63.70,1186.52,2493.90,0.00,3517801483507.156738,3517801482854.837891,11,0,4.027688,0.025606,2938388,2516688,0,0,5990,0,1,1 +1773525464.661625,1.91,4,3992.50,63.49,1194.50,2485.67,0.00,2.010443,0.000195,238,2,0.003881,0.007113,2938488,2516827,0,0,5993,0,1,1 +1773525469.661095,1.96,4,3992.50,63.50,1194.04,2486.14,0.00,3518810461072.244629,0.021877,221,21,0.003429,0.006533,2938575,2516950,0,0,5995,0,1,1 +1773525474.661688,1.56,4,3992.50,63.48,1194.63,2485.55,0.00,3518019550304.350098,3518019550305.769531,70,0,0.003878,0.007131,2938675,2517091,0,0,5998,0,1,1 +1773525479.662266,1.71,4,3992.50,63.50,1193.93,2486.24,0.00,0.126938,0.000000,199,0,0.003878,0.007122,2938775,2517231,0,0,6000,0,1,1 +1773525484.665664,1.81,4,3992.50,63.51,1193.71,2486.47,0.00,252.120460,905.134396,51140,512828,0.003875,0.007127,2938875,2517372,0,0,6003,0,1,1 +1773525489.664987,1.96,4,3992.50,63.55,1188.27,2488.00,0.00,3518913209205.586426,3518913208552.040527,199,0,0.003408,0.005856,2938960,2517488,0,0,6005,0,1,1 +1773525494.665576,2.11,4,3992.50,63.53,1188.83,2487.35,0.00,256.322454,905.784748,51898,512922,0.003878,0.007119,2939060,2517628,0,0,6008,0,1,1 +1773525499.665179,1.66,4,3992.50,63.53,1188.84,2487.33,0.00,3518716758005.890625,3518716757356.300293,199,0,0.003878,0.007123,2939160,2517768,0,0,6010,0,1,1 +1773525504.664802,1.76,4,3992.50,63.53,1188.85,2487.32,0.00,3518702428967.435059,0.000000,70,0,0.003886,0.007141,2939261,2517910,0,0,6013,0,1,1 +1773525509.665281,1.71,4,3992.50,63.53,1188.87,2487.30,0.00,3518100041914.953125,0.000000,11,0,0.002962,0.004562,2939333,2518000,0,0,6015,0,1,1 +1773525514.665906,1.96,4,3992.50,63.53,1188.89,2487.29,0.00,256.497524,905.890463,51898,513050,0.003420,0.005890,2939419,2518119,0,0,6018,0,1,1 +1773525519.661671,10.41,4,3992.50,63.51,1188.93,2486.73,0.00,3521419881803.242676,0.218642,51147,513316,8.068516,0.047107,2941930,2520097,0,0,6020,0,1,1 +1773525524.661625,22.18,4,3992.50,64.04,1168.44,2507.15,0.00,3518469701698.597656,3518469701044.666504,199,0,32.179129,0.135720,2950939,2527243,0,0,6023,0,1,1 +1773525529.661217,1.96,4,3992.50,63.82,1177.00,2498.62,0.00,1.831986,0.000195,238,2,0.005237,0.008709,2951071,2527418,0,0,6025,0,1,1 +1773525534.665357,1.91,4,3992.50,63.74,1180.02,2495.58,0.00,0.000000,0.000000,238,2,0.003875,0.007287,2951171,2527560,0,0,6028,0,1,1 +1773525539.665380,1.76,4,3992.50,63.54,1187.71,2487.91,0.00,3518420661045.188477,3518420661047.146973,70,0,0.003886,0.007613,2951272,2527704,0,0,6030,0,1,1 +1773525544.665763,1.71,4,3992.50,63.56,1187.26,2488.36,0.00,3518167953638.787598,0.000000,11,0,0.004560,0.008028,2951376,2527845,0,0,6033,0,1,1 +1773525549.666070,2.06,4,3992.50,63.65,1183.59,2492.02,0.00,0.000000,0.000000,11,0,0.003420,0.005880,2951462,2527963,0,0,6035,0,1,1 +1773525554.664533,1.96,4,3992.50,63.57,1186.88,2488.74,0.00,0.000000,0.000000,11,0,0.003879,0.007167,2951562,2528105,0,0,6038,0,1,1 +1773525559.665979,1.56,4,3992.50,63.56,1187.05,2488.57,0.00,0.176902,0.000000,199,0,0.003877,0.007120,2951662,2528245,0,0,6040,0,1,1 +1773525564.665561,1.81,4,3992.50,63.57,1186.87,2488.75,0.00,1.831989,0.000195,238,2,0.004003,0.007245,2951771,2528394,0,0,6043,0,1,1 +1773525569.666003,1.86,4,3992.50,63.57,1186.88,2488.74,0.00,250.465158,907.219587,51175,514332,0.003428,0.005863,2951858,2528511,0,0,6045,0,1,1 +1773525574.665917,1.86,4,3992.50,63.38,1194.06,2481.56,0.00,3518497593086.396484,3518497592431.581055,11,0,0.003878,0.007132,2951958,2528652,0,0,6048,0,1,1 +1773525579.665490,2.26,4,3992.50,63.43,1196.59,2483.48,0.00,1.492022,0.022072,221,21,0.004800,0.007768,2952060,2528793,0,0,6050,0,1,1 +1773525584.665400,1.76,4,3992.50,63.07,1210.53,2469.37,0.00,3518500175960.856934,3518500175962.327148,11,0,0.003878,0.007120,2952160,2528933,0,0,6053,0,1,1 +1773525589.665807,16.02,4,3992.50,63.59,1190.08,2489.79,0.00,0.000000,0.000000,11,0,18.104635,0.080859,2957153,2532892,0,0,6055,0,1,1 +1773525594.664399,15.78,4,3992.50,63.64,1188.34,2491.45,0.00,0.177003,0.000000,199,0,22.136678,0.097796,2963480,2537901,0,0,6058,0,1,1 +1773525599.664634,1.96,4,3992.50,63.57,1190.77,2489.06,0.00,0.000000,0.000000,199,0,0.003420,0.006016,2963566,2538018,0,0,6060,0,1,1 +1773525604.665344,2.36,4,3992.50,63.64,1188.02,2491.82,0.00,3517938175984.594727,0.000000,11,0,0.003877,0.007614,2963666,2538162,0,0,6063,0,1,1 +1773525609.661279,1.91,4,3992.50,64.04,1174.75,2507.20,0.00,0.000000,0.000000,11,0,0.003889,0.007136,2963767,2538303,0,0,6065,0,1,1 +1773525614.665019,2.11,4,3992.50,64.03,1174.90,2507.01,0.00,0.000000,0.000000,11,0,0.003875,0.007127,2963867,2538444,0,0,6068,0,1,1 +1773525619.665578,1.96,4,3992.50,64.03,1175.06,2506.88,0.00,0.049994,0.000000,70,0,0.003624,0.006475,2963958,2538571,0,0,6070,0,1,1 +1773525624.661211,2.06,4,3992.50,64.03,1174.86,2507.09,0.00,3521512780527.135254,0.000000,11,0,0.003665,0.006517,2964052,2538701,0,0,6073,0,1,1 +1773525629.661988,1.86,4,3992.50,64.04,1174.57,2507.36,0.00,2.008477,0.000195,238,2,0.003877,0.007121,2964152,2538841,0,0,6075,0,1,1 +1773525634.664394,2.01,4,3992.50,63.70,1188.03,2493.92,0.00,3516745392702.935547,0.021864,221,21,0.003872,0.007137,2964252,2538983,0,0,6078,0,1,1 +1773525639.665576,2.21,4,3992.50,64.35,1165.09,2519.39,0.00,3517605914885.177246,3517605914886.470215,199,0,0.003877,0.007121,2964352,2539123,0,0,6080,0,1,1 +1773525644.664399,2.16,4,3992.50,64.09,1172.98,2509.11,0.00,254.989287,909.241451,54513,516111,0.003421,0.005854,2964438,2539239,0,0,6083,0,1,1 +1773525649.662093,1.86,4,3992.50,64.10,1172.52,2509.56,0.00,3520060784568.126465,3520060783913.853516,70,0,0.003880,0.007126,2964538,2539379,0,0,6085,0,1,1 +1773525654.662196,1.81,4,3992.50,63.90,1180.16,2501.91,0.00,0.000000,0.000000,70,0,0.003886,0.007140,2964639,2539521,0,0,6088,0,1,1 +1773525659.665564,18.12,4,3992.50,64.20,1168.28,2513.63,0.00,3516069316924.164551,0.000000,11,0,24.125188,0.107398,2971645,2544943,0,0,6090,0,1,1 +1773525664.661184,13.52,4,3992.50,63.77,1185.02,2496.86,0.00,0.000000,0.000000,11,0,16.103107,0.066232,2976114,2548472,0,0,6093,0,1,1 +1773525669.665751,2.61,4,3992.50,64.00,1176.35,2505.57,0.00,258.931350,908.917405,55272,517151,0.011272,0.011195,2976347,2548703,0,0,6095,0,1,1 +1773525674.665412,2.01,4,3992.50,63.91,1179.63,2502.20,0.00,3518676097877.934082,3518676097227.310059,11,0,0.003420,0.005865,2976433,2548820,0,0,6098,0,1,1 +1773525679.666088,1.76,4,3992.50,63.92,1179.41,2502.42,0.00,0.049993,0.000000,70,0,0.003886,0.007129,2976534,2548961,0,0,6100,0,1,1 +1773525684.665952,2.21,4,3992.50,63.82,1183.11,2498.72,0.00,255.063929,910.231062,54514,517425,0.003878,0.007133,2976634,2549102,0,0,6103,0,1,1 +1773525689.665692,2.01,4,3992.50,63.45,1197.77,2484.07,0.00,3518620310591.815430,3518620309936.682129,11,0,0.003878,0.007110,2976734,2549241,0,0,6105,0,1,1 +1773525694.665262,1.91,4,3992.50,63.42,1198.65,2483.19,0.00,0.050004,0.000000,70,0,0.003878,0.007108,2976834,2549380,0,0,6108,0,1,1 +1773525699.665451,2.21,4,3992.50,63.48,1199.26,2485.57,0.00,0.000000,0.000000,70,0,0.003420,0.005868,2976920,2549497,0,0,6110,0,1,1 +1773525704.665297,1.81,4,3992.50,63.30,1205.88,2478.40,0.00,3518545799651.037109,0.000000,11,0,0.003874,0.007128,2977020,2549638,0,0,6113,0,1,1 +1773525709.665286,2.11,4,3992.50,63.31,1205.66,2478.62,0.00,0.000000,0.000000,11,0,0.003878,0.007122,2977120,2549778,0,0,6115,0,1,1 +1773525714.665149,1.81,4,3992.50,63.25,1207.76,2476.51,0.00,259.174960,910.659186,55272,517832,0.003878,0.007133,2977220,2549919,0,0,6118,0,1,1 +1773525719.661274,1.96,4,3992.50,63.30,1206.07,2478.21,0.00,3521166085579.494141,3521166084927.522461,11,0,0.003423,0.005860,2977306,2550035,0,0,6120,0,1,1 +1773525724.665269,1.86,4,3992.50,63.30,1206.09,2478.19,0.00,0.000000,0.000000,11,0,0.003875,0.007114,2977406,2550175,0,0,6123,0,1,1 +1773525729.662022,3.27,4,3992.50,63.77,1190.30,2496.86,0.00,0.050032,0.000000,70,0,0.008041,0.008920,2977576,2550360,0,0,6125,0,1,1 +1773525734.663573,22.93,4,3992.50,63.91,1182.16,2502.02,0.00,0.126914,0.000000,199,0,30.165821,0.132539,2986218,2557241,0,0,6128,0,1,1 +1773525739.665435,8.20,4,3992.50,63.76,1186.64,2496.45,0.00,3517127563525.787598,0.000000,11,0,10.058745,0.046656,2989213,2559580,0,0,6130,0,1,1 +1773525744.661188,2.41,4,3992.50,63.23,1207.51,2475.59,0.00,259.388193,912.210075,55272,518975,0.003856,0.007126,2989311,2559720,0,0,6133,0,1,1 +1773525749.665366,2.11,4,3992.50,63.17,1209.96,2473.14,0.00,3515499587561.773926,3515499586910.051270,11,0,0.003417,0.005850,2989397,2559836,0,0,6135,0,1,1 +1773525754.665815,1.86,4,3992.50,63.21,1208.30,2474.79,0.00,259.144587,911.486950,55272,519118,0.003886,0.007140,2989498,2559978,0,0,6138,0,1,1 +1773525759.666093,2.26,4,3992.50,63.92,1180.61,2502.76,0.00,3518241591128.430664,0.222546,54514,519129,0.003878,0.007122,2989598,2560118,0,0,6140,0,1,1 +1773525764.665272,1.61,4,3992.50,63.87,1182.31,2500.74,0.00,3519015323022.455078,3519015322365.612793,70,0,0.003703,0.006988,2989695,2560257,0,0,6143,0,1,1 +1773525769.662670,1.81,4,3992.50,63.59,1193.25,2489.80,0.00,0.127019,0.000000,199,0,0.003880,0.007101,2989795,2560395,0,0,6145,0,1,1 +1773525774.661638,1.86,4,3992.50,63.62,1192.07,2490.99,0.00,3519163866953.254883,0.000000,11,0,0.003421,0.005879,2989881,2560513,0,0,6148,0,1,1 +1773525779.665343,1.61,4,3992.50,63.66,1190.71,2492.34,0.00,0.176822,0.000000,199,0,0.003871,0.007125,2989981,2560654,0,0,6150,0,1,1 +1773525784.665900,1.61,4,3992.50,63.66,1190.76,2492.29,0.00,0.000000,0.000000,199,0,0.003878,0.007119,2990081,2560794,0,0,6153,0,1,1 +1773525789.661983,2.11,4,3992.50,63.52,1196.19,2487.09,0.00,259.194003,912.819220,55272,519380,0.003881,0.007128,2990181,2560934,0,0,6155,0,1,1 +1773525794.665482,2.01,4,3992.50,63.22,1207.70,2475.24,0.00,3515976921353.199707,3515976920700.720215,11,0,0.003418,0.005861,2990267,2561051,0,0,6158,0,1,1 +1773525799.664688,1.81,4,3992.50,63.26,1206.27,2476.67,0.00,0.000000,0.000000,11,0,0.003891,0.007768,2990368,2561195,0,0,6160,0,1,1 +1773525804.665554,6.48,4,3992.50,63.61,1192.53,2490.41,0.00,0.000000,0.000000,11,0,4.026845,0.024512,2991527,2562141,0,0,6163,0,1,1 +1773525809.661443,21.69,4,3992.50,64.32,1164.60,2518.28,0.00,0.000000,0.000000,11,0,32.205822,0.134822,3000551,2569173,0,0,6165,0,1,1 +1773525814.665324,5.67,4,3992.50,63.89,1181.33,2501.53,0.00,0.000000,0.000000,11,0,4.028933,0.023357,3001830,2570169,0,0,6168,0,1,1 +1773525819.661188,2.51,4,3992.50,63.98,1179.18,2505.01,0.00,1.493130,0.022089,221,21,0.008162,0.010818,3001993,2570362,0,0,6170,0,1,1 +1773525824.661275,1.96,4,3992.50,63.21,1209.31,2474.88,0.00,3518376167166.233398,3518376167167.703613,11,0,0.003720,0.006420,3002085,2570490,0,0,6173,0,1,1 +1773525829.661223,1.61,4,3992.50,63.23,1208.75,2475.44,0.00,0.050001,0.000000,70,0,0.004083,0.007663,3002192,2570642,0,0,6175,0,1,1 +1773525834.661283,1.71,4,3992.50,63.26,1207.56,2476.62,0.00,0.126952,0.000000,199,0,0.003878,0.007132,3002292,2570783,0,0,6178,0,1,1 +1773525839.662265,2.01,4,3992.50,63.08,1214.57,2469.63,0.00,258.941629,913.375807,55274,520864,0.003877,0.007121,3002392,2570923,0,0,6180,0,1,1 +1773525844.661210,1.66,4,3992.50,63.13,1212.66,2471.54,0.00,3519179496487.670410,3519179495831.676270,221,21,0.004549,0.008043,3002495,2571065,0,0,6183,0,1,1 +1773525849.661894,1.86,4,3992.50,63.41,1199.93,2482.67,0.00,3517956553995.742188,3517956553997.162109,70,0,0.003420,0.005867,3002581,2571182,0,0,6185,0,1,1 +1773525854.661975,1.81,4,3992.50,63.41,1199.94,2482.67,0.00,3518379589787.959961,0.000000,11,0,0.003886,0.007140,3002682,2571324,0,0,6188,0,1,1 +1773525859.665936,2.06,4,3992.50,63.38,1201.27,2481.33,0.00,254.906657,913.150236,54516,521192,0.003875,0.007117,3002782,2571464,0,0,6190,0,1,1 +1773525864.663111,1.61,4,3992.50,63.21,1207.99,2474.62,0.00,3520426262844.395508,3520426262185.081055,199,0,0.003993,0.007893,3002890,2571617,0,0,6193,0,1,1 +1773525869.664007,1.61,4,3992.50,63.07,1213.15,2469.46,0.00,3517806829859.655273,0.000000,11,0,0.003420,0.005854,3002976,2571733,0,0,6195,0,1,1 +1773525874.664737,1.76,4,3992.50,63.03,1214.78,2467.83,0.00,0.176927,0.000000,199,0,0.003877,0.007131,3003076,2571874,0,0,6198,0,1,1 +1773525879.661169,11.81,4,3992.50,64.60,1155.34,2529.36,0.00,3520950379465.315918,0.000000,70,0,10.071293,0.050026,3006023,2574248,0,0,6200,0,1,1 +1773525884.665115,21.34,4,3992.50,64.77,1146.64,2535.78,0.00,0.126853,0.000000,199,0,30.146551,0.127758,3014350,2580878,0,0,6203,0,1,1 +1773525889.661203,1.96,4,3992.50,64.52,1156.39,2526.05,0.00,1.315971,0.022088,221,21,0.006583,0.008454,3014500,2581051,0,0,6205,0,1,1 +1773525894.665907,1.71,4,3992.50,64.04,1175.09,2507.34,0.00,3515130052202.121094,3515130052203.539551,70,0,0.003874,0.007126,3014600,2581192,0,0,6208,0,1,1 +1773525899.662920,1.71,4,3992.50,64.02,1176.00,2506.43,0.00,0.127029,0.000000,199,0,0.003888,0.007135,3014701,2581333,0,0,6210,0,1,1 +1773525904.665297,1.91,4,3992.50,64.02,1175.82,2506.61,0.00,258.869425,914.616987,55274,522603,0.003419,0.005862,3014787,2581450,0,0,6213,0,1,1 +1773525909.665644,2.01,4,3992.50,64.17,1167.91,2512.50,0.00,3518193198002.211914,3518193197346.198242,199,0,0.003407,0.005842,3014872,2581565,0,0,6215,0,1,1 +1773525914.665670,1.91,4,3992.50,64.17,1167.85,2512.27,0.00,258.991926,915.515005,55275,522910,0.003878,0.007132,3014972,2581706,0,0,6218,0,1,1 +1773525919.666065,1.61,4,3992.50,64.17,1167.60,2512.51,0.00,3518159077042.043945,3518159076383.737793,238,2,0.003878,0.007122,3015072,2581846,0,0,6220,0,1,1 +1773525924.661981,1.96,4,3992.50,64.17,1167.63,2512.48,0.00,3521313239356.698242,3521313239358.658203,70,0,0.003423,0.005870,3015158,2581963,0,0,6223,0,1,1 +1773525929.665375,1.71,4,3992.50,64.18,1167.43,2512.69,0.00,1.957460,0.000195,238,2,0.003863,0.007761,3015257,2582107,0,0,6225,0,1,1 +1773525934.665416,1.66,4,3992.50,64.18,1167.45,2512.67,0.00,3518408620403.963867,3518408620405.795898,199,0,0.003272,0.006895,3015346,2582241,0,0,6228,0,1,1 +1773525939.665640,1.91,4,3992.50,64.57,1154.22,2528.12,0.00,258.981650,915.686094,55275,523068,0.003702,0.006976,3015443,2582379,0,0,6230,0,1,1 +1773525944.663562,2.01,4,3992.50,64.33,1161.53,2518.60,0.00,3519900217134.536621,3519900216477.529297,199,0,0.003875,0.007118,3015543,2582519,0,0,6233,0,1,1 +1773525949.664594,15.79,4,3992.50,63.98,1175.18,2504.89,0.00,254.879796,915.683396,54517,523460,18.183981,0.082414,3020738,2586548,0,0,6235,0,1,1 +1773525954.664288,16.68,4,3992.50,63.74,1184.63,2495.38,0.00,3518652821822.792480,3518652821159.980469,238,2,22.052051,0.096515,3027116,2591590,0,0,6238,0,1,1 +1773525959.666126,1.81,4,3992.50,63.55,1192.07,2487.96,0.00,3517143848870.217773,3517143848872.225586,11,0,0.003660,0.006474,3027210,2591717,0,0,6240,0,1,1 +1773525964.665459,1.76,4,3992.50,63.55,1192.09,2487.94,0.00,0.000000,0.000000,11,0,0.003637,0.006512,3027302,2591847,0,0,6243,0,1,1 +1773525969.665379,2.16,4,3992.50,63.59,1196.81,2489.68,0.00,1.491918,0.022071,221,21,0.003878,0.007123,3027402,2591987,0,0,6245,0,1,1 +1773525974.663019,1.86,4,3992.50,63.59,1196.54,2489.81,0.00,3520098382029.319824,3520098382030.740723,70,0,0.003867,0.007136,3027501,2592128,0,0,6248,0,1,1 +1773525979.665314,1.81,4,3992.50,63.60,1196.32,2490.04,0.00,259.001345,916.492945,55275,524402,0.003876,0.007119,3027601,2592268,0,0,6250,0,1,1 +1773525984.665640,1.71,4,3992.50,63.39,1204.48,2481.88,0.00,3518208065621.840820,3518208064964.090332,70,0,0.003428,0.005873,3027688,2592386,0,0,6253,0,1,1 +1773525989.666096,2.06,4,3992.50,63.46,1201.70,2484.65,0.00,0.000000,0.000000,70,0,0.003903,0.007122,3027790,2592526,0,0,6255,0,1,1 +1773525994.665354,1.81,4,3992.50,63.46,1201.58,2484.76,0.00,1.959080,0.000195,238,2,0.003866,0.007777,3027889,2592671,0,0,6258,0,1,1 +1773525999.661183,2.01,4,3992.50,63.58,1199.48,2489.18,0.00,257.376149,917.855199,55275,524547,0.003869,0.007128,3027988,2592811,0,0,6260,0,1,1 +1773526004.666006,1.66,4,3992.50,63.60,1196.36,2489.99,0.00,0.000000,0.208002,55275,524784,0.002960,0.004593,3028060,2592904,0,0,6263,0,1,1 +1773526009.663560,2.26,4,3992.50,63.60,1196.37,2489.97,0.00,0.000000,0.029214,55275,524820,0.003880,0.007126,3028160,2593044,0,0,6265,0,1,1 +1773526014.666096,1.76,4,3992.50,63.58,1197.15,2489.20,0.00,3516652995342.337891,3516652994682.507324,238,2,0.003889,0.007129,3028261,2593185,0,0,6268,0,1,1 +1773526019.665536,19.70,4,3992.50,64.89,1145.78,2540.50,0.00,0.000000,0.000000,238,2,24.160546,0.107096,3035073,2598550,0,0,6270,0,1,1 +1773526024.664913,13.03,4,3992.50,63.28,1208.81,2477.43,0.00,253.132170,917.813738,54517,525742,16.077883,0.070987,3039558,2602149,0,0,6273,0,1,1 +1773526029.665179,2.11,4,3992.50,63.26,1201.25,2476.89,0.00,3518249549420.516113,3518249548756.491699,221,21,0.003890,0.007122,3039659,2602289,0,0,6275,0,1,1 +1773526034.664152,1.96,4,3992.50,63.22,1202.82,2475.31,0.00,3519160140095.639648,3519160140097.109863,11,0,0.003854,0.007134,3039757,2602430,0,0,6278,0,1,1 +1773526039.664819,1.66,4,3992.50,63.26,1201.44,2476.69,0.00,0.049993,0.000000,70,0,0.003420,0.005842,3039843,2602545,0,0,6280,0,1,1 +1773526044.665183,1.66,4,3992.50,63.26,1201.46,2476.67,0.00,1.958647,0.000195,238,2,0.003890,0.007132,3039944,2602686,0,0,6283,0,1,1 +1773526049.665226,1.76,4,3992.50,63.26,1201.26,2476.88,0.00,253.098406,918.482323,54517,526139,0.003878,0.007122,3040044,2602826,0,0,6285,0,1,1 +1773526054.664843,2.01,4,3992.50,63.31,1199.55,2478.58,0.00,0.000000,0.073736,54517,526185,0.003878,0.007133,3040144,2602967,0,0,6288,0,1,1 +1773526059.665634,2.01,4,3992.50,63.76,1183.80,2496.35,0.00,3517880977472.193848,3517880976806.835449,238,2,0.003432,0.006498,3040231,2603087,0,0,6290,0,1,1 +1773526064.663574,1.81,4,3992.50,63.54,1190.25,2487.88,0.00,257.267391,919.205952,55275,526465,0.003875,0.007143,3040331,2603229,0,0,6293,0,1,1 +1773526069.664230,1.66,4,3992.50,63.45,1193.78,2484.36,0.00,3517975795845.305176,3517975795184.264160,221,21,0.003878,0.007109,3040431,2603368,0,0,6295,0,1,1 +1773526074.661276,1.86,4,3992.50,63.47,1193.07,2485.07,0.00,257.830672,919.418966,55275,526543,0.003880,0.007137,3040531,2603509,0,0,6298,0,1,1 +1773526079.665856,1.66,4,3992.50,63.45,1193.94,2484.19,0.00,3515216856593.937500,3515216855934.764160,70,0,0.003874,0.007091,3040631,2603647,0,0,6300,0,1,1 +1773526084.665663,2.51,4,3992.50,63.09,1208.14,2469.96,0.00,255.069237,918.977915,54517,526614,0.007595,0.007699,3040788,2603812,0,0,6303,0,1,1 +1773526089.664551,21.25,4,3992.50,64.13,1166.38,2510.76,0.00,4.061743,0.597105,55275,527421,28.171367,0.125456,3048820,2610173,0,0,6305,0,1,1 +1773526094.665568,9.11,4,3992.50,63.80,1178.97,2498.05,0.00,3517721345294.869629,3517721344634.584961,70,0,12.068438,0.053295,3052241,2612928,0,0,6308,0,1,1 +1773526099.665737,2.16,4,3992.50,63.83,1177.83,2499.22,0.00,0.126949,0.000000,199,0,0.003878,0.007122,3052341,2613068,0,0,6310,0,1,1 +1773526104.662311,1.76,4,3992.50,63.83,1177.85,2499.20,0.00,3520849682410.351562,0.000000,11,0,0.003881,0.007137,3052441,2613209,0,0,6313,0,1,1 +1773526109.666048,1.66,4,3992.50,63.84,1177.49,2499.55,0.00,258.976634,919.372648,55275,527865,0.003426,0.005859,3052528,2613326,0,0,6315,0,1,1 +1773526114.665575,1.56,4,3992.50,63.84,1177.51,2499.54,0.00,3518770422107.921875,3518770421446.969727,11,0,0.003878,0.007133,3052628,2613467,0,0,6318,0,1,1 +1773526119.666049,4.77,4,3992.50,63.99,1178.44,2505.27,0.00,0.176936,0.000000,199,0,0.006563,0.009217,3052786,2613655,0,0,6320,0,1,1 +1773526124.665985,1.71,4,3992.50,64.03,1176.44,2506.87,0.00,254.935733,920.453653,54517,528162,0.004178,0.008318,3052892,2613810,0,0,6323,0,1,1 +1773526129.661207,1.76,4,3992.50,64.04,1175.83,2507.49,0.00,3521802034791.514648,3521802034123.535645,238,2,0.004079,0.007637,3052998,2613959,0,0,6325,0,1,1 +1773526134.665660,1.76,4,3992.50,64.04,1175.84,2507.48,0.00,252.875414,919.679025,54517,528214,0.003405,0.005847,3053083,2614075,0,0,6328,0,1,1 +1773526139.661572,1.91,4,3992.50,64.04,1175.85,2507.45,0.00,3521315784276.544922,3521315783610.435059,199,0,0.003881,0.007128,3053183,2614215,0,0,6330,0,1,1 +1773526144.662333,1.61,4,3992.50,64.04,1175.87,2507.44,0.00,3517901942512.959961,0.000000,11,0,0.003865,0.007131,3053282,2614356,0,0,6333,0,1,1 +1773526149.664844,2.01,4,3992.50,64.38,1165.87,2520.44,0.00,1.491146,0.022059,221,21,0.004541,0.008036,3053385,2614498,0,0,6335,0,1,1 +1773526154.662191,1.61,4,3992.50,64.27,1170.12,2516.22,0.00,3520304741107.780273,3520304741109.250977,11,0,0.003422,0.005868,3053471,2614615,0,0,6338,0,1,1 +1773526159.664397,6.78,4,3992.50,64.42,1164.02,2522.30,0.00,2.007903,0.000195,238,2,4.230078,0.029269,3054887,2615771,0,0,6340,0,1,1 +1773526164.663497,19.90,4,3992.50,64.04,1178.84,2507.41,0.00,257.207731,921.513166,55275,529288,31.980812,0.133356,3063833,2622924,0,0,6343,0,1,1 +1773526169.664076,5.19,4,3992.50,63.55,1198.17,2488.08,0.00,3518029722532.437500,0.008007,54517,529353,4.029851,0.019510,3065042,2623805,0,0,6345,0,1,1 +1773526174.664674,2.11,4,3992.50,63.57,1197.50,2488.75,0.00,3518016289236.785645,3518016288570.569336,70,0,0.006379,0.008282,3065188,2623975,0,0,6348,0,1,1 +1773526179.665349,2.06,4,3992.50,63.95,1185.40,2503.65,0.00,1.441700,0.022067,221,21,0.003877,0.007121,3065288,2624115,0,0,6350,0,1,1 +1773526184.662359,1.86,4,3992.50,63.95,1185.36,2503.64,0.00,3520542204435.550293,3520542204436.970703,70,0,0.004345,0.006551,3065376,2624236,0,0,6353,0,1,1 +1773526189.665226,1.85,4,3992.50,63.95,1185.33,2503.67,0.00,1.441068,0.022058,221,21,0.003871,0.007770,3065476,2624381,0,0,6355,0,1,1 +1773526194.665815,1.56,4,3992.50,63.98,1184.11,2504.88,0.00,253.587657,921.728806,54517,529611,0.003878,0.007132,3065576,2624522,0,0,6358,0,1,1 +1773526199.661171,1.81,4,3992.50,63.98,1183.91,2505.09,0.00,0.000000,0.041054,54517,529654,0.003882,0.007129,3065676,2624662,0,0,6360,0,1,1 +1773526204.662108,1.91,4,3992.50,63.98,1183.99,2505.01,0.00,3517778508825.655762,3517778508156.981934,238,2,0.003420,0.005864,3065762,2624779,0,0,6363,0,1,1 +1773526209.661959,1.96,4,3992.50,64.09,1178.61,2509.18,0.00,3518541641308.406738,3518541641310.238770,199,0,0.003878,0.007123,3065862,2624919,0,0,6365,0,1,1 +1773526214.661758,1.81,4,3992.50,63.89,1186.51,2501.26,0.00,254.952051,922.292271,54526,530005,0.003878,0.007133,3065962,2625060,0,0,6368,0,1,1 +1773526219.663256,1.71,4,3992.50,63.89,1186.27,2501.52,0.00,3517383522929.735352,3517383522262.622070,199,0,0.003889,0.007120,3066063,2625200,0,0,6370,0,1,1 +1773526224.661161,1.61,4,3992.50,63.90,1186.07,2501.70,0.00,255.048653,922.708065,54526,530065,0.003867,0.007135,3066162,2625341,0,0,6373,0,1,1 +1773526229.661834,1.96,4,3992.50,63.90,1186.10,2501.69,0.00,3517963857444.355957,3517963856777.243164,11,0,0.003432,0.005842,3066249,2625456,0,0,6375,0,1,1 +1773526234.665573,11.85,4,3992.50,64.34,1168.75,2519.00,0.00,258.985904,921.730691,55284,530283,8.054602,0.045352,3068816,2627495,0,0,6378,0,1,1 +1773526239.665814,19.64,4,3992.50,64.05,1180.18,2507.51,0.00,3518267582391.079590,3518267581725.862305,238,2,32.165483,0.132618,3077787,2634667,0,0,6380,0,1,1 +1773526244.665339,3.12,4,3992.50,63.56,1195.12,2488.41,0.00,257.206168,923.082402,55287,530840,0.019749,0.014838,3078175,2635012,0,0,6383,0,1,1 +1773526249.665277,2.06,4,3992.50,63.55,1195.36,2488.18,0.00,3518480992601.531250,3518480991937.668945,70,0,0.003878,0.007123,3078275,2635152,0,0,6385,0,1,1 +1773526254.664944,1.56,4,3992.50,63.55,1195.38,2488.16,0.00,259.157788,923.657417,55287,531365,0.003408,0.006509,3078360,2635273,0,0,6388,0,1,1 +1773526259.665241,1.81,4,3992.50,63.55,1195.39,2488.14,0.00,3518228686026.380859,3518228685360.005859,238,2,0.003878,0.007122,3078460,2635413,0,0,6390,0,1,1 +1773526264.661544,1.76,4,3992.50,63.55,1195.41,2488.13,0.00,3521040201933.452637,3521040201935.412598,70,0,0.003881,0.007125,3078560,2635553,0,0,6393,0,1,1 +1773526269.662477,2.21,4,3992.50,63.71,1185.79,2494.29,0.00,0.126929,0.000000,199,0,0.003902,0.007121,3078662,2635693,0,0,6395,0,1,1 +1773526274.662678,1.66,4,3992.50,63.71,1185.80,2494.27,0.00,254.942454,923.697907,54529,531402,0.003408,0.005865,3078747,2635810,0,0,6398,0,1,1 +1773526279.663881,1.61,4,3992.50,63.71,1185.84,2494.25,0.00,4.059863,0.035929,55287,531437,0.003877,0.007121,3078847,2635950,0,0,6400,0,1,1 +1773526284.665330,1.71,4,3992.50,63.71,1185.85,2494.24,0.00,3517417509288.066895,3517417508623.679199,11,0,0.003885,0.007138,3078948,2636092,0,0,6403,0,1,1 +1773526289.664649,1.61,4,3992.50,63.71,1185.86,2494.22,0.00,2.009063,0.000195,238,2,0.003866,0.007123,3079047,2636232,0,0,6405,0,1,1 +1773526294.665294,2.56,4,3992.50,63.70,1185.90,2494.18,0.00,257.153245,923.718897,55290,531516,0.003420,0.005864,3079133,2636349,0,0,6408,0,1,1 +1773526299.665574,1.96,4,3992.50,63.70,1186.39,2494.14,0.00,3518240435802.508789,0.020995,54532,531514,0.003878,0.007122,3079233,2636489,0,0,6410,0,1,1 +1773526304.665295,1.66,4,3992.50,63.72,1185.80,2494.61,0.00,3518633630016.920410,3518633629348.158203,11,0,0.003878,0.007133,3079333,2636630,0,0,6413,0,1,1 +1773526309.661624,15.44,4,3992.50,64.15,1168.81,2511.55,0.00,255.321812,924.683909,54532,531901,14.110123,0.072575,3083580,2639950,0,0,6415,0,1,1 +1773526314.664076,16.13,4,3992.50,64.24,1165.30,2514.96,0.00,3516712659865.625977,3516712659195.075684,238,2,26.126171,0.108756,3090928,2645785,0,0,6418,0,1,1 +1773526319.661721,1.86,4,3992.50,64.04,1173.12,2507.14,0.00,3520095225125.666016,3520095225127.625488,70,0,0.003855,0.007770,3091026,2645929,0,0,6420,0,1,1 +1773526324.663855,1.71,4,3992.50,64.01,1174.19,2506.08,0.00,1.441279,0.022061,221,21,0.003851,0.007117,3091124,2646069,0,0,6423,0,1,1 +1773526329.662002,1.86,4,3992.50,64.07,1179.38,2508.49,0.00,3519741634987.087891,3519741634988.381348,199,0,0.003422,0.005857,3091210,2646185,0,0,6425,0,1,1 +1773526334.663135,1.81,4,3992.50,64.07,1178.74,2508.59,0.00,258.959571,924.791090,55290,532822,0.003885,0.007139,3091311,2646327,0,0,6428,0,1,1 +1773526339.663851,1.86,4,3992.50,64.06,1179.22,2508.11,0.00,3517933615021.850098,3517933614354.131836,238,2,0.003865,0.007121,3091410,2646467,0,0,6430,0,1,1 +1773526344.664558,1.61,4,3992.50,64.06,1179.23,2508.10,0.00,3517939401459.012207,3517939401461.020508,11,0,0.003420,0.005864,3091496,2646584,0,0,6433,0,1,1 +1773526349.665165,1.76,4,3992.50,64.07,1179.04,2508.30,0.00,0.000000,0.000000,11,0,0.003420,0.005854,3091582,2646700,0,0,6435,0,1,1 +1773526354.661279,1.66,4,3992.50,64.07,1178.77,2508.55,0.00,255.332824,925.888463,54532,532935,0.003881,0.007138,3091682,2646841,0,0,6438,0,1,1 +1773526359.663909,2.31,4,3992.50,64.46,1163.18,2523.76,0.00,3516587260777.264160,3516587260107.582031,11,0,0.003876,0.007119,3091782,2646981,0,0,6440,0,1,1 +1773526364.663731,1.76,4,3992.50,64.46,1163.20,2523.73,0.00,2.008861,0.000195,238,2,0.003878,0.007133,3091882,2647122,0,0,6443,0,1,1 +1773526369.665570,1.81,4,3992.50,64.47,1162.96,2523.99,0.00,253.032473,925.145886,54532,533272,0.003877,0.007120,3091982,2647262,0,0,6445,0,1,1 +1773526374.665433,1.61,4,3992.50,64.46,1163.23,2523.73,0.00,3518534169579.892090,3518534168907.513184,238,2,0.003420,0.005865,3092068,2647379,0,0,6448,0,1,1 +1773526379.663472,21.84,4,3992.50,64.45,1163.41,2523.46,0.00,3519817279255.158691,3519817279256.991699,199,0,26.162971,0.114977,3099388,2653221,0,0,6450,0,1,1 +1773526384.663243,10.04,4,3992.50,64.28,1170.25,2516.61,0.00,1.831920,0.000195,238,2,14.083811,0.064928,3103387,2656437,0,0,6453,0,1,1 +1773526389.665883,2.01,4,3992.50,64.19,1170.66,2512.98,0.00,3516580300457.824219,0.021863,221,21,0.003876,0.007119,3103487,2656577,0,0,6455,0,1,1 +1773526394.662467,2.06,4,3992.50,64.20,1169.98,2513.69,0.00,3520842457619.142578,3520842457620.563477,70,0,0.003881,0.007137,3103587,2656718,0,0,6458,0,1,1 +1773526399.665868,1.96,4,3992.50,64.20,1170.00,2513.68,0.00,1.440915,0.022055,221,21,0.003875,0.007118,3103687,2656858,0,0,6460,0,1,1 +1773526404.665979,1.81,4,3992.50,64.20,1170.00,2513.66,0.00,253.636869,926.558699,54532,534577,0.003420,0.005852,3103773,2656974,0,0,6463,0,1,1 +1773526409.661287,1.66,4,3992.50,64.20,1170.03,2513.64,0.00,3521742008511.458984,3521742007839.361816,11,0,0.003869,0.007129,3103872,2657114,0,0,6465,0,1,1 +1773526414.664248,1.66,4,3992.50,64.20,1170.16,2513.50,0.00,0.049970,0.000000,70,0,0.003863,0.007128,3103971,2657255,0,0,6468,0,1,1 +1773526419.662137,2.41,4,3992.50,63.42,1200.29,2482.90,0.00,1.442504,0.022080,221,21,0.008171,0.010814,3104135,2657448,0,0,6470,0,1,1 +1773526424.665548,1.96,4,3992.50,63.40,1201.04,2482.19,0.00,0.516542,3516038320714.896484,238,2,0.003946,0.007023,3104234,2657586,0,0,6473,0,1,1 +1773526429.665890,1.56,4,3992.50,63.39,1201.52,2481.71,0.00,3518196485434.036133,3518196485435.994629,70,0,0.003841,0.007028,3104333,2657726,0,0,6475,0,1,1 +1773526434.665974,1.81,4,3992.50,63.39,1201.53,2481.70,0.00,3518378320377.850586,0.000000,11,0,0.003865,0.007132,3104432,2657867,0,0,6478,0,1,1 +1773526439.665547,1.61,4,3992.50,63.39,1201.54,2481.68,0.00,0.000000,0.000000,11,0,0.003878,0.007123,3104532,2658007,0,0,6480,0,1,1 +1773526444.665164,3.11,4,3992.50,63.15,1210.85,2472.36,0.00,255.153956,927.181605,54532,535064,0.008771,0.009854,3104719,2658209,0,0,6483,0,1,1 +1773526449.666014,18.48,4,3992.50,64.47,1158.90,2524.28,0.00,3517839154161.305664,3517839153489.393555,70,0,20.105621,0.085545,3110054,2662494,0,0,6485,0,1,1 +1773526454.664897,12.90,4,3992.50,64.52,1157.08,2526.03,0.00,3519223153470.791504,0.000000,11,0,20.125190,0.087643,3115879,2666966,0,0,6488,0,1,1 +1773526459.661198,1.76,4,3992.50,64.32,1164.96,2518.16,0.00,2.010277,0.000195,238,2,0.003881,0.007128,3115979,2667106,0,0,6490,0,1,1 +1773526464.661291,1.91,4,3992.50,64.29,1166.12,2517.00,0.00,257.208184,928.086767,55293,536297,0.003533,0.005978,3116073,2667231,0,0,6493,0,1,1 +1773526469.665817,1.76,4,3992.50,64.27,1167.00,2516.12,0.00,0.000000,0.006732,55293,536307,0.003887,0.007116,3116174,2667371,0,0,6495,0,1,1 +1773526474.666049,1.61,4,3992.50,64.28,1166.53,2516.58,0.00,0.000000,0.037791,55293,536353,0.003878,0.007119,3116274,2667511,0,0,6498,0,1,1 +1773526479.665753,2.11,4,3992.50,64.34,1157.31,2518.90,0.00,3518645891068.519043,3518645890398.082520,221,21,0.003886,0.007106,3116375,2667650,0,0,6500,0,1,1 +1773526484.665537,1.86,4,3992.50,64.34,1156.84,2519.22,0.00,0.000000,0.000000,221,21,0.004342,0.006535,3116463,2667770,0,0,6503,0,1,1 +1773526489.666054,1.91,4,3992.50,64.15,1164.45,2511.62,0.00,3518073722911.886719,3518073722913.356445,11,0,0.003890,0.007109,3116564,2667909,0,0,6505,0,1,1 +1773526494.665366,1.66,4,3992.50,64.16,1164.21,2511.85,0.00,0.000000,0.000000,11,0,0.003879,0.007133,3116664,2668050,0,0,6508,0,1,1 +1773526499.662556,1.71,4,3992.50,63.99,1170.62,2505.45,0.00,259.367520,929.217651,55293,536751,0.003880,0.007126,3116764,2668190,0,0,6510,0,1,1 +1773526504.666194,2.06,4,3992.50,64.00,1170.33,2505.74,0.00,3515879369114.625977,3515879368445.639160,11,0,0.003430,0.005861,3116851,2668307,0,0,6513,0,1,1 +1773526509.665297,2.31,4,3992.50,64.31,1156.12,2517.75,0.00,255.206716,928.972593,54535,536815,0.003879,0.007124,3116951,2668447,0,0,6515,0,1,1 +1773526514.664327,2.21,4,3992.50,63.32,1194.51,2478.93,0.00,0.000000,0.030768,54535,536855,0.003879,0.007617,3117051,2668591,0,0,6518,0,1,1 +1773526519.664569,15.14,4,3992.50,64.41,1151.71,2521.73,0.00,4.060644,0.151653,55293,537206,12.091323,0.065793,3120757,2671615,0,0,6520,0,1,1 +1773526524.664556,13.75,4,3992.50,64.06,1165.10,2508.24,0.00,3518445934371.387695,3518445933700.149414,221,21,20.186330,0.087574,3126577,2676260,0,0,6523,0,1,1 +1773526529.664233,6.02,4,3992.50,63.91,1171.05,2502.32,0.00,3518664475901.541992,3518664475903.012207,11,0,7.964868,0.034403,3128786,2678003,0,0,6525,0,1,1 +1773526534.664618,2.01,4,3992.50,63.91,1171.10,2502.28,0.00,2.008634,0.000195,238,2,0.003865,0.007132,3128885,2678144,0,0,6528,0,1,1 +1773526539.662743,2.11,4,3992.50,63.99,1169.60,2505.43,0.00,3519756876958.857422,3519756876960.689941,199,0,0.003422,0.005857,3128971,2678260,0,0,6530,0,1,1 +1773526544.663256,1.91,4,3992.50,63.80,1175.94,2497.94,0.00,3518076583517.572266,0.000000,70,0,0.003865,0.007132,3129070,2678401,0,0,6533,0,1,1 +1773526549.664334,1.96,4,3992.50,63.81,1175.71,2498.17,0.00,259.115900,929.829563,55293,538240,0.003246,0.006884,3129157,2678534,0,0,6535,0,1,1 +1773526554.664566,2.11,4,3992.50,63.77,1177.25,2496.64,0.00,3518273796319.775879,0.172551,54535,538355,0.003878,0.007132,3129257,2678675,0,0,6538,0,1,1 +1773526559.661804,1.91,4,3992.50,63.77,1177.00,2496.87,0.00,3520381697795.680664,3520381697120.088867,199,0,0.003422,0.005858,3129343,2678791,0,0,6540,0,1,1 +1773526564.662239,1.76,4,3992.50,63.77,1177.02,2496.85,0.00,259.022327,930.183858,55293,538398,0.003878,0.007132,3129443,2678932,0,0,6543,0,1,1 +1773526569.665780,2.21,4,3992.50,64.17,1161.73,2512.30,0.00,3515947202412.980469,0.030057,54535,538396,0.003875,0.007117,3129543,2679072,0,0,6545,0,1,1 +1773526574.664824,1.96,4,3992.50,63.72,1178.41,2494.93,0.00,3519109901969.884277,3519109901294.621582,11,0,0.003874,0.007142,3129643,2679214,0,0,6548,0,1,1 +1773526579.664095,1.90,4,3992.50,63.77,1176.73,2496.61,0.00,0.050007,0.000000,70,0,0.003408,0.006339,3129728,2679333,0,0,6550,0,1,1 +1773526584.664766,1.81,4,3992.50,63.65,1181.43,2491.92,0.00,1.958526,0.000195,238,2,0.003878,0.007292,3129828,2679475,0,0,6553,0,1,1 +1773526589.665282,1.96,4,3992.50,63.67,1180.45,2492.89,0.00,253.126006,930.345126,54535,538553,0.003865,0.007109,3129927,2679614,0,0,6555,0,1,1 +1773526594.668535,20.68,4,3992.50,64.62,1143.16,2530.14,0.00,3516149534933.820312,3516149534258.928711,70,0,24.126231,0.107478,3136775,2684993,0,0,6558,0,1,1 +1773526599.665249,11.74,4,3992.50,63.95,1170.94,2503.71,0.00,0.127037,0.000000,199,0,16.106570,0.072651,3141404,2688741,0,0,6560,0,1,1 +1773526604.661182,2.21,4,3992.50,63.95,1170.95,2503.70,0.00,259.255715,931.929561,55293,539542,0.003881,0.007138,3141504,2688882,0,0,6563,0,1,1 +1773526609.661186,1.81,4,3992.50,63.95,1170.86,2503.78,0.00,3518434604280.693359,3518434603606.735352,238,2,0.003408,0.005855,3141589,2688998,0,0,6565,0,1,1 +1773526614.663887,2.16,4,3992.50,63.95,1170.88,2503.76,0.00,3516537713761.295410,0.021863,221,21,0.003863,0.007128,3141688,2689139,0,0,6568,0,1,1 +1773526619.665191,2.72,4,3992.50,63.38,1193.19,2481.46,0.00,3517519472574.228027,3517519472575.697754,11,0,0.003877,0.007121,3141788,2689279,0,0,6570,0,1,1 +1773526624.661276,1.81,4,3992.50,63.44,1191.01,2483.64,0.00,255.360892,932.524429,54535,539905,0.003889,0.007146,3141889,2689421,0,0,6573,0,1,1 +1773526629.661203,2.26,4,3992.50,63.82,1175.88,2498.84,0.00,0.000000,0.155862,54535,540003,0.003420,0.005843,3141975,2689536,0,0,6575,0,1,1 +1773526634.665926,1.91,4,3992.50,63.45,1190.46,2484.19,0.00,3515117226104.507324,3515117225428.356934,11,0,0.003874,0.007126,3142075,2689677,0,0,6578,0,1,1 +1773526639.663177,2.01,4,3992.50,63.46,1190.19,2484.46,0.00,0.000000,0.000000,11,0,0.003880,0.007126,3142175,2689817,0,0,6580,0,1,1 +1773526644.666072,1.91,4,3992.50,63.46,1189.96,2484.70,0.00,0.176851,0.000000,199,0,0.003876,0.007772,3142275,2689962,0,0,6583,0,1,1 +1773526649.666013,1.91,4,3992.50,63.47,1189.72,2484.93,0.00,3518478920450.625000,0.000000,11,0,0.003878,0.007123,3142375,2690102,0,0,6585,0,1,1 +1773526654.665558,1.81,4,3992.50,63.49,1189.00,2485.65,0.00,0.050005,0.000000,70,0,0.003429,0.005861,3142462,2690219,0,0,6588,0,1,1 +1773526659.663616,2.46,4,3992.50,63.86,1175.07,2500.36,0.00,0.000000,0.000000,70,0,0.003880,0.007125,3142562,2690359,0,0,6590,0,1,1 +1773526664.665539,3.87,4,3992.50,63.83,1176.27,2499.19,0.00,1.441340,0.022062,221,21,2.014027,0.015066,3143149,2690882,0,0,6593,0,1,1 +1773526669.664599,22.21,4,3992.50,64.07,1166.92,2508.45,0.00,3519098751587.313477,3519098751588.733398,70,0,28.164098,0.122025,3151091,2697213,0,0,6595,0,1,1 +1773526674.664244,9.55,4,3992.50,64.11,1165.15,2509.97,0.00,3518687052553.579102,0.000000,11,0,10.066274,0.047553,3153926,2699454,0,0,6598,0,1,1 +1773526679.662087,2.11,4,3992.50,63.94,1171.62,2503.50,0.00,2.009656,0.000195,238,2,0.003888,0.007134,3154027,2699595,0,0,6600,0,1,1 +1773526684.661572,1.76,4,3992.50,64.00,1169.47,2505.65,0.00,3518799350338.940918,3518799350340.899414,70,0,0.003421,0.005866,3154113,2699712,0,0,6603,0,1,1 +1773526689.662203,2.11,4,3992.50,64.20,1165.70,2513.68,0.00,0.000000,0.000000,70,0,0.003878,0.007122,3154213,2699852,0,0,6605,0,1,1 +1773526694.665939,1.91,4,3992.50,63.96,1175.15,2504.29,0.00,254.921247,932.601324,54536,541503,0.003863,0.007114,3154312,2699992,0,0,6608,0,1,1 +1773526699.665755,2.31,4,3992.50,63.86,1179.29,2500.16,0.00,3518566409684.380371,3518566409004.749023,221,21,0.003878,0.007123,3154412,2700132,0,0,6610,0,1,1 +1773526704.665467,1.81,4,3992.50,63.93,1176.63,2502.81,0.00,3518640106337.520996,3518640106338.813965,199,0,0.003428,0.005873,3154499,2700250,0,0,6613,0,1,1 +1773526709.665007,2.11,4,3992.50,63.91,1177.10,2502.34,0.00,1.315062,0.022072,221,21,0.003891,0.007284,3154600,2700391,0,0,6615,0,1,1 +1773526714.665329,1.71,4,3992.50,63.94,1176.14,2503.30,0.00,3518211186329.715332,3518211186331.008301,199,0,0.003865,0.007615,3154699,2700535,0,0,6618,0,1,1 +1773526719.665757,2.41,4,3992.50,64.21,1170.98,2513.80,0.00,1.314829,0.022068,221,21,0.008155,0.010808,3154862,2700728,0,0,6620,0,1,1 +1773526724.664616,1.96,4,3992.50,64.24,1169.09,2515.21,0.00,257.789472,933.951339,55294,541938,0.003721,0.006421,3154954,2700856,0,0,6623,0,1,1 +1773526729.666168,1.76,4,3992.50,64.22,1170.11,2514.18,0.00,3517345766386.108398,3517345765709.771973,238,2,0.004073,0.007652,3155060,2701007,0,0,6625,0,1,1 +1773526734.664229,1.66,4,3992.50,63.88,1183.21,2501.09,0.00,0.000000,0.000000,238,2,0.003888,0.007143,3155161,2701149,0,0,6628,0,1,1 +1773526739.665441,6.78,4,3992.50,64.22,1169.79,2514.32,0.00,3517585109064.371582,3517585109066.379395,11,0,2.023773,0.019888,3155947,2701809,0,0,6630,0,1,1 +1773526744.666039,22.51,4,3992.50,64.68,1151.77,2532.45,0.00,255.134280,934.314343,54540,543070,34.189811,0.147584,3165742,2709673,0,0,6633,0,1,1 +1773526749.665443,4.07,4,3992.50,63.90,1182.30,2501.91,0.00,3518857072319.961426,3518857071640.619141,11,0,4.026441,0.024110,3166956,2710691,0,0,6635,0,1,1 +1773526754.665777,2.01,4,3992.50,64.26,1168.24,2516.06,0.00,255.147793,934.814189,54540,543383,0.003407,0.005865,3167041,2710808,0,0,6638,0,1,1 +1773526759.661200,1.66,4,3992.50,64.27,1168.04,2516.29,0.00,3521661315622.958984,3521661314942.447266,199,0,0.003877,0.007137,3167141,2710949,0,0,6640,0,1,1 +1773526764.661274,1.66,4,3992.50,64.07,1175.81,2508.52,0.00,1.314922,0.022070,221,21,0.004003,0.007232,3167250,2711097,0,0,6643,0,1,1 +1773526769.665254,1.91,4,3992.50,64.07,1175.83,2508.51,0.00,0.516483,3515639148247.734863,238,2,0.003875,0.007117,3167350,2711237,0,0,6645,0,1,1 +1773526774.665432,1.81,4,3992.50,64.07,1175.85,2508.49,0.00,253.147043,935.209676,54540,543585,0.003408,0.006026,3167435,2711355,0,0,6648,0,1,1 +1773526779.661191,2.06,4,3992.50,64.16,1177.51,2512.16,0.00,3521424239131.807617,3521424238451.102051,70,0,0.003881,0.007599,3167535,2711497,0,0,6650,0,1,1 +1773526784.665420,1.66,4,3992.50,64.16,1177.55,2512.11,0.00,0.126846,0.000000,199,0,0.004804,0.007803,3167638,2711642,0,0,6653,0,1,1 +1773526789.665567,2.06,4,3992.50,64.16,1177.55,2512.10,0.00,3518333574256.593262,0.000000,11,0,0.003878,0.007122,3167738,2711782,0,0,6655,0,1,1 +1773526794.665330,1.56,4,3992.50,64.11,1179.72,2509.95,0.00,0.000000,0.000000,11,0,0.003420,0.005865,3167824,2711899,0,0,6658,0,1,1 +1773526799.665495,1.81,4,3992.50,64.14,1178.55,2511.11,0.00,1.491845,0.022070,221,21,0.003878,0.007122,3167924,2712039,0,0,6660,0,1,1 +1773526804.662236,1.86,4,3992.50,64.16,1177.52,2512.14,0.00,253.847770,936.110992,54549,543850,0.003881,0.007137,3168024,2712180,0,0,6663,0,1,1 +1773526809.666111,12.89,4,3992.50,64.54,1162.71,2526.98,0.00,3515713013399.958008,3515713012718.667480,221,21,12.061615,0.057756,3171474,2714920,0,0,6665,0,1,1 +1773526814.665366,18.04,4,3992.50,64.26,1173.48,2516.11,0.00,253.722454,936.320986,54552,544956,28.169579,0.121465,3179708,2721360,0,0,6668,0,1,1 +1773526819.665588,2.11,4,3992.50,64.26,1173.52,2516.08,0.00,3518280525524.591309,3518280524842.125000,221,21,0.009022,0.010048,3179902,2721570,0,0,6670,0,1,1 +1773526824.661285,1.71,4,3992.50,64.26,1173.54,2516.06,0.00,3521468381812.310547,3521468381813.604492,199,0,0.003881,0.007138,3180002,2721711,0,0,6673,0,1,1 +1773526829.665672,1.56,4,3992.50,64.27,1173.34,2516.26,0.00,1.830230,0.000195,238,2,0.003417,0.005850,3180088,2721827,0,0,6675,0,1,1 +1773526834.665399,1.96,4,3992.50,64.27,1173.34,2516.25,0.00,3518629790527.062988,3518629790528.895020,199,0,0.003878,0.007133,3180188,2721968,0,0,6678,0,1,1 +1773526839.665173,2.06,4,3992.50,64.34,1164.79,2519.07,0.00,1.315001,0.022071,221,21,0.003886,0.007292,3180289,2722110,0,0,6680,0,1,1 +1773526844.665894,1.66,4,3992.50,64.34,1164.91,2518.94,0.00,3517929695457.779297,3517929695459.249023,11,0,0.003877,0.007614,3180389,2722254,0,0,6683,0,1,1 +1773526849.664003,1.76,4,3992.50,64.22,1169.36,2514.47,0.00,0.050019,0.000000,70,0,0.003422,0.005857,3180475,2722370,0,0,6685,0,1,1 +1773526854.665740,1.81,4,3992.50,64.23,1169.14,2514.70,0.00,259.097422,936.775064,55310,545521,0.003877,0.007130,3180575,2722511,0,0,6688,0,1,1 +1773526859.661529,1.76,4,3992.50,64.26,1167.95,2515.89,0.00,3521402540856.840820,3521402540176.935059,221,21,0.003881,0.007128,3180675,2722651,0,0,6690,0,1,1 +1773526864.663052,1.71,4,3992.50,64.26,1167.97,2515.87,0.00,3517365595616.831055,3517365595618.300781,11,0,0.003877,0.007130,3180775,2722792,0,0,6693,0,1,1 +1773526869.664784,2.01,4,3992.50,64.05,1172.84,2507.82,0.00,259.147669,936.892286,55310,545621,0.003432,0.005853,3180862,2722908,0,0,6695,0,1,1 +1773526874.665318,1.96,4,3992.50,64.08,1171.91,2508.75,0.00,3518061125075.243164,3518061124397.336426,11,0,0.003878,0.007132,3180962,2723049,0,0,6698,0,1,1 +1773526879.665430,16.83,4,3992.50,64.87,1140.90,2539.70,0.00,259.233176,937.618613,55312,546263,16.102097,0.078480,3185517,2726708,0,0,6700,0,1,1 +1773526884.661189,14.46,4,3992.50,64.08,1171.57,2509.02,0.00,0.001564,0.102137,55314,546645,24.142180,0.095130,3192131,2731944,0,0,6703,0,1,1 +1773526889.666118,2.56,4,3992.50,64.09,1171.20,2509.36,0.00,3514972277153.312500,0.150828,54556,546664,0.015001,0.012408,3192433,2732222,0,0,6705,0,1,1 +1773526894.661284,1.61,4,3992.50,64.09,1171.20,2509.34,0.00,3521841694104.457031,3521841693421.083496,11,0,0.003424,0.005871,3192519,2732339,0,0,6708,0,1,1 +1773526899.661261,2.36,4,3992.50,64.30,1161.48,2517.59,0.00,259.241742,938.356156,55314,546938,0.003865,0.007122,3192618,2732479,0,0,6710,0,1,1 +1773526904.661273,1.71,4,3992.50,64.26,1163.29,2515.77,0.00,3518428587770.233398,3518428587091.124023,11,0,0.003878,0.007132,3192718,2732620,0,0,6713,0,1,1 +1773526909.665487,1.76,4,3992.50,64.26,1163.07,2516.00,0.00,1.490638,0.022052,221,21,0.003875,0.007760,3192818,2732764,0,0,6715,0,1,1 +1773526914.665241,1.71,4,3992.50,64.26,1163.08,2515.98,0.00,0.516920,3518610454002.379883,238,2,0.003420,0.005865,3192904,2732881,0,0,6718,0,1,1 +1773526919.665356,1.96,4,3992.50,64.29,1162.12,2516.95,0.00,0.000000,0.000000,238,2,0.003878,0.007122,3193004,2733021,0,0,6720,0,1,1 +1773526924.665741,1.86,4,3992.50,64.29,1162.14,2516.93,0.00,0.000000,0.000000,238,2,0.003878,0.007132,3193104,2733162,0,0,6723,0,1,1 +1773526929.665661,1.86,4,3992.50,64.29,1162.72,2516.91,0.00,3518493185292.975098,3518493185294.983887,11,0,0.003874,0.007131,3193204,2733303,0,0,6725,0,1,1 +1773526934.662678,1.86,4,3992.50,64.14,1167.89,2511.13,0.00,0.000000,0.000000,11,0,0.003893,0.007124,3193305,2733443,0,0,6728,0,1,1 +1773526939.664876,1.91,4,3992.50,64.17,1166.69,2512.34,0.00,259.126598,938.451067,55314,547404,0.003419,0.005865,3193391,2733560,0,0,6730,0,1,1 +1773526944.664011,1.76,4,3992.50,64.17,1166.45,2512.58,0.00,3519045679325.650879,0.015823,54556,547424,0.003866,0.007134,3193490,2733701,0,0,6733,0,1,1 +1773526949.664748,1.71,4,3992.50,64.17,1166.47,2512.56,0.00,4.060242,0.030367,55314,547458,0.003877,0.007121,3193590,2733841,0,0,6735,0,1,1 +1773526954.665152,21.04,4,3992.50,64.44,1155.96,2523.03,0.00,3518153160679.712402,3518153159998.089355,238,2,24.143092,0.107544,3200475,2739138,0,0,6738,0,1,1 +1773526959.661264,11.47,4,3992.50,64.12,1167.64,2510.45,0.00,3521174584087.559082,3521174584089.569336,11,0,16.105549,0.068318,3205147,2742777,0,0,6740,0,1,1 +1773526964.665502,2.06,4,3992.50,64.15,1166.16,2511.78,0.00,1.490631,0.022052,221,21,0.003875,0.007126,3205247,2742918,0,0,6743,0,1,1 +1773526969.661847,1.61,4,3992.50,64.16,1165.93,2512.01,0.00,3521011079247.873535,3521011079249.344727,11,0,0.003893,0.007115,3205348,2743057,0,0,6745,0,1,1 +1773526974.665553,1.71,4,3992.50,64.16,1165.95,2511.99,0.00,254.993799,939.511011,54560,548791,0.003413,0.006525,3205434,2743180,0,0,6748,0,1,1 +1773526979.665775,1.71,4,3992.50,64.16,1165.96,2511.98,0.00,3518281490898.034668,3518281490211.570801,221,21,0.003878,0.007122,3205534,2743320,0,0,6750,0,1,1 +1773526984.665365,1.96,4,3992.50,64.16,1165.98,2511.96,0.00,0.000000,0.000000,221,21,0.003866,0.007133,3205633,2743461,0,0,6753,0,1,1 +1773526989.665691,2.01,4,3992.50,64.35,1167.17,2519.57,0.00,3518208147496.742676,3518208147498.035645,199,0,0.003272,0.006885,3205722,2743594,0,0,6755,0,1,1 +1773526994.665503,1.61,4,3992.50,64.27,1168.40,2516.26,0.00,1.314991,0.022071,221,21,0.003232,0.005719,3205804,2743709,0,0,6758,0,1,1 +1773526999.665338,1.96,4,3992.50,64.27,1168.42,2516.24,0.00,3518552878492.923340,3518552878494.216309,199,0,0.003878,0.007123,3205904,2743849,0,0,6760,0,1,1 +1773527004.664167,1.96,4,3992.50,64.27,1168.44,2516.22,0.00,3519261898639.352539,0.000000,70,0,0.003866,0.007121,3206003,2743989,0,0,6763,0,1,1 +1773527009.665541,1.61,4,3992.50,64.27,1168.46,2516.20,0.00,3517470577718.145996,0.000000,11,0,0.003877,0.007120,3206103,2744129,0,0,6765,0,1,1 +1773527014.665394,1.90,4,3992.50,64.22,1170.36,2514.30,0.00,0.000000,0.000000,11,0,0.003420,0.005865,3206189,2744246,0,0,6768,0,1,1 +1773527019.661238,2.11,4,3992.50,64.36,1155.79,2519.97,0.00,0.000000,0.000000,11,0,0.006577,0.009234,3206348,2744435,0,0,6770,0,1,1 +1773527024.665935,6.57,4,3992.50,64.48,1151.18,2524.61,0.00,254.944117,939.765298,54561,549322,2.797522,0.026384,3207479,2745340,0,0,6773,0,1,1 +1773527029.664461,22.32,4,3992.50,64.55,1148.50,2527.20,0.00,3519474589249.062500,3519474588563.218750,199,0,33.427712,0.143101,3216851,2752809,0,0,6775,0,1,1 +1773527034.665722,4.22,4,3992.50,64.10,1166.09,2509.62,0.00,3517550029298.873535,0.000000,11,0,4.023583,0.019553,3218027,2753776,0,0,6778,0,1,1 +1773527039.665151,1.81,4,3992.50,63.99,1170.53,2505.18,0.00,255.214308,941.365046,54563,550237,0.003878,0.007767,3218127,2753920,0,0,6780,0,1,1 +1773527044.665708,1.71,4,3992.50,63.81,1177.54,2498.18,0.00,0.000000,0.261201,54563,550490,0.003878,0.007132,3218227,2754061,0,0,6783,0,1,1 +1773527049.666033,2.16,4,3992.50,64.33,1156.59,2518.47,0.00,4.060576,0.248324,55321,550546,0.004319,0.007398,3218323,2754190,0,0,6785,0,1,1 +1773527054.665203,1.81,4,3992.50,64.26,1158.98,2516.09,0.00,3519021197229.726562,3519021196547.042480,70,0,0.003650,0.006512,3218416,2754320,0,0,6788,0,1,1 +1773527059.665581,1.76,4,3992.50,64.27,1158.75,2516.32,0.00,0.000000,0.000000,70,0,0.003878,0.007122,3218516,2754460,0,0,6790,0,1,1 +1773527064.665980,1.56,4,3992.50,64.27,1158.77,2516.30,0.00,0.000000,0.000000,70,0,0.003998,0.007252,3218625,2754610,0,0,6793,0,1,1 +1773527069.662863,2.01,4,3992.50,64.27,1158.81,2516.24,0.00,3520632062447.312988,0.000000,11,0,0.003880,0.007114,3218725,2754749,0,0,6795,0,1,1 +1773527074.665643,1.76,4,3992.50,64.25,1159.55,2515.51,0.00,0.000000,0.000000,11,0,0.003418,0.005874,3218811,2754867,0,0,6798,0,1,1 +1773527079.665705,1.96,4,3992.50,64.45,1158.21,2523.34,0.00,0.176951,0.000000,199,0,0.003878,0.007122,3218911,2755007,0,0,6800,0,1,1 +1773527084.665465,1.76,4,3992.50,64.43,1155.22,2522.73,0.00,3518606453853.453613,0.000000,11,0,0.004775,0.007790,3219011,2755150,0,0,6803,0,1,1 +1773527089.665631,1.71,4,3992.50,64.25,1162.62,2515.33,0.00,0.000000,0.000000,11,0,0.003865,0.007122,3219110,2755290,0,0,6805,0,1,1 +1773527094.661540,1.81,4,3992.50,64.24,1162.88,2515.07,0.00,0.000000,0.000000,11,0,0.003423,0.005870,3219196,2755407,0,0,6808,0,1,1 +1773527099.665641,11.56,4,3992.50,64.02,1171.29,2506.65,0.00,259.036621,941.613097,55325,551304,10.062059,0.051875,3222253,2757794,0,0,6810,0,1,1 +1773527104.666060,20.64,4,3992.50,64.38,1157.09,2520.72,0.00,3518142761888.757812,3518142761204.208984,221,21,30.167137,0.129600,3230842,2764618,0,0,6813,0,1,1 +1773527109.665918,1.91,4,3992.50,64.26,1161.70,2516.11,0.00,0.516909,3518537102966.360840,238,2,0.004832,0.007550,3230963,2764771,0,0,6815,0,1,1 +1773527114.662489,2.26,4,3992.50,64.27,1161.19,2516.38,0.00,257.419193,943.977478,55328,552431,0.003032,0.006266,3231044,2764893,0,0,6818,0,1,1 +1773527119.664783,1.71,4,3992.50,64.27,1161.21,2516.37,0.00,3516823858646.639160,3516823857961.404297,221,21,0.003864,0.007119,3231143,2765033,0,0,6820,0,1,1 +1773527124.661194,1.66,4,3992.50,64.27,1161.23,2516.35,0.00,0.517266,3520964758786.219238,238,2,0.003423,0.005869,3231229,2765150,0,0,6823,0,1,1 +1773527129.666064,1.71,4,3992.50,64.27,1161.24,2516.32,0.00,252.935447,942.779180,54570,552607,0.003862,0.007115,3231328,2765290,0,0,6825,0,1,1 +1773527134.663027,1.96,4,3992.50,64.27,1161.39,2516.18,0.00,3520575993045.479492,3520575992356.503906,70,0,0.003880,0.007137,3231428,2765431,0,0,6828,0,1,1 +1773527139.662046,1.96,4,3992.50,64.66,1154.18,2531.62,0.00,1.959173,0.000195,238,2,0.003891,0.007124,3231529,2765571,0,0,6830,0,1,1 +1773527144.665162,1.71,4,3992.50,64.66,1153.29,2531.61,0.00,3516246283644.293457,0.021861,221,21,0.003418,0.005861,3231615,2765688,0,0,6833,0,1,1 +1773527149.661190,1.76,4,3992.50,64.64,1154.05,2530.85,0.00,3521234782027.235840,3521234782028.707031,11,0,0.003881,0.007115,3231715,2765827,0,0,6835,0,1,1 +1773527154.665314,1.71,4,3992.50,64.64,1154.02,2530.88,0.00,2.007133,0.000195,238,2,0.003887,0.007126,3231816,2765968,0,0,6838,0,1,1 +1773527159.663917,1.96,4,3992.50,64.64,1154.02,2530.89,0.00,3519420654672.409180,3519420654674.417969,11,0,0.003887,0.007132,3231917,2766109,0,0,6840,0,1,1 +1773527164.665694,1.71,4,3992.50,64.64,1154.29,2530.61,0.00,0.176890,0.000000,199,0,0.003419,0.005850,3232003,2766225,0,0,6843,0,1,1 +1773527169.665730,16.41,4,3992.50,64.82,1137.61,2537.70,0.00,3518411153641.065430,0.000000,11,0,18.109758,0.085194,3237236,2770320,0,0,6845,0,1,1 +1773527174.661206,16.73,4,3992.50,64.88,1134.64,2540.29,0.00,1.493246,0.022090,221,21,22.147034,0.094062,3243461,2775228,0,0,6848,0,1,1 +1773527179.666087,2.10,4,3992.50,64.20,1161.45,2513.51,0.00,253.462249,943.976383,54584,554158,0.003862,0.007115,3243560,2775368,0,0,6850,0,1,1 +1773527184.662767,1.66,4,3992.50,64.10,1165.34,2509.63,0.00,3520774723494.885742,3520774722804.708984,11,0,0.003868,0.007137,3243659,2775509,0,0,6853,0,1,1 +1773527189.661211,1.61,4,3992.50,64.10,1165.35,2509.62,0.00,0.050016,0.000000,70,0,0.003879,0.007112,3243759,2775648,0,0,6855,0,1,1 +1773527194.665433,1.71,4,3992.50,63.91,1172.76,2502.21,0.00,0.000000,0.000000,70,0,0.003417,0.005848,3243845,2775764,0,0,6858,0,1,1 +1773527199.665904,2.26,4,3992.50,64.32,1156.89,2518.09,0.00,259.188016,945.317111,55342,554315,0.003878,0.007122,3243945,2775904,0,0,6860,0,1,1 +1773527204.666021,1.71,4,3992.50,64.32,1156.63,2518.33,0.00,3518355013517.782715,3518355012831.655273,11,0,0.003878,0.007120,3244045,2776044,0,0,6863,0,1,1 +1773527209.666072,1.71,4,3992.50,64.32,1156.64,2518.31,0.00,255.198959,945.556078,54584,554488,0.003428,0.005851,3244132,2776160,0,0,6865,0,1,1 +1773527214.663990,1.86,4,3992.50,64.33,1156.45,2518.51,0.00,0.000000,0.041033,54584,554532,0.003892,0.007135,3244233,2776301,0,0,6868,0,1,1 +1773527219.663559,1.71,4,3992.50,64.33,1156.46,2518.50,0.00,3518740962536.101562,3518740961843.627930,238,2,0.003878,0.007123,3244333,2776441,0,0,6870,0,1,1 +1773527224.662553,1.91,4,3992.50,64.31,1156.94,2518.03,0.00,253.243678,945.841589,54584,554582,0.003879,0.007121,3244433,2776581,0,0,6873,0,1,1 +1773527229.666155,1.96,4,3992.50,64.51,1149.07,2525.89,0.00,3515904913273.262207,3515904912583.309082,11,0,0.003418,0.005864,3244519,2776698,0,0,6875,0,1,1 +1773527234.665737,1.76,4,3992.50,64.35,1155.52,2519.38,0.00,0.176968,0.000000,199,0,0.003866,0.007777,3244618,2776843,0,0,6878,0,1,1 +1773527239.664555,20.60,4,3992.50,65.33,1117.00,2557.88,0.00,3519269368983.377930,0.000000,70,0,26.177588,0.117313,3252143,2782752,0,0,6880,0,1,1 +1773527244.666147,11.52,4,3992.50,64.39,1153.69,2521.19,0.00,0.000000,0.000000,70,0,14.062112,0.063910,3256239,2785981,0,0,6883,0,1,1 +1773527249.665987,1.81,4,3992.50,64.30,1157.31,2517.57,0.00,3518549579393.646973,0.000000,11,0,0.003878,0.007123,3256339,2786121,0,0,6885,0,1,1 +1773527254.663122,1.71,4,3992.50,64.08,1165.87,2509.01,0.00,0.000000,0.000000,11,0,0.003880,0.007136,3256439,2786262,0,0,6888,0,1,1 +1773527259.663865,1.91,4,3992.50,64.39,1153.88,2521.00,0.00,255.174614,946.748984,54598,555987,0.003885,0.007117,3256540,2786402,0,0,6890,0,1,1 +1773527264.664537,1.96,4,3992.50,64.31,1157.09,2517.75,0.00,3517964211303.899414,3517964210612.265137,70,0,0.003420,0.005864,3256626,2786519,0,0,6893,0,1,1 +1773527269.665928,1.66,4,3992.50,64.33,1156.03,2518.84,0.00,3517458331183.214844,0.000000,11,0,0.003864,0.007120,3256725,2786659,0,0,6895,0,1,1 +1773527274.665701,1.66,4,3992.50,64.33,1156.05,2518.82,0.00,0.050002,0.000000,70,0,0.003878,0.007133,3256825,2786800,0,0,6898,0,1,1 +1773527279.661582,1.76,4,3992.50,64.33,1156.07,2518.81,0.00,0.127058,0.000000,199,0,0.003881,0.007128,3256925,2786940,0,0,6900,0,1,1 +1773527284.661335,1.86,4,3992.50,64.33,1156.09,2518.79,0.00,3518611133831.368164,0.000000,11,0,0.003420,0.005865,3257011,2787057,0,0,6903,0,1,1 +1773527289.666217,2.20,4,3992.50,64.39,1155.43,2520.95,0.00,0.176780,0.000000,199,0,0.003887,0.007115,3257112,2787197,0,0,6905,0,1,1 +1773527294.661200,1.61,4,3992.50,64.41,1154.22,2521.66,0.00,3521971074358.093262,0.000000,11,0,0.003882,0.007114,3257212,2787336,0,0,6908,0,1,1 +1773527299.665792,1.91,4,3992.50,64.38,1155.41,2520.49,0.00,254.978376,946.458294,54598,556434,0.003874,0.007747,3257312,2787479,0,0,6910,0,1,1 +1773527304.661208,2.87,4,3992.50,64.19,1162.84,2512.98,0.00,3521665523639.506836,3521665522946.756836,11,0,0.009012,0.008670,3257494,2787656,0,0,6913,0,1,1 +1773527309.665659,16.85,4,3992.50,64.40,1154.42,2521.43,0.00,254.990978,947.017325,54605,557095,20.096238,0.087993,3263118,2792118,0,0,6915,0,1,1 +1773527314.665480,14.00,4,3992.50,64.46,1152.05,2523.69,0.00,0.003906,0.085941,54610,557457,20.120530,0.088608,3268995,2796669,0,0,6918,0,1,1 +1773527319.665780,2.36,4,3992.50,64.76,1144.32,2535.37,0.00,3518226385950.261230,3518226385255.569824,238,2,0.007710,0.009554,3269145,2796839,0,0,6920,0,1,1 +1773527324.661261,1.81,4,3992.50,64.49,1151.86,2524.73,0.00,257.506646,949.511337,55368,557901,0.004181,0.007681,3269251,2796990,0,0,6923,0,1,1 +1773527329.666173,2.11,4,3992.50,64.49,1151.49,2525.09,0.00,3514984562312.993652,3514984561624.122559,199,0,0.004071,0.007647,3269357,2797141,0,0,6925,0,1,1 +1773527334.663089,1.61,4,3992.50,64.48,1152.11,2524.48,0.00,1.832966,0.000195,238,2,0.003893,0.007124,3269458,2797281,0,0,6928,0,1,1 +1773527339.665658,1.76,4,3992.50,64.48,1151.90,2524.69,0.00,3516629815184.749023,3516629815186.580078,199,0,0.003419,0.005852,3269544,2797397,0,0,6930,0,1,1 +1773527344.665509,1.66,4,3992.50,64.48,1151.92,2524.67,0.00,1.314981,0.022071,221,21,0.003866,0.007133,3269643,2797538,0,0,6933,0,1,1 +1773527349.665175,4.47,4,3992.50,64.20,1167.36,2513.74,0.00,3518671741020.465820,3518671741021.935547,11,0,0.003878,0.007123,3269743,2797678,0,0,6935,0,1,1 +1773527354.665688,1.66,4,3992.50,64.05,1173.61,2507.54,0.00,255.195710,948.938935,54610,558133,0.004530,0.008061,3269845,2797822,0,0,6938,0,1,1 +1773527359.665260,1.76,4,3992.50,64.05,1173.62,2507.52,0.00,3518738201493.784180,3518738200799.860352,70,0,0.003408,0.005856,3269930,2797938,0,0,6940,0,1,1 +1773527364.661206,1.71,4,3992.50,64.05,1173.62,2507.52,0.00,0.000000,0.000000,70,0,0.003994,0.007895,3270038,2798091,0,0,6943,0,1,1 +1773527369.661184,1.86,4,3992.50,64.06,1172.93,2508.21,0.00,255.173016,949.135300,54610,558247,0.003878,0.007110,3270138,2798230,0,0,6945,0,1,1 +1773527374.665394,1.96,4,3992.50,64.06,1172.95,2508.20,0.00,0.000000,0.031516,54610,558288,0.003875,0.007126,3270238,2798371,0,0,6948,0,1,1 +1773527379.667686,9.19,4,3992.50,64.85,1141.87,2539.18,0.00,4.060541,0.171796,55370,558497,8.051326,0.043341,3272712,2800244,0,0,6950,0,1,1 +1773527384.663287,19.75,4,3992.50,64.52,1152.37,2526.02,0.00,3521535635981.085449,3521535635288.416992,238,2,32.209353,0.134932,3282023,2807450,0,0,6953,0,1,1 +1773527389.661230,2.21,4,3992.50,64.49,1153.45,2524.94,0.00,3519885021363.918457,3519885021365.751465,199,0,0.011739,0.009943,3282243,2807654,0,0,6955,0,1,1 +1773527394.662481,1.91,4,3992.50,64.50,1153.21,2525.17,0.00,1.831378,0.000195,238,2,0.003648,0.006510,3282336,2807784,0,0,6958,0,1,1 +1773527399.665290,1.71,4,3992.50,64.31,1160.62,2517.75,0.00,3516461373235.343750,3516461373237.174805,199,0,0.003876,0.007118,3282436,2807924,0,0,6960,0,1,1 +1773527404.665746,1.96,4,3992.50,64.15,1166.64,2511.74,0.00,3518116827352.399902,0.000000,11,0,0.003886,0.007140,3282537,2808066,0,0,6963,0,1,1 +1773527409.665894,2.11,4,3992.50,64.46,1154.45,2523.93,0.00,0.176948,0.000000,199,0,0.003649,0.006463,3282630,2808192,0,0,6965,0,1,1 +1773527414.665086,2.21,4,3992.50,64.47,1154.23,2524.15,0.00,1.832132,0.000195,238,2,0.003650,0.006512,3282723,2808322,0,0,6968,0,1,1 +1773527419.663198,1.76,4,3992.50,64.47,1154.25,2524.13,0.00,3519766031784.288574,0.021883,221,21,0.003867,0.007125,3282822,2808462,0,0,6970,0,1,1 +1773527424.661459,1.96,4,3992.50,64.43,1155.76,2522.62,0.00,3519661087256.917969,3519661087258.338379,70,0,0.003879,0.007135,3282922,2808603,0,0,6973,0,1,1 +1773527429.665930,4.31,4,3992.50,64.19,1165.37,2513.01,0.00,3515294459003.381836,0.000000,11,0,0.003875,0.007747,3283022,2808746,0,0,6975,0,1,1 +1773527434.661294,1.91,4,3992.50,64.15,1166.74,2511.64,0.00,0.000000,0.000000,11,0,0.003423,0.005883,3283108,2808864,0,0,6978,0,1,1 +1773527439.661290,2.16,4,3992.50,64.38,1156.68,2520.68,0.00,0.050000,0.000000,70,0,0.003878,0.007110,3283208,2809003,0,0,6980,0,1,1 +1773527444.661405,1.96,4,3992.50,64.36,1157.57,2519.77,0.00,1.958744,0.000195,238,2,0.003865,0.007132,3283307,2809144,0,0,6983,0,1,1 +1773527449.667536,11.64,4,3992.50,64.77,1141.45,2535.84,0.00,3514128522546.009277,3514128522548.015625,11,0,10.065373,0.058639,3286493,2811699,0,0,6985,0,1,1 +1773527454.666113,18.79,4,3992.50,65.32,1119.88,2557.37,0.00,0.000000,0.000000,11,0,30.158848,0.116626,3294606,2818131,0,0,6988,0,1,1 +1773527459.665332,2.52,4,3992.50,65.03,1130.97,2546.26,0.00,0.000000,0.000000,11,0,0.013657,0.008632,3294867,2818338,0,0,6990,0,1,1 +1773527464.663843,2.36,4,3992.50,64.93,1135.21,2542.02,0.00,0.000000,0.000000,11,0,0.003879,0.007134,3294967,2818479,0,0,6993,0,1,1 +1773527469.663093,2.16,4,3992.50,64.75,1145.48,2534.92,0.00,255.284376,952.166615,54638,561219,0.003879,0.007111,3295067,2818618,0,0,6995,0,1,1 +1773527474.662878,1.96,4,3992.50,64.50,1154.87,2525.39,0.00,3518588807730.453125,3518588807033.645508,11,0,0.003420,0.005865,3295153,2818735,0,0,6998,0,1,1 +1773527479.665555,3.92,4,3992.50,63.81,1181.99,2498.28,0.00,0.049973,0.000000,70,0,0.003876,0.007119,3295253,2818875,0,0,7000,0,1,1 +1773527484.661194,2.01,4,3992.50,63.84,1180.81,2499.47,0.00,1.443153,0.022090,221,21,0.003869,0.007126,3295352,2819015,0,0,7003,0,1,1 +1773527489.661206,2.16,4,3992.50,63.84,1180.82,2499.45,0.00,3518428716098.473145,3518428716099.942871,11,0,0.003878,0.007122,3295452,2819155,0,0,7005,0,1,1 +1773527494.661941,1.96,4,3992.50,63.84,1180.83,2499.43,0.00,0.000000,0.000000,11,0,0.003420,0.006508,3295538,2819276,0,0,7008,0,1,1 +1773527499.661302,2.21,4,3992.50,64.26,1166.40,2515.86,0.00,0.000000,0.000000,11,0,0.003879,0.007123,3295638,2819416,0,0,7010,0,1,1 +1773527504.663706,1.76,4,3992.50,64.28,1165.46,2516.83,0.00,0.000000,0.000000,11,0,0.003884,0.007137,3295739,2819558,0,0,7013,0,1,1 +1773527509.663930,2.16,4,3992.50,64.19,1169.18,2513.11,0.00,0.000000,0.000000,11,0,0.003878,0.007110,3295839,2819697,0,0,7015,0,1,1 +1773527514.662873,1.86,4,3992.50,64.19,1169.20,2513.09,0.00,255.300054,952.594309,54638,561583,0.003245,0.005720,3295922,2819812,0,0,7018,0,1,1 +1773527519.665198,1.91,4,3992.50,64.19,1169.19,2513.11,0.00,3516802354827.346680,3516802354130.523926,11,0,0.003876,0.007107,3296022,2819951,0,0,7020,0,1,1 +1773527524.664341,17.21,4,3992.50,64.77,1146.29,2535.94,0.00,259.355293,952.709971,55401,562049,20.135826,0.096346,3302166,2824709,0,0,7023,0,1,1 +1773527529.665355,16.78,4,3992.50,64.16,1162.39,2511.98,0.00,3517723794090.905273,0.467483,54651,562411,20.102189,0.084385,3307600,2829126,0,0,7025,0,1,1 +1773527534.665390,1.91,4,3992.50,64.19,1160.99,2513.37,0.00,3518412219458.487793,3518412218759.265137,221,21,0.003420,0.005865,3307686,2829243,0,0,7028,0,1,1 +1773527539.661292,1.96,4,3992.50,64.19,1161.02,2513.35,0.00,258.036705,954.405265,55409,562991,0.005739,0.007887,3307822,2829404,0,0,7030,0,1,1 +1773527544.665197,2.05,4,3992.50,64.19,1161.04,2513.33,0.00,3515691640487.507324,3515691639793.671387,70,0,0.003888,0.007127,3307923,2829545,0,0,7033,0,1,1 +1773527549.661216,2.01,4,3992.50,64.15,1162.88,2511.49,0.00,259.473634,954.453117,55409,563009,0.003423,0.005860,3308009,2829661,0,0,7035,0,1,1 +1773527554.661278,2.06,4,3992.50,64.15,1162.65,2511.72,0.00,0.000000,0.041796,55409,563023,0.003886,0.007140,3308110,2829803,0,0,7038,0,1,1 +1773527559.664277,2.31,4,3992.50,64.13,1168.24,2510.66,0.00,0.000000,0.069002,55409,563061,0.003876,0.007749,3308210,2829946,0,0,7040,0,1,1 +1773527564.663111,1.96,4,3992.50,64.13,1168.25,2510.63,0.00,3519258131442.576660,0.004884,54651,563065,0.003879,0.007134,3308310,2830087,0,0,7043,0,1,1 +1773527569.663751,1.96,4,3992.50,64.12,1168.25,2510.63,0.00,3517986863391.998047,3517986862691.526367,238,2,0.003420,0.005854,3308396,2830203,0,0,7045,0,1,1 +1773527574.661201,2.06,4,3992.50,64.12,1168.27,2510.61,0.00,3520232603546.024414,3520232603548.034180,11,0,0.003880,0.007136,3308496,2830344,0,0,7048,0,1,1 +1773527579.664260,1.96,4,3992.50,64.13,1168.05,2510.82,0.00,2.007560,0.000195,238,2,0.003876,0.007105,3308596,2830483,0,0,7050,0,1,1 +1773527584.665222,2.01,4,3992.50,64.14,1167.82,2511.05,0.00,3517761006568.151855,3517761006570.159668,11,0,0.003865,0.007131,3308695,2830624,0,0,7053,0,1,1 +1773527589.665662,2.86,4,3992.50,64.07,1172.77,2508.42,0.00,0.176938,0.000000,199,0,0.006656,0.008181,3308842,2830791,0,0,7055,0,1,1 +1773527594.664537,22.23,4,3992.50,64.86,1141.73,2539.29,0.00,1.832248,0.000195,238,2,30.176081,0.128309,3317314,2837394,0,0,7058,0,1,1 +1773527599.663481,9.95,4,3992.50,64.23,1166.41,2514.59,0.00,3519181043399.266602,0.021880,221,21,10.069113,0.050554,3320413,2839871,0,0,7060,0,1,1 +1773527604.665619,1.51,4,3992.50,64.25,1165.45,2515.56,0.00,3516933058815.826172,3516933058817.118652,199,0,0.003793,0.006517,3320509,2840002,0,0,7063,0,1,1 +1773527609.662616,1.56,4,3992.50,64.25,1165.46,2515.55,0.00,3520551522571.233398,0.000000,70,0,0.003880,0.007127,3320609,2840142,0,0,7065,0,1,1 +1773527614.665969,1.71,4,3992.50,64.25,1165.48,2515.51,0.00,1.440928,0.022056,221,21,0.003418,0.005861,3320695,2840259,0,0,7068,0,1,1 +1773527619.662209,1.96,4,3992.50,64.47,1154.84,2524.28,0.00,253.970159,955.864805,54670,564560,0.008162,0.010830,3320858,2840453,0,0,7070,0,1,1 +1773527624.665331,1.60,4,3992.50,64.48,1154.54,2524.44,0.00,3516241687009.690430,3516241686310.053711,199,0,0.004175,0.008326,3320964,2840609,0,0,7073,0,1,1 +1773527629.665924,1.65,4,3992.50,64.48,1154.56,2524.41,0.00,3518019822568.025879,0.000000,11,0,0.003616,0.006387,3321056,2840736,0,0,7075,0,1,1 +1773527634.665761,2.06,4,3992.50,64.48,1154.58,2524.41,0.00,0.176959,0.000000,199,0,0.003878,0.007120,3321156,2840876,0,0,7078,0,1,1 +1773527639.662816,1.96,4,3992.50,64.29,1162.00,2516.98,0.00,1.315716,0.022083,221,21,0.003868,0.007114,3321255,2841015,0,0,7080,0,1,1 +1773527644.665528,1.96,4,3992.50,64.29,1162.02,2516.97,0.00,3516529437507.484375,3516529437508.776367,199,0,0.003876,0.006995,3321355,2841155,0,0,7083,0,1,1 +1773527649.665817,2.21,4,3992.50,64.29,1156.83,2516.93,0.00,1.314866,0.022069,221,21,0.002651,0.005605,3321428,2841263,0,0,7085,0,1,1 +1773527654.666048,1.91,4,3992.50,64.29,1155.06,2516.91,0.00,257.828146,955.555728,55428,565024,0.004522,0.008054,3321529,2841406,0,0,7088,0,1,1 +1773527659.665813,6.07,4,3992.50,64.28,1155.43,2516.53,0.00,3518602220512.203125,3518602219815.880859,11,0,2.021812,0.019414,3322253,2842009,0,0,7090,0,1,1 +1773527664.661260,22.13,4,3992.50,65.34,1113.52,2558.38,0.00,1.493254,0.022090,221,21,32.209195,0.135488,3331311,2849129,0,0,7093,0,1,1 +1773527669.662219,6.53,4,3992.50,64.36,1151.89,2519.94,0.00,253.734441,955.915784,54675,566037,6.040516,0.032385,3333148,2850664,0,0,7095,0,1,1 +1773527674.662150,1.96,4,3992.50,64.02,1165.23,2506.64,0.00,3518485783437.265625,3518485782734.401367,238,2,0.003878,0.007120,3333248,2850804,0,0,7098,0,1,1 +1773527679.662620,2.31,4,3992.50,64.01,1165.83,2506.17,0.00,3518106525865.535156,3518106525867.543457,11,0,0.003433,0.005855,3333335,2850920,0,0,7100,0,1,1 +1773527684.663737,1.76,4,3992.50,64.04,1164.65,2507.36,0.00,0.000000,0.000000,11,0,0.003877,0.007131,3333435,2851061,0,0,7103,0,1,1 +1773527689.663635,1.71,4,3992.50,64.05,1164.42,2507.59,0.00,259.341927,956.761273,55434,566405,0.004787,0.008411,3333536,2851206,0,0,7105,0,1,1 +1773527694.665098,1.61,4,3992.50,64.07,1163.58,2508.43,0.00,0.000000,0.126135,55434,566417,0.003864,0.007130,3333635,2851347,0,0,7108,0,1,1 +1773527699.665661,2.06,4,3992.50,64.09,1162.86,2509.15,0.00,3518040525631.922852,3518040524934.470215,11,0,0.003420,0.005855,3333721,2851463,0,0,7110,0,1,1 +1773527704.665195,1.96,4,3992.50,64.09,1162.89,2509.12,0.00,0.050005,0.000000,70,0,0.003421,0.005866,3333807,2851580,0,0,7113,0,1,1 +1773527709.665194,1.91,4,3992.50,64.14,1160.98,2511.31,0.00,259.286714,957.078565,55434,566573,0.003878,0.007122,3333907,2851720,0,0,7115,0,1,1 +1773527714.665785,1.91,4,3992.50,64.19,1159.15,2513.00,0.00,3518021524125.853027,3518021523428.144043,70,0,0.003873,0.007140,3334007,2851862,0,0,7118,0,1,1 +1773527719.665554,1.86,4,3992.50,64.18,1159.17,2512.98,0.00,259.298568,957.327410,55434,566822,0.003853,0.007085,3334105,2851999,0,0,7120,0,1,1 +1773527724.665473,1.86,4,3992.50,64.18,1159.20,2512.96,0.00,3518494208231.528809,3518494207532.100586,221,21,0.003395,0.005890,3334189,2852118,0,0,7123,0,1,1 +1773527729.663255,8.79,4,3992.50,63.96,1168.11,2503.99,0.00,0.000000,0.000000,221,21,6.051332,0.036566,3336121,2853663,0,0,7125,0,1,1 +1773527734.665178,23.68,4,3992.50,64.12,1161.47,2510.57,0.00,3517084556450.313965,3517084556451.606445,199,0,34.172493,0.140275,3345637,2861106,0,0,7128,0,1,1 +1773527739.665323,2.36,4,3992.50,64.47,1148.93,2524.26,0.00,0.000000,0.000000,199,0,0.006832,0.009218,3345796,2861293,0,0,7130,0,1,1 +1773527744.661217,2.01,4,3992.50,64.48,1148.85,2524.36,0.00,259.384421,959.127190,55449,568122,0.003881,0.007138,3345896,2861434,0,0,7133,0,1,1 +1773527749.661274,1.71,4,3992.50,64.22,1158.84,2514.37,0.00,3518397428918.840332,3518397428219.857422,11,0,0.003408,0.005855,3345981,2861550,0,0,7135,0,1,1 +1773527754.665676,1.71,4,3992.50,64.10,1163.64,2509.58,0.00,255.062900,957.656719,54691,568286,0.003862,0.007609,3346080,2861694,0,0,7138,0,1,1 +1773527759.665820,1.71,4,3992.50,64.10,1163.43,2509.78,0.00,3518335832706.613281,3518335832003.371094,70,0,0.003853,0.007271,3346178,2861834,0,0,7140,0,1,1 +1773527764.665255,2.01,4,3992.50,64.10,1163.46,2509.77,0.00,255.266365,958.812229,54691,568339,0.003886,0.007141,3346279,2861976,0,0,7143,0,1,1 +1773527769.661291,2.01,4,3992.50,64.12,1166.09,2510.44,0.00,3521229092581.182617,3521229091877.031250,199,0,0.003423,0.005860,3346365,2862092,0,0,7145,0,1,1 +1773527774.661278,1.71,4,3992.50,64.10,1163.54,2509.67,0.00,1.314945,0.022070,221,21,0.003891,0.007132,3346466,2862233,0,0,7148,0,1,1 +1773527779.664096,1.81,4,3992.50,64.11,1163.33,2509.88,0.00,0.516603,3516455751473.299805,238,2,0.003876,0.007118,3346566,2862373,0,0,7150,0,1,1 +1773527784.661186,1.76,4,3992.50,64.13,1162.37,2510.84,0.00,3520486308642.726074,0.021888,221,21,0.003880,0.007124,3346666,2862513,0,0,7153,0,1,1 +1773527789.661266,1.91,4,3992.50,64.14,1162.13,2511.07,0.00,3518380615026.016113,3518380615027.309082,199,0,0.003878,0.007097,3346766,2862651,0,0,7155,0,1,1 +1773527794.665219,1.71,4,3992.50,64.14,1162.15,2511.05,0.00,0.000000,0.000000,199,0,0.003426,0.005894,3346853,2862771,0,0,7158,0,1,1 +1773527799.662021,15.23,4,3992.50,64.84,1144.40,2538.61,0.00,259.341946,959.941213,55455,569060,16.105356,0.075519,3351341,2866384,0,0,7160,0,1,1 +1773527804.665354,13.72,4,3992.50,64.57,1155.08,2527.86,0.00,3516092997777.568359,3516092997077.883789,199,0,20.108519,0.089649,3357350,2871128,0,0,7163,0,1,1 +1773527809.666051,5.07,4,3992.50,64.88,1142.87,2540.04,0.00,3517947268588.463867,0.000000,11,0,4.022209,0.019994,3358422,2871989,0,0,7165,0,1,1 +1773527814.665427,1.81,4,3992.50,64.78,1146.54,2536.38,0.00,259.390099,959.874427,55461,569761,0.003866,0.007121,3358521,2872129,0,0,7168,0,1,1 +1773527819.665750,1.86,4,3992.50,64.72,1149.06,2533.85,0.00,3518209332094.526855,3518209331394.125000,70,0,0.003272,0.007529,3358610,2872266,0,0,7170,0,1,1 +1773527824.665419,1.56,4,3992.50,64.72,1148.84,2534.07,0.00,3518670329237.270508,0.000000,11,0,0.003428,0.005873,3358697,2872384,0,0,7173,0,1,1 +1773527829.663215,4.67,4,3992.50,64.69,1150.09,2532.86,0.00,0.177031,0.000000,199,0,0.003880,0.007126,3358797,2872524,0,0,7175,0,1,1 +1773527834.665753,1.66,4,3992.50,64.52,1156.74,2526.20,0.00,3516652197021.030762,0.000000,70,0,0.003876,0.007129,3358897,2872665,0,0,7178,0,1,1 +1773527839.663417,2.05,4,3992.50,64.49,1157.91,2525.03,0.00,1.442569,0.022081,221,21,0.003880,0.007126,3358997,2872805,0,0,7180,0,1,1 +1773527844.665462,1.56,4,3992.50,64.50,1157.72,2525.22,0.00,0.516683,3516998869592.878418,238,2,0.003431,0.005863,3359084,2872922,0,0,7183,0,1,1 +1773527849.665945,1.81,4,3992.50,64.48,1158.45,2524.49,0.00,3518097302281.552734,3518097302283.384277,199,0,0.003878,0.007122,3359184,2873062,0,0,7185,0,1,1 +1773527854.665238,1.86,4,3992.50,64.49,1158.20,2524.75,0.00,3518934283686.920410,0.000000,11,0,0.003887,0.007141,3359285,2873204,0,0,7188,0,1,1 +1773527859.665487,2.06,4,3992.50,64.37,1159.44,2520.19,0.00,0.176944,0.000000,199,0,0.003878,0.007122,3359385,2873344,0,0,7190,0,1,1 +1773527864.663253,1.56,4,3992.50,64.34,1160.18,2519.19,0.00,259.296643,961.167346,55461,570397,0.003422,0.005868,3359471,2873461,0,0,7193,0,1,1 +1773527869.661284,1.71,4,3992.50,64.33,1160.68,2518.68,0.00,0.000000,0.032435,55461,570436,0.003880,0.007125,3359571,2873601,0,0,7195,0,1,1 +1773527874.663213,18.09,4,3992.50,65.13,1129.13,2550.16,0.00,3517080158719.752930,3517080158018.610840,11,0,22.128268,0.101154,3366021,2878639,0,0,7198,0,1,1 +1773527879.665489,11.97,4,3992.50,64.36,1159.27,2519.98,0.00,1.491216,0.022060,221,21,18.088312,0.072262,3370975,2882476,0,0,7200,0,1,1 +1773527884.665267,2.31,4,3992.50,64.32,1161.06,2518.19,0.00,3518593205711.533203,3518593205712.953125,70,0,0.008814,0.009595,3371164,2882677,0,0,7203,0,1,1 +1773527889.661274,1.91,4,3992.50,64.52,1154.94,2526.21,0.00,255.482923,962.483049,54715,571478,0.003881,0.007611,3371264,2882820,0,0,7205,0,1,1 +1773527894.664132,1.91,4,3992.50,64.55,1153.73,2527.41,0.00,3516427598388.304688,3516427597680.853516,221,21,0.003418,0.005862,3371350,2882937,0,0,7208,0,1,1 +1773527899.661602,1.91,4,3992.50,64.36,1161.16,2519.98,0.00,3520218445047.251465,3520218445048.722168,11,0,0.003880,0.007126,3371450,2883077,0,0,7210,0,1,1 +1773527904.665284,1.61,4,3992.50,64.36,1161.17,2519.97,0.00,1.490797,0.022054,221,21,0.003875,0.007127,3371550,2883218,0,0,7213,0,1,1 +1773527909.665741,1.71,4,3992.50,64.36,1161.20,2519.94,0.00,3518115487774.747559,3518115487776.167480,70,0,0.003898,0.007130,3371652,2883359,0,0,7215,0,1,1 +1773527914.661184,1.91,4,3992.50,64.33,1162.52,2518.62,0.00,0.000000,0.000000,70,0,0.003411,0.005870,3371737,2883476,0,0,7218,0,1,1 +1773527919.664836,2.61,4,3992.50,64.53,1154.55,2526.45,0.00,3515869127363.100586,0.000000,11,0,0.006559,0.009211,3371895,2883664,0,0,7220,0,1,1 +1773527924.661276,1.66,4,3992.50,64.55,1153.52,2527.38,0.00,0.000000,0.000000,11,0,0.004181,0.007692,3372001,2883816,0,0,7223,0,1,1 +1773527929.661183,1.81,4,3992.50,64.57,1152.80,2528.10,0.00,0.050001,0.000000,70,0,0.004062,0.007655,3372106,2883967,0,0,7225,0,1,1 +1773527934.665792,1.75,4,3992.50,64.57,1152.81,2528.09,0.00,1.440567,0.022050,221,21,0.003417,0.005847,3372192,2884083,0,0,7228,0,1,1 +1773527939.665477,1.86,4,3992.50,64.58,1152.58,2528.33,0.00,0.516927,3518658853426.746582,238,2,0.003886,0.007131,3372293,2884224,0,0,7230,0,1,1 +1773527944.664552,2.96,4,3992.50,64.25,1165.38,2515.51,0.00,3519088670319.327637,0.021879,221,21,0.006646,0.008206,3372439,2884393,0,0,7233,0,1,1 +1773527949.663727,19.81,4,3992.50,65.05,1134.12,2546.68,0.00,3519017696891.591309,3519017696893.011719,70,0,24.158867,0.116429,3379687,2890115,0,0,7235,0,1,1 +1773527954.665640,11.07,4,3992.50,64.24,1164.98,2515.29,0.00,1.441343,0.022062,221,21,16.075884,0.064921,3384031,2893631,0,0,7238,0,1,1 +1773527959.665760,2.31,4,3992.50,64.30,1162.80,2517.48,0.00,0.516882,3518353101948.605469,238,2,0.004509,0.007375,3384144,2893778,0,0,7240,0,1,1 +1773527964.665147,1.51,4,3992.50,64.30,1162.82,2517.46,0.00,3518868508852.811035,3518868508854.819824,11,0,0.003991,0.007246,3384252,2893927,0,0,7243,0,1,1 +1773527969.661271,1.71,4,3992.50,64.30,1162.83,2517.45,0.00,0.177090,0.000000,199,0,0.003431,0.005868,3384339,2894044,0,0,7245,0,1,1 +1773527974.665319,1.76,4,3992.50,64.11,1170.24,2510.04,0.00,3515591150816.987305,0.000000,11,0,0.003887,0.007127,3384440,2894185,0,0,7248,0,1,1 +1773527979.661191,1.96,4,3992.50,64.35,1163.77,2519.33,0.00,259.615016,964.526760,55487,573463,0.003881,0.007128,3384540,2894325,0,0,7250,0,1,1 +1773527984.664214,1.96,4,3992.50,64.37,1162.77,2520.25,0.00,3516311422553.294434,3516311421849.390137,11,0,0.003863,0.007128,3384639,2894466,0,0,7253,0,1,1 +1773527989.665931,1.61,4,3992.50,64.38,1162.53,2520.50,0.00,2.008099,0.000195,238,2,0.004341,0.006523,3384727,2894585,0,0,7255,0,1,1 +1773527994.665414,1.66,4,3992.50,64.38,1162.56,2520.47,0.00,3518801501251.781738,3518801501253.740723,70,0,0.003866,0.007120,3384826,2894725,0,0,7258,0,1,1 +1773527999.666014,1.81,4,3992.50,64.39,1161.83,2521.19,0.00,1.958554,0.000195,238,2,0.003886,0.007130,3384927,2894866,0,0,7260,0,1,1 +1773528004.665672,2.06,4,3992.50,64.42,1160.68,2522.35,0.00,253.357793,963.897405,54738,573549,0.003878,0.007133,3385027,2895007,0,0,7263,0,1,1 +1773528009.665338,2.01,4,3992.50,64.46,1155.91,2523.88,0.00,3518671909674.101074,3518671908965.571289,11,0,0.003420,0.005856,3385113,2895123,0,0,7265,0,1,1 +1773528014.665830,1.81,4,3992.50,64.49,1154.09,2524.86,0.00,0.000000,0.000000,11,0,0.003878,0.007293,3385213,2895265,0,0,7268,0,1,1 +1773528019.666063,6.82,4,3992.50,64.37,1158.55,2520.38,0.00,0.000000,0.000000,11,0,2.021968,0.020443,3385964,2895914,0,0,7270,0,1,1 +1773528024.665540,21.00,4,3992.50,65.15,1128.16,2550.68,0.00,2.008999,0.000195,238,2,32.182583,0.135886,3395140,2903040,0,0,7273,0,1,1 +1773528029.665321,5.72,4,3992.50,64.60,1149.45,2529.36,0.00,3518590798185.896484,0.021876,221,21,6.044647,0.033698,3397141,2904640,0,0,7275,0,1,1 +1773528034.665422,1.61,4,3992.50,64.60,1149.54,2529.30,0.00,3518366303949.257812,3518366303950.728027,11,0,0.003878,0.007132,3397241,2904781,0,0,7278,0,1,1 +1773528039.664140,1.81,4,3992.50,64.61,1149.30,2529.53,0.00,255.426416,965.115863,54753,574873,0.003180,0.005210,3397319,2904884,0,0,7280,0,1,1 +1773528044.665539,2.06,4,3992.50,64.80,1141.60,2537.04,0.00,3517453343162.212891,3517453342450.895996,238,2,0.003190,0.005230,3397398,2904989,0,0,7283,0,1,1 +1773528049.665682,2.01,4,3992.50,64.80,1141.62,2537.02,0.00,3518336666079.444336,0.021874,221,21,0.003878,0.007122,3397498,2905129,0,0,7285,0,1,1 +1773528054.663795,1.71,4,3992.50,64.80,1141.64,2537.00,0.00,258.027229,965.494720,55511,574949,0.003892,0.007135,3397599,2905270,0,0,7288,0,1,1 +1773528059.661191,1.76,4,3992.50,64.80,1141.41,2537.23,0.00,3520270683172.665527,3520270682466.517090,70,0,0.003888,0.007134,3397700,2905411,0,0,7290,0,1,1 +1773528064.666025,1.66,4,3992.50,64.80,1141.42,2537.22,0.00,259.121272,964.296575,55511,575015,0.003874,0.007125,3397800,2905552,0,0,7293,0,1,1 +1773528069.665631,2.21,4,3992.50,64.81,1145.62,2537.42,0.00,3518714869711.896484,3518714869004.563477,221,21,0.003421,0.005856,3397886,2905668,0,0,7295,0,1,1 +1773528074.661287,2.06,4,3992.50,64.81,1145.66,2537.38,0.00,0.517344,3521496280583.976562,238,2,0.003856,0.007113,3397984,2905807,0,0,7298,0,1,1 +1773528079.665445,1.85,4,3992.50,64.81,1145.67,2537.38,0.00,3515513584038.803223,3515513584040.633789,199,0,0.003875,0.007277,3398084,2905948,0,0,7300,0,1,1 +1773528084.662124,1.56,4,3992.50,64.81,1145.70,2537.34,0.00,3520775686265.030762,0.000000,11,0,0.003901,0.007628,3398186,2906093,0,0,7303,0,1,1 +1773528089.665588,10.56,4,3992.50,65.05,1136.32,2546.72,0.00,255.186468,965.005686,54756,575577,8.043975,0.039695,3400388,2907844,0,0,7305,0,1,1 +1773528094.664728,21.36,4,3992.50,65.12,1133.54,2549.40,0.00,3519042666956.948730,3519042666246.338379,199,0,32.189559,0.137769,3409554,2915092,0,0,7308,0,1,1 +1773528099.666013,2.41,4,3992.50,64.81,1144.98,2537.43,0.00,1.314603,0.022065,221,21,0.008867,0.009033,3409757,2915298,0,0,7310,0,1,1 +1773528104.665335,1.76,4,3992.50,64.81,1145.02,2537.41,0.00,3518914506703.785645,3518914506705.255859,11,0,0.003879,0.007133,3409857,2915439,0,0,7313,0,1,1 +1773528109.666084,1.56,4,3992.50,64.81,1144.80,2537.62,0.00,0.049993,0.000000,70,0,0.003407,0.005854,3409942,2915555,0,0,7315,0,1,1 +1773528114.663650,1.96,4,3992.50,64.64,1151.48,2530.95,0.00,1.959743,0.000195,238,2,0.003888,0.007144,3410043,2915697,0,0,7318,0,1,1 +1773528119.665486,1.61,4,3992.50,64.65,1151.38,2531.06,0.00,0.000000,0.000000,238,2,0.003419,0.005853,3410129,2915813,0,0,7320,0,1,1 +1773528124.661458,1.76,4,3992.50,64.66,1150.90,2531.52,0.00,3521273681455.112305,3521273681456.945801,199,0,0.003881,0.007138,3410229,2915954,0,0,7323,0,1,1 +1773528129.665549,2.01,4,3992.50,64.85,1146.55,2538.86,0.00,1.313866,0.022052,221,21,0.003875,0.007117,3410329,2916094,0,0,7325,0,1,1 +1773528134.665003,2.01,4,3992.50,64.85,1146.40,2538.83,0.00,3518821517677.702637,3518821517678.995605,199,0,0.003878,0.007121,3410429,2916234,0,0,7328,0,1,1 +1773528139.663105,1.81,4,3992.50,64.31,1167.22,2518.04,0.00,3519772973989.925293,0.000000,11,0,0.003254,0.005719,3410513,2916349,0,0,7330,0,1,1 +1773528144.662567,1.81,4,3992.50,64.36,1165.50,2519.76,0.00,2.009005,0.000195,238,2,0.003866,0.007282,3410612,2916490,0,0,7333,0,1,1 +1773528149.662913,1.61,4,3992.50,64.36,1165.51,2519.75,0.00,253.344758,967.099034,54766,577099,0.003878,0.007605,3410712,2916633,0,0,7335,0,1,1 +1773528154.665049,2.06,4,3992.50,64.36,1165.54,2519.74,0.00,3516934937913.012207,3516934937200.051758,221,21,0.003876,0.007129,3410812,2916774,0,0,7338,0,1,1 +1773528159.661169,13.54,4,3992.50,64.91,1141.57,2541.51,0.00,3521170012168.051270,3521170012169.345215,199,0,10.085713,0.057925,3414040,2919350,0,0,7340,0,1,1 +1773528164.661331,18.74,4,3992.50,64.59,1153.47,2528.99,0.00,1.831776,0.000195,238,2,30.161646,0.123941,3422458,2926007,0,0,7343,0,1,1 +1773528169.665230,1.95,4,3992.50,64.63,1152.20,2530.28,0.00,3515695776894.659668,3515695776896.666504,11,0,0.003242,0.005692,3422541,2926120,0,0,7345,0,1,1 +1773528174.665589,1.66,4,3992.50,64.63,1152.21,2530.25,0.00,259.422707,967.824157,55536,578295,0.003420,0.005877,3422627,2926238,0,0,7348,0,1,1 +1773528179.663494,2.06,4,3992.50,64.63,1152.23,2530.25,0.00,3519912057407.671387,3519912056698.921875,11,0,0.003880,0.007125,3422727,2926378,0,0,7350,0,1,1 +1773528184.663996,1.61,4,3992.50,64.63,1152.24,2530.23,0.00,0.176935,0.000000,199,0,0.002299,0.003458,3422793,2926457,0,0,7353,0,1,1 +1773528189.664105,1.81,4,3992.50,64.96,1139.46,2543.16,0.00,259.258701,968.482783,55536,578569,0.002438,0.002743,3422856,2926526,0,0,7355,0,1,1 +1773528194.665169,1.76,4,3992.50,64.71,1149.18,2533.41,0.00,3517689253166.306152,0.041788,54778,578590,0.001361,0.002353,3422893,2926577,0,0,7358,0,1,1 +1773528199.665792,2.31,4,3992.50,64.72,1148.46,2534.12,0.00,3517998790694.816406,3517998789980.270996,221,21,0.001859,0.003088,3422937,2926639,0,0,7360,0,1,1 +1773528204.661206,1.71,4,3992.50,64.73,1148.47,2534.13,0.00,0.517369,3521667289164.133789,238,2,0.002469,0.003162,3422992,2926704,0,0,7363,0,1,1 +1773528209.664278,1.56,4,3992.50,64.74,1148.00,2534.60,0.00,3516276995362.668945,0.021862,221,21,0.001344,0.002509,3423028,2926755,0,0,7365,0,1,1 +1773528214.664940,7.12,4,3992.50,64.42,1160.36,2522.25,0.00,3517971148767.690430,3517971148768.983398,199,0,0.016709,0.009730,3423333,2926961,0,0,7368,0,1,1 +1773528219.665477,3.87,4,3992.50,64.55,1160.25,2527.26,0.00,1.314800,0.022068,221,21,0.019817,0.014896,3423652,2927211,0,0,7370,0,1,1 +1773528224.664376,6.76,4,3992.50,65.07,1139.72,2547.80,0.00,3519212432257.765625,3519212432259.235840,11,0,1.719279,0.039731,3426929,2930027,0,0,7373,0,1,1 +1773528229.665978,4.09,4,3992.50,65.11,1138.34,2549.16,0.00,259.363682,968.932344,55543,579417,3.278055,0.082346,3433111,2936060,0,0,7375,0,1,1 +1773528234.665650,4.34,4,3992.50,64.99,1143.11,2544.36,0.00,3518667715138.304688,3518667714428.461914,11,0,3.526343,0.084234,3439750,2942387,0,0,7378,0,1,1 +1773528239.666114,2.77,4,3992.50,64.84,1148.94,2538.52,0.00,259.422703,969.233786,55543,579575,1.747947,0.051563,3443080,2946172,0,0,7380,0,1,1 +1773528244.661648,4.73,4,3992.50,65.12,1137.72,2549.74,0.00,3521582966142.799316,3521582965432.287598,11,0,0.203755,0.008738,3443618,2946455,0,0,7383,0,1,1 +1773528249.665286,4.75,4,3992.50,65.70,1113.49,2572.47,0.00,259.260462,968.925984,55546,579775,3.245121,0.077150,3449678,2952244,0,0,7385,0,1,1 +1773528254.666032,3.83,4,3992.50,65.15,1135.07,2550.80,0.00,3517912622418.623047,3517912621708.497070,70,0,3.430877,0.085419,3456138,2958584,0,0,7388,0,1,1 +1773528259.664406,3.73,4,3992.50,65.23,1131.91,2553.95,0.00,1.442364,0.022077,221,21,2.816415,0.072585,3461481,2963754,0,0,7390,0,1,1 +1773528264.665347,5.61,4,3992.50,65.26,1130.88,2554.98,0.00,3517774990554.133301,3517774990555.426270,199,0,2.097774,0.055051,3465534,2967651,0,0,7393,0,1,1 +1773528269.665844,3.53,4,3992.50,65.44,1123.61,2562.18,0.00,3518087805770.937500,0.000000,70,0,3.454226,0.080933,3471997,2973677,0,0,7395,0,1,1 +1773528274.665596,4.19,4,3992.50,65.42,1124.61,2561.21,0.00,3518611602533.728516,0.000000,11,0,2.960892,0.075036,3477603,2979354,0,0,7398,0,1,1 +1773528279.664802,2.87,4,3992.50,65.40,1131.91,2560.55,0.00,2.009108,0.000195,238,2,2.340166,0.064095,3482014,2984015,0,0,7400,0,1,1 +1773528284.665278,3.53,4,3992.50,65.56,1125.52,2566.92,0.00,3518101748732.435059,3518101748734.393555,70,0,1.083192,0.026458,3484172,2985667,0,0,7403,0,1,1 +1773528289.661230,4.60,4,3992.50,65.92,1111.32,2581.05,0.00,1.443063,0.022088,221,21,3.495648,0.083523,3490736,2991872,0,0,7405,0,1,1 +1773528294.665650,3.48,4,3992.50,65.62,1123.05,2569.34,0.00,0.516438,3515329670812.432617,238,2,3.091770,0.079446,3496562,2997819,0,0,7408,0,1,1 +1773528299.665182,2.83,4,3992.50,65.07,1144.76,2547.66,0.00,3518766321910.292969,3518766321912.301758,11,0,2.604389,0.068219,3501482,3002918,0,0,7410,0,1,1 +1773528304.665965,2.06,4,3992.50,65.05,1145.52,2546.90,0.00,0.049992,0.000000,70,0,0.005389,0.005338,3501593,3003103,0,0,7413,0,1,1 +1773528309.661116,2.31,4,3992.50,64.99,1151.25,2544.56,0.00,255.594744,971.439929,54799,580774,0.001704,0.003232,3501635,3003166,0,0,7415,0,1,1 +1773528314.661181,1.71,4,3992.50,64.97,1150.59,2543.59,0.00,4.060787,0.029687,55557,580808,0.002513,0.003301,3501694,3003233,0,0,7418,0,1,1 +1773528319.661182,1.66,4,3992.50,64.96,1150.95,2543.24,0.00,0.000000,0.068750,55557,580879,0.001319,0.001932,3501726,3003273,0,0,7420,0,1,1 +1773528324.663975,1.76,4,3992.50,64.95,1151.38,2542.82,0.00,3516472459109.492188,3516472458398.751465,11,0,0.001618,0.002684,3501764,3003328,0,0,7423,0,1,1 +1773528329.665196,2.01,4,3992.50,64.95,1151.22,2542.96,0.00,259.394371,970.373193,55557,580897,0.002492,0.003295,3501821,3003394,0,0,7425,0,1,1 +1773528334.663384,1.66,4,3992.50,64.79,1157.68,2536.48,0.00,3519712779286.264648,3519712778573.383789,221,21,0.001548,0.002564,3501860,3003446,0,0,7428,0,1,1 +1773528339.663952,2.06,4,3992.50,64.97,1150.58,2543.57,0.00,3518037791979.210938,3518037791980.503418,199,0,0.001489,0.002671,3501897,3003500,0,0,7430,0,1,1 +1773528344.661283,1.76,4,3992.50,64.76,1158.57,2535.64,0.00,1.832814,0.000195,238,2,0.002402,0.003330,3501949,3003560,0,0,7433,0,1,1 +1773528349.661611,1.61,4,3992.50,64.80,1157.12,2537.10,0.00,3518206821218.428223,3518206821220.436523,11,0,0.001743,0.002925,3501994,3003618,0,0,7435,0,1,1 +1773528354.661140,2.06,4,3992.50,64.70,1160.88,2533.33,0.00,0.000000,0.000000,11,0,0.001502,0.002697,3502030,3003671,0,0,7438,0,1,1 +1773528359.661320,1.81,4,3992.50,64.75,1159.21,2535.00,0.00,255.387661,970.826692,54799,581128,0.002401,0.002913,3502082,3003732,0,0,7440,0,1,1 +1773528364.662237,5.31,4,3992.50,64.92,1152.68,2541.58,0.00,4.061657,0.056728,55559,581172,0.002370,0.002387,3502137,3003786,0,0,7443,0,1,1 +1773528369.662253,6.58,4,3992.50,64.94,1146.75,2542.36,0.00,3518425787813.683594,3518425787102.176758,70,0,0.019022,0.010771,3502476,3004021,0,0,7445,0,1,1 +1773528374.663014,3.62,4,3992.50,65.01,1143.46,2545.39,0.00,1.441675,0.022067,221,21,0.014588,0.010688,3502718,3004201,0,0,7448,0,1,1 +1773528379.665308,4.49,4,3992.50,65.15,1138.21,2550.57,0.00,3516823681033.108398,3516823681034.577637,11,0,2.857763,0.065112,3508084,3008976,0,0,7450,0,1,1 +1773528384.664060,4.90,4,3992.50,65.60,1120.59,2568.21,0.00,259.526432,971.693731,55562,581745,3.387232,0.080088,3514471,3015016,0,0,7453,0,1,1 +1773528389.664371,2.77,4,3992.50,64.96,1145.63,2543.17,0.00,0.000000,0.065523,55562,581844,1.968532,0.058379,3518183,3019292,0,0,7455,0,1,1 +1773528394.664785,4.28,4,3992.50,65.41,1127.97,2560.84,0.00,3518145638787.787598,3518145638073.782715,238,2,1.216262,0.029936,3520584,3021227,0,0,7458,0,1,1 +1773528399.665148,5.36,4,3992.50,65.43,1129.91,2561.60,0.00,3518182201184.339844,3518182201186.348145,11,0,3.545869,0.085022,3527247,3027519,0,0,7460,0,1,1 +1773528404.665279,4.49,4,3992.50,65.55,1122.35,2566.30,0.00,0.000000,0.000000,11,0,2.987445,0.076333,3532899,3033293,0,0,7463,0,1,1 +1773528409.663045,2.67,4,3992.50,64.85,1149.45,2539.19,0.00,259.579931,972.288076,55565,582258,2.526436,0.068426,3537663,3038281,0,0,7465,0,1,1 +1773528414.663594,3.98,4,3992.50,65.46,1125.77,2562.88,0.00,3518051653381.716309,3518051652669.354492,70,0,1.343186,0.033869,3540292,3040511,0,0,7468,0,1,1 +1773528419.664677,5.20,4,3992.50,65.46,1125.80,2562.79,0.00,3517674811261.211426,0.000000,11,0,3.355567,0.080981,3546599,3046515,0,0,7470,0,1,1 +1773528424.664403,5.75,4,3992.50,65.13,1138.53,2550.09,0.00,0.000000,0.000000,11,0,3.221757,0.080060,3552696,3052583,0,0,7473,0,1,1 +1773528429.664928,3.17,4,3992.50,65.39,1128.42,2560.21,0.00,0.176935,0.000000,199,0,2.355044,0.064888,3557156,3057302,0,0,7475,0,1,1 +1773528434.665187,3.53,4,3992.50,65.56,1121.71,2566.89,0.00,259.275180,972.317934,55567,582901,1.091564,0.027327,3559318,3059045,0,0,7478,0,1,1 +1773528439.665594,4.94,4,3992.50,65.41,1127.62,2560.93,0.00,3518150507757.961914,0.056148,54810,583012,3.569361,0.084716,3566020,3065346,0,0,7480,0,1,1 +1773528444.665199,3.69,4,3992.50,65.33,1130.79,2557.80,0.00,3518715508061.277344,3518715507342.731934,221,21,3.147975,0.081126,3571972,3071417,0,0,7483,0,1,1 +1773528449.661190,2.42,4,3992.50,65.10,1139.60,2548.94,0.00,3521260437890.760742,3521260437892.181641,70,0,2.467862,0.066690,3576628,3076306,0,0,7485,0,1,1 +1773528454.665218,3.37,4,3992.50,65.71,1115.80,2572.77,0.00,0.126851,0.000000,199,0,0.791956,0.016349,3578216,3077319,0,0,7488,0,1,1 +1773528459.666130,2.41,4,3992.50,64.95,1142.53,2542.75,0.00,3517795458161.149414,0.000000,11,0,1.265289,0.038414,3580603,3080152,0,0,7490,0,1,1 +1773528464.664562,2.06,4,3992.50,64.99,1140.84,2544.30,0.00,255.485603,973.095256,54810,583358,0.003324,0.003702,3580677,3080231,0,0,7493,0,1,1 +1773528469.665250,1.86,4,3992.50,64.98,1140.85,2544.30,0.00,3517952761203.316895,3517952760486.031250,11,0,0.001632,0.002437,3580714,3080279,0,0,7495,0,1,1 +1773528474.665413,1.76,4,3992.50,64.98,1140.85,2544.29,0.00,0.000000,0.000000,11,0,0.002075,0.003195,3580760,3080338,0,0,7498,0,1,1 +1773528479.661280,1.81,4,3992.50,64.78,1148.74,2536.42,0.00,0.050041,0.000000,70,0,0.001536,0.002689,3580798,3080390,0,0,7500,0,1,1 +1773528484.665926,1.91,4,3992.50,64.82,1147.31,2537.85,0.00,1.956971,0.000195,238,2,0.001755,0.002658,3580836,3080443,0,0,7503,0,1,1 +1773528489.665574,2.31,4,3992.50,64.82,1144.70,2537.77,0.00,0.000000,0.000000,238,2,0.002114,0.002587,3580885,3080500,0,0,7505,0,1,1 +1773528494.666067,1.86,4,3992.50,64.82,1144.48,2538.00,0.00,3518089822841.608887,3518089822843.440918,199,0,0.001683,0.002889,3580926,3080556,0,0,7508,0,1,1 +1773528499.661252,2.11,4,3992.50,64.83,1144.24,2538.23,0.00,1.316209,0.022092,221,21,0.001725,0.002835,3580968,3080610,0,0,7510,0,1,1 +1773528504.662577,1.96,4,3992.50,64.79,1145.63,2536.85,0.00,0.000000,0.000000,221,21,0.002224,0.002763,3581017,3080669,0,0,7513,0,1,1 +1773528509.661196,1.66,4,3992.50,64.83,1144.41,2538.07,0.00,3519409849176.912109,3519409849178.382324,11,0,0.001496,0.002362,3581054,3080720,0,0,7515,0,1,1 +1773528514.665981,1.76,4,3992.50,64.63,1152.05,2530.44,0.00,0.049952,0.000000,70,0,0.001866,0.003041,3581099,3080779,0,0,7518,0,1,1 +1773528519.665195,2.31,4,3992.50,64.55,1165.21,2527.40,0.00,1.442121,0.022074,221,21,0.006457,0.006599,3581214,3080890,0,0,7520,0,1,1 +1773528524.664368,4.72,4,3992.50,64.56,1165.04,2527.56,0.00,3519019463026.895020,3519019463028.314941,70,0,0.007043,0.004133,3581348,3080991,0,0,7523,0,1,1 +1773528529.666076,5.27,4,3992.50,64.36,1172.81,2519.79,0.00,259.329285,973.162100,55570,584113,0.019497,0.012937,3581699,3081255,0,0,7525,0,1,1 +1773528534.665824,5.28,4,3992.50,64.65,1161.52,2531.06,0.00,3518614494015.012695,3518614493300.950195,11,0,0.205338,0.010539,3582244,3081558,0,0,7528,0,1,1 +1773528539.664555,5.81,4,3992.50,65.78,1117.05,2575.52,0.00,2.009299,0.000195,238,2,3.111733,0.074122,3588062,3087034,0,0,7530,0,1,1 +1773528544.666021,3.64,4,3992.50,65.79,1116.86,2575.70,0.00,257.384395,973.468472,55571,584414,3.230351,0.076828,3594167,3092691,0,0,7533,0,1,1 +1773528549.664547,4.08,4,3992.50,64.83,1147.93,2538.13,0.00,3519474670921.978516,3519474670206.011719,221,21,3.248534,0.082894,3600233,3098972,0,0,7535,0,1,1 +1773528554.664562,3.07,4,3992.50,64.71,1152.34,2533.68,0.00,3518426947037.724609,3518426947039.144531,70,0,0.490048,0.022474,3601320,3100312,0,0,7538,0,1,1 +1773528559.664556,5.25,4,3992.50,65.32,1128.43,2557.57,0.00,3518440820914.497070,0.000000,11,0,2.303756,0.054125,3605706,3104090,0,0,7540,0,1,1 +1773528564.665555,3.94,4,3992.50,65.41,1124.91,2561.10,0.00,2.008388,0.000195,238,2,3.470881,0.084987,3612200,3110477,0,0,7543,0,1,1 +1773528569.665552,4.30,4,3992.50,65.17,1134.34,2551.69,0.00,3518439004692.509277,3518439004694.467773,70,0,3.146618,0.081076,3618166,3116468,0,0,7545,0,1,1 +1773528574.665556,4.03,4,3992.50,65.34,1127.68,2558.32,0.00,1.958787,0.000195,238,2,1.804423,0.047147,3621668,3119741,0,0,7548,0,1,1 +1773528579.665684,4.85,4,3992.50,65.98,1102.79,2583.16,0.00,3518347346771.607910,3518347346773.616211,11,0,3.417961,0.083936,3628089,3125975,0,0,7550,0,1,1 +1773528584.666001,3.64,4,3992.50,65.35,1127.53,2558.42,0.00,255.397864,974.494444,54821,585350,3.392690,0.081234,3634481,3132071,0,0,7553,0,1,1 +1773528589.665569,3.83,4,3992.50,64.98,1141.99,2543.99,0.00,3518741396784.232422,3518741396064.851074,199,0,3.007205,0.081033,3640151,3138066,0,0,7555,0,1,1 +1773528594.662492,4.84,4,3992.50,65.52,1120.87,2565.11,0.00,3520603515791.979492,0.000000,70,0,1.808856,0.045890,3643655,3141194,0,0,7558,0,1,1 +1773528599.664580,3.54,4,3992.50,65.54,1119.83,2566.12,0.00,3516968533374.518066,0.000000,11,0,3.076921,0.077731,3649473,3146925,0,0,7560,0,1,1 +1773528604.661730,3.99,4,3992.50,65.60,1117.42,2568.55,0.00,1.492746,0.022083,221,21,3.286723,0.078481,3655649,3152817,0,0,7563,0,1,1 +1773528609.666027,2.72,4,3992.50,65.33,1128.60,2557.86,0.00,0.516451,3515415562263.042480,238,2,2.103556,0.058384,3659639,3157131,0,0,7565,0,1,1 +1773528614.661277,2.51,4,3992.50,64.92,1144.09,2541.94,0.00,3521782943530.227051,3521782943532.237793,11,0,0.003948,0.003609,3659720,3157215,0,0,7568,0,1,1 +1773528619.665325,1.61,4,3992.50,64.92,1144.32,2541.73,0.00,255.217600,974.373865,54831,586007,0.001494,0.002866,3659758,3157271,0,0,7570,0,1,1 +1773528624.661198,1.76,4,3992.50,64.91,1144.57,2541.47,0.00,0.000000,0.013390,54831,586019,0.001884,0.002718,3659803,3157329,0,0,7573,0,1,1 +1773528629.665715,1.55,4,3992.50,64.93,1143.85,2542.20,0.00,3515261739119.060547,3515261738399.781250,199,0,0.002125,0.002730,3659851,3157383,0,0,7575,0,1,1 +1773528634.665807,1.71,4,3992.50,64.93,1143.86,2542.19,0.00,1.314917,0.022070,221,21,0.001408,0.002487,3659884,3157434,0,0,7578,0,1,1 +1773528639.666204,2.46,4,3992.50,65.06,1127.77,2547.31,0.00,0.000000,0.000000,221,21,0.001880,0.002622,3659929,3157485,0,0,7580,0,1,1 +1773528644.661258,1.71,4,3992.50,65.06,1127.80,2547.09,0.00,258.248667,976.373611,55589,586244,0.002077,0.002408,3659975,3157538,0,0,7583,0,1,1 +1773528649.661271,1.66,4,3992.50,65.06,1127.81,2547.09,0.00,3518428112335.097168,0.013769,54831,586262,0.001474,0.002873,3660011,3157594,0,0,7585,0,1,1 +1773528654.661476,1.56,4,3992.50,65.06,1127.82,2547.07,0.00,3518292787634.453125,3518292786914.463867,11,0,0.001959,0.003040,3660060,3157653,0,0,7588,0,1,1 +1773528659.661411,1.96,4,3992.50,64.88,1134.75,2540.14,0.00,2.008815,0.000195,238,2,0.002225,0.002608,3660109,3157709,0,0,7590,0,1,1 +1773528664.664932,1.65,4,3992.50,64.86,1135.45,2539.45,0.00,3515961073605.772461,3515961073607.729492,70,0,0.001296,0.002305,3660142,3157758,0,0,7593,0,1,1 +1773528669.665815,1.96,4,3992.50,65.07,1128.10,2547.72,0.00,255.329123,975.407609,54831,586393,0.002065,0.003875,3660191,3157824,0,0,7595,0,1,1 +1773528674.661275,1.61,4,3992.50,64.68,1140.95,2532.41,0.00,3521634884799.896484,3521634884077.076172,238,2,0.002168,0.002778,3660242,3157881,0,0,7598,0,1,1 +1773528679.665644,9.24,4,3992.50,64.03,1166.38,2506.90,0.00,257.254596,975.019184,55593,586701,0.014911,0.008335,3660512,3158063,0,0,7600,0,1,1 +1773528684.661154,3.27,4,3992.50,64.14,1162.27,2511.09,0.00,3521599542330.261719,3521599541611.224121,238,2,0.018327,0.012765,3660814,3158292,0,0,7603,0,1,1 +1773528689.662987,4.83,4,3992.50,65.01,1128.20,2545.13,0.00,3517148019379.067871,0.021867,221,21,1.965870,0.046526,3664556,3161649,0,0,7605,0,1,1 +1773528694.665683,3.58,4,3992.50,65.37,1114.11,2559.21,0.00,0.516616,3516541125073.949707,238,2,3.531465,0.084942,3671178,3167996,0,0,7608,0,1,1 +1773528699.661183,5.10,4,3992.50,65.68,1101.90,2571.43,0.00,257.713669,977.139442,55596,587108,3.180294,0.079476,3677184,3173958,0,0,7610,0,1,1 +1773528704.661609,3.07,4,3992.50,65.15,1122.50,2550.65,0.00,3518137673678.544922,3518137672961.836426,11,0,1.593194,0.046580,3680225,3177230,0,0,7613,0,1,1 +1773528709.665308,4.18,4,3992.50,65.48,1109.26,2563.87,0.00,2.007304,0.000195,238,2,1.616452,0.039961,3683336,3180038,0,0,7615,0,1,1 +1773528714.664693,5.10,4,3992.50,65.36,1114.21,2558.89,0.00,3518870192486.670410,3518870192488.679199,11,0,3.092384,0.075145,3689161,3185566,0,0,7618,0,1,1 +1773528719.665924,4.43,4,3992.50,65.56,1106.32,2566.78,0.00,259.429760,976.332011,55600,587554,3.002172,0.072805,3694881,3191001,0,0,7620,0,1,1 +1773528724.664579,2.87,4,3992.50,64.89,1132.47,2540.64,0.00,3519384067232.538574,3519384066515.266602,11,0,2.562263,0.069430,3699678,3196165,0,0,7623,0,1,1 +1773528729.661134,4.64,4,3992.50,65.50,1120.04,2564.36,0.00,255.609727,977.498860,54843,587793,1.323000,0.033875,3702286,3198396,0,0,7625,0,1,1 +1773528734.661330,4.85,4,3992.50,65.64,1114.53,2569.86,0.00,3518299122423.809570,3518299121702.445801,11,0,3.366160,0.080243,3708604,3204285,0,0,7628,0,1,1 +1773528739.665340,3.69,4,3992.50,65.81,1107.63,2576.73,0.00,0.049960,0.000000,70,0,3.184771,0.081037,3714628,3210448,0,0,7630,0,1,1 +1773528744.661556,2.87,4,3992.50,65.46,1121.65,2562.73,0.00,0.000000,0.000000,70,0,2.402191,0.064366,3719159,3215093,0,0,7633,0,1,1 +1773528749.664545,6.10,4,3992.50,65.88,1105.11,2579.25,0.00,255.233345,976.542927,54846,588246,1.660139,0.040652,3722377,3217890,0,0,7635,0,1,1 +1773528754.661179,3.74,4,3992.50,65.79,1108.45,2575.93,0.00,3520807259752.679199,3520807259029.031250,221,21,3.463480,0.084114,3728884,3224133,0,0,7638,0,1,1 +1773528759.661236,4.44,4,3992.50,65.71,1112.65,2572.49,0.00,0.516889,3518397276481.448730,238,2,3.144696,0.077820,3734811,3229987,0,0,7640,0,1,1 +1773528764.663436,2.31,4,3992.50,65.28,1129.16,2555.98,0.00,257.377870,977.011436,55608,588583,2.008297,0.056660,3738647,3234159,0,0,7643,0,1,1 +1773528769.661296,2.06,4,3992.50,65.30,1128.56,2556.59,0.00,3519943769196.699707,3519943768478.273926,199,0,0.002895,0.003270,3738715,3234230,0,0,7645,0,1,1 +1773528774.665218,1.65,4,3992.50,65.22,1131.57,2553.58,0.00,0.000000,0.000000,199,0,0.001462,0.002357,3738750,3234281,0,0,7648,0,1,1 +1773528779.665928,1.76,4,3992.50,65.25,1130.59,2554.55,0.00,3517937259340.174316,0.000000,11,0,0.002453,0.003262,3738804,3234345,0,0,7650,0,1,1 +1773528784.661889,1.71,4,3992.50,65.26,1130.15,2555.00,0.00,0.000000,0.000000,11,0,0.003889,0.007146,3738905,3234487,0,0,7653,0,1,1 +1773528789.664979,2.21,4,3992.50,65.45,1125.29,2562.59,0.00,0.049969,0.000000,70,0,0.003647,0.006472,3738998,3234614,0,0,7655,0,1,1 +1773528794.665911,1.86,4,3992.50,65.21,1134.70,2553.18,0.00,0.126929,0.000000,199,0,0.003636,0.006510,3739090,3234744,0,0,7658,0,1,1 +1773528799.665640,2.01,4,3992.50,65.22,1134.36,2553.52,0.00,3518628316142.757812,0.000000,11,0,0.003878,0.007767,3739190,3234888,0,0,7660,0,1,1 +1773528804.662251,1.76,4,3992.50,65.19,1135.60,2552.26,0.00,0.000000,0.000000,11,0,0.003881,0.007137,3739290,3235029,0,0,7663,0,1,1 +1773528809.665791,1.61,4,3992.50,64.99,1143.49,2544.38,0.00,259.317875,977.197039,55610,589013,0.003863,0.007105,3739389,3235168,0,0,7665,0,1,1 +1773528814.665920,1.96,4,3992.50,64.99,1143.50,2544.38,0.00,0.000000,0.034667,55610,589053,0.003420,0.005878,3739475,3235286,0,0,7668,0,1,1 +1773528819.665623,2.21,4,3992.50,65.45,1127.21,2562.53,0.00,3518646492342.669434,0.054202,54852,589080,0.006717,0.009061,3739622,3235455,0,0,7670,0,1,1 +1773528824.665885,1.86,4,3992.50,64.92,1146.29,2541.70,0.00,3518252662202.792969,3518252661480.116699,199,0,0.005324,0.008888,3739739,3235621,0,0,7673,0,1,1 +1773528829.662780,3.26,4,3992.50,64.94,1145.40,2542.56,0.00,0.000000,0.000000,199,0,0.009858,0.010825,3739946,3235845,0,0,7675,0,1,1 +1773528834.665438,21.45,4,3992.50,65.64,1117.75,2570.14,0.00,3516568039736.462402,0.000000,70,0,30.154964,0.132020,3748570,3242681,0,0,7678,0,1,1 +1773528839.665161,9.05,4,3992.50,65.30,1131.42,2556.48,0.00,0.000000,0.000000,70,0,10.064302,0.047920,3751625,3245069,0,0,7680,0,1,1 +1773528844.665768,1.76,4,3992.50,65.24,1133.43,2554.47,0.00,3518010365167.533691,0.000000,11,0,0.002962,0.004597,3751697,3245162,0,0,7683,0,1,1 +1773528849.666058,1.96,4,3992.50,65.25,1132.81,2554.58,0.00,255.439891,978.973759,54870,590378,0.003886,0.007130,3751798,3245303,0,0,7685,0,1,1 +1773528854.661994,1.96,4,3992.50,65.25,1131.93,2554.57,0.00,4.064143,0.027366,55628,590410,0.003869,0.007138,3751897,3245444,0,0,7688,0,1,1 +1773528859.661495,2.26,4,3992.50,65.27,1131.21,2555.29,0.00,3518788200005.300781,3518788199285.687012,11,0,0.004372,0.007899,3751997,3245584,0,0,7690,0,1,1 +1773528864.661960,1.61,4,3992.50,65.27,1131.23,2555.27,0.00,0.000000,0.000000,11,0,0.003470,0.006571,3752087,3245709,0,0,7693,0,1,1 +1773528869.664606,1.66,4,3992.50,65.26,1131.24,2555.25,0.00,255.319589,978.667604,54870,590421,0.003938,0.007169,3752191,3245853,0,0,7695,0,1,1 +1773528874.663057,1.76,4,3992.50,65.26,1131.26,2555.24,0.00,3519527170997.331055,3519527170273.375977,11,0,0.003879,0.007135,3752291,3245994,0,0,7698,0,1,1 +1773528879.663569,2.26,4,3992.50,65.27,1134.21,2555.42,0.00,2.008583,0.000195,238,2,0.003865,0.007109,3752390,3246133,0,0,7700,0,1,1 +1773528884.664091,1.61,4,3992.50,65.04,1143.21,2546.42,0.00,3518069996253.102051,3518069996255.060547,70,0,0.003428,0.005872,3752477,3246251,0,0,7703,0,1,1 +1773528889.665087,1.76,4,3992.50,65.05,1142.77,2546.87,0.00,3517737013883.747070,0.000000,11,0,0.003877,0.007121,3752577,3246391,0,0,7705,0,1,1 +1773528894.665504,1.76,4,3992.50,65.06,1142.54,2547.09,0.00,255.433323,979.405193,54870,590734,0.004799,0.007801,3752679,3246535,0,0,7708,0,1,1 +1773528899.665854,6.77,4,3992.50,65.10,1140.62,2548.97,0.00,3518191385559.253418,3518191384835.271484,11,0,4.030988,0.024626,3753884,3247506,0,0,7710,0,1,1 +1773528904.661184,23.55,4,3992.50,65.29,1133.18,2556.36,0.00,0.177119,0.000000,199,0,36.234619,0.154117,3764173,3255763,0,0,7713,0,1,1 +1773528909.665426,2.51,4,3992.50,65.53,1126.90,2565.80,0.00,259.128880,979.556718,55641,591914,0.011189,0.010540,3764405,3255989,0,0,7715,0,1,1 +1773528914.665731,1.86,4,3992.50,65.13,1142.54,2550.08,0.00,3518222435920.495117,3518222435199.677246,11,0,0.003428,0.005873,3764492,3256107,0,0,7718,0,1,1 +1773528919.662671,2.42,4,3992.50,65.15,1141.86,2550.61,0.00,0.177061,0.000000,199,0,0.003868,0.007114,3764591,3256246,0,0,7720,0,1,1 +1773528924.663385,1.66,4,3992.50,65.17,1141.18,2551.44,0.00,3517934849193.782227,0.000000,70,0,0.003877,0.007131,3764691,3256387,0,0,7723,0,1,1 +1773528929.664050,1.66,4,3992.50,65.17,1141.20,2551.43,0.00,1.441703,0.022067,221,21,0.003878,0.007765,3764791,3256531,0,0,7725,0,1,1 +1773528934.664602,3.77,4,3992.50,64.44,1169.63,2523.00,0.00,3518049194792.873535,3518049194794.166504,199,0,0.003407,0.005864,3764876,3256648,0,0,7728,0,1,1 +1773528939.665251,2.01,4,3992.50,64.77,1156.74,2535.95,0.00,0.000000,0.000000,199,0,0.003878,0.007121,3764976,3256788,0,0,7730,0,1,1 +1773528944.665506,1.96,4,3992.50,64.77,1156.68,2535.93,0.00,3518257823471.377441,0.000000,11,0,0.003890,0.007169,3765077,3256930,0,0,7733,0,1,1 +1773528949.666056,1.71,4,3992.50,64.77,1156.70,2535.92,0.00,0.000000,0.000000,11,0,0.003886,0.007130,3765178,3257071,0,0,7735,0,1,1 +1773528954.665756,1.76,4,3992.50,64.77,1156.71,2535.91,0.00,0.176964,0.000000,199,0,0.003420,0.005840,3765264,3257186,0,0,7738,0,1,1 +1773528959.661606,1.61,4,3992.50,64.73,1158.13,2534.48,0.00,3521360292879.230469,0.000000,11,0,0.003423,0.005885,3765350,3257304,0,0,7740,0,1,1 +1773528964.663334,1.96,4,3992.50,64.78,1156.45,2536.18,0.00,1.491379,0.022063,221,21,0.003877,0.007130,3765450,3257445,0,0,7743,0,1,1 +1773528969.663742,12.38,4,3992.50,65.64,1124.43,2569.87,0.00,3518150330460.201660,3518150330461.671387,11,0,12.072544,0.058426,3768790,3260116,0,0,7745,0,1,1 +1773528974.665369,19.85,4,3992.50,64.94,1151.54,2542.37,0.00,260.087128,981.525568,55763,593466,28.154778,0.121597,3776826,3266488,0,0,7748,0,1,1 +1773528979.665622,1.86,4,3992.50,64.94,1151.31,2542.59,0.00,3518258782944.950195,3518258782221.843750,221,21,0.003873,0.007117,3776926,3266628,0,0,7750,0,1,1 +1773528984.661262,1.76,4,3992.50,64.96,1150.58,2543.32,0.00,0.517346,3521508232400.758789,238,2,0.003423,0.005870,3777012,3266745,0,0,7753,0,1,1 +1773528989.665236,1.56,4,3992.50,64.96,1150.60,2543.29,0.00,253.900343,981.501718,55005,593831,0.003862,0.007117,3777111,3266885,0,0,7755,0,1,1 +1773528994.664557,1.66,4,3992.50,64.96,1150.51,2543.40,0.00,3518915570715.563965,3518915569987.285156,238,2,0.003879,0.007644,3777211,3267029,0,0,7758,0,1,1 +1773528999.662295,2.16,4,3992.50,65.30,1140.86,2556.62,0.00,3520029363218.601074,3520029363220.560547,70,0,0.003097,0.006876,3777297,3267161,0,0,7760,0,1,1 +1773529004.665309,1.66,4,3992.50,65.32,1140.15,2557.30,0.00,0.126877,0.000000,199,0,0.003647,0.006482,3777390,3267289,0,0,7763,0,1,1 +1773529009.661200,1.91,4,3992.50,65.32,1140.18,2557.29,0.00,0.000000,0.000000,199,0,0.003640,0.006494,3777482,3267417,0,0,7765,0,1,1 +1773529014.666111,1.71,4,3992.50,65.14,1147.08,2550.38,0.00,0.000000,0.000000,199,0,0.003874,0.007125,3777582,3267558,0,0,7768,0,1,1 +1773529019.665434,1.71,4,3992.50,65.16,1146.40,2551.05,0.00,3518913336155.804688,0.000000,70,0,0.003887,0.007131,3777683,3267699,0,0,7770,0,1,1 +1773529024.661205,1.66,4,3992.50,65.16,1146.40,2551.05,0.00,1.960447,0.000195,238,2,0.003881,0.007113,3777783,3267838,0,0,7773,0,1,1 +1773529029.665258,2.26,4,3992.50,65.20,1143.26,2552.73,0.00,0.000000,0.000000,238,2,0.003417,0.005876,3777869,3267956,0,0,7775,0,1,1 +1773529034.661184,1.76,4,3992.50,65.02,1150.28,2545.78,0.00,3521306476445.916504,3521306476447.926758,11,0,0.003881,0.007138,3777969,3268097,0,0,7778,0,1,1 +1773529039.661259,16.94,4,3992.50,65.65,1125.79,2570.24,0.00,1.491872,0.022070,221,21,16.108538,0.079858,3782833,3271906,0,0,7780,0,1,1 +1773529044.664563,14.97,4,3992.50,65.34,1137.32,2558.24,0.00,254.468065,983.036295,55027,595274,24.110328,0.098901,3789421,3277143,0,0,7783,0,1,1 +1773529049.665033,2.16,4,3992.50,65.13,1145.49,2550.05,0.00,3518107021617.958008,3518107020890.396484,70,0,0.006570,0.008889,3789572,3277323,0,0,7785,0,1,1 +1773529054.665282,1.76,4,3992.50,65.12,1146.07,2549.47,0.00,1.958691,0.000195,238,2,0.003420,0.005877,3789658,3277441,0,0,7788,0,1,1 +1773529059.661657,2.01,4,3992.50,65.46,1132.86,2562.71,0.00,3520990303597.262207,3520990303599.271973,11,0,0.003889,0.007780,3789759,3277586,0,0,7790,0,1,1 +1773529064.661438,1.66,4,3992.50,65.39,1135.56,2559.98,0.00,0.176961,0.000000,199,0,0.003878,0.007133,3789859,3277727,0,0,7793,0,1,1 +1773529069.665276,1.71,4,3992.50,65.39,1135.46,2560.08,0.00,3515738853296.650391,0.000000,11,0,0.003875,0.007117,3789959,3277867,0,0,7795,0,1,1 +1773529074.666168,1.91,4,3992.50,65.34,1137.48,2558.06,0.00,0.049991,0.000000,70,0,0.003420,0.005864,3790045,3277984,0,0,7798,0,1,1 +1773529079.663680,1.76,4,3992.50,65.37,1136.30,2559.25,0.00,1.959764,0.000195,238,2,0.003880,0.007126,3790145,3278124,0,0,7800,0,1,1 +1773529084.665666,1.66,4,3992.50,65.37,1136.31,2559.23,0.00,0.000000,0.000000,238,2,0.003876,0.007130,3790245,3278265,0,0,7803,0,1,1 +1773529089.664722,2.21,4,3992.50,65.28,1129.25,2556.00,0.00,3519101993289.078125,3519101993291.087402,11,0,0.003879,0.007124,3790345,3278405,0,0,7805,0,1,1 +1773529094.665420,2.01,4,3992.50,65.28,1129.10,2555.95,0.00,2.008508,0.000195,238,2,0.003420,0.005864,3790431,3278522,0,0,7808,0,1,1 +1773529099.661729,2.11,4,3992.50,65.28,1129.11,2555.93,0.00,3521036534527.380371,3521036534529.390625,11,0,0.003876,0.007136,3790531,3278663,0,0,7810,0,1,1 +1773529104.661294,1.81,4,3992.50,65.26,1130.09,2554.93,0.00,0.050004,0.000000,70,0,0.003878,0.007133,3790631,3278804,0,0,7813,0,1,1 +1773529109.661354,1.56,4,3992.50,65.26,1129.98,2555.06,0.00,3518395037400.231934,0.000000,11,0,0.003865,0.007122,3790730,3278944,0,0,7815,0,1,1 +1773529114.661391,20.91,4,3992.50,65.73,1111.57,2573.40,0.00,0.176952,0.000000,199,0,22.139072,0.100780,3797093,3283919,0,0,7818,0,1,1 +1773529119.665873,13.22,4,3992.50,64.79,1141.80,2536.64,0.00,1.313764,0.022051,221,21,18.082267,0.075750,3802140,3287944,0,0,7820,0,1,1 +1773529124.665920,2.11,4,3992.50,64.80,1141.37,2537.07,0.00,3518403914929.319336,3518403914930.612305,199,0,0.004169,0.007454,3802246,3288092,0,0,7823,0,1,1 +1773529129.665239,1.81,4,3992.50,64.80,1141.39,2537.05,0.00,260.054501,985.881495,55794,597173,0.004178,0.008161,3802352,3288246,0,0,7825,0,1,1 +1773529134.665329,1.86,4,3992.50,64.82,1140.67,2537.76,0.00,0.000000,0.097166,55794,597283,0.004075,0.007664,3802458,3288398,0,0,7828,0,1,1 +1773529139.665056,1.71,4,3992.50,64.82,1140.68,2537.76,0.00,3518628820033.888672,0.010938,55036,597300,0.003878,0.007110,3802558,3288537,0,0,7830,0,1,1 +1773529144.665752,1.76,4,3992.50,64.80,1141.24,2537.20,0.00,3517947792433.770996,3517947791704.152344,11,0,0.003428,0.005885,3802645,3288656,0,0,7833,0,1,1 +1773529149.665814,2.01,4,3992.50,64.92,1146.66,2541.61,0.00,0.176951,0.000000,199,0,0.003878,0.007122,3802745,3288796,0,0,7835,0,1,1 +1773529154.661254,1.71,4,3992.50,64.93,1145.97,2542.27,0.00,0.000000,0.000000,199,0,0.003869,0.007159,3802844,3288937,0,0,7838,0,1,1 +1773529159.665771,2.11,4,3992.50,64.92,1146.30,2541.94,0.00,0.000000,0.000000,199,0,0.004544,0.008037,3802947,3289079,0,0,7840,0,1,1 +1773529164.665903,1.76,4,3992.50,64.92,1146.31,2541.93,0.00,3518343740563.261230,0.000000,70,0,0.003445,0.005927,3803035,3289200,0,0,7843,0,1,1 +1773529169.665457,1.66,4,3992.50,64.96,1145.10,2543.14,0.00,260.169206,986.398642,55794,597742,0.003334,0.006924,3803128,3289336,0,0,7845,0,1,1 +1773529174.665427,1.66,4,3992.50,64.96,1144.89,2543.34,0.00,3518458120930.691895,3518458120204.572754,11,0,0.003878,0.007132,3803228,3289477,0,0,7848,0,1,1 +1773529179.665937,2.31,4,3992.50,64.96,1143.04,2543.32,0.00,260.169493,986.296794,55794,597806,0.003878,0.007122,3803328,3289617,0,0,7850,0,1,1 +1773529184.662945,3.11,4,3992.50,64.76,1150.50,2535.57,0.00,3520543912663.982910,3520543911935.336914,238,2,0.009004,0.008688,3803510,3289796,0,0,7853,0,1,1 +1773529189.662484,22.23,4,3992.50,65.31,1129.00,2557.01,0.00,3518761348027.792480,3518761348029.801270,11,0,28.171172,0.128085,3811570,3296197,0,0,7855,0,1,1 +1773529194.662169,8.29,4,3992.50,65.43,1124.35,2561.62,0.00,0.176964,0.000000,199,0,12.066291,0.052287,3814988,3298967,0,0,7858,0,1,1 +1773529199.665809,2.01,4,3992.50,65.17,1134.56,2551.41,0.00,3515878046959.056152,0.000000,11,0,0.003418,0.005838,3815074,3299082,0,0,7860,0,1,1 +1773529204.661190,2.77,4,3992.50,64.48,1161.36,2524.64,0.00,0.000000,0.000000,11,0,0.003882,0.007139,3815174,3299223,0,0,7863,0,1,1 +1773529209.661755,2.16,4,3992.50,64.78,1145.81,2536.43,0.00,0.176933,0.000000,199,0,0.003420,0.005855,3815260,3299339,0,0,7865,0,1,1 +1773529214.662279,1.86,4,3992.50,64.81,1144.77,2537.29,0.00,256.807052,987.169422,56154,599060,0.003878,0.007132,3815360,3299480,0,0,7868,0,1,1 +1773529219.661207,1.96,4,3992.50,64.68,1149.61,2532.45,0.00,3519191593093.659180,3519191592363.240234,11,0,0.003879,0.007124,3815460,3299620,0,0,7870,0,1,1 +1773529224.664281,2.11,4,3992.50,64.72,1148.30,2533.75,0.00,0.176844,0.000000,199,0,0.003884,0.007136,3815561,3299762,0,0,7873,0,1,1 +1773529229.664082,1.86,4,3992.50,64.73,1147.83,2534.21,0.00,3518576868939.820312,0.000000,11,0,0.003420,0.005843,3815647,3299877,0,0,7875,0,1,1 +1773529234.665797,1.91,4,3992.50,64.73,1147.85,2534.19,0.00,0.049983,0.000000,70,0,0.003877,0.007130,3815747,3300018,0,0,7878,0,1,1 +1773529239.665864,2.11,4,3992.50,64.66,1151.96,2531.73,0.00,3518390392476.909668,0.000000,11,0,0.003878,0.007122,3815847,3300158,0,0,7880,0,1,1 +1773529244.666150,2.26,4,3992.50,64.67,1151.47,2531.80,0.00,0.000000,0.000000,11,0,0.003890,0.007132,3815948,3300299,0,0,7883,0,1,1 +1773529249.665703,1.76,4,3992.50,64.68,1150.81,2532.47,0.00,1.492028,0.022072,221,21,0.003421,0.005856,3816034,3300415,0,0,7885,0,1,1 +1773529254.665969,9.39,4,3992.50,64.75,1148.10,2535.18,0.00,3518250140003.690918,3518250140004.983887,199,0,6.039235,0.034695,3817766,3301861,0,0,7888,0,1,1 +1773529259.665880,22.05,4,3992.50,64.98,1138.98,2544.21,0.00,260.899451,988.203559,56912,600255,30.374982,0.132462,3826498,3308723,0,0,7890,0,1,1 +1773529264.665933,3.62,4,3992.50,64.18,1170.58,2512.61,0.00,3518400035575.402832,0.163670,56154,600311,3.827746,0.020404,3827654,3309657,0,0,7893,0,1,1 +1773529269.665180,2.26,4,3992.50,64.49,1158.51,2524.81,0.00,3518966872259.107422,3518966871527.658691,11,0,0.003879,0.007123,3827754,3309797,0,0,7895,0,1,1 +1773529274.665749,1.91,4,3992.50,64.40,1161.65,2521.54,0.00,0.000000,0.000000,11,0,0.003865,0.007132,3827853,3309938,0,0,7898,0,1,1 +1773529279.661213,1.76,4,3992.50,64.45,1159.95,2523.25,0.00,261.308843,989.698954,56912,600606,0.003436,0.005860,3827940,3310054,0,0,7900,0,1,1 +1773529284.666101,2.35,4,3992.50,64.45,1159.73,2523.47,0.00,3515000588585.677734,0.411609,56154,600950,0.003874,0.007125,3828040,3310195,0,0,7903,0,1,1 +1773529289.665791,1.66,4,3992.50,64.43,1160.62,2522.57,0.00,3518656105630.159668,3518656104897.734863,199,0,0.003866,0.007123,3828139,3310335,0,0,7905,0,1,1 +1773529294.662855,1.86,4,3992.50,64.42,1161.14,2522.05,0.00,256.984854,989.898822,56154,600974,0.003868,0.007137,3828238,3310476,0,0,7908,0,1,1 +1773529299.663391,2.16,4,3992.50,64.69,1150.52,2532.84,0.00,0.000000,0.049506,56154,600992,0.003420,0.005842,3828324,3310591,0,0,7910,0,1,1 +1773529304.665848,2.06,4,3992.50,64.60,1153.86,2529.32,0.00,3516708869303.229004,3516708868569.763184,221,21,0.003884,0.007137,3828425,3310733,0,0,7913,0,1,1 +1773529309.664733,1.91,4,3992.50,64.60,1153.98,2529.20,0.00,3519222735996.476562,3519222735997.769531,199,0,0.003891,0.007124,3828526,3310873,0,0,7915,0,1,1 +1773529314.665558,1.86,4,3992.50,64.40,1161.71,2521.47,0.00,260.851758,989.247906,56912,601042,0.003877,0.007131,3828626,3311014,0,0,7918,0,1,1 +1773529319.663153,2.46,4,3992.50,64.39,1162.37,2520.82,0.00,3520130253284.902344,3520130252556.162598,70,0,0.003651,0.006628,3828719,3311141,0,0,7920,0,1,1 +1773529324.665318,13.19,4,3992.50,64.49,1158.25,2524.89,0.00,1.441270,0.022061,221,21,10.065175,0.052979,3831736,3313564,0,0,7923,0,1,1 +1773529329.663975,17.46,4,3992.50,64.48,1158.50,2524.59,0.00,3519382336896.652344,3519382336898.122559,11,0,26.147785,0.109652,3839172,3319393,0,0,7925,0,1,1 +1773529334.665967,5.94,4,3992.50,64.32,1160.89,2518.26,0.00,0.000000,0.000000,11,0,4.028867,0.022949,3840374,3320356,0,0,7928,0,1,1 +1773529339.666149,2.21,4,3992.50,64.33,1160.66,2518.49,0.00,0.049998,0.000000,70,0,0.003878,0.007122,3840474,3320496,0,0,7930,0,1,1 +1773529344.665639,2.16,4,3992.50,64.33,1160.46,2518.69,0.00,3518796287265.320801,0.000000,11,0,0.003408,0.005866,3840559,3320613,0,0,7933,0,1,1 +1773529349.664451,2.21,4,3992.50,64.34,1160.22,2518.92,0.00,257.072056,990.700772,56154,602243,0.003874,0.007132,3840659,3320754,0,0,7935,0,1,1 +1773529354.665827,1.91,4,3992.50,64.34,1160.25,2518.89,0.00,3517468981674.376465,3517468980939.116699,238,2,0.003890,0.007130,3840760,3320895,0,0,7938,0,1,1 +1773529359.662752,2.66,4,3992.50,64.51,1150.54,2525.53,0.00,3520602300434.467285,3520602300436.477051,11,0,0.003880,0.007127,3840860,3321035,0,0,7940,0,1,1 +1773529364.666033,1.96,4,3992.50,64.52,1150.10,2525.94,0.00,1.490916,0.022056,221,21,0.003875,0.007103,3840960,3321174,0,0,7943,0,1,1 +1773529369.664415,2.31,4,3992.50,64.52,1149.88,2526.16,0.00,3519576031763.068848,3519576031764.539062,11,0,0.003421,0.005882,3841046,3321292,0,0,7945,0,1,1 +1773529374.665835,2.06,4,3992.50,64.53,1149.65,2526.38,0.00,0.000000,0.000000,11,0,0.003877,0.007130,3841146,3321433,0,0,7948,0,1,1 +1773529379.665473,4.22,4,3992.50,64.15,1164.50,2511.54,0.00,2.008935,0.000195,238,2,0.003891,0.007123,3841247,3321573,0,0,7950,0,1,1 +1773529384.665711,2.06,4,3992.50,64.19,1163.06,2512.98,0.00,3518269352250.395508,3518269352252.404297,11,0,0.001614,0.001995,3841302,3321630,0,0,7953,0,1,1 +1773529389.661287,2.37,4,3992.50,64.24,1160.73,2514.94,0.00,0.000000,0.000000,11,0,0.001702,0.002707,3841365,3321700,0,0,7955,0,1,1 +1773529394.665116,2.01,4,3992.50,64.28,1158.46,2516.67,0.00,0.000000,0.000000,11,0,0.001620,0.002039,3841421,3321763,0,0,7958,0,1,1 +1773529399.665234,7.07,4,3992.50,64.07,1166.76,2508.36,0.00,0.176949,0.000000,199,0,0.006942,0.004537,3841577,3321906,0,0,7960,0,1,1 +1773529404.665551,2.66,4,3992.50,63.89,1173.52,2501.60,0.00,1.831720,0.000195,238,2,0.009540,0.006663,3841774,3322095,0,0,7963,0,1,1 +1773529409.665606,2.76,4,3992.50,63.95,1171.39,2503.72,0.00,0.000000,0.000000,238,2,0.011148,0.006867,3841982,3322298,0,0,7965,0,1,1 +1773529414.666017,3.32,4,3992.50,64.04,1167.61,2507.47,0.00,259.041709,991.416897,56912,603172,0.007306,0.006675,3842112,3322431,0,0,7968,0,1,1 +1773529419.665215,4.88,4,3992.50,64.84,1135.77,2538.59,0.00,3519001619884.340820,3519001619153.797363,11,0,0.178049,0.006407,3842580,3322674,0,0,7970,0,1,1 +1773529424.661987,4.09,4,3992.50,64.82,1136.67,2537.71,0.00,0.050032,0.000000,70,0,2.148872,0.068426,3846805,3326423,0,0,7973,0,1,1 +1773529429.665164,4.28,4,3992.50,65.28,1118.50,2555.87,0.00,3516202339509.017090,0.000000,11,0,2.043096,0.067014,3850835,3330343,0,0,7975,0,1,1 +1773529434.661194,4.24,4,3992.50,64.70,1141.07,2533.30,0.00,1.493080,0.022088,221,21,2.166486,0.069113,3855081,3334336,0,0,7978,0,1,1 +1773529439.666016,2.71,4,3992.50,64.53,1147.74,2526.64,0.00,0.000000,0.000000,221,21,1.772386,0.064446,3858575,3338054,0,0,7980,0,1,1 +1773529444.662574,2.91,4,3992.50,64.33,1155.66,2518.72,0.00,3520861437465.658203,3520861437467.128906,11,0,0.006630,0.006162,3858704,3338275,0,0,7983,0,1,1 +1773529449.664554,3.27,4,3992.50,64.61,1148.14,2529.62,0.00,0.000000,0.000000,11,0,0.004292,0.004053,3858800,3338367,0,0,7985,0,1,1 +1773529454.664562,4.08,4,3992.50,65.31,1120.58,2557.14,0.00,0.000000,0.000000,11,0,1.253734,0.033312,3861272,3340225,0,0,7988,0,1,1 +1773529459.661899,6.31,4,3992.50,65.14,1127.48,2550.23,0.00,0.050027,0.000000,70,0,2.126334,0.058237,3865417,3343623,0,0,7990,0,1,1 +1773529464.661650,4.08,4,3992.50,64.85,1138.63,2539.08,0.00,1.441966,0.022071,221,21,1.835844,0.069663,3869079,3347514,0,0,7993,0,1,1 +1773529469.665195,3.67,4,3992.50,65.40,1117.07,2560.62,0.00,3515944505486.519531,3515944505487.988770,11,0,2.036857,0.064759,3873166,3351370,0,0,7995,0,1,1 +1773529474.661196,3.73,4,3992.50,65.09,1129.36,2548.35,0.00,0.000000,0.000000,11,0,2.470076,0.072943,3878000,3355715,0,0,7998,0,1,1 +1773529479.661275,3.07,4,3992.50,65.06,1129.27,2547.16,0.00,0.000000,0.000000,11,0,0.655213,0.038172,3879390,3357898,0,0,8000,0,1,1 +1773529484.665234,3.21,4,3992.50,64.82,1138.48,2537.95,0.00,2.007200,0.000195,238,2,0.006042,0.005681,3879519,3358066,0,0,8003,0,1,1 +1773529489.664550,3.58,4,3992.50,65.49,1112.44,2563.99,0.00,259.098385,992.693235,56912,604276,0.031190,0.003811,3879693,3358165,0,0,8005,0,1,1 +1773529494.663758,4.08,4,3992.50,65.48,1112.89,2563.55,0.00,3518994979179.514160,3518994978447.912598,11,0,1.797428,0.054307,3883201,3361234,0,0,8008,0,1,1 +1773529499.664233,3.83,4,3992.50,64.73,1142.23,2534.21,0.00,261.051652,992.567572,56914,604429,2.153649,0.069543,3887417,3365244,0,0,8010,0,1,1 +1773529504.665232,3.13,4,3992.50,64.90,1135.57,2540.86,0.00,3517734484171.611328,3517734483440.172363,11,0,1.975637,0.065186,3891335,3369018,0,0,8013,0,1,1 +1773529509.665715,3.88,4,3992.50,64.82,1138.91,2537.67,0.00,0.176936,0.000000,199,0,2.048771,0.068133,3895365,3373031,0,0,8015,0,1,1 +1773529514.662245,3.73,4,3992.50,64.54,1149.57,2526.89,0.00,0.000000,0.000000,199,0,2.116843,0.065043,3899496,3376800,0,0,8018,0,1,1 +1773529519.665944,2.61,4,3992.50,64.56,1148.61,2527.84,0.00,3515836219265.249023,0.000000,70,0,0.241075,0.016817,3900050,3377636,0,0,8020,0,1,1 +1773529524.661192,3.23,4,3992.50,64.60,1147.05,2529.36,0.00,0.000000,0.000000,70,0,0.006966,0.004635,3900193,3377760,0,0,8023,0,1,1 +1773529529.665969,3.83,4,3992.50,65.05,1129.36,2547.03,0.00,256.720353,992.105263,56156,604835,1.765111,0.055800,3903673,3380914,0,0,8025,0,1,1 +1773529534.665232,4.84,4,3992.50,65.45,1113.78,2562.64,0.00,3518955944959.942383,3518955944223.796387,11,0,2.010383,0.063174,3907660,3384547,0,0,8028,0,1,1 +1773529539.662747,3.18,4,3992.50,65.52,1111.39,2565.07,0.00,0.000000,0.000000,11,0,2.197866,0.071296,3911996,3388641,0,0,8030,0,1,1 +1773529544.664384,4.54,4,3992.50,64.91,1135.25,2541.18,0.00,260.991044,993.084734,56914,605178,2.030773,0.065866,3916027,3392503,0,0,8033,0,1,1 +1773529549.662841,2.47,4,3992.50,64.49,1151.65,2524.78,0.00,3519523410273.636230,3519523409539.606934,221,21,2.238417,0.072855,3920397,3396711,0,0,8035,0,1,1 +1773529554.665747,2.56,4,3992.50,64.46,1152.82,2523.58,0.00,259.433788,992.874506,56914,605276,0.179463,0.011340,3920862,3397268,0,0,8038,0,1,1 +1773529559.665567,2.42,4,3992.50,64.60,1147.23,2529.17,0.00,3518563439196.692871,3518563438464.219727,70,0,0.004647,0.003430,3920965,3397365,0,0,8040,0,1,1 +1773529564.665573,3.42,4,3992.50,65.15,1125.64,2550.76,0.00,0.126953,0.000000,199,0,0.497744,0.010742,3922021,3397925,0,0,8043,0,1,1 +1773529569.664617,2.26,4,3992.50,65.08,1127.05,2548.07,0.00,256.887774,993.868390,56156,605445,1.530040,0.055194,3924961,3401130,0,0,8045,0,1,1 +1773529574.665676,1.96,4,3992.50,64.90,1134.14,2540.88,0.00,3517692147360.097168,3517692146622.121094,221,21,0.051203,0.005313,3925127,3401361,0,0,8048,0,1,1 +1773529579.666081,4.07,4,3992.50,64.50,1149.75,2525.28,0.00,259.563577,993.720801,56914,605615,0.003191,0.002278,3925194,3401428,0,0,8050,0,1,1 +1773529584.661569,2.01,4,3992.50,64.51,1149.52,2525.52,0.00,3521615104938.112305,3521615104203.232422,221,21,0.001971,0.003175,3925246,3401493,0,0,8053,0,1,1 +1773529589.661394,1.96,4,3992.50,64.55,1147.80,2527.24,0.00,3518560084740.876465,3518560084742.169922,199,0,0.001230,0.001602,3925283,3401532,0,0,8055,0,1,1 +1773529594.662457,1.81,4,3992.50,64.55,1147.81,2527.23,0.00,256.784080,993.671754,56156,605683,0.001637,0.001997,3925330,3401583,0,0,8058,0,1,1 +1773529599.665083,2.11,4,3992.50,64.84,1136.34,2538.69,0.00,3516590196991.690430,3516590196253.740723,221,21,0.001234,0.001607,3925368,3401622,0,0,8060,0,1,1 +1773529604.662084,1.81,4,3992.50,64.85,1135.90,2539.12,0.00,3520549236360.399902,3520549236361.871094,11,0,0.001569,0.001945,3925410,3401669,0,0,8063,0,1,1 +1773529609.664966,2.06,4,3992.50,64.71,1141.45,2533.58,0.00,2.007632,0.000195,238,2,0.001252,0.001638,3925449,3401710,0,0,8065,0,1,1 +1773529614.665819,1.61,4,3992.50,64.75,1139.75,2535.29,0.00,0.000000,0.000000,238,2,0.001578,0.001908,3925492,3401754,0,0,8068,0,1,1 +1773529619.665663,1.81,4,3992.50,64.75,1139.75,2535.29,0.00,3518547241594.290039,3518547241596.248535,70,0,0.001465,0.001978,3925535,3401798,0,0,8070,0,1,1 +1773529624.665439,1.76,4,3992.50,64.75,1139.76,2535.27,0.00,261.038159,994.149809,56914,605878,0.001415,0.001982,3925576,3401848,0,0,8073,0,1,1 +1773529629.665902,2.16,4,3992.50,64.78,1146.44,2536.25,0.00,3518111840975.876465,3518111840240.907227,238,2,0.001378,0.001860,3925616,3401894,0,0,8075,0,1,1 +1773529634.664759,1.91,4,3992.50,64.80,1145.74,2536.95,0.00,259.126893,994.436631,56914,605966,0.001600,0.001925,3925660,3401939,0,0,8078,0,1,1 +1773529639.665863,1.76,4,3992.50,64.80,1145.73,2536.96,0.00,3517660540130.275879,3517660539397.304688,11,0,0.001456,0.001729,3925704,3401987,0,0,8080,0,1,1 +1773529644.665352,4.21,4,3992.50,64.80,1145.54,2537.12,0.00,257.041895,994.360708,56156,606007,0.004126,0.002683,3925799,3402070,0,0,8083,0,1,1 +1773529649.665036,4.88,4,3992.50,64.61,1152.90,2529.79,0.00,3518659608323.665039,3518659607584.366211,238,2,0.009467,0.007145,3925992,3402251,0,0,8085,0,1,1 +1773529654.661169,2.61,4,3992.50,64.61,1152.94,2529.75,0.00,3521160470163.473145,3521160470165.433594,70,0,0.009286,0.006337,3926183,3402437,0,0,8088,0,1,1 +1773529659.664430,3.26,4,3992.50,64.57,1145.44,2528.01,0.00,1.440955,0.022056,221,21,0.010725,0.008148,3926355,3402609,0,0,8090,0,1,1 +1773529664.663939,2.87,4,3992.50,64.66,1141.96,2531.51,0.00,3518783342450.268555,3518783342451.738770,11,0,0.002897,0.003001,3926422,3402671,0,0,8093,0,1,1 +1773529669.661175,3.58,4,3992.50,64.81,1135.84,2537.63,0.00,0.000000,0.000000,11,0,1.693730,0.047590,3929699,3405346,0,0,8095,0,1,1 +1773529674.664598,4.03,4,3992.50,65.03,1127.50,2545.97,0.00,2.007415,0.000195,238,2,2.058417,0.058153,3933723,3408655,0,0,8098,0,1,1 +1773529679.664762,3.93,4,3992.50,65.09,1124.86,2548.59,0.00,3518321168317.573730,0.021874,221,21,1.835628,0.069432,3937367,3412593,0,0,8100,0,1,1 +1773529684.664871,4.34,4,3992.50,65.13,1123.64,2549.79,0.00,3518360956148.554688,3518360956149.847656,199,0,2.160701,0.070468,3941628,3416674,0,0,8103,0,1,1 +1773529689.665840,4.02,4,3992.50,65.16,1116.95,2550.97,0.00,0.000000,0.000000,199,0,2.112982,0.064323,3945766,3420400,0,0,8105,0,1,1 +1773529694.665601,3.27,4,3992.50,65.20,1114.97,2552.87,0.00,1.315004,0.022071,221,21,0.556107,0.033462,3946988,3422249,0,0,8108,0,1,1 +1773529699.665568,4.49,4,3992.50,65.45,1105.40,2562.44,0.00,3518460633385.221191,3518460633386.690918,11,0,1.054159,0.027233,3949152,3423741,0,0,8110,0,1,1 +1773529704.664058,3.79,4,3992.50,65.14,1117.34,2550.49,0.00,261.155340,995.565331,56914,607125,2.971077,0.089280,3954886,3428904,0,0,8113,0,1,1 +1773529709.663626,4.18,4,3992.50,65.07,1120.34,2547.46,0.00,3518741161003.844238,3518741160268.122559,221,21,1.439126,0.046900,3957783,3431493,0,0,8115,0,1,1 +1773529714.665102,3.78,4,3992.50,64.97,1124.30,2543.52,0.00,0.000000,0.000000,221,21,2.535377,0.082963,3962731,3436310,0,0,8118,0,1,1 +1773529719.665129,5.45,4,3992.50,64.98,1130.22,2543.96,0.00,0.516892,3518418972213.960938,238,2,2.001503,0.067917,3966716,3440225,0,0,8120,0,1,1 +1773529724.664201,4.28,4,3992.50,64.97,1130.48,2543.66,0.00,0.000000,0.000000,238,2,0.546032,0.034331,3967963,3442029,0,0,8123,0,1,1 +1773529729.664787,3.38,4,3992.50,65.56,1107.43,2566.68,0.00,3518024577669.153320,0.021872,221,21,0.013933,0.005473,3968115,3442154,0,0,8125,0,1,1 +1773529734.665201,3.22,4,3992.50,65.25,1119.29,2554.80,0.00,0.516852,3518146353169.722656,238,2,1.715406,0.053318,3971525,3445173,0,0,8128,0,1,1 +1773529739.661668,4.49,4,3992.50,65.38,1114.36,2559.76,0.00,3520925047339.295410,3520925047341.255371,70,0,2.316857,0.076062,3976059,3449533,0,0,8130,0,1,1 +1773529744.665215,2.67,4,3992.50,65.31,1116.93,2557.16,0.00,260.841395,995.193704,56914,607866,1.858168,0.060556,3979730,3453006,0,0,8133,0,1,1 +1773529749.664608,4.59,4,3992.50,65.38,1114.25,2559.65,0.00,3518864787995.323730,3518864787258.940918,221,21,2.274172,0.073192,3984211,3457224,0,0,8135,0,1,1 +1773529754.661198,2.42,4,3992.50,65.16,1122.68,2551.32,0.00,3520838157146.187500,3520838157147.658691,11,0,2.126440,0.070788,3988357,3461270,0,0,8138,0,1,1 +1773529759.665430,2.81,4,3992.50,65.04,1127.67,2546.34,0.00,0.049958,0.000000,70,0,0.138113,0.012221,3988753,3461840,0,0,8140,0,1,1 +1773529764.661754,3.69,4,3992.50,65.76,1099.26,2574.74,0.00,1.960230,0.000195,238,2,0.090388,0.007499,3989072,3462032,0,0,8143,0,1,1 +1773529769.661592,3.93,4,3992.50,65.29,1117.60,2556.40,0.00,3518551149419.529297,3518551149421.361328,199,0,1.984064,0.060770,3992994,3465546,0,0,8145,0,1,1 +1773529774.664885,3.43,4,3992.50,65.77,1098.89,2575.11,0.00,3516122097752.167480,0.000000,70,0,1.939143,0.063718,3996834,3469206,0,0,8148,0,1,1 +1773529779.661189,3.99,4,3992.50,65.41,1113.53,2561.08,0.00,1.960238,0.000195,238,2,2.103009,0.070029,4000985,3473245,0,0,8150,0,1,1 +1773529784.665022,3.43,4,3992.50,65.44,1111.73,2562.02,0.00,0.000000,0.000000,238,2,1.933419,0.062444,4004825,3476864,0,0,8153,0,1,1 +1773529789.665434,2.31,4,3992.50,65.39,1113.56,2560.20,0.00,3518147296658.331543,0.021873,221,21,2.204437,0.074366,4009161,3481194,0,0,8155,0,1,1 +1773529794.665462,1.91,4,3992.50,65.39,1113.76,2560.00,0.00,255.522298,996.602420,56156,608657,0.148772,0.009271,4009528,3481663,0,0,8158,0,1,1 +1773529799.665793,2.11,4,3992.50,65.37,1114.36,2559.39,0.00,4.060571,0.065914,56914,608734,0.005340,0.003684,4009629,3481754,0,0,8160,0,1,1 +1773529804.661256,1.96,4,3992.50,65.33,1116.05,2557.71,0.00,3521632719134.699707,3521632718398.362305,70,0,0.002237,0.002639,4009690,3481822,0,0,8163,0,1,1 +1773529809.665823,2.75,4,3992.50,65.46,1120.56,2563.03,0.00,0.000000,0.000000,70,0,0.001965,0.001878,4009738,3481871,0,0,8165,0,1,1 +1773529814.666073,1.71,4,3992.50,65.30,1126.10,2556.79,0.00,0.126947,0.000000,199,0,0.000864,0.001707,4009772,3481911,0,0,8168,0,1,1 +1773529819.661276,2.21,4,3992.50,65.32,1125.61,2557.27,0.00,1.316204,0.022092,221,21,0.002003,0.001869,4009823,3481959,0,0,8170,0,1,1 +1773529824.663564,1.80,4,3992.50,65.32,1125.38,2557.50,0.00,259.475207,996.478963,56923,608949,0.000805,0.001708,4009852,3481999,0,0,8173,0,1,1 +1773529829.662959,2.06,4,3992.50,65.11,1133.52,2549.37,0.00,3518862954443.604004,3518862953707.467285,199,0,0.001923,0.001892,4009897,3482048,0,0,8175,0,1,1 +1773529834.664213,1.85,4,3992.50,64.92,1140.93,2541.95,0.00,3517555033517.546387,0.000000,11,0,0.000860,0.001662,4009930,3482084,0,0,8178,0,1,1 +1773529839.666070,2.11,4,3992.50,65.02,1133.97,2545.59,0.00,260.988893,996.712963,56923,609054,0.001950,0.001824,4009977,3482129,0,0,8180,0,1,1 +1773529844.665876,1.91,4,3992.50,65.04,1132.96,2546.55,0.00,3518573767286.890137,3518573766548.855469,238,2,0.000891,0.002388,4010012,3482175,0,0,8183,0,1,1 +1773529849.665696,1.91,4,3992.50,65.04,1132.96,2546.54,0.00,3518564404280.693359,3518564404282.702148,11,0,0.002032,0.002234,4010063,3482227,0,0,8185,0,1,1 +1773529854.661185,1.81,4,3992.50,64.85,1140.61,2538.90,0.00,261.321592,998.076883,56923,609145,0.000804,0.001615,4010092,3482260,0,0,8188,0,1,1 +1773529859.662714,1.91,4,3992.50,64.42,1157.22,2522.32,0.00,0.000000,0.033193,56923,609182,0.002153,0.002270,4010146,3482317,0,0,8190,0,1,1 +1773529864.665395,2.11,4,3992.50,64.45,1156.05,2523.50,0.00,3516551868417.942383,3516551867680.205566,238,2,0.000871,0.001475,4010180,3482349,0,0,8193,0,1,1 +1773529869.661487,8.78,4,3992.50,64.72,1152.73,2533.80,0.00,259.279669,998.220505,56923,609363,0.008952,0.004947,4010364,3482514,0,0,8195,0,1,1 +1773529874.661271,2.36,4,3992.50,64.73,1148.89,2534.22,0.00,3518589310200.815430,3518589309464.428711,11,0,0.008759,0.006792,4010558,3482703,0,0,8198,0,1,1 +1773529879.663012,2.81,4,3992.50,64.73,1148.79,2534.34,0.00,0.176892,0.000000,199,0,0.012437,0.007880,4010764,3482891,0,0,8200,0,1,1 +1773529884.664896,3.07,4,3992.50,64.93,1140.82,2542.30,0.00,3517111534279.566406,0.000000,11,0,0.005124,0.005217,4010861,3482988,0,0,8203,0,1,1 +1773529889.666036,3.72,4,3992.50,65.27,1127.50,2555.62,0.00,0.176913,0.000000,199,0,0.849725,0.017833,4012599,3483947,0,0,8205,0,1,1 +1773529894.663474,3.74,4,3992.50,65.41,1121.99,2561.11,0.00,256.979723,998.304401,56165,609785,2.019259,0.065753,4016526,3487736,0,0,8208,0,1,1 +1773529899.663919,4.53,4,3992.50,65.25,1134.94,2554.80,0.00,0.000000,0.098429,56165,609836,1.923812,0.061816,4020330,3491373,0,0,8210,0,1,1 +1773529904.661203,4.28,4,3992.50,65.33,1131.95,2557.66,0.00,0.000000,0.068787,56165,609928,2.078988,0.067036,4024396,3495329,0,0,8213,0,1,1 +1773529909.665043,2.56,4,3992.50,64.92,1147.81,2541.78,0.00,4.057723,0.068014,56923,610010,1.419747,0.053153,4027212,3498385,0,0,8215,0,1,1 +1773529914.666023,3.31,4,3992.50,65.13,1139.73,2549.85,0.00,3517747697008.164551,3517747696269.896973,221,21,0.014866,0.007039,4027355,3498669,0,0,8218,0,1,1 +1773529919.666031,4.19,4,3992.50,65.10,1140.65,2548.93,0.00,0.000000,0.000000,221,21,0.031637,0.004446,4027536,3498781,0,0,8220,0,1,1 +1773529924.664565,4.33,4,3992.50,65.56,1122.80,2566.76,0.00,3519469189045.107910,3519469189046.578125,11,0,1.975264,0.062710,4031399,3502357,0,0,8223,0,1,1 +1773529929.661345,3.84,4,3992.50,65.58,1121.73,2567.44,0.00,1.492856,0.022085,221,21,2.034960,0.064346,4035396,3506037,0,0,8225,0,1,1 +1773529934.661180,4.44,4,3992.50,65.81,1112.57,2576.67,0.00,3518553285954.611816,3518553285956.082031,11,0,2.160836,0.071950,4039632,3510157,0,0,8228,0,1,1 +1773529939.661299,3.89,4,3992.50,65.79,1113.44,2575.80,0.00,261.079637,998.353720,56923,610436,2.042335,0.064684,4043675,3513930,0,0,8230,0,1,1 +1773529944.661180,2.51,4,3992.50,65.53,1123.50,2565.73,0.00,3518521048645.365234,3518521047908.056152,11,0,1.890409,0.062500,4047361,3517598,0,0,8233,0,1,1 +1773529949.665056,2.41,4,3992.50,65.48,1125.44,2563.76,0.00,1.490739,0.022053,221,21,0.287505,0.015374,4048013,3518405,0,0,8235,0,1,1 +1773529954.661204,3.02,4,3992.50,65.25,1134.57,2554.64,0.00,0.000000,0.000000,221,21,0.004516,0.003224,4048108,3518481,0,0,8238,0,1,1 +1773529959.665653,4.37,4,3992.50,65.73,1121.46,2573.61,0.00,0.516435,3515309191148.484375,238,2,0.797534,0.017325,4049746,3519387,0,0,8240,0,1,1 +1773529964.661183,3.84,4,3992.50,65.56,1123.75,2566.78,0.00,0.000000,0.000000,238,2,2.052970,0.068917,4053783,3523299,0,0,8243,0,1,1 +1773529969.661209,3.78,4,3992.50,65.40,1129.98,2560.52,0.00,0.000000,0.000000,238,2,2.047207,0.068882,4057839,3527233,0,0,8245,0,1,1 +1773529974.665588,3.58,4,3992.50,65.24,1136.16,2554.34,0.00,254.793865,997.906001,56166,610877,2.158621,0.068103,4062092,3531139,0,0,8248,0,1,1 +1773529979.666044,3.27,4,3992.50,64.90,1149.38,2541.12,0.00,3518116112279.525879,3518116111537.789551,70,0,2.047377,0.067585,4066073,3535011,0,0,8250,0,1,1 +1773529984.663913,11.24,4,3992.50,65.09,1141.93,2548.57,0.00,261.147951,999.307266,56924,611164,13.700213,0.073647,4071952,3539101,0,0,8253,0,1,1 +1773529989.665576,2.26,4,3992.50,65.15,1138.09,2550.89,0.00,3517266934424.806641,3517266933685.249023,238,2,0.003419,0.005853,4072038,3539217,0,0,8255,0,1,1 +1773529994.666091,1.86,4,3992.50,65.19,1136.70,2552.21,0.00,3518075329802.156738,3518075329804.165527,11,0,0.003878,0.007132,4072138,3539358,0,0,8258,0,1,1 +1773529999.662633,2.21,4,3992.50,65.19,1136.71,2552.19,0.00,2.010179,0.000195,238,2,0.003423,0.005859,4072224,3539474,0,0,8260,0,1,1 +1773530004.663074,1.91,4,3992.50,65.19,1136.73,2552.18,0.00,3518127171813.475586,3518127171815.307617,199,0,0.003878,0.007132,4072324,3539615,0,0,8263,0,1,1 +1773530009.665190,1.90,4,3992.50,65.19,1136.74,2552.16,0.00,1.314385,0.022061,221,21,0.003864,0.007119,4072423,3539755,0,0,8265,0,1,1 +1773530014.664029,1.71,4,3992.50,65.19,1136.76,2552.14,0.00,0.000000,0.000000,221,21,0.003887,0.007129,4072524,3539896,0,0,8268,0,1,1 +1773530019.665659,2.16,4,3992.50,65.18,1134.79,2552.09,0.00,3517290643884.530762,3517290643886.000488,11,0,0.003419,0.005853,4072610,3540012,0,0,8270,0,1,1 +1773530024.665558,2.06,4,3992.50,65.17,1135.34,2551.47,0.00,2.008830,0.000195,238,2,0.005645,0.008649,4072734,3540167,0,0,8273,0,1,1 +1773530029.663696,2.16,4,3992.50,65.18,1134.86,2551.95,0.00,3519747225712.977539,3519747225714.986816,11,0,0.006366,0.009258,4072871,3540343,0,0,8275,0,1,1 +1773530034.664096,1.96,4,3992.50,65.19,1134.43,2552.38,0.00,0.049996,0.000000,70,0,0.004177,0.007686,4072977,3540495,0,0,8278,0,1,1 +1773530039.664534,1.91,4,3992.50,65.19,1134.45,2552.36,0.00,3518128895546.511719,0.000000,11,0,0.003845,0.007639,4073076,3540636,0,0,8280,0,1,1 +1773530044.665084,1.81,4,3992.50,65.18,1134.96,2551.86,0.00,0.049994,0.000000,70,0,0.003649,0.006511,4073169,3540766,0,0,8283,0,1,1 +1773530049.665712,13.61,4,3992.50,65.40,1123.08,2560.66,0.00,0.000000,0.000000,70,0,14.090512,0.068806,4077798,3544181,0,0,8285,0,1,1 +1773530054.665806,18.32,4,3992.50,64.77,1147.68,2535.92,0.00,0.000000,0.000000,70,0,26.167645,0.118433,4086432,3550539,0,0,8288,0,1,1 +1773530059.662572,3.22,4,3992.50,64.81,1146.06,2537.53,0.00,257.142101,1000.677806,56166,612473,0.006473,0.008590,4086579,3550714,0,0,8290,0,1,1 +1773530064.665857,1.90,4,3992.50,64.79,1147.02,2536.57,0.00,3516127073055.328125,3516127072312.811035,11,0,0.004083,0.006778,4086668,3550833,0,0,8293,0,1,1 +1773530069.665906,2.11,4,3992.50,64.84,1145.07,2538.52,0.00,0.000000,0.000000,11,0,0.003297,0.006916,4086759,3550968,0,0,8295,0,1,1 +1773530074.661206,1.76,4,3992.50,64.84,1145.09,2538.50,0.00,1.493298,0.022091,221,21,0.003511,0.005952,4086851,3551091,0,0,8298,0,1,1 +1773530079.661287,2.21,4,3992.50,64.84,1152.11,2538.56,0.00,3518379727704.794922,3518379727706.214844,70,0,0.003878,0.007122,4086951,3551231,0,0,8300,0,1,1 +1773530084.665641,1.96,4,3992.50,64.87,1150.56,2539.92,0.00,1.440640,0.022051,221,21,0.003875,0.007114,4087051,3551371,0,0,8303,0,1,1 +1773530089.664611,2.01,4,3992.50,64.87,1150.57,2539.90,0.00,0.517001,3519161922566.875488,238,2,0.003866,0.007124,4087150,3551511,0,0,8305,0,1,1 +1773530094.663920,1.91,4,3992.50,64.76,1155.04,2535.43,0.00,259.113684,1001.090271,56924,613130,0.003650,0.006487,4087243,3551639,0,0,8308,0,1,1 +1773530099.665321,1.96,4,3992.50,64.79,1153.82,2536.64,0.00,3517451461844.168945,3517451461104.511230,11,0,0.004570,0.007156,4087338,3551770,0,0,8310,0,1,1 +1773530104.662666,2.01,4,3992.50,64.80,1153.35,2537.12,0.00,0.000000,0.000000,11,0,0.003880,0.007780,4087438,3551915,0,0,8313,0,1,1 +1773530109.665583,2.36,4,3992.50,64.80,1161.48,2537.09,0.00,0.176850,0.000000,199,0,0.003876,0.007118,4087538,3552055,0,0,8315,0,1,1 +1773530114.661188,2.36,4,3992.50,64.77,1158.28,2535.83,0.00,3521532722071.171875,0.000000,70,0,0.003889,0.007134,4087639,3552196,0,0,8318,0,1,1 +1773530119.666024,15.88,4,3992.50,65.28,1138.24,2555.84,0.00,0.000000,0.000000,70,0,18.107239,0.091326,4093812,3556807,0,0,8320,0,1,1 +1773530124.665658,16.52,4,3992.50,65.42,1132.45,2561.33,0.00,256.994595,1001.369303,56166,614036,22.139439,0.102502,4101118,3562419,0,0,8323,0,1,1 +1773530129.661275,1.86,4,3992.50,64.97,1150.20,2543.58,0.00,4.064403,0.034210,56924,614069,0.003423,0.005860,4101204,3562535,0,0,8325,0,1,1 +1773530134.661892,2.31,4,3992.50,64.74,1158.97,2534.82,0.00,0.000000,0.617502,56924,614423,0.003878,0.007131,4101304,3562676,0,0,8328,0,1,1 +1773530139.663472,2.56,4,3992.50,64.74,1155.93,2534.81,0.00,3517325927082.258301,3517325926341.454590,199,0,0.003877,0.007120,4101404,3562816,0,0,8330,0,1,1 +1773530144.664165,2.11,4,3992.50,64.75,1155.70,2534.95,0.00,1.314759,0.022067,221,21,0.003877,0.007119,4101504,3562956,0,0,8333,0,1,1 +1773530149.664702,2.21,4,3992.50,64.74,1155.76,2534.88,0.00,259.566855,1002.185941,56924,614564,0.003420,0.005855,4101590,3563072,0,0,8335,0,1,1 +1773530154.665537,2.46,4,3992.50,64.74,1155.76,2534.89,0.00,3517849568035.890137,3517849567292.776367,238,2,0.003877,0.007119,4101690,3563212,0,0,8338,0,1,1 +1773530159.664271,1.91,4,3992.50,64.75,1155.54,2535.12,0.00,3519328261268.871094,3519328261270.880371,11,0,0.003879,0.007124,4101790,3563352,0,0,8340,0,1,1 +1773530164.663013,2.46,4,3992.50,64.75,1155.55,2535.10,0.00,0.000000,0.000000,11,0,0.003900,0.007142,4101892,3563494,0,0,8343,0,1,1 +1773530169.663760,2.41,4,3992.50,64.89,1152.45,2540.71,0.00,1.491672,0.022067,221,21,0.003420,0.006498,4101978,3563614,0,0,8345,0,1,1 +1773530174.664553,2.31,4,3992.50,64.79,1154.12,2536.53,0.00,3517879012243.793457,3517879012245.212891,70,0,0.003877,0.007131,4102078,3563755,0,0,8348,0,1,1 +1773530179.665113,2.26,4,3992.50,64.79,1154.12,2536.52,0.00,3518043655893.496094,0.000000,11,0,0.003878,0.007122,4102178,3563895,0,0,8350,0,1,1 +1773530184.663659,2.26,4,3992.50,64.66,1159.26,2531.39,0.00,0.000000,0.000000,11,0,0.003879,0.007134,4102278,3564036,0,0,8353,0,1,1 +1773530189.661196,20.53,4,3992.50,65.05,1143.85,2546.68,0.00,0.050025,0.000000,70,0,26.184430,0.123692,4110894,3570543,0,0,8355,0,1,1 +1773530194.665291,12.44,4,3992.50,65.00,1145.66,2544.88,0.00,3515558226846.671387,0.000000,11,0,14.076337,0.064447,4115505,3573953,0,0,8358,0,1,1 +1773530199.664031,2.76,4,3992.50,65.30,1132.22,2556.82,0.00,257.090580,1003.806716,56166,615968,0.003421,0.005857,4115591,3574069,0,0,8360,0,1,1 +1773530204.665334,2.06,4,3992.50,65.30,1132.07,2556.80,0.00,0.000000,0.010544,56166,615983,0.003877,0.007130,4115691,3574210,0,0,8363,0,1,1 +1773530209.663955,1.96,4,3992.50,65.25,1134.23,2554.63,0.00,3519408027477.703125,3519408026729.488770,221,21,0.003866,0.007112,4115790,3574349,0,0,8365,0,1,1 +1773530214.666001,2.06,4,3992.50,65.23,1135.07,2553.79,0.00,3516998071559.393066,3516998071560.685547,199,0,0.003884,0.007137,4115891,3574491,0,0,8368,0,1,1 +1773530219.666145,2.11,4,3992.50,64.88,1148.54,2540.33,0.00,1.831783,0.000195,238,2,0.003433,0.005855,4115978,3574607,0,0,8370,0,1,1 +1773530224.665001,2.16,4,3992.50,64.60,1159.52,2529.35,0.00,3519242461529.632324,3519242461531.641113,11,0,0.003879,0.007134,4116078,3574748,0,0,8373,0,1,1 +1773530229.665725,2.36,4,3992.50,64.81,1154.50,2537.38,0.00,261.048795,1004.020925,56924,616407,0.003877,0.007121,4116178,3574888,0,0,8375,0,1,1 +1773530234.661194,2.06,4,3992.50,64.83,1153.55,2538.34,0.00,3521628641167.001465,3521628641171.051758,56166,616396,0.003882,0.007783,4116278,3575033,0,0,8378,0,1,1 +1773530239.661417,2.06,4,3992.50,64.80,1154.88,2537.01,0.00,0.000000,0.006640,56166,616405,0.003433,0.005842,4116365,3575148,0,0,8380,0,1,1 +1773530244.666126,2.30,4,3992.50,64.82,1153.91,2537.98,0.00,3515126163657.376465,3515126162910.896484,70,0,0.003849,0.007126,4116463,3575289,0,0,8383,0,1,1 +1773530249.665687,1.96,4,3992.50,64.82,1153.92,2537.97,0.00,256.998396,1004.265909,56166,616428,0.003878,0.007123,4116563,3575429,0,0,8385,0,1,1 +1773530254.663573,1.91,4,3992.50,64.82,1153.94,2537.95,0.00,3519925477469.286621,3519925476721.642090,199,0,0.003880,0.007123,4116663,3575569,0,0,8388,0,1,1 +1773530259.666114,4.01,4,3992.50,65.04,1145.26,2546.60,0.00,256.718360,1003.835344,56166,616564,0.010394,0.009384,4116869,3575763,0,0,8390,0,1,1 +1773530264.664018,21.57,4,3992.50,65.17,1140.32,2551.47,0.00,0.000000,0.427718,56166,617283,28.179119,0.125918,4125876,3582589,0,0,8393,0,1,1 +1773530269.662065,10.33,4,3992.50,64.85,1152.87,2538.92,0.00,3519811521852.739258,3519811521102.690918,238,2,12.089285,0.058582,4129968,3585589,0,0,8395,0,1,1 +1773530274.662743,2.21,4,3992.50,64.88,1151.45,2540.34,0.00,0.000000,0.000000,238,2,0.003877,0.007131,4130068,3585730,0,0,8398,0,1,1 +1773530279.662153,2.11,4,3992.50,64.88,1151.46,2540.33,0.00,3518852406721.906738,3518852406723.915527,11,0,0.003878,0.007123,4130168,3585870,0,0,8400,0,1,1 +1773530284.662638,2.26,4,3992.50,64.88,1151.48,2540.31,0.00,2.008594,0.000195,238,2,0.003878,0.007132,4130268,3586011,0,0,8403,0,1,1 +1773530289.663234,2.51,4,3992.50,64.83,1157.51,2538.39,0.00,3518017455221.314941,3518017455223.323242,11,0,0.003428,0.005850,4130355,3586127,0,0,8405,0,1,1 +1773530294.663433,1.96,4,3992.50,64.72,1161.45,2533.87,0.00,261.076249,1005.568840,56924,617877,0.003878,0.007132,4130455,3586268,0,0,8408,0,1,1 +1773530299.661169,2.46,4,3992.50,64.74,1160.54,2534.79,0.00,3520030867397.068848,3520030866652.159668,70,0,0.003880,0.007596,4130555,3586410,0,0,8410,0,1,1 +1773530304.661389,2.06,4,3992.50,64.74,1160.54,2534.78,0.00,1.441831,0.022069,221,21,0.003865,0.007293,4130654,3586552,0,0,8413,0,1,1 +1773530309.665582,2.31,4,3992.50,64.75,1160.37,2534.95,0.00,3515488563319.120605,3515488563320.589355,11,0,0.003417,0.005850,4130740,3586668,0,0,8415,0,1,1 +1773530314.662818,1.96,4,3992.50,64.72,1161.29,2534.04,0.00,0.000000,0.000000,11,0,0.003876,0.007144,4130840,3586810,0,0,8418,0,1,1 +1773530319.663465,2.36,4,3992.50,64.73,1160.77,2534.26,0.00,261.052830,1005.679980,56924,618035,0.003865,0.007121,4130939,3586950,0,0,8420,0,1,1 +1773530324.665180,2.11,4,3992.50,64.73,1160.58,2534.44,0.00,3517230673287.763184,3517230672543.295410,11,0,0.004973,0.007737,4131060,3587104,0,0,8423,0,1,1 +1773530329.664865,2.51,4,3992.50,64.68,1162.79,2532.22,0.00,0.176964,0.000000,199,0,0.006614,0.008935,4131189,3587260,0,0,8425,0,1,1 +1773530334.665535,9.66,4,3992.50,64.72,1161.14,2533.86,0.00,3517965737447.228516,0.000000,11,0,6.046183,0.038597,4133291,3588907,0,0,8428,0,1,1 +1773530339.664854,22.68,4,3992.50,65.02,1149.20,2545.69,0.00,0.000000,0.000000,11,0,30.186186,0.132927,4143092,3596211,0,0,8430,0,1,1 +1773530344.665506,5.52,4,3992.50,65.02,1149.37,2545.52,0.00,0.049993,0.000000,70,0,4.035256,0.027231,4144605,3597377,0,0,8433,0,1,1 +1773530349.663954,2.71,4,3992.50,64.90,1148.06,2540.89,0.00,1.442342,0.022077,221,21,0.003421,0.005857,4144691,3597493,0,0,8435,0,1,1 +1773530354.663277,2.16,4,3992.50,64.91,1147.57,2541.37,0.00,259.629869,1007.471037,56924,619747,0.003879,0.007133,4144791,3597634,0,0,8438,0,1,1 +1773530359.663938,2.11,4,3992.50,64.91,1147.59,2541.35,0.00,3517972702542.592285,3517972701796.243652,199,0,0.003878,0.007121,4144891,3597774,0,0,8440,0,1,1 +1773530364.665118,1.96,4,3992.50,64.91,1147.61,2541.33,0.00,256.788204,1007.174721,56166,619785,0.003873,0.007770,4144991,3597919,0,0,8443,0,1,1 +1773530369.665909,2.01,4,3992.50,64.91,1147.62,2541.32,0.00,3517881024600.600098,3517881023850.154785,199,0,0.004114,0.006807,4145082,3598039,0,0,8445,0,1,1 +1773530374.665877,2.36,4,3992.50,64.49,1164.18,2524.78,0.00,3518459195030.890625,0.000000,70,0,0.003965,0.007214,4145188,3598186,0,0,8448,0,1,1 +1773530379.663875,2.41,4,3992.50,64.36,1168.22,2520.02,0.00,257.078714,1007.951918,56166,619900,0.003867,0.007125,4145287,3598326,0,0,8450,0,1,1 +1773530384.665361,1.96,4,3992.50,64.37,1167.80,2520.14,0.00,3517391745533.352539,3517391744783.002930,70,0,0.003877,0.007130,4145387,3598467,0,0,8453,0,1,1 +1773530389.664688,2.06,4,3992.50,64.37,1167.81,2520.13,0.00,0.000000,0.000000,70,0,0.003429,0.005864,4145474,3598584,0,0,8455,0,1,1 +1773530394.665146,2.36,4,3992.50,64.36,1167.93,2520.02,0.00,256.952240,1007.586788,56166,620050,0.003878,0.007132,4145574,3598725,0,0,8458,0,1,1 +1773530399.661285,1.91,4,3992.50,64.20,1174.36,2513.59,0.00,3521156143991.267578,3521156143240.034180,11,0,0.004778,0.007798,4145674,3598868,0,0,8460,0,1,1 +1773530404.661288,2.21,4,3992.50,64.26,1171.98,2515.98,0.00,0.176953,0.000000,199,0,0.003853,0.007132,4145772,3599009,0,0,8463,0,1,1 +1773530409.666400,12.95,4,3992.50,65.30,1135.34,2556.50,0.00,3514843635561.899414,0.000000,11,0,8.068543,0.050966,4148620,3601144,0,0,8465,0,1,1 +1773530414.666118,20.39,4,3992.50,64.11,1181.68,2509.97,0.00,0.050003,0.000000,70,0,32.181650,0.137079,4158837,3608694,0,0,8468,0,1,1 +1773530419.665642,2.21,4,3992.50,64.12,1181.02,2510.63,0.00,3518772788613.963867,0.000000,11,0,0.003421,0.005843,4158923,3608809,0,0,8470,0,1,1 +1773530424.661213,2.01,4,3992.50,64.13,1180.82,2510.82,0.00,2.010570,0.000195,238,2,0.003881,0.007139,4159023,3608950,0,0,8473,0,1,1 +1773530429.664162,1.96,4,3992.50,64.13,1180.84,2510.81,0.00,3516362972471.354492,3516362972473.361816,11,0,0.003888,0.007749,4159124,3609093,0,0,8475,0,1,1 +1773530434.662268,2.06,4,3992.50,64.13,1180.86,2510.80,0.00,1.492460,0.022079,221,21,0.003879,0.007135,4159224,3609234,0,0,8478,0,1,1 +1773530439.662979,2.61,4,3992.50,64.47,1169.79,2523.98,0.00,3517936853426.682617,3517936853428.102539,70,0,0.003415,0.005850,4159310,3609350,0,0,8480,0,1,1 +1773530444.664857,2.31,4,3992.50,64.53,1165.25,2526.36,0.00,0.126905,0.000000,199,0,0.003648,0.006496,4159403,3609479,0,0,8483,0,1,1 +1773530449.662627,2.01,4,3992.50,64.58,1163.31,2528.31,0.00,1.315528,0.022080,221,21,0.003651,0.006492,4159496,3609607,0,0,8485,0,1,1 +1773530454.661232,2.11,4,3992.50,64.55,1164.33,2527.27,0.00,255.614571,1009.657057,56175,621865,0.003421,0.005867,4159582,3609724,0,0,8488,0,1,1 +1773530459.664830,2.26,4,3992.50,64.56,1164.12,2527.50,0.00,3515907447119.079590,3515907446367.081055,199,0,0.003875,0.007117,4159682,3609864,0,0,8490,0,1,1 +1773530464.661276,2.06,4,3992.50,64.56,1163.89,2527.72,0.00,1.315877,0.022086,221,21,0.003889,0.007133,4159783,3610005,0,0,8493,0,1,1 +1773530469.666008,2.36,4,3992.50,64.71,1155.59,2533.39,0.00,259.358615,1008.556032,56933,622003,0.003887,0.007116,4159884,3610145,0,0,8495,0,1,1 +1773530474.661198,2.21,4,3992.50,64.55,1161.86,2527.12,0.00,3521825812218.236816,3521825811467.068848,238,2,0.003436,0.005871,4159971,3610262,0,0,8498,0,1,1 +1773530479.661184,18.57,4,3992.50,65.80,1112.62,2576.32,0.00,255.027092,1009.683239,56175,622404,16.161997,0.087807,4165601,3614381,0,0,8500,0,1,1 +1773530484.661276,14.82,4,3992.50,64.84,1150.10,2538.77,0.00,0.000000,0.597255,56175,623097,24.099688,0.100787,4173152,3619946,0,0,8503,0,1,1 +1773530489.663938,2.15,4,3992.50,64.70,1155.80,2533.06,0.00,3516564947954.416016,3516564947199.566406,238,2,0.003884,0.007127,4173253,3620087,0,0,8505,0,1,1 +1773530494.665915,1.91,4,3992.50,64.70,1155.81,2533.04,0.00,0.000000,0.000000,238,2,0.003876,0.007773,4173353,3620232,0,0,8508,0,1,1 +1773530499.664549,2.26,4,3992.50,64.79,1154.71,2536.59,0.00,3519398562161.570312,3519398562163.402832,199,0,0.003892,0.007124,4173454,3620372,0,0,8510,0,1,1 +1773530504.663432,2.06,4,3992.50,64.77,1155.36,2535.79,0.00,260.977363,1010.978363,56933,623356,0.003258,0.005708,4173538,3620486,0,0,8513,0,1,1 +1773530509.665414,1.81,4,3992.50,64.77,1155.39,2535.78,0.00,3517043201117.895996,3517043200367.066895,221,21,0.003876,0.007120,4173638,3620626,0,0,8515,0,1,1 +1773530514.664990,1.91,4,3992.50,64.77,1155.39,2535.76,0.00,0.516938,3518735443528.177246,238,2,0.003874,0.007141,4173738,3620768,0,0,8518,0,1,1 +1773530519.665204,2.00,4,3992.50,64.73,1157.00,2534.16,0.00,3518286866150.534668,3518286866152.493164,70,0,0.003878,0.007122,4173838,3620908,0,0,8520,0,1,1 +1773530524.665475,2.06,4,3992.50,64.74,1156.56,2534.60,0.00,261.031837,1010.758749,56933,623402,0.003420,0.005865,4173924,3621025,0,0,8523,0,1,1 +1773530529.665279,2.11,4,3992.50,65.14,1141.11,2550.34,0.00,3518574958016.850586,3518574957267.103516,11,0,0.003866,0.007123,4174023,3621165,0,0,8525,0,1,1 +1773530534.665657,1.86,4,3992.50,64.91,1149.75,2541.45,0.00,2.008637,0.000195,238,2,0.003878,0.007132,4174123,3621306,0,0,8528,0,1,1 +1773530539.661089,1.86,4,3992.50,64.74,1156.33,2534.86,0.00,0.000000,0.000000,238,2,0.003890,0.007137,4174224,3621447,0,0,8530,0,1,1 +1773530544.665709,2.26,4,3992.50,64.72,1157.33,2533.88,0.00,3515189261883.119141,3515189261884.949707,199,0,0.003475,0.005886,4174314,3621566,0,0,8533,0,1,1 +1773530549.663243,20.98,4,3992.50,64.51,1165.47,2525.69,0.00,261.047790,1011.826176,56933,624269,26.179796,0.124102,4183002,3628109,0,0,8535,0,1,1 +1773530554.665358,5.22,4,3992.50,65.06,1143.85,2547.28,0.00,3516949537560.936035,3516949536811.021973,11,0,4.029435,0.019913,4184349,3629094,0,0,8538,0,1,1 +1773530559.664271,9.12,4,3992.50,65.18,1139.20,2551.84,0.00,0.176992,0.000000,199,0,10.066712,0.050215,4187674,3631624,0,0,8540,0,1,1 +1773530564.665323,1.86,4,3992.50,65.18,1138.96,2552.08,0.00,1.831451,0.000195,238,2,0.003898,0.007757,4187776,3631768,0,0,8543,0,1,1 +1773530569.664557,2.16,4,3992.50,65.14,1140.50,2550.54,0.00,255.065432,1012.254152,56175,624882,0.003421,0.005869,4187862,3631885,0,0,8545,0,1,1 +1773530574.665308,1.76,4,3992.50,65.15,1140.27,2550.76,0.00,3517909141617.329590,3517909140862.202148,199,0,0.003877,0.007119,4187962,3632025,0,0,8548,0,1,1 +1773530579.664064,3.41,4,3992.50,65.15,1140.29,2550.75,0.00,3519312877978.608887,0.000000,70,0,0.003879,0.007124,4188062,3632165,0,0,8550,0,1,1 +1773530584.662262,1.81,4,3992.50,65.16,1140.07,2550.97,0.00,0.126999,0.000000,199,0,0.003887,0.007130,4188163,3632306,0,0,8553,0,1,1 +1773530589.664929,2.41,4,3992.50,65.25,1136.17,2554.86,0.00,3516561426489.635742,0.000000,70,0,0.002825,0.005627,4188239,3632416,0,0,8555,0,1,1 +1773530594.661200,1.91,4,3992.50,64.86,1151.49,2539.54,0.00,0.127048,0.000000,199,0,0.003705,0.006992,4188336,3632555,0,0,8558,0,1,1 +1773530599.665899,2.11,4,3992.50,64.81,1153.72,2537.30,0.00,1.313707,0.022050,221,21,0.003874,0.007116,4188436,3632695,0,0,8560,0,1,1 +1773530604.661204,2.01,4,3992.50,64.86,1151.54,2539.49,0.00,3521744524947.765625,3521744524949.237305,11,0,0.003894,0.007139,4188537,3632836,0,0,8563,0,1,1 +1773530609.661190,1.96,4,3992.50,64.86,1151.55,2539.49,0.00,257.037408,1012.631034,56177,625293,0.002971,0.004583,4188610,3632928,0,0,8565,0,1,1 +1773530614.661533,1.86,4,3992.50,64.86,1151.56,2539.47,0.00,3518195662683.115234,3518195661925.567383,238,2,0.003905,0.007119,4188712,3633068,0,0,8568,0,1,1 +1773530619.661291,7.28,4,3992.50,64.76,1148.16,2535.37,0.00,259.101321,1012.848673,56935,625459,1.417211,0.016785,4189334,3633605,0,0,8570,0,1,1 +1773530624.664548,22.49,4,3992.50,65.26,1128.22,2555.23,0.00,3516146758276.703125,3516146757524.020996,221,21,32.779825,0.144567,4199738,3641395,0,0,8573,0,1,1 +1773530629.665546,5.98,4,3992.50,64.84,1144.64,2538.74,0.00,3517735435437.004395,3517735435438.297363,199,0,6.052494,0.038058,4202077,3643141,0,0,8575,0,1,1 +1773530634.665653,2.81,4,3992.50,64.87,1143.50,2539.93,0.00,3518361809685.769043,0.000000,11,0,0.004210,0.007674,4202185,3643292,0,0,8578,0,1,1 +1773530639.661216,1.81,4,3992.50,64.87,1143.52,2539.91,0.00,1.493220,0.022090,221,21,0.003620,0.006406,4202277,3643420,0,0,8580,0,1,1 +1773530644.661212,1.96,4,3992.50,64.88,1143.29,2540.13,0.00,3518439768194.795410,3518439768196.265625,11,0,0.003905,0.007132,4202379,3643561,0,0,8583,0,1,1 +1773530649.665503,2.21,4,3992.50,65.27,1137.65,2555.55,0.00,0.176801,0.000000,199,0,0.003870,0.007112,4202479,3643701,0,0,8585,0,1,1 +1773530654.661592,2.16,4,3992.50,65.27,1137.45,2555.54,0.00,0.000000,0.000000,199,0,0.003881,0.007138,4202579,3643842,0,0,8588,0,1,1 +1773530659.664573,1.81,4,3992.50,65.08,1144.86,2548.12,0.00,3516340763706.678711,0.000000,70,0,0.003431,0.005852,4202666,3643958,0,0,8590,0,1,1 +1773530664.663139,1.86,4,3992.50,65.08,1144.88,2548.11,0.00,1.959351,0.000195,238,2,0.003867,0.007134,4202765,3644099,0,0,8593,0,1,1 +1773530669.665425,1.91,4,3992.50,65.09,1144.68,2548.32,0.00,258.970350,1013.804484,56935,627077,0.004573,0.008072,4202870,3644243,0,0,8595,0,1,1 +1773530674.665364,2.11,4,3992.50,65.09,1144.69,2548.30,0.00,3518480179820.588379,3518480179067.358398,70,0,0.003973,0.007222,4202977,3644391,0,0,8598,0,1,1 +1773530679.665359,2.41,4,3992.50,65.19,1145.63,2552.41,0.00,1.958791,0.000195,238,2,0.003420,0.005855,4203063,3644507,0,0,8600,0,1,1 +1773530684.665473,1.81,4,3992.50,65.22,1143.43,2553.33,0.00,3518356755321.115234,3518356755322.947266,199,0,0.003878,0.007132,4203163,3644648,0,0,8603,0,1,1 +1773530689.664600,10.91,4,3992.50,64.91,1155.25,2541.50,0.00,256.905404,1014.652359,56178,627359,6.047743,0.035907,4205202,3646247,0,0,8605,0,1,1 +1773530694.665738,13.75,4,3992.50,65.88,1117.30,2579.41,0.00,3517636802733.959473,3517636801976.693848,11,0,16.146870,0.082588,4210714,3650347,0,0,8608,0,1,1 +1773530699.665458,11.57,4,3992.50,64.99,1149.96,2544.58,0.00,0.176963,0.000000,199,0,18.072001,0.079307,4216560,3654745,0,0,8610,0,1,1 +1773530704.662590,1.91,4,3992.50,64.96,1151.12,2543.41,0.00,0.000000,0.000000,199,0,0.003880,0.007136,4216660,3654886,0,0,8613,0,1,1 +1773530709.665255,2.45,4,3992.50,65.08,1144.90,2547.97,0.00,256.723692,1014.993495,56178,628499,0.003406,0.005852,4216745,3655002,0,0,8615,0,1,1 +1773530714.666038,2.01,4,3992.50,65.07,1145.28,2547.46,0.00,3517886531334.431152,3517886530574.583008,221,21,0.003877,0.007131,4216845,3655143,0,0,8618,0,1,1 +1773530719.665125,2.16,4,3992.50,65.06,1145.62,2547.11,0.00,3519079709082.489258,3519079709083.959473,11,0,0.003887,0.007132,4216946,3655284,0,0,8620,0,1,1 +1773530724.661478,1.86,4,3992.50,65.09,1144.20,2548.52,0.00,0.177082,0.000000,199,0,0.003881,0.007138,4217046,3655425,0,0,8623,0,1,1 +1773530729.661203,1.86,4,3992.50,65.11,1143.46,2549.26,0.00,3518630108630.290039,0.000000,11,0,0.003420,0.005855,4217132,3655541,0,0,8625,0,1,1 +1773530734.663918,1.86,4,3992.50,65.11,1143.46,2549.25,0.00,260.956673,1015.158074,56936,628581,0.003888,0.007128,4217233,3655682,0,0,8628,0,1,1 +1773530739.664742,2.46,4,3992.50,65.31,1141.05,2557.15,0.00,3517857210357.450684,3517857209602.914551,70,0,0.003860,0.007117,4217332,3655822,0,0,8630,0,1,1 +1773530744.665318,2.01,4,3992.50,65.31,1141.04,2557.13,0.00,261.018276,1015.860044,56936,628855,0.003878,0.007132,4217432,3655963,0,0,8633,0,1,1 +1773530749.663824,1.81,4,3992.50,65.31,1141.05,2557.11,0.00,3519488918747.487793,0.011625,56178,628872,0.003421,0.005857,4217518,3656079,0,0,8635,0,1,1 +1773530754.664006,1.91,4,3992.50,65.30,1141.37,2556.80,0.00,3518309099955.391602,3518309099196.291016,199,0,0.003878,0.007132,4217618,3656220,0,0,8638,0,1,1 +1773530759.664541,10.57,4,3992.50,64.82,1160.19,2537.95,0.00,3518060843215.954590,0.000000,11,0,8.060686,0.046313,4220467,3658373,0,0,8640,0,1,1 +1773530764.664962,18.81,4,3992.50,65.96,1115.70,2582.36,0.00,0.000000,0.000000,11,0,28.170866,0.122954,4229325,3665079,0,0,8643,0,1,1 +1773530769.665452,6.54,4,3992.50,66.21,1105.62,2592.43,0.00,1.491748,0.022068,221,21,4.038146,0.025413,4230847,3666186,0,0,8645,0,1,1 +1773530774.662920,1.96,4,3992.50,65.77,1122.94,2575.09,0.00,3520220643481.388184,3520220643482.858887,11,0,0.003867,0.007136,4230946,3666327,0,0,8648,0,1,1 +1773530779.666034,1.86,4,3992.50,65.67,1126.83,2571.20,0.00,1.490966,0.022057,221,21,0.003202,0.005262,4231026,3666434,0,0,8650,0,1,1 +1773530784.662681,2.21,4,3992.50,65.67,1127.07,2570.97,0.00,255.717072,1018.031550,56178,630373,0.003634,0.006455,4231118,3666560,0,0,8653,0,1,1 +1773530789.663401,1.76,4,3992.50,65.68,1126.70,2571.34,0.00,3517930719476.105957,3517930718715.704590,199,0,0.003877,0.007121,4231218,3666700,0,0,8655,0,1,1 +1773530794.661185,1.86,4,3992.50,65.67,1126.74,2571.29,0.00,1.832648,0.000195,238,2,0.003880,0.007136,4231318,3666841,0,0,8658,0,1,1 +1773530799.661271,2.06,4,3992.50,65.67,1125.67,2571.28,0.00,259.085065,1017.571736,56936,630512,0.003408,0.005842,4231403,3666956,0,0,8660,0,1,1 +1773530804.665562,2.16,4,3992.50,65.62,1127.42,2569.06,0.00,0.000000,0.038834,56936,630556,0.003883,0.007148,4231504,3667099,0,0,8663,0,1,1 +1773530809.665764,1.81,4,3992.50,65.60,1127.97,2568.52,0.00,3518294934404.276367,3518294933647.727051,70,0,0.003878,0.007122,4231604,3667239,0,0,8665,0,1,1 +1773530814.661323,1.96,4,3992.50,65.61,1127.75,2568.73,0.00,1.960530,0.000195,238,2,0.003881,0.007139,4231704,3667380,0,0,8668,0,1,1 +1773530819.665445,1.81,4,3992.50,65.61,1127.77,2568.71,0.00,3515538972537.243164,3515538972539.250000,11,0,0.003417,0.005850,4231790,3667496,0,0,8670,0,1,1 +1773530824.666031,1.91,4,3992.50,65.61,1127.79,2568.69,0.00,2.008554,0.000195,238,2,0.003890,0.007775,4231891,3667641,0,0,8673,0,1,1 +1773530829.665741,2.41,4,3992.50,65.80,1120.17,2576.31,0.00,3518640861480.700195,3518640861482.708984,11,0,0.003886,0.007131,4231992,3667782,0,0,8675,0,1,1 +1773530834.665595,14.72,4,3992.50,65.08,1148.59,2547.86,0.00,257.045036,1018.076722,56178,631185,12.092794,0.068163,4236161,3670934,0,0,8678,0,1,1 +1773530839.663646,16.81,4,3992.50,66.12,1106.08,2588.71,0.00,3519809116884.078613,3519809116120.763184,238,2,28.173278,0.120562,4245214,3677776,0,0,8680,0,1,1 +1773530844.665413,2.41,4,3992.50,65.55,1128.35,2566.43,0.00,3517194259864.046875,3517194259865.878418,199,0,0.010736,0.009383,4245434,3677985,0,0,8683,0,1,1 +1773530849.661197,2.26,4,3992.50,65.25,1139.93,2554.84,0.00,1.316051,0.022089,221,21,0.003877,0.007136,4245534,3678126,0,0,8685,0,1,1 +1773530854.662090,1.91,4,3992.50,65.26,1139.70,2555.06,0.00,255.499957,1018.509828,56178,631970,0.003420,0.005864,4245620,3678243,0,0,8688,0,1,1 +1773530859.665566,2.31,4,3992.50,65.45,1127.89,2562.62,0.00,3515993140533.751953,3515993139772.427734,199,0,0.003875,0.007117,4245720,3678383,0,0,8690,0,1,1 +1773530864.662152,1.86,4,3992.50,65.45,1127.25,2562.59,0.00,257.036033,1019.702332,56178,632056,0.003881,0.007137,4245820,3678524,0,0,8693,0,1,1 +1773530869.665668,2.26,4,3992.50,65.45,1127.26,2562.59,0.00,3515964898136.634277,3515964897375.201172,11,0,0.003875,0.007117,4245920,3678664,0,0,8695,0,1,1 +1773530874.665635,1.81,4,3992.50,65.46,1127.04,2562.80,0.00,257.039191,1019.107389,56178,632109,0.003408,0.005853,4246005,3678780,0,0,8698,0,1,1 +1773530879.661251,2.01,4,3992.50,65.45,1127.29,2562.55,0.00,3521525218595.638184,3521525217832.906250,11,0,0.003881,0.007129,4246105,3678920,0,0,8700,0,1,1 +1773530884.665464,1.86,4,3992.50,65.26,1134.71,2555.13,0.00,2.007098,0.000195,238,2,0.003887,0.007126,4246206,3679061,0,0,8703,0,1,1 +1773530889.665413,2.26,4,3992.50,65.46,1128.05,2562.98,0.00,3518473472379.881836,3518473472381.890137,11,0,0.003886,0.007774,4246307,3679206,0,0,8705,0,1,1 +1773530894.661378,2.16,4,3992.50,65.47,1125.50,2563.17,0.00,0.000000,0.000000,11,0,0.003423,0.005870,4246393,3679323,0,0,8708,0,1,1 +1773530899.664914,2.16,4,3992.50,65.47,1125.52,2563.16,0.00,2.007369,0.000195,238,2,0.003875,0.007117,4246493,3679463,0,0,8710,0,1,1 +1773530904.662765,1.96,4,3992.50,65.47,1125.53,2563.15,0.00,0.000000,0.000000,238,2,0.003880,0.007135,4246593,3679604,0,0,8713,0,1,1 +1773530909.662468,21.30,4,3992.50,65.39,1128.45,2560.21,0.00,255.044660,1024.327422,56179,634403,22.145133,0.105203,4253810,3684944,0,0,8715,0,1,1 +1773530914.661338,12.29,4,3992.50,64.56,1160.73,2527.86,0.00,3519232241197.156738,3519232240429.754883,11,0,18.123194,0.083776,4259941,3689366,0,0,8718,0,1,1 +1773530919.665287,2.26,4,3992.50,64.90,1148.07,2541.01,0.00,2.007204,0.000195,238,2,0.003875,0.007117,4260041,3689506,0,0,8720,0,1,1 +1773530924.663623,1.96,4,3992.50,64.90,1145.94,2541.02,0.00,3519609033144.060547,3519609033146.069824,11,0,0.005176,0.007397,4260150,3689638,0,0,8723,0,1,1 +1773530929.662771,2.06,4,3992.50,64.91,1145.57,2541.38,0.00,257.082072,1025.811940,56179,635193,0.006378,0.009269,4260288,3689815,0,0,8725,0,1,1 +1773530934.663306,2.11,4,3992.50,64.91,1145.59,2541.37,0.00,4.060405,0.029001,56937,635227,0.004173,0.007682,4260394,3689967,0,0,8728,0,1,1 +1773530939.664109,2.01,4,3992.50,64.86,1147.37,2539.59,0.00,3517872868642.214844,3517872867877.770508,11,0,0.004074,0.007653,4260500,3690118,0,0,8730,0,1,1 +1773530944.666079,1.86,4,3992.50,64.90,1145.91,2541.04,0.00,0.049980,0.000000,70,0,0.002989,0.004609,4260574,3690212,0,0,8733,0,1,1 +1773530949.664928,2.21,4,3992.50,64.96,1143.90,2543.48,0.00,0.000000,0.000000,70,0,0.003879,0.007111,4260674,3690351,0,0,8735,0,1,1 +1773530954.665552,1.91,4,3992.50,64.98,1143.20,2544.18,0.00,3517998266832.197754,0.000000,11,0,0.003878,0.007775,4260774,3690496,0,0,8738,0,1,1 +1773530959.666138,2.21,4,3992.50,64.99,1142.97,2544.42,0.00,257.008162,1025.920592,56179,635590,0.003904,0.007122,4260876,3690636,0,0,8740,0,1,1 +1773530964.661180,1.76,4,3992.50,64.99,1142.76,2544.62,0.00,3521929515898.780273,3521929515127.542969,221,21,0.003424,0.005871,4260962,3690753,0,0,8743,0,1,1 +1773530969.666077,1.91,4,3992.50,64.99,1142.77,2544.62,0.00,3514994792404.775879,3514994792406.244141,11,0,0.003887,0.007001,4261063,3690893,0,0,8745,0,1,1 +1773530974.661288,2.87,4,3992.50,64.80,1150.43,2536.93,0.00,2.010715,0.000195,238,2,0.008638,0.009949,4261240,3691088,0,0,8748,0,1,1 +1773530979.662568,26.08,4,3992.50,65.26,1129.45,2555.19,0.00,3517536471206.664062,3517536471208.495605,199,0,30.214980,0.145007,4271422,3698555,0,0,8750,0,1,1 +1773530984.665420,8.80,4,3992.50,65.17,1132.80,2551.56,0.00,260.773448,1026.661856,56937,637228,10.094090,0.063143,4275334,3701475,0,0,8753,0,1,1 +1773530989.665603,2.01,4,3992.50,65.03,1138.36,2546.00,0.00,3518307989870.610352,0.243253,56179,637217,0.003878,0.007122,4275434,3701615,0,0,8755,0,1,1 +1773530994.665235,2.01,4,3992.50,65.03,1138.11,2546.23,0.00,3518696623129.231934,3518696622356.713867,238,2,0.003408,0.005853,4275519,3701731,0,0,8758,0,1,1 +1773530999.664559,2.16,4,3992.50,65.03,1138.13,2546.22,0.00,3518912759678.012207,3518912759680.020996,11,0,0.003879,0.007123,4275619,3701871,0,0,8760,0,1,1 +1773531004.661207,2.16,4,3992.50,65.03,1138.19,2546.17,0.00,0.000000,0.000000,11,0,0.004322,0.007572,4275711,3702008,0,0,8763,0,1,1 +1773531009.661278,2.31,4,3992.50,65.23,1131.77,2553.78,0.00,0.000000,0.000000,11,0,0.003878,0.007122,4275811,3702148,0,0,8765,0,1,1 +1773531014.665349,2.11,4,3992.50,65.11,1135.31,2549.13,0.00,256.838547,1027.112882,56188,637548,0.003425,0.005868,4275898,3702266,0,0,8768,0,1,1 +1773531019.661196,2.06,4,3992.50,65.11,1135.33,2549.10,0.00,4.064215,0.044568,56946,637579,0.003881,0.007773,4275998,3702410,0,0,8770,0,1,1 +1773531024.665230,2.26,4,3992.50,64.95,1141.41,2543.02,0.00,3515601164024.001953,3515601163256.266113,221,21,0.003862,0.007127,4276097,3702551,0,0,8773,0,1,1 +1773531029.665636,1.96,4,3992.50,65.00,1139.71,2544.73,0.00,3518151113536.962891,3518151113538.255371,199,0,0.003420,0.005817,4276183,3702664,0,0,8775,0,1,1 +1773531034.661275,2.06,4,3992.50,65.00,1139.49,2544.95,0.00,0.000000,0.000000,199,0,0.003411,0.005870,4276268,3702781,0,0,8778,0,1,1 +1773531039.665744,4.42,4,3992.50,65.20,1134.00,2552.62,0.00,0.000000,0.000000,199,0,0.003875,0.007116,4276368,3702921,0,0,8780,0,1,1 +1773531044.664056,5.73,4,3992.50,64.76,1148.81,2535.54,0.00,261.019681,1028.503641,56946,637785,2.024628,0.021567,4277206,3703645,0,0,8783,0,1,1 +1773531049.664543,22.01,4,3992.50,65.41,1123.53,2560.80,0.00,0.000000,0.610390,56946,638668,32.262786,0.149942,4288100,3711714,0,0,8785,0,1,1 +1773531054.662635,4.92,4,3992.50,65.59,1116.39,2567.91,0.00,3519780884974.930664,3519780884206.979492,11,0,5.983126,0.029857,4290109,3713233,0,0,8788,0,1,1 +1773531059.664567,2.06,4,3992.50,65.19,1132.16,2552.14,0.00,1.491318,0.022062,221,21,0.003889,0.007120,4290210,3713373,0,0,8790,0,1,1 +1773531064.663944,2.21,4,3992.50,65.01,1139.05,2545.25,0.00,3518875482007.942383,3518875482009.362305,70,0,0.003421,0.005866,4290296,3713490,0,0,8793,0,1,1 +1773531069.665300,2.36,4,3992.50,65.25,1131.77,2554.84,0.00,1.441504,0.022064,221,21,0.003864,0.007120,4290395,3713630,0,0,8795,0,1,1 +1773531074.665206,2.11,4,3992.50,65.24,1130.48,2554.18,0.00,0.000000,0.000000,221,21,0.003878,0.007132,4290495,3713771,0,0,8798,0,1,1 +1773531079.666030,4.22,4,3992.50,64.71,1150.98,2533.71,0.00,3517857627766.279785,3517857627767.572754,199,0,0.003877,0.007121,4290595,3713911,0,0,8800,0,1,1 +1773531084.661302,2.11,4,3992.50,64.61,1154.97,2529.70,0.00,3521767899038.577637,0.000000,11,0,0.003423,0.006515,4290681,3714032,0,0,8803,0,1,1 +1773531089.664078,2.16,4,3992.50,64.61,1154.99,2529.69,0.00,2.007674,0.000195,238,2,0.003876,0.007118,4290781,3714172,0,0,8805,0,1,1 +1773531094.662413,2.11,4,3992.50,64.61,1155.01,2529.67,0.00,259.186030,1029.996660,56946,639378,0.003887,0.007143,4290882,3714314,0,0,8808,0,1,1 +1773531099.665698,2.46,4,3992.50,64.84,1149.34,2538.52,0.00,3516126827786.787109,3516126827018.696777,70,0,0.003907,0.007105,4290984,3714453,0,0,8810,0,1,1 +1773531104.662199,2.32,4,3992.50,64.84,1149.33,2538.46,0.00,3520901346899.791016,0.000000,11,0,0.003423,0.005869,4291070,3714570,0,0,8813,0,1,1 +1773531109.661202,2.31,4,3992.50,64.85,1148.60,2539.19,0.00,0.000000,0.000000,11,0,0.003435,0.005870,4291157,3714687,0,0,8815,0,1,1 +1773531114.661193,10.01,4,3992.50,65.15,1137.14,2550.59,0.00,0.000000,0.000000,11,0,8.061884,0.044478,4293946,3716714,0,0,8818,0,1,1 +1773531119.661276,20.86,4,3992.50,65.83,1110.10,2577.55,0.00,0.000000,0.000000,11,0,32.185282,0.140095,4304178,3724449,0,0,8820,0,1,1 +1773531124.665170,5.43,4,3992.50,65.33,1130.00,2557.66,0.00,0.176815,0.000000,199,0,0.019704,0.012676,4304559,3724759,0,0,8823,0,1,1 +1773531129.665822,2.81,4,3992.50,65.15,1136.43,2550.57,0.00,260.897551,1030.199370,56946,640290,0.003422,0.005842,4304645,3724874,0,0,8825,0,1,1 +1773531134.661275,2.06,4,3992.50,65.10,1138.23,2548.79,0.00,3521639695494.264160,3521639694724.289062,70,0,0.003882,0.007139,4304745,3725015,0,0,8828,0,1,1 +1773531139.666111,2.11,4,3992.50,64.90,1145.86,2541.16,0.00,1.440501,0.022049,221,21,0.003882,0.007124,4304846,3725156,0,0,8830,0,1,1 +1773531144.664878,1.96,4,3992.50,64.73,1152.54,2534.47,0.00,3519305622883.155273,3519305622884.625488,11,0,0.003879,0.007134,4304946,3725297,0,0,8833,0,1,1 +1773531149.661278,2.11,4,3992.50,64.74,1152.31,2534.68,0.00,0.050036,0.000000,70,0,0.003423,0.006504,4305032,3725417,0,0,8835,0,1,1 +1773531154.665192,2.21,4,3992.50,64.75,1152.08,2534.92,0.00,3515685413705.545410,0.000000,11,0,0.003862,0.007127,4305131,3725558,0,0,8838,0,1,1 +1773531159.661199,2.41,4,3992.50,64.75,1157.26,2535.09,0.00,257.253090,1031.858577,56188,640690,0.003881,0.007128,4305231,3725698,0,0,8840,0,1,1 +1773531164.661231,1.96,4,3992.50,64.52,1166.39,2525.99,0.00,3518414920173.324707,3518414919397.334473,238,2,0.003878,0.007132,4305331,3725839,0,0,8843,0,1,1 +1773531169.664815,2.21,4,3992.50,64.45,1169.02,2523.36,0.00,3515916662289.839355,3515916662291.669922,199,0,0.003418,0.005851,4305417,3725955,0,0,8845,0,1,1 +1773531174.663587,2.26,4,3992.50,64.48,1167.83,2524.55,0.00,1.832286,0.000195,238,2,0.003854,0.007134,4305515,3726096,0,0,8848,0,1,1 +1773531179.666175,2.06,4,3992.50,64.50,1166.88,2525.49,0.00,3516616924968.717773,3516616924970.675781,70,0,0.003886,0.007127,4305616,3726237,0,0,8850,0,1,1 +1773531184.664594,2.06,4,3992.50,64.49,1167.59,2524.78,0.00,3519549827276.207520,0.000000,11,0,0.003879,0.007109,4305716,3726376,0,0,8853,0,1,1 +1773531189.663394,16.47,4,3992.50,64.87,1151.32,2539.87,0.00,261.171157,1031.797355,56946,641377,18.122134,0.086758,4311624,3730763,0,0,8855,0,1,1 +1773531194.663156,16.05,4,3992.50,65.44,1128.69,2562.10,0.00,3518605005522.083984,0.059866,56188,641699,20.128114,0.091085,4318111,3735575,0,0,8858,0,1,1 +1773531199.661279,3.62,4,3992.50,65.09,1142.38,2548.42,0.00,3519758671751.028320,3519758670974.705078,221,21,2.017722,0.014573,4318915,3736205,0,0,8860,0,1,1 +1773531204.665296,2.11,4,3992.50,65.05,1144.07,2546.72,0.00,255.350601,1030.861795,56188,641757,0.003875,0.007127,4319015,3736346,0,0,8863,0,1,1 +1773531209.665872,1.96,4,3992.50,64.84,1152.34,2538.46,0.00,3518032114264.435547,3518032113489.683594,199,0,0.003886,0.007130,4319116,3736487,0,0,8865,0,1,1 +1773531214.666106,1.91,4,3992.50,64.84,1152.11,2538.69,0.00,256.858693,1032.282494,56188,642144,0.003420,0.006509,4319202,3736608,0,0,8868,0,1,1 +1773531219.665315,2.81,4,3992.50,64.86,1145.40,2539.55,0.00,3518993505196.919434,3518993504420.043945,221,21,0.003866,0.007124,4319301,3736748,0,0,8870,0,1,1 +1773531224.665384,2.06,4,3992.50,64.88,1144.67,2540.27,0.00,255.552259,1032.683796,56188,642401,0.004987,0.007740,4319423,3736902,0,0,8873,0,1,1 +1773531229.661189,2.46,4,3992.50,64.09,1175.64,2509.29,0.00,3521391612525.297363,3521391611747.502441,221,21,0.007065,0.010198,4319565,3737081,0,0,8875,0,1,1 +1773531234.665691,1.96,4,3992.50,64.18,1172.28,2512.67,0.00,3515271880208.011719,3515271880209.480469,11,0,0.003717,0.006401,4319657,3737208,0,0,8878,0,1,1 +1773531239.665386,2.41,4,3992.50,64.18,1172.29,2512.65,0.00,0.000000,0.000000,11,0,0.004083,0.007650,4319764,3737359,0,0,8880,0,1,1 +1773531244.661469,2.16,4,3992.50,64.20,1171.45,2513.50,0.00,1.493065,0.022088,221,21,0.003881,0.007125,4319864,3737499,0,0,8883,0,1,1 +1773531249.662575,2.36,4,3992.50,64.50,1163.61,2525.50,0.00,3517658513259.058594,3517658513260.478027,70,0,0.003890,0.007121,4319965,3737639,0,0,8885,0,1,1 +1773531254.661336,1.91,4,3992.50,64.44,1166.14,2522.88,0.00,0.000000,0.000000,70,0,0.003421,0.005867,4320051,3737756,0,0,8888,0,1,1 +1773531259.661200,2.26,4,3992.50,64.44,1166.26,2522.77,0.00,261.065613,1032.939977,56946,642558,0.003878,0.007123,4320151,3737896,0,0,8890,0,1,1 +1773531264.663586,22.81,4,3992.50,65.21,1135.98,2552.96,0.00,0.000000,0.130309,56946,643022,26.151053,0.120578,4328568,3744255,0,0,8893,0,1,1 +1773531269.662302,10.42,4,3992.50,65.53,1123.37,2565.52,0.00,3519341094370.346680,3519341093596.744141,221,21,14.092161,0.064937,4333196,3747794,0,0,8895,0,1,1 +1773531274.661277,2.71,4,3992.50,65.00,1144.14,2544.77,0.00,255.608157,1033.827150,56188,643636,0.012173,0.012198,4333443,3748041,0,0,8898,0,1,1 +1773531279.661350,2.31,4,3992.50,64.90,1142.22,2541.02,0.00,3518385672721.664551,3518385671943.616699,221,21,0.003865,0.007754,4333542,3748184,0,0,8900,0,1,1 +1773531284.665759,2.16,4,3992.50,64.89,1142.55,2540.65,0.00,259.387859,1033.295034,56946,643909,0.003417,0.005847,4333628,3748300,0,0,8903,0,1,1 +1773531289.665414,2.16,4,3992.50,64.89,1142.57,2540.64,0.00,3518680516232.711914,3518680515458.068359,221,21,0.003702,0.006977,4333725,3748438,0,0,8905,0,1,1 +1773531294.664551,2.11,4,3992.50,64.89,1142.59,2540.61,0.00,3519044244717.730957,3519044244719.201172,11,0,0.003879,0.007134,4333825,3748579,0,0,8908,0,1,1 +1773531299.661185,2.11,4,3992.50,64.88,1142.82,2540.38,0.00,0.050034,0.000000,70,0,0.003889,0.007123,4333926,3748719,0,0,8910,0,1,1 +1773531304.665555,2.16,4,3992.50,64.90,1142.40,2540.80,0.00,1.957078,0.000195,238,2,0.004326,0.006529,4334013,3748839,0,0,8913,0,1,1 +1773531309.665845,2.51,4,3992.50,64.85,1139.53,2539.00,0.00,255.024064,1034.374529,56188,644088,0.003878,0.007122,4334113,3748979,0,0,8915,0,1,1 +1773531314.666034,2.16,4,3992.50,64.84,1140.04,2538.50,0.00,4.060687,0.069431,56946,644154,0.003878,0.007119,4334213,3749119,0,0,8918,0,1,1 +1773531319.665724,2.06,4,3992.50,64.84,1140.05,2538.48,0.00,0.000000,0.035549,56946,644191,0.003878,0.007123,4334313,3749259,0,0,8920,0,1,1 +1773531324.665439,2.11,4,3992.50,64.84,1140.06,2538.46,0.00,3518638063040.136230,3518638062265.190918,221,21,0.003420,0.005865,4334399,3749376,0,0,8923,0,1,1 +1773531329.661952,2.01,4,3992.50,64.84,1140.09,2538.45,0.00,0.517255,3520892045234.957031,238,2,0.003889,0.007135,4334500,3749517,0,0,8925,0,1,1 +1773531334.665550,3.16,4,3992.50,64.43,1155.84,2522.64,0.00,258.913405,1033.876190,56946,644295,0.008072,0.009223,4334673,3749703,0,0,8928,0,1,1 +1773531339.665720,25.72,4,3992.50,65.67,1109.56,2571.09,0.00,0.000000,0.699976,56946,645210,34.208132,0.151900,4345823,3757948,0,0,8930,0,1,1 +1773531344.665721,6.33,4,3992.50,65.61,1111.60,2568.88,0.00,3518436657891.958496,0.357227,56188,645507,6.051328,0.036889,4348072,3759630,0,0,8933,0,1,1 +1773531349.666029,2.46,4,3992.50,65.30,1123.91,2556.56,0.00,3518220923180.323242,3518220922401.741699,11,0,0.003878,0.007122,4348172,3759770,0,0,8935,0,1,1 +1773531354.665323,1.96,4,3992.50,65.27,1124.85,2555.62,0.00,0.000000,0.000000,11,0,0.003879,0.007133,4348272,3759911,0,0,8938,0,1,1 +1773531359.665605,2.71,4,3992.50,65.26,1125.26,2555.23,0.00,261.093788,1036.142900,56946,645858,0.003886,0.007130,4348373,3760052,0,0,8940,0,1,1 +1773531364.665664,2.06,4,3992.50,65.26,1125.26,2555.21,0.00,3518395714070.574707,3518395713295.314453,199,0,0.003420,0.005865,4348459,3760169,0,0,8943,0,1,1 +1773531369.662107,2.61,4,3992.50,65.63,1109.94,2569.39,0.00,1.315878,0.022086,221,21,0.003893,0.007127,4348560,3760309,0,0,8945,0,1,1 +1773531374.662538,2.21,4,3992.50,65.54,1112.71,2566.07,0.00,0.000000,0.000000,221,21,0.003878,0.007132,4348660,3760450,0,0,8948,0,1,1 +1773531379.661276,2.06,4,3992.50,65.13,1128.91,2549.89,0.00,0.000000,0.000000,221,21,0.003879,0.007124,4348760,3760590,0,0,8950,0,1,1 +1773531384.661206,2.21,4,3992.50,65.13,1128.92,2549.88,0.00,259.620258,1036.376413,56946,646026,0.003420,0.005865,4348846,3760707,0,0,8953,0,1,1 +1773531389.662026,2.16,4,3992.50,65.11,1129.54,2549.25,0.00,3517860043176.307617,3517860042399.689453,221,21,0.003890,0.007121,4348947,3760847,0,0,8955,0,1,1 +1773531394.661191,2.06,4,3992.50,65.14,1128.59,2550.21,0.00,255.598471,1036.564514,56188,646061,0.003899,0.007142,4349049,3760989,0,0,8958,0,1,1 +1773531399.663869,2.41,4,3992.50,65.23,1130.28,2553.88,0.00,3516553209617.791504,3516553208838.666016,199,0,0.003876,0.007119,4349149,3761129,0,0,8960,0,1,1 +1773531404.661229,1.96,4,3992.50,65.01,1138.91,2545.25,0.00,261.069396,1037.058927,56946,646130,0.003422,0.005868,4349235,3761246,0,0,8963,0,1,1 +1773531409.664531,7.42,4,3992.50,65.25,1129.30,2554.85,0.00,3516115380061.960938,0.035621,56188,646208,4.051563,0.030747,4350755,3762473,0,0,8965,0,1,1 +1773531414.666536,23.05,4,3992.50,66.01,1099.57,2584.48,0.00,3517026947645.150879,3517026946864.494629,221,21,32.161005,0.142219,4361169,3770250,0,0,8968,0,1,1 +1773531419.666136,4.78,4,3992.50,64.96,1140.75,2543.31,0.00,0.516936,3518718512834.687012,238,2,4.036444,0.025843,4362643,3771391,0,0,8970,0,1,1 +1773531424.665657,1.96,4,3992.50,64.77,1148.25,2535.80,0.00,259.124545,1037.557755,56946,647286,0.003429,0.005874,4362730,3771509,0,0,8973,0,1,1 +1773531429.665610,2.36,4,3992.50,65.17,1136.68,2551.55,0.00,3518470285762.739746,3518470284984.912598,221,21,0.003408,0.005855,4362815,3771625,0,0,8975,0,1,1 +1773531434.665440,2.71,4,3992.50,65.18,1136.20,2551.96,0.00,3518556759588.439941,3518556759589.910156,11,0,0.003878,0.007133,4362915,3771766,0,0,8978,0,1,1 +1773531439.666027,2.11,4,3992.50,65.18,1136.21,2551.94,0.00,1.491719,0.022068,221,21,0.003878,0.007122,4363015,3771906,0,0,8980,0,1,1 +1773531444.661150,1.86,4,3992.50,65.19,1135.98,2552.17,0.00,3521872520114.648926,3521872520116.120117,11,0,0.003882,0.007139,4363115,3772047,0,0,8983,0,1,1 +1773531449.664958,2.01,4,3992.50,65.19,1136.02,2552.14,0.00,256.852038,1037.109066,56188,647553,0.003621,0.006471,4363206,3772174,0,0,8985,0,1,1 +1773531454.665499,2.06,4,3992.50,65.19,1136.02,2552.14,0.00,0.000000,0.062786,56188,647625,0.003644,0.006506,4363299,3772304,0,0,8988,0,1,1 +1773531459.663005,2.21,4,3992.50,65.17,1137.93,2551.37,0.00,4.062866,0.070054,56946,647670,0.003098,0.006743,4363385,3772435,0,0,8990,0,1,1 +1773531464.661263,2.01,4,3992.50,65.18,1136.11,2552.09,0.00,3519663281919.975098,3519663281141.310059,221,21,0.003879,0.007135,4363485,3772576,0,0,8993,0,1,1 +1773531469.661245,1.86,4,3992.50,65.19,1135.71,2552.49,0.00,3518450198999.892578,3518450199001.312500,70,0,0.003865,0.007110,4363584,3772715,0,0,8995,0,1,1 +1773531474.665035,1.76,4,3992.50,65.19,1135.73,2552.46,0.00,260.860781,1037.345888,56946,647788,0.003418,0.006517,4363670,3772837,0,0,8998,0,1,1 +1773531479.661174,11.65,4,3992.50,65.46,1125.39,2562.78,0.00,3521156326524.079102,3521156325746.405273,70,0,8.068261,0.045682,4366452,3774937,0,0,9000,0,1,1 +1773531484.666053,20.37,4,3992.50,64.92,1146.45,2541.64,0.00,0.000000,0.000000,70,0,32.163324,0.145696,4376972,3782954,0,0,9003,0,1,1 +1773531489.661206,2.57,4,3992.50,65.09,1144.74,2548.36,0.00,261.311844,1040.169017,56946,648957,0.008814,0.009424,4377160,3783152,0,0,9005,0,1,1 +1773531494.665357,1.81,4,3992.50,65.10,1144.22,2548.83,0.00,0.000000,0.017564,56946,648969,0.003875,0.007126,4377260,3783293,0,0,9008,0,1,1 +1773531499.665963,2.41,4,3992.50,65.11,1143.77,2549.28,0.00,3518010424258.928711,0.123325,56188,649097,0.003420,0.005854,4377346,3783409,0,0,9010,0,1,1 +1773531504.665132,2.21,4,3992.50,65.07,1145.38,2547.68,0.00,3519021956060.429688,3519021955276.576172,221,21,0.003879,0.007134,4377446,3783550,0,0,9013,0,1,1 +1773531509.661979,1.91,4,3992.50,65.13,1143.22,2549.83,0.00,3520657837055.431152,3520657837056.901855,11,0,0.003880,0.007127,4377546,3783690,0,0,9015,0,1,1 +1773531514.664828,1.76,4,3992.50,65.13,1143.25,2549.81,0.00,0.000000,0.000000,11,0,0.003876,0.007128,4377646,3783831,0,0,9018,0,1,1 +1773531519.661444,2.36,4,3992.50,65.02,1138.20,2545.75,0.00,0.000000,0.000000,11,0,0.003410,0.005859,4377731,3783947,0,0,9020,0,1,1 +1773531524.664644,2.01,4,3992.50,65.02,1138.33,2545.69,0.00,261.210849,1039.148310,56998,649570,0.004984,0.007735,4377853,3784101,0,0,9023,0,1,1 +1773531529.661209,1.86,4,3992.50,65.02,1138.34,2545.67,0.00,3520855989507.143066,3520855988728.172852,11,0,0.005466,0.008624,4377990,3784277,0,0,9025,0,1,1 +1773531534.665545,2.06,4,3992.50,65.02,1138.36,2545.66,0.00,0.176800,0.000000,199,0,0.004149,0.007680,4378094,3784429,0,0,9028,0,1,1 +1773531539.661183,1.86,4,3992.50,65.02,1138.38,2545.63,0.00,257.364796,1040.782735,56240,649648,0.003620,0.006876,4378186,3784559,0,0,9030,0,1,1 +1773531544.663654,2.21,4,3992.50,65.02,1138.39,2545.63,0.00,3516698741265.262207,3516698740481.084473,238,2,0.003419,0.006011,4378272,3784676,0,0,9033,0,1,1 +1773531549.664547,15.56,4,3992.50,65.49,1122.11,2564.06,0.00,3517809188478.009277,3517809188480.017578,11,0,14.101366,0.075936,4383171,3788387,0,0,9035,0,1,1 +1773531554.661199,16.82,4,3992.50,65.11,1132.78,2549.26,0.00,257.503683,1041.354062,56242,650859,26.179919,0.116709,4391755,3794753,0,0,9038,0,1,1 +1773531559.665655,2.05,4,3992.50,64.94,1139.42,2542.63,0.00,4.057224,0.025270,57000,650886,0.003875,0.007116,4391855,3794893,0,0,9040,0,1,1 +1773531564.664424,2.21,4,3992.50,64.74,1147.46,2534.59,0.00,3519303379571.079590,3519303378790.127441,221,21,0.003879,0.007134,4391955,3795034,0,0,9043,0,1,1 +1773531569.665259,1.81,4,3992.50,64.74,1147.24,2534.78,0.00,0.000000,0.000000,221,21,0.003674,0.006506,4392050,3795163,0,0,9045,0,1,1 +1773531574.661271,2.01,4,3992.50,64.74,1147.25,2534.79,0.00,260.107635,1041.878863,57000,651093,0.004397,0.007521,4392151,3795301,0,0,9048,0,1,1 +1773531579.662226,2.21,4,3992.50,64.80,1142.41,2537.18,0.00,3517765212044.060059,3517765211264.481445,70,0,0.003885,0.007129,4392252,3795442,0,0,9050,0,1,1 +1773531584.663563,2.30,4,3992.50,64.82,1141.71,2537.86,0.00,3517496576832.556641,0.000000,11,0,0.003864,0.007130,4392351,3795583,0,0,9053,0,1,1 +1773531589.664155,1.76,4,3992.50,64.82,1141.71,2537.85,0.00,0.049994,0.000000,70,0,0.002801,0.005617,4392425,3795692,0,0,9055,0,1,1 +1773531594.666029,1.86,4,3992.50,64.84,1140.75,2538.82,0.00,0.000000,0.000000,70,0,0.003877,0.007130,4392525,3795833,0,0,9058,0,1,1 +1773531599.665803,1.96,4,3992.50,64.67,1147.46,2532.12,0.00,3518596283213.675781,0.000000,11,0,0.003878,0.007123,4392625,3795973,0,0,9060,0,1,1 +1773531604.661981,1.91,4,3992.50,64.69,1146.79,2532.79,0.00,261.601490,1042.366346,57009,651469,0.004804,0.008279,4392727,3796119,0,0,9063,0,1,1 +1773531609.661489,2.31,4,3992.50,65.11,1130.54,2549.24,0.00,3518783475917.309570,3518783475137.014648,70,0,0.003421,0.006017,4392813,3796236,0,0,9065,0,1,1 +1773531614.665648,2.05,4,3992.50,65.12,1129.92,2549.66,0.00,3515512662336.582520,0.000000,11,0,0.003875,0.007114,4392913,3796376,0,0,9068,0,1,1 +1773531619.665606,21.89,4,3992.50,65.57,1112.36,2567.16,0.00,0.176955,0.000000,199,0,26.166687,0.118899,4401415,3802556,0,0,9070,0,1,1 +1773531624.665282,10.51,4,3992.50,65.39,1119.16,2560.23,0.00,0.000000,0.000000,199,0,14.096749,0.069176,4406232,3806095,0,0,9073,0,1,1 +1773531629.665713,2.61,4,3992.50,64.87,1139.68,2539.76,0.00,257.141512,1042.444247,56251,652789,0.003886,0.007130,4406333,3806236,0,0,9075,0,1,1 +1773531634.664721,1.76,4,3992.50,64.88,1139.19,2540.27,0.00,3519135502941.609863,3519135502156.260742,11,0,0.003421,0.005854,4406419,3806352,0,0,9078,0,1,1 +1773531639.665577,2.26,4,3992.50,65.08,1137.23,2547.88,0.00,1.491639,0.022067,221,21,0.003865,0.007121,4406518,3806492,0,0,9080,0,1,1 +1773531644.665900,1.76,4,3992.50,65.08,1137.01,2548.04,0.00,0.516861,3518210190037.887695,238,2,0.003878,0.007132,4406618,3806633,0,0,9083,0,1,1 +1773531649.665578,2.16,4,3992.50,65.08,1137.05,2548.02,0.00,3518663702450.279297,0.021876,221,21,0.003878,0.007123,4406718,3806773,0,0,9085,0,1,1 +1773531654.663196,2.01,4,3992.50,65.04,1138.72,2546.34,0.00,3520113881364.768555,3520113881366.239258,11,0,0.003409,0.005855,4406803,3806889,0,0,9088,0,1,1 +1773531659.666094,1.95,4,3992.50,65.04,1138.74,2546.32,0.00,0.000000,0.000000,11,0,0.003888,0.007118,4406904,3807029,0,0,9090,0,1,1 +1773531664.661162,2.26,4,3992.50,65.04,1138.77,2546.30,0.00,0.000000,0.000000,11,0,0.003882,0.007139,4407004,3807170,0,0,9093,0,1,1 +1773531669.665400,2.21,4,3992.50,65.29,1128.81,2556.21,0.00,0.000000,0.000000,11,0,0.003875,0.007760,4407104,3807314,0,0,9095,0,1,1 +1773531674.662092,2.16,4,3992.50,65.17,1133.40,2551.66,0.00,1.492882,0.022085,221,21,0.003756,0.007093,4407203,3807452,0,0,9098,0,1,1 +1773531679.661266,2.31,4,3992.50,65.18,1133.19,2551.88,0.00,255.890986,1043.430409,56251,653246,0.003566,0.005908,4407292,3807572,0,0,9100,0,1,1 +1773531684.662250,1.96,4,3992.50,65.18,1133.18,2551.89,0.00,3517745180908.871094,3517745180122.909180,199,0,0.003877,0.007131,4407392,3807713,0,0,9103,0,1,1 +1773531689.666093,4.46,4,3992.50,65.24,1130.95,2554.12,0.00,256.966146,1042.541877,56251,653319,1.816885,0.017421,4408107,3808295,0,0,9105,0,1,1 +1773531694.661897,23.65,4,3992.50,65.76,1110.46,2574.52,0.00,3521392533788.499023,3521392533001.786133,70,0,32.428718,0.147578,4418722,3816284,0,0,9108,0,1,1 +1773531699.665649,6.92,4,3992.50,65.74,1111.16,2573.82,0.00,3515798588682.309570,0.000000,11,0,6.042910,0.032950,4420863,3817919,0,0,9110,0,1,1 +1773531704.665200,2.56,4,3992.50,65.75,1117.01,2574.21,0.00,1.492029,0.022072,221,21,0.004198,0.006879,4420971,3818058,0,0,9113,0,1,1 +1773531709.666016,1.96,4,3992.50,65.35,1132.71,2558.52,0.00,0.516810,3517863465755.521484,238,2,0.003877,0.007121,4421071,3818198,0,0,9115,0,1,1 +1773531714.666194,2.26,4,3992.50,65.35,1132.73,2558.49,0.00,3518311827506.306641,3518311827508.265137,70,0,0.003878,0.007132,4421171,3818339,0,0,9118,0,1,1 +1773531719.665146,1.81,4,3992.50,65.16,1140.15,2551.07,0.00,1.959200,0.000195,238,2,0.003650,0.006478,4421264,3818466,0,0,9120,0,1,1 +1773531724.665560,1.91,4,3992.50,65.16,1140.17,2551.05,0.00,0.000000,0.000000,238,2,0.003649,0.006511,4421357,3818596,0,0,9123,0,1,1 +1773531729.661888,2.31,4,3992.50,65.37,1127.45,2559.54,0.00,3521023055255.066895,3521023055257.026855,70,0,0.003889,0.007136,4421458,3818737,0,0,9125,0,1,1 +1773531734.664857,1.86,4,3992.50,65.37,1127.31,2559.55,0.00,0.000000,0.000000,70,0,0.003876,0.007772,4421558,3818882,0,0,9128,0,1,1 +1773531739.665335,2.11,4,3992.50,65.19,1134.49,2552.38,0.00,261.326496,1044.828295,57009,654950,0.003890,0.007084,4421659,3819019,0,0,9130,0,1,1 +1773531744.661275,1.91,4,3992.50,65.19,1134.50,2552.36,0.00,3521296626393.671387,0.021306,56251,654976,0.003423,0.005882,4421745,3819137,0,0,9133,0,1,1 +1773531749.665830,1.76,4,3992.50,65.03,1140.68,2546.19,0.00,3515234693429.216309,3515234692642.147949,199,0,0.003874,0.007116,4421845,3819277,0,0,9135,0,1,1 +1773531754.665310,1.86,4,3992.50,65.06,1139.75,2547.12,0.00,0.000000,0.000000,199,0,0.003878,0.007133,4421945,3819418,0,0,9138,0,1,1 +1773531759.664651,2.61,4,3992.50,65.28,1130.27,2555.70,0.00,0.000000,0.000000,199,0,0.003879,0.007098,4422045,3819556,0,0,9140,0,1,1 +1773531764.661199,9.91,4,3992.50,65.73,1112.57,2573.54,0.00,257.341339,1045.817046,56251,655200,6.053079,0.038607,4424219,3821241,0,0,9143,0,1,1 +1773531769.665560,21.84,4,3992.50,65.39,1125.77,2560.24,0.00,3515371533964.634277,3515371533177.566406,11,0,32.172340,0.145266,4434741,3829075,0,0,9145,0,1,1 +1773531774.663922,3.02,4,3992.50,65.53,1120.42,2565.55,0.00,0.000000,0.000000,11,0,2.017041,0.014197,4435507,3829691,0,0,9148,0,1,1 +1773531779.661289,2.11,4,3992.50,65.53,1120.44,2565.54,0.00,257.476184,1046.334186,56251,656224,0.003880,0.007114,4435607,3829830,0,0,9150,0,1,1 +1773531784.665933,1.81,4,3992.50,65.53,1120.45,2565.52,0.00,3515172537828.594238,3515172537040.883301,11,0,0.003978,0.006014,4435733,3829957,0,0,9153,0,1,1 +1773531789.665656,2.71,4,3992.50,65.15,1136.58,2550.74,0.00,0.000000,0.000000,11,0,0.008794,0.006727,4435941,3830109,0,0,9155,0,1,1 +1773531794.662730,2.51,4,3992.50,65.18,1135.07,2552.12,0.00,1.492768,0.022083,221,21,0.013638,0.008783,4436247,3830317,0,0,9158,0,1,1 +1773531799.662766,3.22,4,3992.50,65.18,1135.20,2552.00,0.00,0.516891,3518411152937.543457,238,2,0.018527,0.011531,4436659,3830588,0,0,9160,0,1,1 +1773531804.663316,2.11,4,3992.50,65.08,1139.12,2548.11,0.00,0.000000,0.000000,238,2,0.003580,0.005899,4436765,3830698,0,0,9163,0,1,1 +1773531809.661288,1.81,4,3992.50,65.08,1139.14,2548.09,0.00,3519865032275.961914,3519865032277.921387,70,0,0.002783,0.004867,4436856,3830795,0,0,9165,0,1,1 +1773531814.661295,2.01,4,3992.50,65.08,1139.27,2547.95,0.00,3518432242264.197266,0.000000,11,0,0.003836,0.005853,4436971,3830911,0,0,9168,0,1,1 +1773531819.665870,2.21,4,3992.50,65.25,1130.47,2554.87,0.00,257.105378,1045.853903,56251,656874,0.003362,0.004808,4437070,3831005,0,0,9170,0,1,1 +1773531824.665478,2.26,4,3992.50,65.27,1129.91,2555.33,0.00,3518713372031.384277,3518713371240.382324,221,21,0.004978,0.007019,4437199,3831134,0,0,9173,0,1,1 +1773531829.665453,1.96,4,3992.50,65.27,1129.92,2555.32,0.00,255.849984,1046.854154,56251,656941,0.006532,0.008067,4437366,3831292,0,0,9175,0,1,1 +1773531834.661281,8.55,4,3992.50,65.03,1139.31,2545.90,0.00,3521375654345.834961,3521375653555.645020,11,0,2.050776,0.033230,4439524,3832771,0,0,9178,0,1,1 +1773531839.664149,11.87,4,3992.50,64.74,1150.54,2534.62,0.00,257.193114,1046.767897,56251,657626,16.195026,0.146480,4453149,3842519,0,0,9180,0,1,1 +1773531844.666003,9.98,4,3992.50,64.93,1142.82,2542.30,0.00,4.059335,0.086979,57009,657888,12.151334,0.114878,4463454,3850119,0,0,9183,0,1,1 +1773531849.665293,7.77,4,3992.50,64.99,1140.59,2544.52,0.00,3518936585840.698730,3518936585053.062988,221,21,10.134971,0.093327,4472078,3856241,0,0,9185,0,1,1 +1773531854.665361,2.26,4,3992.50,65.01,1139.83,2545.23,0.00,3518389506556.778320,3518389506558.248047,11,0,0.003652,0.005277,4472189,3856349,0,0,9188,0,1,1 +1773531859.665802,1.91,4,3992.50,64.82,1147.25,2537.82,0.00,0.000000,0.000000,11,0,0.003348,0.005005,4472288,3856446,0,0,9190,0,1,1 +1773531864.663643,2.16,4,3992.50,64.88,1145.04,2540.03,0.00,0.000000,0.000000,11,0,0.003891,0.005894,4472407,3856565,0,0,9193,0,1,1 +1773531869.661200,1.86,4,3992.50,64.88,1145.06,2540.01,0.00,257.466427,1048.821455,56251,658558,0.002866,0.005464,4472502,3856663,0,0,9195,0,1,1 +1773531874.665879,1.81,4,3992.50,64.88,1145.06,2540.00,0.00,3515148036803.300781,3515148036011.604004,221,21,0.003739,0.005388,4472621,3856779,0,0,9198,0,1,1 +1773531879.664997,2.41,4,3992.50,65.31,1134.61,2556.95,0.00,3519058281143.442383,3519058281144.912598,11,0,0.004608,0.006940,4472746,3856897,0,0,9200,0,1,1 +1773531884.661202,2.01,4,3992.50,65.16,1140.52,2551.00,0.00,0.000000,0.000000,11,0,0.002743,0.004424,4472826,3856987,0,0,9203,0,1,1 +1773531889.661263,2.46,4,3992.50,65.16,1140.24,2551.29,0.00,1.491876,0.022070,221,21,0.003575,0.005196,4472931,3857089,0,0,9205,0,1,1 +1773531894.663332,2.91,4,3992.50,65.16,1140.28,2551.23,0.00,255.742884,1047.970858,56251,658645,0.003565,0.005229,4473036,3857194,0,0,9208,0,1,1 +1773531899.665576,1.91,4,3992.50,65.17,1140.17,2551.35,0.00,4.059019,0.078773,57009,658731,0.003843,0.005866,4473152,3857311,0,0,9210,0,1,1 +1773531904.664596,2.21,4,3992.50,65.16,1140.50,2551.02,0.00,0.000000,0.072182,57009,658794,0.004254,0.005289,4473252,3857409,0,0,9213,0,1,1 +1773531909.663191,2.81,4,3992.50,65.16,1136.57,2551.10,0.00,3519426018109.274414,3519426017321.826660,70,0,0.003882,0.005863,4473370,3857525,0,0,9215,0,1,1 +1773531914.661834,11.03,4,3992.50,65.21,1134.23,2553.02,0.00,0.000000,0.000000,70,0,4.076956,0.051852,4477253,3860259,0,0,9218,0,1,1 +1773531919.665185,11.84,4,3992.50,65.72,1114.35,2572.89,0.00,0.126868,0.000000,199,0,14.344378,0.128873,4489535,3868718,0,0,9220,0,1,1 +1773531924.661200,9.11,4,3992.50,65.59,1119.09,2568.08,0.00,3521243876175.674805,0.000000,11,0,13.715434,0.120622,4501033,3876672,0,0,9223,0,1,1 +1773531929.663175,6.78,4,3992.50,65.48,1123.39,2563.79,0.00,2.007996,0.000195,238,2,8.404428,0.077237,4508069,3881800,0,0,9225,0,1,1 +1773531934.664878,2.06,4,3992.50,65.09,1138.70,2548.48,0.00,3517239859536.665039,3517239859538.496582,199,0,0.003109,0.006111,4508173,3881911,0,0,9228,0,1,1 +1773531939.665837,2.41,4,3992.50,65.24,1125.32,2554.30,0.00,3517761916088.382324,0.000000,11,0,0.003614,0.005201,4508281,3882013,0,0,9230,0,1,1 +1773531944.665708,2.11,4,3992.50,65.05,1132.68,2546.83,0.00,2.008841,0.000195,238,2,0.003390,0.005034,4508383,3882114,0,0,9233,0,1,1 +1773531949.663798,1.96,4,3992.50,65.06,1132.46,2547.05,0.00,259.491831,1050.462429,57009,660494,0.003519,0.005877,4508498,3882231,0,0,9235,0,1,1 +1773531954.665673,2.41,4,3992.50,65.05,1132.47,2547.04,0.00,3517118183789.332031,3517118183000.967773,11,0,0.003236,0.004596,4508589,3882324,0,0,9238,0,1,1 +1773531959.661182,2.06,4,3992.50,64.88,1139.43,2540.09,0.00,0.000000,0.000000,11,0,0.003907,0.005848,4508708,3882439,0,0,9240,0,1,1 +1773531964.661180,2.26,4,3992.50,64.88,1139.47,2540.05,0.00,257.340712,1050.180531,56251,660588,0.003880,0.005853,4508826,3882555,0,0,9243,0,1,1 +1773531969.663914,4.57,4,3992.50,64.85,1140.52,2539.00,0.00,4.058621,0.115464,57009,660675,0.003321,0.004587,4508923,3882647,0,0,9245,0,1,1 +1773531974.665632,2.41,4,3992.50,64.85,1140.56,2538.97,0.00,3517228742289.833496,3517228741499.202148,238,2,0.003982,0.005877,4509048,3882765,0,0,9248,0,1,1 +1773531979.661175,2.11,4,3992.50,64.80,1142.46,2537.07,0.00,255.559623,1051.289775,56251,660744,0.003883,0.005860,4509166,3882881,0,0,9250,0,1,1 +1773531984.665645,2.10,4,3992.50,64.86,1140.04,2539.52,0.00,3515294733396.825684,3515294732604.520996,11,0,0.003115,0.004449,4509258,3882972,0,0,9253,0,1,1 +1773531989.662534,1.96,4,3992.50,64.86,1140.04,2539.52,0.00,257.500868,1051.077721,56251,660825,0.003947,0.005882,4509381,3883090,0,0,9255,0,1,1 +1773531994.665368,11.45,4,3992.50,65.47,1116.04,2563.46,0.00,3516444206202.485840,3516444205409.675293,199,0,6.097587,0.071592,4514913,3887061,0,0,9258,0,1,1 +1773531999.661938,7.61,4,3992.50,65.63,1114.55,2569.41,0.00,257.340169,1051.767353,56251,661454,8.111506,0.073469,4521819,3891879,0,0,9260,0,1,1 +1773532004.663113,11.17,4,3992.50,65.92,1102.74,2580.89,0.00,3517610655249.545410,3517610654454.557617,221,21,15.250201,0.132452,4534982,3900735,0,0,9263,0,1,1 +1773532009.662925,8.98,4,3992.50,65.39,1122.48,2560.33,0.00,3518570051086.608887,3518570051088.028809,70,0,11.079149,0.098342,4543970,3907213,0,0,9265,0,1,1 +1773532014.665451,3.61,4,3992.50,65.14,1132.52,2550.31,0.00,3516660015511.071289,0.000000,11,0,0.003329,0.004621,4544068,3907308,0,0,9268,0,1,1 +1773532019.664485,3.41,4,3992.50,65.14,1132.33,2550.48,0.00,2.009178,0.000195,238,2,0.003823,0.005831,4544182,3907422,0,0,9270,0,1,1 +1773532024.665989,2.06,4,3992.50,65.14,1132.37,2550.46,0.00,255.256587,1051.142971,56253,662207,0.003359,0.004584,4544282,3907514,0,0,9273,0,1,1 +1773532029.665161,2.41,4,3992.50,65.72,1109.75,2573.09,0.00,3519020191330.687500,3519020190534.429688,238,2,0.003850,0.005857,4544398,3907630,0,0,9275,0,1,1 +1773532034.661267,1.96,4,3992.50,65.68,1111.32,2571.50,0.00,259.596394,1052.790347,57011,662524,0.003656,0.005638,4544508,3907741,0,0,9278,0,1,1 +1773532039.663651,2.31,4,3992.50,65.48,1119.23,2563.60,0.00,3516760555749.358398,3516760554958.990723,199,0,0.003558,0.004981,4544614,3907839,0,0,9280,0,1,1 +1773532044.665550,2.06,4,3992.50,65.49,1118.74,2564.09,0.00,261.126901,1051.612425,57011,662546,0.003663,0.005723,4544727,3907954,0,0,9283,0,1,1 +1773532049.661836,2.01,4,3992.50,65.48,1118.97,2563.86,0.00,3521052330808.324707,3521052330015.656738,221,21,0.003604,0.005271,4544835,3908061,0,0,9285,0,1,1 +1773532054.666106,1.96,4,3992.50,65.48,1119.30,2563.53,0.00,0.516454,3515435165057.277832,238,2,0.003625,0.005157,4544944,3908161,0,0,9288,0,1,1 +1773532059.665203,2.56,4,3992.50,65.48,1123.69,2563.49,0.00,3519072946300.666992,3519072946302.499512,199,0,0.003115,0.005528,4545049,3908271,0,0,9290,0,1,1 +1773532064.665204,2.11,4,3992.50,65.46,1123.54,2562.91,0.00,261.226034,1052.199250,57011,662722,0.003642,0.005864,4545159,3908379,0,0,9293,0,1,1 +1773532069.665865,2.81,4,3992.50,65.02,1140.75,2545.73,0.00,3517971692316.025391,3517971691523.325195,238,2,0.005494,0.005660,4545304,3908501,0,0,9295,0,1,1 +1773532074.662981,11.09,4,3992.50,65.54,1120.28,2566.18,0.00,3520467897847.889160,3520467897849.722168,199,0,6.351469,0.075165,4551378,3912626,0,0,9298,0,1,1 +1773532079.665536,12.57,4,3992.50,65.19,1134.03,2552.38,0.00,3516640013124.443848,0.000000,11,0,17.969750,0.157114,4566064,3923254,0,0,9300,0,1,1 +1773532084.665722,10.26,4,3992.50,65.61,1117.48,2568.86,0.00,0.000000,0.000000,11,0,12.208054,0.112675,4576474,3930772,0,0,9303,0,1,1 +1773532089.665423,4.28,4,3992.50,65.52,1133.34,2565.20,0.00,261.418690,1053.020903,57011,663738,4.003753,0.039140,4579888,3933274,0,0,9305,0,1,1 +1773532094.664915,2.01,4,3992.50,65.51,1131.93,2564.90,0.00,3518794333169.997070,3518794332378.312012,70,0,0.003231,0.004598,4579979,3933367,0,0,9308,0,1,1 +1773532099.663642,2.46,4,3992.50,65.51,1131.93,2564.91,0.00,3519333444449.713379,0.000000,11,0,0.003914,0.005857,4580099,3933483,0,0,9310,0,1,1 +1773532104.661598,2.41,4,3992.50,65.05,1150.04,2546.84,0.00,0.000000,0.000000,11,0,0.003654,0.005764,4580208,3933593,0,0,9313,0,1,1 +1773532109.665176,1.96,4,3992.50,65.05,1149.83,2547.04,0.00,0.176827,0.000000,199,0,0.003359,0.004563,4580310,3933691,0,0,9315,0,1,1 +1773532114.662175,2.11,4,3992.50,65.06,1149.59,2547.28,0.00,1.832936,0.000195,238,2,0.003822,0.005870,4580424,3933808,0,0,9318,0,1,1 +1773532119.663103,2.31,4,3992.50,65.30,1136.66,2556.58,0.00,259.346138,1053.583694,57011,664413,0.003492,0.005405,4580532,3933913,0,0,9320,0,1,1 +1773532124.661866,2.46,4,3992.50,65.30,1136.24,2556.81,0.00,3519307911443.975586,3519307910649.394531,238,2,0.004086,0.005313,4580650,3934024,0,0,9323,0,1,1 +1773532129.665374,2.06,4,3992.50,65.11,1143.66,2549.38,0.00,3515970085019.507812,3515970085021.464844,70,0,0.007197,0.009700,4580819,3934193,0,0,9325,0,1,1 +1773532134.665288,2.16,4,3992.50,64.99,1148.47,2544.58,0.00,257.296617,1053.860328,56253,664486,0.003363,0.005555,4580926,3934302,0,0,9328,0,1,1 +1773532139.661323,1.96,4,3992.50,64.80,1156.14,2536.91,0.00,3521229824166.365723,3521229823369.183594,70,0,0.003869,0.005772,4581044,3934418,0,0,9330,0,1,1 +1773532144.661272,2.31,4,3992.50,64.80,1155.90,2537.14,0.00,3518472979086.844727,0.000000,11,0,0.003966,0.005911,4581168,3934538,0,0,9333,0,1,1 +1773532149.661195,2.66,4,3992.50,65.04,1141.81,2546.45,0.00,0.000000,0.000000,11,0,0.003434,0.005170,4581271,3934638,0,0,9335,0,1,1 +1773532154.665697,4.76,4,3992.50,65.14,1135.36,2550.41,0.00,0.176794,0.000000,199,0,0.014646,0.011794,4581580,3934868,0,0,9338,0,1,1 +1773532159.665789,13.07,4,3992.50,65.78,1110.39,2575.38,0.00,0.000000,0.000000,199,0,10.601092,0.106014,4591228,3941524,0,0,9340,0,1,1 +1773532164.661192,9.46,4,3992.50,65.04,1139.28,2546.46,0.00,1.316152,0.022091,221,21,13.736348,0.124041,4602428,3949713,0,0,9343,0,1,1 +1773532169.665806,9.87,4,3992.50,65.03,1139.57,2546.10,0.00,259.671527,1053.583885,57011,665705,16.174566,0.132432,4615677,3958910,0,0,9345,0,1,1 +1773532174.666026,3.36,4,3992.50,65.05,1138.78,2546.89,0.00,3518282068568.679688,3518282067773.530762,238,2,0.015725,0.010733,4616015,3959161,0,0,9348,0,1,1 +1773532179.665698,2.41,4,3992.50,65.03,1131.52,2546.05,0.00,0.000000,0.000000,238,2,0.003225,0.005184,4616102,3959250,0,0,9350,0,1,1 +1773532184.665888,2.06,4,3992.50,64.88,1137.24,2540.34,0.00,3518303765952.345215,3518303765954.303711,70,0,0.003829,0.005883,4616217,3959368,0,0,9353,0,1,1 +1773532189.665241,2.06,4,3992.50,64.89,1136.80,2540.77,0.00,1.959043,0.000195,238,2,0.003094,0.005587,4616319,3959475,0,0,9355,0,1,1 +1773532194.663958,1.66,4,3992.50,64.93,1135.59,2541.98,0.00,3519339959701.380371,3519339959703.339355,70,0,0.003522,0.005311,4616422,3959576,0,0,9358,0,1,1 +1773532199.661219,1.76,4,3992.50,64.93,1135.60,2541.96,0.00,1.442685,0.022082,221,21,0.003831,0.005858,4616537,3959692,0,0,9360,0,1,1 +1773532204.665543,1.91,4,3992.50,64.67,1145.54,2532.04,0.00,3515397486859.767090,3515397486861.059082,199,0,0.004747,0.006296,4616663,3959809,0,0,9363,0,1,1 +1773532209.665837,2.50,4,3992.50,65.00,1145.00,2545.07,0.00,3518230470624.108398,0.000000,11,0,0.003609,0.005208,4616771,3959912,0,0,9365,0,1,1 +1773532214.661187,1.81,4,3992.50,65.01,1142.52,2545.25,0.00,2.010659,0.000195,238,2,0.003922,0.006038,4616891,3960030,0,0,9368,0,1,1 +1773532219.661195,1.81,4,3992.50,65.01,1142.52,2545.25,0.00,3518431860161.253906,3518431860163.085938,199,0,0.003640,0.005291,4617001,3960138,0,0,9370,0,1,1 +1773532224.661189,1.76,4,3992.50,65.02,1142.30,2545.48,0.00,3518441674489.246582,0.000000,70,0,0.003348,0.005046,4617101,3960238,0,0,9373,0,1,1 +1773532229.661196,2.01,4,3992.50,65.01,1142.30,2545.46,0.00,0.126953,0.000000,199,0,0.003891,0.005855,4617220,3960354,0,0,9375,0,1,1 +1773532234.665380,5.77,4,3992.50,65.37,1128.23,2559.55,0.00,1.313842,0.022052,221,21,0.255497,0.015431,4618083,3960796,0,0,9378,0,1,1 +1773532239.661188,10.19,4,3992.50,65.83,1110.28,2577.45,0.00,3521389948583.000000,3521389948584.471191,11,0,11.963265,0.112651,4627990,3968058,0,0,9380,0,1,1 +1773532244.666063,7.09,4,3992.50,64.92,1147.34,2541.67,0.00,2.006832,0.000195,238,2,10.085286,0.089071,4636432,3974186,0,0,9383,0,1,1 +1773532249.665706,9.39,4,3992.50,66.10,1100.24,2588.00,0.00,3518687809827.184082,3518687809829.016113,199,0,12.157676,0.114051,4646747,3981555,0,0,9385,0,1,1 +1773532254.665314,5.73,4,3992.50,65.91,1107.57,2580.66,0.00,1.315045,0.022072,221,21,6.083148,0.057318,4651964,3985255,0,0,9388,0,1,1 +1773532259.661183,2.06,4,3992.50,65.62,1118.99,2569.22,0.00,0.000000,0.000000,221,21,0.003313,0.005236,4652060,3985351,0,0,9390,0,1,1 +1773532264.661198,2.06,4,3992.50,65.56,1121.26,2566.96,0.00,3518426314426.468262,3518426314427.937988,11,0,0.003832,0.005887,4652175,3985470,0,0,9393,0,1,1 +1773532269.665982,2.41,4,3992.50,65.76,1113.62,2574.60,0.00,0.000000,0.000000,11,0,0.003633,0.005679,4652285,3985582,0,0,9395,0,1,1 +1773532274.662134,1.76,4,3992.50,65.15,1137.45,2550.77,0.00,0.000000,0.000000,11,0,0.003319,0.004603,4652382,3985675,0,0,9398,0,1,1 +1773532279.665174,2.66,4,3992.50,65.21,1135.02,2553.22,0.00,2.007569,0.000195,238,2,0.003863,0.005693,4652499,3985788,0,0,9400,0,1,1 +1773532284.666090,1.76,4,3992.50,65.04,1141.93,2546.30,0.00,255.296008,1057.114560,56262,668214,0.003062,0.005658,4652601,3985900,0,0,9403,0,1,1 +1773532289.665551,2.16,4,3992.50,65.05,1141.48,2546.75,0.00,0.000000,0.011232,56262,668224,0.003331,0.004588,4652699,3985992,0,0,9405,0,1,1 +1773532294.663715,2.06,4,3992.50,65.01,1143.14,2545.09,0.00,4.062332,0.078935,57020,668313,0.003230,0.005625,4652803,3986102,0,0,9408,0,1,1 +1773532299.662905,2.26,4,3992.50,65.33,1141.74,2557.82,0.00,0.000000,0.044050,57020,668334,0.003856,0.005857,4652919,3986218,0,0,9410,0,1,1 +1773532304.665487,2.31,4,3992.50,65.09,1150.93,2548.61,0.00,3516621100294.061523,3516621099498.265625,199,0,0.003293,0.004595,4653014,3986311,0,0,9413,0,1,1 +1773532309.665766,4.22,4,3992.50,64.86,1160.01,2539.54,0.00,1.314868,0.022069,221,21,0.003892,0.005861,4653133,3986427,0,0,9415,0,1,1 +1773532314.665483,2.26,4,3992.50,64.90,1158.60,2540.95,0.00,0.516924,3518636536124.313477,238,2,0.002716,0.003306,4653206,3986494,0,0,9418,0,1,1 +1773532319.662138,6.53,4,3992.50,64.85,1160.70,2538.86,0.00,0.000000,0.000000,238,2,0.026211,0.017579,4653715,3986834,0,0,9420,0,1,1 +1773532324.665549,10.89,4,3992.50,66.22,1107.00,2592.50,0.00,255.168685,1057.347960,56262,669116,12.389149,0.115795,4664499,3994293,0,0,9423,0,1,1 +1773532329.662141,11.64,4,3992.50,66.30,1100.66,2595.69,0.00,3520836886410.176758,3520836885608.735352,199,0,18.199932,0.162481,4679687,4005375,0,0,9425,0,1,1 +1773532334.666839,7.46,4,3992.50,65.11,1147.06,2549.19,0.00,0.000000,0.000000,199,0,9.920121,0.089769,4687799,4011303,0,0,9428,0,1,1 +1773532339.662194,3.72,4,3992.50,65.14,1145.89,2550.40,0.00,3521708674800.176270,0.000000,11,0,0.003090,0.005623,4687902,4011412,0,0,9430,0,1,1 +1773532344.663220,2.20,4,3992.50,65.11,1147.10,2549.18,0.00,261.358782,1058.557923,57020,670014,0.003304,0.004609,4687998,4011506,0,0,9433,0,1,1 +1773532349.665460,2.06,4,3992.50,65.15,1145.41,2550.86,0.00,3516861752327.510742,3516861751528.497070,238,2,0.003276,0.005615,4688105,4011615,0,0,9435,0,1,1 +1773532354.664954,2.31,4,3992.50,65.15,1145.43,2550.85,0.00,3518793331176.799805,0.021877,221,21,0.003843,0.005861,4688221,4011732,0,0,9438,0,1,1 +1773532359.663564,2.61,4,3992.50,65.18,1128.70,2551.75,0.00,3519415527563.463379,3519415527564.933594,11,0,0.003304,0.004590,4688317,4011824,0,0,9440,0,1,1 +1773532364.664368,2.11,4,3992.50,65.06,1133.20,2547.25,0.00,257.310210,1058.941827,56262,670162,0.003878,0.005901,4688436,4011943,0,0,9443,0,1,1 +1773532369.665117,1.96,4,3992.50,64.88,1140.39,2540.06,0.00,3517909942876.623047,3517909942074.805664,199,0,0.003758,0.005641,4688553,4012054,0,0,9445,0,1,1 +1773532374.661201,2.06,4,3992.50,64.90,1139.43,2541.02,0.00,3521195074359.489746,0.000000,11,0,0.003511,0.004846,4688656,4012153,0,0,9448,0,1,1 +1773532379.665937,2.36,4,3992.50,64.90,1139.45,2541.00,0.00,0.000000,0.000000,11,0,0.003837,0.005856,4688771,4012269,0,0,9450,0,1,1 +1773532384.666076,2.01,4,3992.50,64.90,1139.46,2540.99,0.00,0.176948,0.000000,199,0,0.003899,0.007140,4688873,4012411,0,0,9453,0,1,1 +1773532389.665604,2.41,4,3992.50,65.02,1134.84,2545.85,0.00,1.315066,0.022072,221,21,0.003421,0.006500,4688959,4012531,0,0,9455,0,1,1 +1773532394.665890,1.96,4,3992.50,65.00,1135.45,2544.97,0.00,0.000000,0.000000,221,21,0.003878,0.007119,4689059,4012671,0,0,9458,0,1,1 +1773532399.665128,9.64,4,3992.50,65.01,1134.98,2545.44,0.00,3518973389226.667480,3518973389228.137695,11,0,2.038525,0.025764,4690116,4013469,0,0,9460,0,1,1 +1773532404.663783,23.34,4,3992.50,65.11,1131.05,2549.25,0.00,0.000000,0.000000,11,0,38.229868,0.160375,4702367,4022569,0,0,9463,0,1,1 +1773532409.661224,2.21,4,3992.50,65.14,1129.94,2550.36,0.00,0.050026,0.000000,70,0,0.009224,0.010222,4702569,4022782,0,0,9465,0,1,1 +1773532414.661210,1.81,4,3992.50,65.15,1129.71,2550.59,0.00,261.363909,1060.067689,57021,671527,0.003886,0.007115,4702670,4022922,0,0,9468,0,1,1 +1773532419.665593,2.46,4,3992.50,65.44,1118.79,2562.12,0.00,3515355260105.557129,3515355259307.605469,11,0,0.003405,0.005875,4702755,4023040,0,0,9470,0,1,1 +1773532424.664553,2.01,4,3992.50,65.44,1118.90,2562.01,0.00,261.467566,1060.525850,57021,671572,0.004976,0.007608,4702876,4023193,0,0,9473,0,1,1 +1773532429.665025,1.81,4,3992.50,65.44,1118.92,2561.99,0.00,3518105726369.149902,3518105725568.863281,221,21,0.005594,0.009029,4703000,4023363,0,0,9475,0,1,1 +1773532434.665578,1.86,4,3992.50,65.44,1118.94,2561.97,0.00,259.892523,1060.468658,57021,671848,0.004152,0.007661,4703104,4023513,0,0,9478,0,1,1 +1773532439.665154,1.86,4,3992.50,65.44,1118.96,2561.96,0.00,0.000000,0.057134,57021,671860,0.003617,0.006400,4703196,4023641,0,0,9480,0,1,1 +1773532444.661230,2.21,4,3992.50,65.44,1118.98,2561.93,0.00,3521200588391.676758,3521200587591.747070,70,0,0.003876,0.007146,4703296,4023783,0,0,9483,0,1,1 +1773532449.661344,2.26,4,3992.50,65.53,1128.22,2565.60,0.00,3518357211291.565430,0.000000,11,0,0.003878,0.007122,4703396,4023923,0,0,9485,0,1,1 +1773532454.665424,2.15,4,3992.50,65.41,1131.73,2560.90,0.00,0.000000,0.000000,11,0,0.003875,0.007770,4703496,4024068,0,0,9488,0,1,1 +1773532459.664345,1.86,4,3992.50,65.42,1131.27,2561.32,0.00,257.407884,1061.204070,56263,672190,0.003408,0.005856,4703581,4024184,0,0,9490,0,1,1 +1773532464.664438,2.21,4,3992.50,65.42,1131.32,2561.29,0.00,3518371699359.553223,3518371698555.895508,70,0,0.003865,0.007132,4703680,4024325,0,0,9493,0,1,1 +1773532469.665943,2.01,4,3992.50,65.42,1131.34,2561.29,0.00,261.284524,1060.754489,57021,672298,0.003915,0.007151,4703783,4024467,0,0,9495,0,1,1 +1773532474.663603,20.11,4,3992.50,66.21,1100.18,2592.39,0.00,3520084913457.990723,0.227157,56263,672862,22.158669,0.107438,4710987,4029806,0,0,9498,0,1,1 +1773532479.665207,15.69,4,3992.50,66.26,1104.20,2594.31,0.00,4.059537,0.516338,57021,673169,18.102236,0.078789,4716769,4034122,0,0,9500,0,1,1 +1773532484.666024,2.26,4,3992.50,65.85,1120.39,2578.13,0.00,3517862314637.321777,3517862313837.048828,11,0,0.003636,0.006485,4716861,4034250,0,0,9503,0,1,1 +1773532489.666176,1.81,4,3992.50,65.73,1125.12,2573.39,0.00,0.000000,0.000000,11,0,0.003662,0.006501,4716955,4034379,0,0,9505,0,1,1 +1773532494.661199,1.81,4,3992.50,65.73,1125.17,2573.34,0.00,0.000000,0.000000,11,0,0.003882,0.007139,4717055,4034520,0,0,9508,0,1,1 +1773532499.661972,2.01,4,3992.50,65.71,1125.99,2572.52,0.00,261.372798,1062.313690,57021,673767,0.003885,0.007129,4717156,4034661,0,0,9510,0,1,1 +1773532504.665892,1.86,4,3992.50,65.76,1123.93,2574.59,0.00,3515680791832.162598,3515680791031.725586,11,0,0.003875,0.007102,4717256,4034800,0,0,9513,0,1,1 +1773532509.666003,2.56,4,3992.50,65.76,1125.95,2574.51,0.00,261.407367,1062.636415,57021,673896,0.004342,0.006550,4717344,4034921,0,0,9515,0,1,1 +1773532514.662848,1.76,4,3992.50,65.76,1125.78,2574.73,0.00,0.000000,0.040162,57021,673948,0.003880,0.007137,4717444,4035062,0,0,9518,0,1,1 +1773532519.661725,2.06,4,3992.50,65.77,1125.55,2574.96,0.00,3519227504650.213867,3519227503848.747070,11,0,0.003879,0.007768,4717544,4035206,0,0,9520,0,1,1 +1773532524.664586,1.76,4,3992.50,65.77,1125.57,2574.94,0.00,257.205188,1062.149046,56263,674009,0.003418,0.005862,4717630,4035323,0,0,9523,0,1,1 +1773532529.661628,2.21,4,3992.50,65.77,1125.59,2574.93,0.00,3520519243706.576172,3520519242900.694824,11,0,0.003888,0.007122,4717731,4035463,0,0,9525,0,1,1 +1773532534.664200,2.01,4,3992.50,65.77,1125.36,2575.14,0.00,257.220057,1062.263451,56263,674068,0.003863,0.007129,4717830,4035604,0,0,9528,0,1,1 +1773532539.661200,2.26,4,3992.50,65.47,1120.90,2563.42,0.00,3520549298807.830078,3520549298001.839355,70,0,0.003880,0.007127,4717930,4035744,0,0,9530,0,1,1 +1773532544.661199,3.11,4,3992.50,65.33,1126.10,2557.96,0.00,0.000000,0.000000,70,0,0.008978,0.008397,4718110,4035922,0,0,9533,0,1,1 +1773532549.666555,22.06,4,3992.50,65.79,1108.34,2575.70,0.00,1.440352,0.022047,221,21,28.150127,0.131897,4727293,4042735,0,0,9535,0,1,1 +1773532554.665551,11.61,4,3992.50,65.41,1122.88,2561.13,0.00,3519143579826.995605,3519143579828.465820,11,0,12.075053,0.051780,4731119,4045569,0,0,9538,0,1,1 +1773532559.663286,1.96,4,3992.50,65.45,1121.68,2562.34,0.00,1.492571,0.022080,221,21,0.003880,0.007126,4731219,4045709,0,0,9540,0,1,1 +1773532564.661544,1.96,4,3992.50,65.13,1133.89,2550.13,0.00,0.517075,3519663948332.132812,238,2,0.003879,0.007135,4731319,4045850,0,0,9543,0,1,1 +1773532569.661191,2.16,4,3992.50,65.33,1125.27,2557.62,0.00,255.361552,1064.176757,56263,675459,0.003878,0.007110,4731419,4045989,0,0,9545,0,1,1 +1773532574.665144,2.21,4,3992.50,65.34,1124.84,2558.06,0.00,3515657908781.894531,3515657907975.605469,199,0,0.003418,0.005873,4731505,4046107,0,0,9548,0,1,1 +1773532579.665999,1.86,4,3992.50,65.34,1124.86,2558.04,0.00,1.314717,0.022067,221,21,0.003877,0.007121,4731605,4046247,0,0,9550,0,1,1 +1773532584.665289,1.76,4,3992.50,65.34,1124.88,2558.02,0.00,0.516968,3518936600882.254395,238,2,0.003887,0.007785,4731706,4046393,0,0,9553,0,1,1 +1773532589.662230,2.06,4,3992.50,65.33,1124.89,2558.00,0.00,255.499896,1064.896145,56263,675573,0.003868,0.007114,4731805,4046532,0,0,9555,0,1,1 +1773532594.665924,2.06,4,3992.50,65.33,1124.91,2557.98,0.00,3515839740682.669434,3515839739874.365723,238,2,0.003430,0.005873,4731892,4046650,0,0,9558,0,1,1 +1773532599.661841,2.11,4,3992.50,65.52,1118.70,2565.29,0.00,0.000000,0.000000,238,2,0.003881,0.007128,4731992,4046790,0,0,9560,0,1,1 +1773532604.663548,1.95,4,3992.50,65.42,1121.62,2561.30,0.00,0.000000,0.000000,238,2,0.003889,0.007130,4732093,4046931,0,0,9563,0,1,1 +1773532609.661287,1.86,4,3992.50,65.22,1129.27,2553.66,0.00,3520029134313.297363,3520029134315.129883,199,0,0.003900,0.007121,4732195,4047071,0,0,9565,0,1,1 +1773532614.664541,2.16,4,3992.50,65.24,1128.55,2554.38,0.00,1.830644,0.000195,238,2,0.003418,0.005874,4732281,4047189,0,0,9568,0,1,1 +1773532619.665561,7.48,4,3992.50,65.22,1129.41,2553.51,0.00,255.291488,1064.459660,56263,676096,4.054136,0.028864,4733784,4048334,0,0,9570,0,1,1 +1773532624.665491,21.75,4,3992.50,66.08,1095.64,2587.21,0.00,3518486527955.257324,3518486527147.871582,70,0,32.379147,0.146753,4744487,4056320,0,0,9573,0,1,1 +1773532629.665181,5.58,4,3992.50,65.21,1130.16,2552.92,0.00,257.318309,1065.734872,56263,677144,3.833177,0.023818,4745860,4057425,0,0,9575,0,1,1 +1773532634.664387,1.96,4,3992.50,65.26,1127.86,2555.12,0.00,3518996207507.780273,3518996206699.158691,199,0,0.003396,0.005866,4745944,4057542,0,0,9578,0,1,1 +1773532639.665206,2.11,4,3992.50,65.24,1128.68,2554.29,0.00,3517860964964.084473,0.000000,11,0,0.003885,0.007129,4746045,4057683,0,0,9580,0,1,1 +1773532644.665155,1.81,4,3992.50,65.24,1128.71,2554.26,0.00,0.000000,0.000000,11,0,0.003383,0.005865,4746128,4057800,0,0,9583,0,1,1 +1773532649.664562,1.91,4,3992.50,65.24,1128.74,2554.23,0.00,0.000000,0.000000,11,0,0.004497,0.008007,4746240,4057950,0,0,9585,0,1,1 +1773532654.664929,1.71,4,3992.50,65.24,1128.75,2554.23,0.00,0.000000,0.000000,11,0,0.003878,0.007132,4746340,4058091,0,0,9588,0,1,1 +1773532659.665379,2.46,4,3992.50,65.45,1120.38,2562.57,0.00,0.049996,0.000000,70,0,0.003878,0.007122,4746440,4058231,0,0,9590,0,1,1 +1773532664.665964,1.76,4,3992.50,65.26,1127.97,2554.97,0.00,1.441726,0.022068,221,21,0.003415,0.005872,4746526,4058349,0,0,9593,0,1,1 +1773532669.665982,1.86,4,3992.50,65.26,1127.99,2554.96,0.00,3518424444037.875488,3518424444039.295410,70,0,0.003865,0.007122,4746625,4058489,0,0,9595,0,1,1 +1773532674.665628,1.81,4,3992.50,65.06,1135.88,2547.07,0.00,1.958928,0.000195,238,2,0.003878,0.007133,4746725,4058630,0,0,9598,0,1,1 +1773532679.661582,2.21,4,3992.50,65.07,1135.43,2547.53,0.00,259.614461,1067.126844,57021,677737,0.003869,0.007128,4746824,4058770,0,0,9600,0,1,1 +1773532684.665231,1.81,4,3992.50,65.07,1135.45,2547.52,0.00,0.000000,0.034252,57021,677779,0.003418,0.005836,4746910,4058885,0,0,9603,0,1,1 +1773532689.665227,10.50,4,3992.50,65.13,1133.91,2550.06,0.00,3518440378993.920410,0.150977,56263,677980,8.065456,0.047452,4749778,4061044,0,0,9605,0,1,1 +1773532694.665945,22.26,4,3992.50,65.32,1125.53,2557.38,0.00,4.060257,0.730266,57021,678933,32.188934,0.143131,4760189,4068856,0,0,9608,0,1,1 +1773532699.666024,2.60,4,3992.50,65.37,1123.61,2559.29,0.00,3518381456349.279297,3518381455543.476074,70,0,0.006434,0.008783,4760341,4069036,0,0,9610,0,1,1 +1773532704.665681,1.96,4,3992.50,65.13,1132.98,2549.92,0.00,1.441993,0.022072,221,21,0.003878,0.007108,4760441,4069175,0,0,9613,0,1,1 +1773532709.662744,1.91,4,3992.50,65.12,1133.21,2549.68,0.00,256.010830,1068.003810,56263,679114,0.003410,0.005859,4760526,4069291,0,0,9615,0,1,1 +1773532714.666080,1.76,4,3992.50,65.09,1134.35,2548.55,0.00,3516091443296.973633,3516091442487.417969,70,0,0.003418,0.006505,4760612,4069412,0,0,9618,0,1,1 +1773532719.665150,2.21,4,3992.50,65.34,1130.49,2558.32,0.00,0.000000,0.000000,70,0,0.003891,0.007124,4760713,4069552,0,0,9620,0,1,1 +1773532724.661185,2.36,4,3992.50,65.36,1129.82,2559.00,0.00,261.570596,1068.688824,57021,679407,0.005657,0.008651,4760838,4069707,0,0,9623,0,1,1 +1773532729.662144,2.31,4,3992.50,65.36,1129.83,2558.99,0.00,3517762456309.106934,0.005370,56263,679419,0.005454,0.008609,4760974,4069882,0,0,9625,0,1,1 +1773532734.661205,1.81,4,3992.50,65.36,1129.84,2558.98,0.00,3519097967128.908203,3519097966318.261719,11,0,0.003721,0.006421,4761066,4070010,0,0,9628,0,1,1 +1773532739.663996,1.91,4,3992.50,65.36,1129.86,2558.97,0.00,261.267336,1067.327331,57021,679498,0.004072,0.007650,4761172,4070161,0,0,9630,0,1,1 +1773532744.664590,2.21,4,3992.50,65.36,1129.89,2558.94,0.00,3518019535974.001465,3518019535167.587402,11,0,0.003865,0.007131,4761271,4070302,0,0,9633,0,1,1 +1773532749.661273,2.11,4,3992.50,65.58,1121.90,2567.50,0.00,0.000000,0.000000,11,0,0.003889,0.007135,4761372,4070443,0,0,9635,0,1,1 +1773532754.665266,1.86,4,3992.50,65.57,1122.33,2567.04,0.00,1.490704,0.022053,221,21,0.003418,0.005893,4761458,4070561,0,0,9638,0,1,1 +1773532759.665539,15.49,4,3992.50,65.49,1125.10,2564.22,0.00,3518245067667.476562,3518245067668.946777,11,0,16.131020,0.083990,4766925,4074668,0,0,9640,0,1,1 +1773532764.661185,16.76,4,3992.50,65.96,1106.14,2582.37,0.00,0.000000,0.000000,11,0,24.150298,0.107009,4774740,4080469,0,0,9643,0,1,1 +1773532769.665394,2.11,4,3992.50,65.47,1125.19,2563.32,0.00,261.193303,1067.955846,57021,680747,0.003895,0.007155,4774842,4080612,0,0,9645,0,1,1 +1773532774.664435,1.71,4,3992.50,65.01,1143.07,2545.43,0.00,3519112166594.785156,3519112165785.718262,221,21,0.003038,0.004655,4774919,4080709,0,0,9648,0,1,1 +1773532779.665289,2.16,4,3992.50,65.34,1129.30,2558.10,0.00,259.876874,1069.059085,57021,680933,0.003649,0.007106,4775012,4080839,0,0,9650,0,1,1 +1773532784.661188,1.91,4,3992.50,65.34,1129.10,2558.32,0.00,3521325859272.454102,3521325858463.939941,11,0,0.004322,0.007452,4775108,4080972,0,0,9653,0,1,1 +1773532789.665242,1.96,4,3992.50,65.33,1129.55,2557.88,0.00,261.201385,1068.457554,57021,680997,0.003875,0.007104,4775208,4081111,0,0,9655,0,1,1 +1773532794.661794,1.86,4,3992.50,65.34,1129.32,2558.11,0.00,3520865412887.654297,3520865412079.009277,199,0,0.003889,0.007145,4775309,4081253,0,0,9658,0,1,1 +1773532799.661216,1.91,4,3992.50,65.30,1130.64,2556.79,0.00,0.000000,0.000000,199,0,0.003637,0.006477,4775401,4081380,0,0,9660,0,1,1 +1773532804.664676,7.13,4,3992.50,65.74,1108.96,2573.85,0.00,3516003774935.182129,0.000000,11,0,0.003647,0.006507,4775494,4081510,0,0,9663,0,1,1 +1773532809.662342,10.35,4,3992.50,65.13,1135.63,2549.96,0.00,1.492591,0.022081,221,21,0.004802,0.007783,4775596,4081652,0,0,9665,0,1,1 +1773532814.661884,1.96,4,3992.50,65.03,1138.74,2546.25,0.00,3518759641272.838379,3518759641274.131348,199,0,0.003886,0.007141,4775697,4081794,0,0,9668,0,1,1 +1773532819.665568,2.16,4,3992.50,65.05,1138.25,2546.74,0.00,329.039865,1073.015187,60348,681692,0.003875,0.007105,4775797,4081933,0,0,9670,0,1,1 +1773532824.664858,2.16,4,3992.50,64.89,1144.23,2540.77,0.00,3518936857797.066406,0.136738,59590,681732,0.003421,0.005879,4775883,4082051,0,0,9673,0,1,1 +1773532829.664630,20.16,4,3992.50,65.67,1113.65,2571.28,0.00,3518597884626.533691,3518597883877.905273,70,0,26.172571,0.125352,4784646,4088693,0,0,9675,0,1,1 +1773532834.665172,13.15,4,3992.50,65.49,1120.75,2564.13,0.00,325.313179,1074.478564,59590,682813,14.090858,0.067011,4789214,4092149,0,0,9678,0,1,1 +1773532839.665856,2.31,4,3992.50,65.43,1124.84,2561.54,0.00,3517955784049.749023,3517955783299.185059,221,21,0.003865,0.007121,4789313,4092289,0,0,9680,0,1,1 +1773532844.662373,1.96,4,3992.50,65.45,1123.94,2562.48,0.00,0.517255,3520890145446.419922,238,2,0.003881,0.007782,4789413,4092434,0,0,9683,0,1,1 +1773532849.662788,2.01,4,3992.50,65.45,1123.95,2562.46,0.00,3518144931251.158691,3518144931253.117188,70,0,0.003420,0.005855,4789499,4092550,0,0,9685,0,1,1 +1773532854.663681,2.46,4,3992.50,65.45,1123.97,2562.43,0.00,3517808712253.686523,0.000000,11,0,0.003885,0.007139,4789600,4092692,0,0,9688,0,1,1 +1773532859.664262,2.11,4,3992.50,65.39,1126.28,2560.14,0.00,329.421027,1074.996175,60348,683128,0.003878,0.007122,4789700,4092832,0,0,9690,0,1,1 +1773532864.665280,2.01,4,3992.50,65.19,1134.27,2552.15,0.00,3517720805014.055176,3517720804267.075684,221,21,0.003890,0.007131,4789801,4092973,0,0,9693,0,1,1 +1773532869.665154,2.51,4,3992.50,65.24,1122.01,2554.28,0.00,3518526172001.146484,3518526172002.616211,11,0,0.002963,0.004588,4789873,4093065,0,0,9695,0,1,1 +1773532874.661689,2.41,4,3992.50,65.16,1125.29,2550.99,0.00,0.000000,0.000000,11,0,0.003881,0.007137,4789973,4093206,0,0,9698,0,1,1 +1773532879.665617,1.96,4,3992.50,64.96,1133.04,2543.25,0.00,0.000000,0.000000,11,0,0.003883,0.007125,4790074,4093347,0,0,9700,0,1,1 +1773532884.665167,2.16,4,3992.50,65.03,1130.35,2545.93,0.00,325.427767,1075.651438,59590,683505,0.003421,0.005866,4790160,4093464,0,0,9703,0,1,1 +1773532889.665603,2.01,4,3992.50,65.03,1130.36,2545.92,0.00,3518130300239.353516,3518130299489.212891,70,0,0.003878,0.007122,4790260,4093604,0,0,9705,0,1,1 +1773532894.665928,4.82,4,3992.50,64.97,1132.38,2543.90,0.00,0.126945,0.000000,199,0,2.017858,0.016679,4791012,4094212,0,0,9708,0,1,1 +1773532899.662130,25.27,4,3992.50,65.83,1098.87,2577.46,0.00,1.315941,0.022087,221,21,32.219664,0.143769,4801186,4101830,0,0,9710,0,1,1 +1773532904.663450,6.29,4,3992.50,66.33,1079.21,2596.95,0.00,0.000000,0.000000,221,21,6.047224,0.036075,4803361,4103523,0,0,9713,0,1,1 +1773532909.663920,2.11,4,3992.50,65.70,1103.77,2572.41,0.00,0.000000,0.000000,221,21,0.003878,0.007605,4803461,4103666,0,0,9715,0,1,1 +1773532914.664460,2.01,4,3992.50,65.43,1114.36,2561.82,0.00,0.000000,0.000000,221,21,0.003407,0.006025,4803546,4103784,0,0,9718,0,1,1 +1773532919.665929,2.36,4,3992.50,64.60,1146.88,2529.32,0.00,3517404162755.685547,3517404162757.154785,11,0,0.003885,0.007116,4803647,4103924,0,0,9720,0,1,1 +1773532924.665955,2.30,4,3992.50,64.46,1152.39,2523.80,0.00,0.176952,0.000000,199,0,0.004522,0.007372,4803761,4104071,0,0,9723,0,1,1 +1773532929.661210,2.36,4,3992.50,64.80,1139.32,2537.24,0.00,1.316191,0.022091,221,21,0.003882,0.007129,4803861,4104211,0,0,9725,0,1,1 +1773532934.665273,2.30,4,3992.50,64.81,1138.68,2537.49,0.00,323.643541,1076.313152,59590,685229,0.003417,0.005860,4803947,4104328,0,0,9728,0,1,1 +1773532939.665817,2.31,4,3992.50,64.81,1138.70,2537.47,0.00,0.000000,0.042573,59590,685271,0.003878,0.007109,4804047,4104467,0,0,9730,0,1,1 +1773532944.661274,1.96,4,3992.50,64.84,1137.50,2538.68,0.00,3521636518842.329102,3521636518089.791504,11,0,0.003890,0.007147,4804148,4104609,0,0,9733,0,1,1 +1773532949.661329,1.96,4,3992.50,64.84,1137.52,2538.64,0.00,0.000000,0.000000,11,0,0.003878,0.007122,4804248,4104749,0,0,9735,0,1,1 +1773532954.663230,1.91,4,3992.50,64.84,1137.54,2538.63,0.00,329.334090,1076.941605,60348,685387,0.003419,0.005863,4804334,4104866,0,0,9738,0,1,1 +1773532959.661204,2.56,4,3992.50,65.24,1122.69,2554.34,0.00,0.000000,0.059790,60348,685410,0.003867,0.007125,4804433,4105006,0,0,9740,0,1,1 +1773532964.664326,5.87,4,3992.50,64.75,1140.86,2535.29,0.00,3516241730834.756836,0.048114,59590,685489,2.022806,0.018095,4805266,4105657,0,0,9743,0,1,1 +1773532969.663588,12.67,4,3992.50,65.51,1111.17,2564.98,0.00,3518956573469.854004,3518956572717.682129,11,0,10.067343,0.048702,4808602,4108118,0,0,9745,0,1,1 +1773532974.663092,18.74,4,3992.50,65.93,1094.95,2581.12,0.00,0.050005,0.000000,70,0,28.175785,0.127740,4817805,4115081,0,0,9748,0,1,1 +1773532979.665772,2.06,4,3992.50,65.43,1114.39,2561.68,0.00,325.174150,1077.348148,59590,686393,0.003876,0.007601,4817905,4115224,0,0,9750,0,1,1 +1773532984.665599,2.21,4,3992.50,65.22,1122.62,2553.45,0.00,3518558789541.977051,3518558788789.373535,70,0,0.003522,0.005981,4817998,4115350,0,0,9753,0,1,1 +1773532989.661949,2.46,4,3992.50,65.41,1115.36,2561.02,0.00,3521007405561.518066,0.000000,11,0,0.003098,0.006759,4818084,4115482,0,0,9755,0,1,1 +1773532994.665179,1.91,4,3992.50,65.41,1115.10,2560.96,0.00,2.007492,0.000195,238,2,0.003418,0.005878,4818170,4115600,0,0,9758,0,1,1 +1773532999.663988,2.26,4,3992.50,65.21,1122.75,2553.30,0.00,3519275963553.918457,0.021880,221,21,0.003879,0.007099,4818270,4115738,0,0,9760,0,1,1 +1773533004.661275,2.36,4,3992.50,65.23,1122.30,2553.75,0.00,0.517175,3520347059120.859375,238,2,0.003430,0.005864,4818357,4115855,0,0,9763,0,1,1 +1773533009.661291,2.11,4,3992.50,65.20,1123.26,2552.79,0.00,3518425840145.108398,0.021875,221,21,0.003840,0.007122,4818454,4115995,0,0,9765,0,1,1 +1773533014.661278,2.06,4,3992.50,65.04,1129.46,2546.59,0.00,3518446228066.769043,3518446228068.239258,11,0,0.003408,0.005840,4818539,4116110,0,0,9768,0,1,1 +1773533019.661184,2.56,4,3992.50,65.21,1126.45,2553.12,0.00,2.008827,0.000195,238,2,0.003853,0.007097,4818637,4116248,0,0,9770,0,1,1 +1773533024.661220,3.61,4,3992.50,65.25,1124.44,2554.79,0.00,0.000000,0.000000,238,2,0.005157,0.007390,4818745,4116380,0,0,9773,0,1,1 +1773533029.665914,2.56,4,3992.50,65.06,1131.84,2547.36,0.00,3515137344172.245605,3515137344174.202637,70,0,0.006129,0.008626,4818875,4116545,0,0,9775,0,1,1 +1773533034.661798,2.01,4,3992.50,65.06,1131.84,2547.39,0.00,1.443082,0.022088,221,21,0.002417,0.004273,4818934,4116629,0,0,9778,0,1,1 +1773533039.664565,3.72,4,3992.50,65.06,1131.96,2547.27,0.00,0.000000,0.000000,221,21,0.011213,0.011704,4819167,4116861,0,0,9780,0,1,1 +1773533044.661184,20.64,4,3992.50,66.44,1078.02,2601.12,0.00,3520817993050.294922,3520817993051.715820,70,0,26.199274,0.138741,4829173,4124814,0,0,9783,0,1,1 +1773533049.663166,10.43,4,3992.50,67.13,1051.23,2628.14,0.00,325.219551,1079.338854,59590,688214,14.090875,0.076311,4834598,4129109,0,0,9785,0,1,1 +1773533054.666146,2.16,4,3992.50,66.19,1087.67,2591.44,0.00,3516341208285.196289,3516341207531.227539,70,0,0.003393,0.005849,4834682,4129225,0,0,9788,0,1,1 +1773533059.665496,2.06,4,3992.50,65.54,1113.15,2565.95,0.00,0.126970,0.000000,199,0,0.003879,0.007098,4834782,4129363,0,0,9790,0,1,1 +1773533064.665613,2.01,4,3992.50,65.54,1112.93,2566.18,0.00,3518355205170.963867,0.000000,70,0,0.003378,0.005835,4834865,4129478,0,0,9793,0,1,1 +1773533069.665177,2.46,4,3992.50,64.86,1139.82,2539.29,0.00,1.442020,0.022072,221,21,0.003878,0.007116,4834965,4129617,0,0,9795,0,1,1 +1773533074.665545,1.96,4,3992.50,64.89,1138.59,2540.52,0.00,3518178403234.914551,3518178403236.207520,199,0,0.003482,0.005921,4835055,4129738,0,0,9798,0,1,1 +1773533079.662021,2.61,4,3992.50,65.10,1136.59,2548.70,0.00,3520918802452.038574,0.000000,11,0,0.003881,0.007102,4835155,4129876,0,0,9800,0,1,1 +1773533084.661286,2.01,4,3992.50,65.06,1134.43,2547.41,0.00,2.009084,0.000195,238,2,0.004091,0.006801,4835244,4129996,0,0,9803,0,1,1 +1773533089.663633,2.06,4,3992.50,65.06,1134.44,2547.40,0.00,3516786341452.904785,3516786341454.862305,70,0,0.003864,0.007106,4835343,4130135,0,0,9805,0,1,1 +1773533094.661186,2.31,4,3992.50,65.07,1134.30,2547.53,0.00,325.507728,1080.969609,59590,688661,0.003422,0.005868,4835429,4130252,0,0,9808,0,1,1 +1773533099.661293,2.11,4,3992.50,65.07,1134.11,2547.73,0.00,0.000000,0.008887,59590,688671,0.003853,0.007110,4835527,4130391,0,0,9810,0,1,1 +1773533104.665723,2.11,4,3992.50,65.07,1134.13,2547.71,0.00,3515322709272.912598,3515322708517.061523,221,21,0.003405,0.005996,4835612,4130507,0,0,9813,0,1,1 +1773533109.661313,2.51,4,3992.50,65.11,1135.97,2549.23,0.00,3521543418652.329590,3521543418653.800781,11,0,0.004812,0.008290,4835715,4130654,0,0,9815,0,1,1 +1773533114.664535,8.49,4,3992.50,65.47,1121.84,2563.37,0.00,1.490934,0.022056,221,21,2.030176,0.023578,4836786,4131515,0,0,9818,0,1,1 +1773533119.661698,15.51,4,3992.50,66.01,1100.81,2584.36,0.00,0.517188,3520434484438.624023,238,2,22.155573,0.112903,4845103,4138156,0,0,9820,0,1,1 +1773533124.661218,10.85,4,3992.50,65.03,1139.07,2546.06,0.00,3518774623476.131836,3518774623478.090332,70,0,14.093147,0.069252,4850391,4142283,0,0,9823,0,1,1 +1773533129.666096,3.51,4,3992.50,65.02,1139.34,2545.77,0.00,1.440489,0.022049,221,21,2.021739,0.019415,4851375,4143092,0,0,9825,0,1,1 +1773533134.664561,2.46,4,3992.50,65.02,1139.36,2545.75,0.00,0.000000,0.000000,221,21,0.003210,0.006739,4851459,4143223,0,0,9828,0,1,1 +1773533139.663842,2.31,4,3992.50,65.03,1139.02,2546.23,0.00,0.000000,0.000000,221,21,0.003232,0.005843,4851541,4143338,0,0,9830,0,1,1 +1773533144.665197,2.11,4,3992.50,65.03,1139.16,2546.11,0.00,3517483879296.014648,3517483879297.307617,199,0,0.003650,0.006517,4851634,4143468,0,0,9833,0,1,1 +1773533149.665541,2.46,4,3992.50,65.03,1139.29,2545.97,0.00,325.199124,1081.685001,59590,689999,0.003630,0.006451,4851726,4143594,0,0,9835,0,1,1 +1773533154.665299,2.16,4,3992.50,64.83,1147.20,2538.09,0.00,3518607477492.244629,3518607476735.847168,11,0,0.004014,0.006106,4851822,4143717,0,0,9838,0,1,1 +1773533159.662099,2.26,4,3992.50,64.84,1146.50,2538.78,0.00,1.492850,0.022084,221,21,0.003868,0.007127,4851921,4143857,0,0,9840,0,1,1 +1773533164.665229,2.11,4,3992.50,64.81,1147.72,2537.56,0.00,3516236643206.537598,3516236643208.006348,11,0,0.003380,0.005849,4852004,4143973,0,0,9843,0,1,1 +1773533169.661181,2.46,4,3992.50,65.07,1150.37,2547.81,0.00,0.177096,0.000000,199,0,0.003856,0.007116,4852102,4144112,0,0,9845,0,1,1 +1773533174.661181,2.11,4,3992.50,65.08,1150.14,2548.04,0.00,329.282318,1082.151348,60348,690399,0.003420,0.006509,4852188,4144233,0,0,9848,0,1,1 +1773533179.661194,4.37,4,3992.50,64.86,1158.68,2539.52,0.00,3518428161267.566895,3518428160514.876465,11,0,0.003247,0.006885,4852275,4144366,0,0,9850,0,1,1 +1773533184.661558,2.06,4,3992.50,64.81,1160.74,2537.45,0.00,0.176940,0.000000,199,0,0.003395,0.005852,4852359,4144482,0,0,9853,0,1,1 +1773533189.662000,1.91,4,3992.50,64.86,1158.80,2539.40,0.00,325.192777,1082.145876,59590,690497,0.003848,0.007117,4852457,4144622,0,0,9855,0,1,1 +1773533194.662605,10.54,4,3992.50,65.68,1126.82,2571.36,0.00,3518011097908.285645,3518011097150.064453,221,21,8.070047,0.052825,4855809,4147280,0,0,9858,0,1,1 +1773533199.665448,17.56,4,3992.50,66.57,1082.77,2606.25,0.00,323.722513,1082.454273,59590,691495,26.157915,0.135184,4865654,4155003,0,0,9860,0,1,1 +1773533204.665369,5.73,4,3992.50,65.98,1105.65,2583.09,0.00,4.060903,0.061329,60348,691628,6.044572,0.035642,4868055,4157022,0,0,9863,0,1,1 +1773533209.664922,2.26,4,3992.50,65.54,1122.61,2566.14,0.00,0.000000,0.015724,60348,691639,0.003828,0.007098,4868151,4157160,0,0,9865,0,1,1 +1773533214.665534,2.11,4,3992.50,65.36,1129.87,2558.88,0.00,3518006387862.722656,3518006387109.055664,70,0,0.003407,0.005839,4868236,4157275,0,0,9868,0,1,1 +1773533219.665584,4.42,4,3992.50,64.96,1145.27,2543.50,0.00,325.345166,1083.427581,59590,691843,0.003865,0.007122,4868335,4157415,0,0,9870,0,1,1 +1773533224.664350,2.41,4,3992.50,65.00,1144.05,2544.71,0.00,4.200158,0.082638,60408,691878,0.003371,0.005841,4868417,4157530,0,0,9873,0,1,1 +1773533229.661294,2.42,4,3992.50,65.24,1136.65,2554.46,0.00,3520588809689.003418,0.385392,59651,692155,0.003876,0.007122,4868517,4157670,0,0,9875,0,1,1 +1773533234.661242,1.86,4,3992.50,65.26,1135.91,2555.17,0.00,3518473509352.552734,3518473508594.176270,11,0,0.003383,0.006014,4868600,4157787,0,0,9878,0,1,1 +1773533239.662238,2.41,4,3992.50,64.88,1150.75,2540.32,0.00,1.491598,0.022066,221,21,0.003877,0.007604,4868700,4157930,0,0,9880,0,1,1 +1773533244.661288,2.31,4,3992.50,64.88,1150.76,2540.32,0.00,0.516993,3519105649628.724121,238,2,0.003408,0.005866,4868785,4158047,0,0,9883,0,1,1 +1773533249.661219,2.01,4,3992.50,64.88,1150.77,2540.30,0.00,3518485695021.462891,3518485695023.471680,11,0,0.003878,0.007110,4868885,4158186,0,0,9885,0,1,1 +1773533254.661308,2.16,4,3992.50,64.83,1152.72,2538.36,0.00,329.592493,1084.098053,60409,692353,0.003408,0.005840,4868970,4158301,0,0,9888,0,1,1 +1773533259.662935,2.46,4,3992.50,65.07,1145.43,2547.64,0.00,3517292557746.789551,3517292556992.339355,199,0,0.003839,0.007095,4869067,4158439,0,0,9890,0,1,1 +1773533264.665692,2.26,4,3992.50,65.07,1145.56,2547.48,0.00,1.830827,0.000195,238,2,0.003418,0.005837,4869153,4158554,0,0,9893,0,1,1 +1773533269.662573,15.05,4,3992.50,65.30,1136.20,2556.82,0.00,0.000000,0.000000,238,2,16.132889,0.092890,4875502,4163575,0,0,9895,0,1,1 +1773533274.662937,16.93,4,3992.50,66.01,1108.32,2584.62,0.00,3518180718731.928711,0.021873,221,21,24.149514,0.119725,4884505,4170670,0,0,9898,0,1,1 +1773533279.662654,2.91,4,3992.50,65.46,1129.96,2562.97,0.00,328.126584,1084.824109,60411,693404,0.014387,0.008701,4884777,4170882,0,0,9900,0,1,1 +1773533284.665538,2.16,4,3992.50,65.28,1137.17,2555.75,0.00,3516409110078.955566,0.323251,59653,693676,0.003851,0.007103,4884875,4171021,0,0,9903,0,1,1 +1773533289.661206,2.51,4,3992.50,65.29,1131.78,2556.11,0.00,4.064361,0.243864,60411,693731,0.003398,0.005860,4884959,4171137,0,0,9905,0,1,1 +1773533294.665493,2.05,4,3992.50,65.29,1131.79,2556.11,0.00,3515423831162.322266,0.152116,59653,693917,0.003659,0.006481,4885053,4171265,0,0,9908,0,1,1 +1773533299.665241,2.31,4,3992.50,65.13,1137.80,2550.10,0.00,0.000000,0.051174,59653,693966,0.003612,0.006650,4885143,4171394,0,0,9910,0,1,1 +1773533304.665632,2.01,4,3992.50,65.14,1137.57,2550.34,0.00,0.000000,0.059956,59653,694003,0.003395,0.006348,4885227,4171514,0,0,9913,0,1,1 +1773533309.665656,2.31,4,3992.50,65.18,1136.10,2551.79,0.00,0.000000,0.033984,59653,694014,0.003702,0.006951,4885324,4171650,0,0,9915,0,1,1 +1773533314.665909,2.06,4,3992.50,65.18,1135.89,2552.02,0.00,4.060635,0.055368,60411,694077,0.003416,0.005848,4885410,4171766,0,0,9918,0,1,1 +1773533319.666004,2.46,4,3992.50,65.40,1127.69,2560.36,0.00,3518370474214.959473,3518370473457.399414,221,21,0.003840,0.007110,4885507,4171905,0,0,9920,0,1,1 +1773533324.665587,2.16,4,3992.50,65.31,1130.71,2557.19,0.00,3518730660462.775879,3518730660464.068848,199,0,0.004480,0.006460,4885611,4172034,0,0,9923,0,1,1 +1773533329.665815,2.61,4,3992.50,65.11,1138.59,2549.31,0.00,3518276685398.285645,0.000000,11,0,0.007033,0.010189,4885751,4172213,0,0,9925,0,1,1 +1773533334.665548,2.01,4,3992.50,65.14,1137.65,2550.26,0.00,2.008896,0.000195,238,2,0.003708,0.006420,4885842,4172341,0,0,9928,0,1,1 +1773533339.663806,2.06,4,3992.50,65.14,1137.66,2550.24,0.00,3519663353299.647949,3519663353301.657227,11,0,0.004013,0.007632,4885943,4172490,0,0,9930,0,1,1 +1773533344.661189,18.55,4,3992.50,66.05,1101.98,2585.86,0.00,329.772572,1086.570395,60411,694643,20.300264,0.115055,4894031,4178756,0,0,9933,0,1,1 +1773533349.661236,13.78,4,3992.50,65.53,1126.25,2565.52,0.00,3518404189033.966797,3518404188277.572266,11,0,19.994981,0.100772,4901476,4184644,0,0,9935,0,1,1 +1773533354.661208,1.91,4,3992.50,65.54,1121.94,2565.86,0.00,325.540830,1086.479921,59653,695216,0.002201,0.004210,4901536,4184728,0,0,9938,0,1,1 +1773533359.665488,1.95,4,3992.50,65.54,1121.95,2565.84,0.00,3515428408223.795410,3515428407463.460938,70,0,0.003380,0.005838,4901619,4184843,0,0,9940,0,1,1 +1773533364.665660,1.81,4,3992.50,65.46,1124.98,2562.80,0.00,3518315927607.482910,0.000000,11,0,0.003853,0.007132,4901717,4184984,0,0,9943,0,1,1 +1773533369.665260,1.96,4,3992.50,65.46,1124.96,2562.82,0.00,0.000000,0.000000,11,0,0.003433,0.006506,4901804,4185104,0,0,9945,0,1,1 +1773533374.665885,2.06,4,3992.50,65.46,1124.78,2563.02,0.00,1.491708,0.022068,221,21,0.003965,0.007200,4901910,4185250,0,0,9948,0,1,1 +1773533379.662636,2.31,4,3992.50,65.66,1116.58,2570.84,0.00,0.517231,3520724988655.416504,238,2,0.002799,0.005630,4901984,4185360,0,0,9950,0,1,1 +1773533384.665357,1.96,4,3992.50,65.11,1137.77,2549.07,0.00,323.354274,1086.771467,59653,695815,0.003851,0.007103,4902082,4185499,0,0,9953,0,1,1 +1773533389.661314,1.86,4,3992.50,65.11,1137.79,2549.06,0.00,0.000000,0.006548,59653,695825,0.004093,0.006795,4902171,4185618,0,0,9955,0,1,1 +1773533394.661234,2.06,4,3992.50,65.11,1137.80,2549.04,0.00,3518493117414.788574,3518493116651.476074,221,21,0.003853,0.007120,4902269,4185758,0,0,9958,0,1,1 +1773533399.665868,1.90,4,3992.50,65.11,1137.80,2549.04,0.00,327.804205,1086.411395,60411,695905,0.003417,0.005862,4902355,4185875,0,0,9960,0,1,1 +1773533404.665712,1.91,4,3992.50,65.11,1137.61,2549.24,0.00,3518547357004.155273,0.030079,59657,695930,0.003637,0.006486,4902447,4186003,0,0,9963,0,1,1 +1773533409.665948,2.21,4,3992.50,65.07,1137.20,2547.55,0.00,3518270580448.525879,3518270579686.459473,199,0,0.004566,0.007204,4902542,4186138,0,0,9965,0,1,1 +1773533414.665540,3.21,4,3992.50,64.91,1143.48,2541.25,0.00,3518724840711.422363,0.000000,11,0,0.009018,0.008645,4902725,4186313,0,0,9968,0,1,1 +1773533419.665673,20.90,4,3992.50,65.97,1101.87,2582.80,0.00,0.049999,0.000000,70,0,26.180473,0.137178,4912709,4194084,0,0,9970,0,1,1 +1773533424.666104,9.76,4,3992.50,65.58,1117.00,2567.65,0.00,3518133683306.876465,0.000000,11,0,14.096776,0.077678,4918154,4198481,0,0,9973,0,1,1 +1773533429.665502,2.16,4,3992.50,65.58,1117.02,2567.63,0.00,0.176974,0.000000,199,0,0.002938,0.004576,4918224,4198572,0,0,9975,0,1,1 +1773533434.666128,1.66,4,3992.50,65.59,1116.77,2567.87,0.00,3517996696594.314941,0.000000,70,0,0.003369,0.006508,4918306,4198693,0,0,9978,0,1,1 +1773533439.665613,2.56,4,3992.50,65.70,1112.44,2572.18,0.00,1.958991,0.000195,238,2,0.003886,0.007131,4918407,4198834,0,0,9980,0,1,1 +1773533444.665643,1.76,4,3992.50,65.53,1119.12,2565.48,0.00,3518416097682.414062,0.021875,221,21,0.003408,0.005840,4918492,4198949,0,0,9983,0,1,1 +1773533449.661306,2.01,4,3992.50,65.53,1118.90,2565.71,0.00,328.398359,1089.705857,60415,697385,0.003844,0.007091,4918589,4199086,0,0,9985,0,1,1 +1773533454.665768,1.86,4,3992.50,65.53,1118.92,2565.70,0.00,3515299840005.684570,3515299839247.007812,199,0,0.003379,0.005847,4918672,4199202,0,0,9988,0,1,1 +1773533459.665965,2.06,4,3992.50,65.53,1118.94,2565.67,0.00,3518298747643.128906,0.000000,11,0,0.003878,0.007110,4918772,4199341,0,0,9990,0,1,1 +1773533464.664740,2.06,4,3992.50,65.11,1135.32,2549.31,0.00,0.000000,0.000000,11,0,0.003421,0.005867,4918858,4199458,0,0,9993,0,1,1 +1773533469.663170,2.31,4,3992.50,65.50,1127.48,2564.54,0.00,0.050016,0.000000,70,0,0.003862,0.007120,4918957,4199598,0,0,9995,0,1,1 +1773533474.665894,1.81,4,3992.50,65.50,1126.78,2564.50,0.00,1.957723,0.000195,238,2,0.003418,0.005862,4919043,4199715,0,0,9998,0,1,1 +1773533479.665855,2.16,4,3992.50,65.50,1126.80,2564.46,0.00,0.000000,0.000000,238,2,0.004484,0.007363,4919154,4199861,0,0,10000,0,1,1 +1773533484.661893,1.96,4,3992.50,65.50,1126.82,2564.47,0.00,323.792311,1090.043032,59657,697737,0.003410,0.005857,4919239,4199977,0,0,10003,0,1,1 +1773533489.665994,6.38,4,3992.50,65.32,1133.89,2557.37,0.00,0.000000,0.049666,59657,697830,4.032793,0.028543,4920928,4201278,0,0,10005,0,1,1 +1773533494.661219,18.94,4,3992.50,66.18,1100.13,2591.09,0.00,3521800585874.695312,3521800585110.280762,11,0,22.723834,0.126725,4929883,4208336,0,0,10008,0,1,1 +1773533499.664664,9.42,4,3992.50,65.79,1116.79,2576.01,0.00,1.490867,0.022055,221,21,13.540605,0.070146,4934870,4212383,0,0,10010,0,1,1 +1773533504.661195,2.06,4,3992.50,65.72,1119.59,2573.19,0.00,3520880123671.547852,3520880123673.019043,11,0,0.003372,0.005831,4934952,4212497,0,0,10013,0,1,1 +1773533509.662233,1.95,4,3992.50,65.73,1119.37,2573.42,0.00,0.176916,0.000000,199,0,0.003689,0.006950,4935048,4212633,0,0,10015,0,1,1 +1773533514.665504,1.90,4,3992.50,65.74,1118.93,2573.84,0.00,329.214635,1089.668381,60416,699176,0.003380,0.005824,4935131,4212747,0,0,10018,0,1,1 +1773533519.666063,1.81,4,3992.50,65.72,1119.76,2573.01,0.00,3518043711144.857910,3518043710382.160645,238,2,0.003865,0.007109,4935230,4212886,0,0,10020,0,1,1 +1773533524.665713,2.06,4,3992.50,65.72,1119.79,2572.99,0.00,3518683262660.822266,3518683262662.654297,199,0,0.003391,0.005861,4935314,4213003,0,0,10023,0,1,1 +1773533529.665813,2.36,4,3992.50,65.87,1114.02,2578.84,0.00,1.831799,0.000195,238,2,0.003853,0.007122,4935412,4213143,0,0,10025,0,1,1 +1773533534.664370,1.81,4,3992.50,65.62,1123.35,2569.31,0.00,3519452951158.695801,3519452951160.528320,199,0,0.003396,0.005867,4935496,4213260,0,0,10028,0,1,1 +1773533539.661302,2.01,4,3992.50,65.62,1123.37,2569.29,0.00,3520597249497.749023,0.000000,11,0,0.003843,0.007114,4935593,4213399,0,0,10030,0,1,1 +1773533544.661199,2.06,4,3992.50,65.62,1123.38,2569.29,0.00,0.050001,0.000000,70,0,0.003395,0.005865,4935677,4213516,0,0,10033,0,1,1 +1773533549.661353,2.06,4,3992.50,65.14,1142.46,2550.21,0.00,329.546800,1090.678082,60416,699360,0.003815,0.006976,4935772,4213654,0,0,10035,0,1,1 +1773533554.665821,1.76,4,3992.50,65.15,1142.01,2550.67,0.00,0.000000,0.046150,60416,699411,0.002174,0.004365,4935830,4213741,0,0,10038,0,1,1 +1773533559.665353,2.26,4,3992.50,65.15,1151.16,2550.63,0.00,3518766370852.009766,3518766370088.778809,238,2,0.003395,0.005856,4935914,4213857,0,0,10040,0,1,1 +1773533564.665160,10.02,4,3992.50,64.95,1158.78,2543.02,0.00,0.000000,0.000000,238,2,8.068107,0.051830,4939207,4216470,0,0,10043,0,1,1 +1773533569.665544,18.60,4,3992.50,66.24,1108.41,2593.27,0.00,3518167224728.365234,3518167224730.374023,11,0,24.167256,0.129681,4948472,4223820,0,0,10045,0,1,1 +1773533574.666006,5.89,4,3992.50,65.88,1122.27,2579.40,0.00,0.000000,0.000000,11,0,8.050901,0.043077,4951542,4226316,0,0,10048,0,1,1 +1773533579.661741,2.01,4,3992.50,65.54,1135.71,2565.95,0.00,2.010504,0.000195,238,2,0.003855,0.007071,4951640,4226452,0,0,10050,0,1,1 +1773533584.665290,2.11,4,3992.50,65.51,1137.00,2564.67,0.00,3515941807157.224609,0.021859,221,21,0.003883,0.007135,4951741,4226594,0,0,10053,0,1,1 +1773533589.665917,2.36,4,3992.50,65.55,1131.59,2566.27,0.00,0.000000,0.000000,221,21,0.003420,0.005842,4951827,4226709,0,0,10055,0,1,1 +1773533594.665482,1.96,4,3992.50,65.55,1131.44,2566.25,0.00,0.516939,3518743214275.561523,238,2,0.003866,0.007133,4951926,4226850,0,0,10058,0,1,1 +1773533599.665743,1.96,4,3992.50,65.54,1131.47,2566.21,0.00,0.000000,0.000000,238,2,0.003272,0.006885,4952015,4226983,0,0,10060,0,1,1 +1773533604.666051,2.26,4,3992.50,65.55,1131.22,2566.46,0.00,3518220492128.206055,3518220492130.037598,199,0,0.003878,0.007132,4952115,4227124,0,0,10063,0,1,1 +1773533609.665552,2.11,4,3992.50,65.56,1130.98,2566.69,0.00,0.000000,0.000000,199,0,0.003429,0.005864,4952202,4227241,0,0,10065,0,1,1 +1773533614.665365,1.91,4,3992.50,65.56,1131.01,2566.68,0.00,1.831904,0.000195,238,2,0.003878,0.007133,4952302,4227382,0,0,10068,0,1,1 +1773533619.665424,2.11,4,3992.50,65.78,1122.77,2575.28,0.00,3518396181568.488770,0.021875,221,21,0.003865,0.007110,4952401,4227521,0,0,10070,0,1,1 +1773533624.662016,2.16,4,3992.50,65.67,1126.46,2571.24,0.00,324.275173,1093.150774,59658,701236,0.004991,0.007745,4952523,4227675,0,0,10073,0,1,1 +1773533629.663403,2.11,4,3992.50,64.90,1156.80,2540.92,0.00,3517461479518.065430,3517461478749.926758,221,21,0.004983,0.007985,4952644,4227830,0,0,10075,0,1,1 +1773533634.661592,2.16,4,3992.50,64.94,1155.37,2542.36,0.00,3519712108442.668945,3519712108443.962402,199,0,0.004167,0.007690,4952749,4227982,0,0,10078,0,1,1 +1773533639.665556,14.44,4,3992.50,65.81,1121.03,2576.64,0.00,3515649948868.810547,0.000000,11,0,14.116228,0.077064,4957723,4231653,0,0,10080,0,1,1 +1773533644.662573,12.66,4,3992.50,65.17,1146.15,2551.49,0.00,0.000000,0.000000,11,0,16.088486,0.071127,4962856,4235546,0,0,10083,0,1,1 +1773533649.664889,8.99,4,3992.50,65.45,1132.71,2562.54,0.00,0.000000,0.000000,11,0,10.052084,0.043304,4965918,4237788,0,0,10085,0,1,1 +1773533654.665600,2.21,4,3992.50,65.30,1138.59,2556.67,0.00,0.176928,0.000000,199,0,0.003877,0.007131,4966018,4237929,0,0,10088,0,1,1 +1773533659.661262,1.86,4,3992.50,65.23,1141.31,2553.95,0.00,325.651686,1094.748860,59658,702827,0.003423,0.005848,4966104,4238044,0,0,10090,0,1,1 +1773533664.661189,1.86,4,3992.50,65.23,1141.32,2553.94,0.00,0.000000,0.008985,59658,702838,0.003853,0.007120,4966202,4238184,0,0,10093,0,1,1 +1773533669.661507,1.86,4,3992.50,65.23,1141.34,2553.92,0.00,3518213943404.448242,3518213942636.235352,11,0,0.003903,0.007153,4966304,4238326,0,0,10095,0,1,1 +1773533674.664677,2.06,4,3992.50,65.23,1141.35,2553.90,0.00,329.398075,1093.235434,60416,702921,0.003971,0.007217,4966411,4238474,0,0,10098,0,1,1 +1773533679.665533,2.31,4,3992.50,65.54,1129.32,2565.93,0.00,3517835040326.296875,3517835039562.105957,11,0,0.003420,0.005829,4966497,4238588,0,0,10100,0,1,1 +1773533684.663480,2.16,4,3992.50,65.53,1129.73,2565.51,0.00,325.679780,1094.495365,59658,702990,0.003880,0.007123,4966597,4238728,0,0,10103,0,1,1 +1773533689.665072,2.01,4,3992.50,65.53,1129.50,2565.73,0.00,3517317642834.621582,3517317642066.366211,11,0,0.004534,0.008042,4966699,4238870,0,0,10105,0,1,1 +1773533694.665191,2.01,4,3992.50,65.34,1136.93,2558.31,0.00,0.000000,0.000000,11,0,0.003878,0.007751,4966799,4239013,0,0,10108,0,1,1 +1773533699.665702,2.11,4,3992.50,65.36,1136.34,2558.90,0.00,0.176935,0.000000,199,0,0.003420,0.005855,4966885,4239129,0,0,10110,0,1,1 +1773533704.665208,2.36,4,3992.50,65.04,1148.83,2546.45,0.00,0.000000,0.000000,199,0,0.003878,0.007133,4966985,4239270,0,0,10113,0,1,1 +1773533709.663653,2.81,4,3992.50,65.00,1152.28,2544.90,0.00,3519531603715.666992,0.000000,11,0,0.004801,0.007795,4967087,4239413,0,0,10115,0,1,1 +1773533714.665769,18.56,4,3992.50,66.08,1109.58,2587.14,0.00,0.000000,0.000000,11,0,24.148400,0.115174,4975155,4245332,0,0,10118,0,1,1 +1773533719.665150,11.75,4,3992.50,65.27,1141.16,2555.50,0.00,0.000000,0.000000,11,0,12.078500,0.055204,4979066,4248310,0,0,10120,0,1,1 +1773533724.664465,5.37,4,3992.50,65.42,1135.37,2561.31,0.00,2.009064,0.000195,238,2,4.029454,0.022891,4980431,4249315,0,0,10123,0,1,1 +1773533729.665410,1.96,4,3992.50,65.42,1135.39,2561.29,0.00,3517772339355.786133,3517772339357.744141,70,0,0.003877,0.007121,4980531,4249455,0,0,10125,0,1,1 +1773533734.665616,2.01,4,3992.50,65.42,1135.41,2561.28,0.00,1.441835,0.022069,221,21,0.003865,0.007132,4980630,4249596,0,0,10128,0,1,1 +1773533739.661304,2.76,4,3992.50,65.19,1127.18,2552.41,0.00,3521473926567.671387,3521473926569.142578,11,0,0.003436,0.005860,4980717,4249712,0,0,10130,0,1,1 +1773533744.665359,2.06,4,3992.50,65.22,1125.93,2553.52,0.00,1.490686,0.022052,221,21,0.003862,0.007127,4980816,4249853,0,0,10133,0,1,1 +1773533749.665300,2.11,4,3992.50,65.22,1125.96,2553.49,0.00,3518478622782.490234,3518478622783.959961,11,0,0.003886,0.007118,4980917,4249993,0,0,10135,0,1,1 +1773533754.665699,2.16,4,3992.50,65.22,1125.96,2553.48,0.00,0.176939,0.000000,199,0,0.003878,0.007132,4981017,4250134,0,0,10138,0,1,1 +1773533759.665577,1.91,4,3992.50,65.22,1125.99,2553.46,0.00,3518523531635.643066,0.000000,11,0,0.003420,0.006338,4981103,4250253,0,0,10140,0,1,1 +1773533764.666104,2.36,4,3992.50,65.22,1126.01,2553.45,0.00,0.049995,0.000000,70,0,0.003890,0.007293,4981204,4250395,0,0,10143,0,1,1 +1773533769.665461,2.56,4,3992.50,65.28,1126.17,2555.86,0.00,3518889407285.322754,0.000000,11,0,0.003879,0.007111,4981304,4250534,0,0,10145,0,1,1 +1773533774.661196,2.11,4,3992.50,65.29,1125.72,2556.32,0.00,1.493168,0.022089,221,21,0.003881,0.007138,4981404,4250675,0,0,10148,0,1,1 +1773533779.661324,2.01,4,3992.50,65.33,1124.28,2557.76,0.00,0.516881,3518347432619.078613,238,2,0.003433,0.005855,4981491,4250791,0,0,10150,0,1,1 +1773533784.665897,3.76,4,3992.50,64.94,1139.39,2542.62,0.00,3515222277983.019531,0.021855,221,21,0.009453,0.009920,4981687,4250992,0,0,10153,0,1,1 +1773533789.665864,23.94,4,3992.50,66.48,1079.17,2602.79,0.00,0.000000,0.000000,221,21,32.200847,0.144372,4992275,4258753,0,0,10155,0,1,1 +1773533794.661203,7.34,4,3992.50,65.13,1132.10,2549.83,0.00,324.356555,1097.709582,59658,706204,8.057970,0.036487,4994915,4260677,0,0,10158,0,1,1 +1773533799.661196,2.91,4,3992.50,65.39,1128.28,2559.99,0.00,3518442167450.044922,3518442166678.881348,11,0,0.009740,0.009756,4995122,4260889,0,0,10160,0,1,1 +1773533804.661656,2.21,4,3992.50,65.39,1128.07,2560.21,0.00,325.516202,1097.036759,59658,706319,0.003420,0.005865,4995208,4261006,0,0,10163,0,1,1 +1773533809.662497,2.16,4,3992.50,65.40,1127.84,2560.44,0.00,3517845669440.523926,3517845668669.062500,11,0,0.003877,0.007109,4995308,4261145,0,0,10165,0,1,1 +1773533814.666100,2.06,4,3992.50,65.40,1127.86,2560.43,0.00,2.007342,0.000195,238,2,0.003888,0.007127,4995409,4261286,0,0,10168,0,1,1 +1773533819.661195,1.96,4,3992.50,65.40,1127.88,2560.40,0.00,3521892268313.063965,3521892268315.074707,11,0,0.003882,0.007129,4995509,4261426,0,0,10170,0,1,1 +1773533824.665625,2.06,4,3992.50,65.40,1127.90,2560.38,0.00,0.000000,0.000000,11,0,0.003425,0.006511,4995596,4261548,0,0,10173,0,1,1 +1773533829.665768,2.66,4,3992.50,65.81,1111.86,2576.75,0.00,1.491852,0.022070,221,21,0.003689,0.006976,4995692,4261686,0,0,10175,0,1,1 +1773533834.665116,2.06,4,3992.50,65.68,1116.77,2571.54,0.00,328.157843,1097.769460,60416,706777,0.003879,0.007133,4995792,4261827,0,0,10178,0,1,1 +1773533839.666101,2.16,4,3992.50,65.69,1116.56,2571.73,0.00,3517743946351.170410,3517743945583.280273,11,0,0.003877,0.007121,4995892,4261967,0,0,10180,0,1,1 +1773533844.665164,2.36,4,3992.50,65.69,1116.34,2571.96,0.00,2.009166,0.000195,238,2,0.003433,0.005866,4995979,4262084,0,0,10183,0,1,1 +1773533849.665879,2.51,4,3992.50,65.20,1135.66,2552.65,0.00,3517934359566.848145,0.021872,221,21,0.003865,0.007109,4996078,4262223,0,0,10185,0,1,1 +1773533854.661200,2.11,4,3992.50,65.32,1131.09,2557.22,0.00,3521733086886.613281,3521733086888.084473,11,0,0.003882,0.007139,4996178,4262364,0,0,10188,0,1,1 +1773533859.661210,8.04,4,3992.50,65.15,1130.23,2550.65,0.00,329.606255,1097.938560,60416,707083,6.041870,0.033462,4998212,4263927,0,0,10190,0,1,1 +1773533864.665388,23.97,4,3992.50,66.10,1093.02,2587.77,0.00,3515499667579.871094,3515499666810.171875,238,2,34.181132,0.151764,5009307,4272214,0,0,10193,0,1,1 +1773533869.664541,3.11,4,3992.50,66.10,1092.84,2587.94,0.00,323.592125,1098.732037,59658,708115,0.014032,0.009836,5009595,4272453,0,0,10195,0,1,1 +1773533874.665752,2.16,4,3992.50,65.75,1106.44,2574.33,0.00,3517585225497.950684,3517585224723.668457,221,21,0.003419,0.005864,5009681,4272570,0,0,10198,0,1,1 +1773533879.665242,2.16,4,3992.50,65.69,1108.95,2571.82,0.00,3518795912121.953125,3518795912123.423340,11,0,0.003891,0.007123,5009782,4272710,0,0,10200,0,1,1 +1773533884.664241,1.86,4,3992.50,65.66,1110.08,2570.69,0.00,0.000000,0.000000,11,0,0.003879,0.007134,5009882,4272851,0,0,10203,0,1,1 +1773533889.666049,2.51,4,3992.50,65.69,1108.75,2572.03,0.00,0.049982,0.000000,70,0,0.003889,0.007603,5009983,4272994,0,0,10205,0,1,1 +1773533894.662803,2.36,4,3992.50,65.25,1126.02,2554.77,0.00,0.000000,0.000000,70,0,0.003418,0.006038,5010069,4273113,0,0,10208,0,1,1 +1773533899.666115,2.11,4,3992.50,65.28,1125.03,2555.73,0.00,3516108084739.753418,0.000000,11,0,0.003875,0.007118,5010169,4273253,0,0,10210,0,1,1 +1773533904.665938,2.21,4,3992.50,65.28,1124.92,2555.88,0.00,1.491947,0.022071,221,21,0.003878,0.007133,5010269,4273394,0,0,10213,0,1,1 +1773533909.665631,2.11,4,3992.50,65.31,1123.69,2557.09,0.00,3518653199297.155273,3518653199298.625000,11,0,0.003878,0.007123,5010369,4273534,0,0,10215,0,1,1 +1773533914.665868,2.11,4,3992.50,65.32,1123.49,2557.29,0.00,0.000000,0.000000,11,0,0.003420,0.005865,5010455,4273651,0,0,10218,0,1,1 +1773533919.665211,2.31,4,3992.50,65.32,1133.98,2557.51,0.00,2.009053,0.000195,238,2,0.003879,0.007111,5010555,4273790,0,0,10220,0,1,1 +1773533924.661214,2.26,4,3992.50,65.31,1131.88,2556.88,0.00,3521252166175.173828,3521252166177.134277,70,0,0.005649,0.008656,5010679,4273945,0,0,10223,0,1,1 +1773533929.662505,2.16,4,3992.50,65.31,1131.88,2556.89,0.00,3517528622797.812500,0.000000,11,0,0.006387,0.009278,5010818,4274123,0,0,10225,0,1,1 +1773533934.665757,12.24,4,3992.50,65.19,1136.53,2552.18,0.00,0.000000,0.000000,11,0,8.063541,0.050453,5013725,4276315,0,0,10228,0,1,1 +1773533939.661166,21.86,4,3992.50,66.10,1100.61,2588.02,0.00,0.000000,0.000000,11,0,32.218686,0.138693,5023845,4284004,0,0,10230,0,1,1 +1773533944.661452,2.11,4,3992.50,65.62,1119.61,2569.05,0.00,325.550914,1100.236885,59661,710008,0.005712,0.008412,5023982,4284176,0,0,10233,0,1,1 +1773533949.665213,2.56,4,3992.50,65.43,1123.59,2561.55,0.00,3515792708739.031738,3515792707964.883789,11,0,0.003875,0.007117,5024082,4284316,0,0,10235,0,1,1 +1773533954.665340,2.06,4,3992.50,65.41,1124.30,2560.77,0.00,0.000000,0.000000,11,0,0.003878,0.007281,5024182,4284457,0,0,10238,0,1,1 +1773533959.665645,2.26,4,3992.50,65.41,1124.31,2560.75,0.00,0.000000,0.000000,11,0,0.003395,0.006338,5024266,4284576,0,0,10240,0,1,1 +1773533964.664549,2.16,4,3992.50,65.40,1124.34,2560.73,0.00,0.050011,0.000000,70,0,0.003879,0.007134,5024366,4284717,0,0,10243,0,1,1 +1773533969.664299,1.91,4,3992.50,65.40,1124.37,2560.68,0.00,1.441967,0.022071,221,21,0.002672,0.005511,5024441,4284827,0,0,10245,0,1,1 +1773533974.665125,2.06,4,3992.50,65.40,1124.36,2560.70,0.00,3517855528655.760254,3517855528657.229980,11,0,0.003037,0.004679,5024518,4284926,0,0,10248,0,1,1 +1773533979.665831,2.71,4,3992.50,65.40,1116.72,2560.68,0.00,0.000000,0.000000,11,0,0.003865,0.007121,5024617,4285066,0,0,10250,0,1,1 +1773533984.665952,2.21,4,3992.50,65.36,1118.38,2559.09,0.00,329.622389,1101.146674,60419,710594,0.003878,0.007132,5024717,4285207,0,0,10253,0,1,1 +1773533989.665472,1.91,4,3992.50,65.38,1117.66,2559.81,0.00,3518775266443.725098,3518775265670.637695,221,21,0.004078,0.006778,5024805,4285325,0,0,10255,0,1,1 +1773533994.663582,2.31,4,3992.50,65.38,1117.67,2559.79,0.00,328.262545,1101.623492,60419,710654,0.003888,0.007143,5024906,4285467,0,0,10258,0,1,1 +1773533999.661280,2.11,4,3992.50,65.37,1118.17,2559.27,0.00,0.000000,0.032437,60419,710693,0.003892,0.007126,5025007,4285607,0,0,10260,0,1,1 +1773534004.665347,18.90,4,3992.50,65.34,1119.39,2558.02,0.00,3515577398135.724609,3515577397364.543457,199,0,18.110410,0.089871,5031117,4290172,0,0,10263,0,1,1 +1773534009.665532,15.52,4,3992.50,65.81,1100.83,2576.50,0.00,1.314893,0.022069,221,21,22.137268,0.102045,5038409,4295676,0,0,10265,0,1,1 +1773534014.666098,1.96,4,3992.50,65.66,1106.42,2570.93,0.00,3518038507466.833984,3518038507468.303711,11,0,0.004807,0.007784,5038512,4295819,0,0,10268,0,1,1 +1773534019.662693,2.11,4,3992.50,65.63,1107.80,2569.54,0.00,2.010158,0.000195,238,2,0.003423,0.005884,5038598,4295937,0,0,10270,0,1,1 +1773534024.665652,2.31,4,3992.50,65.64,1107.23,2570.11,0.00,3516356844263.204102,3516356844265.211426,11,0,0.003876,0.007759,5038698,4296081,0,0,10273,0,1,1 +1773534029.665464,2.06,4,3992.50,65.67,1106.28,2571.07,0.00,0.176960,0.000000,199,0,0.003891,0.007123,5038799,4296221,0,0,10275,0,1,1 +1773534034.665713,2.16,4,3992.50,65.67,1106.05,2571.29,0.00,325.376346,1102.349598,59661,711912,0.003649,0.006517,5038892,4296351,0,0,10278,0,1,1 +1773534039.661387,2.31,4,3992.50,65.63,1112.03,2569.49,0.00,3521483974659.305176,3521483973881.797363,11,0,0.003648,0.006484,5038985,4296479,0,0,10280,0,1,1 +1773534044.661733,4.71,4,3992.50,65.00,1136.75,2544.79,0.00,0.000000,0.000000,11,0,0.003878,0.007132,5039085,4296620,0,0,10283,0,1,1 +1773534049.661329,1.91,4,3992.50,65.00,1136.52,2545.02,0.00,325.595840,1102.761176,59661,712151,0.003878,0.007123,5039185,4296760,0,0,10285,0,1,1 +1773534054.665555,2.16,4,3992.50,65.00,1136.54,2545.01,0.00,3515466443952.733398,3515466443176.110352,199,0,0.003646,0.006481,5039278,4296888,0,0,10288,0,1,1 +1773534059.665668,2.01,4,3992.50,65.00,1136.54,2545.01,0.00,1.314912,0.022070,221,21,0.003624,0.006489,5039369,4297016,0,0,10290,0,1,1 +1773534064.662445,2.01,4,3992.50,64.93,1139.33,2542.20,0.00,3520706588046.832520,3520706588048.126465,199,0,0.003889,0.007145,5039470,4297158,0,0,10293,0,1,1 +1773534069.666098,2.76,4,3992.50,65.19,1126.25,2552.26,0.00,3515868918672.792480,0.000000,11,0,0.003850,0.007105,5039568,4297297,0,0,10295,0,1,1 +1773534074.666149,15.85,4,3992.50,65.25,1123.62,2554.80,0.00,1.491879,0.022070,221,21,16.108224,0.078344,5044837,4301250,0,0,10298,0,1,1 +1773534079.665570,10.85,4,3992.50,65.63,1108.95,2569.46,0.00,0.000000,0.000000,221,21,12.075716,0.053685,5048678,4304079,0,0,10300,0,1,1 +1773534084.665126,10.80,4,3992.50,65.49,1114.31,2564.07,0.00,0.516940,3518749473971.497070,238,2,12.079089,0.058932,5052722,4307293,0,0,10303,0,1,1 +1773534089.661921,2.46,4,3992.50,65.28,1122.66,2555.71,0.00,3520694160434.820801,3520694160436.830566,11,0,0.003868,0.007759,5052821,4307436,0,0,10305,0,1,1 +1773534094.666152,2.06,4,3992.50,65.14,1127.89,2550.48,0.00,2.007091,0.000195,238,2,0.003862,0.007126,5052920,4307577,0,0,10308,0,1,1 +1773534099.665610,2.31,4,3992.50,65.14,1124.76,2550.36,0.00,3518818482716.535645,3518818482718.494629,70,0,0.003421,0.005843,5053006,4307692,0,0,10310,0,1,1 +1773534104.665771,2.20,4,3992.50,65.06,1127.52,2547.40,0.00,0.126949,0.000000,199,0,0.003878,0.007132,5053106,4307833,0,0,10313,0,1,1 +1773534109.665934,2.26,4,3992.50,65.08,1127.04,2547.87,0.00,3518322678332.204590,0.000000,11,0,0.003886,0.007130,5053207,4307974,0,0,10315,0,1,1 +1773534114.665631,2.06,4,3992.50,65.10,1126.12,2548.82,0.00,0.000000,0.000000,11,0,0.003891,0.007133,5053308,4308115,0,0,10318,0,1,1 +1773534119.664358,1.86,4,3992.50,65.07,1127.31,2547.62,0.00,1.492275,0.022076,221,21,0.003421,0.005857,5053394,4308231,0,0,10320,0,1,1 +1773534124.665270,2.25,4,3992.50,65.09,1126.51,2548.42,0.00,0.000000,0.000000,221,21,0.003877,0.007131,5053494,4308372,0,0,10323,0,1,1 +1773534129.661270,2.41,4,3992.50,65.13,1128.60,2550.07,0.00,328.401221,1105.397679,60419,714087,0.003877,0.007136,5053594,4308513,0,0,10325,0,1,1 +1773534134.662608,2.21,4,3992.50,65.10,1129.85,2548.85,0.00,3517495954074.219727,3517495953298.052734,221,21,0.003864,0.007130,5053693,4308654,0,0,10328,0,1,1 +1773534139.661330,2.16,4,3992.50,65.12,1129.12,2549.57,0.00,324.160524,1104.864056,59661,714167,0.003421,0.005857,5053779,4308770,0,0,10330,0,1,1 +1773534144.661664,2.41,4,3992.50,65.10,1129.77,2548.94,0.00,3518202153953.522949,3518202153174.541016,11,0,0.003878,0.007132,5053879,4308911,0,0,10333,0,1,1 +1773534149.666039,21.12,4,3992.50,65.64,1108.81,2569.83,0.00,0.176798,0.000000,199,0,26.143981,0.120246,5062475,4315247,0,0,10335,0,1,1 +1773534154.665940,10.49,4,3992.50,65.18,1126.80,2551.79,0.00,3518506572017.882812,0.000000,11,0,10.068011,0.049626,5065856,4317830,0,0,10338,0,1,1 +1773534159.665907,5.58,4,3992.50,65.58,1114.20,2567.42,0.00,1.491904,0.022070,221,21,4.029446,0.022847,5067243,4318852,0,0,10340,0,1,1 +1773534164.663567,2.01,4,3992.50,65.41,1117.68,2560.99,0.00,3520085043060.404785,3520085043061.825195,70,0,0.003867,0.007136,5067342,4318993,0,0,10343,0,1,1 +1773534169.665361,2.01,4,3992.50,65.25,1124.15,2554.54,0.00,3517174979898.499023,0.000000,11,0,0.003432,0.005853,5067429,4319109,0,0,10345,0,1,1 +1773534174.665553,2.21,4,3992.50,65.25,1124.16,2554.52,0.00,0.049998,0.000000,70,0,0.003878,0.007132,5067529,4319250,0,0,10348,0,1,1 +1773534179.665602,2.06,4,3992.50,65.25,1124.18,2554.52,0.00,1.441880,0.022070,221,21,0.003886,0.007130,5067630,4319391,0,0,10350,0,1,1 +1773534184.665552,1.91,4,3992.50,65.16,1127.69,2550.98,0.00,328.141761,1105.921029,60419,715560,0.003878,0.007132,5067730,4319532,0,0,10353,0,1,1 +1773534189.665465,2.51,4,3992.50,65.35,1121.06,2558.55,0.00,3518499039840.896484,3518499039064.581543,11,0,0.003420,0.005855,5067816,4319648,0,0,10355,0,1,1 +1773534194.662812,1.96,4,3992.50,65.38,1118.92,2559.77,0.00,325.742362,1106.758605,59661,715773,0.003880,0.007136,5067916,4319789,0,0,10358,0,1,1 +1773534199.665479,2.51,4,3992.50,65.18,1126.82,2551.89,0.00,3516560962225.841309,3516560961445.605469,70,0,0.003884,0.007127,5068017,4319930,0,0,10360,0,1,1 +1773534204.665571,2.36,4,3992.50,65.19,1126.35,2552.35,0.00,0.000000,0.000000,70,0,0.003878,0.007120,5068117,4320070,0,0,10363,0,1,1 +1773534209.666151,1.96,4,3992.50,65.19,1126.36,2552.34,0.00,0.126938,0.000000,199,0,0.003420,0.005867,5068203,4320187,0,0,10365,0,1,1 +1773534214.664217,1.81,4,3992.50,65.00,1133.78,2544.93,0.00,3519799136026.133301,0.000000,70,0,0.000774,0.001443,5068229,4320216,0,0,10368,0,1,1 +1773534219.665720,3.31,4,3992.50,65.23,1133.72,2554.09,0.00,329.481282,1106.000288,60419,715912,0.000304,0.000181,5068249,4320219,0,0,10370,0,1,1 +1773534224.665481,6.07,4,3992.50,65.24,1133.36,2554.44,0.00,3518605852139.025879,0.176083,59661,716074,0.000685,0.000513,5068293,4320225,0,0,10373,0,1,1 +1773534229.665878,2.06,4,3992.50,65.13,1137.89,2549.91,0.00,3518157428495.442871,3518157427714.515137,70,0,0.000418,0.000020,5068321,4320227,0,0,10375,0,1,1 +1773534234.666085,2.01,4,3992.50,65.14,1137.54,2550.26,0.00,0.126948,0.000000,199,0,0.000455,0.000030,5068352,4320230,0,0,10378,0,1,1 +1773534239.665173,2.31,4,3992.50,65.13,1137.64,2550.16,0.00,3519079012178.922363,0.000000,11,0,0.000202,0.000020,5068366,4320232,0,0,10380,0,1,1 +1773534244.661571,21.49,4,3992.50,66.95,1066.53,2621.12,0.00,0.050036,0.000000,70,0,36.257931,0.162957,5080485,4329087,0,0,10383,0,1,1 +1773534249.665287,6.48,4,3992.50,66.17,1091.95,2590.74,0.00,1.957335,0.000195,238,2,4.032258,0.022973,5082001,4330246,0,0,10385,0,1,1 +1773534254.666016,2.16,4,3992.50,65.71,1109.89,2572.69,0.00,0.000000,0.000000,238,2,0.003890,0.007162,5082102,4330389,0,0,10388,0,1,1 +1773534259.665939,2.35,4,3992.50,65.57,1115.36,2567.22,0.00,3518491354240.943359,3518491354242.952148,11,0,0.003431,0.005869,5082189,4330506,0,0,10390,0,1,1 +1773534264.665647,2.26,4,3992.50,65.57,1115.38,2567.21,0.00,0.176963,0.000000,199,0,0.003911,0.007141,5082292,4330648,0,0,10393,0,1,1 +1773534269.661245,2.31,4,3992.50,65.59,1114.65,2567.94,0.00,3521537426049.882812,0.000000,11,0,0.003938,0.007156,5082396,4330790,0,0,10395,0,1,1 +1773534274.665958,1.85,4,3992.50,65.59,1114.65,2567.93,0.00,0.000000,0.000000,11,0,0.001402,0.000267,5082415,4330800,0,0,10398,0,1,1 +1773534279.666023,2.31,4,3992.50,65.78,1112.70,2575.53,0.00,1.491875,0.022070,221,21,0.000151,0.000020,5082416,4330802,0,0,10400,0,1,1 +1773534284.663290,2.21,4,3992.50,65.59,1120.42,2567.82,0.00,0.000000,0.000000,221,21,0.000069,0.000030,5082421,4330805,0,0,10403,0,1,1 +1773534289.666155,1.86,4,3992.50,65.53,1122.57,2565.67,0.00,0.000000,0.000000,221,21,0.000042,0.000663,5082424,4330811,0,0,10405,0,1,1 +1773534294.665314,1.91,4,3992.50,65.56,1121.33,2566.91,0.00,0.000000,0.000000,221,21,0.000014,0.000030,5082425,4330814,0,0,10408,0,1,1 +1773534299.661198,2.01,4,3992.50,65.56,1121.34,2566.91,0.00,328.412717,1108.978876,60424,717665,0.000071,0.000020,5082430,4330816,0,0,10410,0,1,1 +1773534304.661210,2.06,4,3992.50,65.56,1121.37,2566.89,0.00,3518429035948.609863,3518429035168.149414,238,2,0.004090,0.006757,5082520,4330934,0,0,10413,0,1,1 +1773534309.661186,2.66,4,3992.50,65.56,1118.49,2566.87,0.00,3518453855390.122070,3518453855392.080566,70,0,0.003458,0.005855,5082609,4331050,0,0,10415,0,1,1 +1773534314.665586,17.15,4,3992.50,65.60,1116.92,2568.43,0.00,3515343582790.200684,0.000000,11,0,16.136588,0.082472,5087964,4335030,0,0,10418,0,1,1 +1773534319.661291,15.95,4,3992.50,65.93,1104.11,2581.19,0.00,0.000000,0.000000,11,0,24.131744,0.106992,5095819,4340791,0,0,10420,0,1,1 +1773534324.665914,1.91,4,3992.50,65.31,1128.43,2556.88,0.00,0.049954,0.000000,70,0,0.003874,0.007113,5095919,4340931,0,0,10423,0,1,1 +1773534329.662905,2.16,4,3992.50,65.03,1139.40,2545.91,0.00,1.959968,0.000195,238,2,0.003880,0.007127,5096019,4341071,0,0,10425,0,1,1 +1773534334.665380,1.95,4,3992.50,65.03,1139.27,2546.02,0.00,0.000000,0.000000,238,2,0.000174,0.000030,5096030,4341074,0,0,10428,0,1,1 +1773534339.664161,1.61,4,3992.50,65.04,1138.75,2546.55,0.00,327.705342,1109.580534,60424,719050,0.000061,0.000020,5096034,4341076,0,0,10430,0,1,1 +1773534344.665435,2.21,4,3992.50,65.07,1137.53,2547.70,0.00,3517540991168.622559,3517540990389.145508,11,0,0.000061,0.000030,5096038,4341079,0,0,10433,0,1,1 +1773534349.662430,2.06,4,3992.50,65.07,1137.53,2547.71,0.00,0.000000,0.000000,11,0,0.000056,0.000020,5096042,4341081,0,0,10435,0,1,1 +1773534354.666168,1.66,4,3992.50,65.07,1137.54,2547.70,0.00,0.000000,0.000000,11,0,0.000000,0.000512,5096042,4341087,0,0,10438,0,1,1 +1773534359.662316,1.76,4,3992.50,65.07,1137.74,2547.52,0.00,325.824492,1110.478499,59666,719338,0.000089,0.000181,5096048,4341090,0,0,10440,0,1,1 +1773534364.665257,1.86,4,3992.50,65.07,1137.74,2547.49,0.00,0.000000,0.008589,59666,719348,0.003625,0.006430,5096140,4341216,0,0,10443,0,1,1 +1773534369.662947,2.36,4,3992.50,65.07,1136.36,2547.45,0.00,3520063689187.343750,3520063688401.453125,221,21,0.003661,0.006519,5096234,4341346,0,0,10445,0,1,1 +1773534374.665848,2.06,4,3992.50,65.01,1138.16,2545.38,0.00,3516397230104.313477,3516397230105.605469,199,0,0.003919,0.007161,5096337,4341490,0,0,10448,0,1,1 +1773534379.665406,1.91,4,3992.50,65.01,1138.16,2545.39,0.00,329.486432,1109.955871,60424,719561,0.003891,0.007123,5096438,4341630,0,0,10450,0,1,1 +1773534384.663831,19.67,4,3992.50,65.04,1136.97,2546.55,0.00,0.000000,0.142623,60424,720002,20.151429,0.103155,5103318,4346702,0,0,10453,0,1,1 +1773534389.662297,13.42,4,3992.50,65.60,1114.87,2568.57,0.00,3519516956937.364258,3519516956156.758789,11,0,20.125897,0.088077,5109849,4351557,0,0,10455,0,1,1 +1773534394.664882,1.91,4,3992.50,65.26,1128.28,2555.17,0.00,0.000000,0.000000,11,0,0.000141,0.000030,5109858,4351560,0,0,10458,0,1,1 +1773534399.661191,2.06,4,3992.50,65.63,1113.05,2569.73,0.00,0.000000,0.000000,11,0,0.000094,0.000020,5109864,4351562,0,0,10460,0,1,1 +1773534404.661206,1.91,4,3992.50,65.63,1113.07,2569.72,0.00,0.050000,0.000000,70,0,0.000042,0.000030,5109867,4351565,0,0,10463,0,1,1 +1773534409.661283,1.66,4,3992.50,65.64,1112.82,2569.96,0.00,3518382737281.611328,0.000000,11,0,0.000075,0.000020,5109872,4351567,0,0,10465,0,1,1 +1773534414.661290,1.76,4,3992.50,65.64,1112.84,2569.95,0.00,329.633820,1111.280490,60424,721138,0.000000,0.000030,5109872,4351570,0,0,10468,0,1,1 +1773534419.662651,1.80,4,3992.50,65.64,1112.83,2569.95,0.00,3517480244990.610840,3517480244207.167480,238,2,0.000089,0.000664,5109878,4351576,0,0,10470,0,1,1 +1773534424.661187,1.86,4,3992.50,65.64,1112.97,2569.81,0.00,3519467125327.888184,3519467125329.847168,70,0,0.003845,0.007123,5109976,4351717,0,0,10473,0,1,1 +1773534429.661375,2.16,4,3992.50,65.64,1106.86,2570.00,0.00,0.000000,0.000000,70,0,0.003418,0.005894,5110062,4351836,0,0,10475,0,1,1 +1773534434.664649,2.20,4,3992.50,65.61,1107.75,2568.96,0.00,1.957507,0.000195,238,2,0.003907,0.007148,5110164,4351979,0,0,10478,0,1,1 +1773534439.665542,1.91,4,3992.50,65.62,1107.52,2569.18,0.00,3517808572267.957031,3517808572269.965332,11,0,0.003865,0.007121,5110263,4352119,0,0,10480,0,1,1 +1773534444.666017,1.86,4,3992.50,65.62,1107.53,2569.18,0.00,0.176936,0.000000,199,0,0.003840,0.007094,5110360,4352257,0,0,10483,0,1,1 +1773534449.665599,3.16,4,3992.50,65.62,1107.32,2569.34,0.00,0.000000,0.000000,199,0,0.008979,0.008703,5110540,4352437,0,0,10485,0,1,1 +1773534454.665886,7.73,4,3992.50,65.89,1097.06,2579.64,0.00,3518234876602.613281,0.000000,70,0,0.085826,0.005594,5110798,4352559,0,0,10488,0,1,1 +1773534459.665829,2.46,4,3992.50,65.89,1099.80,2579.59,0.00,3518477273080.163086,0.000000,11,0,0.001464,0.000020,5110826,4352561,0,0,10490,0,1,1 +1773534464.665920,2.15,4,3992.50,65.70,1107.22,2572.16,0.00,0.000000,0.000000,11,0,0.001437,0.000030,5110863,4352564,0,0,10493,0,1,1 +1773534469.665071,1.81,4,3992.50,65.70,1107.24,2572.16,0.00,325.628705,1112.148525,59666,721759,0.000337,0.000020,5110876,4352566,0,0,10495,0,1,1 +1773534474.665650,2.36,4,3992.50,65.70,1107.01,2572.39,0.00,3518029928345.648438,3518029927557.345215,238,2,0.000325,0.000030,5110899,4352569,0,0,10498,0,1,1 +1773534479.665344,2.26,4,3992.50,65.70,1107.01,2572.39,0.00,0.000000,0.000000,238,2,0.001450,0.000020,5110926,4352571,0,0,10500,0,1,1 +1773534484.663339,3.76,4,3992.50,65.70,1107.20,2572.18,0.00,3519848342832.729980,3519848342834.689453,70,0,0.015527,0.008623,5111160,4352739,0,0,10503,0,1,1 +1773534489.665595,16.30,4,3992.50,66.94,1060.58,2620.90,0.00,1.957906,0.000195,238,2,26.132357,0.104867,5119380,4358781,0,0,10505,0,1,1 +1773534494.665059,10.57,4,3992.50,66.23,1088.46,2592.91,0.00,323.599377,1112.963485,59666,722974,16.116416,0.081368,5124990,4363035,0,0,10508,0,1,1 +1773534499.665552,2.36,4,3992.50,65.89,1101.75,2579.62,0.00,3518089997701.483398,3518089996914.290527,11,0,0.007737,0.009419,5125149,4363209,0,0,10510,0,1,1 +1773534504.662470,2.46,4,3992.50,65.29,1125.07,2556.31,0.00,1.492815,0.022084,221,21,1.940616,0.013371,5125737,4363729,0,0,10513,0,1,1 +1773534509.664288,2.21,4,3992.50,65.32,1123.86,2557.51,0.00,3517158022729.431152,3517158022730.900391,11,0,0.006351,0.008266,5125882,4363898,0,0,10515,0,1,1 +1773534514.665426,1.56,4,3992.50,65.32,1123.88,2557.50,0.00,0.000000,0.000000,11,0,0.000785,0.000030,5125889,4363901,0,0,10518,0,1,1 +1773534519.664997,2.11,4,3992.50,65.19,1128.62,2552.29,0.00,325.601367,1113.249886,59666,723192,0.000151,0.000020,5125890,4363903,0,0,10520,0,1,1 +1773534524.662736,1.91,4,3992.50,65.20,1128.19,2552.73,0.00,0.000782,0.124568,59667,723320,0.000083,0.000030,5125896,4363906,0,0,10523,0,1,1 +1773534529.663436,1.75,4,3992.50,65.20,1128.19,2552.73,0.00,3517944819411.153809,3517944818623.382324,199,0,0.000028,0.000020,5125898,4363908,0,0,10525,0,1,1 +1773534534.664195,1.61,4,3992.50,65.20,1128.19,2552.73,0.00,325.347897,1113.119376,59667,723330,0.000028,0.000030,5125900,4363911,0,0,10528,0,1,1 +1773534539.664888,1.61,4,3992.50,65.20,1128.19,2552.73,0.00,4.060277,0.050384,60425,723386,0.000056,0.000020,5125904,4363913,0,0,10530,0,1,1 +1773534544.665302,2.46,4,3992.50,65.17,1129.54,2551.38,0.00,3518146531549.214844,3518146530763.567383,238,2,0.003845,0.006817,5126010,4364047,0,0,10533,0,1,1 +1773534549.663592,4.12,4,3992.50,65.39,1120.70,2560.18,0.00,3519640538080.877441,3519640538082.836914,70,0,0.036209,0.021133,5126723,4364547,0,0,10535,0,1,1 +1773534554.661274,4.69,4,3992.50,64.72,1146.91,2534.03,0.00,329.737926,1114.460321,60425,724063,0.058854,0.029999,5127892,4365313,0,0,10538,0,1,1 +1773534559.661200,1.91,4,3992.50,64.72,1146.92,2534.01,0.00,3518489627012.028320,3518489626227.708008,11,0,0.003420,0.005855,5127978,4365429,0,0,10540,0,1,1 +1773534564.665595,1.91,4,3992.50,64.76,1145.37,2535.57,0.00,325.288246,1112.963545,59667,724058,0.003875,0.007126,5128078,4365570,0,0,10543,0,1,1 +1773534569.665577,4.32,4,3992.50,65.22,1127.37,2553.56,0.00,3518450046678.333008,3518450045889.785156,199,0,2.016068,0.015979,5128787,4366165,0,0,10545,0,1,1 +1773534574.661276,7.74,4,3992.50,64.93,1138.86,2542.07,0.00,1.316074,0.022089,221,21,0.004854,0.001696,5128921,4366219,0,0,10548,0,1,1 +1773534579.661275,2.26,4,3992.50,65.21,1127.87,2553.16,0.00,3518437956901.617676,3518437956903.087891,11,0,0.000430,0.000020,5128939,4366221,0,0,10550,0,1,1 +1773534584.663167,2.11,4,3992.50,64.93,1138.91,2542.05,0.00,0.049981,0.000000,70,0,0.000585,0.000030,5128968,4366224,0,0,10553,0,1,1 +1773534589.666064,2.06,4,3992.50,64.94,1138.52,2542.45,0.00,1.441060,0.022058,221,21,0.000169,0.000020,5128980,4366226,0,0,10555,0,1,1 +1773534594.665078,1.86,4,3992.50,64.94,1138.31,2542.66,0.00,324.146223,1114.679404,59667,724454,0.000325,0.000030,5129003,4366229,0,0,10558,0,1,1 +1773534599.662611,1.86,4,3992.50,64.95,1138.07,2542.90,0.00,0.000000,0.007816,59667,724459,0.000430,0.000020,5129021,4366231,0,0,10560,0,1,1 +1773534604.661198,8.76,4,3992.50,65.28,1125.06,2555.91,0.00,3519431375422.388184,3519431374631.779785,221,21,4.029687,0.020643,5130291,4367165,0,0,10563,0,1,1 +1773534609.663563,18.55,4,3992.50,66.97,1065.43,2621.82,0.00,3516773861357.922852,3516773861359.392090,11,0,34.214580,0.162525,5141842,4375889,0,0,10565,0,1,1 +1773534614.665742,21.63,4,3992.50,65.24,1132.38,2554.38,0.00,0.176876,0.000000,199,0,30.174641,0.137281,5151671,4383379,0,0,10568,0,1,1 +1773534619.665320,2.61,4,3992.50,65.29,1130.49,2556.28,0.00,3518734064067.400879,0.000000,70,0,0.006949,0.009925,5151820,4383558,0,0,10570,0,1,1 +1773534624.665806,1.91,4,3992.50,64.98,1142.62,2544.15,0.00,1.958599,0.000195,238,2,0.004015,0.007241,5151929,4383707,0,0,10573,0,1,1 +1773534629.664557,2.21,4,3992.50,64.98,1142.64,2544.12,0.00,0.000000,0.000000,238,2,0.003525,0.006465,5152021,4383833,0,0,10575,0,1,1 +1773534634.664232,2.01,4,3992.50,64.99,1142.18,2544.60,0.00,0.000000,0.000000,238,2,0.001139,0.000676,5152036,4383849,0,0,10578,0,1,1 +1773534639.665976,2.16,4,3992.50,65.37,1130.52,2559.54,0.00,3517210733582.849609,0.021867,221,21,0.000151,0.000020,5152037,4383851,0,0,10580,0,1,1 +1773534644.665673,1.96,4,3992.50,65.39,1130.03,2560.02,0.00,0.516926,3518649919011.812012,238,2,0.000041,0.000030,5152040,4383854,0,0,10583,0,1,1 +1773534649.665923,1.56,4,3992.50,65.39,1129.80,2560.25,0.00,3518261649032.209473,3518261649034.218262,11,0,0.000056,0.000020,5152044,4383856,0,0,10585,0,1,1 +1773534654.665381,2.26,4,3992.50,65.30,1133.50,2556.55,0.00,1.492056,0.022073,221,21,0.000028,0.000030,5152046,4383859,0,0,10588,0,1,1 +1773534659.665198,1.76,4,3992.50,65.34,1131.79,2558.27,0.00,3518566485236.655273,3518566485238.125488,11,0,0.000071,0.000020,5152051,4383861,0,0,10590,0,1,1 +1773534664.661302,2.11,4,3992.50,65.15,1139.44,2550.61,0.00,0.000000,0.000000,11,0,0.002970,0.005089,5152124,4383964,0,0,10593,0,1,1 +1773534669.662293,2.41,4,3992.50,65.38,1132.81,2559.66,0.00,0.000000,0.000000,11,0,0.003407,0.005845,5152209,4384080,0,0,10595,0,1,1 +1773534674.661211,2.31,4,3992.50,65.38,1129.88,2559.85,0.00,325.644664,1116.932052,59667,726940,0.003910,0.007154,5152311,4384223,0,0,10598,0,1,1 +1773534679.661186,2.91,4,3992.50,65.06,1142.38,2547.32,0.00,3518454952829.820801,3518454952038.523438,199,0,0.006670,0.008508,5152459,4384392,0,0,10600,0,1,1 +1773534684.665626,25.63,4,3992.50,65.51,1124.83,2564.77,0.00,3515315620564.035156,0.000000,11,0,30.162885,0.137951,5162177,4391705,0,0,10603,0,1,1 +1773534689.665222,8.15,4,3992.50,65.79,1113.62,2576.00,0.00,2.008951,0.000195,238,2,10.070241,0.052440,5165623,4394301,0,0,10605,0,1,1 +1773534694.666607,1.81,4,3992.50,65.60,1121.05,2568.57,0.00,0.000000,0.000000,238,2,0.000785,0.000030,5165630,4394304,0,0,10608,0,1,1 +1773534699.661179,2.31,4,3992.50,65.36,1122.41,2558.97,0.00,3522261016298.712891,3522261016300.723633,11,0,0.000151,0.000020,5165631,4394306,0,0,10610,0,1,1 +1773534704.665484,2.00,4,3992.50,65.30,1124.42,2556.82,0.00,0.049957,0.000000,70,0,0.000083,0.000030,5165637,4394309,0,0,10613,0,1,1 +1773534709.661258,1.86,4,3992.50,65.17,1129.50,2551.74,0.00,3521413793760.436523,0.000000,11,0,0.000028,0.000020,5165639,4394311,0,0,10615,0,1,1 +1773534714.661899,1.76,4,3992.50,65.18,1129.27,2551.98,0.00,0.176930,0.000000,199,0,0.000028,0.000030,5165641,4394314,0,0,10618,0,1,1 +1773534719.665211,2.11,4,3992.50,65.18,1129.27,2551.96,0.00,3516107660977.750000,0.000000,11,0,0.000056,0.000020,5165645,4394316,0,0,10620,0,1,1 +1773534724.665889,2.06,4,3992.50,65.19,1128.80,2552.44,0.00,0.000000,0.000000,11,0,0.002937,0.004570,5165716,4394407,0,0,10623,0,1,1 +1773534729.665876,2.46,4,3992.50,65.36,1122.43,2558.83,0.00,2.008794,0.000195,238,2,0.003649,0.006468,5165809,4394534,0,0,10625,0,1,1 +1773534734.665395,2.26,4,3992.50,65.12,1131.84,2549.41,0.00,3518775589824.698242,3518775589826.530273,199,0,0.003909,0.007167,5165911,4394678,0,0,10628,0,1,1 +1773534739.664944,2.31,4,3992.50,65.14,1130.87,2550.38,0.00,3518754927821.770996,0.000000,70,0,0.003866,0.007123,5166010,4394818,0,0,10630,0,1,1 +1773534744.661283,2.06,4,3992.50,64.96,1138.05,2543.20,0.00,0.000000,0.000000,70,0,0.003423,0.005869,5166096,4394935,0,0,10633,0,1,1 +1773534749.665463,7.64,4,3992.50,65.11,1132.18,2549.08,0.00,3515497751452.956055,0.000000,11,0,6.032786,0.033179,5167988,4396435,0,0,10635,0,1,1 +1773534754.661275,5.98,4,3992.50,65.15,1130.44,2550.82,0.00,329.911449,1119.607798,60425,729124,0.007206,0.002342,5168148,4396505,0,0,10638,0,1,1 +1773534759.665402,2.16,4,3992.50,65.17,1129.70,2551.55,0.00,3515535007142.801270,3515535006354.417480,11,0,0.000556,0.000020,5168164,4396507,0,0,10640,0,1,1 +1773534764.665246,3.31,4,3992.50,65.29,1124.25,2556.13,0.00,0.176959,0.000000,199,0,0.000697,0.000030,5168190,4396510,0,0,10643,0,1,1 +1773534769.665718,2.16,4,3992.50,65.09,1131.89,2548.50,0.00,3518105331231.085938,0.000000,11,0,0.000127,0.000020,5168199,4396512,0,0,10645,0,1,1 +1773534774.665316,2.11,4,3992.50,65.09,1131.91,2548.48,0.00,1.492014,0.022072,221,21,0.000268,0.000030,5168218,4396515,0,0,10648,0,1,1 +1773534779.665657,2.26,4,3992.50,65.09,1131.91,2548.48,0.00,324.060246,1118.784715,59667,729221,0.000556,0.000020,5168234,4396517,0,0,10650,0,1,1 +1773534784.665641,16.69,4,3992.50,65.40,1119.79,2560.51,0.00,4.060853,0.301075,60425,729813,22.140410,0.104813,5175445,4401895,0,0,10653,0,1,1 +1773534789.665257,17.84,4,3992.50,65.20,1127.25,2552.71,0.00,3518706910726.432129,0.327564,59667,730311,26.171194,0.123221,5184223,4408594,0,0,10655,0,1,1 +1773534794.665290,2.36,4,3992.50,65.27,1124.41,2555.55,0.00,0.000000,0.024609,59667,730322,0.005523,0.011580,5184375,4408821,0,0,10658,0,1,1 +1773534799.662600,2.81,4,3992.50,65.25,1125.41,2554.53,0.00,3520331391861.512207,3520331391067.122559,11,0,0.010507,0.013061,5184589,4409060,0,0,10660,0,1,1 +1773534804.665937,2.41,4,3992.50,65.25,1125.22,2554.75,0.00,0.176835,0.000000,199,0,0.003987,0.007237,5184696,4409209,0,0,10663,0,1,1 +1773534809.661275,2.11,4,3992.50,65.18,1127.96,2552.00,0.00,3521720879744.245117,0.000000,11,0,0.003423,0.005861,5184782,4409325,0,0,10665,0,1,1 +1773534814.661462,1.96,4,3992.50,65.23,1126.05,2553.91,0.00,0.000000,0.000000,11,0,0.003878,0.007776,5184882,4409470,0,0,10668,0,1,1 +1773534819.666159,2.36,4,3992.50,65.32,1118.05,2557.52,0.00,1.490494,0.022050,221,21,0.003874,0.007116,5184982,4409610,0,0,10670,0,1,1 +1773534824.665357,2.21,4,3992.50,65.33,1117.86,2557.75,0.00,3519001839764.952637,3519001839766.372559,70,0,0.003879,0.007133,5185082,4409751,0,0,10673,0,1,1 +1773534829.661955,2.06,4,3992.50,65.36,1116.65,2558.96,0.00,3520832443869.711914,0.000000,11,0,0.003431,0.005867,5185169,4409868,0,0,10675,0,1,1 +1773534834.662924,1.96,4,3992.50,65.36,1116.66,2558.95,0.00,1.491606,0.022066,221,21,0.003877,0.007131,5185269,4410009,0,0,10678,0,1,1 +1773534839.665963,2.40,4,3992.50,65.36,1116.68,2558.95,0.00,327.943799,1119.785368,60425,731110,0.005280,0.008786,5185382,4410168,0,0,10680,0,1,1 +1773534844.661279,1.91,4,3992.50,65.36,1116.69,2558.93,0.00,3521736708885.001953,3521736708093.229980,199,0,0.003894,0.007139,5185483,4410309,0,0,10683,0,1,1 +1773534849.665222,3.11,4,3992.50,65.20,1125.76,2552.86,0.00,3515664262446.445312,0.000000,70,0,0.006742,0.008865,5185627,4410475,0,0,10685,0,1,1 +1773534854.661272,1.96,4,3992.50,65.23,1124.56,2554.05,0.00,1.443035,0.022088,221,21,0.003894,0.007138,5185728,4410616,0,0,10688,0,1,1 +1773534859.665652,4.37,4,3992.50,65.28,1122.72,2555.90,0.00,327.855998,1119.656316,60425,731306,2.016443,0.016825,5186473,4411200,0,0,10690,0,1,1 +1773534864.662262,23.58,4,3992.50,65.32,1121.04,2557.48,0.00,3520824170312.278320,3520824169520.717773,11,0,32.217757,0.142776,5196853,4418867,0,0,10693,0,1,1 +1773534869.665595,6.43,4,3992.50,65.65,1108.06,2570.39,0.00,0.176835,0.000000,199,0,6.046965,0.036743,5199122,4420601,0,0,10695,0,1,1 +1773534874.663471,2.21,4,3992.50,65.08,1130.29,2548.21,0.00,329.598096,1121.705330,60425,732344,0.003434,0.005868,5199209,4420718,0,0,10698,0,1,1 +1773534879.666099,2.26,4,3992.50,65.30,1129.95,2556.54,0.00,3516589151633.017578,3516589150841.839355,11,0,0.003871,0.007770,5199309,4420863,0,0,10700,0,1,1 +1773534884.665923,2.11,4,3992.50,65.28,1130.52,2555.98,0.00,0.000000,0.000000,11,0,0.003940,0.007183,5199413,4421008,0,0,10703,0,1,1 +1773534889.664389,1.86,4,3992.50,65.31,1129.55,2556.95,0.00,329.736254,1122.157082,60425,732568,0.003879,0.007125,5199513,4421148,0,0,10705,0,1,1 +1773534894.665225,2.26,4,3992.50,65.31,1129.30,2557.19,0.00,3517849270407.010742,3517849269612.957031,238,2,0.003457,0.005926,5199602,4421269,0,0,10708,0,1,1 +1773534899.665543,2.06,4,3992.50,65.32,1129.08,2557.43,0.00,3518212967837.794434,3518212967839.626465,199,0,0.003878,0.007122,5199702,4421409,0,0,10710,0,1,1 +1773534904.666129,2.11,4,3992.50,65.32,1129.09,2557.41,0.00,329.419505,1121.910139,60425,732797,0.003878,0.007132,5199802,4421550,0,0,10713,0,1,1 +1773534909.661369,2.46,4,3992.50,65.32,1129.14,2557.37,0.00,3521789736849.513672,3521789736056.352051,11,0,0.004552,0.008039,5199905,4421691,0,0,10715,0,1,1 +1773534914.662091,2.41,4,3992.50,65.13,1136.54,2549.93,0.00,2.008499,0.000195,238,2,0.004341,0.006521,5199993,4421810,0,0,10718,0,1,1 +1773534919.661501,1.91,4,3992.50,65.13,1136.30,2550.16,0.00,3518852562977.447266,3518852562979.405762,70,0,0.003878,0.007123,5200093,4421950,0,0,10720,0,1,1 +1773534924.661281,2.21,4,3992.50,65.06,1139.32,2547.14,0.00,325.538539,1122.216356,59667,732898,0.003866,0.007133,5200192,4422091,0,0,10723,0,1,1 +1773534929.665402,8.23,4,3992.50,65.34,1128.33,2558.13,0.00,3515539819463.669922,3515539818667.732910,11,0,6.038459,0.033283,5202213,4423599,0,0,10725,0,1,1 +1773534934.665370,25.11,4,3992.50,66.08,1099.03,2587.30,0.00,0.000000,0.000000,11,0,34.206203,0.151479,5213128,4431818,0,0,10728,0,1,1 +1773534939.665703,3.66,4,3992.50,65.88,1109.27,2579.40,0.00,0.049997,0.000000,70,0,0.014044,0.011643,5213426,4432088,0,0,10730,0,1,1 +1773534944.664754,1.86,4,3992.50,65.46,1125.64,2562.81,0.00,329.647628,1123.420949,60425,734157,0.003891,0.007765,5213527,4432232,0,0,10733,0,1,1 +1773534949.665431,2.11,4,3992.50,65.55,1122.20,2566.25,0.00,3517960725399.034668,3517960724605.569824,11,0,0.003877,0.007121,5213627,4432372,0,0,10735,0,1,1 +1773534954.665768,1.86,4,3992.50,65.51,1123.59,2564.87,0.00,0.176941,0.000000,199,0,0.003865,0.007132,5213726,4432513,0,0,10738,0,1,1 +1773534959.662331,2.11,4,3992.50,65.56,1121.64,2566.82,0.00,329.684697,1124.188962,60425,734202,0.003431,0.005867,5213813,4432630,0,0,10740,0,1,1 +1773534964.665395,2.11,4,3992.50,65.53,1122.95,2565.51,0.00,3516282858703.012695,3516282857907.709961,238,2,0.003863,0.007128,5213912,4432771,0,0,10743,0,1,1 +1773534969.661202,2.41,4,3992.50,65.76,1109.86,2574.79,0.00,327.901218,1124.451850,60425,734285,0.003881,0.007128,5214012,4432911,0,0,10745,0,1,1 +1773534974.665545,1.96,4,3992.50,65.70,1112.14,2572.43,0.00,3515383487723.953125,3515383486930.718262,70,0,0.003875,0.007114,5214112,4433051,0,0,10748,0,1,1 +1773534979.661188,2.31,4,3992.50,65.73,1110.95,2573.63,0.00,0.000000,0.000000,70,0,0.003423,0.005873,5214198,4433168,0,0,10750,0,1,1 +1773534984.661649,2.16,4,3992.50,65.22,1131.09,2553.50,0.00,325.494205,1123.665919,59667,734566,0.003878,0.007132,5214298,4433309,0,0,10753,0,1,1 +1773534989.661193,1.96,4,3992.50,65.24,1130.23,2554.35,0.00,4.061210,0.057818,60425,734633,0.003878,0.007123,5214398,4433449,0,0,10755,0,1,1 +1773534994.665657,2.01,4,3992.50,65.01,1139.48,2545.09,0.00,3515298754044.362793,3515298753250.828613,70,0,0.003870,0.007109,5214498,4433589,0,0,10758,0,1,1 +1773534999.665561,13.52,4,3992.50,65.55,1122.01,2566.38,0.00,0.126956,0.000000,199,0,10.078525,0.054785,5217981,4436180,0,0,10760,0,1,1 +1773535004.665591,18.93,4,3992.50,66.54,1083.04,2605.27,0.00,3518416315119.627441,0.000000,70,0,30.169278,0.128626,5227477,4443273,0,0,10763,0,1,1 +1773535009.666096,3.02,4,3992.50,65.97,1105.47,2582.82,0.00,1.958591,0.000195,238,2,0.016287,0.011588,5227791,4443539,0,0,10765,0,1,1 +1773535014.665695,2.31,4,3992.50,65.95,1106.20,2582.10,0.00,3518718887958.299316,3518718887960.131348,199,0,0.003878,0.007133,5227891,4443680,0,0,10768,0,1,1 +1773535019.664905,2.36,4,3992.50,65.31,1131.42,2556.90,0.00,325.448708,1125.157927,59667,735985,0.003408,0.005856,5227976,4443796,0,0,10770,0,1,1 +1773535024.663987,2.11,4,3992.50,65.31,1131.45,2556.88,0.00,0.000000,0.005860,59667,735993,0.003887,0.007142,5228077,4443938,0,0,10773,0,1,1 +1773535029.661258,2.41,4,3992.50,65.42,1121.38,2561.22,0.00,3520358867556.730957,3520358866756.882324,11,0,0.003893,0.007126,5228178,4444078,0,0,10775,0,1,1 +1773535034.663765,1.86,4,3992.50,65.43,1120.46,2561.70,0.00,0.000000,0.000000,11,0,0.003876,0.007129,5228278,4444219,0,0,10778,0,1,1 +1773535039.661275,2.11,4,3992.50,65.43,1120.48,2561.67,0.00,0.050025,0.000000,70,0,0.003422,0.005858,5228364,4444335,0,0,10780,0,1,1 +1773535044.665294,2.16,4,3992.50,65.21,1128.88,2553.29,0.00,0.126851,0.000000,199,0,0.003875,0.007127,5228464,4444476,0,0,10783,0,1,1 +1773535049.665419,2.16,4,3992.50,65.06,1135.10,2547.06,0.00,1.831790,0.000195,238,2,0.003878,0.007122,5228564,4444616,0,0,10785,0,1,1 +1773535054.665161,1.96,4,3992.50,65.07,1134.38,2547.79,0.00,323.582114,1125.539869,59667,736358,0.003886,0.007141,5228665,4444758,0,0,10788,0,1,1 +1773535059.665502,2.46,4,3992.50,65.46,1119.16,2563.00,0.00,4.060563,0.101165,60425,736435,0.003420,0.005855,5228751,4444874,0,0,10790,0,1,1 +1773535064.664566,2.16,4,3992.50,65.47,1118.95,2563.22,0.00,3519096262790.252441,3519096261994.105469,70,0,0.003866,0.007134,5228850,4445015,0,0,10793,0,1,1 +1773535069.661284,2.06,4,3992.50,65.27,1126.62,2555.55,0.00,325.737983,1126.367202,59667,736496,0.003881,0.007127,5228950,4445155,0,0,10795,0,1,1 +1773535074.665827,20.32,4,3992.50,66.09,1094.55,2587.55,0.00,4.057154,0.116788,60425,736908,20.290396,0.101322,5235741,4450313,0,0,10798,0,1,1 +1773535079.664900,9.61,4,3992.50,65.87,1103.09,2578.99,0.00,3519089311992.380371,3519089311194.652832,221,21,13.912343,0.059886,5240108,4453579,0,0,10800,0,1,1 +1773535084.661280,7.09,4,3992.50,66.07,1095.46,2586.59,0.00,3520986422769.494629,3520986422770.788574,199,0,6.045477,0.028964,5242094,4455006,0,0,10803,0,1,1 +1773535089.661278,2.71,4,3992.50,66.00,1101.24,2583.86,0.00,3518438857623.471680,0.000000,11,0,0.003873,0.007118,5242194,4455146,0,0,10805,0,1,1 +1773535094.665569,2.06,4,3992.50,66.00,1101.26,2583.85,0.00,0.000000,0.000000,11,0,0.003875,0.007126,5242294,4455287,0,0,10808,0,1,1 +1773535099.666160,2.01,4,3992.50,66.00,1101.04,2584.07,0.00,329.596057,1126.869196,60425,738003,0.003878,0.007122,5242394,4455427,0,0,10810,0,1,1 +1773535104.665819,2.41,4,3992.50,66.00,1101.05,2584.06,0.00,3518677582086.436035,3518677581289.014648,11,0,0.003499,0.006261,5242484,4455550,0,0,10813,0,1,1 +1773535109.665824,2.31,4,3992.50,66.00,1101.08,2584.02,0.00,0.050000,0.000000,70,0,0.003799,0.006727,5242580,4455684,0,0,10815,0,1,1 +1773535114.665387,1.96,4,3992.50,65.99,1101.52,2583.58,0.00,1.958960,0.000195,238,2,0.003878,0.007133,5242680,4455825,0,0,10818,0,1,1 +1773535119.663104,2.36,4,3992.50,65.99,1103.08,2583.56,0.00,3520044765453.142090,3520044765454.974609,199,0,0.003888,0.007121,5242781,4455965,0,0,10820,0,1,1 +1773535124.665603,2.01,4,3992.50,65.96,1103.89,2582.66,0.00,329.293535,1126.733767,60425,738228,0.003419,0.005850,5242867,4456081,0,0,10823,0,1,1 +1773535129.665279,4.37,4,3992.50,65.18,1134.81,2551.75,0.00,3518665212429.643066,3518665211631.752441,199,0,0.003878,0.007123,5242967,4456221,0,0,10825,0,1,1 +1773535134.665492,2.11,4,3992.50,65.17,1134.83,2551.74,0.00,329.444031,1127.290022,60425,738279,0.003878,0.007132,5243067,4456362,0,0,10828,0,1,1 +1773535139.662210,2.01,4,3992.50,65.19,1134.37,2552.20,0.00,3520748224492.948242,0.010847,59667,738297,0.004381,0.008698,5243180,4456527,0,0,10830,0,1,1 +1773535144.665632,1.96,4,3992.50,65.19,1134.36,2552.22,0.00,3516030917163.424316,3516030916362.197266,11,0,0.003418,0.006022,5243266,4456645,0,0,10833,0,1,1 +1773535149.662659,24.13,4,3992.50,66.86,1065.14,2617.91,0.00,0.000000,0.000000,11,0,28.195636,0.134701,5252385,4463696,0,0,10835,0,1,1 +1773535154.661287,9.72,4,3992.50,65.74,1109.23,2573.75,0.00,325.663556,1128.200998,59667,739201,12.078960,0.054103,5256269,4466600,0,0,10838,0,1,1 +1773535159.661278,6.23,4,3992.50,64.98,1139.07,2543.95,0.00,3518443478423.954590,3518443477621.585938,70,0,0.010482,0.009976,5256491,4466818,0,0,10840,0,1,1 +1773535164.665324,1.96,4,3992.50,64.97,1139.14,2543.88,0.00,3515592490579.481445,0.000000,11,0,0.003417,0.005848,5256577,4466934,0,0,10843,0,1,1 +1773535169.661179,1.96,4,3992.50,65.01,1137.72,2545.31,0.00,325.844394,1129.374708,59667,739640,0.003881,0.007128,5256677,4467074,0,0,10845,0,1,1 +1773535174.664668,2.26,4,3992.50,64.98,1139.06,2543.96,0.00,3515983241415.066406,3515983240612.712402,70,0,0.003875,0.007127,5256777,4467215,0,0,10848,0,1,1 +1773535179.661198,2.36,4,3992.50,65.28,1126.73,2555.72,0.00,0.127041,0.000000,199,0,0.003889,0.007135,5256878,4467356,0,0,10850,0,1,1 +1773535184.665685,2.10,4,3992.50,65.12,1133.02,2549.51,0.00,1.830193,0.000195,238,2,0.003467,0.005910,5256967,4467477,0,0,10853,0,1,1 +1773535189.666099,1.96,4,3992.50,65.14,1132.29,2550.23,0.00,3518145908510.854492,3518145908512.862793,11,0,0.003865,0.007122,5257066,4467617,0,0,10855,0,1,1 +1773535194.664674,2.21,4,3992.50,65.11,1133.35,2549.17,0.00,0.177004,0.000000,199,0,0.003929,0.007184,5257170,4467761,0,0,10858,0,1,1 +1773535199.666078,2.06,4,3992.50,65.12,1132.89,2549.62,0.00,3517449409896.700684,0.000000,70,0,0.003877,0.007120,5257270,4467901,0,0,10860,0,1,1 +1773535204.665351,2.06,4,3992.50,65.12,1132.92,2549.61,0.00,3518949292014.442871,0.000000,11,0,0.003433,0.006510,5257357,4468022,0,0,10863,0,1,1 +1773535209.665619,2.51,4,3992.50,65.31,1129.38,2557.20,0.00,0.176944,0.000000,199,0,0.004535,0.008044,5257459,4468164,0,0,10865,0,1,1 +1773535214.665390,2.06,4,3992.50,65.33,1128.76,2557.91,0.00,1.831920,0.000195,238,2,0.004800,0.007802,5257561,4468308,0,0,10868,0,1,1 +1773535219.665574,4.07,4,3992.50,65.11,1137.52,2549.11,0.00,0.000000,0.000000,238,2,0.010973,0.011290,5257788,4468538,0,0,10870,0,1,1 +1773535224.661487,22.49,4,3992.50,66.30,1090.82,2595.76,0.00,3521315217838.935059,3521315217840.945312,11,0,28.381413,0.133423,5267193,4475570,0,0,10873,0,1,1 +1773535229.666109,9.49,4,3992.50,65.77,1111.50,2575.06,0.00,0.000000,0.000000,11,0,11.885963,0.051953,5271001,4478395,0,0,10875,0,1,1 +1773535234.663104,1.91,4,3992.50,65.40,1125.81,2560.74,0.00,2.009997,0.000195,238,2,0.002345,0.004351,5271061,4478480,0,0,10878,0,1,1 +1773535239.666049,2.61,4,3992.50,65.12,1129.78,2549.53,0.00,3516365552665.111816,3516365552666.942871,199,0,0.003700,0.006972,5271158,4478618,0,0,10880,0,1,1 +1773535244.664554,2.16,4,3992.50,65.08,1131.10,2548.11,0.00,325.494605,1130.675239,59667,741504,0.003754,0.007109,5271257,4478757,0,0,10883,0,1,1 +1773535249.664863,1.71,4,3992.50,65.07,1131.76,2547.45,0.00,3518219837455.900391,3518219836651.187012,11,0,0.003545,0.005880,5271344,4478875,0,0,10885,0,1,1 +1773535254.665110,2.06,4,3992.50,65.07,1131.53,2547.67,0.00,0.049998,0.000000,70,0,0.003878,0.007119,5271444,4479015,0,0,10888,0,1,1 +1773535259.661195,2.01,4,3992.50,65.06,1132.15,2547.05,0.00,0.127053,0.000000,199,0,0.003881,0.007128,5271544,4479155,0,0,10890,0,1,1 +1773535264.665429,1.81,4,3992.50,65.05,1132.16,2547.04,0.00,0.000000,0.000000,199,0,0.003417,0.005860,5271630,4479272,0,0,10893,0,1,1 +1773535269.665391,2.26,4,3992.50,65.14,1129.06,2550.45,0.00,1.831850,0.000195,238,2,0.003853,0.007766,5271728,4479416,0,0,10895,0,1,1 +1773535274.665913,1.96,4,3992.50,65.15,1128.85,2550.67,0.00,3518070310735.712891,3518070310737.721680,11,0,0.003878,0.007132,5271828,4479557,0,0,10898,0,1,1 +1773535279.665608,1.86,4,3992.50,65.15,1128.88,2550.63,0.00,325.594061,1130.942164,59667,741995,0.003886,0.007131,5271929,4479698,0,0,10900,0,1,1 +1773535284.665885,2.21,4,3992.50,65.15,1128.90,2550.62,0.00,0.000000,0.019823,59667,742010,0.003420,0.005852,5272015,4479814,0,0,10903,0,1,1 +1773535289.661165,8.25,4,3992.50,66.01,1095.02,2584.50,0.00,3521761504191.416992,3521761503383.865723,221,21,6.051094,0.035357,5274102,4481280,0,0,10905,0,1,1 +1773535294.666117,23.20,4,3992.50,66.40,1079.59,2599.83,0.00,327.818503,1130.080413,60425,742792,30.296252,0.138309,5284075,4488697,0,0,10908,0,1,1 +1773535299.661191,3.82,4,3992.50,65.80,1103.70,2576.23,0.00,0.000000,0.418772,60425,743098,3.898661,0.022150,5285424,4489730,0,0,10910,0,1,1 +1773535304.661422,2.26,4,3992.50,65.57,1112.68,2567.25,0.00,3518274135140.091309,3518274134338.123535,11,0,0.003878,0.007119,5285524,4489870,0,0,10913,0,1,1 +1773535309.662004,1.76,4,3992.50,65.57,1112.89,2567.05,0.00,329.596772,1132.154425,60425,743511,0.003890,0.007122,5285625,4490010,0,0,10915,0,1,1 +1773535314.661964,1.81,4,3992.50,65.57,1112.91,2567.01,0.00,3518464771503.068848,3518464770700.234863,199,0,0.003420,0.005865,5285711,4490127,0,0,10918,0,1,1 +1773535319.661199,1.91,4,3992.50,65.56,1112.92,2567.01,0.00,3518975721256.672363,0.000000,70,0,0.003879,0.007124,5285811,4490267,0,0,10920,0,1,1 +1773535324.665437,1.96,4,3992.50,65.56,1112.95,2566.97,0.00,3515458050832.170898,0.000000,11,0,0.003875,0.007126,5285911,4490408,0,0,10923,0,1,1 +1773535329.665503,2.11,4,3992.50,65.57,1112.73,2567.19,0.00,0.000000,0.000000,11,0,0.003191,0.005221,5285990,4490512,0,0,10925,0,1,1 +1773535334.665749,2.61,4,3992.50,65.62,1117.21,2569.12,0.00,325.558236,1132.413937,59667,743689,0.003657,0.006667,5286084,4490643,0,0,10928,0,1,1 +1773535339.665231,1.91,4,3992.50,65.62,1116.97,2569.35,0.00,3518801410837.540039,3518801410030.511230,70,0,0.003891,0.007581,5286185,4490784,0,0,10930,0,1,1 +1773535344.665139,1.81,4,3992.50,65.62,1117.00,2569.34,0.00,325.530207,1132.555793,59667,743745,0.003420,0.005878,5286271,4490902,0,0,10933,0,1,1 +1773535349.665646,2.21,4,3992.50,65.64,1116.28,2570.05,0.00,3518080568065.350586,3518080567258.471680,11,0,0.003865,0.007122,5286370,4491042,0,0,10935,0,1,1 +1773535354.666035,1.86,4,3992.50,65.64,1116.30,2570.04,0.00,1.491779,0.022069,221,21,0.003878,0.007132,5286470,4491183,0,0,10938,0,1,1 +1773535359.665946,12.30,4,3992.50,65.49,1116.22,2564.21,0.00,3518499510952.548340,3518499510954.018555,11,0,8.118926,0.053287,5289471,4493498,0,0,10940,0,1,1 +1773535364.665471,22.16,4,3992.50,65.76,1105.52,2574.80,0.00,2.008980,0.000195,238,2,32.146911,0.139800,5299820,4501300,0,0,10943,0,1,1 +1773535369.665319,2.06,4,3992.50,65.53,1114.87,2565.46,0.00,327.636261,1133.404389,60425,744988,0.003420,0.005855,5299906,4501416,0,0,10945,0,1,1 +1773535374.661202,1.96,4,3992.50,65.43,1118.79,2561.54,0.00,3521336515763.481934,3521336514959.034668,70,0,0.003869,0.007126,5300005,4501556,0,0,10948,0,1,1 +1773535379.661273,1.76,4,3992.50,65.43,1118.78,2561.54,0.00,1.441874,0.022070,221,21,0.003272,0.006885,5300094,4501689,0,0,10950,0,1,1 +1773535384.665771,1.91,4,3992.50,65.23,1126.39,2553.92,0.00,3515275014417.233887,3515275014418.702637,11,0,0.003875,0.007126,5300194,4501830,0,0,10953,0,1,1 +1773535389.662673,2.46,4,3992.50,65.66,1109.63,2570.64,0.00,327.079147,1134.648184,59753,745266,0.003430,0.005867,5300281,4501947,0,0,10955,0,1,1 +1773535394.663070,1.96,4,3992.50,65.66,1109.66,2570.54,0.00,0.000000,0.219123,59753,745506,0.003853,0.007132,5300379,4502088,0,0,10958,0,1,1 +1773535399.665501,1.81,4,3992.50,65.65,1109.72,2570.52,0.00,3516727083256.927246,3516727082449.854980,199,0,0.003876,0.007280,5300479,4502229,0,0,10960,0,1,1 +1773535404.665676,2.06,4,3992.50,65.66,1109.53,2570.71,0.00,3518314050299.692383,0.000000,11,0,0.003878,0.007615,5300579,4502373,0,0,10963,0,1,1 +1773535409.665243,1.86,4,3992.50,65.66,1109.54,2570.70,0.00,330.966048,1134.378162,60511,745618,0.003408,0.005856,5300664,4502489,0,0,10965,0,1,1 +1773535414.661219,1.91,4,3992.50,65.66,1109.32,2570.90,0.00,3521271140949.337891,3521271140143.337891,238,2,0.003881,0.007125,5300764,4502629,0,0,10968,0,1,1 +1773535419.665927,2.26,4,3992.50,65.66,1115.28,2570.89,0.00,3515127685934.961914,3515127685936.791992,199,0,0.003874,0.007116,5300864,4502769,0,0,10970,0,1,1 +1773535424.664575,1.91,4,3992.50,65.66,1112.92,2570.89,0.00,1.315297,0.022076,221,21,0.003892,0.007134,5300965,4502910,0,0,10973,0,1,1 +1773535429.663910,16.21,4,3992.50,66.20,1091.72,2591.95,0.00,0.516963,3518905307742.834961,238,2,18.124551,0.092173,5307017,4507581,0,0,10975,0,1,1 +1773535434.665496,11.52,4,3992.50,65.08,1135.52,2548.02,0.00,324.813186,1134.650462,59761,746712,12.071891,0.055103,5310929,4510573,0,0,10978,0,1,1 +1773535439.665540,9.31,4,3992.50,65.71,1110.64,2572.88,0.00,0.000000,0.071581,59761,746892,10.060526,0.045603,5314096,4512820,0,0,10980,0,1,1 +1773535444.661209,2.16,4,3992.50,65.72,1110.44,2573.10,0.00,3521487176348.991211,3521487175538.123535,238,2,0.003881,0.007126,5314196,4512960,0,0,10983,0,1,1 +1773535449.665722,2.56,4,3992.50,65.82,1115.86,2576.96,0.00,3515264664946.246094,0.021855,221,21,0.007211,0.010131,5314355,4513150,0,0,10985,0,1,1 +1773535454.666021,1.96,4,3992.50,65.82,1115.90,2576.92,0.00,0.516864,3518226621206.893555,238,2,0.003878,0.007132,5314455,4513291,0,0,10988,0,1,1 +1773535459.664554,1.86,4,3992.50,65.84,1115.17,2577.65,0.00,329.073579,1136.160323,60519,747337,0.003434,0.005857,5314542,4513407,0,0,10990,0,1,1 +1773535464.665551,1.96,4,3992.50,65.70,1120.36,2572.46,0.00,3517736045664.623047,3517736044859.892090,70,0,0.003877,0.007131,5314642,4513548,0,0,10993,0,1,1 +1773535469.666004,1.76,4,3992.50,65.74,1118.88,2573.93,0.00,326.845370,1135.778482,59761,747369,0.003878,0.007766,5314742,4513692,0,0,10995,0,1,1 +1773535474.662565,2.01,4,3992.50,65.74,1118.91,2573.91,0.00,3520858593144.810547,3520858592335.247559,70,0,0.003868,0.007112,5314841,4513831,0,0,10998,0,1,1 +1773535479.665841,2.36,4,3992.50,65.75,1115.68,2574.13,0.00,0.000000,0.000000,70,0,0.003418,0.005864,5314927,4513948,0,0,11000,0,1,1 +1773535484.665871,1.91,4,3992.50,65.68,1118.48,2571.34,0.00,330.933855,1136.049241,60519,747527,0.003940,0.007170,5315031,4514092,0,0,11003,0,1,1 +1773535489.665735,1.91,4,3992.50,65.71,1117.03,2572.78,0.00,3518533354914.182129,3518533354918.226562,59761,747513,0.003878,0.007123,5315131,4514232,0,0,11005,0,1,1 +1773535494.665930,1.96,4,3992.50,65.71,1117.03,2572.78,0.00,3518299825984.719727,3518299825175.586914,70,0,0.003936,0.007177,5315236,4514376,0,0,11008,0,1,1 +1773535499.665150,2.21,4,3992.50,65.71,1117.05,2572.77,0.00,326.925966,1136.227913,59761,747531,0.003421,0.005869,5315322,4514493,0,0,11010,0,1,1 +1773535504.664942,22.54,4,3992.50,65.48,1126.20,2563.51,0.00,0.000000,0.180672,59761,748030,28.178709,0.129079,5324590,4521289,0,0,11013,0,1,1 +1773535509.666156,9.14,4,3992.50,65.90,1109.39,2580.31,0.00,3517582993778.940918,3517582992968.361816,221,21,8.057406,0.041884,5327449,4523434,0,0,11015,0,1,1 +1773535514.661805,6.39,4,3992.50,65.91,1112.01,2580.45,0.00,0.517345,3521501786657.111816,238,2,4.032721,0.024355,5328799,4524483,0,0,11018,0,1,1 +1773535519.661273,1.96,4,3992.50,65.91,1112.07,2580.41,0.00,3518811237402.910156,3518811237404.869141,70,0,0.004800,0.007793,5328901,4524626,0,0,11020,0,1,1 +1773535524.665797,2.36,4,3992.50,65.87,1113.55,2578.93,0.00,0.126838,0.000000,199,0,0.003875,0.007113,5329001,4524766,0,0,11023,0,1,1 +1773535529.661201,2.11,4,3992.50,65.86,1113.82,2578.66,0.00,331.113200,1138.470250,60519,749012,0.003882,0.007129,5329101,4524906,0,0,11025,0,1,1 +1773535534.661244,1.96,4,3992.50,65.87,1113.59,2578.89,0.00,3518407136024.750000,3518407135216.310059,238,2,0.003420,0.006496,5329187,4525026,0,0,11028,0,1,1 +1773535539.661200,2.46,4,3992.50,65.80,1114.73,2576.15,0.00,328.979984,1137.623619,60519,749096,0.003865,0.007110,5329286,4525165,0,0,11030,0,1,1 +1773535544.661254,2.41,4,3992.50,65.51,1126.18,2564.73,0.00,0.000000,0.023047,60519,749109,0.003878,0.007120,5329386,4525305,0,0,11033,0,1,1 +1773535549.665304,2.01,4,3992.50,65.51,1126.18,2564.73,0.00,3515589274680.338379,3515589273874.340332,11,0,0.003883,0.007125,5329487,4525446,0,0,11035,0,1,1 +1773535554.661201,2.01,4,3992.50,65.31,1133.85,2557.07,0.00,0.000000,0.000000,11,0,0.003423,0.005870,5329573,4525563,0,0,11038,0,1,1 +1773535559.666015,2.06,4,3992.50,65.34,1132.64,2558.28,0.00,0.049952,0.000000,70,0,0.003874,0.007116,5329673,4525703,0,0,11040,0,1,1 +1773535564.665611,2.26,4,3992.50,65.36,1132.05,2558.88,0.00,1.958947,0.000195,238,2,0.003878,0.007120,5329773,4525843,0,0,11043,0,1,1 +1773535569.666044,2.41,4,3992.50,65.65,1126.00,2570.18,0.00,328.948572,1137.733043,60519,749294,0.003878,0.007122,5329873,4525983,0,0,11045,0,1,1 +1773535574.665188,3.62,4,3992.50,65.62,1124.75,2569.26,0.00,3519039773030.750977,3519039772221.757812,238,2,0.010396,0.009396,5330079,4526178,0,0,11048,0,1,1 +1773535579.664574,23.64,4,3992.50,65.63,1124.30,2569.59,0.00,3518869342223.391602,3518869342225.224121,199,0,30.196090,0.138379,5339957,4533585,0,0,11050,0,1,1 +1773535584.661199,7.09,4,3992.50,65.52,1128.49,2565.36,0.00,331.032342,1139.538065,60519,750501,8.051865,0.035711,5342427,4535489,0,0,11053,0,1,1 +1773535589.661169,3.97,4,3992.50,65.57,1126.66,2567.20,0.00,3518457919604.920898,3518457918795.124512,238,2,2.017964,0.014660,5343176,4536068,0,0,11055,0,1,1 +1773535594.662893,2.11,4,3992.50,65.61,1124.97,2568.90,0.00,3517224392531.886719,3517224392533.717773,199,0,0.003877,0.007130,5343276,4536209,0,0,11058,0,1,1 +1773535599.665157,2.41,4,3992.50,65.71,1121.07,2572.79,0.00,326.600165,1138.477962,59761,750695,0.003655,0.007125,5343370,4536341,0,0,11060,0,1,1 +1773535604.661215,1.91,4,3992.50,65.71,1118.54,2572.73,0.00,3521213677089.924316,3521213676277.038086,199,0,0.003652,0.006516,5343463,4536471,0,0,11063,0,1,1 +1773535609.662799,2.36,4,3992.50,65.71,1118.56,2572.71,0.00,3517323058113.861816,0.000000,70,0,0.003877,0.007120,5343563,4536611,0,0,11065,0,1,1 +1773535614.665845,1.81,4,3992.50,65.72,1118.08,2573.18,0.00,3516294786730.311523,0.000000,11,0,0.003876,0.007128,5343663,4536752,0,0,11068,0,1,1 +1773535619.661216,2.06,4,3992.50,65.72,1118.09,2573.18,0.00,2.010651,0.000195,238,2,0.003411,0.005848,5343748,4536867,0,0,11070,0,1,1 +1773535624.663136,1.96,4,3992.50,65.72,1118.11,2573.16,0.00,3517086425414.146973,3517086425415.978516,199,0,0.003885,0.007138,5343849,4537009,0,0,11073,0,1,1 +1773535629.661305,2.61,4,3992.50,65.60,1107.68,2568.44,0.00,3519726192450.043457,0.000000,11,0,0.003867,0.007125,5343948,4537149,0,0,11075,0,1,1 +1773535634.661232,2.21,4,3992.50,65.27,1120.51,2555.62,0.00,326.929795,1139.525210,59761,751046,0.003878,0.007132,5344048,4537290,0,0,11078,0,1,1 +1773535639.661262,2.11,4,3992.50,65.26,1121.16,2554.98,0.00,3518415786329.968262,3518415785517.339844,70,0,0.003420,0.005855,5344134,4537406,0,0,11080,0,1,1 +1773535644.661209,1.96,4,3992.50,65.29,1119.94,2556.19,0.00,1.441910,0.022071,221,21,0.003891,0.007132,5344235,4537547,0,0,11083,0,1,1 +1773535649.661182,8.29,4,3992.50,65.21,1122.91,2553.19,0.00,3518456534356.119141,3518456534357.539062,70,0,4.039204,0.030683,5345767,4538747,0,0,11085,0,1,1 +1773535654.663059,23.16,4,3992.50,65.59,1108.09,2567.97,0.00,1.441354,0.022062,221,21,32.174064,0.136816,5355951,4546331,0,0,11088,0,1,1 +1773535659.663884,6.39,4,3992.50,65.90,1093.20,2580.23,0.00,3517856353104.966309,3517856353106.436035,11,0,4.036644,0.023970,5357454,4547422,0,0,11090,0,1,1 +1773535664.661588,2.26,4,3992.50,65.56,1105.93,2566.95,0.00,0.000000,0.000000,11,0,0.003422,0.006512,5357540,4547543,0,0,11093,0,1,1 +1773535669.662108,2.06,4,3992.50,65.51,1107.95,2564.93,0.00,0.176935,0.000000,199,0,0.003878,0.007122,5357640,4547683,0,0,11095,0,1,1 +1773535674.665243,2.36,4,3992.50,65.31,1115.86,2557.02,0.00,1.830688,0.000195,238,2,0.003708,0.007003,5357738,4547824,0,0,11098,0,1,1 +1773535679.664308,2.06,4,3992.50,65.26,1117.96,2554.91,0.00,324.976993,1141.035093,59761,752364,0.003866,0.007124,5357837,4547964,0,0,11100,0,1,1 +1773535684.665553,2.21,4,3992.50,64.81,1135.40,2537.48,0.00,0.000000,0.008885,59761,752375,0.003432,0.005864,5357924,4548081,0,0,11103,0,1,1 +1773535689.661276,2.46,4,3992.50,65.02,1138.18,2545.77,0.00,3521449046878.595703,3521449046063.993164,11,0,0.003869,0.007129,5358023,4548221,0,0,11105,0,1,1 +1773535694.665308,2.31,4,3992.50,65.05,1137.19,2546.75,0.00,330.719187,1140.246850,60519,752706,0.003870,0.007135,5358123,4548363,0,0,11108,0,1,1 +1773535699.666144,2.11,4,3992.50,65.05,1137.20,2546.74,0.00,3517848935560.571777,3517848934750.350098,199,0,0.003877,0.007121,5358223,4548503,0,0,11110,0,1,1 +1773535704.665738,2.11,4,3992.50,65.05,1137.21,2546.73,0.00,1.831985,0.000195,238,2,0.003408,0.005866,5358308,4548620,0,0,11113,0,1,1 +1773535709.665670,2.31,4,3992.50,64.85,1144.88,2539.05,0.00,324.920600,1141.248326,59761,752775,0.003878,0.007110,5358408,4548759,0,0,11115,0,1,1 +1773535714.663843,1.86,4,3992.50,64.88,1143.93,2540.00,0.00,0.000000,0.008890,59761,752786,0.003879,0.007135,5358508,4548900,0,0,11118,0,1,1 +1773535719.665359,2.66,4,3992.50,65.04,1135.51,2546.30,0.00,3517370183360.303711,3517370182544.226074,238,2,0.003872,0.007128,5358608,4549041,0,0,11120,0,1,1 +1773535724.665289,13.28,4,3992.50,65.63,1112.12,2569.49,0.00,3518486468395.446289,3518486468397.455078,11,0,10.080186,0.056459,5362171,4551691,0,0,11123,0,1,1 +1773535729.663976,18.87,4,3992.50,65.67,1110.45,2571.09,0.00,0.177000,0.000000,199,0,30.189556,0.136369,5371964,4559082,0,0,11125,0,1,1 +1773535734.665487,2.01,4,3992.50,65.40,1121.22,2560.36,0.00,330.708929,1141.751778,60519,753972,0.003547,0.006067,5372053,4559205,0,0,11128,0,1,1 +1773535739.661278,2.36,4,3992.50,65.39,1121.23,2560.34,0.00,3521401190245.330078,3521401189433.535645,11,0,0.004381,0.008216,5372166,4559367,0,0,11130,0,1,1 +1773535744.664704,2.06,4,3992.50,65.39,1121.25,2560.32,0.00,0.000000,0.000000,11,0,0.003871,0.007135,5372266,4559509,0,0,11133,0,1,1 +1773535749.661873,2.57,4,3992.50,65.53,1119.22,2565.53,0.00,2.009927,0.000195,238,2,0.006993,0.009499,5372418,4559686,0,0,11135,0,1,1 +1773535754.665469,2.30,4,3992.50,65.54,1118.83,2565.99,0.00,3515908182372.892090,3515908182374.899414,11,0,0.003647,0.006507,5372511,4559816,0,0,11138,0,1,1 +1773535759.665671,2.36,4,3992.50,65.54,1118.83,2565.99,0.00,2.008708,0.000195,238,2,0.003636,0.006489,5372603,4559944,0,0,11140,0,1,1 +1773535764.661106,2.06,4,3992.50,65.51,1119.79,2565.03,0.00,329.277697,1143.852107,60519,754513,0.003194,0.005236,5372682,4560049,0,0,11143,0,1,1 +1773535769.665885,2.15,4,3992.50,65.54,1118.83,2566.00,0.00,3515077099251.183594,3515077098439.960449,199,0,0.003870,0.007124,5372782,4560190,0,0,11145,0,1,1 +1773535774.665573,1.91,4,3992.50,65.54,1118.84,2565.99,0.00,3518656795586.520996,0.000000,70,0,0.003420,0.005865,5372868,4560307,0,0,11148,0,1,1 +1773535779.661257,2.46,4,3992.50,65.54,1117.85,2565.92,0.00,3521477404562.239746,0.000000,11,0,0.003881,0.007129,5372968,4560447,0,0,11150,0,1,1 +1773535784.661221,2.31,4,3992.50,65.57,1116.71,2567.05,0.00,0.000000,0.000000,11,0,0.003940,0.007183,5373072,4560592,0,0,11153,0,1,1 +1773535789.665375,4.21,4,3992.50,65.25,1129.06,2554.71,0.00,0.000000,0.000000,11,0,0.003887,0.007117,5373173,4560732,0,0,11155,0,1,1 +1773535794.661206,17.08,4,3992.50,65.63,1114.09,2569.59,0.00,1.493139,0.022089,221,21,20.148987,0.097627,5379908,4565748,0,0,11158,0,1,1 +1773535799.665549,15.03,4,3992.50,65.66,1112.78,2570.91,0.00,0.516446,3515383774659.579102,238,2,20.111094,0.093520,5386441,4570687,0,0,11160,0,1,1 +1773535804.665826,2.36,4,3992.50,65.71,1111.10,2572.59,0.00,0.000000,0.000000,238,2,0.003420,0.005877,5386527,4570805,0,0,11163,0,1,1 +1773535809.661254,2.56,4,3992.50,65.49,1117.64,2563.94,0.00,329.278126,1145.435315,60519,756231,0.003882,0.007116,5386627,4570944,0,0,11165,0,1,1 +1773535814.661219,2.11,4,3992.50,65.49,1117.17,2564.11,0.00,3518461965154.293457,3518461964340.885254,11,0,0.004560,0.008054,5386731,4571087,0,0,11168,0,1,1 +1773535819.662660,2.11,4,3992.50,65.52,1116.21,2565.08,0.00,326.830777,1144.059435,59761,756227,0.004806,0.007773,5386834,4571229,0,0,11170,0,1,1 +1773535824.662020,2.21,4,3992.50,65.52,1116.22,2565.07,0.00,3518887645178.343262,3518887644359.304199,221,21,0.003421,0.005891,5386920,4571348,0,0,11173,0,1,1 +1773535829.665729,4.31,4,3992.50,64.75,1146.27,2535.05,0.00,329.249749,1143.647879,60519,756319,0.003875,0.007117,5387020,4571488,0,0,11175,0,1,1 +1773535834.665856,2.06,4,3992.50,64.80,1144.32,2536.99,0.00,3518347819296.508301,3518347818482.997070,11,0,0.003878,0.007132,5387120,4571629,0,0,11178,0,1,1 +1773535839.665448,2.36,4,3992.50,65.04,1138.87,2546.29,0.00,0.000000,0.000000,11,0,0.003662,0.006477,5387214,4571756,0,0,11180,0,1,1 +1773535844.662652,1.96,4,3992.50,64.99,1140.85,2544.31,0.00,0.000000,0.000000,11,0,0.003651,0.006515,5387307,4571886,0,0,11183,0,1,1 +1773535849.666118,2.26,4,3992.50,64.99,1140.62,2544.54,0.00,0.176831,0.000000,199,0,0.003863,0.007117,5387406,4572026,0,0,11185,0,1,1 +1773535854.663578,1.96,4,3992.50,64.84,1146.56,2538.60,0.00,3520225651780.963867,0.000000,70,0,0.003880,0.007123,5387506,4572166,0,0,11188,0,1,1 +1773535859.664561,2.01,4,3992.50,64.88,1145.10,2540.07,0.00,0.000000,0.000000,70,0,0.003042,0.006882,5387588,4572290,0,0,11190,0,1,1 +1773535864.666028,7.97,4,3992.50,64.77,1149.02,2536.08,0.00,3517405034114.180176,0.000000,11,0,0.023744,0.012761,5388006,4572606,0,0,11193,0,1,1 +1773535869.665461,24.19,4,3992.50,66.06,1098.46,2586.56,0.00,0.000000,0.000000,11,0,38.222814,0.161749,5400265,4581594,0,0,11195,0,1,1 +1773535874.661128,5.48,4,3992.50,65.35,1126.55,2558.45,0.00,331.272937,1146.674233,60519,757811,2.026131,0.018560,5401196,4582325,0,0,11198,0,1,1 +1773535879.665345,2.21,4,3992.50,65.20,1132.34,2552.68,0.00,0.000000,0.014343,60519,757823,0.003875,0.007116,5401296,4582465,0,0,11200,0,1,1 +1773535884.665219,2.16,4,3992.50,65.23,1131.30,2553.71,0.00,3518525663585.183594,3518525662768.983887,221,21,0.003878,0.007120,5401396,4582605,0,0,11203,0,1,1 +1773535889.661275,2.26,4,3992.50,65.26,1130.09,2554.92,0.00,0.517303,3521215252642.187988,238,2,0.003423,0.005847,5401482,4582720,0,0,11205,0,1,1 +1773535894.661272,2.21,4,3992.50,65.22,1131.30,2553.70,0.00,3518439095468.234375,3518439095470.242676,11,0,0.003865,0.007132,5401581,4582861,0,0,11208,0,1,1 +1773535899.661288,2.46,4,3992.50,65.44,1124.60,2562.25,0.00,0.000000,0.000000,11,0,0.003878,0.007122,5401681,4583001,0,0,11210,0,1,1 +1773535904.665552,2.10,4,3992.50,65.21,1133.60,2553.29,0.00,0.049957,0.000000,70,0,0.003875,0.007126,5401781,4583142,0,0,11213,0,1,1 +1773535909.665392,1.96,4,3992.50,65.26,1131.82,2555.07,0.00,326.885431,1146.440098,59761,758283,0.003428,0.005863,5401868,4583259,0,0,11215,0,1,1 +1773535914.661188,2.41,4,3992.50,65.22,1133.49,2553.38,0.00,3521398001404.415039,3521398000584.246582,11,0,0.003881,0.007138,5401968,4583400,0,0,11218,0,1,1 +1773535919.662051,1.86,4,3992.50,65.26,1131.79,2555.10,0.00,0.049991,0.000000,70,0,0.003877,0.007109,5402068,4583539,0,0,11220,0,1,1 +1773535924.665635,2.10,4,3992.50,65.27,1131.38,2555.50,0.00,1.957386,0.000195,238,2,0.003875,0.007771,5402168,4583684,0,0,11223,0,1,1 +1773535929.661196,2.51,4,3992.50,65.47,1123.27,2563.34,0.00,3521563880082.642578,3521563880084.652832,11,0,0.003423,0.005860,5402254,4583800,0,0,11225,0,1,1 +1773535934.661276,2.41,4,3992.50,65.42,1123.54,2561.20,0.00,2.008757,0.000195,238,2,0.003878,0.007132,5402354,4583941,0,0,11228,0,1,1 +1773535939.661569,19.56,4,3992.50,66.04,1099.14,2585.52,0.00,3518231015916.217773,3518231015918.049805,199,0,24.155146,0.115088,5410273,4589880,0,0,11230,0,1,1 +1773535944.666215,12.81,4,3992.50,66.11,1096.45,2588.20,0.00,1.313721,0.022050,221,21,16.080606,0.069066,5415443,4593777,0,0,11233,0,1,1 +1773535949.666155,3.41,4,3992.50,65.56,1117.77,2566.87,0.00,3518479073153.162109,3518479073154.582031,70,0,0.013851,0.011946,5415726,4594042,0,0,11235,0,1,1 +1773535954.664770,2.21,4,3992.50,65.41,1123.56,2561.07,0.00,3519412344427.422363,0.000000,11,0,0.003421,0.005867,5415812,4594159,0,0,11238,0,1,1 +1773535959.663565,2.56,4,3992.50,65.59,1107.65,2567.95,0.00,0.050012,0.000000,70,0,0.003892,0.007124,5415913,4594299,0,0,11240,0,1,1 +1773535964.664259,2.06,4,3992.50,65.61,1106.77,2568.66,0.00,0.000000,0.000000,70,0,0.003877,0.007131,5416013,4594440,0,0,11243,0,1,1 +1773535969.664943,2.06,4,3992.50,64.92,1133.65,2541.80,0.00,1.441697,0.022067,221,21,0.003877,0.007121,5416113,4594580,0,0,11245,0,1,1 +1773535974.663745,2.16,4,3992.50,64.93,1133.41,2542.03,0.00,0.000000,0.000000,221,21,0.004040,0.006119,5416211,4594704,0,0,11248,0,1,1 +1773535979.664261,2.26,4,3992.50,64.97,1131.71,2543.73,0.00,3518073876987.603516,3518073876989.073242,11,0,0.003865,0.007122,5416310,4594844,0,0,11250,0,1,1 +1773535984.661277,2.06,4,3992.50,64.98,1131.49,2543.96,0.00,2.009989,0.000195,238,2,0.003880,0.007137,5416410,4594985,0,0,11253,0,1,1 +1773535989.664419,2.56,4,3992.50,65.26,1126.06,2555.07,0.00,3516227287457.596680,3516227287459.604004,11,0,0.003884,0.007757,5416511,4595129,0,0,11255,0,1,1 +1773535994.661280,2.01,4,3992.50,65.27,1120.95,2555.29,0.00,0.050031,0.000000,70,0,0.003422,0.005869,5416597,4595246,0,0,11258,0,1,1 +1773535999.666437,2.36,4,3992.50,65.28,1120.47,2555.76,0.00,3514812081612.506348,0.000000,11,0,0.003874,0.007115,5416697,4595386,0,0,11260,0,1,1 +1773536004.661280,2.21,4,3992.50,65.28,1120.25,2555.99,0.00,1.493435,0.022093,221,21,0.003857,0.007140,5416795,4595527,0,0,11263,0,1,1 +1773536009.661232,3.11,4,3992.50,65.24,1122.00,2554.21,0.00,3518470898240.735840,3518470898242.028809,199,0,0.007303,0.008829,5416959,4595707,0,0,11265,0,1,1 +1773536014.661235,23.80,4,3992.50,65.44,1114.20,2561.98,0.00,3518435110488.373047,0.000000,70,0,30.184245,0.135895,5426698,4603084,0,0,11268,0,1,1 +1773536019.664804,6.87,4,3992.50,65.59,1107.93,2568.17,0.00,0.126863,0.000000,199,0,6.043785,0.030291,5428835,4604617,0,0,11270,0,1,1 +1773536024.661274,6.79,4,3992.50,65.47,1113.68,2563.24,0.00,1.833130,0.000195,238,2,4.028781,0.022517,5430048,4605569,0,0,11273,0,1,1 +1773536029.666029,2.06,4,3992.50,65.25,1122.20,2554.73,0.00,3515093766985.110840,3515093766987.117188,11,0,0.003870,0.007111,5430148,4605709,0,0,11275,0,1,1 +1773536034.666049,2.20,4,3992.50,65.26,1122.00,2554.94,0.00,0.000000,0.000000,11,0,0.003420,0.005852,5430234,4605825,0,0,11278,0,1,1 +1773536039.666046,2.16,4,3992.50,65.26,1122.01,2554.92,0.00,0.000000,0.000000,11,0,0.005312,0.008879,5430350,4605990,0,0,11280,0,1,1 +1773536044.662446,2.06,4,3992.50,65.26,1122.04,2554.90,0.00,2.010237,0.000195,238,2,0.003868,0.007137,5430449,4606131,0,0,11283,0,1,1 +1773536049.661266,2.86,4,3992.50,65.45,1118.72,2562.44,0.00,324.992889,1150.135033,59761,761901,0.006537,0.009220,5430604,4606319,0,0,11285,0,1,1 +1773536054.661116,1.96,4,3992.50,65.45,1118.73,2562.43,0.00,3518542699394.371094,3518542698569.399414,238,2,0.003420,0.006509,5430690,4606440,0,0,11288,0,1,1 +1773536059.665221,2.11,4,3992.50,65.45,1118.52,2562.65,0.00,3515550824235.097168,3515550824237.104004,11,0,0.003875,0.007117,5430790,4606580,0,0,11290,0,1,1 +1773536064.663719,2.46,4,3992.50,65.46,1118.28,2562.88,0.00,0.000000,0.000000,11,0,0.003879,0.007122,5430890,4606720,0,0,11293,0,1,1 +1773536069.664415,2.11,4,3992.50,65.43,1119.58,2561.58,0.00,0.000000,0.000000,11,0,0.003877,0.007109,5430990,4606859,0,0,11295,0,1,1 +1773536074.661290,2.06,4,3992.50,65.17,1129.72,2551.45,0.00,327.129487,1150.786831,59761,762126,0.003443,0.005877,5431078,4606977,0,0,11298,0,1,1 +1773536079.661197,2.56,4,3992.50,65.37,1128.29,2559.54,0.00,3518502362073.406250,3518502361248.778809,221,21,0.003878,0.007123,5431178,4607117,0,0,11300,0,1,1 +1773536084.666091,5.77,4,3992.50,65.45,1124.96,2562.65,0.00,3514996890911.918457,3514996890913.209961,199,0,2.022454,0.021001,5432030,4607822,0,0,11303,0,1,1 +1773536089.666066,23.43,4,3992.50,66.47,1085.21,2602.28,0.00,326.749698,1150.801322,59761,763270,30.289229,0.140280,5442025,4615327,0,0,11305,0,1,1 +1773536094.661901,5.68,4,3992.50,65.72,1114.62,2572.89,0.00,3521370048507.381836,3521370047682.647949,199,0,7.957582,0.037774,5444561,4617283,0,0,11308,0,1,1 +1773536099.662056,1.96,4,3992.50,65.71,1114.75,2572.75,0.00,0.000000,0.000000,199,0,0.003420,0.005855,5444647,4617399,0,0,11310,0,1,1 +1773536104.662834,2.21,4,3992.50,65.73,1114.19,2573.34,0.00,326.697184,1151.033199,59761,763624,0.003865,0.007131,5444746,4617540,0,0,11313,0,1,1 +1773536109.663766,2.71,4,3992.50,65.40,1126.84,2560.41,0.00,4.060083,0.390552,60519,763816,0.003877,0.007121,5444846,4617680,0,0,11315,0,1,1 +1773536114.664323,1.96,4,3992.50,65.42,1125.91,2561.35,0.00,3518045519918.339844,3518045519097.636719,199,0,0.002733,0.003964,5444911,4617761,0,0,11318,0,1,1 +1773536119.664755,2.11,4,3992.50,65.44,1124.95,2562.31,0.00,1.314828,0.022068,221,21,0.005248,0.008249,5445010,4617896,0,0,11320,0,1,1 +1773536124.665097,1.96,4,3992.50,65.44,1124.96,2562.30,0.00,0.516859,3518196370750.618164,238,2,0.003420,0.006335,5445096,4618015,0,0,11323,0,1,1 +1773536129.665529,2.11,4,3992.50,65.45,1124.76,2562.50,0.00,3518133129598.534180,3518133129600.542480,11,0,0.003878,0.007122,5445196,4618155,0,0,11325,0,1,1 +1773536134.665962,1.96,4,3992.50,65.45,1124.77,2562.49,0.00,0.000000,0.000000,11,0,0.003878,0.007132,5445296,4618296,0,0,11328,0,1,1 +1773536139.665298,2.41,4,3992.50,65.80,1115.13,2576.04,0.00,1.492093,0.022073,221,21,0.003866,0.007123,5445395,4618436,0,0,11330,0,1,1 +1773536144.665746,2.06,4,3992.50,65.78,1115.96,2575.26,0.00,0.516848,3518122364372.920898,238,2,0.003420,0.005901,5445481,4618554,0,0,11333,0,1,1 +1773536149.665480,1.91,4,3992.50,65.76,1116.44,2574.77,0.00,3518623854283.591797,3518623854285.550293,70,0,0.003866,0.007123,5445580,4618694,0,0,11335,0,1,1 +1773536154.664541,12.95,4,3992.50,65.46,1128.29,2562.93,0.00,326.936447,1152.236677,59761,764251,10.072083,0.051834,5448937,4621198,0,0,11338,0,1,1 +1773536159.661204,21.02,4,3992.50,65.28,1135.22,2555.84,0.00,3520787085368.367188,3520787084542.543457,199,0,30.202827,0.134162,5458566,4628426,0,0,11340,0,1,1 +1773536164.665978,2.61,4,3992.50,65.18,1138.97,2552.12,0.00,330.493322,1151.235532,60519,764880,0.009971,0.010469,5458781,4628649,0,0,11343,0,1,1 +1773536169.665880,2.46,4,3992.50,65.55,1121.91,2566.28,0.00,3518505905972.625977,3518505905151.261230,11,0,0.003878,0.007123,5458881,4628789,0,0,11345,0,1,1 +1773536174.665567,2.26,4,3992.50,65.59,1120.23,2567.98,0.00,2.008915,0.000195,238,2,0.003420,0.005865,5458967,4628906,0,0,11348,0,1,1 +1773536179.661248,1.96,4,3992.50,65.60,1120.00,2568.21,0.00,3521479043462.947754,3521479043464.958496,11,0,0.003894,0.007129,5459068,4629046,0,0,11350,0,1,1 +1773536184.661195,2.11,4,3992.50,65.41,1127.43,2560.78,0.00,2.008811,0.000195,238,2,0.003891,0.007603,5459169,4629189,0,0,11353,0,1,1 +1773536189.665443,2.10,4,3992.50,65.41,1127.45,2560.77,0.00,3515449813378.100586,3515449813380.107422,11,0,0.003895,0.007285,5459271,4629331,0,0,11355,0,1,1 +1773536194.664935,2.31,4,3992.50,65.41,1127.45,2560.75,0.00,2.008994,0.000195,238,2,0.003421,0.005866,5459357,4629448,0,0,11358,0,1,1 +1773536199.665385,2.31,4,3992.50,65.50,1121.80,2564.41,0.00,0.000000,0.000000,238,2,0.003878,0.007122,5459457,4629588,0,0,11360,0,1,1 +1773536204.666166,2.06,4,3992.50,65.32,1128.73,2557.47,0.00,324.865506,1153.334540,59761,765742,0.003877,0.007131,5459557,4629729,0,0,11363,0,1,1 +1773536209.664556,2.01,4,3992.50,65.32,1128.75,2557.44,0.00,3519570472236.974609,3519570471410.118164,11,0,0.003879,0.007112,5459657,4629868,0,0,11365,0,1,1 +1773536214.665485,1.81,4,3992.50,65.32,1128.77,2557.44,0.00,330.924326,1153.373007,60519,765821,0.003244,0.005718,5459740,4629983,0,0,11368,0,1,1 +1773536219.665964,2.11,4,3992.50,65.32,1128.91,2557.30,0.00,3518100128121.195801,3518100127298.496094,199,0,0.003886,0.007130,5459841,4630124,0,0,11370,0,1,1 +1773536224.661261,8.70,4,3992.50,65.09,1137.99,2548.23,0.00,1.833561,0.000195,238,2,0.020563,0.012646,5460220,4630431,0,0,11373,0,1,1 +1773536229.665797,15.45,4,3992.50,65.66,1116.76,2570.82,0.00,3515248162391.818359,0.021855,221,21,22.101855,0.094802,5467069,4635615,0,0,11375,0,1,1 +1773536234.665669,12.89,4,3992.50,66.23,1094.29,2593.20,0.00,0.000000,0.000000,221,21,18.122583,0.087521,5473221,4640311,0,0,11378,0,1,1 +1773536239.661278,2.76,4,3992.50,65.82,1110.27,2577.09,0.00,0.000000,0.000000,221,21,0.003436,0.005886,5473308,4640429,0,0,11380,0,1,1 +1773536244.665831,1.96,4,3992.50,65.77,1112.49,2574.99,0.00,3515236524860.756836,3515236524862.175781,70,0,0.003887,0.007126,5473409,4640570,0,0,11383,0,1,1 +1773536249.666035,1.66,4,3992.50,65.79,1111.78,2575.70,0.00,0.000000,0.000000,70,0,0.003886,0.007613,5473510,4640714,0,0,11385,0,1,1 +1773536254.665423,1.91,4,3992.50,65.79,1111.57,2575.91,0.00,331.245885,1155.320796,60571,767495,0.003650,0.006648,5473603,4640843,0,0,11388,0,1,1 +1773536259.661762,2.91,4,3992.50,65.86,1103.63,2578.74,0.00,0.000000,0.071634,60571,767531,0.003652,0.006506,5473696,4640972,0,0,11390,0,1,1 +1773536264.665352,1.81,4,3992.50,65.83,1105.14,2577.25,0.00,3515913113433.823730,3515913112608.950195,221,21,0.003875,0.007127,5473796,4641113,0,0,11393,0,1,1 +1773536269.662733,1.81,4,3992.50,65.83,1105.15,2577.23,0.00,329.936319,1155.949216,60571,767639,0.003880,0.007114,5473896,4641252,0,0,11395,0,1,1 +1773536274.666049,1.81,4,3992.50,65.83,1105.16,2577.23,0.00,0.000000,0.006636,60571,767649,0.003522,0.006482,5473988,4641380,0,0,11398,0,1,1 +1773536279.661276,2.01,4,3992.50,65.83,1104.93,2577.44,0.00,3521799279442.557129,3521799278617.602539,70,0,0.003773,0.006516,5474082,4641510,0,0,11400,0,1,1 +1773536284.665278,2.06,4,3992.50,65.83,1104.96,2577.42,0.00,3515623256216.397949,0.000000,11,0,0.003875,0.007127,5474182,4641651,0,0,11403,0,1,1 +1773536289.661193,2.31,4,3992.50,65.83,1105.41,2577.38,0.00,0.050041,0.000000,70,0,0.003869,0.007128,5474281,4641791,0,0,11405,0,1,1 +1773536294.665993,1.71,4,3992.50,65.81,1106.47,2576.47,0.00,326.830788,1154.359443,59813,767731,0.003417,0.005859,5474367,4641908,0,0,11408,0,1,1 +1773536299.665554,13.17,4,3992.50,65.24,1128.62,2554.30,0.00,3518745999629.998535,3518745998801.603027,70,0,10.078639,0.056579,5477978,4644611,0,0,11410,0,1,1 +1773536304.665910,18.07,4,3992.50,66.49,1079.61,2603.25,0.00,0.000000,0.000000,70,0,28.162615,0.124000,5487084,4651439,0,0,11413,0,1,1 +1773536309.664706,4.12,4,3992.50,66.10,1094.70,2588.14,0.00,327.223380,1156.106705,59813,768457,2.025155,0.015080,5487953,4652073,0,0,11415,0,1,1 +1773536314.664476,2.16,4,3992.50,65.84,1105.05,2577.79,0.00,3518599122524.387207,3518599121695.715332,11,0,0.003637,0.006685,5488045,4652205,0,0,11418,0,1,1 +1773536319.662352,2.26,4,3992.50,65.77,1103.09,2575.14,0.00,327.333575,1157.157258,59813,768918,0.003880,0.007609,5488145,4652348,0,0,11420,0,1,1 +1773536324.665288,1.96,4,3992.50,65.74,1102.45,2573.68,0.00,3516371984918.979004,3516371984088.525879,221,21,0.003876,0.007128,5488245,4652489,0,0,11423,0,1,1 +1773536329.665117,1.96,4,3992.50,65.73,1102.48,2573.66,0.00,325.713814,1156.726998,59813,768954,0.003649,0.006464,5488338,4652615,0,0,11425,0,1,1 +1773536334.665702,1.91,4,3992.50,65.73,1102.49,2573.65,0.00,3518025237951.662598,3518025237120.774902,221,21,0.003649,0.006511,5488431,4652745,0,0,11428,0,1,1 +1773536339.661559,1.96,4,3992.50,65.73,1102.51,2573.63,0.00,3521355181966.057129,3521355181967.528320,11,0,0.004394,0.008216,5488545,4652907,0,0,11430,0,1,1 +1773536344.665920,1.95,4,3992.50,65.74,1102.33,2573.82,0.00,1.490594,0.022051,221,21,0.003870,0.007134,5488645,4653049,0,0,11433,0,1,1 +1773536349.665931,2.91,4,3992.50,65.59,1108.96,2567.85,0.00,329.762752,1156.858201,60571,769032,0.006760,0.008872,5488790,4653215,0,0,11435,0,1,1 +1773536354.666019,1.91,4,3992.50,65.42,1115.49,2561.16,0.00,3518375369586.499023,3518375368760.835938,70,0,0.003878,0.007165,5488890,4653357,0,0,11438,0,1,1 +1773536359.665866,2.11,4,3992.50,65.42,1115.50,2561.14,0.00,3518545060030.039062,0.000000,11,0,0.003878,0.007123,5488990,4653497,0,0,11440,0,1,1 +1773536364.665613,2.01,4,3992.50,65.41,1115.53,2561.11,0.00,2.008891,0.000195,238,2,0.003878,0.007133,5489090,4653638,0,0,11443,0,1,1 +1773536369.665267,2.11,4,3992.50,65.41,1115.52,2561.12,0.00,0.000000,0.000000,238,2,0.003420,0.005856,5489176,4653754,0,0,11445,0,1,1 +1773536374.663743,18.00,4,3992.50,66.04,1091.11,2585.52,0.00,329.346984,1157.576618,60571,769663,18.126547,0.088521,5495198,4658231,0,0,11448,0,1,1 +1773536379.665376,11.52,4,3992.50,65.34,1118.42,2558.13,0.00,3517287904481.971191,3517287903654.802734,221,21,16.095845,0.074314,5500548,4662251,0,0,11450,0,1,1 +1773536384.665300,7.90,4,3992.50,65.42,1116.44,2561.17,0.00,0.000000,0.000000,221,21,6.041486,0.029495,5502499,4663666,0,0,11453,0,1,1 +1773536389.662201,2.16,4,3992.50,65.42,1116.45,2561.16,0.00,3520619338740.831543,3520619338742.125488,199,0,0.003880,0.007127,5502599,4663806,0,0,11455,0,1,1 +1773536394.661202,1.86,4,3992.50,65.42,1116.47,2561.14,0.00,3519140089548.420410,0.000000,11,0,0.003471,0.005928,5502689,4663927,0,0,11458,0,1,1 +1773536399.661283,1.86,4,3992.50,65.41,1116.48,2561.14,0.00,331.250017,1158.276103,60571,770564,0.003891,0.007122,5502790,4664067,0,0,11460,0,1,1 +1773536404.665597,3.26,4,3992.50,65.41,1116.53,2561.10,0.00,0.007025,0.035224,60578,770592,0.003883,0.007134,5502891,4664209,0,0,11463,0,1,1 +1773536409.665277,2.61,4,3992.50,65.61,1108.92,2568.67,0.00,3518662887850.515137,3518662887021.385742,238,2,0.003891,0.007123,5502992,4664349,0,0,11465,0,1,1 +1773536414.666097,4.52,4,3992.50,65.21,1124.46,2553.20,0.00,0.000000,0.000000,238,2,0.003407,0.005864,5503077,4664466,0,0,11468,0,1,1 +1773536419.661281,2.21,4,3992.50,65.21,1124.47,2553.19,0.00,3521829200213.188477,3521829200215.022461,199,0,0.005462,0.008722,5503181,4664611,0,0,11470,0,1,1 +1773536424.665265,2.06,4,3992.50,65.26,1122.78,2554.89,0.00,3515635917839.837891,0.000000,11,0,0.003850,0.007127,5503279,4664752,0,0,11473,0,1,1 +1773536429.665559,1.96,4,3992.50,65.26,1122.79,2554.88,0.00,0.000000,0.000000,11,0,0.003890,0.007122,5503380,4664892,0,0,11475,0,1,1 +1773536434.666036,2.26,4,3992.50,65.14,1127.20,2550.47,0.00,0.049995,0.000000,70,0,0.003415,0.005873,5503466,4665010,0,0,11478,0,1,1 +1773536439.665328,2.41,4,3992.50,65.41,1114.46,2561.04,0.00,3518935425390.973633,0.000000,11,0,0.003879,0.007123,5503566,4665150,0,0,11480,0,1,1 +1773536444.665219,1.96,4,3992.50,65.41,1113.89,2561.05,0.00,0.050001,0.000000,70,0,0.003891,0.007293,5503667,4665292,0,0,11483,0,1,1 +1773536449.665565,19.25,4,3992.50,65.69,1103.10,2571.78,0.00,0.126944,0.000000,199,0,22.149606,0.108795,5511064,4670780,0,0,11485,0,1,1 +1773536454.665533,15.74,4,3992.50,65.55,1108.44,2566.39,0.00,1.831847,0.000195,238,2,18.108112,0.078035,5516806,4675070,0,0,11488,0,1,1 +1773536459.661277,2.21,4,3992.50,65.55,1108.22,2566.59,0.00,329.534141,1160.280797,60578,771817,0.003423,0.005848,5516892,4675185,0,0,11490,0,1,1 +1773536464.665584,2.06,4,3992.50,65.56,1108.00,2566.82,0.00,0.000000,0.017661,60578,771827,0.003875,0.007126,5516992,4675326,0,0,11493,0,1,1 +1773536469.665582,2.46,4,3992.50,65.83,1100.57,2577.57,0.00,3518438544151.208984,3518438543323.160156,11,0,0.003891,0.007122,5517093,4675466,0,0,11495,0,1,1 +1773536474.665944,2.11,4,3992.50,65.84,1100.50,2577.67,0.00,0.049996,0.000000,70,0,0.003890,0.007119,5517194,4675606,0,0,11498,0,1,1 +1773536479.665464,2.41,4,3992.50,65.84,1100.25,2577.94,0.00,1.442033,0.022072,221,21,0.003421,0.005868,5517280,4675723,0,0,11500,0,1,1 +1773536484.661414,2.21,4,3992.50,65.84,1100.29,2577.89,0.00,3521289678179.365234,3521289678180.786133,70,0,0.003889,0.007146,5517381,4675865,0,0,11503,0,1,1 +1773536489.665438,2.06,4,3992.50,65.78,1102.89,2575.30,0.00,326.888439,1159.363666,59820,772506,0.003887,0.007104,5517482,4676004,0,0,11505,0,1,1 +1773536494.666078,2.16,4,3992.50,65.78,1102.69,2575.51,0.00,3517987499992.466309,3517987499159.300293,199,0,0.003878,0.007106,5517582,4676143,0,0,11508,0,1,1 +1773536499.665921,2.46,4,3992.50,65.82,1104.12,2577.18,0.00,0.000000,0.000000,199,0,0.003420,0.005881,5517668,4676261,0,0,11510,0,1,1 +1773536504.665123,2.11,4,3992.50,65.84,1103.44,2577.87,0.00,3518999464764.304688,0.000000,11,0,0.003866,0.007133,5517767,4676402,0,0,11513,0,1,1 +1773536509.665462,2.11,4,3992.50,65.84,1103.44,2577.89,0.00,1.491793,0.022069,221,21,0.003259,0.006900,5517855,4676534,0,0,11515,0,1,1 +1773536514.661674,2.06,4,3992.50,65.84,1103.44,2577.90,0.00,0.517286,3521105208750.194824,238,2,0.003489,0.006962,5517946,4676664,0,0,11518,0,1,1 +1773536519.665598,3.46,4,3992.50,65.32,1123.82,2557.53,0.00,3515677686667.050293,3515677686669.057617,11,0,0.009238,0.009291,5518136,4676853,0,0,11520,0,1,1 +1773536524.661191,25.28,4,3992.50,65.78,1106.04,2575.24,0.00,0.000000,0.000000,11,0,30.216206,0.139648,5527900,4684319,0,0,11523,0,1,1 +1773536529.661194,8.20,4,3992.50,66.74,1065.44,2612.88,0.00,0.050000,0.000000,70,0,10.066206,0.050764,5531261,4686949,0,0,11525,0,1,1 +1773536534.663866,2.01,4,3992.50,66.20,1086.00,2592.06,0.00,1.441125,0.022059,221,21,0.003406,0.005862,5531346,4687066,0,0,11528,0,1,1 +1773536539.661294,2.16,4,3992.50,65.59,1109.95,2568.11,0.00,0.000000,0.000000,221,21,0.003443,0.005866,5531434,4687183,0,0,11530,0,1,1 +1773536544.661186,2.46,4,3992.50,65.60,1109.52,2568.55,0.00,329.777561,1161.633732,60578,774055,0.003420,0.005853,5531520,4687299,0,0,11533,0,1,1 +1773536549.661184,2.06,4,3992.50,65.60,1109.54,2568.54,0.00,0.000000,0.033984,60578,774064,0.003878,0.007122,5531620,4687439,0,0,11535,0,1,1 +1773536554.661196,2.11,4,3992.50,65.60,1109.55,2568.52,0.00,3518428938132.925781,3518428937302.475098,70,0,0.003878,0.007132,5531720,4687580,0,0,11538,0,1,1 +1773536559.665739,2.66,4,3992.50,65.43,1118.36,2561.91,0.00,1.440586,0.022050,221,21,0.003875,0.007116,5531820,4687720,0,0,11540,0,1,1 +1773536564.665350,2.11,4,3992.50,65.46,1117.36,2562.84,0.00,3518710202382.823730,3518710202384.293945,11,0,0.003421,0.005866,5531906,4687837,0,0,11543,0,1,1 +1773536569.662165,2.26,4,3992.50,65.47,1116.89,2563.31,0.00,0.000000,0.000000,11,0,0.003880,0.007127,5532006,4687977,0,0,11545,0,1,1 +1773536574.662834,1.96,4,3992.50,65.48,1116.67,2563.54,0.00,2.008521,0.000195,238,2,0.003878,0.007131,5532106,4688118,0,0,11548,0,1,1 +1773536579.663277,2.56,4,3992.50,65.48,1116.44,2563.75,0.00,0.000000,0.000000,238,2,0.003878,0.007766,5532206,4688262,0,0,11550,0,1,1 +1773536584.663800,11.89,4,3992.50,66.05,1066.78,2586.05,0.00,0.000000,0.000000,238,2,0.001818,0.001430,5532243,4688295,0,0,11553,0,1,1 +1773536592.157521,1.84,4,3992.50,65.72,1079.74,2573.09,0.00,2347590129498.181641,2347590129499.521973,11,0,0.000123,0.000123,5532247,4688301,0,0,11556,0,1,1 +1773536594.662154,14.86,4,3992.50,66.02,1068.05,2584.84,0.00,2.978270,0.044059,221,30,0.018737,0.007444,5532412,4688419,0,0,11558,0,1,1 +1773536599.665815,11.94,4,3992.50,66.04,1067.07,2585.71,0.00,0.000000,0.000000,221,30,0.000000,0.000020,5532412,4688421,0,0,11560,0,1,1 +1773536604.661253,2.16,4,3992.50,65.71,1079.99,2572.80,0.00,3521650584034.237793,3521650584035.708984,11,0,0.000000,0.000030,5532412,4688424,0,0,11563,0,1,1 +1773536609.661489,1.96,4,3992.50,65.54,1086.84,2565.95,0.00,1.491824,0.022069,221,30,0.000000,0.000020,5532412,4688426,0,0,11565,0,1,1 +1773536614.662570,11.24,4,3992.50,65.89,1074.28,2579.91,0.00,3517676192703.623047,3517676192705.042969,70,0,0.014575,0.008552,5532661,4688624,0,0,11568,0,1,1 +1773536619.666049,1.86,4,3992.50,65.81,1077.71,2576.48,0.00,327.549504,2301.168960,60044,782290,0.000229,0.000653,5532668,4688638,0,0,11570,0,1,1 +1773536624.663820,17.88,4,3992.50,65.42,1108.77,2561.29,0.00,7.290652,36.220835,60850,782921,20.116431,0.082282,5538754,4693143,0,0,11573,0,1,1 +1773536629.664563,15.40,4,3992.50,65.88,1090.87,2579.16,0.00,3517914202356.378418,3517914200350.808105,238,2,20.141294,0.090176,5545309,4697962,0,0,11575,0,1,1 +1773536634.665096,3.01,4,3992.50,65.24,1115.68,2554.35,0.00,329.017083,2339.205380,60101,783527,1.996633,0.014145,5546073,4698574,0,0,11578,0,1,1 +1773536639.665338,2.16,4,3992.50,65.20,1117.27,2552.75,0.00,3518266863220.124023,3518266861209.819336,238,2,0.005324,0.008866,5546190,4698738,0,0,11580,0,1,1 +1773536644.663102,2.06,4,3992.50,65.06,1122.68,2547.36,0.00,3520011428392.197266,3520011428394.206543,11,0,0.003900,0.007788,5546292,4698884,0,0,11583,0,1,1 +1773536649.661273,2.81,4,3992.50,65.53,1107.00,2565.50,0.00,0.000000,0.000000,11,0,0.006762,0.008863,5546437,4699049,0,0,11585,0,1,1 +1773536654.665915,2.36,4,3992.50,65.25,1115.57,2554.49,0.00,330.753886,2337.884434,60101,784011,0.003874,0.007126,5546537,4699190,0,0,11588,0,1,1 +1773536659.661840,2.06,4,3992.50,65.24,1115.84,2554.22,0.00,0.000000,0.097247,60101,784052,0.003856,0.007128,5546635,4699330,0,0,11590,0,1,1 +1773536664.661193,2.31,4,3992.50,64.93,1128.03,2542.03,0.00,3518892485677.227051,3518892483667.698730,199,0,0.003879,0.007133,5546735,4699471,0,0,11593,0,1,1 +1773536669.665224,2.01,4,3992.50,64.97,1126.43,2543.62,0.00,3515603133541.743164,0.000000,11,0,0.003430,0.005850,5546822,4699587,0,0,11595,0,1,1 +1773536674.665506,2.36,4,3992.50,64.95,1127.29,2542.76,0.00,331.042290,2340.121697,60101,784147,0.003878,0.007132,5546922,4699728,0,0,11598,0,1,1 +1773536679.661202,2.36,4,3992.50,65.43,1108.14,2561.89,0.00,0.000000,0.071546,60101,784198,0.003881,0.007129,5547022,4699868,0,0,11600,0,1,1 +1773536684.665160,11.85,4,3992.50,65.76,1077.86,2574.62,0.00,3515654162576.019531,3515654160568.294922,70,0,0.002127,0.002114,5547071,4699917,0,0,11603,0,1,1 +1773536689.665799,1.76,4,3992.50,65.75,1078.21,2574.28,0.00,331.019409,2721.029847,60135,786733,0.000794,0.000403,5547086,4699928,0,0,11605,0,1,1 +1773536694.665548,3.31,4,3992.50,65.77,1079.04,2574.88,0.00,3518614078725.983398,3518614076335.597168,11,0,0.000050,0.000092,5547090,4699935,0,0,11608,0,1,1 +1773536699.665112,13.23,4,3992.50,67.23,1021.57,2632.22,0.00,0.176969,0.000000,199,0,0.007141,0.002512,5547212,4700014,0,0,11610,0,1,1 +1773536704.665446,1.86,4,3992.50,66.28,1058.70,2595.09,0.00,330.982240,3052.622157,60223,789008,0.000000,0.000030,5547212,4700017,0,0,11613,0,1,1 +1773536709.666129,11.51,4,3992.50,66.02,1067.74,2584.83,0.00,3517956365130.837891,3517956362408.096191,221,38,0.000229,0.000653,5547219,4700031,0,0,11615,0,1,1 +1773536714.665562,2.06,4,3992.50,65.98,1070.55,2583.27,0.00,333.841174,3461.211602,61014,791706,0.000000,0.000674,5547219,4700038,0,0,11618,0,1,1 +1773536719.662667,2.31,4,3992.50,65.49,1089.92,2563.90,0.00,0.000000,0.000000,61014,791706,0.000000,0.000020,5547219,4700040,0,0,11620,0,1,1 +1773536724.663423,15.82,4,3992.50,66.36,1049.54,2598.25,0.00,3517905042387.684570,3517905039262.610840,11,0,20.126650,0.097811,5553730,4704790,0,0,11623,0,1,1 +1773536729.666536,7.99,4,3992.50,66.46,1045.84,2601.95,0.00,331.029037,3466.143321,60257,792530,6.036437,0.028316,5555605,4706186,0,0,11625,0,1,1 +1773536734.663178,9.52,4,3992.50,65.86,1069.20,2578.54,0.00,3520802070040.504883,3520802066901.279785,70,0,14.093175,0.062245,5560124,4709556,0,0,11628,0,1,1 +1773536739.665759,2.61,4,3992.50,65.97,1069.89,2582.89,0.00,3516621878030.355957,0.000000,11,0,0.003863,0.007119,5560223,4709696,0,0,11630,0,1,1 +1773536744.665806,1.91,4,3992.50,65.81,1076.20,2576.59,0.00,2.008770,0.000195,238,2,0.003878,0.007132,5560323,4709837,0,0,11633,0,1,1 +1773536749.661181,2.06,4,3992.50,65.74,1079.09,2573.69,0.00,3521694985226.869629,3521694985228.879883,11,0,0.004043,0.006114,5560421,4709960,0,0,11635,0,1,1 +1773536754.665709,2.01,4,3992.50,65.65,1082.47,2570.32,0.00,0.000000,0.000000,11,0,0.003883,0.007134,5560522,4710102,0,0,11638,0,1,1 +1773536759.665914,2.26,4,3992.50,65.69,1080.79,2571.99,0.00,2.008706,0.000195,238,2,0.003878,0.007122,5560622,4710242,0,0,11640,0,1,1 +1773536764.665253,1.96,4,3992.50,65.63,1083.27,2569.52,0.00,329.273060,3469.477037,60261,793207,0.003879,0.007133,5560722,4710383,0,0,11643,0,1,1 +1773536769.661191,2.46,4,3992.50,66.04,1064.41,2585.73,0.00,3521297504991.543945,3521297501851.213379,11,0,0.003423,0.006479,5560808,4710501,0,0,11645,0,1,1 +1773536774.661371,1.96,4,3992.50,65.95,1068.16,2581.97,0.00,0.000000,0.000000,11,0,0.003878,0.007119,5560908,4710641,0,0,11648,0,1,1 +1773536779.665880,6.96,4,3992.50,66.07,1065.86,2586.79,0.00,2.006979,0.000195,238,2,0.001259,0.001838,5560938,4710678,0,0,11650,0,1,1 +1773536784.661188,8.50,4,3992.50,65.56,1085.91,2566.85,0.00,3521741685166.763672,0.021896,221,47,0.001254,0.002165,5560967,4710717,0,0,11653,0,1,1 +1773536789.661985,5.22,4,3992.50,66.17,1063.28,2590.54,0.00,0.516812,3517876830100.677734,238,2,0.001252,0.001670,5560996,4710752,0,0,11655,0,1,1 +1773536794.662608,10.94,4,3992.50,65.84,1074.67,2577.89,0.00,3517998308337.617676,3517998308339.449219,199,0,0.000458,0.001297,5561010,4710779,0,0,11658,0,1,1 +1773536799.663171,1.60,4,3992.50,65.88,1073.03,2579.53,0.00,3518041105598.911621,0.000000,70,0,0.000000,0.000020,5561010,4710781,0,0,11660,0,1,1 +1773536804.663823,1.66,4,3992.50,65.83,1075.14,2577.42,0.00,0.000000,0.000000,70,0,0.000000,0.000030,5561010,4710784,0,0,11663,0,1,1 +1773536809.664334,12.90,4,3992.50,65.67,1082.61,2571.19,0.00,331.157566,4622.853474,60265,800856,0.006760,0.003173,5561129,4710872,0,0,11665,0,1,1 +1773536814.664968,1.91,4,3992.50,65.69,1081.96,2571.89,0.00,3517991125167.984375,3517991120874.974609,221,49,0.000803,0.001065,5561145,4710889,0,0,11668,0,1,1 +1773536819.665352,18.97,4,3992.50,66.13,1076.99,2589.17,0.00,3518166938372.068359,3518166938373.538086,11,0,24.212036,0.111605,5569129,4716644,0,0,11670,0,1,1 +1773536824.663290,9.41,4,3992.50,65.70,1093.88,2572.26,0.00,0.050021,0.000000,70,0,14.031125,0.060619,5573669,4720020,0,0,11673,0,1,1 +1773536829.664719,5.22,4,3992.50,65.83,1095.86,2577.30,0.00,331.110080,4661.884766,60282,802436,2.018909,0.017596,5574406,4720649,0,0,11675,0,1,1 +1773536834.663974,4.27,4,3992.50,65.16,1121.93,2551.25,0.00,3518961469061.944336,3518961464729.336914,11,0,0.003879,0.007133,5574506,4720790,0,0,11678,0,1,1 +1773536839.665739,2.15,4,3992.50,65.11,1123.80,2549.36,0.00,0.176891,0.000000,199,0,0.003427,0.005861,5574593,4720907,0,0,11680,0,1,1 +1773536844.665143,2.16,4,3992.50,65.00,1128.18,2544.98,0.00,331.117184,4664.044056,60282,802740,0.003878,0.007133,5574693,4721048,0,0,11683,0,1,1 +1773536849.663681,2.21,4,3992.50,65.04,1126.75,2546.43,0.00,3519466532852.434082,3519466528517.462891,221,53,0.003867,0.007125,5574792,4721188,0,0,11685,0,1,1 +1773536854.665262,1.96,4,3992.50,65.05,1126.52,2546.65,0.00,333.718138,4662.099076,61040,802879,0.003852,0.007130,5574890,4721329,0,0,11688,0,1,1 +1773536859.665539,2.46,4,3992.50,65.30,1119.43,2556.75,0.00,3518242406280.619141,3518242401952.402832,199,0,0.003433,0.005855,5574977,4721445,0,0,11690,0,1,1 +1773536864.664941,2.26,4,3992.50,65.04,1126.72,2546.45,0.00,335.178656,4664.245072,61040,802944,0.003891,0.007294,5575078,4721587,0,0,11693,0,1,1 +1773536869.665140,2.26,4,3992.50,65.09,1124.93,2548.23,0.00,3518297147953.062500,3518297143624.862793,11,0,0.003886,0.007600,5575179,4721730,0,0,11695,0,1,1 +1773536874.666324,8.58,4,3992.50,66.16,1066.43,2590.47,0.00,0.049988,0.000000,70,0,0.002099,0.002550,5575227,4721785,0,0,11698,0,1,1 +1773536879.665619,5.02,4,3992.50,65.86,1077.02,2578.57,0.00,0.126971,0.000000,199,0,0.001187,0.001814,5575251,4721813,0,0,11700,0,1,1 +1773536884.665362,5.42,4,3992.50,65.58,1089.30,2567.62,0.00,3518618315686.399902,0.000000,70,0,0.000229,0.000663,5575258,4721828,0,0,11703,0,1,1 +1773536889.663578,4.07,4,3992.50,66.14,1066.29,2589.49,0.00,0.000000,0.000000,70,0,0.000216,0.000654,5575264,4721842,0,0,11705,0,1,1 +1773536894.662556,9.62,4,3992.50,66.26,1061.96,2594.36,0.00,1.442189,0.022075,221,59,0.010079,0.004587,5575439,4721971,0,0,11708,0,1,1 +1773536899.665624,6.02,4,3992.50,66.06,1069.36,2586.28,0.00,3516279249318.543457,3516279249319.962402,70,0,0.000237,0.000822,5575447,4721987,0,0,11710,0,1,1 +1773536904.665401,6.64,4,3992.50,66.78,1035.98,2614.43,0.00,0.126959,0.000000,199,0,0.001049,0.001602,5575466,4722015,0,0,11713,0,1,1 +1773536909.662567,6.73,4,3992.50,65.95,1084.52,2582.16,0.00,1.315687,0.022083,221,65,4.042508,0.029771,5576969,4723149,0,0,11715,0,1,1 +1773536914.662475,22.92,4,3992.50,66.27,1071.86,2594.76,0.00,333.880577,5740.169044,61105,811820,36.203361,0.149314,5588544,4731765,0,0,11718,0,1,1 +1773536919.666040,2.86,4,3992.50,66.65,1057.50,2609.39,0.00,3515929885030.866699,3515929879629.822754,199,0,0.010664,0.009503,5588763,4731975,0,0,11720,0,1,1 +1773536924.665846,2.16,4,3992.50,66.24,1073.28,2593.36,0.00,331.142927,5740.658487,60349,812013,0.003874,0.007141,5588863,4732117,0,0,11723,0,1,1 +1773536929.662061,2.11,4,3992.50,65.98,1083.54,2583.10,0.00,4.063917,0.129688,61107,812204,0.003868,0.007128,5588962,4732257,0,0,11725,0,1,1 +1773536934.661227,2.41,4,3992.50,65.80,1090.46,2576.18,0.00,3519023674957.583008,3519023669551.307617,199,0,0.002963,0.004599,5589034,4732350,0,0,11728,0,1,1 +1773536939.662609,2.06,4,3992.50,65.82,1089.74,2576.89,0.00,3517465540684.598633,0.000000,11,0,0.003931,0.007584,5589134,4732492,0,0,11730,0,1,1 +1773536944.665531,2.01,4,3992.50,65.80,1090.62,2576.02,0.00,0.049971,0.000000,70,0,0.003876,0.007128,5589234,4732633,0,0,11733,0,1,1 +1773536949.664253,2.76,4,3992.50,66.03,1085.07,2585.16,0.00,3519336521837.390137,0.000000,11,0,0.006550,0.009220,5589390,4732821,0,0,11735,0,1,1 +1773536954.664802,2.31,4,3992.50,65.64,1100.13,2570.10,0.00,0.000000,0.000000,11,0,0.003886,0.007140,5589491,4732963,0,0,11738,0,1,1 +1773536959.661271,1.96,4,3992.50,65.63,1100.78,2569.46,0.00,0.177078,0.000000,199,0,0.003423,0.005859,5589577,4733079,0,0,11740,0,1,1 +1773536964.661279,2.16,4,3992.50,65.62,1100.94,2569.30,0.00,3518431474543.455566,0.000000,70,0,0.003878,0.007132,5589677,4733220,0,0,11743,0,1,1 +1773536969.662807,7.75,4,3992.50,65.92,1071.96,2580.82,0.00,1.441454,0.022064,221,69,0.001415,0.001816,5589708,4733257,0,0,11745,0,1,1 +1773536974.665453,5.68,4,3992.50,65.93,1072.81,2581.15,0.00,3516575900730.385742,3516575900731.854980,11,0,0.001264,0.001679,5589738,4733293,0,0,11748,0,1,1 +1773536979.661278,6.83,4,3992.50,65.41,1093.11,2560.85,0.00,335.675463,6166.090507,61142,815379,0.003801,0.001842,5589807,4733347,0,0,11750,0,1,1 +1773536984.661190,8.50,4,3992.50,65.85,1074.49,2578.33,0.00,3518499811105.335449,3518499805278.214844,221,71,0.007814,0.003348,5589949,4733442,0,0,11753,0,1,1 +1773536989.661292,5.39,4,3992.50,65.28,1090.89,2555.93,0.00,3518365615067.203613,3518365615068.623047,70,0,0.011099,0.006841,5590141,4733599,0,0,11755,0,1,1 +1773536994.661188,7.29,4,3992.50,67.57,1002.12,2645.61,0.00,331.316244,6642.302168,60416,818581,0.000154,0.000713,5590151,4733617,0,0,11758,0,1,1 +1773536999.661277,3.52,4,3992.50,65.39,1087.86,2560.26,0.00,3518374429495.229004,3518374423182.528320,238,2,0.003280,0.002386,5590199,4733655,0,0,11760,0,1,1 +1773537004.664563,6.22,4,3992.50,65.53,1098.87,2565.46,0.00,3516126307299.412598,0.021861,221,77,2.015046,0.013139,5590875,4734150,0,0,11763,0,1,1 +1773537009.662309,26.19,4,3992.50,65.35,1108.66,2558.48,0.00,3520024293498.995605,3520024293500.466309,11,0,38.235363,0.158137,5603030,4742991,0,0,11765,0,1,1 +1773537014.663899,1.96,4,3992.50,65.28,1111.07,2556.02,0.00,335.365881,6723.832191,61206,820599,0.003877,0.007105,5603130,4743130,0,0,11768,0,1,1 +1773537019.662578,2.26,4,3992.50,65.07,1119.61,2547.48,0.00,0.000000,0.003321,61206,820602,0.002815,0.005632,5603205,4743240,0,0,11770,0,1,1 +1773537024.661212,2.01,4,3992.50,64.94,1124.43,2542.67,0.00,3519398729397.041016,3519398723004.742676,70,0,0.005308,0.008580,5603308,4743384,0,0,11773,0,1,1 +1773537029.661282,2.01,4,3992.50,64.77,1131.30,2535.80,0.00,0.000000,0.000000,70,0,0.003420,0.005855,5603394,4743500,0,0,11775,0,1,1 +1773537034.666074,2.06,4,3992.50,64.83,1128.87,2538.23,0.00,0.126832,0.000000,199,0,0.003417,0.005859,5603480,4743617,0,0,11778,0,1,1 +1773537039.664576,2.61,4,3992.50,65.17,1122.52,2551.67,0.00,3519491661254.955078,0.000000,70,0,0.003887,0.007133,5603581,4743758,0,0,11780,0,1,1 +1773537044.666041,2.01,4,3992.50,65.06,1122.26,2547.21,0.00,1.958215,0.000195,238,2,0.003877,0.007130,5603681,4743899,0,0,11783,0,1,1 +1773537049.665346,2.11,4,3992.50,65.01,1124.10,2545.38,0.00,333.510140,6727.150081,61206,820827,0.003879,0.007767,5603781,4744043,0,0,11785,0,1,1 +1773537054.661191,2.11,4,3992.50,65.01,1124.27,2545.21,0.00,3521363245897.637695,3521363239501.581055,11,0,0.003423,0.005870,5603867,4744160,0,0,11788,0,1,1 +1773537059.666169,2.01,4,3992.50,64.96,1126.16,2543.31,0.00,335.138921,6719.597217,61206,820918,0.003874,0.007276,5603967,4744301,0,0,11790,0,1,1 +1773537064.665724,6.73,4,3992.50,65.52,1086.82,2565.10,0.00,3518750240087.835938,3518750233696.453125,11,0,0.002055,0.002555,5604012,4744350,0,0,11793,0,1,1 +1773537069.665112,7.74,4,3992.50,65.95,1070.06,2582.01,0.00,1.492077,0.022073,221,80,0.001240,0.001670,5604040,4744385,0,0,11795,0,1,1 +1773537074.661946,5.66,4,3992.50,65.57,1084.48,2567.37,0.00,334.262602,7206.293059,61239,824365,0.000971,0.000559,5604058,4744399,0,0,11798,0,1,1 +1773537079.665817,10.82,4,3992.50,65.77,1078.04,2575.13,0.00,3515714858343.971191,3515714851481.067383,238,2,0.014049,0.006973,5604313,4744575,0,0,11800,0,1,1 +1773537084.663560,26.09,4,3992.50,65.88,1072.83,2579.19,0.00,0.000000,0.000000,238,2,0.000000,0.000674,5604313,4744582,0,0,11803,0,1,1 +1773537089.664016,28.49,4,3992.50,65.73,1078.67,2573.45,0.00,333.504471,7590.935184,61240,827302,0.000244,0.000672,5604321,4744597,0,0,11805,0,1,1 +1773537094.664874,29.26,4,3992.50,68.02,989.72,2663.27,0.00,3517833587000.296387,3517833579745.458008,11,0,0.003516,0.002419,5604377,4744647,0,0,11808,0,1,1 +1773537099.664937,21.65,4,3992.50,67.58,1024.79,2645.86,0.00,1.491876,0.022070,221,89,4.090881,0.025596,5605837,4745759,0,0,11810,0,1,1 +1773537104.665546,12.82,4,3992.50,66.57,1061.93,2606.43,0.00,334.014190,7750.891849,61244,829066,18.040550,0.074981,5611498,4749917,0,0,11813,0,1,1 +1773537109.664444,12.68,4,3992.50,66.26,1074.12,2594.21,0.00,3519212993009.963379,3519212985591.839355,199,0,18.116884,0.083861,5617469,4754503,0,0,11815,0,1,1 +1773537114.664916,2.06,4,3992.50,65.53,1102.88,2565.46,0.00,0.000000,0.000000,199,0,0.003420,0.006508,5617555,4754624,0,0,11818,0,1,1 +1773537119.664829,2.01,4,3992.50,65.54,1102.42,2565.91,0.00,1.831868,0.000195,238,2,0.003899,0.007131,5617657,4754765,0,0,11820,0,1,1 +1773537124.665413,2.36,4,3992.50,65.54,1102.33,2566.00,0.00,3518026854971.141602,3518026854973.149902,11,0,0.003878,0.007132,5617757,4754906,0,0,11823,0,1,1 +1773537129.663060,2.51,4,3992.50,65.95,1086.99,2581.97,0.00,0.177036,0.000000,199,0,0.003892,0.007113,5617858,4755045,0,0,11825,0,1,1 +1773537134.665173,2.01,4,3992.50,65.83,1091.32,2577.49,0.00,1.314386,0.022061,221,89,0.003419,0.005863,5617944,4755162,0,0,11828,0,1,1 +1773537139.665969,2.16,4,3992.50,65.77,1093.89,2574.92,0.00,329.945422,7751.360814,60491,829808,0.003877,0.007121,5618044,4755302,0,0,11830,0,1,1 +1773537144.664636,2.06,4,3992.50,65.77,1093.92,2574.89,0.00,3519375752159.928711,3519375744734.812988,238,2,0.003887,0.007130,5618145,4755443,0,0,11833,0,1,1 +1773537149.665014,2.11,4,3992.50,65.75,1094.38,2574.43,0.00,329.456158,7752.075308,60491,829850,0.003878,0.007122,5618245,4755583,0,0,11835,0,1,1 +1773537154.665558,2.11,4,3992.50,65.75,1094.65,2574.17,0.00,3518054379505.027832,3518054372082.655762,238,2,0.003420,0.005864,5618331,4755700,0,0,11838,0,1,1 +1773537159.661172,8.47,4,3992.50,66.29,1057.31,2595.23,0.00,333.834721,7972.382909,61249,831610,0.001888,0.003086,5618377,4755761,0,0,11840,0,1,1 +1773537164.665249,3.71,4,3992.50,65.99,1067.92,2583.59,0.00,3515570557472.235840,3515570549848.562988,70,0,0.000465,0.001304,5618392,4755789,0,0,11843,0,1,1 +1773537169.661215,7.69,4,3992.50,66.15,1061.46,2589.96,0.00,0.000000,0.000000,70,0,0.003244,0.002926,5618455,4755848,0,0,11845,0,1,1 +1773537174.665350,9.74,4,3992.50,65.84,1073.41,2577.95,0.00,0.000000,0.000000,70,0,0.006257,0.002357,5618560,4755917,0,0,11848,0,1,1 +1773537179.665621,7.70,4,3992.50,65.86,1079.32,2578.53,0.00,1.441816,0.022069,221,98,0.000229,0.001297,5618567,4755935,0,0,11850,0,1,1 +1773537184.661186,4.12,4,3992.50,65.60,1090.52,2568.41,0.00,3521561025788.814941,3521561025790.286133,11,0,0.000000,0.000030,5618567,4755938,0,0,11853,0,1,1 +1773537189.664638,25.01,4,3992.50,66.22,1070.53,2592.57,0.00,2.007403,0.000195,238,2,34.181850,0.152083,5629532,4764068,0,0,11855,0,1,1 +1773537194.663617,6.28,4,3992.50,65.16,1111.98,2551.09,0.00,3519155740246.599121,3519155740248.607910,11,0,6.049368,0.034454,5631739,4765719,0,0,11858,0,1,1 +1773537199.661250,1.96,4,3992.50,65.17,1111.54,2551.54,0.00,0.000000,0.000000,11,0,0.003422,0.005858,5631825,4765835,0,0,11860,0,1,1 +1773537204.664021,2.21,4,3992.50,65.19,1110.57,2552.50,0.00,0.000000,0.000000,11,0,0.003257,0.006891,5631913,4765969,0,0,11863,0,1,1 +1773537209.665916,1.91,4,3992.50,65.15,1112.16,2550.91,0.00,1.491329,0.022062,221,101,0.003877,0.007120,5632013,4766109,0,0,11865,0,1,1 +1773537214.665430,2.06,4,3992.50,65.18,1110.97,2552.09,0.00,3518778846416.150879,3518778846417.621094,11,0,0.003886,0.007141,5632114,4766251,0,0,11868,0,1,1 +1773537219.661205,2.21,4,3992.50,65.60,1098.46,2568.49,0.00,0.050042,0.000000,70,0,0.003423,0.005860,5632200,4766367,0,0,11870,0,1,1 +1773537224.661188,1.86,4,3992.50,65.47,1103.82,2563.13,0.00,3518449295460.169922,0.000000,11,0,0.003420,0.005865,5632286,4766484,0,0,11873,0,1,1 +1773537229.661171,1.86,4,3992.50,65.40,1106.55,2560.41,0.00,0.050000,0.000000,70,0,0.003853,0.007122,5632384,4766624,0,0,11875,0,1,1 +1773537234.661231,2.21,4,3992.50,65.40,1106.33,2560.63,0.00,332.892108,8588.051873,61228,837644,0.003878,0.007132,5632484,4766765,0,0,11878,0,1,1 +1773537239.661227,4.02,4,3992.50,65.55,1100.41,2566.55,0.00,3518439471610.698730,3518439463355.308105,199,0,0.004862,0.008264,5632587,4766911,0,0,11880,0,1,1 +1773537244.661196,1.91,4,3992.50,65.53,1101.49,2565.47,0.00,1.314950,0.022070,221,101,0.003865,0.007120,5632686,4767051,0,0,11883,0,1,1 +1773537249.661289,2.56,4,3992.50,65.99,1086.32,2583.63,0.00,0.516885,3518371128243.995605,238,2,0.007217,0.010152,5632845,4767242,0,0,11885,0,1,1 +1773537254.665745,1.91,4,3992.50,65.73,1093.63,2573.36,0.00,3515304952648.063477,3515304952650.020508,70,0,0.003849,0.007126,5632943,4767383,0,0,11888,0,1,1 +1773537259.663021,19.31,4,3992.50,66.17,1076.08,2590.84,0.00,1.959857,0.000195,238,2,18.210097,0.089553,5639027,4771857,0,0,11890,0,1,1 +1773537264.661287,14.34,4,3992.50,66.00,1082.73,2584.17,0.00,335.120597,8591.722231,61994,838853,22.071214,0.102180,5646369,4777426,0,0,11893,0,1,1 +1773537269.665872,1.96,4,3992.50,65.81,1090.37,2576.54,0.00,3515213667623.555664,3515213659379.335938,70,0,0.003849,0.007116,5646467,4777566,0,0,11895,0,1,1 +1773537274.665503,1.91,4,3992.50,65.81,1090.38,2576.53,0.00,1.958934,0.000195,238,2,0.003878,0.007133,5646567,4777707,0,0,11898,0,1,1 +1773537279.665334,2.61,4,3992.50,66.03,1085.60,2585.09,0.00,335.015696,8589.669835,61994,839226,0.003866,0.007123,5646666,4777847,0,0,11900,0,1,1 +1773537284.665453,1.81,4,3992.50,66.05,1080.09,2585.95,0.00,3518353346483.337891,3518353338230.990723,199,0,0.003490,0.005923,5646757,4777969,0,0,11903,0,1,1 +1773537289.666181,1.81,4,3992.50,66.05,1080.11,2585.93,0.00,332.726934,8588.459487,61236,839339,0.003877,0.007121,5646857,4778109,0,0,11905,0,1,1 +1773537294.665483,1.86,4,3992.50,66.07,1079.14,2586.89,0.00,3518929015478.514648,3518929007219.132812,221,101,0.003484,0.005928,5646948,4778230,0,0,11908,0,1,1 +1773537299.666066,2.06,4,3992.50,66.08,1078.93,2587.09,0.00,331.421805,8588.728528,61236,839395,0.003878,0.007122,5647048,4778370,0,0,11910,0,1,1 +1773537304.662549,2.11,4,3992.50,66.08,1078.94,2587.07,0.00,3520913489541.288086,3520913481278.677734,11,0,0.003423,0.006514,5647134,4778491,0,0,11913,0,1,1 +1773537309.661758,2.46,4,3992.50,66.07,1079.30,2586.73,0.00,1.492130,0.022074,221,101,0.003887,0.007132,5647235,4778632,0,0,11915,0,1,1 +1773537314.665795,2.11,4,3992.50,66.07,1079.32,2586.71,0.00,0.516478,3515599323594.230957,238,2,0.003862,0.007127,5647334,4778773,0,0,11918,0,1,1 +1773537319.665977,2.21,4,3992.50,65.98,1082.74,2583.30,0.00,330.931499,8589.624200,61236,839569,0.003865,0.007122,5647433,4778913,0,0,11920,0,1,1 +1773537324.665489,2.31,4,3992.50,65.71,1093.17,2572.87,0.00,4.061236,0.066413,61994,839716,0.004330,0.006535,5647520,4779033,0,0,11923,0,1,1 +1773537329.667220,23.40,4,3992.50,66.64,1057.08,2608.92,0.00,3517219543624.456543,3517219535372.853027,221,101,26.257331,0.124812,5656181,4785440,0,0,11925,0,1,1 +1773537334.661734,11.14,4,3992.50,65.61,1097.12,2568.82,0.00,0.517462,3522301892608.956543,238,2,14.006600,0.064124,5660628,4788750,0,0,11928,0,1,1 +1773537339.664238,1.86,4,3992.50,65.62,1096.89,2569.04,0.00,3516675876142.120605,3516675876143.951660,199,0,0.002961,0.004586,5660700,4788842,0,0,11930,0,1,1 +1773537344.665230,2.71,4,3992.50,66.23,1075.70,2593.20,0.00,1.314681,0.022066,221,101,0.003420,0.005864,5660786,4788959,0,0,11933,0,1,1 +1773537349.665730,2.06,4,3992.50,66.22,1076.21,2592.68,0.00,331.456993,8590.090057,61243,840937,0.003865,0.007122,5660885,4789099,0,0,11935,0,1,1 +1773537354.666024,2.06,4,3992.50,66.26,1074.81,2594.08,0.00,4.060600,0.054684,62001,841046,0.003886,0.007140,5660986,4789241,0,0,11938,0,1,1 +1773537359.661275,1.86,4,3992.50,66.26,1074.58,2594.31,0.00,3521782692912.541016,3521782684648.698730,238,2,0.003424,0.005861,5661072,4789357,0,0,11940,0,1,1 +1773537364.665751,2.26,4,3992.50,66.26,1074.59,2594.31,0.00,330.677168,8583.543677,61243,840994,0.003875,0.007126,5661172,4789498,0,0,11943,0,1,1 +1773537369.661280,2.46,4,3992.50,66.23,1087.78,2592.98,0.00,3521586662811.514648,3521586654545.875000,11,0,0.003881,0.007773,5661272,4789642,0,0,11945,0,1,1 +1773537374.661281,2.16,4,3992.50,66.17,1089.80,2590.54,0.00,0.050000,0.000000,70,0,0.003865,0.007132,5661371,4789783,0,0,11948,0,1,1 +1773537379.661279,1.96,4,3992.50,65.99,1096.71,2583.62,0.00,3518438518445.966797,0.000000,11,0,0.003420,0.005855,5661457,4789899,0,0,11950,0,1,1 +1773537384.665900,4.72,4,3992.50,65.95,1098.43,2581.91,0.00,0.000000,0.000000,11,0,0.003882,0.007134,5661558,4790041,0,0,11953,0,1,1 +1773537389.665001,2.26,4,3992.50,65.97,1097.46,2582.88,0.00,0.000000,0.000000,11,0,0.003879,0.007124,5661658,4790181,0,0,11955,0,1,1 +1773537394.665480,3.82,4,3992.50,65.84,1102.43,2577.91,0.00,0.000000,0.000000,11,0,0.011785,0.011947,5661889,4790414,0,0,11958,0,1,1 +1773537399.665556,22.45,4,3992.50,66.51,1075.32,2604.00,0.00,0.000000,0.000000,11,0,30.191492,0.137807,5671832,4797724,0,0,11960,0,1,1 +1773537404.665120,7.90,4,3992.50,66.23,1086.40,2593.04,0.00,1.492025,0.022072,221,101,10.065490,0.048303,5675159,4800267,0,0,11963,0,1,1 +1773537409.661274,2.31,4,3992.50,66.05,1093.59,2585.86,0.00,331.750798,8599.320420,61250,842766,0.003431,0.005880,5675246,4800385,0,0,11965,0,1,1 +1773537414.661704,2.01,4,3992.50,66.05,1093.60,2585.85,0.00,3518134643341.869629,3518134635082.839355,11,0,0.003890,0.007132,5675347,4800526,0,0,11968,0,1,1 +1773537419.661181,2.06,4,3992.50,66.05,1093.62,2585.83,0.00,337.083600,8593.680766,62008,842880,0.003878,0.007123,5675447,4800666,0,0,11970,0,1,1 +1773537424.665284,4.07,4,3992.50,65.71,1106.76,2572.69,0.00,3515552094081.158203,3515552085832.144043,70,0,0.003646,0.006481,5675540,4800794,0,0,11973,0,1,1 +1773537429.665956,2.76,4,3992.50,65.72,1097.80,2573.12,0.00,0.126936,0.000000,199,0,0.003649,0.006501,5675633,4800923,0,0,11975,0,1,1 +1773537434.662094,2.01,4,3992.50,65.54,1104.61,2565.99,0.00,1.315958,0.022087,221,101,0.003881,0.007770,5675733,4801067,0,0,11978,0,1,1 +1773537439.661101,2.21,4,3992.50,65.50,1106.20,2564.41,0.00,335.623128,8594.964501,62008,843264,0.003442,0.005864,5675821,4801184,0,0,11980,0,1,1 +1773537444.665333,2.01,4,3992.50,65.50,1105.97,2564.64,0.00,3515461268633.875977,3515461260384.628906,11,0,0.003417,0.005860,5675907,4801301,0,0,11983,0,1,1 +1773537449.665540,2.36,4,3992.50,65.50,1105.99,2564.62,0.00,1.491833,0.022069,221,101,0.003865,0.007122,5676006,4801441,0,0,11985,0,1,1 +1773537454.665473,2.11,4,3992.50,65.50,1106.00,2564.61,0.00,0.000000,0.000000,221,101,0.003878,0.007120,5676106,4801581,0,0,11988,0,1,1 +1773537459.665563,2.36,4,3992.50,65.86,1092.87,2578.54,0.00,3518373587539.474609,3518373587540.944336,11,0,0.003865,0.007110,5676205,4801720,0,0,11990,0,1,1 +1773537464.666101,9.14,4,3992.50,65.49,1106.55,2564.12,0.00,337.012106,8592.640321,62008,843601,8.051382,0.040923,5678877,4803732,0,0,11993,0,1,1 +1773537469.665529,21.01,4,3992.50,66.26,1076.49,2594.11,0.00,3518839620563.079102,0.614426,61255,844397,30.213626,0.140183,5688919,4811238,0,0,11995,0,1,1 +1773537474.665997,5.28,4,3992.50,65.65,1100.39,2570.22,0.00,3518107898171.441895,3518107889910.851074,199,0,2.004561,0.017986,5689780,4811928,0,0,11998,0,1,1 +1773537479.663739,2.11,4,3992.50,65.53,1104.80,2565.80,0.00,0.000000,0.000000,199,0,0.003880,0.007126,5689880,4812068,0,0,12000,0,1,1 +1773537484.664917,1.91,4,3992.50,65.56,1103.85,2566.75,0.00,336.799041,8592.382842,62017,844749,0.003865,0.007118,5689979,4812208,0,0,12003,0,1,1 +1773537489.665026,2.51,4,3992.50,66.00,1087.53,2583.93,0.00,3518360966367.726074,3518360958110.502441,70,0,0.003663,0.006521,5690073,4812338,0,0,12005,0,1,1 +1773537494.665141,2.11,4,3992.50,65.94,1089.11,2581.56,0.00,3518355849015.154785,0.000000,11,0,0.003635,0.006453,5690165,4812464,0,0,12008,0,1,1 +1773537499.663843,2.16,4,3992.50,65.91,1089.96,2580.71,0.00,337.142936,8597.117870,62017,845038,0.003887,0.007776,5690266,4812609,0,0,12010,0,1,1 +1773537504.664619,2.21,4,3992.50,65.96,1088.06,2582.61,0.00,3517891019379.369141,3517891011122.771484,70,0,0.003395,0.005864,5690350,4812726,0,0,12013,0,1,1 +1773537509.665564,1.96,4,3992.50,65.96,1088.08,2582.59,0.00,3517772148730.472656,0.000000,11,0,0.003407,0.005841,5690435,4812841,0,0,12015,0,1,1 +1773537514.666069,1.96,4,3992.50,65.96,1088.17,2582.50,0.00,0.049995,0.000000,70,0,0.003878,0.007132,5690535,4812982,0,0,12018,0,1,1 +1773537519.665224,2.66,4,3992.50,66.11,1083.84,2588.41,0.00,0.126975,0.000000,199,0,0.003879,0.007124,5690635,4813122,0,0,12020,0,1,1 +1773537524.661282,1.91,4,3992.50,66.06,1085.85,2586.21,0.00,3521213175600.315918,0.000000,11,0,0.003881,0.007125,5690735,4813262,0,0,12023,0,1,1 +1773537529.665368,2.16,4,3992.50,66.06,1085.76,2586.30,0.00,0.000000,0.000000,11,0,0.003425,0.005871,5690822,4813380,0,0,12025,0,1,1 +1773537534.665873,13.02,4,3992.50,65.95,1089.76,2582.25,0.00,0.176935,0.000000,199,0,14.092836,0.070879,5695594,4817020,0,0,12028,0,1,1 +1773537539.664280,21.28,4,3992.50,66.44,1070.60,2601.38,0.00,0.000000,0.000000,199,0,26.172013,0.120982,5704025,4823496,0,0,12030,0,1,1 +1773537544.661189,2.66,4,3992.50,66.45,1070.36,2601.62,0.00,0.000000,0.000000,199,0,0.008968,0.010065,5704220,4823707,0,0,12033,0,1,1 +1773537549.665458,2.52,4,3992.50,66.79,1057.77,2615.01,0.00,1.313820,0.022051,221,101,0.007211,0.010131,5704379,4823897,0,0,12035,0,1,1 +1773537554.662140,2.11,4,3992.50,66.60,1065.30,2607.44,0.00,3520774050129.536621,3520774050131.007324,11,0,0.003431,0.005877,5704466,4824015,0,0,12038,0,1,1 +1773537559.665728,2.21,4,3992.50,66.60,1065.10,2607.64,0.00,0.049964,0.000000,70,0,0.002960,0.004585,5704538,4824107,0,0,12040,0,1,1 +1773537564.665977,2.06,4,3992.50,66.35,1074.99,2597.75,0.00,0.000000,0.000000,70,0,0.003878,0.007776,5704638,4824252,0,0,12043,0,1,1 +1773537569.665734,2.11,4,3992.50,66.35,1075.01,2597.73,0.00,1.958884,0.000195,238,2,0.003420,0.005855,5704724,4824368,0,0,12045,0,1,1 +1773537574.665983,2.56,4,3992.50,66.26,1078.54,2594.21,0.00,0.000000,0.000000,238,2,0.003878,0.007132,5704824,4824509,0,0,12048,0,1,1 +1773537579.665283,2.46,4,3992.50,65.83,1090.21,2577.45,0.00,3518929679572.410156,0.021878,221,101,0.003879,0.007123,5704924,4824649,0,0,12050,0,1,1 +1773537584.661281,2.36,4,3992.50,65.49,1103.69,2563.96,0.00,3521255792446.763184,3521255792448.234375,11,0,0.003710,0.006550,5705021,4824782,0,0,12053,0,1,1 +1773537589.661203,2.01,4,3992.50,65.39,1107.55,2560.10,0.00,337.063716,8596.703835,62021,846749,0.003649,0.006501,5705114,4824911,0,0,12055,0,1,1 +1773537594.661564,1.86,4,3992.50,65.40,1107.13,2560.52,0.00,3518183741702.157715,3518183733443.190430,70,0,0.003916,0.007194,5705217,4825056,0,0,12058,0,1,1 +1773537599.666129,2.20,4,3992.50,65.40,1107.20,2560.46,0.00,3515227889482.476074,0.000000,11,0,0.003874,0.007116,5705317,4825196,0,0,12060,0,1,1 +1773537604.665541,18.66,4,3992.50,66.02,1082.77,2584.83,0.00,333.047710,8597.743878,61274,847094,20.135818,0.099510,5712026,4830284,0,0,12063,0,1,1 +1773537609.665390,16.31,4,3992.50,66.78,1060.20,2614.49,0.00,3518543287706.363770,3518543279440.380371,238,2,20.126722,0.091240,5718538,4835138,0,0,12065,0,1,1 +1773537614.661744,2.06,4,3992.50,66.30,1079.00,2595.75,0.00,3521005113120.241211,3521005113122.250977,11,0,0.003431,0.005877,5718625,4835256,0,0,12068,0,1,1 +1773537619.665309,2.06,4,3992.50,65.95,1092.85,2581.90,0.00,0.000000,0.000000,11,0,0.003647,0.006459,5718718,4835382,0,0,12070,0,1,1 +1773537624.665576,2.36,4,3992.50,65.95,1092.62,2582.13,0.00,0.000000,0.000000,11,0,0.004113,0.005913,5718799,4835491,0,0,12073,0,1,1 +1773537629.665598,2.06,4,3992.50,65.95,1092.68,2582.07,0.00,1.491888,0.022070,221,101,0.004090,0.007421,5718888,4835613,0,0,12075,0,1,1 +1773537634.665305,2.01,4,3992.50,65.91,1094.30,2580.44,0.00,0.516925,3518643798312.779297,238,2,0.003866,0.007133,5718987,4835754,0,0,12078,0,1,1 +1773537639.665551,2.41,4,3992.50,66.17,1084.15,2590.73,0.00,0.000000,0.000000,238,2,0.004497,0.007375,5719099,4835901,0,0,12080,0,1,1 +1773537644.661182,2.16,4,3992.50,65.80,1098.57,2576.16,0.00,3521514480788.714355,3521514480790.724609,11,0,0.003889,0.007147,5719200,4836043,0,0,12083,0,1,1 +1773537649.661243,2.16,4,3992.50,65.80,1098.59,2576.15,0.00,1.491876,0.022070,221,101,0.003408,0.005855,5719285,4836159,0,0,12085,0,1,1 +1773537654.664331,2.16,4,3992.50,65.73,1101.09,2573.65,0.00,0.000000,0.000000,221,101,0.003876,0.007115,5719385,4836299,0,0,12088,0,1,1 +1773537659.661741,1.96,4,3992.50,65.55,1108.24,2566.49,0.00,0.000000,0.000000,221,101,0.003867,0.007126,5719484,4836439,0,0,12090,0,1,1 +1773537664.665411,2.51,4,3992.50,65.41,1113.77,2560.96,0.00,3515857307947.709473,3515857307949.178223,11,0,0.003863,0.007127,5719583,4836580,0,0,12093,0,1,1 +1773537669.665726,2.52,4,3992.50,65.65,1106.64,2570.27,0.00,0.000000,0.000000,11,0,0.003420,0.005855,5719669,4836696,0,0,12095,0,1,1 +1773537674.665867,22.89,4,3992.50,66.08,1088.80,2587.34,0.00,0.049999,0.000000,70,0,28.177840,0.132247,5729013,4843723,0,0,12098,0,1,1 +1773537679.665074,9.51,4,3992.50,65.92,1095.19,2580.93,0.00,337.095566,8600.286413,62046,849696,12.087067,0.061939,5733216,4846952,0,0,12100,0,1,1 +1773537684.661259,2.01,4,3992.50,65.92,1095.15,2580.97,0.00,3521123709034.793945,3521123700766.656250,11,0,0.003234,0.005724,5733298,4847067,0,0,12103,0,1,1 +1773537689.662727,2.36,4,3992.50,65.84,1098.21,2577.90,0.00,332.933488,8596.435128,61288,849619,0.004038,0.006081,5733396,4847188,0,0,12105,0,1,1 +1773537694.665958,2.06,4,3992.50,65.80,1100.00,2576.12,0.00,3516164930564.286621,3516164922303.646973,70,0,0.003863,0.007771,5733495,4847333,0,0,12108,0,1,1 +1773537699.665346,2.71,4,3992.50,66.16,1085.48,2590.31,0.00,3518868090058.135742,0.000000,11,0,0.002814,0.005619,5733570,4847442,0,0,12110,0,1,1 +1773537704.666096,2.16,4,3992.50,66.17,1084.97,2590.82,0.00,0.049993,0.000000,70,0,0.003852,0.007131,5733668,4847583,0,0,12113,0,1,1 +1773537709.664719,1.91,4,3992.50,66.18,1084.76,2591.03,0.00,1.959329,0.000195,238,2,0.003887,0.007132,5733769,4847724,0,0,12115,0,1,1 +1773537714.664023,2.26,4,3992.50,66.18,1084.55,2591.25,0.00,3518926612045.185547,3518926612047.194824,11,0,0.003879,0.007121,5733869,4847864,0,0,12118,0,1,1 +1773537719.662398,2.06,4,3992.50,66.16,1085.59,2590.20,0.00,0.050016,0.000000,70,0,0.003421,0.005857,5733955,4847980,0,0,12120,0,1,1 +1773537724.663526,1.91,4,3992.50,66.18,1084.62,2591.16,0.00,336.966073,8597.749178,62046,850126,0.003865,0.007131,5734054,4848121,0,0,12123,0,1,1 +1773537729.664106,2.46,4,3992.50,66.14,1089.79,2589.48,0.00,3518029122796.710449,3518029114535.072266,11,0,0.003878,0.007122,5734154,4848261,0,0,12125,0,1,1 +1773537734.664689,2.36,4,3992.50,66.16,1088.83,2590.45,0.00,0.176932,0.000000,199,0,0.003878,0.007132,5734254,4848402,0,0,12128,0,1,1 +1773537739.665366,3.66,4,3992.50,66.15,1089.25,2590.02,0.00,3517960630756.424316,0.000000,70,0,0.010398,0.009413,5734460,4848598,0,0,12130,0,1,1 +1773537744.664675,23.67,4,3992.50,67.15,1050.10,2629.12,0.00,3518923726128.323242,0.000000,11,0,30.197732,0.136694,5744394,4855872,0,0,12133,0,1,1 +1773537749.665072,7.34,4,3992.50,66.87,1061.17,2618.04,0.00,0.176939,0.000000,199,0,10.061922,0.049293,5747697,4858392,0,0,12135,0,1,1 +1773537754.661200,2.16,4,3992.50,66.59,1072.00,2607.20,0.00,3521163566254.126953,0.000000,70,0,0.002494,0.003333,5747754,4858461,0,0,12138,0,1,1 +1773537759.662184,2.51,4,3992.50,66.74,1066.71,2612.93,0.00,3517745143181.759277,0.000000,11,0,0.003865,0.007121,5747853,4858601,0,0,12140,0,1,1 +1773537764.661108,1.96,4,3992.50,66.55,1073.51,2605.70,0.00,2.009221,0.000195,238,2,0.003421,0.006510,5747939,4858722,0,0,12143,0,1,1 +1773537769.662177,2.16,4,3992.50,66.55,1073.54,2605.68,0.00,3517685468240.035156,3517685468242.042969,11,0,0.003865,0.007108,5748038,4858861,0,0,12145,0,1,1 +1773537774.662084,2.11,4,3992.50,66.08,1092.05,2587.17,0.00,0.000000,0.000000,11,0,0.003866,0.007132,5748137,4859002,0,0,12148,0,1,1 +1773537779.664138,2.21,4,3992.50,66.08,1092.13,2587.08,0.00,0.176880,0.000000,199,0,0.003876,0.007119,5748237,4859142,0,0,12150,0,1,1 +1773537784.664661,2.01,4,3992.50,66.09,1091.66,2587.55,0.00,332.825737,8600.581542,61296,852017,0.003420,0.005852,5748323,4859258,0,0,12153,0,1,1 +1773537789.665205,2.46,4,3992.50,66.16,1097.53,2590.15,0.00,3518054160703.804199,3518054152434.791504,221,101,0.003886,0.007117,5748424,4859398,0,0,12155,0,1,1 +1773537794.667207,12.27,4,3992.50,72.25,915.66,2828.70,0.00,3517029161333.177246,3517029161334.596680,70,0,0.003891,0.007142,5748525,4859540,0,0,12158,0,1,1 +1773537799.665791,31.01,4,3992.50,81.47,541.95,3189.70,0.00,0.126989,0.000000,199,0,0.003884,0.007162,5748625,4859683,0,0,12160,0,1,1 +1773537804.665487,31.91,4,3992.50,92.23,127.10,3611.06,0.00,704.912711,8606.608465,86571,855845,0.003425,0.005916,5748711,4859804,0,0,12163,0,1,1 +1773537809.666435,38.60,4,3992.50,86.25,337.35,3376.92,0.00,3517770433790.396973,3517770425888.846680,238,2,2.028740,0.024297,5749608,4860573,0,0,12165,0,1,1 +1773537814.665056,60.33,4,3992.50,95.80,0.84,3750.63,0.00,1255.107664,8614.191487,123518,861372,32.185691,0.128873,5758949,4867500,0,0,12168,0,1,1 +1773537819.662643,38.94,4,3992.50,74.81,804.31,2928.99,0.00,3520135624487.373047,3520135617128.776855,11,0,6.042346,0.027853,5760826,4868929,0,0,12170,0,1,1 +1773537824.662989,25.62,4,3992.50,65.30,1177.02,2556.59,0.00,1661.582120,8615.791307,152021,865368,0.006676,0.008801,5760976,4869111,0,0,12173,0,1,1 +1773537829.665387,2.11,4,3992.50,65.03,1182.71,2546.12,0.00,1.902993,0.010151,152141,865384,0.004334,0.008401,5761090,4869275,0,0,12175,0,1,1 +1773537834.661272,2.01,4,3992.50,65.02,1182.55,2545.57,0.00,3521335237244.902832,3521335230286.380371,11,0,0.004606,0.009032,5761214,4869452,0,0,12178,0,1,1 +1773537839.661272,2.06,4,3992.50,65.05,1181.07,2546.69,0.00,1.491894,0.022070,221,101,0.006469,0.012047,5761366,4869677,0,0,12180,0,1,1 +1773537844.665629,2.36,4,3992.50,65.01,1181.38,2545.24,0.00,3515373940153.250000,3515373940154.718750,11,0,0.005018,0.010279,5761501,4869877,0,0,12183,0,1,1 +1773537849.663813,2.81,4,3992.50,65.42,1152.61,2561.46,0.00,0.050018,0.000000,70,0,0.007008,0.010501,5761671,4870090,0,0,12185,0,1,1 +1773537854.661236,2.01,4,3992.50,65.38,1154.09,2559.82,0.00,1666.290321,8621.030980,151723,865462,0.005025,0.010306,5761806,4870291,0,0,12188,0,1,1 +1773537859.665154,2.06,4,3992.50,65.34,1155.40,2558.30,0.00,3515681858361.192383,3515681851413.523926,238,2,0.004345,0.008383,5761921,4870455,0,0,12190,0,1,1 +1773537864.665809,2.51,4,3992.50,65.20,1160.68,2552.57,0.00,3517976494679.447754,3517976494681.456055,11,0,0.005017,0.010307,5762056,4870657,0,0,12193,0,1,1 +1773537869.665998,2.16,4,3992.50,65.25,1158.20,2554.60,0.00,1669.904140,8616.340625,152508,865615,0.005022,0.010290,5762191,4870857,0,0,12195,0,1,1 +1773537874.665170,2.11,4,3992.50,65.17,1161.21,2551.60,0.00,3519019702802.971191,3519019695854.945801,199,0,0.004349,0.008401,5762306,4871022,0,0,12198,0,1,1 +1773537879.661273,2.32,4,3992.50,65.60,1144.32,2568.38,0.00,3521181196374.205566,0.000000,11,0,0.005039,0.010299,5762442,4871222,0,0,12200,0,1,1 +1773537884.666029,22.88,4,3992.50,95.58,13.32,3742.00,0.00,0.000000,0.000000,11,0,8.177724,0.050254,5765235,4873350,0,0,12203,0,1,1 +1773537889.663072,54.36,4,3992.50,88.60,265.37,3468.90,0.00,0.000000,0.000000,11,0,28.048452,0.114599,5773479,4879546,0,0,12205,0,1,1 +1773537894.661813,35.20,4,3992.50,67.43,1093.42,2640.08,0.00,2295.461504,8625.157229,194416,871723,4.031817,0.019216,5774864,4880540,0,0,12208,0,1,1 +1773537899.662812,31.71,4,3992.50,91.67,147.53,3589.08,0.00,3517734413907.970215,3517734407580.955078,199,0,0.007289,0.011246,5775040,4880773,0,0,12210,0,1,1 +1773537904.665579,32.46,4,3992.50,73.59,856.02,2881.02,0.00,1.830823,0.000195,238,2,0.005047,0.010320,5775177,4880976,0,0,12213,0,1,1 +1773537909.668389,32.87,4,3992.50,95.04,38.04,3721.05,0.00,0.000000,0.000000,238,2,0.004333,0.008410,5775291,4881142,0,0,12215,0,1,1 +1773537914.662585,25.20,4,3992.50,65.68,1161.73,2571.67,0.00,3522525759441.895996,3522525759443.856445,70,0,0.005031,0.010350,5775426,4881346,0,0,12218,0,1,1 +1773537919.661376,4.12,4,3992.50,65.32,1171.05,2557.37,0.00,2960.975795,8635.140471,239602,880669,0.004337,0.008392,5775540,4881510,0,0,12220,0,1,1 +1773537924.662082,2.36,4,3992.50,65.23,1173.59,2553.80,0.00,3517940003503.208496,3517939997829.259766,238,2,0.004846,0.010153,5775672,4881709,0,0,12223,0,1,1 +1773537929.665238,2.26,4,3992.50,65.04,1179.44,2546.44,0.00,3516217765195.414551,3516217765197.372070,70,0,0.005966,0.010941,5775811,4881911,0,0,12225,0,1,1 +1773537934.663503,2.21,4,3992.50,65.01,1180.34,2545.28,0.00,1.959469,0.000195,238,2,0.005032,0.009325,5775930,4882078,0,0,12228,0,1,1 +1773537939.664011,2.56,4,3992.50,65.44,1152.81,2562.03,0.00,3518079344221.370605,3518079344223.378906,11,0,0.005043,0.010297,5776067,4882279,0,0,12230,0,1,1 +1773537944.664563,2.21,4,3992.50,65.29,1158.64,2556.09,0.00,1.491730,0.022068,221,101,0.005009,0.010287,5776201,4882479,0,0,12233,0,1,1 +1773537949.665270,2.36,4,3992.50,65.26,1159.12,2555.23,0.00,3517939649087.616699,3517939649088.909668,199,0,0.004323,0.008388,5776314,4882643,0,0,12235,0,1,1 +1773537954.665879,2.01,4,3992.50,65.08,1166.23,2548.10,0.00,0.000000,0.000000,199,0,0.005022,0.010943,5776449,4882848,0,0,12238,0,1,1 +1773537959.661186,18.54,4,3992.50,65.83,1109.75,2577.53,0.00,3521742091957.835938,0.000000,11,0,20.152114,0.096610,5783108,4887742,0,0,12240,0,1,1 +1773537964.665476,10.85,4,3992.50,66.02,1074.02,2584.73,0.00,2986.192193,8626.453581,239970,881798,14.078087,0.064764,5787796,4891196,0,0,12243,0,1,1 +1773537969.665549,8.84,4,3992.50,65.58,1092.11,2567.70,0.00,3518385940196.765625,3518385934551.570801,199,0,6.042855,0.030496,5789816,4892642,0,0,12245,0,1,1 +1773537974.666094,10.44,4,3992.50,83.88,461.52,3283.90,0.00,0.000000,0.000000,199,0,0.005017,0.010320,5789951,4892845,0,0,12248,0,1,1 +1773537979.667382,33.89,4,3992.50,88.54,252.97,3466.52,0.00,3285.718671,8635.738484,260608,885179,0.004219,0.011728,5790099,4893074,0,0,12250,0,1,0 +1773537984.661239,25.54,4,3992.50,88.53,251.03,3466.06,0.00,3522765124053.522461,3522765118695.719238,11,0,0.001158,0.003850,5790141,4893149,0,0,12253,0,1,0 +1773537989.662085,25.58,4,3992.50,88.48,251.83,3464.28,0.00,0.000000,0.000000,11,0,0.001748,0.005742,5790205,4893259,0,0,12255,0,1,0 +1773537994.661198,25.50,4,3992.50,88.52,250.23,3465.57,0.00,2.009146,0.000195,238,2,0.001736,0.005755,5790268,4893370,0,0,12258,0,1,0 +1773537999.666058,26.43,4,3992.50,95.71,9.59,3747.39,0.00,3306.312103,8629.935017,262887,885502,0.001734,0.005738,5790331,4893480,0,0,12260,0,1,0 +1773538004.666671,19.40,4,3992.50,37.88,2270.47,1482.91,0.00,3518006059153.541016,3518006053827.355469,70,0,0.002314,0.007660,5790415,4893627,0,0,12263,0,1,0 +1773538009.665751,0.45,4,3992.50,37.63,2276.98,1473.18,0.00,1.959149,0.000195,238,2,0.000579,0.001928,5790436,4893665,0,0,12265,0,1,0 +1773538014.665886,0.45,4,3992.50,37.63,2275.84,1473.17,0.00,3333.058508,8638.096348,264909,885508,0.001743,0.005762,5790500,4893777,0,0,12268,0,1,0 +1773538019.664096,0.60,4,3992.50,37.65,2273.81,1474.27,0.00,3519696848736.547852,3519696843430.006836,221,101,0.001711,0.006229,5790561,4893890,0,0,12270,0,1,0 +1773538024.665368,0.55,4,3992.50,37.63,2274.14,1473.46,0.00,3517542602121.006836,3517542602122.299316,199,0,0.001157,0.004006,5790603,4893966,0,0,12273,0,1,0 +1773538029.664008,0.95,4,3992.50,37.95,2255.45,1485.84,0.00,3519394478550.207520,0.000000,70,0,0.003485,0.011472,5790730,4894184,0,0,12275,0,1,0 +1773538034.665441,0.60,4,3992.50,37.89,2253.85,1483.42,0.00,0.000000,0.000000,70,0,0.001157,0.003845,5790772,4894259,0,0,12278,0,1,0 +1773538039.664550,51.36,4,3992.50,43.96,1984.91,1721.09,0.00,3367.076240,8640.061510,269789,885758,0.001660,0.005745,5790829,4894369,0,0,12280,0,1,1 +1773538044.665396,67.57,4,3992.50,47.33,1852.99,1852.97,0.00,3517842486103.666504,3517842480830.553711,238,2,0.001693,0.005761,5790889,4894481,0,0,12283,0,1,1 +1773538049.665532,77.11,4,3992.50,51.44,1691.98,2013.80,0.00,3387.182221,8638.440054,272339,885875,10.117188,0.060936,5794374,4897110,0,0,12285,0,1,1 +1773538054.663260,36.43,4,3992.50,52.62,1645.74,2060.02,0.00,3520036894710.298828,3520036889457.047852,222,103,26.121115,0.110189,5802517,4903135,0,0,12288,0,1,1 +1773538059.661193,12.77,4,3992.50,52.54,1642.90,2056.99,0.00,3401.090005,8642.999461,272615,886776,4.035282,0.022370,5803871,4904103,0,0,12290,0,1,1 +1773538064.666878,10.12,4,3992.50,78.77,659.20,3083.90,0.00,3514441162172.481445,3514441156939.981934,199,0,0.004331,0.008390,5803985,4904268,0,0,12293,0,1,1 +1773538069.666408,30.84,4,3992.50,67.85,1091.32,2656.44,0.00,1.832008,0.000195,238,2,0.005033,0.010337,5804121,4904472,0,0,12295,0,1,1 +1773538074.665929,30.82,4,3992.50,74.01,843.59,2897.46,0.00,0.000000,0.000000,238,2,0.004455,0.009059,5804242,4904651,0,0,12298,0,1,1 +1773538079.666375,30.42,4,3992.50,90.92,197.45,3559.75,0.00,3894.955877,8647.577250,303995,894033,0.004920,0.009706,5804371,4904843,0,0,12300,0,1,1 +1773538084.665542,30.32,4,3992.50,65.26,1178.76,2555.11,0.00,3519023950149.513184,3519023945396.212891,222,103,0.005023,0.010810,5804506,4905049,0,0,12303,0,1,1 +1773538089.666488,31.04,4,3992.50,84.89,406.95,3323.55,0.00,3517771218102.758301,3517771218104.178711,70,0,0.004350,0.008587,5804621,4905217,0,0,12305,0,1,1 +1773538094.666536,25.80,4,3992.50,51.42,1718.63,2013.14,0.00,4370.946691,8655.612658,334241,900384,0.005062,0.010369,5804759,4905423,0,0,12308,0,1,1 +1773538099.661197,1.71,4,3992.50,51.27,1722.16,2007.41,0.00,3522197741628.139648,3522197737336.892578,238,2,0.004348,0.008407,5804874,4905588,0,0,12310,0,1,1 +1773538104.661284,2.61,4,3992.50,51.23,1714.96,2005.83,0.00,3518376022914.979004,3518376022916.811035,199,0,0.005022,0.010300,5805009,4905789,0,0,12313,0,1,1 +1773538109.665773,1.95,4,3992.50,51.17,1716.75,2003.61,0.00,4371.486497,8647.950883,334489,900404,0.005018,0.010269,5805144,4905988,0,0,12315,0,1,1 +1773538114.665923,1.40,4,3992.50,51.16,1716.73,2003.07,0.00,0.210931,0.003516,334498,900412,0.004310,0.008412,5805256,4906154,0,0,12318,0,1,1 +1773538119.665548,1.96,4,3992.50,51.61,1688.62,2020.48,0.00,3518701511067.713867,3518701506787.422852,70,0,0.005023,0.010291,5805391,4906354,0,0,12320,0,1,1 +1773538124.664647,19.25,4,3992.50,52.79,1627.12,2066.74,0.00,3519070878122.774902,0.000000,11,0,6.059594,0.043953,5807728,4908080,0,0,12323,0,1,1 +1773538129.663965,35.77,4,3992.50,53.08,1615.59,2078.29,0.00,4403.594361,8657.461537,334828,901331,34.200326,0.141517,5818527,4915995,0,0,12325,0,1,1 +1773538134.661189,3.91,4,3992.50,53.07,1616.18,2077.73,0.00,3520391264539.023438,3520391260283.375000,11,0,0.012051,0.013329,5818788,4916278,0,0,12328,0,1,1 +1773538139.661958,1.66,4,3992.50,52.99,1619.07,2074.83,0.00,4402.508562,8655.452051,334842,901802,0.003703,0.006307,5818881,4916404,0,0,12330,0,1,1 +1773538144.665356,1.55,4,3992.50,52.87,1623.96,2069.92,0.00,3516048124319.808594,3516048120069.049316,70,0,0.004092,0.007761,5818987,4916557,0,0,12333,0,1,1 +1773538149.665633,2.16,4,3992.50,52.94,1625.46,2072.71,0.00,1.958680,0.000195,238,2,0.005506,0.011377,5819133,4916779,0,0,12335,0,1,1 +1773538154.665882,9.33,4,3992.50,65.29,1180.23,2556.39,0.00,3518261939626.321777,3518261939628.153320,199,0,0.004306,0.009051,5819245,4916949,0,0,12338,0,1,1 +1773538159.666272,30.07,4,3992.50,56.04,1548.57,2193.98,0.00,4593.168897,8659.605995,346679,904587,0.004418,0.009957,5819369,4917144,0,0,12340,0,1,1 +1773538164.665916,29.87,4,3992.50,91.72,148.68,3591.09,0.00,142.865648,2.375560,355226,906694,0.004190,0.008438,5819482,4917312,0,0,12343,0,1,1 +1773538169.665702,30.72,4,3992.50,76.83,722.10,3007.97,0.00,3518588024199.991699,3518588020273.726074,11,0,0.005052,0.010341,5819619,4917516,0,0,12345,0,1,1 +1773538174.661745,31.07,4,3992.50,68.68,1051.70,2688.78,0.00,0.000000,0.000000,11,0,0.004342,0.008444,5819733,4917684,0,0,12348,0,1,1 +1773538179.665562,30.09,4,3992.50,58.20,1470.75,2278.73,0.00,0.049962,0.000000,70,0,0.005019,0.010295,5819868,4917885,0,0,12350,0,1,1 +1773538184.664934,23.86,4,3992.50,52.31,1685.30,2048.14,0.00,0.126969,0.000000,199,0,0.005110,0.010398,5820009,4918094,0,0,12353,0,1,1 +1773538189.666129,2.15,4,3992.50,52.22,1682.96,2044.45,0.00,3517596972454.042480,0.000000,11,0,0.004347,0.008388,5820124,4918258,0,0,12355,0,1,1 +1773538194.664785,24.90,4,3992.50,52.86,1611.00,2069.62,0.00,0.177001,0.000000,199,0,12.099334,0.071436,5824399,4921497,0,0,12358,0,1,1 +1773538199.663612,27.28,4,3992.50,53.71,1576.89,2102.77,0.00,3519263231344.712891,0.000000,70,0,28.168630,0.120291,5833210,4928123,0,0,12360,0,1,1 +1773538204.665664,1.85,4,3992.50,53.33,1591.63,2087.97,0.00,5394.530190,8669.715287,395661,916804,0.004474,0.008600,5833328,4928294,0,0,12363,0,1,1 +1773538209.662033,2.56,4,3992.50,53.14,1598.76,2080.68,0.00,7.442807,0.988999,396600,917580,0.004339,0.008396,5833442,4928458,0,0,12365,0,1,1 +1773538214.663484,3.01,4,3992.50,53.39,1591.73,2090.24,0.00,3517416266372.820801,3517416263103.739258,11,0,0.002970,0.004605,5833515,4928552,0,0,12368,0,1,1 +1773538219.665367,1.55,4,3992.50,53.43,1590.09,2091.88,0.00,0.000000,0.000000,11,0,0.005008,0.010930,5833649,4928756,0,0,12370,0,1,1 +1773538224.665883,3.01,4,3992.50,53.44,1589.65,2092.32,0.00,5412.366720,8673.645420,397217,917622,0.004780,0.009641,5833776,4928943,0,0,12373,0,1,1 +1773538229.661177,1.76,4,3992.50,53.05,1604.90,2077.03,0.00,3521751902421.798340,3521751899157.110840,11,0,0.004885,0.009477,5833888,4929116,0,0,12375,0,1,1 +1773538234.666121,2.81,4,3992.50,53.05,1605.04,2076.95,0.00,0.000000,0.000000,11,0,0.005017,0.010290,5834023,4929317,0,0,12378,0,1,1 +1773538239.664286,1.81,4,3992.50,53.26,1597.88,2085.25,0.00,1.494787,0.022078,224,103,0.004345,0.008401,5834138,4929482,0,0,12380,0,1,1 +1773538244.666364,8.57,4,3992.50,60.43,1381.00,2365.91,0.00,3516975380175.121094,3516975380176.592773,11,0,0.005020,0.010296,5834273,4929683,0,0,12383,0,1,1 +1773538249.662378,30.34,4,3992.50,90.49,194.06,3542.86,0.00,0.000000,0.000000,11,0,0.004608,0.009439,5834397,4929866,0,0,12385,0,1,1 +1773538254.662584,30.49,4,3992.50,76.82,728.05,3007.80,0.00,0.000000,0.000000,11,0,0.004799,0.009347,5834525,4930055,0,0,12388,0,1,1 +1773538259.666540,30.67,4,3992.50,56.75,1529.31,2221.88,0.00,0.000000,0.000000,11,0,0.005044,0.010308,5834662,4930257,0,0,12390,0,1,1 +1773538264.667541,60.51,4,3992.50,64.39,1210.19,2520.82,0.00,6218.570429,8684.937913,449061,928925,20.121729,0.092959,5840673,4934874,0,0,12393,0,1,1 +1773538269.665951,51.43,4,3992.50,82.15,522.18,3216.38,0.00,3519556242755.124023,3519556240287.478516,11,0,18.098998,0.070433,5845704,4938594,0,0,12395,0,1,1 +1773538274.666766,30.00,4,3992.50,53.56,1636.55,2097.06,0.00,2.008462,0.000195,238,2,2.022132,0.014905,5846524,4939239,0,0,12398,0,1,1 +1773538279.664115,1.65,4,3992.50,53.56,1631.34,2097.01,0.00,3520304001452.527344,0.021887,224,103,0.005025,0.010296,5846659,4939439,0,0,12400,0,1,1 +1773538284.663145,1.70,4,3992.50,53.59,1629.03,2098.04,0.00,3519119638673.508789,3519119638674.981445,11,0,0.005023,0.010946,5846794,4939644,0,0,12403,0,1,1 +1773538289.666121,1.50,4,3992.50,53.33,1637.33,2087.82,0.00,1.493349,0.022057,224,103,0.004346,0.008385,5846909,4939808,0,0,12405,0,1,1 +1773538294.665429,1.65,4,3992.50,53.30,1637.89,2086.94,0.00,6707.909703,8693.507138,481462,934190,0.005023,0.010289,5847044,4940008,0,0,12408,0,1,1 +1773538299.663329,2.81,4,3992.50,53.79,1609.61,2106.09,0.00,3519915527978.899902,3519915525992.743164,224,103,0.005037,0.010295,5847180,4940208,0,0,12410,0,1,1 +1773538304.665454,1.25,4,3992.50,53.73,1611.91,2103.46,0.00,0.514332,3516942420430.934570,238,2,0.004355,0.008404,5847296,4940374,0,0,12413,0,1,1 +1773538309.664688,1.66,4,3992.50,53.65,1614.42,2100.66,0.00,0.000000,0.000000,238,2,0.005023,0.010292,5847431,4940574,0,0,12415,0,1,1 +1773538314.661332,1.61,4,3992.50,53.55,1618.45,2096.50,0.00,3520800493400.556152,3520800493402.389160,199,0,0.004339,0.008405,5847545,4940739,0,0,12418,0,1,1 +1773538319.665781,2.45,4,3992.50,53.56,1617.88,2097.07,0.00,1.316114,0.022051,224,103,0.005031,0.010281,5847681,4940939,0,0,12420,0,1,1 +1773538324.665239,1.36,4,3992.50,53.55,1617.45,2096.68,0.00,3518818521428.248535,3518818521429.670898,70,0,0.005023,0.010302,5847816,4941140,0,0,12423,0,1,1 +1773538329.665336,2.25,4,3992.50,54.09,1597.13,2117.79,0.00,1.958751,0.000195,238,2,0.004336,0.008390,5847930,4941304,0,0,12425,0,1,1 +1773538334.661866,11.25,4,3992.50,63.09,1265.88,2470.06,0.00,6755.161758,8699.435301,484327,935126,0.009178,0.012105,5848134,4941550,0,0,12428,0,1,1 +1773538339.667744,59.32,4,3992.50,84.88,386.34,3323.38,0.00,3514305367243.002441,3514305365302.895508,224,103,22.170426,0.101258,5854855,4946527,0,0,12430,0,1,1 +1773538344.666113,51.96,4,3992.50,60.89,1365.91,2383.83,0.00,3519585566589.864746,3519585566591.337891,11,0,18.043434,0.071952,5860083,4950443,0,0,12433,0,1,1 +1773538349.666833,33.80,4,3992.50,59.74,1409.08,2338.84,0.00,7511.869993,8701.345020,534975,944189,0.016121,0.017112,5860373,4950747,0,0,12435,0,1,1 +1773538354.666340,30.97,4,3992.50,62.88,1290.09,2461.99,0.00,3518784444872.041992,3518784443682.101562,199,0,0.004339,0.008921,5860487,4950918,0,0,12438,0,1,1 +1773538359.662588,30.72,4,3992.50,64.45,1219.81,2523.42,0.00,3521078955410.799316,0.000000,11,0,0.005014,0.010323,5860621,4951120,0,0,12440,0,1,1 +1773538364.663497,26.91,4,3992.50,53.55,1638.31,2096.74,0.00,0.176921,0.000000,199,0,0.004390,0.008448,5860739,4951289,0,0,12443,0,1,1 +1773538369.665362,1.30,4,3992.50,53.71,1625.28,2102.77,0.00,3517125603106.537598,0.000000,11,0,0.005021,0.010287,5860874,4951489,0,0,12445,0,1,1 +1773538374.666141,2.61,4,3992.50,53.53,1631.34,2095.68,0.00,0.176926,0.000000,199,0,0.005022,0.010299,5861009,4951690,0,0,12448,0,1,1 +1773538379.665939,1.30,4,3992.50,53.51,1632.00,2094.85,0.00,8010.897577,8711.528831,567248,951939,0.004344,0.008398,5861124,4951855,0,0,12450,0,1,1 +1773538384.666030,2.46,4,3992.50,53.41,1634.89,2091.03,0.00,3518373377581.388672,3518373376878.966797,238,2,0.005048,0.010300,5861261,4952056,0,0,12453,0,1,1 +1773538389.666105,1.65,4,3992.50,53.78,1609.80,2105.41,0.00,3518384249459.285645,0.021875,224,103,0.004793,0.009632,5861389,4952242,0,0,12455,0,1,1 +1773538394.665838,1.71,4,3992.50,53.50,1617.92,2094.79,0.00,0.514578,3518624620682.624512,238,2,0.004628,0.009121,5861515,4952425,0,0,12458,0,1,1 +1773538399.665154,4.24,4,3992.50,53.03,1604.42,2076.12,0.00,8025.697541,8712.744803,577806,952172,0.005023,0.010292,5861650,4952625,0,0,12460,0,1,1 +1773538404.666184,1.55,4,3992.50,53.10,1601.66,2078.85,0.00,3517712780675.104004,3517712779990.300293,11,0,0.004335,0.008398,5861764,4952790,0,0,12463,0,1,1 +1773538409.664557,7.38,4,3992.50,53.49,1586.08,2094.31,0.00,2.009443,0.000195,238,2,4.032959,0.030265,5863206,4954000,0,0,12465,0,1,1 +1773538414.661593,25.66,4,3992.50,55.48,1508.27,2172.04,0.00,8059.778541,8717.456125,579105,953257,26.228846,0.127965,5872012,4960709,0,0,12468,0,1,1 +1773538419.665992,9.43,4,3992.50,55.01,1536.77,2153.78,0.00,3515344221697.436035,3515344221042.683105,70,0,10.014861,0.049323,5875415,4963353,0,0,12470,0,1,1 +1773538424.665973,1.25,4,3992.50,54.05,1574.36,2116.16,0.00,3518450182816.354004,0.000000,11,0,0.002963,0.004598,5875487,4963446,0,0,12473,0,1,1 +1773538429.665435,1.45,4,3992.50,53.83,1583.14,2107.37,0.00,0.176972,0.000000,199,0,0.005023,0.010292,5875622,4963646,0,0,12475,0,1,1 +1773538434.663221,1.26,4,3992.50,53.83,1582.91,2107.60,0.00,3519995865164.115234,0.000000,11,0,0.004338,0.008403,5875736,4963811,0,0,12478,0,1,1 +1773538439.661291,2.05,4,3992.50,53.85,1582.07,2108.45,0.00,8056.549140,8716.425195,578379,953881,0.006472,0.012039,5875888,4964035,0,0,12480,0,1,1 +1773538444.662584,1.50,4,3992.50,53.84,1582.62,2107.85,0.00,3517527772867.862793,3517527772208.361816,70,0,0.005021,0.010310,5876023,4964237,0,0,12483,0,1,1 +1773538449.665633,4.11,4,3992.50,54.04,1571.56,2115.75,0.00,3516292657857.308105,0.000000,11,0,0.004829,0.009471,5876149,4964423,0,0,12485,0,1,1 +1773538454.661204,1.65,4,3992.50,53.41,1596.12,2091.23,0.00,8061.194315,8720.969905,578407,953992,0.005035,0.010318,5876285,4964625,0,0,12488,0,1,1 +1773538459.664548,1.70,4,3992.50,53.49,1590.98,2094.38,0.00,3516085882388.062500,3516085881729.312012,11,0,0.005057,0.010271,5876423,4964824,0,0,12490,0,1,1 +1773538464.661202,1.75,4,3992.50,53.49,1590.98,2094.35,0.00,8059.495913,8719.178043,578409,954088,0.004339,0.008418,5876537,4964990,0,0,12493,0,1,1 +1773538469.661304,1.15,4,3992.50,53.47,1592.00,2093.35,0.00,3518365068715.854004,3518365068056.576660,70,0,0.005022,0.010290,5876672,4965190,0,0,12495,0,1,1 +1773538474.665200,1.40,4,3992.50,53.42,1593.77,2091.56,0.00,8047.822871,8706.605767,578411,954138,0.004345,0.008393,5876787,4965355,0,0,12498,0,1,1 +1773538479.665284,12.65,4,3992.50,54.11,1564.30,2118.42,0.00,3518377726875.688477,3518377726216.403809,70,0,8.060764,0.046916,5879463,4967405,0,0,12500,0,1,1 +1773538484.662591,27.08,4,3992.50,53.47,1589.05,2093.50,0.00,0.127022,0.000000,199,0,32.210188,0.142895,5889942,4975194,0,0,12503,0,1,1 +1773538489.665783,3.66,4,3992.50,53.54,1586.43,2096.11,0.00,0.000000,0.000000,199,0,0.012405,0.013721,5890209,4975481,0,0,12505,0,1,1 +1773538494.661196,1.15,4,3992.50,53.54,1586.22,2096.34,0.00,3521667847508.280762,0.000000,11,0,0.004159,0.008269,5890320,4975645,0,0,12508,0,1,1 +1773538499.662284,1.35,4,3992.50,53.33,1594.65,2087.90,0.00,8054.623688,8712.505777,578560,955618,0.005021,0.010288,5890455,4975845,0,0,12510,0,1,1 +1773538504.664302,1.20,4,3992.50,53.36,1593.25,2089.32,0.00,3517017556692.074219,3517017556032.306641,238,2,0.004334,0.008396,5890569,4976010,0,0,12513,0,1,1 +1773538509.665210,1.75,4,3992.50,53.76,1582.76,2104.69,0.00,3517798538485.511719,3517798538487.343262,199,0,0.005022,0.010289,5890704,4976210,0,0,12515,0,1,1 +1773538514.661189,2.31,4,3992.50,53.70,1584.92,2102.55,0.00,0.000000,0.000000,199,0,0.004314,0.008406,5890816,4976375,0,0,12518,0,1,1 +1773538519.664282,1.15,4,3992.50,53.71,1584.68,2102.79,0.00,3516261824980.585449,0.000000,11,0,0.003659,0.006485,5890910,4976503,0,0,12520,0,1,1 +1773538524.663576,1.30,4,3992.50,53.72,1584.23,2103.24,0.00,8057.635979,8716.286093,578575,955934,0.004782,0.009687,5891037,4976693,0,0,12523,0,1,1 +1773538529.662397,1.30,4,3992.50,53.55,1590.69,2096.79,0.00,3519267098909.368164,3519267098250.478516,199,0,0.005521,0.009685,5891163,4976872,0,0,12525,0,1,1 +1773538534.665551,1.45,4,3992.50,53.58,1589.64,2097.80,0.00,3516219167283.643066,0.000000,11,0,0.005019,0.010294,5891298,4977073,0,0,12528,0,1,1 +1773538539.665493,1.75,4,3992.50,53.87,1578.47,2109.03,0.00,1.494256,0.022071,224,103,0.004336,0.008390,5891412,4977237,0,0,12530,0,1,1 +1773538544.665794,1.35,4,3992.50,53.57,1589.92,2097.54,0.00,3518224756657.905273,3518224756659.377441,11,0,0.005047,0.010448,5891549,4977438,0,0,12533,0,1,1 +1773538549.665579,15.15,4,3992.50,53.96,1574.95,2112.47,0.00,0.176961,0.000000,199,0,10.147627,0.065009,5895272,4980263,0,0,12535,0,1,1 +1773538554.661296,23.94,4,3992.50,54.62,1548.86,2138.48,0.00,8068.882887,8723.253713,579466,957285,30.141186,0.128765,5904782,4987413,0,0,12538,0,1,1 +1773538559.662027,1.45,4,3992.50,54.06,1570.89,2116.44,0.00,0.000000,0.009178,579466,957294,0.004348,0.008388,5904897,4987577,0,0,12540,0,1,1 +1773538564.665377,1.50,4,3992.50,53.86,1578.68,2108.62,0.00,3516081009538.947754,3516081008884.271484,224,103,0.005019,0.010294,5905032,4987778,0,0,12543,0,1,1 +1773538569.663994,2.21,4,3992.50,53.89,1578.64,2110.02,0.00,3519410680691.690918,3519410680692.986328,199,0,0.005057,0.010276,5905170,4987977,0,0,12545,0,1,1 +1773538574.665925,1.30,4,3992.50,53.83,1580.80,2107.43,0.00,3517079421380.170410,0.000000,11,0,0.004334,0.008422,5905284,4988144,0,0,12548,0,1,1 +1773538579.665344,1.20,4,3992.50,53.84,1580.44,2107.78,0.00,2.009022,0.000195,238,2,0.005023,0.010304,5905419,4988345,0,0,12550,0,1,1 +1773538584.665691,1.35,4,3992.50,53.84,1580.21,2108.02,0.00,8059.829338,8716.255358,579489,957872,0.004335,0.008399,5905533,4988510,0,0,12553,0,1,1 +1773538589.666130,1.60,4,3992.50,53.84,1580.29,2107.93,0.00,3518128484342.725586,3518128483688.270020,70,0,0.005035,0.010290,5905669,4988710,0,0,12555,0,1,1 +1773538594.665706,1.30,4,3992.50,53.84,1580.32,2107.92,0.00,1.958955,0.000195,238,2,0.005023,0.010301,5905804,4988911,0,0,12558,0,1,1 +1773538599.665419,3.26,4,3992.50,53.80,1580.46,2106.55,0.00,3518639514467.581055,3518639514469.540039,70,0,0.004336,0.008390,5905918,4989075,0,0,12560,0,1,1 +1773538604.665694,1.10,4,3992.50,53.84,1579.02,2108.00,0.00,3518243750510.391602,0.000000,11,0,0.005030,0.010308,5906054,4989277,0,0,12563,0,1,1 +1773538609.665561,1.40,4,3992.50,53.80,1580.74,2106.28,0.00,0.000000,0.000000,11,0,0.004794,0.009632,5906182,4989463,0,0,12565,0,1,1 +1773538614.664696,1.40,4,3992.50,53.77,1581.76,2105.27,0.00,0.050009,0.000000,70,0,0.004565,0.009704,5906303,4989646,0,0,12568,0,1,1 +1773538619.665576,18.43,4,3992.50,54.08,1569.71,2117.25,0.00,1.958444,0.000195,238,2,14.100884,0.073447,5911155,4993095,0,0,12570,0,1,1 +1773538624.666111,12.50,4,3992.50,53.67,1585.66,2101.26,0.00,8056.139803,8716.782920,578786,958827,14.077070,0.056320,5915472,4996244,0,0,12573,0,1,1 +1773538629.666038,10.49,4,3992.50,55.00,1533.80,2153.21,0.00,3518488832536.764160,3518488831877.999512,70,0,12.082052,0.061714,5919637,4999311,0,0,12575,0,1,1 +1773538634.662061,1.46,4,3992.50,54.04,1571.22,2115.71,0.00,1.960348,0.000195,238,2,0.004339,0.008406,5919751,4999476,0,0,12578,0,1,1 +1773538639.665583,1.55,4,3992.50,53.94,1574.94,2112.01,0.00,8051.539737,8712.400244,578813,959577,0.005031,0.010283,5919887,4999676,0,0,12580,0,1,1 +1773538644.665044,1.55,4,3992.50,53.94,1574.94,2112.01,0.00,0.000000,0.044536,578813,959588,0.004361,0.008400,5920003,4999841,0,0,12583,0,1,1 +1773538649.661287,2.11,4,3992.50,53.95,1574.59,2112.37,0.00,3521082747332.342285,3521082746672.484375,11,0,0.007805,0.012210,5920181,5000067,0,0,12585,0,1,1 +1773538654.661273,1.80,4,3992.50,53.77,1581.75,2105.20,0.00,0.000000,0.000000,11,0,0.005022,0.010300,5920316,5000268,0,0,12588,0,1,1 +1773538659.661342,1.71,4,3992.50,53.96,1574.01,2112.70,0.00,0.000000,0.000000,11,0,0.004336,0.008390,5920430,5000432,0,0,12590,0,1,1 +1773538664.665602,1.35,4,3992.50,53.68,1584.80,2101.87,0.00,0.176802,0.000000,199,0,0.005043,0.010292,5920567,5000633,0,0,12593,0,1,1 +1773538669.664316,1.05,4,3992.50,53.71,1583.71,2102.95,0.00,8061.150759,8721.026246,578815,959768,0.005011,0.010307,5920701,5000834,0,0,12595,0,1,1 +1773538674.665783,1.30,4,3992.50,53.72,1583.48,2103.18,0.00,3517404978234.666992,3517404977575.331543,11,0,0.003729,0.008160,5920804,5000992,0,0,12598,0,1,1 +1773538679.665884,1.15,4,3992.50,53.74,1582.76,2103.90,0.00,0.000000,0.000000,11,0,0.005022,0.010934,5920939,5001196,0,0,12600,0,1,1 +1773538684.663046,1.50,4,3992.50,53.74,1582.78,2103.88,0.00,8063.829903,8723.818555,578815,959851,0.004338,0.008404,5921053,5001361,0,0,12603,0,1,1 +1773538689.665374,6.88,4,3992.50,54.01,1578.58,2114.72,0.00,3516799792909.576172,3516799792248.261719,238,2,4.027423,0.026668,5922398,5002390,0,0,12605,0,1,1 +1773538694.664546,27.18,4,3992.50,55.04,1538.34,2154.82,0.00,3519020125415.690918,3519020125417.523438,199,0,30.191904,0.137940,5932182,5009733,0,0,12608,0,1,1 +1773538699.661252,7.83,4,3992.50,55.09,1536.37,2156.81,0.00,8065.144755,8725.261557,578895,960903,6.050334,0.029676,5934314,5011294,0,0,12610,0,1,1 +1773538704.661446,2.41,4,3992.50,54.88,1544.48,2148.70,0.00,4.064589,0.374693,579658,961330,0.006925,0.009672,5934482,5011498,0,0,12613,0,1,1 +1773538709.664586,1.35,4,3992.50,54.69,1552.13,2141.04,0.00,0.000000,0.004977,579658,961338,0.005007,0.010284,5934616,5011698,0,0,12615,0,1,1 +1773538714.664557,3.16,4,3992.50,54.82,1546.86,2146.17,0.00,3518457380579.763672,3518457379923.763184,199,0,0.005022,0.010301,5934751,5011899,0,0,12618,0,1,1 +1773538719.662284,25.14,4,3992.50,58.70,1393.95,2298.09,0.00,1.317884,0.022080,224,103,0.004338,0.008393,5934865,5012063,0,0,12620,0,1,1 +1773538724.665178,9.92,4,3992.50,56.39,1484.24,2207.83,0.00,3516401987146.146484,3516401987147.617676,11,0,0.005020,0.010294,5935000,5012264,0,0,12623,0,1,1 +1773538729.661276,1.40,4,3992.50,55.59,1515.72,2176.35,0.00,0.177091,0.000000,199,0,0.005022,0.010307,5935135,5012465,0,0,12625,0,1,1 +1773538734.664578,1.45,4,3992.50,54.83,1545.26,2146.80,0.00,8128.319008,8742.982604,582627,961955,0.004346,0.008394,5935250,5012630,0,0,12628,0,1,1 +1773538739.661280,1.36,4,3992.50,54.42,1561.56,2130.51,0.00,3520759339402.354980,3520759338785.046875,238,2,0.006486,0.012055,5935403,5012855,0,0,12630,0,1,1 +1773538744.661176,1.30,4,3992.50,54.42,1561.34,2130.73,0.00,8132.025986,8764.298964,582628,962101,0.003649,0.007143,5935496,5012988,0,0,12633,0,1,1 +1773538749.661271,1.85,4,3992.50,54.61,1553.88,2138.28,0.00,3518369883779.842773,3518369883148.131836,224,103,0.004845,0.009476,5935623,5013174,0,0,12635,0,1,1 +1773538754.662249,1.40,4,3992.50,54.63,1553.43,2138.75,0.00,3517749398819.851562,3517749398821.323730,11,0,0.005021,0.010298,5935758,5013375,0,0,12638,0,1,1 +1773538759.661275,1.55,4,3992.50,54.61,1554.16,2138.03,0.00,1.494530,0.022075,224,103,0.004337,0.008404,5935872,5013540,0,0,12640,0,1,1 +1773538764.663673,9.33,4,3992.50,54.57,1555.62,2136.51,0.00,3516750070542.613281,3516750070544.034668,70,0,6.046616,0.038836,5938025,5015207,0,0,12643,0,1,1 +1773538769.665564,27.25,4,3992.50,55.45,1520.93,2171.11,0.00,1.958049,0.000195,238,2,34.188639,0.151690,5948965,5023528,0,0,12645,0,1,1 +1773538774.665368,2.11,4,3992.50,54.77,1547.54,2144.50,0.00,8136.773164,8778.014985,583471,963664,0.013333,0.012486,5949241,5023799,0,0,12648,0,1,1 +1773538779.665701,1.65,4,3992.50,54.67,1551.69,2140.46,0.00,3518203116396.796387,3518203115757.581055,70,0,0.005022,0.010290,5949376,5023999,0,0,12650,0,1,1 +1773538784.661205,1.10,4,3992.50,54.56,1555.64,2136.29,0.00,0.127067,0.000000,199,0,0.005089,0.010360,5949515,5024204,0,0,12653,0,1,1 +1773538789.661277,1.35,4,3992.50,54.56,1555.66,2136.27,0.00,3518386449825.388672,0.000000,11,0,0.004336,0.008390,5949629,5024368,0,0,12655,0,1,1 +1773538794.661179,1.76,4,3992.50,54.61,1553.96,2137.97,0.00,8134.560361,8778.148049,582710,963677,0.005048,0.010301,5949766,5024569,0,0,12658,0,1,1 +1773538799.663052,2.20,4,3992.50,54.57,1555.53,2136.41,0.00,3517119799516.311035,3517119798872.977051,11,0,0.004588,0.009007,5949889,5024744,0,0,12660,0,1,1 +1773538804.661241,1.20,4,3992.50,54.57,1555.44,2136.47,0.00,0.000000,0.000000,11,0,0.004808,0.009683,5950018,5024934,0,0,12663,0,1,1 +1773538809.663305,1.60,4,3992.50,54.66,1552.24,2139.96,0.00,8131.136251,8774.579962,582730,963854,0.005020,0.010930,5950153,5025138,0,0,12665,0,1,1 +1773538814.665820,1.20,4,3992.50,54.64,1552.87,2139.35,0.00,3516668632225.550293,3516668631580.157227,238,2,0.004342,0.008403,5950268,5025304,0,0,12668,0,1,1 +1773538819.661191,1.46,4,3992.50,54.66,1552.10,2140.11,0.00,8144.125999,8786.573455,583493,964214,0.005040,0.010300,5950404,5025504,0,0,12670,0,1,1 +1773538824.661396,1.05,4,3992.50,54.66,1552.27,2139.94,0.00,3518292204886.257812,3518292204246.440430,11,0,0.005010,0.010300,5950538,5025705,0,0,12673,0,1,1 +1773538829.665970,2.20,4,3992.50,54.65,1552.39,2139.82,0.00,8127.097761,8770.447111,582732,964168,0.005253,0.009051,5950654,5025872,0,0,12675,0,1,1 +1773538834.665268,15.43,4,3992.50,55.16,1532.59,2159.59,0.00,3518930934910.333984,3518930934266.255859,70,0,12.187092,0.068911,5954822,5029103,0,0,12678,0,1,1 +1773538839.665546,8.07,4,3992.50,55.38,1524.04,2168.27,0.00,8134.199563,8778.512490,582757,964808,5.947386,0.028735,5956861,5030534,0,0,12680,0,1,1 +1773538844.665564,16.93,4,3992.50,55.33,1525.90,2166.19,0.00,3518424276872.494629,3518424276228.148438,70,0,22.131341,0.096175,5964012,5035845,0,0,12683,0,1,1 +1773538849.666106,1.30,4,3992.50,54.84,1545.06,2147.04,0.00,8137.896905,8778.659070,583548,965613,0.004806,0.009668,5964141,5036034,0,0,12685,0,1,1 +1773538854.665868,1.25,4,3992.50,54.84,1545.07,2147.02,0.00,3518604494906.245117,3518604494265.433105,11,0,0.005043,0.010309,5964278,5036236,0,0,12688,0,1,1 +1773538859.665689,1.40,4,3992.50,54.14,1572.47,2119.63,0.00,0.000000,0.000000,11,0,0.004349,0.008390,5964393,5036400,0,0,12690,0,1,1 +1773538864.666053,1.65,4,3992.50,54.23,1568.94,2123.17,0.00,0.000000,0.000000,11,0,0.005022,0.010300,5964528,5036601,0,0,12693,0,1,1 +1773538869.665234,2.61,4,3992.50,54.63,1558.58,2138.83,0.00,0.000000,0.000000,11,0,0.005023,0.010292,5964663,5036801,0,0,12695,0,1,1 +1773538874.665381,1.15,4,3992.50,54.63,1558.35,2138.92,0.00,0.000000,0.000000,11,0,0.004348,0.009043,5964778,5036970,0,0,12698,0,1,1 +1773538879.662065,1.35,4,3992.50,54.57,1560.74,2136.53,0.00,8140.181158,8785.955476,582789,965910,0.005038,0.010297,5964914,5037170,0,0,12700,0,1,1 +1773538884.661185,2.06,4,3992.50,54.62,1558.85,2138.42,0.00,3519056429401.583496,3519056428756.124023,11,0,0.004324,0.008401,5965027,5037335,0,0,12703,0,1,1 +1773538889.665736,2.10,4,3992.50,54.63,1558.38,2138.89,0.00,1.492879,0.022050,224,103,0.005005,0.010281,5965161,5037535,0,0,12705,0,1,1 +1773538894.665128,1.35,4,3992.50,54.65,1557.67,2139.60,0.00,3518865440026.522461,3518865440027.995117,11,0,0.004425,0.010072,5965286,5037730,0,0,12708,0,1,1 +1773538899.664830,1.50,4,3992.50,54.84,1547.55,2147.18,0.00,0.000000,0.000000,11,0,0.004361,0.008390,5965402,5037894,0,0,12710,0,1,1 +1773538904.663718,1.51,4,3992.50,54.84,1547.46,2147.13,0.00,8136.593849,8782.272170,582790,966086,0.005011,0.010303,5965536,5038095,0,0,12713,0,1,1 +1773538909.665926,22.62,4,3992.50,55.08,1537.95,2156.57,0.00,3516884155959.351074,3516884155313.924316,199,0,20.137335,0.105555,5972463,5043280,0,0,12715,0,1,1 +1773538914.665392,12.26,4,3992.50,54.82,1548.07,2146.34,0.00,1.317426,0.022073,224,103,16.090711,0.066125,5977636,5047176,0,0,12718,0,1,1 +1773538919.661280,6.08,4,3992.50,55.01,1540.84,2153.60,0.00,0.514974,3521332384281.284668,238,2,4.033676,0.024010,5979017,5048226,0,0,12720,0,1,1 +1773538924.665554,1.30,4,3992.50,54.68,1553.76,2140.71,0.00,3515432415522.966797,3515432415524.797363,199,0,0.005018,0.010279,5979152,5048426,0,0,12723,0,1,1 +1773538929.665232,1.65,4,3992.50,54.74,1543.95,2143.09,0.00,3518663759456.641113,0.000000,11,0,0.004336,0.008390,5979266,5048590,0,0,12725,0,1,1 +1773538934.665836,1.90,4,3992.50,54.76,1543.06,2143.97,0.00,0.176932,0.000000,199,0,0.005034,0.010299,5979402,5048791,0,0,12728,0,1,1 +1773538939.662352,1.15,4,3992.50,54.58,1550.02,2137.01,0.00,3520890265239.991211,0.000000,11,0,0.005051,0.010942,5979539,5048995,0,0,12730,0,1,1 +1773538944.661252,1.20,4,3992.50,54.58,1550.03,2137.00,0.00,8136.999982,8783.786231,582853,967712,0.004357,0.008409,5979655,5049161,0,0,12733,0,1,1 +1773538949.666121,2.30,4,3992.50,54.61,1549.10,2137.93,0.00,0.000000,0.049464,582853,967754,0.007827,0.012188,5979835,5049387,0,0,12735,0,1,1 +1773538954.662650,1.25,4,3992.50,54.61,1549.11,2137.92,0.00,0.000000,0.035669,582853,967798,0.005022,0.009328,5979953,5049554,0,0,12738,0,1,1 +1773538959.661219,1.70,4,3992.50,54.62,1561.82,2138.57,0.00,3519444424916.844727,3519444424269.930176,11,0,0.005024,0.010293,5980088,5049754,0,0,12740,0,1,1 +1773538964.662574,1.30,4,3992.50,54.62,1561.86,2138.55,0.00,0.176905,0.000000,199,0,0.005008,0.010298,5980222,5049955,0,0,12743,0,1,1 +1773538969.665079,1.10,4,3992.50,54.63,1561.62,2138.78,0.00,3516675233617.402344,0.000000,70,0,0.004346,0.008385,5980337,5050119,0,0,12745,0,1,1 +1773538974.666180,1.15,4,3992.50,54.63,1561.64,2138.76,0.00,0.000000,0.000000,70,0,0.005046,0.010298,5980474,5050320,0,0,12748,0,1,1 +1773538979.666075,2.66,4,3992.50,54.59,1563.25,2137.16,0.00,1.958830,0.000195,238,2,0.012093,0.014446,5980734,5050609,0,0,12750,0,1,1 +1773538984.661263,25.64,4,3992.50,55.89,1512.09,2188.22,0.00,3521826896832.905273,3521826896834.866211,70,0,28.212118,0.132604,5990038,5057561,0,0,12753,0,1,1 +1773538989.661819,7.88,4,3992.50,55.38,1531.96,2168.31,0.00,0.000000,0.000000,70,0,10.051472,0.038338,5993003,5059776,0,0,12755,0,1,1 +1773538994.665202,5.77,4,3992.50,55.19,1537.99,2160.74,0.00,8129.919813,8777.176755,582911,969280,2.017016,0.018547,5993778,5060438,0,0,12758,0,1,1 +1773538999.665344,1.05,4,3992.50,54.96,1547.02,2151.72,0.00,0.000000,0.185249,582911,969472,0.004344,0.008397,5993893,5060603,0,0,12760,0,1,1 +1773539004.665737,1.45,4,3992.50,55.02,1544.60,2154.14,0.00,3518160317310.972656,3518160316661.185059,238,2,0.005047,0.010944,5994030,5060808,0,0,12763,0,1,1 diff --git a/evaluation/data/pipeline_high-iops_run1/pipeline.duckdb b/evaluation/data/pipeline_high-iops_run1/pipeline.duckdb new file mode 100644 index 0000000..880395e Binary files /dev/null and b/evaluation/data/pipeline_high-iops_run1/pipeline.duckdb differ diff --git a/evaluation/data/pipeline_high-iops_run2/anomalies.jsonl b/evaluation/data/pipeline_high-iops_run2/anomalies.jsonl new file mode 100644 index 0000000..2dde25a --- /dev/null +++ b/evaluation/data/pipeline_high-iops_run2/anomalies.jsonl @@ -0,0 +1,540 @@ +{"timestamp":"2026-03-15T06:01:32.270736095Z","score":0.5,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=0.50 RRCF-fast:w=0.20,s=0.50 RRCF-mid:w=0.20,s=0.50 RRCF-slow:w=0.20,s=0.50 COPOD:w=0.20,s=0.50"} +{"timestamp":"2026-03-15T06:02:02.270498754Z","score":1,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=1.00 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-15T06:02:32.223354057Z","score":0.8999999999999999,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=0.50 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-15T06:03:02.261382367Z","score":1,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=1.00 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-15T06:03:32.22166239Z","score":0.8996991603481156,"is_anomaly":false,"confidence":0.8996991603481156,"method":"SEAD","details":"MAD!:w=0.20,s=0.75 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=0.75"} +{"timestamp":"2026-03-15T06:04:02.271333782Z","score":0.6800777745370673,"is_anomaly":false,"confidence":0.6800777745370673,"method":"SEAD","details":"MAD!:w=0.20,s=0.60 RRCF-fast:w=0.20,s=0.60 RRCF-mid:w=0.20,s=0.60 RRCF-slow:w=0.20,s=0.60 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-15T06:04:32.26935223Z","score":0.5331525996010289,"is_anomaly":false,"confidence":0.5331525996010289,"method":"SEAD","details":"MAD!:w=0.20,s=0.50 RRCF-fast:w=0.20,s=0.50 RRCF-mid:w=0.20,s=0.50 RRCF-slow:w=0.20,s=0.50 COPOD!:w=0.20,s=0.67"} +{"timestamp":"2026-03-15T06:05:02.222304489Z","score":0.4285714285714285,"is_anomaly":false,"confidence":0.47619047619047616,"method":"SEAD","details":"MAD!:w=0.20,s=0.43 RRCF-fast:w=0.20,s=0.43 RRCF-mid:w=0.20,s=0.43 RRCF-slow:w=0.20,s=0.43 COPOD!:w=0.20,s=0.43"} +{"timestamp":"2026-03-15T06:05:32.268415712Z","score":0.42513249330765646,"is_anomaly":false,"confidence":0.4723694370085072,"method":"SEAD","details":"MAD!:w=0.20,s=0.50 RRCF-fast:w=0.20,s=0.38 RRCF-mid:w=0.20,s=0.38 RRCF-slow:w=0.20,s=0.38 COPOD!:w=0.20,s=0.50"} +{"timestamp":"2026-03-15T06:06:02.223205145Z","score":0.3110431433951563,"is_anomaly":false,"confidence":0.3456034926612848,"method":"SEAD","details":"MAD!:w=0.20,s=0.22 RRCF-fast:w=0.20,s=0.44 RRCF-mid:w=0.20,s=0.33 RRCF-slow:w=0.20,s=0.33 COPOD!:w=0.20,s=0.22"} +{"timestamp":"2026-03-15T06:06:32.273344022Z","score":0.5401170465037923,"is_anomaly":false,"confidence":0.6001300516708804,"method":"SEAD","details":"MAD!:w=0.20,s=0.60 RRCF-fast:w=0.20,s=0.50 RRCF-mid:w=0.20,s=0.50 RRCF-slow:w=0.20,s=0.50 COPOD!:w=0.20,s=0.60"} +{"timestamp":"2026-03-15T06:07:02.222672168Z","score":0.47170965899141504,"is_anomaly":false,"confidence":0.5241218433237945,"method":"SEAD","details":"MAD!:w=0.20,s=0.18 RRCF-fast:w=0.20,s=0.45 RRCF-mid:w=0.20,s=0.55 RRCF-slow:w=0.20,s=0.55 COPOD!:w=0.20,s=0.64"} +{"timestamp":"2026-03-15T06:07:32.272593042Z","score":1,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=1.00 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-15T06:08:02.263934899Z","score":0.8926834431523043,"is_anomaly":false,"confidence":0.8926834431523043,"method":"SEAD","details":"MAD!:w=0.20,s=0.92 RRCF-fast:w=0.20,s=0.92 RRCF-mid:w=0.20,s=0.92 RRCF-slow:w=0.20,s=0.92 COPOD!:w=0.20,s=0.77"} +{"timestamp":"2026-03-15T06:08:32.222011661Z","score":0.655172386328883,"is_anomaly":false,"confidence":0.7279693181432034,"method":"SEAD","details":"MAD!:w=0.20,s=0.14 RRCF-fast:w=0.20,s=0.86 RRCF-mid:w=0.20,s=0.86 RRCF-slow:w=0.20,s=0.86 COPOD!:w=0.20,s=0.57"} +{"timestamp":"2026-03-15T06:09:02.273322418Z","score":0.6265840431108226,"is_anomaly":false,"confidence":0.6962044923453585,"method":"SEAD","details":"MAD!:w=0.21,s=0.60 RRCF-fast:w=0.20,s=0.80 RRCF-mid:w=0.20,s=0.73 RRCF-slow:w=0.20,s=0.73 COPOD!:w=0.20,s=0.27"} +{"timestamp":"2026-03-15T06:09:32.223480942Z","score":0.5099547464879647,"is_anomaly":false,"confidence":0.5666163849866275,"method":"SEAD","details":"MAD!:w=0.21,s=0.25 RRCF-fast:w=0.20,s=0.75 RRCF-mid:w=0.20,s=0.69 RRCF-slow:w=0.20,s=0.69 COPOD!:w=0.20,s=0.19"} +{"timestamp":"2026-03-15T06:10:02.264930983Z","score":0.7633704572733389,"is_anomaly":false,"confidence":0.8481893969703765,"method":"SEAD","details":"MAD!:w=0.21,s=0.65 RRCF-fast:w=0.20,s=0.82 RRCF-mid:w=0.20,s=0.82 RRCF-slow:w=0.20,s=0.82 COPOD!:w=0.20,s=0.71"} +{"timestamp":"2026-03-15T06:10:32.222190691Z","score":0.5447102105272001,"is_anomaly":false,"confidence":0.6052335672524447,"method":"SEAD","details":"MAD!:w=0.21,s=0.61 RRCF-fast:w=0.20,s=0.56 RRCF-mid:w=0.20,s=0.56 RRCF-slow:w=0.20,s=0.56 COPOD!:w=0.20,s=0.44"} +{"timestamp":"2026-03-15T06:11:04.485447664Z","score":0.9999999999999999,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.21,s=1.00 RRCF-fast!:w=0.20,s=1.00 RRCF-mid!:w=0.20,s=1.00 RRCF-slow!:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-15T06:11:32.26514528Z","score":0.9197462369828872,"is_anomaly":false,"confidence":0.9197462369828873,"method":"SEAD","details":"MAD!:w=0.21,s=0.95 RRCF-fast!:w=0.20,s=0.95 RRCF-mid!:w=0.20,s=0.95 RRCF-slow!:w=0.20,s=0.95 COPOD!:w=0.20,s=0.80"} +{"timestamp":"2026-03-15T06:12:02.227366404Z","score":0.6733797259113931,"is_anomaly":false,"confidence":0.7321364294137601,"method":"SEAD","details":"MAD!:w=0.21,s=0.52 RRCF-fast:w=0.20,s=0.81 RRCF-mid:w=0.20,s=0.81 RRCF-slow:w=0.20,s=0.81 COPOD!:w=0.20,s=0.43"} +{"timestamp":"2026-03-15T06:12:32.272409639Z","score":0.6701448963328154,"is_anomaly":false,"confidence":0.7286193401901182,"method":"SEAD","details":"MAD!:w=0.21,s=0.55 RRCF-fast:w=0.20,s=0.77 RRCF-mid:w=0.20,s=0.77 RRCF-slow:w=0.20,s=0.77 COPOD!:w=0.20,s=0.50"} +{"timestamp":"2026-03-15T06:13:02.222838102Z","score":0.5875328391216912,"is_anomaly":false,"confidence":0.6387988507014929,"method":"SEAD","details":"MAD!:w=0.21,s=0.52 RRCF-fast:w=0.20,s=0.74 RRCF-mid:w=0.20,s=0.74 RRCF-slow:w=0.20,s=0.74 COPOD!:w=0.20,s=0.22"} +{"timestamp":"2026-03-15T06:13:32.271102678Z","score":0.8416439294953028,"is_anomaly":false,"confidence":0.915082764846324,"method":"SEAD","details":"MAD!:w=0.21,s=0.75 RRCF-fast:w=0.20,s=0.83 RRCF-mid:w=0.20,s=0.83 RRCF-slow:w=0.20,s=0.83 COPOD!:w=0.21,s=0.96"} +{"timestamp":"2026-03-15T06:14:02.225552301Z","score":0.7109101764266175,"is_anomaly":false,"confidence":0.7729416526439615,"method":"SEAD","details":"MAD!:w=0.21,s=0.68 RRCF-fast:w=0.20,s=0.72 RRCF-mid:w=0.20,s=0.76 RRCF-slow:w=0.20,s=0.76 COPOD!:w=0.20,s=0.64"} +{"timestamp":"2026-03-15T06:14:32.221637837Z","score":0.5902864450854257,"is_anomaly":false,"confidence":0.6417927264609278,"method":"SEAD","details":"MAD!:w=0.21,s=0.54 RRCF-fast:w=0.20,s=0.65 RRCF-mid:w=0.20,s=0.65 RRCF-slow:w=0.20,s=0.65 COPOD!:w=0.21,s=0.46"} +{"timestamp":"2026-03-15T06:15:02.282598692Z","score":0.5228360644530886,"is_anomaly":false,"confidence":0.5809289605034319,"method":"SEAD","details":"MAD!:w=0.21,s=0.59 RRCF-fast:w=0.19,s=0.63 RRCF-mid:w=0.20,s=0.63 RRCF-slow:w=0.20,s=0.63 COPOD!:w=0.21,s=0.15"} +{"timestamp":"2026-03-15T06:15:32.222087233Z","score":0.5548049145561882,"is_anomaly":false,"confidence":0.6164499050624314,"method":"SEAD","details":"MAD!:w=0.21,s=0.57 RRCF-fast:w=0.19,s=0.64 RRCF-mid:w=0.19,s=0.61 RRCF-slow:w=0.19,s=0.61 COPOD!:w=0.21,s=0.36"} +{"timestamp":"2026-03-15T06:16:02.269191311Z","score":0.7240998531739902,"is_anomaly":false,"confidence":0.8045553924155447,"method":"SEAD","details":"MAD!:w=0.21,s=0.66 RRCF-fast:w=0.19,s=0.72 RRCF-mid:w=0.19,s=0.72 RRCF-slow:w=0.19,s=0.72 COPOD!:w=0.21,s=0.79"} +{"timestamp":"2026-03-15T06:16:32.216126054Z","score":0.5431188337099708,"is_anomaly":false,"confidence":0.6034653707888565,"method":"SEAD","details":"MAD!:w=0.21,s=0.50 RRCF-fast:w=0.19,s=0.63 RRCF-mid:w=0.19,s=0.63 RRCF-slow:w=0.19,s=0.63 COPOD!:w=0.21,s=0.33"} +{"timestamp":"2026-03-15T06:17:02.222628025Z","score":0.6721425936469558,"is_anomaly":false,"confidence":0.7468251040521732,"method":"SEAD","details":"MAD!:w=0.21,s=0.68 RRCF-fast:w=0.19,s=0.58 RRCF-mid:w=0.19,s=0.68 RRCF-slow:w=0.19,s=0.68 COPOD!:w=0.21,s=0.74"} +{"timestamp":"2026-03-15T06:17:32.269284192Z","score":0.6683492437209042,"is_anomaly":false,"confidence":0.7426102708010047,"method":"SEAD","details":"MAD!:w=0.21,s=0.59 RRCF-fast:w=0.19,s=0.62 RRCF-mid:w=0.19,s=0.72 RRCF-slow:w=0.19,s=0.69 COPOD!:w=0.21,s=0.72"} +{"timestamp":"2026-03-15T06:18:02.224787297Z","score":0.4356180931612365,"is_anomaly":false,"confidence":0.48402010351248503,"method":"SEAD","details":"MAD!:w=0.21,s=0.45 RRCF-fast:w=0.19,s=0.45 RRCF-mid:w=0.19,s=0.45 RRCF-slow:w=0.19,s=0.45 COPOD!:w=0.21,s=0.36"} +{"timestamp":"2026-03-15T06:18:32.271469323Z","score":0.41459883048987833,"is_anomaly":false,"confidence":0.4608194035987095,"method":"SEAD","details":"MAD!:w=0.21,s=0.53 RRCF-fast:w=0.19,s=0.53 RRCF-mid:w=0.19,s=0.47 RRCF-slow:w=0.19,s=0.47 COPOD!:w=0.21,s=0.09"} +{"timestamp":"2026-03-15T06:19:02.222835809Z","score":0.4183192066347626,"is_anomaly":false,"confidence":0.46495453710649753,"method":"SEAD","details":"MAD!:w=0.21,s=0.51 RRCF-fast:w=0.19,s=0.54 RRCF-mid:w=0.19,s=0.51 RRCF-slow:w=0.19,s=0.49 COPOD!:w=0.21,s=0.06"} +{"timestamp":"2026-03-15T06:19:32.277522622Z","score":0.883678717953445,"is_anomaly":false,"confidence":0.9821935563566916,"method":"SEAD","details":"MAD!:w=0.21,s=0.83 RRCF-fast!:w=0.19,s=0.92 RRCF-mid:w=0.19,s=0.86 RRCF-slow:w=0.19,s=0.86 COPOD!:w=0.21,s=0.94"} +{"timestamp":"2026-03-15T06:20:02.267604515Z","score":0.7276691387102903,"is_anomaly":false,"confidence":0.8087916169986613,"method":"SEAD","details":"MAD!:w=0.21,s=0.78 RRCF-fast:w=0.19,s=0.76 RRCF-mid:w=0.19,s=0.76 RRCF-slow:w=0.19,s=0.78 COPOD!:w=0.21,s=0.57"} +{"timestamp":"2026-03-15T06:20:32.223440887Z","score":0.3266702820393929,"is_anomaly":false,"confidence":0.3630883482351992,"method":"SEAD","details":"MAD!:w=0.21,s=0.32 RRCF-fast:w=0.19,s=0.32 RRCF-mid:w=0.19,s=0.42 RRCF-slow:w=0.19,s=0.53 COPOD!:w=0.21,s=0.08"} +{"timestamp":"2026-03-15T06:21:02.270018372Z","score":0.4866894262511069,"is_anomaly":false,"confidence":0.5409468494588734,"method":"SEAD","details":"MAD!:w=0.21,s=0.59 RRCF-fast:w=0.19,s=0.38 RRCF-mid:w=0.19,s=0.54 RRCF-slow:w=0.19,s=0.54 COPOD!:w=0.21,s=0.38"} +{"timestamp":"2026-03-15T06:21:32.223178417Z","score":0.36064943829436613,"is_anomaly":false,"confidence":0.4008555906118908,"method":"SEAD","details":"MAD!:w=0.21,s=0.25 RRCF-fast:w=0.19,s=0.28 RRCF-mid:w=0.19,s=0.40 RRCF-slow:w=0.19,s=0.40 COPOD!:w=0.21,s=0.47"} +{"timestamp":"2026-03-15T06:22:02.270018641Z","score":0.8150421115306379,"is_anomaly":false,"confidence":0.9130247881068634,"method":"SEAD","details":"MAD!:w=0.21,s=0.73 RRCF-fast:w=0.19,s=0.76 RRCF-mid:w=0.19,s=0.85 RRCF-slow:w=0.19,s=0.83 COPOD!:w=0.21,s=0.90"} +{"timestamp":"2026-03-15T06:22:32.224313766Z","score":0.6967245111536423,"is_anomaly":false,"confidence":0.7804832905753483,"method":"SEAD","details":"MAD!:w=0.21,s=0.69 RRCF-fast:w=0.19,s=0.52 RRCF-mid:w=0.19,s=0.74 RRCF-slow:w=0.19,s=0.74 COPOD!:w=0.21,s=0.79"} +{"timestamp":"2026-03-15T06:23:02.231649876Z","score":0.6898743299185506,"is_anomaly":false,"confidence":0.7728095947230964,"method":"SEAD","details":"MAD!:w=0.21,s=0.67 RRCF-fast:w=0.19,s=0.56 RRCF-mid:w=0.19,s=0.70 RRCF-slow:w=0.19,s=0.72 COPOD!:w=0.21,s=0.79"} +{"timestamp":"2026-03-15T06:23:32.272265614Z","score":0.49917504477038843,"is_anomaly":false,"confidence":0.5591848360127165,"method":"SEAD","details":"MAD!:w=0.21,s=0.23 RRCF-fast:w=0.20,s=0.41 RRCF-mid:w=0.19,s=0.59 RRCF-slow:w=0.19,s=0.57 COPOD!:w=0.21,s=0.70"} +{"timestamp":"2026-03-15T06:24:02.223489549Z","score":0.36592854019955,"is_anomaly":false,"confidence":0.4099197123084958,"method":"SEAD","details":"MAD!:w=0.21,s=0.16 RRCF-fast:w=0.20,s=0.24 RRCF-mid:w=0.19,s=0.36 RRCF-slow:w=0.19,s=0.40 COPOD!:w=0.21,s=0.67"} +{"timestamp":"2026-03-15T06:24:32.271929044Z","score":0.39161364537985105,"is_anomaly":false,"confidence":0.4386926276989729,"method":"SEAD","details":"MAD!:w=0.21,s=0.52 RRCF-fast:w=0.20,s=0.22 RRCF-mid:w=0.19,s=0.33 RRCF-slow:w=0.19,s=0.33 COPOD!:w=0.21,s=0.54"} +{"timestamp":"2026-03-15T06:25:02.222710516Z","score":0.35829325441101884,"is_anomaly":false,"confidence":0.4054564709228347,"method":"SEAD","details":"MAD!:w=0.21,s=0.47 RRCF-fast:w=0.20,s=0.23 RRCF-mid:w=0.19,s=0.40 RRCF-slow:w=0.19,s=0.36 COPOD!:w=0.21,s=0.32"} +{"timestamp":"2026-03-15T06:25:35.477308752Z","score":0.9582921946563046,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.21,s=0.92 RRCF-fast!:w=0.20,s=0.96 RRCF-mid!:w=0.19,s=0.96 RRCF-slow!:w=0.19,s=0.96 COPOD!:w=0.21,s=1.00"} +{"timestamp":"2026-03-15T06:26:02.265648881Z","score":0.8501627445175719,"is_anomaly":false,"confidence":0.9523675509376757,"method":"SEAD","details":"MAD!:w=0.21,s=0.90 RRCF-fast!:w=0.20,s=0.92 RRCF-mid!:w=0.19,s=0.92 RRCF-slow!:w=0.19,s=0.92 COPOD!:w=0.21,s=0.61"} +{"timestamp":"2026-03-15T06:26:32.229327238Z","score":0.3124878022288578,"is_anomaly":false,"confidence":0.35005443937145253,"method":"SEAD","details":"MAD!:w=0.21,s=0.38 RRCF-fast:w=0.20,s=0.38 RRCF-mid:w=0.19,s=0.34 RRCF-slow:w=0.19,s=0.44 COPOD!:w=0.21,s=0.04"} +{"timestamp":"2026-03-15T06:27:02.270040427Z","score":0.30044865096897166,"is_anomaly":false,"confidence":0.336567966252412,"method":"SEAD","details":"MAD!:w=0.21,s=0.24 RRCF-fast:w=0.20,s=0.22 RRCF-mid:w=0.19,s=0.45 RRCF-slow:w=0.19,s=0.51 COPOD!:w=0.21,s=0.12"} +{"timestamp":"2026-03-15T06:27:32.224239197Z","score":0.30272441234284925,"is_anomaly":false,"confidence":0.33911731495080527,"method":"SEAD","details":"MAD!:w=0.21,s=0.23 RRCF-fast:w=0.20,s=0.40 RRCF-mid:w=0.19,s=0.35 RRCF-slow:w=0.19,s=0.44 COPOD!:w=0.21,s=0.12"} +{"timestamp":"2026-03-15T06:28:02.272887784Z","score":0.415310639798531,"is_anomaly":false,"confidence":0.4652384257648578,"method":"SEAD","details":"MAD!:w=0.21,s=0.51 RRCF-fast:w=0.20,s=0.43 RRCF-mid:w=0.19,s=0.32 RRCF-slow:w=0.19,s=0.47 COPOD!:w=0.21,s=0.34"} +{"timestamp":"2026-03-15T06:28:32.22099529Z","score":0.6892861647919086,"is_anomaly":false,"confidence":0.7800189715876155,"method":"SEAD","details":"MAD!:w=0.21,s=0.44 RRCF-fast:w=0.20,s=0.76 RRCF-mid:w=0.19,s=0.76 RRCF-slow:w=0.19,s=0.76 COPOD!:w=0.21,s=0.74"} +{"timestamp":"2026-03-15T06:29:02.2831572Z","score":0.9637052489497179,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.21,s=0.93 RRCF-fast!:w=0.20,s=0.96 RRCF-mid!:w=0.19,s=0.96 RRCF-slow!:w=0.19,s=0.96 COPOD!:w=0.21,s=1.00"} +{"timestamp":"2026-03-15T06:29:32.268029384Z","score":0.8979431816050524,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.21,s=0.91 RRCF-fast!:w=0.20,s=0.95 RRCF-mid!:w=0.19,s=0.93 RRCF-slow!:w=0.19,s=0.93 COPOD!:w=0.21,s=0.79"} +{"timestamp":"2026-03-15T06:30:02.222620592Z","score":0.5807781492497549,"is_anomaly":false,"confidence":0.6467871922715952,"method":"SEAD","details":"MAD!:w=0.21,s=0.63 RRCF-fast:w=0.20,s=0.61 RRCF-mid:w=0.19,s=0.61 RRCF-slow:w=0.19,s=0.60 COPOD!:w=0.21,s=0.46"} +{"timestamp":"2026-03-15T06:30:32.271272972Z","score":0.4347620187012138,"is_anomaly":false,"confidence":0.4841754217946027,"method":"SEAD","details":"MAD!:w=0.21,s=0.48 RRCF-fast:w=0.20,s=0.47 RRCF-mid:w=0.19,s=0.41 RRCF-slow:w=0.19,s=0.41 COPOD!:w=0.21,s=0.40"} +{"timestamp":"2026-03-15T06:31:02.223901024Z","score":0.44124529560433245,"is_anomaly":false,"confidence":0.4913955633758662,"method":"SEAD","details":"MAD!:w=0.21,s=0.54 RRCF-fast:w=0.20,s=0.61 RRCF-mid:w=0.19,s=0.27 RRCF-slow:w=0.19,s=0.29 COPOD!:w=0.21,s=0.47"} +{"timestamp":"2026-03-15T06:31:32.266658177Z","score":0.5181271643659208,"is_anomaly":false,"confidence":0.5770155339225146,"method":"SEAD","details":"MAD!:w=0.21,s=0.55 RRCF-fast:w=0.19,s=0.35 RRCF-mid:w=0.19,s=0.55 RRCF-slow:w=0.19,s=0.55 COPOD!:w=0.21,s=0.58"} +{"timestamp":"2026-03-15T06:32:02.224829198Z","score":0.4579705776010006,"is_anomaly":false,"confidence":0.5130268530396216,"method":"SEAD","details":"MAD!:w=0.21,s=0.26 RRCF-fast:w=0.20,s=0.41 RRCF-mid:w=0.19,s=0.52 RRCF-slow:w=0.19,s=0.51 COPOD!:w=0.21,s=0.59"} +{"timestamp":"2026-03-15T06:32:32.223928465Z","score":0.42487005422025337,"is_anomaly":false,"confidence":0.47594705321286507,"method":"SEAD","details":"MAD!:w=0.21,s=0.35 RRCF-fast:w=0.20,s=0.29 RRCF-mid:w=0.19,s=0.32 RRCF-slow:w=0.19,s=0.37 COPOD!:w=0.21,s=0.76"} +{"timestamp":"2026-03-15T06:33:02.270931164Z","score":0.3877361154449215,"is_anomaly":false,"confidence":0.4343489491366855,"method":"SEAD","details":"MAD!:w=0.21,s=0.35 RRCF-fast:w=0.20,s=0.43 RRCF-mid:w=0.19,s=0.19 RRCF-slow:w=0.19,s=0.21 COPOD!:w=0.21,s=0.73"} +{"timestamp":"2026-03-15T06:33:32.2224778Z","score":0.33541549332945664,"is_anomaly":false,"confidence":0.37573845006580914,"method":"SEAD","details":"MAD!:w=0.21,s=0.41 RRCF-fast:w=0.20,s=0.19 RRCF-mid:w=0.19,s=0.27 RRCF-slow:w=0.19,s=0.28 COPOD!:w=0.21,s=0.52"} +{"timestamp":"2026-03-15T06:34:02.268427225Z","score":0.45881498471036497,"is_anomaly":false,"confidence":0.5139727730248546,"method":"SEAD","details":"MAD!:w=0.21,s=0.65 RRCF-fast:w=0.20,s=0.29 RRCF-mid:w=0.19,s=0.48 RRCF-slow:w=0.19,s=0.55 COPOD!:w=0.21,s=0.32"} +{"timestamp":"2026-03-15T06:34:32.226578563Z","score":0.32193478671139186,"is_anomaly":false,"confidence":0.36063712078556526,"method":"SEAD","details":"MAD!:w=0.21,s=0.55 RRCF-fast:w=0.20,s=0.17 RRCF-mid:w=0.19,s=0.35 RRCF-slow:w=0.19,s=0.36 COPOD!:w=0.21,s=0.18"} +{"timestamp":"2026-03-15T06:35:02.272578321Z","score":0.7156378563250221,"is_anomaly":false,"confidence":0.8098394153730476,"method":"SEAD","details":"MAD!:w=0.21,s=0.70 RRCF-fast:w=0.20,s=0.60 RRCF-mid:w=0.19,s=0.72 RRCF-slow:w=0.19,s=0.67 COPOD!:w=0.21,s=0.88"} +{"timestamp":"2026-03-15T06:35:32.223150289Z","score":0.49000008998867667,"is_anomaly":false,"confidence":0.5545002725917084,"method":"SEAD","details":"MAD!:w=0.21,s=0.44 RRCF-fast:w=0.20,s=0.32 RRCF-mid:w=0.19,s=0.41 RRCF-slow:w=0.19,s=0.56 COPOD!:w=0.21,s=0.71"} +{"timestamp":"2026-03-15T06:36:02.303831054Z","score":0.8660789773622721,"is_anomaly":false,"confidence":0.9800835527283797,"method":"SEAD","details":"MAD!:w=0.21,s=0.80 RRCF-fast:w=0.20,s=0.86 RRCF-mid:w=0.19,s=0.87 RRCF-slow!:w=0.19,s=0.90 COPOD!:w=0.21,s=0.91"} +{"timestamp":"2026-03-15T06:36:32.273018274Z","score":0.741108102616898,"is_anomaly":false,"confidence":0.8386623866344396,"method":"SEAD","details":"MAD!:w=0.21,s=0.74 RRCF-fast:w=0.20,s=0.77 RRCF-mid:w=0.19,s=0.77 RRCF-slow:w=0.19,s=0.80 COPOD!:w=0.21,s=0.63"} +{"timestamp":"2026-03-15T06:37:02.225162442Z","score":0.29997487386394983,"is_anomaly":false,"confidence":0.3394614668990517,"method":"SEAD","details":"MAD!:w=0.21,s=0.23 RRCF-fast:w=0.20,s=0.23 RRCF-mid:w=0.19,s=0.24 RRCF-slow:w=0.19,s=0.31 COPOD!:w=0.21,s=0.49"} +{"timestamp":"2026-03-15T06:37:32.272329765Z","score":0.31935530758096276,"is_anomaly":false,"confidence":0.36139300527749885,"method":"SEAD","details":"MAD!:w=0.21,s=0.28 RRCF-fast:w=0.20,s=0.14 RRCF-mid:w=0.19,s=0.26 RRCF-slow:w=0.19,s=0.29 COPOD!:w=0.21,s=0.61"} +{"timestamp":"2026-03-15T06:38:02.225408293Z","score":0.35480949537199713,"is_anomaly":false,"confidence":0.4015141342248435,"method":"SEAD","details":"MAD!:w=0.21,s=0.27 RRCF-fast:w=0.20,s=0.15 RRCF-mid:w=0.19,s=0.22 RRCF-slow:w=0.19,s=0.27 COPOD!:w=0.21,s=0.84"} +{"timestamp":"2026-03-15T06:38:33.354533513Z","score":0.8915714954436365,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.21,s=0.73 RRCF-fast!:w=0.20,s=0.91 RRCF-mid!:w=0.19,s=0.97 RRCF-slow!:w=0.19,s=0.97 COPOD!:w=0.20,s=0.89"} +{"timestamp":"2026-03-15T06:39:02.269768991Z","score":0.6024707160893181,"is_anomaly":false,"confidence":0.681775744791738,"method":"SEAD","details":"MAD!:w=0.21,s=0.21 RRCF-fast:w=0.20,s=0.56 RRCF-mid:w=0.19,s=0.73 RRCF-slow:w=0.19,s=0.72 COPOD!:w=0.20,s=0.81"} +{"timestamp":"2026-03-15T06:39:32.22841847Z","score":0.3456755962046474,"is_anomaly":false,"confidence":0.39117791249427675,"method":"SEAD","details":"MAD!:w=0.21,s=0.16 RRCF-fast:w=0.20,s=0.21 RRCF-mid:w=0.19,s=0.21 RRCF-slow:w=0.19,s=0.47 COPOD!:w=0.20,s=0.68"} +{"timestamp":"2026-03-15T06:40:02.273829061Z","score":0.31025412015075177,"is_anomaly":false,"confidence":0.3510938012282162,"method":"SEAD","details":"MAD!:w=0.21,s=0.44 RRCF-fast:w=0.20,s=0.18 RRCF-mid:w=0.19,s=0.30 RRCF-slow:w=0.19,s=0.35 COPOD!:w=0.20,s=0.27"} +{"timestamp":"2026-03-15T06:40:32.224851669Z","score":0.2465066947329804,"is_anomaly":false,"confidence":0.27895511086187225,"method":"SEAD","details":"MAD!:w=0.21,s=0.18 RRCF-fast:w=0.20,s=0.23 RRCF-mid:w=0.19,s=0.40 RRCF-slow:w=0.19,s=0.26 COPOD!:w=0.20,s=0.18"} +{"timestamp":"2026-03-15T06:41:02.272454143Z","score":0.6504988361077414,"is_anomaly":false,"confidence":0.7361259504067991,"method":"SEAD","details":"MAD!:w=0.21,s=0.67 RRCF-fast:w=0.20,s=0.52 RRCF-mid:w=0.19,s=0.59 RRCF-slow:w=0.19,s=0.72 COPOD!:w=0.20,s=0.75"} +{"timestamp":"2026-03-15T06:41:32.221718239Z","score":0.3109589270370095,"is_anomaly":false,"confidence":0.35189138396042235,"method":"SEAD","details":"MAD!:w=0.21,s=0.44 RRCF-fast:w=0.20,s=0.23 RRCF-mid:w=0.19,s=0.17 RRCF-slow:w=0.19,s=0.25 COPOD!:w=0.20,s=0.45"} +{"timestamp":"2026-03-15T06:42:02.287464439Z","score":0.9301122896017878,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.21,s=0.88 RRCF-fast!:w=0.20,s=0.94 RRCF-mid!:w=0.19,s=0.94 RRCF-slow!:w=0.19,s=0.94 COPOD!:w=0.20,s=0.96"} +{"timestamp":"2026-03-15T06:42:32.268994925Z","score":0.8481055563131346,"is_anomaly":false,"confidence":0.9597442363184936,"method":"SEAD","details":"MAD!:w=0.21,s=0.87 RRCF-fast!:w=0.20,s=0.85 RRCF-mid!:w=0.19,s=0.89 RRCF-slow!:w=0.19,s=0.89 COPOD!:w=0.20,s=0.74"} +{"timestamp":"2026-03-15T06:43:02.223941842Z","score":0.40277742844879777,"is_anomaly":false,"confidence":0.45579623031050226,"method":"SEAD","details":"MAD!:w=0.21,s=0.22 RRCF-fast:w=0.20,s=0.48 RRCF-mid:w=0.19,s=0.42 RRCF-slow:w=0.19,s=0.40 COPOD!:w=0.20,s=0.51"} +{"timestamp":"2026-03-15T06:43:32.269383279Z","score":0.43833435852335295,"is_anomaly":false,"confidence":0.49603362581653326,"method":"SEAD","details":"MAD!:w=0.21,s=0.04 RRCF-fast:w=0.20,s=0.49 RRCF-mid:w=0.19,s=0.57 RRCF-slow:w=0.19,s=0.51 COPOD!:w=0.20,s=0.62"} +{"timestamp":"2026-03-15T06:44:02.22496646Z","score":0.4509522818529744,"is_anomaly":false,"confidence":0.5103124842673104,"method":"SEAD","details":"MAD!:w=0.22,s=0.11 RRCF-fast:w=0.20,s=0.48 RRCF-mid:w=0.19,s=0.66 RRCF-slow:w=0.19,s=0.54 COPOD!:w=0.20,s=0.51"} +{"timestamp":"2026-03-15T06:44:32.269530189Z","score":0.9528085922060592,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.22,s=0.97 RRCF-fast!:w=0.20,s=0.85 RRCF-mid!:w=0.19,s=1.00 RRCF-slow!:w=0.19,s=0.98 COPOD!:w=0.20,s=0.98"} +{"timestamp":"2026-03-15T06:45:02.267796481Z","score":0.8520865201971202,"is_anomaly":false,"confidence":0.9642492264275746,"method":"SEAD","details":"MAD!:w=0.22,s=0.94 RRCF-fast!:w=0.20,s=0.85 RRCF-mid!:w=0.19,s=0.97 RRCF-slow!:w=0.19,s=0.95 COPOD!:w=0.20,s=0.55"} +{"timestamp":"2026-03-15T06:45:32.223500863Z","score":0.6011223617961899,"is_anomaly":false,"confidence":0.6802499025758578,"method":"SEAD","details":"MAD!:w=0.22,s=0.60 RRCF-fast:w=0.20,s=0.52 RRCF-mid:w=0.19,s=0.74 RRCF-slow:w=0.19,s=0.74 COPOD!:w=0.20,s=0.42"} +{"timestamp":"2026-03-15T06:46:02.269986886Z","score":0.4715830195383135,"is_anomaly":false,"confidence":0.5336589078782793,"method":"SEAD","details":"MAD!:w=0.22,s=0.47 RRCF-fast:w=0.20,s=0.65 RRCF-mid:w=0.19,s=0.54 RRCF-slow:w=0.19,s=0.60 COPOD!:w=0.20,s=0.11"} +{"timestamp":"2026-03-15T06:46:32.226240795Z","score":0.4566421969712064,"is_anomaly":false,"confidence":0.5167513799910973,"method":"SEAD","details":"MAD!:w=0.22,s=0.50 RRCF-fast:w=0.20,s=0.46 RRCF-mid:w=0.19,s=0.72 RRCF-slow:w=0.19,s=0.61 COPOD!:w=0.20,s=0.02"} +{"timestamp":"2026-03-15T06:47:02.268533949Z","score":0.6001565309912937,"is_anomaly":false,"confidence":0.6791569365631276,"method":"SEAD","details":"MAD!:w=0.22,s=0.58 RRCF-fast:w=0.20,s=0.53 RRCF-mid:w=0.19,s=0.65 RRCF-slow:w=0.19,s=0.67 COPOD!:w=0.21,s=0.58"} +{"timestamp":"2026-03-15T06:47:32.231050028Z","score":0.5259630150267017,"is_anomaly":false,"confidence":0.5951971053968634,"method":"SEAD","details":"MAD!:w=0.22,s=0.66 RRCF-fast:w=0.20,s=0.49 RRCF-mid:w=0.19,s=0.59 RRCF-slow:w=0.19,s=0.67 COPOD!:w=0.21,s=0.23"} +{"timestamp":"2026-03-15T06:48:02.270348999Z","score":0.8974825313084824,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.22,s=0.86 RRCF-fast:w=0.20,s=0.83 RRCF-mid!:w=0.19,s=0.95 RRCF-slow!:w=0.19,s=0.92 COPOD!:w=0.21,s=0.94"} +{"timestamp":"2026-03-15T06:48:32.227131543Z","score":0.7587572581261659,"is_anomaly":false,"confidence":0.858634753458145,"method":"SEAD","details":"MAD!:w=0.22,s=0.83 RRCF-fast:w=0.20,s=0.79 RRCF-mid:w=0.19,s=0.81 RRCF-slow!:w=0.19,s=0.88 COPOD!:w=0.21,s=0.50"} +{"timestamp":"2026-03-15T06:49:02.229336079Z","score":0.40856934425101765,"is_anomaly":false,"confidence":0.4623505533744702,"method":"SEAD","details":"MAD!:w=0.22,s=0.36 RRCF-fast:w=0.20,s=0.19 RRCF-mid:w=0.19,s=0.41 RRCF-slow:w=0.18,s=0.53 COPOD!:w=0.21,s=0.57"} +{"timestamp":"2026-03-15T06:49:32.270893384Z","score":0.32649685317764027,"is_anomaly":false,"confidence":0.3694746139567448,"method":"SEAD","details":"MAD!:w=0.22,s=0.31 RRCF-fast:w=0.20,s=0.15 RRCF-mid:w=0.19,s=0.46 RRCF-slow:w=0.18,s=0.65 COPOD!:w=0.21,s=0.11"} +{"timestamp":"2026-03-15T06:50:02.22557479Z","score":0.2694298590115877,"is_anomaly":false,"confidence":0.3048957200594053,"method":"SEAD","details":"MAD!:w=0.22,s=0.16 RRCF-fast:w=0.20,s=0.29 RRCF-mid:w=0.19,s=0.21 RRCF-slow:w=0.18,s=0.48 COPOD!:w=0.21,s=0.23"} +{"timestamp":"2026-03-15T06:50:32.272619057Z","score":0.4914616615630682,"is_anomaly":false,"confidence":0.5561542352194114,"method":"SEAD","details":"MAD!:w=0.22,s=0.03 RRCF-fast:w=0.20,s=0.38 RRCF-mid:w=0.19,s=0.64 RRCF-slow:w=0.18,s=0.59 COPOD!:w=0.21,s=0.86"} +{"timestamp":"2026-03-15T06:51:02.216443476Z","score":0.4159743352078484,"is_anomaly":false,"confidence":0.47073028551736973,"method":"SEAD","details":"MAD!:w=0.22,s=0.00 RRCF-fast:w=0.20,s=0.28 RRCF-mid:w=0.19,s=0.33 RRCF-slow:w=0.18,s=0.64 COPOD!:w=0.21,s=0.87"} +{"timestamp":"2026-03-15T06:51:33.006986985Z","score":0.7594741339537486,"is_anomaly":false,"confidence":0.8594459938026483,"method":"SEAD","details":"MAD!:w=0.22,s=0.03 RRCF-fast!:w=0.21,s=0.98 RRCF-mid!:w=0.19,s=1.00 RRCF-slow!:w=0.18,s=1.00 COPOD!:w=0.20,s=0.89"} +{"timestamp":"2026-03-15T06:52:03.942679304Z","score":0.5986731518083528,"is_anomaly":false,"confidence":0.6912454492679988,"method":"SEAD","details":"MAD!:w=0.22,s=0.01 RRCF-fast:w=0.20,s=0.64 RRCF-mid:w=0.19,s=0.79 RRCF-slow:w=0.18,s=0.79 COPOD!:w=0.20,s=0.85"} +{"timestamp":"2026-03-15T06:52:32.227419796Z","score":0.30261482763963105,"is_anomaly":false,"confidence":0.34940788952212415,"method":"SEAD","details":"MAD:w=0.23,s=0.00 RRCF-fast:w=0.20,s=0.21 RRCF-mid:w=0.19,s=0.58 RRCF-slow:w=0.18,s=0.71 COPOD!:w=0.20,s=0.13"} +{"timestamp":"2026-03-15T06:53:02.275959498Z","score":0.3118013953417829,"is_anomaly":false,"confidence":0.3600149680245148,"method":"SEAD","details":"MAD!:w=0.23,s=0.01 RRCF-fast:w=0.20,s=0.35 RRCF-mid:w=0.19,s=0.55 RRCF-slow:w=0.18,s=0.66 COPOD!:w=0.20,s=0.09"} +{"timestamp":"2026-03-15T06:53:32.226967438Z","score":0.27885752485626836,"is_anomaly":false,"confidence":0.32197701612104257,"method":"SEAD","details":"MAD!:w=0.23,s=0.02 RRCF-fast:w=0.20,s=0.12 RRCF-mid:w=0.18,s=0.56 RRCF-slow:w=0.18,s=0.70 COPOD!:w=0.20,s=0.12"} +{"timestamp":"2026-03-15T06:54:02.272654726Z","score":0.41197958144249064,"is_anomaly":false,"confidence":0.47568361801970366,"method":"SEAD","details":"MAD!:w=0.23,s=0.02 RRCF-fast:w=0.20,s=0.39 RRCF-mid:w=0.18,s=0.63 RRCF-slow:w=0.18,s=0.75 COPOD!:w=0.21,s=0.39"} +{"timestamp":"2026-03-15T06:54:32.225003719Z","score":0.3504207659752178,"is_anomaly":false,"confidence":0.404606017620308,"method":"SEAD","details":"MAD:w=0.23,s=0.01 RRCF-fast:w=0.20,s=0.22 RRCF-mid:w=0.18,s=0.49 RRCF-slow:w=0.17,s=0.72 COPOD!:w=0.20,s=0.43"} +{"timestamp":"2026-03-15T06:55:02.27494104Z","score":0.9026833766389273,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.23,s=0.93 RRCF-fast:w=0.21,s=0.82 RRCF-mid!:w=0.18,s=0.94 RRCF-slow!:w=0.17,s=0.91 COPOD!:w=0.20,s=0.91"} +{"timestamp":"2026-03-15T06:55:32.269912752Z","score":0.6442064850855516,"is_anomaly":false,"confidence":0.7438195614071422,"method":"SEAD","details":"MAD!:w=0.23,s=0.06 RRCF-fast:w=0.21,s=0.83 RRCF-mid:w=0.18,s=0.81 RRCF-slow:w=0.17,s=0.83 COPOD!:w=0.20,s=0.81"} +{"timestamp":"2026-03-15T06:56:02.873579367Z","score":0.5498594006894426,"is_anomaly":false,"confidence":0.6348836711913883,"method":"SEAD","details":"MAD!:w=0.24,s=0.05 RRCF-fast:w=0.20,s=0.63 RRCF-mid:w=0.18,s=0.72 RRCF-slow:w=0.17,s=0.62 COPOD!:w=0.20,s=0.84"} +{"timestamp":"2026-03-15T06:56:32.276236357Z","score":0.27554066470561017,"is_anomaly":false,"confidence":0.3181472728327803,"method":"SEAD","details":"MAD!:w=0.24,s=0.03 RRCF-fast:w=0.20,s=0.34 RRCF-mid:w=0.18,s=0.45 RRCF-slow:w=0.17,s=0.55 COPOD!:w=0.20,s=0.13"} +{"timestamp":"2026-03-15T06:57:02.225011487Z","score":0.3656052200249629,"is_anomaly":false,"confidence":0.4221384303062628,"method":"SEAD","details":"MAD!:w=0.24,s=0.05 RRCF-fast:w=0.20,s=0.15 RRCF-mid:w=0.18,s=0.26 RRCF-slow:w=0.17,s=0.64 COPOD!:w=0.20,s=0.81"} +{"timestamp":"2026-03-15T06:57:32.271863993Z","score":0.7004579442409085,"is_anomaly":false,"confidence":0.8087691337044357,"method":"SEAD","details":"MAD!:w=0.24,s=0.10 RRCF-fast:w=0.20,s=0.80 RRCF-mid!:w=0.18,s=0.90 RRCF-slow!:w=0.17,s=0.90 COPOD!:w=0.20,s=0.97"} +{"timestamp":"2026-03-15T06:58:02.223550552Z","score":0.5233672166245061,"is_anomaly":false,"confidence":0.6042950242464861,"method":"SEAD","details":"MAD!:w=0.25,s=0.10 RRCF-fast:w=0.20,s=0.58 RRCF-mid:w=0.18,s=0.74 RRCF-slow:w=0.17,s=0.80 COPOD!:w=0.20,s=0.56"} +{"timestamp":"2026-03-15T06:58:32.220854427Z","score":0.5976702844212536,"is_anomaly":false,"confidence":0.7014197153159865,"method":"SEAD","details":"MAD!:w=0.25,s=0.10 RRCF-fast:w=0.20,s=0.77 RRCF-mid:w=0.18,s=0.73 RRCF-slow:w=0.17,s=0.82 COPOD!:w=0.20,s=0.74"} +{"timestamp":"2026-03-15T06:59:02.277536905Z","score":0.3200432108106185,"is_anomaly":false,"confidence":0.37559942942951413,"method":"SEAD","details":"MAD!:w=0.25,s=0.05 RRCF-fast:w=0.20,s=0.10 RRCF-mid:w=0.18,s=0.33 RRCF-slow:w=0.17,s=0.61 COPOD!:w=0.20,s=0.63"} +{"timestamp":"2026-03-15T06:59:32.221708883Z","score":0.20304372824125697,"is_anomaly":false,"confidence":0.23829003678439273,"method":"SEAD","details":"MAD:w=0.25,s=0.02 RRCF-fast:w=0.20,s=0.11 RRCF-mid:w=0.18,s=0.19 RRCF-slow:w=0.17,s=0.48 COPOD!:w=0.20,s=0.31"} +{"timestamp":"2026-03-15T07:00:02.265647127Z","score":0.7190884734905112,"is_anomaly":false,"confidence":0.843914856585407,"method":"SEAD","details":"MAD!:w=0.25,s=0.13 RRCF-fast!:w=0.20,s=0.91 RRCF-mid!:w=0.18,s=0.96 RRCF-slow!:w=0.17,s=0.95 COPOD!:w=0.20,s=0.87"} +{"timestamp":"2026-03-15T07:00:32.226847942Z","score":0.5996159497559286,"is_anomaly":false,"confidence":0.7037031281954965,"method":"SEAD","details":"MAD!:w=0.26,s=0.09 RRCF-fast:w=0.20,s=0.72 RRCF-mid:w=0.18,s=0.81 RRCF-slow:w=0.17,s=0.89 COPOD!:w=0.20,s=0.70"} +{"timestamp":"2026-03-15T07:01:02.255800715Z","score":0.6238631641017542,"is_anomaly":false,"confidence":0.7321594102409118,"method":"SEAD","details":"MAD!:w=0.26,s=0.09 RRCF-fast:w=0.20,s=0.78 RRCF-mid:w=0.18,s=0.80 RRCF-slow:w=0.16,s=0.84 COPOD!:w=0.20,s=0.83"} +{"timestamp":"2026-03-15T07:01:32.263876345Z","score":0.5323147110899829,"is_anomaly":false,"confidence":0.6247190848258439,"method":"SEAD","details":"MAD!:w=0.26,s=0.06 RRCF-fast:w=0.20,s=0.60 RRCF-mid:w=0.18,s=0.68 RRCF-slow:w=0.16,s=0.78 COPOD!:w=0.19,s=0.77"} +{"timestamp":"2026-03-15T07:02:02.215663226Z","score":0.31892513238928216,"is_anomaly":false,"confidence":0.3751342133561233,"method":"SEAD","details":"MAD!:w=0.27,s=0.06 RRCF-fast:w=0.20,s=0.46 RRCF-mid:w=0.17,s=0.12 RRCF-slow:w=0.16,s=0.52 COPOD!:w=0.19,s=0.54"} +{"timestamp":"2026-03-15T07:02:32.235231781Z","score":0.32046108222959674,"is_anomaly":false,"confidence":0.37694086725882536,"method":"SEAD","details":"MAD!:w=0.27,s=0.06 RRCF-fast:w=0.20,s=0.35 RRCF-mid:w=0.18,s=0.34 RRCF-slow:w=0.16,s=0.67 COPOD!:w=0.19,s=0.34"} +{"timestamp":"2026-03-15T07:03:02.199373191Z","score":0.2300881823911762,"is_anomaly":false,"confidence":0.2706401613984398,"method":"SEAD","details":"MAD!:w=0.27,s=0.07 RRCF-fast:w=0.20,s=0.18 RRCF-mid:w=0.18,s=0.24 RRCF-slow:w=0.16,s=0.53 COPOD!:w=0.19,s=0.26"} +{"timestamp":"2026-03-15T07:03:32.272451015Z","score":0.9314072506188229,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.27,s=0.93 RRCF-fast!:w=0.20,s=0.89 RRCF-mid!:w=0.18,s=0.90 RRCF-slow!:w=0.16,s=0.95 COPOD!:w=0.19,s=0.99"} +{"timestamp":"2026-03-15T07:04:02.234709399Z","score":0.566410878290607,"is_anomaly":false,"confidence":0.6647339969180296,"method":"SEAD","details":"MAD!:w=0.27,s=0.18 RRCF-fast:w=0.20,s=0.44 RRCF-mid:w=0.18,s=0.78 RRCF-slow:w=0.16,s=0.81 COPOD!:w=0.19,s=0.84"} +{"timestamp":"2026-03-15T07:04:32.372623829Z","score":0.1764970515798721,"is_anomaly":false,"confidence":0.20713512935170197,"method":"SEAD","details":"MAD!:w=0.27,s=0.02 RRCF-fast:w=0.20,s=0.12 RRCF-mid:w=0.17,s=0.17 RRCF-slow:w=0.16,s=0.52 COPOD!:w=0.19,s=0.17"} +{"timestamp":"2026-03-15T07:05:02.385153094Z","score":0.617850959487049,"is_anomaly":false,"confidence":0.7267443362713464,"method":"SEAD","details":"MAD!:w=0.28,s=0.17 RRCF-fast:w=0.20,s=0.76 RRCF-mid:w=0.17,s=0.86 RRCF-slow:w=0.16,s=0.87 COPOD!:w=0.19,s=0.70"} +{"timestamp":"2026-03-15T07:05:32.226900332Z","score":0.26914547126162386,"is_anomaly":false,"confidence":0.31658111696526,"method":"SEAD","details":"MAD!:w=0.28,s=0.12 RRCF-fast:w=0.20,s=0.13 RRCF-mid:w=0.17,s=0.23 RRCF-slow:w=0.16,s=0.48 COPOD!:w=0.19,s=0.48"} +{"timestamp":"2026-03-15T07:06:02.271690322Z","score":0.9634334722142496,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=0.92 RRCF-fast!:w=0.20,s=0.99 RRCF-mid!:w=0.17,s=0.96 RRCF-slow!:w=0.16,s=0.98 COPOD!:w=0.19,s=0.98"} +{"timestamp":"2026-03-15T07:06:32.272369395Z","score":0.8323298720561767,"is_anomaly":false,"confidence":0.9768138003915694,"method":"SEAD","details":"MAD!:w=0.28,s=0.78 RRCF-fast!:w=0.20,s=0.99 RRCF-mid:w=0.17,s=0.75 RRCF-slow!:w=0.16,s=0.91 COPOD!:w=0.19,s=0.76"} +{"timestamp":"2026-03-15T07:07:02.226407052Z","score":0.4711603143813692,"is_anomaly":false,"confidence":0.552948912127341,"method":"SEAD","details":"MAD!:w=0.28,s=0.07 RRCF-fast:w=0.20,s=0.79 RRCF-mid:w=0.17,s=0.40 RRCF-slow:w=0.16,s=0.65 COPOD!:w=0.19,s=0.66"} +{"timestamp":"2026-03-15T07:07:34.359094613Z","score":0.34350109812631535,"is_anomaly":false,"confidence":0.4031293653687309,"method":"SEAD","details":"MAD!:w=0.28,s=0.03 RRCF-fast:w=0.20,s=0.57 RRCF-mid:w=0.17,s=0.40 RRCF-slow:w=0.16,s=0.49 COPOD!:w=0.19,s=0.40"} +{"timestamp":"2026-03-15T07:08:02.225355286Z","score":0.5270110649744368,"is_anomaly":false,"confidence":0.6184947801457052,"method":"SEAD","details":"MAD!:w=0.29,s=0.18 RRCF-fast:w=0.20,s=0.65 RRCF-mid:w=0.17,s=0.77 RRCF-slow:w=0.16,s=0.83 COPOD!:w=0.19,s=0.45"} +{"timestamp":"2026-03-15T07:08:32.268351334Z","score":0.3951659011020365,"is_anomaly":false,"confidence":0.4648120652784837,"method":"SEAD","details":"MAD:w=0.29,s=0.02 RRCF-fast:w=0.20,s=0.75 RRCF-mid:w=0.17,s=0.37 RRCF-slow:w=0.16,s=0.60 COPOD!:w=0.19,s=0.45"} +{"timestamp":"2026-03-15T07:09:02.22547268Z","score":0.2447927229767986,"is_anomaly":false,"confidence":0.2879363093188789,"method":"SEAD","details":"MAD:w=0.29,s=0.00 RRCF-fast:w=0.19,s=0.48 RRCF-mid:w=0.17,s=0.24 RRCF-slow:w=0.15,s=0.57 COPOD!:w=0.19,s=0.11"} +{"timestamp":"2026-03-15T07:09:32.28228529Z","score":0.9394157405121453,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=0.92 RRCF-fast!:w=0.19,s=0.91 RRCF-mid!:w=0.17,s=0.90 RRCF-slow!:w=0.15,s=0.98 COPOD!:w=0.19,s=1.00"} +{"timestamp":"2026-03-15T07:10:02.269235826Z","score":0.7680468958317653,"is_anomaly":false,"confidence":0.9013719588640914,"method":"SEAD","details":"MAD!:w=0.29,s=0.78 RRCF-fast:w=0.19,s=0.62 RRCF-mid:w=0.17,s=0.72 RRCF-slow:w=0.15,s=0.88 COPOD!:w=0.19,s=0.85"} +{"timestamp":"2026-03-15T07:10:32.228455819Z","score":0.4202272551927788,"is_anomaly":false,"confidence":0.4931743962990568,"method":"SEAD","details":"MAD!:w=0.29,s=0.09 RRCF-fast:w=0.19,s=0.49 RRCF-mid:w=0.17,s=0.46 RRCF-slow:w=0.15,s=0.54 COPOD!:w=0.19,s=0.72"} +{"timestamp":"2026-03-15T07:11:02.2751288Z","score":0.3008788718068049,"is_anomaly":false,"confidence":0.3531083577489292,"method":"SEAD","details":"MAD!:w=0.30,s=0.09 RRCF-fast:w=0.19,s=0.35 RRCF-mid:w=0.17,s=0.60 RRCF-slow:w=0.15,s=0.48 COPOD!:w=0.19,s=0.16"} +{"timestamp":"2026-03-15T07:11:32.227038116Z","score":0.2535735170205534,"is_anomaly":false,"confidence":0.2975912785967934,"method":"SEAD","details":"MAD!:w=0.30,s=0.08 RRCF-fast:w=0.19,s=0.36 RRCF-mid:w=0.17,s=0.41 RRCF-slow:w=0.15,s=0.36 COPOD!:w=0.19,s=0.19"} +{"timestamp":"2026-03-15T07:12:02.274724199Z","score":0.32154855748396255,"is_anomaly":false,"confidence":0.37822000500201464,"method":"SEAD","details":"MAD!:w=0.30,s=0.09 RRCF-fast:w=0.19,s=0.31 RRCF-mid:w=0.17,s=0.60 RRCF-slow:w=0.15,s=0.53 COPOD!:w=0.19,s=0.27"} +{"timestamp":"2026-03-15T07:12:32.227069455Z","score":0.2176850829117029,"is_anomaly":false,"confidence":0.2560510729451326,"method":"SEAD","details":"MAD:w=0.30,s=0.01 RRCF-fast:w=0.19,s=0.20 RRCF-mid:w=0.17,s=0.44 RRCF-slow:w=0.15,s=0.37 COPOD!:w=0.19,s=0.24"} +{"timestamp":"2026-03-15T07:13:02.268265648Z","score":0.8971850478401009,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=0.91 RRCF-fast:w=0.19,s=0.80 RRCF-mid!:w=0.17,s=0.92 RRCF-slow!:w=0.15,s=0.97 COPOD!:w=0.19,s=0.91"} +{"timestamp":"2026-03-15T07:13:32.271635321Z","score":0.5449478023135608,"is_anomaly":false,"confidence":0.6395451511044835,"method":"SEAD","details":"MAD!:w=0.30,s=0.24 RRCF-fast:w=0.19,s=0.56 RRCF-mid:w=0.17,s=0.70 RRCF-slow:w=0.15,s=0.81 COPOD!:w=0.19,s=0.67"} +{"timestamp":"2026-03-15T07:14:02.223328199Z","score":0.24468866178642937,"is_anomaly":false,"confidence":0.28716410362861217,"method":"SEAD","details":"MAD:w=0.30,s=0.03 RRCF-fast:w=0.19,s=0.06 RRCF-mid:w=0.17,s=0.14 RRCF-slow:w=0.15,s=0.50 COPOD!:w=0.19,s=0.68"} +{"timestamp":"2026-03-15T07:14:32.274549787Z","score":0.1889541842267528,"is_anomaly":false,"confidence":0.2217546924495889,"method":"SEAD","details":"MAD:w=0.31,s=0.03 RRCF-fast:w=0.19,s=0.25 RRCF-mid:w=0.17,s=0.20 RRCF-slow:w=0.15,s=0.53 COPOD!:w=0.18,s=0.09"} +{"timestamp":"2026-03-15T07:15:02.236443162Z","score":0.35482353503392866,"is_anomaly":false,"confidence":0.4173595435957084,"method":"SEAD","details":"MAD!:w=0.31,s=0.11 RRCF-fast:w=0.19,s=0.42 RRCF-mid:w=0.17,s=0.50 RRCF-slow:w=0.15,s=0.41 COPOD!:w=0.18,s=0.51"} +{"timestamp":"2026-03-15T07:15:32.31304147Z","score":0.8829543761782108,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=0.92 RRCF-fast:w=0.19,s=0.76 RRCF-mid:w=0.17,s=0.79 RRCF-slow!:w=0.15,s=0.97 COPOD!:w=0.18,s=0.97"} +{"timestamp":"2026-03-15T07:16:02.279296531Z","score":0.5792755899082347,"is_anomaly":false,"confidence":0.6798318905153271,"method":"SEAD","details":"MAD!:w=0.31,s=0.76 RRCF-fast:w=0.19,s=0.07 RRCF-mid:w=0.17,s=0.59 RRCF-slow:w=0.15,s=0.85 COPOD!:w=0.18,s=0.58"} +{"timestamp":"2026-03-15T07:16:32.230118615Z","score":0.21112910346816421,"is_anomaly":false,"confidence":0.2477789502166071,"method":"SEAD","details":"MAD!:w=0.31,s=0.05 RRCF-fast:w=0.19,s=0.23 RRCF-mid:w=0.17,s=0.22 RRCF-slow:w=0.15,s=0.65 COPOD!:w=0.18,s=0.10"} +{"timestamp":"2026-03-15T07:17:02.272368795Z","score":0.26682422361310487,"is_anomaly":false,"confidence":0.31314217193739696,"method":"SEAD","details":"MAD!:w=0.31,s=0.08 RRCF-fast:w=0.19,s=0.27 RRCF-mid:w=0.17,s=0.15 RRCF-slow:w=0.15,s=0.56 COPOD!:w=0.18,s=0.45"} +{"timestamp":"2026-03-15T07:17:32.230075306Z","score":0.20829153386312804,"is_anomaly":false,"confidence":0.24444880763392696,"method":"SEAD","details":"MAD!:w=0.31,s=0.05 RRCF-fast:w=0.19,s=0.27 RRCF-mid:w=0.17,s=0.15 RRCF-slow:w=0.15,s=0.55 COPOD!:w=0.18,s=0.18"} +{"timestamp":"2026-03-15T07:18:02.27009361Z","score":0.36280787786416935,"is_anomaly":false,"confidence":0.4257876040337289,"method":"SEAD","details":"MAD!:w=0.31,s=0.13 RRCF-fast:w=0.19,s=0.42 RRCF-mid:w=0.17,s=0.50 RRCF-slow:w=0.14,s=0.69 COPOD!:w=0.18,s=0.31"} +{"timestamp":"2026-03-15T07:18:32.227767932Z","score":0.2515157441443756,"is_anomaly":false,"confidence":0.2958442319030331,"method":"SEAD","details":"MAD!:w=0.31,s=0.09 RRCF-fast:w=0.19,s=0.28 RRCF-mid:w=0.17,s=0.32 RRCF-slow:w=0.14,s=0.53 COPOD!:w=0.18,s=0.21"} +{"timestamp":"2026-03-15T07:19:02.295199971Z","score":0.9010786939959322,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=0.94 RRCF-fast!:w=0.19,s=0.87 RRCF-mid!:w=0.17,s=0.86 RRCF-slow:w=0.14,s=0.88 COPOD!:w=0.18,s=0.91"} +{"timestamp":"2026-03-15T07:19:32.271827229Z","score":0.5343384195062496,"is_anomaly":false,"confidence":0.627094088265399,"method":"SEAD","details":"MAD!:w=0.31,s=0.28 RRCF-fast:w=0.19,s=0.69 RRCF-mid:w=0.17,s=0.58 RRCF-slow:w=0.14,s=0.75 COPOD!:w=0.18,s=0.60"} +{"timestamp":"2026-03-15T07:20:02.228337732Z","score":0.2572483848288522,"is_anomaly":false,"confidence":0.30190406576240736,"method":"SEAD","details":"MAD!:w=0.32,s=0.13 RRCF-fast:w=0.19,s=0.20 RRCF-mid:w=0.17,s=0.12 RRCF-slow:w=0.14,s=0.38 COPOD!:w=0.18,s=0.55"} +{"timestamp":"2026-03-15T07:20:32.273693508Z","score":0.22071020670564445,"is_anomaly":false,"confidence":0.2590232346999055,"method":"SEAD","details":"MAD!:w=0.32,s=0.13 RRCF-fast:w=0.19,s=0.13 RRCF-mid:w=0.17,s=0.11 RRCF-slow:w=0.14,s=0.36 COPOD!:w=0.18,s=0.46"} +{"timestamp":"2026-03-15T07:21:02.227734057Z","score":0.20070803799149772,"is_anomaly":false,"confidence":0.23554889466514067,"method":"SEAD","details":"MAD!:w=0.32,s=0.13 RRCF-fast:w=0.19,s=0.07 RRCF-mid:w=0.17,s=0.13 RRCF-slow:w=0.14,s=0.25 COPOD!:w=0.18,s=0.49"} +{"timestamp":"2026-03-15T07:21:32.342175281Z","score":0.722383711214859,"is_anomaly":false,"confidence":0.8477821137784741,"method":"SEAD","details":"MAD!:w=0.32,s=0.29 RRCF-fast!:w=0.19,s=0.96 RRCF-mid!:w=0.17,s=0.93 RRCF-slow!:w=0.14,s=0.94 COPOD!:w=0.18,s=0.88"} +{"timestamp":"2026-03-15T07:22:02.273824848Z","score":0.4491229233395834,"is_anomaly":false,"confidence":0.5282787633730527,"method":"SEAD","details":"MAD!:w=0.32,s=0.23 RRCF-fast:w=0.19,s=0.73 RRCF-mid:w=0.17,s=0.57 RRCF-slow:w=0.14,s=0.58 COPOD!:w=0.18,s=0.34"} +{"timestamp":"2026-03-15T07:22:32.232067602Z","score":0.2765657182532428,"is_anomaly":false,"confidence":0.3253091482033608,"method":"SEAD","details":"MAD!:w=0.32,s=0.12 RRCF-fast:w=0.19,s=0.41 RRCF-mid:w=0.17,s=0.35 RRCF-slow:w=0.14,s=0.33 COPOD!:w=0.18,s=0.31"} +{"timestamp":"2026-03-15T07:23:02.273579466Z","score":0.3657489392897052,"is_anomaly":false,"confidence":0.4302104998699406,"method":"SEAD","details":"MAD!:w=0.32,s=0.26 RRCF-fast:w=0.19,s=0.47 RRCF-mid:w=0.17,s=0.50 RRCF-slow:w=0.14,s=0.66 COPOD!:w=0.18,s=0.09"} +{"timestamp":"2026-03-15T07:23:32.227066244Z","score":0.1256888373466861,"is_anomaly":false,"confidence":0.14784091417462514,"method":"SEAD","details":"MAD:w=0.33,s=0.00 RRCF-fast:w=0.19,s=0.25 RRCF-mid:w=0.17,s=0.06 RRCF-slow:w=0.14,s=0.27 COPOD!:w=0.18,s=0.17"} +{"timestamp":"2026-03-15T07:24:02.276107286Z","score":0.18146972554654167,"is_anomaly":false,"confidence":0.21345292618005435,"method":"SEAD","details":"MAD!:w=0.33,s=0.10 RRCF-fast:w=0.19,s=0.29 RRCF-mid:w=0.17,s=0.08 RRCF-slow:w=0.14,s=0.32 COPOD!:w=0.18,s=0.19"} +{"timestamp":"2026-03-15T07:24:32.233744512Z","score":0.24567463695563066,"is_anomaly":false,"confidence":0.28897365656153245,"method":"SEAD","details":"MAD!:w=0.33,s=0.14 RRCF-fast:w=0.19,s=0.31 RRCF-mid:w=0.17,s=0.14 RRCF-slow:w=0.14,s=0.16 COPOD!:w=0.18,s=0.52"} +{"timestamp":"2026-03-15T07:25:02.264909404Z","score":0.9259266693418817,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.33,s=0.92 RRCF-fast!:w=0.19,s=0.84 RRCF-mid!:w=0.17,s=0.95 RRCF-slow!:w=0.14,s=0.96 COPOD!:w=0.18,s=0.98"} +{"timestamp":"2026-03-15T07:25:32.22531314Z","score":0.8497253303078417,"is_anomaly":false,"confidence":0.999485493556909,"method":"SEAD","details":"MAD!:w=0.33,s=0.79 RRCF-fast!:w=0.19,s=0.92 RRCF-mid!:w=0.17,s=0.95 RRCF-slow:w=0.14,s=0.81 COPOD!:w=0.18,s=0.82"} +{"timestamp":"2026-03-15T07:26:02.228308497Z","score":0.4060716729257179,"is_anomaly":false,"confidence":0.47763992899517704,"method":"SEAD","details":"MAD!:w=0.33,s=0.14 RRCF-fast:w=0.19,s=0.60 RRCF-mid:w=0.17,s=0.64 RRCF-slow:w=0.14,s=0.52 COPOD!:w=0.18,s=0.38"} +{"timestamp":"2026-03-15T07:26:32.274760821Z","score":0.3168064026864053,"is_anomaly":false,"confidence":0.3726420673328591,"method":"SEAD","details":"MAD!:w=0.33,s=0.06 RRCF-fast:w=0.19,s=0.64 RRCF-mid:w=0.16,s=0.48 RRCF-slow:w=0.14,s=0.31 COPOD!:w=0.18,s=0.30"} +{"timestamp":"2026-03-15T07:27:02.228132511Z","score":0.2692890605420002,"is_anomaly":false,"confidence":0.3167500131928379,"method":"SEAD","details":"MAD!:w=0.33,s=0.06 RRCF-fast:w=0.19,s=0.33 RRCF-mid:w=0.16,s=0.46 RRCF-slow:w=0.14,s=0.64 COPOD!:w=0.18,s=0.12"} +{"timestamp":"2026-03-15T07:27:32.272800426Z","score":0.32754059678024144,"is_anomaly":false,"confidence":0.3852681135376093,"method":"SEAD","details":"MAD!:w=0.34,s=0.11 RRCF-fast:w=0.19,s=0.55 RRCF-mid:w=0.16,s=0.53 RRCF-slow:w=0.14,s=0.46 COPOD!:w=0.18,s=0.22"} +{"timestamp":"2026-03-15T07:28:02.231244554Z","score":0.3344765746173347,"is_anomaly":false,"confidence":0.3934265254203002,"method":"SEAD","details":"MAD!:w=0.34,s=0.16 RRCF-fast:w=0.18,s=0.32 RRCF-mid:w=0.16,s=0.54 RRCF-slow:w=0.14,s=0.38 COPOD!:w=0.18,s=0.47"} +{"timestamp":"2026-03-15T07:28:32.2965348Z","score":0.8731373283515274,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.34,s=0.89 RRCF-fast:w=0.18,s=0.84 RRCF-mid!:w=0.16,s=0.87 RRCF-slow:w=0.14,s=0.87 COPOD!:w=0.18,s=0.88"} +{"timestamp":"2026-03-15T07:29:02.277056941Z","score":0.5562341139813881,"is_anomaly":false,"confidence":0.6542678064504288,"method":"SEAD","details":"MAD!:w=0.34,s=0.30 RRCF-fast:w=0.18,s=0.82 RRCF-mid:w=0.16,s=0.76 RRCF-slow:w=0.14,s=0.75 COPOD!:w=0.18,s=0.43"} +{"timestamp":"2026-03-15T07:29:32.229610454Z","score":0.1944179287104193,"is_anomaly":false,"confidence":0.22868319032345094,"method":"SEAD","details":"MAD!:w=0.34,s=0.12 RRCF-fast:w=0.18,s=0.12 RRCF-mid:w=0.16,s=0.38 RRCF-slow:w=0.14,s=0.15 COPOD!:w=0.18,s=0.28"} +{"timestamp":"2026-03-15T07:30:02.270788799Z","score":0.3461586915433497,"is_anomaly":false,"confidence":0.4071675614764545,"method":"SEAD","details":"MAD:w=0.34,s=0.05 RRCF-fast:w=0.18,s=0.70 RRCF-mid:w=0.16,s=0.68 RRCF-slow:w=0.14,s=0.59 COPOD!:w=0.18,s=0.06"} +{"timestamp":"2026-03-15T07:30:32.228622989Z","score":0.22457003551427754,"is_anomaly":false,"confidence":0.26414946663148675,"method":"SEAD","details":"MAD:w=0.34,s=0.04 RRCF-fast:w=0.18,s=0.33 RRCF-mid:w=0.16,s=0.39 RRCF-slow:w=0.14,s=0.33 COPOD!:w=0.18,s=0.23"} +{"timestamp":"2026-03-15T07:31:02.273932222Z","score":0.314713379104266,"is_anomaly":false,"confidence":0.37018015801533544,"method":"SEAD","details":"MAD!:w=0.35,s=0.17 RRCF-fast:w=0.18,s=0.15 RRCF-mid:w=0.16,s=0.37 RRCF-slow:w=0.14,s=0.40 COPOD!:w=0.18,s=0.66"} +{"timestamp":"2026-03-15T07:31:32.228135105Z","score":0.9420710042760292,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.35,s=0.99 RRCF-fast!:w=0.18,s=0.91 RRCF-mid!:w=0.16,s=0.95 RRCF-slow!:w=0.14,s=0.97 COPOD!:w=0.18,s=0.86"} +{"timestamp":"2026-03-15T07:32:02.269474285Z","score":0.87450923789541,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.35,s=0.88 RRCF-fast!:w=0.18,s=0.91 RRCF-mid:w=0.16,s=0.86 RRCF-slow:w=0.14,s=0.85 COPOD!:w=0.18,s=0.87"} +{"timestamp":"2026-03-15T07:32:32.259052934Z","score":0.6995435276074489,"is_anomaly":false,"confidence":0.8209771085753331,"method":"SEAD","details":"MAD!:w=0.35,s=0.34 RRCF-fast!:w=0.18,s=0.90 RRCF-mid!:w=0.16,s=0.91 RRCF-slow!:w=0.14,s=0.92 COPOD!:w=0.18,s=0.84"} +{"timestamp":"2026-03-15T07:33:02.259210503Z","score":0.8184726850619896,"is_anomaly":false,"confidence":0.960551147872455,"method":"SEAD","details":"MAD!:w=0.35,s=0.76 RRCF-fast:w=0.18,s=0.83 RRCF-mid:w=0.16,s=0.84 RRCF-slow:w=0.13,s=0.89 COPOD!:w=0.18,s=0.86"} +{"timestamp":"2026-03-15T07:33:32.277087869Z","score":0.5993966604937113,"is_anomaly":false,"confidence":0.7034457725666732,"method":"SEAD","details":"MAD!:w=0.35,s=0.30 RRCF-fast:w=0.18,s=0.73 RRCF-mid:w=0.16,s=0.79 RRCF-slow:w=0.13,s=0.77 COPOD!:w=0.18,s=0.77"} +{"timestamp":"2026-03-15T07:34:02.228453569Z","score":0.39393179365173503,"is_anomaly":false,"confidence":0.4623143123548106,"method":"SEAD","details":"MAD!:w=0.35,s=0.16 RRCF-fast:w=0.18,s=0.30 RRCF-mid:w=0.16,s=0.48 RRCF-slow:w=0.13,s=0.59 COPOD!:w=0.17,s=0.73"} +{"timestamp":"2026-03-15T07:34:32.227776045Z","score":0.5343170466920982,"is_anomaly":false,"confidence":0.6270690053499383,"method":"SEAD","details":"MAD!:w=0.36,s=0.27 RRCF-fast:w=0.18,s=0.73 RRCF-mid:w=0.16,s=0.69 RRCF-slow:w=0.13,s=0.71 COPOD!:w=0.17,s=0.59"} +{"timestamp":"2026-03-15T07:35:02.270116449Z","score":0.8313331707939876,"is_anomaly":false,"confidence":0.9778518009110488,"method":"SEAD","details":"MAD!:w=0.36,s=0.88 RRCF-fast:w=0.18,s=0.75 RRCF-mid:w=0.16,s=0.80 RRCF-slow:w=0.13,s=0.83 COPOD!:w=0.17,s=0.85"} +{"timestamp":"2026-03-15T07:35:32.267465387Z","score":0.6266183430483673,"is_anomaly":false,"confidence":0.7370569306750135,"method":"SEAD","details":"MAD!:w=0.36,s=0.37 RRCF-fast:w=0.18,s=0.69 RRCF-mid:w=0.16,s=0.78 RRCF-slow:w=0.13,s=0.79 COPOD!:w=0.17,s=0.82"} +{"timestamp":"2026-03-15T07:36:02.269573579Z","score":0.6755203510545414,"is_anomaly":false,"confidence":0.7945776916369913,"method":"SEAD","details":"MAD!:w=0.36,s=0.36 RRCF-fast:w=0.18,s=0.84 RRCF-mid!:w=0.16,s=0.86 RRCF-slow:w=0.13,s=0.86 COPOD!:w=0.17,s=0.87"} +{"timestamp":"2026-03-15T07:36:32.271496166Z","score":0.4601505111407783,"is_anomaly":false,"confidence":0.5412499125704368,"method":"SEAD","details":"MAD!:w=0.36,s=0.27 RRCF-fast:w=0.18,s=0.52 RRCF-mid:w=0.15,s=0.55 RRCF-slow:w=0.13,s=0.34 COPOD!:w=0.17,s=0.81"} +{"timestamp":"2026-03-15T07:37:02.220397369Z","score":0.3452476841180952,"is_anomaly":false,"confidence":0.4060959932018749,"method":"SEAD","details":"MAD!:w=0.37,s=0.16 RRCF-fast:w=0.18,s=0.32 RRCF-mid:w=0.15,s=0.20 RRCF-slow:w=0.13,s=0.47 COPOD!:w=0.17,s=0.81"} +{"timestamp":"2026-03-15T07:37:32.260447345Z","score":0.5780654308530959,"is_anomaly":false,"confidence":0.6799467920475877,"method":"SEAD","details":"MAD!:w=0.37,s=0.32 RRCF-fast:w=0.18,s=0.64 RRCF-mid:w=0.15,s=0.72 RRCF-slow:w=0.13,s=0.77 COPOD!:w=0.17,s=0.79"} +{"timestamp":"2026-03-15T07:38:02.259107816Z","score":0.6478401244425801,"is_anomaly":false,"confidence":0.762018952983172,"method":"SEAD","details":"MAD!:w=0.37,s=0.39 RRCF-fast:w=0.18,s=0.72 RRCF-mid:w=0.15,s=0.79 RRCF-slow:w=0.13,s=0.80 COPOD!:w=0.17,s=0.90"} +{"timestamp":"2026-03-15T07:38:32.275752927Z","score":0.5388874054682381,"is_anomaly":false,"confidence":0.6341901156141926,"method":"SEAD","details":"MAD!:w=0.37,s=0.32 RRCF-fast:w=0.18,s=0.60 RRCF-mid:w=0.15,s=0.74 RRCF-slow:w=0.13,s=0.73 COPOD!:w=0.17,s=0.63"} +{"timestamp":"2026-03-15T07:39:02.269383622Z","score":0.37335629245957097,"is_anomaly":false,"confidence":0.4393846801345913,"method":"SEAD","details":"MAD!:w=0.38,s=0.32 RRCF-fast:w=0.18,s=0.30 RRCF-mid:w=0.15,s=0.57 RRCF-slow:w=0.13,s=0.43 COPOD!:w=0.17,s=0.35"} +{"timestamp":"2026-03-15T07:39:32.231183885Z","score":0.18639550883202968,"is_anomaly":false,"confidence":0.21935971799793424,"method":"SEAD","details":"MAD!:w=0.38,s=0.15 RRCF-fast:w=0.18,s=0.06 RRCF-mid:w=0.15,s=0.15 RRCF-slow:w=0.13,s=0.14 COPOD!:w=0.17,s=0.46"} +{"timestamp":"2026-03-15T07:40:02.304982093Z","score":0.6397865401133431,"is_anomaly":false,"confidence":0.7529333506882263,"method":"SEAD","details":"MAD!:w=0.38,s=0.38 RRCF-fast:w=0.18,s=0.64 RRCF-mid:w=0.15,s=0.78 RRCF-slow!:w=0.13,s=0.90 COPOD!:w=0.16,s=0.90"} +{"timestamp":"2026-03-15T07:40:32.274420353Z","score":0.6913811629253771,"is_anomaly":false,"confidence":0.813652527782008,"method":"SEAD","details":"MAD!:w=0.38,s=0.77 RRCF-fast:w=0.18,s=0.39 RRCF-mid:w=0.15,s=0.62 RRCF-slow:w=0.13,s=0.80 COPOD!:w=0.16,s=0.81"} +{"timestamp":"2026-03-15T07:41:02.276116779Z","score":0.5615635761061241,"is_anomaly":false,"confidence":0.6608765869115361,"method":"SEAD","details":"MAD!:w=0.38,s=0.33 RRCF-fast:w=0.18,s=0.60 RRCF-mid:w=0.15,s=0.71 RRCF-slow:w=0.13,s=0.80 COPOD!:w=0.16,s=0.73"} +{"timestamp":"2026-03-15T07:41:32.269167754Z","score":0.4118687771528244,"is_anomaly":false,"confidence":0.4847081315130514,"method":"SEAD","details":"MAD!:w=0.38,s=0.32 RRCF-fast:w=0.18,s=0.29 RRCF-mid:w=0.15,s=0.45 RRCF-slow:w=0.13,s=0.43 COPOD!:w=0.16,s=0.70"} +{"timestamp":"2026-03-15T07:42:02.226370707Z","score":0.22160767610335264,"is_anomaly":false,"confidence":0.26129728128031676,"method":"SEAD","details":"MAD!:w=0.38,s=0.15 RRCF-fast:w=0.18,s=0.06 RRCF-mid:w=0.15,s=0.06 RRCF-slow:w=0.13,s=0.24 COPOD!:w=0.16,s=0.69"} +{"timestamp":"2026-03-15T07:42:32.278841221Z","score":0.16087572572933653,"is_anomaly":false,"confidence":0.1896883289253426,"method":"SEAD","details":"MAD!:w=0.38,s=0.13 RRCF-fast:w=0.18,s=0.12 RRCF-mid:w=0.15,s=0.09 RRCF-slow:w=0.13,s=0.17 COPOD!:w=0.16,s=0.34"} +{"timestamp":"2026-03-15T07:43:02.226757083Z","score":0.12333302995002622,"is_anomaly":false,"confidence":0.14542179217192822,"method":"SEAD","details":"MAD:w=0.38,s=0.05 RRCF-fast:w=0.18,s=0.05 RRCF-mid:w=0.15,s=0.06 RRCF-slow:w=0.13,s=0.21 COPOD!:w=0.16,s=0.36"} +{"timestamp":"2026-03-15T07:43:35.245326899Z","score":0.9240237193261207,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.38,s=0.95 RRCF-fast!:w=0.18,s=0.98 RRCF-mid:w=0.15,s=0.84 RRCF-slow:w=0.13,s=0.82 COPOD!:w=0.16,s=0.98"} +{"timestamp":"2026-03-15T07:44:02.277088707Z","score":0.6743872917278573,"is_anomaly":false,"confidence":0.7936532755632196,"method":"SEAD","details":"MAD!:w=0.38,s=0.59 RRCF-fast!:w=0.18,s=0.95 RRCF-mid:w=0.15,s=0.70 RRCF-slow:w=0.13,s=0.63 COPOD!:w=0.16,s=0.58"} +{"timestamp":"2026-03-15T07:44:32.231175097Z","score":0.13015426054945034,"is_anomaly":false,"confidence":0.1531721556450454,"method":"SEAD","details":"MAD:w=0.38,s=0.05 RRCF-fast:w=0.18,s=0.33 RRCF-mid:w=0.15,s=0.07 RRCF-slow:w=0.13,s=0.15 COPOD!:w=0.16,s=0.14"} +{"timestamp":"2026-03-15T07:45:02.272354789Z","score":0.2731518894391365,"is_anomaly":false,"confidence":0.32207298655909794,"method":"SEAD","details":"MAD!:w=0.39,s=0.16 RRCF-fast:w=0.18,s=0.30 RRCF-mid:w=0.15,s=0.27 RRCF-slow:w=0.13,s=0.34 COPOD!:w=0.16,s=0.47"} +{"timestamp":"2026-03-15T07:45:32.221895279Z","score":0.15720568304364835,"is_anomaly":false,"confidence":0.18536098705336793,"method":"SEAD","details":"MAD:w=0.39,s=0.06 RRCF-fast:w=0.18,s=0.46 RRCF-mid:w=0.15,s=0.05 RRCF-slow:w=0.13,s=0.15 COPOD!:w=0.16,s=0.15"} +{"timestamp":"2026-03-15T07:46:03.672049278Z","score":0.872234848046488,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.39,s=0.85 RRCF-fast!:w=0.17,s=0.94 RRCF-mid!:w=0.15,s=0.88 RRCF-slow:w=0.13,s=0.77 COPOD!:w=0.16,s=0.92"} +{"timestamp":"2026-03-15T07:46:32.273309437Z","score":0.5200487812465717,"is_anomaly":false,"confidence":0.6120198641814838,"method":"SEAD","details":"MAD!:w=0.39,s=0.37 RRCF-fast:w=0.17,s=0.48 RRCF-mid:w=0.15,s=0.73 RRCF-slow:w=0.13,s=0.63 COPOD!:w=0.16,s=0.65"} +{"timestamp":"2026-03-15T07:47:02.23290833Z","score":0.0744822455582357,"is_anomaly":false,"confidence":0.08765449599019484,"method":"SEAD","details":"MAD!:w=0.39,s=0.08 RRCF-fast:w=0.17,s=0.04 RRCF-mid:w=0.15,s=0.09 RRCF-slow:w=0.13,s=0.08 COPOD!:w=0.16,s=0.09"} +{"timestamp":"2026-03-15T07:47:32.274993992Z","score":0.21751292049050758,"is_anomaly":false,"confidence":0.2559802711915228,"method":"SEAD","details":"MAD!:w=0.39,s=0.17 RRCF-fast:w=0.17,s=0.24 RRCF-mid:w=0.15,s=0.23 RRCF-slow:w=0.13,s=0.33 COPOD!:w=0.16,s=0.23"} +{"timestamp":"2026-03-15T07:48:02.229947046Z","score":0.1542882783409026,"is_anomaly":false,"confidence":0.1815742956432833,"method":"SEAD","details":"MAD:w=0.39,s=0.07 RRCF-fast:w=0.17,s=0.22 RRCF-mid:w=0.15,s=0.12 RRCF-slow:w=0.13,s=0.08 COPOD!:w=0.16,s=0.40"} +{"timestamp":"2026-03-15T07:48:32.278223269Z","score":0.4957096854568051,"is_anomaly":false,"confidence":0.5844905528172025,"method":"SEAD","details":"MAD!:w=0.39,s=0.32 RRCF-fast:w=0.17,s=0.45 RRCF-mid:w=0.15,s=0.61 RRCF-slow:w=0.13,s=0.66 COPOD!:w=0.16,s=0.75"} +{"timestamp":"2026-03-15T07:49:02.228696281Z","score":0.19936209437956087,"is_anomaly":false,"confidence":0.23506754895725868,"method":"SEAD","details":"MAD!:w=0.39,s=0.12 RRCF-fast:w=0.17,s=0.10 RRCF-mid:w=0.15,s=0.27 RRCF-slow:w=0.13,s=0.30 COPOD!:w=0.16,s=0.36"} +{"timestamp":"2026-03-15T07:49:32.314152974Z","score":0.9588628708239788,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.39,s=0.96 RRCF-fast!:w=0.17,s=1.00 RRCF-mid!:w=0.15,s=0.97 RRCF-slow!:w=0.13,s=0.93 COPOD!:w=0.16,s=0.92"} +{"timestamp":"2026-03-15T07:50:02.272939447Z","score":0.6117459305858175,"is_anomaly":false,"confidence":0.7199337347801458,"method":"SEAD","details":"MAD!:w=0.39,s=0.39 RRCF-fast!:w=0.17,s=0.99 RRCF-mid:w=0.15,s=0.69 RRCF-slow:w=0.13,s=0.65 COPOD!:w=0.16,s=0.65"} +{"timestamp":"2026-03-15T07:50:32.228728848Z","score":0.2150193917008167,"is_anomaly":false,"confidence":0.2530457596490841,"method":"SEAD","details":"MAD:w=0.40,s=0.06 RRCF-fast:w=0.17,s=0.88 RRCF-mid:w=0.15,s=0.09 RRCF-slow:w=0.13,s=0.14 COPOD!:w=0.16,s=0.06"} +{"timestamp":"2026-03-15T07:51:02.279021476Z","score":0.22398918688272113,"is_anomaly":false,"confidence":0.2636018709734986,"method":"SEAD","details":"MAD:w=0.40,s=0.06 RRCF-fast:w=0.17,s=0.79 RRCF-mid:w=0.15,s=0.14 RRCF-slow:w=0.13,s=0.11 COPOD!:w=0.16,s=0.20"} +{"timestamp":"2026-03-15T07:51:32.231362382Z","score":0.8749572276825957,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.40,s=0.99 RRCF-fast!:w=0.17,s=0.90 RRCF-mid:w=0.15,s=0.70 RRCF-slow:w=0.13,s=0.76 COPOD!:w=0.16,s=0.83"} +{"timestamp":"2026-03-15T07:52:02.290363462Z","score":0.5336113911900323,"is_anomaly":false,"confidence":0.6279810335849509,"method":"SEAD","details":"MAD!:w=0.40,s=0.40 RRCF-fast:w=0.17,s=0.71 RRCF-mid:w=0.15,s=0.57 RRCF-slow:w=0.13,s=0.52 COPOD!:w=0.16,s=0.67"} +{"timestamp":"2026-03-15T07:52:32.277387224Z","score":0.8098173876774235,"is_anomaly":false,"confidence":0.9530343027246696,"method":"SEAD","details":"MAD!:w=0.40,s=0.83 RRCF-fast!:w=0.17,s=0.91 RRCF-mid:w=0.15,s=0.70 RRCF-slow:w=0.13,s=0.69 COPOD!:w=0.16,s=0.84"} +{"timestamp":"2026-03-15T07:53:04.381193078Z","score":0.7744603374388093,"is_anomaly":false,"confidence":0.9114243271507921,"method":"SEAD","details":"MAD!:w=0.40,s=0.79 RRCF-fast:w=0.17,s=0.78 RRCF-mid:w=0.15,s=0.76 RRCF-slow:w=0.13,s=0.74 COPOD!:w=0.16,s=0.77"} +{"timestamp":"2026-03-15T07:53:32.270635304Z","score":0.8839961990117304,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.40,s=0.88 RRCF-fast:w=0.17,s=0.86 RRCF-mid!:w=0.15,s=0.91 RRCF-slow!:w=0.13,s=0.90 COPOD!:w=0.16,s=0.88"} +{"timestamp":"2026-03-15T07:54:02.271202809Z","score":0.7943623825035117,"is_anomaly":false,"confidence":0.9343650820105928,"method":"SEAD","details":"MAD!:w=0.40,s=0.88 RRCF-fast:w=0.17,s=0.75 RRCF-mid:w=0.15,s=0.72 RRCF-slow:w=0.13,s=0.67 COPOD!:w=0.16,s=0.81"} +{"timestamp":"2026-03-15T07:54:32.273556663Z","score":0.699396073612713,"is_anomaly":false,"confidence":0.8226613999765281,"method":"SEAD","details":"MAD!:w=0.40,s=0.83 RRCF-fast:w=0.17,s=0.59 RRCF-mid:w=0.15,s=0.64 RRCF-slow:w=0.13,s=0.48 COPOD!:w=0.16,s=0.72"} +{"timestamp":"2026-03-15T07:55:02.270292381Z","score":0.35565682710533064,"is_anomaly":false,"confidence":0.41855504881381134,"method":"SEAD","details":"MAD!:w=0.40,s=0.30 RRCF-fast:w=0.17,s=0.51 RRCF-mid:w=0.15,s=0.12 RRCF-slow:w=0.13,s=0.17 COPOD!:w=0.16,s=0.72"} +{"timestamp":"2026-03-15T07:55:32.22671143Z","score":0.39428574230553526,"is_anomaly":false,"confidence":0.4640155215364616,"method":"SEAD","details":"MAD!:w=0.40,s=0.30 RRCF-fast:w=0.17,s=0.55 RRCF-mid:w=0.15,s=0.23 RRCF-slow:w=0.13,s=0.47 COPOD!:w=0.15,s=0.57"} +{"timestamp":"2026-03-15T07:56:02.277425599Z","score":0.7436488990760421,"is_anomaly":false,"confidence":0.875163858898534,"method":"SEAD","details":"MAD!:w=0.40,s=0.80 RRCF-fast:w=0.17,s=0.72 RRCF-mid:w=0.15,s=0.59 RRCF-slow:w=0.13,s=0.67 COPOD!:w=0.15,s=0.83"} +{"timestamp":"2026-03-15T07:56:32.270817293Z","score":0.6779771001267445,"is_anomaly":false,"confidence":0.7978779447249436,"method":"SEAD","details":"MAD!:w=0.40,s=0.74 RRCF-fast:w=0.17,s=0.53 RRCF-mid:w=0.15,s=0.57 RRCF-slow:w=0.13,s=0.63 COPOD!:w=0.15,s=0.82"} +{"timestamp":"2026-03-15T07:57:02.27990984Z","score":0.538565894621462,"is_anomaly":false,"confidence":0.6338117452922679,"method":"SEAD","details":"MAD!:w=0.40,s=0.41 RRCF-fast:w=0.17,s=0.66 RRCF-mid:w=0.15,s=0.38 RRCF-slow:w=0.13,s=0.68 COPOD!:w=0.15,s=0.77"} +{"timestamp":"2026-03-15T07:57:32.27571435Z","score":0.4708485694938192,"is_anomaly":false,"confidence":0.5541185518422034,"method":"SEAD","details":"MAD!:w=0.40,s=0.41 RRCF-fast:w=0.17,s=0.50 RRCF-mid:w=0.15,s=0.47 RRCF-slow:w=0.13,s=0.59 COPOD!:w=0.15,s=0.50"} +{"timestamp":"2026-03-15T07:58:02.270904112Z","score":0.47942044310995907,"is_anomaly":false,"confidence":0.5642063688230559,"method":"SEAD","details":"MAD!:w=0.40,s=0.45 RRCF-fast:w=0.17,s=0.39 RRCF-mid:w=0.15,s=0.33 RRCF-slow:w=0.13,s=0.67 COPOD!:w=0.15,s=0.65"} +{"timestamp":"2026-03-15T07:58:32.275763521Z","score":0.4957334448228858,"is_anomaly":false,"confidence":0.5845185674504092,"method":"SEAD","details":"MAD!:w=0.40,s=0.44 RRCF-fast:w=0.17,s=0.50 RRCF-mid:w=0.15,s=0.28 RRCF-slow:w=0.13,s=0.57 COPOD!:w=0.15,s=0.78"} +{"timestamp":"2026-03-15T07:59:02.23080371Z","score":0.20255757199810098,"is_anomaly":false,"confidence":0.23883533186441405,"method":"SEAD","details":"MAD:w=0.40,s=0.06 RRCF-fast:w=0.17,s=0.30 RRCF-mid:w=0.15,s=0.07 RRCF-slow:w=0.13,s=0.14 COPOD!:w=0.15,s=0.65"} +{"timestamp":"2026-03-15T07:59:32.273060982Z","score":0.6945046363993597,"is_anomaly":false,"confidence":0.8188893837914406,"method":"SEAD","details":"MAD!:w=0.40,s=0.88 RRCF-fast:w=0.17,s=0.60 RRCF-mid:w=0.15,s=0.43 RRCF-slow:w=0.13,s=0.59 COPOD!:w=0.15,s=0.67"} +{"timestamp":"2026-03-15T08:00:04.341968807Z","score":0.6703788645186357,"is_anomaly":false,"confidence":0.7904427220508867,"method":"SEAD","details":"MAD!:w=0.40,s=0.85 RRCF-fast:w=0.17,s=0.27 RRCF-mid:w=0.15,s=0.49 RRCF-slow:w=0.13,s=0.67 COPOD!:w=0.15,s=0.82"} +{"timestamp":"2026-03-15T08:00:32.272490619Z","score":0.7254507254897576,"is_anomaly":false,"confidence":0.8553778714095693,"method":"SEAD","details":"MAD!:w=0.40,s=0.81 RRCF-fast:w=0.17,s=0.70 RRCF-mid:w=0.15,s=0.53 RRCF-slow:w=0.13,s=0.66 COPOD!:w=0.15,s=0.79"} +{"timestamp":"2026-03-15T08:01:02.271639821Z","score":0.8537338429287693,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.40,s=0.96 RRCF-fast:w=0.17,s=0.67 RRCF-mid:w=0.16,s=0.83 RRCF-slow:w=0.13,s=0.75 COPOD!:w=0.15,s=0.89"} +{"timestamp":"2026-03-15T08:01:32.276139455Z","score":0.7076099639539557,"is_anomaly":false,"confidence":0.8327514065016752,"method":"SEAD","details":"MAD!:w=0.40,s=0.95 RRCF-fast:w=0.17,s=0.45 RRCF-mid:w=0.16,s=0.43 RRCF-slow:w=0.13,s=0.74 COPOD!:w=0.15,s=0.60"} +{"timestamp":"2026-03-15T08:02:02.228957445Z","score":0.23711659899730464,"is_anomaly":false,"confidence":0.27958382919703134,"method":"SEAD","details":"MAD!:w=0.39,s=0.29 RRCF-fast:w=0.17,s=0.14 RRCF-mid:w=0.16,s=0.11 RRCF-slow:w=0.13,s=0.19 COPOD!:w=0.15,s=0.37"} +{"timestamp":"2026-03-15T08:02:32.282858637Z","score":0.9046983814916942,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.39,s=0.91 RRCF-fast!:w=0.17,s=0.95 RRCF-mid!:w=0.16,s=0.86 RRCF-slow!:w=0.13,s=0.82 COPOD!:w=0.15,s=0.96"} +{"timestamp":"2026-03-15T08:03:02.275590195Z","score":0.6620254040809046,"is_anomaly":false,"confidence":0.7791051772471741,"method":"SEAD","details":"MAD!:w=0.39,s=0.62 RRCF-fast:w=0.17,s=0.71 RRCF-mid:w=0.16,s=0.61 RRCF-slow:w=0.13,s=0.67 COPOD!:w=0.15,s=0.77"} +{"timestamp":"2026-03-15T08:03:32.231020477Z","score":0.23256317510362567,"is_anomaly":false,"confidence":0.27369217652882233,"method":"SEAD","details":"MAD!:w=0.39,s=0.16 RRCF-fast:w=0.17,s=0.19 RRCF-mid:w=0.16,s=0.19 RRCF-slow:w=0.13,s=0.17 COPOD!:w=0.15,s=0.56"} +{"timestamp":"2026-03-15T08:04:02.27644112Z","score":0.24480972302567866,"is_anomaly":false,"confidence":0.2881045371884913,"method":"SEAD","details":"MAD!:w=0.39,s=0.16 RRCF-fast:w=0.17,s=0.17 RRCF-mid:w=0.16,s=0.13 RRCF-slow:w=0.13,s=0.19 COPOD!:w=0.15,s=0.71"} +{"timestamp":"2026-03-15T08:04:32.239691853Z","score":0.26017145933010644,"is_anomaly":false,"confidence":0.30618301002731146,"method":"SEAD","details":"MAD!:w=0.39,s=0.28 RRCF-fast:w=0.17,s=0.08 RRCF-mid:w=0.16,s=0.11 RRCF-slow:w=0.13,s=0.09 COPOD!:w=0.15,s=0.72"} +{"timestamp":"2026-03-15T08:05:03.14973615Z","score":0.8935474422466688,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.39,s=0.95 RRCF-fast!:w=0.17,s=0.94 RRCF-mid:w=0.16,s=0.78 RRCF-slow:w=0.13,s=0.77 COPOD!:w=0.15,s=0.92"} +{"timestamp":"2026-03-15T08:05:32.272418858Z","score":0.43978685313580945,"is_anomaly":false,"confidence":0.5175635437118037,"method":"SEAD","details":"MAD!:w=0.39,s=0.33 RRCF-fast:w=0.17,s=0.43 RRCF-mid:w=0.16,s=0.38 RRCF-slow:w=0.13,s=0.53 COPOD!:w=0.15,s=0.73"} +{"timestamp":"2026-03-15T08:06:02.220783143Z","score":0.2072615733737267,"is_anomaly":false,"confidence":0.24391596434890223,"method":"SEAD","details":"MAD!:w=0.39,s=0.13 RRCF-fast:w=0.17,s=0.15 RRCF-mid:w=0.16,s=0.04 RRCF-slow:w=0.13,s=0.27 COPOD!:w=0.15,s=0.61"} +{"timestamp":"2026-03-15T08:06:32.275842029Z","score":0.18545560615110152,"is_anomaly":false,"confidence":0.2182535927037905,"method":"SEAD","details":"MAD!:w=0.39,s=0.10 RRCF-fast:w=0.17,s=0.17 RRCF-mid:w=0.16,s=0.04 RRCF-slow:w=0.13,s=0.17 COPOD!:w=0.15,s=0.62"} +{"timestamp":"2026-03-15T08:07:02.228088021Z","score":0.12399274034777084,"is_anomaly":false,"confidence":0.14592096519336464,"method":"SEAD","details":"MAD:w=0.40,s=0.02 RRCF-fast:w=0.17,s=0.12 RRCF-mid:w=0.16,s=0.04 RRCF-slow:w=0.13,s=0.17 COPOD!:w=0.15,s=0.47"} +{"timestamp":"2026-03-15T08:07:33.348996022Z","score":0.8610937124221548,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.40,s=0.90 RRCF-fast:w=0.17,s=0.78 RRCF-mid!:w=0.16,s=0.85 RRCF-slow!:w=0.13,s=0.81 COPOD!:w=0.14,s=0.92"} +{"timestamp":"2026-03-15T08:08:02.27123043Z","score":0.4792629766318136,"is_anomaly":false,"confidence":0.5637308617937301,"method":"SEAD","details":"MAD!:w=0.40,s=0.34 RRCF-fast:w=0.17,s=0.47 RRCF-mid:w=0.16,s=0.48 RRCF-slow:w=0.13,s=0.59 COPOD!:w=0.14,s=0.78"} +{"timestamp":"2026-03-15T08:08:32.231230794Z","score":0.1331501030594334,"is_anomaly":false,"confidence":0.15669781552963152,"method":"SEAD","details":"MAD!:w=0.40,s=0.12 RRCF-fast:w=0.17,s=0.12 RRCF-mid:w=0.16,s=0.10 RRCF-slow:w=0.13,s=0.07 COPOD!:w=0.14,s=0.28"} +{"timestamp":"2026-03-15T08:09:02.276594857Z","score":0.13696721987170513,"is_anomaly":false,"confidence":0.16118999279694785,"method":"SEAD","details":"MAD:w=0.40,s=0.05 RRCF-fast:w=0.17,s=0.05 RRCF-mid:w=0.16,s=0.04 RRCF-slow:w=0.13,s=0.11 COPOD!:w=0.14,s=0.61"} +{"timestamp":"2026-03-15T08:09:32.234668865Z","score":0.11798208416968141,"is_anomaly":false,"confidence":0.1388473192001213,"method":"SEAD","details":"MAD:w=0.40,s=0.05 RRCF-fast:w=0.17,s=0.23 RRCF-mid:w=0.16,s=0.06 RRCF-slow:w=0.13,s=0.15 COPOD!:w=0.14,s=0.21"} +{"timestamp":"2026-03-15T08:10:02.272231259Z","score":0.10812382045093034,"is_anomaly":false,"confidence":0.12724561289912217,"method":"SEAD","details":"MAD:w=0.40,s=0.06 RRCF-fast:w=0.17,s=0.05 RRCF-mid:w=0.16,s=0.05 RRCF-slow:w=0.13,s=0.08 COPOD!:w=0.14,s=0.40"} +{"timestamp":"2026-03-15T08:10:32.229056974Z","score":0.12931464854027547,"is_anomaly":false,"confidence":0.15218405751588795,"method":"SEAD","details":"MAD!:w=0.40,s=0.15 RRCF-fast:w=0.17,s=0.03 RRCF-mid:w=0.16,s=0.05 RRCF-slow:w=0.13,s=0.07 COPOD!:w=0.14,s=0.34"} +{"timestamp":"2026-03-15T08:11:02.275850418Z","score":0.857242919463873,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.40,s=0.93 RRCF-fast:w=0.17,s=0.74 RRCF-mid!:w=0.16,s=0.81 RRCF-slow!:w=0.13,s=0.76 COPOD!:w=0.14,s=0.93"} +{"timestamp":"2026-03-15T08:11:32.277272314Z","score":0.4376071892118948,"is_anomaly":false,"confidence":0.514733434314646,"method":"SEAD","details":"MAD!:w=0.40,s=0.40 RRCF-fast:w=0.17,s=0.37 RRCF-mid:w=0.16,s=0.33 RRCF-slow:w=0.13,s=0.67 COPOD!:w=0.14,s=0.55"} +{"timestamp":"2026-03-15T08:12:02.231013553Z","score":0.1486755449148271,"is_anomaly":false,"confidence":0.1749689453896406,"method":"SEAD","details":"MAD!:w=0.40,s=0.15 RRCF-fast:w=0.17,s=0.11 RRCF-mid:w=0.16,s=0.04 RRCF-slow:w=0.13,s=0.07 COPOD!:w=0.14,s=0.41"} +{"timestamp":"2026-03-15T08:12:32.278137776Z","score":0.12384761506731459,"is_anomaly":false,"confidence":0.1457501743798159,"method":"SEAD","details":"MAD!:w=0.40,s=0.10 RRCF-fast:w=0.17,s=0.14 RRCF-mid:w=0.16,s=0.05 RRCF-slow:w=0.13,s=0.07 COPOD!:w=0.14,s=0.32"} +{"timestamp":"2026-03-15T08:13:02.230845688Z","score":0.07922049829190353,"is_anomaly":false,"confidence":0.09323071287424517,"method":"SEAD","details":"MAD:w=0.40,s=0.03 RRCF-fast:w=0.17,s=0.06 RRCF-mid:w=0.16,s=0.03 RRCF-slow:w=0.13,s=0.05 COPOD!:w=0.14,s=0.32"} +{"timestamp":"2026-03-15T08:13:32.274581803Z","score":0.4728055002603626,"is_anomaly":false,"confidence":0.5564215675306194,"method":"SEAD","details":"MAD!:w=0.40,s=0.84 RRCF-fast:w=0.17,s=0.18 RRCF-mid:w=0.16,s=0.08 RRCF-slow:w=0.13,s=0.20 COPOD!:w=0.14,s=0.46"} +{"timestamp":"2026-03-15T08:14:02.230837736Z","score":0.2466435532114544,"is_anomaly":false,"confidence":0.290262681850498,"method":"SEAD","details":"MAD!:w=0.40,s=0.34 RRCF-fast:w=0.17,s=0.16 RRCF-mid:w=0.16,s=0.04 RRCF-slow:w=0.13,s=0.06 COPOD!:w=0.14,s=0.50"} +{"timestamp":"2026-03-15T08:14:32.296246314Z","score":0.9388929122317815,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.39,s=0.90 RRCF-fast!:w=0.17,s=0.95 RRCF-mid!:w=0.16,s=0.97 RRCF-slow!:w=0.13,s=0.98 COPOD!:w=0.14,s=0.96"} +{"timestamp":"2026-03-15T08:15:02.274549638Z","score":0.7518034187872658,"is_anomaly":false,"confidence":0.8847605125704556,"method":"SEAD","details":"MAD!:w=0.39,s=0.73 RRCF-fast!:w=0.17,s=0.95 RRCF-mid!:w=0.16,s=0.79 RRCF-slow!:w=0.13,s=0.89 COPOD!:w=0.14,s=0.38"} +{"timestamp":"2026-03-15T08:15:32.230504086Z","score":0.2187588902997677,"is_anomaly":false,"confidence":0.2574465918539993,"method":"SEAD","details":"MAD:w=0.40,s=0.05 RRCF-fast:w=0.17,s=0.69 RRCF-mid:w=0.16,s=0.12 RRCF-slow:w=0.13,s=0.09 COPOD!:w=0.14,s=0.34"} +{"timestamp":"2026-03-15T08:16:02.266008979Z","score":0.2100174675583523,"is_anomaly":false,"confidence":0.24715924083640814,"method":"SEAD","details":"MAD:w=0.40,s=0.07 RRCF-fast:w=0.17,s=0.52 RRCF-mid:w=0.16,s=0.22 RRCF-slow:w=0.13,s=0.09 COPOD!:w=0.14,s=0.34"} +{"timestamp":"2026-03-15T08:16:32.229491288Z","score":0.21087759934507777,"is_anomaly":false,"confidence":0.24817148768376746,"method":"SEAD","details":"MAD!:w=0.40,s=0.16 RRCF-fast:w=0.17,s=0.63 RRCF-mid:w=0.16,s=0.06 RRCF-slow:w=0.13,s=0.10 COPOD!:w=0.14,s=0.14"} +{"timestamp":"2026-03-15T08:17:02.298538434Z","score":0.8522349206203462,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.40,s=0.89 RRCF-fast!:w=0.17,s=0.89 RRCF-mid!:w=0.16,s=0.81 RRCF-slow:w=0.13,s=0.70 COPOD!:w=0.14,s=0.90"} +{"timestamp":"2026-03-15T08:17:32.27576699Z","score":0.44693409984757293,"is_anomaly":false,"confidence":0.5257041698541935,"method":"SEAD","details":"MAD!:w=0.40,s=0.40 RRCF-fast:w=0.17,s=0.65 RRCF-mid:w=0.16,s=0.27 RRCF-slow:w=0.13,s=0.31 COPOD!:w=0.14,s=0.65"} +{"timestamp":"2026-03-15T08:18:02.236778694Z","score":0.29977702705043396,"is_anomaly":false,"confidence":0.35261134292651647,"method":"SEAD","details":"MAD!:w=0.40,s=0.31 RRCF-fast:w=0.17,s=0.35 RRCF-mid:w=0.16,s=0.12 RRCF-slow:w=0.13,s=0.06 COPOD!:w=0.14,s=0.66"} +{"timestamp":"2026-03-15T08:18:32.27663563Z","score":0.2369580669267568,"is_anomaly":false,"confidence":0.2788643088242535,"method":"SEAD","details":"MAD!:w=0.40,s=0.20 RRCF-fast:w=0.17,s=0.21 RRCF-mid:w=0.16,s=0.06 RRCF-slow:w=0.13,s=0.20 COPOD!:w=0.14,s=0.63"} +{"timestamp":"2026-03-15T08:19:02.230852186Z","score":0.18771790459545154,"is_anomaly":false,"confidence":0.22091598061157525,"method":"SEAD","details":"MAD!:w=0.40,s=0.19 RRCF-fast:w=0.17,s=0.47 RRCF-mid:w=0.16,s=0.09 RRCF-slow:w=0.13,s=0.08 COPOD!:w=0.14,s=0.07"} +{"timestamp":"2026-03-15T08:19:34.23905085Z","score":0.45990487706268385,"is_anomaly":false,"confidence":0.5412394578093462,"method":"SEAD","details":"MAD!:w=0.40,s=0.35 RRCF-fast:w=0.17,s=0.85 RRCF-mid:w=0.16,s=0.35 RRCF-slow:w=0.13,s=0.38 COPOD!:w=0.14,s=0.51"} +{"timestamp":"2026-03-15T08:20:02.230957705Z","score":0.15154042651033503,"is_anomaly":false,"confidence":0.17834048380720202,"method":"SEAD","details":"MAD:w=0.40,s=0.08 RRCF-fast:w=0.17,s=0.24 RRCF-mid:w=0.16,s=0.03 RRCF-slow:w=0.13,s=0.12 COPOD!:w=0.14,s=0.42"} +{"timestamp":"2026-03-15T08:20:32.299823473Z","score":0.9543507571483919,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.40,s=0.91 RRCF-fast!:w=0.17,s=0.98 RRCF-mid!:w=0.16,s=0.99 RRCF-slow!:w=0.13,s=0.99 COPOD!:w=0.14,s=0.97"} +{"timestamp":"2026-03-15T08:21:02.275259597Z","score":0.8540590083696304,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.40,s=0.78 RRCF-fast!:w=0.17,s=1.00 RRCF-mid!:w=0.16,s=0.99 RRCF-slow!:w=0.13,s=0.95 COPOD!:w=0.14,s=0.65"} +{"timestamp":"2026-03-15T08:21:32.231994988Z","score":0.3535647494347108,"is_anomaly":false,"confidence":0.41493996331841715,"method":"SEAD","details":"MAD:w=0.40,s=0.08 RRCF-fast!:w=0.17,s=0.90 RRCF-mid:w=0.16,s=0.73 RRCF-slow:w=0.13,s=0.36 COPOD!:w=0.14,s=0.03"} +{"timestamp":"2026-03-15T08:22:02.276896886Z","score":0.46321418679441334,"is_anomaly":false,"confidence":0.5448535469020888,"method":"SEAD","details":"MAD!:w=0.41,s=0.32 RRCF-fast:w=0.16,s=0.63 RRCF-mid:w=0.16,s=0.77 RRCF-slow:w=0.13,s=0.67 COPOD!:w=0.14,s=0.14"} +{"timestamp":"2026-03-15T08:22:32.231649226Z","score":0.48853513031615825,"is_anomaly":false,"confidence":0.5746371897222801,"method":"SEAD","details":"MAD!:w=0.41,s=0.31 RRCF-fast:w=0.16,s=0.67 RRCF-mid:w=0.16,s=0.69 RRCF-slow:w=0.13,s=0.66 COPOD!:w=0.14,s=0.39"} +{"timestamp":"2026-03-15T08:23:02.278908852Z","score":0.40578925293535434,"is_anomaly":false,"confidence":0.477307733786454,"method":"SEAD","details":"MAD!:w=0.41,s=0.20 RRCF-fast:w=0.16,s=0.67 RRCF-mid:w=0.16,s=0.75 RRCF-slow:w=0.13,s=0.35 COPOD!:w=0.14,s=0.35"} +{"timestamp":"2026-03-15T08:23:32.235565813Z","score":0.3876683250060913,"is_anomaly":false,"confidence":0.4559930760387238,"method":"SEAD","details":"MAD!:w=0.41,s=0.20 RRCF-fast:w=0.16,s=0.51 RRCF-mid:w=0.16,s=0.55 RRCF-slow:w=0.13,s=0.47 COPOD!:w=0.14,s=0.54"} +{"timestamp":"2026-03-15T08:24:02.298045825Z","score":0.9374671647630016,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.42,s=0.93 RRCF-fast!:w=0.16,s=0.93 RRCF-mid!:w=0.16,s=0.96 RRCF-slow!:w=0.13,s=0.96 COPOD!:w=0.14,s=0.92"} +{"timestamp":"2026-03-15T08:24:32.275450032Z","score":0.6752483221993372,"is_anomaly":false,"confidence":0.7924645047114774,"method":"SEAD","details":"MAD!:w=0.42,s=0.48 RRCF-fast:w=0.16,s=0.80 RRCF-mid!:w=0.16,s=0.84 RRCF-slow!:w=0.13,s=0.89 COPOD!:w=0.14,s=0.74"} +{"timestamp":"2026-03-15T08:25:02.234183177Z","score":0.29043171899742276,"is_anomaly":false,"confidence":0.3416189675098376,"method":"SEAD","details":"MAD:w=0.42,s=0.06 RRCF-fast:w=0.16,s=0.38 RRCF-mid:w=0.16,s=0.62 RRCF-slow:w=0.13,s=0.44 COPOD!:w=0.14,s=0.39"} +{"timestamp":"2026-03-15T08:25:32.285574313Z","score":0.32366179572248666,"is_anomaly":false,"confidence":0.3807056917157077,"method":"SEAD","details":"MAD!:w=0.42,s=0.13 RRCF-fast:w=0.16,s=0.30 RRCF-mid:w=0.16,s=0.46 RRCF-slow:w=0.13,s=0.65 COPOD!:w=0.14,s=0.50"} +{"timestamp":"2026-03-15T08:26:02.229603624Z","score":0.3877706505937493,"is_anomaly":false,"confidence":0.45611343603840376,"method":"SEAD","details":"MAD!:w=0.42,s=0.20 RRCF-fast:w=0.16,s=0.49 RRCF-mid:w=0.16,s=0.49 RRCF-slow:w=0.13,s=0.37 COPOD!:w=0.14,s=0.73"} +{"timestamp":"2026-03-15T08:26:32.282697667Z","score":0.9225758848409491,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.43,s=0.91 RRCF-fast:w=0.16,s=0.82 RRCF-mid!:w=0.16,s=0.97 RRCF-slow!:w=0.13,s=0.97 COPOD!:w=0.13,s=0.97"} +{"timestamp":"2026-03-15T08:27:02.271325037Z","score":0.7659872599418561,"is_anomaly":false,"confidence":0.8989547913099881,"method":"SEAD","details":"MAD!:w=0.43,s=0.77 RRCF-fast:w=0.16,s=0.74 RRCF-mid:w=0.16,s=0.80 RRCF-slow!:w=0.13,s=0.84 COPOD!:w=0.13,s=0.68"} +{"timestamp":"2026-03-15T08:27:32.228160992Z","score":0.293408637870633,"is_anomaly":false,"confidence":0.34434136782583574,"method":"SEAD","details":"MAD!:w=0.43,s=0.16 RRCF-fast:w=0.16,s=0.36 RRCF-mid:w=0.16,s=0.56 RRCF-slow:w=0.13,s=0.58 COPOD!:w=0.13,s=0.08"} +{"timestamp":"2026-03-15T08:28:02.275570031Z","score":0.6329630198923638,"is_anomaly":false,"confidence":0.7428389076568601,"method":"SEAD","details":"MAD!:w=0.43,s=0.42 RRCF-fast:w=0.16,s=0.78 RRCF-mid!:w=0.15,s=0.87 RRCF-slow:w=0.13,s=0.77 COPOD!:w=0.13,s=0.75"} +{"timestamp":"2026-03-15T08:28:32.231872962Z","score":0.3294855773008768,"is_anomaly":false,"confidence":0.3875558878880827,"method":"SEAD","details":"MAD!:w=0.43,s=0.20 RRCF-fast:w=0.16,s=0.28 RRCF-mid:w=0.15,s=0.64 RRCF-slow:w=0.13,s=0.54 COPOD!:w=0.13,s=0.23"} +{"timestamp":"2026-03-15T08:29:02.277415659Z","score":0.3728606986049505,"is_anomaly":false,"confidence":0.43857567390409674,"method":"SEAD","details":"MAD!:w=0.43,s=0.32 RRCF-fast:w=0.16,s=0.44 RRCF-mid:w=0.15,s=0.40 RRCF-slow:w=0.12,s=0.29 COPOD!:w=0.13,s=0.50"} +{"timestamp":"2026-03-15T08:29:32.23066426Z","score":0.32097112349614065,"is_anomaly":false,"confidence":0.3775408009419149,"method":"SEAD","details":"MAD!:w=0.43,s=0.21 RRCF-fast:w=0.16,s=0.15 RRCF-mid:w=0.15,s=0.47 RRCF-slow:w=0.12,s=0.39 COPOD!:w=0.13,s=0.67"} +{"timestamp":"2026-03-15T08:30:02.310247907Z","score":0.8798506761518604,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.43,s=0.94 RRCF-fast:w=0.16,s=0.82 RRCF-mid:w=0.15,s=0.82 RRCF-slow:w=0.12,s=0.80 COPOD!:w=0.13,s=0.91"} +{"timestamp":"2026-03-15T08:30:32.279884974Z","score":0.5770296149296114,"is_anomaly":false,"confidence":0.6771960373180441,"method":"SEAD","details":"MAD!:w=0.43,s=0.48 RRCF-fast:w=0.16,s=0.75 RRCF-mid:w=0.15,s=0.68 RRCF-slow:w=0.12,s=0.63 COPOD!:w=0.13,s=0.51"} +{"timestamp":"2026-03-15T08:31:02.229342525Z","score":0.28726488354321017,"is_anomaly":false,"confidence":0.33713112076547674,"method":"SEAD","details":"MAD!:w=0.43,s=0.20 RRCF-fast:w=0.16,s=0.40 RRCF-mid:w=0.15,s=0.35 RRCF-slow:w=0.12,s=0.34 COPOD!:w=0.13,s=0.30"} +{"timestamp":"2026-03-15T08:31:32.279153555Z","score":0.2684763859508995,"is_anomaly":false,"confidence":0.31508113271031524,"method":"SEAD","details":"MAD!:w=0.43,s=0.18 RRCF-fast:w=0.16,s=0.38 RRCF-mid:w=0.15,s=0.27 RRCF-slow:w=0.12,s=0.19 COPOD!:w=0.13,s=0.49"} +{"timestamp":"2026-03-15T08:32:02.22998732Z","score":0.26542514430351394,"is_anomaly":false,"confidence":0.3122050995708245,"method":"SEAD","details":"MAD!:w=0.44,s=0.21 RRCF-fast:w=0.16,s=0.25 RRCF-mid:w=0.15,s=0.41 RRCF-slow:w=0.12,s=0.36 COPOD!:w=0.13,s=0.21"} +{"timestamp":"2026-03-15T08:32:32.270938298Z","score":0.8345210493518593,"is_anomaly":false,"confidence":0.9816015283349208,"method":"SEAD","details":"MAD!:w=0.44,s=0.83 RRCF-fast:w=0.16,s=0.67 RRCF-mid!:w=0.15,s=0.89 RRCF-slow!:w=0.12,s=0.95 COPOD!:w=0.13,s=0.88"} +{"timestamp":"2026-03-15T08:33:02.280184066Z","score":0.5757718756150796,"is_anomaly":false,"confidence":0.6772490082964098,"method":"SEAD","details":"MAD!:w=0.44,s=0.50 RRCF-fast:w=0.16,s=0.67 RRCF-mid:w=0.15,s=0.69 RRCF-slow:w=0.12,s=0.74 COPOD!:w=0.13,s=0.43"} +{"timestamp":"2026-03-15T08:33:32.231642388Z","score":0.3257373105319996,"is_anomaly":false,"confidence":0.3831470064203301,"method":"SEAD","details":"MAD!:w=0.44,s=0.21 RRCF-fast:w=0.16,s=0.39 RRCF-mid:w=0.15,s=0.49 RRCF-slow:w=0.12,s=0.26 COPOD!:w=0.13,s=0.52"} +{"timestamp":"2026-03-15T08:34:02.26815347Z","score":0.8420393658674956,"is_anomaly":false,"confidence":0.9904449133975096,"method":"SEAD","details":"MAD!:w=0.44,s=0.83 RRCF-fast!:w=0.16,s=0.85 RRCF-mid:w=0.15,s=0.80 RRCF-slow!:w=0.12,s=0.88 COPOD!:w=0.13,s=0.89"} +{"timestamp":"2026-03-15T08:34:32.277025697Z","score":0.5807638881453406,"is_anomaly":false,"confidence":0.6831208399691724,"method":"SEAD","details":"MAD!:w=0.44,s=0.47 RRCF-fast:w=0.16,s=0.60 RRCF-mid:w=0.15,s=0.63 RRCF-slow:w=0.12,s=0.70 COPOD!:w=0.13,s=0.77"} +{"timestamp":"2026-03-15T08:35:02.233648641Z","score":0.3956105888045537,"is_anomaly":false,"confidence":0.4655746683004382,"method":"SEAD","details":"MAD!:w=0.44,s=0.32 RRCF-fast:w=0.16,s=0.42 RRCF-mid:w=0.15,s=0.43 RRCF-slow:w=0.12,s=0.53 COPOD!:w=0.13,s=0.43"} +{"timestamp":"2026-03-15T08:35:32.276801197Z","score":0.8193606221348825,"is_anomaly":false,"confidence":0.9642652665633039,"method":"SEAD","details":"MAD!:w=0.44,s=0.79 RRCF-fast:w=0.16,s=0.76 RRCF-mid!:w=0.15,s=0.86 RRCF-slow!:w=0.12,s=0.89 COPOD!:w=0.13,s=0.87"} +{"timestamp":"2026-03-15T08:36:02.273852969Z","score":0.5611043919169012,"is_anomaly":false,"confidence":0.6603361955958429,"method":"SEAD","details":"MAD!:w=0.44,s=0.51 RRCF-fast:w=0.16,s=0.43 RRCF-mid:w=0.15,s=0.65 RRCF-slow:w=0.12,s=0.62 COPOD!:w=0.13,s=0.75"} +{"timestamp":"2026-03-15T08:36:32.230833255Z","score":0.2182416077431381,"is_anomaly":false,"confidence":0.2568378274236837,"method":"SEAD","details":"MAD:w=0.44,s=0.04 RRCF-fast:w=0.16,s=0.24 RRCF-mid:w=0.15,s=0.39 RRCF-slow:w=0.12,s=0.39 COPOD!:w=0.13,s=0.43"} +{"timestamp":"2026-03-15T08:37:02.277290812Z","score":0.2898911554767052,"is_anomaly":false,"confidence":0.34115866049524773,"method":"SEAD","details":"MAD!:w=0.44,s=0.35 RRCF-fast:w=0.16,s=0.09 RRCF-mid:w=0.15,s=0.22 RRCF-slow:w=0.12,s=0.16 COPOD!:w=0.13,s=0.52"} +{"timestamp":"2026-03-15T08:37:32.233742054Z","score":0.5219220957593816,"is_anomaly":false,"confidence":0.6142244760083799,"method":"SEAD","details":"MAD!:w=0.44,s=0.40 RRCF-fast:w=0.16,s=0.58 RRCF-mid:w=0.15,s=0.77 RRCF-slow:w=0.12,s=0.69 COPOD!:w=0.13,s=0.43"} +{"timestamp":"2026-03-15T08:38:02.275292305Z","score":0.8452315891935942,"is_anomaly":false,"confidence":0.9947115368296489,"method":"SEAD","details":"MAD!:w=0.45,s=0.84 RRCF-fast:w=0.16,s=0.79 RRCF-mid!:w=0.15,s=0.86 RRCF-slow!:w=0.12,s=0.91 COPOD!:w=0.13,s=0.86"} +{"timestamp":"2026-03-15T08:38:32.273850071Z","score":0.6029762722334515,"is_anomaly":false,"confidence":0.7109684257401832,"method":"SEAD","details":"MAD!:w=0.45,s=0.48 RRCF-fast:w=0.16,s=0.41 RRCF-mid:w=0.15,s=0.77 RRCF-slow:w=0.12,s=0.83 COPOD!:w=0.13,s=0.84"} +{"timestamp":"2026-03-15T08:39:02.229540399Z","score":0.10163017295053678,"is_anomaly":false,"confidence":0.11983198576406125,"method":"SEAD","details":"MAD:w=0.45,s=0.01 RRCF-fast:w=0.16,s=0.16 RRCF-mid:w=0.15,s=0.08 RRCF-slow:w=0.12,s=0.23 COPOD!:w=0.13,s=0.25"} +{"timestamp":"2026-03-15T08:39:32.275288056Z","score":0.6550016176011382,"is_anomaly":false,"confidence":0.7723114330821584,"method":"SEAD","details":"MAD!:w=0.45,s=0.47 RRCF-fast:w=0.16,s=0.82 RRCF-mid:w=0.15,s=0.85 RRCF-slow:w=0.12,s=0.72 COPOD!:w=0.13,s=0.81"} +{"timestamp":"2026-03-15T08:40:02.231473047Z","score":0.5003363906864835,"is_anomaly":false,"confidence":0.5899458940718826,"method":"SEAD","details":"MAD!:w=0.45,s=0.42 RRCF-fast:w=0.15,s=0.40 RRCF-mid:w=0.15,s=0.67 RRCF-slow:w=0.12,s=0.56 COPOD!:w=0.13,s=0.64"} +{"timestamp":"2026-03-15T08:40:32.231273723Z","score":0.34208342621643356,"is_anomaly":false,"confidence":0.403350059046342,"method":"SEAD","details":"MAD!:w=0.45,s=0.35 RRCF-fast:w=0.15,s=0.25 RRCF-mid:w=0.15,s=0.17 RRCF-slow:w=0.12,s=0.19 COPOD!:w=0.13,s=0.74"} +{"timestamp":"2026-03-15T08:41:03.275116736Z","score":0.48270950283703606,"is_anomaly":false,"confidence":0.569162056826346,"method":"SEAD","details":"MAD!:w=0.45,s=0.40 RRCF-fast:w=0.15,s=0.48 RRCF-mid:w=0.15,s=0.54 RRCF-slow:w=0.12,s=0.63 COPOD!:w=0.13,s=0.56"} +{"timestamp":"2026-03-15T08:41:32.23088544Z","score":0.27669075473740984,"is_anomaly":false,"confidence":0.32624565736868144,"method":"SEAD","details":"MAD!:w=0.45,s=0.15 RRCF-fast:w=0.15,s=0.28 RRCF-mid:w=0.15,s=0.33 RRCF-slow:w=0.12,s=0.33 COPOD!:w=0.13,s=0.62"} +{"timestamp":"2026-03-15T08:42:02.300058531Z","score":0.5718584151726475,"is_anomaly":false,"confidence":0.6765700933139963,"method":"SEAD","details":"MAD!:w=0.45,s=0.41 RRCF-fast:w=0.15,s=0.64 RRCF-mid:w=0.15,s=0.77 RRCF-slow:w=0.12,s=0.71 COPOD!:w=0.13,s=0.72"} +{"timestamp":"2026-03-15T08:42:32.230853582Z","score":0.2826282675980286,"is_anomaly":false,"confidence":0.33437967914530303,"method":"SEAD","details":"MAD!:w=0.46,s=0.14 RRCF-fast:w=0.15,s=0.34 RRCF-mid:w=0.14,s=0.54 RRCF-slow:w=0.12,s=0.51 COPOD!:w=0.13,s=0.23"} +{"timestamp":"2026-03-15T08:43:04.070614848Z","score":0.3445895003788789,"is_anomaly":false,"confidence":0.40768649064292506,"method":"SEAD","details":"MAD!:w=0.46,s=0.22 RRCF-fast:w=0.15,s=0.40 RRCF-mid:w=0.14,s=0.63 RRCF-slow:w=0.12,s=0.33 COPOD!:w=0.13,s=0.44"} +{"timestamp":"2026-03-15T08:43:32.288292819Z","score":0.21244287744602464,"is_anomaly":false,"confidence":0.25134280375004553,"method":"SEAD","details":"MAD!:w=0.46,s=0.17 RRCF-fast:w=0.15,s=0.24 RRCF-mid:w=0.14,s=0.28 RRCF-slow:w=0.12,s=0.13 COPOD!:w=0.13,s=0.34"} +{"timestamp":"2026-03-15T08:44:02.232262303Z","score":0.2634311587659972,"is_anomaly":false,"confidence":0.3116674319015072,"method":"SEAD","details":"MAD!:w=0.46,s=0.23 RRCF-fast:w=0.15,s=0.11 RRCF-mid:w=0.14,s=0.17 RRCF-slow:w=0.12,s=0.34 COPOD!:w=0.12,s=0.61"} +{"timestamp":"2026-03-15T08:44:32.281533375Z","score":0.20485398987586578,"is_anomaly":false,"confidence":0.2423643324444485,"method":"SEAD","details":"MAD!:w=0.46,s=0.23 RRCF-fast:w=0.15,s=0.02 RRCF-mid:w=0.14,s=0.32 RRCF-slow:w=0.12,s=0.28 COPOD!:w=0.12,s=0.15"} +{"timestamp":"2026-03-15T08:45:02.231884171Z","score":0.10813963686287585,"is_anomaly":false,"confidence":0.12842586848830634,"method":"SEAD","details":"MAD:w=0.46,s=0.07 RRCF-fast:w=0.15,s=0.25 RRCF-mid:w=0.14,s=0.06 RRCF-slow:w=0.12,s=0.17 COPOD!:w=0.12,s=0.08"} +{"timestamp":"2026-03-15T08:45:32.30348221Z","score":0.8727169853732348,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.46,s=0.99 RRCF-fast:w=0.15,s=0.76 RRCF-mid:w=0.14,s=0.79 RRCF-slow:w=0.12,s=0.69 COPOD!:w=0.12,s=0.85"} +{"timestamp":"2026-03-15T08:46:02.272845784Z","score":0.37706604996635706,"is_anomaly":false,"confidence":0.44610974647327434,"method":"SEAD","details":"MAD!:w=0.46,s=0.23 RRCF-fast:w=0.15,s=0.30 RRCF-mid:w=0.14,s=0.54 RRCF-slow:w=0.12,s=0.45 COPOD!:w=0.12,s=0.74"} +{"timestamp":"2026-03-15T08:46:32.231122865Z","score":0.2218496928252498,"is_anomaly":false,"confidence":0.2624720794414568,"method":"SEAD","details":"MAD!:w=0.46,s=0.23 RRCF-fast:w=0.15,s=0.03 RRCF-mid:w=0.14,s=0.10 RRCF-slow:w=0.12,s=0.11 COPOD!:w=0.12,s=0.67"} +{"timestamp":"2026-03-15T08:47:02.280220381Z","score":0.4452573046104784,"is_anomaly":false,"confidence":0.5267873447977528,"method":"SEAD","details":"MAD!:w=0.46,s=0.43 RRCF-fast:w=0.15,s=0.57 RRCF-mid:w=0.14,s=0.45 RRCF-slow:w=0.12,s=0.39 COPOD!:w=0.12,s=0.39"} +{"timestamp":"2026-03-15T08:47:32.234770119Z","score":0.17984140899361922,"is_anomaly":false,"confidence":0.21277175544894103,"method":"SEAD","details":"MAD!:w=0.46,s=0.23 RRCF-fast:w=0.15,s=0.07 RRCF-mid:w=0.14,s=0.03 RRCF-slow:w=0.12,s=0.05 COPOD!:w=0.12,s=0.43"} +{"timestamp":"2026-03-15T08:48:02.279901473Z","score":0.9474760736861094,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.46,s=0.93 RRCF-fast!:w=0.15,s=0.99 RRCF-mid!:w=0.14,s=0.90 RRCF-slow!:w=0.12,s=0.99 COPOD!:w=0.12,s=0.98"} +{"timestamp":"2026-03-15T08:48:32.232656554Z","score":0.8394967607941427,"is_anomaly":false,"confidence":0.9932150803723239,"method":"SEAD","details":"MAD!:w=0.46,s=0.77 RRCF-fast!:w=0.15,s=0.99 RRCF-mid!:w=0.14,s=0.93 RRCF-slow!:w=0.12,s=0.96 COPOD!:w=0.12,s=0.67"} +{"timestamp":"2026-03-15T08:49:02.233252021Z","score":0.3758639651232803,"is_anomaly":false,"confidence":0.4446875506414507,"method":"SEAD","details":"MAD:w=0.46,s=0.10 RRCF-fast:w=0.15,s=0.83 RRCF-mid:w=0.14,s=0.45 RRCF-slow:w=0.12,s=0.75 COPOD!:w=0.12,s=0.38"} +{"timestamp":"2026-03-15T08:49:32.277119184Z","score":0.3122255272820079,"is_anomaly":false,"confidence":0.36939642492525787,"method":"SEAD","details":"MAD!:w=0.47,s=0.15 RRCF-fast:w=0.15,s=0.80 RRCF-mid:w=0.14,s=0.19 RRCF-slow:w=0.12,s=0.62 COPOD!:w=0.12,s=0.16"} +{"timestamp":"2026-03-15T08:50:02.234150823Z","score":0.23424491595223879,"is_anomaly":false,"confidence":0.2771369633448315,"method":"SEAD","details":"MAD:w=0.47,s=0.07 RRCF-fast:w=0.15,s=0.82 RRCF-mid:w=0.14,s=0.11 RRCF-slow:w=0.12,s=0.52 COPOD!:w=0.12,s=0.02"} +{"timestamp":"2026-03-15T08:50:32.278307452Z","score":0.40801797189424704,"is_anomaly":false,"confidence":0.4827292035825621,"method":"SEAD","details":"MAD!:w=0.47,s=0.39 RRCF-fast:w=0.15,s=0.73 RRCF-mid:w=0.14,s=0.15 RRCF-slow:w=0.12,s=0.61 COPOD!:w=0.12,s=0.18"} +{"timestamp":"2026-03-15T08:51:02.23221322Z","score":0.24905120518127533,"is_anomaly":false,"confidence":0.29465439811458816,"method":"SEAD","details":"MAD!:w=0.47,s=0.18 RRCF-fast:w=0.15,s=0.52 RRCF-mid:w=0.14,s=0.06 RRCF-slow:w=0.12,s=0.57 COPOD!:w=0.12,s=0.10"} +{"timestamp":"2026-03-15T08:51:32.287744672Z","score":0.8913255376086343,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.47,s=0.87 RRCF-fast!:w=0.15,s=0.94 RRCF-mid:w=0.14,s=0.84 RRCF-slow!:w=0.12,s=0.92 COPOD!:w=0.12,s=0.97"} +{"timestamp":"2026-03-15T08:52:02.287521499Z","score":0.7839560552833853,"is_anomaly":false,"confidence":0.9275044441149322,"method":"SEAD","details":"MAD!:w=0.47,s=0.79 RRCF-fast:w=0.15,s=0.82 RRCF-mid:w=0.14,s=0.76 RRCF-slow:w=0.12,s=0.81 COPOD!:w=0.12,s=0.75"} +{"timestamp":"2026-03-15T08:52:32.232033044Z","score":0.3739658277567717,"is_anomaly":false,"confidence":0.4424418497107513,"method":"SEAD","details":"MAD!:w=0.47,s=0.24 RRCF-fast:w=0.15,s=0.74 RRCF-mid:w=0.14,s=0.12 RRCF-slow:w=0.12,s=0.45 COPOD!:w=0.12,s=0.65"} +{"timestamp":"2026-03-15T08:53:02.277329337Z","score":0.22919466792635768,"is_anomaly":false,"confidence":0.27116197602721437,"method":"SEAD","details":"MAD!:w=0.47,s=0.13 RRCF-fast:w=0.15,s=0.36 RRCF-mid:w=0.14,s=0.08 RRCF-slow:w=0.12,s=0.57 COPOD!:w=0.12,s=0.29"} +{"timestamp":"2026-03-15T08:53:32.230504665Z","score":0.26769143254888894,"is_anomaly":false,"confidence":0.3167077946108048,"method":"SEAD","details":"MAD!:w=0.47,s=0.18 RRCF-fast:w=0.15,s=0.57 RRCF-mid:w=0.14,s=0.04 RRCF-slow:w=0.11,s=0.52 COPOD!:w=0.12,s=0.25"} +{"timestamp":"2026-03-15T08:54:02.266686626Z","score":0.8661137247020201,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.48,s=0.87 RRCF-fast!:w=0.14,s=0.88 RRCF-mid:w=0.14,s=0.73 RRCF-slow!:w=0.11,s=0.89 COPOD!:w=0.12,s=0.97"} +{"timestamp":"2026-03-15T08:54:32.278069466Z","score":0.7430829319342418,"is_anomaly":false,"confidence":0.876167979802603,"method":"SEAD","details":"MAD!:w=0.48,s=0.78 RRCF-fast:w=0.14,s=0.66 RRCF-mid:w=0.14,s=0.70 RRCF-slow:w=0.11,s=0.82 COPOD!:w=0.12,s=0.68"} +{"timestamp":"2026-03-15T08:55:02.233245207Z","score":0.28107531003162345,"is_anomaly":false,"confidence":0.33254236309339497,"method":"SEAD","details":"MAD!:w=0.47,s=0.25 RRCF-fast:w=0.15,s=0.43 RRCF-mid:w=0.14,s=0.21 RRCF-slow:w=0.11,s=0.51 COPOD!:w=0.12,s=0.09"} +{"timestamp":"2026-03-15T08:55:32.280665629Z","score":0.3047163947202259,"is_anomaly":false,"confidence":0.3605123123840474,"method":"SEAD","details":"MAD!:w=0.47,s=0.25 RRCF-fast:w=0.14,s=0.38 RRCF-mid:w=0.14,s=0.04 RRCF-slow:w=0.11,s=0.31 COPOD!:w=0.12,s=0.71"} +{"timestamp":"2026-03-15T08:56:02.232531505Z","score":0.17436376184315808,"is_anomaly":false,"confidence":0.20629110893679733,"method":"SEAD","details":"MAD!:w=0.48,s=0.13 RRCF-fast:w=0.14,s=0.11 RRCF-mid:w=0.14,s=0.07 RRCF-slow:w=0.11,s=0.42 COPOD!:w=0.12,s=0.31"} +{"timestamp":"2026-03-15T08:56:32.278260361Z","score":0.813399908575247,"is_anomaly":false,"confidence":0.9623396936114081,"method":"SEAD","details":"MAD!:w=0.48,s=0.72 RRCF-fast!:w=0.14,s=0.94 RRCF-mid!:w=0.14,s=0.88 RRCF-slow!:w=0.11,s=0.87 COPOD!:w=0.12,s=0.90"} +{"timestamp":"2026-03-15T08:57:02.234026651Z","score":0.6082961238006578,"is_anomaly":false,"confidence":0.7196798268992901,"method":"SEAD","details":"MAD!:w=0.48,s=0.56 RRCF-fast:w=0.14,s=0.78 RRCF-mid:w=0.14,s=0.68 RRCF-slow:w=0.11,s=0.65 COPOD!:w=0.12,s=0.46"} +{"timestamp":"2026-03-15T08:57:32.27224712Z","score":0.6365300694588499,"is_anomaly":false,"confidence":0.7530836253601702,"method":"SEAD","details":"MAD!:w=0.48,s=0.57 RRCF-fast:w=0.14,s=0.72 RRCF-mid:w=0.14,s=0.64 RRCF-slow:w=0.11,s=0.70 COPOD!:w=0.12,s=0.76"} +{"timestamp":"2026-03-15T08:58:02.277640973Z","score":0.4162183064159505,"is_anomaly":false,"confidence":0.4924310824836182,"method":"SEAD","details":"MAD!:w=0.48,s=0.25 RRCF-fast:w=0.14,s=0.53 RRCF-mid:w=0.14,s=0.60 RRCF-slow:w=0.11,s=0.51 COPOD!:w=0.12,s=0.64"} +{"timestamp":"2026-03-15T08:58:32.234829469Z","score":0.2140094008731547,"is_anomaly":false,"confidence":0.2541560520186315,"method":"SEAD","details":"MAD:w=0.48,s=0.11 RRCF-fast:w=0.14,s=0.24 RRCF-mid:w=0.14,s=0.14 RRCF-slow:w=0.11,s=0.24 COPOD!:w=0.12,s=0.66"} +{"timestamp":"2026-03-15T08:59:02.616842863Z","score":0.750847842487905,"is_anomaly":false,"confidence":0.8917015913078574,"method":"SEAD","details":"MAD!:w=0.48,s=0.54 RRCF-fast!:w=0.14,s=0.95 RRCF-mid!:w=0.14,s=0.98 RRCF-slow!:w=0.11,s=1.00 COPOD!:w=0.12,s=0.85"} +{"timestamp":"2026-03-15T08:59:32.278245771Z","score":0.448437336649649,"is_anomaly":false,"confidence":0.5325610117855413,"method":"SEAD","details":"MAD!:w=0.49,s=0.46 RRCF-fast:w=0.14,s=0.36 RRCF-mid:w=0.14,s=0.48 RRCF-slow:w=0.11,s=0.70 COPOD!:w=0.12,s=0.24"} +{"timestamp":"2026-03-15T09:00:02.232088286Z","score":0.37445997882791465,"is_anomaly":false,"confidence":0.44470602445306595,"method":"SEAD","details":"MAD!:w=0.49,s=0.26 RRCF-fast:w=0.14,s=0.57 RRCF-mid:w=0.14,s=0.62 RRCF-slow:w=0.11,s=0.63 COPOD!:w=0.12,s=0.07"} +{"timestamp":"2026-03-15T09:00:32.295352469Z","score":0.3888098294640491,"is_anomaly":false,"confidence":0.4617478056545312,"method":"SEAD","details":"MAD!:w=0.49,s=0.26 RRCF-fast:w=0.14,s=0.37 RRCF-mid:w=0.14,s=0.43 RRCF-slow:w=0.11,s=0.50 COPOD!:w=0.12,s=0.77"} +{"timestamp":"2026-03-15T09:01:02.234182838Z","score":0.23475453240410785,"is_anomaly":false,"confidence":0.278792823613723,"method":"SEAD","details":"MAD!:w=0.49,s=0.19 RRCF-fast:w=0.14,s=0.34 RRCF-mid:w=0.14,s=0.31 RRCF-slow:w=0.11,s=0.29 COPOD!:w=0.12,s=0.15"} +{"timestamp":"2026-03-15T09:01:32.295900001Z","score":0.8696665882253508,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=0.92 RRCF-fast:w=0.14,s=0.69 RRCF-mid!:w=0.14,s=0.90 RRCF-slow:w=0.11,s=0.76 COPOD!:w=0.12,s=0.94"} +{"timestamp":"2026-03-15T09:02:02.279507053Z","score":0.5938452948258476,"is_anomaly":false,"confidence":0.7052464752809382,"method":"SEAD","details":"MAD!:w=0.49,s=0.60 RRCF-fast:w=0.14,s=0.47 RRCF-mid:w=0.14,s=0.56 RRCF-slow:w=0.11,s=0.60 COPOD!:w=0.12,s=0.74"} +{"timestamp":"2026-03-15T09:02:32.229162273Z","score":0.13189836511451092,"is_anomaly":false,"confidence":0.15664156625103276,"method":"SEAD","details":"MAD:w=0.49,s=0.06 RRCF-fast:w=0.14,s=0.25 RRCF-mid:w=0.14,s=0.19 RRCF-slow:w=0.11,s=0.27 COPOD!:w=0.12,s=0.10"} +{"timestamp":"2026-03-15T09:03:02.28139793Z","score":0.11443509876317808,"is_anomaly":false,"confidence":0.1359023145494907,"method":"SEAD","details":"MAD:w=0.49,s=0.10 RRCF-fast:w=0.14,s=0.16 RRCF-mid:w=0.14,s=0.17 RRCF-slow:w=0.11,s=0.18 COPOD!:w=0.12,s=0.00"} +{"timestamp":"2026-03-15T09:03:32.22928798Z","score":0.08449520025278773,"is_anomaly":false,"confidence":0.10034590267135325,"method":"SEAD","details":"MAD:w=0.49,s=0.02 RRCF-fast:w=0.14,s=0.03 RRCF-mid:w=0.14,s=0.18 RRCF-slow:w=0.11,s=0.30 COPOD!:w=0.12,s=0.09"} +{"timestamp":"2026-03-15T09:04:02.278304149Z","score":0.19746082893462166,"is_anomaly":false,"confidence":0.23450308493735475,"method":"SEAD","details":"MAD!:w=0.49,s=0.18 RRCF-fast:w=0.14,s=0.11 RRCF-mid:w=0.14,s=0.19 RRCF-slow:w=0.11,s=0.27 COPOD!:w=0.12,s=0.30"} +{"timestamp":"2026-03-15T09:04:32.231247323Z","score":0.18829937203570735,"is_anomaly":false,"confidence":0.22362300347052702,"method":"SEAD","details":"MAD!:w=0.49,s=0.24 RRCF-fast:w=0.14,s=0.15 RRCF-mid:w=0.14,s=0.14 RRCF-slow:w=0.11,s=0.18 COPOD!:w=0.12,s=0.07"} +{"timestamp":"2026-03-15T09:05:02.303804746Z","score":0.937935090882249,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=0.92 RRCF-fast!:w=0.14,s=0.97 RRCF-mid!:w=0.14,s=0.91 RRCF-slow!:w=0.11,s=0.94 COPOD!:w=0.12,s=1.00"} +{"timestamp":"2026-03-15T09:05:32.277827747Z","score":0.7952420702860252,"is_anomaly":false,"confidence":0.944423862495718,"method":"SEAD","details":"MAD!:w=0.49,s=0.82 RRCF-fast!:w=0.14,s=0.97 RRCF-mid:w=0.14,s=0.71 RRCF-slow:w=0.11,s=0.82 COPOD!:w=0.12,s=0.59"} +{"timestamp":"2026-03-15T09:06:02.232889794Z","score":0.3396925682518979,"is_anomaly":false,"confidence":0.40341649336303403,"method":"SEAD","details":"MAD!:w=0.49,s=0.28 RRCF-fast:w=0.14,s=0.58 RRCF-mid:w=0.14,s=0.29 RRCF-slow:w=0.11,s=0.51 COPOD!:w=0.12,s=0.20"} +{"timestamp":"2026-03-15T09:06:32.279804176Z","score":0.31576893712508697,"is_anomaly":false,"confidence":0.37500495811115886,"method":"SEAD","details":"MAD!:w=0.49,s=0.29 RRCF-fast:w=0.14,s=0.58 RRCF-mid:w=0.14,s=0.14 RRCF-slow:w=0.11,s=0.37 COPOD!:w=0.12,s=0.27"} +{"timestamp":"2026-03-15T09:07:02.236216636Z","score":0.31477547660760724,"is_anomaly":false,"confidence":0.3738251314216356,"method":"SEAD","details":"MAD!:w=0.49,s=0.29 RRCF-fast:w=0.14,s=0.54 RRCF-mid:w=0.14,s=0.31 RRCF-slow:w=0.11,s=0.39 COPOD!:w=0.12,s=0.10"} +{"timestamp":"2026-03-15T09:07:32.278505528Z","score":0.7726811584675012,"is_anomaly":false,"confidence":0.9176306830636838,"method":"SEAD","details":"MAD!:w=0.49,s=0.66 RRCF-fast:w=0.14,s=0.82 RRCF-mid!:w=0.14,s=0.92 RRCF-slow!:w=0.11,s=0.88 COPOD!:w=0.12,s=0.89"} +{"timestamp":"2026-03-15T09:08:02.230295555Z","score":0.60723221320001,"is_anomaly":false,"confidence":0.7211446849333703,"method":"SEAD","details":"MAD!:w=0.49,s=0.60 RRCF-fast:w=0.14,s=0.48 RRCF-mid:w=0.14,s=0.81 RRCF-slow:w=0.11,s=0.65 COPOD!:w=0.12,s=0.51"} +{"timestamp":"2026-03-15T09:08:32.235775444Z","score":0.28074072263652267,"is_anomaly":false,"confidence":0.33356234483253583,"method":"SEAD","details":"MAD!:w=0.49,s=0.29 RRCF-fast:w=0.14,s=0.25 RRCF-mid:w=0.14,s=0.28 RRCF-slow:w=0.11,s=0.21 COPOD!:w=0.12,s=0.35"} +{"timestamp":"2026-03-15T09:09:02.281088344Z","score":0.2562668302528832,"is_anomaly":false,"confidence":0.30448366734677845,"method":"SEAD","details":"MAD!:w=0.49,s=0.29 RRCF-fast:w=0.14,s=0.28 RRCF-mid:w=0.14,s=0.28 RRCF-slow:w=0.11,s=0.16 COPOD!:w=0.12,s=0.16"} +{"timestamp":"2026-03-15T09:09:32.236332257Z","score":0.2072455999484103,"is_anomaly":false,"confidence":0.24623904799347446,"method":"SEAD","details":"MAD:w=0.49,s=0.12 RRCF-fast:w=0.14,s=0.25 RRCF-mid:w=0.14,s=0.19 RRCF-slow:w=0.11,s=0.23 COPOD!:w=0.12,s=0.51"} +{"timestamp":"2026-03-15T09:10:02.283663634Z","score":0.2738033170849612,"is_anomaly":false,"confidence":0.32531966011939173,"method":"SEAD","details":"MAD!:w=0.49,s=0.29 RRCF-fast:w=0.14,s=0.12 RRCF-mid:w=0.14,s=0.10 RRCF-slow:w=0.11,s=0.25 COPOD!:w=0.12,s=0.61"} +{"timestamp":"2026-03-15T09:10:32.233897833Z","score":0.16591682740747038,"is_anomaly":false,"confidence":0.19713422932541494,"method":"SEAD","details":"MAD!:w=0.49,s=0.17 RRCF-fast:w=0.14,s=0.07 RRCF-mid:w=0.14,s=0.10 RRCF-slow:w=0.11,s=0.16 COPOD!:w=0.12,s=0.33"} +{"timestamp":"2026-03-15T09:11:02.269010956Z","score":0.9567775210616435,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=0.92 RRCF-fast!:w=0.14,s=1.00 RRCF-mid!:w=0.14,s=1.00 RRCF-slow!:w=0.11,s=1.00 COPOD!:w=0.12,s=0.99"} +{"timestamp":"2026-03-15T09:11:32.278742133Z","score":0.8648700963971453,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=0.83 RRCF-fast!:w=0.14,s=0.98 RRCF-mid!:w=0.14,s=1.00 RRCF-slow!:w=0.11,s=1.00 COPOD!:w=0.12,s=0.61"} +{"timestamp":"2026-03-15T09:12:02.232072034Z","score":0.9726208350020858,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=1.00 RRCF-fast!:w=0.14,s=0.96 RRCF-mid!:w=0.14,s=0.98 RRCF-slow!:w=0.11,s=0.99 COPOD!:w=0.12,s=0.85"} +{"timestamp":"2026-03-15T09:12:34.802542579Z","score":0.9397919811700595,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=0.92 RRCF-fast:w=0.14,s=0.91 RRCF-mid!:w=0.14,s=0.97 RRCF-slow!:w=0.11,s=0.99 COPOD!:w=0.12,s=0.99"} +{"timestamp":"2026-03-15T09:13:02.281625951Z","score":0.9725190930048542,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=1.00 RRCF-fast!:w=0.14,s=0.94 RRCF-mid!:w=0.14,s=0.97 RRCF-slow!:w=0.11,s=0.99 COPOD!:w=0.12,s=0.88"} +{"timestamp":"2026-03-15T09:13:32.233699017Z","score":0.6399462151921953,"is_anomaly":false,"confidence":0.7531212644447743,"method":"SEAD","details":"MAD!:w=0.49,s=0.55 RRCF-fast:w=0.14,s=0.76 RRCF-mid:w=0.14,s=0.84 RRCF-slow!:w=0.11,s=0.96 COPOD!:w=0.12,s=0.37"} +{"timestamp":"2026-03-15T09:14:02.28496265Z","score":0.9602417520393062,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=1.00 RRCF-fast:w=0.14,s=0.91 RRCF-mid!:w=0.14,s=0.97 RRCF-slow!:w=0.11,s=0.99 COPOD!:w=0.12,s=0.82"} +{"timestamp":"2026-03-15T09:14:32.224779706Z","score":0.6340865265908336,"is_anomaly":false,"confidence":0.7458413470595544,"method":"SEAD","details":"MAD!:w=0.49,s=0.60 RRCF-fast:w=0.14,s=0.66 RRCF-mid:w=0.14,s=0.83 RRCF-slow:w=0.11,s=0.94 COPOD!:w=0.12,s=0.23"} +{"timestamp":"2026-03-15T09:15:02.235256172Z","score":0.9594369213717142,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=1.00 RRCF-fast!:w=0.14,s=0.96 RRCF-mid!:w=0.14,s=0.99 RRCF-slow!:w=0.11,s=0.99 COPOD!:w=0.12,s=0.73"} +{"timestamp":"2026-03-15T09:15:34.514984578Z","score":0.9225325180241845,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=0.91 RRCF-fast:w=0.14,s=0.88 RRCF-mid!:w=0.14,s=0.95 RRCF-slow!:w=0.11,s=0.97 COPOD!:w=0.12,s=0.93"} +{"timestamp":"2026-03-15T09:16:02.273342251Z","score":0.9251723298620818,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=0.99 RRCF-fast:w=0.14,s=0.85 RRCF-mid:w=0.14,s=0.94 RRCF-slow!:w=0.11,s=0.97 COPOD!:w=0.12,s=0.69"} +{"timestamp":"2026-03-15T09:16:32.234566997Z","score":0.6552591912090022,"is_anomaly":false,"confidence":0.7688715580113,"method":"SEAD","details":"MAD!:w=0.49,s=0.55 RRCF-fast:w=0.14,s=0.68 RRCF-mid:w=0.14,s=0.86 RRCF-slow:w=0.11,s=0.94 COPOD!:w=0.12,s=0.59"} +{"timestamp":"2026-03-15T09:17:02.276772442Z","score":0.8708711120105534,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=0.98 RRCF-fast:w=0.14,s=0.69 RRCF-mid:w=0.14,s=0.87 RRCF-slow:w=0.11,s=0.95 COPOD!:w=0.12,s=0.55"} +{"timestamp":"2026-03-15T09:17:32.233401348Z","score":0.6210341359018495,"is_anomaly":false,"confidence":0.7274329594002813,"method":"SEAD","details":"MAD!:w=0.49,s=0.55 RRCF-fast:w=0.14,s=0.62 RRCF-mid:w=0.14,s=0.79 RRCF-slow:w=0.11,s=0.91 COPOD!:w=0.12,s=0.47"} +{"timestamp":"2026-03-15T09:18:02.280966557Z","score":0.8905848462768788,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=1.00 RRCF-fast:w=0.14,s=0.78 RRCF-mid:w=0.14,s=0.94 RRCF-slow!:w=0.11,s=0.97 COPOD!:w=0.12,s=0.46"} +{"timestamp":"2026-03-15T09:18:32.27939349Z","score":0.6680793896693998,"is_anomaly":false,"confidence":0.7825382526450232,"method":"SEAD","details":"MAD!:w=0.49,s=0.70 RRCF-fast:w=0.14,s=0.46 RRCF-mid:w=0.14,s=0.80 RRCF-slow:w=0.11,s=0.88 COPOD!:w=0.12,s=0.42"} +{"timestamp":"2026-03-15T09:19:02.279431727Z","score":0.9364640749872147,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=1.00 RRCF-fast:w=0.14,s=0.84 RRCF-mid!:w=0.14,s=0.96 RRCF-slow!:w=0.11,s=0.98 COPOD!:w=0.12,s=0.73"} +{"timestamp":"2026-03-15T09:19:32.27341704Z","score":0.6256460777068519,"is_anomaly":false,"confidence":0.7325560313463456,"method":"SEAD","details":"MAD!:w=0.49,s=0.73 RRCF-fast:w=0.14,s=0.50 RRCF-mid:w=0.14,s=0.60 RRCF-slow:w=0.11,s=0.87 COPOD!:w=0.12,s=0.19"} +{"timestamp":"2026-03-15T09:20:02.320865319Z","score":0.9247761111486668,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=0.99 RRCF-fast:w=0.14,s=0.80 RRCF-mid:w=0.14,s=0.95 RRCF-slow:w=0.11,s=0.96 COPOD!:w=0.12,s=0.76"} +{"timestamp":"2026-03-15T09:20:32.232309493Z","score":0.49336892120214304,"is_anomaly":false,"confidence":0.5755298877367224,"method":"SEAD","details":"MAD!:w=0.49,s=0.56 RRCF-fast:w=0.14,s=0.29 RRCF-mid:w=0.14,s=0.61 RRCF-slow:w=0.11,s=0.83 COPOD!:w=0.12,s=0.06"} +{"timestamp":"2026-03-15T09:21:02.279282632Z","score":0.8769455744970945,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=0.99 RRCF-fast:w=0.14,s=0.73 RRCF-mid:w=0.14,s=0.92 RRCF-slow!:w=0.11,s=0.97 COPOD!:w=0.13,s=0.47"} +{"timestamp":"2026-03-15T09:21:32.275938144Z","score":0.8394393793425171,"is_anomaly":false,"confidence":0.974852524449718,"method":"SEAD","details":"MAD!:w=0.48,s=0.76 RRCF-fast:w=0.14,s=0.92 RRCF-mid:w=0.14,s=0.91 RRCF-slow:w=0.11,s=0.94 COPOD!:w=0.13,s=0.89"} +{"timestamp":"2026-03-15T09:22:02.279782139Z","score":0.6704992652492415,"is_anomaly":false,"confidence":0.7821578341744455,"method":"SEAD","details":"MAD!:w=0.48,s=0.66 RRCF-fast:w=0.14,s=0.76 RRCF-mid:w=0.14,s=0.79 RRCF-slow:w=0.11,s=0.89 COPOD!:w=0.13,s=0.28"} +{"timestamp":"2026-03-15T09:22:32.27934955Z","score":0.34774561530185183,"is_anomaly":false,"confidence":0.40565586184057945,"method":"SEAD","details":"MAD!:w=0.48,s=0.27 RRCF-fast:w=0.14,s=0.34 RRCF-mid:w=0.14,s=0.54 RRCF-slow:w=0.11,s=0.79 COPOD!:w=0.13,s=0.07"} +{"timestamp":"2026-03-15T09:23:02.230565729Z","score":0.26157843928797003,"is_anomaly":false,"confidence":0.3051392240738056,"method":"SEAD","details":"MAD!:w=0.49,s=0.18 RRCF-fast:w=0.14,s=0.19 RRCF-mid:w=0.14,s=0.48 RRCF-slow:w=0.11,s=0.71 COPOD!:w=0.13,s=0.05"} +{"timestamp":"2026-03-15T09:23:32.291684732Z","score":0.9210024841794855,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=0.90 RRCF-fast:w=0.14,s=0.92 RRCF-mid:w=0.14,s=0.95 RRCF-slow!:w=0.11,s=0.97 COPOD!:w=0.13,s=0.95"} +{"timestamp":"2026-03-15T09:24:02.280561793Z","score":0.7012029205550555,"is_anomaly":false,"confidence":0.8143166190154316,"method":"SEAD","details":"MAD!:w=0.49,s=0.79 RRCF-fast:w=0.14,s=0.46 RRCF-mid:w=0.14,s=0.79 RRCF-slow:w=0.11,s=0.88 COPOD!:w=0.13,s=0.41"} +{"timestamp":"2026-03-15T09:24:32.231332015Z","score":0.2444769557779461,"is_anomaly":false,"confidence":0.28391445931042897,"method":"SEAD","details":"MAD!:w=0.49,s=0.13 RRCF-fast:w=0.14,s=0.20 RRCF-mid:w=0.14,s=0.42 RRCF-slow:w=0.11,s=0.71 COPOD!:w=0.13,s=0.14"} +{"timestamp":"2026-03-15T09:25:02.275832503Z","score":0.31530117555074144,"is_anomaly":false,"confidence":0.3678084337493665,"method":"SEAD","details":"MAD!:w=0.49,s=0.28 RRCF-fast:w=0.14,s=0.04 RRCF-mid:w=0.14,s=0.49 RRCF-slow:w=0.10,s=0.68 COPOD!:w=0.13,s=0.27"} +{"timestamp":"2026-03-15T09:25:32.23961348Z","score":0.2678150238105562,"is_anomaly":false,"confidence":0.31241439005183036,"method":"SEAD","details":"MAD!:w=0.49,s=0.17 RRCF-fast:w=0.14,s=0.03 RRCF-mid:w=0.14,s=0.48 RRCF-slow:w=0.10,s=0.79 COPOD!:w=0.13,s=0.26"} +{"timestamp":"2026-03-15T09:26:02.279465427Z","score":0.8598491268356889,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=0.87 RRCF-fast:w=0.14,s=0.78 RRCF-mid:w=0.14,s=0.82 RRCF-slow:w=0.10,s=0.93 COPOD!:w=0.13,s=0.91"} +{"timestamp":"2026-03-15T09:26:32.232856128Z","score":0.5774694116469565,"is_anomaly":false,"confidence":0.6715938803963069,"method":"SEAD","details":"MAD!:w=0.49,s=0.62 RRCF-fast:w=0.14,s=0.12 RRCF-mid:w=0.14,s=0.61 RRCF-slow:w=0.10,s=0.78 COPOD!:w=0.13,s=0.76"} +{"timestamp":"2026-03-15T09:27:02.233951229Z","score":0.31379934428153333,"is_anomaly":false,"confidence":0.36494698254371566,"method":"SEAD","details":"MAD!:w=0.49,s=0.29 RRCF-fast:w=0.15,s=0.03 RRCF-mid:w=0.14,s=0.38 RRCF-slow:w=0.10,s=0.65 COPOD!:w=0.13,s=0.38"} +{"timestamp":"2026-03-15T09:27:32.26603531Z","score":0.21272544740606383,"is_anomaly":false,"confidence":0.24739857350196992,"method":"SEAD","details":"MAD!:w=0.49,s=0.21 RRCF-fast:w=0.15,s=0.05 RRCF-mid:w=0.14,s=0.24 RRCF-slow:w=0.10,s=0.63 COPOD!:w=0.13,s=0.05"} +{"timestamp":"2026-03-15T09:28:02.225025052Z","score":0.2137003608155729,"is_anomaly":false,"confidence":0.24853239265591476,"method":"SEAD","details":"MAD!:w=0.49,s=0.21 RRCF-fast:w=0.15,s=0.08 RRCF-mid:w=0.14,s=0.24 RRCF-slow:w=0.10,s=0.64 COPOD!:w=0.13,s=0.02"} +{"timestamp":"2026-03-15T09:28:32.276772659Z","score":0.6558905490385563,"is_anomaly":false,"confidence":0.7651163213441947,"method":"SEAD","details":"MAD!:w=0.49,s=0.61 RRCF-fast:w=0.15,s=0.52 RRCF-mid:w=0.14,s=0.69 RRCF-slow:w=0.10,s=0.83 COPOD!:w=0.13,s=0.82"} +{"timestamp":"2026-03-15T09:29:02.233362779Z","score":0.5086825118810283,"is_anomaly":false,"confidence":0.5933936581233739,"method":"SEAD","details":"MAD!:w=0.49,s=0.55 RRCF-fast:w=0.15,s=0.33 RRCF-mid:w=0.14,s=0.58 RRCF-slow:w=0.10,s=0.72 COPOD!:w=0.13,s=0.31"} +{"timestamp":"2026-03-15T09:29:32.23842725Z","score":0.47491712659334206,"is_anomaly":false,"confidence":0.5540053067925709,"method":"SEAD","details":"MAD!:w=0.49,s=0.49 RRCF-fast:w=0.15,s=0.26 RRCF-mid:w=0.14,s=0.48 RRCF-slow:w=0.10,s=0.66 COPOD!:w=0.13,s=0.50"} +{"timestamp":"2026-03-15T09:30:02.290625088Z","score":0.23491004477356944,"is_anomaly":false,"confidence":0.274029728843353,"method":"SEAD","details":"MAD!:w=0.49,s=0.20 RRCF-fast:w=0.15,s=0.08 RRCF-mid:w=0.14,s=0.28 RRCF-slow:w=0.10,s=0.60 COPOD!:w=0.13,s=0.20"} +{"timestamp":"2026-03-15T09:30:32.233029514Z","score":0.2876151198397825,"is_anomaly":false,"confidence":0.335511805708071,"method":"SEAD","details":"MAD!:w=0.49,s=0.30 RRCF-fast:w=0.15,s=0.06 RRCF-mid:w=0.14,s=0.30 RRCF-slow:w=0.10,s=0.53 COPOD!:w=0.13,s=0.30"} +{"timestamp":"2026-03-15T09:31:02.282402157Z","score":0.30546193467801375,"is_anomaly":false,"confidence":0.3563306593060602,"method":"SEAD","details":"MAD!:w=0.49,s=0.30 RRCF-fast:w=0.15,s=0.00 RRCF-mid:w=0.14,s=0.17 RRCF-slow:w=0.10,s=0.55 COPOD!:w=0.13,s=0.63"} +{"timestamp":"2026-03-15T09:31:32.232325511Z","score":0.20317945798437312,"is_anomaly":false,"confidence":0.23701503199518204,"method":"SEAD","details":"MAD!:w=0.49,s=0.20 RRCF-fast:w=0.15,s=0.00 RRCF-mid:w=0.14,s=0.08 RRCF-slow:w=0.10,s=0.62 COPOD!:w=0.13,s=0.23"} +{"timestamp":"2026-03-15T09:32:02.26547215Z","score":0.9010659995975314,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=0.87 RRCF-fast:w=0.15,s=0.90 RRCF-mid:w=0.14,s=0.94 RRCF-slow:w=0.10,s=0.94 COPOD!:w=0.13,s=0.96"} +{"timestamp":"2026-03-15T09:32:32.280231492Z","score":0.7177152804565881,"is_anomaly":false,"confidence":0.8372367553708735,"method":"SEAD","details":"MAD!:w=0.49,s=0.77 RRCF-fast:w=0.15,s=0.59 RRCF-mid:w=0.14,s=0.75 RRCF-slow:w=0.10,s=0.78 COPOD!:w=0.13,s=0.59"} +{"timestamp":"2026-03-15T09:33:02.233942137Z","score":0.23038581881285625,"is_anomaly":false,"confidence":0.2687520813317904,"method":"SEAD","details":"MAD!:w=0.49,s=0.18 RRCF-fast:w=0.15,s=0.24 RRCF-mid:w=0.14,s=0.24 RRCF-slow:w=0.10,s=0.60 COPOD!:w=0.13,s=0.09"} +{"timestamp":"2026-03-15T09:33:32.282939115Z","score":0.25813835452962147,"is_anomaly":false,"confidence":0.3011262603266101,"method":"SEAD","details":"MAD!:w=0.49,s=0.30 RRCF-fast:w=0.15,s=0.20 RRCF-mid:w=0.14,s=0.26 RRCF-slow:w=0.10,s=0.45 COPOD!:w=0.13,s=0.00"} +{"timestamp":"2026-03-15T09:34:02.232845751Z","score":0.17367374451278347,"is_anomaly":false,"confidence":0.20259571770088286,"method":"SEAD","details":"MAD!:w=0.49,s=0.12 RRCF-fast:w=0.15,s=0.04 RRCF-mid:w=0.14,s=0.26 RRCF-slow:w=0.10,s=0.45 COPOD!:w=0.13,s=0.22"} +{"timestamp":"2026-03-15T09:34:32.284557435Z","score":0.33624664845446967,"is_anomaly":false,"confidence":0.39224196644839154,"method":"SEAD","details":"MAD!:w=0.49,s=0.28 RRCF-fast:w=0.15,s=0.31 RRCF-mid:w=0.14,s=0.34 RRCF-slow:w=0.10,s=0.61 COPOD!:w=0.13,s=0.35"} +{"timestamp":"2026-03-15T09:35:02.23602922Z","score":0.4083438569019117,"is_anomaly":false,"confidence":0.4781213626929903,"method":"SEAD","details":"MAD!:w=0.49,s=0.47 RRCF-fast:w=0.15,s=0.34 RRCF-mid:w=0.14,s=0.33 RRCF-slow:w=0.10,s=0.61 COPOD!:w=0.13,s=0.18"} +{"timestamp":"2026-03-15T09:35:32.244356293Z","score":0.5012845713123678,"is_anomaly":false,"confidence":0.586943719813111,"method":"SEAD","details":"MAD!:w=0.49,s=0.51 RRCF-fast:w=0.15,s=0.33 RRCF-mid:w=0.14,s=0.48 RRCF-slow:w=0.10,s=0.64 COPOD!:w=0.13,s=0.60"} +{"timestamp":"2026-03-15T09:36:02.295920389Z","score":0.23270360859418385,"is_anomaly":false,"confidence":0.27246783455677975,"method":"SEAD","details":"MAD!:w=0.49,s=0.16 RRCF-fast:w=0.15,s=0.21 RRCF-mid:w=0.14,s=0.23 RRCF-slow:w=0.10,s=0.52 COPOD!:w=0.13,s=0.32"} +{"timestamp":"2026-03-15T09:36:32.233463174Z","score":0.26942938494662805,"is_anomaly":false,"confidence":0.3154692852674894,"method":"SEAD","details":"MAD!:w=0.49,s=0.31 RRCF-fast:w=0.15,s=0.07 RRCF-mid:w=0.14,s=0.07 RRCF-slow:w=0.10,s=0.50 COPOD!:w=0.13,s=0.39"} +{"timestamp":"2026-03-15T09:37:02.282928804Z","score":0.26139851459893115,"is_anomaly":false,"confidence":0.30606610554688957,"method":"SEAD","details":"MAD!:w=0.49,s=0.31 RRCF-fast:w=0.15,s=0.19 RRCF-mid:w=0.14,s=0.05 RRCF-slow:w=0.10,s=0.42 COPOD!:w=0.13,s=0.28"} +{"timestamp":"2026-03-15T09:37:32.237305199Z","score":0.11616282908622656,"is_anomaly":false,"confidence":0.13601265011884536,"method":"SEAD","details":"MAD:w=0.49,s=0.10 RRCF-fast:w=0.15,s=0.00 RRCF-mid:w=0.14,s=0.06 RRCF-slow:w=0.10,s=0.46 COPOD!:w=0.13,s=0.12"} +{"timestamp":"2026-03-15T09:38:02.349189629Z","score":0.9247914871227436,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=0.93 RRCF-fast:w=0.15,s=0.86 RRCF-mid:w=0.14,s=0.91 RRCF-slow:w=0.10,s=0.92 COPOD!:w=0.13,s=0.98"} +{"timestamp":"2026-03-15T09:38:32.280227544Z","score":0.6493291047822308,"is_anomaly":false,"confidence":0.7602859971253954,"method":"SEAD","details":"MAD!:w=0.49,s=0.78 RRCF-fast:w=0.15,s=0.90 RRCF-mid:w=0.14,s=0.05 RRCF-slow:w=0.10,s=0.50 COPOD!:w=0.13,s=0.63"} +{"timestamp":"2026-03-15T09:39:02.242609052Z","score":0.33897364664226265,"is_anomaly":false,"confidence":0.396897220590591,"method":"SEAD","details":"MAD!:w=0.48,s=0.30 RRCF-fast:w=0.15,s=0.44 RRCF-mid:w=0.14,s=0.19 RRCF-slow:w=0.10,s=0.32 COPOD!:w=0.13,s=0.54"} +{"timestamp":"2026-03-15T09:39:32.287989648Z","score":0.30096849825464467,"is_anomaly":false,"confidence":0.3523977796676875,"method":"SEAD","details":"MAD!:w=0.48,s=0.30 RRCF-fast:w=0.15,s=0.22 RRCF-mid:w=0.14,s=0.15 RRCF-slow:w=0.10,s=0.49 COPOD!:w=0.13,s=0.42"} +{"timestamp":"2026-03-15T09:40:02.232666067Z","score":0.5595616325915393,"is_anomaly":false,"confidence":0.6551791235827176,"method":"SEAD","details":"MAD!:w=0.48,s=0.58 RRCF-fast:w=0.15,s=0.74 RRCF-mid:w=0.14,s=0.51 RRCF-slow:w=0.10,s=0.61 COPOD!:w=0.13,s=0.31"} +{"timestamp":"2026-03-15T09:40:32.278546256Z","score":0.3490992146194084,"is_anomaly":false,"confidence":0.40875303837123256,"method":"SEAD","details":"MAD!:w=0.48,s=0.30 RRCF-fast:w=0.15,s=0.36 RRCF-mid:w=0.14,s=0.25 RRCF-slow:w=0.10,s=0.57 COPOD!:w=0.13,s=0.45"} +{"timestamp":"2026-03-15T09:41:02.238355777Z","score":0.2980445792259134,"is_anomaly":false,"confidence":0.3489742234495838,"method":"SEAD","details":"MAD!:w=0.48,s=0.30 RRCF-fast:w=0.15,s=0.25 RRCF-mid:w=0.14,s=0.04 RRCF-slow:w=0.10,s=0.28 COPOD!:w=0.13,s=0.64"} +{"timestamp":"2026-03-15T09:41:32.287579163Z","score":0.8643114797512044,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.48,s=0.89 RRCF-fast:w=0.15,s=0.82 RRCF-mid:w=0.14,s=0.83 RRCF-slow:w=0.10,s=0.78 COPOD!:w=0.13,s=0.94"} +{"timestamp":"2026-03-15T09:42:02.283422344Z","score":0.5709881982801326,"is_anomaly":false,"confidence":0.668558252631899,"method":"SEAD","details":"MAD!:w=0.48,s=0.67 RRCF-fast:w=0.15,s=0.57 RRCF-mid:w=0.14,s=0.51 RRCF-slow:w=0.10,s=0.54 COPOD!:w=0.13,s=0.30"} +{"timestamp":"2026-03-15T09:42:32.232582551Z","score":0.15181132843321912,"is_anomaly":false,"confidence":0.1777527395010115,"method":"SEAD","details":"MAD:w=0.48,s=0.01 RRCF-fast:w=0.15,s=0.53 RRCF-mid:w=0.14,s=0.05 RRCF-slow:w=0.10,s=0.22 COPOD!:w=0.13,s=0.31"} +{"timestamp":"2026-03-15T09:43:02.281572666Z","score":0.11586474972184893,"is_anomaly":false,"confidence":0.13566363516618224,"method":"SEAD","details":"MAD:w=0.48,s=0.05 RRCF-fast:w=0.15,s=0.36 RRCF-mid:w=0.14,s=0.04 RRCF-slow:w=0.10,s=0.24 COPOD!:w=0.13,s=0.06"} +{"timestamp":"2026-03-15T09:43:32.235593898Z","score":0.11762811128667246,"is_anomaly":false,"confidence":0.13772831869219496,"method":"SEAD","details":"MAD:w=0.49,s=0.02 RRCF-fast:w=0.15,s=0.26 RRCF-mid:w=0.14,s=0.22 RRCF-slow:w=0.10,s=0.18 COPOD!:w=0.13,s=0.15"} +{"timestamp":"2026-03-15T09:44:02.269016293Z","score":0.8732458080452239,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=0.91 RRCF-fast!:w=0.15,s=0.85 RRCF-mid:w=0.14,s=0.76 RRCF-slow:w=0.10,s=0.82 COPOD!:w=0.13,s=0.91"} +{"timestamp":"2026-03-15T09:44:32.279621823Z","score":0.6307142454311553,"is_anomaly":false,"confidence":0.7357473956455766,"method":"SEAD","details":"MAD!:w=0.49,s=0.66 RRCF-fast:w=0.15,s=0.72 RRCF-mid:w=0.14,s=0.64 RRCF-slow:w=0.10,s=0.68 COPOD!:w=0.13,s=0.37"} +{"timestamp":"2026-03-15T09:45:02.234217757Z","score":0.3551828420665423,"is_anomaly":false,"confidence":0.4158762317191341,"method":"SEAD","details":"MAD!:w=0.49,s=0.27 RRCF-fast:w=0.15,s=0.53 RRCF-mid:w=0.14,s=0.28 RRCF-slow:w=0.10,s=0.48 COPOD!:w=0.13,s=0.46"} +{"timestamp":"2026-03-15T09:45:32.322046026Z","score":0.33688440306235967,"is_anomaly":false,"confidence":0.3944509685641751,"method":"SEAD","details":"MAD!:w=0.49,s=0.30 RRCF-fast:w=0.15,s=0.35 RRCF-mid:w=0.14,s=0.23 RRCF-slow:w=0.10,s=0.35 COPOD!:w=0.13,s=0.58"} +{"timestamp":"2026-03-15T09:46:02.234188463Z","score":0.33600065324386186,"is_anomaly":false,"confidence":0.39341620420967827,"method":"SEAD","details":"MAD!:w=0.49,s=0.30 RRCF-fast:w=0.15,s=0.30 RRCF-mid:w=0.14,s=0.17 RRCF-slow:w=0.10,s=0.34 COPOD!:w=0.13,s=0.71"} +{"timestamp":"2026-03-15T09:46:32.344754671Z","score":0.8626270074389784,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=0.89 RRCF-fast:w=0.15,s=0.60 RRCF-mid!:w=0.14,s=0.90 RRCF-slow!:w=0.10,s=0.94 COPOD!:w=0.13,s=0.96"} +{"timestamp":"2026-03-15T09:47:02.282254858Z","score":0.5099546392462159,"is_anomaly":false,"confidence":0.5948776334777379,"method":"SEAD","details":"MAD!:w=0.49,s=0.78 RRCF-fast:w=0.15,s=0.13 RRCF-mid:w=0.14,s=0.00 RRCF-slow:w=0.10,s=0.15 COPOD!:w=0.13,s=0.78"} +{"timestamp":"2026-03-15T09:47:32.234851436Z","score":0.1941959370646921,"is_anomaly":false,"confidence":0.22653548096512,"method":"SEAD","details":"MAD:w=0.48,s=0.10 RRCF-fast:w=0.15,s=0.10 RRCF-mid:w=0.14,s=0.25 RRCF-slow:w=0.10,s=0.52 COPOD!:w=0.13,s=0.35"} +{"timestamp":"2026-03-15T09:48:02.285015072Z","score":0.22125048021336066,"is_anomaly":false,"confidence":0.25809543034981564,"method":"SEAD","details":"MAD!:w=0.48,s=0.20 RRCF-fast:w=0.15,s=0.08 RRCF-mid:w=0.14,s=0.35 RRCF-slow:w=0.10,s=0.43 COPOD!:w=0.13,s=0.17"} +{"timestamp":"2026-03-15T09:48:32.235143625Z","score":0.140770194618935,"is_anomaly":false,"confidence":0.1648249046487555,"method":"SEAD","details":"MAD:w=0.48,s=0.10 RRCF-fast:w=0.15,s=0.02 RRCF-mid:w=0.14,s=0.21 RRCF-slow:w=0.10,s=0.33 COPOD!:w=0.13,s=0.22"} +{"timestamp":"2026-03-15T09:49:02.3005381Z","score":0.9361768586883197,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=0.93 RRCF-fast!:w=0.15,s=0.89 RRCF-mid!:w=0.14,s=0.96 RRCF-slow!:w=0.10,s=0.94 COPOD!:w=0.13,s=1.00"} +{"timestamp":"2026-03-15T09:49:32.279304949Z","score":0.777865402557734,"is_anomaly":false,"confidence":0.9074037065762148,"method":"SEAD","details":"MAD!:w=0.49,s=0.80 RRCF-fast!:w=0.15,s=0.85 RRCF-mid:w=0.14,s=0.83 RRCF-slow:w=0.10,s=0.86 COPOD!:w=0.13,s=0.49"} +{"timestamp":"2026-03-15T09:50:02.23441295Z","score":0.2072880597591604,"is_anomaly":false,"confidence":0.24180784122288243,"method":"SEAD","details":"MAD!:w=0.48,s=0.15 RRCF-fast:w=0.15,s=0.36 RRCF-mid:w=0.14,s=0.26 RRCF-slow:w=0.10,s=0.37 COPOD!:w=0.13,s=0.05"} +{"timestamp":"2026-03-15T09:50:32.293126192Z","score":0.2667993620026526,"is_anomaly":false,"confidence":0.31122958958880775,"method":"SEAD","details":"MAD!:w=0.49,s=0.15 RRCF-fast:w=0.15,s=0.44 RRCF-mid:w=0.14,s=0.40 RRCF-slow:w=0.10,s=0.35 COPOD!:w=0.13,s=0.28"} +{"timestamp":"2026-03-15T09:51:02.243379336Z","score":0.17695304765189357,"is_anomaly":false,"confidence":0.2064211247875474,"method":"SEAD","details":"MAD!:w=0.49,s=0.15 RRCF-fast:w=0.15,s=0.22 RRCF-mid:w=0.14,s=0.27 RRCF-slow:w=0.10,s=0.21 COPOD!:w=0.13,s=0.09"} +{"timestamp":"2026-03-15T09:52:01.794970252Z","score":0.8692725129465814,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=0.81 RRCF-fast!:w=0.15,s=1.00 RRCF-mid!:w=0.14,s=1.00 RRCF-slow!:w=0.10,s=1.00 COPOD!:w=0.13,s=0.71"} +{"timestamp":"2026-03-15T09:52:02.253491313Z","score":0.8459621251296107,"is_anomaly":false,"confidence":0.9868406094957105,"method":"SEAD","details":"MAD!:w=0.49,s=0.74 RRCF-fast!:w=0.15,s=0.97 RRCF-mid!:w=0.14,s=1.00 RRCF-slow!:w=0.10,s=0.99 COPOD!:w=0.13,s=0.85"} +{"timestamp":"2026-03-15T09:52:32.407895148Z","score":0.9378606810458797,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=0.92 RRCF-fast!:w=0.15,s=0.93 RRCF-mid!:w=0.14,s=0.97 RRCF-slow!:w=0.10,s=0.95 COPOD!:w=0.13,s=0.96"} +{"timestamp":"2026-03-15T09:53:37.697434049Z","score":0.8704743212743276,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.49,s=0.80 RRCF-fast!:w=0.15,s=0.95 RRCF-mid!:w=0.14,s=0.98 RRCF-slow!:w=0.10,s=0.98 COPOD!:w=0.13,s=0.86"} +{"timestamp":"2026-03-15T09:54:02.28330236Z","score":0.5929900492558026,"is_anomaly":false,"confidence":0.6886475196617006,"method":"SEAD","details":"MAD!:w=0.49,s=0.53 RRCF-fast:w=0.15,s=0.62 RRCF-mid!:w=0.14,s=0.90 RRCF-slow!:w=0.10,s=0.93 COPOD!:w=0.13,s=0.23"} +{"timestamp":"2026-03-15T09:54:32.23506355Z","score":0.6238171845250766,"is_anomaly":false,"confidence":0.7244474968587944,"method":"SEAD","details":"MAD!:w=0.49,s=0.54 RRCF-fast:w=0.15,s=0.54 RRCF-mid:w=0.14,s=0.87 RRCF-slow:w=0.10,s=0.87 COPOD!:w=0.13,s=0.61"} +{"timestamp":"2026-03-15T09:55:09.518538061Z","score":0.8570411059050005,"is_anomaly":false,"confidence":0.9952936521789774,"method":"SEAD","details":"MAD!:w=0.49,s=0.80 RRCF-fast!:w=0.15,s=0.87 RRCF-mid!:w=0.14,s=0.96 RRCF-slow!:w=0.10,s=0.94 COPOD!:w=0.13,s=0.88"} +{"timestamp":"2026-03-15T09:55:32.282727945Z","score":0.5491433126211119,"is_anomaly":false,"confidence":0.6386507766100801,"method":"SEAD","details":"MAD!:w=0.49,s=0.52 RRCF-fast:w=0.15,s=0.55 RRCF-mid:w=0.14,s=0.77 RRCF-slow:w=0.09,s=0.91 COPOD!:w=0.13,s=0.15"} +{"timestamp":"2026-03-15T09:56:03.507241083Z","score":0.5697274986734043,"is_anomaly":false,"confidence":0.6625900764359038,"method":"SEAD","details":"MAD!:w=0.49,s=0.51 RRCF-fast:w=0.15,s=0.52 RRCF-mid:w=0.14,s=0.85 RRCF-slow:w=0.09,s=0.88 COPOD!:w=0.13,s=0.32"} +{"timestamp":"2026-03-15T09:56:46.428069381Z","score":0.8514994793395109,"is_anomaly":false,"confidence":0.9902894039947387,"method":"SEAD","details":"MAD!:w=0.50,s=0.77 RRCF-fast!:w=0.15,s=0.98 RRCF-mid!:w=0.14,s=1.00 RRCF-slow!:w=0.09,s=1.00 COPOD!:w=0.13,s=0.75"} +{"timestamp":"2026-03-15T09:57:02.280427916Z","score":0.6294160674946863,"is_anomaly":false,"confidence":0.7320075672007552,"method":"SEAD","details":"MAD!:w=0.50,s=0.52 RRCF-fast:w=0.15,s=0.72 RRCF-mid:w=0.14,s=0.83 RRCF-slow:w=0.09,s=0.89 COPOD!:w=0.13,s=0.54"} +{"timestamp":"2026-03-15T09:57:32.234334744Z","score":0.5185131999939273,"is_anomaly":false,"confidence":0.6030281171559665,"method":"SEAD","details":"MAD!:w=0.50,s=0.47 RRCF-fast:w=0.15,s=0.32 RRCF-mid:w=0.13,s=0.79 RRCF-slow:w=0.09,s=0.86 COPOD!:w=0.13,s=0.38"} +{"timestamp":"2026-03-15T09:58:26.432601814Z","score":0.8675499410465701,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.50,s=0.81 RRCF-fast!:w=0.15,s=0.96 RRCF-mid!:w=0.13,s=0.98 RRCF-slow!:w=0.09,s=0.99 COPOD!:w=0.13,s=0.80"} +{"timestamp":"2026-03-15T09:58:32.294379187Z","score":0.9233119452911269,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.50,s=0.91 RRCF-fast:w=0.15,s=0.87 RRCF-mid!:w=0.13,s=0.95 RRCF-slow!:w=0.09,s=0.97 COPOD!:w=0.13,s=0.97"} +{"timestamp":"2026-03-15T09:59:02.280441049Z","score":0.7278672314298614,"is_anomaly":false,"confidence":0.8452822508510217,"method":"SEAD","details":"MAD!:w=0.50,s=0.78 RRCF-fast:w=0.15,s=0.41 RRCF-mid:w=0.13,s=0.80 RRCF-slow:w=0.09,s=0.81 COPOD!:w=0.13,s=0.77"} +{"timestamp":"2026-03-15T09:59:55.067092453Z","score":0.8422447320012034,"is_anomaly":false,"confidence":0.9781104191692082,"method":"SEAD","details":"MAD!:w=0.50,s=0.81 RRCF-fast!:w=0.15,s=0.89 RRCF-mid!:w=0.13,s=0.95 RRCF-slow!:w=0.09,s=0.97 COPOD!:w=0.13,s=0.71"} +{"timestamp":"2026-03-15T10:00:02.284751045Z","score":0.8886055885550923,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.50,s=0.89 RRCF-fast:w=0.15,s=0.80 RRCF-mid:w=0.13,s=0.94 RRCF-slow!:w=0.09,s=0.93 COPOD!:w=0.13,s=0.91"} +{"timestamp":"2026-03-15T10:00:32.285590708Z","score":0.6232335274668357,"is_anomaly":false,"confidence":0.7224832077969954,"method":"SEAD","details":"MAD!:w=0.50,s=0.68 RRCF-fast:w=0.15,s=0.46 RRCF-mid:w=0.13,s=0.75 RRCF-slow:w=0.09,s=0.86 COPOD!:w=0.13,s=0.29"} +{"timestamp":"2026-03-15T10:01:30.361684456Z","score":0.8342366872075689,"is_anomaly":false,"confidence":0.9670885330663407,"method":"SEAD","details":"MAD!:w=0.50,s=0.79 RRCF-fast!:w=0.15,s=0.93 RRCF-mid!:w=0.13,s=0.97 RRCF-slow!:w=0.09,s=0.98 COPOD!:w=0.13,s=0.65"} +{"timestamp":"2026-03-15T10:01:32.283918774Z","score":0.8745939307980756,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.50,s=0.87 RRCF-fast:w=0.15,s=0.76 RRCF-mid:w=0.13,s=0.94 RRCF-slow!:w=0.09,s=0.95 COPOD!:w=0.13,s=0.90"} +{"timestamp":"2026-03-15T10:02:02.28290975Z","score":0.5834174013853598,"is_anomaly":false,"confidence":0.6750082754347991,"method":"SEAD","details":"MAD!:w=0.50,s=0.66 RRCF-fast:w=0.15,s=0.25 RRCF-mid:w=0.13,s=0.73 RRCF-slow:w=0.09,s=0.85 COPOD!:w=0.13,s=0.35"} +{"timestamp":"2026-03-15T10:02:32.228345619Z","score":0.33459072376582294,"is_anomaly":false,"confidence":0.3878741575216582,"method":"SEAD","details":"MAD!:w=0.50,s=0.24 RRCF-fast:w=0.15,s=0.18 RRCF-mid:w=0.13,s=0.72 RRCF-slow:w=0.09,s=0.84 COPOD!:w=0.13,s=0.10"} +{"timestamp":"2026-03-15T10:03:02.274918957Z","score":0.3939455364536574,"is_anomaly":false,"confidence":0.4566811994714005,"method":"SEAD","details":"MAD!:w=0.50,s=0.28 RRCF-fast:w=0.15,s=0.41 RRCF-mid:w=0.13,s=0.60 RRCF-slow:w=0.09,s=0.79 COPOD!:w=0.13,s=0.33"} +{"timestamp":"2026-03-15T10:03:32.225846654Z","score":0.5112418240724065,"is_anomaly":false,"confidence":0.5926568721633393,"method":"SEAD","details":"MAD!:w=0.50,s=0.46 RRCF-fast:w=0.15,s=0.31 RRCF-mid:w=0.13,s=0.58 RRCF-slow:w=0.09,s=0.79 COPOD!:w=0.13,s=0.65"} +{"timestamp":"2026-03-15T10:04:02.290364663Z","score":0.9171238446691927,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.50,s=0.90 RRCF-fast!:w=0.15,s=0.91 RRCF-mid:w=0.13,s=0.94 RRCF-slow!:w=0.09,s=0.96 COPOD!:w=0.13,s=0.93"} +{"timestamp":"2026-03-15T10:04:32.280195544Z","score":0.6727448000498878,"is_anomaly":false,"confidence":0.7783592093946735,"method":"SEAD","details":"MAD!:w=0.50,s=0.74 RRCF-fast!:w=0.15,s=0.94 RRCF-mid:w=0.13,s=0.58 RRCF-slow:w=0.09,s=0.71 COPOD!:w=0.13,s=0.15"} +{"timestamp":"2026-03-15T10:05:02.23768162Z","score":0.33750938842225914,"is_anomaly":false,"confidence":0.3904950892465441,"method":"SEAD","details":"MAD!:w=0.50,s=0.17 RRCF-fast:w=0.15,s=0.67 RRCF-mid:w=0.13,s=0.63 RRCF-slow:w=0.09,s=0.79 COPOD!:w=0.13,s=0.00"} +{"timestamp":"2026-03-15T10:05:32.282655506Z","score":0.4416929524520455,"is_anomaly":false,"confidence":0.5120323716311311,"method":"SEAD","details":"MAD!:w=0.50,s=0.44 RRCF-fast:w=0.15,s=0.48 RRCF-mid:w=0.13,s=0.55 RRCF-slow:w=0.09,s=0.80 COPOD!:w=0.13,s=0.03"} +{"timestamp":"2026-03-15T10:06:02.230577024Z","score":0.2998406738015609,"is_anomaly":false,"confidence":0.3475901765373042,"method":"SEAD","details":"MAD!:w=0.50,s=0.17 RRCF-fast:w=0.15,s=0.33 RRCF-mid:w=0.13,s=0.59 RRCF-slow:w=0.09,s=0.79 COPOD!:w=0.13,s=0.14"} +{"timestamp":"2026-03-15T10:06:32.286504117Z","score":0.3104065849177254,"is_anomaly":false,"confidence":0.35983870460916834,"method":"SEAD","details":"MAD!:w=0.50,s=0.19 RRCF-fast:w=0.15,s=0.40 RRCF-mid:w=0.13,s=0.58 RRCF-slow:w=0.09,s=0.74 COPOD!:w=0.13,s=0.11"} +{"timestamp":"2026-03-15T10:07:02.250599885Z","score":0.28083108545174784,"is_anomaly":false,"confidence":0.3255533191402121,"method":"SEAD","details":"MAD!:w=0.51,s=0.16 RRCF-fast:w=0.15,s=0.25 RRCF-mid:w=0.13,s=0.60 RRCF-slow:w=0.09,s=0.73 COPOD!:w=0.13,s=0.17"} +{"timestamp":"2026-03-15T10:07:32.288928522Z","score":0.8679110169753432,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.51,s=0.87 RRCF-fast:w=0.15,s=0.78 RRCF-mid:w=0.13,s=0.93 RRCF-slow:w=0.09,s=0.94 COPOD!:w=0.13,s=0.87"} +{"timestamp":"2026-03-15T10:08:02.281756424Z","score":0.540197024854008,"is_anomaly":false,"confidence":0.6250027189382072,"method":"SEAD","details":"MAD!:w=0.51,s=0.68 RRCF-fast:w=0.15,s=0.12 RRCF-mid:w=0.13,s=0.50 RRCF-slow:w=0.09,s=0.65 COPOD!:w=0.13,s=0.43"} +{"timestamp":"2026-03-15T10:08:32.236407202Z","score":0.4181183527632339,"is_anomaly":false,"confidence":0.48375887924523575,"method":"SEAD","details":"MAD!:w=0.50,s=0.29 RRCF-fast:w=0.15,s=0.52 RRCF-mid:w=0.13,s=0.56 RRCF-slow:w=0.09,s=0.68 COPOD!:w=0.13,s=0.47"} +{"timestamp":"2026-03-15T10:09:02.286205079Z","score":0.4491886277895477,"is_anomaly":false,"confidence":0.5207217301520936,"method":"SEAD","details":"MAD!:w=0.51,s=0.44 RRCF-fast:w=0.15,s=0.33 RRCF-mid:w=0.13,s=0.61 RRCF-slow:w=0.09,s=0.77 COPOD!:w=0.13,s=0.25"} +{"timestamp":"2026-03-15T10:09:32.233738317Z","score":0.29890711659439784,"is_anomaly":false,"confidence":0.3465079507327416,"method":"SEAD","details":"MAD:w=0.51,s=0.08 RRCF-fast:w=0.15,s=0.51 RRCF-mid:w=0.13,s=0.59 RRCF-slow:w=0.09,s=0.71 COPOD!:w=0.13,s=0.33"} +{"timestamp":"2026-03-15T10:10:02.307689857Z","score":0.8927338511239887,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.51,s=0.93 RRCF-fast:w=0.15,s=0.81 RRCF-mid:w=0.13,s=0.84 RRCF-slow:w=0.09,s=0.89 COPOD!:w=0.13,s=0.89"} +{"timestamp":"2026-03-15T10:10:32.280014807Z","score":0.5938839557780371,"is_anomaly":false,"confidence":0.6871179773627316,"method":"SEAD","details":"MAD!:w=0.51,s=0.64 RRCF-fast:w=0.15,s=0.58 RRCF-mid:w=0.13,s=0.63 RRCF-slow:w=0.09,s=0.70 COPOD!:w=0.13,s=0.34"} +{"timestamp":"2026-03-15T10:11:02.241874198Z","score":0.20465244985067535,"is_anomaly":false,"confidence":0.23678089976264738,"method":"SEAD","details":"MAD:w=0.51,s=0.04 RRCF-fast:w=0.15,s=0.40 RRCF-mid:w=0.13,s=0.48 RRCF-slow:w=0.09,s=0.68 COPOD!:w=0.13,s=0.04"} +{"timestamp":"2026-03-15T10:11:32.284346668Z","score":0.3220580025468053,"is_anomaly":false,"confidence":0.37261798563581616,"method":"SEAD","details":"MAD!:w=0.51,s=0.30 RRCF-fast:w=0.15,s=0.18 RRCF-mid:w=0.13,s=0.48 RRCF-slow:w=0.09,s=0.58 COPOD!:w=0.13,s=0.26"} +{"timestamp":"2026-03-15T10:12:02.328832527Z","score":0.8143802755363332,"is_anomaly":false,"confidence":0.9422300809550233,"method":"SEAD","details":"MAD!:w=0.51,s=0.90 RRCF-fast:w=0.15,s=0.80 RRCF-mid:w=0.13,s=0.83 RRCF-slow:w=0.09,s=0.90 COPOD!:w=0.13,s=0.43"} +{"timestamp":"2026-03-15T10:12:32.268557294Z","score":0.8359138563893993,"is_anomaly":false,"confidence":0.9690327907436068,"method":"SEAD","details":"MAD!:w=0.51,s=0.86 RRCF-fast:w=0.15,s=0.79 RRCF-mid:w=0.13,s=0.73 RRCF-slow:w=0.09,s=0.89 COPOD!:w=0.13,s=0.87"} +{"timestamp":"2026-03-15T10:13:02.237870834Z","score":0.6695000864132706,"is_anomaly":false,"confidence":0.7761176970344632,"method":"SEAD","details":"MAD!:w=0.51,s=0.72 RRCF-fast:w=0.15,s=0.62 RRCF-mid:w=0.13,s=0.51 RRCF-slow:w=0.09,s=0.70 COPOD!:w=0.13,s=0.68"} +{"timestamp":"2026-03-15T10:13:32.269378387Z","score":0.8158137683765332,"is_anomaly":false,"confidence":0.9457317720651626,"method":"SEAD","details":"MAD!:w=0.51,s=0.84 RRCF-fast:w=0.15,s=0.80 RRCF-mid:w=0.13,s=0.85 RRCF-slow:w=0.09,s=0.87 COPOD!:w=0.13,s=0.67"} +{"timestamp":"2026-03-15T10:14:02.309260608Z","score":0.4675108346565345,"is_anomaly":false,"confidence":0.5419617408507882,"method":"SEAD","details":"MAD!:w=0.51,s=0.50 RRCF-fast:w=0.15,s=0.38 RRCF-mid:w=0.13,s=0.46 RRCF-slow:w=0.09,s=0.66 COPOD!:w=0.13,s=0.32"} +{"timestamp":"2026-03-15T10:14:32.239820323Z","score":0.3031342032212295,"is_anomaly":false,"confidence":0.3514081991487764,"method":"SEAD","details":"MAD!:w=0.51,s=0.25 RRCF-fast:w=0.15,s=0.47 RRCF-mid:w=0.13,s=0.41 RRCF-slow:w=0.09,s=0.63 COPOD!:w=0.13,s=0.02"} +{"timestamp":"2026-03-15T10:15:02.32040512Z","score":0.8891210560744928,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.51,s=0.96 RRCF-fast:w=0.15,s=0.74 RRCF-mid:w=0.13,s=0.80 RRCF-slow:w=0.09,s=0.88 COPOD!:w=0.13,s=0.87"} +{"timestamp":"2026-03-15T10:15:32.306861369Z","score":0.5264294847915305,"is_anomaly":false,"confidence":0.6102631615423538,"method":"SEAD","details":"MAD!:w=0.51,s=0.57 RRCF-fast:w=0.15,s=0.47 RRCF-mid:w=0.13,s=0.42 RRCF-slow:w=0.09,s=0.65 COPOD!:w=0.13,s=0.46"} +{"timestamp":"2026-03-15T10:16:02.236925367Z","score":0.4387819537268878,"is_anomaly":false,"confidence":0.5086577975683504,"method":"SEAD","details":"MAD!:w=0.51,s=0.49 RRCF-fast:w=0.15,s=0.54 RRCF-mid:w=0.13,s=0.44 RRCF-slow:w=0.09,s=0.56 COPOD!:w=0.13,s=0.05"} +{"timestamp":"2026-03-15T10:16:32.304242938Z","score":0.7565277139850003,"is_anomaly":false,"confidence":0.8770044381418426,"method":"SEAD","details":"MAD!:w=0.51,s=0.85 RRCF-fast:w=0.15,s=0.72 RRCF-mid:w=0.13,s=0.72 RRCF-slow:w=0.09,s=0.83 COPOD!:w=0.13,s=0.43"} +{"timestamp":"2026-03-15T10:17:02.264715959Z","score":0.43442565159865226,"is_anomaly":false,"confidence":0.5036077561359952,"method":"SEAD","details":"MAD!:w=0.50,s=0.49 RRCF-fast:w=0.15,s=0.51 RRCF-mid:w=0.13,s=0.42 RRCF-slow:w=0.09,s=0.62 COPOD!:w=0.13,s=0.04"} +{"timestamp":"2026-03-15T10:17:32.26898368Z","score":0.8583984264608179,"is_anomaly":false,"confidence":0.9950980192578082,"method":"SEAD","details":"MAD!:w=0.50,s=0.88 RRCF-fast:w=0.15,s=0.83 RRCF-mid:w=0.13,s=0.79 RRCF-slow:w=0.09,s=0.85 COPOD!:w=0.13,s=0.89"} +{"timestamp":"2026-03-15T10:18:02.387146518Z","score":0.8688004322361966,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.50,s=0.96 RRCF-fast:w=0.15,s=0.83 RRCF-mid:w=0.13,s=0.75 RRCF-slow:w=0.09,s=0.84 COPOD!:w=0.13,s=0.71"} +{"timestamp":"2026-03-15T10:18:32.264342646Z","score":0.5227100707283957,"is_anomaly":false,"confidence":0.6047704826029384,"method":"SEAD","details":"MAD!:w=0.50,s=0.49 RRCF-fast:w=0.15,s=0.53 RRCF-mid:w=0.13,s=0.48 RRCF-slow:w=0.09,s=0.58 COPOD!:w=0.14,s=0.64"} +{"timestamp":"2026-03-15T10:19:02.28589677Z","score":0.24621803234014397,"is_anomaly":false,"confidence":0.28542815170038743,"method":"SEAD","details":"MAD!:w=0.50,s=0.15 RRCF-fast:w=0.15,s=0.42 RRCF-mid:w=0.13,s=0.47 RRCF-slow:w=0.09,s=0.54 COPOD!:w=0.14,s=0.02"} +{"timestamp":"2026-03-15T10:19:32.244340427Z","score":0.779522217066089,"is_anomaly":false,"confidence":0.9036608062856551,"method":"SEAD","details":"MAD!:w=0.50,s=0.84 RRCF-fast:w=0.15,s=0.72 RRCF-mid:w=0.13,s=0.69 RRCF-slow:w=0.09,s=0.76 COPOD!:w=0.14,s=0.74"} +{"timestamp":"2026-03-15T10:20:02.317543248Z","score":0.7732845241986417,"is_anomaly":false,"confidence":0.896429763420482,"method":"SEAD","details":"MAD!:w=0.50,s=0.82 RRCF-fast:w=0.15,s=0.70 RRCF-mid:w=0.13,s=0.65 RRCF-slow:w=0.09,s=0.68 COPOD!:w=0.14,s=0.85"} +{"timestamp":"2026-03-15T10:20:32.285709697Z","score":0.5432123733259293,"is_anomaly":false,"confidence":0.6297187181034971,"method":"SEAD","details":"MAD!:w=0.50,s=0.59 RRCF-fast:w=0.15,s=0.58 RRCF-mid:w=0.13,s=0.39 RRCF-slow:w=0.09,s=0.58 COPOD!:w=0.14,s=0.46"} +{"timestamp":"2026-03-15T10:21:02.294368168Z","score":0.7515428793585257,"is_anomaly":false,"confidence":0.871225770672024,"method":"SEAD","details":"MAD!:w=0.50,s=0.87 RRCF-fast:w=0.15,s=0.60 RRCF-mid:w=0.13,s=0.69 RRCF-slow:w=0.09,s=0.73 COPOD!:w=0.14,s=0.57"} +{"timestamp":"2026-03-15T10:21:32.283236308Z","score":0.48399282022535767,"is_anomaly":false,"confidence":0.5610684757740964,"method":"SEAD","details":"MAD!:w=0.50,s=0.49 RRCF-fast:w=0.15,s=0.40 RRCF-mid:w=0.13,s=0.30 RRCF-slow:w=0.09,s=0.56 COPOD!:w=0.14,s=0.68"} +{"timestamp":"2026-03-15T10:22:02.278485588Z","score":0.20936917705485125,"is_anomaly":false,"confidence":0.2427111315195657,"method":"SEAD","details":"MAD:w=0.50,s=0.05 RRCF-fast:w=0.15,s=0.42 RRCF-mid:w=0.13,s=0.31 RRCF-slow:w=0.09,s=0.52 COPOD!:w=0.14,s=0.27"} +{"timestamp":"2026-03-15T10:22:32.271768014Z","score":0.45533691424927486,"is_anomaly":false,"confidence":0.5287890361764064,"method":"SEAD","details":"MAD!:w=0.50,s=0.45 RRCF-fast:w=0.15,s=0.36 RRCF-mid:w=0.13,s=0.36 RRCF-slow:w=0.09,s=0.50 COPOD!:w=0.14,s=0.64"} +{"timestamp":"2026-03-15T10:23:02.236151711Z","score":0.3584440793581676,"is_anomaly":false,"confidence":0.41626605117102383,"method":"SEAD","details":"MAD!:w=0.50,s=0.28 RRCF-fast:w=0.15,s=0.38 RRCF-mid:w=0.13,s=0.27 RRCF-slow:w=0.09,s=0.52 COPOD!:w=0.14,s=0.61"} +{"timestamp":"2026-03-15T10:23:32.244318872Z","score":0.4777812710670938,"is_anomaly":false,"confidence":0.5548539771857718,"method":"SEAD","details":"MAD!:w=0.50,s=0.47 RRCF-fast:w=0.15,s=0.51 RRCF-mid:w=0.13,s=0.43 RRCF-slow:w=0.09,s=0.57 COPOD!:w=0.13,s=0.46"} +{"timestamp":"2026-03-15T10:24:02.283286483Z","score":0.31123220202672636,"is_anomaly":false,"confidence":0.36143824712326256,"method":"SEAD","details":"MAD!:w=0.50,s=0.24 RRCF-fast:w=0.15,s=0.38 RRCF-mid:w=0.13,s=0.25 RRCF-slow:w=0.09,s=0.50 COPOD!:w=0.13,s=0.43"} +{"timestamp":"2026-03-15T10:24:32.23528146Z","score":0.2109910796263306,"is_anomaly":false,"confidence":0.24502684967102784,"method":"SEAD","details":"MAD!:w=0.50,s=0.18 RRCF-fast:w=0.15,s=0.14 RRCF-mid:w=0.13,s=0.26 RRCF-slow:w=0.09,s=0.46 COPOD!:w=0.13,s=0.20"} +{"timestamp":"2026-03-15T10:25:02.284027503Z","score":0.26023378420620374,"is_anomaly":false,"confidence":0.3022130814010903,"method":"SEAD","details":"MAD!:w=0.50,s=0.26 RRCF-fast:w=0.15,s=0.11 RRCF-mid:w=0.13,s=0.35 RRCF-slow:w=0.09,s=0.39 COPOD!:w=0.13,s=0.27"} +{"timestamp":"2026-03-15T10:25:32.235071397Z","score":0.2085916520813417,"is_anomaly":false,"confidence":0.242590991339347,"method":"SEAD","details":"MAD!:w=0.50,s=0.18 RRCF-fast:w=0.15,s=0.18 RRCF-mid:w=0.13,s=0.32 RRCF-slow:w=0.09,s=0.38 COPOD!:w=0.13,s=0.13"} +{"timestamp":"2026-03-15T10:26:02.300243905Z","score":0.9313575383242431,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.50,s=0.94 RRCF-fast!:w=0.15,s=0.96 RRCF-mid:w=0.13,s=0.88 RRCF-slow:w=0.09,s=0.88 COPOD!:w=0.13,s=0.95"} +{"timestamp":"2026-03-15T10:26:32.277120947Z","score":0.6569058858874641,"is_anomaly":false,"confidence":0.7628738619396784,"method":"SEAD","details":"MAD!:w=0.50,s=0.75 RRCF-fast!:w=0.15,s=0.97 RRCF-mid:w=0.13,s=0.03 RRCF-slow:w=0.09,s=0.42 COPOD!:w=0.13,s=0.71"} +{"timestamp":"2026-03-15T10:27:02.24143851Z","score":0.35959204800317024,"is_anomaly":false,"confidence":0.4175992029853293,"method":"SEAD","details":"MAD!:w=0.50,s=0.12 RRCF-fast:w=0.15,s=0.69 RRCF-mid:w=0.13,s=0.53 RRCF-slow:w=0.09,s=0.46 COPOD!:w=0.13,s=0.65"} +{"timestamp":"2026-03-15T10:27:32.284702265Z","score":0.3473714520148782,"is_anomaly":false,"confidence":0.4034072563806828,"method":"SEAD","details":"MAD!:w=0.50,s=0.12 RRCF-fast:w=0.15,s=0.61 RRCF-mid:w=0.13,s=0.44 RRCF-slow:w=0.09,s=0.47 COPOD!:w=0.13,s=0.75"} +{"timestamp":"2026-03-15T10:28:02.238476842Z","score":0.3601324221567832,"is_anomaly":false,"confidence":0.4182267469399739,"method":"SEAD","details":"MAD!:w=0.51,s=0.25 RRCF-fast:w=0.15,s=0.49 RRCF-mid:w=0.13,s=0.35 RRCF-slow:w=0.08,s=0.53 COPOD!:w=0.13,s=0.55"} +{"timestamp":"2026-03-15T10:28:32.285266771Z","score":0.41957340679367117,"is_anomaly":false,"confidence":0.4872563819023376,"method":"SEAD","details":"MAD!:w=0.51,s=0.30 RRCF-fast:w=0.15,s=0.58 RRCF-mid:w=0.13,s=0.36 RRCF-slow:w=0.08,s=0.38 COPOD!:w=0.13,s=0.79"} +{"timestamp":"2026-03-15T10:29:02.243056945Z","score":0.3093230647446832,"is_anomaly":false,"confidence":0.3597410930485164,"method":"SEAD","details":"MAD:w=0.51,s=0.09 RRCF-fast:w=0.14,s=0.46 RRCF-mid:w=0.13,s=0.46 RRCF-slow:w=0.08,s=0.40 COPOD!:w=0.13,s=0.80"} +{"timestamp":"2026-03-15T10:29:32.295173356Z","score":0.831250704912226,"is_anomaly":false,"confidence":0.9667401861199681,"method":"SEAD","details":"MAD!:w=0.52,s=0.86 RRCF-fast:w=0.14,s=0.71 RRCF-mid:w=0.13,s=0.81 RRCF-slow:w=0.08,s=0.72 COPOD!:w=0.13,s=0.94"} +{"timestamp":"2026-03-15T10:30:02.280178286Z","score":0.6157216061263984,"is_anomaly":false,"confidence":0.7160809808487,"method":"SEAD","details":"MAD!:w=0.51,s=0.76 RRCF-fast:w=0.14,s=0.60 RRCF-mid:w=0.13,s=0.36 RRCF-slow:w=0.08,s=0.54 COPOD!:w=0.13,s=0.36"} +{"timestamp":"2026-03-15T10:30:32.239169966Z","score":0.2964785557105474,"is_anomaly":false,"confidence":0.344802996778762,"method":"SEAD","details":"MAD!:w=0.51,s=0.17 RRCF-fast:w=0.14,s=0.42 RRCF-mid:w=0.13,s=0.49 RRCF-slow:w=0.08,s=0.37 COPOD!:w=0.13,s=0.42"} +{"timestamp":"2026-03-15T10:31:02.28588099Z","score":0.2697892066360366,"is_anomaly":false,"confidence":0.31376342455435374,"method":"SEAD","details":"MAD!:w=0.51,s=0.19 RRCF-fast:w=0.14,s=0.40 RRCF-mid:w=0.13,s=0.51 RRCF-slow:w=0.08,s=0.33 COPOD!:w=0.13,s=0.16"} +{"timestamp":"2026-03-15T10:31:32.240208651Z","score":0.32132778168188375,"is_anomaly":false,"confidence":0.3737025155382721,"method":"SEAD","details":"MAD!:w=0.52,s=0.30 RRCF-fast:w=0.14,s=0.39 RRCF-mid:w=0.13,s=0.43 RRCF-slow:w=0.08,s=0.31 COPOD!:w=0.13,s=0.23"} diff --git a/evaluation/data/pipeline_high-iops_run2/baseline_metrics.csv b/evaluation/data/pipeline_high-iops_run2/baseline_metrics.csv new file mode 100644 index 0000000..e293a99 --- /dev/null +++ b/evaluation/data/pipeline_high-iops_run2/baseline_metrics.csv @@ -0,0 +1,3248 @@ +timestamp,cpu_percent,cpu_count,cpu_freq_current,memory_percent,memory_available_mb,memory_used_mb,swap_percent,disk_io_read_mb_s,disk_io_write_mb_s,disk_io_read_count,disk_io_write_count,network_sent_mb_s,network_recv_mb_s,network_packets_sent,network_packets_recv,network_errin,network_errout,network_dropin,network_dropout,tixstream_active,transfer_job_manager_active +1773554477.525647,0.85,4,3992.50,50.71,1655.80,1985.23,0.00,8130.008089,8883.802333,588718,1058625,0.000000,0.000020,6283507,5530165,0,0,20499,0,1,1 +1773554482.521713,0.50,4,3992.50,50.72,1655.32,1985.71,0.00,3521207633375.655762,3521207632619.308594,11,0,0.000000,0.000030,6283507,5530168,0,0,20502,0,1,1 +1773554487.526508,0.55,4,3992.50,50.76,1653.84,1987.19,0.00,0.000000,0.000000,11,0,0.000000,0.000020,6283507,5530170,0,0,20504,0,1,1 +1773554492.521704,0.75,4,3992.50,51.14,1638.88,2002.14,0.00,0.050048,0.000000,70,0,0.000000,0.000020,6283507,5530172,0,0,20506,0,1,1 +1773554497.526223,0.60,4,3992.50,51.16,1638.15,2002.88,0.00,3515259600513.045410,0.000000,11,0,0.000000,0.000030,6283507,5530175,0,0,20509,0,1,1 +1773554502.522481,0.50,4,3992.50,51.17,1637.66,2003.38,0.00,0.177086,0.000000,199,0,0.000000,0.000030,6283507,5530178,0,0,20512,0,1,1 +1773554507.528543,47.54,4,3992.50,54.34,1513.56,2127.39,0.00,3514176123440.789062,0.000000,11,0,24.127372,0.110726,6291273,5535891,0,0,20514,0,1,1 +1773554512.522226,17.31,4,3992.50,53.58,1543.18,2097.68,0.00,0.000000,0.000000,11,0,16.121251,0.070856,6296525,5539781,0,0,20517,0,1,1 +1773554517.521742,0.75,4,3992.50,53.14,1560.36,2080.51,0.00,0.176970,0.000000,199,0,0.001589,0.000786,6296555,5539801,0,0,20519,0,1,1 +1773554522.521804,0.95,4,3992.50,53.36,1555.88,2089.20,0.00,3518393547026.511719,0.000000,70,0,0.001589,0.000786,6296585,5539821,0,0,20521,0,1,1 +1773554527.521810,0.75,4,3992.50,53.38,1555.16,2089.91,0.00,1.445018,0.022070,225,104,0.001589,0.000796,6296615,5539842,0,0,20524,0,1,1 +1773554532.521713,0.80,4,3992.50,53.40,1554.44,2090.64,0.00,3518505843671.496582,3518505843672.969727,11,0,0.001589,0.000786,6296645,5539862,0,0,20526,0,1,1 +1773554537.526579,1.70,4,3992.50,53.66,1544.04,2101.03,0.00,0.049951,0.000000,70,0,0.001588,0.001439,6296675,5539887,0,0,20529,0,1,1 +1773554542.521699,0.65,4,3992.50,53.70,1542.46,2102.61,0.00,8163.109669,8916.934891,589480,1060153,0.001591,0.000797,6296705,5539908,0,0,20532,0,1,1 +1773554547.526438,0.60,4,3992.50,53.71,1542.22,2102.85,0.00,3515105201576.002930,3515105200822.205078,225,104,0.002659,0.001194,6296758,5539942,0,0,20534,0,1,1 +1773554552.523415,0.95,4,3992.50,53.85,1537.87,2108.21,0.00,0.514080,3520566532719.877441,238,2,0.004028,0.003249,6296815,5539980,0,0,20537,0,1,1 +1773554557.525925,0.65,4,3992.50,53.85,1537.48,2108.45,0.00,8149.092212,8903.858414,589480,1060233,0.001568,0.000766,6296852,5540008,0,0,20539,0,1,1 +1773554562.526540,0.60,4,3992.50,53.86,1537.25,2108.67,0.00,0.000000,0.048822,589480,1060286,0.001589,0.000783,6296882,5540028,0,0,20542,0,1,1 +1773554567.521946,0.50,4,3992.50,53.86,1537.02,2108.90,0.00,3521672661417.555664,3521672660663.677734,11,0,0.001591,0.000787,6296912,5540048,0,0,20544,0,1,1 +1773554572.526588,4.91,4,3992.50,53.65,1545.55,2100.40,0.00,0.000000,0.000000,11,0,2.016497,0.012154,6297634,5540539,0,0,20546,0,1,1 +1773554577.523223,26.53,4,3992.50,54.23,1522.79,2123.20,0.00,8160.683806,8914.918124,589480,1061147,30.199243,0.129704,6307232,5547680,0,0,20549,0,1,1 +1773554582.521763,8.79,4,3992.50,54.40,1516.90,2129.73,0.00,0.000000,0.453062,589480,1061408,8.061064,0.039113,6309857,5549578,0,0,20552,0,1,1 +1773554587.525924,0.50,4,3992.50,53.95,1534.48,2112.15,0.00,0.000000,0.021369,589480,1061439,0.001588,0.000773,6309887,5549597,0,0,20554,0,1,1 +1773554592.525925,1.75,4,3992.50,53.91,1535.94,2110.70,0.00,3518436615260.205566,3518436614505.954590,70,0,0.001614,0.000827,6309919,5549620,0,0,20557,0,1,1 +1773554597.521843,0.60,4,3992.50,53.91,1536.10,2110.54,0.00,0.127057,0.000000,199,0,0.001616,0.000818,6309951,5549642,0,0,20559,0,1,1 +1773554602.526686,0.60,4,3992.50,53.92,1535.56,2111.07,0.00,3515032450031.014160,0.000000,11,0,0.001588,0.001439,6309981,5549667,0,0,20562,0,1,1 +1773554607.521788,0.55,4,3992.50,53.92,1535.46,2111.18,0.00,0.000000,0.000000,11,0,0.000971,0.000549,6309999,5549680,0,0,20564,0,1,1 +1773554612.525920,0.80,4,3992.50,54.11,1528.10,2118.52,0.00,1.493785,0.022052,225,104,0.001412,0.000640,6310026,5549698,0,0,20566,0,1,1 +1773554617.523937,0.85,4,3992.50,54.07,1529.61,2117.02,0.00,0.000000,0.000000,225,104,0.001598,0.000804,6310057,5549720,0,0,20569,0,1,1 +1773554622.526110,0.60,4,3992.50,54.07,1529.62,2117.01,0.00,3516908674559.346680,3516908674560.642090,199,0,0.001589,0.000796,6310087,5549741,0,0,20572,0,1,1 +1773554627.526486,0.70,4,3992.50,54.07,1529.63,2117.00,0.00,3518172524802.245605,0.000000,70,0,0.001745,0.000912,6310127,5549771,0,0,20574,0,1,1 +1773554632.525225,0.55,4,3992.50,54.07,1529.63,2116.99,0.00,8157.199642,8912.181190,589480,1061976,0.001590,0.000796,6310157,5549792,0,0,20577,0,1,1 +1773554637.523073,0.50,4,3992.50,54.07,1529.65,2116.97,0.00,0.000000,0.008207,589480,1061986,0.001590,0.000787,6310187,5549812,0,0,20579,0,1,1 +1773554642.525580,6.82,4,3992.50,54.51,1520.18,2134.37,0.00,3516673809659.579102,3516673808905.208008,11,0,4.034175,0.023745,6311656,5550865,0,0,20582,0,1,1 +1773554647.521743,24.95,4,3992.50,55.56,1479.13,2175.27,0.00,1.496168,0.022087,225,104,36.247381,0.159081,6323434,5559544,0,0,20584,0,1,1 +1773554652.521790,1.25,4,3992.50,55.14,1495.38,2159.02,0.00,3518404114068.977051,3518404114070.400391,70,0,0.006552,0.003440,6323556,5559631,0,0,20586,0,1,1 +1773554657.526623,0.65,4,3992.50,54.65,1514.82,2139.60,0.00,0.126831,0.000000,199,0,0.001596,0.000803,6323587,5559653,0,0,20589,0,1,1 +1773554662.521714,0.70,4,3992.50,54.49,1521.08,2133.34,0.00,0.000000,0.000000,199,0,0.001591,0.000797,6323617,5559674,0,0,20592,0,1,1 +1773554667.521704,0.65,4,3992.50,54.30,1528.28,2126.13,0.00,8155.033256,8910.831444,589481,1063266,0.001589,0.001430,6323647,5559698,0,0,20594,0,1,1 +1773554672.521806,1.50,4,3992.50,54.53,1520.00,2134.88,0.00,3518365512625.350098,3518365511867.737305,238,2,0.001577,0.000796,6323676,5559719,0,0,20597,0,1,1 +1773554677.525577,0.65,4,3992.50,54.50,1520.92,2133.95,0.00,8147.039440,8904.685197,589481,1063582,0.001053,0.000575,6323700,5559734,0,0,20599,0,1,1 +1773554682.521716,0.55,4,3992.50,54.50,1520.94,2133.93,0.00,3521156028961.133789,3521156028204.340820,11,0,0.001520,0.000770,6323725,5559753,0,0,20602,0,1,1 +1773554687.526216,0.55,4,3992.50,54.51,1520.70,2134.18,0.00,8147.860033,8903.453361,589481,1063662,0.001650,0.000836,6323759,5559777,0,0,20604,0,1,1 +1773554692.524300,0.55,4,3992.50,54.50,1521.13,2133.74,0.00,3519786167929.805664,3519786167171.768555,225,104,0.001722,0.000895,6323798,5559806,0,0,20606,0,1,1 +1773554697.524610,0.55,4,3992.50,54.50,1521.14,2133.73,0.00,3518219052561.981445,3518219052563.454102,11,0,0.001620,0.000821,6323830,5559829,0,0,20609,0,1,1 +1773554702.526197,0.85,4,3992.50,54.62,1521.03,2138.59,0.00,0.049984,0.000000,70,0,0.001589,0.000783,6323860,5559849,0,0,20612,0,1,1 +1773554707.526042,0.70,4,3992.50,54.56,1523.55,2136.07,0.00,3518546292262.721680,0.000000,11,0,0.001589,0.000786,6323890,5559869,0,0,20614,0,1,1 +1773554712.525905,14.03,4,3992.50,54.99,1506.64,2152.97,0.00,0.176958,0.000000,199,0,14.092395,0.066424,6328617,5563425,0,0,20617,0,1,1 +1773554717.525561,18.24,4,3992.50,54.63,1520.62,2138.99,0.00,1.831962,0.000195,238,2,26.169593,0.118842,6337333,5569818,0,0,20619,0,1,1 +1773554722.521787,1.00,4,3992.50,54.58,1522.75,2136.87,0.00,3521094772061.836426,3521094772063.669922,199,0,0.002831,0.001982,6337390,5569865,0,0,20622,0,1,1 +1773554727.521813,0.60,4,3992.50,54.58,1522.76,2136.86,0.00,1.831826,0.000195,238,2,0.001589,0.000786,6337420,5569885,0,0,20624,0,1,1 +1773554732.521715,0.75,4,3992.50,54.65,1521.45,2139.66,0.00,8153.345243,8912.822559,589481,1065127,0.001589,0.001430,6337450,5569909,0,0,20626,0,1,1 +1773554737.526601,0.50,4,3992.50,54.61,1522.96,2138.16,0.00,3515001989285.374023,3515001988527.187988,225,104,0.001588,0.000795,6337480,5569930,0,0,20629,0,1,1 +1773554742.525754,0.65,4,3992.50,54.64,1521.98,2139.14,0.00,8155.080076,8914.543076,589481,1065379,0.001589,0.000796,6337510,5569951,0,0,20632,0,1,1 +1773554747.521882,0.60,4,3992.50,54.64,1521.79,2139.34,0.00,3521163552454.514160,3521163551696.065918,11,0,0.001590,0.000787,6337540,5569971,0,0,20634,0,1,1 +1773554752.525761,0.50,4,3992.50,54.45,1529.42,2131.70,0.00,0.049961,0.000000,70,0,0.001588,0.000796,6337570,5569992,0,0,20637,0,1,1 +1773554757.525263,0.65,4,3992.50,54.45,1529.44,2131.68,0.00,8155.955827,8914.071921,589481,1065499,0.001597,0.000794,6337601,5570013,0,0,20639,0,1,1 +1773554762.526467,0.75,4,3992.50,54.79,1520.71,2145.18,0.00,3517590084131.226074,3517590083373.368164,70,0,0.001713,0.000897,6337639,5570042,0,0,20642,0,1,1 +1773554767.526394,0.55,4,3992.50,54.79,1518.44,2145.14,0.00,1.445040,0.022071,225,104,0.001620,0.000811,6337671,5570064,0,0,20644,0,1,1 +1773554772.526060,0.60,4,3992.50,54.81,1517.71,2145.87,0.00,3518672684791.559082,3518672684792.855469,199,0,0.001589,0.000786,6337701,5570084,0,0,20646,0,1,1 +1773554777.524424,0.55,4,3992.50,54.81,1517.73,2145.86,0.00,1.318498,0.022078,225,104,0.001590,0.000796,6337731,5570105,0,0,20649,0,1,1 +1773554782.527538,18.45,4,3992.50,55.85,1476.88,2186.64,0.00,3516247590873.080078,3516247590874.375000,199,0,16.204843,0.081719,6343266,5574139,0,0,20652,0,1,1 +1773554787.525592,14.72,4,3992.50,55.95,1472.89,2190.49,0.00,3519806652313.664062,0.000000,11,0,24.056038,0.103036,6351093,5579946,0,0,20654,0,1,1 +1773554792.525718,0.90,4,3992.50,55.89,1475.39,2188.23,0.00,0.000000,0.000000,11,0,0.001589,0.000796,6351123,5579967,0,0,20657,0,1,1 +1773554797.526192,0.50,4,3992.50,55.43,1493.11,2170.32,0.00,1.494878,0.022068,225,104,0.001589,0.001269,6351153,5579990,0,0,20659,0,1,1 +1773554802.521744,0.60,4,3992.50,55.24,1500.75,2162.68,0.00,3521570187180.747070,3521570187182.171387,70,0,0.001591,0.000958,6351183,5580012,0,0,20662,0,1,1 +1773554807.525939,0.55,4,3992.50,55.25,1500.29,2163.12,0.00,1.443808,0.022052,225,104,0.001588,0.000773,6351213,5580031,0,0,20664,0,1,1 +1773554812.522757,0.60,4,3992.50,55.25,1500.30,2163.11,0.00,3520677664639.558594,3520677664641.032227,11,0,0.001414,0.000641,6351240,5580049,0,0,20666,0,1,1 +1773554817.526539,0.70,4,3992.50,55.25,1500.31,2163.10,0.00,0.000000,0.000000,11,0,0.001588,0.000796,6351270,5580070,0,0,20669,0,1,1 +1773554822.521831,0.80,4,3992.50,55.23,1493.61,2162.50,0.00,0.177120,0.000000,199,0,0.001599,0.000805,6351301,5580092,0,0,20672,0,1,1 +1773554827.526463,0.60,4,3992.50,55.24,1493.43,2162.71,0.00,8144.959033,8906.598589,589208,1067187,0.001588,0.000785,6351331,5580112,0,0,20674,0,1,1 +1773554832.525200,0.60,4,3992.50,55.24,1493.45,2162.70,0.00,4.064991,0.052162,589970,1067331,0.001745,0.000922,6351371,5580143,0,0,20677,0,1,1 +1773554837.526594,0.60,4,3992.50,55.24,1493.46,2162.69,0.00,3517456564086.513672,3517456563328.568848,11,0,0.001589,0.000786,6351401,5580163,0,0,20679,0,1,1 +1773554842.526598,0.70,4,3992.50,55.24,1493.46,2162.69,0.00,1.495018,0.022070,225,104,0.001589,0.000796,6351431,5580184,0,0,20682,0,1,1 +1773554847.524066,0.55,4,3992.50,55.00,1502.70,2153.46,0.00,3520219768615.565430,3520219768617.039062,11,0,0.002642,0.001188,6351482,5580217,0,0,20684,0,1,1 +1773554852.525645,23.30,4,3992.50,55.30,1488.02,2164.93,0.00,0.176897,0.000000,199,0,28.173986,0.125668,6360692,5586721,0,0,20686,0,1,1 +1773554857.522833,10.27,4,3992.50,54.57,1516.43,2136.45,0.00,3520416957604.135254,0.000000,11,0,12.086056,0.053534,6364610,5589497,0,0,20689,0,1,1 +1773554862.525928,0.55,4,3992.50,54.60,1514.98,2137.89,0.00,2.007546,0.000195,238,2,0.001588,0.001439,6364640,5589522,0,0,20692,0,1,1 +1773554867.522828,0.85,4,3992.50,54.61,1514.75,2138.12,0.00,8155.730421,8921.304233,589208,1068443,0.002506,0.003330,6364698,5589590,0,0,20694,0,1,1 +1773554872.526649,0.65,4,3992.50,54.62,1514.53,2138.36,0.00,3515750272412.376465,3515750271649.868652,11,0,0.002732,0.003961,6364763,5589671,0,0,20697,0,1,1 +1773554877.521813,0.60,4,3992.50,54.62,1514.29,2138.59,0.00,1.496467,0.022092,225,104,0.002507,0.003324,6364821,5589739,0,0,20699,0,1,1 +1773554882.526480,1.45,4,3992.50,54.82,1503.51,2146.36,0.00,3515156202155.394043,3515156202156.865723,11,0,0.002744,0.003948,6364887,5589819,0,0,20702,0,1,1 +1773554887.525847,0.65,4,3992.50,54.84,1502.83,2147.08,0.00,1.495209,0.022073,225,104,0.002734,0.003955,6364952,5589899,0,0,20704,0,1,1 +1773554892.526403,0.60,4,3992.50,54.84,1502.84,2147.07,0.00,3518045983170.978027,3518045983172.400879,70,0,0.002766,0.003993,6365020,5589982,0,0,20706,0,1,1 +1773554897.522742,0.60,4,3992.50,54.84,1502.87,2147.05,0.00,8162.672944,8923.016677,589970,1069075,0.002761,0.003998,6365087,5590065,0,0,20709,0,1,1 +1773554902.521725,0.65,4,3992.50,54.80,1504.26,2145.67,0.00,3519153118234.896973,3519153117473.531738,225,104,0.002734,0.003965,6365152,5590146,0,0,20712,0,1,1 +1773554907.526182,0.60,4,3992.50,54.81,1503.97,2145.96,0.00,3515303178298.367188,3515303178299.838867,11,0,0.002731,0.003951,6365217,5590226,0,0,20714,0,1,1 +1773554912.526692,0.95,4,3992.50,55.25,1486.75,2163.18,0.00,8151.849792,8915.707233,589208,1069102,0.002733,0.003964,6365282,5590307,0,0,20717,0,1,1 +1773554917.526134,2.46,4,3992.50,55.08,1493.24,2156.63,0.00,3518829876811.204590,3518829876045.175293,238,2,0.009460,0.006830,6365458,5590451,0,0,20719,0,1,1 +1773554922.525536,21.82,4,3992.50,55.63,1471.90,2178.02,0.00,8151.699131,8918.138347,589211,1069924,30.197957,0.136874,6375375,5597602,0,0,20722,0,1,1 +1773554927.526433,7.17,4,3992.50,56.14,1452.04,2197.84,0.00,3517805646971.983887,3517805646207.781738,11,0,10.055386,0.043814,6378506,5599906,0,0,20724,0,1,1 +1773554932.526283,0.50,4,3992.50,56.06,1455.22,2194.68,0.00,1.495065,0.022071,225,104,0.002505,0.003482,6378564,5599975,0,0,20726,0,1,1 +1773554937.526715,0.70,4,3992.50,55.77,1466.45,2183.45,0.00,3518133337854.541016,3518133337856.014160,11,0,0.002733,0.003964,6378629,5600056,0,0,20729,0,1,1 +1773554942.526151,0.90,4,3992.50,55.58,1472.64,2175.92,0.00,1.495188,0.022073,225,104,0.005078,0.006391,6378711,5600165,0,0,20732,0,1,1 +1773554947.526189,0.70,4,3992.50,55.52,1474.88,2173.64,0.00,8155.239033,8917.672011,589973,1070530,0.002624,0.004804,6378777,5600260,0,0,20734,0,1,1 +1773554952.521805,0.80,4,3992.50,54.84,1501.59,2146.95,0.00,3521524853292.977051,3521524852531.293945,70,0,0.002560,0.003822,6378839,5600339,0,0,20737,0,1,1 +1773554957.526413,0.60,4,3992.50,54.84,1501.36,2147.19,0.00,8149.235652,8909.659650,589973,1070582,0.002731,0.003951,6378904,5600419,0,0,20739,0,1,1 +1773554962.526630,0.75,4,3992.50,54.84,1501.36,2147.19,0.00,3518284294392.505371,0.005371,589211,1070513,0.002733,0.003964,6378969,5600500,0,0,20742,0,1,1 +1773554967.521812,0.65,4,3992.50,54.83,1501.68,2146.87,0.00,3521830718479.291016,3521830717711.398438,238,2,0.002719,0.003954,6379033,5600580,0,0,20744,0,1,1 +1773554972.522409,0.75,4,3992.50,55.13,1497.63,2158.43,0.00,3518017065471.576660,3518017065473.535156,70,0,0.002492,0.003333,6379090,5600649,0,0,20746,0,1,1 +1773554977.525669,0.60,4,3992.50,55.13,1495.43,2158.61,0.00,3516144803426.696777,0.000000,11,0,0.002732,0.003962,6379155,5600730,0,0,20749,0,1,1 +1773554982.523546,0.65,4,3992.50,55.13,1495.45,2158.59,0.00,0.000000,0.000000,11,0,0.002735,0.003966,6379220,5600811,0,0,20752,0,1,1 +1773554987.526403,6.87,4,3992.50,54.89,1504.77,2149.23,0.00,8148.075364,8913.182437,589211,1071030,4.037061,0.028952,6380736,5601944,0,0,20754,0,1,1 +1773554992.525958,20.45,4,3992.50,56.53,1440.80,2213.18,0.00,3518750694674.858398,3518750693909.245605,11,0,32.185822,0.134880,6390897,5609407,0,0,20757,0,1,1 +1773554997.526332,4.52,4,3992.50,56.15,1455.41,2198.56,0.00,0.049996,0.000000,70,0,4.037729,0.022818,6392400,5610492,0,0,20759,0,1,1 +1773555002.523448,1.40,4,3992.50,55.76,1470.86,2182.96,0.00,8157.386913,8924.283040,589211,1072075,0.002723,0.003957,6392464,5610572,0,0,20761,0,1,1 +1773555007.526175,0.60,4,3992.50,55.47,1481.43,2171.93,0.00,3516519235578.379883,3516519234812.393555,11,0,0.002732,0.003962,6392529,5610653,0,0,20764,0,1,1 +1773555012.525983,0.55,4,3992.50,55.51,1479.92,2173.43,0.00,0.176960,0.000000,199,0,0.002734,0.003954,6392594,5610733,0,0,20766,0,1,1 +1773555017.521684,0.75,4,3992.50,55.51,1479.92,2173.41,0.00,1.833412,0.000195,238,2,0.002125,0.003738,6392648,5610808,0,0,20769,0,1,1 +1773555022.525664,0.70,4,3992.50,55.52,1479.71,2173.64,0.00,3515639065344.143066,0.021858,225,104,0.002731,0.003961,6392713,5610889,0,0,20772,0,1,1 +1773555027.521792,0.65,4,3992.50,55.52,1479.54,2173.81,0.00,3521163741742.639648,3521163741744.063965,70,0,0.002507,0.003323,6392771,5610957,0,0,20774,0,1,1 +1773555032.525446,0.90,4,3992.50,55.72,1471.84,2181.64,0.00,0.000000,0.000000,70,0,0.002719,0.003961,6392835,5611038,0,0,20777,0,1,1 +1773555037.525821,0.65,4,3992.50,55.69,1472.59,2180.19,0.00,1.958642,0.000195,238,2,0.002733,0.003954,6392900,5611118,0,0,20779,0,1,1 +1773555042.526366,0.65,4,3992.50,55.65,1473.88,2178.89,0.00,8149.834229,8918.787653,589211,1072496,0.002733,0.003951,6392965,5611198,0,0,20782,0,1,1 +1773555047.526396,0.60,4,3992.50,55.61,1475.62,2177.15,0.00,4.063941,0.054687,589973,1072644,0.002734,0.003942,6393030,5611277,0,0,20784,0,1,1 +1773555052.526366,0.65,4,3992.50,55.64,1474.16,2178.61,0.00,3518458287259.043457,3518458287263.101562,589211,1072547,0.002734,0.003954,6393095,5611357,0,0,20786,0,1,1 +1773555057.525755,2.91,4,3992.50,56.18,1453.35,2199.42,0.00,3518866928278.793457,3518866927511.445801,199,0,0.002721,0.003965,6393159,5611438,0,0,20789,0,1,1 +1773555062.523580,32.03,4,3992.50,59.13,1325.33,2315.02,0.00,3519968711365.657227,0.000000,11,0,10.077832,0.050800,6396399,5613809,0,0,20792,0,1,1 +1773555067.522568,20.40,4,3992.50,58.75,1337.04,2300.38,0.00,1.521108,4.699584,230,131,20.124652,0.090985,6402840,5618606,0,0,20794,0,1,1 +1773555072.525672,13.74,4,3992.50,58.34,1379.38,2284.32,0.00,8168.236644,8969.543680,593322,1121966,10.057090,0.047315,6406222,5621228,0,0,20797,0,1,1 +1773555077.524557,15.62,4,3992.50,60.42,1263.66,2365.66,0.00,3519221959053.478027,3519221958246.303711,246,2,0.002734,0.003955,6406287,5621308,0,0,20799,0,1,1 +1773555082.526482,21.01,4,3992.50,61.17,1267.32,2394.98,0.00,3517082716316.282715,3517082716318.240234,75,0,0.002720,0.003963,6406351,5621389,0,0,20802,0,1,1 +1773555087.526152,18.27,4,3992.50,62.29,1223.45,2438.70,0.00,8192.987413,9007.523017,599439,1125131,0.002505,0.003321,6406409,5621457,0,0,20804,0,1,1 +1773555092.521756,12.29,4,3992.50,58.17,1379.46,2277.49,0.00,3521533478716.727539,3521533477901.528320,75,0,0.002711,0.003958,6406472,5621537,0,0,20806,0,1,1 +1773555097.521796,1.00,4,3992.50,56.68,1437.91,2219.05,0.00,1.602624,10.675109,251,190,0.002734,0.003964,6406537,5621618,0,0,20809,0,1,1 +1773555102.526427,0.70,4,3992.50,56.34,1451.05,2205.91,0.00,3515181688040.508301,3515181688031.497559,11,0,0.002731,0.003961,6406602,5621699,0,0,20812,0,1,1 +1773555107.524837,0.55,4,3992.50,56.34,1451.21,2205.75,0.00,8195.511891,9010.766783,599782,1125336,0.002734,0.003956,6406667,5621779,0,0,20814,0,1,1 +1773555112.526429,0.70,4,3992.50,55.94,1466.90,2190.06,0.00,0.000000,1.147681,599782,1125459,0.002733,0.003963,6406732,5621860,0,0,20817,0,1,1 +1773555117.526131,0.55,4,3992.50,55.77,1473.60,2183.36,0.00,3518646843780.614258,3518646842964.241699,205,0,0.002754,0.003963,6406799,5621941,0,0,20819,0,1,1 +1773555122.526138,0.85,4,3992.50,55.94,1471.18,2190.32,0.00,3518432395667.501953,0.000000,11,0,0.002696,0.003964,6406861,5622022,0,0,20822,0,1,1 +1773555127.521722,1.70,4,3992.50,55.79,1477.34,2184.16,0.00,0.000000,0.000000,11,0,0.002278,0.003334,6406912,5622082,0,0,20824,0,1,1 +1773555132.521785,5.71,4,3992.50,55.91,1472.50,2188.97,0.00,0.000000,0.000000,11,0,4.034854,0.024115,6408357,5623113,0,0,20826,0,1,1 +1773555137.526209,22.06,4,3992.50,55.81,1476.54,2184.95,0.00,0.000000,0.000000,11,0,36.186938,0.157542,6420023,5631676,0,0,20829,0,1,1 +1773555142.523963,1.25,4,3992.50,55.77,1477.88,2183.62,0.00,2.013209,0.000195,246,2,0.007700,0.006609,6420180,5631823,0,0,20832,0,1,1 +1773555147.523009,1.71,4,3992.50,55.70,1480.81,2180.70,0.00,8202.296284,9034.216745,601562,1127028,0.004468,0.005278,6420270,5631918,0,0,20834,0,1,1 +1773555152.525332,1.05,4,3992.50,56.11,1463.57,2196.77,0.00,3516803151610.225586,3516803151609.340820,600073,1126869,0.004763,0.005239,6420359,5632015,0,0,20837,0,1,1 +1773555157.522264,1.20,4,3992.50,55.71,1479.07,2181.27,0.00,3520597878919.190918,3520597878089.763672,75,0,0.003405,0.004879,6420427,5632097,0,0,20839,0,1,1 +1773555162.521701,0.70,4,3992.50,55.71,1479.08,2181.25,0.00,8203.615960,9033.990978,601564,1127353,0.002742,0.003960,6420493,5632178,0,0,20842,0,1,1 +1773555167.524379,0.70,4,3992.50,55.60,1483.66,2176.68,0.00,3516553293760.532715,3516553292930.749023,11,0,0.002491,0.003331,6420550,5632247,0,0,20844,0,1,1 +1773555172.523334,0.65,4,3992.50,55.65,1481.47,2178.86,0.00,0.180311,0.000000,205,0,0.002734,0.003955,6420615,5632327,0,0,20846,0,1,1 +1773555177.525492,0.75,4,3992.50,55.65,1481.48,2178.86,0.00,1.475242,10.670589,251,190,0.002732,0.003963,6420680,5632408,0,0,20849,0,1,1 +1773555182.522881,0.80,4,3992.50,56.26,1457.77,2202.66,0.00,0.356338,3520276151145.962402,246,2,0.002722,0.003966,6420744,5632489,0,0,20852,0,1,1 +1773555187.526582,1.55,4,3992.50,55.69,1479.88,2180.45,0.00,3515834336169.439453,3515834336171.270020,205,0,0.002732,0.003951,6420809,5632569,0,0,20854,0,1,1 +1773555192.526052,0.65,4,3992.50,55.69,1479.88,2180.45,0.00,3518810621547.367188,0.000000,11,0,0.002759,0.004640,6420876,5632656,0,0,20857,0,1,1 +1773555197.526122,0.65,4,3992.50,55.69,1479.90,2180.43,0.00,0.000000,0.000000,11,0,0.002759,0.003985,6420943,5632738,0,0,20859,0,1,1 +1773555202.525579,8.83,4,3992.50,56.33,1454.98,2205.36,0.00,8203.678433,9034.469352,601617,1127968,8.086919,0.047629,6423804,5634836,0,0,20862,0,1,1 +1773555207.525574,13.35,4,3992.50,56.46,1449.77,2210.56,0.00,3518440788786.329102,3518440787955.627441,11,0,24.120098,0.102414,6431595,5640649,0,0,20864,0,1,1 +1773555212.525831,7.87,4,3992.50,56.36,1456.54,2206.77,0.00,0.000000,0.000000,11,0,8.058000,0.039667,6434353,5642652,0,0,20866,0,1,1 +1773555217.526140,1.05,4,3992.50,56.10,1464.75,2196.48,0.00,8192.816242,9023.033060,600251,1128589,0.002505,0.003330,6434411,5642721,0,0,20869,0,1,1 +1773555222.525637,0.55,4,3992.50,56.10,1464.77,2196.47,0.00,9.562485,10.840251,601740,1128982,0.002734,0.003965,6434476,5642802,0,0,20872,0,1,1 +1773555227.521789,0.70,4,3992.50,56.10,1464.78,2196.45,0.00,3521147098727.248047,3521147097894.881348,205,0,0.002736,0.003957,6434541,5642882,0,0,20874,0,1,1 +1773555232.526025,0.75,4,3992.50,56.10,1464.80,2196.43,0.00,1.830480,0.000195,246,2,0.002731,0.003961,6434606,5642963,0,0,20877,0,1,1 +1773555237.521728,0.60,4,3992.50,56.10,1464.81,2196.42,0.00,3521463611756.895508,3521463611758.855957,75,0,0.002723,0.003958,6434670,5643043,0,0,20879,0,1,1 +1773555242.523842,2.16,4,3992.50,56.67,1442.49,2218.74,0.00,3516949877415.577637,0.000000,11,0,0.005125,0.006388,6434756,5643152,0,0,20882,0,1,1 +1773555247.525969,2.15,4,3992.50,56.29,1457.54,2203.69,0.00,8199.395567,9030.853007,601740,1129151,0.003229,0.005039,6434833,5643254,0,0,20884,0,1,1 +1773555252.525946,1.75,4,3992.50,56.27,1458.13,2203.09,0.00,3518453711376.255859,3518453710544.387207,75,0,0.002721,0.003942,6434897,5643333,0,0,20886,0,1,1 +1773555257.526556,0.65,4,3992.50,56.28,1457.78,2203.45,0.00,1.602441,10.673892,251,190,0.002512,0.003982,6434956,5643407,0,0,20889,0,1,1 +1773555262.521710,0.75,4,3992.50,56.29,1457.54,2203.69,0.00,0.356498,3521850685873.462891,246,2,0.002724,0.003968,6435020,5643488,0,0,20892,0,1,1 +1773555267.521799,0.60,4,3992.50,56.29,1457.43,2203.80,0.00,0.000000,0.000000,246,2,0.002721,0.003942,6435084,5643567,0,0,20894,0,1,1 +1773555272.521707,1.40,4,3992.50,56.65,1446.25,2217.91,0.00,3518502458805.585449,3518502458807.598145,11,0,0.002734,0.003964,6435149,5643648,0,0,20897,0,1,1 +1773555277.525770,12.45,4,3992.50,56.11,1465.09,2196.75,0.00,0.180127,0.000000,205,0,14.097030,0.077144,6440110,5647385,0,0,20899,0,1,1 +1773555282.525537,13.63,4,3992.50,56.28,1458.30,2203.52,0.00,3518600825228.833008,0.000000,11,0,22.129380,0.094370,6447185,5652639,0,0,20902,0,1,1 +1773555287.525556,2.96,4,3992.50,56.02,1468.49,2193.38,0.00,0.000000,0.000000,11,0,4.026897,0.020904,6448578,5653714,0,0,20904,0,1,1 +1773555292.521765,0.65,4,3992.50,56.06,1467.03,2194.82,0.00,1.657409,10.683294,251,190,0.002129,0.003720,6448632,5653787,0,0,20906,0,1,1 +1773555297.521712,0.55,4,3992.50,56.06,1467.05,2194.81,0.00,8191.890782,9014.418881,600426,1130312,0.002570,0.003818,6448695,5653866,0,0,20909,0,1,1 +1773555302.522255,1.15,4,3992.50,56.28,1459.11,2203.46,0.00,3518054790950.421387,3518054790116.961426,246,2,0.002741,0.003972,6448761,5653948,0,0,20912,0,1,1 +1773555307.521838,0.85,4,3992.50,56.16,1463.77,2198.80,0.00,8192.129846,9026.242404,600426,1130611,0.002734,0.003955,6448826,5654028,0,0,20914,0,1,1 +1773555312.523127,1.00,4,3992.50,56.06,1467.56,2195.00,0.00,3517530083851.132812,3517530083019.263184,75,0,0.002479,0.003330,6448882,5654097,0,0,20917,0,1,1 +1773555317.526211,1.75,4,3992.50,56.10,1466.26,2196.30,0.00,0.000000,0.000000,75,0,0.002732,0.003967,6448947,5654177,0,0,20919,0,1,1 +1773555322.523581,2.36,4,3992.50,56.08,1466.76,2195.80,0.00,1.603480,10.680812,251,190,0.002722,0.004601,6449011,5654261,0,0,20921,0,1,1 +1773555327.522164,0.70,4,3992.50,56.01,1469.55,2193.02,0.00,3519434712407.844727,3519434712398.642578,205,0,0.002722,0.003965,6449075,5654342,0,0,20924,0,1,1 +1773555332.521788,1.10,4,3992.50,56.55,1455.43,2213.88,0.00,3518701486588.145996,0.000000,75,0,0.002734,0.003955,6449140,5654422,0,0,20926,0,1,1 +1773555337.525830,0.75,4,3992.50,56.41,1460.64,2208.38,0.00,0.126655,0.000000,205,0,0.002731,0.003961,6449205,5654503,0,0,20929,0,1,1 +1773555342.525625,0.95,4,3992.50,56.42,1459.92,2209.11,0.00,3518581369384.020508,0.000000,11,0,0.002734,0.003964,6449270,5654584,0,0,20932,0,1,1 +1773555347.526051,1.25,4,3992.50,56.44,1459.19,2209.84,0.00,8192.760961,9025.073379,600426,1130906,0.002729,0.003949,6449335,5654664,0,0,20934,0,1,1 +1773555352.521795,19.61,4,3992.50,57.07,1434.40,2234.60,0.00,3521434963059.624512,3521434962226.351074,205,0,24.178274,0.113175,6457136,5660531,0,0,20937,0,1,1 +1773555357.521791,8.94,4,3992.50,57.35,1423.70,2245.32,0.00,8202.974064,9037.076804,602078,1131938,14.080453,0.060048,6461635,5663861,0,0,20939,0,1,1 +1773555362.521795,3.31,4,3992.50,56.41,1460.48,2208.39,0.00,0.009375,0.512207,602090,1132227,2.019292,0.013498,6462392,5664420,0,0,20942,0,1,1 +1773555367.526213,0.65,4,3992.50,56.32,1463.67,2205.15,0.00,0.000000,0.019416,602090,1132242,0.002731,0.003951,6462457,5664500,0,0,20944,0,1,1 +1773555372.521700,0.70,4,3992.50,56.22,1467.63,2201.19,0.00,3521615734012.056641,3521615734011.130371,600601,1132254,0.002736,0.003958,6462522,5664580,0,0,20946,0,1,1 +1773555377.521707,0.70,4,3992.50,56.23,1467.18,2201.65,0.00,3518432612653.477539,3518432611819.960449,11,0,0.002721,0.003964,6462586,5664661,0,0,20949,0,1,1 +1773555382.525810,0.75,4,3992.50,56.24,1466.95,2201.88,0.00,8186.877260,9019.766643,600601,1132315,0.002731,0.003961,6462651,5664742,0,0,20952,0,1,1 +1773555387.522529,1.00,4,3992.50,56.24,1466.95,2201.88,0.00,3520747388380.966309,3520747387544.832520,246,2,0.002735,0.004601,6462716,5664826,0,0,20954,0,1,1 +1773555392.521791,0.75,4,3992.50,56.68,1451.43,2219.30,0.00,3518956575904.973145,3518956575906.985840,11,0,0.002742,0.003973,6462782,5664908,0,0,20957,0,1,1 +1773555397.521787,1.00,4,3992.50,56.50,1458.69,2212.08,0.00,0.000000,0.000000,11,0,0.002505,0.003308,6462840,5664975,0,0,20959,0,1,1 +1773555402.525926,0.70,4,3992.50,56.28,1467.38,2203.40,0.00,0.000000,0.000000,11,0,0.002731,0.003961,6462905,5665056,0,0,20962,0,1,1 +1773555407.522345,0.65,4,3992.50,56.28,1467.39,2203.39,0.00,8199.467744,9033.896111,600601,1132528,0.002723,0.003945,6462969,5665135,0,0,20964,0,1,1 +1773555412.521800,1.05,4,3992.50,56.28,1467.17,2203.61,0.00,3518820797901.246094,3518820797067.324219,11,0,0.002734,0.003955,6463034,5665215,0,0,20966,0,1,1 +1773555417.526013,0.80,4,3992.50,56.04,1476.59,2194.19,0.00,2.010610,0.000195,246,2,0.002719,0.003961,6463098,5665296,0,0,20969,0,1,1 +1773555422.524846,3.36,4,3992.50,56.71,1459.99,2220.16,0.00,3519259157196.070312,3519259157198.029297,75,0,2.016812,0.013049,6463796,5665771,0,0,20972,0,1,1 +1773555427.525595,22.50,4,3992.50,57.22,1439.87,2240.29,0.00,8202.064294,9037.509329,602242,1133716,34.198634,0.149787,6474754,5673958,0,0,20974,0,1,1 +1773555432.521792,4.77,4,3992.50,56.87,1453.60,2226.56,0.00,3521114909977.727051,3521114909141.521484,75,0,4.038627,0.022469,6476220,5675010,0,0,20977,0,1,1 +1773555437.522537,1.10,4,3992.50,56.79,1456.54,2223.61,0.00,1.958497,0.000195,246,2,0.005205,0.005108,6476330,5675120,0,0,20979,0,1,1 +1773555442.523359,1.35,4,3992.50,56.04,1486.15,2194.00,0.00,0.000000,0.000000,246,2,0.002733,0.003964,6476395,5675201,0,0,20982,0,1,1 +1773555447.521795,0.65,4,3992.50,56.04,1486.16,2193.99,0.00,8194.353282,9031.343524,600776,1133819,0.003799,0.004357,6476482,5675294,0,0,20984,0,1,1 +1773555452.522190,2.11,4,3992.50,56.10,1466.91,2196.30,0.00,3518159684735.305664,3518159683900.654785,11,0,0.005205,0.006176,6476567,5675385,0,0,20986,0,1,1 +1773555457.521715,0.65,4,3992.50,55.83,1476.49,2186.02,0.00,0.000000,0.000000,11,0,0.002734,0.003965,6476632,5675466,0,0,20989,0,1,1 +1773555462.524282,0.70,4,3992.50,55.86,1475.54,2186.98,0.00,0.180181,0.000000,205,0,0.003402,0.004884,6476700,5675549,0,0,20992,0,1,1 +1773555467.526227,0.60,4,3992.50,55.86,1475.55,2186.96,0.00,3517068786352.798340,0.000000,11,0,0.002733,0.003940,6476765,5675628,0,0,20994,0,1,1 +1773555472.526543,0.60,4,3992.50,55.86,1475.57,2186.95,0.00,0.180262,0.000000,205,0,0.002733,0.003964,6476830,5675709,0,0,20997,0,1,1 +1773555477.521792,0.65,4,3992.50,55.66,1483.21,2179.30,0.00,8211.014946,9048.498131,602270,1134460,0.002736,0.003958,6476895,5675789,0,0,20999,0,1,1 +1773555482.526233,0.80,4,3992.50,55.86,1473.43,2187.20,0.00,3515314849519.119629,3515314848683.354980,11,0,0.002739,0.003956,6476961,5675870,0,0,21002,0,1,1 +1773555487.521776,0.75,4,3992.50,55.67,1480.74,2179.70,0.00,0.053563,0.000000,75,0,0.002711,0.003958,6477024,5675950,0,0,21004,0,1,1 +1773555492.526206,0.55,4,3992.50,55.66,1481.11,2179.33,0.00,3515323084700.650391,0.000000,11,0,0.002515,0.003349,6477083,5676020,0,0,21006,0,1,1 +1773555497.522574,7.73,4,3992.50,56.00,1467.87,2192.57,0.00,8209.402506,9046.760041,602302,1134829,6.706946,0.033915,6479210,5677566,0,0,21009,0,1,1 +1773555502.522659,19.57,4,3992.50,56.28,1456.93,2203.45,0.00,3518377999747.913086,3518377998911.124512,75,0,31.532529,0.138873,6489384,5685197,0,0,21012,0,1,1 +1773555507.524771,3.06,4,3992.50,56.09,1464.25,2196.08,0.00,3516951133139.472656,0.000000,11,0,2.024020,0.014510,6490231,5685750,0,0,21014,0,1,1 +1773555512.524634,1.10,4,3992.50,56.61,1443.93,2216.40,0.00,0.053517,0.000000,75,0,0.002734,0.003964,6490296,5685831,0,0,21017,0,1,1 +1773555517.525068,0.85,4,3992.50,56.50,1448.08,2212.26,0.00,0.000000,0.000000,75,0,0.002733,0.004598,6490361,5685915,0,0,21019,0,1,1 +1773555522.526124,0.60,4,3992.50,56.48,1449.16,2211.18,0.00,8192.231128,9028.701659,600960,1135852,0.002733,0.003963,6490426,5685996,0,0,21022,0,1,1 +1773555527.521702,0.70,4,3992.50,56.48,1448.92,2211.41,0.00,3521552305287.741699,3521552304450.407227,11,0,0.002744,0.003953,6490492,5686076,0,0,21024,0,1,1 +1773555532.525909,0.70,4,3992.50,56.08,1464.82,2195.52,0.00,0.000000,0.000000,11,0,0.002719,0.003951,6490556,5686156,0,0,21026,0,1,1 +1773555537.526417,0.85,4,3992.50,56.09,1464.10,2196.24,0.00,2.012101,0.000195,246,2,0.002721,0.003964,6490620,5686237,0,0,21029,0,1,1 +1773555542.526098,0.90,4,3992.50,56.37,1457.18,2206.82,0.00,8192.525749,9031.444097,600960,1136035,0.003246,0.005039,6490699,5686339,0,0,21032,0,1,1 +1773555547.526551,0.75,4,3992.50,56.25,1461.90,2202.12,0.00,3518119201412.687012,3518119200575.909668,11,0,0.003001,0.004420,6490769,5686430,0,0,21034,0,1,1 +1773555552.524611,0.60,4,3992.50,56.24,1461.93,2202.11,0.00,8206.760786,9045.114531,602449,1136296,0.002735,0.003966,6490834,5686511,0,0,21037,0,1,1 +1773555557.526446,0.60,4,3992.50,56.24,1461.94,2202.09,0.00,3517146546472.820312,3517146545634.918945,205,0,0.002733,0.003953,6490899,5686591,0,0,21039,0,1,1 +1773555562.526078,0.60,4,3992.50,56.24,1461.95,2202.08,0.00,3518696046275.400879,0.000000,11,0,0.002734,0.003955,6490964,5686671,0,0,21041,0,1,1 +1773555567.526297,0.70,4,3992.50,56.24,1462.21,2201.82,0.00,2.012217,0.000195,246,2,0.002733,0.003964,6491029,5686752,0,0,21044,0,1,1 +1773555572.523269,10.85,4,3992.50,56.84,1434.96,2225.22,0.00,3520568568838.193848,3520568568840.026855,205,0,12.093716,0.062959,6495148,5689856,0,0,21046,0,1,1 +1773555577.526231,17.29,4,3992.50,56.35,1454.00,2206.10,0.00,3516354839019.313477,0.000000,11,0,26.130782,0.106692,6503283,5695818,0,0,21049,0,1,1 +1773555582.521765,3.36,4,3992.50,56.33,1454.48,2205.60,0.00,0.000000,0.000000,11,0,2.030030,0.016553,6504203,5696476,0,0,21052,0,1,1 +1773555587.525927,0.85,4,3992.50,56.31,1455.39,2204.70,0.00,1.654775,10.666318,251,190,0.004030,0.004655,6504296,5696574,0,0,21054,0,1,1 +1773555592.526586,1.65,4,3992.50,56.32,1454.92,2205.18,0.00,3517973262789.268066,3517973262780.197266,75,0,0.002746,0.003964,6504362,5696655,0,0,21057,0,1,1 +1773555597.524911,0.70,4,3992.50,56.15,1461.59,2198.51,0.00,1.959445,0.000195,246,2,0.002506,0.003322,6504420,5696723,0,0,21059,0,1,1 +1773555602.524727,1.25,4,3992.50,56.45,1448.39,2210.15,0.00,8192.439124,9032.610945,601131,1137491,0.002746,0.003964,6504486,5696804,0,0,21062,0,1,1 +1773555607.523964,0.65,4,3992.50,56.38,1450.91,2207.30,0.00,3518974279211.904297,3518974278373.593750,75,0,0.002734,0.003955,6504551,5696884,0,0,21064,0,1,1 +1773555612.525951,0.65,4,3992.50,56.39,1450.45,2207.77,0.00,1.602000,10.670955,251,190,0.002741,0.003961,6504617,5696965,0,0,21066,0,1,1 +1773555617.522789,0.65,4,3992.50,56.39,1450.25,2207.97,0.00,3520664091587.293945,3520664091578.269531,11,0,0.002735,0.003954,6504682,5697045,0,0,21069,0,1,1 +1773555622.526438,0.60,4,3992.50,56.30,1453.97,2204.25,0.00,8188.173196,9026.039531,601131,1137838,0.002732,0.003949,6504747,5697125,0,0,21072,0,1,1 +1773555627.525894,0.65,4,3992.50,56.30,1453.99,2204.23,0.00,0.000000,0.038383,601131,1137879,0.002734,0.003955,6504812,5697205,0,0,21074,0,1,1 +1773555632.521613,0.85,4,3992.50,56.36,1456.55,2206.53,0.00,3521451857167.924316,3521451856328.635742,75,0,0.002736,0.003955,6504877,5697285,0,0,21077,0,1,1 +1773555637.524766,0.55,4,3992.50,56.31,1458.46,2204.63,0.00,3516220206726.020020,0.000000,11,0,0.002503,0.003331,6504935,5697354,0,0,21079,0,1,1 +1773555642.521780,0.55,4,3992.50,56.30,1458.84,2204.24,0.00,0.000000,0.000000,11,0,0.002723,0.003954,6504999,5697434,0,0,21082,0,1,1 +1773555647.525611,14.36,4,3992.50,57.16,1425.11,2237.93,0.00,0.180135,0.000000,205,0,16.104910,0.085480,6510480,5701567,0,0,21084,0,1,1 +1773555652.523666,13.16,4,3992.50,56.38,1455.58,2207.38,0.00,1.832744,0.000195,246,2,24.152288,0.103553,6518298,5707301,0,0,21086,0,1,1 +1773555657.525739,0.65,4,3992.50,56.40,1454.62,2208.34,0.00,3516979251463.236328,3516979251465.067871,205,0,0.002512,0.003337,6518357,5707371,0,0,21089,0,1,1 +1773555662.521826,1.15,4,3992.50,56.64,1445.42,2217.41,0.00,3521192382059.901367,0.000000,75,0,0.002736,0.003967,6518422,5707452,0,0,21092,0,1,1 +1773555667.526199,0.60,4,3992.50,56.52,1449.80,2213.03,0.00,8196.621246,9036.775967,602788,1139616,0.002731,0.003951,6518487,5707532,0,0,21094,0,1,1 +1773555672.522210,0.65,4,3992.50,56.52,1449.81,2213.02,0.00,3521246613909.527832,3521246613068.020508,11,0,0.002736,0.003955,6518552,5707612,0,0,21097,0,1,1 +1773555677.521798,0.50,4,3992.50,56.55,1448.84,2213.98,0.00,2.012470,0.000195,246,2,0.002734,0.003955,6518617,5707692,0,0,21099,0,1,1 +1773555682.525919,0.70,4,3992.50,56.54,1449.09,2213.74,0.00,8185.522861,9026.625653,601299,1139454,0.002731,0.003961,6518682,5707773,0,0,21102,0,1,1 +1773555687.525877,0.65,4,3992.50,56.54,1449.10,2213.72,0.00,3518467035881.996094,3518467035042.205078,11,0,0.002480,0.003321,6518738,5707841,0,0,21104,0,1,1 +1773555692.526608,0.80,4,3992.50,56.80,1438.70,2223.76,0.00,0.053508,0.000000,75,0,0.002504,0.003320,6518796,5707909,0,0,21106,0,1,1 +1773555697.526699,0.60,4,3992.50,56.74,1440.99,2221.49,0.00,8203.640199,9044.787991,602788,1139804,0.002729,0.003972,6518861,5707991,0,0,21109,0,1,1 +1773555702.525625,0.60,4,3992.50,56.75,1440.75,2221.72,0.00,3519193209249.018066,3519193208407.728027,11,0,0.002734,0.003965,6518926,5708072,0,0,21112,0,1,1 +1773555707.526161,0.60,4,3992.50,56.75,1440.50,2221.98,0.00,2.012089,0.000195,246,2,0.002545,0.003808,6518987,5708150,0,0,21114,0,1,1 +1773555712.525967,0.75,4,3992.50,56.75,1440.52,2221.97,0.00,3518573784433.955078,3518573784435.787109,205,0,0.001952,0.004052,6519038,5708224,0,0,21117,0,1,1 +1773555717.522268,19.74,4,3992.50,57.39,1415.42,2246.95,0.00,8200.253269,9041.244706,601407,1140294,26.187044,0.119465,6527544,5714462,0,0,21119,0,1,1 +1773555722.526666,8.94,4,3992.50,57.48,1411.91,2250.43,0.00,3515344412626.776367,3515344411787.326172,11,0,14.077126,0.066289,6532130,5717938,0,0,21122,0,1,1 +1773555727.525842,0.60,4,3992.50,57.38,1415.63,2246.70,0.00,0.000000,0.000000,11,0,0.002276,0.002688,6532181,5717994,0,0,21124,0,1,1 +1773555732.525734,0.50,4,3992.50,57.31,1418.71,2243.63,0.00,2.012348,0.000195,246,2,0.002734,0.003954,6532246,5718074,0,0,21126,0,1,1 +1773555737.525172,0.65,4,3992.50,57.29,1419.13,2243.20,0.00,0.000000,0.000000,246,2,0.002742,0.003960,6532312,5718155,0,0,21129,0,1,1 +1773555742.526471,0.60,4,3992.50,57.29,1419.15,2243.18,0.00,3517523566606.492676,3517523566608.504883,11,0,0.002733,0.003951,6532377,5718235,0,0,21132,0,1,1 +1773555747.521793,0.70,4,3992.50,57.29,1419.41,2242.92,0.00,1.657703,10.685192,251,190,0.003572,0.003725,6532457,5718316,0,0,21134,0,1,1 +1773555752.521713,1.05,4,3992.50,57.38,1418.11,2246.55,0.00,3518493545592.979004,3518493545583.779297,205,0,0.004752,0.005241,6532545,5718413,0,0,21137,0,1,1 +1773555757.526352,0.75,4,3992.50,57.32,1419.86,2244.32,0.00,3515175721284.488281,0.000000,75,0,0.002744,0.003951,6532611,5718493,0,0,21139,0,1,1 +1773555762.521720,0.80,4,3992.50,57.32,1419.87,2244.31,0.00,8211.525870,9054.879251,602952,1141493,0.003406,0.004891,6532679,5718576,0,0,21142,0,1,1 +1773555767.521715,0.60,4,3992.50,57.32,1419.89,2244.30,0.00,3518440385321.618652,3518440385320.536621,601463,1141340,0.002734,0.003954,6532744,5718656,0,0,21144,0,1,1 +1773555772.524398,0.60,4,3992.50,57.33,1419.66,2244.52,0.00,3516550565685.475586,3516550564853.504395,251,190,0.002720,0.003952,6532808,5718736,0,0,21146,0,1,1 +1773555777.526299,0.65,4,3992.50,57.33,1419.68,2244.50,0.00,3517100110119.180176,3517100110109.984863,205,0,0.002728,0.004602,6532873,5718821,0,0,21149,0,1,1 +1773555782.521709,2.96,4,3992.50,56.96,1431.39,2230.29,0.00,0.000000,0.000000,205,0,0.009709,0.007153,6533057,5718976,0,0,21152,0,1,1 +1773555787.526580,19.98,4,3992.50,57.51,1410.13,2251.46,0.00,3515013259072.450195,0.000000,11,0,30.181235,0.139694,6542983,5726374,0,0,21154,0,1,1 +1773555792.521710,7.19,4,3992.50,57.43,1412.93,2248.62,0.00,0.180449,0.000000,205,0,10.052009,0.043898,6546172,5728718,0,0,21157,0,1,1 +1773555797.521854,0.60,4,3992.50,57.11,1425.45,2236.11,0.00,1.831979,0.000195,246,2,0.002746,0.003985,6546238,5728800,0,0,21159,0,1,1 +1773555802.525890,0.55,4,3992.50,56.97,1431.15,2230.41,0.00,0.000000,0.000000,246,2,0.002503,0.003328,6546296,5728869,0,0,21162,0,1,1 +1773555807.526485,0.55,4,3992.50,56.88,1434.64,2226.92,0.00,3518018520350.413086,3518018520352.245117,205,0,0.002733,0.003954,6546361,5728949,0,0,21164,0,1,1 +1773555812.523817,0.95,4,3992.50,57.03,1432.74,2232.69,0.00,1.476667,10.680894,251,190,0.002735,0.003956,6546426,5729029,0,0,21166,0,1,1 +1773555817.525845,0.95,4,3992.50,57.07,1431.05,2234.38,0.00,3517011303471.945801,3517011303462.750488,205,0,0.002741,0.003971,6546492,5729111,0,0,21169,0,1,1 +1773555822.525669,0.60,4,3992.50,57.07,1430.85,2234.58,0.00,3518560604099.693359,0.000000,11,0,0.002734,0.003964,6546557,5729192,0,0,21172,0,1,1 +1773555827.525842,0.65,4,3992.50,57.03,1432.41,2233.02,0.00,0.000000,0.000000,11,0,0.002721,0.003954,6546621,5729272,0,0,21174,0,1,1 +1773555832.521955,0.55,4,3992.50,57.01,1433.29,2232.14,0.00,8200.912003,9044.370111,601625,1142961,0.002723,0.003955,6546685,5729352,0,0,21177,0,1,1 +1773555837.525699,0.75,4,3992.50,57.01,1433.54,2231.89,0.00,9.559833,10.676282,603116,1143164,0.002719,0.003926,6546749,5729430,0,0,21179,0,1,1 +1773555842.526137,0.90,4,3992.50,57.12,1439.39,2236.20,0.00,3518129355667.996582,3518129355666.933594,601627,1142993,0.004835,0.005769,6546823,5729528,0,0,21182,0,1,1 +1773555847.522561,0.60,4,3992.50,57.09,1440.32,2235.29,0.00,3520955195600.398438,3520955194756.938965,11,0,0.003207,0.005689,6546898,5729634,0,0,21184,0,1,1 +1773555852.525570,5.86,4,3992.50,57.38,1429.01,2246.61,0.00,2.011094,0.000195,246,2,4.055202,0.027452,6548412,5730728,0,0,21186,0,1,1 +1773555857.522196,19.24,4,3992.50,57.34,1430.66,2244.87,0.00,3520813032392.224121,10.682208,251,190,32.188357,0.138579,6558654,5738495,0,0,21189,0,1,1 +1773555862.525050,4.31,4,3992.50,57.18,1436.95,2238.54,0.00,8188.337497,9022.195054,601788,1144063,4.036452,0.026941,6560214,5739670,0,0,21192,0,1,1 +1773555867.526262,0.80,4,3992.50,57.03,1442.63,2232.85,0.00,3517584611344.682617,3517584610501.354492,205,0,0.002733,0.003953,6560279,5739750,0,0,21194,0,1,1 +1773555872.521748,1.00,4,3992.50,57.09,1434.20,2235.24,0.00,1.833687,0.000195,246,2,0.002711,0.003968,6560342,5739831,0,0,21197,0,1,1 +1773555877.525802,0.60,4,3992.50,57.10,1433.98,2235.46,0.00,0.000000,0.000000,246,2,0.002719,0.003939,6560406,5739910,0,0,21199,0,1,1 +1773555882.525342,0.55,4,3992.50,57.10,1433.76,2235.67,0.00,3518760880693.293945,3518760880695.306641,11,0,0.002505,0.003321,6560464,5739978,0,0,21201,0,1,1 +1773555887.521718,0.80,4,3992.50,56.41,1460.73,2208.72,0.00,2.013764,0.000195,246,2,0.002798,0.004017,6560533,5740063,0,0,21204,0,1,1 +1773555892.526331,0.60,4,3992.50,56.44,1459.77,2209.69,0.00,0.000000,0.000000,246,2,0.002719,0.003951,6560597,5740143,0,0,21206,0,1,1 +1773555897.526432,0.70,4,3992.50,56.44,1459.82,2209.63,0.00,3518365876125.725098,10.674784,251,190,0.002734,0.003952,6560662,5740223,0,0,21209,0,1,1 +1773555902.524265,0.95,4,3992.50,56.68,1455.48,2219.30,0.00,3519962450851.227539,3519962450842.024414,205,0,0.002743,0.003974,6560728,5740305,0,0,21212,0,1,1 +1773555907.525789,0.65,4,3992.50,56.78,1451.89,2222.93,0.00,3517365234143.124512,0.000000,11,0,0.002733,0.003953,6560793,5740385,0,0,21214,0,1,1 +1773555912.526044,0.55,4,3992.50,56.67,1455.92,2218.90,0.00,0.053513,0.000000,75,0,0.002721,0.004595,6560857,5740469,0,0,21217,0,1,1 +1773555917.526020,0.60,4,3992.50,56.70,1454.71,2220.11,0.00,1.958799,0.000195,246,2,0.002734,0.003942,6560922,5740548,0,0,21219,0,1,1 +1773555922.525930,0.70,4,3992.50,56.72,1454.24,2220.58,0.00,0.000000,0.000000,246,2,0.002505,0.003343,6560980,5740618,0,0,21222,0,1,1 +1773555927.526466,9.13,4,3992.50,57.13,1437.84,2236.93,0.00,3518059824492.978027,3518059824494.990234,11,0,10.074435,0.051912,6564427,5743099,0,0,21224,0,1,1 +1773555932.526655,15.63,4,3992.50,56.59,1458.95,2215.79,0.00,0.180267,0.000000,205,0,26.152776,0.113934,6572765,5749314,0,0,21226,0,1,1 +1773555937.525672,5.92,4,3992.50,57.46,1424.89,2249.81,0.00,8196.220922,9041.892149,601945,1145882,4.031632,0.020691,6574063,5750272,0,0,21229,0,1,1 +1773555942.526315,0.70,4,3992.50,57.41,1426.83,2247.88,0.00,3517985190955.612305,3517985190119.414062,251,190,0.002721,0.003951,6574127,5750352,0,0,21232,0,1,1 +1773555947.525995,0.55,4,3992.50,57.38,1428.17,2246.54,0.00,3518662461688.888672,3518662461679.869629,11,0,0.002734,0.003955,6574192,5750432,0,0,21234,0,1,1 +1773555952.524847,0.55,4,3992.50,57.39,1427.93,2246.77,0.00,2.012767,0.000195,246,2,0.002734,0.003965,6574257,5750513,0,0,21237,0,1,1 +1773555957.523050,0.75,4,3992.50,57.39,1427.71,2247.00,0.00,3519701683534.804199,10.678836,251,190,0.002735,0.003956,6574322,5750593,0,0,21239,0,1,1 +1773555962.521704,0.90,4,3992.50,57.43,1419.23,2248.38,0.00,8195.340480,9032.194230,601945,1146125,0.002734,0.003965,6574387,5750674,0,0,21242,0,1,1 +1773555967.521734,0.55,4,3992.50,57.02,1435.15,2232.27,0.00,3518416121859.436523,3518416121011.782227,246,2,0.002505,0.003321,6574445,5750742,0,0,21244,0,1,1 +1773555972.525717,0.65,4,3992.50,57.05,1433.70,2233.73,0.00,3515636815016.765625,3515636815018.776855,11,0,0.002739,0.003959,6574511,5750823,0,0,21246,0,1,1 +1773555977.526134,0.55,4,3992.50,57.05,1433.96,2233.46,0.00,0.000000,0.000000,11,0,0.002708,0.004608,6574574,5750908,0,0,21249,0,1,1 +1773555982.526499,0.65,4,3992.50,57.05,1433.73,2233.70,0.00,0.000000,0.000000,11,0,0.002721,0.003951,6574638,5750988,0,0,21252,0,1,1 +1773555987.525874,0.65,4,3992.50,57.05,1433.75,2233.68,0.00,0.180296,0.000000,205,0,0.002734,0.003955,6574703,5751068,0,0,21254,0,1,1 +1773555992.525909,0.85,4,3992.50,57.09,1430.93,2235.10,0.00,3518412689064.989258,0.000000,11,0,0.002734,0.003964,6574768,5751149,0,0,21257,0,1,1 +1773555997.526173,0.70,4,3992.50,57.02,1433.44,2232.60,0.00,2.012198,0.000195,246,2,0.002733,0.003942,6574833,5751228,0,0,21259,0,1,1 +1773556002.524548,16.21,4,3992.50,57.59,1411.24,2254.71,0.00,3519581243837.263672,3519581243839.096191,205,0,20.216729,0.096918,6581517,5756252,0,0,21262,0,1,1 +1773556007.526057,11.92,4,3992.50,57.50,1414.54,2251.35,0.00,1.831479,0.000195,246,2,20.044172,0.092131,6588149,5761218,0,0,21264,0,1,1 +1773556012.521890,0.65,4,3992.50,57.08,1430.93,2234.96,0.00,3521371388068.924805,3521371388070.938965,11,0,0.002736,0.003945,6588214,5761297,0,0,21266,0,1,1 +1773556017.526625,0.60,4,3992.50,56.95,1436.02,2229.86,0.00,8196.699980,9043.240088,603576,1147601,0.002731,0.003960,6588279,5761378,0,0,21269,0,1,1 +1773556022.526626,0.95,4,3992.50,57.18,1426.18,2238.66,0.00,3518436978767.859375,3518436978766.963379,602087,1147443,0.002505,0.003331,6588337,5761447,0,0,21272,0,1,1 +1773556027.525908,0.65,4,3992.50,57.21,1424.81,2239.99,0.00,0.000000,0.175318,602087,1147457,0.002734,0.003955,6588402,5761527,0,0,21274,0,1,1 +1773556032.525760,0.60,4,3992.50,57.20,1425.46,2239.34,0.00,3518540986389.723145,3518540985552.096191,251,190,0.002734,0.003964,6588467,5761608,0,0,21277,0,1,1 +1773556037.526445,0.70,4,3992.50,57.14,1427.80,2237.00,0.00,8201.683295,9040.664127,603576,1147938,0.002733,0.003954,6588532,5761688,0,0,21279,0,1,1 +1773556042.523889,0.60,4,3992.50,57.16,1426.68,2238.12,0.00,3520236917578.618652,3520236916730.016602,75,0,0.002735,0.004611,6588597,5761773,0,0,21282,0,1,1 +1773556047.525974,0.95,4,3992.50,56.94,1435.39,2229.41,0.00,1.601969,10.670746,251,190,0.004474,0.005283,6588688,5761869,0,0,21284,0,1,1 +1773556052.526308,1.00,4,3992.50,57.03,1431.57,2232.75,0.00,3518201941088.800781,3518201941079.602051,205,0,0.004764,0.005231,6588777,5761965,0,0,21286,0,1,1 +1773556057.522720,0.60,4,3992.50,57.04,1431.04,2233.29,0.00,3520963470597.080078,0.000000,11,0,0.002723,0.003967,6588841,5762046,0,0,21289,0,1,1 +1773556062.526056,0.55,4,3992.50,57.04,1431.18,2233.16,0.00,0.053480,0.000000,75,0,0.002503,0.003328,6588899,5762115,0,0,21292,0,1,1 +1773556067.524199,0.70,4,3992.50,56.94,1434.86,2229.48,0.00,0.000000,0.000000,75,0,0.003188,0.004244,6588961,5762185,0,0,21294,0,1,1 +1773556072.521677,18.97,4,3992.50,58.10,1389.54,2274.69,0.00,0.000000,0.000000,75,0,28.190703,0.129277,6598187,5769035,0,0,21297,0,1,1 +1773556077.525743,9.24,4,3992.50,57.45,1415.10,2249.10,0.00,0.126655,0.000000,205,0,12.075364,0.059276,6602267,5772095,0,0,21299,0,1,1 +1773556082.521770,0.95,4,3992.50,57.54,1421.88,2252.85,0.00,3521234839117.909180,0.000000,11,0,0.002744,0.003975,6602333,5772177,0,0,21302,0,1,1 +1773556087.526569,0.65,4,3992.50,57.52,1422.56,2252.18,0.00,1.654564,10.664959,251,190,0.002731,0.003951,6602398,5772257,0,0,21304,0,1,1 +1773556092.521794,0.65,4,3992.50,57.52,1422.81,2251.93,0.00,3521800344372.622070,3521800344363.414062,205,0,0.002761,0.003989,6602465,5772339,0,0,21306,0,1,1 +1773556097.521722,0.55,4,3992.50,57.52,1422.59,2252.16,0.00,1.832058,0.000195,246,2,0.002746,0.003995,6602531,5772422,0,0,21309,0,1,1 +1773556102.521724,0.80,4,3992.50,57.53,1422.45,2252.30,0.00,8193.011840,9043.411791,602230,1149450,0.002734,0.003964,6602596,5772503,0,0,21312,0,1,1 +1773556107.526403,0.65,4,3992.50,57.19,1435.49,2239.26,0.00,3515147532996.709473,3515147532149.114746,11,0,0.002731,0.004594,6602661,5772587,0,0,21314,0,1,1 +1773556112.526200,0.95,4,3992.50,57.27,1433.82,2242.42,0.00,1.656219,10.675628,251,190,0.002505,0.003331,6602719,5772656,0,0,21317,0,1,1 +1773556117.524764,0.90,4,3992.50,57.19,1437.11,2239.12,0.00,3519448529455.379883,3519448529446.358398,11,0,0.002501,0.003330,6602777,5772725,0,0,21319,0,1,1 +1773556122.525256,0.60,4,3992.50,57.19,1437.12,2239.11,0.00,8203.780430,9053.563573,603719,1149991,0.002733,0.003964,6602842,5772806,0,0,21322,0,1,1 +1773556127.526634,0.55,4,3992.50,56.94,1447.09,2229.13,0.00,3517468261989.328125,3517468261137.684082,246,2,0.002733,0.003953,6602907,5772886,0,0,21324,0,1,1 +1773556132.521706,1.55,4,3992.50,56.39,1468.37,2207.88,0.00,8210.668047,9063.428732,603719,1150044,0.002736,0.003958,6602972,5772966,0,0,21326,0,1,1 +1773556137.525687,4.26,4,3992.50,57.08,1441.40,2234.84,0.00,3515638411243.839844,3515638411242.768555,602242,1149955,2.117242,0.016549,6603778,5773591,0,0,21329,0,1,1 +1773556142.525956,20.59,4,3992.50,57.28,1435.07,2242.59,0.00,3518247923877.417969,3518247923026.615723,246,2,34.105140,0.151256,6614734,5781749,0,0,21332,0,1,1 +1773556147.523954,4.27,4,3992.50,57.56,1424.09,2253.51,0.00,3519846457551.240234,3519846457553.072754,205,0,4.038754,0.025516,6616324,5782934,0,0,21334,0,1,1 +1773556152.521958,0.70,4,3992.50,57.25,1436.24,2241.36,0.00,8207.803315,9058.814925,603870,1151024,0.002730,0.003961,6616389,5783015,0,0,21337,0,1,1 +1773556157.521781,0.65,4,3992.50,57.22,1437.20,2240.39,0.00,0.000781,0.037892,603871,1151040,0.002721,0.003954,6616453,5783095,0,0,21339,0,1,1 +1773556162.525779,0.50,4,3992.50,57.03,1444.56,2233.03,0.00,0.000000,0.336742,603871,1151310,0.002543,0.003805,6616514,5783173,0,0,21341,0,1,1 +1773556167.525835,0.65,4,3992.50,57.03,1444.91,2232.68,0.00,3518398361078.984375,3518398360228.127930,11,0,0.002734,0.003964,6616579,5783254,0,0,21344,0,1,1 +1773556172.525016,0.80,4,3992.50,57.04,1441.36,2233.05,0.00,1.656424,10.676944,251,190,0.002505,0.003965,6616637,5783326,0,0,21346,0,1,1 +1773556177.521726,0.65,4,3992.50,56.99,1443.21,2231.11,0.00,3520753812783.198730,3520753812774.173828,11,0,0.002735,0.003967,6616702,5783407,0,0,21349,0,1,1 +1773556182.521794,0.70,4,3992.50,57.02,1441.76,2232.56,0.00,8195.033788,9045.185800,602382,1151429,0.002734,0.003939,6616767,5783486,0,0,21352,0,1,1 +1773556187.522057,0.60,4,3992.50,57.02,1441.77,2232.55,0.00,3518252548017.853027,3518252547167.553711,205,0,0.002778,0.004012,6616835,5783571,0,0,21354,0,1,1 +1773556192.526279,0.60,4,3992.50,57.02,1441.78,2232.54,0.00,3515468501197.866699,0.000000,75,0,0.002731,0.003961,6616900,5783652,0,0,21357,0,1,1 +1773556197.525880,0.70,4,3992.50,57.02,1441.80,2232.52,0.00,3518718033546.942383,0.000000,11,0,0.002734,0.003955,6616965,5783732,0,0,21359,0,1,1 +1773556202.521755,1.05,4,3992.50,57.26,1436.82,2241.81,0.00,0.053560,0.000000,75,0,0.002736,0.003968,6617030,5783813,0,0,21362,0,1,1 +1773556207.521702,7.07,4,3992.50,57.19,1439.41,2239.19,0.00,1.958810,0.000195,246,2,8.051373,0.038632,6619675,5785772,0,0,21364,0,1,1 +1773556212.526452,20.14,4,3992.50,57.64,1421.73,2256.77,0.00,3515097944573.692871,10.664869,251,190,30.155049,0.133623,6629501,5793034,0,0,21366,0,1,1 +1773556217.525970,3.31,4,3992.50,57.35,1432.96,2245.54,0.00,3518776738464.240234,3518776738455.040039,205,0,2.026522,0.015276,6630382,5793690,0,0,21369,0,1,1 +1773556222.525979,1.10,4,3992.50,57.31,1434.62,2243.89,0.00,8195.063267,9046.059529,602524,1152536,0.002970,0.004293,6630453,5793778,0,0,21372,0,1,1 +1773556227.526047,0.90,4,3992.50,57.34,1433.65,2244.85,0.00,3518389420961.261719,3518389420119.474609,251,190,0.002734,0.003942,6630518,5793857,0,0,21374,0,1,1 +1773556232.524586,1.10,4,3992.50,57.55,1418.01,2253.31,0.00,3519465256649.373535,3519465256640.171387,205,0,0.002722,0.003965,6630582,5793938,0,0,21377,0,1,1 +1773556237.526203,0.75,4,3992.50,57.55,1418.11,2253.29,0.00,1.475402,10.671744,251,190,0.002733,0.004597,6630647,5794022,0,0,21379,0,1,1 +1773556242.526066,0.90,4,3992.50,57.47,1421.52,2249.88,0.00,3518533520292.181152,3518533520283.162109,11,0,0.002721,0.003964,6630711,5794103,0,0,21382,0,1,1 +1773556247.521718,0.70,4,3992.50,57.48,1420.83,2250.56,0.00,0.180430,0.000000,205,0,0.002744,0.003953,6630777,5794183,0,0,21384,0,1,1 +1773556252.522673,0.90,4,3992.50,57.51,1419.87,2251.53,0.00,1.831681,0.000195,246,2,0.002721,0.003954,6630841,5794263,0,0,21386,0,1,1 +1773556257.522656,0.75,4,3992.50,57.53,1419.14,2252.26,0.00,3518449108981.420410,10.675036,251,190,0.002505,0.003331,6630899,5794332,0,0,21389,0,1,1 +1773556262.524651,1.10,4,3992.50,57.33,1428.74,2244.54,0.00,3517034097975.851562,3517034097966.836426,11,0,0.002733,0.003963,6630964,5794413,0,0,21392,0,1,1 +1773556267.526568,0.75,4,3992.50,57.31,1429.59,2243.70,0.00,2.011533,0.000195,246,2,0.002733,0.003940,6631029,5794492,0,0,21394,0,1,1 +1773556272.525572,0.85,4,3992.50,57.10,1437.61,2235.68,0.00,3519138274718.069336,10.677127,251,190,0.002734,0.003965,6631094,5794573,0,0,21397,0,1,1 +1773556277.526211,0.90,4,3992.50,56.84,1447.81,2225.48,0.00,3517987509463.572266,3517987509454.374023,205,0,0.002741,0.003962,6631160,5794654,0,0,21399,0,1,1 +1773556282.522121,11.88,4,3992.50,56.90,1445.57,2227.66,0.00,8211.393058,9065.299784,604060,1153751,12.092817,0.060299,6635149,5797537,0,0,21401,0,1,1 +1773556287.521774,15.23,4,3992.50,56.97,1442.50,2230.66,0.00,3518681533701.679688,3518681532848.539062,75,0,26.149225,0.109778,6643395,5803720,0,0,21404,0,1,1 +1773556292.521768,4.16,4,3992.50,57.27,1426.69,2242.16,0.00,8195.322726,9047.935458,602663,1154298,2.029221,0.018021,6644328,5804407,0,0,21406,0,1,1 +1773556297.526366,0.90,4,3992.50,57.27,1426.71,2242.15,0.00,0.000000,0.182742,602663,1154506,0.002706,0.003961,6644391,5804488,0,0,21409,0,1,1 +1773556302.526391,0.70,4,3992.50,57.25,1427.27,2241.59,0.00,3518419441114.042480,3518419440261.125488,205,0,0.002734,0.004608,6644456,5804573,0,0,21412,0,1,1 +1773556307.526547,0.70,4,3992.50,57.25,1427.24,2241.62,0.00,3518327423697.809570,0.000000,75,0,0.002525,0.003316,6644516,5804641,0,0,21414,0,1,1 +1773556312.521708,0.60,4,3992.50,57.26,1427.02,2241.84,0.00,1.960686,0.000196,246,2,0.002736,0.003955,6644581,5804721,0,0,21417,0,1,1 +1773556317.526428,0.70,4,3992.50,57.26,1427.03,2241.83,0.00,3515119174004.639160,10.664933,251,190,0.002731,0.003951,6644646,5804801,0,0,21419,0,1,1 +1773556322.523401,1.25,4,3992.50,57.50,1417.77,2251.13,0.00,3520568203886.741699,3520568203877.536621,205,0,0.002748,0.003944,6644712,5804880,0,0,21421,0,1,1 +1773556327.526301,0.60,4,3992.50,57.24,1427.65,2241.20,0.00,3516397866204.438965,0.000000,11,0,0.002719,0.003949,6644776,5804960,0,0,21424,0,1,1 +1773556332.521808,0.60,4,3992.50,57.07,1434.61,2234.25,0.00,1.657642,10.684797,251,190,0.002513,0.003747,6644835,5805035,0,0,21426,0,1,1 +1773556337.521793,0.60,4,3992.50,57.07,1434.38,2234.49,0.00,0.000000,0.000000,251,190,0.002346,0.003946,6644895,5805115,0,0,21429,0,1,1 +1773556342.525652,0.60,4,3992.50,57.10,1433.41,2235.45,0.00,3515723269507.420898,3515723269498.409180,11,0,0.002732,0.003961,6644960,5805196,0,0,21432,0,1,1 +1773556347.526221,1.30,4,3992.50,57.10,1433.42,2235.44,0.00,0.000000,0.000000,11,0,0.003569,0.003722,6645040,5805277,0,0,21434,0,1,1 +1773556352.526139,1.10,4,3992.50,57.39,1421.44,2247.05,0.00,1.656179,10.675370,251,190,0.004513,0.005493,6645130,5805373,0,0,21437,0,1,1 +1773556357.525552,14.67,4,3992.50,57.22,1428.07,2240.32,0.00,3518850507022.604980,3518850507013.584961,11,0,16.123274,0.085449,6650682,5809461,0,0,21439,0,1,1 +1773556362.526283,14.59,4,3992.50,57.73,1407.88,2260.43,0.00,8203.835633,9058.650093,604288,1156201,24.138249,0.102389,6658451,5815177,0,0,21442,0,1,1 +1773556367.524671,0.60,4,3992.50,57.60,1413.32,2255.00,0.00,3519571442156.616211,3519571442155.510254,602799,1156019,0.002514,0.003974,6658510,5815250,0,0,21444,0,1,1 +1773556372.526398,0.70,4,3992.50,57.26,1426.58,2241.73,0.00,3517222729003.406250,3517222728149.867188,11,0,0.003402,0.004884,6658578,5815333,0,0,21447,0,1,1 +1773556377.521714,0.70,4,3992.50,57.25,1426.93,2241.39,0.00,0.000000,0.000000,11,0,0.002736,0.003958,6658643,5815413,0,0,21449,0,1,1 +1773556382.526030,0.90,4,3992.50,57.39,1421.92,2246.90,0.00,0.180118,0.000000,205,0,0.002719,0.003961,6658707,5815494,0,0,21452,0,1,1 +1773556387.525808,0.65,4,3992.50,57.39,1421.75,2246.88,0.00,8195.655653,9050.387083,602799,1156389,0.002734,0.003942,6658772,5815573,0,0,21454,0,1,1 +1773556392.525938,0.65,4,3992.50,57.39,1421.76,2246.87,0.00,3518346140964.094727,3518346140109.423340,205,0,0.002530,0.003374,6658832,5815645,0,0,21457,0,1,1 +1773556397.525911,0.60,4,3992.50,57.39,1421.78,2246.86,0.00,1.475887,10.675252,251,190,0.002754,0.003993,6658899,5815728,0,0,21459,0,1,1 +1773556402.526280,0.60,4,3992.50,57.20,1428.96,2239.67,0.00,3518177732015.692383,3518177732006.620605,75,0,0.002733,0.003951,6658964,5815808,0,0,21462,0,1,1 +1773556407.525831,0.60,4,3992.50,57.21,1428.72,2239.92,0.00,1.958965,0.000195,246,2,0.002734,0.003955,6659029,5815888,0,0,21464,0,1,1 +1773556412.525072,0.85,4,3992.50,57.23,1427.33,2240.85,0.00,3518971770958.009766,10.676622,251,190,0.002721,0.003955,6659093,5815968,0,0,21466,0,1,1 +1773556417.526432,0.80,4,3992.50,57.24,1424.35,2241.04,0.00,0.356056,3517480762236.511230,246,2,0.002733,0.003963,6659158,5816049,0,0,21469,0,1,1 +1773556422.525561,0.90,4,3992.50,57.22,1424.93,2240.46,0.00,8204.451093,9062.534562,604289,1156831,0.003285,0.004056,6659233,5816135,0,0,21472,0,1,1 +1773556427.522655,19.75,4,3992.50,57.11,1429.48,2235.83,0.00,3520483185104.823242,3520483184248.403320,11,0,28.198232,0.129838,6668502,5823031,0,0,21474,0,1,1 +1773556432.521851,7.54,4,3992.50,57.49,1414.21,2251.05,0.00,8206.462352,9062.796425,604427,1157787,12.080537,0.058956,6672487,5826091,0,0,21477,0,1,1 +1773556437.525741,0.70,4,3992.50,57.49,1414.23,2251.04,0.00,3515702440275.594727,3515702440274.696289,602938,1157611,0.002731,0.003939,6672552,5826170,0,0,21479,0,1,1 +1773556442.526540,1.10,4,3992.50,57.44,1414.92,2248.71,0.00,3517874678457.046875,3517874677599.875000,246,2,0.005089,0.006389,6672635,5826279,0,0,21482,0,1,1 +1773556447.526062,0.80,4,3992.50,57.03,1430.78,2232.86,0.00,3518773980184.165039,10.676022,251,190,0.003001,0.004408,6672705,5826369,0,0,21484,0,1,1 +1773556452.524346,0.55,4,3992.50,56.91,1435.48,2228.16,0.00,3519644553960.927246,3519644553951.725098,205,0,0.002743,0.003964,6672771,5826450,0,0,21486,0,1,1 +1773556457.521718,0.70,4,3992.50,56.90,1435.73,2227.92,0.00,1.832995,0.000195,246,2,0.002748,0.003966,6672837,5826531,0,0,21489,0,1,1 +1773556462.521797,0.60,4,3992.50,56.94,1434.30,2229.35,0.00,3518381547381.431641,3518381547383.444336,11,0,0.002734,0.003964,6672902,5826612,0,0,21492,0,1,1 +1773556467.522401,0.60,4,3992.50,56.91,1435.56,2228.09,0.00,0.000000,0.000000,11,0,0.002733,0.003954,6672967,5826692,0,0,21494,0,1,1 +1773556472.526194,0.95,4,3992.50,57.08,1422.88,2234.91,0.00,0.180137,0.000000,205,0,0.002732,0.003961,6673032,5826773,0,0,21497,0,1,1 +1773556477.526578,0.60,4,3992.50,57.03,1424.81,2232.99,0.00,1.475766,10.674376,251,190,0.002721,0.003941,6673096,5826852,0,0,21499,0,1,1 +1773556482.521720,0.65,4,3992.50,57.03,1424.83,2232.97,0.00,0.356499,3521859362283.146484,246,2,0.002507,0.003334,6673154,5826921,0,0,21502,0,1,1 +1773556487.524161,0.60,4,3992.50,57.03,1424.96,2232.84,0.00,3516720308749.401367,3516720308751.232422,205,0,0.002802,0.004011,6673224,5827006,0,0,21504,0,1,1 +1773556492.526641,4.36,4,3992.50,56.96,1427.53,2230.27,0.00,8191.349618,9047.324328,602952,1158372,4.025702,0.021410,6674539,5828000,0,0,21507,0,1,1 +1773556497.526037,21.90,4,3992.50,57.66,1400.00,2257.69,0.00,3518861788662.344727,3518861787806.022461,11,0,34.216442,0.155282,6685846,5836415,0,0,21509,0,1,1 +1773556502.522594,2.71,4,3992.50,57.28,1415.56,2242.54,0.00,0.180398,0.000000,205,0,2.027096,0.018336,6686784,5837150,0,0,21512,0,1,1 +1773556507.525879,0.60,4,3992.50,57.31,1413.85,2243.98,0.00,0.000000,0.000000,205,0,0.002719,0.003939,6686848,5837229,0,0,21514,0,1,1 +1773556512.525884,0.65,4,3992.50,57.34,1412.80,2245.04,0.00,3518433649635.539551,0.000000,11,0,0.002734,0.003964,6686913,5837310,0,0,21517,0,1,1 +1773556517.521713,0.55,4,3992.50,57.32,1413.73,2244.11,0.00,0.000000,0.000000,11,0,0.002736,0.003958,6686978,5837390,0,0,21519,0,1,1 +1773556522.521691,0.65,4,3992.50,57.35,1412.53,2245.32,0.00,0.053516,0.000000,75,0,0.002734,0.003964,6687043,5837471,0,0,21522,0,1,1 +1773556527.525801,0.65,4,3992.50,57.35,1412.54,2245.30,0.00,1.601320,10.666427,251,190,0.002731,0.003951,6687108,5837551,0,0,21524,0,1,1 +1773556532.525570,0.80,4,3992.50,57.35,1416.27,2245.26,0.00,8194.410328,9042.935515,603075,1159790,0.002734,0.003942,6687173,5837630,0,0,21526,0,1,1 +1773556537.525103,0.60,4,3992.50,57.35,1415.66,2245.23,0.00,3518766408027.607422,3518766407170.021973,11,0,0.002513,0.003352,6687232,5837701,0,0,21529,0,1,1 +1773556542.521699,0.70,4,3992.50,57.31,1417.06,2243.85,0.00,8201.270255,9059.453856,603075,1159883,0.002735,0.003967,6687297,5837782,0,0,21532,0,1,1 +1773556547.526316,0.60,4,3992.50,57.32,1416.63,2244.28,0.00,3515191602486.748047,3515191601629.939453,11,0,0.002731,0.003938,6687362,5837861,0,0,21534,0,1,1 +1773556552.525741,0.65,4,3992.50,57.37,1414.91,2245.98,0.00,8196.630437,9054.389373,603075,1159960,0.002505,0.003331,6687420,5837930,0,0,21537,0,1,1 +1773556557.526263,0.60,4,3992.50,57.38,1414.20,2246.70,0.00,3518070168870.161621,3518070168012.590332,11,0,0.002492,0.003320,6687477,5837998,0,0,21539,0,1,1 +1773556562.528804,7.67,4,3992.50,57.50,1405.50,2251.30,0.00,8201.101096,9059.617655,604588,1160380,4.160322,0.031905,6689118,5839224,0,0,21541,0,1,1 +1773556567.526537,21.03,4,3992.50,56.61,1440.05,2216.41,0.00,0.091448,0.505112,604705,1161306,36.115701,0.158718,6700865,5848082,0,0,21544,0,1,1 +1773556572.526259,0.90,4,3992.50,56.43,1446.96,2209.51,0.00,3518633270889.059570,3518633270027.632812,246,2,0.003654,0.004374,6700948,5848174,0,0,21546,0,1,1 +1773556577.525882,0.60,4,3992.50,56.45,1446.52,2209.95,0.00,3518702519051.124023,3518702519053.136719,11,0,0.002721,0.003952,6701012,5848254,0,0,21549,0,1,1 +1773556582.525684,0.60,4,3992.50,56.39,1448.61,2207.85,0.00,1.656218,10.675617,251,190,0.002709,0.003964,6701075,5848335,0,0,21552,0,1,1 +1773556587.524207,0.70,4,3992.50,56.39,1448.60,2207.87,0.00,3519476674351.145996,3519476674342.070801,75,0,0.002742,0.003963,6701141,5848416,0,0,21554,0,1,1 +1773556592.526247,0.85,4,3992.50,56.68,1439.20,2219.30,0.00,0.000000,0.000000,75,0,0.002732,0.003963,6701206,5848497,0,0,21557,0,1,1 +1773556597.526703,0.60,4,3992.50,56.45,1448.10,2210.29,0.00,3518116341193.117676,0.000000,11,0,0.002733,0.003941,6701271,5848576,0,0,21559,0,1,1 +1773556602.524454,0.65,4,3992.50,56.42,1449.54,2208.86,0.00,2.013210,0.000195,246,2,0.003960,0.004459,6701359,5848670,0,0,21562,0,1,1 +1773556607.525819,0.60,4,3992.50,56.42,1449.55,2208.85,0.00,8201.107746,9063.082565,604705,1161805,0.002504,0.003320,6701417,5848738,0,0,21564,0,1,1 +1773556612.521798,0.60,4,3992.50,56.42,1449.55,2208.84,0.00,0.000000,0.047010,604705,1161846,0.002723,0.003957,6701481,5848818,0,0,21566,0,1,1 +1773556617.523113,0.60,4,3992.50,56.42,1449.58,2208.82,0.00,3517512206824.333008,3517512205964.314453,11,0,0.002733,0.003963,6701546,5848899,0,0,21569,0,1,1 +1773556622.523190,0.90,4,3992.50,56.77,1435.59,2222.83,0.00,0.053515,0.000000,75,0,0.002721,0.003952,6701610,5848979,0,0,21572,0,1,1 +1773556627.521807,0.60,4,3992.50,56.76,1436.00,2222.43,0.00,3519410876426.339355,0.000000,11,0,0.002734,0.004600,6701675,5849063,0,0,21574,0,1,1 +1773556632.526605,11.93,4,3992.50,56.96,1428.32,2230.09,0.00,1.654565,10.664962,251,190,12.074311,0.060953,6705625,5851977,0,0,21577,0,1,1 +1773556637.521788,15.20,4,3992.50,57.15,1420.96,2237.36,0.00,8211.700747,9064.030938,604815,1162693,24.160554,0.101057,6713289,5857586,0,0,21579,0,1,1 +1773556642.521719,4.21,4,3992.50,56.83,1433.48,2224.82,0.00,3518485660077.053223,3518485659216.513184,11,0,4.036155,0.022832,6714761,5858617,0,0,21582,0,1,1 +1773556647.526260,0.80,4,3992.50,56.75,1436.40,2221.90,0.00,8188.463674,9047.628744,603347,1162857,0.003794,0.004352,6714848,5858710,0,0,21584,0,1,1 +1773556652.526075,1.15,4,3992.50,56.94,1429.41,2229.23,0.00,3518567655807.431152,3518567654945.441895,246,2,0.003843,0.004549,6714935,5858802,0,0,21586,0,1,1 +1773556657.523968,0.65,4,3992.50,56.96,1428.09,2230.20,0.00,3519920142086.912598,10.679499,251,190,0.003428,0.004015,6714995,5858875,0,0,21589,0,1,1 +1773556662.523284,0.75,4,3992.50,56.97,1427.86,2230.42,0.00,3518918867939.430176,3518918867930.410645,11,0,0.002709,0.003952,6715058,5858955,0,0,21592,0,1,1 +1773556667.522599,0.60,4,3992.50,56.97,1427.87,2230.41,0.00,8197.023991,9057.600789,603347,1163187,0.002734,0.003955,6715123,5859035,0,0,21594,0,1,1 +1773556672.522695,0.65,4,3992.50,56.97,1427.88,2230.41,0.00,3518369631102.261230,3518369630241.765137,75,0,0.003403,0.004886,6715191,5859118,0,0,21597,0,1,1 +1773556677.523952,0.65,4,3992.50,56.78,1435.07,2223.21,0.00,8193.787314,9054.172074,603347,1163268,0.002746,0.003953,6715257,5859198,0,0,21599,0,1,1 +1773556682.523647,1.00,4,3992.50,57.14,1421.36,2237.13,0.00,3518651589313.768555,3518651588453.114746,75,0,0.002742,0.003972,6715323,5859280,0,0,21602,0,1,1 +1773556687.521713,0.65,4,3992.50,56.97,1427.76,2230.55,0.00,0.000000,0.000000,75,0,0.002735,0.003956,6715388,5859360,0,0,21604,0,1,1 +1773556692.521795,0.50,4,3992.50,57.00,1426.55,2231.77,0.00,1.958757,0.000195,246,2,0.002517,0.003996,6715447,5859434,0,0,21606,0,1,1 +1773556697.524319,0.55,4,3992.50,57.00,1426.61,2231.71,0.00,0.000000,0.000000,246,2,0.002757,0.003993,6715514,5859517,0,0,21609,0,1,1 +1773556702.521805,1.50,4,3992.50,56.82,1433.66,2224.68,0.00,3520207566325.003418,3520207566326.962891,75,0,0.002722,0.003966,6715578,5859598,0,0,21612,0,1,1 +1773556707.522584,14.53,4,3992.50,56.88,1431.23,2227.02,0.00,1.602387,10.673532,251,190,18.129068,0.092590,6721805,5864284,0,0,21614,0,1,1 +1773556712.522572,8.43,4,3992.50,57.62,1402.41,2255.81,0.00,3518445844555.078125,3518445844546.005859,75,0,14.074718,0.056951,6726135,5867496,0,0,21617,0,1,1 +1773556717.521809,8.64,4,3992.50,57.36,1421.89,2245.92,0.00,1.959088,0.000195,246,2,8.056110,0.038925,6728743,5869426,0,0,21619,0,1,1 +1773556722.521716,0.65,4,3992.50,57.19,1428.84,2238.96,0.00,3518502888776.268555,10.675199,251,190,0.002734,0.003964,6728808,5869507,0,0,21622,0,1,1 +1773556727.525990,0.55,4,3992.50,57.03,1435.12,2232.68,0.00,0.000000,0.000000,251,190,0.002731,0.003951,6728873,5869587,0,0,21624,0,1,1 +1773556732.522498,0.65,4,3992.50,56.81,1443.57,2224.24,0.00,8200.070808,9053.400262,603474,1164625,0.002731,0.003965,6728938,5869668,0,0,21626,0,1,1 +1773556737.521701,0.60,4,3992.50,56.85,1442.13,2225.68,0.00,3518998509101.442871,3518998508239.499512,75,0,0.002505,0.003331,6728996,5869737,0,0,21629,0,1,1 +1773556742.525895,1.10,4,3992.50,57.18,1431.10,2238.59,0.00,0.000000,0.000000,75,0,0.003243,0.005047,6729075,5869840,0,0,21632,0,1,1 +1773556747.522557,0.75,4,3992.50,57.07,1433.29,2234.49,0.00,8201.422273,9064.099315,603474,1164832,0.003232,0.005044,6729152,5869942,0,0,21634,0,1,1 +1773556752.521715,0.65,4,3992.50,57.16,1429.74,2238.05,0.00,3519030117145.048828,3519030116282.802734,75,0,0.002734,0.003965,6729217,5870023,0,0,21637,0,1,1 +1773556757.526680,0.65,4,3992.50,57.13,1431.21,2236.57,0.00,1.956846,0.000195,246,2,0.002731,0.004433,6729282,5870106,0,0,21639,0,1,1 +1773556762.526315,0.60,4,3992.50,57.16,1429.76,2238.02,0.00,8204.148040,9069.527991,604963,1165181,0.002721,0.004126,6729346,5870188,0,0,21642,0,1,1 +1773556767.521790,0.70,4,3992.50,56.96,1437.55,2230.23,0.00,3521624283780.733887,3521624283779.656250,603474,1165030,0.002736,0.003958,6729411,5870268,0,0,21644,0,1,1 +1773556772.521769,0.85,4,3992.50,57.03,1432.11,2232.89,0.00,3518451814225.018555,3518451813362.733398,75,0,0.001899,0.003083,6729458,5870329,0,0,21646,0,1,1 +1773556777.525843,0.80,4,3992.50,56.77,1441.61,2222.67,0.00,0.000000,0.000000,75,0,0.004126,0.004660,6729547,5870425,0,0,21649,0,1,1 +1773556782.525556,20.60,4,3992.50,57.48,1413.87,2250.32,0.00,1.602729,10.675809,251,190,30.187821,0.136786,6739360,5877697,0,0,21652,0,1,1 +1773556787.524732,5.46,4,3992.50,57.47,1414.25,2249.91,0.00,8195.790826,9049.792923,603598,1166018,6.051124,0.034965,6741562,5879387,0,0,21654,0,1,1 +1773556792.521793,3.76,4,3992.50,56.69,1444.46,2219.71,0.00,3520506862315.083984,3520506861449.682617,246,2,4.026051,0.018326,6742809,5880341,0,0,21657,0,1,1 +1773556797.526026,0.85,4,3992.50,56.61,1447.63,2216.52,0.00,3515461307605.995605,3515461307608.006348,11,0,0.002731,0.003951,6742874,5880421,0,0,21659,0,1,1 +1773556802.521713,0.95,4,3992.50,56.98,1430.50,2230.85,0.00,0.053562,0.000000,75,0,0.002736,0.003958,6742939,5880501,0,0,21661,0,1,1 +1773556807.521777,0.65,4,3992.50,56.92,1432.72,2228.44,0.00,0.126756,0.000000,205,0,0.002734,0.003964,6743004,5880582,0,0,21664,0,1,1 +1773556812.525744,0.60,4,3992.50,56.92,1432.53,2228.62,0.00,8189.426166,9052.752148,603608,1166678,0.002731,0.003951,6743069,5880662,0,0,21666,0,1,1 +1773556817.523906,0.50,4,3992.50,56.94,1431.80,2229.35,0.00,3519730901011.998535,3519730900145.837402,246,2,0.002506,0.003332,6743127,5880731,0,0,21669,0,1,1 +1773556822.521720,0.55,4,3992.50,56.89,1433.77,2227.39,0.00,3519976786889.824219,10.679671,251,190,0.002735,0.004449,6743192,5880815,0,0,21672,0,1,1 +1773556827.526136,0.60,4,3992.50,56.93,1432.30,2228.85,0.00,3515332039456.853027,3515332039447.842285,11,0,0.002731,0.004112,6743257,5880896,0,0,21674,0,1,1 +1773556832.525691,0.90,4,3992.50,57.12,1425.78,2236.43,0.00,0.053520,0.000000,75,0,0.002742,0.003973,6743323,5880978,0,0,21677,0,1,1 +1773556837.526036,0.60,4,3992.50,57.12,1425.75,2236.41,0.00,8205.046948,9070.203495,605097,1167095,0.002733,0.003941,6743388,5881057,0,0,21679,0,1,1 +1773556842.522108,0.60,4,3992.50,57.06,1428.18,2233.97,0.00,3521203264295.838867,3521203263429.942383,75,0,0.002736,0.003967,6743453,5881138,0,0,21682,0,1,1 +1773556847.526054,0.75,4,3992.50,57.06,1427.97,2234.20,0.00,1.957244,0.000195,246,2,0.002731,0.003951,6743518,5881218,0,0,21684,0,1,1 +1773556852.524581,2.91,4,3992.50,57.20,1422.72,2239.40,0.00,3519473718527.663574,3519473718529.622559,75,0,2.020536,0.014915,6744301,5881822,0,0,21686,0,1,1 +1773556857.525980,21.86,4,3992.50,58.07,1388.59,2273.48,0.00,1.958241,0.000195,246,2,32.192113,0.144608,6754699,5889505,0,0,21689,0,1,1 +1773556862.525756,4.66,4,3992.50,58.45,1375.86,2288.51,0.00,3518594821521.341797,3518594821523.354492,11,0,6.039691,0.031416,6756732,5891089,0,0,21692,0,1,1 +1773556867.526377,0.55,4,3992.50,58.06,1391.17,2273.23,0.00,0.000000,0.000000,11,0,0.002721,0.003941,6756796,5891168,0,0,21694,0,1,1 +1773556872.521733,0.60,4,3992.50,57.94,1395.74,2268.64,0.00,2.014175,0.000195,246,2,0.002744,0.003976,6756862,5891250,0,0,21697,0,1,1 +1773556877.526273,0.65,4,3992.50,57.97,1394.64,2269.75,0.00,3515245276180.136719,3515245276182.147461,11,0,0.002502,0.003318,6756920,5891318,0,0,21699,0,1,1 +1773556882.526310,0.55,4,3992.50,57.97,1394.66,2269.73,0.00,0.000000,0.000000,11,0,0.002505,0.003331,6756978,5891387,0,0,21702,0,1,1 +1773556887.526660,0.65,4,3992.50,57.97,1394.67,2269.71,0.00,0.053512,0.000000,75,0,0.002733,0.003954,6757043,5891467,0,0,21704,0,1,1 +1773556892.523469,0.95,4,3992.50,57.97,1394.88,2269.66,0.00,1.960040,0.000195,246,2,0.002735,0.004601,6757108,5891551,0,0,21706,0,1,1 +1773556897.526462,0.65,4,3992.50,57.81,1400.84,2263.56,0.00,3516332014662.452637,10.668613,251,190,0.002732,0.003962,6757173,5891632,0,0,21709,0,1,1 +1773556902.526113,0.55,4,3992.50,57.81,1400.85,2263.55,0.00,3518682774233.674805,3518682774224.655273,11,0,0.002505,0.003331,6757231,5891701,0,0,21712,0,1,1 +1773556907.523947,0.50,4,3992.50,57.61,1408.73,2255.66,0.00,8199.756882,9065.715996,603736,1168682,0.002735,0.003943,6757296,5891780,0,0,21714,0,1,1 +1773556912.525849,0.60,4,3992.50,57.62,1408.27,2256.12,0.00,3517099298927.416504,3517099298062.107910,75,0,0.002741,0.003971,6757362,5891862,0,0,21717,0,1,1 +1773556917.526355,0.70,4,3992.50,57.63,1408.06,2256.33,0.00,1.602475,10.674115,251,190,0.002733,0.003954,6757427,5891942,0,0,21719,0,1,1 +1773556922.524558,8.38,4,3992.50,57.26,1419.71,2241.76,0.00,0.356280,3519702322932.134766,246,2,8.062194,0.042041,6760217,5893999,0,0,21721,0,1,1 +1773556927.521785,18.08,4,3992.50,57.29,1418.39,2243.00,0.00,3520389342924.663086,3520389342926.496094,205,0,32.220055,0.144098,6770846,5901792,0,0,21724,0,1,1 +1773556932.525702,1.10,4,3992.50,57.30,1418.17,2243.23,0.00,1.830597,0.000195,246,2,0.005410,0.005730,6770961,5901913,0,0,21726,0,1,1 +1773556937.521788,1.05,4,3992.50,57.29,1418.18,2243.21,0.00,3521193346915.889648,3521193346917.723145,205,0,0.002736,0.003967,6771026,5901994,0,0,21729,0,1,1 +1773556942.525970,0.60,4,3992.50,57.29,1418.19,2243.20,0.00,3515497686119.196777,0.000000,11,0,0.002731,0.003948,6771091,5902074,0,0,21732,0,1,1 +1773556947.526139,0.65,4,3992.50,57.29,1418.21,2243.20,0.00,0.053514,0.000000,75,0,0.004455,0.005277,6771180,5902169,0,0,21734,0,1,1 +1773556952.525817,1.20,4,3992.50,57.44,1412.46,2248.96,0.00,1.602740,10.675883,251,190,0.003851,0.005224,6771268,5902268,0,0,21737,0,1,1 +1773556957.525728,0.65,4,3992.50,57.35,1416.02,2245.41,0.00,0.356159,3518500038024.003418,246,2,0.003655,0.004599,6771335,5902349,0,0,21739,0,1,1 +1773556962.526553,0.65,4,3992.50,57.35,1416.03,2245.39,0.00,8202.498748,9072.365722,605350,1170281,0.002504,0.003343,6771393,5902419,0,0,21742,0,1,1 +1773556967.525671,0.75,4,3992.50,57.39,1414.32,2247.09,0.00,3519057752479.595215,3519057752478.521484,603861,1170133,0.002734,0.003942,6771458,5902498,0,0,21744,0,1,1 +1773556972.526059,0.60,4,3992.50,57.39,1414.34,2247.09,0.00,3518164199588.603516,3518164198721.746582,11,0,0.002733,0.003954,6771523,5902578,0,0,21746,0,1,1 +1773556977.522284,0.70,4,3992.50,57.40,1414.13,2247.28,0.00,8202.495068,9070.120215,603861,1170186,0.003217,0.004744,6771587,5902659,0,0,21749,0,1,1 +1773556982.521790,0.85,4,3992.50,57.51,1416.10,2251.66,0.00,9.562469,10.743152,605350,1170431,0.002734,0.003965,6771652,5902740,0,0,21752,0,1,1 +1773556987.522060,0.65,4,3992.50,57.47,1415.64,2249.96,0.00,0.000000,0.180850,605350,1170649,0.002721,0.003954,6771716,5902820,0,0,21754,0,1,1 +1773556992.525879,9.95,4,3992.50,57.51,1413.98,2251.61,0.00,3515751479910.238281,3515751479909.165527,603890,1170622,10.056641,0.047367,6774900,5905187,0,0,21757,0,1,1 +1773556997.522497,19.45,4,3992.50,58.24,1385.17,2280.28,0.00,3520819103115.679688,3520819102256.859375,251,190,30.205423,0.133181,6784673,5912509,0,0,21759,0,1,1 +1773557002.523791,2.15,4,3992.50,57.48,1414.86,2250.64,0.00,3517526399590.456543,3517526399581.259766,205,0,0.011285,0.008445,6784896,5912700,0,0,21761,0,1,1 +1773557007.526341,0.75,4,3992.50,57.21,1425.41,2240.09,0.00,1.831098,0.000195,246,2,0.002732,0.003962,6784961,5912781,0,0,21764,0,1,1 +1773557012.525711,0.90,4,3992.50,57.26,1429.79,2241.82,0.00,8195.418922,9065.710436,603985,1171653,0.002492,0.003296,6785018,5912847,0,0,21766,0,1,1 +1773557017.522809,0.60,4,3992.50,57.22,1430.27,2240.47,0.00,3520480633394.374512,3520480632525.646973,75,0,0.002735,0.003980,6785083,5912929,0,0,21769,0,1,1 +1773557022.526501,0.95,4,3992.50,57.25,1429.30,2241.43,0.00,1.601454,10.667319,251,190,0.002706,0.004592,6785146,5913013,0,0,21772,0,1,1 +1773557027.526205,0.55,4,3992.50,57.19,1431.82,2238.92,0.00,3518645404315.254395,3518645404306.181641,75,0,0.002734,0.003955,6785211,5913093,0,0,21774,0,1,1 +1773557032.521708,0.55,4,3992.50,57.20,1431.33,2239.41,0.00,8213.295050,9083.764058,605474,1172157,0.002736,0.003968,6785276,5913174,0,0,21777,0,1,1 +1773557037.521790,0.60,4,3992.50,57.23,1430.14,2240.59,0.00,3518378879325.259766,3518378878455.641602,11,0,0.002742,0.003962,6785342,5913255,0,0,21779,0,1,1 +1773557042.524204,1.00,4,3992.50,57.43,1422.58,2248.40,0.00,0.000000,0.000000,11,0,0.005100,0.006387,6785426,5913364,0,0,21782,0,1,1 +1773557047.524168,0.85,4,3992.50,57.27,1428.32,2242.41,0.00,0.053516,0.000000,75,0,0.003217,0.005016,6785502,5913464,0,0,21784,0,1,1 +1773557052.525745,0.60,4,3992.50,57.26,1429.00,2241.73,0.00,8203.320438,9072.876793,605474,1172302,0.002504,0.003320,6785560,5913532,0,0,21786,0,1,1 +1773557057.521799,0.65,4,3992.50,57.26,1429.02,2241.72,0.00,3521215996900.645508,3521215996899.563477,603985,1172151,0.002736,0.003981,6785625,5913614,0,0,21789,0,1,1 +1773557062.525563,6.21,4,3992.50,57.63,1414.52,2256.21,0.00,3515790392737.970215,3515790391867.917480,246,2,4.026981,0.024087,6786964,5914654,0,0,21792,0,1,1 +1773557067.526446,20.37,4,3992.50,58.42,1383.44,2287.17,0.00,3517816373390.599609,3517816373392.611328,11,0,32.186735,0.141038,6797279,5922339,0,0,21794,0,1,1 +1773557072.522666,6.20,4,3992.50,58.76,1362.92,2300.50,0.00,0.000000,0.000000,11,0,4.035966,0.020393,6798588,5923346,0,0,21797,0,1,1 +1773557077.526327,1.25,4,3992.50,58.27,1382.01,2281.37,0.00,1.654940,10.667383,251,190,0.004955,0.005503,6798696,5923461,0,0,21799,0,1,1 +1773557082.526368,0.55,4,3992.50,58.06,1390.36,2273.04,0.00,8194.776990,9055.535078,604113,1173528,0.002734,0.003952,6798761,5923541,0,0,21802,0,1,1 +1773557087.522204,0.70,4,3992.50,58.06,1390.35,2273.05,0.00,3521369523970.000000,3521369523097.477539,246,2,0.002798,0.004640,6798830,5923628,0,0,21804,0,1,1 +1773557092.526609,0.55,4,3992.50,58.06,1390.16,2273.24,0.00,3515340335362.415039,3515340335364.425781,11,0,0.002731,0.003951,6798895,5923708,0,0,21806,0,1,1 +1773557097.526595,0.55,4,3992.50,58.06,1390.18,2273.22,0.00,2.012310,0.000195,246,2,0.002734,0.003939,6798960,5923787,0,0,21809,0,1,1 +1773557102.526432,1.05,4,3992.50,57.88,1393.32,2266.28,0.00,3518552062161.365234,3518552062163.323730,75,0,0.002492,0.003331,6799017,5923856,0,0,21812,0,1,1 +1773557107.521735,0.75,4,3992.50,57.90,1392.59,2267.01,0.00,1.960631,0.000195,246,2,0.002736,0.003958,6799082,5923936,0,0,21814,0,1,1 +1773557112.525840,0.90,4,3992.50,57.50,1408.41,2251.20,0.00,3515550599424.431641,3515550599426.442383,11,0,0.002731,0.003961,6799147,5924017,0,0,21817,0,1,1 +1773557117.521703,0.80,4,3992.50,57.50,1408.43,2251.18,0.00,8203.287415,9074.270739,604113,1173851,0.002744,0.003966,6799213,5924098,0,0,21819,0,1,1 +1773557122.524570,0.90,4,3992.50,57.50,1408.45,2251.16,0.00,3516420952428.040527,3516420951558.097168,205,0,0.002745,0.003939,6799279,5924177,0,0,21821,0,1,1 +1773557127.525804,0.70,4,3992.50,57.50,1408.46,2251.15,0.00,3517568783763.086426,0.000000,75,0,0.002733,0.003963,6799344,5924258,0,0,21824,0,1,1 +1773557132.525809,1.05,4,3992.50,57.57,1404.73,2254.11,0.00,8196.438353,9066.897035,604113,1173984,0.002734,0.003954,6799409,5924338,0,0,21826,0,1,1 +1773557137.525910,8.44,4,3992.50,57.77,1396.94,2261.91,0.00,3518365822895.758789,3518365822025.190430,205,0,8.258558,0.045648,6802301,5926444,0,0,21829,0,1,1 +1773557142.525965,19.10,4,3992.50,59.04,1347.18,2311.56,0.00,8205.890582,9077.990506,605731,1175199,32.000698,0.140811,6812643,5934183,0,0,21832,0,1,1 +1773557147.526556,1.25,4,3992.50,58.48,1369.03,2289.68,0.00,3518021960102.015137,3518021959230.008301,205,0,0.005323,0.005339,6812762,5934311,0,0,21834,0,1,1 +1773557152.526561,0.85,4,3992.50,57.94,1390.33,2268.41,0.00,8205.974030,9078.147207,605733,1175243,0.002500,0.003983,6812820,5934385,0,0,21837,0,1,1 +1773557157.522224,0.90,4,3992.50,57.36,1413.04,2245.71,0.00,3521491629124.162598,3521491628251.357910,75,0,0.002736,0.003945,6812885,5934464,0,0,21839,0,1,1 +1773557162.521795,1.20,4,3992.50,57.74,1398.43,2260.83,0.00,3518739079397.524414,0.000000,11,0,0.002734,0.003952,6812950,5934544,0,0,21842,0,1,1 +1773557167.524914,0.70,4,3992.50,57.60,1404.15,2255.05,0.00,2.011050,0.000195,246,2,0.002503,0.003331,6813008,5934613,0,0,21844,0,1,1 +1773557172.521718,0.85,4,3992.50,57.60,1403.86,2255.34,0.00,3520687557729.692383,3520687557731.525879,205,0,0.002735,0.003957,6813073,5934693,0,0,21846,0,1,1 +1773557177.526546,0.80,4,3992.50,57.60,1403.88,2255.32,0.00,1.474455,10.664897,251,190,0.002731,0.003960,6813138,5934774,0,0,21849,0,1,1 +1773557182.522666,0.85,4,3992.50,57.61,1403.65,2255.55,0.00,0.000000,0.000000,251,190,0.002744,0.003975,6813204,5934856,0,0,21852,0,1,1 +1773557187.521799,0.80,4,3992.50,57.61,1403.79,2255.41,0.00,8196.368001,9059.252228,604244,1175611,0.002734,0.003955,6813269,5934936,0,0,21854,0,1,1 +1773557192.522490,1.00,4,3992.50,57.47,1408.77,2250.14,0.00,3517950628715.612305,3517950627841.967773,246,2,0.002733,0.003964,6813334,5935017,0,0,21857,0,1,1 +1773557197.524288,0.80,4,3992.50,57.38,1412.52,2246.43,0.00,8201.201719,9075.891574,605733,1175898,0.002733,0.003953,6813399,5935097,0,0,21859,0,1,1 +1773557202.526462,0.85,4,3992.50,57.40,1411.77,2247.18,0.00,3516908034292.712402,3516908033420.099609,11,0,0.002504,0.003329,6813457,5935166,0,0,21862,0,1,1 +1773557207.526471,14.97,4,3992.50,58.10,1384.15,2274.67,0.00,1.656150,10.675177,251,190,18.113681,0.083532,6819233,5939504,0,0,21864,0,1,1 +1773557212.526043,13.87,4,3992.50,58.01,1387.76,2271.04,0.00,8205.301683,9069.855093,605851,1177015,22.148172,0.106002,6826651,5945155,0,0,21866,0,1,1 +1773557217.522776,1.05,4,3992.50,57.89,1392.22,2266.57,0.00,3520737075699.928711,3520737074823.845703,246,2,0.002285,0.003351,6826703,5945217,0,0,21869,0,1,1 +1773557222.526313,1.10,4,3992.50,57.94,1391.00,2268.34,0.00,8188.915334,9062.914443,604367,1176872,0.002732,0.003961,6826768,5945298,0,0,21872,0,1,1 +1773557227.526412,0.85,4,3992.50,57.68,1400.38,2258.28,0.00,3518367469457.983398,3518367468585.341797,75,0,0.002492,0.003321,6826825,5945366,0,0,21874,0,1,1 +1773557232.525904,0.65,4,3992.50,57.68,1400.39,2258.27,0.00,8207.060706,9081.218091,605856,1177208,0.002734,0.003965,6826890,5945447,0,0,21877,0,1,1 +1773557237.525854,0.90,4,3992.50,57.58,1404.47,2254.19,0.00,3518472487437.495605,3518472486563.471680,11,0,0.002734,0.003954,6826955,5945527,0,0,21879,0,1,1 +1773557242.525921,0.80,4,3992.50,57.58,1404.23,2254.43,0.00,8196.610725,9069.615142,604367,1177104,0.002734,0.003954,6827020,5945607,0,0,21881,0,1,1 +1773557247.526158,0.95,4,3992.50,57.61,1403.26,2255.39,0.00,0.000000,0.048728,604367,1177147,0.003806,0.004373,6827108,5945702,0,0,21884,0,1,1 +1773557252.526036,1.20,4,3992.50,57.72,1398.11,2259.75,0.00,3518522855608.889648,3518522854733.791504,246,2,0.004513,0.005484,6827198,5945797,0,0,21886,0,1,1 +1773557257.526346,0.95,4,3992.50,57.64,1401.04,2256.85,0.00,3518218951244.696777,10.674338,251,190,0.003643,0.004621,6827264,5945880,0,0,21889,0,1,1 +1773557262.525897,0.55,4,3992.50,57.67,1400.07,2257.81,0.00,3518753803828.788086,3518753803819.768555,11,0,0.002734,0.003965,6827329,5945961,0,0,21892,0,1,1 +1773557267.521725,0.65,4,3992.50,57.67,1399.85,2258.03,0.00,0.000000,0.000000,11,0,0.002507,0.003311,6827387,5946028,0,0,21894,0,1,1 +1773557272.523358,0.55,4,3992.50,57.67,1399.86,2258.02,0.00,0.000000,0.000000,11,0,0.002733,0.003963,6827452,5946109,0,0,21897,0,1,1 +1773557277.526069,18.16,4,3992.50,58.09,1383.55,2274.23,0.00,0.180176,0.000000,205,0,22.136403,0.103845,6834695,5951347,0,0,21899,0,1,1 +1773557282.524928,11.21,4,3992.50,59.04,1351.07,2311.50,0.00,1.832449,0.000195,246,2,18.113682,0.081932,6840553,5955724,0,0,21902,0,1,1 +1773557287.525728,1.25,4,3992.50,58.66,1366.04,2296.51,0.00,0.000000,0.000000,246,2,0.002733,0.003941,6840618,5955803,0,0,21904,0,1,1 +1773557292.525968,0.50,4,3992.50,58.10,1387.75,2274.80,0.00,0.000000,0.000000,246,2,0.002746,0.003973,6840684,5955884,0,0,21906,0,1,1 +1773557297.526362,0.75,4,3992.50,58.02,1390.99,2271.55,0.00,8194.156378,9070.738039,604490,1178968,0.002759,0.003995,6840751,5955967,0,0,21909,0,1,1 +1773557302.521780,0.80,4,3992.50,58.02,1390.77,2271.77,0.00,3521664725408.933105,3521664724533.491699,11,0,0.002736,0.003968,6840816,5956048,0,0,21912,0,1,1 +1773557307.521805,0.55,4,3992.50,58.03,1390.46,2272.10,0.00,2.012295,0.000195,246,2,0.002721,0.003954,6840880,5956128,0,0,21914,0,1,1 +1773557312.524610,0.95,4,3992.50,57.74,1391.95,2260.55,0.00,3516464345790.662598,3516464345792.493652,205,0,0.002732,0.003949,6840945,5956208,0,0,21917,0,1,1 +1773557317.526281,0.65,4,3992.50,57.74,1391.73,2260.79,0.00,1.831419,0.000195,246,2,0.002512,0.003328,6841004,5956277,0,0,21919,0,1,1 +1773557322.521733,0.85,4,3992.50,57.74,1391.74,2260.78,0.00,8202.265122,9079.935327,604490,1179180,0.002736,0.003968,6841069,5956358,0,0,21922,0,1,1 +1773557327.525812,0.60,4,3992.50,57.74,1391.75,2260.75,0.00,0.000000,0.033176,604490,1179222,0.002731,0.003951,6841134,5956438,0,0,21924,0,1,1 +1773557332.521711,0.55,4,3992.50,57.53,1400.12,2252.40,0.00,3521325242346.019531,3521325241470.354980,75,0,0.002736,0.003958,6841199,5956518,0,0,21926,0,1,1 +1773557337.521741,0.65,4,3992.50,57.54,1399.88,2252.63,0.00,0.126757,0.000000,205,0,0.002505,0.003331,6841257,5956587,0,0,21929,0,1,1 +1773557342.521819,1.35,4,3992.50,57.43,1404.06,2248.41,0.00,3518382564179.738770,0.000000,11,0,0.005580,0.005195,6841370,5956697,0,0,21932,0,1,1 +1773557347.526198,20.90,4,3992.50,58.67,1355.44,2296.95,0.00,2.010544,0.000195,246,2,30.157609,0.135646,6851011,5963787,0,0,21934,0,1,1 +1773557352.522586,7.49,4,3992.50,58.61,1357.61,2294.78,0.00,8210.385710,9089.634705,606093,1180548,10.077845,0.050548,6854470,5966400,0,0,21937,0,1,1 +1773557357.521805,0.70,4,3992.50,58.32,1369.18,2283.21,0.00,3518987049443.195801,3518987048564.444336,246,2,0.002505,0.003321,6854528,5966468,0,0,21939,0,1,1 +1773557362.525548,0.65,4,3992.50,57.97,1382.67,2269.71,0.00,8188.762186,9065.874701,604604,1180551,0.002732,0.003961,6854593,5966549,0,0,21942,0,1,1 +1773557367.521791,0.70,4,3992.50,57.82,1388.51,2263.88,0.00,3521082459658.239258,3521082458781.770508,75,0,0.002736,0.003957,6854658,5966629,0,0,21944,0,1,1 +1773557372.521714,1.00,4,3992.50,58.13,1385.08,2275.98,0.00,0.126760,0.000000,205,0,0.002734,0.003954,6854723,5966709,0,0,21946,0,1,1 +1773557377.521844,0.55,4,3992.50,58.07,1387.53,2273.54,0.00,0.000000,0.000000,205,0,0.002734,0.003964,6854788,5966790,0,0,21949,0,1,1 +1773557382.525614,0.75,4,3992.50,57.81,1397.57,2263.50,0.00,3515786158456.524902,0.000000,11,0,0.002740,0.003969,6854854,5966872,0,0,21952,0,1,1 +1773557387.526104,0.65,4,3992.50,56.93,1431.98,2229.10,0.00,0.000000,0.000000,11,0,0.002796,0.004004,6854923,5966956,0,0,21954,0,1,1 +1773557392.526193,0.60,4,3992.50,56.93,1432.00,2229.09,0.00,0.053515,0.000000,75,0,0.002721,0.003939,6854987,5967035,0,0,21957,0,1,1 +1773557397.522314,0.60,4,3992.50,56.90,1433.43,2227.64,0.00,3521169081153.875000,0.000000,11,0,0.002507,0.003323,6855045,5967103,0,0,21959,0,1,1 +1773557402.525929,1.00,4,3992.50,57.38,1408.71,2246.50,0.00,8190.982976,9066.793252,604604,1181019,0.002732,0.003961,6855110,5967184,0,0,21962,0,1,1 +1773557407.525794,0.60,4,3992.50,57.32,1411.05,2244.20,0.00,3518531823858.928223,3518531822982.460938,11,0,0.002734,0.003942,6855175,5967263,0,0,21964,0,1,1 +1773557412.522634,4.97,4,3992.50,57.62,1399.42,2255.82,0.00,0.180387,0.000000,205,0,4.032743,0.024028,6856466,5968223,0,0,21966,0,1,1 +1773557417.522659,13.05,4,3992.50,57.56,1401.73,2253.41,0.00,8206.290482,9084.575352,606150,1181957,16.107650,0.076411,6861827,5972267,0,0,21969,0,1,1 +1773557422.521728,13.31,4,3992.50,57.82,1391.39,2263.73,0.00,3519092647166.231445,3519092646287.958984,11,0,20.114547,0.081426,6868033,5976759,0,0,21972,0,1,1 +1773557427.522176,1.30,4,3992.50,57.56,1401.45,2253.70,0.00,2.012124,0.000195,246,2,0.009482,0.007527,6868222,5976928,0,0,21974,0,1,1 +1773557432.521743,0.90,4,3992.50,58.10,1382.65,2274.70,0.00,3518742193749.765625,3518742193751.598145,205,0,0.002734,0.003965,6868287,5977009,0,0,21977,0,1,1 +1773557437.525532,0.60,4,3992.50,57.90,1388.34,2266.79,0.00,1.830644,0.000195,246,2,0.002732,0.003951,6868352,5977089,0,0,21979,0,1,1 +1773557442.526574,0.60,4,3992.50,57.86,1389.84,2265.29,0.00,3517704279014.871582,10.672776,251,190,0.002733,0.003963,6868417,5977170,0,0,21982,0,1,1 +1773557447.522864,0.55,4,3992.50,57.82,1391.21,2263.92,0.00,3521049639690.323730,3521049639681.117676,205,0,0.002507,0.003323,6868475,5977238,0,0,21984,0,1,1 +1773557452.525731,0.40,4,3992.50,57.82,1391.24,2263.89,0.00,1.475033,10.669078,251,190,0.002732,0.003952,6868540,5977318,0,0,21986,0,1,1 +1773557457.526209,0.60,4,3992.50,57.82,1391.25,2263.88,0.00,3518101103574.565918,3518101103565.494629,75,0,0.002504,0.003330,6868598,5977387,0,0,21989,0,1,1 +1773557462.525853,0.85,4,3992.50,58.02,1385.59,2271.45,0.00,1.958929,0.000195,246,2,0.002734,0.003965,6868663,5977468,0,0,21992,0,1,1 +1773557467.526490,0.50,4,3992.50,57.89,1388.70,2266.54,0.00,3517988991050.609375,3517988991052.621582,11,0,0.002733,0.003954,6868728,5977548,0,0,21994,0,1,1 +1773557472.525893,0.40,4,3992.50,57.90,1388.46,2266.76,0.00,0.180295,0.000000,205,0,0.002742,0.003973,6868794,5977630,0,0,21997,0,1,1 +1773557477.525894,0.60,4,3992.50,57.90,1388.48,2266.75,0.00,1.832031,0.000195,246,2,0.002734,0.004598,6868859,5977714,0,0,21999,0,1,1 +1773557482.526354,0.55,4,3992.50,57.90,1388.49,2266.74,0.00,3518113265937.018555,3518113265939.030762,11,0,0.002733,0.003964,6868924,5977795,0,0,22002,0,1,1 +1773557487.523995,5.17,4,3992.50,57.15,1417.69,2237.53,0.00,0.053541,0.000000,75,0,4.031668,0.022055,6870308,5978812,0,0,22004,0,1,1 +1773557492.525559,5.86,4,3992.50,57.38,1408.51,2246.65,0.00,1.602136,10.671857,251,190,6.048761,0.034232,6872513,5980516,0,0,22006,0,1,1 +1773557497.526260,20.12,4,3992.50,58.36,1374.66,2284.93,0.00,3517943865802.043945,3517943865792.972656,75,0,30.175950,0.132204,6882164,5987704,0,0,22009,0,1,1 +1773557502.525997,0.90,4,3992.50,57.93,1391.39,2268.26,0.00,3518622629739.865723,0.000000,11,0,0.002657,0.003522,6882227,5987778,0,0,22012,0,1,1 +1773557507.526082,0.70,4,3992.50,57.80,1396.58,2263.07,0.00,8196.937803,9075.877238,604826,1184130,0.002721,0.003954,6882291,5987858,0,0,22014,0,1,1 +1773557512.522628,1.10,4,3992.50,57.80,1396.52,2263.13,0.00,3520869400367.723145,3520869399488.160645,11,0,0.002736,0.003967,6882356,5987939,0,0,22017,0,1,1 +1773557517.522356,0.60,4,3992.50,57.83,1395.30,2264.36,0.00,0.000000,0.000000,11,0,0.002742,0.003963,6882422,5988020,0,0,22019,0,1,1 +1773557522.524440,0.55,4,3992.50,57.83,1395.34,2264.30,0.00,0.000000,0.000000,11,0,0.002504,0.003329,6882480,5988089,0,0,22022,0,1,1 +1773557527.526264,1.00,4,3992.50,57.80,1392.14,2263.00,0.00,8194.089140,9073.387428,604826,1184503,0.002504,0.003319,6882538,5988157,0,0,22024,0,1,1 +1773557532.521806,0.60,4,3992.50,57.61,1399.55,2255.60,0.00,3521577118432.559082,3521577117552.155273,11,0,0.002723,0.003958,6882602,5988237,0,0,22026,0,1,1 +1773557537.526494,0.60,4,3992.50,57.61,1399.56,2255.58,0.00,0.000000,0.000000,11,0,0.002502,0.003327,6882660,5988306,0,0,22029,0,1,1 +1773557542.526351,0.60,4,3992.50,57.62,1399.33,2255.81,0.00,0.000000,0.000000,11,0,0.002734,0.004608,6882725,5988391,0,0,22032,0,1,1 +1773557547.526205,0.65,4,3992.50,57.42,1407.00,2248.14,0.00,1.656201,10.675507,251,190,0.003785,0.004343,6882811,5988483,0,0,22034,0,1,1 +1773557552.525964,1.00,4,3992.50,57.72,1402.96,2259.98,0.00,3518606730427.766113,3518606730418.747070,11,0,0.003843,0.004572,6882898,5988577,0,0,22037,0,1,1 +1773557557.525896,0.65,4,3992.50,57.76,1399.51,2261.45,0.00,0.000000,0.000000,11,0,0.003655,0.004624,6882965,5988660,0,0,22039,0,1,1 +1773557562.526069,16.94,4,3992.50,58.11,1385.63,2275.19,0.00,0.000000,0.000000,11,0,24.151798,0.111308,6890803,5994434,0,0,22042,0,1,1 +1773557567.522670,11.49,4,3992.50,57.90,1393.93,2266.89,0.00,0.180396,0.000000,205,0,16.117445,0.074872,6896140,5998418,0,0,22044,0,1,1 +1773557572.526019,0.65,4,3992.50,57.69,1402.30,2258.51,0.00,3516082291671.732910,0.000000,75,0,0.002732,0.003952,6896205,5998498,0,0,22046,0,1,1 +1773557577.526560,0.70,4,3992.50,57.68,1402.66,2258.16,0.00,3518056444708.856934,0.000000,11,0,0.002733,0.003964,6896270,5998579,0,0,22049,0,1,1 +1773557582.525885,1.00,4,3992.50,57.92,1387.12,2267.61,0.00,8207.839746,9089.949806,606432,1186142,0.003404,0.004887,6896338,5998662,0,0,22052,0,1,1 +1773557587.524008,0.60,4,3992.50,57.94,1386.14,2268.58,0.00,3519758299719.181152,3519758298834.845703,246,2,0.002722,0.003956,6896402,5998742,0,0,22054,0,1,1 +1773557592.526628,0.60,4,3992.50,57.93,1386.67,2268.05,0.00,3516594212493.376465,3516594212495.387695,11,0,0.002529,0.003360,6896462,5998813,0,0,22057,0,1,1 +1773557597.524948,0.45,4,3992.50,57.93,1386.45,2268.28,0.00,1.656709,10.678785,251,190,0.002760,0.003987,6896529,5998895,0,0,22059,0,1,1 +1773557602.526047,0.55,4,3992.50,57.93,1386.45,2268.27,0.00,0.000000,0.000000,251,190,0.002504,0.003330,6896587,5998964,0,0,22062,0,1,1 +1773557607.525293,0.75,4,3992.50,57.93,1386.59,2268.12,0.00,8196.749715,9069.030199,604943,1186269,0.003361,0.004860,6896665,5999056,0,0,22064,0,1,1 +1773557612.526340,0.90,4,3992.50,57.95,1382.79,2269.06,0.00,3517700867098.047852,3517700866217.063965,11,0,0.002733,0.003941,6896730,5999135,0,0,22066,0,1,1 +1773557617.525239,0.60,4,3992.50,57.95,1382.81,2269.05,0.00,2.012748,0.000195,246,2,0.002505,0.003344,6896788,5999205,0,0,22069,0,1,1 +1773557622.524450,1.00,4,3992.50,57.99,1381.59,2270.27,0.00,8196.450850,9079.932074,604943,1186397,0.002734,0.003965,6896853,5999286,0,0,22072,0,1,1 +1773557627.525994,1.00,4,3992.50,57.51,1400.40,2251.46,0.00,3517350987129.071289,3517350986246.002441,246,2,0.004128,0.004652,6896942,5999381,0,0,22074,0,1,1 +1773557632.525573,18.99,4,3992.50,57.93,1383.67,2268.09,0.00,3518732974573.871582,3518732974575.884277,11,0,26.170457,0.120851,6905404,6005601,0,0,22077,0,1,1 +1773557637.526290,8.38,4,3992.50,58.76,1351.31,2300.46,0.00,0.000000,0.000000,11,0,14.080154,0.059875,6909978,6008984,0,0,22079,0,1,1 +1773557642.525836,1.71,4,3992.50,58.71,1355.49,2298.46,0.00,1.656303,10.676165,251,190,0.010819,0.009203,6910167,6009169,0,0,22081,0,1,1 +1773557647.525329,0.85,4,3992.50,58.02,1380.07,2271.61,0.00,0.000000,0.000000,251,190,0.003230,0.005052,6910244,6009272,0,0,22084,0,1,1 +1773557652.526335,0.55,4,3992.50,58.02,1380.18,2271.52,0.00,3517728845231.251465,3517728845222.054199,205,0,0.002741,0.003949,6910310,6009352,0,0,22086,0,1,1 +1773557657.526145,0.60,4,3992.50,58.02,1380.19,2271.50,0.00,8197.392076,9079.570683,605059,1187246,0.002505,0.003331,6910368,6009421,0,0,22089,0,1,1 +1773557662.526495,0.60,4,3992.50,58.02,1380.20,2271.48,0.00,3518191074373.132812,3518191073489.217773,246,2,0.002733,0.003964,6910433,6009502,0,0,22092,0,1,1 +1773557667.526438,0.60,4,3992.50,58.02,1380.21,2271.48,0.00,3518477473633.880859,3518477473635.712891,205,0,0.002734,0.003954,6910498,6009582,0,0,22094,0,1,1 +1773557672.525555,1.05,4,3992.50,58.13,1377.83,2275.84,0.00,3519058504292.446289,0.000000,11,0,0.002734,0.004609,6910563,6009667,0,0,22097,0,1,1 +1773557677.525782,0.65,4,3992.50,57.96,1382.49,2269.21,0.00,1.656077,10.674710,251,190,0.002733,0.003954,6910628,6009747,0,0,22099,0,1,1 +1773557682.525970,0.65,4,3992.50,57.96,1382.51,2269.20,0.00,3518305057121.686035,3518305057112.614258,75,0,0.002734,0.003964,6910693,6009828,0,0,22102,0,1,1 +1773557687.525775,0.65,4,3992.50,57.91,1384.26,2267.43,0.00,3518574640186.302734,0.000000,11,0,0.002796,0.003992,6910762,6009911,0,0,22104,0,1,1 +1773557692.526290,0.70,4,3992.50,57.72,1391.71,2259.97,0.00,1.655982,10.674096,251,190,0.003971,0.004447,6910851,6010004,0,0,22106,0,1,1 +1773557697.526341,0.65,4,3992.50,57.75,1390.50,2261.21,0.00,8205.081436,9079.910741,606548,1188132,0.002513,0.003351,6910910,6010075,0,0,22109,0,1,1 +1773557702.526392,5.77,4,3992.50,57.91,1385.03,2267.37,0.00,0.008594,0.137206,606559,1188241,4.028147,0.022447,6912177,6011110,0,0,22112,0,1,1 +1773557707.524498,22.69,4,3992.50,59.85,1308.46,2343.11,0.00,3519770538329.122559,3519770537444.801270,11,0,34.219341,0.150819,6923173,6019286,0,0,22114,0,1,1 +1773557712.524446,2.91,4,3992.50,58.65,1355.23,2296.35,0.00,8197.437077,9080.693825,605175,1188938,2.026911,0.018224,6924106,6020019,0,0,22117,0,1,1 +1773557717.522580,0.60,4,3992.50,58.17,1374.01,2277.54,0.00,9.565092,11.217955,606664,1189457,0.002735,0.003956,6924171,6020099,0,0,22119,0,1,1 +1773557722.526329,0.60,4,3992.50,58.19,1373.45,2278.11,0.00,0.000000,0.011710,606664,1189469,0.002732,0.003949,6924236,6020179,0,0,22122,0,1,1 +1773557727.525851,0.55,4,3992.50,58.19,1373.21,2278.35,0.00,3518773807282.447266,3518773806397.451172,11,0,0.002734,0.003955,6924301,6020259,0,0,22124,0,1,1 +1773557732.525676,0.95,4,3992.50,58.61,1359.32,2294.86,0.00,8207.199947,9092.248533,606664,1189554,0.002721,0.003954,6924365,6020339,0,0,22126,0,1,1 +1773557737.525817,0.65,4,3992.50,58.53,1362.49,2291.70,0.00,3518338056724.519531,3518338055839.527344,11,0,0.002721,0.004608,6924429,6020424,0,0,22129,0,1,1 +1773557742.521791,0.60,4,3992.50,58.52,1362.86,2291.33,0.00,0.000000,0.000000,11,0,0.001896,0.003104,6924476,6020487,0,0,22132,0,1,1 +1773557747.526147,0.65,4,3992.50,58.52,1363.11,2291.08,0.00,0.180116,0.000000,205,0,0.002556,0.003842,6924538,6020566,0,0,22134,0,1,1 +1773557752.525107,0.65,4,3992.50,58.51,1363.25,2290.93,0.00,8198.876895,9083.529655,605175,1189677,0.002734,0.003965,6924603,6020647,0,0,22137,0,1,1 +1773557757.526642,0.65,4,3992.50,58.52,1363.11,2291.08,0.00,3517356841016.786133,3517356840130.757812,246,2,0.002733,0.003953,6924668,6020727,0,0,22139,0,1,1 +1773557762.522659,0.60,4,3992.50,58.51,1363.38,2290.81,0.00,3521242751296.548828,3521242751298.562988,11,0,0.002494,0.003333,6924725,6020796,0,0,22142,0,1,1 +1773557767.522649,0.95,4,3992.50,58.15,1385.27,2276.78,0.00,8206.928654,9092.456872,606664,1189977,0.002505,0.003321,6924783,6020864,0,0,22144,0,1,1 +1773557772.523136,9.07,4,3992.50,57.68,1403.50,2258.47,0.00,0.019529,0.115028,606689,1190196,10.066030,0.046870,6928110,6023201,0,0,22146,0,1,1 +1773557777.521725,18.93,4,3992.50,58.43,1374.40,2287.52,0.00,3519430471691.942871,3519430471691.209473,605283,1190831,30.194805,0.136271,6937834,6030563,0,0,22149,0,1,1 +1773557782.521724,1.10,4,3992.50,58.43,1374.16,2287.78,0.00,0.002344,0.026074,605286,1190877,0.008115,0.007194,6937999,6030719,0,0,22152,0,1,1 +1773557787.521871,0.80,4,3992.50,58.12,1386.39,2275.53,0.00,3518333969248.951172,3518333968363.884277,205,0,0.002742,0.003962,6938065,6030800,0,0,22154,0,1,1 +1773557792.522559,0.95,4,3992.50,58.09,1384.82,2274.16,0.00,1.475676,10.673724,251,190,0.002733,0.003964,6938130,6030881,0,0,22157,0,1,1 +1773557797.524113,0.65,4,3992.50,58.09,1384.58,2274.39,0.00,0.356042,3517344345363.010254,246,2,0.002733,0.003941,6938195,6030960,0,0,22159,0,1,1 +1773557802.523385,0.70,4,3992.50,58.09,1384.60,2274.38,0.00,3518949693231.131348,3518949693233.144043,11,0,0.002467,0.003965,6938250,6031032,0,0,22161,0,1,1 +1773557807.524898,0.60,4,3992.50,58.09,1384.61,2274.36,0.00,0.000000,0.000000,11,0,0.002745,0.003963,6938316,6031113,0,0,22164,0,1,1 +1773557812.526367,0.70,4,3992.50,58.09,1384.62,2274.35,0.00,2.011713,0.000195,246,2,0.002733,0.003953,6938381,6031193,0,0,22166,0,1,1 +1773557817.521760,0.65,4,3992.50,58.09,1384.63,2274.33,0.00,3521682435019.092773,3521682435021.053223,75,0,0.002736,0.003955,6938446,6031273,0,0,22169,0,1,1 +1773557822.524385,0.90,4,3992.50,58.04,1388.57,2272.45,0.00,8193.082131,9078.518288,605286,1191435,0.002732,0.003962,6938511,6031354,0,0,22172,0,1,1 +1773557827.525948,0.60,4,3992.50,58.04,1388.61,2272.43,0.00,0.000000,0.053206,605286,1191492,0.002733,0.003940,6938576,6031433,0,0,22174,0,1,1 +1773557832.521777,0.70,4,3992.50,58.04,1388.62,2272.42,0.00,0.000000,0.031569,605286,1191531,0.002736,0.003968,6938641,6031514,0,0,22177,0,1,1 +1773557837.521779,1.40,4,3992.50,57.67,1403.31,2257.75,0.00,3518436131083.190918,3518436130195.247070,246,2,0.002513,0.003329,6938700,6031583,0,0,22179,0,1,1 +1773557842.525934,15.64,4,3992.50,57.84,1396.62,2264.39,0.00,0.000000,0.000000,246,2,18.100177,0.085732,6944609,6036062,0,0,22182,0,1,1 +1773557847.525544,12.51,4,3992.50,57.34,1416.01,2244.92,0.00,3518712120934.655762,10.675834,251,190,18.115913,0.083862,6950568,6040568,0,0,22184,0,1,1 +1773557852.522608,4.83,4,3992.50,58.34,1377.24,2284.25,0.00,3520504349052.983887,3520504349043.959961,11,0,4.035578,0.023246,6951981,6041628,0,0,22186,0,1,1 +1773557857.525798,0.85,4,3992.50,58.32,1377.43,2283.42,0.00,1.655096,10.668388,251,190,0.002732,0.003962,6952046,6041709,0,0,22189,0,1,1 +1773557862.526174,0.65,4,3992.50,58.31,1378.04,2282.82,0.00,3518172908252.714844,3518172908243.696777,11,0,0.003668,0.004634,6952114,6041793,0,0,22192,0,1,1 +1773557867.526299,0.65,4,3992.50,58.31,1378.06,2282.81,0.00,0.180269,0.000000,205,0,0.002734,0.004437,6952179,6041876,0,0,22194,0,1,1 +1773557872.525825,0.65,4,3992.50,58.31,1378.08,2282.79,0.00,3518770627882.602539,0.000000,11,0,0.002746,0.004113,6952245,6041957,0,0,22197,0,1,1 +1773557877.525696,0.70,4,3992.50,58.31,1378.09,2282.77,0.00,0.053517,0.000000,75,0,0.002734,0.003954,6952310,6042037,0,0,22199,0,1,1 +1773557882.525492,1.00,4,3992.50,58.40,1383.62,2286.41,0.00,0.000000,0.000000,75,0,0.003403,0.004876,6952378,6042119,0,0,22201,0,1,1 +1773557887.521719,0.70,4,3992.50,58.40,1383.65,2286.39,0.00,0.126854,0.000000,205,0,0.002515,0.003341,6952437,6042189,0,0,22204,0,1,1 +1773557892.526545,0.60,4,3992.50,58.40,1383.66,2286.38,0.00,0.000000,0.000000,205,0,0.002769,0.003969,6952505,6042270,0,0,22206,0,1,1 +1773557897.526615,0.65,4,3992.50,58.40,1383.67,2286.37,0.00,8197.228771,9084.831999,605396,1193237,0.002759,0.003995,6952572,6042353,0,0,22209,0,1,1 +1773557902.525926,0.60,4,3992.50,58.40,1383.46,2286.58,0.00,3518921866016.989746,3518921865129.431641,11,0,0.002734,0.003965,6952637,6042434,0,0,22212,0,1,1 +1773557907.525739,0.50,4,3992.50,58.21,1391.10,2278.94,0.00,0.053518,0.000000,75,0,0.002505,0.003321,6952695,6042502,0,0,22214,0,1,1 +1773557912.523572,0.75,4,3992.50,58.25,1390.83,2280.61,0.00,8210.589954,9099.691495,606885,1193529,0.002735,0.003966,6952760,6042583,0,0,22217,0,1,1 +1773557917.525576,16.04,4,3992.50,58.30,1388.54,2282.66,0.00,3517027643280.323242,3517027643279.364746,605456,1193854,20.129344,0.097285,6959403,6047434,0,0,22219,0,1,1 +1773557922.525738,8.69,4,3992.50,58.61,1376.51,2294.64,0.00,3518323665086.634277,3518323664196.946777,246,2,14.083038,0.061436,6963914,6050858,0,0,22222,0,1,1 +1773557927.521745,5.07,4,3992.50,58.60,1377.00,2294.15,0.00,3521248871173.336914,3521248871175.351074,11,0,6.045407,0.030772,6965954,6052413,0,0,22224,0,1,1 +1773557932.525970,0.60,4,3992.50,58.34,1387.19,2283.97,0.00,0.053470,0.000000,75,0,0.002731,0.003951,6966019,6052493,0,0,22226,0,1,1 +1773557937.526204,0.55,4,3992.50,58.21,1392.24,2278.92,0.00,8206.738099,9096.191786,606988,1194699,0.002741,0.004616,6966085,6052579,0,0,22229,0,1,1 +1773557942.521744,0.90,4,3992.50,58.90,1365.07,2306.09,0.00,3521578906162.919922,3521578905281.711426,251,190,0.003020,0.004421,6966157,6052670,0,0,22232,0,1,1 +1773557947.521927,0.65,4,3992.50,58.47,1382.11,2289.04,0.00,8205.217797,9085.836195,606988,1194743,0.003230,0.005041,6966234,6052772,0,0,22234,0,1,1 +1773557952.522551,0.65,4,3992.50,58.28,1389.27,2281.88,0.00,3517998383147.702148,3517998382258.143555,11,0,0.002733,0.003964,6966299,6052853,0,0,22237,0,1,1 +1773557957.525498,0.60,4,3992.50,58.23,1391.27,2279.88,0.00,0.000000,0.000000,11,0,0.002503,0.003352,6966357,6052922,0,0,22239,0,1,1 +1773557962.521699,0.55,4,3992.50,58.24,1391.04,2280.10,0.00,8213.416349,9104.057817,606988,1195070,0.002278,0.002689,6966408,6052978,0,0,22241,0,1,1 +1773557967.522253,0.60,4,3992.50,58.24,1390.81,2280.33,0.00,3518047528821.060547,3518047528819.963867,605499,1194888,0.002733,0.003964,6966473,6053059,0,0,22244,0,1,1 +1773557972.521732,0.75,4,3992.50,58.26,1383.52,2280.98,0.00,3518803819227.437012,3518803818336.464355,246,2,0.002734,0.003955,6966538,6053139,0,0,22246,0,1,1 +1773557977.521704,0.65,4,3992.50,57.93,1396.45,2268.05,0.00,3518456486504.276855,3518456486506.289551,11,0,0.002734,0.003964,6966603,6053220,0,0,22249,0,1,1 +1773557982.525154,0.70,4,3992.50,57.96,1395.23,2269.27,0.00,1.655011,10.667836,251,190,0.002732,0.003962,6966668,6053301,0,0,22252,0,1,1 +1773557987.525725,1.00,4,3992.50,57.96,1395.35,2269.14,0.00,3518035274055.089844,3518035274046.072266,11,0,0.005607,0.005423,6966787,6053417,0,0,22254,0,1,1 +1773557992.525225,21.23,4,3992.50,58.15,1387.82,2276.61,0.00,0.053521,0.000000,75,0,30.191151,0.136195,6976570,6060735,0,0,22257,0,1,1 +1773557997.525996,6.37,4,3992.50,57.95,1395.53,2268.86,0.00,8196.365309,9085.749837,605588,1195986,8.048560,0.035814,6979089,6062602,0,0,22259,0,1,1 +1773558002.526165,3.47,4,3992.50,58.46,1380.39,2288.98,0.00,6.741961,0.386901,614218,1196083,2.019384,0.014957,6979915,6063232,0,0,22262,0,1,1 +1773558007.526560,1.00,4,3992.50,57.75,1408.27,2260.86,0.00,3518158988887.777344,3518158988004.680176,75,0,0.002558,0.003808,6979977,6063310,0,0,22264,0,1,1 +1773558012.525942,0.85,4,3992.50,57.75,1407.97,2261.15,0.00,0.000000,0.000000,75,0,0.002115,0.003718,6980030,6063383,0,0,22266,0,1,1 +1773558017.525840,0.75,4,3992.50,57.76,1407.52,2261.60,0.00,0.126760,0.000000,205,0,0.002558,0.003818,6980092,6063462,0,0,22269,0,1,1 +1773558022.525982,0.80,4,3992.50,57.77,1407.32,2261.80,0.00,3518337257847.250000,0.000000,75,0,0.002734,0.003964,6980157,6063543,0,0,22272,0,1,1 +1773558027.521710,0.85,4,3992.50,57.79,1406.36,2262.77,0.00,1.604007,10.684323,251,190,0.002736,0.003958,6980222,6063623,0,0,22274,0,1,1 +1773558032.522619,1.15,4,3992.50,57.83,1400.85,2264.21,0.00,3517797867411.743652,3517797867402.673340,75,0,0.002733,0.003964,6980287,6063704,0,0,22277,0,1,1 +1773558037.523571,0.75,4,3992.50,57.85,1400.10,2264.91,0.00,1.602331,10.673162,251,190,0.002741,0.003949,6980353,6063784,0,0,22279,0,1,1 +1773558042.526028,0.75,4,3992.50,57.82,1401.12,2263.89,0.00,0.000000,0.000000,251,190,0.002504,0.003342,6980411,6063854,0,0,22282,0,1,1 +1773558047.526189,0.75,4,3992.50,57.86,1399.54,2265.48,0.00,3518323932220.557617,3518323932211.539062,11,0,0.002734,0.003954,6980476,6063934,0,0,22284,0,1,1 +1773558052.526158,0.80,4,3992.50,57.76,1403.50,2261.52,0.00,0.180275,0.000000,205,0,0.002734,0.003954,6980541,6064014,0,0,22286,0,1,1 +1773558057.525568,0.90,4,3992.50,57.80,1401.87,2263.15,0.00,1.832247,0.000195,246,2,0.002734,0.003965,6980606,6064095,0,0,22289,0,1,1 +1773558062.525573,4.26,4,3992.50,58.16,1395.03,2277.14,0.00,8211.967955,9099.138277,615707,1197165,2.022921,0.018131,6981447,6064763,0,0,22292,0,1,1 +1773558067.526607,21.14,4,3992.50,58.07,1395.82,2273.67,0.00,3517709253655.221680,3517709252770.245605,11,0,32.188760,0.142935,6991747,6072460,0,0,22294,0,1,1 +1773558072.521719,5.37,4,3992.50,57.76,1408.16,2261.32,0.00,0.000000,0.000000,11,0,6.048861,0.030019,6993841,6073966,0,0,22297,0,1,1 +1773558077.521705,0.75,4,3992.50,57.78,1407.20,2262.27,0.00,0.180274,0.000000,205,0,0.002505,0.003321,6993899,6074034,0,0,22299,0,1,1 +1773558082.526414,0.75,4,3992.50,57.78,1407.21,2262.26,0.00,1.474490,10.665151,251,190,0.002731,0.003961,6993964,6074115,0,0,22302,0,1,1 +1773558087.524426,0.70,4,3992.50,57.78,1407.22,2262.25,0.00,3519836067059.138184,3519836067050.062500,75,0,0.002735,0.003956,6994029,6074195,0,0,22304,0,1,1 +1773558092.524285,0.90,4,3992.50,57.96,1394.98,2269.24,0.00,1.958844,0.000195,246,2,0.002505,0.003321,6994087,6074263,0,0,22306,0,1,1 +1773558097.525940,0.75,4,3992.50,57.97,1394.76,2269.46,0.00,3517272738362.808594,10.671467,251,190,0.002728,0.003971,6994152,6074345,0,0,22309,0,1,1 +1773558102.526539,0.75,4,3992.50,57.96,1394.78,2269.44,0.00,0.356110,3518015924354.773926,246,2,0.002733,0.003964,6994217,6074426,0,0,22312,0,1,1 +1773558107.523034,0.75,4,3992.50,57.96,1394.79,2269.43,0.00,3520905677826.130371,3520905677828.144043,11,0,0.002736,0.003957,6994282,6074506,0,0,22314,0,1,1 +1773558112.521755,0.75,4,3992.50,57.96,1394.80,2269.42,0.00,0.000000,0.000000,11,0,0.002734,0.003965,6994347,6074587,0,0,22317,0,1,1 +1773558117.526095,0.75,4,3992.50,57.96,1394.81,2269.41,0.00,2.010559,0.000195,246,2,0.002731,0.003951,6994412,6074667,0,0,22319,0,1,1 +1773558122.526250,1.00,4,3992.50,57.99,1395.10,2270.58,0.00,3518328227960.841309,3518328227962.673340,205,0,0.002734,0.003964,6994477,6074748,0,0,22322,0,1,1 +1773558127.521731,0.85,4,3992.50,57.86,1400.52,2265.19,0.00,3521620259161.871582,0.000000,75,0,0.002744,0.003966,6994543,6074829,0,0,22324,0,1,1 +1773558132.521737,2.61,4,3992.50,57.91,1398.20,2267.50,0.00,3518432741177.251465,0.000000,11,0,0.017683,0.010123,6994851,6075064,0,0,22326,0,1,1 +1773558137.526544,19.82,4,3992.50,58.67,1368.67,2296.95,0.00,8196.547190,9081.714038,614219,1199332,28.230998,0.120940,7003701,6081623,0,0,22329,0,1,1 +1773558142.525727,8.27,4,3992.50,58.91,1359.02,2306.56,0.00,3519011912333.707031,3519011911456.564941,251,190,11.985861,0.056110,7007704,6084562,0,0,22332,0,1,1 +1773558147.525812,1.15,4,3992.50,58.18,1387.61,2277.97,0.00,0.356146,3518377542115.139160,246,2,0.003582,0.003709,7007785,6084642,0,0,22334,0,1,1 +1773558152.526495,1.05,4,3992.50,58.48,1377.73,2289.60,0.00,3517956770671.704102,3517956770673.716309,11,0,0.004512,0.005493,7007875,6084738,0,0,22337,0,1,1 +1773558157.524633,0.75,4,3992.50,58.49,1375.79,2290.04,0.00,0.053536,0.000000,75,0,0.002735,0.003956,7007940,6084818,0,0,22339,0,1,1 +1773558162.522407,0.80,4,3992.50,58.49,1375.81,2290.02,0.00,1.959661,0.000195,246,2,0.003665,0.004644,7008008,6084903,0,0,22342,0,1,1 +1773558167.521734,0.70,4,3992.50,58.49,1375.72,2290.13,0.00,3518910679016.885254,3518910679018.843750,75,0,0.002734,0.003942,7008073,6084982,0,0,22344,0,1,1 +1773558172.526217,0.65,4,3992.50,58.49,1375.73,2290.11,0.00,3515285355522.447266,0.000000,11,0,0.002502,0.003330,7008131,6085051,0,0,22346,0,1,1 +1773558177.522686,1.00,4,3992.50,57.70,1406.90,2258.97,0.00,0.053553,0.000000,75,0,0.002723,0.003954,7008195,6085131,0,0,22349,0,1,1 +1773558182.524762,0.80,4,3992.50,58.00,1395.62,2270.65,0.00,8200.967281,9087.730746,614219,1200213,0.002732,0.003963,7008260,6085212,0,0,22352,0,1,1 +1773558187.522094,0.80,4,3992.50,57.82,1402.50,2263.79,0.00,3520315586863.116699,3520315585975.511719,75,0,0.003215,0.004640,7008324,6085288,0,0,22354,0,1,1 +1773558192.525653,0.75,4,3992.50,57.83,1402.17,2264.11,0.00,8208.092862,9095.777198,615708,1200479,0.002497,0.002972,7008382,6085354,0,0,22357,0,1,1 +1773558197.526507,0.90,4,3992.50,57.83,1401.94,2264.34,0.00,3517836022192.954102,3517836021304.789551,75,0,0.002758,0.004629,7008449,6085440,0,0,22359,0,1,1 +1773558202.526197,0.75,4,3992.50,57.83,1401.95,2264.34,0.00,3518655062892.710449,0.000000,11,0,0.002734,0.003955,7008514,6085520,0,0,22361,0,1,1 +1773558207.525879,9.09,4,3992.50,57.93,1398.16,2268.06,0.00,2.012433,0.000195,246,2,10.080700,0.055464,7012134,6088230,0,0,22364,0,1,1 +1773558212.522587,9.96,4,3992.50,58.58,1378.32,2293.62,0.00,3520754879569.529785,3520754879571.363281,205,0,14.080650,0.054352,7016261,6091292,0,0,22366,0,1,1 +1773558217.525588,9.73,4,3992.50,58.20,1393.33,2278.50,0.00,3516326687100.930664,0.000000,11,0,16.100641,0.076196,7021727,6095226,0,0,22369,0,1,1 +1773558222.525687,0.85,4,3992.50,58.11,1396.64,2275.21,0.00,1.656120,10.674986,251,190,0.002513,0.003339,7021786,6095296,0,0,22372,0,1,1 +1773558227.522227,0.70,4,3992.50,58.18,1393.99,2277.86,0.00,8208.450248,9088.202244,614219,1201537,0.002736,0.003957,7021851,6095376,0,0,22374,0,1,1 +1773558232.525883,0.65,4,3992.50,58.19,1393.77,2278.09,0.00,3515866113889.625000,3515866113011.124023,251,190,0.002732,0.003949,7021916,6095456,0,0,22377,0,1,1 +1773558237.526368,0.65,4,3992.50,58.19,1393.78,2278.07,0.00,8201.974664,9081.107427,614219,1201633,0.002733,0.003954,7021981,6095536,0,0,22379,0,1,1 +1773558242.526023,1.81,4,3992.50,58.07,1393.07,2273.47,0.00,3518680323897.765137,3518680323007.454102,246,2,0.005090,0.006391,7022064,6095645,0,0,22382,0,1,1 +1773558247.525901,0.65,4,3992.50,58.07,1392.86,2273.37,0.00,3518523262108.494141,3518523262110.326172,205,0,0.002989,0.004408,7022133,6095735,0,0,22384,0,1,1 +1773558252.526702,0.80,4,3992.50,58.02,1394.51,2271.71,0.00,3517873405644.522949,0.000000,75,0,0.002741,0.003962,7022199,6095816,0,0,22386,0,1,1 +1773558257.525705,0.50,4,3992.50,58.05,1393.30,2272.93,0.00,3519139060346.719238,0.000000,11,0,0.002734,0.003965,7022264,6095897,0,0,22389,0,1,1 +1773558262.526110,0.70,4,3992.50,58.05,1393.31,2272.91,0.00,0.180259,0.000000,205,0,0.002505,0.003974,7022322,6095970,0,0,22392,0,1,1 +1773558267.525123,0.55,4,3992.50,58.06,1393.09,2273.14,0.00,1.832393,0.000195,246,2,0.002734,0.003955,7022387,6096050,0,0,22394,0,1,1 +1773558272.522264,0.85,4,3992.50,58.13,1388.42,2276.02,0.00,3520449639417.208008,3520449639419.167969,75,0,0.002735,0.003967,7022452,6096131,0,0,22397,0,1,1 +1773558277.521762,0.65,4,3992.50,58.13,1388.46,2275.98,0.00,8214.760283,9104.899452,615708,1202280,0.002505,0.003321,7022510,6096199,0,0,22399,0,1,1 +1773558282.526360,12.67,4,3992.50,58.47,1375.04,2289.36,0.00,0.000000,0.178156,615708,1202646,16.095122,0.076839,7027799,6100019,0,0,22402,0,1,1 +1773558287.526051,6.68,4,3992.50,58.53,1372.70,2291.69,0.00,3518654616930.529785,3518654616040.300781,11,0,8.049187,0.034941,7030346,6101847,0,0,22404,0,1,1 +1773558292.524026,9.88,4,3992.50,58.73,1364.96,2299.36,0.00,0.180346,0.000000,205,0,16.106563,0.072233,7035617,6105836,0,0,22406,0,1,1 +1773558297.526191,0.70,4,3992.50,58.32,1381.09,2283.23,0.00,3516914079115.291504,0.000000,75,0,0.002732,0.003963,7035682,6105917,0,0,22409,0,1,1 +1773558302.525987,0.95,4,3992.50,58.21,1387.86,2279.01,0.00,8204.708640,9094.805388,614219,1203370,0.002492,0.003318,7035739,6105985,0,0,22412,0,1,1 +1773558307.521753,0.65,4,3992.50,58.01,1395.80,2271.07,0.00,3521419086244.183105,3521419085353.241211,205,0,0.002736,0.003945,7035804,6106064,0,0,22414,0,1,1 +1773558312.525980,0.60,4,3992.50,58.01,1395.57,2271.30,0.00,3515464724559.398926,0.000000,11,0,0.002490,0.003328,7035861,6106133,0,0,22417,0,1,1 +1773558317.521701,0.65,4,3992.50,57.84,1402.25,2264.61,0.00,0.000000,0.000000,11,0,0.002744,0.003966,7035927,6106214,0,0,22419,0,1,1 +1773558322.526407,0.60,4,3992.50,57.82,1403.20,2263.67,0.00,0.000000,0.000000,11,0,0.002731,0.003951,7035992,6106294,0,0,22421,0,1,1 +1773558327.526028,0.55,4,3992.50,57.87,1401.28,2265.59,0.00,0.000000,0.000000,11,0,0.002734,0.004448,7036057,6106378,0,0,22424,0,1,1 +1773558332.526263,1.00,4,3992.50,58.29,1384.55,2282.32,0.00,8213.601469,9104.973369,615708,1203799,0.002733,0.004115,7036122,6106459,0,0,22426,0,1,1 +1773558337.526176,0.65,4,3992.50,58.14,1390.40,2276.47,0.00,3518498530915.060547,3518498530032.650391,251,190,0.002721,0.003964,7036186,6106540,0,0,22429,0,1,1 +1773558342.525885,0.60,4,3992.50,58.17,1389.43,2277.44,0.00,8203.248222,9084.816748,614219,1203889,0.002734,0.003964,7036251,6106621,0,0,22432,0,1,1 +1773558347.524612,0.45,4,3992.50,58.17,1389.45,2277.43,0.00,3519333350349.639648,3519333349458.876953,11,0,0.001723,0.002938,7036295,6106680,0,0,22434,0,1,1 +1773558352.526268,0.70,4,3992.50,58.17,1389.46,2277.42,0.00,0.180214,0.000000,205,0,0.002741,0.003971,7036361,6106762,0,0,22437,0,1,1 +1773558357.526076,9.98,4,3992.50,58.22,1387.46,2279.34,0.00,0.000000,0.000000,205,0,10.073167,0.051289,7039714,6109234,0,0,22439,0,1,1 +1773558362.521710,19.15,4,3992.50,59.00,1356.54,2310.17,0.00,1.477169,10.684524,251,190,30.214928,0.137982,7049719,6116819,0,0,22442,0,1,1 +1773558367.525982,0.95,4,3992.50,58.89,1361.22,2305.48,0.00,3515433554253.378418,3515433554244.367676,11,0,0.003880,0.005003,7049809,6116923,0,0,22444,0,1,1 +1773558372.526661,0.65,4,3992.50,58.46,1377.74,2288.97,0.00,0.180249,0.000000,205,0,0.002733,0.003954,7049874,6117003,0,0,22446,0,1,1 +1773558377.522648,0.60,4,3992.50,58.45,1378.17,2288.53,0.00,3521262818766.142578,0.000000,75,0,0.002736,0.003967,7049939,6117084,0,0,22449,0,1,1 +1773558382.521802,0.60,4,3992.50,58.46,1377.94,2288.77,0.00,0.126779,0.000000,205,0,0.002742,0.003973,7050005,6117166,0,0,22452,0,1,1 +1773558387.521721,0.55,4,3992.50,58.48,1377.21,2289.50,0.00,0.000000,0.000000,205,0,0.002734,0.003954,7050070,6117246,0,0,22454,0,1,1 +1773558392.521716,1.00,4,3992.50,58.62,1371.64,2295.02,0.00,1.475880,10.675206,251,190,0.002734,0.004447,7050135,6117330,0,0,22457,0,1,1 +1773558397.525774,0.65,4,3992.50,58.43,1379.21,2287.49,0.00,8205.672549,9089.138952,615708,1205712,0.002274,0.002846,7050186,6117387,0,0,22459,0,1,1 +1773558402.526260,1.00,4,3992.50,58.43,1378.98,2287.72,0.00,0.000000,0.050386,615708,1205771,0.002733,0.003964,7050251,6117468,0,0,22462,0,1,1 +1773558407.526464,0.50,4,3992.50,58.46,1378.02,2288.68,0.00,3518293682433.498047,3518293681540.101562,205,0,0.002734,0.003942,7050316,6117547,0,0,22464,0,1,1 +1773558412.525863,0.70,4,3992.50,58.46,1378.02,2288.68,0.00,0.000000,0.000000,205,0,0.002734,0.003955,7050381,6117627,0,0,22466,0,1,1 +1773558417.525684,0.60,4,3992.50,58.46,1378.03,2288.66,0.00,3518563319822.103516,0.000000,11,0,0.002729,0.003972,7050446,6117709,0,0,22469,0,1,1 +1773558422.526548,0.85,4,3992.50,58.48,1379.46,2289.59,0.00,8203.008121,9095.072802,614219,1205639,0.002733,0.003964,7050511,6117790,0,0,22472,0,1,1 +1773558427.525565,16.48,4,3992.50,58.94,1361.26,2307.76,0.00,9.563404,10.794212,615708,1206235,21.141116,0.098601,7057427,6122879,0,0,22474,0,1,1 +1773558432.526537,11.63,4,3992.50,59.77,1328.82,2340.13,0.00,3517753442972.139648,3517753442078.864258,11,0,19.121999,0.088966,7063800,6127660,0,0,22477,0,1,1 +1773558437.524291,0.60,4,3992.50,58.98,1359.75,2309.20,0.00,0.180354,0.000000,205,0,0.002735,0.003943,7063865,6127739,0,0,22479,0,1,1 +1773558442.526399,0.65,4,3992.50,58.47,1379.74,2289.21,0.00,1.831259,0.000195,246,2,0.002732,0.003963,7063930,6127820,0,0,22482,0,1,1 +1773558447.521764,0.70,4,3992.50,58.45,1380.33,2288.62,0.00,0.000000,0.000000,246,2,0.003572,0.003725,7064010,6127901,0,0,22484,0,1,1 +1773558452.524247,0.90,4,3992.50,58.32,1373.29,2283.52,0.00,8207.899992,9103.842584,615708,1206973,0.003849,0.004567,7064098,6127995,0,0,22486,0,1,1 +1773558457.522663,0.85,4,3992.50,58.08,1381.89,2273.78,0.00,3519552256066.155273,3519552255169.483887,246,2,0.001645,0.002956,7064136,6128049,0,0,22489,0,1,1 +1773558462.526030,0.65,4,3992.50,58.07,1381.90,2273.75,0.00,3516069723106.319336,3516069723108.330566,11,0,0.003653,0.004792,7064203,6128134,0,0,22492,0,1,1 +1773558467.524912,0.60,4,3992.50,58.07,1381.91,2273.75,0.00,8206.262035,9100.085967,614219,1207156,0.002722,0.003943,7064267,6128213,0,0,22494,0,1,1 +1773558472.525632,0.75,4,3992.50,58.08,1381.69,2273.98,0.00,3517930593344.231934,3517930592450.736328,11,0,0.002721,0.003964,7064331,6128294,0,0,22497,0,1,1 +1773558477.526431,0.70,4,3992.50,58.08,1381.70,2273.95,0.00,8212.674827,9107.315645,615708,1207402,0.002721,0.003954,7064395,6128374,0,0,22499,0,1,1 +1773558482.524697,0.80,4,3992.50,58.23,1376.53,2279.85,0.00,3519658274063.616211,3519658274062.577637,614219,1207267,0.002735,0.003966,7064460,6128455,0,0,22502,0,1,1 +1773558487.526695,0.65,4,3992.50,58.24,1376.11,2280.04,0.00,3517031276570.245605,3517031275676.857422,11,0,0.002741,0.003961,7064526,6128536,0,0,22504,0,1,1 +1773558492.525954,0.75,4,3992.50,58.22,1376.62,2279.53,0.00,0.053524,0.000000,75,0,0.003416,0.004895,7064595,6128619,0,0,22506,0,1,1 +1773558497.525630,20.21,4,3992.50,58.42,1368.94,2287.10,0.00,0.126766,0.000000,205,0,26.169313,0.119210,7073019,6134854,0,0,22509,0,1,1 +1773558502.526298,8.64,4,3992.50,58.34,1371.99,2284.02,0.00,3517967714983.648438,0.000000,11,0,14.087535,0.066170,7077607,6138317,0,0,22512,0,1,1 +1773558507.526219,0.60,4,3992.50,58.03,1383.95,2272.07,0.00,0.000000,0.000000,11,0,0.002505,0.003321,7077665,6138385,0,0,22514,0,1,1 +1773558512.524568,1.05,4,3992.50,58.05,1387.00,2272.79,0.00,8207.138607,9102.243283,614220,1208486,0.002735,0.003966,7077730,6138466,0,0,22517,0,1,1 +1773558517.524802,0.65,4,3992.50,58.03,1387.39,2271.97,0.00,0.000000,0.155852,614220,1208622,0.002733,0.003954,7077795,6138546,0,0,22519,0,1,1 +1773558522.521699,0.75,4,3992.50,58.06,1386.06,2273.30,0.00,3520621859202.307129,3520621858306.786621,11,0,0.002743,0.004458,7077861,6138631,0,0,22522,0,1,1 +1773558527.525988,0.65,4,3992.50,58.06,1386.05,2273.30,0.00,0.000000,0.000000,11,0,0.002731,0.004112,7077926,6138712,0,0,22524,0,1,1 +1773558532.526630,0.65,4,3992.50,58.02,1387.70,2271.67,0.00,0.000000,0.000000,11,0,0.002733,0.003954,7077991,6138792,0,0,22526,0,1,1 +1773558537.522587,0.60,4,3992.50,58.02,1387.71,2271.65,0.00,0.000000,0.000000,11,0,0.002736,0.003967,7078056,6138873,0,0,22529,0,1,1 +1773558542.525874,1.00,4,3992.50,57.99,1383.02,2270.56,0.00,2.010983,0.000195,246,2,0.003256,0.005035,7078136,6138975,0,0,22532,0,1,1 +1773558547.526537,0.65,4,3992.50,57.97,1384.03,2269.61,0.00,3517970825860.103516,3517970825862.062012,75,0,0.003001,0.004420,7078206,6139066,0,0,22534,0,1,1 +1773558552.526356,0.65,4,3992.50,57.80,1390.73,2262.90,0.00,0.126762,0.000000,205,0,0.002742,0.003972,7078272,6139148,0,0,22537,0,1,1 +1773558557.526011,0.55,4,3992.50,57.80,1390.51,2263.12,0.00,0.000000,0.000000,205,0,0.002721,0.003955,7078336,6139228,0,0,22539,0,1,1 +1773558562.525551,5.06,4,3992.50,57.66,1396.09,2257.57,0.00,8214.564223,9111.369655,615709,1209358,4.026216,0.019951,7079605,6140146,0,0,22542,0,1,1 +1773558567.522483,7.37,4,3992.50,57.87,1387.71,2265.90,0.00,3520597530849.729492,3520597529952.583008,75,0,6.059634,0.037510,7081912,6141875,0,0,22544,0,1,1 +1773558572.525561,18.65,4,3992.50,57.88,1387.47,2266.19,0.00,8208.881433,9105.581309,615709,1210233,30.152306,0.127560,7091521,6149038,0,0,22546,0,1,1 +1773558577.523665,1.60,4,3992.50,57.91,1386.37,2267.31,0.00,0.000000,0.015240,615709,1210287,0.010152,0.007768,7091721,6149215,0,0,22549,0,1,1 +1773558582.522128,0.65,4,3992.50,57.97,1384.17,2269.51,0.00,3519518863552.348633,3519518862654.805664,75,0,0.002734,0.003965,7091786,6149296,0,0,22552,0,1,1 +1773558587.526187,0.55,4,3992.50,57.97,1383.93,2269.76,0.00,8207.273238,9104.090564,615709,1210529,0.002802,0.003984,7091856,6149379,0,0,22554,0,1,1 +1773558592.522725,0.65,4,3992.50,57.97,1384.07,2269.62,0.00,3520874869232.662109,3520874868332.535156,246,2,0.002506,0.003990,7091914,6149453,0,0,22557,0,1,1 +1773558597.526625,0.65,4,3992.50,57.97,1384.09,2269.60,0.00,8196.022973,9093.855947,614220,1210394,0.002731,0.003951,7091979,6149533,0,0,22559,0,1,1 +1773558602.521825,0.95,4,3992.50,58.06,1392.14,2273.36,0.00,9.570712,10.840094,615709,1210668,0.002736,0.003968,7092044,6149614,0,0,22562,0,1,1 +1773558607.521806,0.70,4,3992.50,58.03,1393.01,2272.16,0.00,3518449948013.552734,3518449947115.580078,205,0,0.002734,0.003942,7092109,6149693,0,0,22564,0,1,1 +1773558612.523950,0.65,4,3992.50,58.03,1393.03,2272.14,0.00,0.000000,0.000000,205,0,0.002732,0.003953,7092174,6149773,0,0,22566,0,1,1 +1773558617.524252,0.65,4,3992.50,58.03,1393.04,2272.13,0.00,0.000000,0.000000,205,0,0.002733,0.003964,7092239,6149854,0,0,22569,0,1,1 +1773558622.521792,0.60,4,3992.50,58.03,1393.07,2272.11,0.00,3520169323687.539062,0.000000,75,0,0.002743,0.003974,7092305,6149936,0,0,22572,0,1,1 +1773558627.526227,0.65,4,3992.50,58.03,1393.08,2272.09,0.00,1.957053,0.000195,246,2,0.002490,0.003305,7092362,6150003,0,0,22574,0,1,1 +1773558632.521717,0.95,4,3992.50,58.23,1385.27,2279.90,0.00,3521613796087.216797,3521613796089.230957,11,0,0.002723,0.003968,7092426,6150084,0,0,22577,0,1,1 +1773558637.526417,4.96,4,3992.50,57.62,1409.23,2255.92,0.00,0.000000,0.000000,11,0,4.026971,0.021304,7093771,6151067,0,0,22579,0,1,1 +1773558642.525562,8.22,4,3992.50,58.61,1370.47,2294.66,0.00,0.053525,0.000000,75,0,6.053969,0.038608,7095922,6152626,0,0,22581,0,1,1 +1773558647.525869,17.09,4,3992.50,59.68,1328.49,2336.55,0.00,1.602538,10.674539,251,190,30.173994,0.127619,7105590,6159831,0,0,22584,0,1,1 +1773558652.522811,0.65,4,3992.50,59.08,1352.05,2312.99,0.00,8207.790970,9096.886184,614220,1211907,0.002723,0.003957,7105654,6159911,0,0,22586,0,1,1 +1773558657.525973,0.85,4,3992.50,57.99,1394.55,2270.50,0.00,0.000000,0.285366,614220,1212169,0.002719,0.004593,7105718,6159995,0,0,22589,0,1,1 +1773558662.522416,0.95,4,3992.50,58.17,1378.61,2277.48,0.00,3520941728920.590332,3520941728022.095215,11,0,0.002515,0.003341,7105777,6160065,0,0,22592,0,1,1 +1773558667.523634,0.55,4,3992.50,58.18,1376.91,2277.71,0.00,1.655749,10.672596,251,190,0.002733,0.003953,7105842,6160145,0,0,22594,0,1,1 +1773558672.525989,0.70,4,3992.50,58.13,1378.78,2275.86,0.00,3516780670844.554199,3516780670835.539551,11,0,0.002720,0.003950,7105906,6160225,0,0,22597,0,1,1 +1773558677.525869,0.60,4,3992.50,58.05,1381.97,2272.66,0.00,8214.187295,9113.716436,615709,1212502,0.002734,0.003954,7105971,6160305,0,0,22599,0,1,1 +1773558682.526203,0.60,4,3992.50,58.10,1379.87,2274.75,0.00,3518202070077.542480,3518202069178.095215,11,0,0.002721,0.003964,7106035,6160386,0,0,22602,0,1,1 +1773558687.526312,0.60,4,3992.50,58.10,1379.89,2274.73,0.00,0.053514,0.000000,75,0,0.002734,0.003954,7106100,6160466,0,0,22604,0,1,1 +1773558692.526045,0.95,4,3992.50,58.10,1379.79,2274.89,0.00,8204.812360,9103.589782,614220,1212603,0.002734,0.003955,7106165,6160546,0,0,22606,0,1,1 +1773558697.524576,0.60,4,3992.50,58.00,1383.68,2270.94,0.00,3519471562812.722168,3519471561913.729004,75,0,0.002722,0.003940,7106229,6160625,0,0,22609,0,1,1 +1773558702.526218,0.55,4,3992.50,58.01,1383.45,2271.17,0.00,0.126716,0.000000,205,0,0.002504,0.003330,7106287,6160694,0,0,22612,0,1,1 +1773558707.525714,4.72,4,3992.50,58.26,1373.56,2281.03,0.00,0.000000,0.000000,205,0,4.028777,0.021941,7107582,6161689,0,0,22614,0,1,1 +1773558712.526484,20.64,4,3992.50,58.87,1349.67,2304.85,0.00,0.000000,0.000000,205,0,32.187931,0.141341,7117835,6169352,0,0,22617,0,1,1 +1773558717.521745,3.97,4,3992.50,59.25,1334.59,2319.93,0.00,8221.600666,9123.267911,615709,1213961,4.035247,0.020240,7119233,6170353,0,0,22619,0,1,1 +1773558722.521768,1.81,4,3992.50,59.05,1350.38,2311.91,0.00,3518421296703.277832,3518421295800.637207,246,2,0.011682,0.009167,7119463,6170553,0,0,22622,0,1,1 +1773558727.525210,0.65,4,3992.50,58.38,1376.37,2285.51,0.00,3516016711250.602051,3516016711252.432617,205,0,0.002531,0.003806,7119523,6170631,0,0,22624,0,1,1 +1773558732.522097,0.75,4,3992.50,58.33,1378.17,2283.69,0.00,8218.925976,9120.804204,615709,1214360,0.002735,0.003957,7119588,6170711,0,0,22626,0,1,1 +1773558737.521749,0.65,4,3992.50,58.35,1377.39,2284.48,0.00,3518682168506.890137,3518682167605.637207,75,0,0.002734,0.003965,7119653,6170792,0,0,22629,0,1,1 +1773558742.525580,0.70,4,3992.50,58.34,1377.75,2284.13,0.00,3515743662658.626953,0.000000,11,0,0.002719,0.003949,7119717,6170872,0,0,22632,0,1,1 +1773558747.521712,0.70,4,3992.50,58.28,1380.14,2281.74,0.00,8210.778153,9111.644762,614220,1214267,0.004229,0.004660,7119799,6170956,0,0,22634,0,1,1 +1773558752.524616,1.10,4,3992.50,58.53,1370.25,2291.62,0.00,3516395061982.595703,3516395061082.948242,11,0,0.003849,0.004577,7119887,6171051,0,0,22637,0,1,1 +1773558757.525870,0.65,4,3992.50,58.35,1377.26,2284.62,0.00,0.000000,0.000000,11,0,0.002733,0.003953,7119952,6171131,0,0,22639,0,1,1 +1773558762.526147,0.60,4,3992.50,58.35,1377.26,2284.60,0.00,8213.533621,9114.931403,615709,1214610,0.003655,0.004634,7120019,6171215,0,0,22642,0,1,1 +1773558767.526156,0.65,4,3992.50,58.35,1377.29,2284.59,0.00,0.000000,0.037891,615709,1214656,0.002734,0.003954,7120084,6171295,0,0,22644,0,1,1 +1773558772.526143,0.70,4,3992.50,58.35,1377.30,2284.57,0.00,3518446226891.214844,3518446225989.673340,75,0,0.002734,0.003954,7120149,6171375,0,0,22646,0,1,1 +1773558777.525703,0.70,4,3992.50,58.37,1376.57,2285.29,0.00,8205.095699,9105.640737,614220,1214516,0.002734,0.003965,7120214,6171456,0,0,22649,0,1,1 +1773558782.525926,9.55,4,3992.50,59.03,1350.72,2311.25,0.00,9.561097,10.871586,615709,1214947,8.097510,0.044006,7122875,6173472,0,0,22652,0,1,1 +1773558787.521787,16.05,4,3992.50,58.47,1372.65,2289.18,0.00,3521352041373.411621,3521352040470.941895,11,0,28.148212,0.120429,7131940,6180181,0,0,22654,0,1,1 +1773558792.526548,3.25,4,3992.50,58.36,1376.98,2284.85,0.00,0.000000,0.000000,11,0,2.022620,0.014391,7132760,6180758,0,0,22657,0,1,1 +1773558797.521797,2.71,4,3992.50,58.58,1368.29,2293.54,0.00,0.053567,0.000000,75,0,2.017850,0.013264,7133460,6181278,0,0,22659,0,1,1 +1773558802.526482,0.70,4,3992.50,58.51,1370.96,2290.86,0.00,8206.247280,9107.992027,615710,1215985,0.002731,0.003948,7133525,6181358,0,0,22662,0,1,1 +1773558807.522219,0.55,4,3992.50,58.50,1371.57,2290.26,0.00,3521439895140.533203,3521439894237.227051,11,0,0.002736,0.003945,7133590,6181437,0,0,22664,0,1,1 +1773558812.525136,1.00,4,3992.50,58.60,1368.49,2294.18,0.00,0.000000,0.000000,11,0,0.002732,0.003952,7133655,6181517,0,0,22666,0,1,1 +1773558817.526010,0.60,4,3992.50,58.56,1369.91,2292.75,0.00,2.011953,0.000195,246,2,0.002733,0.003964,7133720,6181598,0,0,22669,0,1,1 +1773558822.521794,0.95,4,3992.50,58.56,1369.93,2292.73,0.00,8218.908699,9124.710089,615710,1216265,0.002507,0.003333,7133778,6181667,0,0,22672,0,1,1 +1773558827.522596,0.60,4,3992.50,58.56,1369.94,2292.72,0.00,3517872881556.022949,3517872881554.944336,614221,1216118,0.002733,0.003954,7133843,6181747,0,0,22674,0,1,1 +1773558832.525648,0.70,4,3992.50,58.56,1369.96,2292.71,0.00,3516290468778.162109,3516290467876.766113,11,0,0.002732,0.003949,7133908,6181827,0,0,22677,0,1,1 +1773558837.526406,0.75,4,3992.50,58.56,1370.06,2292.60,0.00,1.655901,10.673576,251,190,0.002733,0.003954,7133973,6181907,0,0,22679,0,1,1 +1773558842.525708,1.05,4,3992.50,58.67,1378.06,2296.98,0.00,0.000000,0.000000,251,190,0.005098,0.006399,7134057,6182017,0,0,22682,0,1,1 +1773558847.525550,0.65,4,3992.50,58.64,1379.25,2295.82,0.00,0.356164,3518548555452.691406,246,2,0.003230,0.005041,7134134,6182119,0,0,22684,0,1,1 +1773558852.521781,1.00,4,3992.50,58.64,1379.00,2296.05,0.00,8218.172520,9124.130455,615710,1216516,0.002738,0.004614,7134199,6182204,0,0,22686,0,1,1 +1773558857.522597,12.46,4,3992.50,58.36,1390.01,2285.00,0.00,3517863005922.939453,3517863005019.824219,11,0,14.096966,0.070417,7138934,6185755,0,0,22689,0,1,1 +1773558862.521639,12.47,4,3992.50,58.23,1395.15,2279.81,0.00,0.053526,0.000000,75,0,22.139499,0.099616,7146219,6191186,0,0,22692,0,1,1 +1773558867.522673,4.86,4,3992.50,58.38,1389.20,2285.77,0.00,1.958384,0.000195,246,2,4.027136,0.020399,7147552,6192157,0,0,22694,0,1,1 +1773558872.526568,1.05,4,3992.50,58.41,1388.58,2286.93,0.00,8205.585254,9110.975557,615710,1217617,0.002706,0.003949,7147615,6192237,0,0,22697,0,1,1 +1773558877.521723,0.55,4,3992.50,58.33,1390.70,2283.90,0.00,3521850331937.758301,3521850331936.652832,614221,1217436,0.002736,0.003946,7147680,6192316,0,0,22699,0,1,1 +1773558882.521772,0.50,4,3992.50,58.33,1391.01,2283.58,0.00,3518402711184.535156,3518402710281.385254,205,0,0.002734,0.003954,7147745,6192396,0,0,22701,0,1,1 +1773558887.524647,0.70,4,3992.50,58.14,1398.21,2276.39,0.00,1.475031,10.669061,251,190,0.002802,0.004020,7147815,6192482,0,0,22704,0,1,1 +1773558892.523103,0.55,4,3992.50,58.00,1403.91,2270.68,0.00,3519524158309.355957,3519524158300.334473,11,0,0.002506,0.003322,7147873,6192550,0,0,22706,0,1,1 +1773558897.524765,0.65,4,3992.50,58.02,1403.18,2271.42,0.00,8211.259732,9115.427091,615710,1217797,0.002720,0.003963,7147937,6192631,0,0,22709,0,1,1 +1773558902.525028,1.05,4,3992.50,58.20,1401.84,2278.80,0.00,3518251973146.809570,3518251972242.208496,205,0,0.002733,0.003964,7148002,6192712,0,0,22712,0,1,1 +1773558907.526148,0.75,4,3992.50,58.19,1402.58,2278.13,0.00,0.000000,0.000000,205,0,0.002733,0.003953,7148067,6192792,0,0,22714,0,1,1 +1773558912.526648,0.85,4,3992.50,58.23,1400.92,2279.79,0.00,8203.428067,9107.191843,614221,1217929,0.002733,0.003964,7148132,6192873,0,0,22717,0,1,1 +1773558917.521711,0.70,4,3992.50,58.23,1400.73,2279.98,0.00,3521914881719.999512,3521914880824.459961,251,190,0.002724,0.004603,7148196,6192957,0,0,22719,0,1,1 +1773558922.523241,0.85,4,3992.50,58.23,1401.07,2279.64,0.00,3517361309962.385254,3517361309953.369141,11,0,0.002733,0.003963,7148261,6193038,0,0,22722,0,1,1 +1773558927.525870,0.80,4,3992.50,58.22,1401.08,2279.63,0.00,0.053487,0.000000,75,0,0.002732,0.003940,7148326,6193117,0,0,22724,0,1,1 +1773558932.526267,16.77,4,3992.50,59.55,1349.25,2331.39,0.00,3518157950170.430176,0.000000,11,0,20.141123,0.100480,7155126,6198111,0,0,22726,0,1,1 +1773558937.521960,11.26,4,3992.50,59.53,1350.04,2330.54,0.00,1.657580,10.684398,251,190,18.116638,0.072691,7160817,6202323,0,0,22729,0,1,1 +1773558942.521784,2.81,4,3992.50,58.64,1384.89,2295.69,0.00,3518561444360.158203,3518561444351.139160,11,0,2.016744,0.013266,7161533,6202853,0,0,22732,0,1,1 +1773558947.524611,1.15,4,3992.50,58.63,1384.94,2295.57,0.00,2.011167,0.000195,246,2,0.002732,0.003952,7161598,6202933,0,0,22734,0,1,1 +1773558952.525972,1.05,4,3992.50,58.63,1384.92,2295.65,0.00,3517479847949.019531,3517479847951.031250,11,0,0.002720,0.003951,7161662,6203013,0,0,22737,0,1,1 +1773558957.521733,0.70,4,3992.50,58.64,1384.69,2295.87,0.00,0.053561,0.000000,75,0,0.002736,0.003958,7161727,6203093,0,0,22739,0,1,1 +1773558962.521791,1.20,4,3992.50,58.77,1376.73,2300.85,0.00,1.602618,10.675072,251,190,0.002734,0.003964,7161792,6203174,0,0,22742,0,1,1 +1773558967.525784,0.70,4,3992.50,58.77,1376.39,2301.07,0.00,3515629761953.830566,3515629761944.818848,11,0,0.002731,0.003951,7161857,6203254,0,0,22744,0,1,1 +1773558972.524575,0.75,4,3992.50,58.48,1387.66,2289.81,0.00,8206.412289,9112.035147,614221,1219571,0.002584,0.003717,7161919,6203328,0,0,22746,0,1,1 +1773558977.526056,0.85,4,3992.50,58.52,1386.21,2291.25,0.00,3517395431164.249512,3517395430268.129883,251,190,0.002654,0.003568,7161980,6203403,0,0,22749,0,1,1 +1773558982.526267,0.80,4,3992.50,58.52,1386.21,2291.25,0.00,3518288406391.864258,3518288406382.665527,205,0,0.002742,0.004603,7162046,6203488,0,0,22752,0,1,1 +1773558987.525801,0.85,4,3992.50,58.52,1386.24,2291.21,0.00,3518765456214.849121,0.000000,11,0,0.002721,0.003955,7162110,6203568,0,0,22754,0,1,1 +1773558992.526306,1.15,4,3992.50,58.72,1382.19,2299.04,0.00,8203.599134,9108.987905,614221,1219628,0.002733,0.003964,7162175,6203649,0,0,22757,0,1,1 +1773558997.523683,0.90,4,3992.50,58.73,1381.82,2299.26,0.00,3520284131125.426758,3520284130219.290527,205,0,0.002735,0.003956,7162240,6203729,0,0,22759,0,1,1 +1773559002.524188,1.40,4,3992.50,58.53,1389.49,2291.59,0.00,1.831846,0.000195,246,2,0.006466,0.006996,7162365,6203858,0,0,22762,0,1,1 +1773559007.521722,21.76,4,3992.50,58.55,1388.74,2292.26,0.00,8216.030398,9125.463199,615710,1220515,32.209519,0.141717,7172598,6211487,0,0,22764,0,1,1 +1773559012.525642,6.47,4,3992.50,59.19,1363.53,2317.42,0.00,0.000000,0.482239,615710,1221036,8.054800,0.042653,7175428,6213627,0,0,22766,0,1,1 +1773559017.525963,0.80,4,3992.50,58.96,1372.71,2308.25,0.00,0.000000,0.008496,615710,1221048,0.002733,0.003964,7175493,6213708,0,0,22769,0,1,1 +1773559022.524829,1.05,4,3992.50,58.67,1377.63,2297.00,0.00,3519235541825.524414,3519235541824.695312,614221,1220895,0.002734,0.003965,7175558,6213789,0,0,22772,0,1,1 +1773559027.525835,0.75,4,3992.50,58.63,1379.15,2295.37,0.00,3517729622030.783203,3517729621133.348145,251,190,0.002504,0.003307,7175616,6213856,0,0,22774,0,1,1 +1773559032.526052,0.80,4,3992.50,58.50,1384.08,2290.45,0.00,8211.977302,9110.738894,615710,1221165,0.002733,0.003951,7175681,6213936,0,0,22777,0,1,1 +1773559037.526541,0.80,4,3992.50,58.54,1382.62,2291.89,0.00,3518093201516.019531,3518093200608.235352,75,0,0.002500,0.003328,7175739,6214005,0,0,22779,0,1,1 +1773559042.526202,0.75,4,3992.50,58.34,1390.29,2284.23,0.00,3518675375352.072754,0.000000,11,0,0.002734,0.003965,7175804,6214086,0,0,22782,0,1,1 +1773559047.526611,1.90,4,3992.50,57.83,1410.44,2264.08,0.00,0.000000,0.000000,11,0,0.003569,0.004366,7175884,6214171,0,0,22784,0,1,1 +1773559052.521796,1.15,4,3992.50,58.22,1394.97,2279.54,0.00,0.180447,0.000000,205,0,0.004504,0.005489,7175973,6214266,0,0,22786,0,1,1 +1773559057.526038,0.75,4,3992.50,58.18,1396.78,2277.75,0.00,3515454801087.239258,0.000000,11,0,0.002731,0.003961,7176038,6214347,0,0,22789,0,1,1 +1773559062.522340,0.70,4,3992.50,58.19,1396.30,2278.24,0.00,8210.499684,9118.358132,614221,1221413,0.002736,0.003967,7176103,6214428,0,0,22792,0,1,1 +1773559067.526281,0.90,4,3992.50,58.19,1396.31,2278.22,0.00,3515666457536.790039,3515666456630.317383,11,0,0.003640,0.004620,7176169,6214511,0,0,22794,0,1,1 +1773559072.526595,3.86,4,3992.50,58.38,1388.68,2285.86,0.00,1.656048,10.674525,251,190,2.022895,0.017108,7176988,6215144,0,0,22797,0,1,1 +1773559077.526612,22.45,4,3992.50,58.53,1382.81,2291.56,0.00,3518425322233.435547,3518425322224.416504,11,0,34.211614,0.151658,7188193,6223351,0,0,22799,0,1,1 +1773559082.523561,3.47,4,3992.50,58.87,1372.79,2305.08,0.00,0.000000,0.000000,11,0,4.031194,0.023253,7189616,6224464,0,0,22802,0,1,1 +1773559087.523212,0.85,4,3992.50,58.73,1378.50,2299.40,0.00,0.000000,0.000000,11,0,0.002729,0.003963,7189681,6224545,0,0,22804,0,1,1 +1773559092.526426,0.80,4,3992.50,58.09,1403.57,2274.34,0.00,8208.714202,9117.544865,615710,1222892,0.003426,0.004904,7189751,6224629,0,0,22806,0,1,1 +1773559097.521728,0.95,4,3992.50,58.15,1401.40,2276.51,0.00,3521745969050.836426,3521745968140.512695,75,0,0.002761,0.003986,7189818,6224711,0,0,22809,0,1,1 +1773559102.521737,0.75,4,3992.50,58.14,1401.42,2276.50,0.00,3518430674453.697754,0.000000,11,0,0.002329,0.003185,7189873,6224778,0,0,22812,0,1,1 +1773559107.523821,0.80,4,3992.50,58.17,1400.44,2277.47,0.00,0.053493,0.000000,75,0,0.002504,0.003319,7189931,6224846,0,0,22814,0,1,1 +1773559112.526274,1.10,4,3992.50,58.19,1394.44,2278.15,0.00,3516711278728.457031,0.000000,11,0,0.002504,0.003973,7189989,6224919,0,0,22817,0,1,1 +1773559117.526121,0.80,4,3992.50,58.19,1394.49,2278.13,0.00,1.656203,10.675523,251,190,0.002734,0.003954,7190054,6224999,0,0,22819,0,1,1 +1773559122.526547,1.05,4,3992.50,58.19,1394.50,2278.12,0.00,8202.073847,9101.689550,614221,1223076,0.002733,0.003964,7190119,6225080,0,0,22822,0,1,1 +1773559127.525975,0.75,4,3992.50,58.19,1394.51,2278.11,0.00,3518839866452.721680,3518839865552.926270,251,190,0.002721,0.003955,7190183,6225160,0,0,22824,0,1,1 +1773559132.525802,0.80,4,3992.50,58.18,1394.65,2277.98,0.00,3518558694157.577148,3518558694148.558105,11,0,0.002734,0.003954,7190248,6225240,0,0,22826,0,1,1 +1773559137.525777,0.75,4,3992.50,58.18,1394.65,2277.98,0.00,2.012315,0.000195,246,2,0.002734,0.003964,7190313,6225321,0,0,22829,0,1,1 +1773559142.527492,9.25,4,3992.50,58.96,1363.76,2308.28,0.00,8209.161939,9120.968942,615710,1223608,10.066291,0.052443,7193701,6227862,0,0,22832,0,1,1 +1773559147.526025,19.28,4,3992.50,58.74,1372.01,2299.95,0.00,3519469886339.015625,3519469885428.460938,205,0,30.197785,0.136559,7203610,6235300,0,0,22834,0,1,1 +1773559152.521805,1.26,4,3992.50,58.57,1378.87,2293.09,0.00,3521408971692.547363,0.000000,11,0,0.007897,0.006896,7203770,6235451,0,0,22837,0,1,1 +1773559157.526220,0.70,4,3992.50,58.15,1395.23,2276.73,0.00,0.000000,0.000000,11,0,0.002731,0.003951,7203835,6235531,0,0,22839,0,1,1 +1773559162.521705,0.80,4,3992.50,58.14,1395.45,2276.50,0.00,0.000000,0.000000,11,0,0.002507,0.003324,7203893,6235599,0,0,22841,0,1,1 +1773559167.521711,0.75,4,3992.50,58.16,1394.88,2277.07,0.00,8204.418299,9114.234190,614221,1224523,0.002734,0.003964,7203958,6235680,0,0,22844,0,1,1 +1773559172.525867,0.85,4,3992.50,58.40,1377.97,2286.33,0.00,3515514884635.431152,3515514883726.369629,11,0,0.002731,0.003951,7204023,6235760,0,0,22846,0,1,1 +1773559177.521773,0.65,4,3992.50,58.45,1375.80,2288.27,0.00,0.000000,0.000000,11,0,0.002736,0.004612,7204088,6235845,0,0,22849,0,1,1 +1773559182.525984,0.55,4,3992.50,58.45,1375.81,2288.25,0.00,0.000000,0.000000,11,0,0.002719,0.003961,7204152,6235926,0,0,22852,0,1,1 +1773559187.521864,0.60,4,3992.50,58.44,1375.82,2288.23,0.00,0.053560,0.000000,75,0,0.002798,0.004008,7204221,6236010,0,0,22854,0,1,1 +1773559192.521797,0.65,4,3992.50,58.44,1375.84,2288.21,0.00,3518484814686.386230,0.000000,11,0,0.002742,0.003972,7204287,6236092,0,0,22857,0,1,1 +1773559197.525719,0.65,4,3992.50,58.44,1375.86,2288.20,0.00,0.000000,0.000000,11,0,0.002731,0.003939,7204352,6236171,0,0,22859,0,1,1 +1773559202.521804,1.05,4,3992.50,58.45,1378.43,2288.37,0.00,0.000000,0.000000,11,0,0.002507,0.003346,7204410,6236241,0,0,22862,0,1,1 +1773559207.521805,0.65,4,3992.50,58.45,1376.31,2288.36,0.00,1.656152,10.675192,251,190,0.002734,0.003954,7204475,6236321,0,0,22864,0,1,1 +1773559212.524772,11.12,4,3992.50,57.99,1394.23,2270.39,0.00,3516350591671.953613,3516350591662.759766,205,0,12.081990,0.062285,7208568,6239368,0,0,22866,0,1,1 +1773559217.524879,9.28,4,3992.50,58.99,1354.84,2309.75,0.00,8204.072702,9115.131464,614221,1225663,12.062381,0.048859,7212167,6242011,0,0,22869,0,1,1 +1773559222.525726,9.75,4,3992.50,58.92,1357.49,2307.04,0.00,3517841278366.216309,3517841277455.472656,11,0,16.103524,0.076205,7217602,6246133,0,0,22872,0,1,1 +1773559227.521791,1.51,4,3992.50,57.69,1405.97,2258.57,0.00,0.000000,0.000000,11,0,0.002723,0.003957,7217666,6246213,0,0,22874,0,1,1 +1773559232.523203,0.90,4,3992.50,58.05,1391.40,2272.98,0.00,8211.670061,9123.988711,615710,1226452,0.002733,0.003963,7217731,6246294,0,0,22877,0,1,1 +1773559237.523738,0.55,4,3992.50,58.05,1391.42,2272.96,0.00,0.000000,0.233178,615710,1226539,0.002733,0.003954,7217796,6246374,0,0,22879,0,1,1 +1773559242.521733,0.65,4,3992.50,58.05,1391.59,2272.79,0.00,3519848549414.461426,3519848548501.105469,205,0,0.002722,0.004597,7217860,6246458,0,0,22882,0,1,1 +1773559247.525586,0.55,4,3992.50,58.05,1391.61,2272.77,0.00,3515727994515.610840,0.000000,11,0,0.002740,0.003959,7217926,6246539,0,0,22884,0,1,1 +1773559252.526353,0.60,4,3992.50,58.05,1391.62,2272.77,0.00,1.655898,10.673557,251,190,0.002504,0.003320,7217984,6246607,0,0,22886,0,1,1 +1773559257.525746,0.60,4,3992.50,58.03,1392.41,2271.97,0.00,3518864680562.938477,3518864680553.918457,11,0,0.002734,0.003965,7218049,6246688,0,0,22889,0,1,1 +1773559262.526358,0.85,4,3992.50,58.25,1383.84,2280.77,0.00,2.012058,0.000195,246,2,0.002721,0.003964,7218113,6246769,0,0,22892,0,1,1 +1773559267.526030,0.65,4,3992.50,58.12,1389.07,2275.52,0.00,8202.953628,9117.123025,614221,1226717,0.002721,0.003955,7218177,6246849,0,0,22894,0,1,1 +1773559272.526289,0.70,4,3992.50,58.12,1389.07,2275.50,0.00,3518255033173.368652,3518255032261.264648,75,0,0.002733,0.003964,7218242,6246930,0,0,22897,0,1,1 +1773559277.524897,0.60,4,3992.50,58.12,1389.09,2275.49,0.00,8216.223384,9129.833370,615710,1227008,0.002734,0.003955,7218307,6247010,0,0,22899,0,1,1 +1773559282.525681,1.35,4,3992.50,58.00,1393.80,2270.79,0.00,3517885692582.734863,3517885691669.522461,75,0,0.007024,0.006669,7218450,6247146,0,0,22902,0,1,1 +1773559287.525594,21.62,4,3992.50,59.21,1346.14,2318.34,0.00,3518498539127.482422,0.000000,11,0,32.295624,0.144568,7228971,6254919,0,0,22904,0,1,1 +1773559292.525579,6.81,4,3992.50,59.37,1339.05,2324.63,0.00,8214.014265,9128.173634,615710,1228005,6.026475,0.029121,7231039,6256390,0,0,22906,0,1,1 +1773559297.526155,1.65,4,3992.50,59.15,1347.71,2315.96,0.00,3518031763691.391113,3518031762777.339844,11,0,1.935578,0.010727,7231671,6256884,0,0,22909,0,1,1 +1773559302.524809,0.60,4,3992.50,58.83,1360.47,2303.18,0.00,0.180322,0.000000,205,0,0.002742,0.003973,7231737,6256966,0,0,22912,0,1,1 +1773559307.521901,0.70,4,3992.50,58.81,1361.18,2302.47,0.00,3520484831291.831543,0.000000,11,0,0.002735,0.004601,7231802,6257050,0,0,22914,0,1,1 +1773559312.525995,0.60,4,3992.50,58.81,1361.20,2302.47,0.00,1.654798,10.666463,251,190,0.002719,0.003961,7231866,6257131,0,0,22917,0,1,1 +1773559317.525322,0.60,4,3992.50,58.81,1360.98,2302.68,0.00,3518910905665.599121,3518910905656.525391,75,0,0.003972,0.004460,7231955,6257225,0,0,22919,0,1,1 +1773559322.526448,1.00,4,3992.50,59.20,1355.22,2317.84,0.00,1.958348,0.000195,246,2,0.002741,0.003971,7232021,6257307,0,0,22922,0,1,1 +1773559327.522575,0.70,4,3992.50,59.21,1353.89,2318.06,0.00,0.000000,0.000000,246,2,0.002723,0.003957,7232085,6257387,0,0,22924,0,1,1 +1773559332.523651,0.55,4,3992.50,59.01,1361.55,2310.41,0.00,3517680635276.121582,3517680635278.133789,11,0,0.002492,0.003307,7232142,6257454,0,0,22926,0,1,1 +1773559337.525902,0.65,4,3992.50,59.02,1361.09,2310.85,0.00,1.655407,10.670390,251,190,0.002732,0.003962,7232207,6257535,0,0,22929,0,1,1 +1773559342.521778,0.60,4,3992.50,59.02,1361.11,2310.84,0.00,0.356446,3521341778483.018066,246,2,0.002736,0.003968,7232272,6257616,0,0,22932,0,1,1 +1773559347.522607,0.65,4,3992.50,59.02,1361.12,2310.83,0.00,3517853914932.350586,10.673230,251,190,0.003805,0.004363,7232360,6257710,0,0,22934,0,1,1 +1773559352.525751,1.15,4,3992.50,58.90,1357.04,2305.95,0.00,8197.617762,9102.018548,614221,1228650,0.003841,0.004569,7232447,6257804,0,0,22937,0,1,1 +1773559357.521713,3.77,4,3992.50,57.83,1398.71,2264.21,0.00,3521281274772.830078,3521281273858.102539,11,0,2.026443,0.018308,7233313,6258443,0,0,22939,0,1,1 +1773559362.526583,21.14,4,3992.50,58.28,1381.02,2281.84,0.00,8196.443718,9110.256463,614221,1229715,34.179768,0.151108,7244487,6266683,0,0,22942,0,1,1 +1773559367.526197,3.16,4,3992.50,58.19,1384.62,2278.20,0.00,9.562262,10.697701,615710,1229990,4.028541,0.023026,7245868,6267751,0,0,22944,0,1,1 +1773559372.521801,0.60,4,3992.50,58.20,1384.15,2278.68,0.00,3521533691584.637695,3521533690677.020508,251,190,0.002736,0.004602,7245933,6267835,0,0,22946,0,1,1 +1773559377.525843,0.65,4,3992.50,58.24,1382.45,2280.38,0.00,0.000000,0.000000,251,190,0.002731,0.003961,7245998,6267916,0,0,22949,0,1,1 +1773559382.526376,1.00,4,3992.50,58.39,1369.62,2286.12,0.00,0.000000,0.000000,251,190,0.002733,0.003964,7246063,6267997,0,0,22952,0,1,1 +1773559387.524602,0.65,4,3992.50,58.37,1369.96,2285.39,0.00,8205.684289,9112.301069,614221,1230174,0.002506,0.003322,7246121,6268065,0,0,22954,0,1,1 +1773559392.526651,0.65,4,3992.50,58.37,1369.87,2285.47,0.00,9.557606,10.755454,615710,1230408,0.002766,0.004002,7246189,6268149,0,0,22957,0,1,1 +1773559397.524042,0.60,4,3992.50,58.37,1369.88,2285.45,0.00,3520274507974.507812,3520274507066.540527,251,190,0.003444,0.004910,7246260,6268233,0,0,22959,0,1,1 +1773559402.524099,0.60,4,3992.50,58.37,1369.90,2285.44,0.00,3518396908459.854980,3518396908450.656250,205,0,0.002734,0.003942,7246325,6268312,0,0,22961,0,1,1 +1773559407.525993,0.55,4,3992.50,58.37,1369.91,2285.43,0.00,3517104909144.281250,0.000000,75,0,0.002733,0.003963,7246390,6268393,0,0,22964,0,1,1 +1773559412.522975,0.90,4,3992.50,58.40,1373.49,2286.35,0.00,0.126834,0.000000,205,0,0.002743,0.003965,7246456,6268474,0,0,22966,0,1,1 +1773559417.526164,0.70,4,3992.50,58.41,1372.77,2287.07,0.00,1.830864,0.000195,246,2,0.002732,0.003962,7246521,6268555,0,0,22969,0,1,1 +1773559422.524326,0.85,4,3992.50,58.41,1372.78,2287.06,0.00,8214.997074,9134.095459,615710,1230641,0.002735,0.003953,7246586,6268635,0,0,22972,0,1,1 +1773559427.525857,4.11,4,3992.50,58.24,1379.76,2280.07,0.00,3517360083010.005859,3517360082102.554688,251,190,2.022310,0.014154,7247395,6269221,0,0,22974,0,1,1 +1773559432.526363,23.94,4,3992.50,58.61,1364.93,2294.80,0.00,3518081056649.390137,3518081056640.372559,11,0,36.205785,0.156039,7258759,6277676,0,0,22977,0,1,1 +1773559437.526543,2.51,4,3992.50,58.21,1380.79,2278.95,0.00,2.012232,0.000195,246,2,2.025038,0.017105,7259658,6278371,0,0,22979,0,1,1 +1773559442.524047,1.05,4,3992.50,58.60,1370.13,2294.38,0.00,8206.511974,9125.653951,614222,1231630,0.005092,0.006394,7259741,6278480,0,0,22982,0,1,1 +1773559447.525708,0.65,4,3992.50,58.60,1370.19,2294.29,0.00,3517269034033.938965,3517269033115.561035,246,2,0.003229,0.005027,7259818,6278581,0,0,22984,0,1,1 +1773559452.525846,0.60,4,3992.50,58.60,1370.21,2294.28,0.00,8211.751593,9131.716829,615711,1232047,0.002734,0.003967,7259883,6278662,0,0,22986,0,1,1 +1773559457.526540,0.75,4,3992.50,58.60,1370.23,2294.26,0.00,3517948689871.237305,3517948688953.205566,205,0,0.002741,0.003972,7259949,6278744,0,0,22989,0,1,1 +1773559462.521773,0.60,4,3992.50,58.60,1370.25,2294.25,0.00,3521794920560.794922,0.000000,11,0,0.002736,0.003968,7260014,6278825,0,0,22992,0,1,1 +1773559467.525963,0.60,4,3992.50,58.60,1370.26,2294.24,0.00,1.654766,10.666257,251,190,0.002731,0.003926,7260079,6278903,0,0,22994,0,1,1 +1773559472.525790,1.10,4,3992.50,58.82,1363.15,2303.04,0.00,8212.618763,9121.825540,615711,1232158,0.002505,0.003331,7260137,6278972,0,0,22997,0,1,1 +1773559477.526040,0.60,4,3992.50,58.67,1367.13,2296.89,0.00,3518261412850.685547,3518261411930.524902,246,2,0.002733,0.003954,7260202,6279052,0,0,22999,0,1,1 +1773559482.521815,0.55,4,3992.50,58.45,1375.62,2288.43,0.00,8218.922973,9139.948185,615711,1232202,0.002744,0.003976,7260268,6279134,0,0,23002,0,1,1 +1773559487.521744,0.60,4,3992.50,58.46,1375.17,2288.88,0.00,3518487273671.008301,3518487272750.748535,246,2,0.002796,0.004005,7260337,6279218,0,0,23004,0,1,1 +1773559492.526473,0.60,4,3992.50,58.47,1374.95,2289.10,0.00,3515112646274.988281,10.664913,251,190,0.002502,0.003318,7260395,6279286,0,0,23006,0,1,1 +1773559497.527686,13.12,4,3992.50,58.83,1360.75,2303.24,0.00,3517583830380.991699,3517583830371.975098,11,0,16.105267,0.080382,7265808,6283398,0,0,23009,0,1,1 +1773559502.526544,15.67,4,3992.50,59.00,1352.67,2309.81,0.00,8215.867802,9134.887265,615711,1233037,24.155350,0.109343,7273667,6289360,0,0,23012,0,1,1 +1773559507.521838,0.65,4,3992.50,58.63,1367.07,2295.43,0.00,0.000000,0.634582,615711,1233562,0.001953,0.003574,7273718,6289431,0,0,23014,0,1,1 +1773559512.526095,0.60,4,3992.50,58.34,1378.47,2284.02,0.00,3515444172595.339355,3515444171674.667480,246,2,0.002731,0.003948,7273783,6289511,0,0,23017,0,1,1 +1773559517.521742,0.65,4,3992.50,58.27,1381.06,2281.42,0.00,3521502969500.938477,3521502969502.898926,75,0,0.002736,0.003958,7273848,6289591,0,0,23019,0,1,1 +1773559522.524591,0.60,4,3992.50,58.26,1381.29,2281.20,0.00,0.000000,0.000000,75,0,0.002732,0.003962,7273913,6289672,0,0,23022,0,1,1 +1773559527.526262,0.55,4,3992.50,58.26,1381.30,2281.18,0.00,8211.193984,9130.614284,615711,1233712,0.002741,0.003961,7273979,6289753,0,0,23024,0,1,1 +1773559532.524240,0.95,4,3992.50,58.37,1379.31,2285.27,0.00,3519860485119.223145,3519860484199.177246,11,0,0.001899,0.003085,7274026,6289814,0,0,23026,0,1,1 +1773559537.521738,0.65,4,3992.50,58.34,1380.43,2284.18,0.00,8218.102613,9138.329081,615711,1233792,0.002722,0.003966,7274090,6289895,0,0,23029,0,1,1 +1773559542.525040,0.55,4,3992.50,58.34,1380.45,2284.16,0.00,3516115055616.101074,3516115054696.761719,205,0,0.002732,0.003962,7274155,6289976,0,0,23032,0,1,1 +1773559547.521843,0.75,4,3992.50,58.35,1380.21,2284.40,0.00,8209.497962,9128.982960,614222,1233682,0.002731,0.003965,7274220,6290057,0,0,23034,0,1,1 +1773559552.524243,0.60,4,3992.50,58.34,1380.36,2284.25,0.00,3516749589216.227539,3516749588297.771484,205,0,0.002732,0.003962,7274285,6290138,0,0,23037,0,1,1 +1773559557.521732,0.65,4,3992.50,58.35,1380.13,2284.48,0.00,3520204812141.503906,0.000000,11,0,0.002735,0.003956,7274350,6290218,0,0,23039,0,1,1 +1773559562.522214,0.95,4,3992.50,58.34,1372.75,2284.23,0.00,2.012111,0.000195,246,2,0.002733,0.003964,7274415,6290299,0,0,23042,0,1,1 +1773559567.523471,15.74,4,3992.50,58.16,1379.82,2277.04,0.00,3517552629519.690918,3517552629521.648926,75,0,20.131003,0.095797,7281164,6295242,0,0,23044,0,1,1 +1773559572.526323,10.89,4,3992.50,58.34,1372.83,2283.98,0.00,8209.255114,9129.175290,615711,1234709,16.079976,0.069281,7286153,6298980,0,0,23046,0,1,1 +1773559577.521747,5.33,4,3992.50,58.04,1384.56,2272.26,0.00,3521660070421.279785,3521660069500.045410,11,0,4.042371,0.025718,7287759,6300150,0,0,23049,0,1,1 +1773559582.521846,0.70,4,3992.50,58.06,1383.84,2272.98,0.00,0.180270,0.000000,205,0,0.002734,0.003964,7287824,6300231,0,0,23052,0,1,1 +1773559587.526508,0.50,4,3992.50,58.01,1385.51,2271.31,0.00,3515159979537.017090,0.000000,11,0,0.002731,0.003938,7287889,6300310,0,0,23054,0,1,1 +1773559592.525976,1.00,4,3992.50,58.28,1373.82,2281.79,0.00,1.656329,10.676331,251,190,0.002742,0.003973,7287955,6300392,0,0,23057,0,1,1 +1773559597.523659,0.70,4,3992.50,58.10,1381.02,2274.57,0.00,0.356317,3520068676222.305664,246,2,0.002735,0.003956,7288020,6300472,0,0,23059,0,1,1 +1773559602.523976,0.55,4,3992.50,58.11,1380.29,2275.30,0.00,8211.456677,9134.689835,615711,1235439,0.002505,0.003330,7288078,6300541,0,0,23062,0,1,1 +1773559607.526237,0.65,4,3992.50,58.14,1379.09,2276.50,0.00,3516846892351.659668,3516846891430.796387,11,0,0.002732,0.003953,7288143,6300621,0,0,23064,0,1,1 +1773559612.526431,0.55,4,3992.50,58.14,1379.11,2276.48,0.00,8204.110300,9124.272309,614222,1235269,0.002729,0.003962,7288208,6300702,0,0,23066,0,1,1 +1773559617.526044,0.75,4,3992.50,58.00,1384.59,2271.00,0.00,3518709663516.842285,3518709662596.393555,205,0,0.002734,0.003965,7288273,6300783,0,0,23069,0,1,1 +1773559622.521858,0.85,4,3992.50,58.16,1380.71,2277.10,0.00,1.833566,0.000195,246,2,0.002736,0.003968,7288338,6300864,0,0,23072,0,1,1 +1773559627.526041,0.60,4,3992.50,58.09,1381.26,2274.37,0.00,3515496033107.296387,3515496033109.126953,205,0,0.002731,0.003951,7288403,6300944,0,0,23074,0,1,1 +1773559632.525790,0.65,4,3992.50,58.13,1379.56,2276.07,0.00,3518613312664.427734,0.000000,11,0,0.002742,0.004455,7288469,6301029,0,0,23077,0,1,1 +1773559637.523717,3.16,4,3992.50,57.94,1387.32,2268.31,0.00,8207.832186,9128.607128,614222,1235475,2.020081,0.014318,7289236,6301588,0,0,23079,0,1,1 +1773559642.521816,20.97,4,3992.50,59.12,1340.75,2314.80,0.00,9.565162,10.949477,615711,1236227,32.208074,0.143185,7299576,6309336,0,0,23082,0,1,1 +1773559647.526397,6.23,4,3992.50,58.14,1379.27,2276.26,0.00,3515216222809.813477,3515216221897.891113,251,190,6.043445,0.036102,7301695,6311004,0,0,23084,0,1,1 +1773559652.523663,1.15,4,3992.50,58.43,1368.10,2287.59,0.00,0.356347,3520362193613.208496,246,2,0.003845,0.004564,7301782,6311097,0,0,23086,0,1,1 +1773559657.524203,0.65,4,3992.50,58.24,1375.11,2280.41,0.00,3518057702629.841797,10.673849,251,190,0.002729,0.003959,7301847,6311178,0,0,23089,0,1,1 +1773559662.523423,0.65,4,3992.50,58.25,1374.87,2280.65,0.00,0.000000,0.000000,251,190,0.002734,0.003965,7301912,6311259,0,0,23092,0,1,1 +1773559667.525582,0.60,4,3992.50,58.26,1374.65,2280.87,0.00,3516918826305.179199,3516918826295.983887,205,0,0.003425,0.003989,7301972,6311330,0,0,23094,0,1,1 +1773559672.526175,0.55,4,3992.50,58.26,1374.67,2280.86,0.00,3518020191916.375977,0.000000,75,0,0.002733,0.003964,7302037,6311411,0,0,23097,0,1,1 +1773559677.525826,0.65,4,3992.50,58.26,1374.68,2280.84,0.00,1.958925,0.000195,246,2,0.002742,0.003950,7302103,6311491,0,0,23099,0,1,1 +1773559682.525949,0.80,4,3992.50,58.47,1366.01,2289.19,0.00,3518351304815.729492,3518351304817.741699,11,0,0.002734,0.003964,7302168,6311572,0,0,23102,0,1,1 +1773559687.526289,0.65,4,3992.50,58.15,1378.40,2276.64,0.00,0.000000,0.000000,11,0,0.002721,0.003941,7302232,6311651,0,0,23104,0,1,1 +1773559692.526290,0.65,4,3992.50,58.15,1378.41,2276.63,0.00,0.000000,0.000000,11,0,0.002746,0.003985,7302298,6311733,0,0,23106,0,1,1 +1773559697.521868,0.75,4,3992.50,58.10,1380.43,2274.61,0.00,0.000000,0.000000,11,0,0.003419,0.005405,7302367,6311821,0,0,23109,0,1,1 +1773559702.521923,0.60,4,3992.50,58.10,1380.45,2274.59,0.00,8204.338883,9126.159030,614222,1236919,0.002742,0.004121,7302433,6311903,0,0,23112,0,1,1 +1773559707.524565,0.65,4,3992.50,58.12,1379.47,2275.57,0.00,3516578553878.085938,3516578552965.756836,251,190,0.002503,0.003332,7302491,6311972,0,0,23114,0,1,1 +1773559712.525588,6.98,4,3992.50,59.15,1339.21,2315.83,0.00,0.000000,0.000000,251,190,6.047284,0.036217,7304607,6313560,0,0,23117,0,1,1 +1773559717.526532,21.06,4,3992.50,58.35,1370.32,2284.59,0.00,3517773615363.367188,3517773615354.169922,205,0,32.156187,0.141968,7314923,6321202,0,0,23119,0,1,1 +1773559722.523305,2.11,4,3992.50,58.10,1380.22,2274.64,0.00,3520709008335.126465,0.000000,11,0,2.053335,0.012981,7315708,6321859,0,0,23122,0,1,1 +1773559727.526182,0.65,4,3992.50,58.08,1380.89,2274.00,0.00,1.655200,10.669057,251,190,0.002503,0.003306,7315766,6321926,0,0,23124,0,1,1 +1773559732.521714,0.70,4,3992.50,58.09,1380.67,2274.23,0.00,0.000000,0.000000,251,190,0.002736,0.003958,7315831,6322006,0,0,23126,0,1,1 +1773559737.522683,0.60,4,3992.50,58.09,1380.68,2274.22,0.00,3517755584638.906738,3517755584629.708984,205,0,0.002733,0.003963,7315896,6322087,0,0,23129,0,1,1 +1773559742.526657,1.05,4,3992.50,58.52,1363.84,2291.02,0.00,1.830576,0.000195,246,2,0.003023,0.004409,7315969,6322178,0,0,23132,0,1,1 +1773559747.525242,0.65,4,3992.50,58.31,1371.82,2283.05,0.00,3519432763496.955566,3519432763498.968750,11,0,0.003243,0.005017,7316047,6322278,0,0,23134,0,1,1 +1773559752.525683,0.65,4,3992.50,58.31,1371.80,2283.07,0.00,0.180258,0.000000,205,0,0.002733,0.003989,7316112,6322361,0,0,23137,0,1,1 +1773559757.525153,0.70,4,3992.50,57.81,1391.59,2263.30,0.00,3518809717821.129395,0.000000,11,0,0.002734,0.003955,7316177,6322441,0,0,23139,0,1,1 +1773559762.521813,0.75,4,3992.50,57.81,1391.38,2263.50,0.00,1.657260,10.682332,251,190,0.002743,0.004458,7316243,6322526,0,0,23142,0,1,1 +1773559767.525919,0.55,4,3992.50,57.82,1391.16,2263.73,0.00,8196.041999,9109.697155,614223,1238598,0.002731,0.004099,7316308,6322606,0,0,23144,0,1,1 +1773559772.525750,0.90,4,3992.50,58.12,1378.40,2275.49,0.00,3518556432593.179199,3518556431669.723145,11,0,0.002734,0.003954,7316373,6322686,0,0,23146,0,1,1 +1773559777.523924,0.60,4,3992.50,58.12,1376.32,2275.71,0.00,8216.992894,9141.933891,615712,1238833,0.002506,0.003319,7316431,6322754,0,0,23149,0,1,1 +1773559782.521808,11.82,4,3992.50,57.98,1382.05,2269.95,0.00,3519926861172.286133,3519926860247.291504,11,0,14.102798,0.070608,7321182,6326349,0,0,23152,0,1,1 +1773559787.522591,16.89,4,3992.50,58.44,1363.64,2288.24,0.00,8212.704478,9137.549117,615712,1239655,26.160944,0.118685,7329760,6332685,0,0,23154,0,1,1 +1773559792.525988,0.70,4,3992.50,58.32,1368.34,2283.55,0.00,3516048101539.428711,3516048100624.080566,251,190,0.002315,0.003183,7329814,6332752,0,0,23157,0,1,1 +1773559797.521769,0.65,4,3992.50,58.18,1374.13,2277.76,0.00,8209.702270,9125.756044,614223,1239795,0.002736,0.003945,7329879,6332831,0,0,23159,0,1,1 +1773559802.524893,1.25,4,3992.50,58.42,1363.97,2287.20,0.00,3516240288908.716797,3516240287984.940430,75,0,0.002732,0.003949,7329944,6332911,0,0,23162,0,1,1 +1773559807.526018,0.75,4,3992.50,58.36,1366.08,2285.08,0.00,3517645457947.000488,0.000000,11,0,0.002741,0.003936,7330010,6332990,0,0,23164,0,1,1 +1773559812.521801,0.85,4,3992.50,58.16,1373.97,2277.20,0.00,0.053561,0.000000,75,0,0.002711,0.003958,7330073,6333070,0,0,23166,0,1,1 +1773559817.526265,0.80,4,3992.50,58.16,1374.07,2277.09,0.00,1.957042,0.000195,246,2,0.002490,0.003328,7330130,6333139,0,0,23169,0,1,1 +1773559822.526537,0.95,4,3992.50,58.16,1374.09,2277.08,0.00,8201.971287,9128.855727,614223,1240187,0.002733,0.003964,7330195,6333220,0,0,23172,0,1,1 +1773559827.526400,1.56,4,3992.50,57.97,1381.41,2269.77,0.00,3518533946991.883789,3518533946066.935547,11,0,0.002742,0.004445,7330261,6333304,0,0,23174,0,1,1 +1773559832.526461,1.15,4,3992.50,58.18,1379.30,2277.87,0.00,0.000000,0.000000,11,0,0.002734,0.004125,7330326,6333386,0,0,23177,0,1,1 +1773559837.525874,0.75,4,3992.50,58.14,1381.05,2276.12,0.00,8214.956071,9141.226669,615712,1240481,0.002734,0.003942,7330391,6333465,0,0,23179,0,1,1 +1773559842.526467,0.85,4,3992.50,58.17,1379.62,2277.55,0.00,3518019945212.015625,3518019944283.951172,246,2,0.002733,0.003951,7330456,6333545,0,0,23182,0,1,1 +1773559847.521879,0.80,4,3992.50,58.18,1379.15,2278.03,0.00,3521668272611.267090,10.684803,251,190,0.002736,0.003958,7330521,6333625,0,0,23184,0,1,1 +1773559852.523038,16.98,4,3992.50,59.23,1338.32,2318.80,0.00,3517622118147.766113,3517622118138.749023,11,0,20.131846,0.098625,7337220,6338583,0,0,23186,0,1,1 +1773559857.525748,13.88,4,3992.50,59.37,1332.64,2324.39,0.00,8209.547813,9139.651401,615715,1242471,20.111973,0.089165,7343774,6343483,0,0,23189,0,1,1 +1773559862.526621,1.10,4,3992.50,59.54,1327.25,2331.27,0.00,3517822924762.161133,3517822923831.715820,11,0,0.002733,0.003964,7343839,6343564,0,0,23192,0,1,1 +1773559867.526061,0.80,4,3992.50,59.03,1347.33,2311.23,0.00,0.000000,0.000000,11,0,0.002492,0.003321,7343896,6343632,0,0,23194,0,1,1 +1773559872.526508,0.85,4,3992.50,58.38,1372.73,2285.84,0.00,2.012125,0.000195,246,2,0.002741,0.003972,7343962,6343714,0,0,23197,0,1,1 +1773559877.524267,0.85,4,3992.50,58.19,1380.16,2278.41,0.00,3520014359060.452148,10.679785,251,190,0.002735,0.003956,7344027,6343794,0,0,23199,0,1,1 +1773559882.526110,0.70,4,3992.50,58.01,1387.34,2271.23,0.00,3517140963765.635254,3517140963756.619629,11,0,0.002733,0.003963,7344092,6343875,0,0,23202,0,1,1 +1773559887.525664,0.80,4,3992.50,58.04,1386.12,2272.44,0.00,0.000000,0.000000,11,0,0.001574,0.001815,7344134,6343920,0,0,23204,0,1,1 +1773559892.523378,1.10,4,3992.50,58.43,1372.93,2287.64,0.00,0.000000,0.000000,11,0,0.001591,0.002116,7344178,6343970,0,0,23206,0,1,1 +1773559897.525870,1.55,4,3992.50,58.30,1375.86,2282.71,0.00,8200.349323,9130.405459,614226,1242934,0.002076,0.002946,7344232,6344031,0,0,23209,0,1,1 +1773559902.521704,0.65,4,3992.50,58.26,1377.58,2280.99,0.00,3521371583566.332520,3521371582644.062988,251,190,0.001205,0.001895,7344260,6344073,0,0,23212,0,1,1 +1773559907.526676,1.00,4,3992.50,58.30,1376.11,2282.45,0.00,0.000000,0.000000,251,190,0.001841,0.002643,7344302,6344126,0,0,23214,0,1,1 +1773559912.525975,0.75,4,3992.50,58.13,1382.82,2275.75,0.00,3518930249013.876953,3518930249004.856934,11,0,0.001860,0.001963,7344342,6344172,0,0,23217,0,1,1 +1773559917.526200,5.41,4,3992.50,57.93,1390.43,2268.11,0.00,0.053513,0.000000,75,0,0.016365,0.008920,7344640,6344368,0,0,23219,0,1,1 +1773559922.527547,3.12,4,3992.50,58.56,1369.23,2292.57,0.00,0.126724,0.000000,205,0,0.017391,0.011956,7344926,6344582,0,0,23222,0,1,1 +1773559927.526546,4.03,4,3992.50,58.93,1354.72,2307.09,0.00,1.832398,0.000195,246,2,2.839068,0.066377,7350218,6349452,0,0,23224,0,1,1 +1773559932.525989,3.27,4,3992.50,59.23,1343.00,2318.83,0.00,3518829051609.239258,3518829051611.071289,205,0,3.423977,0.079712,7356587,6355506,0,0,23226,0,1,1 +1773559937.525552,2.52,4,3992.50,58.97,1353.03,2308.77,0.00,0.000000,0.000000,205,0,1.953374,0.057469,7360311,6359590,0,0,23229,0,1,1 +1773559942.522006,5.65,4,3992.50,59.30,1340.21,2321.58,0.00,3520934755079.870605,0.000000,11,0,1.997826,0.047076,7364120,6362935,0,0,23232,0,1,1 +1773559947.525940,3.02,4,3992.50,59.09,1348.46,2313.32,0.00,0.000000,0.000000,11,0,3.429223,0.085560,7370511,6369324,0,0,23234,0,1,1 +1773559952.521707,3.53,4,3992.50,58.79,1360.61,2301.62,0.00,1.657556,10.684242,251,190,3.161566,0.077090,7376452,6374995,0,0,23237,0,1,1 +1773559957.522121,2.01,4,3992.50,58.45,1372.81,2288.25,0.00,3518145543358.113770,3518145543348.915527,205,0,1.687815,0.050699,7379667,6378543,0,0,23239,0,1,1 +1773559962.521729,4.33,4,3992.50,59.01,1350.71,2310.32,0.00,3518713266013.591309,0.000000,11,0,2.094115,0.048778,7383649,6381957,0,0,23242,0,1,1 +1773559967.525561,3.38,4,3992.50,59.01,1350.49,2310.56,0.00,8198.152775,9129.047917,614226,1244222,3.337183,0.083405,7389859,6388167,0,0,23244,0,1,1 +1773559972.521724,3.12,4,3992.50,58.98,1351.98,2309.07,0.00,3521139599264.637207,3521139598332.259766,75,0,3.227896,0.074674,7395884,6393723,0,0,23246,0,1,1 +1773559977.521966,2.86,4,3992.50,58.60,1366.71,2294.34,0.00,3518266548327.687012,0.000000,11,0,1.614057,0.051904,7398944,6397421,0,0,23249,0,1,1 +1773559982.525802,7.05,4,3992.50,58.84,1347.36,2303.86,0.00,0.000000,0.000000,11,0,2.417367,0.056574,7403531,6401457,0,0,23252,0,1,1 +1773559987.525661,3.68,4,3992.50,58.62,1355.96,2295.26,0.00,8204.667519,9136.782498,614226,1244717,3.356390,0.081986,7409766,6407589,0,0,23254,0,1,1 +1773559992.524920,2.82,4,3992.50,58.53,1359.51,2291.69,0.00,3518959277699.953613,3518959276767.726562,11,0,3.262487,0.075243,7415858,6413252,0,0,23257,0,1,1 +1773559997.525800,1.86,4,3992.50,58.11,1375.98,2275.23,0.00,0.053506,0.000000,75,0,1.235230,0.044966,7418234,6416333,0,0,23259,0,1,1 +1773560002.526538,2.56,4,3992.50,58.53,1359.67,2291.53,0.00,0.126739,0.000000,205,0,2.034977,0.049355,7422046,6419966,0,0,23262,0,1,1 +1773560007.521701,0.95,4,3992.50,58.32,1367.68,2283.51,0.00,8212.201676,9145.571781,614226,1244999,0.022804,0.004644,7422169,6420174,0,0,23264,0,1,1 +1773560012.523281,1.50,4,3992.50,58.61,1356.39,2294.76,0.00,0.000000,0.130720,614226,1245068,0.001550,0.002481,7422204,6420225,0,0,23266,0,1,1 +1773560017.526002,0.75,4,3992.50,58.41,1364.35,2286.85,0.00,3516523696970.198242,3516523696047.301758,251,190,0.002054,0.002070,7422249,6420271,0,0,23269,0,1,1 +1773560022.525696,1.00,4,3992.50,58.40,1364.57,2286.62,0.00,0.356174,3518652335757.680664,246,2,0.001877,0.002315,7422291,6420319,0,0,23272,0,1,1 +1773560027.526070,0.75,4,3992.50,58.40,1364.58,2286.61,0.00,3518174187364.581543,3518174187366.413574,205,0,0.000890,0.002287,7422316,6420356,0,0,23274,0,1,1 +1773560032.524335,0.90,4,3992.50,58.40,1364.59,2286.60,0.00,8216.668488,9150.804460,615715,1245359,0.002219,0.002685,7422363,6420412,0,0,23277,0,1,1 +1773560037.521726,0.75,4,3992.50,58.40,1364.61,2286.59,0.00,0.000000,0.029898,615715,1245396,0.001663,0.001730,7422399,6420451,0,0,23279,0,1,1 +1773560042.525995,1.15,4,3992.50,58.60,1357.03,2294.16,0.00,3515435470864.097656,3515435469929.222168,246,2,0.003457,0.004664,7422448,6420522,0,0,23282,0,1,1 +1773560047.522022,0.80,4,3992.50,58.55,1358.76,2292.43,0.00,3521235506568.373535,3521235506570.387695,11,0,0.002123,0.002516,7422496,6420576,0,0,23284,0,1,1 +1773560052.521788,0.95,4,3992.50,58.55,1358.77,2292.41,0.00,0.000000,0.000000,11,0,0.002241,0.002919,7422542,6420634,0,0,23286,0,1,1 +1773560057.526109,0.65,4,3992.50,58.55,1358.86,2292.34,0.00,8206.905343,9139.974796,615715,1245601,0.001455,0.002287,7422576,6420680,0,0,23289,0,1,1 +1773560062.526585,0.95,4,3992.50,58.34,1367.03,2284.17,0.00,3518102267947.218262,3518102267946.120605,614226,1245420,0.001678,0.002082,7422616,6420726,0,0,23292,0,1,1 +1773560067.523581,0.80,4,3992.50,58.34,1367.03,2284.16,0.00,3520552836771.719238,3520552835838.379883,11,0,0.002057,0.002347,7422661,6420775,0,0,23294,0,1,1 +1773560072.525785,1.95,4,3992.50,58.42,1365.92,2287.29,0.00,8210.378663,9144.021446,615715,1245736,0.003225,0.002450,7422729,6420830,0,0,23297,0,1,1 +1773560077.522971,4.91,4,3992.50,58.26,1372.17,2280.99,0.00,3520418515199.750488,3520418515198.826172,614226,1245789,0.019319,0.011556,7423063,6421058,0,0,23299,0,1,1 +1773560082.525777,3.12,4,3992.50,58.41,1366.29,2286.89,0.00,3516463624855.717773,3516463623921.099609,246,2,1.213200,0.030282,7425470,6422903,0,0,23302,0,1,1 +1773560087.523440,2.77,4,3992.50,58.59,1359.20,2293.99,0.00,3520082763795.472656,3520082763797.305664,205,0,2.677913,0.070801,7430451,6428129,0,0,23304,0,1,1 +1773560092.522091,4.53,4,3992.50,59.02,1342.31,2310.85,0.00,3519386672538.978027,0.000000,75,0,2.615806,0.063246,7435412,6432614,0,0,23306,0,1,1 +1773560097.522590,4.13,4,3992.50,59.01,1342.73,2310.42,0.00,3518085819657.010254,0.000000,11,0,2.880478,0.072331,7440837,6438007,0,0,23309,0,1,1 +1773560102.521961,2.52,4,3992.50,58.61,1364.25,2294.85,0.00,0.000000,0.000000,11,0,2.909582,0.074774,7446211,6443579,0,0,23312,0,1,1 +1773560107.525889,4.03,4,3992.50,58.95,1351.07,2308.03,0.00,0.000000,0.000000,11,0,1.655412,0.041740,7449433,6446428,0,0,23314,0,1,1 +1773560112.522786,2.88,4,3992.50,58.31,1376.08,2283.02,0.00,0.053549,0.000000,75,0,3.137579,0.080234,7455303,6452332,0,0,23317,0,1,1 +1773560117.526283,2.97,4,3992.50,58.58,1365.55,2293.55,0.00,1.601517,10.667736,251,190,3.272068,0.077386,7461408,6458205,0,0,23319,0,1,1 +1773560122.526262,2.72,4,3992.50,58.12,1383.64,2275.46,0.00,0.000000,0.000000,251,190,2.245476,0.061491,7465624,6462665,0,0,23322,0,1,1 +1773560127.526175,4.08,4,3992.50,59.20,1341.08,2317.99,0.00,0.356158,3518497994443.876953,246,2,1.649376,0.041242,7468810,6465490,0,0,23324,0,1,1 +1773560132.526049,2.92,4,3992.50,58.95,1355.84,2307.88,0.00,8212.192996,9149.530778,615715,1247211,3.145615,0.078885,7474707,6471332,0,0,23326,0,1,1 +1773560137.526138,3.48,4,3992.50,58.93,1356.61,2307.05,0.00,3518374542642.302734,3518374541716.036621,251,190,3.256831,0.077389,7480794,6477180,0,0,23329,0,1,1 +1773560142.521696,3.17,4,3992.50,58.66,1366.95,2296.68,0.00,3521565918766.797363,3521565918757.770508,11,0,2.225759,0.061519,7484979,6481619,0,0,23332,0,1,1 +1773560147.525434,3.07,4,3992.50,58.95,1355.62,2307.99,0.00,8207.861525,9142.667087,615715,1247500,1.721196,0.039931,7488259,6484425,0,0,23334,0,1,1 +1773560152.521695,3.18,4,3992.50,58.83,1360.14,2303.51,0.00,3521070338054.272461,3521070337127.093750,251,190,3.389528,0.082841,7494575,6490603,0,0,23337,0,1,1 +1773560157.521833,1.92,4,3992.50,58.64,1367.91,2295.72,0.00,8202.554723,9127.979720,614226,1247461,2.942424,0.074598,7500037,6496244,0,0,23339,0,1,1 +1773560162.525759,1.40,4,3992.50,58.68,1366.61,2297.28,0.00,0.000000,0.126170,614226,1247513,0.167142,0.010583,7500458,6496834,0,0,23342,0,1,1 +1773560167.521792,0.65,4,3992.50,58.51,1373.04,2290.87,0.00,3521231202564.756348,3521231201629.417969,11,0,0.001666,0.002159,7500496,6496879,0,0,23344,0,1,1 +1773560172.521728,0.60,4,3992.50,58.53,1372.31,2291.59,0.00,0.000000,0.000000,11,0,0.002100,0.002541,7500544,6496933,0,0,23346,0,1,1 +1773560177.523456,0.50,4,3992.50,58.53,1372.32,2291.58,0.00,0.000000,0.000000,11,0,0.001279,0.001725,7500575,6496972,0,0,23349,0,1,1 +1773560182.525798,0.65,4,3992.50,58.53,1372.45,2291.45,0.00,0.180189,0.000000,205,0,0.001617,0.002401,7500611,6497018,0,0,23352,0,1,1 +1773560187.521781,0.55,4,3992.50,58.53,1372.46,2291.43,0.00,0.000000,0.000000,205,0,0.001951,0.002292,7500656,6497065,0,0,23354,0,1,1 +1773560192.526555,0.85,4,3992.50,58.82,1361.00,2302.91,0.00,8196.431551,9130.591580,614226,1247727,0.001401,0.001904,7500688,6497106,0,0,23357,0,1,1 +1773560197.521833,0.65,4,3992.50,58.82,1360.97,2302.89,0.00,3521763061443.852051,3521763060508.042969,75,0,0.001659,0.002427,7500727,6497153,0,0,23359,0,1,1 +1773560202.526177,0.65,4,3992.50,58.62,1368.61,2295.25,0.00,3515383230248.018066,0.000000,11,0,0.001896,0.001961,7500770,6497199,0,0,23362,0,1,1 +1773560207.525674,0.50,4,3992.50,58.62,1368.61,2295.25,0.00,2.012507,0.000195,246,2,0.001455,0.002259,7500804,6497243,0,0,23364,0,1,1 +1773560212.526625,0.50,4,3992.50,58.62,1368.63,2295.24,0.00,3517768257405.574219,3517768257407.405762,205,0,0.001502,0.002219,7500840,6497287,0,0,23366,0,1,1 +1773560217.526179,0.65,4,3992.50,58.62,1368.63,2295.22,0.00,8214.550739,9150.960528,615715,1248108,0.002021,0.002156,7500884,6497336,0,0,23369,0,1,1 +1773560222.523046,0.70,4,3992.50,58.73,1358.05,2299.27,0.00,3520642951533.704590,3520642951532.655762,614226,1247962,0.001482,0.002934,7500920,6497386,0,0,23372,0,1,1 +1773560227.526471,2.00,4,3992.50,58.29,1374.78,2282.33,0.00,3516028952903.934570,3516028951969.477051,11,0,0.007507,0.004009,7501066,6497480,0,0,23374,0,1,1 +1773560232.525888,3.36,4,3992.50,58.41,1370.15,2286.97,0.00,2.012539,0.000195,246,2,0.020646,0.012605,7501419,6497735,0,0,23377,0,1,1 +1773560237.523270,2.87,4,3992.50,58.38,1371.39,2285.73,0.00,3520280401649.416016,3520280401651.429199,11,0,2.000533,0.048449,7505158,6501112,0,0,23379,0,1,1 +1773560242.526554,3.22,4,3992.50,59.01,1346.87,2310.21,0.00,1.655066,10.668190,251,190,1.841216,0.047094,7508664,6504481,0,0,23382,0,1,1 +1773560247.523212,3.54,4,3992.50,58.64,1361.33,2295.75,0.00,3520790089524.150879,3520790089515.126465,11,0,3.006992,0.078014,7514361,6510171,0,0,23384,0,1,1 +1773560252.521765,3.33,4,3992.50,59.39,1331.64,2325.32,0.00,0.000000,0.000000,11,0,3.239025,0.079439,7520442,6516047,0,0,23386,0,1,1 +1773560257.526194,3.17,4,3992.50,59.00,1346.95,2310.00,0.00,1.654687,10.665749,251,190,2.245923,0.061202,7524671,6520491,0,0,23389,0,1,1 +1773560262.525822,4.03,4,3992.50,59.22,1338.21,2318.70,0.00,8212.952786,9141.033797,615715,1249130,1.951330,0.048753,7528395,6523906,0,0,23392,0,1,1 +1773560267.524397,2.32,4,3992.50,58.91,1350.41,2306.47,0.00,3519440626980.596680,3519440626041.285156,246,2,3.321753,0.079308,7534570,6529814,0,0,23394,0,1,1 +1773560272.521698,3.17,4,3992.50,59.07,1344.15,2312.78,0.00,3520336807264.745117,3520336807266.758789,11,0,3.432982,0.084364,7540988,6536110,0,0,23397,0,1,1 +1773560277.525567,1.96,4,3992.50,58.42,1369.71,2287.20,0.00,2.010749,0.000195,246,2,1.570657,0.047869,7543977,6539471,0,0,23399,0,1,1 +1773560282.526129,3.53,4,3992.50,58.80,1360.51,2302.05,0.00,3518041848523.997559,3518041848525.829590,205,0,2.605335,0.057547,7548842,6543792,0,0,23402,0,1,1 +1773560287.521702,2.82,4,3992.50,58.70,1364.06,2298.21,0.00,1.833655,0.000195,246,2,1.701258,0.048632,7552107,6547201,0,0,23404,0,1,1 +1773560292.523832,3.89,4,3992.50,59.63,1327.61,2334.61,0.00,8208.490253,9147.765045,615715,1249876,3.139124,0.075449,7557974,6552754,0,0,23406,0,1,1 +1773560297.525886,2.83,4,3992.50,58.88,1357.04,2305.18,0.00,0.000000,0.116066,615715,1249992,3.203403,0.077426,7564004,6558401,0,0,23409,0,1,1 +1773560302.521737,3.27,4,3992.50,58.81,1359.55,2302.71,0.00,3521359342971.685547,3521359342031.114258,246,2,3.119475,0.079962,7569766,6564471,0,0,23412,0,1,1 +1773560307.526146,2.81,4,3992.50,58.87,1357.43,2304.82,0.00,3515337546641.207520,3515337546643.164551,75,0,0.902445,0.028219,7571629,6566236,0,0,23414,0,1,1 +1773560312.521710,2.27,4,3992.50,59.14,1346.86,2315.39,0.00,3521561070201.319336,0.000000,11,0,3.321219,0.078928,7577732,6572254,0,0,23417,0,1,1 +1773560317.522995,1.00,4,3992.50,58.81,1359.53,2302.72,0.00,0.053502,0.000000,75,0,0.503032,0.018808,7578747,6573521,0,0,23419,0,1,1 +1773560322.526672,1.00,4,3992.50,58.82,1359.32,2302.93,0.00,8207.909967,9145.494632,615715,1250466,0.002360,0.002989,7578801,6573581,0,0,23421,0,1,1 +1773560327.525445,0.65,4,3992.50,58.83,1359.09,2303.16,0.00,3519300509719.339355,3519300508780.888672,11,0,0.002075,0.002527,7578847,6573634,0,0,23424,0,1,1 +1773560332.526307,0.45,4,3992.50,58.83,1359.11,2303.14,0.00,8203.022541,9140.059621,614226,1250349,0.001240,0.001524,7578875,6573667,0,0,23426,0,1,1 +1773560337.525891,0.80,4,3992.50,58.83,1358.88,2303.37,0.00,0.000000,0.006641,614226,1250360,0.001657,0.002606,7578914,6573719,0,0,23429,0,1,1 +1773560342.526227,0.95,4,3992.50,58.92,1355.70,2306.98,0.00,9.560882,10.772519,615715,1250613,0.004241,0.004144,7578974,6573792,0,0,23432,0,1,1 +1773560347.522609,0.60,4,3992.50,58.91,1355.95,2306.31,0.00,3520984518888.718750,3520984517949.622559,11,0,0.001430,0.002102,7579006,6573833,0,0,23434,0,1,1 +1773560352.525707,0.60,4,3992.50,58.91,1355.95,2306.30,0.00,8208.912050,9146.782796,615715,1250660,0.001989,0.004070,7579053,6573903,0,0,23437,0,1,1 +1773560357.525811,0.65,4,3992.50,58.90,1356.05,2306.21,0.00,3518364423302.761719,3518364422373.348145,251,190,0.002004,0.002141,7579096,6573951,0,0,23439,0,1,1 +1773560362.521818,0.45,4,3992.50,58.92,1355.31,2306.94,0.00,3521249532288.175781,3521249532278.969238,205,0,0.001445,0.002290,7579129,6573997,0,0,23442,0,1,1 +1773560367.522791,0.60,4,3992.50,58.93,1355.09,2307.16,0.00,8212.218576,9150.725236,615715,1250717,0.001429,0.001861,7579161,6574037,0,0,23444,0,1,1 +1773560372.525393,1.00,4,3992.50,58.74,1350.30,2299.64,0.00,3516607421912.395508,3516607420974.374512,11,0,0.002047,0.002495,7579205,6574088,0,0,23446,0,1,1 +1773560377.523304,0.50,4,3992.50,58.55,1357.72,2292.24,0.00,1.656845,10.679657,251,190,0.001319,0.002076,7579237,6574130,0,0,23449,0,1,1 +1773560382.525663,3.61,4,3992.50,58.19,1371.65,2278.32,0.00,3516777741342.073242,3516777741332.877930,205,0,0.011980,0.006726,7579460,6574280,0,0,23452,0,1,1 +1773560387.526614,2.61,4,3992.50,58.18,1372.00,2277.93,0.00,3517768375581.824219,0.000000,75,0,0.020285,0.012565,7579794,6574524,0,0,23454,0,1,1 +1773560392.522622,3.77,4,3992.50,59.17,1333.38,2316.57,0.00,1.960354,0.000195,246,2,1.781517,0.043994,7583158,6577619,0,0,23457,0,1,1 +1773560397.525418,3.27,4,3992.50,59.00,1339.81,2310.10,0.00,0.000000,0.000000,246,2,3.183136,0.078620,7589135,6583431,0,0,23459,0,1,1 +1773560402.525547,3.68,4,3992.50,58.86,1352.07,2304.49,0.00,3518346439765.237793,3518346439767.069824,205,0,3.314717,0.077217,7595277,6589296,0,0,23462,0,1,1 +1773560407.523107,2.62,4,3992.50,58.74,1356.64,2299.84,0.00,3520155400254.039062,0.000000,11,0,1.991907,0.057803,7599060,6593427,0,0,23464,0,1,1 +1773560412.521726,4.64,4,3992.50,58.80,1354.14,2302.31,0.00,8206.702457,9145.283155,614226,1251538,1.959587,0.045712,7602807,6596649,0,0,23466,0,1,1 +1773560417.525675,2.32,4,3992.50,58.70,1358.30,2298.14,0.00,3515660740656.041016,3515660739718.459961,11,0,3.483114,0.086484,7609270,6603057,0,0,23469,0,1,1 +1773560422.526096,3.13,4,3992.50,58.81,1353.92,2302.52,0.00,0.180258,0.000000,205,0,3.225415,0.078138,7615317,6608945,0,0,23472,0,1,1 +1773560427.521800,2.02,4,3992.50,58.52,1365.07,2291.37,0.00,0.000000,0.000000,205,0,1.605443,0.049414,7618397,6612397,0,0,23474,0,1,1 +1773560432.525566,3.93,4,3992.50,58.91,1351.88,2306.26,0.00,1.830653,0.000195,246,2,2.476670,0.057628,7623065,6616567,0,0,23477,0,1,1 +1773560437.525544,3.83,4,3992.50,58.93,1347.90,2307.39,0.00,3518452575371.145996,3518452575372.978027,205,0,3.216969,0.078345,7629068,6622398,0,0,23479,0,1,1 +1773560442.525901,2.42,4,3992.50,58.82,1352.30,2302.97,0.00,8203.670079,9142.768277,614226,1252264,3.403644,0.082183,7635412,6628588,0,0,23482,0,1,1 +1773560447.525731,1.86,4,3992.50,58.69,1357.32,2297.96,0.00,3518557133513.504395,3518557132574.487305,11,0,1.172524,0.039888,7637673,6631306,0,0,23484,0,1,1 +1773560452.525550,4.13,4,3992.50,59.05,1343.23,2312.02,0.00,0.180280,0.000000,205,0,2.597161,0.061049,7642576,6635689,0,0,23486,0,1,1 +1773560457.526319,3.78,4,3992.50,59.17,1338.76,2316.48,0.00,1.831749,0.000195,246,2,3.241622,0.078333,7648647,6641518,0,0,23489,0,1,1 +1773560462.521719,2.32,4,3992.50,58.79,1353.17,2301.88,0.00,0.000000,0.000000,246,2,3.384399,0.083175,7654892,6647826,0,0,23492,0,1,1 +1773560467.521840,1.11,4,3992.50,58.55,1362.83,2292.23,0.00,3518352434882.993164,3518352434884.952148,75,0,1.050857,0.033765,7656935,6650191,0,0,23494,0,1,1 +1773560472.525959,0.75,4,3992.50,58.54,1363.00,2292.05,0.00,8197.629965,9136.463864,614226,1252907,0.004394,0.003219,7657020,6650266,0,0,23497,0,1,1 +1773560477.526428,0.65,4,3992.50,58.54,1363.05,2292.00,0.00,3518107485756.062500,3518107484816.596680,11,0,0.001632,0.002437,7657057,6650314,0,0,23499,0,1,1 +1773560482.522735,0.65,4,3992.50,58.54,1363.00,2292.06,0.00,2.013792,0.000195,246,2,0.002063,0.002583,7657102,6650362,0,0,23502,0,1,1 +1773560487.526253,0.65,4,3992.50,58.54,1363.00,2292.05,0.00,8196.656436,9137.824985,614226,1253084,0.001762,0.002954,7657147,6650420,0,0,23504,0,1,1 +1773560492.526495,0.95,4,3992.50,58.63,1367.57,2295.43,0.00,9.561061,10.740105,615715,1253310,0.002733,0.003954,7657212,6650500,0,0,23506,0,1,1 +1773560497.525721,0.55,4,3992.50,58.43,1375.20,2287.79,0.00,3518982540912.548828,3518982539971.405273,11,0,0.002734,0.003952,7657277,6650580,0,0,23509,0,1,1 +1773560502.521784,0.70,4,3992.50,58.44,1374.79,2288.20,0.00,0.000000,0.000000,11,0,0.002736,0.003967,7657342,6650661,0,0,23512,0,1,1 +1773560507.522954,0.65,4,3992.50,58.44,1374.80,2288.20,0.00,8212.076491,9152.990568,615715,1253461,0.002733,0.003941,7657407,6650740,0,0,23514,0,1,1 +1773560512.526419,0.55,4,3992.50,58.44,1374.82,2288.18,0.00,3516000846951.121094,3516000846010.638184,11,0,0.002732,0.003949,7657472,6650820,0,0,23517,0,1,1 +1773560517.521794,0.70,4,3992.50,58.43,1375.50,2287.50,0.00,0.180440,0.000000,205,0,0.002744,0.003953,7657538,6650900,0,0,23519,0,1,1 +1773560522.526042,0.85,4,3992.50,58.54,1371.13,2292.16,0.00,0.000000,0.000000,205,0,0.002731,0.003938,7657603,6650979,0,0,23521,0,1,1 +1773560527.525792,0.65,4,3992.50,58.44,1375.21,2288.02,0.00,3518612975564.433105,0.000000,11,0,0.002505,0.003343,7657661,6651049,0,0,23524,0,1,1 +1773560532.521718,0.65,4,3992.50,58.43,1375.48,2287.74,0.00,8211.127194,9152.119103,614226,1253478,0.002736,0.003958,7657726,6651129,0,0,23526,0,1,1 +1773560537.525695,12.35,4,3992.50,58.49,1373.25,2289.95,0.00,3515641341901.407227,3515641340961.928711,11,0,14.093135,0.072949,7662596,6654810,0,0,23529,0,1,1 +1773560542.521691,12.54,4,3992.50,58.58,1369.42,2293.70,0.00,1.657479,10.683750,251,190,18.118813,0.079580,7668367,6659148,0,0,23532,0,1,1 +1773560547.526182,6.27,4,3992.50,59.11,1348.94,2314.19,0.00,3515279946839.406250,3515279946830.215332,205,0,8.044784,0.040015,7671039,6661169,0,0,23534,0,1,1 +1773560552.525099,1.15,4,3992.50,59.20,1340.77,2317.79,0.00,0.000000,0.000000,205,0,0.005578,0.005896,7671151,6661278,0,0,23537,0,1,1 +1773560557.526360,0.65,4,3992.50,58.99,1347.06,2309.61,0.00,0.000000,0.000000,205,0,0.002733,0.003953,7671216,6661358,0,0,23539,0,1,1 +1773560562.522572,0.65,4,3992.50,58.99,1347.10,2309.59,0.00,1.476998,10.683290,251,190,0.002736,0.003957,7671281,6661438,0,0,23541,0,1,1 +1773560567.522295,0.70,4,3992.50,58.81,1354.04,2302.64,0.00,3518632017943.270996,3518632017934.198242,75,0,0.002742,0.003972,7671347,6661520,0,0,23544,0,1,1 +1773560572.525975,0.55,4,3992.50,58.81,1354.22,2302.46,0.00,1.957349,0.000195,246,2,0.003640,0.004621,7671413,6661603,0,0,23546,0,1,1 +1773560577.522655,0.70,4,3992.50,58.81,1354.25,2302.43,0.00,3520774652581.346191,3520774652583.359863,11,0,0.002735,0.003967,7671478,6661684,0,0,23549,0,1,1 +1773560582.525925,0.90,4,3992.50,59.03,1344.95,2311.00,0.00,0.000000,0.000000,11,0,0.002503,0.003342,7671536,6661754,0,0,23552,0,1,1 +1773560587.525390,0.55,4,3992.50,58.84,1352.26,2303.58,0.00,1.656329,10.676337,251,190,0.002734,0.003942,7671601,6661833,0,0,23554,0,1,1 +1773560592.522424,0.55,4,3992.50,58.65,1359.67,2296.16,0.00,0.356364,3520525860117.869141,246,2,0.002735,0.003954,7671666,6661913,0,0,23557,0,1,1 +1773560597.526003,0.80,4,3992.50,58.65,1359.68,2296.14,0.00,3515919756190.771484,3515919756192.602051,205,0,0.002782,0.004014,7671735,6661997,0,0,23559,0,1,1 +1773560602.526258,0.60,4,3992.50,58.65,1359.71,2296.13,0.00,8203.839909,9145.695495,614226,1255142,0.003403,0.004886,7671803,6662080,0,0,23562,0,1,1 +1773560607.525752,6.48,4,3992.50,58.11,1380.52,2275.29,0.00,3518792688821.427246,3518792687879.608887,11,0,6.045271,0.032628,7673885,6663637,0,0,23564,0,1,1 +1773560612.525589,13.77,4,3992.50,58.49,1365.82,2289.92,0.00,0.180279,0.000000,205,0,20.134524,0.096349,7680629,6668699,0,0,23566,0,1,1 +1773560617.523798,10.70,4,3992.50,59.40,1328.75,2325.75,0.00,3519697152056.783691,0.000000,11,0,14.088095,0.059820,7685018,6671919,0,0,23569,0,1,1 +1773560622.525792,1.25,4,3992.50,58.23,1374.64,2279.89,0.00,2.011503,0.000195,246,2,0.002516,0.003342,7685077,6671989,0,0,23572,0,1,1 +1773560627.521725,0.65,4,3992.50,58.18,1376.84,2277.70,0.00,3521301401636.785156,3521301401638.799316,11,0,0.002736,0.003958,7685142,6672069,0,0,23574,0,1,1 +1773560632.521728,0.70,4,3992.50,58.22,1375.01,2279.53,0.00,2.012304,0.000195,246,2,0.002721,0.003964,7685206,6672150,0,0,23577,0,1,1 +1773560637.524632,0.60,4,3992.50,58.21,1375.63,2278.90,0.00,3516394798873.788086,10.668803,251,190,0.002732,0.003952,7685271,6672230,0,0,23579,0,1,1 +1773560642.526030,1.00,4,3992.50,58.39,1368.27,2286.18,0.00,3517453472820.110840,3517453472810.914062,205,0,0.004179,0.005719,7685353,6672336,0,0,23582,0,1,1 +1773560647.525291,0.65,4,3992.50,58.39,1368.34,2286.16,0.00,1.832302,0.000195,246,2,0.002734,0.003955,7685418,6672416,0,0,23584,0,1,1 +1773560652.526385,0.65,4,3992.50,58.39,1368.35,2286.15,0.00,3517667572061.348145,3517667572063.306641,75,0,0.003229,0.005040,7685495,6672518,0,0,23586,0,1,1 +1773560657.521799,0.70,4,3992.50,58.21,1375.53,2278.98,0.00,0.126874,0.000000,205,0,0.002507,0.003334,7685553,6672587,0,0,23589,0,1,1 +1773560662.525801,0.70,4,3992.50,58.25,1374.07,2280.44,0.00,3515622751074.038574,0.000000,11,0,0.002731,0.003948,7685618,6672667,0,0,23592,0,1,1 +1773560667.524223,0.65,4,3992.50,58.25,1374.08,2280.42,0.00,0.180330,0.000000,205,0,0.002742,0.003964,7685684,6672748,0,0,23594,0,1,1 +1773560672.521729,0.90,4,3992.50,58.35,1372.07,2284.34,0.00,1.832946,0.000195,246,2,0.002735,0.003954,7685749,6672828,0,0,23597,0,1,1 +1773560677.522799,0.65,4,3992.50,58.36,1371.37,2285.04,0.00,0.000000,0.000000,246,2,0.002733,0.004597,7685814,6672912,0,0,23599,0,1,1 +1773560682.526489,10.79,4,3992.50,59.51,1326.49,2329.89,0.00,0.000000,0.000000,246,2,12.277283,0.064331,7690055,6676069,0,0,23602,0,1,1 +1773560687.524811,14.13,4,3992.50,59.36,1332.34,2323.97,0.00,3519618709685.841797,3519618709687.854980,11,0,23.948082,0.103431,7697692,6681907,0,0,23604,0,1,1 +1773560692.522732,4.17,4,3992.50,59.05,1344.41,2311.88,0.00,8207.850251,9152.519189,614226,1258086,4.038948,0.023074,7699174,6682962,0,0,23606,0,1,1 +1773560697.525755,0.80,4,3992.50,58.81,1353.82,2302.49,0.00,3516310637275.085449,3516310636331.379883,11,0,0.002732,0.003962,7699239,6683043,0,0,23609,0,1,1 +1773560702.523750,1.30,4,3992.50,58.63,1365.84,2295.66,0.00,0.180346,0.000000,205,0,0.002735,0.003953,7699304,6683123,0,0,23612,0,1,1 +1773560707.522491,0.65,4,3992.50,58.64,1365.78,2295.73,0.00,1.832493,0.000195,246,2,0.002505,0.003334,7699362,6683192,0,0,23614,0,1,1 +1773560712.525959,0.95,4,3992.50,58.36,1376.51,2285.01,0.00,3515998184849.145020,3515998184851.156250,11,0,0.002727,0.003969,7699427,6683274,0,0,23617,0,1,1 +1773560717.525706,0.70,4,3992.50,58.22,1382.09,2279.43,0.00,0.053518,0.000000,75,0,0.002734,0.003955,7699492,6683354,0,0,23619,0,1,1 +1773560722.523410,0.70,4,3992.50,58.22,1382.11,2279.41,0.00,8208.151956,9153.558486,614226,1258500,0.002735,0.003966,7699557,6683435,0,0,23622,0,1,1 +1773560727.521788,0.75,4,3992.50,58.04,1389.29,2272.23,0.00,3519578502142.905762,3519578501197.500000,205,0,0.002734,0.003956,7699622,6683515,0,0,23624,0,1,1 +1773560732.522782,0.90,4,3992.50,58.47,1372.48,2289.14,0.00,8202.627116,9147.710471,614226,1258631,0.003970,0.004459,7699711,6683609,0,0,23626,0,1,1 +1773560737.522680,0.75,4,3992.50,58.36,1376.65,2284.88,0.00,3518508700997.778320,3518508700052.667969,11,0,0.002721,0.003964,7699775,6683690,0,0,23629,0,1,1 +1773560742.521722,0.85,4,3992.50,58.34,1377.28,2284.25,0.00,0.000000,0.000000,11,0,0.002433,0.004451,7699836,6683772,0,0,23632,0,1,1 +1773560747.523022,0.80,4,3992.50,58.37,1376.08,2285.46,0.00,0.180227,0.000000,205,0,0.002629,0.003320,7699895,6683840,0,0,23634,0,1,1 +1773560752.526630,0.80,4,3992.50,58.29,1379.28,2282.27,0.00,8207.896476,9153.730315,615715,1258976,0.002732,0.003949,7699960,6683920,0,0,23637,0,1,1 +1773560757.521695,13.18,4,3992.50,59.08,1348.24,2313.21,0.00,3521913152151.991699,3521913151213.749023,251,190,16.135268,0.083863,7705554,6688001,0,0,23639,0,1,1 +1773560762.525887,12.00,4,3992.50,58.78,1360.04,2301.36,0.00,3515489682415.317383,3515489682406.306152,11,0,20.093700,0.080728,7711845,6692629,0,0,23642,0,1,1 +1773560767.521726,6.08,4,3992.50,58.31,1374.52,2283.10,0.00,0.180424,0.000000,205,0,4.034663,0.024439,7713232,6693704,0,0,23644,0,1,1 +1773560772.525925,0.90,4,3992.50,58.37,1372.36,2285.27,0.00,8206.925542,9153.907961,615715,1260396,0.002731,0.003951,7713297,6693784,0,0,23646,0,1,1 +1773560777.522225,0.80,4,3992.50,58.42,1370.39,2287.22,0.00,3521042403748.952637,3521042402798.639648,246,2,0.002736,0.003955,7713362,6693864,0,0,23649,0,1,1 +1773560782.525909,0.85,4,3992.50,58.42,1370.42,2287.20,0.00,8196.386560,9144.198208,614226,1260221,0.002503,0.003328,7713420,6693933,0,0,23652,0,1,1 +1773560787.526451,0.95,4,3992.50,58.39,1371.63,2286.00,0.00,3518055367835.983887,3518055366889.409180,205,0,0.002733,0.003954,7713485,6694013,0,0,23654,0,1,1 +1773560792.526328,1.10,4,3992.50,58.70,1362.36,2298.42,0.00,0.000000,0.000000,205,0,0.002746,0.003964,7713551,6694094,0,0,23657,0,1,1 +1773560797.526300,0.90,4,3992.50,58.70,1362.42,2298.37,0.00,8204.301955,9151.217451,614226,1260358,0.002734,0.003954,7713616,6694174,0,0,23659,0,1,1 +1773560802.522482,0.80,4,3992.50,58.71,1362.20,2298.60,0.00,0.000000,0.034010,614226,1260398,0.002736,0.003967,7713681,6694255,0,0,23662,0,1,1 +1773560807.525220,0.85,4,3992.50,58.71,1361.98,2298.81,0.00,9.556291,10.701855,615715,1260631,0.002732,0.004596,7713746,6694339,0,0,23664,0,1,1 +1773560812.521716,0.65,4,3992.50,58.71,1362.00,2298.80,0.00,3520904991006.374512,3520904990057.746094,75,0,0.002744,0.003965,7713812,6694420,0,0,23666,0,1,1 +1773560817.525994,0.85,4,3992.50,58.71,1362.00,2298.79,0.00,1.957115,0.000195,246,2,0.002503,0.003328,7713870,6694489,0,0,23669,0,1,1 +1773560822.526275,1.10,4,3992.50,59.05,1351.85,2311.79,0.00,3518238774585.299316,3518238774587.131348,205,0,0.002733,0.003951,7713935,6694569,0,0,23672,0,1,1 +1773560827.525912,0.95,4,3992.50,58.49,1373.65,2289.90,0.00,8204.852383,9152.095879,614226,1260640,0.002734,0.003955,7714000,6694649,0,0,23674,0,1,1 +1773560832.526585,19.69,4,3992.50,59.19,1345.87,2317.60,0.00,9.560238,10.946184,615715,1261461,28.175503,0.129578,7723346,6701572,0,0,23677,0,1,1 +1773560837.522628,6.23,4,3992.50,59.49,1334.12,2329.28,0.00,3521223906425.584961,3521223905485.479492,251,190,8.065321,0.040059,7726124,6703662,0,0,23679,0,1,1 +1773560842.525476,4.26,4,3992.50,59.33,1340.51,2322.91,0.00,3516434303461.954102,3516434303452.940430,11,0,4.027201,0.022888,7727513,6704705,0,0,23682,0,1,1 +1773560847.525783,0.85,4,3992.50,59.06,1350.98,2312.43,0.00,0.000000,0.000000,11,0,0.002721,0.003954,7727577,6704785,0,0,23684,0,1,1 +1773560852.521717,1.25,4,3992.50,58.91,1360.70,2306.55,0.00,8220.681991,9170.664999,615715,1262056,0.004690,0.004328,7727680,6704879,0,0,23686,0,1,1 +1773560857.525961,1.00,4,3992.50,58.76,1366.69,2300.55,0.00,3515453304295.800781,3515453303356.406738,251,190,0.002731,0.003961,7727745,6704960,0,0,23689,0,1,1 +1773560862.521699,0.70,4,3992.50,58.76,1366.70,2300.55,0.00,3521439155472.824707,3521439155463.745117,75,0,0.002736,0.003968,7727810,6705041,0,0,23692,0,1,1 +1773560867.525847,0.85,4,3992.50,58.46,1378.36,2288.88,0.00,0.126653,0.000000,205,0,0.003201,0.005233,7727890,6705145,0,0,23694,0,1,1 +1773560872.525244,0.85,4,3992.50,58.49,1377.16,2290.09,0.00,1.476057,10.676484,251,190,0.003650,0.007135,7727983,6705278,0,0,23697,0,1,1 +1773560877.525821,1.00,4,3992.50,58.50,1376.96,2290.30,0.00,8211.394069,9151.658842,615715,1262220,0.004799,0.007779,7728085,6705420,0,0,23699,0,1,1 +1773560882.521710,1.15,4,3992.50,58.60,1372.50,2294.18,0.00,3521332416236.770996,3521332415286.597656,11,0,0.003423,0.005870,7728171,6705537,0,0,23702,0,1,1 +1773560887.525138,0.95,4,3992.50,58.60,1372.27,2294.42,0.00,8198.816259,9146.720053,614226,1262315,0.003883,0.007113,7728272,6705677,0,0,23704,0,1,1 +1773560892.526133,0.85,4,3992.50,58.60,1372.29,2294.40,0.00,0.000000,0.030853,614226,1262354,0.003877,0.007121,7728372,6705817,0,0,23706,0,1,1 +1773560897.522584,0.90,4,3992.50,58.60,1372.30,2294.39,0.00,0.000000,0.032347,614226,1262393,0.003931,0.007200,7728476,6705962,0,0,23709,0,1,1 +1773560902.527550,2.20,4,3992.50,58.59,1372.63,2294.04,0.00,3514946114019.145996,3514946113071.290527,205,0,0.011058,0.010336,7728685,6706161,0,0,23712,0,1,1 +1773560907.521703,21.88,4,3992.50,58.86,1362.20,2304.40,0.00,8213.861243,9164.174913,614226,1263183,32.239570,0.146541,7739162,6714017,0,0,23714,0,1,1 +1773560912.526273,6.97,4,3992.50,59.04,1354.98,2311.36,0.00,3515224180322.878906,3515224179383.734375,251,190,8.043808,0.039746,7741754,6715970,0,0,23717,0,1,1 +1773560917.523852,0.85,4,3992.50,58.76,1365.66,2300.61,0.00,3520142439802.375000,3520142439793.352051,11,0,0.002964,0.004590,7741826,6716062,0,0,23719,0,1,1 +1773560922.521715,1.15,4,3992.50,58.76,1365.56,2300.71,0.00,1.656860,10.679759,251,190,0.003854,0.007125,7741924,6716202,0,0,23721,0,1,1 +1773560927.526258,1.00,4,3992.50,58.71,1367.59,2298.68,0.00,3515243596013.770996,3515243596004.580078,205,0,0.003264,0.006897,7742013,6716337,0,0,23724,0,1,1 +1773560932.521807,0.80,4,3992.50,58.75,1366.16,2300.11,0.00,8221.135908,9173.000570,615715,1263892,0.003423,0.005860,7742099,6716453,0,0,23726,0,1,1 +1773560937.524937,0.90,4,3992.50,58.74,1366.65,2299.62,0.00,3516235624362.288086,3516235623412.046387,11,0,0.003876,0.007611,7742199,6716597,0,0,23729,0,1,1 +1773560942.522411,1.25,4,3992.50,58.79,1359.21,2301.78,0.00,1.656990,10.680592,251,190,0.004393,0.008384,7742313,6716761,0,0,23732,0,1,1 +1773560947.525899,0.80,4,3992.50,58.81,1358.49,2302.50,0.00,8197.062211,9137.468761,614226,1264000,0.003863,0.007117,7742412,6716901,0,0,23734,0,1,1 +1773560952.526548,0.95,4,3992.50,58.81,1358.50,2302.48,0.00,3517980369819.913086,3517980368869.901367,75,0,0.003916,0.006951,7742510,6717040,0,0,23737,0,1,1 +1773560957.524169,0.85,4,3992.50,58.81,1358.27,2302.71,0.00,3520112588164.897949,0.000000,11,0,0.003880,0.007126,7742610,6717180,0,0,23739,0,1,1 +1773560962.521919,0.90,4,3992.50,58.81,1358.29,2302.70,0.00,1.656898,10.680000,251,190,0.003888,0.007144,7742711,6717322,0,0,23742,0,1,1 +1773560967.526421,0.85,4,3992.50,58.58,1367.48,2293.51,0.00,0.355832,3515272603693.521973,246,2,0.003875,0.007116,7742811,6717462,0,0,23744,0,1,1 +1773560972.525736,8.79,4,3992.50,59.10,1346.88,2314.03,0.00,0.000000,0.000000,246,2,8.053077,0.041834,7745391,6719410,0,0,23746,0,1,1 +1773560977.521728,21.40,4,3992.50,58.42,1373.71,2287.17,0.00,8218.575729,9173.050699,615715,1265059,30.208398,0.136318,7754992,6726750,0,0,23749,0,1,1 +1773560982.525878,2.86,4,3992.50,58.54,1369.10,2291.77,0.00,0.000000,0.434893,615715,1265483,2.022381,0.018075,7755910,6727474,0,0,23752,0,1,1 +1773560987.525898,0.95,4,3992.50,58.53,1369.11,2291.76,0.00,3518423552704.294434,3518423551752.111816,75,0,0.003953,0.007173,7756015,6727618,0,0,23754,0,1,1 +1773560992.526468,0.95,4,3992.50,58.53,1369.12,2291.75,0.00,0.000000,0.000000,75,0,0.003878,0.007132,7756115,6727759,0,0,23757,0,1,1 +1773560997.525567,0.90,4,3992.50,58.53,1369.15,2291.73,0.00,8205.860986,9157.224199,614226,1265358,0.003650,0.006477,7756208,6727886,0,0,23759,0,1,1 +1773561002.524284,1.40,4,3992.50,58.77,1366.36,2300.95,0.00,3519340728766.609375,3519340727815.227051,11,0,0.003645,0.007165,7756301,6728021,0,0,23762,0,1,1 +1773561007.521790,0.80,4,3992.50,58.77,1362.18,2300.93,0.00,2.013309,0.000195,246,2,0.003880,0.007126,7756401,6728161,0,0,23764,0,1,1 +1773561012.521792,1.00,4,3992.50,58.47,1373.79,2289.33,0.00,8202.421848,9156.105425,614226,1265684,0.002950,0.004588,7756472,6728253,0,0,23766,0,1,1 +1773561017.521749,0.75,4,3992.50,58.51,1372.33,2290.78,0.00,3518466954948.426758,3518466953994.734375,246,2,0.003865,0.007132,7756571,6728394,0,0,23769,0,1,1 +1773561022.526026,0.90,4,3992.50,58.52,1372.12,2290.99,0.00,8195.414425,9148.350291,614226,1265764,0.003417,0.005860,7756657,6728511,0,0,23772,0,1,1 +1773561027.521986,0.85,4,3992.50,58.51,1372.14,2290.97,0.00,3521282499055.372559,3521282498102.683594,205,0,0.003881,0.007128,7756757,6728651,0,0,23774,0,1,1 +1773561032.525917,1.15,4,3992.50,58.75,1362.69,2300.01,0.00,3515673286390.434570,0.000000,75,0,0.003875,0.007127,7756857,6728792,0,0,23777,0,1,1 +1773561037.525760,0.90,4,3992.50,58.56,1370.12,2292.58,0.00,1.958851,0.000195,246,2,0.003874,0.007118,7756957,6728932,0,0,23779,0,1,1 +1773561042.524200,10.65,4,3992.50,58.73,1363.34,2299.29,0.00,3519534967323.629883,3519534967325.462891,205,0,10.087124,0.059925,7760613,6731620,0,0,23781,0,1,1 +1773561047.526360,18.80,4,3992.50,59.72,1324.34,2338.20,0.00,8210.271095,9163.789725,615715,1267198,30.166182,0.130486,7770317,6738840,0,0,23784,0,1,1 +1773561052.525818,1.90,4,3992.50,58.39,1376.68,2285.90,0.00,3518819210016.515137,3518819209062.661621,11,0,0.003408,0.005856,7770402,6738956,0,0,23786,0,1,1 +1773561057.526427,0.75,4,3992.50,58.38,1376.70,2285.87,0.00,1.655951,10.673895,251,190,0.003878,0.007131,7770502,6739097,0,0,23789,0,1,1 +1773561062.526311,1.10,4,3992.50,58.61,1372.18,2294.59,0.00,3518518369841.077148,3518518369832.058594,11,0,0.003878,0.007133,7770602,6739238,0,0,23792,0,1,1 +1773561067.526273,0.80,4,3992.50,58.58,1373.12,2293.64,0.00,8204.498823,9157.561885,614226,1267191,0.003865,0.007766,7770701,6739382,0,0,23794,0,1,1 +1773561072.522043,0.65,4,3992.50,58.39,1380.77,2286.01,0.00,9.569621,10.719226,615715,1267427,0.003652,0.006492,7770794,6739510,0,0,23797,0,1,1 +1773561077.526036,0.75,4,3992.50,58.39,1380.79,2285.98,0.00,3515629204342.367188,3515629203388.924805,11,0,0.003667,0.006504,7770889,6739640,0,0,23799,0,1,1 +1773561082.526692,0.75,4,3992.50,58.39,1380.80,2285.97,0.00,0.000000,0.000000,11,0,0.003865,0.007131,7770988,6739781,0,0,23802,0,1,1 +1773561087.525954,0.60,4,3992.50,58.41,1380.07,2286.70,0.00,0.000000,0.000000,11,0,0.001704,0.001985,7771050,6739839,0,0,23804,0,1,1 +1773561092.525959,0.85,4,3992.50,58.60,1373.30,2294.27,0.00,8213.990063,9168.355508,615715,1267538,0.001545,0.001982,7771101,6739897,0,0,23806,0,1,1 +1773561097.522238,0.60,4,3992.50,58.61,1372.84,2294.76,0.00,3521057536479.286621,3521057535522.195801,246,2,0.001615,0.001909,7771156,6739949,0,0,23809,0,1,1 +1773561102.526320,0.60,4,3992.50,58.62,1372.60,2295.00,0.00,8205.288070,9161.095736,615715,1267782,0.001418,0.001934,7771198,6740004,0,0,23812,0,1,1 +1773561107.526065,0.60,4,3992.50,58.42,1380.23,2287.37,0.00,3518616520386.410156,3518616520385.302246,614226,1267597,0.001510,0.001901,7771245,6740056,0,0,23814,0,1,1 +1773561112.526040,3.61,4,3992.50,58.22,1388.08,2279.50,0.00,3518455063171.427734,3518455062217.955566,11,0,0.007069,0.004682,7771403,6740196,0,0,23817,0,1,1 +1773561117.523681,1.10,4,3992.50,58.22,1388.20,2279.38,0.00,0.000000,0.000000,11,0,0.009735,0.006421,7771592,6740378,0,0,23819,0,1,1 +1773561122.526554,1.90,4,3992.50,58.49,1384.01,2289.90,0.00,8209.280819,9163.615510,615715,1268053,0.010543,0.007214,7771786,6740566,0,0,23822,0,1,1 +1773561127.525553,1.86,4,3992.50,58.54,1381.89,2291.89,0.00,3519141678640.496094,3519141677683.409180,246,2,0.007191,0.005918,7771907,6740685,0,0,23824,0,1,1 +1773561132.526391,2.81,4,3992.50,59.07,1361.12,2312.67,0.00,0.000000,0.000000,246,2,0.247182,0.006363,7772481,6740963,0,0,23826,0,1,1 +1773561137.523937,2.52,4,3992.50,58.85,1369.54,2304.22,0.00,3520164932583.406738,3520164932585.366211,75,0,2.054700,0.064597,7776505,6744649,0,0,23829,0,1,1 +1773561142.523914,2.42,4,3992.50,59.20,1355.93,2317.86,0.00,1.958798,0.000195,246,2,1.971815,0.065670,7780316,6748404,0,0,23832,0,1,1 +1773561147.522684,2.42,4,3992.50,59.10,1359.69,2314.09,0.00,3519303389685.560059,3519303389687.519043,75,0,2.074239,0.066486,7784389,6752300,0,0,23834,0,1,1 +1773561152.524395,1.96,4,3992.50,58.85,1363.37,2304.23,0.00,1.958119,0.000195,246,2,1.897471,0.067132,7788148,6756088,0,0,23837,0,1,1 +1773561157.525541,1.70,4,3992.50,58.87,1359.88,2305.06,0.00,3517631190126.701660,3517631190128.713867,11,0,0.065436,0.008486,7788393,6756412,0,0,23839,0,1,1 +1773561162.523532,2.61,4,3992.50,58.87,1359.95,2304.98,0.00,8217.299053,9173.010872,615715,1268589,0.005557,0.003996,7788511,6756512,0,0,23842,0,1,1 +1773561167.525548,2.57,4,3992.50,58.46,1376.04,2288.85,0.00,3517018931132.105957,3517018930177.109863,75,0,1.380565,0.039420,7791255,6758708,0,0,23844,0,1,1 +1773561172.526125,2.92,4,3992.50,58.65,1368.59,2296.32,0.00,3518031376523.219727,0.000000,11,0,2.470611,0.074012,7796060,6762979,0,0,23846,0,1,1 +1773561177.525957,2.62,4,3992.50,58.70,1366.71,2298.16,0.00,1.656208,10.675555,251,190,2.093748,0.066834,7800157,6766697,0,0,23849,0,1,1 +1773561182.522853,2.57,4,3992.50,58.69,1366.91,2297.96,0.00,3520622946094.275879,3520622946085.251465,11,0,1.748642,0.060500,7803652,6770155,0,0,23852,0,1,1 +1773561187.526507,2.61,4,3992.50,58.46,1378.56,2288.88,0.00,0.053477,0.000000,75,0,1.366152,0.046094,7806420,6772844,0,0,23854,0,1,1 +1773561192.526549,1.16,4,3992.50,58.47,1378.13,2289.31,0.00,3518407340419.552246,0.000000,11,0,1.397654,0.053453,7809204,6775933,0,0,23857,0,1,1 +1773561197.526674,1.35,4,3992.50,58.13,1391.52,2275.91,0.00,2.012255,0.000195,246,2,0.008400,0.005561,7809313,6776115,0,0,23859,0,1,1 +1773561202.525538,2.72,4,3992.50,58.75,1367.28,2300.12,0.00,8204.286924,9161.159608,614226,1268883,0.030685,0.004324,7809476,6776210,0,0,23862,0,1,1 +1773561207.524606,2.47,4,3992.50,59.26,1347.32,2320.06,0.00,3519093758001.193359,3519093757046.372070,11,0,1.767061,0.057808,7812939,6779406,0,0,23864,0,1,1 +1773561212.526244,2.97,4,3992.50,59.25,1345.00,2319.57,0.00,8201.749372,9156.229882,614226,1268977,2.294806,0.073416,7817421,6783631,0,0,23866,0,1,1 +1773561217.526600,2.62,4,3992.50,59.14,1348.88,2315.65,0.00,3518186564364.280762,3518186563409.555664,11,0,2.006606,0.067051,7821382,6787427,0,0,23869,0,1,1 +1773561222.525550,1.82,4,3992.50,58.62,1369.30,2295.24,0.00,0.180311,0.000000,205,0,2.099870,0.071412,7825488,6791486,0,0,23872,0,1,1 +1773561227.525807,2.06,4,3992.50,58.69,1366.57,2297.95,0.00,0.000000,0.000000,205,0,1.927807,0.062512,7829278,6795053,0,0,23874,0,1,1 +1773561232.521740,2.42,4,3992.50,58.86,1360.06,2304.46,0.00,1.833523,0.000195,246,2,0.305579,0.015448,7830017,6795839,0,0,23877,0,1,1 +1773561237.521688,2.57,4,3992.50,58.66,1367.69,2296.84,0.00,3518473724305.247070,3518473724307.205566,75,0,2.045074,0.067437,7834026,6799632,0,0,23879,0,1,1 +1773561242.521701,1.81,4,3992.50,59.22,1350.22,2318.42,0.00,0.126757,0.000000,205,0,1.835184,0.058983,7837694,6802944,0,0,23882,0,1,1 +1773561247.523816,3.47,4,3992.50,58.94,1358.35,2307.60,0.00,1.831257,0.000195,246,2,2.245782,0.077557,7842137,6807327,0,0,23884,0,1,1 +1773561252.525057,3.12,4,3992.50,59.18,1349.02,2316.91,0.00,3517563853354.089355,3517563853355.920898,205,0,2.103323,0.070130,7846248,6811266,0,0,23886,0,1,1 +1773561257.525566,2.21,4,3992.50,59.31,1343.80,2322.13,0.00,3518079260501.482422,0.000000,75,0,1.992356,0.062259,7850229,6814853,0,0,23889,0,1,1 +1773561262.525816,0.90,4,3992.50,58.94,1358.36,2307.58,0.00,8203.973619,9159.298374,614226,1269676,1.938245,0.065292,7854016,6818618,0,0,23892,0,1,1 +1773561267.526008,1.15,4,3992.50,58.95,1357.92,2308.01,0.00,3518301698214.479004,3518301697259.196289,11,0,0.282852,0.016462,7854686,6819458,0,0,23894,0,1,1 +1773561272.521714,1.00,4,3992.50,59.16,1349.23,2316.32,0.00,8211.489423,9167.855447,614226,1269842,0.002737,0.002498,7854753,6819526,0,0,23897,0,1,1 +1773561277.522645,0.75,4,3992.50,59.16,1349.25,2316.31,0.00,3517781699349.231445,3517781698402.882324,251,190,0.002727,0.002637,7854816,6819594,0,0,23899,0,1,1 +1773561282.526150,0.65,4,3992.50,59.16,1349.26,2316.30,0.00,3515973058150.173828,3515973058140.981445,205,0,0.001313,0.001682,7854859,6819639,0,0,23902,0,1,1 +1773561287.526437,1.70,4,3992.50,58.44,1377.64,2287.93,0.00,0.000000,0.000000,205,0,0.001659,0.002335,7854906,6819691,0,0,23904,0,1,1 +1773561292.526584,0.55,4,3992.50,58.50,1375.23,2290.35,0.00,3518333720614.961426,0.000000,11,0,0.001303,0.001690,7854948,6819737,0,0,23906,0,1,1 +1773561297.521799,0.70,4,3992.50,58.51,1374.75,2290.83,0.00,0.053567,0.000000,75,0,0.001749,0.002195,7854995,6819790,0,0,23909,0,1,1 +1773561302.526329,0.85,4,3992.50,58.90,1361.09,2306.25,0.00,1.601186,10.665533,251,190,0.001162,0.001585,7855027,6819828,0,0,23912,0,1,1 +1773561307.526006,0.60,4,3992.50,58.92,1360.36,2306.97,0.00,8212.872118,9160.920693,615715,1270370,0.001598,0.002009,7855071,6819879,0,0,23914,0,1,1 +1773561312.523480,0.60,4,3992.50,58.93,1360.13,2307.20,0.00,3520215836893.696777,3520215835934.193359,246,2,0.001200,0.001778,7855106,6819922,0,0,23917,0,1,1 +1773561317.526623,0.55,4,3992.50,58.88,1362.17,2305.16,0.00,3516227007743.377441,10.668294,251,190,0.001545,0.001808,7855147,6819968,0,0,23919,0,1,1 +1773561322.526547,0.50,4,3992.50,58.90,1361.44,2305.91,0.00,3518490886978.695801,3518490886969.496582,205,0,0.001246,0.001644,7855185,6820010,0,0,23922,0,1,1 +1773561327.525916,0.65,4,3992.50,58.77,1366.40,2300.95,0.00,8214.854533,9172.232259,615715,1270458,0.001607,0.001999,7855230,6820060,0,0,23924,0,1,1 +1773561332.526086,0.90,4,3992.50,58.82,1371.83,2302.86,0.00,3518317193686.391602,3518317192727.334961,246,2,0.001203,0.002405,7855265,6820106,0,0,23926,0,1,1 +1773561337.522157,2.06,4,3992.50,58.79,1372.34,2301.94,0.00,3521204305030.024414,3521204305031.857422,205,0,0.004255,0.002912,7855368,6820192,0,0,23929,0,1,1 +1773561342.522662,2.36,4,3992.50,58.59,1380.39,2293.89,0.00,3518081739089.636230,0.000000,11,0,0.009331,0.006402,7855558,6820375,0,0,23932,0,1,1 +1773561347.521721,1.35,4,3992.50,58.61,1379.62,2294.65,0.00,0.053526,0.000000,75,0,0.010235,0.006761,7855763,6820568,0,0,23934,0,1,1 +1773561352.521708,1.96,4,3992.50,58.81,1371.88,2302.38,0.00,3518445617264.482910,0.000000,11,0,0.011157,0.008098,7855960,6820752,0,0,23937,0,1,1 +1773561357.522570,2.82,4,3992.50,59.01,1363.90,2310.39,0.00,1.655867,10.673356,251,190,0.380128,0.008903,7856781,6821163,0,0,23939,0,1,1 +1773561362.526051,2.77,4,3992.50,59.23,1357.62,2319.01,0.00,0.000000,0.000000,251,190,1.972438,0.062797,7860620,6824771,0,0,23941,0,1,1 +1773561367.525713,1.71,4,3992.50,59.15,1360.75,2315.88,0.00,3518675278228.458008,3518675278219.438965,11,0,1.815214,0.066609,7864149,6828587,0,0,23944,0,1,1 +1773561372.525472,2.87,4,3992.50,59.70,1339.34,2337.29,0.00,0.180282,0.000000,205,0,0.352902,0.010292,7865001,6829058,0,0,23946,0,1,1 +1773561377.525900,2.92,4,3992.50,59.10,1362.84,2313.77,0.00,3518136400480.878418,0.000000,11,0,1.988324,0.060168,7868919,6832561,0,0,23949,0,1,1 +1773561382.523852,2.52,4,3992.50,59.41,1350.70,2325.89,0.00,1.656831,10.679569,251,190,2.129913,0.070435,7873109,6836669,0,0,23952,0,1,1 +1773561387.522565,2.72,4,3992.50,59.61,1342.89,2333.70,0.00,8204.892001,9152.908216,614226,1271170,1.850422,0.060707,7876806,6840232,0,0,23954,0,1,1 +1773561392.525886,4.02,4,3992.50,59.73,1341.73,2338.63,0.00,3516102001226.832031,3516102000268.665039,246,2,2.163705,0.071008,7881034,6844380,0,0,23957,0,1,1 +1773561397.525554,1.31,4,3992.50,58.99,1368.45,2309.67,0.00,3518670925337.836914,3518670925339.668945,205,0,1.881262,0.063313,7884671,6847950,0,0,23959,0,1,1 +1773561402.521793,1.40,4,3992.50,59.02,1367.46,2310.63,0.00,0.000000,0.000000,205,0,0.056255,0.006944,7884891,6848236,0,0,23962,0,1,1 +1773561407.523313,1.60,4,3992.50,59.05,1366.32,2311.79,0.00,1.475430,10.671951,251,190,0.004151,0.003366,7884973,6848306,0,0,23964,0,1,1 +1773561412.526612,2.61,4,3992.50,59.38,1353.18,2324.93,0.00,8206.927659,9155.561660,615715,1271768,0.771601,0.016855,7886571,6849191,0,0,23966,0,1,1 +1773561417.521711,2.52,4,3992.50,59.04,1366.61,2311.49,0.00,0.000000,0.055132,615715,1271855,1.963952,0.065433,7890417,6852937,0,0,23969,0,1,1 +1773561422.526568,3.17,4,3992.50,59.47,1343.05,2328.55,0.00,3515022569022.146973,3515022569021.183105,614226,1271772,2.099736,0.070153,7894559,6856958,0,0,23972,0,1,1 +1773561427.525700,2.82,4,3992.50,59.08,1358.60,2313.00,0.00,3519047896252.334961,3519047895303.819824,251,190,1.850806,0.060134,7898207,6860396,0,0,23974,0,1,1 +1773561432.526120,2.82,4,3992.50,58.72,1372.68,2298.95,0.00,3518142016361.200684,3518142016352.129395,75,0,2.017842,0.069855,7902246,6864409,0,0,23977,0,1,1 +1773561437.526558,2.01,4,3992.50,58.84,1367.94,2303.66,0.00,3518129071437.546875,0.000000,11,0,2.016029,0.064105,7906219,6868172,0,0,23979,0,1,1 +1773561442.525844,2.17,4,3992.50,58.78,1370.14,2301.46,0.00,8215.171774,9174.049956,615716,1272256,2.013812,0.062598,7910200,6871837,0,0,23982,0,1,1 +1773561447.522134,1.26,4,3992.50,58.53,1379.91,2291.68,0.00,3521049626997.041504,3521049626995.978027,614227,1272145,1.675466,0.061415,7913518,6875383,0,0,23984,0,1,1 +1773561452.521877,2.01,4,3992.50,58.73,1374.30,2299.27,0.00,3518618099872.693359,3518618098914.785156,205,0,0.117162,0.009821,7913885,6875831,0,0,23986,0,1,1 +1773561457.525948,2.66,4,3992.50,58.80,1371.34,2302.05,0.00,8197.583653,9154.904394,614227,1272400,1.465938,0.035111,7916835,6877636,0,0,23989,0,1,1 +1773561462.523651,2.57,4,3992.50,58.19,1395.04,2278.39,0.00,3520054119938.539062,3520054118980.125488,75,0,2.244293,0.081299,7921242,6882208,0,0,23992,0,1,1 +1773561467.524995,2.37,4,3992.50,58.48,1383.70,2289.71,0.00,3517491919511.693359,0.000000,11,0,2.150473,0.067142,7925441,6886027,0,0,23994,0,1,1 +1773561472.523752,2.37,4,3992.50,58.94,1365.85,2307.56,0.00,0.000000,0.000000,11,0,1.632782,0.059561,7928709,6889416,0,0,23997,0,1,1 +1773561477.522610,2.02,4,3992.50,58.71,1374.61,2298.80,0.00,0.180315,0.000000,205,0,2.438998,0.073986,7933493,6893799,0,0,23999,0,1,1 +1773561482.522982,2.42,4,3992.50,59.04,1351.71,2311.55,0.00,3518175462257.708496,0.000000,11,0,1.907745,0.056413,7937239,6897095,0,0,24001,0,1,1 +1773561487.521793,1.16,4,3992.50,58.52,1371.90,2291.30,0.00,0.053528,0.000000,75,0,0.649097,0.043176,7938613,6899445,0,0,24004,0,1,1 +1773561492.521710,1.10,4,3992.50,58.53,1371.71,2291.49,0.00,3518495649688.489746,0.000000,11,0,0.005345,0.003923,7938731,6899559,0,0,24006,0,1,1 +1773561497.521733,0.80,4,3992.50,58.53,1371.68,2291.53,0.00,8204.400469,9162.855019,614227,1273027,0.002081,0.002244,7938788,6899617,0,0,24009,0,1,1 +1773561502.525646,0.55,4,3992.50,58.53,1371.47,2291.73,0.00,3515685196839.203125,3515685195881.493652,11,0,0.001476,0.002419,7938832,6899675,0,0,24012,0,1,1 +1773561507.521749,0.70,4,3992.50,58.53,1371.47,2291.74,0.00,0.000000,0.000000,11,0,0.001817,0.002293,7938871,6899717,0,0,24014,0,1,1 +1773561512.522789,0.85,4,3992.50,58.67,1374.37,2297.07,0.00,0.000000,0.000000,11,0,0.001728,0.002375,7938920,6899776,0,0,24017,0,1,1 +1773561517.525902,0.55,4,3992.50,58.68,1374.15,2297.30,0.00,0.000000,0.000000,11,0,0.001332,0.001707,7938957,6899814,0,0,24019,0,1,1 +1773561522.521699,0.95,4,3992.50,58.68,1374.15,2297.29,0.00,0.000000,0.000000,11,0,0.001723,0.002123,7939010,6899872,0,0,24022,0,1,1 +1773561527.524709,0.45,4,3992.50,58.68,1374.15,2297.29,0.00,0.053483,0.000000,75,0,0.001180,0.002545,7939042,6899916,0,0,24024,0,1,1 +1773561532.523407,0.65,4,3992.50,58.68,1374.18,2297.27,0.00,8206.520702,9165.525170,614227,1273243,0.001580,0.002088,7939084,6899971,0,0,24026,0,1,1 +1773561537.523583,0.50,4,3992.50,58.68,1374.18,2297.27,0.00,3518313494665.301758,3518313493706.633789,11,0,0.001345,0.001775,7939122,6900013,0,0,24029,0,1,1 +1773561542.521790,1.05,4,3992.50,58.67,1367.72,2297.23,0.00,0.053535,0.000000,75,0,0.001661,0.002088,7939170,6900068,0,0,24032,0,1,1 +1773561547.523727,0.65,4,3992.50,58.64,1369.19,2295.77,0.00,1.602016,10.671061,251,190,0.002436,0.003403,7939229,6900132,0,0,24034,0,1,1 +1773561552.525736,0.60,4,3992.50,58.45,1376.60,2288.37,0.00,3517023611581.521484,3517023611572.325684,205,0,0.001960,0.002049,7939277,6900185,0,0,24037,0,1,1 +1773561557.525730,4.81,4,3992.50,58.06,1391.77,2273.20,0.00,8213.828859,9174.081884,615716,1273684,0.008899,0.005935,7939480,6900365,0,0,24039,0,1,1 +1773561562.525673,1.00,4,3992.50,58.10,1390.38,2274.59,0.00,3518477230384.831543,3518477229424.568848,205,0,0.009431,0.006571,7939669,6900545,0,0,24042,0,1,1 +1773561567.525073,1.55,4,3992.50,58.02,1393.39,2271.57,0.00,1.476056,10.676478,251,190,0.011335,0.007820,7939879,6900741,0,0,24044,0,1,1 +1773561572.524031,2.21,4,3992.50,58.57,1375.54,2293.03,0.00,3519170145744.144531,3519170145734.943359,205,0,0.004746,0.005041,7939965,6900837,0,0,24046,0,1,1 +1773561577.523208,2.82,4,3992.50,59.11,1354.13,2314.21,0.00,8205.608964,9165.244380,614227,1273907,0.086325,0.004104,7940227,6900968,0,0,24049,0,1,1 +1773561582.526507,2.47,4,3992.50,58.93,1360.95,2307.42,0.00,3516116947453.467285,3516116946494.749023,75,0,1.912592,0.055666,7943994,6904240,0,0,24052,0,1,1 +1773561587.522315,3.08,4,3992.50,58.77,1367.57,2300.79,0.00,0.000000,0.000000,75,0,2.284587,0.075695,7948461,6908639,0,0,24054,0,1,1 +1773561592.526174,2.37,4,3992.50,58.98,1359.18,2309.16,0.00,3515723537200.513672,0.000000,11,0,2.130492,0.071837,7952676,6912651,0,0,24057,0,1,1 +1773561597.525995,2.67,4,3992.50,58.68,1370.79,2297.55,0.00,1.656212,10.675577,251,190,2.027654,0.063990,7956699,6916364,0,0,24059,0,1,1 +1773561602.526377,2.81,4,3992.50,58.43,1380.67,2287.66,0.00,0.356125,3518168448244.792480,246,2,1.865080,0.064791,7960330,6920083,0,0,24062,0,1,1 +1773561607.522918,2.21,4,3992.50,58.69,1368.55,2297.88,0.00,3520873168641.739746,3520873168643.753906,11,0,0.092864,0.008950,7960621,6920504,0,0,24064,0,1,1 +1773561612.521721,4.07,4,3992.50,59.00,1356.35,2310.08,0.00,0.000000,0.000000,11,0,0.412685,0.010968,7961570,6921017,0,0,24066,0,1,1 +1773561617.521735,2.72,4,3992.50,58.51,1375.63,2290.80,0.00,1.656148,10.675165,251,190,1.954513,0.062939,7965399,6924644,0,0,24069,0,1,1 +1773561622.521693,2.92,4,3992.50,58.63,1370.72,2295.68,0.00,0.356155,3518467396619.094727,246,2,2.091175,0.069971,7969514,6928602,0,0,24072,0,1,1 +1773561627.526350,2.72,4,3992.50,58.96,1357.87,2308.50,0.00,3515162414680.144043,10.665064,251,190,1.904746,0.063379,7973270,6932222,0,0,24074,0,1,1 +1773561632.525665,2.92,4,3992.50,59.25,1346.66,2319.83,0.00,3518919799876.954590,3518919799867.934570,11,0,2.072763,0.066609,7977319,6936115,0,0,24077,0,1,1 +1773561637.526464,1.46,4,3992.50,58.32,1382.84,2283.49,0.00,0.000000,0.000000,11,0,1.827020,0.063805,7980914,6939805,0,0,24079,0,1,1 +1773561642.524458,1.66,4,3992.50,58.37,1380.95,2285.36,0.00,0.180346,0.000000,205,0,0.117039,0.009218,7981250,6940217,0,0,24082,0,1,1 +1773561647.525641,1.81,4,3992.50,58.44,1378.36,2287.98,0.00,1.475530,10.672669,251,190,0.005606,0.004205,7981367,6940320,0,0,24084,0,1,1 +1773561652.526253,2.87,4,3992.50,59.03,1355.14,2311.14,0.00,8211.337912,9163.741750,615716,1275342,1.699658,0.047769,7984697,6942986,0,0,24086,0,1,1 +1773561657.526004,2.67,4,3992.50,59.16,1350.12,2316.19,0.00,0.000000,0.047073,615716,1275425,2.024508,0.064963,7988649,6946648,0,0,24089,0,1,1 +1773561662.526563,3.07,4,3992.50,59.16,1350.57,2316.32,0.00,3518043874920.859863,3518043873959.200684,205,0,2.411291,0.083635,7993390,6951380,0,0,24092,0,1,1 +1773561667.526085,2.47,4,3992.50,59.31,1344.47,2321.93,0.00,3518773518477.066895,0.000000,11,0,1.723319,0.053587,7996848,6954422,0,0,24094,0,1,1 +1773561672.526124,2.67,4,3992.50,58.91,1359.97,2306.42,0.00,2.012289,0.000195,246,2,2.172637,0.071397,8001163,6958577,0,0,24097,0,1,1 +1773561677.525764,2.31,4,3992.50,58.92,1359.37,2307.02,0.00,3518690707324.947754,10.675769,251,190,2.163531,0.070058,8005388,6962629,0,0,24099,0,1,1 +1773561682.526296,1.56,4,3992.50,59.09,1352.81,2313.59,0.00,3518062890508.056641,3518062890499.038574,11,0,0.342335,0.023409,8006183,6963881,0,0,24102,0,1,1 +1773561687.526068,6.92,4,3992.50,58.51,1375.62,2290.75,0.00,0.000000,0.000000,11,0,8.050953,0.036022,8008799,6965810,0,0,24104,0,1,1 +1773561692.525667,1.20,4,3992.50,58.93,1359.17,2307.13,0.00,8205.096099,9166.323731,614227,1275949,0.003874,0.007131,8008899,6965951,0,0,24106,0,1,1 +1773561697.523372,0.90,4,3992.50,58.80,1364.32,2301.97,0.00,3520052473205.530762,3520052472243.938477,11,0,0.003867,0.007136,8008998,6966092,0,0,24109,0,1,1 +1773561702.526551,1.05,4,3992.50,58.82,1363.49,2302.79,0.00,0.000000,0.000000,11,0,0.003431,0.005861,8009085,6966209,0,0,24112,0,1,1 +1773561707.526106,0.80,4,3992.50,58.82,1363.27,2303.02,0.00,0.053520,0.000000,75,0,0.003866,0.007123,8009184,6966349,0,0,24114,0,1,1 +1773561712.525876,0.95,4,3992.50,58.63,1370.70,2295.59,0.00,0.126764,0.000000,205,0,0.003878,0.007120,8009284,6966489,0,0,24117,0,1,1 +1773561717.526683,1.00,4,3992.50,58.63,1370.72,2295.57,0.00,1.831735,0.000195,246,2,0.002962,0.004587,8009356,6966581,0,0,24119,0,1,1 +1773561722.521725,1.10,4,3992.50,58.68,1373.02,2297.30,0.00,3521929614159.445312,3521929614161.406250,75,0,0.003424,0.006515,8009442,6966702,0,0,24122,0,1,1 +1773561727.525871,0.85,4,3992.50,58.70,1372.09,2298.26,0.00,1.601309,10.666351,251,190,0.003862,0.007104,8009541,6966841,0,0,24124,0,1,1 +1773561732.526552,0.95,4,3992.50,58.70,1372.10,2298.25,0.00,0.000000,0.000000,251,190,0.003877,0.007121,8009641,6966981,0,0,24126,0,1,1 +1773561737.525237,1.00,4,3992.50,58.21,1391.32,2279.03,0.00,0.000000,0.000000,251,190,0.003874,0.007142,8009741,6967123,0,0,24129,0,1,1 +1773561742.526201,0.80,4,3992.50,58.27,1388.87,2281.46,0.00,3517759193863.916504,3517759193854.845703,75,0,0.003420,0.005864,8009827,6967240,0,0,24132,0,1,1 +1773561747.526383,1.05,4,3992.50,58.32,1386.94,2283.41,0.00,0.126753,0.000000,205,0,0.003853,0.007122,8009925,6967380,0,0,24134,0,1,1 +1773561752.525971,12.20,4,3992.50,59.64,1349.18,2335.13,0.00,1.476000,10.676073,251,190,16.103810,0.076548,8015206,6971263,0,0,24137,0,1,1 +1773561757.525678,17.94,4,3992.50,59.69,1347.11,2336.95,0.00,8203.262506,9156.386173,614227,1277388,24.161847,0.115112,8023205,6977298,0,0,24139,0,1,1 +1773561762.522654,1.00,4,3992.50,59.20,1366.15,2317.94,0.00,3520566472374.633301,3520566471411.910645,75,0,0.003880,0.007127,8023305,6977438,0,0,24141,0,1,1 +1773561767.521789,0.95,4,3992.50,59.03,1372.80,2311.29,0.00,0.126780,0.000000,205,0,0.003879,0.007134,8023405,6977579,0,0,24144,0,1,1 +1773561772.521790,0.95,4,3992.50,58.84,1380.21,2303.89,0.00,1.832031,0.000195,246,2,0.003244,0.005697,8023488,6977692,0,0,24146,0,1,1 +1773561777.521804,0.90,4,3992.50,58.64,1388.10,2296.00,0.00,3518427001924.635254,3518427001926.467285,205,0,0.003878,0.007132,8023588,6977833,0,0,24149,0,1,1 +1773561782.523772,1.30,4,3992.50,58.67,1372.07,2296.88,0.00,1.831310,0.000195,246,2,0.003885,0.007125,8023689,6977974,0,0,24152,0,1,1 +1773561787.522367,1.10,4,3992.50,58.66,1372.01,2296.85,0.00,0.000000,0.000000,246,2,0.004814,0.008438,8023792,6978121,0,0,24154,0,1,1 +1773561792.525849,0.80,4,3992.50,58.66,1372.04,2296.84,0.00,8206.272472,9171.826194,615716,1278232,0.003418,0.005861,8023878,6978238,0,0,24157,0,1,1 +1773561797.525790,1.00,4,3992.50,58.47,1379.68,2289.18,0.00,3518478511831.116211,3518478510864.878906,246,2,0.003865,0.007123,8023977,6978378,0,0,24159,0,1,1 +1773561802.526438,0.90,4,3992.50,58.48,1379.21,2289.66,0.00,8210.923792,9177.074687,615716,1278283,0.003936,0.007202,8024082,6978524,0,0,24162,0,1,1 +1773561807.526031,0.85,4,3992.50,58.48,1379.23,2289.64,0.00,3518723307359.589844,3518723306393.235352,246,2,0.003878,0.007123,8024182,6978664,0,0,24164,0,1,1 +1773561812.525875,1.25,4,3992.50,58.62,1368.57,2295.13,0.00,3518546884098.692871,3518546884100.705566,11,0,0.004090,0.006765,8024271,6978781,0,0,24166,0,1,1 +1773561817.522583,0.95,4,3992.50,58.59,1369.59,2294.11,0.00,1.657244,10.682230,251,190,0.003881,0.007137,8024371,6978922,0,0,24169,0,1,1 +1773561822.526006,16.36,4,3992.50,58.38,1377.77,2285.82,0.00,3516030065784.318848,3516030065775.306152,11,0,20.124372,0.098582,8031089,6983868,0,0,24172,0,1,1 +1773561827.522287,10.16,4,3992.50,59.25,1343.83,2319.71,0.00,0.000000,0.000000,11,0,16.107015,0.069147,8036223,6987669,0,0,24174,0,1,1 +1773561832.521717,6.03,4,3992.50,58.67,1366.48,2297.06,0.00,0.000000,0.000000,11,0,4.031752,0.023685,8037607,6988722,0,0,24177,0,1,1 +1773561837.526910,0.75,4,3992.50,58.37,1378.20,2285.34,0.00,0.180086,0.000000,205,0,0.003861,0.007102,8037706,6988861,0,0,24179,0,1,1 +1773561842.526495,1.30,4,3992.50,58.86,1360.64,2304.46,0.00,8204.937138,9169.511100,614227,1279352,0.003429,0.005886,8037793,6988980,0,0,24182,0,1,1 +1773561847.522575,0.95,4,3992.50,58.85,1358.84,2304.13,0.00,3521197726033.770020,3521197725077.725586,251,190,0.005124,0.008353,8037903,6989134,0,0,24184,0,1,1 +1773561852.522867,0.95,4,3992.50,58.85,1358.86,2304.12,0.00,3518232211341.639160,3518232211332.620605,11,0,0.004095,0.008298,8038011,6989289,0,0,24186,0,1,1 +1773561857.526066,0.90,4,3992.50,58.87,1358.14,2304.84,0.00,8199.191806,9163.035203,614227,1279458,0.004175,0.007682,8038117,6989441,0,0,24189,0,1,1 +1773561862.521658,1.00,4,3992.50,58.87,1357.96,2305.02,0.00,3521541840562.680176,3521541839597.368652,11,0,0.003620,0.006403,8038209,6989569,0,0,24192,0,1,1 +1773561867.525967,0.95,4,3992.50,58.87,1358.22,2304.76,0.00,0.000000,0.000000,11,0,0.003895,0.007124,8038311,6989710,0,0,24194,0,1,1 +1773561872.523167,1.35,4,3992.50,59.04,1352.18,2311.46,0.00,0.180374,0.000000,205,0,0.003868,0.007136,8038410,6989851,0,0,24197,0,1,1 +1773561877.526508,0.85,4,3992.50,58.93,1355.72,2307.25,0.00,1.830808,0.000195,246,2,0.003863,0.007118,8038509,6989991,0,0,24199,0,1,1 +1773561882.521818,0.95,4,3992.50,58.72,1364.04,2298.93,0.00,3521740825758.465332,3521740825760.479492,11,0,0.002817,0.005633,8038584,6990101,0,0,24202,0,1,1 +1773561887.526558,0.85,4,3992.50,58.72,1363.81,2299.17,0.00,1.654584,10.665085,251,190,0.003694,0.006978,8038681,6990240,0,0,24204,0,1,1 +1773561892.521712,1.20,4,3992.50,58.52,1371.70,2291.28,0.00,3521850509619.179199,3521850509610.098145,75,0,0.005310,0.007854,8038807,6990397,0,0,24206,0,1,1 +1773561897.526192,19.63,4,3992.50,58.68,1365.28,2297.64,0.00,8197.039664,9161.334167,614227,1280474,26.150365,0.123178,8047535,6996848,0,0,24209,0,1,1 +1773561902.521736,7.39,4,3992.50,58.38,1377.16,2285.70,0.00,3521575183356.723145,3521575182399.784668,251,190,10.066150,0.043776,8050676,6999223,0,0,24212,0,1,1 +1773561907.521725,4.42,4,3992.50,58.40,1369.95,2286.63,0.00,8202.799477,9159.602166,614227,1281014,4.030829,0.023762,8052088,7000293,0,0,24214,0,1,1 +1773561912.526238,1.05,4,3992.50,58.42,1369.50,2287.07,0.00,3515264212822.984375,3515264211856.025391,246,2,0.003875,0.007126,8052188,7000434,0,0,24217,0,1,1 +1773561917.525987,1.00,4,3992.50,58.38,1371.01,2285.56,0.00,3518614319740.416992,3518614319742.429688,11,0,0.003878,0.007767,8052288,7000578,0,0,24219,0,1,1 +1773561922.526244,0.90,4,3992.50,58.40,1370.16,2286.41,0.00,2.012201,0.000195,246,2,0.003878,0.007132,8052388,7000719,0,0,24222,0,1,1 +1773561927.526550,0.70,4,3992.50,58.43,1368.96,2287.60,0.00,8201.923535,9170.331675,614227,1281425,0.003428,0.005863,8052475,7000836,0,0,24224,0,1,1 +1773561932.525311,1.35,4,3992.50,58.56,1363.79,2292.92,0.00,3519309229900.845703,3519309228934.150879,11,0,0.003879,0.007124,8052575,7000976,0,0,24226,0,1,1 +1773561937.522594,0.90,4,3992.50,58.44,1368.59,2287.99,0.00,0.000000,0.000000,11,0,0.003880,0.007136,8052675,7001117,0,0,24229,0,1,1 +1773561942.521792,0.85,4,3992.50,58.43,1368.98,2287.61,0.00,2.012627,0.000195,246,2,0.003879,0.007133,8052775,7001258,0,0,24232,0,1,1 +1773561947.521792,0.90,4,3992.50,58.23,1376.87,2279.72,0.00,3518437201844.312988,3518437201846.325684,11,0,0.003420,0.005855,8052861,7001374,0,0,24234,0,1,1 +1773561952.525888,0.85,4,3992.50,58.24,1376.54,2280.05,0.00,2.010658,0.000195,246,2,0.003883,0.007135,8052962,7001516,0,0,24237,0,1,1 +1773561957.525782,0.75,4,3992.50,58.24,1376.56,2280.03,0.00,0.000000,0.000000,246,2,0.003878,0.007123,8053062,7001656,0,0,24239,0,1,1 +1773561962.522710,1.10,4,3992.50,58.27,1375.37,2281.21,0.00,8217.035355,9187.576088,615716,1281949,0.003880,0.007127,8053162,7001796,0,0,24241,0,1,1 +1773561967.524457,3.41,4,3992.50,57.89,1390.03,2266.55,0.00,3517207887976.540527,3517207887017.962402,251,190,2.019889,0.017005,8053986,7002428,0,0,24244,0,1,1 +1773561972.524610,20.12,4,3992.50,58.47,1367.03,2289.42,0.00,3518330200275.834473,3518330200266.815918,11,0,32.198141,0.144938,8064534,7010281,0,0,24246,0,1,1 +1773561977.521676,6.33,4,3992.50,58.80,1354.29,2302.13,0.00,0.000000,0.000000,11,0,6.042289,0.030361,8066489,7011759,0,0,24249,0,1,1 +1773561982.521731,1.65,4,3992.50,58.77,1355.59,2300.85,0.00,2.012282,0.000195,246,2,0.011318,0.010920,8066726,7011995,0,0,24252,0,1,1 +1773561987.526022,0.65,4,3992.50,58.59,1362.52,2293.90,0.00,3515420223217.583008,3515420223219.413574,205,0,0.003875,0.007760,8066826,7012139,0,0,24254,0,1,1 +1773561992.524177,1.10,4,3992.50,58.69,1360.30,2298.03,0.00,8216.850728,9186.513595,615716,1283227,0.003430,0.005875,8066913,7012257,0,0,24257,0,1,1 +1773561997.525932,0.80,4,3992.50,58.69,1358.42,2298.01,0.00,3517202595731.303223,3517202594762.465332,75,0,0.003864,0.007120,8067012,7012397,0,0,24259,0,1,1 +1773562002.525745,0.60,4,3992.50,58.70,1358.19,2298.23,0.00,8214.252733,9183.482820,615716,1283247,0.003878,0.007133,8067112,7012538,0,0,24262,0,1,1 +1773562007.526146,0.70,4,3992.50,58.71,1357.96,2298.45,0.00,3518155343653.897949,3518155342684.781738,75,0,0.003878,0.007122,8067212,7012678,0,0,24264,0,1,1 +1773562012.526400,0.75,4,3992.50,58.51,1365.62,2290.81,0.00,8203.967083,9172.016022,614227,1283074,0.003420,0.005855,8067298,7012794,0,0,24266,0,1,1 +1773562017.525906,0.75,4,3992.50,58.52,1365.40,2291.03,0.00,3518784779201.682129,3518784778233.541992,11,0,0.003886,0.007141,8067399,7012936,0,0,24269,0,1,1 +1773562022.526316,0.90,4,3992.50,58.76,1356.24,2300.55,0.00,0.000000,0.000000,11,0,0.003878,0.007132,8067499,7013077,0,0,24272,0,1,1 +1773562027.525792,0.80,4,3992.50,58.76,1355.89,2300.54,0.00,8205.297498,9173.731312,614227,1283370,0.003866,0.007123,8067598,7013217,0,0,24274,0,1,1 +1773562032.526392,0.70,4,3992.50,58.76,1356.04,2300.39,0.00,3518014631538.895508,3518014630568.667969,246,2,0.003420,0.005864,8067684,7013334,0,0,24277,0,1,1 +1773562037.525749,0.70,4,3992.50,58.76,1356.05,2300.39,0.00,3518889803561.275879,3518889803563.288574,11,0,0.003879,0.007111,8067784,7013473,0,0,24279,0,1,1 +1773562042.526116,7.78,4,3992.50,58.94,1348.83,2307.54,0.00,0.180260,0.000000,205,0,8.057736,0.043077,8070507,7015477,0,0,24282,0,1,1 +1773562047.522491,19.05,4,3992.50,59.40,1330.63,2325.69,0.00,3520989753926.117676,0.000000,11,0,30.199990,0.133552,8080174,7022776,0,0,24284,0,1,1 +1773562052.526290,3.01,4,3992.50,59.28,1335.46,2320.84,0.00,0.000000,0.000000,11,0,2.021608,0.011875,8080972,7023338,0,0,24286,0,1,1 +1773562057.526155,2.01,4,3992.50,59.15,1344.86,2315.66,0.00,8214.221181,9184.764215,615716,1284672,0.010870,0.011290,8081196,7023562,0,0,24289,0,1,1 +1773562062.521741,0.80,4,3992.50,59.02,1349.93,2310.59,0.00,3521546192090.467773,3521546191119.039551,75,0,0.003894,0.007139,8081297,7023703,0,0,24292,0,1,1 +1773562067.521802,0.60,4,3992.50,58.80,1358.36,2302.16,0.00,8213.845768,9184.563461,615716,1284861,0.003878,0.007122,8081397,7023843,0,0,24294,0,1,1 +1773562072.522618,0.75,4,3992.50,58.79,1358.67,2301.86,0.00,0.000000,0.065126,615716,1284884,0.003877,0.007131,8081497,7023984,0,0,24297,0,1,1 +1773562077.522208,0.70,4,3992.50,58.79,1358.69,2301.83,0.00,3518726095120.718750,3518726094158.917969,251,190,0.003408,0.005843,8081582,7024099,0,0,24299,0,1,1 +1773562082.523166,1.05,4,3992.50,59.03,1343.80,2311.09,0.00,3517763333473.435547,3517763333464.418457,11,0,0.003877,0.007121,8081682,7024239,0,0,24301,0,1,1 +1773562087.525800,0.70,4,3992.50,59.03,1343.82,2311.08,0.00,0.000000,0.000000,11,0,0.004785,0.007798,8081783,7024383,0,0,24304,0,1,1 +1773562092.526118,0.80,4,3992.50,59.03,1343.84,2311.05,0.00,8203.916541,9173.735511,614227,1284893,0.003873,0.007130,8081883,7024524,0,0,24306,0,1,1 +1773562097.525552,0.60,4,3992.50,58.83,1351.49,2303.40,0.00,9.562606,10.714885,615716,1285128,0.002912,0.005726,8081965,7024641,0,0,24309,0,1,1 +1773562102.526246,0.70,4,3992.50,58.84,1351.28,2303.61,0.00,3517948652587.982422,3517948651615.072266,246,2,0.003655,0.006951,8082059,7024777,0,0,24312,0,1,1 +1773562107.526575,0.75,4,3992.50,58.84,1351.30,2303.59,0.00,3518205615256.510742,3518205615258.522949,11,0,0.003878,0.007122,8082159,7024917,0,0,24314,0,1,1 +1773562112.526164,1.25,4,3992.50,58.84,1356.67,2303.55,0.00,1.656289,10.676074,251,190,0.004548,0.008699,8082262,7025064,0,0,24317,0,1,1 +1773562117.525569,10.36,4,3992.50,58.87,1355.01,2305.06,0.00,8203.756897,9164.988475,614227,1285347,10.084548,0.059544,8085963,7027772,0,0,24319,0,1,1 +1773562122.522551,18.48,4,3992.50,58.12,1384.45,2275.56,0.00,3520562330394.294434,3520562329421.559082,246,2,30.197301,0.131235,8095574,7034953,0,0,24321,0,1,1 +1773562127.525806,0.80,4,3992.50,58.12,1384.47,2275.55,0.00,8197.088691,9169.247773,614227,1286181,0.003418,0.005861,8095660,7035070,0,0,24324,0,1,1 +1773562132.523574,0.75,4,3992.50,58.12,1384.48,2275.54,0.00,9.565794,10.686705,615716,1286382,0.003880,0.007126,8095760,7035210,0,0,24326,0,1,1 +1773562137.524793,0.75,4,3992.50,58.13,1384.27,2275.75,0.00,3517579537393.247070,3517579536419.571777,246,2,0.003885,0.007139,8095861,7035352,0,0,24329,0,1,1 +1773562142.525898,1.00,4,3992.50,58.22,1383.98,2279.63,0.00,3517660262557.120605,10.672643,251,190,0.003877,0.007131,8095961,7035493,0,0,24332,0,1,1 +1773562147.521797,1.46,4,3992.50,58.22,1384.11,2279.55,0.00,8219.082893,9183.312070,615716,1286763,0.003718,0.006402,8096053,7035619,0,0,24334,0,1,1 +1773562152.521796,0.80,4,3992.50,58.03,1391.78,2271.88,0.00,3518438130242.210938,3518438129278.772461,251,190,0.004776,0.007701,8096155,7035762,0,0,24337,0,1,1 +1773562157.521796,0.85,4,3992.50,57.87,1397.96,2265.70,0.00,0.000000,0.000000,251,190,0.003478,0.005764,8096239,7035876,0,0,24339,0,1,1 +1773562162.526303,0.70,4,3992.50,57.91,1396.53,2267.12,0.00,3515268644855.700195,3515268644846.635742,75,0,0.003453,0.007421,8096333,7036021,0,0,24342,0,1,1 +1773562167.526115,0.70,4,3992.50,57.91,1396.29,2267.36,0.00,8214.253673,9187.011737,615716,1286934,0.003878,0.007123,8096433,7036161,0,0,24344,0,1,1 +1773562172.521719,1.05,4,3992.50,58.45,1375.17,2288.47,0.00,3521532966213.721191,3521532965240.144043,75,0,0.003423,0.005860,8096519,7036277,0,0,24346,0,1,1 +1773562177.526084,0.70,4,3992.50,58.20,1385.16,2278.49,0.00,8197.229211,9168.081617,614227,1286809,0.003870,0.007617,8096619,7036422,0,0,24349,0,1,1 +1773562182.523868,0.70,4,3992.50,58.20,1384.95,2278.69,0.00,3519997016958.543457,3519997015995.489746,251,190,0.003880,0.007297,8096719,7036564,0,0,24352,0,1,1 +1773562187.521614,17.36,4,3992.50,59.01,1353.24,2310.32,0.00,0.356313,3520024264612.589355,246,2,22.153613,0.105503,8104006,7041954,0,0,24354,0,1,1 +1773562192.524484,12.58,4,3992.50,57.94,1395.00,2268.48,0.00,3516418687501.406250,3516418687503.417480,11,0,18.105157,0.085937,8109923,7046514,0,0,24357,0,1,1 +1773562197.521719,0.75,4,3992.50,57.98,1393.38,2270.14,0.00,1.657069,10.681103,251,190,0.003670,0.006505,8110017,7046643,0,0,24359,0,1,1 +1773562202.521796,1.05,4,3992.50,58.33,1379.03,2283.80,0.00,3518382520550.997070,3518382520541.978516,11,0,0.003636,0.006511,8110109,7046773,0,0,24362,0,1,1 +1773562207.521809,0.80,4,3992.50,58.36,1377.91,2284.73,0.00,8204.416675,9177.259897,614227,1288342,0.003878,0.007122,8110209,7046913,0,0,24364,0,1,1 +1773562212.521882,0.70,4,3992.50,58.35,1377.92,2284.71,0.00,3518385807619.282715,3518385806644.439453,246,2,0.003878,0.007122,8110309,7047053,0,0,24366,0,1,1 +1773562217.526100,0.60,4,3992.50,58.29,1380.30,2282.34,0.00,3515471845101.351562,3515471845103.362305,11,0,0.003654,0.006489,8110403,7047182,0,0,24369,0,1,1 +1773562222.524973,0.70,4,3992.50,58.31,1379.60,2283.04,0.00,8206.286185,9179.599872,614227,1288454,0.003650,0.006513,8110496,7047312,0,0,24372,0,1,1 +1773562227.521718,0.65,4,3992.50,58.34,1378.63,2284.00,0.00,3520729753431.839355,3520729752458.110840,11,0,0.003881,0.007127,8110596,7047452,0,0,24374,0,1,1 +1773562232.525960,1.15,4,3992.50,58.43,1373.02,2287.63,0.00,0.180121,0.000000,205,0,0.003875,0.007126,8110696,7047593,0,0,24377,0,1,1 +1773562237.524415,0.70,4,3992.50,58.43,1373.04,2287.62,0.00,3519525334899.569824,0.000000,11,0,0.003650,0.006466,8110789,7047719,0,0,24379,0,1,1 +1773562242.526609,0.65,4,3992.50,58.43,1373.09,2287.57,0.00,0.000000,0.000000,11,0,0.003648,0.006969,8110882,7047850,0,0,24381,0,1,1 +1773562247.522579,0.65,4,3992.50,58.43,1373.10,2287.56,0.00,8220.624533,9195.831400,615716,1288816,0.003881,0.007299,8110982,7047992,0,0,24384,0,1,1 +1773562252.526620,1.05,4,3992.50,58.38,1375.11,2285.56,0.00,3515596370992.806152,3515596370017.161621,246,2,0.005270,0.007803,8111106,7048146,0,0,24386,0,1,1 +1773562257.526485,20.02,4,3992.50,58.46,1371.77,2288.80,0.00,3518531639233.501465,3518531639235.333496,205,0,28.177076,0.128827,8120264,7054998,0,0,24389,0,1,1 +1773562262.525732,8.59,4,3992.50,59.23,1338.38,2318.79,0.00,1.832307,0.000195,246,2,10.058875,0.045332,8123351,7057305,0,0,24392,0,1,1 +1773562267.521802,2.66,4,3992.50,57.99,1386.54,2270.26,0.00,8218.446305,9196.245396,615716,1289775,2.028118,0.019594,8124313,7058085,0,0,24394,0,1,1 +1773562272.526280,0.80,4,3992.50,58.04,1384.38,2272.42,0.00,3515289269674.075684,3515289268699.929688,11,0,0.003875,0.007126,8124413,7058226,0,0,24397,0,1,1 +1773562277.526042,0.70,4,3992.50,58.05,1384.15,2272.66,0.00,0.000000,0.000000,11,0,0.003878,0.007123,8124513,7058366,0,0,24399,0,1,1 +1773562282.521624,0.60,4,3992.50,58.05,1384.17,2272.64,0.00,2.014084,0.000195,246,2,0.003423,0.005860,8124599,7058482,0,0,24401,0,1,1 +1773562287.526418,0.65,4,3992.50,58.06,1383.70,2273.11,0.00,8204.121199,9180.872737,615716,1290149,0.003902,0.007126,8124701,7058623,0,0,24404,0,1,1 +1773562292.525824,1.05,4,3992.50,58.45,1368.64,2288.29,0.00,3518855501099.694824,3518855500132.922852,251,190,0.003878,0.007123,8124801,7058763,0,0,24406,0,1,1 +1773562297.522601,0.75,4,3992.50,58.40,1370.40,2286.39,0.00,0.000000,0.000000,251,190,0.003889,0.007145,8124902,7058905,0,0,24409,0,1,1 +1773562302.525847,0.75,4,3992.50,58.40,1370.18,2286.62,0.00,3516154880484.215332,3516154880475.148926,75,0,0.003418,0.005849,8124988,7059021,0,0,24412,0,1,1 +1773562307.526282,0.70,4,3992.50,58.40,1370.22,2286.58,0.00,0.000000,0.000000,75,0,0.003853,0.007753,8125086,7059164,0,0,24414,0,1,1 +1773562312.522973,0.80,4,3992.50,58.40,1370.23,2286.57,0.00,3520767706426.139648,0.000000,11,0,0.003868,0.007137,8125185,7059305,0,0,24417,0,1,1 +1773562317.522046,0.70,4,3992.50,58.22,1377.41,2279.39,0.00,8205.958789,9181.024992,614227,1290215,0.003879,0.007124,8125285,7059445,0,0,24419,0,1,1 +1773562322.526111,1.00,4,3992.50,58.42,1369.73,2287.24,0.00,3515578748987.905273,3515578748013.631836,205,0,0.003417,0.005860,8125371,7059562,0,0,24422,0,1,1 +1773562327.526607,4.52,4,3992.50,58.37,1371.61,2285.36,0.00,3518088257448.610840,0.000000,75,0,4.027638,0.023818,8126670,7060529,0,0,24424,0,1,1 +1773562332.522808,21.40,4,3992.50,58.59,1362.94,2293.92,0.00,1.960278,0.000195,246,2,32.234382,0.149740,8137429,7068624,0,0,24426,0,1,1 +1773562337.525825,4.21,4,3992.50,58.61,1362.14,2294.71,0.00,3516315487325.474121,10.668563,251,190,4.032782,0.025644,8138916,7069729,0,0,24429,0,1,1 +1773562342.521812,1.00,4,3992.50,58.37,1371.41,2285.45,0.00,3521263514420.433105,3521263514411.226562,205,0,0.003881,0.007138,8139016,7069870,0,0,24432,0,1,1 +1773562347.521745,0.70,4,3992.50,58.37,1371.37,2285.48,0.00,8204.366738,9180.241178,614227,1291380,0.003637,0.006476,8139108,7069997,0,0,24434,0,1,1 +1773562352.523571,1.20,4,3992.50,58.54,1364.87,2292.10,0.00,3517152946748.356445,3517152945773.031250,11,0,0.003635,0.006484,8139200,7070125,0,0,24437,0,1,1 +1773562357.526215,0.85,4,3992.50,58.55,1362.56,2292.33,0.00,8209.658386,9186.342564,615716,1291760,0.006061,0.008127,8139345,7070291,0,0,24439,0,1,1 +1773562362.522002,0.75,4,3992.50,58.56,1362.34,2292.55,0.00,3521403829157.958984,3521403828179.754395,205,0,0.003881,0.007138,8139445,7070432,0,0,24442,0,1,1 +1773562367.521796,0.55,4,3992.50,58.55,1362.35,2292.54,0.00,8214.158771,9191.718170,615716,1291821,0.002734,0.003954,8139510,7070512,0,0,24444,0,1,1 +1773562372.522802,0.60,4,3992.50,58.55,1362.38,2292.52,0.00,3517729427879.997559,3517729426902.802246,75,0,0.003648,0.006487,8139603,7070640,0,0,24446,0,1,1 +1773562377.523593,0.75,4,3992.50,58.55,1362.39,2292.50,0.00,0.000000,0.000000,75,0,0.003877,0.007775,8139703,7070785,0,0,24449,0,1,1 +1773562382.526208,1.00,4,3992.50,58.75,1354.43,2300.08,0.00,0.126692,0.000000,205,0,0.003889,0.007116,8139804,7070925,0,0,24452,0,1,1 +1773562387.522315,0.75,4,3992.50,58.75,1354.44,2300.07,0.00,1.833459,0.000195,246,2,0.004353,0.006538,8139893,7071045,0,0,24454,0,1,1 +1773562392.526329,0.70,4,3992.50,58.75,1354.22,2300.30,0.00,3515614588724.757812,3515614588726.588379,205,0,0.003875,0.007127,8139993,7071186,0,0,24457,0,1,1 +1773562397.526018,8.18,4,3992.50,58.76,1354.02,2300.48,0.00,3518656280423.038574,0.000000,11,0,6.051527,0.037547,8142140,7072832,0,0,24459,0,1,1 +1773562402.524098,21.09,4,3992.50,58.92,1347.66,2306.76,0.00,2.013077,0.000195,246,2,34.220175,0.152133,8153209,7081161,0,0,24462,0,1,1 +1773562407.526093,1.30,4,3992.50,58.94,1346.96,2307.45,0.00,3517034289225.862305,3517034289227.874023,11,0,0.009184,0.010236,8153409,7081376,0,0,24464,0,1,1 +1773562412.522639,0.95,4,3992.50,58.98,1345.70,2309.21,0.00,8219.676516,9198.912159,615716,1293347,0.003881,0.007127,8153509,7081516,0,0,24466,0,1,1 +1773562417.521733,0.85,4,3992.50,58.97,1345.37,2308.82,0.00,3519075231530.939453,3519075230552.021973,205,0,0.004065,0.006788,8153596,7081635,0,0,24469,0,1,1 +1773562422.521725,0.90,4,3992.50,58.98,1345.15,2309.05,0.00,8204.269270,9182.144912,614227,1293223,0.003865,0.006999,8153695,7081775,0,0,24472,0,1,1 +1773562427.521796,0.70,4,3992.50,58.98,1345.16,2309.03,0.00,3518387374684.117188,3518387373706.436523,11,0,0.003715,0.007097,8153793,7081913,0,0,24474,0,1,1 +1773562432.526381,1.55,4,3992.50,58.48,1364.46,2289.75,0.00,0.180108,0.000000,205,0,0.003882,0.007134,8153894,7082055,0,0,24477,0,1,1 +1773562437.525935,0.65,4,3992.50,58.48,1364.48,2289.73,0.00,0.000000,0.000000,205,0,0.003421,0.005843,8153980,7082170,0,0,24479,0,1,1 +1773562442.521724,0.95,4,3992.50,58.48,1367.39,2289.71,0.00,8211.173831,9190.037223,614227,1293341,0.003881,0.007770,8154080,7082314,0,0,24482,0,1,1 +1773562447.521789,0.70,4,3992.50,58.48,1365.98,2289.68,0.00,9.561399,10.877886,615716,1293779,0.004186,0.007677,8154187,7082465,0,0,24484,0,1,1 +1773562452.525841,0.75,4,3992.50,58.48,1366.00,2289.66,0.00,3515587706443.674316,3515587705465.292480,11,0,0.004079,0.007648,8154294,7082616,0,0,24486,0,1,1 +1773562457.526310,0.70,4,3992.50,58.50,1365.16,2290.50,0.00,2.012116,0.000195,246,2,0.003707,0.006407,8154385,7082743,0,0,24489,0,1,1 +1773562462.526553,0.70,4,3992.50,58.50,1365.18,2290.47,0.00,3518266316835.033203,3518266316837.045898,11,0,0.004074,0.007664,8154491,7082895,0,0,24492,0,1,1 +1773562467.526497,8.59,4,3992.50,58.89,1349.88,2305.75,0.00,1.656171,10.675315,251,190,8.060233,0.042888,8157198,7084947,0,0,24494,0,1,1 +1773562472.525871,9.96,4,3992.50,59.14,1340.47,2315.48,0.00,8203.808946,9173.556283,614227,1294252,12.080769,0.060298,8161120,7087959,0,0,24497,0,1,1 +1773562477.526369,13.48,4,3992.50,58.48,1365.95,2289.69,0.00,3518087018740.325684,3518087017761.778320,11,0,20.127447,0.091293,8167659,7092881,0,0,24499,0,1,1 +1773562482.524709,0.85,4,3992.50,58.52,1364.48,2291.15,0.00,0.000000,0.000000,11,0,0.003879,0.007135,8167759,7093022,0,0,24502,0,1,1 +1773562487.526199,0.70,4,3992.50,58.52,1364.50,2291.12,0.00,1.655659,10.672015,251,190,0.003864,0.007108,8167858,7093161,0,0,24504,0,1,1 +1773562492.521801,0.65,4,3992.50,58.52,1364.30,2291.32,0.00,8210.003488,9180.965128,614227,1294914,0.003913,0.007154,8167960,7093303,0,0,24506,0,1,1 +1773562497.526315,0.80,4,3992.50,58.49,1365.48,2290.15,0.00,3515263166217.248047,3515263165239.004883,11,0,0.003461,0.005885,8168049,7093422,0,0,24509,0,1,1 +1773562502.525845,1.20,4,3992.50,58.59,1364.82,2293.81,0.00,0.000000,0.000000,11,0,0.003866,0.007133,8168148,7093563,0,0,24512,0,1,1 +1773562507.526294,1.00,4,3992.50,58.34,1373.83,2283.98,0.00,1.656004,10.674237,251,190,0.003878,0.007766,8168248,7093707,0,0,24514,0,1,1 +1773562512.526214,0.90,4,3992.50,58.15,1381.00,2276.80,0.00,3518493881262.489746,3518493881253.470703,11,0,0.003865,0.007120,8168347,7093847,0,0,24517,0,1,1 +1773562517.521727,0.80,4,3992.50,58.15,1381.02,2276.78,0.00,0.000000,0.000000,11,0,0.003411,0.005848,8168432,7093962,0,0,24519,0,1,1 +1773562522.522584,0.80,4,3992.50,58.17,1380.30,2277.51,0.00,0.053506,0.000000,75,0,0.003873,0.007139,8168532,7094104,0,0,24522,0,1,1 +1773562527.524989,0.85,4,3992.50,58.17,1380.32,2277.50,0.00,1.601866,10.670062,251,190,0.003876,0.007119,8168632,7094244,0,0,24524,0,1,1 +1773562532.525660,1.25,4,3992.50,58.18,1375.23,2277.69,0.00,3517965168315.439453,3517965168306.241699,205,0,0.003878,0.007121,8168732,7094384,0,0,24526,0,1,1 +1773562537.524504,4.72,4,3992.50,58.59,1359.03,2293.88,0.00,3519250751263.842285,0.000000,75,0,4.031200,0.024846,8170140,7095470,0,0,24529,0,1,1 +1773562542.526578,21.91,4,3992.50,59.60,1319.36,2333.48,0.00,1.601972,10.670770,251,190,32.198937,0.143850,8180545,7103311,0,0,24532,0,1,1 +1773562547.525969,3.71,4,3992.50,59.76,1313.01,2339.81,0.00,3518865856710.966309,3518865856701.766113,205,0,4.034108,0.021574,8182003,7104392,0,0,24534,0,1,1 +1773562552.524096,1.50,4,3992.50,58.60,1358.34,2294.47,0.00,8207.332797,9188.599817,614227,1296722,0.008593,0.008782,8182185,7104578,0,0,24537,0,1,1 +1773562557.526385,0.75,4,3992.50,58.51,1362.05,2290.75,0.00,0.000000,0.007321,614227,1296733,0.003419,0.005852,8182271,7104694,0,0,24539,0,1,1 +1773562562.525793,1.20,4,3992.50,58.95,1344.16,2308.00,0.00,3518854284145.136719,3518854283162.281738,246,2,0.003421,0.005866,8182357,7104811,0,0,24542,0,1,1 +1773562567.521723,0.95,4,3992.50,58.96,1343.93,2308.23,0.00,8218.677217,9203.838171,615716,1297145,0.003889,0.007136,8182458,7104952,0,0,24544,0,1,1 +1773562572.526408,0.80,4,3992.50,58.95,1343.94,2308.20,0.00,3515142904351.183594,3515142903369.703125,75,0,0.003900,0.007759,8182560,7105096,0,0,24546,0,1,1 +1773562577.522569,0.90,4,3992.50,58.78,1350.59,2301.55,0.00,8220.258457,9203.478670,615716,1297197,0.003868,0.007138,8182659,7105237,0,0,24549,0,1,1 +1773562582.526026,0.85,4,3992.50,58.51,1361.19,2290.96,0.00,3516005959900.114258,3516005958918.328125,75,0,0.003430,0.005861,8182746,7105354,0,0,24552,0,1,1 +1773562587.526187,1.00,4,3992.50,58.51,1361.20,2290.94,0.00,1.958726,0.000195,246,2,0.003878,0.007122,8182846,7105494,0,0,24554,0,1,1 +1773562592.525967,1.25,4,3992.50,58.91,1346.34,2306.39,0.00,3518591999484.146973,3518591999486.159668,11,0,0.003866,0.007133,8182945,7105635,0,0,24557,0,1,1 +1773562597.523728,0.85,4,3992.50,58.91,1346.35,2306.38,0.00,0.053540,0.000000,75,0,0.003880,0.007126,8183045,7105775,0,0,24559,0,1,1 +1773562602.523197,0.85,4,3992.50,58.91,1346.37,2306.36,0.00,3518811074818.461426,0.000000,11,0,0.003408,0.005866,8183130,7105892,0,0,24562,0,1,1 +1773562607.526258,2.10,4,3992.50,58.52,1361.42,2291.32,0.00,0.000000,0.000000,11,0,0.003876,0.007118,8183230,7106032,0,0,24564,0,1,1 +1773562612.523839,7.84,4,3992.50,58.91,1346.30,2306.38,0.00,2.013279,0.000195,246,2,8.064130,0.045494,8186076,7108186,0,0,24566,0,1,1 +1773562617.522485,17.80,4,3992.50,59.20,1334.84,2317.79,0.00,8214.211536,9199.475067,615717,1298220,28.179148,0.125959,8195234,7115059,0,0,24569,0,1,1 +1773562622.521791,4.87,4,3992.50,59.34,1335.61,2323.21,0.00,3518926017497.484863,3518926016514.310547,75,0,4.034849,0.021637,8196629,7116025,0,0,24572,0,1,1 +1773562627.525754,1.10,4,3992.50,59.09,1345.23,2313.59,0.00,3515650525681.444336,0.000000,11,0,0.003634,0.006459,8196721,7116151,0,0,24574,0,1,1 +1773562632.526244,0.75,4,3992.50,59.09,1345.37,2313.46,0.00,0.053510,0.000000,75,0,0.003649,0.006511,8196814,7116281,0,0,24577,0,1,1 +1773562637.526280,0.95,4,3992.50,59.09,1345.13,2313.69,0.00,0.000000,0.000000,75,0,0.003865,0.007754,8196913,7116424,0,0,24579,0,1,1 +1773562642.525891,0.85,4,3992.50,59.10,1344.91,2313.91,0.00,0.000000,0.000000,75,0,0.003878,0.007133,8197013,7116565,0,0,24582,0,1,1 +1773562647.525699,1.20,4,3992.50,58.64,1362.91,2295.91,0.00,1.602698,10.675605,251,190,0.003676,0.006547,8197108,7116697,0,0,24584,0,1,1 +1773562652.524155,1.56,4,3992.50,58.69,1358.37,2297.93,0.00,3519524257590.781738,3519524257581.580078,205,0,0.003448,0.006287,8197196,7116819,0,0,24586,0,1,1 +1773562657.524834,1.25,4,3992.50,58.49,1366.28,2290.03,0.00,0.000000,0.000000,205,0,0.006720,0.009049,8197343,7116987,0,0,24589,0,1,1 +1773562662.522601,0.80,4,3992.50,58.50,1365.83,2290.47,0.00,3520009102035.672852,0.000000,75,0,0.003863,0.007144,8197442,7117129,0,0,24592,0,1,1 +1773562667.525975,2.41,4,3992.50,58.33,1372.33,2283.92,0.00,1.957468,0.000195,246,2,0.031088,0.018225,8198070,7117575,0,0,24594,0,1,1 +1773562672.525759,2.10,4,3992.50,58.36,1371.49,2284.80,0.00,3518588831911.312500,3518588831913.144531,205,0,0.024927,0.014590,8198575,7117937,0,0,24597,0,1,1 +1773562677.521695,0.95,4,3992.50,58.36,1371.53,2284.77,0.00,3521299263174.874023,0.000000,75,0,0.003883,0.007128,8198675,7118077,0,0,24599,0,1,1 +1773562682.521711,1.20,4,3992.50,58.56,1363.65,2292.61,0.00,8213.920664,9198.555569,615717,1299392,0.003878,0.007132,8198775,7118218,0,0,24602,0,1,1 +1773562687.526257,12.59,4,3992.50,58.83,1352.68,2303.48,0.00,3515241112515.632812,3515241111531.889160,75,0,14.090094,0.074705,8203635,7121925,0,0,24604,0,1,1 +1773562692.522443,12.50,4,3992.50,59.44,1329.07,2327.07,0.00,1.960284,0.000195,246,2,20.134390,0.089143,8210107,7126873,0,0,24606,0,1,1 +1773562697.521800,5.93,4,3992.50,59.07,1343.56,2312.54,0.00,0.000000,0.000000,246,2,6.041571,0.030482,8212041,7128355,0,0,24609,0,1,1 +1773562702.525629,0.90,4,3992.50,58.79,1354.55,2301.58,0.00,3515744702520.475586,3515744702522.432617,75,0,0.003913,0.007832,8212144,7128504,0,0,24612,0,1,1 +1773562707.526089,0.95,4,3992.50,58.79,1354.38,2301.74,0.00,0.126746,0.000000,205,0,0.003878,0.007122,8212244,7128644,0,0,24614,0,1,1 +1773562712.526467,1.30,4,3992.50,58.98,1346.52,2309.28,0.00,0.000000,0.000000,205,0,0.003886,0.007140,8212345,7128786,0,0,24617,0,1,1 +1773562717.526094,0.85,4,3992.50,59.01,1345.62,2310.20,0.00,0.000000,0.000000,205,0,0.003395,0.005843,8212429,7128901,0,0,24619,0,1,1 +1773562722.526443,1.20,4,3992.50,58.52,1364.72,2291.09,0.00,1.831904,0.000195,246,2,0.004535,0.008054,8212531,7129044,0,0,24622,0,1,1 +1773562727.526473,1.55,4,3992.50,58.36,1370.93,2284.90,0.00,8202.376058,9189.181954,614228,1300572,0.003878,0.007110,8212631,7129183,0,0,24624,0,1,1 +1773562732.524449,0.90,4,3992.50,58.37,1370.62,2285.21,0.00,3519862349297.752930,3519862348312.500488,75,0,0.003880,0.007113,8212731,7129322,0,0,24626,0,1,1 +1773562737.522254,0.90,4,3992.50,58.37,1370.64,2285.19,0.00,8217.554054,9204.024439,615717,1300837,0.003422,0.005868,8212817,7129439,0,0,24629,0,1,1 +1773562742.521717,1.30,4,3992.50,58.47,1380.32,2289.05,0.00,3518815109448.163574,3518815108461.894043,205,0,0.003886,0.007141,8212918,7129581,0,0,24632,0,1,1 +1773562747.523365,0.80,4,3992.50,58.50,1376.38,2290.25,0.00,1.831427,0.000195,246,2,0.005118,0.008344,8213028,7129735,0,0,24634,0,1,1 +1773562752.521735,1.00,4,3992.50,58.49,1376.61,2290.02,0.00,3519584410382.239258,10.678481,251,190,0.004084,0.007667,8213135,7129887,0,0,24637,0,1,1 +1773562757.525707,0.85,4,3992.50,58.49,1376.63,2290.01,0.00,3515644692926.912109,3515644692917.720215,205,0,0.003717,0.006405,8213227,7130014,0,0,24639,0,1,1 +1773562762.525832,15.06,4,3992.50,59.25,1346.80,2319.75,0.00,8213.614162,9199.954723,615717,1301325,18.138890,0.096741,8219474,7134726,0,0,24642,0,1,1 +1773562767.525623,15.01,4,3992.50,59.82,1324.57,2341.94,0.00,3518584489319.639648,3518584488333.413574,11,0,22.127923,0.095657,8226483,7139999,0,0,24644,0,1,1 +1773562772.521743,0.90,4,3992.50,59.36,1342.27,2324.22,0.00,8220.378120,9208.199652,615717,1302032,0.003410,0.005847,8226568,7140114,0,0,24646,0,1,1 +1773562777.526003,1.10,4,3992.50,59.11,1352.45,2314.13,0.00,3515441879667.056152,3515441878678.831055,246,2,0.003417,0.005860,8226654,7140231,0,0,24649,0,1,1 +1773562782.521800,0.85,4,3992.50,58.72,1367.71,2298.88,0.00,3521397746567.520020,10.683982,251,190,0.003411,0.005857,8226739,7140347,0,0,24652,0,1,1 +1773562787.526326,0.90,4,3992.50,58.75,1366.37,2300.22,0.00,3515254700457.524902,3515254700448.460938,75,0,0.003875,0.007103,8226839,7140486,0,0,24654,0,1,1 +1773562792.526494,0.90,4,3992.50,58.74,1366.62,2299.96,0.00,0.000000,0.000000,75,0,0.003904,0.007153,8226941,7140629,0,0,24657,0,1,1 +1773562797.526268,0.80,4,3992.50,58.59,1372.52,2294.07,0.00,8214.316095,9201.787394,615717,1302309,0.003897,0.007148,8227042,7140771,0,0,24659,0,1,1 +1773562802.525918,1.20,4,3992.50,58.60,1358.34,2294.15,0.00,3518683715429.895508,3518683714440.440430,246,2,0.003395,0.005853,8227126,7140887,0,0,24662,0,1,1 +1773562807.526193,0.80,4,3992.50,58.61,1355.43,2294.88,0.00,3518243981294.200684,10.674414,251,190,0.003878,0.007122,8227226,7141027,0,0,24664,0,1,1 +1773562812.526699,0.80,4,3992.50,58.56,1357.68,2292.62,0.00,0.356116,3518080768186.950684,246,2,0.003878,0.007122,8227326,7141167,0,0,24666,0,1,1 +1773562817.524420,0.95,4,3992.50,58.61,1355.75,2294.54,0.00,3520041639636.537598,3520041639638.497559,75,0,0.003712,0.006568,8227422,7141301,0,0,24669,0,1,1 +1773562822.525641,0.90,4,3992.50,58.61,1355.79,2294.52,0.00,0.126727,0.000000,205,0,0.003622,0.006439,8227513,7141426,0,0,24672,0,1,1 +1773562827.525902,1.40,4,3992.50,58.41,1363.47,2286.82,0.00,1.831936,0.000195,246,2,0.006682,0.008533,8227662,7141597,0,0,24674,0,1,1 +1773562832.526142,19.11,4,3992.50,58.73,1349.59,2299.44,0.00,3518268583898.847168,10.674488,251,190,26.170433,0.124220,8236344,7148056,0,0,24677,0,1,1 +1773562837.522707,8.99,4,3992.50,58.41,1362.07,2286.94,0.00,8217.990099,9197.874776,615717,1303400,14.097273,0.068321,8241068,7151666,0,0,24679,0,1,1 +1773562842.521861,0.90,4,3992.50,58.18,1371.03,2277.97,0.00,3519032397844.314453,3519032396855.863281,75,0,0.003874,0.007132,8241168,7151807,0,0,24681,0,1,1 +1773562847.526423,0.80,4,3992.50,58.22,1369.59,2279.41,0.00,0.126642,0.000000,205,0,0.003417,0.005860,8241254,7151924,0,0,24684,0,1,1 +1773562852.526177,0.80,4,3992.50,58.22,1369.60,2279.39,0.00,8214.223897,9203.326971,615717,1303893,0.003878,0.007123,8241354,7152064,0,0,24686,0,1,1 +1773562857.522970,1.00,4,3992.50,58.22,1369.61,2279.38,0.00,3520695193604.300781,3520695192623.816895,251,190,0.003881,0.007137,8241454,7152205,0,0,24689,0,1,1 +1773562862.525483,1.15,4,3992.50,58.47,1360.67,2289.13,0.00,3516670022411.891602,3516670022402.877441,11,0,0.003889,0.007129,8241555,7152346,0,0,24692,0,1,1 +1773562867.525903,1.70,4,3992.50,58.38,1364.16,2285.66,0.00,0.000000,0.000000,11,0,0.003428,0.005863,8241642,7152463,0,0,24694,0,1,1 +1773562872.525737,0.90,4,3992.50,58.38,1364.18,2285.65,0.00,8204.710554,9192.772530,614228,1303924,0.003853,0.007133,8241740,7152604,0,0,24697,0,1,1 +1773562877.521768,0.80,4,3992.50,58.38,1364.19,2285.62,0.00,9.569118,10.717099,615717,1304158,0.003881,0.007128,8241840,7152744,0,0,24699,0,1,1 +1773562882.525907,0.85,4,3992.50,58.38,1364.21,2285.61,0.00,3515527236125.673340,3515527236124.566895,614228,1303977,0.003875,0.007126,8241940,7152885,0,0,24702,0,1,1 +1773562887.526680,0.80,4,3992.50,58.38,1364.22,2285.60,0.00,3517893842978.140137,3517893841990.170410,75,0,0.002733,0.003954,8242005,7152965,0,0,24704,0,1,1 +1773562892.521791,1.20,4,3992.50,58.41,1371.00,2287.02,0.00,0.000000,0.000000,75,0,0.003661,0.006503,8242099,7153094,0,0,24706,0,1,1 +1773562897.526345,5.31,4,3992.50,58.91,1351.60,2306.41,0.00,8206.470730,9195.052216,615717,1304456,4.026828,0.027410,8243445,7154151,0,0,24709,0,1,1 +1773562902.525579,20.09,4,3992.50,59.71,1319.96,2337.92,0.00,3518976373302.730957,3518976372312.970703,205,0,32.201813,0.143474,8253989,7161942,0,0,24712,0,1,1 +1773562907.523580,4.31,4,3992.50,59.18,1340.91,2317.01,0.00,1.832764,0.000195,246,2,4.039658,0.027447,8255615,7163157,0,0,24714,0,1,1 +1773562912.524278,0.85,4,3992.50,58.80,1355.87,2302.03,0.00,3517946145111.147949,3517946145113.106445,75,0,0.003890,0.007131,8255716,7163298,0,0,24717,0,1,1 +1773562917.526386,1.00,4,3992.50,58.75,1357.82,2300.09,0.00,1.957963,0.000195,246,2,0.003884,0.007115,8255817,7163438,0,0,24719,0,1,1 +1773562922.525953,1.15,4,3992.50,58.92,1350.96,2306.75,0.00,8212.699304,9205.118216,615717,1305537,0.003421,0.005868,8255903,7163555,0,0,24721,0,1,1 +1773562927.526186,0.95,4,3992.50,58.78,1356.35,2301.36,0.00,0.000000,0.172648,615717,1305547,0.003878,0.007132,8256003,7163696,0,0,24724,0,1,1 +1773562932.522079,0.80,4,3992.50,58.82,1354.92,2302.80,0.00,3521329682848.105957,3521329681854.784668,246,2,0.003869,0.007128,8256102,7163836,0,0,24726,0,1,1 +1773562937.521789,0.70,4,3992.50,58.82,1354.93,2302.78,0.00,3518640889631.633301,3518640889633.465332,205,0,0.003878,0.007108,8256202,7163975,0,0,24729,0,1,1 +1773562942.521850,0.70,4,3992.50,58.82,1354.95,2302.77,0.00,8213.720200,9204.478324,615717,1305650,0.003428,0.005886,8256289,7164094,0,0,24732,0,1,1 +1773562947.526048,0.70,4,3992.50,58.82,1354.97,2302.75,0.00,3515485098074.337891,3515485097093.590820,251,190,0.003887,0.007116,8256390,7164234,0,0,24734,0,1,1 +1773562952.521784,1.15,4,3992.50,58.82,1360.68,2302.93,0.00,8219.353873,9201.832238,615717,1305708,0.003881,0.007126,8256490,7164374,0,0,24737,0,1,1 +1773562957.524549,0.90,4,3992.50,58.64,1367.90,2295.74,0.00,3516492448830.191895,3516492447838.068848,246,2,0.006705,0.009035,8256636,7164541,0,0,24739,0,1,1 +1773562962.525337,0.60,4,3992.50,58.64,1367.66,2295.97,0.00,8210.694213,9203.460094,615717,1305992,0.003407,0.006508,8256721,7164662,0,0,24742,0,1,1 +1773562967.525788,8.29,4,3992.50,58.68,1366.21,2297.36,0.00,0.000000,0.229081,615717,1306344,8.060016,0.044163,8259439,7166659,0,0,24744,0,1,1 +1773562972.524555,9.55,4,3992.50,58.76,1362.97,2300.60,0.00,0.000000,0.092601,615717,1306534,12.079125,0.056574,8263365,7169672,0,0,24746,0,1,1 +1773562977.524778,13.69,4,3992.50,58.59,1369.70,2293.79,0.00,3518280530933.682129,3518280529942.313965,205,0,20.120609,0.089545,8269736,7174421,0,0,24749,0,1,1 +1773562982.526042,1.21,4,3992.50,58.80,1361.38,2302.04,0.00,1.475506,10.672498,251,190,0.003877,0.007131,8269836,7174562,0,0,24752,0,1,1 +1773562987.526450,0.75,4,3992.50,58.74,1363.75,2299.66,0.00,3518149807002.210449,3518149806993.012207,205,0,0.003415,0.005863,8269922,7174679,0,0,24754,0,1,1 +1773562992.521700,0.80,4,3992.50,58.67,1366.19,2297.21,0.00,3521782760930.236328,0.000000,11,0,0.004804,0.007797,8270024,7174822,0,0,24757,0,1,1 +1773562997.521818,0.65,4,3992.50,58.67,1366.21,2297.19,0.00,0.000000,0.000000,11,0,0.003878,0.007122,8270124,7174962,0,0,24759,0,1,1 +1773563002.525719,0.65,4,3992.50,58.67,1366.25,2297.16,0.00,8198.042096,9188.492666,614228,1307327,0.003925,0.007176,8270228,7175106,0,0,24762,0,1,1 +1773563007.523196,0.65,4,3992.50,58.68,1366.02,2297.39,0.00,3520213682852.209961,3520213681858.473145,246,2,0.003422,0.005858,8270314,7175222,0,0,24764,0,1,1 +1773563012.525710,1.00,4,3992.50,58.60,1362.23,2294.38,0.00,3516668642461.055664,3516668642462.886719,205,0,0.003876,0.007119,8270414,7175362,0,0,24766,0,1,1 +1773563017.521728,0.60,4,3992.50,58.60,1362.26,2294.36,0.00,0.000000,0.000000,205,0,0.003881,0.007138,8270514,7175503,0,0,24769,0,1,1 +1773563022.526329,0.95,4,3992.50,58.60,1362.27,2294.35,0.00,3515202651574.714355,0.000000,75,0,0.004544,0.008047,8270617,7175646,0,0,24772,0,1,1 +1773563027.521859,0.70,4,3992.50,58.61,1362.07,2294.55,0.00,3521585182755.009277,0.000000,11,0,0.003423,0.006505,8270703,7175766,0,0,24774,0,1,1 +1773563032.526426,0.70,4,3992.50,58.61,1362.09,2294.54,0.00,0.180109,0.000000,205,0,0.003883,0.007134,8270804,7175908,0,0,24777,0,1,1 +1773563037.525767,0.65,4,3992.50,58.61,1362.10,2294.53,0.00,3518901179522.495117,0.000000,75,0,0.003879,0.007123,8270904,7176048,0,0,24779,0,1,1 +1773563042.521688,11.12,4,3992.50,59.30,1334.68,2321.90,0.00,1.603945,10.683910,251,190,12.086892,0.060830,8274788,7179049,0,0,24782,0,1,1 +1773563047.522670,14.92,4,3992.50,58.94,1348.99,2307.50,0.00,3517746828552.914062,3517746828543.843750,75,0,24.145194,0.108610,8282742,7184997,0,0,24784,0,1,1 +1773563052.522085,5.73,4,3992.50,58.40,1370.16,2286.35,0.00,1.959018,0.000195,246,2,4.038848,0.028267,8284270,7186166,0,0,24786,0,1,1 +1773563057.526202,1.05,4,3992.50,58.43,1368.96,2287.54,0.00,8195.677257,9189.117889,614228,1308702,0.004174,0.007668,8284376,7186317,0,0,24789,0,1,1 +1773563062.525830,0.70,4,3992.50,58.43,1368.76,2287.74,0.00,3518699336040.170410,3518699335045.837891,246,2,0.004681,0.007905,8284493,7186475,0,0,24792,0,1,1 +1773563067.521837,0.65,4,3992.50,58.34,1372.54,2283.96,0.00,3521248769681.989746,10.683530,251,190,0.003881,0.007128,8284593,7186615,0,0,24794,0,1,1 +1773563072.526187,1.15,4,3992.50,58.66,1357.74,2296.63,0.00,8205.205790,9189.279695,615717,1309139,0.003405,0.005847,8284678,7186731,0,0,24797,0,1,1 +1773563077.521717,0.70,4,3992.50,58.63,1358.91,2295.48,0.00,3521585460037.350586,3521585459042.512695,11,0,0.003890,0.007137,8284779,7186872,0,0,24799,0,1,1 +1773563082.526424,0.70,4,3992.50,58.63,1358.80,2295.59,0.00,0.000000,0.000000,11,0,0.003874,0.007126,8284879,7187013,0,0,24802,0,1,1 +1773563087.521719,0.65,4,3992.50,58.44,1366.39,2287.99,0.00,0.000000,0.000000,11,0,0.003882,0.007129,8284979,7187153,0,0,24804,0,1,1 +1773563092.525243,0.70,4,3992.50,58.43,1366.58,2287.80,0.00,1.654986,10.667676,251,190,0.003449,0.006507,8285067,7187274,0,0,24806,0,1,1 +1773563097.521804,0.70,4,3992.50,58.44,1366.35,2288.04,0.00,3520858752722.770996,3520858752713.565430,205,0,0.003912,0.007162,8285169,7187417,0,0,24809,0,1,1 +1773563102.522488,1.05,4,3992.50,58.49,1359.29,2289.93,0.00,0.000000,0.000000,205,0,0.003865,0.007119,8285268,7187557,0,0,24812,0,1,1 +1773563107.524005,0.65,4,3992.50,58.51,1358.32,2290.90,0.00,3517369770871.014648,0.000000,75,0,0.003889,0.007120,8285369,7187697,0,0,24814,0,1,1 +1773563112.522157,0.80,4,3992.50,58.51,1358.33,2290.90,0.00,1.603229,10.679142,251,190,0.003422,0.005867,8285455,7187814,0,0,24817,0,1,1 +1773563117.525645,13.62,4,3992.50,58.61,1354.53,2294.64,0.00,8197.063684,9180.766386,614228,1309806,18.107497,0.088065,8291516,7192287,0,0,24819,0,1,1 +1773563122.521745,8.89,4,3992.50,58.74,1349.29,2299.84,0.00,0.000000,0.433932,614228,1310384,12.091052,0.058565,8295567,7195370,0,0,24822,0,1,1 +1773563127.521805,8.64,4,3992.50,58.43,1361.56,2287.55,0.00,3518394498628.590820,3518394497634.581055,205,0,10.057977,0.042847,8298568,7197578,0,0,24824,0,1,1 +1773563132.521795,1.05,4,3992.50,58.78,1347.82,2301.31,0.00,1.475882,10.675217,251,190,0.003878,0.007122,8298668,7197718,0,0,24826,0,1,1 +1773563137.523230,0.70,4,3992.50,58.81,1346.62,2302.49,0.00,0.356050,3517427661407.141602,246,2,0.003407,0.005851,8298753,7197834,0,0,24829,0,1,1 +1773563142.526677,0.80,4,3992.50,58.48,1359.34,2289.77,0.00,3516013194142.462891,3516013194144.474121,11,0,0.003888,0.007127,8298854,7197975,0,0,24832,0,1,1 +1773563147.522124,0.70,4,3992.50,58.49,1358.88,2290.20,0.00,8211.916546,9207.361229,614228,1310836,0.003882,0.007116,8298954,7198114,0,0,24834,0,1,1 +1773563152.526407,0.65,4,3992.50,58.50,1358.68,2290.43,0.00,3515425638889.095703,3515425637904.419434,251,190,0.003887,0.007126,8299055,7198255,0,0,24837,0,1,1 +1773563157.524579,0.80,4,3992.50,58.51,1358.48,2290.65,0.00,3519724281242.488281,3519724281233.285645,205,0,0.003422,0.006501,8299141,7198375,0,0,24839,0,1,1 +1773563162.526142,1.05,4,3992.50,58.70,1355.61,2298.22,0.00,8211.252343,9206.956852,615717,1311174,0.003864,0.007118,8299240,7198515,0,0,24842,0,1,1 +1773563167.522436,0.70,4,3992.50,58.70,1355.62,2298.20,0.00,3521047566605.807617,3521047565609.232910,11,0,0.003326,0.006898,8299333,7198649,0,0,24844,0,1,1 +1773563172.521792,0.65,4,3992.50,58.70,1355.63,2298.19,0.00,0.000000,0.000000,11,0,0.003835,0.007123,8299430,7198789,0,0,24846,0,1,1 +1773563177.523769,0.60,4,3992.50,58.70,1355.68,2298.17,0.00,1.655498,10.670976,251,190,0.003419,0.005863,8299516,7198906,0,0,24849,0,1,1 +1773563182.523750,0.70,4,3992.50,58.69,1355.83,2298.03,0.00,0.356154,3518450417135.390625,246,2,0.003891,0.007132,8299617,7199047,0,0,24852,0,1,1 +1773563187.525824,0.65,4,3992.50,58.63,1358.20,2295.66,0.00,8199.025599,9195.645658,614228,1311350,0.003876,0.007119,8299717,7199187,0,0,24854,0,1,1 +1773563192.522403,17.91,4,3992.50,59.07,1351.13,2312.68,0.00,9.568069,11.159588,615717,1312182,24.174093,0.113984,8307751,7205078,0,0,24857,0,1,1 +1773563197.525539,6.82,4,3992.50,58.92,1356.98,2306.79,0.00,3516231722381.680176,3516231721385.692871,11,0,7.690103,0.036636,8310360,7207016,0,0,24859,0,1,1 +1773563202.521701,6.44,4,3992.50,59.05,1351.95,2311.83,0.00,0.053557,0.000000,75,0,8.417396,0.039364,8313064,7208972,0,0,24862,0,1,1 +1773563207.525917,0.75,4,3992.50,58.99,1354.02,2309.75,0.00,0.126651,0.000000,205,0,0.003417,0.005838,8313150,7209087,0,0,24864,0,1,1 +1773563212.526045,0.70,4,3992.50,58.99,1354.04,2309.73,0.00,1.475841,10.674923,251,190,0.003886,0.007130,8313251,7209228,0,0,24866,0,1,1 +1773563217.526335,0.70,4,3992.50,59.00,1353.82,2309.94,0.00,3518233066222.462891,3518233066213.444336,11,0,0.003878,0.007132,8313351,7209369,0,0,24869,0,1,1 +1773563222.526356,1.10,4,3992.50,59.08,1352.70,2313.29,0.00,2.012296,0.000195,246,2,0.003865,0.007776,8313450,7209514,0,0,24872,0,1,1 +1773563227.523092,0.65,4,3992.50,59.07,1350.22,2312.81,0.00,3520735894530.191406,3520735894532.151367,75,0,0.003422,0.005859,8313536,7209630,0,0,24874,0,1,1 +1773563232.521794,0.70,4,3992.50,59.07,1350.24,2312.80,0.00,3519350595797.455566,0.000000,11,0,0.003879,0.007134,8313636,7209771,0,0,24877,0,1,1 +1773563237.526369,0.70,4,3992.50,58.64,1367.18,2295.88,0.00,8206.490220,9203.304802,615717,1313142,0.003874,0.007116,8313736,7209911,0,0,24879,0,1,1 +1773563242.521733,0.70,4,3992.50,58.66,1366.24,2296.82,0.00,3521702839792.827637,3521702838803.202148,251,190,0.003869,0.007139,8313835,7210052,0,0,24882,0,1,1 +1773563247.521732,0.55,4,3992.50,58.68,1365.51,2297.55,0.00,3518437517800.357910,3518437517791.338867,11,0,0.003420,0.005843,8313921,7210167,0,0,24884,0,1,1 +1773563252.526145,1.10,4,3992.50,58.81,1356.05,2302.60,0.00,0.000000,0.000000,11,0,0.003862,0.007116,8314020,7210307,0,0,24886,0,1,1 +1773563257.522798,0.80,4,3992.50,58.75,1358.35,2300.32,0.00,0.000000,0.000000,11,0,0.006051,0.008154,8314164,7210475,0,0,24889,0,1,1 +1773563262.526073,1.75,4,3992.50,58.42,1371.27,2287.38,0.00,0.000000,0.000000,11,0,0.010396,0.011556,8314372,7210694,0,0,24892,0,1,1 +1773563267.526046,20.81,4,3992.50,59.24,1338.98,2319.57,0.00,0.180274,0.000000,205,0,32.194743,0.142069,8324744,7218362,0,0,24894,0,1,1 +1773563272.525793,5.97,4,3992.50,59.49,1329.35,2329.19,0.00,1.475953,10.675735,251,190,8.061329,0.044314,8327641,7220554,0,0,24897,0,1,1 +1773563277.525920,0.55,4,3992.50,59.11,1344.24,2314.30,0.00,3518348143305.635254,3518348143296.616699,11,0,0.003191,0.005234,8327720,7220659,0,0,24899,0,1,1 +1773563282.521717,1.00,4,3992.50,59.15,1342.77,2315.91,0.00,8220.925388,9220.726285,615719,1314641,0.003194,0.005223,8327799,7220763,0,0,24902,0,1,1 +1773563287.521700,0.65,4,3992.50,59.15,1342.65,2315.94,0.00,3518448684887.705566,3518448683886.729492,246,2,0.003878,0.007605,8327899,7220906,0,0,24904,0,1,1 +1773563292.521874,0.80,4,3992.50,59.14,1343.18,2315.42,0.00,3518314716644.995117,10.674628,251,190,0.004812,0.007953,8328002,7221050,0,0,24906,0,1,1 +1773563297.525848,0.65,4,3992.50,59.15,1342.61,2315.98,0.00,3515643266708.426270,3515643266699.415039,11,0,0.003418,0.005860,8328088,7221167,0,0,24909,0,1,1 +1773563302.525659,0.70,4,3992.50,59.17,1342.12,2316.46,0.00,0.000000,0.000000,11,0,0.003924,0.007203,8328192,7221313,0,0,24912,0,1,1 +1773563307.521738,0.75,4,3992.50,59.19,1341.37,2317.22,0.00,8210.892295,9209.972757,614230,1314805,0.003868,0.007115,8328291,7221452,0,0,24914,0,1,1 +1773563312.521801,1.15,4,3992.50,59.18,1341.39,2317.18,0.00,3518393241875.595215,3518393240875.298828,246,2,0.003865,0.007132,8328390,7221593,0,0,24917,0,1,1 +1773563317.526329,0.60,4,3992.50,59.16,1342.41,2316.17,0.00,8195.018059,9194.541327,614230,1314919,0.003417,0.005850,8328476,7221709,0,0,24919,0,1,1 +1773563322.522576,1.00,4,3992.50,59.01,1348.16,2310.42,0.00,3521080357394.743652,3521080356395.577148,11,0,0.003881,0.007138,8328576,7221850,0,0,24922,0,1,1 +1773563327.521833,0.65,4,3992.50,59.07,1345.96,2312.61,0.00,2.012604,0.000195,246,2,0.004548,0.008045,8328679,7221992,0,0,24924,0,1,1 +1773563332.525697,6.16,4,3992.50,58.92,1351.78,2306.76,0.00,0.000000,0.000000,246,2,4.031804,0.027092,8330148,7223135,0,0,24926,0,1,1 +1773563337.522588,22.40,4,3992.50,59.26,1338.21,2320.25,0.00,3520626244856.333008,3520626244858.346680,11,0,36.242684,0.160132,8341938,7231874,0,0,24929,0,1,1 +1773563342.524616,1.85,4,3992.50,59.25,1339.55,2319.60,0.00,0.000000,0.000000,11,0,0.011633,0.011391,8342181,7232119,0,0,24932,0,1,1 +1773563347.522110,0.70,4,3992.50,59.19,1341.94,2317.27,0.00,8218.133543,9219.380469,615719,1316608,0.003730,0.006413,8342274,7232246,0,0,24934,0,1,1 +1773563352.525788,0.70,4,3992.50,59.20,1341.25,2317.95,0.00,3515851232318.343750,3515851231318.334473,11,0,0.004080,0.008302,8342381,7232402,0,0,24937,0,1,1 +1773563357.526466,0.75,4,3992.50,59.20,1341.23,2317.97,0.00,0.180249,0.000000,205,0,0.004165,0.007676,8342486,7232553,0,0,24939,0,1,1 +1773563362.524683,0.60,4,3992.50,59.13,1344.20,2315.01,0.00,3519692495948.684082,0.000000,11,0,0.004051,0.007667,8342590,7232705,0,0,24942,0,1,1 +1773563367.526537,0.65,4,3992.50,59.13,1344.21,2315.00,0.00,1.655538,10.671237,251,190,0.003427,0.005861,8342677,7232822,0,0,24944,0,1,1 +1773563372.525820,1.10,4,3992.50,59.27,1344.89,2320.37,0.00,0.356203,3518942448072.392090,246,2,0.003879,0.007133,8342777,7232963,0,0,24947,0,1,1 +1773563377.522620,0.70,4,3992.50,59.27,1344.88,2320.37,0.00,3520690050564.815430,10.681835,251,190,0.003422,0.005859,8342863,7233079,0,0,24949,0,1,1 +1773563382.526581,0.70,4,3992.50,59.23,1346.12,2319.13,0.00,8196.305260,9186.530727,614230,1316654,0.003430,0.005860,8342950,7233196,0,0,24952,0,1,1 +1773563387.522575,0.65,4,3992.50,59.26,1345.14,2320.09,0.00,3521258342013.903320,3521258341013.072754,11,0,0.003423,0.005860,8343036,7233312,0,0,24954,0,1,1 +1773563392.521794,0.75,4,3992.50,59.26,1344.99,2320.26,0.00,0.000000,0.000000,11,0,0.003885,0.007133,8343136,7233453,0,0,24957,0,1,1 +1773563397.521793,0.75,4,3992.50,59.26,1345.01,2320.24,0.00,2.012305,0.000195,246,2,0.003917,0.007156,8343239,7233596,0,0,24959,0,1,1 +1773563402.526312,9.99,4,3992.50,59.70,1330.71,2337.34,0.00,8204.587078,9207.263469,615719,1317349,12.072597,0.061707,8347308,7236585,0,0,24962,0,1,1 +1773563407.521781,18.23,4,3992.50,59.56,1336.05,2331.88,0.00,3521628759139.925293,3521628758146.473145,251,190,28.205203,0.128147,8356571,7243452,0,0,24964,0,1,1 +1773563412.525804,1.10,4,3992.50,59.30,1346.39,2321.54,0.00,8196.201643,9187.444719,614230,1318072,0.003862,0.007117,8356670,7243592,0,0,24966,0,1,1 +1773563417.521796,0.90,4,3992.50,59.06,1355.43,2312.49,0.00,3521259994810.675293,3521259993817.838379,251,190,0.003410,0.006502,8356755,7243712,0,0,24969,0,1,1 +1773563422.521723,0.95,4,3992.50,59.08,1354.71,2313.22,0.00,8212.478980,9205.841784,615719,1318291,0.003878,0.007132,8356855,7243853,0,0,24972,0,1,1 +1773563427.521724,0.80,4,3992.50,59.08,1354.73,2313.21,0.00,3518436760162.558594,3518436759169.210449,251,190,0.003710,0.006985,8356953,7243992,0,0,24974,0,1,1 +1773563432.526317,1.35,4,3992.50,59.15,1357.84,2315.66,0.00,3515207847893.258789,3515207847884.248535,11,0,0.003874,0.007126,8357053,7244133,0,0,24977,0,1,1 +1773563437.522319,0.80,4,3992.50,59.17,1356.71,2316.79,0.00,8211.018885,9213.463229,614230,1318359,0.003423,0.005847,8357139,7244248,0,0,24979,0,1,1 +1773563442.523767,0.90,4,3992.50,59.16,1357.13,2316.38,0.00,3517418007005.237793,3517418006001.874023,246,2,0.003864,0.007130,8357238,7244389,0,0,24982,0,1,1 +1773563447.526276,1.00,4,3992.50,59.11,1359.08,2314.44,0.00,0.000000,0.000000,246,2,0.003876,0.007119,8357338,7244529,0,0,24984,0,1,1 +1773563452.525888,0.90,4,3992.50,59.05,1361.45,2312.07,0.00,3518710264318.064941,10.675828,251,190,0.003878,0.007110,8357438,7244668,0,0,24986,0,1,1 +1773563457.526309,0.90,4,3992.50,59.06,1361.21,2312.31,0.00,0.000000,0.000000,251,190,0.003420,0.005852,8357524,7244784,0,0,24989,0,1,1 +1773563462.521784,1.20,4,3992.50,59.16,1357.98,2316.17,0.00,0.000000,0.000000,251,190,0.003890,0.007147,8357625,7244926,0,0,24992,0,1,1 +1773563467.521721,0.90,4,3992.50,58.93,1366.75,2307.25,0.00,8202.901249,9195.814640,614230,1318629,0.003878,0.007123,8357725,7245066,0,0,24994,0,1,1 +1773563472.525551,16.84,4,3992.50,58.92,1367.09,2306.84,0.00,3515744260815.428223,3515744259812.265137,246,2,20.134977,0.104368,8364727,7250208,0,0,24997,0,1,1 +1773563477.523675,4.56,4,3992.50,59.36,1349.82,2324.09,0.00,3519757409345.605469,3519757409347.618652,11,0,2.042565,0.022113,8365903,7251013,0,0,24999,0,1,1 +1773563482.526331,12.53,4,3992.50,59.17,1357.17,2316.71,0.00,8209.653867,9213.044704,615719,1320087,18.095402,0.077431,8371602,7255248,0,0,25002,0,1,1 +1773563487.523766,1.00,4,3992.50,59.20,1356.20,2317.67,0.00,3520243021975.264648,3520243020970.645020,205,0,0.003351,0.006419,8371714,7255371,0,0,25004,0,1,1 +1773563492.521717,1.25,4,3992.50,59.02,1358.24,2310.73,0.00,3519880026713.375977,0.000000,75,0,0.003883,0.006052,8371832,7255490,0,0,25006,0,1,1 +1773563497.521733,0.85,4,3992.50,58.99,1359.53,2309.44,0.00,3518426068138.844238,0.000000,11,0,0.003379,0.004679,8371934,7255588,0,0,25009,0,1,1 +1773563502.521795,0.90,4,3992.50,58.99,1359.54,2309.43,0.00,0.053515,0.000000,75,0,0.003749,0.005807,8372043,7255701,0,0,25012,0,1,1 +1773563507.526565,0.95,4,3992.50,58.99,1359.56,2309.41,0.00,8206.132780,9209.859136,615719,1320552,0.003883,0.005837,8372161,7255816,0,0,25014,0,1,1 +1773563512.525943,0.85,4,3992.50,58.99,1359.57,2309.40,0.00,3518874659426.977051,3518874658431.241699,251,190,0.003357,0.004644,8372260,7255912,0,0,25017,0,1,1 +1773563517.521791,1.00,4,3992.50,58.99,1359.58,2309.39,0.00,8209.615420,9205.008435,614230,1320413,0.003944,0.005847,8372382,7256027,0,0,25019,0,1,1 +1773563522.521717,1.15,4,3992.50,59.19,1351.19,2317.34,0.00,3518489222245.595703,3518489221241.995117,11,0,0.003869,0.005692,8372500,7256140,0,0,25021,0,1,1 +1773563527.524560,0.95,4,3992.50,59.19,1350.04,2317.58,0.00,1.655211,10.669127,251,190,0.003127,0.004601,8372593,7256233,0,0,25024,0,1,1 +1773563532.526310,0.95,4,3992.50,59.19,1350.05,2317.57,0.00,3517206288679.541992,3517206288670.472656,75,0,0.003908,0.006067,8372713,7256353,0,0,25026,0,1,1 +1773563537.524619,0.85,4,3992.50,59.00,1357.46,2310.17,0.00,0.000000,0.000000,75,0,0.002905,0.005264,8372811,7256456,0,0,25029,0,1,1 +1773563542.525046,0.80,4,3992.50,59.00,1357.48,2310.16,0.00,1.602500,10.674284,251,190,0.003533,0.004855,8372915,7256556,0,0,25032,0,1,1 +1773563547.526080,10.17,4,3992.50,59.63,1333.02,2334.58,0.00,3517709366671.904297,3517709366662.887695,11,0,6.818885,0.079121,8379546,7261048,0,0,25034,0,1,1 +1773563552.525565,8.82,4,3992.50,59.28,1336.04,2320.87,0.00,8205.298669,9209.715051,614230,1321193,13.458100,0.121396,8390332,7269205,0,0,25037,0,1,1 +1773563557.526003,8.32,4,3992.50,58.74,1356.92,2299.96,0.00,3518129252492.643555,3518129251488.418457,11,0,12.154720,0.110311,8400563,7276569,0,0,25039,0,1,1 +1773563562.523905,7.40,4,3992.50,59.19,1339.36,2317.53,0.00,0.000000,0.000000,11,0,8.105217,0.070748,8407327,7281267,0,0,25042,0,1,1 +1773563567.526462,1.55,4,3992.50,58.89,1351.32,2305.55,0.00,0.000000,0.000000,11,0,0.010063,0.008133,8407549,7281446,0,0,25044,0,1,1 +1773563572.521790,0.80,4,3992.50,58.91,1350.43,2306.45,0.00,8212.126264,9217.907525,614230,1321906,0.003898,0.005879,8407668,7281563,0,0,25046,0,1,1 +1773563577.523983,0.80,4,3992.50,58.89,1351.13,2305.76,0.00,3516894996505.156738,3516894995498.744629,246,2,0.003326,0.004678,8407766,7281661,0,0,25049,0,1,1 +1773563582.525831,1.25,4,3992.50,59.14,1341.63,2315.38,0.00,3517137556916.239258,10.671057,251,190,0.003848,0.005845,8407881,7281775,0,0,25052,0,1,1 +1773563587.522657,0.95,4,3992.50,59.02,1346.21,2310.67,0.00,3520671607341.949219,3520671607332.924805,11,0,0.003747,0.005834,8407999,7281889,0,0,25054,0,1,1 +1773563592.526041,0.75,4,3992.50,59.06,1344.50,2312.38,0.00,8198.904779,9203.418159,614230,1322095,0.004272,0.005277,8408100,7281986,0,0,25057,0,1,1 +1773563597.526603,0.85,4,3992.50,59.05,1345.12,2311.75,0.00,3518041519514.620117,3518041518518.558105,251,190,0.003085,0.005471,8408203,7282093,0,0,25059,0,1,1 +1773563602.526144,0.80,4,3992.50,59.06,1344.69,2312.20,0.00,8213.112557,9210.573753,615719,1322382,0.003630,0.005680,8408312,7282208,0,0,25062,0,1,1 +1773563607.525970,0.90,4,3992.50,59.06,1344.70,2312.18,0.00,3518560202496.797363,3518560201490.320312,75,0,0.003482,0.004845,8408413,7282307,0,0,25064,0,1,1 +1773563612.525864,1.20,4,3992.50,59.20,1338.05,2317.75,0.00,3518511340398.577148,0.000000,11,0,0.003304,0.006090,8408522,7282418,0,0,25066,0,1,1 +1773563617.526086,0.80,4,3992.50,59.13,1340.74,2314.89,0.00,0.000000,0.000000,11,0,0.003633,0.005412,8408632,7282525,0,0,25069,0,1,1 +1773563622.524007,1.86,4,3992.50,58.92,1348.73,2306.92,0.00,1.656841,10.679636,251,190,0.003536,0.005220,8408735,7282629,0,0,25072,0,1,1 +1773563627.526286,1.45,4,3992.50,58.69,1357.89,2297.76,0.00,0.355990,3516834413698.582520,246,2,0.007968,0.007917,8408920,7282778,0,0,25074,0,1,1 +1773563632.526398,9.68,4,3992.50,59.31,1333.62,2321.94,0.00,8211.817951,9220.641576,615719,1322964,10.146534,0.100790,8417834,7288920,0,0,25077,0,1,1 +1773563637.525671,5.28,4,3992.50,58.99,1346.04,2309.50,0.00,0.000000,0.046198,615719,1323089,6.082732,0.058333,8423092,7292697,0,0,25079,0,1,1 +1773563642.524604,8.97,4,3992.50,59.47,1324.67,2328.36,0.00,3519187828652.628418,3519187827645.353027,205,0,8.748009,0.077927,8430897,7297831,0,0,25082,0,1,1 +1773563647.521757,9.09,4,3992.50,59.00,1343.02,2309.89,0.00,0.000000,0.000000,205,0,15.568818,0.136136,8443469,7306958,0,0,25084,0,1,1 +1773563652.525547,1.40,4,3992.50,58.93,1345.57,2307.36,0.00,8198.059522,9203.670987,614230,1323536,0.007388,0.007639,8443656,7307121,0,0,25086,0,1,1 +1773563657.522634,0.90,4,3992.50,58.73,1353.46,2299.47,0.00,0.000000,0.334277,614230,1323719,0.003677,0.005611,8443763,7307233,0,0,25089,0,1,1 +1773563662.521798,1.00,4,3992.50,58.76,1352.48,2300.44,0.00,3519025967505.759766,3519025966499.063965,11,0,0.004102,0.006373,8443889,7307359,0,0,25092,0,1,1 +1773563667.523711,0.85,4,3992.50,58.76,1352.27,2300.66,0.00,8210.872320,9218.162401,615719,1323932,0.002804,0.004763,8443980,7307451,0,0,25094,0,1,1 +1773563672.526083,1.30,4,3992.50,58.71,1352.70,2298.75,0.00,3516768798428.521484,3516768797419.312500,246,2,0.003806,0.005442,8444094,7307560,0,0,25097,0,1,1 +1773563677.526254,0.90,4,3992.50,58.72,1352.29,2298.98,0.00,3518317040764.316406,10.674635,251,190,0.003879,0.006378,8444212,7307681,0,0,25099,0,1,1 +1773563682.526652,0.90,4,3992.50,58.55,1358.99,2292.28,0.00,3518157183271.489258,3518157183262.417480,75,0,0.003457,0.004802,8444319,7307777,0,0,25101,0,1,1 +1773563687.525436,0.85,4,3992.50,58.57,1358.02,2293.25,0.00,1.959266,0.000195,246,2,0.003771,0.005840,8444429,7307892,0,0,25104,0,1,1 +1773563692.526607,0.95,4,3992.50,58.18,1373.31,2277.95,0.00,8200.520989,9209.347495,614230,1324152,0.004472,0.006132,8444557,7308017,0,0,25106,0,1,1 +1773563697.523486,0.90,4,3992.50,58.19,1372.85,2278.42,0.00,9.567495,10.717530,615719,1324389,0.003273,0.004634,8444651,7308113,0,0,25109,0,1,1 +1773563702.526034,1.40,4,3992.50,58.29,1370.77,2282.36,0.00,3516644567655.474609,3516644567654.429199,614230,1324221,0.003659,0.005717,8444763,7308228,0,0,25112,0,1,1 +1773563707.525483,0.80,4,3992.50,58.36,1366.50,2284.78,0.00,3518825179305.546875,3518825178298.102051,205,0,0.003867,0.005863,8444880,7308344,0,0,25114,0,1,1 +1773563712.525906,2.45,4,3992.50,58.37,1365.95,2285.30,0.00,1.831876,0.000195,246,2,0.010720,0.008088,8445108,7308509,0,0,25117,0,1,1 +1773563717.526079,9.80,4,3992.50,58.70,1352.93,2298.30,0.00,3518315687664.661621,3518315687666.674316,11,0,10.142935,0.103628,8453888,7314971,0,0,25119,0,1,1 +1773563722.523509,9.34,4,3992.50,58.54,1359.37,2291.79,0.00,1.657004,10.680685,251,190,14.185331,0.130298,8465770,7323583,0,0,25122,0,1,1 +1773563727.526701,5.68,4,3992.50,58.78,1349.89,2301.29,0.00,3516192085776.273438,3516192085767.080078,205,0,8.092614,0.068977,8472448,7328412,0,0,25124,0,1,1 +1773563732.525722,7.51,4,3992.50,58.63,1361.89,2295.49,0.00,3519126672661.601074,0.000000,11,0,8.111111,0.075195,8479437,7333243,0,0,25126,0,1,1 +1773563737.526245,1.15,4,3992.50,58.64,1361.61,2295.78,0.00,0.053510,0.000000,75,0,0.005450,0.006487,8479583,7333377,0,0,25129,0,1,1 +1773563742.526613,1.05,4,3992.50,58.49,1367.20,2290.18,0.00,0.126748,0.000000,205,0,0.003852,0.005835,8479700,7333492,0,0,25132,0,1,1 +1773563747.521805,0.75,4,3992.50,58.52,1365.98,2291.37,0.00,3521824311440.398438,0.000000,75,0,0.003332,0.005263,8479797,7333590,0,0,25134,0,1,1 +1773563752.521794,0.85,4,3992.50,58.52,1366.18,2291.20,0.00,0.126758,0.000000,205,0,0.003869,0.005854,8479914,7333706,0,0,25137,0,1,1 +1773563757.525546,1.00,4,3992.50,58.55,1364.97,2292.40,0.00,0.000000,0.000000,205,0,0.003664,0.005264,8480026,7333813,0,0,25139,0,1,1 +1773563762.525417,1.15,4,3992.50,58.77,1355.78,2301.14,0.00,3518527870790.720215,0.000000,75,0,0.003513,0.005015,8480127,7333911,0,0,25142,0,1,1 +1773563767.521716,1.05,4,3992.50,58.74,1357.07,2299.83,0.00,3521043714308.318848,0.000000,11,0,0.003704,0.005861,8480242,7334027,0,0,25144,0,1,1 +1773563772.526288,0.70,4,3992.50,58.77,1355.89,2301.02,0.00,2.010466,0.000195,246,2,0.003568,0.005179,8480348,7334128,0,0,25146,0,1,1 +1773563777.522587,0.95,4,3992.50,58.77,1355.91,2301.01,0.00,3521043502182.692383,3521043502184.525391,205,0,0.002848,0.004919,8480443,7334228,0,0,25149,0,1,1 +1773563782.526573,0.80,4,3992.50,58.78,1355.66,2301.24,0.00,0.000000,0.000000,205,0,0.003881,0.005860,8480562,7334345,0,0,25152,0,1,1 +1773563787.525958,1.00,4,3992.50,58.78,1355.59,2301.33,0.00,0.000000,0.000000,205,0,0.003482,0.005024,8480669,7334446,0,0,25154,0,1,1 +1773563792.521787,1.30,4,3992.50,58.72,1356.69,2299.16,0.00,3521374249106.382324,0.000000,75,0,0.003140,0.005238,8480768,7334550,0,0,25157,0,1,1 +1773563797.521723,3.11,4,3992.50,58.59,1361.48,2293.82,0.00,1.602657,10.675333,251,190,0.017295,0.012466,8481133,7334809,0,0,25159,0,1,1 +1773563802.523602,10.89,4,3992.50,59.04,1343.65,2311.57,0.00,0.000000,0.000000,251,190,12.158290,0.115935,8491461,7342247,0,0,25162,0,1,1 +1773563807.526201,9.93,4,3992.50,59.52,1324.89,2330.30,0.00,0.355967,3516609177660.242188,246,2,14.334665,0.132235,8503696,7351017,0,0,25164,0,1,1 +1773563812.526246,7.91,4,3992.50,59.63,1320.63,2334.52,0.00,0.000000,0.000000,246,2,14.015740,0.126926,8515293,7359571,0,0,25166,0,1,1 +1773563817.525856,1.55,4,3992.50,58.97,1346.33,2308.85,0.00,3518712219464.693359,3518712219466.652344,75,0,0.006393,0.007204,8515458,7359722,0,0,25169,0,1,1 +1773563822.521717,1.26,4,3992.50,59.13,1343.63,2314.91,0.00,1.960412,0.000195,246,2,0.003360,0.004672,8515558,7359820,0,0,25172,0,1,1 +1773563827.521734,0.85,4,3992.50,59.13,1343.41,2315.12,0.00,3518424919024.601562,10.674963,251,190,0.002781,0.003725,8515635,7359892,0,0,25174,0,1,1 +1773563832.521762,0.80,4,3992.50,58.94,1350.83,2307.70,0.00,3518417412154.132812,3518417412145.113770,11,0,0.003605,0.005262,8515743,7359999,0,0,25177,0,1,1 +1773563837.525758,0.85,4,3992.50,58.94,1350.84,2307.70,0.00,0.180129,0.000000,205,0,0.002953,0.004840,8515837,7360094,0,0,25179,0,1,1 +1773563842.524070,0.90,4,3992.50,58.94,1350.88,2307.66,0.00,1.832650,0.000195,246,2,0.003495,0.005252,8515946,7360200,0,0,25182,0,1,1 +1773563847.524760,0.95,4,3992.50,58.94,1350.88,2307.66,0.00,0.000000,0.000000,246,2,0.003807,0.005829,8516059,7360314,0,0,25184,0,1,1 +1773563852.526405,1.05,4,3992.50,58.96,1348.51,2308.34,0.00,3517279915456.780762,3517279915458.792480,11,0,0.002794,0.004744,8516149,7360405,0,0,25186,0,1,1 +1773563857.521717,1.20,4,3992.50,58.96,1347.29,2308.33,0.00,0.180443,0.000000,205,0,0.005614,0.007126,8516290,7360539,0,0,25189,0,1,1 +1773563862.525044,0.80,4,3992.50,58.77,1354.83,2300.79,0.00,8198.824493,9209.111235,614233,1328207,0.004878,0.006312,8516426,7360672,0,0,25192,0,1,1 +1773563867.525672,0.90,4,3992.50,58.77,1354.63,2300.99,0.00,3517995072426.417480,3517995071415.765625,11,0,0.003430,0.004970,8516529,7360769,0,0,25194,0,1,1 +1773563872.526073,0.90,4,3992.50,58.77,1354.65,2300.97,0.00,8203.804217,9214.566066,614233,1328289,0.003787,0.005482,8516642,7360881,0,0,25197,0,1,1 +1773563877.525886,7.34,4,3992.50,58.75,1355.56,2300.05,0.00,0.000000,0.115239,614233,1328480,2.045925,0.032337,8518733,7362318,0,0,25199,0,1,1 +1773563882.522641,10.23,4,3992.50,59.73,1319.98,2338.69,0.00,3520722345939.216797,3520722344936.626953,251,190,12.198877,0.116222,8529117,7369831,0,0,25202,0,1,1 +1773563887.521791,12.35,4,3992.50,59.00,1348.55,2310.04,0.00,0.000000,0.000000,251,190,18.198816,0.161307,8544315,7380715,0,0,25204,0,1,1 +1773563892.521714,5.49,4,3992.50,59.21,1340.51,2318.09,0.00,8202.932883,9205.845212,614233,1329612,8.108329,0.076984,8551274,7385772,0,0,25206,0,1,1 +1773563897.525448,1.00,4,3992.50,58.95,1350.68,2307.92,0.00,3515811357197.822754,3515811356186.662598,11,0,0.005737,0.006543,8551426,7385909,0,0,25209,0,1,1 +1773563902.525109,0.65,4,3992.50,58.94,1350.98,2307.62,0.00,0.000000,0.000000,11,0,0.002526,0.004392,8551508,7385997,0,0,25212,0,1,1 +1773563907.526614,0.65,4,3992.50,58.95,1350.61,2308.00,0.00,0.053500,0.000000,75,0,0.002403,0.003734,8551581,7386071,0,0,25214,0,1,1 +1773563912.526056,1.05,4,3992.50,59.24,1341.11,2319.20,0.00,8205.323365,9217.611938,614233,1329682,0.003707,0.005443,8551696,7386180,0,0,25217,0,1,1 +1773563917.521704,0.80,4,3992.50,59.24,1339.03,2319.19,0.00,3521502603195.051758,3521502602181.867676,205,0,0.003811,0.005835,8551809,7386294,0,0,25219,0,1,1 +1773563922.526048,0.65,4,3992.50,59.06,1345.95,2312.29,0.00,1.474598,10.665927,251,190,0.003478,0.004990,8551916,7386393,0,0,25222,0,1,1 +1773563927.526302,0.95,4,3992.50,59.06,1345.73,2312.51,0.00,0.000000,0.000000,251,190,0.003728,0.005447,8552025,7386502,0,0,25224,0,1,1 +1773563932.525684,0.75,4,3992.50,58.90,1352.08,2306.17,0.00,3518872068276.696777,3518872068267.623535,75,0,0.004611,0.006804,8552151,7386622,0,0,25226,0,1,1 +1773563937.526329,0.75,4,3992.50,58.90,1352.09,2306.16,0.00,0.000000,0.000000,75,0,0.003348,0.004636,8552250,7386717,0,0,25229,0,1,1 +1773563942.525874,0.90,4,3992.50,59.02,1352.58,2310.79,0.00,1.602783,10.676168,251,190,0.003721,0.006510,8552366,7386835,0,0,25232,0,1,1 +1773563947.526384,0.70,4,3992.50,59.02,1352.60,2310.77,0.00,8201.967844,9205.430183,614233,1330095,0.004230,0.006384,8552495,7386960,0,0,25234,0,1,1 +1773563952.526204,0.75,4,3992.50,59.02,1352.61,2310.76,0.00,9.561868,10.720601,615722,1330327,0.003912,0.005614,8552594,7387064,0,0,25237,0,1,1 +1773563957.522636,6.44,4,3992.50,59.17,1346.77,2316.55,0.00,3520949692626.260254,3520949691611.794434,11,0,2.496371,0.039551,8555561,7388860,0,0,25239,0,1,1 +1773563962.525320,9.93,4,3992.50,59.82,1321.12,2342.19,0.00,0.000000,0.000000,11,0,12.223821,0.110805,8565887,7396087,0,0,25242,0,1,1 +1773563967.522568,10.30,4,3992.50,59.54,1332.04,2331.15,0.00,2.013413,0.000195,246,2,17.761326,0.154102,8580383,7406372,0,0,25244,0,1,1 +1773563972.525674,5.03,4,3992.50,58.94,1363.53,2307.68,0.00,3516252393192.486816,3516252393194.444336,75,0,8.060079,0.075005,8587263,7411354,0,0,25246,0,1,1 +1773563977.522645,0.80,4,3992.50,58.97,1362.58,2308.62,0.00,1.959977,0.000195,246,2,0.003353,0.004615,8587363,7411448,0,0,25249,0,1,1 +1773563982.521802,0.65,4,3992.50,58.97,1362.59,2308.61,0.00,8213.396853,9230.435645,615723,1331879,0.003342,0.004605,8587462,7411541,0,0,25252,0,1,1 +1773563987.525686,0.65,4,3992.50,58.78,1370.02,2301.19,0.00,0.000000,0.183061,615723,1331892,0.003979,0.005878,8587587,7411659,0,0,25254,0,1,1 +1773563992.522549,0.75,4,3992.50,58.57,1378.10,2293.14,0.00,3520645437503.712402,3520645436488.037109,11,0,0.003897,0.006043,8587706,7411778,0,0,25257,0,1,1 +1773563997.524418,0.65,4,3992.50,58.58,1377.89,2293.35,0.00,0.000000,0.000000,11,0,0.003306,0.004801,8587802,7411874,0,0,25259,0,1,1 +1773564002.523620,1.15,4,3992.50,58.83,1363.02,2303.38,0.00,0.000000,0.000000,11,0,0.003697,0.005726,8587917,7411989,0,0,25262,0,1,1 +1773564007.521702,0.65,4,3992.50,58.84,1362.80,2303.59,0.00,1.656788,10.679292,251,190,0.003758,0.006516,8588034,7412110,0,0,25264,0,1,1 +1773564012.521704,0.60,4,3992.50,58.84,1362.82,2303.59,0.00,3518435909171.318848,3518435909162.300293,11,0,0.002833,0.004223,8588120,7412194,0,0,25266,0,1,1 +1773564017.521712,0.70,4,3992.50,58.84,1362.83,2303.57,0.00,8214.013688,9229.371678,615723,1332149,0.003700,0.005840,8588235,7412309,0,0,25269,0,1,1 +1773564022.521788,0.55,4,3992.50,58.84,1362.84,2303.55,0.00,3518383593171.407715,3518383592154.051270,246,2,0.003636,0.005270,8588345,7412416,0,0,25272,0,1,1 +1773564027.526038,0.65,4,3992.50,58.84,1362.85,2303.54,0.00,3515449023073.660156,3515449023075.670898,11,0,0.002972,0.004974,8588440,7412513,0,0,25274,0,1,1 +1773564032.522141,1.05,4,3992.50,58.93,1361.08,2307.20,0.00,8210.863007,9226.005685,614234,1332058,0.003901,0.005871,8588559,7412630,0,0,25277,0,1,1 +1773564037.526096,8.84,4,3992.50,58.72,1369.00,2298.93,0.00,3515656350256.164551,3515656349242.434570,205,0,5.972005,0.066177,8593984,7416306,0,0,25279,0,1,1 +1773564042.525116,8.66,4,3992.50,58.76,1367.15,2300.73,0.00,3519126716307.323242,0.000000,11,0,12.278561,0.112702,8604282,7423811,0,0,25282,0,1,1 +1773564047.525645,10.86,4,3992.50,59.25,1348.00,2319.88,0.00,0.000000,0.000000,11,0,16.959089,0.151410,8618937,7433871,0,0,25284,0,1,1 +1773564052.522591,3.62,4,3992.50,59.36,1343.68,2324.17,0.00,0.180384,0.000000,205,0,5.330288,0.053803,8623143,7437342,0,0,25286,0,1,1 +1773564057.521717,1.50,4,3992.50,58.43,1380.07,2287.80,0.00,3519052436374.745117,0.000000,11,0,0.003692,0.005615,8623255,7437452,0,0,25289,0,1,1 +1773564062.523234,0.75,4,3992.50,58.52,1376.64,2291.21,0.00,0.000000,0.000000,11,0,0.002816,0.003480,8623336,7437529,0,0,25292,0,1,1 +1773564067.521810,1.10,4,3992.50,58.72,1357.98,2299.21,0.00,8216.365571,9233.391923,615723,1333737,0.003901,0.005819,8623456,7437642,0,0,25294,0,1,1 +1773564072.524942,0.65,4,3992.50,58.73,1357.77,2299.42,0.00,3516234520252.857910,3516234519236.577148,205,0,0.002401,0.004856,8623530,7437730,0,0,25297,0,1,1 +1773564077.526582,0.70,4,3992.50,58.74,1357.54,2299.64,0.00,1.831431,0.000195,246,2,0.003926,0.005904,8623652,7437849,0,0,25299,0,1,1 +1773564082.521856,0.65,4,3992.50,58.75,1357.07,2300.12,0.00,8210.210970,9229.109629,614234,1333834,0.003642,0.005664,8623761,7437962,0,0,25302,0,1,1 +1773564087.524501,0.65,4,3992.50,58.75,1357.07,2300.11,0.00,9.556469,10.700590,615723,1334066,0.003613,0.006090,8623853,7438084,0,0,25304,0,1,1 +1773564092.525409,1.05,4,3992.50,58.84,1353.76,2303.75,0.00,3517797670682.776367,3517797669674.910645,251,190,0.003877,0.007121,8623953,7438224,0,0,25306,0,1,1 +1773564097.522567,0.75,4,3992.50,58.74,1357.64,2299.88,0.00,0.356355,3520438750099.367188,246,2,0.003274,0.006886,8624042,7438357,0,0,25309,0,1,1 +1773564102.522583,0.60,4,3992.50,58.58,1363.84,2293.67,0.00,3518425735294.864746,3518425735296.877441,11,0,0.003420,0.005865,8624128,7438474,0,0,25312,0,1,1 +1773564107.526550,0.70,4,3992.50,58.58,1363.85,2293.66,0.00,8197.960667,9213.302749,614234,1334064,0.003875,0.007117,8624228,7438614,0,0,25314,0,1,1 +1773564112.526391,0.60,4,3992.50,58.58,1363.87,2293.64,0.00,3518549303770.683594,3518549302754.503906,11,0,0.003878,0.007133,8624328,7438755,0,0,25317,0,1,1 +1773564117.526543,19.14,4,3992.50,60.14,1302.93,2354.50,0.00,0.000000,0.000000,11,0,24.218262,0.115675,8632377,7444610,0,0,25319,0,1,1 +1773564122.526061,11.19,4,3992.50,59.50,1331.32,2329.59,0.00,0.053521,0.000000,75,0,16.042483,0.071270,8637501,7448424,0,0,25321,0,1,1 +1773564127.526017,0.75,4,3992.50,59.31,1338.64,2322.20,0.00,8214.044084,9232.547923,615723,1335711,0.003873,0.007140,8637601,7448566,0,0,25324,0,1,1 +1773564132.526001,0.70,4,3992.50,59.12,1346.20,2314.64,0.00,0.000000,0.008594,615723,1335721,0.003408,0.005843,8637686,7448681,0,0,25326,0,1,1 +1773564137.521702,0.70,4,3992.50,59.13,1345.75,2315.09,0.00,3521464832178.331543,3521464831156.991211,246,2,0.003881,0.007783,8637786,7448826,0,0,25329,0,1,1 +1773564142.524939,1.15,4,3992.50,59.13,1345.77,2315.07,0.00,8206.701352,9226.556358,615723,1335777,0.003876,0.007115,8637886,7448966,0,0,25332,0,1,1 +1773564147.521696,0.80,4,3992.50,59.15,1345.04,2315.80,0.00,3520720508329.123047,3520720507318.983887,251,190,0.003868,0.007127,8637985,7449106,0,0,25334,0,1,1 +1773564152.521725,1.05,4,3992.50,58.89,1358.60,2305.52,0.00,3518417008945.865234,3518417008936.792969,75,0,0.003420,0.005852,8638071,7449222,0,0,25337,0,1,1 +1773564157.525840,0.85,4,3992.50,58.90,1358.18,2305.96,0.00,8197.662550,9214.613997,614234,1335753,0.004983,0.007723,8638193,7449375,0,0,25339,0,1,1 +1773564162.526294,0.90,4,3992.50,58.90,1358.20,2305.95,0.00,3518117889966.610840,3518117888948.787598,205,0,0.005611,0.008455,8638318,7449531,0,0,25342,0,1,1 +1773564167.525942,0.65,4,3992.50,58.90,1358.21,2305.93,0.00,8204.861918,9222.901998,614234,1335807,0.003878,0.007123,8638418,7449671,0,0,25344,0,1,1 +1773564172.525702,0.60,4,3992.50,58.90,1358.22,2305.93,0.00,3518606037470.838379,3518606036453.000977,11,0,0.003670,0.006485,8638513,7449799,0,0,25346,0,1,1 +1773564177.524726,0.85,4,3992.50,58.91,1357.80,2306.35,0.00,0.180309,0.000000,205,0,0.003650,0.006513,8638606,7449929,0,0,25349,0,1,1 +1773564182.525987,1.55,4,3992.50,58.55,1371.61,2292.52,0.00,8202.214709,9220.213660,614234,1335991,0.010321,0.008128,8638806,7450119,0,0,25352,0,1,1 +1773564187.525710,6.12,4,3992.50,58.88,1355.61,2305.10,0.00,3518632010445.732910,3518632009425.588867,246,2,2.033821,0.023384,8639786,7450849,0,0,25354,0,1,1 +1773564192.526100,23.70,4,3992.50,59.56,1328.83,2331.75,0.00,3518163015921.113770,3518163015923.125977,11,0,38.216292,0.161457,8651846,7459918,0,0,25357,0,1,1 +1773564197.525551,0.80,4,3992.50,59.59,1327.38,2333.20,0.00,0.000000,0.000000,11,0,0.003650,0.006477,8651939,7460045,0,0,25359,0,1,1 +1773564202.521775,0.75,4,3992.50,59.41,1334.55,2326.03,0.00,8210.665160,9230.510483,614234,1337240,0.003664,0.007179,8652033,7460180,0,0,25362,0,1,1 +1773564207.521712,0.65,4,3992.50,59.20,1342.73,2317.84,0.00,3518481217582.464355,3518481216563.376465,11,0,0.003903,0.007141,8652135,7460321,0,0,25364,0,1,1 +1773564212.526258,1.15,4,3992.50,59.40,1339.22,2325.83,0.00,0.000000,0.000000,11,0,0.003849,0.007116,8652233,7460461,0,0,25366,0,1,1 +1773564217.526378,0.70,4,3992.50,59.23,1340.86,2319.17,0.00,8213.829164,9234.393517,615723,1337673,0.003636,0.006486,8652325,7460589,0,0,25369,0,1,1 +1773564222.522658,0.75,4,3992.50,59.23,1340.88,2319.15,0.00,3521056974556.514648,3521056974555.475098,614234,1337534,0.003660,0.006524,8652419,7460720,0,0,25372,0,1,1 +1773564227.522490,0.95,4,3992.50,59.24,1340.64,2319.38,0.00,3518555146165.843750,3518555145146.206543,75,0,0.003866,0.007110,8652518,7460859,0,0,25374,0,1,1 +1773564232.523594,0.60,4,3992.50,59.24,1340.66,2319.36,0.00,0.126730,0.000000,205,0,0.004547,0.008040,8652621,7461001,0,0,25377,0,1,1 +1773564237.525637,0.75,4,3992.50,58.33,1376.46,2283.56,0.00,1.475276,10.670835,251,190,0.003406,0.005853,8652706,7461117,0,0,25379,0,1,1 +1773564242.525542,1.05,4,3992.50,58.64,1369.49,2296.05,0.00,3518503752935.621582,3518503752926.602539,11,0,0.003878,0.007132,8652806,7461258,0,0,25382,0,1,1 +1773564247.523704,0.65,4,3992.50,58.65,1369.29,2296.26,0.00,8207.482411,9227.633346,614234,1337749,0.004175,0.007667,8652912,7461408,0,0,25384,0,1,1 +1773564252.525809,0.80,4,3992.50,58.67,1368.56,2296.98,0.00,0.000000,0.012885,614234,1337763,0.004081,0.007651,8653019,7461559,0,0,25386,0,1,1 +1773564257.525297,1.70,4,3992.50,58.63,1370.06,2295.49,0.00,3518797591001.689941,3518797589981.796875,11,0,0.010683,0.009623,8653230,7461763,0,0,25389,0,1,1 +1773564262.526439,21.38,4,3992.50,59.30,1343.97,2321.67,0.00,0.000000,0.000000,11,0,28.193790,0.132884,8662410,7468591,0,0,25392,0,1,1 +1773564267.525536,6.58,4,3992.50,59.06,1353.18,2312.43,0.00,0.053525,0.000000,75,0,8.066245,0.034209,8664952,7470495,0,0,25394,0,1,1 +1773564272.526636,3.56,4,3992.50,58.91,1358.52,2306.49,0.00,3517662890374.728516,0.000000,11,0,3.987965,0.021385,8666263,7471508,0,0,25397,0,1,1 +1773564277.525806,0.80,4,3992.50,58.84,1360.82,2303.72,0.00,0.053525,0.000000,75,0,0.003891,0.007124,8666364,7471648,0,0,25399,0,1,1 +1773564282.526304,0.75,4,3992.50,58.84,1360.81,2303.73,0.00,3518086779295.234375,0.000000,11,0,0.003878,0.007132,8666464,7471789,0,0,25402,0,1,1 +1773564287.521791,0.70,4,3992.50,58.88,1359.11,2305.43,0.00,0.000000,0.000000,11,0,0.003423,0.005860,8666550,7471905,0,0,25404,0,1,1 +1773564292.522836,0.70,4,3992.50,58.88,1359.35,2305.20,0.00,0.000000,0.000000,11,0,0.003916,0.007154,8666653,7472048,0,0,25406,0,1,1 +1773564297.522570,0.70,4,3992.50,58.88,1359.14,2305.39,0.00,0.053518,0.000000,75,0,0.003909,0.007158,8666755,7472191,0,0,25409,0,1,1 +1773564302.525961,1.25,4,3992.50,58.93,1357.55,2307.12,0.00,0.126672,0.000000,205,0,0.003875,0.007128,8666855,7472332,0,0,25412,0,1,1 +1773564307.521815,0.85,4,3992.50,58.65,1368.12,2296.42,0.00,1.477104,10.684056,251,190,0.003423,0.005860,8666941,7472448,0,0,25414,0,1,1 +1773564312.526500,1.75,4,3992.50,58.43,1376.84,2287.71,0.00,0.355819,3515142965926.920410,246,2,0.003874,0.007126,8667041,7472589,0,0,25417,0,1,1 +1773564317.525769,0.80,4,3992.50,58.47,1375.40,2289.16,0.00,0.000000,0.000000,246,2,0.003879,0.007111,8667141,7472728,0,0,25419,0,1,1 +1773564322.522684,0.85,4,3992.50,58.49,1374.64,2289.91,0.00,3520609243120.937012,3520609243122.770020,205,0,0.003888,0.007145,8667242,7472870,0,0,25422,0,1,1 +1773564327.526467,0.80,4,3992.50,58.32,1381.07,2283.48,0.00,1.474763,10.667124,251,190,0.003418,0.005851,8667328,7472986,0,0,25424,0,1,1 +1773564332.525801,6.78,4,3992.50,59.20,1335.77,2317.64,0.00,8203.899999,9216.640954,614234,1339755,4.231735,0.031600,8668879,7474222,0,0,25426,0,1,1 +1773564337.526244,21.02,4,3992.50,59.18,1336.28,2317.03,0.00,0.005468,0.394106,614236,1340600,32.177251,0.145865,8679321,7482117,0,0,25429,0,1,1 +1773564342.525583,3.06,4,3992.50,58.39,1367.03,2286.26,0.00,3518901778055.788574,3518901777033.586426,75,0,3.851484,0.018360,8680595,7483042,0,0,25432,0,1,1 +1773564347.526432,1.00,4,3992.50,58.18,1375.32,2277.99,0.00,1.602365,10.673383,251,190,0.003865,0.007121,8680694,7483182,0,0,25434,0,1,1 +1773564352.526611,0.85,4,3992.50,58.20,1374.68,2278.64,0.00,8202.520343,9216.141151,614236,1340935,0.003096,0.006749,8680780,7483314,0,0,25437,0,1,1 +1773564357.526374,0.85,4,3992.50,58.22,1373.96,2279.35,0.00,3518603703820.878418,3518603702798.153809,11,0,0.003428,0.005851,8680867,7483430,0,0,25439,0,1,1 +1773564362.521700,1.20,4,3992.50,58.65,1356.37,2296.46,0.00,0.053566,0.000000,75,0,0.003869,0.007139,8680966,7483571,0,0,25442,0,1,1 +1773564367.521714,0.95,4,3992.50,58.58,1359.35,2293.41,0.00,1.958784,0.000195,246,2,0.003878,0.007122,8681066,7483711,0,0,25444,0,1,1 +1773564372.526549,0.85,4,3992.50,58.56,1359.85,2292.91,0.00,3515038531482.244141,3515038531484.254395,11,0,0.003874,0.007103,8681166,7483850,0,0,25446,0,1,1 +1773564377.522575,0.80,4,3992.50,58.56,1360.06,2292.70,0.00,0.000000,0.000000,11,0,0.003423,0.005870,8681252,7483967,0,0,25449,0,1,1 +1773564382.521698,0.85,4,3992.50,58.56,1360.07,2292.69,0.00,0.180305,0.000000,205,0,0.003879,0.007134,8681352,7484108,0,0,25452,0,1,1 +1773564387.521703,0.90,4,3992.50,58.56,1360.09,2292.67,0.00,1.832029,0.000195,246,2,0.003886,0.007130,8681453,7484249,0,0,25454,0,1,1 +1773564392.521761,1.30,4,3992.50,58.80,1353.13,2301.98,0.00,8211.923410,9238.167831,615725,1341489,0.003865,0.007132,8681552,7484390,0,0,25457,0,1,1 +1773564397.526251,1.05,4,3992.50,58.80,1353.14,2301.96,0.00,3515280572221.776855,3515280571198.451660,11,0,0.003417,0.006481,8681638,7484509,0,0,25459,0,1,1 +1773564402.521704,0.80,4,3992.50,58.60,1360.79,2294.31,0.00,8221.508751,9246.772104,615725,1341581,0.003869,0.007139,8681737,7484650,0,0,25462,0,1,1 +1773564407.526587,11.58,4,3992.50,59.22,1336.52,2318.55,0.00,3515003881964.429688,3515003880939.087891,246,2,12.113219,0.063356,8685879,7487676,0,0,25464,0,1,1 +1773564412.523284,17.04,4,3992.50,59.58,1322.12,2332.85,0.00,3520763471663.376465,3520763471665.390137,11,0,28.158553,0.128787,8695093,7494727,0,0,25466,0,1,1 +1773564417.523566,1.15,4,3992.50,59.40,1329.20,2325.78,0.00,0.000000,0.000000,11,0,0.003428,0.005873,8695180,7494845,0,0,25469,0,1,1 +1773564422.526336,1.30,4,3992.50,59.14,1345.48,2315.56,0.00,0.000000,0.000000,11,0,0.002948,0.004595,8695251,7494938,0,0,25472,0,1,1 +1773564427.525566,0.95,4,3992.50,59.14,1345.80,2315.27,0.00,2.012615,0.000195,246,2,0.003879,0.007124,8695351,7495078,0,0,25474,0,1,1 +1773564432.525387,0.80,4,3992.50,59.14,1345.57,2315.50,0.00,3518562752607.625488,3518562752609.637695,11,0,0.003878,0.007133,8695451,7495219,0,0,25477,0,1,1 +1773564437.525866,1.00,4,3992.50,59.09,1347.43,2313.64,0.00,0.180256,0.000000,205,0,0.003878,0.007122,8695551,7495359,0,0,25479,0,1,1 +1773564442.525898,1.50,4,3992.50,59.09,1347.70,2313.37,0.00,3518414466555.590820,0.000000,11,0,0.003433,0.005865,8695638,7495476,0,0,25482,0,1,1 +1773564447.526033,1.65,4,3992.50,59.02,1350.46,2310.61,0.00,0.000000,0.000000,11,0,0.003865,0.007122,8695737,7495616,0,0,25484,0,1,1 +1773564452.525685,1.25,4,3992.50,59.22,1342.64,2318.43,0.00,0.180286,0.000000,205,0,0.003886,0.007131,8695838,7495757,0,0,25486,0,1,1 +1773564457.523576,1.00,4,3992.50,59.08,1347.89,2313.20,0.00,3519921364718.932129,0.000000,75,0,0.004977,0.007743,8695959,7495911,0,0,25489,0,1,1 +1773564462.521743,0.85,4,3992.50,59.08,1347.90,2313.18,0.00,0.126804,0.000000,205,0,0.004486,0.006913,8696067,7496045,0,0,25492,0,1,1 +1773564467.521739,0.90,4,3992.50,59.08,1347.91,2313.16,0.00,8213.856346,9240.028611,615725,1343392,0.003878,0.007122,8696167,7496185,0,0,25494,0,1,1 +1773564472.521715,1.00,4,3992.50,59.07,1348.20,2312.89,0.00,3518454545002.872559,3518454545001.797852,614236,1343246,0.003878,0.007120,8696267,7496325,0,0,25497,0,1,1 +1773564477.526204,15.36,4,3992.50,59.78,1320.30,2340.70,0.00,3515280931170.723145,3515280930146.726562,11,0,20.118120,0.098541,8702987,7501311,0,0,25499,0,1,1 +1773564482.522650,13.75,4,3992.50,59.46,1333.04,2327.98,0.00,8210.306447,9236.837394,614236,1344363,20.142253,0.092635,8709667,7506332,0,0,25502,0,1,1 +1773564487.522650,1.00,4,3992.50,59.28,1339.94,2321.06,0.00,0.000000,0.180273,614236,1344571,0.003420,0.005855,8709753,7506448,0,0,25504,0,1,1 +1773564492.521738,0.80,4,3992.50,59.29,1339.71,2321.30,0.00,3519078949769.431641,3519078948743.262695,11,0,0.003879,0.007124,8709853,7506588,0,0,25506,0,1,1 +1773564497.524666,0.95,4,3992.50,59.23,1342.13,2318.88,0.00,8209.222930,9235.865463,615725,1344922,0.004797,0.007785,8709955,7506731,0,0,25509,0,1,1 +1773564502.526378,0.85,4,3992.50,59.23,1342.07,2318.93,0.00,3517232806597.850586,3517232805570.904785,75,0,0.003877,0.007161,8710055,7506874,0,0,25512,0,1,1 +1773564507.523884,0.90,4,3992.50,59.04,1349.52,2311.49,0.00,1.959767,0.000195,246,2,0.002841,0.005652,8710132,7506985,0,0,25514,0,1,1 +1773564512.525832,1.25,4,3992.50,59.23,1342.24,2319.07,0.00,3517066882250.047852,10.670842,251,190,0.003877,0.007130,8710232,7507126,0,0,25517,0,1,1 +1773564517.526406,0.85,4,3992.50,59.02,1350.11,2310.90,0.00,0.000000,0.000000,251,190,0.003428,0.005863,8710319,7507243,0,0,25519,0,1,1 +1773564522.526198,0.95,4,3992.50,58.94,1353.57,2307.44,0.00,0.356167,3518583640360.452637,246,2,0.003420,0.005853,8710405,7507359,0,0,25522,0,1,1 +1773564527.523942,1.05,4,3992.50,58.93,1353.59,2307.43,0.00,3520025240814.040039,10.679818,251,190,0.003409,0.006341,8710490,7507478,0,0,25524,0,1,1 +1773564532.526086,0.85,4,3992.50,58.95,1353.14,2307.87,0.00,8199.298613,9216.357250,614236,1344974,0.003876,0.007280,8710590,7507619,0,0,25526,0,1,1 +1773564537.525707,0.90,4,3992.50,58.97,1352.18,2308.83,0.00,0.000000,0.044632,614236,1345015,0.004535,0.008055,8710692,7507762,0,0,25529,0,1,1 +1773564542.526425,1.40,4,3992.50,59.17,1341.89,2316.66,0.00,3517932075587.491211,3517932074560.900391,205,0,0.003865,0.007131,8710791,7507903,0,0,25532,0,1,1 +1773564547.524465,20.31,4,3992.50,59.40,1331.62,2325.46,0.00,3519817158831.901367,0.000000,75,0,28.193819,0.130490,8720134,7514744,0,0,25534,0,1,1 +1773564552.526508,8.02,4,3992.50,58.88,1351.67,2305.41,0.00,1.957989,0.000195,246,2,12.078768,0.063831,8724322,7517965,0,0,25537,0,1,1 +1773564557.525762,0.85,4,3992.50,58.90,1351.19,2305.89,0.00,3518962187366.667480,3518962187368.499512,205,0,0.003708,0.006423,8724413,7518093,0,0,25539,0,1,1 +1773564562.526263,0.95,4,3992.50,58.86,1352.68,2304.41,0.00,3518084110742.363770,0.000000,75,0,0.004074,0.007654,8724519,7518244,0,0,25541,0,1,1 +1773564567.526349,0.90,4,3992.50,58.90,1350.97,2306.11,0.00,1.602609,10.675012,251,190,0.003878,0.007132,8724619,7518385,0,0,25544,0,1,1 +1773564572.525764,1.25,4,3992.50,58.84,1353.32,2303.80,0.00,3518849228826.437500,3518849228817.417480,11,0,0.003886,0.007119,8724720,7518525,0,0,25546,0,1,1 +1773564577.521865,0.90,4,3992.50,58.80,1354.97,2302.10,0.00,0.053557,0.000000,75,0,0.003423,0.005882,8724806,7518643,0,0,25549,0,1,1 +1773564582.526599,1.75,4,3992.50,58.35,1372.72,2284.36,0.00,1.601121,10.665096,251,190,0.003874,0.007126,8724906,7518784,0,0,25552,0,1,1 +1773564587.525247,0.80,4,3992.50,58.39,1370.82,2286.27,0.00,8205.042329,9224.199555,614239,1346498,0.003879,0.007124,8725006,7518924,0,0,25554,0,1,1 +1773564592.525055,0.90,4,3992.50,58.39,1370.83,2286.26,0.00,3518571976763.486816,3518571975735.493164,75,0,0.003909,0.007789,8725108,7519070,0,0,25557,0,1,1 +1773564597.525722,0.80,4,3992.50,58.39,1370.84,2286.23,0.00,0.000000,0.000000,75,0,0.003459,0.005900,8725197,7519190,0,0,25559,0,1,1 +1773564602.523676,1.35,4,3992.50,59.00,1347.96,2310.05,0.00,1.959591,0.000195,246,2,0.003880,0.007135,8725297,7519331,0,0,25562,0,1,1 +1773564607.524378,0.80,4,3992.50,58.94,1349.59,2307.59,0.00,3517943816557.326660,3517943816559.338867,11,0,0.003877,0.007121,8725397,7519471,0,0,25564,0,1,1 +1773564612.525739,2.00,4,3992.50,58.56,1364.25,2292.92,0.00,0.053501,0.000000,75,0,0.010933,0.011049,8725621,7519695,0,0,25566,0,1,1 +1773564617.526550,18.00,4,3992.50,58.96,1348.62,2308.46,0.00,3517867254584.160156,0.000000,11,0,26.164123,0.120081,8734201,7526098,0,0,25569,0,1,1 +1773564622.522558,9.45,4,3992.50,59.91,1311.28,2345.80,0.00,0.053558,0.000000,75,0,12.070130,0.048123,8737696,7528695,0,0,25572,0,1,1 +1773564627.524559,2.76,4,3992.50,59.00,1347.29,2309.78,0.00,3517029751959.106445,0.000000,11,0,2.024485,0.018148,8738606,7529425,0,0,25574,0,1,1 +1773564632.521972,1.35,4,3992.50,59.04,1345.50,2311.70,0.00,0.000000,0.000000,11,0,0.003880,0.007136,8738706,7529566,0,0,25577,0,1,1 +1773564637.523009,0.80,4,3992.50,59.09,1343.48,2313.54,0.00,8212.337757,9242.722063,615728,1348396,0.003890,0.007121,8738807,7529706,0,0,25579,0,1,1 +1773564642.523957,0.95,4,3992.50,58.90,1351.11,2305.91,0.00,3517769817120.561523,3517769816088.146973,246,2,0.003420,0.005864,8738893,7529823,0,0,25582,0,1,1 +1773564647.521708,0.75,4,3992.50,58.90,1350.86,2306.14,0.00,3520020317602.965332,3520020317604.924805,75,0,0.003880,0.007126,8738993,7529963,0,0,25584,0,1,1 +1773564652.523180,0.90,4,3992.50,58.89,1351.24,2305.79,0.00,8211.569091,9242.032172,615728,1348531,0.003885,0.007128,8739094,7530104,0,0,25586,0,1,1 +1773564657.523458,0.95,4,3992.50,58.89,1351.27,2305.76,0.00,3518241557588.977051,3518241556558.321289,11,0,0.003878,0.007763,8739194,7530248,0,0,25589,0,1,1 +1773564662.526064,1.05,4,3992.50,58.89,1348.77,2305.69,0.00,0.053488,0.000000,75,0,0.003418,0.005862,8739280,7530365,0,0,25592,0,1,1 +1773564667.524958,1.00,4,3992.50,58.54,1362.36,2292.11,0.00,8215.805511,9247.122945,615728,1348850,0.003879,0.007111,8739380,7530504,0,0,25594,0,1,1 +1773564672.524203,0.75,4,3992.50,58.36,1369.56,2284.91,0.00,3518968382614.027832,3518968381591.857422,251,190,0.003879,0.007133,8739480,7530645,0,0,25597,0,1,1 +1773564677.525660,1.00,4,3992.50,58.39,1368.48,2285.98,0.00,0.356049,3517412077413.105469,246,2,0.003877,0.007108,8739580,7530784,0,0,25599,0,1,1 +1773564682.521723,0.90,4,3992.50,58.33,1370.57,2283.89,0.00,3521210155540.678223,3521210155542.511719,205,0,0.003431,0.005878,8739667,7530902,0,0,25602,0,1,1 +1773564687.525208,5.32,4,3992.50,58.76,1353.78,2300.65,0.00,1.474851,10.667759,251,190,2.030256,0.026235,8740780,7531816,0,0,25604,0,1,1 +1773564692.525536,17.87,4,3992.50,59.32,1331.59,2322.46,0.00,3518206503897.513672,3518206503888.315430,205,0,28.184119,0.144543,8751442,7540250,0,0,25606,0,1,1 +1773564697.526315,5.47,4,3992.50,59.13,1338.98,2315.04,0.00,3517888985285.019531,0.000000,11,0,8.054640,0.039875,8754508,7542655,0,0,25609,0,1,1 +1773564702.521793,2.36,4,3992.50,58.41,1367.30,2286.71,0.00,0.000000,0.000000,11,0,2.018861,0.016234,8755368,7543357,0,0,25612,0,1,1 +1773564707.521709,0.85,4,3992.50,58.47,1364.64,2289.39,0.00,0.000000,0.000000,11,0,0.003403,0.005876,8755453,7543475,0,0,25614,0,1,1 +1773564712.526391,0.95,4,3992.50,58.49,1363.91,2290.12,0.00,0.000000,0.000000,11,0,0.003674,0.006967,8755548,7543613,0,0,25617,0,1,1 +1773564717.526594,1.75,4,3992.50,58.41,1367.09,2286.96,0.00,0.000000,0.000000,11,0,0.003395,0.005855,8755632,7543729,0,0,25619,0,1,1 +1773564722.525765,1.20,4,3992.50,58.65,1359.31,2296.39,0.00,1.656427,10.676965,251,190,0.003866,0.007755,8755731,7543872,0,0,25621,0,1,1 +1773564727.521793,0.95,4,3992.50,58.65,1359.36,2296.32,0.00,3521234224524.888672,3521234224515.862793,11,0,0.003423,0.005870,8755817,7543989,0,0,25624,0,1,1 +1773564732.526628,0.95,4,3992.50,58.66,1358.89,2296.79,0.00,0.053464,0.000000,75,0,0.003882,0.007098,8755918,7544128,0,0,25626,0,1,1 +1773564737.526460,0.85,4,3992.50,58.66,1358.90,2296.78,0.00,3518555602649.486816,0.000000,11,0,0.003408,0.005865,8756003,7544245,0,0,25629,0,1,1 +1773564742.522081,0.90,4,3992.50,58.66,1358.92,2296.77,0.00,8211.696142,9244.215602,614240,1350449,0.003844,0.007126,8756100,7544385,0,0,25632,0,1,1 +1773564747.526051,0.85,4,3992.50,58.66,1358.93,2296.76,0.00,3515645673247.896484,3515645672217.099609,11,0,0.003418,0.005825,8756186,7544499,0,0,25634,0,1,1 +1773564752.521703,1.25,4,3992.50,58.86,1351.35,2304.34,0.00,0.053562,0.000000,75,0,0.003831,0.007126,8756282,7544639,0,0,25637,0,1,1 +1773564757.523267,1.00,4,3992.50,58.71,1356.91,2298.75,0.00,3517337212319.649414,0.000000,11,0,0.004403,0.006986,8756378,7544760,0,0,25639,0,1,1 +1773564762.526233,8.68,4,3992.50,59.43,1328.77,2326.84,0.00,8199.639147,9230.925427,614240,1350867,6.101067,0.047210,8759105,7546890,0,0,25642,0,1,1 +1773564767.526207,17.52,4,3992.50,59.87,1311.36,2344.18,0.00,3518455369278.532227,3518455368246.628418,11,0,30.146162,0.148406,8770258,7555791,0,0,25644,0,1,1 +1773564772.521785,3.61,4,3992.50,58.63,1360.05,2295.50,0.00,1.657618,10.684646,251,190,4.031963,0.019541,8771805,7556904,0,0,25646,0,1,1 +1773564777.521770,1.95,4,3992.50,58.59,1361.51,2294.04,0.00,3518447929592.565918,3518447929583.366699,205,0,0.013936,0.012303,8772086,7557169,0,0,25649,0,1,1 +1773564782.521792,1.20,4,3992.50,59.00,1346.17,2309.95,0.00,8204.286680,9237.329964,614240,1351951,0.003408,0.005878,8772171,7557287,0,0,25652,0,1,1 +1773564787.526314,0.85,4,3992.50,58.77,1354.59,2301.03,0.00,3515258475473.372070,3515258474441.437500,11,0,0.003629,0.007109,8772263,7557418,0,0,25654,0,1,1 +1773564792.522980,0.85,4,3992.50,58.77,1354.60,2301.00,0.00,8219.544794,9254.227107,615729,1352160,0.003626,0.006490,8772354,7557546,0,0,25657,0,1,1 +1773564797.526011,0.90,4,3992.50,58.78,1354.38,2301.23,0.00,3516305526944.720703,3516305525911.174316,205,0,0.004289,0.006533,8772438,7557666,0,0,25659,0,1,1 +1773564802.525931,1.00,4,3992.50,58.78,1354.16,2301.46,0.00,1.475903,10.675367,251,190,0.003853,0.007141,8772536,7557807,0,0,25661,0,1,1 +1773564807.526378,0.80,4,3992.50,58.59,1361.82,2293.80,0.00,8211.676130,9236.810764,615729,1352295,0.003445,0.005858,8772624,7557923,0,0,25664,0,1,1 +1773564812.526025,1.30,4,3992.50,58.79,1356.63,2301.83,0.00,0.000000,0.089362,615729,1352348,0.003853,0.007110,8772722,7558062,0,0,25666,0,1,1 +1773564817.526597,0.80,4,3992.50,58.48,1366.02,2289.54,0.00,3518034640410.527832,3518034639374.299805,246,2,0.003370,0.005852,8772804,7558178,0,0,25669,0,1,1 +1773564822.525299,0.90,4,3992.50,58.50,1365.29,2290.27,0.00,8204.621928,9240.364966,614240,1352443,0.003829,0.007109,8772900,7558317,0,0,25672,0,1,1 +1773564827.526212,1.10,4,3992.50,58.50,1365.32,2290.25,0.00,3517794516507.956055,3517794515472.671387,246,2,0.003402,0.005850,8772985,7558433,0,0,25674,0,1,1 +1773564832.521736,0.95,4,3992.50,58.47,1366.18,2289.38,0.00,0.000000,0.000000,246,2,0.003869,0.007139,8773084,7558574,0,0,25677,0,1,1 +1773564837.523859,12.42,4,3992.50,59.19,1338.13,2317.39,0.00,0.000000,0.000000,246,2,12.095174,0.075281,8777939,7562351,0,0,25679,0,1,1 +1773564842.526167,16.81,4,3992.50,59.17,1354.38,2316.46,0.00,3516813470077.632812,3516813470079.644531,11,0,28.165164,0.139313,8788464,7570728,0,0,25682,0,1,1 +1773564847.525384,1.40,4,3992.50,59.20,1351.01,2317.85,0.00,8205.789500,9240.550528,614240,1353765,0.009867,0.009274,8788669,7570926,0,0,25684,0,1,1 +1773564852.525844,0.65,4,3992.50,59.19,1351.57,2317.32,0.00,3518113373118.776855,3518113372084.272949,11,0,0.004063,0.005789,8788748,7571032,0,0,25686,0,1,1 +1773564857.526141,0.70,4,3992.50,59.16,1352.80,2316.07,0.00,2.012185,0.000195,246,2,0.004002,0.008067,8788849,7571180,0,0,25689,0,1,1 +1773564862.521786,0.70,4,3992.50,59.09,1355.43,2313.46,0.00,3521504025462.792969,3521504025464.807129,11,0,0.003732,0.006629,8788941,7571313,0,0,25692,0,1,1 +1773564867.526223,0.65,4,3992.50,59.13,1353.75,2315.13,0.00,0.000000,0.000000,11,0,0.003608,0.006458,8789031,7571439,0,0,25694,0,1,1 +1773564872.526214,1.15,4,3992.50,59.53,1338.33,2330.55,0.00,0.053516,0.000000,75,0,0.003657,0.006519,8789125,7571570,0,0,25697,0,1,1 +1773564877.521798,0.70,4,3992.50,59.36,1344.91,2323.95,0.00,8221.273684,9258.404505,615729,1354339,0.003411,0.005848,8789210,7571685,0,0,25699,0,1,1 +1773564882.521792,1.65,4,3992.50,58.85,1364.81,2304.05,0.00,3518441231395.589355,3518441230359.246582,205,0,0.003840,0.007132,8789307,7571826,0,0,25702,0,1,1 +1773564887.521886,0.80,4,3992.50,58.87,1363.84,2305.02,0.00,3518371429410.829102,0.000000,75,0,0.003382,0.005855,8789390,7571942,0,0,25704,0,1,1 +1773564892.523714,0.70,4,3992.50,58.88,1363.61,2305.25,0.00,3517150820115.281250,0.000000,11,0,0.003870,0.007107,8789489,7572081,0,0,25706,0,1,1 +1773564897.522642,0.75,4,3992.50,58.88,1363.62,2305.25,0.00,1.656508,10.677486,251,190,0.003414,0.005758,8789574,7572199,0,0,25709,0,1,1 +1773564902.525762,1.05,4,3992.50,58.90,1363.86,2305.95,0.00,3516242879931.289062,3516242879922.095215,205,0,0.003700,0.007078,8789671,7572336,0,0,25712,0,1,1 +1773564907.526338,0.80,4,3992.50,58.89,1363.62,2305.62,0.00,1.475709,10.673966,251,190,0.003420,0.005855,8789757,7572452,0,0,25714,0,1,1 +1773564912.523822,14.57,4,3992.50,59.52,1338.97,2330.21,0.00,8206.978079,9233.811736,614240,1354636,16.142305,0.097959,8796205,7577654,0,0,25717,0,1,1 +1773564917.525963,14.37,4,3992.50,59.39,1343.83,2325.30,0.00,3516930757854.490234,3516930756819.597656,11,0,24.139706,0.122500,8805257,7584865,0,0,25719,0,1,1 +1773564922.526251,0.75,4,3992.50,59.29,1347.84,2321.28,0.00,0.180263,0.000000,205,0,0.003547,0.006056,8805346,7584987,0,0,25722,0,1,1 +1773564927.521707,0.75,4,3992.50,59.03,1357.83,2311.29,0.00,0.000000,0.000000,205,0,0.003719,0.006853,8805442,7585118,0,0,25724,0,1,1 +1773564932.521698,1.05,4,3992.50,59.16,1352.83,2316.25,0.00,3518443676486.185547,0.000000,11,0,0.003545,0.006093,8805529,7585240,0,0,25726,0,1,1 +1773564937.523561,0.70,4,3992.50,58.96,1360.63,2308.44,0.00,0.000000,0.000000,11,0,0.003623,0.006471,8805620,7585367,0,0,25729,0,1,1 +1773564942.525599,0.75,4,3992.50,58.97,1360.40,2308.66,0.00,1.655478,10.670845,251,190,0.003622,0.006496,8805711,7585496,0,0,25732,0,1,1 +1773564947.523233,0.65,4,3992.50,58.97,1360.40,2308.65,0.00,3520102747608.636719,3520102747599.613770,11,0,0.002614,0.005499,8805781,7585603,0,0,25734,0,1,1 +1773564952.526187,0.60,4,3992.50,58.97,1360.43,2308.63,0.00,8209.215129,9246.148260,615729,1355752,0.002994,0.004603,8805856,7585697,0,0,25737,0,1,1 +1773564957.524738,0.95,4,3992.50,58.96,1360.79,2308.28,0.00,3519457864324.376465,3519457864323.315918,614256,1355627,0.003854,0.007124,8805954,7585837,0,0,25739,0,1,1 +1773564962.525639,1.15,4,3992.50,59.05,1346.46,2312.06,0.00,9.559800,10.753432,615745,1355884,0.003420,0.005829,8806040,7585951,0,0,25741,0,1,1 +1773564967.526063,0.65,4,3992.50,59.02,1347.67,2310.82,0.00,3518138661034.118164,3518138661033.211426,614256,1355936,0.003878,0.007119,8806140,7586091,0,0,25744,0,1,1 +1773564972.525912,0.70,4,3992.50,59.01,1348.02,2310.46,0.00,3518543911784.137695,3518543910745.322266,246,2,0.003420,0.005830,8806226,7586205,0,0,25746,0,1,1 +1773564977.521720,0.80,4,3992.50,59.01,1348.04,2310.45,0.00,3521389497468.013184,10.683957,251,190,0.003843,0.007113,8806323,7586344,0,0,25749,0,1,1 +1773564982.521792,1.70,4,3992.50,58.81,1355.89,2302.59,0.00,0.356147,3518386322451.143555,246,2,0.008940,0.008612,8806500,7586517,0,0,25752,0,1,1 +1773564987.525570,18.38,4,3992.50,59.31,1336.40,2322.03,0.00,3515780811468.151367,3515780811470.162598,11,0,22.685067,0.124996,8815252,7593431,0,0,25754,0,1,1 +1773564992.521809,10.28,4,3992.50,59.00,1353.91,2310.12,0.00,2.013820,0.000195,246,2,17.588832,0.088670,8821849,7598633,0,0,25757,0,1,1 +1773564997.525665,0.80,4,3992.50,59.01,1352.07,2310.34,0.00,3515725635170.549316,3515725635172.560059,11,0,0.003862,0.007117,8821948,7598773,0,0,25759,0,1,1 +1773565002.525735,0.80,4,3992.50,59.01,1352.08,2310.34,0.00,0.053515,0.000000,75,0,0.003395,0.005865,8822032,7598890,0,0,25762,0,1,1 +1773565007.522297,0.75,4,3992.50,59.01,1351.86,2310.56,0.00,0.000000,0.000000,75,0,0.003868,0.007127,8822131,7599030,0,0,25764,0,1,1 +1773565012.523889,0.60,4,3992.50,59.01,1351.86,2310.56,0.00,3517317060877.646973,0.000000,11,0,0.003407,0.005828,8822216,7599144,0,0,25766,0,1,1 +1773565017.526191,0.80,4,3992.50,59.01,1351.88,2310.55,0.00,0.180190,0.000000,205,0,0.003851,0.007104,8822314,7599283,0,0,25769,0,1,1 +1773565022.526548,1.15,4,3992.50,58.94,1349.58,2307.73,0.00,1.831901,0.000195,246,2,0.003370,0.005840,8822396,7599398,0,0,25772,0,1,1 +1773565027.526191,0.80,4,3992.50,58.79,1355.64,2301.68,0.00,3518688787388.424316,3518688787390.382812,75,0,0.003841,0.007098,8822493,7599536,0,0,25774,0,1,1 +1773565032.521813,0.70,4,3992.50,58.83,1354.20,2303.13,0.00,8221.246244,9261.740475,615745,1357928,0.003373,0.005858,8822575,7599652,0,0,25777,0,1,1 +1773565037.526542,0.80,4,3992.50,58.82,1354.21,2303.11,0.00,3515112551679.122559,3515112550640.395020,205,0,0.003845,0.007099,8822673,7599791,0,0,25779,0,1,1 +1773565042.524201,0.65,4,3992.50,58.78,1355.93,2301.40,0.00,3520085257887.432617,0.000000,11,0,0.003397,0.005868,8822757,7599908,0,0,25782,0,1,1 +1773565047.526096,0.75,4,3992.50,58.79,1355.52,2301.80,0.00,8210.990091,9250.195721,615745,1358017,0.003839,0.007095,8822854,7600046,0,0,25784,0,1,1 +1773565052.522869,4.32,4,3992.50,59.07,1344.65,2312.57,0.00,3520708868111.049805,3520708868110.083984,614256,1357963,1.975462,0.022321,8823837,7600842,0,0,25786,0,1,1 +1773565057.523768,7.53,4,3992.50,58.84,1353.22,2303.79,0.00,3517804851337.571289,3517804850297.112305,246,2,8.113619,0.045290,8827063,7603377,0,0,25789,0,1,1 +1773565062.525560,11.42,4,3992.50,58.72,1358.11,2298.88,0.00,3517176889040.099121,10.671176,251,190,16.097650,0.083476,8833073,7608180,0,0,25792,0,1,1 +1773565067.526147,9.11,4,3992.50,59.46,1329.13,2327.80,0.00,3518024137966.623535,3518024137957.552246,75,0,14.097545,0.077022,8838525,7612497,0,0,25794,0,1,1 +1773565072.525774,0.90,4,3992.50,59.02,1346.32,2310.61,0.00,1.602756,10.675991,251,190,0.003421,0.005840,8838611,7612612,0,0,25797,0,1,1 +1773565077.526576,0.65,4,3992.50,58.93,1349.78,2307.15,0.00,3517873277613.105957,3517873277603.908203,205,0,0.003885,0.007117,8838712,7612752,0,0,25799,0,1,1 +1773565082.525065,1.00,4,3992.50,59.03,1348.31,2311.02,0.00,1.476325,10.678422,251,190,0.003396,0.005842,8838796,7612867,0,0,25802,0,1,1 +1773565087.526119,0.75,4,3992.50,59.00,1349.44,2309.89,0.00,8210.714519,9242.418523,615745,1359435,0.003839,0.007108,8838893,7613006,0,0,25804,0,1,1 +1773565092.521797,0.70,4,3992.50,59.00,1349.45,2309.89,0.00,3521481192006.229492,3521481192005.156250,614256,1359283,0.002804,0.005635,8838967,7613116,0,0,25806,0,1,1 +1773565097.526022,0.60,4,3992.50,59.00,1349.46,2309.87,0.00,3515466573771.827637,3515466572741.848633,251,190,0.004581,0.007182,8839063,7613249,0,0,25809,0,1,1 +1773565102.526095,0.80,4,3992.50,58.99,1349.93,2309.41,0.00,8212.325375,9244.385595,615745,1359562,0.003648,0.006485,8839156,7613377,0,0,25812,0,1,1 +1773565107.521694,0.60,4,3992.50,58.99,1349.93,2309.40,0.00,3521537232432.700684,3521537231390.635742,75,0,0.003463,0.006287,8839245,7613501,0,0,25814,0,1,1 +1773565112.526116,1.10,4,3992.50,59.10,1345.84,2314.01,0.00,0.126646,0.000000,205,0,0.003823,0.006718,8839341,7613635,0,0,25817,0,1,1 +1773565117.525831,0.70,4,3992.50,58.92,1352.65,2306.97,0.00,3518637163884.585938,0.000000,11,0,0.003391,0.006495,8839425,7613755,0,0,25819,0,1,1 +1773565122.525187,0.80,4,3992.50,58.92,1352.67,2306.96,0.00,0.053523,0.000000,75,0,0.003828,0.007108,8839521,7613894,0,0,25822,0,1,1 +1773565127.524229,1.00,4,3992.50,58.73,1360.09,2299.55,0.00,8206.057370,9246.665664,614256,1359771,0.003383,0.005844,8839604,7614009,0,0,25824,0,1,1 +1773565132.525840,8.49,4,3992.50,58.63,1364.09,2295.55,0.00,3517304433792.493164,3517304432752.292969,205,0,8.062196,0.051116,8842874,7616629,0,0,25826,0,1,1 +1773565137.524236,15.04,4,3992.50,59.35,1335.70,2323.85,0.00,1.832619,0.000195,246,2,22.167747,0.126428,8851520,7623680,0,0,25829,0,1,1 +1773565142.526551,5.82,4,3992.50,58.59,1365.76,2293.78,0.00,3516808692941.914062,10.670059,251,190,8.045301,0.036383,8854468,7625894,0,0,25832,0,1,1 +1773565147.526714,2.81,4,3992.50,58.90,1353.46,2306.10,0.00,3518322558008.010742,3518322557998.992188,11,0,2.017069,0.014937,8855249,7626525,0,0,25834,0,1,1 +1773565152.524580,0.65,4,3992.50,58.90,1353.60,2305.95,0.00,0.000000,0.000000,11,0,0.004994,0.008300,8855357,7626677,0,0,25837,0,1,1 +1773565157.525713,0.75,4,3992.50,58.70,1361.49,2298.06,0.00,1.655777,10.672777,251,190,0.003694,0.006454,8855447,7626806,0,0,25839,0,1,1 +1773565162.521735,0.65,4,3992.50,58.52,1368.20,2291.36,0.00,3521239027084.243652,3521239027075.217773,11,0,0.003836,0.007024,8855545,7626945,0,0,25842,0,1,1 +1773565167.522621,0.80,4,3992.50,58.53,1367.99,2291.56,0.00,0.180242,0.000000,205,0,0.003636,0.006500,8855637,7627074,0,0,25844,0,1,1 +1773565172.526411,0.95,4,3992.50,58.77,1368.42,2300.89,0.00,0.000000,0.000000,205,0,0.003405,0.005838,8855722,7627189,0,0,25846,0,1,1 +1773565177.522625,0.70,4,3992.50,58.79,1367.73,2301.57,0.00,3521103382025.903320,0.000000,11,0,0.003876,0.007133,8855822,7627330,0,0,25849,0,1,1 +1773565182.526146,0.70,4,3992.50,58.78,1367.75,2301.55,0.00,0.180147,0.000000,205,0,0.003355,0.006479,8855903,7627449,0,0,25852,0,1,1 +1773565187.526030,0.75,4,3992.50,58.78,1367.76,2301.54,0.00,0.000000,0.000000,205,0,0.003866,0.007110,8856002,7627588,0,0,25854,0,1,1 +1773565192.525769,0.65,4,3992.50,58.78,1367.79,2301.52,0.00,3518620690877.620117,0.000000,75,0,0.003426,0.005878,8856088,7627706,0,0,25857,0,1,1 +1773565197.523757,0.65,4,3992.50,58.78,1367.79,2301.52,0.00,1.603282,10.679493,251,190,0.003710,0.007005,8856185,7627846,0,0,25859,0,1,1 +1773565202.521804,1.61,4,3992.50,59.00,1359.50,2309.82,0.00,3519811964367.316895,3519811964358.241211,75,0,0.003384,0.005867,8856268,7627963,0,0,25862,0,1,1 +1773565207.525555,8.99,4,3992.50,58.94,1361.60,2307.67,0.00,0.000000,0.000000,75,0,8.073294,0.058119,8859782,7630609,0,0,25864,0,1,1 +1773565212.521727,18.48,4,3992.50,60.71,1292.37,2376.84,0.00,0.000000,0.000000,75,0,30.206038,0.145300,8870878,7639473,0,0,25866,0,1,1 +1773565217.521822,2.96,4,3992.50,59.88,1324.89,2344.31,0.00,8204.330967,9246.992558,614256,1362690,2.022203,0.014339,8871807,7640195,0,0,25869,0,1,1 +1773565222.521733,1.30,4,3992.50,59.21,1351.19,2318.01,0.00,9.561693,10.686420,615745,1362902,0.006385,0.008458,8871954,7640369,0,0,25872,0,1,1 +1773565227.526554,0.80,4,3992.50,58.77,1368.09,2301.12,0.00,3515048409285.282227,3515048408251.545410,251,190,0.003392,0.005837,8872038,7640484,0,0,25874,0,1,1 +1773565232.526012,1.35,4,3992.50,58.65,1366.60,2296.25,0.00,3518818072378.242676,3518818072369.169434,75,0,0.003841,0.007121,8872135,7640624,0,0,25877,0,1,1 +1773565237.526362,0.80,4,3992.50,58.67,1362.95,2297.08,0.00,0.000000,0.000000,75,0,0.003428,0.005863,8872222,7640741,0,0,25879,0,1,1 +1773565242.526060,0.80,4,3992.50,58.69,1362.28,2297.76,0.00,3518649952089.089844,0.000000,11,0,0.003267,0.006895,8872310,7640875,0,0,25882,0,1,1 +1773565247.521810,0.90,4,3992.50,58.69,1362.29,2297.75,0.00,8221.089832,9266.616183,615745,1363386,0.003177,0.006346,8872388,7640992,0,0,25884,0,1,1 +1773565252.521726,0.95,4,3992.50,58.51,1369.44,2290.61,0.00,3518496152370.088379,3518496151334.452637,251,190,0.003803,0.007097,8872482,7641130,0,0,25886,0,1,1 +1773565257.521790,0.80,4,3992.50,58.44,1372.02,2288.00,0.00,3518392283937.826660,3518392283928.808105,11,0,0.003382,0.005840,8872565,7641245,0,0,25889,0,1,1 +1773565262.521797,1.25,4,3992.50,58.67,1367.12,2297.04,0.00,8204.528217,9248.227995,614256,1363335,0.003865,0.007107,8872664,7641384,0,0,25892,0,1,1 +1773565267.521786,0.95,4,3992.50,58.67,1367.24,2296.88,0.00,3518444816000.800293,3518444814956.916016,205,0,0.003403,0.005876,8872749,7641502,0,0,25894,0,1,1 +1773565272.526092,0.75,4,3992.50,58.67,1367.26,2296.87,0.00,1.830455,0.000195,246,2,0.003660,0.006526,8872843,7641633,0,0,25897,0,1,1 +1773565277.526415,0.95,4,3992.50,58.66,1367.27,2296.85,0.00,8211.559066,9258.393441,615745,1363612,0.003597,0.006456,8872932,7641759,0,0,25899,0,1,1 +1773565282.525554,13.32,4,3992.50,59.08,1350.77,2313.14,0.00,0.044539,0.122384,615754,1363956,14.120761,0.086926,8878672,7646214,0,0,25901,0,1,1 +1773565287.521796,11.64,4,3992.50,59.41,1338.14,2325.85,0.00,3521083755669.194336,3521083754623.440918,11,0,20.130628,0.088783,8885326,7651376,0,0,25904,0,1,1 +1773565292.526102,6.77,4,3992.50,59.43,1344.36,2326.75,0.00,0.180118,0.000000,205,0,6.031100,0.026523,8887201,7652768,0,0,25906,0,1,1 +1773565297.526548,1.25,4,3992.50,59.40,1345.60,2325.51,0.00,3518123343027.094727,0.000000,11,0,0.006647,0.009110,8887357,7652956,0,0,25909,0,1,1 +1773565302.523587,0.90,4,3992.50,59.20,1353.28,2317.84,0.00,1.657134,10.681521,251,190,0.003868,0.007137,8887456,7653097,0,0,25912,0,1,1 +1773565307.525831,0.85,4,3992.50,59.05,1359.27,2311.83,0.00,8199.248573,9234.437896,614265,1364594,0.003876,0.007119,8887556,7653237,0,0,25914,0,1,1 +1773565312.522924,0.85,4,3992.50,59.07,1358.27,2312.84,0.00,9.567086,10.899501,615754,1364814,0.004041,0.006766,8887654,7653365,0,0,25917,0,1,1 +1773565317.526041,0.85,4,3992.50,59.06,1358.62,2312.49,0.00,3516245103849.661133,3516245102804.308105,11,0,0.003863,0.007118,8887753,7653505,0,0,25919,0,1,1 +1773565322.526175,1.25,4,3992.50,59.06,1356.17,2312.47,0.00,0.000000,0.000000,11,0,0.003878,0.007132,8887853,7653646,0,0,25922,0,1,1 +1773565327.525654,0.85,4,3992.50,59.03,1357.52,2310.96,0.00,0.000000,0.000000,11,0,0.003886,0.007131,8887954,7653787,0,0,25924,0,1,1 +1773565332.522647,0.80,4,3992.50,58.83,1365.18,2303.31,0.00,8209.521319,9255.405932,614265,1364944,0.003422,0.005859,8888040,7653903,0,0,25926,0,1,1 +1773565337.523301,0.90,4,3992.50,58.83,1364.97,2303.52,0.00,3517977021140.434570,3517977020095.315430,11,0,0.003878,0.007131,8888140,7654044,0,0,25929,0,1,1 +1773565342.523598,0.90,4,3992.50,58.83,1364.99,2303.50,0.00,2.012185,0.000195,246,2,0.003878,0.007132,8888240,7654185,0,0,25932,0,1,1 +1773565347.521719,0.95,4,3992.50,58.83,1365.00,2303.49,0.00,3519759946636.317383,3519759946638.330566,11,0,0.003879,0.007125,8888340,7654325,0,0,25934,0,1,1 +1773565352.525282,1.10,4,3992.50,58.91,1362.34,2306.59,0.00,8198.742049,9243.438321,614265,1365126,0.003418,0.005861,8888426,7654442,0,0,25937,0,1,1 +1773565357.526085,1.45,4,3992.50,58.82,1366.07,2302.79,0.00,3517872325367.726562,3517872324320.441895,246,2,0.006677,0.008515,8888575,7654612,0,0,25939,0,1,1 +1773565362.522563,18.99,4,3992.50,58.90,1362.77,2306.01,0.00,3520917745429.874512,3520917745431.888184,11,0,26.192733,0.125915,8897246,7661190,0,0,25942,0,1,1 +1773565367.525943,9.75,4,3992.50,59.15,1352.84,2315.93,0.00,8208.596187,9254.909871,615754,1366332,14.076671,0.066882,8901821,7664693,0,0,25944,0,1,1 +1773565372.526106,0.75,4,3992.50,58.81,1366.36,2302.41,0.00,3518322783404.808594,3518322782357.821777,11,0,0.003878,0.007122,8901921,7664833,0,0,25946,0,1,1 +1773565377.526721,1.00,4,3992.50,58.77,1367.93,2300.84,0.00,0.000000,0.000000,11,0,0.003407,0.006508,8902006,7664954,0,0,25949,0,1,1 +1773565382.525941,1.25,4,3992.50,59.14,1355.86,2315.39,0.00,0.000000,0.000000,11,0,0.003866,0.007133,8902105,7665095,0,0,25952,0,1,1 +1773565387.522673,1.05,4,3992.50,59.05,1359.28,2311.98,0.00,0.000000,0.000000,11,0,0.003889,0.007122,8902206,7665235,0,0,25954,0,1,1 +1773565392.526732,0.70,4,3992.50,59.04,1359.88,2311.38,0.00,8207.483835,9254.475965,615754,1366748,0.003417,0.005860,8902292,7665352,0,0,25957,0,1,1 +1773565397.526048,0.95,4,3992.50,59.04,1359.89,2311.37,0.00,3518918343781.766602,3518918342733.781738,11,0,0.004343,0.006513,8902380,7665470,0,0,25959,0,1,1 +1773565402.526116,0.75,4,3992.50,59.04,1359.90,2311.36,0.00,0.053515,0.000000,75,0,0.003420,0.005865,8902466,7665587,0,0,25962,0,1,1 +1773565407.526286,0.70,4,3992.50,59.03,1359.91,2311.34,0.00,3518317618452.641113,0.000000,11,0,0.003928,0.007184,8902570,7665731,0,0,25964,0,1,1 +1773565412.526052,1.35,4,3992.50,59.21,1355.50,2318.32,0.00,0.000000,0.000000,11,0,0.003866,0.007110,8902669,7665870,0,0,25966,0,1,1 +1773565417.521810,0.85,4,3992.50,59.18,1352.56,2317.05,0.00,1.657559,10.684259,251,190,0.003881,0.007126,8902769,7666010,0,0,25969,0,1,1 +1773565422.525928,0.95,4,3992.50,58.88,1364.34,2305.27,0.00,3515541938616.004883,3515541938606.939941,75,0,0.003425,0.005868,8902856,7666128,0,0,25972,0,1,1 +1773565427.523602,6.98,4,3992.50,58.99,1359.97,2309.63,0.00,8217.915511,9266.740443,615754,1367261,4.034870,0.027256,8904267,7667185,0,0,25974,0,1,1 +1773565432.526114,20.37,4,3992.50,59.40,1343.84,2325.66,0.00,3516670319297.248535,3516670318249.437988,75,0,32.178293,0.141147,8914610,7674830,0,0,25977,0,1,1 +1773565437.526212,4.32,4,3992.50,58.91,1362.96,2306.51,0.00,3518368445890.239746,0.000000,11,0,4.037994,0.027692,8916212,7676065,0,0,25979,0,1,1 +1773565442.526029,1.40,4,3992.50,59.12,1355.02,2314.49,0.00,2.012378,0.000195,246,2,0.004535,0.008698,8916314,7676212,0,0,25982,0,1,1 +1773565447.521815,0.90,4,3992.50,59.02,1358.77,2310.75,0.00,8209.491760,9260.676705,614265,1368487,0.003731,0.006415,8916407,7676339,0,0,25984,0,1,1 +1773565452.526081,0.90,4,3992.50,58.91,1363.20,2306.32,0.00,3515437718129.729004,3515437717082.282227,75,0,0.004079,0.007648,8916514,7676490,0,0,25986,0,1,1 +1773565457.526574,0.90,4,3992.50,58.90,1363.57,2305.95,0.00,1.602479,10.674143,251,190,0.004177,0.007674,8916620,7676641,0,0,25989,0,1,1 +1773565462.521817,0.85,4,3992.50,58.90,1363.59,2305.93,0.00,3521787357001.199219,3521787356992.171875,11,0,0.003162,0.005135,8916698,7676745,0,0,25992,0,1,1 +1773565467.521712,0.80,4,3992.50,58.86,1364.86,2304.66,0.00,0.053517,0.000000,75,0,0.003428,0.005863,8916785,7676862,0,0,25994,0,1,1 +1773565472.522483,1.30,4,3992.50,58.87,1353.56,2304.86,0.00,1.602390,10.673550,251,190,0.003877,0.007131,8916885,7677003,0,0,25997,0,1,1 +1773565477.524356,0.80,4,3992.50,58.85,1354.45,2303.94,0.00,0.356019,3517119686693.378418,246,2,0.003864,0.007120,8916984,7677143,0,0,25999,0,1,1 +1773565482.526386,0.90,4,3992.50,58.85,1354.45,2303.93,0.00,8208.800313,9260.260061,615754,1368944,0.003864,0.007129,8917083,7677284,0,0,26002,0,1,1 +1773565487.525889,0.90,4,3992.50,58.45,1370.13,2288.26,0.00,3518787094078.836914,3518787093028.804199,75,0,0.003421,0.005856,8917169,7677400,0,0,26004,0,1,1 +1773565492.525163,0.95,4,3992.50,58.44,1370.15,2288.24,0.00,3518947718815.874512,0.000000,11,0,0.003897,0.007149,8917270,7677542,0,0,26006,0,1,1 +1773565497.526127,9.30,4,3992.50,58.89,1352.80,2305.54,0.00,0.000000,0.000000,11,0,10.069833,0.053274,8920705,7680143,0,0,26009,0,1,1 +1773565502.525267,18.93,4,3992.50,59.57,1326.15,2332.12,0.00,0.053525,0.000000,75,0,30.199039,0.140477,8930812,7687812,0,0,26012,0,1,1 +1773565507.522577,1.40,4,3992.50,59.22,1339.80,2318.45,0.00,3520331312584.889160,0.000000,11,0,0.008193,0.010322,8930994,7688017,0,0,26014,0,1,1 +1773565512.521718,0.90,4,3992.50,59.11,1343.92,2314.32,0.00,8215.557607,9266.991975,615755,1370543,0.003887,0.007142,8931095,7688159,0,0,26017,0,1,1 +1773565517.525773,0.75,4,3992.50,59.11,1343.84,2314.43,0.00,3515586453098.209473,3515586452047.753906,75,0,0.003417,0.005850,8931181,7688275,0,0,26019,0,1,1 +1773565522.521720,1.00,4,3992.50,58.27,1376.81,2281.45,0.00,0.126861,0.000000,205,0,0.003869,0.007128,8931280,7688415,0,0,26021,0,1,1 +1773565527.526165,0.90,4,3992.50,58.38,1372.69,2285.60,0.00,1.830404,0.000195,246,2,0.004493,0.007379,8931392,7688563,0,0,26024,0,1,1 +1773565532.526359,1.30,4,3992.50,58.81,1355.67,2302.71,0.00,3518300283670.927734,3518300283672.759766,205,0,0.003878,0.007122,8931492,7688703,0,0,26026,0,1,1 +1773565537.522562,0.80,4,3992.50,58.74,1358.60,2299.72,0.00,0.000000,0.000000,205,0,0.003410,0.005870,8931577,7688820,0,0,26029,0,1,1 +1773565542.525999,0.90,4,3992.50,58.70,1359.95,2298.36,0.00,3516019945873.489258,0.000000,75,0,0.003863,0.007127,8931676,7688961,0,0,26032,0,1,1 +1773565547.526113,0.90,4,3992.50,58.67,1361.25,2297.07,0.00,1.958744,0.000195,246,2,0.003891,0.007110,8931777,7689100,0,0,26034,0,1,1 +1773565552.521884,0.70,4,3992.50,58.74,1358.60,2299.71,0.00,3521416011309.537109,10.684038,251,190,0.003881,0.007126,8931877,7689240,0,0,26037,0,1,1 +1773565557.526487,0.95,4,3992.50,58.74,1358.70,2299.62,0.00,3515201055734.256836,3515201055725.246582,11,0,0.003425,0.005858,8931964,7689357,0,0,26039,0,1,1 +1773565562.525892,1.25,4,3992.50,58.93,1361.61,2307.17,0.00,2.012544,0.000195,246,2,0.003878,0.007133,8932064,7689498,0,0,26042,0,1,1 +1773565567.525731,9.30,4,3992.50,58.70,1370.36,2298.38,0.00,3518550601211.412598,3518550601213.425293,11,0,8.070828,0.047464,8935029,7691672,0,0,26044,0,1,1 +1773565572.525536,10.66,4,3992.50,59.34,1345.32,2323.36,0.00,8214.466905,9266.796001,615755,1371637,14.074853,0.059647,8939321,7694801,0,0,26046,0,1,1 +1773565577.525701,12.11,4,3992.50,59.38,1343.77,2324.89,0.00,3518321293092.373535,3518321292040.120117,11,0,18.117276,0.084104,8945363,7699264,0,0,26049,0,1,1 +1773565582.526265,1.05,4,3992.50,59.28,1347.67,2320.99,0.00,0.180253,0.000000,205,0,0.003878,0.007119,8945463,7699404,0,0,26052,0,1,1 +1773565587.525970,0.85,4,3992.50,59.28,1347.69,2320.97,0.00,3518645337458.459473,0.000000,11,0,0.003420,0.005856,8945549,7699520,0,0,26054,0,1,1 +1773565592.521923,1.26,4,3992.50,59.28,1347.32,2321.11,0.00,0.000000,0.000000,11,0,0.003881,0.007138,8945649,7699661,0,0,26057,0,1,1 +1773565597.526486,0.90,4,3992.50,59.10,1354.52,2313.91,0.00,2.010470,0.000195,246,2,0.003874,0.007116,8945749,7699801,0,0,26059,0,1,1 +1773565602.526395,0.90,4,3992.50,59.11,1354.32,2314.10,0.00,8212.284378,9267.550809,615755,1372581,0.003886,0.007131,8945850,7699942,0,0,26061,0,1,1 +1773565607.522230,1.00,4,3992.50,59.01,1358.07,2310.37,0.00,3521370683199.907227,3521370683198.859863,614266,1372435,0.003423,0.005870,8945936,7700059,0,0,26064,0,1,1 +1773565612.524916,0.75,4,3992.50,59.05,1356.36,2312.07,0.00,3516547744102.897949,3516547743051.274902,11,0,0.003876,0.007119,8946036,7700199,0,0,26066,0,1,1 +1773565617.525841,1.00,4,3992.50,59.05,1356.38,2312.06,0.00,0.053506,0.000000,75,0,0.003877,0.007131,8946136,7700340,0,0,26069,0,1,1 +1773565622.521716,1.26,4,3992.50,59.22,1349.69,2318.74,0.00,8211.306567,9264.544889,614266,1372544,0.003881,0.007138,8946236,7700481,0,0,26072,0,1,1 +1773565627.525963,0.90,4,3992.50,59.08,1355.29,2313.15,0.00,3515450986073.780762,3515450985022.177734,205,0,0.003417,0.005838,8946322,7700596,0,0,26074,0,1,1 +1773565632.526602,0.85,4,3992.50,59.09,1354.86,2313.59,0.00,8203.357169,9255.811411,614266,1372644,0.003865,0.007131,8946421,7700737,0,0,26077,0,1,1 +1773565637.526015,0.90,4,3992.50,59.09,1354.89,2313.56,0.00,3518850669151.090820,3518850668098.558594,11,0,0.003878,0.007767,8946521,7700881,0,0,26079,0,1,1 +1773565642.523557,13.04,4,3992.50,59.05,1356.29,2312.11,0.00,2.013294,0.000195,246,2,14.112145,0.073697,8951418,7704420,0,0,26082,0,1,1 +1773565647.521923,13.06,4,3992.50,59.49,1339.11,2329.21,0.00,0.000000,0.000000,246,2,22.135698,0.093216,8958554,7709591,0,0,26084,0,1,1 +1773565652.524685,4.92,4,3992.50,59.74,1329.41,2338.96,0.00,3516494665579.469727,3516494665581.480957,11,0,4.028235,0.024716,8959955,7710656,0,0,26086,0,1,1 +1773565657.522614,1.10,4,3992.50,58.70,1370.31,2298.04,0.00,8208.009875,9262.044586,614268,1373996,0.003892,0.007135,8960056,7710797,0,0,26089,0,1,1 +1773565662.523351,0.95,4,3992.50,58.74,1368.52,2299.84,0.00,3517918186729.662598,3517918185676.220215,11,0,0.006720,0.009061,8960203,7710966,0,0,26092,0,1,1 +1773565667.523075,0.90,4,3992.50,58.75,1368.04,2300.31,0.00,8205.062605,9258.867971,614268,1374161,0.003878,0.007123,8960303,7711106,0,0,26094,0,1,1 +1773565672.521805,0.80,4,3992.50,58.76,1367.81,2300.54,0.00,3519331099516.008301,3519331098461.993652,11,0,0.003421,0.005867,8960389,7711223,0,0,26097,0,1,1 +1773565677.525551,0.90,4,3992.50,58.76,1367.82,2300.53,0.00,8198.467987,9251.582418,614268,1374257,0.003875,0.007117,8960489,7711363,0,0,26099,0,1,1 +1773565682.522586,1.15,4,3992.50,59.00,1363.41,2309.99,0.00,3520524444282.382812,3520524443227.854004,11,0,0.003868,0.007137,8960588,7711504,0,0,26102,0,1,1 +1773565687.521785,0.95,4,3992.50,58.94,1365.66,2307.74,0.00,8205.923523,9260.095555,614268,1374338,0.003866,0.007124,8960687,7711644,0,0,26104,0,1,1 +1773565692.526553,0.85,4,3992.50,58.98,1364.22,2309.18,0.00,9.552416,10.699857,615757,1374573,0.003425,0.005858,8960774,7711761,0,0,26106,0,1,1 +1773565697.526092,0.80,4,3992.50,58.75,1373.19,2300.20,0.00,3518761180752.215332,3518761179696.966797,11,0,0.003878,0.007133,8960874,7711902,0,0,26109,0,1,1 +1773565702.522995,1.00,4,3992.50,58.77,1372.47,2300.91,0.00,8209.694479,9264.452473,614268,1374461,0.004803,0.008451,8960976,7712050,0,0,26112,0,1,1 +1773565707.524467,0.85,4,3992.50,58.81,1370.79,2302.60,0.00,0.000000,0.030850,614268,1374500,0.003915,0.007182,8961079,7712194,0,0,26114,0,1,1 +1773565712.526093,1.20,4,3992.50,58.82,1367.82,2302.79,0.00,9.558416,10.729227,615757,1374716,0.003419,0.005863,8961165,7712311,0,0,26117,0,1,1 +1773565717.526103,19.40,4,3992.50,59.10,1352.68,2313.95,0.00,3518429794376.323730,3518429793319.007324,246,2,26.169730,0.122661,8969862,7718739,0,0,26119,0,1,1 +1773565722.523546,9.36,4,3992.50,59.14,1351.02,2315.54,0.00,3520237890823.767578,3520237890825.781250,11,0,12.082876,0.055109,8973820,7721717,0,0,26122,0,1,1 +1773565727.526378,3.41,4,3992.50,59.02,1355.86,2310.70,0.00,0.053485,0.000000,75,0,2.016930,0.014429,8974566,7722298,0,0,26124,0,1,1 +1773565732.521715,0.90,4,3992.50,58.98,1357.23,2309.34,0.00,1.604133,10.685159,251,190,0.003882,0.007129,8974666,7722438,0,0,26126,0,1,1 +1773565737.525552,1.10,4,3992.50,58.99,1357.00,2309.57,0.00,0.355879,3515739442774.802246,246,2,0.003654,0.006489,8974760,7722567,0,0,26129,0,1,1 +1773565742.526000,1.50,4,3992.50,59.28,1342.05,2320.88,0.00,3518121892984.836426,3518121892986.794922,75,0,0.004318,0.007432,8974856,7722699,0,0,26132,0,1,1 +1773565747.526532,0.90,4,3992.50,59.02,1352.21,2310.73,0.00,1.958581,0.000195,246,2,0.005120,0.008346,8974966,7722853,0,0,26134,0,1,1 +1773565752.521795,0.95,4,3992.50,59.00,1353.06,2309.89,0.00,3521773312191.296387,3521773312193.310547,11,0,0.004087,0.007659,8975073,7723004,0,0,26137,0,1,1 +1773565757.525827,0.90,4,3992.50,58.59,1369.16,2293.81,0.00,2.010683,0.000195,246,2,0.003717,0.006405,8975165,7723131,0,0,26139,0,1,1 +1773565762.526197,0.90,4,3992.50,58.60,1368.69,2294.28,0.00,0.000000,0.000000,246,2,0.004074,0.007664,8975271,7723283,0,0,26142,0,1,1 +1773565767.526054,0.95,4,3992.50,58.60,1368.71,2294.27,0.00,8202.832809,9260.537217,614268,1376060,0.003891,0.007767,8975372,7723427,0,0,26144,0,1,1 +1773565772.525844,1.20,4,3992.50,58.84,1358.98,2303.79,0.00,3518584649783.387695,3518584648727.501465,205,0,0.003853,0.007110,8975470,7723566,0,0,26146,0,1,1 +1773565777.522568,0.85,4,3992.50,58.84,1359.03,2303.77,0.00,3520744410435.386230,0.000000,11,0,0.003431,0.005877,8975557,7723684,0,0,26149,0,1,1 +1773565782.525971,0.95,4,3992.50,58.65,1366.71,2296.09,0.00,2.010936,0.000195,246,2,0.003863,0.007127,8975656,7723825,0,0,26152,0,1,1 +1773565787.525739,2.91,4,3992.50,58.59,1368.83,2293.97,0.00,8212.539344,9271.557668,615757,1376448,2.017494,0.016696,8976415,7724472,0,0,26154,0,1,1 +1773565792.523683,22.20,4,3992.50,59.11,1348.49,2314.23,0.00,0.000000,0.400165,615757,1377234,32.210970,0.145800,8986829,7732264,0,0,26157,0,1,1 +1773565797.526326,4.91,4,3992.50,58.49,1372.56,2290.11,0.00,3516578423822.206055,3516578422765.227051,205,0,6.047222,0.036219,8989057,7733973,0,0,26159,0,1,1 +1773565802.521722,1.25,4,3992.50,58.81,1362.05,2302.52,0.00,8221.561138,9280.535754,615757,1377654,0.003882,0.007126,8989157,7734113,0,0,26162,0,1,1 +1773565807.521721,0.65,4,3992.50,58.83,1358.92,2303.24,0.00,3518438372309.006836,3518438371251.187500,11,0,0.003420,0.005855,8989243,7734229,0,0,26164,0,1,1 +1773565812.525667,0.65,4,3992.50,58.83,1358.94,2303.22,0.00,0.180131,0.000000,205,0,0.003875,0.007117,8989343,7734369,0,0,26166,0,1,1 +1773565817.522863,0.60,4,3992.50,58.83,1358.95,2303.21,0.00,3520411788140.735840,0.000000,75,0,0.003888,0.007132,8989444,7734510,0,0,26169,0,1,1 +1773565822.525994,0.75,4,3992.50,58.83,1358.97,2303.19,0.00,1.601634,10.668514,251,190,0.003888,0.007128,8989545,7734651,0,0,26172,0,1,1 +1773565827.521926,0.65,4,3992.50,58.83,1358.98,2303.18,0.00,3521302125501.382812,3521302125492.356934,11,0,0.003423,0.005860,8989631,7734767,0,0,26174,0,1,1 +1773565832.522507,1.10,4,3992.50,58.87,1358.93,2304.87,0.00,8203.656628,9260.888714,614268,1377879,0.003865,0.007775,8989730,7734912,0,0,26177,0,1,1 +1773565837.523117,0.60,4,3992.50,58.87,1358.94,2304.86,0.00,3518007966415.983398,3518007965358.577637,205,0,0.003420,0.005854,8989816,7735028,0,0,26179,0,1,1 +1773565842.525852,0.65,4,3992.50,58.87,1358.95,2304.84,0.00,8209.499696,9267.666136,615757,1378181,0.003418,0.005862,8989902,7735145,0,0,26182,0,1,1 +1773565847.524573,0.80,4,3992.50,58.87,1358.96,2304.82,0.00,3519337238087.555664,3519337237037.741211,251,190,0.003879,0.007099,8990002,7735283,0,0,26184,0,1,1 +1773565852.526694,0.65,4,3992.50,58.87,1358.98,2304.81,0.00,8209.033181,9258.205973,615757,1378267,0.003419,0.005878,8990088,7735401,0,0,26186,0,1,1 +1773565857.525542,5.79,4,3992.50,59.14,1348.21,2315.58,0.00,0.000000,0.040048,615757,1378385,4.038290,0.029520,8991584,7736561,0,0,26189,0,1,1 +1773565862.524000,21.84,4,3992.50,59.32,1352.51,2322.46,0.00,3519522447285.118652,3519522447285.005371,614268,1379212,32.211513,0.143786,9002085,7744318,0,0,26192,0,1,1 +1773565867.526293,3.36,4,3992.50,59.27,1351.15,2320.45,0.00,3516824340723.948242,3516824339665.869629,11,0,4.027350,0.024954,9003508,7745423,0,0,26194,0,1,1 +1773565872.521731,0.70,4,3992.50,59.04,1359.95,2311.66,0.00,8221.673140,9282.562180,615757,1379666,0.003882,0.007126,9003608,7745563,0,0,26197,0,1,1 +1773565877.521724,0.55,4,3992.50,59.10,1357.78,2313.86,0.00,0.000000,0.141016,615757,1379825,0.003420,0.005843,9003694,7745678,0,0,26199,0,1,1 +1773565882.526353,0.70,4,3992.50,59.09,1358.01,2313.64,0.00,3515182285994.671875,3515182284935.590820,11,0,0.003874,0.007116,9003794,7745818,0,0,26201,0,1,1 +1773565887.521791,1.46,4,3992.50,58.82,1368.71,2302.95,0.00,0.000000,0.000000,11,0,0.003882,0.007139,9003894,7745959,0,0,26204,0,1,1 +1773565892.526325,1.10,4,3992.50,59.18,1350.49,2316.89,0.00,8206.728896,9265.950395,615757,1379885,0.003875,0.007116,9003994,7746099,0,0,26206,0,1,1 +1773565897.526434,0.75,4,3992.50,59.21,1349.03,2318.35,0.00,3518360263277.808105,3518360262217.648926,11,0,0.003420,0.006509,9004080,7746220,0,0,26209,0,1,1 +1773565902.526554,0.65,4,3992.50,59.21,1349.05,2318.34,0.00,0.000000,0.000000,11,0,0.003886,0.007140,9004181,7746362,0,0,26212,0,1,1 +1773565907.521782,0.65,4,3992.50,59.02,1356.71,2310.67,0.00,0.000000,0.000000,11,0,0.003882,0.007117,9004281,7746501,0,0,26214,0,1,1 +1773565912.521934,0.70,4,3992.50,58.97,1358.61,2308.77,0.00,8204.360854,9263.572409,614268,1379890,0.003878,0.007132,9004381,7746642,0,0,26217,0,1,1 +1773565917.525792,0.55,4,3992.50,59.01,1357.16,2310.23,0.00,3515724021526.629883,3515724020468.202637,11,0,0.000174,0.000020,9004392,7746644,0,0,26219,0,1,1 +1773565922.526287,0.80,4,3992.50,59.20,1349.70,2317.83,0.00,2.012106,0.000195,246,2,0.000061,0.000030,9004396,7746647,0,0,26222,0,1,1 +1773565927.522658,2.61,4,3992.50,59.00,1357.31,2310.06,0.00,3520992791221.962891,3520992791223.976562,11,0,0.000642,0.000020,9004437,7746649,0,0,26224,0,1,1 +1773565932.524375,1.30,4,3992.50,59.02,1356.57,2310.80,0.00,2.011614,0.000195,246,2,0.000402,0.000020,9004463,7746651,0,0,26226,0,1,1 +1773565937.522593,0.65,4,3992.50,59.02,1356.56,2310.79,0.00,3519691403749.229004,3519691403751.062012,205,0,0.000256,0.000030,9004482,7746654,0,0,26229,0,1,1 +1773565942.522885,0.70,4,3992.50,59.02,1356.62,2310.74,0.00,8213.547869,9274.347357,615763,1380381,0.000504,0.000213,9004517,7746667,0,0,26232,0,1,1 +1773565947.524539,2.51,4,3992.50,59.02,1356.69,2310.66,0.00,0.011715,0.050276,615769,1380450,0.007285,0.002893,9004638,7746747,0,0,26234,0,1,1 +1773565952.525559,9.54,4,3992.50,60.14,1311.48,2354.50,0.00,3517719459726.970215,3517719459726.227539,614280,1380701,16.122269,0.077092,9010079,7750892,0,0,26237,0,1,1 +1773565957.526144,13.96,4,3992.50,59.44,1338.69,2327.15,0.00,3518025132987.559082,3518025131927.652832,75,0,20.109837,0.092723,9016765,7756021,0,0,26239,0,1,1 +1773565962.526429,2.36,4,3992.50,59.05,1354.00,2311.84,0.00,0.126751,0.000000,205,0,4.031265,0.025607,9018211,7757153,0,0,26242,0,1,1 +1773565967.526582,0.75,4,3992.50,59.07,1353.27,2312.57,0.00,1.475834,10.674869,251,190,0.003930,0.007190,9018315,7757298,0,0,26244,0,1,1 +1773565972.526262,0.75,4,3992.50,59.08,1352.64,2313.21,0.00,8203.525981,9255.013779,614280,1381400,0.003878,0.007098,9018415,7757436,0,0,26246,0,1,1 +1773565977.526559,0.45,4,3992.50,59.08,1352.64,2313.21,0.00,3518228483886.329102,3518228482834.970703,251,190,0.000174,0.000055,9018426,7757441,0,0,26249,0,1,1 +1773565982.521683,0.85,4,3992.50,59.28,1334.43,2320.78,0.00,3521871723394.336914,3521871723385.309570,11,0,0.000061,0.000030,9018430,7757444,0,0,26252,0,1,1 +1773565987.526407,0.55,4,3992.50,59.28,1334.46,2320.77,0.00,8196.913981,9256.546598,614280,1381442,0.000075,0.000020,9018435,7757446,0,0,26254,0,1,1 +1773565992.521718,0.45,4,3992.50,59.28,1334.46,2320.77,0.00,3521739784006.498047,3521739782942.854980,246,2,0.000042,0.000030,9018438,7757449,0,0,26257,0,1,1 +1773565997.525692,0.40,4,3992.50,59.26,1335.24,2320.00,0.00,3515642984274.882812,3515642984276.839844,75,0,0.000014,0.000020,9018439,7757451,0,0,26259,0,1,1 +1773566002.525275,0.40,4,3992.50,59.26,1335.24,2320.00,0.00,1.958953,0.000195,246,2,0.000089,0.000030,9018445,7757454,0,0,26262,0,1,1 +1773566007.525749,0.65,4,3992.50,59.26,1335.04,2320.20,0.00,8201.867488,9264.545675,614280,1381607,0.003943,0.005395,9018524,7757558,0,0,26264,0,1,1 +1773566012.526384,1.15,4,3992.50,58.89,1350.88,2305.73,0.00,9.560310,10.744046,615769,1381856,0.003878,0.007113,9018624,7757698,0,0,26266,0,1,1 +1773566017.521733,0.80,4,3992.50,58.90,1350.44,2306.19,0.00,3521712929698.307617,3521712928635.368164,11,0,0.003913,0.007160,9018726,7757841,0,0,26269,0,1,1 +1773566022.525860,9.18,4,3992.50,59.23,1337.69,2318.93,0.00,8207.444485,9268.726346,615769,1382211,10.061864,0.054191,9022070,7760401,0,0,26272,0,1,1 +1773566027.525561,7.48,4,3992.50,59.12,1341.77,2314.83,0.00,3518647713622.317871,3518647712569.115723,251,190,8.060840,0.042090,9024933,7762551,0,0,26274,0,1,1 +1773566032.525549,13.33,4,3992.50,59.91,1311.00,2345.54,0.00,3518445713668.703125,3518445713659.503906,205,0,22.135876,0.102120,9032296,7768142,0,0,26277,0,1,1 +1773566037.526565,0.80,4,3992.50,59.43,1329.92,2326.63,0.00,3517722862790.639160,0.000000,11,0,0.001848,0.001262,9032329,7768166,0,0,26279,0,1,1 +1773566042.522275,0.90,4,3992.50,59.61,1324.70,2333.95,0.00,1.657574,10.684362,251,190,0.000344,0.000030,9032337,7768169,0,0,26282,0,1,1 +1773566047.526642,0.65,4,3992.50,59.51,1326.76,2329.84,0.00,0.355842,3515366796113.262695,246,2,0.000292,0.000020,9032342,7768171,0,0,26284,0,1,1 +1773566052.526022,0.55,4,3992.50,59.32,1333.91,2322.70,0.00,3518873418987.005859,3518873418988.838379,205,0,0.000061,0.000020,9032346,7768173,0,0,26286,0,1,1 +1773566057.524679,0.45,4,3992.50,59.33,1333.81,2322.80,0.00,8206.682319,9269.363018,614280,1383207,0.000014,0.000030,9032347,7768176,0,0,26289,0,1,1 +1773566062.522633,0.45,4,3992.50,58.98,1347.60,2309.01,0.00,3519877778240.940918,3519877777178.291016,11,0,0.000339,0.000030,9032355,7768179,0,0,26292,0,1,1 +1773566067.526350,0.55,4,3992.50,58.98,1347.51,2309.10,0.00,0.180140,0.000000,205,0,0.004273,0.007238,9032450,7768305,0,0,26294,0,1,1 +1773566072.526028,0.95,4,3992.50,59.04,1343.81,2311.51,0.00,3518663433607.477539,0.000000,75,0,0.003901,0.007172,9032552,7768449,0,0,26297,0,1,1 +1773566077.521731,0.70,4,3992.50,59.04,1343.74,2311.48,0.00,0.000000,0.000000,75,0,0.003912,0.007149,9032654,7768591,0,0,26299,0,1,1 +1773566082.521721,0.70,4,3992.50,58.86,1350.65,2304.59,0.00,3518444434360.637207,0.000000,11,0,0.003649,0.006486,9032747,7768719,0,0,26302,0,1,1 +1773566087.526337,0.65,4,3992.50,58.87,1350.44,2304.79,0.00,1.654625,10.665349,251,190,0.003646,0.006495,9032840,7768848,0,0,26304,0,1,1 +1773566092.525823,0.85,4,3992.50,58.87,1350.46,2304.77,0.00,3518798783050.549805,3518798783041.476562,75,0,0.003878,0.007606,9032940,7768991,0,0,26306,0,1,1 +1773566097.521714,3.81,4,3992.50,58.46,1366.57,2288.65,0.00,1.960400,0.000195,246,2,0.000886,0.000191,9032996,7768995,0,0,26309,0,1,1 +1773566102.526166,1.00,4,3992.50,58.78,1352.99,2301.40,0.00,3515307338119.218262,3515307338121.229004,11,0,0.000290,0.000030,9033015,7768998,0,0,26312,0,1,1 +1773566107.525939,0.85,4,3992.50,58.74,1354.57,2299.82,0.00,2.012396,0.000195,246,2,0.000389,0.000020,9033041,7769000,0,0,26314,0,1,1 +1773566112.526280,0.75,4,3992.50,58.70,1356.08,2298.31,0.00,3518197477497.845703,3518197477499.804199,75,0,0.000198,0.000030,9033055,7769003,0,0,26317,0,1,1 +1773566117.526338,0.95,4,3992.50,58.73,1354.87,2299.52,0.00,0.000000,0.000000,75,0,0.000296,0.000020,9033076,7769005,0,0,26319,0,1,1 +1773566122.522688,0.65,4,3992.50,58.71,1355.59,2298.80,0.00,8220.166821,9285.012736,615769,1383965,0.000290,0.000030,9033095,7769008,0,0,26322,0,1,1 +1773566127.522567,17.83,4,3992.50,59.89,1309.30,2344.99,0.00,3518522284167.500488,3518522283103.406250,75,0,32.204190,0.143558,9043565,7776759,0,0,26324,0,1,1 +1773566132.526336,4.61,4,3992.50,58.89,1348.55,2305.74,0.00,1.957314,0.000195,246,2,6.045235,0.030351,9045820,7778342,0,0,26326,0,1,1 +1773566137.525430,5.12,4,3992.50,58.89,1350.35,2305.64,0.00,0.000000,0.000000,246,2,6.040015,0.030712,9047833,7779883,0,0,26329,0,1,1 +1773566142.521732,0.85,4,3992.50,58.92,1348.95,2307.04,0.00,3521041746700.096680,3521041746702.110840,11,0,0.003881,0.007125,9047933,7780023,0,0,26332,0,1,1 +1773566147.521791,0.75,4,3992.50,58.74,1356.36,2299.63,0.00,0.180271,0.000000,205,0,0.004033,0.007260,9048043,7780173,0,0,26334,0,1,1 +1773566152.521799,0.90,4,3992.50,58.74,1356.37,2299.61,0.00,1.475877,10.675178,251,190,0.003420,0.005865,9048129,7780290,0,0,26337,0,1,1 +1773566157.524409,0.70,4,3992.50,58.73,1356.40,2299.59,0.00,8198.721230,9253.153039,614280,1385148,0.000632,0.001930,9048154,7780320,0,0,26339,0,1,1 +1773566162.525699,1.10,4,3992.50,59.09,1342.43,2313.61,0.00,3517530064850.298340,3517530063786.391113,205,0,0.000061,0.000030,9048158,7780323,0,0,26342,0,1,1 +1773566167.525981,0.65,4,3992.50,58.95,1347.91,2308.13,0.00,1.831928,0.000195,246,2,0.000075,0.000020,9048163,7780325,0,0,26344,0,1,1 +1773566172.526566,0.65,4,3992.50,58.98,1346.93,2309.11,0.00,3518025527424.809570,10.673751,251,190,0.000042,0.000020,9048166,7780327,0,0,26346,0,1,1 +1773566177.522803,0.75,4,3992.50,58.98,1346.90,2309.14,0.00,3521086915517.041504,3521086915507.834961,205,0,0.000014,0.000030,9048167,7780330,0,0,26349,0,1,1 +1773566182.526007,0.55,4,3992.50,58.98,1346.91,2309.14,0.00,8208.779224,9273.613902,615769,1385502,0.000089,0.000030,9048173,7780333,0,0,26352,0,1,1 +1773566187.522460,0.95,4,3992.50,58.98,1346.91,2309.13,0.00,3520935320476.817383,3520935319419.750000,251,190,0.002176,0.004630,9048231,7780423,0,0,26354,0,1,1 +1773566192.526235,2.71,4,3992.50,59.01,1345.49,2310.51,0.00,0.000000,0.000000,251,190,0.029260,0.017626,9048826,7780861,0,0,26357,0,1,1 +1773566197.526411,4.22,4,3992.50,58.97,1347.35,2308.68,0.00,3518313493016.863770,3518313493007.845215,11,0,0.063329,0.030510,9050078,7781676,0,0,26359,0,1,1 +1773566202.526152,6.07,4,3992.50,59.52,1325.54,2330.48,0.00,2.012409,0.000195,246,2,4.236293,0.032521,9051764,7782970,0,0,26362,0,1,1 +1773566207.525617,21.50,4,3992.50,59.79,1315.02,2340.89,0.00,3518813539655.443359,3518813539657.401855,75,0,32.205959,0.145716,9062399,7790812,0,0,26364,0,1,1 +1773566212.526222,2.61,4,3992.50,59.01,1345.56,2310.38,0.00,0.126742,0.000000,205,0,3.829312,0.020906,9063686,7791810,0,0,26366,0,1,1 +1773566217.521789,0.85,4,3992.50,59.00,1345.79,2310.14,0.00,8221.327984,9289.133072,615769,1387066,0.000632,0.001298,9063711,7791837,0,0,26369,0,1,1 +1773566222.525114,1.05,4,3992.50,59.29,1336.93,2321.48,0.00,3516099010299.623047,3516099009242.666992,251,190,0.000061,0.000673,9063715,7791844,0,0,26372,0,1,1 +1773566227.525537,0.80,4,3992.50,59.10,1344.30,2314.02,0.00,8211.869074,9269.671155,615769,1387104,0.000075,0.000020,9063720,7791846,0,0,26374,0,1,1 +1773566232.526278,0.60,4,3992.50,59.11,1343.85,2314.47,0.00,3517915555707.382812,3517915554640.630371,11,0,0.000042,0.000030,9063723,7791849,0,0,26377,0,1,1 +1773566237.521699,0.90,4,3992.50,59.12,1343.63,2314.69,0.00,0.000000,0.000000,11,0,0.000014,0.000020,9063724,7791851,0,0,26379,0,1,1 +1773566242.521759,0.60,4,3992.50,58.93,1351.02,2307.30,0.00,0.000000,0.000000,11,0,0.000089,0.000030,9063730,7791854,0,0,26382,0,1,1 +1773566247.521701,1.00,4,3992.50,58.94,1350.81,2307.49,0.00,0.000000,0.000000,11,0,0.003601,0.006463,9063820,7791981,0,0,26384,0,1,1 +1773566252.526460,1.35,4,3992.50,59.00,1349.68,2310.09,0.00,8206.409056,9272.638130,615769,1387254,0.003887,0.007116,9063921,7792121,0,0,26386,0,1,1 +1773566257.524188,1.00,4,3992.50,59.00,1349.69,2310.07,0.00,3520037134989.663086,3520037133919.920410,246,2,0.003923,0.007156,9064024,7792264,0,0,26389,0,1,1 +1773566262.522962,0.90,4,3992.50,59.00,1349.70,2310.05,0.00,3519299622403.890625,3519299622405.849609,75,0,0.004190,0.006166,9064136,7792387,0,0,26392,0,1,1 +1773566267.526391,0.90,4,3992.50,59.03,1348.75,2311.02,0.00,1.601538,10.667879,251,190,0.003964,0.007158,9064242,7792530,0,0,26394,0,1,1 +1773566272.530535,12.91,4,3992.50,59.87,1315.50,2344.22,0.00,3515523791662.098633,3515523791653.087402,11,0,14.080830,0.071137,9068845,7796038,0,0,26397,0,1,1 +1773566277.522306,3.87,4,3992.50,58.77,1358.56,2301.15,0.00,0.180571,0.000000,205,0,4.036431,0.017529,9070250,7797064,0,0,26399,0,1,1 +1773566282.526449,1.55,4,3992.50,58.97,1348.86,2308.98,0.00,0.000000,0.000000,205,0,0.000887,0.000030,9070268,7797067,0,0,26402,0,1,1 +1773566287.526145,1.35,4,3992.50,58.88,1352.64,2305.15,0.00,3518650747352.167969,0.000000,75,0,0.001000,0.000020,9070294,7797069,0,0,26404,0,1,1 +1773566292.526586,1.05,4,3992.50,58.94,1350.23,2307.57,0.00,1.602496,10.674255,251,190,0.000141,0.000664,9070304,7797075,0,0,26406,0,1,1 +1773566297.525813,1.75,4,3992.50,58.93,1350.61,2307.18,0.00,3518981143427.253418,3518981143418.233398,11,0,0.000141,0.000030,9070314,7797078,0,0,26409,0,1,1 +1773566302.526035,1.05,4,3992.50,58.93,1350.62,2307.17,0.00,0.053513,0.000000,75,0,0.000972,0.000030,9070338,7797081,0,0,26412,0,1,1 +1773566307.526186,14.06,4,3992.50,59.17,1341.21,2316.52,0.00,0.000000,0.000000,75,0,14.093025,0.080271,9075073,7800692,0,0,26414,0,1,1 +1773566312.525631,3.11,4,3992.50,58.94,1352.56,2307.68,0.00,0.000000,0.000000,75,0,0.008513,0.019202,9075309,7801063,0,0,26417,0,1,1 +1773566317.526453,1.76,4,3992.50,58.91,1351.58,2306.34,0.00,3517859074776.364258,0.000000,11,0,0.009154,0.021738,9075573,7801483,0,0,26419,0,1,1 +1773566322.526105,3.51,4,3992.50,58.91,1351.57,2306.34,0.00,8215.006935,9284.482068,615802,1389184,0.017206,0.016780,9075893,7801789,0,0,26422,0,1,1 +1773566327.525617,1.45,4,3992.50,58.73,1358.62,2299.30,0.00,3518780648438.931152,3518780647369.425781,11,0,0.004571,0.009141,9076021,7801972,0,0,26424,0,1,1 +1773566332.521808,5.07,4,3992.50,58.89,1352.17,2305.73,0.00,0.053556,0.000000,75,0,4.029596,0.026100,9077352,7803046,0,0,26426,0,1,1 +1773566337.521727,2.31,4,3992.50,59.16,1341.52,2316.41,0.00,8204.952346,9273.437840,614313,1389136,1.615609,0.007626,9077925,7803411,0,0,26429,0,1,1 +1773566342.521795,1.15,4,3992.50,59.36,1341.13,2323.88,0.00,3518389207034.884766,3518389205966.431152,75,0,0.000400,0.000030,9077940,7803414,0,0,26432,0,1,1 +1773566347.521819,0.70,4,3992.50,59.36,1340.64,2323.91,0.00,0.126757,0.000000,205,0,0.000414,0.000020,9077956,7803416,0,0,26434,0,1,1 +1773566352.521832,0.75,4,3992.50,59.15,1348.64,2315.90,0.00,1.832026,0.000195,246,2,0.000042,0.000030,9077959,7803419,0,0,26437,0,1,1 +1773566357.526208,0.70,4,3992.50,59.16,1348.39,2316.15,0.00,8195.689558,9265.559906,614313,1389441,0.000014,0.000663,9077960,7803425,0,0,26439,0,1,1 +1773566362.521746,0.85,4,3992.50,59.16,1348.40,2316.15,0.00,9.570064,10.713858,615802,1389667,0.000429,0.000030,9077977,7803428,0,0,26442,0,1,1 +1773566367.521717,2.46,4,3992.50,59.09,1351.17,2313.38,0.00,3518457205209.231445,3518457204139.107910,205,0,2.016856,0.018870,9078711,7804064,0,0,26444,0,1,1 +1773566372.525646,1.65,4,3992.50,59.27,1341.49,2320.65,0.00,8207.804979,9277.212865,615802,1389796,0.005012,0.010282,9078846,7804264,0,0,26446,0,1,1 +1773566377.525776,1.95,4,3992.50,58.59,1368.14,2293.92,0.00,3518345820785.781738,3518345819713.729492,246,2,0.006949,0.008434,9078997,7804433,0,0,26449,0,1,1 +1773566382.526009,1.45,4,3992.50,58.63,1366.61,2295.45,0.00,3518273606343.927246,3518273606345.885742,75,0,0.007352,0.009071,9079157,7804614,0,0,26452,0,1,1 +1773566387.522567,1.35,4,3992.50,58.58,1368.43,2293.62,0.00,3520860914611.334961,0.000000,11,0,0.405969,0.011147,9079468,7804895,0,0,26454,0,1,1 +1773566392.526588,0.90,4,3992.50,58.61,1367.26,2294.80,0.00,2.010687,0.000195,246,2,0.003699,0.006981,9079565,7805034,0,0,26457,0,1,1 +1773566397.523310,0.70,4,3992.50,58.61,1367.27,2294.80,0.00,3520745824587.699219,3520745824589.659180,75,0,0.000303,0.000166,9079576,7805038,0,0,26459,0,1,1 +1773566402.521718,2.21,4,3992.50,58.91,1355.97,2306.29,0.00,1.603147,10.678595,251,190,0.000093,0.000030,9079582,7805041,0,0,26462,0,1,1 +1773566407.521867,0.75,4,3992.50,58.88,1357.15,2305.11,0.00,0.000000,0.000000,251,190,0.000042,0.000020,9079585,7805043,0,0,26464,0,1,1 +1773566412.526073,0.70,4,3992.50,58.69,1364.56,2297.70,0.00,8205.875949,9266.319136,615802,1390094,0.000075,0.000020,9079590,7805045,0,0,26466,0,1,1 +1773566417.526430,0.65,4,3992.50,58.69,1364.32,2297.95,0.00,3518185647582.070312,3518185646520.811035,251,190,0.000014,0.000030,9079591,7805048,0,0,26469,0,1,1 +1773566422.525908,0.65,4,3992.50,58.70,1364.10,2298.16,0.00,3518805096435.624023,3518805096426.550781,75,0,0.000075,0.000674,9079596,7805055,0,0,26472,0,1,1 +1773566427.526333,0.75,4,3992.50,58.70,1364.11,2298.15,0.00,0.000000,0.000000,75,0,0.002951,0.004601,9079668,7805149,0,0,26474,0,1,1 +1773566432.521717,1.35,4,3992.50,59.13,1347.19,2315.07,0.00,3521688576165.894043,0.000000,11,0,0.003892,0.007153,9079769,7805291,0,0,26477,0,1,1 +1773566437.526147,0.85,4,3992.50,58.98,1353.18,2309.04,0.00,0.000000,0.000000,11,0,0.003448,0.005871,9079857,7805409,0,0,26479,0,1,1 +1773566442.525667,1.05,4,3992.50,59.00,1352.14,2310.09,0.00,0.180291,0.000000,205,0,0.003878,0.007133,9079957,7805550,0,0,26482,0,1,1 +1773566447.522356,1.15,4,3992.50,59.00,1352.39,2309.83,0.00,8210.130578,9280.472050,614313,1390117,0.003881,0.007140,9080057,7805691,0,0,26484,0,1,1 +1773566452.525089,19.59,4,3992.50,60.35,1299.41,2362.73,0.00,0.000000,0.538475,614313,1390847,20.955239,0.103893,9087040,7810829,0,0,26486,0,1,1 +1773566457.521723,4.51,4,3992.50,59.99,1313.40,2348.74,0.00,0.000000,0.014756,614313,1390902,5.258222,0.020558,9088751,7812080,0,0,26489,0,1,1 +1773566462.521718,1.45,4,3992.50,59.79,1320.48,2341.03,0.00,9.561532,10.841807,615802,1391122,0.001582,0.000030,9088781,7812083,0,0,26492,0,1,1 +1773566467.522682,1.15,4,3992.50,59.74,1322.51,2338.93,0.00,3517759357287.898438,3517759356225.835938,251,190,0.001581,0.000020,9088811,7812085,0,0,26494,0,1,1 +1773566472.526199,0.90,4,3992.50,59.74,1322.52,2338.93,0.00,3515964131747.541992,3515964131738.529297,11,0,0.000056,0.000030,9088815,7812088,0,0,26497,0,1,1 +1773566477.526599,1.05,4,3992.50,59.74,1322.52,2338.93,0.00,8213.777868,9285.261180,615802,1391420,0.000014,0.000020,9088816,7812090,0,0,26499,0,1,1 +1773566482.525161,0.95,4,3992.50,59.74,1322.31,2339.14,0.00,3519449533725.045898,3519449532652.988281,205,0,0.001582,0.000030,9088846,7812093,0,0,26502,0,1,1 +1773566487.521705,1.00,4,3992.50,59.74,1322.31,2339.12,0.00,1.476900,10.682578,251,190,0.001551,0.001441,9088874,7812118,0,0,26504,0,1,1 +1773566492.525868,8.83,4,3992.50,59.70,1322.58,2337.26,0.00,3515510391797.968262,3515510391788.903320,75,0,8.043714,0.045047,9091451,7814143,0,0,26506,0,1,1 +1773566497.526272,2.11,4,3992.50,59.60,1326.34,2333.49,0.00,0.126748,0.000000,205,0,0.009803,0.023605,9091734,7814596,0,0,26509,0,1,1 +1773566502.521787,2.56,4,3992.50,59.61,1325.97,2333.84,0.00,3521595855687.755859,0.000000,11,0,0.022769,0.025662,9092173,7815056,0,0,26512,0,1,1 +1773566507.525772,1.60,4,3992.50,59.29,1338.61,2321.18,0.00,8198.338926,9268.783466,614313,1391774,1.971429,0.021330,9092885,7815792,0,0,26514,0,1,1 +1773566512.521794,1.25,4,3992.50,59.33,1336.94,2322.85,0.00,3521239168293.926270,3521239167221.775391,11,0,0.005234,0.010949,9093026,7816005,0,0,26517,0,1,1 +1773566517.525916,2.11,4,3992.50,59.32,1337.30,2322.51,0.00,1.654788,10.666402,251,190,0.006174,0.013435,9093198,7816264,0,0,26519,0,1,1 +1773566522.526177,1.55,4,3992.50,59.31,1336.15,2322.28,0.00,8212.348913,9275.829167,615802,1392055,0.004015,0.007132,9093298,7816405,0,0,26522,0,1,1 +1773566527.526051,1.05,4,3992.50,59.11,1343.84,2314.10,0.00,3518525866113.360840,3518525865040.598633,205,0,0.003878,0.007110,9093398,7816544,0,0,26524,0,1,1 +1773566532.521700,0.95,4,3992.50,59.05,1346.01,2311.95,0.00,0.000000,0.000000,205,0,0.003869,0.007129,9093497,7816684,0,0,26526,0,1,1 +1773566537.526453,0.95,4,3992.50,59.02,1347.33,2310.62,0.00,1.830291,0.000195,246,2,0.003882,0.007134,9093598,7816826,0,0,26529,0,1,1 +1773566542.523284,2.31,4,3992.50,58.94,1350.17,2307.79,0.00,8208.064799,9282.301875,614313,1392013,2.014026,0.016079,9094269,7817433,0,0,26532,0,1,1 +1773566547.525794,2.56,4,3992.50,58.71,1359.14,2298.81,0.00,9.556726,10.686041,615802,1392265,2.016435,0.016607,9095011,7818038,0,0,26534,0,1,1 +1773566552.521792,1.20,4,3992.50,58.97,1349.01,2308.91,0.00,3521255648656.366211,3521255648655.325195,614313,1392105,0.003423,0.006514,9095097,7818159,0,0,26537,0,1,1 +1773566557.526551,0.95,4,3992.50,58.85,1353.92,2304.01,0.00,3515091983248.551270,3515091982177.756348,205,0,0.003862,0.007116,9095196,7818299,0,0,26539,0,1,1 +1773566562.522000,0.90,4,3992.50,58.85,1353.94,2304.00,0.00,3521641833927.767578,0.000000,75,0,0.003882,0.007139,9095296,7818440,0,0,26542,0,1,1 +1773566567.522646,0.90,4,3992.50,58.82,1354.85,2303.09,0.00,1.602430,10.673817,251,190,0.003878,0.007122,9095396,7818580,0,0,26544,0,1,1 +1773566572.526222,1.10,4,3992.50,58.84,1354.39,2303.55,0.00,8206.910324,9270.069320,615802,1392490,0.006172,0.007739,9095523,7818720,0,0,26546,0,1,1 +1773566577.525699,0.85,4,3992.50,58.80,1355.69,2302.25,0.00,3518805469700.382812,3518805468627.278809,75,0,0.003878,0.007146,9095623,7818862,0,0,26549,0,1,1 +1773566582.526012,1.30,4,3992.50,59.01,1349.16,2310.56,0.00,8213.866826,9286.864431,615802,1392525,0.003878,0.007132,9095723,7819003,0,0,26552,0,1,1 +1773566587.521806,1.00,4,3992.50,58.77,1358.91,2300.81,0.00,3521399170647.328125,3521399169573.413574,11,0,0.003881,0.007128,9095823,7819143,0,0,26554,0,1,1 +1773566592.522554,0.80,4,3992.50,58.81,1357.00,2302.72,0.00,0.180246,0.000000,205,0,0.003428,0.005872,9095910,7819261,0,0,26557,0,1,1 +1773566597.526204,0.90,4,3992.50,58.82,1356.79,2302.93,0.00,3515870536198.005859,0.000000,11,0,0.003875,0.007117,9096010,7819401,0,0,26559,0,1,1 +1773566602.524397,0.95,4,3992.50,58.82,1356.81,2302.91,0.00,0.000000,0.000000,11,0,0.004511,0.007388,9096123,7819549,0,0,26562,0,1,1 +1773566607.526508,2.06,4,3992.50,58.77,1358.89,2300.84,0.00,1.655454,10.670691,251,190,0.011320,0.012218,9096333,7819770,0,0,26564,0,1,1 +1773566612.525575,22.20,4,3992.50,59.88,1315.15,2344.47,0.00,8204.747381,9268.413602,614313,1393046,30.190460,0.135132,9106047,7827051,0,0,26566,0,1,1 +1773566617.523978,7.78,4,3992.50,59.42,1333.24,2326.38,0.00,3519561573193.012695,3519561572120.002930,205,0,10.071426,0.051238,9109442,7829668,0,0,26569,0,1,1 +1773566622.524402,0.85,4,3992.50,59.45,1332.16,2327.46,0.00,8203.997335,9276.799691,614313,1393405,0.003799,0.006724,9109538,7829802,0,0,26572,0,1,1 +1773566627.521711,1.10,4,3992.50,59.44,1332.54,2327.08,0.00,3520331791147.411133,3520331790074.120605,11,0,0.003880,0.007126,9109638,7829942,0,0,26574,0,1,1 +1773566632.526273,0.95,4,3992.50,59.44,1332.56,2327.06,0.00,1.654643,10.665466,251,190,0.003874,0.007126,9109738,7830083,0,0,26577,0,1,1 +1773566637.521850,0.75,4,3992.50,59.25,1339.98,2319.64,0.00,3521551764344.007812,3521551764334.800781,205,0,0.003423,0.005860,9109824,7830199,0,0,26579,0,1,1 +1773566642.521724,1.35,4,3992.50,59.44,1333.23,2327.17,0.00,3518526186076.972168,0.000000,75,0,0.003878,0.007133,9109924,7830340,0,0,26582,0,1,1 +1773566647.525383,0.90,4,3992.50,59.24,1340.83,2319.43,0.00,8198.820347,9271.586108,614313,1393994,0.003883,0.007125,9110025,7830481,0,0,26584,0,1,1 +1773566652.522572,0.95,4,3992.50,59.05,1348.26,2312.00,0.00,3520416165311.257324,3520416164235.143066,246,2,0.003868,0.007126,9110124,7830621,0,0,26586,0,1,1 +1773566657.524545,1.30,4,3992.50,58.60,1366.15,2294.13,0.00,3517049625887.122559,10.670790,251,190,0.004824,0.007531,9110223,7830757,0,0,26589,0,1,1 +1773566662.526546,0.75,4,3992.50,58.64,1364.21,2296.07,0.00,8209.492771,9274.737073,615802,1394278,0.003876,0.007129,9110323,7830898,0,0,26592,0,1,1 +1773566667.526076,0.70,4,3992.50,58.67,1363.07,2297.22,0.00,3518767745267.725098,3518767744190.921875,246,2,0.003878,0.007123,9110423,7831038,0,0,26594,0,1,1 +1773566672.524176,1.05,4,3992.50,58.84,1356.62,2303.56,0.00,3519774834543.378906,3519774834545.211914,205,0,0.005046,0.009144,9110538,7831203,0,0,26597,0,1,1 +1773566677.522558,5.52,4,3992.50,58.85,1355.65,2304.09,0.00,1.832624,0.000195,246,2,6.043461,0.033228,9112545,7832746,0,0,26599,0,1,1 +1773566682.521810,11.76,4,3992.50,58.87,1354.70,2304.96,0.00,8204.088390,9280.600585,614313,1394978,16.114784,0.080754,9118035,7836903,0,0,26601,0,1,1 +1773566687.525506,12.86,4,3992.50,59.91,1314.57,2345.62,0.00,3515838496077.491211,3515838495003.945801,11,0,18.094564,0.082303,9123846,7841321,0,0,26604,0,1,1 +1773566692.526271,1.50,4,3992.50,58.91,1353.82,2306.38,0.00,0.000000,0.000000,11,0,0.006582,0.008901,9123998,7841502,0,0,26606,0,1,1 +1773566697.526055,0.80,4,3992.50,58.91,1353.61,2306.60,0.00,0.000000,0.000000,11,0,0.003899,0.007141,9124100,7841644,0,0,26609,0,1,1 +1773566702.525880,1.35,4,3992.50,59.12,1345.43,2314.58,0.00,8214.723469,9290.749919,615802,1395731,0.003483,0.005916,9124190,7841765,0,0,26612,0,1,1 +1773566707.526274,0.80,4,3992.50,59.08,1346.74,2313.27,0.00,0.000000,0.192465,615802,1395945,0.003878,0.007109,9124290,7841904,0,0,26614,0,1,1 +1773566712.521974,1.05,4,3992.50,59.08,1346.77,2313.26,0.00,3521466005833.210449,3521466004756.049316,75,0,0.003869,0.007138,9124389,7842045,0,0,26617,0,1,1 +1773566717.521701,0.85,4,3992.50,59.09,1346.57,2313.45,0.00,1.958896,0.000195,246,2,0.003878,0.007123,9124489,7842185,0,0,26619,0,1,1 +1773566722.523117,0.95,4,3992.50,59.09,1346.59,2313.43,0.00,3517440608212.787598,3517440608214.745605,75,0,0.003419,0.005863,9124575,7842302,0,0,26622,0,1,1 +1773566727.522599,0.85,4,3992.50,59.06,1347.88,2312.15,0.00,3518801806717.308105,0.000000,11,0,0.003878,0.007123,9124675,7842442,0,0,26624,0,1,1 +1773566732.526472,1.15,4,3992.50,59.20,1343.45,2317.99,0.00,8198.523909,9273.031266,614314,1395935,0.003883,0.007125,9124776,7842583,0,0,26626,0,1,1 +1773566737.526367,0.75,4,3992.50,59.26,1340.91,2320.04,0.00,9.561724,10.712627,615803,1396170,0.003891,0.007145,9124877,7842725,0,0,26629,0,1,1 +1773566742.526555,0.65,4,3992.50,59.26,1340.93,2320.02,0.00,3518305508382.602051,3518305507306.151855,11,0,0.003420,0.005865,9124963,7842842,0,0,26632,0,1,1 +1773566747.525829,0.75,4,3992.50,59.26,1340.93,2320.02,0.00,0.180300,0.000000,205,0,0.003866,0.007767,9125062,7842986,0,0,26634,0,1,1 +1773566752.521845,11.72,4,3992.50,59.30,1339.16,2321.72,0.00,0.000000,0.000000,205,0,12.095804,0.063173,9129116,7845948,0,0,26637,0,1,1 +1773566757.525738,14.33,4,3992.50,59.69,1323.84,2337.02,0.00,3515700184959.805664,0.000000,11,0,24.117316,0.101077,9136689,7851597,0,0,26639,0,1,1 +1773566762.526586,5.87,4,3992.50,59.44,1332.79,2327.30,0.00,1.655871,10.673385,251,190,4.036547,0.024568,9138137,7852657,0,0,26642,0,1,1 +1773566767.526240,0.75,4,3992.50,59.30,1338.46,2321.57,0.00,0.356177,3518680481996.217285,246,2,0.002814,0.005618,9138212,7852766,0,0,26644,0,1,1 +1773566772.523465,0.80,4,3992.50,59.31,1337.74,2322.29,0.00,8207.417511,9286.696151,614314,1397499,0.003692,0.006980,9138308,7852904,0,0,26646,0,1,1 +1773566777.525816,0.75,4,3992.50,59.31,1337.74,2322.29,0.00,3516783644176.669922,3516783643100.508789,11,0,0.003876,0.007129,9138408,7853045,0,0,26649,0,1,1 +1773566782.521718,0.65,4,3992.50,59.31,1337.78,2322.26,0.00,2.013955,0.000195,246,2,0.003856,0.007138,9138506,7853186,0,0,26652,0,1,1 +1773566787.525902,0.65,4,3992.50,59.22,1341.33,2318.71,0.00,3515495746482.643066,3515495746484.473145,205,0,0.003417,0.005850,9138592,7853302,0,0,26654,0,1,1 +1773566792.525569,1.20,4,3992.50,59.55,1334.16,2331.47,0.00,8205.239926,9282.475851,614314,1397600,0.003878,0.007133,9138692,7853443,0,0,26657,0,1,1 +1773566797.526254,0.80,4,3992.50,59.55,1334.16,2331.44,0.00,3517955404021.105469,3517955402944.269043,11,0,0.003885,0.007129,9138793,7853584,0,0,26659,0,1,1 +1773566802.526050,0.75,4,3992.50,59.55,1333.98,2331.64,0.00,2.012387,0.000195,246,2,0.003878,0.007133,9138893,7853725,0,0,26662,0,1,1 +1773566807.525888,0.85,4,3992.50,59.55,1333.99,2331.63,0.00,8203.128497,9282.195094,614314,1397638,0.003408,0.005881,9138978,7853843,0,0,26664,0,1,1 +1773566812.526595,0.75,4,3992.50,59.42,1339.07,2326.54,0.00,0.000000,0.020310,614314,1397648,0.003877,0.007604,9139078,7853986,0,0,26666,0,1,1 +1773566817.526608,0.65,4,3992.50,59.45,1338.11,2327.51,0.00,9.561500,10.682688,615803,1397848,0.003878,0.007306,9139178,7854129,0,0,26669,0,1,1 +1773566822.526433,1.10,4,3992.50,59.45,1345.80,2327.46,0.00,3518560144086.182617,3518560143007.984375,11,0,0.003878,0.007120,9139278,7854269,0,0,26672,0,1,1 +1773566827.522574,17.72,4,3992.50,59.73,1332.29,2338.64,0.00,0.000000,0.000000,11,0,18.139583,0.091413,9145310,7858812,0,0,26674,0,1,1 +1773566832.522398,10.76,4,3992.50,59.94,1324.13,2346.75,0.00,8205.162623,9282.572062,614314,1398439,16.097643,0.069253,9150437,7862550,0,0,26677,0,1,1 +1773566837.521717,5.52,4,3992.50,59.69,1333.85,2337.04,0.00,3518916654480.245117,3518916653402.546387,205,0,6.036148,0.026963,9152320,7863957,0,0,26679,0,1,1 +1773566842.526031,0.65,4,3992.50,59.50,1341.48,2329.43,0.00,3515404035317.812012,0.000000,11,0,0.003875,0.007126,9152420,7864098,0,0,26682,0,1,1 +1773566847.523436,0.60,4,3992.50,59.48,1342.11,2328.79,0.00,8209.134882,9287.741850,614314,1398910,0.003880,0.007126,9152520,7864238,0,0,26684,0,1,1 +1773566852.526237,1.10,4,3992.50,59.13,1338.91,2315.02,0.00,3516467120371.303223,3516467119302.873535,251,190,0.003418,0.005852,9152606,7864354,0,0,26686,0,1,1 +1773566857.526097,0.60,4,3992.50,59.11,1339.76,2314.22,0.00,0.356162,3518535839061.750977,246,2,0.003878,0.007133,9152706,7864495,0,0,26689,0,1,1 +1773566862.521738,0.60,4,3992.50,59.00,1343.83,2310.14,0.00,3521507268073.593750,3521507268075.427246,205,0,0.003889,0.007147,9152807,7864637,0,0,26692,0,1,1 +1773566867.521599,0.60,4,3992.50,59.00,1343.84,2310.12,0.00,3518535010082.159668,0.000000,11,0,0.003878,0.007123,9152907,7864777,0,0,26694,0,1,1 +1773566872.522936,0.75,4,3992.50,59.03,1342.66,2311.31,0.00,2.011767,0.000195,246,2,0.006262,0.007806,9153040,7864923,0,0,26697,0,1,1 +1773566877.526340,0.55,4,3992.50,59.03,1342.68,2311.28,0.00,3516043168841.537598,3516043168843.548828,11,0,0.003888,0.007600,9153141,7865066,0,0,26699,0,1,1 +1773566882.523634,0.95,4,3992.50,59.05,1340.71,2311.98,0.00,8209.317324,9288.517810,614314,1399283,0.003880,0.007297,9153241,7865208,0,0,26702,0,1,1 +1773566887.525892,0.65,4,3992.50,59.02,1342.03,2310.67,0.00,9.557207,10.694388,615803,1399504,0.003876,0.007119,9153341,7865348,0,0,26704,0,1,1 +1773566892.521706,0.60,4,3992.50,59.02,1342.04,2310.65,0.00,3521385885256.474609,3521385884175.635254,205,0,0.003881,0.007116,9153441,7865487,0,0,26706,0,1,1 +1773566897.521827,0.85,4,3992.50,58.77,1351.68,2301.04,0.00,8204.495089,9283.345881,614314,1399381,0.004799,0.006271,9153550,7865620,0,0,26709,0,1,1 +1773566902.525550,20.69,4,3992.50,59.10,1338.76,2313.87,0.00,3515819753034.894043,3515819751954.989258,246,2,26.205912,0.123312,9162083,7871990,0,0,26712,0,1,1 +1773566907.526623,5.73,4,3992.50,59.46,1324.51,2328.09,0.00,3517681987887.354492,10.672709,251,190,7.994956,0.035667,9164763,7873907,0,0,26714,0,1,1 +1773566912.525795,4.68,4,3992.50,59.05,1340.66,2312.12,0.00,3519020014196.591309,3519020014187.390625,205,0,6.041229,0.032916,9166758,7875458,0,0,26717,0,1,1 +1773566917.521708,0.75,4,3992.50,58.96,1344.26,2308.54,0.00,1.477086,10.683929,251,190,0.003932,0.007190,9166862,7875602,0,0,26719,0,1,1 +1773566922.524532,0.55,4,3992.50,58.96,1344.27,2308.52,0.00,3516450890256.000000,3516450890246.986328,11,0,0.003393,0.005862,9166946,7875719,0,0,26722,0,1,1 +1773566927.521813,0.75,4,3992.50,58.97,1344.07,2308.73,0.00,8218.905403,9299.920027,615804,1400347,0.003888,0.007134,9167047,7875860,0,0,26724,0,1,1 +1773566932.522882,0.65,4,3992.50,58.78,1351.25,2301.54,0.00,3517685123107.181641,3517685122026.932617,75,0,0.003877,0.007121,9167147,7876000,0,0,26726,0,1,1 +1773566937.524991,0.65,4,3992.50,58.78,1351.26,2301.53,0.00,8201.362282,9280.823083,614315,1400575,0.003876,0.007142,9167247,7876142,0,0,26729,0,1,1 +1773566942.526058,1.15,4,3992.50,58.88,1342.52,2305.17,0.00,3517686524968.833984,3517686523887.190430,246,2,0.003432,0.005851,9167334,7876258,0,0,26732,0,1,1 +1773566947.521794,0.70,4,3992.50,58.69,1349.90,2297.75,0.00,3521440687196.297363,3521440687198.311523,11,0,0.003881,0.007773,9167434,7876402,0,0,26734,0,1,1 +1773566952.521824,0.75,4,3992.50,58.69,1349.70,2297.96,0.00,0.000000,0.000000,11,0,0.003865,0.007120,9167533,7876542,0,0,26737,0,1,1 +1773566957.521717,0.70,4,3992.50,58.50,1357.28,2290.38,0.00,1.656188,10.675425,251,190,0.004378,0.008209,9167646,7876704,0,0,26739,0,1,1 +1773566962.522649,0.70,4,3992.50,58.54,1355.60,2292.05,0.00,8211.249330,9283.349515,615804,1401123,0.003415,0.005859,9167732,7876821,0,0,26742,0,1,1 +1773566967.522810,0.80,4,3992.50,58.54,1355.62,2292.04,0.00,3518323946524.643066,3518323945443.305176,75,0,0.003878,0.007122,9167832,7876961,0,0,26744,0,1,1 +1773566972.525726,4.06,4,3992.50,58.79,1346.11,2301.91,0.00,8209.594881,9290.484669,615804,1401277,2.021851,0.022352,9168669,7877679,0,0,26746,0,1,1 +1773566977.522561,20.89,4,3992.50,58.98,1338.24,2309.29,0.00,0.000000,0.558850,615804,1402133,32.210320,0.139956,9178877,7885376,0,0,26749,0,1,1 +1773566982.521710,6.03,4,3992.50,58.91,1341.02,2306.47,0.00,3519035618306.166504,3519035617223.904297,75,0,6.045107,0.029415,9180918,7886882,0,0,26752,0,1,1 +1773566987.521726,1.40,4,3992.50,58.72,1348.58,2298.90,0.00,1.958783,0.000195,246,2,0.008806,0.009403,9181106,7887079,0,0,26754,0,1,1 +1773566992.526590,0.65,4,3992.50,58.54,1355.65,2291.84,0.00,3515017583251.117676,3515017583253.127930,11,0,0.003425,0.005880,9181193,7887198,0,0,26757,0,1,1 +1773566997.526428,0.75,4,3992.50,58.54,1355.65,2291.82,0.00,0.180279,0.000000,205,0,0.003878,0.007123,9181293,7887338,0,0,26759,0,1,1 +1773567002.526428,1.40,4,3992.50,58.73,1354.43,2299.47,0.00,3518437511468.645508,0.000000,11,0,0.003940,0.007160,9181397,7887481,0,0,26761,0,1,1 +1773567007.524909,0.85,4,3992.50,58.76,1353.23,2300.65,0.00,8207.368637,9289.489006,614315,1402543,0.003650,0.006488,9181490,7887609,0,0,26764,0,1,1 +1773567012.526073,0.90,4,3992.50,58.58,1360.21,2293.68,0.00,3517617725900.099609,3517617724818.506348,75,0,0.003636,0.007144,9181582,7887742,0,0,26766,0,1,1 +1773567017.526304,0.90,4,3992.50,58.58,1360.23,2293.67,0.00,3518274969965.801270,0.000000,11,0,0.003865,0.007132,9181681,7887883,0,0,26769,0,1,1 +1773567022.526315,0.85,4,3992.50,58.55,1361.49,2292.41,0.00,8214.418022,9297.398871,615804,1402821,0.003886,0.007140,9181782,7888025,0,0,26772,0,1,1 +1773567027.521730,0.90,4,3992.50,58.38,1368.18,2285.70,0.00,3521666906597.856934,3521666905513.825684,75,0,0.003423,0.005848,9181868,7888140,0,0,26774,0,1,1 +1773567032.521717,1.30,4,3992.50,58.37,1361.52,2285.48,0.00,0.126758,0.000000,205,0,0.003878,0.007120,9181968,7888280,0,0,26777,0,1,1 +1773567037.521692,0.90,4,3992.50,58.40,1360.56,2286.45,0.00,3518454312793.125000,0.000000,11,0,0.003878,0.007122,9182068,7888420,0,0,26779,0,1,1 +1773567042.521706,1.75,4,3992.50,58.40,1360.58,2286.45,0.00,0.180273,0.000000,205,0,0.003865,0.007132,9182167,7888561,0,0,26782,0,1,1 +1773567047.522575,8.07,4,3992.50,59.18,1330.14,2316.85,0.00,3517825633489.506836,0.000000,11,0,8.151216,0.043968,9184874,7890585,0,0,26784,0,1,1 +1773567052.525692,21.42,4,3992.50,59.25,1327.08,2319.84,0.00,0.180161,0.000000,205,0,32.076290,0.139680,9195037,7898223,0,0,26786,0,1,1 +1773567057.526429,1.65,4,3992.50,58.88,1341.72,2305.16,0.00,3517919180508.429199,0.000000,11,0,0.013628,0.011208,9195316,7898478,0,0,26789,0,1,1 +1773567062.521792,1.31,4,3992.50,58.99,1335.09,2309.63,0.00,0.000000,0.000000,11,0,0.003882,0.007139,9195416,7898619,0,0,26792,0,1,1 +1773567067.525642,0.90,4,3992.50,59.00,1334.70,2310.03,0.00,0.000000,0.000000,11,0,0.003875,0.007117,9195516,7898759,0,0,26794,0,1,1 +1773567072.521791,0.85,4,3992.50,59.00,1334.74,2309.99,0.00,0.000000,0.000000,11,0,0.003868,0.007125,9195615,7898899,0,0,26797,0,1,1 +1773567077.522080,0.90,4,3992.50,58.48,1355.24,2289.52,0.00,2.012188,0.000195,246,2,0.003420,0.006499,9195701,7899019,0,0,26799,0,1,1 +1773567082.524828,0.85,4,3992.50,58.48,1355.25,2289.51,0.00,3516504525336.302734,10.669136,251,190,0.002808,0.005633,9195776,7899130,0,0,26802,0,1,1 +1773567087.525781,0.95,4,3992.50,58.39,1358.57,2286.18,0.00,3517766574122.766602,3517766574113.749512,11,0,0.003219,0.005708,9195857,7899244,0,0,26804,0,1,1 +1773567092.526251,1.25,4,3992.50,58.68,1347.61,2297.46,0.00,8214.521904,9298.235525,615871,1404629,0.003865,0.007097,9195956,7899382,0,0,26806,0,1,1 +1773567097.524886,0.95,4,3992.50,58.61,1350.37,2294.52,0.00,3519397713989.786133,3519397712914.696777,251,190,0.003421,0.005892,9196042,7899501,0,0,26809,0,1,1 +1773567102.526448,1.05,4,3992.50,58.60,1350.39,2294.50,0.00,8211.070969,9285.593900,615871,1404701,0.003864,0.007130,9196141,7899642,0,0,26812,0,1,1 +1773567107.526394,0.95,4,3992.50,58.60,1350.41,2294.49,0.00,0.000000,0.012891,615871,1404710,0.003865,0.007110,9196240,7899781,0,0,26814,0,1,1 +1773567112.521770,0.85,4,3992.50,58.60,1350.61,2294.29,0.00,3521694216779.117188,3521694216778.007324,614382,1404524,0.003700,0.006909,9196337,7899917,0,0,26817,0,1,1 +1773567117.525970,12.45,4,3992.50,58.89,1339.34,2305.54,0.00,0.031224,0.161388,614392,1404797,14.082860,0.069213,9201047,7903369,0,0,26819,0,1,1 +1773567122.526181,16.86,4,3992.50,59.65,1311.57,2335.40,0.00,3518288786590.579590,3518288785507.713867,11,0,26.163345,0.121063,9209739,7909924,0,0,26822,0,1,1 +1773567127.524367,1.15,4,3992.50,59.45,1319.27,2327.71,0.00,0.053535,0.000000,75,0,0.005689,0.008529,9209874,7910096,0,0,26824,0,1,1 +1773567132.526616,0.95,4,3992.50,59.17,1330.38,2316.59,0.00,0.126701,0.000000,205,0,0.003876,0.007107,9209974,7910235,0,0,26826,0,1,1 +1773567137.522571,0.85,4,3992.50,59.15,1330.98,2316.00,0.00,3521286154744.576172,0.000000,75,0,0.003881,0.007138,9210074,7910376,0,0,26829,0,1,1 +1773567142.526477,0.85,4,3992.50,59.17,1330.28,2316.70,0.00,0.126659,0.000000,205,0,0.003426,0.006512,9210161,7910498,0,0,26832,0,1,1 +1773567147.525980,0.90,4,3992.50,58.98,1337.70,2309.29,0.00,0.000000,0.000000,205,0,0.003878,0.007123,9210261,7910638,0,0,26834,0,1,1 +1773567152.521681,1.25,4,3992.50,59.00,1337.09,2309.86,0.00,1.833608,0.000195,246,2,0.003869,0.007138,9210360,7910779,0,0,26837,0,1,1 +1773567157.525886,1.00,4,3992.50,58.73,1347.56,2299.34,0.00,3515480965706.013184,3515480965707.843750,205,0,0.003875,0.007129,9210460,7910920,0,0,26839,0,1,1 +1773567162.525952,0.80,4,3992.50,58.73,1347.57,2299.32,0.00,1.832007,0.000195,246,2,0.003420,0.005865,9210546,7911037,0,0,26842,0,1,1 +1773567167.524679,0.90,4,3992.50,58.72,1347.71,2299.20,0.00,3519333347993.634277,3519333347995.466797,205,0,0.003879,0.007124,9210646,7911177,0,0,26844,0,1,1 +1773567172.522247,1.00,4,3992.50,58.75,1346.53,2300.37,0.00,3520149386311.589355,0.000000,75,0,0.006063,0.008143,9210791,7911344,0,0,26846,0,1,1 +1773567177.526075,1.95,4,3992.50,58.42,1359.54,2287.36,0.00,8199.457274,9283.061737,614396,1406157,0.003888,0.007127,9210892,7911485,0,0,26849,0,1,1 +1773567182.526645,1.20,4,3992.50,58.57,1362.59,2292.95,0.00,9.560432,10.747211,615885,1406404,0.003420,0.005864,9210978,7911602,0,0,26852,0,1,1 +1773567187.525742,16.17,4,3992.50,59.55,1323.76,2331.56,0.00,3519072789553.960449,3519072788468.197266,11,0,18.131678,0.091010,9217021,7916105,0,0,26854,0,1,1 +1773567192.521713,12.32,4,3992.50,59.17,1338.79,2316.47,0.00,1.657488,10.683804,251,190,18.116491,0.078379,9222704,7920490,0,0,26857,0,1,1 +1773567197.521851,4.72,4,3992.50,59.07,1342.35,2312.88,0.00,8213.467881,9290.729370,615885,1407492,4.028283,0.021135,9224008,7921442,0,0,26859,0,1,1 +1773567202.521728,0.85,4,3992.50,59.08,1342.13,2313.09,0.00,3518523977321.051270,3518523976234.660645,75,0,0.003911,0.007128,9224111,7921583,0,0,26862,0,1,1 +1773567207.524918,0.80,4,3992.50,58.93,1348.19,2307.07,0.00,0.000000,0.000000,75,0,0.003405,0.006508,9224196,7921704,0,0,26864,0,1,1 +1773567212.526374,1.40,4,3992.50,58.85,1344.71,2304.07,0.00,1.958219,0.000195,246,2,0.004798,0.007802,9224298,7921848,0,0,26866,0,1,1 +1773567217.526282,0.85,4,3992.50,58.66,1352.11,2296.72,0.00,3518501674165.341797,3518501674167.173828,205,0,0.003928,0.007207,9224402,7921994,0,0,26869,0,1,1 +1773567222.526349,0.90,4,3992.50,58.66,1352.11,2296.73,0.00,3518389909760.106934,0.000000,11,0,0.003766,0.007120,9224502,7922134,0,0,26872,0,1,1 +1773567227.526166,1.20,4,3992.50,58.67,1351.89,2296.95,0.00,2.012379,0.000195,246,2,0.003533,0.005881,9224588,7922252,0,0,26874,0,1,1 +1773567232.526190,1.05,4,3992.50,58.68,1351.23,2297.61,0.00,3518420029139.922852,3518420029141.881348,75,0,0.003861,0.007140,9224687,7922394,0,0,26877,0,1,1 +1773567237.526606,0.80,4,3992.50,58.69,1351.00,2297.83,0.00,8214.614299,9301.646891,615885,1408022,0.003865,0.007122,9224786,7922534,0,0,26879,0,1,1 +1773567242.526152,1.25,4,3992.50,58.98,1343.27,2309.11,0.00,3518756537676.162109,3518756536588.994141,11,0,0.003408,0.005866,9224871,7922651,0,0,26882,0,1,1 +1773567247.525280,0.75,4,3992.50,58.98,1343.25,2309.10,0.00,8207.219291,9293.460140,614396,1407905,0.003891,0.007124,9224972,7922791,0,0,26884,0,1,1 +1773567252.522653,0.95,4,3992.50,58.98,1343.27,2309.08,0.00,0.000000,0.033514,614396,1407947,0.003842,0.007126,9225069,7922931,0,0,26886,0,1,1 +1773567257.525693,1.30,4,3992.50,58.79,1350.69,2301.66,0.00,3516299405973.200195,3516299404887.775391,11,0,0.006716,0.009582,9225210,7923112,0,0,26889,0,1,1 +1773567262.521698,21.22,4,3992.50,59.95,1305.14,2347.11,0.00,0.000000,0.000000,11,0,30.212845,0.135814,9234996,7930336,0,0,26892,0,1,1 +1773567267.521810,5.42,4,3992.50,59.58,1319.64,2332.61,0.00,0.180269,0.000000,205,0,4.030991,0.024120,9236312,7931324,0,0,26894,0,1,1 +1773567272.521767,5.07,4,3992.50,59.72,1315.00,2338.06,0.00,8205.677846,9293.077810,614396,1409264,6.041851,0.032762,9238389,7932886,0,0,26897,0,1,1 +1773567277.521782,0.95,4,3992.50,59.58,1320.45,2332.62,0.00,3518426857911.476074,3518426856833.288086,251,190,0.004535,0.008044,9238491,7933028,0,0,26899,0,1,1 +1773567282.522432,0.80,4,3992.50,59.56,1321.30,2331.76,0.00,3517979945366.278809,3517979945357.207520,75,0,0.003420,0.005864,9238577,7933145,0,0,26902,0,1,1 +1773567287.525828,0.90,4,3992.50,59.56,1320.97,2332.09,0.00,3516048969890.467773,0.000000,11,0,0.003888,0.007118,9238678,7933285,0,0,26904,0,1,1 +1773567292.524021,1.00,4,3992.50,59.56,1320.99,2332.07,0.00,0.000000,0.000000,11,0,0.003887,0.007133,9238779,7933426,0,0,26906,0,1,1 +1773567297.524339,0.85,4,3992.50,59.56,1321.00,2332.05,0.00,0.180262,0.000000,205,0,0.003878,0.007132,9238879,7933567,0,0,26909,0,1,1 +1773567302.524741,2.25,4,3992.50,58.79,1355.57,2301.93,0.00,3518154390784.276367,0.000000,75,0,0.003482,0.005915,9238969,7933688,0,0,26912,0,1,1 +1773567307.521805,1.05,4,3992.50,58.85,1352.27,2304.18,0.00,0.126832,0.000000,205,0,0.005725,0.007873,9239104,7933848,0,0,26914,0,1,1 +1773567312.522647,0.85,4,3992.50,58.87,1351.55,2304.89,0.00,3517844537210.337402,0.000000,11,0,0.003877,0.007131,9239204,7933989,0,0,26917,0,1,1 +1773567317.526065,1.00,4,3992.50,58.87,1351.57,2304.88,0.00,0.180150,0.000000,205,0,0.003883,0.007126,9239305,7934130,0,0,26919,0,1,1 +1773567322.526047,0.80,4,3992.50,58.87,1351.59,2304.87,0.00,8215.199820,9304.281557,615885,1409958,0.003408,0.005865,9239390,7934247,0,0,26922,0,1,1 +1773567327.521711,0.90,4,3992.50,58.67,1359.24,2297.21,0.00,3521490910109.137695,3521490909017.281250,246,2,0.003881,0.007116,9239490,7934386,0,0,26924,0,1,1 +1773567332.525658,4.21,4,3992.50,58.96,1346.64,2308.22,0.00,3515662177192.395508,3515662177194.226074,205,0,1.218555,0.017146,9240123,7934898,0,0,26926,0,1,1 +1773567337.525699,11.21,4,3992.50,58.91,1348.52,2306.26,0.00,0.000000,0.000000,205,0,14.901354,0.071352,9245063,7938553,0,0,26929,0,1,1 +1773567342.526533,17.27,4,3992.50,59.22,1336.21,2318.48,0.00,3517850224615.960449,0.000000,11,0,24.123686,0.095909,9252410,7943942,0,0,26932,0,1,1 +1773567347.525580,2.11,4,3992.50,58.46,1365.70,2289.02,0.00,0.000000,0.000000,11,0,0.015583,0.013114,9252724,7944230,0,0,26934,0,1,1 +1773567352.526367,0.75,4,3992.50,58.45,1366.14,2288.58,0.00,0.180245,0.000000,205,0,0.003420,0.005889,9252810,7944349,0,0,26937,0,1,1 +1773567357.525118,0.95,4,3992.50,58.48,1365.18,2289.54,0.00,0.000000,0.000000,205,0,0.003879,0.007124,9252910,7944489,0,0,26939,0,1,1 +1773567362.526365,1.30,4,3992.50,58.86,1349.82,2304.48,0.00,8213.122250,9303.188115,615885,1411354,0.003872,0.007126,9253010,7944630,0,0,26942,0,1,1 +1773567367.526199,0.95,4,3992.50,58.68,1356.88,2297.52,0.00,3518553761205.772461,3518553760115.525879,75,0,0.003408,0.005855,9253095,7944746,0,0,26944,0,1,1 +1773567372.526333,0.85,4,3992.50,58.68,1356.91,2297.48,0.00,1.602594,10.674910,251,190,0.003865,0.007122,9253194,7944886,0,0,26946,0,1,1 +1773567377.522655,1.05,4,3992.50,58.68,1356.92,2297.47,0.00,8219.739758,9302.014924,615885,1411647,0.003881,0.007138,9253294,7945027,0,0,26949,0,1,1 +1773567382.525980,0.80,4,3992.50,58.68,1356.94,2297.46,0.00,3516099142414.488770,3516099141324.535156,205,0,0.003871,0.007148,9253394,7945170,0,0,26952,0,1,1 +1773567387.526412,1.00,4,3992.50,58.69,1356.71,2297.68,0.00,8214.459372,9305.129814,615885,1411746,0.003420,0.005855,9253480,7945286,0,0,26954,0,1,1 +1773567392.521815,1.16,4,3992.50,59.07,1342.73,2312.76,0.00,3521675371311.079102,3521675370219.491211,11,0,0.003869,0.007139,9253579,7945427,0,0,26957,0,1,1 +1773567397.526067,0.85,4,3992.50,59.04,1344.10,2311.39,0.00,1.654745,10.666123,251,190,0.003875,0.007116,9253679,7945567,0,0,26959,0,1,1 +1773567402.521835,0.90,4,3992.50,58.73,1356.03,2299.47,0.00,8211.083513,9292.568112,614396,1411640,0.003881,0.007783,9253779,7945712,0,0,26962,0,1,1 +1773567407.521722,10.54,4,3992.50,59.03,1344.28,2311.20,0.00,0.000000,0.170023,614396,1411925,10.076564,0.054667,9257245,7948309,0,0,26964,0,1,1 +1773567412.522913,15.65,4,3992.50,60.49,1287.25,2368.17,0.00,9.559244,10.801917,615885,1412562,26.149733,0.115191,9265697,7954573,0,0,26966,0,1,1 +1773567417.522666,4.97,4,3992.50,60.03,1305.18,2350.23,0.00,3518611328297.819824,3518611327206.765137,11,0,4.031707,0.020283,9267061,7955566,0,0,26969,0,1,1 +1773567422.526167,1.50,4,3992.50,59.61,1323.81,2333.84,0.00,8200.047139,9289.957771,614396,1412882,0.003888,0.007127,9267162,7955707,0,0,26972,0,1,1 +1773567427.522422,0.90,4,3992.50,59.27,1334.69,2320.68,0.00,3521074574969.357910,3521074573877.866699,11,0,0.003889,0.007136,9267263,7955848,0,0,26974,0,1,1 +1773567432.525804,0.85,4,3992.50,59.27,1334.70,2320.67,0.00,1.655033,10.667978,251,190,0.003418,0.005861,9267349,7955965,0,0,26977,0,1,1 +1773567437.525912,1.80,4,3992.50,59.13,1340.34,2315.04,0.00,0.356145,3518361514842.894531,246,2,0.003865,0.007122,9267448,7956105,0,0,26979,0,1,1 +1773567442.526179,0.85,4,3992.50,59.11,1341.06,2314.33,0.00,3518249458906.113281,3518249458908.125488,11,0,0.003878,0.007122,9267548,7956245,0,0,26981,0,1,1 +1773567447.523366,0.90,4,3992.50,59.12,1340.84,2314.54,0.00,8210.407626,9302.068386,614396,1413188,0.003868,0.007124,9267647,7956385,0,0,26984,0,1,1 +1773567452.525882,1.25,4,3992.50,59.16,1346.46,2316.21,0.00,3516667726715.685547,3516667725634.201660,251,190,0.003427,0.005873,9267734,7956503,0,0,26986,0,1,1 +1773567457.525895,1.00,4,3992.50,58.96,1354.17,2308.32,0.00,3518427775273.046387,3518427775263.974121,75,0,0.003878,0.007145,9267834,7956645,0,0,26989,0,1,1 +1773567462.526389,0.85,4,3992.50,58.99,1352.98,2309.51,0.00,8214.485016,9306.660146,615885,1413432,0.003878,0.007144,9267934,7956787,0,0,26992,0,1,1 +1773567467.522055,0.90,4,3992.50,58.79,1360.64,2301.86,0.00,3521489393142.812988,3521489392049.455566,205,0,0.003437,0.006414,9268021,7956911,0,0,26994,0,1,1 +1773567472.523063,1.05,4,3992.50,58.80,1360.18,2302.30,0.00,8203.954395,9295.105540,614396,1413316,0.006701,0.009172,9268167,7957078,0,0,26997,0,1,1 +1773567477.526593,1.00,4,3992.50,58.80,1360.19,2302.29,0.00,3515954770656.443359,3515954769565.842285,205,0,0.003875,0.007117,9268267,7957218,0,0,26999,0,1,1 +1773567482.522566,19.79,4,3992.50,59.74,1314.66,2338.78,0.00,8221.795379,9315.518843,615887,1414009,22.155882,0.101634,9275181,7962453,0,0,27002,0,1,1 +1773567487.525201,10.13,4,3992.50,59.58,1320.84,2332.51,0.00,3516583799945.790039,3516583798853.649902,75,0,14.080100,0.064084,9279780,7965896,0,0,27004,0,1,1 +1773567492.521854,5.33,4,3992.50,59.25,1333.67,2319.66,0.00,3520794032633.544434,0.000000,11,0,4.032360,0.022771,9281087,7966933,0,0,27006,0,1,1 +1773567497.525654,0.90,4,3992.50,59.25,1333.69,2319.63,0.00,0.053475,0.000000,75,0,0.003426,0.005869,9281174,7967051,0,0,27009,0,1,1 +1773567502.525859,1.00,4,3992.50,59.25,1333.71,2319.62,0.00,0.126753,0.000000,205,0,0.003890,0.007132,9281275,7967192,0,0,27012,0,1,1 +1773567507.525850,0.90,4,3992.50,59.05,1341.37,2311.97,0.00,1.475882,10.675215,251,190,0.003865,0.007122,9281374,7967332,0,0,27014,0,1,1 +1773567512.526550,1.25,4,3992.50,59.53,1324.94,2330.55,0.00,3517944368797.550781,3517944368788.479492,75,0,0.004799,0.007776,9281476,7967474,0,0,27017,0,1,1 +1773567517.525887,0.85,4,3992.50,59.53,1322.57,2330.77,0.00,1.602849,10.676612,251,190,0.003479,0.005951,9281567,7967597,0,0,27019,0,1,1 +1773567522.526684,1.05,4,3992.50,59.53,1322.57,2330.76,0.00,3517876066138.110840,3517876066129.040039,75,0,0.003877,0.007119,9281667,7967737,0,0,27022,0,1,1 +1773567527.525563,1.10,4,3992.50,59.34,1330.02,2323.32,0.00,0.126786,0.000000,205,0,0.003879,0.007124,9281767,7967877,0,0,27024,0,1,1 +1773567532.523411,0.85,4,3992.50,59.25,1333.62,2319.74,0.00,3519952404074.925293,0.000000,11,0,0.003434,0.006502,9281854,7967997,0,0,27026,0,1,1 +1773567537.523151,1.05,4,3992.50,59.20,1335.59,2317.77,0.00,8215.805656,9309.824409,615890,1415211,0.003878,0.007133,9281954,7968138,0,0,27029,0,1,1 +1773567542.525590,1.40,4,3992.50,59.24,1332.73,2319.43,0.00,3516721855578.605469,3516721854484.996582,205,0,0.003884,0.007137,9282055,7968280,0,0,27032,0,1,1 +1773567547.526580,0.80,4,3992.50,59.20,1334.21,2317.94,0.00,3517740862229.666992,0.000000,11,0,0.003877,0.007121,9282155,7968420,0,0,27034,0,1,1 +1773567552.521719,0.85,4,3992.50,59.23,1333.25,2318.91,0.00,8213.802938,9307.867199,614401,1415150,0.003424,0.005871,9282241,7968537,0,0,27037,0,1,1 +1773567557.525666,21.27,4,3992.50,59.30,1330.32,2321.77,0.00,3515661401077.442383,3515661399985.303711,11,0,28.154951,0.130911,9291387,7975437,0,0,27039,0,1,1 +1773567562.523939,8.40,4,3992.50,60.01,1302.65,2349.39,0.00,8208.652642,9302.800104,614401,1416247,12.089425,0.062433,9295618,7978619,0,0,27042,0,1,1 +1773567567.524740,1.80,4,3992.50,59.05,1340.26,2311.80,0.00,3517873889863.625488,3517873888769.978027,75,0,0.003877,0.007121,9295718,7978759,0,0,27044,0,1,1 +1773567572.521757,1.36,4,3992.50,59.37,1331.85,2324.42,0.00,8210.662435,9305.396437,614401,1416290,0.004377,0.008214,9295830,7978921,0,0,27046,0,1,1 +1773567577.521795,0.90,4,3992.50,59.14,1336.75,2315.34,0.00,0.000000,0.005273,614401,1416297,0.004548,0.008029,9295933,7979062,0,0,27049,0,1,1 +1773567582.522560,0.90,4,3992.50,59.08,1338.85,2313.23,0.00,9.560061,10.713986,615890,1416498,0.003407,0.005877,9296018,7979180,0,0,27052,0,1,1 +1773567587.526438,0.85,4,3992.50,59.12,1337.41,2314.68,0.00,3515710048211.157227,3515710047116.819824,11,0,0.003862,0.007117,9296117,7979320,0,0,27054,0,1,1 +1773567592.521722,0.85,4,3992.50,59.12,1337.41,2314.68,0.00,1.657716,10.685275,251,190,0.002390,0.004365,9296180,7979406,0,0,27057,0,1,1 +1773567597.521779,0.75,4,3992.50,59.12,1337.44,2314.66,0.00,0.000000,0.000000,251,190,0.003213,0.005709,9296261,7979520,0,0,27059,0,1,1 +1773567602.521736,1.40,4,3992.50,59.30,1330.27,2321.82,0.00,3518467779440.692383,3518467779431.673340,11,0,0.003928,0.007814,9296364,7979668,0,0,27062,0,1,1 +1773567607.521752,0.90,4,3992.50,59.31,1330.03,2322.06,0.00,0.180273,0.000000,205,0,0.003865,0.007122,9296463,7979808,0,0,27064,0,1,1 +1773567612.526624,0.80,4,3992.50,59.31,1330.05,2322.04,0.00,3515011660596.206543,0.000000,11,0,0.003870,0.007086,9296563,7979946,0,0,27066,0,1,1 +1773567617.525889,1.00,4,3992.50,59.29,1330.71,2321.37,0.00,0.180300,0.000000,205,0,0.003421,0.005891,9296649,7980065,0,0,27069,0,1,1 +1773567622.526289,4.46,4,3992.50,59.39,1326.67,2325.43,0.00,8214.541666,9310.378745,615890,1417136,4.026932,0.024222,9297974,7981107,0,0,27072,0,1,1 +1773567627.521710,20.98,4,3992.50,60.53,1282.19,2369.77,0.00,0.000000,0.332824,615890,1417848,32.225471,0.145312,9308379,7989033,0,0,27074,0,1,1 +1773567632.524315,5.32,4,3992.50,60.01,1310.79,2349.54,0.00,3516604657188.346191,3516604656092.840332,11,0,4.037440,0.028537,9309940,7990222,0,0,27077,0,1,1 +1773567637.526386,0.95,4,3992.50,59.50,1329.53,2329.60,0.00,8211.978031,9308.379161,615890,1418352,0.003876,0.007119,9310040,7990362,0,0,27079,0,1,1 +1773567642.523412,0.75,4,3992.50,59.49,1329.92,2329.21,0.00,3520531355408.132812,3520531355407.028809,614401,1418169,0.003422,0.005869,9310126,7990479,0,0,27082,0,1,1 +1773567647.522659,0.85,4,3992.50,59.49,1329.94,2329.20,0.00,3518966730570.250977,3518966729472.321777,246,2,0.003879,0.007123,9310226,7990619,0,0,27084,0,1,1 +1773567652.526628,0.90,4,3992.50,59.49,1329.96,2329.19,0.00,8206.851393,9304.907617,615890,1418416,0.003875,0.007117,9310326,7990759,0,0,27086,0,1,1 +1773567657.525942,1.05,4,3992.50,59.48,1330.27,2328.87,0.00,0.000000,0.022366,615890,1418427,0.003879,0.007133,9310426,7990900,0,0,27089,0,1,1 +1773567662.523041,1.20,4,3992.50,59.57,1327.69,2332.15,0.00,3520479598918.745117,3520479598917.733398,614401,1418293,0.003430,0.005877,9310513,7991018,0,0,27092,0,1,1 +1773567667.525970,1.10,4,3992.50,58.96,1351.33,2308.54,0.00,9.555926,10.863168,615890,1418723,0.003876,0.007762,9310613,7991162,0,0,27094,0,1,1 +1773567672.522402,0.75,4,3992.50,58.97,1350.87,2308.98,0.00,0.000000,0.057463,615890,1418773,0.003881,0.007137,9310713,7991303,0,0,27097,0,1,1 +1773567677.525673,0.80,4,3992.50,58.97,1350.91,2308.96,0.00,3516136714776.953613,3516136713680.325195,75,0,0.003875,0.007105,9310813,7991442,0,0,27099,0,1,1 +1773567682.526180,0.85,4,3992.50,58.97,1350.93,2308.95,0.00,8204.932014,9301.096381,614401,1418630,0.003420,0.005877,9310899,7991560,0,0,27102,0,1,1 +1773567687.521715,0.80,4,3992.50,58.97,1351.03,2308.84,0.00,3521582059385.027832,3521582058285.812500,246,2,0.003894,0.007129,9311000,7991700,0,0,27104,0,1,1 +1773567692.524174,7.07,4,3992.50,59.03,1348.86,2311.01,0.00,3516707791162.310059,10.669753,251,190,6.042674,0.034376,9313088,7993244,0,0,27106,0,1,1 +1773567697.523695,19.37,4,3992.50,59.56,1327.78,2332.00,0.00,3518774181476.193848,3518774181466.993652,205,0,30.182071,0.132626,9322677,8000500,0,0,27109,0,1,1 +1773567702.521721,5.12,4,3992.50,59.83,1317.18,2342.58,0.00,3519827116102.783691,0.000000,75,0,4.039661,0.023582,9324159,8001588,0,0,27112,0,1,1 +1773567707.523080,0.95,4,3992.50,59.55,1328.09,2331.67,0.00,0.000000,0.000000,75,0,0.003893,0.006823,9324259,8001724,0,0,27114,0,1,1 +1773567712.521751,0.75,4,3992.50,59.29,1338.41,2321.34,0.00,3519372897516.663574,0.000000,11,0,0.003879,0.007134,9324359,8001865,0,0,27117,0,1,1 +1773567717.522603,0.70,4,3992.50,59.29,1338.55,2321.19,0.00,8204.418855,9301.569055,614401,1419981,0.003877,0.007121,9324459,8002005,0,0,27119,0,1,1 +1773567722.523854,1.10,4,3992.50,59.50,1330.91,2329.50,0.00,3517557382893.169922,3517557381796.106934,11,0,0.003419,0.005864,9324545,8002122,0,0,27122,0,1,1 +1773567727.526319,0.70,4,3992.50,59.44,1332.39,2327.21,0.00,8201.772824,9298.865419,614401,1420059,0.003889,0.007119,9324646,8002262,0,0,27124,0,1,1 +1773567732.526321,0.80,4,3992.50,59.44,1332.40,2327.19,0.00,3518436278847.257812,3518436277749.444336,205,0,0.003878,0.007766,9324746,8002406,0,0,27126,0,1,1 +1773567737.526025,1.45,4,3992.50,58.73,1360.23,2299.38,0.00,3518645353645.185059,0.000000,11,0,0.003878,0.007133,9324846,8002547,0,0,27129,0,1,1 +1773567742.521796,0.70,4,3992.50,58.72,1360.47,2299.14,0.00,8222.333571,9322.133354,615890,1420370,0.003423,0.005857,9324932,8002663,0,0,27132,0,1,1 +1773567747.526005,0.65,4,3992.50,58.68,1362.09,2297.53,0.00,3515478005574.169434,3515478004476.043457,205,0,0.003875,0.007116,9325032,8002803,0,0,27134,0,1,1 +1773567752.526034,1.00,4,3992.50,58.92,1348.27,2306.92,0.00,1.832020,0.000195,246,2,0.003878,0.007132,9325132,8002944,0,0,27137,0,1,1 +1773567757.521731,0.75,4,3992.50,58.93,1348.05,2307.15,0.00,8220.441619,9322.545737,615890,1420654,0.003889,0.007137,9325233,8003085,0,0,27139,0,1,1 +1773567762.521992,0.65,4,3992.50,58.93,1347.83,2307.37,0.00,3518253796208.376953,3518253795109.291016,11,0,0.003420,0.005855,9325319,8003201,0,0,27141,0,1,1 +1773567767.524243,10.90,4,3992.50,59.20,1337.37,2317.79,0.00,8202.123784,9299.891459,614401,1420872,14.087589,0.068484,9330013,8006619,0,0,27144,0,1,1 +1773567772.526578,3.91,4,3992.50,59.21,1336.81,2318.34,0.00,3516795084557.910156,3516795083460.106934,75,0,2.029557,0.019613,9330982,8007288,0,0,27146,0,1,1 +1773567777.521735,18.06,4,3992.50,59.02,1344.14,2310.88,0.00,3521848308445.314453,0.000000,11,0,24.161733,0.102746,9338508,8012893,0,0,27149,0,1,1 +1773567782.526380,1.25,4,3992.50,59.38,1330.18,2324.80,0.00,0.180106,0.000000,205,0,0.003874,0.007126,9338608,8013034,0,0,27152,0,1,1 +1773567787.526501,0.65,4,3992.50,59.38,1329.92,2325.04,0.00,0.000000,0.000000,205,0,0.003420,0.005842,9338694,8013149,0,0,27154,0,1,1 +1773567792.521809,0.70,4,3992.50,59.38,1329.94,2325.03,0.00,3521741677411.992188,0.000000,11,0,0.003882,0.007139,9338794,8013290,0,0,27157,0,1,1 +1773567797.524729,0.75,4,3992.50,59.38,1329.96,2325.01,0.00,8210.584153,9310.285037,615890,1422021,0.003876,0.007762,9338894,8013434,0,0,27159,0,1,1 +1773567802.526398,0.70,4,3992.50,59.38,1329.97,2325.00,0.00,3517263123464.884277,3517263122364.728027,205,0,0.003877,0.007130,9338994,8013575,0,0,27162,0,1,1 +1773567807.525594,0.70,4,3992.50,59.37,1330.57,2324.39,0.00,3519003290532.148438,0.000000,11,0,0.003429,0.005864,9339081,8013692,0,0,27164,0,1,1 +1773567812.526708,1.20,4,3992.50,59.41,1328.80,2326.16,0.00,0.000000,0.000000,11,0,0.005417,0.008030,9339195,8013841,0,0,27166,0,1,1 +1773567817.522942,0.75,4,3992.50,59.09,1341.62,2313.39,0.00,0.180409,0.000000,205,0,0.003919,0.007213,9339298,8013987,0,0,27169,0,1,1 +1773567822.522978,0.75,4,3992.50,59.09,1341.63,2313.38,0.00,3518411817912.293945,0.000000,11,0,0.003891,0.007132,9339399,8014128,0,0,27172,0,1,1 +1773567827.526016,0.95,4,3992.50,59.04,1343.62,2311.39,0.00,1.655147,10.668713,251,190,0.003418,0.005852,9339485,8014244,0,0,27174,0,1,1 +1773567832.521803,0.65,4,3992.50,59.08,1341.71,2313.30,0.00,0.000000,0.000000,251,190,0.003881,0.007138,9339585,8014385,0,0,27177,0,1,1 +1773567837.521703,0.85,4,3992.50,59.09,1341.45,2313.58,0.00,3518507821815.200195,3518507821806.000977,205,0,0.003866,0.007123,9339684,8014525,0,0,27179,0,1,1 +1773567842.526178,7.48,4,3992.50,59.59,1325.45,2333.16,0.00,1.830393,0.000195,246,2,8.045812,0.041245,9342319,8016504,0,0,27182,0,1,1 +1773567847.526555,16.80,4,3992.50,60.15,1303.39,2355.17,0.00,3518171687540.145020,10.674194,251,190,24.154967,0.116280,9350432,8022708,0,0,27184,0,1,1 +1773567852.525666,5.88,4,3992.50,60.17,1302.77,2355.75,0.00,0.000000,0.000000,251,190,8.056816,0.038135,9353133,8024695,0,0,27186,0,1,1 +1773567857.522907,1.05,4,3992.50,59.73,1320.06,2338.46,0.00,3520379803038.101074,3520379803029.077637,11,0,0.005252,0.008188,9353245,8024850,0,0,27189,0,1,1 +1773567862.525613,0.70,4,3992.50,59.50,1328.82,2329.71,0.00,0.000000,0.000000,11,0,0.003876,0.007128,9353345,8024991,0,0,27192,0,1,1 +1773567867.526053,0.70,4,3992.50,59.49,1329.33,2329.20,0.00,8205.094011,9305.799817,614401,1423621,0.003878,0.007766,9353445,8025135,0,0,27194,0,1,1 +1773567872.524489,1.10,4,3992.50,59.45,1321.91,2327.40,0.00,9.564516,10.970522,615890,1423912,0.003918,0.006954,9353543,8025274,0,0,27197,0,1,1 +1773567877.526152,0.75,4,3992.50,59.49,1319.79,2329.30,0.00,3517267240811.910645,3517267239719.084961,251,190,0.003877,0.007120,9353643,8025414,0,0,27199,0,1,1 +1773567882.526370,0.75,4,3992.50,59.29,1327.91,2321.18,0.00,0.000000,0.000000,251,190,0.004535,0.008054,9353745,8025557,0,0,27202,0,1,1 +1773567887.526553,0.80,4,3992.50,59.29,1327.69,2321.40,0.00,3518308334654.568848,3518308334645.550293,11,0,0.003878,0.007110,9353845,8025696,0,0,27204,0,1,1 +1773567892.521800,0.75,4,3992.50,59.30,1327.48,2321.61,0.00,8223.196236,9326.577691,615890,1424027,0.003436,0.005861,9353932,8025812,0,0,27206,0,1,1 +1773567897.526598,0.75,4,3992.50,59.11,1334.91,2314.18,0.00,3515064053810.119141,3515064052708.843750,11,0,0.003874,0.007126,9354032,8025953,0,0,27209,0,1,1 +1773567902.526459,1.50,4,3992.50,59.28,1328.12,2320.98,0.00,2.012361,0.000195,246,2,0.004559,0.007448,9354148,8026106,0,0,27212,0,1,1 +1773567907.526258,0.85,4,3992.50,59.10,1335.14,2313.96,0.00,3518578452361.137695,3518578452363.150391,11,0,0.003886,0.007131,9354249,8026247,0,0,27214,0,1,1 +1773567912.525419,0.95,4,3992.50,59.10,1335.38,2313.73,0.00,0.180304,0.000000,205,0,0.003433,0.005866,9354336,8026364,0,0,27217,0,1,1 +1773567917.522625,12.66,4,3992.50,59.04,1337.45,2311.62,0.00,1.476704,10.681164,251,190,16.112775,0.076624,9359569,8030216,0,0,27219,0,1,1 +1773567922.521718,13.85,4,3992.50,59.57,1316.55,2332.43,0.00,8215.213312,9309.335864,615890,1424976,20.131299,0.093141,9366171,8035223,0,0,27222,0,1,1 +1773567927.525912,4.16,4,3992.50,59.51,1318.96,2330.01,0.00,3515488002238.033203,3515488001136.014648,11,0,4.026155,0.022103,9367521,8036234,0,0,27224,0,1,1 +1773567932.522570,2.61,4,3992.50,58.87,1346.16,2304.84,0.00,0.053551,0.000000,75,0,0.003868,0.007772,9367620,8036378,0,0,27226,0,1,1 +1773567937.522791,0.85,4,3992.50,58.99,1339.55,2309.46,0.00,0.000000,0.000000,75,0,0.003420,0.005865,9367706,8036495,0,0,27229,0,1,1 +1773567942.526355,1.00,4,3992.50,58.79,1347.23,2301.79,0.00,8209.472707,9312.604930,615890,1425680,0.003875,0.007127,9367806,8036636,0,0,27232,0,1,1 +1773567947.526221,0.90,4,3992.50,58.80,1346.99,2302.02,0.00,3518531861841.619629,3518531860737.725098,11,0,0.003886,0.007144,9367907,8036778,0,0,27234,0,1,1 +1773567952.525935,0.90,4,3992.50,58.80,1347.01,2302.01,0.00,0.180284,0.000000,205,0,0.004510,0.007385,9368020,8036926,0,0,27237,0,1,1 +1773567957.526263,0.70,4,3992.50,58.80,1347.03,2301.99,0.00,1.831911,0.000195,246,2,0.003420,0.005842,9368106,8037041,0,0,27239,0,1,1 +1773567962.525717,1.25,4,3992.50,59.04,1340.63,2311.50,0.00,3518821819624.894531,3518821819626.907227,11,0,0.003878,0.007133,9368206,8037182,0,0,27242,0,1,1 +1773567967.526561,0.85,4,3992.50,59.01,1341.98,2310.19,0.00,0.000000,0.000000,11,0,0.003877,0.007121,9368306,8037322,0,0,27244,0,1,1 +1773567972.526224,0.80,4,3992.50,59.04,1340.55,2311.62,0.00,8215.932590,9320.129283,615890,1425859,0.003866,0.007135,9368405,8037463,0,0,27246,0,1,1 +1773567977.526153,0.85,4,3992.50,59.05,1340.34,2311.82,0.00,3518487540134.202148,3518487540133.167969,614401,1425739,0.003408,0.005865,9368490,8037580,0,0,27249,0,1,1 +1773567982.526463,0.80,4,3992.50,59.02,1341.48,2310.69,0.00,3518218867051.111328,3518218865947.912598,205,0,0.003071,0.006736,9368574,8037711,0,0,27252,0,1,1 +1773567987.526324,0.85,4,3992.50,58.99,1342.53,2309.64,0.00,1.475920,10.675494,251,190,0.003899,0.007131,9368676,8037852,0,0,27254,0,1,1 +1773567992.526586,18.96,4,3992.50,60.39,1287.52,2364.59,0.00,3518252461926.515625,3518252461917.497070,11,0,22.139588,0.104580,9375859,8043246,0,0,27257,0,1,1 +1773567997.526541,10.80,4,3992.50,59.68,1315.27,2336.77,0.00,0.000000,0.000000,11,0,16.101846,0.073581,9381231,8047217,0,0,27259,0,1,1 +1773568002.524798,2.91,4,3992.50,59.68,1315.30,2336.74,0.00,2.013007,0.000195,246,2,2.020761,0.015636,9382035,8047860,0,0,27262,0,1,1 +1773568007.526057,0.95,4,3992.50,59.63,1317.43,2334.61,0.00,8211.299096,9318.288937,615890,1427148,0.003877,0.007121,9382135,8048000,0,0,27264,0,1,1 +1773568012.521821,0.80,4,3992.50,59.58,1319.28,2332.76,0.00,3521420983774.564941,3521420982677.397949,251,190,0.003881,0.007141,9382235,8048141,0,0,27266,0,1,1 +1773568017.522592,0.90,4,3992.50,59.51,1322.18,2329.86,0.00,3517894254971.548340,3517894254962.477539,75,0,0.003877,0.007119,9382335,8048281,0,0,27269,0,1,1 +1773568022.525996,1.35,4,3992.50,59.85,1316.04,2343.38,0.00,8209.736075,9314.674454,615890,1427380,0.003418,0.005874,9382421,8048399,0,0,27272,0,1,1 +1773568027.525758,1.05,4,3992.50,59.85,1316.05,2343.36,0.00,3518604913565.240234,3518604912468.569824,251,190,0.003886,0.007131,9382522,8048540,0,0,27274,0,1,1 +1773568032.521701,0.95,4,3992.50,59.33,1336.53,2322.89,0.00,8220.393083,9318.084096,615890,1427561,0.003881,0.007138,9382622,8048681,0,0,27277,0,1,1 +1773568037.525852,0.95,4,3992.50,59.09,1345.86,2313.55,0.00,3515518140803.119629,3515518139698.164551,75,0,0.003432,0.005921,9382709,8048802,0,0,27279,0,1,1 +1773568042.522329,0.85,4,3992.50,59.12,1344.78,2314.64,0.00,0.000000,0.000000,75,0,0.003841,0.007067,9382806,8048938,0,0,27282,0,1,1 +1773568047.526051,1.00,4,3992.50,59.13,1344.32,2315.10,0.00,3515820475817.492188,0.000000,11,0,0.003863,0.007117,9382905,8049078,0,0,27284,0,1,1 +1773568052.526237,1.20,4,3992.50,59.37,1331.38,2324.55,0.00,2.012230,0.000195,246,2,0.003878,0.007122,9383005,8049218,0,0,27286,0,1,1 +1773568057.522685,1.00,4,3992.50,59.12,1341.22,2314.75,0.00,3520937987479.604980,3520937987481.438477,205,0,0.002829,0.005632,9383081,8049328,0,0,27289,0,1,1 +1773568062.521804,1.00,4,3992.50,59.14,1340.64,2315.34,0.00,8216.645804,9323.047129,615890,1427768,0.005262,0.008175,9383204,8049488,0,0,27292,0,1,1 +1773568067.523729,20.36,4,3992.50,60.14,1301.48,2354.44,0.00,3517083361328.544434,3517083360222.943848,11,0,24.346783,0.117201,9391232,8055445,0,0,27294,0,1,1 +1773568072.522642,10.76,4,3992.50,59.55,1324.38,2331.50,0.00,0.053527,0.000000,75,0,15.903728,0.068267,9396347,8059176,0,0,27297,0,1,1 +1773568077.525757,1.40,4,3992.50,59.42,1329.33,2326.54,0.00,8200.655837,9305.682589,614401,1428820,0.007026,0.007032,9396496,8059330,0,0,27299,0,1,1 +1773568082.526717,1.40,4,3992.50,59.67,1319.62,2336.25,0.00,3517761604711.465820,3517761603606.016113,11,0,0.003877,0.007131,9396596,8059471,0,0,27302,0,1,1 +1773568087.525575,0.95,4,3992.50,59.50,1326.19,2329.68,0.00,2.012765,0.000195,246,2,0.003879,0.007124,9396696,8059611,0,0,27304,0,1,1 +1773568092.521822,0.90,4,3992.50,59.52,1325.73,2330.15,0.00,3521079655220.426270,3521079655222.440430,11,0,0.003881,0.007115,9396796,8059750,0,0,27306,0,1,1 +1773568097.525152,1.00,4,3992.50,59.51,1325.86,2330.01,0.00,0.000000,0.000000,11,0,0.003418,0.005874,9396882,8059868,0,0,27309,0,1,1 +1773568102.526482,0.80,4,3992.50,59.51,1325.89,2329.98,0.00,8203.635645,9309.700487,614401,1429161,0.003877,0.007118,9396982,8060008,0,0,27312,0,1,1 +1773568107.525657,0.90,4,3992.50,59.51,1325.90,2329.98,0.00,3519017790050.349609,3519017788943.754395,75,0,0.003879,0.007124,9397082,8060148,0,0,27314,0,1,1 +1773568112.526089,1.20,4,3992.50,59.52,1330.06,2330.17,0.00,1.958620,0.000195,246,2,0.004683,0.007784,9397184,8060291,0,0,27317,0,1,1 +1773568117.521724,0.90,4,3992.50,59.53,1324.95,2330.90,0.00,8210.972228,9320.445653,614401,1429266,0.003599,0.005948,9397275,8060413,0,0,27319,0,1,1 +1773568122.521719,0.95,4,3992.50,59.53,1324.98,2330.88,0.00,3518440778933.311035,3518440777835.835938,251,190,0.003878,0.007110,9397375,8060552,0,0,27321,0,1,1 +1773568127.525004,1.20,4,3992.50,59.47,1327.49,2328.38,0.00,0.000000,0.000000,251,190,0.003875,0.007771,9397475,8060697,0,0,27324,0,1,1 +1773568132.521738,0.80,4,3992.50,59.48,1327.26,2328.61,0.00,3520737021197.974121,3520737021188.769043,205,0,0.003435,0.005859,9397562,8060813,0,0,27326,0,1,1 +1773568137.521723,4.56,4,3992.50,59.47,1327.59,2328.28,0.00,8205.662426,9312.496225,614401,1429496,4.029105,0.024511,9398945,8061861,0,0,27329,0,1,1 +1773568142.527296,22.63,4,3992.50,59.85,1312.30,2343.12,0.00,0.000000,0.753652,614401,1430413,30.155091,0.138283,9408592,8069186,0,0,27332,0,1,1 +1773568147.526124,4.52,4,3992.50,58.82,1352.36,2303.06,0.00,3519261880577.508789,3519261879467.832031,246,2,6.045933,0.033694,9410733,8070826,0,0,27334,0,1,1 +1773568152.524558,0.95,4,3992.50,58.88,1350.18,2305.23,0.00,3519539682161.570312,3519539682163.583496,11,0,0.003887,0.007143,9410834,8070968,0,0,27337,0,1,1 +1773568157.521824,0.90,4,3992.50,58.71,1356.64,2298.79,0.00,8210.306372,9318.825555,614401,1430876,0.003935,0.006946,9410934,8071106,0,0,27339,0,1,1 +1773568162.525846,0.95,4,3992.50,58.76,1354.93,2300.50,0.00,9.553839,10.672666,615890,1431075,0.003875,0.007127,9411034,8071247,0,0,27342,0,1,1 +1773568167.526582,0.85,4,3992.50,58.76,1354.95,2300.49,0.00,3517918780455.987793,3517918779347.118652,11,0,0.003877,0.007121,9411134,8071387,0,0,27344,0,1,1 +1773568172.525924,1.55,4,3992.50,59.37,1330.91,2324.52,0.00,8206.897823,9315.121176,614401,1430966,0.004375,0.008223,9411246,8071550,0,0,27346,0,1,1 +1773568177.521715,0.80,4,3992.50,59.18,1338.60,2316.84,0.00,3521401628548.867188,3521401627439.856445,11,0,0.002736,0.003968,9411311,8071631,0,0,27349,0,1,1 +1773568182.521738,0.85,4,3992.50,59.16,1339.23,2316.20,0.00,2.012296,0.000195,246,2,0.003649,0.006486,9411404,8071759,0,0,27352,0,1,1 +1773568187.521714,0.95,4,3992.50,59.16,1339.23,2316.21,0.00,0.000000,0.000000,246,2,0.004535,0.008044,9411506,8071901,0,0,27354,0,1,1 +1773568192.523238,0.95,4,3992.50,59.17,1338.60,2316.83,0.00,3517365415582.105469,3517365415584.063477,75,0,0.003885,0.007782,9411607,8072047,0,0,27357,0,1,1 +1773568197.526047,0.85,4,3992.50,59.17,1338.61,2316.82,0.00,0.126687,0.000000,205,0,0.003406,0.005839,9411692,8072162,0,0,27359,0,1,1 +1773568202.526281,1.40,4,3992.50,59.60,1324.43,2333.49,0.00,3518272117482.179199,0.000000,11,0,0.003940,0.007172,9411796,8072306,0,0,27361,0,1,1 +1773568207.524875,7.69,4,3992.50,59.80,1314.12,2341.32,0.00,8217.689748,9327.581651,615890,1431660,8.061068,0.044264,9414564,8074412,0,0,27364,0,1,1 +1773568212.525067,24.24,4,3992.50,59.82,1313.43,2341.90,0.00,3518302461647.424805,3518302460546.905762,251,190,32.189515,0.141268,9424625,8082059,0,0,27366,0,1,1 +1773568217.524150,1.70,4,3992.50,59.74,1316.43,2338.89,0.00,3519082331981.411133,3519082331972.337402,75,0,0.011424,0.010764,9424862,8082292,0,0,27369,0,1,1 +1773568222.525759,1.00,4,3992.50,59.61,1321.52,2333.81,0.00,0.000000,0.000000,75,0,0.003419,0.005851,9424948,8082408,0,0,27372,0,1,1 +1773568227.524783,0.90,4,3992.50,59.61,1321.41,2333.92,0.00,3519123949733.966797,0.000000,11,0,0.003879,0.007136,9425048,8082549,0,0,27374,0,1,1 +1773568232.521718,1.45,4,3992.50,59.54,1330.02,2331.01,0.00,8220.418176,9331.745255,615890,1432850,0.003888,0.007145,9425149,8082691,0,0,27377,0,1,1 +1773568237.521784,0.80,4,3992.50,59.52,1330.86,2330.18,0.00,3518391271589.817871,3518391270488.205566,251,190,0.003878,0.007110,9425249,8082830,0,0,27379,0,1,1 +1773568242.525941,0.95,4,3992.50,59.52,1330.66,2330.38,0.00,0.355856,3515514110216.386230,246,2,0.003417,0.005860,9425335,8082947,0,0,27382,0,1,1 +1773568247.521734,0.90,4,3992.50,59.52,1330.66,2330.39,0.00,3521400187540.007812,3521400187541.841309,205,0,0.003881,0.007128,9425435,8083087,0,0,27384,0,1,1 +1773568252.521771,0.90,4,3992.50,59.52,1330.66,2330.39,0.00,1.475868,10.675116,251,190,0.002746,0.003942,9425501,8083166,0,0,27386,0,1,1 +1773568257.521732,1.30,4,3992.50,59.00,1351.16,2309.90,0.00,3518464822497.163574,3518464822488.144531,11,0,0.003649,0.007143,9425594,8083299,0,0,27389,0,1,1 +1773568262.526128,1.20,4,3992.50,59.45,1333.25,2327.57,0.00,0.053469,0.000000,75,0,0.003875,0.007126,9425694,8083440,0,0,27392,0,1,1 +1773568267.521801,1.00,4,3992.50,59.47,1332.54,2328.30,0.00,1.604025,10.684441,251,190,0.003881,0.007116,9425794,8083579,0,0,27394,0,1,1 +1773568272.523900,0.75,4,3992.50,59.40,1335.05,2325.78,0.00,0.356003,3516960923728.042969,246,2,0.003427,0.005883,9425881,8083698,0,0,27397,0,1,1 +1773568277.525603,13.00,4,3992.50,59.81,1319.23,2341.57,0.00,3517239173205.040527,3517239173207.052246,11,0,14.267018,0.073223,9430680,8087317,0,0,27399,0,1,1 +1773568282.526546,17.34,4,3992.50,59.57,1328.26,2332.45,0.00,0.053506,0.000000,75,0,25.982624,0.117249,9439034,8093612,0,0,27402,0,1,1 +1773568287.526211,9.63,4,3992.50,59.41,1304.66,2326.05,0.00,3518673379425.435059,0.000000,11,0,0.001252,0.001670,9439063,8093647,0,0,27404,0,1,1 +1773568295.851231,0.87,4,3992.50,58.92,1323.24,2307.00,0.00,0.000000,0.000000,11,0,0.000137,0.000412,9439070,8093664,0,0,27408,0,1,1 +1773568297.522543,15.79,4,3992.50,59.96,1280.82,2347.45,0.00,0.539317,0.000000,205,0,0.002536,0.002635,9439089,8093684,0,0,27409,0,1,1 +1773568302.525685,1.15,4,3992.50,61.31,1228.72,2400.24,0.00,1.830881,0.000195,246,2,0.000970,0.000559,9439107,8093698,0,0,27412,0,1,1 +1773568307.522572,1.65,4,3992.50,60.06,1279.42,2351.50,0.00,3520629580966.908203,3520629580968.868164,75,0,0.000237,0.000662,9439115,8093713,0,0,27414,0,1,1 +1773568312.521742,9.25,4,3992.50,60.68,1243.67,2375.84,0.00,3519021060928.232422,0.000000,11,0,0.001642,0.001284,9439149,8093744,0,0,27417,0,1,1 +1773568317.525688,0.85,4,3992.50,60.27,1259.70,2359.82,0.00,0.180131,0.000000,205,0,0.000404,0.000799,9439159,8093760,0,0,27419,0,1,1 +1773568322.521726,2.06,4,3992.50,60.55,1266.97,2370.66,0.00,1.833484,0.000195,246,2,0.001482,0.002316,9439195,8093808,0,0,27422,0,1,1 +1773568327.522851,0.90,4,3992.50,59.42,1311.16,2326.47,0.00,8202.888610,10378.981486,614602,1440793,0.003701,0.006975,9439292,8093946,0,0,27424,0,1,1 +1773568332.525960,0.90,4,3992.50,59.13,1322.66,2314.97,0.00,0.000000,0.001171,614602,1440798,0.003876,0.007118,9439392,8094086,0,0,27426,0,1,1 +1773568337.522012,0.95,4,3992.50,59.01,1327.16,2310.47,0.00,9.569080,10.713049,616091,1441037,0.003424,0.006559,9439478,8094210,0,0,27429,0,1,1 +1773568342.525908,0.85,4,3992.50,58.91,1331.07,2306.56,0.00,3515697746484.376953,3515697744308.345215,246,2,0.003861,0.007082,9439577,8094348,0,0,27432,0,1,1 +1773568347.525971,14.90,4,3992.50,59.50,1292.09,2329.54,0.00,3518392605514.448730,3518392605516.461426,11,0,18.124317,0.091781,9445757,8099024,0,0,27434,0,1,1 +1773568352.526436,15.08,4,3992.50,60.28,1267.27,2360.26,0.00,8206.380920,10381.255973,614698,1441947,22.136343,0.098449,9453050,8104415,0,0,27437,0,1,1 +1773568357.526228,1.20,4,3992.50,59.72,1289.18,2338.34,0.00,3518583524490.505859,3518583522315.337891,11,0,0.005028,0.008176,9453175,8104579,0,0,27439,0,1,1 +1773568362.522296,0.95,4,3992.50,59.50,1297.84,2329.69,0.00,1.657456,10.683598,251,200,0.003881,0.007128,9453275,8104719,0,0,27441,0,1,1 +1773568367.521791,1.05,4,3992.50,59.49,1298.43,2329.10,0.00,0.356188,3518792561176.900879,246,2,0.003878,0.007133,9453375,8104860,0,0,27444,0,1,1 +1773568372.521718,1.10,4,3992.50,59.54,1296.54,2330.98,0.00,3518488702667.048828,3518488702669.061035,11,0,0.006251,0.007786,9453507,8105004,0,0,27446,0,1,1 +1773568377.526592,1.05,4,3992.50,59.54,1296.55,2330.97,0.00,0.000000,0.000000,11,0,0.003887,0.007113,9453608,8105144,0,0,27449,0,1,1 +1773568382.526484,5.84,4,3992.50,60.00,1286.59,2349.22,0.00,1.656188,10.675427,251,205,0.001909,0.003114,9453656,8105208,0,0,27452,0,1,1 +1773568387.525557,4.37,4,3992.50,60.02,1280.69,2349.93,0.00,3519089476338.890625,3519089476329.870117,11,0,0.001643,0.001274,9453690,8105238,0,0,27454,0,1,1 +1773568392.526427,6.72,4,3992.50,60.16,1278.92,2355.22,0.00,0.053506,0.000000,75,0,0.000405,0.000809,9453700,8105255,0,0,27457,0,1,1 +1773568397.526074,6.57,4,3992.50,59.53,1300.81,2330.84,0.00,8217.324295,11185.759784,616271,1447114,0.001240,0.001658,9453728,8105289,0,0,27459,0,1,1 +1773568402.523970,0.65,4,3992.50,59.25,1312.07,2319.59,0.00,3519918266819.814453,3519918263850.339355,75,0,0.000814,0.000415,9453744,8105301,0,0,27462,0,1,1 +1773568407.525957,6.45,4,3992.50,59.48,1303.84,2328.65,0.00,3517039834091.240234,0.000000,11,0,0.001468,0.002303,9453779,8105348,0,0,27464,0,1,1 +1773568412.521758,3.86,4,3992.50,59.65,1298.93,2335.61,0.00,0.053561,0.000000,75,0,0.000795,0.001048,9453794,8105363,0,0,27466,0,1,1 +1773568417.521778,1.46,4,3992.50,59.71,1296.47,2337.95,0.00,8207.204396,11564.990023,614838,1449354,0.003824,0.003443,9453858,8105433,0,0,27469,0,1,1 +1773568422.522542,17.98,4,3992.50,60.15,1300.30,2355.06,0.00,3517899334273.527832,3517899330914.284180,246,2,22.141558,0.106247,9461188,8110904,0,0,27472,0,1,1 +1773568427.524656,11.89,4,3992.50,60.07,1303.59,2351.74,0.00,3516949984283.703613,3516949984285.715332,11,0,16.086334,0.067744,9466193,8114588,0,0,27474,0,1,1 +1773568432.526158,2.90,4,3992.50,59.56,1323.39,2331.96,0.00,0.180219,0.000000,205,0,2.020842,0.016450,9467042,8115244,0,0,27477,0,1,1 +1773568437.526456,0.90,4,3992.50,59.11,1341.21,2314.14,0.00,1.831922,0.000195,246,2,0.003878,0.007122,9467142,8115384,0,0,27479,0,1,1 +1773568442.521672,1.36,4,3992.50,59.42,1333.10,2326.59,0.00,3521806171482.272461,3521806171484.287109,11,0,0.003882,0.007139,9467242,8115525,0,0,27482,0,1,1 +1773568447.526026,0.90,4,3992.50,59.39,1330.10,2325.39,0.00,1.654712,10.665910,251,212,0.003405,0.005850,9467327,8115641,0,0,27484,0,1,1 +1773568452.522683,0.85,4,3992.50,59.45,1327.94,2327.55,0.00,3520790973833.653809,3520790973824.628906,11,0,0.003881,0.007127,9467427,8115781,0,0,27486,0,1,1 +1773568457.526246,0.85,4,3992.50,59.41,1329.62,2325.87,0.00,2.010872,0.000195,246,2,0.005296,0.008882,9467542,8115947,0,0,27489,0,1,1 +1773568462.523227,0.95,4,3992.50,59.36,1331.26,2324.23,0.00,8217.739551,11573.419218,615299,1450886,0.003876,0.007145,9467642,8116089,0,0,27492,0,1,1 +1773568467.525808,0.75,4,3992.50,59.39,1330.29,2325.20,0.00,3516622040641.160156,3516622037300.262207,251,212,0.003406,0.006496,9467727,8116209,0,0,27494,0,1,1 +1773568472.521749,1.35,4,3992.50,59.66,1317.59,2335.75,0.00,3521296107640.223145,3521296107631.016602,205,0,0.003706,0.006786,9467819,8116344,0,0,27497,0,1,1 +1773568477.526239,7.73,4,3992.50,60.65,1262.14,2374.58,0.00,1.474554,10.665615,251,215,0.002088,0.004344,9467870,8116420,0,0,27499,0,1,1 +1773568482.526362,7.17,4,3992.50,60.42,1270.27,2365.48,0.00,0.000000,0.000000,251,215,0.000848,0.000888,9467889,8116441,0,0,27502,0,1,1 +1773568487.526231,1.10,4,3992.50,60.39,1269.59,2364.57,0.00,3518529440797.480957,3518529440788.461914,11,0,0.001640,0.001471,9467910,8116456,0,0,27504,0,1,1 +1773568492.525983,5.93,4,3992.50,60.07,1282.42,2351.73,0.00,0.053518,0.000000,75,0,0.001252,0.001670,9467939,8116491,0,0,27506,0,1,1 +1773568497.525714,1.20,4,3992.50,60.05,1283.04,2351.12,0.00,1.602723,10.675768,251,218,0.000795,0.000413,9467954,8116503,0,0,27509,0,1,1 +1773568502.525316,8.01,4,3992.50,59.62,1300.89,2334.14,0.00,8213.820742,12398.881087,615340,1455702,0.012403,0.005661,9468178,8116665,0,0,27512,0,1,1 +1773568507.525766,6.62,4,3992.50,60.48,1268.44,2367.90,0.00,3518120793551.452148,3518120789356.071289,246,2,0.000000,0.000664,9468178,8116671,0,0,27514,0,1,1 +1773568512.521681,14.62,4,3992.50,59.88,1308.52,2344.62,0.00,3521314066837.031250,3521314066839.045410,11,0,20.135274,0.091620,9474556,8121452,0,0,27517,0,1,1 +1773568517.525966,14.08,4,3992.50,59.98,1304.85,2348.25,0.00,8207.863449,12683.667403,615405,1458546,20.110291,0.091877,9481141,8126407,0,0,27519,0,1,1 +1773568522.521796,0.85,4,3992.50,59.98,1304.91,2348.20,0.00,3521374006165.527832,3521374001682.094727,75,0,0.003881,0.007138,9481241,8126548,0,0,27522,0,1,1 +1773568527.521773,1.05,4,3992.50,59.67,1316.82,2336.29,0.00,1.958798,0.000195,246,2,0.003878,0.007122,9481341,8126688,0,0,27524,0,1,1 +1773568532.521801,1.30,4,3992.50,59.69,1316.43,2336.88,0.00,3518417203864.649414,3518417203866.662109,11,0,0.003903,0.007110,9481443,8126827,0,0,27526,0,1,1 +1773568537.523688,0.90,4,3992.50,59.55,1319.86,2331.45,0.00,0.053495,0.000000,75,0,0.003427,0.005871,9481530,8126945,0,0,27529,0,1,1 +1773568542.526204,0.95,4,3992.50,59.25,1331.54,2319.78,0.00,1.957804,0.000195,246,2,0.003863,0.007611,9481629,8127089,0,0,27532,0,1,1 +1773568547.525778,0.90,4,3992.50,59.22,1332.86,2318.47,0.00,3518737371255.561035,10.675911,251,224,0.003878,0.007321,9481729,8127231,0,0,27534,0,1,1 +1773568552.525765,0.75,4,3992.50,59.26,1331.16,2320.16,0.00,0.000000,0.000000,251,224,0.003865,0.007120,9481828,8127371,0,0,27537,0,1,1 +1773568557.521707,1.00,4,3992.50,59.26,1331.18,2320.15,0.00,3521295571263.559570,3521295571254.352539,205,0,0.003423,0.005847,9481914,8127486,0,0,27539,0,1,1 +1773568562.524504,0.90,4,3992.50,59.26,1331.20,2320.12,0.00,3516469583799.870605,0.000000,11,0,0.003426,0.005870,9482001,8127604,0,0,27542,0,1,1 +1773568567.521795,1.16,4,3992.50,59.37,1332.72,2324.59,0.00,8219.352416,12702.098605,615405,1459076,0.003422,0.005858,9482087,8127720,0,0,27544,0,1,1 +1773568572.523761,7.13,4,3992.50,59.52,1310.61,2330.32,0.00,9.567918,215.550807,616907,1460504,0.001709,0.002936,9482130,8127779,0,0,27546,0,1,1 +1773568577.526285,8.09,4,3992.50,59.66,1305.17,2335.81,0.00,3516661830110.442383,3516661825426.426270,11,0,0.002086,0.002537,9482177,8127833,0,0,27549,0,1,1 +1773568582.525862,0.90,4,3992.50,59.66,1304.85,2335.79,0.00,2.012475,0.000195,246,2,0.000184,0.000184,9482181,8127839,0,0,27552,0,1,1 +1773568587.525779,8.83,4,3992.50,59.96,1293.44,2347.59,0.00,3518495625056.832520,3518495625058.664551,205,0,0.000687,0.001921,9482202,8127877,0,0,27554,0,1,1 +1773568592.523719,5.11,4,3992.50,60.03,1290.55,2350.20,0.00,1.476487,10.679596,251,233,0.000000,0.000030,9482202,8127880,0,0,27557,0,1,1 +1773568597.521783,0.95,4,3992.50,59.90,1295.39,2345.35,0.00,8216.466582,13741.395651,615452,1464947,0.000000,0.000020,9482202,8127882,0,0,27559,0,1,1 +1773568602.526470,8.04,4,3992.50,60.58,1267.26,2371.84,0.00,0.029660,218.783845,615461,1466183,0.001844,0.001916,9482241,8127925,0,0,27562,0,1,1 +1773568607.521713,5.28,4,3992.50,58.90,1348.35,2305.88,0.00,3521787940298.950684,3521787934542.525391,205,0,0.030141,0.019380,9482740,8128319,0,0,27564,0,1,1 +1773568612.523986,6.78,4,3992.50,59.27,1333.78,2320.45,0.00,3516838769087.399902,0.000000,75,0,8.036227,0.029712,9485075,8130005,0,0,27566,0,1,1 +1773568617.521696,20.86,4,3992.50,58.87,1349.18,2305.05,0.00,1.959687,0.000195,246,2,32.204375,0.137003,9495428,8137683,0,0,27569,0,1,1 +1773568622.525842,1.50,4,3992.50,59.23,1337.73,2318.89,0.00,3515522319877.781250,3515522319879.611816,205,0,0.003887,0.007126,9495529,8137824,0,0,27572,0,1,1 +1773568627.525569,0.95,4,3992.50,59.01,1345.63,2310.44,0.00,1.832131,0.000195,246,2,0.003878,0.007123,9495629,8137964,0,0,27574,0,1,1 +1773568632.521698,0.70,4,3992.50,59.03,1344.91,2311.18,0.00,0.000000,0.000000,246,2,0.003418,0.005878,9495715,8138082,0,0,27577,0,1,1 +1773568637.521725,0.85,4,3992.50,59.04,1344.71,2311.38,0.00,0.000000,0.000000,246,2,0.003878,0.007122,9495815,8138222,0,0,27579,0,1,1 +1773568642.524497,0.70,4,3992.50,58.98,1346.82,2309.27,0.00,3516487919760.663574,10.669086,251,236,0.003876,0.007116,9495915,8138362,0,0,27582,0,1,1 +1773568647.522683,0.70,4,3992.50,58.94,1348.57,2307.52,0.00,0.000000,0.000000,251,236,0.003879,0.007125,9496015,8138502,0,0,27584,0,1,1 +1773568652.526054,1.10,4,3992.50,59.35,1330.82,2323.68,0.00,3516066427958.364258,3516066427949.298340,75,0,0.003426,0.005859,9496102,8138619,0,0,27586,0,1,1 +1773568657.521739,0.80,4,3992.50,59.34,1331.23,2323.27,0.00,3521476294338.714844,0.000000,11,0,0.003869,0.007783,9496201,8138764,0,0,27589,0,1,1 +1773568662.521718,1.55,4,3992.50,58.98,1345.33,2309.19,0.00,1.656160,10.675241,251,236,0.003878,0.007132,9496301,8138905,0,0,27592,0,1,1 +1773568667.522556,8.78,4,3992.50,59.60,1300.58,2333.63,0.00,0.356093,3517847471997.333008,246,2,0.001886,0.003083,9496347,8138966,0,0,27594,0,1,1 +1773568672.521798,0.95,4,3992.50,59.69,1297.46,2337.12,0.00,3518970479299.629395,10.676618,251,239,0.002844,0.002617,9496394,8139002,0,0,27597,0,1,1 +1773568677.525968,4.92,4,3992.50,59.53,1305.86,2330.63,0.00,0.355856,3515505730593.449219,246,2,0.000237,0.000661,9496402,8139017,0,0,27599,0,1,1 +1773568682.525865,7.39,4,3992.50,59.24,1319.09,2319.41,0.00,3518509291173.632324,3518509291175.645020,11,0,0.007620,0.002832,9496528,8139107,0,0,27602,0,1,1 +1773568687.526124,7.29,4,3992.50,60.10,1285.62,2352.88,0.00,8224.146393,14974.982957,617000,1474204,0.000000,0.000020,9496528,8139109,0,0,27604,0,1,1 +1773568692.526128,1.30,4,3992.50,59.68,1301.47,2336.47,0.00,3518434249396.160156,3518434242644.799805,205,0,0.012747,0.006804,9496754,8139268,0,0,27606,0,1,1 +1773568697.526463,8.33,4,3992.50,60.77,1259.18,2379.20,0.00,3518201668095.901855,0.000000,11,0,0.000237,0.000671,9496762,8139284,0,0,27609,0,1,1 +1773568702.525722,0.55,4,3992.50,60.06,1287.08,2351.29,0.00,8216.226582,15349.919079,615511,1476029,0.000000,0.000674,9496762,8139291,0,0,27612,0,1,1 +1773568707.522571,1.51,4,3992.50,59.43,1322.30,2326.87,0.00,3520656056124.477051,3520656048987.342285,11,0,0.004169,0.002821,9496825,8139346,0,0,27614,0,1,1 +1773568712.525841,19.97,4,3992.50,59.82,1306.96,2342.22,0.00,8209.662189,15340.173406,615537,1476912,28.216638,0.118995,9505595,8145818,0,0,27617,0,1,1 +1773568717.522757,10.97,4,3992.50,59.70,1311.58,2337.55,0.00,3520608906579.359375,3520608899439.781250,11,0,16.034801,0.074542,9510852,8149766,0,0,27619,0,1,1 +1773568722.525625,0.90,4,3992.50,59.14,1333.81,2315.33,0.00,0.180170,0.000000,205,0,0.003884,0.007126,9510953,8149907,0,0,27621,0,1,1 +1773568727.526506,0.90,4,3992.50,59.14,1333.76,2315.38,0.00,0.000000,0.000000,205,0,0.003420,0.005864,9511039,8150024,0,0,27624,0,1,1 +1773568732.521746,0.65,4,3992.50,58.99,1339.68,2309.45,0.00,8232.260726,15375.810666,617040,1477599,0.003882,0.007129,9511139,8150164,0,0,27626,0,1,1 +1773568737.521741,0.75,4,3992.50,58.93,1341.96,2307.18,0.00,3518440963984.708496,3518440956857.151367,251,248,0.003878,0.007132,9511239,8150305,0,0,27629,0,1,1 +1773568742.525665,1.15,4,3992.50,59.09,1348.20,2313.65,0.00,8216.498048,15338.869582,617040,1477896,0.003883,0.007135,9511340,8150447,0,0,27632,0,1,1 +1773568747.522679,0.80,4,3992.50,59.08,1348.68,2313.11,0.00,3520539359070.350098,3520539351938.129395,251,248,0.003422,0.005859,9511426,8150563,0,0,27634,0,1,1 +1773568752.525223,0.60,4,3992.50,59.08,1348.70,2313.09,0.00,8218.765831,15343.229858,617040,1478020,0.003876,0.007129,9511526,8150704,0,0,27637,0,1,1 +1773568757.521796,0.75,4,3992.50,59.09,1348.46,2313.32,0.00,3520850147708.662598,3520850140575.685547,251,248,0.004406,0.008892,9511641,8150871,0,0,27639,0,1,1 +1773568762.526705,6.17,4,3992.50,59.10,1329.13,2313.72,0.00,8205.330356,15506.172847,615551,1478912,0.002502,0.003327,9511699,8150940,0,0,27642,0,1,1 +1773568767.524838,4.97,4,3992.50,59.43,1315.75,2326.73,0.00,3519751502629.352051,3519751495309.589844,11,0,0.000184,0.000818,9511703,8150949,0,0,27644,0,1,1 +1773568772.521698,5.47,4,3992.50,60.88,1260.06,2383.53,0.00,0.053549,0.000000,75,0,0.001574,0.002613,9511741,8151004,0,0,27646,0,1,1 +1773568777.525882,0.60,4,3992.50,60.40,1278.84,2364.78,0.00,0.126652,0.000000,205,0,0.001198,0.001191,9511766,8151030,0,0,27649,0,1,1 +1773568782.525593,7.82,4,3992.50,59.07,1331.59,2312.70,0.00,8224.904907,16118.566722,617048,1482402,0.007095,0.002627,9511884,8151118,0,0,27652,0,1,1 +1773568787.525894,6.02,4,3992.50,61.24,1245.37,2397.75,0.00,3518225355644.316406,3518225347751.766602,11,0,0.000229,0.000653,9511891,8151132,0,0,27654,0,1,1 +1773568792.526268,0.55,4,3992.50,60.37,1279.50,2363.66,0.00,0.000000,0.000000,11,0,0.000237,0.000671,9511899,8151148,0,0,27657,0,1,1 +1773568797.525843,11.14,4,3992.50,60.54,1291.74,2370.14,0.00,8215.753390,16412.119781,615568,1484339,10.069317,0.054701,9515089,8153504,0,0,27659,0,1,1 +1773568802.527533,10.47,4,3992.50,59.62,1317.79,2334.38,0.00,3517248371422.054199,3517248363229.154297,11,0,12.066387,0.051219,9518896,8156276,0,0,27662,0,1,1 +1773568807.521698,11.86,4,3992.50,58.80,1349.71,2301.95,0.00,0.000000,0.000000,11,0,18.134833,0.084315,9524834,8160809,0,0,27664,0,1,1 +1773568812.525840,0.80,4,3992.50,58.80,1349.49,2302.17,0.00,0.053471,0.000000,75,0,0.003392,0.005825,9524918,8160923,0,0,27666,0,1,1 +1773568817.526070,1.00,4,3992.50,58.81,1349.02,2302.64,0.00,3518275385806.776367,0.000000,11,0,0.003886,0.007140,9525019,8161065,0,0,27669,0,1,1 +1773568822.526626,0.85,4,3992.50,58.86,1347.07,2304.59,0.00,8226.385959,16420.570713,619689,1485685,0.003878,0.007132,9525119,8161206,0,0,27672,0,1,1 +1773568827.523796,0.90,4,3992.50,58.80,1349.39,2302.28,0.00,0.000000,0.012312,619689,1485698,0.003880,0.007126,9525219,8161346,0,0,27674,0,1,1 +1773568832.523847,1.35,4,3992.50,58.99,1343.17,2309.39,0.00,3518401752759.896484,3518401744573.890137,251,260,0.003420,0.005865,9525305,8161463,0,0,27677,0,1,1 +1773568837.525773,0.85,4,3992.50,59.00,1342.46,2310.11,0.00,3517082141846.601562,3517082141837.586426,11,0,0.003877,0.007120,9525405,8161603,0,0,27679,0,1,1 +1773568842.525655,0.95,4,3992.50,58.94,1344.84,2307.72,0.00,1.656191,10.675447,251,260,0.003428,0.005873,9525492,8161721,0,0,27682,0,1,1 +1773568847.526090,0.85,4,3992.50,59.00,1342.66,2309.91,0.00,0.356121,3518131552196.017578,246,2,0.003244,0.005709,9525575,8161835,0,0,27684,0,1,1 +1773568852.523488,1.00,4,3992.50,59.00,1342.68,2309.89,0.00,0.000000,0.000000,246,2,0.003880,0.007114,9525675,8161974,0,0,27686,0,1,1 +1773568857.522788,7.58,4,3992.50,59.67,1298.69,2336.24,0.00,0.000000,0.000000,246,2,0.002103,0.003715,9525727,8162047,0,0,27689,0,1,1 +1773568862.525584,5.92,4,3992.50,61.13,1241.01,2393.46,0.00,0.000000,0.000000,246,2,0.000000,0.000673,9525727,8162054,0,0,27692,0,1,1 +1773568867.526058,10.03,4,3992.50,59.50,1306.57,2329.69,0.00,0.000000,0.000000,246,2,0.007119,0.002591,9525847,8162139,0,0,27694,0,1,1 +1773568872.521739,2.26,4,3992.50,59.58,1303.67,2332.61,0.00,3521479453012.677246,3521479453014.637695,75,0,0.000008,0.000038,9525848,8162143,0,0,27697,0,1,1 +1773568877.525896,1.30,4,3992.50,59.33,1313.16,2322.98,0.00,0.126653,0.000000,205,0,0.000000,0.000020,9525848,8162145,0,0,27699,0,1,1 +1773568882.524822,8.03,4,3992.50,62.01,1206.55,2427.77,0.00,0.000000,0.000000,205,0,0.000000,0.000030,9525848,8162148,0,0,27702,0,1,1 +1773568887.525964,1.00,4,3992.50,60.21,1276.82,2357.50,0.00,0.000000,0.000000,205,0,0.000229,0.000653,9525855,8162162,0,0,27704,0,1,1 +1773568892.522020,11.89,4,3992.50,59.22,1339.75,2318.54,0.00,3521214781131.549316,0.000000,75,0,12.088094,0.059050,9529768,8165066,0,0,27706,0,1,1 +1773568897.526606,18.12,4,3992.50,59.70,1320.98,2337.27,0.00,8210.450088,17605.204423,618326,1493687,28.140764,0.118808,9538849,8171759,0,0,27709,0,1,1 +1773568902.522316,1.66,4,3992.50,59.52,1327.97,2330.29,0.00,3521459044961.093262,3521459035549.519043,205,0,0.011476,0.010322,9539107,8172005,0,0,27712,0,1,1 +1773568907.526077,0.90,4,3992.50,59.04,1346.85,2311.41,0.00,8211.676269,17608.167021,618326,1493763,0.003877,0.007767,9539207,8172149,0,0,27714,0,1,1 +1773568912.526103,0.80,4,3992.50,59.07,1345.39,2312.88,0.00,3518418781039.162598,3518418771635.832520,11,0,0.003878,0.007132,9539307,8172290,0,0,27717,0,1,1 +1773568917.524917,1.05,4,3992.50,59.08,1345.17,2313.09,0.00,8219.985330,17625.723072,618326,1493905,0.003879,0.007099,9539407,8172428,0,0,27719,0,1,1 +1773568922.525751,1.20,4,3992.50,59.20,1341.09,2317.94,0.00,3517850205849.699219,3517850196445.750977,246,2,0.003432,0.005864,9539494,8172545,0,0,27722,0,1,1 +1773568927.523405,0.95,4,3992.50,59.20,1340.88,2317.93,0.00,3520088897953.887695,3520088897955.720703,205,0,0.003875,0.007134,9539594,8172686,0,0,27724,0,1,1 +1773568932.521798,1.05,4,3992.50,59.20,1340.89,2317.91,0.00,3519567996806.441406,0.000000,11,0,0.003879,0.007125,9539694,8172826,0,0,27726,0,1,1 +1773568937.525813,0.85,4,3992.50,59.20,1340.91,2317.89,0.00,0.053473,0.000000,75,0,0.003646,0.007112,9539787,8172957,0,0,27729,0,1,1 +1773568942.526037,0.85,4,3992.50,59.01,1348.55,2310.25,0.00,3518279738422.270508,0.000000,11,0,0.003649,0.006511,9539880,8173087,0,0,27732,0,1,1 +1773568947.521716,0.85,4,3992.50,59.01,1348.57,2310.23,0.00,2.014045,0.000195,246,2,0.003894,0.007129,9539981,8173227,0,0,27734,0,1,1 +1773568952.521761,1.15,4,3992.50,59.21,1340.70,2318.04,0.00,3518405380682.486816,3518405380684.445312,75,0,0.003886,0.007140,9540082,8173369,0,0,27737,0,1,1 +1773568957.521715,0.85,4,3992.50,59.21,1340.51,2318.24,0.00,0.126759,0.000000,205,0,0.003420,0.005855,9540168,8173485,0,0,27739,0,1,1 +1773568962.522580,6.22,4,3992.50,59.48,1330.02,2328.71,0.00,3517828540821.138184,0.000000,11,0,6.102908,0.037603,9542323,8175197,0,0,27742,0,1,1 +1773568967.522367,13.46,4,3992.50,59.06,1346.29,2312.43,0.00,1.656223,10.675652,251,272,18.055437,0.082587,9548192,8179647,0,0,27744,0,1,1 +1773568972.526121,11.31,4,3992.50,60.01,1309.00,2349.64,0.00,3515796790645.338867,3515796790636.327148,11,0,16.087996,0.072137,9553401,8183549,0,0,27746,0,1,1 +1773568977.526209,1.65,4,3992.50,59.83,1316.03,2342.62,0.00,0.000000,0.000000,11,0,0.010653,0.010816,9553627,8183779,0,0,27749,0,1,1 +1773568982.523034,1.25,4,3992.50,59.70,1316.98,2337.45,0.00,0.180388,0.000000,205,0,0.003889,0.007145,9553728,8183921,0,0,27752,0,1,1 +1773568987.521789,0.75,4,3992.50,59.71,1316.73,2337.71,0.00,3519313698182.728027,0.000000,11,0,0.003409,0.005857,9553813,8184037,0,0,27754,0,1,1 +1773568992.521756,0.75,4,3992.50,59.53,1323.69,2330.75,0.00,0.000000,0.000000,11,0,0.003865,0.007764,9553912,8184181,0,0,27757,0,1,1 +1773568997.525880,1.50,4,3992.50,59.42,1328.16,2326.28,0.00,1.654787,10.666397,251,272,0.003875,0.007117,9554012,8184321,0,0,27759,0,1,1 +1773569002.526488,0.70,4,3992.50,59.45,1326.78,2327.66,0.00,3518009726372.866699,3518009726363.849121,11,0,0.003878,0.007131,9554112,8184462,0,0,27762,0,1,1 +1773569007.524314,1.25,4,3992.50,59.45,1326.80,2327.64,0.00,0.053539,0.000000,75,0,0.003417,0.005866,9554198,8184579,0,0,27764,0,1,1 +1773569012.522663,1.10,4,3992.50,59.92,1308.96,2346.13,0.00,1.603166,10.678723,251,272,0.003854,0.007125,9554296,8184719,0,0,27766,0,1,1 +1773569017.525564,0.75,4,3992.50,59.58,1321.82,2332.71,0.00,3516396344485.870117,3516396344476.856445,11,0,0.004242,0.007622,9554391,8184860,0,0,27769,0,1,1 +1773569022.524041,0.75,4,3992.50,59.61,1320.52,2334.00,0.00,0.000000,0.000000,11,0,0.003703,0.006989,9554488,8184999,0,0,27772,0,1,1 +1773569027.523440,1.20,4,3992.50,59.42,1327.94,2326.59,0.00,0.180295,0.000000,205,0,0.003421,0.005856,9554574,8185115,0,0,27774,0,1,1 +1773569032.526314,0.95,4,3992.50,59.24,1335.13,2319.41,0.00,3516415618730.732422,0.000000,75,0,0.003888,0.007128,9554675,8185256,0,0,27777,0,1,1 +1773569037.526340,9.34,4,3992.50,59.13,1339.29,2315.25,0.00,0.126757,0.000000,205,0,10.068298,0.052851,9558012,8187855,0,0,27779,0,1,1 +1773569042.527194,17.10,4,3992.50,60.51,1285.31,2369.19,0.00,1.475627,10.673374,251,272,22.130059,0.097458,9565098,8193062,0,0,27782,0,1,1 +1773569047.522870,6.49,4,3992.50,60.04,1304.00,2350.51,0.00,3521482443222.011719,3521482443212.931641,75,0,8.065885,0.043321,9567895,8195193,0,0,27784,0,1,1 +1773569052.524974,0.85,4,3992.50,59.65,1319.08,2335.41,0.00,0.000000,0.000000,75,0,0.003419,0.005853,9567981,8195309,0,0,27786,0,1,1 +1773569057.524019,0.90,4,3992.50,59.49,1325.40,2329.11,0.00,8219.552417,17628.333955,618326,1497408,0.005326,0.009535,9568098,8195479,0,0,27789,0,1,1 +1773569062.521724,1.00,4,3992.50,59.42,1327.93,2326.57,0.00,3520052557713.986328,3520052548300.725586,246,2,0.003888,0.007144,9568199,8195621,0,0,27792,0,1,1 +1773569067.526543,0.75,4,3992.50,59.44,1327.16,2327.34,0.00,3515049095941.262207,3515049095943.219238,75,0,0.003874,0.007090,9568299,8195759,0,0,27794,0,1,1 +1773569072.522556,1.46,4,3992.50,59.63,1319.75,2334.72,0.00,0.126859,0.000000,205,0,0.003920,0.006983,9568397,8195900,0,0,27797,0,1,1 +1773569077.525818,0.90,4,3992.50,59.55,1322.82,2331.65,0.00,1.830837,0.000195,246,2,0.003875,0.007118,9568497,8196040,0,0,27799,0,1,1 +1773569082.526443,1.00,4,3992.50,59.57,1322.35,2332.12,0.00,3517997338898.370117,3517997338900.328125,75,0,0.003878,0.007131,9568597,8196181,0,0,27802,0,1,1 +1773569087.525675,0.80,4,3992.50,59.39,1329.26,2325.21,0.00,3518978141980.357910,0.000000,11,0,0.003650,0.006477,9568690,8196308,0,0,27804,0,1,1 +1773569092.521683,1.00,4,3992.50,59.14,1339.10,2315.37,0.00,1.657476,10.683726,251,272,0.003660,0.006515,9568784,8196438,0,0,27806,0,1,1 +1773569097.526146,0.80,4,3992.50,58.96,1345.90,2308.57,0.00,3515298873083.168945,3515298873074.104980,75,0,0.003875,0.007126,9568884,8196579,0,0,27809,0,1,1 +1773569102.521725,1.36,4,3992.50,58.91,1343.85,2306.55,0.00,0.000000,0.000000,75,0,0.004614,0.008112,9568991,8196726,0,0,27812,0,1,1 +1773569107.522622,1.45,4,3992.50,58.84,1346.56,2303.56,0.00,0.126735,0.000000,205,0,0.007569,0.007022,9569146,8196885,0,0,27814,0,1,1 +1773569112.522667,17.56,4,3992.50,59.78,1309.36,2340.70,0.00,1.475866,10.675099,251,272,22.139993,0.104154,9576382,8202293,0,0,27817,0,1,1 +1773569117.526168,12.49,4,3992.50,60.46,1282.79,2367.25,0.00,8210.628862,17602.915332,618326,1498666,18.103282,0.084376,9582391,8206774,0,0,27819,0,1,1 +1773569122.522888,1.15,4,3992.50,60.08,1297.79,2352.25,0.00,3520746625964.855469,3520746616550.617676,205,0,0.003423,0.006513,9582477,8206895,0,0,27822,0,1,1 +1773569127.525415,1.70,4,3992.50,59.52,1319.71,2330.34,0.00,3516660477366.722656,0.000000,11,0,0.003876,0.007119,9582577,8207035,0,0,27824,0,1,1 +1773569132.521727,1.36,4,3992.50,59.51,1319.91,2330.12,0.00,0.180406,0.000000,205,0,0.003881,0.007128,9582677,8207175,0,0,27826,0,1,1 +1773569137.521768,0.95,4,3992.50,59.26,1329.70,2320.29,0.00,1.475867,10.675108,251,272,0.003878,0.007132,9582777,8207316,0,0,27829,0,1,1 +1773569142.521831,0.95,4,3992.50,59.26,1329.82,2320.16,0.00,0.000000,0.000000,251,272,0.003420,0.005852,9582863,8207432,0,0,27832,0,1,1 +1773569147.523220,0.75,4,3992.50,59.25,1330.19,2319.80,0.00,8223.655467,17622.040085,619815,1499695,0.003407,0.005854,9582948,8207548,0,0,27834,0,1,1 +1773569152.522173,0.85,4,3992.50,59.04,1338.35,2311.63,0.00,3519174046725.229980,3519174037313.191895,75,0,0.003879,0.007134,9583048,8207689,0,0,27837,0,1,1 +1773569157.526376,0.85,4,3992.50,59.10,1336.23,2313.76,0.00,3515481619740.477539,0.000000,11,0,0.003875,0.007116,9583148,8207829,0,0,27839,0,1,1 +1773569162.526543,1.15,4,3992.50,59.18,1346.86,2316.92,0.00,8227.322336,17637.157779,619815,1499791,0.003428,0.005873,9583235,8207947,0,0,27842,0,1,1 +1773569167.525133,0.75,4,3992.50,58.93,1356.35,2307.15,0.00,0.000000,0.018267,619815,1499811,0.003879,0.007124,9583335,8208087,0,0,27844,0,1,1 +1773569172.521749,0.85,4,3992.50,58.93,1356.45,2307.06,0.00,3520819912716.535156,3520819903309.020996,251,272,0.003881,0.007127,9583435,8208227,0,0,27846,0,1,1 +1773569177.522115,0.90,4,3992.50,58.75,1363.35,2300.15,0.00,8225.337765,17625.822227,619815,1499835,0.003878,0.007132,9583535,8208368,0,0,27849,0,1,1 +1773569182.526363,5.87,4,3992.50,59.21,1345.23,2318.26,0.00,3515450178887.818359,3515450169483.604980,246,2,6.034024,0.031756,9585453,8209838,0,0,27852,0,1,1 +1773569187.522350,20.86,4,3992.50,60.57,1291.79,2371.63,0.00,3521263766040.089355,3521263766042.103516,11,0,30.312944,0.143060,9595525,8217500,0,0,27854,0,1,1 +1773569192.526098,3.76,4,3992.50,60.05,1301.32,2351.07,0.00,8221.433323,17625.252904,619815,1500671,3.936532,0.025444,9596992,8218654,0,0,27857,0,1,1 +1773569197.521770,0.90,4,3992.50,59.67,1316.04,2336.35,0.00,3521485291272.232422,3521485281862.237793,251,272,0.003894,0.007129,9597093,8218794,0,0,27859,0,1,1 +1773569202.525409,0.80,4,3992.50,59.54,1321.36,2331.04,0.00,0.355893,3515878201534.685547,246,2,0.003875,0.007105,9597193,8218933,0,0,27861,0,1,1 +1773569207.524504,1.00,4,3992.50,59.47,1324.06,2328.33,0.00,3519074463297.289551,10.676933,251,272,0.003429,0.005874,9597280,8219051,0,0,27864,0,1,1 +1773569212.526646,0.85,4,3992.50,59.50,1322.85,2329.55,0.00,3516930197258.158691,3516930197249.143555,11,0,0.003472,0.006340,9597370,8219177,0,0,27866,0,1,1 +1773569217.526334,0.85,4,3992.50,59.50,1322.86,2329.53,0.00,1.656256,10.675862,251,272,0.003192,0.005219,9597449,8219281,0,0,27869,0,1,1 +1773569222.525829,1.50,4,3992.50,59.28,1334.78,2320.93,0.00,0.000000,0.000000,251,272,0.003878,0.007133,9597549,8219422,0,0,27872,0,1,1 +1773569227.522986,1.05,4,3992.50,59.33,1332.66,2323.08,0.00,0.000000,0.000000,251,272,0.003730,0.006888,9597646,8219556,0,0,27874,0,1,1 +1773569232.526178,0.85,4,3992.50,59.33,1332.68,2323.07,0.00,0.000000,0.000000,251,272,0.003568,0.006099,9597735,8219679,0,0,27877,0,1,1 +1773569237.526494,0.90,4,3992.50,59.33,1332.69,2323.05,0.00,8225.420586,17627.605362,619815,1501474,0.003878,0.007122,9597835,8219819,0,0,27879,0,1,1 +1773569242.525928,0.85,4,3992.50,59.27,1335.38,2320.36,0.00,3518835504686.062988,3518835495271.187988,246,2,0.003891,0.007121,9597936,8219959,0,0,27882,0,1,1 +1773569247.524751,1.00,4,3992.50,59.10,1341.91,2313.82,0.00,0.000000,0.000000,246,2,0.003650,0.006478,9598029,8220086,0,0,27884,0,1,1 +1773569252.525634,10.32,4,3992.50,59.16,1339.30,2316.17,0.00,3517815957658.176758,3517815957660.135254,75,0,8.063774,0.047580,9600845,8222252,0,0,27886,0,1,1 +1773569257.521698,19.88,4,3992.50,59.60,1321.75,2333.65,0.00,0.000000,0.000000,75,0,32.217069,0.139740,9611282,8229854,0,0,27889,0,1,1 +1773569262.524841,1.95,4,3992.50,58.85,1351.21,2304.18,0.00,3516226882644.637207,0.000000,11,0,0.008487,0.008786,9611462,8230041,0,0,27892,0,1,1 +1773569267.521710,0.75,4,3992.50,58.90,1349.52,2305.88,0.00,0.000000,0.000000,11,0,0.003422,0.005846,9611548,8230156,0,0,27894,0,1,1 +1773569272.522612,1.10,4,3992.50,58.90,1349.30,2306.10,0.00,1.655854,10.673270,251,272,0.006720,0.009061,9611695,8230325,0,0,27897,0,1,1 +1773569277.521711,0.95,4,3992.50,58.90,1349.30,2306.10,0.00,3519071359616.885254,3519071359607.811523,75,0,0.003879,0.007111,9611795,8230464,0,0,27899,0,1,1 +1773569282.521731,1.30,4,3992.50,59.13,1349.41,2315.07,0.00,0.126757,0.000000,205,0,0.003420,0.005878,9611881,8230582,0,0,27902,0,1,1 +1773569287.526088,0.90,4,3992.50,59.13,1347.26,2315.06,0.00,1.830436,0.000195,246,2,0.003875,0.007116,9611981,8230722,0,0,27904,0,1,1 +1773569292.525185,0.85,4,3992.50,59.13,1347.28,2315.04,0.00,3519072411304.830566,3519072411306.843750,11,0,0.003891,0.007111,9612082,8230861,0,0,27906,0,1,1 +1773569297.523576,0.80,4,3992.50,59.15,1346.55,2315.76,0.00,8230.244867,17646.630669,619815,1503177,0.003879,0.007109,9612182,8231000,0,0,27909,0,1,1 +1773569302.521792,0.85,4,3992.50,59.14,1347.04,2315.28,0.00,3519692992393.069824,3519692992392.014160,618326,1502966,0.003429,0.005900,9612269,8231120,0,0,27912,0,1,1 +1773569307.525085,0.80,4,3992.50,59.14,1347.04,2315.28,0.00,3516121039616.011230,3516121030207.896484,246,2,0.003875,0.007118,9612369,8231260,0,0,27914,0,1,1 +1773569312.526208,1.20,4,3992.50,59.14,1342.00,2315.46,0.00,8223.737464,17637.138220,619815,1503309,0.003877,0.007118,9612469,8231400,0,0,27917,0,1,1 +1773569317.524299,0.80,4,3992.50,59.14,1342.04,2315.45,0.00,3519780776301.280273,3519780766884.129883,75,0,0.003472,0.006390,9612559,8231522,0,0,27919,0,1,1 +1773569322.522634,14.82,4,3992.50,59.67,1321.42,2336.05,0.00,1.959442,0.000195,246,2,16.116195,0.082079,9617899,8235491,0,0,27922,0,1,1 +1773569327.526724,13.26,4,3992.50,58.92,1350.45,2306.99,0.00,3515560859952.810547,3515560859954.821289,11,0,20.101083,0.088739,9624419,8240498,0,0,27924,0,1,1 +1773569332.521696,4.82,4,3992.50,58.95,1349.59,2307.83,0.00,1.657819,10.685941,251,272,4.035848,0.021746,9625816,8241482,0,0,27926,0,1,1 +1773569337.521712,1.00,4,3992.50,59.01,1346.96,2310.46,0.00,3518426243354.494629,3518426243345.295410,205,0,0.003878,0.007132,9625916,8241623,0,0,27929,0,1,1 +1773569342.525435,1.40,4,3992.50,59.38,1332.45,2324.97,0.00,1.474781,10.667253,251,272,0.003405,0.005873,9626001,8241741,0,0,27932,0,1,1 +1773569347.526154,1.05,4,3992.50,59.32,1335.08,2322.35,0.00,0.356101,3517930925843.332520,246,2,0.003877,0.007121,9626101,8241881,0,0,27934,0,1,1 +1773569352.521757,0.95,4,3992.50,59.15,1341.62,2315.82,0.00,3521534106546.527344,10.684396,251,272,0.003889,0.007147,9626202,8242023,0,0,27937,0,1,1 +1773569357.521912,1.00,4,3992.50,59.21,1339.19,2318.24,0.00,0.356141,3518328523482.440430,246,2,0.004390,0.008196,9626316,8242184,0,0,27939,0,1,1 +1773569362.525844,0.95,4,3992.50,59.22,1338.74,2318.69,0.00,8219.119559,17628.572287,619815,1504677,0.003418,0.005866,9626402,8242300,0,0,27941,0,1,1 +1773569367.526045,0.95,4,3992.50,59.22,1338.76,2318.67,0.00,0.000000,0.037987,619815,1504717,0.003865,0.007132,9626501,8242441,0,0,27944,0,1,1 +1773569372.526177,1.25,4,3992.50,59.21,1345.73,2318.06,0.00,3518344081348.484375,3518344071931.842285,246,2,0.004374,0.008209,9626613,8242603,0,0,27946,0,1,1 +1773569377.526019,0.80,4,3992.50,59.22,1345.29,2318.50,0.00,3518548870029.758301,3518548870031.590332,205,0,0.003878,0.007133,9626713,8242744,0,0,27949,0,1,1 +1773569382.525939,1.00,4,3992.50,59.22,1345.30,2318.48,0.00,3518492876366.213867,0.000000,11,0,0.003420,0.006497,9626799,8242864,0,0,27952,0,1,1 +1773569387.525781,0.95,4,3992.50,59.19,1346.33,2317.46,0.00,2.012368,0.000195,246,2,0.003866,0.007123,9626898,8243004,0,0,27954,0,1,1 +1773569392.521784,0.85,4,3992.50,59.15,1347.84,2315.96,0.00,8232.164655,17656.871618,619815,1505023,0.003881,0.007138,9626998,8243145,0,0,27957,0,1,1 +1773569397.526334,17.54,4,3992.50,60.26,1304.63,2359.12,0.00,3515238132180.704102,3515238122774.050781,75,0,20.123088,0.101863,9633705,8248179,0,0,27959,0,1,1 +1773569402.525787,14.52,4,3992.50,59.36,1336.74,2324.23,0.00,0.000000,0.000000,75,0,20.119859,0.086020,9640109,8252868,0,0,27961,0,1,1 +1773569407.525804,1.20,4,3992.50,59.40,1335.26,2325.63,0.00,8227.513182,17643.872912,619815,1506305,0.003420,0.005865,9640195,8252985,0,0,27964,0,1,1 +1773569412.526016,1.00,4,3992.50,59.21,1342.69,2318.20,0.00,3518287897183.083496,3518287887767.143555,11,0,0.003878,0.007122,9640295,8253125,0,0,27966,0,1,1 +1773569417.521721,0.85,4,3992.50,59.21,1342.81,2318.06,0.00,0.000000,0.000000,11,0,0.003881,0.007138,9640395,8253266,0,0,27969,0,1,1 +1773569422.522065,0.85,4,3992.50,59.13,1345.90,2314.99,0.00,1.656038,10.674460,251,272,0.003878,0.007144,9640495,8253408,0,0,27972,0,1,1 +1773569427.525949,0.95,4,3992.50,59.16,1344.71,2316.18,0.00,0.000000,0.000000,251,272,0.004642,0.006343,9640604,8253537,0,0,27974,0,1,1 +1773569432.521698,1.40,4,3992.50,59.47,1328.56,2328.41,0.00,0.356455,3521430927316.794922,246,2,0.003894,0.007138,9640705,8253678,0,0,27977,0,1,1 +1773569437.526057,0.85,4,3992.50,59.42,1330.40,2326.42,0.00,8208.865484,17618.283613,618326,1506306,0.003875,0.007104,9640805,8253817,0,0,27979,0,1,1 +1773569442.526409,0.90,4,3992.50,59.05,1344.72,2312.10,0.00,0.000000,0.006640,618326,1506314,0.003636,0.006486,9640897,8253945,0,0,27982,0,1,1 +1773569447.522721,0.85,4,3992.50,58.94,1349.16,2307.67,0.00,3521034636227.051758,3521034626804.431641,75,0,0.003672,0.006998,9640992,8254078,0,0,27984,0,1,1 +1773569452.523355,0.85,4,3992.50,59.01,1346.61,2310.23,0.00,1.602434,10.673842,251,272,0.003878,0.007282,9641092,8254219,0,0,27986,0,1,1 +1773569457.522711,0.90,4,3992.50,59.01,1346.62,2310.21,0.00,3518890061881.440918,3518890061872.367676,75,0,0.003866,0.007133,9641191,8254360,0,0,27989,0,1,1 +1773569462.521726,1.25,4,3992.50,59.42,1330.40,2326.41,0.00,0.126783,0.000000,205,0,0.003421,0.005866,9641277,8254477,0,0,27992,0,1,1 +1773569467.525674,1.75,4,3992.50,59.07,1344.22,2312.59,0.00,8220.925838,17630.589124,619815,1506779,0.009429,0.009937,9641471,8254679,0,0,27994,0,1,1 +1773569472.526175,21.20,4,3992.50,59.99,1308.04,2348.69,0.00,3518084383230.679688,3518084373814.712402,11,0,30.189543,0.138473,9651404,8262091,0,0,27997,0,1,1 +1773569477.521816,5.47,4,3992.50,60.06,1305.36,2351.37,0.00,0.000000,0.000000,11,0,6.043744,0.029026,9653373,8263581,0,0,27999,0,1,1 +1773569482.522669,4.12,4,3992.50,59.56,1324.88,2331.85,0.00,0.000000,0.000000,11,0,4.028440,0.022878,9654726,8264596,0,0,28002,0,1,1 +1773569487.526123,0.95,4,3992.50,59.37,1332.36,2324.38,0.00,8221.917055,17633.409435,619815,1508059,0.003418,0.005851,9654812,8264712,0,0,28004,0,1,1 +1773569492.525844,1.30,4,3992.50,59.57,1325.36,2332.13,0.00,3518633223010.387207,3518633213600.889160,251,272,0.003878,0.007123,9654912,8264852,0,0,28006,0,1,1 +1773569497.527734,10.78,4,3992.50,65.76,1169.91,2574.57,0.00,0.000000,0.000000,251,272,0.003891,0.007142,9655013,8264994,0,0,28009,0,1,1 +1773569502.526493,29.86,4,3992.50,66.95,1117.52,2621.40,0.00,8426.502886,17631.933870,632608,1510521,0.003961,0.007218,9655119,8265142,0,0,28012,0,1,1 +1773569507.522762,30.06,4,3992.50,59.49,1418.89,2328.99,0.00,177.173596,2.438929,644555,1512587,0.003438,0.005885,9655206,8265260,0,0,28014,0,1,1 +1773569512.526493,30.34,4,3992.50,64.15,1236.89,2511.77,0.00,3515813849760.726562,3515813840738.917480,251,272,0.003892,0.007165,9655307,8265404,0,0,28017,0,1,1 +1773569517.522711,30.65,4,3992.50,68.69,1051.29,2689.42,0.00,3521100405849.469238,3521100405840.443848,11,0,0.003572,0.007176,9655402,8265539,0,0,28019,0,1,1 +1773569522.524457,30.03,4,3992.50,94.72,23.04,3708.68,0.00,1.655574,10.671468,251,272,0.003777,0.006553,9655496,8265672,0,0,28022,0,1,1 +1773569527.526919,23.15,4,3992.50,58.47,1448.15,2289.20,0.00,0.355977,3516705758089.188477,246,2,0.003956,0.007177,9655602,8265817,0,0,28024,0,1,1 +1773569532.525668,0.80,4,3992.50,58.26,1453.31,2280.93,0.00,3519317989298.232422,3519317989300.245605,11,0,0.003879,0.007124,9655702,8265957,0,0,28026,0,1,1 +1773569537.525581,1.45,4,3992.50,58.25,1451.80,2280.51,0.00,9263.266573,17650.609694,690396,1521018,0.003420,0.005865,9655788,8266074,0,0,28029,0,1,1 +1773569542.525545,4.82,4,3992.50,59.22,1386.96,2318.46,0.00,10.686796,0.042969,690894,1521121,4.114382,0.031115,9657342,8267359,0,0,28032,0,1,1 +1773569547.526545,6.01,4,3992.50,58.35,1404.86,2284.55,0.00,3517733790748.434082,3517733782371.542480,246,2,5.973858,0.033398,9659521,8268968,0,0,28034,0,1,1 +1773569552.525769,19.22,4,3992.50,59.58,1358.86,2332.80,0.00,0.000000,0.000000,246,2,30.180169,0.130209,9669288,8276234,0,0,28037,0,1,1 +1773569557.526078,0.75,4,3992.50,59.19,1374.37,2317.32,0.00,3518220188172.578125,3518220188174.536621,75,0,0.003428,0.005850,9669375,8276350,0,0,28039,0,1,1 +1773569562.526156,0.95,4,3992.50,59.11,1377.24,2314.41,0.00,3518382272158.672852,0.000000,11,0,0.003891,0.007120,9669476,8276490,0,0,28042,0,1,1 +1773569567.526398,0.95,4,3992.50,58.54,1399.58,2292.14,0.00,0.053513,0.000000,75,0,0.003878,0.007122,9669576,8276630,0,0,28044,0,1,1 +1773569572.525120,1.10,4,3992.50,58.53,1400.08,2291.67,0.00,9307.792363,17666.737835,693115,1522641,0.005595,0.006866,9669706,8276772,0,0,28046,0,1,1 +1773569577.524782,0.85,4,3992.50,58.51,1400.75,2290.96,0.00,0.121883,0.006641,693124,1522650,0.003878,0.007120,9669806,8276912,0,0,28049,0,1,1 +1773569582.526555,1.35,4,3992.50,58.78,1389.09,2301.53,0.00,3517190406930.990234,3517190398586.326660,251,272,0.003885,0.007782,9669907,8277058,0,0,28052,0,1,1 +1773569587.530364,9.44,4,3992.50,95.73,12.04,3747.95,0.00,0.355881,3515758710520.121582,246,2,0.003850,0.007117,9670005,8277198,0,0,28054,0,1,1 +1773569592.527137,28.83,4,3992.50,65.57,1174.54,2567.02,0.00,9483.318726,17676.529081,704624,1525208,0.003442,0.005932,9670092,8277320,0,0,28057,0,1,1 +1773569597.526216,29.55,4,3992.50,77.27,721.57,3025.46,0.00,3519085877430.549805,3519085869243.076172,75,0,0.003272,0.006899,9670181,8277454,0,0,28059,0,1,1 +1773569602.538895,29.06,4,3992.50,95.80,9.94,3750.72,0.00,9719.681441,17614.265672,720770,1528905,0.003900,0.007177,9670283,8277600,0,0,28062,0,1,1 +1773569607.528008,29.76,4,3992.50,59.09,1434.52,2313.32,0.00,151.146081,12.999397,731433,1531246,0.003428,0.005893,9670369,8277718,0,0,28064,0,1,1 +1773569612.522711,29.60,4,3992.50,74.60,821.93,2920.83,0.00,147.155136,2.385829,740814,1533351,0.003922,0.007201,9670472,8277864,0,0,28066,0,1,1 +1773569617.524223,34.44,4,3992.50,58.30,1450.69,2282.51,0.00,3517373288392.354004,3517373280760.562500,246,2,12.082188,0.060550,9674373,8280788,0,0,28069,0,1,1 +1773569622.527537,3.86,4,3992.50,59.16,1396.91,2316.38,0.00,10239.187707,17654.345127,753259,1535490,2.042339,0.016672,9675229,8281411,0,0,28072,0,1,1 +1773569627.525312,16.49,4,3992.50,58.73,1361.57,2299.29,0.00,3520004081988.309082,3520004074566.891113,75,0,26.140773,0.109490,9683461,8287536,0,0,28074,0,1,1 +1773569632.525725,0.95,4,3992.50,58.41,1373.96,2286.90,0.00,0.126747,0.000000,205,0,0.003865,0.007132,9683560,8287677,0,0,28077,0,1,1 +1773569637.526191,0.75,4,3992.50,58.43,1373.38,2287.47,0.00,3518109295766.267578,0.000000,11,0,0.003886,0.007130,9683661,8287818,0,0,28079,0,1,1 +1773569642.525846,1.15,4,3992.50,58.40,1374.44,2286.54,0.00,0.180286,0.000000,205,0,0.003420,0.005853,9683747,8287934,0,0,28082,0,1,1 +1773569647.521704,0.85,4,3992.50,58.39,1374.90,2285.93,0.00,3521354357287.078125,0.000000,11,0,0.003856,0.007773,9683845,8288078,0,0,28084,0,1,1 +1773569652.526227,0.65,4,3992.50,58.39,1374.73,2286.12,0.00,0.053467,0.000000,75,0,0.003875,0.007116,9683945,8288218,0,0,28086,0,1,1 +1773569657.522538,0.75,4,3992.50,58.39,1374.88,2285.98,0.00,3521035464048.504883,0.000000,11,0,0.004871,0.007640,9684048,8288361,0,0,28089,0,1,1 +1773569662.521743,0.75,4,3992.50,58.40,1374.35,2286.50,0.00,0.180302,0.000000,205,0,0.003879,0.007133,9684148,8288502,0,0,28092,0,1,1 +1773569667.526647,0.70,4,3992.50,58.40,1374.26,2286.58,0.00,3514989699253.068848,0.000000,75,0,0.003882,0.007123,9684249,8288643,0,0,28094,0,1,1 +1773569672.525887,1.15,4,3992.50,58.55,1370.86,2292.43,0.00,0.000000,0.000000,75,0,0.004375,0.008220,9684361,8288806,0,0,28097,0,1,1 +1773569677.526256,8.93,4,3992.50,64.83,1205.65,2538.33,0.00,3518177789007.518555,0.000000,11,0,0.003422,0.005855,9684447,8288922,0,0,28099,0,1,1 +1773569682.522675,30.37,4,3992.50,60.26,1388.93,2359.47,0.00,0.180403,0.000000,205,0,0.003913,0.007200,9684549,8289068,0,0,28102,0,1,1 +1773569687.527569,29.87,4,3992.50,69.77,1011.65,2731.79,0.00,3514996543971.018066,0.000000,75,0,0.003921,0.007191,9684652,8289214,0,0,28104,0,1,1 +1773569692.527888,37.82,4,3992.50,95.26,28.92,3729.80,0.00,10882.840179,17675.726296,796623,1545169,6.040902,0.033551,9686640,8290746,0,0,28107,0,1,1 +1773569697.524132,51.69,4,3992.50,85.49,378.44,3347.23,0.00,342.797981,14.240582,819838,1548967,22.159232,0.103154,9693506,8295987,0,0,28109,0,1,1 +1773569702.525948,36.25,4,3992.50,63.08,1265.60,2469.75,0.00,252.619951,3.175311,836962,1551714,6.026143,0.023011,9695142,8297259,0,0,28112,0,1,1 +1773569707.524070,30.38,4,3992.50,58.21,1455.56,2279.11,0.00,195.770610,3519759386074.037598,849120,1553986,6.041000,0.030453,9696942,8298675,0,0,28114,0,1,1 +1773569712.526313,0.95,4,3992.50,58.09,1456.49,2274.52,0.00,3516859687993.094727,3516859681981.992188,246,2,0.003419,0.006519,9697028,8298797,0,0,28117,0,1,1 +1773569717.526578,0.85,4,3992.50,58.13,1452.96,2275.79,0.00,3518250213178.887695,3518250213180.719727,205,0,0.003878,0.007122,9697128,8298937,0,0,28119,0,1,1 +1773569722.521822,0.90,4,3992.50,57.95,1459.03,2268.91,0.00,3521787035509.874023,0.000000,11,0,0.003890,0.007147,9697229,8299079,0,0,28122,0,1,1 +1773569727.525877,0.80,4,3992.50,57.97,1458.03,2269.62,0.00,1.654811,10.666547,251,272,0.003862,0.007079,9697328,8299216,0,0,28124,0,1,1 +1773569732.525687,1.40,4,3992.50,58.52,1427.72,2291.20,0.00,3518570718936.331543,3518570718927.312500,11,0,0.003420,0.005881,9697414,8299334,0,0,28126,0,1,1 +1773569737.526118,0.90,4,3992.50,58.48,1428.83,2289.73,0.00,0.000000,0.000000,11,0,0.003878,0.007132,9697514,8299475,0,0,28129,0,1,1 +1773569742.525065,0.95,4,3992.50,58.32,1435.18,2283.17,0.00,0.180311,0.000000,205,0,0.003879,0.007134,9697614,8299616,0,0,28132,0,1,1 +1773569747.525781,0.85,4,3992.50,58.32,1434.82,2283.41,0.00,3517933274088.133301,0.000000,11,0,0.003420,0.005854,9697700,8299732,0,0,28134,0,1,1 +1773569752.522561,0.80,4,3992.50,58.17,1440.58,2277.41,0.00,1.657220,10.682076,251,272,0.003881,0.007137,9697800,8299873,0,0,28137,0,1,1 +1773569757.526340,0.90,4,3992.50,58.16,1440.32,2277.27,0.00,3515779773691.269043,3515779773682.257324,11,0,0.003707,0.006979,9697898,8300012,0,0,28139,0,1,1 +1773569762.524897,1.40,4,3992.50,58.48,1427.28,2289.53,0.00,2.012886,0.000195,246,2,0.003879,0.007134,9697998,8300153,0,0,28142,0,1,1 +1773569767.522497,10.45,4,3992.50,91.19,162.39,3570.13,0.00,11723.487977,17695.457281,852452,1554549,0.014741,0.009628,9698269,8300383,0,0,28144,0,1,1 +1773569772.526024,35.21,4,3992.50,92.01,148.45,3602.26,0.00,3515957336198.968262,3515957330235.902832,205,0,4.033053,0.024849,9699646,8301368,0,0,28146,0,1,1 +1773569777.526317,54.85,4,3992.50,79.71,590.34,3121.00,0.00,1.475792,10.674570,251,272,30.155995,0.119821,9708410,8307946,0,0,28149,0,1,1 +1773569782.525605,34.54,4,3992.50,85.60,378.49,3351.37,0.00,12412.002071,17687.113377,898505,1562426,6.043575,0.033204,9710441,8309550,0,0,28152,0,1,1 +1773569787.526450,29.77,4,3992.50,94.81,18.71,3712.16,0.00,3517842595942.459473,3517842590668.990234,251,272,0.003649,0.006500,9710534,8309679,0,0,28154,0,1,1 +1773569792.526390,30.77,4,3992.50,95.31,28.00,3731.61,0.00,3518479961228.037109,3518479961218.837402,205,0,0.003687,0.006557,9710630,8309813,0,0,28157,0,1,1 +1773569797.523913,22.79,4,3992.50,58.19,1455.07,2278.25,0.00,3520180535346.947754,0.000000,11,0,0.003719,0.006993,9710728,8309952,0,0,28159,0,1,1 +1773569802.525727,0.80,4,3992.50,57.91,1463.98,2267.34,0.00,1.655552,10.671325,251,272,0.003877,0.007130,9710828,8310093,0,0,28162,0,1,1 +1773569807.526064,0.85,4,3992.50,57.70,1471.45,2259.27,0.00,12840.417579,17690.980794,926180,1568947,0.003420,0.005855,9710914,8310209,0,0,28164,0,1,1 +1773569812.526567,0.95,4,3992.50,57.69,1470.44,2258.83,0.00,3518082662667.163574,3518082657807.743652,11,0,0.003878,0.007122,9711014,8310349,0,0,28166,0,1,1 +1773569817.525797,0.95,4,3992.50,57.72,1469.06,2259.84,0.00,0.180301,0.000000,205,0,0.003866,0.007133,9711113,8310490,0,0,28169,0,1,1 +1773569822.525736,1.40,4,3992.50,58.13,1441.11,2275.91,0.00,3518479774747.692383,0.000000,75,0,0.003891,0.007132,9711214,8310631,0,0,28172,0,1,1 +1773569827.523633,1.00,4,3992.50,57.90,1449.88,2266.91,0.00,1.603311,10.679688,251,272,0.003430,0.005866,9711301,8310748,0,0,28174,0,1,1 +1773569832.525732,1.00,4,3992.50,57.74,1453.98,2260.82,0.00,0.000000,0.000000,251,272,0.003889,0.007129,9711402,8310889,0,0,28177,0,1,1 +1773569837.525732,0.85,4,3992.50,57.78,1452.55,2262.08,0.00,3518437222251.604980,3518437222242.586426,11,0,0.003878,0.007122,9711502,8311029,0,0,28179,0,1,1 +1773569842.525564,1.15,4,3992.50,57.74,1451.59,2260.78,0.00,1.656208,10.675554,251,272,0.005236,0.008149,9711623,8311187,0,0,28182,0,1,1 +1773569847.521713,15.57,4,3992.50,58.80,1363.18,2302.20,0.00,0.000000,0.000000,251,272,18.135423,0.087665,9717640,8315650,0,0,28184,0,1,1 +1773569852.525769,15.83,4,3992.50,58.60,1371.02,2294.35,0.00,12874.404333,17689.784964,928984,1570658,22.117604,0.097714,9724742,8320993,0,0,28186,0,1,1 +1773569857.527293,8.93,4,3992.50,88.87,270.99,3479.29,0.00,3517365137572.940430,3517365132746.105469,11,0,0.006137,0.008004,9724882,8321160,0,0,28189,0,1,1 +1773569862.526227,31.69,4,3992.50,59.61,1418.52,2333.77,0.00,2.012734,0.000195,246,2,0.003904,0.007192,9724984,8321306,0,0,28192,0,1,1 +1773569867.526744,31.93,4,3992.50,74.46,826.61,2915.39,0.00,0.000000,0.000000,246,2,0.002846,0.005680,9725061,8321420,0,0,28194,0,1,1 +1773569872.526379,31.94,4,3992.50,67.33,1115.25,2636.03,0.00,13638.549902,17716.982381,976579,1580530,0.006593,0.008998,9725208,8321593,0,0,28197,0,1,1 +1773569877.522501,32.33,4,3992.50,61.96,1332.20,2426.01,0.00,3521168350037.307617,3521168345957.966797,75,0,0.003943,0.007216,9725312,8321740,0,0,28199,0,1,1 +1773569882.526520,32.56,4,3992.50,95.63,12.36,3743.99,0.00,1.957216,0.000195,246,2,0.003392,0.005886,9725396,8321859,0,0,28202,0,1,1 +1773569887.527336,24.89,4,3992.50,58.87,1435.51,2304.96,0.00,3517862706019.148926,3517862706021.107422,75,0,0.003912,0.007203,9725498,8322005,0,0,28204,0,1,1 +1773569892.521701,0.90,4,3992.50,58.69,1435.41,2298.01,0.00,14392.986267,17756.667901,1027699,1590516,0.003882,0.007130,9725598,8322145,0,0,28206,0,1,1 +1773569897.525683,0.90,4,3992.50,58.40,1446.36,2286.40,0.00,0.260730,0.004293,1027718,1590524,0.003426,0.005868,9725685,8322263,0,0,28209,0,1,1 +1773569902.526588,0.85,4,3992.50,58.20,1453.63,2278.82,0.00,3517800141305.427734,3517800137955.472656,251,272,0.003877,0.007131,9725785,8322404,0,0,28212,0,1,1 +1773569907.526398,0.80,4,3992.50,58.13,1456.17,2276.09,0.00,14376.151671,17726.665101,1027737,1590539,0.003878,0.007767,9725885,8322548,0,0,28214,0,1,1 +1773569912.523590,1.50,4,3992.50,58.49,1431.28,2290.19,0.00,3520414494740.271973,3520414494734.944336,1026483,1590393,0.003893,0.007111,9725986,8322687,0,0,28217,0,1,1 +1773569917.521691,3.92,4,3992.50,58.74,1405.05,2299.73,0.00,3519774015241.633789,3519774011886.099121,205,0,2.020585,0.016427,9726754,8323271,0,0,28219,0,1,1 +1773569922.521786,23.25,4,3992.50,59.48,1366.84,2328.79,0.00,14408.517906,17736.714962,1028814,1591301,34.202925,0.153035,9737687,8331590,0,0,28222,0,1,1 +1773569927.521751,5.67,4,3992.50,58.84,1391.96,2303.61,0.00,3518461829336.752930,3518461826008.469727,205,0,4.031944,0.019966,9739077,8332558,0,0,28224,0,1,1 +1773569932.525927,1.65,4,3992.50,58.75,1395.17,2300.38,0.00,0.000000,0.000000,205,0,0.009035,0.010061,9739273,8332770,0,0,28226,0,1,1 +1773569937.521745,0.90,4,3992.50,58.73,1396.20,2299.34,0.00,3521382662368.246582,0.000000,75,0,0.003423,0.005870,9739359,8332887,0,0,28229,0,1,1 +1773569942.521801,1.40,4,3992.50,59.18,1378.68,2316.90,0.00,0.126756,0.000000,205,0,0.003853,0.007132,9739457,8333028,0,0,28232,0,1,1 +1773569947.522909,7.57,4,3992.50,90.48,191.03,3542.57,0.00,14436.003487,17739.896603,1030809,1593938,0.003879,0.007140,9739557,8333169,0,0,28234,0,1,1 +1773569952.523492,29.96,4,3992.50,95.98,1.91,3757.84,0.00,3518026780034.462402,3518026776728.391602,246,2,0.003407,0.005890,9739642,8333288,0,0,28237,0,1,1 +1773569957.522298,29.98,4,3992.50,66.12,1150.95,2588.81,0.00,14780.670910,17753.474365,1052669,1599010,0.004409,0.008249,9739757,8333453,0,0,28239,0,1,1 +1773569962.526510,29.35,4,3992.50,80.63,581.92,3156.77,0.00,3515475533930.071777,3515475530962.437012,75,0,0.003915,0.007197,9739860,8333600,0,0,28242,0,1,1 +1773569967.524099,29.72,4,3992.50,94.44,39.98,3697.68,0.00,15099.756577,17763.425720,1073251,1604326,0.003668,0.006530,9739954,8333731,0,0,28244,0,1,1 +1773569972.522784,30.03,4,3992.50,70.80,968.36,2772.04,0.00,3519362699604.400879,3519362696941.316406,75,0,0.004164,0.008285,9740060,8333890,0,0,28246,0,1,1 +1773569977.523715,24.82,4,3992.50,58.53,1447.02,2291.45,0.00,15412.956522,17746.362982,1092693,1609135,0.003894,0.007181,9740161,8334035,0,0,28249,0,1,1 +1773569982.521727,0.85,4,3992.50,58.47,1441.01,2289.11,0.00,3519836431229.614258,3519836428903.920898,251,272,0.003880,0.007135,9740261,8334176,0,0,28252,0,1,1 +1773569987.525898,0.90,4,3992.50,58.48,1440.18,2289.55,0.00,15413.889986,17734.886147,1094369,1609422,0.003430,0.005863,9740348,8334293,0,0,28254,0,1,1 +1773569992.521723,6.22,4,3992.50,59.21,1387.35,2318.30,0.00,3521377646615.960938,3521377644280.046875,246,2,4.044484,0.031517,9741934,8335468,0,0,28257,0,1,1 +1773569997.521755,21.77,4,3992.50,58.82,1380.55,2303.05,0.00,15444.198402,17749.734030,1093750,1609772,32.182535,0.135147,9752033,8342987,0,0,28259,0,1,1 +1773570002.523582,5.62,4,3992.50,59.04,1375.31,2311.64,0.00,15.439475,11.673273,1095626,1610824,4.037043,0.024945,9753555,8344074,0,0,28261,0,1,1 +1773570007.525772,1.25,4,3992.50,58.79,1384.73,2301.94,0.00,3516896702633.316406,3516896700334.372070,205,0,0.003419,0.005863,9753641,8344191,0,0,28264,0,1,1 +1773570012.524591,0.85,4,3992.50,58.80,1384.45,2302.22,0.00,3519268685379.701660,0.000000,11,0,0.003879,0.007124,9753741,8344331,0,0,28266,0,1,1 +1773570017.525809,1.05,4,3992.50,58.75,1386.48,2300.19,0.00,15458.298361,17757.393307,1095642,1610857,0.003877,0.007131,9753841,8344472,0,0,28269,0,1,1 +1773570022.521736,0.90,4,3992.50,58.78,1385.13,2301.54,0.00,0.019547,0.019352,1095644,1610864,0.003869,0.007138,9753940,8344613,0,0,28272,0,1,1 +1773570027.521720,0.90,4,3992.50,58.81,1384.29,2302.38,0.00,0.019531,0.075489,1095645,1610927,0.003420,0.005855,9754026,8344729,0,0,28274,0,1,1 +1773570032.521723,1.35,4,3992.50,58.92,1387.06,2306.74,0.00,3518435548906.334961,3518435546604.613281,246,2,0.003886,0.007140,9754127,8344871,0,0,28277,0,1,1 +1773570037.526551,7.77,4,3992.50,80.40,600.32,3147.87,0.00,0.000000,0.000000,246,2,0.003889,0.007771,9754228,8345016,0,0,28279,0,1,1 +1773570042.526198,29.55,4,3992.50,81.93,536.75,3207.89,0.00,3518686141148.848633,10.675755,251,272,0.003771,0.007171,9754328,8345160,0,0,28282,0,1,1 +1773570047.526107,29.30,4,3992.50,82.09,527.89,3213.86,0.00,3518501116121.016113,3518501116111.997070,11,0,0.003548,0.005906,9754415,8345280,0,0,28284,0,1,1 +1773570052.527298,29.95,4,3992.50,66.42,1144.26,2600.61,0.00,15987.410322,17767.146325,1129269,1619527,0.003882,0.007171,9754515,8345424,0,0,28286,0,1,1 +1773570057.522769,29.66,4,3992.50,74.87,803.92,2931.14,0.00,3521627000929.333496,3521626999156.587402,251,272,0.003886,0.007177,9754615,8345568,0,0,28289,0,1,1 +1773570062.526869,29.75,4,3992.50,86.02,362.73,3367.84,0.00,3515555021877.476074,3515555021868.284668,205,0,0.003420,0.005911,9754701,8345689,0,0,28292,0,1,1 +1773570067.526688,32.44,4,3992.50,59.24,1398.54,2319.32,0.00,1.475932,10.675581,251,272,6.056569,0.039525,9756945,8347419,0,0,28294,0,1,1 +1773570072.526575,10.34,4,3992.50,58.61,1388.98,2294.71,0.00,3518516334684.284668,3518516334675.265625,11,0,14.078994,0.057860,9761335,8350595,0,0,28297,0,1,1 +1773570077.525229,14.24,4,3992.50,60.12,1329.70,2353.90,0.00,0.180322,0.000000,205,0,20.132521,0.093140,9767903,8355490,0,0,28299,0,1,1 +1773570082.521719,0.85,4,3992.50,59.82,1341.59,2342.01,0.00,3520909309022.889160,0.000000,11,0,0.003423,0.005869,9767989,8355607,0,0,28302,0,1,1 +1773570087.521808,1.05,4,3992.50,59.53,1352.91,2330.65,0.00,2.012269,0.000195,246,2,0.003878,0.007122,9768089,8355747,0,0,28304,0,1,1 +1773570092.521790,1.15,4,3992.50,59.24,1364.32,2319.25,0.00,0.000000,0.000000,246,2,0.003886,0.007130,9768190,8355888,0,0,28306,0,1,1 +1773570097.521868,1.00,4,3992.50,59.19,1365.87,2317.53,0.00,3518382090611.032227,3518382090613.044922,11,0,0.003878,0.007132,9768290,8356029,0,0,28309,0,1,1 +1773570102.521723,3.74,4,3992.50,57.84,1405.98,2264.42,0.00,1.656201,10.675506,251,272,0.003408,0.006509,9768375,8356150,0,0,28312,0,1,1 +1773570107.522692,0.85,4,3992.50,57.85,1405.52,2264.84,0.00,0.000000,0.000000,251,272,0.003877,0.007121,9768475,8356290,0,0,28314,0,1,1 +1773570112.526041,1.00,4,3992.50,57.85,1405.38,2265.02,0.00,0.355914,3516082299391.395020,246,2,0.003883,0.007136,9768576,8356432,0,0,28317,0,1,1 +1773570117.526021,0.85,4,3992.50,57.88,1404.40,2265.98,0.00,3518451354463.193359,3518451354465.025391,205,0,0.003891,0.007122,9768677,8356572,0,0,28319,0,1,1 +1773570122.522672,1.36,4,3992.50,58.17,1392.77,2277.63,0.00,3520795273488.142578,0.000000,11,0,0.003423,0.005869,9768763,8356689,0,0,28322,0,1,1 +1773570127.525708,0.90,4,3992.50,58.19,1392.18,2278.22,0.00,16568.661212,17760.814703,1175584,1629316,0.003876,0.007118,9768863,8356829,0,0,28324,0,1,1 +1773570132.523693,1.00,4,3992.50,58.19,1392.23,2278.17,0.00,3519855809648.692871,3519855808464.356934,251,272,0.003900,0.007133,9768965,8356970,0,0,28326,0,1,1 +1773570137.525542,1.45,4,3992.50,58.11,1395.32,2275.03,0.00,0.356021,3517137118832.516602,246,2,0.006758,0.009174,9769118,8357154,0,0,28329,0,1,1 +1773570142.527541,21.94,4,3992.50,59.92,1324.29,2345.98,0.00,3517030973988.078125,3517030973990.089844,11,0,28.161936,0.128198,9778074,8363940,0,0,28332,0,1,1 +1773570147.526994,7.03,4,3992.50,60.33,1308.24,2362.02,0.00,0.000000,0.000000,11,0,8.056101,0.036187,9780746,8365836,0,0,28334,0,1,1 +1773570152.525660,4.62,4,3992.50,59.84,1340.52,2342.79,0.00,0.000000,0.000000,11,0,4.027733,0.022768,9782030,8366875,0,0,28337,0,1,1 +1773570157.522297,0.90,4,3992.50,59.54,1351.65,2331.20,0.00,16592.163835,17784.951997,1175795,1630795,0.003876,0.007135,9782130,8367016,0,0,28339,0,1,1 +1773570162.521695,0.85,4,3992.50,59.53,1352.03,2330.82,0.00,3518860794876.180664,3518860793683.871094,205,0,0.003650,0.006487,9782223,8367144,0,0,28342,0,1,1 +1773570167.526309,0.85,4,3992.50,59.54,1351.71,2331.14,0.00,0.000000,0.000000,205,0,0.003646,0.007139,9782316,8367277,0,0,28344,0,1,1 +1773570172.525855,1.10,4,3992.50,59.55,1351.37,2331.48,0.00,1.832198,0.000195,246,2,0.006052,0.008132,9782460,8367443,0,0,28346,0,1,1 +1773570177.525751,0.85,4,3992.50,59.34,1359.49,2323.36,0.00,0.000000,0.000000,246,2,0.003899,0.007140,9782562,8367585,0,0,28349,0,1,1 +1773570182.525934,1.50,4,3992.50,59.32,1361.68,2322.48,0.00,16587.968346,17783.214080,1177285,1631238,0.003408,0.005865,9782647,8367702,0,0,28352,0,1,1 +1773570187.526277,0.80,4,3992.50,59.33,1361.29,2322.88,0.00,3518195558399.827148,3518195557206.631836,11,0,0.003865,0.007122,9782746,8367842,0,0,28354,0,1,1 +1773570192.526254,0.95,4,3992.50,59.35,1360.57,2323.60,0.00,16590.682029,17784.031739,1177286,1631331,0.003878,0.007132,9782846,8367983,0,0,28357,0,1,1 +1773570197.525377,0.95,4,3992.50,58.89,1378.39,2305.79,0.00,3519054839204.354492,3519054838019.821289,251,272,0.003887,0.007132,9782947,8368124,0,0,28359,0,1,1 +1773570202.526124,0.90,4,3992.50,58.91,1377.61,2306.56,0.00,0.000000,0.000000,251,272,0.003420,0.005854,9783033,8368240,0,0,28361,0,1,1 +1773570207.525759,0.80,4,3992.50,58.98,1374.95,2309.23,0.00,3518694069326.352051,3518694069317.152344,205,0,0.003891,0.007133,9783134,8368381,0,0,28364,0,1,1 +1773570212.525547,4.46,4,3992.50,59.21,1372.62,2318.31,0.00,1.832109,0.000195,246,2,2.024030,0.020985,9783972,8369083,0,0,28366,0,1,1 +1773570217.525537,20.76,4,3992.50,60.77,1311.75,2379.19,0.00,3518444390729.877930,3518444390731.890137,11,0,30.193812,0.141191,9794055,8376621,0,0,28369,0,1,1 +1773570222.524599,5.37,4,3992.50,59.41,1365.02,2325.88,0.00,2.012682,0.000195,246,2,8.046176,0.031157,9796567,8378519,0,0,28372,0,1,1 +1773570227.525377,1.60,4,3992.50,59.46,1362.93,2327.95,0.00,3517889633881.013672,3517889633882.971680,75,0,0.006683,0.007790,9796699,8378669,0,0,28374,0,1,1 +1773570232.526697,1.70,4,3992.50,59.16,1374.74,2316.20,0.00,0.000000,0.000000,75,0,0.003877,0.007130,9796799,8378810,0,0,28377,0,1,1 +1773570237.523436,1.00,4,3992.50,59.16,1374.76,2316.18,0.00,0.000000,0.000000,75,0,0.003893,0.007771,9796900,8378954,0,0,28379,0,1,1 +1773570242.522569,1.30,4,3992.50,59.49,1357.46,2329.25,0.00,3519047036508.862793,0.000000,11,0,0.003887,0.007142,9797001,8379096,0,0,28382,0,1,1 +1773570247.525881,0.90,4,3992.50,59.51,1356.76,2329.98,0.00,16574.268422,17763.131886,1176046,1632787,0.003431,0.005851,9797088,8379212,0,0,28384,0,1,1 +1773570252.525990,0.85,4,3992.50,59.51,1356.78,2329.96,0.00,0.000000,0.038573,1176046,1632830,0.003878,0.007122,9797188,8379352,0,0,28386,0,1,1 +1773570257.522473,1.10,4,3992.50,59.51,1356.80,2329.94,0.00,9.568255,10.719553,1177535,1633143,0.005328,0.008908,9797305,8379519,0,0,28389,0,1,1 +1773570262.525824,0.85,4,3992.50,59.32,1364.07,2322.66,0.00,3516080916683.090332,3516080915491.037109,246,2,0.003630,0.006490,9797397,8379648,0,0,28392,0,1,1 +1773570267.526312,0.95,4,3992.50,59.32,1364.09,2322.64,0.00,16591.192807,17783.945917,1177536,1633191,0.003636,0.006501,9797489,8379777,0,0,28394,0,1,1 +1773570272.522781,1.35,4,3992.50,59.37,1362.53,2324.59,0.00,3520923947639.384277,3520923946445.671387,246,2,0.004377,0.008225,9797601,8379940,0,0,28397,0,1,1 +1773570277.525800,1.05,4,3992.50,59.18,1369.98,2317.16,0.00,3516314045803.257324,10.668558,251,272,0.003876,0.007118,9797701,8380080,0,0,28399,0,1,1 +1773570282.526554,0.80,4,3992.50,58.96,1378.61,2308.54,0.00,3517906694480.443359,3517906694471.372070,75,0,0.003428,0.005862,9797788,8380197,0,0,28401,0,1,1 +1773570287.521702,8.14,4,3992.50,59.00,1377.22,2309.92,0.00,1.960692,0.000196,246,2,6.060742,0.041669,9800029,8381941,0,0,28404,0,1,1 +1773570292.526379,21.01,4,3992.50,59.60,1353.43,2333.60,0.00,3515149082187.323730,3515149082189.334473,11,0,34.172283,0.150755,9811085,8390393,0,0,28406,0,1,1 +1773570297.521793,1.46,4,3992.50,59.25,1367.28,2319.73,0.00,2.014152,0.000195,246,2,0.008959,0.010068,9811279,8390604,0,0,28409,0,1,1 +1773570302.526407,1.35,4,3992.50,59.58,1364.63,2332.66,0.00,0.000000,0.000000,246,2,0.003937,0.007819,9811383,8390753,0,0,28412,0,1,1 +1773570307.526508,1.10,4,3992.50,59.68,1360.84,2336.44,0.00,3518366132959.770020,3518366132961.602051,205,0,0.004085,0.006785,9811472,8390872,0,0,28414,0,1,1 +1773570312.521778,0.90,4,3992.50,59.37,1372.98,2324.29,0.00,3521768381272.558594,0.000000,11,0,0.003869,0.007139,9811571,8391013,0,0,28417,0,1,1 +1773570317.521721,0.95,4,3992.50,59.16,1380.88,2316.40,0.00,2.012328,0.000195,246,2,0.003878,0.007123,9811671,8391153,0,0,28419,0,1,1 +1773570322.526568,0.85,4,3992.50,59.16,1380.94,2316.34,0.00,16577.756391,17769.886734,1177643,1634693,0.003874,0.007125,9811771,8391294,0,0,28422,0,1,1 +1773570327.526147,0.85,4,3992.50,59.09,1383.76,2313.53,0.00,3518733316215.993164,3518733315024.438965,205,0,0.003416,0.005864,9811857,8391411,0,0,28424,0,1,1 +1773570332.525668,1.40,4,3992.50,59.19,1379.66,2317.38,0.00,16597.248347,17789.062636,1177643,1634940,0.003891,0.007123,9811958,8391551,0,0,28426,0,1,1 +1773570337.525840,0.85,4,3992.50,59.19,1376.90,2317.46,0.00,3518316599876.565430,3518316598694.105469,251,272,0.003865,0.007132,9812057,8391692,0,0,28429,0,1,1 +1773570342.526185,0.85,4,3992.50,59.19,1376.91,2317.45,0.00,16593.036580,17775.505524,1177643,1634991,0.003878,0.007119,9812157,8391832,0,0,28432,0,1,1 +1773570347.522850,1.00,4,3992.50,59.15,1378.54,2315.82,0.00,3520785420260.356445,3520785419067.991699,11,0,0.003431,0.005880,9812244,8391950,0,0,28434,0,1,1 +1773570352.522893,0.95,4,3992.50,59.15,1378.70,2315.67,0.00,0.000000,0.000000,11,0,0.003865,0.007132,9812343,8392091,0,0,28437,0,1,1 +1773570357.526453,4.86,4,3992.50,59.08,1381.16,2313.17,0.00,1.654974,10.667599,251,272,0.019964,0.012256,9812699,8392383,0,0,28439,0,1,1 +1773570362.521704,18.96,4,3992.50,60.22,1353.50,2357.71,0.00,3521782363294.152344,3521782363284.944336,205,0,26.193828,0.111691,9820903,8398437,0,0,28442,0,1,1 +1773570367.523612,10.16,4,3992.50,59.55,1379.45,2331.70,0.00,0.000000,0.000000,205,0,14.066777,0.067586,9825575,8401984,0,0,28444,0,1,1 +1773570372.525185,1.00,4,3992.50,59.27,1390.75,2320.41,0.00,1.475415,10.671838,251,272,0.003864,0.007120,9825674,8402124,0,0,28446,0,1,1 +1773570377.525770,0.75,4,3992.50,59.27,1390.80,2320.36,0.00,3518025673052.783691,3518025673043.712891,75,0,0.003420,0.005864,9825760,8402241,0,0,28449,0,1,1 +1773570382.526193,1.00,4,3992.50,59.27,1390.58,2320.58,0.00,0.126747,0.000000,205,0,0.003878,0.007132,9825860,8402382,0,0,28452,0,1,1 +1773570387.525961,0.85,4,3992.50,59.26,1390.82,2320.34,0.00,0.000000,0.000000,205,0,0.003866,0.007123,9825959,8402522,0,0,28454,0,1,1 +1773570392.522560,1.30,4,3992.50,59.27,1383.54,2320.58,0.00,3520832484739.095215,0.000000,75,0,0.003889,0.007158,9826060,8402665,0,0,28457,0,1,1 +1773570397.526006,0.80,4,3992.50,59.26,1383.95,2320.16,0.00,1.957440,0.000195,246,2,0.003418,0.005851,9826146,8402781,0,0,28459,0,1,1 +1773570402.526421,0.85,4,3992.50,59.28,1382.98,2321.12,0.00,16583.565399,17777.011109,1176233,1636550,0.003853,0.007132,9826244,8402922,0,0,28462,0,1,1 +1773570407.524818,0.85,4,3992.50,59.29,1382.82,2321.29,0.00,3519565088314.450195,3519565087122.535645,11,0,0.003879,0.007125,9826344,8403062,0,0,28464,0,1,1 +1773570412.521750,0.90,4,3992.50,59.29,1382.60,2321.52,0.00,0.180384,0.000000,205,0,0.003880,0.007127,9826444,8403202,0,0,28466,0,1,1 +1773570417.521796,0.90,4,3992.50,59.29,1382.71,2321.39,0.00,16586.654345,17778.407919,1176235,1636653,0.003420,0.005852,9826530,8403318,0,0,28469,0,1,1 +1773570422.521809,1.35,4,3992.50,59.31,1380.68,2322.09,0.00,3518427418105.026855,3518427416913.265625,205,0,0.003878,0.007132,9826630,8403459,0,0,28472,0,1,1 +1773570427.525002,0.95,4,3992.50,59.31,1380.71,2322.09,0.00,1.474937,10.668384,251,272,0.003876,0.007118,9826730,8403599,0,0,28474,0,1,1 +1773570432.522573,11.92,4,3992.50,59.10,1388.94,2313.82,0.00,16603.348263,17787.442269,1177764,1637320,12.097965,0.066170,9830907,8406692,0,0,28477,0,1,1 +1773570437.525536,17.53,4,3992.50,59.97,1354.55,2348.11,0.00,3516353614928.535156,3516353613736.523438,205,0,28.153257,0.125700,9840162,8413540,0,0,28479,0,1,1 +1773570442.526220,1.00,4,3992.50,59.71,1364.90,2337.76,0.00,1.831781,0.000195,246,2,0.003657,0.006493,9840256,8413669,0,0,28482,0,1,1 +1773570447.525683,0.95,4,3992.50,59.27,1382.02,2320.64,0.00,3518814850906.092285,3518814850908.051270,75,0,0.003624,0.006502,9840347,8413798,0,0,28484,0,1,1 +1773570452.525829,1.40,4,3992.50,59.65,1365.79,2335.40,0.00,0.000000,0.000000,75,0,0.003865,0.007122,9840446,8413938,0,0,28486,0,1,1 +1773570457.522585,1.10,4,3992.50,58.60,1406.71,2294.37,0.00,3520720839254.084473,0.000000,11,0,0.003881,0.007137,9840546,8414079,0,0,28489,0,1,1 +1773570462.521711,0.95,4,3992.50,58.61,1406.34,2294.73,0.00,0.053525,0.000000,75,0,0.003408,0.005866,9840631,8414196,0,0,28492,0,1,1 +1773570467.521952,0.90,4,3992.50,58.65,1404.65,2296.43,0.00,3518267337788.582520,0.000000,11,0,0.002937,0.004588,9840701,8414288,0,0,28494,0,1,1 +1773570472.521790,1.10,4,3992.50,58.65,1404.71,2296.37,0.00,0.180279,0.000000,205,0,0.006115,0.008826,9840837,8414450,0,0,28497,0,1,1 +1773570477.524213,0.80,4,3992.50,58.66,1404.59,2296.49,0.00,16588.893806,17782.270452,1177802,1638744,0.003419,0.005852,9840923,8414566,0,0,28499,0,1,1 +1773570482.525208,1.45,4,3992.50,59.24,1382.47,2319.53,0.00,3517736859828.033691,3517736859826.976562,1176314,1638521,0.003877,0.007121,9841023,8414706,0,0,28501,0,1,1 +1773570487.526295,0.90,4,3992.50,59.12,1386.25,2314.82,0.00,3517672683124.439453,3517672681931.800781,205,0,0.003865,0.007118,9841122,8414846,0,0,28504,0,1,1 +1773570492.525855,0.95,4,3992.50,58.99,1391.34,2309.73,0.00,3518747164764.575684,0.000000,75,0,0.003886,0.007131,9841223,8414987,0,0,28506,0,1,1 +1773570497.525739,0.80,4,3992.50,59.00,1391.10,2309.98,0.00,1.958834,0.000195,246,2,0.003420,0.006509,9841309,8415108,0,0,28509,0,1,1 +1773570502.525336,18.68,4,3992.50,59.16,1384.84,2316.16,0.00,3518720848746.520508,3518720848748.353027,205,0,22.150105,0.105535,9848667,8420511,0,0,28512,0,1,1 +1773570507.526186,12.56,4,3992.50,59.65,1365.46,2335.46,0.00,3517839265561.045410,0.000000,75,0,18.110566,0.083689,9854662,8424959,0,0,28514,0,1,1 +1773570512.526491,1.25,4,3992.50,59.41,1372.86,2326.03,0.00,0.126750,0.000000,205,0,0.003890,0.007132,9854763,8425100,0,0,28517,0,1,1 +1773570517.526624,0.90,4,3992.50,59.38,1373.84,2325.00,0.00,0.000000,0.000000,205,0,0.003471,0.005917,9854853,8425220,0,0,28519,0,1,1 +1773570522.521792,0.80,4,3992.50,59.39,1373.62,2325.18,0.00,3521840699534.582520,0.000000,11,0,0.003882,0.007139,9854953,8425361,0,0,28522,0,1,1 +1773570527.526157,1.25,4,3992.50,59.40,1373.30,2325.54,0.00,1.654708,10.665885,251,272,0.004808,0.007785,9855056,8425504,0,0,28524,0,1,1 +1773570532.526291,0.80,4,3992.50,59.21,1380.71,2318.14,0.00,3518342718158.552246,3518342718149.480469,75,0,0.003878,0.007122,9855156,8425644,0,0,28526,0,1,1 +1773570537.525731,0.75,4,3992.50,59.23,1380.04,2318.80,0.00,0.126772,0.000000,205,0,0.003421,0.005866,9855242,8425761,0,0,28529,0,1,1 +1773570542.521811,1.10,4,3992.50,59.32,1376.02,2322.68,0.00,0.000000,0.000000,205,0,0.003876,0.007146,9855342,8425903,0,0,28532,0,1,1 +1773570547.521771,0.80,4,3992.50,59.33,1375.76,2322.89,0.00,3518465259495.454102,0.000000,11,0,0.003878,0.007122,9855442,8426043,0,0,28534,0,1,1 +1773570552.524053,0.60,4,3992.50,59.30,1377.09,2321.56,0.00,1.655397,10.670326,251,272,0.002961,0.004596,9855514,8426136,0,0,28537,0,1,1 +1773570557.526325,0.85,4,3992.50,59.29,1377.18,2321.47,0.00,0.000000,0.000000,251,272,0.003931,0.006939,9855614,8426274,0,0,28539,0,1,1 +1773570562.526574,0.75,4,3992.50,59.32,1376.21,2322.43,0.00,0.000000,0.000000,251,272,0.003890,0.007776,9855715,8426419,0,0,28542,0,1,1 +1773570567.526371,1.25,4,3992.50,58.89,1392.95,2305.67,0.00,0.356167,3518579354552.437988,246,2,0.006657,0.008534,9855862,8426590,0,0,28544,0,1,1 +1773570572.525857,21.76,4,3992.50,60.86,1315.93,2382.74,0.00,3518799119481.905762,3518799119483.918457,11,0,30.189757,0.136640,9865591,8433841,0,0,28546,0,1,1 +1773570577.523943,7.58,4,3992.50,60.77,1319.09,2379.45,0.00,2.013075,0.000195,246,2,10.074204,0.053509,9869069,8436490,0,0,28549,0,1,1 +1773570582.521708,0.65,4,3992.50,59.97,1350.66,2347.88,0.00,3520011124127.338867,3520011124129.171875,205,0,0.003422,0.005868,9869155,8436607,0,0,28552,0,1,1 +1773570587.525462,0.75,4,3992.50,59.62,1364.30,2334.21,0.00,3515797197470.598145,0.000000,11,0,0.003883,0.007125,9869256,8436748,0,0,28554,0,1,1 +1773570592.521710,0.75,4,3992.50,59.60,1365.14,2333.40,0.00,16600.439955,17796.619395,1176424,1641914,0.003881,0.007138,9869356,8436889,0,0,28557,0,1,1 +1773570597.521729,0.80,4,3992.50,59.60,1364.90,2333.62,0.00,0.000000,0.038672,1176424,1641963,0.003878,0.007122,9869456,8437029,0,0,28559,0,1,1 +1773570602.521715,1.45,4,3992.50,59.16,1379.95,2316.06,0.00,0.087500,0.180762,1176444,1642036,0.003482,0.005906,9869546,8437149,0,0,28561,0,1,1 +1773570607.521715,0.95,4,3992.50,59.02,1384.84,2310.88,0.00,3518437345698.996582,3518437344503.582520,11,0,0.004535,0.008042,9869648,8437291,0,0,28564,0,1,1 +1773570612.522147,0.95,4,3992.50,59.03,1384.74,2310.96,0.00,1.656009,10.674273,251,272,0.003878,0.007122,9869748,8437431,0,0,28566,0,1,1 +1773570617.525969,0.85,4,3992.50,59.03,1384.71,2311.00,0.00,16583.302920,17770.070733,1177934,1642432,0.003875,0.007127,9869848,8437572,0,0,28569,0,1,1 +1773570622.526397,0.90,4,3992.50,59.00,1385.68,2310.04,0.00,3518135989185.389160,3518135987997.815918,251,272,0.003407,0.005865,9869933,8437689,0,0,28572,0,1,1 +1773570627.526107,0.90,4,3992.50,58.99,1385.95,2309.76,0.00,3518641414643.499023,3518641414634.479980,11,0,0.003878,0.007754,9870033,8437832,0,0,28574,0,1,1 +1773570632.525581,1.35,4,3992.50,58.86,1388.85,2304.69,0.00,16599.381219,17796.325547,1177934,1642531,0.003866,0.007133,9870132,8437973,0,0,28577,0,1,1 +1773570637.526599,5.51,4,3992.50,59.03,1382.14,2311.28,0.00,3517720408207.852051,3517720407011.277344,11,0,4.029871,0.025113,9871491,8439065,0,0,28579,0,1,1 +1773570642.526044,13.17,4,3992.50,59.40,1367.72,2325.60,0.00,0.000000,0.000000,11,0,18.128902,0.089166,9877756,8443621,0,0,28582,0,1,1 +1773570647.525141,13.03,4,3992.50,59.77,1353.07,2340.19,0.00,0.000000,0.000000,11,0,18.103027,0.073218,9883279,8447748,0,0,28584,0,1,1 +1773570652.521803,1.56,4,3992.50,59.35,1369.48,2323.77,0.00,1.657259,10.682326,251,272,0.008835,0.009783,9883470,8447955,0,0,28586,0,1,1 +1773570657.522657,1.75,4,3992.50,58.55,1401.09,2292.19,0.00,3517836417299.897461,3517836417290.699707,205,0,0.003890,0.007144,9883571,8448097,0,0,28589,0,1,1 +1773570662.521795,1.55,4,3992.50,58.98,1386.53,2309.31,0.00,0.000000,0.000000,205,0,0.003421,0.005854,9883657,8448213,0,0,28592,0,1,1 +1773570667.525743,0.90,4,3992.50,58.98,1386.59,2309.26,0.00,0.000000,0.000000,205,0,0.004481,0.007357,9883768,8448359,0,0,28594,0,1,1 +1773570672.525742,0.85,4,3992.50,58.98,1386.62,2309.22,0.00,1.475879,10.675199,251,272,0.003878,0.007132,9883868,8448500,0,0,28597,0,1,1 +1773570677.526139,1.05,4,3992.50,58.98,1386.64,2309.19,0.00,16594.904633,17783.768510,1177990,1644110,0.003878,0.007134,9883968,8448641,0,0,28599,0,1,1 +1773570682.521704,0.75,4,3992.50,59.00,1385.69,2310.16,0.00,3521560634857.567383,3521560633667.553711,251,272,0.003423,0.005870,9884054,8448758,0,0,28602,0,1,1 +1773570687.521798,0.85,4,3992.50,59.00,1385.71,2310.12,0.00,0.000000,0.000000,251,272,0.003886,0.007130,9884155,8448899,0,0,28604,0,1,1 +1773570692.525841,1.30,4,3992.50,59.13,1380.90,2314.93,0.00,3515594022840.125488,3515594022831.113770,11,0,0.003875,0.007760,9884255,8449043,0,0,28606,0,1,1 +1773570697.521744,0.90,4,3992.50,59.06,1383.56,2312.26,0.00,1.657511,10.683950,251,272,0.003881,0.007138,9884355,8449184,0,0,28609,0,1,1 +1773570702.521725,0.80,4,3992.50,59.06,1383.59,2312.24,0.00,0.000000,0.000000,251,272,0.003408,0.005853,9884440,8449300,0,0,28612,0,1,1 +1773570707.521787,0.95,4,3992.50,58.84,1391.99,2303.85,0.00,3518393704647.064453,3518393704638.045898,11,0,0.003891,0.007122,9884541,8449440,0,0,28614,0,1,1 diff --git a/evaluation/data/pipeline_high-iops_run2/pipeline.duckdb b/evaluation/data/pipeline_high-iops_run2/pipeline.duckdb new file mode 100644 index 0000000..538875a Binary files /dev/null and b/evaluation/data/pipeline_high-iops_run2/pipeline.duckdb differ diff --git a/evaluation/data/pipeline_high-iops_run3/anomalies.jsonl b/evaluation/data/pipeline_high-iops_run3/anomalies.jsonl new file mode 100644 index 0000000..44afb44 --- /dev/null +++ b/evaluation/data/pipeline_high-iops_run3/anomalies.jsonl @@ -0,0 +1,539 @@ +{"timestamp":"2026-03-15T11:26:13.688503158Z","score":0.5,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=0.50 RRCF-fast:w=0.20,s=0.50 RRCF-mid:w=0.20,s=0.50 RRCF-slow:w=0.20,s=0.50 COPOD:w=0.20,s=0.50"} +{"timestamp":"2026-03-15T11:26:43.739896237Z","score":1,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=1.00 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-15T11:27:13.69160457Z","score":0.8999999999999999,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=0.50 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-15T11:27:43.734212178Z","score":1,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=1.00 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-15T11:28:13.688759897Z","score":0.75,"is_anomaly":false,"confidence":0.75,"method":"SEAD","details":"MAD!:w=0.20,s=0.75 RRCF-fast:w=0.20,s=0.75 RRCF-mid:w=0.20,s=0.75 RRCF-slow:w=0.20,s=0.75 COPOD!:w=0.20,s=0.75"} +{"timestamp":"2026-03-15T11:28:43.764440027Z","score":0.5596791689355303,"is_anomaly":false,"confidence":0.5596791689355303,"method":"SEAD","details":"MAD!:w=0.20,s=0.40 RRCF-fast:w=0.20,s=0.60 RRCF-mid:w=0.20,s=0.60 RRCF-slow:w=0.20,s=0.60 COPOD!:w=0.20,s=0.60"} +{"timestamp":"2026-03-15T11:29:13.739463794Z","score":0.4658220496777377,"is_anomaly":false,"confidence":0.4658220496777377,"method":"SEAD","details":"MAD!:w=0.20,s=0.17 RRCF-fast:w=0.20,s=0.50 RRCF-mid:w=0.20,s=0.50 RRCF-slow:w=0.20,s=0.50 COPOD!:w=0.20,s=0.67"} +{"timestamp":"2026-03-15T11:29:43.688529168Z","score":0.48491646590142096,"is_anomaly":false,"confidence":0.5387960732238011,"method":"SEAD","details":"MAD!:w=0.20,s=0.29 RRCF-fast:w=0.20,s=0.57 RRCF-mid:w=0.20,s=0.57 RRCF-slow:w=0.20,s=0.57 COPOD!:w=0.20,s=0.43"} +{"timestamp":"2026-03-15T11:30:13.738027547Z","score":0.5490810081707,"is_anomaly":false,"confidence":0.6100900090785557,"method":"SEAD","details":"MAD!:w=0.20,s=0.38 RRCF-fast:w=0.20,s=0.62 RRCF-mid:w=0.20,s=0.62 RRCF-slow:w=0.20,s=0.75 COPOD!:w=0.20,s=0.38"} +{"timestamp":"2026-03-15T11:30:43.693066165Z","score":0.4201933746180677,"is_anomaly":false,"confidence":0.4668815273534086,"method":"SEAD","details":"MAD!:w=0.21,s=0.11 RRCF-fast:w=0.20,s=0.44 RRCF-mid:w=0.20,s=0.56 RRCF-slow:w=0.20,s=0.56 COPOD!:w=0.20,s=0.44"} +{"timestamp":"2026-03-15T11:31:13.732434912Z","score":0.9397045648244436,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.21,s=0.90 RRCF-fast:w=0.20,s=0.90 RRCF-mid:w=0.20,s=0.90 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-15T11:31:43.687165503Z","score":0.7634444295953967,"is_anomaly":false,"confidence":0.8124302660358195,"method":"SEAD","details":"MAD!:w=0.21,s=0.73 RRCF-fast:w=0.20,s=0.82 RRCF-mid:w=0.20,s=0.73 RRCF-slow:w=0.20,s=0.73 COPOD!:w=0.20,s=0.82"} +{"timestamp":"2026-03-15T11:32:13.738934687Z","score":0.9145421393023362,"is_anomaly":false,"confidence":0.9732230464084121,"method":"SEAD","details":"MAD!:w=0.21,s=0.67 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=0.92"} +{"timestamp":"2026-03-15T11:32:43.736388953Z","score":0.7372800411710255,"is_anomaly":false,"confidence":0.7845870593474926,"method":"SEAD","details":"MAD!:w=0.21,s=0.62 RRCF-fast:w=0.20,s=0.77 RRCF-mid:w=0.20,s=0.77 RRCF-slow:w=0.20,s=0.77 COPOD!:w=0.20,s=0.77"} +{"timestamp":"2026-03-15T11:33:13.689446177Z","score":0.5119430481363975,"is_anomaly":false,"confidence":0.559780710079621,"method":"SEAD","details":"MAD!:w=0.21,s=0.29 RRCF-fast:w=0.20,s=0.57 RRCF-mid:w=0.20,s=0.57 RRCF-slow:w=0.20,s=0.57 COPOD!:w=0.20,s=0.57"} +{"timestamp":"2026-03-15T11:33:43.739621408Z","score":0.4780275822797301,"is_anomaly":false,"confidence":0.5226960702372843,"method":"SEAD","details":"MAD!:w=0.21,s=0.33 RRCF-fast:w=0.20,s=0.60 RRCF-mid:w=0.20,s=0.60 RRCF-slow:w=0.20,s=0.60 COPOD!:w=0.20,s=0.27"} +{"timestamp":"2026-03-15T11:34:13.691325609Z","score":0.544380652648955,"is_anomaly":false,"confidence":0.5952493922961701,"method":"SEAD","details":"MAD!:w=0.21,s=0.06 RRCF-fast:w=0.20,s=0.62 RRCF-mid:w=0.20,s=0.62 RRCF-slow:w=0.20,s=0.62 COPOD!:w=0.20,s=0.81"} +{"timestamp":"2026-03-15T11:34:43.737564706Z","score":0.9188871536857,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.21,s=1.00 RRCF-fast:w=0.20,s=0.76 RRCF-mid:w=0.20,s=0.94 RRCF-slow:w=0.20,s=0.94 COPOD!:w=0.20,s=0.94"} +{"timestamp":"2026-03-15T11:35:13.689126282Z","score":0.7129353449686212,"is_anomaly":false,"confidence":0.7758682250687734,"method":"SEAD","details":"MAD!:w=0.21,s=0.83 RRCF-fast:w=0.20,s=0.67 RRCF-mid:w=0.20,s=0.67 RRCF-slow:w=0.20,s=0.67 COPOD!:w=0.20,s=0.72"} +{"timestamp":"2026-03-15T11:35:43.7263388Z","score":1,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.21,s=1.00 RRCF-fast!:w=0.20,s=1.00 RRCF-mid!:w=0.20,s=1.00 RRCF-slow!:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-15T11:36:16.116998862Z","score":0.908887848355643,"is_anomaly":false,"confidence":0.9672059521445893,"method":"SEAD","details":"MAD!:w=0.21,s=0.85 RRCF-fast!:w=0.20,s=1.00 RRCF-mid!:w=0.20,s=1.00 RRCF-slow!:w=0.20,s=1.00 COPOD!:w=0.20,s=0.70"} +{"timestamp":"2026-03-15T11:36:43.688738078Z","score":0.6706672383824831,"is_anomaly":false,"confidence":0.7298689895624343,"method":"SEAD","details":"MAD!:w=0.21,s=0.33 RRCF-fast:w=0.20,s=0.86 RRCF-mid:w=0.20,s=0.86 RRCF-slow:w=0.20,s=0.86 COPOD!:w=0.20,s=0.48"} +{"timestamp":"2026-03-15T11:37:13.735407954Z","score":0.6205100782090696,"is_anomaly":false,"confidence":0.6752843107232201,"method":"SEAD","details":"MAD!:w=0.21,s=0.32 RRCF-fast:w=0.20,s=0.86 RRCF-mid:w=0.20,s=0.91 RRCF-slow:w=0.20,s=0.82 COPOD!:w=0.20,s=0.23"} +{"timestamp":"2026-03-15T11:37:43.689277904Z","score":0.6025996528297837,"is_anomaly":false,"confidence":0.6557928799121066,"method":"SEAD","details":"MAD!:w=0.21,s=0.30 RRCF-fast:w=0.20,s=0.74 RRCF-mid:w=0.19,s=0.74 RRCF-slow:w=0.19,s=0.70 COPOD!:w=0.20,s=0.57"} +{"timestamp":"2026-03-15T11:38:13.736508638Z","score":0.8191007790642807,"is_anomaly":false,"confidence":0.8914051913543776,"method":"SEAD","details":"MAD!:w=0.22,s=0.54 RRCF-fast!:w=0.20,s=0.92 RRCF-mid!:w=0.19,s=0.92 RRCF-slow!:w=0.19,s=0.92 COPOD!:w=0.20,s=0.83"} +{"timestamp":"2026-03-15T11:38:43.696249821Z","score":0.6387280040146874,"is_anomaly":false,"confidence":0.6951103859192276,"method":"SEAD","details":"MAD!:w=0.22,s=0.36 RRCF-fast:w=0.19,s=0.84 RRCF-mid:w=0.19,s=0.88 RRCF-slow:w=0.19,s=0.88 COPOD!:w=0.20,s=0.28"} +{"timestamp":"2026-03-15T11:39:13.739366349Z","score":0.9777196395839719,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.22,s=1.00 RRCF-fast!:w=0.19,s=0.96 RRCF-mid!:w=0.19,s=0.96 RRCF-slow!:w=0.19,s=0.96 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-15T11:39:43.689820505Z","score":0.8583636728413963,"is_anomaly":false,"confidence":0.9341339351610901,"method":"SEAD","details":"MAD!:w=0.22,s=0.93 RRCF-fast!:w=0.19,s=0.93 RRCF-mid!:w=0.19,s=0.93 RRCF-slow!:w=0.19,s=0.93 COPOD!:w=0.20,s=0.59"} +{"timestamp":"2026-03-15T11:40:13.729121948Z","score":0.7727696761866343,"is_anomaly":false,"confidence":0.840984307035982,"method":"SEAD","details":"MAD!:w=0.22,s=0.57 RRCF-fast:w=0.19,s=0.86 RRCF-mid:w=0.19,s=0.89 RRCF-slow:w=0.19,s=0.86 COPOD!:w=0.20,s=0.71"} +{"timestamp":"2026-03-15T11:40:43.739399983Z","score":0.5855970261354713,"is_anomaly":false,"confidence":0.6372893818208404,"method":"SEAD","details":"MAD!:w=0.22,s=0.45 RRCF-fast:w=0.19,s=0.66 RRCF-mid:w=0.19,s=0.79 RRCF-slow:w=0.19,s=0.79 COPOD!:w=0.20,s=0.28"} +{"timestamp":"2026-03-15T11:41:13.69730098Z","score":0.48598758253882635,"is_anomaly":false,"confidence":0.5288871224170532,"method":"SEAD","details":"MAD!:w=0.22,s=0.33 RRCF-fast:w=0.19,s=0.63 RRCF-mid:w=0.19,s=0.63 RRCF-slow:w=0.19,s=0.60 COPOD!:w=0.21,s=0.27"} +{"timestamp":"2026-03-15T11:41:43.739363823Z","score":0.5534465062281362,"is_anomaly":false,"confidence":0.6023008418479201,"method":"SEAD","details":"MAD!:w=0.22,s=0.39 RRCF-fast:w=0.19,s=0.77 RRCF-mid:w=0.19,s=0.65 RRCF-slow:w=0.19,s=0.65 COPOD!:w=0.21,s=0.35"} +{"timestamp":"2026-03-15T11:42:13.684016484Z","score":0.4174008313321935,"is_anomaly":false,"confidence":0.4542460188478846,"method":"SEAD","details":"MAD!:w=0.22,s=0.28 RRCF-fast:w=0.19,s=0.53 RRCF-mid:w=0.19,s=0.53 RRCF-slow:w=0.19,s=0.56 COPOD!:w=0.21,s=0.22"} +{"timestamp":"2026-03-15T11:42:43.744027493Z","score":0.863873347084894,"is_anomaly":false,"confidence":0.9401299644029815,"method":"SEAD","details":"MAD!:w=0.22,s=0.94 RRCF-fast:w=0.19,s=0.82 RRCF-mid:w=0.19,s=0.82 RRCF-slow:w=0.19,s=0.82 COPOD!:w=0.21,s=0.91"} +{"timestamp":"2026-03-15T11:43:13.689393012Z","score":0.7987337628543048,"is_anomaly":false,"confidence":0.8733701034964048,"method":"SEAD","details":"MAD!:w=0.22,s=0.79 RRCF-fast:w=0.19,s=0.88 RRCF-mid!:w=0.19,s=0.97 RRCF-slow!:w=0.19,s=0.97 COPOD!:w=0.21,s=0.41"} +{"timestamp":"2026-03-15T11:43:43.754807313Z","score":0.8955033932621124,"is_anomaly":false,"confidence":0.9791822101770535,"method":"SEAD","details":"MAD!:w=0.22,s=0.89 RRCF-fast!:w=0.19,s=0.94 RRCF-mid!:w=0.19,s=0.91 RRCF-slow!:w=0.19,s=0.91 COPOD!:w=0.21,s=0.83"} +{"timestamp":"2026-03-15T11:44:13.734794441Z","score":0.626843577475553,"is_anomaly":false,"confidence":0.685417927219564,"method":"SEAD","details":"MAD!:w=0.22,s=0.72 RRCF-fast:w=0.19,s=0.64 RRCF-mid:w=0.19,s=0.56 RRCF-slow:w=0.19,s=0.50 COPOD!:w=0.21,s=0.69"} +{"timestamp":"2026-03-15T11:44:43.692841578Z","score":0.4728078415300017,"is_anomaly":false,"confidence":0.5169885795428584,"method":"SEAD","details":"MAD!:w=0.22,s=0.32 RRCF-fast:w=0.19,s=0.57 RRCF-mid:w=0.19,s=0.62 RRCF-slow:w=0.19,s=0.59 COPOD!:w=0.21,s=0.30"} +{"timestamp":"2026-03-15T11:45:13.734084997Z","score":0.5654720028877315,"is_anomaly":false,"confidence":0.6183115884841622,"method":"SEAD","details":"MAD!:w=0.22,s=0.42 RRCF-fast:w=0.19,s=0.79 RRCF-mid:w=0.19,s=0.76 RRCF-slow:w=0.19,s=0.76 COPOD!:w=0.21,s=0.16"} +{"timestamp":"2026-03-15T11:45:43.691476524Z","score":0.4799297246849736,"is_anomaly":false,"confidence":0.524775955158382,"method":"SEAD","details":"MAD!:w=0.22,s=0.41 RRCF-fast:w=0.19,s=0.54 RRCF-mid:w=0.19,s=0.56 RRCF-slow:w=0.19,s=0.64 COPOD!:w=0.21,s=0.28"} +{"timestamp":"2026-03-15T11:46:13.739795541Z","score":0.848764880827468,"is_anomaly":false,"confidence":0.9280762956149329,"method":"SEAD","details":"MAD!:w=0.22,s=0.68 RRCF-fast:w=0.19,s=0.85 RRCF-mid!:w=0.19,s=0.95 RRCF-slow!:w=0.19,s=0.95 COPOD!:w=0.21,s=0.85"} +{"timestamp":"2026-03-15T11:46:43.694501026Z","score":0.5401739959653664,"is_anomaly":false,"confidence":0.5943241478501968,"method":"SEAD","details":"MAD!:w=0.22,s=0.61 RRCF-fast:w=0.19,s=0.39 RRCF-mid:w=0.19,s=0.76 RRCF-slow:w=0.19,s=0.76 COPOD!:w=0.21,s=0.22"} +{"timestamp":"2026-03-15T11:47:13.730442476Z","score":0.8109168638881353,"is_anomaly":false,"confidence":0.892207839894926,"method":"SEAD","details":"MAD!:w=0.22,s=0.98 RRCF-fast:w=0.19,s=0.55 RRCF-mid:w=0.19,s=0.74 RRCF-slow:w=0.19,s=0.74 COPOD!:w=0.21,s=1.00"} +{"timestamp":"2026-03-15T11:47:43.734325609Z","score":0.49407571589232535,"is_anomaly":false,"confidence":0.5436047107310386,"method":"SEAD","details":"MAD!:w=0.22,s=0.81 RRCF-fast:w=0.19,s=0.21 RRCF-mid:w=0.19,s=0.35 RRCF-slow:w=0.19,s=0.37 COPOD!:w=0.21,s=0.65"} +{"timestamp":"2026-03-15T11:48:13.689327872Z","score":0.4266694830768621,"is_anomaly":false,"confidence":0.4694412889871849,"method":"SEAD","details":"MAD!:w=0.22,s=0.09 RRCF-fast:w=0.19,s=0.48 RRCF-mid:w=0.19,s=0.64 RRCF-slow:w=0.19,s=0.68 COPOD!:w=0.21,s=0.32"} +{"timestamp":"2026-03-15T11:48:43.738814677Z","score":0.4931206308762388,"is_anomaly":false,"confidence":0.5425538824931934,"method":"SEAD","details":"MAD!:w=0.22,s=0.36 RRCF-fast:w=0.19,s=0.47 RRCF-mid:w=0.19,s=0.69 RRCF-slow:w=0.19,s=0.64 COPOD!:w=0.21,s=0.36"} +{"timestamp":"2026-03-15T11:49:13.692171028Z","score":0.3980928438215597,"is_anomaly":false,"confidence":0.4379999628576705,"method":"SEAD","details":"MAD!:w=0.22,s=0.09 RRCF-fast:w=0.19,s=0.61 RRCF-mid:w=0.19,s=0.61 RRCF-slow:w=0.19,s=0.67 COPOD!:w=0.21,s=0.11"} +{"timestamp":"2026-03-15T11:49:43.738294878Z","score":0.7497407367479784,"is_anomaly":false,"confidence":0.8330452630533094,"method":"SEAD","details":"MAD!:w=0.22,s=0.51 RRCF-fast:w=0.19,s=0.81 RRCF-mid:w=0.19,s=0.83 RRCF-slow:w=0.19,s=0.83 COPOD!:w=0.21,s=0.81"} +{"timestamp":"2026-03-15T11:50:13.688902377Z","score":0.6368065325697244,"is_anomaly":false,"confidence":0.7075628139663606,"method":"SEAD","details":"MAD!:w=0.22,s=0.31 RRCF-fast:w=0.19,s=0.88 RRCF-mid:w=0.19,s=0.88 RRCF-slow:w=0.18,s=0.88 COPOD!:w=0.21,s=0.35"} +{"timestamp":"2026-03-15T11:50:43.733058776Z","score":0.9262685209503013,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.23,s=0.78 RRCF-fast!:w=0.19,s=0.94 RRCF-mid!:w=0.18,s=0.96 RRCF-slow!:w=0.18,s=0.98 COPOD!:w=0.22,s=1.00"} +{"timestamp":"2026-03-15T11:51:13.734822318Z","score":0.7234267941275928,"is_anomaly":false,"confidence":0.7959472617401743,"method":"SEAD","details":"MAD!:w=0.23,s=0.66 RRCF-fast:w=0.19,s=0.72 RRCF-mid:w=0.18,s=0.86 RRCF-slow:w=0.18,s=0.86 COPOD!:w=0.22,s=0.56"} +{"timestamp":"2026-03-15T11:51:43.690589457Z","score":0.4341276369484657,"is_anomaly":false,"confidence":0.47764709114979154,"method":"SEAD","details":"MAD!:w=0.23,s=0.20 RRCF-fast:w=0.19,s=0.43 RRCF-mid:w=0.18,s=0.63 RRCF-slow:w=0.18,s=0.59 COPOD!:w=0.22,s=0.39"} +{"timestamp":"2026-03-15T11:52:13.73983929Z","score":0.4149183504950082,"is_anomaly":false,"confidence":0.45651215520779287,"method":"SEAD","details":"MAD!:w=0.23,s=0.23 RRCF-fast:w=0.19,s=0.52 RRCF-mid:w=0.18,s=0.63 RRCF-slow:w=0.18,s=0.56 COPOD!:w=0.22,s=0.21"} +{"timestamp":"2026-03-15T11:52:43.696531655Z","score":0.42071371569815497,"is_anomaly":false,"confidence":0.462888481190841,"method":"SEAD","details":"MAD!:w=0.23,s=0.09 RRCF-fast:w=0.19,s=0.42 RRCF-mid:w=0.18,s=0.43 RRCF-slow:w=0.18,s=0.47 COPOD!:w=0.22,s=0.72"} +{"timestamp":"2026-03-15T11:53:14.619476293Z","score":0.9964963973708093,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.23,s=1.00 RRCF-fast!:w=0.19,s=0.98 RRCF-mid!:w=0.18,s=1.00 RRCF-slow!:w=0.18,s=1.00 COPOD!:w=0.22,s=1.00"} +{"timestamp":"2026-03-15T11:53:43.691313496Z","score":0.9065026542222541,"is_anomaly":false,"confidence":0.9973757002718167,"method":"SEAD","details":"MAD!:w=0.23,s=0.96 RRCF-fast:w=0.19,s=0.85 RRCF-mid!:w=0.18,s=0.98 RRCF-slow!:w=0.18,s=0.98 COPOD!:w=0.22,s=0.76"} +{"timestamp":"2026-03-15T11:54:13.734057388Z","score":0.8294306477149513,"is_anomaly":false,"confidence":0.9125775520220175,"method":"SEAD","details":"MAD!:w=0.23,s=0.59 RRCF-fast!:w=0.19,s=0.89 RRCF-mid!:w=0.18,s=0.96 RRCF-slow!:w=0.18,s=0.96 COPOD!:w=0.22,s=0.80"} +{"timestamp":"2026-03-15T11:54:43.737735211Z","score":0.653246308767354,"is_anomaly":false,"confidence":0.7187314804012456,"method":"SEAD","details":"MAD!:w=0.23,s=0.53 RRCF-fast:w=0.19,s=0.79 RRCF-mid:w=0.18,s=0.82 RRCF-slow:w=0.18,s=0.84 COPOD!:w=0.22,s=0.37"} +{"timestamp":"2026-03-15T11:55:13.695338567Z","score":0.4852305650829943,"is_anomaly":false,"confidence":0.5338728710708058,"method":"SEAD","details":"MAD!:w=0.23,s=0.26 RRCF-fast:w=0.19,s=0.66 RRCF-mid:w=0.18,s=0.81 RRCF-slow:w=0.18,s=0.78 COPOD!:w=0.22,s=0.07"} +{"timestamp":"2026-03-15T11:55:43.736450968Z","score":0.47528382966497096,"is_anomaly":false,"confidence":0.5229290176173583,"method":"SEAD","details":"MAD!:w=0.23,s=0.34 RRCF-fast:w=0.19,s=0.51 RRCF-mid:w=0.18,s=0.64 RRCF-slow:w=0.18,s=0.68 COPOD!:w=0.22,s=0.29"} +{"timestamp":"2026-03-15T11:56:13.693028583Z","score":0.49845841596259605,"is_anomaly":false,"confidence":0.5484267578936229,"method":"SEAD","details":"MAD!:w=0.23,s=0.22 RRCF-fast:w=0.19,s=0.32 RRCF-mid:w=0.18,s=0.68 RRCF-slow:w=0.18,s=0.67 COPOD!:w=0.22,s=0.67"} +{"timestamp":"2026-03-15T11:56:43.735181156Z","score":0.9114343712087254,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.24,s=0.90 RRCF-fast:w=0.19,s=0.80 RRCF-mid!:w=0.18,s=0.95 RRCF-slow!:w=0.18,s=0.95 COPOD!:w=0.22,s=0.95"} +{"timestamp":"2026-03-15T11:57:13.733768028Z","score":0.6796262188770463,"is_anomaly":false,"confidence":0.7477558646059841,"method":"SEAD","details":"MAD!:w=0.24,s=0.77 RRCF-fast:w=0.19,s=0.42 RRCF-mid:w=0.18,s=0.76 RRCF-slow:w=0.18,s=0.77 COPOD!:w=0.22,s=0.66"} +{"timestamp":"2026-03-15T11:57:43.761360074Z","score":0.8160540522240507,"is_anomaly":false,"confidence":0.8978600095715363,"method":"SEAD","details":"MAD!:w=0.24,s=0.62 RRCF-fast:w=0.19,s=0.86 RRCF-mid!:w=0.18,s=0.92 RRCF-slow!:w=0.18,s=0.94 COPOD!:w=0.22,s=0.81"} +{"timestamp":"2026-03-15T11:58:13.737178178Z","score":0.6064773597186222,"is_anomaly":false,"confidence":0.6672741425863038,"method":"SEAD","details":"MAD!:w=0.24,s=0.56 RRCF-fast:w=0.19,s=0.42 RRCF-mid:w=0.18,s=0.72 RRCF-slow:w=0.18,s=0.77 COPOD!:w=0.22,s=0.59"} +{"timestamp":"2026-03-15T11:58:43.692889537Z","score":0.4298244053525758,"is_anomaly":false,"confidence":0.47291247883906995,"method":"SEAD","details":"MAD!:w=0.24,s=0.35 RRCF-fast:w=0.19,s=0.32 RRCF-mid:w=0.18,s=0.62 RRCF-slow:w=0.18,s=0.63 COPOD!:w=0.22,s=0.29"} +{"timestamp":"2026-03-15T11:59:13.73800211Z","score":0.8251291387815074,"is_anomaly":false,"confidence":0.9078448350633452,"method":"SEAD","details":"MAD!:w=0.24,s=0.73 RRCF-fast:w=0.19,s=0.76 RRCF-mid!:w=0.18,s=0.88 RRCF-slow!:w=0.18,s=0.91 COPOD!:w=0.22,s=0.88"} +{"timestamp":"2026-03-15T11:59:43.694044659Z","score":0.6147509802203246,"is_anomaly":false,"confidence":0.6781568452744998,"method":"SEAD","details":"MAD!:w=0.24,s=0.64 RRCF-fast:w=0.19,s=0.58 RRCF-mid:w=0.18,s=0.70 RRCF-slow:w=0.18,s=0.72 COPOD!:w=0.22,s=0.46"} +{"timestamp":"2026-03-15T12:00:15.128660183Z","score":0.7513687219859506,"is_anomaly":false,"confidence":0.8288654406981272,"method":"SEAD","details":"MAD!:w=0.24,s=0.54 RRCF-fast:w=0.19,s=0.74 RRCF-mid:w=0.18,s=0.84 RRCF-slow:w=0.18,s=0.85 COPOD!:w=0.22,s=0.84"} +{"timestamp":"2026-03-15T12:00:43.736739804Z","score":0.5470685685046113,"is_anomaly":false,"confidence":0.6034936201857853,"method":"SEAD","details":"MAD!:w=0.24,s=0.46 RRCF-fast:w=0.19,s=0.46 RRCF-mid:w=0.18,s=0.71 RRCF-slow:w=0.18,s=0.71 COPOD!:w=0.22,s=0.45"} +{"timestamp":"2026-03-15T12:01:13.692781252Z","score":0.4327547592018549,"is_anomaly":false,"confidence":0.4773894011078683,"method":"SEAD","details":"MAD!:w=0.24,s=0.37 RRCF-fast:w=0.19,s=0.21 RRCF-mid:w=0.18,s=0.56 RRCF-slow:w=0.17,s=0.60 COPOD!:w=0.22,s=0.46"} +{"timestamp":"2026-03-15T12:01:43.736295596Z","score":0.7098076975794492,"is_anomaly":false,"confidence":0.7830177818822142,"method":"SEAD","details":"MAD!:w=0.24,s=0.54 RRCF-fast:w=0.19,s=0.69 RRCF-mid:w=0.17,s=0.76 RRCF-slow:w=0.17,s=0.80 COPOD!:w=0.22,s=0.80"} +{"timestamp":"2026-03-15T12:02:13.691835278Z","score":0.5512913807609566,"is_anomaly":false,"confidence":0.608151976382181,"method":"SEAD","details":"MAD!:w=0.24,s=0.43 RRCF-fast:w=0.19,s=0.62 RRCF-mid:w=0.17,s=0.67 RRCF-slow:w=0.17,s=0.71 COPOD!:w=0.22,s=0.40"} +{"timestamp":"2026-03-15T12:02:43.738867088Z","score":0.9758739720851086,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.24,s=1.00 RRCF-fast!:w=0.19,s=1.00 RRCF-mid!:w=0.17,s=1.00 RRCF-slow!:w=0.17,s=1.00 COPOD!:w=0.22,s=0.89"} +{"timestamp":"2026-03-15T12:03:13.694743471Z","score":0.9345535535933354,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.24,s=0.99 RRCF-fast!:w=0.19,s=0.99 RRCF-mid!:w=0.17,s=1.00 RRCF-slow!:w=0.17,s=1.00 COPOD!:w=0.22,s=0.73"} +{"timestamp":"2026-03-15T12:03:43.744503054Z","score":0.7479491037822454,"is_anomaly":false,"confidence":0.8229278289234834,"method":"SEAD","details":"MAD!:w=0.24,s=0.48 RRCF-fast:w=0.19,s=0.88 RRCF-mid!:w=0.17,s=0.93 RRCF-slow!:w=0.17,s=0.96 COPOD!:w=0.22,s=0.61"} +{"timestamp":"2026-03-15T12:04:13.738153128Z","score":0.5424842359036088,"is_anomaly":false,"confidence":0.5968659795430972,"method":"SEAD","details":"MAD!:w=0.24,s=0.22 RRCF-fast:w=0.19,s=0.72 RRCF-mid!:w=0.17,s=0.89 RRCF-slow!:w=0.17,s=0.95 COPOD!:w=0.22,s=0.14"} +{"timestamp":"2026-03-15T12:04:43.691872295Z","score":0.5149067685292423,"is_anomaly":false,"confidence":0.566523988037479,"method":"SEAD","details":"MAD!:w=0.24,s=0.32 RRCF-fast:w=0.19,s=0.70 RRCF-mid:w=0.17,s=0.70 RRCF-slow:w=0.17,s=0.84 COPOD!:w=0.22,s=0.17"} +{"timestamp":"2026-03-15T12:05:13.735298095Z","score":0.5573703367833461,"is_anomaly":false,"confidence":0.6132443488949035,"method":"SEAD","details":"MAD!:w=0.24,s=0.33 RRCF-fast:w=0.19,s=0.59 RRCF-mid:w=0.17,s=0.76 RRCF-slow:w=0.17,s=0.87 COPOD!:w=0.23,s=0.38"} +{"timestamp":"2026-03-15T12:05:43.694620273Z","score":0.6093552428374829,"is_anomaly":false,"confidence":0.670440521280955,"method":"SEAD","details":"MAD!:w=0.25,s=0.23 RRCF-fast:w=0.19,s=0.63 RRCF-mid:w=0.17,s=0.76 RRCF-slow:w=0.17,s=0.84 COPOD!:w=0.23,s=0.72"} +{"timestamp":"2026-03-15T12:06:13.741707376Z","score":0.9307141710919693,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.25,s=0.99 RRCF-fast:w=0.19,s=0.79 RRCF-mid!:w=0.17,s=0.94 RRCF-slow!:w=0.17,s=0.97 COPOD!:w=0.23,s=0.95"} +{"timestamp":"2026-03-15T12:06:43.691098701Z","score":0.7588286053789332,"is_anomaly":false,"confidence":0.8348979544085703,"method":"SEAD","details":"MAD!:w=0.25,s=0.96 RRCF-fast:w=0.19,s=0.40 RRCF-mid:w=0.17,s=0.86 RRCF-slow!:w=0.17,s=0.90 COPOD!:w=0.23,s=0.65"} +{"timestamp":"2026-03-15T12:07:13.770554799Z","score":0.6588589692274678,"is_anomaly":false,"confidence":0.7249067862657349,"method":"SEAD","details":"MAD!:w=0.25,s=0.45 RRCF-fast!:w=0.19,s=0.89 RRCF-mid:w=0.17,s=0.66 RRCF-slow:w=0.17,s=0.87 COPOD!:w=0.23,s=0.54"} +{"timestamp":"2026-03-15T12:07:43.740710139Z","score":0.5315242991678572,"is_anomaly":false,"confidence":0.5848073556374301,"method":"SEAD","details":"MAD!:w=0.25,s=0.22 RRCF-fast:w=0.19,s=0.35 RRCF-mid:w=0.17,s=0.59 RRCF-slow:w=0.17,s=0.82 COPOD!:w=0.23,s=0.77"} +{"timestamp":"2026-03-15T12:08:13.691593876Z","score":0.36038029184817316,"is_anomaly":false,"confidence":0.3965068875111182,"method":"SEAD","details":"MAD!:w=0.25,s=0.26 RRCF-fast:w=0.19,s=0.40 RRCF-mid:w=0.17,s=0.55 RRCF-slow:w=0.17,s=0.74 COPOD!:w=0.23,s=0.01"} +{"timestamp":"2026-03-15T12:08:43.743675855Z","score":0.7229258671520574,"is_anomaly":false,"confidence":0.7953961189600814,"method":"SEAD","details":"MAD!:w=0.25,s=0.55 RRCF-fast:w=0.19,s=0.64 RRCF-mid:w=0.17,s=0.75 RRCF-slow:w=0.16,s=0.85 COPOD!:w=0.23,s=0.87"} +{"timestamp":"2026-03-15T12:09:13.692816035Z","score":0.5357420378691325,"is_anomaly":false,"confidence":0.5894479047534802,"method":"SEAD","details":"MAD!:w=0.25,s=0.44 RRCF-fast:w=0.19,s=0.24 RRCF-mid:w=0.17,s=0.60 RRCF-slow:w=0.16,s=0.67 COPOD!:w=0.23,s=0.73"} +{"timestamp":"2026-03-15T12:09:45.842336472Z","score":0.7417035541651196,"is_anomaly":false,"confidence":0.8182034004097583,"method":"SEAD","details":"MAD!:w=0.25,s=0.61 RRCF-fast:w=0.19,s=0.71 RRCF-mid:w=0.17,s=0.79 RRCF-slow:w=0.16,s=0.84 COPOD!:w=0.22,s=0.80"} +{"timestamp":"2026-03-15T12:10:13.736637454Z","score":0.45910823984792404,"is_anomaly":false,"confidence":0.5064609989937889,"method":"SEAD","details":"MAD!:w=0.25,s=0.52 RRCF-fast:w=0.19,s=0.20 RRCF-mid:w=0.17,s=0.50 RRCF-slow:w=0.16,s=0.72 COPOD!:w=0.22,s=0.39"} +{"timestamp":"2026-03-15T12:10:43.694047185Z","score":0.3488099109902274,"is_anomaly":false,"confidence":0.38478641994655105,"method":"SEAD","details":"MAD!:w=0.25,s=0.20 RRCF-fast:w=0.19,s=0.17 RRCF-mid:w=0.17,s=0.38 RRCF-slow:w=0.16,s=0.63 COPOD!:w=0.22,s=0.44"} +{"timestamp":"2026-03-15T12:11:13.737807271Z","score":0.6200776724565378,"is_anomaly":false,"confidence":0.6840329364380534,"method":"SEAD","details":"MAD!:w=0.25,s=0.56 RRCF-fast:w=0.19,s=0.43 RRCF-mid:w=0.17,s=0.57 RRCF-slow:w=0.16,s=0.73 COPOD!:w=0.22,s=0.81"} +{"timestamp":"2026-03-15T12:11:43.69209656Z","score":0.4260189840231139,"is_anomaly":false,"confidence":0.4699588931580377,"method":"SEAD","details":"MAD!:w=0.25,s=0.40 RRCF-fast:w=0.19,s=0.21 RRCF-mid:w=0.17,s=0.45 RRCF-slow:w=0.16,s=0.58 COPOD!:w=0.22,s=0.52"} +{"timestamp":"2026-03-15T12:12:13.73498704Z","score":0.8692244744038875,"is_anomaly":false,"confidence":0.9588769214908147,"method":"SEAD","details":"MAD!:w=0.25,s=0.92 RRCF-fast:w=0.19,s=0.78 RRCF-mid:w=0.17,s=0.79 RRCF-slow:w=0.16,s=0.89 COPOD!:w=0.22,s=0.92"} +{"timestamp":"2026-03-15T12:12:43.733563752Z","score":0.7030918740502359,"is_anomaly":false,"confidence":0.7756092834096143,"method":"SEAD","details":"MAD!:w=0.25,s=0.85 RRCF-fast:w=0.19,s=0.65 RRCF-mid:w=0.17,s=0.72 RRCF-slow:w=0.16,s=0.71 COPOD!:w=0.22,s=0.57"} +{"timestamp":"2026-03-15T12:13:13.693557675Z","score":0.3653109221284366,"is_anomaly":false,"confidence":0.40590102458715177,"method":"SEAD","details":"MAD!:w=0.25,s=0.23 RRCF-fast:w=0.19,s=0.33 RRCF-mid:w=0.17,s=0.38 RRCF-slow:w=0.16,s=0.51 COPOD!:w=0.22,s=0.43"} +{"timestamp":"2026-03-15T12:13:43.740430564Z","score":0.4633115420537912,"is_anomaly":false,"confidence":0.5147906022819903,"method":"SEAD","details":"MAD!:w=0.25,s=0.32 RRCF-fast:w=0.19,s=0.71 RRCF-mid:w=0.17,s=0.41 RRCF-slow:w=0.16,s=0.63 COPOD!:w=0.22,s=0.34"} +{"timestamp":"2026-03-15T12:14:13.692749861Z","score":0.27520790217614527,"is_anomaly":false,"confidence":0.3057865579734948,"method":"SEAD","details":"MAD!:w=0.25,s=0.27 RRCF-fast:w=0.19,s=0.20 RRCF-mid:w=0.17,s=0.42 RRCF-slow:w=0.16,s=0.48 COPOD!:w=0.22,s=0.09"} +{"timestamp":"2026-03-15T12:14:43.737626323Z","score":0.8291368605756777,"is_anomaly":false,"confidence":0.9212631784174198,"method":"SEAD","details":"MAD!:w=0.25,s=0.72 RRCF-fast!:w=0.19,s=0.95 RRCF-mid:w=0.17,s=0.64 RRCF-slow:w=0.16,s=0.89 COPOD!:w=0.22,s=0.95"} +{"timestamp":"2026-03-15T12:15:13.692332232Z","score":0.5914547228721895,"is_anomaly":false,"confidence":0.6571719143024328,"method":"SEAD","details":"MAD!:w=0.25,s=0.64 RRCF-fast:w=0.19,s=0.69 RRCF-mid:w=0.17,s=0.50 RRCF-slow:w=0.16,s=0.65 COPOD!:w=0.22,s=0.47"} +{"timestamp":"2026-03-15T12:15:43.738786945Z","score":0.7005856173614136,"is_anomaly":false,"confidence":0.778428463734904,"method":"SEAD","details":"MAD!:w=0.25,s=0.99 RRCF-fast:w=0.19,s=0.55 RRCF-mid:w=0.17,s=0.53 RRCF-slow:w=0.16,s=0.61 COPOD!:w=0.22,s=0.71"} +{"timestamp":"2026-03-15T12:16:14.624201685Z","score":0.18572944864498772,"is_anomaly":false,"confidence":0.20636605404998637,"method":"SEAD","details":"MAD:w=0.25,s=0.00 RRCF-fast:w=0.19,s=0.19 RRCF-mid:w=0.17,s=0.39 RRCF-slow:w=0.16,s=0.46 COPOD!:w=0.22,s=0.04"} +{"timestamp":"2026-03-15T12:16:43.693105351Z","score":0.1851109422524838,"is_anomaly":false,"confidence":0.20671160337893008,"method":"SEAD","details":"MAD:w=0.25,s=0.00 RRCF-fast:w=0.19,s=0.25 RRCF-mid:w=0.17,s=0.26 RRCF-slow:w=0.16,s=0.48 COPOD!:w=0.23,s=0.08"} +{"timestamp":"2026-03-15T12:17:13.743017996Z","score":0.21613824198636955,"is_anomaly":false,"confidence":0.24135948965980775,"method":"SEAD","details":"MAD!:w=0.25,s=0.02 RRCF-fast:w=0.19,s=0.12 RRCF-mid:w=0.17,s=0.25 RRCF-slow:w=0.16,s=0.47 COPOD!:w=0.23,s=0.31"} +{"timestamp":"2026-03-15T12:17:43.693971743Z","score":0.2769036235230739,"is_anomaly":false,"confidence":0.30921560499550743,"method":"SEAD","details":"MAD!:w=0.25,s=0.03 RRCF-fast:w=0.19,s=0.31 RRCF-mid:w=0.17,s=0.22 RRCF-slow:w=0.16,s=0.44 COPOD!:w=0.22,s=0.46"} +{"timestamp":"2026-03-15T12:18:13.741400718Z","score":0.9186051542346905,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.26,s=1.00 RRCF-fast!:w=0.19,s=0.88 RRCF-mid:w=0.17,s=0.76 RRCF-slow:w=0.16,s=0.89 COPOD!:w=0.22,s=1.00"} +{"timestamp":"2026-03-15T12:18:43.70123894Z","score":0.5403521823504547,"is_anomaly":false,"confidence":0.6003913137227275,"method":"SEAD","details":"MAD!:w=0.26,s=0.04 RRCF-fast!:w=0.19,s=0.94 RRCF-mid:w=0.17,s=0.67 RRCF-slow:w=0.16,s=0.76 COPOD!:w=0.22,s=0.51"} +{"timestamp":"2026-03-15T12:19:13.772548079Z","score":0.7405307577407214,"is_anomaly":false,"confidence":0.8228119530452461,"method":"SEAD","details":"MAD!:w=0.26,s=0.96 RRCF-fast:w=0.19,s=0.72 RRCF-mid:w=0.17,s=0.54 RRCF-slow:w=0.16,s=0.64 COPOD!:w=0.22,s=0.73"} +{"timestamp":"2026-03-15T12:19:43.740374947Z","score":0.20211165509132492,"is_anomaly":false,"confidence":0.2256961353938356,"method":"SEAD","details":"MAD:w=0.26,s=0.02 RRCF-fast:w=0.19,s=0.22 RRCF-mid:w=0.17,s=0.28 RRCF-slow:w=0.16,s=0.44 COPOD!:w=0.22,s=0.17"} +{"timestamp":"2026-03-15T12:20:13.695927793Z","score":0.21641780149443762,"is_anomaly":false,"confidence":0.24167167106545234,"method":"SEAD","details":"MAD:w=0.26,s=0.02 RRCF-fast:w=0.19,s=0.12 RRCF-mid:w=0.17,s=0.19 RRCF-slow:w=0.16,s=0.44 COPOD!:w=0.22,s=0.40"} +{"timestamp":"2026-03-15T12:20:43.748389452Z","score":0.817178469901424,"is_anomaly":false,"confidence":0.9125353137129176,"method":"SEAD","details":"MAD!:w=0.26,s=0.94 RRCF-fast:w=0.19,s=0.86 RRCF-mid:w=0.17,s=0.59 RRCF-slow:w=0.16,s=0.85 COPOD!:w=0.22,s=0.79"} +{"timestamp":"2026-03-15T12:21:13.691873347Z","score":0.4106401508317198,"is_anomaly":false,"confidence":0.4585578948348285,"method":"SEAD","details":"MAD!:w=0.26,s=0.04 RRCF-fast:w=0.19,s=0.62 RRCF-mid:w=0.17,s=0.35 RRCF-slow:w=0.16,s=0.56 COPOD!:w=0.22,s=0.61"} +{"timestamp":"2026-03-15T12:21:43.759883307Z","score":0.8575673166280656,"is_anomaly":false,"confidence":0.9576371492062644,"method":"SEAD","details":"MAD!:w=0.26,s=0.99 RRCF-fast:w=0.19,s=0.80 RRCF-mid:w=0.17,s=0.63 RRCF-slow:w=0.16,s=0.81 COPOD!:w=0.22,s=0.95"} +{"timestamp":"2026-03-15T12:22:13.734665306Z","score":0.4839479490639432,"is_anomaly":false,"confidence":0.5404200058930345,"method":"SEAD","details":"MAD:w=0.26,s=0.04 RRCF-fast:w=0.19,s=0.57 RRCF-mid:w=0.17,s=0.47 RRCF-slow:w=0.16,s=0.70 COPOD!:w=0.22,s=0.79"} +{"timestamp":"2026-03-15T12:22:43.691425637Z","score":0.25914839765323394,"is_anomaly":false,"confidence":0.2893885155579546,"method":"SEAD","details":"MAD:w=0.26,s=0.02 RRCF-fast:w=0.19,s=0.34 RRCF-mid:w=0.17,s=0.17 RRCF-slow:w=0.16,s=0.39 COPOD!:w=0.22,s=0.46"} +{"timestamp":"2026-03-15T12:23:13.74030375Z","score":0.18402235210479836,"is_anomaly":false,"confidence":0.21170866389950713,"method":"SEAD","details":"MAD:w=0.27,s=0.03 RRCF-fast:w=0.19,s=0.18 RRCF-mid:w=0.17,s=0.26 RRCF-slow:w=0.15,s=0.38 COPOD!:w=0.22,s=0.18"} +{"timestamp":"2026-03-15T12:23:43.697754968Z","score":0.22814965524058162,"is_anomaly":false,"confidence":0.2624749555021978,"method":"SEAD","details":"MAD:w=0.27,s=0.03 RRCF-fast:w=0.19,s=0.18 RRCF-mid:w=0.17,s=0.16 RRCF-slow:w=0.15,s=0.33 COPOD!:w=0.22,s=0.49"} +{"timestamp":"2026-03-15T12:24:13.737564905Z","score":0.8560635199251987,"is_anomaly":false,"confidence":0.9848589692694576,"method":"SEAD","details":"MAD!:w=0.27,s=1.00 RRCF-fast!:w=0.19,s=0.99 RRCF-mid:w=0.17,s=0.45 RRCF-slow:w=0.15,s=0.84 COPOD!:w=0.22,s=0.89"} +{"timestamp":"2026-03-15T12:24:43.684561247Z","score":0.36794599029782404,"is_anomaly":false,"confidence":0.4233037622993309,"method":"SEAD","details":"MAD!:w=0.27,s=0.07 RRCF-fast!:w=0.19,s=0.98 RRCF-mid:w=0.17,s=0.23 RRCF-slow:w=0.15,s=0.56 COPOD!:w=0.22,s=0.17"} +{"timestamp":"2026-03-15T12:25:13.734572192Z","score":0.8516409940983602,"is_anomaly":false,"confidence":0.9797710708530314,"method":"SEAD","details":"MAD!:w=0.27,s=0.93 RRCF-fast!:w=0.19,s=0.94 RRCF-mid:w=0.17,s=0.66 RRCF-slow:w=0.15,s=0.88 COPOD!:w=0.22,s=0.81"} +{"timestamp":"2026-03-15T12:25:45.216850272Z","score":0.5442375796906143,"is_anomaly":false,"confidence":0.6261185639806695,"method":"SEAD","details":"MAD:w=0.27,s=0.00 RRCF-fast!:w=0.19,s=0.93 RRCF-mid:w=0.17,s=0.69 RRCF-slow:w=0.15,s=0.53 COPOD!:w=0.22,s=0.77"} +{"timestamp":"2026-03-15T12:26:13.690214535Z","score":0.3674059862536694,"is_anomaly":false,"confidence":0.4226825142097336,"method":"SEAD","details":"MAD:w=0.27,s=0.00 RRCF-fast:w=0.19,s=0.44 RRCF-mid:w=0.17,s=0.32 RRCF-slow:w=0.15,s=0.47 COPOD!:w=0.22,s=0.73"} +{"timestamp":"2026-03-15T12:26:43.735930648Z","score":0.3309709919642345,"is_anomaly":false,"confidence":0.3831244395733273,"method":"SEAD","details":"MAD!:w=0.27,s=0.09 RRCF-fast:w=0.19,s=0.56 RRCF-mid:w=0.17,s=0.17 RRCF-slow:w=0.15,s=0.36 COPOD!:w=0.22,s=0.55"} +{"timestamp":"2026-03-15T12:27:13.692582521Z","score":0.2881361030040634,"is_anomaly":false,"confidence":0.33353975322466783,"method":"SEAD","details":"MAD!:w=0.28,s=0.09 RRCF-fast:w=0.19,s=0.20 RRCF-mid:w=0.17,s=0.29 RRCF-slow:w=0.15,s=0.37 COPOD!:w=0.21,s=0.57"} +{"timestamp":"2026-03-15T12:27:43.737346857Z","score":0.8803972234613202,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=0.98 RRCF-fast:w=0.19,s=0.80 RRCF-mid:w=0.17,s=0.78 RRCF-slow!:w=0.15,s=0.93 COPOD!:w=0.21,s=0.87"} +{"timestamp":"2026-03-15T12:28:13.686738049Z","score":0.4489331999417787,"is_anomaly":false,"confidence":0.5164755631733176,"method":"SEAD","details":"MAD!:w=0.28,s=0.08 RRCF-fast:w=0.19,s=0.69 RRCF-mid:w=0.17,s=0.48 RRCF-slow:w=0.15,s=0.55 COPOD!:w=0.21,s=0.62"} +{"timestamp":"2026-03-15T12:28:43.741418619Z","score":0.8686391773214837,"is_anomaly":false,"confidence":0.9993266444978954,"method":"SEAD","details":"MAD!:w=0.28,s=0.98 RRCF-fast:w=0.18,s=0.80 RRCF-mid:w=0.17,s=0.63 RRCF-slow!:w=0.15,s=0.90 COPOD!:w=0.21,s=0.94"} +{"timestamp":"2026-03-15T12:29:13.737887913Z","score":0.434063345247292,"is_anomaly":false,"confidence":0.4993685268065787,"method":"SEAD","details":"MAD!:w=0.28,s=0.09 RRCF-fast:w=0.19,s=0.57 RRCF-mid:w=0.17,s=0.56 RRCF-slow:w=0.15,s=0.60 COPOD!:w=0.21,s=0.55"} +{"timestamp":"2026-03-15T12:29:43.691771907Z","score":0.15127751612582696,"is_anomaly":false,"confidence":0.1741546088127212,"method":"SEAD","details":"MAD:w=0.28,s=0.03 RRCF-fast:w=0.18,s=0.20 RRCF-mid:w=0.17,s=0.15 RRCF-slow:w=0.15,s=0.32 COPOD!:w=0.21,s=0.14"} +{"timestamp":"2026-03-15T12:30:13.740814786Z","score":0.258033435918649,"is_anomaly":false,"confidence":0.29705479864990103,"method":"SEAD","details":"MAD:w=0.28,s=0.02 RRCF-fast:w=0.18,s=0.60 RRCF-mid:w=0.17,s=0.30 RRCF-slow:w=0.15,s=0.53 COPOD!:w=0.21,s=0.05"} +{"timestamp":"2026-03-15T12:30:43.688870073Z","score":0.21202004132929425,"is_anomaly":false,"confidence":0.2440829827444285,"method":"SEAD","details":"MAD:w=0.28,s=0.00 RRCF-fast:w=0.18,s=0.36 RRCF-mid:w=0.17,s=0.23 RRCF-slow:w=0.15,s=0.56 COPOD!:w=0.21,s=0.10"} +{"timestamp":"2026-03-15T12:31:13.739755392Z","score":0.8608742549501398,"is_anomaly":false,"confidence":0.9910608195277496,"method":"SEAD","details":"MAD!:w=0.28,s=0.96 RRCF-fast:w=0.18,s=0.81 RRCF-mid!:w=0.17,s=0.82 RRCF-slow:w=0.15,s=0.78 COPOD!:w=0.21,s=0.86"} +{"timestamp":"2026-03-15T12:31:43.696230197Z","score":0.40212623619978677,"is_anomaly":false,"confidence":0.46293817582551855,"method":"SEAD","details":"MAD!:w=0.28,s=0.11 RRCF-fast:w=0.18,s=0.55 RRCF-mid:w=0.17,s=0.45 RRCF-slow:w=0.15,s=0.61 COPOD!:w=0.21,s=0.47"} +{"timestamp":"2026-03-15T12:32:13.780744694Z","score":0.7193905628202607,"is_anomaly":false,"confidence":0.8281811154759993,"method":"SEAD","details":"MAD!:w=0.29,s=0.90 RRCF-fast:w=0.18,s=0.78 RRCF-mid:w=0.17,s=0.46 RRCF-slow:w=0.15,s=0.69 COPOD!:w=0.21,s=0.65"} +{"timestamp":"2026-03-15T12:32:43.740612945Z","score":0.38615110972398003,"is_anomaly":false,"confidence":0.44454719497537165,"method":"SEAD","details":"MAD!:w=0.28,s=0.12 RRCF-fast:w=0.18,s=0.58 RRCF-mid:w=0.17,s=0.24 RRCF-slow:w=0.15,s=0.36 COPOD!:w=0.21,s=0.71"} +{"timestamp":"2026-03-15T12:33:13.693048393Z","score":0.1883572910646179,"is_anomaly":false,"confidence":0.21803808590717844,"method":"SEAD","details":"MAD!:w=0.29,s=0.12 RRCF-fast:w=0.18,s=0.12 RRCF-mid:w=0.17,s=0.17 RRCF-slow:w=0.15,s=0.32 COPOD!:w=0.21,s=0.26"} +{"timestamp":"2026-03-15T12:33:43.743306032Z","score":0.79198567800278,"is_anomaly":false,"confidence":0.9167844808215276,"method":"SEAD","details":"MAD!:w=0.29,s=0.96 RRCF-fast:w=0.18,s=0.67 RRCF-mid:w=0.17,s=0.64 RRCF-slow:w=0.15,s=0.68 COPOD!:w=0.21,s=0.87"} +{"timestamp":"2026-03-15T12:34:13.697315971Z","score":0.36873749369424225,"is_anomaly":false,"confidence":0.4268420769532156,"method":"SEAD","details":"MAD:w=0.29,s=0.05 RRCF-fast:w=0.18,s=0.30 RRCF-mid:w=0.17,s=0.41 RRCF-slow:w=0.15,s=0.65 COPOD!:w=0.21,s=0.62"} +{"timestamp":"2026-03-15T12:34:43.741617423Z","score":0.733988366683643,"is_anomaly":false,"confidence":0.849648121637804,"method":"SEAD","details":"MAD!:w=0.29,s=0.88 RRCF-fast:w=0.18,s=0.76 RRCF-mid:w=0.17,s=0.65 RRCF-slow:w=0.15,s=0.69 COPOD!:w=0.21,s=0.62"} +{"timestamp":"2026-03-15T12:35:13.737543658Z","score":0.2078659463596767,"is_anomaly":false,"confidence":0.24062085844077954,"method":"SEAD","details":"MAD:w=0.29,s=0.00 RRCF-fast:w=0.18,s=0.33 RRCF-mid:w=0.17,s=0.25 RRCF-slow:w=0.15,s=0.43 COPOD!:w=0.21,s=0.20"} +{"timestamp":"2026-03-15T12:35:43.694210085Z","score":0.217116025239399,"is_anomaly":false,"confidence":0.25132853788353154,"method":"SEAD","details":"MAD!:w=0.29,s=0.14 RRCF-fast:w=0.18,s=0.17 RRCF-mid:w=0.17,s=0.16 RRCF-slow:w=0.15,s=0.28 COPOD!:w=0.21,s=0.37"} +{"timestamp":"2026-03-15T12:36:13.742094409Z","score":0.8031530658147451,"is_anomaly":false,"confidence":0.9297115931692451,"method":"SEAD","details":"MAD!:w=0.29,s=0.92 RRCF-fast:w=0.18,s=0.65 RRCF-mid:w=0.17,s=0.71 RRCF-slow:w=0.15,s=0.86 COPOD!:w=0.21,s=0.81"} +{"timestamp":"2026-03-15T12:36:43.689977763Z","score":0.2842509758439112,"is_anomaly":false,"confidence":0.3301887287364337,"method":"SEAD","details":"MAD!:w=0.29,s=0.15 RRCF-fast:w=0.18,s=0.15 RRCF-mid:w=0.17,s=0.42 RRCF-slow:w=0.15,s=0.45 COPOD!:w=0.21,s=0.36"} +{"timestamp":"2026-03-15T12:37:13.922883469Z","score":0.7151732843783605,"is_anomaly":false,"confidence":0.8307523198260609,"method":"SEAD","details":"MAD!:w=0.29,s=0.96 RRCF-fast:w=0.18,s=0.36 RRCF-mid:w=0.17,s=0.61 RRCF-slow:w=0.15,s=0.65 COPOD!:w=0.21,s=0.82"} +{"timestamp":"2026-03-15T12:37:43.738714028Z","score":0.30957937596304563,"is_anomaly":false,"confidence":0.359610447382906,"method":"SEAD","details":"MAD:w=0.29,s=0.10 RRCF-fast:w=0.18,s=0.13 RRCF-mid:w=0.17,s=0.27 RRCF-slow:w=0.15,s=0.36 COPOD!:w=0.21,s=0.76"} +{"timestamp":"2026-03-15T12:38:13.699900366Z","score":0.25051659514369123,"is_anomaly":false,"confidence":0.29100254038634327,"method":"SEAD","details":"MAD:w=0.29,s=0.06 RRCF-fast:w=0.18,s=0.19 RRCF-mid:w=0.17,s=0.10 RRCF-slow:w=0.15,s=0.28 COPOD!:w=0.21,s=0.68"} +{"timestamp":"2026-03-15T12:38:43.740970439Z","score":0.4853160378475062,"is_anomaly":false,"confidence":0.563747881943124,"method":"SEAD","details":"MAD!:w=0.29,s=0.21 RRCF-fast:w=0.18,s=0.71 RRCF-mid:w=0.17,s=0.55 RRCF-slow:w=0.15,s=0.71 COPOD!:w=0.20,s=0.45"} +{"timestamp":"2026-03-15T12:39:13.697681669Z","score":0.3331015406619745,"is_anomaly":false,"confidence":0.38693402520356135,"method":"SEAD","details":"MAD!:w=0.29,s=0.12 RRCF-fast:w=0.18,s=0.26 RRCF-mid:w=0.17,s=0.21 RRCF-slow:w=0.15,s=0.36 COPOD!:w=0.20,s=0.79"} +{"timestamp":"2026-03-15T12:39:43.763953625Z","score":0.85947229270079,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=0.99 RRCF-fast:w=0.18,s=0.81 RRCF-mid:w=0.17,s=0.69 RRCF-slow:w=0.15,s=0.68 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-15T12:40:13.738315082Z","score":0.3321133915728685,"is_anomaly":false,"confidence":0.38641547190455844,"method":"SEAD","details":"MAD!:w=0.29,s=0.13 RRCF-fast:w=0.18,s=0.22 RRCF-mid:w=0.18,s=0.24 RRCF-slow:w=0.15,s=0.55 COPOD!:w=0.20,s=0.66"} +{"timestamp":"2026-03-15T12:40:43.693815055Z","score":0.23836315891080742,"is_anomaly":false,"confidence":0.2773366412566709,"method":"SEAD","details":"MAD:w=0.29,s=0.06 RRCF-fast:w=0.18,s=0.36 RRCF-mid:w=0.18,s=0.19 RRCF-slow:w=0.15,s=0.25 COPOD!:w=0.20,s=0.43"} +{"timestamp":"2026-03-15T12:41:13.737042331Z","score":0.11633608979516127,"is_anomaly":false,"confidence":0.13535758020725588,"method":"SEAD","details":"MAD:w=0.30,s=0.07 RRCF-fast:w=0.18,s=0.09 RRCF-mid:w=0.18,s=0.17 RRCF-slow:w=0.15,s=0.25 COPOD!:w=0.20,s=0.06"} +{"timestamp":"2026-03-15T12:41:43.69489054Z","score":0.11489166121012953,"is_anomaly":false,"confidence":0.13367698084727792,"method":"SEAD","details":"MAD:w=0.30,s=0.07 RRCF-fast:w=0.18,s=0.10 RRCF-mid:w=0.18,s=0.10 RRCF-slow:w=0.15,s=0.22 COPOD!:w=0.20,s=0.14"} +{"timestamp":"2026-03-15T12:42:13.741601626Z","score":0.779516586537929,"is_anomaly":false,"confidence":0.9069711649323684,"method":"SEAD","details":"MAD!:w=0.30,s=0.91 RRCF-fast:w=0.18,s=0.70 RRCF-mid:w=0.18,s=0.64 RRCF-slow:w=0.15,s=0.63 COPOD!:w=0.20,s=0.88"} +{"timestamp":"2026-03-15T12:42:43.685657561Z","score":0.3173418143326299,"is_anomaly":false,"confidence":0.3692286732541672,"method":"SEAD","details":"MAD!:w=0.30,s=0.16 RRCF-fast:w=0.18,s=0.44 RRCF-mid:w=0.18,s=0.22 RRCF-slow:w=0.15,s=0.39 COPOD!:w=0.20,s=0.46"} +{"timestamp":"2026-03-15T12:43:13.768776318Z","score":0.7128881595109522,"is_anomaly":false,"confidence":0.8305199556629836,"method":"SEAD","details":"MAD!:w=0.30,s=0.88 RRCF-fast:w=0.18,s=0.60 RRCF-mid:w=0.18,s=0.66 RRCF-slow:w=0.15,s=0.55 COPOD!:w=0.20,s=0.73"} +{"timestamp":"2026-03-15T12:43:43.741065655Z","score":0.31890605431490826,"is_anomaly":false,"confidence":0.37152790175666484,"method":"SEAD","details":"MAD:w=0.30,s=0.12 RRCF-fast:w=0.18,s=0.47 RRCF-mid:w=0.18,s=0.32 RRCF-slow:w=0.15,s=0.35 COPOD!:w=0.20,s=0.45"} +{"timestamp":"2026-03-15T12:44:13.692873362Z","score":0.17782924907475922,"is_anomaly":false,"confidence":0.20717238473769561,"method":"SEAD","details":"MAD:w=0.30,s=0.13 RRCF-fast:w=0.18,s=0.12 RRCF-mid:w=0.18,s=0.13 RRCF-slow:w=0.15,s=0.20 COPOD!:w=0.20,s=0.33"} +{"timestamp":"2026-03-15T12:44:43.737997208Z","score":0.4032839215384484,"is_anomaly":false,"confidence":0.4698287384454176,"method":"SEAD","details":"MAD!:w=0.30,s=0.25 RRCF-fast:w=0.18,s=0.45 RRCF-mid:w=0.18,s=0.41 RRCF-slow:w=0.15,s=0.41 COPOD!:w=0.20,s=0.58"} +{"timestamp":"2026-03-15T12:45:13.696504816Z","score":0.22528698088684695,"is_anomaly":false,"confidence":0.26246099178579085,"method":"SEAD","details":"MAD!:w=0.30,s=0.22 RRCF-fast:w=0.18,s=0.44 RRCF-mid:w=0.18,s=0.11 RRCF-slow:w=0.15,s=0.31 COPOD!:w=0.20,s=0.07"} +{"timestamp":"2026-03-15T12:45:43.730047868Z","score":0.7723674649543033,"is_anomaly":false,"confidence":0.8998137845204653,"method":"SEAD","details":"MAD!:w=0.30,s=0.97 RRCF-fast:w=0.18,s=0.73 RRCF-mid:w=0.18,s=0.50 RRCF-slow:w=0.15,s=0.47 COPOD!:w=0.20,s=0.98"} +{"timestamp":"2026-03-15T12:46:13.738002734Z","score":0.3540098344005669,"is_anomaly":false,"confidence":0.41242406406681525,"method":"SEAD","details":"MAD:w=0.30,s=0.13 RRCF-fast:w=0.18,s=0.41 RRCF-mid:w=0.18,s=0.46 RRCF-slow:w=0.15,s=0.51 COPOD!:w=0.20,s=0.42"} +{"timestamp":"2026-03-15T12:46:43.697026808Z","score":0.16741789781434574,"is_anomaly":false,"confidence":0.19522420522347908,"method":"SEAD","details":"MAD:w=0.30,s=0.03 RRCF-fast:w=0.18,s=0.14 RRCF-mid:w=0.18,s=0.10 RRCF-slow:w=0.15,s=0.17 COPOD!:w=0.20,s=0.47"} +{"timestamp":"2026-03-15T12:47:13.741565413Z","score":0.11365138425724877,"is_anomaly":false,"confidence":0.13252765357724142,"method":"SEAD","details":"MAD:w=0.30,s=0.03 RRCF-fast:w=0.18,s=0.16 RRCF-mid:w=0.18,s=0.20 RRCF-slow:w=0.15,s=0.24 COPOD!:w=0.19,s=0.02"} +{"timestamp":"2026-03-15T12:47:43.694022019Z","score":0.1032530255006159,"is_anomaly":false,"confidence":0.12040223956599039,"method":"SEAD","details":"MAD:w=0.30,s=0.03 RRCF-fast:w=0.18,s=0.23 RRCF-mid:w=0.18,s=0.10 RRCF-slow:w=0.15,s=0.21 COPOD!:w=0.19,s=0.02"} +{"timestamp":"2026-03-15T12:48:13.746490593Z","score":0.8785220704265251,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.30,s=0.99 RRCF-fast!:w=0.18,s=0.96 RRCF-mid:w=0.18,s=0.58 RRCF-slow:w=0.15,s=0.76 COPOD!:w=0.19,s=1.00"} +{"timestamp":"2026-03-15T12:48:43.692769257Z","score":0.46251703885788104,"is_anomaly":false,"confidence":0.538835756325562,"method":"SEAD","details":"MAD!:w=0.30,s=0.21 RRCF-fast!:w=0.18,s=0.98 RRCF-mid:w=0.18,s=0.52 RRCF-slow:w=0.15,s=0.30 COPOD!:w=0.19,s=0.45"} +{"timestamp":"2026-03-15T12:49:13.693727917Z","score":0.2937395470436934,"is_anomaly":false,"confidence":0.34220873545515135,"method":"SEAD","details":"MAD!:w=0.30,s=0.16 RRCF-fast:w=0.18,s=0.65 RRCF-mid:w=0.18,s=0.25 RRCF-slow:w=0.15,s=0.23 COPOD!:w=0.19,s=0.25"} +{"timestamp":"2026-03-15T12:49:45.642818817Z","score":0.2373225445637869,"is_anomaly":false,"confidence":0.2767392599532985,"method":"SEAD","details":"MAD!:w=0.30,s=0.16 RRCF-fast:w=0.18,s=0.61 RRCF-mid:w=0.18,s=0.14 RRCF-slow:w=0.15,s=0.22 COPOD!:w=0.19,s=0.11"} +{"timestamp":"2026-03-15T12:50:13.695794947Z","score":0.19312170961956693,"is_anomaly":false,"confidence":0.22519714298221732,"method":"SEAD","details":"MAD!:w=0.30,s=0.16 RRCF-fast:w=0.18,s=0.43 RRCF-mid:w=0.18,s=0.14 RRCF-slow:w=0.15,s=0.21 COPOD!:w=0.19,s=0.05"} +{"timestamp":"2026-03-15T12:50:43.738923279Z","score":0.6991449080850956,"is_anomaly":false,"confidence":0.8152653378094175,"method":"SEAD","details":"MAD!:w=0.30,s=0.60 RRCF-fast:w=0.18,s=0.79 RRCF-mid!:w=0.18,s=0.70 RRCF-slow:w=0.15,s=0.68 COPOD!:w=0.20,s=0.79"} +{"timestamp":"2026-03-15T12:51:13.695797293Z","score":0.3508370086703136,"is_anomaly":false,"confidence":0.40910725241931606,"method":"SEAD","details":"MAD!:w=0.30,s=0.28 RRCF-fast:w=0.18,s=0.65 RRCF-mid:w=0.18,s=0.37 RRCF-slow:w=0.15,s=0.29 COPOD!:w=0.19,s=0.22"} +{"timestamp":"2026-03-15T12:51:43.739666439Z","score":0.7986091387719002,"is_anomaly":false,"confidence":0.9312495046010061,"method":"SEAD","details":"MAD!:w=0.30,s=0.99 RRCF-fast:w=0.18,s=0.80 RRCF-mid:w=0.18,s=0.50 RRCF-slow:w=0.15,s=0.54 COPOD!:w=0.20,s=0.97"} +{"timestamp":"2026-03-15T12:52:15.543934599Z","score":0.40580455134961047,"is_anomaly":false,"confidence":0.47320431117317335,"method":"SEAD","details":"MAD!:w=0.30,s=0.17 RRCF-fast:w=0.18,s=0.57 RRCF-mid:w=0.18,s=0.27 RRCF-slow:w=0.15,s=0.34 COPOD!:w=0.19,s=0.80"} +{"timestamp":"2026-03-15T12:52:43.73097119Z","score":0.8097790081454772,"is_anomaly":false,"confidence":0.9442745688227825,"method":"SEAD","details":"MAD!:w=0.31,s=0.91 RRCF-fast:w=0.17,s=0.80 RRCF-mid!:w=0.18,s=0.80 RRCF-slow:w=0.15,s=0.72 COPOD!:w=0.19,s=0.73"} +{"timestamp":"2026-03-15T12:53:13.74515851Z","score":0.35421013456437694,"is_anomaly":false,"confidence":0.41376618243857327,"method":"SEAD","details":"MAD:w=0.30,s=0.03 RRCF-fast:w=0.17,s=0.63 RRCF-mid:w=0.18,s=0.49 RRCF-slow:w=0.15,s=0.30 COPOD!:w=0.19,s=0.52"} +{"timestamp":"2026-03-15T12:53:43.693142782Z","score":0.2556636471610449,"is_anomaly":false,"confidence":0.29865032349863985,"method":"SEAD","details":"MAD:w=0.31,s=0.03 RRCF-fast:w=0.17,s=0.42 RRCF-mid:w=0.18,s=0.39 RRCF-slow:w=0.15,s=0.30 COPOD!:w=0.19,s=0.30"} +{"timestamp":"2026-03-15T12:54:13.741788103Z","score":0.817167060637628,"is_anomaly":false,"confidence":0.9545635827456246,"method":"SEAD","details":"MAD!:w=0.31,s=0.89 RRCF-fast!:w=0.17,s=0.85 RRCF-mid!:w=0.18,s=0.77 RRCF-slow:w=0.15,s=0.69 COPOD!:w=0.19,s=0.81"} +{"timestamp":"2026-03-15T12:54:43.693554652Z","score":0.4577161702967111,"is_anomaly":false,"confidence":0.5346754763439815,"method":"SEAD","details":"MAD!:w=0.31,s=0.27 RRCF-fast:w=0.17,s=0.65 RRCF-mid:w=0.18,s=0.58 RRCF-slow:w=0.15,s=0.34 COPOD!:w=0.19,s=0.56"} +{"timestamp":"2026-03-15T12:55:16.307876352Z","score":0.7712340665255337,"is_anomaly":false,"confidence":0.9009075244707575,"method":"SEAD","details":"MAD!:w=0.31,s=0.95 RRCF-fast!:w=0.17,s=0.85 RRCF-mid:w=0.18,s=0.54 RRCF-slow:w=0.15,s=0.42 COPOD!:w=0.19,s=0.89"} +{"timestamp":"2026-03-15T12:55:43.739940484Z","score":0.33376966589834817,"is_anomaly":false,"confidence":0.3898889020846401,"method":"SEAD","details":"MAD:w=0.31,s=0.13 RRCF-fast:w=0.17,s=0.47 RRCF-mid:w=0.18,s=0.40 RRCF-slow:w=0.15,s=0.25 COPOD!:w=0.19,s=0.55"} +{"timestamp":"2026-03-15T12:56:13.694085867Z","score":0.912750105102065,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.31,s=1.00 RRCF-fast!:w=0.17,s=0.97 RRCF-mid!:w=0.18,s=0.99 RRCF-slow!:w=0.15,s=1.00 COPOD!:w=0.19,s=0.58"} +{"timestamp":"2026-03-15T12:56:43.73857806Z","score":0.7652236049181597,"is_anomaly":false,"confidence":0.8938864781728154,"method":"SEAD","details":"MAD!:w=0.31,s=0.82 RRCF-fast!:w=0.17,s=0.83 RRCF-mid:w=0.18,s=0.69 RRCF-slow!:w=0.15,s=0.86 COPOD!:w=0.19,s=0.61"} +{"timestamp":"2026-03-15T12:57:13.728314642Z","score":0.763065524192788,"is_anomaly":false,"confidence":0.8913655428974047,"method":"SEAD","details":"MAD!:w=0.31,s=0.68 RRCF-fast:w=0.17,s=0.81 RRCF-mid!:w=0.18,s=0.88 RRCF-slow!:w=0.15,s=0.95 COPOD!:w=0.19,s=0.61"} +{"timestamp":"2026-03-15T12:57:43.738034785Z","score":0.8012637784552419,"is_anomaly":false,"confidence":0.9359863605976982,"method":"SEAD","details":"MAD!:w=0.31,s=0.63 RRCF-fast!:w=0.17,s=0.83 RRCF-mid!:w=0.18,s=0.94 RRCF-slow!:w=0.15,s=0.96 COPOD!:w=0.19,s=0.79"} +{"timestamp":"2026-03-15T12:58:13.73970411Z","score":0.5247298317198847,"is_anomaly":false,"confidence":0.6129566550922935,"method":"SEAD","details":"MAD!:w=0.31,s=0.30 RRCF-fast:w=0.17,s=0.68 RRCF-mid:w=0.18,s=0.59 RRCF-slow:w=0.15,s=0.73 COPOD!:w=0.19,s=0.54"} +{"timestamp":"2026-03-15T12:58:43.695425944Z","score":0.529542319151152,"is_anomaly":false,"confidence":0.618578302691163,"method":"SEAD","details":"MAD!:w=0.31,s=0.27 RRCF-fast:w=0.17,s=0.61 RRCF-mid:w=0.18,s=0.51 RRCF-slow:w=0.15,s=0.55 COPOD!:w=0.19,s=0.88"} +{"timestamp":"2026-03-15T12:59:13.735428945Z","score":0.7085929745576962,"is_anomaly":false,"confidence":0.8277341085853206,"method":"SEAD","details":"MAD!:w=0.31,s=0.82 RRCF-fast:w=0.17,s=0.67 RRCF-mid:w=0.18,s=0.55 RRCF-slow!:w=0.15,s=0.76 COPOD!:w=0.19,s=0.68"} +{"timestamp":"2026-03-15T12:59:43.739757283Z","score":0.7525813878161962,"is_anomaly":false,"confidence":0.8836838445206137,"method":"SEAD","details":"MAD!:w=0.31,s=0.67 RRCF-fast!:w=0.17,s=0.86 RRCF-mid:w=0.18,s=0.68 RRCF-slow!:w=0.15,s=0.93 COPOD!:w=0.19,s=0.72"} +{"timestamp":"2026-03-15T13:00:14.474381047Z","score":0.7718626866946481,"is_anomaly":false,"confidence":0.9063240168609143,"method":"SEAD","details":"MAD!:w=0.31,s=0.66 RRCF-fast:w=0.17,s=0.77 RRCF-mid!:w=0.18,s=0.87 RRCF-slow!:w=0.15,s=0.91 COPOD!:w=0.19,s=0.75"} +{"timestamp":"2026-03-15T13:00:43.739674537Z","score":0.5680556882903561,"is_anomaly":false,"confidence":0.667013086766404,"method":"SEAD","details":"MAD!:w=0.32,s=0.37 RRCF-fast:w=0.17,s=0.69 RRCF-mid:w=0.18,s=0.64 RRCF-slow:w=0.15,s=0.74 COPOD!:w=0.19,s=0.59"} +{"timestamp":"2026-03-15T13:01:13.695415797Z","score":0.44209112155109725,"is_anomaly":false,"confidence":0.5191050273702982,"method":"SEAD","details":"MAD!:w=0.32,s=0.26 RRCF-fast:w=0.17,s=0.28 RRCF-mid:w=0.18,s=0.57 RRCF-slow:w=0.15,s=0.61 COPOD!:w=0.19,s=0.64"} +{"timestamp":"2026-03-15T13:01:43.696069033Z","score":0.3371507924067606,"is_anomaly":false,"confidence":0.39588370539126655,"method":"SEAD","details":"MAD!:w=0.32,s=0.26 RRCF-fast:w=0.17,s=0.25 RRCF-mid:w=0.18,s=0.45 RRCF-slow:w=0.15,s=0.46 COPOD!:w=0.19,s=0.35"} +{"timestamp":"2026-03-15T13:02:13.736019234Z","score":0.6847363774069428,"is_anomaly":false,"confidence":0.8040199827767558,"method":"SEAD","details":"MAD!:w=0.32,s=0.65 RRCF-fast:w=0.17,s=0.53 RRCF-mid!:w=0.18,s=0.71 RRCF-slow!:w=0.14,s=0.89 COPOD!:w=0.19,s=0.71"} +{"timestamp":"2026-03-15T13:02:43.72842102Z","score":0.6803364890669354,"is_anomaly":false,"confidence":0.7988536176410973,"method":"SEAD","details":"MAD!:w=0.32,s=0.66 RRCF-fast:w=0.17,s=0.70 RRCF-mid:w=0.18,s=0.62 RRCF-slow!:w=0.14,s=0.89 COPOD!:w=0.19,s=0.59"} +{"timestamp":"2026-03-15T13:03:13.743674812Z","score":0.6461352965834025,"is_anomaly":false,"confidence":0.7612653529602683,"method":"SEAD","details":"MAD!:w=0.32,s=0.56 RRCF-fast:w=0.17,s=0.68 RRCF-mid!:w=0.18,s=0.75 RRCF-slow:w=0.14,s=0.84 COPOD!:w=0.19,s=0.52"} +{"timestamp":"2026-03-15T13:03:43.737731575Z","score":0.39700678473338147,"is_anomaly":false,"confidence":0.46774647926801144,"method":"SEAD","details":"MAD!:w=0.32,s=0.26 RRCF-fast:w=0.17,s=0.12 RRCF-mid:w=0.18,s=0.44 RRCF-slow:w=0.14,s=0.41 COPOD!:w=0.19,s=0.83"} +{"timestamp":"2026-03-15T13:04:13.69452933Z","score":0.3333545828918474,"is_anomaly":false,"confidence":0.39275256366269207,"method":"SEAD","details":"MAD!:w=0.32,s=0.26 RRCF-fast:w=0.17,s=0.07 RRCF-mid:w=0.18,s=0.24 RRCF-slow:w=0.14,s=0.37 COPOD!:w=0.19,s=0.76"} +{"timestamp":"2026-03-15T13:04:43.731717841Z","score":0.7742146151989032,"is_anomaly":false,"confidence":0.9121661754479224,"method":"SEAD","details":"MAD!:w=0.32,s=0.71 RRCF-fast!:w=0.17,s=0.82 RRCF-mid!:w=0.18,s=0.91 RRCF-slow:w=0.14,s=0.76 COPOD!:w=0.19,s=0.73"} +{"timestamp":"2026-03-15T13:05:13.751124803Z","score":0.6980136668379346,"is_anomaly":false,"confidence":0.8223875452497932,"method":"SEAD","details":"MAD!:w=0.32,s=0.63 RRCF-fast:w=0.17,s=0.70 RRCF-mid!:w=0.18,s=0.77 RRCF-slow!:w=0.14,s=0.91 COPOD!:w=0.19,s=0.60"} +{"timestamp":"2026-03-15T13:05:43.73933013Z","score":0.5693638424707939,"is_anomaly":false,"confidence":0.6708145628218221,"method":"SEAD","details":"MAD!:w=0.32,s=0.64 RRCF-fast:w=0.17,s=0.52 RRCF-mid:w=0.17,s=0.51 RRCF-slow:w=0.14,s=0.77 COPOD!:w=0.19,s=0.39"} +{"timestamp":"2026-03-15T13:06:13.752270872Z","score":0.31887398229356867,"is_anomaly":false,"confidence":0.3756917722405005,"method":"SEAD","details":"MAD!:w=0.32,s=0.24 RRCF-fast:w=0.17,s=0.12 RRCF-mid:w=0.18,s=0.36 RRCF-slow:w=0.14,s=0.40 COPOD!:w=0.19,s=0.54"} +{"timestamp":"2026-03-15T13:06:43.697394701Z","score":0.2419939169045557,"is_anomaly":false,"confidence":0.2917590730113957,"method":"SEAD","details":"MAD!:w=0.32,s=0.25 RRCF-fast:w=0.17,s=0.17 RRCF-mid:w=0.17,s=0.30 RRCF-slow:w=0.14,s=0.37 COPOD!:w=0.19,s=0.14"} +{"timestamp":"2026-03-15T13:07:13.743009285Z","score":0.24838315649845266,"is_anomaly":false,"confidence":0.29946223615288203,"method":"SEAD","details":"MAD!:w=0.32,s=0.27 RRCF-fast:w=0.17,s=0.06 RRCF-mid:w=0.17,s=0.20 RRCF-slow:w=0.14,s=0.24 COPOD!:w=0.19,s=0.44"} +{"timestamp":"2026-03-15T13:07:43.694630356Z","score":0.2966430171469381,"is_anomaly":false,"confidence":0.35764655907540654,"method":"SEAD","details":"MAD!:w=0.32,s=0.29 RRCF-fast:w=0.17,s=0.05 RRCF-mid:w=0.17,s=0.14 RRCF-slow:w=0.14,s=0.26 COPOD!:w=0.19,s=0.71"} +{"timestamp":"2026-03-15T13:08:13.739550112Z","score":0.7884778979727411,"is_anomaly":false,"confidence":0.9506254683799864,"method":"SEAD","details":"MAD!:w=0.32,s=0.99 RRCF-fast:w=0.17,s=0.77 RRCF-mid:w=0.18,s=0.52 RRCF-slow:w=0.14,s=0.44 COPOD!:w=0.19,s=0.97"} +{"timestamp":"2026-03-15T13:08:43.695880047Z","score":0.3974826584383494,"is_anomaly":false,"confidence":0.47922350052219365,"method":"SEAD","details":"MAD:w=0.32,s=0.12 RRCF-fast:w=0.17,s=0.77 RRCF-mid:w=0.18,s=0.28 RRCF-slow:w=0.14,s=0.25 COPOD!:w=0.19,s=0.76"} +{"timestamp":"2026-03-15T13:09:13.685413383Z","score":0.2914895788098125,"is_anomaly":false,"confidence":0.3514333351593105,"method":"SEAD","details":"MAD:w=0.32,s=0.00 RRCF-fast:w=0.17,s=0.58 RRCF-mid:w=0.18,s=0.28 RRCF-slow:w=0.14,s=0.26 COPOD!:w=0.18,s=0.56"} +{"timestamp":"2026-03-15T13:09:43.729792873Z","score":0.21242000698462277,"is_anomaly":false,"confidence":0.25619414246899785,"method":"SEAD","details":"MAD:w=0.33,s=0.02 RRCF-fast:w=0.17,s=0.36 RRCF-mid:w=0.18,s=0.10 RRCF-slow:w=0.14,s=0.21 COPOD!:w=0.18,s=0.53"} +{"timestamp":"2026-03-15T13:10:13.695263308Z","score":0.11927058860027187,"is_anomaly":false,"confidence":0.14384909689995107,"method":"SEAD","details":"MAD:w=0.33,s=0.00 RRCF-fast:w=0.17,s=0.27 RRCF-mid:w=0.18,s=0.12 RRCF-slow:w=0.14,s=0.21 COPOD!:w=0.18,s=0.11"} +{"timestamp":"2026-03-15T13:10:44.663408333Z","score":0.8383827693132888,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.33,s=0.94 RRCF-fast!:w=0.17,s=0.99 RRCF-mid:w=0.18,s=0.42 RRCF-slow:w=0.14,s=0.79 COPOD!:w=0.18,s=0.95"} +{"timestamp":"2026-03-15T13:11:13.696265438Z","score":0.43923402945396794,"is_anomaly":false,"confidence":0.5295608869337542,"method":"SEAD","details":"MAD!:w=0.33,s=0.21 RRCF-fast!:w=0.17,s=0.98 RRCF-mid:w=0.18,s=0.35 RRCF-slow:w=0.14,s=0.50 COPOD!:w=0.18,s=0.38"} +{"timestamp":"2026-03-15T13:11:43.736279456Z","score":0.8849312117073268,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.33,s=0.95 RRCF-fast!:w=0.17,s=0.97 RRCF-mid:w=0.18,s=0.71 RRCF-slow:w=0.14,s=0.76 COPOD!:w=0.18,s=0.95"} +{"timestamp":"2026-03-15T13:12:13.738137568Z","score":0.4002283016055897,"is_anomaly":false,"confidence":0.4773813540245022,"method":"SEAD","details":"MAD:w=0.33,s=0.13 RRCF-fast!:w=0.17,s=0.93 RRCF-mid:w=0.18,s=0.27 RRCF-slow:w=0.14,s=0.24 COPOD!:w=0.18,s=0.65"} +{"timestamp":"2026-03-15T13:12:43.687184449Z","score":0.3111833899211177,"is_anomaly":false,"confidence":0.3711710227251033,"method":"SEAD","details":"MAD!:w=0.33,s=0.22 RRCF-fast:w=0.17,s=0.82 RRCF-mid:w=0.18,s=0.23 RRCF-slow:w=0.14,s=0.23 COPOD!:w=0.18,s=0.16"} +{"timestamp":"2026-03-15T13:13:13.740535803Z","score":0.2965725602325329,"is_anomaly":false,"confidence":0.3575616129565246,"method":"SEAD","details":"MAD:w=0.33,s=0.09 RRCF-fast:w=0.16,s=0.52 RRCF-mid:w=0.18,s=0.22 RRCF-slow:w=0.14,s=0.14 COPOD!:w=0.18,s=0.66"} +{"timestamp":"2026-03-15T13:13:43.696734531Z","score":0.14326564903872935,"is_anomaly":false,"confidence":0.17272770114465935,"method":"SEAD","details":"MAD:w=0.33,s=0.09 RRCF-fast:w=0.16,s=0.38 RRCF-mid:w=0.18,s=0.07 RRCF-slow:w=0.14,s=0.15 COPOD!:w=0.18,s=0.09"} +{"timestamp":"2026-03-15T13:14:13.741541916Z","score":0.8031545620512188,"is_anomaly":false,"confidence":0.9683203342725253,"method":"SEAD","details":"MAD!:w=0.33,s=0.86 RRCF-fast:w=0.16,s=0.82 RRCF-mid:w=0.18,s=0.76 RRCF-slow:w=0.14,s=0.60 COPOD!:w=0.18,s=0.89"} +{"timestamp":"2026-03-15T13:14:43.696736577Z","score":0.36316297847031187,"is_anomaly":false,"confidence":0.4378461050008359,"method":"SEAD","details":"MAD!:w=0.33,s=0.27 RRCF-fast:w=0.16,s=0.58 RRCF-mid:w=0.18,s=0.23 RRCF-slow:w=0.14,s=0.29 COPOD!:w=0.18,s=0.54"} +{"timestamp":"2026-03-15T13:15:13.728917046Z","score":0.8026195669464128,"is_anomaly":false,"confidence":0.9676753193984307,"method":"SEAD","details":"MAD!:w=0.33,s=0.92 RRCF-fast:w=0.16,s=0.79 RRCF-mid!:w=0.18,s=0.78 RRCF-slow:w=0.14,s=0.50 COPOD!:w=0.18,s=0.85"} +{"timestamp":"2026-03-15T13:15:43.753723875Z","score":0.39361971760180803,"is_anomaly":false,"confidence":0.47456616015602365,"method":"SEAD","details":"MAD!:w=0.33,s=0.19 RRCF-fast:w=0.16,s=0.67 RRCF-mid:w=0.18,s=0.39 RRCF-slow:w=0.14,s=0.23 COPOD!:w=0.18,s=0.65"} +{"timestamp":"2026-03-15T13:16:13.695213965Z","score":0.8601299732081242,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.34,s=1.00 RRCF-fast!:w=0.16,s=1.00 RRCF-mid!:w=0.18,s=0.99 RRCF-slow!:w=0.14,s=0.99 COPOD!:w=0.18,s=0.24"} +{"timestamp":"2026-03-15T13:16:43.741344389Z","score":0.6509180724014008,"is_anomaly":false,"confidence":0.784776972245545,"method":"SEAD","details":"MAD!:w=0.33,s=0.81 RRCF-fast:w=0.16,s=0.70 RRCF-mid:w=0.18,s=0.51 RRCF-slow:w=0.14,s=0.67 COPOD!:w=0.18,s=0.43"} +{"timestamp":"2026-03-15T13:17:13.738733447Z","score":0.8567854144356618,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.33,s=0.81 RRCF-fast!:w=0.16,s=0.92 RRCF-mid!:w=0.18,s=0.92 RRCF-slow!:w=0.14,s=0.95 COPOD!:w=0.18,s=0.75"} +{"timestamp":"2026-03-15T13:17:43.732757307Z","score":0.8905478537240625,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.33,s=0.93 RRCF-fast:w=0.16,s=0.90 RRCF-mid!:w=0.18,s=0.88 RRCF-slow!:w=0.14,s=0.98 COPOD!:w=0.18,s=0.75"} +{"timestamp":"2026-03-15T13:18:13.742352884Z","score":0.8282146945577267,"is_anomaly":false,"confidence":0.9757881284511833,"method":"SEAD","details":"MAD!:w=0.33,s=0.83 RRCF-fast:w=0.16,s=0.75 RRCF-mid:w=0.18,s=0.79 RRCF-slow!:w=0.14,s=0.93 COPOD!:w=0.18,s=0.84"} +{"timestamp":"2026-03-15T13:18:43.739829535Z","score":0.8666214869938696,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.33,s=0.93 RRCF-fast:w=0.16,s=0.70 RRCF-mid!:w=0.18,s=0.94 RRCF-slow!:w=0.14,s=0.97 COPOD!:w=0.18,s=0.75"} +{"timestamp":"2026-03-15T13:19:13.739870147Z","score":0.7838863691413493,"is_anomaly":false,"confidence":0.9204422691879184,"method":"SEAD","details":"MAD!:w=0.33,s=0.88 RRCF-fast:w=0.16,s=0.79 RRCF-mid:w=0.18,s=0.69 RRCF-slow!:w=0.14,s=0.96 COPOD!:w=0.18,s=0.55"} +{"timestamp":"2026-03-15T13:19:43.700154428Z","score":0.5179216888640721,"is_anomaly":false,"confidence":0.6102063133893404,"method":"SEAD","details":"MAD!:w=0.33,s=0.33 RRCF-fast:w=0.16,s=0.53 RRCF-mid:w=0.18,s=0.43 RRCF-slow:w=0.14,s=0.67 COPOD!:w=0.18,s=0.81"} +{"timestamp":"2026-03-15T13:20:13.69592811Z","score":0.43213708245046445,"is_anomaly":false,"confidence":0.5091363841882458,"method":"SEAD","details":"MAD!:w=0.33,s=0.32 RRCF-fast:w=0.16,s=0.57 RRCF-mid:w=0.18,s=0.57 RRCF-slow:w=0.14,s=0.84 COPOD!:w=0.18,s=0.04"} +{"timestamp":"2026-03-15T13:20:43.737455319Z","score":0.7658229649429033,"is_anomaly":false,"confidence":0.902279279270245,"method":"SEAD","details":"MAD!:w=0.33,s=0.92 RRCF-fast:w=0.16,s=0.48 RRCF-mid:w=0.18,s=0.72 RRCF-slow:w=0.14,s=0.85 COPOD!:w=0.18,s=0.71"} +{"timestamp":"2026-03-15T13:21:13.742623356Z","score":0.6993068582276509,"is_anomaly":false,"confidence":0.8239111608221711,"method":"SEAD","details":"MAD!:w=0.33,s=0.70 RRCF-fast:w=0.16,s=0.68 RRCF-mid:w=0.18,s=0.81 RRCF-slow:w=0.14,s=0.80 COPOD!:w=0.18,s=0.53"} +{"timestamp":"2026-03-15T13:21:43.741425765Z","score":0.9362363811903016,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.33,s=0.99 RRCF-fast!:w=0.16,s=0.92 RRCF-mid!:w=0.18,s=0.97 RRCF-slow!:w=0.14,s=0.98 COPOD!:w=0.18,s=0.78"} +{"timestamp":"2026-03-15T13:22:13.741124309Z","score":0.8715338635223293,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.33,s=0.82 RRCF-fast!:w=0.16,s=0.90 RRCF-mid!:w=0.18,s=0.94 RRCF-slow!:w=0.14,s=0.93 COPOD!:w=0.18,s=0.83"} +{"timestamp":"2026-03-15T13:22:43.738458193Z","score":0.6069815655032078,"is_anomaly":false,"confidence":0.7090379993721082,"method":"SEAD","details":"MAD!:w=0.33,s=0.71 RRCF-fast:w=0.16,s=0.65 RRCF-mid:w=0.18,s=0.53 RRCF-slow:w=0.14,s=0.77 COPOD!:w=0.18,s=0.32"} +{"timestamp":"2026-03-15T13:23:13.737349697Z","score":0.5152369716761445,"is_anomaly":false,"confidence":0.6049931546820739,"method":"SEAD","details":"MAD!:w=0.33,s=0.32 RRCF-fast:w=0.16,s=0.47 RRCF-mid:w=0.18,s=0.42 RRCF-slow:w=0.14,s=0.70 COPOD!:w=0.19,s=0.85"} +{"timestamp":"2026-03-15T13:23:43.697411075Z","score":0.4625401384816497,"is_anomaly":false,"confidence":0.5431163385592365,"method":"SEAD","details":"MAD!:w=0.33,s=0.33 RRCF-fast:w=0.16,s=0.26 RRCF-mid:w=0.18,s=0.43 RRCF-slow:w=0.14,s=0.66 COPOD!:w=0.18,s=0.77"} +{"timestamp":"2026-03-15T13:24:13.742855019Z","score":0.6963948513088247,"is_anomaly":false,"confidence":0.817709405881881,"method":"SEAD","details":"MAD!:w=0.33,s=0.65 RRCF-fast:w=0.16,s=0.72 RRCF-mid:w=0.18,s=0.72 RRCF-slow:w=0.14,s=0.81 COPOD!:w=0.18,s=0.64"} +{"timestamp":"2026-03-15T13:24:43.750109426Z","score":0.6138143556163467,"is_anomaly":false,"confidence":0.720743082906897,"method":"SEAD","details":"MAD!:w=0.33,s=0.76 RRCF-fast:w=0.16,s=0.33 RRCF-mid:w=0.18,s=0.41 RRCF-slow:w=0.14,s=0.82 COPOD!:w=0.18,s=0.65"} +{"timestamp":"2026-03-15T13:25:13.73642756Z","score":0.7046064567959499,"is_anomaly":false,"confidence":0.8273515033666539,"method":"SEAD","details":"MAD!:w=0.33,s=0.77 RRCF-fast:w=0.16,s=0.40 RRCF-mid:w=0.18,s=0.74 RRCF-slow:w=0.14,s=0.76 COPOD!:w=0.18,s=0.78"} +{"timestamp":"2026-03-15T13:25:43.736828737Z","score":0.4599297831609849,"is_anomaly":false,"confidence":0.5400512497028358,"method":"SEAD","details":"MAD!:w=0.33,s=0.63 RRCF-fast:w=0.16,s=0.17 RRCF-mid:w=0.18,s=0.35 RRCF-slow:w=0.14,s=0.69 COPOD!:w=0.18,s=0.34"} +{"timestamp":"2026-03-15T13:26:13.728882486Z","score":0.9579206418455033,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.33,s=0.99 RRCF-fast!:w=0.17,s=0.96 RRCF-mid!:w=0.18,s=0.99 RRCF-slow!:w=0.14,s=0.99 COPOD!:w=0.18,s=0.84"} +{"timestamp":"2026-03-15T13:26:43.694932294Z","score":0.6840391834202336,"is_anomaly":false,"confidence":0.803201335023136,"method":"SEAD","details":"MAD!:w=0.33,s=0.32 RRCF-fast:w=0.17,s=0.79 RRCF-mid!:w=0.18,s=0.98 RRCF-slow!:w=0.14,s=0.98 COPOD!:w=0.18,s=0.73"} +{"timestamp":"2026-03-15T13:27:13.748574297Z","score":0.9014066133207281,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.33,s=0.90 RRCF-fast!:w=0.17,s=0.93 RRCF-mid:w=0.18,s=0.88 RRCF-slow!:w=0.14,s=0.95 COPOD!:w=0.18,s=0.87"} +{"timestamp":"2026-03-15T13:27:43.737288057Z","score":0.658204270732493,"is_anomaly":false,"confidence":0.7688731681850031,"method":"SEAD","details":"MAD!:w=0.33,s=0.33 RRCF-fast:w=0.17,s=0.86 RRCF-mid!:w=0.18,s=0.93 RRCF-slow!:w=0.14,s=0.95 COPOD!:w=0.18,s=0.60"} +{"timestamp":"2026-03-15T13:28:13.697271019Z","score":0.5398916003969991,"is_anomaly":false,"confidence":0.6306676874213422,"method":"SEAD","details":"MAD!:w=0.34,s=0.33 RRCF-fast:w=0.16,s=0.56 RRCF-mid:w=0.18,s=0.75 RRCF-slow:w=0.14,s=0.88 COPOD!:w=0.18,s=0.45"} +{"timestamp":"2026-03-15T13:28:43.742042219Z","score":0.9505942916496971,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.34,s=0.94 RRCF-fast!:w=0.16,s=0.97 RRCF-mid!:w=0.18,s=0.93 RRCF-slow!:w=0.14,s=0.94 COPOD!:w=0.18,s=0.97"} +{"timestamp":"2026-03-15T13:29:13.695084656Z","score":0.5752834360136874,"is_anomaly":false,"confidence":0.6714440119088732,"method":"SEAD","details":"MAD!:w=0.34,s=0.17 RRCF-fast!:w=0.16,s=0.97 RRCF-mid:w=0.18,s=0.72 RRCF-slow:w=0.14,s=0.80 COPOD!:w=0.18,s=0.67"} +{"timestamp":"2026-03-15T13:29:43.745314372Z","score":0.8555413589387278,"is_anomaly":false,"confidence":0.9993900441096749,"method":"SEAD","details":"MAD!:w=0.34,s=0.87 RRCF-fast:w=0.16,s=0.88 RRCF-mid:w=0.18,s=0.87 RRCF-slow:w=0.14,s=0.90 COPOD!:w=0.18,s=0.76"} +{"timestamp":"2026-03-15T13:30:13.740137708Z","score":0.4479233136042442,"is_anomaly":false,"confidence":0.5232360720655203,"method":"SEAD","details":"MAD!:w=0.34,s=0.19 RRCF-fast:w=0.16,s=0.83 RRCF-mid:w=0.18,s=0.58 RRCF-slow:w=0.14,s=0.64 COPOD!:w=0.18,s=0.32"} +{"timestamp":"2026-03-15T13:30:43.693145241Z","score":0.3787584354858042,"is_anomaly":false,"confidence":0.44244197617356645,"method":"SEAD","details":"MAD!:w=0.34,s=0.24 RRCF-fast:w=0.16,s=0.61 RRCF-mid:w=0.18,s=0.46 RRCF-slow:w=0.14,s=0.47 COPOD!:w=0.18,s=0.29"} +{"timestamp":"2026-03-15T13:31:13.738089075Z","score":0.8086937216280086,"is_anomaly":false,"confidence":0.9446655567085381,"method":"SEAD","details":"MAD!:w=0.35,s=0.87 RRCF-fast:w=0.16,s=0.70 RRCF-mid:w=0.18,s=0.82 RRCF-slow:w=0.14,s=0.77 COPOD!:w=0.18,s=0.80"} +{"timestamp":"2026-03-15T13:31:43.697602045Z","score":0.41723229118467253,"is_anomaly":false,"confidence":0.4873847342789815,"method":"SEAD","details":"MAD!:w=0.34,s=0.24 RRCF-fast:w=0.16,s=0.55 RRCF-mid:w=0.18,s=0.42 RRCF-slow:w=0.14,s=0.65 COPOD!:w=0.18,s=0.47"} +{"timestamp":"2026-03-15T13:32:13.759853121Z","score":0.9022011850342485,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.35,s=0.95 RRCF-fast!:w=0.16,s=0.93 RRCF-mid:w=0.18,s=0.82 RRCF-slow:w=0.14,s=0.85 COPOD!:w=0.18,s=0.90"} +{"timestamp":"2026-03-15T13:32:43.742603322Z","score":0.3435870485117392,"is_anomaly":false,"confidence":0.40101878804513663,"method":"SEAD","details":"MAD:w=0.35,s=0.13 RRCF-fast:w=0.16,s=0.47 RRCF-mid:w=0.18,s=0.53 RRCF-slow:w=0.14,s=0.61 COPOD!:w=0.18,s=0.26"} +{"timestamp":"2026-03-15T13:33:13.698159063Z","score":0.22310855913029617,"is_anomaly":false,"confidence":0.26062150055149064,"method":"SEAD","details":"MAD:w=0.35,s=0.00 RRCF-fast:w=0.16,s=0.30 RRCF-mid:w=0.18,s=0.33 RRCF-slow:w=0.13,s=0.50 COPOD!:w=0.18,s=0.28"} +{"timestamp":"2026-03-15T13:33:45.283026824Z","score":0.18712728492947792,"is_anomaly":false,"confidence":0.21859042065690262,"method":"SEAD","details":"MAD:w=0.35,s=0.00 RRCF-fast:w=0.16,s=0.16 RRCF-mid:w=0.17,s=0.37 RRCF-slow:w=0.13,s=0.38 COPOD!:w=0.18,s=0.25"} +{"timestamp":"2026-03-15T13:34:13.698493223Z","score":0.20123592537334317,"is_anomaly":false,"confidence":0.2350712542813725,"method":"SEAD","details":"MAD:w=0.35,s=0.00 RRCF-fast:w=0.16,s=0.09 RRCF-mid:w=0.17,s=0.32 RRCF-slow:w=0.13,s=0.44 COPOD!:w=0.18,s=0.40"} +{"timestamp":"2026-03-15T13:34:43.741412973Z","score":0.7101617284872878,"is_anomaly":false,"confidence":0.8295666290619887,"method":"SEAD","details":"MAD!:w=0.35,s=0.84 RRCF-fast:w=0.16,s=0.67 RRCF-mid:w=0.17,s=0.54 RRCF-slow:w=0.13,s=0.72 COPOD!:w=0.18,s=0.65"} +{"timestamp":"2026-03-15T13:35:13.698268679Z","score":0.3173494501052495,"is_anomaly":false,"confidence":0.3707078303406492,"method":"SEAD","details":"MAD!:w=0.35,s=0.26 RRCF-fast:w=0.16,s=0.14 RRCF-mid:w=0.17,s=0.60 RRCF-slow:w=0.13,s=0.55 COPOD!:w=0.18,s=0.16"} +{"timestamp":"2026-03-15T13:35:43.75255194Z","score":0.9508729274820724,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.35,s=0.97 RRCF-fast!:w=0.16,s=0.97 RRCF-mid!:w=0.17,s=0.93 RRCF-slow:w=0.13,s=0.88 COPOD!:w=0.18,s=0.98"} +{"timestamp":"2026-03-15T13:36:15.466633024Z","score":0.506117655670751,"is_anomaly":false,"confidence":0.5907169369872094,"method":"SEAD","details":"MAD!:w=0.35,s=0.22 RRCF-fast:w=0.16,s=0.92 RRCF-mid:w=0.17,s=0.78 RRCF-slow:w=0.13,s=0.52 COPOD!:w=0.18,s=0.42"} +{"timestamp":"2026-03-15T13:36:43.697446084Z","score":0.26108487902491384,"is_anomaly":false,"confidence":0.3049830683682526,"method":"SEAD","details":"MAD:w=0.36,s=0.03 RRCF-fast:w=0.16,s=0.67 RRCF-mid:w=0.17,s=0.33 RRCF-slow:w=0.13,s=0.61 COPOD!:w=0.18,s=0.03"} +{"timestamp":"2026-03-15T13:37:13.744422802Z","score":0.27117407103206104,"is_anomaly":false,"confidence":0.31676863307497993,"method":"SEAD","details":"MAD:w=0.36,s=0.00 RRCF-fast:w=0.16,s=0.53 RRCF-mid:w=0.17,s=0.32 RRCF-slow:w=0.13,s=0.48 COPOD!:w=0.18,s=0.39"} +{"timestamp":"2026-03-15T13:37:43.691163117Z","score":0.2891129699190124,"is_anomaly":false,"confidence":0.3377237356689076,"method":"SEAD","details":"MAD!:w=0.36,s=0.19 RRCF-fast:w=0.16,s=0.60 RRCF-mid:w=0.17,s=0.33 RRCF-slow:w=0.13,s=0.36 COPOD!:w=0.18,s=0.13"} +{"timestamp":"2026-03-15T13:38:13.740580908Z","score":0.3947642977136396,"is_anomaly":false,"confidence":0.46113902593131567,"method":"SEAD","details":"MAD!:w=0.36,s=0.34 RRCF-fast:w=0.16,s=0.31 RRCF-mid:w=0.17,s=0.49 RRCF-slow:w=0.13,s=0.43 COPOD!:w=0.18,s=0.45"} +{"timestamp":"2026-03-15T13:38:43.692824995Z","score":0.40007005869023743,"is_anomaly":false,"confidence":0.4673368849138611,"method":"SEAD","details":"MAD!:w=0.36,s=0.32 RRCF-fast:w=0.16,s=0.29 RRCF-mid:w=0.17,s=0.31 RRCF-slow:w=0.13,s=0.32 COPOD!:w=0.18,s=0.78"} +{"timestamp":"2026-03-15T13:39:13.748871179Z","score":0.9155335365334403,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.36,s=0.98 RRCF-fast:w=0.16,s=0.77 RRCF-mid!:w=0.17,s=0.93 RRCF-slow:w=0.13,s=0.77 COPOD!:w=0.18,s=1.00"} +{"timestamp":"2026-03-15T13:39:43.692917528Z","score":0.3850965194999397,"is_anomaly":false,"confidence":0.4498457305289551,"method":"SEAD","details":"MAD:w=0.36,s=0.15 RRCF-fast:w=0.16,s=0.46 RRCF-mid:w=0.17,s=0.58 RRCF-slow:w=0.13,s=0.34 COPOD!:w=0.18,s=0.64"} +{"timestamp":"2026-03-15T13:40:13.695437978Z","score":0.2464014855661315,"is_anomaly":false,"confidence":0.2878308441266854,"method":"SEAD","details":"MAD:w=0.36,s=0.06 RRCF-fast:w=0.16,s=0.44 RRCF-mid:w=0.17,s=0.30 RRCF-slow:w=0.13,s=0.26 COPOD!:w=0.18,s=0.39"} +{"timestamp":"2026-03-15T13:40:43.751868454Z","score":0.20329783450140185,"is_anomaly":false,"confidence":0.23747984789629356,"method":"SEAD","details":"MAD:w=0.37,s=0.07 RRCF-fast:w=0.16,s=0.23 RRCF-mid:w=0.17,s=0.10 RRCF-slow:w=0.13,s=0.25 COPOD!:w=0.18,s=0.52"} +{"timestamp":"2026-03-15T13:41:13.687626471Z","score":0.1456965997956693,"is_anomaly":false,"confidence":0.17019367886205453,"method":"SEAD","details":"MAD:w=0.37,s=0.08 RRCF-fast:w=0.15,s=0.17 RRCF-mid:w=0.17,s=0.14 RRCF-slow:w=0.13,s=0.29 COPOD!:w=0.18,s=0.16"} +{"timestamp":"2026-03-15T13:41:43.74291807Z","score":0.9078639730953709,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.37,s=0.97 RRCF-fast:w=0.15,s=0.72 RRCF-mid:w=0.17,s=0.83 RRCF-slow:w=0.13,s=0.93 COPOD!:w=0.18,s=0.99"} +{"timestamp":"2026-03-15T13:42:13.694923953Z","score":0.3507530611093752,"is_anomaly":false,"confidence":0.4093826239332114,"method":"SEAD","details":"MAD!:w=0.37,s=0.28 RRCF-fast:w=0.16,s=0.24 RRCF-mid:w=0.17,s=0.16 RRCF-slow:w=0.13,s=0.47 COPOD!:w=0.18,s=0.68"} +{"timestamp":"2026-03-15T13:42:43.714060364Z","score":0.19552872890568615,"is_anomaly":false,"confidence":0.22821201856531942,"method":"SEAD","details":"MAD!:w=0.37,s=0.28 RRCF-fast:w=0.16,s=0.21 RRCF-mid:w=0.17,s=0.19 RRCF-slow:w=0.13,s=0.18 COPOD!:w=0.18,s=0.02"} +{"timestamp":"2026-03-15T13:43:13.745397162Z","score":0.2991934849074438,"is_anomaly":false,"confidence":0.34949916442367124,"method":"SEAD","details":"MAD!:w=0.37,s=0.28 RRCF-fast:w=0.16,s=0.42 RRCF-mid:w=0.17,s=0.37 RRCF-slow:w=0.13,s=0.27 COPOD!:w=0.18,s=0.18"} +{"timestamp":"2026-03-15T13:43:43.696685404Z","score":0.3026195624552082,"is_anomaly":false,"confidence":0.3535012944853094,"method":"SEAD","details":"MAD!:w=0.37,s=0.28 RRCF-fast:w=0.16,s=0.46 RRCF-mid:w=0.17,s=0.09 RRCF-slow:w=0.13,s=0.29 COPOD!:w=0.18,s=0.43"} +{"timestamp":"2026-03-15T13:44:13.742491926Z","score":0.8344611361477092,"is_anomaly":false,"confidence":0.9747654428968343,"method":"SEAD","details":"MAD!:w=0.37,s=0.91 RRCF-fast:w=0.15,s=0.66 RRCF-mid:w=0.17,s=0.86 RRCF-slow:w=0.13,s=0.69 COPOD!:w=0.18,s=0.91"} +{"timestamp":"2026-03-15T13:44:43.697393241Z","score":0.36569061771619554,"is_anomaly":false,"confidence":0.42717696666732036,"method":"SEAD","details":"MAD!:w=0.37,s=0.22 RRCF-fast:w=0.16,s=0.24 RRCF-mid:w=0.17,s=0.40 RRCF-slow:w=0.13,s=0.33 COPOD!:w=0.18,s=0.78"} +{"timestamp":"2026-03-15T13:45:13.732816934Z","score":0.8016875206396582,"is_anomaly":false,"confidence":0.9364813497831426,"method":"SEAD","details":"MAD!:w=0.37,s=0.96 RRCF-fast:w=0.16,s=0.21 RRCF-mid:w=0.17,s=0.91 RRCF-slow:w=0.13,s=0.70 COPOD!:w=0.17,s=0.97"} +{"timestamp":"2026-03-15T13:45:43.729672687Z","score":0.27132746983313105,"is_anomaly":false,"confidence":0.31694782398488275,"method":"SEAD","details":"MAD!:w=0.37,s=0.23 RRCF-fast:w=0.16,s=0.12 RRCF-mid:w=0.17,s=0.15 RRCF-slow:w=0.13,s=0.22 COPOD!:w=0.17,s=0.65"} +{"timestamp":"2026-03-15T13:46:13.697710187Z","score":0.2552320007043944,"is_anomaly":false,"confidence":0.29814610103546535,"method":"SEAD","details":"MAD!:w=0.37,s=0.19 RRCF-fast:w=0.16,s=0.28 RRCF-mid:w=0.17,s=0.33 RRCF-slow:w=0.13,s=0.27 COPOD!:w=0.17,s=0.29"} +{"timestamp":"2026-03-15T13:46:43.744587474Z","score":0.1506472812923246,"is_anomaly":false,"confidence":0.17608415971753583,"method":"SEAD","details":"MAD:w=0.37,s=0.09 RRCF-fast:w=0.16,s=0.10 RRCF-mid:w=0.17,s=0.24 RRCF-slow:w=0.13,s=0.25 COPOD!:w=0.17,s=0.17"} +{"timestamp":"2026-03-15T13:47:13.698005686Z","score":0.16373857402340575,"is_anomaly":false,"confidence":0.19138592461096013,"method":"SEAD","details":"MAD:w=0.37,s=0.09 RRCF-fast:w=0.16,s=0.33 RRCF-mid:w=0.17,s=0.08 RRCF-slow:w=0.13,s=0.18 COPOD!:w=0.17,s=0.25"} +{"timestamp":"2026-03-15T13:47:43.747444035Z","score":0.7276499187406206,"is_anomaly":false,"confidence":0.8505140179818395,"method":"SEAD","details":"MAD!:w=0.37,s=0.86 RRCF-fast:w=0.16,s=0.73 RRCF-mid:w=0.17,s=0.52 RRCF-slow:w=0.13,s=0.68 COPOD!:w=0.17,s=0.68"} +{"timestamp":"2026-03-15T13:48:13.69618394Z","score":0.38929129938578605,"is_anomaly":false,"confidence":0.45502335488338014,"method":"SEAD","details":"MAD!:w=0.37,s=0.30 RRCF-fast:w=0.16,s=0.61 RRCF-mid:w=0.17,s=0.37 RRCF-slow:w=0.13,s=0.26 COPOD!:w=0.17,s=0.49"} +{"timestamp":"2026-03-15T13:48:43.734192098Z","score":0.8020486860829301,"is_anomaly":false,"confidence":0.937475059157685,"method":"SEAD","details":"MAD!:w=0.37,s=0.95 RRCF-fast:w=0.16,s=0.78 RRCF-mid:w=0.17,s=0.59 RRCF-slow:w=0.13,s=0.52 COPOD!:w=0.17,s=0.92"} +{"timestamp":"2026-03-15T13:49:13.692634938Z","score":0.3393550411181679,"is_anomaly":false,"confidence":0.39665533123860564,"method":"SEAD","details":"MAD:w=0.37,s=0.14 RRCF-fast:w=0.16,s=0.41 RRCF-mid:w=0.17,s=0.41 RRCF-slow:w=0.13,s=0.26 COPOD!:w=0.17,s=0.69"} +{"timestamp":"2026-03-15T13:49:43.730284709Z","score":0.6928954576150834,"is_anomaly":false,"confidence":0.8136004048849925,"method":"SEAD","details":"MAD!:w=0.37,s=0.85 RRCF-fast:w=0.16,s=0.89 RRCF-mid:w=0.17,s=0.53 RRCF-slow:w=0.13,s=0.57 COPOD!:w=0.17,s=0.44"} +{"timestamp":"2026-03-15T13:50:13.745456217Z","score":0.3232753832877907,"is_anomaly":false,"confidence":0.3795911487680853,"method":"SEAD","details":"MAD!:w=0.37,s=0.24 RRCF-fast:w=0.16,s=0.60 RRCF-mid:w=0.17,s=0.43 RRCF-slow:w=0.13,s=0.23 COPOD!:w=0.17,s=0.22"} +{"timestamp":"2026-03-15T13:50:43.695347368Z","score":0.22496081832650028,"is_anomaly":false,"confidence":0.2641498235587734,"method":"SEAD","details":"MAD!:w=0.37,s=0.26 RRCF-fast:w=0.16,s=0.30 RRCF-mid:w=0.17,s=0.24 RRCF-slow:w=0.13,s=0.23 COPOD!:w=0.17,s=0.07"} +{"timestamp":"2026-03-15T13:51:13.744674072Z","score":0.30795341122910935,"is_anomaly":false,"confidence":0.3616000325995842,"method":"SEAD","details":"MAD!:w=0.37,s=0.34 RRCF-fast:w=0.16,s=0.37 RRCF-mid:w=0.17,s=0.17 RRCF-slow:w=0.13,s=0.19 COPOD!:w=0.17,s=0.40"} +{"timestamp":"2026-03-15T13:51:43.699071979Z","score":0.3062695438473956,"is_anomaly":false,"confidence":0.3596228293022059,"method":"SEAD","details":"MAD!:w=0.37,s=0.34 RRCF-fast:w=0.16,s=0.10 RRCF-mid:w=0.17,s=0.15 RRCF-slow:w=0.13,s=0.17 COPOD!:w=0.17,s=0.67"} +{"timestamp":"2026-03-15T13:52:13.738405389Z","score":0.7998537776731285,"is_anomaly":false,"confidence":0.9391912592464394,"method":"SEAD","details":"MAD!:w=0.37,s=0.97 RRCF-fast:w=0.16,s=0.28 RRCF-mid:w=0.17,s=0.75 RRCF-slow:w=0.13,s=0.82 COPOD!:w=0.17,s=0.94"} +{"timestamp":"2026-03-15T13:52:43.698490158Z","score":0.29433554324108624,"is_anomaly":false,"confidence":0.345609881723345,"method":"SEAD","details":"MAD!:w=0.37,s=0.20 RRCF-fast:w=0.16,s=0.14 RRCF-mid:w=0.17,s=0.13 RRCF-slow:w=0.13,s=0.39 COPOD!:w=0.17,s=0.73"} +{"timestamp":"2026-03-15T13:53:13.696850753Z","score":0.2014973134603521,"is_anomaly":false,"confidence":0.23740062532265788,"method":"SEAD","details":"MAD:w=0.37,s=0.04 RRCF-fast:w=0.16,s=0.08 RRCF-mid:w=0.17,s=0.21 RRCF-slow:w=0.13,s=0.20 COPOD!:w=0.17,s=0.66"} +{"timestamp":"2026-03-15T13:53:43.746911742Z","score":0.15120715758961836,"is_anomaly":false,"confidence":0.1781496395588437,"method":"SEAD","details":"MAD:w=0.37,s=0.04 RRCF-fast:w=0.16,s=0.07 RRCF-mid:w=0.17,s=0.15 RRCF-slow:w=0.13,s=0.09 COPOD!:w=0.17,s=0.51"} +{"timestamp":"2026-03-15T13:54:13.697541064Z","score":0.13244876306895076,"is_anomaly":false,"confidence":0.15604882584188137,"method":"SEAD","details":"MAD:w=0.37,s=0.05 RRCF-fast:w=0.16,s=0.12 RRCF-mid:w=0.17,s=0.11 RRCF-slow:w=0.13,s=0.08 COPOD!:w=0.17,s=0.40"} +{"timestamp":"2026-03-15T13:54:43.762074854Z","score":0.7804715929984255,"is_anomaly":false,"confidence":0.9195380377160953,"method":"SEAD","details":"MAD!:w=0.37,s=0.92 RRCF-fast:w=0.16,s=0.55 RRCF-mid:w=0.17,s=0.61 RRCF-slow:w=0.13,s=0.78 COPOD!:w=0.17,s=0.86"} +{"timestamp":"2026-03-15T13:55:13.701710142Z","score":0.19368877401761744,"is_anomaly":false,"confidence":0.22820074014936695,"method":"SEAD","details":"MAD!:w=0.37,s=0.24 RRCF-fast:w=0.16,s=0.04 RRCF-mid:w=0.17,s=0.20 RRCF-slow:w=0.13,s=0.11 COPOD!:w=0.17,s=0.30"} +{"timestamp":"2026-03-15T13:55:43.744908821Z","score":0.8084685416691273,"is_anomaly":false,"confidence":0.9525235550285074,"method":"SEAD","details":"MAD!:w=0.37,s=0.91 RRCF-fast:w=0.16,s=0.84 RRCF-mid:w=0.17,s=0.65 RRCF-slow:w=0.13,s=0.64 COPOD!:w=0.17,s=0.85"} +{"timestamp":"2026-03-15T13:56:13.712870704Z","score":0.8001077391285005,"is_anomaly":false,"confidence":0.9426730030918206,"method":"SEAD","details":"MAD!:w=0.37,s=0.99 RRCF-fast!:w=0.16,s=0.91 RRCF-mid:w=0.17,s=0.87 RRCF-slow:w=0.13,s=0.66 COPOD!:w=0.17,s=0.33"} +{"timestamp":"2026-03-15T13:56:43.696213649Z","score":0.28244841562124395,"is_anomaly":false,"confidence":0.3368967325659552,"method":"SEAD","details":"MAD!:w=0.36,s=0.30 RRCF-fast:w=0.16,s=0.41 RRCF-mid:w=0.17,s=0.27 RRCF-slow:w=0.13,s=0.25 COPOD!:w=0.17,s=0.15"} +{"timestamp":"2026-03-15T13:57:13.752001278Z","score":0.6406057701273765,"is_anomaly":false,"confidence":0.76409701341082,"method":"SEAD","details":"MAD!:w=0.36,s=0.64 RRCF-fast:w=0.16,s=0.70 RRCF-mid:w=0.17,s=0.71 RRCF-slow:w=0.13,s=0.54 COPOD!:w=0.17,s=0.60"} +{"timestamp":"2026-03-15T13:57:43.697666084Z","score":0.3693892026848683,"is_anomaly":false,"confidence":0.44059732165945087,"method":"SEAD","details":"MAD:w=0.36,s=0.09 RRCF-fast:w=0.16,s=0.61 RRCF-mid:w=0.17,s=0.40 RRCF-slow:w=0.13,s=0.26 COPOD!:w=0.17,s=0.81"} +{"timestamp":"2026-03-15T13:58:13.732409373Z","score":0.7103194771535786,"is_anomaly":false,"confidence":0.8472496133662126,"method":"SEAD","details":"MAD!:w=0.37,s=0.62 RRCF-fast!:w=0.16,s=0.87 RRCF-mid:w=0.17,s=0.82 RRCF-slow:w=0.13,s=0.50 COPOD!:w=0.17,s=0.82"} +{"timestamp":"2026-03-15T13:58:43.74322502Z","score":0.469724959679298,"is_anomaly":false,"confidence":0.5602750639353492,"method":"SEAD","details":"MAD!:w=0.37,s=0.35 RRCF-fast:w=0.16,s=0.68 RRCF-mid:w=0.17,s=0.44 RRCF-slow:w=0.13,s=0.24 COPOD!:w=0.17,s=0.75"} +{"timestamp":"2026-03-15T13:59:13.699402633Z","score":0.2787869256799865,"is_anomaly":false,"confidence":0.33252940766940875,"method":"SEAD","details":"MAD!:w=0.37,s=0.35 RRCF-fast:w=0.16,s=0.44 RRCF-mid:w=0.17,s=0.30 RRCF-slow:w=0.13,s=0.15 COPOD!:w=0.17,s=0.05"} +{"timestamp":"2026-03-15T13:59:43.734372827Z","score":0.9588674161987929,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.37,s=0.98 RRCF-fast!:w=0.16,s=0.97 RRCF-mid!:w=0.17,s=0.98 RRCF-slow!:w=0.13,s=0.99 COPOD!:w=0.17,s=0.85"} +{"timestamp":"2026-03-15T14:00:13.739553563Z","score":0.47486242491262676,"is_anomaly":false,"confidence":0.5664028917263912,"method":"SEAD","details":"MAD!:w=0.37,s=0.78 RRCF-fast:w=0.16,s=0.30 RRCF-mid:w=0.17,s=0.39 RRCF-slow:w=0.13,s=0.24 COPOD!:w=0.17,s=0.24"} +{"timestamp":"2026-03-15T14:00:43.698936562Z","score":0.3761037014793575,"is_anomaly":false,"confidence":0.44860619187989803,"method":"SEAD","details":"MAD!:w=0.37,s=0.24 RRCF-fast:w=0.16,s=0.29 RRCF-mid:w=0.17,s=0.68 RRCF-slow:w=0.14,s=0.36 COPOD!:w=0.17,s=0.45"} +{"timestamp":"2026-03-15T14:01:13.746148212Z","score":0.8534276307574209,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.37,s=0.88 RRCF-fast!:w=0.16,s=0.93 RRCF-mid!:w=0.17,s=0.95 RRCF-slow!:w=0.14,s=0.73 COPOD!:w=0.17,s=0.74"} +{"timestamp":"2026-03-15T14:01:43.696333844Z","score":0.3785310214070301,"is_anomaly":false,"confidence":0.44597865670172054,"method":"SEAD","details":"MAD!:w=0.37,s=0.24 RRCF-fast:w=0.16,s=0.31 RRCF-mid:w=0.17,s=0.63 RRCF-slow:w=0.14,s=0.38 COPOD!:w=0.17,s=0.49"} +{"timestamp":"2026-03-15T14:02:13.760263931Z","score":0.5495368773167844,"is_anomaly":false,"confidence":0.6474547777955142,"method":"SEAD","details":"MAD!:w=0.37,s=0.39 RRCF-fast:w=0.16,s=0.75 RRCF-mid:w=0.17,s=0.79 RRCF-slow!:w=0.14,s=0.75 COPOD!:w=0.17,s=0.30"} +{"timestamp":"2026-03-15T14:02:43.735222107Z","score":0.5022312875487088,"is_anomaly":false,"confidence":0.5917201558328843,"method":"SEAD","details":"MAD!:w=0.37,s=0.42 RRCF-fast:w=0.16,s=0.53 RRCF-mid:w=0.17,s=0.67 RRCF-slow:w=0.14,s=0.55 COPOD!:w=0.17,s=0.43"} +{"timestamp":"2026-03-15T14:03:13.696593819Z","score":0.2929133323109242,"is_anomaly":false,"confidence":0.3493789985102469,"method":"SEAD","details":"MAD!:w=0.37,s=0.26 RRCF-fast:w=0.16,s=0.15 RRCF-mid:w=0.17,s=0.26 RRCF-slow:w=0.13,s=0.45 COPOD!:w=0.17,s=0.40"} +{"timestamp":"2026-03-15T14:03:43.765926397Z","score":0.7931528533575868,"is_anomaly":false,"confidence":0.9460509953076094,"method":"SEAD","details":"MAD!:w=0.37,s=0.80 RRCF-fast:w=0.16,s=0.72 RRCF-mid!:w=0.17,s=0.90 RRCF-slow:w=0.13,s=0.70 COPOD!:w=0.17,s=0.81"} +{"timestamp":"2026-03-15T14:04:13.746419331Z","score":0.35152770621832186,"is_anomaly":false,"confidence":0.4192926179843305,"method":"SEAD","details":"MAD!:w=0.37,s=0.31 RRCF-fast:w=0.16,s=0.27 RRCF-mid:w=0.17,s=0.43 RRCF-slow:w=0.13,s=0.37 COPOD!:w=0.17,s=0.41"} +{"timestamp":"2026-03-15T14:04:45.695789842Z","score":0.29595281137011276,"is_anomaly":false,"confidence":0.3530044058664574,"method":"SEAD","details":"MAD!:w=0.37,s=0.31 RRCF-fast:w=0.16,s=0.06 RRCF-mid:w=0.17,s=0.27 RRCF-slow:w=0.13,s=0.34 COPOD!:w=0.17,s=0.47"} +{"timestamp":"2026-03-15T14:05:13.73905736Z","score":0.8850652086223458,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.37,s=0.93 RRCF-fast!:w=0.16,s=0.85 RRCF-mid!:w=0.17,s=0.87 RRCF-slow!:w=0.13,s=0.94 COPOD!:w=0.17,s=0.79"} +{"timestamp":"2026-03-15T14:05:43.741034243Z","score":0.35616512089401464,"is_anomaly":false,"confidence":0.41962754225503096,"method":"SEAD","details":"MAD!:w=0.37,s=0.30 RRCF-fast:w=0.16,s=0.35 RRCF-mid:w=0.17,s=0.44 RRCF-slow:w=0.13,s=0.23 COPOD!:w=0.17,s=0.50"} +{"timestamp":"2026-03-15T14:06:13.696670115Z","score":0.24743950870377168,"is_anomaly":false,"confidence":0.29152891960202315,"method":"SEAD","details":"MAD!:w=0.37,s=0.26 RRCF-fast:w=0.16,s=0.14 RRCF-mid:w=0.17,s=0.31 RRCF-slow:w=0.13,s=0.31 COPOD!:w=0.17,s=0.21"} +{"timestamp":"2026-03-15T14:06:43.7408534Z","score":0.5750702205178133,"is_anomaly":false,"confidence":0.6859280051626631,"method":"SEAD","details":"MAD!:w=0.37,s=0.41 RRCF-fast!:w=0.16,s=0.86 RRCF-mid:w=0.17,s=0.80 RRCF-slow!:w=0.13,s=0.81 COPOD!:w=0.17,s=0.25"} +{"timestamp":"2026-03-15T14:07:13.699019609Z","score":0.2080824564811488,"is_anomaly":false,"confidence":0.24819505373611997,"method":"SEAD","details":"MAD!:w=0.37,s=0.26 RRCF-fast:w=0.16,s=0.10 RRCF-mid:w=0.17,s=0.30 RRCF-slow:w=0.13,s=0.30 COPOD!:w=0.17,s=0.03"} +{"timestamp":"2026-03-15T14:07:43.746660842Z","score":0.8402308046542771,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.37,s=0.80 RRCF-fast!:w=0.16,s=0.92 RRCF-mid!:w=0.17,s=0.90 RRCF-slow!:w=0.13,s=0.76 COPOD!:w=0.17,s=0.86"} +{"timestamp":"2026-03-15T14:08:13.700326529Z","score":0.373118799104566,"is_anomaly":false,"confidence":0.444067031389179,"method":"SEAD","details":"MAD!:w=0.37,s=0.38 RRCF-fast:w=0.16,s=0.42 RRCF-mid:w=0.17,s=0.57 RRCF-slow:w=0.13,s=0.27 COPOD!:w=0.17,s=0.20"} +{"timestamp":"2026-03-15T14:08:43.793778778Z","score":0.8444563682847854,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.37,s=0.89 RRCF-fast:w=0.16,s=0.73 RRCF-mid:w=0.17,s=0.78 RRCF-slow!:w=0.13,s=0.92 COPOD!:w=0.17,s=0.85"} +{"timestamp":"2026-03-15T14:09:13.742995223Z","score":0.3238748056443175,"is_anomaly":false,"confidence":0.3835305384719339,"method":"SEAD","details":"MAD:w=0.37,s=0.15 RRCF-fast:w=0.16,s=0.43 RRCF-mid:w=0.17,s=0.49 RRCF-slow:w=0.13,s=0.35 COPOD!:w=0.17,s=0.41"} +{"timestamp":"2026-03-15T14:09:43.696809647Z","score":0.2064509703858532,"is_anomaly":false,"confidence":0.24570745233602792,"method":"SEAD","details":"MAD:w=0.37,s=0.15 RRCF-fast:w=0.16,s=0.09 RRCF-mid:w=0.17,s=0.26 RRCF-slow:w=0.13,s=0.41 COPOD!:w=0.17,s=0.21"} +{"timestamp":"2026-03-15T14:10:13.73809099Z","score":0.16205710578771673,"is_anomaly":false,"confidence":0.19287213095501424,"method":"SEAD","details":"MAD:w=0.37,s=0.14 RRCF-fast:w=0.16,s=0.43 RRCF-mid:w=0.17,s=0.13 RRCF-slow:w=0.13,s=0.09 COPOD!:w=0.17,s=0.03"} +{"timestamp":"2026-03-15T14:10:43.702867352Z","score":0.22553599086796175,"is_anomaly":false,"confidence":0.26842147374108855,"method":"SEAD","details":"MAD:w=0.37,s=0.14 RRCF-fast:w=0.16,s=0.08 RRCF-mid:w=0.17,s=0.33 RRCF-slow:w=0.13,s=0.35 COPOD!:w=0.17,s=0.33"} +{"timestamp":"2026-03-15T14:11:13.745267523Z","score":0.8567031068933946,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.37,s=0.93 RRCF-fast:w=0.16,s=0.60 RRCF-mid!:w=0.17,s=0.86 RRCF-slow!:w=0.13,s=0.81 COPOD!:w=0.17,s=0.96"} +{"timestamp":"2026-03-15T14:11:43.701020174Z","score":0.22136953939923637,"is_anomaly":false,"confidence":0.2621444371943933,"method":"SEAD","details":"MAD:w=0.37,s=0.17 RRCF-fast:w=0.16,s=0.11 RRCF-mid:w=0.17,s=0.32 RRCF-slow:w=0.13,s=0.34 COPOD!:w=0.17,s=0.24"} +{"timestamp":"2026-03-15T14:12:13.752909761Z","score":0.6837178152626446,"is_anomaly":false,"confidence":0.8096544012704595,"method":"SEAD","details":"MAD!:w=0.37,s=0.81 RRCF-fast:w=0.16,s=0.63 RRCF-mid:w=0.17,s=0.69 RRCF-slow:w=0.13,s=0.47 COPOD!:w=0.17,s=0.61"} +{"timestamp":"2026-03-15T14:12:43.743488927Z","score":0.1818890597557679,"is_anomaly":false,"confidence":0.21539189777822534,"method":"SEAD","details":"MAD:w=0.37,s=0.00 RRCF-fast:w=0.16,s=0.28 RRCF-mid:w=0.17,s=0.40 RRCF-slow:w=0.13,s=0.12 COPOD!:w=0.17,s=0.31"} +{"timestamp":"2026-03-15T14:13:13.697491648Z","score":0.15759614512685866,"is_anomaly":false,"confidence":0.1875629222993121,"method":"SEAD","details":"MAD!:w=0.37,s=0.21 RRCF-fast:w=0.16,s=0.17 RRCF-mid:w=0.17,s=0.25 RRCF-slow:w=0.13,s=0.04 COPOD!:w=0.17,s=0.02"} +{"timestamp":"2026-03-15T14:13:43.744661062Z","score":0.7073890412616126,"is_anomaly":false,"confidence":0.8418984847296526,"method":"SEAD","details":"MAD!:w=0.37,s=0.78 RRCF-fast:w=0.16,s=0.66 RRCF-mid:w=0.17,s=0.63 RRCF-slow:w=0.13,s=0.58 COPOD!:w=0.17,s=0.77"} +{"timestamp":"2026-03-15T14:14:13.699983809Z","score":0.33374125831827595,"is_anomaly":false,"confidence":0.39720188366052317,"method":"SEAD","details":"MAD!:w=0.37,s=0.36 RRCF-fast:w=0.16,s=0.25 RRCF-mid:w=0.17,s=0.44 RRCF-slow:w=0.13,s=0.17 COPOD!:w=0.17,s=0.38"} +{"timestamp":"2026-03-15T14:14:43.749989644Z","score":0.8369433636500404,"is_anomaly":false,"confidence":0.9960874547969122,"method":"SEAD","details":"MAD!:w=0.37,s=0.94 RRCF-fast:w=0.16,s=0.76 RRCF-mid:w=0.17,s=0.72 RRCF-slow:w=0.13,s=0.62 COPOD!:w=0.17,s=0.96"} +{"timestamp":"2026-03-15T14:15:13.740829169Z","score":0.19484645314163268,"is_anomaly":false,"confidence":0.23189634569730463,"method":"SEAD","details":"MAD:w=0.37,s=0.18 RRCF-fast:w=0.16,s=0.33 RRCF-mid:w=0.17,s=0.16 RRCF-slow:w=0.14,s=0.11 COPOD!:w=0.17,s=0.20"} +{"timestamp":"2026-03-15T14:15:43.698646228Z","score":0.36149530801901086,"is_anomaly":false,"confidence":0.43023334304882144,"method":"SEAD","details":"MAD!:w=0.37,s=0.44 RRCF-fast:w=0.16,s=0.48 RRCF-mid:w=0.17,s=0.43 RRCF-slow:w=0.14,s=0.35 COPOD!:w=0.17,s=0.01"} +{"timestamp":"2026-03-15T14:16:13.746928703Z","score":0.7609019983177029,"is_anomaly":false,"confidence":0.9055868864874396,"method":"SEAD","details":"MAD!:w=0.37,s=0.99 RRCF-fast!:w=0.16,s=0.94 RRCF-mid:w=0.17,s=0.63 RRCF-slow:w=0.14,s=0.58 COPOD!:w=0.17,s=0.37"} +{"timestamp":"2026-03-15T14:16:43.70903752Z","score":0.09148674145432804,"is_anomaly":false,"confidence":0.1091228789557113,"method":"SEAD","details":"MAD:w=0.37,s=0.01 RRCF-fast:w=0.16,s=0.14 RRCF-mid:w=0.17,s=0.24 RRCF-slow:w=0.14,s=0.15 COPOD!:w=0.17,s=0.03"} +{"timestamp":"2026-03-15T14:17:13.745468856Z","score":0.8921552698851019,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.37,s=0.98 RRCF-fast!:w=0.16,s=0.95 RRCF-mid:w=0.17,s=0.65 RRCF-slow!:w=0.14,s=0.85 COPOD!:w=0.17,s=0.92"} +{"timestamp":"2026-03-15T14:17:43.700000597Z","score":0.35967643188602855,"is_anomaly":false,"confidence":0.4280686091174932,"method":"SEAD","details":"MAD!:w=0.37,s=0.23 RRCF-fast!:w=0.16,s=0.96 RRCF-mid:w=0.17,s=0.15 RRCF-slow:w=0.14,s=0.10 COPOD!:w=0.17,s=0.50"} +{"timestamp":"2026-03-15T14:18:13.712422487Z","score":0.25440022630711684,"is_anomaly":false,"confidence":0.30277421977142677,"method":"SEAD","details":"MAD:w=0.37,s=0.13 RRCF-fast:w=0.16,s=0.64 RRCF-mid:w=0.17,s=0.53 RRCF-slow:w=0.14,s=0.13 COPOD!:w=0.17,s=0.02"} +{"timestamp":"2026-03-15T14:18:43.74253857Z","score":0.16134014055740775,"is_anomaly":false,"confidence":0.19201883537677847,"method":"SEAD","details":"MAD:w=0.37,s=0.08 RRCF-fast:w=0.15,s=0.29 RRCF-mid:w=0.17,s=0.14 RRCF-slow:w=0.14,s=0.06 COPOD!:w=0.17,s=0.32"} +{"timestamp":"2026-03-15T14:19:13.696228026Z","score":0.13056833117857541,"is_anomaly":false,"confidence":0.15539579179354093,"method":"SEAD","details":"MAD:w=0.37,s=0.16 RRCF-fast:w=0.15,s=0.08 RRCF-mid:w=0.17,s=0.14 RRCF-slow:w=0.14,s=0.04 COPOD!:w=0.17,s=0.16"} +{"timestamp":"2026-03-15T14:19:43.74323258Z","score":0.7977200627768262,"is_anomaly":false,"confidence":0.9514986375855875,"method":"SEAD","details":"MAD!:w=0.37,s=0.88 RRCF-fast!:w=0.15,s=0.89 RRCF-mid:w=0.17,s=0.48 RRCF-slow:w=0.14,s=0.70 COPOD!:w=0.17,s=0.92"} +{"timestamp":"2026-03-15T14:20:13.698164248Z","score":0.2381013080721185,"is_anomaly":false,"confidence":0.2840007175566656,"method":"SEAD","details":"MAD:w=0.37,s=0.13 RRCF-fast:w=0.15,s=0.43 RRCF-mid:w=0.17,s=0.33 RRCF-slow:w=0.14,s=0.25 COPOD!:w=0.17,s=0.19"} +{"timestamp":"2026-03-15T14:20:43.735252402Z","score":0.6247924633862433,"is_anomaly":false,"confidence":0.7452353343306479,"method":"SEAD","details":"MAD!:w=0.37,s=0.67 RRCF-fast:w=0.15,s=0.56 RRCF-mid:w=0.17,s=0.75 RRCF-slow:w=0.14,s=0.38 COPOD!:w=0.17,s=0.68"} +{"timestamp":"2026-03-15T14:21:13.743127687Z","score":0.19889238264639864,"is_anomaly":false,"confidence":0.2372333854252628,"method":"SEAD","details":"MAD:w=0.37,s=0.11 RRCF-fast:w=0.15,s=0.31 RRCF-mid:w=0.17,s=0.42 RRCF-slow:w=0.14,s=0.14 COPOD!:w=0.17,s=0.12"} +{"timestamp":"2026-03-15T14:21:43.698763188Z","score":0.11258655571763278,"is_anomaly":false,"confidence":0.13429015938608965,"method":"SEAD","details":"MAD:w=0.37,s=0.11 RRCF-fast:w=0.15,s=0.11 RRCF-mid:w=0.17,s=0.20 RRCF-slow:w=0.14,s=0.04 COPOD!:w=0.17,s=0.09"} +{"timestamp":"2026-03-15T14:22:13.743041914Z","score":0.8068536544154197,"is_anomaly":false,"confidence":0.9623929354801813,"method":"SEAD","details":"MAD!:w=0.37,s=0.84 RRCF-fast!:w=0.15,s=0.88 RRCF-mid!:w=0.17,s=0.81 RRCF-slow:w=0.14,s=0.49 COPOD!:w=0.17,s=0.91"} +{"timestamp":"2026-03-15T14:22:43.701258856Z","score":0.27726204908047414,"is_anomaly":false,"confidence":0.33071057663503367,"method":"SEAD","details":"MAD!:w=0.37,s=0.31 RRCF-fast:w=0.15,s=0.26 RRCF-mid:w=0.17,s=0.41 RRCF-slow:w=0.14,s=0.06 COPOD!:w=0.17,s=0.27"} +{"timestamp":"2026-03-15T14:23:13.745445057Z","score":0.6984316316527545,"is_anomaly":false,"confidence":0.8345028612292059,"method":"SEAD","details":"MAD!:w=0.37,s=0.77 RRCF-fast:w=0.15,s=0.66 RRCF-mid:w=0.17,s=0.64 RRCF-slow:w=0.14,s=0.58 COPOD!:w=0.17,s=0.73"} +{"timestamp":"2026-03-15T14:23:43.746165927Z","score":0.23178581306375678,"is_anomaly":false,"confidence":0.27694324745333154,"method":"SEAD","details":"MAD!:w=0.37,s=0.23 RRCF-fast:w=0.15,s=0.23 RRCF-mid:w=0.17,s=0.35 RRCF-slow:w=0.14,s=0.10 COPOD!:w=0.17,s=0.23"} +{"timestamp":"2026-03-15T14:24:13.698624139Z","score":0.16009892460105934,"is_anomaly":false,"confidence":0.19129003413426088,"method":"SEAD","details":"MAD!:w=0.37,s=0.23 RRCF-fast:w=0.15,s=0.13 RRCF-mid:w=0.17,s=0.17 RRCF-slow:w=0.14,s=0.02 COPOD!:w=0.17,s=0.14"} +{"timestamp":"2026-03-15T14:24:43.745395468Z","score":0.6304017208916209,"is_anomaly":false,"confidence":0.7532190925588331,"method":"SEAD","details":"MAD!:w=0.37,s=0.71 RRCF-fast:w=0.15,s=0.64 RRCF-mid:w=0.17,s=0.55 RRCF-slow:w=0.14,s=0.43 COPOD!:w=0.17,s=0.69"} +{"timestamp":"2026-03-15T14:25:13.702605972Z","score":0.3342270713753178,"is_anomaly":false,"confidence":0.39934251932854986,"method":"SEAD","details":"MAD!:w=0.37,s=0.37 RRCF-fast:w=0.15,s=0.40 RRCF-mid:w=0.17,s=0.36 RRCF-slow:w=0.14,s=0.16 COPOD!:w=0.17,s=0.32"} +{"timestamp":"2026-03-15T14:25:43.73867439Z","score":0.7696866714610092,"is_anomaly":false,"confidence":0.9196400914206257,"method":"SEAD","details":"MAD!:w=0.37,s=0.87 RRCF-fast:w=0.15,s=0.71 RRCF-mid:w=0.17,s=0.73 RRCF-slow:w=0.14,s=0.57 COPOD!:w=0.17,s=0.82"} +{"timestamp":"2026-03-15T14:26:13.740204044Z","score":0.7544120396247935,"is_anomaly":false,"confidence":0.9013895950314786,"method":"SEAD","details":"MAD!:w=0.37,s=0.89 RRCF-fast!:w=0.15,s=0.92 RRCF-mid!:w=0.17,s=0.83 RRCF-slow:w=0.14,s=0.42 COPOD!:w=0.17,s=0.53"} +{"timestamp":"2026-03-15T14:26:43.700112254Z","score":0.19540752551355448,"is_anomaly":false,"confidence":0.2341721106577276,"method":"SEAD","details":"MAD!:w=0.37,s=0.27 RRCF-fast:w=0.15,s=0.25 RRCF-mid:w=0.17,s=0.13 RRCF-slow:w=0.14,s=0.03 COPOD!:w=0.17,s=0.18"} +{"timestamp":"2026-03-15T14:27:13.745947336Z","score":0.28562232677265975,"is_anomaly":false,"confidence":0.3422835580950307,"method":"SEAD","details":"MAD!:w=0.37,s=0.28 RRCF-fast:w=0.15,s=0.24 RRCF-mid:w=0.17,s=0.26 RRCF-slow:w=0.14,s=0.04 COPOD!:w=0.17,s=0.56"} +{"timestamp":"2026-03-15T14:27:43.699884162Z","score":0.19406982542142348,"is_anomaly":false,"confidence":0.2325690400841758,"method":"SEAD","details":"MAD!:w=0.37,s=0.28 RRCF-fast:w=0.15,s=0.22 RRCF-mid:w=0.17,s=0.21 RRCF-slow:w=0.14,s=0.05 COPOD!:w=0.17,s=0.09"} +{"timestamp":"2026-03-15T14:28:13.747563232Z","score":0.8639705316240871,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.36,s=0.96 RRCF-fast:w=0.15,s=0.87 RRCF-mid!:w=0.17,s=0.87 RRCF-slow:w=0.14,s=0.49 COPOD!:w=0.17,s=0.96"} +{"timestamp":"2026-03-15T14:28:43.697645931Z","score":0.5171352498227825,"is_anomaly":false,"confidence":0.6178855969028478,"method":"SEAD","details":"MAD!:w=0.36,s=0.29 RRCF-fast:w=0.15,s=0.86 RRCF-mid!:w=0.17,s=0.89 RRCF-slow:w=0.14,s=0.16 COPOD!:w=0.17,s=0.63"} +{"timestamp":"2026-03-15T14:29:16.876799849Z","score":0.779859554048815,"is_anomaly":false,"confidence":0.931794895472647,"method":"SEAD","details":"MAD!:w=0.37,s=0.81 RRCF-fast:w=0.15,s=0.81 RRCF-mid:w=0.17,s=0.79 RRCF-slow:w=0.15,s=0.58 COPOD!:w=0.17,s=0.84"} +{"timestamp":"2026-03-15T14:29:43.742535678Z","score":0.35808269295850514,"is_anomaly":false,"confidence":0.42911847831715005,"method":"SEAD","details":"MAD:w=0.37,s=0.13 RRCF-fast:w=0.15,s=0.55 RRCF-mid:w=0.17,s=0.47 RRCF-slow:w=0.15,s=0.32 COPOD!:w=0.17,s=0.61"} +{"timestamp":"2026-03-15T14:30:13.700431511Z","score":0.11508583365799763,"is_anomaly":false,"confidence":0.13791634945312314,"method":"SEAD","details":"MAD:w=0.37,s=0.02 RRCF-fast:w=0.15,s=0.24 RRCF-mid:w=0.17,s=0.33 RRCF-slow:w=0.15,s=0.11 COPOD!:w=0.17,s=0.00"} +{"timestamp":"2026-03-15T14:30:43.746725468Z","score":0.7297028656531804,"is_anomaly":false,"confidence":0.8744599766765107,"method":"SEAD","details":"MAD!:w=0.37,s=0.87 RRCF-fast:w=0.15,s=0.54 RRCF-mid:w=0.16,s=0.80 RRCF-slow:w=0.15,s=0.31 COPOD!:w=0.17,s=0.89"} +{"timestamp":"2026-03-15T14:31:13.701324105Z","score":0.28042749390026234,"is_anomaly":false,"confidence":0.33605818384167796,"method":"SEAD","details":"MAD:w=0.37,s=0.23 RRCF-fast:w=0.15,s=0.39 RRCF-mid:w=0.16,s=0.30 RRCF-slow:w=0.15,s=0.00 COPOD!:w=0.17,s=0.51"} +{"timestamp":"2026-03-15T14:31:43.758898537Z","score":0.7429434363024303,"is_anomaly":false,"confidence":0.8903271873537808,"method":"SEAD","details":"MAD!:w=0.37,s=0.86 RRCF-fast:w=0.15,s=0.67 RRCF-mid:w=0.16,s=0.67 RRCF-slow:w=0.15,s=0.50 COPOD!:w=0.17,s=0.84"} +{"timestamp":"2026-03-15T14:32:13.747923378Z","score":0.2736486933979655,"is_anomaly":false,"confidence":0.3279346173762687,"method":"SEAD","details":"MAD:w=0.37,s=0.07 RRCF-fast:w=0.15,s=0.33 RRCF-mid:w=0.17,s=0.44 RRCF-slow:w=0.15,s=0.38 COPOD!:w=0.17,s=0.41"} +{"timestamp":"2026-03-15T14:32:43.704866103Z","score":0.17086881428071826,"is_anomaly":false,"confidence":0.2047654550690453,"method":"SEAD","details":"MAD:w=0.37,s=0.01 RRCF-fast:w=0.15,s=0.48 RRCF-mid:w=0.16,s=0.25 RRCF-slow:w=0.15,s=0.09 COPOD!:w=0.17,s=0.23"} +{"timestamp":"2026-03-15T14:33:13.745652006Z","score":0.8018831685805439,"is_anomaly":false,"confidence":0.9667874834257696,"method":"SEAD","details":"MAD!:w=0.37,s=0.74 RRCF-fast!:w=0.15,s=0.89 RRCF-mid:w=0.16,s=0.81 RRCF-slow!:w=0.15,s=0.85 COPOD!:w=0.17,s=0.82"} +{"timestamp":"2026-03-15T14:33:43.699656583Z","score":0.30839910335311665,"is_anomaly":false,"confidence":0.37182024103250105,"method":"SEAD","details":"MAD!:w=0.37,s=0.28 RRCF-fast:w=0.15,s=0.55 RRCF-mid:w=0.16,s=0.36 RRCF-slow:w=0.15,s=0.11 COPOD!:w=0.17,s=0.27"} +{"timestamp":"2026-03-15T14:34:16.623766154Z","score":0.7731576929791429,"is_anomaly":false,"confidence":0.9321547197576576,"method":"SEAD","details":"MAD!:w=0.37,s=0.91 RRCF-fast:w=0.15,s=0.79 RRCF-mid:w=0.16,s=0.73 RRCF-slow:w=0.15,s=0.30 COPOD!:w=0.17,s=0.93"} +{"timestamp":"2026-03-15T14:34:43.747935513Z","score":0.22029708498869086,"is_anomaly":false,"confidence":0.26560036766859363,"method":"SEAD","details":"MAD:w=0.37,s=0.24 RRCF-fast:w=0.15,s=0.13 RRCF-mid:w=0.16,s=0.10 RRCF-slow:w=0.15,s=0.03 COPOD!:w=0.17,s=0.55"} +{"timestamp":"2026-03-15T14:35:13.702551765Z","score":0.11986068372133343,"is_anomaly":false,"confidence":0.14450959106893974,"method":"SEAD","details":"MAD:w=0.37,s=0.01 RRCF-fast:w=0.15,s=0.29 RRCF-mid:w=0.16,s=0.21 RRCF-slow:w=0.15,s=0.15 COPOD!:w=0.17,s=0.07"} +{"timestamp":"2026-03-15T14:35:43.745021351Z","score":0.18470069329887337,"is_anomaly":false,"confidence":0.22268370937065862,"method":"SEAD","details":"MAD:w=0.37,s=0.22 RRCF-fast:w=0.15,s=0.21 RRCF-mid:w=0.16,s=0.08 RRCF-slow:w=0.15,s=0.32 COPOD!:w=0.17,s=0.06"} +{"timestamp":"2026-03-15T14:36:13.703591511Z","score":0.179558670031086,"is_anomaly":false,"confidence":0.21648424799079108,"method":"SEAD","details":"MAD:w=0.37,s=0.01 RRCF-fast:w=0.15,s=0.24 RRCF-mid:w=0.16,s=0.18 RRCF-slow:w=0.15,s=0.10 COPOD!:w=0.17,s=0.58"} +{"timestamp":"2026-03-15T14:36:43.754610683Z","score":0.8462987513205842,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.37,s=0.85 RRCF-fast:w=0.15,s=0.74 RRCF-mid!:w=0.16,s=0.85 RRCF-slow!:w=0.15,s=0.85 COPOD!:w=0.16,s=0.92"} +{"timestamp":"2026-03-15T14:37:13.701109568Z","score":0.9680607807379862,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.37,s=1.00 RRCF-fast!:w=0.15,s=1.00 RRCF-mid!:w=0.16,s=1.00 RRCF-slow!:w=0.15,s=1.00 COPOD!:w=0.16,s=0.81"} +{"timestamp":"2026-03-15T14:37:43.746530283Z","score":0.9486886075020019,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.37,s=1.00 RRCF-fast!:w=0.15,s=0.96 RRCF-mid!:w=0.16,s=1.00 RRCF-slow!:w=0.15,s=0.99 COPOD!:w=0.17,s=0.75"} +{"timestamp":"2026-03-15T14:38:13.699766481Z","score":0.9051760980553867,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.37,s=0.99 RRCF-fast!:w=0.15,s=0.97 RRCF-mid!:w=0.16,s=0.98 RRCF-slow!:w=0.15,s=0.98 COPOD!:w=0.17,s=0.52"} +{"timestamp":"2026-03-15T14:38:43.750535791Z","score":0.8795777759747315,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.37,s=0.98 RRCF-fast:w=0.15,s=0.77 RRCF-mid!:w=0.16,s=0.97 RRCF-slow!:w=0.15,s=0.97 COPOD!:w=0.17,s=0.58"} +{"timestamp":"2026-03-15T14:39:13.700564529Z","score":0.8393365824012178,"is_anomaly":false,"confidence":0.9989357421221574,"method":"SEAD","details":"MAD!:w=0.37,s=0.98 RRCF-fast:w=0.15,s=0.62 RRCF-mid!:w=0.16,s=0.91 RRCF-slow!:w=0.15,s=0.96 COPOD!:w=0.17,s=0.56"} +{"timestamp":"2026-03-15T14:39:43.745122011Z","score":0.8139419335272,"is_anomaly":false,"confidence":0.9697443797798406,"method":"SEAD","details":"MAD!:w=0.37,s=0.76 RRCF-fast:w=0.15,s=0.82 RRCF-mid!:w=0.16,s=0.92 RRCF-slow!:w=0.15,s=0.95 COPOD!:w=0.17,s=0.72"} +{"timestamp":"2026-03-15T14:40:13.748305335Z","score":0.7749740053081567,"is_anomaly":false,"confidence":0.9233173217484109,"method":"SEAD","details":"MAD!:w=0.37,s=0.73 RRCF-fast:w=0.15,s=0.86 RRCF-mid!:w=0.16,s=0.95 RRCF-slow!:w=0.15,s=0.94 COPOD!:w=0.17,s=0.48"} +{"timestamp":"2026-03-15T14:40:43.748193881Z","score":0.8308523157598804,"is_anomaly":false,"confidence":0.9898916992071701,"method":"SEAD","details":"MAD!:w=0.37,s=0.99 RRCF-fast:w=0.15,s=0.72 RRCF-mid!:w=0.16,s=0.96 RRCF-slow!:w=0.15,s=0.96 COPOD!:w=0.17,s=0.35"} +{"timestamp":"2026-03-15T14:41:13.70175369Z","score":0.8526912019273322,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.37,s=0.97 RRCF-fast:w=0.15,s=0.62 RRCF-mid!:w=0.16,s=0.93 RRCF-slow!:w=0.15,s=0.92 COPOD!:w=0.17,s=0.67"} +{"timestamp":"2026-03-15T14:41:43.745978936Z","score":0.8138669161205954,"is_anomaly":false,"confidence":0.968623039779493,"method":"SEAD","details":"MAD!:w=0.36,s=0.73 RRCF-fast:w=0.15,s=0.78 RRCF-mid!:w=0.16,s=0.94 RRCF-slow!:w=0.15,s=0.96 COPOD!:w=0.17,s=0.79"} +{"timestamp":"2026-03-15T14:42:13.761299226Z","score":0.8470980945959274,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.37,s=0.79 RRCF-fast:w=0.15,s=0.86 RRCF-mid!:w=0.16,s=0.93 RRCF-slow!:w=0.15,s=0.95 COPOD!:w=0.17,s=0.79"} +{"timestamp":"2026-03-15T14:42:43.744185464Z","score":0.8272054695165906,"is_anomaly":false,"confidence":0.9795715925462982,"method":"SEAD","details":"MAD!:w=0.37,s=0.98 RRCF-fast:w=0.15,s=0.72 RRCF-mid:w=0.16,s=0.90 RRCF-slow!:w=0.15,s=0.94 COPOD!:w=0.17,s=0.43"} +{"timestamp":"2026-03-15T14:43:13.745788857Z","score":0.6188513504595258,"is_anomaly":false,"confidence":0.7365254249564909,"method":"SEAD","details":"MAD!:w=0.36,s=0.71 RRCF-fast:w=0.15,s=0.31 RRCF-mid:w=0.16,s=0.86 RRCF-slow:w=0.15,s=0.83 COPOD!:w=0.17,s=0.31"} +{"timestamp":"2026-03-15T14:43:44.584291954Z","score":0.9441303954082034,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.36,s=1.00 RRCF-fast:w=0.15,s=0.82 RRCF-mid!:w=0.16,s=0.97 RRCF-slow!:w=0.15,s=0.97 COPOD!:w=0.17,s=0.90"} +{"timestamp":"2026-03-15T14:44:13.700657796Z","score":0.7929965870049007,"is_anomaly":false,"confidence":0.9390616457965649,"method":"SEAD","details":"MAD!:w=0.36,s=0.96 RRCF-fast:w=0.15,s=0.56 RRCF-mid:w=0.16,s=0.71 RRCF-slow:w=0.15,s=0.86 COPOD!:w=0.17,s=0.67"} +{"timestamp":"2026-03-15T14:44:43.746603369Z","score":0.9158762835017396,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.36,s=0.99 RRCF-fast:w=0.15,s=0.77 RRCF-mid!:w=0.16,s=0.96 RRCF-slow!:w=0.15,s=0.96 COPOD!:w=0.18,s=0.81"} +{"timestamp":"2026-03-15T14:45:13.702604133Z","score":0.6926913686548902,"is_anomaly":false,"confidence":0.8184950853040945,"method":"SEAD","details":"MAD!:w=0.36,s=0.97 RRCF-fast:w=0.16,s=0.24 RRCF-mid:w=0.16,s=0.71 RRCF-slow:w=0.15,s=0.88 COPOD!:w=0.18,s=0.35"} +{"timestamp":"2026-03-15T14:45:43.75419586Z","score":0.8938093430993795,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.36,s=0.82 RRCF-fast!:w=0.16,s=0.92 RRCF-mid!:w=0.16,s=0.96 RRCF-slow:w=0.15,s=0.93 COPOD!:w=0.18,s=0.94"} +{"timestamp":"2026-03-15T14:46:13.748659506Z","score":0.7317497896905405,"is_anomaly":false,"confidence":0.8638312308323524,"method":"SEAD","details":"MAD!:w=0.36,s=0.75 RRCF-fast:w=0.16,s=0.60 RRCF-mid:w=0.16,s=0.82 RRCF-slow:w=0.15,s=0.88 COPOD!:w=0.18,s=0.61"} +{"timestamp":"2026-03-15T14:46:43.744231981Z","score":0.4713134028731529,"is_anomaly":false,"confidence":0.556911376907628,"method":"SEAD","details":"MAD!:w=0.36,s=0.46 RRCF-fast:w=0.16,s=0.18 RRCF-mid:w=0.16,s=0.60 RRCF-slow:w=0.15,s=0.68 COPOD!:w=0.18,s=0.46"} +{"timestamp":"2026-03-15T14:47:13.700017225Z","score":0.46251381960363225,"is_anomaly":false,"confidence":0.5465136500342402,"method":"SEAD","details":"MAD!:w=0.36,s=0.49 RRCF-fast:w=0.16,s=0.18 RRCF-mid:w=0.16,s=0.62 RRCF-slow:w=0.15,s=0.63 COPOD!:w=0.18,s=0.38"} +{"timestamp":"2026-03-15T14:47:43.734767641Z","score":0.9094974325159239,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.36,s=0.88 RRCF-fast!:w=0.16,s=0.89 RRCF-mid:w=0.16,s=0.92 RRCF-slow:w=0.15,s=0.89 COPOD!:w=0.18,s=1.00"} +{"timestamp":"2026-03-15T14:48:13.742542472Z","score":0.25479954617832523,"is_anomaly":false,"confidence":0.3007910746155871,"method":"SEAD","details":"MAD!:w=0.36,s=0.27 RRCF-fast:w=0.16,s=0.25 RRCF-mid:w=0.16,s=0.02 RRCF-slow:w=0.15,s=0.34 COPOD!:w=0.18,s=0.37"} +{"timestamp":"2026-03-15T14:48:43.696705153Z","score":0.3602410201522138,"is_anomaly":false,"confidence":0.4252648216899268,"method":"SEAD","details":"MAD:w=0.36,s=0.04 RRCF-fast:w=0.16,s=0.65 RRCF-mid:w=0.16,s=0.46 RRCF-slow:w=0.15,s=0.74 COPOD!:w=0.18,s=0.34"} +{"timestamp":"2026-03-15T14:49:13.74506724Z","score":0.4664675055423537,"is_anomaly":false,"confidence":0.5506652753892245,"method":"SEAD","details":"MAD!:w=0.36,s=0.54 RRCF-fast:w=0.16,s=0.42 RRCF-mid:w=0.16,s=0.56 RRCF-slow:w=0.14,s=0.58 COPOD!:w=0.18,s=0.19"} +{"timestamp":"2026-03-15T14:49:43.699809809Z","score":0.2800088620493171,"is_anomaly":false,"confidence":0.33086290345151137,"method":"SEAD","details":"MAD:w=0.36,s=0.05 RRCF-fast:w=0.16,s=0.51 RRCF-mid:w=0.16,s=0.49 RRCF-slow:w=0.14,s=0.59 COPOD!:w=0.18,s=0.11"} +{"timestamp":"2026-03-15T14:50:13.743405079Z","score":0.7904375824554607,"is_anomaly":false,"confidence":0.9339935586836724,"method":"SEAD","details":"MAD!:w=0.36,s=0.70 RRCF-fast!:w=0.16,s=0.88 RRCF-mid:w=0.16,s=0.80 RRCF-slow:w=0.14,s=0.79 COPOD!:w=0.18,s=0.89"} +{"timestamp":"2026-03-15T14:50:43.704867257Z","score":0.424740756475195,"is_anomaly":false,"confidence":0.5018804007596841,"method":"SEAD","details":"MAD!:w=0.36,s=0.41 RRCF-fast:w=0.16,s=0.41 RRCF-mid:w=0.16,s=0.52 RRCF-slow:w=0.14,s=0.45 COPOD!:w=0.18,s=0.36"} +{"timestamp":"2026-03-15T14:51:13.749151253Z","score":0.8053385668522384,"is_anomaly":false,"confidence":0.9516007977036116,"method":"SEAD","details":"MAD!:w=0.36,s=0.76 RRCF-fast!:w=0.16,s=0.88 RRCF-mid:w=0.16,s=0.83 RRCF-slow:w=0.14,s=0.81 COPOD!:w=0.18,s=0.82"} +{"timestamp":"2026-03-15T14:51:43.744237215Z","score":0.3605808062760536,"is_anomaly":false,"confidence":0.42606798806378354,"method":"SEAD","details":"MAD!:w=0.36,s=0.31 RRCF-fast:w=0.16,s=0.48 RRCF-mid:w=0.16,s=0.47 RRCF-slow:w=0.14,s=0.49 COPOD!:w=0.18,s=0.14"} +{"timestamp":"2026-03-15T14:52:13.704093989Z","score":0.31013134338917847,"is_anomaly":false,"confidence":0.36645610418926217,"method":"SEAD","details":"MAD!:w=0.36,s=0.31 RRCF-fast:w=0.16,s=0.22 RRCF-mid:w=0.16,s=0.34 RRCF-slow:w=0.14,s=0.58 COPOD!:w=0.18,s=0.15"} +{"timestamp":"2026-03-15T14:52:43.749871972Z","score":0.7590741028048662,"is_anomaly":false,"confidence":0.8969339746991112,"method":"SEAD","details":"MAD!:w=0.36,s=0.63 RRCF-fast:w=0.16,s=0.77 RRCF-mid:w=0.16,s=0.84 RRCF-slow:w=0.14,s=0.90 COPOD!:w=0.18,s=0.83"} +{"timestamp":"2026-03-15T14:53:13.69902285Z","score":0.3988739509212353,"is_anomaly":false,"confidence":0.47234406169664717,"method":"SEAD","details":"MAD!:w=0.37,s=0.40 RRCF-fast:w=0.16,s=0.12 RRCF-mid:w=0.16,s=0.43 RRCF-slow:w=0.14,s=0.58 COPOD!:w=0.18,s=0.46"} +{"timestamp":"2026-03-15T14:53:47.085123574Z","score":0.8652866164006512,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.37,s=0.87 RRCF-fast:w=0.16,s=0.85 RRCF-mid:w=0.16,s=0.83 RRCF-slow:w=0.14,s=0.81 COPOD!:w=0.18,s=0.95"} +{"timestamp":"2026-03-15T14:54:13.746326356Z","score":0.31732721909278355,"is_anomaly":false,"confidence":0.3749588648188584,"method":"SEAD","details":"MAD:w=0.36,s=0.23 RRCF-fast:w=0.16,s=0.25 RRCF-mid:w=0.16,s=0.36 RRCF-slow:w=0.14,s=0.42 COPOD!:w=0.18,s=0.44"} +{"timestamp":"2026-03-15T14:54:43.703006627Z","score":0.18761254758057627,"is_anomaly":false,"confidence":0.22168595580203954,"method":"SEAD","details":"MAD:w=0.37,s=0.00 RRCF-fast:w=0.16,s=0.35 RRCF-mid:w=0.16,s=0.24 RRCF-slow:w=0.14,s=0.51 COPOD!:w=0.18,s=0.12"} +{"timestamp":"2026-03-15T14:55:13.746383919Z","score":0.7699569916977606,"is_anomaly":false,"confidence":0.9097933684721876,"method":"SEAD","details":"MAD!:w=0.37,s=0.70 RRCF-fast:w=0.16,s=0.84 RRCF-mid:w=0.16,s=0.89 RRCF-slow:w=0.14,s=0.88 COPOD!:w=0.18,s=0.65"} +{"timestamp":"2026-03-15T14:55:43.699640414Z","score":0.24879505068759036,"is_anomaly":false,"confidence":0.2939801698860654,"method":"SEAD","details":"MAD:w=0.37,s=0.22 RRCF-fast:w=0.16,s=0.08 RRCF-mid:w=0.16,s=0.17 RRCF-slow:w=0.14,s=0.25 COPOD!:w=0.18,s=0.53"} +{"timestamp":"2026-03-15T14:56:13.735257801Z","score":0.8515716720779921,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.37,s=0.89 RRCF-fast:w=0.16,s=0.61 RRCF-mid:w=0.16,s=0.88 RRCF-slow:w=0.14,s=0.83 COPOD!:w=0.18,s=0.97"} +{"timestamp":"2026-03-15T14:56:43.751833506Z","score":0.24909854311810342,"is_anomaly":false,"confidence":0.2943387813457178,"method":"SEAD","details":"MAD:w=0.37,s=0.20 RRCF-fast:w=0.16,s=0.00 RRCF-mid:w=0.16,s=0.25 RRCF-slow:w=0.14,s=0.10 COPOD!:w=0.18,s=0.68"} +{"timestamp":"2026-03-15T14:57:13.703558416Z","score":0.24200002559341913,"is_anomaly":false,"confidence":0.2859510606813453,"method":"SEAD","details":"MAD:w=0.37,s=0.00 RRCF-fast:w=0.16,s=0.24 RRCF-mid:w=0.16,s=0.43 RRCF-slow:w=0.14,s=0.45 COPOD!:w=0.18,s=0.40"} +{"timestamp":"2026-03-15T14:57:43.746554661Z","score":0.4977865334454699,"is_anomaly":false,"confidence":0.5881924470155631,"method":"SEAD","details":"MAD!:w=0.37,s=0.57 RRCF-fast:w=0.16,s=0.39 RRCF-mid:w=0.16,s=0.54 RRCF-slow:w=0.14,s=0.64 COPOD!:w=0.17,s=0.30"} +{"timestamp":"2026-03-15T14:58:13.706679916Z","score":0.19838780597959693,"is_anomaly":false,"confidence":0.23441817167995108,"method":"SEAD","details":"MAD:w=0.37,s=0.01 RRCF-fast:w=0.16,s=0.23 RRCF-mid:w=0.16,s=0.50 RRCF-slow:w=0.14,s=0.43 COPOD!:w=0.18,s=0.12"} +{"timestamp":"2026-03-15T14:58:45.807036119Z","score":0.8742469907669587,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.37,s=0.93 RRCF-fast:w=0.16,s=0.84 RRCF-mid:w=0.16,s=0.82 RRCF-slow:w=0.14,s=0.77 COPOD!:w=0.18,s=0.93"} +{"timestamp":"2026-03-15T14:59:13.69805951Z","score":0.2681800690780322,"is_anomaly":false,"confidence":0.31658679294510306,"method":"SEAD","details":"MAD:w=0.37,s=0.18 RRCF-fast:w=0.16,s=0.19 RRCF-mid:w=0.16,s=0.19 RRCF-slow:w=0.14,s=0.26 COPOD!:w=0.17,s=0.61"} +{"timestamp":"2026-03-15T14:59:43.703426171Z","score":0.19117020187657974,"is_anomaly":false,"confidence":0.2258897364296867,"method":"SEAD","details":"MAD:w=0.37,s=0.02 RRCF-fast:w=0.16,s=0.14 RRCF-mid:w=0.16,s=0.41 RRCF-slow:w=0.14,s=0.50 COPOD!:w=0.17,s=0.17"} +{"timestamp":"2026-03-15T15:00:13.745371958Z","score":0.23588794603642643,"is_anomaly":false,"confidence":0.27872893073319727,"method":"SEAD","details":"MAD:w=0.37,s=0.12 RRCF-fast:w=0.16,s=0.40 RRCF-mid:w=0.16,s=0.31 RRCF-slow:w=0.14,s=0.51 COPOD!:w=0.17,s=0.05"} +{"timestamp":"2026-03-15T15:00:43.690227817Z","score":0.21974321244345138,"is_anomaly":false,"confidence":0.2596520579766412,"method":"SEAD","details":"MAD:w=0.38,s=0.00 RRCF-fast:w=0.16,s=0.39 RRCF-mid:w=0.16,s=0.48 RRCF-slow:w=0.14,s=0.41 COPOD!:w=0.17,s=0.15"} +{"timestamp":"2026-03-15T15:01:13.748175363Z","score":0.7513012985881821,"is_anomaly":false,"confidence":0.8877495062066842,"method":"SEAD","details":"MAD!:w=0.38,s=0.72 RRCF-fast:w=0.16,s=0.84 RRCF-mid:w=0.15,s=0.72 RRCF-slow:w=0.14,s=0.65 COPOD!:w=0.17,s=0.85"} +{"timestamp":"2026-03-15T15:01:43.704534669Z","score":0.40522640022512585,"is_anomaly":false,"confidence":0.47882192853623046,"method":"SEAD","details":"MAD!:w=0.38,s=0.51 RRCF-fast:w=0.16,s=0.38 RRCF-mid:w=0.15,s=0.43 RRCF-slow:w=0.14,s=0.39 COPOD!:w=0.17,s=0.18"} +{"timestamp":"2026-03-15T15:02:13.735880376Z","score":0.8364350274102793,"is_anomaly":false,"confidence":0.9883448677019631,"method":"SEAD","details":"MAD!:w=0.38,s=0.88 RRCF-fast:w=0.16,s=0.67 RRCF-mid:w=0.15,s=0.77 RRCF-slow:w=0.14,s=0.87 COPOD!:w=0.17,s=0.93"} +{"timestamp":"2026-03-15T15:02:43.757648932Z","score":0.2210609612785549,"is_anomaly":false,"confidence":0.2612091308578752,"method":"SEAD","details":"MAD!:w=0.38,s=0.27 RRCF-fast:w=0.16,s=0.05 RRCF-mid:w=0.16,s=0.09 RRCF-slow:w=0.14,s=0.01 COPOD!:w=0.17,s=0.55"} +{"timestamp":"2026-03-15T15:03:13.699970781Z","score":0.25046351021737506,"is_anomaly":false,"confidence":0.2965973372029903,"method":"SEAD","details":"MAD:w=0.38,s=0.04 RRCF-fast:w=0.16,s=0.64 RRCF-mid:w=0.16,s=0.51 RRCF-slow:w=0.14,s=0.29 COPOD!:w=0.17,s=0.09"} +{"timestamp":"2026-03-15T15:03:43.748427978Z","score":0.25813291700169927,"is_anomaly":false,"confidence":0.30567940120577813,"method":"SEAD","details":"MAD:w=0.38,s=0.05 RRCF-fast:w=0.16,s=0.41 RRCF-mid:w=0.15,s=0.40 RRCF-slow:w=0.14,s=0.55 COPOD!:w=0.17,s=0.22"} +{"timestamp":"2026-03-15T15:04:13.70431509Z","score":0.17885556875814526,"is_anomaly":false,"confidence":0.2117996565310143,"method":"SEAD","details":"MAD:w=0.38,s=0.03 RRCF-fast:w=0.16,s=0.50 RRCF-mid:w=0.15,s=0.21 RRCF-slow:w=0.14,s=0.32 COPOD!:w=0.17,s=0.08"} +{"timestamp":"2026-03-15T15:04:43.751001409Z","score":0.764646427323808,"is_anomaly":false,"confidence":0.9054895623286221,"method":"SEAD","details":"MAD!:w=0.38,s=0.72 RRCF-fast:w=0.15,s=0.82 RRCF-mid:w=0.15,s=0.87 RRCF-slow:w=0.14,s=0.81 COPOD!:w=0.17,s=0.69"} +{"timestamp":"2026-03-15T15:05:13.700448106Z","score":0.3972250517348557,"is_anomaly":false,"confidence":0.47039144549490225,"method":"SEAD","details":"MAD!:w=0.38,s=0.42 RRCF-fast:w=0.15,s=0.59 RRCF-mid:w=0.15,s=0.46 RRCF-slow:w=0.14,s=0.42 COPOD!:w=0.17,s=0.09"} +{"timestamp":"2026-03-15T15:05:43.73685511Z","score":0.7922593464918166,"is_anomaly":false,"confidence":0.9381886101481021,"method":"SEAD","details":"MAD!:w=0.38,s=0.93 RRCF-fast:w=0.15,s=0.43 RRCF-mid:w=0.15,s=0.66 RRCF-slow:w=0.14,s=0.75 COPOD!:w=0.17,s=0.96"} +{"timestamp":"2026-03-15T15:06:13.691207692Z","score":0.2223250657484617,"is_anomaly":false,"confidence":0.2632759655777556,"method":"SEAD","details":"MAD!:w=0.38,s=0.27 RRCF-fast:w=0.15,s=0.19 RRCF-mid:w=0.15,s=0.04 RRCF-slow:w=0.14,s=0.05 COPOD!:w=0.17,s=0.44"} +{"timestamp":"2026-03-15T15:06:43.736385261Z","score":0.6627640567764909,"is_anomaly":false,"confidence":0.7887880962055336,"method":"SEAD","details":"MAD!:w=0.38,s=0.74 RRCF-fast:w=0.16,s=0.68 RRCF-mid:w=0.15,s=0.74 RRCF-slow:w=0.14,s=0.65 COPOD!:w=0.17,s=0.42"} +{"timestamp":"2026-03-15T15:07:13.741631787Z","score":0.24739206167029992,"is_anomaly":false,"confidence":0.29443345840205454,"method":"SEAD","details":"MAD:w=0.38,s=0.02 RRCF-fast:w=0.16,s=0.32 RRCF-mid:w=0.15,s=0.45 RRCF-slow:w=0.14,s=0.43 COPOD!:w=0.17,s=0.34"} +{"timestamp":"2026-03-15T15:07:43.704690469Z","score":0.17831447780439946,"is_anomaly":false,"confidence":0.21222082886828822,"method":"SEAD","details":"MAD:w=0.38,s=0.02 RRCF-fast:w=0.15,s=0.39 RRCF-mid:w=0.15,s=0.26 RRCF-slow:w=0.14,s=0.35 COPOD!:w=0.17,s=0.12"} +{"timestamp":"2026-03-15T15:08:13.750198216Z","score":0.3666476768789887,"is_anomaly":false,"confidence":0.43636543060314265,"method":"SEAD","details":"MAD!:w=0.38,s=0.52 RRCF-fast:w=0.15,s=0.28 RRCF-mid:w=0.15,s=0.27 RRCF-slow:w=0.14,s=0.49 COPOD!:w=0.17,s=0.09"} +{"timestamp":"2026-03-15T15:08:43.707139635Z","score":0.3626368446416277,"is_anomaly":false,"confidence":0.431591941919862,"method":"SEAD","details":"MAD!:w=0.38,s=0.53 RRCF-fast:w=0.15,s=0.15 RRCF-mid:w=0.15,s=0.24 RRCF-slow:w=0.14,s=0.32 COPOD!:w=0.17,s=0.33"} +{"timestamp":"2026-03-15T15:09:13.750084363Z","score":0.8997569838513029,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.38,s=0.92 RRCF-fast:w=0.16,s=0.78 RRCF-mid!:w=0.15,s=0.98 RRCF-slow:w=0.14,s=0.81 COPOD!:w=0.18,s=0.96"} +{"timestamp":"2026-03-15T15:09:43.704332691Z","score":0.5163267434131448,"is_anomaly":false,"confidence":0.6145058483372239,"method":"SEAD","details":"MAD!:w=0.38,s=0.32 RRCF-fast!:w=0.16,s=0.95 RRCF-mid!:w=0.15,s=0.97 RRCF-slow:w=0.14,s=0.30 COPOD!:w=0.18,s=0.33"} +{"timestamp":"2026-03-15T15:10:13.703735357Z","score":0.27452197240537557,"is_anomaly":false,"confidence":0.3267220993145221,"method":"SEAD","details":"MAD:w=0.38,s=0.13 RRCF-fast:w=0.15,s=0.39 RRCF-mid:w=0.15,s=0.62 RRCF-slow:w=0.14,s=0.51 COPOD!:w=0.18,s=0.00"} +{"timestamp":"2026-03-15T15:10:43.752261226Z","score":0.27292690231665556,"is_anomaly":false,"confidence":0.3248237279624074,"method":"SEAD","details":"MAD:w=0.38,s=0.12 RRCF-fast:w=0.15,s=0.35 RRCF-mid:w=0.15,s=0.61 RRCF-slow:w=0.14,s=0.42 COPOD!:w=0.18,s=0.14"} +{"timestamp":"2026-03-15T15:11:13.700739248Z","score":0.3048445605564905,"is_anomaly":false,"confidence":0.362810502623648,"method":"SEAD","details":"MAD:w=0.38,s=0.14 RRCF-fast:w=0.15,s=0.52 RRCF-mid:w=0.15,s=0.68 RRCF-slow:w=0.14,s=0.50 COPOD!:w=0.18,s=0.01"} +{"timestamp":"2026-03-15T15:11:43.747099318Z","score":0.7997434776153838,"is_anomaly":false,"confidence":0.9518140410770201,"method":"SEAD","details":"MAD!:w=0.39,s=0.91 RRCF-fast:w=0.15,s=0.42 RRCF-mid!:w=0.15,s=0.88 RRCF-slow:w=0.13,s=0.58 COPOD!:w=0.18,s=0.99"} +{"timestamp":"2026-03-15T15:12:13.700572043Z","score":0.38083244030513214,"is_anomaly":false,"confidence":0.4532474151097449,"method":"SEAD","details":"MAD:w=0.39,s=0.24 RRCF-fast:w=0.15,s=0.56 RRCF-mid:w=0.15,s=0.48 RRCF-slow:w=0.14,s=0.35 COPOD!:w=0.18,s=0.46"} +{"timestamp":"2026-03-15T15:12:43.714478746Z","score":0.299466179360796,"is_anomaly":false,"confidence":0.35640942667415637,"method":"SEAD","details":"MAD:w=0.39,s=0.19 RRCF-fast:w=0.15,s=0.42 RRCF-mid:w=0.15,s=0.54 RRCF-slow:w=0.14,s=0.50 COPOD!:w=0.18,s=0.09"} +{"timestamp":"2026-03-15T15:13:13.748787318Z","score":0.29544900022323983,"is_anomaly":false,"confidence":0.352003006205215,"method":"SEAD","details":"MAD:w=0.39,s=0.19 RRCF-fast:w=0.15,s=0.36 RRCF-mid:w=0.15,s=0.58 RRCF-slow:w=0.13,s=0.40 COPOD!:w=0.18,s=0.16"} +{"timestamp":"2026-03-15T15:13:43.703494234Z","score":0.2383791184224482,"is_anomaly":false,"confidence":0.2840089702041591,"method":"SEAD","details":"MAD:w=0.39,s=0.19 RRCF-fast:w=0.15,s=0.17 RRCF-mid:w=0.15,s=0.36 RRCF-slow:w=0.13,s=0.34 COPOD!:w=0.18,s=0.21"} +{"timestamp":"2026-03-15T15:14:13.750178454Z","score":0.8090833854068789,"is_anomaly":false,"confidence":0.9639558222187945,"method":"SEAD","details":"MAD!:w=0.39,s=0.83 RRCF-fast:w=0.15,s=0.75 RRCF-mid:w=0.15,s=0.79 RRCF-slow:w=0.13,s=0.69 COPOD!:w=0.18,s=0.93"} +{"timestamp":"2026-03-15T15:14:43.704396371Z","score":0.2754782942488271,"is_anomaly":false,"confidence":0.3282095645834052,"method":"SEAD","details":"MAD!:w=0.39,s=0.35 RRCF-fast:w=0.15,s=0.05 RRCF-mid:w=0.15,s=0.38 RRCF-slow:w=0.13,s=0.23 COPOD!:w=0.18,s=0.24"} +{"timestamp":"2026-03-15T15:15:13.739646833Z","score":0.7072545803417744,"is_anomaly":false,"confidence":0.8426352373661871,"method":"SEAD","details":"MAD!:w=0.39,s=0.72 RRCF-fast:w=0.15,s=0.68 RRCF-mid!:w=0.15,s=0.86 RRCF-slow:w=0.13,s=0.67 COPOD!:w=0.18,s=0.61"} +{"timestamp":"2026-03-15T15:15:43.746942279Z","score":0.3388547503712419,"is_anomaly":false,"confidence":0.4037173613972938,"method":"SEAD","details":"MAD!:w=0.39,s=0.29 RRCF-fast:w=0.15,s=0.41 RRCF-mid:w=0.15,s=0.57 RRCF-slow:w=0.13,s=0.40 COPOD!:w=0.18,s=0.13"} +{"timestamp":"2026-03-15T15:16:47.148344524Z","score":0.8092236322548041,"is_anomaly":false,"confidence":0.9641229147188307,"method":"SEAD","details":"MAD!:w=0.39,s=0.59 RRCF-fast!:w=0.15,s=1.00 RRCF-mid!:w=0.15,s=1.00 RRCF-slow!:w=0.13,s=1.00 COPOD!:w=0.18,s=0.83"} +{"timestamp":"2026-03-15T15:17:13.749612226Z","score":0.49604183073395114,"is_anomaly":false,"confidence":0.5916651067867893,"method":"SEAD","details":"MAD!:w=0.39,s=0.45 RRCF-fast:w=0.15,s=0.44 RRCF-mid:w=0.15,s=0.82 RRCF-slow:w=0.13,s=0.74 COPOD!:w=0.18,s=0.18"} +{"timestamp":"2026-03-15T15:18:05.282074126Z","score":0.7808643803450686,"is_anomaly":false,"confidence":0.9313936413371985,"method":"SEAD","details":"MAD!:w=0.39,s=0.58 RRCF-fast!:w=0.15,s=0.94 RRCF-mid!:w=0.14,s=0.97 RRCF-slow!:w=0.13,s=0.97 COPOD!:w=0.18,s=0.79"} +{"timestamp":"2026-03-15T15:18:43.749499959Z","score":0.49674089834020646,"is_anomaly":false,"confidence":0.5924989354767896,"method":"SEAD","details":"MAD!:w=0.39,s=0.53 RRCF-fast:w=0.15,s=0.45 RRCF-mid:w=0.14,s=0.72 RRCF-slow:w=0.13,s=0.78 COPOD!:w=0.18,s=0.07"} +{"timestamp":"2026-03-15T15:19:13.702035038Z","score":0.5093130092872135,"is_anomaly":false,"confidence":0.6074946050052851,"method":"SEAD","details":"MAD!:w=0.39,s=0.53 RRCF-fast:w=0.15,s=0.54 RRCF-mid:w=0.14,s=0.75 RRCF-slow:w=0.13,s=0.77 COPOD!:w=0.18,s=0.06"} +{"timestamp":"2026-03-15T15:19:57.779391936Z","score":0.7956290404894586,"is_anomaly":false,"confidence":0.9490045234841248,"method":"SEAD","details":"MAD!:w=0.39,s=0.59 RRCF-fast!:w=0.15,s=1.00 RRCF-mid!:w=0.14,s=1.00 RRCF-slow!:w=0.13,s=1.00 COPOD!:w=0.18,s=0.77"} +{"timestamp":"2026-03-15T15:20:13.758668952Z","score":0.9061071212822754,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.39,s=0.82 RRCF-fast!:w=0.15,s=0.98 RRCF-mid!:w=0.14,s=0.98 RRCF-slow!:w=0.13,s=0.99 COPOD!:w=0.18,s=0.91"} +{"timestamp":"2026-03-15T15:20:43.701499207Z","score":0.5215968706517744,"is_anomaly":false,"confidence":0.6221464583283473,"method":"SEAD","details":"MAD!:w=0.40,s=0.53 RRCF-fast:w=0.15,s=0.41 RRCF-mid:w=0.14,s=0.77 RRCF-slow:w=0.13,s=0.63 COPOD!:w=0.18,s=0.32"} +{"timestamp":"2026-03-15T15:21:35.304567061Z","score":0.7848163868241521,"is_anomaly":false,"confidence":0.9361074864014531,"method":"SEAD","details":"MAD!:w=0.40,s=0.58 RRCF-fast!:w=0.15,s=0.99 RRCF-mid!:w=0.14,s=0.99 RRCF-slow!:w=0.13,s=0.99 COPOD!:w=0.18,s=0.74"} +{"timestamp":"2026-03-15T15:21:45.844120978Z","score":0.9577540895097556,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.40,s=0.93 RRCF-fast!:w=0.15,s=0.96 RRCF-mid!:w=0.14,s=0.98 RRCF-slow!:w=0.13,s=0.98 COPOD!:w=0.18,s=0.99"} +{"timestamp":"2026-03-15T15:22:13.691799264Z","score":0.5873504740484339,"is_anomaly":false,"confidence":0.699779428615051,"method":"SEAD","details":"MAD!:w=0.40,s=0.54 RRCF-fast:w=0.15,s=0.70 RRCF-mid!:w=0.14,s=0.87 RRCF-slow:w=0.13,s=0.83 COPOD!:w=0.18,s=0.20"} +{"timestamp":"2026-03-15T15:23:07.44871213Z","score":0.7491124599785772,"is_anomaly":false,"confidence":0.8925054330832064,"method":"SEAD","details":"MAD!:w=0.40,s=0.59 RRCF-fast!:w=0.15,s=0.98 RRCF-mid!:w=0.14,s=0.99 RRCF-slow!:w=0.13,s=0.99 COPOD!:w=0.18,s=0.55"} +{"timestamp":"2026-03-15T15:23:15.700675931Z","score":0.8863512468700617,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.40,s=0.79 RRCF-fast!:w=0.15,s=0.93 RRCF-mid!:w=0.14,s=0.96 RRCF-slow!:w=0.13,s=0.96 COPOD!:w=0.18,s=0.94"} +{"timestamp":"2026-03-15T15:23:43.75822118Z","score":0.5588411238065905,"is_anomaly":false,"confidence":0.6651043031402928,"method":"SEAD","details":"MAD!:w=0.40,s=0.54 RRCF-fast:w=0.15,s=0.72 RRCF-mid:w=0.14,s=0.79 RRCF-slow:w=0.13,s=0.75 COPOD!:w=0.18,s=0.16"} +{"timestamp":"2026-03-15T15:24:40.8010478Z","score":0.7519908837106799,"is_anomaly":false,"confidence":0.8959348364863894,"method":"SEAD","details":"MAD!:w=0.40,s=0.58 RRCF-fast!:w=0.15,s=0.97 RRCF-mid!:w=0.14,s=0.98 RRCF-slow!:w=0.13,s=0.98 COPOD!:w=0.18,s=0.63"} +{"timestamp":"2026-03-15T15:24:43.93479424Z","score":0.8535215883211836,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.40,s=0.74 RRCF-fast:w=0.15,s=0.91 RRCF-mid:w=0.14,s=0.95 RRCF-slow!:w=0.13,s=0.96 COPOD!:w=0.18,s=0.91"} +{"timestamp":"2026-03-15T15:25:13.755142937Z","score":0.537501374518758,"is_anomaly":false,"confidence":0.6397068181044842,"method":"SEAD","details":"MAD!:w=0.40,s=0.54 RRCF-fast:w=0.15,s=0.50 RRCF-mid:w=0.14,s=0.84 RRCF-slow:w=0.13,s=0.83 COPOD!:w=0.18,s=0.14"} +{"timestamp":"2026-03-15T15:26:04.303646542Z","score":0.6988906288847911,"is_anomaly":false,"confidence":0.8317841062401395,"method":"SEAD","details":"MAD!:w=0.40,s=0.57 RRCF-fast:w=0.15,s=0.89 RRCF-mid:w=0.14,s=0.94 RRCF-slow:w=0.13,s=0.94 COPOD!:w=0.18,s=0.48"} +{"timestamp":"2026-03-15T15:26:13.895263051Z","score":0.7657226285670732,"is_anomaly":false,"confidence":0.9113241556076236,"method":"SEAD","details":"MAD!:w=0.41,s=0.58 RRCF-fast:w=0.15,s=0.91 RRCF-mid!:w=0.14,s=0.96 RRCF-slow!:w=0.13,s=0.96 COPOD!:w=0.18,s=0.78"} +{"timestamp":"2026-03-15T15:26:43.75058098Z","score":0.5433921200482256,"is_anomaly":false,"confidence":0.646717684043744,"method":"SEAD","details":"MAD!:w=0.41,s=0.53 RRCF-fast:w=0.15,s=0.65 RRCF-mid:w=0.14,s=0.88 RRCF-slow:w=0.13,s=0.88 COPOD!:w=0.18,s=0.01"} +{"timestamp":"2026-03-15T15:27:13.693061788Z","score":0.4964645233664704,"is_anomaly":false,"confidence":0.5908668435106311,"method":"SEAD","details":"MAD!:w=0.41,s=0.53 RRCF-fast:w=0.15,s=0.36 RRCF-mid:w=0.14,s=0.81 RRCF-slow:w=0.13,s=0.91 COPOD!:w=0.19,s=0.03"} +{"timestamp":"2026-03-15T15:27:43.753305675Z","score":0.8085355227298463,"is_anomaly":false,"confidence":0.9633030892288119,"method":"SEAD","details":"MAD!:w=0.41,s=0.70 RRCF-fast:w=0.15,s=0.86 RRCF-mid:w=0.13,s=0.92 RRCF-slow:w=0.12,s=0.93 COPOD!:w=0.19,s=0.84"} +{"timestamp":"2026-03-15T15:28:13.692017312Z","score":0.4757358487523707,"is_anomaly":false,"confidence":0.5667998496995815,"method":"SEAD","details":"MAD!:w=0.41,s=0.53 RRCF-fast:w=0.15,s=0.17 RRCF-mid:w=0.13,s=0.74 RRCF-slow:w=0.12,s=0.78 COPOD!:w=0.19,s=0.21"} +{"timestamp":"2026-03-15T15:28:47.789531402Z","score":0.5993832653161922,"is_anomaly":false,"confidence":0.714115502509667,"method":"SEAD","details":"MAD!:w=0.41,s=0.55 RRCF-fast:w=0.15,s=0.68 RRCF-mid:w=0.13,s=0.92 RRCF-slow:w=0.12,s=0.94 COPOD!:w=0.19,s=0.19"} +{"timestamp":"2026-03-15T15:29:13.739905169Z","score":0.7839633122903382,"is_anomaly":false,"confidence":0.934027336265429,"method":"SEAD","details":"MAD!:w=0.41,s=0.74 RRCF-fast:w=0.15,s=0.68 RRCF-mid:w=0.13,s=0.91 RRCF-slow:w=0.12,s=0.92 COPOD!:w=0.19,s=0.79"} +{"timestamp":"2026-03-15T15:29:43.752313706Z","score":0.5497401717666657,"is_anomaly":false,"confidence":0.6549698694103626,"method":"SEAD","details":"MAD!:w=0.41,s=0.52 RRCF-fast:w=0.15,s=0.59 RRCF-mid:w=0.13,s=0.85 RRCF-slow:w=0.12,s=0.90 COPOD!:w=0.19,s=0.15"} +{"timestamp":"2026-03-15T15:30:13.694775174Z","score":0.45934611398467184,"is_anomaly":false,"confidence":0.5472728385918204,"method":"SEAD","details":"MAD!:w=0.41,s=0.52 RRCF-fast:w=0.15,s=0.32 RRCF-mid:w=0.13,s=0.75 RRCF-slow:w=0.12,s=0.82 COPOD!:w=0.19,s=0.01"} +{"timestamp":"2026-03-15T15:30:43.737673406Z","score":0.9523633205434273,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.41,s=0.93 RRCF-fast!:w=0.15,s=0.98 RRCF-mid!:w=0.13,s=0.99 RRCF-slow!:w=0.12,s=0.98 COPOD!:w=0.19,s=0.93"} +{"timestamp":"2026-03-15T15:31:13.693718549Z","score":0.6920391060081388,"is_anomaly":false,"confidence":0.824507260279681,"method":"SEAD","details":"MAD!:w=0.41,s=0.51 RRCF-fast!:w=0.15,s=0.97 RRCF-mid!:w=0.13,s=0.99 RRCF-slow!:w=0.12,s=0.98 COPOD!:w=0.19,s=0.48"} +{"timestamp":"2026-03-15T15:31:43.692304192Z","score":0.5911276669593344,"is_anomaly":false,"confidence":0.7042796410329282,"method":"SEAD","details":"MAD!:w=0.41,s=0.51 RRCF-fast:w=0.15,s=0.87 RRCF-mid:w=0.13,s=0.92 RRCF-slow:w=0.12,s=0.93 COPOD!:w=0.19,s=0.12"} +{"timestamp":"2026-03-15T15:32:13.736921704Z","score":0.5070521026263541,"is_anomaly":false,"confidence":0.6041105716800202,"method":"SEAD","details":"MAD!:w=0.41,s=0.38 RRCF-fast:w=0.14,s=0.84 RRCF-mid:w=0.13,s=0.91 RRCF-slow:w=0.12,s=0.92 COPOD!:w=0.19,s=0.00"} +{"timestamp":"2026-03-15T15:32:43.69372004Z","score":0.524678789589526,"is_anomaly":false,"confidence":0.6251113088488263,"method":"SEAD","details":"MAD!:w=0.41,s=0.38 RRCF-fast:w=0.14,s=0.65 RRCF-mid:w=0.13,s=0.90 RRCF-slow:w=0.12,s=0.91 COPOD!:w=0.20,s=0.25"} +{"timestamp":"2026-03-15T15:33:13.740703846Z","score":0.8658666301741159,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.41,s=0.85 RRCF-fast:w=0.14,s=0.82 RRCF-mid:w=0.13,s=0.90 RRCF-slow:w=0.12,s=0.93 COPOD!:w=0.20,s=0.88"} +{"timestamp":"2026-03-15T15:33:43.696350608Z","score":0.5735138023608217,"is_anomaly":false,"confidence":0.6825669794346575,"method":"SEAD","details":"MAD!:w=0.41,s=0.39 RRCF-fast:w=0.14,s=0.54 RRCF-mid:w=0.13,s=0.89 RRCF-slow:w=0.12,s=0.88 COPOD!:w=0.20,s=0.59"} +{"timestamp":"2026-03-15T15:34:13.765191177Z","score":0.7461842519871011,"is_anomaly":false,"confidence":0.8890167158595405,"method":"SEAD","details":"MAD!:w=0.42,s=0.75 RRCF-fast:w=0.14,s=0.62 RRCF-mid:w=0.13,s=0.88 RRCF-slow:w=0.12,s=0.88 COPOD!:w=0.20,s=0.66"} +{"timestamp":"2026-03-15T15:34:43.74937209Z","score":0.503200853151511,"is_anomaly":false,"confidence":0.5995221270016944,"method":"SEAD","details":"MAD!:w=0.42,s=0.39 RRCF-fast:w=0.14,s=0.44 RRCF-mid:w=0.13,s=0.79 RRCF-slow:w=0.12,s=0.83 COPOD!:w=0.20,s=0.40"} +{"timestamp":"2026-03-15T15:35:13.705105207Z","score":0.37897435380830563,"is_anomaly":false,"confidence":0.4515165450362191,"method":"SEAD","details":"MAD!:w=0.42,s=0.24 RRCF-fast:w=0.14,s=0.34 RRCF-mid:w=0.13,s=0.79 RRCF-slow:w=0.12,s=0.86 COPOD!:w=0.20,s=0.14"} +{"timestamp":"2026-03-15T15:35:43.767092405Z","score":0.7972005071281915,"is_anomaly":false,"confidence":0.9497983572305627,"method":"SEAD","details":"MAD!:w=0.42,s=0.74 RRCF-fast:w=0.14,s=0.85 RRCF-mid:w=0.13,s=0.88 RRCF-slow:w=0.12,s=0.92 COPOD!:w=0.20,s=0.75"} +{"timestamp":"2026-03-15T15:36:13.702974278Z","score":0.49267779075790996,"is_anomaly":false,"confidence":0.5869847699815868,"method":"SEAD","details":"MAD!:w=0.42,s=0.42 RRCF-fast:w=0.14,s=0.14 RRCF-mid:w=0.13,s=0.72 RRCF-slow:w=0.12,s=0.82 COPOD!:w=0.20,s=0.57"} +{"timestamp":"2026-03-15T15:36:43.857547343Z","score":0.9223356712443334,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.42,s=0.87 RRCF-fast!:w=0.14,s=0.98 RRCF-mid!:w=0.13,s=0.98 RRCF-slow!:w=0.12,s=0.99 COPOD!:w=0.20,s=0.92"} +{"timestamp":"2026-03-15T15:37:13.772089691Z","score":0.6220756663616374,"is_anomaly":false,"confidence":0.7403628418712853,"method":"SEAD","details":"MAD!:w=0.42,s=0.51 RRCF-fast:w=0.14,s=0.87 RRCF-mid:w=0.13,s=0.96 RRCF-slow!:w=0.12,s=0.97 COPOD!:w=0.20,s=0.26"} +{"timestamp":"2026-03-15T15:37:43.706080794Z","score":0.5412434277865811,"is_anomaly":false,"confidence":0.6448467029021465,"method":"SEAD","details":"MAD!:w=0.42,s=0.50 RRCF-fast:w=0.14,s=0.78 RRCF-mid:w=0.12,s=0.86 RRCF-slow:w=0.11,s=0.89 COPOD!:w=0.20,s=0.05"} +{"timestamp":"2026-03-15T15:38:13.766944727Z","score":0.8433698569167225,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.42,s=0.88 RRCF-fast:w=0.14,s=0.88 RRCF-mid:w=0.12,s=0.95 RRCF-slow:w=0.11,s=0.94 COPOD!:w=0.20,s=0.63"} +{"timestamp":"2026-03-15T15:38:43.72572693Z","score":0.5055076558518721,"is_anomaly":false,"confidence":0.6016295201886452,"method":"SEAD","details":"MAD!:w=0.42,s=0.50 RRCF-fast:w=0.14,s=0.53 RRCF-mid:w=0.12,s=0.85 RRCF-slow:w=0.11,s=0.87 COPOD!:w=0.20,s=0.07"} +{"timestamp":"2026-03-15T15:39:13.75326199Z","score":0.9064694688952111,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.42,s=0.92 RRCF-fast:w=0.14,s=0.91 RRCF-mid:w=0.12,s=0.90 RRCF-slow:w=0.11,s=0.92 COPOD!:w=0.20,s=0.87"} +{"timestamp":"2026-03-15T15:39:43.709209681Z","score":0.8179862030292013,"is_anomaly":false,"confidence":0.9699021091643928,"method":"SEAD","details":"MAD!:w=0.42,s=0.94 RRCF-fast:w=0.14,s=0.82 RRCF-mid:w=0.12,s=0.91 RRCF-slow:w=0.11,s=0.92 COPOD!:w=0.20,s=0.44"} +{"timestamp":"2026-03-15T15:40:13.72669187Z","score":0.5245610830557536,"is_anomaly":false,"confidence":0.6219822522155314,"method":"SEAD","details":"MAD!:w=0.42,s=0.56 RRCF-fast:w=0.14,s=0.70 RRCF-mid:w=0.12,s=0.73 RRCF-slow:w=0.11,s=0.85 COPOD!:w=0.20,s=0.03"} +{"timestamp":"2026-03-15T15:40:43.758048013Z","score":0.532739842835015,"is_anomaly":false,"confidence":0.6340398850934976,"method":"SEAD","details":"MAD!:w=0.42,s=0.50 RRCF-fast:w=0.14,s=0.66 RRCF-mid:w=0.12,s=0.80 RRCF-slow:w=0.11,s=0.84 COPOD!:w=0.20,s=0.18"} +{"timestamp":"2026-03-15T15:41:13.722879143Z","score":0.7095011678141252,"is_anomaly":false,"confidence":0.8444122304062129,"method":"SEAD","details":"MAD!:w=0.42,s=0.77 RRCF-fast:w=0.14,s=0.82 RRCF-mid:w=0.12,s=0.85 RRCF-slow:w=0.11,s=0.89 COPOD!:w=0.21,s=0.32"} +{"timestamp":"2026-03-15T15:41:43.778622917Z","score":0.7150280430859627,"is_anomaly":false,"confidence":0.8509900364581008,"method":"SEAD","details":"MAD!:w=0.42,s=0.70 RRCF-fast:w=0.14,s=0.63 RRCF-mid:w=0.12,s=0.77 RRCF-slow:w=0.11,s=0.84 COPOD!:w=0.21,s=0.70"} +{"timestamp":"2026-03-15T15:42:13.696696011Z","score":0.47928779348682293,"is_anomaly":false,"confidence":0.5704239725940916,"method":"SEAD","details":"MAD!:w=0.42,s=0.49 RRCF-fast:w=0.14,s=0.37 RRCF-mid:w=0.12,s=0.63 RRCF-slow:w=0.11,s=0.79 COPOD!:w=0.21,s=0.27"} +{"timestamp":"2026-03-15T15:42:43.859605693Z","score":0.8655349253227662,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.42,s=0.85 RRCF-fast:w=0.14,s=0.74 RRCF-mid:w=0.12,s=0.92 RRCF-slow:w=0.11,s=0.94 COPOD!:w=0.21,s=0.91"} +{"timestamp":"2026-03-15T15:43:13.78354248Z","score":0.4905142566977345,"is_anomaly":false,"confidence":0.5816122697235191,"method":"SEAD","details":"MAD!:w=0.42,s=0.51 RRCF-fast:w=0.14,s=0.02 RRCF-mid:w=0.12,s=0.56 RRCF-slow:w=0.11,s=0.75 COPOD!:w=0.21,s=0.60"} +{"timestamp":"2026-03-15T15:43:43.705374855Z","score":0.5493293364381158,"is_anomaly":false,"confidence":0.6513504507339283,"method":"SEAD","details":"MAD!:w=0.42,s=0.49 RRCF-fast:w=0.14,s=0.44 RRCF-mid:w=0.12,s=0.56 RRCF-slow:w=0.11,s=0.76 COPOD!:w=0.21,s=0.62"} +{"timestamp":"2026-03-15T15:44:13.812941274Z","score":0.6636907705480212,"is_anomaly":false,"confidence":0.7898910238373188,"method":"SEAD","details":"MAD!:w=0.42,s=0.69 RRCF-fast:w=0.14,s=0.65 RRCF-mid:w=0.12,s=0.85 RRCF-slow:w=0.11,s=0.84 COPOD!:w=0.21,s=0.42"} +{"timestamp":"2026-03-15T15:44:43.725585591Z","score":0.5173245408868348,"is_anomaly":false,"confidence":0.6156933761785776,"method":"SEAD","details":"MAD!:w=0.42,s=0.48 RRCF-fast:w=0.14,s=0.31 RRCF-mid:w=0.12,s=0.45 RRCF-slow:w=0.11,s=0.73 COPOD!:w=0.21,s=0.65"} +{"timestamp":"2026-03-15T15:45:13.749856573Z","score":0.8273214763342598,"is_anomaly":false,"confidence":0.984635973534285,"method":"SEAD","details":"MAD!:w=0.42,s=0.90 RRCF-fast:w=0.14,s=0.58 RRCF-mid:w=0.12,s=0.83 RRCF-slow:w=0.11,s=0.86 COPOD!:w=0.21,s=0.83"} +{"timestamp":"2026-03-15T15:45:43.753609464Z","score":0.6924950210776646,"is_anomaly":false,"confidence":0.8241723788770157,"method":"SEAD","details":"MAD!:w=0.42,s=0.88 RRCF-fast:w=0.14,s=0.69 RRCF-mid:w=0.12,s=0.80 RRCF-slow:w=0.11,s=0.85 COPOD!:w=0.21,s=0.17"} +{"timestamp":"2026-03-15T15:46:13.724903493Z","score":0.42108090924764185,"is_anomaly":false,"confidence":0.5011490972660786,"method":"SEAD","details":"MAD!:w=0.41,s=0.49 RRCF-fast:w=0.14,s=0.16 RRCF-mid:w=0.12,s=0.22 RRCF-slow:w=0.11,s=0.73 COPOD!:w=0.21,s=0.42"} +{"timestamp":"2026-03-15T15:46:43.738430618Z","score":0.44745425198457867,"is_anomaly":false,"confidence":0.5325373093988014,"method":"SEAD","details":"MAD!:w=0.41,s=0.48 RRCF-fast:w=0.14,s=0.55 RRCF-mid:w=0.12,s=0.48 RRCF-slow:w=0.11,s=0.71 COPOD!:w=0.21,s=0.15"} +{"timestamp":"2026-03-15T15:47:13.754340418Z","score":0.6389428197551332,"is_anomaly":false,"confidence":0.760437270587852,"method":"SEAD","details":"MAD!:w=0.41,s=0.73 RRCF-fast:w=0.14,s=0.52 RRCF-mid:w=0.12,s=0.54 RRCF-slow:w=0.11,s=0.78 COPOD!:w=0.21,s=0.54"} +{"timestamp":"2026-03-15T15:47:43.748622794Z","score":0.48672608302341525,"is_anomaly":false,"confidence":0.579893803307088,"method":"SEAD","details":"MAD!:w=0.41,s=0.47 RRCF-fast:w=0.14,s=0.42 RRCF-mid:w=0.12,s=0.35 RRCF-slow:w=0.11,s=0.68 COPOD!:w=0.21,s=0.53"} +{"timestamp":"2026-03-15T15:48:13.706209875Z","score":0.44387099505921845,"is_anomaly":false,"confidence":0.5288355164853761,"method":"SEAD","details":"MAD!:w=0.41,s=0.48 RRCF-fast:w=0.14,s=0.30 RRCF-mid:w=0.12,s=0.39 RRCF-slow:w=0.11,s=0.67 COPOD!:w=0.21,s=0.39"} +{"timestamp":"2026-03-15T15:48:43.759391643Z","score":0.6065245233442207,"is_anomaly":false,"confidence":0.7226237198062353,"method":"SEAD","details":"MAD!:w=0.41,s=0.71 RRCF-fast:w=0.15,s=0.29 RRCF-mid:w=0.12,s=0.50 RRCF-slow:w=0.11,s=0.68 COPOD!:w=0.21,s=0.65"} +{"timestamp":"2026-03-15T15:49:13.702002421Z","score":0.44203391181082474,"is_anomaly":false,"confidence":0.526646783994844,"method":"SEAD","details":"MAD!:w=0.41,s=0.56 RRCF-fast:w=0.15,s=0.11 RRCF-mid:w=0.12,s=0.25 RRCF-slow:w=0.11,s=0.62 COPOD!:w=0.21,s=0.47"} +{"timestamp":"2026-03-15T15:49:43.740183618Z","score":0.8251300258650258,"is_anomaly":false,"confidence":0.9830740648816365,"method":"SEAD","details":"MAD!:w=0.41,s=0.94 RRCF-fast:w=0.15,s=0.37 RRCF-mid:w=0.12,s=0.77 RRCF-slow:w=0.11,s=0.87 COPOD!:w=0.21,s=0.92"} +{"timestamp":"2026-03-15T15:50:13.702185099Z","score":0.37829635065258654,"is_anomaly":false,"confidence":0.45070876044784874,"method":"SEAD","details":"MAD!:w=0.41,s=0.38 RRCF-fast:w=0.15,s=0.11 RRCF-mid:w=0.12,s=0.22 RRCF-slow:w=0.11,s=0.58 COPOD!:w=0.21,s=0.55"} +{"timestamp":"2026-03-15T15:50:43.70301141Z","score":0.32970613251547365,"is_anomaly":false,"confidence":0.39326444266684146,"method":"SEAD","details":"MAD!:w=0.41,s=0.38 RRCF-fast:w=0.15,s=0.11 RRCF-mid:w=0.12,s=0.34 RRCF-slow:w=0.11,s=0.57 COPOD!:w=0.21,s=0.26"} +{"timestamp":"2026-03-15T15:51:13.738230969Z","score":0.33312379490855804,"is_anomaly":false,"confidence":0.3973409367435074,"method":"SEAD","details":"MAD!:w=0.40,s=0.34 RRCF-fast:w=0.15,s=0.14 RRCF-mid:w=0.12,s=0.37 RRCF-slow:w=0.11,s=0.56 COPOD!:w=0.21,s=0.32"} +{"timestamp":"2026-03-15T15:51:43.703087123Z","score":0.28294912449337306,"is_anomaly":false,"confidence":0.33749396439186596,"method":"SEAD","details":"MAD!:w=0.40,s=0.23 RRCF-fast:w=0.15,s=0.10 RRCF-mid:w=0.12,s=0.43 RRCF-slow:w=0.11,s=0.68 COPOD!:w=0.21,s=0.22"} +{"timestamp":"2026-03-15T15:52:13.749337523Z","score":0.5216552004975764,"is_anomaly":false,"confidence":0.6222160325704917,"method":"SEAD","details":"MAD!:w=0.41,s=0.62 RRCF-fast:w=0.15,s=0.19 RRCF-mid:w=0.12,s=0.44 RRCF-slow:w=0.11,s=0.67 COPOD!:w=0.21,s=0.54"} +{"timestamp":"2026-03-15T15:52:43.708399525Z","score":0.4379424382378345,"is_anomaly":false,"confidence":0.5223657430323251,"method":"SEAD","details":"MAD!:w=0.40,s=0.46 RRCF-fast:w=0.15,s=0.08 RRCF-mid:w=0.12,s=0.29 RRCF-slow:w=0.11,s=0.61 COPOD!:w=0.21,s=0.65"} +{"timestamp":"2026-03-15T15:53:13.747093994Z","score":0.7863547647478477,"is_anomaly":false,"confidence":0.9379424214454494,"method":"SEAD","details":"MAD!:w=0.40,s=0.91 RRCF-fast:w=0.15,s=0.50 RRCF-mid:w=0.12,s=0.61 RRCF-slow:w=0.11,s=0.76 COPOD!:w=0.21,s=0.87"} +{"timestamp":"2026-03-15T15:53:43.706136337Z","score":0.37274231977309813,"is_anomaly":false,"confidence":0.44459682786468496,"method":"SEAD","details":"MAD:w=0.40,s=0.21 RRCF-fast:w=0.15,s=0.38 RRCF-mid:w=0.12,s=0.44 RRCF-slow:w=0.11,s=0.53 COPOD!:w=0.21,s=0.56"} +{"timestamp":"2026-03-15T15:54:13.787830405Z","score":0.687478702103268,"is_anomaly":false,"confidence":0.8214160383625796,"method":"SEAD","details":"MAD!:w=0.40,s=0.75 RRCF-fast:w=0.15,s=0.47 RRCF-mid:w=0.12,s=0.70 RRCF-slow:w=0.11,s=0.72 COPOD!:w=0.21,s=0.70"} +{"timestamp":"2026-03-15T15:54:43.762347984Z","score":0.2823466490587765,"is_anomaly":false,"confidence":0.3373545467012472,"method":"SEAD","details":"MAD:w=0.40,s=0.20 RRCF-fast:w=0.15,s=0.14 RRCF-mid:w=0.12,s=0.41 RRCF-slow:w=0.11,s=0.55 COPOD!:w=0.21,s=0.34"} +{"timestamp":"2026-03-15T15:55:13.694208348Z","score":0.22602095820260448,"is_anomaly":false,"confidence":0.2700552606294551,"method":"SEAD","details":"MAD!:w=0.40,s=0.25 RRCF-fast:w=0.15,s=0.01 RRCF-mid:w=0.12,s=0.28 RRCF-slow:w=0.11,s=0.57 COPOD!:w=0.21,s=0.14"} +{"timestamp":"2026-03-15T15:55:43.744150427Z","score":0.6728506786780777,"is_anomaly":false,"confidence":0.8039381252079842,"method":"SEAD","details":"MAD!:w=0.40,s=0.66 RRCF-fast:w=0.15,s=0.53 RRCF-mid:w=0.12,s=0.58 RRCF-slow:w=0.11,s=0.70 COPOD!:w=0.21,s=0.84"} +{"timestamp":"2026-03-15T15:56:13.708368576Z","score":0.39057034221598347,"is_anomaly":false,"confidence":0.4666628103873664,"method":"SEAD","details":"MAD!:w=0.40,s=0.38 RRCF-fast:w=0.15,s=0.31 RRCF-mid:w=0.12,s=0.36 RRCF-slow:w=0.11,s=0.54 COPOD!:w=0.21,s=0.40"} diff --git a/evaluation/data/pipeline_high-iops_run3/baseline_metrics.csv b/evaluation/data/pipeline_high-iops_run3/baseline_metrics.csv new file mode 100644 index 0000000..9d05232 --- /dev/null +++ b/evaluation/data/pipeline_high-iops_run3/baseline_metrics.csv @@ -0,0 +1,3248 @@ +timestamp,cpu_percent,cpu_count,cpu_freq_current,memory_percent,memory_available_mb,memory_used_mb,swap_percent,disk_io_read_mb_s,disk_io_write_mb_s,disk_io_read_count,disk_io_write_count,network_sent_mb_s,network_recv_mb_s,network_packets_sent,network_packets_recv,network_errin,network_errout,network_dropin,network_dropout,tixstream_active,transfer_job_manager_active +1773573959.020144,0.85,4,3992.50,52.95,1592.39,2073.21,0.00,3510517384772.692383,0.000000,11,0,0.000000,0.000672,9927322,8509264,0,0,30240,0,1,1 +1773573964.018579,0.60,4,3992.50,52.97,1591.65,2073.96,0.00,0.000000,0.000000,11,0,0.000000,0.000020,9927322,8509266,0,0,30242,0,1,1 +1773573969.021814,0.55,4,3992.50,53.00,1590.43,2075.18,0.00,2.011004,0.000195,246,2,0.000000,0.000030,9927322,8509269,0,0,30245,0,1,1 +1773573974.021419,0.70,4,3992.50,53.27,1580.09,2085.52,0.00,3518714988909.966309,3518714988911.798828,205,0,0.000000,0.000020,9927322,8509271,0,0,30247,0,1,1 +1773573979.017441,0.55,4,3992.50,53.26,1580.43,2085.18,0.00,16615.396786,17874.717370,1181662,1697606,0.000000,0.000030,9927322,8509274,0,0,30250,0,1,1 +1773573984.018580,0.60,4,3992.50,53.28,1579.46,2086.16,0.00,3517635850914.081543,3517635849656.229980,11,0,0.000000,0.000020,9927322,8509276,0,0,30252,0,1,1 +1773573989.021256,25.29,4,3992.50,54.96,1513.72,2151.81,0.00,0.000000,0.000000,11,0,30.169704,0.135539,9937137,8516694,0,0,30255,0,1,1 +1773573994.021746,7.63,4,3992.50,55.37,1497.50,2168.02,0.00,0.180256,0.000000,205,0,10.073169,0.049943,9940650,8519242,0,0,30257,0,1,1 +1773573999.021264,0.55,4,3992.50,55.12,1507.63,2157.88,0.00,1.476021,10.676225,251,273,0.001589,0.000796,9940680,8519263,0,0,30260,0,1,1 +1773574004.018395,0.75,4,3992.50,54.84,1522.11,2146.97,0.00,16619.824208,17872.009723,1183154,1699331,0.001590,0.000787,9940710,8519283,0,0,30262,0,1,1 +1773574009.017560,0.50,4,3992.50,54.84,1519.60,2146.97,0.00,3519024372457.227539,3519024371194.518555,246,2,0.001589,0.000796,9940740,8519304,0,0,30265,0,1,1 +1773574014.019708,0.60,4,3992.50,54.84,1519.38,2147.20,0.00,3516926713476.290039,3516926713478.248047,75,0,0.001589,0.000786,9940770,8519324,0,0,30267,0,1,1 +1773574019.017892,0.50,4,3992.50,54.85,1519.14,2147.44,0.00,3519715604083.762695,0.000000,11,0,0.001590,0.000796,9940800,8519345,0,0,30270,0,1,1 +1773574024.021977,0.55,4,3992.50,54.85,1519.15,2147.43,0.00,1.654800,10.666481,251,273,0.001588,0.001416,9940830,8519368,0,0,30272,0,1,1 +1773574029.021910,0.60,4,3992.50,54.85,1519.16,2147.42,0.00,3518484501535.479004,3518484501526.406738,75,0,0.001589,0.000784,9940860,8519388,0,0,30275,0,1,1 +1773574034.019140,0.75,4,3992.50,55.05,1519.84,2155.25,0.00,3520387540192.443359,0.000000,11,0,0.001598,0.000795,9940891,8519409,0,0,30277,0,1,1 +1773574039.017450,0.65,4,3992.50,55.03,1520.38,2154.71,0.00,0.053534,0.000000,75,0,0.001745,0.000922,9940931,8519440,0,0,30280,0,1,1 +1773574044.017475,0.55,4,3992.50,55.03,1520.40,2154.69,0.00,0.000000,0.000000,75,0,0.001413,0.000640,9940958,8519458,0,0,30282,0,1,1 +1773574049.022298,0.50,4,3992.50,55.03,1520.41,2154.68,0.00,0.126636,0.000000,205,0,0.001588,0.000795,9940988,8519479,0,0,30285,0,1,1 +1773574054.020942,1.55,4,3992.50,54.92,1525.05,2150.06,0.00,0.000000,0.000000,205,0,0.007274,0.004243,9941120,8519573,0,0,30287,0,1,1 +1773574059.020092,22.07,4,3992.50,55.65,1496.25,2178.80,0.00,1.476130,10.677011,251,273,32.206272,0.143189,9951545,8527245,0,0,30290,0,1,1 +1773574064.017452,5.43,4,3992.50,55.64,1496.61,2178.40,0.00,3520296171681.104004,3520296171671.899902,205,0,8.056929,0.035798,9954186,8529190,0,0,30292,0,1,1 +1773574069.017571,1.55,4,3992.50,54.52,1540.67,2134.40,0.00,16611.366969,17873.332263,1183154,1700964,0.004432,0.002726,9954263,8529239,0,0,30295,0,1,1 +1773574074.022315,0.55,4,3992.50,54.57,1538.50,2136.56,0.00,3515102012163.282227,3515102010911.673828,251,273,0.002257,0.001719,9954296,8529262,0,0,30297,0,1,1 +1773574079.022097,0.60,4,3992.50,54.62,1536.54,2138.52,0.00,16611.011976,17864.185675,1183154,1701148,0.001597,0.000804,9954327,8529284,0,0,30300,0,1,1 +1773574084.018667,0.45,4,3992.50,54.62,1536.67,2138.38,0.00,3520852832499.540527,3520852831236.536133,11,0,0.001590,0.000787,9954357,8529304,0,0,30302,0,1,1 +1773574089.021763,0.55,4,3992.50,54.62,1536.70,2138.36,0.00,16592.105311,17852.379312,1181665,1700891,0.000970,0.001202,9954375,8529322,0,0,30305,0,1,1 +1773574094.022070,0.80,4,3992.50,55.01,1524.26,2153.84,0.00,3518221416946.739258,3518221415685.762207,11,0,0.001413,0.000640,9954402,8529340,0,0,30307,0,1,1 +1773574099.021618,0.45,4,3992.50,55.01,1524.39,2153.78,0.00,16603.883299,17865.345396,1181665,1701168,0.001589,0.000796,9954432,8529361,0,0,30310,0,1,1 +1773574104.021601,0.50,4,3992.50,55.01,1524.41,2153.76,0.00,3518448798236.077637,3518448796974.671875,75,0,0.001620,0.000799,9954464,8529382,0,0,30312,0,1,1 +1773574109.019761,0.55,4,3992.50,55.01,1524.42,2153.75,0.00,16608.440579,17870.368938,1181665,1701250,0.001714,0.000910,9954502,8529412,0,0,30315,0,1,1 +1773574114.017435,0.75,4,3992.50,55.02,1524.18,2153.99,0.00,3520074950096.318359,3520074948834.267090,75,0,0.001640,0.000849,9954536,8529436,0,0,30317,0,1,1 +1773574119.021545,0.45,4,3992.50,54.99,1525.07,2153.10,0.00,16598.248319,17859.823658,1183154,1701571,0.001588,0.000795,9954566,8529457,0,0,30320,0,1,1 +1773574124.018558,5.28,4,3992.50,55.04,1520.58,2155.09,0.00,0.000000,0.164161,1183154,1701767,6.046904,0.028419,9956658,8530873,0,0,30322,0,1,1 +1773574129.021981,22.78,4,3992.50,55.48,1503.50,2172.09,0.00,3516029876316.730957,3516029875063.884766,251,273,34.184442,0.149351,9967585,8538970,0,0,30325,0,1,1 +1773574134.019529,1.35,4,3992.50,55.47,1503.96,2171.62,0.00,0.356327,3520163369559.042969,246,2,0.006985,0.004030,9967716,8539066,0,0,30327,0,1,1 +1773574139.021736,0.55,4,3992.50,55.10,1518.20,2157.38,0.00,3516885208142.211426,3516885208144.223145,11,0,0.001589,0.000796,9967746,8539087,0,0,30330,0,1,1 +1773574144.022403,0.55,4,3992.50,54.92,1525.48,2150.09,0.00,16600.168081,17862.455681,1181665,1702661,0.001589,0.000786,9967776,8539107,0,0,30332,0,1,1 +1773574149.021395,0.45,4,3992.50,54.92,1525.49,2150.09,0.00,3519146261542.089844,3519146260279.199219,205,0,0.001590,0.000796,9967806,8539128,0,0,30335,0,1,1 +1773574154.017475,0.95,4,3992.50,54.96,1524.81,2151.63,0.00,3521197789921.381836,0.000000,11,0,0.001590,0.001431,9967836,8539152,0,0,30337,0,1,1 +1773574159.017455,0.65,4,3992.50,54.95,1524.68,2151.59,0.00,2.012313,0.000195,246,2,0.003036,0.002553,9967883,8539198,0,0,30340,0,1,1 +1773574164.017435,0.50,4,3992.50,54.95,1524.70,2151.58,0.00,3518451378390.234863,10.675043,251,273,0.001589,0.000786,9967913,8539218,0,0,30342,0,1,1 +1773574169.022173,0.60,4,3992.50,54.96,1524.46,2151.80,0.00,3515106119270.691895,3515106119261.627930,75,0,0.001588,0.000795,9967943,8539239,0,0,30345,0,1,1 +1773574174.021591,0.70,4,3992.50,54.96,1524.47,2151.80,0.00,3518846713261.863281,0.000000,11,0,0.003078,0.002589,9967992,8539288,0,0,30347,0,1,1 +1773574179.021707,0.50,4,3992.50,54.96,1524.49,2151.78,0.00,0.000000,0.000000,11,0,0.001620,0.000821,9968024,8539311,0,0,30350,0,1,1 +1773574184.022328,0.65,4,3992.50,55.25,1513.18,2163.09,0.00,16600.320230,17863.199405,1181665,1702989,0.001602,0.000786,9968055,8539331,0,0,30352,0,1,1 +1773574189.021762,0.55,4,3992.50,55.25,1513.01,2163.27,0.00,3518834900150.384277,3518834898887.025391,205,0,0.001577,0.000796,9968084,8539352,0,0,30355,0,1,1 +1773574194.021860,10.28,4,3992.50,56.09,1480.29,2196.03,0.00,1.831995,0.000195,246,2,12.121234,0.059186,9972062,8542287,0,0,30357,0,1,1 +1773574199.017437,16.98,4,3992.50,56.20,1475.93,2200.32,0.00,3521552909156.358887,3521552909158.373047,11,0,28.160246,0.122758,9981084,8549010,0,0,30360,0,1,1 +1773574204.017456,0.90,4,3992.50,55.72,1494.57,2181.68,0.00,16611.878557,17876.284735,1183154,1704135,0.001651,0.000837,9981118,8549034,0,0,30362,0,1,1 +1773574209.017640,0.75,4,3992.50,55.38,1507.88,2168.36,0.00,0.000000,0.010742,1183154,1704158,0.001589,0.000796,9981148,8549055,0,0,30365,0,1,1 +1773574214.019917,0.85,4,3992.50,55.49,1506.38,2172.45,0.00,0.000000,0.228607,1183154,1704193,0.001596,0.000781,9981179,8549075,0,0,30367,0,1,1 +1773574219.020236,0.65,4,3992.50,55.30,1513.83,2164.98,0.00,3518212087916.532227,3518212086649.950195,246,2,0.001589,0.001427,9981209,8549099,0,0,30370,0,1,1 +1773574224.017456,0.50,4,3992.50,55.34,1512.12,2166.70,0.00,3520394863852.869629,3520394863854.883301,11,0,0.001590,0.000787,9981239,8549119,0,0,30372,0,1,1 +1773574229.022042,0.55,4,3992.50,55.34,1512.12,2166.68,0.00,1.654635,10.665413,251,273,0.001588,0.000795,9981269,8549140,0,0,30375,0,1,1 +1773574234.022388,0.50,4,3992.50,55.14,1519.77,2159.04,0.00,3518194102372.762207,3518194102363.690430,75,0,0.001589,0.000786,9981299,8549160,0,0,30377,0,1,1 +1773574239.019933,0.65,4,3992.50,55.14,1519.79,2159.02,0.00,0.126820,0.000000,205,0,0.001590,0.000797,9981329,8549181,0,0,30380,0,1,1 +1773574244.021503,0.75,4,3992.50,55.67,1499.96,2179.62,0.00,1.831456,0.000195,246,2,0.001744,0.000899,9981369,8549210,0,0,30382,0,1,1 +1773574249.019772,0.55,4,3992.50,55.59,1502.54,2176.34,0.00,16615.685399,17883.964744,1183154,1705039,0.001590,0.000796,9981399,8549231,0,0,30385,0,1,1 +1773574254.022428,0.55,4,3992.50,55.59,1502.21,2176.66,0.00,3516569202667.134277,3516569201401.978516,11,0,0.001596,0.000794,9981430,8549252,0,0,30387,0,1,1 +1773574259.017433,0.60,4,3992.50,55.58,1502.64,2176.25,0.00,16628.553179,17895.705209,1183154,1705096,0.001591,0.000797,9981460,8549273,0,0,30390,0,1,1 +1773574264.021582,13.52,4,3992.50,55.62,1501.30,2177.59,0.00,3515520490777.348145,3515520489521.522949,251,273,16.108262,0.083229,9987068,8553440,0,0,30392,0,1,1 +1773574269.021897,13.11,4,3992.50,54.75,1535.25,2143.60,0.00,16609.242069,17866.566815,1183155,1706094,24.138094,0.104288,9994868,8559338,0,0,30395,0,1,1 +1773574274.021576,0.85,4,3992.50,55.33,1518.20,2166.48,0.00,0.000000,0.211439,1183155,1706125,0.001589,0.000786,9994898,8559358,0,0,30397,0,1,1 +1773574279.021041,0.40,4,3992.50,55.34,1517.96,2166.71,0.00,3518813954496.414062,3518813953229.644043,11,0,0.001589,0.000796,9994928,8559379,0,0,30400,0,1,1 +1773574284.017447,0.55,4,3992.50,55.35,1517.49,2167.18,0.00,0.053554,0.000000,75,0,0.001590,0.001109,9994958,8559401,0,0,30402,0,1,1 +1773574289.017638,0.55,4,3992.50,55.35,1517.50,2167.18,0.00,3518302151114.811035,0.000000,11,0,0.001577,0.001105,9994987,8559423,0,0,30405,0,1,1 +1773574294.017972,0.60,4,3992.50,55.35,1517.51,2167.17,0.00,1.656042,10.674483,251,273,0.001589,0.000786,9995017,8559443,0,0,30407,0,1,1 +1773574299.021015,0.50,4,3992.50,55.31,1519.36,2165.31,0.00,3516297242421.059082,3516297242411.992188,75,0,0.001596,0.000804,9995048,8559465,0,0,30410,0,1,1 +1773574304.022263,0.80,4,3992.50,55.53,1512.50,2174.15,0.00,16607.745038,17874.861181,1183155,1706769,0.001413,0.000640,9995075,8559483,0,0,30412,0,1,1 +1773574309.017466,0.50,4,3992.50,55.53,1510.46,2174.10,0.00,0.000000,0.006647,1183155,1706779,0.001591,0.000797,9995105,8559504,0,0,30415,0,1,1 +1773574314.017440,0.55,4,3992.50,55.39,1516.06,2168.50,0.00,3518455275723.989746,3518455274456.597656,11,0,0.001745,0.000912,9995145,8559534,0,0,30417,0,1,1 +1773574319.017472,0.50,4,3992.50,55.40,1515.62,2168.93,0.00,0.180272,0.000000,205,0,0.001589,0.000796,9995175,8559555,0,0,30420,0,1,1 +1773574324.021031,0.60,4,3992.50,55.40,1515.41,2169.14,0.00,16599.948587,17866.687118,1183155,1706864,0.001588,0.000786,9995205,8559575,0,0,30422,0,1,1 +1773574329.017463,0.50,4,3992.50,55.40,1515.41,2169.16,0.00,3520949308621.122070,3520949307352.757324,11,0,0.001590,0.000784,9995235,8559595,0,0,30425,0,1,1 +1773574334.022603,18.73,4,3992.50,56.05,1490.92,2194.65,0.00,1.654452,10.664234,251,273,28.148984,0.127945,10004514,8566434,0,0,30427,0,1,1 +1773574339.021773,7.38,4,3992.50,56.58,1470.12,2215.39,0.00,0.356212,3519021645172.137695,246,2,12.089179,0.059560,10008772,8569662,0,0,30430,0,1,1 +1773574344.022326,0.60,4,3992.50,56.03,1491.72,2193.78,0.00,0.000000,0.000000,246,2,0.001576,0.000774,10008801,8569681,0,0,30432,0,1,1 +1773574349.021470,0.55,4,3992.50,55.79,1501.25,2184.25,0.00,16612.777343,17883.017294,1183155,1707927,0.001589,0.001118,10008831,8569704,0,0,30435,0,1,1 +1773574354.018417,0.50,4,3992.50,55.79,1501.31,2184.20,0.00,3520586947156.931641,3520586945897.170898,251,273,0.001590,0.001109,10008861,8569726,0,0,30437,0,1,1 +1773574359.021496,0.50,4,3992.50,55.80,1500.77,2184.73,0.00,0.000000,0.000000,251,273,0.001588,0.000796,10008891,8569747,0,0,30440,0,1,1 +1773574364.020567,0.80,4,3992.50,55.74,1500.27,2182.30,0.00,0.000000,0.000000,251,273,0.001589,0.000774,10008921,8569766,0,0,30442,0,1,1 +1773574369.021593,0.80,4,3992.50,55.74,1500.34,2182.22,0.00,3517715372280.119629,3517715372271.048828,75,0,0.003762,0.001817,10008995,8569814,0,0,30445,0,1,1 +1773574374.019156,0.50,4,3992.50,55.74,1500.35,2182.21,0.00,0.126820,0.000000,205,0,0.002260,0.001709,10009028,8569836,0,0,30447,0,1,1 +1773574379.017465,0.55,4,3992.50,55.74,1500.37,2182.18,0.00,16617.387019,17887.027214,1183155,1708591,0.001590,0.000796,10009058,8569857,0,0,30450,0,1,1 +1773574384.017631,0.50,4,3992.50,55.74,1500.38,2182.18,0.00,3518320732336.874023,3518320731067.705078,205,0,0.001753,0.000920,10009099,8569888,0,0,30452,0,1,1 +1773574389.020767,0.50,4,3992.50,55.74,1500.39,2182.16,0.00,1.474954,10.668503,251,273,0.001588,0.000796,10009129,8569909,0,0,30455,0,1,1 +1773574394.021549,0.80,4,3992.50,55.74,1500.05,2182.34,0.00,0.000000,0.000000,251,273,0.001589,0.000786,10009159,8569929,0,0,30457,0,1,1 +1773574399.017861,3.82,4,3992.50,55.42,1512.53,2169.90,0.00,3521034917883.515137,3521034917874.436523,75,0,2.017976,0.010820,10009839,8570416,0,0,30460,0,1,1 +1773574404.017456,20.55,4,3992.50,55.88,1494.42,2187.94,0.00,16603.671988,17872.280467,1181666,1709336,34.215164,0.154045,10020953,8578839,0,0,30462,0,1,1 +1773574409.019941,4.47,4,3992.50,55.67,1502.70,2179.68,0.00,9.556775,10.699664,1183155,1709730,4.030232,0.023226,10022381,8579991,0,0,30465,0,1,1 +1773574414.019125,0.55,4,3992.50,55.69,1501.98,2180.40,0.00,3519011841274.516113,3519011840004.712891,11,0,0.001640,0.001332,10022415,8580018,0,0,30467,0,1,1 +1773574419.017578,0.55,4,3992.50,55.66,1503.13,2179.27,0.00,16607.519191,17876.405706,1181666,1709480,0.001590,0.000945,10022445,8580039,0,0,30470,0,1,1 +1773574424.017448,0.75,4,3992.50,55.76,1499.86,2183.20,0.00,3518528781696.121094,3518528780427.593750,11,0,0.001577,0.000786,10022474,8580059,0,0,30472,0,1,1 +1773574429.017440,0.45,4,3992.50,55.75,1500.12,2182.79,0.00,0.000000,0.000000,11,0,0.000991,0.000567,10022494,8580074,0,0,30475,0,1,1 +1773574434.017448,0.90,4,3992.50,55.76,1499.66,2183.24,0.00,0.000000,0.000000,11,0,0.001413,0.000640,10022521,8580092,0,0,30477,0,1,1 +1773574439.017457,0.50,4,3992.50,55.76,1499.67,2183.23,0.00,1.656149,10.675177,251,273,0.001589,0.000796,10022551,8580113,0,0,30480,0,1,1 +1773574444.019179,0.45,4,3992.50,55.57,1507.31,2175.59,0.00,3517225715256.325195,3517225715247.255859,75,0,0.001589,0.000773,10022581,8580132,0,0,30482,0,1,1 +1773574449.020114,0.65,4,3992.50,55.57,1507.11,2175.80,0.00,3517779888493.633789,0.000000,11,0,0.001620,0.000809,10022613,8580154,0,0,30485,0,1,1 +1773574454.019465,0.60,4,3992.50,55.71,1504.45,2181.20,0.00,0.000000,0.000000,11,0,0.001722,0.000895,10022652,8580183,0,0,30487,0,1,1 +1773574459.017590,0.65,4,3992.50,55.72,1504.21,2181.38,0.00,16618.180293,17889.450824,1183155,1710493,0.003024,0.002566,10022698,8580230,0,0,30490,0,1,1 +1773574464.017574,0.55,4,3992.50,55.72,1504.22,2181.38,0.00,3518447824734.415527,3518447824733.333984,1181666,1710259,0.001589,0.000786,10022728,8580250,0,0,30492,0,1,1 +1773574469.021714,7.12,4,3992.50,56.33,1480.28,2205.32,0.00,3515526664552.810547,3515526663284.095215,75,0,8.043440,0.036527,10025248,8582071,0,0,30495,0,1,1 +1773574474.020771,19.49,4,3992.50,56.59,1469.81,2215.72,0.00,16605.463750,17875.890110,1181666,1711206,32.202955,0.144419,10035678,8590042,0,0,30497,0,1,1 +1773574479.019922,1.46,4,3992.50,56.11,1488.74,2196.75,0.00,3519034470963.557617,3519034469693.155273,75,0,0.014136,0.007037,10035942,8590229,0,0,30500,0,1,1 +1773574484.021330,0.75,4,3992.50,56.43,1473.54,2209.50,0.00,16597.654374,17867.938314,1181666,1711336,0.001589,0.001430,10035972,8590253,0,0,30502,0,1,1 +1773574489.020316,0.55,4,3992.50,55.94,1492.94,2190.13,0.00,9.563464,11.181273,1183155,1712133,0.001590,0.000796,10036002,8590274,0,0,30505,0,1,1 +1773574494.021609,0.55,4,3992.50,55.97,1491.86,2191.22,0.00,3517527484810.352051,3517527484809.250488,1181666,1711868,0.001589,0.000786,10036032,8590294,0,0,30507,0,1,1 +1773574499.019477,0.65,4,3992.50,55.93,1493.20,2189.87,0.00,0.000000,0.003419,1181666,1711875,0.000979,0.000567,10036051,8590309,0,0,30510,0,1,1 +1773574504.018257,0.55,4,3992.50,55.92,1493.51,2189.56,0.00,3519295962435.439941,3519295961163.842285,205,0,0.001652,0.000837,10036085,8590333,0,0,30512,0,1,1 +1773574509.017726,0.65,4,3992.50,55.94,1493.04,2190.04,0.00,16613.530146,17886.217323,1183155,1712268,0.001589,0.000796,10036115,8590354,0,0,30515,0,1,1 +1773574514.022124,0.85,4,3992.50,55.62,1505.45,2177.46,0.00,3515345015780.373535,3515345015779.355957,1181666,1712058,0.001588,0.000786,10036145,8590374,0,0,30517,0,1,1 +1773574519.021497,0.50,4,3992.50,55.65,1504.02,2178.93,0.00,3518878433596.869141,3518878432325.176758,205,0,0.001714,0.000897,10036183,8590403,0,0,30520,0,1,1 +1773574524.022009,0.50,4,3992.50,55.65,1504.02,2178.92,0.00,16600.504423,17871.958279,1181666,1712118,0.001628,0.000819,10036216,8590426,0,0,30522,0,1,1 +1773574529.021403,0.55,4,3992.50,55.66,1503.79,2179.14,0.00,3518863774987.212402,3518863773715.654297,11,0,0.001589,0.000796,10036246,8590447,0,0,30525,0,1,1 +1773574534.022089,0.50,4,3992.50,55.48,1510.97,2171.98,0.00,0.180249,0.000000,205,0,0.001589,0.000786,10036276,8590467,0,0,30527,0,1,1 +1773574539.021538,8.89,4,3992.50,56.62,1466.18,2216.77,0.00,1.832233,0.000195,246,2,10.081251,0.055679,10039822,8593128,0,0,30530,0,1,1 +1773574544.021909,18.62,4,3992.50,57.10,1447.33,2235.66,0.00,3518176095480.462891,3518176095482.475098,11,0,30.177096,0.126866,10049532,8600170,0,0,30532,0,1,1 +1773574549.021456,0.70,4,3992.50,57.09,1447.26,2235.28,0.00,0.180290,0.000000,205,0,0.002068,0.002731,10049578,8600220,0,0,30535,0,1,1 +1773574554.017544,0.55,4,3992.50,56.80,1458.64,2223.89,0.00,1.833466,0.000195,246,2,0.001590,0.000774,10049608,8600239,0,0,30537,0,1,1 +1773574559.019175,0.60,4,3992.50,56.61,1466.23,2216.30,0.00,3517289951203.689941,3517289951205.701660,11,0,0.002733,0.003942,10049673,8600319,0,0,30540,0,1,1 +1773574564.017642,0.65,4,3992.50,56.61,1466.25,2216.29,0.00,0.000000,0.000000,11,0,0.002734,0.003956,10049738,8600399,0,0,30542,0,1,1 +1773574569.022066,0.65,4,3992.50,56.61,1466.26,2216.27,0.00,16597.260002,17870.169575,1183155,1714146,0.002739,0.003944,10049804,8600479,0,0,30545,0,1,1 +1773574574.022320,0.50,4,3992.50,56.61,1466.05,2216.48,0.00,3518258718461.378418,3518258718460.349609,1181666,1713913,0.001401,0.000653,10049830,8600498,0,0,30547,0,1,1 +1773574579.018939,0.85,4,3992.50,56.31,1477.79,2204.70,0.00,3520817887655.130371,3520817886390.286621,251,273,0.001953,0.003583,10049881,8600570,0,0,30550,0,1,1 +1773574584.021555,0.55,4,3992.50,56.31,1477.80,2204.68,0.00,16601.601338,17866.127787,1183155,1714256,0.002732,0.003952,10049946,8600650,0,0,30552,0,1,1 +1773574589.022162,0.55,4,3992.50,56.34,1476.83,2205.65,0.00,3518010340115.507324,3518010338841.401367,75,0,0.002504,0.003343,10050004,8600720,0,0,30555,0,1,1 +1773574594.017558,0.60,4,3992.50,56.34,1476.85,2205.64,0.00,0.126875,0.000000,205,0,0.002744,0.003966,10050070,8600801,0,0,30557,0,1,1 +1773574599.021722,0.65,4,3992.50,56.33,1476.98,2205.50,0.00,3515509714572.991211,0.000000,75,0,0.002731,0.003961,10050135,8600882,0,0,30560,0,1,1 +1773574604.021605,0.80,4,3992.50,56.44,1478.62,2209.79,0.00,3518519055969.722656,0.000000,11,0,0.002721,0.003954,10050199,8600962,0,0,30562,0,1,1 +1773574609.021479,16.68,4,3992.50,57.36,1442.50,2245.84,0.00,16612.365232,17887.018163,1183155,1714953,22.143476,0.103835,10057386,8606380,0,0,30565,0,1,1 +1773574614.018592,10.91,4,3992.50,56.80,1464.61,2223.68,0.00,3520469658684.470215,3520469657407.099609,246,2,18.125695,0.085069,10063444,8610891,0,0,30567,0,1,1 +1773574619.021932,0.60,4,3992.50,56.69,1468.63,2219.66,0.00,3516088648719.758789,3516088648721.770020,11,0,0.002503,0.003328,10063502,8610960,0,0,30570,0,1,1 +1773574624.017453,0.80,4,3992.50,56.63,1471.05,2217.23,0.00,0.180435,0.000000,205,0,0.002736,0.003958,10063567,8611040,0,0,30572,0,1,1 +1773574629.022058,0.70,4,3992.50,56.62,1471.39,2216.89,0.00,1.474521,10.665372,251,273,0.002719,0.003961,10063631,8611121,0,0,30575,0,1,1 +1773574634.017464,0.85,4,3992.50,56.75,1481.16,2222.06,0.00,16615.994311,17882.637400,1181666,1715529,0.002736,0.003945,10063696,8611200,0,0,30577,0,1,1 +1773574639.018060,0.70,4,3992.50,56.71,1480.84,2220.32,0.00,3518017590584.804688,3518017589319.476074,251,273,0.002741,0.003972,10063762,8611282,0,0,30580,0,1,1 +1773574644.018813,0.65,4,3992.50,56.70,1481.09,2220.08,0.00,3517907993799.712891,3517907993790.642090,75,0,0.002733,0.003954,10063827,8611362,0,0,30582,0,1,1 +1773574649.022082,0.55,4,3992.50,56.70,1481.10,2220.07,0.00,16591.482790,17865.346432,1181666,1715663,0.002530,0.003411,10063887,8611437,0,0,30585,0,1,1 +1773574654.017564,0.55,4,3992.50,56.70,1481.11,2220.07,0.00,3521619365573.037598,3521619364297.241699,11,0,0.002709,0.003887,10063950,8611512,0,0,30587,0,1,1 +1773574659.017553,0.60,4,3992.50,56.71,1480.88,2220.29,0.00,0.000000,0.000000,11,0,0.002742,0.003972,10064016,8611594,0,0,30590,0,1,1 +1773574664.017454,0.80,4,3992.50,56.39,1491.89,2207.81,0.00,2.012344,0.000195,246,2,0.002721,0.003954,10064080,8611674,0,0,30592,0,1,1 +1773574669.022185,0.75,4,3992.50,56.39,1492.04,2207.77,0.00,16584.679825,17860.453126,1181666,1716007,0.005584,0.005889,10064193,8611783,0,0,30595,0,1,1 +1773574674.021973,0.75,4,3992.50,56.39,1492.06,2207.76,0.00,3518586677326.662598,3518586676049.628418,246,2,0.004117,0.004340,10064281,8611877,0,0,30597,0,1,1 +1773574679.022339,17.21,4,3992.50,56.67,1481.13,2218.66,0.00,3518179890612.916016,10.674219,251,273,24.168388,0.121347,10072534,8617985,0,0,30600,0,1,1 +1773574684.022398,8.59,4,3992.50,56.37,1492.67,2207.05,0.00,16600.529847,17867.018964,1181666,1717055,16.094620,0.068259,10077799,8621808,0,0,30602,0,1,1 +1773574689.017585,0.55,4,3992.50,56.28,1496.18,2203.54,0.00,3521827547189.863770,3521827545922.139160,251,273,0.002736,0.003968,10077864,8621889,0,0,30605,0,1,1 +1773574694.018812,1.75,4,3992.50,56.08,1502.10,2195.62,0.00,16606.211494,17874.094312,1183155,1717699,0.002733,0.003953,10077929,8621969,0,0,30607,0,1,1 +1773574699.022058,0.70,4,3992.50,56.12,1500.31,2197.26,0.00,3516154990384.116699,3516154989107.731934,11,0,0.002719,0.003962,10077993,8622050,0,0,30610,0,1,1 +1773574704.022140,0.55,4,3992.50,56.13,1500.10,2197.49,0.00,16602.110175,17878.268838,1181666,1717486,0.002734,0.003954,10078058,8622130,0,0,30612,0,1,1 +1773574709.021403,0.55,4,3992.50,56.14,1499.64,2197.95,0.00,9.562933,10.735176,1183155,1717808,0.002505,0.003331,10078116,8622199,0,0,30615,0,1,1 +1773574714.022164,0.55,4,3992.50,55.95,1507.07,2190.52,0.00,3517901889325.117676,3517901888045.948242,246,2,0.002784,0.004016,10078185,8622283,0,0,30617,0,1,1 +1773574719.018769,0.60,4,3992.50,55.95,1507.08,2190.51,0.00,0.000000,0.000000,246,2,0.002514,0.003341,10078244,8622353,0,0,30620,0,1,1 +1773574724.017603,0.80,4,3992.50,56.24,1501.08,2201.78,0.00,0.000000,0.000000,246,2,0.002734,0.003955,10078309,8622433,0,0,30622,0,1,1 +1773574729.017640,0.55,4,3992.50,56.26,1500.14,2202.72,0.00,3518411554735.177246,3518411554737.189453,11,0,0.002734,0.003964,10078374,8622514,0,0,30625,0,1,1 +1773574734.021976,0.65,4,3992.50,56.27,1499.91,2202.96,0.00,0.000000,0.000000,11,0,0.002719,0.003951,10078438,8622594,0,0,30627,0,1,1 +1773574739.018778,0.60,4,3992.50,56.27,1499.92,2202.95,0.00,0.000000,0.000000,11,0,0.002735,0.003967,10078503,8622675,0,0,30630,0,1,1 +1773574744.017471,3.16,4,3992.50,56.33,1497.29,2205.58,0.00,0.000000,0.000000,11,0,2.020677,0.016726,10079256,8623264,0,0,30632,0,1,1 +1773574749.022697,20.31,4,3992.50,56.86,1476.50,2226.33,0.00,0.000000,0.000000,11,0,32.187910,0.143570,10089749,8631007,0,0,30635,0,1,1 +1773574754.021646,4.92,4,3992.50,56.53,1490.95,2213.18,0.00,0.053527,0.000000,75,0,6.023859,0.030086,10091806,8632499,0,0,30637,0,1,1 +1773574759.018503,0.65,4,3992.50,56.54,1490.34,2213.78,0.00,16612.774860,17891.402775,1181666,1719329,0.002191,0.003557,10091861,8632572,0,0,30640,0,1,1 +1773574764.021662,0.60,4,3992.50,56.54,1490.34,2213.76,0.00,3516215706270.198730,3516215704993.054688,205,0,0.002719,0.003939,10091925,8632651,0,0,30642,0,1,1 +1773574769.022276,0.60,4,3992.50,56.54,1490.36,2213.75,0.00,3518004938247.892090,0.000000,75,0,0.002708,0.003964,10091988,8632732,0,0,30645,0,1,1 +1773574774.022314,0.70,4,3992.50,56.54,1490.38,2213.73,0.00,3518410457704.754395,0.000000,11,0,0.003230,0.005054,10092065,8632835,0,0,30647,0,1,1 +1773574779.021912,0.65,4,3992.50,56.54,1490.39,2213.72,0.00,0.180288,0.000000,205,0,0.003656,0.004634,10092132,8632919,0,0,30650,0,1,1 +1773574784.022136,0.75,4,3992.50,56.54,1481.11,2213.68,0.00,16611.019615,17890.551266,1183155,1719979,0.002721,0.003942,10092196,8632998,0,0,30652,0,1,1 +1773574789.017553,0.60,4,3992.50,56.50,1482.36,2212.06,0.00,0.000000,0.043888,1183155,1720025,0.002507,0.003346,10092254,8633068,0,0,30655,0,1,1 +1773574794.021876,0.60,4,3992.50,56.50,1482.38,2212.05,0.00,3515397350843.291992,3515397349564.891602,75,0,0.002739,0.003971,10092320,8633150,0,0,30657,0,1,1 +1773574799.021807,0.75,4,3992.50,56.50,1482.39,2212.04,0.00,16612.121312,17891.708334,1183155,1720093,0.002734,0.003964,10092385,8633231,0,0,30660,0,1,1 +1773574804.021650,0.50,4,3992.50,56.49,1482.73,2211.69,0.00,3518547728151.843750,3518547726872.288086,11,0,0.002796,0.004018,10092454,8633316,0,0,30662,0,1,1 +1773574809.018222,0.60,4,3992.50,56.42,1485.54,2208.89,0.00,1.657289,10.682520,251,273,0.002735,0.004611,10092519,8633401,0,0,30665,0,1,1 +1773574814.022277,6.12,4,3992.50,56.96,1465.18,2229.94,0.00,3515586003945.615234,3515586003936.550293,75,0,8.049312,0.040792,10095242,8635465,0,0,30667,0,1,1 +1773574819.022190,21.76,4,3992.50,57.56,1440.86,2253.51,0.00,16612.180061,17892.473709,1183156,1721143,32.201090,0.146570,10105647,8643430,0,0,30670,0,1,1 +1773574824.021855,1.20,4,3992.50,57.27,1452.24,2242.14,0.00,3518672979251.381836,3518672977971.024902,75,0,0.008057,0.007085,10105813,8643586,0,0,30672,0,1,1 +1773574829.019600,0.35,4,3992.50,56.88,1467.48,2226.90,0.00,16609.821505,17890.014851,1181667,1721316,0.002735,0.003966,10105878,8643667,0,0,30675,0,1,1 +1773574834.017445,0.55,4,3992.50,56.79,1470.75,2223.62,0.00,3519954711636.321289,3519954710356.026855,205,0,0.002514,0.003330,10105937,8643736,0,0,30677,0,1,1 +1773574839.022201,0.60,4,3992.50,56.78,1471.13,2223.25,0.00,3515093707287.128418,0.000000,11,0,0.002731,0.003960,10106002,8643817,0,0,30680,0,1,1 +1773574844.018386,0.95,4,3992.50,57.12,1457.55,2236.27,0.00,1.657417,10.683347,251,273,0.002736,0.003957,10106067,8643897,0,0,30682,0,1,1 +1773574849.017447,0.55,4,3992.50,57.11,1457.71,2236.11,0.00,0.000000,0.000000,251,273,0.002734,0.003952,10106132,8643977,0,0,30685,0,1,1 +1773574854.022107,0.65,4,3992.50,57.12,1457.49,2236.32,0.00,16585.272601,17855.212101,1181667,1721705,0.002502,0.003330,10106190,8644046,0,0,30687,0,1,1 +1773574859.021969,0.60,4,3992.50,57.12,1457.51,2236.31,0.00,3518533940704.875977,3518533939424.698730,11,0,0.002734,0.003964,10106255,8644127,0,0,30690,0,1,1 +1773574864.021630,0.65,4,3992.50,57.12,1457.27,2236.55,0.00,0.180286,0.000000,205,0,0.002734,0.003955,10106320,8644207,0,0,30692,0,1,1 +1773574869.022205,0.65,4,3992.50,57.12,1457.29,2236.53,0.00,16609.854739,17891.227530,1183156,1722072,0.002741,0.003972,10106386,8644289,0,0,30695,0,1,1 +1773574874.022336,0.80,4,3992.50,57.12,1457.79,2236.48,0.00,3518344944081.496094,3518344942800.189941,11,0,0.002734,0.004611,10106451,8644374,0,0,30697,0,1,1 +1773574879.021185,0.70,4,3992.50,57.09,1458.93,2235.34,0.00,16615.772535,17897.492612,1183156,1722138,0.002734,0.003965,10106516,8644455,0,0,30700,0,1,1 +1773574884.023016,10.88,4,3992.50,56.91,1466.13,2228.15,0.00,3517149194650.426758,3517149193369.470703,11,0,10.076590,0.056881,10109939,8647019,0,0,30702,0,1,1 +1773574889.021143,16.85,4,3992.50,56.25,1491.83,2202.39,0.00,0.000000,0.000000,11,0,30.188792,0.131460,10119616,8654387,0,0,30705,0,1,1 +1773574894.017468,0.80,4,3992.50,56.31,1489.46,2204.76,0.00,16624.189603,17906.939465,1183157,1723082,0.002723,0.003957,10119680,8654467,0,0,30707,0,1,1 +1773574899.017967,0.60,4,3992.50,56.31,1489.48,2204.75,0.00,3518086538958.966797,3518086537675.275391,246,2,0.002733,0.003964,10119745,8654548,0,0,30710,0,1,1 +1773574904.021865,0.90,4,3992.50,56.60,1484.09,2216.17,0.00,3515696008047.207520,3515696008049.218750,11,0,0.002739,0.003959,10119811,8654629,0,0,30712,0,1,1 +1773574909.021317,0.50,4,3992.50,56.61,1483.88,2216.27,0.00,16613.789787,17896.604171,1183157,1723737,0.002505,0.003344,10119869,8654699,0,0,30715,0,1,1 +1773574914.021878,0.60,4,3992.50,56.61,1483.66,2216.49,0.00,3518042671226.385254,3518042669943.854980,11,0,0.002733,0.003954,10119934,8654779,0,0,30717,0,1,1 +1773574919.021997,0.65,4,3992.50,56.61,1483.68,2216.47,0.00,2.012257,0.000195,246,2,0.002734,0.003964,10119999,8654860,0,0,30720,0,1,1 +1773574924.021732,0.65,4,3992.50,56.61,1483.69,2216.46,0.00,3518623933808.837891,3518623933810.669922,205,0,0.002734,0.003955,10120064,8654940,0,0,30722,0,1,1 +1773574929.021155,0.45,4,3992.50,56.61,1483.71,2216.45,0.00,0.000000,0.000000,205,0,0.002505,0.003331,10120122,8655009,0,0,30725,0,1,1 +1773574934.022308,0.75,4,3992.50,56.81,1480.29,2224.27,0.00,3517626021809.637207,0.000000,75,0,0.002733,0.003941,10120187,8655088,0,0,30727,0,1,1 +1773574939.017388,0.55,4,3992.50,56.77,1481.82,2222.75,0.00,1.604215,10.685710,251,273,0.002749,0.004613,10120253,8655173,0,0,30730,0,1,1 +1773574944.021557,0.60,4,3992.50,56.80,1480.86,2223.71,0.00,0.355856,3515505598520.570801,246,2,0.002739,0.003959,10120319,8655254,0,0,30732,0,1,1 +1773574949.021754,0.70,4,3992.50,56.79,1481.16,2223.42,0.00,3518299186004.174805,3518299186006.133301,75,0,0.002746,0.003964,10120385,8655335,0,0,30735,0,1,1 +1773574954.021542,17.13,4,3992.50,57.18,1465.93,2238.63,0.00,3518586391316.399902,0.000000,11,0,22.143321,0.103190,10127623,8660636,0,0,30737,0,1,1 +1773574959.021879,10.85,4,3992.50,57.00,1473.04,2231.48,0.00,0.053512,0.000000,75,0,18.116583,0.082872,10133671,8665087,0,0,30740,0,1,1 +1773574964.018317,0.90,4,3992.50,57.36,1467.07,2245.82,0.00,0.000000,0.000000,75,0,0.002736,0.003957,10133736,8665167,0,0,30742,0,1,1 +1773574969.021427,0.80,4,3992.50,57.36,1467.07,2245.79,0.00,3516249967785.685059,0.000000,11,0,0.004904,0.004957,10133845,8665273,0,0,30745,0,1,1 +1773574974.021793,0.65,4,3992.50,57.17,1474.50,2238.38,0.00,2.012157,0.000195,246,2,0.002733,0.003954,10133910,8665353,0,0,30747,0,1,1 +1773574979.017576,0.70,4,3992.50,57.17,1474.50,2238.37,0.00,3521407687407.585449,10.684012,251,273,0.003185,0.004264,10133972,8665425,0,0,30750,0,1,1 +1773574984.022302,0.65,4,3992.50,57.17,1474.52,2238.35,0.00,3515114190057.970215,3515114190048.779297,205,0,0.002731,0.003951,10134037,8665505,0,0,30752,0,1,1 +1773574989.021873,0.65,4,3992.50,57.17,1474.53,2238.34,0.00,1.476006,10.676111,251,273,0.002505,0.003331,10134095,8665574,0,0,30755,0,1,1 +1773574994.022036,0.95,4,3992.50,57.39,1463.92,2246.85,0.00,3518322363099.356445,3518322363090.284180,75,0,0.002734,0.003954,10134160,8665654,0,0,30757,0,1,1 +1773574999.018596,0.70,4,3992.50,57.39,1463.64,2247.07,0.00,16613.785816,17898.463414,1181668,1725523,0.002735,0.003980,10134225,8665736,0,0,30760,0,1,1 +1773575004.018656,0.60,4,3992.50,57.39,1463.65,2247.06,0.00,3518394630964.620605,3518394629680.895996,11,0,0.002734,0.004598,10134290,8665820,0,0,30762,0,1,1 +1773575009.021579,0.60,4,3992.50,57.39,1463.67,2247.05,0.00,0.053484,0.000000,75,0,0.002732,0.003962,10134355,8665901,0,0,30765,0,1,1 +1773575014.022147,0.65,4,3992.50,57.40,1463.43,2247.28,0.00,0.000000,0.000000,75,0,0.002608,0.003870,10134421,8665983,0,0,30767,0,1,1 +1773575019.022123,1.65,4,3992.50,56.84,1485.21,2225.51,0.00,1.602644,10.675247,251,273,0.004112,0.004357,10134509,8666079,0,0,30770,0,1,1 +1773575024.017455,20.82,4,3992.50,58.08,1427.68,2273.86,0.00,16625.837394,17903.477734,1183157,1726539,30.217210,0.133923,10144283,8673163,0,0,30772,0,1,1 +1773575029.022115,8.80,4,3992.50,56.65,1483.39,2218.05,0.00,3515160456011.189941,3515160454735.931152,251,273,10.060726,0.052004,10147693,8675830,0,0,30775,0,1,1 +1773575034.020056,0.95,4,3992.50,56.65,1483.40,2218.04,0.00,16607.590890,17884.199322,1181668,1727087,0.002506,0.003322,10147751,8675898,0,0,30777,0,1,1 +1773575039.017447,0.60,4,3992.50,56.66,1483.17,2218.27,0.00,3520274419276.062988,3520274417990.109863,205,0,0.002748,0.003979,10147817,8675980,0,0,30780,0,1,1 +1773575044.017466,0.60,4,3992.50,56.66,1483.17,2218.27,0.00,16602.164658,17887.503142,1181668,1727116,0.002742,0.003975,10147883,8676062,0,0,30782,0,1,1 +1773575049.021436,0.60,4,3992.50,56.66,1483.18,2218.25,0.00,3515645621297.236816,3515645620013.093262,11,0,0.002731,0.003949,10147948,8676142,0,0,30785,0,1,1 +1773575054.022073,0.90,4,3992.50,56.56,1485.43,2214.27,0.00,16600.293743,17885.478210,1181668,1727215,0.002733,0.003954,10148013,8676222,0,0,30787,0,1,1 +1773575059.018510,0.65,4,3992.50,56.57,1484.80,2214.91,0.00,3520946308758.650879,3520946307470.372559,246,2,0.004171,0.005725,10148094,8676328,0,0,30790,0,1,1 +1773575064.021198,0.60,4,3992.50,56.58,1484.34,2215.36,0.00,16601.031534,17888.941722,1183157,1727634,0.002732,0.003952,10148159,8676408,0,0,30792,0,1,1 +1773575069.018632,0.55,4,3992.50,56.58,1484.36,2215.34,0.00,3520243517930.416992,3520243516643.166016,11,0,0.002722,0.004611,10148223,8676493,0,0,30795,0,1,1 +1773575074.018157,0.60,4,3992.50,56.58,1484.38,2215.34,0.00,0.000000,0.000000,11,0,0.002780,0.003782,10148287,8676572,0,0,30797,0,1,1 +1773575079.017433,0.70,4,3992.50,56.58,1484.39,2215.32,0.00,0.053523,0.000000,75,0,0.003656,0.004635,10148354,8676656,0,0,30800,0,1,1 +1773575084.022267,0.85,4,3992.50,56.78,1480.83,2222.93,0.00,0.126635,0.000000,205,0,0.002718,0.003950,10148418,8676736,0,0,30802,0,1,1 +1773575089.017428,3.77,4,3992.50,56.85,1473.85,2225.85,0.00,0.000000,0.000000,205,0,2.022348,0.015993,10149179,8677298,0,0,30805,0,1,1 +1773575094.017417,21.34,4,3992.50,57.18,1460.82,2238.84,0.00,3518444970572.678223,0.000000,75,0,34.200078,0.145381,10159990,8685239,0,0,30807,0,1,1 +1773575099.017452,4.06,4,3992.50,56.99,1468.23,2231.43,0.00,0.126757,0.000000,205,0,4.039904,0.026741,10161594,8686417,0,0,30810,0,1,1 +1773575104.020562,0.70,4,3992.50,56.71,1479.41,2220.23,0.00,3516249900315.528809,0.000000,11,0,0.002794,0.004002,10161663,8686501,0,0,30812,0,1,1 +1773575109.020908,0.85,4,3992.50,56.67,1481.08,2218.56,0.00,2.012165,0.000195,246,2,0.001951,0.003581,10161714,8686573,0,0,30815,0,1,1 +1773575114.017474,1.10,4,3992.50,56.73,1476.18,2221.29,0.00,3520855420405.307617,3520855420407.321289,11,0,0.002735,0.003957,10161779,8686653,0,0,30817,0,1,1 +1773575119.021437,0.80,4,3992.50,56.68,1478.43,2219.09,0.00,16598.812597,17885.640364,1183157,1729075,0.002731,0.003961,10161844,8686734,0,0,30820,0,1,1 +1773575124.022077,0.75,4,3992.50,56.67,1478.89,2218.62,0.00,0.000000,0.047943,1183157,1729111,0.002492,0.003320,10161901,8686802,0,0,30822,0,1,1 +1773575129.018584,0.90,4,3992.50,56.66,1479.26,2218.25,0.00,3520897293913.421387,3520897292622.611816,246,2,0.002298,0.002765,10161954,8686864,0,0,30825,0,1,1 +1773575134.021479,0.80,4,3992.50,56.66,1479.27,2218.24,0.00,16600.344016,17889.667302,1183157,1729217,0.002707,0.004229,10162017,8686943,0,0,30827,0,1,1 +1773575139.021933,0.90,4,3992.50,56.66,1479.22,2218.29,0.00,3518118058856.746094,3518118057568.805176,11,0,0.002733,0.004286,10162082,8687026,0,0,30830,0,1,1 +1773575144.017463,1.10,4,3992.50,56.86,1477.27,2226.09,0.00,0.000000,0.000000,11,0,0.002736,0.003958,10162147,8687106,0,0,30832,0,1,1 +1773575149.017463,0.80,4,3992.50,56.81,1474.79,2224.26,0.00,16611.971015,17900.336274,1183157,1729546,0.002734,0.003964,10162212,8687187,0,0,30835,0,1,1 +1773575154.022114,0.70,4,3992.50,56.80,1475.29,2223.79,0.00,3515167589368.420898,3515167588081.253418,11,0,0.002739,0.003959,10162278,8687268,0,0,30837,0,1,1 +1773575159.021495,8.74,4,3992.50,56.38,1491.57,2207.50,0.00,0.053522,0.000000,75,0,8.054205,0.039365,10164809,8689201,0,0,30840,0,1,1 +1773575164.020813,18.50,4,3992.50,56.80,1475.27,2223.75,0.00,3518916855548.925781,0.000000,11,0,32.206734,0.144801,10175458,8697072,0,0,30842,0,1,1 +1773575169.017660,1.40,4,3992.50,56.80,1475.08,2223.94,0.00,2.013575,0.000195,246,2,0.009532,0.007708,10175650,8697245,0,0,30845,0,1,1 +1773575174.019088,0.95,4,3992.50,56.89,1471.04,2227.53,0.00,3517432101251.335938,3517432101253.293945,75,0,0.002733,0.003953,10175715,8697325,0,0,30847,0,1,1 +1773575179.022080,0.70,4,3992.50,56.91,1470.31,2228.21,0.00,1.601678,10.668812,251,273,0.002740,0.003970,10175781,8697407,0,0,30850,0,1,1 +1773575184.021783,1.10,4,3992.50,56.92,1470.09,2228.43,0.00,0.000000,0.000000,251,273,0.002505,0.003321,10175839,8697475,0,0,30852,0,1,1 +1773575189.019140,0.60,4,3992.50,56.92,1470.10,2228.41,0.00,0.000000,0.000000,251,273,0.002735,0.003966,10175904,8697556,0,0,30855,0,1,1 +1773575194.021903,0.65,4,3992.50,56.92,1469.87,2228.64,0.00,3516494333103.305176,3516494333094.110840,205,0,0.002491,0.003319,10175961,8697624,0,0,30857,0,1,1 +1773575199.017562,0.60,4,3992.50,56.93,1469.64,2228.87,0.00,3521494159506.083496,0.000000,11,0,0.002155,0.004375,10176017,8697702,0,0,30860,0,1,1 +1773575204.022056,0.85,4,3992.50,56.95,1469.20,2229.60,0.00,16597.054302,17885.788353,1183157,1731184,0.002731,0.003951,10176082,8697782,0,0,30862,0,1,1 +1773575209.021874,0.65,4,3992.50,56.91,1470.31,2228.16,0.00,3518565109705.974121,3518565108415.854492,205,0,0.002742,0.003972,10176148,8697864,0,0,30865,0,1,1 +1773575214.022403,0.65,4,3992.50,56.94,1469.33,2229.13,0.00,3518065179119.231934,0.000000,11,0,0.002721,0.003954,10176212,8697944,0,0,30867,0,1,1 +1773575219.022144,0.65,4,3992.50,56.93,1469.36,2229.11,0.00,16612.827483,17902.907885,1183157,1731318,0.002505,0.003331,10176270,8698013,0,0,30870,0,1,1 +1773575224.021644,0.70,4,3992.50,56.93,1469.37,2229.10,0.00,3518789504736.571289,3518789503446.428223,11,0,0.002734,0.003955,10176335,8698093,0,0,30872,0,1,1 +1773575229.019612,12.36,4,3992.50,57.39,1451.47,2246.99,0.00,0.000000,0.000000,11,0,16.111397,0.077495,10181665,8702115,0,0,30875,0,1,1 +1773575234.021639,15.91,4,3992.50,57.18,1459.39,2238.55,0.00,16605.239529,17895.347816,1183157,1732264,24.145225,0.112257,10189623,8708079,0,0,30877,0,1,1 +1773575239.021688,0.75,4,3992.50,57.18,1459.38,2238.54,0.00,3518402370357.047363,3518402370355.943359,1181668,1732003,0.002741,0.003659,10189687,8708155,0,0,30880,0,1,1 +1773575244.022029,0.70,4,3992.50,57.18,1459.17,2238.75,0.00,0.000000,0.328884,1181668,1732206,0.002721,0.003954,10189751,8708235,0,0,30882,0,1,1 +1773575249.021423,0.50,4,3992.50,57.11,1461.89,2236.02,0.00,0.000000,0.463630,1181668,1732625,0.002747,0.003965,10189817,8708316,0,0,30885,0,1,1 +1773575254.021668,0.65,4,3992.50,57.10,1462.14,2235.77,0.00,3518264816303.477051,3518264815013.166992,75,0,0.002708,0.003954,10189880,8708396,0,0,30887,0,1,1 +1773575259.020535,0.65,4,3992.50,57.08,1463.01,2234.90,0.00,1.603000,10.677615,251,273,0.002734,0.003965,10189945,8708477,0,0,30890,0,1,1 +1773575264.021673,0.85,4,3992.50,57.09,1473.23,2235.38,0.00,3517636352834.437988,3517636352825.240723,205,0,0.002741,0.004605,10190011,8708562,0,0,30892,0,1,1 +1773575269.018581,0.80,4,3992.50,57.06,1474.47,2233.98,0.00,0.000000,0.000000,205,0,0.005580,0.005886,10190123,8708670,0,0,30895,0,1,1 +1773575274.017812,0.55,4,3992.50,56.91,1480.26,2228.19,0.00,16614.345696,17906.287072,1183157,1732979,0.002505,0.003321,10190181,8708738,0,0,30897,0,1,1 +1773575279.017437,0.55,4,3992.50,56.92,1480.02,2228.43,0.00,3518701550912.926270,3518701549630.286621,251,273,0.002734,0.003965,10190246,8708819,0,0,30900,0,1,1 +1773575284.017451,0.55,4,3992.50,56.92,1479.78,2228.66,0.00,0.000000,0.000000,251,273,0.003403,0.004876,10190314,8708901,0,0,30902,0,1,1 +1773575289.017744,0.65,4,3992.50,56.92,1479.80,2228.64,0.00,16609.339303,17891.948368,1183157,1733131,0.002513,0.003338,10190373,8708971,0,0,30905,0,1,1 +1773575294.022193,0.85,4,3992.50,57.00,1473.21,2231.80,0.00,3515308689167.551758,3515308687876.997070,11,0,0.002719,0.003951,10190437,8709051,0,0,30907,0,1,1 +1773575299.021984,13.58,4,3992.50,56.98,1471.82,2230.79,0.00,0.053518,0.000000,75,0,18.134120,0.093497,10196732,8713626,0,0,30910,0,1,1 +1773575304.021534,13.20,4,3992.50,58.93,1395.51,2307.05,0.00,3518753554680.221680,0.000000,11,0,22.132334,0.095587,10203861,8718965,0,0,30912,0,1,1 +1773575309.017453,0.65,4,3992.50,57.79,1439.98,2262.59,0.00,16625.538616,17918.771451,1183157,1733973,0.002507,0.003333,10203919,8719034,0,0,30915,0,1,1 +1773575314.019028,0.70,4,3992.50,56.52,1489.74,2212.84,0.00,0.000000,0.005174,1183157,1733982,0.002783,0.004015,10203988,8719118,0,0,30917,0,1,1 +1773575319.018607,0.60,4,3992.50,56.48,1491.25,2211.32,0.00,3518733716377.742188,3518733716377.141113,1181668,1734159,0.002734,0.003965,10204053,8719199,0,0,30920,0,1,1 +1773575324.018625,1.00,4,3992.50,56.54,1480.51,2213.79,0.00,3518424369735.072754,3518424368443.442383,75,0,0.002754,0.003962,10204120,8719280,0,0,30922,0,1,1 +1773575329.017650,0.60,4,3992.50,56.59,1478.83,2215.47,0.00,1.602949,10.677277,251,273,0.002722,0.004609,10204184,8719365,0,0,30925,0,1,1 +1773575334.017493,0.80,4,3992.50,56.59,1478.84,2215.47,0.00,16601.275033,17884.343992,1181668,1734438,0.002734,0.003954,10204249,8719445,0,0,30927,0,1,1 +1773575339.021912,0.60,4,3992.50,56.60,1478.39,2215.93,0.00,3515330234446.007812,3515330233164.111816,251,273,0.002731,0.003961,10204314,8719526,0,0,30930,0,1,1 +1773575344.022286,0.60,4,3992.50,56.60,1478.16,2216.15,0.00,16609.070468,17893.136103,1183157,1734736,0.002505,0.003320,10204372,8719594,0,0,30932,0,1,1 +1773575349.021808,0.55,4,3992.50,56.60,1478.17,2216.14,0.00,0.000000,0.011232,1183157,1734750,0.002505,0.003331,10204430,8719663,0,0,30935,0,1,1 +1773575354.021534,0.85,4,3992.50,56.80,1472.86,2223.75,0.00,3518629746469.202148,3518629745175.939453,11,0,0.002742,0.003963,10204496,8719744,0,0,30937,0,1,1 +1773575359.021871,0.65,4,3992.50,56.80,1472.98,2223.70,0.00,16610.849387,17904.067363,1183157,1734851,0.004167,0.005720,10204577,8719850,0,0,30940,0,1,1 +1773575364.021712,0.85,4,3992.50,56.60,1480.78,2215.90,0.00,3518549747160.748535,3518549745876.421875,251,273,0.003992,0.004641,10204664,8719944,0,0,30942,0,1,1 +1773575369.021408,21.61,4,3992.50,58.10,1421.93,2274.71,0.00,3518650808578.878418,3518650808569.858887,11,0,32.200660,0.145447,10215190,8727752,0,0,30945,0,1,1 +1773575374.020421,6.47,4,3992.50,57.59,1441.85,2254.73,0.00,0.000000,0.000000,11,0,8.065503,0.045319,10218182,8730007,0,0,30947,0,1,1 +1773575379.017561,0.65,4,3992.50,57.35,1451.15,2245.44,0.00,16611.908792,17905.262174,1181668,1735418,0.003658,0.004637,10218249,8730091,0,0,30950,0,1,1 +1773575384.018572,0.95,4,3992.50,57.36,1457.64,2245.96,0.00,9.559591,10.945639,1183157,1735728,0.002733,0.003941,10218314,8730170,0,0,30952,0,1,1 +1773575389.018667,0.70,4,3992.50,57.32,1459.38,2244.28,0.00,3518370034041.926270,3518370034041.479980,1181668,1736073,0.002513,0.003351,10218373,8730241,0,0,30955,0,1,1 +1773575394.018565,0.60,4,3992.50,57.32,1459.38,2244.27,0.00,3518508936791.130859,3518508935495.538574,246,2,0.002734,0.004598,10218438,8730325,0,0,30957,0,1,1 +1773575399.022263,0.60,4,3992.50,57.14,1466.57,2237.08,0.00,3515836796136.999512,3515836796139.010254,11,0,0.002732,0.003949,10218503,8730405,0,0,30960,0,1,1 +1773575404.018787,0.65,4,3992.50,57.14,1466.36,2237.29,0.00,0.053553,0.000000,75,0,0.002798,0.004007,10218572,8730489,0,0,30962,0,1,1 +1773575409.022325,0.60,4,3992.50,57.14,1466.37,2237.27,0.00,16590.617047,17883.499151,1181668,1736227,0.002732,0.003961,10218637,8730570,0,0,30965,0,1,1 +1773575414.018668,0.85,4,3992.50,57.19,1461.77,2238.98,0.00,3521012255721.894043,3521012254427.023926,205,0,0.002736,0.003945,10218702,8730649,0,0,30967,0,1,1 +1773575419.018280,0.70,4,3992.50,57.19,1455.04,2238.93,0.00,1.832173,0.000195,246,2,0.002742,0.003973,10218768,8730731,0,0,30970,0,1,1 +1773575424.021897,0.55,4,3992.50,57.18,1455.05,2238.91,0.00,3515894105014.367188,3515894105016.377930,11,0,0.002503,0.003306,10218826,8730798,0,0,30972,0,1,1 +1773575429.022295,0.60,4,3992.50,57.17,1455.75,2238.21,0.00,0.000000,0.000000,11,0,0.002721,0.003964,10218890,8730879,0,0,30975,0,1,1 +1773575434.017464,4.12,4,3992.50,56.97,1463.49,2230.54,0.00,1.657754,10.685518,251,273,4.031491,0.021995,10220210,8731893,0,0,30977,0,1,1 +1773575439.019831,17.46,4,3992.50,56.79,1470.55,2223.44,0.00,3516772355484.775879,3516772355475.707520,75,0,28.158993,0.127142,10229389,8738742,0,0,30980,0,1,1 +1773575444.021562,6.97,4,3992.50,57.26,1444.34,2241.79,0.00,0.000000,0.000000,75,0,8.053114,0.036061,10232006,8740657,0,0,30982,0,1,1 +1773575449.017560,1.20,4,3992.50,57.16,1448.05,2238.01,0.00,1.960358,0.000195,246,2,0.007813,0.006896,10232165,8740808,0,0,30985,0,1,1 +1773575454.017585,0.65,4,3992.50,57.19,1446.84,2239.22,0.00,3518419578784.542480,3518419578786.374512,205,0,0.002742,0.003962,10232231,8740889,0,0,30987,0,1,1 +1773575459.017585,0.65,4,3992.50,57.01,1454.01,2232.05,0.00,1.475879,10.675195,251,273,0.002734,0.004447,10232296,8740973,0,0,30990,0,1,1 +1773575464.019257,0.50,4,3992.50,57.01,1454.03,2232.02,0.00,16595.200448,17880.712029,1181668,1737746,0.002733,0.004114,10232361,8741054,0,0,30992,0,1,1 +1773575469.020844,0.65,4,3992.50,57.01,1454.04,2232.02,0.00,3517320857954.264648,3517320856657.703613,246,2,0.002733,0.003963,10232426,8741135,0,0,30995,0,1,1 +1773575474.018591,0.90,4,3992.50,57.41,1440.66,2247.71,0.00,3520023715251.521484,10.679813,251,273,0.002506,0.003322,10232484,8741203,0,0,30997,0,1,1 +1773575479.021611,0.70,4,3992.50,57.41,1440.44,2247.63,0.00,3516312843948.648438,3516312843939.635254,11,0,0.002732,0.003962,10232549,8741284,0,0,31000,0,1,1 +1773575484.021994,0.60,4,3992.50,57.43,1439.71,2248.36,0.00,2.012151,0.000195,246,2,0.002741,0.003962,10232615,8741365,0,0,31002,0,1,1 +1773575489.020181,0.70,4,3992.50,57.38,1441.46,2246.61,0.00,3519713774574.084473,3519713774576.043945,75,0,0.002722,0.003953,10232679,8741445,0,0,31005,0,1,1 +1773575494.017476,0.55,4,3992.50,57.38,1441.48,2246.59,0.00,16611.339132,17907.614773,1181668,1738115,0.002735,0.003956,10232744,8741525,0,0,31007,0,1,1 +1773575499.018676,0.60,4,3992.50,57.41,1440.27,2247.80,0.00,3517593335710.108398,3517593334414.718262,205,0,0.002733,0.003963,10232809,8741606,0,0,31010,0,1,1 +1773575504.020565,0.85,4,3992.50,57.41,1438.33,2247.79,0.00,1.831339,0.000195,246,2,0.002745,0.003953,10232875,8741686,0,0,31012,0,1,1 +1773575509.022028,8.43,4,3992.50,56.91,1457.31,2228.29,0.00,16595.536638,17892.856604,1181668,1738380,10.063764,0.051536,10236190,8744290,0,0,31015,0,1,1 +1773575514.021549,13.38,4,3992.50,57.68,1427.23,2258.33,0.00,0.024221,0.093368,1181669,1738756,22.141249,0.100749,10243501,8749835,0,0,31017,0,1,1 +1773575519.018699,7.98,4,3992.50,57.07,1451.09,2234.45,0.00,3520444170044.301758,3520444168756.829590,251,273,8.062408,0.040530,10246157,8751837,0,0,31020,0,1,1 +1773575524.021923,0.70,4,3992.50,57.00,1453.85,2231.68,0.00,3516170156063.719238,3516170156054.706543,11,0,0.002503,0.003331,10246215,8751906,0,0,31022,0,1,1 +1773575529.022179,0.65,4,3992.50,57.00,1453.87,2231.68,0.00,1.656068,10.674649,251,273,0.002746,0.004608,10246281,8751991,0,0,31025,0,1,1 +1773575534.021467,0.90,4,3992.50,57.06,1454.41,2233.88,0.00,16612.700059,17901.504145,1183158,1739682,0.002734,0.003967,10246346,8752072,0,0,31027,0,1,1 +1773575539.021679,0.55,4,3992.50,56.84,1462.66,2225.59,0.00,3518288424963.444824,3518288423665.859863,11,0,0.002733,0.003964,10246411,8752153,0,0,31030,0,1,1 +1773575544.021628,0.60,4,3992.50,56.83,1463.31,2224.95,0.00,0.000000,0.000000,11,0,0.002734,0.003954,10246476,8752233,0,0,31032,0,1,1 +1773575549.017523,0.60,4,3992.50,56.86,1461.86,2226.39,0.00,2.013958,0.000195,246,2,0.002731,0.003976,10246541,8752315,0,0,31035,0,1,1 +1773575554.017457,0.60,4,3992.50,56.86,1461.88,2226.38,0.00,3518483292567.959961,3518483292569.972656,11,0,0.002734,0.003954,10246606,8752395,0,0,31037,0,1,1 +1773575559.017548,0.70,4,3992.50,56.86,1461.90,2226.36,0.00,0.000000,0.000000,11,0,0.002505,0.003331,10246664,8752464,0,0,31040,0,1,1 +1773575564.017455,0.80,4,3992.50,56.86,1460.96,2226.34,0.00,0.000000,0.000000,11,0,0.002734,0.003954,10246729,8752544,0,0,31042,0,1,1 +1773575569.020669,0.70,4,3992.50,56.86,1460.68,2226.30,0.00,16601.323089,17898.735559,1183158,1740061,0.004904,0.004970,10246838,8752651,0,0,31045,0,1,1 +1773575574.017473,0.60,4,3992.50,56.87,1460.45,2226.53,0.00,3520687819422.793457,3520687818132.741211,251,273,0.002735,0.003957,10246903,8752731,0,0,31047,0,1,1 +1773575579.020671,0.75,4,3992.50,56.87,1460.46,2226.52,0.00,3516188223248.440430,3516188223239.247070,205,0,0.002732,0.003962,10246968,8752812,0,0,31050,0,1,1 +1773575584.021569,10.82,4,3992.50,57.51,1435.40,2251.57,0.00,0.000000,0.000000,205,0,12.106960,0.065927,10251085,8755903,0,0,31052,0,1,1 +1773575589.019624,16.41,4,3992.50,58.22,1407.29,2279.61,0.00,16618.293660,17917.510943,1183159,1740894,28.163059,0.124544,10260245,8762840,0,0,31055,0,1,1 +1773575594.020186,0.75,4,3992.50,58.01,1415.84,2271.04,0.00,3518041724981.249023,3518041723680.851562,246,2,0.002504,0.003964,10260303,8762912,0,0,31057,0,1,1 +1773575599.021535,0.90,4,3992.50,57.81,1427.32,2263.43,0.00,16605.515412,17906.447185,1183159,1741379,0.002733,0.003963,10260368,8762993,0,0,31060,0,1,1 +1773575604.019855,0.55,4,3992.50,57.63,1434.54,2256.21,0.00,3519619688050.453125,3519619686759.767578,251,273,0.002735,0.003956,10260433,8763073,0,0,31062,0,1,1 +1773575609.021837,0.70,4,3992.50,57.60,1435.38,2255.36,0.00,3517043012233.975586,3517043012224.779785,205,0,0.002504,0.003329,10260491,8763142,0,0,31065,0,1,1 +1773575614.022362,0.60,4,3992.50,57.61,1435.27,2255.48,0.00,3518068093882.276855,0.000000,75,0,0.002784,0.004016,10260560,8763226,0,0,31067,0,1,1 +1773575619.022337,0.70,4,3992.50,57.61,1435.28,2255.46,0.00,3518454168535.929688,0.000000,11,0,0.002742,0.003972,10260626,8763308,0,0,31070,0,1,1 +1773575624.022135,0.85,4,3992.50,57.42,1445.46,2248.02,0.00,1.656219,10.675628,251,273,0.002734,0.003954,10260691,8763388,0,0,31072,0,1,1 +1773575629.018588,0.70,4,3992.50,57.39,1446.41,2247.08,0.00,16622.142403,17913.863404,1183159,1741736,0.002736,0.003980,10260756,8763470,0,0,31075,0,1,1 +1773575634.021595,0.85,4,3992.50,56.90,1465.89,2227.62,0.00,3516322967925.152832,3516322966635.124023,251,273,0.002732,0.003952,10260821,8763550,0,0,31077,0,1,1 +1773575639.022060,0.55,4,3992.50,56.91,1465.31,2228.22,0.00,3518109752372.931641,3518109752363.860352,75,0,0.002733,0.003976,10260886,8763632,0,0,31080,0,1,1 +1773575644.021862,0.65,4,3992.50,56.95,1463.89,2229.64,0.00,1.958867,0.000195,246,2,0.002734,0.003942,10260951,8763711,0,0,31082,0,1,1 +1773575649.017595,0.70,4,3992.50,56.94,1464.22,2229.32,0.00,3521442062437.605957,10.684117,251,273,0.002507,0.003346,10261009,8763781,0,0,31085,0,1,1 +1773575654.022034,14.80,4,3992.50,57.51,1442.06,2251.46,0.00,0.355836,3515316857549.695312,246,2,18.111281,0.090480,10267099,8768200,0,0,31087,0,1,1 +1773575659.021801,13.23,4,3992.50,57.75,1432.43,2261.05,0.00,3518600870970.939453,3518600870972.952148,11,0,22.134994,0.098730,10274316,8773601,0,0,31090,0,1,1 +1773575664.018514,0.70,4,3992.50,57.27,1451.28,2242.21,0.00,2.013629,0.000195,246,2,0.002506,0.003323,10274374,8773669,0,0,31092,0,1,1 +1773575669.018281,0.65,4,3992.50,57.05,1459.86,2233.62,0.00,3518601164435.980469,3518601164437.938965,75,0,0.002742,0.003972,10274440,8773751,0,0,31095,0,1,1 +1773575674.017439,0.60,4,3992.50,57.02,1461.05,2232.43,0.00,1.959119,0.000195,246,2,0.003218,0.005042,10274516,8773853,0,0,31097,0,1,1 +1773575679.020816,0.65,4,3992.50,57.07,1459.21,2234.27,0.00,3516062385102.607910,3516062385104.564941,75,0,0.003640,0.004643,10274582,8773938,0,0,31100,0,1,1 +1773575684.018716,0.85,4,3992.50,57.13,1458.24,2236.71,0.00,16618.933034,17920.642104,1183159,1743142,0.002128,0.003719,10274636,8774011,0,0,31102,0,1,1 +1773575689.019554,0.70,4,3992.50,57.13,1458.13,2236.59,0.00,0.000000,0.209730,1183159,1743350,0.002733,0.003964,10274701,8774092,0,0,31105,0,1,1 +1773575694.018575,0.65,4,3992.50,57.13,1457.90,2236.83,0.00,3519126361791.915527,3519126360488.329590,246,2,0.002505,0.003321,10274759,8774160,0,0,31107,0,1,1 +1773575699.022038,0.55,4,3992.50,57.13,1457.91,2236.82,0.00,3516002250043.931152,3516002250045.761719,205,0,0.002503,0.003328,10274817,8774229,0,0,31110,0,1,1 +1773575704.017586,0.65,4,3992.50,57.13,1457.93,2236.80,0.00,3521572429601.369629,0.000000,11,0,0.002798,0.004008,10274886,8774313,0,0,31112,0,1,1 +1773575709.017486,0.60,4,3992.50,57.14,1457.69,2237.04,0.00,0.000000,0.000000,11,0,0.002734,0.003952,10274951,8774393,0,0,31115,0,1,1 +1773575714.017578,1.05,4,3992.50,57.21,1454.89,2239.98,0.00,0.000000,0.000000,11,0,0.002734,0.003954,10275016,8774473,0,0,31117,0,1,1 +1773575719.021547,0.95,4,3992.50,57.04,1461.28,2233.42,0.00,1.654839,10.666729,251,273,0.004126,0.004672,10275105,8774570,0,0,31120,0,1,1 +1773575724.017581,18.48,4,3992.50,57.36,1449.09,2245.58,0.00,3521230342453.958984,3521230342444.879883,75,0,24.185349,0.118123,10283194,8780640,0,0,31122,0,1,1 +1773575729.022064,10.34,4,3992.50,57.08,1459.81,2234.82,0.00,16587.520562,17887.489539,1181670,1744450,16.079260,0.069169,10288346,8784410,0,0,31125,0,1,1 +1773575734.020208,0.70,4,3992.50,57.11,1458.85,2235.79,0.00,3519743566225.475098,3519743564932.933105,251,273,0.002735,0.003956,10288411,8784490,0,0,31127,0,1,1 +1773575739.017588,0.75,4,3992.50,57.11,1458.62,2236.02,0.00,3520281931661.346191,3520281931652.322754,11,0,0.002735,0.003966,10288476,8784571,0,0,31130,0,1,1 +1773575744.021900,1.00,4,3992.50,57.31,1448.36,2243.87,0.00,0.000000,0.000000,11,0,0.002731,0.003951,10288541,8784651,0,0,31132,0,1,1 +1773575749.022015,0.60,4,3992.50,57.32,1447.82,2244.39,0.00,1.656114,10.674950,251,273,0.002734,0.003988,10288606,8784732,0,0,31135,0,1,1 +1773575754.017467,0.60,4,3992.50,57.32,1447.86,2244.36,0.00,3521640844853.779297,3521640844844.752441,11,0,0.002507,0.003336,10288664,8784801,0,0,31137,0,1,1 +1773575759.022230,0.60,4,3992.50,57.32,1447.87,2244.34,0.00,0.180102,0.000000,205,0,0.002731,0.003960,10288729,8784882,0,0,31140,0,1,1 +1773575764.017569,0.55,4,3992.50,57.29,1449.14,2243.07,0.00,16627.329756,17931.787102,1183159,1745227,0.002724,0.003958,10288793,8784962,0,0,31142,0,1,1 +1773575769.018100,0.60,4,3992.50,57.30,1448.93,2243.28,0.00,3518063354415.979980,3518063353112.876953,205,0,0.002733,0.003964,10288858,8785043,0,0,31145,0,1,1 +1773575774.021548,0.90,4,3992.50,57.51,1451.43,2251.63,0.00,16590.824064,17892.156130,1181670,1745025,0.002727,0.003960,10288923,8785124,0,0,31147,0,1,1 +1773575779.022291,0.70,4,3992.50,57.51,1451.48,2251.57,0.00,3517914663752.909180,3517914662460.070801,251,273,0.002733,0.003964,10288988,8785205,0,0,31150,0,1,1 +1773575784.019049,0.60,4,3992.50,57.51,1451.50,2251.56,0.00,3520719806307.619141,3520719806298.414062,205,0,0.002735,0.003944,10289053,8785284,0,0,31152,0,1,1 +1773575789.017500,2.86,4,3992.50,57.41,1455.26,2247.79,0.00,3519527691600.024414,0.000000,11,0,2.019844,0.014747,10289818,8785842,0,0,31155,0,1,1 +1773575794.018170,9.38,4,3992.50,57.41,1455.45,2247.61,0.00,1.655930,10.673765,251,273,10.067319,0.048286,10293160,8788303,0,0,31157,0,1,1 +1773575799.022356,17.40,4,3992.50,58.40,1416.38,2286.62,0.00,16596.459348,17890.200666,1183159,1746413,28.146780,0.122325,10302112,8794919,0,0,31160,0,1,1 +1773575804.017604,1.16,4,3992.50,58.41,1416.42,2287.02,0.00,3521783713714.035645,3521783712408.952148,11,0,0.002744,0.003528,10302176,8794993,0,0,31162,0,1,1 +1773575809.021828,1.60,4,3992.50,57.70,1444.00,2259.08,0.00,0.053470,0.000000,75,0,0.002731,0.003961,10302241,8795074,0,0,31165,0,1,1 +1773575814.021797,0.60,4,3992.50,57.70,1444.10,2258.98,0.00,16612.057307,17916.683996,1183159,1746976,0.002115,0.003717,10302294,8795147,0,0,31167,0,1,1 +1773575819.022138,0.65,4,3992.50,57.72,1443.24,2259.84,0.00,0.000000,0.037595,1183159,1746986,0.002558,0.003818,10302356,8795226,0,0,31170,0,1,1 +1773575824.021751,0.65,4,3992.50,57.71,1443.51,2259.57,0.00,0.000000,0.048832,1183159,1747000,0.002734,0.003955,10302421,8795306,0,0,31172,0,1,1 +1773575829.018576,0.55,4,3992.50,57.72,1443.03,2260.04,0.00,3520672583478.649414,3520672582171.155762,246,2,0.002743,0.003975,10302487,8795388,0,0,31175,0,1,1 +1773575834.017409,0.90,4,3992.50,57.39,1447.23,2246.88,0.00,16604.311277,17910.343637,1181670,1746835,0.002734,0.003955,10302552,8795468,0,0,31177,0,1,1 +1773575839.021731,0.55,4,3992.50,57.21,1454.19,2239.87,0.00,3515398338528.676758,3515398337226.086914,11,0,0.002503,0.003328,10302610,8795537,0,0,31180,0,1,1 +1773575844.021983,0.65,4,3992.50,57.20,1454.48,2239.58,0.00,2.012203,0.000195,246,2,0.002733,0.003967,10302675,8795618,0,0,31182,0,1,1 +1773575849.022033,0.55,4,3992.50,57.20,1454.49,2239.57,0.00,3518402150818.476074,3518402150820.488770,11,0,0.002734,0.003964,10302740,8795699,0,0,31185,0,1,1 +1773575854.022068,0.55,4,3992.50,57.21,1454.29,2239.77,0.00,0.053515,0.000000,75,0,0.002734,0.004598,10302805,8795783,0,0,31187,0,1,1 +1773575859.020092,0.65,4,3992.50,57.15,1456.67,2237.39,0.00,0.000000,0.000000,75,0,0.002735,0.003966,10302870,8795864,0,0,31190,0,1,1 +1773575864.018669,16.27,4,3992.50,57.74,1440.53,2260.80,0.00,1.603093,10.678234,251,273,22.150232,0.103341,10310115,8801249,0,0,31192,0,1,1 +1773575869.019590,14.01,4,3992.50,57.50,1445.76,2251.24,0.00,16607.293377,17903.586931,1183159,1748190,18.105766,0.080367,10315786,8805543,0,0,31195,0,1,1 +1773575874.017583,1.20,4,3992.50,57.45,1447.59,2249.39,0.00,3519850491792.267090,3519850490486.191406,11,0,0.007664,0.006250,10315939,8805681,0,0,31197,0,1,1 +1773575879.021814,0.70,4,3992.50,57.41,1449.28,2247.71,0.00,0.000000,0.000000,11,0,0.002739,0.003969,10316005,8805763,0,0,31200,0,1,1 +1773575884.022415,0.55,4,3992.50,57.45,1447.57,2249.41,0.00,0.053509,0.000000,75,0,0.003403,0.004863,10316073,8805844,0,0,31202,0,1,1 +1773575889.017642,0.65,4,3992.50,57.47,1446.85,2250.13,0.00,0.126879,0.000000,205,0,0.002507,0.003346,10316131,8805914,0,0,31205,0,1,1 +1773575894.022007,0.85,4,3992.50,57.67,1442.40,2258.04,0.00,1.830433,0.000195,246,2,0.002731,0.003951,10316196,8805994,0,0,31207,0,1,1 +1773575899.022210,0.65,4,3992.50,57.37,1454.47,2246.07,0.00,16599.762444,17907.156863,1181670,1748598,0.002721,0.003964,10316260,8806075,0,0,31210,0,1,1 +1773575904.022266,0.65,4,3992.50,57.40,1453.08,2247.46,0.00,3518397405539.211914,3518397404233.791504,11,0,0.002127,0.003717,10316314,8806148,0,0,31212,0,1,1 +1773575909.021991,0.70,4,3992.50,57.33,1456.07,2244.46,0.00,0.180283,0.000000,205,0,0.002734,0.003964,10316379,8806229,0,0,31215,0,1,1 +1773575914.021571,0.65,4,3992.50,57.33,1456.09,2244.45,0.00,1.476003,10.676092,251,273,0.002772,0.004017,10316447,8806313,0,0,31217,0,1,1 +1773575919.017749,0.60,4,3992.50,57.31,1456.73,2243.80,0.00,0.000000,0.000000,251,273,0.002736,0.004612,10316512,8806398,0,0,31220,0,1,1 +1773575924.017462,1.00,4,3992.50,57.54,1448.25,2252.86,0.00,3518639326561.739746,3518639326552.720703,11,0,0.002505,0.003321,10316570,8806466,0,0,31222,0,1,1 +1773575929.022209,0.60,4,3992.50,57.46,1450.89,2249.70,0.00,2.010396,0.000195,246,2,0.002731,0.003960,10316635,8806547,0,0,31225,0,1,1 +1773575934.020584,1.10,4,3992.50,57.05,1466.89,2233.71,0.00,0.000000,0.000000,246,2,0.002813,0.003990,10316706,8806630,0,0,31227,0,1,1 +1773575939.021962,8.23,4,3992.50,57.44,1451.72,2248.86,0.00,0.000000,0.000000,246,2,8.063802,0.043619,10319517,8808647,0,0,31230,0,1,1 +1773575944.021469,17.45,4,3992.50,57.41,1452.95,2247.59,0.00,3518784110325.630371,10.676053,251,273,28.161009,0.120509,10328402,8815346,0,0,31232,0,1,1 +1773575949.022181,3.66,4,3992.50,57.76,1439.00,2261.53,0.00,3517936467915.462891,3517936467906.445312,11,0,4.036116,0.025197,10329955,8816533,0,0,31235,0,1,1 +1773575954.020225,0.85,4,3992.50,57.59,1448.88,2254.82,0.00,16618.509351,17927.049939,1183159,1750526,0.002735,0.003989,10330020,8816614,0,0,31237,0,1,1 +1773575959.017429,0.70,4,3992.50,57.44,1454.70,2249.00,0.00,3520405700343.030762,3520405699034.216797,75,0,0.004183,0.005724,10330102,8816720,0,0,31240,0,1,1 +1773575964.021656,0.65,4,3992.50,57.44,1454.72,2248.98,0.00,3515465417223.627441,0.000000,11,0,0.002731,0.003951,10330167,8816800,0,0,31242,0,1,1 +1773575969.021136,0.60,4,3992.50,57.44,1454.73,2248.96,0.00,16604.175192,17911.338199,1181670,1750370,0.002734,0.003965,10330232,8816881,0,0,31245,0,1,1 +1773575974.021019,0.60,4,3992.50,57.44,1454.75,2248.94,0.00,9.561746,10.718511,1183159,1750691,0.003001,0.004408,10330302,8816971,0,0,31247,0,1,1 +1773575979.017451,0.70,4,3992.50,57.36,1457.86,2245.83,0.00,3520949720867.960449,3520949719567.868164,251,273,0.003658,0.004637,10330369,8817055,0,0,31250,0,1,1 +1773575984.017555,0.85,4,3992.50,57.65,1446.47,2257.21,0.00,0.000000,0.000000,251,273,0.002742,0.004606,10330435,8817140,0,0,31252,0,1,1 +1773575989.021582,0.70,4,3992.50,57.47,1453.40,2250.21,0.00,3515606036496.898438,3515606036487.886719,11,0,0.002731,0.003961,10330500,8817221,0,0,31255,0,1,1 +1773575994.017453,0.60,4,3992.50,57.50,1452.42,2251.19,0.00,2.013968,0.000195,246,2,0.002736,0.003958,10330565,8817301,0,0,31257,0,1,1 +1773575999.021076,0.60,4,3992.50,57.45,1454.29,2249.31,0.00,16597.967027,17907.601773,1183159,1751076,0.002732,0.003961,10330630,8817382,0,0,31260,0,1,1 +1773576004.018583,1.10,4,3992.50,57.40,1456.24,2247.37,0.00,3520192949461.613281,3520192949460.559082,1181670,1750849,0.002797,0.004007,10330699,8817466,0,0,31262,0,1,1 +1773576009.021811,1.85,4,3992.50,56.99,1472.40,2231.21,0.00,3516167381060.899414,3516167379754.045410,205,0,0.008274,0.006769,10330857,8817608,0,0,31265,0,1,1 +1773576014.018622,8.83,4,3992.50,56.92,1475.24,2228.38,0.00,3520681821690.901367,0.000000,75,0,8.071853,0.043480,10333674,8819653,0,0,31267,0,1,1 +1773576019.021728,19.01,4,3992.50,57.90,1436.53,2267.05,0.00,16601.644470,17910.228485,1183160,1752086,32.152153,0.131020,10343523,8827078,0,0,31270,0,1,1 +1773576024.017472,1.61,4,3992.50,57.90,1436.69,2266.88,0.00,3521434991287.848145,3521434989977.389648,11,0,0.013053,0.009497,10343776,8827292,0,0,31272,0,1,1 +1773576029.021950,0.80,4,3992.50,57.79,1441.07,2262.51,0.00,16587.588589,17894.720101,1181671,1751903,0.002510,0.003323,10343835,8827361,0,0,31275,0,1,1 +1773576034.020604,0.80,4,3992.50,57.77,1441.69,2261.89,0.00,3519384990815.871094,3519384989505.203613,246,2,0.002734,0.003955,10343900,8827441,0,0,31277,0,1,1 +1773576039.017466,0.80,4,3992.50,57.77,1441.67,2261.91,0.00,3520647072576.282715,3520647072578.116211,205,0,0.002735,0.003967,10343965,8827522,0,0,31280,0,1,1 +1773576044.021715,1.05,4,3992.50,57.78,1450.65,2262.29,0.00,0.000000,0.000000,205,0,0.002731,0.003951,10344030,8827602,0,0,31282,0,1,1 +1773576049.018800,0.90,4,3992.50,57.77,1450.57,2261.65,0.00,1.833100,0.000195,246,2,0.002723,0.004598,10344094,8827686,0,0,31285,0,1,1 +1773576054.017462,1.60,4,3992.50,57.66,1454.90,2257.34,0.00,3519378852479.205078,3519378852481.218262,11,0,0.002734,0.003955,10344159,8827766,0,0,31287,0,1,1 +1773576059.022342,0.85,4,3992.50,57.43,1463.71,2248.53,0.00,0.000000,0.000000,11,0,0.002718,0.003948,10344223,8827846,0,0,31290,0,1,1 +1773576064.021793,0.75,4,3992.50,57.46,1462.50,2249.75,0.00,0.053522,0.000000,75,0,0.002747,0.003930,10344289,8827924,0,0,31292,0,1,1 +1773576069.021284,0.85,4,3992.50,57.46,1462.51,2249.73,0.00,1.958988,0.000195,246,2,0.002505,0.003331,10344347,8827993,0,0,31295,0,1,1 +1773576074.018084,1.05,4,3992.50,57.90,1446.62,2266.91,0.00,3520690867181.844238,3520690867183.857910,11,0,0.002735,0.003957,10344412,8828073,0,0,31297,0,1,1 +1773576079.019979,0.80,4,3992.50,57.91,1446.40,2267.11,0.00,16605.713005,17915.788148,1183160,1753117,0.002741,0.003971,10344478,8828155,0,0,31300,0,1,1 +1773576084.018863,1.05,4,3992.50,57.71,1454.06,2259.45,0.00,0.000000,0.062514,1183160,1753177,0.004130,0.004642,10344567,8828249,0,0,31302,0,1,1 +1773576089.021494,18.35,4,3992.50,58.14,1437.23,2276.25,0.00,3516586721438.024414,3516586720126.068359,246,2,24.149858,0.117059,10352571,8834226,0,0,31305,0,1,1 +1773576094.021538,9.10,4,3992.50,57.83,1449.36,2264.11,0.00,3518406391863.462891,3518406391865.294922,205,0,16.096645,0.071022,10357865,8838207,0,0,31307,0,1,1 +1773576099.022433,0.90,4,3992.50,57.36,1467.51,2245.95,0.00,16599.296495,17909.745737,1181671,1754162,0.002733,0.003964,10357930,8838288,0,0,31310,0,1,1 +1773576104.022099,1.00,4,3992.50,57.60,1463.98,2255.27,0.00,3518672472540.047852,3518672471227.444824,246,2,0.002734,0.003955,10357995,8838368,0,0,31312,0,1,1 +1773576109.022217,0.75,4,3992.50,57.60,1463.93,2255.35,0.00,3518353709905.258789,10.674747,251,273,0.002734,0.003964,10358060,8838449,0,0,31315,0,1,1 +1773576114.018558,0.80,4,3992.50,57.60,1463.95,2255.34,0.00,3521014120105.825195,3521014120096.746582,75,0,0.002736,0.004602,10358125,8838533,0,0,31317,0,1,1 +1773576119.022115,0.95,4,3992.50,57.40,1471.84,2247.44,0.00,1.601497,10.667605,251,273,0.002732,0.003961,10358190,8838614,0,0,31320,0,1,1 +1773576124.018736,0.70,4,3992.50,57.36,1473.34,2245.93,0.00,3520817189760.755371,3520817189751.549805,205,0,0.002506,0.003323,10358248,8838682,0,0,31322,0,1,1 +1773576129.017454,0.55,4,3992.50,57.40,1472.12,2247.15,0.00,3519339220452.296387,0.000000,11,0,0.002501,0.003339,10358306,8838752,0,0,31325,0,1,1 +1773576134.017576,0.90,4,3992.50,57.53,1459.65,2252.54,0.00,0.000000,0.000000,11,0,0.002127,0.003717,10358360,8838825,0,0,31327,0,1,1 +1773576139.017557,0.55,4,3992.50,57.55,1458.71,2253.24,0.00,0.180274,0.000000,205,0,0.002545,0.003818,10358421,8838904,0,0,31330,0,1,1 +1773576144.017989,0.55,4,3992.50,57.57,1458.00,2253.96,0.00,1.831873,0.000195,246,2,0.002733,0.003954,10358486,8838984,0,0,31332,0,1,1 +1773576149.017603,0.60,4,3992.50,57.57,1457.78,2254.18,0.00,16611.280902,17925.656224,1183160,1754936,0.002734,0.003965,10358551,8839065,0,0,31335,0,1,1 +1773576154.021633,2.00,4,3992.50,57.50,1460.82,2251.14,0.00,3515603292583.521484,3515603291281.328613,251,273,0.011166,0.008814,10358763,8839250,0,0,31337,0,1,1 +1773576159.021555,22.59,4,3992.50,58.43,1424.20,2287.71,0.00,0.356158,3518492152238.577148,246,2,32.199848,0.142658,10368959,8846777,0,0,31340,0,1,1 +1773576164.019133,5.07,4,3992.50,59.03,1401.14,2311.11,0.00,16618.047523,17933.658791,1183160,1755806,8.052338,0.036012,10371525,8848695,0,0,31342,0,1,1 +1773576169.017458,0.75,4,3992.50,57.96,1442.75,2269.15,0.00,3519616181334.931641,3519616180019.516602,246,2,0.004680,0.004341,10371627,8848790,0,0,31345,0,1,1 +1773576174.021467,0.60,4,3992.50,57.98,1441.84,2270.06,0.00,3515618282080.314453,3515618282082.325195,11,0,0.002503,0.003318,10371685,8848858,0,0,31347,0,1,1 +1773576179.021508,0.65,4,3992.50,57.99,1441.55,2270.34,0.00,0.180272,0.000000,205,0,0.002742,0.004294,10371751,8848942,0,0,31350,0,1,1 +1773576184.021742,0.65,4,3992.50,57.98,1441.96,2269.94,0.00,16611.048826,17924.881552,1183160,1756527,0.002733,0.004263,10371816,8849023,0,0,31352,0,1,1 +1773576189.017466,0.65,4,3992.50,57.98,1441.98,2269.91,0.00,3521449358354.882812,3521449357039.863770,205,0,0.003406,0.004890,10371884,8849106,0,0,31355,0,1,1 +1773576194.022290,0.85,4,3992.50,58.05,1432.36,2272.60,0.00,1.474456,10.664906,251,273,0.002529,0.003388,10371944,8849179,0,0,31357,0,1,1 +1773576199.021832,0.75,4,3992.50,58.06,1431.53,2273.29,0.00,16611.872644,17916.855758,1183161,1756689,0.002707,0.003894,10372007,8849255,0,0,31360,0,1,1 +1773576204.021570,0.55,4,3992.50,58.06,1431.55,2273.27,0.00,3518621910070.982910,3518621908766.050293,251,273,0.002734,0.003955,10372072,8849335,0,0,31362,0,1,1 +1773576209.022253,0.60,4,3992.50,58.06,1431.55,2273.27,0.00,3517956502640.560059,3517956502631.362305,205,0,0.002733,0.003964,10372137,8849416,0,0,31365,0,1,1 +1773576214.019069,0.60,4,3992.50,58.06,1431.57,2273.25,0.00,0.000000,0.000000,205,0,0.002786,0.004019,10372206,8849500,0,0,31367,0,1,1 +1773576219.019798,0.60,4,3992.50,58.06,1431.59,2273.24,0.00,3517925056688.736816,0.000000,11,0,0.002733,0.003964,10372271,8849581,0,0,31370,0,1,1 +1773576224.017468,9.09,4,3992.50,57.86,1436.00,2265.48,0.00,2.013243,0.000195,246,2,10.068176,0.047717,10375519,8852049,0,0,31372,0,1,1 +1773576229.017456,19.39,4,3992.50,57.97,1431.39,2269.67,0.00,3518445629225.447754,3518445629227.279785,205,0,30.191352,0.136352,10385382,8859355,0,0,31375,0,1,1 +1773576234.022144,1.50,4,3992.50,57.70,1441.83,2259.23,0.00,3515141301320.436035,0.000000,11,0,0.008119,0.007190,10385548,8859511,0,0,31377,0,1,1 +1773576239.017436,0.65,4,3992.50,57.61,1445.44,2255.61,0.00,0.000000,0.000000,11,0,0.002520,0.003321,10385607,8859579,0,0,31380,0,1,1 +1773576244.019597,0.65,4,3992.50,57.60,1445.84,2255.21,0.00,0.053493,0.000000,75,0,0.002504,0.003641,10385665,8859649,0,0,31382,0,1,1 +1773576249.017451,0.65,4,3992.50,57.60,1445.86,2255.19,0.00,0.000000,0.000000,75,0,0.002735,0.004288,10385730,8859732,0,0,31385,0,1,1 +1773576254.022193,0.85,4,3992.50,57.80,1433.47,2262.81,0.00,1.601118,10.665079,251,273,0.002731,0.003938,10385795,8859811,0,0,31387,0,1,1 +1773576259.021992,0.60,4,3992.50,57.60,1440.38,2255.24,0.00,0.356167,3518578784519.645996,246,2,0.003017,0.004430,10385867,8859903,0,0,31390,0,1,1 +1773576264.021156,0.70,4,3992.50,57.65,1438.57,2257.05,0.00,3519025210545.527344,3519025210547.485840,75,0,0.002721,0.003955,10385931,8859983,0,0,31392,0,1,1 +1773576269.017608,0.55,4,3992.50,57.62,1439.81,2255.82,0.00,1.960180,0.000195,246,2,0.002736,0.003967,10385996,8860064,0,0,31395,0,1,1 +1773576274.019054,0.65,4,3992.50,57.62,1439.58,2256.05,0.00,3517420134188.330566,10.671914,251,273,0.003237,0.005048,10386074,8860167,0,0,31397,0,1,1 +1773576279.017459,0.70,4,3992.50,57.42,1447.59,2248.04,0.00,0.356266,3519560214659.753906,246,2,0.002734,0.003965,10386139,8860248,0,0,31400,0,1,1 +1773576284.017587,0.95,4,3992.50,57.37,1445.11,2246.06,0.00,3518346528425.282715,3518346528427.114746,205,0,0.003655,0.004624,10386206,8860331,0,0,31402,0,1,1 +1773576289.018580,0.75,4,3992.50,57.37,1444.92,2246.20,0.00,1.831668,0.000195,246,2,0.002733,0.003963,10386271,8860412,0,0,31405,0,1,1 +1773576294.020107,12.29,4,3992.50,57.49,1440.31,2250.80,0.00,3517363431690.305176,3517363431692.136719,205,0,14.093422,0.070128,10390971,8863944,0,0,31407,0,1,1 +1773576299.020958,16.80,4,3992.50,58.26,1410.09,2280.97,0.00,3517837862182.223145,0.000000,11,0,26.157209,0.118542,10399469,8870347,0,0,31410,0,1,1 +1773576304.021836,0.75,4,3992.50,57.82,1427.46,2263.59,0.00,0.000000,0.000000,11,0,0.002732,0.003415,10399537,8870422,0,0,31412,0,1,1 +1773576309.017751,0.65,4,3992.50,57.62,1435.22,2255.83,0.00,0.180421,0.000000,205,0,0.002129,0.004186,10399591,8870499,0,0,31415,0,1,1 +1773576314.021487,0.90,4,3992.50,57.75,1429.97,2261.23,0.00,1.830663,0.000195,246,2,0.002732,0.004273,10399656,8870581,0,0,31417,0,1,1 +1773576319.021776,0.65,4,3992.50,57.56,1437.37,2253.67,0.00,3518234078712.781738,10.674384,251,273,0.002741,0.003972,10399722,8870663,0,0,31420,0,1,1 +1773576324.018137,0.55,4,3992.50,57.57,1437.13,2253.90,0.00,0.000000,0.000000,251,273,0.002736,0.003945,10399787,8870742,0,0,31422,0,1,1 +1773576329.017447,0.70,4,3992.50,57.37,1444.75,2246.30,0.00,16603.087422,17910.384571,1181672,1760054,0.002734,0.003952,10399852,8870822,0,0,31425,0,1,1 +1773576334.018322,0.50,4,3992.50,57.20,1451.65,2239.38,0.00,3517820775805.244629,3517820774487.328125,246,2,0.002733,0.003954,10399917,8870902,0,0,31427,0,1,1 +1773576339.021468,0.60,4,3992.50,57.19,1452.04,2239.00,0.00,3516225410269.776855,3516225410271.788086,11,0,0.002503,0.003329,10399975,8870971,0,0,31430,0,1,1 +1773576344.017440,0.90,4,3992.50,57.44,1448.61,2248.79,0.00,16625.403320,17943.804901,1183161,1760376,0.002744,0.003966,10400041,8871052,0,0,31432,0,1,1 +1773576349.017479,0.70,4,3992.50,57.45,1447.77,2249.47,0.00,3518409534053.842285,3518409532736.513184,11,0,0.002734,0.003939,10400106,8871131,0,0,31435,0,1,1 +1773576354.018577,0.45,4,3992.50,57.45,1447.79,2249.45,0.00,0.180234,0.000000,205,0,0.002720,0.003953,10400170,8871211,0,0,31437,0,1,1 +1773576359.021614,0.60,4,3992.50,57.46,1447.58,2249.68,0.00,16592.190833,17907.981847,1181672,1760276,0.002503,0.003329,10400228,8871280,0,0,31440,0,1,1 +1773576364.022286,14.95,4,3992.50,57.63,1440.78,2256.47,0.00,0.000000,0.133185,1181672,1760715,18.129571,0.094261,10406416,8875908,0,0,31442,0,1,1 +1773576369.021819,13.46,4,3992.50,58.11,1422.03,2275.21,0.00,0.000000,0.601423,1181672,1761531,22.128279,0.094132,10413432,8881219,0,0,31445,0,1,1 +1773576374.018286,0.90,4,3992.50,57.85,1425.26,2264.97,0.00,3520925261158.398926,3520925259840.323242,11,0,0.002507,0.003336,10413490,8881288,0,0,31447,0,1,1 +1773576379.022184,0.55,4,3992.50,57.56,1436.68,2253.55,0.00,2.010737,0.000195,246,2,0.002731,0.004605,10413555,8881373,0,0,31450,0,1,1 +1773576384.021818,0.55,4,3992.50,57.58,1435.88,2254.35,0.00,3518695098971.164551,3518695098973.176758,11,0,0.002734,0.003955,10413620,8881453,0,0,31452,0,1,1 +1773576389.022100,0.65,4,3992.50,57.59,1435.54,2254.70,0.00,2.012191,0.000195,246,2,0.002741,0.003972,10413686,8881535,0,0,31455,0,1,1 +1773576394.021425,0.60,4,3992.50,57.57,1436.16,2254.07,0.00,3518912959579.459473,3518912959581.291992,205,0,0.002721,0.003955,10413750,8881615,0,0,31457,0,1,1 +1773576399.020571,0.65,4,3992.50,57.57,1436.18,2254.05,0.00,3519038053663.201660,0.000000,75,0,0.002734,0.003965,10413815,8881696,0,0,31460,0,1,1 +1773576404.017581,0.85,4,3992.50,57.73,1429.84,2260.38,0.00,0.126834,0.000000,205,0,0.002735,0.003957,10413880,8881776,0,0,31462,0,1,1 +1773576409.021966,0.70,4,3992.50,57.66,1432.86,2257.37,0.00,3515354691377.939941,0.000000,11,0,0.002503,0.003328,10413938,8881845,0,0,31465,0,1,1 +1773576414.021043,0.60,4,3992.50,57.68,1431.90,2258.33,0.00,1.656458,10.677165,251,273,0.002742,0.003963,10414004,8881926,0,0,31467,0,1,1 +1773576419.021855,0.55,4,3992.50,57.49,1439.30,2250.93,0.00,3517865906754.713867,3517865906745.696289,11,0,0.002733,0.003964,10414069,8882007,0,0,31470,0,1,1 +1773576424.022287,0.70,4,3992.50,57.50,1439.08,2251.15,0.00,0.000000,0.000000,11,0,0.002733,0.003954,10414134,8882087,0,0,31472,0,1,1 +1773576429.021437,1.05,4,3992.50,57.45,1440.84,2249.39,0.00,2.012647,0.000195,246,2,0.005514,0.005062,10414246,8882198,0,0,31475,0,1,1 +1773576434.021792,6.57,4,3992.50,58.03,1420.49,2272.14,0.00,0.000000,0.000000,246,2,2.035492,0.022645,10415241,8882967,0,0,31477,0,1,1 +1773576439.018551,22.39,4,3992.50,57.79,1429.66,2262.62,0.00,3520719340566.084473,3520719340568.043945,75,0,38.237271,0.155459,10427132,8891742,0,0,31480,0,1,1 +1773576444.021846,1.00,4,3992.50,57.80,1429.46,2262.81,0.00,1.601581,10.668165,251,273,0.007431,0.007340,10427286,8891893,0,0,31482,0,1,1 +1773576449.017468,0.70,4,3992.50,57.61,1436.88,2255.39,0.00,16615.343227,17926.669583,1181672,1763511,0.002573,0.003955,10427349,8891973,0,0,31485,0,1,1 +1773576454.018560,0.65,4,3992.50,57.61,1436.89,2255.38,0.00,3517668471265.169434,3517668469946.080078,205,0,0.002733,0.003953,10427414,8892053,0,0,31487,0,1,1 +1773576459.020467,0.65,4,3992.50,57.54,1439.44,2252.82,0.00,3517095781517.756836,0.000000,11,0,0.002741,0.003971,10427480,8892135,0,0,31490,0,1,1 +1773576464.021566,0.90,4,3992.50,57.91,1427.43,2267.30,0.00,16598.802636,17917.928943,1181672,1763565,0.002504,0.003320,10427538,8892203,0,0,31492,0,1,1 +1773576469.018656,0.90,4,3992.50,57.24,1451.25,2241.04,0.00,9.567090,10.898138,1183161,1764070,0.005580,0.005911,10427650,8892313,0,0,31495,0,1,1 +1773576474.021803,0.65,4,3992.50,57.26,1450.36,2241.92,0.00,3516223962763.900391,3516223961443.984863,11,0,0.002732,0.003939,10427715,8892392,0,0,31497,0,1,1 +1773576479.017472,0.60,4,3992.50,57.22,1451.85,2240.44,0.00,0.000000,0.000000,11,0,0.002736,0.003968,10427780,8892473,0,0,31500,0,1,1 +1773576484.018581,0.65,4,3992.50,57.30,1448.78,2243.51,0.00,0.180233,0.000000,205,0,0.002728,0.003961,10427845,8892554,0,0,31502,0,1,1 +1773576489.017458,0.70,4,3992.50,57.32,1448.15,2244.14,0.00,1.832443,0.000195,246,2,0.003404,0.004887,10427913,8892637,0,0,31505,0,1,1 +1773576494.022239,0.85,4,3992.50,57.51,1447.04,2251.50,0.00,16594.129496,17915.912637,1183161,1764226,0.002718,0.003951,10427977,8892717,0,0,31507,0,1,1 +1773576499.017451,0.60,4,3992.50,57.51,1446.43,2251.46,0.00,3521809950772.554199,3521809949450.199219,75,0,0.002736,0.003968,10428042,8892798,0,0,31510,0,1,1 +1773576504.019955,0.65,4,3992.50,57.51,1446.44,2251.46,0.00,0.000000,0.000000,75,0,0.002511,0.003340,10428101,8892868,0,0,31512,0,1,1 +1773576509.021457,21.27,4,3992.50,58.04,1425.39,2272.45,0.00,0.000000,0.000000,75,0,28.167473,0.127759,10437117,8899585,0,0,31515,0,1,1 +1773576514.017456,5.92,4,3992.50,58.21,1418.81,2279.03,0.00,1.603920,10.683745,251,273,8.061620,0.037924,10439775,8901494,0,0,31517,0,1,1 +1773576519.017449,3.92,4,3992.50,58.14,1421.50,2276.33,0.00,3518442435879.626465,3518442435870.607910,11,0,4.028324,0.020301,10441074,8902457,0,0,31520,0,1,1 +1773576524.017499,1.00,4,3992.50,58.23,1418.26,2279.93,0.00,16611.842907,17933.995069,1183161,1765530,0.002734,0.003954,10441139,8902537,0,0,31522,0,1,1 +1773576529.018934,0.70,4,3992.50,57.97,1428.20,2269.62,0.00,3517427838213.644531,3517427836891.804688,75,0,0.002741,0.003971,10441205,8902619,0,0,31525,0,1,1 +1773576534.021159,0.85,4,3992.50,57.98,1427.98,2269.85,0.00,3516872514319.302734,0.000000,11,0,0.002732,0.003953,10441270,8902699,0,0,31527,0,1,1 +1773576539.021179,0.55,4,3992.50,58.00,1427.11,2270.71,0.00,2.012297,0.000195,246,2,0.002734,0.003964,10441335,8902780,0,0,31530,0,1,1 +1773576544.021747,0.65,4,3992.50,58.00,1427.05,2270.77,0.00,3518037284735.125977,3518037284737.138184,11,0,0.002733,0.003941,10441400,8902859,0,0,31532,0,1,1 +1773576549.022190,0.65,4,3992.50,58.00,1426.82,2271.00,0.00,0.180257,0.000000,205,0,0.002733,0.003951,10441465,8902939,0,0,31535,0,1,1 +1773576554.022143,0.95,4,3992.50,58.00,1426.55,2270.98,0.00,3518470755390.589844,0.000000,11,0,0.002505,0.003333,10441523,8903008,0,0,31537,0,1,1 +1773576559.022349,0.70,4,3992.50,57.90,1430.38,2266.95,0.00,2.012222,0.000195,246,2,0.004168,0.005720,10441604,8903114,0,0,31540,0,1,1 +1773576564.021506,0.65,4,3992.50,57.94,1428.79,2268.54,0.00,3519030488567.166016,10.676800,251,273,0.002128,0.003718,10441658,8903187,0,0,31542,0,1,1 +1773576569.018036,0.60,4,3992.50,57.93,1429.36,2267.97,0.00,16621.887492,17936.554338,1183161,1766119,0.002748,0.003967,10441724,8903268,0,0,31545,0,1,1 +1773576574.022261,0.65,4,3992.50,57.90,1430.46,2266.86,0.00,3515467143527.319824,3515467142205.482422,205,0,0.003235,0.005688,10441802,8903375,0,0,31547,0,1,1 +1773576579.021628,3.06,4,3992.50,57.67,1439.46,2257.89,0.00,16613.933940,17937.146971,1183161,1766243,0.011200,0.009135,10442019,8903561,0,0,31550,0,1,1 +1773576584.022045,12.38,4,3992.50,57.59,1442.55,2254.77,0.00,3518143598264.525391,3518143596939.758789,246,2,18.109439,0.079329,10447763,8907846,0,0,31552,0,1,1 +1773576589.021715,15.85,4,3992.50,58.53,1404.55,2291.41,0.00,3518669334091.345703,10.675704,251,273,22.128399,0.094528,10454729,8913072,0,0,31555,0,1,1 +1773576594.017466,1.66,4,3992.50,58.06,1422.94,2273.02,0.00,3521429733955.177734,3521429733946.150879,11,0,0.014561,0.009955,10455017,8913309,0,0,31557,0,1,1 +1773576599.019626,0.60,4,3992.50,57.88,1429.70,2266.27,0.00,1.655437,10.670586,251,273,0.002504,0.003329,10455075,8913378,0,0,31560,0,1,1 +1773576604.022239,0.80,4,3992.50,57.95,1427.02,2268.95,0.00,3516599282882.540039,3516599282873.525879,11,0,0.002782,0.003990,10455143,8913461,0,0,31562,0,1,1 +1773576609.018894,0.70,4,3992.50,57.96,1426.55,2269.41,0.00,1.657261,10.682342,251,273,0.002735,0.003967,10455208,8913542,0,0,31565,0,1,1 +1773576614.022308,0.80,4,3992.50,57.85,1435.25,2264.78,0.00,0.355909,3516036816163.789062,246,2,0.002732,0.003964,10455273,8913623,0,0,31567,0,1,1 +1773576619.021926,0.75,4,3992.50,57.82,1436.11,2263.80,0.00,3518705509474.200195,10.675814,251,273,0.002721,0.003965,10455337,8913704,0,0,31570,0,1,1 +1773576624.022377,0.55,4,3992.50,57.83,1435.85,2264.05,0.00,3518119946232.220703,3518119946223.022461,205,0,0.002741,0.003962,10455403,8913785,0,0,31572,0,1,1 +1773576629.021672,0.55,4,3992.50,57.85,1435.12,2264.79,0.00,3518933240527.750488,0.000000,11,0,0.002721,0.003952,10455467,8913865,0,0,31575,0,1,1 +1773576634.017566,0.70,4,3992.50,57.85,1435.13,2264.77,0.00,0.053560,0.000000,75,0,0.002736,0.003945,10455532,8913944,0,0,31577,0,1,1 +1773576639.022332,0.60,4,3992.50,57.85,1434.90,2265.01,0.00,1.956924,0.000195,246,2,0.002502,0.003983,10455590,8914018,0,0,31580,0,1,1 +1773576644.022386,0.95,4,3992.50,58.17,1422.62,2277.29,0.00,16600.256112,17925.931705,1181672,1767891,0.002721,0.003954,10455654,8914098,0,0,31582,0,1,1 +1773576649.021376,0.60,4,3992.50,57.90,1433.11,2266.79,0.00,3519148079198.160156,3519148077872.202637,246,2,0.002734,0.003965,10455719,8914179,0,0,31585,0,1,1 +1773576654.021431,10.80,4,3992.50,58.48,1410.30,2289.59,0.00,3518398517052.749023,3518398517054.708008,75,0,14.088661,0.066048,10460257,8917612,0,0,31587,0,1,1 +1773576659.017707,14.40,4,3992.50,58.34,1415.79,2284.05,0.00,1.960249,0.000195,246,2,20.142138,0.091861,10466822,8922485,0,0,31590,0,1,1 +1773576664.017887,4.77,4,3992.50,57.68,1441.75,2258.11,0.00,3518310618657.857910,3518310618659.816406,75,0,6.045990,0.033322,10468962,8924102,0,0,31592,0,1,1 +1773576669.022051,0.90,4,3992.50,57.69,1441.27,2258.57,0.00,0.000000,0.000000,75,0,0.002503,0.003328,10469020,8924171,0,0,31595,0,1,1 +1773576674.020216,0.80,4,3992.50,57.73,1436.36,2260.21,0.00,16618.055389,17944.567842,1183161,1769482,0.002743,0.003964,10469086,8924252,0,0,31597,0,1,1 +1773576679.018039,0.60,4,3992.50,57.75,1435.16,2261.12,0.00,3519969811767.020996,3519969810440.471680,11,0,0.002735,0.003966,10469151,8924333,0,0,31600,0,1,1 +1773576684.017560,0.80,4,3992.50,57.76,1434.96,2261.32,0.00,2.012497,0.000195,246,2,0.002734,0.003955,10469216,8924413,0,0,31602,0,1,1 +1773576689.017559,0.55,4,3992.50,57.57,1442.37,2253.91,0.00,3518437950567.907715,3518437950569.919922,11,0,0.002721,0.003964,10469280,8924494,0,0,31605,0,1,1 +1773576694.021740,0.55,4,3992.50,57.57,1442.14,2254.14,0.00,1.654769,10.666276,251,273,0.002731,0.003951,10469345,8924574,0,0,31607,0,1,1 +1773576699.021468,0.65,4,3992.50,57.57,1442.15,2254.13,0.00,3518628811591.124512,3518628811582.104980,11,0,0.002734,0.003964,10469410,8924655,0,0,31610,0,1,1 +1773576704.022025,0.85,4,3992.50,57.77,1436.95,2261.73,0.00,0.053510,0.000000,75,0,0.002733,0.004598,10469475,8924739,0,0,31612,0,1,1 +1773576709.021890,0.65,4,3992.50,57.77,1436.80,2261.81,0.00,1.958842,0.000195,246,2,0.002505,0.003331,10469533,8924808,0,0,31615,0,1,1 +1773576714.021610,0.55,4,3992.50,57.77,1436.82,2261.80,0.00,3518634333332.443848,3518634333334.456055,11,0,0.002734,0.003955,10469598,8924888,0,0,31617,0,1,1 +1773576719.018064,0.60,4,3992.50,57.74,1438.09,2260.52,0.00,0.053554,0.000000,75,0,0.002736,0.003967,10469663,8924969,0,0,31620,0,1,1 +1773576724.020631,0.55,4,3992.50,57.74,1438.10,2260.52,0.00,3516631304769.293457,0.000000,11,0,0.002740,0.003948,10469729,8925049,0,0,31622,0,1,1 +1773576729.018563,13.12,4,3992.50,57.97,1428.81,2269.79,0.00,0.053538,0.000000,75,0,14.112720,0.074788,10474590,8928663,0,0,31625,0,1,1 +1773576734.020211,16.52,4,3992.50,59.03,1387.32,2311.30,0.00,1.958143,0.000195,246,2,26.138274,0.112897,10482785,8934950,0,0,31627,0,1,1 +1773576739.018329,1.20,4,3992.50,58.50,1408.31,2290.25,0.00,3519762139568.289062,3519762139570.302734,11,0,0.007893,0.006893,10482945,8935101,0,0,31630,0,1,1 +1773576744.018105,0.75,4,3992.50,58.10,1423.95,2274.61,0.00,2.012395,0.000195,246,2,0.002734,0.003954,10483010,8935181,0,0,31632,0,1,1 +1773576749.021598,0.60,4,3992.50,58.11,1423.33,2275.23,0.00,3515980948107.000977,3515980948108.832031,205,0,0.002503,0.003328,10483068,8935250,0,0,31635,0,1,1 +1773576754.018563,0.55,4,3992.50,58.11,1423.34,2275.22,0.00,0.000000,0.000000,205,0,0.002735,0.003957,10483133,8935330,0,0,31637,0,1,1 +1773576759.021888,0.55,4,3992.50,58.12,1423.12,2275.44,0.00,16600.788350,17928.109567,1183161,1771577,0.002732,0.003962,10483198,8935411,0,0,31640,0,1,1 +1773576764.018574,1.00,4,3992.50,58.16,1426.09,2277.10,0.00,3520771307325.700195,3520771305996.794922,11,0,0.002723,0.003957,10483262,8935491,0,0,31642,0,1,1 +1773576769.017556,0.65,4,3992.50,58.16,1425.93,2277.25,0.00,0.000000,0.000000,11,0,0.004929,0.005626,10483373,8935603,0,0,31645,0,1,1 +1773576774.018445,0.50,4,3992.50,58.17,1425.70,2277.48,0.00,2.011947,0.000195,246,2,0.002733,0.003954,10483438,8935683,0,0,31647,0,1,1 +1773576779.018429,0.60,4,3992.50,58.18,1425.47,2277.71,0.00,0.000000,0.000000,246,2,0.002734,0.003964,10483503,8935764,0,0,31650,0,1,1 +1773576784.018575,0.70,4,3992.50,58.18,1425.24,2277.94,0.00,3518334655760.630859,10.674689,251,273,0.002734,0.003942,10483568,8935843,0,0,31652,0,1,1 +1773576789.022249,0.55,4,3992.50,58.17,1425.89,2277.30,0.00,3515853739162.055664,3515853739153.043945,11,0,0.002503,0.003341,10483626,8935913,0,0,31655,0,1,1 +1773576794.019148,0.90,4,3992.50,58.13,1427.36,2275.82,0.00,2.013553,0.000195,246,2,0.003405,0.004879,10483694,8935995,0,0,31657,0,1,1 +1773576799.022130,0.70,4,3992.50,58.13,1427.16,2275.95,0.00,0.000000,0.000000,246,2,0.002732,0.003962,10483759,8936076,0,0,31660,0,1,1 +1773576804.021542,18.74,4,3992.50,59.51,1373.34,2329.75,0.00,0.000000,0.000000,246,2,26.228627,0.119650,10492336,8942275,0,0,31662,0,1,1 +1773576809.017444,8.94,4,3992.50,58.30,1420.55,2282.49,0.00,3521322729325.470215,3521322729327.430176,75,0,14.046873,0.065163,10497002,8945723,0,0,31665,0,1,1 +1773576814.019905,0.65,4,3992.50,58.12,1427.65,2275.40,0.00,16603.802436,17932.272709,1183162,1773115,0.002554,0.003381,10497064,8945795,0,0,31667,0,1,1 +1773576819.018653,0.55,4,3992.50,57.87,1437.45,2265.59,0.00,3519318321887.832031,3519318320558.428711,11,0,0.002501,0.003339,10497122,8945865,0,0,31670,0,1,1 +1773576824.021423,1.05,4,3992.50,58.34,1412.12,2283.99,0.00,0.000000,0.000000,11,0,0.002732,0.003952,10497187,8945945,0,0,31672,0,1,1 +1773576829.017567,0.65,4,3992.50,58.23,1414.82,2279.81,0.00,16624.848715,17955.581585,1183162,1773385,0.002723,0.003967,10497251,8946026,0,0,31675,0,1,1 +1773576834.017461,0.90,4,3992.50,58.12,1419.11,2275.52,0.00,3518511546160.867676,3518511544831.132812,11,0,0.002734,0.004598,10497316,8946110,0,0,31677,0,1,1 +1773576839.021749,1.50,4,3992.50,57.58,1440.29,2254.37,0.00,0.000000,0.000000,11,0,0.002719,0.003961,10497380,8946191,0,0,31680,0,1,1 +1773576844.022278,0.60,4,3992.50,57.62,1438.75,2255.91,0.00,16610.271229,17939.921320,1183162,1773490,0.002733,0.003954,10497445,8946271,0,0,31682,0,1,1 +1773576849.021753,0.65,4,3992.50,57.63,1438.41,2256.25,0.00,0.000000,0.037504,1183162,1773536,0.003111,0.003571,10497514,8946346,0,0,31685,0,1,1 +1773576854.017459,0.90,4,3992.50,57.92,1427.25,2267.56,0.00,3521461458586.601562,3521461457255.449707,205,0,0.002736,0.003958,10497579,8946426,0,0,31687,0,1,1 +1773576859.017768,0.65,4,3992.50,57.92,1427.06,2267.50,0.00,3518220020013.812012,0.000000,11,0,0.002464,0.004680,10497644,8946521,0,0,31690,0,1,1 +1773576864.021872,0.75,4,3992.50,57.92,1426.84,2267.73,0.00,0.000000,0.000000,11,0,0.002731,0.003951,10497709,8946601,0,0,31692,0,1,1 +1773576869.021737,2.86,4,3992.50,57.81,1431.30,2263.27,0.00,0.180278,0.000000,205,0,2.015758,0.012509,10498359,8947096,0,0,31695,0,1,1 +1773576874.021825,21.13,4,3992.50,58.69,1396.87,2297.66,0.00,3518375766783.329102,0.000000,11,0,34.207071,0.154365,10509454,8955517,0,0,31697,0,1,1 +1773576879.022098,4.42,4,3992.50,58.48,1405.02,2289.49,0.00,0.053513,0.000000,75,0,4.033905,0.023803,10510874,8956585,0,0,31700,0,1,1 +1773576884.021395,1.70,4,3992.50,57.91,1427.58,2267.24,0.00,16604.746865,17934.976804,1181673,1774821,0.009245,0.007931,10511069,8956768,0,0,31702,0,1,1 +1773576889.022308,0.50,4,3992.50,57.92,1427.16,2267.65,0.00,3517794890072.257812,3517794888742.511230,11,0,0.002504,0.003343,10511127,8956838,0,0,31705,0,1,1 +1773576894.018198,0.70,4,3992.50,57.92,1426.96,2267.85,0.00,16625.695190,17958.071330,1183162,1775118,0.002736,0.003958,10511192,8956918,0,0,31707,0,1,1 +1773576899.021464,0.75,4,3992.50,57.83,1430.55,2264.27,0.00,3516140168222.075684,3516140166891.664062,11,0,0.002740,0.004613,10511258,8957004,0,0,31710,0,1,1 +1773576904.021493,0.80,4,3992.50,57.87,1429.10,2265.71,0.00,0.180272,0.000000,205,0,0.002783,0.003992,10511326,8957087,0,0,31712,0,1,1 +1773576909.018775,0.85,4,3992.50,57.87,1428.88,2265.93,0.00,0.000000,0.000000,205,0,0.002735,0.003966,10511391,8957168,0,0,31715,0,1,1 +1773576914.022022,1.10,4,3992.50,57.29,1442.96,2243.03,0.00,16591.513404,17921.424701,1181673,1775254,0.002719,0.003952,10511455,8957248,0,0,31717,0,1,1 +1773576919.020087,0.95,4,3992.50,57.37,1440.08,2246.00,0.00,3519799065895.892090,3519799064564.602539,205,0,0.002722,0.003966,10511519,8957329,0,0,31720,0,1,1 +1773576924.021908,0.75,4,3992.50,57.38,1439.65,2246.43,0.00,3517156216976.113281,0.000000,75,0,0.002504,0.003319,10511577,8957397,0,0,31722,0,1,1 +1773576929.021736,0.75,4,3992.50,57.38,1439.67,2246.41,0.00,0.000000,0.000000,75,0,0.002742,0.003972,10511643,8957479,0,0,31725,0,1,1 +1773576934.021605,0.85,4,3992.50,57.38,1439.68,2246.40,0.00,16612.410166,17944.344802,1183162,1775665,0.002721,0.003967,10511707,8957560,0,0,31727,0,1,1 +1773576939.017461,0.80,4,3992.50,57.32,1441.94,2244.14,0.00,0.000000,0.008210,1183162,1775676,0.002129,0.003730,10511761,8957634,0,0,31730,0,1,1 +1773576944.021559,4.52,4,3992.50,57.58,1433.94,2254.46,0.00,3515555564500.163086,3515555563178.411621,251,273,2.026471,0.020271,10512700,8958316,0,0,31732,0,1,1 +1773576949.017455,21.06,4,3992.50,58.61,1393.38,2294.88,0.00,0.000000,0.000000,251,273,34.242051,0.155047,10524076,8966836,0,0,31735,0,1,1 +1773576954.021973,3.06,4,3992.50,57.65,1431.08,2257.20,0.00,16585.823955,17907.213683,1181673,1776713,4.022382,0.020390,10525428,8967872,0,0,31737,0,1,1 +1773576959.021765,0.90,4,3992.50,57.45,1439.04,2249.23,0.00,3518583292303.629883,3518583290971.971680,11,0,0.002742,0.003972,10525494,8967954,0,0,31740,0,1,1 +1773576964.021626,0.80,4,3992.50,57.44,1439.46,2248.80,0.00,16602.929689,17935.002300,1181673,1776989,0.002734,0.004586,10525559,8968037,0,0,31742,0,1,1 +1773576969.017456,0.90,4,3992.50,57.25,1446.89,2241.38,0.00,9.569503,10.853581,1183162,1777275,0.002736,0.003968,10525624,8968118,0,0,31745,0,1,1 +1773576974.017436,0.85,4,3992.50,57.25,1446.67,2241.55,0.00,3518451441295.818848,3518451439962.495117,11,0,0.002505,0.003321,10525682,8968186,0,0,31747,0,1,1 +1773576979.021016,1.05,4,3992.50,57.47,1447.56,2250.09,0.00,0.000000,0.000000,11,0,0.002490,0.003328,10525739,8968255,0,0,31750,0,1,1 +1773576984.017468,0.75,4,3992.50,57.28,1454.98,2242.67,0.00,16614.255997,17947.574875,1181673,1777110,0.002736,0.003957,10525804,8968335,0,0,31752,0,1,1 +1773576989.021988,0.80,4,3992.50,57.30,1454.25,2243.39,0.00,3515259220073.850586,3515259218742.501465,205,0,0.002731,0.003948,10525869,8968415,0,0,31755,0,1,1 +1773576994.021548,0.80,4,3992.50,57.30,1454.27,2243.38,0.00,1.832192,0.000195,246,2,0.002513,0.003329,10525928,8968484,0,0,31757,0,1,1 +1773576999.017565,0.90,4,3992.50,57.29,1454.60,2243.05,0.00,0.000000,0.000000,246,2,0.002736,0.003955,10525993,8968564,0,0,31760,0,1,1 +1773577004.022093,1.00,4,3992.50,57.89,1431.26,2266.39,0.00,3515253542175.138672,3515253542177.149414,11,0,0.002731,0.003951,10526058,8968644,0,0,31762,0,1,1 +1773577009.021594,0.95,4,3992.50,57.51,1446.05,2251.62,0.00,16604.124193,17936.836054,1181673,1777317,0.002734,0.003965,10526123,8968725,0,0,31765,0,1,1 +1773577014.018855,11.63,4,3992.50,58.52,1406.45,2291.20,0.00,3520365499942.231445,3520365498608.868652,75,0,14.094460,0.064939,10530620,8972148,0,0,31767,0,1,1 +1773577019.022256,18.47,4,3992.50,57.30,1454.26,2243.36,0.00,16591.127663,17923.625299,1181673,1778458,26.148388,0.117925,10539139,8978371,0,0,31770,0,1,1 +1773577024.017465,1.20,4,3992.50,57.35,1452.14,2245.47,0.00,3521811870599.545898,3521811869264.735840,205,0,0.007717,0.006615,10539297,8978518,0,0,31772,0,1,1 +1773577029.017465,0.85,4,3992.50,57.30,1454.01,2243.59,0.00,3518437310214.014160,0.000000,11,0,0.002734,0.004608,10539362,8978603,0,0,31775,0,1,1 +1773577034.018930,1.05,4,3992.50,57.68,1437.49,2258.46,0.00,0.000000,0.000000,11,0,0.002733,0.003953,10539427,8978683,0,0,31777,0,1,1 +1773577039.017452,0.80,4,3992.50,57.68,1436.77,2258.45,0.00,0.180327,0.000000,205,0,0.002734,0.003965,10539492,8978764,0,0,31780,0,1,1 +1773577044.021848,0.90,4,3992.50,57.68,1436.78,2258.44,0.00,1.474582,10.665817,251,273,0.002731,0.003951,10539557,8978844,0,0,31782,0,1,1 +1773577049.021773,0.75,4,3992.50,57.49,1444.41,2250.80,0.00,16601.062517,17926.209091,1181674,1779048,0.002505,0.003343,10539615,8978914,0,0,31785,0,1,1 +1773577054.020012,0.85,4,3992.50,57.49,1444.43,2250.78,0.00,3519676752039.262695,3519676750704.646484,11,0,0.002743,0.003964,10539681,8978995,0,0,31787,0,1,1 +1773577059.021593,0.80,4,3992.50,57.49,1444.45,2250.77,0.00,0.180216,0.000000,205,0,0.002733,0.003963,10539746,8979076,0,0,31790,0,1,1 +1773577064.021706,1.15,4,3992.50,57.54,1446.48,2252.71,0.00,0.000000,0.000000,205,0,0.002734,0.003954,10539811,8979156,0,0,31792,0,1,1 +1773577069.019394,1.05,4,3992.50,57.22,1458.91,2240.17,0.00,1.832879,0.000195,246,2,0.005579,0.005885,10539923,8979264,0,0,31795,0,1,1 +1773577074.017557,0.90,4,3992.50,57.27,1456.71,2242.37,0.00,3519730313449.801270,3519730313451.760254,75,0,0.002735,0.003968,10539988,8979345,0,0,31797,0,1,1 +1773577079.017632,0.65,4,3992.50,57.16,1461.18,2237.89,0.00,3518384122799.824707,0.000000,11,0,0.002734,0.003964,10540053,8979426,0,0,31800,0,1,1 +1773577084.021613,5.96,4,3992.50,57.67,1441.28,2257.78,0.00,16589.262133,17922.630005,1181674,1779380,6.043900,0.033582,10542198,8981053,0,0,31802,0,1,1 +1773577089.020545,13.22,4,3992.50,58.42,1411.71,2287.30,0.00,3519188960722.681641,3519188959387.966797,11,0,16.125771,0.077953,10547385,8984959,0,0,31805,0,1,1 +1773577094.021555,11.32,4,3992.50,57.85,1434.19,2264.79,0.00,16599.117219,17933.933901,1181674,1780286,18.084956,0.079428,10553198,8989364,0,0,31807,0,1,1 +1773577099.017480,0.75,4,3992.50,57.68,1440.76,2258.21,0.00,9.569322,10.851226,1183163,1780765,0.003393,0.004890,10553265,8989447,0,0,31810,0,1,1 +1773577104.017451,0.65,4,3992.50,57.68,1440.77,2258.20,0.00,3518457759064.152832,3518457757727.777832,11,0,0.002734,0.003954,10553330,8989527,0,0,31812,0,1,1 +1773577109.017745,0.70,4,3992.50,57.68,1440.78,2258.20,0.00,0.000000,0.000000,11,0,0.002733,0.003964,10553395,8989608,0,0,31815,0,1,1 +1773577114.022359,0.55,4,3992.50,57.68,1440.80,2258.18,0.00,1.654625,10.665352,251,273,0.002548,0.003388,10553457,8989681,0,0,31817,0,1,1 +1773577119.021937,0.65,4,3992.50,57.68,1440.83,2258.15,0.00,0.000000,0.000000,251,273,0.002734,0.003965,10553522,8989762,0,0,31820,0,1,1 +1773577124.017468,0.85,4,3992.50,57.89,1425.95,2266.38,0.00,3521584656157.930176,3521584656148.903320,11,0,0.002507,0.003324,10553580,8989830,0,0,31822,0,1,1 +1773577129.017630,0.75,4,3992.50,57.90,1425.10,2267.06,0.00,0.053514,0.000000,75,0,0.002734,0.003964,10553645,8989911,0,0,31825,0,1,1 +1773577134.022024,0.80,4,3992.50,57.90,1425.10,2267.07,0.00,1.957069,0.000195,246,2,0.002731,0.003951,10553710,8989991,0,0,31827,0,1,1 +1773577139.022425,0.65,4,3992.50,57.90,1425.11,2267.06,0.00,3518155305429.243164,3518155305431.255371,11,0,0.002505,0.003330,10553768,8990060,0,0,31830,0,1,1 +1773577144.022259,0.65,4,3992.50,57.90,1425.13,2267.04,0.00,2.012371,0.000195,246,2,0.002742,0.003962,10553834,8990141,0,0,31832,0,1,1 +1773577149.022278,0.55,4,3992.50,57.93,1424.19,2267.98,0.00,3518424113306.638184,3518424113308.650391,11,0,0.002734,0.003964,10553899,8990222,0,0,31835,0,1,1 +1773577154.020571,8.50,4,3992.50,58.74,1392.71,2299.62,0.00,0.180335,0.000000,205,0,6.054898,0.037474,10556141,8991921,0,0,31837,0,1,1 +1773577159.022310,22.68,4,3992.50,57.84,1427.69,2264.45,0.00,16606.078882,17943.460940,1183163,1782379,34.196580,0.151418,10567089,9000139,0,0,31840,0,1,1 +1773577164.021844,1.05,4,3992.50,57.83,1428.12,2264.02,0.00,3518765068691.021973,3518765067351.218262,246,2,0.005356,0.005735,10567205,9000260,0,0,31842,0,1,1 +1773577169.019548,0.60,4,3992.50,57.86,1426.91,2265.21,0.00,3520053148415.860840,3520053148417.874512,11,0,0.002735,0.003966,10567270,9000341,0,0,31845,0,1,1 +1773577174.021546,0.75,4,3992.50,57.85,1427.30,2264.82,0.00,16595.839450,17932.296183,1181674,1782519,0.003237,0.005047,10567348,9000444,0,0,31847,0,1,1 +1773577179.020725,0.70,4,3992.50,57.85,1427.32,2264.81,0.00,0.000000,0.007325,1181674,1782529,0.002546,0.003819,10567409,9000523,0,0,31850,0,1,1 +1773577184.022302,0.90,4,3992.50,58.10,1418.06,2274.64,0.00,3517328055638.484863,3517328054301.728516,205,0,0.003654,0.004623,10567476,9000606,0,0,31852,0,1,1 +1773577189.017560,0.65,4,3992.50,58.07,1418.63,2273.49,0.00,3521777111563.620117,0.000000,75,0,0.002736,0.003968,10567541,9000687,0,0,31855,0,1,1 +1773577194.021557,0.60,4,3992.50,58.06,1419.04,2273.09,0.00,3515626884954.475586,0.000000,11,0,0.002503,0.003318,10567599,9000755,0,0,31857,0,1,1 +1773577199.018647,0.65,4,3992.50,58.06,1419.05,2273.07,0.00,2.013477,0.000195,246,2,0.002743,0.003975,10567665,9000837,0,0,31860,0,1,1 +1773577204.021877,0.75,4,3992.50,58.06,1419.07,2273.05,0.00,3516165706763.034668,3516165706765.045898,11,0,0.002781,0.003990,10567733,9000920,0,0,31862,0,1,1 +1773577209.022356,0.65,4,3992.50,58.07,1418.59,2273.53,0.00,0.053511,0.000000,75,0,0.002733,0.003964,10567798,9001001,0,0,31865,0,1,1 +1773577214.017659,0.85,4,3992.50,58.13,1425.80,2275.96,0.00,3521745277196.091797,0.000000,11,0,0.002736,0.003958,10567863,9001081,0,0,31867,0,1,1 +1773577219.022288,0.65,4,3992.50,58.09,1426.97,2274.20,0.00,16587.113732,17923.730367,1181674,1783073,0.002731,0.003973,10567928,9001163,0,0,31870,0,1,1 +1773577224.018653,9.29,4,3992.50,58.60,1406.86,2294.32,0.00,3520996878845.519531,3520996877506.691895,11,0,10.075774,0.051339,10571298,9003788,0,0,31872,0,1,1 +1773577229.022328,9.44,4,3992.50,57.96,1432.02,2269.13,0.00,0.180141,0.000000,205,0,12.069154,0.057278,10575242,9006652,0,0,31875,0,1,1 +1773577234.021989,12.08,4,3992.50,57.84,1436.62,2264.50,0.00,16612.979286,17952.662016,1183163,1784339,18.113958,0.082242,10581130,9011050,0,0,31877,0,1,1 +1773577239.020883,0.55,4,3992.50,57.84,1436.39,2264.73,0.00,0.000000,0.008107,1183163,1784350,0.002734,0.003965,10581195,9011131,0,0,31880,0,1,1 +1773577244.021508,1.05,4,3992.50,57.89,1432.30,2266.58,0.00,3517997561200.417480,3517997561199.871582,1181674,1784440,0.002733,0.003954,10581260,9011211,0,0,31882,0,1,1 +1773577249.022102,0.65,4,3992.50,57.89,1432.38,2266.50,0.00,3518018837220.248535,3518018835881.534668,11,0,0.002741,0.003972,10581326,9011293,0,0,31885,0,1,1 +1773577254.021919,0.65,4,3992.50,57.89,1432.39,2266.48,0.00,16603.077395,17942.353799,1181674,1784665,0.002734,0.003954,10581391,9011373,0,0,31887,0,1,1 +1773577259.018569,0.55,4,3992.50,57.89,1432.40,2266.45,0.00,3520796351166.978027,3520796349826.852539,11,0,0.002735,0.003967,10581456,9011454,0,0,31890,0,1,1 +1773577264.021553,0.75,4,3992.50,57.89,1432.45,2266.42,0.00,2.011105,0.000195,246,2,0.002719,0.003952,10581520,9011534,0,0,31892,0,1,1 +1773577269.021463,0.60,4,3992.50,57.89,1432.46,2266.42,0.00,3518500679820.307617,10.675193,251,273,0.002505,0.003331,10581578,9011603,0,0,31895,0,1,1 +1773577274.017581,0.90,4,3992.50,58.09,1424.88,2274.23,0.00,3521171042557.995605,3521171042548.789062,205,0,0.002744,0.003965,10581644,9011684,0,0,31897,0,1,1 +1773577279.021584,0.70,4,3992.50,57.99,1428.52,2270.41,0.00,1.474698,10.666655,251,273,0.002731,0.003961,10581709,9011765,0,0,31900,0,1,1 +1773577284.017704,0.65,4,3992.50,57.99,1428.53,2270.39,0.00,16613.705274,17945.309204,1181674,1784913,0.002736,0.003957,10581774,9011845,0,0,31902,0,1,1 +1773577289.017752,0.55,4,3992.50,57.99,1428.55,2270.38,0.00,3518403622488.086914,3518403621148.509766,11,0,0.002721,0.004608,10581838,9011930,0,0,31905,0,1,1 +1773577294.018442,3.06,4,3992.50,58.37,1413.46,2285.45,0.00,0.000000,0.000000,11,0,2.021811,0.016399,10582640,9012500,0,0,31907,0,1,1 +1773577299.017428,21.11,4,3992.50,59.24,1379.41,2319.41,0.00,0.000000,0.000000,11,0,32.205683,0.143431,10593120,9020237,0,0,31910,0,1,1 +1773577304.020208,5.87,4,3992.50,59.35,1374.23,2323.68,0.00,0.053486,0.000000,75,0,6.033232,0.024464,10594922,9021559,0,0,31912,0,1,1 +1773577309.020725,1.10,4,3992.50,58.27,1416.40,2281.51,0.00,3518073485116.125977,0.000000,11,0,0.005539,0.005857,10595047,9021690,0,0,31915,0,1,1 +1773577314.021971,0.60,4,3992.50,58.13,1422.16,2275.75,0.00,0.000000,0.000000,11,0,0.002595,0.003941,10595110,9021769,0,0,31917,0,1,1 +1773577319.017466,0.55,4,3992.50,58.13,1421.93,2275.99,0.00,16627.012140,17970.219479,1183163,1786571,0.002640,0.003354,10595170,9021840,0,0,31920,0,1,1 +1773577324.017560,0.70,4,3992.50,58.13,1421.94,2275.97,0.00,3518371236180.300293,3518371234838.328613,11,0,0.002734,0.003954,10595235,9021920,0,0,31922,0,1,1 +1773577329.021708,0.55,4,3992.50,57.98,1427.78,2270.14,0.00,0.053471,0.000000,75,0,0.002731,0.003961,10595300,9022001,0,0,31925,0,1,1 +1773577334.022132,0.95,4,3992.50,58.12,1422.39,2275.49,0.00,16601.007831,17942.162355,1181674,1786606,0.002746,0.003954,10595366,9022081,0,0,31927,0,1,1 +1773577339.021362,0.65,4,3992.50,58.09,1423.54,2274.38,0.00,3518979151669.125977,3518979150336.725098,251,273,0.002734,0.003965,10595431,9022162,0,0,31930,0,1,1 +1773577344.022402,0.50,4,3992.50,58.09,1423.55,2274.37,0.00,0.356078,3517705698454.825684,246,2,0.002741,0.003962,10595497,9022243,0,0,31932,0,1,1 +1773577349.022298,0.65,4,3992.50,58.10,1423.09,2274.83,0.00,3518510526196.182129,3518510526198.140625,75,0,0.002734,0.003964,10595562,9022324,0,0,31935,0,1,1 +1773577354.021541,0.55,4,3992.50,58.10,1423.10,2274.82,0.00,1.602879,10.676810,251,273,0.002505,0.003656,10595620,9022395,0,0,31937,0,1,1 +1773577359.019203,0.60,4,3992.50,58.10,1423.12,2274.80,0.00,0.000000,0.000000,251,273,0.002735,0.004288,10595685,9022478,0,0,31940,0,1,1 +1773577364.021865,1.05,4,3992.50,58.22,1430.45,2279.40,0.00,16601.538304,17934.347171,1183163,1787092,0.002732,0.003952,10595750,9022558,0,0,31942,0,1,1 +1773577369.021567,7.02,4,3992.50,58.19,1427.23,2278.41,0.00,3518646574967.458496,3518646573622.829102,246,2,6.052194,0.035366,10597878,9024129,0,0,31945,0,1,1 +1773577374.022192,19.93,4,3992.50,58.59,1411.59,2294.00,0.00,0.000000,0.000000,246,2,32.177407,0.140481,10608145,9031990,0,0,31947,0,1,1 +1773577379.021570,2.76,4,3992.50,58.48,1416.08,2289.51,0.00,16612.085667,17957.630649,1183163,1788237,2.030515,0.017865,10609111,9032709,0,0,31950,0,1,1 +1773577384.021675,0.90,4,3992.50,58.33,1422.04,2283.55,0.00,0.000000,0.074217,1183163,1788279,0.002734,0.003954,10609176,9032789,0,0,31952,0,1,1 +1773577389.022159,0.60,4,3992.50,58.32,1422.43,2283.17,0.00,3518096938537.743164,3518096938536.656250,1181674,1788018,0.002733,0.003964,10609241,9032870,0,0,31955,0,1,1 +1773577394.018550,1.05,4,3992.50,58.67,1405.03,2297.18,0.00,3520978202675.493164,3520978201332.170410,11,0,0.002744,0.003965,10609307,9032951,0,0,31957,0,1,1 +1773577399.022052,0.70,4,3992.50,58.57,1408.87,2293.32,0.00,0.000000,0.000000,11,0,0.003401,0.004870,10609375,9033033,0,0,31960,0,1,1 +1773577404.017445,0.70,4,3992.50,58.56,1409.62,2292.58,0.00,1.657680,10.685040,251,273,0.002507,0.003336,10609433,9033102,0,0,31962,0,1,1 +1773577409.021664,0.60,4,3992.50,58.56,1409.62,2292.58,0.00,16586.819454,17919.614173,1181674,1788442,0.002719,0.003961,10609497,9033183,0,0,31965,0,1,1 +1773577414.021462,0.65,4,3992.50,58.58,1408.67,2293.54,0.00,3518579364703.911621,3518579363369.938477,251,273,0.002784,0.004017,10609566,9033267,0,0,31967,0,1,1 +1773577419.018594,0.70,4,3992.50,58.38,1416.33,2285.88,0.00,16610.340747,17945.070216,1181674,1788496,0.002580,0.004312,10609630,9033350,0,0,31970,0,1,1 +1773577424.022007,0.95,4,3992.50,58.58,1408.23,2293.46,0.00,9.555001,10.740227,1183163,1788823,0.002732,0.004112,10609695,9033431,0,0,31972,0,1,1 +1773577429.017493,0.75,4,3992.50,58.54,1409.41,2292.11,0.00,3521617238699.337402,3521617237362.980469,251,273,0.002723,0.003968,10609759,9033512,0,0,31975,0,1,1 +1773577434.021950,0.90,4,3992.50,58.16,1424.57,2276.98,0.00,3515303495096.323730,3515303495087.132812,205,0,0.002731,0.003951,10609824,9033592,0,0,31977,0,1,1 +1773577439.021916,0.75,4,3992.50,58.15,1424.82,2276.75,0.00,0.000000,0.000000,205,0,0.002505,0.003331,10609882,9033661,0,0,31980,0,1,1 +1773577444.021540,14.89,4,3992.50,58.83,1398.04,2303.52,0.00,3518702232608.996582,0.000000,11,0,16.145062,0.076906,10615072,9037499,0,0,31982,0,1,1 +1773577449.019552,14.93,4,3992.50,59.98,1353.25,2348.24,0.00,0.000000,0.000000,11,0,24.119423,0.107440,10622780,9043275,0,0,31985,0,1,1 +1773577454.021444,1.05,4,3992.50,59.29,1382.54,2321.41,0.00,0.000000,0.000000,11,0,0.002720,0.003953,10622844,9043355,0,0,31987,0,1,1 +1773577459.022125,0.60,4,3992.50,58.74,1404.10,2299.82,0.00,1.655927,10.673743,251,273,0.003258,0.005050,10622924,9043458,0,0,31990,0,1,1 +1773577464.021437,0.75,4,3992.50,58.70,1405.53,2298.39,0.00,16603.095742,17938.809658,1181674,1790276,0.002734,0.003955,10622989,9043538,0,0,31992,0,1,1 +1773577469.022298,0.65,4,3992.50,58.70,1405.79,2298.12,0.00,9.559878,10.680975,1183163,1790560,0.002733,0.003964,10623054,9043619,0,0,31995,0,1,1 +1773577474.022199,0.70,4,3992.50,58.70,1405.59,2298.32,0.00,3518506901633.658203,3518506900287.907227,75,0,0.003238,0.005049,10623132,9043722,0,0,31997,0,1,1 +1773577479.021547,0.65,4,3992.50,58.70,1405.61,2298.30,0.00,0.000000,0.000000,75,0,0.002276,0.002697,10623183,9043779,0,0,32000,0,1,1 +1773577484.020968,0.80,4,3992.50,58.75,1404.33,2300.01,0.00,16604.337146,17949.275302,1181674,1790401,0.003656,0.004625,10623250,9043862,0,0,32002,0,1,1 +1773577489.022385,0.65,4,3992.50,58.55,1411.55,2292.40,0.00,3517440778691.823242,3517440777347.474609,11,0,0.002720,0.004594,10623314,9043946,0,0,32005,0,1,1 +1773577494.021660,0.60,4,3992.50,58.55,1411.56,2292.40,0.00,1.656392,10.676742,251,273,0.002734,0.003955,10623379,9044026,0,0,32007,0,1,1 +1773577499.022287,1.25,4,3992.50,58.55,1411.58,2292.38,0.00,3517996445439.468750,3517996445430.270996,205,0,0.002733,0.003951,10623444,9044106,0,0,32010,0,1,1 +1773577504.017473,0.65,4,3992.50,58.55,1411.59,2292.37,0.00,1.833797,0.000196,246,2,0.002577,0.003370,10623507,9044178,0,0,32012,0,1,1 +1773577509.017455,0.65,4,3992.50,58.55,1411.61,2292.36,0.00,16600.516758,17947.476107,1181674,1790625,0.002734,0.003952,10623572,9044258,0,0,32015,0,1,1 +1773577514.019843,15.95,4,3992.50,58.57,1416.88,2293.03,0.00,3516757735788.246582,3516757734452.960938,251,273,20.132247,0.099327,10630342,9049313,0,0,32017,0,1,1 +1773577519.021668,13.10,4,3992.50,59.31,1386.65,2322.18,0.00,3517153602571.363770,3517153602562.348633,11,0,20.111976,0.088544,10636847,9054160,0,0,32020,0,1,1 +1773577524.018397,0.65,4,3992.50,58.60,1414.39,2294.44,0.00,0.000000,0.000000,11,0,0.002735,0.003957,10636912,9054240,0,0,32022,0,1,1 +1773577529.017459,0.80,4,3992.50,58.39,1422.76,2286.08,0.00,0.000000,0.000000,11,0,0.002734,0.003952,10636977,9054320,0,0,32025,0,1,1 +1773577534.021865,0.55,4,3992.50,58.38,1423.16,2285.68,0.00,0.180115,0.000000,205,0,0.002739,0.003971,10637043,9054402,0,0,32027,0,1,1 +1773577539.022194,0.60,4,3992.50,58.38,1423.18,2285.65,0.00,1.831911,0.000195,246,2,0.002733,0.003964,10637108,9054483,0,0,32030,0,1,1 +1773577544.018580,0.75,4,3992.50,58.39,1422.70,2286.13,0.00,0.000000,0.000000,246,2,0.001887,0.003086,10637154,9054544,0,0,32032,0,1,1 +1773577549.022137,0.90,4,3992.50,58.60,1410.07,2294.30,0.00,3515935938303.349609,10.667411,251,273,0.002556,0.003816,10637216,9054623,0,0,32035,0,1,1 +1773577554.021142,0.60,4,3992.50,58.55,1412.00,2292.38,0.00,0.356223,3519137341950.533691,246,2,0.002734,0.004587,10637281,9054706,0,0,32037,0,1,1 +1773577559.018078,0.75,4,3992.50,58.51,1413.71,2290.66,0.00,16610.637945,17960.132855,1181674,1792470,0.002735,0.003954,10637346,9054786,0,0,32040,0,1,1 +1773577564.017493,0.55,4,3992.50,58.37,1418.98,2285.39,0.00,3518849058783.894531,3518849057437.081055,11,0,0.002513,0.003354,10637405,9054857,0,0,32042,0,1,1 +1773577569.021981,0.55,4,3992.50,58.38,1418.52,2285.85,0.00,0.180112,0.000000,205,0,0.002731,0.003961,10637470,9054938,0,0,32045,0,1,1 +1773577574.021779,0.95,4,3992.50,58.50,1415.47,2290.45,0.00,16612.520573,17960.614894,1183163,1792827,0.002734,0.003954,10637535,9055018,0,0,32047,0,1,1 +1773577579.020206,1.10,4,3992.50,58.39,1419.95,2286.14,0.00,3519544347302.949707,3519544345954.666016,11,0,0.005527,0.005377,10637648,9055130,0,0,32050,0,1,1 +1773577584.021598,23.25,4,3992.50,58.54,1413.97,2292.11,0.00,0.053501,0.000000,75,0,28.173560,0.131241,10646890,9062113,0,0,32052,0,1,1 +1773577589.017773,8.09,4,3992.50,58.31,1423.22,2282.82,0.00,1.960288,0.000195,246,2,12.085589,0.057417,10650900,9065169,0,0,32055,0,1,1 +1773577594.021554,0.70,4,3992.50,58.15,1429.50,2276.55,0.00,3515779162407.383301,3515779162409.394043,11,0,0.002732,0.003951,10650965,9065249,0,0,32057,0,1,1 +1773577599.022229,0.55,4,3992.50,58.14,1429.56,2276.49,0.00,1.655929,10.673754,251,273,0.002741,0.003972,10651031,9065331,0,0,32060,0,1,1 +1773577604.021641,0.90,4,3992.50,58.21,1424.81,2278.93,0.00,3518851053212.439941,3518851053203.419922,11,0,0.002734,0.003955,10651096,9065411,0,0,32062,0,1,1 +1773577609.020553,0.75,4,3992.50,58.20,1424.80,2278.78,0.00,16606.082190,17954.491676,1181674,1794084,0.002264,0.002685,10651146,9065467,0,0,32065,0,1,1 +1773577614.021844,0.60,4,3992.50,58.23,1423.85,2279.72,0.00,3517528926212.151855,3517528924864.383301,11,0,0.002733,0.003953,10651211,9065547,0,0,32067,0,1,1 +1773577619.021387,0.60,4,3992.50,58.25,1423.12,2280.45,0.00,0.000000,0.000000,11,0,0.002734,0.004609,10651276,9065632,0,0,32070,0,1,1 +1773577624.020890,0.65,4,3992.50,58.25,1423.14,2280.43,0.00,0.000000,0.000000,11,0,0.002734,0.003955,10651341,9065712,0,0,32072,0,1,1 +1773577629.020828,0.60,4,3992.50,58.25,1423.15,2280.43,0.00,0.053516,0.000000,75,0,0.002742,0.003972,10651407,9065794,0,0,32075,0,1,1 +1773577634.017593,0.85,4,3992.50,58.34,1418.46,2284.10,0.00,3520714989664.720703,0.000000,11,0,0.002735,0.003957,10651472,9065874,0,0,32077,0,1,1 +1773577639.021180,0.70,4,3992.50,58.34,1418.52,2284.05,0.00,1.654965,10.667542,251,273,0.002490,0.003328,10651529,9065943,0,0,32080,0,1,1 +1773577644.021536,0.55,4,3992.50,58.35,1418.04,2284.52,0.00,3518186662625.693359,3518186662616.621582,75,0,0.002733,0.003954,10651594,9066023,0,0,32082,0,1,1 +1773577649.018482,5.92,4,3992.50,58.81,1400.11,2302.45,0.00,16622.131745,17972.695091,1183163,1794919,6.039390,0.028288,10653410,9067382,0,0,32085,0,1,1 +1773577654.020250,21.74,4,3992.50,58.82,1399.64,2302.88,0.00,3517193302391.463379,3517193301042.075195,205,0,31.264084,0.141849,10663489,9075019,0,0,32087,0,1,1 +1773577659.021762,3.06,4,3992.50,58.62,1407.53,2294.96,0.00,16606.829808,17956.879760,1183163,1795920,2.946466,0.020632,10664635,9075931,0,0,32090,0,1,1 +1773577664.021964,0.85,4,3992.50,58.52,1407.22,2291.28,0.00,0.000000,0.221671,1183163,1795952,0.002721,0.003954,10664699,9076011,0,0,32092,0,1,1 +1773577669.020179,0.80,4,3992.50,58.52,1404.64,2291.27,0.00,3519693328583.819336,3519693327232.837891,11,0,0.005579,0.005897,10664811,9076120,0,0,32095,0,1,1 +1773577674.019934,0.65,4,3992.50,58.52,1404.66,2291.24,0.00,1.656233,10.675718,251,273,0.002734,0.003955,10664876,9076200,0,0,32097,0,1,1 +1773577679.017597,0.75,4,3992.50,58.55,1403.68,2292.21,0.00,3520082836343.269043,3520082836334.246094,11,0,0.002735,0.003966,10664941,9076281,0,0,32100,0,1,1 +1773577684.017583,0.65,4,3992.50,58.36,1411.10,2284.80,0.00,16602.516960,17952.327093,1181674,1796058,0.002734,0.004598,10665006,9076365,0,0,32102,0,1,1 +1773577689.021670,0.60,4,3992.50,58.37,1410.62,2285.27,0.00,3515563309273.819336,3515563307925.115234,11,0,0.002511,0.003336,10665065,9076435,0,0,32105,0,1,1 +1773577694.017431,0.80,4,3992.50,58.37,1415.12,2285.26,0.00,2.014012,0.000195,246,2,0.002736,0.003958,10665130,9076515,0,0,32107,0,1,1 +1773577699.022033,0.55,4,3992.50,58.37,1415.21,2285.21,0.00,3515202114943.913086,3515202114945.743652,205,0,0.002731,0.003961,10665195,9076596,0,0,32110,0,1,1 +1773577704.019677,0.70,4,3992.50,58.26,1419.52,2280.90,0.00,3520095595616.007324,0.000000,11,0,0.003176,0.004245,10665256,9076666,0,0,32112,0,1,1 +1773577709.017453,0.70,4,3992.50,57.97,1430.84,2269.59,0.00,2.013200,0.000195,246,2,0.002722,0.003966,10665320,9076747,0,0,32115,0,1,1 +1773577714.022252,0.70,4,3992.50,58.02,1428.92,2271.51,0.00,3515063141249.827148,3515063141251.657227,205,0,0.002553,0.003380,10665382,9076819,0,0,32117,0,1,1 +1773577719.017508,8.69,4,3992.50,59.09,1387.04,2313.40,0.00,1.833771,0.000195,246,2,8.066670,0.043682,10668066,9078855,0,0,32120,0,1,1 +1773577724.019764,20.60,4,3992.50,58.69,1405.94,2298.00,0.00,3516850370122.314453,3516850370124.326172,11,0,32.183008,0.138320,10678399,9086261,0,0,32122,0,1,1 +1773577729.017476,0.85,4,3992.50,58.57,1410.78,2293.04,0.00,1.656911,10.680082,251,273,0.003169,0.003751,10678472,9086340,0,0,32125,0,1,1 +1773577734.017598,1.00,4,3992.50,58.57,1410.68,2293.12,0.00,0.356144,3518351830435.996582,246,2,0.002734,0.003954,10678537,9086420,0,0,32127,0,1,1 +1773577739.018712,0.70,4,3992.50,58.57,1410.71,2293.11,0.00,0.000000,0.000000,246,2,0.002733,0.003963,10678602,9086501,0,0,32130,0,1,1 +1773577744.021811,0.65,4,3992.50,58.54,1411.70,2292.13,0.00,16599.744193,17956.995339,1183177,1799318,0.002732,0.003952,10678667,9086581,0,0,32132,0,1,1 +1773577749.018275,0.65,4,3992.50,58.54,1411.70,2292.12,0.00,3520927483017.408691,3520927481669.394043,251,273,0.002744,0.004619,10678733,9086667,0,0,32135,0,1,1 +1773577754.017508,1.00,4,3992.50,58.74,1407.32,2299.66,0.00,16603.378156,17949.712427,1181688,1799133,0.002734,0.003955,10678798,9086747,0,0,32137,0,1,1 +1773577759.022183,0.65,4,3992.50,58.70,1408.64,2298.35,0.00,3515149995544.200684,3515149994190.319824,11,0,0.004189,0.005715,10678881,9086853,0,0,32140,0,1,1 +1773577764.018954,0.60,4,3992.50,58.71,1408.54,2298.45,0.00,0.000000,0.000000,11,0,0.002494,0.003323,10678938,9086921,0,0,32142,0,1,1 +1773577769.022171,0.65,4,3992.50,58.54,1415.20,2291.79,0.00,16601.365281,17956.865827,1183177,1799527,0.002732,0.003962,10679003,9087002,0,0,32145,0,1,1 +1773577774.021452,0.70,4,3992.50,58.54,1414.88,2292.11,0.00,3518943033294.482910,3518943031937.734863,205,0,0.003230,0.005042,10679080,9087104,0,0,32147,0,1,1 +1773577779.018892,0.65,4,3992.50,58.51,1416.39,2290.60,0.00,0.000000,0.000000,205,0,0.002735,0.003966,10679145,9087185,0,0,32150,0,1,1 +1773577784.018383,0.80,4,3992.50,58.52,1414.79,2291.06,0.00,3518795344835.625977,0.000000,11,0,0.002734,0.003955,10679210,9087265,0,0,32152,0,1,1 +1773577789.019777,8.73,4,3992.50,59.41,1380.03,2325.86,0.00,1.655691,10.672219,251,273,10.068558,0.051561,10682659,9089936,0,0,32155,0,1,1 +1773577794.018565,19.61,4,3992.50,59.65,1370.27,2335.58,0.00,3519290324272.379395,3519290324263.178223,205,0,30.187929,0.135911,10692233,9097228,0,0,32157,0,1,1 +1773577799.021881,1.25,4,3992.50,59.34,1382.64,2323.21,0.00,16600.862630,17957.372918,1183179,1800751,0.011952,0.008789,10692467,9097427,0,0,32160,0,1,1 +1773577804.018577,0.95,4,3992.50,58.78,1404.36,2301.47,0.00,3520763819330.027344,3520763817971.900391,11,0,0.002798,0.004007,10692536,9097511,0,0,32162,0,1,1 +1773577809.022162,0.80,4,3992.50,58.72,1406.70,2299.13,0.00,0.180144,0.000000,205,0,0.002503,0.003328,10692594,9097580,0,0,32165,0,1,1 +1773577814.021430,1.10,4,3992.50,58.68,1411.08,2297.33,0.00,1.476095,10.676757,251,273,0.002734,0.004599,10692659,9097664,0,0,32167,0,1,1 +1773577819.019280,1.05,4,3992.50,58.68,1411.09,2297.32,0.00,3519951158178.476074,3519951158169.399902,75,0,0.002735,0.003966,10692724,9097745,0,0,32170,0,1,1 +1773577824.021487,0.80,4,3992.50,58.62,1413.32,2295.09,0.00,0.126702,0.000000,205,0,0.002745,0.003953,10692790,9097825,0,0,32172,0,1,1 +1773577829.017654,0.85,4,3992.50,58.46,1419.77,2288.64,0.00,3521136190759.234863,0.000000,11,0,0.002736,0.003967,10692855,9097906,0,0,32175,0,1,1 +1773577834.019758,0.85,4,3992.50,58.45,1419.78,2288.63,0.00,0.053493,0.000000,75,0,0.002732,0.003953,10692920,9097986,0,0,32177,0,1,1 +1773577839.021486,0.85,4,3992.50,58.45,1419.80,2288.62,0.00,1.602083,10.671508,251,273,0.002741,0.003971,10692986,9098068,0,0,32180,0,1,1 +1773577844.021195,1.00,4,3992.50,58.64,1405.77,2296.00,0.00,3518642007217.256836,3518642007208.184082,75,0,0.002734,0.003942,10693051,9098147,0,0,32182,0,1,1 +1773577849.019720,0.70,4,3992.50,58.64,1405.73,2295.95,0.00,0.000000,0.000000,75,0,0.002493,0.003344,10693108,9098217,0,0,32185,0,1,1 +1773577854.022025,0.90,4,3992.50,58.46,1412.65,2289.02,0.00,0.000000,0.000000,75,0,0.002732,0.003952,10693173,9098297,0,0,32187,0,1,1 +1773577859.021466,13.53,4,3992.50,58.38,1416.09,2285.57,0.00,3518830405807.755859,0.000000,11,0,16.124026,0.084167,10698791,9102427,0,0,32190,0,1,1 +1773577864.021941,8.09,4,3992.50,59.04,1390.30,2311.36,0.00,1.655995,10.674182,251,273,8.196457,0.032399,10701138,9104179,0,0,32192,0,1,1 +1773577869.022318,9.42,4,3992.50,59.07,1389.03,2312.59,0.00,3518171451839.199707,3518171451830.128418,75,0,15.940093,0.070187,10706334,9107985,0,0,32195,0,1,1 +1773577874.017453,1.15,4,3992.50,59.03,1395.49,2311.05,0.00,3521864037532.744629,0.000000,11,0,0.002749,0.003958,10706400,9108065,0,0,32197,0,1,1 +1773577879.017558,0.95,4,3992.50,58.24,1426.36,2280.15,0.00,1.656118,10.674971,251,273,0.002734,0.004608,10706465,9108150,0,0,32200,0,1,1 +1773577884.017598,0.85,4,3992.50,58.27,1424.94,2281.57,0.00,0.356149,3518409020083.138184,246,2,0.002742,0.003962,10706531,9108231,0,0,32202,0,1,1 +1773577889.021533,0.85,4,3992.50,58.33,1422.69,2283.83,0.00,3515670900420.654785,3515670900422.666016,11,0,0.002731,0.003961,10706596,9108312,0,0,32205,0,1,1 +1773577894.021990,0.65,4,3992.50,58.33,1422.71,2283.81,0.00,1.656001,10.674219,251,273,0.002518,0.003320,10706655,9108380,0,0,32207,0,1,1 +1773577899.017830,0.90,4,3992.50,58.14,1430.14,2276.39,0.00,3521366681714.649414,3521366681705.623047,11,0,0.002736,0.003968,10706720,9108461,0,0,32210,0,1,1 +1773577904.019737,1.00,4,3992.50,58.46,1418.57,2288.86,0.00,0.053495,0.000000,75,0,0.002745,0.003965,10706786,9108542,0,0,32212,0,1,1 +1773577909.017358,0.80,4,3992.50,58.46,1417.88,2288.85,0.00,16610.359026,17969.985676,1181691,1803078,0.002735,0.003966,10706851,9108623,0,0,32215,0,1,1 +1773577914.017951,0.75,4,3992.50,58.46,1417.89,2288.83,0.00,0.000000,0.002636,1181691,1803085,0.002733,0.003954,10706916,9108703,0,0,32217,0,1,1 +1773577919.019601,0.90,4,3992.50,58.47,1417.69,2289.04,0.00,3517276043085.505371,3517276041727.024902,11,0,0.002733,0.003963,10706981,9108784,0,0,32220,0,1,1 +1773577924.019187,0.80,4,3992.50,58.46,1417.70,2289.02,0.00,0.053520,0.000000,75,0,0.002734,0.003955,10707046,9108864,0,0,32222,0,1,1 +1773577929.019833,0.90,4,3992.50,58.46,1417.71,2289.01,0.00,16600.309333,17959.229180,1181691,1803210,0.002741,0.003972,10707112,9108946,0,0,32225,0,1,1 +1773577934.018841,9.89,4,3992.50,58.21,1410.74,2279.20,0.00,3519135496450.389648,3519135495100.098633,251,273,10.081806,0.054922,10710655,9111562,0,0,32227,0,1,1 +1773577939.017494,7.33,4,3992.50,57.88,1423.88,2266.21,0.00,16605.326220,17956.324864,1181691,1803948,8.051484,0.036279,10713188,9113481,0,0,32230,0,1,1 +1773577944.021468,14.99,4,3992.50,58.59,1396.12,2293.93,0.00,3515642983846.630859,3515642982488.056641,11,0,22.113034,0.098449,10720259,9118863,0,0,32232,0,1,1 +1773577949.021603,1.10,4,3992.50,58.40,1403.61,2286.45,0.00,0.000000,0.000000,11,0,0.002505,0.003343,10720317,9118933,0,0,32235,0,1,1 +1773577954.019871,0.85,4,3992.50,58.21,1410.81,2279.24,0.00,0.053534,0.000000,75,0,0.002747,0.003956,10720383,9119013,0,0,32237,0,1,1 +1773577959.017552,0.75,4,3992.50,58.22,1410.58,2279.46,0.00,16610.158572,17971.058377,1181691,1804640,0.002735,0.003966,10720448,9119094,0,0,32240,0,1,1 +1773577964.017462,1.20,4,3992.50,58.28,1409.27,2281.66,0.00,3518501119929.195801,3518501118577.975098,251,273,0.002734,0.003954,10720513,9119174,0,0,32242,0,1,1 +1773577969.022002,1.00,4,3992.50,58.09,1415.78,2274.21,0.00,3515244603973.110840,3515244603964.046875,75,0,0.004878,0.004968,10720620,9119281,0,0,32245,0,1,1 +1773577974.021693,1.00,4,3992.50,58.11,1414.75,2275.24,0.00,1.958910,0.000195,246,2,0.002742,0.003963,10720686,9119362,0,0,32247,0,1,1 +1773577979.021374,0.80,4,3992.50,58.11,1414.77,2275.23,0.00,3518661661493.645020,3518661661495.657715,11,0,0.002734,0.003964,10720751,9119443,0,0,32250,0,1,1 +1773577984.019143,0.90,4,3992.50,58.11,1414.78,2275.22,0.00,16619.487352,17981.925768,1183180,1805284,0.002506,0.003310,10720809,9119510,0,0,32252,0,1,1 +1773577989.018432,0.80,4,3992.50,58.04,1417.44,2272.57,0.00,3518937293786.298340,3518937292424.274414,11,0,0.002734,0.003965,10720874,9119591,0,0,32255,0,1,1 +1773577994.017595,1.10,4,3992.50,58.18,1414.99,2277.88,0.00,0.180304,0.000000,205,0,0.002734,0.003955,10720939,9119671,0,0,32257,0,1,1 +1773577999.019988,0.75,4,3992.50,58.16,1415.66,2277.12,0.00,3516754260504.848145,0.000000,11,0,0.002732,0.003962,10721004,9119752,0,0,32260,0,1,1 +1773578004.019733,0.90,4,3992.50,58.17,1415.44,2277.35,0.00,0.000000,0.000000,11,0,0.003403,0.004876,10721072,9119834,0,0,32262,0,1,1 +1773578009.017445,3.11,4,3992.50,58.55,1400.34,2292.45,0.00,2.013226,0.000195,246,2,0.094255,0.012181,10721384,9120095,0,0,32265,0,1,1 +1773578014.021582,21.93,4,3992.50,59.87,1348.88,2343.86,0.00,16586.772952,17949.034136,1181691,1806069,32.759389,0.145206,10731931,9127925,0,0,32267,0,1,1 +1773578019.021871,5.56,4,3992.50,58.68,1395.15,2297.58,0.00,0.000000,0.023241,1181691,1806162,7.372145,0.028634,10734063,9129578,0,0,32270,0,1,1 +1773578024.022227,1.65,4,3992.50,59.23,1373.52,2319.16,0.00,0.000000,0.277617,1181691,1806217,0.005565,0.005847,10734190,9129708,0,0,32272,0,1,1 +1773578029.021990,0.80,4,3992.50,58.64,1396.63,2296.07,0.00,3518604202125.604980,3518604200763.682617,205,0,0.002734,0.003952,10734255,9129788,0,0,32275,0,1,1 +1773578034.021571,1.05,4,3992.50,58.62,1397.61,2295.10,0.00,1.832185,0.000195,246,2,0.002505,0.003334,10734313,9129857,0,0,32277,0,1,1 +1773578039.021929,0.60,4,3992.50,58.64,1396.64,2296.07,0.00,3518185793696.929199,10.674237,251,273,0.002733,0.003964,10734378,9129938,0,0,32280,0,1,1 +1773578044.021627,0.65,4,3992.50,58.64,1396.66,2296.05,0.00,3518649251834.000488,3518649251824.927734,75,0,0.002734,0.003955,10734443,9130018,0,0,32282,0,1,1 +1773578049.019236,0.70,4,3992.50,58.64,1396.67,2296.04,0.00,1.959726,0.000195,246,2,0.002735,0.003966,10734508,9130099,0,0,32285,0,1,1 +1773578054.018072,1.00,4,3992.50,58.62,1409.11,2295.16,0.00,3519256526993.290527,3519256526995.249512,75,0,0.002734,0.003955,10734573,9130179,0,0,32287,0,1,1 +1773578059.022141,0.65,4,3992.50,58.62,1408.78,2295.01,0.00,3515576187279.447754,0.000000,11,0,0.003243,0.005034,10734652,9130281,0,0,32290,0,1,1 +1773578064.021382,0.60,4,3992.50,58.62,1408.79,2295.00,0.00,16614.592107,17978.403121,1183180,1807200,0.002742,0.003963,10734718,9130362,0,0,32292,0,1,1 +1773578069.017591,0.70,4,3992.50,58.62,1408.80,2294.98,0.00,3521106911730.708008,3521106910364.055664,246,2,0.002507,0.003333,10734776,9130431,0,0,32295,0,1,1 +1773578074.017560,0.65,4,3992.50,58.62,1408.57,2295.21,0.00,16600.596548,17965.118648,1181691,1806942,0.003217,0.005672,10734852,9130536,0,0,32297,0,1,1 +1773578079.018629,0.70,4,3992.50,58.62,1408.59,2295.20,0.00,3517685180135.807617,3517685178773.597168,11,0,0.002708,0.003963,10734915,9130617,0,0,32300,0,1,1 +1773578084.021116,9.32,4,3992.50,58.67,1402.50,2296.88,0.00,0.000000,0.000000,11,0,8.055204,0.041923,10737602,9132591,0,0,32302,0,1,1 +1773578089.018563,17.96,4,3992.50,58.83,1395.91,2303.43,0.00,16620.555743,17985.770715,1183180,1808342,30.193104,0.130887,10747285,9139767,0,0,32305,0,1,1 +1773578094.018301,3.36,4,3992.50,58.65,1402.96,2296.38,0.00,3518621402657.423340,3518621401292.833984,11,0,2.026550,0.015315,10748160,9140396,0,0,32307,0,1,1 +1773578099.021867,0.80,4,3992.50,58.57,1406.14,2293.19,0.00,0.000000,0.000000,11,0,0.002503,0.003328,10748218,9140465,0,0,32310,0,1,1 +1773578104.021476,0.75,4,3992.50,58.58,1405.91,2293.40,0.00,0.180288,0.000000,205,0,0.002783,0.004005,10748286,9140549,0,0,32312,0,1,1 +1773578109.018674,0.75,4,3992.50,58.58,1405.92,2293.39,0.00,16611.635682,17976.408548,1181691,1808337,0.002743,0.003974,10748352,9140631,0,0,32315,0,1,1 +1773578114.017587,1.05,4,3992.50,58.58,1405.79,2293.50,0.00,3519202493539.607422,3519202492175.302734,205,0,0.002722,0.003955,10748416,9140711,0,0,32317,0,1,1 +1773578119.020777,0.65,4,3992.50,58.56,1406.46,2292.84,0.00,1.830863,0.000195,246,2,0.002732,0.003962,10748481,9140792,0,0,32320,0,1,1 +1773578124.018600,0.65,4,3992.50,58.56,1406.47,2292.83,0.00,0.000000,0.000000,246,2,0.002735,0.003956,10748546,9140872,0,0,32322,0,1,1 +1773578129.017564,0.75,4,3992.50,58.56,1406.48,2292.80,0.00,3519166937002.797852,3519166937004.756836,75,0,0.002734,0.003965,10748611,9140953,0,0,32325,0,1,1 +1773578134.017432,1.45,4,3992.50,58.39,1413.13,2286.18,0.00,1.602679,10.675476,251,273,0.002505,0.003321,10748669,9141021,0,0,32327,0,1,1 +1773578139.021606,0.65,4,3992.50,58.42,1412.16,2287.16,0.00,16596.560923,17951.708591,1183180,1808932,0.002731,0.004604,10748734,9141106,0,0,32330,0,1,1 +1773578144.017438,1.05,4,3992.50,58.62,1405.02,2295.26,0.00,3521372096044.545898,3521372094687.135742,251,273,0.002736,0.003958,10748799,9141186,0,0,32332,0,1,1 +1773578149.017462,0.50,4,3992.50,58.41,1412.62,2286.75,0.00,0.356151,3518420947434.590332,246,2,0.002742,0.003972,10748865,9141268,0,0,32335,0,1,1 +1773578154.017535,0.75,4,3992.50,58.40,1412.90,2286.49,0.00,3518385658198.201172,3518385658200.213379,11,0,0.002734,0.003954,10748930,9141348,0,0,32337,0,1,1 +1773578159.017451,11.16,4,3992.50,58.89,1393.85,2305.51,0.00,0.000000,0.000000,11,0,12.188905,0.065641,10753172,9144484,0,0,32340,0,1,1 +1773578164.017754,16.53,4,3992.50,58.16,1422.29,2277.04,0.00,0.053512,0.000000,75,0,28.072402,0.124535,10762276,9151424,0,0,32342,0,1,1 +1773578169.020396,0.70,4,3992.50,58.16,1422.40,2276.93,0.00,0.000000,0.000000,75,0,0.002732,0.003950,10762341,9151504,0,0,32345,0,1,1 +1773578174.020561,0.95,4,3992.50,58.34,1414.58,2284.25,0.00,1.602584,10.674843,251,273,0.002734,0.003954,10762406,9151584,0,0,32347,0,1,1 +1773578179.021542,0.60,4,3992.50,58.34,1414.62,2284.19,0.00,16607.158349,17964.262904,1183180,1810287,0.002733,0.003963,10762471,9151665,0,0,32350,0,1,1 +1773578184.021920,0.65,4,3992.50,58.35,1414.17,2284.64,0.00,3518170649331.685547,3518170647974.417480,251,273,0.002505,0.003320,10762529,9151733,0,0,32352,0,1,1 +1773578189.020327,0.60,4,3992.50,58.35,1414.19,2284.62,0.00,16606.146319,17963.040986,1181691,1810218,0.002734,0.003953,10762594,9151813,0,0,32355,0,1,1 +1773578194.021105,0.70,4,3992.50,58.35,1414.21,2284.60,0.00,3517889253589.961914,3517889252224.640137,75,0,0.002741,0.003949,10762660,9151893,0,0,32357,0,1,1 +1773578199.021975,0.60,4,3992.50,58.35,1414.21,2284.59,0.00,3517825141783.162598,0.000000,11,0,0.002733,0.003964,10762725,9151974,0,0,32360,0,1,1 +1773578204.018598,0.95,4,3992.50,58.55,1408.77,2292.21,0.00,2.013665,0.000195,246,2,0.002735,0.004601,10762790,9152058,0,0,32362,0,1,1 +1773578209.017536,0.65,4,3992.50,58.54,1408.69,2292.15,0.00,16613.584592,17982.921169,1183180,1810788,0.002734,0.003965,10762855,9152139,0,0,32365,0,1,1 +1773578214.019135,0.65,4,3992.50,58.55,1408.47,2292.37,0.00,3517312336089.099121,3517312334722.502441,11,0,0.002733,0.003953,10762920,9152219,0,0,32367,0,1,1 +1773578219.019048,0.65,4,3992.50,58.55,1408.48,2292.36,0.00,16612.360386,17979.476356,1183180,1810852,0.002734,0.003977,10762985,9152301,0,0,32370,0,1,1 +1773578224.021187,0.70,4,3992.50,58.55,1408.50,2292.35,0.00,3516932432636.796387,3516932431270.288574,11,0,0.002491,0.003307,10763042,9152368,0,0,32372,0,1,1 +1773578229.021718,15.65,4,3992.50,58.58,1407.45,2293.39,0.00,0.053510,0.000000,75,0,18.131705,0.095823,10769333,9157082,0,0,32375,0,1,1 +1773578234.022592,7.18,4,3992.50,59.32,1374.11,2322.62,0.00,1.958447,0.000195,246,2,8.064928,0.034077,10771884,9158937,0,0,32377,0,1,1 +1773578239.020382,8.45,4,3992.50,58.62,1401.59,2295.10,0.00,3519992637307.731445,3519992637309.744629,11,0,14.065211,0.057337,10776243,9162134,0,0,32380,0,1,1 +1773578244.021783,0.60,4,3992.50,58.52,1405.57,2291.12,0.00,0.000000,0.000000,11,0,0.002733,0.003953,10776308,9162214,0,0,32382,0,1,1 +1773578249.018877,0.60,4,3992.50,58.53,1405.05,2291.65,0.00,1.657115,10.681403,251,273,0.002735,0.003967,10776373,9162295,0,0,32385,0,1,1 +1773578254.021679,0.50,4,3992.50,58.54,1404.83,2291.86,0.00,3516466628806.760254,3516466628797.693359,75,0,0.002732,0.003952,10776438,9162375,0,0,32387,0,1,1 +1773578259.017615,0.60,4,3992.50,58.53,1404.98,2291.71,0.00,0.126861,0.000000,205,0,0.002736,0.003955,10776503,9162455,0,0,32390,0,1,1 +1773578264.017598,0.95,4,3992.50,58.64,1402.37,2296.02,0.00,3518448791616.495605,0.000000,75,0,0.002721,0.003954,10776567,9162535,0,0,32392,0,1,1 +1773578269.021909,0.75,4,3992.50,58.64,1402.22,2296.01,0.00,3515406354188.437500,0.000000,11,0,0.005522,0.006520,10776675,9162647,0,0,32395,0,1,1 +1773578274.017626,0.65,4,3992.50,58.64,1402.23,2295.99,0.00,2.014030,0.000195,246,2,0.002540,0.003344,10776736,9162717,0,0,32397,0,1,1 +1773578279.017588,0.65,4,3992.50,58.65,1402.00,2296.21,0.00,3518464073761.776367,3518464073763.789062,11,0,0.002734,0.003964,10776801,9162798,0,0,32400,0,1,1 +1773578284.021729,0.55,4,3992.50,58.65,1402.02,2296.20,0.00,0.000000,0.000000,11,0,0.002731,0.003951,10776866,9162878,0,0,32402,0,1,1 +1773578289.021556,0.55,4,3992.50,58.65,1402.03,2296.18,0.00,16612.644899,17981.597334,1183180,1812794,0.002734,0.003964,10776931,9162959,0,0,32405,0,1,1 +1773578294.022011,0.90,4,3992.50,58.65,1405.55,2296.37,0.00,3518116886024.876953,3518116884654.084961,246,2,0.002721,0.003941,10776995,9163038,0,0,32407,0,1,1 +1773578299.024538,1.85,4,3992.50,58.87,1396.87,2305.05,0.00,3516659971924.552246,3516659971926.563965,11,0,0.007032,0.007322,10777142,9163178,0,0,32410,0,1,1 +1773578304.021562,21.07,4,3992.50,58.71,1403.09,2298.79,0.00,0.000000,0.000000,11,0,32.215195,0.139560,10787485,9170720,0,0,32412,0,1,1 +1773578309.018569,2.91,4,3992.50,58.99,1392.39,2309.49,0.00,2.013510,0.000195,246,2,0.096100,0.012596,10787850,9171006,0,0,32415,0,1,1 +1773578314.022364,5.87,4,3992.50,58.46,1412.92,2288.95,0.00,0.000000,0.000000,246,2,7.958767,0.033562,10790216,9172848,0,0,32417,0,1,1 +1773578319.022209,0.60,4,3992.50,58.46,1413.20,2288.68,0.00,0.000000,0.000000,246,2,0.002746,0.003964,10790282,9172929,0,0,32420,0,1,1 +1773578324.021421,1.26,4,3992.50,58.67,1406.05,2296.95,0.00,3518991483822.207520,3518991483824.220703,11,0,0.002734,0.003955,10790347,9173009,0,0,32422,0,1,1 +1773578329.022261,0.65,4,3992.50,58.63,1407.33,2295.66,0.00,0.180243,0.000000,205,0,0.002544,0.003713,10790408,9173083,0,0,32425,0,1,1 +1773578334.021937,0.90,4,3992.50,58.66,1406.36,2296.64,0.00,3518665332401.315918,0.000000,11,0,0.002694,0.004203,10790470,9173161,0,0,32427,0,1,1 +1773578339.017488,0.65,4,3992.50,58.66,1406.38,2296.62,0.00,16626.864337,17998.496300,1183180,1814463,0.002723,0.003968,10790534,9173242,0,0,32430,0,1,1 +1773578344.021246,0.55,4,3992.50,58.66,1406.38,2296.62,0.00,3515794661235.416016,3515794659865.853516,205,0,0.002719,0.003951,10790598,9173322,0,0,32432,0,1,1 +1773578349.017437,0.60,4,3992.50,58.66,1406.18,2296.81,0.00,3521119955811.197754,0.000000,75,0,0.002736,0.003967,10790663,9173403,0,0,32435,0,1,1 +1773578354.022258,1.00,4,3992.50,58.67,1406.11,2297.03,0.00,0.126636,0.000000,205,0,0.002739,0.003959,10790729,9173484,0,0,32437,0,1,1 +1773578359.021717,0.70,4,3992.50,58.51,1412.27,2290.70,0.00,3518818078714.223145,0.000000,11,0,0.004168,0.005721,10790810,9173590,0,0,32440,0,1,1 +1773578364.022219,0.65,4,3992.50,58.51,1412.28,2290.69,0.00,0.000000,0.000000,11,0,0.002733,0.003941,10790875,9173669,0,0,32442,0,1,1 +1773578369.018041,0.50,4,3992.50,58.51,1412.29,2290.68,0.00,16616.394221,17987.045762,1181691,1814360,0.002494,0.003333,10790932,9173738,0,0,32445,0,1,1 +1773578374.019914,6.73,4,3992.50,58.72,1404.15,2298.82,0.00,9.557942,10.728207,1183180,1814764,6.035729,0.031489,10792864,9175277,0,0,32447,0,1,1 +1773578379.017613,17.98,4,3992.50,58.59,1409.08,2293.84,0.00,3520057402180.224121,3520057400808.863281,75,0,30.199354,0.134168,10802615,9182557,0,0,32450,0,1,1 +1773578384.022312,4.76,4,3992.50,58.72,1388.83,2298.95,0.00,0.126639,0.000000,205,0,4.032820,0.022104,10804094,9183599,0,0,32452,0,1,1 +1773578389.021479,1.15,4,3992.50,58.73,1388.17,2299.56,0.00,3519023374014.038574,0.000000,11,0,0.006337,0.006415,10804211,9183724,0,0,32455,0,1,1 +1773578394.022128,1.40,4,3992.50,58.12,1412.38,2275.36,0.00,0.000000,0.000000,11,0,0.002721,0.003954,10804275,9183804,0,0,32457,0,1,1 +1773578399.022190,0.65,4,3992.50,58.12,1412.14,2275.60,0.00,0.000000,0.000000,11,0,0.002742,0.004616,10804341,9183890,0,0,32460,0,1,1 +1773578404.021826,0.70,4,3992.50,58.13,1411.91,2275.82,0.00,16603.735316,17974.794594,1181692,1815924,0.002796,0.004005,10804410,9183974,0,0,32462,0,1,1 +1773578409.019284,0.55,4,3992.50,58.12,1412.02,2275.71,0.00,3520226510040.522461,3520226508677.889160,251,273,0.002735,0.003966,10804475,9184055,0,0,32465,0,1,1 +1773578414.022452,1.00,4,3992.50,58.32,1407.46,2283.32,0.00,16599.914717,17962.270116,1183181,1816319,0.002503,0.003319,10804533,9184123,0,0,32467,0,1,1 +1773578419.022274,0.60,4,3992.50,58.32,1407.12,2283.52,0.00,0.000000,0.062795,1183181,1816384,0.002734,0.003977,10804598,9184205,0,0,32470,0,1,1 +1773578424.022373,0.65,4,3992.50,58.32,1407.14,2283.51,0.00,3518367746728.707520,3518367745356.253906,205,0,0.002734,0.003942,10804663,9184284,0,0,32472,0,1,1 +1773578429.017486,0.60,4,3992.50,58.13,1414.55,2276.09,0.00,1.477323,10.685639,251,273,0.002736,0.003968,10804728,9184365,0,0,32475,0,1,1 +1773578434.022100,0.65,4,3992.50,58.14,1414.36,2276.29,0.00,0.355824,3515192918514.506836,246,2,0.002739,0.003959,10804794,9184446,0,0,32477,0,1,1 +1773578439.020810,0.55,4,3992.50,58.14,1414.36,2276.28,0.00,3519345542111.438965,3519345542113.452148,11,0,0.002734,0.003965,10804859,9184527,0,0,32480,0,1,1 +1773578444.018669,0.95,4,3992.50,58.18,1405.25,2277.73,0.00,16609.640453,17981.598268,1181692,1816301,0.002735,0.003956,10804924,9184607,0,0,32482,0,1,1 +1773578449.021879,8.48,4,3992.50,57.95,1413.87,2268.85,0.00,0.000000,0.090762,1181692,1816539,10.063393,0.049710,10808278,9186965,0,0,32485,0,1,1 +1773578454.017846,19.28,4,3992.50,58.26,1401.57,2281.12,0.00,3521277139621.327637,3521277138246.746094,246,2,30.213793,0.134038,10818075,9194169,0,0,32487,0,1,1 +1773578459.022159,0.80,4,3992.50,57.85,1417.76,2264.91,0.00,3515404581138.958984,3515404581140.915527,75,0,0.002731,0.003936,10818140,9194248,0,0,32490,0,1,1 +1773578464.022124,0.55,4,3992.50,57.77,1420.91,2261.75,0.00,0.000000,0.000000,75,0,0.002492,0.003952,10818197,9194319,0,0,32492,0,1,1 +1773578469.018283,0.60,4,3992.50,57.78,1420.43,2262.22,0.00,0.000000,0.000000,75,0,0.002744,0.003975,10818263,9194401,0,0,32495,0,1,1 +1773578474.017587,1.00,4,3992.50,58.18,1404.82,2277.69,0.00,16604.783518,17977.657936,1181692,1817798,0.002734,0.003955,10818328,9194481,0,0,32497,0,1,1 +1773578479.017458,0.65,4,3992.50,58.17,1404.90,2277.60,0.00,3518528243347.143066,3518528241974.477539,11,0,0.002721,0.003964,10818392,9194562,0,0,32500,0,1,1 +1773578484.017444,0.65,4,3992.50,58.17,1404.91,2277.58,0.00,1.656157,10.675226,251,273,0.002734,0.003954,10818457,9194642,0,0,32502,0,1,1 +1773578489.021565,0.55,4,3992.50,58.17,1404.93,2277.57,0.00,3515539040682.873047,3515539040673.861816,11,0,0.002261,0.002682,10818507,9194698,0,0,32505,0,1,1 +1773578494.017434,0.75,4,3992.50,58.17,1405.07,2277.43,0.00,0.000000,0.000000,11,0,0.002129,0.003720,10818561,9194771,0,0,32507,0,1,1 +1773578499.017440,0.60,4,3992.50,58.17,1404.85,2277.64,0.00,16602.531673,17975.492194,1181694,1818138,0.002721,0.003964,10818625,9194852,0,0,32510,0,1,1 +1773578504.022003,0.90,4,3992.50,58.37,1397.38,2285.22,0.00,3515228490310.614258,3515228488936.894043,246,2,0.002719,0.003951,10818689,9194932,0,0,32512,0,1,1 +1773578509.021467,0.60,4,3992.50,58.28,1400.56,2281.93,0.00,16602.319080,17977.568521,1181694,1818243,0.002742,0.003973,10818755,9195014,0,0,32515,0,1,1 +1773578514.021286,0.75,4,3992.50,57.79,1420.02,2262.48,0.00,3518564485501.191895,3518564484126.040527,246,2,0.002734,0.003954,10818820,9195094,0,0,32517,0,1,1 +1773578519.017613,11.43,4,3992.50,58.20,1403.80,2278.68,0.00,3521023740246.743652,10.682848,251,273,14.112126,0.072187,10823573,9198681,0,0,32520,0,1,1 +1773578524.021245,15.65,4,3992.50,58.26,1401.60,2280.82,0.00,3515883862215.695801,3515883862206.683594,11,0,22.111238,0.094302,10830426,9203812,0,0,32522,0,1,1 +1773578529.022062,3.71,4,3992.50,58.67,1385.25,2297.18,0.00,0.000000,0.000000,11,0,4.026287,0.021046,10831737,9204762,0,0,32525,0,1,1 +1773578534.021432,1.00,4,3992.50,58.62,1387.43,2295.28,0.00,16604.641453,17978.975130,1181694,1819515,0.002734,0.003942,10831802,9204841,0,0,32527,0,1,1 +1773578539.021591,0.70,4,3992.50,58.58,1389.20,2293.37,0.00,9.561220,10.864889,1183183,1820000,0.002505,0.003343,10831860,9204911,0,0,32530,0,1,1 +1773578544.019883,0.70,4,3992.50,58.58,1389.21,2293.35,0.00,3519639891938.202148,3519639890562.267578,11,0,0.002743,0.003964,10831926,9204992,0,0,32532,0,1,1 +1773578549.017601,0.50,4,3992.50,58.57,1389.22,2293.34,0.00,1.656908,10.680069,251,273,0.002735,0.003966,10831991,9205073,0,0,32535,0,1,1 +1773578554.017439,0.65,4,3992.50,58.57,1389.24,2293.32,0.00,16601.434001,17966.919861,1181694,1819801,0.002734,0.003954,10832056,9205153,0,0,32537,0,1,1 +1773578559.017467,0.60,4,3992.50,58.58,1389.01,2293.55,0.00,3518417390627.574707,3518417389253.121582,11,0,0.002734,0.003964,10832121,9205234,0,0,32540,0,1,1 +1773578564.021865,0.95,4,3992.50,58.62,1387.13,2295.23,0.00,1.654697,10.665813,251,273,0.002731,0.003951,10832186,9205314,0,0,32542,0,1,1 +1773578569.017805,0.75,4,3992.50,58.64,1386.12,2295.96,0.00,0.356442,3521297117654.796875,246,2,0.005556,0.005899,10832296,9205423,0,0,32545,0,1,1 +1773578574.022072,0.65,4,3992.50,58.64,1386.14,2295.94,0.00,16595.935500,17972.676470,1183183,1820419,0.002528,0.003318,10832356,9205491,0,0,32547,0,1,1 +1773578579.022292,0.75,4,3992.50,58.64,1386.15,2295.91,0.00,3518282020553.540039,3518282019177.696777,11,0,0.002729,0.003985,10832421,9205574,0,0,32550,0,1,1 +1773578584.018426,0.70,4,3992.50,58.64,1386.16,2295.91,0.00,16615.400266,17991.342074,1181694,1820238,0.002736,0.003957,10832486,9205654,0,0,32552,0,1,1 +1773578589.017462,0.60,4,3992.50,58.64,1386.18,2295.90,0.00,3519115909387.462402,3519115908021.339844,251,273,0.002734,0.003965,10832551,9205735,0,0,32555,0,1,1 +1773578594.017425,19.80,4,3992.50,59.01,1370.71,2310.52,0.00,0.356155,3518463082946.344727,246,2,24.153473,0.112250,10840299,9211527,0,0,32557,0,1,1 +1773578599.017602,10.16,4,3992.50,58.20,1402.45,2278.79,0.00,3518312284872.207520,10.674621,251,273,16.103513,0.072396,10845619,9215328,0,0,32560,0,1,1 +1773578604.021829,0.65,4,3992.50,58.20,1402.47,2278.77,0.00,3515465575986.912109,3515465575977.847168,75,0,0.002731,0.003951,10845684,9215408,0,0,32562,0,1,1 +1773578609.017441,0.60,4,3992.50,58.20,1402.48,2278.76,0.00,3521527284278.999512,0.000000,11,0,0.003394,0.004890,10845751,9215491,0,0,32565,0,1,1 +1773578614.021221,0.55,4,3992.50,58.23,1401.51,2279.72,0.00,1.654901,10.667131,251,273,0.002777,0.004021,10845820,9215576,0,0,32567,0,1,1 +1773578619.021812,0.70,4,3992.50,58.23,1401.53,2279.70,0.00,16608.493286,17976.484044,1183183,1821967,0.002746,0.003964,10845886,9215657,0,0,32570,0,1,1 +1773578624.020320,0.85,4,3992.50,58.24,1401.06,2280.17,0.00,3519487462937.930176,3519487461560.347656,11,0,0.002505,0.003309,10845944,9215724,0,0,32572,0,1,1 +1773578629.018348,0.65,4,3992.50,58.24,1400.89,2280.29,0.00,0.053537,0.000000,75,0,0.002722,0.003953,10846008,9215804,0,0,32575,0,1,1 +1773578634.021968,0.85,4,3992.50,58.26,1400.16,2281.02,0.00,1.957372,0.000195,246,2,0.002732,0.003939,10846073,9215883,0,0,32577,0,1,1 +1773578639.021476,0.75,4,3992.50,58.26,1400.18,2281.00,0.00,3518783121448.428223,3518783121450.440918,11,0,0.002734,0.003965,10846138,9215964,0,0,32580,0,1,1 +1773578644.018662,0.60,4,3992.50,58.26,1400.19,2280.99,0.00,0.180375,0.000000,205,0,0.002735,0.003957,10846203,9216044,0,0,32582,0,1,1 +1773578649.020437,0.60,4,3992.50,58.28,1399.25,2281.93,0.00,3517188424098.666504,0.000000,11,0,0.002741,0.003971,10846269,9216126,0,0,32585,0,1,1 +1773578654.021565,1.00,4,3992.50,58.23,1414.24,2279.66,0.00,16598.805219,17975.212004,1181694,1822206,0.002733,0.003953,10846334,9216206,0,0,32587,0,1,1 +1773578659.017447,1.30,4,3992.50,58.05,1418.93,2272.71,0.00,3521337682916.744629,3521337681538.838379,75,0,0.007185,0.006541,10846476,9216344,0,0,32590,0,1,1 +1773578664.017572,14.15,4,3992.50,59.20,1373.75,2317.88,0.00,0.000000,0.000000,75,0,18.117077,0.085038,10852413,9220745,0,0,32592,0,1,1 +1773578669.017461,11.98,4,3992.50,59.58,1358.99,2332.55,0.00,16612.428009,17990.871203,1183184,1823452,18.111370,0.083049,10858250,9225019,0,0,32595,0,1,1 +1773578674.021807,4.11,4,3992.50,58.63,1395.96,2295.60,0.00,3515381332448.080078,3515381331079.929199,251,273,4.027418,0.022428,10859720,9226112,0,0,32597,0,1,1 +1773578679.017596,0.60,4,3992.50,58.30,1409.12,2282.46,0.00,0.000000,0.000000,251,273,0.002723,0.003968,10859784,9226193,0,0,32600,0,1,1 +1773578684.019178,0.90,4,3992.50,58.39,1393.97,2286.18,0.00,3517324003972.932129,3517324003963.862793,75,0,0.002741,0.003961,10859850,9226274,0,0,32602,0,1,1 +1773578689.021785,0.65,4,3992.50,58.37,1394.41,2285.14,0.00,1.957768,0.000195,246,2,0.003654,0.004631,10859917,9226358,0,0,32605,0,1,1 +1773578694.018026,0.65,4,3992.50,58.37,1394.43,2285.12,0.00,0.000000,0.000000,246,2,0.002560,0.003811,10859979,9226436,0,0,32607,0,1,1 +1773578699.017570,0.70,4,3992.50,58.36,1394.45,2285.11,0.00,0.000000,0.000000,246,2,0.002505,0.003344,10860037,9226506,0,0,32610,0,1,1 +1773578704.022230,0.85,4,3992.50,58.02,1407.81,2271.73,0.00,3515161173576.819824,3515161173578.776367,75,0,0.002793,0.004001,10860106,9226590,0,0,32612,0,1,1 +1773578709.021853,0.85,4,3992.50,58.03,1407.59,2271.96,0.00,0.126767,0.000000,205,0,0.002734,0.003952,10860171,9226670,0,0,32615,0,1,1 +1773578714.021910,1.05,4,3992.50,58.25,1397.42,2280.77,0.00,0.000000,0.000000,205,0,0.002734,0.003954,10860236,9226750,0,0,32617,0,1,1 +1773578719.017958,0.85,4,3992.50,58.25,1397.44,2280.75,0.00,3521220227825.891113,0.000000,11,0,0.002736,0.003955,10860301,9226830,0,0,32620,0,1,1 +1773578724.021724,0.70,4,3992.50,58.28,1396.48,2281.70,0.00,0.000000,0.000000,11,0,0.002732,0.004273,10860366,9226912,0,0,32622,0,1,1 +1773578729.021676,0.80,4,3992.50,58.24,1398.06,2280.14,0.00,2.012324,0.000195,246,2,0.002742,0.004294,10860432,9226996,0,0,32625,0,1,1 +1773578734.023408,7.97,4,3992.50,58.45,1389.72,2288.34,0.00,3517218379458.273438,3517218379460.285156,11,0,8.134904,0.045601,10863232,9229186,0,0,32627,0,1,1 +1773578739.018579,15.21,4,3992.50,58.85,1374.11,2304.05,0.00,16628.174394,18009.771415,1183184,1825292,24.084149,0.103292,10870835,9234914,0,0,32630,0,1,1 +1773578744.019583,6.38,4,3992.50,58.19,1410.80,2278.28,0.00,3517730434496.480469,3517730433116.314941,205,0,8.059037,0.040377,10873660,9236985,0,0,32632,0,1,1 +1773578749.022310,1.15,4,3992.50,58.07,1415.39,2273.71,0.00,1.831033,0.000195,246,2,0.003894,0.005138,10873751,9237091,0,0,32635,0,1,1 +1773578754.021419,0.85,4,3992.50,58.06,1415.89,2273.21,0.00,3519064638399.632812,3519064638401.465332,205,0,0.002734,0.003955,10873816,9237171,0,0,32637,0,1,1 +1773578759.021902,0.85,4,3992.50,58.06,1415.90,2273.20,0.00,0.000000,0.000000,205,0,0.002733,0.003964,10873881,9237252,0,0,32640,0,1,1 +1773578764.017460,0.80,4,3992.50,58.06,1415.93,2273.18,0.00,0.000000,0.000000,205,0,0.002736,0.003958,10873946,9237332,0,0,32642,0,1,1 +1773578769.017462,0.85,4,3992.50,58.07,1415.71,2273.39,0.00,3518435904950.673340,0.000000,11,0,0.002721,0.003964,10874010,9237413,0,0,32645,0,1,1 +1773578774.022193,1.00,4,3992.50,58.18,1413.77,2277.78,0.00,0.000000,0.000000,11,0,0.002731,0.003817,10874075,9237492,0,0,32647,0,1,1 +1773578779.021718,0.85,4,3992.50,57.97,1421.41,2269.48,0.00,0.000000,0.000000,11,0,0.001960,0.003710,10874127,9237565,0,0,32650,0,1,1 +1773578784.021933,0.75,4,3992.50,57.97,1421.43,2269.48,0.00,0.053513,0.000000,75,0,0.002505,0.003333,10874185,9237634,0,0,32652,0,1,1 +1773578789.021823,0.90,4,3992.50,57.72,1430.94,2259.98,0.00,0.000000,0.000000,75,0,0.002734,0.004286,10874250,9237717,0,0,32655,0,1,1 +1773578794.021597,0.70,4,3992.50,57.73,1430.71,2260.21,0.00,3518596138944.708008,0.000000,11,0,0.002734,0.004276,10874315,9237799,0,0,32657,0,1,1 +1773578799.017560,1.00,4,3992.50,57.64,1434.19,2256.73,0.00,0.180419,0.000000,205,0,0.002736,0.003967,10874380,9237880,0,0,32660,0,1,1 +1773578804.017508,1.00,4,3992.50,58.08,1417.18,2273.86,0.00,16612.104856,17993.850733,1183184,1826436,0.002734,0.003954,10874445,9237960,0,0,32662,0,1,1 +1773578809.019907,11.82,4,3992.50,59.43,1363.92,2326.98,0.00,3516749863425.477051,3516749862042.576660,246,2,12.086164,0.065669,10878591,9241094,0,0,32665,0,1,1 +1773578814.021566,14.34,4,3992.50,58.78,1389.68,2301.20,0.00,16604.594484,17988.530402,1183184,1827573,24.132104,0.103635,10886405,9247014,0,0,32667,0,1,1 +1773578819.018943,4.62,4,3992.50,58.43,1403.33,2287.53,0.00,3520283924474.373535,3520283924473.293457,1181695,1827398,4.033654,0.020962,10887721,9247969,0,0,32670,0,1,1 +1773578824.022185,0.80,4,3992.50,58.45,1402.38,2288.48,0.00,0.000000,0.006636,1181695,1827408,0.002134,0.003723,10887776,9248043,0,0,32672,0,1,1 +1773578829.022011,1.65,4,3992.50,58.16,1413.88,2276.99,0.00,3518559816201.377930,3518559814820.020020,11,0,0.002517,0.003318,10887835,9248111,0,0,32675,0,1,1 +1773578834.022162,1.15,4,3992.50,58.80,1388.87,2301.98,0.00,0.000000,0.000000,11,0,0.002734,0.003954,10887900,9248191,0,0,32677,0,1,1 +1773578839.021077,0.75,4,3992.50,58.68,1393.57,2297.29,0.00,0.000000,0.000000,11,0,0.002734,0.003965,10887965,9248272,0,0,32680,0,1,1 +1773578844.021758,0.85,4,3992.50,58.59,1396.83,2294.03,0.00,2.012031,0.000195,246,2,0.002733,0.003941,10888030,9248351,0,0,32682,0,1,1 +1773578849.022280,0.80,4,3992.50,58.39,1404.77,2286.09,0.00,3518069361661.229980,10.673884,251,273,0.002733,0.003964,10888095,9248432,0,0,32685,0,1,1 +1773578854.017439,0.80,4,3992.50,58.36,1405.98,2284.89,0.00,3521847393990.979980,3521847393981.771973,205,0,0.002736,0.003958,10888160,9248512,0,0,32687,0,1,1 +1773578859.019661,0.80,4,3992.50,58.36,1405.99,2284.87,0.00,3516874300096.862305,0.000000,75,0,0.002720,0.004606,10888224,9248597,0,0,32690,0,1,1 +1773578864.018418,1.15,4,3992.50,58.48,1400.44,2289.79,0.00,1.603035,10.677850,251,273,0.002505,0.003322,10888282,9248665,0,0,32692,0,1,1 +1773578869.021567,0.90,4,3992.50,58.49,1400.08,2290.02,0.00,3516222451471.990723,3516222451462.977539,11,0,0.004430,0.004800,10888384,9248768,0,0,32695,0,1,1 +1773578874.017448,0.80,4,3992.50,58.31,1407.27,2282.82,0.00,1.657518,10.683998,251,273,0.003219,0.004123,10888457,9248852,0,0,32697,0,1,1 +1773578879.021671,0.80,4,3992.50,58.31,1407.28,2282.82,0.00,16586.885347,17958.970097,1181695,1828160,0.002719,0.003961,10888521,9248933,0,0,32700,0,1,1 +1773578884.022117,19.14,4,3992.50,58.62,1395.10,2294.96,0.00,3518123392561.023438,3518123391178.883789,11,0,24.151915,0.111226,10896305,9254758,0,0,32702,0,1,1 +1773578889.017456,9.76,4,3992.50,58.43,1402.35,2287.69,0.00,1.657698,10.685155,251,273,14.097109,0.062253,10900848,9258177,0,0,32705,0,1,1 +1773578894.021643,3.26,4,3992.50,58.48,1404.52,2289.64,0.00,3515493355135.814453,3515493355126.803223,11,0,2.019292,0.014906,10901646,9258787,0,0,32707,0,1,1 +1773578899.021432,0.85,4,3992.50,58.30,1411.62,2282.65,0.00,0.053518,0.000000,75,0,0.002734,0.003964,10901711,9258868,0,0,32710,0,1,1 +1773578904.022182,0.70,4,3992.50,58.33,1410.42,2283.85,0.00,16609.570170,17994.184644,1183184,1829944,0.002721,0.003954,10901775,9258948,0,0,32712,0,1,1 +1773578909.022016,0.65,4,3992.50,58.33,1410.43,2283.84,0.00,3518553694398.750000,3518553693013.936035,11,0,0.002734,0.003964,10901840,9259029,0,0,32715,0,1,1 +1773578914.021576,0.95,4,3992.50,58.33,1410.45,2283.82,0.00,0.000000,0.000000,11,0,0.003441,0.004926,10901911,9259114,0,0,32717,0,1,1 +1773578919.021451,0.75,4,3992.50,58.34,1409.98,2284.28,0.00,0.180278,0.000000,205,0,0.002517,0.003343,10901970,9259184,0,0,32720,0,1,1 +1773578924.021843,1.20,4,3992.50,58.39,1412.55,2286.19,0.00,16610.631700,17995.659856,1183184,1830112,0.002741,0.004606,10902036,9259269,0,0,32722,0,1,1 +1773578929.018583,0.85,4,3992.50,58.43,1411.06,2287.72,0.00,3520732774823.409668,3520732773446.574707,251,273,0.002735,0.003967,10902101,9259350,0,0,32725,0,1,1 +1773578934.022115,1.25,4,3992.50,58.33,1415.23,2283.57,0.00,16589.179219,17963.108314,1181695,1829926,0.002732,0.003952,10902166,9259430,0,0,32727,0,1,1 +1773578939.021733,0.85,4,3992.50,58.33,1415.02,2283.78,0.00,3518706090392.593262,3518706089008.568848,11,0,0.002734,0.003965,10902231,9259511,0,0,32730,0,1,1 +1773578944.022144,0.85,4,3992.50,58.15,1422.19,2276.61,0.00,1.656016,10.674318,251,273,0.002733,0.003954,10902296,9259591,0,0,32732,0,1,1 +1773578949.022343,0.70,4,3992.50,58.15,1422.20,2276.59,0.00,3518297175024.702148,3518297175015.684082,11,0,0.002734,0.003964,10902361,9259672,0,0,32735,0,1,1 +1773578954.020105,1.45,4,3992.50,58.46,1407.50,2288.80,0.00,1.656894,10.679974,251,273,0.003902,0.004009,10902443,9259754,0,0,32737,0,1,1 +1773578959.021353,19.87,4,3992.50,59.12,1381.49,2314.49,0.00,16606.314168,17982.527120,1183184,1831158,30.181248,0.141120,10912324,9267214,0,0,32740,0,1,1 +1773578964.021528,7.09,4,3992.50,58.83,1392.56,2303.40,0.00,3518314360594.772461,3518314360593.768555,1181695,1831141,10.071908,0.050096,10915811,9269768,0,0,32742,0,1,1 +1773578969.017561,0.80,4,3992.50,58.84,1392.35,2303.62,0.00,3521230613400.529785,3521230612014.679199,205,0,0.002507,0.003333,10915869,9269837,0,0,32745,0,1,1 +1773578974.022240,1.75,4,3992.50,57.91,1428.81,2267.16,0.00,3515147520815.101074,0.000000,11,0,0.003235,0.005044,10915947,9269940,0,0,32747,0,1,1 +1773578979.022366,0.75,4,3992.50,57.91,1428.60,2267.38,0.00,0.000000,0.000000,11,0,0.002721,0.003964,10916011,9270021,0,0,32750,0,1,1 +1773578984.021763,0.60,4,3992.50,57.99,1425.41,2270.56,0.00,1.656352,10.676484,251,273,0.002505,0.003321,10916069,9270089,0,0,32752,0,1,1 +1773578989.021452,1.10,4,3992.50,58.39,1409.89,2286.09,0.00,3518655702622.322754,3518655702613.303711,11,0,0.003427,0.004632,10916129,9270164,0,0,32755,0,1,1 +1773578994.021480,0.60,4,3992.50,58.35,1411.35,2284.63,0.00,1.656143,10.675135,251,273,0.002721,0.003954,10916193,9270244,0,0,32757,0,1,1 +1773578999.021853,0.60,4,3992.50,58.35,1411.27,2284.71,0.00,3518174763598.703613,3518174763589.685547,11,0,0.002721,0.003964,10916257,9270325,0,0,32760,0,1,1 +1773579004.021913,0.60,4,3992.50,58.33,1412.21,2283.77,0.00,2.012281,0.000195,246,2,0.002796,0.003992,10916326,9270408,0,0,32762,0,1,1 +1773579009.021426,0.75,4,3992.50,58.30,1413.45,2282.53,0.00,3518780156232.828613,3518780156234.787109,75,0,0.002734,0.003965,10916391,9270489,0,0,32765,0,1,1 +1773579014.017459,0.90,4,3992.50,58.49,1395.48,2290.11,0.00,1.603909,10.683672,251,273,0.002723,0.003957,10916455,9270569,0,0,32767,0,1,1 +1773579019.017559,0.70,4,3992.50,58.39,1399.43,2286.18,0.00,16600.565726,17977.376722,1181696,1832043,0.002734,0.003964,10916520,9270650,0,0,32770,0,1,1 +1773579024.017495,4.42,4,3992.50,58.20,1407.05,2278.57,0.00,3518482057151.066406,3518482055763.179199,246,2,4.029023,0.021031,10917852,9271611,0,0,32772,0,1,1 +1773579029.021911,22.09,4,3992.50,58.89,1379.79,2305.74,0.00,3515332186267.700684,3515332186269.711426,11,0,34.179868,0.153648,10928974,9279934,0,0,32775,0,1,1 +1773579034.018571,2.71,4,3992.50,58.60,1391.11,2294.42,0.00,0.000000,0.000000,11,0,2.024719,0.017149,10929820,9280598,0,0,32777,0,1,1 +1773579039.021775,0.60,4,3992.50,58.48,1395.96,2289.56,0.00,0.000000,0.000000,11,0,0.002503,0.003342,10929878,9280668,0,0,32780,0,1,1 +1773579044.018588,1.00,4,3992.50,58.74,1386.52,2299.70,0.00,16613.144516,18001.151377,1181697,1833517,0.002723,0.003957,10929942,9280748,0,0,32782,0,1,1 +1773579049.021689,0.60,4,3992.50,58.74,1386.57,2299.63,0.00,9.555597,10.834589,1183186,1833994,0.002719,0.003962,10930006,9280829,0,0,32785,0,1,1 +1773579054.017562,0.55,4,3992.50,58.74,1386.34,2299.87,0.00,3521343919114.122070,3521343919113.013672,1181697,1833729,0.002736,0.004602,10930071,9280913,0,0,32787,0,1,1 +1773579059.017553,0.85,4,3992.50,58.75,1386.11,2300.10,0.00,3518443376296.775879,3518443374909.425293,75,0,0.002734,0.003964,10930136,9280994,0,0,32790,0,1,1 +1773579064.017735,0.55,4,3992.50,58.75,1386.13,2300.06,0.00,0.126753,0.000000,205,0,0.002734,0.003954,10930201,9281074,0,0,32792,0,1,1 +1773579069.020802,0.60,4,3992.50,58.75,1386.17,2300.04,0.00,3516280062487.964844,0.000000,11,0,0.002732,0.003962,10930266,9281155,0,0,32795,0,1,1 +1773579074.021565,1.00,4,3992.50,58.58,1402.45,2293.46,0.00,0.180246,0.000000,205,0,0.002616,0.003949,10930331,9281235,0,0,32797,0,1,1 +1773579079.021739,0.55,4,3992.50,58.39,1409.91,2286.00,0.00,16611.355230,18000.165004,1183186,1834209,0.002401,0.002709,10930383,9281293,0,0,32800,0,1,1 +1773579084.020240,0.60,4,3992.50,58.40,1409.46,2286.45,0.00,3519492611382.310059,3519492609991.202637,246,2,0.002734,0.003956,10930448,9281373,0,0,32802,0,1,1 +1773579089.022154,0.60,4,3992.50,58.07,1422.51,2273.41,0.00,16603.749853,17993.948138,1183186,1834259,0.002733,0.003963,10930513,9281454,0,0,32805,0,1,1 +1773579094.018553,8.34,4,3992.50,59.17,1379.43,2316.48,0.00,3520973137259.448730,3520973135869.548828,205,0,10.191133,0.050311,10933987,9284005,0,0,32807,0,1,1 +1773579099.019991,18.38,4,3992.50,58.88,1390.40,2305.46,0.00,16597.601985,17985.460663,1181697,1834814,30.061787,0.133005,10943796,9291233,0,0,32810,0,1,1 +1773579104.018584,1.71,4,3992.50,58.79,1385.79,2301.83,0.00,3519427120551.802246,3519427119163.280762,75,0,0.011278,0.008449,10944018,9291424,0,0,32812,0,1,1 +1773579109.022197,0.65,4,3992.50,58.36,1401.83,2285.10,0.00,16600.068415,17989.197154,1183186,1835825,0.002732,0.003961,10944083,9291505,0,0,32815,0,1,1 +1773579114.017554,0.60,4,3992.50,58.19,1408.61,2278.32,0.00,3521707745204.044434,3521707743821.700684,251,273,0.002736,0.003958,10944148,9291585,0,0,32817,0,1,1 +1773579119.020776,0.55,4,3992.50,58.13,1410.88,2276.05,0.00,3516171371172.337402,3516171371163.324707,11,0,0.002503,0.003972,10944206,9291658,0,0,32820,0,1,1 +1773579124.018586,0.60,4,3992.50,58.13,1410.89,2276.04,0.00,1.656878,10.679873,251,273,0.002743,0.003964,10944272,9291739,0,0,32822,0,1,1 +1773579129.021691,0.60,4,3992.50,58.14,1410.66,2276.27,0.00,3516253199320.440430,3516253199311.374023,75,0,0.002732,0.003949,10944337,9291819,0,0,32825,0,1,1 +1773579134.022456,0.60,4,3992.50,58.04,1414.38,2272.55,0.00,16609.523593,17999.575572,1183186,1835872,0.002733,0.003954,10944402,9291899,0,0,32827,0,1,1 +1773579139.022054,0.95,4,3992.50,58.21,1407.78,2278.86,0.00,3518720243759.099121,3518720242377.795898,251,273,0.002505,0.003331,10944460,9291968,0,0,32830,0,1,1 +1773579144.022145,0.55,4,3992.50,58.18,1408.64,2278.00,0.00,0.000000,0.000000,251,273,0.002505,0.003321,10944518,9292036,0,0,32832,0,1,1 +1773579149.021758,0.55,4,3992.50,58.19,1408.41,2278.23,0.00,3518709817405.937500,3518709817396.918457,11,0,0.002734,0.003965,10944583,9292117,0,0,32835,0,1,1 +1773579154.021595,0.65,4,3992.50,58.19,1408.43,2278.21,0.00,0.000000,0.000000,11,0,0.002709,0.003954,10944646,9292197,0,0,32837,0,1,1 +1773579159.020710,0.70,4,3992.50,58.22,1407.20,2279.44,0.00,0.180305,0.000000,205,0,0.002734,0.003965,10944711,9292278,0,0,32840,0,1,1 +1773579164.018558,12.46,4,3992.50,58.82,1384.07,2302.76,0.00,1.832821,0.000195,246,2,14.104853,0.071297,10949486,9295862,0,0,32842,0,1,1 +1773579169.021425,15.66,4,3992.50,58.10,1411.70,2274.91,0.00,3516420623234.720703,3516420623236.732422,11,0,26.150672,0.119299,10958132,9302287,0,0,32845,0,1,1 +1773579174.021905,0.85,4,3992.50,58.13,1410.75,2275.85,0.00,0.180256,0.000000,205,0,0.003785,0.004355,10958218,9302380,0,0,32847,0,1,1 +1773579179.017506,0.70,4,3992.50,58.13,1410.52,2276.09,0.00,16616.994626,18008.473414,1181697,1836953,0.002736,0.003968,10958283,9302461,0,0,32850,0,1,1 +1773579184.021811,0.55,4,3992.50,58.13,1410.53,2276.07,0.00,3515410544029.456055,3515410542640.397949,205,0,0.002731,0.004594,10958348,9302545,0,0,32852,0,1,1 +1773579189.022076,0.70,4,3992.50,57.93,1418.37,2268.23,0.00,3518250712041.975586,0.000000,11,0,0.002733,0.003964,10958413,9302626,0,0,32855,0,1,1 +1773579194.021644,0.85,4,3992.50,58.19,1411.30,2278.20,0.00,0.000000,0.000000,11,0,0.002329,0.003175,10958468,9302692,0,0,32857,0,1,1 +1773579199.021445,0.65,4,3992.50,58.18,1411.45,2278.05,0.00,0.000000,0.000000,11,0,0.002734,0.003964,10958533,9302773,0,0,32860,0,1,1 +1773579204.021559,0.60,4,3992.50,58.18,1411.48,2278.04,0.00,0.000000,0.000000,11,0,0.002734,0.003954,10958598,9302853,0,0,32862,0,1,1 +1773579209.017452,0.60,4,3992.50,58.18,1411.49,2278.03,0.00,0.053560,0.000000,75,0,0.002736,0.003967,10958663,9302934,0,0,32865,0,1,1 +1773579214.022142,0.55,4,3992.50,58.18,1411.50,2278.02,0.00,1.601135,10.665193,251,273,0.003425,0.004903,10958733,9303018,0,0,32867,0,1,1 +1773579219.020639,0.80,4,3992.50,58.18,1411.52,2278.00,0.00,0.000000,0.000000,251,273,0.002755,0.004005,10958800,9303102,0,0,32870,0,1,1 +1773579224.020668,0.80,4,3992.50,58.18,1407.20,2277.98,0.00,16600.801742,17982.955133,1181697,1837720,0.002734,0.003954,10958865,9303182,0,0,32872,0,1,1 +1773579229.021464,0.70,4,3992.50,58.18,1406.47,2277.95,0.00,0.000000,0.039349,1181697,1837763,0.002733,0.003951,10958930,9303262,0,0,32875,0,1,1 +1773579234.018070,12.99,4,3992.50,58.80,1382.06,2302.32,0.00,3520827323513.348145,3520827322121.183105,11,0,14.115741,0.072741,10963791,9306877,0,0,32877,0,1,1 +1773579239.020569,10.29,4,3992.50,59.48,1355.60,2328.78,0.00,0.000000,0.000000,11,0,14.570060,0.059668,10968268,9310217,0,0,32880,0,1,1 +1773579244.017501,8.51,4,3992.50,58.20,1405.75,2278.61,0.00,0.180384,0.000000,205,0,11.583203,0.057152,10972134,9313190,0,0,32882,0,1,1 +1773579249.021118,0.65,4,3992.50,58.20,1405.71,2278.64,0.00,3515893905457.768066,0.000000,11,0,0.002503,0.003650,10972192,9313261,0,0,32885,0,1,1 +1773579254.021578,0.95,4,3992.50,58.57,1388.47,2293.29,0.00,2.012119,0.000195,246,2,0.002733,0.004276,10972257,9313343,0,0,32887,0,1,1 +1773579259.019642,0.60,4,3992.50,58.58,1387.41,2293.38,0.00,3519800077583.288086,3519800077585.121094,205,0,0.003247,0.005053,10972336,9313446,0,0,32890,0,1,1 +1773579264.022047,0.60,4,3992.50,58.39,1394.82,2285.97,0.00,3516745842630.291992,0.000000,11,0,0.002720,0.003952,10972400,9313526,0,0,32892,0,1,1 +1773579269.017435,0.65,4,3992.50,58.39,1394.59,2286.21,0.00,16617.884278,18011.862498,1181697,1839451,0.002719,0.003976,10972464,9313608,0,0,32895,0,1,1 +1773579274.020031,0.65,4,3992.50,58.39,1394.60,2286.20,0.00,3516610723749.969238,3516610722357.819336,205,0,0.003241,0.005039,10972542,9313710,0,0,32897,0,1,1 +1773579279.022015,0.60,4,3992.50,58.39,1394.62,2286.18,0.00,16595.790906,17988.207410,1181697,1839538,0.002733,0.003963,10972607,9313791,0,0,32900,0,1,1 +1773579284.017564,0.90,4,3992.50,58.68,1385.05,2297.48,0.00,3521572561022.098145,3521572559628.014648,75,0,0.002507,0.003324,10972665,9313859,0,0,32902,0,1,1 +1773579289.017573,0.65,4,3992.50,58.68,1385.19,2297.43,0.00,3518430780710.110352,0.000000,11,0,0.002734,0.003964,10972730,9313940,0,0,32905,0,1,1 +1773579294.021738,0.45,4,3992.50,58.70,1384.46,2298.16,0.00,16598.289758,17991.182914,1183186,1839952,0.003652,0.004620,10972797,9314023,0,0,32907,0,1,1 +1773579299.022280,0.80,4,3992.50,58.70,1384.47,2298.15,0.00,3518056171308.463379,3518056169914.380371,205,0,0.002733,0.003964,10972862,9314104,0,0,32910,0,1,1 +1773579304.017452,0.75,4,3992.50,58.65,1386.35,2296.28,0.00,1.833802,0.000196,246,2,0.002798,0.004009,10972931,9314188,0,0,32912,0,1,1 +1773579309.022059,11.18,4,3992.50,58.41,1395.62,2286.98,0.00,3515197796630.784668,3515197796632.741211,75,0,12.080698,0.064990,10977007,9317246,0,0,32915,0,1,1 +1773579314.020189,13.64,4,3992.50,58.83,1379.22,2303.33,0.00,3519753821372.633789,0.000000,11,0,22.137661,0.095013,10984089,9322603,0,0,32917,0,1,1 +1773579319.017461,6.08,4,3992.50,58.88,1377.35,2305.18,0.00,0.000000,0.000000,11,0,6.042196,0.028379,10985979,9323981,0,0,32920,0,1,1 +1773579324.019459,0.70,4,3992.50,58.68,1385.01,2297.52,0.00,2.011501,0.000195,246,2,0.002504,0.003319,10986037,9324049,0,0,32922,0,1,1 +1773579329.021624,0.65,4,3992.50,58.71,1384.04,2298.49,0.00,3516914210589.057617,3516914210591.069336,11,0,0.002732,0.003950,10986102,9324129,0,0,32925,0,1,1 +1773579334.022168,0.65,4,3992.50,58.30,1399.82,2282.70,0.00,16600.751141,17994.965124,1181697,1841355,0.002733,0.003954,10986167,9324209,0,0,32927,0,1,1 +1773579339.021613,0.65,4,3992.50,58.32,1399.36,2283.19,0.00,3518827413352.425781,3518827411955.893066,246,2,0.002734,0.003965,10986232,9324290,0,0,32930,0,1,1 +1773579344.022319,0.90,4,3992.50,58.54,1391.83,2292.01,0.00,3517940862606.538574,10.673494,251,273,0.002733,0.003954,10986297,9324370,0,0,32932,0,1,1 +1773579349.020875,0.75,4,3992.50,58.40,1396.05,2286.56,0.00,3519453643283.210938,3519453643274.189453,11,0,0.002742,0.004010,10986363,9324453,0,0,32935,0,1,1 +1773579354.022267,0.55,4,3992.50,58.41,1395.92,2286.71,0.00,16607.492152,18002.824472,1183186,1841753,0.002733,0.003953,10986428,9324533,0,0,32937,0,1,1 +1773579359.018485,0.60,4,3992.50,58.41,1395.93,2286.70,0.00,3521100953434.820312,3521100953433.716309,1181697,1841488,0.002736,0.003942,10986493,9324612,0,0,32940,0,1,1 +1773579364.022358,0.70,4,3992.50,58.41,1395.84,2286.79,0.00,9.554122,10.733774,1183186,1841838,0.002503,0.003331,10986551,9324681,0,0,32942,0,1,1 +1773579369.021747,0.55,4,3992.50,58.45,1394.26,2288.34,0.00,3518867651834.076660,3518867650436.095703,246,2,0.002469,0.002877,10986616,9324751,0,0,32945,0,1,1 +1773579374.021995,0.80,4,3992.50,58.59,1389.03,2293.75,0.00,3518262720641.557617,3518262720643.569824,11,0,0.001658,0.002342,10986665,9324809,0,0,32947,0,1,1 +1773579379.021538,0.90,4,3992.50,58.58,1389.04,2293.59,0.00,2.012489,0.000195,246,2,0.001396,0.002270,10986703,9324857,0,0,32950,0,1,1 +1773579384.017466,0.65,4,3992.50,58.58,1389.04,2293.60,0.00,3521305150652.274414,10.683701,251,273,0.002243,0.002991,10986753,9324915,0,0,32952,0,1,1 +1773579389.017471,0.55,4,3992.50,58.58,1389.05,2293.59,0.00,0.000000,0.000000,251,273,0.001514,0.002289,10986791,9324961,0,0,32955,0,1,1 +1773579394.017484,0.45,4,3992.50,58.54,1390.73,2291.90,0.00,16610.435296,17997.403040,1183187,1842034,0.001207,0.001670,10986817,9324996,0,0,32957,0,1,1 +1773579399.021784,3.86,4,3992.50,58.56,1389.82,2292.81,0.00,3515414053599.849609,3515414052205.004883,75,0,0.016893,0.009196,10987121,9325214,0,0,32960,0,1,1 +1773579404.020633,2.51,4,3992.50,58.73,1383.07,2299.25,0.00,3519247305828.173828,0.000000,11,0,0.016671,0.011851,10987392,9325420,0,0,32962,0,1,1 +1773579409.021386,3.73,4,3992.50,58.79,1380.52,2301.80,0.00,0.000000,0.000000,11,0,2.765119,0.065517,10992571,9330211,0,0,32965,0,1,1 +1773579414.020910,4.24,4,3992.50,59.51,1352.33,2329.95,0.00,0.053521,0.000000,75,0,3.213803,0.074706,10998580,9335780,0,0,32967,0,1,1 +1773579419.017447,2.27,4,3992.50,59.08,1369.04,2313.24,0.00,1.960147,0.000195,246,2,3.333069,0.082508,11004754,9342074,0,0,32970,0,1,1 +1773579424.017446,1.81,4,3992.50,58.45,1393.77,2288.51,0.00,16600.568196,17998.107354,1181698,1842606,0.960913,0.033099,11006638,9344265,0,0,32972,0,1,1 +1773579429.022339,3.78,4,3992.50,59.00,1372.46,2309.79,0.00,9.552176,10.699589,1183187,1842951,2.346103,0.054021,11011089,9348109,0,0,32975,0,1,1 +1773579434.017421,3.38,4,3992.50,59.71,1348.97,2337.92,0.00,3521901156747.033203,3521901155346.968750,246,2,3.374273,0.083861,11017372,9354370,0,0,32977,0,1,1 +1773579439.019885,2.27,4,3992.50,59.27,1366.25,2320.55,0.00,3516704191827.269043,10.669742,251,273,3.134980,0.079756,11023231,9360352,0,0,32980,0,1,1 +1773579444.018280,1.81,4,3992.50,59.27,1366.39,2320.39,0.00,3519566902572.190918,3519566902562.988770,205,0,1.417934,0.040675,11025946,9363138,0,0,32982,0,1,1 +1773579449.019544,2.97,4,3992.50,59.28,1365.66,2321.10,0.00,1.831568,0.000195,246,2,2.765455,0.064788,11031142,9367784,0,0,32985,0,1,1 +1773579454.020634,3.28,4,3992.50,58.99,1377.12,2309.65,0.00,16596.944152,17994.775938,1181698,1843346,3.476999,0.082819,11037609,9374001,0,0,32987,0,1,1 +1773579459.018764,1.72,4,3992.50,59.03,1375.80,2310.97,0.00,9.565100,10.745522,1183187,1843705,2.972968,0.073724,11043135,9379589,0,0,32990,0,1,1 +1773579464.020630,2.21,4,3992.50,59.07,1377.48,2312.90,0.00,3517124553556.437500,3517124552168.669922,251,273,1.055647,0.035817,11045222,9381982,0,0,32992,0,1,1 +1773579469.020658,3.78,4,3992.50,59.47,1361.82,2328.27,0.00,3518417779475.062500,3518417779465.863281,205,0,2.059466,0.048086,11049149,9385384,0,0,32995,0,1,1 +1773579474.019361,2.32,4,3992.50,58.98,1380.83,2309.25,0.00,16616.264264,18014.486173,1183187,1844078,3.488483,0.085446,11055640,9391672,0,0,32997,0,1,1 +1773579479.021412,3.37,4,3992.50,59.38,1365.05,2325.02,0.00,3516995072781.433594,3516995072780.333008,1181698,1843840,3.060138,0.077025,11061414,9397422,0,0,33000,0,1,1 +1773579484.017470,1.76,4,3992.50,58.92,1383.24,2306.85,0.00,3521213349987.171387,3521213348587.478027,246,2,1.665915,0.048061,11064537,9400961,0,0,33002,0,1,1 +1773579489.017637,0.75,4,3992.50,58.95,1382.03,2308.06,0.00,3518319699817.869629,3518319699819.881836,11,0,0.003719,0.003084,11064610,9401030,0,0,33005,0,1,1 +1773579494.017461,1.00,4,3992.50,59.13,1378.09,2315.18,0.00,16612.720751,18010.619154,1183187,1844208,0.002029,0.002154,11064655,9401079,0,0,33007,0,1,1 +1773579499.021502,0.50,4,3992.50,59.00,1383.29,2309.96,0.00,0.000000,0.119532,1183187,1844344,0.001455,0.002299,11064689,9401126,0,0,33010,0,1,1 +1773579504.022234,0.50,4,3992.50,59.01,1382.83,2310.42,0.00,3517921905363.739258,3517921903965.794922,205,0,0.001455,0.001861,11064723,9401166,0,0,33012,0,1,1 +1773579509.018590,0.55,4,3992.50,59.01,1382.84,2310.41,0.00,3521003493687.795410,0.000000,11,0,0.002087,0.002508,11064770,9401218,0,0,33015,0,1,1 +1773579514.018570,0.55,4,3992.50,59.01,1382.97,2310.28,0.00,2.012313,0.000195,246,2,0.002051,0.003675,11064810,9401268,0,0,33017,0,1,1 +1773579519.021563,0.70,4,3992.50,58.98,1384.04,2309.21,0.00,3516332198103.693359,3516332198105.524414,205,0,0.001590,0.002094,11064846,9401314,0,0,33020,0,1,1 +1773579524.017457,0.85,4,3992.50,59.38,1370.45,2324.82,0.00,3521329405604.498535,0.000000,11,0,0.002097,0.002526,11064894,9401367,0,0,33022,0,1,1 +1773579529.017559,0.50,4,3992.50,59.14,1377.88,2315.34,0.00,0.180270,0.000000,205,0,0.001252,0.001693,11064923,9401404,0,0,33025,0,1,1 +1773579534.021378,0.85,4,3992.50,59.15,1377.32,2315.92,0.00,3515751373122.331543,0.000000,11,0,0.001656,0.002448,11064962,9401453,0,0,33027,0,1,1 +1773579539.017498,0.60,4,3992.50,59.13,1378.04,2315.19,0.00,0.180413,0.000000,205,0,0.001874,0.001952,11065003,9401498,0,0,33030,0,1,1 +1773579544.019603,0.55,4,3992.50,59.10,1379.50,2313.74,0.00,16595.407956,17992.174034,1181698,1844403,0.001454,0.002270,11065037,9401543,0,0,33032,0,1,1 +1773579549.022036,1.25,4,3992.50,58.90,1387.13,2306.11,0.00,3516726278922.208008,3516726277525.659668,75,0,0.003030,0.002565,11065100,9401599,0,0,33035,0,1,1 +1773579554.021882,4.16,4,3992.50,59.28,1369.96,2320.97,0.00,3518545904506.937988,0.000000,11,0,0.019252,0.011222,11065438,9401834,0,0,33037,0,1,1 +1773579559.021456,2.77,4,3992.50,59.19,1373.65,2317.37,0.00,0.180289,0.000000,205,0,1.261735,0.035354,11067947,9403933,0,0,33040,0,1,1 +1773579564.019372,2.87,4,3992.50,59.19,1373.41,2317.58,0.00,0.000000,0.000000,205,0,1.745387,0.043162,11071264,9406947,0,0,33042,0,1,1 +1773579569.020136,3.88,4,3992.50,59.65,1355.45,2335.54,0.00,3517900121924.865234,0.000000,11,0,3.303151,0.080951,11077412,9412996,0,0,33045,0,1,1 +1773579574.017487,4.19,4,3992.50,59.71,1353.03,2337.96,0.00,0.180369,0.000000,205,0,2.993864,0.079195,11083065,9418796,0,0,33047,0,1,1 +1773579579.021659,2.41,4,3992.50,58.98,1381.74,2309.25,0.00,0.000000,0.000000,205,0,3.030167,0.079826,11088675,9424651,0,0,33050,0,1,1 +1773579584.021985,4.84,4,3992.50,59.56,1358.94,2332.06,0.00,1.475783,10.674500,251,273,2.171304,0.051270,11092853,9428256,0,0,33052,0,1,1 +1773579589.019539,2.88,4,3992.50,59.20,1372.93,2317.98,0.00,16618.612288,18009.494209,1183188,1845732,3.458584,0.085640,11099274,9434600,0,0,33055,0,1,1 +1773579594.021821,3.28,4,3992.50,59.35,1367.37,2323.54,0.00,3516832343932.106445,3516832343931.130371,1181699,1845635,3.353119,0.083492,11105534,9440896,0,0,33057,0,1,1 +1773579599.022005,1.76,4,3992.50,59.08,1377.86,2313.05,0.00,3518307551091.303711,3518307549693.111328,11,0,1.293389,0.038818,11108009,9443610,0,0,33060,0,1,1 +1773579604.021941,3.43,4,3992.50,58.84,1387.11,2303.80,0.00,16602.787413,18001.233777,1181699,1845846,1.138081,0.027950,11110231,9445439,0,0,33062,0,1,1 +1773579609.021068,3.03,4,3992.50,59.16,1374.79,2316.11,0.00,3519052257160.803223,3519052255762.129883,11,0,3.470053,0.084602,11116696,9451720,0,0,33065,0,1,1 +1773579614.017424,2.58,4,3992.50,59.81,1349.26,2341.62,0.00,16624.251255,18024.883431,1183188,1846216,3.166318,0.076991,11122583,9457597,0,0,33067,0,1,1 +1773579619.021984,1.81,4,3992.50,58.77,1393.47,2300.92,0.00,3515231729091.367676,3515231727691.020508,246,2,2.494817,0.066364,11127245,9462512,0,0,33070,0,1,1 +1773579624.017756,3.47,4,3992.50,59.10,1380.65,2313.73,0.00,3521415278235.043945,10.684036,251,273,0.631520,0.014534,11128565,9463269,0,0,33072,0,1,1 +1773579629.017488,3.03,4,3992.50,59.05,1382.45,2311.91,0.00,3518625584835.753906,3518625584826.734375,11,0,3.182818,0.078917,11134473,9469188,0,0,33075,0,1,1 +1773579634.019130,2.07,4,3992.50,58.52,1403.38,2291.00,0.00,16606.683678,18006.242545,1183188,1846708,3.172725,0.077622,11140398,9475066,0,0,33077,0,1,1 +1773579639.020803,1.20,4,3992.50,58.54,1402.42,2291.95,0.00,3517260360568.624512,3517260359168.894043,205,0,1.232480,0.035585,11142743,9477614,0,0,33080,0,1,1 +1773579644.021748,1.35,4,3992.50,58.64,1398.34,2296.02,0.00,1.831685,0.000195,246,2,0.004886,0.004278,11142839,9477701,0,0,33082,0,1,1 +1773579649.022324,0.70,4,3992.50,58.54,1402.21,2292.11,0.00,3518031980849.441406,3518031980851.453613,11,0,0.001481,0.002288,11142875,9477747,0,0,33085,0,1,1 +1773579654.021425,0.70,4,3992.50,58.54,1402.22,2292.11,0.00,1.656450,10.677114,251,273,0.001416,0.001829,11142906,9477785,0,0,33087,0,1,1 +1773579659.017573,1.75,4,3992.50,58.27,1412.93,2281.41,0.00,3521150162827.868164,3521150162818.842285,11,0,0.002102,0.002540,11142954,9477839,0,0,33090,0,1,1 +1773579664.021861,0.80,4,3992.50,58.28,1412.45,2281.89,0.00,0.180119,0.000000,205,0,0.001325,0.002072,11142987,9477881,0,0,33092,0,1,1 +1773579669.019040,0.80,4,3992.50,58.31,1411.22,2283.11,0.00,3520423558590.023926,0.000000,11,0,0.001554,0.002053,11143020,9477924,0,0,33095,0,1,1 +1773579674.017565,1.10,4,3992.50,58.32,1403.64,2283.31,0.00,0.000000,0.000000,11,0,0.002251,0.002517,11143069,9477976,0,0,33097,0,1,1 +1773579679.018749,0.70,4,3992.50,58.34,1402.73,2284.02,0.00,0.000000,0.000000,11,0,0.001089,0.001680,11143096,9478012,0,0,33100,0,1,1 +1773579684.020117,0.70,4,3992.50,58.28,1404.80,2281.95,0.00,2.011754,0.000195,246,2,0.001665,0.002445,11143136,9478061,0,0,33102,0,1,1 +1773579689.022343,0.90,4,3992.50,58.32,1403.46,2283.29,0.00,16593.174015,17994.124662,1181699,1847024,0.002048,0.001949,11143180,9478106,0,0,33105,0,1,1 +1773579694.018648,0.65,4,3992.50,58.12,1411.35,2275.41,0.00,3521039305820.968262,3521039304418.357422,246,2,0.001430,0.002260,11143212,9478150,0,0,33107,0,1,1 +1773579699.019642,0.85,4,3992.50,58.13,1410.89,2275.87,0.00,3517737837572.213867,3517737837574.045898,205,0,0.001343,0.002221,11143246,9478194,0,0,33110,0,1,1 +1773579704.017447,2.71,4,3992.50,58.40,1400.90,2286.59,0.00,1.476527,10.679884,251,273,0.007530,0.004094,11143392,9478294,0,0,33112,0,1,1 +1773579709.022308,3.41,4,3992.50,58.54,1395.38,2292.14,0.00,0.000000,0.000000,251,273,0.020114,0.012835,11143736,9478549,0,0,33115,0,1,1 +1773579714.020864,3.07,4,3992.50,58.65,1391.19,2296.33,0.00,0.356255,3519453298972.220703,246,2,1.893917,0.049439,11147318,9481967,0,0,33117,0,1,1 +1773579719.021400,2.97,4,3992.50,58.73,1388.12,2299.38,0.00,3518059999673.574707,3518059999675.586914,11,0,1.556873,0.036133,11150263,9484581,0,0,33120,0,1,1 +1773579724.021940,3.12,4,3992.50,58.65,1391.18,2296.32,0.00,0.053510,0.000000,75,0,2.714195,0.072202,11155320,9489916,0,0,33122,0,1,1 +1773579729.018567,4.89,4,3992.50,58.63,1392.02,2295.49,0.00,16613.732769,18015.030988,1181699,1847917,2.668585,0.063960,11160395,9494539,0,0,33125,0,1,1 +1773579734.017449,2.67,4,3992.50,58.95,1385.23,2308.10,0.00,3519223727522.208496,3519223726121.596191,11,0,3.106277,0.075934,11166154,9500214,0,0,33127,0,1,1 +1773579739.020781,3.32,4,3992.50,58.97,1384.60,2308.73,0.00,1.655050,10.668088,251,273,1.457581,0.038710,11168999,9502824,0,0,33130,0,1,1 +1773579744.019722,4.09,4,3992.50,59.25,1373.64,2319.69,0.00,3519182624549.215820,3519182624540.141602,75,0,3.469755,0.082545,11175473,9508992,0,0,33132,0,1,1 +1773579749.021869,2.32,4,3992.50,58.72,1394.25,2299.09,0.00,0.126703,0.000000,205,0,3.049092,0.079877,11181173,9514964,0,0,33135,0,1,1 +1773579754.017471,2.62,4,3992.50,58.75,1393.18,2300.15,0.00,16626.584436,18029.815939,1183188,1848694,2.688587,0.070749,11186198,9520198,0,0,33137,0,1,1 +1773579759.017442,2.97,4,3992.50,59.08,1380.31,2313.00,0.00,0.000000,0.078321,1183188,1848828,1.118061,0.028316,11188404,9521990,0,0,33140,0,1,1 +1773579764.018395,4.79,4,3992.50,59.55,1360.18,2331.70,0.00,3517766598031.115723,3517766598030.330078,1181699,1848855,3.312405,0.079131,11194580,9527867,0,0,33142,0,1,1 +1773579769.022053,2.42,4,3992.50,59.39,1366.46,2325.42,0.00,3515865174474.181152,3515865173083.108398,251,273,3.029066,0.074949,11200228,9533510,0,0,33145,0,1,1 +1773579774.022242,2.72,4,3992.50,59.21,1373.72,2318.15,0.00,0.000000,0.000000,251,273,2.813369,0.078278,11205542,9539160,0,0,33147,0,1,1 +1773579779.022130,2.92,4,3992.50,59.50,1362.19,2329.62,0.00,3518516029270.225098,3518516029261.206543,11,0,1.248429,0.030513,11207982,9541133,0,0,33150,0,1,1 +1773579784.021953,4.44,4,3992.50,59.09,1378.36,2313.49,0.00,0.000000,0.000000,11,0,3.368048,0.082291,11214260,9547264,0,0,33152,0,1,1 +1773579789.022052,2.41,4,3992.50,59.06,1379.63,2312.22,0.00,0.000000,0.000000,11,0,2.810538,0.069777,11219512,9552522,0,0,33155,0,1,1 +1773579794.021662,1.46,4,3992.50,59.18,1369.00,2317.06,0.00,2.012462,0.000195,246,2,0.794808,0.025282,11221073,9554295,0,0,33157,0,1,1 +1773579799.017452,0.75,4,3992.50,59.10,1371.82,2313.95,0.00,3521402309209.233887,3521402309211.248047,11,0,0.002416,0.003018,11221128,9554357,0,0,33160,0,1,1 +1773579804.022219,0.80,4,3992.50,58.90,1379.68,2306.10,0.00,2.010388,0.000195,246,2,0.001660,0.001741,11221164,9554397,0,0,33162,0,1,1 +1773579809.021557,0.65,4,3992.50,58.90,1379.75,2306.02,0.00,3518903517084.534668,3518903517086.547363,11,0,0.001079,0.002230,11221193,9554439,0,0,33165,0,1,1 +1773579814.017440,0.85,4,3992.50,58.90,1379.75,2306.03,0.00,1.657517,10.683993,251,273,0.002082,0.002426,11221238,9554487,0,0,33167,0,1,1 +1773579819.017459,0.80,4,3992.50,58.90,1379.54,2306.23,0.00,16600.854556,17993.584765,1181699,1849590,0.002188,0.002923,11221282,9554537,0,0,33170,0,1,1 +1773579824.017461,1.10,4,3992.50,59.12,1373.79,2314.59,0.00,3518436418928.478516,3518436417526.543945,205,0,0.001481,0.002279,11221318,9554582,0,0,33172,0,1,1 +1773579829.017583,0.70,4,3992.50,59.03,1374.54,2311.27,0.00,16611.552170,18014.751588,1183188,1850026,0.002002,0.002051,11221359,9554626,0,0,33175,0,1,1 +1773579834.022240,0.90,4,3992.50,59.03,1374.55,2311.27,0.00,3515162979653.012207,3515162978251.264648,11,0,0.001862,0.002316,11221400,9554674,0,0,33177,0,1,1 +1773579839.021847,1.00,4,3992.50,59.03,1374.80,2311.01,0.00,16613.445147,18016.673213,1183188,1850103,0.000924,0.002338,11221428,9554715,0,0,33180,0,1,1 +1773579844.019754,0.85,4,3992.50,58.65,1389.64,2296.16,0.00,0.000000,0.003419,1183188,1850110,0.002192,0.002618,11221473,9554766,0,0,33182,0,1,1 +1773579849.017449,0.80,4,3992.50,58.65,1389.65,2296.16,0.00,3520059927929.633789,3520059926525.865234,11,0,0.001715,0.002103,11221511,9554810,0,0,33185,0,1,1 +1773579854.017452,1.05,4,3992.50,58.95,1383.00,2308.16,0.00,0.000000,0.000000,11,0,0.001040,0.001869,11221539,9554848,0,0,33187,0,1,1 +1773579859.017464,3.76,4,3992.50,58.75,1390.94,2300.23,0.00,0.053515,0.000000,75,0,0.014795,0.009216,11221786,9555035,0,0,33190,0,1,1 +1773579864.021078,2.01,4,3992.50,58.57,1397.97,2293.19,0.00,3515896083035.085938,0.000000,11,0,0.011710,0.007378,11221991,9555183,0,0,33192,0,1,1 +1773579869.022321,4.03,4,3992.50,58.95,1383.18,2307.98,0.00,1.655741,10.672542,251,273,1.440182,0.037860,11224800,9557662,0,0,33195,0,1,1 +1773579874.020465,3.12,4,3992.50,58.98,1382.00,2309.15,0.00,0.356285,3519743802535.312012,246,2,2.675462,0.068973,11229768,9562696,0,0,33197,0,1,1 +1773579879.021498,4.34,4,3992.50,58.69,1393.46,2297.70,0.00,3517709992694.397949,3517709992696.409668,11,0,2.606109,0.063658,11234715,9567234,0,0,33200,0,1,1 +1773579884.021943,3.88,4,3992.50,59.17,1379.62,2316.48,0.00,2.012126,0.000195,246,2,3.407221,0.081255,11241073,9573307,0,0,33202,0,1,1 +1773579889.020385,2.62,4,3992.50,58.96,1387.55,2308.48,0.00,3519533875927.590332,3519533875929.549805,75,0,2.974010,0.077492,11246633,9579110,0,0,33205,0,1,1 +1773579894.021984,2.71,4,3992.50,59.28,1375.14,2320.88,0.00,16597.216400,17999.833947,1181699,1850966,1.313777,0.037973,11249181,9581684,0,0,33207,0,1,1 +1773579899.021332,2.72,4,3992.50,59.21,1377.66,2318.35,0.00,3518895888103.221191,3518895886698.013184,246,2,2.929880,0.066421,11254667,9586496,0,0,33210,0,1,1 +1773579904.021394,3.68,4,3992.50,58.86,1391.46,2304.55,0.00,16600.360115,18005.487651,1181699,1851102,3.131368,0.081432,11260544,9592561,0,0,33212,0,1,1 +1773579909.017745,2.22,4,3992.50,59.13,1381.00,2315.01,0.00,3521006849134.572266,3521006847730.414551,11,0,3.249202,0.078597,11266579,9598467,0,0,33215,0,1,1 +1773579914.021550,2.31,4,3992.50,59.01,1386.04,2310.28,0.00,1.654893,10.667076,251,273,0.939112,0.032339,11268432,9600612,0,0,33217,0,1,1 +1773579919.021402,3.07,4,3992.50,59.18,1378.72,2317.18,0.00,3518541858057.194336,3518541858048.175293,11,0,1.789891,0.043295,11271832,9603665,0,0,33220,0,1,1 +1773579924.021569,2.97,4,3992.50,59.11,1381.45,2314.47,0.00,0.180267,0.000000,205,0,3.096334,0.078293,11277643,9609430,0,0,33222,0,1,1 +1773579929.021560,2.42,4,3992.50,59.67,1359.66,2336.26,0.00,1.832034,0.000195,246,2,3.378827,0.078583,11283928,9615387,0,0,33225,0,1,1 +1773579934.021568,1.51,4,3992.50,59.42,1369.35,2326.56,0.00,3518432048748.744629,3518432048750.757324,11,0,2.008703,0.059191,11287731,9619561,0,0,33227,0,1,1 +1773579939.017708,2.62,4,3992.50,59.66,1360.21,2335.68,0.00,16615.856443,18020.322360,1181975,1852003,2.005196,0.046164,11291551,9622887,0,0,33230,0,1,1 +1773579944.017425,2.22,4,3992.50,59.66,1362.22,2335.70,0.00,3518636482924.469238,3518636481521.007812,11,0,3.515064,0.084139,11298030,9629283,0,0,33232,0,1,1 +1773579949.017501,1.00,4,3992.50,59.09,1382.29,2313.59,0.00,2.012274,0.000195,246,2,0.645144,0.023907,11299339,9630938,0,0,33235,0,1,1 +1773579954.018332,0.75,4,3992.50,59.10,1382.05,2313.84,0.00,0.000000,0.000000,246,2,0.002796,0.003204,11299400,9631005,0,0,33237,0,1,1 +1773579959.021463,0.60,4,3992.50,59.10,1382.05,2313.84,0.00,3516235075244.859375,10.668319,251,273,0.001318,0.001916,11299432,9631044,0,0,33240,0,1,1 +1773579964.020047,0.70,4,3992.50,59.10,1382.07,2313.82,0.00,3519434358252.190430,3519434358243.168945,11,0,0.001591,0.002201,11299468,9631089,0,0,33242,0,1,1 +1773579969.022292,0.65,4,3992.50,59.10,1382.09,2313.80,0.00,0.053492,0.000000,75,0,0.002732,0.004619,11299533,9631175,0,0,33245,0,1,1 +1773579974.022381,0.95,4,3992.50,59.22,1373.59,2318.56,0.00,16602.684062,18006.573803,1181975,1852371,0.002742,0.003962,11299599,9631256,0,0,33247,0,1,1 +1773579979.017462,0.75,4,3992.50,59.21,1372.98,2318.16,0.00,3521901952782.527344,3521901951377.283203,11,0,0.002724,0.003968,11299663,9631337,0,0,33250,0,1,1 +1773579984.020290,0.75,4,3992.50,58.39,1405.13,2286.04,0.00,16593.646795,17996.734462,1181975,1852391,0.002732,0.003939,11299728,9631416,0,0,33252,0,1,1 +1773579989.018579,0.60,4,3992.50,58.42,1403.76,2287.40,0.00,3519641236205.657227,3519641234801.295410,11,0,0.002506,0.003344,11299786,9631486,0,0,33255,0,1,1 +1773579994.022053,0.60,4,3992.50,58.47,1401.81,2289.35,0.00,0.053478,0.000000,75,0,0.002740,0.003960,11299852,9631567,0,0,33257,0,1,1 +1773579999.018645,0.60,4,3992.50,58.28,1409.48,2281.69,0.00,16614.303461,18019.233959,1181975,1852425,0.002494,0.003333,11299909,9631636,0,0,33260,0,1,1 +1773580004.021962,0.95,4,3992.50,58.50,1402.97,2290.22,0.00,3516104061037.117188,3516104059634.075195,75,0,0.002732,0.003952,11299974,9631716,0,0,33262,0,1,1 +1773580009.020763,0.65,4,3992.50,58.44,1403.02,2288.21,0.00,1.603021,10.677758,251,273,0.002505,0.003331,11300032,9631785,0,0,33265,0,1,1 +1773580014.021620,7.49,4,3992.50,58.86,1386.84,2304.39,0.00,3517834165566.844727,3517834165557.827637,11,0,6.188362,0.038612,11302292,9633422,0,0,33267,0,1,1 +1773580019.022067,21.50,4,3992.50,60.12,1337.24,2353.92,0.00,16611.109340,18016.526921,1183464,1853621,34.069710,0.146782,11313246,9641456,0,0,33270,0,1,1 +1773580024.021943,1.00,4,3992.50,59.78,1350.46,2340.70,0.00,3518524555125.851562,3518524553729.292969,251,273,0.002657,0.003524,11313309,9641530,0,0,33272,0,1,1 +1773580029.018383,0.70,4,3992.50,59.05,1379.32,2311.84,0.00,16622.770492,18020.300389,1183464,1853638,0.002748,0.003954,11313375,9641610,0,0,33275,0,1,1 +1773580034.020632,0.95,4,3992.50,59.34,1368.88,2323.43,0.00,0.000000,0.803057,1183464,1854109,0.002720,0.004596,11313439,9641694,0,0,33277,0,1,1 +1773580039.021544,0.65,4,3992.50,59.24,1371.84,2319.30,0.00,3517795427483.328125,3517795426077.046875,205,0,0.002729,0.003972,11313504,9641776,0,0,33280,0,1,1 +1773580044.022326,0.65,4,3992.50,59.22,1372.72,2318.43,0.00,3517886738409.121094,0.000000,11,0,0.002733,0.003954,11313569,9641856,0,0,33282,0,1,1 +1773580049.017451,0.60,4,3992.50,59.22,1372.74,2318.41,0.00,1.657769,10.685614,251,273,0.002736,0.003956,11313634,9641936,0,0,33285,0,1,1 +1773580054.017439,0.70,4,3992.50,59.22,1372.38,2318.77,0.00,16610.979350,18008.581992,1183464,1854367,0.002734,0.003942,11313699,9642015,0,0,33287,0,1,1 +1773580059.017436,0.60,4,3992.50,59.21,1372.77,2318.38,0.00,0.000000,0.006836,1183464,1854376,0.002513,0.003351,11313758,9642086,0,0,33290,0,1,1 +1773580064.017500,0.95,4,3992.50,59.08,1378.79,2313.08,0.00,0.000000,0.048046,1183464,1854396,0.002734,0.003954,11313823,9642166,0,0,33292,0,1,1 +1773580069.021489,0.65,4,3992.50,59.08,1376.31,2313.13,0.00,3515632257730.105469,3515632256324.500488,75,0,0.002731,0.003961,11313888,9642247,0,0,33295,0,1,1 +1773580074.017444,0.75,4,3992.50,59.09,1376.10,2313.35,0.00,16616.422150,18023.248723,1181975,1854209,0.005569,0.005890,11313999,9642355,0,0,33297,0,1,1 +1773580079.021832,0.70,4,3992.50,58.90,1383.52,2305.95,0.00,3515352378465.831543,3515352377061.429199,11,0,0.002731,0.003961,11314064,9642436,0,0,33300,0,1,1 +1773580084.022129,12.31,4,3992.50,58.35,1405.04,2284.43,0.00,0.000000,0.000000,11,0,12.091170,0.066506,11318272,9645611,0,0,33302,0,1,1 +1773580089.022367,15.46,4,3992.50,58.42,1402.06,2287.40,0.00,0.000000,0.000000,11,0,24.131361,0.097990,11325691,9651074,0,0,33305,0,1,1 +1773580094.020973,4.31,4,3992.50,58.97,1384.26,2308.89,0.00,0.180324,0.000000,205,0,4.031839,0.020753,11327081,9652056,0,0,33307,0,1,1 +1773580099.019953,0.70,4,3992.50,58.73,1393.79,2299.36,0.00,16615.804369,18024.073998,1183464,1855792,0.002734,0.004609,11327146,9652141,0,0,33310,0,1,1 +1773580104.020840,0.60,4,3992.50,58.75,1392.96,2300.20,0.00,3517813252509.004883,3517813251101.272461,205,0,0.002512,0.003328,11327205,9652210,0,0,33312,0,1,1 +1773580109.017451,0.75,4,3992.50,58.77,1392.00,2301.16,0.00,16614.112299,18022.120796,1181975,1855735,0.002735,0.003967,11327270,9652291,0,0,33315,0,1,1 +1773580114.021943,0.50,4,3992.50,58.77,1392.01,2301.14,0.00,3515279395707.380859,3515279394301.715820,75,0,0.002731,0.003951,11327335,9652371,0,0,33317,0,1,1 +1773580119.021945,0.65,4,3992.50,58.78,1391.81,2301.34,0.00,16612.533355,18020.850163,1183464,1856144,0.003454,0.004948,11327407,9652458,0,0,33320,0,1,1 +1773580124.022137,0.85,4,3992.50,58.66,1395.15,2296.85,0.00,3518301530083.919922,3518301528673.698242,246,2,0.002729,0.003962,11327472,9652539,0,0,33322,0,1,1 +1773580129.021916,0.65,4,3992.50,58.41,1405.22,2286.72,0.00,3518593140262.409180,3518593140264.241211,205,0,0.002734,0.003964,11327537,9652620,0,0,33325,0,1,1 +1773580134.021501,0.55,4,3992.50,58.41,1405.00,2286.95,0.00,0.000000,0.000000,205,0,0.002734,0.003955,11327602,9652700,0,0,33327,0,1,1 +1773580139.021486,0.90,4,3992.50,58.41,1405.01,2286.94,0.00,16602.900960,18010.392232,1181975,1856020,0.002505,0.003331,11327660,9652769,0,0,33330,0,1,1 +1773580144.021533,0.50,4,3992.50,58.41,1405.02,2286.92,0.00,9.561433,10.707711,1183464,1856337,0.002734,0.003954,11327725,9652849,0,0,33332,0,1,1 +1773580149.017484,0.55,4,3992.50,58.41,1405.03,2286.91,0.00,3521289025096.032227,3521289023695.463867,251,273,0.002744,0.003975,11327791,9652931,0,0,33335,0,1,1 +1773580154.021059,0.70,4,3992.50,58.51,1409.17,2290.79,0.00,3515923131872.905273,3515923131863.839355,75,0,0.002719,0.003951,11327855,9653011,0,0,33337,0,1,1 +1773580159.017465,13.52,4,3992.50,59.51,1366.29,2329.82,0.00,0.126849,0.000000,205,0,18.133738,0.088127,11333916,9657553,0,0,33340,0,1,1 +1773580164.019674,5.97,4,3992.50,58.97,1387.13,2308.95,0.00,3516883700769.569336,0.000000,75,0,8.052611,0.038432,11336542,9659471,0,0,33342,0,1,1 +1773580169.017643,10.93,4,3992.50,58.37,1410.64,2285.44,0.00,0.126809,0.000000,205,0,14.088560,0.064154,11340942,9662887,0,0,33345,0,1,1 +1773580174.021785,0.55,4,3992.50,58.40,1409.68,2286.40,0.00,1.830515,0.000195,246,2,0.003031,0.004505,11341013,9662978,0,0,33347,0,1,1 +1773580179.017447,0.55,4,3992.50,58.40,1409.70,2286.39,0.00,3521492736994.924805,3521492736996.938965,11,0,0.002933,0.004500,11341084,9663070,0,0,33350,0,1,1 +1773580184.022402,0.75,4,3992.50,58.98,1386.96,2309.27,0.00,0.000000,0.000000,11,0,0.002731,0.003950,11341149,9663150,0,0,33352,0,1,1 +1773580189.021581,0.55,4,3992.50,58.82,1393.08,2302.98,0.00,0.180303,0.000000,205,0,0.002532,0.003402,11341209,9663224,0,0,33355,0,1,1 +1773580194.021983,0.55,4,3992.50,58.81,1393.54,2302.53,0.00,0.000000,0.000000,205,0,0.003636,0.004561,11341275,9663303,0,0,33357,0,1,1 +1773580199.021833,0.65,4,3992.50,58.81,1393.65,2302.41,0.00,16603.350298,18012.384883,1181975,1857649,0.002734,0.003964,11341340,9663384,0,0,33360,0,1,1 +1773580204.019881,0.70,4,3992.50,58.82,1393.19,2302.87,0.00,3519811980156.336426,3519811978744.961426,246,2,0.002735,0.003956,11341405,9663464,0,0,33362,0,1,1 +1773580209.021695,0.70,4,3992.50,58.68,1398.63,2297.42,0.00,3517161044981.355469,3517161044983.367188,11,0,0.002795,0.004013,11341474,9663549,0,0,33365,0,1,1 +1773580214.017454,0.95,4,3992.50,59.11,1381.70,2314.36,0.00,16617.124710,18027.314897,1181975,1857786,0.002744,0.003966,11341540,9663630,0,0,33367,0,1,1 +1773580219.022228,0.65,4,3992.50,58.89,1390.28,2305.77,0.00,3515080978200.498047,3515080976801.857910,251,273,0.002718,0.003960,11341604,9663711,0,0,33370,0,1,1 +1773580224.021744,0.70,4,3992.50,58.89,1390.30,2305.76,0.00,16602.984603,18003.338835,1181975,1858076,0.002721,0.003942,11341668,9663790,0,0,33372,0,1,1 +1773580229.022271,1.55,4,3992.50,58.70,1398.02,2298.04,0.00,3518066341651.294434,3518066340240.193359,246,2,0.009432,0.007131,11341842,9663935,0,0,33375,0,1,1 +1773580234.021710,21.25,4,3992.50,59.79,1355.00,2340.96,0.00,3518832042245.553223,3518832042247.565918,11,0,28.186816,0.134606,11351110,9670982,0,0,33377,0,1,1 +1773580239.022222,7.23,4,3992.50,58.44,1408.11,2287.89,0.00,0.180255,0.000000,205,0,12.068702,0.051062,11354944,9673833,0,0,33380,0,1,1 +1773580244.017457,0.60,4,3992.50,58.45,1407.38,2288.62,0.00,1.477287,10.685377,251,273,0.002480,0.003241,11355000,9673895,0,0,33382,0,1,1 +1773580249.020575,0.90,4,3992.50,58.79,1390.29,2301.73,0.00,3516245132438.729980,3516245132429.536621,205,0,0.002744,0.003962,11355066,9673976,0,0,33385,0,1,1 +1773580254.018584,0.70,4,3992.50,58.76,1391.45,2300.56,0.00,16619.029448,18031.586712,1183464,1860016,0.002722,0.003956,11355130,9674056,0,0,33387,0,1,1 +1773580259.021745,0.60,4,3992.50,58.59,1398.15,2293.87,0.00,3516214479172.971680,3516214477762.049316,11,0,0.002732,0.003962,11355195,9674137,0,0,33390,0,1,1 +1773580264.017630,0.65,4,3992.50,58.58,1398.45,2293.56,0.00,1.657516,10.683988,251,273,0.002515,0.003331,11355254,9674206,0,0,33392,0,1,1 +1773580269.018227,0.70,4,3992.50,58.61,1397.25,2294.76,0.00,16608.953022,18011.653979,1183464,1860090,0.002733,0.003964,11355319,9674287,0,0,33395,0,1,1 +1773580274.021676,1.00,4,3992.50,58.75,1391.66,2300.35,0.00,3516012057411.105469,3516012056000.010742,205,0,0.002732,0.003952,11355384,9674367,0,0,33397,0,1,1 +1773580279.022226,0.60,4,3992.50,58.73,1392.64,2299.37,0.00,16601.026144,18011.956230,1181975,1859936,0.002733,0.003964,11355449,9674448,0,0,33400,0,1,1 +1773580284.022027,0.65,4,3992.50,58.73,1392.62,2299.40,0.00,3518576799557.215820,3518576798155.273926,251,273,0.002746,0.003954,11355515,9674528,0,0,33402,0,1,1 +1773580289.021011,0.70,4,3992.50,58.74,1392.41,2299.61,0.00,3519152527308.515625,3519152527299.495117,11,0,0.002734,0.003952,11355580,9674608,0,0,33405,0,1,1 +1773580294.021482,0.65,4,3992.50,58.73,1392.43,2299.59,0.00,0.000000,0.000000,11,0,0.002741,0.004606,11355646,9674693,0,0,33407,0,1,1 +1773580299.020825,6.88,4,3992.50,58.36,1407.11,2284.91,0.00,0.180297,0.000000,205,0,8.052639,0.037256,11358266,9676566,0,0,33410,0,1,1 +1773580304.019585,21.53,4,3992.50,59.25,1375.25,2319.61,0.00,3519310063941.906250,0.000000,11,0,32.202198,0.140661,11368548,9684165,0,0,33412,0,1,1 +1773580309.021771,1.75,4,3992.50,58.71,1393.15,2298.74,0.00,16605.334653,18018.093333,1183465,1861783,0.016397,0.010491,11368884,9684433,0,0,33415,0,1,1 +1773580314.020493,0.55,4,3992.50,58.71,1393.16,2298.73,0.00,3519337235319.362793,3519337233914.645996,251,273,0.002734,0.003955,11368949,9684513,0,0,33417,0,1,1 +1773580319.021694,0.65,4,3992.50,58.71,1393.18,2298.71,0.00,3517592051813.141602,3517592051804.125000,11,0,0.002733,0.003963,11369014,9684594,0,0,33420,0,1,1 +1773580324.021709,0.60,4,3992.50,58.71,1393.32,2298.57,0.00,16602.983651,18015.423566,1181976,1861701,0.002742,0.003962,11369080,9684675,0,0,33422,0,1,1 +1773580329.022355,0.65,4,3992.50,58.71,1393.33,2298.56,0.00,3517983006603.737305,3517983005200.493164,251,273,0.002733,0.003964,11369145,9684756,0,0,33425,0,1,1 +1773580334.021667,0.95,4,3992.50,58.25,1411.16,2280.52,0.00,3518921287177.114746,3518921287168.041504,75,0,0.002734,0.003955,11369210,9684836,0,0,33427,0,1,1 +1773580339.017556,0.70,4,3992.50,58.27,1410.20,2281.50,0.00,1.960401,0.000195,246,2,0.002736,0.003967,11369275,9684917,0,0,33430,0,1,1 +1773580344.021750,0.60,4,3992.50,58.27,1410.21,2281.48,0.00,3515487902258.246582,3515487902260.257324,11,0,0.002503,0.003318,11369333,9684985,0,0,33432,0,1,1 +1773580349.017463,0.65,4,3992.50,58.28,1409.75,2281.93,0.00,1.657574,10.684358,251,273,0.002736,0.003942,11369398,9685064,0,0,33435,0,1,1 +1773580354.017498,0.60,4,3992.50,58.24,1411.40,2280.30,0.00,3518412651768.599609,3518412651759.580566,11,0,0.002513,0.003329,11369457,9685133,0,0,33437,0,1,1 +1773580359.021726,0.60,4,3992.50,58.28,1409.98,2281.71,0.00,1.654753,10.666175,251,273,0.002731,0.004283,11369522,9685216,0,0,33440,0,1,1 +1773580364.019611,0.70,4,3992.50,58.38,1408.19,2285.58,0.00,3519926257365.901855,3519926257356.879395,11,0,0.002735,0.004278,11369587,9685298,0,0,33442,0,1,1 +1773580369.022538,10.73,4,3992.50,59.31,1371.54,2322.22,0.00,16602.875368,18016.124601,1183465,1862537,12.097629,0.062738,11373687,9688389,0,0,33445,0,1,1 +1773580374.021467,17.54,4,3992.50,58.92,1387.02,2306.68,0.00,3519191238819.825684,3519191237405.392090,75,0,28.164419,0.127746,11382910,9695346,0,0,33447,0,1,1 +1773580379.021123,0.65,4,3992.50,58.82,1390.93,2302.78,0.00,0.126767,0.000000,205,0,0.002734,0.003965,11382975,9695427,0,0,33450,0,1,1 +1773580384.017503,0.55,4,3992.50,58.61,1399.02,2294.68,0.00,3520986048570.988281,0.000000,11,0,0.002744,0.003965,11383041,9695508,0,0,33452,0,1,1 +1773580389.017465,0.50,4,3992.50,58.63,1398.07,2295.64,0.00,16603.160315,18016.834115,1181976,1863270,0.002734,0.003964,11383106,9695589,0,0,33455,0,1,1 +1773580394.017453,0.95,4,3992.50,59.03,1382.63,2311.07,0.00,3518445975025.062012,3518445973611.341309,75,0,0.002734,0.003942,11383171,9695668,0,0,33457,0,1,1 +1773580399.020120,0.65,4,3992.50,59.03,1382.65,2311.00,0.00,1.957745,0.000195,246,2,0.002328,0.003196,11383226,9695736,0,0,33460,0,1,1 +1773580404.021355,0.60,4,3992.50,59.03,1382.68,2310.98,0.00,3517568365273.936523,3517568365275.895020,75,0,0.002733,0.003953,11383291,9695816,0,0,33462,0,1,1 +1773580409.021773,0.65,4,3992.50,59.03,1382.68,2310.98,0.00,1.602503,10.674303,251,273,0.002733,0.003951,11383356,9695896,0,0,33465,0,1,1 +1773580414.017566,0.60,4,3992.50,59.03,1382.69,2310.96,0.00,3521400149477.035156,3521400149468.008789,11,0,0.002744,0.003966,11383422,9695977,0,0,33467,0,1,1 +1773580419.017459,0.70,4,3992.50,59.01,1383.17,2310.49,0.00,16612.950560,18028.288091,1183465,1863770,0.003429,0.004948,11383492,9696064,0,0,33470,0,1,1 +1773580424.017485,0.95,4,3992.50,59.24,1374.23,2319.43,0.00,0.000000,0.075293,1183465,1863820,0.002734,0.004276,11383557,9696146,0,0,33472,0,1,1 +1773580429.021889,0.65,4,3992.50,58.97,1384.95,2308.71,0.00,3515341061957.951660,3515341060543.761719,75,0,0.002731,0.004270,11383622,9696228,0,0,33475,0,1,1 +1773580434.018237,0.65,4,3992.50,58.97,1384.96,2308.69,0.00,0.126850,0.000000,205,0,0.002507,0.003336,11383680,9696297,0,0,33477,0,1,1 +1773580439.022310,14.40,4,3992.50,59.49,1364.35,2329.31,0.00,3515573856241.539551,0.000000,11,0,16.241043,0.083668,11389252,9700433,0,0,33480,0,1,1 +1773580444.018571,10.76,4,3992.50,58.67,1396.42,2297.20,0.00,0.053556,0.000000,75,0,17.983262,0.076624,11395016,9704722,0,0,33482,0,1,1 +1773580449.022069,5.37,4,3992.50,58.45,1405.34,2288.27,0.00,1.957420,0.000195,246,2,6.034603,0.027439,11396946,9706075,0,0,33485,0,1,1 +1773580454.021020,1.00,4,3992.50,58.69,1395.95,2297.85,0.00,3519175281993.904785,3519175281995.917969,11,0,0.002734,0.003955,11397011,9706155,0,0,33487,0,1,1 +1773580459.021854,0.60,4,3992.50,58.64,1397.75,2295.90,0.00,0.180243,0.000000,205,0,0.002733,0.003976,11397076,9706237,0,0,33490,0,1,1 +1773580464.021623,0.75,4,3992.50,58.65,1397.53,2296.13,0.00,3518599938500.415039,0.000000,11,0,0.004155,0.005698,11397156,9706341,0,0,33492,0,1,1 +1773580469.019698,0.60,4,3992.50,58.65,1397.54,2296.12,0.00,0.180343,0.000000,205,0,0.002743,0.003974,11397222,9706423,0,0,33495,0,1,1 +1773580474.019367,0.60,4,3992.50,58.66,1396.82,2296.85,0.00,3518669830256.699219,0.000000,11,0,0.003033,0.004497,11397293,9706513,0,0,33497,0,1,1 +1773580479.021602,0.60,4,3992.50,58.66,1396.83,2296.84,0.00,0.053492,0.000000,75,0,0.002700,0.003874,11397357,9706594,0,0,33500,0,1,1 +1773580484.022368,0.95,4,3992.50,58.76,1404.70,2300.50,0.00,0.126738,0.000000,205,0,0.002733,0.003954,11397422,9706674,0,0,33502,0,1,1 +1773580489.022338,0.60,4,3992.50,58.69,1407.11,2297.86,0.00,0.000000,0.000000,205,0,0.002734,0.004274,11397487,9706756,0,0,33505,0,1,1 +1773580494.017542,0.60,4,3992.50,58.66,1408.25,2296.72,0.00,0.000000,0.000000,205,0,0.003659,0.004938,11397554,9706840,0,0,33507,0,1,1 +1773580499.017562,0.70,4,3992.50,58.69,1407.30,2297.67,0.00,16602.784547,18019.162785,1181976,1865695,0.002742,0.003972,11397620,9706922,0,0,33510,0,1,1 +1773580504.021743,0.85,4,3992.50,58.58,1411.61,2293.35,0.00,3515497918924.044922,3515497917507.013672,246,2,0.002719,0.003951,11397684,9707002,0,0,33512,0,1,1 +1773580509.018568,0.85,4,3992.50,58.59,1410.90,2294.07,0.00,16611.570505,18030.809514,1181976,1865819,0.002785,0.004017,11397752,9707087,0,0,33515,0,1,1 +1773580514.018788,20.01,4,3992.50,59.64,1369.83,2335.10,0.00,3518282102183.162598,3518282100766.899414,11,0,26.170539,0.123167,11406530,9713638,0,0,33517,0,1,1 +1773580519.017819,8.50,4,3992.50,59.21,1386.65,2318.25,0.00,16615.817870,18034.480747,1183465,1867306,12.070304,0.051120,11410219,9716409,0,0,33520,0,1,1 +1773580524.022299,3.05,4,3992.50,58.82,1401.86,2303.04,0.00,3515287654128.576660,3515287652709.448242,246,2,2.018192,0.013731,11410991,9716975,0,0,33522,0,1,1 +1773580529.018037,0.85,4,3992.50,58.70,1406.65,2298.24,0.00,3521438480189.192383,3521438480191.152344,75,0,0.002744,0.003976,11411057,9717057,0,0,33525,0,1,1 +1773580534.021928,0.85,4,3992.50,58.70,1406.64,2298.25,0.00,0.126659,0.000000,205,0,0.002731,0.003951,11411122,9717137,0,0,33527,0,1,1 +1773580539.021606,0.80,4,3992.50,58.70,1406.66,2298.23,0.00,16603.923110,18021.663892,1181976,1867283,0.002734,0.003964,11411187,9717218,0,0,33530,0,1,1 +1773580544.017581,1.15,4,3992.50,58.93,1395.16,2307.20,0.00,3521271489759.735840,3521271488341.070801,75,0,0.002736,0.003945,11411252,9717297,0,0,33532,0,1,1 +1773580549.017566,0.95,4,3992.50,59.00,1392.18,2310.07,0.00,0.126758,0.000000,205,0,0.002721,0.003964,11411316,9717378,0,0,33535,0,1,1 +1773580554.021487,0.85,4,3992.50,58.59,1408.49,2293.77,0.00,3515679755780.168945,0.000000,11,0,0.002739,0.003947,11411382,9717458,0,0,33537,0,1,1 +1773580559.021479,0.75,4,3992.50,58.45,1413.79,2288.49,0.00,0.180274,0.000000,205,0,0.002505,0.003975,11411440,9717531,0,0,33540,0,1,1 +1773580564.017439,0.80,4,3992.50,58.46,1413.55,2288.73,0.00,3521282312029.285645,0.000000,11,0,0.002736,0.003958,11411505,9717611,0,0,33542,0,1,1 +1773580569.021862,0.80,4,3992.50,58.46,1413.57,2288.72,0.00,0.180114,0.000000,205,0,0.002212,0.002501,11411565,9717680,0,0,33545,0,1,1 +1773580574.022226,1.00,4,3992.50,58.53,1412.06,2291.52,0.00,3518180758133.017090,0.000000,11,0,0.001339,0.001758,11411610,9717731,0,0,33547,0,1,1 +1773580579.021856,0.80,4,3992.50,58.53,1410.58,2291.70,0.00,2.012454,0.000195,246,2,0.001775,0.002118,11411667,9717790,0,0,33550,0,1,1 +1773580584.021552,1.40,4,3992.50,58.34,1418.03,2284.23,0.00,16611.591998,18032.982084,1183465,1868005,0.002215,0.001791,11411729,9717843,0,0,33552,0,1,1 +1773580589.021563,3.91,4,3992.50,58.36,1417.29,2284.98,0.00,0.000000,0.199023,1183465,1868213,0.008962,0.005125,11411905,9718018,0,0,33555,0,1,1 +1773580594.021997,1.10,4,3992.50,58.36,1417.45,2284.82,0.00,3518131788175.456543,3518131786756.089355,11,0,0.009034,0.006689,11412089,9718202,0,0,33557,0,1,1 +1773580599.020388,2.06,4,3992.50,58.37,1416.85,2285.39,0.00,0.000000,0.000000,11,0,0.011923,0.008647,11412285,9718391,0,0,33560,0,1,1 +1773580604.017550,3.17,4,3992.50,59.12,1387.59,2314.63,0.00,0.000000,0.000000,11,0,0.030540,0.004195,11412444,9718479,0,0,33562,0,1,1 +1773580609.017468,2.82,4,3992.50,58.98,1392.94,2309.29,0.00,1.656179,10.675369,251,273,1.800178,0.055693,11415970,9721650,0,0,33565,0,1,1 +1773580614.021698,2.46,4,3992.50,58.92,1395.43,2306.80,0.00,3515463119348.556152,3515463119339.544922,11,0,2.279502,0.073090,11420423,9725863,0,0,33567,0,1,1 +1773580619.021825,2.97,4,3992.50,58.92,1395.21,2307.02,0.00,0.000000,0.000000,11,0,2.075180,0.067938,11424478,9729749,0,0,33570,0,1,1 +1773580624.022116,1.76,4,3992.50,58.66,1405.61,2296.64,0.00,2.012188,0.000195,246,2,2.042324,0.064906,11428468,9733479,0,0,33572,0,1,1 +1773580629.022048,1.66,4,3992.50,58.63,1406.63,2295.61,0.00,0.000000,0.000000,246,2,0.111372,0.011373,11428785,9734032,0,0,33575,0,1,1 +1773580634.021282,2.31,4,3992.50,58.96,1392.14,2308.49,0.00,3518976102066.457520,3518976102068.290039,205,0,0.006327,0.004319,11428910,9734135,0,0,33577,0,1,1 +1773580639.018608,2.57,4,3992.50,59.26,1380.46,2320.16,0.00,1.476669,10.680908,251,273,1.673822,0.050247,11432198,9736981,0,0,33580,0,1,1 +1773580644.018580,3.27,4,3992.50,58.89,1395.08,2305.50,0.00,16611.031912,18022.277234,1183465,1869015,2.132642,0.069853,11436347,9741023,0,0,33582,0,1,1 +1773580649.017837,2.77,4,3992.50,58.77,1399.54,2301.04,0.00,3518960718615.607422,3518960717193.126953,246,2,1.961195,0.062631,11440216,9744611,0,0,33585,0,1,1 +1773580654.018650,2.97,4,3992.50,59.01,1390.35,2310.25,0.00,16598.322361,18019.383015,1181976,1868931,2.438345,0.083122,11445005,9749371,0,0,33587,0,1,1 +1773580659.021460,2.77,4,3992.50,59.31,1378.63,2321.95,0.00,3516461152100.354004,3516461150681.871582,11,0,1.673240,0.054620,11448358,9752507,0,0,33590,0,1,1 +1773580664.019342,3.07,4,3992.50,59.51,1370.65,2330.01,0.00,0.053538,0.000000,75,0,2.128439,0.069409,11452576,9756548,0,0,33592,0,1,1 +1773580669.021540,1.66,4,3992.50,59.50,1371.01,2329.49,0.00,3516891005642.380859,0.000000,11,0,0.459259,0.021555,11453585,9757727,0,0,33595,0,1,1 +1773580674.020294,3.02,4,3992.50,59.10,1386.73,2313.77,0.00,1.656565,10.677857,251,273,0.439164,0.014501,11454636,9758330,0,0,33597,0,1,1 +1773580679.017446,2.37,4,3992.50,59.30,1378.81,2321.69,0.00,3520442429654.735840,3520442429645.531250,205,0,2.235977,0.067219,11458983,9762220,0,0,33600,0,1,1 +1773580684.017448,2.67,4,3992.50,59.11,1386.09,2314.41,0.00,1.832030,0.000195,246,2,2.016687,0.066063,11462985,9766073,0,0,33602,0,1,1 +1773580689.021424,2.37,4,3992.50,59.30,1378.79,2321.69,0.00,16587.831955,18008.434165,1181976,1869480,2.258405,0.072389,11467396,9770266,0,0,33605,0,1,1 +1773580694.021809,2.67,4,3992.50,59.47,1382.00,2328.22,0.00,0.000000,0.167077,1181976,1869604,1.823420,0.060043,11471017,9773771,0,0,33607,0,1,1 +1773580699.021951,1.00,4,3992.50,59.22,1391.59,2318.63,0.00,9.561250,10.799887,1183465,1870031,1.594184,0.061876,11474080,9777262,0,0,33610,0,1,1 +1773580704.018448,1.15,4,3992.50,59.23,1391.38,2318.86,0.00,3520904245513.698242,3520904244100.601562,251,273,0.006543,0.004651,11474210,9777415,0,0,33612,0,1,1 +1773580709.021128,2.11,4,3992.50,59.61,1376.38,2333.84,0.00,3516552101346.231445,3516552101337.217285,11,0,0.066910,0.004723,11474440,9777541,0,0,33615,0,1,1 +1773580714.018600,2.12,4,3992.50,59.81,1368.64,2341.58,0.00,16621.000674,18042.989843,1183465,1870255,2.011798,0.062486,11478402,9781132,0,0,33617,0,1,1 +1773580719.017425,1.81,4,3992.50,59.64,1375.14,2335.06,0.00,3519264437608.017090,3519264436186.232422,205,0,1.945379,0.063311,11482218,9784779,0,0,33620,0,1,1 +1773580724.021534,3.22,4,3992.50,59.44,1370.04,2327.10,0.00,3515547405712.910645,0.000000,11,0,2.250455,0.077780,11486671,9789050,0,0,33622,0,1,1 +1773580729.017433,1.77,4,3992.50,59.14,1381.60,2315.54,0.00,0.000000,0.000000,11,0,1.920618,0.062084,11490468,9792628,0,0,33625,0,1,1 +1773580734.022009,1.00,4,3992.50,59.00,1387.05,2310.11,0.00,1.654638,10.665435,251,273,2.049212,0.067538,11494504,9796562,0,0,33627,0,1,1 +1773580739.018583,0.95,4,3992.50,58.72,1398.12,2299.03,0.00,3520849787402.136230,3520849787393.111328,11,0,0.152500,0.010550,11494887,9797128,0,0,33630,0,1,1 +1773580744.017457,0.85,4,3992.50,58.68,1399.80,2297.35,0.00,16606.774172,18027.618059,1181976,1870361,0.002990,0.002230,11494950,9797192,0,0,33632,0,1,1 +1773580749.022322,0.85,4,3992.50,58.72,1398.12,2299.02,0.00,9.552228,10.670670,1183465,1870649,0.002134,0.002428,11495001,9797254,0,0,33635,0,1,1 +1773580754.020672,1.15,4,3992.50,58.92,1386.88,2306.66,0.00,3519598660534.156250,3519598659121.065430,251,273,0.001758,0.002462,11495044,9797304,0,0,33637,0,1,1 +1773580759.019230,0.70,4,3992.50,58.91,1387.05,2306.30,0.00,0.000000,0.000000,251,273,0.001016,0.001728,11495078,9797343,0,0,33640,0,1,1 +1773580764.022196,0.85,4,3992.50,58.71,1394.59,2298.77,0.00,0.355941,3516351360584.156250,246,2,0.002191,0.002718,11495137,9797409,0,0,33642,0,1,1 +1773580769.017487,0.70,4,3992.50,58.72,1394.25,2299.11,0.00,16616.671726,18040.813274,1181976,1870608,0.000898,0.001498,11495164,9797443,0,0,33645,0,1,1 +1773580774.021535,0.85,4,3992.50,58.73,1394.04,2299.32,0.00,3515590541978.452148,3515590540558.812988,11,0,0.001835,0.001903,11495213,9797495,0,0,33647,0,1,1 +1773580779.022099,0.60,4,3992.50,58.16,1416.38,2277.00,0.00,2.012078,0.000195,246,2,0.001561,0.002762,11495263,9797553,0,0,33650,0,1,1 +1773580784.022235,1.10,4,3992.50,58.40,1407.50,2286.30,0.00,3518341385447.874512,10.674709,251,273,0.001809,0.001693,11495308,9797600,0,0,33652,0,1,1 +1773580789.022011,0.80,4,3992.50,58.40,1406.83,2286.47,0.00,16611.682436,18024.750389,1183465,1870991,0.000738,0.001335,11495334,9797635,0,0,33655,0,1,1 +1773580794.020769,0.80,4,3992.50,58.40,1406.84,2286.46,0.00,0.000000,0.001758,1183465,1870995,0.001973,0.002009,11495382,9797683,0,0,33657,0,1,1 +1773580799.021588,0.65,4,3992.50,58.40,1406.83,2286.49,0.00,3517861105930.764648,3517861104506.959961,246,2,0.001638,0.002140,11495415,9797720,0,0,33660,0,1,1 +1773580804.017446,0.75,4,3992.50,58.41,1406.59,2286.73,0.00,3521354226887.168945,3521354226889.128906,75,0,0.001944,0.001597,11495463,9797771,0,0,33662,0,1,1 +1773580809.022305,3.51,4,3992.50,58.18,1415.37,2277.94,0.00,16586.861583,18006.831048,1181976,1870974,0.006044,0.003623,11495596,9797885,0,0,33665,0,1,1 +1773580814.020556,1.71,4,3992.50,58.47,1402.12,2289.31,0.00,3519668158206.082031,3519668156784.288574,11,0,0.009285,0.006807,11495790,9798071,0,0,33667,0,1,1 +1773580819.022107,2.51,4,3992.50,58.50,1401.25,2290.26,0.00,0.000000,0.000000,11,0,0.011437,0.007671,11495989,9798256,0,0,33670,0,1,1 +1773580824.018950,2.01,4,3992.50,58.63,1395.95,2295.56,0.00,0.000000,0.000000,11,0,0.008569,0.007006,11496146,9798401,0,0,33672,0,1,1 +1773580829.021694,2.71,4,3992.50,59.26,1371.18,2320.34,0.00,0.053486,0.000000,75,0,1.941122,0.055877,11499907,9801529,0,0,33675,0,1,1 +1773580834.021247,2.36,4,3992.50,58.95,1383.57,2307.94,0.00,3518751837374.935059,0.000000,11,0,1.933306,0.063674,11503722,9805162,0,0,33677,0,1,1 +1773580839.021773,2.57,4,3992.50,59.13,1376.42,2315.07,0.00,0.000000,0.000000,11,0,2.074039,0.063747,11507772,9808836,0,0,33680,0,1,1 +1773580844.017550,2.56,4,3992.50,59.41,1366.79,2326.01,0.00,16617.071272,18040.130978,1181976,1871597,0.399687,0.024782,11508684,9810174,0,0,33682,0,1,1 +1773580849.017439,3.07,4,3992.50,59.18,1375.39,2317.09,0.00,0.000000,0.077150,1181976,1871713,1.764969,0.053268,11512147,9813200,0,0,33685,0,1,1 +1773580854.022352,3.22,4,3992.50,58.88,1387.09,2305.36,0.00,3514983629474.812500,3514983628054.093750,205,0,2.113637,0.069406,11516287,9817127,0,0,33687,0,1,1 +1773580859.021142,2.57,4,3992.50,59.23,1373.32,2319.12,0.00,16616.436960,18040.048569,1183465,1872067,2.069378,0.064171,11520350,9820794,0,0,33690,0,1,1 +1773580864.019030,2.27,4,3992.50,59.25,1372.86,2319.61,0.00,3519924035345.940430,3519924035344.838379,1181976,1871825,1.875806,0.062347,11524065,9824413,0,0,33692,0,1,1 +1773580869.019138,2.56,4,3992.50,59.06,1380.12,2312.34,0.00,9.561317,10.693226,1183465,1872133,1.910690,0.060444,11527840,9827992,0,0,33695,0,1,1 +1773580874.017445,1.76,4,3992.50,59.00,1379.00,2309.79,0.00,3519628290798.262695,3519628289374.664062,11,0,0.682864,0.029125,11529247,9829663,0,0,33697,0,1,1 +1773580879.017581,1.66,4,3992.50,59.22,1370.34,2318.46,0.00,16602.585077,18024.926656,1181976,1872207,0.005650,0.004305,11529370,9829772,0,0,33700,0,1,1 +1773580884.021111,2.47,4,3992.50,59.27,1368.38,2320.39,0.00,3515954746103.141113,3515954744681.584961,205,0,1.767787,0.051725,11532853,9832647,0,0,33702,0,1,1 +1773580889.020804,2.62,4,3992.50,59.39,1363.66,2325.10,0.00,16613.435987,18037.232996,1183465,1872566,1.874431,0.059169,11536534,9836023,0,0,33705,0,1,1 +1773580894.020934,3.02,4,3992.50,59.42,1362.36,2326.38,0.00,3518345724431.479980,3518345723005.975586,246,2,2.142379,0.068428,11540766,9839929,0,0,33707,0,1,1 +1773580899.020411,3.07,4,3992.50,59.01,1378.19,2310.56,0.00,16602.759690,18027.480568,1181976,1872501,2.480308,0.084569,11545628,9844722,0,0,33710,0,1,1 +1773580904.021622,2.92,4,3992.50,59.38,1366.67,2324.93,0.00,3517585136778.258301,3517585135355.989746,75,0,1.880107,0.057614,11549358,9847989,0,0,33712,0,1,1 +1773580909.021883,2.16,4,3992.50,59.29,1370.39,2321.27,0.00,16611.674962,18035.501582,1183465,1872912,1.836563,0.060153,11552957,9851479,0,0,33715,0,1,1 +1773580914.020244,1.26,4,3992.50,58.93,1384.27,2307.40,0.00,3519590759965.658203,3519590758539.331055,246,2,0.591320,0.031964,11554208,9853232,0,0,33717,0,1,1 +1773580919.020464,1.50,4,3992.50,58.96,1383.18,2308.47,0.00,16600.291802,18025.083509,1181976,1872807,0.005172,0.003387,11554309,9853318,0,0,33720,0,1,1 +1773580924.021703,2.11,4,3992.50,59.46,1363.50,2328.13,0.00,9.559155,10.733864,1183465,1873174,0.834565,0.018310,11555994,9854285,0,0,33722,0,1,1 +1773580929.020981,1.86,4,3992.50,59.23,1372.70,2318.95,0.00,3518945502252.922363,3518945502251.859375,1181976,1872962,2.057740,0.064689,11559976,9858040,0,0,33725,0,1,1 +1773580934.019438,2.62,4,3992.50,59.58,1359.70,2332.52,0.00,3519522934133.543945,3519522932710.150879,11,0,1.935929,0.066685,11563773,9861830,0,0,33727,0,1,1 +1773580939.017459,2.57,4,3992.50,59.84,1348.72,2342.91,0.00,2.013101,0.000195,246,2,1.425408,0.054606,11566631,9864946,0,0,33730,0,1,1 +1773580944.023535,1.61,4,3992.50,59.78,1351.02,2340.59,0.00,0.000000,0.000000,246,2,1.959837,0.062309,11570482,9868498,0,0,33732,0,1,1 +1773580949.022557,2.37,4,3992.50,59.88,1347.29,2344.34,0.00,3519125033834.075195,3519125033836.088379,11,0,1.745373,0.055737,11573978,9871696,0,0,33735,0,1,1 +1773580954.020384,1.10,4,3992.50,59.39,1366.30,2325.33,0.00,0.053539,0.000000,75,0,2.097920,0.068510,11578128,9875705,0,0,33737,0,1,1 +1773580959.017463,0.65,4,3992.50,59.30,1369.97,2321.67,0.00,1.603573,10.681434,251,273,0.397797,0.019154,11578986,9876808,0,0,33740,0,1,1 +1773580964.021825,1.05,4,3992.50,59.22,1381.11,2318.76,0.00,3515370134214.473145,3515370134205.462402,11,0,0.003685,0.003009,11579072,9876891,0,0,33742,0,1,1 +1773580969.017500,0.65,4,3992.50,59.25,1380.18,2319.57,0.00,0.000000,0.000000,11,0,0.002762,0.002364,11579134,9876957,0,0,33745,0,1,1 +1773580974.021152,0.70,4,3992.50,59.24,1380.18,2319.56,0.00,0.053477,0.000000,75,0,0.003308,0.002847,11579205,9877019,0,0,33747,0,1,1 +1773580979.022139,0.55,4,3992.50,59.18,1382.81,2316.94,0.00,16599.701570,18023.078282,1181976,1873639,0.002400,0.002906,11579266,9877091,0,0,33750,0,1,1 +1773580984.020903,0.70,4,3992.50,59.18,1382.82,2316.93,0.00,3519307640939.452148,3519307639515.441895,75,0,0.001373,0.001686,11579302,9877130,0,0,33752,0,1,1 +1773580989.017584,0.60,4,3992.50,59.18,1382.82,2316.93,0.00,0.126842,0.000000,205,0,0.001111,0.001220,11579332,9877164,0,0,33755,0,1,1 +1773580994.020821,0.90,4,3992.50,58.91,1388.60,2306.37,0.00,1.830846,0.000195,246,2,0.001608,0.001941,11579377,9877210,0,0,33757,0,1,1 +1773580999.017460,0.50,4,3992.50,58.90,1388.31,2306.25,0.00,16621.757256,18049.643777,1183465,1874093,0.000984,0.001352,11579404,9877242,0,0,33760,0,1,1 +1773581004.018598,0.60,4,3992.50,58.92,1387.62,2306.95,0.00,3517635964849.472168,3517635963424.701660,205,0,0.001517,0.001575,11579444,9877284,0,0,33762,0,1,1 +1773581009.019451,0.50,4,3992.50,58.92,1387.62,2306.94,0.00,3517837590651.477051,0.000000,75,0,0.001157,0.001571,11579476,9877321,0,0,33765,0,1,1 +1773581014.020226,0.60,4,3992.50,58.73,1395.03,2299.54,0.00,3517891383409.770508,0.000000,11,0,0.001553,0.002563,11579517,9877370,0,0,33767,0,1,1 +1773581019.018754,0.55,4,3992.50,58.73,1395.03,2299.54,0.00,0.053531,0.000000,75,0,0.001045,0.001364,11579549,9877403,0,0,33770,0,1,1 +1773581024.022171,0.85,4,3992.50,58.88,1389.18,2305.14,0.00,0.000000,0.000000,75,0,0.002243,0.002439,11579596,9877451,0,0,33772,0,1,1 +1773581029.021568,1.90,4,3992.50,58.45,1406.07,2288.29,0.00,0.000000,0.000000,75,0,0.003359,0.001958,11579676,9877512,0,0,33775,0,1,1 +1773581034.022081,3.41,4,3992.50,58.47,1405.27,2289.08,0.00,1.958588,0.000195,246,2,0.009340,0.006449,11579870,9877699,0,0,33777,0,1,1 +1773581039.021507,1.50,4,3992.50,58.46,1405.45,2288.90,0.00,3518841517439.282715,10.676227,251,273,0.009080,0.006459,11580061,9877886,0,0,33780,0,1,1 +1773581044.021934,1.91,4,3992.50,58.55,1401.88,2292.45,0.00,16599.959811,18015.182431,1181976,1874436,0.011690,0.008216,11580257,9878078,0,0,33782,0,1,1 +1773581049.021613,3.07,4,3992.50,58.65,1398.15,2296.20,0.00,3518663363516.380371,3518663362091.926270,11,0,0.200184,0.006424,11580744,9878324,0,0,33785,0,1,1 +1773581054.021479,3.02,4,3992.50,59.30,1363.95,2321.70,0.00,16603.477736,18027.996821,1181976,1874533,2.045524,0.065908,11584714,9882075,0,0,33787,0,1,1 +1773581059.019835,2.42,4,3992.50,59.30,1363.95,2321.66,0.00,3519594403947.932617,3519594402522.802734,205,0,1.830137,0.056467,11588325,9885349,0,0,33790,0,1,1 +1773581064.022079,2.57,4,3992.50,59.41,1359.40,2326.20,0.00,1.475217,10.670408,251,273,2.180440,0.073649,11592652,9889580,0,0,33792,0,1,1 +1773581069.021604,1.91,4,3992.50,59.19,1368.18,2317.43,0.00,3518771311995.272461,3518771311986.072266,205,0,2.016359,0.071115,11596598,9893596,0,0,33795,0,1,1 +1773581074.018127,2.87,4,3992.50,59.14,1369.95,2315.64,0.00,3520885323403.183105,0.000000,11,0,0.218431,0.009357,11597187,9893995,0,0,33797,0,1,1 +1773581079.022333,2.66,4,3992.50,58.86,1381.13,2304.44,0.00,0.053471,0.000000,75,0,1.881194,0.060879,11600930,9897440,0,0,33800,0,1,1 +1773581084.018776,3.33,4,3992.50,59.17,1370.87,2316.73,0.00,16614.800181,18040.747659,1181976,1874958,2.115629,0.070752,11605109,9901500,0,0,33802,0,1,1 +1773581089.017445,2.52,4,3992.50,58.92,1378.66,2306.90,0.00,3519373984878.458984,3519373983453.199707,11,0,2.190670,0.069283,11609464,9905543,0,0,33805,0,1,1 +1773581094.017435,2.67,4,3992.50,59.04,1374.06,2311.51,0.00,0.180274,0.000000,205,0,2.040938,0.067882,11613492,9909476,0,0,33807,0,1,1 +1773581099.017437,1.41,4,3992.50,58.70,1387.31,2298.27,0.00,3518436444678.623535,0.000000,11,0,1.924902,0.066055,11617242,9913279,0,0,33810,0,1,1 +1773581104.021380,1.45,4,3992.50,58.47,1396.29,2289.29,0.00,16589.950128,18014.031265,1181976,1875327,0.032980,0.006421,11617392,9913531,0,0,33812,0,1,1 +1773581109.017452,2.46,4,3992.50,58.66,1389.07,2296.50,0.00,3521203856378.673828,3521203854950.334961,246,2,0.031662,0.004101,11617570,9913636,0,0,33815,0,1,1 +1773581114.017439,1.96,4,3992.50,58.82,1391.42,2303.00,0.00,0.000000,0.000000,246,2,1.773063,0.056345,11621031,9916843,0,0,33817,0,1,1 +1773581119.017441,2.37,4,3992.50,59.28,1373.00,2321.00,0.00,3518435714249.696289,3518435714251.708496,11,0,1.459559,0.036909,11623941,9918947,0,0,33820,0,1,1 +1773581124.021855,2.67,4,3992.50,59.32,1371.43,2322.57,0.00,16588.392095,18012.629468,1181976,1875661,2.320287,0.075480,11628487,9923280,0,0,33822,0,1,1 +1773581129.019558,3.13,4,3992.50,59.12,1379.48,2314.50,0.00,3520054236203.268066,3520054234777.064941,75,0,2.043305,0.062839,11632500,9926880,0,0,33825,0,1,1 +1773581134.017453,3.17,4,3992.50,58.58,1400.39,2293.61,0.00,16609.971978,18036.163854,1181976,1875721,1.649446,0.062910,11635755,9930530,0,0,33827,0,1,1 +1773581139.021752,1.45,4,3992.50,58.44,1406.11,2287.87,0.00,3515414990715.910156,3515414989291.416504,205,0,1.110688,0.046584,11637990,9933174,0,0,33830,0,1,1 +1773581144.019269,1.66,4,3992.50,58.93,1386.98,2307.21,0.00,3520185537895.937012,0.000000,11,0,0.006002,0.005023,11638103,9933285,0,0,33832,0,1,1 +1773581149.021472,2.61,4,3992.50,59.12,1379.50,2314.61,0.00,16595.721774,18020.827998,1181976,1875922,0.729333,0.016587,11639625,9934155,0,0,33835,0,1,1 +1773581154.022277,2.12,4,3992.50,58.93,1386.96,2307.14,0.00,3517870979688.977539,3517870978263.292480,205,0,1.844497,0.059598,11643239,9937584,0,0,33837,0,1,1 +1773581159.021606,2.52,4,3992.50,59.06,1381.83,2312.24,0.00,1.832277,0.000195,246,2,2.076909,0.069986,11647339,9941616,0,0,33840,0,1,1 +1773581164.018580,2.52,4,3992.50,59.31,1372.09,2321.99,0.00,0.000000,0.000000,246,2,2.151891,0.066350,11651590,9945535,0,0,33842,0,1,1 +1773581169.017478,4.18,4,3992.50,58.88,1388.93,2305.16,0.00,3519212871551.780762,3519212871553.793457,11,0,5.860436,0.040216,11655034,9947809,0,0,33845,0,1,1 +1773581174.019429,0.90,4,3992.50,58.83,1387.05,2303.28,0.00,0.000000,0.000000,11,0,0.002733,0.003953,11655099,9947889,0,0,33847,0,1,1 +1773581179.020690,0.70,4,3992.50,58.55,1395.12,2292.44,0.00,16598.848864,18024.677604,1181976,1876423,0.002733,0.003963,11655164,9947970,0,0,33850,0,1,1 +1773581184.021690,0.55,4,3992.50,58.55,1395.15,2292.44,0.00,3517733461962.086914,3517733460536.183594,11,0,0.002733,0.003954,11655229,9948050,0,0,33852,0,1,1 +1773581189.021457,0.60,4,3992.50,58.55,1395.16,2292.43,0.00,2.012399,0.000195,246,2,0.002742,0.003972,11655295,9948132,0,0,33855,0,1,1 +1773581194.018589,0.70,4,3992.50,58.56,1394.93,2292.66,0.00,3520456207414.329590,3520456207416.343262,11,0,0.002494,0.003323,11655352,9948200,0,0,33857,0,1,1 +1773581199.021815,0.55,4,3992.50,58.56,1394.94,2292.64,0.00,0.053481,0.000000,75,0,0.002732,0.003949,11655417,9948280,0,0,33860,0,1,1 +1773581204.017503,0.95,4,3992.50,58.56,1399.19,2292.88,0.00,1.960480,0.000195,246,2,0.002736,0.003958,11655482,9948360,0,0,33862,0,1,1 +1773581209.017464,0.60,4,3992.50,58.55,1399.47,2292.55,0.00,3518464429833.095215,3518464429835.107422,11,0,0.002742,0.004616,11655548,9948446,0,0,33865,0,1,1 +1773581214.021667,0.65,4,3992.50,58.37,1406.63,2285.39,0.00,0.000000,0.000000,11,0,0.002731,0.003951,11655613,9948526,0,0,33867,0,1,1 +1773581219.017462,0.60,4,3992.50,58.35,1407.50,2284.51,0.00,16626.578420,18055.365531,1183465,1876982,0.002736,0.003968,11655678,9948607,0,0,33870,0,1,1 +1773581224.021959,0.65,4,3992.50,58.35,1407.52,2284.50,0.00,3515275450181.665527,3515275448755.309570,75,0,0.002731,0.003951,11655743,9948687,0,0,33872,0,1,1 +1773581229.017442,0.65,4,3992.50,58.37,1406.79,2285.23,0.00,3521618932425.394531,0.000000,11,0,0.002744,0.003976,11655809,9948769,0,0,33875,0,1,1 +1773581234.022164,18.74,4,3992.50,58.36,1402.71,2285.02,0.00,0.053465,0.000000,75,0,24.136759,0.112724,11663656,9954625,0,0,33877,0,1,1 +1773581239.018354,3.66,4,3992.50,58.41,1400.66,2287.04,0.00,16625.209307,18054.761997,1183466,1878009,4.032277,0.021005,11665043,9955671,0,0,33880,0,1,1 +1773581244.022345,8.59,4,3992.50,58.53,1396.25,2291.43,0.00,0.000000,0.038934,1183466,1878210,12.060677,0.050704,11668848,9958436,0,0,33882,0,1,1 +1773581249.017558,0.75,4,3992.50,58.10,1413.10,2274.61,0.00,3521809008842.482910,3521809007412.665039,11,0,0.002736,0.003968,11668913,9958517,0,0,33885,0,1,1 +1773581254.017499,0.60,4,3992.50,58.13,1411.93,2275.77,0.00,2.012328,0.000195,246,2,0.002742,0.003962,11668979,9958598,0,0,33887,0,1,1 +1773581259.017669,0.60,4,3992.50,58.13,1411.95,2275.75,0.00,16600.460273,18030.160446,1181977,1878299,0.002734,0.003964,11669044,9958679,0,0,33890,0,1,1 +1773581264.017921,0.85,4,3992.50,58.25,1406.64,2280.62,0.00,9.561040,10.907261,1183466,1878604,0.002733,0.003954,11669109,9958759,0,0,33892,0,1,1 +1773581269.021417,0.65,4,3992.50,58.27,1405.92,2281.27,0.00,3515979387391.541992,3515979387390.535645,1181977,1878436,0.002732,0.003961,11669174,9958840,0,0,33895,0,1,1 +1773581274.017944,0.60,4,3992.50,58.29,1404.95,2282.24,0.00,3520882891896.537598,3520882890467.469238,11,0,0.002744,0.004597,11669240,9958924,0,0,33897,0,1,1 +1773581279.021464,0.85,4,3992.50,58.32,1404.00,2283.18,0.00,1.654987,10.667684,251,273,0.005344,0.005270,11669345,9959022,0,0,33900,0,1,1 +1773581284.022003,0.55,4,3992.50,58.32,1404.02,2283.16,0.00,0.356114,3518057871468.087891,246,2,0.002733,0.003954,11669410,9959102,0,0,33902,0,1,1 +1773581289.019134,0.60,4,3992.50,58.32,1403.78,2283.40,0.00,3520457493120.329102,10.681130,251,273,0.002735,0.003954,11669475,9959182,0,0,33905,0,1,1 +1773581294.022393,0.85,4,3992.50,58.42,1402.00,2287.25,0.00,0.000000,0.000000,251,273,0.002752,0.003960,11669542,9959263,0,0,33907,0,1,1 +1773581299.021409,0.70,4,3992.50,58.42,1401.63,2287.13,0.00,3519129354058.384277,3519129354049.183105,205,0,0.002734,0.003965,11669607,9959344,0,0,33910,0,1,1 +1773581304.017560,0.60,4,3992.50,58.22,1409.30,2279.45,0.00,3521147550942.444336,0.000000,75,0,0.002748,0.003957,11669673,9959424,0,0,33912,0,1,1 +1773581309.020893,5.41,4,3992.50,58.63,1393.43,2295.33,0.00,1.601569,10.668085,251,273,6.036251,0.030026,11671674,9960909,0,0,33915,0,1,1 +1773581314.021554,4.36,4,3992.50,58.54,1396.59,2292.16,0.00,0.356105,3517972458677.737305,246,2,2.035460,0.022300,11672713,9961659,0,0,33917,0,1,1 +1773581319.017466,18.09,4,3992.50,58.94,1381.18,2307.52,0.00,3521316431572.308105,3521316431574.322266,11,0,32.212484,0.137787,11682963,9969420,0,0,33920,0,1,1 +1773581324.018560,0.95,4,3992.50,59.18,1371.23,2316.97,0.00,0.000000,0.000000,11,0,0.003453,0.004925,11683035,9969505,0,0,33922,0,1,1 +1773581329.017437,0.60,4,3992.50,59.00,1378.23,2309.84,0.00,1.656525,10.677594,251,273,0.002505,0.003344,11683093,9969575,0,0,33925,0,1,1 +1773581334.020250,0.60,4,3992.50,58.92,1381.06,2307.02,0.00,3516458605930.964844,3516458605921.897949,75,0,0.002732,0.003952,11683158,9969655,0,0,33927,0,1,1 +1773581339.018274,0.90,4,3992.50,58.91,1381.49,2306.58,0.00,0.126808,0.000000,205,0,0.002730,0.004618,11683223,9969741,0,0,33930,0,1,1 +1773581344.017455,0.60,4,3992.50,58.92,1381.26,2306.80,0.00,1.476121,10.676944,251,273,0.002734,0.003955,11683288,9969821,0,0,33932,0,1,1 +1773581349.021399,0.60,4,3992.50,58.72,1389.16,2298.91,0.00,3515664355887.887207,3515664355878.875488,11,0,0.002113,0.003591,11683341,9969894,0,0,33935,0,1,1 +1773581354.022074,1.00,4,3992.50,58.97,1381.69,2308.70,0.00,0.000000,0.000000,11,0,0.002570,0.003941,11683404,9969973,0,0,33937,0,1,1 +1773581359.018561,0.75,4,3992.50,58.79,1388.64,2301.77,0.00,16624.278781,18056.177595,1183467,1880511,0.002744,0.003950,11683470,9970053,0,0,33940,0,1,1 +1773581364.021579,1.40,4,3992.50,58.50,1399.90,2290.51,0.00,3516314638564.075684,3516314637132.035156,246,2,0.002503,0.003319,11683528,9970121,0,0,33942,0,1,1 +1773581369.018242,0.65,4,3992.50,58.52,1399.12,2291.29,0.00,16612.109825,18044.870080,1181978,1880252,0.004158,0.005725,11683608,9970227,0,0,33945,0,1,1 +1773581374.017453,0.60,4,3992.50,58.52,1399.13,2291.28,0.00,0.000000,0.068761,1181978,1880330,0.002734,0.003955,11683673,9970307,0,0,33947,0,1,1 +1773581379.017443,0.70,4,3992.50,58.52,1399.39,2291.02,0.00,9.561542,10.678829,1183467,1880612,0.003041,0.004514,11683745,9970399,0,0,33950,0,1,1 +1773581384.019566,18.37,4,3992.50,59.82,1349.47,2341.95,0.00,3516943791021.896484,3516943789591.472168,75,0,24.348069,0.117642,11691814,9976514,0,0,33952,0,1,1 +1773581389.022120,7.77,4,3992.50,59.00,1380.21,2310.14,0.00,16594.505422,18024.071728,1181978,1881015,11.869475,0.052387,11695717,9979466,0,0,33955,0,1,1 +1773581394.017931,3.87,4,3992.50,58.99,1380.62,2309.73,0.00,3521388165568.278320,3521388164145.862305,251,273,4.031165,0.021664,11697086,9980492,0,0,33957,0,1,1 +1773581399.022409,0.60,4,3992.50,58.89,1384.57,2305.79,0.00,0.000000,0.000000,251,273,0.003660,0.004638,11697154,9980577,0,0,33960,0,1,1 +1773581404.017558,0.85,4,3992.50,58.90,1384.20,2306.14,0.00,3521854046875.761719,3521854046866.680664,75,0,0.002724,0.004603,11697218,9980661,0,0,33962,0,1,1 +1773581409.022004,0.95,4,3992.50,58.90,1384.23,2306.10,0.00,16597.786898,18028.834470,1183467,1881927,0.002490,0.003328,11697275,9980730,0,0,33965,0,1,1 +1773581414.021832,1.15,4,3992.50,59.31,1369.56,2322.08,0.00,3518557641646.979492,3518557640214.610352,75,0,0.002796,0.004005,11697344,9980814,0,0,33967,0,1,1 +1773581419.017451,0.85,4,3992.50,58.73,1391.24,2299.25,0.00,16617.545289,18050.227869,1181978,1881833,0.002736,0.003968,11697409,9980895,0,0,33970,0,1,1 +1773581424.017613,0.85,4,3992.50,58.73,1391.00,2299.49,0.00,3518323126135.077148,3518323124712.768555,251,273,0.002742,0.003962,11697475,9980976,0,0,33972,0,1,1 +1773581429.022047,0.80,4,3992.50,58.76,1390.02,2300.48,0.00,16596.224518,18018.534168,1183467,1882201,0.002745,0.003961,11697541,9981057,0,0,33975,0,1,1 +1773581434.022372,0.85,4,3992.50,58.76,1390.03,2300.46,0.00,3518208565005.214355,3518208563572.717285,11,0,0.002733,0.003954,11697606,9981137,0,0,33977,0,1,1 +1773581439.021637,0.90,4,3992.50,58.76,1390.04,2300.45,0.00,0.180300,0.000000,205,0,0.002734,0.003965,11697671,9981218,0,0,33980,0,1,1 +1773581444.022219,1.05,4,3992.50,58.78,1395.81,2301.17,0.00,16600.921529,18032.457372,1181978,1881952,0.002741,0.003949,11697737,9981298,0,0,33982,0,1,1 +1773581449.018543,0.85,4,3992.50,58.77,1393.48,2301.13,0.00,3521026183114.862305,3521026181682.286133,11,0,0.002507,0.003346,11697795,9981368,0,0,33985,0,1,1 +1773581454.020335,1.75,4,3992.50,58.53,1403.08,2291.53,0.00,2.011584,0.000195,246,2,0.008314,0.006749,11697956,9981508,0,0,33987,0,1,1 +1773581459.020155,20.26,4,3992.50,59.22,1376.07,2318.52,0.00,0.000000,0.000000,246,2,30.195395,0.137823,11707970,9988882,0,0,33990,0,1,1 +1773581464.021653,5.96,4,3992.50,59.12,1379.79,2314.79,0.00,16596.049314,18029.666386,1181978,1882942,8.043299,0.034004,11710504,9990755,0,0,33992,0,1,1 +1773581469.020496,2.90,4,3992.50,58.82,1391.57,2303.00,0.00,3519252048345.643066,3519252046913.276855,11,0,2.019844,0.014966,11711282,9991360,0,0,33995,0,1,1 +1773581474.019310,1.20,4,3992.50,58.87,1389.60,2304.80,0.00,0.053528,0.000000,75,0,0.002734,0.004277,11711347,9991442,0,0,33997,0,1,1 +1773581479.019837,0.80,4,3992.50,59.01,1383.76,2310.46,0.00,3518065972007.582031,0.000000,11,0,0.002733,0.003951,11711412,9991522,0,0,34000,0,1,1 +1773581484.020425,0.85,4,3992.50,58.78,1392.83,2301.39,0.00,2.012068,0.000195,246,2,0.002733,0.003954,11711477,9991602,0,0,34002,0,1,1 +1773581489.017551,0.90,4,3992.50,58.79,1392.60,2301.62,0.00,3520460259675.857422,3520460259677.816895,75,0,0.002506,0.003333,11711535,9991671,0,0,34005,0,1,1 +1773581494.020271,0.85,4,3992.50,58.80,1392.16,2302.05,0.00,0.000000,0.000000,75,0,0.002732,0.003952,11711600,9991751,0,0,34007,0,1,1 +1773581499.021715,0.80,4,3992.50,58.80,1392.18,2302.04,0.00,3517421463389.603516,0.000000,11,0,0.002733,0.003976,11711665,9991833,0,0,34010,0,1,1 +1773581504.017569,1.10,4,3992.50,58.99,1388.82,2309.52,0.00,1.657527,10.684054,251,273,0.002736,0.003945,11711730,9991912,0,0,34012,0,1,1 +1773581509.021840,0.85,4,3992.50,58.99,1386.12,2309.72,0.00,0.355848,3515434733719.584961,246,2,0.002731,0.003961,11711795,9991993,0,0,34015,0,1,1 +1773581514.017560,0.75,4,3992.50,58.99,1386.13,2309.71,0.00,16615.242513,18051.801952,1181978,1883902,0.002744,0.003953,11711861,9992073,0,0,34017,0,1,1 +1773581519.021403,0.85,4,3992.50,59.00,1385.91,2309.93,0.00,3515735304699.103027,3515735303264.875000,246,2,0.002732,0.003961,11711926,9992154,0,0,34020,0,1,1 +1773581524.017579,0.70,4,3992.50,59.00,1385.91,2309.92,0.00,3521130132587.017090,3521130132588.850586,205,0,0.002736,0.003932,11711991,9992232,0,0,34022,0,1,1 +1773581529.019811,8.39,4,3992.50,59.56,1364.08,2331.74,0.00,3516867696947.038574,0.000000,75,0,8.048657,0.038316,11714578,9994064,0,0,34025,0,1,1 +1773581534.018569,20.39,4,3992.50,59.56,1372.44,2332.05,0.00,16607.108885,18041.952998,1181978,1885165,32.205208,0.142653,11725102,10001889,0,0,34027,0,1,1 +1773581539.017648,1.86,4,3992.50,59.17,1387.74,2316.73,0.00,9.563284,10.834416,1183467,1885688,0.015500,0.010143,11725414,10002140,0,0,34030,0,1,1 +1773581544.018847,0.75,4,3992.50,59.18,1387.28,2317.20,0.00,3517593842815.118164,3517593841379.757812,11,0,0.002720,0.003953,11725478,10002220,0,0,34032,0,1,1 +1773581549.022386,0.75,4,3992.50,59.18,1387.29,2317.20,0.00,0.000000,0.000000,11,0,0.002732,0.003949,11725543,10002300,0,0,34035,0,1,1 +1773581554.017571,0.90,4,3992.50,59.18,1387.30,2317.18,0.00,1.657749,10.685484,251,273,0.002736,0.003946,11725608,10002379,0,0,34037,0,1,1 +1773581559.021500,0.75,4,3992.50,59.18,1387.31,2317.17,0.00,0.000000,0.000000,251,273,0.002503,0.003328,11725666,10002448,0,0,34040,0,1,1 +1773581564.021798,1.25,4,3992.50,58.98,1394.00,2309.07,0.00,3518227198863.589355,3518227198854.571289,11,0,0.002733,0.003954,11725731,10002528,0,0,34042,0,1,1 +1773581569.021572,0.90,4,3992.50,58.98,1393.77,2309.31,0.00,16603.788260,18038.859330,1181978,1885718,0.002513,0.003339,11725790,10002598,0,0,34045,0,1,1 +1773581574.022170,0.90,4,3992.50,58.98,1393.79,2309.29,0.00,3518015974600.711426,3518015973163.865723,246,2,0.002733,0.003954,11725855,10002678,0,0,34047,0,1,1 +1773581579.022098,0.90,4,3992.50,58.99,1393.59,2309.49,0.00,16610.825300,18049.058487,1183467,1886090,0.005577,0.005895,11725967,10002787,0,0,34050,0,1,1 +1773581584.021448,0.95,4,3992.50,58.99,1393.59,2309.48,0.00,0.000000,0.031449,1183467,1886131,0.002721,0.003942,11726031,10002866,0,0,34052,0,1,1 +1773581589.017476,0.75,4,3992.50,58.99,1393.60,2309.47,0.00,3521234503214.950684,3521234501777.396484,205,0,0.002748,0.003942,11726097,10002945,0,0,34055,0,1,1 +1773581594.017575,1.25,4,3992.50,58.99,1391.53,2309.67,0.00,3518368002584.408691,0.000000,11,0,0.002721,0.003954,11726161,10003025,0,0,34057,0,1,1 +1773581599.021642,10.64,4,3992.50,59.02,1390.16,2310.81,0.00,0.000000,0.000000,11,0,10.068832,0.055461,11729679,10005604,0,0,34060,0,1,1 +1773581604.017566,21.77,4,3992.50,58.79,1399.27,2301.66,0.00,0.053559,0.000000,75,0,30.207252,0.129951,11739348,10012673,0,0,34062,0,1,1 +1773581609.017452,0.95,4,3992.50,58.82,1397.83,2303.09,0.00,1.602673,10.675439,251,273,0.002734,0.003964,11739413,10012754,0,0,34065,0,1,1 +1773581614.021634,0.80,4,3992.50,58.83,1397.61,2303.32,0.00,3515497348209.477051,3515497348200.412109,75,0,0.002503,0.003318,11739471,10012822,0,0,34067,0,1,1 +1773581619.019264,0.85,4,3992.50,58.83,1397.62,2303.30,0.00,16620.419928,18058.479143,1183468,1887606,0.002743,0.003962,11739537,10012903,0,0,34070,0,1,1 +1773581624.017865,0.80,4,3992.50,58.84,1397.39,2303.53,0.00,3519422017352.145020,3519422015914.418457,11,0,0.002772,0.004018,11739605,10012987,0,0,34072,0,1,1 +1773581629.017468,1.05,4,3992.50,58.79,1392.05,2301.89,0.00,0.000000,0.000000,11,0,0.002946,0.003619,11739659,10013046,0,0,34075,0,1,1 +1773581634.017642,0.75,4,3992.50,58.60,1399.48,2294.47,0.00,1.656095,10.674824,251,273,0.002734,0.003954,11739724,10013126,0,0,34077,0,1,1 +1773581639.017490,1.05,4,3992.50,58.60,1399.49,2294.45,0.00,0.000000,0.000000,251,273,0.002734,0.003977,11739789,10013208,0,0,34080,0,1,1 +1773581644.019478,0.75,4,3992.50,58.60,1399.50,2294.43,0.00,3517039108461.070312,3517039108452.055176,11,0,0.002733,0.003953,11739854,10013288,0,0,34082,0,1,1 +1773581649.017560,0.80,4,3992.50,58.60,1399.52,2294.42,0.00,0.180343,0.000000,205,0,0.002735,0.003966,11739919,10013369,0,0,34085,0,1,1 +1773581654.017439,1.20,4,3992.50,58.62,1398.65,2295.15,0.00,1.832076,0.000195,246,2,0.002734,0.003942,11739984,10013448,0,0,34087,0,1,1 +1773581659.017590,0.70,4,3992.50,58.62,1398.33,2295.11,0.00,3518330887736.605469,3518330887738.437500,205,0,0.002505,0.003343,11740042,10013518,0,0,34090,0,1,1 +1773581664.021011,0.75,4,3992.50,58.62,1398.35,2295.10,0.00,0.000000,0.000000,205,0,0.002732,0.004273,11740107,10013600,0,0,34092,0,1,1 +1773581669.019300,14.43,4,3992.50,59.57,1361.01,2332.41,0.00,3519641321118.598633,0.000000,11,0,16.127642,0.087781,11745686,10017831,0,0,34095,0,1,1 +1773581674.017581,14.64,4,3992.50,58.81,1390.97,2302.42,0.00,2.012997,0.000195,246,2,24.152171,0.105976,11753582,10023780,0,0,34097,0,1,1 +1773581679.020962,0.75,4,3992.50,58.61,1398.54,2294.86,0.00,3516060183426.482910,3516060183428.313477,205,0,0.002802,0.003895,11753646,10023861,0,0,34100,0,1,1 +1773581684.018582,1.05,4,3992.50,58.62,1396.41,2295.25,0.00,3520112719175.318359,0.000000,11,0,0.002748,0.003956,11753712,10023941,0,0,34102,0,1,1 +1773581689.017566,0.80,4,3992.50,58.59,1397.44,2293.89,0.00,1.656489,10.677365,251,273,0.002931,0.004485,11753783,10024032,0,0,34105,0,1,1 +1773581694.017565,0.85,4,3992.50,58.57,1398.25,2293.07,0.00,16601.385156,18030.587399,1181979,1889465,0.002721,0.003954,11753847,10024112,0,0,34107,0,1,1 +1773581699.022421,0.85,4,3992.50,58.54,1399.50,2291.82,0.00,3515022837587.684082,3515022836150.805176,75,0,0.003652,0.004629,11753914,10024196,0,0,34110,0,1,1 +1773581704.022015,0.80,4,3992.50,58.57,1398.29,2293.04,0.00,3518723264194.653809,0.000000,11,0,0.002734,0.003955,11753979,10024276,0,0,34112,0,1,1 +1773581709.022242,0.75,4,3992.50,58.51,1400.72,2290.62,0.00,16611.843418,18051.360714,1183468,1889888,0.002505,0.003318,11754037,10024344,0,0,34115,0,1,1 +1773581714.022053,1.15,4,3992.50,58.62,1389.83,2295.00,0.00,3518569959878.378906,3518569958438.688477,75,0,0.002338,0.002750,11754092,10024405,0,0,34117,0,1,1 +1773581719.021170,0.80,4,3992.50,58.59,1391.00,2293.79,0.00,16605.917404,18044.798886,1181979,1889685,0.002734,0.003965,11754157,10024486,0,0,34120,0,1,1 +1773581724.019691,0.70,4,3992.50,58.56,1392.10,2292.69,0.00,3519478386321.236816,3519478384880.225098,246,2,0.002734,0.003955,11754222,10024566,0,0,34122,0,1,1 +1773581729.022380,0.80,4,3992.50,58.58,1391.12,2293.67,0.00,3516545638586.280762,3516545638588.238281,75,0,0.002728,0.004292,11754287,10024650,0,0,34125,0,1,1 +1773581734.021801,0.75,4,3992.50,58.58,1391.14,2293.66,0.00,0.126772,0.000000,205,0,0.002734,0.004264,11754352,10024731,0,0,34127,0,1,1 +1773581739.021538,19.27,4,3992.50,58.51,1393.90,2290.85,0.00,16603.731337,18042.721117,1181979,1890204,22.154470,0.111089,11761659,10030263,0,0,34130,0,1,1 +1773581744.021420,11.06,4,3992.50,58.86,1380.22,2304.49,0.00,3518520306063.182617,3518520304624.361328,75,0,18.104837,0.075082,11767344,10034491,0,0,34132,0,1,1 +1773581749.022122,0.90,4,3992.50,58.48,1395.25,2289.49,0.00,1.958514,0.000195,246,2,0.002733,0.003964,11767409,10034572,0,0,34135,0,1,1 +1773581754.022120,0.75,4,3992.50,58.36,1399.79,2284.95,0.00,3518438417114.596191,10.675004,251,273,0.002734,0.003954,11767474,10034652,0,0,34137,0,1,1 +1773581759.017501,0.85,4,3992.50,58.38,1399.17,2285.56,0.00,0.356482,3521690703107.122559,246,2,0.002507,0.003334,11767532,10034721,0,0,34140,0,1,1 +1773581764.021246,0.75,4,3992.50,58.38,1399.13,2285.61,0.00,3515803897076.119629,3515803897078.076660,75,0,0.002732,0.003939,11767597,10034800,0,0,34142,0,1,1 +1773581769.017454,0.70,4,3992.50,58.20,1406.07,2278.66,0.00,0.000000,0.000000,75,0,0.002736,0.003967,11767662,10034881,0,0,34145,0,1,1 +1773581774.019814,0.65,4,3992.50,58.20,1406.09,2278.64,0.00,0.126698,0.000000,205,0,0.002504,0.003319,11767720,10034949,0,0,34147,0,1,1 +1773581779.019982,2.91,4,3992.50,58.44,1399.56,2287.94,0.00,1.475829,10.674836,251,273,0.002513,0.003339,11767779,10035019,0,0,34150,0,1,1 +1773581784.019475,0.80,4,3992.50,58.44,1399.39,2288.14,0.00,3518793844971.614258,3518793844962.541016,75,0,0.002734,0.003955,11767844,10035099,0,0,34152,0,1,1 +1773581789.020311,0.75,4,3992.50,58.43,1400.07,2287.47,0.00,1.958462,0.000195,246,2,0.002733,0.003964,11767909,10035180,0,0,34155,0,1,1 +1773581794.022141,0.80,4,3992.50,58.42,1400.08,2287.45,0.00,3517149817388.992676,3517149817390.950684,75,0,0.002720,0.004262,11767973,10035261,0,0,34157,0,1,1 +1773581799.017562,0.75,4,3992.50,58.43,1399.85,2287.69,0.00,3521662498831.062988,0.000000,11,0,0.002736,0.004290,11768038,10035344,0,0,34160,0,1,1 +1773581804.021471,2.96,4,3992.50,58.24,1399.49,2280.19,0.00,1.654858,10.666855,251,273,0.009288,0.006716,11768212,10035489,0,0,34162,0,1,1 +1773581809.022016,20.56,4,3992.50,59.29,1358.01,2321.48,0.00,3518054069574.209961,3518054069565.192383,11,0,30.305411,0.143877,11778247,10043126,0,0,34165,0,1,1 +1773581814.021623,7.24,4,3992.50,58.30,1396.73,2282.75,0.00,0.000000,0.000000,11,0,9.967778,0.042436,11781338,10045418,0,0,34167,0,1,1 +1773581819.022156,0.75,4,3992.50,58.30,1396.99,2282.48,0.00,0.053510,0.000000,75,0,0.002504,0.003343,11781396,10045488,0,0,34170,0,1,1 +1773581824.017461,0.50,4,3992.50,58.30,1396.77,2282.72,0.00,1.604143,10.685228,251,273,0.002736,0.003958,11781461,10045568,0,0,34172,0,1,1 +1773581829.022364,0.65,4,3992.50,58.11,1404.18,2275.31,0.00,3514990903009.826660,3514990903000.763184,75,0,0.002731,0.003960,11781526,10045649,0,0,34175,0,1,1 +1773581834.021705,1.05,4,3992.50,58.43,1399.75,2287.52,0.00,16614.732506,18057.705805,1183468,1893300,0.002742,0.003950,11781592,10045729,0,0,34177,0,1,1 +1773581839.021708,0.75,4,3992.50,58.41,1400.36,2286.84,0.00,0.000000,0.023828,1183468,1893308,0.002721,0.003952,11781656,10045809,0,0,34180,0,1,1 +1773581844.020767,0.65,4,3992.50,58.44,1399.31,2287.88,0.00,3519100018280.157227,3519100016835.119629,246,2,0.002734,0.003968,11781721,10045890,0,0,34182,0,1,1 +1773581849.021756,0.60,4,3992.50,58.44,1399.33,2287.86,0.00,3517741233627.843750,3517741233629.802246,75,0,0.002733,0.003963,11781786,10045971,0,0,34185,0,1,1 +1773581854.021484,0.70,4,3992.50,58.43,1399.34,2287.86,0.00,16613.448759,18056.473660,1183468,1893433,0.002505,0.003321,11781844,10046039,0,0,34187,0,1,1 +1773581859.021878,0.70,4,3992.50,58.43,1399.35,2287.85,0.00,3518160024589.200684,3518160023155.439941,251,273,0.002729,0.003972,11781909,10046121,0,0,34190,0,1,1 +1773581864.022009,0.90,4,3992.50,58.55,1396.92,2292.21,0.00,0.000000,0.000000,251,273,0.002734,0.004598,11781974,10046205,0,0,34192,0,1,1 +1773581869.018066,0.70,4,3992.50,58.50,1396.39,2290.54,0.00,16614.483441,18048.649338,1181979,1893450,0.002736,0.003967,11782039,10046286,0,0,34195,0,1,1 +1773581874.021592,6.83,4,3992.50,59.23,1367.96,2318.97,0.00,3515957963745.439453,3515957962304.401855,11,0,8.045388,0.040664,11784590,10048283,0,0,34197,0,1,1 +1773581879.021596,20.26,4,3992.50,58.88,1381.59,2305.27,0.00,0.053516,0.000000,75,0,30.205999,0.135223,11794360,10055600,0,0,34200,0,1,1 +1773581884.022094,2.96,4,3992.50,57.87,1421.11,2265.61,0.00,3518087063528.356934,0.000000,11,0,2.005075,0.016018,11795232,10056266,0,0,34202,0,1,1 +1773581889.021501,0.75,4,3992.50,57.93,1418.45,2268.27,0.00,2.012543,0.000195,246,2,0.002747,0.003965,11795298,10056347,0,0,34205,0,1,1 +1773581894.022307,0.95,4,3992.50,58.25,1415.25,2280.53,0.00,3517869853163.615234,3517869853165.447266,205,0,0.002733,0.003954,11795363,10056427,0,0,34207,0,1,1 +1773581899.017569,0.65,4,3992.50,58.31,1412.98,2282.90,0.00,16619.420991,18065.874710,1182425,1895202,0.002736,0.003955,11795428,10056507,0,0,34210,0,1,1 +1773581904.021421,0.50,4,3992.50,58.31,1412.78,2283.10,0.00,3515728889905.225586,3515728888461.381348,75,0,0.002856,0.003954,11795494,10056587,0,0,34212,0,1,1 +1773581909.022274,0.65,4,3992.50,58.28,1413.96,2281.91,0.00,0.126736,0.000000,205,0,0.002741,0.003972,11795560,10056669,0,0,34215,0,1,1 +1773581914.021615,0.70,4,3992.50,58.32,1412.55,2283.34,0.00,16615.425456,18061.991499,1183914,1895511,0.002505,0.003309,11795618,10056736,0,0,34217,0,1,1 +1773581919.021948,0.55,4,3992.50,58.32,1412.55,2283.33,0.00,3518202775827.769043,3518202774390.688965,251,273,0.002733,0.003964,11795683,10056817,0,0,34220,0,1,1 +1773581924.022395,0.95,4,3992.50,58.52,1403.83,2291.19,0.00,16610.273682,18047.398918,1183914,1895560,0.002784,0.004016,11795752,10056901,0,0,34222,0,1,1 +1773581929.019975,0.60,4,3992.50,58.52,1403.64,2291.37,0.00,3520141018671.609375,3520141017233.659180,251,273,0.003392,0.005533,11795819,10056988,0,0,34225,0,1,1 +1773581934.017491,0.55,4,3992.50,58.34,1411.05,2283.97,0.00,0.356329,3520185792873.530273,246,2,0.001961,0.003581,11795871,10057060,0,0,34227,0,1,1 +1773581939.020998,0.80,4,3992.50,58.15,1418.46,2276.56,0.00,3515971727232.494141,3515971727234.325195,205,0,0.002732,0.003961,11795936,10057141,0,0,34230,0,1,1 +1773581944.022036,9.69,4,3992.50,58.45,1406.56,2288.45,0.00,1.831651,0.000195,246,2,10.075153,0.054689,11799403,10059648,0,0,34232,0,1,1 +1773581949.017452,12.96,4,3992.50,58.31,1411.91,2283.08,0.00,3521666240857.094238,3521666240859.108398,11,0,20.139948,0.086394,11805919,10064359,0,0,34235,0,1,1 +1773581954.021743,8.32,4,3992.50,59.07,1388.00,2312.76,0.00,0.053470,0.000000,75,0,10.052932,0.042949,11809038,10066631,0,0,34237,0,1,1 +1773581959.021961,0.85,4,3992.50,58.93,1393.31,2307.13,0.00,0.000000,0.000000,75,0,0.002742,0.003972,11809104,10066713,0,0,34240,0,1,1 +1773581964.020814,0.60,4,3992.50,58.92,1393.52,2306.93,0.00,3519244928382.884277,0.000000,11,0,0.002734,0.003955,11809169,10066793,0,0,34242,0,1,1 +1773581969.020998,0.65,4,3992.50,58.76,1399.72,2300.71,0.00,0.053514,0.000000,75,0,0.003246,0.005051,11809248,10066896,0,0,34245,0,1,1 +1773581974.022285,0.70,4,3992.50,58.76,1399.73,2300.71,0.00,0.000000,0.000000,75,0,0.002708,0.003941,11809311,10066975,0,0,34247,0,1,1 +1773581979.021823,0.70,4,3992.50,58.72,1401.29,2299.15,0.00,3518762472026.020508,0.000000,11,0,0.003021,0.004519,11809381,10067067,0,0,34250,0,1,1 +1773581984.022177,1.05,4,3992.50,58.64,1403.46,2295.83,0.00,16602.676395,18048.989991,1182425,1896585,0.002729,0.003949,11809446,10067147,0,0,34252,0,1,1 +1773581989.018647,0.65,4,3992.50,58.63,1403.81,2295.33,0.00,3520923428279.432129,3520923426829.980469,246,2,0.002703,0.003878,11809510,10067228,0,0,34255,0,1,1 +1773581994.021093,0.50,4,3992.50,58.63,1403.82,2295.32,0.00,3516716913258.451172,3516716913260.408691,75,0,0.002720,0.004596,11809574,10067312,0,0,34257,0,1,1 +1773581999.021548,0.60,4,3992.50,58.63,1403.84,2295.31,0.00,3518116617691.865723,0.000000,11,0,0.002733,0.003964,11809639,10067393,0,0,34260,0,1,1 +1773582004.017618,0.55,4,3992.50,58.65,1402.88,2296.28,0.00,1.657455,10.683594,251,273,0.003064,0.004390,11809696,10067469,0,0,34262,0,1,1 +1773582009.017440,0.65,4,3992.50,58.67,1402.15,2297.00,0.00,3518562331772.911133,3518562331763.892090,11,0,0.002742,0.003972,11809762,10067551,0,0,34265,0,1,1 +1773582014.019276,0.95,4,3992.50,58.71,1398.47,2298.67,0.00,1.655544,10.671276,251,273,0.002795,0.004003,11809831,10067635,0,0,34267,0,1,1 +1773582019.021598,15.55,4,3992.50,59.53,1366.51,2330.61,0.00,3516804152738.786133,3516804152729.771973,11,0,20.124641,0.095418,11816537,10072519,0,0,34270,0,1,1 +1773582024.022179,10.76,4,3992.50,58.80,1394.79,2302.27,0.00,2.012071,0.000195,246,2,16.094607,0.068234,11821652,10076204,0,0,34272,0,1,1 +1773582029.021835,3.21,4,3992.50,58.78,1395.80,2301.28,0.00,3518679793001.396973,10.675736,251,273,4.030521,0.021292,11823050,10077261,0,0,34275,0,1,1 +1773582034.022135,0.70,4,3992.50,58.78,1395.80,2301.27,0.00,3518226035103.883789,3518226035094.865723,11,0,0.002746,0.003954,11823116,10077341,0,0,34277,0,1,1 +1773582039.021539,0.60,4,3992.50,58.78,1395.70,2301.36,0.00,2.012544,0.000195,246,2,0.002721,0.003965,11823180,10077422,0,0,34280,0,1,1 +1773582044.021995,0.95,4,3992.50,58.79,1389.96,2301.59,0.00,3518116624725.553223,3518116624727.511719,75,0,0.002733,0.003954,11823245,10077502,0,0,34282,0,1,1 +1773582049.019652,0.70,4,3992.50,58.78,1390.00,2301.46,0.00,1.959707,0.000195,246,2,0.002735,0.003966,11823310,10077583,0,0,34285,0,1,1 +1773582054.020818,0.60,4,3992.50,58.80,1389.28,2302.18,0.00,3517616529949.675293,3517616529951.633301,75,0,0.002741,0.003961,11823376,10077664,0,0,34287,0,1,1 +1773582059.018143,0.60,4,3992.50,58.80,1389.29,2302.17,0.00,1.603495,10.680910,251,273,0.002735,0.004611,11823441,10077749,0,0,34290,0,1,1 +1773582064.022144,0.65,4,3992.50,58.80,1389.30,2302.15,0.00,3515624265094.560547,3515624265085.549316,11,0,0.002515,0.003331,11823500,10077818,0,0,34292,0,1,1 +1773582069.017482,0.60,4,3992.50,58.78,1389.93,2301.54,0.00,0.053566,0.000000,75,0,0.002736,0.003968,11823565,10077899,0,0,34295,0,1,1 +1773582074.017495,1.00,4,3992.50,58.88,1388.13,2305.20,0.00,3518427990601.811035,0.000000,11,0,0.002734,0.003954,11823630,10077979,0,0,34297,0,1,1 +1773582079.017454,0.60,4,3992.50,58.88,1388.28,2305.14,0.00,0.053516,0.000000,75,0,0.002742,0.003972,11823696,10078061,0,0,34300,0,1,1 +1773582084.017461,0.60,4,3992.50,58.88,1388.30,2305.11,0.00,16603.777176,18052.145132,1182425,1898388,0.002708,0.003967,11823759,10078142,0,0,34302,0,1,1 +1773582089.019662,0.65,4,3992.50,58.88,1388.33,2305.09,0.00,3516888929757.710449,3516888928310.031250,11,0,0.002732,0.003950,11823824,10078222,0,0,34305,0,1,1 +1773582094.017427,19.64,4,3992.50,59.79,1352.64,2340.77,0.00,1.656893,10.679969,251,273,26.190869,0.122246,11832431,10084705,0,0,34307,0,1,1 +1773582099.022248,10.68,4,3992.50,58.82,1390.36,2303.00,0.00,3515048101438.584961,3515048101429.521484,75,0,14.085358,0.065591,11837018,10088150,0,0,34310,0,1,1 +1773582104.022114,1.10,4,3992.50,59.11,1386.05,2314.31,0.00,16613.807567,18064.215771,1183914,1899742,0.002742,0.003962,11837084,10088231,0,0,34312,0,1,1 +1773582109.018008,0.60,4,3992.50,59.08,1387.25,2312.95,0.00,3521328592503.172852,3521328591051.665527,11,0,0.002507,0.003346,11837142,10088301,0,0,34315,0,1,1 +1773582114.017469,1.00,4,3992.50,59.08,1387.27,2312.94,0.00,2.012521,0.000195,246,2,0.002734,0.003955,11837207,10088381,0,0,34317,0,1,1 +1773582119.017469,0.75,4,3992.50,59.08,1387.04,2313.17,0.00,0.000000,0.000000,246,2,0.002734,0.003964,11837272,10088462,0,0,34320,0,1,1 +1773582124.022160,0.60,4,3992.50,58.89,1394.45,2305.73,0.00,0.000000,0.000000,246,2,0.002731,0.004594,11837337,10088546,0,0,34322,0,1,1 +1773582129.022027,0.70,4,3992.50,58.89,1394.47,2305.73,0.00,3518531053734.040527,3518531053736.053223,11,0,0.002734,0.003952,11837402,10088626,0,0,34325,0,1,1 +1773582134.021809,0.90,4,3992.50,58.83,1395.40,2303.22,0.00,0.053518,0.000000,75,0,0.002742,0.003962,11837468,10088707,0,0,34327,0,1,1 +1773582139.021982,0.65,4,3992.50,58.83,1395.52,2303.17,0.00,1.958721,0.000195,246,2,0.002751,0.003964,11837534,10088788,0,0,34330,0,1,1 +1773582144.019340,0.60,4,3992.50,58.83,1395.53,2303.16,0.00,16620.185508,18073.819610,1183914,1900118,0.002506,0.003322,11837592,10088856,0,0,34332,0,1,1 +1773582149.021751,0.55,4,3992.50,58.83,1395.53,2303.14,0.00,3516741244934.607422,3516741244933.508301,1182425,1899860,0.002747,0.003962,11837658,10088937,0,0,34335,0,1,1 +1773582154.021123,0.60,4,3992.50,58.83,1395.56,2303.13,0.00,3518879114231.840332,3518879112781.850098,75,0,0.002734,0.003955,11837723,10089017,0,0,34337,0,1,1 +1773582159.017591,0.70,4,3992.50,58.83,1395.33,2303.36,0.00,3520924075583.711426,0.000000,11,0,0.002771,0.003975,11837791,10089099,0,0,34340,0,1,1 +1773582164.020582,3.81,4,3992.50,58.84,1387.82,2303.54,0.00,0.180166,0.000000,205,0,2.016932,0.014929,11838471,10089634,0,0,34342,0,1,1 +1773582169.018052,21.91,4,3992.50,59.06,1378.91,2312.40,0.00,1.832959,0.000195,246,2,32.207306,0.141595,11848676,10097439,0,0,34345,0,1,1 +1773582174.022036,4.96,4,3992.50,59.58,1358.60,2332.69,0.00,3515636008469.250488,3515636008471.207520,75,0,6.047458,0.030672,11850818,10099016,0,0,34347,0,1,1 +1773582179.021651,1.45,4,3992.50,59.21,1372.93,2318.33,0.00,16605.078640,18055.339754,1182425,1900684,0.011491,0.009213,11851048,10099213,0,0,34350,0,1,1 +1773582184.020208,0.60,4,3992.50,58.98,1382.12,2309.17,0.00,9.564283,11.026619,1183914,1901206,0.002513,0.003330,11851107,10099282,0,0,34352,0,1,1 +1773582189.021715,2.30,4,3992.50,58.78,1390.11,2301.19,0.00,0.000000,0.308306,1183914,1901336,0.039670,0.019686,11851889,10099789,0,0,34355,0,1,1 +1773582194.021708,1.65,4,3992.50,58.93,1386.89,2307.39,0.00,3518441904872.528809,3518441903429.679688,251,273,0.014314,0.008623,11852179,10100001,0,0,34357,0,1,1 +1773582199.017452,0.65,4,3992.50,58.96,1386.08,2308.31,0.00,3521434377743.423828,3521434377734.397461,11,0,0.002736,0.003968,11852244,10100082,0,0,34360,0,1,1 +1773582204.017573,0.65,4,3992.50,58.96,1385.85,2308.54,0.00,1.656113,10.674939,251,273,0.002734,0.003954,11852309,10100162,0,0,34362,0,1,1 +1773582209.017581,0.65,4,3992.50,58.96,1385.87,2308.52,0.00,3518431539281.015137,3518431539271.942871,75,0,0.002729,0.003972,11852374,10100244,0,0,34365,0,1,1 +1773582214.022382,0.70,4,3992.50,58.96,1385.87,2308.50,0.00,3515061369252.558105,0.000000,11,0,0.002731,0.003951,11852439,10100324,0,0,34367,0,1,1 +1773582219.017565,0.60,4,3992.50,58.96,1385.90,2308.48,0.00,0.053567,0.000000,75,0,0.002546,0.003717,11852500,10100398,0,0,34370,0,1,1 +1773582224.022244,0.95,4,3992.50,59.08,1384.83,2313.14,0.00,3515148148736.070312,0.000000,11,0,0.002742,0.003605,11852566,10100475,0,0,34372,0,1,1 +1773582229.018358,0.70,4,3992.50,58.93,1390.55,2307.43,0.00,2.013870,0.000195,246,2,0.003406,0.004890,11852634,10100558,0,0,34375,0,1,1 +1773582234.017478,0.70,4,3992.50,58.93,1390.56,2307.41,0.00,3519056423457.262207,3519056423459.094238,205,0,0.002730,0.003963,11852699,10100639,0,0,34377,0,1,1 +1773582239.021577,5.67,4,3992.50,58.82,1395.07,2302.88,0.00,3515554660073.262695,0.000000,11,0,4.035155,0.026947,11854203,10101721,0,0,34380,0,1,1 +1773582244.018588,23.48,4,3992.50,59.79,1357.05,2340.84,0.00,2.013508,0.000195,246,2,36.243768,0.155560,11865787,10110257,0,0,34382,0,1,1 +1773582249.022064,1.10,4,3992.50,59.79,1357.04,2340.89,0.00,16590.308116,18043.407950,1182425,1902607,0.007692,0.006626,11865944,10110406,0,0,34385,0,1,1 +1773582254.021075,0.95,4,3992.50,59.45,1368.90,2327.61,0.00,3519132874174.714355,3519132872731.350098,251,273,0.002276,0.003332,11865995,10110466,0,0,34387,0,1,1 +1773582259.021923,0.60,4,3992.50,59.45,1367.94,2327.59,0.00,3517841313298.665039,3517841313289.647949,11,0,0.002741,0.003972,11866061,10110548,0,0,34390,0,1,1 +1773582264.018145,0.70,4,3992.50,59.45,1367.96,2327.57,0.00,1.657405,10.683268,251,273,0.002736,0.003957,11866126,10110628,0,0,34392,0,1,1 +1773582269.022147,0.65,4,3992.50,59.45,1367.98,2327.56,0.00,0.355867,3515622716638.009766,246,2,0.004164,0.005716,11866207,10110734,0,0,34395,0,1,1 +1773582274.021813,0.50,4,3992.50,59.45,1367.99,2327.54,0.00,0.000000,0.000000,246,2,0.002734,0.003968,11866272,10110815,0,0,34397,0,1,1 +1773582279.021412,0.60,4,3992.50,59.45,1368.01,2327.53,0.00,16603.173711,18058.078392,1182425,1902937,0.003034,0.004519,11866343,10110907,0,0,34400,0,1,1 +1773582284.017458,0.95,4,3992.50,59.45,1367.87,2327.48,0.00,9.569091,10.722542,1183914,1903229,0.002744,0.003965,11866409,10110988,0,0,34402,0,1,1 +1773582289.017444,0.65,4,3992.50,59.04,1383.65,2311.65,0.00,3518446787074.173828,3518446785620.241699,11,0,0.002930,0.004496,11866480,10111080,0,0,34405,0,1,1 +1773582294.020486,0.60,4,3992.50,59.05,1383.26,2312.08,0.00,16593.759332,18045.714202,1182425,1902971,0.002503,0.003319,11866538,10111148,0,0,34407,0,1,1 +1773582299.017489,0.55,4,3992.50,59.05,1383.26,2312.07,0.00,0.000000,0.009869,1182425,1902985,0.002735,0.003967,11866603,10111229,0,0,34410,0,1,1 +1773582304.017457,0.60,4,3992.50,59.04,1383.66,2311.67,0.00,0.000000,0.022949,1182425,1902994,0.003668,0.004624,11866671,10111312,0,0,34412,0,1,1 +1773582309.021610,10.24,4,3992.50,58.80,1393.22,2302.12,0.00,3515516857347.852051,3515516855896.006836,205,0,12.073822,0.061369,11870648,10114317,0,0,34415,0,1,1 +1773582314.017425,19.18,4,3992.50,60.06,1348.26,2351.41,0.00,3521385149137.606934,0.000000,11,0,28.199906,0.125137,11879791,10121208,0,0,34417,0,1,1 +1773582319.017488,1.05,4,3992.50,59.52,1368.98,2330.38,0.00,2.012279,0.000195,246,2,0.007697,0.007250,11879948,10121359,0,0,34420,0,1,1 +1773582324.017456,0.70,4,3992.50,59.22,1380.85,2318.52,0.00,3518460194278.125000,3518460194279.957031,205,0,0.002734,0.003954,11880013,10121439,0,0,34422,0,1,1 +1773582329.021760,0.65,4,3992.50,59.21,1381.32,2318.03,0.00,3515410675823.650391,0.000000,11,0,0.002503,0.003328,11880071,10121508,0,0,34425,0,1,1 +1773582334.022225,0.55,4,3992.50,59.19,1381.86,2317.48,0.00,1.655999,10.674205,251,273,0.002733,0.003941,11880136,10121587,0,0,34427,0,1,1 +1773582339.022255,0.70,4,3992.50,59.01,1388.82,2310.54,0.00,3518415534738.166504,3518415534729.147949,11,0,0.002759,0.003972,11880203,10121669,0,0,34430,0,1,1 +1773582344.017876,0.95,4,3992.50,59.11,1387.73,2314.22,0.00,2.014069,0.000195,246,2,0.002507,0.003324,11880261,10121737,0,0,34432,0,1,1 +1773582349.017484,0.60,4,3992.50,59.07,1384.66,2312.82,0.00,3518712941562.627930,10.675837,251,273,0.002734,0.003965,11880326,10121818,0,0,34435,0,1,1 +1773582354.017453,0.65,4,3992.50,59.08,1384.48,2313.03,0.00,0.356155,3518459187983.380371,246,2,0.002734,0.003954,11880391,10121898,0,0,34437,0,1,1 +1773582359.020247,0.70,4,3992.50,58.92,1390.51,2307.01,0.00,3516472231626.818359,3516472231628.649414,205,0,0.002732,0.003962,11880456,10121979,0,0,34440,0,1,1 +1773582364.021575,0.70,4,3992.50,58.97,1388.55,2308.96,0.00,3517503061374.061035,0.000000,75,0,0.002741,0.003961,11880522,10122060,0,0,34442,0,1,1 +1773582369.022224,0.80,4,3992.50,58.97,1388.57,2308.95,0.00,1.958535,0.000195,246,2,0.002733,0.003964,11880587,10122141,0,0,34445,0,1,1 +1773582374.017454,0.95,4,3992.50,59.05,1391.18,2311.99,0.00,3521797067380.355469,3521797067382.189453,205,0,0.002724,0.003945,11880651,10122220,0,0,34447,0,1,1 +1773582379.018559,16.07,4,3992.50,59.71,1365.33,2337.80,0.00,16600.004667,18054.562632,1182425,1905186,20.284715,0.097342,11887398,10127213,0,0,34450,0,1,1 +1773582384.017457,11.98,4,3992.50,59.74,1364.14,2338.95,0.00,3519212861986.311035,3519212860531.237305,75,0,19.976050,0.090792,11893968,10132090,0,0,34452,0,1,1 +1773582389.021438,0.90,4,3992.50,59.49,1373.87,2329.21,0.00,16600.142636,18055.557526,1183914,1906100,0.002727,0.003957,11894033,10132171,0,0,34455,0,1,1 +1773582394.021963,1.00,4,3992.50,58.57,1410.07,2293.02,0.00,3518067840881.428223,3518067839425.007324,75,0,0.002504,0.003320,11894091,10132239,0,0,34457,0,1,1 +1773582399.022191,0.75,4,3992.50,58.57,1410.07,2293.00,0.00,16603.043070,18058.450572,1182425,1905836,0.002721,0.003964,11894155,10132320,0,0,34460,0,1,1 +1773582404.021554,1.15,4,3992.50,58.83,1391.00,2303.27,0.00,9.562743,10.777155,1183914,1906182,0.002734,0.003955,11894220,10132400,0,0,34462,0,1,1 +1773582409.022213,0.85,4,3992.50,58.83,1390.73,2303.41,0.00,3517973420648.119629,3517973419191.677246,11,0,0.002721,0.003951,11894284,10132480,0,0,34465,0,1,1 +1773582414.022302,0.75,4,3992.50,58.83,1390.75,2303.40,0.00,0.180270,0.000000,205,0,0.002513,0.003341,11894343,10132550,0,0,34467,0,1,1 +1773582419.017483,0.85,4,3992.50,58.84,1390.53,2303.62,0.00,16629.261376,18087.808985,1183914,1906481,0.002736,0.003955,11894408,10132630,0,0,34470,0,1,1 +1773582424.021704,0.75,4,3992.50,58.84,1390.54,2303.61,0.00,3515469698249.630371,3515469698248.550293,1182425,1906242,0.002719,0.003951,11894472,10132710,0,0,34472,0,1,1 +1773582429.017456,0.85,4,3992.50,58.84,1390.55,2303.59,0.00,3521428755876.041016,3521428754418.922852,11,0,0.002507,0.003333,11894530,10132779,0,0,34475,0,1,1 +1773582434.019439,1.20,4,3992.50,58.87,1386.88,2304.79,0.00,1.655496,10.670965,251,273,0.002720,0.003953,11894594,10132859,0,0,34477,0,1,1 +1773582439.020791,0.80,4,3992.50,58.68,1393.64,2297.38,0.00,3517486161525.829102,3517486161516.632812,205,0,0.002741,0.003971,11894660,10132941,0,0,34480,0,1,1 +1773582444.021744,0.80,4,3992.50,58.71,1392.44,2298.59,0.00,3517766021236.881348,0.000000,75,0,0.002733,0.003954,11894725,10133021,0,0,34482,0,1,1 +1773582449.020559,18.66,4,3992.50,59.62,1356.78,2334.20,0.00,3519271885153.964355,0.000000,11,0,24.165112,0.118162,11902702,10139116,0,0,34485,0,1,1 +1773582454.017725,11.40,4,3992.50,59.67,1354.69,2336.27,0.00,1.657091,10.681248,251,273,16.107603,0.071129,11907919,10142979,0,0,34487,0,1,1 +1773582459.021709,0.85,4,3992.50,59.16,1374.59,2316.37,0.00,3515635949453.945312,3515635949444.879883,75,0,0.002744,0.003961,11907985,10143060,0,0,34490,0,1,1 +1773582464.019373,1.20,4,3992.50,59.24,1375.13,2319.45,0.00,1.959705,0.000195,246,2,0.002730,0.003964,11908050,10143141,0,0,34492,0,1,1 +1773582469.021772,0.80,4,3992.50,59.24,1374.93,2319.49,0.00,16593.881026,18052.525472,1182425,1907794,0.002516,0.003329,11908109,10143210,0,0,34495,0,1,1 +1773582474.017459,0.80,4,3992.50,59.25,1374.70,2319.72,0.00,9.569778,10.692036,1183914,1908076,0.002736,0.003958,11908174,10143290,0,0,34497,0,1,1 +1773582479.017461,1.00,4,3992.50,59.25,1374.64,2319.78,0.00,3518435855264.340820,3518435853805.707520,205,0,0.005589,0.005920,11908287,10143401,0,0,34500,0,1,1 +1773582484.017551,0.80,4,3992.50,59.23,1375.50,2318.94,0.00,1.831998,0.000195,246,2,0.002734,0.003954,11908352,10143481,0,0,34502,0,1,1 +1773582489.018732,0.65,4,3992.50,58.85,1390.18,2304.25,0.00,16597.921206,18057.033072,1182425,1907915,0.002741,0.003971,11908418,10143563,0,0,34505,0,1,1 +1773582494.017445,1.30,4,3992.50,58.96,1383.84,2308.42,0.00,0.000000,0.034677,1182425,1907935,0.002734,0.003943,11908483,10143642,0,0,34507,0,1,1 +1773582499.022374,0.65,4,3992.50,58.79,1390.25,2301.89,0.00,3514972000718.145020,3514971999262.048340,75,0,0.002731,0.003960,11908548,10143723,0,0,34510,0,1,1 +1773582504.021725,0.75,4,3992.50,58.79,1390.22,2301.92,0.00,0.000000,0.000000,75,0,0.002505,0.003321,11908606,10143791,0,0,34512,0,1,1 +1773582509.018081,0.70,4,3992.50,58.80,1390.09,2302.06,0.00,16625.478285,18085.256562,1183914,1908298,0.002507,0.003333,11908664,10143860,0,0,34515,0,1,1 +1773582514.017473,3.51,4,3992.50,58.84,1388.58,2303.57,0.00,3518865560665.040039,3518865559206.201172,11,0,4.028090,0.022805,11910041,10144933,0,0,34517,0,1,1 +1773582519.022084,22.96,4,3992.50,60.05,1340.94,2351.18,0.00,2.010450,0.000195,246,2,32.168070,0.146191,11920398,10152869,0,0,34520,0,1,1 +1773582524.017506,4.27,4,3992.50,59.90,1347.62,2345.05,0.00,3521661535829.214355,3521661535831.229004,11,0,4.041103,0.027270,11921951,10154111,0,0,34522,0,1,1 +1773582529.022083,0.65,4,3992.50,59.39,1367.44,2325.21,0.00,16598.221057,18056.721520,1183914,1909577,0.002731,0.003961,11922016,10154192,0,0,34525,0,1,1 +1773582534.019829,0.75,4,3992.50,58.96,1384.35,2308.33,0.00,3520024154327.536621,3520024152866.989258,75,0,0.003392,0.004891,11922083,10154275,0,0,34527,0,1,1 +1773582539.018075,0.85,4,3992.50,58.77,1391.73,2300.95,0.00,16619.191725,18079.732054,1183914,1909717,0.002743,0.003974,11922149,10154357,0,0,34530,0,1,1 +1773582544.018618,0.75,4,3992.50,58.80,1390.54,2302.15,0.00,3518055371387.882324,3518055369928.013184,75,0,0.002733,0.003954,11922214,10154437,0,0,34532,0,1,1 +1773582549.018676,0.55,4,3992.50,58.77,1391.79,2300.90,0.00,16603.604628,18062.541295,1182425,1909490,0.002505,0.003331,11922272,10154506,0,0,34535,0,1,1 +1773582554.020856,1.20,4,3992.50,58.76,1390.02,2300.61,0.00,9.557357,10.739849,1183914,1909814,0.002732,0.003953,11922337,10154586,0,0,34537,0,1,1 +1773582559.021540,0.60,4,3992.50,58.83,1387.34,2303.29,0.00,3517955914089.411133,3517955912629.527832,11,0,0.002733,0.003964,11922402,10154667,0,0,34540,0,1,1 +1773582564.022119,0.75,4,3992.50,58.83,1387.36,2303.28,0.00,2.012072,0.000195,246,2,0.002741,0.003949,11922468,10154747,0,0,34542,0,1,1 +1773582569.022159,0.80,4,3992.50,58.83,1387.37,2303.27,0.00,16611.268681,18073.459348,1183914,1909922,0.004168,0.005721,11922549,10154853,0,0,34545,0,1,1 +1773582574.018562,0.90,4,3992.50,58.78,1389.14,2301.51,0.00,3520970346639.540527,3520970345178.298828,11,0,0.002736,0.003957,11922614,10154933,0,0,34547,0,1,1 +1773582579.019586,0.70,4,3992.50,58.82,1387.76,2302.89,0.00,16600.454479,18059.243895,1182425,1909663,0.003020,0.005028,11922684,10155028,0,0,34550,0,1,1 +1773582584.020701,7.99,4,3992.50,59.29,1379.05,2321.32,0.00,3517652263353.302246,3517652261894.539551,11,0,8.048487,0.038143,11925282,10156973,0,0,34552,0,1,1 +1773582589.019164,14.04,4,3992.50,59.72,1362.09,2338.25,0.00,16608.959169,18068.820266,1182425,1910209,18.125064,0.089498,11931264,10161478,0,0,34555,0,1,1 +1773582594.022372,9.53,4,3992.50,58.90,1394.08,2306.24,0.00,3516181327077.293945,3516181325618.637207,205,0,14.080989,0.063407,11935884,10164876,0,0,34557,0,1,1 +1773582599.022394,0.75,4,3992.50,58.91,1393.86,2306.46,0.00,1.475872,10.675148,251,273,0.002734,0.003952,11935949,10164956,0,0,34560,0,1,1 +1773582604.021479,0.95,4,3992.50,58.92,1393.38,2306.94,0.00,3519081727292.444824,3519081727283.244141,205,0,0.003669,0.004612,11936017,10165038,0,0,34562,0,1,1 +1773582609.018128,0.75,4,3992.50,58.89,1394.75,2305.56,0.00,1.833260,0.000195,246,2,0.002735,0.003967,11936082,10165119,0,0,34565,0,1,1 +1773582614.017556,1.15,4,3992.50,59.20,1383.79,2317.82,0.00,3518839429118.418457,3518839429120.377441,75,0,0.002796,0.003993,11936151,10165202,0,0,34567,0,1,1 +1773582619.020328,0.85,4,3992.50,59.20,1383.62,2317.73,0.00,16594.600586,18054.292196,1182425,1910987,0.002740,0.003957,11936217,10165283,0,0,34570,0,1,1 +1773582624.020390,0.80,4,3992.50,59.20,1383.64,2317.70,0.00,3518393588827.780273,3518393587367.170898,205,0,0.002505,0.003333,11936275,10165352,0,0,34572,0,1,1 +1773582629.017455,0.85,4,3992.50,59.20,1383.65,2317.69,0.00,3520503604382.802734,0.000000,75,0,0.002735,0.003967,11936340,10165433,0,0,34575,0,1,1 +1773582634.022292,0.80,4,3992.50,59.20,1383.67,2317.67,0.00,3515036970208.355957,0.000000,11,0,0.002731,0.003950,11936405,10165513,0,0,34577,0,1,1 +1773582639.022012,0.85,4,3992.50,59.14,1385.91,2315.43,0.00,16614.346718,18076.079006,1183914,1911373,0.002276,0.002685,11936456,10165569,0,0,34580,0,1,1 +1773582644.020767,1.00,4,3992.50,59.14,1385.68,2315.65,0.00,3519313521044.680664,3519313519582.666504,11,0,0.002742,0.004607,11936522,10165654,0,0,34582,0,1,1 +1773582649.022354,0.90,4,3992.50,58.96,1392.71,2308.43,0.00,0.180216,0.000000,205,0,0.002733,0.003963,11936587,10165735,0,0,34585,0,1,1 +1773582654.022153,9.83,4,3992.50,59.71,1363.20,2337.93,0.00,16604.342685,18065.387945,1182425,1911394,10.070808,0.051253,11939905,10168157,0,0,34587,0,1,1 +1773582659.021560,19.66,4,3992.50,59.15,1385.34,2315.74,0.00,3518854446075.457520,3518854444614.478027,11,0,30.193818,0.134678,11949775,10175474,0,0,34590,0,1,1 +1773582664.020166,1.00,4,3992.50,59.16,1384.88,2316.18,0.00,16608.484176,18070.318343,1182425,1912218,0.002734,0.003955,11949840,10175554,0,0,34592,0,1,1 +1773582669.021559,0.95,4,3992.50,59.16,1384.89,2316.19,0.00,3517456722322.739746,3517456720861.720215,11,0,0.002512,0.003338,11949899,10175624,0,0,34595,0,1,1 +1773582674.019826,1.15,4,3992.50,58.95,1389.74,2308.11,0.00,0.000000,0.000000,11,0,0.002735,0.003956,11949964,10175704,0,0,34597,0,1,1 +1773582679.017557,0.90,4,3992.50,58.95,1387.83,2307.99,0.00,0.053540,0.000000,75,0,0.002735,0.003966,11950029,10175785,0,0,34600,0,1,1 +1773582684.017434,0.80,4,3992.50,58.95,1387.85,2307.97,0.00,3518523947535.500977,0.000000,11,0,0.002734,0.003967,11950094,10175866,0,0,34602,0,1,1 +1773582689.022352,0.80,4,3992.50,58.99,1386.41,2309.41,0.00,0.053463,0.000000,75,0,0.002731,0.003960,11950159,10175947,0,0,34605,0,1,1 +1773582694.022000,0.65,4,3992.50,58.98,1386.44,2309.38,0.00,0.000000,0.000000,75,0,0.002742,0.003963,11950225,10176028,0,0,34607,0,1,1 +1773582699.021139,0.85,4,3992.50,58.84,1392.23,2303.59,0.00,16616.221331,18079.741015,1183914,1912887,0.002734,0.003965,11950290,10176109,0,0,34610,0,1,1 +1773582704.022357,1.10,4,3992.50,59.05,1388.64,2311.95,0.00,0.000000,0.041006,1183914,1912904,0.002733,0.003941,11950355,10176188,0,0,34612,0,1,1 +1773582709.021574,0.75,4,3992.50,59.01,1390.24,2310.25,0.00,0.000000,0.054208,1183914,1912970,0.002518,0.003988,11950414,10176262,0,0,34615,0,1,1 +1773582714.021955,0.80,4,3992.50,59.01,1390.26,2310.23,0.00,3518169306193.402344,3518169304730.204102,11,0,0.002733,0.003954,11950479,10176342,0,0,34617,0,1,1 +1773582719.018606,0.80,4,3992.50,59.01,1390.04,2310.46,0.00,0.053551,0.000000,75,0,0.002735,0.003967,11950544,10176423,0,0,34620,0,1,1 +1773582724.017465,12.17,4,3992.50,59.82,1358.23,2342.24,0.00,16617.152105,18081.019749,1183914,1913359,14.108425,0.075864,11955502,10180140,0,0,34622,0,1,1 +1773582729.022260,13.68,4,3992.50,58.80,1398.21,2302.21,0.00,3515066553475.528809,3515066552022.460938,251,273,22.102888,0.091771,11962383,10185315,0,0,34625,0,1,1 +1773582734.021660,4.62,4,3992.50,59.12,1384.02,2314.86,0.00,3518859550146.296875,3518859550137.223145,75,0,4.031728,0.021586,11963792,10186373,0,0,34627,0,1,1 +1773582739.017472,0.80,4,3992.50,59.12,1384.01,2314.77,0.00,1.960431,0.000195,246,2,0.002736,0.003968,11963857,10186454,0,0,34630,0,1,1 +1773582744.021565,0.55,4,3992.50,58.94,1391.16,2307.64,0.00,16597.813168,18063.189384,1183914,1914390,0.002731,0.003951,11963922,10186534,0,0,34632,0,1,1 +1773582749.017456,0.75,4,3992.50,58.87,1393.79,2304.99,0.00,3521331108801.399902,3521331107344.657715,251,273,0.002507,0.003333,11963980,10186603,0,0,34635,0,1,1 +1773582754.021978,0.75,4,3992.50,58.91,1392.34,2306.45,0.00,3515258180225.076172,3515258180215.885254,205,0,0.002731,0.003951,11964045,10186683,0,0,34637,0,1,1 +1773582759.022347,0.60,4,3992.50,58.91,1392.36,2306.43,0.00,3518177188850.670410,0.000000,75,0,0.002721,0.003964,11964109,10186764,0,0,34640,0,1,1 +1773582764.021707,0.90,4,3992.50,59.05,1386.73,2311.83,0.00,0.126774,0.000000,205,0,0.002734,0.003955,11964174,10186844,0,0,34642,0,1,1 +1773582769.017463,0.60,4,3992.50,58.90,1392.34,2306.10,0.00,3521425745017.180176,0.000000,11,0,0.002749,0.003968,11964240,10186925,0,0,34645,0,1,1 +1773582774.022287,0.55,4,3992.50,58.91,1392.14,2306.30,0.00,0.000000,0.000000,11,0,0.002739,0.004614,11964306,10187011,0,0,34647,0,1,1 +1773582779.022260,0.70,4,3992.50,58.91,1392.16,2306.29,0.00,0.000000,0.000000,11,0,0.004907,0.004960,11964415,10187117,0,0,34650,0,1,1 +1773582784.019360,0.70,4,3992.50,58.91,1392.16,2306.28,0.00,0.000000,0.000000,11,0,0.002506,0.003310,11964473,10187184,0,0,34652,0,1,1 +1773582789.018343,0.60,4,3992.50,58.91,1392.18,2306.27,0.00,1.656489,10.677367,251,273,0.002734,0.003965,11964538,10187265,0,0,34655,0,1,1 +1773582794.021632,0.90,4,3992.50,59.14,1383.03,2315.60,0.00,3516124230633.751953,3516124230624.685547,75,0,0.002732,0.003952,11964603,10187345,0,0,34657,0,1,1 +1773582799.020203,20.00,4,3992.50,59.57,1366.11,2332.30,0.00,16608.546842,18072.968925,1182425,1914876,26.170593,0.119670,11972972,10193584,0,0,34660,0,1,1 +1773582804.020478,9.14,4,3992.50,58.90,1392.30,2306.09,0.00,3518243305409.029297,3518243303945.159668,11,0,14.088310,0.061344,11977539,10196933,0,0,34662,0,1,1 +1773582809.021399,1.05,4,3992.50,58.93,1391.34,2307.05,0.00,0.000000,0.000000,11,0,0.007818,0.006877,11977699,10197083,0,0,34665,0,1,1 +1773582814.019955,0.65,4,3992.50,58.95,1390.38,2308.01,0.00,0.000000,0.000000,11,0,0.002742,0.003963,11977765,10197164,0,0,34667,0,1,1 +1773582819.017444,0.60,4,3992.50,58.95,1390.39,2307.99,0.00,2.013316,0.000195,246,2,0.002735,0.003966,11977830,10197245,0,0,34670,0,1,1 +1773582824.022369,1.00,4,3992.50,59.17,1381.86,2316.47,0.00,3514975136932.226562,3514975136934.056641,205,0,0.002781,0.004013,11977899,10197329,0,0,34672,0,1,1 +1773582829.021560,0.75,4,3992.50,59.12,1383.83,2314.55,0.00,16615.923138,18082.467475,1183914,1915959,0.002505,0.003331,11977957,10197398,0,0,34675,0,1,1 +1773582834.017438,0.60,4,3992.50,59.07,1385.82,2312.57,0.00,3521340223181.906738,3521340221723.596680,251,273,0.003406,0.004880,11978025,10197480,0,0,34677,0,1,1 +1773582839.021654,0.90,4,3992.50,59.09,1384.88,2313.51,0.00,0.355852,3515473107488.876953,246,2,0.002731,0.004283,11978090,10197563,0,0,34680,0,1,1 +1773582844.018588,0.70,4,3992.50,59.08,1385.12,2313.25,0.00,3520595895348.021484,3520595895350.035156,11,0,0.002723,0.004279,11978154,10197645,0,0,34682,0,1,1 +1773582849.017643,0.60,4,3992.50,59.08,1385.14,2313.24,0.00,2.012685,0.000195,246,2,0.002734,0.003952,11978219,10197725,0,0,34685,0,1,1 +1773582854.021923,0.90,4,3992.50,59.09,1385.73,2313.43,0.00,16587.643985,18053.614104,1182425,1915846,0.002731,0.003951,11978284,10197805,0,0,34687,0,1,1 +1773582859.022330,0.70,4,3992.50,59.06,1386.27,2312.34,0.00,3518150739520.724121,3518150738055.630371,11,0,0.002741,0.003985,11978350,10197888,0,0,34690,0,1,1 +1773582864.019360,0.55,4,3992.50,59.05,1386.54,2312.07,0.00,16623.288205,18090.553344,1183914,1916200,0.002506,0.003323,11978408,10197956,0,0,34692,0,1,1 +1773582869.022139,1.45,4,3992.50,58.99,1389.14,2309.48,0.00,3516482878075.135254,3516482876609.556152,11,0,0.008799,0.007593,11978581,10198123,0,0,34695,0,1,1 +1773582874.019912,18.82,4,3992.50,59.85,1355.16,2343.42,0.00,2.013201,0.000195,246,2,26.184129,0.126099,11987292,10204654,0,0,34697,0,1,1 +1773582879.020491,9.61,4,3992.50,59.17,1381.70,2316.82,0.00,3518029650071.468262,3518029650073.480469,11,0,14.079259,0.061835,11991680,10208125,0,0,34700,0,1,1 +1773582884.017454,0.95,4,3992.50,59.38,1376.44,2324.86,0.00,16613.944965,18081.000741,1182425,1917011,0.002506,0.003323,11991738,10208193,0,0,34702,0,1,1 +1773582889.017472,0.65,4,3992.50,59.38,1376.52,2324.80,0.00,9.561489,10.894492,1183914,1917496,0.002701,0.003850,11991802,10208272,0,0,34705,0,1,1 +1773582894.017579,0.65,4,3992.50,59.31,1379.34,2322.00,0.00,3518362263821.682617,3518362262352.204102,246,2,0.002734,0.003954,11991867,10208352,0,0,34707,0,1,1 +1773582899.017904,0.60,4,3992.50,59.31,1379.22,2322.11,0.00,3518208261478.571777,3518208261480.583984,11,0,0.002741,0.003972,11991933,10208434,0,0,34710,0,1,1 +1773582904.017477,0.65,4,3992.50,59.31,1379.38,2321.96,0.00,16605.271834,18072.004561,1182425,1917395,0.003656,0.004934,11992000,10208518,0,0,34712,0,1,1 +1773582909.018142,0.60,4,3992.50,58.95,1393.26,2308.07,0.00,3517969367084.161133,3517969365617.748535,11,0,0.002733,0.004286,11992065,10208601,0,0,34715,0,1,1 +1773582914.021597,1.00,4,3992.50,59.24,1382.93,2319.36,0.00,0.053479,0.000000,75,0,0.002794,0.004002,11992134,10208685,0,0,34717,0,1,1 +1773582919.019361,0.65,4,3992.50,59.24,1382.69,2319.32,0.00,0.126815,0.000000,205,0,0.002735,0.003966,11992199,10208766,0,0,34720,0,1,1 +1773582924.018637,0.65,4,3992.50,59.24,1382.45,2319.54,0.00,16615.639713,18083.954118,1183914,1917819,0.002505,0.003309,11992257,10208833,0,0,34722,0,1,1 +1773582929.017451,0.70,4,3992.50,59.18,1385.12,2316.89,0.00,3519272127616.717773,3519272126148.267578,205,0,0.002747,0.003978,11992323,10208915,0,0,34725,0,1,1 +1773582934.017598,0.65,4,3992.50,59.20,1384.05,2317.95,0.00,16603.183912,18070.173320,1182425,1917590,0.002734,0.003954,11992388,10208995,0,0,34727,0,1,1 +1773582939.017456,6.57,4,3992.50,59.70,1364.48,2337.54,0.00,3518537089880.695801,3518537088413.801758,11,0,4.032002,0.024288,11993727,10209984,0,0,34730,0,1,1 +1773582944.017421,19.88,4,3992.50,60.09,1346.70,2352.64,0.00,2.012319,0.000195,246,2,32.203797,0.147488,12004363,10217988,0,0,34732,0,1,1 +1773582949.017461,3.37,4,3992.50,59.53,1368.37,2330.92,0.00,3518408905392.588867,3518408905394.601562,11,0,4.030255,0.021764,12005852,10219105,0,0,34735,0,1,1 +1773582954.017461,0.60,4,3992.50,59.40,1373.50,2325.78,0.00,16613.415454,18082.192470,1183914,1918954,0.002734,0.003954,12005917,10219185,0,0,34737,0,1,1 +1773582959.018042,1.55,4,3992.50,58.85,1395.18,2304.19,0.00,3518028073045.562012,3518028071576.902344,75,0,0.002733,0.003964,12005982,10219266,0,0,34740,0,1,1 +1773582964.020701,0.60,4,3992.50,58.88,1394.19,2305.16,0.00,3516567365617.230957,0.000000,11,0,0.002732,0.003952,12006047,10219346,0,0,34742,0,1,1 +1773582969.022327,0.70,4,3992.50,58.79,1397.66,2301.70,0.00,1.655614,10.671725,251,273,0.002730,0.003924,12006121,10219426,0,0,34745,0,1,1 +1773582974.017580,0.95,4,3992.50,58.99,1388.80,2309.55,0.00,0.000000,0.000000,251,273,0.002750,0.003515,12006196,10219497,0,0,34747,0,1,1 +1773582979.020907,0.90,4,3992.50,58.99,1388.64,2309.49,0.00,3516096932736.960938,3516096932727.948242,11,0,0.002710,0.003378,12006269,10219570,0,0,34750,0,1,1 +1773582984.021561,0.65,4,3992.50,58.99,1388.53,2309.59,0.00,0.180250,0.000000,205,0,0.002432,0.002705,12006331,10219627,0,0,34752,0,1,1 +1773582989.019407,0.65,4,3992.50,58.94,1390.36,2307.76,0.00,1.476515,10.679795,251,273,0.002834,0.003790,12006412,10219704,0,0,34755,0,1,1 +1773582994.018187,0.90,4,3992.50,59.00,1388.24,2309.89,0.00,3519296444404.585938,3519296444395.564941,11,0,0.004378,0.003863,12006517,10219787,0,0,34757,0,1,1 +1773582999.021941,2.01,4,3992.50,58.75,1397.74,2300.37,0.00,2.010795,0.000195,246,2,0.018792,0.009683,12006912,10220025,0,0,34760,0,1,1 +1773583004.022207,1.96,4,3992.50,58.99,1386.96,2309.62,0.00,3518250215289.598633,3518250215291.557129,75,0,0.018486,0.009451,12007294,10220258,0,0,34762,0,1,1 +1773583009.021466,4.52,4,3992.50,59.23,1377.45,2318.92,0.00,0.126777,0.000000,205,0,0.028116,0.015349,12007744,10220563,0,0,34765,0,1,1 +1773583014.021606,9.62,4,3992.50,59.38,1371.46,2324.94,0.00,16603.210689,18072.151335,1182425,1919870,14.079798,0.121242,12019543,10228492,0,0,34767,0,1,1 +1773583019.021553,11.29,4,3992.50,59.83,1354.10,2342.28,0.00,3518473986369.211914,3518473984900.395020,11,0,16.327862,0.145313,12033243,10238178,0,0,34770,0,1,1 +1773583024.021438,5.65,4,3992.50,58.72,1397.27,2299.07,0.00,0.000000,0.000000,11,0,10.102460,0.092694,12041818,10244387,0,0,34772,0,1,1 +1773583029.021649,0.95,4,3992.50,58.66,1399.48,2296.84,0.00,16612.714191,18082.961176,1183914,1920830,0.002756,0.003382,12041894,10244459,0,0,34775,0,1,1 +1773583034.022262,1.05,4,3992.50,58.92,1388.13,2306.78,0.00,3518005665956.842285,3518005664495.731934,251,273,0.002967,0.004366,12041975,10244537,0,0,34777,0,1,1 +1773583039.021578,0.75,4,3992.50,58.91,1388.24,2306.64,0.00,16604.470545,18065.281134,1182426,1920793,0.002733,0.003479,12042049,10244606,0,0,34780,0,1,1 +1773583044.017584,0.55,4,3992.50,58.91,1388.25,2306.63,0.00,0.000000,0.125491,1182426,1920799,0.002750,0.003311,12042124,10244673,0,0,34782,0,1,1 +1773583049.017624,0.60,4,3992.50,58.91,1388.26,2306.61,0.00,3518409061191.538086,3518409059721.794922,11,0,0.002753,0.003345,12042200,10244743,0,0,34785,0,1,1 +1773583054.017683,0.60,4,3992.50,58.91,1388.26,2306.61,0.00,16603.658094,18073.596316,1182426,1920974,0.002760,0.003195,12042276,10244810,0,0,34787,0,1,1 +1773583059.021815,0.70,4,3992.50,58.91,1388.27,2306.59,0.00,3515532340953.676270,3515532339493.945801,251,273,0.002909,0.003948,12042362,10244890,0,0,34790,0,1,1 +1773583064.021832,1.00,4,3992.50,58.95,1382.91,2308.18,0.00,0.000000,0.000000,251,273,0.002727,0.003321,12042435,10244958,0,0,34792,0,1,1 +1773583069.022364,0.55,4,3992.50,58.95,1382.93,2308.11,0.00,16609.989797,18072.011771,1183915,1921348,0.001943,0.002935,12042494,10245017,0,0,34795,0,1,1 +1773583074.017466,0.70,4,3992.50,58.95,1383.07,2307.98,0.00,3521887516440.645996,3521887514968.006348,11,0,0.002722,0.003493,12042567,10245086,0,0,34797,0,1,1 +1773583079.017575,0.75,4,3992.50,58.95,1382.85,2308.20,0.00,2.012261,0.000195,246,2,0.005268,0.005609,12042692,10245193,0,0,34800,0,1,1 +1773583084.017558,0.65,4,3992.50,58.86,1386.61,2304.44,0.00,3518449484751.439941,3518449484753.452148,11,0,0.002742,0.003505,12042764,10245265,0,0,34802,0,1,1 +1773583089.017454,5.18,4,3992.50,58.64,1395.01,2296.01,0.00,1.656187,10.675416,251,273,2.048182,0.030621,12044898,10246799,0,0,34805,0,1,1 +1773583094.018569,6.69,4,3992.50,59.06,1387.56,2312.45,0.00,3517653253420.996094,3517653253411.979492,11,0,4.055892,0.041074,12048317,10249141,0,0,34807,0,1,1 +1773583099.021534,9.57,4,3992.50,59.39,1374.70,2325.20,0.00,0.180167,0.000000,205,0,12.759778,0.116308,12059433,10256898,0,0,34810,0,1,1 +1773583104.017956,11.04,4,3992.50,59.13,1384.70,2315.15,0.00,0.000000,0.000000,205,0,17.621850,0.156727,12073657,10267481,0,0,34812,0,1,1 +1773583109.022244,3.42,4,3992.50,59.44,1372.81,2327.04,0.00,16589.448895,18059.549471,1182426,1922408,4.054433,0.040138,12077203,10270103,0,0,34815,0,1,1 +1773583114.017460,0.55,4,3992.50,59.24,1380.47,2319.38,0.00,3521806465785.472168,3521806464312.702148,205,0,0.001975,0.002946,12077264,10270162,0,0,34817,0,1,1 +1773583119.017479,0.65,4,3992.50,59.22,1381.20,2318.66,0.00,16603.611523,18075.072514,1182426,1922523,0.002705,0.003318,12077336,10270230,0,0,34820,0,1,1 +1773583124.022317,1.05,4,3992.50,59.13,1383.79,2315.18,0.00,3515036246376.446777,3515036244906.583008,11,0,0.002735,0.003209,12077410,10270298,0,0,34822,0,1,1 +1773583129.021440,0.60,4,3992.50,59.15,1382.88,2315.86,0.00,0.180305,0.000000,205,0,0.002218,0.003660,12077478,10270370,0,0,34825,0,1,1 +1773583134.021672,0.70,4,3992.50,59.15,1382.89,2315.85,0.00,3518274245938.275879,0.000000,75,0,0.002895,0.003554,12077556,10270444,0,0,34827,0,1,1 +1773583139.017441,0.95,4,3992.50,59.15,1382.92,2315.83,0.00,16627.431419,18101.443996,1183915,1922940,0.003505,0.004440,12077640,10270518,0,0,34830,0,1,1 +1773583144.020876,0.65,4,3992.50,59.17,1382.20,2316.55,0.00,3516021865973.397461,3516021864499.685547,246,2,0.002473,0.002744,12077705,10270578,0,0,34832,0,1,1 +1773583149.021057,0.70,4,3992.50,59.17,1381.97,2316.78,0.00,3518309454844.566895,10.674612,251,273,0.002979,0.003937,12077788,10270657,0,0,34835,0,1,1 +1773583154.017575,1.15,4,3992.50,59.14,1376.30,2315.38,0.00,3520889594393.745117,3520889594384.720215,11,0,0.002750,0.003343,12077863,10270725,0,0,34837,0,1,1 +1773583159.022180,0.70,4,3992.50,59.16,1375.61,2316.07,0.00,16598.127175,18069.754878,1183915,1923231,0.002678,0.003169,12077933,10270791,0,0,34840,0,1,1 +1773583164.017467,0.65,4,3992.50,59.16,1375.61,2316.05,0.00,0.000000,0.035483,1183915,1923274,0.002582,0.003350,12078006,10270861,0,0,34842,0,1,1 +1773583169.021978,3.11,4,3992.50,58.52,1400.38,2291.33,0.00,3515265950635.632812,3515265949161.931641,246,2,0.013400,0.010504,12078272,10271068,0,0,34845,0,1,1 +1773583174.019499,9.83,4,3992.50,58.97,1382.74,2308.90,0.00,3520182228687.337402,3520182228689.351074,11,0,10.150642,0.101767,12087129,10277340,0,0,34847,0,1,1 +1773583179.021503,11.61,4,3992.50,59.82,1349.62,2342.01,0.00,0.053494,0.000000,75,0,16.438064,0.144232,12101145,10286975,0,0,34850,0,1,1 +1773583184.018430,8.98,4,3992.50,59.54,1362.26,2331.18,0.00,16614.013069,18087.562801,1182426,1924048,13.943150,0.119994,12112524,10295067,0,0,34852,0,1,1 +1773583189.022108,1.10,4,3992.50,59.30,1371.63,2321.80,0.00,3515850810071.849121,3515850808600.340820,11,0,0.005120,0.005587,12112657,10295185,0,0,34855,0,1,1 +1773583194.022056,0.65,4,3992.50,59.31,1371.40,2322.03,0.00,16604.024374,18076.845639,1182426,1924258,0.002782,0.003341,12112735,10295255,0,0,34857,0,1,1 +1773583199.017562,0.65,4,3992.50,59.31,1371.42,2322.02,0.00,3521602915386.248047,3521602913912.062988,75,0,0.002751,0.003321,12112810,10295323,0,0,34860,0,1,1 +1773583204.018623,1.30,4,3992.50,59.29,1372.16,2321.28,0.00,1.602297,10.672929,251,273,0.003710,0.004002,12112890,10295395,0,0,34862,0,1,1 +1773583209.021667,0.85,4,3992.50,59.09,1379.79,2313.64,0.00,0.000000,0.000000,251,273,0.002750,0.003316,12112965,10295463,0,0,34865,0,1,1 +1773583214.017462,1.10,4,3992.50,59.12,1380.60,2314.86,0.00,3521398617788.418457,3521398617779.392090,11,0,0.003087,0.004159,12113054,10295547,0,0,34867,0,1,1 +1773583219.021821,0.95,4,3992.50,59.12,1380.63,2314.77,0.00,0.180116,0.000000,205,0,0.002725,0.003337,12113128,10295617,0,0,34870,0,1,1 +1773583224.021960,0.75,4,3992.50,59.12,1380.71,2314.71,0.00,1.831980,0.000195,246,2,0.002561,0.003193,12113199,10295684,0,0,34872,0,1,1 +1773583229.022288,0.90,4,3992.50,58.61,1400.65,2294.78,0.00,16610.314805,18086.799306,1183915,1924966,0.002733,0.003318,12113273,10295752,0,0,34875,0,1,1 +1773583234.018642,0.80,4,3992.50,58.67,1398.52,2296.92,0.00,3521004718472.338867,3521004718471.263184,1182426,1924730,0.002809,0.004000,12113352,10295826,0,0,34877,0,1,1 +1773583239.017595,0.90,4,3992.50,58.64,1399.73,2295.70,0.00,0.000000,0.031354,1182426,1924766,0.002198,0.003542,12113420,10295895,0,0,34880,0,1,1 +1773583244.021839,1.15,4,3992.50,58.88,1394.62,2305.43,0.00,3515453432195.501465,3515453430723.045410,205,0,0.002744,0.003324,12113495,10295963,0,0,34882,0,1,1 +1773583249.021752,3.31,4,3992.50,58.71,1401.51,2298.50,0.00,1.475904,10.675380,251,273,0.018815,0.012249,12113864,10296217,0,0,34885,0,1,1 +1773583254.021689,7.04,4,3992.50,58.95,1392.12,2307.91,0.00,3518481744416.125000,3518481744407.052734,75,0,8.106857,0.076895,12120719,10301284,0,0,34887,0,1,1 +1773583259.017435,6.73,4,3992.50,59.69,1363.01,2336.99,0.00,16627.508813,18103.826006,1183915,1925631,6.210118,0.061023,12126186,10305098,0,0,34890,0,1,1 +1773583264.017476,10.54,4,3992.50,59.60,1366.52,2333.43,0.00,3518408089120.929688,3518408089120.023926,1182426,1925796,18.102359,0.159554,12141159,10315898,0,0,34892,0,1,1 +1773583269.022062,5.63,4,3992.50,59.17,1383.51,2316.45,0.00,9.552763,10.857718,1183915,1926221,8.100828,0.076251,12148093,10320939,0,0,34895,0,1,1 +1773583274.017500,1.35,4,3992.50,59.21,1381.77,2318.25,0.00,3521649986511.191406,3521649985032.421875,246,2,0.002719,0.003342,12148166,10321008,0,0,34897,0,1,1 +1773583279.017994,0.95,4,3992.50,59.15,1384.17,2315.84,0.00,3518089965661.958984,3518089965663.791016,205,0,0.002737,0.003338,12148241,10321078,0,0,34900,0,1,1 +1773583284.017452,0.90,4,3992.50,59.15,1384.19,2315.83,0.00,16615.034499,18091.200897,1183915,1926409,0.002721,0.003308,12148314,10321145,0,0,34902,0,1,1 +1773583289.022081,0.80,4,3992.50,58.95,1391.85,2308.17,0.00,3515182997551.082031,3515182996074.610352,246,2,0.002558,0.003194,12148385,10321213,0,0,34905,0,1,1 +1773583294.021559,0.85,4,3992.50,58.97,1391.16,2308.85,0.00,3518805013382.914062,3518805013384.746582,205,0,0.002971,0.003961,12148467,10321293,0,0,34907,0,1,1 +1773583299.022070,0.95,4,3992.50,58.93,1392.77,2307.25,0.00,16611.534947,18087.575173,1183915,1926542,0.002448,0.003764,12148531,10321361,0,0,34910,0,1,1 +1773583304.022297,1.05,4,3992.50,59.05,1387.43,2312.11,0.00,3518278000043.473633,3518277998565.517090,246,2,0.002111,0.003143,12148593,10321425,0,0,34912,0,1,1 +1773583309.021492,0.75,4,3992.50,58.86,1394.24,2304.41,0.00,3519003208876.306152,3519003208878.318848,11,0,0.002693,0.003331,12148664,10321494,0,0,34915,0,1,1 +1773583314.017435,0.65,4,3992.50,58.86,1394.00,2304.64,0.00,16617.337268,18093.680775,1182426,1926531,0.002171,0.003106,12148730,10321556,0,0,34917,0,1,1 +1773583319.021460,1.45,4,3992.50,58.79,1396.99,2301.67,0.00,3515607427829.749512,3515607426355.736816,75,0,0.002984,0.003922,12148812,10321634,0,0,34920,0,1,1 +1773583324.018657,0.65,4,3992.50,58.82,1395.54,2303.12,0.00,3520410421454.999023,0.000000,11,0,0.002733,0.003310,12148886,10321701,0,0,34922,0,1,1 +1773583329.021999,0.80,4,3992.50,58.82,1395.55,2303.11,0.00,2.010961,0.000195,246,2,0.002717,0.003328,12148959,10321770,0,0,34925,0,1,1 +1773583334.020548,3.71,4,3992.50,58.97,1393.20,2308.89,0.00,3519458726849.413086,3519458726851.426270,11,0,0.020756,0.011739,12149366,10322036,0,0,34927,0,1,1 +1773583339.017967,4.73,4,3992.50,58.90,1395.78,2306.04,0.00,0.000000,0.000000,11,0,6.084686,0.056964,12154509,10325629,0,0,34930,0,1,1 +1773583344.020519,12.02,4,3992.50,59.59,1368.71,2333.07,0.00,16595.381925,18070.533145,1182426,1927461,14.295963,0.130721,12166685,10334263,0,0,34932,0,1,1 +1773583349.020400,11.22,4,3992.50,60.08,1349.40,2352.29,0.00,3518521362347.376465,3518521360871.437012,11,0,18.100106,0.160829,12181605,10345218,0,0,34935,0,1,1 +1773583354.017504,2.46,4,3992.50,59.61,1367.88,2333.84,0.00,16613.474113,18090.352059,1182426,1927815,2.036216,0.024166,12183512,10346641,0,0,34937,0,1,1 +1773583359.017459,0.55,4,3992.50,59.37,1377.18,2324.54,0.00,3518468959129.847168,3518468957662.830078,251,273,0.002729,0.003318,12183586,10346709,0,0,34940,0,1,1 +1773583364.017501,1.05,4,3992.50,59.58,1368.73,2332.69,0.00,3518407902654.939941,3518407902645.740723,205,0,0.002126,0.003727,12183648,10346774,0,0,34942,0,1,1 +1773583369.018070,0.75,4,3992.50,59.39,1375.92,2325.43,0.00,16601.784743,18078.327188,1182426,1928016,0.002978,0.003964,12183730,10346855,0,0,34945,0,1,1 +1773583374.017561,0.80,4,3992.50,59.40,1375.70,2325.66,0.00,0.000000,0.003516,1182426,1928023,0.002738,0.003308,12183804,10346922,0,0,34947,0,1,1 +1773583379.020788,0.95,4,3992.50,59.41,1375.49,2325.88,0.00,3516167953122.169434,3516167951646.587891,11,0,0.003898,0.003984,12183904,10347007,0,0,34950,0,1,1 +1773583384.021955,0.95,4,3992.50,59.41,1375.51,2325.86,0.00,0.053503,0.000000,75,0,0.004536,0.004704,12184008,10347094,0,0,34952,0,1,1 +1773583389.018442,0.85,4,3992.50,59.41,1375.52,2325.85,0.00,1.603763,10.682700,251,273,0.002701,0.003359,12184080,10347165,0,0,34955,0,1,1 +1773583394.022280,1.10,4,3992.50,59.54,1372.55,2331.11,0.00,3515738546255.278809,3515738546246.267090,11,0,0.003007,0.003939,12184164,10347244,0,0,34957,0,1,1 +1773583399.019817,1.00,4,3992.50,59.56,1371.73,2331.80,0.00,16612.037858,18089.667564,1182426,1928421,0.002747,0.003332,12184239,10347313,0,0,34960,0,1,1 +1773583404.022169,0.85,4,3992.50,59.20,1385.58,2317.97,0.00,9.557028,10.711954,1183915,1928734,0.002548,0.003161,12184309,10347378,0,0,34962,0,1,1 +1773583409.022170,0.75,4,3992.50,59.21,1385.23,2318.33,0.00,3518436200774.462891,3518436199296.406250,11,0,0.002777,0.003331,12184386,10347447,0,0,34965,0,1,1 +1773583414.018374,4.72,4,3992.50,59.64,1368.42,2335.13,0.00,0.180410,0.000000,205,0,0.041671,0.014355,12184845,10347737,0,0,34967,0,1,1 +1773583419.022066,5.83,4,3992.50,58.87,1398.75,2304.79,0.00,3515840961439.153809,0.000000,75,0,8.082664,0.073955,12191692,10352554,0,0,34970,0,1,1 +1773583424.021180,7.50,4,3992.50,59.95,1359.35,2347.05,0.00,0.126780,0.000000,205,0,8.155440,0.073870,12198628,10357401,0,0,34972,0,1,1 +1773583429.022078,11.02,4,3992.50,59.18,1389.16,2317.18,0.00,3517805717728.828125,0.000000,75,0,18.169775,0.159304,12213735,10368104,0,0,34975,0,1,1 +1773583434.019072,5.33,4,3992.50,59.24,1387.06,2319.31,0.00,16623.354876,18103.146675,1183915,1929969,6.086961,0.057332,12218993,10371851,0,0,34977,0,1,1 +1773583439.019704,1.00,4,3992.50,59.27,1385.84,2320.52,0.00,3517992890875.677734,3517992889396.962402,75,0,0.004067,0.004505,12219086,10371929,0,0,34980,0,1,1 +1773583444.018572,0.80,4,3992.50,59.13,1391.20,2315.16,0.00,3519234022588.992188,0.000000,11,0,0.002800,0.003704,12219163,10372002,0,0,34982,0,1,1 +1773583449.021712,0.80,4,3992.50,59.13,1391.17,2315.20,0.00,0.000000,0.000000,11,0,0.002953,0.003585,12219245,10372078,0,0,34985,0,1,1 +1773583454.022053,1.25,4,3992.50,59.34,1378.61,2323.16,0.00,16612.281274,18091.377940,1183915,1930025,0.002745,0.003320,12219320,10372146,0,0,34987,0,1,1 +1773583459.018202,0.65,4,3992.50,59.34,1378.61,2323.16,0.00,3521149277923.311523,3521149276442.792969,205,0,0.002591,0.003187,12219393,10372213,0,0,34990,0,1,1 +1773583464.019171,0.90,4,3992.50,59.34,1378.39,2323.38,0.00,1.831676,0.000195,246,2,0.002748,0.003334,12219468,10372282,0,0,34992,0,1,1 +1773583469.017492,0.85,4,3992.50,59.34,1378.39,2323.36,0.00,3519619325827.712402,10.678587,251,273,0.004624,0.005600,12219581,10372388,0,0,34995,0,1,1 +1773583474.017482,0.85,4,3992.50,59.34,1378.41,2323.35,0.00,3518444164141.967285,3518444164132.948730,11,0,0.002008,0.003127,12219645,10372452,0,0,34997,0,1,1 +1773583479.017473,0.85,4,3992.50,59.34,1378.43,2323.34,0.00,0.180274,0.000000,205,0,0.003065,0.003885,12219727,10372532,0,0,35000,0,1,1 +1773583484.022264,0.85,4,3992.50,59.34,1378.45,2323.31,0.00,16587.780470,18065.004843,1182426,1930089,0.002146,0.003080,12219791,10372593,0,0,35002,0,1,1 +1773583489.021837,1.15,4,3992.50,58.92,1400.67,2307.00,0.00,3518737101985.426270,3518737100515.860352,251,273,0.002652,0.003875,12219861,10372665,0,0,35005,0,1,1 +1773583494.021638,0.80,4,3992.50,58.73,1408.42,2299.29,0.00,16602.859947,18072.401363,1182426,1930117,0.002734,0.003983,12219935,10372738,0,0,35007,0,1,1 +1773583499.021967,5.22,4,3992.50,58.94,1399.88,2307.81,0.00,3518205598655.762207,3518205597177.357422,11,0,2.048253,0.032526,12222068,10374261,0,0,35010,0,1,1 +1773583504.022361,11.96,4,3992.50,59.55,1376.02,2331.64,0.00,0.000000,0.000000,11,0,16.203943,0.144894,12235746,10383874,0,0,35012,0,1,1 +1773583509.018425,8.41,4,3992.50,59.31,1385.53,2322.11,0.00,0.000000,0.000000,11,0,12.165706,0.113201,12245995,10391260,0,0,35015,0,1,1 +1773583514.018637,7.10,4,3992.50,59.83,1356.39,2342.50,0.00,16612.713570,18092.908643,1183915,1931312,10.133383,0.093198,12254736,10397509,0,0,35017,0,1,1 +1773583519.022456,1.00,4,3992.50,59.37,1373.80,2324.45,0.00,3515751454887.853516,3515751453408.545410,205,0,0.002443,0.002695,12254799,10397566,0,0,35020,0,1,1 +1773583524.017608,0.75,4,3992.50,59.26,1378.02,2320.23,0.00,16629.360935,18111.877943,1183915,1931813,0.001909,0.002946,12254856,10397625,0,0,35022,0,1,1 +1773583529.022300,1.00,4,3992.50,59.26,1377.97,2320.27,0.00,0.000000,0.002732,1183915,1931820,0.002699,0.003316,12254928,10397693,0,0,35025,0,1,1 +1773583534.018658,0.80,4,3992.50,59.25,1378.62,2319.62,0.00,0.000000,0.019839,1183915,1931830,0.002781,0.003184,12255005,10397759,0,0,35027,0,1,1 +1773583539.021574,0.80,4,3992.50,59.25,1378.62,2319.62,0.00,3516386305670.077637,3516386304189.965820,75,0,0.002253,0.003869,12255076,10397835,0,0,35030,0,1,1 +1773583544.022313,1.20,4,3992.50,59.34,1379.62,2323.22,0.00,16610.908205,18091.768453,1183915,1931875,0.002951,0.003360,12255158,10397906,0,0,35032,0,1,1 +1773583549.021793,0.85,4,3992.50,59.15,1386.79,2316.04,0.00,3518803422294.382324,3518803420811.190430,246,2,0.002784,0.003318,12255236,10397974,0,0,35035,0,1,1 +1773583554.018378,0.75,4,3992.50,59.16,1386.58,2316.26,0.00,0.000000,0.000000,246,2,0.002744,0.003318,12255311,10398042,0,0,35037,0,1,1 +1773583559.020094,0.90,4,3992.50,59.06,1390.48,2312.37,0.00,16605.705154,18088.348550,1183915,1931998,0.002749,0.003973,12255386,10398115,0,0,35040,0,1,1 +1773583564.019815,0.80,4,3992.50,59.07,1390.27,2312.57,0.00,0.000000,0.002735,1183915,1932004,0.003041,0.003943,12255472,10398194,0,0,35042,0,1,1 +1773583569.021815,0.85,4,3992.50,58.93,1395.56,2307.29,0.00,3517030007463.274414,3517030005991.739258,251,273,0.002516,0.003342,12255531,10398264,0,0,35045,0,1,1 +1773583574.021888,1.05,4,3992.50,58.96,1395.83,2308.45,0.00,16611.517697,18083.698623,1183915,1932064,0.002734,0.003942,12255596,10398343,0,0,35047,0,1,1 +1773583579.021827,14.63,4,3992.50,58.88,1398.65,2305.45,0.00,3518480527988.711426,3518480526516.491211,251,273,16.115271,0.083277,12261037,10402397,0,0,35050,0,1,1 +1773583584.017579,16.06,4,3992.50,59.78,1363.56,2340.46,0.00,3521428954352.583984,3521428954343.557617,11,0,24.164782,0.103210,12268733,10408083,0,0,35052,0,1,1 +1773583589.017742,0.85,4,3992.50,59.59,1371.02,2333.04,0.00,16603.312161,18083.969895,1182426,1932765,0.002329,0.003185,12268788,10408150,0,0,35055,0,1,1 +1773583594.019604,0.85,4,3992.50,59.20,1386.14,2317.91,0.00,0.000000,0.425330,1182426,1933000,0.002741,0.003948,12268854,10408230,0,0,35057,0,1,1 +1773583599.022008,0.90,4,3992.50,59.14,1388.40,2315.64,0.00,3516746543106.021973,3516746541625.602051,11,0,0.002491,0.003342,12268911,10408300,0,0,35060,0,1,1 +1773583604.017580,1.05,4,3992.50,59.49,1372.84,2329.14,0.00,0.000000,0.000000,11,0,0.002736,0.003958,12268976,10408380,0,0,35062,0,1,1 +1773583609.020109,1.05,4,3992.50,59.42,1374.70,2326.61,0.00,16605.016016,18086.845156,1183915,1933556,0.002732,0.003962,12269041,10408461,0,0,35065,0,1,1 +1773583614.017471,0.75,4,3992.50,59.33,1378.57,2322.73,0.00,3520294517964.649902,3520294516490.312500,251,273,0.002735,0.003956,12269106,10408541,0,0,35067,0,1,1 +1773583619.022105,0.90,4,3992.50,59.17,1384.78,2316.52,0.00,0.000000,0.000000,251,273,0.002731,0.003961,12269171,10408622,0,0,35070,0,1,1 +1773583624.021974,0.80,4,3992.50,59.17,1384.55,2316.75,0.00,3518528792667.488281,3518528792658.469238,11,0,0.002734,0.004598,12269236,10408706,0,0,35072,0,1,1 +1773583629.022473,0.90,4,3992.50,59.17,1384.56,2316.74,0.00,2.012104,0.000195,246,2,0.002733,0.003964,12269301,10408787,0,0,35075,0,1,1 +1773583634.021839,1.05,4,3992.50,59.17,1383.80,2316.70,0.00,3518883552516.362793,3518883552518.321777,75,0,0.002513,0.003329,12269360,10408856,0,0,35077,0,1,1 +1773583639.022332,0.85,4,3992.50,59.16,1384.28,2316.18,0.00,3518090263968.348633,0.000000,11,0,0.002733,0.003964,12269425,10408937,0,0,35080,0,1,1 +1773583644.018592,0.90,4,3992.50,59.12,1385.69,2314.78,0.00,0.180408,0.000000,205,0,0.002748,0.003970,12269491,10409018,0,0,35082,0,1,1 +1773583649.021543,18.90,4,3992.50,60.34,1337.94,2362.50,0.00,3516361849306.469727,0.000000,11,0,26.150226,0.119564,12277976,10415228,0,0,35085,0,1,1 +1773583654.021631,7.33,4,3992.50,60.22,1342.65,2357.72,0.00,1.656123,10.675008,251,273,10.066856,0.047542,12281438,10417863,0,0,35087,0,1,1 +1773583659.021488,4.37,4,3992.50,59.13,1385.45,2314.96,0.00,0.356163,3518537664530.262695,246,2,4.030149,0.023613,12282828,10418933,0,0,35090,0,1,1 +1773583664.022245,1.10,4,3992.50,58.84,1396.65,2303.76,0.00,16608.890231,18094.229361,1183915,1934765,0.002733,0.003941,12282893,10419012,0,0,35092,0,1,1 +1773583669.022132,0.80,4,3992.50,58.87,1395.45,2304.95,0.00,3518516006039.593750,3518516006038.593750,1182426,1934606,0.002505,0.003356,12282951,10419083,0,0,35095,0,1,1 +1773583674.022477,0.80,4,3992.50,58.87,1395.47,2304.94,0.00,3518194863239.000000,3518194861756.550781,11,0,0.002733,0.003954,12283016,10419163,0,0,35097,0,1,1 +1773583679.018564,0.90,4,3992.50,58.82,1397.38,2303.02,0.00,0.053558,0.000000,75,0,0.003841,0.004571,12283103,10419257,0,0,35100,0,1,1 +1773583684.018614,0.90,4,3992.50,58.82,1397.34,2303.06,0.00,1.602621,10.675089,251,273,0.003798,0.004356,12283190,10419350,0,0,35102,0,1,1 +1773583689.018008,0.80,4,3992.50,58.84,1396.63,2303.78,0.00,3518863771178.121582,3518863771169.048340,75,0,0.002734,0.004609,12283255,10419435,0,0,35105,0,1,1 +1773583694.022199,1.20,4,3992.50,58.85,1395.86,2303.96,0.00,1.957149,0.000195,246,2,0.002731,0.003951,12283320,10419515,0,0,35107,0,1,1 +1773583699.020088,0.80,4,3992.50,58.85,1395.64,2304.16,0.00,3519923080347.009277,3519923080348.968750,75,0,0.002735,0.003953,12283385,10419595,0,0,35110,0,1,1 +1773583704.020000,0.75,4,3992.50,58.88,1394.69,2305.11,0.00,0.126760,0.000000,205,0,0.002505,0.003333,12283443,10419664,0,0,35112,0,1,1 +1773583709.021957,0.75,4,3992.50,58.88,1394.70,2305.10,0.00,16597.174323,18079.864409,1182426,1934957,0.002733,0.003963,12283508,10419745,0,0,35115,0,1,1 +1773583714.021577,0.60,4,3992.50,58.87,1394.71,2305.08,0.00,0.000000,0.000879,1182426,1934961,0.002734,0.003955,12283573,10419825,0,0,35117,0,1,1 +1773583719.021944,4.46,4,3992.50,59.16,1383.56,2316.24,0.00,9.560822,10.693747,1183915,1935302,2.018654,0.015310,12284295,10420375,0,0,35120,0,1,1 +1773583724.018570,22.36,4,3992.50,59.84,1356.97,2342.94,0.00,3520812840314.728516,3520812838838.526855,251,273,32.215707,0.141075,12294596,10427999,0,0,35122,0,1,1 +1773583729.021384,5.97,4,3992.50,59.54,1368.75,2331.21,0.00,16592.860820,18066.990291,1182426,1936181,6.045077,0.033127,12296800,10429612,0,0,35125,0,1,1 +1773583734.021932,0.55,4,3992.50,59.61,1366.07,2333.89,0.00,3518051767898.264160,3518051766412.436523,246,2,0.002276,0.002687,12296851,10429668,0,0,35127,0,1,1 +1773583739.021927,1.50,4,3992.50,59.38,1374.93,2325.03,0.00,16611.420153,18098.697157,1183915,1936468,0.003403,0.004886,12296919,10429751,0,0,35130,0,1,1 +1773583744.017455,0.55,4,3992.50,59.38,1374.94,2325.02,0.00,3521586905937.364258,3521586904450.717773,75,0,0.002736,0.003958,12296984,10429831,0,0,35132,0,1,1 +1773583749.020862,0.70,4,3992.50,59.38,1374.95,2325.01,0.00,1.601545,10.667926,251,273,0.002732,0.003962,12297049,10429912,0,0,35135,0,1,1 +1773583754.022250,0.95,4,3992.50,59.58,1368.27,2332.85,0.00,16597.588778,18072.555260,1182426,1936336,0.002733,0.004584,12297114,10429995,0,0,35137,0,1,1 +1773583759.017460,0.60,4,3992.50,59.58,1368.27,2332.78,0.00,3521810996351.126465,3521810994865.308105,11,0,0.002515,0.003342,12297173,10430065,0,0,35140,0,1,1 +1773583764.018602,0.80,4,3992.50,59.40,1375.44,2325.60,0.00,0.180232,0.000000,205,0,0.002733,0.003941,12297238,10430144,0,0,35142,0,1,1 +1773583769.017569,0.75,4,3992.50,59.20,1383.09,2317.95,0.00,3519163826826.498047,0.000000,11,0,0.003247,0.005039,12297317,10430246,0,0,35145,0,1,1 +1773583774.022083,0.60,4,3992.50,59.21,1382.86,2318.18,0.00,2.010490,0.000195,246,2,0.002731,0.003951,12297382,10430326,0,0,35147,0,1,1 +1773583779.017566,0.60,4,3992.50,59.21,1382.88,2318.16,0.00,3521618852762.875977,3521618852764.890137,11,0,0.003023,0.004523,12297452,10430418,0,0,35150,0,1,1 +1773583784.021571,1.05,4,3992.50,59.47,1372.80,2328.24,0.00,0.180129,0.000000,205,0,0.002731,0.003939,12297517,10430497,0,0,35152,0,1,1 +1773583789.019672,7.34,4,3992.50,59.30,1379.06,2321.53,0.00,1.832727,0.000195,246,2,8.052315,0.036808,12299991,10432279,0,0,35155,0,1,1 +1773583794.021771,20.84,4,3992.50,60.43,1334.39,2366.15,0.00,3516961017248.666504,3516961017250.624512,75,0,30.196470,0.137046,12309859,10439620,0,0,35157,0,1,1 +1773583799.021434,2.26,4,3992.50,59.00,1390.58,2309.94,0.00,16604.919092,18090.369063,1182426,1937595,2.003233,0.015225,12310711,10440266,0,0,35160,0,1,1 +1773583804.021691,0.65,4,3992.50,59.00,1390.39,2310.14,0.00,0.000000,0.177823,1182426,1937603,0.002198,0.003744,12310770,10440341,0,0,35162,0,1,1 +1773583809.017554,0.60,4,3992.50,59.00,1390.40,2310.13,0.00,3521351132878.503418,3521351131391.745605,75,0,0.003588,0.004611,12310832,10440423,0,0,35165,0,1,1 +1773583814.021629,0.95,4,3992.50,59.14,1386.11,2315.65,0.00,0.000000,0.000000,75,0,0.002794,0.004001,12310901,10440507,0,0,35167,0,1,1 +1773583819.022054,0.70,4,3992.50,59.10,1387.73,2314.03,0.00,0.126747,0.000000,205,0,0.002733,0.004608,12310966,10440592,0,0,35170,0,1,1 +1773583824.017450,0.60,4,3992.50,59.13,1386.71,2315.05,0.00,16618.977435,18106.513064,1182426,1938078,0.002736,0.003958,12311031,10440672,0,0,35172,0,1,1 +1773583829.022138,0.70,4,3992.50,58.95,1393.68,2308.08,0.00,3515141128806.251465,3515141127321.658203,11,0,0.002731,0.003948,12311096,10440752,0,0,35175,0,1,1 +1773583834.022059,0.60,4,3992.50,58.96,1393.45,2308.30,0.00,1.656179,10.675365,251,273,0.002505,0.003333,12311154,10440821,0,0,35177,0,1,1 +1773583839.021542,0.60,4,3992.50,58.96,1393.46,2308.29,0.00,16613.476909,18091.783744,1183915,1938382,0.002742,0.003973,12311220,10440903,0,0,35180,0,1,1 +1773583844.022347,0.95,4,3992.50,59.17,1385.89,2316.61,0.00,3517870751475.197266,3517870751474.136719,1182426,1938124,0.002733,0.003954,12311285,10440983,0,0,35182,0,1,1 +1773583849.022323,0.65,4,3992.50,58.98,1392.03,2309.20,0.00,0.000000,0.029297,1182426,1938149,0.002734,0.003964,12311350,10441064,0,0,35185,0,1,1 +1773583854.021731,0.65,4,3992.50,58.99,1391.55,2309.67,0.00,3518854386247.837402,3518854384761.520020,11,0,0.002734,0.003955,12311415,10441144,0,0,35187,0,1,1 +1773583859.020827,4.16,4,3992.50,58.94,1393.68,2307.52,0.00,0.000000,0.000000,11,0,2.023408,0.014204,12312222,10441724,0,0,35190,0,1,1 +1773583864.018576,14.74,4,3992.50,59.54,1370.08,2331.13,0.00,1.656898,10.680005,251,273,20.128577,0.087845,12318625,10446408,0,0,35192,0,1,1 +1773583869.020918,12.18,4,3992.50,60.03,1350.68,2350.48,0.00,3516790195452.993652,3516790195443.798828,205,0,18.111458,0.082375,12324724,10450729,0,0,35195,0,1,1 +1773583874.021664,1.00,4,3992.50,59.69,1360.84,2336.98,0.00,3517911857294.370117,0.000000,75,0,0.002504,0.003320,12324782,10450797,0,0,35197,0,1,1 +1773583879.021724,0.60,4,3992.50,59.41,1371.65,2326.08,0.00,0.126756,0.000000,205,0,0.002742,0.003972,12324848,10450879,0,0,35200,0,1,1 +1773583884.017453,0.85,4,3992.50,59.41,1371.71,2326.02,0.00,16627.436891,18117.337064,1183915,1939847,0.002736,0.004602,12324913,10450963,0,0,35202,0,1,1 +1773583889.017469,0.60,4,3992.50,59.40,1372.07,2325.66,0.00,3518426241521.606934,3518426240042.183105,251,273,0.002734,0.003964,12324978,10451044,0,0,35205,0,1,1 +1773583894.017560,0.85,4,3992.50,58.23,1417.75,2280.00,0.00,3518373216709.531738,3518373216700.459961,75,0,0.002734,0.003954,12325043,10451124,0,0,35207,0,1,1 +1773583899.018571,0.70,4,3992.50,58.35,1413.39,2284.36,0.00,16610.001629,18098.452355,1183915,1939946,0.002733,0.003963,12325108,10451205,0,0,35210,0,1,1 +1773583904.021309,1.10,4,3992.50,58.77,1394.46,2300.86,0.00,3516511778992.873535,3516511777504.989746,11,0,0.002732,0.003952,12325173,10451285,0,0,35212,0,1,1 +1773583909.017478,0.55,4,3992.50,58.78,1393.86,2301.49,0.00,0.053557,0.000000,75,0,0.002507,0.003333,12325231,10451354,0,0,35215,0,1,1 +1773583914.017457,0.65,4,3992.50,58.78,1393.89,2301.47,0.00,1.958797,0.000195,246,2,0.002734,0.003954,12325296,10451434,0,0,35217,0,1,1 +1773583919.017584,0.75,4,3992.50,58.78,1393.90,2301.45,0.00,3518348210855.908203,3518348210857.866699,75,0,0.002734,0.003952,12325361,10451514,0,0,35220,0,1,1 +1773583924.017577,0.70,4,3992.50,58.78,1393.91,2301.44,0.00,1.958792,0.000195,246,2,0.002742,0.003962,12325427,10451595,0,0,35222,0,1,1 +1773583929.017451,0.60,4,3992.50,58.78,1393.93,2301.43,0.00,0.000000,0.000000,246,2,0.002721,0.003952,12325491,10451675,0,0,35225,0,1,1 +1773583934.021951,9.39,4,3992.50,59.24,1371.71,2319.19,0.00,0.000000,0.000000,246,2,10.054469,0.046397,12328691,10454003,0,0,35227,0,1,1 +1773583939.022201,4.52,4,3992.50,59.25,1370.97,2319.93,0.00,16601.013740,18091.248010,1182426,1940384,2.032475,0.022101,12329677,10454748,0,0,35230,0,1,1 +1773583944.020531,15.95,4,3992.50,60.37,1327.28,2363.59,0.00,0.000000,0.079519,1182426,1940853,28.175019,0.119434,12338822,10461450,0,0,35232,0,1,1 +1773583949.022147,0.65,4,3992.50,59.81,1349.16,2341.71,0.00,3517300191228.105957,3517300189749.227051,251,273,0.002720,0.003963,12338886,10461531,0,0,35235,0,1,1 +1773583954.021317,0.65,4,3992.50,59.53,1360.12,2330.75,0.00,16604.954125,18084.801524,1182426,1941061,0.002734,0.004586,12338951,10461614,0,0,35237,0,1,1 +1773583959.017959,0.65,4,3992.50,59.48,1362.15,2328.71,0.00,9.567949,10.684421,1183915,1941342,0.002735,0.003967,12339016,10461695,0,0,35240,0,1,1 +1773583964.022295,1.05,4,3992.50,59.48,1369.14,2328.94,0.00,3515388742068.159180,3515388740579.713379,11,0,0.002727,0.003959,12339081,10461776,0,0,35242,0,1,1 +1773583969.017564,0.60,4,3992.50,59.25,1378.23,2319.86,0.00,16619.580322,18110.002747,1182426,1941180,0.002495,0.003334,12339138,10461845,0,0,35245,0,1,1 +1773583974.017630,0.75,4,3992.50,59.25,1378.25,2319.84,0.00,3518390615826.029785,3518390614346.056152,251,273,0.002734,0.003954,12339203,10461925,0,0,35247,0,1,1 +1773583979.021925,0.75,4,3992.50,59.26,1378.05,2320.04,0.00,16587.948131,18066.762144,1182426,1941224,0.004509,0.005489,12339293,10462021,0,0,35250,0,1,1 +1773583984.017582,0.75,4,3992.50,59.26,1378.06,2320.02,0.00,3521496335163.794922,3521496333671.383301,246,2,0.003801,0.004372,12339380,10462115,0,0,35252,0,1,1 +1773583989.022267,0.60,4,3992.50,59.26,1378.08,2320.01,0.00,16595.852418,18086.744860,1183915,1941574,0.002731,0.003961,12339445,10462196,0,0,35255,0,1,1 +1773583994.018008,0.95,4,3992.50,59.35,1368.63,2323.68,0.00,3521436991457.779785,3521436991456.735352,1182426,1941345,0.001888,0.003086,12339491,10462257,0,0,35257,0,1,1 +1773583999.021921,0.65,4,3992.50,59.35,1368.54,2323.62,0.00,3515685416787.167969,3515685415299.099121,11,0,0.002731,0.003961,12339556,10462338,0,0,35260,0,1,1 +1773584004.021807,1.55,4,3992.50,59.00,1382.26,2309.92,0.00,0.180278,0.000000,205,0,0.002734,0.003954,12339621,10462418,0,0,35262,0,1,1 +1773584009.020994,15.69,4,3992.50,59.73,1353.57,2338.54,0.00,0.000000,0.000000,205,0,20.146741,0.100254,12346447,10467392,0,0,35265,0,1,1 +1773584014.021588,13.67,4,3992.50,59.09,1378.55,2313.55,0.00,16611.262670,18102.303968,1183915,1942908,20.114593,0.085075,12352806,10472111,0,0,35267,0,1,1 +1773584019.022023,0.65,4,3992.50,59.04,1380.54,2311.55,0.00,3518130810922.912598,3518130809431.824219,205,0,0.002505,0.003974,12352864,10472184,0,0,35270,0,1,1 +1773584024.021710,0.95,4,3992.50,59.29,1380.33,2321.36,0.00,1.475971,10.675864,251,273,0.002759,0.003986,12352931,10472266,0,0,35272,0,1,1 +1773584029.021966,0.70,4,3992.50,59.10,1387.73,2313.93,0.00,16601.349174,18082.581362,1182426,1942811,0.002759,0.003995,12352998,10472349,0,0,35275,0,1,1 +1773584034.021574,0.65,4,3992.50,58.91,1395.16,2306.50,0.00,3518712981967.458496,3518712980475.002441,246,2,0.003353,0.004207,12353075,10472436,0,0,35277,0,1,1 +1773584039.022294,0.90,4,3992.50,58.92,1394.94,2306.72,0.00,3517930834398.953613,3517930834400.965820,11,0,0.002733,0.003964,12353140,10472517,0,0,35280,0,1,1 +1773584044.022380,0.75,4,3992.50,58.72,1402.83,2298.82,0.00,0.053515,0.000000,75,0,0.003403,0.004876,12353208,10472599,0,0,35282,0,1,1 +1773584049.021580,0.60,4,3992.50,58.74,1401.89,2299.77,0.00,16616.020329,18108.221461,1183915,1943415,0.002734,0.003965,12353273,10472680,0,0,35285,0,1,1 +1773584054.021356,0.95,4,3992.50,58.80,1395.18,2301.96,0.00,3518594718766.223633,3518594718765.186035,1182426,1943188,0.002505,0.003321,12353331,10472748,0,0,35287,0,1,1 +1773584059.018912,0.60,4,3992.50,58.80,1394.85,2302.16,0.00,3520157841209.952148,3520157839716.339355,246,2,0.002743,0.003974,12353397,10472830,0,0,35290,0,1,1 +1773584064.018580,0.70,4,3992.50,58.81,1394.63,2302.39,0.00,0.000000,0.000000,246,2,0.002734,0.003955,12353462,10472910,0,0,35292,0,1,1 +1773584069.020638,0.70,4,3992.50,58.81,1394.63,2302.39,0.00,3516989848684.197266,3516989848686.208496,11,0,0.004166,0.005718,12353543,10473016,0,0,35295,0,1,1 +1773584074.021673,3.16,4,3992.50,58.87,1392.04,2304.98,0.00,0.000000,0.000000,11,0,2.014293,0.012055,12354174,10473491,0,0,35297,0,1,1 +1773584079.020643,10.50,4,3992.50,59.25,1377.41,2319.61,0.00,1.656494,10.677396,251,273,12.099735,0.067066,12358540,10476770,0,0,35300,0,1,1 +1773584084.022092,15.91,4,3992.50,59.91,1352.86,2345.57,0.00,3517417564401.337402,3517417564392.321289,11,0,26.145799,0.114500,12366970,10483081,0,0,35302,0,1,1 +1773584089.022382,0.95,4,3992.50,59.50,1368.88,2329.56,0.00,0.000000,0.000000,11,0,0.002930,0.004496,12367041,10483173,0,0,35305,0,1,1 +1773584094.021562,0.70,4,3992.50,59.34,1375.28,2323.17,0.00,0.053524,0.000000,75,0,0.002734,0.003955,12367106,10483253,0,0,35307,0,1,1 +1773584099.022115,0.55,4,3992.50,59.34,1375.04,2323.40,0.00,1.958572,0.000195,246,2,0.002504,0.003330,12367164,10483322,0,0,35310,0,1,1 +1773584104.021548,0.90,4,3992.50,59.37,1373.83,2324.61,0.00,3518836136518.915527,3518836136520.928223,11,0,0.002742,0.003963,12367230,10483403,0,0,35312,0,1,1 +1773584109.022263,0.95,4,3992.50,59.37,1373.86,2324.59,0.00,0.000000,0.000000,11,0,0.003655,0.004633,12367297,10483487,0,0,35315,0,1,1 +1773584114.018146,1.10,4,3992.50,59.37,1377.91,2324.50,0.00,0.180422,0.000000,205,0,0.002798,0.004008,12367366,10483571,0,0,35317,0,1,1 +1773584119.021801,0.85,4,3992.50,59.18,1385.45,2316.96,0.00,1.474801,10.667397,251,273,0.002732,0.003961,12367431,10483652,0,0,35320,0,1,1 +1773584124.017506,0.80,4,3992.50,59.18,1385.22,2317.20,0.00,3521461757875.057129,3521461757866.030762,11,0,0.002723,0.003945,12367495,10483731,0,0,35322,0,1,1 +1773584129.021549,1.00,4,3992.50,58.99,1392.84,2309.58,0.00,2.010679,0.000195,246,2,0.003350,0.004188,12367572,10483817,0,0,35325,0,1,1 +1773584134.021826,0.65,4,3992.50,58.99,1392.67,2309.75,0.00,3518243014532.514160,3518243014534.472656,75,0,0.002492,0.003333,12367629,10483886,0,0,35327,0,1,1 +1773584139.022020,0.80,4,3992.50,58.80,1400.11,2302.32,0.00,0.126753,0.000000,205,0,0.002734,0.003964,12367694,10483967,0,0,35330,0,1,1 +1773584144.021747,1.20,4,3992.50,58.92,1394.01,2306.97,0.00,3518629253556.501465,0.000000,11,0,0.002734,0.003955,12367759,10484047,0,0,35332,0,1,1 +1773584149.019575,7.08,4,3992.50,59.05,1388.86,2312.12,0.00,1.656872,10.679834,251,273,6.046688,0.032157,12369765,10485530,0,0,35335,0,1,1 +1773584154.018646,8.38,4,3992.50,59.31,1378.96,2322.02,0.00,3519091429796.709473,3519091429787.688965,11,0,8.117385,0.042872,12372549,10487524,0,0,35337,0,1,1 +1773584159.021788,16.38,4,3992.50,59.41,1374.76,2326.14,0.00,2.011041,0.000195,246,2,26.083929,0.114379,12380982,10493875,0,0,35340,0,1,1 +1773584164.019640,1.65,4,3992.50,58.86,1396.61,2304.33,0.00,3519949464355.508301,10.679588,251,273,0.002735,0.003956,12381047,10493955,0,0,35342,0,1,1 +1773584169.017475,0.90,4,3992.50,58.84,1397.15,2303.79,0.00,3519961647247.587891,3519961647238.564941,11,0,0.002820,0.004046,12381118,10494042,0,0,35345,0,1,1 +1773584174.017503,1.10,4,3992.50,58.95,1391.39,2307.96,0.00,2.012293,0.000195,246,2,0.002761,0.003971,12381185,10494123,0,0,35347,0,1,1 +1773584179.021965,0.85,4,3992.50,58.93,1392.11,2307.18,0.00,3515300391040.409180,3515300391042.419922,11,0,0.002515,0.003343,12381244,10494193,0,0,35350,0,1,1 +1773584184.022359,0.75,4,3992.50,58.83,1395.83,2303.46,0.00,0.180259,0.000000,205,0,0.002721,0.003941,12381308,10494272,0,0,35352,0,1,1 +1773584189.021580,0.90,4,3992.50,58.84,1395.60,2303.69,0.00,1.476109,10.676859,251,273,0.002696,0.003952,12381370,10494352,0,0,35355,0,1,1 +1773584194.021840,0.75,4,3992.50,58.84,1395.60,2303.68,0.00,16610.896884,18097.006928,1183915,1946923,0.002487,0.003303,12381427,10494419,0,0,35357,0,1,1 +1773584199.021619,0.75,4,3992.50,58.80,1397.19,2302.11,0.00,3518592375982.544922,3518592375981.447266,1182426,1946657,0.002683,0.003793,12381488,10494496,0,0,35360,0,1,1 +1773584204.018643,1.10,4,3992.50,58.89,1395.13,2305.52,0.00,3520532664721.218750,3520532663226.166504,75,0,0.001928,0.003707,12381537,10494568,0,0,35362,0,1,1 +1773584209.021737,0.85,4,3992.50,58.87,1395.95,2304.70,0.00,1.601646,10.668594,251,273,0.002732,0.003937,12381602,10494647,0,0,35365,0,1,1 +1773584214.017473,0.70,4,3992.50,58.86,1395.97,2304.68,0.00,3521439995700.521973,3521439995691.314941,205,0,0.002507,0.003968,12381660,10494719,0,0,35367,0,1,1 +1773584219.020568,1.35,4,3992.50,58.87,1395.75,2304.90,0.00,3516260537419.342773,0.000000,75,0,0.005085,0.004956,12381766,10494824,0,0,35370,0,1,1 +1773584224.021877,17.19,4,3992.50,59.50,1371.24,2329.38,0.00,1.958277,0.000195,246,2,22.153934,0.122747,12390332,10501595,0,0,35372,0,1,1 +1773584229.022160,6.27,4,3992.50,59.20,1382.82,2317.78,0.00,16610.464439,18108.169734,1183915,1947714,8.055086,0.040907,12393399,10504000,0,0,35375,0,1,1 +1773584234.021749,7.79,4,3992.50,59.48,1365.36,2328.62,0.00,3518726062503.599609,3518726062502.698730,1182426,1947643,10.067594,0.052257,12397215,10507016,0,0,35377,0,1,1 +1773584239.017726,0.80,4,3992.50,59.11,1379.85,2314.13,0.00,3521270500896.072266,3521270499409.017578,251,273,0.002699,0.003975,12397278,10507098,0,0,35380,0,1,1 +1773584244.017817,0.95,4,3992.50,59.11,1379.75,2314.23,0.00,3518372843065.078125,3518372843056.059570,11,0,0.002734,0.003929,12397343,10507176,0,0,35382,0,1,1 +1773584249.017589,0.80,4,3992.50,59.11,1379.75,2314.22,0.00,16604.612446,18099.967663,1182426,1947928,0.002480,0.003331,12397399,10507245,0,0,35385,0,1,1 +1773584254.021450,0.80,4,3992.50,59.08,1380.68,2313.30,0.00,0.000000,0.030055,1182426,1947947,0.002744,0.003951,12397465,10507325,0,0,35387,0,1,1 +1773584259.022151,0.75,4,3992.50,59.09,1380.45,2313.52,0.00,3517944328984.456543,3517944327487.337402,246,2,0.002708,0.003951,12397528,10507405,0,0,35390,0,1,1 +1773584264.017594,1.16,4,3992.50,59.23,1374.25,2319.11,0.00,16626.554706,18126.505080,1183915,1948263,0.002507,0.003324,12397586,10507473,0,0,35392,0,1,1 +1773584269.018456,0.80,4,3992.50,59.23,1374.27,2319.08,0.00,3517831274680.593262,3517831273193.297363,251,273,0.002721,0.003938,12397650,10507552,0,0,35395,0,1,1 +1773584274.017445,0.90,4,3992.50,58.71,1394.62,2298.75,0.00,3519148596324.333984,3519148596315.313477,11,0,0.002734,0.003955,12397715,10507632,0,0,35397,0,1,1 +1773584279.021744,0.90,4,3992.50,58.74,1393.65,2299.73,0.00,1.654730,10.666024,251,273,0.003827,0.005211,12397801,10507730,0,0,35400,0,1,1 +1773584284.022228,0.80,4,3992.50,58.74,1393.44,2299.93,0.00,3518096764064.977539,3518096764055.906250,75,0,0.004221,0.004677,12397883,10507816,0,0,35402,0,1,1 +1773584289.022418,0.80,4,3992.50,58.74,1393.46,2299.92,0.00,3518303200936.186523,0.000000,11,0,0.002734,0.003951,12397948,10507896,0,0,35405,0,1,1 +1773584294.021556,2.91,4,3992.50,58.45,1392.66,2288.45,0.00,1.656438,10.677037,251,273,0.011898,0.009017,12398179,10508082,0,0,35407,0,1,1 +1773584299.017452,20.22,4,3992.50,58.67,1383.70,2297.24,0.00,0.000000,0.000000,251,273,28.213063,0.145910,12408821,10516441,0,0,35410,0,1,1 +1773584304.021094,5.31,4,3992.50,59.18,1363.86,2317.05,0.00,3515876220734.582520,3515876220725.390137,205,0,6.036719,0.030275,12411118,10518274,0,0,35412,0,1,1 +1773584309.021971,5.83,4,3992.50,58.95,1372.77,2308.11,0.00,16610.319515,18107.716236,1183915,1949591,6.044523,0.036700,12413519,10520226,0,0,35415,0,1,1 +1773584314.017589,0.80,4,3992.50,58.66,1384.19,2296.69,0.00,3521523525618.647949,3521523525617.537598,1182426,1949323,0.002318,0.003178,12413573,10520292,0,0,35417,0,1,1 +1773584319.019184,0.85,4,3992.50,58.65,1384.74,2296.14,0.00,3517315621626.353027,3517315620130.406738,75,0,0.002708,0.003950,12413636,10520372,0,0,35420,0,1,1 +1773584324.018664,1.20,4,3992.50,58.65,1388.21,2296.21,0.00,1.958993,0.000195,246,2,0.002746,0.003973,12413702,10520453,0,0,35422,0,1,1 +1773584329.021914,0.80,4,3992.50,58.63,1389.09,2295.32,0.00,3516151814982.827148,3516151814984.784180,75,0,0.002715,0.003988,12413766,10520536,0,0,35425,0,1,1 +1773584334.017464,0.70,4,3992.50,58.51,1393.66,2290.75,0.00,3521571434223.548340,0.000000,11,0,0.002507,0.003311,12413824,10520603,0,0,35427,0,1,1 +1773584339.017456,1.20,4,3992.50,58.55,1392.22,2292.20,0.00,0.000000,0.000000,11,0,0.002721,0.003964,12413888,10520684,0,0,35430,0,1,1 +1773584344.018571,0.80,4,3992.50,58.55,1392.23,2292.20,0.00,0.000000,0.000000,11,0,0.003403,0.005531,12413956,10520771,0,0,35432,0,1,1 +1773584349.018305,0.80,4,3992.50,58.51,1393.76,2290.66,0.00,0.000000,0.000000,11,0,0.002505,0.003318,12414014,10520839,0,0,35435,0,1,1 +1773584354.017561,1.20,4,3992.50,58.75,1387.07,2300.10,0.00,2.012604,0.000195,246,2,0.002742,0.003950,12414080,10520919,0,0,35437,0,1,1 +1773584359.017440,0.75,4,3992.50,58.75,1386.66,2300.05,0.00,3518522766688.191406,3518522766690.204102,11,0,0.002102,0.003581,12414132,10520991,0,0,35440,0,1,1 +1773584364.017463,0.80,4,3992.50,58.74,1386.80,2299.91,0.00,0.180273,0.000000,205,0,0.002545,0.003942,12414193,10521070,0,0,35442,0,1,1 +1773584369.018468,6.07,4,3992.50,58.82,1383.84,2302.88,0.00,0.000000,0.000000,205,0,4.042679,0.033543,12415975,10522498,0,0,35445,0,1,1 +1773584374.020064,14.49,4,3992.50,58.70,1388.27,2298.38,0.00,1.831446,0.000195,246,2,20.125877,0.100770,12423554,10528367,0,0,35447,0,1,1 +1773584379.017465,11.32,4,3992.50,58.90,1380.66,2305.91,0.00,3520266835886.738281,3520266835888.751953,11,0,15.616861,0.077356,12429459,10532926,0,0,35450,0,1,1 +1773584384.021501,1.91,4,3992.50,59.22,1372.86,2318.60,0.00,1.654817,10.666587,251,273,0.505979,0.010526,12429792,10533321,0,0,35452,0,1,1 +1773584389.021653,0.80,4,3992.50,59.22,1372.75,2318.71,0.00,3518329971591.341797,3518329971582.323242,11,0,0.002905,0.004338,12429861,10533410,0,0,35455,0,1,1 +1773584394.021991,0.75,4,3992.50,59.04,1379.94,2311.52,0.00,0.180261,0.000000,205,0,0.002115,0.003863,12429914,10533485,0,0,35457,0,1,1 +1773584399.020548,0.80,4,3992.50,59.04,1379.95,2311.50,0.00,16608.466579,18106.983198,1182426,1950641,0.002580,0.003710,12429976,10533559,0,0,35460,0,1,1 +1773584404.021927,0.85,4,3992.50,59.04,1379.98,2311.48,0.00,0.000000,0.321200,1182426,1950897,0.002642,0.003533,12430036,10533631,0,0,35462,0,1,1 +1773584409.021411,0.90,4,3992.50,59.04,1379.99,2311.47,0.00,3518800403560.761719,3518800402062.381348,11,0,0.003656,0.005278,12430103,10533719,0,0,35465,0,1,1 +1773584414.021735,1.25,4,3992.50,58.76,1383.73,2300.75,0.00,0.053512,0.000000,75,0,0.002783,0.003979,12430171,10533801,0,0,35467,0,1,1 +1773584419.021780,0.80,4,3992.50,58.58,1390.43,2293.63,0.00,16603.650866,18102.182675,1182426,1951138,0.002505,0.003331,12430229,10533870,0,0,35470,0,1,1 +1773584424.021872,0.85,4,3992.50,58.61,1389.21,2294.84,0.00,3518372512630.097656,3518372511131.633301,11,0,0.002729,0.003950,12430294,10533950,0,0,35472,0,1,1 +1773584429.021482,0.85,4,3992.50,58.61,1389.22,2294.82,0.00,1.656282,10.676030,251,273,0.002734,0.003965,12430359,10534031,0,0,35475,0,1,1 +1773584434.021856,0.80,4,3992.50,58.61,1389.24,2294.81,0.00,0.000000,0.000000,251,273,0.002505,0.003320,12430417,10534099,0,0,35477,0,1,1 +1773584439.021774,0.90,4,3992.50,58.38,1398.27,2285.78,0.00,3518494688418.352051,3518494688409.152832,205,0,0.002734,0.003952,12430482,10534179,0,0,35480,0,1,1 +1773584444.021456,10.06,4,3992.50,58.90,1379.37,2305.93,0.00,0.000000,0.000000,205,0,8.074723,0.055185,12433872,10536857,0,0,35482,0,1,1 +1773584449.022274,18.52,4,3992.50,59.56,1353.38,2331.80,0.00,3517861655055.497559,0.000000,11,0,30.185084,0.147865,12445095,10545634,0,0,35485,0,1,1 +1773584454.021942,2.76,4,3992.50,59.21,1367.05,2318.13,0.00,2.012438,0.000195,246,2,2.022600,0.015996,12446052,10546400,0,0,35487,0,1,1 +1773584459.017465,1.05,4,3992.50,58.85,1381.02,2304.16,0.00,3521590058881.203613,10.684566,251,273,0.002494,0.003334,12446109,10546469,0,0,35490,0,1,1 +1773584464.017587,0.85,4,3992.50,58.52,1394.15,2291.03,0.00,16611.361135,18102.830551,1183917,1952601,0.002721,0.003942,12446173,10546548,0,0,35492,0,1,1 +1773584469.021190,1.30,4,3992.50,58.30,1402.57,2282.61,0.00,3515903244236.317383,3515903242736.819824,75,0,0.002503,0.003328,12446231,10546617,0,0,35495,0,1,1 +1773584474.021806,1.15,4,3992.50,58.53,1395.78,2291.64,0.00,0.126742,0.000000,205,0,0.002716,0.004606,12446295,10546702,0,0,35497,0,1,1 +1773584479.021835,0.80,4,3992.50,58.53,1390.90,2291.59,0.00,16613.143891,18114.307017,1183917,1952927,0.002533,0.003806,12446355,10546780,0,0,35500,0,1,1 +1773584484.022412,0.85,4,3992.50,58.54,1390.67,2291.82,0.00,3518030993375.222168,3518030991874.403809,11,0,0.002479,0.003320,12446411,10546848,0,0,35502,0,1,1 +1773584489.021881,0.90,4,3992.50,58.54,1390.70,2291.80,0.00,0.180293,0.000000,205,0,0.002709,0.003927,12446474,10546926,0,0,35505,0,1,1 +1773584494.018570,0.75,4,3992.50,58.34,1398.33,2284.16,0.00,0.000000,0.000000,205,0,0.002735,0.003932,12446539,10547004,0,0,35507,0,1,1 +1773584499.022177,1.00,4,3992.50,58.35,1398.15,2284.35,0.00,0.000000,0.000000,205,0,0.002714,0.003957,12446603,10547085,0,0,35510,0,1,1 +1773584504.021421,1.15,4,3992.50,58.74,1382.95,2299.83,0.00,0.000000,0.000000,205,0,0.002505,0.003321,12446661,10547153,0,0,35512,0,1,1 +1773584509.022331,0.85,4,3992.50,58.74,1383.05,2299.80,0.00,1.831698,0.000195,246,2,0.002733,0.003964,12446726,10547234,0,0,35515,0,1,1 +1773584514.021881,0.85,4,3992.50,58.74,1383.05,2299.81,0.00,3518753437141.331543,3518753437143.344238,11,0,0.002709,0.003955,12446789,10547314,0,0,35517,0,1,1 +1773584519.021557,13.98,4,3992.50,59.55,1351.39,2331.43,0.00,0.000000,0.000000,11,0,12.109642,0.075742,12451697,10551085,0,0,35520,0,1,1 +1773584524.019220,11.88,4,3992.50,59.14,1367.24,2315.50,0.00,2.013246,0.000195,246,2,22.141245,0.105002,12459884,10557519,0,0,35522,0,1,1 +1773584529.017896,5.22,4,3992.50,59.00,1372.85,2309.86,0.00,3519368854796.681641,3519368854798.694824,11,0,6.046761,0.035357,12462278,10559430,0,0,35525,0,1,1 +1773584534.021730,1.35,4,3992.50,59.13,1367.86,2315.01,0.00,16600.693623,18101.571645,1183917,1954264,0.002694,0.003939,12462340,10559509,0,0,35527,0,1,1 +1773584539.022000,0.70,4,3992.50,59.13,1367.53,2315.18,0.00,3518247311055.156250,3518247309553.155273,75,0,0.002708,0.004608,12462403,10559594,0,0,35530,0,1,1 +1773584544.021537,0.85,4,3992.50,59.13,1367.55,2315.16,0.00,1.958970,0.000195,246,2,0.002513,0.003316,12462462,10559662,0,0,35532,0,1,1 +1773584549.021869,0.80,4,3992.50,59.11,1368.36,2314.35,0.00,3518203363754.622559,3518203363756.580566,75,0,0.002696,0.003951,12462524,10559742,0,0,35535,0,1,1 +1773584554.022044,0.90,4,3992.50,58.38,1396.97,2285.75,0.00,1.602581,10.674821,251,273,0.002734,0.003942,12462589,10559821,0,0,35537,0,1,1 +1773584559.021962,0.85,4,3992.50,58.42,1395.34,2287.39,0.00,3518494891790.499023,3518494891781.479980,11,0,0.002721,0.003952,12462653,10559901,0,0,35540,0,1,1 +1773584564.022320,1.25,4,3992.50,58.75,1394.30,2300.14,0.00,1.656034,10.674432,251,273,0.002505,0.003333,12462711,10559970,0,0,35542,0,1,1 +1773584569.021759,0.70,4,3992.50,58.74,1394.62,2299.88,0.00,3518832191461.137207,3518832191452.117188,11,0,0.002090,0.003727,12462762,10560044,0,0,35545,0,1,1 +1773584574.017441,0.85,4,3992.50,58.74,1394.64,2299.86,0.00,1.657584,10.684422,251,273,0.002736,0.003933,12462827,10560122,0,0,35547,0,1,1 +1773584579.022231,0.90,4,3992.50,58.74,1394.66,2299.85,0.00,3515069664581.742676,3515069664572.732422,11,0,0.003593,0.003917,12462906,10560203,0,0,35550,0,1,1 +1773584584.018260,0.90,4,3992.50,58.74,1394.67,2299.84,0.00,1.657469,10.683680,251,273,0.003788,0.004346,12462992,10560295,0,0,35552,0,1,1 +1773584589.018438,0.95,4,3992.50,58.70,1396.33,2298.18,0.00,0.356140,3518312007628.746094,246,2,0.004104,0.004324,12463079,10560388,0,0,35555,0,1,1 +1773584594.022268,17.75,4,3992.50,60.48,1326.21,2367.82,0.00,3515744409531.721191,3515744409533.732422,11,0,20.465384,0.116054,12471274,10566675,0,0,35557,0,1,1 +1773584599.017424,12.00,4,3992.50,58.89,1388.00,2305.57,0.00,0.000000,0.000000,11,0,19.822181,0.098583,12478617,10572493,0,0,35560,0,1,1 +1773584604.021780,0.90,4,3992.50,58.70,1395.45,2298.12,0.00,0.000000,0.000000,11,0,0.002274,0.003328,12478668,10572553,0,0,35562,0,1,1 +1773584609.022179,0.90,4,3992.50,58.74,1393.73,2299.84,0.00,0.180259,0.000000,205,0,0.002733,0.003939,12478733,10572632,0,0,35565,0,1,1 +1773584614.021601,0.85,4,3992.50,58.74,1393.74,2299.82,0.00,16615.158501,18119.515830,1183917,1956231,0.002742,0.003963,12478799,10572713,0,0,35567,0,1,1 +1773584619.021464,0.75,4,3992.50,58.74,1393.74,2299.82,0.00,3518534280593.596680,3518534279089.552246,11,0,0.002709,0.003939,12478862,10572792,0,0,35570,0,1,1 +1773584624.017550,1.30,4,3992.50,58.98,1385.61,2309.04,0.00,1.657450,10.683557,251,273,0.002519,0.003367,12478921,10572863,0,0,35572,0,1,1 +1773584629.017467,0.65,4,3992.50,58.98,1385.40,2309.02,0.00,3518495583538.070801,3518495583529.052246,11,0,0.002746,0.003983,12478987,10572945,0,0,35575,0,1,1 +1773584634.017471,0.85,4,3992.50,58.80,1392.38,2302.08,0.00,2.012303,0.000195,246,2,0.002734,0.003929,12479052,10573023,0,0,35577,0,1,1 +1773584639.022158,1.00,4,3992.50,58.72,1395.55,2298.91,0.00,3515141983319.767090,3515141983321.724121,75,0,0.002502,0.003315,12479110,10573091,0,0,35580,0,1,1 +1773584644.021596,0.85,4,3992.50,58.72,1395.56,2298.89,0.00,16615.237216,18119.852041,1183917,1956510,0.002742,0.003950,12479176,10573171,0,0,35582,0,1,1 +1773584649.021679,0.80,4,3992.50,58.72,1395.33,2299.13,0.00,3518378528235.562988,3518378526729.183594,246,2,0.003416,0.004886,12479245,10573254,0,0,35585,0,1,1 +1773584654.017452,1.10,4,3992.50,58.94,1388.78,2307.66,0.00,16625.462284,18133.221567,1183917,1956574,0.002736,0.003932,12479310,10573332,0,0,35587,0,1,1 +1773584659.019124,0.65,4,3992.50,58.94,1388.80,2307.65,0.00,3517261537049.235840,3517261535545.265625,11,0,0.002479,0.003317,12479366,10573400,0,0,35590,0,1,1 +1773584664.018549,3.41,4,3992.50,59.57,1363.97,2332.49,0.00,0.053522,0.000000,75,0,0.260934,0.012828,12479841,10573729,0,0,35592,0,1,1 +1773584669.017448,17.53,4,3992.50,59.63,1361.56,2334.83,0.00,1.602990,10.677546,251,273,23.928640,0.127354,12488919,10580945,0,0,35595,0,1,1 +1773584674.017451,10.23,4,3992.50,59.32,1373.71,2322.61,0.00,0.000000,0.000000,251,273,16.102682,0.078962,12494931,10585513,0,0,35597,0,1,1 +1773584679.017439,0.90,4,3992.50,59.33,1373.25,2323.07,0.00,3518445507487.117676,3518445507478.098633,11,0,0.002641,0.003739,12494993,10585591,0,0,35600,0,1,1 +1773584684.017469,1.00,4,3992.50,59.14,1381.78,2315.56,0.00,0.000000,0.000000,11,0,0.002734,0.003942,12495058,10585670,0,0,35602,0,1,1 +1773584689.017554,0.70,4,3992.50,59.14,1379.47,2315.49,0.00,16613.139224,18118.851213,1183918,1957907,0.002918,0.004484,12495128,10585761,0,0,35605,0,1,1 +1773584694.017561,0.70,4,3992.50,59.15,1379.30,2315.70,0.00,3518432315724.245117,3518432314227.528320,251,273,0.002505,0.003296,12495186,10585827,0,0,35607,0,1,1 +1773584699.021813,0.65,4,3992.50,59.13,1379.85,2315.16,0.00,3515447547137.525391,3515447547128.514160,11,0,0.002719,0.003948,12495250,10585907,0,0,35610,0,1,1 +1773584704.020632,0.60,4,3992.50,59.03,1383.73,2311.28,0.00,2.012780,0.000195,246,2,0.002709,0.003955,12495313,10585987,0,0,35612,0,1,1 +1773584709.019845,0.75,4,3992.50,59.04,1383.52,2311.50,0.00,3518990636315.771973,3518990636317.784668,11,0,0.002527,0.003372,12495373,10586059,0,0,35615,0,1,1 +1773584714.022041,1.05,4,3992.50,59.23,1376.29,2318.86,0.00,0.053492,0.000000,75,0,0.003689,0.004640,12495442,10586144,0,0,35617,0,1,1 +1773584719.021967,0.60,4,3992.50,59.20,1377.29,2317.67,0.00,1.958818,0.000195,246,2,0.002721,0.003964,12495506,10586225,0,0,35620,0,1,1 +1773584724.017448,0.55,4,3992.50,59.20,1377.31,2317.65,0.00,3521619862266.851074,3521619862268.865723,11,0,0.001941,0.003574,12495556,10586296,0,0,35622,0,1,1 +1773584729.022101,0.60,4,3992.50,59.20,1377.31,2317.64,0.00,0.180106,0.000000,205,0,0.002477,0.003328,12495612,10586365,0,0,35625,0,1,1 +1773584734.021993,0.65,4,3992.50,59.20,1377.33,2317.64,0.00,3518513463514.206055,0.000000,11,0,0.002734,0.004425,12495677,10586447,0,0,35627,0,1,1 +1773584739.022094,6.18,4,3992.50,59.31,1372.97,2321.96,0.00,16603.523969,18108.674246,1182429,1958283,6.048690,0.036626,12498125,10588322,0,0,35630,0,1,1 +1773584744.022228,15.11,4,3992.50,59.67,1362.30,2336.05,0.00,3518343077305.690918,3518343075800.550293,11,0,22.156389,0.120795,12506650,10595049,0,0,35632,0,1,1 +1773584749.021552,8.00,4,3992.50,59.40,1372.54,2325.64,0.00,0.053523,0.000000,75,0,12.082422,0.060438,12511205,10598560,0,0,35635,0,1,1 +1773584754.018608,0.80,4,3992.50,59.40,1372.55,2325.62,0.00,3520510152854.942383,0.000000,11,0,0.002723,0.003957,12511269,10598640,0,0,35637,0,1,1 +1773584759.021715,0.65,4,3992.50,59.41,1372.13,2326.04,0.00,16593.547998,18098.831076,1182429,1959522,0.002503,0.003329,12511327,10598709,0,0,35640,0,1,1 +1773584764.022208,0.55,4,3992.50,59.41,1372.15,2326.03,0.00,9.560581,10.680881,1183918,1959804,0.001861,0.003083,12511371,10598770,0,0,35642,0,1,1 +1773584769.017554,0.65,4,3992.50,59.42,1371.91,2326.25,0.00,3521715391607.382812,3521715390098.458496,205,0,0.003082,0.003991,12511439,10598853,0,0,35645,0,1,1 +1773584774.022173,0.95,4,3992.50,59.38,1375.78,2324.66,0.00,16597.906227,18104.237824,1183918,1959851,0.002731,0.003951,12511504,10598933,0,0,35647,0,1,1 +1773584779.017556,0.70,4,3992.50,59.37,1375.80,2324.65,0.00,3521689435135.229980,3521689433624.279297,246,2,0.002736,0.003968,12511569,10599014,0,0,35650,0,1,1 +1773584784.022346,0.60,4,3992.50,59.37,1375.81,2324.64,0.00,3515069647725.381348,3515069647727.211426,205,0,0.002731,0.003951,12511634,10599094,0,0,35652,0,1,1 +1773584789.018564,0.65,4,3992.50,59.17,1383.83,2316.62,0.00,16616.248341,18124.176814,1182429,1959776,0.002507,0.003333,12511692,10599163,0,0,35655,0,1,1 +1773584794.021623,0.70,4,3992.50,59.18,1383.36,2317.09,0.00,3516286338296.610352,3516286336790.870117,75,0,0.002732,0.003952,12511757,10599243,0,0,35657,0,1,1 +1773584799.017448,0.55,4,3992.50,59.19,1383.16,2317.29,0.00,3521377625402.256836,0.000000,11,0,0.002736,0.004451,12511822,10599327,0,0,35660,0,1,1 +1773584804.020483,1.05,4,3992.50,59.30,1381.20,2321.71,0.00,0.053483,0.000000,75,0,0.002740,0.004108,12511888,10599408,0,0,35662,0,1,1 +1773584809.018563,0.60,4,3992.50,59.29,1381.28,2321.52,0.00,16619.749474,18128.271939,1183918,1960194,0.002722,0.003966,12511952,10599489,0,0,35665,0,1,1 +1773584814.022542,11.09,4,3992.50,59.31,1380.70,2322.07,0.00,3515639920632.381348,3515639919125.637207,75,0,12.073951,0.059541,12516003,10602392,0,0,35667,0,1,1 +1773584819.022107,19.58,4,3992.50,58.75,1402.59,2300.09,0.00,1.958959,0.000195,246,2,28.179476,0.127465,12525234,10609319,0,0,35670,0,1,1 +1773584824.021713,0.75,4,3992.50,58.86,1398.20,2304.46,0.00,3518714093678.301758,3518714093680.260742,75,0,0.002734,0.003955,12525299,10609399,0,0,35672,0,1,1 +1773584829.022430,0.60,4,3992.50,58.86,1398.24,2304.44,0.00,16601.425234,18108.718092,1182429,1960971,0.002504,0.003318,12525357,10609467,0,0,35675,0,1,1 +1773584834.017487,0.95,4,3992.50,59.07,1379.81,2312.75,0.00,3521919245512.144531,3521919244003.197266,11,0,0.002744,0.003966,12525423,10609548,0,0,35677,0,1,1 +1773584839.021536,0.65,4,3992.50,59.07,1379.58,2312.86,0.00,0.000000,0.000000,11,0,0.002731,0.003961,12525488,10609629,0,0,35680,0,1,1 +1773584844.021374,0.55,4,3992.50,59.07,1379.58,2312.85,0.00,16604.396533,18112.395628,1182429,1961256,0.002734,0.003954,12525553,10609709,0,0,35682,0,1,1 +1773584849.020835,0.70,4,3992.50,59.07,1379.59,2312.83,0.00,3518817015499.283203,3518817013991.169922,11,0,0.002734,0.003927,12525618,10609787,0,0,35685,0,1,1 +1773584854.021801,0.55,4,3992.50,59.07,1379.59,2312.84,0.00,16610.211445,18119.119128,1183918,1961606,0.002275,0.002699,12525669,10609844,0,0,35687,0,1,1 +1773584859.022163,0.65,4,3992.50,59.07,1379.60,2312.83,0.00,3518182830182.284668,3518182830181.200195,1182429,1961367,0.002733,0.003964,12525734,10609925,0,0,35690,0,1,1 +1773584864.021501,0.95,4,3992.50,59.27,1375.04,2320.44,0.00,3518902805757.064941,3518902804248.696777,75,0,0.002734,0.003955,12525799,10610005,0,0,35692,0,1,1 +1773584869.021939,0.60,4,3992.50,59.27,1375.15,2320.40,0.00,16611.912935,18121.149172,1183918,1961706,0.002716,0.004616,12525863,10610091,0,0,35695,0,1,1 +1773584874.019275,0.65,4,3992.50,59.27,1374.93,2320.62,0.00,3520312726884.500000,3520312725383.404297,251,273,0.002735,0.003944,12525928,10610170,0,0,35697,0,1,1 +1773584879.021875,0.85,4,3992.50,59.27,1374.95,2320.61,0.00,16593.577665,18092.052467,1182429,1961512,0.004510,0.005491,12526018,10610266,0,0,35700,0,1,1 +1773584884.018562,15.54,4,3992.50,59.42,1368.90,2326.59,0.00,3520770259562.208008,3520770258052.881348,75,0,20.145678,0.096581,12532689,10615213,0,0,35702,0,1,1 +1773584889.017550,14.20,4,3992.50,60.32,1333.64,2361.80,0.00,0.126783,0.000000,205,0,20.131585,0.090302,12539300,10620059,0,0,35705,0,1,1 +1773584894.018122,0.85,4,3992.50,60.16,1343.59,2355.52,0.00,0.000000,0.000000,205,0,0.002504,0.003320,12539358,10620127,0,0,35707,0,1,1 +1773584899.017625,0.60,4,3992.50,59.96,1351.50,2347.62,0.00,3518787138892.591309,0.000000,11,0,0.002734,0.003965,12539423,10620208,0,0,35710,0,1,1 +1773584904.017560,0.65,4,3992.50,59.96,1351.61,2347.50,0.00,0.053516,0.000000,75,0,0.002734,0.003954,12539488,10620288,0,0,35712,0,1,1 +1773584909.022394,0.65,4,3992.50,59.96,1351.62,2347.52,0.00,16587.770142,18095.717307,1182430,1962723,0.002718,0.003948,12539552,10620368,0,0,35715,0,1,1 +1773584914.021563,0.60,4,3992.50,59.96,1351.62,2347.51,0.00,3519022103724.748535,3519022102224.166016,251,273,0.002742,0.003963,12539618,10620449,0,0,35717,0,1,1 +1773584919.021981,0.70,4,3992.50,59.96,1351.64,2347.50,0.00,0.000000,0.000000,251,273,0.002733,0.003964,12539683,10620530,0,0,35720,0,1,1 +1773584924.021490,1.00,4,3992.50,59.90,1351.07,2345.03,0.00,0.356187,3518782571751.890625,246,2,0.002759,0.003986,12539750,10620612,0,0,35722,0,1,1 +1773584929.021763,0.70,4,3992.50,59.30,1374.30,2321.64,0.00,16600.942385,18112.565912,1182430,1963045,0.002530,0.003362,12539810,10620683,0,0,35725,0,1,1 +1773584934.017569,0.60,4,3992.50,59.30,1374.06,2321.88,0.00,0.000000,0.031667,1182430,1963084,0.002736,0.004602,12539875,10620767,0,0,35727,0,1,1 +1773584939.022266,0.85,4,3992.50,59.10,1381.95,2313.99,0.00,3515134857360.656738,3515134855861.358398,251,273,0.002718,0.003961,12539939,10620848,0,0,35730,0,1,1 +1773584944.021836,0.70,4,3992.50,59.12,1381.26,2314.68,0.00,3518739410889.792969,3518739410880.592773,205,0,0.002747,0.003955,12540005,10620928,0,0,35732,0,1,1 +1773584949.017442,0.75,4,3992.50,58.73,1396.41,2299.54,0.00,3521532460543.574219,0.000000,75,0,0.003394,0.004903,12540072,10621012,0,0,35735,0,1,1 +1773584954.020561,17.89,4,3992.50,58.76,1395.38,2300.48,0.00,16603.011238,18113.629482,1183919,1964086,22.125979,0.099499,12547094,10626085,0,0,35737,0,1,1 +1773584959.021621,11.59,4,3992.50,59.27,1377.23,2320.53,0.00,3517691187762.323730,3517691186260.154297,251,273,14.076436,0.058717,12551401,10629208,0,0,35740,0,1,1 +1773584964.018556,3.87,4,3992.50,58.96,1389.27,2308.52,0.00,3520595566323.007324,3520595566313.982910,11,0,4.038052,0.024978,12552893,10630385,0,0,35742,0,1,1 +1773584969.021439,0.75,4,3992.50,58.97,1388.81,2308.97,0.00,16594.292361,18104.329645,1182430,1964477,0.004165,0.005717,12552974,10630491,0,0,35745,0,1,1 +1773584974.021477,0.75,4,3992.50,59.00,1387.85,2309.94,0.00,3518410781682.303223,3518410780180.425781,251,273,0.002734,0.003954,12553039,10630571,0,0,35747,0,1,1 +1773584979.017450,0.60,4,3992.50,59.00,1387.86,2309.93,0.00,3521272743336.987305,3521272743327.780762,205,0,0.003036,0.004523,12553110,10630663,0,0,35750,0,1,1 +1773584984.017452,1.05,4,3992.50,59.10,1371.04,2314.03,0.00,16613.234567,18125.681325,1183919,1964881,0.002520,0.003808,12553169,10630741,0,0,35752,0,1,1 +1773584989.021589,0.55,4,3992.50,59.10,1371.30,2313.80,0.00,3515529261773.797852,3515529260262.780762,11,0,0.002699,0.003860,12553233,10630821,0,0,35755,0,1,1 +1773584994.022067,0.60,4,3992.50,59.10,1371.30,2313.79,0.00,0.000000,0.000000,11,0,0.002721,0.003954,12553297,10630901,0,0,35757,0,1,1 +1773584999.017442,0.60,4,3992.50,59.10,1371.09,2314.00,0.00,16619.233830,18132.014304,1182430,1964807,0.002724,0.004612,12553361,10630986,0,0,35760,0,1,1 +1773585004.017484,0.85,4,3992.50,59.10,1371.12,2313.98,0.00,0.000000,0.049511,1182430,1964852,0.002742,0.003950,12553427,10631066,0,0,35762,0,1,1 +1773585009.019742,0.90,4,3992.50,58.74,1385.32,2299.79,0.00,3516849111937.245605,3516849110426.316895,205,0,0.002732,0.003962,12553492,10631147,0,0,35765,0,1,1 +1773585014.018562,1.15,4,3992.50,59.07,1372.58,2312.78,0.00,3519267513890.692383,0.000000,11,0,0.003706,0.004675,12553562,10631234,0,0,35767,0,1,1 +1773585019.022036,0.80,4,3992.50,59.10,1370.65,2313.99,0.00,0.180148,0.000000,205,0,0.002732,0.003961,12553627,10631315,0,0,35770,0,1,1 +1773585024.021386,1.81,4,3992.50,58.90,1378.37,2306.24,0.00,3518894639850.158691,0.000000,11,0,0.009447,0.006893,12553802,10631464,0,0,35772,0,1,1 +1773585029.022018,9.73,4,3992.50,58.88,1379.45,2305.13,0.00,16601.761394,18113.344246,1182430,1965293,10.070761,0.051645,12557225,10634019,0,0,35775,0,1,1 +1773585034.020945,19.31,4,3992.50,59.42,1358.01,2326.49,0.00,3519192400410.943848,3519192398898.791504,75,0,30.174279,0.126155,12566622,10641080,0,0,35777,0,1,1 +1773585039.019146,1.81,4,3992.50,59.09,1371.18,2313.32,0.00,3519703447540.264160,0.000000,11,0,0.013029,0.009504,12566885,10641304,0,0,35780,0,1,1 +1773585044.019570,1.15,4,3992.50,59.06,1372.70,2312.23,0.00,0.000000,0.000000,11,0,0.002492,0.003320,12566942,10641372,0,0,35782,0,1,1 +1773585049.017463,1.70,4,3992.50,58.40,1398.34,2286.56,0.00,0.000000,0.000000,11,0,0.002722,0.003966,12567006,10641453,0,0,35785,0,1,1 +1773585054.017448,0.75,4,3992.50,58.39,1398.65,2286.25,0.00,2.012311,0.000195,246,2,0.002135,0.003712,12567061,10641526,0,0,35787,0,1,1 +1773585059.017617,0.90,4,3992.50,58.44,1396.71,2288.19,0.00,16610.847475,18126.770529,1183919,1966632,0.002721,0.003964,12567125,10641607,0,0,35790,0,1,1 +1773585064.021469,0.75,4,3992.50,58.26,1403.84,2281.04,0.00,3515728723378.396484,3515728721865.546387,75,0,0.002706,0.004570,12567188,10641689,0,0,35792,0,1,1 +1773585069.018640,0.80,4,3992.50,58.29,1402.66,2282.23,0.00,0.126830,0.000000,205,0,0.002735,0.003966,12567253,10641770,0,0,35795,0,1,1 +1773585074.020339,1.20,4,3992.50,58.85,1380.94,2304.09,0.00,1.475378,10.671570,251,273,0.002733,0.003953,12567318,10641850,0,0,35797,0,1,1 +1773585079.021769,0.75,4,3992.50,58.61,1390.25,2294.65,0.00,3517431242540.359863,3517431242531.290039,75,0,0.002504,0.003330,12567376,10641919,0,0,35800,0,1,1 +1773585084.021477,0.80,4,3992.50,58.64,1389.10,2295.80,0.00,16604.777753,18117.956111,1182430,1966533,0.002721,0.003955,12567440,10641999,0,0,35802,0,1,1 +1773585089.018449,0.90,4,3992.50,58.64,1389.17,2295.71,0.00,3520568823474.174805,3520568821960.167969,75,0,0.002723,0.003967,12567504,10642080,0,0,35805,0,1,1 +1773585094.020570,0.95,4,3992.50,58.64,1389.10,2295.78,0.00,3516945746048.107910,0.000000,11,0,0.002732,0.003953,12567569,10642160,0,0,35807,0,1,1 +1773585099.021583,3.76,4,3992.50,59.29,1363.66,2321.23,0.00,1.655817,10.673033,251,273,2.022252,0.017238,12568400,10642782,0,0,35810,0,1,1 +1773585104.021386,21.95,4,3992.50,60.00,1338.80,2349.27,0.00,3518575188400.180176,3518575188391.107422,75,0,30.184804,0.134313,12578032,10649986,0,0,35812,0,1,1 +1773585109.017437,6.37,4,3992.50,59.52,1357.08,2330.32,0.00,1.603904,10.683634,251,273,8.054483,0.032417,12580581,10651824,0,0,35815,0,1,1 +1773585114.017590,1.40,4,3992.50,59.50,1357.73,2329.68,0.00,3518329948371.071777,3518329948362.053223,11,0,0.007953,0.006501,12580756,10651982,0,0,35817,0,1,1 +1773585119.017457,0.90,4,3992.50,59.15,1371.47,2315.93,0.00,1.656196,10.675478,251,273,0.002734,0.003964,12580821,10652063,0,0,35820,0,1,1 +1773585124.021565,0.80,4,3992.50,59.13,1372.19,2315.22,0.00,0.355860,3515548505867.873535,246,2,0.002731,0.003951,12580886,10652143,0,0,35822,0,1,1 +1773585129.021499,0.80,4,3992.50,59.14,1371.98,2315.43,0.00,16611.630949,18129.060191,1183919,1968230,0.002734,0.004608,12580951,10652228,0,0,35825,0,1,1 +1773585134.021799,1.35,4,3992.50,58.98,1364.81,2309.01,0.00,3518226096595.058105,3518226095077.739746,246,2,0.002733,0.003954,12581016,10652308,0,0,35827,0,1,1 +1773585139.021741,0.85,4,3992.50,58.79,1372.07,2301.58,0.00,16602.040428,18118.546805,1182430,1968040,0.002734,0.003964,12581081,10652389,0,0,35830,0,1,1 +1773585144.022061,0.80,4,3992.50,58.79,1372.08,2301.57,0.00,3518212477012.187500,3518212475497.627441,205,0,0.002741,0.003962,12581147,10652470,0,0,35832,0,1,1 +1773585149.019563,0.80,4,3992.50,58.78,1372.09,2301.56,0.00,16621.544604,18138.156240,1183919,1968396,0.002533,0.003403,12581207,10652544,0,0,35835,0,1,1 +1773585154.022216,0.85,4,3992.50,58.31,1390.50,2283.16,0.00,3516571310082.361328,3516571308567.491211,11,0,0.002705,0.003882,12581270,10652619,0,0,35837,0,1,1 +1773585159.022212,0.75,4,3992.50,58.41,1386.83,2286.82,0.00,0.053516,0.000000,75,0,0.002721,0.003964,12581334,10652700,0,0,35840,0,1,1 +1773585164.018973,1.35,4,3992.50,59.00,1366.87,2310.14,0.00,1.603675,10.682114,251,273,0.002735,0.003957,12581399,10652780,0,0,35842,0,1,1 +1773585169.017498,0.75,4,3992.50,58.43,1386.16,2287.52,0.00,0.000000,0.000000,251,273,0.002734,0.003965,12581464,10652861,0,0,35845,0,1,1 +1773585174.021700,9.06,4,3992.50,58.99,1363.90,2309.75,0.00,16597.816566,18103.544612,1183919,1968853,10.056113,0.047791,12584735,10655284,0,0,35847,0,1,1 +1773585179.017472,17.64,4,3992.50,58.80,1371.50,2302.07,0.00,3521414830221.916504,3521414828704.621094,11,0,26.184230,0.117507,12593133,10661532,0,0,35850,0,1,1 +1773585184.022032,4.76,4,3992.50,58.97,1364.70,2308.86,0.00,0.000000,0.000000,11,0,4.028205,0.021681,12594467,10662520,0,0,35852,0,1,1 +1773585189.021967,2.01,4,3992.50,58.82,1370.83,2302.74,0.00,1.656174,10.675334,251,273,0.005116,0.004677,12594574,10662624,0,0,35855,0,1,1 +1773585194.021492,1.10,4,3992.50,59.03,1365.80,2311.03,0.00,16603.783697,18110.679718,1182430,1969443,0.002734,0.004277,12594639,10662706,0,0,35857,0,1,1 +1773585199.017847,0.90,4,3992.50,59.03,1365.84,2310.97,0.00,3521003744863.469238,3521003743346.591797,11,0,0.002736,0.004289,12594704,10662789,0,0,35860,0,1,1 +1773585204.017589,0.95,4,3992.50,59.03,1365.85,2310.96,0.00,0.000000,0.000000,11,0,0.002734,0.003955,12594769,10662869,0,0,35862,0,1,1 +1773585209.021889,0.75,4,3992.50,58.83,1373.46,2303.35,0.00,16599.146745,18114.892372,1183919,1969860,0.002739,0.003969,12594835,10662951,0,0,35865,0,1,1 +1773585214.017465,1.05,4,3992.50,58.75,1376.79,2300.02,0.00,3521553421231.020508,3521553419712.627930,11,0,0.002736,0.003945,12594900,10663030,0,0,35867,0,1,1 +1773585219.019630,0.80,4,3992.50,58.76,1376.09,2300.71,0.00,0.000000,0.000000,11,0,0.002732,0.003950,12594965,10663110,0,0,35870,0,1,1 +1773585224.021925,1.20,4,3992.50,58.67,1383.45,2297.12,0.00,16596.243353,18111.757985,1182430,1969843,0.002529,0.003350,12595025,10663180,0,0,35872,0,1,1 +1773585229.017475,0.90,4,3992.50,58.76,1380.15,2300.42,0.00,3521571532510.449219,3521571530992.888184,11,0,0.002761,0.003999,12595092,10663263,0,0,35875,0,1,1 +1773585234.022077,0.85,4,3992.50,58.76,1379.98,2300.61,0.00,1.654630,10.665380,251,273,0.002739,0.003959,12595158,10663344,0,0,35877,0,1,1 +1773585239.022323,1.05,4,3992.50,58.76,1380.00,2300.58,0.00,16601.386843,18108.587184,1182430,1969942,0.002733,0.003964,12595223,10663425,0,0,35880,0,1,1 +1773585244.018577,0.90,4,3992.50,58.74,1380.96,2299.62,0.00,3521075052132.888672,3521075050615.404785,75,0,0.002736,0.003957,12595288,10663505,0,0,35882,0,1,1 +1773585249.021636,10.97,4,3992.50,59.39,1355.36,2325.17,0.00,16593.657932,18109.380248,1182430,1970428,12.084920,0.066583,12599460,10666604,0,0,35885,0,1,1 +1773585254.019988,14.46,4,3992.50,59.34,1357.10,2323.35,0.00,3519596887489.149414,3519596885970.041016,246,2,24.148348,0.103429,12607284,10672459,0,0,35887,0,1,1 +1773585259.022033,4.61,4,3992.50,58.85,1375.84,2304.24,0.00,3516998627017.368164,3516998627019.199707,205,0,4.029301,0.020480,12608660,10673459,0,0,35890,0,1,1 +1773585264.021624,1.00,4,3992.50,58.79,1378.17,2301.91,0.00,3518724828042.974121,0.000000,11,0,0.002505,0.003965,12608718,10673531,0,0,35892,0,1,1 +1773585269.018301,0.85,4,3992.50,58.81,1377.73,2302.34,0.00,1.657254,10.682296,251,273,0.003995,0.005579,12608796,10673635,0,0,35895,0,1,1 +1773585274.022185,0.70,4,3992.50,58.82,1377.25,2302.82,0.00,3515706390973.767578,3515706390964.755859,11,0,0.002731,0.003951,12608861,10673715,0,0,35897,0,1,1 +1773585279.021684,0.80,4,3992.50,58.84,1376.52,2303.55,0.00,0.000000,0.000000,11,0,0.003042,0.004527,12608933,10673808,0,0,35900,0,1,1 +1773585284.020107,1.15,4,3992.50,58.93,1373.25,2307.23,0.00,0.000000,0.000000,11,0,0.002734,0.003956,12608998,10673888,0,0,35902,0,1,1 +1773585289.021998,0.75,4,3992.50,58.94,1372.61,2307.75,0.00,16597.581669,18114.771049,1182430,1971470,0.002929,0.004495,12609069,10673980,0,0,35905,0,1,1 +1773585294.017499,0.70,4,3992.50,58.74,1380.70,2299.69,0.00,9.570135,10.698885,1183919,1971755,0.002736,0.003945,12609134,10674059,0,0,35907,0,1,1 +1773585299.017545,0.70,4,3992.50,58.79,1378.50,2301.89,0.00,3518404352187.235352,3518404350668.358398,11,0,0.002505,0.003331,12609192,10674128,0,0,35910,0,1,1 +1773585304.019864,0.80,4,3992.50,58.80,1378.27,2302.11,0.00,1.655385,10.670248,251,273,0.002740,0.003960,12609258,10674209,0,0,35912,0,1,1 +1773585309.019081,0.90,4,3992.50,58.80,1378.29,2302.11,0.00,16604.804275,18113.913858,1182430,1971587,0.002734,0.003965,12609323,10674290,0,0,35915,0,1,1 +1773585314.021612,1.15,4,3992.50,59.04,1374.86,2311.46,0.00,3516657135693.713379,3516657134176.588867,11,0,0.003716,0.004672,12609394,10674377,0,0,35917,0,1,1 +1773585319.021749,0.80,4,3992.50,59.04,1374.78,2311.39,0.00,0.000000,0.000000,11,0,0.002734,0.003964,12609459,10674458,0,0,35920,0,1,1 +1773585324.022221,18.60,4,3992.50,60.02,1336.34,2349.78,0.00,0.053511,0.000000,75,0,22.201210,0.108207,12616872,10680082,0,0,35922,0,1,1 +1773585329.021839,12.42,4,3992.50,58.95,1378.16,2307.90,0.00,0.126767,0.000000,205,0,18.056331,0.081136,12622754,10684427,0,0,35925,0,1,1 +1773585334.022061,0.80,4,3992.50,58.95,1378.05,2308.01,0.00,0.000000,0.000000,205,0,0.002505,0.003321,12622812,10684495,0,0,35927,0,1,1 +1773585339.021760,0.85,4,3992.50,58.93,1378.66,2307.40,0.00,1.832141,0.000195,246,2,0.002734,0.003964,12622877,10684576,0,0,35930,0,1,1 +1773585344.019023,1.20,4,3992.50,59.07,1373.54,2312.53,0.00,3520364492973.315430,3520364492975.148438,205,0,0.002506,0.003310,12622935,10684643,0,0,35932,0,1,1 +1773585349.017455,0.80,4,3992.50,59.00,1375.41,2309.91,0.00,16618.453955,18139.169730,1183919,1973020,0.002742,0.003973,12623001,10684725,0,0,35935,0,1,1 +1773585354.019971,0.75,4,3992.50,59.00,1375.45,2309.89,0.00,3516667791420.527344,3516667789901.232910,11,0,0.002720,0.003952,12623065,10684805,0,0,35937,0,1,1 +1773585359.019948,0.95,4,3992.50,58.81,1382.87,2302.46,0.00,0.000000,0.000000,11,0,0.002721,0.003952,12623129,10684885,0,0,35940,0,1,1 +1773585364.019598,0.75,4,3992.50,58.81,1382.87,2302.46,0.00,0.180286,0.000000,205,0,0.002734,0.003955,12623194,10684965,0,0,35942,0,1,1 +1773585369.022185,0.80,4,3992.50,58.81,1382.87,2302.45,0.00,16595.091932,18113.587379,1182430,1972873,0.002732,0.003962,12623259,10685046,0,0,35945,0,1,1 +1773585374.020043,1.15,4,3992.50,59.25,1362.64,2319.65,0.00,3519945524136.066895,3519945522616.134277,205,0,0.002743,0.003964,12623325,10685127,0,0,35947,0,1,1 +1773585379.021718,0.90,4,3992.50,59.04,1370.13,2311.46,0.00,1.475385,10.671619,251,273,0.002504,0.003329,12623383,10685196,0,0,35950,0,1,1 +1773585384.022028,0.75,4,3992.50,59.01,1371.38,2310.21,0.00,3518219098295.832520,3518219098286.813965,11,0,0.002733,0.003954,12623448,10685276,0,0,35952,0,1,1 +1773585389.021981,1.30,4,3992.50,58.82,1378.55,2303.02,0.00,0.053516,0.000000,75,0,0.005513,0.005375,12623560,10685388,0,0,35955,0,1,1 +1773585394.020575,18.53,4,3992.50,58.99,1371.93,2309.57,0.00,16608.480000,18128.824614,1182430,1973974,24.170414,0.118771,12631664,10691471,0,0,35957,0,1,1 +1773585399.018384,5.07,4,3992.50,58.50,1391.07,2290.40,0.00,0.000000,0.236432,1182430,1974121,8.045909,0.029361,12634141,10693309,0,0,35960,0,1,1 +1773585404.022155,1.40,4,3992.50,58.82,1376.59,2303.09,0.00,0.000000,0.050743,1182430,1974146,0.001380,0.000020,12634158,10693311,0,0,35962,0,1,1 +1773585409.017458,1.00,4,3992.50,58.53,1387.95,2291.67,0.00,3521744802319.396484,3521744800797.816406,11,0,0.001273,0.000030,12634177,10693314,0,0,35965,0,1,1 +1773585414.022324,0.90,4,3992.50,58.56,1386.73,2292.88,0.00,16587.718813,18106.729368,1182430,1974336,0.000056,0.000020,12634181,10693316,0,0,35967,0,1,1 +1773585419.021656,1.05,4,3992.50,58.44,1391.75,2287.87,0.00,0.000000,0.005665,1182430,1974341,0.000042,0.000030,12634184,10693319,0,0,35970,0,1,1 +1773585424.021981,0.90,4,3992.50,58.44,1391.74,2287.87,0.00,9.560902,10.720983,1183919,1974649,0.001287,0.000020,12634204,10693321,0,0,35972,0,1,1 +1773585429.021580,1.05,4,3992.50,58.46,1390.77,2288.85,0.00,3518719501950.394531,3518719500428.618164,11,0,0.000759,0.000408,12634217,10693333,0,0,35975,0,1,1 +1773585434.017458,1.30,4,3992.50,58.87,1374.93,2305.04,0.00,0.000000,0.000000,11,0,0.001591,0.000787,12634247,10693353,0,0,35977,0,1,1 +1773585439.017480,1.10,4,3992.50,58.87,1374.97,2305.00,0.00,16613.350513,18135.101629,1183919,1974734,0.001589,0.000796,12634277,10693374,0,0,35980,0,1,1 +1773585444.017491,6.72,4,3992.50,59.01,1369.51,2310.45,0.00,3518429130141.448730,3518429128619.514160,205,0,8.062250,0.044877,12637058,10695346,0,0,35982,0,1,1 +1773585449.017577,0.70,4,3992.50,58.93,1372.80,2307.15,0.00,1.475854,10.675013,251,273,0.003001,0.004239,12637143,10695447,0,0,35985,0,1,1 +1773585454.017563,1.05,4,3992.50,58.97,1371.35,2308.61,0.00,3518446890943.698242,3518446890934.679199,11,0,0.002742,0.003962,12637209,10695528,0,0,35987,0,1,1 +1773585459.017446,0.75,4,3992.50,58.98,1370.89,2309.08,0.00,2.012352,0.000195,246,2,0.000142,0.000674,12637218,10695535,0,0,35990,0,1,1 +1773585464.017449,1.00,4,3992.50,59.31,1357.84,2322.12,0.00,3518435038710.455566,3518435038712.467773,11,0,0.000093,0.000020,12637224,10695537,0,0,35992,0,1,1 +1773585469.018163,0.75,4,3992.50,59.12,1365.37,2314.66,0.00,0.180248,0.000000,205,0,0.000042,0.000030,12637227,10695540,0,0,35995,0,1,1 +1773585474.022112,0.75,4,3992.50,59.12,1365.38,2314.66,0.00,3515660596394.610352,0.000000,75,0,0.000075,0.000020,12637232,10695542,0,0,35997,0,1,1 +1773585479.017441,0.65,4,3992.50,59.12,1365.38,2314.65,0.00,3521726936422.869629,0.000000,11,0,0.000275,0.000030,12637250,10695545,0,0,36000,0,1,1 +1773585484.019285,0.80,4,3992.50,59.12,1365.39,2314.64,0.00,16607.298601,18128.964536,1183919,1975272,0.000306,0.000020,12637271,10695547,0,0,36002,0,1,1 +1773585489.022279,0.85,4,3992.50,59.12,1365.18,2314.85,0.00,3516332013521.983398,3516332012000.613770,75,0,0.004392,0.005232,12637357,10695640,0,0,36005,0,1,1 +1773585494.021548,1.30,4,3992.50,59.12,1374.02,2314.84,0.00,3518951644424.044922,0.000000,11,0,0.002734,0.003955,12637422,10695720,0,0,36007,0,1,1 +1773585499.019274,0.75,4,3992.50,59.12,1373.82,2314.79,0.00,0.000000,0.000000,11,0,0.002766,0.003987,12637489,10695803,0,0,36010,0,1,1 +1773585504.018585,5.72,4,3992.50,59.35,1365.02,2323.60,0.00,0.000000,0.000000,11,0,4.030501,0.024047,12638834,10696829,0,0,36012,0,1,1 +1773585509.020541,21.10,4,3992.50,59.87,1344.53,2343.98,0.00,16597.367693,18118.230113,1182430,1975782,32.179763,0.138324,12649082,10704328,0,0,36015,0,1,1 +1773585514.021878,4.12,4,3992.50,60.06,1337.02,2351.44,0.00,3517497330359.156738,3517497328838.105469,11,0,4.037480,0.026703,12650684,10705565,0,0,36017,0,1,1 +1773585519.020445,0.70,4,3992.50,59.69,1351.36,2337.11,0.00,0.180325,0.000000,205,0,0.000403,0.000664,12650702,10705580,0,0,36020,0,1,1 +1773585524.021948,1.20,4,3992.50,59.31,1365.28,2322.16,0.00,3517379809943.751953,0.000000,75,0,0.000061,0.000664,12650706,10705586,0,0,36022,0,1,1 +1773585529.021614,0.70,4,3992.50,59.10,1368.52,2313.84,0.00,3518672453248.680664,0.000000,11,0,0.000075,0.000030,12650711,10705589,0,0,36025,0,1,1 +1773585534.019193,0.65,4,3992.50,58.95,1374.49,2307.87,0.00,1.656955,10.680367,251,273,0.000042,0.000020,12650714,10705591,0,0,36027,0,1,1 +1773585539.019003,1.05,4,3992.50,58.95,1374.50,2307.87,0.00,0.000000,0.000000,251,273,0.000014,0.000030,12650715,10705594,0,0,36030,0,1,1 +1773585544.022088,0.70,4,3992.50,58.95,1374.50,2307.86,0.00,3516267931771.647949,3516267931762.454590,205,0,0.000089,0.000020,12650721,10705596,0,0,36032,0,1,1 +1773585549.017642,0.85,4,3992.50,58.91,1376.11,2306.27,0.00,1.833662,0.000195,246,2,0.002697,0.003949,12650784,10705676,0,0,36035,0,1,1 +1773585554.020290,1.10,4,3992.50,59.05,1371.34,2311.90,0.00,16593.059865,18116.846021,1182430,1976520,0.003399,0.004888,12650852,10705759,0,0,36037,0,1,1 +1773585559.018201,0.75,4,3992.50,59.05,1371.43,2311.86,0.00,3519907884417.151855,3519907882902.956543,251,273,0.002766,0.003986,12650919,10705842,0,0,36040,0,1,1 +1773585564.019618,0.90,4,3992.50,59.05,1371.20,2312.08,0.00,3517440907814.168945,3517440907805.152832,11,0,0.002733,0.003966,12650984,10705923,0,0,36042,0,1,1 +1773585569.018748,0.75,4,3992.50,59.05,1371.21,2312.07,0.00,16606.749381,18129.708892,1182430,1976652,0.002765,0.003992,12651051,10706006,0,0,36045,0,1,1 +1773585574.021458,4.26,4,3992.50,58.77,1382.38,2300.87,0.00,3516531016555.373535,3516531015031.493164,246,2,2.024768,0.016175,12651920,10706643,0,0,36047,0,1,1 +1773585579.018093,1.81,4,3992.50,58.76,1382.64,2300.64,0.00,16613.031484,18138.963324,1182430,1976884,0.000609,0.000569,12651946,10706670,0,0,36050,0,1,1 +1773585584.021878,2.10,4,3992.50,59.02,1372.42,2310.71,0.00,3515775625672.248047,3515775624150.507324,11,0,0.000000,0.000020,12651946,10706672,0,0,36052,0,1,1 +1773585589.021973,0.85,4,3992.50,58.92,1376.24,2306.78,0.00,0.000000,0.000000,11,0,0.000000,0.000352,12651946,10706677,0,0,36055,0,1,1 +1773585594.021908,0.75,4,3992.50,58.93,1375.77,2307.25,0.00,0.053516,0.000000,75,0,0.000000,0.000342,12651946,10706681,0,0,36057,0,1,1 +1773585599.017452,0.90,4,3992.50,58.93,1375.78,2307.24,0.00,0.126871,0.000000,205,0,0.000000,0.000030,12651946,10706684,0,0,36060,0,1,1 +1773585604.017478,0.85,4,3992.50,58.94,1375.30,2307.72,0.00,0.000000,0.000000,205,0,0.000000,0.000020,12651946,10706686,0,0,36062,0,1,1 +1773585609.022013,8.78,4,3992.50,58.90,1376.99,2306.01,0.00,3515248906949.511230,0.000000,75,0,10.038963,0.048291,12654965,10709031,0,0,36065,0,1,1 +1773585614.017475,2.06,4,3992.50,59.20,1366.14,2317.72,0.00,1.604092,10.684892,251,273,0.008504,0.021658,12655201,10709436,0,0,36067,0,1,1 +1773585619.021534,1.45,4,3992.50,59.19,1365.49,2317.54,0.00,3515582938733.832031,3515582938724.820801,11,0,0.007130,0.019651,12655421,10709813,0,0,36070,0,1,1 +1773585624.021825,14.56,4,3992.50,60.51,1313.72,2369.21,0.00,16603.060505,18126.396756,1182437,1977718,16.295131,0.101499,12661486,10714359,0,0,36072,0,1,1 +1773585629.017469,17.61,4,3992.50,60.00,1333.68,2349.20,0.00,3521504494532.786133,3521504493007.853516,205,0,30.030041,0.118345,12670591,10721202,0,0,36075,0,1,1 +1773585634.022060,1.75,4,3992.50,59.42,1356.49,2326.35,0.00,0.000000,0.000000,205,0,0.015209,0.010172,12670891,10721447,0,0,36077,0,1,1 +1773585639.018586,0.55,4,3992.50,59.15,1366.98,2315.88,0.00,3520883343289.946777,0.000000,11,0,0.000174,0.000030,12670902,10721450,0,0,36080,0,1,1 +1773585644.022113,0.90,4,3992.50,59.16,1371.56,2316.21,0.00,2.010886,0.000195,246,2,0.000061,0.000020,12670906,10721452,0,0,36082,0,1,1 +1773585649.021590,0.65,4,3992.50,59.16,1369.09,2316.43,0.00,3518805049278.296875,3518805049280.309570,11,0,0.000075,0.000030,12670911,10721455,0,0,36085,0,1,1 +1773585654.021708,0.45,4,3992.50,58.98,1376.52,2309.01,0.00,0.000000,0.000000,11,0,0.000042,0.000342,12670914,10721459,0,0,36087,0,1,1 +1773585659.022041,0.50,4,3992.50,58.99,1376.05,2309.47,0.00,0.000000,0.000000,11,0,0.000014,0.000352,12670915,10721464,0,0,36090,0,1,1 +1773585664.021818,0.65,4,3992.50,58.94,1377.78,2307.73,0.00,16614.324898,18140.240992,1183926,1979077,0.000089,0.000020,12670921,10721466,0,0,36092,0,1,1 +1773585669.019372,0.65,4,3992.50,58.95,1377.56,2307.95,0.00,3520159402800.191406,3520159401273.596191,11,0,0.002454,0.003289,12670976,10721533,0,0,36095,0,1,1 +1773585674.021802,1.05,4,3992.50,59.10,1369.88,2313.75,0.00,2.011327,0.000195,246,2,0.002743,0.003967,12671042,10721614,0,0,36097,0,1,1 +1773585679.022378,0.60,4,3992.50,59.10,1369.12,2313.96,0.00,0.000000,0.000000,246,2,0.002764,0.003984,12671109,10721697,0,0,36100,0,1,1 +1773585684.022308,0.60,4,3992.50,59.10,1369.14,2313.95,0.00,3518486486691.881836,3518486486693.840332,75,0,0.002734,0.003954,12671174,10721777,0,0,36102,0,1,1 +1773585689.017344,0.75,4,3992.50,58.68,1385.52,2297.60,0.00,0.126884,0.000000,205,0,0.002755,0.003983,12671240,10721859,0,0,36105,0,1,1 +1773585694.021562,9.28,4,3992.50,59.59,1349.84,2333.26,0.00,3515471330871.996094,0.000000,75,0,8.155663,0.045019,12673967,10724006,0,0,36107,0,1,1 +1773585699.021694,4.51,4,3992.50,59.11,1368.78,2314.32,0.00,16613.095453,18139.563391,1183926,1979734,5.932949,0.021711,12675839,10725255,0,0,36110,0,1,1 +1773585704.021756,1.25,4,3992.50,59.18,1362.79,2316.98,0.00,3518393131851.839355,3518393131850.856445,1182437,1979486,0.001129,0.000020,12675863,10725257,0,0,36112,0,1,1 +1773585709.017430,1.00,4,3992.50,59.18,1362.57,2316.90,0.00,3521483928762.332520,3521483927244.566895,251,273,0.001229,0.000030,12675894,10725260,0,0,36115,0,1,1 +1773585714.017495,0.75,4,3992.50,58.99,1369.97,2309.50,0.00,16602.151136,18118.712828,1182437,1979630,0.000198,0.000020,12675908,10725262,0,0,36117,0,1,1 +1773585719.021735,1.70,4,3992.50,58.85,1375.17,2304.27,0.00,3515456377756.863281,3515456376232.501465,75,0,0.000212,0.000351,12675923,10725267,0,0,36120,0,1,1 +1773585724.021915,0.80,4,3992.50,58.85,1375.19,2304.27,0.00,0.126753,0.000000,205,0,0.001171,0.000342,12675950,10725271,0,0,36122,0,1,1 +1773585729.021720,10.85,4,3992.50,59.65,1343.96,2335.41,0.00,0.000000,0.000000,205,0,12.074343,0.055542,12679775,10728135,0,0,36125,0,1,1 +1773585734.019574,8.23,4,3992.50,59.42,1352.37,2326.56,0.00,1.832818,0.000195,246,2,10.073412,0.061439,12683280,10730892,0,0,36127,0,1,1 +1773585739.019733,1.05,4,3992.50,59.39,1353.66,2325.26,0.00,16601.483191,18130.080105,1182438,1980446,0.004783,0.009687,12683408,10731083,0,0,36130,0,1,1 +1773585744.022207,5.83,4,3992.50,59.37,1354.38,2324.42,0.00,3516697034932.131836,3516697033406.253418,11,0,0.082914,0.048934,12685030,10732231,0,0,36132,0,1,1 +1773585749.022155,2.11,4,3992.50,58.69,1381.02,2297.92,0.00,16604.198594,18131.494410,1182438,1981067,0.025999,0.017423,12685574,10732653,0,0,36135,0,1,1 +1773585754.022265,1.10,4,3992.50,58.56,1386.03,2292.91,0.00,3518359904467.208008,3518359902939.908203,75,0,0.003792,0.006497,12685668,10732782,0,0,36137,0,1,1 +1773585759.021863,0.65,4,3992.50,58.62,1383.82,2295.12,0.00,0.126768,0.000000,205,0,0.001014,0.000663,12685682,10732797,0,0,36140,0,1,1 +1773585764.022213,0.95,4,3992.50,59.05,1374.84,2311.76,0.00,1.831903,0.000195,246,2,0.000151,0.000020,12685683,10732799,0,0,36142,0,1,1 +1773585769.020358,0.65,4,3992.50,59.04,1374.87,2311.70,0.00,3519742594119.729980,3519742594121.743164,11,0,0.000083,0.000030,12685689,10732802,0,0,36145,0,1,1 +1773585774.021778,0.45,4,3992.50,58.85,1382.52,2304.05,0.00,0.053500,0.000000,75,0,0.000028,0.000020,12685691,10732804,0,0,36147,0,1,1 +1773585779.021582,0.60,4,3992.50,58.85,1382.27,2304.30,0.00,0.000000,0.000000,75,0,0.000028,0.000030,12685693,10732807,0,0,36150,0,1,1 +1773585784.021826,0.65,4,3992.50,58.89,1381.06,2305.51,0.00,3518265910145.206543,0.000000,11,0,0.000056,0.000020,12685697,10732809,0,0,36152,0,1,1 +1773585789.021836,1.05,4,3992.50,58.89,1381.06,2305.50,0.00,0.000000,0.000000,11,0,0.006031,0.008726,12685838,10732974,0,0,36155,0,1,1 +1773585794.021735,2.51,4,3992.50,59.34,1357.68,2323.18,0.00,1.656186,10.675411,251,273,2.011124,0.010481,12686467,10733446,0,0,36157,0,1,1 +1773585799.022108,2.31,4,3992.50,59.07,1367.32,2312.79,0.00,0.000000,0.000000,251,273,2.016565,0.014860,12687206,10734027,0,0,36160,0,1,1 +1773585804.021666,0.70,4,3992.50,58.90,1374.22,2305.90,0.00,0.000000,0.000000,251,273,0.002721,0.003955,12687270,10734107,0,0,36162,0,1,1 +1773585809.017478,0.60,4,3992.50,58.90,1374.23,2305.89,0.00,16616.286175,18136.425576,1182438,1981709,0.002736,0.003968,12687335,10734188,0,0,36165,0,1,1 +1773585814.017584,0.65,4,3992.50,58.81,1377.59,2302.53,0.00,3518362635360.242188,3518362633832.389160,11,0,0.002742,0.003962,12687401,10734269,0,0,36167,0,1,1 +1773585819.017550,0.60,4,3992.50,58.84,1376.27,2303.85,0.00,16613.699767,18142.755760,1183927,1982032,0.000174,0.000030,12687412,10734272,0,0,36170,0,1,1 +1773585824.019836,0.55,4,3992.50,58.85,1376.11,2304.02,0.00,3516828759809.075195,3516828759808.011230,1182438,1981770,0.000061,0.000020,12687416,10734274,0,0,36172,0,1,1 +1773585829.020330,1.00,4,3992.50,58.81,1372.41,2302.72,0.00,3518089779506.213867,3518089777978.383789,11,0,0.000075,0.000030,12687421,10734277,0,0,36175,0,1,1 +1773585834.021884,0.50,4,3992.50,58.82,1372.18,2302.96,0.00,0.180217,0.000000,205,0,0.000042,0.000020,12687424,10734279,0,0,36177,0,1,1 +1773585839.017458,0.65,4,3992.50,58.82,1372.18,2302.96,0.00,1.833654,0.000195,246,2,0.000014,0.000030,12687425,10734282,0,0,36180,0,1,1 +1773585844.022094,0.60,4,3992.50,58.82,1372.18,2302.96,0.00,3515178107282.463379,10.665112,251,273,0.000089,0.000020,12687431,10734284,0,0,36182,0,1,1 +1773585849.019310,0.65,4,3992.50,58.82,1372.18,2302.95,0.00,0.356351,3520397547879.697754,246,2,0.002710,0.003942,12687495,10734364,0,0,36185,0,1,1 +1773585854.021724,1.00,4,3992.50,58.93,1367.92,2307.37,0.00,3516738932044.996094,10.669847,251,273,0.003412,0.005532,12687564,10734451,0,0,36187,0,1,1 +1773585859.020306,0.65,4,3992.50,58.93,1367.83,2307.31,0.00,3519435427055.787109,3519435427046.585449,205,0,0.002772,0.004028,12687632,10734536,0,0,36190,0,1,1 +1773585864.017580,18.07,4,3992.50,59.69,1338.00,2337.04,0.00,3520356608692.349121,0.000000,11,0,22.165620,0.107280,12695069,10740032,0,0,36192,0,1,1 +1773585869.022195,11.41,4,3992.50,59.83,1332.50,2342.52,0.00,0.000000,0.000000,11,0,18.093232,0.082424,12700960,10744495,0,0,36195,0,1,1 +1773585874.017496,0.70,4,3992.50,59.44,1347.85,2327.17,0.00,16629.215616,18160.476624,1183927,1983294,0.002720,0.003864,12701026,10744575,0,0,36197,0,1,1 +1773585879.021796,0.55,4,3992.50,59.23,1355.97,2319.05,0.00,3515414245375.098633,3515414243846.537598,75,0,0.000384,0.000663,12701043,10744590,0,0,36200,0,1,1 +1773585884.017449,0.90,4,3992.50,59.58,1342.58,2332.59,0.00,16618.416905,18148.724225,1182438,1983048,0.000079,0.000020,12701048,10744592,0,0,36202,0,1,1 +1773585889.018742,0.45,4,3992.50,59.59,1341.77,2333.20,0.00,9.559051,10.866721,1183927,1983334,0.000075,0.000030,12701053,10744595,0,0,36205,0,1,1 +1773585894.021047,0.55,4,3992.50,59.40,1349.42,2325.56,0.00,3516816146814.721680,3516816145285.195312,11,0,0.000042,0.000020,12701056,10744597,0,0,36207,0,1,1 +1773585899.021924,0.50,4,3992.50,59.41,1348.93,2326.04,0.00,0.180242,0.000000,205,0,0.000014,0.000030,12701057,10744600,0,0,36210,0,1,1 +1773585904.022079,0.65,4,3992.50,59.42,1348.48,2326.50,0.00,0.000000,0.000000,205,0,0.000075,0.000020,12701062,10744602,0,0,36212,0,1,1 +1773585909.022123,0.90,4,3992.50,59.42,1348.48,2326.49,0.00,1.832015,0.000195,246,2,0.002711,0.003902,12701126,10744680,0,0,36215,0,1,1 +1773585914.021830,1.15,4,3992.50,59.79,1340.12,2341.00,0.00,3518643342267.890137,3518643342269.849121,75,0,0.003697,0.004651,12701196,10744765,0,0,36217,0,1,1 +1773585919.017454,0.85,4,3992.50,59.78,1340.59,2340.50,0.00,16628.087614,18160.205013,1183927,1983768,0.002780,0.004700,12701264,10744856,0,0,36220,0,1,1 +1773585924.017455,0.80,4,3992.50,59.59,1348.13,2332.98,0.00,3518436352067.193359,3518436350536.290527,205,0,0.002734,0.003942,12701329,10744935,0,0,36222,0,1,1 +1773585929.017461,2.71,4,3992.50,59.20,1363.12,2318.00,0.00,1.475877,10.675183,251,273,0.008094,0.006180,12701483,10745068,0,0,36225,0,1,1 +1773585934.017480,18.70,4,3992.50,60.32,1320.16,2361.62,0.00,16602.303289,18123.114534,1182438,1984131,27.236868,0.126875,12710578,10751636,0,0,36227,0,1,1 +1773585939.017568,5.61,4,3992.50,59.78,1340.59,2340.40,0.00,3518375428607.533203,3518375427086.742676,251,273,7.009319,0.026110,12712733,10753240,0,0,36230,0,1,1 +1773585944.022328,1.35,4,3992.50,59.82,1338.34,2342.08,0.00,16586.579141,18106.238315,1182438,1984226,0.001335,0.000020,12712755,10753242,0,0,36232,0,1,1 +1773585949.022299,0.90,4,3992.50,59.56,1348.40,2332.00,0.00,3518457280559.173828,3518457279029.040039,11,0,0.001285,0.000030,12712774,10753245,0,0,36235,0,1,1 +1773585954.017456,0.90,4,3992.50,59.23,1361.25,2319.16,0.00,0.000000,0.000000,11,0,0.000075,0.000020,12712779,10753247,0,0,36237,0,1,1 +1773585959.018821,1.00,4,3992.50,59.06,1367.92,2312.48,0.00,16599.495138,18129.693052,1182438,1984500,0.000000,0.000030,12712779,10753250,0,0,36240,0,1,1 +1773585964.021914,0.90,4,3992.50,59.09,1366.71,2313.70,0.00,3516261778166.029297,3516261776636.180176,205,0,0.001331,0.000020,12712801,10753252,0,0,36242,0,1,1 +1773585969.018585,3.92,4,3992.50,59.48,1351.43,2328.94,0.00,1.833252,0.000195,246,2,4.030394,0.026217,12714210,10754415,0,0,36245,0,1,1 +1773585974.021974,2.01,4,3992.50,59.52,1347.26,2330.20,0.00,3516054534133.015625,3516054534135.026855,11,0,0.007061,0.015996,12714409,10754724,0,0,36247,0,1,1 +1773585979.017486,1.96,4,3992.50,59.17,1358.98,2316.79,0.00,0.000000,0.000000,11,0,0.009847,0.018429,12714666,10755086,0,0,36250,0,1,1 +1773585984.017471,1.86,4,3992.50,59.18,1358.55,2317.21,0.00,16613.633567,18145.697832,1183927,1985182,0.016703,0.015875,12714964,10755357,0,0,36252,0,1,1 +1773585989.022393,1.15,4,3992.50,58.92,1369.02,2306.75,0.00,3514977191432.454590,3514977189899.891113,246,2,1.984067,0.011745,12715568,10755908,0,0,36255,0,1,1 +1773585994.022073,0.85,4,3992.50,58.94,1368.30,2307.46,0.00,3518662421573.393066,3518662421575.225098,205,0,0.002754,0.003975,12715635,10755990,0,0,36257,0,1,1 +1773585999.017576,0.80,4,3992.50,58.94,1368.31,2307.45,0.00,16618.790950,18151.418611,1182438,1985048,0.002736,0.003968,12715700,10756071,0,0,36260,0,1,1 +1773586004.021629,1.15,4,3992.50,59.24,1364.14,2319.20,0.00,3515587642559.324707,3515587641029.315430,205,0,0.002731,0.003939,12715765,10756150,0,0,36262,0,1,1 +1773586009.022054,0.90,4,3992.50,59.17,1366.36,2316.58,0.00,3518137571216.961426,0.000000,11,0,0.002733,0.003976,12715830,10756232,0,0,36265,0,1,1 +1773586014.021539,0.75,4,3992.50,59.17,1366.12,2316.81,0.00,16605.735199,18137.182241,1182438,1985221,0.002505,0.003296,12715888,10756298,0,0,36267,0,1,1 +1773586019.021685,0.85,4,3992.50,59.17,1366.13,2316.80,0.00,9.561244,10.679278,1183927,1985503,0.002742,0.003972,12715954,10756380,0,0,36270,0,1,1 +1773586024.019766,0.85,4,3992.50,59.19,1365.41,2317.52,0.00,3519788221446.927734,3519788219911.918945,246,2,0.002735,0.003956,12716019,10756460,0,0,36272,0,1,1 +1773586029.017454,0.85,4,3992.50,59.00,1372.81,2310.12,0.00,16619.259683,18154.437746,1183927,1985556,0.002735,0.003966,12716084,10756541,0,0,36275,0,1,1 +1773586034.021867,1.20,4,3992.50,59.34,1364.05,2323.12,0.00,3515334489148.935547,3515334487617.831055,11,0,0.002731,0.003951,12716149,10756621,0,0,36277,0,1,1 +1773586039.021670,0.75,4,3992.50,59.33,1364.10,2323.08,0.00,0.180281,0.000000,205,0,0.002734,0.003964,12716214,10756702,0,0,36280,0,1,1 +1773586044.021981,0.80,4,3992.50,59.33,1364.11,2323.08,0.00,3518218389772.049316,0.000000,11,0,0.002721,0.003954,12716278,10756782,0,0,36282,0,1,1 +1773586049.022284,0.90,4,3992.50,59.35,1363.62,2323.55,0.00,0.053512,0.000000,75,0,0.002513,0.003982,12716337,10756856,0,0,36285,0,1,1 +1773586054.021566,7.63,4,3992.50,59.66,1351.21,2335.97,0.00,1.602867,10.676728,251,273,6.089297,0.036410,12718509,10758429,0,0,36287,0,1,1 +1773586059.020247,14.89,4,3992.50,59.14,1371.63,2315.47,0.00,3519365555574.270508,3519365555565.249512,11,0,22.101925,0.095766,12725533,10763637,0,0,36290,0,1,1 +1773586064.023540,9.75,4,3992.50,59.15,1370.39,2316.00,0.00,1.655063,10.668172,251,273,12.066036,0.052627,12729438,10766491,0,0,36292,0,1,1 +1773586069.021678,1.46,4,3992.50,59.19,1369.02,2317.38,0.00,3519747314443.987305,3519747314434.965332,11,0,0.006362,0.006166,12729573,10766625,0,0,36295,0,1,1 +1773586074.022300,0.90,4,3992.50,59.01,1376.20,2310.20,0.00,0.053509,0.000000,75,0,0.002741,0.003962,12729639,10766706,0,0,36297,0,1,1 +1773586079.021615,0.75,4,3992.50,59.01,1375.97,2310.42,0.00,3518919882936.457520,0.000000,11,0,0.002734,0.003965,12729704,10766787,0,0,36300,0,1,1 +1773586084.021506,0.90,4,3992.50,59.01,1376.00,2310.40,0.00,0.180277,0.000000,205,0,0.002734,0.003954,12729769,10766867,0,0,36302,0,1,1 +1773586089.021805,0.95,4,3992.50,59.01,1376.02,2310.38,0.00,3518226407311.373047,0.000000,11,0,0.005577,0.005894,12729881,10766976,0,0,36305,0,1,1 +1773586094.022155,1.25,4,3992.50,59.30,1368.43,2321.88,0.00,1.656036,10.674448,251,273,0.002517,0.003320,12729940,10767044,0,0,36307,0,1,1 +1773586099.022423,0.80,4,3992.50,59.32,1367.61,2322.70,0.00,16601.478987,18125.451295,1182439,1986942,0.002733,0.003964,12730005,10767125,0,0,36310,0,1,1 +1773586104.022346,0.70,4,3992.50,59.33,1367.38,2322.93,0.00,0.000000,0.028516,1182439,1986977,0.002734,0.003954,12730070,10767205,0,0,36312,0,1,1 +1773586109.022301,0.65,4,3992.50,59.17,1373.78,2316.52,0.00,3518468618539.194336,3518468617004.066895,246,2,0.002734,0.003964,12730135,10767286,0,0,36315,0,1,1 +1773586114.021406,0.65,4,3992.50,59.18,1373.09,2317.22,0.00,3519066715723.002930,3519066715725.015625,11,0,0.002742,0.004607,12730201,10767371,0,0,36317,0,1,1 +1773586119.021794,0.65,4,3992.50,59.21,1372.13,2318.18,0.00,0.000000,0.000000,11,0,0.002733,0.003964,12730266,10767452,0,0,36320,0,1,1 +1773586124.018263,1.05,4,3992.50,59.34,1367.45,2323.30,0.00,0.053553,0.000000,75,0,0.002736,0.003957,12730331,10767532,0,0,36322,0,1,1 +1773586129.021306,9.88,4,3992.50,60.00,1341.63,2349.02,0.00,0.000000,0.000000,75,0,10.073176,0.055445,12733811,10770129,0,0,36325,0,1,1 +1773586134.021938,20.85,4,3992.50,60.23,1332.29,2358.32,0.00,3517992498747.781250,0.000000,11,0,30.174314,0.130327,12743369,10777264,0,0,36327,0,1,1 +1773586139.017475,1.10,4,3992.50,60.02,1340.86,2349.76,0.00,16628.428844,18164.879743,1183928,1988504,0.001659,0.002462,12743408,10777314,0,0,36330,0,1,1 +1773586144.017479,0.70,4,3992.50,59.83,1348.00,2342.62,0.00,3518434502778.333008,3518434501243.201172,75,0,0.002558,0.003808,12743470,10777392,0,0,36332,0,1,1 +1773586149.021583,0.70,4,3992.50,59.83,1348.19,2342.43,0.00,0.000000,0.000000,75,0,0.002739,0.003969,12743536,10777474,0,0,36335,0,1,1 +1773586154.018655,1.26,4,3992.50,59.53,1366.27,2330.55,0.00,3520498640382.520996,0.000000,11,0,0.003176,0.004245,12743597,10777544,0,0,36337,0,1,1 +1773586159.021717,0.90,4,3992.50,59.21,1378.71,2318.13,0.00,0.000000,0.000000,11,0,0.002732,0.003962,12743662,10777625,0,0,36340,0,1,1 +1773586164.017571,0.65,4,3992.50,59.21,1378.71,2318.12,0.00,1.657527,10.684053,251,273,0.002736,0.003958,12743727,10777705,0,0,36342,0,1,1 +1773586169.022295,0.80,4,3992.50,59.21,1378.50,2318.34,0.00,16596.251147,18121.520792,1183928,1988901,0.003038,0.004515,12743799,10777797,0,0,36345,0,1,1 +1773586174.021646,0.75,4,3992.50,59.03,1385.68,2311.16,0.00,3518893631898.614258,3518893631897.535645,1182439,1988664,0.003861,0.005157,12743873,10777891,0,0,36347,0,1,1 +1773586179.022304,0.80,4,3992.50,59.03,1385.69,2311.15,0.00,3517974801634.374512,3517974800097.913574,246,2,0.002733,0.004608,12743938,10777976,0,0,36350,0,1,1 +1773586184.020763,1.25,4,3992.50,59.36,1372.80,2324.17,0.00,3519521214376.227051,3519521214378.186523,75,0,0.002742,0.003976,12744004,10778058,0,0,36352,0,1,1 +1773586189.022259,0.75,4,3992.50,59.38,1371.95,2324.87,0.00,0.000000,0.000000,75,0,0.002491,0.003330,12744061,10778127,0,0,36355,0,1,1 +1773586194.017464,0.80,4,3992.50,59.38,1371.97,2324.87,0.00,0.126879,0.000000,205,0,0.002200,0.003747,12744120,10778202,0,0,36357,0,1,1 +1773586199.019884,15.89,4,3992.50,59.90,1351.51,2345.22,0.00,0.000000,0.000000,205,0,18.119080,0.090338,12750141,10782710,0,0,36360,0,1,1 +1773586204.018337,14.70,4,3992.50,59.77,1356.50,2340.18,0.00,0.000000,0.000000,205,0,22.132649,0.092181,12757063,10787879,0,0,36362,0,1,1 +1773586209.021563,1.40,4,3992.50,59.56,1364.85,2331.83,0.00,3516168780020.705566,0.000000,11,0,0.008010,0.007405,12757229,10788040,0,0,36365,0,1,1 +1773586214.017556,1.15,4,3992.50,59.45,1365.36,2327.70,0.00,0.180418,0.000000,205,0,0.002767,0.003983,12757296,10788122,0,0,36367,0,1,1 +1773586219.022156,0.85,4,3992.50,59.26,1372.52,2319.96,0.00,16588.583109,18123.536849,1182439,1990182,0.003691,0.004663,12757366,10788209,0,0,36370,0,1,1 +1773586224.021735,0.85,4,3992.50,59.19,1374.86,2317.61,0.00,0.000000,0.004297,1182439,1990190,0.002734,0.003955,12757431,10788289,0,0,36372,0,1,1 +1773586229.021753,0.80,4,3992.50,59.19,1374.90,2317.58,0.00,3518424588578.667480,3518424587042.429688,75,0,0.002505,0.003331,12757489,10788358,0,0,36375,0,1,1 +1773586234.022151,0.75,4,3992.50,59.19,1375.09,2317.38,0.00,1.958633,0.000195,246,2,0.002733,0.003954,12757554,10788438,0,0,36377,0,1,1 +1773586239.017473,0.80,4,3992.50,59.19,1375.10,2317.37,0.00,3521731542217.724121,3521731542219.738770,11,0,0.002736,0.003968,12757619,10788519,0,0,36380,0,1,1 +1773586244.017448,1.20,4,3992.50,59.57,1362.43,2332.36,0.00,0.000000,0.000000,11,0,0.002734,0.004598,12757684,10788603,0,0,36382,0,1,1 +1773586249.018561,0.80,4,3992.50,59.57,1362.33,2332.32,0.00,0.000000,0.000000,11,0,0.002733,0.003963,12757749,10788684,0,0,36385,0,1,1 +1773586254.017459,0.75,4,3992.50,59.58,1362.11,2332.55,0.00,0.180313,0.000000,205,0,0.002734,0.003943,12757814,10788763,0,0,36387,0,1,1 +1773586259.021230,0.85,4,3992.50,59.58,1362.12,2332.54,0.00,1.474767,10.667150,251,273,0.003358,0.004222,12757892,10788852,0,0,36390,0,1,1 +1773586264.017463,0.80,4,3992.50,59.49,1365.48,2329.20,0.00,0.356421,3521090148893.359375,246,2,0.002507,0.003311,12757950,10788919,0,0,36392,0,1,1 +1773586269.021393,1.30,4,3992.50,59.23,1375.55,2319.14,0.00,3515674231362.006836,3515674231364.018066,11,0,0.004521,0.004712,12758045,10789019,0,0,36395,0,1,1 +1773586274.021576,20.71,4,3992.50,60.28,1328.69,2360.18,0.00,16603.417296,18140.086434,1182439,1990871,24.155746,0.115026,12765780,10794840,0,0,36397,0,1,1 +1773586279.022026,10.42,4,3992.50,59.29,1367.31,2321.51,0.00,3518120163916.843750,3518120162380.256836,11,0,16.090327,0.065525,12770870,10798672,0,0,36400,0,1,1 +1773586284.021555,1.35,4,3992.50,59.35,1365.07,2323.74,0.00,0.053521,0.000000,75,0,0.007595,0.006392,12771024,10798813,0,0,36402,0,1,1 +1773586289.020578,0.90,4,3992.50,59.35,1365.07,2323.73,0.00,0.000000,0.000000,75,0,0.002532,0.003402,12771084,10798887,0,0,36405,0,1,1 +1773586294.019995,0.75,4,3992.50,58.88,1383.62,2305.20,0.00,16605.905376,18143.688751,1182439,1991612,0.002703,0.003880,12771147,10798962,0,0,36407,0,1,1 +1773586299.021304,1.00,4,3992.50,58.91,1382.42,2306.41,0.00,3517516660281.701172,3517516658742.541016,246,2,0.002733,0.003963,12771212,10799043,0,0,36410,0,1,1 +1773586304.018436,1.20,4,3992.50,59.11,1370.87,2314.20,0.00,16611.539488,18152.187500,1182439,1991720,0.002735,0.003957,12771277,10799123,0,0,36412,0,1,1 +1773586309.017669,0.80,4,3992.50,59.12,1370.05,2314.77,0.00,3518977591110.908691,3518977589572.920410,11,0,0.002734,0.004621,12771342,10799209,0,0,36415,0,1,1 +1773586314.017475,0.85,4,3992.50,59.17,1368.36,2316.47,0.00,0.000000,0.000000,11,0,0.002734,0.003954,12771407,10799289,0,0,36417,0,1,1 +1773586319.017560,0.85,4,3992.50,59.17,1368.16,2316.67,0.00,0.053515,0.000000,75,0,0.002734,0.003952,12771472,10799369,0,0,36420,0,1,1 +1773586324.017556,0.80,4,3992.50,59.17,1368.17,2316.65,0.00,1.602638,10.675205,251,273,0.002505,0.003321,12771530,10799437,0,0,36422,0,1,1 +1773586329.017561,0.80,4,3992.50,59.17,1368.18,2316.64,0.00,0.000000,0.000000,251,273,0.002742,0.003960,12771596,10799518,0,0,36425,0,1,1 +1773586334.021734,1.20,4,3992.50,59.38,1359.84,2324.97,0.00,3515503084229.170898,3515503084220.159668,11,0,0.002744,0.003951,12771662,10799598,0,0,36427,0,1,1 +1773586339.022370,0.70,4,3992.50,59.27,1364.22,2320.61,0.00,1.655942,10.673838,251,273,0.002733,0.003951,12771727,10799678,0,0,36430,0,1,1 +1773586344.019386,4.82,4,3992.50,59.37,1360.19,2324.62,0.00,3520538300640.641602,3520538300631.617188,11,0,2.022629,0.016778,12772483,10800262,0,0,36432,0,1,1 +1773586349.017566,20.23,4,3992.50,60.39,1320.21,2364.42,0.00,0.180339,0.000000,205,0,32.206957,0.145839,12782946,10808268,0,0,36435,0,1,1 +1773586354.021868,5.92,4,3992.50,59.39,1359.51,2325.07,0.00,0.000000,0.000000,205,0,6.035736,0.028277,12784960,10809778,0,0,36437,0,1,1 +1773586359.017690,1.30,4,3992.50,59.24,1365.11,2319.52,0.00,16627.301391,18168.401068,1183928,1993110,0.006142,0.004989,12785086,10809893,0,0,36440,0,1,1 +1773586364.017587,1.30,4,3992.50,59.28,1351.06,2320.83,0.00,3518509008558.999512,3518509007017.324219,246,2,0.002513,0.003341,12785145,10809963,0,0,36442,0,1,1 +1773586369.022069,0.80,4,3992.50,59.02,1361.15,2310.65,0.00,3515286637452.371094,10.665441,251,273,0.002731,0.003961,12785210,10810044,0,0,36445,0,1,1 +1773586374.021446,0.85,4,3992.50,59.01,1361.58,2310.21,0.00,3518875838162.375000,3518875838153.301270,75,0,0.002734,0.004599,12785275,10810128,0,0,36447,0,1,1 +1773586379.022057,0.80,4,3992.50,58.82,1368.93,2302.87,0.00,1.958550,0.000195,246,2,0.002733,0.003951,12785340,10810208,0,0,36450,0,1,1 +1773586384.021702,0.90,4,3992.50,58.64,1375.88,2295.91,0.00,0.000000,0.000000,246,2,0.002734,0.003955,12785405,10810288,0,0,36452,0,1,1 +1773586389.017571,0.90,4,3992.50,58.65,1375.65,2296.14,0.00,3521346472092.604492,3521346472094.437988,205,0,0.004911,0.004977,12785514,10810395,0,0,36455,0,1,1 +1773586394.021994,1.25,4,3992.50,58.49,1384.63,2289.96,0.00,16598.725180,18138.103969,1183928,1993709,0.002731,0.003926,12785579,10810473,0,0,36457,0,1,1 +1773586399.021368,0.85,4,3992.50,58.54,1382.27,2291.86,0.00,3518877536863.226074,3518877535322.292480,205,0,0.002492,0.003344,12785636,10810543,0,0,36460,0,1,1 +1773586404.022054,0.80,4,3992.50,58.49,1384.31,2289.84,0.00,3517954410448.510742,0.000000,75,0,0.002741,0.003962,12785702,10810624,0,0,36462,0,1,1 +1773586409.017440,0.70,4,3992.50,58.53,1382.77,2291.39,0.00,16628.880138,18170.987160,1183928,1993786,0.002736,0.003968,12785767,10810705,0,0,36465,0,1,1 +1773586414.020033,0.90,4,3992.50,58.53,1382.48,2291.69,0.00,3516613272387.264648,3516613272386.158203,1182439,1993518,0.002720,0.003952,12785831,10810785,0,0,36467,0,1,1 +1773586419.021916,7.82,4,3992.50,59.47,1345.74,2328.37,0.00,3517112777740.304199,3517112776201.307129,75,0,10.064531,0.049450,12789220,10813317,0,0,36470,0,1,1 +1773586424.017469,18.69,4,3992.50,59.94,1327.17,2346.86,0.00,3521569425845.818359,0.000000,11,0,26.185887,0.117869,12797770,10819611,0,0,36472,0,1,1 +1773586429.019494,4.22,4,3992.50,58.76,1371.68,2300.68,0.00,1.655482,10.670872,251,273,4.032479,0.021241,12799242,10820647,0,0,36475,0,1,1 +1773586434.021562,1.00,4,3992.50,58.67,1375.29,2297.08,0.00,0.000000,0.000000,251,273,0.002783,0.004002,12799311,10820730,0,0,36477,0,1,1 +1773586439.021542,0.95,4,3992.50,58.68,1375.09,2297.28,0.00,0.000000,0.000000,251,273,0.002513,0.003673,12799370,10820803,0,0,36480,0,1,1 +1773586444.018571,0.85,4,3992.50,58.49,1382.24,2290.12,0.00,3520529008643.667480,3520529008634.643066,11,0,0.002735,0.004279,12799435,10820885,0,0,36482,0,1,1 +1773586449.017446,0.90,4,3992.50,58.49,1382.27,2290.10,0.00,0.000000,0.000000,11,0,0.002734,0.003965,12799500,10820966,0,0,36485,0,1,1 +1773586454.021949,1.25,4,3992.50,59.12,1355.67,2314.69,0.00,16589.109686,18128.460580,1182441,1994677,0.002731,0.003951,12799565,10821046,0,0,36487,0,1,1 +1773586459.019372,0.80,4,3992.50,58.87,1365.41,2304.70,0.00,3520252032166.479004,3520252030622.933594,246,2,0.003405,0.004889,12799633,10821129,0,0,36490,0,1,1 +1773586464.022299,0.80,4,3992.50,58.87,1365.22,2304.88,0.00,0.000000,0.000000,246,2,0.002727,0.003960,12799698,10821210,0,0,36492,0,1,1 +1773586469.021612,0.60,4,3992.50,58.67,1372.90,2297.21,0.00,16613.883856,18158.215697,1183930,1995247,0.003042,0.004494,12799770,10821300,0,0,36495,0,1,1 +1773586474.021717,0.65,4,3992.50,58.66,1373.62,2296.48,0.00,3518363477629.021484,3518363476086.946289,11,0,0.002709,0.003865,12799835,10821380,0,0,36497,0,1,1 +1773586479.017448,0.80,4,3992.50,58.70,1371.72,2298.38,0.00,0.000000,0.000000,11,0,0.002736,0.003968,12799900,10821461,0,0,36500,0,1,1 +1773586484.018598,1.20,4,3992.50,58.90,1364.69,2305.93,0.00,0.180232,0.000000,205,0,0.002733,0.003953,12799965,10821541,0,0,36502,0,1,1 +1773586489.021552,0.95,4,3992.50,58.49,1380.46,2290.18,0.00,3516359905203.634277,0.000000,75,0,0.002740,0.003970,12800031,10821623,0,0,36505,0,1,1 +1773586494.022031,11.97,4,3992.50,59.29,1349.07,2321.49,0.00,3518100203028.498047,0.000000,11,0,12.230365,0.068625,12804403,10824922,0,0,36507,0,1,1 +1773586499.021371,6.58,4,3992.50,59.26,1350.34,2320.21,0.00,0.053523,0.000000,75,0,9.922196,0.040978,12807551,10827226,0,0,36510,0,1,1 +1773586504.021537,13.98,4,3992.50,60.21,1313.16,2357.34,0.00,0.000000,0.000000,75,0,18.107933,0.078845,12813237,10831433,0,0,36512,0,1,1 +1773586509.022280,0.95,4,3992.50,59.65,1334.88,2335.62,0.00,16601.531950,18143.237009,1182441,1996063,0.002930,0.005127,12813308,10831528,0,0,36515,0,1,1 +1773586514.021841,1.20,4,3992.50,59.71,1332.60,2337.93,0.00,3518746195198.774902,3518746193656.759277,11,0,0.002531,0.003367,12813368,10831600,0,0,36517,0,1,1 +1773586519.022385,0.95,4,3992.50,58.50,1379.98,2290.49,0.00,16611.806507,18155.054095,1183930,1996720,0.003686,0.004659,12813437,10831686,0,0,36520,0,1,1 +1773586524.018660,0.75,4,3992.50,58.55,1378.06,2292.43,0.00,3521060347019.524902,3521060345472.945312,246,2,0.001953,0.003574,12813488,10831757,0,0,36522,0,1,1 +1773586529.018115,0.90,4,3992.50,58.56,1377.66,2292.84,0.00,16603.848670,18148.482418,1182441,1996498,0.002734,0.003965,12813553,10831838,0,0,36525,0,1,1 +1773586534.019847,0.85,4,3992.50,58.58,1376.93,2293.57,0.00,3517218576634.976074,3517218575092.876465,205,0,0.002733,0.003953,12813618,10831918,0,0,36527,0,1,1 +1773586539.020296,0.80,4,3992.50,58.55,1378.04,2292.46,0.00,1.475747,10.674238,251,273,0.002741,0.003959,12813684,10831999,0,0,36530,0,1,1 +1773586544.021600,1.25,4,3992.50,58.88,1366.69,2305.25,0.00,0.000000,0.000000,251,273,0.002504,0.003320,12813742,10832067,0,0,36532,0,1,1 +1773586549.022074,0.85,4,3992.50,58.88,1366.59,2305.44,0.00,16600.822002,18134.271186,1182441,1996628,0.002733,0.004000,12813807,10832149,0,0,36535,0,1,1 +1773586554.022141,0.60,4,3992.50,58.89,1366.39,2305.67,0.00,3518390183068.092285,3518390181525.319336,205,0,0.002734,0.003954,12813872,10832229,0,0,36537,0,1,1 +1773586559.021356,0.65,4,3992.50,58.90,1366.14,2305.89,0.00,3518989445304.267090,0.000000,11,0,0.002734,0.003965,12813937,10832310,0,0,36540,0,1,1 +1773586564.021791,0.65,4,3992.50,58.90,1366.16,2305.90,0.00,1.656008,10.674266,251,273,0.002741,0.003962,12814003,10832391,0,0,36542,0,1,1 +1773586569.021538,9.94,4,3992.50,59.29,1350.59,2321.44,0.00,0.356170,3518615447152.892578,246,2,8.087111,0.047314,12816936,10834583,0,0,36545,0,1,1 +1773586574.017544,20.16,4,3992.50,59.17,1355.84,2316.59,0.00,3521249948832.119141,3521249948834.079102,75,0,32.198537,0.137943,12827326,10842247,0,0,36547,0,1,1 +1773586579.021910,0.85,4,3992.50,58.98,1362.78,2309.11,0.00,0.000000,0.000000,75,0,0.004564,0.005240,12827428,10842359,0,0,36550,0,1,1 +1773586584.019343,0.70,4,3992.50,58.99,1362.33,2309.57,0.00,16622.820390,18167.570398,1183972,1998149,0.002199,0.003746,12827487,10842434,0,0,36552,0,1,1 +1773586589.021627,0.55,4,3992.50,58.99,1362.33,2309.57,0.00,3516830431648.999512,3516830431648.115723,1182483,1998094,0.002670,0.003944,12827548,10842514,0,0,36555,0,1,1 +1773586594.017567,0.80,4,3992.50,58.99,1362.33,2309.56,0.00,9.569294,10.850901,1183972,1998377,0.002736,0.003958,12827613,10842594,0,0,36557,0,1,1 +1773586599.018604,0.65,4,3992.50,58.99,1362.35,2309.54,0.00,3517707979143.921875,3517707977599.762207,205,0,0.002733,0.003963,12827678,10842675,0,0,36560,0,1,1 +1773586604.018690,0.95,4,3992.50,59.18,1355.07,2317.16,0.00,3518376317751.438477,0.000000,11,0,0.002734,0.003954,12827743,10842755,0,0,36562,0,1,1 +1773586609.022392,0.70,4,3992.50,59.18,1355.11,2317.09,0.00,2.010816,0.000195,246,2,0.002503,0.003328,12827801,10842824,0,0,36565,0,1,1 +1773586614.021483,0.60,4,3992.50,59.06,1359.96,2312.25,0.00,3519076990452.200195,10.676941,251,273,0.002730,0.003963,12827866,10842905,0,0,36567,0,1,1 +1773586619.018186,0.65,4,3992.50,59.11,1358.04,2314.16,0.00,3520758583029.070801,3520758583020.046387,11,0,0.002735,0.003967,12827931,10842986,0,0,36570,0,1,1 +1773586624.021543,0.70,4,3992.50,59.11,1358.05,2314.14,0.00,2.010954,0.000195,246,2,0.002732,0.003952,12827996,10843066,0,0,36572,0,1,1 +1773586629.017561,0.60,4,3992.50,59.11,1358.07,2314.14,0.00,16615.999275,18162.829155,1182483,1998446,0.002736,0.003967,12828061,10843147,0,0,36575,0,1,1 +1773586634.022281,1.00,4,3992.50,59.20,1353.99,2317.82,0.00,3515118759879.680176,3515118758337.549805,11,0,0.002731,0.003951,12828126,10843227,0,0,36577,0,1,1 +1773586639.021987,1.05,4,3992.50,59.03,1360.68,2311.12,0.00,0.053519,0.000000,75,0,0.005331,0.005464,12828235,10843337,0,0,36580,0,1,1 +1773586644.022325,7.99,4,3992.50,59.21,1353.52,2318.29,0.00,16603.603831,18147.541986,1182483,1998905,6.056925,0.038088,12830477,10845060,0,0,36582,0,1,1 +1773586649.019611,18.94,4,3992.50,61.08,1280.47,2391.27,0.00,9.566716,10.834689,1183972,1999681,30.366813,0.132594,12840267,10852500,0,0,36585,0,1,1 +1773586654.017451,3.86,4,3992.50,59.49,1342.69,2329.00,0.00,3519957987301.307129,3519957985755.382812,11,0,3.856248,0.021699,12841637,10853557,0,0,36587,0,1,1 +1773586659.017470,0.75,4,3992.50,59.44,1344.41,2327.29,0.00,1.656146,10.675155,251,273,0.002734,0.003964,12841702,10853638,0,0,36590,0,1,1 +1773586664.020222,1.05,4,3992.50,59.64,1345.09,2335.09,0.00,16593.989502,18128.929409,1182483,1999784,0.002740,0.003960,12841768,10853719,0,0,36592,0,1,1 +1773586669.019227,0.75,4,3992.50,59.61,1346.32,2333.86,0.00,3519137205680.666992,3519137204133.543457,246,2,0.002722,0.003965,12841832,10853800,0,0,36595,0,1,1 +1773586674.017452,0.65,4,3992.50,59.60,1346.84,2333.35,0.00,16608.660670,18156.250664,1182483,2000032,0.002722,0.003956,12841896,10853880,0,0,36597,0,1,1 +1773586679.022023,0.60,4,3992.50,59.44,1352.77,2327.40,0.00,3515224040581.242676,3515224039035.614746,246,2,0.002731,0.003948,12841961,10853960,0,0,36600,0,1,1 +1773586684.021616,0.65,4,3992.50,59.44,1352.80,2327.39,0.00,16613.679306,18162.027757,1183972,2000382,0.002505,0.003334,12842019,10854029,0,0,36602,0,1,1 +1773586689.017457,0.85,4,3992.50,59.46,1352.34,2327.84,0.00,3521365817144.114746,3521365815594.603027,246,2,0.005590,0.005908,12842132,10854139,0,0,36605,0,1,1 +1773586694.020903,1.05,4,3992.50,59.62,1344.79,2334.22,0.00,16600.888583,18148.113579,1183972,2000439,0.002732,0.003952,12842197,10854219,0,0,36607,0,1,1 +1773586699.021870,0.60,4,3992.50,59.66,1343.25,2335.64,0.00,3517756385397.646484,3517756383851.486328,205,0,0.002733,0.003976,12842262,10854301,0,0,36610,0,1,1 +1773586704.021821,0.70,4,3992.50,59.66,1343.27,2335.62,0.00,0.000000,0.000000,205,0,0.002734,0.004598,12842327,10854385,0,0,36612,0,1,1 +1773586709.018796,0.60,4,3992.50,59.65,1343.28,2335.61,0.00,1.833140,0.000195,246,2,0.002735,0.003967,12842392,10854466,0,0,36615,0,1,1 +1773586714.021739,0.65,4,3992.50,59.65,1343.28,2335.62,0.00,16592.998320,18139.325758,1182483,2000230,0.002511,0.003327,12842451,10854535,0,0,36617,0,1,1 +1773586719.017535,13.99,4,3992.50,59.98,1330.54,2348.30,0.00,9.569569,10.857664,1183972,2000844,16.229068,0.082296,12848003,10858552,0,0,36620,0,1,1 +1773586724.017677,14.99,4,3992.50,60.74,1300.83,2377.91,0.00,3518337741527.103516,3518337739980.454102,205,0,24.044920,0.104292,12855805,10864324,0,0,36622,0,1,1 +1773586729.021843,2.60,4,3992.50,60.43,1320.20,2366.10,0.00,16600.328524,18146.536163,1183972,2001599,0.002503,0.003328,12855863,10864393,0,0,36625,0,1,1 +1773586734.021848,0.70,4,3992.50,59.74,1347.23,2339.07,0.00,3518433405732.841309,3518433404183.515137,246,2,0.002792,0.004012,12855933,10864477,0,0,36627,0,1,1 +1773586739.019954,0.70,4,3992.50,59.75,1346.93,2339.37,0.00,3519770429636.441406,3519770429638.400879,75,0,0.002506,0.003344,12855991,10864547,0,0,36630,0,1,1 +1773586744.021543,0.90,4,3992.50,59.74,1347.16,2339.13,0.00,16599.450082,18145.426120,1182483,2001538,0.002733,0.003953,12856056,10864627,0,0,36632,0,1,1 +1773586749.021847,0.65,4,3992.50,59.75,1346.93,2339.37,0.00,0.000000,0.018261,1182483,2001547,0.002733,0.003964,12856121,10864708,0,0,36635,0,1,1 +1773586754.022232,1.05,4,3992.50,59.73,1355.97,2338.50,0.00,3518165985306.266113,3518165983759.899902,75,0,0.002733,0.003987,12856186,10864789,0,0,36637,0,1,1 +1773586759.021713,0.65,4,3992.50,59.43,1367.68,2326.72,0.00,3518802685805.305176,0.000000,11,0,0.003412,0.004882,12856255,10864872,0,0,36640,0,1,1 +1773586764.018605,0.60,4,3992.50,59.43,1367.70,2326.71,0.00,0.180386,0.000000,205,0,0.002735,0.003957,12856320,10864952,0,0,36642,0,1,1 +1773586769.021589,0.80,4,3992.50,59.43,1367.71,2326.70,0.00,3516338551139.007812,0.000000,11,0,0.003745,0.005196,12856388,10865039,0,0,36645,0,1,1 +1773586774.022104,0.65,4,3992.50,59.24,1375.11,2319.29,0.00,0.000000,0.000000,11,0,0.002938,0.004486,12856460,10865130,0,0,36647,0,1,1 +1773586779.019896,0.65,4,3992.50,59.19,1377.08,2317.32,0.00,16612.112178,18159.432597,1182483,2001726,0.002735,0.003966,12856525,10865211,0,0,36650,0,1,1 +1773586784.017465,1.10,4,3992.50,59.43,1362.85,2326.65,0.00,3520148805496.594727,3520148803949.204590,11,0,0.002743,0.003964,12856591,10865292,0,0,36652,0,1,1 +1773586789.017448,19.30,4,3992.50,59.92,1343.09,2346.18,0.00,16614.398282,18162.370826,1183972,2002551,26.168477,0.121932,12865144,10871608,0,0,36655,0,1,1 +1773586794.022388,9.29,4,3992.50,59.91,1343.58,2345.70,0.00,3514964151797.547363,3514964150251.054688,75,0,14.079112,0.065452,12869892,10875154,0,0,36657,0,1,1 +1773586799.018995,0.65,4,3992.50,59.53,1358.43,2330.88,0.00,0.000000,0.000000,75,0,0.003048,0.004522,12869964,10875246,0,0,36660,0,1,1 +1773586804.021930,1.30,4,3992.50,59.59,1356.25,2333.06,0.00,16594.983445,18141.683735,1182483,2002855,0.002740,0.003960,12870030,10875327,0,0,36662,0,1,1 +1773586809.017884,0.90,4,3992.50,58.96,1381.04,2308.29,0.00,9.569266,10.866605,1183972,2003281,0.002933,0.004500,12870101,10875419,0,0,36665,0,1,1 +1773586814.018815,1.20,4,3992.50,59.20,1372.77,2317.88,0.00,3517782712313.017090,3517782710764.454102,11,0,0.002764,0.003991,12870168,10875502,0,0,36667,0,1,1 +1773586819.021648,0.80,4,3992.50,59.10,1376.56,2313.83,0.00,0.053485,0.000000,75,0,0.003468,0.004023,12870231,10875576,0,0,36670,0,1,1 +1773586824.021973,0.60,4,3992.50,59.11,1376.07,2314.30,0.00,3518208533068.555664,0.000000,11,0,0.002505,0.003320,12870289,10875644,0,0,36672,0,1,1 +1773586829.022091,0.75,4,3992.50,59.12,1375.87,2314.55,0.00,0.000000,0.000000,11,0,0.002566,0.003826,12870352,10875724,0,0,36675,0,1,1 +1773586834.022003,0.75,4,3992.50,59.12,1375.89,2314.52,0.00,0.000000,0.000000,11,0,0.002734,0.004598,12870417,10875808,0,0,36677,0,1,1 +1773586839.018734,0.65,4,3992.50,59.12,1375.70,2314.72,0.00,1.657236,10.682179,251,273,0.002735,0.003967,12870482,10875889,0,0,36680,0,1,1 +1773586844.017455,0.85,4,3992.50,59.22,1373.49,2318.52,0.00,3519337654648.113770,3519337654639.092773,11,0,0.002505,0.003322,12870540,10875957,0,0,36682,0,1,1 +1773586849.021351,0.80,4,3992.50,59.22,1373.61,2318.48,0.00,1.654863,10.666883,251,273,0.002739,0.003969,12870606,10876039,0,0,36685,0,1,1 +1773586854.017452,4.16,4,3992.50,59.22,1373.51,2318.59,0.00,0.000000,0.000000,251,273,2.019879,0.014704,12871352,10876640,0,0,36687,0,1,1 +1773586859.020566,21.50,4,3992.50,60.56,1321.02,2370.99,0.00,3516247868483.504883,3516247868474.437988,75,0,34.183141,0.150312,12882336,10884870,0,0,36690,0,1,1 +1773586864.019689,6.22,4,3992.50,59.55,1360.57,2331.41,0.00,1.959133,0.000195,246,2,4.036119,0.023704,12883803,10885935,0,0,36692,0,1,1 +1773586869.020056,1.65,4,3992.50,59.36,1367.77,2324.20,0.00,16601.545937,18152.565943,1182483,2004599,0.007890,0.006878,12883963,10886085,0,0,36695,0,1,1 +1773586874.021426,1.15,4,3992.50,59.32,1364.27,2322.49,0.00,3517474069186.064453,3517474067637.366211,11,0,0.002741,0.003961,12884029,10886166,0,0,36697,0,1,1 +1773586879.017501,0.95,4,3992.50,59.16,1369.97,2316.21,0.00,1.657453,10.683581,251,273,0.002507,0.003333,12884087,10886235,0,0,36700,0,1,1 +1773586884.018492,0.85,4,3992.50,59.19,1368.95,2317.23,0.00,3517740231270.493164,3517740231261.476562,11,0,0.002733,0.003954,12884152,10886315,0,0,36702,0,1,1 +1773586889.017435,0.85,4,3992.50,59.20,1368.23,2317.95,0.00,0.053527,0.000000,75,0,0.002722,0.003965,12884216,10886396,0,0,36705,0,1,1 +1773586894.021343,0.80,4,3992.50,59.20,1368.25,2317.94,0.00,1.601385,10.666859,251,273,0.002731,0.003951,12884281,10886476,0,0,36707,0,1,1 +1773586899.017559,0.90,4,3992.50,59.21,1368.05,2318.14,0.00,3521101967583.265137,3521101967574.058594,205,0,0.002744,0.004620,12884347,10886562,0,0,36710,0,1,1 +1773586904.017601,1.25,4,3992.50,59.42,1359.93,2326.25,0.00,1.832016,0.000195,246,2,0.002734,0.003955,12884412,10886642,0,0,36712,0,1,1 +1773586909.017479,0.95,4,3992.50,58.82,1383.20,2302.98,0.00,3518522954583.542480,10.675260,251,273,0.002721,0.003964,12884476,10886723,0,0,36715,0,1,1 +1773586914.017560,0.85,4,3992.50,58.85,1381.99,2304.20,0.00,0.356147,3518380748712.974609,246,2,0.002505,0.003321,12884534,10886791,0,0,36717,0,1,1 +1773586919.018227,0.75,4,3992.50,58.86,1381.54,2304.65,0.00,3517967478606.128418,3517967478607.959961,205,0,0.002741,0.003972,12884600,10886873,0,0,36720,0,1,1 +1773586924.021939,0.75,4,3992.50,58.86,1381.55,2304.64,0.00,1.830672,0.000195,246,2,0.002732,0.003951,12884665,10886953,0,0,36722,0,1,1 +1773586929.022245,6.07,4,3992.50,58.98,1376.95,2309.23,0.00,16611.312766,18164.366631,1183972,2005625,4.039599,0.028875,12886196,10888066,0,0,36725,0,1,1 +1773586934.017438,23.05,4,3992.50,59.66,1348.63,2335.92,0.00,3521822996123.604980,3521822994568.961426,246,2,36.249542,0.153238,12897782,10896540,0,0,36727,0,1,1 +1773586939.017431,1.50,4,3992.50,58.92,1377.56,2307.01,0.00,3518441815928.901367,3518441815930.913574,11,0,0.008043,0.007082,12897947,10896696,0,0,36730,0,1,1 +1773586944.017454,0.70,4,3992.50,58.92,1377.56,2307.02,0.00,2.012296,0.000195,246,2,0.001502,0.002312,12897985,10896744,0,0,36732,0,1,1 +1773586949.021779,0.85,4,3992.50,58.92,1377.58,2307.00,0.00,3515396404349.931152,3515396404351.941895,11,0,0.002731,0.003961,12898050,10896825,0,0,36735,0,1,1 +1773586954.017446,0.85,4,3992.50,58.92,1377.60,2306.98,0.00,0.000000,0.000000,11,0,0.002736,0.003958,12898115,10896905,0,0,36737,0,1,1 +1773586959.017566,0.75,4,3992.50,58.92,1377.61,2306.96,0.00,2.012256,0.000195,246,2,0.002734,0.003964,12898180,10896986,0,0,36740,0,1,1 +1773586964.019440,1.40,4,3992.50,59.17,1363.08,2316.53,0.00,0.000000,0.000000,246,2,0.002720,0.004597,12898244,10897070,0,0,36742,0,1,1 +1773586969.022410,0.80,4,3992.50,59.04,1368.07,2311.53,0.00,3516348285612.097656,3516348285614.108887,11,0,0.002740,0.003970,12898310,10897152,0,0,36745,0,1,1 +1773586974.020180,0.85,4,3992.50,59.03,1368.45,2311.15,0.00,16621.753896,18175.031723,1183973,2007100,0.002506,0.003322,12898368,10897220,0,0,36747,0,1,1 +1773586979.018475,0.85,4,3992.50,59.04,1368.21,2311.38,0.00,3519637481568.503418,3519637480015.388672,11,0,0.002735,0.003966,12898433,10897301,0,0,36750,0,1,1 +1773586984.022090,0.85,4,3992.50,59.04,1368.23,2311.37,0.00,16602.337476,18153.863224,1183973,2007175,0.002732,0.003951,12898498,10897381,0,0,36752,0,1,1 +1773586989.017451,0.95,4,3992.50,59.04,1368.01,2311.59,0.00,3521704450050.743164,3521704448496.600586,75,0,0.004920,0.004985,12898608,10897489,0,0,36755,0,1,1 +1773586994.017444,1.20,4,3992.50,59.25,1360.37,2319.67,0.00,16614.310956,18167.095128,1183973,2007229,0.002734,0.003954,12898673,10897569,0,0,36757,0,1,1 +1773586999.017450,12.04,4,3992.50,59.87,1336.23,2343.87,0.00,3518432868115.044434,3518432866562.138184,205,0,12.089493,0.062712,12902810,10900554,0,0,36760,0,1,1 +1773587004.022023,19.85,4,3992.50,59.35,1356.25,2323.62,0.00,3515222025118.686523,0.000000,75,0,28.144098,0.123450,12911925,10907339,0,0,36762,0,1,1 +1773587009.022017,0.90,4,3992.50,59.13,1364.66,2315.20,0.00,16614.307962,18167.726230,1183973,2008300,0.002734,0.003964,12911990,10907420,0,0,36765,0,1,1 +1773587014.018992,0.95,4,3992.50,59.11,1365.53,2314.34,0.00,3520567121295.027832,3520567119740.671387,75,0,0.003362,0.004205,12912068,10907507,0,0,36767,0,1,1 +1773587019.021277,0.75,4,3992.50,59.13,1364.95,2314.92,0.00,16597.140233,18148.998481,1182484,2008212,0.002504,0.003342,12912126,10907577,0,0,36770,0,1,1 +1773587024.021339,1.30,4,3992.50,58.91,1369.78,2306.61,0.00,3518393820335.775391,3518393818792.299316,251,273,0.002734,0.003954,12912191,10907657,0,0,36772,0,1,1 +1773587029.022243,0.85,4,3992.50,59.14,1360.79,2315.51,0.00,3517800771180.262695,3517800771171.245605,11,0,0.002721,0.004607,12912255,10907742,0,0,36775,0,1,1 +1773587034.022198,0.90,4,3992.50,59.11,1361.95,2314.35,0.00,16614.489234,18168.566132,1183973,2008765,0.002784,0.004017,12912324,10907826,0,0,36777,0,1,1 +1773587039.022121,0.85,4,3992.50,58.49,1386.41,2289.92,0.00,3518491875967.909668,3518491874411.810547,246,2,0.002276,0.002697,12912375,10907883,0,0,36780,0,1,1 +1773587044.021711,1.15,4,3992.50,58.45,1388.02,2288.32,0.00,3518725313666.585938,10.675874,251,273,0.002742,0.003963,12912441,10907964,0,0,36782,0,1,1 +1773587049.017577,0.70,4,3992.50,58.48,1386.68,2289.66,0.00,3521348555635.479492,3521348555626.399414,75,0,0.002736,0.003968,12912506,10908045,0,0,36785,0,1,1 +1773587054.022026,1.20,4,3992.50,58.87,1371.07,2304.87,0.00,1.957048,0.000195,246,2,0.002731,0.003951,12912571,10908125,0,0,36787,0,1,1 +1773587059.021920,0.85,4,3992.50,58.87,1370.89,2304.85,0.00,3518511726737.345703,3518511726739.357910,11,0,0.003403,0.004886,12912639,10908208,0,0,36790,0,1,1 +1773587064.017447,0.80,4,3992.50,58.87,1370.91,2304.84,0.00,2.014106,0.000195,246,2,0.002723,0.003933,12912703,10908286,0,0,36792,0,1,1 +1773587069.017442,15.15,4,3992.50,59.06,1363.25,2312.43,0.00,3518440485253.147461,3518440485254.979492,205,0,18.122764,0.089017,12918755,10912762,0,0,36795,0,1,1 +1773587074.019283,14.95,4,3992.50,58.70,1377.29,2298.27,0.00,3517142593010.582520,0.000000,75,0,22.130503,0.100804,12926019,10918276,0,0,36797,0,1,1 +1773587079.017456,0.70,4,3992.50,58.70,1377.34,2298.25,0.00,0.126804,0.000000,205,0,0.002735,0.003966,12926084,10918357,0,0,36800,0,1,1 +1773587084.021910,1.20,4,3992.50,59.09,1363.00,2313.50,0.00,0.000000,0.000000,205,0,0.002731,0.003951,12926149,10918437,0,0,36802,0,1,1 +1773587089.017809,0.55,4,3992.50,59.01,1365.34,2310.34,0.00,0.000000,0.000000,205,0,0.002736,0.003967,12926214,10918518,0,0,36805,0,1,1 +1773587094.021580,0.75,4,3992.50,58.82,1372.75,2302.93,0.00,16601.638030,18156.251652,1183973,2010399,0.002732,0.004595,12926279,10918602,0,0,36807,0,1,1 +1773587099.017463,0.70,4,3992.50,58.83,1372.29,2303.38,0.00,3521336560787.106445,3521336559230.165039,75,0,0.003036,0.004523,12926350,10918694,0,0,36810,0,1,1 +1773587104.021672,0.70,4,3992.50,58.83,1372.32,2303.36,0.00,3515477994814.789551,0.000000,11,0,0.002511,0.003326,12926409,10918763,0,0,36812,0,1,1 +1773587109.017562,0.85,4,3992.50,58.84,1372.09,2303.58,0.00,2.013960,0.000195,246,2,0.002704,0.003866,12926473,10918843,0,0,36815,0,1,1 +1773587114.021930,1.15,4,3992.50,58.86,1371.28,2304.54,0.00,3515365857637.513672,10.665681,251,273,0.002762,0.003976,12926540,10918925,0,0,36817,0,1,1 +1773587119.022175,0.80,4,3992.50,58.86,1371.15,2304.50,0.00,3518265001068.243164,3518265001059.171387,75,0,0.003686,0.004659,12926609,10919011,0,0,36820,0,1,1 +1773587124.021919,0.70,4,3992.50,58.88,1370.20,2305.46,0.00,3518617084107.103027,0.000000,11,0,0.002734,0.003955,12926674,10919091,0,0,36822,0,1,1 +1773587129.017861,0.95,4,3992.50,58.88,1370.21,2305.45,0.00,0.000000,0.000000,11,0,0.002736,0.003967,12926739,10919172,0,0,36825,0,1,1 +1773587134.021608,1.30,4,3992.50,58.72,1376.50,2299.17,0.00,1.654912,10.667202,251,273,0.003872,0.003716,12926819,10919255,0,0,36827,0,1,1 +1773587139.020555,20.18,4,3992.50,60.21,1318.17,2357.43,0.00,3519178094407.403320,3519178094398.382812,11,0,30.196726,0.138131,12936845,10926697,0,0,36830,0,1,1 +1773587144.017457,8.94,4,3992.50,60.46,1303.34,2367.33,0.00,0.000000,0.000000,11,0,10.079812,0.051720,12940325,10929281,0,0,36832,0,1,1 +1773587149.017459,0.90,4,3992.50,60.12,1316.98,2353.74,0.00,0.000000,0.000000,11,0,0.002505,0.003343,12940383,10929351,0,0,36835,0,1,1 +1773587154.019350,0.75,4,3992.50,59.89,1325.77,2344.95,0.00,0.000000,0.000000,11,0,0.002733,0.003953,12940448,10929431,0,0,36837,0,1,1 +1773587159.017537,0.90,4,3992.50,59.72,1332.70,2338.02,0.00,16610.800163,18167.327662,1182484,2011698,0.002735,0.004610,12940513,10929516,0,0,36840,0,1,1 +1773587164.017458,0.70,4,3992.50,59.53,1340.06,2330.65,0.00,3518492605723.823242,3518492604176.854492,251,273,0.002734,0.003954,12940578,10929596,0,0,36842,0,1,1 +1773587169.017985,1.00,4,3992.50,58.85,1366.57,2304.15,0.00,3518066817660.187012,3518066817650.988770,205,0,0.002741,0.003972,12940644,10929678,0,0,36845,0,1,1 +1773587174.017583,1.20,4,3992.50,59.07,1362.61,2312.74,0.00,16605.934678,18162.325222,1182484,2011784,0.002734,0.003955,12940709,10929758,0,0,36847,0,1,1 +1773587179.022002,0.70,4,3992.50,58.91,1368.88,2306.55,0.00,3515329756780.964844,3515329755235.264648,251,273,0.002731,0.003973,12940774,10929840,0,0,36850,0,1,1 +1773587184.021776,0.70,4,3992.50,58.94,1367.88,2307.59,0.00,16603.875329,18151.050524,1182484,2011830,0.002492,0.003308,12940831,10929907,0,0,36852,0,1,1 +1773587189.019478,0.90,4,3992.50,58.72,1376.55,2298.90,0.00,3520054874330.212402,3520054872782.395508,251,273,0.002493,0.003320,12940888,10929975,0,0,36855,0,1,1 +1773587194.021492,0.80,4,3992.50,58.73,1376.16,2299.29,0.00,16605.993853,18153.635253,1183973,2012166,0.002733,0.003953,12940953,10930055,0,0,36857,0,1,1 +1773587199.018572,1.25,4,3992.50,58.72,1376.53,2298.91,0.00,3520493289199.806152,3520493287641.612305,11,0,0.002514,0.003341,12941012,10930125,0,0,36860,0,1,1 +1773587204.020387,3.46,4,3992.50,59.49,1346.28,2329.18,0.00,16598.753739,18154.517716,1182484,2012011,2.018752,0.015233,12941787,10930731,0,0,36862,0,1,1 +1773587209.018833,23.89,4,3992.50,59.74,1336.30,2339.00,0.00,9.564497,10.856793,1183973,2012897,34.217508,0.149625,12952631,10938816,0,0,36865,0,1,1 +1773587214.019550,4.02,4,3992.50,59.06,1363.04,2312.27,0.00,3517932372210.083008,3517932372209.588379,1182484,2013079,4.035084,0.025885,12954162,10939973,0,0,36867,0,1,1 +1773587219.021471,0.80,4,3992.50,59.09,1361.82,2313.49,0.00,3517086250609.508301,3517086249052.927246,75,0,0.002745,0.003963,12954228,10940054,0,0,36870,0,1,1 +1773587224.021526,0.75,4,3992.50,59.09,1361.61,2313.70,0.00,16604.543383,18161.719176,1182484,2013094,0.002734,0.004598,12954293,10940138,0,0,36872,0,1,1 +1773587229.021686,0.65,4,3992.50,59.09,1361.62,2313.68,0.00,3518324413093.204590,3518324411535.935059,205,0,0.002729,0.003972,12954358,10940220,0,0,36875,0,1,1 +1773587234.022248,0.90,4,3992.50,59.29,1354.74,2321.30,0.00,1.475713,10.673996,251,273,0.002733,0.003954,12954423,10940300,0,0,36877,0,1,1 +1773587239.021665,0.85,4,3992.50,59.31,1354.14,2321.93,0.00,16605.056441,18153.744787,1182484,2013328,0.002747,0.003952,12954489,10940380,0,0,36880,0,1,1 +1773587244.021621,0.65,4,3992.50,59.31,1353.91,2322.15,0.00,0.000000,0.030078,1182484,2013334,0.002263,0.002700,12954539,10940437,0,0,36882,0,1,1 +1773587249.021582,0.70,4,3992.50,59.31,1353.94,2322.13,0.00,3518464309786.549316,3518464308228.980469,11,0,0.002734,0.003964,12954604,10940518,0,0,36885,0,1,1 +1773587254.017482,0.70,4,3992.50,59.15,1360.14,2315.93,0.00,16618.406509,18177.329298,1182484,2013436,0.002507,0.003323,12954662,10940586,0,0,36887,0,1,1 +1773587259.017483,0.70,4,3992.50,59.15,1360.16,2315.92,0.00,3518436771473.437012,3518436769915.739258,75,0,0.002734,0.003964,12954727,10940667,0,0,36890,0,1,1 +1773587264.019473,1.40,4,3992.50,59.25,1356.78,2319.80,0.00,3517037458924.424316,0.000000,11,0,0.002741,0.003961,12954793,10940748,0,0,36892,0,1,1 +1773587269.021541,1.60,4,3992.50,59.26,1356.32,2320.27,0.00,1.655467,10.670780,251,273,0.002720,0.003963,12954857,10940829,0,0,36895,0,1,1 +1773587274.021841,7.63,4,3992.50,59.65,1340.98,2335.57,0.00,16602.127408,18150.963741,1182484,2013815,8.056385,0.040521,12957549,10942803,0,0,36897,0,1,1 +1773587279.018573,20.53,4,3992.50,59.16,1360.12,2316.36,0.00,3520738460305.511719,3520738458755.569336,251,273,32.221315,0.141651,12968135,10950498,0,0,36900,0,1,1 +1773587284.017619,1.55,4,3992.50,59.05,1364.64,2311.82,0.00,16606.289631,18155.735204,1182484,2014449,0.010329,0.008194,12968342,10950680,0,0,36902,0,1,1 +1773587289.019200,1.10,4,3992.50,59.08,1363.22,2313.23,0.00,3517325440274.229492,3517325438716.372559,205,0,0.006503,0.009077,12968483,10950841,0,0,36905,0,1,1 +1773587294.021474,1.30,4,3992.50,59.30,1355.32,2321.73,0.00,3516837711000.106445,0.000000,11,0,0.003427,0.005861,12968570,10950958,0,0,36907,0,1,1 +1773587299.018705,0.85,4,3992.50,59.19,1359.60,2317.45,0.00,16613.978799,18173.243688,1182484,2014500,0.003880,0.007124,12968670,10951098,0,0,36910,0,1,1 +1773587304.017540,1.00,4,3992.50,59.00,1367.02,2310.03,0.00,3519257404486.193848,3519257402927.375488,75,0,0.003866,0.007124,12968769,10951238,0,0,36912,0,1,1 +1773587309.022144,0.80,4,3992.50,59.00,1367.05,2310.00,0.00,1.956987,0.000195,246,2,0.003900,0.007126,12968871,10951379,0,0,36915,0,1,1 +1773587314.021924,0.95,4,3992.50,59.06,1364.88,2312.16,0.00,0.000000,0.000000,246,2,0.003420,0.005855,12968957,10951495,0,0,36917,0,1,1 +1773587319.022292,0.85,4,3992.50,59.06,1364.89,2312.15,0.00,3518177692614.778320,3518177692616.610352,205,0,0.003878,0.007132,12969057,10951636,0,0,36920,0,1,1 +1773587324.017673,1.21,4,3992.50,59.35,1355.34,2323.66,0.00,1.833726,0.000195,246,2,0.003890,0.007124,12969158,10951776,0,0,36922,0,1,1 +1773587329.021652,0.90,4,3992.50,59.35,1355.30,2323.65,0.00,16599.117473,18160.246306,1183973,2015412,0.003875,0.007114,12969258,10951916,0,0,36925,0,1,1 +1773587334.022139,0.80,4,3992.50,59.23,1359.88,2319.08,0.00,3518094762454.793457,3518094762453.714844,1182484,2015157,0.003483,0.005929,12969349,10952037,0,0,36927,0,1,1 +1773587339.018637,0.90,4,3992.50,59.26,1358.97,2319.98,0.00,3520903104654.060059,3520903103091.673340,246,2,0.003868,0.007004,12969448,10952177,0,0,36930,0,1,1 +1773587344.018785,8.84,4,3992.50,59.25,1359.20,2319.71,0.00,0.000000,0.000000,246,2,8.054629,0.041311,12972115,10954208,0,0,36932,0,1,1 +1773587349.022264,9.52,4,3992.50,59.27,1358.46,2320.43,0.00,3515990051677.299316,3515990051679.310547,11,0,10.068305,0.056545,12975534,10956763,0,0,36935,0,1,1 +1773587354.021607,14.59,4,3992.50,59.20,1357.89,2318.00,0.00,1.656370,10.676599,251,273,22.131052,0.095968,12982588,10962072,0,0,36937,0,1,1 +1773587359.021414,1.00,4,3992.50,59.14,1360.60,2315.30,0.00,0.356166,3518573347401.338379,246,2,0.003878,0.007133,12982688,10962213,0,0,36940,0,1,1 +1773587364.018583,1.00,4,3992.50,59.14,1360.61,2315.29,0.00,0.000000,0.000000,246,2,0.004550,0.008049,12982791,10962355,0,0,36942,0,1,1 +1773587369.022012,0.80,4,3992.50,59.14,1360.61,2315.27,0.00,16591.389068,18152.828166,1182484,2016484,0.004170,0.007682,12982897,10962507,0,0,36945,0,1,1 +1773587374.021508,0.95,4,3992.50,59.14,1360.41,2315.48,0.00,3518791737288.823242,3518791735728.114746,75,0,0.003638,0.006401,12982991,10962635,0,0,36947,0,1,1 +1773587379.021447,0.80,4,3992.50,59.14,1360.41,2315.47,0.00,1.602656,10.675326,251,273,0.003873,0.007140,12983091,10962777,0,0,36950,0,1,1 +1773587384.017560,1.85,4,3992.50,59.34,1357.48,2323.29,0.00,16625.607183,18179.561726,1183973,2016859,0.003856,0.007128,12983189,10962917,0,0,36952,0,1,1 +1773587389.021549,1.20,4,3992.50,59.36,1356.49,2324.26,0.00,3515632644139.654297,3515632642579.080078,75,0,0.003862,0.007089,12983288,10963055,0,0,36955,0,1,1 +1773587394.021737,0.75,4,3992.50,59.36,1356.61,2324.15,0.00,0.126753,0.000000,205,0,0.003433,0.005880,12983375,10963173,0,0,36957,0,1,1 +1773587399.021221,0.90,4,3992.50,59.19,1363.32,2317.44,0.00,0.000000,0.000000,205,0,0.004178,0.007675,12983481,10963324,0,0,36960,0,1,1 +1773587404.018588,0.95,4,3992.50,59.21,1362.61,2318.15,0.00,3520291292094.079590,0.000000,11,0,0.003888,0.007134,12983582,10963465,0,0,36962,0,1,1 +1773587409.020572,0.95,4,3992.50,59.02,1370.02,2310.72,0.00,1.655495,10.670961,251,273,0.003857,0.007015,12983682,10963604,0,0,36965,0,1,1 +1773587414.021643,1.25,4,3992.50,59.14,1359.46,2315.44,0.00,3517683440377.476562,3517683440368.459473,11,0,0.003679,0.006525,12983777,10963735,0,0,36967,0,1,1 +1773587419.021541,13.50,4,3992.50,60.53,1304.16,2369.99,0.00,1.656186,10.675415,251,273,14.305673,0.079190,12988757,10967379,0,0,36970,0,1,1 +1773587424.021576,11.47,4,3992.50,59.51,1344.25,2329.87,0.00,3518412000866.922363,3518412000857.903320,11,0,17.909804,0.075625,12994389,10971664,0,0,36972,0,1,1 +1773587429.020545,7.53,4,3992.50,59.14,1358.56,2315.54,0.00,2.012720,0.000195,246,2,8.048347,0.036058,12996861,10973499,0,0,36975,0,1,1 +1773587434.017462,0.90,4,3992.50,58.98,1364.80,2309.32,0.00,3520607912214.166992,3520607912216.000000,205,0,0.003880,0.007127,12996961,10973639,0,0,36977,0,1,1 +1773587439.017466,0.95,4,3992.50,58.92,1367.14,2306.98,0.00,16614.145879,18177.220308,1183973,2018291,0.003865,0.007120,12997060,10973779,0,0,36980,0,1,1 +1773587444.017503,1.20,4,3992.50,59.27,1356.85,2320.68,0.00,3518411649305.980469,3518411647741.083984,246,2,0.003878,0.007110,12997160,10973918,0,0,36982,0,1,1 +1773587449.017595,1.05,4,3992.50,59.27,1356.72,2320.39,0.00,3518372039483.249023,3518372039485.261719,11,0,0.003420,0.005865,12997246,10974035,0,0,36985,0,1,1 +1773587454.022026,0.80,4,3992.50,59.30,1355.51,2321.60,0.00,1.654686,10.665745,251,273,0.003883,0.007124,12997347,10974176,0,0,36987,0,1,1 +1773587459.022222,0.90,4,3992.50,59.30,1355.38,2321.73,0.00,3518298903847.973633,3518298903838.955078,11,0,0.003878,0.007119,12997447,10974316,0,0,36990,0,1,1 +1773587464.021456,0.70,4,3992.50,59.30,1355.39,2321.71,0.00,16607.324588,18169.902675,1182484,2018390,0.003879,0.007124,12997547,10974456,0,0,36992,0,1,1 +1773587469.022196,1.00,4,3992.50,59.10,1363.06,2314.05,0.00,3517916169193.433105,3517916167631.325684,11,0,0.003432,0.005864,12997634,10974573,0,0,36995,0,1,1 +1773587474.021586,1.20,4,3992.50,59.19,1359.68,2317.43,0.00,16616.366720,18180.121760,1183973,2018756,0.003891,0.007123,12997735,10974713,0,0,36997,0,1,1 +1773587479.017593,0.80,4,3992.50,59.19,1359.54,2317.54,0.00,3521249739794.536133,3521249738227.708008,246,2,0.003864,0.007133,12997834,10974854,0,0,37000,0,1,1 +1773587484.018656,0.85,4,3992.50,59.19,1359.57,2317.52,0.00,3517688783305.218750,3517688783307.050293,205,0,0.003865,0.007430,12997933,10974995,0,0,37002,0,1,1 +1773587489.021798,0.95,4,3992.50,58.93,1369.82,2307.29,0.00,1.830881,0.000195,246,2,0.003418,0.006196,12998019,10975115,0,0,37005,0,1,1 +1773587494.021335,19.99,4,3992.50,59.88,1332.60,2344.43,0.00,3518763476373.652832,10.675990,251,273,26.169262,0.121405,13006579,10981382,0,0,37007,0,1,1 +1773587499.019930,7.73,4,3992.50,59.72,1338.69,2338.27,0.00,3519425939511.745605,3519425939502.724121,11,0,10.071892,0.049539,13009987,10983940,0,0,37010,0,1,1 +1773587504.017467,4.68,4,3992.50,59.99,1328.39,2348.92,0.00,16622.529231,18187.708483,1183973,2019877,4.029283,0.020593,13011337,10984921,0,0,37012,0,1,1 +1773587509.021556,1.25,4,3992.50,59.84,1334.24,2343.06,0.00,0.000000,0.195641,1183973,2020062,0.003887,0.007127,13011438,10985062,0,0,37015,0,1,1 +1773587514.021810,0.65,4,3992.50,59.61,1343.41,2333.91,0.00,3518258473885.857910,3518258472321.333496,11,0,0.003420,0.005855,13011524,10985178,0,0,37017,0,1,1 +1773587519.021595,0.65,4,3992.50,59.53,1346.65,2330.66,0.00,16605.494379,18169.287920,1182484,2019846,0.003878,0.007133,13011624,10985319,0,0,37020,0,1,1 +1773587524.021708,0.70,4,3992.50,59.53,1346.71,2330.61,0.00,3518357166540.996582,3518357164977.305664,11,0,0.003878,0.007122,13011724,10985459,0,0,37022,0,1,1 +1773587529.021872,0.70,4,3992.50,59.33,1354.34,2322.97,0.00,0.000000,0.000000,11,0,0.003886,0.007140,13011825,10985601,0,0,37025,0,1,1 +1773587534.021669,1.10,4,3992.50,59.37,1351.10,2324.63,0.00,0.000000,0.000000,11,0,0.003420,0.005855,13011911,10985717,0,0,37027,0,1,1 +1773587539.021328,0.70,4,3992.50,59.38,1350.86,2324.86,0.00,0.000000,0.000000,11,0,0.003866,0.007133,13012010,10985858,0,0,37030,0,1,1 +1773587544.022137,0.70,4,3992.50,59.38,1350.88,2324.85,0.00,16611.654014,18176.559036,1183973,2020468,0.003877,0.007121,13012110,10985998,0,0,37032,0,1,1 +1773587549.021687,0.70,4,3992.50,59.39,1350.67,2325.06,0.00,3518753836481.595215,3518753834916.296387,11,0,0.003711,0.007292,13012208,10986138,0,0,37035,0,1,1 +1773587554.022377,1.05,4,3992.50,59.26,1355.55,2320.18,0.00,2.012027,0.000195,246,2,0.003420,0.006201,13012294,10986258,0,0,37037,0,1,1 +1773587559.022127,0.70,4,3992.50,59.27,1355.33,2320.40,0.00,3518613038900.979980,3518613038902.812012,205,0,0.003878,0.007133,13012394,10986399,0,0,37040,0,1,1 +1773587564.018574,3.06,4,3992.50,59.88,1333.34,2344.58,0.00,3520938731632.057617,0.000000,11,0,0.092219,0.013223,13012688,10986681,0,0,37042,0,1,1 +1773587569.017433,21.58,4,3992.50,59.48,1348.88,2328.84,0.00,2.012764,0.000195,246,2,32.115006,0.138330,13022763,10994246,0,0,37045,0,1,1 +1773587574.020124,6.98,4,3992.50,59.53,1347.00,2330.66,0.00,3516544933546.558594,3516544933548.569824,11,0,8.056398,0.041634,13025621,10996330,0,0,37047,0,1,1 +1773587579.022249,0.95,4,3992.50,59.53,1346.75,2330.91,0.00,16597.723783,18162.056193,1182484,2021409,0.003419,0.005863,13025707,10996447,0,0,37050,0,1,1 +1773587584.020073,0.65,4,3992.50,59.34,1354.43,2323.24,0.00,3519968999013.541992,3519968997445.850586,246,2,0.003880,0.007126,13025807,10996587,0,0,37052,0,1,1 +1773587589.017463,0.90,4,3992.50,59.33,1354.94,2322.73,0.00,3520274830361.658203,3520274830363.617676,75,0,0.006055,0.008145,13025951,10996754,0,0,37055,0,1,1 +1773587594.020495,1.00,4,3992.50,59.50,1353.76,2329.38,0.00,16594.662210,18159.140437,1182484,2021583,0.003863,0.007093,13026050,10996892,0,0,37057,0,1,1 +1773587599.021578,0.70,4,3992.50,59.50,1353.41,2329.60,0.00,3517675379173.056641,3517675377606.010254,246,2,0.003428,0.005884,13026137,10997011,0,0,37060,0,1,1 +1773587604.017451,0.70,4,3992.50,59.50,1353.42,2329.59,0.00,3521343862028.779297,3521343862030.793457,11,0,0.003881,0.007128,13026237,10997151,0,0,37062,0,1,1 +1773587609.017437,0.60,4,3992.50,59.50,1353.43,2329.58,0.00,0.000000,0.000000,11,0,0.003878,0.007132,13026337,10997292,0,0,37065,0,1,1 +1773587614.020580,0.80,4,3992.50,59.51,1352.97,2330.04,0.00,16603.904512,18169.573277,1183973,2022002,0.003659,0.006794,13026431,10997421,0,0,37067,0,1,1 +1773587619.021426,0.65,4,3992.50,59.52,1352.73,2330.27,0.00,3517841924868.953125,3517841923302.565430,11,0,0.003649,0.006832,13026524,10997553,0,0,37070,0,1,1 +1773587624.021862,1.10,4,3992.50,59.58,1344.59,2332.57,0.00,0.053511,0.000000,75,0,0.003886,0.007130,13026625,10997694,0,0,37072,0,1,1 +1773587629.021972,0.75,4,3992.50,59.58,1344.62,2332.54,0.00,16613.921210,18180.860147,1183973,2022288,0.003878,0.007132,13026725,10997835,0,0,37075,0,1,1 +1773587634.021501,0.65,4,3992.50,59.58,1344.64,2332.53,0.00,0.000000,0.029300,1183973,2022325,0.003471,0.005918,13026815,10997955,0,0,37077,0,1,1 +1773587639.021863,5.68,4,3992.50,59.60,1343.66,2333.49,0.00,3518183085162.984375,3518183083595.967773,205,0,4.035015,0.029709,13028258,10999127,0,0,37080,0,1,1 +1773587644.021554,20.30,4,3992.50,60.10,1323.98,2353.04,0.00,0.000000,0.000000,205,0,30.212356,0.136349,13038232,11006354,0,0,37082,0,1,1 +1773587649.021646,4.07,4,3992.50,60.18,1320.63,2356.36,0.00,3518371807980.503906,0.000000,11,0,6.013415,0.024435,13040087,11007730,0,0,37085,0,1,1 +1773587654.022391,1.40,4,3992.50,59.40,1344.49,2325.73,0.00,0.053508,0.000000,75,0,0.005289,0.004737,13040199,11007837,0,0,37087,0,1,1 +1773587659.021448,0.65,4,3992.50,59.29,1348.54,2321.49,0.00,0.000000,0.000000,75,0,0.003891,0.007121,13040300,11007977,0,0,37090,0,1,1 +1773587664.017572,0.80,4,3992.50,59.28,1348.90,2321.13,0.00,1.603880,10.683477,251,273,0.004551,0.008025,13040403,11008117,0,0,37092,0,1,1 +1773587669.022292,0.65,4,3992.50,59.28,1348.92,2321.11,0.00,16597.018983,18160.149356,1183973,2025145,0.004633,0.007108,13040497,11008250,0,0,37095,0,1,1 +1773587674.022071,0.75,4,3992.50,59.30,1348.44,2321.58,0.00,3518592371342.432129,3518592369777.757324,251,273,0.004078,0.007676,13040604,11008403,0,0,37097,0,1,1 +1773587679.017460,0.80,4,3992.50,59.29,1348.59,2321.44,0.00,16628.019110,18194.471345,1183973,2025431,0.004352,0.008745,13040719,11008570,0,0,37100,0,1,1 +1773587684.017442,1.00,4,3992.50,59.49,1341.84,2329.05,0.00,3518450272459.772461,3518450270885.559570,205,0,0.003878,0.007436,13040819,11008712,0,0,37102,0,1,1 +1773587689.017452,0.85,4,3992.50,59.49,1341.67,2329.02,0.00,16604.563104,18177.761095,1182484,2025233,0.005035,0.010288,13040955,11008912,0,0,37105,0,1,1 +1773587694.018554,0.75,4,3992.50,59.49,1341.69,2329.00,0.00,3517661860911.652344,3517661859347.994629,251,273,0.005034,0.010288,13041091,11009112,0,0,37107,0,1,1 +1773587699.017561,0.75,4,3992.50,59.49,1341.47,2329.21,0.00,0.356223,3519136333165.362305,246,2,0.004636,0.008943,13041211,11009287,0,0,37110,0,1,1 +1773587704.017556,0.95,4,3992.50,59.50,1341.00,2329.69,0.00,3518440639360.864746,3518440639362.823242,75,0,0.005022,0.010291,13041346,11009487,0,0,37112,0,1,1 +1773587709.022247,1.05,4,3992.50,59.50,1341.01,2329.67,0.00,0.126639,0.000000,205,0,0.005214,0.010822,13041487,11009699,0,0,37115,0,1,1 +1773587714.017442,10.46,4,3992.50,59.04,1359.20,2311.36,0.00,3521821905130.451660,0.000000,11,0,10.087684,0.056470,13045072,11012344,0,0,37117,0,1,1 +1773587719.021912,19.13,4,3992.50,59.96,1322.80,2347.66,0.00,1.654673,10.665659,251,273,30.157590,0.132777,13054921,11019501,0,0,37120,0,1,1 +1773587724.021610,1.05,4,3992.50,59.33,1347.59,2322.89,0.00,0.000000,0.000000,251,273,0.005505,0.007579,13055035,11019644,0,0,37122,0,1,1 +1773587729.017555,0.95,4,3992.50,58.97,1361.55,2308.91,0.00,0.356441,3521292895716.956543,246,2,0.004347,0.008414,13055150,11019810,0,0,37125,0,1,1 +1773587734.021757,0.85,4,3992.50,58.96,1362.11,2308.37,0.00,16588.825921,18163.461821,1182484,2026512,0.005018,0.010282,13055285,11020010,0,0,37127,0,1,1 +1773587739.022269,0.95,4,3992.50,58.96,1361.93,2308.56,0.00,3518076569025.251953,3518076567451.465820,11,0,0.004793,0.009641,13055413,11020197,0,0,37130,0,1,1 +1773587744.017554,1.35,4,3992.50,59.56,1340.90,2331.89,0.00,2.014204,0.000195,246,2,0.004556,0.009057,13055533,11020375,0,0,37132,0,1,1 +1773587749.022089,1.05,4,3992.50,59.48,1343.97,2328.82,0.00,3515249164030.693848,3515249164032.704590,11,0,0.005018,0.010922,13055668,11020579,0,0,37135,0,1,1 +1773587754.022163,0.85,4,3992.50,59.27,1352.13,2320.65,0.00,0.000000,0.000000,11,0,0.004348,0.008390,13055783,11020743,0,0,37137,0,1,1 +1773587759.021408,1.05,4,3992.50,59.08,1359.62,2313.16,0.00,1.656403,10.676808,251,273,0.005023,0.010302,13055918,11020944,0,0,37140,0,1,1 +1773587764.018582,0.90,4,3992.50,59.08,1359.64,2313.15,0.00,16622.080561,18189.599075,1183973,2027081,0.005025,0.010296,13056053,11021144,0,0,37142,0,1,1 +1773587769.021545,5.87,4,3992.50,59.16,1347.65,2316.17,0.00,3516353197417.596680,3516353195840.867188,246,2,0.001916,0.003104,13056101,11021207,0,0,37145,0,1,1 +1773587774.017818,6.39,4,3992.50,60.13,1311.71,2354.11,0.00,3521061471488.738770,3521061471490.572266,205,0,0.000981,0.001025,13056120,11021229,0,0,37147,0,1,1 +1773587779.021174,0.80,4,3992.50,59.91,1320.43,2345.43,0.00,16593.536062,18576.708059,1182527,2028902,0.000000,0.000030,13056120,11021232,0,0,37150,0,1,1 +1773587784.021828,10.80,4,3992.50,61.21,1267.31,2396.49,0.00,3517976733450.446777,3517976731466.383789,11,0,0.007106,0.002604,13056239,11021318,0,0,37152,0,1,1 +1773587789.021388,8.88,4,3992.50,59.95,1314.94,2347.33,0.00,0.053520,0.000000,75,0,0.000237,0.000671,13056247,11021334,0,0,37155,0,1,1 +1773587794.021702,1.25,4,3992.50,59.95,1313.98,2347.17,0.00,0.126750,0.000000,205,0,0.000229,0.000653,13056254,11021348,0,0,37157,0,1,1 +1773587799.019933,10.39,4,3992.50,59.55,1331.75,2331.62,0.00,3519683139405.727539,0.000000,11,0,0.017416,0.009114,13056551,11021545,0,0,37160,0,1,1 +1773587804.019828,0.60,4,3992.50,59.57,1331.02,2332.36,0.00,0.000000,0.000000,11,0,0.000000,0.000020,13056551,11021547,0,0,37162,0,1,1 +1773587809.021968,12.77,4,3992.50,59.86,1336.94,2343.56,0.00,0.000000,0.000000,11,0,18.084166,0.073734,13061985,11025620,0,0,37165,0,1,1 +1773587814.018757,13.58,4,3992.50,60.19,1323.79,2356.71,0.00,2.013598,0.000195,246,2,20.127310,0.084681,13068175,11030199,0,0,37167,0,1,1 +1773587819.019346,2.96,4,3992.50,59.04,1368.77,2311.73,0.00,16635.262996,19510.139905,1183749,2035240,2.027576,0.021572,13069184,11030999,0,0,37170,0,1,1 +1773587824.022311,0.95,4,3992.50,59.00,1370.60,2309.89,0.00,3516351574501.366699,3516351571629.866211,11,0,0.005019,0.010606,13069319,11031201,0,0,37172,0,1,1 +1773587829.020656,0.95,4,3992.50,59.00,1370.62,2309.88,0.00,0.000000,0.000000,11,0,0.004337,0.008402,13069433,11031366,0,0,37175,0,1,1 +1773587834.021450,1.35,4,3992.50,59.26,1360.37,2320.14,0.00,0.000000,0.000000,11,0,0.005009,0.010289,13069567,11031566,0,0,37177,0,1,1 +1773587839.022058,1.05,4,3992.50,59.32,1357.87,2322.63,0.00,0.000000,0.000000,11,0,0.005022,0.010299,13069702,11031767,0,0,37180,0,1,1 +1773587844.019282,0.75,4,3992.50,59.35,1356.75,2323.76,0.00,0.000000,0.000000,11,0,0.004359,0.008402,13069818,11031932,0,0,37182,0,1,1 +1773587849.022408,0.85,4,3992.50,59.12,1365.74,2314.77,0.00,0.000000,0.000000,11,0,0.005019,0.010281,13069953,11032132,0,0,37185,0,1,1 +1773587854.021917,1.80,4,3992.50,59.09,1367.15,2313.38,0.00,16640.909691,19514.798626,1183769,2035624,0.005023,0.010279,13070088,11032331,0,0,37187,0,1,1 +1773587859.019892,0.95,4,3992.50,59.06,1368.05,2312.47,0.00,3519863071174.742676,3519863068299.971191,11,0,0.004338,0.008416,13070202,11032497,0,0,37190,0,1,1 +1773587864.019575,5.47,4,3992.50,59.07,1347.84,2312.78,0.00,16640.338469,19710.240189,1183780,2036726,0.002168,0.004205,13070259,11032580,0,0,37192,0,1,1 +1773587869.021647,8.29,4,3992.50,59.31,1337.77,2322.08,0.00,0.017180,309.529728,1183802,2038381,0.001648,0.001286,13070293,11032611,0,0,37195,0,1,1 +1773587874.017586,0.85,4,3992.50,58.96,1352.17,2308.54,0.00,3521297102422.318848,3521297099040.224121,11,0,0.000405,0.000787,13070303,11032626,0,0,37197,0,1,1 +1773587879.017574,6.83,4,3992.50,59.73,1323.26,2338.58,0.00,0.180274,0.000000,205,0,0.000229,0.000676,13070310,11032642,0,0,37200,0,1,1 +1773587884.021448,1.15,4,3992.50,59.56,1329.80,2332.04,0.00,16635.884888,20323.670701,1185389,2040491,0.001292,0.002169,13070342,11032688,0,0,37202,0,1,1 +1773587889.018573,5.48,4,3992.50,59.71,1328.48,2337.79,0.00,3520461087711.267578,3520461084018.682617,11,0,0.003803,0.002491,13070406,11032730,0,0,37205,0,1,1 +1773587894.022176,9.22,4,3992.50,59.48,1335.02,2328.82,0.00,0.180144,0.000000,205,0,0.007877,0.004080,13070542,11032834,0,0,37207,0,1,1 +1773587899.017458,0.65,4,3992.50,59.33,1340.91,2322.94,0.00,0.000000,0.000000,205,0,0.000000,0.000030,13070542,11032837,0,0,37210,0,1,1 +1773587904.021893,15.29,4,3992.50,59.34,1362.52,2323.37,0.00,0.000000,0.000000,205,0,22.118231,0.104016,13077828,11038282,0,0,37212,0,1,1 +1773587909.021858,11.95,4,3992.50,60.00,1336.90,2348.97,0.00,16649.185030,20743.486017,1183985,2043787,18.109312,0.076327,13083634,11042495,0,0,37215,0,1,1 +1773587914.022095,1.80,4,3992.50,59.29,1364.59,2321.28,0.00,0.000000,0.009179,1183985,2043836,0.012438,0.013742,13083903,11042783,0,0,37217,0,1,1 +1773587919.020586,0.85,4,3992.50,59.31,1363.77,2322.08,0.00,9.564410,10.691215,1185474,2044141,0.004337,0.008402,13084017,11042948,0,0,37220,0,1,1 +1773587924.022342,1.45,4,3992.50,59.48,1361.47,2328.86,0.00,3517202099273.105957,3517202095179.261719,75,0,0.005021,0.010287,13084152,11043148,0,0,37222,0,1,1 +1773587929.021589,0.80,4,3992.50,59.50,1358.69,2329.37,0.00,1.959084,0.000195,246,2,0.005023,0.010289,13084287,11043348,0,0,37225,0,1,1 +1773587934.018660,1.00,4,3992.50,59.48,1359.27,2328.81,0.00,3520499406890.243164,3520499406892.076172,205,0,0.004389,0.008469,13084405,11043517,0,0,37227,0,1,1 +1773587939.021688,0.90,4,3992.50,59.54,1356.84,2331.22,0.00,3516307503795.471680,0.000000,11,0,0.005019,0.010294,13084540,11043718,0,0,37230,0,1,1 +1773587944.021156,1.10,4,3992.50,59.41,1362.20,2325.88,0.00,16651.023755,20746.134768,1183985,2044222,0.004349,0.008391,13084655,11043882,0,0,37232,0,1,1 +1773587949.022370,1.00,4,3992.50,59.40,1362.63,2325.46,0.00,3517583047090.322754,3517583042996.641602,11,0,0.005054,0.010950,13084793,11044088,0,0,37235,0,1,1 +1773587954.022285,1.40,4,3992.50,59.56,1353.93,2331.83,0.00,16649.533802,20744.354066,1183985,2044280,0.005023,0.010291,13084928,11044288,0,0,37237,0,1,1 +1773587959.022347,0.85,4,3992.50,59.50,1355.80,2329.74,0.00,9.561405,10.706020,1185474,2044618,0.004348,0.008882,13085043,11044456,0,0,37240,0,1,1 +1773587964.019567,5.14,4,3992.50,59.55,1335.42,2331.67,0.00,3520394497769.360840,3520394493671.187500,11,0,0.001495,0.002466,13085080,11044504,0,0,37242,0,1,1 +1773587969.022152,7.31,4,3992.50,60.20,1309.29,2356.90,0.00,0.053488,0.000000,75,0,0.002457,0.003788,13085126,11044565,0,0,37245,0,1,1 +1773587974.020570,1.40,4,3992.50,60.23,1307.88,2358.29,0.00,1.959409,0.000195,246,2,0.001922,0.001593,13085150,11044589,0,0,37247,0,1,1 +1773587979.020663,7.19,4,3992.50,59.97,1319.32,2347.95,0.00,16656.523009,21498.613027,1185513,2048978,0.001031,0.001055,13085173,11044614,0,0,37250,0,1,1 +1773587984.022381,0.90,4,3992.50,59.71,1329.02,2337.83,0.00,3517228075198.978027,8.873122,1184024,2048777,0.001252,0.001670,13085202,11044649,0,0,37252,0,1,1 +1773587989.021761,9.94,4,3992.50,60.11,1315.18,2353.58,0.00,3518873862664.914551,3518873857814.727051,251,303,0.000229,0.000663,13085209,11044664,0,0,37255,0,1,1 +1773587994.017435,3.52,4,3992.50,60.18,1312.00,2356.21,0.00,0.356461,3521484205478.970703,246,2,0.000458,0.001933,13085223,11044694,0,0,37257,0,1,1 +1773587999.021700,5.22,4,3992.50,60.15,1327.25,2355.04,0.00,16633.128875,21918.720332,1184059,2051528,0.473983,0.022544,13085950,11045226,0,0,37260,0,1,1 +1773588004.018587,20.20,4,3992.50,59.94,1335.32,2346.91,0.00,3520629384645.184082,3520629379353.800781,11,0,35.779282,0.146727,13097150,11053778,0,0,37262,0,1,1 +1773588009.022169,4.57,4,3992.50,59.70,1345.01,2337.24,0.00,0.180144,0.000000,205,0,4.030890,0.025390,13098629,11054925,0,0,37265,0,1,1 +1773588014.021549,1.35,4,3992.50,59.66,1362.36,2335.86,0.00,1.476062,10.676518,251,309,0.005054,0.010317,13098766,11055127,0,0,37267,0,1,1 +1773588019.017457,1.00,4,3992.50,59.61,1363.71,2333.85,0.00,16661.349162,21945.764474,1184078,2052736,0.004370,0.008444,13098882,11055295,0,0,37270,0,1,1 +1773588024.022146,0.85,4,3992.50,59.61,1363.51,2334.05,0.00,3515140201633.165527,3515140196348.958984,75,0,0.005951,0.010950,13099020,11055498,0,0,37272,0,1,1 +1773588029.021488,1.00,4,3992.50,59.61,1363.53,2334.04,0.00,0.000000,0.000000,75,0,0.005036,0.010302,13099156,11055699,0,0,37275,0,1,1 +1773588034.018572,0.85,4,3992.50,59.64,1362.56,2334.99,0.00,16668.599171,21961.984849,1185567,2053075,0.004346,0.008415,13099271,11055865,0,0,37277,0,1,1 +1773588039.021757,0.90,4,3992.50,59.57,1365.10,2332.46,0.00,3516196736363.535645,3516196731085.673340,251,309,0.005044,0.010294,13099408,11056066,0,0,37280,0,1,1 +1773588044.021559,1.30,4,3992.50,59.72,1365.53,2338.14,0.00,3518577196882.932617,3518577196873.733398,205,0,0.005023,0.010291,13099543,11056266,0,0,37282,0,1,1 +1773588049.021583,0.90,4,3992.50,59.73,1364.98,2338.55,0.00,0.000000,0.000000,205,0,0.004348,0.009043,13099658,11056435,0,0,37285,0,1,1 +1773588054.021742,0.90,4,3992.50,59.75,1364.01,2339.53,0.00,1.831973,0.000195,246,2,0.005047,0.010290,13099795,11056635,0,0,37287,0,1,1 +1773588059.019313,4.92,4,3992.50,60.34,1323.65,2362.60,0.00,16655.450970,22064.522748,1184085,2053559,0.000803,0.001065,13099811,11056652,0,0,37290,0,1,1 +1773588064.021571,5.73,4,3992.50,60.29,1326.90,2360.38,0.00,9.557207,202.844999,1185574,2054952,0.001481,0.002303,13099847,11056699,0,0,37292,0,1,1 +1773588069.022025,2.26,4,3992.50,59.77,1344.61,2339.94,0.00,3518117943427.638672,3518117937839.357422,251,312,0.004919,0.001568,13099929,11056753,0,0,37295,0,1,1 +1773588074.021577,17.08,4,3992.50,60.20,1330.14,2357.09,0.00,0.000000,0.000000,251,312,0.005199,0.002561,13100022,11056828,0,0,37297,0,1,1 +1773588079.018651,3.31,4,3992.50,60.35,1324.28,2362.95,0.00,0.356361,3520497066492.217285,246,2,0.000000,0.000030,13100022,11056831,0,0,37300,0,1,1 +1773588084.019855,3.77,4,3992.50,60.01,1336.72,2349.45,0.00,16643.353781,22660.442658,1184085,2057185,0.001280,0.001730,13100048,11056866,0,0,37302,0,1,1 +1773588089.021963,5.21,4,3992.50,60.86,1303.49,2382.69,0.00,3516954500487.746094,3516954494473.702637,75,0,0.010710,0.007323,13100245,11057036,0,0,37305,0,1,1 +1773588094.017688,1.91,4,3992.50,60.13,1332.86,2354.37,0.00,0.000000,0.000000,75,0,0.000808,0.000773,13100256,11057048,0,0,37307,0,1,1 +1773588099.017474,18.36,4,3992.50,60.37,1339.89,2363.48,0.00,1.602705,10.675653,251,321,26.143567,0.109414,13108246,11062961,0,0,37310,0,1,1 +1773588104.020465,10.13,4,3992.50,59.42,1376.83,2326.54,0.00,3516333638938.175781,3516333638929.108887,75,0,14.085627,0.068425,13113000,11066512,0,0,37312,0,1,1 +1773588109.021631,1.35,4,3992.50,59.54,1371.07,2331.00,0.00,3517617271995.700684,0.000000,11,0,0.003030,0.006260,13113081,11066634,0,0,37315,0,1,1 +1773588114.019039,1.15,4,3992.50,59.53,1371.43,2330.63,0.00,16667.572231,22881.640715,1185574,2060090,0.005025,0.010283,13113216,11066833,0,0,37317,0,1,1 +1773588119.017730,0.80,4,3992.50,59.52,1371.62,2330.45,0.00,3519359081296.945801,3519359075084.416504,75,0,0.005032,0.010311,13113352,11067035,0,0,37320,0,1,1 +1773588124.017448,0.90,4,3992.50,59.55,1370.46,2331.59,0.00,0.126765,0.000000,205,0,0.004336,0.008390,13113466,11067199,0,0,37322,0,1,1 +1773588129.022176,1.00,4,3992.50,59.58,1369.52,2332.55,0.00,3515113456094.460938,0.000000,75,0,0.005043,0.010278,13113603,11067399,0,0,37325,0,1,1 +1773588134.022206,1.20,4,3992.50,59.67,1365.75,2336.19,0.00,1.958777,0.000195,246,2,0.005022,0.010278,13113738,11067598,0,0,37327,0,1,1 +1773588139.018333,1.76,4,3992.50,59.65,1366.25,2335.61,0.00,3521164285126.416504,3521164285128.376465,75,0,0.004352,0.008406,13113853,11067763,0,0,37330,0,1,1 +1773588144.020592,0.95,4,3992.50,59.65,1366.27,2335.59,0.00,3516848533048.136719,0.000000,11,0,0.005028,0.010938,13113989,11067968,0,0,37332,0,1,1 +1773588149.022188,1.05,4,3992.50,59.65,1366.28,2335.59,0.00,0.000000,0.000000,11,0,0.005059,0.010285,13114127,11068168,0,0,37335,0,1,1 +1773588154.017589,3.71,4,3992.50,61.86,1263.66,2421.88,0.00,16674.274208,22992.255342,1185575,2061006,0.000795,0.001061,13114142,11068184,0,0,37337,0,1,1 +1773588159.021865,8.42,4,3992.50,62.35,1241.35,2440.96,0.00,3515431092959.089844,3515431086652.260254,75,0,0.002098,0.002549,13114190,11068239,0,0,37340,0,1,1 +1773588164.022319,0.80,4,3992.50,61.22,1287.32,2397.07,0.00,0.126746,0.000000,205,0,0.000176,0.000166,13114193,11068243,0,0,37342,0,1,1 +1773588169.018428,9.94,4,3992.50,62.22,1249.50,2435.86,0.00,3521177816226.412109,0.000000,75,0,0.008379,0.004255,13114342,11068362,0,0,37345,0,1,1 +1773588174.021402,2.20,4,3992.50,60.20,1329.55,2356.91,0.00,1.957624,0.000195,246,2,0.000008,0.000028,13114343,11068365,0,0,37347,0,1,1 +1773588179.017449,2.01,4,3992.50,61.57,1275.25,2410.62,0.00,3521221633197.991699,3521221633200.005859,11,0,0.000229,0.000664,13114350,11068380,0,0,37350,0,1,1 +1773588184.017441,6.81,4,3992.50,61.72,1269.66,2416.55,0.00,0.000000,0.000000,11,0,0.013514,0.008287,13114592,11068557,0,0,37352,0,1,1 +1773588189.021478,3.91,4,3992.50,60.56,1322.84,2371.15,0.00,0.180128,0.000000,205,0,2.018755,0.016873,13115364,11069161,0,0,37355,0,1,1 +1773588194.021545,16.41,4,3992.50,60.65,1319.42,2374.57,0.00,1.832006,0.000195,246,2,26.144015,0.109149,13123571,11075391,0,0,37357,0,1,1 +1773588199.021556,9.67,4,3992.50,59.39,1375.03,2325.14,0.00,3518429484522.753906,10.674977,251,333,12.078561,0.057161,13127514,11078343,0,0,37360,0,1,1 +1773588204.021438,1.05,4,3992.50,59.38,1375.18,2324.99,0.00,3518520204440.010742,3518520204430.811035,205,0,0.004323,0.008390,13127627,11078507,0,0,37362,0,1,1 +1773588209.021966,0.95,4,3992.50,59.39,1374.72,2325.44,0.00,1.831838,0.000195,246,2,0.005047,0.010299,13127764,11078708,0,0,37365,0,1,1 +1773588214.020921,0.95,4,3992.50,59.40,1374.54,2325.66,0.00,3519172876486.656250,3519172876488.668945,11,0,0.005023,0.010280,13127899,11078907,0,0,37367,0,1,1 +1773588219.021738,0.80,4,3992.50,59.40,1374.55,2325.65,0.00,0.000000,0.000000,11,0,0.004335,0.008411,13128013,11079073,0,0,37370,0,1,1 +1773588224.017460,1.20,4,3992.50,59.64,1370.65,2335.23,0.00,1.657570,10.684336,251,333,0.005014,0.010299,13128147,11079273,0,0,37372,0,1,1 +1773588229.021651,1.20,4,3992.50,59.62,1371.38,2334.42,0.00,0.000000,0.000000,251,333,0.004353,0.008401,13128263,11079439,0,0,37375,0,1,1 +1773588234.022146,0.95,4,3992.50,59.42,1379.29,2326.53,0.00,3518089043310.279297,3518089043301.208008,75,0,0.005097,0.010352,13128404,11079643,0,0,37377,0,1,1 +1773588239.018638,0.90,4,3992.50,59.34,1382.39,2323.43,0.00,3520907037851.705078,0.000000,11,0,0.005039,0.010952,13128540,11079848,0,0,37380,0,1,1 +1773588244.022275,1.15,4,3992.50,59.34,1382.59,2323.22,0.00,16637.301380,23868.668438,1184092,2067840,0.004345,0.008384,13128655,11080012,0,0,37382,0,1,1 +1773588249.020680,7.43,4,3992.50,60.27,1327.04,2359.55,0.00,3519559617103.023926,3519559609864.088379,11,0,0.001092,0.003355,13128686,11080069,0,0,37385,0,1,1 +1773588254.022010,0.85,4,3992.50,59.94,1339.66,2346.95,0.00,1.655712,10.672358,251,336,0.000847,0.000878,13128705,11080089,0,0,37387,0,1,1 +1773588259.017425,5.14,4,3992.50,59.96,1338.12,2347.63,0.00,3521666154144.956055,3521666154135.928711,11,0,0.001208,0.001202,13128731,11080116,0,0,37390,0,1,1 +1773588264.021776,3.87,4,3992.50,59.84,1341.91,2343.05,0.00,16634.928350,24349.579095,1184092,2070720,0.006897,0.001944,13128845,11080188,0,0,37392,0,1,1 +1773588269.021857,4.32,4,3992.50,59.98,1339.11,2348.24,0.00,3518379830680.119629,3518379822958.828613,75,0,0.000524,0.001218,13128858,11080214,0,0,37395,0,1,1 +1773588274.021463,7.42,4,3992.50,60.62,1315.95,2373.53,0.00,1.602763,10.676038,251,338,0.000675,0.001807,13128880,11080250,0,0,37397,0,1,1 +1773588279.017467,0.75,4,3992.50,60.54,1319.15,2370.39,0.00,3521251338724.181152,3521251338715.155273,11,0,0.000000,0.000513,13128880,11080256,0,0,37400,0,1,1 +1773588284.017452,11.66,4,3992.50,60.23,1337.64,2358.14,0.00,0.180274,0.000000,205,0,16.108731,0.080387,13134278,11084271,0,0,37402,0,1,1 +1773588289.021451,8.25,4,3992.50,59.54,1364.60,2331.12,0.00,16645.471078,24855.054594,1185583,2074909,12.067059,0.054668,13138292,11087288,0,0,37405,0,1,1 +1773588294.018147,9.33,4,3992.50,59.05,1383.82,2311.91,0.00,3520764151158.560547,3520764142936.977051,205,0,12.081790,0.056002,13142185,11090268,0,0,37407,0,1,1 +1773588299.018586,1.10,4,3992.50,59.13,1380.82,2314.93,0.00,1.475749,10.674258,251,343,0.005309,0.010854,13142325,11090480,0,0,37410,0,1,1 +1773588304.018644,0.90,4,3992.50,59.10,1381.84,2313.91,0.00,3518396479923.945801,3518396479914.873535,75,0,0.005022,0.010290,13142460,11090680,0,0,37412,0,1,1 +1773588309.022038,1.00,4,3992.50,59.10,1381.88,2313.88,0.00,1.957460,0.000195,246,2,0.004529,0.008926,13142580,11090856,0,0,37415,0,1,1 +1773588314.021913,1.05,4,3992.50,59.37,1369.00,2324.55,0.00,3518525257161.108398,3518525257162.940430,205,0,0.005074,0.010324,13142719,11091059,0,0,37417,0,1,1 +1773588319.022192,1.00,4,3992.50,59.34,1369.97,2323.45,0.00,1.475797,10.674601,251,343,0.005053,0.010325,13142856,11091262,0,0,37420,0,1,1 +1773588324.021554,0.95,4,3992.50,59.34,1369.98,2323.45,0.00,0.000000,0.000000,251,343,0.004559,0.007159,13142950,11091393,0,0,37422,0,1,1 +1773588329.017471,1.00,4,3992.50,59.34,1370.00,2323.43,0.00,0.356443,3521312693803.196289,246,2,0.005027,0.010309,13143085,11091594,0,0,37425,0,1,1 +1773588334.020993,0.80,4,3992.50,59.34,1370.01,2323.41,0.00,0.000000,0.000000,246,2,0.005408,0.009877,13143225,11091787,0,0,37427,0,1,1 +1773588339.017463,0.85,4,3992.50,59.22,1375.02,2318.41,0.00,3520922763465.007812,10.682541,251,343,0.004589,0.009717,13143348,11091971,0,0,37430,0,1,1 +1773588344.021937,6.11,4,3992.50,59.51,1346.70,2330.04,0.00,0.000000,0.000000,251,349,0.001696,0.003578,13143390,11092034,0,0,37432,0,1,1 +1773588349.017454,4.28,4,3992.50,59.63,1342.37,2334.80,0.00,3521594380223.655762,3521594380214.448242,205,0,0.001253,0.001669,13143419,11092069,0,0,37435,0,1,1 +1773588354.021882,1.80,4,3992.50,59.56,1342.41,2331.91,0.00,16634.495643,25242.077037,1184097,2077599,0.001251,0.001669,13143448,11092104,0,0,37437,0,1,1 +1773588359.022130,6.67,4,3992.50,59.80,1335.39,2341.17,0.00,3518262650520.229004,3518262641905.453125,205,0,0.005779,0.003108,13143550,11092183,0,0,37440,0,1,1 +1773588364.021962,4.97,4,3992.50,61.20,1280.68,2395.97,0.00,1.475928,10.675553,251,352,0.011468,0.006041,13143759,11092344,0,0,37442,0,1,1 +1773588369.022280,4.66,4,3992.50,59.89,1335.43,2344.91,0.00,16656.309020,25726.839743,1185636,2080679,0.000000,0.000352,13143759,11092349,0,0,37445,0,1,1 +1773588374.018565,3.46,4,3992.50,59.35,1372.00,2323.80,0.00,0.053946,0.255170,1185705,2080862,0.007767,0.005168,13143875,11092447,0,0,37447,0,1,1 +1773588379.017466,26.06,4,3992.50,60.01,1345.89,2349.43,0.00,0.000000,0.451466,1185705,2081778,40.230417,0.165251,13156190,11101565,0,0,37450,0,1,1 +1773588384.019048,1.85,4,3992.50,60.02,1345.54,2349.77,0.00,0.000000,0.178069,1185705,2081839,0.011967,0.012792,13156443,11101827,0,0,37452,0,1,1 +1773588389.018581,0.95,4,3992.50,59.71,1357.63,2337.66,0.00,3518766015741.460938,3518766015740.365723,1184217,2081490,0.004324,0.008400,13156556,11101992,0,0,37455,0,1,1 +1773588394.020910,0.85,4,3992.50,59.66,1359.46,2335.86,0.00,3516799471471.865723,3516799462396.177734,75,0,0.004118,0.007740,13156664,11102143,0,0,37457,0,1,1 +1773588399.021759,0.70,4,3992.50,59.47,1367.11,2328.21,0.00,16646.634776,25725.087332,1184217,2081571,0.004564,0.009032,13156785,11102320,0,0,37460,0,1,1 +1773588404.021629,1.35,4,3992.50,59.75,1357.91,2339.44,0.00,3518528838652.295410,3518528829581.136719,251,355,0.005023,0.010935,13156920,11102524,0,0,37462,0,1,1 +1773588409.022058,0.90,4,3992.50,59.70,1357.86,2337.41,0.00,0.000000,0.000000,251,355,0.004356,0.008407,13157036,11102690,0,0,37465,0,1,1 +1773588414.022274,0.95,4,3992.50,59.68,1358.50,2336.77,0.00,0.356137,3518285291424.612305,246,2,0.005022,0.010290,13157171,11102890,0,0,37467,0,1,1 +1773588419.017450,1.71,4,3992.50,59.09,1381.69,2313.57,0.00,16663.581394,25754.786801,1184217,2081922,0.004798,0.009651,13157299,11103077,0,0,37470,0,1,1 +1773588424.017451,0.95,4,3992.50,59.10,1381.48,2313.79,0.00,9.561521,10.733493,1185706,2082329,0.004577,0.009048,13157421,11103255,0,0,37472,0,1,1 +1773588429.021981,0.85,4,3992.50,59.10,1381.50,2313.77,0.00,3515252254867.343262,3515252245802.980957,251,355,0.005018,0.010291,13157556,11103456,0,0,37475,0,1,1 +1773588434.022261,1.25,4,3992.50,59.47,1366.89,2328.52,0.00,3518240181098.623535,3518240181089.551758,75,0,0.004331,0.008397,13157670,11103621,0,0,37477,0,1,1 +1773588439.022099,0.90,4,3992.50,59.32,1372.62,2322.61,0.00,1.602689,10.675541,251,355,0.004429,0.010063,13157795,11103815,0,0,37480,0,1,1 +1773588444.022247,0.80,4,3992.50,59.33,1372.45,2322.79,0.00,0.000000,0.000000,251,355,0.005022,0.010290,13157930,11104015,0,0,37482,0,1,1 +1773588449.018325,17.45,4,3992.50,59.91,1349.39,2345.77,0.00,0.356432,3521199624485.690430,246,2,22.171686,0.112457,13165537,11109799,0,0,37485,0,1,1 +1773588454.021391,12.54,4,3992.50,59.60,1361.68,2333.44,0.00,16637.301511,25714.928614,1184217,2083107,18.096383,0.079934,13171274,11114134,0,0,37487,0,1,1 +1773588459.021717,0.80,4,3992.50,59.39,1369.92,2325.20,0.00,3518207616523.170898,3518207607440.570312,246,2,0.004786,0.008196,13171391,11114291,0,0,37490,0,1,1 +1773588464.019016,1.00,4,3992.50,59.58,1362.34,2332.79,0.00,0.000000,0.000000,246,2,0.005021,0.010304,13171526,11114492,0,0,37492,0,1,1 +1773588469.021474,0.80,4,3992.50,59.55,1363.68,2331.44,0.00,16639.323467,25718.787313,1184217,2083616,0.004334,0.008395,13171640,11114657,0,0,37495,0,1,1 +1773588474.017574,0.70,4,3992.50,59.54,1363.88,2331.25,0.00,0.000000,0.037138,1184217,2083626,0.005001,0.010299,13171773,11114857,0,0,37497,0,1,1 +1773588479.017562,0.70,4,3992.50,59.54,1363.89,2331.23,0.00,3518445806092.887207,3518445797010.732422,205,0,0.005035,0.010300,13171909,11115058,0,0,37500,0,1,1 +1773588484.017441,0.65,4,3992.50,59.55,1363.66,2331.46,0.00,16649.738613,25732.195941,1184217,2083713,0.004336,0.008390,13172023,11115222,0,0,37502,0,1,1 +1773588489.022374,1.10,4,3992.50,59.17,1378.43,2316.70,0.00,9.552099,10.701161,1185706,2084111,0.008341,0.013148,13172212,11115454,0,0,37505,0,1,1 +1773588494.021722,1.00,4,3992.50,59.50,1366.19,2329.62,0.00,3518896394128.024414,3518896385043.578613,75,0,0.005036,0.010292,13172348,11115654,0,0,37507,0,1,1 +1773588499.022034,0.65,4,3992.50,59.50,1366.36,2329.60,0.00,1.602536,10.674527,251,355,0.004323,0.008399,13172461,11115819,0,0,37510,0,1,1 +1773588504.017986,0.85,4,3992.50,59.50,1366.38,2329.58,0.00,3521288518736.058105,3521288518726.978516,75,0,0.005027,0.010299,13172596,11116019,0,0,37512,0,1,1 +1773588509.022325,0.60,4,3992.50,59.50,1366.40,2329.57,0.00,3515386378705.155273,0.000000,11,0,0.002981,0.004602,13172670,11116113,0,0,37515,0,1,1 +1773588514.022229,0.60,4,3992.50,59.50,1366.40,2329.56,0.00,1.656184,10.675399,251,355,0.002276,0.002687,13172721,11116169,0,0,37517,0,1,1 +1773588519.017925,1.10,4,3992.50,59.20,1378.08,2317.85,0.00,0.000000,0.000000,251,355,0.007778,0.004254,13172861,11116283,0,0,37520,0,1,1 +1773588524.021803,3.20,4,3992.50,59.17,1379.47,2316.50,0.00,16634.957235,25701.380154,1184217,2084072,0.001827,0.001683,13172897,11116324,0,0,37522,0,1,1 +1773588529.020640,2.06,4,3992.50,59.18,1372.40,2316.95,0.00,3519256185792.534668,3519256176716.967285,251,355,0.013454,0.008402,13173134,11116522,0,0,37525,0,1,1 +1773588534.020196,0.55,4,3992.50,59.18,1372.46,2316.94,0.00,0.000000,0.000000,251,355,0.000279,0.000877,13173145,11116541,0,0,37527,0,1,1 +1773588539.021790,1.10,4,3992.50,59.18,1372.50,2316.89,0.00,3517316245821.887207,3517316245812.690918,205,0,0.004402,0.003470,13173216,11116610,0,0,37530,0,1,1 +1773588544.021596,1.90,4,3992.50,59.09,1375.98,2313.43,0.00,3518573414267.369141,0.000000,75,0,2.013009,0.009711,13173856,11117123,0,0,37532,0,1,1 +1773588549.017459,0.95,4,3992.50,59.09,1375.73,2313.63,0.00,16663.249760,25753.581952,1184217,2084342,0.000912,0.001083,13173873,11117145,0,0,37535,0,1,1 +1773588554.021738,6.37,4,3992.50,59.48,1368.53,2328.85,0.00,3515428502908.282715,3515428493831.282227,246,2,8.036890,0.033227,13176291,11118939,0,0,37537,0,1,1 +1773588559.021879,3.16,4,3992.50,59.39,1371.96,2325.43,0.00,3518338033968.866699,3518338033970.698730,205,0,2.022488,0.016499,13177112,11119572,0,0,37540,0,1,1 +1773588564.021545,15.20,4,3992.50,60.23,1339.16,2358.14,0.00,1.832154,0.000195,246,2,24.132761,0.100556,13184644,11125343,0,0,37542,0,1,1 +1773588569.017455,10.76,4,3992.50,59.43,1370.58,2326.68,0.00,16661.132774,25753.894098,1184217,2085411,14.103144,0.065551,13189278,11128763,0,0,37545,0,1,1 +1773588574.021433,0.70,4,3992.50,59.38,1372.52,2324.77,0.00,9.553922,11.093420,1185706,2086014,0.004079,0.007648,13189385,11128914,0,0,37547,0,1,1 +1773588579.021682,0.60,4,3992.50,59.40,1371.80,2325.50,0.00,3518262155869.270996,3518262146782.858887,246,2,0.005022,0.010300,13189520,11129115,0,0,37550,0,1,1 +1773588584.022344,1.25,4,3992.50,59.69,1355.98,2337.18,0.00,3517971079824.073730,3517971079825.905273,205,0,0.005005,0.009323,13189637,11129282,0,0,37552,0,1,1 +1773588589.021888,0.65,4,3992.50,59.69,1355.98,2337.15,0.00,3518758525021.537598,0.000000,75,0,0.005035,0.010289,13189773,11129482,0,0,37555,0,1,1 +1773588594.021503,0.65,4,3992.50,59.69,1356.00,2337.14,0.00,3518707613822.111816,0.000000,11,0,0.005023,0.010291,13189908,11129682,0,0,37557,0,1,1 +1773588599.022227,0.80,4,3992.50,59.69,1356.01,2337.13,0.00,0.180247,0.000000,205,0,0.004635,0.008953,13190028,11129858,0,0,37560,0,1,1 +1773588604.020339,0.90,4,3992.50,59.70,1355.93,2337.20,0.00,3519766540230.868164,0.000000,11,0,0.005037,0.010294,13190164,11130058,0,0,37562,0,1,1 +1773588609.020565,0.85,4,3992.50,59.51,1363.10,2330.05,0.00,16658.358457,25743.435128,1185723,2086457,0.005231,0.010807,13190306,11130268,0,0,37565,0,1,1 +1773588614.017454,1.20,4,3992.50,59.55,1363.43,2331.32,0.00,3520627607724.399414,3520627598633.254883,11,0,0.004378,0.009098,13190423,11130441,0,0,37567,0,1,1 +1773588619.018420,0.80,4,3992.50,59.39,1369.58,2325.11,0.00,1.655833,10.673135,251,355,0.005065,0.010324,13190561,11130644,0,0,37570,0,1,1 +1773588624.017459,0.70,4,3992.50,59.40,1368.89,2325.81,0.00,0.356221,3519113217852.866699,246,2,0.005945,0.011581,13190698,11130849,0,0,37572,0,1,1 +1773588629.021434,0.85,4,3992.50,59.21,1376.52,2318.20,0.00,0.000000,0.000000,246,2,0.004345,0.008418,13190813,11131016,0,0,37575,0,1,1 +1773588634.018563,12.23,4,3992.50,59.93,1348.41,2346.29,0.00,3520458445597.234375,3520458445599.248047,11,0,12.097856,0.065527,13194913,11134193,0,0,37577,0,1,1 +1773588639.017482,10.98,4,3992.50,59.32,1372.21,2322.42,0.00,1.656511,10.677505,251,355,16.101089,0.074209,13200103,11138200,0,0,37580,0,1,1 +1773588644.021964,9.17,4,3992.50,59.16,1371.05,2316.13,0.00,0.355833,3515286126777.141602,246,2,12.062821,0.059790,13203985,11141206,0,0,37582,0,1,1 +1773588649.022346,1.00,4,3992.50,59.15,1371.31,2315.79,0.00,16646.267524,25732.933428,1184234,2087335,0.005022,0.010300,13204120,11141407,0,0,37585,0,1,1 +1773588654.021683,0.80,4,3992.50,59.22,1368.38,2318.71,0.00,3518903723563.033691,3518903714476.300781,205,0,0.004336,0.008391,13204234,11141571,0,0,37587,0,1,1 +1773588659.017454,0.85,4,3992.50,59.20,1369.34,2317.75,0.00,3521415517894.154785,0.000000,11,0,0.005027,0.010309,13204369,11141772,0,0,37590,0,1,1 +1773588664.017425,0.85,4,3992.50,59.22,1368.42,2318.69,0.00,0.180274,0.000000,205,0,0.005043,0.010299,13204506,11141973,0,0,37592,0,1,1 +1773588669.018548,0.75,4,3992.50,59.18,1370.02,2317.09,0.00,16645.633387,25729.504029,1184234,2087613,0.004347,0.008398,13204621,11142138,0,0,37595,0,1,1 +1773588674.018290,1.05,4,3992.50,59.38,1362.99,2324.69,0.00,3518618301851.210938,3518618292764.959473,75,0,0.005023,0.010935,13204756,11142342,0,0,37597,0,1,1 +1773588679.020205,0.75,4,3992.50,59.28,1366.63,2320.75,0.00,1.602023,10.671108,251,355,0.005046,0.010297,13204893,11142543,0,0,37600,0,1,1 +1773588684.020274,0.75,4,3992.50,59.10,1373.30,2314.09,0.00,0.000000,0.000000,251,355,0.004348,0.008390,13205008,11142707,0,0,37602,0,1,1 +1773588689.021981,0.80,4,3992.50,59.10,1373.31,2314.07,0.00,3517236688772.196289,3517236688763.180664,11,0,0.005021,0.010297,13205143,11142908,0,0,37605,0,1,1 +1773588694.022254,1.55,4,3992.50,59.02,1376.76,2310.63,0.00,16658.201850,25744.929735,1185723,2088348,0.005035,0.010290,13205279,11143108,0,0,37607,0,1,1 +1773588699.019475,0.75,4,3992.50,59.02,1376.58,2310.83,0.00,3520394099743.227539,3520394090650.948242,11,0,0.004338,0.008404,13205393,11143273,0,0,37610,0,1,1 +1773588704.021764,1.00,4,3992.50,59.23,1367.99,2318.98,0.00,1.655394,10.670309,251,355,0.005033,0.010286,13205529,11143473,0,0,37612,0,1,1 +1773588709.021763,17.35,4,3992.50,59.88,1342.34,2344.45,0.00,3518438220784.375977,3518438220775.357422,11,0,22.166029,0.107713,13212851,11148853,0,0,37615,0,1,1 +1773588714.022335,10.67,4,3992.50,60.35,1323.77,2363.00,0.00,0.053509,0.000000,75,0,16.074690,0.069478,13217908,11152720,0,0,37617,0,1,1 +1773588719.022169,2.45,4,3992.50,59.83,1344.42,2342.31,0.00,3518554513268.353516,0.000000,11,0,2.019626,0.015258,13218709,11153346,0,0,37620,0,1,1 +1773588724.021740,0.95,4,3992.50,59.44,1359.41,2327.36,0.00,0.000000,0.000000,11,0,0.005010,0.010291,13218843,11153546,0,0,37622,0,1,1 +1773588729.022290,1.05,4,3992.50,59.45,1359.33,2327.43,0.00,0.053510,0.000000,75,0,0.004997,0.010943,13218976,11153751,0,0,37625,0,1,1 +1773588734.018710,1.25,4,3992.50,59.54,1356.19,2330.95,0.00,1.603785,10.682845,251,355,0.004339,0.008396,13219090,11153915,0,0,37627,0,1,1 +1773588739.019264,0.75,4,3992.50,59.54,1355.72,2331.12,0.00,3518047377569.735840,3518047377560.664551,75,0,0.005034,0.010312,13219226,11154117,0,0,37630,0,1,1 +1773588744.019888,0.80,4,3992.50,59.54,1355.73,2331.11,0.00,0.126742,0.000000,205,0,0.005022,0.010289,13219361,11154317,0,0,37632,0,1,1 +1773588749.020417,0.75,4,3992.50,59.54,1355.76,2331.09,0.00,16657.168853,25745.122224,1185723,2089982,0.004323,0.008399,13219474,11154482,0,0,37635,0,1,1 +1773588754.021329,0.75,4,3992.50,59.54,1355.76,2331.07,0.00,3517795742573.824219,3517795733486.565430,205,0,0.005047,0.010289,13219611,11154682,0,0,37637,0,1,1 +1773588759.021909,0.85,4,3992.50,59.35,1363.19,2323.66,0.00,1.831819,0.000195,246,2,0.005030,0.010307,13219747,11154884,0,0,37640,0,1,1 +1773588764.018608,1.05,4,3992.50,59.45,1358.71,2327.55,0.00,3520761297212.786133,3520761297214.800293,11,0,0.004339,0.008395,13219861,11155048,0,0,37642,0,1,1 +1773588769.021816,1.00,4,3992.50,59.39,1360.86,2325.14,0.00,2.011015,0.000195,246,2,0.005019,0.010294,13219996,11155249,0,0,37645,0,1,1 +1773588774.022043,0.80,4,3992.50,59.32,1363.59,2322.41,0.00,16656.342516,25746.851379,1185723,2090138,0.005035,0.010290,13220132,11155449,0,0,37647,0,1,1 +1773588779.018615,1.40,4,3992.50,59.11,1371.65,2314.34,0.00,3520851215272.091309,3520851206176.944824,11,0,0.008516,0.010542,13220317,11155662,0,0,37650,0,1,1 +1773588784.021683,13.91,4,3992.50,59.73,1347.27,2338.68,0.00,0.180163,0.000000,205,0,18.107325,0.086745,13226260,11160117,0,0,37652,0,1,1 +1773588789.018550,11.66,4,3992.50,59.90,1340.85,2345.09,0.00,16669.378606,25764.762999,1185723,2090988,18.116898,0.078640,13232001,11164457,0,0,37655,0,1,1 +1773588794.022401,4.67,4,3992.50,60.33,1323.73,2362.17,0.00,0.000000,0.259175,1185723,2091165,4.037539,0.030895,13233659,11165745,0,0,37657,0,1,1 +1773588799.018931,0.85,4,3992.50,60.14,1331.16,2354.70,0.00,3520880798983.471680,3520880789887.394531,11,0,0.005026,0.010308,13233794,11165946,0,0,37660,0,1,1 +1773588804.018602,1.55,4,3992.50,59.76,1346.25,2339.60,0.00,0.180285,0.000000,205,0,0.004349,0.008390,13233909,11166110,0,0,37662,0,1,1 +1773588809.022238,0.85,4,3992.50,59.73,1347.29,2338.55,0.00,16637.272240,25719.935401,1184234,2091211,0.005027,0.010301,13234045,11166312,0,0,37665,0,1,1 +1773588814.019583,0.85,4,3992.50,59.76,1345.98,2339.87,0.00,0.000000,0.114416,1184234,2091256,0.005038,0.010271,13234181,11166510,0,0,37667,0,1,1 +1773588819.022104,0.70,4,3992.50,59.73,1347.14,2338.71,0.00,3516663737306.271973,3516663728219.639648,246,2,0.004334,0.008421,13234295,11166677,0,0,37670,0,1,1 +1773588824.021776,1.10,4,3992.50,59.57,1356.46,2332.30,0.00,0.000000,0.000000,246,2,0.005010,0.010291,13234429,11166877,0,0,37672,0,1,1 +1773588829.017828,0.85,4,3992.50,59.58,1356.20,2332.67,0.00,16670.262274,25769.925975,1185723,2091739,0.004568,0.009028,13234550,11167053,0,0,37675,0,1,1 +1773588834.021470,0.75,4,3992.50,59.58,1356.20,2332.65,0.00,3515876589150.675293,3515876580064.812500,246,2,0.004853,0.009725,13234683,11167246,0,0,37677,0,1,1 +1773588839.022128,0.80,4,3992.50,59.56,1356.95,2331.91,0.00,16645.347486,25735.584658,1184234,2091462,0.005034,0.010299,13234819,11167447,0,0,37680,0,1,1 +1773588844.022306,1.00,4,3992.50,59.59,1355.76,2333.10,0.00,3518312241487.391602,3518312232396.280273,246,2,0.005022,0.010265,13234954,11167645,0,0,37682,0,1,1 +1773588849.018432,0.75,4,3992.50,59.55,1357.29,2331.58,0.00,3521165201340.562012,10.683277,251,355,0.003894,0.007163,13235055,11167788,0,0,37685,0,1,1 +1773588854.022144,4.46,4,3992.50,59.87,1348.53,2344.21,0.00,3515827613259.111328,3515827613250.045898,75,0,4.028558,0.024545,13236481,11168851,0,0,37687,0,1,1 +1773588859.021497,25.00,4,3992.50,59.76,1349.03,2339.74,0.00,1.602844,10.676575,251,355,34.213337,0.152919,13247507,11176978,0,0,37690,0,1,1 +1773588864.017658,2.76,4,3992.50,59.93,1342.47,2346.30,0.00,3521141200252.090332,3521141200242.883789,205,0,2.025790,0.020280,13248405,11177726,0,0,37692,0,1,1 +1773588869.021736,0.95,4,3992.50,59.59,1355.54,2333.23,0.00,1.830538,0.000195,246,2,0.005326,0.010846,13248547,11177938,0,0,37695,0,1,1 +1773588874.020188,0.75,4,3992.50,59.44,1361.50,2327.26,0.00,3519526644566.611328,3519526644568.570312,75,0,0.005477,0.009594,13248671,11178116,0,0,37697,0,1,1 +1773588879.021735,0.95,4,3992.50,59.25,1369.04,2319.73,0.00,1.602141,10.671895,251,355,0.005021,0.010297,13248806,11178317,0,0,37700,0,1,1 +1773588884.017456,1.10,4,3992.50,59.23,1380.12,2318.99,0.00,3521450806617.236816,3521450806608.156738,75,0,0.005027,0.010299,13248941,11178517,0,0,37702,0,1,1 +1773588889.019875,0.80,4,3992.50,59.14,1383.46,2315.65,0.00,0.126697,0.000000,205,0,0.005003,0.009317,13249058,11178684,0,0,37705,0,1,1 +1773588894.021543,0.85,4,3992.50,59.13,1384.04,2315.07,0.00,16653.379761,25742.589252,1185723,2093427,0.005021,0.010287,13249193,11178884,0,0,37707,0,1,1 +1773588899.022015,0.85,4,3992.50,59.09,1385.64,2313.46,0.00,3518104726402.095215,3518104717310.894531,11,0,0.005322,0.010854,13249334,11179096,0,0,37710,0,1,1 +1773588904.018421,0.80,4,3992.50,59.12,1384.46,2314.67,0.00,0.180403,0.000000,205,0,0.004339,0.008396,13249448,11179260,0,0,37712,0,1,1 +1773588909.021994,0.80,4,3992.50,59.08,1385.98,2313.12,0.00,16647.038724,25732.898410,1185723,2093521,0.005223,0.010833,13249590,11179473,0,0,37715,0,1,1 +1773588914.017486,1.30,4,3992.50,59.53,1371.33,2330.80,0.00,3521611891536.833496,3521611882436.458496,11,0,0.005058,0.010338,13249727,11179676,0,0,37717,0,1,1 +1773588919.022440,1.00,4,3992.50,59.46,1368.25,2328.14,0.00,2.010313,0.000195,246,2,0.004375,0.008404,13249844,11179842,0,0,37720,0,1,1 +1773588924.019699,8.45,4,3992.50,59.49,1367.05,2329.32,0.00,3520367377028.869629,3520367377030.882812,11,0,8.069249,0.050575,13252721,11182081,0,0,37722,0,1,1 +1773588929.021756,12.31,4,3992.50,59.59,1363.22,2333.04,0.00,0.000000,0.000000,11,0,18.109504,0.087362,13258771,11186689,0,0,37725,0,1,1 +1773588934.021406,10.65,4,3992.50,59.66,1360.43,2335.87,0.00,16660.277397,25753.737063,1185723,2094550,14.086593,0.064151,13263307,11190010,0,0,37727,0,1,1 +1773588939.022218,1.00,4,3992.50,59.49,1367.13,2329.16,0.00,3517866371971.410645,3517866362878.049805,246,2,0.004360,0.008411,13263423,11190176,0,0,37730,0,1,1 +1773588944.017432,1.35,4,3992.50,59.49,1366.38,2329.34,0.00,3521808013036.410645,3521808013038.425293,11,0,0.005027,0.010300,13263558,11190376,0,0,37732,0,1,1 +1773588949.021733,0.95,4,3992.50,59.49,1366.60,2329.01,0.00,16635.241134,25719.629284,1184234,2094442,0.004332,0.008392,13263672,11190541,0,0,37735,0,1,1 +1773588954.022217,1.10,4,3992.50,59.49,1366.51,2329.11,0.00,3518096973260.266602,3518096964177.960449,251,355,0.005022,0.010290,13263807,11190741,0,0,37737,0,1,1 +1773588959.022183,1.00,4,3992.50,59.45,1368.16,2327.46,0.00,3518460869827.381836,3518460869818.182617,205,0,0.005043,0.010309,13263944,11190943,0,0,37740,0,1,1 +1773588964.018579,0.90,4,3992.50,59.49,1366.47,2329.14,0.00,3520975093224.659668,0.000000,11,0,0.004339,0.008396,13264058,11191107,0,0,37742,0,1,1 +1773588969.022128,1.05,4,3992.50,59.05,1383.68,2311.93,0.00,2.010878,0.000195,246,2,0.005019,0.010293,13264193,11191308,0,0,37745,0,1,1 +1773588974.021768,1.35,4,3992.50,59.34,1370.27,2323.16,0.00,16658.298367,25754.701680,1185723,2095173,0.005023,0.010291,13264328,11191508,0,0,37747,0,1,1 +1773588979.023418,9.07,4,3992.50,71.68,939.71,2806.42,0.00,15.420888,3517276521689.774902,1186056,2095101,0.004334,0.008409,13264442,11191674,0,0,37750,0,1,1 +1773588984.020275,28.99,4,3992.50,65.20,1192.99,2552.76,0.00,3520650463205.009766,3520650454131.314453,75,0,0.005036,0.010330,13264578,11191877,0,0,37752,0,1,1 +1773588989.022286,28.83,4,3992.50,64.22,1231.52,2514.43,0.00,3517022534400.190430,0.000000,11,0,0.004349,0.008904,13264693,11192047,0,0,37755,0,1,1 +1773588994.023255,29.29,4,3992.50,61.38,1343.25,2403.07,0.00,0.000000,0.000000,11,0,0.004335,0.008574,13264807,11192214,0,0,37757,0,1,1 +1773588999.022529,39.48,4,3992.50,85.84,358.61,3360.84,0.00,0.000000,0.000000,11,0,8.072172,0.052083,13267660,11194378,0,0,37760,0,1,1 +1773589004.019287,53.98,4,3992.50,94.65,33.96,3705.70,0.00,1.657227,10.682122,251,355,32.188554,0.125898,13277057,11201397,0,0,37762,0,1,1 +1773589009.019377,25.58,4,3992.50,58.85,1433.54,2304.25,0.00,17784.107768,25744.827698,1257539,2107456,0.014464,0.013807,13277369,11201724,0,0,37765,0,1,1 +1773589014.021657,0.90,4,3992.50,58.51,1444.00,2290.86,0.00,3516833982539.996582,3516833974573.745117,11,0,0.005020,0.010298,13277504,11201925,0,0,37767,0,1,1 +1773589019.020588,1.20,4,3992.50,58.33,1450.49,2283.82,0.00,2.012735,0.000195,246,2,0.004566,0.009035,13277625,11202102,0,0,37770,0,1,1 +1773589024.021554,0.95,4,3992.50,58.36,1448.91,2285.00,0.00,3517757535912.212891,3517757535914.171387,75,0,0.003998,0.009285,13277738,11202282,0,0,37772,0,1,1 +1773589029.017746,0.95,4,3992.50,58.38,1447.65,2285.71,0.00,17801.349233,25775.817181,1257663,2107643,0.005039,0.010308,13277874,11202483,0,0,37775,0,1,1 +1773589034.020298,1.35,4,3992.50,58.77,1424.01,2300.84,0.00,3516642368569.939941,3516642360605.663574,11,0,0.004346,0.008385,13277989,11202647,0,0,37777,0,1,1 +1773589039.017563,1.00,4,3992.50,58.61,1428.85,2294.86,0.00,1.657059,10.681040,251,355,0.003888,0.007144,13278090,11202789,0,0,37780,0,1,1 +1773589044.021541,0.75,4,3992.50,58.57,1430.64,2293.04,0.00,17786.055806,25735.817101,1259399,2108097,0.004091,0.007737,13278196,11202940,0,0,37782,0,1,1 +1773589049.018305,1.00,4,3992.50,58.50,1433.21,2290.46,0.00,0.000000,0.030879,1259399,2108136,0.004313,0.008380,13278308,11203103,0,0,37785,0,1,1 +1773589054.022165,1.70,4,3992.50,58.44,1434.41,2288.12,0.00,3515722544202.599121,3515722536241.596680,246,2,0.005019,0.010604,13278443,11203305,0,0,37787,0,1,1 +1773589059.017454,0.95,4,3992.50,58.40,1436.22,2286.31,0.00,3521755359589.524902,3521755359591.485352,75,0,0.004582,0.009351,13278565,11203483,0,0,37790,0,1,1 +1773589064.017460,1.30,4,3992.50,58.77,1421.59,2300.96,0.00,0.000000,0.000000,75,0,0.004802,0.009677,13278694,11203673,0,0,37792,0,1,1 +1773589069.022016,7.72,4,3992.50,89.69,229.46,3511.70,0.00,1.957006,0.000195,246,2,0.005020,0.010316,13278829,11203876,0,0,37795,0,1,1 +1773589074.023038,47.20,4,3992.50,90.32,187.42,3536.09,0.00,3517717808854.675293,3517717808856.633301,75,0,14.097970,0.073003,13283393,11207238,0,0,37797,0,1,1 +1773589079.019058,53.82,4,3992.50,85.39,402.82,3343.14,0.00,1.960350,0.000195,246,2,26.160748,0.103334,13290890,11212862,0,0,37800,0,1,1 +1773589084.021197,32.33,4,3992.50,81.88,539.10,3205.84,0.00,3516932139882.138184,3516932139884.095703,75,0,0.009211,0.010791,13291088,11213093,0,0,37802,0,1,1 +1773589089.023143,30.97,4,3992.50,58.67,1458.33,2297.18,0.00,1.958027,0.000195,246,2,0.007812,0.012264,13291266,11213325,0,0,37805,0,1,1 +1773589094.019569,30.82,4,3992.50,94.63,40.23,3704.84,0.00,19331.422333,25801.512528,1362310,2122945,0.004411,0.008496,13291385,11213497,0,0,37807,0,1,1 +1773589099.019074,25.58,4,3992.50,58.69,1443.91,2297.82,0.00,3518785611973.551270,3518785605509.458008,11,0,0.005040,0.010339,13291521,11213701,0,0,37810,0,1,1 +1773589104.021697,0.95,4,3992.50,58.69,1435.66,2298.00,0.00,0.180179,0.000000,205,0,0.005020,0.010298,13291656,11213902,0,0,37812,0,1,1 +1773589109.018426,0.80,4,3992.50,58.73,1433.71,2299.56,0.00,1.833231,0.000195,246,2,0.004313,0.008405,13291768,11214067,0,0,37815,0,1,1 +1773589114.021575,0.95,4,3992.50,58.60,1438.81,2294.44,0.00,0.000000,0.000000,246,2,0.003036,0.006256,13291850,11214189,0,0,37817,0,1,1 +1773589119.017652,0.90,4,3992.50,58.60,1438.29,2294.45,0.00,3521200121373.383301,3521200121375.397461,11,0,0.004581,0.009350,13291972,11214367,0,0,37820,0,1,1 +1773589124.018594,1.40,4,3992.50,59.10,1408.14,2314.05,0.00,1.655840,10.673183,251,355,0.004805,0.009990,13292101,11214558,0,0,37822,0,1,1 +1773589129.017581,0.80,4,3992.50,58.88,1416.66,2305.17,0.00,0.356225,3519150140126.642578,246,2,0.005023,0.010303,13292236,11214759,0,0,37825,0,1,1 +1773589134.017727,0.95,4,3992.50,58.81,1419.26,2302.47,0.00,0.000000,0.000000,246,2,0.004386,0.008452,13292354,11214927,0,0,37827,0,1,1 +1773589139.021688,1.05,4,3992.50,58.71,1421.89,2298.77,0.00,3515651760803.804688,3515651760805.635254,205,0,0.005026,0.010300,13292490,11215129,0,0,37830,0,1,1 +1773589144.019595,1.46,4,3992.50,58.51,1418.95,2290.88,0.00,3519910706159.027832,0.000000,11,0,0.006434,0.010982,13292650,11215343,0,0,37832,0,1,1 +1773589149.021612,20.90,4,3992.50,59.11,1381.88,2314.29,0.00,0.053494,0.000000,75,0,28.167534,0.133118,13301936,11222361,0,0,37835,0,1,1 +1773589154.021673,8.40,4,3992.50,59.12,1395.65,2314.70,0.00,19552.219082,25786.492151,1376765,2126674,12.082397,0.059997,13306081,11225471,0,0,37837,0,1,1 +1773589159.022644,7.32,4,3992.50,80.68,585.35,3158.88,0.00,3517754000697.808594,3517753994464.724121,11,0,0.005036,0.010311,13306217,11225673,0,0,37840,0,1,1 +1773589164.022707,30.35,4,3992.50,72.89,878.27,2853.73,0.00,19733.860054,25789.640081,1388675,2129344,0.005090,0.010374,13306357,11225880,0,0,37842,0,1,1 +1773589169.021316,30.04,4,3992.50,62.16,1313.66,2433.77,0.00,3519416809669.231934,3519416803620.709961,251,355,0.004632,0.008982,13306477,11226058,0,0,37845,0,1,1 +1773589174.018293,29.80,4,3992.50,85.18,407.25,3335.03,0.00,20052.021748,25788.903227,1407850,2133168,0.004808,0.007746,13306581,11226204,0,0,37847,0,1,1 +1773589179.018506,29.55,4,3992.50,81.77,540.35,3201.28,0.00,3518287495559.966797,3518287489817.725586,75,0,0.004350,0.008437,13306696,11226372,0,0,37850,0,1,1 +1773589184.021930,29.85,4,3992.50,80.59,586.95,3155.33,0.00,20353.722717,25782.098284,1429941,2138067,0.005019,0.010309,13306831,11226574,0,0,37852,0,1,1 +1773589189.020998,24.89,4,3992.50,59.27,1422.62,2320.68,0.00,3519092531522.169434,3519092526089.118652,11,0,0.004809,0.010300,13306960,11226766,0,0,37855,0,1,1 +1773589194.021442,0.90,4,3992.50,58.79,1430.57,2301.84,0.00,0.053511,0.000000,75,0,0.005234,0.009982,13307084,11226947,0,0,37857,0,1,1 +1773589199.017509,1.05,4,3992.50,58.82,1429.15,2302.96,0.00,20536.171296,25822.485208,1440198,2140233,0.005326,0.010851,13307225,11227158,0,0,37860,0,1,1 +1773589204.021591,0.95,4,3992.50,58.71,1431.14,2298.74,0.00,3515567033031.879395,3515567027754.086914,11,0,0.004332,0.008383,13307339,11227322,0,0,37862,0,1,1 +1773589209.022379,0.85,4,3992.50,58.61,1434.48,2294.62,0.00,20508.444335,25787.532423,1438823,2139982,0.005206,0.010831,13307479,11227534,0,0,37865,0,1,1 +1773589214.022542,3.21,4,3992.50,59.07,1396.21,2312.64,0.00,8.095828,0.076853,1439447,2140050,0.014493,0.016390,13307769,11227850,0,0,37867,0,1,1 +1773589219.021554,21.26,4,3992.50,59.61,1338.19,2333.98,0.00,3519133503121.730469,3519133497848.732422,75,0,30.217269,0.139434,13317608,11235252,0,0,37870,0,1,1 +1773589224.022015,6.28,4,3992.50,59.09,1358.64,2313.49,0.00,1.602489,10.674211,251,355,10.040504,0.048043,13320839,11237800,0,0,37872,0,1,1 +1773589229.021037,1.05,4,3992.50,59.09,1358.48,2313.63,0.00,20553.777499,25797.415973,1441357,2141434,0.005945,0.010960,13320976,11238003,0,0,37875,0,1,1 +1773589234.018614,0.90,4,3992.50,59.11,1357.78,2314.35,0.00,3520142889058.962891,3520142883813.808105,251,355,0.005025,0.010296,13321111,11238203,0,0,37877,0,1,1 +1773589239.017584,0.95,4,3992.50,59.06,1359.66,2312.48,0.00,0.000000,0.000000,251,355,0.004349,0.008401,13321226,11238368,0,0,37880,0,1,1 +1773589244.021548,1.30,4,3992.50,59.39,1358.61,2325.21,0.00,3515649558236.799805,3515649558227.788086,11,0,0.005018,0.010282,13321361,11238568,0,0,37882,0,1,1 +1773589249.022142,7.12,4,3992.50,82.17,525.04,3217.13,0.00,0.000000,0.000000,11,0,0.005037,0.010312,13321497,11238770,0,0,37885,0,1,1 +1773589254.022091,29.33,4,3992.50,93.95,57.01,3678.41,0.00,0.180275,0.000000,205,0,0.002967,0.005282,13321569,11238870,0,0,37887,0,1,1 +1773589259.018336,29.91,4,3992.50,62.97,1278.15,2465.49,0.00,3521081840637.294434,0.000000,11,0,0.003667,0.006541,13321663,11239002,0,0,37890,0,1,1 +1773589264.018485,29.78,4,3992.50,70.77,967.97,2770.91,0.00,0.000000,0.000000,11,0,0.005047,0.010349,13321800,11239207,0,0,37892,0,1,1 +1773589269.018364,29.82,4,3992.50,87.36,327.25,3420.39,0.00,21224.019205,25803.865002,1483330,2150481,0.004368,0.008463,13321916,11239377,0,0,37895,0,1,1 +1773589274.020233,29.92,4,3992.50,64.55,1220.02,2527.37,0.00,3517122591343.890625,3517122586763.855957,246,2,0.005023,0.010324,13322051,11239580,0,0,37897,0,1,1 +1773589279.023088,24.81,4,3992.50,58.95,1432.82,2307.96,0.00,3516428842041.916016,3516428842043.927246,11,0,0.004363,0.008433,13322167,11239748,0,0,37900,0,1,1 +1773589284.021685,6.22,4,3992.50,59.08,1396.51,2313.23,0.00,0.053531,0.000000,75,0,4.046561,0.037183,13323884,11241146,0,0,37902,0,1,1 +1773589289.021691,20.51,4,3992.50,59.14,1366.18,2315.61,0.00,21559.372710,25808.591999,1504561,2155458,30.171954,0.128609,13333363,11248309,0,0,37905,0,1,1 +1773589294.018574,7.08,4,3992.50,59.36,1357.67,2324.08,0.00,3520631580088.584473,3520631575836.763184,11,0,6.049462,0.029613,13335389,11249747,0,0,37907,0,1,1 +1773589299.018083,1.30,4,3992.50,59.24,1362.30,2319.43,0.00,0.053521,0.000000,75,0,0.004999,0.008819,13335518,11249922,0,0,37910,0,1,1 +1773589304.018918,1.40,4,3992.50,59.10,1373.57,2313.81,0.00,3517849689992.141113,0.000000,11,0,0.005034,0.010289,13335654,11250122,0,0,37912,0,1,1 +1773589309.019580,0.90,4,3992.50,59.07,1374.41,2312.83,0.00,2.012038,0.000195,246,2,0.004310,0.008386,13335766,11250286,0,0,37915,0,1,1 +1773589314.020128,1.15,4,3992.50,59.07,1374.71,2312.55,0.00,3518051019053.888184,10.673828,251,355,0.005005,0.010297,13335900,11250487,0,0,37917,0,1,1 +1773589319.020840,0.90,4,3992.50,58.99,1377.66,2309.60,0.00,3517936445403.927246,3517936445394.856445,75,0,0.005022,0.010943,13336035,11250692,0,0,37920,0,1,1 +1773589324.019894,0.90,4,3992.50,59.00,1377.12,2310.14,0.00,21568.398692,25814.737324,1504863,2156445,0.004337,0.008391,13336149,11250856,0,0,37922,0,1,1 +1773589329.021915,0.95,4,3992.50,59.03,1376.29,2310.97,0.00,9.684172,10.686208,1506359,2156810,0.005020,0.010321,13336284,11251059,0,0,37925,0,1,1 +1773589334.021183,1.30,4,3992.50,58.98,1378.12,2309.11,0.00,3518951975499.084473,3518951971261.000000,251,355,0.005023,0.010292,13336419,11251259,0,0,37927,0,1,1 +1773589339.022301,6.42,4,3992.50,80.85,578.88,3165.59,0.00,0.356073,3517650511662.675293,246,2,0.004347,0.008398,13336534,11251424,0,0,37930,0,1,1 +1773589344.022274,30.09,4,3992.50,91.01,176.05,3563.18,0.00,3518456344357.862305,3518456344359.874512,11,0,0.005042,0.010354,13336670,11251629,0,0,37932,0,1,1 +1773589349.022004,29.58,4,3992.50,87.73,306.61,3434.64,0.00,0.000000,0.000000,11,0,0.004355,0.008463,13336785,11251799,0,0,37935,0,1,1 +1773589354.022187,29.91,4,3992.50,84.48,431.32,3307.43,0.00,0.000000,0.000000,11,0,0.005042,0.010353,13336921,11252004,0,0,37937,0,1,1 +1773589359.022891,42.99,4,3992.50,61.03,1350.11,2389.52,0.00,0.000000,0.000000,11,0,10.074370,0.054897,13340184,11254465,0,0,37940,0,1,1 +1773589364.022673,53.68,4,3992.50,82.09,491.14,3213.83,0.00,22602.538704,25836.776593,1572234,2170361,26.229037,0.112454,13348066,11260320,0,0,37942,0,1,1 +1773589369.018552,27.01,4,3992.50,59.29,1414.41,2321.45,0.00,3521339557450.522461,3521339554211.743652,246,2,3.950891,0.022741,13349311,11261348,0,0,37945,0,1,1 +1773589374.021606,0.85,4,3992.50,59.01,1422.54,2310.32,0.00,3516289670830.882324,3516289670832.893555,11,0,0.002798,0.004439,13349381,11261438,0,0,37947,0,1,1 +1773589379.018293,0.95,4,3992.50,58.95,1424.12,2308.16,0.00,1.657250,10.682273,251,355,0.005026,0.010307,13349516,11261639,0,0,37950,0,1,1 +1773589384.020565,1.00,4,3992.50,58.51,1441.25,2290.75,0.00,3516838863294.513672,3516838863285.318848,205,0,0.004779,0.009627,13349643,11261825,0,0,37952,0,1,1 +1773589389.018996,1.00,4,3992.50,58.46,1441.61,2288.80,0.00,1.476342,10.678546,251,355,0.006753,0.010714,13349809,11262034,0,0,37955,0,1,1 +1773589394.017466,1.50,4,3992.50,58.81,1417.17,2302.48,0.00,3519514734361.877930,3519514734352.856445,11,0,0.005039,0.010306,13349945,11262235,0,0,37957,0,1,1 +1773589399.021969,1.00,4,3992.50,58.76,1418.66,2300.61,0.00,22734.722858,25804.682563,1581282,2172632,0.004332,0.008392,13350059,11262400,0,0,37960,0,1,1 +1773589404.017459,0.85,4,3992.50,58.71,1420.61,2298.59,0.00,3521613460313.536621,3521613457247.064941,251,355,0.005027,0.010300,13350194,11262600,0,0,37962,0,1,1 +1773589409.019866,0.60,4,3992.50,58.71,1420.30,2298.80,0.00,22742.652762,25804.846987,1581286,2172654,0.005041,0.010303,13350331,11262802,0,0,37965,0,1,1 +1773589414.017478,0.75,4,3992.50,58.71,1420.35,2298.70,0.00,0.036736,0.034001,1581288,2172695,0.004338,0.008394,13350445,11262966,0,0,37967,0,1,1 +1773589419.017562,0.75,4,3992.50,58.65,1422.59,2296.40,0.00,3518377839539.515625,3518377836475.901367,251,355,0.005035,0.010288,13350581,11263166,0,0,37970,0,1,1 +1773589424.017560,1.15,4,3992.50,58.86,1419.79,2304.36,0.00,0.356152,3518438633840.171387,246,2,0.005022,0.010291,13350716,11263366,0,0,37972,0,1,1 +1773589429.018376,6.82,4,3992.50,77.88,696.90,3049.07,0.00,3517862713757.310059,3517862713759.141602,205,0,0.004335,0.008411,13350830,11263532,0,0,37975,0,1,1 +1773589434.020282,48.61,4,3992.50,94.15,35.50,3686.29,0.00,3517096933279.427734,0.000000,11,0,18.113098,0.089506,13356445,11267775,0,0,37977,0,1,1 +1773589439.019267,50.13,4,3992.50,91.19,154.19,3570.22,0.00,23412.194749,25850.757305,1624861,2179685,22.130664,0.092594,13362966,11272706,0,0,37980,0,1,1 +1773589444.018936,29.75,4,3992.50,63.76,1245.94,2496.39,0.00,3518670341019.016602,3518670338589.806641,251,355,0.003749,0.008203,13363070,11272867,0,0,37982,0,1,1 +1773589449.022681,29.40,4,3992.50,90.23,223.43,3532.59,0.00,0.355886,3515803776916.912109,246,2,0.002759,0.004474,13363137,11272960,0,0,37985,0,1,1 +1773589454.018779,30.04,4,3992.50,90.33,197.29,3536.47,0.00,3521184987417.519531,3521184987419.479492,75,0,0.005026,0.010968,13363272,11273166,0,0,37987,0,1,1 +1773589459.022278,24.47,4,3992.50,58.72,1444.29,2299.13,0.00,0.126669,0.000000,205,0,0.005057,0.010352,13363410,11273372,0,0,37990,0,1,1 +1773589464.018576,0.65,4,3992.50,59.07,1421.81,2312.53,0.00,0.000000,0.000000,205,0,0.004339,0.008396,13363524,11273536,0,0,37992,0,1,1 +1773589469.019258,0.75,4,3992.50,58.99,1424.25,2309.56,0.00,3517957322213.921875,0.000000,11,0,0.005329,0.010866,13363666,11273749,0,0,37995,0,1,1 +1773589474.021686,0.85,4,3992.50,58.88,1428.07,2305.24,0.00,24040.219592,25844.254187,1665531,2189514,0.004526,0.008917,13363786,11273924,0,0,37997,0,1,1 +1773589479.017472,0.90,4,3992.50,58.85,1428.83,2304.14,0.00,3521404974940.288574,3521404973133.801758,75,0,0.005027,0.010309,13363921,11274125,0,0,38000,0,1,1 +1773589484.022201,1.25,4,3992.50,59.02,1412.66,2310.70,0.00,24033.854691,25832.518393,1665802,2189632,0.005018,0.010281,13364056,11274325,0,0,38002,0,1,1 +1773589489.019993,0.65,4,3992.50,58.90,1416.95,2306.04,0.00,0.118802,0.015241,1665813,2189645,0.004338,0.008403,13364170,11274490,0,0,38005,0,1,1 +1773589494.017455,0.85,4,3992.50,58.84,1418.35,2303.54,0.00,3520223993498.093750,3520223991696.791016,205,0,0.005695,0.011218,13364308,11274692,0,0,38007,0,1,1 +1773589499.019328,1.05,4,3992.50,58.37,1432.25,2285.35,0.00,1.831345,0.000195,246,2,0.006703,0.011236,13364472,11274918,0,0,38010,0,1,1 +1773589504.020550,21.54,4,3992.50,59.70,1362.10,2337.25,0.00,3517577629693.724121,10.672392,251,355,28.167458,0.129515,13373441,11281644,0,0,38012,0,1,1 +1773589509.017563,7.33,4,3992.50,59.29,1377.98,2321.38,0.00,3520540366318.382812,3520540366309.305176,75,0,9.866013,0.043919,13376554,11283954,0,0,38015,0,1,1 +1773589514.020215,3.86,4,3992.50,59.09,1387.94,2313.39,0.00,0.000000,0.000000,75,0,2.217230,0.013274,13377302,11284537,0,0,38017,0,1,1 +1773589519.018378,6.43,4,3992.50,58.93,1438.32,2307.10,0.00,1.959509,0.000195,246,2,0.005055,0.010974,13377439,11284744,0,0,38020,0,1,1 +1773589524.021430,29.08,4,3992.50,86.12,370.00,3371.75,0.00,3516290918352.300781,3516290918354.258301,75,0,0.005064,0.010347,13377577,11284949,0,0,38022,0,1,1 +1773589529.027564,30.26,4,3992.50,95.34,29.05,3732.60,0.00,0.000000,0.000000,75,0,0.005271,0.009121,13377694,11285122,0,0,38025,0,1,1 +1773589534.018564,29.58,4,3992.50,63.89,1246.25,2501.52,0.00,24625.829417,25913.781087,1698479,2198500,0.005059,0.010347,13377831,11285325,0,0,38027,0,1,1 +1773589539.018431,29.30,4,3992.50,85.51,403.46,3347.76,0.00,149.776647,2.919218,1707908,2200947,0.004323,0.008425,13377944,11285492,0,0,38030,0,1,1 +1773589544.018333,29.87,4,3992.50,95.41,8.35,3735.43,0.00,3518505557862.975098,3518505556724.227051,11,0,0.005055,0.010341,13378081,11285696,0,0,38032,0,1,1 +1773589549.023419,25.99,4,3992.50,58.95,1430.38,2308.19,0.00,0.000000,0.000000,11,0,0.004381,0.008479,13378198,11285868,0,0,38035,0,1,1 +1773589554.017558,0.95,4,3992.50,58.97,1421.12,2308.62,0.00,0.180485,0.000000,205,0,0.005024,0.010323,13378333,11286070,0,0,38037,0,1,1 +1773589559.021763,0.85,4,3992.50,58.98,1420.11,2309.29,0.00,0.000000,0.000000,205,0,0.005018,0.010292,13378468,11286271,0,0,38040,0,1,1 +1773589564.021776,0.75,4,3992.50,58.90,1422.31,2306.10,0.00,1.832026,0.000195,246,2,0.004311,0.008390,13378580,11286435,0,0,38042,0,1,1 +1773589569.022361,0.95,4,3992.50,58.84,1424.23,2303.57,0.00,3518025697675.673828,3518025697677.686035,11,0,0.005022,0.010299,13378715,11286636,0,0,38045,0,1,1 +1773589574.022185,1.35,4,3992.50,59.17,1401.79,2316.59,0.00,2.012375,0.000195,246,2,0.004806,0.009632,13378844,11286822,0,0,38047,0,1,1 +1773589579.021554,7.33,4,3992.50,59.37,1367.19,2324.46,0.00,3518881082653.937988,10.676347,251,355,4.171645,0.030087,13380333,11288030,0,0,38050,0,1,1 +1773589584.020578,18.98,4,3992.50,58.61,1372.66,2294.64,0.00,25116.872269,25871.226158,1741556,2206462,16.590670,0.103084,13386151,11292572,0,0,38052,0,1,1 +1773589589.021813,5.42,4,3992.50,58.90,1361.06,2306.15,0.00,3517568596889.224121,3517568596135.203613,251,355,4.038053,0.040512,13387846,11294097,0,0,38055,0,1,1 +1773589594.017469,2.11,4,3992.50,58.91,1360.91,2306.35,0.00,0.000000,0.000000,251,355,0.010754,0.026154,13388159,11294597,0,0,38057,0,1,1 +1773589599.021454,1.50,4,3992.50,58.72,1368.11,2299.15,0.00,3515635683883.620605,3515635683874.428711,205,0,0.004337,0.008416,13388274,11294763,0,0,38060,0,1,1 +1773589604.018619,3.01,4,3992.50,59.06,1355.19,2312.19,0.00,25122.468976,25882.262724,1740115,2206715,1.417737,0.027290,13388980,11295473,0,0,38062,0,1,1 +1773589609.018563,2.31,4,3992.50,59.07,1354.38,2312.86,0.00,3518476765934.711914,3518476765175.520508,11,0,0.013360,0.027413,13389349,11296013,0,0,38065,0,1,1 +1773589614.021435,2.15,4,3992.50,59.07,1354.41,2312.82,0.00,2.011150,0.000195,246,2,0.010688,0.026103,13389658,11296512,0,0,38067,0,1,1 +1773589619.021725,2.06,4,3992.50,59.07,1354.52,2312.73,0.00,25114.514696,25877.034051,1741610,2207328,0.009847,0.023593,13389944,11296964,0,0,38070,0,1,1 +1773589624.022111,2.31,4,3992.50,58.87,1362.50,2304.74,0.00,3518165820601.151367,3518165819838.646484,246,2,0.007514,0.014344,13390135,11297243,0,0,38072,0,1,1 +1773589629.021476,3.16,4,3992.50,58.72,1368.18,2299.16,0.00,3518884260605.638184,3518884260607.650879,11,0,2.016573,0.025443,13390908,11297975,0,0,38075,0,1,1 +1773589634.021860,6.73,4,3992.50,59.23,1355.75,2318.82,0.00,2.012150,0.000195,246,2,8.043089,0.039650,13393378,11299839,0,0,38077,0,1,1 +1773589639.017478,5.12,4,3992.50,59.20,1356.15,2317.70,0.00,3521523629954.738770,3521523629956.752930,11,0,4.037639,0.029068,13394877,11301004,0,0,38080,0,1,1 +1773589644.018574,1.05,4,3992.50,59.20,1356.18,2317.67,0.00,25103.648443,25862.770526,1740169,2207755,0.005029,0.010296,13395013,11301205,0,0,38082,0,1,1 +1773589649.017557,1.80,4,3992.50,58.59,1379.95,2293.90,0.00,3519152420536.997559,3519152419775.541992,246,2,0.004337,0.009045,13395127,11301374,0,0,38085,0,1,1 +1773589654.017682,1.05,4,3992.50,58.59,1380.00,2293.86,0.00,25116.075632,25878.504527,1741659,2208161,0.005010,0.010278,13395261,11301573,0,0,38087,0,1,1 +1773589659.021857,0.95,4,3992.50,58.60,1379.45,2294.39,0.00,0.000000,0.033371,1741659,2208201,0.005006,0.010279,13395395,11301773,0,0,38090,0,1,1 +1773589664.019817,1.35,4,3992.50,58.85,1370.22,2304.04,0.00,3519873217415.880859,3519873216655.101562,11,0,0.004338,0.008393,13395509,11301937,0,0,38092,0,1,1 +1773589669.022094,0.90,4,3992.50,58.79,1372.53,2301.73,0.00,0.180191,0.000000,205,0,0.005008,0.010296,13395643,11302138,0,0,38095,0,1,1 +1773589674.021950,1.15,4,3992.50,58.62,1379.20,2295.07,0.00,3518538610350.938477,0.000000,11,0,0.004336,0.008390,13395757,11302302,0,0,38097,0,1,1 +1773589679.017442,0.95,4,3992.50,58.63,1378.97,2295.30,0.00,2.014121,0.000195,246,2,0.005027,0.010310,13395892,11302503,0,0,38100,0,1,1 +1773589684.017550,0.95,4,3992.50,58.56,1381.72,2292.55,0.00,0.000000,0.000000,246,2,0.005022,0.010290,13396027,11302703,0,0,38102,0,1,1 +1773589689.019334,1.05,4,3992.50,58.54,1382.29,2291.98,0.00,3517182434353.166504,10.671193,251,355,0.007134,0.010334,13396185,11302897,0,0,38105,0,1,1 +1773589694.021584,1.45,4,3992.50,58.77,1376.08,2300.94,0.00,0.355992,3516854765605.563965,246,2,0.005058,0.010286,13396323,11303097,0,0,38107,0,1,1 +1773589699.017558,0.85,4,3992.50,58.72,1377.57,2298.95,0.00,3521272012436.251953,3521272012438.085449,205,0,0.005039,0.010309,13396459,11303298,0,0,38110,0,1,1 +1773589704.017443,14.31,4,3992.50,60.03,1326.05,2350.39,0.00,3518518073576.551270,0.000000,75,0,18.121017,0.088439,13402506,11307845,0,0,38112,0,1,1 +1773589709.017788,12.41,4,3992.50,59.61,1342.68,2333.66,0.00,3518194494977.687988,0.000000,11,0,18.107551,0.081355,13408423,11312303,0,0,38115,0,1,1 +1773589714.021702,5.17,4,3992.50,59.61,1342.64,2333.67,0.00,0.053474,0.000000,75,0,4.034404,0.027158,13409959,11313435,0,0,38117,0,1,1 +1773589719.022239,0.95,4,3992.50,59.37,1351.71,2324.61,0.00,1.602464,10.674047,251,355,0.005034,0.010299,13410095,11313636,0,0,38120,0,1,1 +1773589724.017561,1.41,4,3992.50,59.51,1345.77,2330.12,0.00,0.000000,0.000000,251,355,0.004340,0.008398,13410209,11313800,0,0,38122,0,1,1 +1773589729.021620,1.05,4,3992.50,58.87,1370.99,2304.93,0.00,3515583355343.776367,3515583355334.764648,11,0,0.005018,0.010292,13410344,11314001,0,0,38125,0,1,1 +1773589734.021802,0.95,4,3992.50,58.88,1370.79,2305.14,0.00,2.012231,0.000195,246,2,0.005043,0.010298,13410481,11314202,0,0,38127,0,1,1 +1773589739.021686,1.00,4,3992.50,58.86,1371.38,2304.55,0.00,0.000000,0.000000,246,2,0.004386,0.008462,13410599,11314371,0,0,38130,0,1,1 +1773589744.021896,1.10,4,3992.50,58.62,1380.90,2295.04,0.00,3518289437910.343750,3518289437912.175781,205,0,0.005022,0.010290,13410734,11314571,0,0,38132,0,1,1 +1773589749.020823,1.05,4,3992.50,58.62,1380.93,2295.02,0.00,3519192038975.782715,0.000000,11,0,0.005024,0.010277,13410869,11314770,0,0,38135,0,1,1 +1773589754.020557,1.40,4,3992.50,58.91,1370.36,2306.57,0.00,0.000000,0.000000,11,0,0.004336,0.008415,13410983,11314936,0,0,38137,0,1,1 +1773589759.022309,0.85,4,3992.50,58.67,1377.68,2297.11,0.00,0.053497,0.000000,75,0,0.005021,0.010297,13411118,11315137,0,0,38140,0,1,1 +1773589764.019268,1.00,4,3992.50,58.59,1380.92,2293.88,0.00,0.000000,0.000000,75,0,0.004338,0.008395,13411232,11315301,0,0,38142,0,1,1 +1773589769.017756,1.00,4,3992.50,58.59,1380.70,2294.10,0.00,0.000000,0.000000,75,0,0.006254,0.011528,13411376,11315516,0,0,38145,0,1,1 +1773589774.017577,1.00,4,3992.50,58.45,1386.31,2288.50,0.00,1.958859,0.000195,246,2,0.005215,0.010823,13411517,11315727,0,0,38147,0,1,1 +1773589779.021995,15.97,4,3992.50,60.03,1324.65,2350.11,0.00,3515331132599.226074,3515331132601.056152,205,0,18.117155,0.096670,13417775,11320410,0,0,38150,0,1,1 +1773589784.017433,14.96,4,3992.50,59.95,1329.87,2347.19,0.00,0.000000,0.000000,205,0,22.151016,0.095925,13424961,11325742,0,0,38152,0,1,1 +1773589789.022137,1.00,4,3992.50,59.86,1332.91,2343.77,0.00,3515130621119.339355,0.000000,75,0,0.005030,0.010291,13425097,11325943,0,0,38155,0,1,1 +1773589794.022132,0.90,4,3992.50,59.84,1333.95,2342.72,0.00,25122.725647,25882.599999,1741946,2211760,0.005022,0.010291,13425232,11326143,0,0,38157,0,1,1 +1773589799.022113,1.05,4,3992.50,59.84,1333.71,2342.95,0.00,3518450776944.832031,3518450776194.027832,251,355,0.003932,0.006074,13425313,11326249,0,0,38160,0,1,1 +1773589804.021489,1.00,4,3992.50,59.84,1333.46,2343.06,0.00,25114.787330,25864.686720,1740484,2211466,0.004374,0.008391,13425430,11326413,0,0,38162,0,1,1 +1773589809.017562,1.20,4,3992.50,59.26,1356.44,2320.23,0.00,9.569040,10.746332,1741973,2211887,0.005211,0.010841,13425570,11326625,0,0,38165,0,1,1 +1773589814.022269,1.35,4,3992.50,59.35,1358.93,2323.81,0.00,3515127999884.089844,3515127999883.016602,1740484,2211550,0.005049,0.010306,13425707,11326827,0,0,38167,0,1,1 +1773589819.022320,1.00,4,3992.50,59.33,1359.42,2323.04,0.00,0.014062,0.037793,1740485,2211595,0.004367,0.008412,13425823,11326993,0,0,38170,0,1,1 +1773589824.018099,0.90,4,3992.50,59.34,1359.21,2323.26,0.00,3521409845981.019531,3521409845221.427246,11,0,0.005022,0.010307,13425958,11327194,0,0,38172,0,1,1 +1773589829.018327,1.05,4,3992.50,59.31,1360.28,2322.19,0.00,0.000000,0.000000,11,0,0.005257,0.009069,13426074,11327362,0,0,38175,0,1,1 +1773589834.017482,1.00,4,3992.50,59.13,1367.46,2315.00,0.00,0.053525,0.000000,75,0,0.005023,0.010280,13426209,11327561,0,0,38177,0,1,1 +1773589839.017484,1.15,4,3992.50,59.15,1366.49,2315.96,0.00,3518436146315.430664,0.000000,11,0,0.005022,0.010288,13426344,11327761,0,0,38180,0,1,1 +1773589844.022255,2.05,4,3992.50,59.26,1363.05,2320.14,0.00,2.010386,0.000195,246,2,0.008490,0.011133,13426528,11327975,0,0,38182,0,1,1 +1773589849.022148,19.69,4,3992.50,59.71,1344.95,2337.87,0.00,0.000000,0.000000,246,2,26.174293,0.127109,13435274,11334545,0,0,38185,0,1,1 +1773589854.022306,10.84,4,3992.50,59.30,1361.16,2321.59,0.00,3518325968563.365234,10.674662,251,355,14.084772,0.063892,13439763,11337896,0,0,38187,0,1,1 +1773589859.022147,0.95,4,3992.50,59.31,1360.69,2322.06,0.00,25112.754133,25863.409539,1740539,2213014,0.005023,0.010301,13439898,11338097,0,0,38190,0,1,1 +1773589864.017539,0.80,4,3992.50,59.36,1358.51,2324.23,0.00,3521682412704.279297,3521682411943.874023,75,0,0.004340,0.008397,13440012,11338261,0,0,38192,0,1,1 +1773589869.022288,0.85,4,3992.50,59.38,1358.05,2324.70,0.00,1.601116,10.665066,251,355,0.005030,0.010291,13440148,11338462,0,0,38195,0,1,1 +1773589874.017503,1.20,4,3992.50,59.50,1349.12,2329.73,0.00,3521807974964.801758,3521807974955.774414,11,0,0.005052,0.010300,13440285,11338662,0,0,38197,0,1,1 +1773589879.022171,0.80,4,3992.50,59.32,1356.44,2322.38,0.00,0.000000,0.000000,11,0,0.004332,0.008392,13440399,11338827,0,0,38200,0,1,1 +1773589884.019412,0.90,4,3992.50,59.34,1355.37,2323.44,0.00,0.000000,0.000000,11,0,0.005652,0.010557,13440547,11339035,0,0,38202,0,1,1 +1773589889.022316,0.80,4,3992.50,59.35,1355.18,2323.64,0.00,1.655191,10.668997,251,355,0.003190,0.005228,13440626,11339140,0,0,38205,0,1,1 +1773589894.017576,1.61,4,3992.50,58.97,1370.03,2308.80,0.00,3521776238742.728027,3521776238733.520020,205,0,0.004179,0.009429,13440742,11339321,0,0,38207,0,1,1 +1773589899.018247,0.85,4,3992.50,58.95,1370.80,2308.03,0.00,0.000000,0.000000,205,0,0.004348,0.008398,13440857,11339486,0,0,38210,0,1,1 +1773589904.021848,1.35,4,3992.50,59.08,1370.94,2312.96,0.00,1.474817,10.667511,251,355,0.005044,0.010283,13440994,11339686,0,0,38212,0,1,1 +1773589909.021562,0.95,4,3992.50,58.66,1387.16,2296.52,0.00,0.356173,3518639071788.617676,246,2,0.004814,0.010294,13441124,11339878,0,0,38215,0,1,1 +1773589914.021559,5.92,4,3992.50,58.93,1376.52,2307.14,0.00,25111.729561,25874.090206,1740549,2213610,5.037452,0.032765,13442856,11341196,0,0,38217,0,1,1 +1773589919.021645,20.84,4,3992.50,60.60,1310.77,2372.78,0.00,3518377040632.392090,3518377039872.002930,75,0,31.188709,0.139630,13452939,11348851,0,0,38220,0,1,1 +1773589924.021887,4.57,4,3992.50,59.73,1344.93,2338.62,0.00,0.000000,0.000000,75,0,4.039664,0.031186,13454591,11350137,0,0,38222,0,1,1 +1773589929.017444,1.00,4,3992.50,59.28,1362.60,2320.95,0.00,3521566386848.279785,0.000000,11,0,0.004340,0.008407,13454705,11350302,0,0,38225,0,1,1 +1773589934.021773,1.55,4,3992.50,59.10,1363.36,2314.03,0.00,1.654720,10.665963,251,355,0.005018,0.010282,13454840,11350502,0,0,38227,0,1,1 +1773589939.021557,1.00,4,3992.50,59.02,1366.39,2310.57,0.00,3518589105669.571289,3518589105660.498535,75,0,0.005056,0.010309,13454978,11350704,0,0,38230,0,1,1 +1773589944.022249,1.05,4,3992.50,59.01,1366.43,2310.55,0.00,25119.955275,25882.411847,1742087,2215432,0.004335,0.008389,13455092,11350868,0,0,38232,0,1,1 +1773589949.022146,0.95,4,3992.50,59.01,1366.45,2310.53,0.00,3518509568649.666504,3518509567887.142090,11,0,0.005035,0.010301,13455228,11351069,0,0,38235,0,1,1 +1773589954.022209,1.00,4,3992.50,59.02,1366.22,2310.76,0.00,0.000000,0.000000,11,0,0.005035,0.010278,13455364,11351268,0,0,38237,0,1,1 +1773589959.021662,0.95,4,3992.50,59.02,1366.24,2310.74,0.00,0.053521,0.000000,75,0,0.004336,0.008413,13455478,11351434,0,0,38240,0,1,1 +1773589964.020753,1.35,4,3992.50,59.26,1357.32,2320.27,0.00,0.000000,0.000000,75,0,0.005023,0.010280,13455613,11351633,0,0,38242,0,1,1 +1773589969.022233,0.90,4,3992.50,59.20,1359.90,2317.70,0.00,0.126720,0.000000,205,0,0.003643,0.006505,13455706,11351763,0,0,38245,0,1,1 +1773589974.021965,1.00,4,3992.50,59.20,1359.93,2317.67,0.00,3518626110548.115723,0.000000,11,0,0.004336,0.009034,13455820,11351931,0,0,38247,0,1,1 +1773589979.021776,0.90,4,3992.50,59.20,1359.73,2317.88,0.00,2.012380,0.000195,246,2,0.005035,0.010301,13455956,11352132,0,0,38250,0,1,1 +1773589984.021555,8.63,4,3992.50,59.11,1363.52,2314.09,0.00,25113.137081,25877.016501,1740610,2215597,8.061936,0.047574,13458755,11354210,0,0,38252,0,1,1 +1773589989.020566,20.97,4,3992.50,59.64,1342.22,2335.22,0.00,3519132577035.445312,3519132576273.281250,205,0,32.205451,0.143610,13469276,11362067,0,0,38255,0,1,1 +1773589994.017459,1.76,4,3992.50,59.79,1339.86,2341.08,0.00,1.833171,0.000195,246,2,0.007457,0.011444,13469458,11362296,0,0,38257,0,1,1 +1773589999.017493,1.05,4,3992.50,59.68,1344.16,2336.57,0.00,0.000000,0.000000,246,2,0.005043,0.010308,13469595,11362498,0,0,38260,0,1,1 +1773590004.017929,1.90,4,3992.50,58.97,1371.88,2308.88,0.00,3518130536960.411133,3518130536962.423340,11,0,0.004348,0.008389,13469710,11362662,0,0,38262,0,1,1 +1773590009.018840,0.90,4,3992.50,59.06,1368.48,2312.28,0.00,0.180241,0.000000,205,0,0.005022,0.010299,13469845,11362863,0,0,38265,0,1,1 +1773590014.021807,1.15,4,3992.50,59.06,1368.24,2312.51,0.00,25099.147555,25861.739117,1740662,2216873,0.004791,0.009626,13469973,11363049,0,0,38267,0,1,1 +1773590019.021722,0.90,4,3992.50,59.06,1368.26,2312.50,0.00,3518497248037.509766,3518497247272.620605,246,2,0.004565,0.009059,13470094,11363228,0,0,38270,0,1,1 +1773590024.021578,1.45,4,3992.50,58.89,1367.03,2305.61,0.00,3518538783467.860840,10.675308,251,355,0.005023,0.010291,13470229,11363428,0,0,38272,0,1,1 +1773590029.017487,0.90,4,3992.50,58.76,1371.78,2300.75,0.00,0.356444,3521318050580.948730,246,2,0.004347,0.008414,13470344,11363594,0,0,38275,0,1,1 +1773590034.017470,1.10,4,3992.50,58.77,1371.45,2301.09,0.00,3518449249718.209961,3518449249720.222168,11,0,0.005679,0.010605,13470494,11363805,0,0,38277,0,1,1 +1773590039.018961,0.95,4,3992.50,58.58,1378.86,2293.67,0.00,0.000000,0.000000,11,0,0.005046,0.010954,13470631,11364011,0,0,38280,0,1,1 +1773590044.017475,1.35,4,3992.50,58.38,1386.65,2285.88,0.00,0.000000,0.000000,11,0,0.004337,0.008392,13470745,11364175,0,0,38282,0,1,1 +1773590049.017433,1.05,4,3992.50,58.39,1386.45,2286.09,0.00,1.656166,10.675286,251,355,0.005035,0.010301,13470881,11364376,0,0,38285,0,1,1 +1773590054.022541,14.62,4,3992.50,59.54,1344.92,2331.22,0.00,3514846261277.978027,3514846261268.915039,75,0,18.102858,0.088616,13476849,11368858,0,0,38287,0,1,1 +1773590059.020611,8.24,4,3992.50,59.32,1353.48,2322.64,0.00,25124.051402,25888.108139,1740691,2218041,10.066007,0.046872,13480139,11371311,0,0,38290,0,1,1 +1773590064.021570,9.92,4,3992.50,59.57,1343.95,2332.11,0.00,3517761829781.721191,3517761829018.105957,75,0,12.076589,0.057195,13484086,11374273,0,0,38292,0,1,1 +1773590069.019914,1.20,4,3992.50,59.56,1343.97,2332.08,0.00,3519602859819.004883,0.000000,11,0,0.005344,0.010859,13484229,11374485,0,0,38295,0,1,1 +1773590074.021775,0.95,4,3992.50,59.50,1346.59,2329.46,0.00,2.011556,0.000195,246,2,0.005460,0.009588,13484352,11374663,0,0,38297,0,1,1 +1773590079.022259,1.15,4,3992.50,59.50,1346.39,2329.67,0.00,3518096291278.177734,3518096291280.189941,11,0,0.005009,0.010299,13484486,11374864,0,0,38300,0,1,1 +1773590084.022061,1.56,4,3992.50,59.16,1360.12,2316.39,0.00,1.656218,10.675619,251,355,0.005023,0.010291,13484621,11375064,0,0,38302,0,1,1 +1773590089.019476,1.00,4,3992.50,59.18,1359.04,2316.85,0.00,3520256675369.980469,3520256675360.776367,205,0,0.004346,0.008412,13484736,11375230,0,0,38305,0,1,1 +1773590094.019961,0.90,4,3992.50,59.19,1358.59,2317.31,0.00,3518096026744.822754,0.000000,11,0,0.005047,0.010290,13484873,11375430,0,0,38307,0,1,1 +1773590099.019764,1.15,4,3992.50,59.20,1358.16,2317.75,0.00,25115.440741,25879.933247,1740714,2218732,0.005992,0.011790,13485017,11375645,0,0,38310,0,1,1 +1773590104.022058,0.85,4,3992.50,59.04,1364.46,2311.43,0.00,3516823832396.918457,3516823831641.821777,251,355,0.004334,0.009029,13485131,11375813,0,0,38312,0,1,1 +1773590109.021652,1.00,4,3992.50,59.08,1362.79,2313.10,0.00,0.000000,0.000000,251,355,0.005232,0.010833,13485273,11376025,0,0,38315,0,1,1 +1773590114.017440,1.05,4,3992.50,59.32,1353.60,2322.45,0.00,3521403717548.549805,3521403717539.342773,205,0,0.005058,0.010299,13485410,11376225,0,0,38317,0,1,1 +1773590119.022353,0.80,4,3992.50,59.32,1353.51,2322.39,0.00,3514983582853.588379,0.000000,11,0,0.004363,0.008442,13485526,11376394,0,0,38320,0,1,1 +1773590124.021982,0.85,4,3992.50,59.13,1360.96,2314.95,0.00,2.012454,0.000195,246,2,0.005043,0.010299,13485663,11376595,0,0,38322,0,1,1 +1773590129.022172,17.45,4,3992.50,60.04,1325.04,2350.77,0.00,3518303466204.205078,3518303466206.217773,11,0,22.149508,0.108787,13493050,11382040,0,0,38325,0,1,1 +1773590134.021773,9.23,4,3992.50,59.70,1338.48,2337.30,0.00,0.180288,0.000000,205,0,12.076028,0.052331,13497109,11384968,0,0,38327,0,1,1 +1773590139.021491,6.12,4,3992.50,59.42,1349.39,2326.37,0.00,25125.371987,25891.792072,1742252,2220225,6.041126,0.031727,13499133,11386448,0,0,38330,0,1,1 +1773590144.021929,1.35,4,3992.50,59.45,1347.51,2327.67,0.00,3518129402319.360840,3518129401553.051270,205,0,0.005035,0.010277,13499269,11386647,0,0,38332,0,1,1 +1773590149.017479,0.90,4,3992.50,59.19,1357.84,2317.32,0.00,3521571241069.462891,0.000000,75,0,0.005027,0.010346,13499404,11386849,0,0,38335,0,1,1 +1773590154.017467,0.85,4,3992.50,59.19,1357.65,2317.52,0.00,0.000000,0.000000,75,0,0.004336,0.008377,13499518,11387012,0,0,38337,0,1,1 +1773590159.017451,1.05,4,3992.50,59.15,1359.19,2315.98,0.00,1.602642,10.675230,251,355,0.005030,0.010308,13499654,11387214,0,0,38340,0,1,1 +1773590164.017457,1.00,4,3992.50,58.92,1368.14,2307.03,0.00,3518432422406.076660,3518432422397.057617,11,0,0.005022,0.010265,13499789,11387412,0,0,38342,0,1,1 +1773590169.018665,0.90,4,3992.50,58.95,1367.29,2307.89,0.00,25118.068282,25884.970942,1742252,2220843,0.004335,0.009066,13499903,11387583,0,0,38345,0,1,1 +1773590174.018009,1.30,4,3992.50,59.22,1356.62,2318.71,0.00,3518898967463.005371,3518898966695.816895,11,0,0.005036,0.010292,13500039,11387783,0,0,38347,0,1,1 +1773590179.020840,0.95,4,3992.50,59.22,1356.46,2318.71,0.00,0.000000,0.000000,11,0,0.004333,0.008395,13500153,11387948,0,0,38350,0,1,1 +1773590184.021718,1.05,4,3992.50,59.23,1356.27,2318.92,0.00,25119.728686,25886.796377,1742252,2220939,0.005034,0.010289,13500289,11388148,0,0,38352,0,1,1 +1773590189.021739,0.85,4,3992.50,59.20,1357.29,2317.90,0.00,3518422227651.515625,3518422226893.335938,251,355,0.005022,0.010300,13500424,11388349,0,0,38355,0,1,1 diff --git a/evaluation/data/pipeline_high-iops_run3/pipeline.duckdb b/evaluation/data/pipeline_high-iops_run3/pipeline.duckdb new file mode 100644 index 0000000..95a3d01 Binary files /dev/null and b/evaluation/data/pipeline_high-iops_run3/pipeline.duckdb differ diff --git a/evaluation/data/pipeline_idle_pipeline_baseline/anomalies.jsonl b/evaluation/data/pipeline_idle_pipeline_baseline/anomalies.jsonl new file mode 100644 index 0000000..6badee5 --- /dev/null +++ b/evaluation/data/pipeline_idle_pipeline_baseline/anomalies.jsonl @@ -0,0 +1,120 @@ +{"timestamp":"2026-03-20T16:48:54.823987282Z","score":0.5,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=0.50 RRCF-fast:w=0.20,s=0.50 RRCF-mid:w=0.20,s=0.50 RRCF-slow:w=0.20,s=0.50 COPOD:w=0.20,s=0.50"} +{"timestamp":"2026-03-20T16:49:24.82044761Z","score":0.8,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=0.00 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-20T16:49:54.772497639Z","score":0.8983903960292836,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=0.50 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-20T16:50:24.816478258Z","score":0.9317126237587511,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.20,s=0.67 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-20T16:50:54.820286238Z","score":0.8473885856861305,"is_anomaly":false,"confidence":0.9432297912259843,"method":"SEAD","details":"MAD!:w=0.21,s=0.50 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=0.75"} +{"timestamp":"2026-03-20T16:51:24.824953326Z","score":0.6340528596358428,"is_anomaly":false,"confidence":0.7057654027004708,"method":"SEAD","details":"MAD!:w=0.21,s=0.00 RRCF-fast:w=0.20,s=0.80 RRCF-mid:w=0.20,s=0.80 RRCF-slow:w=0.20,s=0.80 COPOD!:w=0.20,s=0.80"} +{"timestamp":"2026-03-20T16:51:54.770943789Z","score":0.6276579303280762,"is_anomaly":false,"confidence":0.6986471951416734,"method":"SEAD","details":"MAD!:w=0.21,s=0.17 RRCF-fast:w=0.20,s=0.67 RRCF-mid:w=0.20,s=0.67 RRCF-slow:w=0.20,s=0.67 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-20T16:52:24.769700956Z","score":0.5368456340915163,"is_anomaly":false,"confidence":0.6335294611702049,"method":"SEAD","details":"MAD!:w=0.21,s=0.14 RRCF-fast:w=0.20,s=0.71 RRCF-mid:w=0.20,s=0.71 RRCF-slow:w=0.20,s=0.71 COPOD!:w=0.20,s=0.43"} +{"timestamp":"2026-03-20T16:52:54.773168148Z","score":0.5180437062672759,"is_anomaly":false,"confidence":0.6113413786991431,"method":"SEAD","details":"MAD!:w=0.21,s=0.12 RRCF-fast:w=0.20,s=0.50 RRCF-mid:w=0.20,s=0.62 RRCF-slow:w=0.20,s=0.75 COPOD!:w=0.20,s=0.62"} +{"timestamp":"2026-03-20T16:53:24.770577998Z","score":0.9041413596662418,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.22,s=0.56 RRCF-fast:w=0.20,s=1.00 RRCF-mid:w=0.20,s=1.00 RRCF-slow:w=0.20,s=1.00 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-20T16:53:54.820090613Z","score":0.6696364125850466,"is_anomaly":false,"confidence":0.7453735208487462,"method":"SEAD","details":"MAD!:w=0.22,s=0.20 RRCF-fast:w=0.20,s=0.80 RRCF-mid:w=0.20,s=0.80 RRCF-slow:w=0.20,s=0.80 COPOD!:w=0.20,s=0.80"} +{"timestamp":"2026-03-20T16:54:24.76999553Z","score":0.5720170168206614,"is_anomaly":false,"confidence":0.6367131921143291,"method":"SEAD","details":"MAD!:w=0.22,s=0.18 RRCF-fast:w=0.20,s=0.64 RRCF-mid:w=0.19,s=0.73 RRCF-slow:w=0.19,s=0.73 COPOD!:w=0.20,s=0.64"} +{"timestamp":"2026-03-20T16:54:54.821874089Z","score":0.7226932152010778,"is_anomaly":false,"confidence":0.8044311452963496,"method":"SEAD","details":"MAD!:w=0.22,s=0.33 RRCF-fast:w=0.20,s=0.83 RRCF-mid:w=0.19,s=0.83 RRCF-slow:w=0.19,s=0.83 COPOD!:w=0.20,s=0.83"} +{"timestamp":"2026-03-20T16:55:24.773270829Z","score":0.745563603847359,"is_anomaly":false,"confidence":0.8298882169072708,"method":"SEAD","details":"MAD!:w=0.22,s=0.46 RRCF-fast:w=0.19,s=0.77 RRCF-mid:w=0.19,s=0.77 RRCF-slow:w=0.19,s=0.77 COPOD!:w=0.19,s=1.00"} +{"timestamp":"2026-03-20T16:55:54.77720891Z","score":0.9518910050185703,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.22,s=0.79 RRCF-fast:w=0.19,s=1.00 RRCF-mid:w=0.19,s=1.00 RRCF-slow:w=0.19,s=1.00 COPOD!:w=0.19,s=1.00"} +{"timestamp":"2026-03-20T16:56:24.820942676Z","score":0.6560004216413361,"is_anomaly":false,"confidence":0.7301952742824661,"method":"SEAD","details":"MAD!:w=0.23,s=0.33 RRCF-fast:w=0.19,s=0.73 RRCF-mid:w=0.19,s=0.87 RRCF-slow:w=0.19,s=0.87 COPOD!:w=0.19,s=0.53"} +{"timestamp":"2026-03-20T16:56:54.770076866Z","score":0.7839133478736795,"is_anomaly":false,"confidence":0.8725753874244748,"method":"SEAD","details":"MAD!:w=0.23,s=0.69 RRCF-fast:w=0.19,s=0.88 RRCF-mid:w=0.19,s=0.88 RRCF-slow:w=0.19,s=0.88 COPOD!:w=0.19,s=0.62"} +{"timestamp":"2026-03-20T16:57:24.772753306Z","score":0.5810490217599392,"is_anomaly":false,"confidence":0.64676673340239,"method":"SEAD","details":"MAD!:w=0.23,s=0.06 RRCF-fast:w=0.19,s=0.71 RRCF-mid:w=0.19,s=0.82 RRCF-slow:w=0.19,s=0.82 COPOD!:w=0.19,s=0.59"} +{"timestamp":"2026-03-20T16:57:54.816941038Z","score":0.6732503982663425,"is_anomaly":false,"confidence":0.7493962549488312,"method":"SEAD","details":"MAD!:w=0.23,s=0.56 RRCF-fast:w=0.19,s=0.61 RRCF-mid:w=0.19,s=0.72 RRCF-slow:w=0.19,s=0.72 COPOD!:w=0.19,s=0.78"} +{"timestamp":"2026-03-20T16:58:24.817271603Z","score":0.5416679459201301,"is_anomaly":false,"confidence":0.6029315855492228,"method":"SEAD","details":"MAD!:w=0.23,s=0.16 RRCF-fast:w=0.19,s=0.74 RRCF-mid:w=0.19,s=0.79 RRCF-slow:w=0.19,s=0.79 COPOD!:w=0.19,s=0.32"} +{"timestamp":"2026-03-20T16:58:54.820672818Z","score":0.5156116872438491,"is_anomaly":false,"confidence":0.5739283161560449,"method":"SEAD","details":"MAD!:w=0.23,s=0.45 RRCF-fast:w=0.19,s=0.70 RRCF-mid:w=0.19,s=0.65 RRCF-slow:w=0.19,s=0.65 COPOD!:w=0.20,s=0.15"} +{"timestamp":"2026-03-20T16:59:24.819609231Z","score":0.6834011617619957,"is_anomaly":false,"confidence":0.8064790738344036,"method":"SEAD","details":"MAD!:w=0.23,s=0.24 RRCF-fast!:w=0.19,s=0.90 RRCF-mid!:w=0.19,s=0.95 RRCF-slow!:w=0.19,s=0.95 COPOD!:w=0.20,s=0.48"} +{"timestamp":"2026-03-20T16:59:54.772557313Z","score":0.6871810494592535,"is_anomaly":false,"confidence":0.8109397047198164,"method":"SEAD","details":"MAD!:w=0.24,s=0.68 RRCF-fast:w=0.19,s=0.82 RRCF-mid:w=0.19,s=0.86 RRCF-slow:w=0.19,s=0.82 COPOD!:w=0.20,s=0.27"} +{"timestamp":"2026-03-20T17:00:24.770652648Z","score":0.9606873384483858,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.24,s=0.87 RRCF-fast!:w=0.19,s=1.00 RRCF-mid!:w=0.19,s=1.00 RRCF-slow!:w=0.19,s=1.00 COPOD!:w=0.20,s=0.96"} +{"timestamp":"2026-03-20T17:00:54.819108219Z","score":0.7800667100071159,"is_anomaly":false,"confidence":0.8682936877496286,"method":"SEAD","details":"MAD!:w=0.24,s=0.17 RRCF-fast!:w=0.19,s=0.96 RRCF-mid!:w=0.19,s=0.96 RRCF-slow!:w=0.19,s=0.96 COPOD!:w=0.20,s=1.00"} +{"timestamp":"2026-03-20T17:01:24.817890353Z","score":0.7268480562231048,"is_anomaly":false,"confidence":0.8090559064696554,"method":"SEAD","details":"MAD!:w=0.24,s=0.56 RRCF-fast:w=0.19,s=0.80 RRCF-mid:w=0.19,s=0.80 RRCF-slow:w=0.19,s=0.80 COPOD!:w=0.20,s=0.72"} +{"timestamp":"2026-03-20T17:01:54.772288614Z","score":0.8859505124078322,"is_anomaly":false,"confidence":0.9861531426911582,"method":"SEAD","details":"MAD!:w=0.24,s=1.00 RRCF-fast!:w=0.19,s=1.00 RRCF-mid!:w=0.19,s=1.00 RRCF-slow!:w=0.19,s=1.00 COPOD!:w=0.20,s=0.42"} +{"timestamp":"2026-03-20T17:02:24.770928226Z","score":0.5118683925500812,"is_anomaly":false,"confidence":0.5777618336253655,"method":"SEAD","details":"MAD!:w=0.24,s=0.07 RRCF-fast:w=0.19,s=0.74 RRCF-mid:w=0.19,s=0.85 RRCF-slow:w=0.19,s=0.85 COPOD!:w=0.20,s=0.19"} +{"timestamp":"2026-03-20T17:02:54.770933299Z","score":0.6680352895178707,"is_anomaly":false,"confidence":0.7540322852822643,"method":"SEAD","details":"MAD!:w=0.24,s=0.00 RRCF-fast!:w=0.19,s=0.96 RRCF-mid!:w=0.19,s=0.93 RRCF-slow!:w=0.18,s=0.93 COPOD!:w=0.20,s=0.71"} +{"timestamp":"2026-03-20T17:03:24.770767028Z","score":0.6015951547164883,"is_anomaly":false,"confidence":0.6790392310756452,"method":"SEAD","details":"MAD!:w=0.25,s=0.52 RRCF-fast:w=0.19,s=0.76 RRCF-mid:w=0.18,s=0.76 RRCF-slow:w=0.18,s=0.83 COPOD!:w=0.20,s=0.21"} +{"timestamp":"2026-03-20T17:03:54.767887412Z","score":0.6894953132064611,"is_anomaly":false,"confidence":0.7782548839353949,"method":"SEAD","details":"MAD!:w=0.25,s=0.00 RRCF-fast!:w=0.19,s=0.97 RRCF-mid!:w=0.18,s=0.97 RRCF-slow!:w=0.18,s=0.93 COPOD!:w=0.20,s=0.80"} +{"timestamp":"2026-03-20T17:04:24.81987407Z","score":0.8327526203660652,"is_anomaly":false,"confidence":0.939953878578177,"method":"SEAD","details":"MAD!:w=0.25,s=0.68 RRCF-fast!:w=0.18,s=0.94 RRCF-mid!:w=0.18,s=0.90 RRCF-slow!:w=0.18,s=0.94 COPOD!:w=0.20,s=0.77"} +{"timestamp":"2026-03-20T17:04:54.81757674Z","score":0.5163644845927537,"is_anomaly":false,"confidence":0.5828367130680705,"method":"SEAD","details":"MAD!:w=0.25,s=0.16 RRCF-fast:w=0.18,s=0.72 RRCF-mid:w=0.18,s=0.84 RRCF-slow:w=0.18,s=0.84 COPOD!:w=0.20,s=0.19"} +{"timestamp":"2026-03-20T17:05:24.82002669Z","score":0.7102844055547687,"is_anomaly":false,"confidence":0.8017201814403392,"method":"SEAD","details":"MAD!:w=0.25,s=0.39 RRCF-fast!:w=0.18,s=0.94 RRCF-mid!:w=0.18,s=0.97 RRCF-slow:w=0.18,s=0.88 COPOD!:w=0.20,s=0.52"} +{"timestamp":"2026-03-20T17:05:54.770385921Z","score":0.8434196621365095,"is_anomaly":false,"confidence":0.9953162886346796,"method":"SEAD","details":"MAD!:w=0.25,s=0.47 RRCF-fast!:w=0.18,s=0.97 RRCF-mid!:w=0.18,s=0.97 RRCF-slow!:w=0.18,s=0.97 COPOD!:w=0.20,s=0.97"} +{"timestamp":"2026-03-20T17:06:24.772312449Z","score":0.7582377205691354,"is_anomaly":false,"confidence":0.8947934080976443,"method":"SEAD","details":"MAD!:w=0.26,s=0.80 RRCF-fast:w=0.18,s=0.83 RRCF-mid:w=0.18,s=0.80 RRCF-slow:w=0.18,s=0.83 COPOD!:w=0.20,s=0.54"} +{"timestamp":"2026-03-20T17:06:54.769105588Z","score":0.651270990643044,"is_anomaly":false,"confidence":0.7685623828833024,"method":"SEAD","details":"MAD!:w=0.26,s=0.14 RRCF-fast!:w=0.18,s=0.97 RRCF-mid!:w=0.18,s=0.97 RRCF-slow!:w=0.18,s=0.97 COPOD!:w=0.20,s=0.44"} +{"timestamp":"2026-03-20T17:07:24.81705001Z","score":0.6953095474531753,"is_anomaly":false,"confidence":0.8205321138355707,"method":"SEAD","details":"MAD!:w=0.26,s=0.81 RRCF-fast:w=0.18,s=0.73 RRCF-mid!:w=0.18,s=0.95 RRCF-slow!:w=0.18,s=0.95 COPOD!:w=0.20,s=0.08"} +{"timestamp":"2026-03-20T17:07:54.772288839Z","score":0.6603069000124682,"is_anomaly":false,"confidence":0.7792256246616984,"method":"SEAD","details":"MAD!:w=0.26,s=0.71 RRCF-fast:w=0.18,s=0.79 RRCF-mid:w=0.18,s=0.79 RRCF-slow:w=0.18,s=0.79 COPOD!:w=0.21,s=0.26"} +{"timestamp":"2026-03-20T17:08:24.812967135Z","score":0.5716980531851178,"is_anomaly":false,"confidence":0.6746586664513706,"method":"SEAD","details":"MAD!:w=0.26,s=0.56 RRCF-fast:w=0.18,s=0.67 RRCF-mid:w=0.18,s=0.82 RRCF-slow:w=0.18,s=0.82 COPOD!:w=0.21,s=0.08"} +{"timestamp":"2026-03-20T17:08:54.818388966Z","score":0.5756036837775758,"is_anomaly":false,"confidence":0.6792676860421827,"method":"SEAD","details":"MAD!:w=0.26,s=0.45 RRCF-fast:w=0.18,s=0.65 RRCF-mid:w=0.18,s=0.65 RRCF-slow:w=0.18,s=0.70 COPOD!:w=0.21,s=0.50"} +{"timestamp":"2026-03-20T17:09:24.771652536Z","score":0.7741715689537143,"is_anomaly":false,"confidence":0.9178960412099246,"method":"SEAD","details":"MAD!:w=0.26,s=0.56 RRCF-fast:w=0.18,s=0.78 RRCF-mid!:w=0.18,s=0.95 RRCF-slow!:w=0.18,s=0.93 COPOD!:w=0.21,s=0.76"} +{"timestamp":"2026-03-20T17:09:54.770462024Z","score":0.496062932673727,"is_anomaly":false,"confidence":0.5881567088643921,"method":"SEAD","details":"MAD!:w=0.26,s=0.21 RRCF-fast:w=0.18,s=0.62 RRCF-mid:w=0.18,s=0.74 RRCF-slow:w=0.17,s=0.71 COPOD!:w=0.21,s=0.36"} +{"timestamp":"2026-03-20T17:10:24.769901715Z","score":0.9382185569929169,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.26,s=0.98 RRCF-fast!:w=0.18,s=0.95 RRCF-mid!:w=0.17,s=0.98 RRCF-slow!:w=0.17,s=0.98 COPOD!:w=0.21,s=0.81"} +{"timestamp":"2026-03-20T17:10:54.818549101Z","score":0.8563299656022991,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.26,s=0.59 RRCF-fast!:w=0.18,s=0.95 RRCF-mid!:w=0.17,s=0.93 RRCF-slow!:w=0.17,s=0.93 COPOD!:w=0.21,s=0.98"} +{"timestamp":"2026-03-20T17:11:24.770189434Z","score":0.8270736822021872,"is_anomaly":false,"confidence":0.9658352684417221,"method":"SEAD","details":"MAD!:w=0.26,s=0.89 RRCF-fast:w=0.18,s=0.82 RRCF-mid:w=0.17,s=0.87 RRCF-slow:w=0.17,s=0.87 COPOD!:w=0.21,s=0.69"} +{"timestamp":"2026-03-20T17:11:54.821095062Z","score":0.6776815319927039,"is_anomaly":false,"confidence":0.7913789768130525,"method":"SEAD","details":"MAD!:w=0.26,s=0.00 RRCF-fast!:w=0.18,s=0.91 RRCF-mid!:w=0.17,s=0.91 RRCF-slow!:w=0.17,s=0.91 COPOD!:w=0.21,s=0.93"} +{"timestamp":"2026-03-20T17:12:24.771796932Z","score":0.6551742741544186,"is_anomaly":false,"confidence":0.7731686326927852,"method":"SEAD","details":"MAD!:w=0.27,s=0.43 RRCF-fast!:w=0.18,s=0.89 RRCF-mid!:w=0.17,s=0.91 RRCF-slow!:w=0.17,s=0.91 COPOD!:w=0.21,s=0.32"} +{"timestamp":"2026-03-20T17:12:54.77095559Z","score":0.6247560425366057,"is_anomaly":false,"confidence":0.7372721949408142,"method":"SEAD","details":"MAD!:w=0.27,s=0.21 RRCF-fast:w=0.18,s=0.60 RRCF-mid:w=0.17,s=0.77 RRCF-slow:w=0.17,s=0.79 COPOD!:w=0.21,s=0.92"} +{"timestamp":"2026-03-20T17:13:24.769747925Z","score":0.44111512737049824,"is_anomaly":false,"confidence":0.5205582596009685,"method":"SEAD","details":"MAD!:w=0.27,s=0.20 RRCF-fast:w=0.18,s=0.57 RRCF-mid:w=0.17,s=0.76 RRCF-slow:w=0.17,s=0.73 COPOD!:w=0.21,s=0.14"} +{"timestamp":"2026-03-20T17:13:54.771050931Z","score":0.6089272423186671,"is_anomaly":false,"confidence":0.7185926888850158,"method":"SEAD","details":"MAD!:w=0.27,s=0.30 RRCF-fast:w=0.18,s=0.60 RRCF-mid:w=0.17,s=0.76 RRCF-slow:w=0.17,s=0.80 COPOD!:w=0.21,s=0.74"} +{"timestamp":"2026-03-20T17:14:24.820926617Z","score":0.7500342991302094,"is_anomaly":false,"confidence":0.8851125821135608,"method":"SEAD","details":"MAD!:w=0.27,s=0.67 RRCF-fast:w=0.18,s=0.61 RRCF-mid!:w=0.17,s=0.88 RRCF-slow!:w=0.17,s=0.88 COPOD!:w=0.21,s=0.76"} +{"timestamp":"2026-03-20T17:14:54.814215934Z","score":0.4904428619021178,"is_anomaly":false,"confidence":0.5787697287720794,"method":"SEAD","details":"MAD!:w=0.28,s=0.04 RRCF-fast:w=0.18,s=0.50 RRCF-mid:w=0.17,s=0.67 RRCF-slow:w=0.17,s=0.71 COPOD!:w=0.21,s=0.75"} +{"timestamp":"2026-03-20T17:15:24.819521218Z","score":0.874377664226068,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=0.68 RRCF-fast!:w=0.18,s=0.92 RRCF-mid!:w=0.17,s=0.94 RRCF-slow!:w=0.17,s=0.94 COPOD!:w=0.21,s=0.98"} +{"timestamp":"2026-03-20T17:15:54.820854173Z","score":0.8492528820681873,"is_anomaly":false,"confidence":1,"method":"SEAD","details":"MAD!:w=0.28,s=0.76 RRCF-fast:w=0.18,s=0.78 RRCF-mid!:w=0.17,s=0.89 RRCF-slow:w=0.17,s=0.87 COPOD!:w=0.21,s=0.98"} +{"timestamp":"2026-03-20T17:16:24.778525036Z","score":0.6704221814623008,"is_anomaly":false,"confidence":0.7894258537334843,"method":"SEAD","details":"MAD!:w=0.28,s=0.85 RRCF-fast:w=0.18,s=0.58 RRCF-mid:w=0.17,s=0.78 RRCF-slow:w=0.17,s=0.84 COPOD!:w=0.21,s=0.27"} +{"timestamp":"2026-03-20T17:16:54.768643748Z","score":0.8224255681145227,"is_anomaly":false,"confidence":0.9684106883590057,"method":"SEAD","details":"MAD!:w=0.28,s=0.96 RRCF-fast!:w=0.18,s=0.91 RRCF-mid!:w=0.17,s=0.95 RRCF-slow!:w=0.17,s=0.93 COPOD!:w=0.21,s=0.38"} +{"timestamp":"2026-03-20T17:17:24.77072237Z","score":0.5942929402356066,"is_anomaly":false,"confidence":0.6997832480571909,"method":"SEAD","details":"MAD!:w=0.28,s=0.79 RRCF-fast:w=0.18,s=0.39 RRCF-mid!:w=0.17,s=0.88 RRCF-slow:w=0.17,s=0.82 COPOD!:w=0.21,s=0.11"} +{"timestamp":"2026-03-20T17:17:54.825988254Z","score":0.4591717525152026,"is_anomaly":false,"confidence":0.540677296728132,"method":"SEAD","details":"MAD!:w=0.28,s=0.43 RRCF-fast:w=0.18,s=0.48 RRCF-mid:w=0.17,s=0.67 RRCF-slow:w=0.17,s=0.72 COPOD!:w=0.21,s=0.10"} +{"timestamp":"2026-03-20T17:18:24.823111721Z","score":0.5623537207164675,"is_anomaly":false,"confidence":0.6621746391333596,"method":"SEAD","details":"MAD!:w=0.28,s=0.59 RRCF-fast:w=0.18,s=0.51 RRCF-mid:w=0.17,s=0.78 RRCF-slow:w=0.17,s=0.73 COPOD!:w=0.22,s=0.27"} +{"timestamp":"2026-03-20T17:18:54.771715324Z","score":0.5475734729426099,"is_anomaly":false,"confidence":0.6447708150358031,"method":"SEAD","details":"MAD!:w=0.28,s=0.83 RRCF-fast:w=0.18,s=0.57 RRCF-mid:w=0.17,s=0.62 RRCF-slow:w=0.17,s=0.57 COPOD!:w=0.22,s=0.10"} +{"timestamp":"2026-03-20T17:19:24.820546565Z","score":0.6451263422367736,"is_anomaly":false,"confidence":0.7613111070105043,"method":"SEAD","details":"MAD!:w=0.27,s=0.74 RRCF-fast:w=0.18,s=0.43 RRCF-mid:w=0.17,s=0.79 RRCF-slow:w=0.17,s=0.79 COPOD!:w=0.22,s=0.49"} +{"timestamp":"2026-03-20T17:19:54.819463343Z","score":0.5166535251120757,"is_anomaly":false,"confidence":0.6097008312824291,"method":"SEAD","details":"MAD!:w=0.27,s=0.42 RRCF-fast:w=0.18,s=0.34 RRCF-mid:w=0.16,s=0.68 RRCF-slow:w=0.16,s=0.65 COPOD!:w=0.22,s=0.56"} +{"timestamp":"2026-03-20T17:20:24.772609544Z","score":0.8710825952737783,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.27,s=0.92 RRCF-fast:w=0.18,s=0.73 RRCF-mid:w=0.16,s=0.86 RRCF-slow!:w=0.16,s=0.89 COPOD!:w=0.22,s=0.92"} +{"timestamp":"2026-03-20T17:20:54.818872303Z","score":0.6127265458885849,"is_anomaly":false,"confidence":0.7214889214110297,"method":"SEAD","details":"MAD!:w=0.27,s=0.38 RRCF-fast:w=0.18,s=0.36 RRCF-mid:w=0.16,s=0.84 RRCF-slow:w=0.16,s=0.77 COPOD!:w=0.22,s=0.83"} +{"timestamp":"2026-03-20T17:21:24.770896363Z","score":0.8145130367257492,"is_anomaly":false,"confidence":0.9590936385663642,"method":"SEAD","details":"MAD!:w=0.28,s=0.89 RRCF-fast:w=0.18,s=0.48 RRCF-mid!:w=0.16,s=0.89 RRCF-slow:w=0.16,s=0.83 COPOD!:w=0.22,s=0.92"} +{"timestamp":"2026-03-20T17:21:54.770423582Z","score":0.6020983386578398,"is_anomaly":false,"confidence":0.708974148184871,"method":"SEAD","details":"MAD!:w=0.27,s=0.08 RRCF-fast!:w=0.18,s=0.92 RRCF-mid!:w=0.16,s=0.91 RRCF-slow!:w=0.16,s=0.94 COPOD!:w=0.22,s=0.52"} +{"timestamp":"2026-03-20T17:22:24.820386625Z","score":0.46672701979691894,"is_anomaly":false,"confidence":0.5507827550202485,"method":"SEAD","details":"MAD!:w=0.28,s=0.48 RRCF-fast:w=0.18,s=0.42 RRCF-mid:w=0.16,s=0.67 RRCF-slow:w=0.16,s=0.76 COPOD!:w=0.22,s=0.12"} +{"timestamp":"2026-03-20T17:22:54.771283071Z","score":0.8274999680683118,"is_anomaly":false,"confidence":0.9765295190969384,"method":"SEAD","details":"MAD!:w=0.28,s=0.99 RRCF-fast!:w=0.18,s=0.91 RRCF-mid!:w=0.16,s=0.90 RRCF-slow!:w=0.16,s=0.96 COPOD!:w=0.22,s=0.41"} +{"timestamp":"2026-03-20T17:23:24.769391968Z","score":0.3858396108317383,"is_anomaly":false,"confidence":0.4553278358349894,"method":"SEAD","details":"MAD!:w=0.28,s=0.20 RRCF-fast:w=0.18,s=0.49 RRCF-mid:w=0.16,s=0.74 RRCF-slow:w=0.16,s=0.70 COPOD!:w=0.22,s=0.04"} +{"timestamp":"2026-03-20T17:23:54.771527957Z","score":0.8424976797222069,"is_anomaly":false,"confidence":0.9942282607453776,"method":"SEAD","details":"MAD!:w=0.28,s=0.94 RRCF-fast:w=0.18,s=0.86 RRCF-mid!:w=0.16,s=0.89 RRCF-slow!:w=0.16,s=0.89 COPOD!:w=0.22,s=0.64"} +{"timestamp":"2026-03-20T17:24:24.770410502Z","score":0.6730585613055851,"is_anomaly":false,"confidence":0.794273810946615,"method":"SEAD","details":"MAD!:w=0.28,s=0.11 RRCF-fast:w=0.18,s=0.85 RRCF-mid:w=0.16,s=0.87 RRCF-slow:w=0.16,s=0.87 COPOD!:w=0.22,s=0.94"} +{"timestamp":"2026-03-20T17:24:54.818489661Z","score":0.48856469536595837,"is_anomaly":false,"confidence":0.5765533116903712,"method":"SEAD","details":"MAD!:w=0.28,s=0.46 RRCF-fast:w=0.18,s=0.35 RRCF-mid:w=0.16,s=0.61 RRCF-slow:w=0.16,s=0.79 COPOD!:w=0.22,s=0.33"} +{"timestamp":"2026-03-20T17:25:24.818917746Z","score":0.6210355734844982,"is_anomaly":false,"confidence":0.7328816837692541,"method":"SEAD","details":"MAD!:w=0.28,s=0.56 RRCF-fast:w=0.18,s=0.52 RRCF-mid:w=0.16,s=0.71 RRCF-slow:w=0.16,s=0.85 COPOD!:w=0.22,s=0.55"} +{"timestamp":"2026-03-20T17:25:54.820263446Z","score":0.7605433867756759,"is_anomaly":false,"confidence":0.9017377954517973,"method":"SEAD","details":"MAD!:w=0.28,s=0.77 RRCF-fast:w=0.18,s=0.57 RRCF-mid:w=0.16,s=0.85 RRCF-slow:w=0.16,s=0.61 COPOD!:w=0.22,s=0.95"} +{"timestamp":"2026-03-20T17:26:24.769927277Z","score":0.43519484164485656,"is_anomaly":false,"confidence":0.5159884944375641,"method":"SEAD","details":"MAD!:w=0.28,s=0.64 RRCF-fast:w=0.18,s=0.28 RRCF-mid:w=0.16,s=0.39 RRCF-slow:w=0.16,s=0.59 COPOD!:w=0.22,s=0.23"} +{"timestamp":"2026-03-20T17:26:54.769279329Z","score":0.4628845450933907,"is_anomaly":false,"confidence":0.5488187741803815,"method":"SEAD","details":"MAD!:w=0.28,s=0.14 RRCF-fast:w=0.18,s=0.36 RRCF-mid:w=0.16,s=0.37 RRCF-slow:w=0.16,s=0.58 COPOD!:w=0.22,s=0.93"} +{"timestamp":"2026-03-20T17:27:24.759607528Z","score":0.3773607362251926,"is_anomaly":false,"confidence":0.44741752316904826,"method":"SEAD","details":"MAD!:w=0.28,s=0.06 RRCF-fast:w=0.18,s=0.52 RRCF-mid:w=0.16,s=0.36 RRCF-slow:w=0.16,s=0.66 COPOD!:w=0.22,s=0.47"} +{"timestamp":"2026-03-20T17:27:54.767414308Z","score":0.26974173559491393,"is_anomaly":false,"confidence":0.3198191217307139,"method":"SEAD","details":"MAD!:w=0.28,s=0.09 RRCF-fast:w=0.18,s=0.31 RRCF-mid:w=0.16,s=0.44 RRCF-slow:w=0.16,s=0.65 COPOD!:w=0.22,s=0.08"} +{"timestamp":"2026-03-20T17:28:24.81793439Z","score":0.8278627404463965,"is_anomaly":false,"confidence":0.9815549454340382,"method":"SEAD","details":"MAD!:w=0.29,s=0.56 RRCF-fast!:w=0.18,s=0.92 RRCF-mid:w=0.16,s=0.89 RRCF-slow!:w=0.16,s=0.91 COPOD!:w=0.22,s=1.00"} +{"timestamp":"2026-03-20T17:28:54.770645094Z","score":0.3860005360967819,"is_anomaly":false,"confidence":0.45766129653532645,"method":"SEAD","details":"MAD!:w=0.29,s=0.55 RRCF-fast:w=0.18,s=0.29 RRCF-mid:w=0.16,s=0.36 RRCF-slow:w=0.16,s=0.59 COPOD!:w=0.22,s=0.12"} +{"timestamp":"2026-03-20T17:29:24.820788213Z","score":0.42472066265882025,"is_anomaly":false,"confidence":0.504120869269173,"method":"SEAD","details":"MAD!:w=0.29,s=0.27 RRCF-fast:w=0.18,s=0.63 RRCF-mid:w=0.16,s=0.44 RRCF-slow:w=0.16,s=0.83 COPOD!:w=0.22,s=0.16"} +{"timestamp":"2026-03-20T17:29:54.770813408Z","score":0.4381116613376292,"is_anomaly":false,"confidence":0.5200152734926058,"method":"SEAD","details":"MAD!:w=0.29,s=0.11 RRCF-fast:w=0.18,s=0.50 RRCF-mid:w=0.16,s=0.34 RRCF-slow:w=0.15,s=0.59 COPOD!:w=0.22,s=0.78"} +{"timestamp":"2026-03-20T17:30:24.820081303Z","score":0.8529018130782356,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=0.84 RRCF-fast:w=0.18,s=0.80 RRCF-mid:w=0.16,s=0.80 RRCF-slow:w=0.15,s=0.86 COPOD!:w=0.22,s=0.95"} +{"timestamp":"2026-03-20T17:30:54.820767861Z","score":0.7580461504818744,"is_anomaly":false,"confidence":0.8987769487868339,"method":"SEAD","details":"MAD!:w=0.29,s=0.35 RRCF-fast!:w=0.18,s=0.92 RRCF-mid:w=0.16,s=0.88 RRCF-slow:w=0.15,s=0.88 COPOD!:w=0.22,s=1.00"} +{"timestamp":"2026-03-20T17:31:24.818619246Z","score":0.5501150188103243,"is_anomaly":false,"confidence":0.6522435313125139,"method":"SEAD","details":"MAD!:w=0.29,s=0.53 RRCF-fast:w=0.18,s=0.27 RRCF-mid:w=0.16,s=0.56 RRCF-slow:w=0.15,s=0.66 COPOD!:w=0.22,s=0.72"} +{"timestamp":"2026-03-20T17:31:54.820094534Z","score":0.4775885359994452,"is_anomaly":false,"confidence":0.5662525518905277,"method":"SEAD","details":"MAD!:w=0.29,s=0.60 RRCF-fast:w=0.18,s=0.37 RRCF-mid:w=0.16,s=0.48 RRCF-slow:w=0.15,s=0.64 COPOD!:w=0.22,s=0.28"} +{"timestamp":"2026-03-20T17:32:24.820742098Z","score":0.9030947720892158,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.29,s=0.86 RRCF-fast!:w=0.18,s=0.97 RRCF-mid!:w=0.16,s=0.91 RRCF-slow!:w=0.15,s=0.90 COPOD!:w=0.22,s=0.91"} +{"timestamp":"2026-03-20T17:32:54.771438163Z","score":0.4551722946244847,"is_anomaly":false,"confidence":0.5396747491888729,"method":"SEAD","details":"MAD!:w=0.29,s=0.15 RRCF-fast:w=0.18,s=0.66 RRCF-mid:w=0.16,s=0.62 RRCF-slow:w=0.15,s=0.76 COPOD!:w=0.22,s=0.36"} +{"timestamp":"2026-03-20T17:33:24.769627811Z","score":0.6267458497256407,"is_anomaly":false,"confidence":0.7431008285223025,"method":"SEAD","details":"MAD!:w=0.29,s=0.75 RRCF-fast:w=0.18,s=0.65 RRCF-mid:w=0.16,s=0.64 RRCF-slow:w=0.15,s=0.82 COPOD!:w=0.22,s=0.29"} +{"timestamp":"2026-03-20T17:33:54.819853018Z","score":0.3953904991296739,"is_anomaly":false,"confidence":0.4687945003891538,"method":"SEAD","details":"MAD!:w=0.29,s=0.08 RRCF-fast:w=0.18,s=0.39 RRCF-mid:w=0.16,s=0.47 RRCF-slow:w=0.15,s=0.57 COPOD!:w=0.22,s=0.66"} +{"timestamp":"2026-03-20T17:34:24.820442288Z","score":0.5246670292511677,"is_anomaly":false,"confidence":0.6220711382541246,"method":"SEAD","details":"MAD!:w=0.30,s=0.37 RRCF-fast:w=0.18,s=0.62 RRCF-mid:w=0.16,s=0.53 RRCF-slow:w=0.15,s=0.84 COPOD!:w=0.22,s=0.44"} +{"timestamp":"2026-03-20T17:34:54.773123201Z","score":0.46118338621234845,"is_anomaly":false,"confidence":0.5468017962067676,"method":"SEAD","details":"MAD!:w=0.30,s=0.65 RRCF-fast:w=0.18,s=0.39 RRCF-mid:w=0.16,s=0.51 RRCF-slow:w=0.15,s=0.71 COPOD!:w=0.22,s=0.05"} +{"timestamp":"2026-03-20T17:35:24.819662789Z","score":0.682958122438706,"is_anomaly":false,"confidence":0.809748874846799,"method":"SEAD","details":"MAD!:w=0.30,s=0.51 RRCF-fast:w=0.18,s=0.58 RRCF-mid:w=0.16,s=0.78 RRCF-slow:w=0.15,s=0.85 COPOD!:w=0.22,s=0.82"} +{"timestamp":"2026-03-20T17:35:54.815711428Z","score":0.6055935762155498,"is_anomaly":false,"confidence":0.7188074113334407,"method":"SEAD","details":"MAD!:w=0.30,s=0.65 RRCF-fast:w=0.18,s=0.48 RRCF-mid:w=0.16,s=0.52 RRCF-slow:w=0.15,s=0.55 COPOD!:w=0.22,s=0.74"} +{"timestamp":"2026-03-20T17:36:24.772835321Z","score":0.49914518929794727,"is_anomaly":false,"confidence":0.5924588296344367,"method":"SEAD","details":"MAD!:w=0.30,s=0.71 RRCF-fast:w=0.18,s=0.33 RRCF-mid:w=0.16,s=0.37 RRCF-slow:w=0.15,s=0.55 COPOD!:w=0.22,s=0.42"} +{"timestamp":"2026-03-20T17:36:54.770822173Z","score":0.3126703764063144,"is_anomaly":false,"confidence":0.3711231305816888,"method":"SEAD","details":"MAD!:w=0.30,s=0.45 RRCF-fast:w=0.18,s=0.21 RRCF-mid:w=0.16,s=0.27 RRCF-slow:w=0.15,s=0.55 COPOD!:w=0.22,s=0.08"} +{"timestamp":"2026-03-20T17:37:24.771740099Z","score":0.36977585399058877,"is_anomaly":false,"confidence":0.438904299549541,"method":"SEAD","details":"MAD!:w=0.29,s=0.61 RRCF-fast:w=0.18,s=0.21 RRCF-mid:w=0.16,s=0.37 RRCF-slow:w=0.15,s=0.54 COPOD!:w=0.22,s=0.07"} +{"timestamp":"2026-03-20T17:37:54.774533517Z","score":0.34974579627561947,"is_anomaly":false,"confidence":0.415129684856746,"method":"SEAD","details":"MAD!:w=0.29,s=0.57 RRCF-fast:w=0.18,s=0.23 RRCF-mid:w=0.16,s=0.33 RRCF-slow:w=0.15,s=0.51 COPOD!:w=0.22,s=0.06"} +{"timestamp":"2026-03-20T17:38:24.819855286Z","score":0.3445773136783055,"is_anomaly":false,"confidence":0.40899497051662087,"method":"SEAD","details":"MAD!:w=0.29,s=0.00 RRCF-fast:w=0.18,s=0.36 RRCF-mid:w=0.16,s=0.37 RRCF-slow:w=0.15,s=0.74 COPOD!:w=0.22,s=0.49"} +{"timestamp":"2026-03-20T17:38:54.819360269Z","score":0.21541595885075776,"is_anomaly":false,"confidence":0.255687302215225,"method":"SEAD","details":"MAD:w=0.29,s=0.00 RRCF-fast:w=0.18,s=0.27 RRCF-mid:w=0.16,s=0.33 RRCF-slow:w=0.15,s=0.66 COPOD!:w=0.22,s=0.08"} +{"timestamp":"2026-03-20T17:39:24.817764338Z","score":0.38943503957903025,"is_anomaly":false,"confidence":0.46764793055570403,"method":"SEAD","details":"MAD!:w=0.29,s=0.02 RRCF-fast:w=0.18,s=0.69 RRCF-mid:w=0.16,s=0.44 RRCF-slow:w=0.15,s=0.50 COPOD!:w=0.22,s=0.52"} +{"timestamp":"2026-03-20T17:39:54.771145826Z","score":0.21977468284340984,"is_anomaly":false,"confidence":0.2639135290223407,"method":"SEAD","details":"MAD:w=0.30,s=0.00 RRCF-fast:w=0.18,s=0.27 RRCF-mid:w=0.16,s=0.30 RRCF-slow:w=0.15,s=0.67 COPOD!:w=0.22,s=0.12"} +{"timestamp":"2026-03-20T17:40:24.818814105Z","score":0.5567973313832167,"is_anomaly":false,"confidence":0.6686227311280716,"method":"SEAD","details":"MAD!:w=0.30,s=0.03 RRCF-fast:w=0.18,s=0.84 RRCF-mid:w=0.16,s=0.61 RRCF-slow:w=0.14,s=0.83 COPOD!:w=0.22,s=0.82"} +{"timestamp":"2026-03-20T17:40:54.77196537Z","score":0.5945162459049524,"is_anomaly":false,"confidence":0.7139169921117897,"method":"SEAD","details":"MAD!:w=0.30,s=0.03 RRCF-fast:w=0.18,s=0.82 RRCF-mid:w=0.16,s=0.68 RRCF-slow:w=0.14,s=0.81 COPOD!:w=0.22,s=0.99"} +{"timestamp":"2026-03-20T17:41:24.820586407Z","score":0.5517653697608051,"is_anomaly":false,"confidence":0.6625801663863364,"method":"SEAD","details":"MAD!:w=0.31,s=0.02 RRCF-fast:w=0.18,s=0.81 RRCF-mid:w=0.16,s=0.80 RRCF-slow:w=0.14,s=0.85 COPOD!:w=0.22,s=0.72"} +{"timestamp":"2026-03-20T17:41:54.771206878Z","score":0.3633691631191003,"is_anomaly":false,"confidence":0.43634706662270095,"method":"SEAD","details":"MAD:w=0.31,s=0.00 RRCF-fast:w=0.17,s=0.74 RRCF-mid:w=0.15,s=0.43 RRCF-slow:w=0.14,s=0.49 COPOD!:w=0.22,s=0.45"} +{"timestamp":"2026-03-20T17:42:24.823000316Z","score":0.47811064292480265,"is_anomaly":false,"confidence":0.5775240502634506,"method":"SEAD","details":"MAD!:w=0.31,s=0.04 RRCF-fast:w=0.17,s=0.84 RRCF-mid:w=0.15,s=0.71 RRCF-slow:w=0.14,s=0.85 COPOD!:w=0.22,s=0.42"} +{"timestamp":"2026-03-20T17:42:54.772049572Z","score":0.2741622648483464,"is_anomaly":false,"confidence":0.33116874507543825,"method":"SEAD","details":"MAD:w=0.32,s=0.00 RRCF-fast:w=0.17,s=0.56 RRCF-mid:w=0.15,s=0.30 RRCF-slow:w=0.14,s=0.54 COPOD!:w=0.22,s=0.27"} +{"timestamp":"2026-03-20T17:43:24.770275587Z","score":0.8209961896578732,"is_anomaly":false,"confidence":0.9917056892972128,"method":"SEAD","details":"MAD!:w=0.32,s=1.00 RRCF-fast!:w=0.17,s=0.93 RRCF-mid!:w=0.15,s=0.94 RRCF-slow!:w=0.14,s=0.97 COPOD!:w=0.22,s=0.29"} +{"timestamp":"2026-03-20T17:43:54.769646051Z","score":0.29259546064844927,"is_anomaly":false,"confidence":0.3534347499329143,"method":"SEAD","details":"MAD:w=0.32,s=0.00 RRCF-fast:w=0.17,s=0.55 RRCF-mid:w=0.15,s=0.54 RRCF-slow:w=0.14,s=0.75 COPOD!:w=0.22,s=0.06"} +{"timestamp":"2026-03-20T17:44:24.771116807Z","score":0.3491954842912845,"is_anomaly":false,"confidence":0.42180360007867107,"method":"SEAD","details":"MAD!:w=0.32,s=0.09 RRCF-fast:w=0.17,s=0.60 RRCF-mid:w=0.15,s=0.42 RRCF-slow:w=0.14,s=0.78 COPOD!:w=0.22,s=0.21"} +{"timestamp":"2026-03-20T17:44:54.770875626Z","score":0.30632100710060733,"is_anomaly":false,"confidence":0.37001424527867294,"method":"SEAD","details":"MAD:w=0.32,s=0.04 RRCF-fast:w=0.17,s=0.61 RRCF-mid:w=0.15,s=0.49 RRCF-slow:w=0.14,s=0.74 COPOD!:w=0.22,s=0.06"} +{"timestamp":"2026-03-20T17:45:24.769371657Z","score":0.5252780609762578,"is_anomaly":false,"confidence":0.6344989758725217,"method":"SEAD","details":"MAD!:w=0.33,s=0.11 RRCF-fast:w=0.17,s=0.71 RRCF-mid:w=0.15,s=0.63 RRCF-slow:w=0.14,s=0.85 COPOD!:w=0.22,s=0.73"} +{"timestamp":"2026-03-20T17:45:54.818064716Z","score":0.5526157983706177,"is_anomaly":false,"confidence":0.6678136793897714,"method":"SEAD","details":"MAD!:w=0.33,s=0.09 RRCF-fast:w=0.17,s=0.68 RRCF-mid:w=0.15,s=0.56 RRCF-slow:w=0.14,s=0.80 COPOD!:w=0.22,s=1.00"} +{"timestamp":"2026-03-20T17:46:24.8226359Z","score":0.3367279986888438,"is_anomaly":false,"confidence":0.4069220684985527,"method":"SEAD","details":"MAD!:w=0.33,s=0.07 RRCF-fast:w=0.17,s=0.26 RRCF-mid:w=0.15,s=0.35 RRCF-slow:w=0.13,s=0.74 COPOD!:w=0.22,s=0.55"} +{"timestamp":"2026-03-20T17:46:54.818321139Z","score":0.8408712009275128,"is_anomaly":true,"confidence":1,"method":"SEAD","details":"MAD!:w=0.34,s=1.00 RRCF-fast!:w=0.17,s=0.99 RRCF-mid!:w=0.15,s=0.90 RRCF-slow!:w=0.13,s=0.99 COPOD!:w=0.22,s=0.34"} +{"timestamp":"2026-03-20T17:47:24.818297305Z","score":0.30622071572588516,"is_anomaly":false,"confidence":0.36989310034748774,"method":"SEAD","details":"MAD:w=0.33,s=0.04 RRCF-fast:w=0.16,s=0.32 RRCF-mid:w=0.15,s=0.21 RRCF-slow:w=0.13,s=0.71 COPOD!:w=0.22,s=0.51"} +{"timestamp":"2026-03-20T17:47:54.774652854Z","score":0.22654008073253176,"is_anomaly":false,"confidence":0.27364449402612057,"method":"SEAD","details":"MAD:w=0.34,s=0.00 RRCF-fast:w=0.16,s=0.42 RRCF-mid:w=0.15,s=0.37 RRCF-slow:w=0.13,s=0.66 COPOD!:w=0.22,s=0.07"} +{"timestamp":"2026-03-20T17:48:24.820715004Z","score":0.5647910712219377,"is_anomaly":false,"confidence":0.6822279148804228,"method":"SEAD","details":"MAD:w=0.34,s=0.03 RRCF-fast:w=0.16,s=0.86 RRCF-mid:w=0.15,s=0.87 RRCF-slow:w=0.13,s=0.77 COPOD!:w=0.22,s=0.84"} diff --git a/evaluation/data/pipeline_idle_pipeline_baseline/baseline_metrics.csv b/evaluation/data/pipeline_idle_pipeline_baseline/baseline_metrics.csv new file mode 100644 index 0000000..f8631ba --- /dev/null +++ b/evaluation/data/pipeline_idle_pipeline_baseline/baseline_metrics.csv @@ -0,0 +1,721 @@ +timestamp,cpu_percent,cpu_count,cpu_freq_current,memory_percent,memory_available_mb,memory_used_mb,swap_percent,disk_io_read_mb_s,disk_io_write_mb_s,disk_io_read_count,disk_io_write_count,network_sent_mb_s,network_recv_mb_s,network_packets_sent,network_packets_recv,network_errin,network_errout,network_dropin,network_dropout,tixstream_active,transfer_job_manager_active +1774025319.985826,0.65,4,3992.50,50.14,1714.50,1962.99,0.00,360.902173,1532.646192,39152,52438,0.000000,0.000020,891163,446273,0,0,3117,0,1,1 +1774025324.985867,0.30,4,3992.50,50.13,1714.83,1962.66,0.00,4.060806,0.083984,39910,52537,0.000000,0.000030,891163,446276,0,0,3120,0,1,1 +1774025329.981948,0.60,4,3992.50,50.15,1713.84,1963.65,0.00,3521196728500.904297,0.071540,39152,52578,0.000000,0.000020,891163,446278,0,0,3122,0,1,1 +1774025334.983171,0.60,4,3992.50,50.56,1697.92,1979.54,0.00,3517577492179.057129,3517577491005.855957,199,0,0.000000,0.000030,891163,446281,0,0,3125,0,1,1 +1774025339.981894,0.30,4,3992.50,50.62,1695.49,1982.00,0.00,3519335954375.301270,0.000000,11,0,0.000000,0.000020,891163,446283,0,0,3127,0,1,1 +1774025344.985943,0.35,4,3992.50,50.62,1695.49,1982.00,0.00,1.490687,0.022052,221,21,0.000000,0.000030,891163,446286,0,0,3130,0,1,1 +1774025349.984718,0.35,4,3992.50,50.62,1695.49,1982.00,0.00,366.678617,1537.025643,39956,52638,0.000000,0.000020,891163,446288,0,0,3132,0,1,1 +1774025354.983306,0.40,4,3992.50,50.63,1695.25,1982.25,0.00,3519430581170.667969,3519430580001.570801,199,0,0.000000,0.000030,891163,446291,0,0,3135,0,1,1 +1774025359.981882,0.35,4,3992.50,50.66,1694.02,1983.48,0.00,3519439529071.530762,0.000000,70,0,0.000000,0.000020,891163,446293,0,0,3137,0,1,1 +1774025364.982248,0.50,4,3992.50,50.86,1687.32,1991.23,0.00,0.000000,0.000000,70,0,0.000000,0.000030,891163,446296,0,0,3140,0,1,1 +1774025369.981877,0.35,4,3992.50,50.86,1687.32,1991.23,0.00,3518698366675.924316,0.000000,11,0,0.000000,0.000020,891163,446298,0,0,3142,0,1,1 +1774025374.981869,0.30,4,3992.50,50.87,1686.83,1991.71,0.00,0.000000,0.000000,11,0,0.000000,0.000030,891163,446301,0,0,3145,0,1,1 +1774025379.981886,0.35,4,3992.50,50.87,1686.84,1991.71,0.00,1.491890,0.022070,221,21,0.000000,0.000020,891163,446303,0,0,3147,0,1,1 +1774025384.982004,0.30,4,3992.50,50.83,1688.27,1990.28,0.00,3518353619836.408203,3518353619837.877930,11,0,0.000000,0.000030,891163,446306,0,0,3150,0,1,1 +1774025389.986472,0.35,4,3992.50,50.88,1686.55,1992.00,0.00,363.759654,1535.355917,39201,52689,0.000000,0.000020,891163,446308,0,0,3152,0,1,1 +1774025394.986406,0.75,4,3992.50,51.09,1680.81,2000.28,0.00,3518483770022.287598,3518483768849.579102,70,0,0.000000,0.000030,891163,446311,0,0,3155,0,1,1 +1774025399.981885,0.55,4,3992.50,51.09,1678.30,2000.25,0.00,0.000000,0.000000,70,0,0.000000,0.000020,891163,446313,0,0,3157,0,1,1 +1774025404.982832,0.40,4,3992.50,51.14,1676.21,2002.33,0.00,3517771017629.156738,0.000000,11,0,0.000000,0.000030,891163,446316,0,0,3160,0,1,1 +1774025409.986012,0.65,4,3992.50,50.82,1691.58,1989.62,0.00,1.490947,0.022056,221,21,0.000000,0.000020,891163,446318,0,0,3162,0,1,1 +1774025414.986403,0.30,4,3992.50,50.84,1690.60,1990.61,0.00,366.794414,1536.785682,40176,52783,0.000000,0.000030,891163,446321,0,0,3165,0,1,1 +1774025419.981926,0.30,4,3992.50,50.85,1690.35,1990.85,0.00,3521590726099.883789,3521590724930.223145,11,0,0.000000,0.000020,891163,446323,0,0,3167,0,1,1 +1774025424.986080,0.55,4,3992.50,51.11,1687.52,2001.11,0.00,0.049958,0.000000,70,0,0.001138,0.001231,891173,446340,0,0,3170,0,1,1 +1774025429.983089,0.45,4,3992.50,51.14,1686.33,2002.30,0.00,0.000000,0.000000,70,0,0.000624,0.001138,891188,446365,0,0,3172,0,1,1 +1774025434.985881,0.40,4,3992.50,51.14,1686.33,2002.30,0.00,0.000000,0.000000,70,0,0.000205,0.000562,891195,446379,0,0,3175,0,1,1 +1774025439.981875,0.50,4,3992.50,51.16,1685.59,2003.04,0.00,3521258312869.618164,0.000000,11,0,0.001780,0.001558,891220,446397,0,0,3177,0,1,1 +1774025444.986298,0.35,4,3992.50,51.16,1685.60,2003.04,0.00,0.176797,0.000000,199,0,0.001063,0.000439,891242,446414,0,0,3180,0,1,1 +1774025449.986402,0.35,4,3992.50,51.16,1685.60,2003.03,0.00,3518363850293.121582,0.000000,70,0,0.000000,0.000020,891242,446416,0,0,3182,0,1,1 +1774025454.986570,0.45,4,3992.50,51.25,1682.17,2006.44,0.00,1.441846,0.022070,221,21,0.000000,0.000030,891242,446419,0,0,3185,0,1,1 +1774025459.984186,0.40,4,3992.50,51.26,1681.71,2006.92,0.00,366.998109,1537.933788,40176,52948,0.000000,0.000020,891242,446421,0,0,3187,0,1,1 +1774025464.986395,0.35,4,3992.50,51.17,1685.14,2003.49,0.00,3516883787581.751953,3516883786413.360352,11,0,0.000000,0.000030,891242,446424,0,0,3190,0,1,1 +1774025469.985937,0.35,4,3992.50,51.15,1685.83,2002.80,0.00,1.492031,0.022072,221,21,0.000031,0.000045,891244,446428,0,0,3192,0,1,1 +1774025474.985869,0.40,4,3992.50,51.15,1685.83,2002.80,0.00,3518485657021.987793,3518485657023.280762,199,0,0.000070,0.000088,891249,446436,0,0,3195,0,1,1 +1774025479.985226,0.30,4,3992.50,51.18,1684.85,2003.78,0.00,3518889742326.553711,0.000000,11,0,0.000031,0.000045,891251,446440,0,0,3197,0,1,1 +1774025484.986454,0.50,4,3992.50,51.47,1673.79,2014.98,0.00,0.000000,0.000000,11,0,0.000050,0.000092,891255,446447,0,0,3200,0,1,1 +1774025489.986839,0.35,4,3992.50,51.54,1670.82,2017.81,0.00,1.491780,0.022069,221,21,0.000050,0.000082,891259,446453,0,0,3202,0,1,1 +1774025494.985969,0.25,4,3992.50,51.54,1670.82,2017.81,0.00,3519049118033.788086,3519049118035.257812,11,0,0.000000,0.000030,891259,446456,0,0,3205,0,1,1 +1774025499.981957,0.30,4,3992.50,51.54,1670.82,2017.81,0.00,368.610864,1538.551939,40176,53026,0.000000,0.000020,891259,446458,0,0,3207,0,1,1 +1774025504.981950,0.40,4,3992.50,51.51,1671.97,2016.66,0.00,3518441864820.899414,3518441863651.845215,70,0,0.000000,0.000030,891259,446461,0,0,3210,0,1,1 +1774025509.981959,0.35,4,3992.50,51.53,1670.98,2017.65,0.00,1.441892,0.022070,221,21,0.000000,0.000020,891259,446463,0,0,3212,0,1,1 +1774025514.981883,0.55,4,3992.50,51.69,1669.88,2023.75,0.00,0.000000,0.000000,221,21,0.000000,0.000030,891259,446466,0,0,3215,0,1,1 +1774025519.981967,0.70,4,3992.50,51.69,1669.91,2023.75,0.00,3518378430148.028809,3518378430149.448730,70,0,0.000000,0.000020,891259,446468,0,0,3217,0,1,1 +1774025524.981869,0.35,4,3992.50,51.71,1669.17,2024.49,0.00,3518506215938.161133,0.000000,11,0,0.000000,0.000030,891259,446471,0,0,3220,0,1,1 +1774025529.982743,0.40,4,3992.50,51.71,1669.28,2024.39,0.00,0.000000,0.000000,11,0,0.000000,0.000020,891259,446473,0,0,3222,0,1,1 +1774025534.982066,0.40,4,3992.50,51.71,1669.28,2024.39,0.00,0.050007,0.000000,70,0,0.000000,0.000030,891259,446476,0,0,3225,0,1,1 +1774025539.981970,0.30,4,3992.50,51.71,1669.07,2024.58,0.00,364.215894,1537.415906,39419,53084,0.000000,0.000020,891259,446478,0,0,3227,0,1,1 +1774025544.981934,0.55,4,3992.50,51.52,1674.89,2017.16,0.00,4.060870,0.051954,40177,53125,0.000000,0.000030,891259,446481,0,0,3230,0,1,1 +1774025549.985889,0.35,4,3992.50,51.53,1674.75,2017.39,0.00,0.000000,0.014051,40177,53141,0.000000,0.000020,891259,446483,0,0,3232,0,1,1 +1774025554.983808,0.30,4,3992.50,51.53,1674.75,2017.39,0.00,3519902303083.828613,3519902301912.738281,221,21,0.000000,0.000030,891259,446486,0,0,3235,0,1,1 +1774025559.986550,0.30,4,3992.50,51.55,1674.01,2018.12,0.00,3516509121699.618652,3516509121701.087891,11,0,0.000000,0.000020,891259,446488,0,0,3237,0,1,1 +1774025564.986386,0.45,4,3992.50,51.38,1680.42,2011.72,0.00,0.176959,0.000000,199,0,0.000000,0.000030,891259,446491,0,0,3240,0,1,1 +1774025569.986017,0.35,4,3992.50,51.38,1680.42,2011.72,0.00,3518697178675.456543,0.000000,11,0,0.000000,0.000020,891259,446493,0,0,3242,0,1,1 +1774025574.986157,0.50,4,3992.50,51.71,1667.41,2024.76,0.00,364.248656,1537.436116,39419,53156,0.000000,0.000030,891259,446496,0,0,3245,0,1,1 +1774025579.986735,0.35,4,3992.50,51.72,1667.16,2024.96,0.00,3518030223083.774414,3518030221908.681641,238,2,0.000000,0.000020,891259,446498,0,0,3247,0,1,1 +1774025584.985928,0.30,4,3992.50,51.70,1668.07,2024.05,0.00,3519005567693.236328,3519005567695.245117,11,0,0.000000,0.000030,891259,446501,0,0,3250,0,1,1 +1774025589.982177,0.45,4,3992.50,51.69,1668.20,2023.92,0.00,1.493015,0.022087,221,21,0.000000,0.000020,891259,446503,0,0,3252,0,1,1 +1774025594.981963,0.25,4,3992.50,51.72,1667.25,2024.88,0.00,3518587337151.339844,3518587337152.809570,11,0,0.000000,0.000030,891259,446506,0,0,3255,0,1,1 +1774025599.985832,0.35,4,3992.50,51.72,1667.04,2025.09,0.00,2.007236,0.000195,238,2,0.000000,0.000020,891259,446508,0,0,3257,0,1,1 +1774025604.985020,0.95,4,3992.50,51.89,1660.30,2031.78,0.00,3519008686040.072266,0.021879,221,21,0.000000,0.000030,891259,446511,0,0,3260,0,1,1 +1774025609.983054,0.30,4,3992.50,51.92,1659.54,2032.59,0.00,3519821342722.732910,3519821342724.026855,199,0,0.000000,0.000020,891259,446513,0,0,3262,0,1,1 +1774025614.981955,0.30,4,3992.50,51.89,1660.64,2031.49,0.00,3519210366731.436523,0.000000,11,0,0.000000,0.000030,891259,446516,0,0,3265,0,1,1 +1774025619.981953,0.45,4,3992.50,51.72,1667.34,2024.79,0.00,368.319894,1537.606947,40177,53272,0.000000,0.000020,891259,446518,0,0,3267,0,1,1 +1774025624.984998,0.30,4,3992.50,51.53,1674.49,2017.64,0.00,3516296111903.020996,3516296110732.977051,221,21,0.000000,0.000030,891259,446521,0,0,3270,0,1,1 +1774025629.986382,0.25,4,3992.50,51.56,1673.51,2018.62,0.00,0.516751,3517463342173.991211,238,2,0.000000,0.000020,891259,446523,0,0,3272,0,1,1 +1774025634.986016,0.55,4,3992.50,51.75,1668.09,2026.23,0.00,3518695193982.901855,3518695193984.910645,11,0,0.000000,0.000030,891259,446526,0,0,3275,0,1,1 +1774025639.982404,0.35,4,3992.50,51.75,1665.93,2026.20,0.00,0.000000,0.000000,11,0,0.000000,0.000020,891259,446528,0,0,3277,0,1,1 +1774025644.981945,0.35,4,3992.50,51.76,1665.68,2026.45,0.00,0.050005,0.000000,70,0,0.000000,0.000030,891259,446531,0,0,3280,0,1,1 +1774025649.985536,0.40,4,3992.50,51.76,1665.50,2026.63,0.00,1.957383,0.000195,238,2,0.000000,0.000020,891259,446533,0,0,3282,0,1,1 +1774025654.981874,0.35,4,3992.50,51.76,1665.57,2026.56,0.00,3521016263862.148926,0.021891,221,21,0.000000,0.000030,891259,446536,0,0,3285,0,1,1 +1774025659.984185,0.30,4,3992.50,51.77,1665.34,2026.79,0.00,366.658300,1536.954786,40177,53336,0.000000,0.000020,891259,446538,0,0,3287,0,1,1 +1774025664.986545,0.60,4,3992.50,51.87,1661.54,2030.73,0.00,3516777428832.857422,3516777427664.041016,11,0,0.000000,0.000030,891259,446541,0,0,3290,0,1,1 +1774025669.981900,0.35,4,3992.50,51.87,1661.44,2030.69,0.00,368.662214,1539.147837,40177,53356,0.000000,0.000020,891259,446543,0,0,3292,0,1,1 +1774025674.981897,0.25,4,3992.50,51.87,1661.22,2030.91,0.00,3518439617602.901367,3518439617606.951660,39419,53346,0.000000,0.000030,891259,446546,0,0,3295,0,1,1 +1774025679.986544,0.35,4,3992.50,51.69,1668.38,2023.75,0.00,3515170159457.325195,3515170158284.966309,11,0,0.000000,0.000020,891259,446548,0,0,3297,0,1,1 +1774025684.986264,0.30,4,3992.50,51.71,1667.64,2024.49,0.00,0.176963,0.000000,199,0,0.000000,0.000030,891259,446551,0,0,3300,0,1,1 +1774025689.984468,0.35,4,3992.50,51.71,1667.64,2024.49,0.00,0.000000,0.000000,199,0,0.000000,0.000020,891259,446553,0,0,3302,0,1,1 +1774025694.985977,0.60,4,3992.50,51.95,1658.11,2034.02,0.00,368.031719,1537.324388,40177,53411,0.000000,0.000030,891259,446556,0,0,3305,0,1,1 +1774025699.984751,0.25,4,3992.50,51.95,1658.10,2034.03,0.00,3519300657669.477539,3519300656499.722168,11,0,0.000000,0.000020,891259,446558,0,0,3307,0,1,1 +1774025704.981960,0.60,4,3992.50,51.96,1657.89,2034.23,0.00,2.009911,0.000195,238,2,0.000000,0.000030,891259,446561,0,0,3310,0,1,1 +1774025709.986673,0.30,4,3992.50,51.77,1665.05,2027.07,0.00,365.965999,1536.368117,40177,53436,0.000000,0.000020,891259,446563,0,0,3312,0,1,1 +1774025714.986207,0.40,4,3992.50,51.79,1664.57,2027.56,0.00,3518764984992.174316,3518764983822.392090,199,0,0.000000,0.000030,891259,446566,0,0,3315,0,1,1 +1774025719.984951,0.30,4,3992.50,51.79,1664.57,2027.56,0.00,1.315272,0.022076,221,21,0.000000,0.000020,891259,446568,0,0,3317,0,1,1 +1774025724.981959,0.50,4,3992.50,51.83,1657.50,2029.28,0.00,367.047441,1538.754053,40177,53461,0.000205,0.000562,891266,446582,0,0,3320,0,1,1 +1774025729.981966,0.45,4,3992.50,51.87,1655.88,2030.66,0.00,3518432101523.100586,3518432101527.154785,39419,53454,0.002480,0.002476,891286,446613,0,0,3322,0,1,1 +1774025734.986809,0.25,4,3992.50,51.87,1655.88,2030.66,0.00,3515032533946.480469,3515032532773.976074,70,0,0.000204,0.000561,891293,446627,0,0,3325,0,1,1 +1774025739.986274,0.55,4,3992.50,51.87,1655.88,2030.66,0.00,1.958999,0.000195,238,2,0.001779,0.001557,891318,446645,0,0,3327,0,1,1 +1774025744.985922,0.45,4,3992.50,51.87,1655.64,2030.90,0.00,3518684753279.792969,3518684753281.751953,70,0,0.001734,0.001361,891343,446664,0,0,3330,0,1,1 +1774025749.982331,0.30,4,3992.50,51.87,1655.64,2030.90,0.00,368.534398,1539.047489,40177,53535,0.000000,0.000020,891343,446666,0,0,3332,0,1,1 +1774025754.986693,0.50,4,3992.50,51.91,1650.58,2032.58,0.00,3515370513879.700195,3515370512711.047363,70,0,0.000000,0.000030,891343,446669,0,0,3335,0,1,1 +1774025759.981913,0.25,4,3992.50,51.93,1649.85,2033.32,0.00,0.127075,0.000000,199,0,0.000000,0.000020,891343,446671,0,0,3337,0,1,1 +1774025764.986503,0.35,4,3992.50,51.93,1649.85,2033.32,0.00,3515209844106.127441,0.000000,11,0,0.000000,0.000030,891343,446674,0,0,3340,0,1,1 +1774025769.986033,0.40,4,3992.50,51.75,1656.99,2026.18,0.00,0.000000,0.000000,11,0,0.000031,0.000045,891345,446678,0,0,3342,0,1,1 +1774025774.981863,0.30,4,3992.50,51.76,1656.75,2026.42,0.00,0.177101,0.000000,199,0,0.000070,0.000088,891350,446686,0,0,3345,0,1,1 +1774025779.981893,0.35,4,3992.50,51.76,1656.75,2026.42,0.00,1.314934,0.022070,221,21,0.000031,0.000045,891352,446690,0,0,3347,0,1,1 +1774025784.981872,0.55,4,3992.50,51.98,1648.29,2035.02,0.00,3518452336115.858887,3518452336117.151855,199,0,0.000050,0.000092,891356,446697,0,0,3350,0,1,1 +1774025789.986761,0.35,4,3992.50,51.96,1648.84,2034.32,0.00,3515000019013.480469,0.000000,70,0,0.000050,0.000082,891360,446703,0,0,3352,0,1,1 +1774025794.986094,0.35,4,3992.50,51.97,1648.47,2034.70,0.00,1.959051,0.000195,238,2,0.000000,0.000030,891360,446706,0,0,3355,0,1,1 +1774025799.986722,0.30,4,3992.50,51.98,1648.22,2034.95,0.00,3517994930780.137695,3517994930782.095703,70,0,0.000000,0.000020,891360,446708,0,0,3357,0,1,1 +1774025804.981881,0.25,4,3992.50,51.98,1647.98,2035.19,0.00,1.960687,0.000196,238,2,0.000000,0.000030,891360,446711,0,0,3360,0,1,1 +1774025809.986146,0.30,4,3992.50,51.98,1647.98,2035.19,0.00,361.941340,1536.757997,39419,53628,0.000000,0.000020,891360,446713,0,0,3362,0,1,1 +1774025814.981967,0.50,4,3992.50,52.11,1643.24,2040.31,0.00,3521380418418.400879,3521380417241.598633,238,2,0.000000,0.000030,891360,446716,0,0,3365,0,1,1 +1774025819.981952,0.40,4,3992.50,52.10,1643.76,2039.80,0.00,3518447931704.599609,0.021875,221,21,0.000000,0.000020,891360,446718,0,0,3367,0,1,1 +1774025824.986529,0.30,4,3992.50,51.91,1651.16,2032.40,0.00,362.435195,1536.680916,39419,53661,0.000000,0.000030,891360,446721,0,0,3370,0,1,1 +1774025829.985916,0.35,4,3992.50,51.92,1650.64,2032.93,0.00,3518868979374.392090,3518868978198.927734,221,21,0.000000,0.000020,891360,446723,0,0,3372,0,1,1 +1774025834.986697,0.35,4,3992.50,51.95,1649.66,2033.91,0.00,362.710310,1537.855180,39419,53671,0.000000,0.000030,891360,446726,0,0,3375,0,1,1 +1774025839.986377,0.40,4,3992.50,51.95,1649.44,2034.12,0.00,0.000000,0.003907,39419,53676,0.000000,0.000020,891360,446728,0,0,3377,0,1,1 +1774025844.981965,0.60,4,3992.50,52.20,1641.46,2043.69,0.00,3521544157761.515137,3521544156586.566406,70,0,0.000000,0.000030,891360,446731,0,0,3380,0,1,1 +1774025849.981961,0.30,4,3992.50,52.16,1641.23,2042.36,0.00,0.126953,0.000000,199,0,0.000000,0.000020,891360,446733,0,0,3382,0,1,1 +1774025854.986746,0.40,4,3992.50,52.17,1640.98,2042.60,0.00,1.313684,0.022049,221,21,0.000000,0.000030,891360,446736,0,0,3385,0,1,1 +1774025859.986378,0.45,4,3992.50,52.17,1640.98,2042.60,0.00,0.516933,3518696723322.613281,238,2,0.000000,0.000020,891360,446738,0,0,3387,0,1,1 +1774025864.982515,0.25,4,3992.50,52.17,1640.98,2042.60,0.00,3521157515740.064941,3521157515742.024902,70,0,0.000000,0.000030,891360,446741,0,0,3390,0,1,1 +1774025869.981970,0.30,4,3992.50,52.17,1640.99,2042.60,0.00,3518820887741.229492,0.000000,11,0,0.000000,0.000020,891360,446743,0,0,3392,0,1,1 +1774025874.986367,0.55,4,3992.50,52.30,1640.26,2047.52,0.00,0.176798,0.000000,199,0,0.000000,0.000030,891360,446746,0,0,3395,0,1,1 +1774025879.986503,0.40,4,3992.50,52.28,1640.96,2046.90,0.00,364.072021,1538.197573,39419,53764,0.000000,0.000020,891360,446748,0,0,3397,0,1,1 +1774025884.986879,0.30,4,3992.50,52.29,1640.74,2047.12,0.00,4.060534,0.032419,40177,53800,0.000000,0.000030,891360,446751,0,0,3400,0,1,1 +1774025889.986114,0.35,4,3992.50,52.27,1641.47,2046.39,0.00,3518975762418.743164,3518975761248.562012,70,0,0.000000,0.000020,891360,446753,0,0,3402,0,1,1 +1774025894.982890,0.30,4,3992.50,52.29,1640.51,2047.35,0.00,3520707468792.675781,0.000000,11,0,0.000000,0.000030,891360,446756,0,0,3405,0,1,1 +1774025899.981955,0.35,4,3992.50,52.29,1640.52,2047.35,0.00,0.050009,0.000000,70,0,0.000000,0.000020,891360,446758,0,0,3407,0,1,1 +1774025904.986599,0.60,4,3992.50,52.13,1645.64,2040.87,0.00,1.440556,0.022050,221,21,0.000000,0.000030,891360,446761,0,0,3410,0,1,1 +1774025909.981884,0.25,4,3992.50,52.13,1645.39,2041.11,0.00,3521758340397.321289,3521758340398.792969,11,0,0.000000,0.000020,891360,446763,0,0,3412,0,1,1 +1774025914.984393,0.40,4,3992.50,52.13,1645.39,2041.11,0.00,1.491146,0.022059,221,21,0.000000,0.000030,891360,446766,0,0,3415,0,1,1 +1774025919.986279,0.30,4,3992.50,52.13,1645.39,2041.11,0.00,366.689532,1537.756547,40177,53864,0.000000,0.000020,891360,446768,0,0,3417,0,1,1 +1774025924.981955,0.30,4,3992.50,51.94,1653.04,2033.47,0.00,3521483049074.295898,3521483047903.243652,11,0,0.000000,0.000030,891360,446771,0,0,3420,0,1,1 +1774025929.981879,0.35,4,3992.50,51.95,1652.54,2033.96,0.00,0.000000,0.000000,11,0,0.000000,0.000020,891360,446773,0,0,3422,0,1,1 +1774025934.981952,0.45,4,3992.50,52.04,1654.37,2037.61,0.00,0.049999,0.000000,70,0,0.000000,0.000030,891360,446776,0,0,3425,0,1,1 +1774025939.985279,0.30,4,3992.50,52.06,1653.63,2038.35,0.00,1.440936,0.022056,221,21,0.000000,0.000020,891360,446778,0,0,3427,0,1,1 +1774025944.986052,0.35,4,3992.50,51.87,1661.04,2030.94,0.00,3517893083694.038086,3517893083695.507812,11,0,0.000000,0.000030,891360,446781,0,0,3430,0,1,1 +1774025949.985237,0.40,4,3992.50,51.87,1661.15,2030.83,0.00,0.000000,0.000000,11,0,0.000000,0.000020,891360,446783,0,0,3432,0,1,1 +1774025954.986531,0.30,4,3992.50,51.88,1660.93,2031.05,0.00,368.224488,1538.057661,40177,53944,0.000000,0.000030,891360,446786,0,0,3435,0,1,1 +1774025959.986607,0.45,4,3992.50,51.88,1660.94,2031.04,0.00,3518383273108.148438,3518383271936.560547,221,21,0.000000,0.000020,891360,446788,0,0,3437,0,1,1 +1774025964.984477,0.50,4,3992.50,52.26,1646.02,2046.26,0.00,3519936901230.110352,3519936901231.531250,70,0,0.000000,0.000030,891360,446791,0,0,3440,0,1,1 +1774025969.984531,0.30,4,3992.50,52.24,1646.57,2045.41,0.00,0.126952,0.000000,199,0,0.000000,0.000020,891360,446793,0,0,3442,0,1,1 +1774025974.986573,0.45,4,3992.50,52.24,1646.57,2045.40,0.00,0.000000,0.000000,199,0,0.000000,0.000030,891360,446796,0,0,3445,0,1,1 +1774025979.983501,0.30,4,3992.50,52.25,1646.19,2045.79,0.00,364.305723,1539.437457,39419,53966,0.000000,0.000020,891360,446798,0,0,3447,0,1,1 +1774025984.985871,0.40,4,3992.50,52.25,1646.19,2045.79,0.00,3516770419706.740234,3516770418531.056152,238,2,0.000000,0.000030,891360,446801,0,0,3450,0,1,1 +1774025989.981961,0.35,4,3992.50,52.26,1645.95,2046.02,0.00,3521190490404.321289,0.021892,221,21,0.000000,0.000020,891360,446803,0,0,3452,0,1,1 +1774025994.986488,0.55,4,3992.50,52.31,1645.12,2048.22,0.00,3515255010222.683594,3515255010224.152344,11,0,0.000000,0.000030,891360,446806,0,0,3455,0,1,1 +1774025999.985813,0.35,4,3992.50,52.31,1645.15,2048.19,0.00,368.369398,1538.764521,40177,54027,0.000000,0.000020,891360,446808,0,0,3457,0,1,1 +1774026004.986228,0.90,4,3992.50,52.32,1644.92,2048.41,0.00,3518145140209.518555,0.001172,39419,54016,0.000000,0.000030,891360,446811,0,0,3460,0,1,1 +1774026009.986449,0.35,4,3992.50,52.14,1652.08,2041.26,0.00,0.000000,0.060154,39419,54074,0.000000,0.000020,891360,446813,0,0,3462,0,1,1 +1774026014.984182,0.35,4,3992.50,52.09,1654.05,2039.29,0.00,3520033086623.430176,3520033085448.538086,11,0,0.000000,0.000030,891360,446816,0,0,3465,0,1,1 +1774026019.981877,0.40,4,3992.50,52.10,1653.56,2039.78,0.00,0.000000,0.000000,11,0,0.000000,0.000020,891360,446818,0,0,3467,0,1,1 +1774026024.981956,0.60,4,3992.50,52.33,1641.68,2048.91,0.00,368.313930,1538.687503,40177,54139,0.000205,0.000562,891367,446832,0,0,3470,0,1,1 +1774026029.982110,0.45,4,3992.50,52.35,1641.04,2049.64,0.00,3518328436576.601074,3518328435406.244629,11,0,0.000623,0.001137,891382,446857,0,0,3472,0,1,1 +1774026034.986412,0.35,4,3992.50,52.35,1641.04,2049.64,0.00,368.003106,1537.410844,40177,54163,0.001126,0.001231,891391,446874,0,0,3475,0,1,1 +1774026039.986819,1.30,4,3992.50,52.36,1640.82,2049.86,0.00,3518150714947.759766,3518150713777.391113,70,0,0.001109,0.000635,891413,446890,0,0,3477,0,1,1 +1774026044.983751,0.40,4,3992.50,52.36,1640.82,2049.86,0.00,3520597496795.548828,0.000000,11,0,0.001735,0.001362,891438,446909,0,0,3480,0,1,1 +1774026049.986790,0.35,4,3992.50,52.36,1640.58,2050.10,0.00,368.096036,1537.813914,40177,54176,0.000000,0.000020,891438,446911,0,0,3482,0,1,1 +1774026054.981889,0.65,4,3992.50,52.37,1640.70,2050.30,0.00,3521889551313.224121,3521889550141.646484,11,0,0.000000,0.000030,891438,446914,0,0,3485,0,1,1 +1774026059.981878,0.40,4,3992.50,52.30,1643.12,2047.56,0.00,0.000000,0.000000,11,0,0.000000,0.000020,891438,446916,0,0,3487,0,1,1 +1774026064.985661,0.30,4,3992.50,52.32,1642.38,2048.29,0.00,363.983515,1537.608208,39419,54188,0.000000,0.000030,891438,446919,0,0,3490,0,1,1 +1774026069.986124,0.35,4,3992.50,52.30,1642.95,2047.73,0.00,3518111145758.228027,3518111144581.815918,238,2,0.000031,0.000045,891440,446923,0,0,3492,0,1,1 +1774026074.986053,0.35,4,3992.50,52.31,1642.70,2047.98,0.00,366.316144,1538.841991,40177,54232,0.000062,0.000080,891444,446930,0,0,3495,0,1,1 +1774026079.985952,0.20,4,3992.50,52.31,1642.45,2048.22,0.00,0.000000,0.003125,40177,54236,0.000031,0.000045,891446,446934,0,0,3497,0,1,1 +1774026084.986282,0.55,4,3992.50,52.38,1640.52,2050.64,0.00,0.000000,0.032810,40177,54253,0.000058,0.000100,891451,446942,0,0,3500,0,1,1 +1774026089.986151,0.30,4,3992.50,52.38,1640.38,2050.81,0.00,3518529572027.264160,3518529570856.696777,11,0,0.000050,0.000082,891455,446948,0,0,3502,0,1,1 +1774026094.986273,0.30,4,3992.50,52.40,1639.65,2051.54,0.00,0.176949,0.000000,199,0,0.000000,0.000030,891455,446951,0,0,3505,0,1,1 +1774026099.982034,0.30,4,3992.50,52.38,1640.54,2050.65,0.00,0.000000,0.000000,199,0,0.000000,0.000020,891455,446953,0,0,3507,0,1,1 +1774026104.981975,0.25,4,3992.50,52.31,1643.11,2048.09,0.00,3518479151265.644043,0.000000,70,0,0.000000,0.000030,891455,446956,0,0,3510,0,1,1 +1774026109.981976,0.40,4,3992.50,52.35,1641.52,2049.67,0.00,0.126953,0.000000,199,0,0.000000,0.000053,891455,446959,0,0,3512,0,1,1 +1774026114.981886,0.50,4,3992.50,52.44,1638.02,2053.32,0.00,368.149389,1538.933906,40177,54296,0.000000,0.000030,891455,446962,0,0,3515,0,1,1 +1774026119.982016,0.40,4,3992.50,52.45,1637.66,2053.56,0.00,3518345922918.952637,3518345921748.346191,70,0,0.000000,0.000020,891455,446964,0,0,3517,0,1,1 +1774026124.986402,0.30,4,3992.50,52.43,1638.34,2052.89,0.00,367.947006,1537.570951,40177,54313,0.000000,0.000030,891455,446967,0,0,3520,0,1,1 +1774026129.986547,0.45,4,3992.50,52.28,1644.51,2046.72,0.00,3518334699724.411621,3518334698551.837402,238,2,0.000000,0.000020,891455,446969,0,0,3522,0,1,1 +1774026134.982601,0.25,4,3992.50,52.28,1644.27,2046.96,0.00,3521216045539.363281,3521216045541.373535,11,0,0.000000,0.000030,891455,446972,0,0,3525,0,1,1 +1774026139.983825,0.35,4,3992.50,52.29,1644.05,2047.18,0.00,2.008298,0.000195,238,2,0.000000,0.000020,891455,446974,0,0,3527,0,1,1 +1774026144.984457,0.55,4,3992.50,52.45,1640.87,2053.54,0.00,3517992604975.951172,3517992604977.782715,199,0,0.000000,0.000030,891455,446977,0,0,3530,0,1,1 +1774026149.981967,0.30,4,3992.50,52.45,1640.85,2053.53,0.00,368.326193,1539.764429,40177,54371,0.000000,0.000020,891455,446979,0,0,3532,0,1,1 +1774026154.986204,0.35,4,3992.50,52.45,1640.85,2053.53,0.00,3515457961247.364258,3515457960077.500977,199,0,0.000000,0.000030,891455,446982,0,0,3535,0,1,1 +1774026159.982941,0.25,4,3992.50,52.45,1640.85,2053.53,0.00,1.833032,0.000195,238,2,0.000000,0.000020,891455,446984,0,0,3537,0,1,1 +1774026164.985843,0.35,4,3992.50,52.45,1640.85,2053.53,0.00,3516395831389.520020,3516395831391.527344,11,0,0.000000,0.000030,891455,446987,0,0,3540,0,1,1 +1774026169.981936,0.25,4,3992.50,52.46,1640.63,2053.75,0.00,0.050039,0.000000,70,0,0.000000,0.000020,891455,446989,0,0,3542,0,1,1 +1774026174.981881,0.55,4,3992.50,52.50,1639.21,2055.45,0.00,364.212938,1539.033134,39419,54382,0.000000,0.000030,891455,446992,0,0,3545,0,1,1 +1774026179.985924,0.25,4,3992.50,52.50,1638.96,2055.42,0.00,3515594273289.897949,3515594272114.622070,221,21,0.000000,0.000020,891455,446994,0,0,3547,0,1,1 +1774026184.982473,0.30,4,3992.50,52.42,1641.92,2052.46,0.00,363.017506,1540.073919,39419,54402,0.000000,0.000030,891455,446997,0,0,3550,0,1,1 +1774026189.983101,0.35,4,3992.50,52.24,1649.08,2045.30,0.00,3517996025080.625977,3517996023905.999023,11,0,0.000000,0.000020,891455,446999,0,0,3552,0,1,1 +1774026194.984167,0.35,4,3992.50,52.22,1649.99,2044.39,0.00,0.176915,0.000000,199,0,0.000000,0.000030,891455,447002,0,0,3555,0,1,1 +1774026199.986209,0.35,4,3992.50,52.22,1649.74,2044.64,0.00,3517000860807.717773,0.000000,70,0,0.000000,0.000020,891455,447004,0,0,3557,0,1,1 +1774026204.981957,0.50,4,3992.50,52.32,1649.42,2048.57,0.00,3521431925445.492676,0.000000,11,0,0.000000,0.000030,891455,447007,0,0,3560,0,1,1 +1774026209.983164,0.30,4,3992.50,52.33,1648.36,2048.84,0.00,364.170959,1538.728090,39419,54448,0.000000,0.000020,891455,447009,0,0,3562,0,1,1 +1774026214.985792,0.35,4,3992.50,52.35,1647.62,2049.58,0.00,3516588671486.201660,3516588670310.509766,221,21,0.000000,0.000030,891455,447012,0,0,3565,0,1,1 +1774026219.985393,0.25,4,3992.50,52.35,1647.62,2049.58,0.00,0.516936,3518718300287.109375,238,2,0.000000,0.000020,891455,447014,0,0,3567,0,1,1 +1774026224.985916,0.25,4,3992.50,52.35,1647.62,2049.58,0.00,362.212209,1538.959526,39419,54470,0.000000,0.000030,891455,447017,0,0,3570,0,1,1 +1774026229.984984,0.35,4,3992.50,52.35,1647.55,2049.65,0.00,3519093242807.995605,3519093241632.915039,11,0,0.000000,0.000020,891455,447019,0,0,3572,0,1,1 +1774026234.986767,0.55,4,3992.50,52.44,1641.93,2053.30,0.00,0.000000,0.000000,11,0,0.000000,0.000030,891455,447022,0,0,3575,0,1,1 +1774026239.984751,0.30,4,3992.50,52.46,1641.22,2054.04,0.00,364.405788,1539.779708,39419,54502,0.000000,0.000020,891455,447024,0,0,3577,0,1,1 +1774026244.984425,0.30,4,3992.50,52.49,1640.02,2055.24,0.00,3518666622065.524902,3518666620889.078613,221,21,0.000000,0.000030,891455,447027,0,0,3580,0,1,1 +1774026249.985996,0.40,4,3992.50,52.32,1646.71,2048.55,0.00,3517331791694.743164,3517331791696.212891,11,0,0.000000,0.000020,891455,447029,0,0,3582,0,1,1 +1774026254.986247,0.25,4,3992.50,52.35,1645.48,2049.79,0.00,1.491820,0.022069,221,21,0.000000,0.000030,891455,447032,0,0,3585,0,1,1 +1774026259.981879,0.35,4,3992.50,52.39,1644.25,2051.02,0.00,3521513092804.486328,3521513092805.957520,11,0,0.000000,0.000020,891455,447034,0,0,3587,0,1,1 +1774026264.984727,0.60,4,3992.50,52.40,1641.38,2051.71,0.00,364.051562,1538.369611,39419,54569,0.000000,0.000030,891455,447037,0,0,3590,0,1,1 +1774026269.985927,0.25,4,3992.50,52.37,1642.66,2050.46,0.00,3517592666178.125488,3517592665003.420898,11,0,0.000000,0.000020,891455,447039,0,0,3592,0,1,1 +1774026274.981957,0.30,4,3992.50,52.41,1641.20,2051.92,0.00,0.000000,0.000000,11,0,0.000000,0.000030,891455,447042,0,0,3595,0,1,1 +1774026279.981954,0.40,4,3992.50,52.43,1640.22,2052.90,0.00,0.050000,0.000000,70,0,0.000000,0.000020,891455,447044,0,0,3597,0,1,1 +1774026284.985578,0.35,4,3992.50,52.44,1639.98,2053.14,0.00,3515889439992.618164,0.000000,11,0,0.000000,0.000030,891455,447047,0,0,3600,0,1,1 +1774026289.981881,0.40,4,3992.50,52.45,1639.59,2053.54,0.00,1.492998,0.022087,221,21,0.000000,0.000020,891455,447049,0,0,3602,0,1,1 +1774026294.981962,0.45,4,3992.50,52.45,1637.36,2053.42,0.00,3518379886029.253418,3518379886030.723145,11,0,0.000000,0.000030,891455,447052,0,0,3605,0,1,1 +1774026299.982105,0.30,4,3992.50,52.48,1636.14,2054.63,0.00,0.049999,0.000000,70,0,0.000000,0.000020,891455,447054,0,0,3607,0,1,1 +1774026304.986488,0.55,4,3992.50,52.48,1636.15,2054.62,0.00,0.000000,0.000000,70,0,0.000000,0.000030,891455,447057,0,0,3610,0,1,1 +1774026309.981886,0.35,4,3992.50,52.45,1637.39,2053.38,0.00,3521678484988.142090,0.000000,11,0,0.000000,0.000020,891455,447059,0,0,3612,0,1,1 +1774026314.986751,0.40,4,3992.50,52.48,1636.18,2054.60,0.00,0.000000,0.000000,11,0,0.000000,0.000030,891455,447062,0,0,3615,0,1,1 +1774026319.986337,0.30,4,3992.50,52.48,1636.18,2054.60,0.00,2.008955,0.000195,238,2,0.000000,0.000020,891455,447064,0,0,3617,0,1,1 +1774026324.985844,0.55,4,3992.50,52.50,1636.36,2055.55,0.00,3518783974485.524902,3518783974487.533691,11,0,0.001139,0.001232,891465,447081,0,0,3620,0,1,1 +1774026329.981964,0.45,4,3992.50,52.42,1638.59,2052.18,0.00,0.000000,0.000000,11,0,0.000624,0.001138,891480,447106,0,0,3622,0,1,1 +1774026334.982213,0.25,4,3992.50,52.42,1638.34,2052.43,0.00,0.176944,0.000000,199,0,0.000205,0.000562,891487,447120,0,0,3625,0,1,1 +1774026339.986811,0.45,4,3992.50,52.43,1637.88,2052.89,0.00,1.313733,0.022050,221,21,0.001777,0.001556,891512,447138,0,0,3627,0,1,1 +1774026344.986392,0.35,4,3992.50,52.46,1636.90,2053.87,0.00,0.516938,3518731788663.569336,238,2,0.001064,0.000439,891534,447155,0,0,3630,0,1,1 +1774026349.985948,0.40,4,3992.50,52.46,1636.84,2053.93,0.00,366.343451,1539.625509,40177,54770,0.000000,0.000020,891534,447157,0,0,3632,0,1,1 +1774026354.983742,0.45,4,3992.50,52.55,1633.25,2057.33,0.00,3519990275392.430176,3519990274220.566895,199,0,0.000000,0.000030,891534,447160,0,0,3635,0,1,1 +1774026359.984579,0.40,4,3992.50,52.55,1633.29,2057.33,0.00,368.081198,1539.274529,40177,54800,0.000000,0.000020,891534,447162,0,0,3637,0,1,1 +1774026364.986201,0.25,4,3992.50,52.57,1632.55,2058.07,0.00,3517296431102.605469,3517296429930.303223,221,21,0.000000,0.000030,891534,447165,0,0,3640,0,1,1 +1774026369.986103,0.45,4,3992.50,52.54,1633.67,2056.94,0.00,366.834983,1539.550129,40177,54810,0.000031,0.000045,891536,447169,0,0,3642,0,1,1 +1774026374.982285,0.25,4,3992.50,52.54,1633.45,2057.16,0.00,3521125643942.073730,3521125643946.120117,39419,54793,0.000070,0.000088,891541,447177,0,0,3645,0,1,1 +1774026379.986013,0.30,4,3992.50,52.54,1633.46,2057.16,0.00,3515816039685.828125,3515816038511.261230,199,0,0.000031,0.000045,891543,447181,0,0,3647,0,1,1 +1774026384.986386,0.55,4,3992.50,52.48,1632.49,2054.59,0.00,1.314843,0.022069,221,21,0.000050,0.000092,891547,447188,0,0,3650,0,1,1 +1774026389.985469,0.30,4,3992.50,52.48,1632.50,2054.59,0.00,0.516989,3519082277075.243652,238,2,0.000050,0.000082,891551,447194,0,0,3652,0,1,1 +1774026394.986203,0.30,4,3992.50,52.48,1632.26,2054.84,0.00,3517920906848.020996,3517920906849.979492,70,0,0.000000,0.000030,891551,447197,0,0,3655,0,1,1 +1774026399.981889,0.35,4,3992.50,52.48,1632.26,2054.84,0.00,368.587731,1540.949791,40177,54873,0.000000,0.000020,891551,447199,0,0,3657,0,1,1 +1774026404.985986,0.35,4,3992.50,52.48,1632.26,2054.83,0.00,3515556982991.863770,3515556981819.514648,238,2,0.000000,0.000030,891551,447202,0,0,3660,0,1,1 +1774026409.985868,0.40,4,3992.50,52.49,1632.03,2055.07,0.00,3518519781503.423828,3518519781505.432617,11,0,0.000000,0.000020,891551,447204,0,0,3662,0,1,1 +1774026414.981899,0.55,4,3992.50,52.49,1632.08,2055.02,0.00,364.548264,1540.861020,39419,54876,0.000000,0.000030,891551,447207,0,0,3665,0,1,1 +1774026419.982070,0.30,4,3992.50,52.49,1632.07,2055.02,0.00,3518317570944.595215,3518317569769.256348,11,0,0.000000,0.000020,891551,447209,0,0,3667,0,1,1 +1774026424.981894,0.30,4,3992.50,52.49,1632.07,2055.02,0.00,0.000000,0.000000,11,0,0.000000,0.000030,891551,447212,0,0,3670,0,1,1 +1774026429.981886,0.40,4,3992.50,52.27,1640.45,2046.65,0.00,368.320313,1539.679796,40177,54918,0.000000,0.000020,891551,447214,0,0,3672,0,1,1 +1774026434.984766,0.25,4,3992.50,52.31,1639.00,2048.09,0.00,3516411809466.861328,3516411808294.708496,221,21,0.000000,0.000030,891551,447217,0,0,3675,0,1,1 +1774026439.985972,0.35,4,3992.50,52.31,1639.00,2048.09,0.00,3517588685586.205566,3517588685587.674805,11,0,0.000000,0.000020,891551,447219,0,0,3677,0,1,1 +1774026444.986636,0.60,4,3992.50,52.47,1632.93,2054.21,0.00,368.270833,1539.512793,40177,54946,0.000000,0.000030,891551,447222,0,0,3680,0,1,1 +1774026449.983786,0.30,4,3992.50,52.47,1632.88,2054.20,0.00,3520443646648.416504,3520443645474.340820,238,2,0.000000,0.000020,891551,447224,0,0,3682,0,1,1 +1774026454.986152,0.40,4,3992.50,52.47,1632.89,2054.20,0.00,366.137677,1539.003562,40177,54964,0.000000,0.000030,891551,447227,0,0,3685,0,1,1 +1774026459.981957,0.30,4,3992.50,52.47,1632.89,2054.20,0.00,3521391988110.038574,3521391986935.632324,238,2,0.000000,0.000020,891551,447229,0,0,3687,0,1,1 +1774026464.981938,0.30,4,3992.50,52.47,1632.66,2054.43,0.00,3518450348183.663574,0.021875,221,21,0.000000,0.000030,891551,447232,0,0,3690,0,1,1 +1774026469.985008,0.35,4,3992.50,52.47,1632.66,2054.43,0.00,3516278113554.431641,3516278113555.900391,11,0,0.000000,0.000020,891551,447234,0,0,3692,0,1,1 +1774026474.985866,0.55,4,3992.50,52.57,1637.94,2058.08,0.00,1.491639,0.022067,221,21,0.000000,0.000030,891551,447237,0,0,3695,0,1,1 +1774026479.981952,0.30,4,3992.50,52.57,1637.88,2058.07,0.00,367.115188,1540.983338,40177,55013,0.000000,0.000020,891551,447239,0,0,3697,0,1,1 +1774026484.982475,0.30,4,3992.50,52.59,1636.89,2059.05,0.00,3518069147417.063965,3518069146245.707031,11,0,0.000000,0.000030,891551,447242,0,0,3700,0,1,1 +1774026489.981959,0.40,4,3992.50,52.40,1644.29,2051.66,0.00,0.000000,0.000000,11,0,0.000000,0.000020,891551,447244,0,0,3702,0,1,1 +1774026494.986407,0.35,4,3992.50,52.40,1644.29,2051.66,0.00,0.000000,0.000000,11,0,0.000000,0.000030,891551,447247,0,0,3705,0,1,1 +1774026499.981960,0.35,4,3992.50,52.41,1643.80,2052.15,0.00,2.010577,0.000195,238,2,0.000000,0.000020,891551,447249,0,0,3707,0,1,1 +1774026504.986290,0.60,4,3992.50,52.66,1634.21,2061.71,0.00,361.936634,1538.502895,39419,55036,0.000000,0.000030,891551,447252,0,0,3710,0,1,1 +1774026509.986543,0.35,4,3992.50,52.67,1633.75,2062.20,0.00,3518259651101.825195,3518259649926.307617,11,0,0.000000,0.000020,891551,447254,0,0,3712,0,1,1 +1774026514.985902,0.30,4,3992.50,52.68,1633.50,2062.45,0.00,0.000000,0.000000,11,0,0.000000,0.000030,891551,447257,0,0,3715,0,1,1 +1774026519.986663,0.25,4,3992.50,52.68,1633.50,2062.45,0.00,1.491667,0.022067,221,21,0.000000,0.000020,891551,447259,0,0,3717,0,1,1 +1774026524.986012,0.30,4,3992.50,52.68,1633.50,2062.44,0.00,362.814221,1540.058484,39419,55078,0.000000,0.000030,891551,447262,0,0,3720,0,1,1 +1774026529.986376,0.35,4,3992.50,52.68,1633.29,2062.66,0.00,4.060544,0.028514,40177,55107,0.000000,0.000020,891551,447264,0,0,3722,0,1,1 +1774026534.985058,0.50,4,3992.50,52.82,1626.12,2068.03,0.00,3519364637479.391113,0.008205,39419,55101,0.000000,0.000030,891551,447267,0,0,3725,0,1,1 +1774026539.986650,0.35,4,3992.50,52.83,1625.88,2068.27,0.00,3517317159672.331055,3517317158495.039551,238,2,0.000000,0.000020,891551,447269,0,0,3727,0,1,1 +1774026544.985837,0.40,4,3992.50,52.83,1625.88,2068.27,0.00,3519009777108.797363,3519009777110.806152,11,0,0.000000,0.000030,891551,447272,0,0,3730,0,1,1 +1774026549.982700,0.40,4,3992.50,52.64,1633.04,2061.11,0.00,1.492831,0.022084,221,21,0.000000,0.000020,891551,447274,0,0,3732,0,1,1 +1774026554.982623,0.30,4,3992.50,52.64,1633.05,2061.11,0.00,3518491374649.201172,3518491374650.494141,199,0,0.000000,0.000030,891551,447277,0,0,3735,0,1,1 +1774026559.985958,0.30,4,3992.50,52.64,1633.05,2061.10,0.00,367.897356,1538.953079,40177,55164,0.000000,0.000020,891551,447279,0,0,3737,0,1,1 +1774026564.986377,0.65,4,3992.50,52.84,1625.50,2068.68,0.00,3518142373409.799316,3518142372236.229004,238,2,0.000000,0.000043,891551,447283,0,0,3740,0,1,1 +1774026569.986544,0.30,4,3992.50,52.84,1625.47,2068.68,0.00,3518320259212.287598,3518320259214.119629,199,0,0.000000,0.000020,891551,447285,0,0,3742,0,1,1 +1774026574.986745,0.35,4,3992.50,52.84,1625.47,2068.68,0.00,368.127942,1539.961395,40177,55201,0.000000,0.000030,891551,447288,0,0,3745,0,1,1 +1774026579.986590,0.25,4,3992.50,52.84,1625.48,2068.68,0.00,3518546388305.650391,3518546387133.860352,70,0,0.000000,0.000020,891551,447290,0,0,3747,0,1,1 +1774026584.986714,0.40,4,3992.50,52.84,1625.48,2068.68,0.00,364.199843,1539.991837,39419,55200,0.000000,0.000030,891551,447293,0,0,3750,0,1,1 +1774026589.985871,0.30,4,3992.50,52.84,1625.26,2068.89,0.00,3519030374168.884277,3519030372991.445312,221,21,0.000000,0.000020,891551,447295,0,0,3752,0,1,1 +1774026594.982931,0.65,4,3992.50,52.64,1630.02,2061.10,0.00,367.043703,1540.972508,40177,55245,0.000000,0.000030,891551,447298,0,0,3755,0,1,1 +1774026599.982384,0.35,4,3992.50,52.66,1629.41,2061.68,0.00,3518821768581.975098,3518821767410.078125,11,0,0.000000,0.000020,891551,447300,0,0,3757,0,1,1 +1774026604.984507,0.65,4,3992.50,52.66,1629.16,2061.92,0.00,368.163415,1539.461234,40177,55266,0.000000,0.000030,891551,447303,0,0,3760,0,1,1 +1774026609.986624,0.35,4,3992.50,52.62,1630.94,2060.15,0.00,3516948406180.298340,3516948405006.991211,238,2,0.000000,0.000020,891551,447305,0,0,3762,0,1,1 +1774026614.985416,0.25,4,3992.50,52.64,1630.20,2060.89,0.00,3519287009003.683594,3519287009005.692383,11,0,0.000000,0.000030,891551,447308,0,0,3765,0,1,1 +1774026619.985924,0.30,4,3992.50,52.66,1629.25,2061.84,0.00,1.491743,0.022068,221,21,0.000000,0.000020,891551,447310,0,0,3767,0,1,1 +1774026624.986118,0.60,4,3992.50,52.86,1621.04,2069.71,0.00,0.000000,0.000000,221,21,0.000205,0.000562,891558,447324,0,0,3770,0,1,1 +1774026629.981890,0.40,4,3992.50,52.78,1623.95,2066.60,0.00,367.138285,1541.500176,40177,55341,0.002494,0.002479,891579,447355,0,0,3772,0,1,1 +1774026634.985122,0.30,4,3992.50,52.81,1622.97,2067.58,0.00,3516164619199.986816,3516164618026.837402,238,2,0.000205,0.000562,891586,447369,0,0,3775,0,1,1 +1774026639.986324,0.50,4,3992.50,52.82,1622.51,2068.04,0.00,3517591540477.834961,3517591540479.843262,11,0,0.001779,0.001557,891611,447387,0,0,3777,0,1,1 +1774026644.984714,0.40,4,3992.50,52.83,1622.26,2068.29,0.00,1.492375,0.022077,221,21,0.001735,0.001361,891636,447406,0,0,3780,0,1,1 +1774026649.986809,0.35,4,3992.50,52.83,1622.27,2068.28,0.00,3516963657380.860840,3516963657382.153320,199,0,0.000000,0.000020,891636,447408,0,0,3782,0,1,1 +1774026654.986057,0.45,4,3992.50,52.83,1620.39,2068.24,0.00,3518966337552.625977,0.000000,70,0,0.000000,0.000030,891636,447411,0,0,3785,0,1,1 +1774026659.982592,0.40,4,3992.50,52.83,1620.39,2068.24,0.00,1.960147,0.000195,238,2,0.000000,0.000020,891636,447413,0,0,3787,0,1,1 +1774026664.985905,0.45,4,3992.50,52.83,1620.39,2068.23,0.00,3516107485286.995117,3516107485288.952637,70,0,0.000000,0.000030,891636,447416,0,0,3790,0,1,1 +1774026669.982251,0.35,4,3992.50,52.64,1627.69,2060.94,0.00,0.127046,0.000000,199,0,0.000031,0.000045,891638,447420,0,0,3792,0,1,1 +1774026674.985817,0.40,4,3992.50,52.64,1627.69,2060.94,0.00,363.822459,1539.205769,39419,55413,0.000070,0.000088,891643,447428,0,0,3795,0,1,1 +1774026679.981884,0.35,4,3992.50,52.64,1627.47,2061.15,0.00,3521206688989.449219,3521206687812.478516,11,0,0.000031,0.000045,891645,447432,0,0,3797,0,1,1 +1774026684.982783,0.50,4,3992.50,52.74,1623.38,2064.80,0.00,0.049991,0.000000,70,0,0.000050,0.000092,891649,447439,0,0,3800,0,1,1 +1774026689.981942,0.35,4,3992.50,52.74,1623.38,2064.80,0.00,1.959119,0.000195,238,2,0.000050,0.000082,891653,447445,0,0,3802,0,1,1 +1774026694.986546,0.25,4,3992.50,52.80,1620.92,2067.26,0.00,365.973974,1538.959400,40177,55475,0.000000,0.000030,891653,447448,0,0,3805,0,1,1 +1774026699.986679,0.30,4,3992.50,52.80,1620.92,2067.26,0.00,3518343658571.673828,3518343657399.647949,11,0,0.000000,0.000020,891653,447450,0,0,3807,0,1,1 +1774026704.986739,0.35,4,3992.50,52.80,1620.92,2067.26,0.00,0.000000,0.000000,11,0,0.000000,0.000030,891653,447453,0,0,3810,0,1,1 +1774026709.986327,0.30,4,3992.50,52.80,1620.92,2067.26,0.00,364.288930,1540.495406,39419,55467,0.000000,0.000020,891653,447455,0,0,3812,0,1,1 +1774026714.981865,0.55,4,3992.50,52.84,1621.51,2068.98,0.00,3521579985527.606445,3521579984350.269043,199,0,0.000000,0.000030,891653,447458,0,0,3815,0,1,1 +1774026719.986344,0.35,4,3992.50,52.86,1620.81,2069.68,0.00,0.000000,0.000000,199,0,0.000000,0.000020,891653,447460,0,0,3817,0,1,1 +1774026724.986837,0.60,4,3992.50,52.88,1620.07,2070.41,0.00,1.831655,0.000195,238,2,0.000000,0.000030,891653,447463,0,0,3820,0,1,1 +1774026729.986782,0.45,4,3992.50,52.72,1626.20,2064.30,0.00,3518476561634.192383,3518476561636.150879,70,0,0.000000,0.000020,891653,447465,0,0,3822,0,1,1 +1774026734.986589,0.40,4,3992.50,52.75,1625.21,2065.28,0.00,3518572814679.428223,0.000000,11,0,0.000000,0.000030,891653,447468,0,0,3825,0,1,1 +1774026739.983459,0.30,4,3992.50,52.77,1624.26,2066.23,0.00,368.550411,1541.442950,40177,55555,0.000000,0.000020,891653,447470,0,0,3827,0,1,1 +1774026744.983415,0.60,4,3992.50,52.96,1620.17,2073.36,0.00,3518468442663.116211,3518468441490.770508,199,0,0.000000,0.000030,891653,447473,0,0,3830,0,1,1 +1774026749.985919,0.40,4,3992.50,52.97,1619.45,2074.05,0.00,3516676248724.849609,0.000000,11,0,0.000000,0.000020,891653,447475,0,0,3832,0,1,1 +1774026754.986209,0.30,4,3992.50,52.97,1619.45,2074.05,0.00,1.491808,0.022069,221,21,0.000000,0.000030,891653,447478,0,0,3835,0,1,1 +1774026759.986788,0.30,4,3992.50,52.97,1619.45,2074.05,0.00,3518029678916.667480,3518029678917.960449,199,0,0.000000,0.000020,891653,447480,0,0,3837,0,1,1 +1774026764.986370,0.30,4,3992.50,52.97,1619.73,2073.77,0.00,1.315051,0.022072,221,21,0.000000,0.000030,891653,447483,0,0,3840,0,1,1 +1774026769.981963,0.25,4,3992.50,52.97,1619.50,2074.00,0.00,3521541117760.815430,3521541117762.236816,70,0,0.000000,0.000020,891653,447485,0,0,3842,0,1,1 +1774026774.985835,0.55,4,3992.50,53.07,1612.72,2077.66,0.00,3515714857974.598633,0.000000,11,0,0.000000,0.000030,891653,447488,0,0,3845,0,1,1 +1774026779.986253,0.30,4,3992.50,53.07,1612.73,2077.66,0.00,0.176938,0.000000,199,0,0.000000,0.000020,891653,447490,0,0,3847,0,1,1 +1774026784.986398,0.25,4,3992.50,53.07,1612.73,2077.65,0.00,0.000000,0.000000,199,0,0.000000,0.000066,891653,447494,0,0,3850,0,1,1 +1774026789.986427,0.35,4,3992.50,52.76,1624.74,2065.64,0.00,1.831825,0.000195,238,2,0.000000,0.000020,891653,447496,0,0,3852,0,1,1 +1774026794.986528,0.35,4,3992.50,52.76,1624.74,2065.64,0.00,362.242799,1540.566812,39419,55642,0.000000,0.000030,891653,447499,0,0,3855,0,1,1 +1774026799.985907,0.25,4,3992.50,52.78,1624.00,2066.38,0.00,4.061344,0.027738,40177,55670,0.000000,0.000020,891653,447501,0,0,3857,0,1,1 +1774026804.984009,0.55,4,3992.50,52.81,1622.78,2067.56,0.00,3519773440522.800781,3519773439348.040039,238,2,0.000000,0.000030,891653,447504,0,0,3860,0,1,1 +1774026809.984397,0.40,4,3992.50,52.83,1621.81,2068.54,0.00,3518164056512.945312,3518164056514.953613,11,0,0.000000,0.000020,891653,447506,0,0,3862,0,1,1 +1774026814.985164,0.30,4,3992.50,52.83,1621.81,2068.54,0.00,364.202994,1540.417895,39419,55682,0.000000,0.000030,891653,447509,0,0,3865,0,1,1 +1774026819.986038,0.30,4,3992.50,52.81,1622.55,2067.80,0.00,3517822585110.338379,3517822583934.148438,11,0,0.000000,0.000020,891653,447511,0,0,3867,0,1,1 +1774026824.986188,0.30,4,3992.50,52.83,1621.81,2068.54,0.00,0.000000,0.000000,11,0,0.000000,0.000030,891653,447514,0,0,3870,0,1,1 +1774026829.981879,0.25,4,3992.50,52.85,1621.07,2069.28,0.00,368.637423,1542.021122,40177,55720,0.000000,0.000020,891653,447516,0,0,3872,0,1,1 +1774026834.982064,0.65,4,3992.50,52.89,1616.55,2070.74,0.00,3518306978383.567383,3518306977209.768066,221,21,0.000000,0.000030,891653,447519,0,0,3875,0,1,1 +1774026839.981959,0.30,4,3992.50,52.92,1615.10,2071.91,0.00,3518510627532.043457,3518510627533.336914,199,0,0.000000,0.000020,891653,447521,0,0,3877,0,1,1 +1774026844.981891,0.25,4,3992.50,52.93,1614.86,2072.14,0.00,1.831861,0.000195,238,2,0.000000,0.000030,891653,447524,0,0,3880,0,1,1 +1774026849.983367,0.45,4,3992.50,52.85,1617.88,2069.12,0.00,3517398529537.352051,3517398529539.183594,199,0,0.000000,0.000020,891653,447526,0,0,3882,0,1,1 +1774026854.984981,0.30,4,3992.50,52.86,1617.45,2069.55,0.00,368.024014,1540.277180,40177,55789,0.000000,0.000030,891653,447529,0,0,3885,0,1,1 +1774026859.986176,0.35,4,3992.50,52.87,1617.21,2069.80,0.00,0.000000,0.003905,40177,55794,0.000000,0.000020,891653,447531,0,0,3887,0,1,1 +1774026864.986777,0.55,4,3992.50,52.97,1614.43,2073.74,0.00,3518014233102.672852,0.005859,39419,55788,0.000000,0.000030,891653,447534,0,0,3890,0,1,1 +1774026869.981892,0.30,4,3992.50,52.97,1614.31,2073.80,0.00,3521878213140.306152,3521878211960.620117,238,2,0.000000,0.000020,891653,447536,0,0,3892,0,1,1 +1774026874.982429,0.25,4,3992.50,52.97,1614.31,2073.80,0.00,0.000000,0.000000,238,2,0.000000,0.000030,891653,447539,0,0,3895,0,1,1 +1774026879.985910,0.35,4,3992.50,52.97,1614.31,2073.80,0.00,3515989616700.712891,3515989616702.543457,199,0,0.000000,0.000020,891653,447541,0,0,3897,0,1,1 +1774026884.984408,0.25,4,3992.50,52.97,1614.18,2073.94,0.00,1.315337,0.022077,221,21,0.000000,0.000030,891653,447544,0,0,3900,0,1,1 +1774026889.986488,0.30,4,3992.50,52.97,1614.18,2073.94,0.00,3516974099825.333496,3516974099826.802734,11,0,0.000000,0.000020,891653,447546,0,0,3902,0,1,1 +1774026894.985743,0.55,4,3992.50,52.99,1612.92,2074.82,0.00,1.492117,0.022074,221,21,0.000000,0.000030,891653,447549,0,0,3905,0,1,1 +1774026899.982996,0.35,4,3992.50,52.99,1613.05,2074.55,0.00,3520371460082.667969,3520371460084.138672,11,0,0.000000,0.000020,891653,447551,0,0,3907,0,1,1 +1774026904.985467,0.65,4,3992.50,52.99,1613.07,2074.53,0.00,0.049975,0.000000,70,0,0.000000,0.000030,891653,447554,0,0,3910,0,1,1 +1774026909.981888,0.40,4,3992.50,52.98,1613.24,2074.36,0.00,3520957440504.105469,0.000000,11,0,0.000000,0.000020,891653,447556,0,0,3912,0,1,1 +1774026914.981863,0.35,4,3992.50,52.98,1613.24,2074.36,0.00,0.000000,0.000000,11,0,0.000000,0.000030,891653,447559,0,0,3915,0,1,1 +1774026919.984438,0.30,4,3992.50,52.98,1613.24,2074.36,0.00,368.130135,1540.197402,40177,55971,0.000000,0.000020,891653,447561,0,0,3917,0,1,1 +1774026924.986606,0.55,4,3992.50,53.07,1609.75,2078.00,0.00,3516912803365.136230,3516912802191.503906,221,21,0.000205,0.000562,891660,447575,0,0,3920,0,1,1 +1774026929.985579,0.50,4,3992.50,53.07,1609.77,2078.00,0.00,3519160153471.373047,3519160153472.666016,199,0,0.000623,0.001137,891675,447600,0,0,3922,0,1,1 +1774026934.986304,0.30,4,3992.50,53.07,1609.77,2078.00,0.00,0.000000,0.000000,199,0,0.001126,0.001231,891684,447617,0,0,3925,0,1,1 +1774026939.986791,0.40,4,3992.50,53.09,1609.33,2078.43,0.00,1.831657,0.000195,238,2,0.001109,0.000635,891706,447633,0,0,3927,0,1,1 +1774026944.986107,0.50,4,3992.50,53.09,1609.33,2078.43,0.00,0.000000,0.000000,238,2,0.001734,0.001361,891731,447652,0,0,3930,0,1,1 +1774026949.985388,0.40,4,3992.50,53.09,1609.33,2078.43,0.00,3518943439863.209473,0.021878,221,21,0.000000,0.000020,891731,447654,0,0,3932,0,1,1 +1774026954.981883,0.50,4,3992.50,53.28,1601.74,2086.02,0.00,3520904953420.896973,3520904953422.190918,199,0,0.000000,0.000030,891731,447657,0,0,3935,0,1,1 +1774026959.986420,0.35,4,3992.50,53.22,1604.02,2083.74,0.00,3515247162157.183105,0.000000,11,0,0.000000,0.000020,891731,447659,0,0,3937,0,1,1 +1774026964.981893,0.30,4,3992.50,53.08,1609.65,2078.11,0.00,0.050045,0.000000,70,0,0.000000,0.000030,891731,447662,0,0,3940,0,1,1 +1774026969.984890,0.40,4,3992.50,52.85,1618.72,2069.04,0.00,363.990681,1540.176303,39419,56048,0.000031,0.000045,891733,447666,0,0,3942,0,1,1 +1774026974.986619,0.30,4,3992.50,52.88,1617.50,2070.27,0.00,3517221216510.468750,3517221215333.984863,70,0,0.000062,0.000080,891737,447673,0,0,3945,0,1,1 +1774026979.985948,0.35,4,3992.50,52.69,1624.78,2062.98,0.00,0.000000,0.000000,70,0,0.000031,0.000045,891739,447677,0,0,3947,0,1,1 +1774026984.981955,0.65,4,3992.50,52.84,1619.56,2068.84,0.00,1.443047,0.022088,221,21,0.000058,0.000100,891744,447685,0,0,3950,0,1,1 +1774026989.982281,0.30,4,3992.50,52.88,1617.74,2070.54,0.00,3518207272927.229004,3518207272928.648438,70,0,0.000050,0.000082,891748,447691,0,0,3952,0,1,1 +1774026994.986697,0.30,4,3992.50,52.89,1617.52,2070.76,0.00,3515332787563.523926,0.000000,11,0,0.000000,0.000030,891748,447694,0,0,3955,0,1,1 +1774026999.986023,0.30,4,3992.50,52.92,1616.29,2071.98,0.00,0.050007,0.000000,70,0,0.000000,0.000020,891748,447696,0,0,3957,0,1,1 +1774027004.984416,0.35,4,3992.50,52.93,1616.06,2072.22,0.00,1.442358,0.022077,221,21,0.000000,0.000030,891748,447699,0,0,3960,0,1,1 +1774027009.981948,0.35,4,3992.50,52.93,1616.06,2072.22,0.00,3520174562875.869141,3520174562877.290039,70,0,0.000000,0.000020,891748,447701,0,0,3962,0,1,1 +1774027014.985685,0.65,4,3992.50,53.02,1616.63,2075.87,0.00,0.126858,0.000000,199,0,0.000000,0.000030,891748,447704,0,0,3965,0,1,1 +1774027019.985970,0.35,4,3992.50,53.05,1615.39,2077.10,0.00,3518236371767.084961,0.000000,70,0,0.000000,0.000020,891748,447706,0,0,3967,0,1,1 +1774027024.986199,0.40,4,3992.50,53.05,1615.52,2076.97,0.00,0.000000,0.000000,70,0,0.000000,0.000030,891748,447709,0,0,3970,0,1,1 +1774027029.982034,0.35,4,3992.50,52.88,1621.96,2070.52,0.00,364.512529,1542.552539,39419,56186,0.000000,0.000020,891748,447711,0,0,3972,0,1,1 +1774027034.986525,0.30,4,3992.50,52.92,1620.75,2071.74,0.00,3515280053948.169922,3515280052772.040527,199,0,0.000000,0.000030,891748,447714,0,0,3975,0,1,1 +1774027039.983171,0.30,4,3992.50,52.92,1620.75,2071.74,0.00,3520799091183.004883,0.000000,70,0,0.000000,0.000020,891748,447716,0,0,3977,0,1,1 +1774027044.985765,0.60,4,3992.50,53.10,1614.92,2079.08,0.00,368.078725,1540.560736,40177,56252,0.000000,0.000030,891748,447719,0,0,3980,0,1,1 +1774027049.982637,0.30,4,3992.50,53.11,1614.67,2079.30,0.00,3520640006779.140137,3520640005605.314941,70,0,0.000000,0.000020,891748,447721,0,0,3982,0,1,1 +1774027054.981881,0.30,4,3992.50,53.11,1614.67,2079.30,0.00,0.000000,0.000000,70,0,0.000000,0.000030,891748,447724,0,0,3985,0,1,1 +1774027059.986032,0.30,4,3992.50,52.99,1619.38,2074.59,0.00,0.126848,0.000000,199,0,0.000000,0.000020,891748,447726,0,0,3987,0,1,1 +1774027064.981882,0.40,4,3992.50,53.02,1617.93,2076.04,0.00,368.448524,1542.670782,40177,56285,0.000000,0.000030,891748,447729,0,0,3990,0,1,1 +1774027069.981955,0.30,4,3992.50,52.99,1619.11,2074.86,0.00,3518385822491.951660,3518385821316.889160,238,2,0.000000,0.000020,891748,447731,0,0,3992,0,1,1 +1774027074.986533,0.70,4,3992.50,53.23,1610.08,2083.94,0.00,3515218876954.059570,3515218876956.066406,11,0,0.000000,0.000030,891748,447734,0,0,3995,0,1,1 +1774027079.981870,0.20,4,3992.50,53.24,1609.34,2084.64,0.00,368.663521,1542.867695,40177,56313,0.000000,0.000020,891748,447736,0,0,3997,0,1,1 +1774027084.981955,0.30,4,3992.50,53.25,1609.10,2084.89,0.00,3518377841518.208984,3518377840345.119629,11,0,0.000000,0.000030,891748,447739,0,0,4000,0,1,1 +1774027089.984479,0.35,4,3992.50,53.23,1609.82,2084.17,0.00,2.007775,0.000195,238,2,0.000000,0.000020,891748,447741,0,0,4002,0,1,1 +1774027094.981981,0.25,4,3992.50,53.24,1609.58,2084.41,0.00,0.000000,0.000000,238,2,0.000000,0.000030,891748,447744,0,0,4005,0,1,1 +1774027099.985536,0.30,4,3992.50,53.24,1609.33,2084.66,0.00,361.992761,1540.356733,39419,56331,0.000000,0.000020,891748,447746,0,0,4007,0,1,1 +1774027104.986800,0.50,4,3992.50,53.24,1601.36,2084.61,0.00,0.000000,0.032023,39419,56348,0.000000,0.000043,891748,447750,0,0,4010,0,1,1 +1774027109.986195,0.40,4,3992.50,53.28,1600.10,2085.89,0.00,0.000000,0.010157,39419,56359,0.000000,0.000020,891748,447752,0,0,4012,0,1,1 +1774027114.986617,0.45,4,3992.50,53.28,1599.89,2086.11,0.00,4.060497,0.028513,40177,56388,0.000000,0.000030,891748,447755,0,0,4015,0,1,1 +1774027119.986760,0.25,4,3992.50,53.28,1599.89,2086.11,0.00,3518336373358.678223,3518336373362.722168,39419,56370,0.000000,0.000020,891748,447757,0,0,4017,0,1,1 +1774027124.986441,0.20,4,3992.50,53.29,1599.65,2086.34,0.00,4.061099,0.026174,40177,56398,0.000000,0.000030,891748,447760,0,0,4020,0,1,1 +1774027129.983683,0.40,4,3992.50,53.28,1599.94,2086.05,0.00,0.000000,0.006253,40177,56404,0.000000,0.000020,891748,447762,0,0,4022,0,1,1 +1774027134.981961,0.60,4,3992.50,53.10,1606.10,2079.01,0.00,3519649751788.166016,3519649750614.366699,199,0,0.000000,0.000030,891748,447765,0,0,4025,0,1,1 +1774027139.981882,0.30,4,3992.50,53.10,1606.13,2079.00,0.00,368.148595,1541.592346,40177,56425,0.000000,0.000020,891748,447767,0,0,4027,0,1,1 +1774027144.981957,0.35,4,3992.50,53.11,1605.92,2079.22,0.00,0.000000,0.010937,40177,56437,0.000000,0.000030,891748,447770,0,0,4030,0,1,1 +1774027149.986192,0.40,4,3992.50,52.80,1618.04,2067.11,0.00,3515459715042.645508,3515459715046.701172,39419,56430,0.000000,0.000020,891748,447772,0,0,4032,0,1,1 +1774027154.985620,0.35,4,3992.50,52.80,1617.79,2067.35,0.00,3518839382302.086914,3518839381124.634277,11,0,0.000000,0.000030,891748,447775,0,0,4035,0,1,1 +1774027159.986133,0.25,4,3992.50,52.85,1616.07,2069.07,0.00,2.008583,0.000195,238,2,0.000000,0.000020,891748,447777,0,0,4037,0,1,1 +1774027164.986015,0.55,4,3992.50,52.98,1609.23,2074.44,0.00,3518520033435.370605,3518520033437.379395,11,0,0.000000,0.000030,891748,447780,0,0,4040,0,1,1 +1774027169.985842,0.30,4,3992.50,52.96,1610.09,2073.58,0.00,364.271479,1541.703686,39419,56482,0.000000,0.000020,891748,447782,0,0,4042,0,1,1 +1774027174.984885,0.35,4,3992.50,52.96,1610.10,2073.57,0.00,3519111461829.336914,3519111460651.542480,199,0,0.000000,0.000030,891748,447785,0,0,4045,0,1,1 +1774027179.981977,0.25,4,3992.50,52.97,1609.85,2073.82,0.00,1.832902,0.000195,238,2,0.000000,0.000020,891748,447787,0,0,4047,0,1,1 +1774027184.982056,0.40,4,3992.50,52.97,1609.63,2074.04,0.00,0.000000,0.000000,238,2,0.000000,0.000030,891748,447790,0,0,4050,0,1,1 +1774027189.981946,0.35,4,3992.50,52.98,1609.39,2074.28,0.00,3518514716835.974121,0.021875,221,21,0.000000,0.000020,891748,447792,0,0,4052,0,1,1 +1774027194.982262,0.55,4,3992.50,53.06,1606.62,2077.48,0.00,3518214485499.132324,3518214485500.602051,11,0,0.000000,0.000030,891748,447795,0,0,4055,0,1,1 +1774027199.986629,0.35,4,3992.50,53.01,1608.67,2075.30,0.00,0.049956,0.000000,70,0,0.000000,0.000020,891748,447797,0,0,4057,0,1,1 +1774027204.986301,0.55,4,3992.50,53.04,1607.46,2076.52,0.00,1.441989,0.022072,221,21,0.000000,0.000030,891748,447800,0,0,4060,0,1,1 +1774027209.986086,0.40,4,3992.50,53.03,1607.80,2076.18,0.00,366.843612,1541.859877,40177,56619,0.000000,0.000020,891748,447802,0,0,4062,0,1,1 +1774027214.985902,0.30,4,3992.50,53.06,1606.46,2077.52,0.00,3518566314565.124023,3518566313391.408203,199,0,0.000000,0.000030,891748,447805,0,0,4065,0,1,1 +1774027219.982836,0.25,4,3992.50,53.06,1606.46,2077.52,0.00,3520596583696.546875,0.000000,70,0,0.000000,0.000020,891748,447807,0,0,4067,0,1,1 +1774027224.983246,0.65,4,3992.50,53.25,1598.94,2085.04,0.00,368.239465,1541.733457,40177,56646,0.001126,0.001231,891757,447824,0,0,4070,0,1,1 +1774027229.985871,0.50,4,3992.50,53.13,1603.75,2080.21,0.00,3516591394704.170410,3516591393531.245605,11,0,0.000623,0.001137,891772,447849,0,0,4072,0,1,1 +1774027234.984669,0.25,4,3992.50,53.14,1603.50,2080.46,0.00,364.346472,1542.229720,39419,56645,0.000205,0.000562,891779,447863,0,0,4075,0,1,1 +1774027239.981969,0.50,4,3992.50,53.16,1602.82,2081.14,0.00,3520338247498.179199,3520338246319.765625,199,0,0.001780,0.001558,891804,447881,0,0,4077,0,1,1 +1774027244.984497,0.40,4,3992.50,53.16,1602.59,2081.37,0.00,0.000000,0.000000,199,0,0.001064,0.000439,891826,447898,0,0,4080,0,1,1 +1774027249.986097,0.25,4,3992.50,53.16,1602.59,2081.37,0.00,1.314521,0.022063,221,21,0.000000,0.000020,891826,447900,0,0,4082,0,1,1 +1774027254.986198,0.60,4,3992.50,53.36,1595.25,2089.00,0.00,3518366194882.153809,3518366194883.573730,70,0,0.000000,0.000030,891826,447903,0,0,4085,0,1,1 +1774027259.986735,0.45,4,3992.50,53.16,1602.50,2081.45,0.00,1.958579,0.000195,238,2,0.000000,0.000020,891826,447905,0,0,4087,0,1,1 +1774027264.982133,0.50,4,3992.50,53.17,1602.26,2081.70,0.00,3521678250226.392578,3521678250228.353027,70,0,0.000000,0.000030,891826,447908,0,0,4090,0,1,1 +1774027269.986002,0.35,4,3992.50,52.98,1609.66,2074.29,0.00,3515716537186.826172,0.000000,11,0,0.000031,0.000045,891828,447912,0,0,4092,0,1,1 +1774027274.986162,0.30,4,3992.50,52.98,1609.66,2074.29,0.00,0.049998,0.000000,70,0,0.000070,0.000088,891833,447920,0,0,4095,0,1,1 +1774027279.982447,0.35,4,3992.50,52.98,1609.66,2074.29,0.00,3521053773659.220703,0.000000,11,0,0.000031,0.000045,891835,447924,0,0,4097,0,1,1 +1774027284.985891,0.55,4,3992.50,53.24,1604.05,2084.38,0.00,0.000000,0.000000,11,0,0.000050,0.000092,891839,447931,0,0,4100,0,1,1 +1774027289.986013,0.30,4,3992.50,53.24,1604.11,2084.33,0.00,1.491858,0.022070,221,21,0.000050,0.000082,891843,447937,0,0,4102,0,1,1 +1774027294.986264,0.55,4,3992.50,53.26,1603.37,2085.07,0.00,0.000000,0.000000,221,21,0.000000,0.000030,891843,447940,0,0,4105,0,1,1 +1774027299.985990,0.35,4,3992.50,53.26,1603.37,2085.07,0.00,3518629781378.515137,3518629781379.935547,70,0,0.000000,0.000020,891843,447942,0,0,4107,0,1,1 +1774027304.986663,0.35,4,3992.50,53.26,1603.14,2085.30,0.00,3517964201710.001953,0.000000,11,0,0.000000,0.000030,891843,447945,0,0,4110,0,1,1 +1774027309.985998,0.30,4,3992.50,53.21,1605.08,2083.36,0.00,0.000000,0.000000,11,0,0.000000,0.000020,891843,447947,0,0,4112,0,1,1 +1774027314.987029,0.60,4,3992.50,53.34,1603.34,2088.20,0.00,2.008375,0.000195,238,2,0.000000,0.000030,891843,447950,0,0,4115,0,1,1 +1774027319.982414,0.25,4,3992.50,53.34,1603.21,2088.20,0.00,3521687854960.935059,3521687854962.768555,199,0,0.000000,0.000020,891843,447952,0,0,4117,0,1,1 +1774027324.986599,0.30,4,3992.50,53.35,1602.47,2088.93,0.00,367.834864,1540.792257,40177,56828,0.000000,0.000030,891843,447955,0,0,4120,0,1,1 +1774027329.981954,0.35,4,3992.50,53.35,1602.71,2088.69,0.00,0.000000,0.003128,40177,56832,0.000000,0.000020,891843,447957,0,0,4122,0,1,1 +1774027334.986486,0.25,4,3992.50,53.35,1602.71,2088.69,0.00,3515250943579.658691,3515250942406.956055,11,0,0.000000,0.000030,891843,447960,0,0,4125,0,1,1 +1774027339.982661,0.30,4,3992.50,53.35,1602.71,2088.69,0.00,0.000000,0.000000,11,0,0.000000,0.000020,891843,447962,0,0,4127,0,1,1 +1774027344.986012,0.65,4,3992.50,53.37,1603.21,2089.62,0.00,0.000000,0.000000,11,0,0.000000,0.000030,891843,447965,0,0,4130,0,1,1 +1774027349.986711,0.40,4,3992.50,53.38,1602.95,2089.84,0.00,0.049993,0.000000,70,0,0.000000,0.000020,891843,447967,0,0,4132,0,1,1 +1774027354.986799,0.40,4,3992.50,53.38,1602.95,2089.84,0.00,368.263281,1542.134728,40177,56891,0.000000,0.000030,891843,447970,0,0,4135,0,1,1 +1774027359.986731,0.25,4,3992.50,53.38,1602.95,2089.84,0.00,3518484501170.766113,3518484499994.899414,238,2,0.000000,0.000020,891843,447972,0,0,4137,0,1,1 +1774027364.984491,0.35,4,3992.50,53.38,1602.95,2089.84,0.00,366.475129,1542.859017,40177,56899,0.000013,0.000030,891844,447975,0,0,4140,0,1,1 +1774027369.986763,0.30,4,3992.50,53.38,1602.71,2090.08,0.00,3516839017598.458496,3516839016425.143555,11,0,0.000000,0.000020,891844,447977,0,0,4142,0,1,1 +1774027374.986766,0.55,4,3992.50,53.48,1598.52,2094.00,0.00,1.491894,0.022070,221,21,0.000000,0.000030,891844,447980,0,0,4145,0,1,1 +1774027379.984490,0.40,4,3992.50,53.45,1599.74,2092.75,0.00,3520039737948.936035,3520039737950.229492,199,0,0.000000,0.000020,891844,447982,0,0,4147,0,1,1 +1774027384.984341,0.40,4,3992.50,53.45,1599.77,2092.75,0.00,0.000000,0.000000,199,0,0.000000,0.000030,891844,447985,0,0,4150,0,1,1 +1774027389.982645,0.45,4,3992.50,53.41,1601.40,2091.12,0.00,1.832458,0.000195,238,2,0.000000,0.000020,891844,447987,0,0,4152,0,1,1 +1774027394.985655,0.25,4,3992.50,53.43,1600.66,2091.86,0.00,3516320939254.468750,3516320939256.476074,11,0,0.000000,0.000030,891844,447990,0,0,4155,0,1,1 +1774027399.986438,0.40,4,3992.50,53.43,1600.66,2091.86,0.00,0.000000,0.000000,11,0,0.000000,0.000020,891844,447992,0,0,4157,0,1,1 +1774027404.984967,0.55,4,3992.50,53.43,1600.47,2092.04,0.00,2.009380,0.000195,238,2,0.000000,0.000030,891844,447995,0,0,4160,0,1,1 +1774027409.985178,0.40,4,3992.50,53.43,1600.48,2092.04,0.00,3518289121278.937012,0.021874,221,21,0.000000,0.000020,891844,447997,0,0,4162,0,1,1 +1774027414.981954,0.30,4,3992.50,53.40,1601.73,2090.79,0.00,3520707223591.948730,3520707223593.369629,70,0,0.000000,0.000030,891844,448000,0,0,4165,0,1,1 +1774027419.982518,0.30,4,3992.50,53.41,1601.25,2091.27,0.00,364.167820,1542.109301,39419,56985,0.000000,0.000020,891844,448002,0,0,4167,0,1,1 +1774027424.981958,0.35,4,3992.50,53.43,1600.52,2092.00,0.00,4.061295,0.026175,40177,57013,0.000000,0.000030,891844,448005,0,0,4170,0,1,1 +1774027429.981964,0.25,4,3992.50,53.50,1598.05,2094.46,0.00,3518433208760.185547,3518433207586.020508,199,0,0.000000,0.000020,891844,448007,0,0,4172,0,1,1 +1774027434.985810,0.50,4,3992.50,53.30,1609.50,2086.80,0.00,0.000000,0.000000,199,0,0.000000,0.000030,891844,448010,0,0,4175,0,1,1 +1774027439.981959,0.35,4,3992.50,53.31,1608.49,2087.01,0.00,3521148917495.824707,0.000000,11,0,0.000000,0.000020,891844,448012,0,0,4177,0,1,1 +1774027444.982018,0.30,4,3992.50,53.31,1608.28,2087.23,0.00,2.008766,0.000195,238,2,0.000000,0.000030,891844,448015,0,0,4180,0,1,1 +1774027449.985021,0.40,4,3992.50,53.30,1608.57,2086.94,0.00,3516325078994.118652,3516325078995.949707,199,0,0.000000,0.000020,891844,448017,0,0,4182,0,1,1 +1774027454.986441,0.30,4,3992.50,53.30,1608.57,2086.94,0.00,3517438320417.401855,0.000000,11,0,0.000000,0.000030,891844,448020,0,0,4185,0,1,1 +1774027459.984243,0.30,4,3992.50,53.31,1608.32,2087.18,0.00,1.492551,0.022080,221,21,0.000000,0.000020,891844,448022,0,0,4187,0,1,1 +1774027464.986160,0.60,4,3992.50,53.34,1604.83,2088.37,0.00,366.687250,1541.819633,40177,57108,0.000000,0.000030,891844,448025,0,0,4190,0,1,1 +1774027469.986266,0.40,4,3992.50,53.36,1603.60,2089.11,0.00,3518362903505.098633,3518362902330.960449,70,0,0.000000,0.000020,891844,448027,0,0,4192,0,1,1 +1774027474.986840,0.30,4,3992.50,53.36,1603.60,2089.11,0.00,3518033114934.649414,0.000000,11,0,0.000000,0.000030,891844,448030,0,0,4195,0,1,1 +1774027479.981885,0.35,4,3992.50,53.36,1603.61,2089.10,0.00,364.620249,1543.961806,39419,57108,0.000000,0.000020,891844,448032,0,0,4197,0,1,1 +1774027484.985747,0.30,4,3992.50,53.37,1603.00,2089.70,0.00,0.000000,0.003123,39419,57112,0.000000,0.000030,891844,448035,0,0,4200,0,1,1 +1774027489.981958,0.40,4,3992.50,53.39,1602.27,2090.44,0.00,4.063920,0.026192,40177,57140,0.000000,0.000020,891844,448037,0,0,4202,0,1,1 +1774027494.981882,0.60,4,3992.50,53.44,1599.03,2092.34,0.00,3518490361645.076172,3518490360470.916992,11,0,0.000000,0.000030,891844,448040,0,0,4205,0,1,1 +1774027499.982048,0.35,4,3992.50,53.44,1599.03,2092.34,0.00,0.000000,0.000000,11,0,0.000000,0.000020,891844,448042,0,0,4207,0,1,1 +1774027504.986524,0.60,4,3992.50,53.45,1598.81,2092.56,0.00,2.006992,0.000195,238,2,0.000000,0.000030,891844,448045,0,0,4210,0,1,1 +1774027509.985662,0.40,4,3992.50,53.39,1601.06,2090.31,0.00,366.374144,1542.819096,40177,57208,0.000000,0.000020,891844,448047,0,0,4212,0,1,1 +1774027514.986635,0.35,4,3992.50,53.42,1599.83,2091.54,0.00,3517752178340.930664,3517752177166.875977,70,0,0.000000,0.000030,891844,448050,0,0,4215,0,1,1 +1774027519.986434,0.30,4,3992.50,53.44,1599.09,2092.28,0.00,0.000000,0.000000,70,0,0.000000,0.000020,891844,448052,0,0,4217,0,1,1 +1774027524.984498,0.60,4,3992.50,53.50,1596.39,2094.82,0.00,0.127002,0.000000,199,0,0.000205,0.000562,891851,448066,0,0,4220,0,1,1 +1774027529.984981,0.50,4,3992.50,53.55,1594.70,2096.51,0.00,368.107220,1542.470554,40177,57255,0.002467,0.002476,891870,448097,0,0,4222,0,1,1 +1774027534.986427,0.30,4,3992.50,53.55,1594.71,2096.51,0.00,3517419678094.708008,3517419676920.697754,70,0,0.000205,0.000562,891877,448111,0,0,4225,0,1,1 +1774027539.986247,0.50,4,3992.50,53.55,1594.71,2096.51,0.00,368.282990,1542.697747,40177,57275,0.001779,0.001557,891902,448129,0,0,4227,0,1,1 +1774027544.984516,0.45,4,3992.50,53.55,1594.71,2096.51,0.00,3519655892185.283203,3519655891008.544434,238,2,0.001735,0.001361,891927,448148,0,0,4230,0,1,1 +1774027549.986909,0.25,4,3992.50,53.55,1594.71,2096.51,0.00,3516753853457.716797,3516753853459.724609,11,0,0.000000,0.000020,891927,448150,0,0,4232,0,1,1 +1774027554.981994,0.60,4,3992.50,53.55,1592.56,2096.50,0.00,1.493362,0.022092,221,21,0.000000,0.000030,891927,448153,0,0,4235,0,1,1 +1774027559.981882,0.30,4,3992.50,53.56,1592.13,2096.93,0.00,3518516730878.393066,3518516730879.812988,70,0,0.000000,0.000020,891927,448155,0,0,4237,0,1,1 +1774027564.985961,0.30,4,3992.50,53.56,1592.13,2096.93,0.00,1.957192,0.000195,238,2,0.000000,0.000030,891927,448158,0,0,4240,0,1,1 +1774027569.985418,0.40,4,3992.50,53.23,1605.16,2083.90,0.00,3518819474427.317871,3518819474429.276367,70,0,0.000031,0.000045,891929,448162,0,0,4242,0,1,1 +1774027574.986101,0.35,4,3992.50,53.24,1604.42,2084.64,0.00,368.219418,1542.521283,40177,57348,0.000062,0.000080,891933,448169,0,0,4245,0,1,1 +1774027579.986785,0.30,4,3992.50,53.25,1604.18,2084.88,0.00,3517955951437.132812,3517955950262.880859,11,0,0.000039,0.000053,891936,448174,0,0,4247,0,1,1 +1774027584.986100,0.55,4,3992.50,53.35,1600.29,2088.77,0.00,1.492099,0.022073,221,21,0.000050,0.000092,891940,448181,0,0,4250,0,1,1 +1774027589.981961,0.45,4,3992.50,53.36,1600.03,2089.01,0.00,3521352030561.658691,3521352030563.129883,11,0,0.000050,0.000082,891944,448187,0,0,4252,0,1,1 +1774027594.986016,0.25,4,3992.50,53.36,1600.03,2089.01,0.00,0.000000,0.000000,11,0,0.000000,0.000030,891944,448190,0,0,4255,0,1,1 +1774027599.986639,0.35,4,3992.50,53.36,1600.03,2089.00,0.00,368.273863,1542.593828,40177,57391,0.000000,0.000020,891944,448192,0,0,4257,0,1,1 +1774027604.981977,0.40,4,3992.50,53.36,1600.03,2089.00,0.00,0.000000,0.003128,40177,57395,0.000000,0.000030,891944,448195,0,0,4260,0,1,1 +1774027609.985949,0.30,4,3992.50,53.36,1600.04,2089.00,0.00,3515644149134.552734,3515644149138.588379,39419,57372,0.000000,0.000020,891944,448197,0,0,4262,0,1,1 +1774027614.986040,0.55,4,3992.50,53.49,1596.96,2094.37,0.00,3518373445036.996094,3518373443858.509766,11,0,0.000000,0.000030,891944,448200,0,0,4265,0,1,1 +1774027619.986185,0.45,4,3992.50,53.30,1604.46,2086.73,0.00,0.049999,0.000000,70,0,0.000000,0.000020,891944,448202,0,0,4267,0,1,1 +1774027624.986654,0.30,4,3992.50,53.32,1603.48,2087.71,0.00,0.126941,0.000000,199,0,0.000000,0.000030,891944,448205,0,0,4270,0,1,1 +1774027629.981952,0.35,4,3992.50,53.17,1609.64,2081.54,0.00,1.316179,0.022091,221,21,0.000000,0.000020,891944,448207,0,0,4272,0,1,1 +1774027634.986608,0.30,4,3992.50,53.17,1609.65,2081.54,0.00,0.516414,3515164183971.888184,238,2,0.000000,0.000030,891944,448210,0,0,4275,0,1,1 +1774027639.986579,0.35,4,3992.50,53.17,1609.65,2081.54,0.00,3518457527269.896484,3518457527271.728516,199,0,0.000000,0.000020,891944,448212,0,0,4277,0,1,1 +1774027644.983692,0.60,4,3992.50,53.45,1601.96,2092.85,0.00,1.315701,0.022083,221,21,0.000000,0.000030,891944,448215,0,0,4280,0,1,1 +1774027649.981964,0.30,4,3992.50,53.47,1601.26,2093.55,0.00,0.517073,3519653688485.329590,238,2,0.000000,0.000020,891944,448217,0,0,4282,0,1,1 +1774027654.986319,0.30,4,3992.50,53.47,1601.26,2093.55,0.00,0.000000,0.000000,238,2,0.000000,0.000030,891944,448220,0,0,4285,0,1,1 +1774027659.986659,0.30,4,3992.50,53.50,1600.28,2094.53,0.00,3518198174757.162598,3518198174759.170898,11,0,0.000000,0.000020,891944,448222,0,0,4287,0,1,1 +1774027664.981923,0.35,4,3992.50,53.50,1600.28,2094.53,0.00,364.604229,1544.364731,39419,57482,0.000000,0.000030,891944,448225,0,0,4290,0,1,1 +1774027669.986501,0.30,4,3992.50,53.42,1603.44,2091.38,0.00,3515218198775.774902,3515218197598.033691,199,0,0.000000,0.000020,891944,448227,0,0,4292,0,1,1 +1774027674.985926,0.50,4,3992.50,53.46,1601.12,2093.08,0.00,3518842268446.741211,0.000000,70,0,0.000000,0.000030,891944,448230,0,0,4295,0,1,1 +1774027679.984483,0.40,4,3992.50,53.47,1600.69,2093.52,0.00,1.442311,0.022077,221,21,0.000000,0.000020,891944,448232,0,0,4297,0,1,1 +1774027684.983841,0.25,4,3992.50,53.47,1600.69,2093.52,0.00,3518889000448.031250,3518889000449.500977,11,0,0.000000,0.000030,891944,448235,0,0,4300,0,1,1 +1774027689.986650,0.50,4,3992.50,53.48,1600.23,2093.98,0.00,368.112927,1542.217984,40177,57567,0.000000,0.000020,891944,448237,0,0,4302,0,1,1 +1774027694.985858,0.30,4,3992.50,53.48,1600.29,2093.92,0.00,3518994384972.007324,3518994383796.879883,199,0,0.000000,0.000030,891944,448240,0,0,4305,0,1,1 +1774027699.985966,0.30,4,3992.50,53.48,1600.29,2093.92,0.00,3518361312903.797852,0.000000,11,0,0.000000,0.000020,891944,448242,0,0,4307,0,1,1 +1774027704.985660,0.60,4,3992.50,53.50,1598.98,2094.62,0.00,1.491986,0.022072,221,21,0.000000,0.000030,891944,448245,0,0,4310,0,1,1 +1774027709.981891,0.35,4,3992.50,53.51,1598.83,2094.85,0.00,3521091626057.110840,3521091626058.582031,11,0,0.000000,0.000020,891944,448247,0,0,4312,0,1,1 +1774027714.982112,0.35,4,3992.50,53.51,1598.83,2094.85,0.00,0.049998,0.000000,70,0,0.000000,0.000030,891944,448250,0,0,4315,0,1,1 +1774027719.981883,0.30,4,3992.50,53.51,1598.83,2094.85,0.00,3518598552812.350098,0.000000,11,0,0.000000,0.000020,891944,448252,0,0,4317,0,1,1 +1774027724.985801,0.30,4,3992.50,53.51,1598.83,2094.84,0.00,0.049961,0.000000,70,0,0.000000,0.000030,891944,448255,0,0,4320,0,1,1 +1774027729.986570,0.25,4,3992.50,53.51,1598.83,2094.84,0.00,364.152871,1542.927115,39419,57629,0.000000,0.000020,891944,448257,0,0,4322,0,1,1 +1774027734.986144,0.70,4,3992.50,53.60,1594.40,2098.51,0.00,3518737324440.509766,3518737323261.326660,199,0,0.000000,0.000030,891944,448260,0,0,4325,0,1,1 +1774027739.984025,0.30,4,3992.50,53.60,1594.25,2098.46,0.00,3519928901952.736816,0.000000,11,0,0.000000,0.000020,891944,448262,0,0,4327,0,1,1 +1774027744.986256,0.35,4,3992.50,53.60,1594.00,2098.71,0.00,364.096388,1542.516643,39419,57660,0.000000,0.000030,891944,448265,0,0,4330,0,1,1 +1774027749.981892,0.40,4,3992.50,53.36,1603.52,2089.19,0.00,4.064387,0.036360,40177,57693,0.000000,0.000020,891944,448267,0,0,4332,0,1,1 +1774027754.986260,0.25,4,3992.50,53.30,1605.94,2086.78,0.00,0.000000,0.028881,40177,57717,0.000000,0.000030,891944,448270,0,0,4335,0,1,1 +1774027759.983655,0.40,4,3992.50,53.30,1605.94,2086.78,0.00,3520271080357.162598,3520271079181.599121,11,0,0.000000,0.000020,891944,448272,0,0,4337,0,1,1 +1774027764.985854,0.60,4,3992.50,53.49,1598.36,2094.36,0.00,364.098753,1542.607095,39419,57716,0.000000,0.000030,891944,448275,0,0,4340,0,1,1 +1774027769.982785,0.45,4,3992.50,53.46,1599.52,2093.20,0.00,4.063334,0.034005,40177,57753,0.000000,0.000020,891944,448277,0,0,4342,0,1,1 +1774027774.986228,0.30,4,3992.50,53.46,1599.76,2092.95,0.00,3516016330010.398438,3516016328836.206543,11,0,0.000000,0.000030,891944,448280,0,0,4345,0,1,1 +1774027779.981879,0.30,4,3992.50,53.51,1597.58,2095.14,0.00,0.000000,0.000000,11,0,0.000000,0.000020,891944,448282,0,0,4347,0,1,1 +1774027784.985927,0.30,4,3992.50,53.51,1597.58,2095.13,0.00,2.007164,0.000195,238,2,0.000000,0.000030,891944,448285,0,0,4350,0,1,1 +1774027789.986110,0.30,4,3992.50,53.50,1598.08,2094.63,0.00,362.236812,1543.255311,39419,57748,0.000000,0.000020,891944,448287,0,0,4352,0,1,1 +1774027794.981968,0.55,4,3992.50,53.68,1593.14,2101.74,0.00,3521354437276.322754,3521354436096.114746,199,0,0.000000,0.000030,891944,448290,0,0,4355,0,1,1 +1774027799.983982,0.40,4,3992.50,53.70,1592.36,2102.44,0.00,3517020145194.202148,0.000000,11,0,0.000000,0.000020,891944,448292,0,0,4357,0,1,1 +1774027804.981899,0.55,4,3992.50,53.70,1592.14,2102.66,0.00,0.000000,0.000000,11,0,0.000000,0.000030,891944,448295,0,0,4360,0,1,1 +1774027809.986153,0.35,4,3992.50,53.51,1599.77,2095.04,0.00,0.176803,0.000000,199,0,0.000000,0.000020,891944,448297,0,0,4362,0,1,1 +1774027814.986866,0.40,4,3992.50,53.51,1599.77,2095.03,0.00,3517935588558.211914,0.000000,11,0,0.000000,0.000030,891944,448300,0,0,4365,0,1,1 +1774027819.981915,0.30,4,3992.50,53.52,1599.29,2095.52,0.00,364.619932,1544.920008,39419,57809,0.000000,0.000020,891944,448302,0,0,4367,0,1,1 +1774027824.982405,0.60,4,3992.50,53.52,1600.01,2095.52,0.00,4.060442,0.052729,40177,57844,0.000205,0.000562,891951,448316,0,0,4370,0,1,1 +1774027829.981886,0.40,4,3992.50,53.54,1599.30,2096.21,0.00,3518802710071.178223,3518802708895.932617,11,0,0.000623,0.001137,891966,448341,0,0,4372,0,1,1 +1774027834.981998,0.35,4,3992.50,53.54,1599.30,2096.21,0.00,0.000000,0.000000,11,0,0.001139,0.001232,891976,448358,0,0,4375,0,1,1 +1774027839.981889,0.45,4,3992.50,53.55,1599.09,2096.43,0.00,1.491927,0.022071,221,21,0.001109,0.000635,891998,448374,0,0,4377,0,1,1 +1774027844.981872,0.40,4,3992.50,53.55,1599.09,2096.43,0.00,0.516896,3518449357385.119629,238,2,0.002391,0.002283,892025,448395,0,0,4380,0,1,1 +1774027849.981884,0.25,4,3992.50,53.55,1599.09,2096.43,0.00,362.249197,1543.526046,39419,57919,0.000000,0.000020,892025,448397,0,0,4382,0,1,1 +1774027854.982878,0.65,4,3992.50,53.55,1593.74,2096.43,0.00,3517737694418.274414,3517737693239.061035,199,0,0.000000,0.000030,892025,448400,0,0,4385,0,1,1 +1774027859.985227,0.30,4,3992.50,53.54,1593.73,2096.38,0.00,3516785167399.620605,0.000000,70,0,0.000000,0.000020,892025,448402,0,0,4387,0,1,1 +1774027864.981882,0.45,4,3992.50,53.54,1593.73,2096.38,0.00,0.000000,0.000000,70,0,0.000000,0.000030,892025,448405,0,0,4390,0,1,1 +1774027869.981947,0.45,4,3992.50,53.37,1600.39,2089.73,0.00,1.441876,0.022070,221,21,0.000031,0.000045,892027,448409,0,0,4392,0,1,1 +1774027874.982024,0.30,4,3992.50,53.38,1600.14,2089.97,0.00,3518383303731.288574,3518383303732.581543,199,0,0.000062,0.000080,892031,448416,0,0,4395,0,1,1 +1774027879.982703,0.35,4,3992.50,53.39,1599.93,2090.19,0.00,1.831587,0.000195,238,2,0.000039,0.000053,892034,448421,0,0,4397,0,1,1 +1774027884.986146,0.55,4,3992.50,53.59,1592.75,2098.02,0.00,3516016018369.060547,3516016018371.067871,11,0,0.000050,0.000092,892038,448428,0,0,4400,0,1,1 +1774027889.986336,0.35,4,3992.50,53.60,1592.02,2098.75,0.00,368.305691,1543.614614,40177,58035,0.000050,0.000082,892042,448434,0,0,4402,0,1,1 +1774027894.982257,0.30,4,3992.50,53.60,1592.02,2098.75,0.00,3521310070041.277832,3521310068863.493164,221,21,0.000000,0.000030,892042,448437,0,0,4405,0,1,1 +1774027899.986628,0.25,4,3992.50,53.60,1592.02,2098.75,0.00,0.516443,3515364057937.689941,238,2,0.000000,0.000020,892042,448439,0,0,4407,0,1,1 +1774027904.986540,0.35,4,3992.50,53.60,1592.02,2098.74,0.00,362.256491,1543.699316,39419,58035,0.000000,0.000030,892042,448442,0,0,4410,0,1,1 +1774027909.984825,0.35,4,3992.50,53.62,1591.29,2099.48,0.00,3519644219117.081543,3519644217937.263672,11,0,0.000000,0.000020,892042,448444,0,0,4412,0,1,1 +1774027914.986225,0.55,4,3992.50,53.62,1594.90,2099.48,0.00,1.491477,0.022064,221,21,0.000000,0.000030,892042,448447,0,0,4415,0,1,1 +1774027919.986754,0.35,4,3992.50,53.62,1594.91,2099.44,0.00,0.000000,0.000000,221,21,0.000000,0.000020,892042,448449,0,0,4417,0,1,1 +1774027924.986058,0.30,4,3992.50,53.62,1594.91,2099.44,0.00,3518926766900.066895,3518926766901.486816,70,0,0.000000,0.000030,892042,448452,0,0,4420,0,1,1 +1774027929.984479,0.45,4,3992.50,53.57,1596.88,2097.46,0.00,0.126993,0.000000,199,0,0.000000,0.000020,892042,448454,0,0,4422,0,1,1 +1774027934.984240,1.25,4,3992.50,53.58,1596.66,2097.68,0.00,3518605139943.095215,0.000000,11,0,0.000000,0.000030,892042,448457,0,0,4425,0,1,1 +1774027939.986132,0.35,4,3992.50,53.58,1596.67,2097.68,0.00,0.049981,0.000000,70,0,0.000000,0.000020,892042,448459,0,0,4427,0,1,1 +1774027944.986396,0.55,4,3992.50,53.58,1592.26,2097.90,0.00,0.000000,0.000000,70,0,0.000000,0.000030,892042,448462,0,0,4430,0,1,1 +1774027949.986012,0.40,4,3992.50,53.58,1592.19,2097.85,0.00,368.298060,1543.932057,40177,58152,0.000000,0.000020,892042,448464,0,0,4432,0,1,1 +1774027954.981964,0.30,4,3992.50,53.58,1592.19,2097.85,0.00,3521287253202.470703,3521287252026.024902,11,0,0.000000,0.000030,892042,448467,0,0,4435,0,1,1 +1774027959.981887,0.35,4,3992.50,53.58,1592.19,2097.85,0.00,368.325459,1543.853713,40177,58172,0.000000,0.000020,892042,448469,0,0,4437,0,1,1 +1774027964.983213,0.40,4,3992.50,53.55,1593.46,2096.57,0.00,3517504188418.399902,3517504187243.201172,11,0,0.000000,0.000030,892042,448472,0,0,4440,0,1,1 +1774027969.986847,0.25,4,3992.50,53.55,1593.46,2096.57,0.00,0.176825,0.000000,199,0,0.000000,0.000020,892042,448474,0,0,4442,0,1,1 +1774027974.985845,0.65,4,3992.50,53.60,1592.09,2098.50,0.00,368.216588,1544.172835,40177,58198,0.000000,0.000030,892042,448477,0,0,4445,0,1,1 +1774027979.981865,0.30,4,3992.50,53.56,1592.91,2097.14,0.00,3521239922529.315918,3521239921352.785645,70,0,0.000000,0.000020,892042,448479,0,0,4447,0,1,1 +1774027984.986796,0.25,4,3992.50,53.54,1593.97,2096.08,0.00,1.956859,0.000195,238,2,0.000000,0.000030,892042,448482,0,0,4450,0,1,1 +1774027989.981950,0.40,4,3992.50,53.32,1602.64,2087.41,0.00,3521850741582.857910,0.021896,221,21,0.000000,0.000020,892042,448484,0,0,4452,0,1,1 +1774027994.986577,0.40,4,3992.50,53.35,1601.46,2088.59,0.00,366.488684,1542.454451,40177,58238,0.000000,0.000030,892042,448487,0,0,4455,0,1,1 +1774027999.981891,0.40,4,3992.50,53.37,1600.49,2089.57,0.00,3521737851666.227539,3521737850487.529785,238,2,0.000000,0.000020,892042,448489,0,0,4457,0,1,1 +1774028004.981870,0.60,4,3992.50,53.42,1595.99,2091.49,0.00,3518451621866.415039,3518451621868.423828,11,0,0.000000,0.000030,892042,448492,0,0,4460,0,1,1 +1774028009.982979,0.30,4,3992.50,53.39,1595.90,2090.46,0.00,1.491564,0.022065,221,21,0.000000,0.000020,892042,448494,0,0,4462,0,1,1 +1774028014.986174,0.35,4,3992.50,53.44,1594.26,2092.11,0.00,3516190571265.201172,3516190571266.620605,70,0,0.000000,0.000030,892042,448497,0,0,4465,0,1,1 +1774028019.985226,0.35,4,3992.50,53.44,1594.26,2092.11,0.00,1.959160,0.000195,238,2,0.000000,0.000020,892042,448499,0,0,4467,0,1,1 +1774028024.981882,0.20,4,3992.50,53.45,1593.78,2092.59,0.00,3520792004001.584473,3520792004003.594727,11,0,0.000000,0.000030,892042,448502,0,0,4470,0,1,1 +1774028029.986247,0.30,4,3992.50,53.38,1596.30,2090.07,0.00,0.000000,0.000000,11,0,0.000000,0.000020,892042,448504,0,0,4472,0,1,1 +1774028034.981895,0.65,4,3992.50,53.46,1593.64,2093.02,0.00,1.493194,0.022090,221,21,0.000000,0.000030,892042,448507,0,0,4475,0,1,1 +1774028039.981990,0.35,4,3992.50,53.48,1592.66,2093.71,0.00,366.820864,1543.942353,40177,58306,0.000000,0.000020,892042,448509,0,0,4477,0,1,1 +1774028044.981871,0.30,4,3992.50,53.48,1592.41,2093.95,0.00,3518521173096.747070,3518521171921.044922,11,0,0.000000,0.000030,892042,448512,0,0,4480,0,1,1 +1774028049.985050,0.35,4,3992.50,53.29,1600.09,2086.27,0.00,0.000000,0.000000,11,0,0.000000,0.000020,892042,448514,0,0,4482,0,1,1 +1774028054.982743,0.35,4,3992.50,53.32,1598.87,2087.50,0.00,0.000000,0.000000,11,0,0.000000,0.000030,892042,448517,0,0,4485,0,1,1 +1774028059.986406,0.30,4,3992.50,53.32,1598.62,2087.74,0.00,0.000000,0.000000,11,0,0.000000,0.000020,892042,448519,0,0,4487,0,1,1 +1774028064.986273,0.55,4,3992.50,53.42,1598.93,2091.62,0.00,0.050001,0.000000,70,0,0.000000,0.000030,892042,448522,0,0,4490,0,1,1 +1774028069.984468,0.40,4,3992.50,53.44,1598.11,2092.32,0.00,3519707049496.408691,0.000000,11,0,0.000000,0.000020,892042,448524,0,0,4492,0,1,1 +1774028074.984107,0.30,4,3992.50,53.47,1597.12,2093.31,0.00,2.008934,0.000195,238,2,0.000000,0.000030,892042,448527,0,0,4495,0,1,1 +1774028079.985108,0.30,4,3992.50,53.47,1596.88,2093.55,0.00,3517733223223.490723,3517733223225.448730,70,0,0.000000,0.000020,892042,448529,0,0,4497,0,1,1 +1774028084.985086,0.35,4,3992.50,53.49,1596.14,2094.29,0.00,0.000000,0.000000,70,0,0.000000,0.000030,892042,448532,0,0,4500,0,1,1 +1774028089.985996,0.35,4,3992.50,53.49,1596.14,2094.29,0.00,368.202713,1543.829959,40177,58412,0.000000,0.000020,892042,448534,0,0,4502,0,1,1 +1774028094.985813,0.55,4,3992.50,53.51,1593.67,2094.99,0.00,3518565732937.092285,0.008985,39419,58407,0.000000,0.000030,892042,448537,0,0,4505,0,1,1 +1774028099.986307,0.25,4,3992.50,53.51,1593.84,2094.97,0.00,3518089865395.853027,3518089864215.931641,199,0,0.000000,0.000020,892042,448539,0,0,4507,0,1,1 +1774028104.986003,0.60,4,3992.50,53.51,1593.85,2094.96,0.00,3518650986634.956543,0.000000,70,0,0.000000,0.000030,892042,448542,0,0,4510,0,1,1 +1774028109.985803,0.35,4,3992.50,53.44,1596.53,2092.29,0.00,3518578139197.075195,0.000000,11,0,0.000000,0.000020,892042,448544,0,0,4512,0,1,1 +1774028114.981884,0.40,4,3992.50,53.47,1595.30,2093.52,0.00,0.050039,0.000000,70,0,0.000000,0.000030,892042,448547,0,0,4515,0,1,1 +1774028119.986472,0.25,4,3992.50,53.50,1594.33,2094.48,0.00,1.956993,0.000195,238,2,0.000000,0.000020,892042,448549,0,0,4517,0,1,1 +1774028124.981950,0.50,4,3992.50,53.43,1598.18,2092.09,0.00,3521622683524.846680,0.021895,221,21,0.001127,0.001233,892051,448566,0,0,4520,0,1,1 +1774028129.981871,0.50,4,3992.50,53.47,1595.01,2093.62,0.00,3518492826401.563477,3518492826402.983398,70,0,0.000623,0.001137,892066,448591,0,0,4522,0,1,1 +1774028134.986469,0.40,4,3992.50,53.48,1594.77,2093.86,0.00,0.000000,0.000000,70,0,0.000204,0.000561,892073,448605,0,0,4525,0,1,1 +1774028139.982632,0.55,4,3992.50,53.49,1594.53,2094.11,0.00,364.488597,1545.455913,39419,58528,0.001085,0.000625,892093,448620,0,0,4527,0,1,1 +1774028144.981964,0.40,4,3992.50,53.49,1594.53,2094.11,0.00,3518907010052.257812,3518907008872.089355,11,0,0.001064,0.000439,892115,448637,0,0,4530,0,1,1 +1774028149.981886,0.30,4,3992.50,53.49,1594.53,2094.11,0.00,0.176956,0.000000,199,0,0.000000,0.000020,892115,448639,0,0,4532,0,1,1 +1774028154.981872,0.50,4,3992.50,53.67,1587.61,2101.43,0.00,0.000000,0.000000,199,0,0.000000,0.000030,892115,448642,0,0,4535,0,1,1 +1774028159.986459,0.35,4,3992.50,53.56,1591.75,2096.96,0.00,0.000000,0.000000,199,0,0.000000,0.000020,892115,448644,0,0,4537,0,1,1 +1774028164.985755,0.30,4,3992.50,53.58,1591.01,2097.70,0.00,3518932503559.404785,0.000000,11,0,0.000000,0.000030,892115,448647,0,0,4540,0,1,1 +1774028169.986183,0.40,4,3992.50,53.35,1599.75,2088.96,0.00,0.000000,0.000000,11,0,0.000031,0.000045,892117,448651,0,0,4542,0,1,1 +1774028174.981958,0.25,4,3992.50,53.39,1598.28,2090.43,0.00,2.010488,0.000195,238,2,0.000062,0.000080,892121,448658,0,0,4545,0,1,1 +1774028179.981960,0.30,4,3992.50,53.39,1598.29,2090.43,0.00,366.310807,1544.385194,40177,58630,0.000039,0.000053,892124,448663,0,0,4547,0,1,1 +1774028184.981965,0.50,4,3992.50,53.44,1596.32,2092.39,0.00,3518433642232.549316,3518433641054.475586,238,2,0.000050,0.000092,892128,448670,0,0,4550,0,1,1 +1774028189.985837,0.35,4,3992.50,53.41,1597.32,2091.01,0.00,0.000000,0.000000,238,2,0.000050,0.000082,892132,448676,0,0,4552,0,1,1 +1774028194.984542,0.25,4,3992.50,53.45,1595.59,2092.73,0.00,366.405856,1544.834374,40177,58664,0.000000,0.000030,892132,448679,0,0,4555,0,1,1 +1774028199.983417,0.40,4,3992.50,53.43,1596.52,2091.80,0.00,3519229042089.817383,3519229040911.428711,238,2,0.000000,0.000020,892132,448681,0,0,4557,0,1,1 +1774028204.984494,0.30,4,3992.50,53.44,1596.19,2092.14,0.00,3517679359336.479980,3517679359338.488281,11,0,0.000000,0.000030,892132,448684,0,0,4560,0,1,1 +1774028209.986687,0.30,4,3992.50,53.44,1596.18,2092.14,0.00,2.007908,0.000195,238,2,0.000000,0.000020,892132,448686,0,0,4562,0,1,1 +1774028214.986292,0.60,4,3992.50,53.62,1588.83,2099.49,0.00,0.000000,0.000000,238,2,0.000000,0.000030,892132,448689,0,0,4565,0,1,1 +1774028219.985368,0.35,4,3992.50,53.62,1588.83,2099.45,0.00,3519087896679.274902,3519087896681.107422,199,0,0.000000,0.000020,892132,448691,0,0,4567,0,1,1 +1774028224.981875,0.25,4,3992.50,53.62,1588.83,2099.45,0.00,1.833116,0.000195,238,2,0.000000,0.000030,892132,448694,0,0,4570,0,1,1 +1774028229.981891,0.45,4,3992.50,53.55,1591.55,2096.72,0.00,3518425508005.372070,3518425508007.330566,70,0,0.000000,0.000020,892132,448696,0,0,4572,0,1,1 +1774028234.981955,0.40,4,3992.50,53.59,1590.08,2098.20,0.00,368.265086,1544.510225,40177,58743,0.000000,0.000030,892132,448699,0,0,4575,0,1,1 +1774028239.985173,0.35,4,3992.50,53.60,1589.89,2098.38,0.00,3516173684727.820801,3516173684731.865723,39419,58726,0.000000,0.000020,892132,448701,0,0,4577,0,1,1 +1774028244.985580,0.55,4,3992.50,53.66,1590.61,2100.84,0.00,3518151070959.667969,3518151069779.506836,11,0,0.000000,0.000030,892132,448704,0,0,4580,0,1,1 +1774028249.981961,0.30,4,3992.50,53.63,1591.72,2099.73,0.00,368.586540,1545.685301,40177,58766,0.000000,0.000020,892132,448706,0,0,4582,0,1,1 +1774028254.981891,0.30,4,3992.50,53.67,1590.25,2101.21,0.00,3518485950804.630371,3518485949628.190918,199,0,0.000000,0.000030,892132,448709,0,0,4585,0,1,1 +1774028259.983179,0.30,4,3992.50,53.67,1590.25,2101.20,0.00,1.314603,0.022065,221,21,0.000000,0.000020,892132,448711,0,0,4587,0,1,1 +1774028264.982518,0.40,4,3992.50,53.67,1590.25,2101.20,0.00,3518902624573.078125,3518902624574.548340,11,0,0.000000,0.000030,892132,448714,0,0,4590,0,1,1 +1774028269.981952,0.30,4,3992.50,53.67,1590.25,2101.20,0.00,0.176973,0.000000,199,0,0.000000,0.000020,892132,448716,0,0,4592,0,1,1 +1774028274.984119,0.60,4,3992.50,53.87,1581.65,2109.08,0.00,363.924217,1543.928943,39419,58787,0.000000,0.000030,892132,448719,0,0,4595,0,1,1 +1774028279.984459,0.25,4,3992.50,53.87,1581.67,2109.03,0.00,3518198156805.141113,3518198155624.882324,11,0,0.000000,0.000020,892132,448721,0,0,4597,0,1,1 +1774028284.984490,0.30,4,3992.50,53.87,1581.67,2109.03,0.00,0.000000,0.000000,11,0,0.000000,0.000030,892132,448724,0,0,4600,0,1,1 +1774028289.986025,0.35,4,3992.50,53.68,1589.07,2101.63,0.00,364.147118,1544.143631,39419,58811,0.000000,0.000020,892132,448726,0,0,4602,0,1,1 +1774028294.984278,0.35,4,3992.50,53.68,1589.07,2101.63,0.00,3519667212543.048340,3519667211360.268066,238,2,0.000000,0.000030,892132,448729,0,0,4605,0,1,1 +1774028299.986827,0.25,4,3992.50,53.68,1588.85,2101.85,0.00,3516644197197.750000,3516644197199.581055,199,0,0.000000,0.000020,892132,448731,0,0,4607,0,1,1 +1774028304.981894,0.60,4,3992.50,53.78,1584.54,2105.44,0.00,3521912257872.009277,0.000000,11,0,0.000000,0.000030,892132,448734,0,0,4610,0,1,1 +1774028309.981866,0.30,4,3992.50,53.80,1583.58,2106.38,0.00,364.260922,1544.693395,39419,58865,0.000000,0.000020,892132,448736,0,0,4612,0,1,1 +1774028314.982903,0.30,4,3992.50,53.80,1583.58,2106.38,0.00,3517707079571.387207,3517707078389.197754,238,2,0.000000,0.000030,892132,448739,0,0,4615,0,1,1 +1774028319.986247,0.30,4,3992.50,53.82,1582.84,2107.11,0.00,362.008027,1543.658592,39419,58873,0.000000,0.000020,892132,448741,0,0,4617,0,1,1 +1774028324.981960,0.25,4,3992.50,53.82,1582.62,2107.33,0.00,3521456620224.607422,3521456619043.162109,11,0,0.000000,0.000030,892132,448744,0,0,4620,0,1,1 +1774028329.986281,0.30,4,3992.50,53.82,1582.63,2107.33,0.00,368.001716,1543.388929,40177,58906,0.000000,0.000020,892132,448746,0,0,4622,0,1,1 +1774028334.981885,0.60,4,3992.50,53.90,1579.09,2110.30,0.00,3521533043149.028809,3521533041971.590332,11,0,0.000000,0.000030,892132,448749,0,0,4625,0,1,1 +1774028339.982128,0.30,4,3992.50,53.90,1579.12,2110.30,0.00,364.241197,1544.662873,39419,58907,0.000000,0.000020,892132,448751,0,0,4627,0,1,1 +1774028344.986717,0.35,4,3992.50,53.90,1579.12,2110.30,0.00,4.057116,0.030831,40177,58940,0.000000,0.000030,892132,448754,0,0,4630,0,1,1 +1774028349.986702,0.30,4,3992.50,53.85,1581.04,2108.38,0.00,3518447778635.697266,3518447777459.244629,11,0,0.000000,0.000020,892132,448756,0,0,4632,0,1,1 +1774028354.986781,0.40,4,3992.50,53.88,1579.82,2109.61,0.00,0.000000,0.000000,11,0,0.000000,0.000030,892132,448759,0,0,4635,0,1,1 +1774028359.986663,0.45,4,3992.50,53.88,1579.82,2109.61,0.00,0.176957,0.000000,199,0,0.000000,0.000020,892132,448761,0,0,4637,0,1,1 +1774028364.986010,0.45,4,3992.50,54.02,1573.66,2115.02,0.00,368.190849,1545.044708,40177,59001,0.000000,0.000030,892132,448764,0,0,4640,0,1,1 +1774028369.985854,0.50,4,3992.50,53.99,1574.84,2113.84,0.00,3518546906251.776367,3518546905075.216309,11,0,0.000000,0.000020,892132,448766,0,0,4642,0,1,1 +1774028374.983101,0.35,4,3992.50,54.00,1574.61,2114.07,0.00,2.009896,0.000195,238,2,0.000000,0.000030,892132,448769,0,0,4645,0,1,1 +1774028379.982944,0.25,4,3992.50,54.00,1574.61,2114.07,0.00,3518547604721.200684,0.021876,221,21,0.000000,0.000020,892132,448771,0,0,4647,0,1,1 +1774028384.986311,0.40,4,3992.50,54.03,1573.38,2115.30,0.00,366.580999,1543.801712,40177,59025,0.000000,0.000030,892132,448774,0,0,4650,0,1,1 +1774028389.984674,0.30,4,3992.50,54.03,1573.38,2115.30,0.00,3519589913631.178711,3519589912454.072754,199,0,0.000000,0.000020,892132,448776,0,0,4652,0,1,1 +1774028394.986238,0.55,4,3992.50,54.03,1579.46,2115.29,0.00,3517336372642.196777,0.000000,11,0,0.000000,0.000030,892132,448779,0,0,4655,0,1,1 +1774028399.982796,0.35,4,3992.50,54.03,1579.31,2115.47,0.00,364.509818,1545.944318,39419,59029,0.000000,0.000020,892132,448781,0,0,4657,0,1,1 +1774028404.981895,0.65,4,3992.50,54.04,1578.85,2115.92,0.00,0.000000,0.017972,39419,59042,0.000000,0.000030,892132,448784,0,0,4660,0,1,1 +1774028409.981958,0.30,4,3992.50,53.89,1584.71,2110.06,0.00,4.060789,0.082421,40177,59112,0.000000,0.000020,892132,448786,0,0,4662,0,1,1 +1774028414.981966,0.45,4,3992.50,53.90,1584.50,2110.28,0.00,3518431224368.545898,3518431223190.416992,221,21,0.000000,0.000030,892132,448789,0,0,4665,0,1,1 +1774028419.984049,0.30,4,3992.50,53.92,1583.52,2111.27,0.00,3516972329414.583008,3516972329416.052246,11,0,0.000000,0.000020,892132,448791,0,0,4667,0,1,1 +1774028424.986025,0.55,4,3992.50,54.02,1583.62,2114.91,0.00,0.000000,0.000000,11,0,0.000205,0.000562,892139,448805,0,0,4670,0,1,1 +1774028429.986591,0.50,4,3992.50,54.02,1582.83,2115.16,0.00,1.491726,0.022068,221,21,0.002479,0.002476,892159,448836,0,0,4672,0,1,1 +1774028434.986434,0.30,4,3992.50,54.02,1582.83,2115.16,0.00,3518548028366.750000,3518548028368.170410,70,0,0.000205,0.000562,892166,448850,0,0,4675,0,1,1 +1774028439.986206,0.45,4,3992.50,54.02,1582.83,2115.16,0.00,0.126959,0.000000,199,0,0.002449,0.002479,892194,448870,0,0,4677,0,1,1 +1774028444.982460,0.45,4,3992.50,54.02,1582.83,2115.16,0.00,364.354936,1546.194855,39419,59147,0.001065,0.000439,892216,448887,0,0,4680,0,1,1 +1774028449.984128,0.30,4,3992.50,54.03,1582.60,2115.39,0.00,3517263875319.895996,3517263874137.504395,238,2,0.000000,0.000020,892216,448889,0,0,4682,0,1,1 +1774028454.986420,0.60,4,3992.50,54.03,1578.06,2115.34,0.00,366.143065,1544.387815,40177,59193,0.000000,0.000030,892216,448892,0,0,4685,0,1,1 +1774028459.986576,0.25,4,3992.50,54.01,1578.99,2114.45,0.00,3518327419811.410645,3518327418634.670898,11,0,0.000000,0.000020,892216,448894,0,0,4687,0,1,1 +1774028464.985960,0.40,4,3992.50,54.01,1578.75,2114.69,0.00,368.365120,1545.296675,40177,59206,0.000000,0.000030,892216,448897,0,0,4690,0,1,1 +1774028469.986454,0.30,4,3992.50,53.63,1593.56,2099.88,0.00,3518089811220.390625,3518089810041.711426,238,2,0.000031,0.000045,892218,448901,0,0,4692,0,1,1 +1774028474.986572,0.40,4,3992.50,53.66,1592.33,2101.11,0.00,0.000000,0.000000,238,2,0.000062,0.000080,892222,448908,0,0,4695,0,1,1 +1774028479.982867,0.30,4,3992.50,53.66,1592.33,2101.11,0.00,3521045853164.517578,3521045853166.527344,11,0,0.000039,0.000053,892225,448913,0,0,4697,0,1,1 +1774028484.986723,0.50,4,3992.50,53.62,1593.64,2099.35,0.00,0.176817,0.000000,199,0,0.000050,0.000092,892229,448920,0,0,4700,0,1,1 +1774028489.984445,0.35,4,3992.50,53.45,1600.22,2092.69,0.00,3520041098713.454102,0.000000,11,0,0.000050,0.000082,892233,448926,0,0,4702,0,1,1 +1774028494.986858,0.30,4,3992.50,53.49,1598.54,2094.37,0.00,1.491175,0.022060,221,21,0.000000,0.000030,892233,448929,0,0,4705,0,1,1 +1774028499.981960,0.35,4,3992.50,53.41,1601.81,2091.10,0.00,3521887131180.004883,3521887131181.476074,11,0,0.000000,0.000020,892233,448931,0,0,4707,0,1,1 +1774028504.986618,0.40,4,3992.50,53.44,1600.48,2092.43,0.00,1.490506,0.022050,221,21,0.000000,0.000030,892233,448934,0,0,4710,0,1,1 +1774028509.985678,0.30,4,3992.50,53.39,1602.52,2090.39,0.00,3519098734692.463867,3519098734693.884277,70,0,0.000000,0.000020,892233,448936,0,0,4712,0,1,1 +1774028514.981956,0.55,4,3992.50,53.84,1585.29,2108.05,0.00,0.000000,0.000000,70,0,0.000000,0.000030,892233,448939,0,0,4715,0,1,1 +1774028519.981879,0.30,4,3992.50,53.65,1592.29,2100.61,0.00,1.958819,0.000195,238,2,0.000000,0.000020,892233,448941,0,0,4717,0,1,1 +1774028524.981973,0.35,4,3992.50,53.65,1592.29,2100.61,0.00,3518370311291.766113,3518370311293.774902,11,0,0.000000,0.000030,892233,448944,0,0,4720,0,1,1 +1774028529.983987,0.50,4,3992.50,53.40,1602.24,2090.67,0.00,0.000000,0.000000,11,0,0.000000,0.000020,892233,448946,0,0,4722,0,1,1 +1774028534.982018,0.35,4,3992.50,53.46,1599.81,2093.10,0.00,2.009581,0.000195,238,2,0.000000,0.000030,892233,448949,0,0,4725,0,1,1 +1774028539.982229,0.25,4,3992.50,53.49,1598.83,2094.08,0.00,3518288282552.871094,3518288282554.830078,70,0,0.000000,0.000020,892233,448951,0,0,4727,0,1,1 +1774028544.986647,0.65,4,3992.50,53.68,1590.36,2101.68,0.00,0.000000,0.000000,70,0,0.000000,0.000030,892233,448954,0,0,4730,0,1,1 +1774028549.986728,0.30,4,3992.50,53.70,1588.16,2102.38,0.00,1.958757,0.000195,238,2,0.000000,0.000020,892233,448956,0,0,4732,0,1,1 +1774028554.984768,0.35,4,3992.50,53.63,1590.84,2099.70,0.00,362.392180,1545.921926,39419,59364,0.000000,0.000030,892233,448959,0,0,4735,0,1,1 +1774028559.982694,0.25,4,3992.50,53.66,1589.62,2100.92,0.00,3519897444309.528320,3519897443127.981445,11,0,0.000000,0.000020,892233,448961,0,0,4737,0,1,1 +1774028564.985083,0.35,4,3992.50,53.66,1589.62,2100.91,0.00,1.491182,0.022060,221,21,0.000000,0.000030,892233,448964,0,0,4740,0,1,1 +1774028569.985931,0.40,4,3992.50,53.57,1593.19,2097.35,0.00,0.000000,0.000000,221,21,0.000000,0.000020,892233,448966,0,0,4742,0,1,1 +1774028574.981959,0.65,4,3992.50,53.54,1593.40,2096.24,0.00,363.055364,1546.561428,39419,59394,0.000000,0.000030,892233,448969,0,0,4745,0,1,1 +1774028579.982080,0.25,4,3992.50,53.35,1600.83,2088.84,0.00,3518352486591.113770,3518352485409.996094,70,0,0.000000,0.000020,892233,448971,0,0,4747,0,1,1 +1774028584.984640,0.35,4,3992.50,53.34,1601.12,2088.55,0.00,0.126888,0.000000,199,0,0.000000,0.000030,892233,448974,0,0,4750,0,1,1 +1774028589.982587,0.50,4,3992.50,53.29,1603.10,2086.57,0.00,1.315481,0.022079,221,21,0.000000,0.000020,892233,448976,0,0,4752,0,1,1 +1774028594.986458,0.25,4,3992.50,53.33,1601.87,2087.80,0.00,3515715708118.060059,3515715708119.528809,11,0,0.000000,0.000030,892233,448979,0,0,4755,0,1,1 +1774028599.981961,0.25,4,3992.50,53.34,1601.20,2088.47,0.00,0.000000,0.000000,11,0,0.000000,0.000020,892233,448981,0,0,4757,0,1,1 +1774028604.981952,0.55,4,3992.50,53.55,1593.21,2096.46,0.00,1.491897,0.022070,221,21,0.000000,0.000030,892233,448984,0,0,4760,0,1,1 +1774028609.983043,0.30,4,3992.50,53.55,1593.08,2096.63,0.00,3517670169644.672363,3517670169646.142090,11,0,0.000000,0.000020,892233,448986,0,0,4762,0,1,1 +1774028614.986852,0.35,4,3992.50,53.41,1598.78,2090.93,0.00,0.049962,0.000000,70,0,0.000000,0.000030,892233,448989,0,0,4765,0,1,1 +1774028619.986148,0.40,4,3992.50,53.42,1598.04,2091.67,0.00,1.959065,0.000195,238,2,0.000000,0.000020,892233,448991,0,0,4767,0,1,1 +1774028624.986173,0.35,4,3992.50,53.42,1598.04,2091.66,0.00,0.000000,0.000000,238,2,0.000000,0.000030,892233,448994,0,0,4770,0,1,1 +1774028629.986709,0.35,4,3992.50,53.39,1599.32,2090.39,0.00,3518060225508.830566,3518060225510.838867,11,0,0.000000,0.000020,892233,448996,0,0,4772,0,1,1 +1774028634.981961,0.50,4,3992.50,53.71,1587.25,2102.96,0.00,1.493313,0.022091,221,21,0.000000,0.000030,892233,448999,0,0,4775,0,1,1 +1774028639.981969,0.30,4,3992.50,53.52,1594.68,2095.56,0.00,3518431335916.171875,3518431335917.591797,70,0,0.000000,0.000020,892233,449001,0,0,4777,0,1,1 +1774028644.981874,0.30,4,3992.50,53.53,1594.43,2095.81,0.00,0.000000,0.000000,70,0,0.000000,0.000030,892233,449004,0,0,4780,0,1,1 +1774028649.981959,0.45,4,3992.50,53.46,1597.27,2092.97,0.00,0.000000,0.000000,70,0,0.000000,0.000020,892233,449006,0,0,4782,0,1,1 +1774028654.981875,0.30,4,3992.50,53.51,1595.31,2094.93,0.00,1.958822,0.000195,238,2,0.000000,0.000030,892233,449009,0,0,4785,0,1,1 +1774028659.981934,0.25,4,3992.50,53.51,1595.31,2094.93,0.00,3518396197049.251465,0.021875,221,21,0.000000,0.000020,892233,449011,0,0,4787,0,1,1 +1774028664.986503,0.55,4,3992.50,53.79,1587.07,2106.06,0.00,3515224680198.898438,3515224680200.189941,199,0,0.000000,0.000030,892233,449014,0,0,4790,0,1,1 +1774028669.986080,0.35,4,3992.50,53.82,1585.98,2107.00,0.00,1.831991,0.000195,238,2,0.000000,0.000020,892233,449016,0,0,4792,0,1,1 +1774028674.981932,0.45,4,3992.50,53.82,1585.74,2107.24,0.00,3521358294608.479492,3521358294610.489746,11,0,0.000000,0.000030,892233,449019,0,0,4795,0,1,1 +1774028679.985864,0.30,4,3992.50,53.84,1585.00,2107.98,0.00,363.972695,1544.405555,39419,59614,0.000000,0.000020,892233,449021,0,0,4797,0,1,1 +1774028684.982136,0.40,4,3992.50,53.84,1585.00,2107.98,0.00,4.063870,0.026191,40177,59641,0.000000,0.000030,892233,449024,0,0,4800,0,1,1 +1774028689.985723,0.35,4,3992.50,53.84,1585.00,2107.98,0.00,3515914742204.038086,3515914741027.555664,11,0,0.000000,0.000020,892233,449026,0,0,4802,0,1,1 +1774028694.986401,0.50,4,3992.50,53.94,1577.04,2111.88,0.00,2.008517,0.000195,238,2,0.000000,0.000030,892233,449029,0,0,4805,0,1,1 +1774028699.986121,0.35,4,3992.50,53.71,1586.11,2102.84,0.00,366.331441,1545.769917,40177,59670,0.000000,0.000020,892233,449031,0,0,4807,0,1,1 +1774028704.986001,0.65,4,3992.50,53.71,1586.13,2102.82,0.00,0.000000,0.032813,40177,59691,0.000000,0.000030,892233,449034,0,0,4810,0,1,1 +1774028709.986125,0.40,4,3992.50,53.56,1591.91,2097.05,0.00,3518349563614.579590,3518349562435.203613,238,2,0.000000,0.000020,892233,449036,0,0,4812,0,1,1 +1774028714.986665,0.30,4,3992.50,53.56,1591.88,2097.08,0.00,3518057905247.958984,0.021873,221,21,0.000000,0.000030,892233,449039,0,0,4815,0,1,1 +1774028719.981896,0.20,4,3992.50,53.56,1591.88,2097.07,0.00,3521795772237.516113,3521795772238.810547,199,0,0.000000,0.000020,892233,449041,0,0,4817,0,1,1 +1774028724.984491,0.70,4,3992.50,53.81,1582.43,2106.64,0.00,0.000000,0.000000,199,0,0.000205,0.000562,892240,449055,0,0,4820,0,1,1 +1774028729.983881,0.30,4,3992.50,53.61,1589.34,2098.98,0.00,368.187698,1545.979259,40177,59749,0.000623,0.001137,892255,449080,0,0,4822,0,1,1 +1774028734.981961,0.35,4,3992.50,53.59,1590.14,2098.19,0.00,3519788558120.345215,3519788556942.245605,199,0,0.001127,0.001232,892264,449097,0,0,4825,0,1,1 +1774028739.982243,0.45,4,3992.50,53.60,1589.92,2098.41,0.00,3518239345213.242188,0.000000,70,0,0.001109,0.000635,892286,449113,0,0,4827,0,1,1 +1774028744.981980,0.55,4,3992.50,53.60,1589.92,2098.41,0.00,3518622313047.172363,0.000000,11,0,0.002404,0.002283,892314,449134,0,0,4830,0,1,1 +1774028749.981963,0.40,4,3992.50,53.52,1592.82,2095.50,0.00,0.050000,0.000000,70,0,0.000000,0.000020,892314,449136,0,0,4832,0,1,1 +1774028754.981980,0.60,4,3992.50,53.80,1582.00,2106.29,0.00,1.441890,0.022070,221,21,0.000000,0.000030,892314,449139,0,0,4835,0,1,1 +1774028759.985080,0.35,4,3992.50,53.61,1589.40,2098.89,0.00,0.516574,3516256785083.261719,238,2,0.000000,0.000020,892314,449141,0,0,4837,0,1,1 +1774028764.986626,0.30,4,3992.50,53.61,1589.40,2098.89,0.00,366.197722,1545.458724,40177,59875,0.000000,0.000030,892314,449144,0,0,4840,0,1,1 +1774028769.984597,0.35,4,3992.50,53.54,1592.26,2096.04,0.00,3519866038296.896484,3519866037117.330566,221,21,0.000031,0.000045,892316,449148,0,0,4842,0,1,1 +1774028774.984487,0.35,4,3992.50,53.53,1592.66,2095.63,0.00,3518514236899.085449,3518514236900.555176,11,0,0.000062,0.000080,892320,449155,0,0,4845,0,1,1 +1774028779.984404,0.35,4,3992.50,53.53,1592.45,2095.85,0.00,0.176956,0.000000,199,0,0.000039,0.000053,892323,449160,0,0,4847,0,1,1 +1774028784.985202,0.55,4,3992.50,53.86,1579.80,2108.61,0.00,3517875950068.144531,0.000000,11,0,0.000050,0.000092,892327,449167,0,0,4850,0,1,1 +1774028789.986301,0.95,4,3992.50,54.03,1572.97,2115.36,0.00,368.238732,1545.713924,40177,59942,0.000050,0.000082,892331,449173,0,0,4852,0,1,1 +1774028794.986243,0.35,4,3992.50,54.03,1572.97,2115.36,0.00,3518477984860.119141,3518477983682.194824,199,0,0.000000,0.000030,892331,449176,0,0,4855,0,1,1 +1774028799.982450,0.30,4,3992.50,54.05,1571.99,2116.34,0.00,0.000000,0.000000,199,0,0.000000,0.000020,892331,449178,0,0,4857,0,1,1 +1774028804.982262,0.30,4,3992.50,54.05,1571.99,2116.34,0.00,368.156620,1546.189403,40177,60013,0.000000,0.000030,892331,449181,0,0,4860,0,1,1 +1774028809.986454,0.30,4,3992.50,54.05,1572.00,2116.34,0.00,3515489715769.390137,3515489714592.564941,11,0,0.000000,0.000020,892331,449183,0,0,4862,0,1,1 +1774028814.981977,0.50,4,3992.50,54.15,1571.49,2119.99,0.00,364.585364,1547.527570,39419,60012,0.000000,0.000030,892331,449186,0,0,4865,0,1,1 +1774028819.981979,0.40,4,3992.50,54.15,1571.52,2119.99,0.00,3518435960179.354004,3518435958996.001953,221,21,0.000000,0.000020,892331,449188,0,0,4867,0,1,1 +1774028824.986762,0.25,4,3992.50,54.15,1571.52,2119.98,0.00,3515074382915.589844,3515074382917.008301,70,0,0.000000,0.000030,892331,449191,0,0,4870,0,1,1 +1774028829.986009,0.45,4,3992.50,53.99,1577.62,2113.89,0.00,364.263762,1546.398978,39419,60039,0.000000,0.000020,892331,449193,0,0,4872,0,1,1 +1774028834.986039,0.20,4,3992.50,54.02,1576.64,2114.87,0.00,0.000000,0.024219,39419,60060,0.000000,0.000030,892331,449196,0,0,4875,0,1,1 +1774028839.984121,0.35,4,3992.50,54.04,1575.90,2115.61,0.00,3519787070795.143066,3519787069612.758789,11,0,0.000000,0.000020,892331,449198,0,0,4877,0,1,1 +1774028844.981879,0.55,4,3992.50,54.10,1573.55,2118.03,0.00,0.000000,0.000000,11,0,0.000000,0.000030,892331,449201,0,0,4880,0,1,1 +1774028849.981891,0.35,4,3992.50,53.97,1578.65,2112.93,0.00,368.318812,1546.252410,40177,60113,0.000000,0.000020,892331,449203,0,0,4882,0,1,1 +1774028854.981961,0.35,4,3992.50,54.00,1577.18,2114.40,0.00,3518387813164.743652,3518387811986.773438,70,0,0.000000,0.000030,892331,449206,0,0,4885,0,1,1 +1774028859.981955,0.40,4,3992.50,54.01,1576.96,2114.62,0.00,0.126953,0.000000,199,0,0.000000,0.000020,892331,449208,0,0,4887,0,1,1 +1774028864.985930,0.30,4,3992.50,54.02,1576.73,2114.86,0.00,0.000000,0.000000,199,0,0.000000,0.000030,892331,449211,0,0,4890,0,1,1 +1774028869.981896,0.30,4,3992.50,54.02,1576.74,2114.85,0.00,3521277651726.320801,0.000000,11,0,0.000000,0.000020,892331,449213,0,0,4892,0,1,1 +1774028874.981948,0.60,4,3992.50,54.31,1565.77,2126.26,0.00,1.491879,0.022070,221,21,0.000000,0.000030,892331,449216,0,0,4895,0,1,1 +1774028879.981961,0.35,4,3992.50,54.00,1577.38,2114.18,0.00,362.766076,1546.271288,39419,60148,0.000000,0.000020,892331,449218,0,0,4897,0,1,1 +1774028884.984932,0.20,4,3992.50,54.00,1577.38,2114.17,0.00,3516347754596.795410,3516347753415.458984,11,0,0.000000,0.000030,892331,449221,0,0,4900,0,1,1 +1774028889.981874,0.45,4,3992.50,53.97,1578.37,2113.19,0.00,1.492808,0.022084,221,21,0.000000,0.000020,892331,449223,0,0,4902,0,1,1 +1774028894.983413,0.30,4,3992.50,54.01,1576.92,2114.64,0.00,3517354143083.607422,3517354143085.026855,70,0,0.000000,0.000030,892331,449226,0,0,4905,0,1,1 +1774028899.986043,0.25,4,3992.50,54.01,1576.92,2114.63,0.00,1.957759,0.000195,238,2,0.000000,0.000020,892331,449228,0,0,4907,0,1,1 +1774028904.982487,0.50,4,3992.50,54.12,1570.95,2118.77,0.00,362.507870,1547.467757,39419,60200,0.000000,0.000030,892331,449231,0,0,4910,0,1,1 +1774028909.981962,0.25,4,3992.50,53.97,1576.64,2113.11,0.00,3518806474181.802246,3518806472999.393066,199,0,0.000000,0.000020,892331,449233,0,0,4912,0,1,1 +1774028914.985836,0.40,4,3992.50,53.98,1576.40,2113.36,0.00,1.313923,0.022053,221,21,0.000000,0.000030,892331,449236,0,0,4915,0,1,1 diff --git a/evaluation/data/pipeline_idle_pipeline_baseline/pipeline.duckdb b/evaluation/data/pipeline_idle_pipeline_baseline/pipeline.duckdb new file mode 100644 index 0000000..9515aa7 Binary files /dev/null and b/evaluation/data/pipeline_idle_pipeline_baseline/pipeline.duckdb differ diff --git a/evaluation/data/pipeline_idle_pipeline_baseline/pipeline.log b/evaluation/data/pipeline_idle_pipeline_baseline/pipeline.log new file mode 100644 index 0000000..d49e64c --- /dev/null +++ b/evaluation/data/pipeline_idle_pipeline_baseline/pipeline.log @@ -0,0 +1,5063 @@ +2026/03/20 16:48:24 detector: Ensemble method=sead contamination=0.15 +2026/03/20 16:48:24 detector: SEAD η=0.100 λ=0.010 quantile_window=300 +2026/03/20 16:48:24 detector: auto-scaling enabled +2026/03/20 16:48:24 pipeline started – waiting for SIGINT / SIGTERM +2026/03/20 16:48:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:48:29 ───────────────────────────────────────────────── +2026/03/20 16:48:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:48:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:29.575536451Z"} +2026/03/20 16:48:34 [metric_collector] {"stage_name":"metric_collector","events_processed":4,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0.8,"last_update":"2026-03-20T16:48:29.575783075Z"} +2026/03/20 16:48:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:29.58529338Z"} +2026/03/20 16:48:34 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:29.719577456Z"} +2026/03/20 16:48:34 [transform_engine] {"stage_name":"transform_engine","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:29.719599367Z"} +2026/03/20 16:48:34 ───────────────────────────────────────────────── +2026/03/20 16:48:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:48:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:34.575670538Z"} +2026/03/20 16:48:39 [metric_collector] {"stage_name":"metric_collector","events_processed":9,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1.8,"last_update":"2026-03-20T16:48:34.575964341Z"} +2026/03/20 16:48:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:34.584570094Z"} +2026/03/20 16:48:39 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:34.718794313Z"} +2026/03/20 16:48:39 [transform_engine] {"stage_name":"transform_engine","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:34.718743998Z"} +2026/03/20 16:48:39 ───────────────────────────────────────────────── +2026/03/20 16:48:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:48:44 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:39.719693062Z"} +2026/03/20 16:48:44 [transform_engine] {"stage_name":"transform_engine","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:39.719805904Z"} +2026/03/20 16:48:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:39.575531231Z"} +2026/03/20 16:48:44 [metric_collector] {"stage_name":"metric_collector","events_processed":14,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2.8,"last_update":"2026-03-20T16:48:39.575968435Z"} +2026/03/20 16:48:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:39.585382545Z"} +2026/03/20 16:48:44 ───────────────────────────────────────────────── +2026/03/20 16:48:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:48:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:44.575860115Z"} +2026/03/20 16:48:49 [metric_collector] {"stage_name":"metric_collector","events_processed":19,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3.8,"last_update":"2026-03-20T16:48:44.576518826Z"} +2026/03/20 16:48:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":10,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:44.585441162Z"} +2026/03/20 16:48:49 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:44.7196865Z"} +2026/03/20 16:48:49 [transform_engine] {"stage_name":"transform_engine","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:44.719741723Z"} +2026/03/20 16:48:49 ───────────────────────────────────────────────── +2026/03/20 16:48:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:48:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":12,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:49.584959564Z"} +2026/03/20 16:48:54 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:49.719508177Z"} +2026/03/20 16:48:54 [transform_engine] {"stage_name":"transform_engine","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:49.719397649Z"} +2026/03/20 16:48:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:49.575603758Z"} +2026/03/20 16:48:54 [metric_collector] {"stage_name":"metric_collector","events_processed":24,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4.8,"last_update":"2026-03-20T16:48:49.576337161Z"} +2026/03/20 16:48:54 ───────────────────────────────────────────────── +2026/03/20 16:48:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:48:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:54.576105206Z"} +2026/03/20 16:48:59 [metric_collector] {"stage_name":"metric_collector","events_processed":29,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5.8,"last_update":"2026-03-20T16:48:54.576092272Z"} +2026/03/20 16:48:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":12,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:54.576205004Z"} +2026/03/20 16:48:59 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:54.719540066Z"} +2026/03/20 16:48:59 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":116.941905,"throughput_eps":0,"last_update":"2026-03-20T16:48:54.836510845Z"} +2026/03/20 16:48:59 ───────────────────────────────────────────────── +2026/03/20 16:49:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:04 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":116.941905,"throughput_eps":0,"last_update":"2026-03-20T16:48:59.719123877Z"} +2026/03/20 16:49:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:59.575532235Z"} +2026/03/20 16:49:04 [metric_collector] {"stage_name":"metric_collector","events_processed":34,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6.8,"last_update":"2026-03-20T16:48:59.576019795Z"} +2026/03/20 16:49:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":16,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:59.587720891Z"} +2026/03/20 16:49:04 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.336335999999999,"throughput_eps":0,"last_update":"2026-03-20T16:48:59.71917319Z"} +2026/03/20 16:49:04 ───────────────────────────────────────────────── +2026/03/20 16:49:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:09 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":116.941905,"throughput_eps":0,"last_update":"2026-03-20T16:49:04.719482906Z"} +2026/03/20 16:49:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:04.575944069Z"} +2026/03/20 16:49:09 [metric_collector] {"stage_name":"metric_collector","events_processed":39,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7.8,"last_update":"2026-03-20T16:49:04.576692821Z"} +2026/03/20 16:49:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":18,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:04.585060822Z"} +2026/03/20 16:49:09 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.336335999999999,"throughput_eps":0,"last_update":"2026-03-20T16:49:04.719456406Z"} +2026/03/20 16:49:09 ───────────────────────────────────────────────── +2026/03/20 16:49:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:09.57549729Z"} +2026/03/20 16:49:14 [metric_collector] {"stage_name":"metric_collector","events_processed":44,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":8.8,"last_update":"2026-03-20T16:49:09.575818847Z"} +2026/03/20 16:49:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":20,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:09.586163401Z"} +2026/03/20 16:49:14 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.336335999999999,"throughput_eps":0,"last_update":"2026-03-20T16:49:09.719551276Z"} +2026/03/20 16:49:14 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":116.941905,"throughput_eps":0,"last_update":"2026-03-20T16:49:09.719565242Z"} +2026/03/20 16:49:14 ───────────────────────────────────────────────── +2026/03/20 16:49:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:14.575493572Z"} +2026/03/20 16:49:19 [metric_collector] {"stage_name":"metric_collector","events_processed":49,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":9.8,"last_update":"2026-03-20T16:49:14.575775264Z"} +2026/03/20 16:49:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":22,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:14.585754651Z"} +2026/03/20 16:49:19 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.336335999999999,"throughput_eps":0,"last_update":"2026-03-20T16:49:14.719166012Z"} +2026/03/20 16:49:19 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":116.941905,"throughput_eps":0,"last_update":"2026-03-20T16:49:14.719183655Z"} +2026/03/20 16:49:19 ───────────────────────────────────────────────── +2026/03/20 16:49:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:24 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":116.941905,"throughput_eps":0,"last_update":"2026-03-20T16:49:19.718985592Z"} +2026/03/20 16:49:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:19.575935993Z"} +2026/03/20 16:49:24 [metric_collector] {"stage_name":"metric_collector","events_processed":54,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":10.8,"last_update":"2026-03-20T16:49:19.576692923Z"} +2026/03/20 16:49:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":24,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:19.58465779Z"} +2026/03/20 16:49:24 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.336335999999999,"throughput_eps":0,"last_update":"2026-03-20T16:49:19.718970323Z"} +2026/03/20 16:49:24 ───────────────────────────────────────────────── +2026/03/20 16:49:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:29 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.336335999999999,"throughput_eps":0,"last_update":"2026-03-20T16:49:24.719142683Z"} +2026/03/20 16:49:29 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":116.26926880000002,"throughput_eps":0,"last_update":"2026-03-20T16:49:24.832734852Z"} +2026/03/20 16:49:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:24.575946834Z"} +2026/03/20 16:49:29 [metric_collector] {"stage_name":"metric_collector","events_processed":59,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":11.8,"last_update":"2026-03-20T16:49:24.576294771Z"} +2026/03/20 16:49:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":26,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:24.584827262Z"} +2026/03/20 16:49:29 ───────────────────────────────────────────────── +2026/03/20 16:49:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:34 [metric_collector] {"stage_name":"metric_collector","events_processed":64,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":12.8,"last_update":"2026-03-20T16:49:29.57599864Z"} +2026/03/20 16:49:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":28,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:29.585887356Z"} +2026/03/20 16:49:34 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.6488819999999995,"throughput_eps":0,"last_update":"2026-03-20T16:49:29.71930467Z"} +2026/03/20 16:49:34 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":116.26926880000002,"throughput_eps":0,"last_update":"2026-03-20T16:49:29.719319738Z"} +2026/03/20 16:49:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:29.575502624Z"} +2026/03/20 16:49:34 ───────────────────────────────────────────────── +2026/03/20 16:49:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:34.575556739Z"} +2026/03/20 16:49:39 [metric_collector] {"stage_name":"metric_collector","events_processed":69,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":13.8,"last_update":"2026-03-20T16:49:34.575595172Z"} +2026/03/20 16:49:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":30,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:34.585426081Z"} +2026/03/20 16:49:39 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.6488819999999995,"throughput_eps":0,"last_update":"2026-03-20T16:49:34.719770576Z"} +2026/03/20 16:49:39 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":116.26926880000002,"throughput_eps":0,"last_update":"2026-03-20T16:49:34.718646894Z"} +2026/03/20 16:49:39 ───────────────────────────────────────────────── +2026/03/20 16:49:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":32,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:39.585836618Z"} +2026/03/20 16:49:44 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.6488819999999995,"throughput_eps":0,"last_update":"2026-03-20T16:49:39.719228675Z"} +2026/03/20 16:49:44 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":116.26926880000002,"throughput_eps":0,"last_update":"2026-03-20T16:49:39.719239665Z"} +2026/03/20 16:49:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:39.575768218Z"} +2026/03/20 16:49:44 [metric_collector] {"stage_name":"metric_collector","events_processed":74,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":14.8,"last_update":"2026-03-20T16:49:39.576147224Z"} +2026/03/20 16:49:44 ───────────────────────────────────────────────── +2026/03/20 16:49:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:44.575853244Z"} +2026/03/20 16:49:49 [metric_collector] {"stage_name":"metric_collector","events_processed":79,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":15.8,"last_update":"2026-03-20T16:49:44.576470551Z"} +2026/03/20 16:49:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":34,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:44.587258184Z"} +2026/03/20 16:49:49 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.6488819999999995,"throughput_eps":0,"last_update":"2026-03-20T16:49:44.719628298Z"} +2026/03/20 16:49:49 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":116.26926880000002,"throughput_eps":0,"last_update":"2026-03-20T16:49:44.719639449Z"} +2026/03/20 16:49:49 ───────────────────────────────────────────────── +2026/03/20 16:49:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:49.575591094Z"} +2026/03/20 16:49:54 [metric_collector] {"stage_name":"metric_collector","events_processed":84,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":16.8,"last_update":"2026-03-20T16:49:49.575687335Z"} +2026/03/20 16:49:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":36,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:49.586302415Z"} +2026/03/20 16:49:54 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.6488819999999995,"throughput_eps":0,"last_update":"2026-03-20T16:49:49.719602785Z"} +2026/03/20 16:49:54 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":116.26926880000002,"throughput_eps":0,"last_update":"2026-03-20T16:49:49.719615039Z"} +2026/03/20 16:49:54 ───────────────────────────────────────────────── +2026/03/20 16:49:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:59 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":106.24250644000003,"throughput_eps":0,"last_update":"2026-03-20T16:49:54.785284587Z"} +2026/03/20 16:49:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:54.575806051Z"} +2026/03/20 16:49:59 [metric_collector] {"stage_name":"metric_collector","events_processed":89,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":17.8,"last_update":"2026-03-20T16:49:54.576158607Z"} +2026/03/20 16:49:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":38,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:54.587900078Z"} +2026/03/20 16:49:59 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.6488819999999995,"throughput_eps":0,"last_update":"2026-03-20T16:49:54.719139241Z"} +2026/03/20 16:49:59 ───────────────────────────────────────────────── +2026/03/20 16:50:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:04 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":106.24250644000003,"throughput_eps":0,"last_update":"2026-03-20T16:49:59.719235596Z"} +2026/03/20 16:50:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:59.575955204Z"} +2026/03/20 16:50:04 [metric_collector] {"stage_name":"metric_collector","events_processed":94,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":18.8,"last_update":"2026-03-20T16:49:59.576567402Z"} +2026/03/20 16:50:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":40,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:59.586833807Z"} +2026/03/20 16:50:04 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.5925302,"throughput_eps":0,"last_update":"2026-03-20T16:49:59.719209567Z"} +2026/03/20 16:50:04 ───────────────────────────────────────────────── +2026/03/20 16:50:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:09 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":106.24250644000003,"throughput_eps":0,"last_update":"2026-03-20T16:50:04.718781386Z"} +2026/03/20 16:50:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:04.575691504Z"} +2026/03/20 16:50:09 [metric_collector] {"stage_name":"metric_collector","events_processed":99,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":19.8,"last_update":"2026-03-20T16:50:04.576062586Z"} +2026/03/20 16:50:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":42,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:04.587571303Z"} +2026/03/20 16:50:09 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.5925302,"throughput_eps":0,"last_update":"2026-03-20T16:50:04.718882588Z"} +2026/03/20 16:50:09 ───────────────────────────────────────────────── +2026/03/20 16:50:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:14 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":106.24250644000003,"throughput_eps":0,"last_update":"2026-03-20T16:50:09.719720708Z"} +2026/03/20 16:50:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:09.57552283Z"} +2026/03/20 16:50:14 [metric_collector] {"stage_name":"metric_collector","events_processed":104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":20.8,"last_update":"2026-03-20T16:50:09.575517259Z"} +2026/03/20 16:50:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":44,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:09.586505556Z"} +2026/03/20 16:50:14 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.5925302,"throughput_eps":0,"last_update":"2026-03-20T16:50:09.719680411Z"} +2026/03/20 16:50:14 ───────────────────────────────────────────────── +2026/03/20 16:50:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:19 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.5925302,"throughput_eps":0,"last_update":"2026-03-20T16:50:14.719565237Z"} +2026/03/20 16:50:19 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":106.24250644000003,"throughput_eps":0,"last_update":"2026-03-20T16:50:14.719448135Z"} +2026/03/20 16:50:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:14.575595401Z"} +2026/03/20 16:50:19 [metric_collector] {"stage_name":"metric_collector","events_processed":109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":21.8,"last_update":"2026-03-20T16:50:14.575629916Z"} +2026/03/20 16:50:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":46,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:14.585055922Z"} +2026/03/20 16:50:19 ───────────────────────────────────────────────── +2026/03/20 16:50:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:19.57563212Z"} +2026/03/20 16:50:24 [metric_collector] {"stage_name":"metric_collector","events_processed":114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":22.8,"last_update":"2026-03-20T16:50:19.575936035Z"} +2026/03/20 16:50:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":48,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:19.585837934Z"} +2026/03/20 16:50:24 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.5925302,"throughput_eps":0,"last_update":"2026-03-20T16:50:19.719195087Z"} +2026/03/20 16:50:24 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":106.24250644000003,"throughput_eps":0,"last_update":"2026-03-20T16:50:19.719237988Z"} +2026/03/20 16:50:24 ───────────────────────────────────────────────── +2026/03/20 16:50:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:29 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.5925302,"throughput_eps":0,"last_update":"2026-03-20T16:50:24.719198455Z"} +2026/03/20 16:50:29 [transform_engine] {"stage_name":"transform_engine","events_processed":4,"events_dropped":0,"avg_latency_ms":107.08107695200003,"throughput_eps":0,"last_update":"2026-03-20T16:50:24.829228097Z"} +2026/03/20 16:50:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:24.575678131Z"} +2026/03/20 16:50:29 [metric_collector] {"stage_name":"metric_collector","events_processed":119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":23.8,"last_update":"2026-03-20T16:50:24.576015419Z"} +2026/03/20 16:50:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":50,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:24.585537732Z"} +2026/03/20 16:50:29 ───────────────────────────────────────────────── +2026/03/20 16:50:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:29.575676984Z"} +2026/03/20 16:50:34 [metric_collector] {"stage_name":"metric_collector","events_processed":124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":24.8,"last_update":"2026-03-20T16:50:29.576021606Z"} +2026/03/20 16:50:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":52,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:29.586575203Z"} +2026/03/20 16:50:34 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.74883116,"throughput_eps":0,"last_update":"2026-03-20T16:50:29.718849969Z"} +2026/03/20 16:50:34 [transform_engine] {"stage_name":"transform_engine","events_processed":4,"events_dropped":0,"avg_latency_ms":107.08107695200003,"throughput_eps":0,"last_update":"2026-03-20T16:50:29.718863625Z"} +2026/03/20 16:50:34 ───────────────────────────────────────────────── +2026/03/20 16:50:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":54,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:34.585291978Z"} +2026/03/20 16:50:39 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.74883116,"throughput_eps":0,"last_update":"2026-03-20T16:50:34.719545535Z"} +2026/03/20 16:50:39 [transform_engine] {"stage_name":"transform_engine","events_processed":4,"events_dropped":0,"avg_latency_ms":107.08107695200003,"throughput_eps":0,"last_update":"2026-03-20T16:50:34.71955884Z"} +2026/03/20 16:50:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:34.575538012Z"} +2026/03/20 16:50:39 [metric_collector] {"stage_name":"metric_collector","events_processed":129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":25.8,"last_update":"2026-03-20T16:50:34.575906299Z"} +2026/03/20 16:50:39 ───────────────────────────────────────────────── +2026/03/20 16:50:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:44 [transform_engine] {"stage_name":"transform_engine","events_processed":4,"events_dropped":0,"avg_latency_ms":107.08107695200003,"throughput_eps":0,"last_update":"2026-03-20T16:50:39.718729594Z"} +2026/03/20 16:50:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:39.575534169Z"} +2026/03/20 16:50:44 [metric_collector] {"stage_name":"metric_collector","events_processed":134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":26.8,"last_update":"2026-03-20T16:50:39.575770838Z"} +2026/03/20 16:50:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":56,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:39.585606031Z"} +2026/03/20 16:50:44 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.74883116,"throughput_eps":0,"last_update":"2026-03-20T16:50:39.718850903Z"} +2026/03/20 16:50:44 ───────────────────────────────────────────────── +2026/03/20 16:50:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:49 [metric_collector] {"stage_name":"metric_collector","events_processed":139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":27.8,"last_update":"2026-03-20T16:50:44.576706484Z"} +2026/03/20 16:50:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":58,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:44.586733943Z"} +2026/03/20 16:50:49 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.74883116,"throughput_eps":0,"last_update":"2026-03-20T16:50:44.718945104Z"} +2026/03/20 16:50:49 [transform_engine] {"stage_name":"transform_engine","events_processed":4,"events_dropped":0,"avg_latency_ms":107.08107695200003,"throughput_eps":0,"last_update":"2026-03-20T16:50:44.718955274Z"} +2026/03/20 16:50:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:44.575932649Z"} +2026/03/20 16:50:49 ───────────────────────────────────────────────── +2026/03/20 16:50:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:49.576000945Z"} +2026/03/20 16:50:54 [metric_collector] {"stage_name":"metric_collector","events_processed":144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":28.8,"last_update":"2026-03-20T16:50:49.576370875Z"} +2026/03/20 16:50:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":60,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:49.584641882Z"} +2026/03/20 16:50:54 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.74883116,"throughput_eps":0,"last_update":"2026-03-20T16:50:49.718788081Z"} +2026/03/20 16:50:54 [transform_engine] {"stage_name":"transform_engine","events_processed":4,"events_dropped":0,"avg_latency_ms":107.08107695200003,"throughput_eps":0,"last_update":"2026-03-20T16:50:49.718801366Z"} +2026/03/20 16:50:54 ───────────────────────────────────────────────── +2026/03/20 16:50:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:54.575959145Z"} +2026/03/20 16:50:59 [metric_collector] {"stage_name":"metric_collector","events_processed":149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":29.8,"last_update":"2026-03-20T16:50:54.576295311Z"} +2026/03/20 16:50:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":62,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:54.584911986Z"} +2026/03/20 16:50:59 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.74883116,"throughput_eps":0,"last_update":"2026-03-20T16:50:54.719214694Z"} +2026/03/20 16:50:59 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":108.45506696160004,"throughput_eps":0,"last_update":"2026-03-20T16:50:54.833174689Z"} +2026/03/20 16:50:59 ───────────────────────────────────────────────── +2026/03/20 16:51:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:04 [metric_collector] {"stage_name":"metric_collector","events_processed":154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":30.8,"last_update":"2026-03-20T16:50:59.575604839Z"} +2026/03/20 16:51:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":64,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:59.585501618Z"} +2026/03/20 16:51:04 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":4.904423528000001,"throughput_eps":0,"last_update":"2026-03-20T16:50:59.719794733Z"} +2026/03/20 16:51:04 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":108.45506696160004,"throughput_eps":0,"last_update":"2026-03-20T16:50:59.718697826Z"} +2026/03/20 16:51:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:59.575497305Z"} +2026/03/20 16:51:04 ───────────────────────────────────────────────── +2026/03/20 16:51:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:04.575876206Z"} +2026/03/20 16:51:09 [metric_collector] {"stage_name":"metric_collector","events_processed":159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":31.8,"last_update":"2026-03-20T16:51:04.576536647Z"} +2026/03/20 16:51:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":66,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:04.585613267Z"} +2026/03/20 16:51:09 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":4.904423528000001,"throughput_eps":0,"last_update":"2026-03-20T16:51:04.718910449Z"} +2026/03/20 16:51:09 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":108.45506696160004,"throughput_eps":0,"last_update":"2026-03-20T16:51:04.718864632Z"} +2026/03/20 16:51:09 ───────────────────────────────────────────────── +2026/03/20 16:51:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:14 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":108.45506696160004,"throughput_eps":0,"last_update":"2026-03-20T16:51:09.719568995Z"} +2026/03/20 16:51:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:09.575865991Z"} +2026/03/20 16:51:14 [metric_collector] {"stage_name":"metric_collector","events_processed":164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":32.8,"last_update":"2026-03-20T16:51:09.576268643Z"} +2026/03/20 16:51:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":68,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:09.586227977Z"} +2026/03/20 16:51:14 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":4.904423528000001,"throughput_eps":0,"last_update":"2026-03-20T16:51:09.719469807Z"} +2026/03/20 16:51:14 ───────────────────────────────────────────────── +2026/03/20 16:51:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":70,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:14.585563722Z"} +2026/03/20 16:51:19 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":4.904423528000001,"throughput_eps":0,"last_update":"2026-03-20T16:51:14.718823028Z"} +2026/03/20 16:51:19 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":108.45506696160004,"throughput_eps":0,"last_update":"2026-03-20T16:51:14.718796428Z"} +2026/03/20 16:51:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:14.575802631Z"} +2026/03/20 16:51:19 [metric_collector] {"stage_name":"metric_collector","events_processed":169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":33.8,"last_update":"2026-03-20T16:51:14.576032186Z"} +2026/03/20 16:51:19 ───────────────────────────────────────────────── +2026/03/20 16:51:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:19.576239943Z"} +2026/03/20 16:51:24 [metric_collector] {"stage_name":"metric_collector","events_processed":174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":34.8,"last_update":"2026-03-20T16:51:19.576857783Z"} +2026/03/20 16:51:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":72,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:19.585763315Z"} +2026/03/20 16:51:24 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":4.904423528000001,"throughput_eps":0,"last_update":"2026-03-20T16:51:19.719098538Z"} +2026/03/20 16:51:24 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":108.45506696160004,"throughput_eps":0,"last_update":"2026-03-20T16:51:19.71898359Z"} +2026/03/20 16:51:24 ───────────────────────────────────────────────── +2026/03/20 16:51:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:29 [metric_collector] {"stage_name":"metric_collector","events_processed":179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":35.8,"last_update":"2026-03-20T16:51:24.5759187Z"} +2026/03/20 16:51:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":74,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:24.586973626Z"} +2026/03/20 16:51:29 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":4.904423528000001,"throughput_eps":0,"last_update":"2026-03-20T16:51:24.719256537Z"} +2026/03/20 16:51:29 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":110.37128296928003,"throughput_eps":0,"last_update":"2026-03-20T16:51:24.837440646Z"} +2026/03/20 16:51:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:24.575527129Z"} +2026/03/20 16:51:29 ───────────────────────────────────────────────── +2026/03/20 16:51:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:29.57587163Z"} +2026/03/20 16:51:34 [metric_collector] {"stage_name":"metric_collector","events_processed":184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":36.8,"last_update":"2026-03-20T16:51:29.57621459Z"} +2026/03/20 16:51:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":76,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:29.585142618Z"} +2026/03/20 16:51:34 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":5.3549208224000004,"throughput_eps":0,"last_update":"2026-03-20T16:51:29.719529348Z"} +2026/03/20 16:51:34 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":110.37128296928003,"throughput_eps":0,"last_update":"2026-03-20T16:51:29.719380996Z"} +2026/03/20 16:51:34 ───────────────────────────────────────────────── +2026/03/20 16:51:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:34.575817233Z"} +2026/03/20 16:51:39 [metric_collector] {"stage_name":"metric_collector","events_processed":189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":37.8,"last_update":"2026-03-20T16:51:34.576144453Z"} +2026/03/20 16:51:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":78,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:34.587217329Z"} +2026/03/20 16:51:39 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":5.3549208224000004,"throughput_eps":0,"last_update":"2026-03-20T16:51:34.719528386Z"} +2026/03/20 16:51:39 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":110.37128296928003,"throughput_eps":0,"last_update":"2026-03-20T16:51:34.719534618Z"} +2026/03/20 16:51:39 ───────────────────────────────────────────────── +2026/03/20 16:51:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:44 [metric_collector] {"stage_name":"metric_collector","events_processed":194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":38.8,"last_update":"2026-03-20T16:51:39.576155628Z"} +2026/03/20 16:51:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":80,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:39.586343099Z"} +2026/03/20 16:51:44 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":5.3549208224000004,"throughput_eps":0,"last_update":"2026-03-20T16:51:39.719745355Z"} +2026/03/20 16:51:44 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":110.37128296928003,"throughput_eps":0,"last_update":"2026-03-20T16:51:39.719759753Z"} +2026/03/20 16:51:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:39.575753866Z"} +2026/03/20 16:51:44 ───────────────────────────────────────────────── +2026/03/20 16:51:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:44.575792361Z"} +2026/03/20 16:51:49 [metric_collector] {"stage_name":"metric_collector","events_processed":199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":39.8,"last_update":"2026-03-20T16:51:44.576296226Z"} +2026/03/20 16:51:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":82,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:44.584910616Z"} +2026/03/20 16:51:49 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":5.3549208224000004,"throughput_eps":0,"last_update":"2026-03-20T16:51:44.71915501Z"} +2026/03/20 16:51:49 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":110.37128296928003,"throughput_eps":0,"last_update":"2026-03-20T16:51:44.719166973Z"} +2026/03/20 16:51:49 ───────────────────────────────────────────────── +2026/03/20 16:51:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":84,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:49.587098172Z"} +2026/03/20 16:51:54 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":5.3549208224000004,"throughput_eps":0,"last_update":"2026-03-20T16:51:49.719504342Z"} +2026/03/20 16:51:54 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":110.37128296928003,"throughput_eps":0,"last_update":"2026-03-20T16:51:49.719528368Z"} +2026/03/20 16:51:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:49.575813006Z"} +2026/03/20 16:51:54 [metric_collector] {"stage_name":"metric_collector","events_processed":204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":40.8,"last_update":"2026-03-20T16:51:49.575708538Z"} +2026/03/20 16:51:54 ───────────────────────────────────────────────── +2026/03/20 16:51:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:54.575847329Z"} +2026/03/20 16:51:59 [metric_collector] {"stage_name":"metric_collector","events_processed":209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":41.8,"last_update":"2026-03-20T16:51:54.57607407Z"} +2026/03/20 16:51:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":86,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:54.585249137Z"} +2026/03/20 16:51:59 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":5.3549208224000004,"throughput_eps":0,"last_update":"2026-03-20T16:51:54.719640361Z"} +2026/03/20 16:51:59 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":110.37128296928003,"throughput_eps":0,"last_update":"2026-03-20T16:51:54.719653957Z"} +2026/03/20 16:51:59 ───────────────────────────────────────────────── +2026/03/20 16:52:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:04 [transform_engine] {"stage_name":"transform_engine","events_processed":7,"events_dropped":0,"avg_latency_ms":100.96300297542402,"throughput_eps":0,"last_update":"2026-03-20T16:51:59.719323264Z"} +2026/03/20 16:52:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:59.576011202Z"} +2026/03/20 16:52:04 [metric_collector] {"stage_name":"metric_collector","events_processed":214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":42.8,"last_update":"2026-03-20T16:51:59.576553881Z"} +2026/03/20 16:52:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":88,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:59.585084197Z"} +2026/03/20 16:52:04 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.664770657920001,"throughput_eps":0,"last_update":"2026-03-20T16:51:59.719416651Z"} +2026/03/20 16:52:04 ───────────────────────────────────────────────── +2026/03/20 16:52:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:04.575725964Z"} +2026/03/20 16:52:09 [metric_collector] {"stage_name":"metric_collector","events_processed":219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":43.8,"last_update":"2026-03-20T16:52:04.575807548Z"} +2026/03/20 16:52:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":90,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:04.585678209Z"} +2026/03/20 16:52:09 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.664770657920001,"throughput_eps":0,"last_update":"2026-03-20T16:52:04.719025162Z"} +2026/03/20 16:52:09 [transform_engine] {"stage_name":"transform_engine","events_processed":7,"events_dropped":0,"avg_latency_ms":100.96300297542402,"throughput_eps":0,"last_update":"2026-03-20T16:52:04.718900646Z"} +2026/03/20 16:52:09 ───────────────────────────────────────────────── +2026/03/20 16:52:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":92,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:09.584733061Z"} +2026/03/20 16:52:14 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.664770657920001,"throughput_eps":0,"last_update":"2026-03-20T16:52:09.718969862Z"} +2026/03/20 16:52:14 [transform_engine] {"stage_name":"transform_engine","events_processed":7,"events_dropped":0,"avg_latency_ms":100.96300297542402,"throughput_eps":0,"last_update":"2026-03-20T16:52:09.718997284Z"} +2026/03/20 16:52:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:09.575830074Z"} +2026/03/20 16:52:14 [metric_collector] {"stage_name":"metric_collector","events_processed":224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":44.8,"last_update":"2026-03-20T16:52:09.576378333Z"} +2026/03/20 16:52:14 ───────────────────────────────────────────────── +2026/03/20 16:52:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:19 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.664770657920001,"throughput_eps":0,"last_update":"2026-03-20T16:52:14.719738352Z"} +2026/03/20 16:52:19 [transform_engine] {"stage_name":"transform_engine","events_processed":7,"events_dropped":0,"avg_latency_ms":100.96300297542402,"throughput_eps":0,"last_update":"2026-03-20T16:52:14.719698706Z"} +2026/03/20 16:52:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:14.575541236Z"} +2026/03/20 16:52:19 [metric_collector] {"stage_name":"metric_collector","events_processed":229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":45.8,"last_update":"2026-03-20T16:52:14.576072904Z"} +2026/03/20 16:52:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":94,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:14.585346217Z"} +2026/03/20 16:52:19 ───────────────────────────────────────────────── +2026/03/20 16:52:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:24 [transform_engine] {"stage_name":"transform_engine","events_processed":7,"events_dropped":0,"avg_latency_ms":100.96300297542402,"throughput_eps":0,"last_update":"2026-03-20T16:52:19.719384301Z"} +2026/03/20 16:52:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:19.575909094Z"} +2026/03/20 16:52:24 [metric_collector] {"stage_name":"metric_collector","events_processed":234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":46.8,"last_update":"2026-03-20T16:52:19.576231235Z"} +2026/03/20 16:52:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":96,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:19.586063179Z"} +2026/03/20 16:52:24 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.664770657920001,"throughput_eps":0,"last_update":"2026-03-20T16:52:19.719403157Z"} +2026/03/20 16:52:24 ───────────────────────────────────────────────── +2026/03/20 16:52:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:24.575498344Z"} +2026/03/20 16:52:29 [metric_collector] {"stage_name":"metric_collector","events_processed":239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":47.8,"last_update":"2026-03-20T16:52:24.575872955Z"} +2026/03/20 16:52:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":98,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:24.585687548Z"} +2026/03/20 16:52:29 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.664770657920001,"throughput_eps":0,"last_update":"2026-03-20T16:52:24.718930802Z"} +2026/03/20 16:52:29 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":93.47140998033922,"throughput_eps":0,"last_update":"2026-03-20T16:52:24.782450026Z"} +2026/03/20 16:52:29 ───────────────────────────────────────────────── +2026/03/20 16:52:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:29.575694283Z"} +2026/03/20 16:52:34 [metric_collector] {"stage_name":"metric_collector","events_processed":244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":48.8,"last_update":"2026-03-20T16:52:29.576091317Z"} +2026/03/20 16:52:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:29.585402415Z"} +2026/03/20 16:52:34 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":5.952213726336001,"throughput_eps":0,"last_update":"2026-03-20T16:52:29.719765983Z"} +2026/03/20 16:52:34 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":93.47140998033922,"throughput_eps":0,"last_update":"2026-03-20T16:52:29.719728813Z"} +2026/03/20 16:52:34 ───────────────────────────────────────────────── +2026/03/20 16:52:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:39 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":93.47140998033922,"throughput_eps":0,"last_update":"2026-03-20T16:52:34.718976661Z"} +2026/03/20 16:52:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:34.575554192Z"} +2026/03/20 16:52:39 [metric_collector] {"stage_name":"metric_collector","events_processed":249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":49.8,"last_update":"2026-03-20T16:52:34.576156545Z"} +2026/03/20 16:52:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:34.585636687Z"} +2026/03/20 16:52:39 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":5.952213726336001,"throughput_eps":0,"last_update":"2026-03-20T16:52:34.718840303Z"} +2026/03/20 16:52:39 ───────────────────────────────────────────────── +2026/03/20 16:52:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:44 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":5.952213726336001,"throughput_eps":0,"last_update":"2026-03-20T16:52:39.719291779Z"} +2026/03/20 16:52:44 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":93.47140998033922,"throughput_eps":0,"last_update":"2026-03-20T16:52:39.719224441Z"} +2026/03/20 16:52:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:39.575734785Z"} +2026/03/20 16:52:44 [metric_collector] {"stage_name":"metric_collector","events_processed":254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":50.8,"last_update":"2026-03-20T16:52:39.576067947Z"} +2026/03/20 16:52:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:39.586983056Z"} +2026/03/20 16:52:44 ───────────────────────────────────────────────── +2026/03/20 16:52:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:44.575586853Z"} +2026/03/20 16:52:49 [metric_collector] {"stage_name":"metric_collector","events_processed":259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":51.8,"last_update":"2026-03-20T16:52:44.575682484Z"} +2026/03/20 16:52:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:44.58603727Z"} +2026/03/20 16:52:49 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":5.952213726336001,"throughput_eps":0,"last_update":"2026-03-20T16:52:44.719490244Z"} +2026/03/20 16:52:49 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":93.47140998033922,"throughput_eps":0,"last_update":"2026-03-20T16:52:44.719520561Z"} +2026/03/20 16:52:49 ───────────────────────────────────────────────── +2026/03/20 16:52:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:49.575728958Z"} +2026/03/20 16:52:54 [metric_collector] {"stage_name":"metric_collector","events_processed":264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":52.8,"last_update":"2026-03-20T16:52:49.576110122Z"} +2026/03/20 16:52:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:49.585335797Z"} +2026/03/20 16:52:54 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":5.952213726336001,"throughput_eps":0,"last_update":"2026-03-20T16:52:49.719685529Z"} +2026/03/20 16:52:54 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":93.47140998033922,"throughput_eps":0,"last_update":"2026-03-20T16:52:49.719700708Z"} +2026/03/20 16:52:54 ───────────────────────────────────────────────── +2026/03/20 16:52:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:54.575819843Z"} +2026/03/20 16:52:59 [metric_collector] {"stage_name":"metric_collector","events_processed":269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":53.8,"last_update":"2026-03-20T16:52:54.576231174Z"} +2026/03/20 16:52:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:54.585836402Z"} +2026/03/20 16:52:59 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":5.952213726336001,"throughput_eps":0,"last_update":"2026-03-20T16:52:54.719482946Z"} +2026/03/20 16:52:59 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":88.24757618427137,"throughput_eps":0,"last_update":"2026-03-20T16:52:54.786557941Z"} +2026/03/20 16:52:59 ───────────────────────────────────────────────── +2026/03/20 16:53:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:59.576043195Z"} +2026/03/20 16:53:04 [metric_collector] {"stage_name":"metric_collector","events_processed":274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":54.8,"last_update":"2026-03-20T16:52:59.576562771Z"} +2026/03/20 16:53:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:59.585064235Z"} +2026/03/20 16:53:04 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":6.407688381068801,"throughput_eps":0,"last_update":"2026-03-20T16:52:59.719271692Z"} +2026/03/20 16:53:04 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":88.24757618427137,"throughput_eps":0,"last_update":"2026-03-20T16:52:59.719377112Z"} +2026/03/20 16:53:04 ───────────────────────────────────────────────── +2026/03/20 16:53:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:04.575902495Z"} +2026/03/20 16:53:09 [metric_collector] {"stage_name":"metric_collector","events_processed":279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":55.8,"last_update":"2026-03-20T16:53:04.576469151Z"} +2026/03/20 16:53:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:04.586781976Z"} +2026/03/20 16:53:09 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":6.407688381068801,"throughput_eps":0,"last_update":"2026-03-20T16:53:04.718918306Z"} +2026/03/20 16:53:09 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":88.24757618427137,"throughput_eps":0,"last_update":"2026-03-20T16:53:04.718937242Z"} +2026/03/20 16:53:09 ───────────────────────────────────────────────── +2026/03/20 16:53:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:09.575760499Z"} +2026/03/20 16:53:14 [metric_collector] {"stage_name":"metric_collector","events_processed":283,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":56.6,"last_update":"2026-03-20T16:53:09.575765869Z"} +2026/03/20 16:53:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:09.58687059Z"} +2026/03/20 16:53:14 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":6.407688381068801,"throughput_eps":0,"last_update":"2026-03-20T16:53:09.719095243Z"} +2026/03/20 16:53:14 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":88.24757618427137,"throughput_eps":0,"last_update":"2026-03-20T16:53:09.719109782Z"} +2026/03/20 16:53:14 ───────────────────────────────────────────────── +2026/03/20 16:53:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:19 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":6.407688381068801,"throughput_eps":0,"last_update":"2026-03-20T16:53:14.719177148Z"} +2026/03/20 16:53:19 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":88.24757618427137,"throughput_eps":0,"last_update":"2026-03-20T16:53:14.719211033Z"} +2026/03/20 16:53:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:14.575551563Z"} +2026/03/20 16:53:19 [metric_collector] {"stage_name":"metric_collector","events_processed":289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":57.8,"last_update":"2026-03-20T16:53:14.575946093Z"} +2026/03/20 16:53:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:14.585796413Z"} +2026/03/20 16:53:19 ───────────────────────────────────────────────── +2026/03/20 16:53:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:24 [metric_collector] {"stage_name":"metric_collector","events_processed":294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":58.8,"last_update":"2026-03-20T16:53:19.576086358Z"} +2026/03/20 16:53:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:19.58581002Z"} +2026/03/20 16:53:24 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":6.407688381068801,"throughput_eps":0,"last_update":"2026-03-20T16:53:19.719095871Z"} +2026/03/20 16:53:24 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":88.24757618427137,"throughput_eps":0,"last_update":"2026-03-20T16:53:19.719142219Z"} +2026/03/20 16:53:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:19.575839169Z"} +2026/03/20 16:53:24 ───────────────────────────────────────────────── +2026/03/20 16:53:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:24.575734349Z"} +2026/03/20 16:53:29 [metric_collector] {"stage_name":"metric_collector","events_processed":299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":59.8,"last_update":"2026-03-20T16:53:24.576022947Z"} +2026/03/20 16:53:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":122,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:24.586312305Z"} +2026/03/20 16:53:29 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":6.407688381068801,"throughput_eps":0,"last_update":"2026-03-20T16:53:24.719919412Z"} +2026/03/20 16:53:29 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":83.2126591474171,"throughput_eps":0,"last_update":"2026-03-20T16:53:24.782817452Z"} +2026/03/20 16:53:29 ───────────────────────────────────────────────── +2026/03/20 16:53:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:34 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":6.370236304855041,"throughput_eps":0,"last_update":"2026-03-20T16:53:29.719497275Z"} +2026/03/20 16:53:34 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":83.2126591474171,"throughput_eps":0,"last_update":"2026-03-20T16:53:29.71950515Z"} +2026/03/20 16:53:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:34.575505873Z"} +2026/03/20 16:53:34 [metric_collector] {"stage_name":"metric_collector","events_processed":304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":60.8,"last_update":"2026-03-20T16:53:29.575825572Z"} +2026/03/20 16:53:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:29.585249427Z"} +2026/03/20 16:53:34 ───────────────────────────────────────────────── +2026/03/20 16:53:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:39 [metric_collector] {"stage_name":"metric_collector","events_processed":309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":61.8,"last_update":"2026-03-20T16:53:34.576313668Z"} +2026/03/20 16:53:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":126,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:34.585630352Z"} +2026/03/20 16:53:39 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":6.370236304855041,"throughput_eps":0,"last_update":"2026-03-20T16:53:34.718807572Z"} +2026/03/20 16:53:39 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":83.2126591474171,"throughput_eps":0,"last_update":"2026-03-20T16:53:34.718818903Z"} +2026/03/20 16:53:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:34.575505873Z"} +2026/03/20 16:53:39 ───────────────────────────────────────────────── +2026/03/20 16:53:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:39.576001175Z"} +2026/03/20 16:53:44 [metric_collector] {"stage_name":"metric_collector","events_processed":314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":62.8,"last_update":"2026-03-20T16:53:39.576513319Z"} +2026/03/20 16:53:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":128,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:39.585250303Z"} +2026/03/20 16:53:44 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":6.370236304855041,"throughput_eps":0,"last_update":"2026-03-20T16:53:39.719561894Z"} +2026/03/20 16:53:44 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":83.2126591474171,"throughput_eps":0,"last_update":"2026-03-20T16:53:39.71957584Z"} +2026/03/20 16:53:44 ───────────────────────────────────────────────── +2026/03/20 16:53:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:49 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":83.2126591474171,"throughput_eps":0,"last_update":"2026-03-20T16:53:44.719655129Z"} +2026/03/20 16:53:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:44.575795026Z"} +2026/03/20 16:53:49 [metric_collector] {"stage_name":"metric_collector","events_processed":319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":63.8,"last_update":"2026-03-20T16:53:44.576582994Z"} +2026/03/20 16:53:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":130,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:44.586229709Z"} +2026/03/20 16:53:49 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":6.370236304855041,"throughput_eps":0,"last_update":"2026-03-20T16:53:44.719638668Z"} +2026/03/20 16:53:49 ───────────────────────────────────────────────── +2026/03/20 16:53:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:49.575555506Z"} +2026/03/20 16:53:54 [metric_collector] {"stage_name":"metric_collector","events_processed":324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":64.8,"last_update":"2026-03-20T16:53:49.576014449Z"} +2026/03/20 16:53:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:49.58600057Z"} +2026/03/20 16:53:54 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":6.370236304855041,"throughput_eps":0,"last_update":"2026-03-20T16:53:49.718832186Z"} +2026/03/20 16:53:54 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":83.2126591474171,"throughput_eps":0,"last_update":"2026-03-20T16:53:49.718843838Z"} +2026/03/20 16:53:54 ───────────────────────────────────────────────── +2026/03/20 16:53:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:59 [metric_collector] {"stage_name":"metric_collector","events_processed":329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":65.8,"last_update":"2026-03-20T16:53:54.575760867Z"} +2026/03/20 16:53:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:54.586197667Z"} +2026/03/20 16:53:59 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":6.370236304855041,"throughput_eps":0,"last_update":"2026-03-20T16:53:54.71958779Z"} +2026/03/20 16:53:59 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":89.20370731793369,"throughput_eps":0,"last_update":"2026-03-20T16:53:54.832770387Z"} +2026/03/20 16:53:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:54.57554678Z"} +2026/03/20 16:53:59 ───────────────────────────────────────────────── +2026/03/20 16:54:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:59.575532939Z"} +2026/03/20 16:54:04 [metric_collector] {"stage_name":"metric_collector","events_processed":334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":66.8,"last_update":"2026-03-20T16:53:59.575765622Z"} +2026/03/20 16:54:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:59.585235605Z"} +2026/03/20 16:54:04 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":6.842923443884033,"throughput_eps":0,"last_update":"2026-03-20T16:53:59.719638476Z"} +2026/03/20 16:54:04 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":89.20370731793369,"throughput_eps":0,"last_update":"2026-03-20T16:53:59.719667271Z"} +2026/03/20 16:54:04 ───────────────────────────────────────────────── +2026/03/20 16:54:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:04.57575292Z"} +2026/03/20 16:54:09 [metric_collector] {"stage_name":"metric_collector","events_processed":339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":67.8,"last_update":"2026-03-20T16:54:04.57660009Z"} +2026/03/20 16:54:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:04.585226372Z"} +2026/03/20 16:54:09 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":6.842923443884033,"throughput_eps":0,"last_update":"2026-03-20T16:54:04.719446149Z"} +2026/03/20 16:54:09 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":89.20370731793369,"throughput_eps":0,"last_update":"2026-03-20T16:54:04.719554265Z"} +2026/03/20 16:54:09 ───────────────────────────────────────────────── +2026/03/20 16:54:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:14 [metric_collector] {"stage_name":"metric_collector","events_processed":344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":68.8,"last_update":"2026-03-20T16:54:09.576224527Z"} +2026/03/20 16:54:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:09.58438779Z"} +2026/03/20 16:54:14 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":6.842923443884033,"throughput_eps":0,"last_update":"2026-03-20T16:54:09.719824254Z"} +2026/03/20 16:54:14 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":89.20370731793369,"throughput_eps":0,"last_update":"2026-03-20T16:54:09.719631909Z"} +2026/03/20 16:54:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:09.575865194Z"} +2026/03/20 16:54:14 ───────────────────────────────────────────────── +2026/03/20 16:54:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:19 [metric_collector] {"stage_name":"metric_collector","events_processed":349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":69.8,"last_update":"2026-03-20T16:54:14.576145107Z"} +2026/03/20 16:54:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:14.586475181Z"} +2026/03/20 16:54:19 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":6.842923443884033,"throughput_eps":0,"last_update":"2026-03-20T16:54:14.719836021Z"} +2026/03/20 16:54:19 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":89.20370731793369,"throughput_eps":0,"last_update":"2026-03-20T16:54:14.718630619Z"} +2026/03/20 16:54:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:14.575866838Z"} +2026/03/20 16:54:19 ───────────────────────────────────────────────── +2026/03/20 16:54:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:24 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":89.20370731793369,"throughput_eps":0,"last_update":"2026-03-20T16:54:19.718821427Z"} +2026/03/20 16:54:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:19.576055416Z"} +2026/03/20 16:54:24 [metric_collector] {"stage_name":"metric_collector","events_processed":354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":70.8,"last_update":"2026-03-20T16:54:19.576441672Z"} +2026/03/20 16:54:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:19.576203989Z"} +2026/03/20 16:54:24 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":6.842923443884033,"throughput_eps":0,"last_update":"2026-03-20T16:54:19.718846144Z"} +2026/03/20 16:54:24 ───────────────────────────────────────────────── +2026/03/20 16:54:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:24.575883493Z"} +2026/03/20 16:54:29 [metric_collector] {"stage_name":"metric_collector","events_processed":359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":71.8,"last_update":"2026-03-20T16:54:24.576404815Z"} +2026/03/20 16:54:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:24.585704593Z"} +2026/03/20 16:54:29 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":6.842923443884033,"throughput_eps":0,"last_update":"2026-03-20T16:54:24.719109854Z"} +2026/03/20 16:54:29 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":84.08506565434695,"throughput_eps":0,"last_update":"2026-03-20T16:54:24.782639729Z"} +2026/03/20 16:54:29 ───────────────────────────────────────────────── +2026/03/20 16:54:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:29.575555578Z"} +2026/03/20 16:54:34 [metric_collector] {"stage_name":"metric_collector","events_processed":364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":72.8,"last_update":"2026-03-20T16:54:29.575971389Z"} +2026/03/20 16:54:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:29.585229179Z"} +2026/03/20 16:54:34 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":7.290607155107227,"throughput_eps":0,"last_update":"2026-03-20T16:54:29.719683307Z"} +2026/03/20 16:54:34 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":84.08506565434695,"throughput_eps":0,"last_update":"2026-03-20T16:54:29.719625487Z"} +2026/03/20 16:54:34 ───────────────────────────────────────────────── +2026/03/20 16:54:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:34.576027641Z"} +2026/03/20 16:54:39 [metric_collector] {"stage_name":"metric_collector","events_processed":369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":73.8,"last_update":"2026-03-20T16:54:34.5764107Z"} +2026/03/20 16:54:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:34.585479752Z"} +2026/03/20 16:54:39 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":7.290607155107227,"throughput_eps":0,"last_update":"2026-03-20T16:54:34.719877725Z"} +2026/03/20 16:54:39 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":84.08506565434695,"throughput_eps":0,"last_update":"2026-03-20T16:54:34.718696177Z"} +2026/03/20 16:54:39 ───────────────────────────────────────────────── +2026/03/20 16:54:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:39.575736301Z"} +2026/03/20 16:54:44 [metric_collector] {"stage_name":"metric_collector","events_processed":374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":74.8,"last_update":"2026-03-20T16:54:39.576049025Z"} +2026/03/20 16:54:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:39.586491042Z"} +2026/03/20 16:54:44 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":7.290607155107227,"throughput_eps":0,"last_update":"2026-03-20T16:54:39.719785568Z"} +2026/03/20 16:54:44 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":84.08506565434695,"throughput_eps":0,"last_update":"2026-03-20T16:54:39.718657542Z"} +2026/03/20 16:54:44 ───────────────────────────────────────────────── +2026/03/20 16:54:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:44.57583449Z"} +2026/03/20 16:54:49 [metric_collector] {"stage_name":"metric_collector","events_processed":379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":75.8,"last_update":"2026-03-20T16:54:44.576201658Z"} +2026/03/20 16:54:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:44.584894178Z"} +2026/03/20 16:54:49 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":7.290607155107227,"throughput_eps":0,"last_update":"2026-03-20T16:54:44.71925304Z"} +2026/03/20 16:54:49 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":84.08506565434695,"throughput_eps":0,"last_update":"2026-03-20T16:54:44.719145655Z"} +2026/03/20 16:54:49 ───────────────────────────────────────────────── +2026/03/20 16:54:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:49.586527651Z"} +2026/03/20 16:54:54 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":7.290607155107227,"throughput_eps":0,"last_update":"2026-03-20T16:54:49.719170119Z"} +2026/03/20 16:54:54 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":84.08506565434695,"throughput_eps":0,"last_update":"2026-03-20T16:54:49.719046454Z"} +2026/03/20 16:54:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:49.575744653Z"} +2026/03/20 16:54:54 [metric_collector] {"stage_name":"metric_collector","events_processed":384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":76.8,"last_update":"2026-03-20T16:54:49.57612155Z"} +2026/03/20 16:54:54 ───────────────────────────────────────────────── +2026/03/20 16:54:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:59 [transform_engine] {"stage_name":"transform_engine","events_processed":13,"events_dropped":0,"avg_latency_ms":90.36144932347756,"throughput_eps":0,"last_update":"2026-03-20T16:54:54.834670611Z"} +2026/03/20 16:54:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:54.575535925Z"} +2026/03/20 16:54:59 [metric_collector] {"stage_name":"metric_collector","events_processed":389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":77.8,"last_update":"2026-03-20T16:54:54.576043151Z"} +2026/03/20 16:54:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:54.587903892Z"} +2026/03/20 16:54:59 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":7.290607155107227,"throughput_eps":0,"last_update":"2026-03-20T16:54:54.719323364Z"} +2026/03/20 16:54:59 ───────────────────────────────────────────────── +2026/03/20 16:55:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:59.584555827Z"} +2026/03/20 16:55:04 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":7.767055124085782,"throughput_eps":0,"last_update":"2026-03-20T16:54:59.719143519Z"} +2026/03/20 16:55:04 [transform_engine] {"stage_name":"transform_engine","events_processed":13,"events_dropped":0,"avg_latency_ms":90.36144932347756,"throughput_eps":0,"last_update":"2026-03-20T16:54:59.719108363Z"} +2026/03/20 16:55:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:59.576022156Z"} +2026/03/20 16:55:04 [metric_collector] {"stage_name":"metric_collector","events_processed":394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":78.8,"last_update":"2026-03-20T16:54:59.576409864Z"} +2026/03/20 16:55:04 ───────────────────────────────────────────────── +2026/03/20 16:55:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:09 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":7.767055124085782,"throughput_eps":0,"last_update":"2026-03-20T16:55:04.719744299Z"} +2026/03/20 16:55:09 [transform_engine] {"stage_name":"transform_engine","events_processed":13,"events_dropped":0,"avg_latency_ms":90.36144932347756,"throughput_eps":0,"last_update":"2026-03-20T16:55:04.719617348Z"} +2026/03/20 16:55:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:04.576077945Z"} +2026/03/20 16:55:09 [metric_collector] {"stage_name":"metric_collector","events_processed":399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":79.8,"last_update":"2026-03-20T16:55:04.576308814Z"} +2026/03/20 16:55:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:04.585504547Z"} +2026/03/20 16:55:09 ───────────────────────────────────────────────── +2026/03/20 16:55:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:14 [transform_engine] {"stage_name":"transform_engine","events_processed":13,"events_dropped":0,"avg_latency_ms":90.36144932347756,"throughput_eps":0,"last_update":"2026-03-20T16:55:09.719697948Z"} +2026/03/20 16:55:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:09.575559774Z"} +2026/03/20 16:55:14 [metric_collector] {"stage_name":"metric_collector","events_processed":404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":80.8,"last_update":"2026-03-20T16:55:09.57548912Z"} +2026/03/20 16:55:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:09.585190185Z"} +2026/03/20 16:55:14 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":7.767055124085782,"throughput_eps":0,"last_update":"2026-03-20T16:55:09.719580695Z"} +2026/03/20 16:55:14 ───────────────────────────────────────────────── +2026/03/20 16:55:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:14.575894981Z"} +2026/03/20 16:55:19 [metric_collector] {"stage_name":"metric_collector","events_processed":409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":81.8,"last_update":"2026-03-20T16:55:14.576189191Z"} +2026/03/20 16:55:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:14.586503926Z"} +2026/03/20 16:55:19 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":7.767055124085782,"throughput_eps":0,"last_update":"2026-03-20T16:55:14.718792425Z"} +2026/03/20 16:55:19 [transform_engine] {"stage_name":"transform_engine","events_processed":13,"events_dropped":0,"avg_latency_ms":90.36144932347756,"throughput_eps":0,"last_update":"2026-03-20T16:55:14.718757749Z"} +2026/03/20 16:55:19 ───────────────────────────────────────────────── +2026/03/20 16:55:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:19.575517626Z"} +2026/03/20 16:55:24 [metric_collector] {"stage_name":"metric_collector","events_processed":414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":82.8,"last_update":"2026-03-20T16:55:19.575752924Z"} +2026/03/20 16:55:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:19.585904691Z"} +2026/03/20 16:55:24 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":7.767055124085782,"throughput_eps":0,"last_update":"2026-03-20T16:55:19.719147225Z"} +2026/03/20 16:55:24 [transform_engine] {"stage_name":"transform_engine","events_processed":13,"events_dropped":0,"avg_latency_ms":90.36144932347756,"throughput_eps":0,"last_update":"2026-03-20T16:55:19.719098583Z"} +2026/03/20 16:55:24 ───────────────────────────────────────────────── +2026/03/20 16:55:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:29 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":85.40071905878206,"throughput_eps":0,"last_update":"2026-03-20T16:55:24.785174402Z"} +2026/03/20 16:55:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:24.575506617Z"} +2026/03/20 16:55:29 [metric_collector] {"stage_name":"metric_collector","events_processed":419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":83.8,"last_update":"2026-03-20T16:55:24.575745953Z"} +2026/03/20 16:55:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":170,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:24.585218438Z"} +2026/03/20 16:55:29 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":7.767055124085782,"throughput_eps":0,"last_update":"2026-03-20T16:55:24.719641792Z"} +2026/03/20 16:55:29 ───────────────────────────────────────────────── +2026/03/20 16:55:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:34 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":8.436163699268626,"throughput_eps":0,"last_update":"2026-03-20T16:55:29.719761646Z"} +2026/03/20 16:55:34 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":85.40071905878206,"throughput_eps":0,"last_update":"2026-03-20T16:55:29.719776074Z"} +2026/03/20 16:55:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:29.576029298Z"} +2026/03/20 16:55:34 [metric_collector] {"stage_name":"metric_collector","events_processed":424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":84.8,"last_update":"2026-03-20T16:55:29.57639345Z"} +2026/03/20 16:55:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:29.585419907Z"} +2026/03/20 16:55:34 ───────────────────────────────────────────────── +2026/03/20 16:55:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:34.575760995Z"} +2026/03/20 16:55:39 [metric_collector] {"stage_name":"metric_collector","events_processed":429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":85.8,"last_update":"2026-03-20T16:55:34.576023043Z"} +2026/03/20 16:55:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:34.585855857Z"} +2026/03/20 16:55:39 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":8.436163699268626,"throughput_eps":0,"last_update":"2026-03-20T16:55:34.719246173Z"} +2026/03/20 16:55:39 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":85.40071905878206,"throughput_eps":0,"last_update":"2026-03-20T16:55:34.71925987Z"} +2026/03/20 16:55:39 ───────────────────────────────────────────────── +2026/03/20 16:55:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:44 [metric_collector] {"stage_name":"metric_collector","events_processed":433,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":86.6,"last_update":"2026-03-20T16:55:39.575464814Z"} +2026/03/20 16:55:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:39.58478832Z"} +2026/03/20 16:55:44 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":8.436163699268626,"throughput_eps":0,"last_update":"2026-03-20T16:55:39.719183289Z"} +2026/03/20 16:55:44 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":85.40071905878206,"throughput_eps":0,"last_update":"2026-03-20T16:55:39.719192727Z"} +2026/03/20 16:55:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:39.575540108Z"} +2026/03/20 16:55:44 ───────────────────────────────────────────────── +2026/03/20 16:55:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:44.585197906Z"} +2026/03/20 16:55:49 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":8.436163699268626,"throughput_eps":0,"last_update":"2026-03-20T16:55:44.719345864Z"} +2026/03/20 16:55:49 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":85.40071905878206,"throughput_eps":0,"last_update":"2026-03-20T16:55:44.719372585Z"} +2026/03/20 16:55:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:44.575489576Z"} +2026/03/20 16:55:49 [metric_collector] {"stage_name":"metric_collector","events_processed":438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":87.6,"last_update":"2026-03-20T16:55:44.575030972Z"} +2026/03/20 16:55:49 ───────────────────────────────────────────────── +2026/03/20 16:55:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:54 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":8.436163699268626,"throughput_eps":0,"last_update":"2026-03-20T16:55:49.719600786Z"} +2026/03/20 16:55:54 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":85.40071905878206,"throughput_eps":0,"last_update":"2026-03-20T16:55:49.719615836Z"} +2026/03/20 16:55:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:49.575543835Z"} +2026/03/20 16:55:54 [metric_collector] {"stage_name":"metric_collector","events_processed":444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":88.8,"last_update":"2026-03-20T16:55:49.575980307Z"} +2026/03/20 16:55:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:49.587210577Z"} +2026/03/20 16:55:54 ───────────────────────────────────────────────── +2026/03/20 16:55:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:54.576022909Z"} +2026/03/20 16:55:59 [metric_collector] {"stage_name":"metric_collector","events_processed":449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":89.8,"last_update":"2026-03-20T16:55:54.575952244Z"} +2026/03/20 16:55:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:54.587258731Z"} +2026/03/20 16:55:59 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":8.436163699268626,"throughput_eps":0,"last_update":"2026-03-20T16:55:54.719614785Z"} +2026/03/20 16:55:59 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":82.50752664702564,"throughput_eps":0,"last_update":"2026-03-20T16:55:54.790568418Z"} +2026/03/20 16:55:59 ───────────────────────────────────────────────── +2026/03/20 16:56:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:59.586154048Z"} +2026/03/20 16:56:04 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":8.390728159414902,"throughput_eps":0,"last_update":"2026-03-20T16:55:59.719507891Z"} +2026/03/20 16:56:04 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":82.50752664702564,"throughput_eps":0,"last_update":"2026-03-20T16:55:59.719653858Z"} +2026/03/20 16:56:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:59.575541732Z"} +2026/03/20 16:56:04 [metric_collector] {"stage_name":"metric_collector","events_processed":454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":90.8,"last_update":"2026-03-20T16:55:59.575735861Z"} +2026/03/20 16:56:04 ───────────────────────────────────────────────── +2026/03/20 16:56:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:04.57558828Z"} +2026/03/20 16:56:09 [metric_collector] {"stage_name":"metric_collector","events_processed":459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":91.8,"last_update":"2026-03-20T16:56:04.5760661Z"} +2026/03/20 16:56:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:04.587239577Z"} +2026/03/20 16:56:09 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":8.390728159414902,"throughput_eps":0,"last_update":"2026-03-20T16:56:04.719489245Z"} +2026/03/20 16:56:09 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":82.50752664702564,"throughput_eps":0,"last_update":"2026-03-20T16:56:04.719396548Z"} +2026/03/20 16:56:09 ───────────────────────────────────────────────── +2026/03/20 16:56:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:09.575559209Z"} +2026/03/20 16:56:14 [metric_collector] {"stage_name":"metric_collector","events_processed":464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":92.8,"last_update":"2026-03-20T16:56:09.575658799Z"} +2026/03/20 16:56:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:09.58545374Z"} +2026/03/20 16:56:14 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":8.390728159414902,"throughput_eps":0,"last_update":"2026-03-20T16:56:09.719749415Z"} +2026/03/20 16:56:14 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":82.50752664702564,"throughput_eps":0,"last_update":"2026-03-20T16:56:09.719762489Z"} +2026/03/20 16:56:14 ───────────────────────────────────────────────── +2026/03/20 16:56:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:19 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":8.390728159414902,"throughput_eps":0,"last_update":"2026-03-20T16:56:14.719125277Z"} +2026/03/20 16:56:19 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":82.50752664702564,"throughput_eps":0,"last_update":"2026-03-20T16:56:14.719139725Z"} +2026/03/20 16:56:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:14.575547289Z"} +2026/03/20 16:56:19 [metric_collector] {"stage_name":"metric_collector","events_processed":469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":93.8,"last_update":"2026-03-20T16:56:14.575893308Z"} +2026/03/20 16:56:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:14.586733833Z"} +2026/03/20 16:56:19 ───────────────────────────────────────────────── +2026/03/20 16:56:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:24 [metric_collector] {"stage_name":"metric_collector","events_processed":474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":94.8,"last_update":"2026-03-20T16:56:19.575858485Z"} +2026/03/20 16:56:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:19.587047425Z"} +2026/03/20 16:56:24 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":8.390728159414902,"throughput_eps":0,"last_update":"2026-03-20T16:56:19.719274945Z"} +2026/03/20 16:56:24 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":82.50752664702564,"throughput_eps":0,"last_update":"2026-03-20T16:56:19.719282861Z"} +2026/03/20 16:56:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:19.575526552Z"} +2026/03/20 16:56:24 ───────────────────────────────────────────────── +2026/03/20 16:56:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:29 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":88.80772311762053,"throughput_eps":0,"last_update":"2026-03-20T16:56:24.833725455Z"} +2026/03/20 16:56:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:24.575602065Z"} +2026/03/20 16:56:29 [metric_collector] {"stage_name":"metric_collector","events_processed":479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":95.8,"last_update":"2026-03-20T16:56:24.576074455Z"} +2026/03/20 16:56:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:24.58731196Z"} +2026/03/20 16:56:29 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":8.390728159414902,"throughput_eps":0,"last_update":"2026-03-20T16:56:24.719701607Z"} +2026/03/20 16:56:29 ───────────────────────────────────────────────── +2026/03/20 16:56:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:29.575829836Z"} +2026/03/20 16:56:34 [metric_collector] {"stage_name":"metric_collector","events_processed":484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":96.8,"last_update":"2026-03-20T16:56:29.576146881Z"} +2026/03/20 16:56:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:29.585544931Z"} +2026/03/20 16:56:34 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":8.713176927531922,"throughput_eps":0,"last_update":"2026-03-20T16:56:29.718890977Z"} +2026/03/20 16:56:34 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":88.80772311762053,"throughput_eps":0,"last_update":"2026-03-20T16:56:29.718783152Z"} +2026/03/20 16:56:34 ───────────────────────────────────────────────── +2026/03/20 16:56:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:34.575543138Z"} +2026/03/20 16:56:39 [metric_collector] {"stage_name":"metric_collector","events_processed":489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":97.8,"last_update":"2026-03-20T16:56:34.575832029Z"} +2026/03/20 16:56:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:34.585683334Z"} +2026/03/20 16:56:39 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":8.713176927531922,"throughput_eps":0,"last_update":"2026-03-20T16:56:34.719077941Z"} +2026/03/20 16:56:39 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":88.80772311762053,"throughput_eps":0,"last_update":"2026-03-20T16:56:34.719090205Z"} +2026/03/20 16:56:39 ───────────────────────────────────────────────── +2026/03/20 16:56:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:44 [metric_collector] {"stage_name":"metric_collector","events_processed":494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":98.8,"last_update":"2026-03-20T16:56:39.576144958Z"} +2026/03/20 16:56:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:39.5853904Z"} +2026/03/20 16:56:44 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":8.713176927531922,"throughput_eps":0,"last_update":"2026-03-20T16:56:39.719629666Z"} +2026/03/20 16:56:44 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":88.80772311762053,"throughput_eps":0,"last_update":"2026-03-20T16:56:39.719638372Z"} +2026/03/20 16:56:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:39.575721321Z"} +2026/03/20 16:56:44 ───────────────────────────────────────────────── +2026/03/20 16:56:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:44.575758494Z"} +2026/03/20 16:56:49 [metric_collector] {"stage_name":"metric_collector","events_processed":499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":99.8,"last_update":"2026-03-20T16:56:44.576215354Z"} +2026/03/20 16:56:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:44.586823856Z"} +2026/03/20 16:56:49 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":8.713176927531922,"throughput_eps":0,"last_update":"2026-03-20T16:56:44.719051964Z"} +2026/03/20 16:56:49 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":88.80772311762053,"throughput_eps":0,"last_update":"2026-03-20T16:56:44.719061552Z"} +2026/03/20 16:56:49 ───────────────────────────────────────────────── +2026/03/20 16:56:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:54 [metric_collector] {"stage_name":"metric_collector","events_processed":504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":100.8,"last_update":"2026-03-20T16:56:49.576209245Z"} +2026/03/20 16:56:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:49.585223358Z"} +2026/03/20 16:56:54 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":8.713176927531922,"throughput_eps":0,"last_update":"2026-03-20T16:56:49.719316229Z"} +2026/03/20 16:56:54 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":88.80772311762053,"throughput_eps":0,"last_update":"2026-03-20T16:56:49.719326117Z"} +2026/03/20 16:56:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:49.575811778Z"} +2026/03/20 16:56:54 ───────────────────────────────────────────────── +2026/03/20 16:56:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:59 [transform_engine] {"stage_name":"transform_engine","events_processed":17,"events_dropped":0,"avg_latency_ms":83.60704289409642,"throughput_eps":0,"last_update":"2026-03-20T16:56:54.782529026Z"} +2026/03/20 16:56:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:54.575850159Z"} +2026/03/20 16:56:59 [metric_collector] {"stage_name":"metric_collector","events_processed":509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":101.8,"last_update":"2026-03-20T16:56:54.57617563Z"} +2026/03/20 16:56:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":206,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:54.585377783Z"} +2026/03/20 16:56:59 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":8.713176927531922,"throughput_eps":0,"last_update":"2026-03-20T16:56:54.719707291Z"} +2026/03/20 16:56:59 ───────────────────────────────────────────────── +2026/03/20 16:57:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:04 [metric_collector] {"stage_name":"metric_collector","events_processed":514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":102.8,"last_update":"2026-03-20T16:56:59.575686526Z"} +2026/03/20 16:57:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:59.586041218Z"} +2026/03/20 16:57:04 [detection_layer] {"stage_name":"detection_layer","events_processed":17,"events_dropped":0,"avg_latency_ms":8.876964142025539,"throughput_eps":0,"last_update":"2026-03-20T16:56:59.719407708Z"} +2026/03/20 16:57:04 [transform_engine] {"stage_name":"transform_engine","events_processed":17,"events_dropped":0,"avg_latency_ms":83.60704289409642,"throughput_eps":0,"last_update":"2026-03-20T16:56:59.719421233Z"} +2026/03/20 16:57:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:59.575543985Z"} +2026/03/20 16:57:04 ───────────────────────────────────────────────── +2026/03/20 16:57:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:04.575899054Z"} +2026/03/20 16:57:09 [metric_collector] {"stage_name":"metric_collector","events_processed":519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":103.8,"last_update":"2026-03-20T16:57:04.576824389Z"} +2026/03/20 16:57:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":210,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:04.586019501Z"} +2026/03/20 16:57:09 [detection_layer] {"stage_name":"detection_layer","events_processed":17,"events_dropped":0,"avg_latency_ms":8.876964142025539,"throughput_eps":0,"last_update":"2026-03-20T16:57:04.7194034Z"} +2026/03/20 16:57:09 [transform_engine] {"stage_name":"transform_engine","events_processed":17,"events_dropped":0,"avg_latency_ms":83.60704289409642,"throughput_eps":0,"last_update":"2026-03-20T16:57:04.719417286Z"} +2026/03/20 16:57:09 ───────────────────────────────────────────────── +2026/03/20 16:57:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:14 [metric_collector] {"stage_name":"metric_collector","events_processed":524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":104.8,"last_update":"2026-03-20T16:57:09.576556139Z"} +2026/03/20 16:57:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:09.586089276Z"} +2026/03/20 16:57:14 [detection_layer] {"stage_name":"detection_layer","events_processed":17,"events_dropped":0,"avg_latency_ms":8.876964142025539,"throughput_eps":0,"last_update":"2026-03-20T16:57:09.719323477Z"} +2026/03/20 16:57:14 [transform_engine] {"stage_name":"transform_engine","events_processed":17,"events_dropped":0,"avg_latency_ms":83.60704289409642,"throughput_eps":0,"last_update":"2026-03-20T16:57:09.719331361Z"} +2026/03/20 16:57:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:09.575862165Z"} +2026/03/20 16:57:14 ───────────────────────────────────────────────── +2026/03/20 16:57:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:14.575553079Z"} +2026/03/20 16:57:19 [metric_collector] {"stage_name":"metric_collector","events_processed":529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":105.8,"last_update":"2026-03-20T16:57:14.57594191Z"} +2026/03/20 16:57:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:14.586999606Z"} +2026/03/20 16:57:19 [detection_layer] {"stage_name":"detection_layer","events_processed":17,"events_dropped":0,"avg_latency_ms":8.876964142025539,"throughput_eps":0,"last_update":"2026-03-20T16:57:14.71932058Z"} +2026/03/20 16:57:19 [transform_engine] {"stage_name":"transform_engine","events_processed":17,"events_dropped":0,"avg_latency_ms":83.60704289409642,"throughput_eps":0,"last_update":"2026-03-20T16:57:14.719333706Z"} +2026/03/20 16:57:19 ───────────────────────────────────────────────── +2026/03/20 16:57:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:24 [detection_layer] {"stage_name":"detection_layer","events_processed":17,"events_dropped":0,"avg_latency_ms":8.876964142025539,"throughput_eps":0,"last_update":"2026-03-20T16:57:19.719404267Z"} +2026/03/20 16:57:24 [transform_engine] {"stage_name":"transform_engine","events_processed":17,"events_dropped":0,"avg_latency_ms":83.60704289409642,"throughput_eps":0,"last_update":"2026-03-20T16:57:19.719417692Z"} +2026/03/20 16:57:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:19.575801071Z"} +2026/03/20 16:57:24 [metric_collector] {"stage_name":"metric_collector","events_processed":534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":106.8,"last_update":"2026-03-20T16:57:19.576421774Z"} +2026/03/20 16:57:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:19.585954082Z"} +2026/03/20 16:57:24 ───────────────────────────────────────────────── +2026/03/20 16:57:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:24.57552926Z"} +2026/03/20 16:57:29 [metric_collector] {"stage_name":"metric_collector","events_processed":539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":107.8,"last_update":"2026-03-20T16:57:24.575711338Z"} +2026/03/20 16:57:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:24.585724104Z"} +2026/03/20 16:57:29 [detection_layer] {"stage_name":"detection_layer","events_processed":17,"events_dropped":0,"avg_latency_ms":8.876964142025539,"throughput_eps":0,"last_update":"2026-03-20T16:57:24.7190783Z"} +2026/03/20 16:57:29 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":80.27852051527715,"throughput_eps":0,"last_update":"2026-03-20T16:57:24.786060074Z"} +2026/03/20 16:57:29 ───────────────────────────────────────────────── +2026/03/20 16:57:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:34 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":9.075584113620431,"throughput_eps":0,"last_update":"2026-03-20T16:57:29.719434408Z"} +2026/03/20 16:57:34 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":80.27852051527715,"throughput_eps":0,"last_update":"2026-03-20T16:57:29.719450448Z"} +2026/03/20 16:57:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:29.576107806Z"} +2026/03/20 16:57:34 [metric_collector] {"stage_name":"metric_collector","events_processed":544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":108.8,"last_update":"2026-03-20T16:57:29.576087517Z"} +2026/03/20 16:57:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:29.585073305Z"} +2026/03/20 16:57:34 ───────────────────────────────────────────────── +2026/03/20 16:57:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:34.575720297Z"} +2026/03/20 16:57:39 [metric_collector] {"stage_name":"metric_collector","events_processed":549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":109.8,"last_update":"2026-03-20T16:57:34.575999069Z"} +2026/03/20 16:57:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":222,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:34.587021993Z"} +2026/03/20 16:57:39 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":9.075584113620431,"throughput_eps":0,"last_update":"2026-03-20T16:57:34.719337941Z"} +2026/03/20 16:57:39 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":80.27852051527715,"throughput_eps":0,"last_update":"2026-03-20T16:57:34.719345385Z"} +2026/03/20 16:57:39 ───────────────────────────────────────────────── +2026/03/20 16:57:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:39.575632021Z"} +2026/03/20 16:57:44 [metric_collector] {"stage_name":"metric_collector","events_processed":554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":110.8,"last_update":"2026-03-20T16:57:39.575947503Z"} +2026/03/20 16:57:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:39.586802438Z"} +2026/03/20 16:57:44 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":9.075584113620431,"throughput_eps":0,"last_update":"2026-03-20T16:57:39.719079497Z"} +2026/03/20 16:57:44 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":80.27852051527715,"throughput_eps":0,"last_update":"2026-03-20T16:57:39.719090067Z"} +2026/03/20 16:57:44 ───────────────────────────────────────────────── +2026/03/20 16:57:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:49 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":80.27852051527715,"throughput_eps":0,"last_update":"2026-03-20T16:57:44.718688617Z"} +2026/03/20 16:57:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:44.575509487Z"} +2026/03/20 16:57:49 [metric_collector] {"stage_name":"metric_collector","events_processed":559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":111.8,"last_update":"2026-03-20T16:57:44.575551587Z"} +2026/03/20 16:57:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:44.585529231Z"} +2026/03/20 16:57:49 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":9.075584113620431,"throughput_eps":0,"last_update":"2026-03-20T16:57:44.718805861Z"} +2026/03/20 16:57:49 ───────────────────────────────────────────────── +2026/03/20 16:57:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:49.575540938Z"} +2026/03/20 16:57:54 [metric_collector] {"stage_name":"metric_collector","events_processed":564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":112.8,"last_update":"2026-03-20T16:57:49.575743574Z"} +2026/03/20 16:57:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:49.585600018Z"} +2026/03/20 16:57:54 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":9.075584113620431,"throughput_eps":0,"last_update":"2026-03-20T16:57:49.718828753Z"} +2026/03/20 16:57:54 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":80.27852051527715,"throughput_eps":0,"last_update":"2026-03-20T16:57:49.718721138Z"} +2026/03/20 16:57:54 ───────────────────────────────────────────────── +2026/03/20 16:57:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:54.575724805Z"} +2026/03/20 16:57:59 [metric_collector] {"stage_name":"metric_collector","events_processed":569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":113.8,"last_update":"2026-03-20T16:57:54.576225471Z"} +2026/03/20 16:57:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:54.584731208Z"} +2026/03/20 16:57:59 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":9.075584113620431,"throughput_eps":0,"last_update":"2026-03-20T16:57:54.719212728Z"} +2026/03/20 16:57:59 [transform_engine] {"stage_name":"transform_engine","events_processed":19,"events_dropped":0,"avg_latency_ms":86.20804501222172,"throughput_eps":0,"last_update":"2026-03-20T16:57:54.829153318Z"} +2026/03/20 16:57:59 ───────────────────────────────────────────────── +2026/03/20 16:58:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:59.586271867Z"} +2026/03/20 16:58:04 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":9.584972090896345,"throughput_eps":0,"last_update":"2026-03-20T16:57:59.719584852Z"} +2026/03/20 16:58:04 [transform_engine] {"stage_name":"transform_engine","events_processed":19,"events_dropped":0,"avg_latency_ms":86.20804501222172,"throughput_eps":0,"last_update":"2026-03-20T16:57:59.719590873Z"} +2026/03/20 16:58:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:59.575801189Z"} +2026/03/20 16:58:04 [metric_collector] {"stage_name":"metric_collector","events_processed":574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":114.8,"last_update":"2026-03-20T16:57:59.576122382Z"} +2026/03/20 16:58:04 ───────────────────────────────────────────────── +2026/03/20 16:58:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:09 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":9.584972090896345,"throughput_eps":0,"last_update":"2026-03-20T16:58:04.719688176Z"} +2026/03/20 16:58:09 [transform_engine] {"stage_name":"transform_engine","events_processed":19,"events_dropped":0,"avg_latency_ms":86.20804501222172,"throughput_eps":0,"last_update":"2026-03-20T16:58:04.719696993Z"} +2026/03/20 16:58:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:04.575532428Z"} +2026/03/20 16:58:09 [metric_collector] {"stage_name":"metric_collector","events_processed":579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":115.8,"last_update":"2026-03-20T16:58:04.575775841Z"} +2026/03/20 16:58:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:04.58647136Z"} +2026/03/20 16:58:09 ───────────────────────────────────────────────── +2026/03/20 16:58:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:14 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":9.584972090896345,"throughput_eps":0,"last_update":"2026-03-20T16:58:09.719506727Z"} +2026/03/20 16:58:14 [transform_engine] {"stage_name":"transform_engine","events_processed":19,"events_dropped":0,"avg_latency_ms":86.20804501222172,"throughput_eps":0,"last_update":"2026-03-20T16:58:09.719512598Z"} +2026/03/20 16:58:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:09.575726629Z"} +2026/03/20 16:58:14 [metric_collector] {"stage_name":"metric_collector","events_processed":584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":116.8,"last_update":"2026-03-20T16:58:09.576043353Z"} +2026/03/20 16:58:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:09.586106406Z"} +2026/03/20 16:58:14 ───────────────────────────────────────────────── +2026/03/20 16:58:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:14.58661405Z"} +2026/03/20 16:58:19 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":9.584972090896345,"throughput_eps":0,"last_update":"2026-03-20T16:58:14.718911551Z"} +2026/03/20 16:58:19 [transform_engine] {"stage_name":"transform_engine","events_processed":19,"events_dropped":0,"avg_latency_ms":86.20804501222172,"throughput_eps":0,"last_update":"2026-03-20T16:58:14.718923323Z"} +2026/03/20 16:58:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:14.575872743Z"} +2026/03/20 16:58:19 [metric_collector] {"stage_name":"metric_collector","events_processed":589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":117.8,"last_update":"2026-03-20T16:58:14.576540878Z"} +2026/03/20 16:58:19 ───────────────────────────────────────────────── +2026/03/20 16:58:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:24 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":9.584972090896345,"throughput_eps":0,"last_update":"2026-03-20T16:58:19.719216854Z"} +2026/03/20 16:58:24 [transform_engine] {"stage_name":"transform_engine","events_processed":19,"events_dropped":0,"avg_latency_ms":86.20804501222172,"throughput_eps":0,"last_update":"2026-03-20T16:58:19.719232234Z"} +2026/03/20 16:58:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:19.575770101Z"} +2026/03/20 16:58:24 [metric_collector] {"stage_name":"metric_collector","events_processed":594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":118.8,"last_update":"2026-03-20T16:58:19.576173331Z"} +2026/03/20 16:58:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:19.584831553Z"} +2026/03/20 16:58:24 ───────────────────────────────────────────────── +2026/03/20 16:58:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:29 [metric_collector] {"stage_name":"metric_collector","events_processed":599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":119.8,"last_update":"2026-03-20T16:58:24.576344524Z"} +2026/03/20 16:58:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:24.586069063Z"} +2026/03/20 16:58:29 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":9.584972090896345,"throughput_eps":0,"last_update":"2026-03-20T16:58:24.719417418Z"} +2026/03/20 16:58:29 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":91.04819300977738,"throughput_eps":0,"last_update":"2026-03-20T16:58:24.82984075Z"} +2026/03/20 16:58:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:24.575878514Z"} +2026/03/20 16:58:29 ───────────────────────────────────────────────── +2026/03/20 16:58:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:29.575511218Z"} +2026/03/20 16:58:34 [metric_collector] {"stage_name":"metric_collector","events_processed":604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":120.8,"last_update":"2026-03-20T16:58:29.575725848Z"} +2026/03/20 16:58:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:29.586417583Z"} +2026/03/20 16:58:34 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":10.264376872717076,"throughput_eps":0,"last_update":"2026-03-20T16:58:29.719686411Z"} +2026/03/20 16:58:34 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":91.04819300977738,"throughput_eps":0,"last_update":"2026-03-20T16:58:29.719695328Z"} +2026/03/20 16:58:34 ───────────────────────────────────────────────── +2026/03/20 16:58:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:34.575593102Z"} +2026/03/20 16:58:39 [metric_collector] {"stage_name":"metric_collector","events_processed":609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":121.8,"last_update":"2026-03-20T16:58:34.576004367Z"} +2026/03/20 16:58:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":246,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:34.587315396Z"} +2026/03/20 16:58:39 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":10.264376872717076,"throughput_eps":0,"last_update":"2026-03-20T16:58:34.71967959Z"} +2026/03/20 16:58:39 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":91.04819300977738,"throughput_eps":0,"last_update":"2026-03-20T16:58:34.719692595Z"} +2026/03/20 16:58:39 ───────────────────────────────────────────────── +2026/03/20 16:58:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:39.584840239Z"} +2026/03/20 16:58:44 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":10.264376872717076,"throughput_eps":0,"last_update":"2026-03-20T16:58:39.719037545Z"} +2026/03/20 16:58:44 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":91.04819300977738,"throughput_eps":0,"last_update":"2026-03-20T16:58:39.719045119Z"} +2026/03/20 16:58:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:39.575694411Z"} +2026/03/20 16:58:44 [metric_collector] {"stage_name":"metric_collector","events_processed":614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":122.8,"last_update":"2026-03-20T16:58:39.576193133Z"} +2026/03/20 16:58:44 ───────────────────────────────────────────────── +2026/03/20 16:58:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:44.576257424Z"} +2026/03/20 16:58:49 [metric_collector] {"stage_name":"metric_collector","events_processed":619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":123.8,"last_update":"2026-03-20T16:58:44.576568808Z"} +2026/03/20 16:58:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:44.585154418Z"} +2026/03/20 16:58:49 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":10.264376872717076,"throughput_eps":0,"last_update":"2026-03-20T16:58:44.719481015Z"} +2026/03/20 16:58:49 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":91.04819300977738,"throughput_eps":0,"last_update":"2026-03-20T16:58:44.719489452Z"} +2026/03/20 16:58:49 ───────────────────────────────────────────────── +2026/03/20 16:58:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:54 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":91.04819300977738,"throughput_eps":0,"last_update":"2026-03-20T16:58:49.719404872Z"} +2026/03/20 16:58:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:49.575845996Z"} +2026/03/20 16:58:54 [metric_collector] {"stage_name":"metric_collector","events_processed":624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":124.8,"last_update":"2026-03-20T16:58:49.576218767Z"} +2026/03/20 16:58:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:49.584998508Z"} +2026/03/20 16:58:54 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":10.264376872717076,"throughput_eps":0,"last_update":"2026-03-20T16:58:49.719390464Z"} +2026/03/20 16:58:54 ───────────────────────────────────────────────── +2026/03/20 16:58:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:54.575615336Z"} +2026/03/20 16:58:59 [metric_collector] {"stage_name":"metric_collector","events_processed":629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":125.8,"last_update":"2026-03-20T16:58:54.576103578Z"} +2026/03/20 16:58:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:54.586979592Z"} +2026/03/20 16:58:59 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":10.264376872717076,"throughput_eps":0,"last_update":"2026-03-20T16:58:54.719211618Z"} +2026/03/20 16:58:59 [transform_engine] {"stage_name":"transform_engine","events_processed":21,"events_dropped":0,"avg_latency_ms":95.5786058078219,"throughput_eps":0,"last_update":"2026-03-20T16:58:54.832922073Z"} +2026/03/20 16:58:59 ───────────────────────────────────────────────── +2026/03/20 16:59:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:59.575721116Z"} +2026/03/20 16:59:04 [metric_collector] {"stage_name":"metric_collector","events_processed":634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":126.8,"last_update":"2026-03-20T16:58:59.575961475Z"} +2026/03/20 16:59:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:59.587553747Z"} +2026/03/20 16:59:04 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":10.531482698173662,"throughput_eps":0,"last_update":"2026-03-20T16:58:59.719804651Z"} +2026/03/20 16:59:04 [transform_engine] {"stage_name":"transform_engine","events_processed":21,"events_dropped":0,"avg_latency_ms":95.5786058078219,"throughput_eps":0,"last_update":"2026-03-20T16:58:59.718706715Z"} +2026/03/20 16:59:04 ───────────────────────────────────────────────── +2026/03/20 16:59:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:04.575679277Z"} +2026/03/20 16:59:09 [metric_collector] {"stage_name":"metric_collector","events_processed":639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":127.8,"last_update":"2026-03-20T16:59:04.576062709Z"} +2026/03/20 16:59:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:04.587136813Z"} +2026/03/20 16:59:09 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":10.531482698173662,"throughput_eps":0,"last_update":"2026-03-20T16:59:04.719708694Z"} +2026/03/20 16:59:09 [transform_engine] {"stage_name":"transform_engine","events_processed":21,"events_dropped":0,"avg_latency_ms":95.5786058078219,"throughput_eps":0,"last_update":"2026-03-20T16:59:04.71959658Z"} +2026/03/20 16:59:09 ───────────────────────────────────────────────── +2026/03/20 16:59:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:14 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":10.531482698173662,"throughput_eps":0,"last_update":"2026-03-20T16:59:09.719780283Z"} +2026/03/20 16:59:14 [transform_engine] {"stage_name":"transform_engine","events_processed":21,"events_dropped":0,"avg_latency_ms":95.5786058078219,"throughput_eps":0,"last_update":"2026-03-20T16:59:09.718703898Z"} +2026/03/20 16:59:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:09.575552574Z"} +2026/03/20 16:59:14 [metric_collector] {"stage_name":"metric_collector","events_processed":644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":128.8,"last_update":"2026-03-20T16:59:09.575825525Z"} +2026/03/20 16:59:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:09.586483535Z"} +2026/03/20 16:59:14 ───────────────────────────────────────────────── +2026/03/20 16:59:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:14.575816182Z"} +2026/03/20 16:59:19 [metric_collector] {"stage_name":"metric_collector","events_processed":649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":129.8,"last_update":"2026-03-20T16:59:14.576060648Z"} +2026/03/20 16:59:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:14.585935846Z"} +2026/03/20 16:59:19 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":10.531482698173662,"throughput_eps":0,"last_update":"2026-03-20T16:59:14.719162963Z"} +2026/03/20 16:59:19 [transform_engine] {"stage_name":"transform_engine","events_processed":21,"events_dropped":0,"avg_latency_ms":95.5786058078219,"throughput_eps":0,"last_update":"2026-03-20T16:59:14.719265679Z"} +2026/03/20 16:59:19 ───────────────────────────────────────────────── +2026/03/20 16:59:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:19.575518716Z"} +2026/03/20 16:59:24 [metric_collector] {"stage_name":"metric_collector","events_processed":654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":130.8,"last_update":"2026-03-20T16:59:19.575961161Z"} +2026/03/20 16:59:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:19.586286869Z"} +2026/03/20 16:59:24 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":10.531482698173662,"throughput_eps":0,"last_update":"2026-03-20T16:59:19.719608981Z"} +2026/03/20 16:59:24 [transform_engine] {"stage_name":"transform_engine","events_processed":21,"events_dropped":0,"avg_latency_ms":95.5786058078219,"throughput_eps":0,"last_update":"2026-03-20T16:59:19.719640972Z"} +2026/03/20 16:59:24 ───────────────────────────────────────────────── +2026/03/20 16:59:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:24.575849435Z"} +2026/03/20 16:59:29 [metric_collector] {"stage_name":"metric_collector","events_processed":659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":131.8,"last_update":"2026-03-20T16:59:24.576193251Z"} +2026/03/20 16:59:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:24.585961265Z"} +2026/03/20 16:59:29 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":10.531482698173662,"throughput_eps":0,"last_update":"2026-03-20T16:59:24.719320451Z"} +2026/03/20 16:59:29 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":99.16793024625753,"throughput_eps":0,"last_update":"2026-03-20T16:59:24.832801464Z"} +2026/03/20 16:59:29 ───────────────────────────────────────────────── +2026/03/20 16:59:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:29.585224084Z"} +2026/03/20 16:59:34 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":10.42396715853893,"throughput_eps":0,"last_update":"2026-03-20T16:59:29.719766712Z"} +2026/03/20 16:59:34 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":99.16793024625753,"throughput_eps":0,"last_update":"2026-03-20T16:59:29.719682101Z"} +2026/03/20 16:59:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:29.575519621Z"} +2026/03/20 16:59:34 [metric_collector] {"stage_name":"metric_collector","events_processed":664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":132.8,"last_update":"2026-03-20T16:59:29.575452604Z"} +2026/03/20 16:59:34 ───────────────────────────────────────────────── +2026/03/20 16:59:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:34.585855251Z"} +2026/03/20 16:59:39 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":10.42396715853893,"throughput_eps":0,"last_update":"2026-03-20T16:59:34.719084413Z"} +2026/03/20 16:59:39 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":99.16793024625753,"throughput_eps":0,"last_update":"2026-03-20T16:59:34.719106716Z"} +2026/03/20 16:59:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:34.575568926Z"} +2026/03/20 16:59:39 [metric_collector] {"stage_name":"metric_collector","events_processed":669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":133.8,"last_update":"2026-03-20T16:59:34.57561867Z"} +2026/03/20 16:59:39 ───────────────────────────────────────────────── +2026/03/20 16:59:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:39.575901274Z"} +2026/03/20 16:59:44 [metric_collector] {"stage_name":"metric_collector","events_processed":674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":134.8,"last_update":"2026-03-20T16:59:39.576251492Z"} +2026/03/20 16:59:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:39.585866968Z"} +2026/03/20 16:59:44 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":10.42396715853893,"throughput_eps":0,"last_update":"2026-03-20T16:59:39.719124587Z"} +2026/03/20 16:59:44 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":99.16793024625753,"throughput_eps":0,"last_update":"2026-03-20T16:59:39.71915793Z"} +2026/03/20 16:59:44 ───────────────────────────────────────────────── +2026/03/20 16:59:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:44.575915099Z"} +2026/03/20 16:59:49 [metric_collector] {"stage_name":"metric_collector","events_processed":679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":135.8,"last_update":"2026-03-20T16:59:44.576334601Z"} +2026/03/20 16:59:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:44.58510336Z"} +2026/03/20 16:59:49 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":10.42396715853893,"throughput_eps":0,"last_update":"2026-03-20T16:59:44.719332074Z"} +2026/03/20 16:59:49 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":99.16793024625753,"throughput_eps":0,"last_update":"2026-03-20T16:59:44.719314511Z"} +2026/03/20 16:59:49 ───────────────────────────────────────────────── +2026/03/20 16:59:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:54 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":99.16793024625753,"throughput_eps":0,"last_update":"2026-03-20T16:59:49.718943767Z"} +2026/03/20 16:59:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:49.575497884Z"} +2026/03/20 16:59:54 [metric_collector] {"stage_name":"metric_collector","events_processed":684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":136.8,"last_update":"2026-03-20T16:59:49.575906925Z"} +2026/03/20 16:59:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":276,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:49.586744887Z"} +2026/03/20 16:59:54 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":10.42396715853893,"throughput_eps":0,"last_update":"2026-03-20T16:59:49.718963085Z"} +2026/03/20 16:59:54 ───────────────────────────────────────────────── +2026/03/20 16:59:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:54.575535614Z"} +2026/03/20 16:59:59 [metric_collector] {"stage_name":"metric_collector","events_processed":689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":137.8,"last_update":"2026-03-20T16:59:54.576138405Z"} +2026/03/20 16:59:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:54.586905182Z"} +2026/03/20 16:59:59 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":10.42396715853893,"throughput_eps":0,"last_update":"2026-03-20T16:59:54.719183335Z"} +2026/03/20 16:59:59 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":92.60210879700604,"throughput_eps":0,"last_update":"2026-03-20T16:59:54.785489426Z"} +2026/03/20 16:59:59 ───────────────────────────────────────────────── +2026/03/20 17:00:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:59.575829146Z"} +2026/03/20 17:00:04 [metric_collector] {"stage_name":"metric_collector","events_processed":699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":139.8,"last_update":"2026-03-20T17:00:04.575767769Z"} +2026/03/20 17:00:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:59.585053397Z"} +2026/03/20 17:00:04 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":10.571536326831145,"throughput_eps":0,"last_update":"2026-03-20T16:59:59.719376068Z"} +2026/03/20 17:00:04 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":92.60210879700604,"throughput_eps":0,"last_update":"2026-03-20T16:59:59.719342303Z"} +2026/03/20 17:00:04 ───────────────────────────────────────────────── +2026/03/20 17:00:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:09 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":92.60210879700604,"throughput_eps":0,"last_update":"2026-03-20T17:00:04.719312079Z"} +2026/03/20 17:00:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:04.575905572Z"} +2026/03/20 17:00:09 [metric_collector] {"stage_name":"metric_collector","events_processed":699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":139.8,"last_update":"2026-03-20T17:00:04.575767769Z"} +2026/03/20 17:00:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:04.592106683Z"} +2026/03/20 17:00:09 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":10.571536326831145,"throughput_eps":0,"last_update":"2026-03-20T17:00:04.719443631Z"} +2026/03/20 17:00:09 ───────────────────────────────────────────────── +2026/03/20 17:00:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:09.575518206Z"} +2026/03/20 17:00:14 [metric_collector] {"stage_name":"metric_collector","events_processed":704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":140.8,"last_update":"2026-03-20T17:00:09.5757922Z"} +2026/03/20 17:00:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:09.585958272Z"} +2026/03/20 17:00:14 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":10.571536326831145,"throughput_eps":0,"last_update":"2026-03-20T17:00:09.719222052Z"} +2026/03/20 17:00:14 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":92.60210879700604,"throughput_eps":0,"last_update":"2026-03-20T17:00:09.71924693Z"} +2026/03/20 17:00:14 ───────────────────────────────────────────────── +2026/03/20 17:00:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":286,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:14.586416202Z"} +2026/03/20 17:00:19 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":10.571536326831145,"throughput_eps":0,"last_update":"2026-03-20T17:00:14.719767942Z"} +2026/03/20 17:00:19 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":92.60210879700604,"throughput_eps":0,"last_update":"2026-03-20T17:00:14.718642752Z"} +2026/03/20 17:00:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:14.575798857Z"} +2026/03/20 17:00:19 [metric_collector] {"stage_name":"metric_collector","events_processed":709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":141.8,"last_update":"2026-03-20T17:00:14.57612543Z"} +2026/03/20 17:00:19 ───────────────────────────────────────────────── +2026/03/20 17:00:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:19.575747379Z"} +2026/03/20 17:00:24 [metric_collector] {"stage_name":"metric_collector","events_processed":714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":142.8,"last_update":"2026-03-20T17:00:19.576547748Z"} +2026/03/20 17:00:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:19.585869228Z"} +2026/03/20 17:00:24 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":10.571536326831145,"throughput_eps":0,"last_update":"2026-03-20T17:00:19.719095851Z"} +2026/03/20 17:00:24 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":92.60210879700604,"throughput_eps":0,"last_update":"2026-03-20T17:00:19.719104006Z"} +2026/03/20 17:00:24 ───────────────────────────────────────────────── +2026/03/20 17:00:24 [ANOMALY] time=2026-03-20T17:00:24Z score=0.9607 method=SEAD details=MAD!:w=0.24,s=0.87 RRCF-fast!:w=0.19,s=1.00 RRCF-mid!:w=0.19,s=1.00 RRCF-slow!:w=0.19,s=1.00 COPOD!:w=0.20,s=0.96 +2026/03/20 17:00:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:29 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":87.06673043760483,"throughput_eps":0,"last_update":"2026-03-20T17:00:24.783955897Z"} +2026/03/20 17:00:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:24.575689981Z"} +2026/03/20 17:00:29 [metric_collector] {"stage_name":"metric_collector","events_processed":719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":143.8,"last_update":"2026-03-20T17:00:24.576255702Z"} +2026/03/20 17:00:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:24.586677085Z"} +2026/03/20 17:00:29 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":10.571536326831145,"throughput_eps":0,"last_update":"2026-03-20T17:00:24.71901454Z"} +2026/03/20 17:00:29 ───────────────────────────────────────────────── +2026/03/20 17:00:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:34 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":87.06673043760483,"throughput_eps":0,"last_update":"2026-03-20T17:00:29.719071412Z"} +2026/03/20 17:00:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:29.575573229Z"} +2026/03/20 17:00:34 [metric_collector] {"stage_name":"metric_collector","events_processed":724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":144.8,"last_update":"2026-03-20T17:00:29.575996638Z"} +2026/03/20 17:00:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:29.588715201Z"} +2026/03/20 17:00:34 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":10.324819661464916,"throughput_eps":0,"last_update":"2026-03-20T17:00:29.719062915Z"} +2026/03/20 17:00:34 ───────────────────────────────────────────────── +2026/03/20 17:00:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:34.575687901Z"} +2026/03/20 17:00:39 [metric_collector] {"stage_name":"metric_collector","events_processed":729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":145.8,"last_update":"2026-03-20T17:00:34.57602213Z"} +2026/03/20 17:00:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:34.585972834Z"} +2026/03/20 17:00:39 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":10.324819661464916,"throughput_eps":0,"last_update":"2026-03-20T17:00:34.719222645Z"} +2026/03/20 17:00:39 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":87.06673043760483,"throughput_eps":0,"last_update":"2026-03-20T17:00:34.719234627Z"} +2026/03/20 17:00:39 ───────────────────────────────────────────────── +2026/03/20 17:00:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:44 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":87.06673043760483,"throughput_eps":0,"last_update":"2026-03-20T17:00:39.719710071Z"} +2026/03/20 17:00:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:39.57603646Z"} +2026/03/20 17:00:44 [metric_collector] {"stage_name":"metric_collector","events_processed":734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":146.8,"last_update":"2026-03-20T17:00:39.576433108Z"} +2026/03/20 17:00:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:39.585402058Z"} +2026/03/20 17:00:44 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":10.324819661464916,"throughput_eps":0,"last_update":"2026-03-20T17:00:39.719702947Z"} +2026/03/20 17:00:44 ───────────────────────────────────────────────── +2026/03/20 17:00:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:44.575512829Z"} +2026/03/20 17:00:49 [metric_collector] {"stage_name":"metric_collector","events_processed":739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":147.8,"last_update":"2026-03-20T17:00:44.576029796Z"} +2026/03/20 17:00:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:44.584832629Z"} +2026/03/20 17:00:49 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":10.324819661464916,"throughput_eps":0,"last_update":"2026-03-20T17:00:44.719115715Z"} +2026/03/20 17:00:49 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":87.06673043760483,"throughput_eps":0,"last_update":"2026-03-20T17:00:44.719130795Z"} +2026/03/20 17:00:49 ───────────────────────────────────────────────── +2026/03/20 17:00:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:49.576094299Z"} +2026/03/20 17:00:54 [metric_collector] {"stage_name":"metric_collector","events_processed":744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":148.8,"last_update":"2026-03-20T17:00:49.576411686Z"} +2026/03/20 17:00:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:49.585564599Z"} +2026/03/20 17:00:54 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":10.324819661464916,"throughput_eps":0,"last_update":"2026-03-20T17:00:49.719809112Z"} +2026/03/20 17:00:54 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":87.06673043760483,"throughput_eps":0,"last_update":"2026-03-20T17:00:49.718654225Z"} +2026/03/20 17:00:54 ───────────────────────────────────────────────── +2026/03/20 17:00:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:59 [transform_engine] {"stage_name":"transform_engine","events_processed":25,"events_dropped":0,"avg_latency_ms":92.18896135008387,"throughput_eps":0,"last_update":"2026-03-20T17:00:54.832073248Z"} +2026/03/20 17:00:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:54.575620644Z"} +2026/03/20 17:00:59 [metric_collector] {"stage_name":"metric_collector","events_processed":749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":149.8,"last_update":"2026-03-20T17:00:54.575819775Z"} +2026/03/20 17:00:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:54.586115603Z"} +2026/03/20 17:00:59 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":10.324819661464916,"throughput_eps":0,"last_update":"2026-03-20T17:00:54.719382488Z"} +2026/03/20 17:00:59 ───────────────────────────────────────────────── +2026/03/20 17:01:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:59.575744382Z"} +2026/03/20 17:01:04 [metric_collector] {"stage_name":"metric_collector","events_processed":754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":150.8,"last_update":"2026-03-20T17:00:59.576250659Z"} +2026/03/20 17:01:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:59.584525485Z"} +2026/03/20 17:01:04 [detection_layer] {"stage_name":"detection_layer","events_processed":25,"events_dropped":0,"avg_latency_ms":10.383887329171934,"throughput_eps":0,"last_update":"2026-03-20T17:00:59.718788736Z"} +2026/03/20 17:01:04 [transform_engine] {"stage_name":"transform_engine","events_processed":25,"events_dropped":0,"avg_latency_ms":92.18896135008387,"throughput_eps":0,"last_update":"2026-03-20T17:00:59.718745774Z"} +2026/03/20 17:01:04 ───────────────────────────────────────────────── +2026/03/20 17:01:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:09 [detection_layer] {"stage_name":"detection_layer","events_processed":25,"events_dropped":0,"avg_latency_ms":10.383887329171934,"throughput_eps":0,"last_update":"2026-03-20T17:01:04.719662761Z"} +2026/03/20 17:01:09 [transform_engine] {"stage_name":"transform_engine","events_processed":25,"events_dropped":0,"avg_latency_ms":92.18896135008387,"throughput_eps":0,"last_update":"2026-03-20T17:01:04.719766309Z"} +2026/03/20 17:01:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:04.575958184Z"} +2026/03/20 17:01:09 [metric_collector] {"stage_name":"metric_collector","events_processed":759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":151.8,"last_update":"2026-03-20T17:01:04.576705833Z"} +2026/03/20 17:01:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:04.586416895Z"} +2026/03/20 17:01:09 ───────────────────────────────────────────────── +2026/03/20 17:01:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:14 [detection_layer] {"stage_name":"detection_layer","events_processed":25,"events_dropped":0,"avg_latency_ms":10.383887329171934,"throughput_eps":0,"last_update":"2026-03-20T17:01:09.71879442Z"} +2026/03/20 17:01:14 [transform_engine] {"stage_name":"transform_engine","events_processed":25,"events_dropped":0,"avg_latency_ms":92.18896135008387,"throughput_eps":0,"last_update":"2026-03-20T17:01:09.718734295Z"} +2026/03/20 17:01:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:09.575790943Z"} +2026/03/20 17:01:14 [metric_collector] {"stage_name":"metric_collector","events_processed":764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":152.8,"last_update":"2026-03-20T17:01:09.576098671Z"} +2026/03/20 17:01:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:09.586603221Z"} +2026/03/20 17:01:14 ───────────────────────────────────────────────── +2026/03/20 17:01:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:14.575749295Z"} +2026/03/20 17:01:19 [metric_collector] {"stage_name":"metric_collector","events_processed":769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":153.8,"last_update":"2026-03-20T17:01:14.576130213Z"} +2026/03/20 17:01:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:14.586229949Z"} +2026/03/20 17:01:19 [detection_layer] {"stage_name":"detection_layer","events_processed":25,"events_dropped":0,"avg_latency_ms":10.383887329171934,"throughput_eps":0,"last_update":"2026-03-20T17:01:14.71959791Z"} +2026/03/20 17:01:19 [transform_engine] {"stage_name":"transform_engine","events_processed":25,"events_dropped":0,"avg_latency_ms":92.18896135008387,"throughput_eps":0,"last_update":"2026-03-20T17:01:14.71955594Z"} +2026/03/20 17:01:19 ───────────────────────────────────────────────── +2026/03/20 17:01:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:19.575942033Z"} +2026/03/20 17:01:24 [metric_collector] {"stage_name":"metric_collector","events_processed":774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":154.8,"last_update":"2026-03-20T17:01:19.576226317Z"} +2026/03/20 17:01:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:19.584816288Z"} +2026/03/20 17:01:24 [detection_layer] {"stage_name":"detection_layer","events_processed":25,"events_dropped":0,"avg_latency_ms":10.383887329171934,"throughput_eps":0,"last_update":"2026-03-20T17:01:19.7192108Z"} +2026/03/20 17:01:24 [transform_engine] {"stage_name":"transform_engine","events_processed":25,"events_dropped":0,"avg_latency_ms":92.18896135008387,"throughput_eps":0,"last_update":"2026-03-20T17:01:19.719311162Z"} +2026/03/20 17:01:24 ───────────────────────────────────────────────── +2026/03/20 17:01:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:24.57618224Z"} +2026/03/20 17:01:29 [metric_collector] {"stage_name":"metric_collector","events_processed":779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":155.8,"last_update":"2026-03-20T17:01:24.576169595Z"} +2026/03/20 17:01:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:24.586245798Z"} +2026/03/20 17:01:29 [detection_layer] {"stage_name":"detection_layer","events_processed":25,"events_dropped":0,"avg_latency_ms":10.383887329171934,"throughput_eps":0,"last_update":"2026-03-20T17:01:24.719523225Z"} +2026/03/20 17:01:29 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":95.8821968800671,"throughput_eps":0,"last_update":"2026-03-20T17:01:24.830114342Z"} +2026/03/20 17:01:29 ───────────────────────────────────────────────── +2026/03/20 17:01:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:29.575918663Z"} +2026/03/20 17:01:34 [metric_collector] {"stage_name":"metric_collector","events_processed":784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":156.8,"last_update":"2026-03-20T17:01:29.576268762Z"} +2026/03/20 17:01:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:29.585905996Z"} +2026/03/20 17:01:34 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":10.453477063337548,"throughput_eps":0,"last_update":"2026-03-20T17:01:29.719393395Z"} +2026/03/20 17:01:34 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":95.8821968800671,"throughput_eps":0,"last_update":"2026-03-20T17:01:29.719253247Z"} +2026/03/20 17:01:34 ───────────────────────────────────────────────── +2026/03/20 17:01:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:34.575543111Z"} +2026/03/20 17:01:39 [metric_collector] {"stage_name":"metric_collector","events_processed":789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":157.8,"last_update":"2026-03-20T17:01:34.575946723Z"} +2026/03/20 17:01:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:34.585508674Z"} +2026/03/20 17:01:39 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":10.453477063337548,"throughput_eps":0,"last_update":"2026-03-20T17:01:34.719029125Z"} +2026/03/20 17:01:39 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":95.8821968800671,"throughput_eps":0,"last_update":"2026-03-20T17:01:34.718830094Z"} +2026/03/20 17:01:39 ───────────────────────────────────────────────── +2026/03/20 17:01:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:44 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":10.453477063337548,"throughput_eps":0,"last_update":"2026-03-20T17:01:39.719610316Z"} +2026/03/20 17:01:44 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":95.8821968800671,"throughput_eps":0,"last_update":"2026-03-20T17:01:39.719724615Z"} +2026/03/20 17:01:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:39.575779864Z"} +2026/03/20 17:01:44 [metric_collector] {"stage_name":"metric_collector","events_processed":794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":158.8,"last_update":"2026-03-20T17:01:39.576183374Z"} +2026/03/20 17:01:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":320,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:39.585218299Z"} +2026/03/20 17:01:44 ───────────────────────────────────────────────── +2026/03/20 17:01:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:44.575513875Z"} +2026/03/20 17:01:49 [metric_collector] {"stage_name":"metric_collector","events_processed":799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":159.8,"last_update":"2026-03-20T17:01:44.576051052Z"} +2026/03/20 17:01:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:44.586865951Z"} +2026/03/20 17:01:49 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":10.453477063337548,"throughput_eps":0,"last_update":"2026-03-20T17:01:44.719232424Z"} +2026/03/20 17:01:49 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":95.8821968800671,"throughput_eps":0,"last_update":"2026-03-20T17:01:44.719265669Z"} +2026/03/20 17:01:49 ───────────────────────────────────────────────── +2026/03/20 17:01:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:49.575863551Z"} +2026/03/20 17:01:54 [metric_collector] {"stage_name":"metric_collector","events_processed":804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":160.8,"last_update":"2026-03-20T17:01:49.576170658Z"} +2026/03/20 17:01:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:49.585713184Z"} +2026/03/20 17:01:54 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":10.453477063337548,"throughput_eps":0,"last_update":"2026-03-20T17:01:49.719167037Z"} +2026/03/20 17:01:54 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":95.8821968800671,"throughput_eps":0,"last_update":"2026-03-20T17:01:49.719059381Z"} +2026/03/20 17:01:54 ───────────────────────────────────────────────── +2026/03/20 17:01:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:59 [metric_collector] {"stage_name":"metric_collector","events_processed":809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":161.8,"last_update":"2026-03-20T17:01:54.576707165Z"} +2026/03/20 17:01:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:54.585229511Z"} +2026/03/20 17:01:59 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":10.453477063337548,"throughput_eps":0,"last_update":"2026-03-20T17:01:54.720430354Z"} +2026/03/20 17:01:59 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":89.91524970405368,"throughput_eps":0,"last_update":"2026-03-20T17:01:54.7855338Z"} +2026/03/20 17:01:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:54.57595145Z"} +2026/03/20 17:01:59 ───────────────────────────────────────────────── +2026/03/20 17:02:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:59.575594849Z"} +2026/03/20 17:02:04 [metric_collector] {"stage_name":"metric_collector","events_processed":814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":162.8,"last_update":"2026-03-20T17:01:59.575804821Z"} +2026/03/20 17:02:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:59.586144563Z"} +2026/03/20 17:02:04 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":9.202104650670039,"throughput_eps":0,"last_update":"2026-03-20T17:01:59.719473486Z"} +2026/03/20 17:02:04 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":89.91524970405368,"throughput_eps":0,"last_update":"2026-03-20T17:01:59.719484777Z"} +2026/03/20 17:02:04 ───────────────────────────────────────────────── +2026/03/20 17:02:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":330,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:04.585065168Z"} +2026/03/20 17:02:09 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":9.202104650670039,"throughput_eps":0,"last_update":"2026-03-20T17:02:04.719453314Z"} +2026/03/20 17:02:09 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":89.91524970405368,"throughput_eps":0,"last_update":"2026-03-20T17:02:04.719465789Z"} +2026/03/20 17:02:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:04.575867389Z"} +2026/03/20 17:02:09 [metric_collector] {"stage_name":"metric_collector","events_processed":819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":163.8,"last_update":"2026-03-20T17:02:04.576300587Z"} +2026/03/20 17:02:09 ───────────────────────────────────────────────── +2026/03/20 17:02:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:09.575917927Z"} +2026/03/20 17:02:14 [metric_collector] {"stage_name":"metric_collector","events_processed":824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":164.8,"last_update":"2026-03-20T17:02:09.576470714Z"} +2026/03/20 17:02:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:09.585536641Z"} +2026/03/20 17:02:14 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":9.202104650670039,"throughput_eps":0,"last_update":"2026-03-20T17:02:09.718826837Z"} +2026/03/20 17:02:14 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":89.91524970405368,"throughput_eps":0,"last_update":"2026-03-20T17:02:09.71883876Z"} +2026/03/20 17:02:14 ───────────────────────────────────────────────── +2026/03/20 17:02:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:14.585213956Z"} +2026/03/20 17:02:19 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":9.202104650670039,"throughput_eps":0,"last_update":"2026-03-20T17:02:14.719583856Z"} +2026/03/20 17:02:19 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":89.91524970405368,"throughput_eps":0,"last_update":"2026-03-20T17:02:14.719596631Z"} +2026/03/20 17:02:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:14.575900775Z"} +2026/03/20 17:02:19 [metric_collector] {"stage_name":"metric_collector","events_processed":829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":165.8,"last_update":"2026-03-20T17:02:14.576258329Z"} +2026/03/20 17:02:19 ───────────────────────────────────────────────── +2026/03/20 17:02:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:19.575856769Z"} +2026/03/20 17:02:24 [metric_collector] {"stage_name":"metric_collector","events_processed":834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":166.8,"last_update":"2026-03-20T17:02:19.576194084Z"} +2026/03/20 17:02:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:19.586460038Z"} +2026/03/20 17:02:24 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":9.202104650670039,"throughput_eps":0,"last_update":"2026-03-20T17:02:19.719718921Z"} +2026/03/20 17:02:24 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":89.91524970405368,"throughput_eps":0,"last_update":"2026-03-20T17:02:19.719725955Z"} +2026/03/20 17:02:24 ───────────────────────────────────────────────── +2026/03/20 17:02:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:29 [metric_collector] {"stage_name":"metric_collector","events_processed":839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":167.8,"last_update":"2026-03-20T17:02:24.576565528Z"} +2026/03/20 17:02:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:24.58503712Z"} +2026/03/20 17:02:29 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":9.202104650670039,"throughput_eps":0,"last_update":"2026-03-20T17:02:24.719268434Z"} +2026/03/20 17:02:29 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":84.77009876324294,"throughput_eps":0,"last_update":"2026-03-20T17:02:24.783602876Z"} +2026/03/20 17:02:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:29.57559238Z"} +2026/03/20 17:02:29 ───────────────────────────────────────────────── +2026/03/20 17:02:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:34 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":9.834080120536033,"throughput_eps":0,"last_update":"2026-03-20T17:02:29.719235774Z"} +2026/03/20 17:02:34 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":84.77009876324294,"throughput_eps":0,"last_update":"2026-03-20T17:02:29.719297973Z"} +2026/03/20 17:02:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:29.57559238Z"} +2026/03/20 17:02:34 [metric_collector] {"stage_name":"metric_collector","events_processed":844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":168.8,"last_update":"2026-03-20T17:02:29.576227244Z"} +2026/03/20 17:02:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:29.584908578Z"} +2026/03/20 17:02:34 ───────────────────────────────────────────────── +2026/03/20 17:02:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:39 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":84.77009876324294,"throughput_eps":0,"last_update":"2026-03-20T17:02:34.719522754Z"} +2026/03/20 17:02:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:34.575555541Z"} +2026/03/20 17:02:39 [metric_collector] {"stage_name":"metric_collector","events_processed":849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":169.8,"last_update":"2026-03-20T17:02:34.575954985Z"} +2026/03/20 17:02:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":342,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:34.586198849Z"} +2026/03/20 17:02:39 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":9.834080120536033,"throughput_eps":0,"last_update":"2026-03-20T17:02:34.719542461Z"} +2026/03/20 17:02:39 ───────────────────────────────────────────────── +2026/03/20 17:02:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:39.575797909Z"} +2026/03/20 17:02:44 [metric_collector] {"stage_name":"metric_collector","events_processed":854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":170.8,"last_update":"2026-03-20T17:02:39.576873456Z"} +2026/03/20 17:02:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:39.586510129Z"} +2026/03/20 17:02:44 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":9.834080120536033,"throughput_eps":0,"last_update":"2026-03-20T17:02:39.718863677Z"} +2026/03/20 17:02:44 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":84.77009876324294,"throughput_eps":0,"last_update":"2026-03-20T17:02:39.71872434Z"} +2026/03/20 17:02:44 ───────────────────────────────────────────────── +2026/03/20 17:02:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:49 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":84.77009876324294,"throughput_eps":0,"last_update":"2026-03-20T17:02:44.719521181Z"} +2026/03/20 17:02:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:44.575560984Z"} +2026/03/20 17:02:49 [metric_collector] {"stage_name":"metric_collector","events_processed":859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":171.8,"last_update":"2026-03-20T17:02:44.575623934Z"} +2026/03/20 17:02:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:44.586289085Z"} +2026/03/20 17:02:49 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":9.834080120536033,"throughput_eps":0,"last_update":"2026-03-20T17:02:44.719608959Z"} +2026/03/20 17:02:49 ───────────────────────────────────────────────── +2026/03/20 17:02:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:49.576055202Z"} +2026/03/20 17:02:54 [metric_collector] {"stage_name":"metric_collector","events_processed":864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":172.8,"last_update":"2026-03-20T17:02:49.576387287Z"} +2026/03/20 17:02:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:49.586262397Z"} +2026/03/20 17:02:54 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":9.834080120536033,"throughput_eps":0,"last_update":"2026-03-20T17:02:49.719555149Z"} +2026/03/20 17:02:54 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":84.77009876324294,"throughput_eps":0,"last_update":"2026-03-20T17:02:49.719521855Z"} +2026/03/20 17:02:54 ───────────────────────────────────────────────── +2026/03/20 17:02:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:54.575635137Z"} +2026/03/20 17:02:59 [metric_collector] {"stage_name":"metric_collector","events_processed":869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":173.8,"last_update":"2026-03-20T17:02:54.576076873Z"} +2026/03/20 17:02:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":350,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:54.586379691Z"} +2026/03/20 17:02:59 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":9.834080120536033,"throughput_eps":0,"last_update":"2026-03-20T17:02:54.719459032Z"} +2026/03/20 17:02:59 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":80.79570821059436,"throughput_eps":0,"last_update":"2026-03-20T17:02:54.78447845Z"} +2026/03/20 17:02:59 ───────────────────────────────────────────────── +2026/03/20 17:03:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:59.575522983Z"} +2026/03/20 17:03:04 [metric_collector] {"stage_name":"metric_collector","events_processed":874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":174.8,"last_update":"2026-03-20T17:02:59.575984966Z"} +2026/03/20 17:03:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:59.586496415Z"} +2026/03/20 17:03:04 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":10.233033896428827,"throughput_eps":0,"last_update":"2026-03-20T17:02:59.719831162Z"} +2026/03/20 17:03:04 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":80.79570821059436,"throughput_eps":0,"last_update":"2026-03-20T17:02:59.718681904Z"} +2026/03/20 17:03:04 ───────────────────────────────────────────────── +2026/03/20 17:03:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:09 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":80.79570821059436,"throughput_eps":0,"last_update":"2026-03-20T17:03:04.719157239Z"} +2026/03/20 17:03:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:04.575663207Z"} +2026/03/20 17:03:09 [metric_collector] {"stage_name":"metric_collector","events_processed":879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":175.8,"last_update":"2026-03-20T17:03:04.575982959Z"} +2026/03/20 17:03:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:04.58564333Z"} +2026/03/20 17:03:09 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":10.233033896428827,"throughput_eps":0,"last_update":"2026-03-20T17:03:04.71914206Z"} +2026/03/20 17:03:09 ───────────────────────────────────────────────── +2026/03/20 17:03:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:14 [metric_collector] {"stage_name":"metric_collector","events_processed":884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":176.8,"last_update":"2026-03-20T17:03:09.576140424Z"} +2026/03/20 17:03:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:09.585223531Z"} +2026/03/20 17:03:14 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":10.233033896428827,"throughput_eps":0,"last_update":"2026-03-20T17:03:09.719620329Z"} +2026/03/20 17:03:14 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":80.79570821059436,"throughput_eps":0,"last_update":"2026-03-20T17:03:09.719633043Z"} +2026/03/20 17:03:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:09.57576171Z"} +2026/03/20 17:03:14 ───────────────────────────────────────────────── +2026/03/20 17:03:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:14.575957943Z"} +2026/03/20 17:03:19 [metric_collector] {"stage_name":"metric_collector","events_processed":889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":177.8,"last_update":"2026-03-20T17:03:14.57626977Z"} +2026/03/20 17:03:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:14.586275714Z"} +2026/03/20 17:03:19 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":10.233033896428827,"throughput_eps":0,"last_update":"2026-03-20T17:03:14.719480146Z"} +2026/03/20 17:03:19 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":80.79570821059436,"throughput_eps":0,"last_update":"2026-03-20T17:03:14.719456721Z"} +2026/03/20 17:03:19 ───────────────────────────────────────────────── +2026/03/20 17:03:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:19.575715385Z"} +2026/03/20 17:03:24 [metric_collector] {"stage_name":"metric_collector","events_processed":894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":178.8,"last_update":"2026-03-20T17:03:19.576173812Z"} +2026/03/20 17:03:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":360,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:19.586097438Z"} +2026/03/20 17:03:24 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":10.233033896428827,"throughput_eps":0,"last_update":"2026-03-20T17:03:19.71956895Z"} +2026/03/20 17:03:24 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":80.79570821059436,"throughput_eps":0,"last_update":"2026-03-20T17:03:19.719509086Z"} +2026/03/20 17:03:24 ───────────────────────────────────────────────── +2026/03/20 17:03:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:24.585258206Z"} +2026/03/20 17:03:29 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":10.233033896428827,"throughput_eps":0,"last_update":"2026-03-20T17:03:24.719485842Z"} +2026/03/20 17:03:29 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":77.2287629684755,"throughput_eps":0,"last_update":"2026-03-20T17:03:24.782512812Z"} +2026/03/20 17:03:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:24.575658047Z"} +2026/03/20 17:03:29 [metric_collector] {"stage_name":"metric_collector","events_processed":899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":179.8,"last_update":"2026-03-20T17:03:24.575975615Z"} +2026/03/20 17:03:29 ───────────────────────────────────────────────── +2026/03/20 17:03:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:29.575803182Z"} +2026/03/20 17:03:34 [metric_collector] {"stage_name":"metric_collector","events_processed":904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":180.8,"last_update":"2026-03-20T17:03:29.576002673Z"} +2026/03/20 17:03:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:29.586547509Z"} +2026/03/20 17:03:34 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":10.668866717143061,"throughput_eps":0,"last_update":"2026-03-20T17:03:29.718787471Z"} +2026/03/20 17:03:34 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":77.2287629684755,"throughput_eps":0,"last_update":"2026-03-20T17:03:29.718778533Z"} +2026/03/20 17:03:34 ───────────────────────────────────────────────── +2026/03/20 17:03:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:39 [metric_collector] {"stage_name":"metric_collector","events_processed":909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":181.8,"last_update":"2026-03-20T17:03:34.575789623Z"} +2026/03/20 17:03:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:34.587231886Z"} +2026/03/20 17:03:39 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":10.668866717143061,"throughput_eps":0,"last_update":"2026-03-20T17:03:34.719810083Z"} +2026/03/20 17:03:39 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":77.2287629684755,"throughput_eps":0,"last_update":"2026-03-20T17:03:34.719690334Z"} +2026/03/20 17:03:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:34.575493747Z"} +2026/03/20 17:03:39 ───────────────────────────────────────────────── +2026/03/20 17:03:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:44 [metric_collector] {"stage_name":"metric_collector","events_processed":914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":182.8,"last_update":"2026-03-20T17:03:39.575853171Z"} +2026/03/20 17:03:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:39.585955751Z"} +2026/03/20 17:03:44 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":10.668866717143061,"throughput_eps":0,"last_update":"2026-03-20T17:03:39.719308728Z"} +2026/03/20 17:03:44 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":77.2287629684755,"throughput_eps":0,"last_update":"2026-03-20T17:03:39.719321402Z"} +2026/03/20 17:03:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:39.575555341Z"} +2026/03/20 17:03:44 ───────────────────────────────────────────────── +2026/03/20 17:03:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:44.575838092Z"} +2026/03/20 17:03:49 [metric_collector] {"stage_name":"metric_collector","events_processed":919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":183.8,"last_update":"2026-03-20T17:03:44.576175919Z"} +2026/03/20 17:03:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:44.586229216Z"} +2026/03/20 17:03:49 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":10.668866717143061,"throughput_eps":0,"last_update":"2026-03-20T17:03:44.719495564Z"} +2026/03/20 17:03:49 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":77.2287629684755,"throughput_eps":0,"last_update":"2026-03-20T17:03:44.71950844Z"} +2026/03/20 17:03:49 ───────────────────────────────────────────────── +2026/03/20 17:03:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:49.575893051Z"} +2026/03/20 17:03:54 [metric_collector] {"stage_name":"metric_collector","events_processed":924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":184.8,"last_update":"2026-03-20T17:03:49.576677242Z"} +2026/03/20 17:03:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:49.585231731Z"} +2026/03/20 17:03:54 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":10.668866717143061,"throughput_eps":0,"last_update":"2026-03-20T17:03:49.719470989Z"} +2026/03/20 17:03:54 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":77.2287629684755,"throughput_eps":0,"last_update":"2026-03-20T17:03:49.719478723Z"} +2026/03/20 17:03:54 ───────────────────────────────────────────────── +2026/03/20 17:03:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:54.586304017Z"} +2026/03/20 17:03:59 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":10.668866717143061,"throughput_eps":0,"last_update":"2026-03-20T17:03:54.71964884Z"} +2026/03/20 17:03:59 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":73.8666219747804,"throughput_eps":0,"last_update":"2026-03-20T17:03:54.78007828Z"} +2026/03/20 17:03:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:54.575764468Z"} +2026/03/20 17:03:59 [metric_collector] {"stage_name":"metric_collector","events_processed":929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":185.8,"last_update":"2026-03-20T17:03:54.575685146Z"} +2026/03/20 17:03:59 ───────────────────────────────────────────────── +2026/03/20 17:04:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:04 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":10.86302797371445,"throughput_eps":0,"last_update":"2026-03-20T17:03:59.719043709Z"} +2026/03/20 17:04:04 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":73.8666219747804,"throughput_eps":0,"last_update":"2026-03-20T17:03:59.719049711Z"} +2026/03/20 17:04:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:59.575868877Z"} +2026/03/20 17:04:04 [metric_collector] {"stage_name":"metric_collector","events_processed":934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":186.8,"last_update":"2026-03-20T17:03:59.576179391Z"} +2026/03/20 17:04:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:59.584643589Z"} +2026/03/20 17:04:04 ───────────────────────────────────────────────── +2026/03/20 17:04:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:09 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":10.86302797371445,"throughput_eps":0,"last_update":"2026-03-20T17:04:04.719206795Z"} +2026/03/20 17:04:09 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":73.8666219747804,"throughput_eps":0,"last_update":"2026-03-20T17:04:04.719214731Z"} +2026/03/20 17:04:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:04.575663549Z"} +2026/03/20 17:04:09 [metric_collector] {"stage_name":"metric_collector","events_processed":939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":187.8,"last_update":"2026-03-20T17:04:04.576038047Z"} +2026/03/20 17:04:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:04.58698711Z"} +2026/03/20 17:04:09 ───────────────────────────────────────────────── +2026/03/20 17:04:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:09.575810357Z"} +2026/03/20 17:04:14 [metric_collector] {"stage_name":"metric_collector","events_processed":944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":188.8,"last_update":"2026-03-20T17:04:09.576110571Z"} +2026/03/20 17:04:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":380,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:09.586661353Z"} +2026/03/20 17:04:14 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":10.86302797371445,"throughput_eps":0,"last_update":"2026-03-20T17:04:09.718890383Z"} +2026/03/20 17:04:14 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":73.8666219747804,"throughput_eps":0,"last_update":"2026-03-20T17:04:09.718896095Z"} +2026/03/20 17:04:14 ───────────────────────────────────────────────── +2026/03/20 17:04:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:19 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":73.8666219747804,"throughput_eps":0,"last_update":"2026-03-20T17:04:14.719070762Z"} +2026/03/20 17:04:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:14.57605958Z"} +2026/03/20 17:04:19 [metric_collector] {"stage_name":"metric_collector","events_processed":949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":189.8,"last_update":"2026-03-20T17:04:14.576416934Z"} +2026/03/20 17:04:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:14.585800823Z"} +2026/03/20 17:04:19 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":10.86302797371445,"throughput_eps":0,"last_update":"2026-03-20T17:04:14.719065312Z"} +2026/03/20 17:04:19 ───────────────────────────────────────────────── +2026/03/20 17:04:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:19.575780959Z"} +2026/03/20 17:04:24 [metric_collector] {"stage_name":"metric_collector","events_processed":954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":190.8,"last_update":"2026-03-20T17:04:19.576557765Z"} +2026/03/20 17:04:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:19.586291716Z"} +2026/03/20 17:04:24 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":10.86302797371445,"throughput_eps":0,"last_update":"2026-03-20T17:04:19.719509973Z"} +2026/03/20 17:04:24 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":73.8666219747804,"throughput_eps":0,"last_update":"2026-03-20T17:04:19.719517667Z"} +2026/03/20 17:04:24 ───────────────────────────────────────────────── +2026/03/20 17:04:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:24.585487364Z"} +2026/03/20 17:04:29 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":10.86302797371445,"throughput_eps":0,"last_update":"2026-03-20T17:04:24.719814811Z"} +2026/03/20 17:04:29 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":81.70124017982432,"throughput_eps":0,"last_update":"2026-03-20T17:04:24.831748146Z"} +2026/03/20 17:04:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:24.576042637Z"} +2026/03/20 17:04:29 [metric_collector] {"stage_name":"metric_collector","events_processed":959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":191.8,"last_update":"2026-03-20T17:04:24.576332001Z"} +2026/03/20 17:04:29 ───────────────────────────────────────────────── +2026/03/20 17:04:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:29.575567543Z"} +2026/03/20 17:04:34 [metric_collector] {"stage_name":"metric_collector","events_processed":964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":192.8,"last_update":"2026-03-20T17:04:29.575706238Z"} +2026/03/20 17:04:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":388,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:29.585586881Z"} +2026/03/20 17:04:34 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":11.15847997897156,"throughput_eps":0,"last_update":"2026-03-20T17:04:29.718810551Z"} +2026/03/20 17:04:34 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":81.70124017982432,"throughput_eps":0,"last_update":"2026-03-20T17:04:29.718826151Z"} +2026/03/20 17:04:34 ───────────────────────────────────────────────── +2026/03/20 17:04:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:39 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":81.70124017982432,"throughput_eps":0,"last_update":"2026-03-20T17:04:34.71893824Z"} +2026/03/20 17:04:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:34.575569353Z"} +2026/03/20 17:04:39 [metric_collector] {"stage_name":"metric_collector","events_processed":969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":193.8,"last_update":"2026-03-20T17:04:34.576379073Z"} +2026/03/20 17:04:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":390,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:34.585675336Z"} +2026/03/20 17:04:39 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":11.15847997897156,"throughput_eps":0,"last_update":"2026-03-20T17:04:34.718930095Z"} +2026/03/20 17:04:39 ───────────────────────────────────────────────── +2026/03/20 17:04:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:39.575881784Z"} +2026/03/20 17:04:44 [metric_collector] {"stage_name":"metric_collector","events_processed":974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":194.8,"last_update":"2026-03-20T17:04:39.576297851Z"} +2026/03/20 17:04:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:39.585585338Z"} +2026/03/20 17:04:44 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":11.15847997897156,"throughput_eps":0,"last_update":"2026-03-20T17:04:39.71884367Z"} +2026/03/20 17:04:44 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":81.70124017982432,"throughput_eps":0,"last_update":"2026-03-20T17:04:39.718855472Z"} +2026/03/20 17:04:44 ───────────────────────────────────────────────── +2026/03/20 17:04:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:44.575852944Z"} +2026/03/20 17:04:49 [metric_collector] {"stage_name":"metric_collector","events_processed":979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":195.8,"last_update":"2026-03-20T17:04:44.576177536Z"} +2026/03/20 17:04:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:44.584805601Z"} +2026/03/20 17:04:49 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":11.15847997897156,"throughput_eps":0,"last_update":"2026-03-20T17:04:44.719037894Z"} +2026/03/20 17:04:49 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":81.70124017982432,"throughput_eps":0,"last_update":"2026-03-20T17:04:44.719048234Z"} +2026/03/20 17:04:49 ───────────────────────────────────────────────── +2026/03/20 17:04:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:49.57605576Z"} +2026/03/20 17:04:54 [metric_collector] {"stage_name":"metric_collector","events_processed":984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":196.8,"last_update":"2026-03-20T17:04:49.576805996Z"} +2026/03/20 17:04:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:49.585139619Z"} +2026/03/20 17:04:54 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":11.15847997897156,"throughput_eps":0,"last_update":"2026-03-20T17:04:49.719584093Z"} +2026/03/20 17:04:54 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":81.70124017982432,"throughput_eps":0,"last_update":"2026-03-20T17:04:49.71959791Z"} +2026/03/20 17:04:54 ───────────────────────────────────────────────── +2026/03/20 17:04:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:54.57597976Z"} +2026/03/20 17:04:59 [metric_collector] {"stage_name":"metric_collector","events_processed":989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":197.8,"last_update":"2026-03-20T17:04:54.576264917Z"} +2026/03/20 17:04:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:54.585003123Z"} +2026/03/20 17:04:59 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":11.15847997897156,"throughput_eps":0,"last_update":"2026-03-20T17:04:54.719403601Z"} +2026/03/20 17:04:59 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":87.40977334385947,"throughput_eps":0,"last_update":"2026-03-20T17:04:54.829664099Z"} +2026/03/20 17:04:59 ───────────────────────────────────────────────── +2026/03/20 17:05:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:04 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":87.40977334385947,"throughput_eps":0,"last_update":"2026-03-20T17:04:59.719128053Z"} +2026/03/20 17:05:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:59.575545973Z"} +2026/03/20 17:05:04 [metric_collector] {"stage_name":"metric_collector","events_processed":994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":198.8,"last_update":"2026-03-20T17:04:59.575756175Z"} +2026/03/20 17:05:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":400,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:59.585750798Z"} +2026/03/20 17:05:04 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":11.57642818317725,"throughput_eps":0,"last_update":"2026-03-20T17:04:59.719113606Z"} +2026/03/20 17:05:04 ───────────────────────────────────────────────── +2026/03/20 17:05:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:04.576416155Z"} +2026/03/20 17:05:09 [metric_collector] {"stage_name":"metric_collector","events_processed":999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":199.8,"last_update":"2026-03-20T17:05:04.576854765Z"} +2026/03/20 17:05:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":402,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:04.585961699Z"} +2026/03/20 17:05:09 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":11.57642818317725,"throughput_eps":0,"last_update":"2026-03-20T17:05:04.719209102Z"} +2026/03/20 17:05:09 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":87.40977334385947,"throughput_eps":0,"last_update":"2026-03-20T17:05:04.719221146Z"} +2026/03/20 17:05:09 ───────────────────────────────────────────────── +2026/03/20 17:05:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:14 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":11.57642818317725,"throughput_eps":0,"last_update":"2026-03-20T17:05:09.719018353Z"} +2026/03/20 17:05:14 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":87.40977334385947,"throughput_eps":0,"last_update":"2026-03-20T17:05:09.719030627Z"} +2026/03/20 17:05:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:09.575555756Z"} +2026/03/20 17:05:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":200.8,"last_update":"2026-03-20T17:05:09.575903021Z"} +2026/03/20 17:05:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:09.585639211Z"} +2026/03/20 17:05:14 ───────────────────────────────────────────────── +2026/03/20 17:05:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:14.584911525Z"} +2026/03/20 17:05:19 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":11.57642818317725,"throughput_eps":0,"last_update":"2026-03-20T17:05:14.719303283Z"} +2026/03/20 17:05:19 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":87.40977334385947,"throughput_eps":0,"last_update":"2026-03-20T17:05:14.719318431Z"} +2026/03/20 17:05:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:14.576201911Z"} +2026/03/20 17:05:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":201.8,"last_update":"2026-03-20T17:05:14.576758948Z"} +2026/03/20 17:05:19 ───────────────────────────────────────────────── +2026/03/20 17:05:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:24 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":87.40977334385947,"throughput_eps":0,"last_update":"2026-03-20T17:05:19.719070668Z"} +2026/03/20 17:05:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:19.575517565Z"} +2026/03/20 17:05:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":202.8,"last_update":"2026-03-20T17:05:19.575626404Z"} +2026/03/20 17:05:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":408,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:19.584732458Z"} +2026/03/20 17:05:24 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":11.57642818317725,"throughput_eps":0,"last_update":"2026-03-20T17:05:19.71906078Z"} +2026/03/20 17:05:24 ───────────────────────────────────────────────── +2026/03/20 17:05:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:24.57568769Z"} +2026/03/20 17:05:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":203.8,"last_update":"2026-03-20T17:05:24.575979388Z"} +2026/03/20 17:05:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:24.586257537Z"} +2026/03/20 17:05:29 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":11.57642818317725,"throughput_eps":0,"last_update":"2026-03-20T17:05:24.71966952Z"} +2026/03/20 17:05:29 [transform_engine] {"stage_name":"transform_engine","events_processed":34,"events_dropped":0,"avg_latency_ms":92.53910307508758,"throughput_eps":0,"last_update":"2026-03-20T17:05:24.832748295Z"} +2026/03/20 17:05:29 ───────────────────────────────────────────────── +2026/03/20 17:05:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:29.575566379Z"} +2026/03/20 17:05:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":204.8,"last_update":"2026-03-20T17:05:29.576186135Z"} +2026/03/20 17:05:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:29.586797432Z"} +2026/03/20 17:05:34 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":11.892578546541799,"throughput_eps":0,"last_update":"2026-03-20T17:05:29.719079829Z"} +2026/03/20 17:05:34 [transform_engine] {"stage_name":"transform_engine","events_processed":34,"events_dropped":0,"avg_latency_ms":92.53910307508758,"throughput_eps":0,"last_update":"2026-03-20T17:05:29.719093195Z"} +2026/03/20 17:05:34 ───────────────────────────────────────────────── +2026/03/20 17:05:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":205.8,"last_update":"2026-03-20T17:05:34.576191117Z"} +2026/03/20 17:05:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:34.584790391Z"} +2026/03/20 17:05:39 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":11.892578546541799,"throughput_eps":0,"last_update":"2026-03-20T17:05:34.719085138Z"} +2026/03/20 17:05:39 [transform_engine] {"stage_name":"transform_engine","events_processed":34,"events_dropped":0,"avg_latency_ms":92.53910307508758,"throughput_eps":0,"last_update":"2026-03-20T17:05:34.719095008Z"} +2026/03/20 17:05:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:34.576285568Z"} +2026/03/20 17:05:39 ───────────────────────────────────────────────── +2026/03/20 17:05:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":206.8,"last_update":"2026-03-20T17:05:39.576683902Z"} +2026/03/20 17:05:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:39.585017979Z"} +2026/03/20 17:05:44 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":11.892578546541799,"throughput_eps":0,"last_update":"2026-03-20T17:05:39.719342058Z"} +2026/03/20 17:05:44 [transform_engine] {"stage_name":"transform_engine","events_processed":34,"events_dropped":0,"avg_latency_ms":92.53910307508758,"throughput_eps":0,"last_update":"2026-03-20T17:05:39.719387133Z"} +2026/03/20 17:05:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:39.575935669Z"} +2026/03/20 17:05:44 ───────────────────────────────────────────────── +2026/03/20 17:05:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:44.57568822Z"} +2026/03/20 17:05:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":207.8,"last_update":"2026-03-20T17:05:44.575992993Z"} +2026/03/20 17:05:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:44.58672363Z"} +2026/03/20 17:05:49 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":11.892578546541799,"throughput_eps":0,"last_update":"2026-03-20T17:05:44.718963895Z"} +2026/03/20 17:05:49 [transform_engine] {"stage_name":"transform_engine","events_processed":34,"events_dropped":0,"avg_latency_ms":92.53910307508758,"throughput_eps":0,"last_update":"2026-03-20T17:05:44.718972751Z"} +2026/03/20 17:05:49 ───────────────────────────────────────────────── +2026/03/20 17:05:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:54.575535127Z"} +2026/03/20 17:05:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":208.8,"last_update":"2026-03-20T17:05:49.576272739Z"} +2026/03/20 17:05:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":420,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:49.584536393Z"} +2026/03/20 17:05:54 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":11.892578546541799,"throughput_eps":0,"last_update":"2026-03-20T17:05:49.719837415Z"} +2026/03/20 17:05:54 [transform_engine] {"stage_name":"transform_engine","events_processed":34,"events_dropped":0,"avg_latency_ms":92.53910307508758,"throughput_eps":0,"last_update":"2026-03-20T17:05:49.718714594Z"} +2026/03/20 17:05:54 ───────────────────────────────────────────────── +2026/03/20 17:05:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:54.586257057Z"} +2026/03/20 17:05:59 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":11.892578546541799,"throughput_eps":0,"last_update":"2026-03-20T17:05:54.719563866Z"} +2026/03/20 17:05:59 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":86.62396686007008,"throughput_eps":0,"last_update":"2026-03-20T17:05:54.782536447Z"} +2026/03/20 17:05:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:54.575535127Z"} +2026/03/20 17:05:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":209.8,"last_update":"2026-03-20T17:05:54.576153631Z"} +2026/03/20 17:05:59 ───────────────────────────────────────────────── +2026/03/20 17:06:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:59.575926826Z"} +2026/03/20 17:06:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":210.8,"last_update":"2026-03-20T17:05:59.576696329Z"} +2026/03/20 17:06:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:59.584591437Z"} +2026/03/20 17:06:04 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":11.820831837233438,"throughput_eps":0,"last_update":"2026-03-20T17:05:59.71881656Z"} +2026/03/20 17:06:04 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":86.62396686007008,"throughput_eps":0,"last_update":"2026-03-20T17:05:59.718960676Z"} +2026/03/20 17:06:04 ───────────────────────────────────────────────── +2026/03/20 17:06:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:04.587408378Z"} +2026/03/20 17:06:09 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":11.820831837233438,"throughput_eps":0,"last_update":"2026-03-20T17:06:04.719703321Z"} +2026/03/20 17:06:09 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":86.62396686007008,"throughput_eps":0,"last_update":"2026-03-20T17:06:04.719763246Z"} +2026/03/20 17:06:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:04.575600598Z"} +2026/03/20 17:06:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":211.8,"last_update":"2026-03-20T17:06:04.575967982Z"} +2026/03/20 17:06:09 ───────────────────────────────────────────────── +2026/03/20 17:06:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:09.575491338Z"} +2026/03/20 17:06:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":212.8,"last_update":"2026-03-20T17:06:09.575872598Z"} +2026/03/20 17:06:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:09.586002958Z"} +2026/03/20 17:06:14 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":11.820831837233438,"throughput_eps":0,"last_update":"2026-03-20T17:06:09.719506119Z"} +2026/03/20 17:06:14 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":86.62396686007008,"throughput_eps":0,"last_update":"2026-03-20T17:06:09.719389967Z"} +2026/03/20 17:06:14 ───────────────────────────────────────────────── +2026/03/20 17:06:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:14.575560726Z"} +2026/03/20 17:06:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":213.8,"last_update":"2026-03-20T17:06:14.575892632Z"} +2026/03/20 17:06:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:14.584829827Z"} +2026/03/20 17:06:19 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":11.820831837233438,"throughput_eps":0,"last_update":"2026-03-20T17:06:14.719226315Z"} +2026/03/20 17:06:19 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":86.62396686007008,"throughput_eps":0,"last_update":"2026-03-20T17:06:14.719201397Z"} +2026/03/20 17:06:19 ───────────────────────────────────────────────── +2026/03/20 17:06:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:24 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":11.820831837233438,"throughput_eps":0,"last_update":"2026-03-20T17:06:19.719293144Z"} +2026/03/20 17:06:24 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":86.62396686007008,"throughput_eps":0,"last_update":"2026-03-20T17:06:19.719181439Z"} +2026/03/20 17:06:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:19.57593567Z"} +2026/03/20 17:06:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":214.8,"last_update":"2026-03-20T17:06:19.576303033Z"} +2026/03/20 17:06:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:19.585790722Z"} +2026/03/20 17:06:24 ───────────────────────────────────────────────── +2026/03/20 17:06:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:29 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":11.820831837233438,"throughput_eps":0,"last_update":"2026-03-20T17:06:24.719470361Z"} +2026/03/20 17:06:29 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":82.42505248805607,"throughput_eps":0,"last_update":"2026-03-20T17:06:24.785156105Z"} +2026/03/20 17:06:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:24.575537729Z"} +2026/03/20 17:06:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":215.8,"last_update":"2026-03-20T17:06:24.575686134Z"} +2026/03/20 17:06:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:24.586069178Z"} +2026/03/20 17:06:29 ───────────────────────────────────────────────── +2026/03/20 17:06:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:29.585523473Z"} +2026/03/20 17:06:34 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":12.116314869786752,"throughput_eps":0,"last_update":"2026-03-20T17:06:29.718814421Z"} +2026/03/20 17:06:34 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":82.42505248805607,"throughput_eps":0,"last_update":"2026-03-20T17:06:29.718702888Z"} +2026/03/20 17:06:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:29.575861278Z"} +2026/03/20 17:06:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":216.8,"last_update":"2026-03-20T17:06:29.5762797Z"} +2026/03/20 17:06:34 ───────────────────────────────────────────────── +2026/03/20 17:06:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:34.575560027Z"} +2026/03/20 17:06:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":217.8,"last_update":"2026-03-20T17:06:34.57602654Z"} +2026/03/20 17:06:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:34.587055242Z"} +2026/03/20 17:06:39 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":12.116314869786752,"throughput_eps":0,"last_update":"2026-03-20T17:06:34.719219508Z"} +2026/03/20 17:06:39 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":82.42505248805607,"throughput_eps":0,"last_update":"2026-03-20T17:06:34.719247111Z"} +2026/03/20 17:06:39 ───────────────────────────────────────────────── +2026/03/20 17:06:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:39.585271063Z"} +2026/03/20 17:06:44 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":12.116314869786752,"throughput_eps":0,"last_update":"2026-03-20T17:06:39.719515849Z"} +2026/03/20 17:06:44 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":82.42505248805607,"throughput_eps":0,"last_update":"2026-03-20T17:06:39.719642661Z"} +2026/03/20 17:06:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:39.575843296Z"} +2026/03/20 17:06:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":218.8,"last_update":"2026-03-20T17:06:39.576324187Z"} +2026/03/20 17:06:44 ───────────────────────────────────────────────── +2026/03/20 17:06:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:44.575681274Z"} +2026/03/20 17:06:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":219.8,"last_update":"2026-03-20T17:06:44.57602414Z"} +2026/03/20 17:06:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":442,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:44.585896278Z"} +2026/03/20 17:06:49 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":12.116314869786752,"throughput_eps":0,"last_update":"2026-03-20T17:06:44.719304026Z"} +2026/03/20 17:06:49 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":82.42505248805607,"throughput_eps":0,"last_update":"2026-03-20T17:06:44.71927998Z"} +2026/03/20 17:06:49 ───────────────────────────────────────────────── +2026/03/20 17:06:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:49.575683717Z"} +2026/03/20 17:06:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":220.8,"last_update":"2026-03-20T17:06:49.576056912Z"} +2026/03/20 17:06:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:49.586071623Z"} +2026/03/20 17:06:54 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":12.116314869786752,"throughput_eps":0,"last_update":"2026-03-20T17:06:49.719440751Z"} +2026/03/20 17:06:54 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":82.42505248805607,"throughput_eps":0,"last_update":"2026-03-20T17:06:49.71940862Z"} +2026/03/20 17:06:54 ───────────────────────────────────────────────── +2026/03/20 17:06:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:54.575842627Z"} +2026/03/20 17:06:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":221.8,"last_update":"2026-03-20T17:06:54.576616609Z"} +2026/03/20 17:06:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":446,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:54.586609119Z"} +2026/03/20 17:06:59 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":12.116314869786752,"throughput_eps":0,"last_update":"2026-03-20T17:06:54.718842758Z"} +2026/03/20 17:06:59 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":78.44717919044486,"throughput_eps":0,"last_update":"2026-03-20T17:06:54.781497222Z"} +2026/03/20 17:06:59 ───────────────────────────────────────────────── +2026/03/20 17:07:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:59.57574551Z"} +2026/03/20 17:07:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":222.8,"last_update":"2026-03-20T17:06:59.576099568Z"} +2026/03/20 17:07:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:59.587026096Z"} +2026/03/20 17:07:04 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.228620895829403,"throughput_eps":0,"last_update":"2026-03-20T17:06:59.719451167Z"} +2026/03/20 17:07:04 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":78.44717919044486,"throughput_eps":0,"last_update":"2026-03-20T17:06:59.719419256Z"} +2026/03/20 17:07:04 ───────────────────────────────────────────────── +2026/03/20 17:07:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":223.8,"last_update":"2026-03-20T17:07:04.575718911Z"} +2026/03/20 17:07:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:04.585965638Z"} +2026/03/20 17:07:09 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.228620895829403,"throughput_eps":0,"last_update":"2026-03-20T17:07:04.719304826Z"} +2026/03/20 17:07:09 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":78.44717919044486,"throughput_eps":0,"last_update":"2026-03-20T17:07:04.719317149Z"} +2026/03/20 17:07:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:04.575598351Z"} +2026/03/20 17:07:09 ───────────────────────────────────────────────── +2026/03/20 17:07:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:09.575720658Z"} +2026/03/20 17:07:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":224.8,"last_update":"2026-03-20T17:07:09.576073173Z"} +2026/03/20 17:07:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":452,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:09.587393487Z"} +2026/03/20 17:07:14 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.228620895829403,"throughput_eps":0,"last_update":"2026-03-20T17:07:09.719625168Z"} +2026/03/20 17:07:14 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":78.44717919044486,"throughput_eps":0,"last_update":"2026-03-20T17:07:09.719632322Z"} +2026/03/20 17:07:14 ───────────────────────────────────────────────── +2026/03/20 17:07:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:19 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.228620895829403,"throughput_eps":0,"last_update":"2026-03-20T17:07:14.719253272Z"} +2026/03/20 17:07:19 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":78.44717919044486,"throughput_eps":0,"last_update":"2026-03-20T17:07:14.719261027Z"} +2026/03/20 17:07:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:14.575523191Z"} +2026/03/20 17:07:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":225.8,"last_update":"2026-03-20T17:07:14.575645065Z"} +2026/03/20 17:07:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:14.58600528Z"} +2026/03/20 17:07:19 ───────────────────────────────────────────────── +2026/03/20 17:07:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:19.58686201Z"} +2026/03/20 17:07:24 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.228620895829403,"throughput_eps":0,"last_update":"2026-03-20T17:07:19.719175218Z"} +2026/03/20 17:07:24 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":78.44717919044486,"throughput_eps":0,"last_update":"2026-03-20T17:07:19.719181891Z"} +2026/03/20 17:07:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:19.575738915Z"} +2026/03/20 17:07:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":226.8,"last_update":"2026-03-20T17:07:19.576108682Z"} +2026/03/20 17:07:24 ───────────────────────────────────────────────── +2026/03/20 17:07:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:24.575512575Z"} +2026/03/20 17:07:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":227.8,"last_update":"2026-03-20T17:07:24.575829331Z"} +2026/03/20 17:07:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:24.585762259Z"} +2026/03/20 17:07:29 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.228620895829403,"throughput_eps":0,"last_update":"2026-03-20T17:07:24.719069965Z"} +2026/03/20 17:07:29 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":84.71616535235589,"throughput_eps":0,"last_update":"2026-03-20T17:07:24.828871885Z"} +2026/03/20 17:07:29 ───────────────────────────────────────────────── +2026/03/20 17:07:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:29.576054672Z"} +2026/03/20 17:07:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":228.8,"last_update":"2026-03-20T17:07:29.576412798Z"} +2026/03/20 17:07:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:29.584500711Z"} +2026/03/20 17:07:34 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":11.607522316663523,"throughput_eps":0,"last_update":"2026-03-20T17:07:29.718798409Z"} +2026/03/20 17:07:34 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":84.71616535235589,"throughput_eps":0,"last_update":"2026-03-20T17:07:29.71875705Z"} +2026/03/20 17:07:34 ───────────────────────────────────────────────── +2026/03/20 17:07:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:34.587299684Z"} +2026/03/20 17:07:39 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":11.607522316663523,"throughput_eps":0,"last_update":"2026-03-20T17:07:34.719582367Z"} +2026/03/20 17:07:39 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":84.71616535235589,"throughput_eps":0,"last_update":"2026-03-20T17:07:34.719605943Z"} +2026/03/20 17:07:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:34.576033122Z"} +2026/03/20 17:07:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":229.8,"last_update":"2026-03-20T17:07:34.576014616Z"} +2026/03/20 17:07:39 ───────────────────────────────────────────────── +2026/03/20 17:07:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:39.575857927Z"} +2026/03/20 17:07:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":230.8,"last_update":"2026-03-20T17:07:39.576628573Z"} +2026/03/20 17:07:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:39.58582992Z"} +2026/03/20 17:07:44 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":11.607522316663523,"throughput_eps":0,"last_update":"2026-03-20T17:07:39.719019145Z"} +2026/03/20 17:07:44 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":84.71616535235589,"throughput_eps":0,"last_update":"2026-03-20T17:07:39.719119838Z"} +2026/03/20 17:07:44 ───────────────────────────────────────────────── +2026/03/20 17:07:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:44.586612169Z"} +2026/03/20 17:07:49 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":11.607522316663523,"throughput_eps":0,"last_update":"2026-03-20T17:07:44.718789158Z"} +2026/03/20 17:07:49 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":84.71616535235589,"throughput_eps":0,"last_update":"2026-03-20T17:07:44.718781684Z"} +2026/03/20 17:07:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:44.575930595Z"} +2026/03/20 17:07:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":231.8,"last_update":"2026-03-20T17:07:44.576529853Z"} +2026/03/20 17:07:49 ───────────────────────────────────────────────── +2026/03/20 17:07:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:49.575517521Z"} +2026/03/20 17:07:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":232.8,"last_update":"2026-03-20T17:07:49.575845029Z"} +2026/03/20 17:07:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:49.585529261Z"} +2026/03/20 17:07:54 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":11.607522316663523,"throughput_eps":0,"last_update":"2026-03-20T17:07:49.719840043Z"} +2026/03/20 17:07:54 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":84.71616535235589,"throughput_eps":0,"last_update":"2026-03-20T17:07:49.718673068Z"} +2026/03/20 17:07:54 ───────────────────────────────────────────────── +2026/03/20 17:07:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:54.575972113Z"} +2026/03/20 17:07:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":233.8,"last_update":"2026-03-20T17:07:54.576536073Z"} +2026/03/20 17:07:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":470,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:54.588314268Z"} +2026/03/20 17:07:59 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":11.607522316663523,"throughput_eps":0,"last_update":"2026-03-20T17:07:54.719528503Z"} +2026/03/20 17:07:59 [transform_engine] {"stage_name":"transform_engine","events_processed":39,"events_dropped":0,"avg_latency_ms":80.73669968188472,"throughput_eps":0,"last_update":"2026-03-20T17:07:54.78447763Z"} +2026/03/20 17:07:59 ───────────────────────────────────────────────── +2026/03/20 17:08:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:59.576164887Z"} +2026/03/20 17:08:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":234.8,"last_update":"2026-03-20T17:07:59.576324392Z"} +2026/03/20 17:08:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:59.586656716Z"} +2026/03/20 17:08:04 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":11.954327653330818,"throughput_eps":0,"last_update":"2026-03-20T17:07:59.719139066Z"} +2026/03/20 17:08:04 [transform_engine] {"stage_name":"transform_engine","events_processed":39,"events_dropped":0,"avg_latency_ms":80.73669968188472,"throughput_eps":0,"last_update":"2026-03-20T17:07:59.719254827Z"} +2026/03/20 17:08:04 ───────────────────────────────────────────────── +2026/03/20 17:08:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:04.575498204Z"} +2026/03/20 17:08:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":235.8,"last_update":"2026-03-20T17:08:04.576205469Z"} +2026/03/20 17:08:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:04.585558167Z"} +2026/03/20 17:08:09 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":11.954327653330818,"throughput_eps":0,"last_update":"2026-03-20T17:08:04.718852047Z"} +2026/03/20 17:08:09 [transform_engine] {"stage_name":"transform_engine","events_processed":39,"events_dropped":0,"avg_latency_ms":80.73669968188472,"throughput_eps":0,"last_update":"2026-03-20T17:08:04.718740001Z"} +2026/03/20 17:08:09 ───────────────────────────────────────────────── +2026/03/20 17:08:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:09.575759894Z"} +2026/03/20 17:08:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":236.8,"last_update":"2026-03-20T17:08:09.576139841Z"} +2026/03/20 17:08:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":476,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:09.584952655Z"} +2026/03/20 17:08:14 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":11.954327653330818,"throughput_eps":0,"last_update":"2026-03-20T17:08:09.719309714Z"} +2026/03/20 17:08:14 [transform_engine] {"stage_name":"transform_engine","events_processed":39,"events_dropped":0,"avg_latency_ms":80.73669968188472,"throughput_eps":0,"last_update":"2026-03-20T17:08:09.719206637Z"} +2026/03/20 17:08:14 ───────────────────────────────────────────────── +2026/03/20 17:08:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:14.585598477Z"} +2026/03/20 17:08:19 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":11.954327653330818,"throughput_eps":0,"last_update":"2026-03-20T17:08:14.718844572Z"} +2026/03/20 17:08:19 [transform_engine] {"stage_name":"transform_engine","events_processed":39,"events_dropped":0,"avg_latency_ms":80.73669968188472,"throughput_eps":0,"last_update":"2026-03-20T17:08:14.718836938Z"} +2026/03/20 17:08:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:14.575544163Z"} +2026/03/20 17:08:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":237.8,"last_update":"2026-03-20T17:08:14.575871702Z"} +2026/03/20 17:08:19 ───────────────────────────────────────────────── +2026/03/20 17:08:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:19.576005339Z"} +2026/03/20 17:08:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":238.8,"last_update":"2026-03-20T17:08:19.576795233Z"} +2026/03/20 17:08:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":480,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:19.586172389Z"} +2026/03/20 17:08:24 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":11.954327653330818,"throughput_eps":0,"last_update":"2026-03-20T17:08:19.719514492Z"} +2026/03/20 17:08:24 [transform_engine] {"stage_name":"transform_engine","events_processed":39,"events_dropped":0,"avg_latency_ms":80.73669968188472,"throughput_eps":0,"last_update":"2026-03-20T17:08:19.719532366Z"} +2026/03/20 17:08:24 ───────────────────────────────────────────────── +2026/03/20 17:08:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":482,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:24.58608058Z"} +2026/03/20 17:08:29 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":11.954327653330818,"throughput_eps":0,"last_update":"2026-03-20T17:08:24.719435923Z"} +2026/03/20 17:08:29 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":85.82466574550779,"throughput_eps":0,"last_update":"2026-03-20T17:08:24.825563249Z"} +2026/03/20 17:08:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:24.575551646Z"} +2026/03/20 17:08:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":239.8,"last_update":"2026-03-20T17:08:24.575867882Z"} +2026/03/20 17:08:29 ───────────────────────────────────────────────── +2026/03/20 17:08:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:29.586302796Z"} +2026/03/20 17:08:34 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":12.378421522664656,"throughput_eps":0,"last_update":"2026-03-20T17:08:29.719668773Z"} +2026/03/20 17:08:34 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":85.82466574550779,"throughput_eps":0,"last_update":"2026-03-20T17:08:29.719684133Z"} +2026/03/20 17:08:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:29.575516579Z"} +2026/03/20 17:08:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":240.8,"last_update":"2026-03-20T17:08:29.575933348Z"} +2026/03/20 17:08:34 ───────────────────────────────────────────────── +2026/03/20 17:08:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:34.576183739Z"} +2026/03/20 17:08:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":241.8,"last_update":"2026-03-20T17:08:34.576339458Z"} +2026/03/20 17:08:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":486,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:34.58554659Z"} +2026/03/20 17:08:39 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":12.378421522664656,"throughput_eps":0,"last_update":"2026-03-20T17:08:34.718815455Z"} +2026/03/20 17:08:39 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":85.82466574550779,"throughput_eps":0,"last_update":"2026-03-20T17:08:34.718746814Z"} +2026/03/20 17:08:39 ───────────────────────────────────────────────── +2026/03/20 17:08:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:39.575759748Z"} +2026/03/20 17:08:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":242.8,"last_update":"2026-03-20T17:08:39.576480368Z"} +2026/03/20 17:08:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:39.585047303Z"} +2026/03/20 17:08:44 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":12.378421522664656,"throughput_eps":0,"last_update":"2026-03-20T17:08:39.719392147Z"} +2026/03/20 17:08:44 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":85.82466574550779,"throughput_eps":0,"last_update":"2026-03-20T17:08:39.719402135Z"} +2026/03/20 17:08:44 ───────────────────────────────────────────────── +2026/03/20 17:08:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:44.575700566Z"} +2026/03/20 17:08:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":243.8,"last_update":"2026-03-20T17:08:44.576022694Z"} +2026/03/20 17:08:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":490,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:44.586510178Z"} +2026/03/20 17:08:49 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":12.378421522664656,"throughput_eps":0,"last_update":"2026-03-20T17:08:44.718815256Z"} +2026/03/20 17:08:49 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":85.82466574550779,"throughput_eps":0,"last_update":"2026-03-20T17:08:44.718694805Z"} +2026/03/20 17:08:49 ───────────────────────────────────────────────── +2026/03/20 17:08:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":244.8,"last_update":"2026-03-20T17:08:49.576136731Z"} +2026/03/20 17:08:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:49.585892484Z"} +2026/03/20 17:08:54 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":12.378421522664656,"throughput_eps":0,"last_update":"2026-03-20T17:08:49.719129031Z"} +2026/03/20 17:08:54 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":85.82466574550779,"throughput_eps":0,"last_update":"2026-03-20T17:08:49.719140783Z"} +2026/03/20 17:08:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:49.575745401Z"} +2026/03/20 17:08:54 ───────────────────────────────────────────────── +2026/03/20 17:08:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:54.575757977Z"} +2026/03/20 17:08:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":245.8,"last_update":"2026-03-20T17:08:54.576052321Z"} +2026/03/20 17:08:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:54.586206619Z"} +2026/03/20 17:08:59 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":12.378421522664656,"throughput_eps":0,"last_update":"2026-03-20T17:08:54.719464382Z"} +2026/03/20 17:08:59 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":91.05275299640623,"throughput_eps":0,"last_update":"2026-03-20T17:08:54.831442338Z"} +2026/03/20 17:08:59 ───────────────────────────────────────────────── +2026/03/20 17:09:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:59.575590306Z"} +2026/03/20 17:09:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":246.8,"last_update":"2026-03-20T17:08:59.57566062Z"} +2026/03/20 17:09:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":496,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:59.585832611Z"} +2026/03/20 17:09:04 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":12.872329418131727,"throughput_eps":0,"last_update":"2026-03-20T17:08:59.719104174Z"} +2026/03/20 17:09:04 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":91.05275299640623,"throughput_eps":0,"last_update":"2026-03-20T17:08:59.719126817Z"} +2026/03/20 17:09:04 ───────────────────────────────────────────────── +2026/03/20 17:09:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:04.575977608Z"} +2026/03/20 17:09:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":247.8,"last_update":"2026-03-20T17:09:04.576444614Z"} +2026/03/20 17:09:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":498,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:04.585228185Z"} +2026/03/20 17:09:09 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":12.872329418131727,"throughput_eps":0,"last_update":"2026-03-20T17:09:04.719616883Z"} +2026/03/20 17:09:09 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":91.05275299640623,"throughput_eps":0,"last_update":"2026-03-20T17:09:04.719645457Z"} +2026/03/20 17:09:09 ───────────────────────────────────────────────── +2026/03/20 17:09:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:09.575907987Z"} +2026/03/20 17:09:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":248.8,"last_update":"2026-03-20T17:09:09.576544506Z"} +2026/03/20 17:09:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:09.586572232Z"} +2026/03/20 17:09:14 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":12.872329418131727,"throughput_eps":0,"last_update":"2026-03-20T17:09:09.718806645Z"} +2026/03/20 17:09:14 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":91.05275299640623,"throughput_eps":0,"last_update":"2026-03-20T17:09:09.718744316Z"} +2026/03/20 17:09:14 ───────────────────────────────────────────────── +2026/03/20 17:09:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:14.57568901Z"} +2026/03/20 17:09:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":249.8,"last_update":"2026-03-20T17:09:14.575683158Z"} +2026/03/20 17:09:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:14.586215301Z"} +2026/03/20 17:09:19 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":12.872329418131727,"throughput_eps":0,"last_update":"2026-03-20T17:09:14.71963542Z"} +2026/03/20 17:09:19 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":91.05275299640623,"throughput_eps":0,"last_update":"2026-03-20T17:09:14.719648605Z"} +2026/03/20 17:09:19 ───────────────────────────────────────────────── +2026/03/20 17:09:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:19.587386515Z"} +2026/03/20 17:09:24 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":12.872329418131727,"throughput_eps":0,"last_update":"2026-03-20T17:09:19.719721949Z"} +2026/03/20 17:09:24 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":91.05275299640623,"throughput_eps":0,"last_update":"2026-03-20T17:09:19.719735245Z"} +2026/03/20 17:09:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:19.575497322Z"} +2026/03/20 17:09:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":250.8,"last_update":"2026-03-20T17:09:19.576044551Z"} +2026/03/20 17:09:24 ───────────────────────────────────────────────── +2026/03/20 17:09:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:24.575519089Z"} +2026/03/20 17:09:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":251.8,"last_update":"2026-03-20T17:09:24.575595696Z"} +2026/03/20 17:09:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":506,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:24.586235355Z"} +2026/03/20 17:09:29 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":12.872329418131727,"throughput_eps":0,"last_update":"2026-03-20T17:09:24.71948692Z"} +2026/03/20 17:09:29 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":91.05275299640623,"throughput_eps":0,"last_update":"2026-03-20T17:09:24.719500866Z"} +2026/03/20 17:09:29 ───────────────────────────────────────────────── +2026/03/20 17:09:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:34 [transform_engine] {"stage_name":"transform_engine","events_processed":42,"events_dropped":0,"avg_latency_ms":85.94409599712498,"throughput_eps":0,"last_update":"2026-03-20T17:09:29.71881158Z"} +2026/03/20 17:09:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:29.575719635Z"} +2026/03/20 17:09:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":252.8,"last_update":"2026-03-20T17:09:29.575695108Z"} +2026/03/20 17:09:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:29.587556448Z"} +2026/03/20 17:09:34 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":12.885865134505382,"throughput_eps":0,"last_update":"2026-03-20T17:09:29.718798626Z"} +2026/03/20 17:09:34 ───────────────────────────────────────────────── +2026/03/20 17:09:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:39 [transform_engine] {"stage_name":"transform_engine","events_processed":42,"events_dropped":0,"avg_latency_ms":85.94409599712498,"throughput_eps":0,"last_update":"2026-03-20T17:09:34.718763497Z"} +2026/03/20 17:09:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:34.575600652Z"} +2026/03/20 17:09:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":253.8,"last_update":"2026-03-20T17:09:34.575761741Z"} +2026/03/20 17:09:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:34.585533697Z"} +2026/03/20 17:09:39 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":12.885865134505382,"throughput_eps":0,"last_update":"2026-03-20T17:09:34.718778467Z"} +2026/03/20 17:09:39 ───────────────────────────────────────────────── +2026/03/20 17:09:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:39.575519011Z"} +2026/03/20 17:09:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":254.8,"last_update":"2026-03-20T17:09:39.575698796Z"} +2026/03/20 17:09:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":512,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:39.586319409Z"} +2026/03/20 17:09:44 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":12.885865134505382,"throughput_eps":0,"last_update":"2026-03-20T17:09:39.719706104Z"} +2026/03/20 17:09:44 [transform_engine] {"stage_name":"transform_engine","events_processed":42,"events_dropped":0,"avg_latency_ms":85.94409599712498,"throughput_eps":0,"last_update":"2026-03-20T17:09:39.719718206Z"} +2026/03/20 17:09:44 ───────────────────────────────────────────────── +2026/03/20 17:09:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:49 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":12.885865134505382,"throughput_eps":0,"last_update":"2026-03-20T17:09:44.718809027Z"} +2026/03/20 17:09:49 [transform_engine] {"stage_name":"transform_engine","events_processed":42,"events_dropped":0,"avg_latency_ms":85.94409599712498,"throughput_eps":0,"last_update":"2026-03-20T17:09:44.718822544Z"} +2026/03/20 17:09:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:44.57588422Z"} +2026/03/20 17:09:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":255.8,"last_update":"2026-03-20T17:09:44.576396081Z"} +2026/03/20 17:09:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:44.586510926Z"} +2026/03/20 17:09:49 ───────────────────────────────────────────────── +2026/03/20 17:09:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:54 [transform_engine] {"stage_name":"transform_engine","events_processed":42,"events_dropped":0,"avg_latency_ms":85.94409599712498,"throughput_eps":0,"last_update":"2026-03-20T17:09:49.719563816Z"} +2026/03/20 17:09:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:49.575852147Z"} +2026/03/20 17:09:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":256.8,"last_update":"2026-03-20T17:09:49.576175166Z"} +2026/03/20 17:09:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:49.585257101Z"} +2026/03/20 17:09:54 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":12.885865134505382,"throughput_eps":0,"last_update":"2026-03-20T17:09:49.71953966Z"} +2026/03/20 17:09:54 ───────────────────────────────────────────────── +2026/03/20 17:09:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:59 [transform_engine] {"stage_name":"transform_engine","events_processed":43,"events_dropped":0,"avg_latency_ms":81.63562379769998,"throughput_eps":0,"last_update":"2026-03-20T17:09:54.783231066Z"} +2026/03/20 17:09:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:54.575662962Z"} +2026/03/20 17:09:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":257.8,"last_update":"2026-03-20T17:09:54.576052117Z"} +2026/03/20 17:09:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:54.58755844Z"} +2026/03/20 17:09:59 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":12.885865134505382,"throughput_eps":0,"last_update":"2026-03-20T17:09:54.718796908Z"} +2026/03/20 17:09:59 ───────────────────────────────────────────────── +2026/03/20 17:10:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:04 [transform_engine] {"stage_name":"transform_engine","events_processed":43,"events_dropped":0,"avg_latency_ms":81.63562379769998,"throughput_eps":0,"last_update":"2026-03-20T17:09:59.719417826Z"} +2026/03/20 17:10:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:59.575798226Z"} +2026/03/20 17:10:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":258.8,"last_update":"2026-03-20T17:09:59.576437941Z"} +2026/03/20 17:10:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":520,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:59.586067487Z"} +2026/03/20 17:10:04 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":13.149079707604306,"throughput_eps":0,"last_update":"2026-03-20T17:09:59.719405583Z"} +2026/03/20 17:10:04 ───────────────────────────────────────────────── +2026/03/20 17:10:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:09 [transform_engine] {"stage_name":"transform_engine","events_processed":43,"events_dropped":0,"avg_latency_ms":81.63562379769998,"throughput_eps":0,"last_update":"2026-03-20T17:10:04.71912557Z"} +2026/03/20 17:10:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:04.575515844Z"} +2026/03/20 17:10:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":259.8,"last_update":"2026-03-20T17:10:04.575795491Z"} +2026/03/20 17:10:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":522,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:04.591685284Z"} +2026/03/20 17:10:09 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":13.149079707604306,"throughput_eps":0,"last_update":"2026-03-20T17:10:04.719065515Z"} +2026/03/20 17:10:09 ───────────────────────────────────────────────── +2026/03/20 17:10:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:09.575722974Z"} +2026/03/20 17:10:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":260.8,"last_update":"2026-03-20T17:10:09.576175081Z"} +2026/03/20 17:10:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:09.584369536Z"} +2026/03/20 17:10:14 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":13.149079707604306,"throughput_eps":0,"last_update":"2026-03-20T17:10:09.719813367Z"} +2026/03/20 17:10:14 [transform_engine] {"stage_name":"transform_engine","events_processed":43,"events_dropped":0,"avg_latency_ms":81.63562379769998,"throughput_eps":0,"last_update":"2026-03-20T17:10:09.718649596Z"} +2026/03/20 17:10:14 ───────────────────────────────────────────────── +2026/03/20 17:10:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:19 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":13.149079707604306,"throughput_eps":0,"last_update":"2026-03-20T17:10:14.719691683Z"} +2026/03/20 17:10:19 [transform_engine] {"stage_name":"transform_engine","events_processed":43,"events_dropped":0,"avg_latency_ms":81.63562379769998,"throughput_eps":0,"last_update":"2026-03-20T17:10:14.719593736Z"} +2026/03/20 17:10:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:14.575536283Z"} +2026/03/20 17:10:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":261.8,"last_update":"2026-03-20T17:10:14.57607205Z"} +2026/03/20 17:10:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":526,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:14.587312313Z"} +2026/03/20 17:10:19 ───────────────────────────────────────────────── +2026/03/20 17:10:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:24 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":13.149079707604306,"throughput_eps":0,"last_update":"2026-03-20T17:10:19.719865359Z"} +2026/03/20 17:10:24 [transform_engine] {"stage_name":"transform_engine","events_processed":43,"events_dropped":0,"avg_latency_ms":81.63562379769998,"throughput_eps":0,"last_update":"2026-03-20T17:10:19.718698753Z"} +2026/03/20 17:10:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:19.576043626Z"} +2026/03/20 17:10:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":262.8,"last_update":"2026-03-20T17:10:19.576024449Z"} +2026/03/20 17:10:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:19.586465752Z"} +2026/03/20 17:10:24 ───────────────────────────────────────────────── +2026/03/20 17:10:24 [ANOMALY] time=2026-03-20T17:10:24Z score=0.9382 method=SEAD details=MAD!:w=0.26,s=0.98 RRCF-fast!:w=0.18,s=0.95 RRCF-mid!:w=0.17,s=0.98 RRCF-slow!:w=0.17,s=0.98 COPOD!:w=0.21,s=0.81 +2026/03/20 17:10:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:24.575751595Z"} +2026/03/20 17:10:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":263.8,"last_update":"2026-03-20T17:10:24.57617692Z"} +2026/03/20 17:10:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:24.586092134Z"} +2026/03/20 17:10:29 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":13.149079707604306,"throughput_eps":0,"last_update":"2026-03-20T17:10:24.718801552Z"} +2026/03/20 17:10:29 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":78.01222183815997,"throughput_eps":0,"last_update":"2026-03-20T17:10:24.782435207Z"} +2026/03/20 17:10:29 ───────────────────────────────────────────────── +2026/03/20 17:10:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:34 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":11.900673166083447,"throughput_eps":0,"last_update":"2026-03-20T17:10:29.71879841Z"} +2026/03/20 17:10:34 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":78.01222183815997,"throughput_eps":0,"last_update":"2026-03-20T17:10:29.718753715Z"} +2026/03/20 17:10:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:29.575516334Z"} +2026/03/20 17:10:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":264.8,"last_update":"2026-03-20T17:10:29.576255831Z"} +2026/03/20 17:10:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":532,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:29.585556337Z"} +2026/03/20 17:10:34 ───────────────────────────────────────────────── +2026/03/20 17:10:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:34.58514207Z"} +2026/03/20 17:10:39 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":11.900673166083447,"throughput_eps":0,"last_update":"2026-03-20T17:10:34.719508962Z"} +2026/03/20 17:10:39 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":78.01222183815997,"throughput_eps":0,"last_update":"2026-03-20T17:10:34.719544751Z"} +2026/03/20 17:10:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:34.576090781Z"} +2026/03/20 17:10:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":265.8,"last_update":"2026-03-20T17:10:34.576340048Z"} +2026/03/20 17:10:39 ───────────────────────────────────────────────── +2026/03/20 17:10:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:39.575516613Z"} +2026/03/20 17:10:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":266.8,"last_update":"2026-03-20T17:10:39.575628407Z"} +2026/03/20 17:10:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":536,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:39.587021284Z"} +2026/03/20 17:10:44 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":11.900673166083447,"throughput_eps":0,"last_update":"2026-03-20T17:10:39.719451998Z"} +2026/03/20 17:10:44 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":78.01222183815997,"throughput_eps":0,"last_update":"2026-03-20T17:10:39.719407123Z"} +2026/03/20 17:10:44 ───────────────────────────────────────────────── +2026/03/20 17:10:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:49 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":78.01222183815997,"throughput_eps":0,"last_update":"2026-03-20T17:10:44.719626807Z"} +2026/03/20 17:10:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:44.575501884Z"} +2026/03/20 17:10:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":267.8,"last_update":"2026-03-20T17:10:44.575748897Z"} +2026/03/20 17:10:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:44.586280354Z"} +2026/03/20 17:10:49 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":11.900673166083447,"throughput_eps":0,"last_update":"2026-03-20T17:10:44.719773949Z"} +2026/03/20 17:10:49 ───────────────────────────────────────────────── +2026/03/20 17:10:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:49.575943475Z"} +2026/03/20 17:10:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":268.8,"last_update":"2026-03-20T17:10:49.576261465Z"} +2026/03/20 17:10:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":540,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:49.584811504Z"} +2026/03/20 17:10:54 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":11.900673166083447,"throughput_eps":0,"last_update":"2026-03-20T17:10:49.719225647Z"} +2026/03/20 17:10:54 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":78.01222183815997,"throughput_eps":0,"last_update":"2026-03-20T17:10:49.719054127Z"} +2026/03/20 17:10:54 ───────────────────────────────────────────────── +2026/03/20 17:10:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:54.57610964Z"} +2026/03/20 17:10:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":269.8,"last_update":"2026-03-20T17:10:54.576913311Z"} +2026/03/20 17:10:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":542,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:54.585661008Z"} +2026/03/20 17:10:59 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":11.900673166083447,"throughput_eps":0,"last_update":"2026-03-20T17:10:54.719158407Z"} +2026/03/20 17:10:59 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":84.85405687052798,"throughput_eps":0,"last_update":"2026-03-20T17:10:54.831270846Z"} +2026/03/20 17:10:59 ───────────────────────────────────────────────── +2026/03/20 17:11:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:59.575740641Z"} +2026/03/20 17:11:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":270.8,"last_update":"2026-03-20T17:10:59.576058069Z"} +2026/03/20 17:11:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:59.587201439Z"} +2026/03/20 17:11:04 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":11.668261332866757,"throughput_eps":0,"last_update":"2026-03-20T17:10:59.719456842Z"} +2026/03/20 17:11:04 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":84.85405687052798,"throughput_eps":0,"last_update":"2026-03-20T17:10:59.719412967Z"} +2026/03/20 17:11:04 ───────────────────────────────────────────────── +2026/03/20 17:11:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:09 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":11.668261332866757,"throughput_eps":0,"last_update":"2026-03-20T17:11:04.719246171Z"} +2026/03/20 17:11:09 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":84.85405687052798,"throughput_eps":0,"last_update":"2026-03-20T17:11:04.719203228Z"} +2026/03/20 17:11:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:04.575863406Z"} +2026/03/20 17:11:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":271.8,"last_update":"2026-03-20T17:11:04.576195572Z"} +2026/03/20 17:11:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:04.585989045Z"} +2026/03/20 17:11:09 ───────────────────────────────────────────────── +2026/03/20 17:11:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:09.575530867Z"} +2026/03/20 17:11:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":272.8,"last_update":"2026-03-20T17:11:09.576213084Z"} +2026/03/20 17:11:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:09.585812515Z"} +2026/03/20 17:11:14 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":11.668261332866757,"throughput_eps":0,"last_update":"2026-03-20T17:11:09.719059645Z"} +2026/03/20 17:11:14 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":84.85405687052798,"throughput_eps":0,"last_update":"2026-03-20T17:11:09.719040989Z"} +2026/03/20 17:11:14 ───────────────────────────────────────────────── +2026/03/20 17:11:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:19 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":11.668261332866757,"throughput_eps":0,"last_update":"2026-03-20T17:11:14.719347569Z"} +2026/03/20 17:11:19 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":84.85405687052798,"throughput_eps":0,"last_update":"2026-03-20T17:11:14.719289558Z"} +2026/03/20 17:11:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:14.575832844Z"} +2026/03/20 17:11:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":273.8,"last_update":"2026-03-20T17:11:14.576085078Z"} +2026/03/20 17:11:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:14.585954216Z"} +2026/03/20 17:11:19 ───────────────────────────────────────────────── +2026/03/20 17:11:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:19.575571969Z"} +2026/03/20 17:11:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":274.8,"last_update":"2026-03-20T17:11:19.575664297Z"} +2026/03/20 17:11:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:19.586507252Z"} +2026/03/20 17:11:24 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":11.668261332866757,"throughput_eps":0,"last_update":"2026-03-20T17:11:19.71962033Z"} +2026/03/20 17:11:24 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":84.85405687052798,"throughput_eps":0,"last_update":"2026-03-20T17:11:19.719631271Z"} +2026/03/20 17:11:24 ───────────────────────────────────────────────── +2026/03/20 17:11:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:24.576303873Z"} +2026/03/20 17:11:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":275.8,"last_update":"2026-03-20T17:11:24.576290378Z"} +2026/03/20 17:11:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:24.586141061Z"} +2026/03/20 17:11:29 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":11.668261332866757,"throughput_eps":0,"last_update":"2026-03-20T17:11:24.719377319Z"} +2026/03/20 17:11:29 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":80.3387762964224,"throughput_eps":0,"last_update":"2026-03-20T17:11:24.781668148Z"} +2026/03/20 17:11:29 ───────────────────────────────────────────────── +2026/03/20 17:11:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:34 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":80.3387762964224,"throughput_eps":0,"last_update":"2026-03-20T17:11:29.719634231Z"} +2026/03/20 17:11:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:29.575495641Z"} +2026/03/20 17:11:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":276.8,"last_update":"2026-03-20T17:11:29.575465934Z"} +2026/03/20 17:11:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:29.587072033Z"} +2026/03/20 17:11:34 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":11.856389266293407,"throughput_eps":0,"last_update":"2026-03-20T17:11:29.719618482Z"} +2026/03/20 17:11:34 ───────────────────────────────────────────────── +2026/03/20 17:11:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:39 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":11.856389266293407,"throughput_eps":0,"last_update":"2026-03-20T17:11:34.719154333Z"} +2026/03/20 17:11:39 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":80.3387762964224,"throughput_eps":0,"last_update":"2026-03-20T17:11:34.719137952Z"} +2026/03/20 17:11:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:34.575840662Z"} +2026/03/20 17:11:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":277.8,"last_update":"2026-03-20T17:11:34.576482141Z"} +2026/03/20 17:11:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:34.585838667Z"} +2026/03/20 17:11:39 ───────────────────────────────────────────────── +2026/03/20 17:11:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:39.575950513Z"} +2026/03/20 17:11:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":278.8,"last_update":"2026-03-20T17:11:39.576413993Z"} +2026/03/20 17:11:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":560,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:39.585105815Z"} +2026/03/20 17:11:44 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":11.856389266293407,"throughput_eps":0,"last_update":"2026-03-20T17:11:39.719380522Z"} +2026/03/20 17:11:44 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":80.3387762964224,"throughput_eps":0,"last_update":"2026-03-20T17:11:39.719390581Z"} +2026/03/20 17:11:44 ───────────────────────────────────────────────── +2026/03/20 17:11:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:44.575679117Z"} +2026/03/20 17:11:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":279.8,"last_update":"2026-03-20T17:11:44.576002267Z"} +2026/03/20 17:11:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:44.587456345Z"} +2026/03/20 17:11:49 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":11.856389266293407,"throughput_eps":0,"last_update":"2026-03-20T17:11:44.719675986Z"} +2026/03/20 17:11:49 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":80.3387762964224,"throughput_eps":0,"last_update":"2026-03-20T17:11:44.719685754Z"} +2026/03/20 17:11:49 ───────────────────────────────────────────────── +2026/03/20 17:11:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:49.576062287Z"} +2026/03/20 17:11:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":280.8,"last_update":"2026-03-20T17:11:49.576380036Z"} +2026/03/20 17:11:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:49.586913439Z"} +2026/03/20 17:11:54 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":11.856389266293407,"throughput_eps":0,"last_update":"2026-03-20T17:11:49.719316494Z"} +2026/03/20 17:11:54 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":80.3387762964224,"throughput_eps":0,"last_update":"2026-03-20T17:11:49.719331804Z"} +2026/03/20 17:11:54 ───────────────────────────────────────────────── +2026/03/20 17:11:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:54.575927944Z"} +2026/03/20 17:11:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":281.8,"last_update":"2026-03-20T17:11:54.576302342Z"} +2026/03/20 17:11:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":566,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:54.586046172Z"} +2026/03/20 17:11:59 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":11.856389266293407,"throughput_eps":0,"last_update":"2026-03-20T17:11:54.719417456Z"} +2026/03/20 17:11:59 [transform_engine] {"stage_name":"transform_engine","events_processed":47,"events_dropped":0,"avg_latency_ms":87.13305163713791,"throughput_eps":0,"last_update":"2026-03-20T17:11:54.833744842Z"} +2026/03/20 17:11:59 ───────────────────────────────────────────────── +2026/03/20 17:12:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:59.576511857Z"} +2026/03/20 17:12:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":282.8,"last_update":"2026-03-20T17:11:59.576632288Z"} +2026/03/20 17:12:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:59.586971329Z"} +2026/03/20 17:12:04 [detection_layer] {"stage_name":"detection_layer","events_processed":47,"events_dropped":0,"avg_latency_ms":12.308179413034726,"throughput_eps":0,"last_update":"2026-03-20T17:11:59.719311749Z"} +2026/03/20 17:12:04 [transform_engine] {"stage_name":"transform_engine","events_processed":47,"events_dropped":0,"avg_latency_ms":87.13305163713791,"throughput_eps":0,"last_update":"2026-03-20T17:11:59.719321849Z"} +2026/03/20 17:12:04 ───────────────────────────────────────────────── +2026/03/20 17:12:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":283.8,"last_update":"2026-03-20T17:12:04.576177354Z"} +2026/03/20 17:12:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":570,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:04.584499148Z"} +2026/03/20 17:12:09 [detection_layer] {"stage_name":"detection_layer","events_processed":47,"events_dropped":0,"avg_latency_ms":12.308179413034726,"throughput_eps":0,"last_update":"2026-03-20T17:12:04.71880456Z"} +2026/03/20 17:12:09 [transform_engine] {"stage_name":"transform_engine","events_processed":47,"events_dropped":0,"avg_latency_ms":87.13305163713791,"throughput_eps":0,"last_update":"2026-03-20T17:12:04.71866958Z"} +2026/03/20 17:12:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:04.575767358Z"} +2026/03/20 17:12:09 ───────────────────────────────────────────────── +2026/03/20 17:12:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":284.8,"last_update":"2026-03-20T17:12:09.576239359Z"} +2026/03/20 17:12:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":572,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:09.586259279Z"} +2026/03/20 17:12:14 [detection_layer] {"stage_name":"detection_layer","events_processed":47,"events_dropped":0,"avg_latency_ms":12.308179413034726,"throughput_eps":0,"last_update":"2026-03-20T17:12:09.719502287Z"} +2026/03/20 17:12:14 [transform_engine] {"stage_name":"transform_engine","events_processed":47,"events_dropped":0,"avg_latency_ms":87.13305163713791,"throughput_eps":0,"last_update":"2026-03-20T17:12:09.719511494Z"} +2026/03/20 17:12:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:09.575920518Z"} +2026/03/20 17:12:14 ───────────────────────────────────────────────── +2026/03/20 17:12:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:14.575750312Z"} +2026/03/20 17:12:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":285.8,"last_update":"2026-03-20T17:12:14.576184094Z"} +2026/03/20 17:12:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:14.586024219Z"} +2026/03/20 17:12:19 [detection_layer] {"stage_name":"detection_layer","events_processed":47,"events_dropped":0,"avg_latency_ms":12.308179413034726,"throughput_eps":0,"last_update":"2026-03-20T17:12:14.719283771Z"} +2026/03/20 17:12:19 [transform_engine] {"stage_name":"transform_engine","events_processed":47,"events_dropped":0,"avg_latency_ms":87.13305163713791,"throughput_eps":0,"last_update":"2026-03-20T17:12:14.719291185Z"} +2026/03/20 17:12:19 ───────────────────────────────────────────────── +2026/03/20 17:12:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:19.575878725Z"} +2026/03/20 17:12:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":286.8,"last_update":"2026-03-20T17:12:19.576338476Z"} +2026/03/20 17:12:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":576,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:19.586468558Z"} +2026/03/20 17:12:24 [detection_layer] {"stage_name":"detection_layer","events_processed":47,"events_dropped":0,"avg_latency_ms":12.308179413034726,"throughput_eps":0,"last_update":"2026-03-20T17:12:19.719692163Z"} +2026/03/20 17:12:24 [transform_engine] {"stage_name":"transform_engine","events_processed":47,"events_dropped":0,"avg_latency_ms":87.13305163713791,"throughput_eps":0,"last_update":"2026-03-20T17:12:19.719699126Z"} +2026/03/20 17:12:24 ───────────────────────────────────────────────── +2026/03/20 17:12:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:29 [detection_layer] {"stage_name":"detection_layer","events_processed":47,"events_dropped":0,"avg_latency_ms":12.308179413034726,"throughput_eps":0,"last_update":"2026-03-20T17:12:24.71879707Z"} +2026/03/20 17:12:29 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":82.72725710971034,"throughput_eps":0,"last_update":"2026-03-20T17:12:24.783915997Z"} +2026/03/20 17:12:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:24.575511802Z"} +2026/03/20 17:12:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":287.8,"last_update":"2026-03-20T17:12:24.575742233Z"} +2026/03/20 17:12:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:24.586712877Z"} +2026/03/20 17:12:29 ───────────────────────────────────────────────── +2026/03/20 17:12:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:29.575732334Z"} +2026/03/20 17:12:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":288.8,"last_update":"2026-03-20T17:12:29.576021679Z"} +2026/03/20 17:12:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":580,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:29.586571096Z"} +2026/03/20 17:12:34 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":12.231014930427781,"throughput_eps":0,"last_update":"2026-03-20T17:12:29.718824717Z"} +2026/03/20 17:12:34 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":82.72725710971034,"throughput_eps":0,"last_update":"2026-03-20T17:12:29.718718793Z"} +2026/03/20 17:12:34 ───────────────────────────────────────────────── +2026/03/20 17:12:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:34.575798134Z"} +2026/03/20 17:12:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":289.8,"last_update":"2026-03-20T17:12:34.57607747Z"} +2026/03/20 17:12:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:34.586970625Z"} +2026/03/20 17:12:39 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":12.231014930427781,"throughput_eps":0,"last_update":"2026-03-20T17:12:34.719224639Z"} +2026/03/20 17:12:39 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":82.72725710971034,"throughput_eps":0,"last_update":"2026-03-20T17:12:34.719233778Z"} +2026/03/20 17:12:39 ───────────────────────────────────────────────── +2026/03/20 17:12:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:39.57551769Z"} +2026/03/20 17:12:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":290.8,"last_update":"2026-03-20T17:12:39.575455069Z"} +2026/03/20 17:12:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:39.584630762Z"} +2026/03/20 17:12:44 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":12.231014930427781,"throughput_eps":0,"last_update":"2026-03-20T17:12:39.718791254Z"} +2026/03/20 17:12:44 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":82.72725710971034,"throughput_eps":0,"last_update":"2026-03-20T17:12:39.718801814Z"} +2026/03/20 17:12:44 ───────────────────────────────────────────────── +2026/03/20 17:12:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:44.575791938Z"} +2026/03/20 17:12:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":291.8,"last_update":"2026-03-20T17:12:44.576082876Z"} +2026/03/20 17:12:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":586,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:44.585722687Z"} +2026/03/20 17:12:49 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":12.231014930427781,"throughput_eps":0,"last_update":"2026-03-20T17:12:44.719111003Z"} +2026/03/20 17:12:49 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":82.72725710971034,"throughput_eps":0,"last_update":"2026-03-20T17:12:44.719126402Z"} +2026/03/20 17:12:49 ───────────────────────────────────────────────── +2026/03/20 17:12:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:54 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":12.231014930427781,"throughput_eps":0,"last_update":"2026-03-20T17:12:49.719377847Z"} +2026/03/20 17:12:54 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":82.72725710971034,"throughput_eps":0,"last_update":"2026-03-20T17:12:49.719388036Z"} +2026/03/20 17:12:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:49.575499868Z"} +2026/03/20 17:12:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":292.8,"last_update":"2026-03-20T17:12:49.575553291Z"} +2026/03/20 17:12:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":588,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:49.585037434Z"} +2026/03/20 17:12:54 ───────────────────────────────────────────────── +2026/03/20 17:12:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":293.8,"last_update":"2026-03-20T17:12:54.576215949Z"} +2026/03/20 17:12:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:54.584556761Z"} +2026/03/20 17:12:59 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":12.231014930427781,"throughput_eps":0,"last_update":"2026-03-20T17:12:54.719824353Z"} +2026/03/20 17:12:59 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":79.25397128776828,"throughput_eps":0,"last_update":"2026-03-20T17:12:54.784081976Z"} +2026/03/20 17:12:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:54.575884183Z"} +2026/03/20 17:12:59 ───────────────────────────────────────────────── +2026/03/20 17:13:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":592,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:59.585136696Z"} +2026/03/20 17:13:04 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":13.083103944342225,"throughput_eps":0,"last_update":"2026-03-20T17:12:59.719422599Z"} +2026/03/20 17:13:04 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":79.25397128776828,"throughput_eps":0,"last_update":"2026-03-20T17:12:59.719450443Z"} +2026/03/20 17:13:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:59.576333758Z"} +2026/03/20 17:13:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":294.8,"last_update":"2026-03-20T17:12:59.576315783Z"} +2026/03/20 17:13:04 ───────────────────────────────────────────────── +2026/03/20 17:13:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:04.575974079Z"} +2026/03/20 17:13:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":295.8,"last_update":"2026-03-20T17:13:04.576322576Z"} +2026/03/20 17:13:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:04.585171744Z"} +2026/03/20 17:13:09 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":13.083103944342225,"throughput_eps":0,"last_update":"2026-03-20T17:13:04.719443212Z"} +2026/03/20 17:13:09 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":79.25397128776828,"throughput_eps":0,"last_update":"2026-03-20T17:13:04.719459633Z"} +2026/03/20 17:13:09 ───────────────────────────────────────────────── +2026/03/20 17:13:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:14 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":13.083103944342225,"throughput_eps":0,"last_update":"2026-03-20T17:13:09.719191245Z"} +2026/03/20 17:13:14 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":79.25397128776828,"throughput_eps":0,"last_update":"2026-03-20T17:13:09.719205403Z"} +2026/03/20 17:13:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:09.576541821Z"} +2026/03/20 17:13:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":296.8,"last_update":"2026-03-20T17:13:09.575419789Z"} +2026/03/20 17:13:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:09.584805525Z"} +2026/03/20 17:13:14 ───────────────────────────────────────────────── +2026/03/20 17:13:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:14.575875071Z"} +2026/03/20 17:13:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":297.8,"last_update":"2026-03-20T17:13:14.576278024Z"} +2026/03/20 17:13:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:14.585477202Z"} +2026/03/20 17:13:19 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":13.083103944342225,"throughput_eps":0,"last_update":"2026-03-20T17:13:14.718801519Z"} +2026/03/20 17:13:19 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":79.25397128776828,"throughput_eps":0,"last_update":"2026-03-20T17:13:14.718710655Z"} +2026/03/20 17:13:19 ───────────────────────────────────────────────── +2026/03/20 17:13:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":298.8,"last_update":"2026-03-20T17:13:19.57543631Z"} +2026/03/20 17:13:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:19.58522528Z"} +2026/03/20 17:13:24 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":13.083103944342225,"throughput_eps":0,"last_update":"2026-03-20T17:13:19.719630392Z"} +2026/03/20 17:13:24 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":79.25397128776828,"throughput_eps":0,"last_update":"2026-03-20T17:13:19.719645972Z"} +2026/03/20 17:13:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:19.57650542Z"} +2026/03/20 17:13:24 ───────────────────────────────────────────────── +2026/03/20 17:13:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:24.575821922Z"} +2026/03/20 17:13:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":299.8,"last_update":"2026-03-20T17:13:24.576213623Z"} +2026/03/20 17:13:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":602,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:24.585154346Z"} +2026/03/20 17:13:29 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":13.083103944342225,"throughput_eps":0,"last_update":"2026-03-20T17:13:24.719560402Z"} +2026/03/20 17:13:29 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":75.84135663021463,"throughput_eps":0,"last_update":"2026-03-20T17:13:24.781768353Z"} +2026/03/20 17:13:29 ───────────────────────────────────────────────── +2026/03/20 17:13:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:34 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":75.84135663021463,"throughput_eps":0,"last_update":"2026-03-20T17:13:29.71888431Z"} +2026/03/20 17:13:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:29.575504975Z"} +2026/03/20 17:13:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":300.8,"last_update":"2026-03-20T17:13:29.575744324Z"} +2026/03/20 17:13:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:29.585641512Z"} +2026/03/20 17:13:34 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":13.277495155473781,"throughput_eps":0,"last_update":"2026-03-20T17:13:29.71887375Z"} +2026/03/20 17:13:34 ───────────────────────────────────────────────── +2026/03/20 17:13:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:34.576013021Z"} +2026/03/20 17:13:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":301.8,"last_update":"2026-03-20T17:13:34.576303929Z"} +2026/03/20 17:13:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:34.586431899Z"} +2026/03/20 17:13:39 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":13.277495155473781,"throughput_eps":0,"last_update":"2026-03-20T17:13:34.719837993Z"} +2026/03/20 17:13:39 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":75.84135663021463,"throughput_eps":0,"last_update":"2026-03-20T17:13:34.718655235Z"} +2026/03/20 17:13:39 ───────────────────────────────────────────────── +2026/03/20 17:13:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:39.576279744Z"} +2026/03/20 17:13:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":302.8,"last_update":"2026-03-20T17:13:39.576264695Z"} +2026/03/20 17:13:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:39.58513262Z"} +2026/03/20 17:13:44 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":13.277495155473781,"throughput_eps":0,"last_update":"2026-03-20T17:13:39.719512983Z"} +2026/03/20 17:13:44 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":75.84135663021463,"throughput_eps":0,"last_update":"2026-03-20T17:13:39.719521991Z"} +2026/03/20 17:13:44 ───────────────────────────────────────────────── +2026/03/20 17:13:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:44.57577645Z"} +2026/03/20 17:13:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":303.8,"last_update":"2026-03-20T17:13:44.576076635Z"} +2026/03/20 17:13:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:44.585391838Z"} +2026/03/20 17:13:49 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":13.277495155473781,"throughput_eps":0,"last_update":"2026-03-20T17:13:44.719645311Z"} +2026/03/20 17:13:49 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":75.84135663021463,"throughput_eps":0,"last_update":"2026-03-20T17:13:44.719651192Z"} +2026/03/20 17:13:49 ───────────────────────────────────────────────── +2026/03/20 17:13:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:49.575584258Z"} +2026/03/20 17:13:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":304.8,"last_update":"2026-03-20T17:13:49.575718095Z"} +2026/03/20 17:13:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:49.584996918Z"} +2026/03/20 17:13:54 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":13.277495155473781,"throughput_eps":0,"last_update":"2026-03-20T17:13:49.719218312Z"} +2026/03/20 17:13:54 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":75.84135663021463,"throughput_eps":0,"last_update":"2026-03-20T17:13:49.719228051Z"} +2026/03/20 17:13:54 ───────────────────────────────────────────────── +2026/03/20 17:13:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:54.575672965Z"} +2026/03/20 17:13:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":305.8,"last_update":"2026-03-20T17:13:54.575954214Z"} +2026/03/20 17:13:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:54.587493852Z"} +2026/03/20 17:13:59 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":13.277495155473781,"throughput_eps":0,"last_update":"2026-03-20T17:13:54.718787974Z"} +2026/03/20 17:13:59 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":73.60143610417171,"throughput_eps":0,"last_update":"2026-03-20T17:13:54.783417114Z"} +2026/03/20 17:13:59 ───────────────────────────────────────────────── +2026/03/20 17:14:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:59.57550921Z"} +2026/03/20 17:14:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":306.8,"last_update":"2026-03-20T17:13:59.575835666Z"} +2026/03/20 17:14:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:59.586063941Z"} +2026/03/20 17:14:04 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":13.588248124379026,"throughput_eps":0,"last_update":"2026-03-20T17:13:59.719426782Z"} +2026/03/20 17:14:04 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":73.60143610417171,"throughput_eps":0,"last_update":"2026-03-20T17:13:59.719439367Z"} +2026/03/20 17:14:04 ───────────────────────────────────────────────── +2026/03/20 17:14:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:09 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":73.60143610417171,"throughput_eps":0,"last_update":"2026-03-20T17:14:04.718731037Z"} +2026/03/20 17:14:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:04.575975311Z"} +2026/03/20 17:14:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":307.8,"last_update":"2026-03-20T17:14:04.576466192Z"} +2026/03/20 17:14:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:04.586543577Z"} +2026/03/20 17:14:09 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":13.588248124379026,"throughput_eps":0,"last_update":"2026-03-20T17:14:04.718847109Z"} +2026/03/20 17:14:09 ───────────────────────────────────────────────── +2026/03/20 17:14:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:09.576036437Z"} +2026/03/20 17:14:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":308.8,"last_update":"2026-03-20T17:14:09.576580371Z"} +2026/03/20 17:14:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":620,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:09.586246436Z"} +2026/03/20 17:14:14 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":13.588248124379026,"throughput_eps":0,"last_update":"2026-03-20T17:14:09.719617069Z"} +2026/03/20 17:14:14 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":73.60143610417171,"throughput_eps":0,"last_update":"2026-03-20T17:14:09.71963326Z"} +2026/03/20 17:14:14 ───────────────────────────────────────────────── +2026/03/20 17:14:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:19 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":13.588248124379026,"throughput_eps":0,"last_update":"2026-03-20T17:14:14.719487615Z"} +2026/03/20 17:14:19 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":73.60143610417171,"throughput_eps":0,"last_update":"2026-03-20T17:14:14.719451074Z"} +2026/03/20 17:14:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:14.575746253Z"} +2026/03/20 17:14:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":309.8,"last_update":"2026-03-20T17:14:14.576159637Z"} +2026/03/20 17:14:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":622,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:14.585331264Z"} +2026/03/20 17:14:19 ───────────────────────────────────────────────── +2026/03/20 17:14:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:24 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":73.60143610417171,"throughput_eps":0,"last_update":"2026-03-20T17:14:19.718941576Z"} +2026/03/20 17:14:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:19.576021127Z"} +2026/03/20 17:14:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":310.8,"last_update":"2026-03-20T17:14:19.576543228Z"} +2026/03/20 17:14:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":622,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:19.576201472Z"} +2026/03/20 17:14:24 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":13.588248124379026,"throughput_eps":0,"last_update":"2026-03-20T17:14:19.718921878Z"} +2026/03/20 17:14:24 ───────────────────────────────────────────────── +2026/03/20 17:14:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:24.575808036Z"} +2026/03/20 17:14:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":311.8,"last_update":"2026-03-20T17:14:24.576142607Z"} +2026/03/20 17:14:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:24.586452267Z"} +2026/03/20 17:14:29 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":13.588248124379026,"throughput_eps":0,"last_update":"2026-03-20T17:14:24.718884176Z"} +2026/03/20 17:14:29 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":81.74561688333738,"throughput_eps":0,"last_update":"2026-03-20T17:14:24.833049615Z"} +2026/03/20 17:14:29 ───────────────────────────────────────────────── +2026/03/20 17:14:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:34 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":81.74561688333738,"throughput_eps":0,"last_update":"2026-03-20T17:14:29.719483805Z"} +2026/03/20 17:14:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:29.575933093Z"} +2026/03/20 17:14:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":312.8,"last_update":"2026-03-20T17:14:29.576553623Z"} +2026/03/20 17:14:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:29.585122074Z"} +2026/03/20 17:14:34 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":13.826673099503221,"throughput_eps":0,"last_update":"2026-03-20T17:14:29.719452095Z"} +2026/03/20 17:14:34 ───────────────────────────────────────────────── +2026/03/20 17:14:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:34.575532081Z"} +2026/03/20 17:14:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":313.8,"last_update":"2026-03-20T17:14:34.575777913Z"} +2026/03/20 17:14:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:34.585381008Z"} +2026/03/20 17:14:39 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":13.826673099503221,"throughput_eps":0,"last_update":"2026-03-20T17:14:34.719399794Z"} +2026/03/20 17:14:39 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":81.74561688333738,"throughput_eps":0,"last_update":"2026-03-20T17:14:34.719432547Z"} +2026/03/20 17:14:39 ───────────────────────────────────────────────── +2026/03/20 17:14:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":632,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:39.587045689Z"} +2026/03/20 17:14:44 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":13.826673099503221,"throughput_eps":0,"last_update":"2026-03-20T17:14:39.719300444Z"} +2026/03/20 17:14:44 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":81.74561688333738,"throughput_eps":0,"last_update":"2026-03-20T17:14:39.71933492Z"} +2026/03/20 17:14:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:39.575507161Z"} +2026/03/20 17:14:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":314.8,"last_update":"2026-03-20T17:14:39.575972313Z"} +2026/03/20 17:14:44 ───────────────────────────────────────────────── +2026/03/20 17:14:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:44.584910391Z"} +2026/03/20 17:14:49 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":13.826673099503221,"throughput_eps":0,"last_update":"2026-03-20T17:14:44.719348615Z"} +2026/03/20 17:14:49 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":81.74561688333738,"throughput_eps":0,"last_update":"2026-03-20T17:14:44.719291657Z"} +2026/03/20 17:14:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:44.575595548Z"} +2026/03/20 17:14:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":315.6,"last_update":"2026-03-20T17:14:44.575034161Z"} +2026/03/20 17:14:49 ───────────────────────────────────────────────── +2026/03/20 17:14:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:54 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":13.826673099503221,"throughput_eps":0,"last_update":"2026-03-20T17:14:49.719484632Z"} +2026/03/20 17:14:54 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":81.74561688333738,"throughput_eps":0,"last_update":"2026-03-20T17:14:49.719528185Z"} +2026/03/20 17:14:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:49.575560774Z"} +2026/03/20 17:14:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1583,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":316.6,"last_update":"2026-03-20T17:14:49.575035767Z"} +2026/03/20 17:14:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:49.586165742Z"} +2026/03/20 17:14:54 ───────────────────────────────────────────────── +2026/03/20 17:14:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:59 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":13.826673099503221,"throughput_eps":0,"last_update":"2026-03-20T17:14:54.718945852Z"} +2026/03/20 17:14:59 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":86.9098667066699,"throughput_eps":0,"last_update":"2026-03-20T17:14:54.826527536Z"} +2026/03/20 17:14:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:54.576182247Z"} +2026/03/20 17:14:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":317.8,"last_update":"2026-03-20T17:14:54.576768491Z"} +2026/03/20 17:14:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:54.585642169Z"} +2026/03/20 17:14:59 ───────────────────────────────────────────────── +2026/03/20 17:15:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:04 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":86.9098667066699,"throughput_eps":0,"last_update":"2026-03-20T17:14:59.718653069Z"} +2026/03/20 17:15:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:59.575551705Z"} +2026/03/20 17:15:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":318.8,"last_update":"2026-03-20T17:14:59.575660474Z"} +2026/03/20 17:15:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":640,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:59.585465958Z"} +2026/03/20 17:15:04 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":14.058482079602577,"throughput_eps":0,"last_update":"2026-03-20T17:14:59.719737068Z"} +2026/03/20 17:15:04 ───────────────────────────────────────────────── +2026/03/20 17:15:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:09 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":86.9098667066699,"throughput_eps":0,"last_update":"2026-03-20T17:15:04.719556395Z"} +2026/03/20 17:15:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:04.575789924Z"} +2026/03/20 17:15:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":319.8,"last_update":"2026-03-20T17:15:04.576280905Z"} +2026/03/20 17:15:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:04.586311581Z"} +2026/03/20 17:15:09 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":14.058482079602577,"throughput_eps":0,"last_update":"2026-03-20T17:15:04.719544372Z"} +2026/03/20 17:15:09 ───────────────────────────────────────────────── +2026/03/20 17:15:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:14 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":14.058482079602577,"throughput_eps":0,"last_update":"2026-03-20T17:15:09.718801217Z"} +2026/03/20 17:15:14 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":86.9098667066699,"throughput_eps":0,"last_update":"2026-03-20T17:15:09.71881397Z"} +2026/03/20 17:15:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:09.575585538Z"} +2026/03/20 17:15:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":320.8,"last_update":"2026-03-20T17:15:09.575828314Z"} +2026/03/20 17:15:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:09.585567802Z"} +2026/03/20 17:15:14 ───────────────────────────────────────────────── +2026/03/20 17:15:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:14.576605186Z"} +2026/03/20 17:15:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":321.8,"last_update":"2026-03-20T17:15:14.5766075Z"} +2026/03/20 17:15:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":646,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:14.585342341Z"} +2026/03/20 17:15:19 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":14.058482079602577,"throughput_eps":0,"last_update":"2026-03-20T17:15:14.71959389Z"} +2026/03/20 17:15:19 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":86.9098667066699,"throughput_eps":0,"last_update":"2026-03-20T17:15:14.719602627Z"} +2026/03/20 17:15:19 ───────────────────────────────────────────────── +2026/03/20 17:15:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:24 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":86.9098667066699,"throughput_eps":0,"last_update":"2026-03-20T17:15:19.719156888Z"} +2026/03/20 17:15:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:19.575753536Z"} +2026/03/20 17:15:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":322.8,"last_update":"2026-03-20T17:15:19.576004617Z"} +2026/03/20 17:15:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:19.5857095Z"} +2026/03/20 17:15:24 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":14.058482079602577,"throughput_eps":0,"last_update":"2026-03-20T17:15:19.71914248Z"} +2026/03/20 17:15:24 ───────────────────────────────────────────────── +2026/03/20 17:15:24 [ANOMALY] time=2026-03-20T17:15:24Z score=0.8744 method=SEAD details=MAD!:w=0.28,s=0.68 RRCF-fast!:w=0.18,s=0.92 RRCF-mid!:w=0.17,s=0.94 RRCF-slow!:w=0.17,s=0.94 COPOD!:w=0.21,s=0.98 +2026/03/20 17:15:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:24.575821071Z"} +2026/03/20 17:15:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":323.8,"last_update":"2026-03-20T17:15:24.57588815Z"} +2026/03/20 17:15:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":650,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:24.586441931Z"} +2026/03/20 17:15:29 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":14.058482079602577,"throughput_eps":0,"last_update":"2026-03-20T17:15:24.719831429Z"} +2026/03/20 17:15:29 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":92.14336216533593,"throughput_eps":0,"last_update":"2026-03-20T17:15:24.831786461Z"} +2026/03/20 17:15:29 ───────────────────────────────────────────────── +2026/03/20 17:15:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:29.575521306Z"} +2026/03/20 17:15:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":324.8,"last_update":"2026-03-20T17:15:29.575958564Z"} +2026/03/20 17:15:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:29.586674326Z"} +2026/03/20 17:15:34 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":12.871407463682061,"throughput_eps":0,"last_update":"2026-03-20T17:15:29.719049841Z"} +2026/03/20 17:15:34 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":92.14336216533593,"throughput_eps":0,"last_update":"2026-03-20T17:15:29.719062265Z"} +2026/03/20 17:15:34 ───────────────────────────────────────────────── +2026/03/20 17:15:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:34.585923606Z"} +2026/03/20 17:15:39 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":12.871407463682061,"throughput_eps":0,"last_update":"2026-03-20T17:15:34.719088669Z"} +2026/03/20 17:15:39 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":92.14336216533593,"throughput_eps":0,"last_update":"2026-03-20T17:15:34.719096984Z"} +2026/03/20 17:15:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:34.576674909Z"} +2026/03/20 17:15:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":325.8,"last_update":"2026-03-20T17:15:34.57670695Z"} +2026/03/20 17:15:39 ───────────────────────────────────────────────── +2026/03/20 17:15:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:44 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":92.14336216533593,"throughput_eps":0,"last_update":"2026-03-20T17:15:39.719365271Z"} +2026/03/20 17:15:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:39.575501328Z"} +2026/03/20 17:15:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":326.8,"last_update":"2026-03-20T17:15:39.575888841Z"} +2026/03/20 17:15:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:39.58609222Z"} +2026/03/20 17:15:44 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":12.871407463682061,"throughput_eps":0,"last_update":"2026-03-20T17:15:39.71933866Z"} +2026/03/20 17:15:44 ───────────────────────────────────────────────── +2026/03/20 17:15:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:49 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":12.871407463682061,"throughput_eps":0,"last_update":"2026-03-20T17:15:44.719307182Z"} +2026/03/20 17:15:49 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":92.14336216533593,"throughput_eps":0,"last_update":"2026-03-20T17:15:44.719315387Z"} +2026/03/20 17:15:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:44.575671905Z"} +2026/03/20 17:15:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":327.8,"last_update":"2026-03-20T17:15:44.575961681Z"} +2026/03/20 17:15:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:44.586042935Z"} +2026/03/20 17:15:49 ───────────────────────────────────────────────── +2026/03/20 17:15:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:49.57588809Z"} +2026/03/20 17:15:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":328.8,"last_update":"2026-03-20T17:15:49.576136396Z"} +2026/03/20 17:15:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":660,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:49.587326698Z"} +2026/03/20 17:15:54 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":12.871407463682061,"throughput_eps":0,"last_update":"2026-03-20T17:15:49.719659981Z"} +2026/03/20 17:15:54 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":92.14336216533593,"throughput_eps":0,"last_update":"2026-03-20T17:15:49.719668097Z"} +2026/03/20 17:15:54 ───────────────────────────────────────────────── +2026/03/20 17:15:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":662,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:54.585503319Z"} +2026/03/20 17:15:59 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":12.871407463682061,"throughput_eps":0,"last_update":"2026-03-20T17:15:54.719767817Z"} +2026/03/20 17:15:59 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":96.57884533226876,"throughput_eps":0,"last_update":"2026-03-20T17:15:54.834106419Z"} +2026/03/20 17:15:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:54.575508099Z"} +2026/03/20 17:15:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":329.8,"last_update":"2026-03-20T17:15:54.57547786Z"} +2026/03/20 17:15:59 ───────────────────────────────────────────────── +2026/03/20 17:16:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:59.575722035Z"} +2026/03/20 17:16:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":330.8,"last_update":"2026-03-20T17:15:59.57608457Z"} +2026/03/20 17:16:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:59.585630689Z"} +2026/03/20 17:16:04 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":13.33265217094565,"throughput_eps":0,"last_update":"2026-03-20T17:15:59.718798637Z"} +2026/03/20 17:16:04 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":96.57884533226876,"throughput_eps":0,"last_update":"2026-03-20T17:15:59.718807373Z"} +2026/03/20 17:16:04 ───────────────────────────────────────────────── +2026/03/20 17:16:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:09 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":13.33265217094565,"throughput_eps":0,"last_update":"2026-03-20T17:16:04.718842114Z"} +2026/03/20 17:16:09 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":96.57884533226876,"throughput_eps":0,"last_update":"2026-03-20T17:16:04.718737264Z"} +2026/03/20 17:16:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:04.576019038Z"} +2026/03/20 17:16:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":331.8,"last_update":"2026-03-20T17:16:04.576294235Z"} +2026/03/20 17:16:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:04.585616215Z"} +2026/03/20 17:16:09 ───────────────────────────────────────────────── +2026/03/20 17:16:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:09.575766565Z"} +2026/03/20 17:16:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":332.8,"last_update":"2026-03-20T17:16:09.576137215Z"} +2026/03/20 17:16:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":668,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:09.587169615Z"} +2026/03/20 17:16:14 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":13.33265217094565,"throughput_eps":0,"last_update":"2026-03-20T17:16:09.719565355Z"} +2026/03/20 17:16:14 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":96.57884533226876,"throughput_eps":0,"last_update":"2026-03-20T17:16:09.719579992Z"} +2026/03/20 17:16:14 ───────────────────────────────────────────────── +2026/03/20 17:16:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:14.575724517Z"} +2026/03/20 17:16:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":333.8,"last_update":"2026-03-20T17:16:14.576030264Z"} +2026/03/20 17:16:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":670,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:14.58634632Z"} +2026/03/20 17:16:19 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":13.33265217094565,"throughput_eps":0,"last_update":"2026-03-20T17:16:14.719701211Z"} +2026/03/20 17:16:19 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":96.57884533226876,"throughput_eps":0,"last_update":"2026-03-20T17:16:14.719717072Z"} +2026/03/20 17:16:19 ───────────────────────────────────────────────── +2026/03/20 17:16:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:19.576099478Z"} +2026/03/20 17:16:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":334.8,"last_update":"2026-03-20T17:16:19.576432998Z"} +2026/03/20 17:16:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:19.586365969Z"} +2026/03/20 17:16:24 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":13.33265217094565,"throughput_eps":0,"last_update":"2026-03-20T17:16:19.719672048Z"} +2026/03/20 17:16:24 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":96.57884533226876,"throughput_eps":0,"last_update":"2026-03-20T17:16:19.719684823Z"} +2026/03/20 17:16:24 ───────────────────────────────────────────────── +2026/03/20 17:16:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:29 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":91.42948546581502,"throughput_eps":0,"last_update":"2026-03-20T17:16:24.790586118Z"} +2026/03/20 17:16:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:24.575694858Z"} +2026/03/20 17:16:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":335.8,"last_update":"2026-03-20T17:16:24.576021605Z"} +2026/03/20 17:16:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:24.586361116Z"} +2026/03/20 17:16:29 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":13.33265217094565,"throughput_eps":0,"last_update":"2026-03-20T17:16:24.719735748Z"} +2026/03/20 17:16:29 ───────────────────────────────────────────────── +2026/03/20 17:16:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:29.575545469Z"} +2026/03/20 17:16:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":336.8,"last_update":"2026-03-20T17:16:29.575660971Z"} +2026/03/20 17:16:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":676,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:29.586657884Z"} +2026/03/20 17:16:34 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":13.700245136756521,"throughput_eps":0,"last_update":"2026-03-20T17:16:29.719191023Z"} +2026/03/20 17:16:34 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":91.42948546581502,"throughput_eps":0,"last_update":"2026-03-20T17:16:29.719049261Z"} +2026/03/20 17:16:34 ───────────────────────────────────────────────── +2026/03/20 17:16:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:34.576111025Z"} +2026/03/20 17:16:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":337.8,"last_update":"2026-03-20T17:16:34.576616595Z"} +2026/03/20 17:16:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:34.585755093Z"} +2026/03/20 17:16:39 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":13.700245136756521,"throughput_eps":0,"last_update":"2026-03-20T17:16:34.719153153Z"} +2026/03/20 17:16:39 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":91.42948546581502,"throughput_eps":0,"last_update":"2026-03-20T17:16:34.719204503Z"} +2026/03/20 17:16:39 ───────────────────────────────────────────────── +2026/03/20 17:16:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:44 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":91.42948546581502,"throughput_eps":0,"last_update":"2026-03-20T17:16:39.718955742Z"} +2026/03/20 17:16:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:39.575812749Z"} +2026/03/20 17:16:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":338.8,"last_update":"2026-03-20T17:16:39.576160416Z"} +2026/03/20 17:16:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:39.585594982Z"} +2026/03/20 17:16:44 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":13.700245136756521,"throughput_eps":0,"last_update":"2026-03-20T17:16:39.718931476Z"} +2026/03/20 17:16:44 ───────────────────────────────────────────────── +2026/03/20 17:16:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:44.575986349Z"} +2026/03/20 17:16:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":339.8,"last_update":"2026-03-20T17:16:44.575968976Z"} +2026/03/20 17:16:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:44.586881787Z"} +2026/03/20 17:16:49 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":13.700245136756521,"throughput_eps":0,"last_update":"2026-03-20T17:16:44.719432936Z"} +2026/03/20 17:16:49 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":91.42948546581502,"throughput_eps":0,"last_update":"2026-03-20T17:16:44.719313788Z"} +2026/03/20 17:16:49 ───────────────────────────────────────────────── +2026/03/20 17:16:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":340.8,"last_update":"2026-03-20T17:16:49.576160842Z"} +2026/03/20 17:16:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:49.585181905Z"} +2026/03/20 17:16:54 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":13.700245136756521,"throughput_eps":0,"last_update":"2026-03-20T17:16:49.71944502Z"} +2026/03/20 17:16:54 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":91.42948546581502,"throughput_eps":0,"last_update":"2026-03-20T17:16:49.719546394Z"} +2026/03/20 17:16:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:49.575855286Z"} +2026/03/20 17:16:54 ───────────────────────────────────────────────── +2026/03/20 17:16:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:54.575734644Z"} +2026/03/20 17:16:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":341.8,"last_update":"2026-03-20T17:16:54.576125835Z"} +2026/03/20 17:16:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:54.58660776Z"} +2026/03/20 17:16:59 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":13.700245136756521,"throughput_eps":0,"last_update":"2026-03-20T17:16:54.718912439Z"} +2026/03/20 17:16:59 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":85.54184317265202,"throughput_eps":0,"last_update":"2026-03-20T17:16:54.780845351Z"} +2026/03/20 17:16:59 ───────────────────────────────────────────────── +2026/03/20 17:17:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:04 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":85.54184317265202,"throughput_eps":0,"last_update":"2026-03-20T17:16:59.719561226Z"} +2026/03/20 17:17:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:59.575527236Z"} +2026/03/20 17:17:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":342.8,"last_update":"2026-03-20T17:16:59.57580566Z"} +2026/03/20 17:17:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":688,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:59.586072032Z"} +2026/03/20 17:17:04 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":12.578859109405217,"throughput_eps":0,"last_update":"2026-03-20T17:16:59.719455363Z"} +2026/03/20 17:17:04 ───────────────────────────────────────────────── +2026/03/20 17:17:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:04.575531133Z"} +2026/03/20 17:17:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":343.8,"last_update":"2026-03-20T17:17:04.575919328Z"} +2026/03/20 17:17:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:04.586657955Z"} +2026/03/20 17:17:09 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":12.578859109405217,"throughput_eps":0,"last_update":"2026-03-20T17:17:04.718930216Z"} +2026/03/20 17:17:09 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":85.54184317265202,"throughput_eps":0,"last_update":"2026-03-20T17:17:04.718907823Z"} +2026/03/20 17:17:09 ───────────────────────────────────────────────── +2026/03/20 17:17:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:09.575980944Z"} +2026/03/20 17:17:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":344.8,"last_update":"2026-03-20T17:17:09.576303563Z"} +2026/03/20 17:17:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:09.585336849Z"} +2026/03/20 17:17:14 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":12.578859109405217,"throughput_eps":0,"last_update":"2026-03-20T17:17:09.719764526Z"} +2026/03/20 17:17:14 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":85.54184317265202,"throughput_eps":0,"last_update":"2026-03-20T17:17:09.719715072Z"} +2026/03/20 17:17:14 ───────────────────────────────────────────────── +2026/03/20 17:17:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:14.575513305Z"} +2026/03/20 17:17:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":345.8,"last_update":"2026-03-20T17:17:14.575589812Z"} +2026/03/20 17:17:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:14.585046009Z"} +2026/03/20 17:17:19 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":12.578859109405217,"throughput_eps":0,"last_update":"2026-03-20T17:17:14.719341975Z"} +2026/03/20 17:17:19 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":85.54184317265202,"throughput_eps":0,"last_update":"2026-03-20T17:17:14.719290948Z"} +2026/03/20 17:17:19 ───────────────────────────────────────────────── +2026/03/20 17:17:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:24 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":12.578859109405217,"throughput_eps":0,"last_update":"2026-03-20T17:17:19.719068847Z"} +2026/03/20 17:17:24 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":85.54184317265202,"throughput_eps":0,"last_update":"2026-03-20T17:17:19.719044751Z"} +2026/03/20 17:17:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:19.575818615Z"} +2026/03/20 17:17:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":346.8,"last_update":"2026-03-20T17:17:19.576140523Z"} +2026/03/20 17:17:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:19.585665222Z"} +2026/03/20 17:17:24 ───────────────────────────────────────────────── +2026/03/20 17:17:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:24.585914983Z"} +2026/03/20 17:17:29 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":12.578859109405217,"throughput_eps":0,"last_update":"2026-03-20T17:17:24.720273692Z"} +2026/03/20 17:17:29 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":81.18141693812161,"throughput_eps":0,"last_update":"2026-03-20T17:17:24.782978659Z"} +2026/03/20 17:17:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:29.575545122Z"} +2026/03/20 17:17:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":347.8,"last_update":"2026-03-20T17:17:24.576140113Z"} +2026/03/20 17:17:29 ───────────────────────────────────────────────── +2026/03/20 17:17:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":348.8,"last_update":"2026-03-20T17:17:29.576066112Z"} +2026/03/20 17:17:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":700,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:29.586174913Z"} +2026/03/20 17:17:34 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":12.979230887524174,"throughput_eps":0,"last_update":"2026-03-20T17:17:29.719805536Z"} +2026/03/20 17:17:34 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":81.18141693812161,"throughput_eps":0,"last_update":"2026-03-20T17:17:29.719694624Z"} +2026/03/20 17:17:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:29.575545122Z"} +2026/03/20 17:17:34 ───────────────────────────────────────────────── +2026/03/20 17:17:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:39 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":81.18141693812161,"throughput_eps":0,"last_update":"2026-03-20T17:17:34.719524856Z"} +2026/03/20 17:17:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:34.576102758Z"} +2026/03/20 17:17:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":349.8,"last_update":"2026-03-20T17:17:34.576427792Z"} +2026/03/20 17:17:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":702,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:34.585265033Z"} +2026/03/20 17:17:39 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":12.979230887524174,"throughput_eps":0,"last_update":"2026-03-20T17:17:34.719545725Z"} +2026/03/20 17:17:39 ───────────────────────────────────────────────── +2026/03/20 17:17:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:44 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":81.18141693812161,"throughput_eps":0,"last_update":"2026-03-20T17:17:39.719574473Z"} +2026/03/20 17:17:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:39.575741376Z"} +2026/03/20 17:17:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":350.8,"last_update":"2026-03-20T17:17:39.575955777Z"} +2026/03/20 17:17:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:39.586251316Z"} +2026/03/20 17:17:44 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":12.979230887524174,"throughput_eps":0,"last_update":"2026-03-20T17:17:39.719686768Z"} +2026/03/20 17:17:44 ───────────────────────────────────────────────── +2026/03/20 17:17:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:44.57587089Z"} +2026/03/20 17:17:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":351.8,"last_update":"2026-03-20T17:17:44.576231571Z"} +2026/03/20 17:17:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:44.58671443Z"} +2026/03/20 17:17:49 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":12.979230887524174,"throughput_eps":0,"last_update":"2026-03-20T17:17:44.718925326Z"} +2026/03/20 17:17:49 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":81.18141693812161,"throughput_eps":0,"last_update":"2026-03-20T17:17:44.71893798Z"} +2026/03/20 17:17:49 ───────────────────────────────────────────────── +2026/03/20 17:17:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:49.575542702Z"} +2026/03/20 17:17:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":352.8,"last_update":"2026-03-20T17:17:49.576045327Z"} +2026/03/20 17:17:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:49.585933614Z"} +2026/03/20 17:17:54 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":12.979230887524174,"throughput_eps":0,"last_update":"2026-03-20T17:17:49.71939Z"} +2026/03/20 17:17:54 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":81.18141693812161,"throughput_eps":0,"last_update":"2026-03-20T17:17:49.719286932Z"} +2026/03/20 17:17:54 ───────────────────────────────────────────────── +2026/03/20 17:17:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:54.575795663Z"} +2026/03/20 17:17:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":353.8,"last_update":"2026-03-20T17:17:54.576075039Z"} +2026/03/20 17:17:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:54.587240016Z"} +2026/03/20 17:17:59 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":12.979230887524174,"throughput_eps":0,"last_update":"2026-03-20T17:17:54.719539353Z"} +2026/03/20 17:17:59 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":88.7056029504973,"throughput_eps":0,"last_update":"2026-03-20T17:17:54.838376988Z"} +2026/03/20 17:17:59 ───────────────────────────────────────────────── +2026/03/20 17:18:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:04 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":88.7056029504973,"throughput_eps":0,"last_update":"2026-03-20T17:17:59.719469059Z"} +2026/03/20 17:18:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:59.575759382Z"} +2026/03/20 17:18:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":354.8,"last_update":"2026-03-20T17:17:59.576171553Z"} +2026/03/20 17:18:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":712,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:59.585302298Z"} +2026/03/20 17:18:04 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.60797811001934,"throughput_eps":0,"last_update":"2026-03-20T17:17:59.719444702Z"} +2026/03/20 17:18:04 ───────────────────────────────────────────────── +2026/03/20 17:18:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:09 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":88.7056029504973,"throughput_eps":0,"last_update":"2026-03-20T17:18:04.719667263Z"} +2026/03/20 17:18:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:04.575572546Z"} +2026/03/20 17:18:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":355.8,"last_update":"2026-03-20T17:18:04.575513452Z"} +2026/03/20 17:18:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:04.585257063Z"} +2026/03/20 17:18:09 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.60797811001934,"throughput_eps":0,"last_update":"2026-03-20T17:18:04.719797803Z"} +2026/03/20 17:18:09 ───────────────────────────────────────────────── +2026/03/20 17:18:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:14 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.60797811001934,"throughput_eps":0,"last_update":"2026-03-20T17:18:09.719102776Z"} +2026/03/20 17:18:14 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":88.7056029504973,"throughput_eps":0,"last_update":"2026-03-20T17:18:09.718943199Z"} +2026/03/20 17:18:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:09.575916459Z"} +2026/03/20 17:18:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":356.8,"last_update":"2026-03-20T17:18:09.576271892Z"} +2026/03/20 17:18:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:09.586713081Z"} +2026/03/20 17:18:14 ───────────────────────────────────────────────── +2026/03/20 17:18:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":357.8,"last_update":"2026-03-20T17:18:14.576625006Z"} +2026/03/20 17:18:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":718,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:14.58589119Z"} +2026/03/20 17:18:19 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.60797811001934,"throughput_eps":0,"last_update":"2026-03-20T17:18:14.719062688Z"} +2026/03/20 17:18:19 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":88.7056029504973,"throughput_eps":0,"last_update":"2026-03-20T17:18:14.719047097Z"} +2026/03/20 17:18:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:14.575974068Z"} +2026/03/20 17:18:19 ───────────────────────────────────────────────── +2026/03/20 17:18:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:19.575788649Z"} +2026/03/20 17:18:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":358.8,"last_update":"2026-03-20T17:18:19.576212092Z"} +2026/03/20 17:18:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:19.585187008Z"} +2026/03/20 17:18:24 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.60797811001934,"throughput_eps":0,"last_update":"2026-03-20T17:18:19.719392629Z"} +2026/03/20 17:18:24 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":88.7056029504973,"throughput_eps":0,"last_update":"2026-03-20T17:18:19.719412697Z"} +2026/03/20 17:18:24 ───────────────────────────────────────────────── +2026/03/20 17:18:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":722,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:24.586791947Z"} +2026/03/20 17:18:29 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.60797811001934,"throughput_eps":0,"last_update":"2026-03-20T17:18:24.719051626Z"} +2026/03/20 17:18:29 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":94.30956456039785,"throughput_eps":0,"last_update":"2026-03-20T17:18:24.835811923Z"} +2026/03/20 17:18:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:24.576044389Z"} +2026/03/20 17:18:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":359.8,"last_update":"2026-03-20T17:18:24.577021283Z"} +2026/03/20 17:18:29 ───────────────────────────────────────────────── +2026/03/20 17:18:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":360.8,"last_update":"2026-03-20T17:18:29.575941401Z"} +2026/03/20 17:18:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:29.586940651Z"} +2026/03/20 17:18:34 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":14.462538488015472,"throughput_eps":0,"last_update":"2026-03-20T17:18:29.719306756Z"} +2026/03/20 17:18:34 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":94.30956456039785,"throughput_eps":0,"last_update":"2026-03-20T17:18:29.719272641Z"} +2026/03/20 17:18:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:29.575662696Z"} +2026/03/20 17:18:34 ───────────────────────────────────────────────── +2026/03/20 17:18:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:34.585178802Z"} +2026/03/20 17:18:39 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":14.462538488015472,"throughput_eps":0,"last_update":"2026-03-20T17:18:34.719565184Z"} +2026/03/20 17:18:39 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":94.30956456039785,"throughput_eps":0,"last_update":"2026-03-20T17:18:34.719535447Z"} +2026/03/20 17:18:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:34.576079276Z"} +2026/03/20 17:18:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":361.8,"last_update":"2026-03-20T17:18:34.576396905Z"} +2026/03/20 17:18:39 ───────────────────────────────────────────────── +2026/03/20 17:18:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:39.57581477Z"} +2026/03/20 17:18:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":362.8,"last_update":"2026-03-20T17:18:39.576135075Z"} +2026/03/20 17:18:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":728,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:39.58599572Z"} +2026/03/20 17:18:44 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":14.462538488015472,"throughput_eps":0,"last_update":"2026-03-20T17:18:39.719336888Z"} +2026/03/20 17:18:44 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":94.30956456039785,"throughput_eps":0,"last_update":"2026-03-20T17:18:39.719301501Z"} +2026/03/20 17:18:44 ───────────────────────────────────────────────── +2026/03/20 17:18:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:44.575826891Z"} +2026/03/20 17:18:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":363.8,"last_update":"2026-03-20T17:18:44.576069397Z"} +2026/03/20 17:18:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":730,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:44.587052165Z"} +2026/03/20 17:18:49 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":14.462538488015472,"throughput_eps":0,"last_update":"2026-03-20T17:18:44.719472359Z"} +2026/03/20 17:18:49 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":94.30956456039785,"throughput_eps":0,"last_update":"2026-03-20T17:18:44.719440297Z"} +2026/03/20 17:18:49 ───────────────────────────────────────────────── +2026/03/20 17:18:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":364.8,"last_update":"2026-03-20T17:18:49.57615038Z"} +2026/03/20 17:18:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:49.58750376Z"} +2026/03/20 17:18:54 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":14.462538488015472,"throughput_eps":0,"last_update":"2026-03-20T17:18:49.718815798Z"} +2026/03/20 17:18:54 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":94.30956456039785,"throughput_eps":0,"last_update":"2026-03-20T17:18:49.718676851Z"} +2026/03/20 17:18:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:49.575838282Z"} +2026/03/20 17:18:54 ───────────────────────────────────────────────── +2026/03/20 17:18:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:54.575977284Z"} +2026/03/20 17:18:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":365.8,"last_update":"2026-03-20T17:18:54.576310523Z"} +2026/03/20 17:18:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:54.585294017Z"} +2026/03/20 17:18:59 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":14.462538488015472,"throughput_eps":0,"last_update":"2026-03-20T17:18:54.719667078Z"} +2026/03/20 17:18:59 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":88.46718964831828,"throughput_eps":0,"last_update":"2026-03-20T17:18:54.784821666Z"} +2026/03/20 17:18:59 ───────────────────────────────────────────────── +2026/03/20 17:19:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:59.57551422Z"} +2026/03/20 17:19:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":366.8,"last_update":"2026-03-20T17:18:59.575684536Z"} +2026/03/20 17:19:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":736,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:59.58650857Z"} +2026/03/20 17:19:04 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.493468990412378,"throughput_eps":0,"last_update":"2026-03-20T17:18:59.719792164Z"} +2026/03/20 17:19:04 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":88.46718964831828,"throughput_eps":0,"last_update":"2026-03-20T17:18:59.718654812Z"} +2026/03/20 17:19:04 ───────────────────────────────────────────────── +2026/03/20 17:19:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":367.8,"last_update":"2026-03-20T17:19:04.576081058Z"} +2026/03/20 17:19:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":738,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:04.585973385Z"} +2026/03/20 17:19:09 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.493468990412378,"throughput_eps":0,"last_update":"2026-03-20T17:19:04.719347924Z"} +2026/03/20 17:19:09 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":88.46718964831828,"throughput_eps":0,"last_update":"2026-03-20T17:19:04.719238574Z"} +2026/03/20 17:19:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:04.575848803Z"} +2026/03/20 17:19:09 ───────────────────────────────────────────────── +2026/03/20 17:19:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:09.575547373Z"} +2026/03/20 17:19:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":368.8,"last_update":"2026-03-20T17:19:09.575851617Z"} +2026/03/20 17:19:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":740,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:09.586056213Z"} +2026/03/20 17:19:14 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.493468990412378,"throughput_eps":0,"last_update":"2026-03-20T17:19:09.719425664Z"} +2026/03/20 17:19:14 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":88.46718964831828,"throughput_eps":0,"last_update":"2026-03-20T17:19:09.719390316Z"} +2026/03/20 17:19:14 ───────────────────────────────────────────────── +2026/03/20 17:19:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:14.58486883Z"} +2026/03/20 17:19:19 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.493468990412378,"throughput_eps":0,"last_update":"2026-03-20T17:19:14.71924328Z"} +2026/03/20 17:19:19 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":88.46718964831828,"throughput_eps":0,"last_update":"2026-03-20T17:19:14.71913429Z"} +2026/03/20 17:19:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:14.575938899Z"} +2026/03/20 17:19:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":369.8,"last_update":"2026-03-20T17:19:14.576247001Z"} +2026/03/20 17:19:19 ───────────────────────────────────────────────── +2026/03/20 17:19:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:19.575732704Z"} +2026/03/20 17:19:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":370.8,"last_update":"2026-03-20T17:19:19.575993725Z"} +2026/03/20 17:19:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:19.585166682Z"} +2026/03/20 17:19:24 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.493468990412378,"throughput_eps":0,"last_update":"2026-03-20T17:19:19.718812245Z"} +2026/03/20 17:19:24 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":88.46718964831828,"throughput_eps":0,"last_update":"2026-03-20T17:19:19.718703817Z"} +2026/03/20 17:19:24 ───────────────────────────────────────────────── +2026/03/20 17:19:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:24.575764378Z"} +2026/03/20 17:19:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":371.8,"last_update":"2026-03-20T17:19:24.576091386Z"} +2026/03/20 17:19:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:24.586885122Z"} +2026/03/20 17:19:29 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.493468990412378,"throughput_eps":0,"last_update":"2026-03-20T17:19:24.719481593Z"} +2026/03/20 17:19:29 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":88.46718964831828,"throughput_eps":0,"last_update":"2026-03-20T17:19:24.719314894Z"} +2026/03/20 17:19:29 ───────────────────────────────────────────────── +2026/03/20 17:19:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:34 [detection_layer] {"stage_name":"detection_layer","events_processed":62,"events_dropped":0,"avg_latency_ms":14.657121792329903,"throughput_eps":0,"last_update":"2026-03-20T17:19:29.718917254Z"} +2026/03/20 17:19:34 [transform_engine] {"stage_name":"transform_engine","events_processed":62,"events_dropped":0,"avg_latency_ms":93.62624151865462,"throughput_eps":0,"last_update":"2026-03-20T17:19:29.719027515Z"} +2026/03/20 17:19:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:29.575559707Z"} +2026/03/20 17:19:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":372.8,"last_update":"2026-03-20T17:19:29.575740133Z"} +2026/03/20 17:19:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:29.586691944Z"} +2026/03/20 17:19:34 ───────────────────────────────────────────────── +2026/03/20 17:19:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:34.575683711Z"} +2026/03/20 17:19:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":373.8,"last_update":"2026-03-20T17:19:34.576242594Z"} +2026/03/20 17:19:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":750,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:34.585559798Z"} +2026/03/20 17:19:39 [detection_layer] {"stage_name":"detection_layer","events_processed":62,"events_dropped":0,"avg_latency_ms":14.657121792329903,"throughput_eps":0,"last_update":"2026-03-20T17:19:34.718826797Z"} +2026/03/20 17:19:39 [transform_engine] {"stage_name":"transform_engine","events_processed":62,"events_dropped":0,"avg_latency_ms":93.62624151865462,"throughput_eps":0,"last_update":"2026-03-20T17:19:34.71872381Z"} +2026/03/20 17:19:39 ───────────────────────────────────────────────── +2026/03/20 17:19:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:39.57587107Z"} +2026/03/20 17:19:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":374.8,"last_update":"2026-03-20T17:19:39.576124727Z"} +2026/03/20 17:19:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":752,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:39.587022955Z"} +2026/03/20 17:19:44 [detection_layer] {"stage_name":"detection_layer","events_processed":62,"events_dropped":0,"avg_latency_ms":14.657121792329903,"throughput_eps":0,"last_update":"2026-03-20T17:19:39.719428183Z"} +2026/03/20 17:19:44 [transform_engine] {"stage_name":"transform_engine","events_processed":62,"events_dropped":0,"avg_latency_ms":93.62624151865462,"throughput_eps":0,"last_update":"2026-03-20T17:19:39.719317901Z"} +2026/03/20 17:19:44 ───────────────────────────────────────────────── +2026/03/20 17:19:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:44.575493188Z"} +2026/03/20 17:19:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":375.8,"last_update":"2026-03-20T17:19:44.576062621Z"} +2026/03/20 17:19:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:44.587134041Z"} +2026/03/20 17:19:49 [detection_layer] {"stage_name":"detection_layer","events_processed":62,"events_dropped":0,"avg_latency_ms":14.657121792329903,"throughput_eps":0,"last_update":"2026-03-20T17:19:44.719376216Z"} +2026/03/20 17:19:49 [transform_engine] {"stage_name":"transform_engine","events_processed":62,"events_dropped":0,"avg_latency_ms":93.62624151865462,"throughput_eps":0,"last_update":"2026-03-20T17:19:44.71947706Z"} +2026/03/20 17:19:49 ───────────────────────────────────────────────── +2026/03/20 17:19:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:54 [detection_layer] {"stage_name":"detection_layer","events_processed":62,"events_dropped":0,"avg_latency_ms":14.657121792329903,"throughput_eps":0,"last_update":"2026-03-20T17:19:49.71958845Z"} +2026/03/20 17:19:54 [transform_engine] {"stage_name":"transform_engine","events_processed":62,"events_dropped":0,"avg_latency_ms":93.62624151865462,"throughput_eps":0,"last_update":"2026-03-20T17:19:49.719566237Z"} +2026/03/20 17:19:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:49.575768482Z"} +2026/03/20 17:19:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":376.8,"last_update":"2026-03-20T17:19:49.576619584Z"} +2026/03/20 17:19:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:49.586302691Z"} +2026/03/20 17:19:54 ───────────────────────────────────────────────── +2026/03/20 17:19:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:59 [detection_layer] {"stage_name":"detection_layer","events_processed":62,"events_dropped":0,"avg_latency_ms":14.657121792329903,"throughput_eps":0,"last_update":"2026-03-20T17:19:54.719641972Z"} +2026/03/20 17:19:59 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":97.17956121492371,"throughput_eps":0,"last_update":"2026-03-20T17:19:54.83115881Z"} +2026/03/20 17:19:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:54.57598765Z"} +2026/03/20 17:19:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":377.6,"last_update":"2026-03-20T17:19:54.576012578Z"} +2026/03/20 17:19:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":758,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:54.586237073Z"} +2026/03/20 17:19:59 ───────────────────────────────────────────────── +2026/03/20 17:20:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:59.576058007Z"} +2026/03/20 17:20:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1893,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":378.6,"last_update":"2026-03-20T17:19:59.576013862Z"} +2026/03/20 17:20:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:59.586650057Z"} +2026/03/20 17:20:04 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":14.990703033863923,"throughput_eps":0,"last_update":"2026-03-20T17:19:59.719468962Z"} +2026/03/20 17:20:04 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":97.17956121492371,"throughput_eps":0,"last_update":"2026-03-20T17:19:59.719409008Z"} +2026/03/20 17:20:04 ───────────────────────────────────────────────── +2026/03/20 17:20:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:04.575501682Z"} +2026/03/20 17:20:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":379.8,"last_update":"2026-03-20T17:20:04.575679584Z"} +2026/03/20 17:20:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:04.596817586Z"} +2026/03/20 17:20:09 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":14.990703033863923,"throughput_eps":0,"last_update":"2026-03-20T17:20:04.7192104Z"} +2026/03/20 17:20:09 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":97.17956121492371,"throughput_eps":0,"last_update":"2026-03-20T17:20:04.7191841Z"} +2026/03/20 17:20:09 ───────────────────────────────────────────────── +2026/03/20 17:20:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":380.8,"last_update":"2026-03-20T17:20:09.576337221Z"} +2026/03/20 17:20:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:09.585342556Z"} +2026/03/20 17:20:14 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":14.990703033863923,"throughput_eps":0,"last_update":"2026-03-20T17:20:09.719667253Z"} +2026/03/20 17:20:14 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":97.17956121492371,"throughput_eps":0,"last_update":"2026-03-20T17:20:09.719782675Z"} +2026/03/20 17:20:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:09.575891686Z"} +2026/03/20 17:20:14 ───────────────────────────────────────────────── +2026/03/20 17:20:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:14.575507744Z"} +2026/03/20 17:20:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":381.8,"last_update":"2026-03-20T17:20:14.575571987Z"} +2026/03/20 17:20:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":766,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:14.58594141Z"} +2026/03/20 17:20:19 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":14.990703033863923,"throughput_eps":0,"last_update":"2026-03-20T17:20:14.719218389Z"} +2026/03/20 17:20:19 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":97.17956121492371,"throughput_eps":0,"last_update":"2026-03-20T17:20:14.71919857Z"} +2026/03/20 17:20:19 ───────────────────────────────────────────────── +2026/03/20 17:20:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:24 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":14.990703033863923,"throughput_eps":0,"last_update":"2026-03-20T17:20:19.719748302Z"} +2026/03/20 17:20:24 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":97.17956121492371,"throughput_eps":0,"last_update":"2026-03-20T17:20:19.718641991Z"} +2026/03/20 17:20:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:19.575759693Z"} +2026/03/20 17:20:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":382.8,"last_update":"2026-03-20T17:20:19.57616928Z"} +2026/03/20 17:20:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":768,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:19.585495742Z"} +2026/03/20 17:20:24 ───────────────────────────────────────────────── +2026/03/20 17:20:24 [ANOMALY] time=2026-03-20T17:20:24Z score=0.8711 method=SEAD details=MAD!:w=0.27,s=0.92 RRCF-fast:w=0.18,s=0.73 RRCF-mid:w=0.16,s=0.86 RRCF-slow!:w=0.16,s=0.89 COPOD!:w=0.22,s=0.92 +2026/03/20 17:20:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:29 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":90.82371897193897,"throughput_eps":0,"last_update":"2026-03-20T17:20:24.785057766Z"} +2026/03/20 17:20:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:24.575747817Z"} +2026/03/20 17:20:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":383.8,"last_update":"2026-03-20T17:20:24.576199915Z"} +2026/03/20 17:20:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":770,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:24.586366379Z"} +2026/03/20 17:20:29 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":14.990703033863923,"throughput_eps":0,"last_update":"2026-03-20T17:20:24.7197688Z"} +2026/03/20 17:20:29 ───────────────────────────────────────────────── +2026/03/20 17:20:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:34 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":90.82371897193897,"throughput_eps":0,"last_update":"2026-03-20T17:20:29.719776815Z"} +2026/03/20 17:20:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:29.575542792Z"} +2026/03/20 17:20:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":384.8,"last_update":"2026-03-20T17:20:29.575830344Z"} +2026/03/20 17:20:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:29.586369763Z"} +2026/03/20 17:20:34 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":15.34554502709114,"throughput_eps":0,"last_update":"2026-03-20T17:20:29.719729915Z"} +2026/03/20 17:20:34 ───────────────────────────────────────────────── +2026/03/20 17:20:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:34.575734377Z"} +2026/03/20 17:20:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":385.8,"last_update":"2026-03-20T17:20:34.57563159Z"} +2026/03/20 17:20:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:34.584633169Z"} +2026/03/20 17:20:39 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":15.34554502709114,"throughput_eps":0,"last_update":"2026-03-20T17:20:34.718871987Z"} +2026/03/20 17:20:39 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":90.82371897193897,"throughput_eps":0,"last_update":"2026-03-20T17:20:34.718900552Z"} +2026/03/20 17:20:39 ───────────────────────────────────────────────── +2026/03/20 17:20:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":386.8,"last_update":"2026-03-20T17:20:39.575454747Z"} +2026/03/20 17:20:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:39.58563056Z"} +2026/03/20 17:20:44 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":15.34554502709114,"throughput_eps":0,"last_update":"2026-03-20T17:20:39.71882769Z"} +2026/03/20 17:20:44 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":90.82371897193897,"throughput_eps":0,"last_update":"2026-03-20T17:20:39.718944223Z"} +2026/03/20 17:20:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:39.575528529Z"} +2026/03/20 17:20:44 ───────────────────────────────────────────────── +2026/03/20 17:20:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:44.575508203Z"} +2026/03/20 17:20:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":387.8,"last_update":"2026-03-20T17:20:44.575815914Z"} +2026/03/20 17:20:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:44.585672896Z"} +2026/03/20 17:20:49 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":15.34554502709114,"throughput_eps":0,"last_update":"2026-03-20T17:20:44.71878839Z"} +2026/03/20 17:20:49 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":90.82371897193897,"throughput_eps":0,"last_update":"2026-03-20T17:20:44.718780694Z"} +2026/03/20 17:20:49 ───────────────────────────────────────────────── +2026/03/20 17:20:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:49.576030359Z"} +2026/03/20 17:20:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":388.8,"last_update":"2026-03-20T17:20:49.576290368Z"} +2026/03/20 17:20:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":780,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:49.585542869Z"} +2026/03/20 17:20:54 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":15.34554502709114,"throughput_eps":0,"last_update":"2026-03-20T17:20:49.718826177Z"} +2026/03/20 17:20:54 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":90.82371897193897,"throughput_eps":0,"last_update":"2026-03-20T17:20:49.718779768Z"} +2026/03/20 17:20:54 ───────────────────────────────────────────────── +2026/03/20 17:20:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":389.8,"last_update":"2026-03-20T17:20:54.575986478Z"} +2026/03/20 17:20:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":782,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:54.586118257Z"} +2026/03/20 17:20:59 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":15.34554502709114,"throughput_eps":0,"last_update":"2026-03-20T17:20:54.719375765Z"} +2026/03/20 17:20:59 [transform_engine] {"stage_name":"transform_engine","events_processed":65,"events_dropped":0,"avg_latency_ms":95.09567057755119,"throughput_eps":0,"last_update":"2026-03-20T17:20:54.831613558Z"} +2026/03/20 17:20:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:54.575998853Z"} +2026/03/20 17:20:59 ───────────────────────────────────────────────── +2026/03/20 17:21:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:59.586700883Z"} +2026/03/20 17:21:04 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":15.436566821672914,"throughput_eps":0,"last_update":"2026-03-20T17:20:59.719051181Z"} +2026/03/20 17:21:04 [transform_engine] {"stage_name":"transform_engine","events_processed":65,"events_dropped":0,"avg_latency_ms":95.09567057755119,"throughput_eps":0,"last_update":"2026-03-20T17:20:59.719064567Z"} +2026/03/20 17:21:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:59.575886444Z"} +2026/03/20 17:21:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":390.8,"last_update":"2026-03-20T17:20:59.576230575Z"} +2026/03/20 17:21:04 ───────────────────────────────────────────────── +2026/03/20 17:21:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":391.8,"last_update":"2026-03-20T17:21:04.575836114Z"} +2026/03/20 17:21:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:04.585478584Z"} +2026/03/20 17:21:09 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":15.436566821672914,"throughput_eps":0,"last_update":"2026-03-20T17:21:04.719753056Z"} +2026/03/20 17:21:09 [transform_engine] {"stage_name":"transform_engine","events_processed":65,"events_dropped":0,"avg_latency_ms":95.09567057755119,"throughput_eps":0,"last_update":"2026-03-20T17:21:04.718625794Z"} +2026/03/20 17:21:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:04.575504538Z"} +2026/03/20 17:21:09 ───────────────────────────────────────────────── +2026/03/20 17:21:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:09.575927802Z"} +2026/03/20 17:21:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":392.8,"last_update":"2026-03-20T17:21:09.576261272Z"} +2026/03/20 17:21:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:09.585852924Z"} +2026/03/20 17:21:14 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":15.436566821672914,"throughput_eps":0,"last_update":"2026-03-20T17:21:09.719167255Z"} +2026/03/20 17:21:14 [transform_engine] {"stage_name":"transform_engine","events_processed":65,"events_dropped":0,"avg_latency_ms":95.09567057755119,"throughput_eps":0,"last_update":"2026-03-20T17:21:09.719182314Z"} +2026/03/20 17:21:14 ───────────────────────────────────────────────── +2026/03/20 17:21:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:14.575757104Z"} +2026/03/20 17:21:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":393.8,"last_update":"2026-03-20T17:21:14.575998328Z"} +2026/03/20 17:21:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:14.577060476Z"} +2026/03/20 17:21:19 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":15.436566821672914,"throughput_eps":0,"last_update":"2026-03-20T17:21:14.719186262Z"} +2026/03/20 17:21:19 [transform_engine] {"stage_name":"transform_engine","events_processed":65,"events_dropped":0,"avg_latency_ms":95.09567057755119,"throughput_eps":0,"last_update":"2026-03-20T17:21:14.719196843Z"} +2026/03/20 17:21:19 ───────────────────────────────────────────────── +2026/03/20 17:21:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:24 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":15.436566821672914,"throughput_eps":0,"last_update":"2026-03-20T17:21:19.71939483Z"} +2026/03/20 17:21:24 [transform_engine] {"stage_name":"transform_engine","events_processed":65,"events_dropped":0,"avg_latency_ms":95.09567057755119,"throughput_eps":0,"last_update":"2026-03-20T17:21:19.719409098Z"} +2026/03/20 17:21:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:19.575571034Z"} +2026/03/20 17:21:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":394.8,"last_update":"2026-03-20T17:21:19.575467506Z"} +2026/03/20 17:21:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:19.576490158Z"} +2026/03/20 17:21:24 ───────────────────────────────────────────────── +2026/03/20 17:21:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:24.576719931Z"} +2026/03/20 17:21:29 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":15.436566821672914,"throughput_eps":0,"last_update":"2026-03-20T17:21:24.719503202Z"} +2026/03/20 17:21:29 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":88.93729906204095,"throughput_eps":0,"last_update":"2026-03-20T17:21:24.783825469Z"} +2026/03/20 17:21:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:24.575579342Z"} +2026/03/20 17:21:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":395.8,"last_update":"2026-03-20T17:21:24.575693982Z"} +2026/03/20 17:21:29 ───────────────────────────────────────────────── +2026/03/20 17:21:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":396.8,"last_update":"2026-03-20T17:21:29.576028177Z"} +2026/03/20 17:21:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":796,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:29.587427393Z"} +2026/03/20 17:21:34 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":15.290875057338331,"throughput_eps":0,"last_update":"2026-03-20T17:21:29.719858697Z"} +2026/03/20 17:21:34 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":88.93729906204095,"throughput_eps":0,"last_update":"2026-03-20T17:21:29.718675623Z"} +2026/03/20 17:21:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:29.575817186Z"} +2026/03/20 17:21:34 ───────────────────────────────────────────────── +2026/03/20 17:21:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:34.575734403Z"} +2026/03/20 17:21:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":397.8,"last_update":"2026-03-20T17:21:34.575728182Z"} +2026/03/20 17:21:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:34.586533955Z"} +2026/03/20 17:21:39 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":15.290875057338331,"throughput_eps":0,"last_update":"2026-03-20T17:21:34.718803528Z"} +2026/03/20 17:21:39 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":88.93729906204095,"throughput_eps":0,"last_update":"2026-03-20T17:21:34.71874172Z"} +2026/03/20 17:21:39 ───────────────────────────────────────────────── +2026/03/20 17:21:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:39.575666044Z"} +2026/03/20 17:21:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":398.8,"last_update":"2026-03-20T17:21:39.576035604Z"} +2026/03/20 17:21:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":800,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:39.585767944Z"} +2026/03/20 17:21:44 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":15.290875057338331,"throughput_eps":0,"last_update":"2026-03-20T17:21:39.71904777Z"} +2026/03/20 17:21:44 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":88.93729906204095,"throughput_eps":0,"last_update":"2026-03-20T17:21:39.719019075Z"} +2026/03/20 17:21:44 ───────────────────────────────────────────────── +2026/03/20 17:21:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:44.576404844Z"} +2026/03/20 17:21:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":399.8,"last_update":"2026-03-20T17:21:44.576390777Z"} +2026/03/20 17:21:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":802,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:44.585743408Z"} +2026/03/20 17:21:49 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":15.290875057338331,"throughput_eps":0,"last_update":"2026-03-20T17:21:44.71899155Z"} +2026/03/20 17:21:49 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":88.93729906204095,"throughput_eps":0,"last_update":"2026-03-20T17:21:44.719038539Z"} +2026/03/20 17:21:49 ───────────────────────────────────────────────── +2026/03/20 17:21:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:49.575653165Z"} +2026/03/20 17:21:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":400.8,"last_update":"2026-03-20T17:21:49.576091838Z"} +2026/03/20 17:21:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:49.58644064Z"} +2026/03/20 17:21:54 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":15.290875057338331,"throughput_eps":0,"last_update":"2026-03-20T17:21:49.719850123Z"} +2026/03/20 17:21:54 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":88.93729906204095,"throughput_eps":0,"last_update":"2026-03-20T17:21:49.718680905Z"} +2026/03/20 17:21:54 ───────────────────────────────────────────────── +2026/03/20 17:21:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:54.586797868Z"} +2026/03/20 17:21:59 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":15.290875057338331,"throughput_eps":0,"last_update":"2026-03-20T17:21:54.719052245Z"} +2026/03/20 17:21:59 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":83.92129264963276,"throughput_eps":0,"last_update":"2026-03-20T17:21:54.782955328Z"} +2026/03/20 17:21:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:54.575496035Z"} +2026/03/20 17:21:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":401.8,"last_update":"2026-03-20T17:21:54.575835539Z"} +2026/03/20 17:21:59 ───────────────────────────────────────────────── +2026/03/20 17:22:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:59.575878928Z"} +2026/03/20 17:22:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":402.8,"last_update":"2026-03-20T17:21:59.576117741Z"} +2026/03/20 17:22:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:59.58592434Z"} +2026/03/20 17:22:04 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.231165845870665,"throughput_eps":0,"last_update":"2026-03-20T17:21:59.719294508Z"} +2026/03/20 17:22:04 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":83.92129264963276,"throughput_eps":0,"last_update":"2026-03-20T17:21:59.71930634Z"} +2026/03/20 17:22:04 ───────────────────────────────────────────────── +2026/03/20 17:22:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:04.576568765Z"} +2026/03/20 17:22:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":403.8,"last_update":"2026-03-20T17:22:04.575407862Z"} +2026/03/20 17:22:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:04.585331725Z"} +2026/03/20 17:22:09 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.231165845870665,"throughput_eps":0,"last_update":"2026-03-20T17:22:04.719734487Z"} +2026/03/20 17:22:09 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":83.92129264963276,"throughput_eps":0,"last_update":"2026-03-20T17:22:04.719749876Z"} +2026/03/20 17:22:09 ───────────────────────────────────────────────── +2026/03/20 17:22:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:14 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":83.92129264963276,"throughput_eps":0,"last_update":"2026-03-20T17:22:09.719210549Z"} +2026/03/20 17:22:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:09.575566342Z"} +2026/03/20 17:22:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":404.8,"last_update":"2026-03-20T17:22:09.575692441Z"} +2026/03/20 17:22:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":812,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:09.586834938Z"} +2026/03/20 17:22:14 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.231165845870665,"throughput_eps":0,"last_update":"2026-03-20T17:22:09.719198315Z"} +2026/03/20 17:22:14 ───────────────────────────────────────────────── +2026/03/20 17:22:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:19 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.231165845870665,"throughput_eps":0,"last_update":"2026-03-20T17:22:14.719111619Z"} +2026/03/20 17:22:19 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":83.92129264963276,"throughput_eps":0,"last_update":"2026-03-20T17:22:14.719119224Z"} +2026/03/20 17:22:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:14.57553788Z"} +2026/03/20 17:22:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":405.8,"last_update":"2026-03-20T17:22:14.575804205Z"} +2026/03/20 17:22:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:14.585893996Z"} +2026/03/20 17:22:19 ───────────────────────────────────────────────── +2026/03/20 17:22:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:24 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.231165845870665,"throughput_eps":0,"last_update":"2026-03-20T17:22:19.719654831Z"} +2026/03/20 17:22:24 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":83.92129264963276,"throughput_eps":0,"last_update":"2026-03-20T17:22:19.719662385Z"} +2026/03/20 17:22:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:19.575529387Z"} +2026/03/20 17:22:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":406.8,"last_update":"2026-03-20T17:22:19.575868481Z"} +2026/03/20 17:22:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":816,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:19.586444587Z"} +2026/03/20 17:22:24 ───────────────────────────────────────────────── +2026/03/20 17:22:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:24.575815089Z"} +2026/03/20 17:22:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":407.8,"last_update":"2026-03-20T17:22:24.57607373Z"} +2026/03/20 17:22:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":818,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:24.587007918Z"} +2026/03/20 17:22:29 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.231165845870665,"throughput_eps":0,"last_update":"2026-03-20T17:22:24.719419279Z"} +2026/03/20 17:22:29 [transform_engine] {"stage_name":"transform_engine","events_processed":68,"events_dropped":0,"avg_latency_ms":89.76489711970622,"throughput_eps":0,"last_update":"2026-03-20T17:22:24.832576046Z"} +2026/03/20 17:22:29 ───────────────────────────────────────────────── +2026/03/20 17:22:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:29.575508393Z"} +2026/03/20 17:22:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":408.8,"last_update":"2026-03-20T17:22:29.576085379Z"} +2026/03/20 17:22:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":820,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:29.585822936Z"} +2026/03/20 17:22:34 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":14.786109476696533,"throughput_eps":0,"last_update":"2026-03-20T17:22:29.719239519Z"} +2026/03/20 17:22:34 [transform_engine] {"stage_name":"transform_engine","events_processed":68,"events_dropped":0,"avg_latency_ms":89.76489711970622,"throughput_eps":0,"last_update":"2026-03-20T17:22:29.719255369Z"} +2026/03/20 17:22:34 ───────────────────────────────────────────────── +2026/03/20 17:22:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:34.586160762Z"} +2026/03/20 17:22:39 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":14.786109476696533,"throughput_eps":0,"last_update":"2026-03-20T17:22:34.719407315Z"} +2026/03/20 17:22:39 [transform_engine] {"stage_name":"transform_engine","events_processed":68,"events_dropped":0,"avg_latency_ms":89.76489711970622,"throughput_eps":0,"last_update":"2026-03-20T17:22:34.719420199Z"} +2026/03/20 17:22:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:34.575566866Z"} +2026/03/20 17:22:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":409.8,"last_update":"2026-03-20T17:22:34.575671384Z"} +2026/03/20 17:22:39 ───────────────────────────────────────────────── +2026/03/20 17:22:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:39.57574327Z"} +2026/03/20 17:22:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":410.8,"last_update":"2026-03-20T17:22:39.576104256Z"} +2026/03/20 17:22:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:39.586701009Z"} +2026/03/20 17:22:44 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":14.786109476696533,"throughput_eps":0,"last_update":"2026-03-20T17:22:39.718952135Z"} +2026/03/20 17:22:44 [transform_engine] {"stage_name":"transform_engine","events_processed":68,"events_dropped":0,"avg_latency_ms":89.76489711970622,"throughput_eps":0,"last_update":"2026-03-20T17:22:39.718960722Z"} +2026/03/20 17:22:44 ───────────────────────────────────────────────── +2026/03/20 17:22:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":411.8,"last_update":"2026-03-20T17:22:44.576212815Z"} +2026/03/20 17:22:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":826,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:44.585597627Z"} +2026/03/20 17:22:49 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":14.786109476696533,"throughput_eps":0,"last_update":"2026-03-20T17:22:44.719838246Z"} +2026/03/20 17:22:49 [transform_engine] {"stage_name":"transform_engine","events_processed":68,"events_dropped":0,"avg_latency_ms":89.76489711970622,"throughput_eps":0,"last_update":"2026-03-20T17:22:44.71875041Z"} +2026/03/20 17:22:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:44.575753362Z"} +2026/03/20 17:22:49 ───────────────────────────────────────────────── +2026/03/20 17:22:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":412.8,"last_update":"2026-03-20T17:22:49.5760293Z"} +2026/03/20 17:22:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:49.585322339Z"} +2026/03/20 17:22:54 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":14.786109476696533,"throughput_eps":0,"last_update":"2026-03-20T17:22:49.719688789Z"} +2026/03/20 17:22:54 [transform_engine] {"stage_name":"transform_engine","events_processed":68,"events_dropped":0,"avg_latency_ms":89.76489711970622,"throughput_eps":0,"last_update":"2026-03-20T17:22:49.719702134Z"} +2026/03/20 17:22:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:49.575503901Z"} +2026/03/20 17:22:54 ───────────────────────────────────────────────── +2026/03/20 17:22:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:54.575675814Z"} +2026/03/20 17:22:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":413.8,"last_update":"2026-03-20T17:22:54.575744263Z"} +2026/03/20 17:22:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":830,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:54.585666621Z"} +2026/03/20 17:22:59 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":14.786109476696533,"throughput_eps":0,"last_update":"2026-03-20T17:22:54.718956478Z"} +2026/03/20 17:22:59 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":84.95861309576497,"throughput_eps":0,"last_update":"2026-03-20T17:22:54.784706808Z"} +2026/03/20 17:22:59 ───────────────────────────────────────────────── +2026/03/20 17:23:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:59.575758872Z"} +2026/03/20 17:23:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":414.8,"last_update":"2026-03-20T17:22:59.576124236Z"} +2026/03/20 17:23:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":832,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:59.586559358Z"} +2026/03/20 17:23:04 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":13.660901381357228,"throughput_eps":0,"last_update":"2026-03-20T17:22:59.718779035Z"} +2026/03/20 17:23:04 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":84.95861309576497,"throughput_eps":0,"last_update":"2026-03-20T17:22:59.718765159Z"} +2026/03/20 17:23:04 ───────────────────────────────────────────────── +2026/03/20 17:23:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:04.575865701Z"} +2026/03/20 17:23:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":415.8,"last_update":"2026-03-20T17:23:04.576473967Z"} +2026/03/20 17:23:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:04.587073103Z"} +2026/03/20 17:23:09 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":13.660901381357228,"throughput_eps":0,"last_update":"2026-03-20T17:23:04.719479007Z"} +2026/03/20 17:23:09 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":84.95861309576497,"throughput_eps":0,"last_update":"2026-03-20T17:23:04.719491611Z"} +2026/03/20 17:23:09 ───────────────────────────────────────────────── +2026/03/20 17:23:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:09.575728036Z"} +2026/03/20 17:23:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":416.8,"last_update":"2026-03-20T17:23:09.576281077Z"} +2026/03/20 17:23:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:09.585116093Z"} +2026/03/20 17:23:14 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":13.660901381357228,"throughput_eps":0,"last_update":"2026-03-20T17:23:09.719441274Z"} +2026/03/20 17:23:14 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":84.95861309576497,"throughput_eps":0,"last_update":"2026-03-20T17:23:09.719449199Z"} +2026/03/20 17:23:14 ───────────────────────────────────────────────── +2026/03/20 17:23:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:14.575765071Z"} +2026/03/20 17:23:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":417.8,"last_update":"2026-03-20T17:23:14.576061064Z"} +2026/03/20 17:23:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:14.586227331Z"} +2026/03/20 17:23:19 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":13.660901381357228,"throughput_eps":0,"last_update":"2026-03-20T17:23:14.719472412Z"} +2026/03/20 17:23:19 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":84.95861309576497,"throughput_eps":0,"last_update":"2026-03-20T17:23:14.719484234Z"} +2026/03/20 17:23:19 ───────────────────────────────────────────────── +2026/03/20 17:23:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:19.575937638Z"} +2026/03/20 17:23:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":418.8,"last_update":"2026-03-20T17:23:19.576270169Z"} +2026/03/20 17:23:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:19.586425658Z"} +2026/03/20 17:23:24 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":13.660901381357228,"throughput_eps":0,"last_update":"2026-03-20T17:23:19.719843328Z"} +2026/03/20 17:23:24 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":84.95861309576497,"throughput_eps":0,"last_update":"2026-03-20T17:23:19.718661022Z"} +2026/03/20 17:23:24 ───────────────────────────────────────────────── +2026/03/20 17:23:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:29 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":13.660901381357228,"throughput_eps":0,"last_update":"2026-03-20T17:23:24.719656769Z"} +2026/03/20 17:23:29 [transform_engine] {"stage_name":"transform_engine","events_processed":70,"events_dropped":0,"avg_latency_ms":80.32152187661198,"throughput_eps":0,"last_update":"2026-03-20T17:23:24.781440716Z"} +2026/03/20 17:23:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:24.575513905Z"} +2026/03/20 17:23:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":419.8,"last_update":"2026-03-20T17:23:24.575919225Z"} +2026/03/20 17:23:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:24.586379765Z"} +2026/03/20 17:23:29 ───────────────────────────────────────────────── +2026/03/20 17:23:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:29.575962446Z"} +2026/03/20 17:23:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":420.8,"last_update":"2026-03-20T17:23:29.576275792Z"} +2026/03/20 17:23:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:29.585845831Z"} +2026/03/20 17:23:34 [detection_layer] {"stage_name":"detection_layer","events_processed":70,"events_dropped":0,"avg_latency_ms":14.036212705085784,"throughput_eps":0,"last_update":"2026-03-20T17:23:29.719143455Z"} +2026/03/20 17:23:34 [transform_engine] {"stage_name":"transform_engine","events_processed":70,"events_dropped":0,"avg_latency_ms":80.32152187661198,"throughput_eps":0,"last_update":"2026-03-20T17:23:29.719149927Z"} +2026/03/20 17:23:34 ───────────────────────────────────────────────── +2026/03/20 17:23:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:34.584662923Z"} +2026/03/20 17:23:39 [detection_layer] {"stage_name":"detection_layer","events_processed":70,"events_dropped":0,"avg_latency_ms":14.036212705085784,"throughput_eps":0,"last_update":"2026-03-20T17:23:34.719044369Z"} +2026/03/20 17:23:39 [transform_engine] {"stage_name":"transform_engine","events_processed":70,"events_dropped":0,"avg_latency_ms":80.32152187661198,"throughput_eps":0,"last_update":"2026-03-20T17:23:34.719056261Z"} +2026/03/20 17:23:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:34.575997281Z"} +2026/03/20 17:23:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":421.8,"last_update":"2026-03-20T17:23:34.576378115Z"} +2026/03/20 17:23:39 ───────────────────────────────────────────────── +2026/03/20 17:23:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:44 [transform_engine] {"stage_name":"transform_engine","events_processed":70,"events_dropped":0,"avg_latency_ms":80.32152187661198,"throughput_eps":0,"last_update":"2026-03-20T17:23:39.718706077Z"} +2026/03/20 17:23:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:39.575737056Z"} +2026/03/20 17:23:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":422.8,"last_update":"2026-03-20T17:23:39.576043499Z"} +2026/03/20 17:23:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":848,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:39.58757589Z"} +2026/03/20 17:23:44 [detection_layer] {"stage_name":"detection_layer","events_processed":70,"events_dropped":0,"avg_latency_ms":14.036212705085784,"throughput_eps":0,"last_update":"2026-03-20T17:23:39.719800838Z"} +2026/03/20 17:23:44 ───────────────────────────────────────────────── +2026/03/20 17:23:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":423.8,"last_update":"2026-03-20T17:23:44.576050334Z"} +2026/03/20 17:23:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:44.586367698Z"} +2026/03/20 17:23:49 [detection_layer] {"stage_name":"detection_layer","events_processed":70,"events_dropped":0,"avg_latency_ms":14.036212705085784,"throughput_eps":0,"last_update":"2026-03-20T17:23:44.719596956Z"} +2026/03/20 17:23:49 [transform_engine] {"stage_name":"transform_engine","events_processed":70,"events_dropped":0,"avg_latency_ms":80.32152187661198,"throughput_eps":0,"last_update":"2026-03-20T17:23:44.719604229Z"} +2026/03/20 17:23:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:44.575751205Z"} +2026/03/20 17:23:49 ───────────────────────────────────────────────── +2026/03/20 17:23:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:49.575770233Z"} +2026/03/20 17:23:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":424.8,"last_update":"2026-03-20T17:23:49.576203125Z"} +2026/03/20 17:23:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:49.585390712Z"} +2026/03/20 17:23:54 [detection_layer] {"stage_name":"detection_layer","events_processed":70,"events_dropped":0,"avg_latency_ms":14.036212705085784,"throughput_eps":0,"last_update":"2026-03-20T17:23:49.719681819Z"} +2026/03/20 17:23:54 [transform_engine] {"stage_name":"transform_engine","events_processed":70,"events_dropped":0,"avg_latency_ms":80.32152187661198,"throughput_eps":0,"last_update":"2026-03-20T17:23:49.719688082Z"} +2026/03/20 17:23:54 ───────────────────────────────────────────────── +2026/03/20 17:23:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:54.585386885Z"} +2026/03/20 17:23:59 [detection_layer] {"stage_name":"detection_layer","events_processed":70,"events_dropped":0,"avg_latency_ms":14.036212705085784,"throughput_eps":0,"last_update":"2026-03-20T17:23:54.719583592Z"} +2026/03/20 17:23:59 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":77.28137710128959,"throughput_eps":0,"last_update":"2026-03-20T17:23:54.784716223Z"} +2026/03/20 17:23:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:54.576014063Z"} +2026/03/20 17:23:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":425.8,"last_update":"2026-03-20T17:23:54.576319664Z"} +2026/03/20 17:23:59 ───────────────────────────────────────────────── +2026/03/20 17:24:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:59.575812449Z"} +2026/03/20 17:24:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":426.8,"last_update":"2026-03-20T17:23:59.576211347Z"} +2026/03/20 17:24:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:59.585618937Z"} +2026/03/20 17:24:04 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.269265564068627,"throughput_eps":0,"last_update":"2026-03-20T17:23:59.718780024Z"} +2026/03/20 17:24:04 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":77.28137710128959,"throughput_eps":0,"last_update":"2026-03-20T17:23:59.718710682Z"} +2026/03/20 17:24:04 ───────────────────────────────────────────────── +2026/03/20 17:24:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:04.57598947Z"} +2026/03/20 17:24:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":427.8,"last_update":"2026-03-20T17:24:04.576498968Z"} +2026/03/20 17:24:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:04.584506416Z"} +2026/03/20 17:24:09 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.269265564068627,"throughput_eps":0,"last_update":"2026-03-20T17:24:04.719840776Z"} +2026/03/20 17:24:09 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":77.28137710128959,"throughput_eps":0,"last_update":"2026-03-20T17:24:04.71867551Z"} +2026/03/20 17:24:09 ───────────────────────────────────────────────── +2026/03/20 17:24:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:09.575548268Z"} +2026/03/20 17:24:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":428.8,"last_update":"2026-03-20T17:24:09.575529293Z"} +2026/03/20 17:24:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":860,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:09.585518811Z"} +2026/03/20 17:24:14 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.269265564068627,"throughput_eps":0,"last_update":"2026-03-20T17:24:09.71882852Z"} +2026/03/20 17:24:14 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":77.28137710128959,"throughput_eps":0,"last_update":"2026-03-20T17:24:09.718737708Z"} +2026/03/20 17:24:14 ───────────────────────────────────────────────── +2026/03/20 17:24:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":429.8,"last_update":"2026-03-20T17:24:14.575676692Z"} +2026/03/20 17:24:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":862,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:14.585948388Z"} +2026/03/20 17:24:19 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.269265564068627,"throughput_eps":0,"last_update":"2026-03-20T17:24:14.719258939Z"} +2026/03/20 17:24:19 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":77.28137710128959,"throughput_eps":0,"last_update":"2026-03-20T17:24:14.719265642Z"} +2026/03/20 17:24:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:14.575521186Z"} +2026/03/20 17:24:19 ───────────────────────────────────────────────── +2026/03/20 17:24:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:24 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.269265564068627,"throughput_eps":0,"last_update":"2026-03-20T17:24:19.719533143Z"} +2026/03/20 17:24:24 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":77.28137710128959,"throughput_eps":0,"last_update":"2026-03-20T17:24:19.719545416Z"} +2026/03/20 17:24:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:19.575851476Z"} +2026/03/20 17:24:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":430.8,"last_update":"2026-03-20T17:24:19.576312293Z"} +2026/03/20 17:24:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:19.586209348Z"} +2026/03/20 17:24:24 ───────────────────────────────────────────────── +2026/03/20 17:24:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":431.8,"last_update":"2026-03-20T17:24:24.576374739Z"} +2026/03/20 17:24:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:24.586040966Z"} +2026/03/20 17:24:29 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.269265564068627,"throughput_eps":0,"last_update":"2026-03-20T17:24:24.719239492Z"} +2026/03/20 17:24:29 [transform_engine] {"stage_name":"transform_engine","events_processed":72,"events_dropped":0,"avg_latency_ms":74.61178508103168,"throughput_eps":0,"last_update":"2026-03-20T17:24:24.783188739Z"} +2026/03/20 17:24:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:24.576053387Z"} +2026/03/20 17:24:29 ───────────────────────────────────────────────── +2026/03/20 17:24:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":868,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:29.584794973Z"} +2026/03/20 17:24:34 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":13.326357251254903,"throughput_eps":0,"last_update":"2026-03-20T17:24:29.719065167Z"} +2026/03/20 17:24:34 [transform_engine] {"stage_name":"transform_engine","events_processed":72,"events_dropped":0,"avg_latency_ms":74.61178508103168,"throughput_eps":0,"last_update":"2026-03-20T17:24:29.719172742Z"} +2026/03/20 17:24:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:29.575971217Z"} +2026/03/20 17:24:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":432.8,"last_update":"2026-03-20T17:24:29.576319639Z"} +2026/03/20 17:24:34 ───────────────────────────────────────────────── +2026/03/20 17:24:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:39 [transform_engine] {"stage_name":"transform_engine","events_processed":72,"events_dropped":0,"avg_latency_ms":74.61178508103168,"throughput_eps":0,"last_update":"2026-03-20T17:24:34.718990012Z"} +2026/03/20 17:24:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:34.575966136Z"} +2026/03/20 17:24:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":433.8,"last_update":"2026-03-20T17:24:34.576311332Z"} +2026/03/20 17:24:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:34.585693021Z"} +2026/03/20 17:24:39 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":13.326357251254903,"throughput_eps":0,"last_update":"2026-03-20T17:24:34.718883439Z"} +2026/03/20 17:24:39 ───────────────────────────────────────────────── +2026/03/20 17:24:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:44 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":13.326357251254903,"throughput_eps":0,"last_update":"2026-03-20T17:24:39.719108027Z"} +2026/03/20 17:24:44 [transform_engine] {"stage_name":"transform_engine","events_processed":72,"events_dropped":0,"avg_latency_ms":74.61178508103168,"throughput_eps":0,"last_update":"2026-03-20T17:24:39.719001645Z"} +2026/03/20 17:24:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:39.575586255Z"} +2026/03/20 17:24:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":434.8,"last_update":"2026-03-20T17:24:39.575905382Z"} +2026/03/20 17:24:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:39.585666824Z"} +2026/03/20 17:24:44 ───────────────────────────────────────────────── +2026/03/20 17:24:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:44.576149035Z"} +2026/03/20 17:24:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":435.8,"last_update":"2026-03-20T17:24:44.576752574Z"} +2026/03/20 17:24:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:44.576257622Z"} +2026/03/20 17:24:49 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":13.326357251254903,"throughput_eps":0,"last_update":"2026-03-20T17:24:44.719116773Z"} +2026/03/20 17:24:49 [transform_engine] {"stage_name":"transform_engine","events_processed":72,"events_dropped":0,"avg_latency_ms":74.61178508103168,"throughput_eps":0,"last_update":"2026-03-20T17:24:44.719093069Z"} +2026/03/20 17:24:49 ───────────────────────────────────────────────── +2026/03/20 17:24:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:54 [transform_engine] {"stage_name":"transform_engine","events_processed":72,"events_dropped":0,"avg_latency_ms":74.61178508103168,"throughput_eps":0,"last_update":"2026-03-20T17:24:49.718787847Z"} +2026/03/20 17:24:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:49.575652971Z"} +2026/03/20 17:24:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":436.8,"last_update":"2026-03-20T17:24:49.575598919Z"} +2026/03/20 17:24:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":876,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:49.586542103Z"} +2026/03/20 17:24:54 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":13.326357251254903,"throughput_eps":0,"last_update":"2026-03-20T17:24:49.718842502Z"} +2026/03/20 17:24:54 ───────────────────────────────────────────────── +2026/03/20 17:24:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":437.8,"last_update":"2026-03-20T17:24:54.576056895Z"} +2026/03/20 17:24:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:54.587592538Z"} +2026/03/20 17:24:59 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":13.326357251254903,"throughput_eps":0,"last_update":"2026-03-20T17:24:54.71880264Z"} +2026/03/20 17:24:59 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":82.03675446482535,"throughput_eps":0,"last_update":"2026-03-20T17:24:54.830512341Z"} +2026/03/20 17:24:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:54.575662385Z"} +2026/03/20 17:24:59 ───────────────────────────────────────────────── +2026/03/20 17:25:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:59.575497825Z"} +2026/03/20 17:25:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":438.8,"last_update":"2026-03-20T17:24:59.575722762Z"} +2026/03/20 17:25:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:59.586027524Z"} +2026/03/20 17:25:04 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.181882001003924,"throughput_eps":0,"last_update":"2026-03-20T17:24:59.719440316Z"} +2026/03/20 17:25:04 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":82.03675446482535,"throughput_eps":0,"last_update":"2026-03-20T17:24:59.719479691Z"} +2026/03/20 17:25:04 ───────────────────────────────────────────────── +2026/03/20 17:25:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:04.575922921Z"} +2026/03/20 17:25:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":439.8,"last_update":"2026-03-20T17:25:04.576543912Z"} +2026/03/20 17:25:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:04.585042989Z"} +2026/03/20 17:25:09 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.181882001003924,"throughput_eps":0,"last_update":"2026-03-20T17:25:04.719404103Z"} +2026/03/20 17:25:09 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":82.03675446482535,"throughput_eps":0,"last_update":"2026-03-20T17:25:04.719436093Z"} +2026/03/20 17:25:09 ───────────────────────────────────────────────── +2026/03/20 17:25:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:09.576013895Z"} +2026/03/20 17:25:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":440.8,"last_update":"2026-03-20T17:25:09.576414248Z"} +2026/03/20 17:25:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:09.586364988Z"} +2026/03/20 17:25:14 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.181882001003924,"throughput_eps":0,"last_update":"2026-03-20T17:25:09.719665371Z"} +2026/03/20 17:25:14 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":82.03675446482535,"throughput_eps":0,"last_update":"2026-03-20T17:25:09.71968105Z"} +2026/03/20 17:25:14 ───────────────────────────────────────────────── +2026/03/20 17:25:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:14.575980952Z"} +2026/03/20 17:25:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":441.8,"last_update":"2026-03-20T17:25:14.576735889Z"} +2026/03/20 17:25:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":886,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:14.586013931Z"} +2026/03/20 17:25:19 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.181882001003924,"throughput_eps":0,"last_update":"2026-03-20T17:25:14.719456201Z"} +2026/03/20 17:25:19 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":82.03675446482535,"throughput_eps":0,"last_update":"2026-03-20T17:25:14.719412989Z"} +2026/03/20 17:25:19 ───────────────────────────────────────────────── +2026/03/20 17:25:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:24 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.181882001003924,"throughput_eps":0,"last_update":"2026-03-20T17:25:19.719833649Z"} +2026/03/20 17:25:24 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":82.03675446482535,"throughput_eps":0,"last_update":"2026-03-20T17:25:19.718674453Z"} +2026/03/20 17:25:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:19.575971356Z"} +2026/03/20 17:25:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":442.8,"last_update":"2026-03-20T17:25:19.576224988Z"} +2026/03/20 17:25:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:19.587418898Z"} +2026/03/20 17:25:24 ───────────────────────────────────────────────── +2026/03/20 17:25:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:24.575982174Z"} +2026/03/20 17:25:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":443.8,"last_update":"2026-03-20T17:25:24.576340416Z"} +2026/03/20 17:25:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:24.586092673Z"} +2026/03/20 17:25:29 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.181882001003924,"throughput_eps":0,"last_update":"2026-03-20T17:25:24.719229495Z"} +2026/03/20 17:25:29 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":82.03675446482535,"throughput_eps":0,"last_update":"2026-03-20T17:25:24.719283226Z"} +2026/03/20 17:25:29 ───────────────────────────────────────────────── +2026/03/20 17:25:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":892,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:29.58608652Z"} +2026/03/20 17:25:34 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":14.62459240080314,"throughput_eps":0,"last_update":"2026-03-20T17:25:29.719367253Z"} +2026/03/20 17:25:34 [transform_engine] {"stage_name":"transform_engine","events_processed":74,"events_dropped":0,"avg_latency_ms":88.08472097186028,"throughput_eps":0,"last_update":"2026-03-20T17:25:29.719380538Z"} +2026/03/20 17:25:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:29.57553492Z"} +2026/03/20 17:25:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":444.8,"last_update":"2026-03-20T17:25:29.575458715Z"} +2026/03/20 17:25:34 ───────────────────────────────────────────────── +2026/03/20 17:25:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:34.586604728Z"} +2026/03/20 17:25:39 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":14.62459240080314,"throughput_eps":0,"last_update":"2026-03-20T17:25:34.718834347Z"} +2026/03/20 17:25:39 [transform_engine] {"stage_name":"transform_engine","events_processed":74,"events_dropped":0,"avg_latency_ms":88.08472097186028,"throughput_eps":0,"last_update":"2026-03-20T17:25:34.718867049Z"} +2026/03/20 17:25:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:34.576056534Z"} +2026/03/20 17:25:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":445.8,"last_update":"2026-03-20T17:25:34.576212381Z"} +2026/03/20 17:25:39 ───────────────────────────────────────────────── +2026/03/20 17:25:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":896,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:39.587181869Z"} +2026/03/20 17:25:44 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":14.62459240080314,"throughput_eps":0,"last_update":"2026-03-20T17:25:39.719642304Z"} +2026/03/20 17:25:44 [transform_engine] {"stage_name":"transform_engine","events_processed":74,"events_dropped":0,"avg_latency_ms":88.08472097186028,"throughput_eps":0,"last_update":"2026-03-20T17:25:39.719620311Z"} +2026/03/20 17:25:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:39.575711177Z"} +2026/03/20 17:25:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":446.8,"last_update":"2026-03-20T17:25:39.57611727Z"} +2026/03/20 17:25:44 ───────────────────────────────────────────────── +2026/03/20 17:25:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:49 [transform_engine] {"stage_name":"transform_engine","events_processed":74,"events_dropped":0,"avg_latency_ms":88.08472097186028,"throughput_eps":0,"last_update":"2026-03-20T17:25:44.719480085Z"} +2026/03/20 17:25:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:44.575871254Z"} +2026/03/20 17:25:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":447.8,"last_update":"2026-03-20T17:25:44.576082637Z"} +2026/03/20 17:25:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":898,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:44.588268944Z"} +2026/03/20 17:25:49 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":14.62459240080314,"throughput_eps":0,"last_update":"2026-03-20T17:25:44.7195253Z"} +2026/03/20 17:25:49 ───────────────────────────────────────────────── +2026/03/20 17:25:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:49.575955554Z"} +2026/03/20 17:25:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":448.8,"last_update":"2026-03-20T17:25:49.57633201Z"} +2026/03/20 17:25:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":900,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:49.585704941Z"} +2026/03/20 17:25:54 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":14.62459240080314,"throughput_eps":0,"last_update":"2026-03-20T17:25:49.719074288Z"} +2026/03/20 17:25:54 [transform_engine] {"stage_name":"transform_engine","events_processed":74,"events_dropped":0,"avg_latency_ms":88.08472097186028,"throughput_eps":0,"last_update":"2026-03-20T17:25:49.719022039Z"} +2026/03/20 17:25:54 ───────────────────────────────────────────────── +2026/03/20 17:25:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:59 [transform_engine] {"stage_name":"transform_engine","events_processed":75,"events_dropped":0,"avg_latency_ms":93.18217817748823,"throughput_eps":0,"last_update":"2026-03-20T17:25:54.832909683Z"} +2026/03/20 17:25:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:54.575729573Z"} +2026/03/20 17:25:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":449.8,"last_update":"2026-03-20T17:25:54.576281083Z"} +2026/03/20 17:25:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:54.585097534Z"} +2026/03/20 17:25:59 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":14.62459240080314,"throughput_eps":0,"last_update":"2026-03-20T17:25:54.719435392Z"} +2026/03/20 17:25:59 ───────────────────────────────────────────────── +2026/03/20 17:26:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:04 [transform_engine] {"stage_name":"transform_engine","events_processed":75,"events_dropped":0,"avg_latency_ms":93.18217817748823,"throughput_eps":0,"last_update":"2026-03-20T17:25:59.718635117Z"} +2026/03/20 17:26:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:59.576250877Z"} +2026/03/20 17:26:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":450.8,"last_update":"2026-03-20T17:25:59.576237853Z"} +2026/03/20 17:26:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:59.585402278Z"} +2026/03/20 17:26:04 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":15.418985720642512,"throughput_eps":0,"last_update":"2026-03-20T17:25:59.719908733Z"} +2026/03/20 17:26:04 ───────────────────────────────────────────────── +2026/03/20 17:26:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":451.8,"last_update":"2026-03-20T17:26:04.576066697Z"} +2026/03/20 17:26:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:04.577091389Z"} +2026/03/20 17:26:09 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":15.418985720642512,"throughput_eps":0,"last_update":"2026-03-20T17:26:04.719164612Z"} +2026/03/20 17:26:09 [transform_engine] {"stage_name":"transform_engine","events_processed":75,"events_dropped":0,"avg_latency_ms":93.18217817748823,"throughput_eps":0,"last_update":"2026-03-20T17:26:04.719275833Z"} +2026/03/20 17:26:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:09.575567791Z"} +2026/03/20 17:26:09 ───────────────────────────────────────────────── +2026/03/20 17:26:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:09.575567791Z"} +2026/03/20 17:26:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":452.8,"last_update":"2026-03-20T17:26:09.576023769Z"} +2026/03/20 17:26:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":908,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:09.586090395Z"} +2026/03/20 17:26:14 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":15.418985720642512,"throughput_eps":0,"last_update":"2026-03-20T17:26:09.719457881Z"} +2026/03/20 17:26:14 [transform_engine] {"stage_name":"transform_engine","events_processed":75,"events_dropped":0,"avg_latency_ms":93.18217817748823,"throughput_eps":0,"last_update":"2026-03-20T17:26:09.719367339Z"} +2026/03/20 17:26:14 ───────────────────────────────────────────────── +2026/03/20 17:26:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:19 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":15.418985720642512,"throughput_eps":0,"last_update":"2026-03-20T17:26:14.719826651Z"} +2026/03/20 17:26:19 [transform_engine] {"stage_name":"transform_engine","events_processed":75,"events_dropped":0,"avg_latency_ms":93.18217817748823,"throughput_eps":0,"last_update":"2026-03-20T17:26:14.719724276Z"} +2026/03/20 17:26:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:14.57599775Z"} +2026/03/20 17:26:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":453.8,"last_update":"2026-03-20T17:26:14.576691831Z"} +2026/03/20 17:26:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:14.585343754Z"} +2026/03/20 17:26:19 ───────────────────────────────────────────────── +2026/03/20 17:26:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:24 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":15.418985720642512,"throughput_eps":0,"last_update":"2026-03-20T17:26:19.719165248Z"} +2026/03/20 17:26:24 [transform_engine] {"stage_name":"transform_engine","events_processed":75,"events_dropped":0,"avg_latency_ms":93.18217817748823,"throughput_eps":0,"last_update":"2026-03-20T17:26:19.719189594Z"} +2026/03/20 17:26:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:19.575811346Z"} +2026/03/20 17:26:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":454.8,"last_update":"2026-03-20T17:26:19.576121296Z"} +2026/03/20 17:26:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":912,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:19.587764027Z"} +2026/03/20 17:26:24 ───────────────────────────────────────────────── +2026/03/20 17:26:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:24.575517603Z"} +2026/03/20 17:26:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":455.8,"last_update":"2026-03-20T17:26:24.57559507Z"} +2026/03/20 17:26:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:24.586445394Z"} +2026/03/20 17:26:29 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":15.418985720642512,"throughput_eps":0,"last_update":"2026-03-20T17:26:24.719918396Z"} +2026/03/20 17:26:29 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":87.31412974199058,"throughput_eps":0,"last_update":"2026-03-20T17:26:24.782498368Z"} +2026/03/20 17:26:29 ───────────────────────────────────────────────── +2026/03/20 17:26:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:34 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.746548176514011,"throughput_eps":0,"last_update":"2026-03-20T17:26:29.719384282Z"} +2026/03/20 17:26:34 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":87.31412974199058,"throughput_eps":0,"last_update":"2026-03-20T17:26:29.719406265Z"} +2026/03/20 17:26:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:29.575816741Z"} +2026/03/20 17:26:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":456.8,"last_update":"2026-03-20T17:26:29.576254795Z"} +2026/03/20 17:26:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:29.585119756Z"} +2026/03/20 17:26:34 ───────────────────────────────────────────────── +2026/03/20 17:26:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:39 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.746548176514011,"throughput_eps":0,"last_update":"2026-03-20T17:26:34.719702195Z"} +2026/03/20 17:26:39 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":87.31412974199058,"throughput_eps":0,"last_update":"2026-03-20T17:26:34.71967888Z"} +2026/03/20 17:26:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:34.57595218Z"} +2026/03/20 17:26:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":457.8,"last_update":"2026-03-20T17:26:34.576201324Z"} +2026/03/20 17:26:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":918,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:34.586330436Z"} +2026/03/20 17:26:39 ───────────────────────────────────────────────── +2026/03/20 17:26:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":458.8,"last_update":"2026-03-20T17:26:39.575703618Z"} +2026/03/20 17:26:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":920,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:39.585950926Z"} +2026/03/20 17:26:44 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.746548176514011,"throughput_eps":0,"last_update":"2026-03-20T17:26:39.719400528Z"} +2026/03/20 17:26:44 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":87.31412974199058,"throughput_eps":0,"last_update":"2026-03-20T17:26:39.719445173Z"} +2026/03/20 17:26:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:39.575771628Z"} +2026/03/20 17:26:44 ───────────────────────────────────────────────── +2026/03/20 17:26:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:49 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.746548176514011,"throughput_eps":0,"last_update":"2026-03-20T17:26:44.718791719Z"} +2026/03/20 17:26:49 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":87.31412974199058,"throughput_eps":0,"last_update":"2026-03-20T17:26:44.718753657Z"} +2026/03/20 17:26:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:44.576109648Z"} +2026/03/20 17:26:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":459.8,"last_update":"2026-03-20T17:26:44.5767512Z"} +2026/03/20 17:26:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:44.586522181Z"} +2026/03/20 17:26:49 ───────────────────────────────────────────────── +2026/03/20 17:26:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:54 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.746548176514011,"throughput_eps":0,"last_update":"2026-03-20T17:26:49.719403335Z"} +2026/03/20 17:26:54 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":87.31412974199058,"throughput_eps":0,"last_update":"2026-03-20T17:26:49.719535166Z"} +2026/03/20 17:26:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:49.575518826Z"} +2026/03/20 17:26:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":460.8,"last_update":"2026-03-20T17:26:49.575816924Z"} +2026/03/20 17:26:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:49.586092047Z"} +2026/03/20 17:26:54 ───────────────────────────────────────────────── +2026/03/20 17:26:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:59 [transform_engine] {"stage_name":"transform_engine","events_processed":77,"events_dropped":0,"avg_latency_ms":82.51719419359246,"throughput_eps":0,"last_update":"2026-03-20T17:26:54.781974315Z"} +2026/03/20 17:26:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:54.575754385Z"} +2026/03/20 17:26:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":461.8,"last_update":"2026-03-20T17:26:54.576159507Z"} +2026/03/20 17:26:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:54.58539516Z"} +2026/03/20 17:26:59 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.746548176514011,"throughput_eps":0,"last_update":"2026-03-20T17:26:54.720557379Z"} +2026/03/20 17:26:59 ───────────────────────────────────────────────── +2026/03/20 17:27:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":462.8,"last_update":"2026-03-20T17:26:59.575461003Z"} +2026/03/20 17:27:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:59.585919397Z"} +2026/03/20 17:27:04 [detection_layer] {"stage_name":"detection_layer","events_processed":77,"events_dropped":0,"avg_latency_ms":16.03436954121121,"throughput_eps":0,"last_update":"2026-03-20T17:26:59.719146272Z"} +2026/03/20 17:27:04 [transform_engine] {"stage_name":"transform_engine","events_processed":77,"events_dropped":0,"avg_latency_ms":82.51719419359246,"throughput_eps":0,"last_update":"2026-03-20T17:26:59.719115874Z"} +2026/03/20 17:27:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:59.575532899Z"} +2026/03/20 17:27:04 ───────────────────────────────────────────────── +2026/03/20 17:27:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":930,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:04.585144352Z"} +2026/03/20 17:27:09 [detection_layer] {"stage_name":"detection_layer","events_processed":77,"events_dropped":0,"avg_latency_ms":16.03436954121121,"throughput_eps":0,"last_update":"2026-03-20T17:27:04.719594631Z"} +2026/03/20 17:27:09 [transform_engine] {"stage_name":"transform_engine","events_processed":77,"events_dropped":0,"avg_latency_ms":82.51719419359246,"throughput_eps":0,"last_update":"2026-03-20T17:27:04.719632023Z"} +2026/03/20 17:27:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:04.575507783Z"} +2026/03/20 17:27:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":463.8,"last_update":"2026-03-20T17:27:04.575854212Z"} +2026/03/20 17:27:09 ───────────────────────────────────────────────── +2026/03/20 17:27:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":464.8,"last_update":"2026-03-20T17:27:09.575736175Z"} +2026/03/20 17:27:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:09.585256674Z"} +2026/03/20 17:27:14 [detection_layer] {"stage_name":"detection_layer","events_processed":77,"events_dropped":0,"avg_latency_ms":16.03436954121121,"throughput_eps":0,"last_update":"2026-03-20T17:27:09.719558485Z"} +2026/03/20 17:27:14 [transform_engine] {"stage_name":"transform_engine","events_processed":77,"events_dropped":0,"avg_latency_ms":82.51719419359246,"throughput_eps":0,"last_update":"2026-03-20T17:27:09.719611657Z"} +2026/03/20 17:27:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:09.575519863Z"} +2026/03/20 17:27:14 ───────────────────────────────────────────────── +2026/03/20 17:27:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:19 [transform_engine] {"stage_name":"transform_engine","events_processed":77,"events_dropped":0,"avg_latency_ms":82.51719419359246,"throughput_eps":0,"last_update":"2026-03-20T17:27:14.719431088Z"} +2026/03/20 17:27:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:14.575821719Z"} +2026/03/20 17:27:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":465.8,"last_update":"2026-03-20T17:27:14.576203527Z"} +2026/03/20 17:27:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:14.586037745Z"} +2026/03/20 17:27:19 [detection_layer] {"stage_name":"detection_layer","events_processed":77,"events_dropped":0,"avg_latency_ms":16.03436954121121,"throughput_eps":0,"last_update":"2026-03-20T17:27:14.719401532Z"} +2026/03/20 17:27:19 ───────────────────────────────────────────────── +2026/03/20 17:27:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:24 [detection_layer] {"stage_name":"detection_layer","events_processed":77,"events_dropped":0,"avg_latency_ms":16.03436954121121,"throughput_eps":0,"last_update":"2026-03-20T17:27:19.719395786Z"} +2026/03/20 17:27:24 [transform_engine] {"stage_name":"transform_engine","events_processed":77,"events_dropped":0,"avg_latency_ms":82.51719419359246,"throughput_eps":0,"last_update":"2026-03-20T17:27:19.719416605Z"} +2026/03/20 17:27:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:19.575526907Z"} +2026/03/20 17:27:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":466.8,"last_update":"2026-03-20T17:27:19.575800609Z"} +2026/03/20 17:27:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:19.586117348Z"} +2026/03/20 17:27:24 ───────────────────────────────────────────────── +2026/03/20 17:27:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:24.575501923Z"} +2026/03/20 17:27:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":467.8,"last_update":"2026-03-20T17:27:24.575729025Z"} +2026/03/20 17:27:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:24.586522133Z"} +2026/03/20 17:27:29 [detection_layer] {"stage_name":"detection_layer","events_processed":77,"events_dropped":0,"avg_latency_ms":16.03436954121121,"throughput_eps":0,"last_update":"2026-03-20T17:27:24.719823699Z"} +2026/03/20 17:27:29 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":76.00469155487397,"throughput_eps":0,"last_update":"2026-03-20T17:27:24.768664085Z"} +2026/03/20 17:27:29 ───────────────────────────────────────────────── +2026/03/20 17:27:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:29.576429092Z"} +2026/03/20 17:27:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":468.8,"last_update":"2026-03-20T17:27:29.576515276Z"} +2026/03/20 17:27:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":940,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:29.585403973Z"} +2026/03/20 17:27:34 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":16.54737963296897,"throughput_eps":0,"last_update":"2026-03-20T17:27:29.719812322Z"} +2026/03/20 17:27:34 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":76.00469155487397,"throughput_eps":0,"last_update":"2026-03-20T17:27:29.719697934Z"} +2026/03/20 17:27:34 ───────────────────────────────────────────────── +2026/03/20 17:27:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":469.8,"last_update":"2026-03-20T17:27:34.576069431Z"} +2026/03/20 17:27:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:34.58640061Z"} +2026/03/20 17:27:39 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":16.54737963296897,"throughput_eps":0,"last_update":"2026-03-20T17:27:34.719908956Z"} +2026/03/20 17:27:39 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":76.00469155487397,"throughput_eps":0,"last_update":"2026-03-20T17:27:34.71865773Z"} +2026/03/20 17:27:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:34.575673627Z"} +2026/03/20 17:27:39 ───────────────────────────────────────────────── +2026/03/20 17:27:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:39.575618906Z"} +2026/03/20 17:27:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":470.8,"last_update":"2026-03-20T17:27:39.576015682Z"} +2026/03/20 17:27:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:39.585869091Z"} +2026/03/20 17:27:44 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":16.54737963296897,"throughput_eps":0,"last_update":"2026-03-20T17:27:39.719147692Z"} +2026/03/20 17:27:44 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":76.00469155487397,"throughput_eps":0,"last_update":"2026-03-20T17:27:39.719254495Z"} +2026/03/20 17:27:44 ───────────────────────────────────────────────── +2026/03/20 17:27:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:44.57564337Z"} +2026/03/20 17:27:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":471.8,"last_update":"2026-03-20T17:27:44.576019627Z"} +2026/03/20 17:27:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:44.586722928Z"} +2026/03/20 17:27:49 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":16.54737963296897,"throughput_eps":0,"last_update":"2026-03-20T17:27:44.718916542Z"} +2026/03/20 17:27:49 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":76.00469155487397,"throughput_eps":0,"last_update":"2026-03-20T17:27:44.718937051Z"} +2026/03/20 17:27:49 ───────────────────────────────────────────────── +2026/03/20 17:27:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:49.575541512Z"} +2026/03/20 17:27:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":472.8,"last_update":"2026-03-20T17:27:49.575500533Z"} +2026/03/20 17:27:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:49.586506582Z"} +2026/03/20 17:27:54 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":16.54737963296897,"throughput_eps":0,"last_update":"2026-03-20T17:27:49.719773145Z"} +2026/03/20 17:27:54 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":76.00469155487397,"throughput_eps":0,"last_update":"2026-03-20T17:27:49.718653409Z"} +2026/03/20 17:27:54 ───────────────────────────────────────────────── +2026/03/20 17:27:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":473.8,"last_update":"2026-03-20T17:27:54.575736134Z"} +2026/03/20 17:27:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:54.586196192Z"} +2026/03/20 17:27:59 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":16.54737963296897,"throughput_eps":0,"last_update":"2026-03-20T17:27:54.71958981Z"} +2026/03/20 17:27:59 [transform_engine] {"stage_name":"transform_engine","events_processed":79,"events_dropped":0,"avg_latency_ms":72.72493624389918,"throughput_eps":0,"last_update":"2026-03-20T17:27:54.779240482Z"} +2026/03/20 17:27:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:54.575493631Z"} +2026/03/20 17:27:59 ───────────────────────────────────────────────── +2026/03/20 17:28:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:59.58475271Z"} +2026/03/20 17:28:04 [detection_layer] {"stage_name":"detection_layer","events_processed":79,"events_dropped":0,"avg_latency_ms":16.556542906375178,"throughput_eps":0,"last_update":"2026-03-20T17:27:59.719123194Z"} +2026/03/20 17:28:04 [transform_engine] {"stage_name":"transform_engine","events_processed":79,"events_dropped":0,"avg_latency_ms":72.72493624389918,"throughput_eps":0,"last_update":"2026-03-20T17:27:59.719155545Z"} +2026/03/20 17:28:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:59.575706227Z"} +2026/03/20 17:28:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":474.8,"last_update":"2026-03-20T17:27:59.576098795Z"} +2026/03/20 17:28:04 ───────────────────────────────────────────────── +2026/03/20 17:28:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:04.575860867Z"} +2026/03/20 17:28:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":475.8,"last_update":"2026-03-20T17:28:04.576125461Z"} +2026/03/20 17:28:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:04.586955046Z"} +2026/03/20 17:28:09 [detection_layer] {"stage_name":"detection_layer","events_processed":79,"events_dropped":0,"avg_latency_ms":16.556542906375178,"throughput_eps":0,"last_update":"2026-03-20T17:28:04.71928403Z"} +2026/03/20 17:28:09 [transform_engine] {"stage_name":"transform_engine","events_processed":79,"events_dropped":0,"avg_latency_ms":72.72493624389918,"throughput_eps":0,"last_update":"2026-03-20T17:28:04.719345587Z"} +2026/03/20 17:28:09 ───────────────────────────────────────────────── +2026/03/20 17:28:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:09.575712331Z"} +2026/03/20 17:28:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":476.8,"last_update":"2026-03-20T17:28:09.575988608Z"} +2026/03/20 17:28:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:09.586928264Z"} +2026/03/20 17:28:14 [detection_layer] {"stage_name":"detection_layer","events_processed":79,"events_dropped":0,"avg_latency_ms":16.556542906375178,"throughput_eps":0,"last_update":"2026-03-20T17:28:09.719344134Z"} +2026/03/20 17:28:14 [transform_engine] {"stage_name":"transform_engine","events_processed":79,"events_dropped":0,"avg_latency_ms":72.72493624389918,"throughput_eps":0,"last_update":"2026-03-20T17:28:09.719325108Z"} +2026/03/20 17:28:14 ───────────────────────────────────────────────── +2026/03/20 17:28:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:19 [detection_layer] {"stage_name":"detection_layer","events_processed":79,"events_dropped":0,"avg_latency_ms":16.556542906375178,"throughput_eps":0,"last_update":"2026-03-20T17:28:14.719453698Z"} +2026/03/20 17:28:19 [transform_engine] {"stage_name":"transform_engine","events_processed":79,"events_dropped":0,"avg_latency_ms":72.72493624389918,"throughput_eps":0,"last_update":"2026-03-20T17:28:14.719502822Z"} +2026/03/20 17:28:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:14.575518171Z"} +2026/03/20 17:28:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":477.8,"last_update":"2026-03-20T17:28:14.576081045Z"} +2026/03/20 17:28:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":958,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:14.585199348Z"} +2026/03/20 17:28:19 ───────────────────────────────────────────────── +2026/03/20 17:28:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:19.575983274Z"} +2026/03/20 17:28:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":478.8,"last_update":"2026-03-20T17:28:19.575889345Z"} +2026/03/20 17:28:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:19.586514955Z"} +2026/03/20 17:28:24 [detection_layer] {"stage_name":"detection_layer","events_processed":79,"events_dropped":0,"avg_latency_ms":16.556542906375178,"throughput_eps":0,"last_update":"2026-03-20T17:28:19.718806762Z"} +2026/03/20 17:28:24 [transform_engine] {"stage_name":"transform_engine","events_processed":79,"events_dropped":0,"avg_latency_ms":72.72493624389918,"throughput_eps":0,"last_update":"2026-03-20T17:28:19.71869583Z"} +2026/03/20 17:28:24 ───────────────────────────────────────────────── +2026/03/20 17:28:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":479.8,"last_update":"2026-03-20T17:28:24.5760009Z"} +2026/03/20 17:28:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":962,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:24.585890226Z"} +2026/03/20 17:28:29 [detection_layer] {"stage_name":"detection_layer","events_processed":79,"events_dropped":0,"avg_latency_ms":16.556542906375178,"throughput_eps":0,"last_update":"2026-03-20T17:28:24.719141035Z"} +2026/03/20 17:28:29 [transform_engine] {"stage_name":"transform_engine","events_processed":80,"events_dropped":0,"avg_latency_ms":80.29599119511934,"throughput_eps":0,"last_update":"2026-03-20T17:28:24.82974449Z"} +2026/03/20 17:28:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:24.57558118Z"} +2026/03/20 17:28:29 ───────────────────────────────────────────────── +2026/03/20 17:28:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:29.57600853Z"} +2026/03/20 17:28:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":480.8,"last_update":"2026-03-20T17:28:29.576449861Z"} +2026/03/20 17:28:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:29.584869274Z"} +2026/03/20 17:28:34 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":15.645160525100142,"throughput_eps":0,"last_update":"2026-03-20T17:28:29.719145952Z"} +2026/03/20 17:28:34 [transform_engine] {"stage_name":"transform_engine","events_processed":80,"events_dropped":0,"avg_latency_ms":80.29599119511934,"throughput_eps":0,"last_update":"2026-03-20T17:28:29.719193001Z"} +2026/03/20 17:28:34 ───────────────────────────────────────────────── +2026/03/20 17:28:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:39 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":15.645160525100142,"throughput_eps":0,"last_update":"2026-03-20T17:28:34.719787941Z"} +2026/03/20 17:28:39 [transform_engine] {"stage_name":"transform_engine","events_processed":80,"events_dropped":0,"avg_latency_ms":80.29599119511934,"throughput_eps":0,"last_update":"2026-03-20T17:28:34.718643017Z"} +2026/03/20 17:28:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:34.575528957Z"} +2026/03/20 17:28:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":481.8,"last_update":"2026-03-20T17:28:34.575574595Z"} +2026/03/20 17:28:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:34.586465082Z"} +2026/03/20 17:28:39 ───────────────────────────────────────────────── +2026/03/20 17:28:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:39.576100947Z"} +2026/03/20 17:28:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":482.8,"last_update":"2026-03-20T17:28:39.576412452Z"} +2026/03/20 17:28:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:39.585446639Z"} +2026/03/20 17:28:44 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":15.645160525100142,"throughput_eps":0,"last_update":"2026-03-20T17:28:39.719641805Z"} +2026/03/20 17:28:44 [transform_engine] {"stage_name":"transform_engine","events_processed":80,"events_dropped":0,"avg_latency_ms":80.29599119511934,"throughput_eps":0,"last_update":"2026-03-20T17:28:39.719745041Z"} +2026/03/20 17:28:44 ───────────────────────────────────────────────── +2026/03/20 17:28:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:44.575853515Z"} +2026/03/20 17:28:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":483.8,"last_update":"2026-03-20T17:28:44.576463769Z"} +2026/03/20 17:28:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":970,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:44.585513146Z"} +2026/03/20 17:28:49 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":15.645160525100142,"throughput_eps":0,"last_update":"2026-03-20T17:28:44.718775433Z"} +2026/03/20 17:28:49 [transform_engine] {"stage_name":"transform_engine","events_processed":80,"events_dropped":0,"avg_latency_ms":80.29599119511934,"throughput_eps":0,"last_update":"2026-03-20T17:28:44.718760244Z"} +2026/03/20 17:28:49 ───────────────────────────────────────────────── +2026/03/20 17:28:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:49.576031399Z"} +2026/03/20 17:28:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":484.8,"last_update":"2026-03-20T17:28:49.576557473Z"} +2026/03/20 17:28:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:49.585424382Z"} +2026/03/20 17:28:54 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":15.645160525100142,"throughput_eps":0,"last_update":"2026-03-20T17:28:49.719786169Z"} +2026/03/20 17:28:54 [transform_engine] {"stage_name":"transform_engine","events_processed":80,"events_dropped":0,"avg_latency_ms":80.29599119511934,"throughput_eps":0,"last_update":"2026-03-20T17:28:49.718632398Z"} +2026/03/20 17:28:54 ───────────────────────────────────────────────── +2026/03/20 17:28:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:54.575806175Z"} +2026/03/20 17:28:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":485.8,"last_update":"2026-03-20T17:28:54.576221988Z"} +2026/03/20 17:28:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:54.584831226Z"} +2026/03/20 17:28:59 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":15.645160525100142,"throughput_eps":0,"last_update":"2026-03-20T17:28:54.719236968Z"} +2026/03/20 17:28:59 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":76.92585395609547,"throughput_eps":0,"last_update":"2026-03-20T17:28:54.782563847Z"} +2026/03/20 17:28:59 ───────────────────────────────────────────────── +2026/03/20 17:29:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:59.575499766Z"} +2026/03/20 17:29:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":486.8,"last_update":"2026-03-20T17:28:59.575899919Z"} +2026/03/20 17:29:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:59.585499037Z"} +2026/03/20 17:29:04 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":16.056618020080116,"throughput_eps":0,"last_update":"2026-03-20T17:28:59.718822855Z"} +2026/03/20 17:29:04 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":76.92585395609547,"throughput_eps":0,"last_update":"2026-03-20T17:28:59.718708657Z"} +2026/03/20 17:29:04 ───────────────────────────────────────────────── +2026/03/20 17:29:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:04.575597742Z"} +2026/03/20 17:29:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":487.8,"last_update":"2026-03-20T17:29:04.575644891Z"} +2026/03/20 17:29:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:04.585497002Z"} +2026/03/20 17:29:09 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":16.056618020080116,"throughput_eps":0,"last_update":"2026-03-20T17:29:04.719990363Z"} +2026/03/20 17:29:09 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":76.92585395609547,"throughput_eps":0,"last_update":"2026-03-20T17:29:04.718738905Z"} +2026/03/20 17:29:09 ───────────────────────────────────────────────── +2026/03/20 17:29:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:09.575747295Z"} +2026/03/20 17:29:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":488.8,"last_update":"2026-03-20T17:29:09.576091251Z"} +2026/03/20 17:29:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:09.586399635Z"} +2026/03/20 17:29:14 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":16.056618020080116,"throughput_eps":0,"last_update":"2026-03-20T17:29:09.719663319Z"} +2026/03/20 17:29:14 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":76.92585395609547,"throughput_eps":0,"last_update":"2026-03-20T17:29:09.719638602Z"} +2026/03/20 17:29:14 ───────────────────────────────────────────────── +2026/03/20 17:29:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:14.585212925Z"} +2026/03/20 17:29:19 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":16.056618020080116,"throughput_eps":0,"last_update":"2026-03-20T17:29:14.719529571Z"} +2026/03/20 17:29:19 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":76.92585395609547,"throughput_eps":0,"last_update":"2026-03-20T17:29:14.719510605Z"} +2026/03/20 17:29:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:14.575537651Z"} +2026/03/20 17:29:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":489.8,"last_update":"2026-03-20T17:29:14.575578689Z"} +2026/03/20 17:29:19 ───────────────────────────────────────────────── +2026/03/20 17:29:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:19.587070909Z"} +2026/03/20 17:29:24 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":16.056618020080116,"throughput_eps":0,"last_update":"2026-03-20T17:29:19.719264883Z"} +2026/03/20 17:29:24 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":76.92585395609547,"throughput_eps":0,"last_update":"2026-03-20T17:29:19.719285563Z"} +2026/03/20 17:29:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:19.576041387Z"} +2026/03/20 17:29:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":490.8,"last_update":"2026-03-20T17:29:19.576030066Z"} +2026/03/20 17:29:24 ───────────────────────────────────────────────── +2026/03/20 17:29:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:24.586570377Z"} +2026/03/20 17:29:29 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":16.056618020080116,"throughput_eps":0,"last_update":"2026-03-20T17:29:24.718803358Z"} +2026/03/20 17:29:29 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":84.60938196487638,"throughput_eps":0,"last_update":"2026-03-20T17:29:24.834081356Z"} +2026/03/20 17:29:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:24.57560598Z"} +2026/03/20 17:29:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":491.8,"last_update":"2026-03-20T17:29:24.575721421Z"} +2026/03/20 17:29:29 ───────────────────────────────────────────────── +2026/03/20 17:29:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:29.575765152Z"} +2026/03/20 17:29:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":492.8,"last_update":"2026-03-20T17:29:29.576058863Z"} +2026/03/20 17:29:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:29.586185602Z"} +2026/03/20 17:29:34 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":16.417901416064094,"throughput_eps":0,"last_update":"2026-03-20T17:29:29.719371873Z"} +2026/03/20 17:29:34 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":84.60938196487638,"throughput_eps":0,"last_update":"2026-03-20T17:29:29.719450823Z"} +2026/03/20 17:29:34 ───────────────────────────────────────────────── +2026/03/20 17:29:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:34.576072379Z"} +2026/03/20 17:29:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":493.8,"last_update":"2026-03-20T17:29:34.576464657Z"} +2026/03/20 17:29:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":990,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:34.585764289Z"} +2026/03/20 17:29:39 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":16.417901416064094,"throughput_eps":0,"last_update":"2026-03-20T17:29:34.719223039Z"} +2026/03/20 17:29:39 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":84.60938196487638,"throughput_eps":0,"last_update":"2026-03-20T17:29:34.719165839Z"} +2026/03/20 17:29:39 ───────────────────────────────────────────────── +2026/03/20 17:29:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:44 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":84.60938196487638,"throughput_eps":0,"last_update":"2026-03-20T17:29:39.71978644Z"} +2026/03/20 17:29:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:39.576043689Z"} +2026/03/20 17:29:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":494.8,"last_update":"2026-03-20T17:29:39.576430527Z"} +2026/03/20 17:29:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":992,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:39.58641672Z"} +2026/03/20 17:29:44 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":16.417901416064094,"throughput_eps":0,"last_update":"2026-03-20T17:29:39.71983835Z"} +2026/03/20 17:29:44 ───────────────────────────────────────────────── +2026/03/20 17:29:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:44.57553199Z"} +2026/03/20 17:29:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":495.8,"last_update":"2026-03-20T17:29:44.575811264Z"} +2026/03/20 17:29:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:44.586069947Z"} +2026/03/20 17:29:49 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":16.417901416064094,"throughput_eps":0,"last_update":"2026-03-20T17:29:44.719297256Z"} +2026/03/20 17:29:49 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":84.60938196487638,"throughput_eps":0,"last_update":"2026-03-20T17:29:44.719402076Z"} +2026/03/20 17:29:49 ───────────────────────────────────────────────── +2026/03/20 17:29:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:54 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":84.60938196487638,"throughput_eps":0,"last_update":"2026-03-20T17:29:49.718683232Z"} +2026/03/20 17:29:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:49.575746296Z"} +2026/03/20 17:29:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":496.8,"last_update":"2026-03-20T17:29:49.576520645Z"} +2026/03/20 17:29:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":996,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:49.585519244Z"} +2026/03/20 17:29:54 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":16.417901416064094,"throughput_eps":0,"last_update":"2026-03-20T17:29:49.719830502Z"} +2026/03/20 17:29:54 ───────────────────────────────────────────────── +2026/03/20 17:29:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:59 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":80.8326673719011,"throughput_eps":0,"last_update":"2026-03-20T17:29:54.784383504Z"} +2026/03/20 17:29:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:54.575834546Z"} +2026/03/20 17:29:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":497.8,"last_update":"2026-03-20T17:29:54.57660115Z"} +2026/03/20 17:29:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:54.585469611Z"} +2026/03/20 17:29:59 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":16.417901416064094,"throughput_eps":0,"last_update":"2026-03-20T17:29:54.719795026Z"} +2026/03/20 17:29:59 ───────────────────────────────────────────────── +2026/03/20 17:30:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:59.575821595Z"} +2026/03/20 17:30:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":498.8,"last_update":"2026-03-20T17:29:59.576117049Z"} +2026/03/20 17:30:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:59.586165313Z"} +2026/03/20 17:30:04 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":16.659370932851278,"throughput_eps":0,"last_update":"2026-03-20T17:29:59.71937069Z"} +2026/03/20 17:30:04 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":80.8326673719011,"throughput_eps":0,"last_update":"2026-03-20T17:29:59.719417119Z"} +2026/03/20 17:30:04 ───────────────────────────────────────────────── +2026/03/20 17:30:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:04.591966811Z"} +2026/03/20 17:30:09 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":16.659370932851278,"throughput_eps":0,"last_update":"2026-03-20T17:30:04.719311338Z"} +2026/03/20 17:30:09 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":80.8326673719011,"throughput_eps":0,"last_update":"2026-03-20T17:30:04.719288754Z"} +2026/03/20 17:30:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:04.575723959Z"} +2026/03/20 17:30:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":499.8,"last_update":"2026-03-20T17:30:04.576497867Z"} +2026/03/20 17:30:09 ───────────────────────────────────────────────── +2026/03/20 17:30:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:09.57585164Z"} +2026/03/20 17:30:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":500.8,"last_update":"2026-03-20T17:30:09.576478567Z"} +2026/03/20 17:30:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:09.584781089Z"} +2026/03/20 17:30:14 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":16.659370932851278,"throughput_eps":0,"last_update":"2026-03-20T17:30:09.71925609Z"} +2026/03/20 17:30:14 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":80.8326673719011,"throughput_eps":0,"last_update":"2026-03-20T17:30:09.719168583Z"} +2026/03/20 17:30:14 ───────────────────────────────────────────────── +2026/03/20 17:30:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:14.575542617Z"} +2026/03/20 17:30:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":501.8,"last_update":"2026-03-20T17:30:14.575770422Z"} +2026/03/20 17:30:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1006,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:14.586410027Z"} +2026/03/20 17:30:19 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":16.659370932851278,"throughput_eps":0,"last_update":"2026-03-20T17:30:14.719778335Z"} +2026/03/20 17:30:19 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":80.8326673719011,"throughput_eps":0,"last_update":"2026-03-20T17:30:14.719903143Z"} +2026/03/20 17:30:19 ───────────────────────────────────────────────── +2026/03/20 17:30:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":502.8,"last_update":"2026-03-20T17:30:19.575572849Z"} +2026/03/20 17:30:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1008,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:19.585958932Z"} +2026/03/20 17:30:24 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":16.659370932851278,"throughput_eps":0,"last_update":"2026-03-20T17:30:19.719297201Z"} +2026/03/20 17:30:24 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":80.8326673719011,"throughput_eps":0,"last_update":"2026-03-20T17:30:19.719196188Z"} +2026/03/20 17:30:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:19.575513366Z"} +2026/03/20 17:30:24 ───────────────────────────────────────────────── +2026/03/20 17:30:24 [ANOMALY] time=2026-03-20T17:30:24Z score=0.8529 method=SEAD details=MAD!:w=0.29,s=0.84 RRCF-fast:w=0.18,s=0.80 RRCF-mid:w=0.16,s=0.80 RRCF-slow:w=0.15,s=0.86 COPOD!:w=0.22,s=0.95 +2026/03/20 17:30:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:24.58568618Z"} +2026/03/20 17:30:29 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":16.659370932851278,"throughput_eps":0,"last_update":"2026-03-20T17:30:24.719001444Z"} +2026/03/20 17:30:29 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":87.50973909752088,"throughput_eps":0,"last_update":"2026-03-20T17:30:24.833187511Z"} +2026/03/20 17:30:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:24.5755214Z"} +2026/03/20 17:30:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":503.6,"last_update":"2026-03-20T17:30:24.575253067Z"} +2026/03/20 17:30:29 ───────────────────────────────────────────────── +2026/03/20 17:30:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1012,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:29.585240559Z"} +2026/03/20 17:30:34 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":16.455199346281024,"throughput_eps":0,"last_update":"2026-03-20T17:30:29.719630245Z"} +2026/03/20 17:30:34 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":87.50973909752088,"throughput_eps":0,"last_update":"2026-03-20T17:30:29.719609936Z"} +2026/03/20 17:30:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:29.576021394Z"} +2026/03/20 17:30:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":504.8,"last_update":"2026-03-20T17:30:29.57633882Z"} +2026/03/20 17:30:34 ───────────────────────────────────────────────── +2026/03/20 17:30:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:34.575515063Z"} +2026/03/20 17:30:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":505.8,"last_update":"2026-03-20T17:30:34.576122914Z"} +2026/03/20 17:30:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:34.586657111Z"} +2026/03/20 17:30:39 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":16.455199346281024,"throughput_eps":0,"last_update":"2026-03-20T17:30:34.719002511Z"} +2026/03/20 17:30:39 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":87.50973909752088,"throughput_eps":0,"last_update":"2026-03-20T17:30:34.718904304Z"} +2026/03/20 17:30:39 ───────────────────────────────────────────────── +2026/03/20 17:30:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:39.575758047Z"} +2026/03/20 17:30:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":506.8,"last_update":"2026-03-20T17:30:39.57606342Z"} +2026/03/20 17:30:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:39.586186543Z"} +2026/03/20 17:30:44 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":16.455199346281024,"throughput_eps":0,"last_update":"2026-03-20T17:30:39.719568733Z"} +2026/03/20 17:30:44 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":87.50973909752088,"throughput_eps":0,"last_update":"2026-03-20T17:30:39.719604852Z"} +2026/03/20 17:30:44 ───────────────────────────────────────────────── +2026/03/20 17:30:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1018,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:44.586989589Z"} +2026/03/20 17:30:49 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":16.455199346281024,"throughput_eps":0,"last_update":"2026-03-20T17:30:44.719214598Z"} +2026/03/20 17:30:49 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":87.50973909752088,"throughput_eps":0,"last_update":"2026-03-20T17:30:44.719222573Z"} +2026/03/20 17:30:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:44.575793626Z"} +2026/03/20 17:30:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":507.8,"last_update":"2026-03-20T17:30:44.576132263Z"} +2026/03/20 17:30:49 ───────────────────────────────────────────────── +2026/03/20 17:30:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:49.57585976Z"} +2026/03/20 17:30:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":508.8,"last_update":"2026-03-20T17:30:49.576204098Z"} +2026/03/20 17:30:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1020,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:49.584899566Z"} +2026/03/20 17:30:54 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":16.455199346281024,"throughput_eps":0,"last_update":"2026-03-20T17:30:49.719130775Z"} +2026/03/20 17:30:54 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":87.50973909752088,"throughput_eps":0,"last_update":"2026-03-20T17:30:49.719137298Z"} +2026/03/20 17:30:54 ───────────────────────────────────────────────── +2026/03/20 17:30:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:54.575538959Z"} +2026/03/20 17:30:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":509.8,"last_update":"2026-03-20T17:30:54.575583524Z"} +2026/03/20 17:30:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1022,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:54.586268182Z"} +2026/03/20 17:30:59 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":16.455199346281024,"throughput_eps":0,"last_update":"2026-03-20T17:30:54.719629278Z"} +2026/03/20 17:30:59 [transform_engine] {"stage_name":"transform_engine","events_processed":85,"events_dropped":0,"avg_latency_ms":92.78222407801671,"throughput_eps":0,"last_update":"2026-03-20T17:30:54.833534835Z"} +2026/03/20 17:30:59 ───────────────────────────────────────────────── +2026/03/20 17:31:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:59.575702052Z"} +2026/03/20 17:31:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":510.8,"last_update":"2026-03-20T17:30:59.575980964Z"} +2026/03/20 17:31:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:59.587337677Z"} +2026/03/20 17:31:04 [detection_layer] {"stage_name":"detection_layer","events_processed":85,"events_dropped":0,"avg_latency_ms":16.64477347702482,"throughput_eps":0,"last_update":"2026-03-20T17:30:59.719728889Z"} +2026/03/20 17:31:04 [transform_engine] {"stage_name":"transform_engine","events_processed":85,"events_dropped":0,"avg_latency_ms":92.78222407801671,"throughput_eps":0,"last_update":"2026-03-20T17:30:59.719740412Z"} +2026/03/20 17:31:04 ───────────────────────────────────────────────── +2026/03/20 17:31:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:09 [transform_engine] {"stage_name":"transform_engine","events_processed":85,"events_dropped":0,"avg_latency_ms":92.78222407801671,"throughput_eps":0,"last_update":"2026-03-20T17:31:04.719019573Z"} +2026/03/20 17:31:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:04.575891073Z"} +2026/03/20 17:31:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":511.8,"last_update":"2026-03-20T17:31:04.576436875Z"} +2026/03/20 17:31:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:04.586777376Z"} +2026/03/20 17:31:09 [detection_layer] {"stage_name":"detection_layer","events_processed":85,"events_dropped":0,"avg_latency_ms":16.64477347702482,"throughput_eps":0,"last_update":"2026-03-20T17:31:04.719008061Z"} +2026/03/20 17:31:09 ───────────────────────────────────────────────── +2026/03/20 17:31:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:09.57603968Z"} +2026/03/20 17:31:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":512.8,"last_update":"2026-03-20T17:31:09.576407212Z"} +2026/03/20 17:31:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:09.586402615Z"} +2026/03/20 17:31:14 [detection_layer] {"stage_name":"detection_layer","events_processed":85,"events_dropped":0,"avg_latency_ms":16.64477347702482,"throughput_eps":0,"last_update":"2026-03-20T17:31:09.719646333Z"} +2026/03/20 17:31:14 [transform_engine] {"stage_name":"transform_engine","events_processed":85,"events_dropped":0,"avg_latency_ms":92.78222407801671,"throughput_eps":0,"last_update":"2026-03-20T17:31:09.719655861Z"} +2026/03/20 17:31:14 ───────────────────────────────────────────────── +2026/03/20 17:31:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:14.5755407Z"} +2026/03/20 17:31:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":513.8,"last_update":"2026-03-20T17:31:14.575702309Z"} +2026/03/20 17:31:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:14.585651545Z"} +2026/03/20 17:31:19 [detection_layer] {"stage_name":"detection_layer","events_processed":85,"events_dropped":0,"avg_latency_ms":16.64477347702482,"throughput_eps":0,"last_update":"2026-03-20T17:31:14.718866255Z"} +2026/03/20 17:31:19 [transform_engine] {"stage_name":"transform_engine","events_processed":85,"events_dropped":0,"avg_latency_ms":92.78222407801671,"throughput_eps":0,"last_update":"2026-03-20T17:31:14.718877537Z"} +2026/03/20 17:31:19 ───────────────────────────────────────────────── +2026/03/20 17:31:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:19.58604019Z"} +2026/03/20 17:31:24 [detection_layer] {"stage_name":"detection_layer","events_processed":85,"events_dropped":0,"avg_latency_ms":16.64477347702482,"throughput_eps":0,"last_update":"2026-03-20T17:31:19.719278114Z"} +2026/03/20 17:31:24 [transform_engine] {"stage_name":"transform_engine","events_processed":85,"events_dropped":0,"avg_latency_ms":92.78222407801671,"throughput_eps":0,"last_update":"2026-03-20T17:31:19.719288253Z"} +2026/03/20 17:31:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:19.575600346Z"} +2026/03/20 17:31:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":514.8,"last_update":"2026-03-20T17:31:19.575954513Z"} +2026/03/20 17:31:24 ───────────────────────────────────────────────── +2026/03/20 17:31:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:29 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":96.67436806241336,"throughput_eps":0,"last_update":"2026-03-20T17:31:24.831718389Z"} +2026/03/20 17:31:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:24.57580354Z"} +2026/03/20 17:31:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":515.8,"last_update":"2026-03-20T17:31:24.57613896Z"} +2026/03/20 17:31:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:24.586084109Z"} +2026/03/20 17:31:29 [detection_layer] {"stage_name":"detection_layer","events_processed":85,"events_dropped":0,"avg_latency_ms":16.64477347702482,"throughput_eps":0,"last_update":"2026-03-20T17:31:24.719458933Z"} +2026/03/20 17:31:29 ───────────────────────────────────────────────── +2026/03/20 17:31:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:29.575752502Z"} +2026/03/20 17:31:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":516.8,"last_update":"2026-03-20T17:31:29.576027577Z"} +2026/03/20 17:31:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1036,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:29.587410354Z"} +2026/03/20 17:31:34 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":16.828068581619856,"throughput_eps":0,"last_update":"2026-03-20T17:31:29.719689512Z"} +2026/03/20 17:31:34 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":96.67436806241336,"throughput_eps":0,"last_update":"2026-03-20T17:31:29.719724801Z"} +2026/03/20 17:31:34 ───────────────────────────────────────────────── +2026/03/20 17:31:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:34.585297745Z"} +2026/03/20 17:31:39 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":16.828068581619856,"throughput_eps":0,"last_update":"2026-03-20T17:31:34.719702183Z"} +2026/03/20 17:31:39 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":96.67436806241336,"throughput_eps":0,"last_update":"2026-03-20T17:31:34.71964871Z"} +2026/03/20 17:31:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:34.575521859Z"} +2026/03/20 17:31:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":517.8,"last_update":"2026-03-20T17:31:34.575713354Z"} +2026/03/20 17:31:39 ───────────────────────────────────────────────── +2026/03/20 17:31:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":518.8,"last_update":"2026-03-20T17:31:39.576167513Z"} +2026/03/20 17:31:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:39.585748108Z"} +2026/03/20 17:31:44 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":16.828068581619856,"throughput_eps":0,"last_update":"2026-03-20T17:31:39.719012195Z"} +2026/03/20 17:31:44 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":96.67436806241336,"throughput_eps":0,"last_update":"2026-03-20T17:31:39.718990203Z"} +2026/03/20 17:31:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:39.575740648Z"} +2026/03/20 17:31:44 ───────────────────────────────────────────────── +2026/03/20 17:31:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:44.575685157Z"} +2026/03/20 17:31:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":519.8,"last_update":"2026-03-20T17:31:44.576106542Z"} +2026/03/20 17:31:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:44.586572238Z"} +2026/03/20 17:31:49 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":16.828068581619856,"throughput_eps":0,"last_update":"2026-03-20T17:31:44.71982942Z"} +2026/03/20 17:31:49 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":96.67436806241336,"throughput_eps":0,"last_update":"2026-03-20T17:31:44.718724028Z"} +2026/03/20 17:31:49 ───────────────────────────────────────────────── +2026/03/20 17:31:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:49.576058596Z"} +2026/03/20 17:31:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":520.8,"last_update":"2026-03-20T17:31:49.576047074Z"} +2026/03/20 17:31:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:49.586434712Z"} +2026/03/20 17:31:54 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":16.828068581619856,"throughput_eps":0,"last_update":"2026-03-20T17:31:49.719884459Z"} +2026/03/20 17:31:54 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":96.67436806241336,"throughput_eps":0,"last_update":"2026-03-20T17:31:49.718666042Z"} +2026/03/20 17:31:54 ───────────────────────────────────────────────── +2026/03/20 17:31:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":521.8,"last_update":"2026-03-20T17:31:54.576029263Z"} +2026/03/20 17:31:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:54.585983022Z"} +2026/03/20 17:31:59 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":16.828068581619856,"throughput_eps":0,"last_update":"2026-03-20T17:31:54.719505417Z"} +2026/03/20 17:31:59 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":99.8949136499307,"throughput_eps":0,"last_update":"2026-03-20T17:31:54.832196197Z"} +2026/03/20 17:31:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:54.575725072Z"} +2026/03/20 17:31:59 ───────────────────────────────────────────────── +2026/03/20 17:32:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":522.8,"last_update":"2026-03-20T17:31:59.576063313Z"} +2026/03/20 17:32:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1048,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:59.586833894Z"} +2026/03/20 17:32:04 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":17.159376465295885,"throughput_eps":0,"last_update":"2026-03-20T17:31:59.719240885Z"} +2026/03/20 17:32:04 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":99.8949136499307,"throughput_eps":0,"last_update":"2026-03-20T17:31:59.719134141Z"} +2026/03/20 17:32:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:59.575738563Z"} +2026/03/20 17:32:04 ───────────────────────────────────────────────── +2026/03/20 17:32:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":523.8,"last_update":"2026-03-20T17:32:04.575708995Z"} +2026/03/20 17:32:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1050,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:04.585674927Z"} +2026/03/20 17:32:09 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":17.159376465295885,"throughput_eps":0,"last_update":"2026-03-20T17:32:04.718958561Z"} +2026/03/20 17:32:09 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":99.8949136499307,"throughput_eps":0,"last_update":"2026-03-20T17:32:04.718919126Z"} +2026/03/20 17:32:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:04.575592753Z"} +2026/03/20 17:32:09 ───────────────────────────────────────────────── +2026/03/20 17:32:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:09.575815272Z"} +2026/03/20 17:32:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":524.8,"last_update":"2026-03-20T17:32:09.576107049Z"} +2026/03/20 17:32:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:09.587084917Z"} +2026/03/20 17:32:14 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":17.159376465295885,"throughput_eps":0,"last_update":"2026-03-20T17:32:09.719560464Z"} +2026/03/20 17:32:14 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":99.8949136499307,"throughput_eps":0,"last_update":"2026-03-20T17:32:09.719668801Z"} +2026/03/20 17:32:14 ───────────────────────────────────────────────── +2026/03/20 17:32:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:14.575967552Z"} +2026/03/20 17:32:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":525.8,"last_update":"2026-03-20T17:32:14.576262476Z"} +2026/03/20 17:32:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:14.585407813Z"} +2026/03/20 17:32:19 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":17.159376465295885,"throughput_eps":0,"last_update":"2026-03-20T17:32:14.719737229Z"} +2026/03/20 17:32:19 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":99.8949136499307,"throughput_eps":0,"last_update":"2026-03-20T17:32:14.719718845Z"} +2026/03/20 17:32:19 ───────────────────────────────────────────────── +2026/03/20 17:32:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:19.575698201Z"} +2026/03/20 17:32:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":526.8,"last_update":"2026-03-20T17:32:19.576050685Z"} +2026/03/20 17:32:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1056,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:19.586782755Z"} +2026/03/20 17:32:24 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":17.159376465295885,"throughput_eps":0,"last_update":"2026-03-20T17:32:19.719151333Z"} +2026/03/20 17:32:24 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":99.8949136499307,"throughput_eps":0,"last_update":"2026-03-20T17:32:19.719112739Z"} +2026/03/20 17:32:24 ───────────────────────────────────────────────── +2026/03/20 17:32:24 [ANOMALY] time=2026-03-20T17:32:24Z score=0.9031 method=SEAD details=MAD!:w=0.29,s=0.86 RRCF-fast!:w=0.18,s=0.97 RRCF-mid!:w=0.16,s=0.91 RRCF-slow!:w=0.15,s=0.90 COPOD!:w=0.22,s=0.91 +2026/03/20 17:32:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:29 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":17.159376465295885,"throughput_eps":0,"last_update":"2026-03-20T17:32:24.719623244Z"} +2026/03/20 17:32:29 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":102.54730311994457,"throughput_eps":0,"last_update":"2026-03-20T17:32:24.832904542Z"} +2026/03/20 17:32:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:24.575704866Z"} +2026/03/20 17:32:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":527.8,"last_update":"2026-03-20T17:32:24.57598376Z"} +2026/03/20 17:32:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:24.5862452Z"} +2026/03/20 17:32:29 ───────────────────────────────────────────────── +2026/03/20 17:32:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:34 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":102.54730311994457,"throughput_eps":0,"last_update":"2026-03-20T17:32:29.718777176Z"} +2026/03/20 17:32:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:29.575489376Z"} +2026/03/20 17:32:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":528.8,"last_update":"2026-03-20T17:32:29.5756593Z"} +2026/03/20 17:32:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:29.585247334Z"} +2026/03/20 17:32:34 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":16.48181857223671,"throughput_eps":0,"last_update":"2026-03-20T17:32:29.718809037Z"} +2026/03/20 17:32:34 ───────────────────────────────────────────────── +2026/03/20 17:32:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:34.575565905Z"} +2026/03/20 17:32:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":529.8,"last_update":"2026-03-20T17:32:34.57600338Z"} +2026/03/20 17:32:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1062,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:34.586588361Z"} +2026/03/20 17:32:39 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":16.48181857223671,"throughput_eps":0,"last_update":"2026-03-20T17:32:34.718822745Z"} +2026/03/20 17:32:39 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":102.54730311994457,"throughput_eps":0,"last_update":"2026-03-20T17:32:34.718793338Z"} +2026/03/20 17:32:39 ───────────────────────────────────────────────── +2026/03/20 17:32:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:39.575671382Z"} +2026/03/20 17:32:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":530.8,"last_update":"2026-03-20T17:32:39.575953472Z"} +2026/03/20 17:32:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:39.585839836Z"} +2026/03/20 17:32:44 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":16.48181857223671,"throughput_eps":0,"last_update":"2026-03-20T17:32:39.719144021Z"} +2026/03/20 17:32:44 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":102.54730311994457,"throughput_eps":0,"last_update":"2026-03-20T17:32:39.719178057Z"} +2026/03/20 17:32:44 ───────────────────────────────────────────────── +2026/03/20 17:32:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":531.8,"last_update":"2026-03-20T17:32:44.575988865Z"} +2026/03/20 17:32:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:44.586171297Z"} +2026/03/20 17:32:49 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":16.48181857223671,"throughput_eps":0,"last_update":"2026-03-20T17:32:44.719487272Z"} +2026/03/20 17:32:49 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":102.54730311994457,"throughput_eps":0,"last_update":"2026-03-20T17:32:44.719463015Z"} +2026/03/20 17:32:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:44.575680536Z"} +2026/03/20 17:32:49 ───────────────────────────────────────────────── +2026/03/20 17:32:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":532.8,"last_update":"2026-03-20T17:32:49.576223186Z"} +2026/03/20 17:32:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:49.584451032Z"} +2026/03/20 17:32:54 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":16.48181857223671,"throughput_eps":0,"last_update":"2026-03-20T17:32:49.719895692Z"} +2026/03/20 17:32:54 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":102.54730311994457,"throughput_eps":0,"last_update":"2026-03-20T17:32:49.718687453Z"} +2026/03/20 17:32:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:49.57578083Z"} +2026/03/20 17:32:54 ───────────────────────────────────────────────── +2026/03/20 17:32:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:54.585764679Z"} +2026/03/20 17:32:59 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":16.48181857223671,"throughput_eps":0,"last_update":"2026-03-20T17:32:54.719241515Z"} +2026/03/20 17:32:59 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":102.54730311994457,"throughput_eps":0,"last_update":"2026-03-20T17:32:54.719086568Z"} +2026/03/20 17:32:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:54.575540837Z"} +2026/03/20 17:32:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":533.8,"last_update":"2026-03-20T17:32:54.575875507Z"} +2026/03/20 17:32:59 ───────────────────────────────────────────────── +2026/03/20 17:33:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":534.8,"last_update":"2026-03-20T17:32:59.576093924Z"} +2026/03/20 17:33:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1072,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:59.585441701Z"} +2026/03/20 17:33:04 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":16.690378257789366,"throughput_eps":0,"last_update":"2026-03-20T17:32:59.718808995Z"} +2026/03/20 17:33:04 [transform_engine] {"stage_name":"transform_engine","events_processed":89,"events_dropped":0,"avg_latency_ms":94.98600349595566,"throughput_eps":0,"last_update":"2026-03-20T17:32:59.718696409Z"} +2026/03/20 17:33:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:59.575755948Z"} +2026/03/20 17:33:04 ───────────────────────────────────────────────── +2026/03/20 17:33:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:04.575563766Z"} +2026/03/20 17:33:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":535.8,"last_update":"2026-03-20T17:33:04.575693725Z"} +2026/03/20 17:33:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:04.585786707Z"} +2026/03/20 17:33:09 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":16.690378257789366,"throughput_eps":0,"last_update":"2026-03-20T17:33:04.719167895Z"} +2026/03/20 17:33:09 [transform_engine] {"stage_name":"transform_engine","events_processed":89,"events_dropped":0,"avg_latency_ms":94.98600349595566,"throughput_eps":0,"last_update":"2026-03-20T17:33:04.719265902Z"} +2026/03/20 17:33:09 ───────────────────────────────────────────────── +2026/03/20 17:33:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:14 [transform_engine] {"stage_name":"transform_engine","events_processed":89,"events_dropped":0,"avg_latency_ms":94.98600349595566,"throughput_eps":0,"last_update":"2026-03-20T17:33:09.719001207Z"} +2026/03/20 17:33:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:09.57596195Z"} +2026/03/20 17:33:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":536.8,"last_update":"2026-03-20T17:33:09.576330835Z"} +2026/03/20 17:33:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1076,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:09.585741344Z"} +2026/03/20 17:33:14 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":16.690378257789366,"throughput_eps":0,"last_update":"2026-03-20T17:33:09.719105246Z"} +2026/03/20 17:33:14 ───────────────────────────────────────────────── +2026/03/20 17:33:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:14.57567642Z"} +2026/03/20 17:33:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":537.8,"last_update":"2026-03-20T17:33:14.57602673Z"} +2026/03/20 17:33:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:14.585866731Z"} +2026/03/20 17:33:19 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":16.690378257789366,"throughput_eps":0,"last_update":"2026-03-20T17:33:14.719122111Z"} +2026/03/20 17:33:19 [transform_engine] {"stage_name":"transform_engine","events_processed":89,"events_dropped":0,"avg_latency_ms":94.98600349595566,"throughput_eps":0,"last_update":"2026-03-20T17:33:14.719162778Z"} +2026/03/20 17:33:19 ───────────────────────────────────────────────── +2026/03/20 17:33:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":538.8,"last_update":"2026-03-20T17:33:19.575976653Z"} +2026/03/20 17:33:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:19.586363278Z"} +2026/03/20 17:33:24 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":16.690378257789366,"throughput_eps":0,"last_update":"2026-03-20T17:33:19.719596513Z"} +2026/03/20 17:33:24 [transform_engine] {"stage_name":"transform_engine","events_processed":89,"events_dropped":0,"avg_latency_ms":94.98600349595566,"throughput_eps":0,"last_update":"2026-03-20T17:33:19.71957396Z"} +2026/03/20 17:33:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:19.575988596Z"} +2026/03/20 17:33:24 ───────────────────────────────────────────────── +2026/03/20 17:33:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:24.576012698Z"} +2026/03/20 17:33:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":539.8,"last_update":"2026-03-20T17:33:24.575999654Z"} +2026/03/20 17:33:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1082,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:24.585577704Z"} +2026/03/20 17:33:29 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":16.690378257789366,"throughput_eps":0,"last_update":"2026-03-20T17:33:24.718792049Z"} +2026/03/20 17:33:29 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":88.44331599676454,"throughput_eps":0,"last_update":"2026-03-20T17:33:24.781017936Z"} +2026/03/20 17:33:29 ───────────────────────────────────────────────── +2026/03/20 17:33:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:29.576052657Z"} +2026/03/20 17:33:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":540.8,"last_update":"2026-03-20T17:33:29.57603849Z"} +2026/03/20 17:33:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:29.587543495Z"} +2026/03/20 17:33:34 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":16.526943406231492,"throughput_eps":0,"last_update":"2026-03-20T17:33:29.718816576Z"} +2026/03/20 17:33:34 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":88.44331599676454,"throughput_eps":0,"last_update":"2026-03-20T17:33:29.718720692Z"} +2026/03/20 17:33:34 ───────────────────────────────────────────────── +2026/03/20 17:33:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:34.576067462Z"} +2026/03/20 17:33:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":541.8,"last_update":"2026-03-20T17:33:34.576235614Z"} +2026/03/20 17:33:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:34.585179533Z"} +2026/03/20 17:33:39 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":16.526943406231492,"throughput_eps":0,"last_update":"2026-03-20T17:33:34.719469728Z"} +2026/03/20 17:33:39 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":88.44331599676454,"throughput_eps":0,"last_update":"2026-03-20T17:33:34.719443437Z"} +2026/03/20 17:33:39 ───────────────────────────────────────────────── +2026/03/20 17:33:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:39.575579497Z"} +2026/03/20 17:33:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":542.8,"last_update":"2026-03-20T17:33:39.575682264Z"} +2026/03/20 17:33:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:39.586019757Z"} +2026/03/20 17:33:44 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":16.526943406231492,"throughput_eps":0,"last_update":"2026-03-20T17:33:39.719459924Z"} +2026/03/20 17:33:44 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":88.44331599676454,"throughput_eps":0,"last_update":"2026-03-20T17:33:39.719408605Z"} +2026/03/20 17:33:44 ───────────────────────────────────────────────── +2026/03/20 17:33:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:44.575794445Z"} +2026/03/20 17:33:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":543.8,"last_update":"2026-03-20T17:33:44.57612121Z"} +2026/03/20 17:33:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:44.585570085Z"} +2026/03/20 17:33:49 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":16.526943406231492,"throughput_eps":0,"last_update":"2026-03-20T17:33:44.718808461Z"} +2026/03/20 17:33:49 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":88.44331599676454,"throughput_eps":0,"last_update":"2026-03-20T17:33:44.718736013Z"} +2026/03/20 17:33:49 ───────────────────────────────────────────────── +2026/03/20 17:33:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:49.576175058Z"} +2026/03/20 17:33:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":544.8,"last_update":"2026-03-20T17:33:49.57675092Z"} +2026/03/20 17:33:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:49.585701202Z"} +2026/03/20 17:33:54 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":16.526943406231492,"throughput_eps":0,"last_update":"2026-03-20T17:33:49.719126223Z"} +2026/03/20 17:33:54 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":88.44331599676454,"throughput_eps":0,"last_update":"2026-03-20T17:33:49.719110293Z"} +2026/03/20 17:33:54 ───────────────────────────────────────────────── +2026/03/20 17:33:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:54.575525969Z"} +2026/03/20 17:33:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":545.8,"last_update":"2026-03-20T17:33:54.57556331Z"} +2026/03/20 17:33:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:54.585879865Z"} +2026/03/20 17:33:59 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":16.526943406231492,"throughput_eps":0,"last_update":"2026-03-20T17:33:54.719383222Z"} +2026/03/20 17:33:59 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":93.52199559741163,"throughput_eps":0,"last_update":"2026-03-20T17:33:54.833238842Z"} +2026/03/20 17:33:59 ───────────────────────────────────────────────── +2026/03/20 17:34:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:59.576024596Z"} +2026/03/20 17:34:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":546.8,"last_update":"2026-03-20T17:33:59.57643478Z"} +2026/03/20 17:34:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:59.585200451Z"} +2026/03/20 17:34:04 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":16.743047524985194,"throughput_eps":0,"last_update":"2026-03-20T17:33:59.719506077Z"} +2026/03/20 17:34:04 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":93.52199559741163,"throughput_eps":0,"last_update":"2026-03-20T17:33:59.719613803Z"} +2026/03/20 17:34:04 ───────────────────────────────────────────────── +2026/03/20 17:34:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:04.586132635Z"} +2026/03/20 17:34:09 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":16.743047524985194,"throughput_eps":0,"last_update":"2026-03-20T17:34:04.719475918Z"} +2026/03/20 17:34:09 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":93.52199559741163,"throughput_eps":0,"last_update":"2026-03-20T17:34:04.719364204Z"} +2026/03/20 17:34:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:04.575792314Z"} +2026/03/20 17:34:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":547.8,"last_update":"2026-03-20T17:34:04.576156991Z"} +2026/03/20 17:34:09 ───────────────────────────────────────────────── +2026/03/20 17:34:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:09.575828514Z"} +2026/03/20 17:34:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":548.8,"last_update":"2026-03-20T17:34:09.576410126Z"} +2026/03/20 17:34:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:09.586838847Z"} +2026/03/20 17:34:14 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":16.743047524985194,"throughput_eps":0,"last_update":"2026-03-20T17:34:09.719345546Z"} +2026/03/20 17:34:14 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":93.52199559741163,"throughput_eps":0,"last_update":"2026-03-20T17:34:09.719235906Z"} +2026/03/20 17:34:14 ───────────────────────────────────────────────── +2026/03/20 17:34:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:19 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":16.743047524985194,"throughput_eps":0,"last_update":"2026-03-20T17:34:14.719593333Z"} +2026/03/20 17:34:19 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":93.52199559741163,"throughput_eps":0,"last_update":"2026-03-20T17:34:14.719562544Z"} +2026/03/20 17:34:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:14.575914165Z"} +2026/03/20 17:34:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":549.8,"last_update":"2026-03-20T17:34:14.576198629Z"} +2026/03/20 17:34:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:14.588156575Z"} +2026/03/20 17:34:19 ───────────────────────────────────────────────── +2026/03/20 17:34:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:19.575878106Z"} +2026/03/20 17:34:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":550.8,"last_update":"2026-03-20T17:34:19.576225591Z"} +2026/03/20 17:34:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:19.585846428Z"} +2026/03/20 17:34:24 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":16.743047524985194,"throughput_eps":0,"last_update":"2026-03-20T17:34:19.71924314Z"} +2026/03/20 17:34:24 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":93.52199559741163,"throughput_eps":0,"last_update":"2026-03-20T17:34:19.719277756Z"} +2026/03/20 17:34:24 ───────────────────────────────────────────────── +2026/03/20 17:34:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":551.8,"last_update":"2026-03-20T17:34:24.575937883Z"} +2026/03/20 17:34:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:24.585865167Z"} +2026/03/20 17:34:29 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":16.743047524985194,"throughput_eps":0,"last_update":"2026-03-20T17:34:24.71915983Z"} +2026/03/20 17:34:29 [transform_engine] {"stage_name":"transform_engine","events_processed":92,"events_dropped":0,"avg_latency_ms":97.58340447792932,"throughput_eps":0,"last_update":"2026-03-20T17:34:24.832968671Z"} +2026/03/20 17:34:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:24.575512801Z"} +2026/03/20 17:34:29 ───────────────────────────────────────────────── +2026/03/20 17:34:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:29.576116536Z"} +2026/03/20 17:34:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":552.8,"last_update":"2026-03-20T17:34:29.576062573Z"} +2026/03/20 17:34:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:29.585422702Z"} +2026/03/20 17:34:34 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":16.954644019988155,"throughput_eps":0,"last_update":"2026-03-20T17:34:29.718818034Z"} +2026/03/20 17:34:34 [transform_engine] {"stage_name":"transform_engine","events_processed":92,"events_dropped":0,"avg_latency_ms":97.58340447792932,"throughput_eps":0,"last_update":"2026-03-20T17:34:29.718719014Z"} +2026/03/20 17:34:34 ───────────────────────────────────────────────── +2026/03/20 17:34:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":553.8,"last_update":"2026-03-20T17:34:34.576700681Z"} +2026/03/20 17:34:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:34.584979504Z"} +2026/03/20 17:34:39 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":16.954644019988155,"throughput_eps":0,"last_update":"2026-03-20T17:34:34.719394611Z"} +2026/03/20 17:34:39 [transform_engine] {"stage_name":"transform_engine","events_processed":92,"events_dropped":0,"avg_latency_ms":97.58340447792932,"throughput_eps":0,"last_update":"2026-03-20T17:34:34.719434577Z"} +2026/03/20 17:34:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:34.575886354Z"} +2026/03/20 17:34:39 ───────────────────────────────────────────────── +2026/03/20 17:34:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:39.575554602Z"} +2026/03/20 17:34:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":554.8,"last_update":"2026-03-20T17:34:39.575600209Z"} +2026/03/20 17:34:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:39.586810558Z"} +2026/03/20 17:34:44 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":16.954644019988155,"throughput_eps":0,"last_update":"2026-03-20T17:34:39.719059829Z"} +2026/03/20 17:34:44 [transform_engine] {"stage_name":"transform_engine","events_processed":92,"events_dropped":0,"avg_latency_ms":97.58340447792932,"throughput_eps":0,"last_update":"2026-03-20T17:34:39.719168597Z"} +2026/03/20 17:34:44 ───────────────────────────────────────────────── +2026/03/20 17:34:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:44.575525632Z"} +2026/03/20 17:34:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":555.8,"last_update":"2026-03-20T17:34:44.576083419Z"} +2026/03/20 17:34:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:44.586291452Z"} +2026/03/20 17:34:49 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":16.954644019988155,"throughput_eps":0,"last_update":"2026-03-20T17:34:44.719782623Z"} +2026/03/20 17:34:49 [transform_engine] {"stage_name":"transform_engine","events_processed":92,"events_dropped":0,"avg_latency_ms":97.58340447792932,"throughput_eps":0,"last_update":"2026-03-20T17:34:44.719667112Z"} +2026/03/20 17:34:49 ───────────────────────────────────────────────── +2026/03/20 17:34:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":556.8,"last_update":"2026-03-20T17:34:49.576072605Z"} +2026/03/20 17:34:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:49.586237625Z"} +2026/03/20 17:34:54 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":16.954644019988155,"throughput_eps":0,"last_update":"2026-03-20T17:34:49.719486319Z"} +2026/03/20 17:34:54 [transform_engine] {"stage_name":"transform_engine","events_processed":92,"events_dropped":0,"avg_latency_ms":97.58340447792932,"throughput_eps":0,"last_update":"2026-03-20T17:34:49.719509443Z"} +2026/03/20 17:34:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:49.575662761Z"} +2026/03/20 17:34:54 ───────────────────────────────────────────────── +2026/03/20 17:34:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:54.575993369Z"} +2026/03/20 17:34:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":557.8,"last_update":"2026-03-20T17:34:54.576194674Z"} +2026/03/20 17:34:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:54.585071711Z"} +2026/03/20 17:34:59 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":16.954644019988155,"throughput_eps":0,"last_update":"2026-03-20T17:34:54.719529944Z"} +2026/03/20 17:34:59 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":91.38441778234346,"throughput_eps":0,"last_update":"2026-03-20T17:34:54.786079199Z"} +2026/03/20 17:34:59 ───────────────────────────────────────────────── +2026/03/20 17:35:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:59.585552021Z"} +2026/03/20 17:35:04 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":16.973065615990524,"throughput_eps":0,"last_update":"2026-03-20T17:34:59.71882865Z"} +2026/03/20 17:35:04 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":91.38441778234346,"throughput_eps":0,"last_update":"2026-03-20T17:34:59.718770809Z"} +2026/03/20 17:35:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:59.575992248Z"} +2026/03/20 17:35:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":558.8,"last_update":"2026-03-20T17:34:59.576388886Z"} +2026/03/20 17:35:04 ───────────────────────────────────────────────── +2026/03/20 17:35:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:09 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":16.973065615990524,"throughput_eps":0,"last_update":"2026-03-20T17:35:04.719604247Z"} +2026/03/20 17:35:09 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":91.38441778234346,"throughput_eps":0,"last_update":"2026-03-20T17:35:04.719619976Z"} +2026/03/20 17:35:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:04.575846346Z"} +2026/03/20 17:35:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":559.8,"last_update":"2026-03-20T17:35:04.576168442Z"} +2026/03/20 17:35:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1122,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:04.58641533Z"} +2026/03/20 17:35:09 ───────────────────────────────────────────────── +2026/03/20 17:35:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":560.8,"last_update":"2026-03-20T17:35:09.575836446Z"} +2026/03/20 17:35:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:09.584958803Z"} +2026/03/20 17:35:14 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":16.973065615990524,"throughput_eps":0,"last_update":"2026-03-20T17:35:09.719389872Z"} +2026/03/20 17:35:14 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":91.38441778234346,"throughput_eps":0,"last_update":"2026-03-20T17:35:09.719403467Z"} +2026/03/20 17:35:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:09.575495745Z"} +2026/03/20 17:35:14 ───────────────────────────────────────────────── +2026/03/20 17:35:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:14.575817048Z"} +2026/03/20 17:35:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":561.8,"last_update":"2026-03-20T17:35:14.576119296Z"} +2026/03/20 17:35:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1126,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:14.586210538Z"} +2026/03/20 17:35:19 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":16.973065615990524,"throughput_eps":0,"last_update":"2026-03-20T17:35:14.719477654Z"} +2026/03/20 17:35:19 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":91.38441778234346,"throughput_eps":0,"last_update":"2026-03-20T17:35:14.719485318Z"} +2026/03/20 17:35:19 ───────────────────────────────────────────────── +2026/03/20 17:35:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1128,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:19.584852439Z"} +2026/03/20 17:35:24 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":16.973065615990524,"throughput_eps":0,"last_update":"2026-03-20T17:35:19.71917548Z"} +2026/03/20 17:35:24 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":91.38441778234346,"throughput_eps":0,"last_update":"2026-03-20T17:35:19.719186962Z"} +2026/03/20 17:35:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:19.575913872Z"} +2026/03/20 17:35:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":562.8,"last_update":"2026-03-20T17:35:19.576206963Z"} +2026/03/20 17:35:24 ───────────────────────────────────────────────── +2026/03/20 17:35:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:24.576262655Z"} +2026/03/20 17:35:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":563.8,"last_update":"2026-03-20T17:35:24.576951704Z"} +2026/03/20 17:35:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1130,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:24.584860761Z"} +2026/03/20 17:35:29 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":16.973065615990524,"throughput_eps":0,"last_update":"2026-03-20T17:35:24.71925771Z"} +2026/03/20 17:35:29 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":95.56999942587477,"throughput_eps":0,"last_update":"2026-03-20T17:35:24.831586286Z"} +2026/03/20 17:35:29 ───────────────────────────────────────────────── +2026/03/20 17:35:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:29.575828235Z"} +2026/03/20 17:35:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":564.8,"last_update":"2026-03-20T17:35:29.57618627Z"} +2026/03/20 17:35:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:29.585073469Z"} +2026/03/20 17:35:34 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":16.85228469279242,"throughput_eps":0,"last_update":"2026-03-20T17:35:29.71944862Z"} +2026/03/20 17:35:34 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":95.56999942587477,"throughput_eps":0,"last_update":"2026-03-20T17:35:29.719464551Z"} +2026/03/20 17:35:34 ───────────────────────────────────────────────── +2026/03/20 17:35:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":565.8,"last_update":"2026-03-20T17:35:34.575990991Z"} +2026/03/20 17:35:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:34.585904373Z"} +2026/03/20 17:35:39 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":16.85228469279242,"throughput_eps":0,"last_update":"2026-03-20T17:35:34.719220915Z"} +2026/03/20 17:35:39 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":95.56999942587477,"throughput_eps":0,"last_update":"2026-03-20T17:35:34.719227518Z"} +2026/03/20 17:35:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:34.575595073Z"} +2026/03/20 17:35:39 ───────────────────────────────────────────────── +2026/03/20 17:35:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:39.575520577Z"} +2026/03/20 17:35:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":566.8,"last_update":"2026-03-20T17:35:39.576104905Z"} +2026/03/20 17:35:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:39.585828365Z"} +2026/03/20 17:35:44 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":16.85228469279242,"throughput_eps":0,"last_update":"2026-03-20T17:35:39.719095215Z"} +2026/03/20 17:35:44 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":95.56999942587477,"throughput_eps":0,"last_update":"2026-03-20T17:35:39.719104062Z"} +2026/03/20 17:35:44 ───────────────────────────────────────────────── +2026/03/20 17:35:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:44.575788422Z"} +2026/03/20 17:35:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":567.8,"last_update":"2026-03-20T17:35:44.575761851Z"} +2026/03/20 17:35:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:44.585789754Z"} +2026/03/20 17:35:49 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":16.85228469279242,"throughput_eps":0,"last_update":"2026-03-20T17:35:44.719238448Z"} +2026/03/20 17:35:49 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":95.56999942587477,"throughput_eps":0,"last_update":"2026-03-20T17:35:44.719252436Z"} +2026/03/20 17:35:49 ───────────────────────────────────────────────── +2026/03/20 17:35:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:49.575668925Z"} +2026/03/20 17:35:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":568.8,"last_update":"2026-03-20T17:35:49.575663144Z"} +2026/03/20 17:35:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:49.58620982Z"} +2026/03/20 17:35:54 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":16.85228469279242,"throughput_eps":0,"last_update":"2026-03-20T17:35:49.719464539Z"} +2026/03/20 17:35:54 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":95.56999942587477,"throughput_eps":0,"last_update":"2026-03-20T17:35:49.719472483Z"} +2026/03/20 17:35:54 ───────────────────────────────────────────────── +2026/03/20 17:35:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:54.575692838Z"} +2026/03/20 17:35:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":569.8,"last_update":"2026-03-20T17:35:54.576010375Z"} +2026/03/20 17:35:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:54.58729891Z"} +2026/03/20 17:35:59 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":16.85228469279242,"throughput_eps":0,"last_update":"2026-03-20T17:35:54.71962165Z"} +2026/03/20 17:35:59 [transform_engine] {"stage_name":"transform_engine","events_processed":95,"events_dropped":0,"avg_latency_ms":98.26300994069982,"throughput_eps":0,"last_update":"2026-03-20T17:35:54.828669697Z"} +2026/03/20 17:35:59 ───────────────────────────────────────────────── +2026/03/20 17:36:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:59.575970058Z"} +2026/03/20 17:36:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":570.8,"last_update":"2026-03-20T17:35:59.576238261Z"} +2026/03/20 17:36:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:59.585192311Z"} +2026/03/20 17:36:04 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":16.949330954233936,"throughput_eps":0,"last_update":"2026-03-20T17:35:59.719443616Z"} +2026/03/20 17:36:04 [transform_engine] {"stage_name":"transform_engine","events_processed":95,"events_dropped":0,"avg_latency_ms":98.26300994069982,"throughput_eps":0,"last_update":"2026-03-20T17:35:59.719458944Z"} +2026/03/20 17:36:04 ───────────────────────────────────────────────── +2026/03/20 17:36:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:09 [transform_engine] {"stage_name":"transform_engine","events_processed":95,"events_dropped":0,"avg_latency_ms":98.26300994069982,"throughput_eps":0,"last_update":"2026-03-20T17:36:04.718718476Z"} +2026/03/20 17:36:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:04.575798764Z"} +2026/03/20 17:36:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":571.8,"last_update":"2026-03-20T17:36:04.576172529Z"} +2026/03/20 17:36:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:04.586534141Z"} +2026/03/20 17:36:09 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":16.949330954233936,"throughput_eps":0,"last_update":"2026-03-20T17:36:04.718841271Z"} +2026/03/20 17:36:09 ───────────────────────────────────────────────── +2026/03/20 17:36:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:09.575882277Z"} +2026/03/20 17:36:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":572.8,"last_update":"2026-03-20T17:36:09.576503505Z"} +2026/03/20 17:36:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:09.585810842Z"} +2026/03/20 17:36:14 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":16.949330954233936,"throughput_eps":0,"last_update":"2026-03-20T17:36:09.719159428Z"} +2026/03/20 17:36:14 [transform_engine] {"stage_name":"transform_engine","events_processed":95,"events_dropped":0,"avg_latency_ms":98.26300994069982,"throughput_eps":0,"last_update":"2026-03-20T17:36:09.719062824Z"} +2026/03/20 17:36:14 ───────────────────────────────────────────────── +2026/03/20 17:36:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:14.585087691Z"} +2026/03/20 17:36:19 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":16.949330954233936,"throughput_eps":0,"last_update":"2026-03-20T17:36:14.719503674Z"} +2026/03/20 17:36:19 [transform_engine] {"stage_name":"transform_engine","events_processed":95,"events_dropped":0,"avg_latency_ms":98.26300994069982,"throughput_eps":0,"last_update":"2026-03-20T17:36:14.719408723Z"} +2026/03/20 17:36:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:14.576050382Z"} +2026/03/20 17:36:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":573.8,"last_update":"2026-03-20T17:36:14.576368721Z"} +2026/03/20 17:36:19 ───────────────────────────────────────────────── +2026/03/20 17:36:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:24 [transform_engine] {"stage_name":"transform_engine","events_processed":95,"events_dropped":0,"avg_latency_ms":98.26300994069982,"throughput_eps":0,"last_update":"2026-03-20T17:36:19.718743012Z"} +2026/03/20 17:36:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:19.575601931Z"} +2026/03/20 17:36:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":574.8,"last_update":"2026-03-20T17:36:19.575614975Z"} +2026/03/20 17:36:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:19.585514574Z"} +2026/03/20 17:36:24 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":16.949330954233936,"throughput_eps":0,"last_update":"2026-03-20T17:36:19.718778399Z"} +2026/03/20 17:36:24 ───────────────────────────────────────────────── +2026/03/20 17:36:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":575.8,"last_update":"2026-03-20T17:36:24.576093195Z"} +2026/03/20 17:36:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:24.58625135Z"} +2026/03/20 17:36:29 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":16.949330954233936,"throughput_eps":0,"last_update":"2026-03-20T17:36:24.719644617Z"} +2026/03/20 17:36:29 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":91.67847575255985,"throughput_eps":0,"last_update":"2026-03-20T17:36:24.785039009Z"} +2026/03/20 17:36:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:24.575739889Z"} +2026/03/20 17:36:29 ───────────────────────────────────────────────── +2026/03/20 17:36:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:34 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":17.03294816338715,"throughput_eps":0,"last_update":"2026-03-20T17:36:29.718987802Z"} +2026/03/20 17:36:34 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":91.67847575255985,"throughput_eps":0,"last_update":"2026-03-20T17:36:29.719000096Z"} +2026/03/20 17:36:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:29.576166332Z"} +2026/03/20 17:36:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":576.8,"last_update":"2026-03-20T17:36:29.57614938Z"} +2026/03/20 17:36:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:29.586883737Z"} +2026/03/20 17:36:34 ───────────────────────────────────────────────── +2026/03/20 17:36:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:39 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":91.67847575255985,"throughput_eps":0,"last_update":"2026-03-20T17:36:34.71895859Z"} +2026/03/20 17:36:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:34.575841279Z"} +2026/03/20 17:36:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":577.8,"last_update":"2026-03-20T17:36:34.576194616Z"} +2026/03/20 17:36:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:34.585700863Z"} +2026/03/20 17:36:39 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":17.03294816338715,"throughput_eps":0,"last_update":"2026-03-20T17:36:34.718949723Z"} +2026/03/20 17:36:39 ───────────────────────────────────────────────── +2026/03/20 17:36:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:39.586541521Z"} +2026/03/20 17:36:44 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":17.03294816338715,"throughput_eps":0,"last_update":"2026-03-20T17:36:39.718868601Z"} +2026/03/20 17:36:44 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":91.67847575255985,"throughput_eps":0,"last_update":"2026-03-20T17:36:39.718913707Z"} +2026/03/20 17:36:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:39.575559859Z"} +2026/03/20 17:36:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":578.8,"last_update":"2026-03-20T17:36:39.575673006Z"} +2026/03/20 17:36:44 ───────────────────────────────────────────────── +2026/03/20 17:36:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:44.575521853Z"} +2026/03/20 17:36:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":579.8,"last_update":"2026-03-20T17:36:44.575959631Z"} +2026/03/20 17:36:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:44.586767721Z"} +2026/03/20 17:36:49 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":17.03294816338715,"throughput_eps":0,"last_update":"2026-03-20T17:36:44.719085508Z"} +2026/03/20 17:36:49 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":91.67847575255985,"throughput_eps":0,"last_update":"2026-03-20T17:36:44.719039359Z"} +2026/03/20 17:36:49 ───────────────────────────────────────────────── +2026/03/20 17:36:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:49.575981917Z"} +2026/03/20 17:36:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":580.8,"last_update":"2026-03-20T17:36:49.576215935Z"} +2026/03/20 17:36:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:49.586949122Z"} +2026/03/20 17:36:54 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":17.03294816338715,"throughput_eps":0,"last_update":"2026-03-20T17:36:49.719158095Z"} +2026/03/20 17:36:54 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":91.67847575255985,"throughput_eps":0,"last_update":"2026-03-20T17:36:49.719188493Z"} +2026/03/20 17:36:54 ───────────────────────────────────────────────── +2026/03/20 17:36:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:59 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":17.03294816338715,"throughput_eps":0,"last_update":"2026-03-20T17:36:54.719044593Z"} +2026/03/20 17:36:59 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":86.19104040204789,"throughput_eps":0,"last_update":"2026-03-20T17:36:54.783336037Z"} +2026/03/20 17:36:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:54.575743201Z"} +2026/03/20 17:36:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":581.8,"last_update":"2026-03-20T17:36:54.576054937Z"} +2026/03/20 17:36:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:54.586779417Z"} +2026/03/20 17:36:59 ───────────────────────────────────────────────── +2026/03/20 17:37:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:04 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":17.274344530709723,"throughput_eps":0,"last_update":"2026-03-20T17:36:59.719644469Z"} +2026/03/20 17:37:04 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":86.19104040204789,"throughput_eps":0,"last_update":"2026-03-20T17:36:59.719765229Z"} +2026/03/20 17:37:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:59.575532761Z"} +2026/03/20 17:37:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":582.8,"last_update":"2026-03-20T17:36:59.576015516Z"} +2026/03/20 17:37:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:59.585418558Z"} +2026/03/20 17:37:04 ───────────────────────────────────────────────── +2026/03/20 17:37:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":583.8,"last_update":"2026-03-20T17:37:04.576374557Z"} +2026/03/20 17:37:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1170,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:04.584808906Z"} +2026/03/20 17:37:09 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":17.274344530709723,"throughput_eps":0,"last_update":"2026-03-20T17:37:04.719271404Z"} +2026/03/20 17:37:09 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":86.19104040204789,"throughput_eps":0,"last_update":"2026-03-20T17:37:04.719231788Z"} +2026/03/20 17:37:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:04.576388044Z"} +2026/03/20 17:37:09 ───────────────────────────────────────────────── +2026/03/20 17:37:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:14 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":17.274344530709723,"throughput_eps":0,"last_update":"2026-03-20T17:37:09.719057985Z"} +2026/03/20 17:37:14 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":86.19104040204789,"throughput_eps":0,"last_update":"2026-03-20T17:37:09.719080488Z"} +2026/03/20 17:37:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:09.575732874Z"} +2026/03/20 17:37:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":584.8,"last_update":"2026-03-20T17:37:09.576135685Z"} +2026/03/20 17:37:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:09.585835195Z"} +2026/03/20 17:37:14 ───────────────────────────────────────────────── +2026/03/20 17:37:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:14.575665117Z"} +2026/03/20 17:37:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":585.8,"last_update":"2026-03-20T17:37:14.575644327Z"} +2026/03/20 17:37:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:14.587296834Z"} +2026/03/20 17:37:19 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":17.274344530709723,"throughput_eps":0,"last_update":"2026-03-20T17:37:14.719569451Z"} +2026/03/20 17:37:19 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":86.19104040204789,"throughput_eps":0,"last_update":"2026-03-20T17:37:14.719608355Z"} +2026/03/20 17:37:19 ───────────────────────────────────────────────── +2026/03/20 17:37:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:19.57576098Z"} +2026/03/20 17:37:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":586.8,"last_update":"2026-03-20T17:37:19.576107013Z"} +2026/03/20 17:37:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:19.58738293Z"} +2026/03/20 17:37:24 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":17.274344530709723,"throughput_eps":0,"last_update":"2026-03-20T17:37:19.718806805Z"} +2026/03/20 17:37:24 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":86.19104040204789,"throughput_eps":0,"last_update":"2026-03-20T17:37:19.718724808Z"} +2026/03/20 17:37:24 ───────────────────────────────────────────────── +2026/03/20 17:37:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:24.575601612Z"} +2026/03/20 17:37:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":587.8,"last_update":"2026-03-20T17:37:24.575728775Z"} +2026/03/20 17:37:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:24.586042392Z"} +2026/03/20 17:37:29 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":17.274344530709723,"throughput_eps":0,"last_update":"2026-03-20T17:37:24.719371608Z"} +2026/03/20 17:37:29 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":82.07541952163831,"throughput_eps":0,"last_update":"2026-03-20T17:37:24.78491467Z"} +2026/03/20 17:37:29 ───────────────────────────────────────────────── +2026/03/20 17:37:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:34 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":17.33203122456778,"throughput_eps":0,"last_update":"2026-03-20T17:37:29.719665677Z"} +2026/03/20 17:37:34 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":82.07541952163831,"throughput_eps":0,"last_update":"2026-03-20T17:37:29.719782831Z"} +2026/03/20 17:37:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:29.575527401Z"} +2026/03/20 17:37:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":588.8,"last_update":"2026-03-20T17:37:29.575948527Z"} +2026/03/20 17:37:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:29.587441751Z"} +2026/03/20 17:37:34 ───────────────────────────────────────────────── +2026/03/20 17:37:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:34.575797182Z"} +2026/03/20 17:37:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":589.8,"last_update":"2026-03-20T17:37:34.576112986Z"} +2026/03/20 17:37:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:34.586687352Z"} +2026/03/20 17:37:39 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":17.33203122456778,"throughput_eps":0,"last_update":"2026-03-20T17:37:34.719034086Z"} +2026/03/20 17:37:39 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":82.07541952163831,"throughput_eps":0,"last_update":"2026-03-20T17:37:34.718933143Z"} +2026/03/20 17:37:39 ───────────────────────────────────────────────── +2026/03/20 17:37:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":590.8,"last_update":"2026-03-20T17:37:39.576734109Z"} +2026/03/20 17:37:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:39.584945864Z"} +2026/03/20 17:37:44 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":17.33203122456778,"throughput_eps":0,"last_update":"2026-03-20T17:37:39.719329481Z"} +2026/03/20 17:37:44 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":82.07541952163831,"throughput_eps":0,"last_update":"2026-03-20T17:37:39.719402219Z"} +2026/03/20 17:37:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:39.576113742Z"} +2026/03/20 17:37:44 ───────────────────────────────────────────────── +2026/03/20 17:37:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:49 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":82.07541952163831,"throughput_eps":0,"last_update":"2026-03-20T17:37:44.718627096Z"} +2026/03/20 17:37:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:44.575544288Z"} +2026/03/20 17:37:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":591.8,"last_update":"2026-03-20T17:37:44.575590667Z"} +2026/03/20 17:37:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:44.585456987Z"} +2026/03/20 17:37:49 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":17.33203122456778,"throughput_eps":0,"last_update":"2026-03-20T17:37:44.719753912Z"} +2026/03/20 17:37:49 ───────────────────────────────────────────────── +2026/03/20 17:37:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:49.575580079Z"} +2026/03/20 17:37:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":592.8,"last_update":"2026-03-20T17:37:49.575706902Z"} +2026/03/20 17:37:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:49.586040908Z"} +2026/03/20 17:37:54 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":17.33203122456778,"throughput_eps":0,"last_update":"2026-03-20T17:37:49.719416755Z"} +2026/03/20 17:37:54 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":82.07541952163831,"throughput_eps":0,"last_update":"2026-03-20T17:37:49.719457652Z"} +2026/03/20 17:37:54 ───────────────────────────────────────────────── +2026/03/20 17:37:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:54.575545711Z"} +2026/03/20 17:37:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":593.8,"last_update":"2026-03-20T17:37:54.575794056Z"} +2026/03/20 17:37:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:54.586274904Z"} +2026/03/20 17:37:59 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":17.33203122456778,"throughput_eps":0,"last_update":"2026-03-20T17:37:54.719618703Z"} +2026/03/20 17:37:59 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":79.51010901731065,"throughput_eps":0,"last_update":"2026-03-20T17:37:54.789013608Z"} +2026/03/20 17:37:59 ───────────────────────────────────────────────── +2026/03/20 17:38:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:59.585364868Z"} +2026/03/20 17:38:04 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":17.480072179654222,"throughput_eps":0,"last_update":"2026-03-20T17:37:59.719820948Z"} +2026/03/20 17:38:04 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":79.51010901731065,"throughput_eps":0,"last_update":"2026-03-20T17:37:59.719854784Z"} +2026/03/20 17:38:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:59.575905073Z"} +2026/03/20 17:38:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":594.8,"last_update":"2026-03-20T17:37:59.576148108Z"} +2026/03/20 17:38:04 ───────────────────────────────────────────────── +2026/03/20 17:38:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:04.585102225Z"} +2026/03/20 17:38:09 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":17.480072179654222,"throughput_eps":0,"last_update":"2026-03-20T17:38:04.719485019Z"} +2026/03/20 17:38:09 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":79.51010901731065,"throughput_eps":0,"last_update":"2026-03-20T17:38:04.719518403Z"} +2026/03/20 17:38:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:04.575927205Z"} +2026/03/20 17:38:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":595.8,"last_update":"2026-03-20T17:38:04.576235264Z"} +2026/03/20 17:38:09 ───────────────────────────────────────────────── +2026/03/20 17:38:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:14 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":17.480072179654222,"throughput_eps":0,"last_update":"2026-03-20T17:38:09.719243124Z"} +2026/03/20 17:38:14 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":79.51010901731065,"throughput_eps":0,"last_update":"2026-03-20T17:38:09.71940327Z"} +2026/03/20 17:38:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:09.575874097Z"} +2026/03/20 17:38:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":596.8,"last_update":"2026-03-20T17:38:09.576170554Z"} +2026/03/20 17:38:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:09.585005632Z"} +2026/03/20 17:38:14 ───────────────────────────────────────────────── +2026/03/20 17:38:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:14.575943922Z"} +2026/03/20 17:38:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":597.8,"last_update":"2026-03-20T17:38:14.576502922Z"} +2026/03/20 17:38:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:14.585224614Z"} +2026/03/20 17:38:19 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":17.480072179654222,"throughput_eps":0,"last_update":"2026-03-20T17:38:14.719461146Z"} +2026/03/20 17:38:19 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":79.51010901731065,"throughput_eps":0,"last_update":"2026-03-20T17:38:14.71950485Z"} +2026/03/20 17:38:19 ───────────────────────────────────────────────── +2026/03/20 17:38:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:19.57556586Z"} +2026/03/20 17:38:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":598.8,"last_update":"2026-03-20T17:38:19.575681631Z"} +2026/03/20 17:38:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:19.585343293Z"} +2026/03/20 17:38:24 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":17.480072179654222,"throughput_eps":0,"last_update":"2026-03-20T17:38:19.719489206Z"} +2026/03/20 17:38:24 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":79.51010901731065,"throughput_eps":0,"last_update":"2026-03-20T17:38:19.719530154Z"} +2026/03/20 17:38:24 ───────────────────────────────────────────────── +2026/03/20 17:38:24 mad: auto-calibrated on 100 vectors (51 features) +2026/03/20 17:38:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":599.8,"last_update":"2026-03-20T17:38:24.576497585Z"} +2026/03/20 17:38:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:24.586858585Z"} +2026/03/20 17:38:29 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":17.480072179654222,"throughput_eps":0,"last_update":"2026-03-20T17:38:24.719090459Z"} +2026/03/20 17:38:29 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":86.33552421384853,"throughput_eps":0,"last_update":"2026-03-20T17:38:24.832840158Z"} +2026/03/20 17:38:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:24.575947021Z"} +2026/03/20 17:38:29 ───────────────────────────────────────────────── +2026/03/20 17:38:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:29.575510826Z"} +2026/03/20 17:38:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":600.8,"last_update":"2026-03-20T17:38:29.576042023Z"} +2026/03/20 17:38:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:29.586397363Z"} +2026/03/20 17:38:34 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":17.69173594372338,"throughput_eps":0,"last_update":"2026-03-20T17:38:29.719832072Z"} +2026/03/20 17:38:34 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":86.33552421384853,"throughput_eps":0,"last_update":"2026-03-20T17:38:29.718693903Z"} +2026/03/20 17:38:34 ───────────────────────────────────────────────── +2026/03/20 17:38:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:34.575508356Z"} +2026/03/20 17:38:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":601.8,"last_update":"2026-03-20T17:38:34.575712957Z"} +2026/03/20 17:38:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1206,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:34.586712811Z"} +2026/03/20 17:38:39 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":17.69173594372338,"throughput_eps":0,"last_update":"2026-03-20T17:38:34.719116019Z"} +2026/03/20 17:38:39 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":86.33552421384853,"throughput_eps":0,"last_update":"2026-03-20T17:38:34.719088126Z"} +2026/03/20 17:38:39 ───────────────────────────────────────────────── +2026/03/20 17:38:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:44 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":17.69173594372338,"throughput_eps":0,"last_update":"2026-03-20T17:38:39.719714325Z"} +2026/03/20 17:38:44 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":86.33552421384853,"throughput_eps":0,"last_update":"2026-03-20T17:38:39.719602722Z"} +2026/03/20 17:38:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:39.575758452Z"} +2026/03/20 17:38:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":602.8,"last_update":"2026-03-20T17:38:39.576191691Z"} +2026/03/20 17:38:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:39.585382743Z"} +2026/03/20 17:38:44 ───────────────────────────────────────────────── +2026/03/20 17:38:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:44.575683671Z"} +2026/03/20 17:38:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":603.8,"last_update":"2026-03-20T17:38:44.576034622Z"} +2026/03/20 17:38:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1210,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:44.586551812Z"} +2026/03/20 17:38:49 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":17.69173594372338,"throughput_eps":0,"last_update":"2026-03-20T17:38:44.718821062Z"} +2026/03/20 17:38:49 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":86.33552421384853,"throughput_eps":0,"last_update":"2026-03-20T17:38:44.718734566Z"} +2026/03/20 17:38:49 ───────────────────────────────────────────────── +2026/03/20 17:38:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:49.575606146Z"} +2026/03/20 17:38:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":604.8,"last_update":"2026-03-20T17:38:49.575758077Z"} +2026/03/20 17:38:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:49.585073858Z"} +2026/03/20 17:38:54 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":17.69173594372338,"throughput_eps":0,"last_update":"2026-03-20T17:38:49.719389537Z"} +2026/03/20 17:38:54 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":86.33552421384853,"throughput_eps":0,"last_update":"2026-03-20T17:38:49.719389147Z"} +2026/03/20 17:38:54 ───────────────────────────────────────────────── +2026/03/20 17:38:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:54.576493789Z"} +2026/03/20 17:38:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":605.8,"last_update":"2026-03-20T17:38:54.57537152Z"} +2026/03/20 17:38:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:54.58516692Z"} +2026/03/20 17:38:59 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":17.69173594372338,"throughput_eps":0,"last_update":"2026-03-20T17:38:54.720496494Z"} +2026/03/20 17:38:59 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":91.58801217107883,"throughput_eps":0,"last_update":"2026-03-20T17:38:54.831972409Z"} +2026/03/20 17:38:59 ───────────────────────────────────────────────── +2026/03/20 17:39:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:04 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":91.58801217107883,"throughput_eps":0,"last_update":"2026-03-20T17:38:59.718768573Z"} +2026/03/20 17:39:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:59.575523245Z"} +2026/03/20 17:39:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":606.8,"last_update":"2026-03-20T17:38:59.575761811Z"} +2026/03/20 17:39:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:59.586602011Z"} +2026/03/20 17:39:04 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":17.709567354978706,"throughput_eps":0,"last_update":"2026-03-20T17:38:59.718808069Z"} +2026/03/20 17:39:04 ───────────────────────────────────────────────── +2026/03/20 17:39:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:04.575913133Z"} +2026/03/20 17:39:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":607.8,"last_update":"2026-03-20T17:39:04.576216574Z"} +2026/03/20 17:39:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:04.58593717Z"} +2026/03/20 17:39:09 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":17.709567354978706,"throughput_eps":0,"last_update":"2026-03-20T17:39:04.719263757Z"} +2026/03/20 17:39:09 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":91.58801217107883,"throughput_eps":0,"last_update":"2026-03-20T17:39:04.719279237Z"} +2026/03/20 17:39:09 ───────────────────────────────────────────────── +2026/03/20 17:39:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:09.575815555Z"} +2026/03/20 17:39:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":608.8,"last_update":"2026-03-20T17:39:09.576186465Z"} +2026/03/20 17:39:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:09.584581544Z"} +2026/03/20 17:39:14 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":17.709567354978706,"throughput_eps":0,"last_update":"2026-03-20T17:39:09.718806073Z"} +2026/03/20 17:39:14 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":91.58801217107883,"throughput_eps":0,"last_update":"2026-03-20T17:39:09.71874165Z"} +2026/03/20 17:39:14 ───────────────────────────────────────────────── +2026/03/20 17:39:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:14.575834336Z"} +2026/03/20 17:39:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":609.8,"last_update":"2026-03-20T17:39:14.576147135Z"} +2026/03/20 17:39:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1222,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:14.585835159Z"} +2026/03/20 17:39:19 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":17.709567354978706,"throughput_eps":0,"last_update":"2026-03-20T17:39:14.719224393Z"} +2026/03/20 17:39:19 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":91.58801217107883,"throughput_eps":0,"last_update":"2026-03-20T17:39:14.719236446Z"} +2026/03/20 17:39:19 ───────────────────────────────────────────────── +2026/03/20 17:39:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:19.586266163Z"} +2026/03/20 17:39:24 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":17.709567354978706,"throughput_eps":0,"last_update":"2026-03-20T17:39:19.719583361Z"} +2026/03/20 17:39:24 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":91.58801217107883,"throughput_eps":0,"last_update":"2026-03-20T17:39:19.719594984Z"} +2026/03/20 17:39:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:19.57566498Z"} +2026/03/20 17:39:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":610.8,"last_update":"2026-03-20T17:39:19.576039497Z"} +2026/03/20 17:39:24 ───────────────────────────────────────────────── +2026/03/20 17:39:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:24.57601994Z"} +2026/03/20 17:39:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":611.8,"last_update":"2026-03-20T17:39:24.576262325Z"} +2026/03/20 17:39:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:24.58554863Z"} +2026/03/20 17:39:29 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":17.709567354978706,"throughput_eps":0,"last_update":"2026-03-20T17:39:24.718968519Z"} +2026/03/20 17:39:29 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":95.53450053686308,"throughput_eps":0,"last_update":"2026-03-20T17:39:24.830018705Z"} +2026/03/20 17:39:29 ───────────────────────────────────────────────── +2026/03/20 17:39:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:29.575564692Z"} +2026/03/20 17:39:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":612.8,"last_update":"2026-03-20T17:39:29.57567382Z"} +2026/03/20 17:39:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:29.585949161Z"} +2026/03/20 17:39:34 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":17.847818683982965,"throughput_eps":0,"last_update":"2026-03-20T17:39:29.719387648Z"} +2026/03/20 17:39:34 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":95.53450053686308,"throughput_eps":0,"last_update":"2026-03-20T17:39:29.719416634Z"} +2026/03/20 17:39:34 ───────────────────────────────────────────────── +2026/03/20 17:39:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":613.8,"last_update":"2026-03-20T17:39:34.575745944Z"} +2026/03/20 17:39:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:34.586117558Z"} +2026/03/20 17:39:39 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":17.847818683982965,"throughput_eps":0,"last_update":"2026-03-20T17:39:34.719549426Z"} +2026/03/20 17:39:39 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":95.53450053686308,"throughput_eps":0,"last_update":"2026-03-20T17:39:34.719499601Z"} +2026/03/20 17:39:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:34.575553605Z"} +2026/03/20 17:39:39 ───────────────────────────────────────────────── +2026/03/20 17:39:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:44 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":17.847818683982965,"throughput_eps":0,"last_update":"2026-03-20T17:39:39.719066188Z"} +2026/03/20 17:39:44 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":95.53450053686308,"throughput_eps":0,"last_update":"2026-03-20T17:39:39.719108038Z"} +2026/03/20 17:39:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:39.576012037Z"} +2026/03/20 17:39:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":614.8,"last_update":"2026-03-20T17:39:39.576342168Z"} +2026/03/20 17:39:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:39.58480586Z"} +2026/03/20 17:39:44 ───────────────────────────────────────────────── +2026/03/20 17:39:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":615.8,"last_update":"2026-03-20T17:39:44.575828288Z"} +2026/03/20 17:39:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:44.585213213Z"} +2026/03/20 17:39:49 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":17.847818683982965,"throughput_eps":0,"last_update":"2026-03-20T17:39:44.71952355Z"} +2026/03/20 17:39:49 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":95.53450053686308,"throughput_eps":0,"last_update":"2026-03-20T17:39:44.719540632Z"} +2026/03/20 17:39:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:44.575503616Z"} +2026/03/20 17:39:49 ───────────────────────────────────────────────── +2026/03/20 17:39:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:54 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":95.53450053686308,"throughput_eps":0,"last_update":"2026-03-20T17:39:49.719322747Z"} +2026/03/20 17:39:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:49.575994995Z"} +2026/03/20 17:39:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":616.8,"last_update":"2026-03-20T17:39:49.576175822Z"} +2026/03/20 17:39:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:49.585949502Z"} +2026/03/20 17:39:54 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":17.847818683982965,"throughput_eps":0,"last_update":"2026-03-20T17:39:49.719275777Z"} +2026/03/20 17:39:54 ───────────────────────────────────────────────── +2026/03/20 17:39:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:54.586086461Z"} +2026/03/20 17:39:59 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":17.847818683982965,"throughput_eps":0,"last_update":"2026-03-20T17:39:54.719545823Z"} +2026/03/20 17:39:59 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":89.12078422949047,"throughput_eps":0,"last_update":"2026-03-20T17:39:54.782912111Z"} +2026/03/20 17:39:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:54.575519652Z"} +2026/03/20 17:39:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":617.8,"last_update":"2026-03-20T17:39:54.575824305Z"} +2026/03/20 17:39:59 ───────────────────────────────────────────────── +2026/03/20 17:40:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":618.8,"last_update":"2026-03-20T17:39:59.576010935Z"} +2026/03/20 17:40:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:59.586233063Z"} +2026/03/20 17:40:04 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":17.667138547186372,"throughput_eps":0,"last_update":"2026-03-20T17:39:59.719412012Z"} +2026/03/20 17:40:04 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":89.12078422949047,"throughput_eps":0,"last_update":"2026-03-20T17:39:59.71951561Z"} +2026/03/20 17:40:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:59.575557837Z"} +2026/03/20 17:40:04 ───────────────────────────────────────────────── +2026/03/20 17:40:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:09 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":17.667138547186372,"throughput_eps":0,"last_update":"2026-03-20T17:40:04.719174024Z"} +2026/03/20 17:40:09 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":89.12078422949047,"throughput_eps":0,"last_update":"2026-03-20T17:40:04.719153765Z"} +2026/03/20 17:40:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:04.575672089Z"} +2026/03/20 17:40:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":619.8,"last_update":"2026-03-20T17:40:04.57608017Z"} +2026/03/20 17:40:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:04.594925789Z"} +2026/03/20 17:40:09 ───────────────────────────────────────────────── +2026/03/20 17:40:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:09.57560077Z"} +2026/03/20 17:40:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":620.8,"last_update":"2026-03-20T17:40:09.576111198Z"} +2026/03/20 17:40:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:09.586264345Z"} +2026/03/20 17:40:14 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":17.667138547186372,"throughput_eps":0,"last_update":"2026-03-20T17:40:09.719498796Z"} +2026/03/20 17:40:14 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":89.12078422949047,"throughput_eps":0,"last_update":"2026-03-20T17:40:09.719613336Z"} +2026/03/20 17:40:14 ───────────────────────────────────────────────── +2026/03/20 17:40:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:14.575836219Z"} +2026/03/20 17:40:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":621.8,"last_update":"2026-03-20T17:40:14.576608678Z"} +2026/03/20 17:40:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1246,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:14.586176085Z"} +2026/03/20 17:40:19 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":17.667138547186372,"throughput_eps":0,"last_update":"2026-03-20T17:40:14.719527564Z"} +2026/03/20 17:40:19 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":89.12078422949047,"throughput_eps":0,"last_update":"2026-03-20T17:40:14.71947841Z"} +2026/03/20 17:40:19 ───────────────────────────────────────────────── +2026/03/20 17:40:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:24 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":89.12078422949047,"throughput_eps":0,"last_update":"2026-03-20T17:40:19.719393149Z"} +2026/03/20 17:40:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:19.575986518Z"} +2026/03/20 17:40:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":622.8,"last_update":"2026-03-20T17:40:19.576287174Z"} +2026/03/20 17:40:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:19.586154014Z"} +2026/03/20 17:40:24 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":17.667138547186372,"throughput_eps":0,"last_update":"2026-03-20T17:40:19.719437995Z"} +2026/03/20 17:40:24 ───────────────────────────────────────────────── +2026/03/20 17:40:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:29 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":17.667138547186372,"throughput_eps":0,"last_update":"2026-03-20T17:40:24.719838314Z"} +2026/03/20 17:40:29 [transform_engine] {"stage_name":"transform_engine","events_processed":104,"events_dropped":0,"avg_latency_ms":93.97818178359239,"throughput_eps":0,"last_update":"2026-03-20T17:40:24.832153444Z"} +2026/03/20 17:40:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:24.575511247Z"} +2026/03/20 17:40:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":623.8,"last_update":"2026-03-20T17:40:24.575837481Z"} +2026/03/20 17:40:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:24.586194831Z"} +2026/03/20 17:40:29 ───────────────────────────────────────────────── +2026/03/20 17:40:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:29.575726077Z"} +2026/03/20 17:40:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":624.8,"last_update":"2026-03-20T17:40:29.576125672Z"} +2026/03/20 17:40:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:29.586005707Z"} +2026/03/20 17:40:34 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":17.7591440377491,"throughput_eps":0,"last_update":"2026-03-20T17:40:29.719421488Z"} +2026/03/20 17:40:34 [transform_engine] {"stage_name":"transform_engine","events_processed":104,"events_dropped":0,"avg_latency_ms":93.97818178359239,"throughput_eps":0,"last_update":"2026-03-20T17:40:29.719389346Z"} +2026/03/20 17:40:34 ───────────────────────────────────────────────── +2026/03/20 17:40:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":625.8,"last_update":"2026-03-20T17:40:34.575679031Z"} +2026/03/20 17:40:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:34.586907018Z"} +2026/03/20 17:40:39 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":17.7591440377491,"throughput_eps":0,"last_update":"2026-03-20T17:40:34.719148684Z"} +2026/03/20 17:40:39 [transform_engine] {"stage_name":"transform_engine","events_processed":104,"events_dropped":0,"avg_latency_ms":93.97818178359239,"throughput_eps":0,"last_update":"2026-03-20T17:40:34.719160416Z"} +2026/03/20 17:40:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:34.575522822Z"} +2026/03/20 17:40:39 ───────────────────────────────────────────────── +2026/03/20 17:40:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:39.575511792Z"} +2026/03/20 17:40:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":626.8,"last_update":"2026-03-20T17:40:39.57558381Z"} +2026/03/20 17:40:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:39.586226886Z"} +2026/03/20 17:40:44 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":17.7591440377491,"throughput_eps":0,"last_update":"2026-03-20T17:40:39.71953194Z"} +2026/03/20 17:40:44 [transform_engine] {"stage_name":"transform_engine","events_processed":104,"events_dropped":0,"avg_latency_ms":93.97818178359239,"throughput_eps":0,"last_update":"2026-03-20T17:40:39.719486684Z"} +2026/03/20 17:40:44 ───────────────────────────────────────────────── +2026/03/20 17:40:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:44.575942231Z"} +2026/03/20 17:40:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":627.8,"last_update":"2026-03-20T17:40:44.576294916Z"} +2026/03/20 17:40:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:44.585435527Z"} +2026/03/20 17:40:49 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":17.7591440377491,"throughput_eps":0,"last_update":"2026-03-20T17:40:44.71973091Z"} +2026/03/20 17:40:49 [transform_engine] {"stage_name":"transform_engine","events_processed":104,"events_dropped":0,"avg_latency_ms":93.97818178359239,"throughput_eps":0,"last_update":"2026-03-20T17:40:44.719848885Z"} +2026/03/20 17:40:49 ───────────────────────────────────────────────── +2026/03/20 17:40:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:54 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":17.7591440377491,"throughput_eps":0,"last_update":"2026-03-20T17:40:49.719370303Z"} +2026/03/20 17:40:54 [transform_engine] {"stage_name":"transform_engine","events_processed":104,"events_dropped":0,"avg_latency_ms":93.97818178359239,"throughput_eps":0,"last_update":"2026-03-20T17:40:49.719381183Z"} +2026/03/20 17:40:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:49.57587878Z"} +2026/03/20 17:40:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":628.8,"last_update":"2026-03-20T17:40:49.576170128Z"} +2026/03/20 17:40:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:49.584988181Z"} +2026/03/20 17:40:54 ───────────────────────────────────────────────── +2026/03/20 17:40:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:54.586085656Z"} +2026/03/20 17:40:59 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":17.7591440377491,"throughput_eps":0,"last_update":"2026-03-20T17:40:54.719319652Z"} +2026/03/20 17:40:59 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":88.22361042687392,"throughput_eps":0,"last_update":"2026-03-20T17:40:54.784537591Z"} +2026/03/20 17:40:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:54.575959819Z"} +2026/03/20 17:40:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":629.8,"last_update":"2026-03-20T17:40:54.576276004Z"} +2026/03/20 17:40:59 ───────────────────────────────────────────────── +2026/03/20 17:41:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:59.585317592Z"} +2026/03/20 17:41:04 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":17.49918003019928,"throughput_eps":0,"last_update":"2026-03-20T17:40:59.719545894Z"} +2026/03/20 17:41:04 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":88.22361042687392,"throughput_eps":0,"last_update":"2026-03-20T17:40:59.719586582Z"} +2026/03/20 17:41:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:59.575813705Z"} +2026/03/20 17:41:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":630.8,"last_update":"2026-03-20T17:40:59.576183763Z"} +2026/03/20 17:41:04 ───────────────────────────────────────────────── +2026/03/20 17:41:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:04.576306004Z"} +2026/03/20 17:41:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":631.8,"last_update":"2026-03-20T17:41:04.576187136Z"} +2026/03/20 17:41:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:04.584783576Z"} +2026/03/20 17:41:09 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":17.49918003019928,"throughput_eps":0,"last_update":"2026-03-20T17:41:04.719160245Z"} +2026/03/20 17:41:09 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":88.22361042687392,"throughput_eps":0,"last_update":"2026-03-20T17:41:04.719215731Z"} +2026/03/20 17:41:09 ───────────────────────────────────────────────── +2026/03/20 17:41:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:14 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":88.22361042687392,"throughput_eps":0,"last_update":"2026-03-20T17:41:09.719588455Z"} +2026/03/20 17:41:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:09.575498555Z"} +2026/03/20 17:41:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":632.8,"last_update":"2026-03-20T17:41:09.576032026Z"} +2026/03/20 17:41:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:09.586188223Z"} +2026/03/20 17:41:14 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":17.49918003019928,"throughput_eps":0,"last_update":"2026-03-20T17:41:09.719731048Z"} +2026/03/20 17:41:14 ───────────────────────────────────────────────── +2026/03/20 17:41:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:14.57566398Z"} +2026/03/20 17:41:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":633.8,"last_update":"2026-03-20T17:41:14.576085808Z"} +2026/03/20 17:41:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:14.585666683Z"} +2026/03/20 17:41:19 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":17.49918003019928,"throughput_eps":0,"last_update":"2026-03-20T17:41:14.719006162Z"} +2026/03/20 17:41:19 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":88.22361042687392,"throughput_eps":0,"last_update":"2026-03-20T17:41:14.719060075Z"} +2026/03/20 17:41:19 ───────────────────────────────────────────────── +2026/03/20 17:41:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:19.575794585Z"} +2026/03/20 17:41:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":634.8,"last_update":"2026-03-20T17:41:19.576149926Z"} +2026/03/20 17:41:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:19.584465077Z"} +2026/03/20 17:41:24 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":17.49918003019928,"throughput_eps":0,"last_update":"2026-03-20T17:41:19.718923962Z"} +2026/03/20 17:41:24 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":88.22361042687392,"throughput_eps":0,"last_update":"2026-03-20T17:41:19.71865156Z"} +2026/03/20 17:41:24 ───────────────────────────────────────────────── +2026/03/20 17:41:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:24.575703264Z"} +2026/03/20 17:41:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":635.8,"last_update":"2026-03-20T17:41:24.576094733Z"} +2026/03/20 17:41:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:24.587051563Z"} +2026/03/20 17:41:29 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":17.49918003019928,"throughput_eps":0,"last_update":"2026-03-20T17:41:24.719443854Z"} +2026/03/20 17:41:29 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":93.35834174149915,"throughput_eps":0,"last_update":"2026-03-20T17:41:24.833309489Z"} +2026/03/20 17:41:29 ───────────────────────────────────────────────── +2026/03/20 17:41:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:29.575921282Z"} +2026/03/20 17:41:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":636.8,"last_update":"2026-03-20T17:41:29.576288444Z"} +2026/03/20 17:41:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1276,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:29.585732999Z"} +2026/03/20 17:41:34 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":17.439795824159425,"throughput_eps":0,"last_update":"2026-03-20T17:41:29.719188016Z"} +2026/03/20 17:41:34 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":93.35834174149915,"throughput_eps":0,"last_update":"2026-03-20T17:41:29.719220047Z"} +2026/03/20 17:41:34 ───────────────────────────────────────────────── +2026/03/20 17:41:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:39 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":93.35834174149915,"throughput_eps":0,"last_update":"2026-03-20T17:41:34.718776275Z"} +2026/03/20 17:41:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:34.575735149Z"} +2026/03/20 17:41:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":637.8,"last_update":"2026-03-20T17:41:34.576015586Z"} +2026/03/20 17:41:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:34.586541071Z"} +2026/03/20 17:41:39 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":17.439795824159425,"throughput_eps":0,"last_update":"2026-03-20T17:41:34.718795051Z"} +2026/03/20 17:41:39 ───────────────────────────────────────────────── +2026/03/20 17:41:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":638.8,"last_update":"2026-03-20T17:41:39.575425095Z"} +2026/03/20 17:41:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:39.585191817Z"} +2026/03/20 17:41:44 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":17.439795824159425,"throughput_eps":0,"last_update":"2026-03-20T17:41:39.719481258Z"} +2026/03/20 17:41:44 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":93.35834174149915,"throughput_eps":0,"last_update":"2026-03-20T17:41:39.719580858Z"} +2026/03/20 17:41:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:39.576486007Z"} +2026/03/20 17:41:44 ───────────────────────────────────────────────── +2026/03/20 17:41:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:44.575766842Z"} +2026/03/20 17:41:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":639.8,"last_update":"2026-03-20T17:41:44.57617322Z"} +2026/03/20 17:41:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:44.587059956Z"} +2026/03/20 17:41:49 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":17.439795824159425,"throughput_eps":0,"last_update":"2026-03-20T17:41:44.719438761Z"} +2026/03/20 17:41:49 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":93.35834174149915,"throughput_eps":0,"last_update":"2026-03-20T17:41:44.719540676Z"} +2026/03/20 17:41:49 ───────────────────────────────────────────────── +2026/03/20 17:41:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:49.575749313Z"} +2026/03/20 17:41:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":640.8,"last_update":"2026-03-20T17:41:49.576030892Z"} +2026/03/20 17:41:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:49.587399652Z"} +2026/03/20 17:41:54 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":17.439795824159425,"throughput_eps":0,"last_update":"2026-03-20T17:41:49.719780131Z"} +2026/03/20 17:41:54 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":93.35834174149915,"throughput_eps":0,"last_update":"2026-03-20T17:41:49.719709516Z"} +2026/03/20 17:41:54 ───────────────────────────────────────────────── +2026/03/20 17:41:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1286,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:54.586621089Z"} +2026/03/20 17:41:59 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":17.439795824159425,"throughput_eps":0,"last_update":"2026-03-20T17:41:54.719451553Z"} +2026/03/20 17:41:59 [transform_engine] {"stage_name":"transform_engine","events_processed":107,"events_dropped":0,"avg_latency_ms":87.75788319319932,"throughput_eps":0,"last_update":"2026-03-20T17:41:54.784146627Z"} +2026/03/20 17:41:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:54.576429644Z"} +2026/03/20 17:41:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":641.8,"last_update":"2026-03-20T17:41:54.575407857Z"} +2026/03/20 17:41:59 ───────────────────────────────────────────────── +2026/03/20 17:42:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:04 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":17.33786845932754,"throughput_eps":0,"last_update":"2026-03-20T17:41:59.71926674Z"} +2026/03/20 17:42:04 [transform_engine] {"stage_name":"transform_engine","events_processed":107,"events_dropped":0,"avg_latency_ms":87.75788319319932,"throughput_eps":0,"last_update":"2026-03-20T17:41:59.719238937Z"} +2026/03/20 17:42:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:59.576664733Z"} +2026/03/20 17:42:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":642.8,"last_update":"2026-03-20T17:41:59.575467048Z"} +2026/03/20 17:42:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:59.585852415Z"} +2026/03/20 17:42:04 ───────────────────────────────────────────────── +2026/03/20 17:42:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:04.585594802Z"} +2026/03/20 17:42:09 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":17.33786845932754,"throughput_eps":0,"last_update":"2026-03-20T17:42:04.718792834Z"} +2026/03/20 17:42:09 [transform_engine] {"stage_name":"transform_engine","events_processed":107,"events_dropped":0,"avg_latency_ms":87.75788319319932,"throughput_eps":0,"last_update":"2026-03-20T17:42:04.718753659Z"} +2026/03/20 17:42:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:04.575538876Z"} +2026/03/20 17:42:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":643.8,"last_update":"2026-03-20T17:42:04.575550618Z"} +2026/03/20 17:42:09 ───────────────────────────────────────────────── +2026/03/20 17:42:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:14 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":17.33786845932754,"throughput_eps":0,"last_update":"2026-03-20T17:42:09.719381462Z"} +2026/03/20 17:42:14 [transform_engine] {"stage_name":"transform_engine","events_processed":107,"events_dropped":0,"avg_latency_ms":87.75788319319932,"throughput_eps":0,"last_update":"2026-03-20T17:42:09.719400277Z"} +2026/03/20 17:42:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:09.575933678Z"} +2026/03/20 17:42:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":644.8,"last_update":"2026-03-20T17:42:09.576323676Z"} +2026/03/20 17:42:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:09.585018435Z"} +2026/03/20 17:42:14 ───────────────────────────────────────────────── +2026/03/20 17:42:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:14.575759912Z"} +2026/03/20 17:42:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":645.8,"last_update":"2026-03-20T17:42:14.576205305Z"} +2026/03/20 17:42:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:14.58542994Z"} +2026/03/20 17:42:19 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":17.33786845932754,"throughput_eps":0,"last_update":"2026-03-20T17:42:14.718881613Z"} +2026/03/20 17:42:19 [transform_engine] {"stage_name":"transform_engine","events_processed":107,"events_dropped":0,"avg_latency_ms":87.75788319319932,"throughput_eps":0,"last_update":"2026-03-20T17:42:14.718770781Z"} +2026/03/20 17:42:19 ───────────────────────────────────────────────── +2026/03/20 17:42:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:19.575487883Z"} +2026/03/20 17:42:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":646.8,"last_update":"2026-03-20T17:42:19.575841591Z"} +2026/03/20 17:42:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:19.586043939Z"} +2026/03/20 17:42:24 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":17.33786845932754,"throughput_eps":0,"last_update":"2026-03-20T17:42:19.719276264Z"} +2026/03/20 17:42:24 [transform_engine] {"stage_name":"transform_engine","events_processed":107,"events_dropped":0,"avg_latency_ms":87.75788319319932,"throughput_eps":0,"last_update":"2026-03-20T17:42:19.719307885Z"} +2026/03/20 17:42:24 ───────────────────────────────────────────────── +2026/03/20 17:42:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":647.8,"last_update":"2026-03-20T17:42:24.575712374Z"} +2026/03/20 17:42:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:24.586163508Z"} +2026/03/20 17:42:29 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":17.33786845932754,"throughput_eps":0,"last_update":"2026-03-20T17:42:24.719410033Z"} +2026/03/20 17:42:29 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":93.36222375455947,"throughput_eps":0,"last_update":"2026-03-20T17:42:24.835215819Z"} +2026/03/20 17:42:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:24.575497482Z"} +2026/03/20 17:42:29 ───────────────────────────────────────────────── +2026/03/20 17:42:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:34 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":17.142302567462036,"throughput_eps":0,"last_update":"2026-03-20T17:42:29.719429559Z"} +2026/03/20 17:42:34 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":93.36222375455947,"throughput_eps":0,"last_update":"2026-03-20T17:42:29.719396074Z"} +2026/03/20 17:42:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:29.57552947Z"} +2026/03/20 17:42:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":648.8,"last_update":"2026-03-20T17:42:29.576001824Z"} +2026/03/20 17:42:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:29.586013527Z"} +2026/03/20 17:42:34 ───────────────────────────────────────────────── +2026/03/20 17:42:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:34.575532246Z"} +2026/03/20 17:42:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":649.8,"last_update":"2026-03-20T17:42:34.575756365Z"} +2026/03/20 17:42:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:34.587079178Z"} +2026/03/20 17:42:39 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":17.142302567462036,"throughput_eps":0,"last_update":"2026-03-20T17:42:34.71946543Z"} +2026/03/20 17:42:39 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":93.36222375455947,"throughput_eps":0,"last_update":"2026-03-20T17:42:34.719499846Z"} +2026/03/20 17:42:39 ───────────────────────────────────────────────── +2026/03/20 17:42:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:39.575508445Z"} +2026/03/20 17:42:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":650.8,"last_update":"2026-03-20T17:42:39.575648394Z"} +2026/03/20 17:42:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:39.586238714Z"} +2026/03/20 17:42:44 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":17.142302567462036,"throughput_eps":0,"last_update":"2026-03-20T17:42:39.719586962Z"} +2026/03/20 17:42:44 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":93.36222375455947,"throughput_eps":0,"last_update":"2026-03-20T17:42:39.719487351Z"} +2026/03/20 17:42:44 ───────────────────────────────────────────────── +2026/03/20 17:42:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:44.584844945Z"} +2026/03/20 17:42:49 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":17.142302567462036,"throughput_eps":0,"last_update":"2026-03-20T17:42:44.719304461Z"} +2026/03/20 17:42:49 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":93.36222375455947,"throughput_eps":0,"last_update":"2026-03-20T17:42:44.719193208Z"} +2026/03/20 17:42:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:44.575533092Z"} +2026/03/20 17:42:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":651.8,"last_update":"2026-03-20T17:42:44.575945642Z"} +2026/03/20 17:42:49 ───────────────────────────────────────────────── +2026/03/20 17:42:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:49.575504508Z"} +2026/03/20 17:42:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":652.8,"last_update":"2026-03-20T17:42:49.575721364Z"} +2026/03/20 17:42:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:49.586634364Z"} +2026/03/20 17:42:54 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":17.142302567462036,"throughput_eps":0,"last_update":"2026-03-20T17:42:49.719086598Z"} +2026/03/20 17:42:54 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":93.36222375455947,"throughput_eps":0,"last_update":"2026-03-20T17:42:49.71920789Z"} +2026/03/20 17:42:54 ───────────────────────────────────────────────── +2026/03/20 17:42:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:54.575901552Z"} +2026/03/20 17:42:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":653.8,"last_update":"2026-03-20T17:42:54.576259357Z"} +2026/03/20 17:42:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:54.586329192Z"} +2026/03/20 17:42:59 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":17.142302567462036,"throughput_eps":0,"last_update":"2026-03-20T17:42:54.719830758Z"} +2026/03/20 17:42:59 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":87.55988020364757,"throughput_eps":0,"last_update":"2026-03-20T17:42:54.784205742Z"} +2026/03/20 17:42:59 ───────────────────────────────────────────────── +2026/03/20 17:43:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:59.584846786Z"} +2026/03/20 17:43:04 [detection_layer] {"stage_name":"detection_layer","events_processed":109,"events_dropped":0,"avg_latency_ms":17.29237505396963,"throughput_eps":0,"last_update":"2026-03-20T17:42:59.719132737Z"} +2026/03/20 17:43:04 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":87.55988020364757,"throughput_eps":0,"last_update":"2026-03-20T17:42:59.719138057Z"} +2026/03/20 17:43:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:59.575766637Z"} +2026/03/20 17:43:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":654.8,"last_update":"2026-03-20T17:42:59.576092711Z"} +2026/03/20 17:43:04 ───────────────────────────────────────────────── +2026/03/20 17:43:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:04.575550325Z"} +2026/03/20 17:43:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":655.8,"last_update":"2026-03-20T17:43:04.575496352Z"} +2026/03/20 17:43:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:04.585974319Z"} +2026/03/20 17:43:09 [detection_layer] {"stage_name":"detection_layer","events_processed":109,"events_dropped":0,"avg_latency_ms":17.29237505396963,"throughput_eps":0,"last_update":"2026-03-20T17:43:04.719333307Z"} +2026/03/20 17:43:09 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":87.55988020364757,"throughput_eps":0,"last_update":"2026-03-20T17:43:04.719345471Z"} +2026/03/20 17:43:09 ───────────────────────────────────────────────── +2026/03/20 17:43:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:09.575518198Z"} +2026/03/20 17:43:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":656.8,"last_update":"2026-03-20T17:43:09.575774769Z"} +2026/03/20 17:43:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:09.584995057Z"} +2026/03/20 17:43:14 [detection_layer] {"stage_name":"detection_layer","events_processed":109,"events_dropped":0,"avg_latency_ms":17.29237505396963,"throughput_eps":0,"last_update":"2026-03-20T17:43:09.719401825Z"} +2026/03/20 17:43:14 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":87.55988020364757,"throughput_eps":0,"last_update":"2026-03-20T17:43:09.719414188Z"} +2026/03/20 17:43:14 ───────────────────────────────────────────────── +2026/03/20 17:43:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:14.585196333Z"} +2026/03/20 17:43:19 [detection_layer] {"stage_name":"detection_layer","events_processed":109,"events_dropped":0,"avg_latency_ms":17.29237505396963,"throughput_eps":0,"last_update":"2026-03-20T17:43:14.719403129Z"} +2026/03/20 17:43:19 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":87.55988020364757,"throughput_eps":0,"last_update":"2026-03-20T17:43:14.719411094Z"} +2026/03/20 17:43:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:14.575771293Z"} +2026/03/20 17:43:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":657.8,"last_update":"2026-03-20T17:43:14.576048824Z"} +2026/03/20 17:43:19 ───────────────────────────────────────────────── +2026/03/20 17:43:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:24 [detection_layer] {"stage_name":"detection_layer","events_processed":109,"events_dropped":0,"avg_latency_ms":17.29237505396963,"throughput_eps":0,"last_update":"2026-03-20T17:43:19.719470359Z"} +2026/03/20 17:43:24 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":87.55988020364757,"throughput_eps":0,"last_update":"2026-03-20T17:43:19.719478133Z"} +2026/03/20 17:43:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:19.576015759Z"} +2026/03/20 17:43:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":658.8,"last_update":"2026-03-20T17:43:19.576195563Z"} +2026/03/20 17:43:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1320,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:19.585198606Z"} +2026/03/20 17:43:24 ───────────────────────────────────────────────── +2026/03/20 17:43:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:24.57562172Z"} +2026/03/20 17:43:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":659.8,"last_update":"2026-03-20T17:43:24.575606752Z"} +2026/03/20 17:43:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:24.586798405Z"} +2026/03/20 17:43:29 [detection_layer] {"stage_name":"detection_layer","events_processed":109,"events_dropped":0,"avg_latency_ms":17.29237505396963,"throughput_eps":0,"last_update":"2026-03-20T17:43:24.719191973Z"} +2026/03/20 17:43:29 [transform_engine] {"stage_name":"transform_engine","events_processed":110,"events_dropped":0,"avg_latency_ms":82.72056856291806,"throughput_eps":0,"last_update":"2026-03-20T17:43:24.782571446Z"} +2026/03/20 17:43:29 ───────────────────────────────────────────────── +2026/03/20 17:43:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3303,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":660.6,"last_update":"2026-03-20T17:43:29.575878664Z"} +2026/03/20 17:43:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:29.585613618Z"} +2026/03/20 17:43:34 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":16.313763243175703,"throughput_eps":0,"last_update":"2026-03-20T17:43:29.718822109Z"} +2026/03/20 17:43:34 [transform_engine] {"stage_name":"transform_engine","events_processed":110,"events_dropped":0,"avg_latency_ms":82.72056856291806,"throughput_eps":0,"last_update":"2026-03-20T17:43:29.718771321Z"} +2026/03/20 17:43:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:29.576060101Z"} +2026/03/20 17:43:34 ───────────────────────────────────────────────── +2026/03/20 17:43:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:39 [transform_engine] {"stage_name":"transform_engine","events_processed":110,"events_dropped":0,"avg_latency_ms":82.72056856291806,"throughput_eps":0,"last_update":"2026-03-20T17:43:34.71934049Z"} +2026/03/20 17:43:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:34.575517969Z"} +2026/03/20 17:43:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":661.8,"last_update":"2026-03-20T17:43:34.57554432Z"} +2026/03/20 17:43:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:34.586066803Z"} +2026/03/20 17:43:39 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":16.313763243175703,"throughput_eps":0,"last_update":"2026-03-20T17:43:34.71931455Z"} +2026/03/20 17:43:39 ───────────────────────────────────────────────── +2026/03/20 17:43:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:39.575891089Z"} +2026/03/20 17:43:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":662.8,"last_update":"2026-03-20T17:43:39.576076624Z"} +2026/03/20 17:43:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:39.58827155Z"} +2026/03/20 17:43:44 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":16.313763243175703,"throughput_eps":0,"last_update":"2026-03-20T17:43:39.719554987Z"} +2026/03/20 17:43:44 [transform_engine] {"stage_name":"transform_engine","events_processed":110,"events_dropped":0,"avg_latency_ms":82.72056856291806,"throughput_eps":0,"last_update":"2026-03-20T17:43:39.719599302Z"} +2026/03/20 17:43:44 ───────────────────────────────────────────────── +2026/03/20 17:43:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:49 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":16.313763243175703,"throughput_eps":0,"last_update":"2026-03-20T17:43:44.718896826Z"} +2026/03/20 17:43:49 [transform_engine] {"stage_name":"transform_engine","events_processed":110,"events_dropped":0,"avg_latency_ms":82.72056856291806,"throughput_eps":0,"last_update":"2026-03-20T17:43:44.718917004Z"} +2026/03/20 17:43:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:44.575753412Z"} +2026/03/20 17:43:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":663.8,"last_update":"2026-03-20T17:43:44.576001497Z"} +2026/03/20 17:43:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1330,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:44.585645488Z"} +2026/03/20 17:43:49 ───────────────────────────────────────────────── +2026/03/20 17:43:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:54 [transform_engine] {"stage_name":"transform_engine","events_processed":110,"events_dropped":0,"avg_latency_ms":82.72056856291806,"throughput_eps":0,"last_update":"2026-03-20T17:43:49.719389532Z"} +2026/03/20 17:43:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:49.575531247Z"} +2026/03/20 17:43:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":664.8,"last_update":"2026-03-20T17:43:49.575516639Z"} +2026/03/20 17:43:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:49.585149278Z"} +2026/03/20 17:43:54 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":16.313763243175703,"throughput_eps":0,"last_update":"2026-03-20T17:43:49.719417326Z"} +2026/03/20 17:43:54 ───────────────────────────────────────────────── +2026/03/20 17:43:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:54.575871462Z"} +2026/03/20 17:43:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":665.8,"last_update":"2026-03-20T17:43:54.576204369Z"} +2026/03/20 17:43:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:54.58555029Z"} +2026/03/20 17:43:59 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":16.313763243175703,"throughput_eps":0,"last_update":"2026-03-20T17:43:54.718880122Z"} +2026/03/20 17:43:59 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":78.82423065033446,"throughput_eps":0,"last_update":"2026-03-20T17:43:54.781957652Z"} +2026/03/20 17:43:59 ───────────────────────────────────────────────── +2026/03/20 17:44:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:59.576062072Z"} +2026/03/20 17:44:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":666.8,"last_update":"2026-03-20T17:43:59.576511323Z"} +2026/03/20 17:44:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:59.5866285Z"} +2026/03/20 17:44:04 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":16.815925394540564,"throughput_eps":0,"last_update":"2026-03-20T17:43:59.718972035Z"} +2026/03/20 17:44:04 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":78.82423065033446,"throughput_eps":0,"last_update":"2026-03-20T17:43:59.718927339Z"} +2026/03/20 17:44:04 ───────────────────────────────────────────────── +2026/03/20 17:44:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:04.586383076Z"} +2026/03/20 17:44:09 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":16.815925394540564,"throughput_eps":0,"last_update":"2026-03-20T17:44:04.719728732Z"} +2026/03/20 17:44:09 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":78.82423065033446,"throughput_eps":0,"last_update":"2026-03-20T17:44:04.719698675Z"} +2026/03/20 17:44:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:04.575765861Z"} +2026/03/20 17:44:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":667.8,"last_update":"2026-03-20T17:44:04.576076104Z"} +2026/03/20 17:44:09 ───────────────────────────────────────────────── +2026/03/20 17:44:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:09.575609198Z"} +2026/03/20 17:44:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":668.8,"last_update":"2026-03-20T17:44:09.575487394Z"} +2026/03/20 17:44:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:09.58510208Z"} +2026/03/20 17:44:14 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":16.815925394540564,"throughput_eps":0,"last_update":"2026-03-20T17:44:09.719341099Z"} +2026/03/20 17:44:14 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":78.82423065033446,"throughput_eps":0,"last_update":"2026-03-20T17:44:09.719448715Z"} +2026/03/20 17:44:14 ───────────────────────────────────────────────── +2026/03/20 17:44:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:19 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":78.82423065033446,"throughput_eps":0,"last_update":"2026-03-20T17:44:14.719710695Z"} +2026/03/20 17:44:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:14.575728121Z"} +2026/03/20 17:44:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":669.8,"last_update":"2026-03-20T17:44:14.576238248Z"} +2026/03/20 17:44:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1342,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:14.585368696Z"} +2026/03/20 17:44:19 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":16.815925394540564,"throughput_eps":0,"last_update":"2026-03-20T17:44:14.719758195Z"} +2026/03/20 17:44:19 ───────────────────────────────────────────────── +2026/03/20 17:44:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:19.575746531Z"} +2026/03/20 17:44:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":670.8,"last_update":"2026-03-20T17:44:19.576120938Z"} +2026/03/20 17:44:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:19.585526153Z"} +2026/03/20 17:44:24 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":16.815925394540564,"throughput_eps":0,"last_update":"2026-03-20T17:44:19.71882812Z"} +2026/03/20 17:44:24 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":78.82423065033446,"throughput_eps":0,"last_update":"2026-03-20T17:44:19.718780639Z"} +2026/03/20 17:44:24 ───────────────────────────────────────────────── +2026/03/20 17:44:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:24.575557342Z"} +2026/03/20 17:44:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":671.8,"last_update":"2026-03-20T17:44:24.575967989Z"} +2026/03/20 17:44:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:24.586031634Z"} +2026/03/20 17:44:29 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":16.815925394540564,"throughput_eps":0,"last_update":"2026-03-20T17:44:24.719447752Z"} +2026/03/20 17:44:29 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":75.80829352026757,"throughput_eps":0,"last_update":"2026-03-20T17:44:24.783234757Z"} +2026/03/20 17:44:29 ───────────────────────────────────────────────── +2026/03/20 17:44:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:29.575509552Z"} +2026/03/20 17:44:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":672.8,"last_update":"2026-03-20T17:44:29.575928986Z"} +2026/03/20 17:44:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:29.585097437Z"} +2026/03/20 17:44:34 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":16.823191915632453,"throughput_eps":0,"last_update":"2026-03-20T17:44:29.719508213Z"} +2026/03/20 17:44:34 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":75.80829352026757,"throughput_eps":0,"last_update":"2026-03-20T17:44:29.719466453Z"} +2026/03/20 17:44:34 ───────────────────────────────────────────────── +2026/03/20 17:44:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:34.575876516Z"} +2026/03/20 17:44:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":673.8,"last_update":"2026-03-20T17:44:34.576153396Z"} +2026/03/20 17:44:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1350,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:34.585400958Z"} +2026/03/20 17:44:39 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":16.823191915632453,"throughput_eps":0,"last_update":"2026-03-20T17:44:34.720006609Z"} +2026/03/20 17:44:39 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":75.80829352026757,"throughput_eps":0,"last_update":"2026-03-20T17:44:34.719886198Z"} +2026/03/20 17:44:39 ───────────────────────────────────────────────── +2026/03/20 17:44:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:44 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":75.80829352026757,"throughput_eps":0,"last_update":"2026-03-20T17:44:39.719579448Z"} +2026/03/20 17:44:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:39.575926406Z"} +2026/03/20 17:44:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":674.8,"last_update":"2026-03-20T17:44:39.576425402Z"} +2026/03/20 17:44:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:39.585299008Z"} +2026/03/20 17:44:44 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":16.823191915632453,"throughput_eps":0,"last_update":"2026-03-20T17:44:39.719681894Z"} +2026/03/20 17:44:44 ───────────────────────────────────────────────── +2026/03/20 17:44:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:49 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":75.80829352026757,"throughput_eps":0,"last_update":"2026-03-20T17:44:44.718928013Z"} +2026/03/20 17:44:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:44.575907841Z"} +2026/03/20 17:44:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":675.8,"last_update":"2026-03-20T17:44:44.576213316Z"} +2026/03/20 17:44:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:44.586689843Z"} +2026/03/20 17:44:49 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":16.823191915632453,"throughput_eps":0,"last_update":"2026-03-20T17:44:44.7190255Z"} +2026/03/20 17:44:49 ───────────────────────────────────────────────── +2026/03/20 17:44:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:49.586159174Z"} +2026/03/20 17:44:54 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":16.823191915632453,"throughput_eps":0,"last_update":"2026-03-20T17:44:49.719424041Z"} +2026/03/20 17:44:54 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":75.80829352026757,"throughput_eps":0,"last_update":"2026-03-20T17:44:49.71946514Z"} +2026/03/20 17:44:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:49.575659322Z"} +2026/03/20 17:44:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":676.8,"last_update":"2026-03-20T17:44:49.576014953Z"} +2026/03/20 17:44:54 ───────────────────────────────────────────────── +2026/03/20 17:44:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:54.575941523Z"} +2026/03/20 17:44:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":677.8,"last_update":"2026-03-20T17:44:54.576314197Z"} +2026/03/20 17:44:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:54.586648121Z"} +2026/03/20 17:44:59 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":16.823191915632453,"throughput_eps":0,"last_update":"2026-03-20T17:44:54.719005873Z"} +2026/03/20 17:44:59 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":73.67076361621406,"throughput_eps":0,"last_update":"2026-03-20T17:44:54.784144862Z"} +2026/03/20 17:44:59 ───────────────────────────────────────────────── +2026/03/20 17:45:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:59.576521701Z"} +2026/03/20 17:45:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":678.8,"last_update":"2026-03-20T17:44:59.575428506Z"} +2026/03/20 17:45:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1360,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:59.585734887Z"} +2026/03/20 17:45:04 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.941326732505964,"throughput_eps":0,"last_update":"2026-03-20T17:44:59.718978499Z"} +2026/03/20 17:45:04 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":73.67076361621406,"throughput_eps":0,"last_update":"2026-03-20T17:44:59.719002545Z"} +2026/03/20 17:45:04 ───────────────────────────────────────────────── +2026/03/20 17:45:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:04.575721004Z"} +2026/03/20 17:45:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":679.8,"last_update":"2026-03-20T17:45:04.576087095Z"} +2026/03/20 17:45:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:04.587592764Z"} +2026/03/20 17:45:09 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.941326732505964,"throughput_eps":0,"last_update":"2026-03-20T17:45:04.718860762Z"} +2026/03/20 17:45:09 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":73.67076361621406,"throughput_eps":0,"last_update":"2026-03-20T17:45:04.718832487Z"} +2026/03/20 17:45:09 ───────────────────────────────────────────────── +2026/03/20 17:45:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:09.58553855Z"} +2026/03/20 17:45:14 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.941326732505964,"throughput_eps":0,"last_update":"2026-03-20T17:45:09.719843386Z"} +2026/03/20 17:45:14 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":73.67076361621406,"throughput_eps":0,"last_update":"2026-03-20T17:45:09.718720085Z"} +2026/03/20 17:45:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:09.57577637Z"} +2026/03/20 17:45:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":680.8,"last_update":"2026-03-20T17:45:09.576168741Z"} +2026/03/20 17:45:14 ───────────────────────────────────────────────── +2026/03/20 17:45:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":681.8,"last_update":"2026-03-20T17:45:14.576158977Z"} +2026/03/20 17:45:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:14.585871441Z"} +2026/03/20 17:45:19 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.941326732505964,"throughput_eps":0,"last_update":"2026-03-20T17:45:14.719108454Z"} +2026/03/20 17:45:19 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":73.67076361621406,"throughput_eps":0,"last_update":"2026-03-20T17:45:14.719118724Z"} +2026/03/20 17:45:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:14.575713534Z"} +2026/03/20 17:45:19 ───────────────────────────────────────────────── +2026/03/20 17:45:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:19.586512113Z"} +2026/03/20 17:45:24 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.941326732505964,"throughput_eps":0,"last_update":"2026-03-20T17:45:19.719859388Z"} +2026/03/20 17:45:24 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":73.67076361621406,"throughput_eps":0,"last_update":"2026-03-20T17:45:19.71872196Z"} +2026/03/20 17:45:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:19.575770898Z"} +2026/03/20 17:45:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3413,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":682.6,"last_update":"2026-03-20T17:45:19.575776389Z"} +2026/03/20 17:45:24 ───────────────────────────────────────────────── +2026/03/20 17:45:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:24.575712862Z"} +2026/03/20 17:45:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":683.8,"last_update":"2026-03-20T17:45:24.576086047Z"} +2026/03/20 17:45:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:24.586540073Z"} +2026/03/20 17:45:29 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.941326732505964,"throughput_eps":0,"last_update":"2026-03-20T17:45:24.718836828Z"} +2026/03/20 17:45:29 [transform_engine] {"stage_name":"transform_engine","events_processed":114,"events_dropped":0,"avg_latency_ms":71.62386329297125,"throughput_eps":0,"last_update":"2026-03-20T17:45:24.782218225Z"} +2026/03/20 17:45:29 ───────────────────────────────────────────────── +2026/03/20 17:45:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:34 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":16.96436758600477,"throughput_eps":0,"last_update":"2026-03-20T17:45:29.719684377Z"} +2026/03/20 17:45:34 [transform_engine] {"stage_name":"transform_engine","events_processed":114,"events_dropped":0,"avg_latency_ms":71.62386329297125,"throughput_eps":0,"last_update":"2026-03-20T17:45:29.719693385Z"} +2026/03/20 17:45:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:29.57557304Z"} +2026/03/20 17:45:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":684.8,"last_update":"2026-03-20T17:45:29.575671008Z"} +2026/03/20 17:45:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:29.58732974Z"} +2026/03/20 17:45:34 ───────────────────────────────────────────────── +2026/03/20 17:45:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:39 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":16.96436758600477,"throughput_eps":0,"last_update":"2026-03-20T17:45:34.719240553Z"} +2026/03/20 17:45:39 [transform_engine] {"stage_name":"transform_engine","events_processed":114,"events_dropped":0,"avg_latency_ms":71.62386329297125,"throughput_eps":0,"last_update":"2026-03-20T17:45:34.719250663Z"} +2026/03/20 17:45:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:34.575759171Z"} +2026/03/20 17:45:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":685.8,"last_update":"2026-03-20T17:45:34.576091488Z"} +2026/03/20 17:45:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:34.585986321Z"} +2026/03/20 17:45:39 ───────────────────────────────────────────────── +2026/03/20 17:45:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":686.8,"last_update":"2026-03-20T17:45:39.576149392Z"} +2026/03/20 17:45:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:39.586642723Z"} +2026/03/20 17:45:44 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":16.96436758600477,"throughput_eps":0,"last_update":"2026-03-20T17:45:39.719826742Z"} +2026/03/20 17:45:44 [transform_engine] {"stage_name":"transform_engine","events_processed":114,"events_dropped":0,"avg_latency_ms":71.62386329297125,"throughput_eps":0,"last_update":"2026-03-20T17:45:39.718715845Z"} +2026/03/20 17:45:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:39.575778272Z"} +2026/03/20 17:45:44 ───────────────────────────────────────────────── +2026/03/20 17:45:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:44.575793495Z"} +2026/03/20 17:45:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":687.8,"last_update":"2026-03-20T17:45:44.576190806Z"} +2026/03/20 17:45:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:44.584061572Z"} +2026/03/20 17:45:49 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":16.96436758600477,"throughput_eps":0,"last_update":"2026-03-20T17:45:44.719397536Z"} +2026/03/20 17:45:49 [transform_engine] {"stage_name":"transform_engine","events_processed":114,"events_dropped":0,"avg_latency_ms":71.62386329297125,"throughput_eps":0,"last_update":"2026-03-20T17:45:44.719412465Z"} +2026/03/20 17:45:49 ───────────────────────────────────────────────── +2026/03/20 17:45:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:49.575555011Z"} +2026/03/20 17:45:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":688.8,"last_update":"2026-03-20T17:45:49.575787877Z"} +2026/03/20 17:45:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1380,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:49.585207461Z"} +2026/03/20 17:45:54 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":16.96436758600477,"throughput_eps":0,"last_update":"2026-03-20T17:45:49.719521408Z"} +2026/03/20 17:45:54 [transform_engine] {"stage_name":"transform_engine","events_processed":114,"events_dropped":0,"avg_latency_ms":71.62386329297125,"throughput_eps":0,"last_update":"2026-03-20T17:45:49.719497993Z"} +2026/03/20 17:45:54 ───────────────────────────────────────────────── +2026/03/20 17:45:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:54.575747208Z"} +2026/03/20 17:45:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":689.8,"last_update":"2026-03-20T17:45:54.576287974Z"} +2026/03/20 17:45:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:54.585566888Z"} +2026/03/20 17:45:59 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":16.96436758600477,"throughput_eps":0,"last_update":"2026-03-20T17:45:54.718954573Z"} +2026/03/20 17:45:59 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":79.56060403437701,"throughput_eps":0,"last_update":"2026-03-20T17:45:54.83015192Z"} +2026/03/20 17:45:59 ───────────────────────────────────────────────── +2026/03/20 17:46:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:04 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":17.230102468803814,"throughput_eps":0,"last_update":"2026-03-20T17:45:59.7195183Z"} +2026/03/20 17:46:04 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":79.56060403437701,"throughput_eps":0,"last_update":"2026-03-20T17:45:59.719545662Z"} +2026/03/20 17:46:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:59.575507374Z"} +2026/03/20 17:46:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":690.8,"last_update":"2026-03-20T17:45:59.576008885Z"} +2026/03/20 17:46:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:59.587301718Z"} +2026/03/20 17:46:04 ───────────────────────────────────────────────── +2026/03/20 17:46:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:09 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":17.230102468803814,"throughput_eps":0,"last_update":"2026-03-20T17:46:04.719326117Z"} +2026/03/20 17:46:09 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":79.56060403437701,"throughput_eps":0,"last_update":"2026-03-20T17:46:04.719267154Z"} +2026/03/20 17:46:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:04.575709495Z"} +2026/03/20 17:46:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":691.8,"last_update":"2026-03-20T17:46:04.575591449Z"} +2026/03/20 17:46:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:04.586860687Z"} +2026/03/20 17:46:09 ───────────────────────────────────────────────── +2026/03/20 17:46:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:09.575574265Z"} +2026/03/20 17:46:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":692.8,"last_update":"2026-03-20T17:46:09.576051799Z"} +2026/03/20 17:46:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1388,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:09.58581888Z"} +2026/03/20 17:46:14 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":17.230102468803814,"throughput_eps":0,"last_update":"2026-03-20T17:46:09.719179936Z"} +2026/03/20 17:46:14 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":79.56060403437701,"throughput_eps":0,"last_update":"2026-03-20T17:46:09.719208321Z"} +2026/03/20 17:46:14 ───────────────────────────────────────────────── +2026/03/20 17:46:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:19 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":17.230102468803814,"throughput_eps":0,"last_update":"2026-03-20T17:46:14.719533349Z"} +2026/03/20 17:46:19 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":79.56060403437701,"throughput_eps":0,"last_update":"2026-03-20T17:46:14.719587202Z"} +2026/03/20 17:46:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:14.575530725Z"} +2026/03/20 17:46:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":693.8,"last_update":"2026-03-20T17:46:14.575506338Z"} +2026/03/20 17:46:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1390,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:14.586153805Z"} +2026/03/20 17:46:19 ───────────────────────────────────────────────── +2026/03/20 17:46:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:24 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":79.56060403437701,"throughput_eps":0,"last_update":"2026-03-20T17:46:19.719173119Z"} +2026/03/20 17:46:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:19.576052563Z"} +2026/03/20 17:46:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":694.8,"last_update":"2026-03-20T17:46:19.576224553Z"} +2026/03/20 17:46:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:19.58690846Z"} +2026/03/20 17:46:24 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":17.230102468803814,"throughput_eps":0,"last_update":"2026-03-20T17:46:19.719130057Z"} +2026/03/20 17:46:24 ───────────────────────────────────────────────── +2026/03/20 17:46:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:24.575513533Z"} +2026/03/20 17:46:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":695.8,"last_update":"2026-03-20T17:46:24.575941172Z"} +2026/03/20 17:46:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:24.586164085Z"} +2026/03/20 17:46:29 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":17.230102468803814,"throughput_eps":0,"last_update":"2026-03-20T17:46:24.719362125Z"} +2026/03/20 17:46:29 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":86.8603606275016,"throughput_eps":0,"last_update":"2026-03-20T17:46:24.835437875Z"} +2026/03/20 17:46:29 ───────────────────────────────────────────────── +2026/03/20 17:46:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:29.586694327Z"} +2026/03/20 17:46:34 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":17.53027637504305,"throughput_eps":0,"last_update":"2026-03-20T17:46:29.719218748Z"} +2026/03/20 17:46:34 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":86.8603606275016,"throughput_eps":0,"last_update":"2026-03-20T17:46:29.7191885Z"} +2026/03/20 17:46:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:29.575669178Z"} +2026/03/20 17:46:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":696.8,"last_update":"2026-03-20T17:46:29.575981846Z"} +2026/03/20 17:46:34 ───────────────────────────────────────────────── +2026/03/20 17:46:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:34.575817732Z"} +2026/03/20 17:46:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":697.8,"last_update":"2026-03-20T17:46:34.576140229Z"} +2026/03/20 17:46:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:34.585694872Z"} +2026/03/20 17:46:39 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":17.53027637504305,"throughput_eps":0,"last_update":"2026-03-20T17:46:34.718829513Z"} +2026/03/20 17:46:39 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":86.8603606275016,"throughput_eps":0,"last_update":"2026-03-20T17:46:34.718739251Z"} +2026/03/20 17:46:39 ───────────────────────────────────────────────── +2026/03/20 17:46:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:39.575893066Z"} +2026/03/20 17:46:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3493,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":698.6,"last_update":"2026-03-20T17:46:39.575941598Z"} +2026/03/20 17:46:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1400,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:39.585291981Z"} +2026/03/20 17:46:44 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":17.53027637504305,"throughput_eps":0,"last_update":"2026-03-20T17:46:39.71959406Z"} +2026/03/20 17:46:44 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":86.8603606275016,"throughput_eps":0,"last_update":"2026-03-20T17:46:39.71969803Z"} +2026/03/20 17:46:44 ───────────────────────────────────────────────── +2026/03/20 17:46:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:49 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":17.53027637504305,"throughput_eps":0,"last_update":"2026-03-20T17:46:44.719331971Z"} +2026/03/20 17:46:49 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":86.8603606275016,"throughput_eps":0,"last_update":"2026-03-20T17:46:44.719312375Z"} +2026/03/20 17:46:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:44.575537067Z"} +2026/03/20 17:46:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3498,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":699.6,"last_update":"2026-03-20T17:46:44.575034353Z"} +2026/03/20 17:46:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1402,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:44.586054955Z"} +2026/03/20 17:46:49 ───────────────────────────────────────────────── +2026/03/20 17:46:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:54 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":17.53027637504305,"throughput_eps":0,"last_update":"2026-03-20T17:46:49.719375121Z"} +2026/03/20 17:46:54 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":86.8603606275016,"throughput_eps":0,"last_update":"2026-03-20T17:46:49.719329664Z"} +2026/03/20 17:46:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:49.57587587Z"} +2026/03/20 17:46:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":700.8,"last_update":"2026-03-20T17:46:49.576295533Z"} +2026/03/20 17:46:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:49.586068225Z"} +2026/03/20 17:46:54 ───────────────────────────────────────────────── +2026/03/20 17:46:54 [ANOMALY] time=2026-03-20T17:46:54Z score=0.8409 method=SEAD details=MAD!:w=0.34,s=1.00 RRCF-fast!:w=0.17,s=0.99 RRCF-mid!:w=0.15,s=0.90 RRCF-slow!:w=0.13,s=0.99 COPOD!:w=0.22,s=0.34 +2026/03/20 17:46:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:54.575794328Z"} +2026/03/20 17:46:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":701.6,"last_update":"2026-03-20T17:46:54.57576918Z"} +2026/03/20 17:46:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:54.585395592Z"} +2026/03/20 17:46:59 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":17.53027637504305,"throughput_eps":0,"last_update":"2026-03-20T17:46:54.719714788Z"} +2026/03/20 17:46:59 [transform_engine] {"stage_name":"transform_engine","events_processed":117,"events_dropped":0,"avg_latency_ms":91.57058970200129,"throughput_eps":0,"last_update":"2026-03-20T17:46:54.830152735Z"} +2026/03/20 17:46:59 ───────────────────────────────────────────────── +2026/03/20 17:47:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:04 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":16.37520470003444,"throughput_eps":0,"last_update":"2026-03-20T17:46:59.719595648Z"} +2026/03/20 17:47:04 [transform_engine] {"stage_name":"transform_engine","events_processed":117,"events_dropped":0,"avg_latency_ms":91.57058970200129,"throughput_eps":0,"last_update":"2026-03-20T17:46:59.719603052Z"} +2026/03/20 17:47:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:59.575567601Z"} +2026/03/20 17:47:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":702.8,"last_update":"2026-03-20T17:46:59.575656332Z"} +2026/03/20 17:47:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1408,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:59.586380155Z"} +2026/03/20 17:47:04 ───────────────────────────────────────────────── +2026/03/20 17:47:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:04.586007439Z"} +2026/03/20 17:47:09 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":16.37520470003444,"throughput_eps":0,"last_update":"2026-03-20T17:47:04.719248732Z"} +2026/03/20 17:47:09 [transform_engine] {"stage_name":"transform_engine","events_processed":117,"events_dropped":0,"avg_latency_ms":91.57058970200129,"throughput_eps":0,"last_update":"2026-03-20T17:47:04.719254593Z"} +2026/03/20 17:47:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:04.575669024Z"} +2026/03/20 17:47:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":703.8,"last_update":"2026-03-20T17:47:04.576038913Z"} +2026/03/20 17:47:09 ───────────────────────────────────────────────── +2026/03/20 17:47:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:09.575897748Z"} +2026/03/20 17:47:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":704.8,"last_update":"2026-03-20T17:47:09.576601617Z"} +2026/03/20 17:47:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:09.585684597Z"} +2026/03/20 17:47:14 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":16.37520470003444,"throughput_eps":0,"last_update":"2026-03-20T17:47:09.719075489Z"} +2026/03/20 17:47:14 [transform_engine] {"stage_name":"transform_engine","events_processed":117,"events_dropped":0,"avg_latency_ms":91.57058970200129,"throughput_eps":0,"last_update":"2026-03-20T17:47:09.719088304Z"} +2026/03/20 17:47:14 ───────────────────────────────────────────────── +2026/03/20 17:47:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:14.575723592Z"} +2026/03/20 17:47:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":705.8,"last_update":"2026-03-20T17:47:14.576105844Z"} +2026/03/20 17:47:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:14.585320386Z"} +2026/03/20 17:47:19 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":16.37520470003444,"throughput_eps":0,"last_update":"2026-03-20T17:47:14.71955729Z"} +2026/03/20 17:47:19 [transform_engine] {"stage_name":"transform_engine","events_processed":117,"events_dropped":0,"avg_latency_ms":91.57058970200129,"throughput_eps":0,"last_update":"2026-03-20T17:47:14.719564333Z"} +2026/03/20 17:47:19 ───────────────────────────────────────────────── +2026/03/20 17:47:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:19.576091983Z"} +2026/03/20 17:47:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":706.8,"last_update":"2026-03-20T17:47:19.576569657Z"} +2026/03/20 17:47:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:19.586441369Z"} +2026/03/20 17:47:24 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":16.37520470003444,"throughput_eps":0,"last_update":"2026-03-20T17:47:19.719826443Z"} +2026/03/20 17:47:24 [transform_engine] {"stage_name":"transform_engine","events_processed":117,"events_dropped":0,"avg_latency_ms":91.57058970200129,"throughput_eps":0,"last_update":"2026-03-20T17:47:19.718665188Z"} +2026/03/20 17:47:24 ───────────────────────────────────────────────── +2026/03/20 17:47:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:24.575737317Z"} +2026/03/20 17:47:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":707.8,"last_update":"2026-03-20T17:47:24.576265398Z"} +2026/03/20 17:47:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:24.58553131Z"} +2026/03/20 17:47:29 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":16.37520470003444,"throughput_eps":0,"last_update":"2026-03-20T17:47:24.719663095Z"} +2026/03/20 17:47:29 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":95.42858856160103,"throughput_eps":0,"last_update":"2026-03-20T17:47:24.830535591Z"} +2026/03/20 17:47:29 ───────────────────────────────────────────────── +2026/03/20 17:47:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:29.575729823Z"} +2026/03/20 17:47:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":708.8,"last_update":"2026-03-20T17:47:29.576014258Z"} +2026/03/20 17:47:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1420,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:29.586386098Z"} +2026/03/20 17:47:34 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":16.873350360027555,"throughput_eps":0,"last_update":"2026-03-20T17:47:29.719743311Z"} +2026/03/20 17:47:34 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":95.42858856160103,"throughput_eps":0,"last_update":"2026-03-20T17:47:29.719755844Z"} +2026/03/20 17:47:34 ───────────────────────────────────────────────── +2026/03/20 17:47:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":709.8,"last_update":"2026-03-20T17:47:34.576092035Z"} +2026/03/20 17:47:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:34.585813619Z"} +2026/03/20 17:47:39 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":16.873350360027555,"throughput_eps":0,"last_update":"2026-03-20T17:47:34.719236318Z"} +2026/03/20 17:47:39 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":95.42858856160103,"throughput_eps":0,"last_update":"2026-03-20T17:47:34.719248572Z"} +2026/03/20 17:47:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:34.575728668Z"} +2026/03/20 17:47:39 ───────────────────────────────────────────────── +2026/03/20 17:47:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:39.586199021Z"} +2026/03/20 17:47:44 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":16.873350360027555,"throughput_eps":0,"last_update":"2026-03-20T17:47:39.719637431Z"} +2026/03/20 17:47:44 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":95.42858856160103,"throughput_eps":0,"last_update":"2026-03-20T17:47:39.719650947Z"} +2026/03/20 17:47:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:39.575763409Z"} +2026/03/20 17:47:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":710.8,"last_update":"2026-03-20T17:47:39.576066579Z"} +2026/03/20 17:47:44 ───────────────────────────────────────────────── +2026/03/20 17:47:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:44.575802523Z"} +2026/03/20 17:47:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":711.8,"last_update":"2026-03-20T17:47:44.576329252Z"} +2026/03/20 17:47:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:44.584763611Z"} +2026/03/20 17:47:49 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":16.873350360027555,"throughput_eps":0,"last_update":"2026-03-20T17:47:44.719031862Z"} +2026/03/20 17:47:49 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":95.42858856160103,"throughput_eps":0,"last_update":"2026-03-20T17:47:44.719040899Z"} +2026/03/20 17:47:49 ───────────────────────────────────────────────── +2026/03/20 17:47:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:49.575814613Z"} +2026/03/20 17:47:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":712.8,"last_update":"2026-03-20T17:47:49.576128314Z"} +2026/03/20 17:47:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:49.585633635Z"} +2026/03/20 17:47:54 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":16.873350360027555,"throughput_eps":0,"last_update":"2026-03-20T17:47:49.718863809Z"} +2026/03/20 17:47:54 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":95.42858856160103,"throughput_eps":0,"last_update":"2026-03-20T17:47:49.718878286Z"} +2026/03/20 17:47:54 ───────────────────────────────────────────────── +2026/03/20 17:47:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:54.575905419Z"} +2026/03/20 17:47:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":713.8,"last_update":"2026-03-20T17:47:54.57633365Z"} +2026/03/20 17:47:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:54.586293772Z"} +2026/03/20 17:47:59 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":16.873350360027555,"throughput_eps":0,"last_update":"2026-03-20T17:47:54.719611654Z"} +2026/03/20 17:47:59 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":89.86432344928083,"throughput_eps":0,"last_update":"2026-03-20T17:47:54.78723056Z"} +2026/03/20 17:47:59 ───────────────────────────────────────────────── +2026/03/20 17:48:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:48:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:59.575612023Z"} +2026/03/20 17:48:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":714.8,"last_update":"2026-03-20T17:47:59.575645247Z"} +2026/03/20 17:48:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:59.58589325Z"} +2026/03/20 17:48:04 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":17.174544688022046,"throughput_eps":0,"last_update":"2026-03-20T17:47:59.719227816Z"} +2026/03/20 17:48:04 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":89.86432344928083,"throughput_eps":0,"last_update":"2026-03-20T17:47:59.719238628Z"} +2026/03/20 17:48:04 ───────────────────────────────────────────────── +2026/03/20 17:48:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:48:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:04.586108835Z"} +2026/03/20 17:48:09 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":17.174544688022046,"throughput_eps":0,"last_update":"2026-03-20T17:48:04.719369711Z"} +2026/03/20 17:48:09 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":89.86432344928083,"throughput_eps":0,"last_update":"2026-03-20T17:48:04.719378899Z"} +2026/03/20 17:48:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:04.575729139Z"} +2026/03/20 17:48:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":715.8,"last_update":"2026-03-20T17:48:04.576070253Z"} +2026/03/20 17:48:09 ───────────────────────────────────────────────── +2026/03/20 17:48:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:48:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:09.576275893Z"} +2026/03/20 17:48:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":716.8,"last_update":"2026-03-20T17:48:09.57616961Z"} +2026/03/20 17:48:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:09.584993895Z"} +2026/03/20 17:48:14 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":17.174544688022046,"throughput_eps":0,"last_update":"2026-03-20T17:48:09.719394486Z"} +2026/03/20 17:48:14 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":89.86432344928083,"throughput_eps":0,"last_update":"2026-03-20T17:48:09.71940722Z"} +2026/03/20 17:48:14 ───────────────────────────────────────────────── +2026/03/20 17:48:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:48:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:14.576066382Z"} +2026/03/20 17:48:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":717.8,"last_update":"2026-03-20T17:48:14.576501476Z"} +2026/03/20 17:48:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:14.585433929Z"} +2026/03/20 17:48:19 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":17.174544688022046,"throughput_eps":0,"last_update":"2026-03-20T17:48:14.719693851Z"} +2026/03/20 17:48:19 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":89.86432344928083,"throughput_eps":0,"last_update":"2026-03-20T17:48:14.719700855Z"} +2026/03/20 17:48:19 ───────────────────────────────────────────────── +2026/03/20 17:48:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:48:24 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":89.86432344928083,"throughput_eps":0,"last_update":"2026-03-20T17:48:19.7191799Z"} +2026/03/20 17:48:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:19.575908713Z"} +2026/03/20 17:48:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":718.8,"last_update":"2026-03-20T17:48:19.576400735Z"} +2026/03/20 17:48:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:19.584850944Z"} +2026/03/20 17:48:24 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":17.174544688022046,"throughput_eps":0,"last_update":"2026-03-20T17:48:19.719168389Z"} +2026/03/20 17:48:24 ───────────────────────────────────────────────── +2026/03/20 17:48:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:48:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:24.575898708Z"} +2026/03/20 17:48:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":719.8,"last_update":"2026-03-20T17:48:24.576213832Z"} +2026/03/20 17:48:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1442,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:24.586045408Z"} +2026/03/20 17:48:29 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":17.174544688022046,"throughput_eps":0,"last_update":"2026-03-20T17:48:24.719447799Z"} +2026/03/20 17:48:29 [transform_engine] {"stage_name":"transform_engine","events_processed":120,"events_dropped":0,"avg_latency_ms":94.59298595942467,"throughput_eps":0,"last_update":"2026-03-20T17:48:24.832971196Z"} +2026/03/20 17:48:29 ───────────────────────────────────────────────── +2026/03/20 17:48:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:48:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:29.58604135Z"} +2026/03/20 17:48:34 [detection_layer] {"stage_name":"detection_layer","events_processed":120,"events_dropped":0,"avg_latency_ms":17.454276750417637,"throughput_eps":0,"last_update":"2026-03-20T17:48:29.719548844Z"} +2026/03/20 17:48:34 [transform_engine] {"stage_name":"transform_engine","events_processed":120,"events_dropped":0,"avg_latency_ms":94.59298595942467,"throughput_eps":0,"last_update":"2026-03-20T17:48:29.719560767Z"} +2026/03/20 17:48:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:29.575496827Z"} +2026/03/20 17:48:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":720.8,"last_update":"2026-03-20T17:48:29.575562313Z"} +2026/03/20 17:48:34 ───────────────────────────────────────────────── +2026/03/20 17:48:35 shutting down… +2026/03/20 17:48:35 pipeline stopped diff --git a/evaluation/data/pipeline_system_baseline/baseline_metrics.csv b/evaluation/data/pipeline_system_baseline/baseline_metrics.csv new file mode 100644 index 0000000..198a705 --- /dev/null +++ b/evaluation/data/pipeline_system_baseline/baseline_metrics.csv @@ -0,0 +1,721 @@ +timestamp,cpu_percent,cpu_count,cpu_freq_current,memory_percent,memory_available_mb,memory_used_mb,swap_percent,disk_io_read_mb_s,disk_io_write_mb_s,disk_io_read_count,disk_io_write_count,network_sent_mb_s,network_recv_mb_s,network_packets_sent,network_packets_recv,network_errin,network_errout,network_dropin,network_dropout,tixstream_active,transfer_job_manager_active +1774021708.137464,0.30,4,3992.50,50.52,1700.08,1977.88,0.00,354.481083,1528.546094,37893,48415,0.000000,0.000020,889996,443300,0,0,1311,0,1,1 +1774021713.140483,0.30,4,3992.50,50.46,1702.49,1975.48,0.00,4.058389,0.122973,38651,48516,0.000000,0.000030,889996,443303,0,0,1314,0,1,1 +1774021718.136405,0.25,4,3992.50,50.46,1702.21,1975.76,0.00,3521309635164.360840,3521309633990.846191,11,0,0.000000,0.000020,889996,443305,0,0,1316,0,1,1 +1774021723.140789,0.30,4,3992.50,50.46,1702.21,1975.76,0.00,0.000000,0.000000,11,0,0.000000,0.000030,889996,443308,0,0,1319,0,1,1 +1774021728.137873,0.30,4,3992.50,50.46,1702.21,1975.76,0.00,0.177056,0.000000,199,0,0.000000,0.000020,889996,443310,0,0,1321,0,1,1 +1774021733.140595,0.35,4,3992.50,50.46,1702.21,1975.75,0.00,1.314226,0.022058,221,20,0.000000,0.000030,889996,443313,0,0,1324,0,1,1 +1774021738.140116,0.35,4,3992.50,50.27,1709.86,1968.11,0.00,353.821927,1532.039694,37893,48525,0.000000,0.000020,889996,443315,0,0,1326,0,1,1 +1774021743.136552,0.30,4,3992.50,50.29,1708.87,1969.09,0.00,3520947123432.951660,3520947122253.467285,238,2,0.000000,0.000030,889996,443318,0,0,1329,0,1,1 +1774021748.137425,0.30,4,3992.50,50.30,1708.62,1969.34,0.00,3517823243190.733887,3517823243192.565918,199,0,0.000000,0.000020,889996,443320,0,0,1331,0,1,1 +1774021753.140672,0.30,4,3992.50,50.30,1708.62,1969.34,0.00,3516153798915.546387,0.000000,11,0,0.000000,0.000030,889996,443323,0,0,1334,0,1,1 +1774021758.136425,0.30,4,3992.50,50.30,1708.62,1969.34,0.00,355.582024,1533.228551,37893,48538,0.000000,0.000020,889996,443325,0,0,1336,0,1,1 +1774021763.138155,0.30,4,3992.50,50.31,1708.38,1969.59,0.00,3517220130074.162598,3517220128897.746582,199,0,0.000000,0.000030,889996,443328,0,0,1339,0,1,1 +1774021768.140218,0.35,4,3992.50,50.31,1708.10,1969.89,0.00,1.314399,0.022061,221,20,0.000000,0.000020,889996,443330,0,0,1341,0,1,1 +1774021773.140683,0.25,4,3992.50,50.33,1707.37,1970.63,0.00,3518109546934.743652,3518109546936.036133,199,0,0.000000,0.000030,889996,443333,0,0,1344,0,1,1 +1774021778.140413,0.40,4,3992.50,50.33,1707.37,1970.63,0.00,0.000000,0.000000,199,0,0.000000,0.000020,889996,443335,0,0,1346,0,1,1 +1774021783.140232,0.30,4,3992.50,50.34,1707.15,1970.85,0.00,3518564492249.867188,0.000000,70,0,0.000000,0.000030,889996,443338,0,0,1349,0,1,1 +1774021788.140991,0.20,4,3992.50,50.30,1708.55,1969.45,0.00,355.176031,1531.711482,37893,48555,0.000000,0.000020,889996,443340,0,0,1351,0,1,1 +1774021793.140243,0.30,4,3992.50,50.35,1706.86,1971.14,0.00,4.061447,0.026176,38651,48581,0.000000,0.000030,889996,443343,0,0,1354,0,1,1 +1774021798.140625,0.50,4,3992.50,50.35,1706.86,1971.13,0.00,0.000000,0.006250,38651,48585,0.000000,0.000020,889996,443345,0,0,1356,0,1,1 +1774021803.140134,0.35,4,3992.50,50.32,1708.01,1970.00,0.00,3518782783960.024902,3518782782785.803711,221,20,0.000000,0.000030,889996,443348,0,0,1359,0,1,1 +1774021808.140579,0.45,4,3992.50,50.36,1706.36,1971.65,0.00,353.769875,1531.805243,37902,48573,0.000000,0.000020,889996,443350,0,0,1361,0,1,1 +1774021813.139574,0.30,4,3992.50,50.36,1706.11,1971.89,0.00,3519144784670.384766,3519144783493.300781,199,0,0.000000,0.000030,889996,443353,0,0,1364,0,1,1 +1774021818.140934,0.35,4,3992.50,50.36,1706.11,1971.89,0.00,0.000000,0.000000,199,0,0.000000,0.000020,889996,443355,0,0,1366,0,1,1 +1774021823.140919,0.30,4,3992.50,50.36,1706.11,1971.89,0.00,1.314945,0.022070,221,20,0.000000,0.000030,889996,443358,0,0,1369,0,1,1 +1774021828.137550,0.40,4,3992.50,50.36,1706.11,1971.88,0.00,0.000000,0.000000,221,20,0.001448,0.001778,890013,443385,0,0,1371,0,1,1 +1774021833.136711,0.40,4,3992.50,50.18,1713.31,1964.69,0.00,357.922231,1532.277862,38660,48637,0.000520,0.001125,890028,443411,0,0,1374,0,1,1 +1774021838.140774,0.45,4,3992.50,50.18,1713.31,1964.69,0.00,3515580726763.878906,3515580725590.673340,221,20,0.001778,0.001556,890053,443429,0,0,1376,0,1,1 +1774021843.140190,0.45,4,3992.50,50.18,1713.32,1964.69,0.00,3518847518466.443359,3518847518467.913086,11,0,0.001064,0.000439,890075,443446,0,0,1379,0,1,1 +1774021848.140646,0.35,4,3992.50,50.18,1713.31,1964.69,0.00,0.000000,0.000000,11,0,0.000000,0.000020,890075,443448,0,0,1381,0,1,1 +1774021853.140372,0.45,4,3992.50,50.18,1713.31,1964.69,0.00,359.373759,1532.142399,38660,48653,0.000000,0.000030,890075,443451,0,0,1384,0,1,1 +1774021858.140842,0.30,4,3992.50,50.14,1714.75,1963.24,0.00,3518106786527.212891,3518106785354.618164,11,0,0.000000,0.000020,890075,443453,0,0,1386,0,1,1 +1774021863.140339,0.45,4,3992.50,50.15,1714.52,1963.49,0.00,1.492044,0.022073,221,20,0.000000,0.000030,890075,443456,0,0,1389,0,1,1 +1774021868.140977,0.20,4,3992.50,50.20,1712.56,1965.45,0.00,0.000000,0.000000,221,20,0.000000,0.000020,890075,443458,0,0,1391,0,1,1 +1774021873.137072,0.45,4,3992.50,50.19,1712.93,1965.07,0.00,354.200670,1533.289950,37913,48687,0.000062,0.000080,890079,443465,0,0,1394,0,1,1 +1774021878.140086,0.40,4,3992.50,50.21,1712.19,1965.81,0.00,3516317057113.725586,3516317055937.686035,70,0,0.000070,0.000078,890084,443472,0,0,1396,0,1,1 +1774021883.141013,0.30,4,3992.50,50.22,1711.95,1966.05,0.00,0.000000,0.000000,70,0,0.000050,0.000092,890088,443479,0,0,1399,0,1,1 +1774021888.140567,0.25,4,3992.50,50.22,1711.95,1966.05,0.00,1.958964,0.000195,238,2,0.000050,0.000082,890092,443485,0,0,1401,0,1,1 +1774021893.140646,0.35,4,3992.50,50.22,1711.95,1966.05,0.00,3518381740889.546387,3518381740891.378418,199,0,0.000000,0.000030,890092,443488,0,0,1404,0,1,1 +1774021898.140400,0.30,4,3992.50,50.22,1711.95,1966.05,0.00,3518610731282.453125,0.000000,70,0,0.000000,0.000020,890092,443490,0,0,1406,0,1,1 +1774021903.140329,0.35,4,3992.50,50.22,1711.96,1966.05,0.00,1.441915,0.022071,221,20,0.000000,0.000030,890092,443493,0,0,1409,0,1,1 +1774021908.140342,0.35,4,3992.50,50.22,1711.96,1966.05,0.00,357.983896,1532.136290,38671,48735,0.000000,0.000020,890092,443495,0,0,1411,0,1,1 +1774021913.140597,0.45,4,3992.50,50.22,1711.96,1966.05,0.00,3518258011681.161133,3518258010508.484863,70,0,0.000000,0.000030,890092,443498,0,0,1414,0,1,1 +1774021918.140231,0.30,4,3992.50,50.22,1711.71,1966.29,0.00,359.453083,1532.280189,38671,48741,0.000000,0.000020,890092,443500,0,0,1416,0,1,1 +1774021923.140881,0.40,4,3992.50,50.22,1711.71,1966.29,0.00,3517979861996.925293,3517979860822.377930,238,2,0.000000,0.000030,890092,443503,0,0,1419,0,1,1 +1774021928.136080,0.30,4,3992.50,50.22,1711.71,1966.29,0.00,357.811567,1533.645968,38671,48747,0.000000,0.000020,890092,443505,0,0,1421,0,1,1 +1774021933.136062,0.30,4,3992.50,50.22,1711.71,1966.29,0.00,3518449900980.072754,3518449899807.195312,199,0,0.000000,0.000030,890092,443508,0,0,1424,0,1,1 +1774021938.138880,0.30,4,3992.50,50.22,1711.72,1966.29,0.00,359.097405,1531.324395,38671,48757,0.000000,0.000020,890092,443510,0,0,1426,0,1,1 +1774021943.140866,0.30,4,3992.50,50.22,1711.72,1966.29,0.00,3517040166311.997070,3517040165139.575195,199,0,0.000000,0.000030,890092,443513,0,0,1429,0,1,1 +1774021948.136317,0.25,4,3992.50,50.22,1711.72,1966.29,0.00,3521641102169.138672,0.000000,11,0,0.000000,0.000020,890092,443515,0,0,1431,0,1,1 +1774021953.140874,0.40,4,3992.50,50.22,1711.72,1966.29,0.00,0.000000,0.000000,11,0,0.000000,0.000030,890092,443518,0,0,1434,0,1,1 +1774021958.137752,0.25,4,3992.50,50.22,1711.72,1966.29,0.00,359.701361,1533.154984,38671,48768,0.000000,0.000020,890092,443520,0,0,1436,0,1,1 +1774021963.140401,0.30,4,3992.50,50.22,1711.72,1966.29,0.00,0.000000,0.007808,38671,48775,0.000000,0.000030,890092,443523,0,0,1439,0,1,1 +1774021968.136416,0.40,4,3992.50,50.22,1711.73,1966.28,0.00,0.000000,0.002346,38671,48778,0.000000,0.000020,890092,443525,0,0,1441,0,1,1 +1774021973.137051,0.45,4,3992.50,50.22,1711.73,1966.28,0.00,3517990561279.488770,3517990561283.529785,37913,48759,0.000000,0.000030,890092,443528,0,0,1444,0,1,1 +1774021978.140209,0.25,4,3992.50,50.22,1711.73,1966.28,0.00,4.058277,0.025375,38671,48785,0.000000,0.000020,890092,443530,0,0,1446,0,1,1 +1774021983.136717,0.45,4,3992.50,50.23,1711.51,1966.49,0.00,3520896010760.945801,3520896009587.338867,70,0,0.000000,0.000030,890092,443533,0,0,1449,0,1,1 +1774021988.136139,0.40,4,3992.50,50.23,1711.51,1966.49,0.00,359.468281,1532.395759,38671,48790,0.000000,0.000020,890092,443535,0,0,1451,0,1,1 +1774021993.140749,0.30,4,3992.50,50.23,1711.52,1966.49,0.00,3515196717399.572266,3515196716227.733398,199,0,0.000000,0.000030,890092,443538,0,0,1454,0,1,1 +1774021998.136951,0.30,4,3992.50,50.23,1711.52,1966.48,0.00,359.572867,1533.398848,38671,48798,0.000000,0.000020,890092,443540,0,0,1456,0,1,1 +1774022003.136127,0.30,4,3992.50,50.23,1711.52,1966.48,0.00,3519017892223.222656,3519017891050.221191,70,0,0.000000,0.000030,890092,443543,0,0,1459,0,1,1 +1774022008.136150,0.45,4,3992.50,50.23,1711.52,1966.48,0.00,355.364257,1532.211978,37913,48785,0.000000,0.000020,890092,443545,0,0,1461,0,1,1 +1774022013.139550,0.35,4,3992.50,50.23,1711.52,1966.48,0.00,4.058080,0.025373,38671,48810,0.000000,0.000030,890092,443548,0,0,1464,0,1,1 +1774022018.136091,0.35,4,3992.50,50.10,1716.48,1961.53,0.00,3520873344449.577637,3520873343275.997559,11,0,0.000000,0.000020,890092,443550,0,0,1466,0,1,1 +1774022023.140754,0.35,4,3992.50,50.11,1716.23,1961.78,0.00,2.006917,0.000195,238,2,0.000000,0.000030,890092,443553,0,0,1469,0,1,1 +1774022028.136294,0.30,4,3992.50,50.11,1716.24,1961.77,0.00,0.000000,0.000000,238,2,0.000000,0.000020,890092,443555,0,0,1471,0,1,1 +1774022033.140303,0.35,4,3992.50,50.11,1715.99,1962.02,0.00,3515618277864.956055,3515618277866.963379,11,0,0.000000,0.000030,890092,443558,0,0,1474,0,1,1 +1774022038.136085,0.30,4,3992.50,50.12,1715.77,1962.23,0.00,359.780261,1533.556959,38671,48827,0.000000,0.000020,890092,443560,0,0,1476,0,1,1 +1774022043.136153,0.35,4,3992.50,50.12,1715.77,1962.23,0.00,3518389410499.903809,3518389409327.133301,11,0,0.000000,0.000030,890092,443563,0,0,1479,0,1,1 +1774022048.139962,0.30,4,3992.50,50.12,1715.77,1962.23,0.00,0.049962,0.000000,70,0,0.000000,0.000020,890092,443565,0,0,1481,0,1,1 +1774022053.136944,0.35,4,3992.50,50.12,1715.77,1962.23,0.00,1.959972,0.000195,238,2,0.000000,0.000030,890092,443568,0,0,1484,0,1,1 +1774022058.136428,0.25,4,3992.50,50.12,1715.78,1962.23,0.00,3518800417348.990234,3518800417350.999023,11,0,0.000000,0.000020,890092,443570,0,0,1486,0,1,1 +1774022063.139960,0.45,4,3992.50,50.14,1714.80,1963.21,0.00,0.176828,0.000000,199,0,0.000000,0.000030,890092,443573,0,0,1489,0,1,1 +1774022068.139129,0.25,4,3992.50,50.14,1714.80,1963.21,0.00,0.000000,0.000000,199,0,0.000000,0.000020,890092,443575,0,0,1491,0,1,1 +1774022073.140424,0.35,4,3992.50,50.14,1714.80,1963.21,0.00,355.146945,1531.869103,37913,48830,0.000000,0.000030,890092,443578,0,0,1494,0,1,1 +1774022078.140787,0.25,4,3992.50,50.14,1714.80,1963.21,0.00,4.060545,0.023826,38671,48854,0.000000,0.000020,890092,443580,0,0,1496,0,1,1 +1774022083.136198,0.35,4,3992.50,50.14,1714.80,1963.21,0.00,3521669455914.458496,3521669454740.518066,70,0,0.000000,0.000030,890092,443583,0,0,1499,0,1,1 +1774022088.137871,0.25,4,3992.50,50.14,1714.81,1963.20,0.00,0.126911,0.000000,199,0,0.000000,0.000020,890092,443585,0,0,1501,0,1,1 +1774022093.136304,0.35,4,3992.50,50.14,1714.81,1963.20,0.00,1.832410,0.000195,238,2,0.000000,0.000030,890092,443588,0,0,1504,0,1,1 +1774022098.140216,0.70,4,3992.50,50.12,1715.88,1962.12,0.00,353.130849,1531.085908,37913,48846,0.000000,0.000020,890092,443590,0,0,1506,0,1,1 +1774022103.136160,0.35,4,3992.50,50.16,1714.19,1963.82,0.00,0.000000,0.004691,37913,48851,0.000000,0.000030,890092,443593,0,0,1509,0,1,1 +1774022108.138328,0.35,4,3992.50,50.16,1714.19,1963.82,0.00,3516912722524.087891,3516912721346.255859,221,20,0.000000,0.000020,890092,443595,0,0,1511,0,1,1 +1774022113.141006,0.25,4,3992.50,50.16,1714.19,1963.82,0.00,3516553434109.184570,3516553434110.477051,199,0,0.000000,0.000030,890092,443598,0,0,1514,0,1,1 +1774022118.136439,0.30,4,3992.50,50.16,1713.96,1964.04,0.00,1.833511,0.000195,238,2,0.000000,0.000020,890092,443600,0,0,1516,0,1,1 +1774022123.140071,0.25,4,3992.50,50.16,1713.96,1964.04,0.00,353.150599,1531.230874,37913,48897,0.000000,0.000030,890092,443603,0,0,1519,0,1,1 +1774022128.140236,0.40,4,3992.50,50.16,1713.97,1964.04,0.00,3518321234810.077148,3518321233631.719238,221,20,0.001434,0.001776,890108,443630,0,0,1521,0,1,1 +1774022133.137738,0.40,4,3992.50,50.16,1713.97,1964.04,0.00,3520196207276.051270,3520196207277.521484,11,0,0.001443,0.001795,890125,443659,0,0,1524,0,1,1 +1774022138.136171,0.55,4,3992.50,50.16,1713.97,1964.04,0.00,0.177009,0.000000,199,0,0.001780,0.001557,890150,443677,0,0,1526,0,1,1 +1774022143.137554,0.45,4,3992.50,50.00,1720.23,1957.78,0.00,359.200390,1531.951786,38671,48931,0.001733,0.001361,890175,443696,0,0,1529,0,1,1 +1774022148.140432,0.45,4,3992.50,50.05,1718.54,1959.47,0.00,3516413406064.981445,3516413406069.031250,37913,48916,0.000000,0.000020,890175,443698,0,0,1531,0,1,1 +1774022153.137896,0.30,4,3992.50,50.05,1718.55,1959.46,0.00,3520222645036.055176,3520222643858.507324,11,0,0.000000,0.000030,890175,443701,0,0,1534,0,1,1 +1774022158.140901,0.35,4,3992.50,50.05,1718.55,1959.46,0.00,2.007583,0.000195,238,2,0.000000,0.000020,890175,443703,0,0,1536,0,1,1 +1774022163.139286,0.55,4,3992.50,50.05,1718.55,1959.46,0.00,3519574346045.086914,3519574346046.919434,199,0,0.000000,0.000030,890175,443706,0,0,1539,0,1,1 +1774022168.140256,0.30,4,3992.50,50.05,1718.55,1959.46,0.00,3517754639954.357422,0.000000,11,0,0.000000,0.000020,890175,443708,0,0,1541,0,1,1 +1774022173.136155,0.25,4,3992.50,50.05,1718.55,1959.45,0.00,0.000000,0.000000,11,0,0.000062,0.000080,890179,443715,0,0,1544,0,1,1 +1774022178.137331,0.35,4,3992.50,50.05,1718.55,1959.45,0.00,359.392176,1532.057406,38671,48968,0.000070,0.000078,890184,443722,0,0,1546,0,1,1 +1774022183.140470,0.35,4,3992.50,50.05,1718.55,1959.45,0.00,3516230356247.188965,3516230355074.806641,199,0,0.000050,0.000092,890188,443729,0,0,1549,0,1,1 +1774022188.136182,0.70,4,3992.50,49.99,1720.63,1957.38,0.00,355.543854,1533.715595,37913,48951,0.000050,0.000082,890192,443735,0,0,1551,0,1,1 +1774022193.136058,0.30,4,3992.50,49.86,1726.02,1951.98,0.00,3518524185741.950684,3518524184564.937500,11,0,0.000000,0.000030,890192,443738,0,0,1554,0,1,1 +1774022198.136163,0.35,4,3992.50,49.87,1725.43,1952.57,0.00,0.000000,0.000000,11,0,0.000000,0.000020,890192,443740,0,0,1556,0,1,1 +1774022203.140405,0.30,4,3992.50,49.90,1724.45,1953.55,0.00,2.007086,0.000195,238,2,0.000000,0.000030,890192,443743,0,0,1559,0,1,1 +1774022208.136962,0.30,4,3992.50,49.93,1723.23,1954.77,0.00,3520861903948.446777,3520861903950.456543,11,0,0.000000,0.000020,890192,443745,0,0,1561,0,1,1 +1774022213.136480,0.30,4,3992.50,49.93,1723.23,1954.77,0.00,359.511398,1532.589856,38671,48989,0.000000,0.000030,890192,443748,0,0,1564,0,1,1 +1774022218.138815,0.25,4,3992.50,49.89,1724.69,1953.32,0.00,3516795066388.447754,3516795065215.979980,70,0,0.000000,0.000020,890192,443750,0,0,1566,0,1,1 +1774022223.140321,0.30,4,3992.50,49.89,1724.69,1953.32,0.00,0.126915,0.000000,199,0,0.000000,0.000030,890192,443753,0,0,1569,0,1,1 +1774022228.138408,0.30,4,3992.50,49.89,1724.69,1953.32,0.00,1.832537,0.000195,238,2,0.000000,0.000020,890192,443755,0,0,1571,0,1,1 +1774022233.141059,0.20,4,3992.50,49.90,1724.23,1953.78,0.00,3516573256259.856934,3516573256261.864746,11,0,0.000000,0.000030,890192,443758,0,0,1574,0,1,1 +1774022238.139817,0.35,4,3992.50,49.93,1723.01,1955.00,0.00,0.000000,0.000000,11,0,0.000000,0.000020,890192,443760,0,0,1576,0,1,1 +1774022243.140226,0.30,4,3992.50,49.93,1723.01,1955.00,0.00,0.000000,0.000000,11,0,0.000000,0.000030,890192,443763,0,0,1579,0,1,1 +1774022248.136157,0.25,4,3992.50,49.93,1723.01,1955.00,0.00,0.050041,0.000000,70,0,0.000000,0.000020,890192,443765,0,0,1581,0,1,1 +1774022253.140082,0.35,4,3992.50,49.94,1722.76,1955.19,0.00,355.087159,1531.359144,37913,49015,0.000000,0.000030,890192,443768,0,0,1584,0,1,1 +1774022258.140012,0.25,4,3992.50,49.94,1722.57,1955.44,0.00,3518486095077.335938,3518486093900.124512,70,0,0.000000,0.000020,890192,443770,0,0,1586,0,1,1 +1774022263.141017,0.25,4,3992.50,49.94,1722.57,1955.44,0.00,359.354557,1532.284324,38671,49047,0.000000,0.000030,890192,443773,0,0,1589,0,1,1 +1774022268.140783,0.30,4,3992.50,49.94,1722.57,1955.44,0.00,3518601773528.671387,3518601772355.500977,11,0,0.000000,0.000020,890192,443775,0,0,1591,0,1,1 +1774022273.139758,0.25,4,3992.50,49.95,1722.33,1955.68,0.00,0.000000,0.000000,11,0,0.000000,0.000030,890192,443778,0,0,1594,0,1,1 +1774022278.140295,0.35,4,3992.50,49.95,1722.33,1955.68,0.00,355.377780,1532.415624,37913,49035,0.000000,0.000020,890192,443780,0,0,1596,0,1,1 +1774022283.140920,0.30,4,3992.50,49.95,1722.33,1955.67,0.00,3517997139452.704102,3517997138274.217773,221,20,0.000000,0.000030,890192,443783,0,0,1599,0,1,1 +1774022288.140513,0.30,4,3992.50,49.95,1722.34,1955.67,0.00,3518723492225.212891,3518723492226.505859,199,0,0.000000,0.000020,890192,443785,0,0,1601,0,1,1 +1774022293.136086,0.70,4,3992.50,49.95,1722.34,1955.67,0.00,3521555339773.249512,0.000000,11,0,0.000000,0.000030,890192,443788,0,0,1604,0,1,1 +1774022298.136128,0.20,4,3992.50,49.95,1722.34,1955.67,0.00,1.491882,0.022070,221,20,0.000000,0.000020,890192,443790,0,0,1606,0,1,1 +1774022303.136082,0.25,4,3992.50,49.96,1722.09,1955.92,0.00,0.000000,0.000000,221,20,0.000000,0.000030,890192,443793,0,0,1609,0,1,1 +1774022308.136103,0.20,4,3992.50,49.96,1722.09,1955.92,0.00,3518422255587.172363,3518422255588.592285,70,0,0.000000,0.000020,890192,443795,0,0,1611,0,1,1 +1774022313.138901,0.35,4,3992.50,49.96,1722.09,1955.92,0.00,0.000000,0.000000,70,0,0.000000,0.000030,890192,443798,0,0,1614,0,1,1 +1774022318.138725,0.30,4,3992.50,49.96,1722.10,1955.91,0.00,0.000000,0.000000,70,0,0.000000,0.000020,890192,443800,0,0,1616,0,1,1 +1774022323.140145,0.25,4,3992.50,49.98,1721.36,1956.65,0.00,355.265005,1532.196422,37913,49078,0.000000,0.000030,890192,443803,0,0,1619,0,1,1 +1774022328.140716,0.20,4,3992.50,49.98,1721.35,1956.66,0.00,3518035909691.093262,3518035908512.542480,221,20,0.000000,0.000020,890192,443805,0,0,1621,0,1,1 +1774022333.137805,0.35,4,3992.50,49.98,1721.35,1956.66,0.00,3520486196625.090332,3520486196626.561035,11,0,0.000000,0.000030,890192,443808,0,0,1624,0,1,1 +1774022338.140204,0.25,4,3992.50,49.98,1721.35,1956.66,0.00,2.007826,0.000195,238,2,0.000000,0.000020,890192,443810,0,0,1626,0,1,1 +1774022343.140809,0.25,4,3992.50,49.98,1721.35,1956.66,0.00,3518011295215.094727,3518011295216.926270,199,0,0.000000,0.000030,890192,443813,0,0,1629,0,1,1 +1774022348.138201,0.25,4,3992.50,49.98,1721.36,1956.66,0.00,359.487379,1533.473576,38671,49118,0.000000,0.000020,890192,443815,0,0,1631,0,1,1 +1774022353.140328,0.25,4,3992.50,49.98,1721.36,1956.66,0.00,0.000000,0.005466,38671,49122,0.000000,0.000030,890192,443818,0,0,1634,0,1,1 +1774022358.136144,0.40,4,3992.50,49.98,1721.11,1956.90,0.00,3521383743980.426270,3521383742804.230957,238,2,0.000000,0.000020,890192,443820,0,0,1636,0,1,1 +1774022363.136098,0.40,4,3992.50,49.98,1721.11,1956.90,0.00,3518469749800.519531,3518469749802.527832,11,0,0.000000,0.000030,890192,443823,0,0,1639,0,1,1 +1774022368.136147,0.35,4,3992.50,49.98,1721.11,1956.90,0.00,1.491880,0.022070,221,20,0.000000,0.000020,890192,443825,0,0,1641,0,1,1 +1774022373.138157,0.25,4,3992.50,49.98,1721.11,1956.90,0.00,353.781818,1532.035162,37913,49115,0.000000,0.000030,890192,443828,0,0,1644,0,1,1 +1774022378.140772,0.25,4,3992.50,49.98,1721.11,1956.90,0.00,4.058717,0.027720,38671,49141,0.000000,0.000020,890192,443830,0,0,1646,0,1,1 +1774022383.140185,0.35,4,3992.50,49.98,1721.12,1956.89,0.00,3518849905576.071289,3518849904401.239258,221,20,0.000000,0.000030,890192,443833,0,0,1649,0,1,1 +1774022388.136210,0.70,4,3992.50,49.98,1721.12,1956.89,0.00,3521236587038.722656,3521236587040.143555,70,0,0.000000,0.000020,890192,443835,0,0,1651,0,1,1 +1774022393.140867,0.25,4,3992.50,49.98,1721.12,1956.89,0.00,1.440553,0.022050,221,20,0.000000,0.000030,890192,443838,0,0,1654,0,1,1 +1774022398.140498,0.50,4,3992.50,49.98,1721.12,1956.89,0.00,0.516933,3518697163895.991699,238,2,0.000000,0.000020,890192,443840,0,0,1656,0,1,1 +1774022403.140327,0.85,4,3992.50,50.06,1717.51,1959.98,0.00,0.000000,0.000000,238,2,0.000000,0.000030,890192,443843,0,0,1659,0,1,1 +1774022408.140865,0.35,4,3992.50,50.07,1717.28,1960.21,0.00,358.127119,1532.631108,39495,49217,0.000000,0.000020,890192,443845,0,0,1661,0,1,1 +1774022413.140010,1.35,4,3992.50,50.07,1717.29,1960.21,0.00,3519038671351.859375,3519038670178.986816,70,0,0.000000,0.000030,890192,443848,0,0,1664,0,1,1 +1774022418.140898,0.30,4,3992.50,50.07,1717.29,1960.21,0.00,356.000372,1532.508005,38737,49202,0.000000,0.000020,890192,443850,0,0,1666,0,1,1 +1774022423.136096,0.35,4,3992.50,50.07,1717.29,1960.21,0.00,3521819567561.642090,3521819566383.794434,70,0,0.000000,0.000030,890192,443853,0,0,1669,0,1,1 +1774022428.136050,0.45,4,3992.50,50.07,1717.29,1960.20,0.00,3518469510544.338867,0.000000,11,0,0.000512,0.001107,890206,443877,0,0,1671,0,1,1 +1774022433.136225,0.45,4,3992.50,50.07,1717.29,1960.20,0.00,2.008719,0.000195,238,2,0.001455,0.001794,890224,443906,0,0,1674,0,1,1 +1774022438.139173,0.50,4,3992.50,50.07,1717.30,1960.20,0.00,3516363713988.183105,0.021862,221,20,0.001109,0.000635,890246,443922,0,0,1676,0,1,1 +1774022443.140734,0.85,4,3992.50,50.07,1717.30,1960.20,0.00,358.570600,1532.351986,39495,49260,0.001733,0.001360,890271,443941,0,0,1679,0,1,1 +1774022448.140854,0.25,4,3992.50,50.07,1717.30,1960.20,0.00,0.000000,0.002344,39495,49263,0.000000,0.000020,890271,443943,0,0,1681,0,1,1 +1774022453.139557,0.30,4,3992.50,50.07,1717.30,1960.20,0.00,3519350111753.003906,3519350110580.019043,11,0,0.000000,0.000030,890271,443946,0,0,1684,0,1,1 +1774022458.136153,0.35,4,3992.50,50.07,1717.30,1960.20,0.00,1.492911,0.022085,221,20,0.000000,0.000020,890271,443948,0,0,1686,0,1,1 +1774022463.140738,0.75,4,3992.50,50.17,1713.30,1964.18,0.00,3515213369439.333496,3515213369440.802246,11,0,0.000000,0.000030,890271,443951,0,0,1689,0,1,1 +1774022468.139606,0.25,4,3992.50,50.19,1712.56,1964.92,0.00,2.009244,0.000195,238,2,0.000000,0.000020,890271,443953,0,0,1691,0,1,1 +1774022473.136458,0.30,4,3992.50,50.19,1712.31,1965.16,0.00,354.599890,1533.912709,38773,49319,0.000062,0.000080,890275,443960,0,0,1694,0,1,1 +1774022478.140943,0.30,4,3992.50,50.19,1712.31,1965.16,0.00,0.000000,0.001561,38773,49321,0.000070,0.000078,890280,443967,0,0,1696,0,1,1 +1774022483.136078,0.35,4,3992.50,50.19,1712.31,1965.16,0.00,3521863977953.135254,3521863976773.415527,238,2,0.000050,0.000092,890284,443974,0,0,1699,0,1,1 +1774022488.136689,0.20,4,3992.50,50.19,1712.31,1965.16,0.00,3518006824369.690918,3518006824371.522461,199,0,0.000050,0.000082,890288,443980,0,0,1701,0,1,1 +1774022493.136094,0.30,4,3992.50,50.19,1712.32,1965.16,0.00,3518856436289.865723,0.000000,70,0,0.000000,0.000030,890288,443983,0,0,1704,0,1,1 +1774022498.136164,0.35,4,3992.50,50.14,1714.29,1963.19,0.00,3518387987338.884766,0.000000,11,0,0.000000,0.000020,890288,443985,0,0,1706,0,1,1 +1774022503.136115,0.35,4,3992.50,50.14,1714.29,1963.19,0.00,0.176955,0.000000,199,0,0.000000,0.000030,890288,443988,0,0,1709,0,1,1 +1774022508.140828,0.30,4,3992.50,50.15,1714.04,1963.43,0.00,0.000000,0.000000,199,0,0.000000,0.000053,890288,443991,0,0,1711,0,1,1 +1774022513.139918,0.25,4,3992.50,50.17,1713.30,1964.17,0.00,3519078210386.726562,0.000000,70,0,0.000000,0.000030,890288,443994,0,0,1714,0,1,1 +1774022518.138198,0.25,4,3992.50,50.17,1713.06,1964.42,0.00,3519647466413.797363,0.000000,11,0,0.000000,0.000020,890288,443996,0,0,1716,0,1,1 +1774022523.140759,0.35,4,3992.50,50.17,1713.06,1964.41,0.00,2.007761,0.000195,238,2,0.000000,0.000030,890288,443999,0,0,1719,0,1,1 +1774022528.137537,0.25,4,3992.50,50.17,1713.07,1964.41,0.00,354.605151,1533.981590,38773,49360,0.000000,0.000020,890288,444001,0,0,1721,0,1,1 +1774022533.140445,0.30,4,3992.50,50.17,1713.07,1964.41,0.00,4.058480,0.024595,39531,49385,0.000000,0.000030,890288,444004,0,0,1724,0,1,1 +1774022538.140625,0.25,4,3992.50,50.17,1713.07,1964.41,0.00,3518310163750.114746,3518310162577.535156,70,0,0.000000,0.000020,890288,444006,0,0,1726,0,1,1 +1774022543.138474,0.25,4,3992.50,50.17,1713.07,1964.41,0.00,0.000000,0.000000,70,0,0.000000,0.000030,890288,444009,0,0,1729,0,1,1 +1774022548.136074,0.35,4,3992.50,50.18,1712.82,1964.66,0.00,0.127014,0.000000,199,0,0.000000,0.000020,890288,444011,0,0,1731,0,1,1 +1774022553.136784,0.30,4,3992.50,50.18,1712.82,1964.65,0.00,0.000000,0.000000,199,0,0.000000,0.000030,890288,444014,0,0,1734,0,1,1 +1774022558.136417,0.25,4,3992.50,50.18,1712.83,1964.64,0.00,3518695440311.475098,0.000000,11,0,0.000000,0.000020,890288,444016,0,0,1736,0,1,1 +1774022563.138427,0.30,4,3992.50,50.03,1718.78,1958.70,0.00,0.000000,0.000000,11,0,0.000000,0.000030,890288,444019,0,0,1739,0,1,1 +1774022568.136153,0.45,4,3992.50,50.04,1718.39,1959.09,0.00,0.000000,0.000000,11,0,0.000000,0.000020,890288,444021,0,0,1741,0,1,1 +1774022573.139887,0.40,4,3992.50,50.04,1718.14,1959.33,0.00,0.049963,0.000000,70,0,0.000000,0.000030,890288,444024,0,0,1744,0,1,1 +1774022578.136212,0.25,4,3992.50,50.05,1717.90,1959.58,0.00,0.000000,0.000000,70,0,0.000000,0.000020,890288,444026,0,0,1746,0,1,1 +1774022583.136155,0.35,4,3992.50,50.05,1717.90,1959.58,0.00,360.400389,1533.077595,39531,49424,0.000000,0.000030,890288,444029,0,0,1749,0,1,1 +1774022588.136153,0.30,4,3992.50,50.05,1717.91,1959.57,0.00,3518438862189.019043,3518438861016.404297,11,0,0.000000,0.000020,890288,444031,0,0,1751,0,1,1 +1774022593.139309,0.25,4,3992.50,50.08,1716.93,1960.55,0.00,1.490953,0.022056,221,20,0.000000,0.000030,890288,444034,0,0,1754,0,1,1 +1774022598.139260,0.25,4,3992.50,50.09,1716.19,1961.29,0.00,3518471884829.522461,3518471884830.992188,11,0,0.000000,0.000020,890288,444036,0,0,1756,0,1,1 +1774022603.137441,0.30,4,3992.50,50.05,1717.76,1959.72,0.00,0.000000,0.000000,11,0,0.000000,0.000030,890288,444039,0,0,1759,0,1,1 +1774022608.140775,0.35,4,3992.50,50.07,1717.02,1960.46,0.00,0.000000,0.000000,11,0,0.000000,0.000020,890288,444041,0,0,1761,0,1,1 +1774022613.140116,0.25,4,3992.50,50.08,1716.80,1960.68,0.00,2.009054,0.000195,238,2,0.000000,0.000030,890288,444044,0,0,1764,0,1,1 +1774022618.136266,0.25,4,3992.50,50.10,1716.07,1961.41,0.00,354.649758,1534.243358,38773,49428,0.000000,0.000020,890288,444046,0,0,1766,0,1,1 +1774022623.140489,0.30,4,3992.50,50.10,1716.07,1961.41,0.00,3515468253561.764160,3515468252386.080566,11,0,0.000000,0.000030,890288,444049,0,0,1769,0,1,1 +1774022628.140886,0.25,4,3992.50,50.10,1716.07,1961.41,0.00,356.357115,1532.942566,38773,49431,0.000000,0.000020,890288,444051,0,0,1771,0,1,1 +1774022633.137891,0.35,4,3992.50,50.10,1716.07,1961.41,0.00,3520545869047.666016,3520545867870.281738,11,0,0.000000,0.000030,890288,444054,0,0,1774,0,1,1 +1774022638.136464,0.25,4,3992.50,50.06,1717.62,1959.85,0.00,0.000000,0.000000,11,0,0.000000,0.000020,890288,444056,0,0,1776,0,1,1 +1774022643.140817,0.40,4,3992.50,50.06,1717.38,1960.10,0.00,0.000000,0.000000,11,0,0.000000,0.000030,890288,444059,0,0,1779,0,1,1 +1774022648.140084,0.25,4,3992.50,50.07,1717.13,1960.34,0.00,1.492114,0.022074,221,20,0.000000,0.000020,890288,444061,0,0,1781,0,1,1 +1774022653.140504,0.25,4,3992.50,50.07,1717.14,1960.34,0.00,3518141355709.797852,3518141355711.267578,11,0,0.000000,0.000030,890288,444064,0,0,1784,0,1,1 +1774022658.140964,0.25,4,3992.50,50.09,1716.40,1961.07,0.00,0.176937,0.000000,199,0,0.000000,0.000020,890288,444066,0,0,1786,0,1,1 +1774022663.136789,0.30,4,3992.50,50.09,1716.40,1961.07,0.00,3521377566193.599609,0.000000,70,0,0.000000,0.000030,890288,444069,0,0,1789,0,1,1 +1774022668.140179,0.35,4,3992.50,50.09,1716.40,1961.07,0.00,1.957462,0.000195,238,2,0.000000,0.000020,890288,444071,0,0,1791,0,1,1 +1774022673.136159,0.25,4,3992.50,50.09,1716.40,1961.07,0.00,0.000000,0.000000,238,2,0.000000,0.000030,890288,444074,0,0,1794,0,1,1 +1774022678.140611,0.25,4,3992.50,50.13,1714.93,1962.54,0.00,3515307782761.474609,3515307782763.304688,199,0,0.000000,0.000020,890288,444076,0,0,1796,0,1,1 +1774022683.136160,0.25,4,3992.50,50.13,1714.93,1962.54,0.00,3521571723249.591797,0.000000,70,0,0.000000,0.000030,890288,444079,0,0,1799,0,1,1 +1774022688.139506,0.25,4,3992.50,50.13,1714.93,1962.54,0.00,1.440930,0.022056,221,20,0.000000,0.000020,890288,444081,0,0,1801,0,1,1 +1774022693.140373,0.40,4,3992.50,50.13,1714.71,1962.76,0.00,354.832024,1532.821891,38773,49476,0.000000,0.000030,890288,444084,0,0,1804,0,1,1 +1774022698.140440,0.60,4,3992.50,50.13,1714.71,1962.75,0.00,3518390067025.662598,3518390065848.954102,11,0,0.000000,0.000020,890288,444086,0,0,1806,0,1,1 +1774022703.140284,0.25,4,3992.50,50.13,1714.65,1962.83,0.00,2.008852,0.000195,238,2,0.000000,0.000030,890288,444089,0,0,1809,0,1,1 +1774022708.138047,0.30,4,3992.50,50.12,1715.29,1962.19,0.00,3520012003820.993652,0.021885,221,20,0.000000,0.000020,890288,444091,0,0,1811,0,1,1 +1774022713.140282,0.25,4,3992.50,50.15,1714.06,1963.42,0.00,3516865092814.187988,3516865092815.657715,11,0,0.000000,0.000030,890288,444094,0,0,1814,0,1,1 +1774022718.140851,0.25,4,3992.50,50.15,1714.06,1963.42,0.00,0.176933,0.000000,199,0,0.000000,0.000020,890288,444096,0,0,1816,0,1,1 +1774022723.136076,0.25,4,3992.50,50.15,1714.06,1963.42,0.00,1.833587,0.000195,238,2,0.000000,0.000030,890288,444099,0,0,1819,0,1,1 +1774022728.140237,0.25,4,3992.50,50.15,1713.83,1963.64,0.00,3515511184939.662598,3515511184941.669434,11,0,0.001446,0.001775,890305,444126,0,0,1821,0,1,1 +1774022733.136345,0.35,4,3992.50,50.04,1718.31,1959.15,0.00,0.000000,0.000000,11,0,0.000521,0.001125,890320,444152,0,0,1824,0,1,1 +1774022738.136267,0.40,4,3992.50,50.08,1716.87,1960.60,0.00,0.176956,0.000000,199,0,0.001779,0.001557,890345,444170,0,0,1826,0,1,1 +1774022743.140475,0.30,4,3992.50,50.08,1716.87,1960.60,0.00,1.830296,0.000195,238,2,0.001063,0.000439,890367,444187,0,0,1829,0,1,1 +1774022748.136148,0.25,4,3992.50,50.08,1716.87,1960.60,0.00,3521484311928.569824,3521484311930.580078,11,0,0.000000,0.000020,890367,444189,0,0,1831,0,1,1 +1774022753.138105,0.35,4,3992.50,50.08,1716.87,1960.60,0.00,0.049980,0.000000,70,0,0.000000,0.000030,890367,444192,0,0,1834,0,1,1 +1774022758.136185,0.40,4,3992.50,50.08,1716.87,1960.60,0.00,3519788697221.517578,0.000000,11,0,0.000000,0.000020,890367,444194,0,0,1836,0,1,1 +1774022763.137711,0.35,4,3992.50,50.08,1716.87,1960.59,0.00,0.000000,0.000000,11,0,0.000000,0.000030,890367,444197,0,0,1839,0,1,1 +1774022768.137432,0.30,4,3992.50,50.08,1716.88,1960.59,0.00,356.405327,1533.357784,38773,49603,0.000000,0.000020,890367,444199,0,0,1841,0,1,1 +1774022773.140480,0.30,4,3992.50,50.08,1716.87,1960.61,0.00,4.058366,0.024594,39531,49628,0.000062,0.000080,890371,444206,0,0,1844,0,1,1 +1774022778.136085,0.20,4,3992.50,50.08,1716.87,1960.61,0.00,3521532658972.105957,3521532657798.223145,11,0,0.000070,0.000078,890376,444213,0,0,1846,0,1,1 +1774022783.136077,0.25,4,3992.50,50.08,1716.87,1960.61,0.00,356.385984,1533.282378,38773,49613,0.000050,0.000092,890380,444220,0,0,1849,0,1,1 +1774022788.136157,0.30,4,3992.50,50.08,1716.64,1960.84,0.00,3518381426702.332031,3518381425523.447754,238,2,0.000050,0.000082,890384,444226,0,0,1851,0,1,1 +1774022793.136328,0.30,4,3992.50,50.08,1716.64,1960.84,0.00,354.364554,1533.232971,38773,49620,0.000000,0.000030,890384,444229,0,0,1854,0,1,1 +1774022798.140764,0.45,4,3992.50,50.08,1716.64,1960.84,0.00,0.000000,0.007806,38773,49624,0.000000,0.000020,890384,444231,0,0,1856,0,1,1 +1774022803.140138,0.30,4,3992.50,50.08,1716.64,1960.84,0.00,4.061348,0.024612,39531,49649,0.000000,0.000030,890384,444234,0,0,1859,0,1,1 +1774022808.139567,0.25,4,3992.50,50.08,1716.64,1960.84,0.00,3518839436502.222168,3518839435329.215820,11,0,0.000000,0.000020,890384,444236,0,0,1861,0,1,1 +1774022813.140696,0.35,4,3992.50,50.08,1716.64,1960.84,0.00,0.176913,0.000000,199,0,0.000000,0.000030,890384,444239,0,0,1864,0,1,1 +1774022818.136510,0.30,4,3992.50,50.04,1718.21,1959.27,0.00,3521384955299.214844,0.000000,70,0,0.000000,0.000020,890384,444241,0,0,1866,0,1,1 +1774022823.138423,0.35,4,3992.50,50.04,1718.21,1959.27,0.00,0.126905,0.000000,199,0,0.000000,0.000030,890384,444244,0,0,1869,0,1,1 +1774022828.136659,0.25,4,3992.50,50.04,1718.22,1959.26,0.00,3519678483334.754883,0.000000,70,0,0.000000,0.000020,890384,444246,0,0,1871,0,1,1 +1774022833.136152,0.25,4,3992.50,50.05,1718.00,1959.48,0.00,360.432872,1533.497053,39531,49671,0.000000,0.000030,890384,444249,0,0,1874,0,1,1 +1774022838.136086,0.30,4,3992.50,50.06,1717.51,1959.97,0.00,3518483567358.717285,3518483566185.629883,199,0,0.000000,0.000020,890384,444251,0,0,1876,0,1,1 +1774022843.136009,0.25,4,3992.50,50.06,1717.51,1959.97,0.00,1.314962,0.022071,221,20,0.000000,0.000030,890384,444254,0,0,1879,0,1,1 +1774022848.140556,0.30,4,3992.50,50.07,1717.27,1960.21,0.00,0.516425,3515240537019.825684,238,2,0.000000,0.000020,890384,444256,0,0,1881,0,1,1 +1774022853.140140,0.30,4,3992.50,50.07,1717.27,1960.21,0.00,3518730135423.758789,3518730135425.767578,11,0,0.000000,0.000030,890384,444259,0,0,1884,0,1,1 +1774022858.140243,0.35,4,3992.50,50.07,1717.27,1960.20,0.00,356.378082,1533.304629,38773,49665,0.000000,0.000020,890384,444261,0,0,1886,0,1,1 +1774022863.140385,0.25,4,3992.50,50.04,1718.48,1959.00,0.00,3518337329968.183105,3518337328789.796387,221,20,0.000000,0.000030,890384,444264,0,0,1889,0,1,1 +1774022868.137106,0.25,4,3992.50,50.04,1718.48,1959.00,0.00,3520746105728.230957,3520746105729.524902,199,0,0.000000,0.000020,890384,444266,0,0,1891,0,1,1 +1774022873.140580,0.35,4,3992.50,50.06,1717.50,1959.98,0.00,1.830564,0.000195,238,2,0.000000,0.000030,890384,444269,0,0,1894,0,1,1 +1774022878.136950,0.30,4,3992.50,50.06,1717.50,1959.98,0.00,3520993366266.951172,0.021891,221,20,0.000000,0.000020,890384,444271,0,0,1896,0,1,1 +1774022883.140759,0.30,4,3992.50,50.06,1717.50,1959.98,0.00,3515758679614.351074,3515758679615.643066,199,0,0.000000,0.000030,890384,444274,0,0,1899,0,1,1 +1774022888.140692,0.35,4,3992.50,50.06,1717.50,1959.98,0.00,1.831861,0.000195,238,2,0.000000,0.000020,890384,444276,0,0,1901,0,1,1 +1774022893.136145,0.30,4,3992.50,50.06,1717.51,1959.97,0.00,3521639757085.905762,3521639757087.866211,70,0,0.000000,0.000043,890384,444280,0,0,1904,0,1,1 +1774022898.136151,0.25,4,3992.50,50.07,1717.29,1960.19,0.00,356.334982,1533.364004,38773,49696,0.000000,0.000020,890384,444282,0,0,1906,0,1,1 +1774022903.136213,0.30,4,3992.50,50.01,1719.54,1957.94,0.00,3518393781696.222656,3518393780519.079590,199,0,0.000000,0.000030,890384,444285,0,0,1909,0,1,1 +1774022908.136154,0.30,4,3992.50,50.01,1719.54,1957.94,0.00,1.314957,0.022071,221,20,0.000000,0.000020,890384,444287,0,0,1911,0,1,1 +1774022913.136124,0.20,4,3992.50,50.01,1719.29,1958.19,0.00,3518458242928.952637,3518458242930.245605,199,0,0.000000,0.000030,890384,444290,0,0,1914,0,1,1 +1774022918.136442,0.25,4,3992.50,50.01,1719.51,1957.97,0.00,1.314858,0.022069,221,20,0.000000,0.000020,890384,444292,0,0,1916,0,1,1 +1774022923.138876,0.35,4,3992.50,50.02,1719.02,1958.46,0.00,3516724894430.260254,3516724894431.729492,11,0,0.000000,0.000030,890384,444295,0,0,1919,0,1,1 +1774022928.136079,0.30,4,3992.50,50.02,1719.02,1958.46,0.00,0.000000,0.000000,11,0,0.000000,0.000020,890384,444297,0,0,1921,0,1,1 +1774022933.136180,0.40,4,3992.50,50.02,1719.02,1958.46,0.00,360.438990,1533.381450,39531,49741,0.000000,0.000030,890384,444300,0,0,1924,0,1,1 +1774022938.137936,0.30,4,3992.50,50.02,1719.02,1958.46,0.00,3517202058608.515625,3517202057434.491699,221,20,0.000000,0.000020,890384,444302,0,0,1926,0,1,1 +1774022943.139164,0.25,4,3992.50,50.02,1719.02,1958.46,0.00,3517573688159.229004,3517573688160.648438,70,0,0.000000,0.000030,890384,444305,0,0,1929,0,1,1 +1774022948.140908,0.35,4,3992.50,50.02,1719.02,1958.46,0.00,3517210126724.464355,0.000000,11,0,0.000000,0.000020,890384,444307,0,0,1931,0,1,1 +1774022953.140007,0.25,4,3992.50,50.02,1719.02,1958.45,0.00,1.492163,0.022074,221,20,0.000000,0.000030,890384,444310,0,0,1934,0,1,1 +1774022958.140544,0.30,4,3992.50,50.02,1719.03,1958.45,0.00,358.915806,1533.247461,39531,49759,0.000000,0.000020,890384,444312,0,0,1936,0,1,1 +1774022963.140820,0.40,4,3992.50,50.02,1719.03,1958.45,0.00,3518243453930.205566,3518243452757.281738,11,0,0.000000,0.000030,890384,444315,0,0,1939,0,1,1 +1774022968.140628,0.30,4,3992.50,50.02,1719.03,1958.45,0.00,356.399117,1533.474823,38773,49742,0.000000,0.000020,890384,444317,0,0,1941,0,1,1 +1774022973.140746,0.25,4,3992.50,50.02,1719.03,1958.45,0.00,3518354373800.270996,3518354372621.798828,221,20,0.000000,0.000030,890384,444320,0,0,1944,0,1,1 +1774022978.140109,0.45,4,3992.50,50.02,1719.03,1958.45,0.00,0.000000,0.000000,221,20,0.000000,0.000020,890384,444322,0,0,1946,0,1,1 +1774022983.141150,0.40,4,3992.50,50.02,1719.03,1958.44,0.00,0.516787,3517704748179.266602,238,2,0.000000,0.000030,890384,444325,0,0,1949,0,1,1 +1774022988.139157,0.35,4,3992.50,50.01,1719.29,1958.19,0.00,3519840428466.403809,3519840428468.413086,11,0,0.000000,0.000020,890384,444327,0,0,1951,0,1,1 +1774022993.140174,0.30,4,3992.50,50.02,1719.04,1958.43,0.00,360.372988,1533.151433,39531,49786,0.000000,0.000030,890384,444330,0,0,1954,0,1,1 +1774022998.139621,0.60,4,3992.50,50.03,1718.80,1958.68,0.00,0.000000,0.002344,39531,49789,0.000000,0.000020,890384,444332,0,0,1956,0,1,1 +1774023003.136078,0.30,4,3992.50,50.05,1717.83,1959.65,0.00,3520932093824.124512,3520932092650.096191,199,0,0.000000,0.000030,890384,444335,0,0,1959,0,1,1 +1774023008.136720,0.35,4,3992.50,50.05,1717.83,1959.65,0.00,1.831600,0.000195,238,2,0.000000,0.000020,890384,444337,0,0,1961,0,1,1 +1774023013.138435,0.25,4,3992.50,50.05,1717.83,1959.65,0.00,3517231001943.476562,3517231001945.484863,11,0,0.000000,0.000030,890384,444340,0,0,1964,0,1,1 +1774023018.138212,0.40,4,3992.50,50.05,1717.83,1959.65,0.00,0.176961,0.000000,199,0,0.000000,0.000020,890384,444342,0,0,1966,0,1,1 +1774023023.136151,0.25,4,3992.50,50.06,1717.62,1959.87,0.00,360.417906,1534.161313,39531,49836,0.000000,0.000030,890384,444345,0,0,1969,0,1,1 +1774023028.136166,0.35,4,3992.50,50.06,1717.62,1959.87,0.00,3518426696167.647949,3518426694994.392090,199,0,0.001434,0.001776,890400,444372,0,0,1971,0,1,1 +1774023033.140858,0.30,4,3992.50,50.06,1717.62,1959.86,0.00,0.000000,0.000000,199,0,0.001453,0.001793,890418,444401,0,0,1974,0,1,1 +1774023038.140688,0.50,4,3992.50,50.02,1719.08,1958.40,0.00,356.220595,1533.580602,38773,49826,0.001779,0.001557,890443,444419,0,0,1976,0,1,1 +1774023043.138805,0.35,4,3992.50,50.05,1718.10,1959.38,0.00,3519762665970.571289,3519762664790.975586,238,2,0.001735,0.001374,890468,444439,0,0,1979,0,1,1 +1774023048.140701,0.25,4,3992.50,50.01,1719.54,1957.95,0.00,3517103669481.413086,3517103669483.244629,199,0,0.000000,0.000020,890468,444441,0,0,1981,0,1,1 +1774023053.140905,0.30,4,3992.50,50.01,1719.54,1957.95,0.00,3518293606211.192383,0.000000,11,0,0.000000,0.000030,890468,444444,0,0,1984,0,1,1 +1774023058.136081,0.25,4,3992.50,50.02,1719.04,1958.44,0.00,0.000000,0.000000,11,0,0.000000,0.000020,890468,444446,0,0,1986,0,1,1 +1774023063.136081,0.30,4,3992.50,50.02,1719.04,1958.44,0.00,0.050000,0.000000,70,0,0.000000,0.000030,890468,444449,0,0,1989,0,1,1 +1774023068.140830,0.25,4,3992.50,50.00,1719.70,1957.78,0.00,0.000000,0.000000,70,0,0.000000,0.000020,890468,444451,0,0,1991,0,1,1 +1774023073.136078,0.40,4,3992.50,50.04,1718.23,1959.25,0.00,360.739118,1535.040079,39531,49880,0.000062,0.000080,890472,444458,0,0,1994,0,1,1 +1774023078.136165,0.25,4,3992.50,50.04,1718.23,1959.25,0.00,0.000000,0.002344,39531,49882,0.000070,0.000078,890477,444465,0,0,1996,0,1,1 +1774023083.136116,0.35,4,3992.50,50.04,1718.23,1959.25,0.00,0.000000,0.003125,39531,49886,0.000050,0.000092,890481,444472,0,0,1999,0,1,1 +1774023088.137875,0.30,4,3992.50,50.01,1719.43,1958.05,0.00,3517200335082.686035,3517200333907.950195,238,2,0.000050,0.000082,890485,444478,0,0,2001,0,1,1 +1774023093.140940,0.15,4,3992.50,50.02,1718.97,1958.52,0.00,3516281666334.663086,0.021862,221,20,0.000000,0.000030,890485,444481,0,0,2004,0,1,1 +1774023098.136418,0.35,4,3992.50,50.02,1718.97,1958.52,0.00,3521622028614.277832,3521622028615.571777,199,0,0.000000,0.000020,890485,444483,0,0,2006,0,1,1 +1774023103.136151,0.30,4,3992.50,50.02,1718.97,1958.51,0.00,3518625086573.245605,0.000000,11,0,0.000000,0.000030,890485,444486,0,0,2009,0,1,1 +1774023108.139631,0.30,4,3992.50,50.04,1718.24,1959.25,0.00,0.000000,0.000000,11,0,0.000000,0.000020,890485,444488,0,0,2011,0,1,1 +1774023113.136152,0.20,4,3992.50,50.04,1718.24,1959.25,0.00,0.177076,0.000000,199,0,0.000000,0.000030,890485,444491,0,0,2014,0,1,1 +1774023118.136731,0.25,4,3992.50,50.04,1718.24,1959.25,0.00,1.831624,0.000195,238,2,0.000000,0.000020,890485,444493,0,0,2016,0,1,1 +1774023123.140195,0.30,4,3992.50,50.04,1718.24,1959.25,0.00,3516001388516.852539,3516001388518.859863,11,0,0.000000,0.000030,890485,444496,0,0,2019,0,1,1 +1774023128.140814,0.20,4,3992.50,50.04,1718.24,1959.25,0.00,356.341341,1533.401211,38773,49893,0.000000,0.000020,890485,444498,0,0,2021,0,1,1 +1774023133.138900,0.30,4,3992.50,50.07,1717.27,1960.22,0.00,4.062395,0.031653,39531,49922,0.000000,0.000030,890485,444501,0,0,2024,0,1,1 +1774023138.136767,0.25,4,3992.50,50.07,1717.27,1960.21,0.00,3519938983452.174316,3519938982276.487793,238,2,0.000000,0.000020,890485,444503,0,0,2026,0,1,1 +1774023143.140161,0.25,4,3992.50,50.07,1717.27,1960.21,0.00,3516050576335.675293,3516050576337.682129,11,0,0.000000,0.000030,890485,444506,0,0,2029,0,1,1 +1774023148.140809,0.30,4,3992.50,50.03,1718.71,1958.77,0.00,0.176930,0.000000,199,0,0.000000,0.000020,890485,444508,0,0,2031,0,1,1 +1774023153.136076,0.30,4,3992.50,50.03,1718.71,1958.77,0.00,0.000000,0.000000,199,0,0.000000,0.000030,890485,444511,0,0,2034,0,1,1 +1774023158.140440,0.30,4,3992.50,50.05,1718.00,1959.48,0.00,359.955218,1532.297982,39531,49937,0.000000,0.000020,890485,444513,0,0,2036,0,1,1 +1774023163.136140,0.20,4,3992.50,50.05,1718.00,1959.47,0.00,3521465810684.359375,3521465809508.689453,221,20,0.000000,0.000030,890485,444516,0,0,2039,0,1,1 +1774023168.138542,0.30,4,3992.50,50.05,1718.01,1959.47,0.00,354.723127,1532.869195,38773,49928,0.000000,0.000020,890485,444518,0,0,2041,0,1,1 +1774023173.138225,0.25,4,3992.50,50.05,1718.01,1959.47,0.00,3518659917180.148926,3518659916002.832031,11,0,0.000000,0.000030,890485,444521,0,0,2044,0,1,1 +1774023178.140205,0.25,4,3992.50,49.95,1721.85,1955.64,0.00,2.007994,0.000195,238,2,0.000000,0.000020,890485,444523,0,0,2046,0,1,1 +1774023183.140782,0.25,4,3992.50,49.97,1720.87,1956.62,0.00,354.335811,1533.458567,38773,49938,0.000000,0.000030,890485,444526,0,0,2049,0,1,1 +1774023188.140616,0.20,4,3992.50,49.97,1720.87,1956.62,0.00,3518553668431.151855,3518553667253.686035,199,0,0.000000,0.000056,890485,444529,0,0,2051,0,1,1 +1774023193.140622,0.25,4,3992.50,49.98,1720.62,1956.86,0.00,3518432973393.459961,0.000000,70,0,0.000000,0.000030,890485,444532,0,0,2054,0,1,1 +1774023198.136154,0.25,4,3992.50,50.01,1719.40,1958.08,0.00,1.960541,0.000195,238,2,0.000000,0.000020,890485,444534,0,0,2056,0,1,1 +1774023203.136161,0.30,4,3992.50,50.01,1719.40,1958.08,0.00,3518432210596.393066,3518432210598.401855,11,0,0.000000,0.000030,890485,444537,0,0,2059,0,1,1 +1774023208.136136,0.25,4,3992.50,50.01,1719.40,1958.08,0.00,0.176954,0.000000,199,0,0.000000,0.000020,890485,444539,0,0,2061,0,1,1 +1774023213.140585,0.25,4,3992.50,50.01,1719.40,1958.08,0.00,359.949055,1532.314679,39531,49981,0.000000,0.000030,890485,444542,0,0,2064,0,1,1 +1774023218.140387,0.30,4,3992.50,50.01,1719.40,1958.08,0.00,3518576235567.074219,3518576235571.114746,38773,49961,0.000000,0.000020,890485,444544,0,0,2066,0,1,1 +1774023223.140902,0.25,4,3992.50,50.01,1719.40,1958.07,0.00,3518075031147.229980,3518075029968.609863,221,20,0.000000,0.000030,890485,444547,0,0,2069,0,1,1 +1774023228.140833,0.25,4,3992.50,50.01,1719.41,1958.07,0.00,0.000000,0.000000,221,20,0.000000,0.000020,890485,444549,0,0,2071,0,1,1 +1774023233.137385,0.35,4,3992.50,50.01,1719.41,1958.07,0.00,3520864736675.011719,3520864736676.482422,11,0,0.000000,0.000030,890485,444552,0,0,2074,0,1,1 +1774023238.140056,0.25,4,3992.50,50.01,1719.41,1958.07,0.00,1.491098,0.022059,221,20,0.000000,0.000020,890485,444554,0,0,2076,0,1,1 +1774023243.136161,0.30,4,3992.50,50.01,1719.41,1958.07,0.00,3521180217426.151855,3521180217427.623047,11,0,0.000000,0.000030,890485,444557,0,0,2079,0,1,1 +1774023248.136088,0.25,4,3992.50,50.01,1719.41,1958.07,0.00,0.000000,0.000000,11,0,0.000000,0.000020,890485,444559,0,0,2081,0,1,1 +1774023253.136097,0.25,4,3992.50,50.01,1719.41,1958.07,0.00,2.008785,0.000195,238,2,0.000000,0.000030,890485,444562,0,0,2084,0,1,1 +1774023258.136083,0.35,4,3992.50,50.01,1719.42,1958.07,0.00,3518446769909.935547,0.021875,221,20,0.000000,0.000020,890485,444564,0,0,2086,0,1,1 +1774023263.136186,0.30,4,3992.50,50.00,1719.73,1957.75,0.00,358.947002,1533.658063,39531,50016,0.000000,0.000030,890485,444567,0,0,2089,0,1,1 +1774023268.141001,0.30,4,3992.50,50.01,1719.48,1958.00,0.00,3515052732267.865723,3515052731094.260254,221,20,0.000000,0.000020,890485,444569,0,0,2091,0,1,1 +1774023273.140646,0.30,4,3992.50,50.01,1719.48,1958.00,0.00,3518686790743.250488,3518686790744.720703,11,0,0.000000,0.000030,890485,444572,0,0,2094,0,1,1 +1774023278.136257,0.20,4,3992.50,50.01,1719.48,1958.00,0.00,356.698529,1535.042253,38773,50001,0.000000,0.000020,890485,444574,0,0,2096,0,1,1 +1774023283.136146,0.25,4,3992.50,50.01,1719.49,1958.00,0.00,3518515535608.735840,3518515534431.223145,199,0,0.000000,0.000030,890485,444577,0,0,2099,0,1,1 +1774023288.136181,0.25,4,3992.50,50.01,1719.49,1957.99,0.00,3518412551847.859375,0.000000,11,0,0.000000,0.000020,890485,444579,0,0,2101,0,1,1 +1774023293.136129,0.25,4,3992.50,50.01,1719.50,1957.99,0.00,360.450049,1533.755063,39531,50040,0.000000,0.000030,890485,444582,0,0,2104,0,1,1 +1774023298.136084,0.50,4,3992.50,50.01,1719.50,1957.99,0.00,3518468832522.112793,3518468831347.339355,221,20,0.000000,0.000020,890485,444584,0,0,2106,0,1,1 +1774023303.140196,1.85,4,3992.50,50.06,1717.54,1959.95,0.00,3515546222648.118652,3515546222649.587402,11,0,0.000000,0.000030,890485,444587,0,0,2109,0,1,1 +1774023308.140005,0.30,4,3992.50,50.08,1716.82,1960.67,0.00,356.399039,1533.862004,38773,50099,0.000000,0.000020,890485,444589,0,0,2111,0,1,1 +1774023313.140292,0.35,4,3992.50,50.08,1716.82,1960.67,0.00,3518235013449.700684,3518235012272.300293,70,0,0.000000,0.000030,890485,444592,0,0,2114,0,1,1 +1774023318.140519,0.40,4,3992.50,50.08,1716.82,1960.67,0.00,1.441829,0.022069,221,20,0.000000,0.000020,890485,444594,0,0,2116,0,1,1 +1774023323.140399,0.20,4,3992.50,50.08,1716.82,1960.67,0.00,3518521421173.452637,3518521421174.872559,70,0,0.000000,0.000030,890485,444597,0,0,2119,0,1,1 +1774023328.139534,0.35,4,3992.50,50.08,1716.57,1960.91,0.00,360.458640,1534.105208,39531,50134,0.000512,0.001107,890499,444621,0,0,2121,0,1,1 +1774023333.140174,0.30,4,3992.50,50.09,1716.32,1961.16,0.00,3517986681780.111816,3517986680606.691895,199,0,0.001455,0.001794,890517,444650,0,0,2124,0,1,1 +1774023338.136147,0.35,4,3992.50,50.11,1715.59,1961.89,0.00,3521273787884.967773,0.000000,11,0,0.001110,0.000636,890539,444666,0,0,2126,0,1,1 +1774023343.136808,0.65,4,3992.50,50.11,1715.59,1961.89,0.00,2.008523,0.000195,238,2,0.001734,0.001361,890564,444685,0,0,2129,0,1,1 +1774023348.140234,0.30,4,3992.50,50.11,1715.59,1961.89,0.00,3516027748901.452148,3516027748903.458984,11,0,0.000000,0.000020,890564,444687,0,0,2131,0,1,1 +1774023353.140442,0.25,4,3992.50,50.11,1715.59,1961.89,0.00,0.176946,0.000000,199,0,0.000000,0.000030,890564,444690,0,0,2134,0,1,1 +1774023358.139323,0.30,4,3992.50,50.11,1715.59,1961.89,0.00,3519224803651.785645,0.000000,11,0,0.000000,0.000020,890564,444692,0,0,2136,0,1,1 +1774023363.136770,0.30,4,3992.50,50.11,1715.59,1961.89,0.00,0.000000,0.000000,11,0,0.000000,0.000030,890564,444695,0,0,2139,0,1,1 +1774023368.140930,0.45,4,3992.50,50.11,1715.59,1961.88,0.00,0.000000,0.000000,11,0,0.000000,0.000020,890564,444697,0,0,2141,0,1,1 +1774023373.136183,0.30,4,3992.50,50.11,1715.60,1961.88,0.00,0.000000,0.000000,11,0,0.000062,0.000080,890568,444704,0,0,2144,0,1,1 +1774023378.136344,0.30,4,3992.50,50.11,1715.60,1961.88,0.00,356.373944,1533.817280,38773,50157,0.000062,0.000070,890572,444710,0,0,2146,0,1,1 +1774023383.136181,0.25,4,3992.50,50.11,1715.38,1962.10,0.00,0.000000,0.002344,38773,50160,0.000058,0.000100,890577,444718,0,0,2149,0,1,1 +1774023388.136091,0.20,4,3992.50,50.11,1715.38,1962.10,0.00,3518500675945.707031,3518500674768.202637,11,0,0.000050,0.000082,890581,444724,0,0,2151,0,1,1 +1774023393.136833,0.25,4,3992.50,50.11,1715.38,1962.10,0.00,356.332573,1533.645470,38773,50165,0.000000,0.000030,890581,444727,0,0,2154,0,1,1 +1774023398.136458,0.35,4,3992.50,50.11,1715.38,1962.09,0.00,3518701348993.691895,3518701347814.645996,221,20,0.000000,0.000020,890581,444729,0,0,2156,0,1,1 +1774023403.140321,0.20,4,3992.50,50.06,1717.70,1959.79,0.00,3515721033828.537598,3515721033830.006348,11,0,0.000000,0.000030,890581,444732,0,0,2159,0,1,1 +1774023408.140980,0.25,4,3992.50,50.09,1716.22,1961.26,0.00,0.000000,0.000000,11,0,0.000000,0.000020,890581,444734,0,0,2161,0,1,1 +1774023413.140325,0.40,4,3992.50,50.10,1716.00,1961.48,0.00,0.000000,0.000000,11,0,0.000000,0.000030,890581,444737,0,0,2164,0,1,1 +1774023418.140948,0.35,4,3992.50,50.10,1716.00,1961.48,0.00,0.000000,0.000000,11,0,0.000000,0.000020,890581,444739,0,0,2166,0,1,1 +1774023423.136089,0.30,4,3992.50,50.12,1715.27,1962.21,0.00,356.732150,1535.407468,38773,50193,0.000000,0.000030,890581,444742,0,0,2169,0,1,1 +1774023428.136083,0.35,4,3992.50,50.12,1715.28,1962.21,0.00,4.060844,0.030078,39531,50224,0.000000,0.000020,890581,444744,0,0,2171,0,1,1 +1774023433.140945,0.25,4,3992.50,50.07,1717.17,1960.32,0.00,3515019545178.414062,3515019544004.586426,221,20,0.000000,0.000030,890581,444747,0,0,2174,0,1,1 +1774023438.140695,0.30,4,3992.50,50.07,1717.17,1960.32,0.00,3518613160651.469727,3518613160652.889648,70,0,0.000000,0.000020,890581,444749,0,0,2176,0,1,1 +1774023443.139817,0.25,4,3992.50,50.07,1716.95,1960.54,0.00,356.398033,1534.204175,38773,50212,0.000000,0.000030,890581,444752,0,0,2179,0,1,1 +1774023448.137947,0.25,4,3992.50,50.11,1715.72,1961.76,0.00,3519753045678.530273,3519753044498.531738,238,2,0.000000,0.000020,890581,444754,0,0,2181,0,1,1 +1774023453.140777,0.25,4,3992.50,50.11,1715.72,1961.75,0.00,354.176194,1533.105886,38773,50243,0.000000,0.000030,890581,444757,0,0,2184,0,1,1 +1774023458.136091,0.25,4,3992.50,50.11,1715.73,1961.75,0.00,3521737906666.812012,3521737905488.119141,11,0,0.000000,0.000020,890581,444759,0,0,2186,0,1,1 +1774023463.136155,0.25,4,3992.50,50.11,1715.73,1961.75,0.00,0.176951,0.000000,199,0,0.000000,0.000030,890581,444762,0,0,2189,0,1,1 +1774023468.136072,0.30,4,3992.50,50.11,1715.48,1962.00,0.00,3518495461093.876465,0.000000,11,0,0.000000,0.000020,890581,444764,0,0,2191,0,1,1 +1774023473.140606,0.25,4,3992.50,50.16,1713.76,1963.72,0.00,2.006969,0.000195,238,2,0.000000,0.000030,890581,444767,0,0,2194,0,1,1 +1774023478.136500,0.40,4,3992.50,50.16,1713.76,1963.72,0.00,354.667916,1535.251578,38773,50259,0.000000,0.000020,890581,444769,0,0,2196,0,1,1 +1774023483.140189,0.25,4,3992.50,50.16,1713.76,1963.71,0.00,3515843307232.829590,3515843306054.085449,238,2,0.000000,0.000030,890581,444772,0,0,2199,0,1,1 +1774023488.140082,0.20,4,3992.50,50.16,1713.76,1963.71,0.00,0.000000,0.000000,238,2,0.000000,0.000020,890581,444774,0,0,2201,0,1,1 +1774023493.140546,0.25,4,3992.50,50.16,1713.77,1963.71,0.00,358.404261,1533.885675,39531,50295,0.000000,0.000030,890581,444777,0,0,2204,0,1,1 +1774023498.139800,0.30,4,3992.50,50.16,1713.77,1963.71,0.00,3518962081423.435547,3518962080249.628418,70,0,0.000000,0.000020,890581,444779,0,0,2206,0,1,1 +1774023503.141021,0.15,4,3992.50,50.16,1713.77,1963.71,0.00,360.308343,1533.662374,39531,50302,0.000000,0.000030,890581,444782,0,0,2209,0,1,1 +1774023508.140870,0.30,4,3992.50,50.16,1713.77,1963.71,0.00,3518543610689.008301,3518543609515.332031,70,0,0.000000,0.000020,890581,444784,0,0,2211,0,1,1 +1774023513.140414,0.25,4,3992.50,50.16,1713.77,1963.71,0.00,3518757952819.319824,0.000000,11,0,0.000000,0.000030,890581,444787,0,0,2214,0,1,1 +1774023518.139147,0.25,4,3992.50,50.12,1715.12,1962.36,0.00,0.050013,0.000000,70,0,0.000000,0.000020,890581,444789,0,0,2216,0,1,1 +1774023523.140121,0.20,4,3992.50,50.12,1715.12,1962.36,0.00,3517751989490.869141,0.000000,11,0,0.000000,0.000030,890581,444792,0,0,2219,0,1,1 +1774023528.136096,0.30,4,3992.50,50.13,1714.66,1962.82,0.00,356.672541,1535.263492,38773,50294,0.000000,0.000020,890581,444794,0,0,2221,0,1,1 +1774023533.136151,0.25,4,3992.50,50.13,1714.66,1962.82,0.00,4.060796,0.028515,39531,50321,0.000000,0.000030,890581,444797,0,0,2224,0,1,1 +1774023538.137432,0.25,4,3992.50,50.13,1714.66,1962.82,0.00,3517536105821.367188,3517536104648.057617,11,0,0.000000,0.000020,890581,444799,0,0,2226,0,1,1 +1774023543.140817,0.30,4,3992.50,50.13,1714.66,1962.82,0.00,356.144339,1533.001609,38773,50306,0.000000,0.000030,890581,444802,0,0,2229,0,1,1 +1774023548.140712,0.30,4,3992.50,50.06,1717.54,1959.93,0.00,3518510977628.020996,3518510976450.292480,70,0,0.000000,0.000020,890581,444804,0,0,2231,0,1,1 +1774023553.137461,0.30,4,3992.50,50.09,1716.32,1961.16,0.00,356.567265,1535.046812,38773,50314,0.000000,0.000030,890581,444807,0,0,2234,0,1,1 +1774023558.140755,0.25,4,3992.50,50.10,1716.08,1961.40,0.00,4.058167,0.023812,39531,50338,0.000000,0.000020,890581,444809,0,0,2236,0,1,1 +1774023563.140259,0.25,4,3992.50,50.10,1716.08,1961.40,0.00,3518786163731.631836,3518786162557.838867,70,0,0.000000,0.000030,890581,444812,0,0,2239,0,1,1 +1774023568.140731,0.30,4,3992.50,50.10,1716.09,1961.40,0.00,356.301817,1533.913414,38773,50323,0.000000,0.000020,890581,444814,0,0,2241,0,1,1 +1774023573.140472,0.25,4,3992.50,50.10,1716.09,1961.40,0.00,3518619206290.541504,3518619205112.631348,199,0,0.000000,0.000030,890581,444817,0,0,2244,0,1,1 +1774023578.139560,0.25,4,3992.50,50.10,1716.09,1961.39,0.00,3519078815778.505371,0.000000,11,0,0.000000,0.000020,890581,444819,0,0,2246,0,1,1 +1774023583.140478,0.35,4,3992.50,50.10,1716.09,1961.41,0.00,0.000000,0.000000,11,0,0.000000,0.000030,890581,444822,0,0,2249,0,1,1 +1774023588.138420,0.30,4,3992.50,50.10,1716.09,1961.41,0.00,0.000000,0.000000,11,0,0.000000,0.000033,890581,444825,0,0,2251,0,1,1 +1774023593.140786,0.25,4,3992.50,50.10,1716.09,1961.41,0.00,2.007839,0.000195,238,2,0.000013,0.000030,890582,444828,0,0,2254,0,1,1 +1774023598.140002,0.35,4,3992.50,50.10,1716.09,1961.40,0.00,3518989164443.027832,3518989164445.036621,11,0,0.000000,0.000020,890582,444830,0,0,2256,0,1,1 +1774023603.136079,0.60,4,3992.50,50.10,1716.09,1961.40,0.00,1.493066,0.022088,221,20,0.000000,0.000030,890582,444833,0,0,2259,0,1,1 +1774023608.136073,0.30,4,3992.50,50.13,1714.87,1962.62,0.00,354.894002,1534.081817,38773,50359,0.000000,0.000020,890582,444835,0,0,2261,0,1,1 +1774023613.138679,0.25,4,3992.50,50.13,1714.87,1962.62,0.00,3516604390188.013184,3516604389010.910156,11,0,0.000000,0.000030,890582,444838,0,0,2264,0,1,1 +1774023618.140329,0.25,4,3992.50,50.13,1714.87,1962.62,0.00,0.000000,0.000000,11,0,0.000000,0.000020,890582,444840,0,0,2266,0,1,1 +1774023623.140706,0.40,4,3992.50,50.13,1714.87,1962.62,0.00,0.000000,0.000000,11,0,0.000000,0.000030,890582,444843,0,0,2269,0,1,1 +1774023628.136083,0.40,4,3992.50,50.13,1714.87,1962.62,0.00,2.010648,0.000195,238,2,0.001448,0.001778,890599,444870,0,0,2271,0,1,1 +1774023633.136156,0.25,4,3992.50,50.13,1714.87,1962.62,0.00,358.432280,1534.151682,39531,50422,0.000520,0.001125,890614,444896,0,0,2274,0,1,1 +1774023638.136076,0.45,4,3992.50,50.13,1714.88,1962.61,0.00,3518493546643.431641,3518493545467.675781,238,2,0.001779,0.001557,890639,444914,0,0,2276,0,1,1 +1774023643.136077,0.35,4,3992.50,50.13,1714.88,1962.61,0.00,3518436284941.314453,0.021875,221,20,0.001064,0.000439,890661,444931,0,0,2279,0,1,1 +1774023648.140136,0.20,4,3992.50,50.13,1714.88,1962.61,0.00,3515583682730.626465,3515583682732.045410,70,0,0.000000,0.000020,890661,444933,0,0,2281,0,1,1 +1774023653.140741,0.25,4,3992.50,50.13,1714.88,1962.61,0.00,3518011419739.405273,0.000000,11,0,0.000000,0.000030,890661,444936,0,0,2284,0,1,1 +1774023658.140464,0.30,4,3992.50,50.13,1714.88,1962.61,0.00,0.000000,0.000000,11,0,0.000000,0.000020,890661,444938,0,0,2286,0,1,1 +1774023663.139918,0.30,4,3992.50,50.13,1714.88,1962.61,0.00,1.492058,0.022073,221,20,0.000000,0.000030,890661,444941,0,0,2289,0,1,1 +1774023668.140416,0.25,4,3992.50,50.06,1717.50,1959.98,0.00,3518086921410.352051,3518086921411.821777,11,0,0.000000,0.000020,890661,444943,0,0,2291,0,1,1 +1774023673.140412,0.35,4,3992.50,50.06,1717.50,1959.98,0.00,356.385741,1534.201647,38773,50440,0.000062,0.000080,890665,444950,0,0,2294,0,1,1 +1774023678.140234,0.25,4,3992.50,50.07,1717.29,1960.20,0.00,3518561964069.246582,3518561962889.380859,238,2,0.000070,0.000078,890670,444957,0,0,2296,0,1,1 +1774023683.141015,0.35,4,3992.50,50.09,1716.31,1961.18,0.00,354.321360,1533.968595,38773,50447,0.000050,0.000092,890674,444964,0,0,2299,0,1,1 +1774023688.136071,0.25,4,3992.50,50.09,1716.31,1961.18,0.00,4.064859,0.023852,39531,50471,0.000050,0.000082,890678,444970,0,0,2301,0,1,1 +1774023693.141026,0.20,4,3992.50,50.09,1716.31,1961.18,0.00,3514953620941.943359,3514953619769.319824,11,0,0.000000,0.000030,890678,444973,0,0,2304,0,1,1 +1774023698.140160,0.15,4,3992.50,50.09,1716.31,1961.18,0.00,0.176984,0.000000,199,0,0.000000,0.000020,890678,444975,0,0,2306,0,1,1 +1774023703.140503,0.30,4,3992.50,50.09,1716.31,1961.18,0.00,360.244595,1534.136046,39531,50479,0.000000,0.000030,890678,444978,0,0,2309,0,1,1 +1774023708.140074,0.25,4,3992.50,50.09,1716.32,1961.18,0.00,3518739489358.818359,3518739488183.452148,221,20,0.000000,0.000020,890678,444980,0,0,2311,0,1,1 +1774023713.140093,0.25,4,3992.50,50.09,1716.32,1961.17,0.00,354.892164,1534.197309,38773,50465,0.000000,0.000030,890678,444983,0,0,2314,0,1,1 +1774023718.136148,0.30,4,3992.50,50.09,1716.32,1961.17,0.00,3521215800619.503906,3521215799440.556641,199,0,0.000000,0.000020,890678,444985,0,0,2316,0,1,1 +1774023723.137501,0.20,4,3992.50,50.09,1716.32,1961.16,0.00,356.112151,1533.826824,38773,50477,0.000000,0.000030,890678,444988,0,0,2319,0,1,1 +1774023728.140071,0.25,4,3992.50,50.09,1716.33,1961.16,0.00,0.000000,0.004685,38773,50483,0.000000,0.000020,890678,444990,0,0,2321,0,1,1 +1774023733.140327,0.25,4,3992.50,50.09,1716.33,1961.16,0.00,3518257027326.022461,3518257026148.221680,11,0,0.000000,0.000030,890678,444993,0,0,2324,0,1,1 +1774023738.140937,0.25,4,3992.50,50.09,1716.33,1961.16,0.00,0.000000,0.000000,11,0,0.000000,0.000020,890678,444995,0,0,2326,0,1,1 +1774023743.136151,0.25,4,3992.50,50.09,1716.33,1961.16,0.00,356.726932,1535.725958,38773,50492,0.000000,0.000030,890678,444998,0,0,2329,0,1,1 +1774023748.136129,0.25,4,3992.50,50.09,1716.33,1961.16,0.00,3518452259763.383301,3518452258584.038574,221,20,0.000000,0.000020,890678,445000,0,0,2331,0,1,1 +1774023753.136176,0.30,4,3992.50,50.09,1716.33,1961.16,0.00,0.000000,0.000000,221,20,0.000000,0.000030,890678,445003,0,0,2334,0,1,1 +1774023758.140127,0.25,4,3992.50,50.09,1716.34,1961.16,0.00,354.613330,1533.037186,38773,50503,0.000000,0.000020,890678,445005,0,0,2336,0,1,1 +1774023763.136172,0.25,4,3992.50,50.09,1716.34,1961.16,0.00,3521222461691.768555,3521222460511.480469,221,20,0.000000,0.000030,890678,445008,0,0,2339,0,1,1 +1774023768.136075,0.25,4,3992.50,50.09,1716.34,1961.16,0.00,0.516905,3518505162477.082031,238,2,0.000000,0.000020,890678,445010,0,0,2341,0,1,1 +1774023773.140274,0.35,4,3992.50,50.06,1717.63,1959.86,0.00,3515485269260.928711,0.021857,221,20,0.000000,0.000030,890678,445013,0,0,2344,0,1,1 +1774023778.140387,0.30,4,3992.50,50.09,1716.43,1961.06,0.00,3518357405499.213867,3518357405500.506348,199,0,0.000000,0.000020,890678,445015,0,0,2346,0,1,1 +1774023783.136764,0.25,4,3992.50,50.09,1716.43,1961.06,0.00,0.000000,0.000000,199,0,0.000000,0.000030,890678,445018,0,0,2349,0,1,1 +1774023788.136156,0.20,4,3992.50,50.09,1716.43,1961.05,0.00,3518864405355.839355,0.000000,70,0,0.000000,0.000020,890678,445020,0,0,2351,0,1,1 +1774023793.136166,0.30,4,3992.50,50.09,1716.44,1961.05,0.00,3518430325426.061035,0.000000,11,0,0.000000,0.000030,890678,445023,0,0,2354,0,1,1 +1774023798.136108,0.20,4,3992.50,50.09,1716.44,1961.05,0.00,360.450479,1534.340492,39531,50555,0.000000,0.000020,890678,445025,0,0,2356,0,1,1 +1774023803.136091,0.35,4,3992.50,50.09,1716.44,1961.05,0.00,3518449061475.960938,3518449060300.071777,238,2,0.000000,0.000030,890678,445028,0,0,2359,0,1,1 +1774023808.136121,0.25,4,3992.50,50.11,1715.70,1961.79,0.00,0.000000,0.000000,238,2,0.000000,0.000020,890678,445030,0,0,2361,0,1,1 +1774023813.138162,0.25,4,3992.50,50.13,1714.96,1962.53,0.00,0.000000,0.000000,238,2,0.000000,0.000030,890678,445033,0,0,2364,0,1,1 +1774023818.140825,0.40,4,3992.50,50.13,1714.97,1962.52,0.00,3516564733812.488770,0.021863,221,20,0.000000,0.000020,890678,445035,0,0,2366,0,1,1 +1774023823.136497,0.35,4,3992.50,50.13,1714.97,1962.52,0.00,0.000000,0.000000,221,20,0.000000,0.000030,890678,445038,0,0,2369,0,1,1 +1774023828.140533,0.25,4,3992.50,49.98,1720.70,1956.80,0.00,0.000000,0.000000,221,20,0.000000,0.000020,890678,445040,0,0,2371,0,1,1 +1774023833.136391,0.30,4,3992.50,50.05,1717.99,1959.50,0.00,0.517323,3521354675176.773438,238,2,0.000000,0.000030,890678,445043,0,0,2374,0,1,1 +1774023838.138323,0.45,4,3992.50,50.05,1717.99,1959.50,0.00,3517078413069.689941,3517078413071.521484,199,0,0.000000,0.000020,890678,445045,0,0,2376,0,1,1 +1774023843.136071,0.20,4,3992.50,50.05,1717.99,1959.50,0.00,360.431620,1535.045059,39531,50587,0.000000,0.000030,890678,445048,0,0,2379,0,1,1 +1774023848.140153,0.30,4,3992.50,50.05,1717.99,1959.49,0.00,3515567481724.416504,3515567480551.465820,11,0,0.000000,0.000020,890678,445050,0,0,2381,0,1,1 +1774023853.140478,0.25,4,3992.50,50.05,1718.00,1959.49,0.00,356.362293,1534.242103,38773,50574,0.000000,0.000030,890678,445053,0,0,2384,0,1,1 +1774023858.137192,0.25,4,3992.50,50.05,1718.00,1959.49,0.00,3520750604323.341797,3520750603143.140137,221,20,0.000000,0.000020,890678,445055,0,0,2386,0,1,1 +1774023863.140794,0.45,4,3992.50,50.05,1718.00,1959.49,0.00,358.696050,1533.244729,39531,50602,0.000000,0.000030,890678,445058,0,0,2389,0,1,1 +1774023868.136151,0.35,4,3992.50,50.05,1718.00,1959.49,0.00,3521706927458.773926,3521706926283.757812,11,0,0.000000,0.000020,890678,445060,0,0,2391,0,1,1 +1774023873.140302,0.25,4,3992.50,50.05,1718.00,1959.49,0.00,1.490657,0.022052,221,20,0.000000,0.000030,890678,445063,0,0,2394,0,1,1 +1774023878.139992,0.25,4,3992.50,50.05,1718.00,1959.48,0.00,0.516927,3518655069930.487793,238,2,0.000000,0.000020,890678,445065,0,0,2396,0,1,1 +1774023883.136078,0.25,4,3992.50,50.05,1718.01,1959.48,0.00,3521193810667.860840,3521193810669.820801,70,0,0.000000,0.000030,890678,445068,0,0,2399,0,1,1 +1774023888.141022,0.35,4,3992.50,50.05,1718.01,1959.48,0.00,1.440470,0.022049,221,20,0.000000,0.000020,890678,445070,0,0,2401,0,1,1 +1774023893.136184,0.20,4,3992.50,50.05,1718.01,1959.48,0.00,359.302057,1535.860128,39531,50625,0.000000,0.000030,890678,445073,0,0,2404,0,1,1 +1774023898.139309,0.30,4,3992.50,50.05,1718.01,1959.48,0.00,3516239753129.867188,3516239753133.909668,38773,50608,0.000000,0.000020,890678,445075,0,0,2406,0,1,1 +1774023903.137274,0.50,4,3992.50,50.05,1717.77,1959.72,0.00,3519869786380.218750,3519869785199.735352,238,2,0.000000,0.000030,890678,445078,0,0,2409,0,1,1 +1774023908.140595,0.25,4,3992.50,50.05,1717.77,1959.72,0.00,3516101557551.252441,3516101557553.259766,11,0,0.000000,0.000020,890678,445080,0,0,2411,0,1,1 +1774023913.136434,0.35,4,3992.50,50.05,1717.77,1959.72,0.00,1.493137,0.022089,221,20,0.000000,0.000030,890678,445083,0,0,2414,0,1,1 +1774023918.136117,0.30,4,3992.50,50.05,1717.77,1959.72,0.00,3518660030843.266602,3518660030844.559570,199,0,0.000000,0.000020,890678,445085,0,0,2416,0,1,1 +1774023923.136155,0.25,4,3992.50,50.07,1717.04,1960.46,0.00,3518410579440.711426,0.000000,11,0,0.000000,0.000030,890678,445088,0,0,2419,0,1,1 +1774023928.136500,0.30,4,3992.50,50.09,1716.30,1961.20,0.00,0.000000,0.000000,11,0,0.001447,0.001776,890695,445115,0,0,2421,0,1,1 +1774023933.140472,0.40,4,3992.50,50.09,1716.30,1961.19,0.00,0.176813,0.000000,199,0,0.001441,0.001793,890712,445144,0,0,2424,0,1,1 +1774023938.140230,1.05,4,3992.50,50.10,1716.06,1961.43,0.00,1.831925,0.000195,238,2,0.001779,0.001570,890737,445163,0,0,2426,0,1,1 +1774023943.140077,0.30,4,3992.50,50.12,1715.32,1962.17,0.00,3518544822167.335938,3518544822169.167969,199,0,0.001734,0.001361,890762,445182,0,0,2429,0,1,1 +1774023948.136395,0.25,4,3992.50,50.12,1715.10,1962.39,0.00,3521030022858.637695,0.000000,11,0,0.000000,0.000020,890762,445184,0,0,2431,0,1,1 +1774023953.140663,0.20,4,3992.50,50.12,1715.10,1962.39,0.00,0.000000,0.000000,11,0,0.000000,0.000030,890762,445187,0,0,2434,0,1,1 +1774023958.139043,0.30,4,3992.50,50.14,1714.36,1963.13,0.00,356.500927,1534.959312,38773,50679,0.000000,0.000020,890762,445189,0,0,2436,0,1,1 +1774023963.136156,0.25,4,3992.50,50.16,1713.62,1963.87,0.00,3520470252638.044922,3520470251459.288086,11,0,0.000000,0.000030,890762,445192,0,0,2439,0,1,1 +1774023968.140417,0.25,4,3992.50,50.16,1713.63,1963.86,0.00,360.139381,1533.193424,39531,50713,0.000000,0.000020,890762,445194,0,0,2441,0,1,1 +1774023973.140306,0.35,4,3992.50,50.18,1712.89,1964.60,0.00,3518515273117.465820,3518515271943.335938,70,0,0.000062,0.000080,890766,445201,0,0,2444,0,1,1 +1774023978.140055,0.20,4,3992.50,50.18,1712.89,1964.60,0.00,1.958888,0.000195,238,2,0.000062,0.000070,890770,445207,0,0,2446,0,1,1 +1774023983.136524,0.25,4,3992.50,50.18,1712.89,1964.60,0.00,0.000000,0.000000,238,2,0.000058,0.000100,890775,445215,0,0,2449,0,1,1 +1774023988.139306,0.40,4,3992.50,50.20,1712.20,1965.28,0.00,358.238178,1533.762053,39531,50745,0.000050,0.000082,890779,445221,0,0,2451,0,1,1 +1774023993.140280,0.20,4,3992.50,50.20,1712.21,1965.28,0.00,0.000000,0.007030,39531,50753,0.000000,0.000030,890779,445224,0,0,2454,0,1,1 +1774023998.141110,0.30,4,3992.50,50.20,1712.21,1965.28,0.00,3517853396832.155273,3517853395656.165527,238,2,0.000000,0.000020,890779,445226,0,0,2456,0,1,1 +1774024003.140576,0.30,4,3992.50,50.20,1712.21,1965.28,0.00,3518812791477.269043,0.021877,221,20,0.000000,0.000030,890779,445229,0,0,2459,0,1,1 +1774024008.140484,0.25,4,3992.50,50.20,1711.97,1965.52,0.00,0.516904,3518502309620.311523,238,2,0.000000,0.000020,890779,445231,0,0,2461,0,1,1 +1774024013.136073,0.20,4,3992.50,50.20,1711.97,1965.52,0.00,0.000000,0.000000,238,2,0.000000,0.000030,890779,445234,0,0,2464,0,1,1 +1774024018.136245,0.20,4,3992.50,50.20,1711.97,1965.52,0.00,354.364496,1534.570957,38773,50747,0.000000,0.000020,890779,445236,0,0,2466,0,1,1 +1774024023.136139,0.35,4,3992.50,50.20,1711.98,1965.52,0.00,0.000000,0.014844,38773,50762,0.000000,0.000030,890779,445239,0,0,2469,0,1,1 +1774024028.140306,0.30,4,3992.50,50.17,1713.36,1964.13,0.00,3515507220987.698242,3515507219808.958008,221,20,0.000000,0.000020,890779,445241,0,0,2471,0,1,1 +1774024033.137097,0.30,4,3992.50,50.20,1712.13,1965.36,0.00,355.121471,1535.606055,38773,50767,0.000000,0.000030,890779,445244,0,0,2474,0,1,1 +1774024038.136819,0.25,4,3992.50,50.20,1712.13,1965.36,0.00,3518632762172.561523,3518632760994.062012,199,0,0.000000,0.000020,890779,445246,0,0,2476,0,1,1 +1774024043.136523,0.35,4,3992.50,50.14,1714.42,1963.07,0.00,3518646156647.792969,0.000000,70,0,0.000000,0.000030,890779,445249,0,0,2479,0,1,1 +1774024048.140254,0.20,4,3992.50,50.17,1713.20,1964.29,0.00,0.126858,0.000000,199,0,0.000000,0.000020,890779,445251,0,0,2481,0,1,1 +1774024053.136075,0.30,4,3992.50,50.17,1713.20,1964.29,0.00,3521379791450.894531,0.000000,70,0,0.000000,0.000030,890779,445254,0,0,2484,0,1,1 +1774024058.140527,0.30,4,3992.50,50.18,1712.74,1964.75,0.00,3515307384481.958008,0.000000,11,0,0.000000,0.000020,890779,445256,0,0,2486,0,1,1 +1774024063.136083,0.35,4,3992.50,50.20,1712.00,1965.49,0.00,0.177111,0.000000,199,0,0.000000,0.000030,890779,445259,0,0,2489,0,1,1 +1774024068.139095,0.20,4,3992.50,50.22,1711.26,1966.23,0.00,360.052420,1533.766598,39531,50816,0.000000,0.000020,890779,445261,0,0,2491,0,1,1 +1774024073.136170,0.35,4,3992.50,50.22,1711.26,1966.23,0.00,3520496646959.883789,3520496645782.942383,238,2,0.000000,0.000030,890779,445264,0,0,2494,0,1,1 +1774024078.140861,0.25,4,3992.50,50.23,1711.03,1966.46,0.00,354.044526,1533.237625,38773,50801,0.000000,0.000020,890779,445266,0,0,2496,0,1,1 +1774024083.138993,0.35,4,3992.50,50.23,1711.04,1966.46,0.00,3519752127383.877441,3519752126203.137207,238,2,0.000000,0.000030,890779,445269,0,0,2499,0,1,1 +1774024088.140392,0.30,4,3992.50,50.05,1717.86,1959.63,0.00,3517453045920.346680,3517453045922.178223,199,0,0.000000,0.000020,890779,445271,0,0,2501,0,1,1 +1774024093.137567,0.40,4,3992.50,50.06,1717.40,1960.09,0.00,3520426180674.751465,0.000000,11,0,0.000000,0.000030,890779,445274,0,0,2504,0,1,1 +1774024098.136153,0.35,4,3992.50,50.06,1717.40,1960.09,0.00,0.000000,0.000000,11,0,0.000000,0.000020,890779,445276,0,0,2506,0,1,1 +1774024103.136079,0.35,4,3992.50,50.06,1717.40,1960.09,0.00,0.050001,0.000000,70,0,0.000000,0.000030,890779,445279,0,0,2509,0,1,1 +1774024108.136084,0.20,4,3992.50,50.06,1717.40,1960.09,0.00,360.395935,1534.721147,39531,50846,0.000000,0.000020,890779,445281,0,0,2511,0,1,1 +1774024113.141065,0.35,4,3992.50,50.06,1717.41,1960.09,0.00,3514935973423.152832,3514935973427.193848,38773,50829,0.000000,0.000030,890779,445284,0,0,2514,0,1,1 +1774024118.140638,0.25,4,3992.50,50.06,1717.41,1960.09,0.00,3518737388494.739258,3518737387316.267578,70,0,0.000000,0.000020,890779,445286,0,0,2516,0,1,1 +1774024123.140095,0.25,4,3992.50,50.06,1717.41,1960.09,0.00,3518819663762.292480,0.000000,11,0,0.000000,0.000030,890779,445289,0,0,2519,0,1,1 +1774024128.140839,0.30,4,3992.50,50.06,1717.41,1960.09,0.00,0.049993,0.000000,70,0,0.000000,0.000020,890779,445291,0,0,2521,0,1,1 +1774024133.140118,0.20,4,3992.50,50.07,1717.19,1960.30,0.00,1.959072,0.000195,238,2,0.000000,0.000030,890779,445294,0,0,2524,0,1,1 +1774024138.138302,0.30,4,3992.50,50.07,1717.19,1960.30,0.00,358.567749,1535.294998,39531,50862,0.000000,0.000020,890779,445296,0,0,2526,0,1,1 +1774024143.140561,0.45,4,3992.50,50.07,1717.20,1960.29,0.00,3516848282401.371582,3516848281227.610352,11,0,0.000000,0.000030,890779,445299,0,0,2529,0,1,1 +1774024148.140550,0.25,4,3992.50,50.07,1717.20,1960.29,0.00,2.008794,0.000195,238,2,0.000000,0.000020,890779,445301,0,0,2531,0,1,1 +1774024153.138842,0.30,4,3992.50,50.07,1717.20,1960.29,0.00,3519639536754.492188,0.021882,221,20,0.000000,0.000030,890779,445304,0,0,2534,0,1,1 +1774024158.136456,0.25,4,3992.50,50.02,1718.96,1958.53,0.00,3520116809384.712402,3520116809386.005859,199,0,0.000000,0.000020,890779,445306,0,0,2536,0,1,1 +1774024163.140338,0.30,4,3992.50,50.02,1718.96,1958.53,0.00,0.000000,0.000000,199,0,0.000000,0.000030,890779,445309,0,0,2539,0,1,1 +1774024168.136662,0.20,4,3992.50,50.02,1718.96,1958.53,0.00,3521025926297.322754,0.000000,70,0,0.000000,0.000020,890779,445311,0,0,2541,0,1,1 +1774024173.137608,0.25,4,3992.50,50.03,1718.71,1958.77,0.00,3517771716829.760254,0.000000,11,0,0.000000,0.000030,890779,445314,0,0,2544,0,1,1 +1774024178.140424,0.30,4,3992.50,50.04,1718.48,1959.02,0.00,0.049972,0.000000,70,0,0.000000,0.000020,890779,445316,0,0,2546,0,1,1 +1774024183.140465,0.25,4,3992.50,50.04,1718.48,1959.02,0.00,0.126952,0.000000,199,0,0.000000,0.000030,890779,445319,0,0,2549,0,1,1 +1774024188.139668,0.25,4,3992.50,50.06,1717.50,1960.00,0.00,1.315151,0.022074,221,20,0.000000,0.000020,890779,445321,0,0,2551,0,1,1 +1774024193.136255,0.30,4,3992.50,50.02,1719.20,1958.29,0.00,0.000000,0.000000,221,20,0.000000,0.000030,890779,445324,0,0,2554,0,1,1 +1774024198.136861,0.25,4,3992.50,50.05,1717.98,1959.52,0.00,0.516832,3518010688785.280762,238,2,0.000000,0.000020,890779,445326,0,0,2556,0,1,1 +1774024203.141072,1.55,4,3992.50,50.05,1717.98,1959.47,0.00,0.000000,0.000000,238,2,0.000000,0.000030,890779,445329,0,0,2559,0,1,1 +1774024208.139994,0.30,4,3992.50,50.06,1717.54,1959.95,0.00,0.000000,0.000000,238,2,0.000000,0.000020,890779,445331,0,0,2561,0,1,1 +1774024213.140560,0.30,4,3992.50,50.03,1718.81,1958.68,0.00,3518038740334.267090,3518038740336.099121,199,0,0.000000,0.000030,890779,445334,0,0,2564,0,1,1 +1774024218.140144,0.20,4,3992.50,49.99,1720.10,1957.39,0.00,3518730153724.561035,0.000000,70,0,0.000000,0.000020,890779,445336,0,0,2566,0,1,1 +1774024223.140090,0.15,4,3992.50,50.00,1719.85,1957.64,0.00,1.441910,0.022071,221,20,0.000000,0.000030,890779,445339,0,0,2569,0,1,1 +1774024228.140209,0.35,4,3992.50,49.98,1720.84,1956.66,0.00,3518353583246.400391,3518353583247.870117,11,0,0.000512,0.001107,890793,445363,0,0,2571,0,1,1 +1774024233.136098,0.25,4,3992.50,50.01,1719.36,1958.13,0.00,0.000000,0.000000,11,0,0.001443,0.001796,890810,445392,0,0,2574,0,1,1 +1774024238.136085,0.40,4,3992.50,50.02,1719.16,1958.34,0.00,0.000000,0.000000,11,0,0.001109,0.000635,890832,445408,0,0,2576,0,1,1 +1774024243.136155,0.30,4,3992.50,50.02,1719.16,1958.34,0.00,0.049999,0.000000,70,0,0.001721,0.001361,890856,445427,0,0,2579,0,1,1 +1774024248.136257,0.25,4,3992.50,50.04,1718.18,1959.32,0.00,0.000000,0.000000,70,0,0.000000,0.000020,890856,445429,0,0,2581,0,1,1 +1774024253.140582,0.20,4,3992.50,50.01,1719.44,1958.05,0.00,3515396336212.143555,0.000000,11,0,0.000000,0.000030,890856,445432,0,0,2584,0,1,1 +1774024258.137953,0.20,4,3992.50,50.00,1719.80,1957.69,0.00,0.050026,0.000000,70,0,0.000000,0.000020,890856,445434,0,0,2586,0,1,1 +1774024263.140797,0.25,4,3992.50,50.00,1719.82,1957.68,0.00,356.132868,1534.044178,38773,51014,0.000000,0.000030,890856,445437,0,0,2589,0,1,1 +1774024268.140602,0.35,4,3992.50,50.00,1719.85,1957.64,0.00,3518575101485.041992,3518575100306.464355,11,0,0.000000,0.000020,890856,445439,0,0,2591,0,1,1 +1774024273.140836,0.20,4,3992.50,50.03,1718.63,1958.86,0.00,0.049998,0.000000,70,0,0.000062,0.000080,890860,445446,0,0,2594,0,1,1 +1774024278.136222,0.20,4,3992.50,50.00,1719.88,1957.61,0.00,356.664556,1536.357885,38773,51032,0.000070,0.000078,890865,445453,0,0,2596,0,1,1 +1774024283.138344,0.30,4,3992.50,50.00,1719.88,1957.62,0.00,3516944787380.669434,3516944786201.145508,221,20,0.000050,0.000092,890869,445460,0,0,2599,0,1,1 +1774024288.136224,0.20,4,3992.50,50.03,1718.65,1958.84,0.00,3519929689341.384277,3519929689342.854492,11,0,0.000050,0.000082,890873,445466,0,0,2601,0,1,1 +1774024293.136765,0.20,4,3992.50,50.00,1719.90,1957.59,0.00,356.346854,1534.784943,38773,51045,0.000000,0.000030,890873,445469,0,0,2604,0,1,1 +1774024298.140852,0.30,4,3992.50,50.04,1718.43,1959.05,0.00,3515563912830.290039,3515563911651.218262,221,20,0.000000,0.000020,890873,445471,0,0,2606,0,1,1 +1774024303.140579,0.20,4,3992.50,50.04,1718.44,1959.05,0.00,0.000000,0.000000,221,20,0.000000,0.000030,890873,445474,0,0,2609,0,1,1 +1774024308.140077,0.30,4,3992.50,50.04,1718.44,1959.05,0.00,0.516946,3518790440550.278320,238,2,0.000000,0.000020,890873,445476,0,0,2611,0,1,1 +1774024313.140735,0.25,4,3992.50,50.06,1717.70,1959.79,0.00,3517974030309.576660,3517974030311.584961,11,0,0.000000,0.000030,890873,445479,0,0,2614,0,1,1 +1774024318.140900,0.30,4,3992.50,50.04,1718.30,1959.19,0.00,1.491845,0.022070,221,20,0.000000,0.000020,890873,445481,0,0,2616,0,1,1 +1774024323.140287,0.25,4,3992.50,50.07,1717.07,1960.42,0.00,0.516958,3518868439876.521973,238,2,0.000000,0.000030,890873,445484,0,0,2619,0,1,1 +1774024328.140659,0.25,4,3992.50,50.06,1717.54,1959.95,0.00,3518175204041.081055,3518175204043.039551,70,0,0.000000,0.000020,890873,445486,0,0,2621,0,1,1 +1774024333.140656,0.30,4,3992.50,50.06,1717.55,1959.95,0.00,3518439626051.172852,0.000000,11,0,0.000000,0.000030,890873,445489,0,0,2624,0,1,1 +1774024338.140813,0.25,4,3992.50,50.06,1717.55,1959.95,0.00,0.176948,0.000000,199,0,0.000000,0.000020,890873,445491,0,0,2626,0,1,1 +1774024343.140757,0.35,4,3992.50,50.06,1717.55,1959.95,0.00,3518476353339.894531,0.000000,70,0,0.000000,0.000030,890873,445494,0,0,2629,0,1,1 +1774024348.136209,0.25,4,3992.50,50.06,1717.55,1959.95,0.00,0.000000,0.000000,70,0,0.000000,0.000020,890873,445496,0,0,2631,0,1,1 +1774024353.136120,0.20,4,3992.50,50.06,1717.54,1959.95,0.00,0.000000,0.000000,70,0,0.000000,0.000030,890873,445499,0,0,2634,0,1,1 +1774024358.136088,0.30,4,3992.50,50.09,1716.32,1961.18,0.00,0.000000,0.000000,70,0,0.000000,0.000020,890873,445501,0,0,2636,0,1,1 +1774024363.140024,0.25,4,3992.50,50.11,1715.59,1961.91,0.00,1.440760,0.022053,221,20,0.000000,0.000030,890873,445504,0,0,2639,0,1,1 +1774024368.140476,0.20,4,3992.50,50.08,1716.83,1960.66,0.00,3518119203976.166504,3518119203977.459473,199,0,0.000000,0.000020,890873,445506,0,0,2641,0,1,1 +1774024373.137954,0.20,4,3992.50,50.08,1716.82,1960.67,0.00,1.315605,0.022081,221,20,0.000000,0.000030,890873,445509,0,0,2644,0,1,1 +1774024378.136141,0.20,4,3992.50,50.11,1715.60,1961.89,0.00,3519714060479.027832,3519714060480.498535,11,0,0.000000,0.000020,890873,445511,0,0,2646,0,1,1 +1774024383.137203,0.30,4,3992.50,50.08,1716.83,1960.66,0.00,356.309793,1534.708898,38773,51134,0.000000,0.000030,890873,445514,0,0,2649,0,1,1 +1774024388.140606,0.30,4,3992.50,50.08,1716.59,1960.91,0.00,3516043493851.672852,3516043492673.648926,199,0,0.000000,0.000020,890873,445516,0,0,2651,0,1,1 +1774024393.139461,0.30,4,3992.50,50.09,1716.34,1961.14,0.00,360.351897,1535.419751,39531,51166,0.000000,0.000030,890873,445519,0,0,2654,0,1,1 +1774024398.136083,0.30,4,3992.50,50.08,1716.55,1960.94,0.00,3520815881592.133789,3520815880415.247070,221,20,0.000000,0.000020,890873,445521,0,0,2656,0,1,1 +1774024403.138121,0.30,4,3992.50,50.09,1716.55,1960.94,0.00,3517003834273.828613,3517003834275.297852,11,0,0.000000,0.000030,890873,445524,0,0,2659,0,1,1 +1774024408.136204,0.30,4,3992.50,50.12,1715.32,1962.17,0.00,0.000000,0.000000,11,0,0.000000,0.000020,890873,445526,0,0,2661,0,1,1 +1774024413.140960,0.30,4,3992.50,50.12,1715.32,1962.17,0.00,2.006880,0.000195,238,2,0.000000,0.000030,890873,445529,0,0,2664,0,1,1 +1774024418.140155,0.25,4,3992.50,50.12,1715.32,1962.17,0.00,358.495230,1535.332203,39531,51188,0.000000,0.000020,890873,445531,0,0,2666,0,1,1 +1774024423.136080,0.25,4,3992.50,50.08,1716.66,1960.82,0.00,0.000000,0.007819,39531,51195,0.000000,0.000030,890873,445534,0,0,2669,0,1,1 +1774024428.136068,0.20,4,3992.50,50.08,1716.67,1960.82,0.00,3518445915972.883301,3518445914798.056641,199,0,0.000000,0.000020,890873,445536,0,0,2671,0,1,1 +1774024433.136146,0.25,4,3992.50,50.08,1716.67,1960.82,0.00,1.314921,0.022070,221,20,0.000000,0.000030,890873,445539,0,0,2674,0,1,1 +1774024438.140066,0.35,4,3992.50,50.08,1716.67,1960.82,0.00,3515680489277.639160,3515680489279.107910,11,0,0.000000,0.000020,890873,445541,0,0,2676,0,1,1 +1774024443.140048,0.30,4,3992.50,50.09,1716.42,1961.07,0.00,0.000000,0.000000,11,0,0.000000,0.000030,890873,445544,0,0,2679,0,1,1 +1774024448.136627,0.20,4,3992.50,50.09,1716.43,1961.07,0.00,0.050034,0.000000,70,0,0.000000,0.000020,890873,445546,0,0,2681,0,1,1 +1774024453.140122,0.30,4,3992.50,50.09,1716.43,1961.06,0.00,1.957421,0.000195,238,2,0.000000,0.000030,890873,445549,0,0,2684,0,1,1 +1774024458.140316,0.20,4,3992.50,50.08,1716.56,1960.93,0.00,0.000000,0.000000,238,2,0.000000,0.000020,890873,445551,0,0,2686,0,1,1 +1774024463.136074,0.30,4,3992.50,50.09,1716.31,1961.18,0.00,3521424637645.426758,0.021894,221,20,0.000000,0.000030,890873,445554,0,0,2689,0,1,1 +1774024468.136162,0.30,4,3992.50,50.10,1716.07,1961.43,0.00,0.000000,0.000000,221,20,0.000000,0.000020,890873,445556,0,0,2691,0,1,1 +1774024473.136060,0.20,4,3992.50,50.10,1716.07,1961.43,0.00,3518508588865.450684,3518508588866.920898,11,0,0.000000,0.000030,890873,445559,0,0,2694,0,1,1 +1774024478.136446,0.25,4,3992.50,50.10,1716.07,1961.43,0.00,356.357954,1535.002270,38773,51227,0.000000,0.000020,890873,445561,0,0,2696,0,1,1 +1774024483.140921,0.20,4,3992.50,50.09,1716.45,1961.04,0.00,3515291179002.544922,3515291177822.856934,238,2,0.000000,0.000030,890873,445564,0,0,2699,0,1,1 +1774024488.140795,0.15,4,3992.50,50.09,1716.46,1961.03,0.00,3518525649838.396973,3518525649840.229004,199,0,0.000000,0.000020,890873,445566,0,0,2701,0,1,1 +1774024493.136603,0.35,4,3992.50,50.12,1715.23,1962.26,0.00,1.833373,0.000195,238,2,0.000000,0.000030,890873,445569,0,0,2704,0,1,1 +1774024498.136083,0.25,4,3992.50,50.12,1715.23,1962.25,0.00,0.000000,0.000000,238,2,0.000000,0.000020,890873,445571,0,0,2706,0,1,1 +1774024503.140235,0.55,4,3992.50,50.12,1715.24,1962.25,0.00,0.000000,0.000000,238,2,0.000000,0.000030,890873,445574,0,0,2709,0,1,1 +1774024508.140644,0.20,4,3992.50,50.12,1715.26,1962.23,0.00,3518149071065.011230,3518149071067.020020,11,0,0.000000,0.000020,890873,445576,0,0,2711,0,1,1 +1774024513.136070,0.25,4,3992.50,50.12,1715.26,1962.23,0.00,356.711813,1536.611742,38773,51302,0.000000,0.000030,890873,445579,0,0,2714,0,1,1 +1774024518.140594,0.25,4,3992.50,50.14,1714.52,1962.97,0.00,3515256196249.686523,3515256195069.925293,238,2,0.000000,0.000020,890873,445581,0,0,2716,0,1,1 +1774024523.140085,0.15,4,3992.50,50.14,1714.52,1962.97,0.00,358.473967,1535.391153,39531,51333,0.000000,0.000030,890873,445584,0,0,2719,0,1,1 +1774024528.140288,0.35,4,3992.50,50.14,1714.52,1962.97,0.00,3518294603598.562500,3518294602423.821289,11,0,0.001434,0.001776,890889,445611,0,0,2721,0,1,1 +1774024533.139275,0.30,4,3992.50,50.14,1714.52,1962.97,0.00,0.000000,0.000000,11,0,0.000520,0.001125,890904,445637,0,0,2724,0,1,1 +1774024538.140170,0.50,4,3992.50,50.14,1714.28,1963.21,0.00,1.491628,0.022066,221,20,0.001779,0.001557,890929,445655,0,0,2726,0,1,1 +1774024543.140166,0.30,4,3992.50,50.11,1715.62,1961.88,0.00,3518440089780.503906,3518440089781.923828,70,0,0.001064,0.000439,890951,445672,0,0,2729,0,1,1 +1774024548.140214,0.30,4,3992.50,50.12,1715.37,1962.12,0.00,0.126952,0.000000,199,0,0.000000,0.000020,890951,445674,0,0,2731,0,1,1 +1774024553.140679,0.20,4,3992.50,50.06,1717.44,1960.05,0.00,1.831666,0.000195,238,2,0.000000,0.000030,890951,445677,0,0,2734,0,1,1 +1774024558.140675,0.40,4,3992.50,50.09,1716.21,1961.28,0.00,3518440073595.099609,3518440073597.107910,11,0,0.000000,0.000020,890951,445679,0,0,2736,0,1,1 +1774024563.140406,0.25,4,3992.50,50.09,1716.40,1961.09,0.00,0.000000,0.000000,11,0,0.000000,0.000030,890951,445682,0,0,2739,0,1,1 +1774024568.141020,0.20,4,3992.50,50.13,1714.93,1962.56,0.00,0.000000,0.000000,11,0,0.000000,0.000020,890951,445684,0,0,2741,0,1,1 +1774024573.136211,0.25,4,3992.50,50.09,1716.43,1961.06,0.00,0.177123,0.000000,199,0,0.000062,0.000080,890955,445691,0,0,2744,0,1,1 +1774024578.136161,0.30,4,3992.50,50.10,1715.96,1961.54,0.00,3518472276088.810059,0.000000,11,0,0.000070,0.000078,890960,445698,0,0,2746,0,1,1 +1774024583.139922,0.30,4,3992.50,50.11,1715.74,1961.75,0.00,0.176820,0.000000,199,0,0.000050,0.000092,890964,445705,0,0,2749,0,1,1 +1774024588.140600,0.25,4,3992.50,50.11,1715.74,1961.75,0.00,1.314763,0.022067,221,20,0.000050,0.000082,890968,445711,0,0,2751,0,1,1 +1774024593.140914,0.25,4,3992.50,50.13,1714.75,1962.74,0.00,0.000000,0.000000,221,20,0.000000,0.000030,890968,445714,0,0,2754,0,1,1 +1774024598.140650,0.20,4,3992.50,50.12,1715.21,1962.28,0.00,3518622802160.081055,3518622802161.500977,70,0,0.000000,0.000020,890968,445716,0,0,2756,0,1,1 +1774024603.140907,0.25,4,3992.50,50.16,1713.75,1963.74,0.00,0.126947,0.000000,199,0,0.000000,0.000030,890968,445719,0,0,2759,0,1,1 +1774024608.140424,0.25,4,3992.50,50.16,1713.75,1963.74,0.00,360.304152,1535.470246,39531,51416,0.000000,0.000020,890968,445721,0,0,2761,0,1,1 +1774024613.139985,0.25,4,3992.50,50.16,1713.75,1963.74,0.00,3518745395727.041016,3518745394552.012695,70,0,0.000000,0.000030,890968,445724,0,0,2764,0,1,1 +1774024618.139468,0.30,4,3992.50,50.16,1713.75,1963.74,0.00,3518801286584.588379,0.000000,11,0,0.000000,0.000020,890968,445726,0,0,2766,0,1,1 +1774024623.140248,0.25,4,3992.50,50.12,1715.25,1962.24,0.00,0.176926,0.000000,199,0,0.000000,0.000030,890968,445729,0,0,2769,0,1,1 +1774024628.140384,0.30,4,3992.50,50.15,1714.02,1963.47,0.00,360.259564,1535.297419,39531,51434,0.000000,0.000020,890968,445731,0,0,2771,0,1,1 +1774024633.137473,0.15,4,3992.50,50.15,1714.03,1963.46,0.00,0.000000,0.008599,39531,51441,0.000000,0.000030,890968,445734,0,0,2774,0,1,1 +1774024638.140763,0.30,4,3992.50,50.15,1714.03,1963.46,0.00,3516124199709.743164,3516124199713.782227,38773,51423,0.000000,0.000020,890968,445736,0,0,2776,0,1,1 +1774024643.140526,0.30,4,3992.50,50.15,1714.03,1963.46,0.00,3518603787674.948730,3518603786495.772949,199,0,0.000000,0.000030,890968,445739,0,0,2779,0,1,1 +1774024648.140574,0.25,4,3992.50,50.15,1714.03,1963.46,0.00,3518403483578.271484,0.000000,11,0,0.000000,0.000020,890968,445741,0,0,2781,0,1,1 +1774024653.138391,0.60,4,3992.50,50.12,1715.23,1962.26,0.00,2.009667,0.000195,238,2,0.000000,0.000030,890968,445744,0,0,2784,0,1,1 +1774024658.140778,0.25,4,3992.50,50.12,1715.23,1962.27,0.00,3516758124977.553223,3516758124979.560547,11,0,0.000000,0.000020,890968,445746,0,0,2786,0,1,1 +1774024663.136275,0.25,4,3992.50,50.15,1714.01,1963.48,0.00,1.493239,0.022090,221,20,0.000000,0.000030,890968,445749,0,0,2789,0,1,1 +1774024668.140715,0.25,4,3992.50,50.15,1714.01,1963.48,0.00,3515315579118.800293,3515315579120.268555,11,0,0.000000,0.000020,890968,445751,0,0,2791,0,1,1 +1774024673.140718,0.25,4,3992.50,50.12,1715.28,1962.21,0.00,0.000000,0.000000,11,0,0.000000,0.000030,890968,445754,0,0,2794,0,1,1 +1774024678.140576,0.15,4,3992.50,50.12,1715.32,1962.17,0.00,360.456551,1535.428870,39531,51480,0.000000,0.000020,890968,445756,0,0,2796,0,1,1 +1774024683.137308,0.30,4,3992.50,50.12,1715.33,1962.16,0.00,3520738022792.650391,3520738021615.471680,221,20,0.000000,0.000030,890968,445759,0,0,2799,0,1,1 +1774024688.140577,0.25,4,3992.50,50.12,1715.34,1962.15,0.00,3516138512232.682129,3516138512233.974121,199,0,0.000000,0.000020,890968,445761,0,0,2801,0,1,1 +1774024693.136010,0.25,4,3992.50,50.12,1715.37,1962.12,0.00,3521654102561.252930,0.000000,70,0,0.000000,0.000030,890968,445764,0,0,2804,0,1,1 +1774024698.138991,0.25,4,3992.50,50.11,1715.39,1962.11,0.00,0.126877,0.000000,199,0,0.000000,0.000020,890968,445766,0,0,2806,0,1,1 +1774024703.136148,0.25,4,3992.50,50.15,1714.16,1963.33,0.00,1.315689,0.022083,221,20,0.000000,0.000030,890968,445769,0,0,2809,0,1,1 +1774024708.140962,0.20,4,3992.50,50.15,1714.16,1963.33,0.00,0.516397,3515052613931.959961,238,2,0.000000,0.000020,890968,445771,0,0,2811,0,1,1 +1774024713.140311,0.35,4,3992.50,50.15,1714.16,1963.33,0.00,3518895844172.533691,0.021878,221,20,0.000000,0.000030,890968,445774,0,0,2814,0,1,1 +1774024718.138069,0.25,4,3992.50,50.11,1715.40,1962.09,0.00,0.000000,0.000000,221,20,0.000000,0.000020,890968,445776,0,0,2816,0,1,1 +1774024723.136101,0.20,4,3992.50,50.11,1715.41,1962.07,0.00,0.517098,3519822736417.921875,238,2,0.000000,0.000030,890968,445779,0,0,2819,0,1,1 +1774024728.139495,0.20,4,3992.50,50.11,1715.43,1962.06,0.00,354.136219,1534.374054,38773,51511,0.000000,0.000020,890968,445781,0,0,2821,0,1,1 +1774024733.140078,0.25,4,3992.50,50.11,1715.44,1962.05,0.00,3518027182460.190430,3518027181279.827637,221,20,0.000000,0.000030,890968,445784,0,0,2824,0,1,1 +1774024738.140563,0.30,4,3992.50,50.14,1714.21,1963.28,0.00,0.000000,0.000000,221,20,0.000000,0.000020,890968,445786,0,0,2826,0,1,1 +1774024743.140562,0.25,4,3992.50,50.14,1714.21,1963.28,0.00,0.516895,3518437750722.591797,238,2,0.000000,0.000030,890968,445789,0,0,2829,0,1,1 +1774024748.140178,0.30,4,3992.50,50.12,1715.29,1962.20,0.00,3518707328782.958496,3518707328784.967285,11,0,0.000000,0.000020,890968,445791,0,0,2831,0,1,1 +1774024753.140326,0.20,4,3992.50,50.11,1715.55,1961.94,0.00,0.049999,0.000000,70,0,0.000000,0.000030,890968,445794,0,0,2834,0,1,1 +1774024758.136626,0.20,4,3992.50,50.15,1714.08,1963.41,0.00,3521042667783.944824,0.000000,11,0,0.000000,0.000020,890968,445796,0,0,2836,0,1,1 +1774024763.140973,0.30,4,3992.50,50.15,1714.08,1963.41,0.00,2.007044,0.000195,238,2,0.000000,0.000030,890968,445799,0,0,2839,0,1,1 +1774024768.140679,0.40,4,3992.50,50.15,1714.08,1963.41,0.00,3518644476041.560547,3518644476043.519531,70,0,0.000000,0.000020,890968,445801,0,0,2841,0,1,1 +1774024773.140294,0.25,4,3992.50,50.17,1713.34,1964.15,0.00,0.000000,0.000000,70,0,0.000000,0.000030,890968,445804,0,0,2844,0,1,1 +1774024778.136694,0.20,4,3992.50,50.13,1714.85,1962.64,0.00,360.656000,1536.583068,39531,51574,0.000000,0.000020,890968,445806,0,0,2846,0,1,1 +1774024783.140681,0.35,4,3992.50,50.16,1713.62,1963.87,0.00,3515634077456.873047,3515634076282.778320,11,0,0.000000,0.000030,890968,445809,0,0,2849,0,1,1 +1774024788.136105,0.25,4,3992.50,50.16,1713.63,1963.86,0.00,360.776458,1536.895572,39531,51584,0.000000,0.000020,890968,445811,0,0,2851,0,1,1 +1774024793.139532,0.25,4,3992.50,50.15,1714.14,1963.35,0.00,3516027098177.108398,3516027098181.149414,38773,51568,0.000000,0.000030,890968,445814,0,0,2854,0,1,1 +1774024798.140889,0.25,4,3992.50,50.15,1714.14,1963.35,0.00,3517482492727.150879,3517482491546.376953,238,2,0.000000,0.000020,890968,445816,0,0,2856,0,1,1 +1774024803.140335,0.50,4,3992.50,50.15,1713.90,1963.59,0.00,3518827056212.098633,3518827056213.931152,199,0,0.000000,0.000030,890968,445819,0,0,2859,0,1,1 +1774024808.136981,0.20,4,3992.50,50.22,1711.45,1966.04,0.00,356.447606,1536.520952,38773,51586,0.000000,0.000020,890968,445821,0,0,2861,0,1,1 +1774024813.139729,0.20,4,3992.50,50.17,1713.03,1964.46,0.00,4.058609,0.056610,39531,51634,0.000000,0.000030,890968,445824,0,0,2864,0,1,1 +1774024818.140284,0.20,4,3992.50,50.18,1712.79,1964.71,0.00,3518046577295.955078,3518046576120.808105,199,0,0.000000,0.000020,890968,445826,0,0,2866,0,1,1 +1774024823.141183,0.35,4,3992.50,50.21,1711.56,1965.93,0.00,3517804614743.250488,0.000000,11,0,0.000000,0.000030,890968,445829,0,0,2869,0,1,1 +1774024828.140950,0.45,4,3992.50,50.21,1711.56,1965.93,0.00,0.176961,0.000000,199,0,0.001434,0.001776,890984,445856,0,0,2871,0,1,1 +1774024833.140286,0.30,4,3992.50,50.21,1711.56,1965.93,0.00,0.000000,0.000000,199,0,0.001442,0.001794,891001,445885,0,0,2874,0,1,1 +1774024838.140415,0.45,4,3992.50,50.22,1711.32,1966.17,0.00,3518346059091.720215,0.000000,70,0,0.001779,0.001557,891026,445903,0,0,2876,0,1,1 +1774024843.140830,0.25,4,3992.50,50.19,1712.39,1965.10,0.00,3518145503959.576172,0.000000,11,0,0.001734,0.001373,891051,445923,0,0,2879,0,1,1 +1774024848.140742,0.25,4,3992.50,50.27,1709.20,1968.29,0.00,1.491921,0.022071,221,20,0.000000,0.000020,891051,445925,0,0,2881,0,1,1 +1774024853.140597,0.25,4,3992.50,50.23,1710.92,1966.57,0.00,0.516910,3518539596978.034668,238,2,0.000000,0.000030,891051,445928,0,0,2884,0,1,1 +1774024858.139850,0.30,4,3992.50,50.23,1710.92,1966.57,0.00,358.491045,1535.832323,39531,51682,0.000000,0.000020,891051,445930,0,0,2886,0,1,1 +1774024863.140568,0.25,4,3992.50,50.26,1709.70,1967.80,0.00,3517931668373.868164,3517931667198.879883,11,0,0.000000,0.000030,891051,445933,0,0,2889,0,1,1 +1774024868.140002,0.20,4,3992.50,50.26,1709.70,1967.79,0.00,360.487139,1535.794347,39531,51695,0.000000,0.000020,891051,445935,0,0,2891,0,1,1 +1774024873.136158,0.30,4,3992.50,50.23,1710.98,1966.51,0.00,3521144614504.209473,3521144613328.081055,70,0,0.000062,0.000080,891055,445942,0,0,2894,0,1,1 +1774024878.138801,0.20,4,3992.50,50.26,1709.76,1967.73,0.00,1.441133,0.022059,221,20,0.000070,0.000078,891060,445949,0,0,2896,0,1,1 +1774024883.139724,0.25,4,3992.50,50.23,1710.99,1966.50,0.00,3517787704259.781738,3517787704261.074219,199,0,0.000050,0.000092,891064,445956,0,0,2899,0,1,1 +1774024888.136104,0.20,4,3992.50,50.28,1708.78,1968.71,0.00,1.315894,0.022086,221,20,0.000050,0.000082,891068,445962,0,0,2901,0,1,1 +1774024893.140633,0.25,4,3992.50,50.28,1708.78,1968.71,0.00,3515252859428.847656,3515252859430.316406,11,0,0.000000,0.000030,891068,445965,0,0,2904,0,1,1 +1774024898.140412,0.20,4,3992.50,50.28,1708.78,1968.70,0.00,0.050002,0.000000,70,0,0.000000,0.000020,891068,445967,0,0,2906,0,1,1 +1774024903.136159,0.35,4,3992.50,50.29,1708.54,1968.95,0.00,3521432537991.392578,0.000000,11,0,0.000000,0.000030,891068,445970,0,0,2909,0,1,1 +1774024908.140813,0.20,4,3992.50,50.31,1707.80,1969.69,0.00,0.176789,0.000000,199,0,0.000000,0.000020,891068,445972,0,0,2911,0,1,1 +1774024913.136155,0.20,4,3992.50,50.31,1707.80,1969.69,0.00,3521718362185.605957,0.000000,11,0,0.000000,0.000030,891068,445975,0,0,2914,0,1,1 +1774024918.140728,0.25,4,3992.50,50.31,1707.80,1969.69,0.00,1.490531,0.022050,221,20,0.000000,0.000020,891068,445977,0,0,2916,0,1,1 +1774024923.136118,0.30,4,3992.50,50.31,1707.80,1969.69,0.00,355.221057,1537.048556,38773,51732,0.000000,0.000030,891068,445980,0,0,2919,0,1,1 +1774024928.136160,0.25,4,3992.50,50.31,1707.81,1969.68,0.00,3518407566646.747070,3518407565467.488770,11,0,0.000000,0.000020,891068,445982,0,0,2921,0,1,1 +1774024933.136062,0.20,4,3992.50,50.27,1709.43,1968.06,0.00,0.000000,0.000000,11,0,0.000000,0.000030,891068,445985,0,0,2924,0,1,1 +1774024938.140708,0.25,4,3992.50,50.29,1708.45,1969.05,0.00,360.111681,1534.264237,39531,51769,0.000000,0.000020,891068,445987,0,0,2926,0,1,1 +1774024943.140851,0.25,4,3992.50,50.29,1708.45,1969.05,0.00,3518336782524.968262,3518336781349.757812,11,0,0.000000,0.000030,891068,445990,0,0,2929,0,1,1 +1774024948.140787,0.25,4,3992.50,50.29,1708.45,1969.05,0.00,1.491914,0.022071,221,20,0.000000,0.000020,891068,445992,0,0,2931,0,1,1 +1774024953.140628,0.20,4,3992.50,50.29,1708.45,1969.05,0.00,3518549231748.438477,3518549231749.908691,11,0,0.000000,0.000030,891068,445995,0,0,2934,0,1,1 +1774024958.140182,0.15,4,3992.50,50.29,1708.45,1969.05,0.00,0.176969,0.000000,199,0,0.000000,0.000020,891068,445997,0,0,2936,0,1,1 +1774024963.136256,0.30,4,3992.50,50.29,1708.45,1969.04,0.00,3521201366040.219727,0.000000,70,0,0.000000,0.000030,891068,446000,0,0,2939,0,1,1 +1774024968.138322,0.30,4,3992.50,50.29,1708.45,1969.04,0.00,3516984154921.797852,0.000000,11,0,0.000000,0.000020,891068,446002,0,0,2941,0,1,1 +1774024973.140407,0.30,4,3992.50,50.29,1708.45,1969.04,0.00,356.236893,1535.054000,38773,51776,0.000000,0.000030,891068,446005,0,0,2944,0,1,1 +1774024978.136152,0.25,4,3992.50,50.25,1710.24,1967.25,0.00,3521433855068.829590,3521433853887.045410,221,20,0.000000,0.000020,891068,446007,0,0,2946,0,1,1 +1774024983.140106,0.15,4,3992.50,50.25,1710.24,1967.25,0.00,0.516486,3515657394050.595215,238,2,0.000000,0.000030,891068,446010,0,0,2949,0,1,1 +1774024988.136984,0.25,4,3992.50,50.25,1710.24,1967.25,0.00,358.661476,1536.688338,39531,51812,0.000000,0.000020,891068,446012,0,0,2951,0,1,1 +1774024993.140498,0.15,4,3992.50,50.25,1710.00,1967.49,0.00,3515965886732.886719,3515965885556.422363,238,2,0.000000,0.000030,891068,446015,0,0,2954,0,1,1 +1774024998.140807,0.25,4,3992.50,50.28,1709.02,1968.48,0.00,3518219879996.968262,0.021874,221,20,0.000000,0.000020,891068,446017,0,0,2956,0,1,1 +1774025003.140098,0.25,4,3992.50,50.28,1709.02,1968.48,0.00,3518936043402.199707,3518936043403.669922,11,0,0.000000,0.000030,891068,446020,0,0,2959,0,1,1 +1774025008.140419,0.20,4,3992.50,50.28,1709.02,1968.47,0.00,356.362530,1535.627407,38773,51809,0.000000,0.000020,891068,446022,0,0,2961,0,1,1 +1774025013.140557,0.30,4,3992.50,50.30,1708.28,1969.21,0.00,3518340782064.668945,3518340780885.360352,11,0,0.000000,0.000030,891068,446025,0,0,2964,0,1,1 +1774025018.138132,0.20,4,3992.50,50.30,1708.28,1969.21,0.00,0.000000,0.000000,11,0,0.000000,0.000020,891068,446027,0,0,2966,0,1,1 +1774025023.136069,0.25,4,3992.50,50.30,1708.28,1969.20,0.00,0.177026,0.000000,199,0,0.000000,0.000030,891068,446030,0,0,2969,0,1,1 +1774025028.140419,0.30,4,3992.50,50.30,1708.04,1969.45,0.00,1.830244,0.000195,238,2,0.000000,0.000020,891068,446032,0,0,2971,0,1,1 +1774025033.140633,0.20,4,3992.50,50.30,1708.04,1969.45,0.00,3518286530520.291504,3518286530522.299805,11,0,0.000000,0.000030,891068,446035,0,0,2974,0,1,1 +1774025038.140474,0.25,4,3992.50,50.30,1708.04,1969.45,0.00,0.000000,0.000000,11,0,0.000000,0.000020,891068,446037,0,0,2976,0,1,1 +1774025043.139659,0.20,4,3992.50,50.30,1708.04,1969.45,0.00,360.505009,1536.037692,39531,51869,0.000000,0.000030,891068,446040,0,0,2979,0,1,1 +1774025048.136158,0.20,4,3992.50,50.30,1708.04,1969.45,0.00,3520902526869.046387,3520902525691.410645,221,20,0.000000,0.000020,891068,446042,0,0,2981,0,1,1 +1774025053.136153,0.30,4,3992.50,50.25,1710.10,1967.39,0.00,358.954797,1535.777309,39531,51879,0.000000,0.000030,891068,446045,0,0,2984,0,1,1 +1774025058.140668,0.25,4,3992.50,50.28,1708.88,1968.61,0.00,3515262486386.683594,3515262485212.392578,11,0,0.000000,0.000020,891068,446047,0,0,2986,0,1,1 +1774025063.139271,0.30,4,3992.50,50.28,1708.88,1968.61,0.00,0.000000,0.000000,11,0,0.000000,0.000030,891068,446050,0,0,2989,0,1,1 +1774025068.140822,0.25,4,3992.50,50.28,1708.88,1968.61,0.00,2.008166,0.000195,238,2,0.000000,0.000020,891068,446052,0,0,2991,0,1,1 +1774025073.141126,0.25,4,3992.50,50.30,1708.14,1969.35,0.00,0.000000,0.000000,238,2,0.000000,0.000030,891068,446055,0,0,2994,0,1,1 +1774025078.140082,0.30,4,3992.50,50.31,1707.89,1969.60,0.00,354.450615,1536.116794,38773,51879,0.000000,0.000020,891068,446057,0,0,2996,0,1,1 +1774025083.137460,0.20,4,3992.50,50.28,1709.08,1968.40,0.00,3520283913561.022461,3520283912380.942871,70,0,0.000000,0.000030,891068,446060,0,0,2999,0,1,1 +1774025088.140507,0.30,4,3992.50,50.31,1707.62,1969.88,0.00,1.957596,0.000195,238,2,0.000000,0.000020,891068,446062,0,0,3001,0,1,1 +1774025093.140814,0.30,4,3992.50,50.28,1709.09,1968.40,0.00,358.415453,1535.741276,39531,51918,0.000000,0.000030,891068,446065,0,0,3004,0,1,1 +1774025098.140730,0.30,4,3992.50,50.27,1709.35,1968.14,0.00,3518496787228.852051,3518496786053.442383,11,0,0.000000,0.000020,891068,446067,0,0,3006,0,1,1 +1774025103.140782,0.50,4,3992.50,50.30,1708.13,1969.36,0.00,0.049999,0.000000,70,0,0.000000,0.000030,891068,446070,0,0,3009,0,1,1 +1774025108.140793,0.30,4,3992.50,50.30,1708.15,1969.34,0.00,3518429564743.077637,0.000000,11,0,0.000000,0.000020,891068,446072,0,0,3011,0,1,1 +1774025113.139026,0.35,4,3992.50,50.31,1707.91,1969.59,0.00,356.511403,1536.458060,38773,51986,0.000000,0.000030,891068,446075,0,0,3014,0,1,1 +1774025118.136482,0.20,4,3992.50,50.31,1707.91,1969.59,0.00,3520228025968.641113,3520228024788.511230,11,0,0.000000,0.000020,891068,446077,0,0,3016,0,1,1 +1774025123.140561,0.40,4,3992.50,50.31,1707.91,1969.59,0.00,0.000000,0.000000,11,0,0.000000,0.000030,891068,446080,0,0,3019,0,1,1 +1774025128.136754,0.30,4,3992.50,50.31,1707.91,1969.59,0.00,0.050038,0.000000,70,0,0.000513,0.001107,891082,446104,0,0,3021,0,1,1 +1774025133.138723,0.25,4,3992.50,50.31,1707.91,1969.59,0.00,3517052003180.079102,0.000000,11,0,0.001442,0.001794,891099,446133,0,0,3024,0,1,1 +1774025138.136512,0.40,4,3992.50,50.31,1707.68,1969.83,0.00,0.177031,0.000000,199,0,0.001110,0.000635,891121,446149,0,0,3026,0,1,1 +1774025143.136073,0.50,4,3992.50,50.31,1707.68,1969.83,0.00,1.315057,0.022072,221,20,0.001734,0.001361,891146,446168,0,0,3029,0,1,1 +1774025148.138492,0.20,4,3992.50,50.31,1707.68,1969.83,0.00,358.780756,1535.223213,39531,52048,0.000000,0.000020,891146,446170,0,0,3031,0,1,1 +1774025153.140051,0.25,4,3992.50,50.32,1707.44,1970.07,0.00,3517340811185.825684,3517340810008.642090,238,2,0.000000,0.000030,891146,446173,0,0,3034,0,1,1 +1774025158.140932,0.70,4,3992.50,50.32,1707.44,1970.07,0.00,358.374388,1535.726231,39531,52057,0.000000,0.000020,891146,446175,0,0,3036,0,1,1 +1774025163.137174,0.35,4,3992.50,50.32,1707.44,1970.07,0.00,3521083194798.548828,3521083193622.063965,70,0,0.000000,0.000030,891146,446178,0,0,3039,0,1,1 +1774025168.140563,0.25,4,3992.50,50.32,1707.44,1970.06,0.00,1.957462,0.000195,238,2,0.000000,0.000020,891146,446180,0,0,3041,0,1,1 +1774025173.138996,0.20,4,3992.50,50.17,1713.13,1964.38,0.00,0.000000,0.000000,238,2,0.000062,0.000080,891150,446187,0,0,3044,0,1,1 +1774025178.136088,0.30,4,3992.50,50.20,1711.90,1965.61,0.00,3520484735477.090332,3520484735479.100098,11,0,0.000070,0.000078,891155,446194,0,0,3046,0,1,1 +1774025183.141000,0.20,4,3992.50,50.20,1711.90,1965.61,0.00,0.000000,0.000000,11,0,0.000050,0.000092,891159,446201,0,0,3049,0,1,1 +1774025188.136100,0.20,4,3992.50,50.21,1711.68,1965.82,0.00,0.000000,0.000000,11,0,0.000050,0.000082,891163,446207,0,0,3051,0,1,1 +1774025193.136127,0.30,4,3992.50,50.21,1711.68,1965.82,0.00,356.383510,1536.004533,38773,52072,0.000000,0.000030,891163,446210,0,0,3054,0,1,1 +1774025198.140194,0.25,4,3992.50,50.21,1711.68,1965.82,0.00,3515577915883.855469,3515577914705.136719,70,0,0.000000,0.000020,891163,446212,0,0,3056,0,1,1 +1774025203.138946,0.30,4,3992.50,50.21,1711.69,1965.82,0.00,3519315268188.480469,0.000000,11,0,0.000000,0.000030,891163,446215,0,0,3059,0,1,1 +1774025208.140491,0.25,4,3992.50,50.21,1711.69,1965.82,0.00,356.275353,1535.556343,38773,52089,0.000000,0.000020,891163,446217,0,0,3061,0,1,1 +1774025213.140111,0.30,4,3992.50,50.21,1711.69,1965.82,0.00,0.000000,0.005469,38773,52095,0.000000,0.000030,891163,446220,0,0,3064,0,1,1 +1774025218.140299,0.25,4,3992.50,50.21,1711.69,1965.82,0.00,3518304915336.420898,3518304914156.764160,70,0,0.000000,0.000020,891163,446222,0,0,3066,0,1,1 +1774025223.140260,0.25,4,3992.50,50.21,1711.69,1965.82,0.00,1.958804,0.000195,238,2,0.000000,0.000030,891163,446225,0,0,3069,0,1,1 +1774025228.140185,0.20,4,3992.50,50.21,1711.69,1965.82,0.00,3518490625198.467285,3518490625200.475586,11,0,0.000000,0.000020,891163,446227,0,0,3071,0,1,1 +1774025233.140578,0.25,4,3992.50,50.21,1711.69,1965.81,0.00,1.491777,0.022069,221,20,0.000000,0.000030,891163,446230,0,0,3074,0,1,1 +1774025238.139991,0.25,4,3992.50,50.21,1711.70,1965.81,0.00,3518850144538.806641,3518850144540.099609,199,0,0.000000,0.000020,891163,446232,0,0,3076,0,1,1 +1774025243.136049,0.20,4,3992.50,50.21,1711.70,1965.81,0.00,3521213625966.465820,0.000000,11,0,0.000000,0.000030,891163,446235,0,0,3079,0,1,1 +1774025248.140690,0.30,4,3992.50,50.21,1711.70,1965.81,0.00,1.490511,0.022050,221,20,0.000000,0.000020,891163,446237,0,0,3081,0,1,1 +1774025253.140445,0.30,4,3992.50,50.21,1711.70,1965.81,0.00,0.000000,0.000000,221,20,0.000000,0.000030,891163,446240,0,0,3084,0,1,1 +1774025258.137036,0.35,4,3992.50,50.21,1711.70,1965.81,0.00,3520837389079.873535,3520837389081.344238,11,0,0.000000,0.000020,891163,446242,0,0,3086,0,1,1 +1774025263.136084,0.15,4,3992.50,50.21,1711.70,1965.80,0.00,360.514919,1536.403415,39531,52168,0.000000,0.000030,891163,446245,0,0,3089,0,1,1 +1774025268.136069,0.25,4,3992.50,50.21,1711.71,1965.80,0.00,0.000000,0.003125,39531,52172,0.000000,0.000020,891163,446247,0,0,3091,0,1,1 +1774025273.136099,0.30,4,3992.50,50.21,1711.71,1965.80,0.00,3518416114914.461426,3518416113738.800781,11,0,0.000000,0.000030,891163,446250,0,0,3094,0,1,1 +1774025278.136158,0.30,4,3992.50,50.23,1710.97,1966.54,0.00,356.381201,1536.083644,38773,52159,0.000000,0.000020,891163,446252,0,0,3096,0,1,1 +1774025283.136114,0.25,4,3992.50,50.23,1710.97,1966.54,0.00,3518468480674.670410,3518468479494.943848,11,0,0.000000,0.000030,891163,446255,0,0,3099,0,1,1 +1774025288.138516,0.25,4,3992.50,50.23,1710.97,1966.54,0.00,0.000000,0.000000,11,0,0.000000,0.000020,891163,446257,0,0,3101,0,1,1 +1774025293.140050,0.25,4,3992.50,50.23,1710.97,1966.53,0.00,360.335687,1535.670827,39531,52198,0.000000,0.000030,891163,446260,0,0,3104,0,1,1 +1774025298.136153,0.30,4,3992.50,50.23,1710.98,1966.53,0.00,0.000000,0.003909,39531,52202,0.000000,0.000020,891163,446262,0,0,3106,0,1,1 +1774025303.140090,0.35,4,3992.50,50.03,1718.86,1958.65,0.00,3515669042438.436523,3515669041263.611328,70,0,0.000000,0.000030,891163,446265,0,0,3109,0,1,1 diff --git a/evaluation/data/pipeline_validation_run1/baseline_metrics.csv b/evaluation/data/pipeline_validation_run1/baseline_metrics.csv new file mode 100644 index 0000000..8f6e86b --- /dev/null +++ b/evaluation/data/pipeline_validation_run1/baseline_metrics.csv @@ -0,0 +1,3248 @@ +timestamp,cpu_percent,cpu_count,cpu_freq_current,memory_percent,memory_available_mb,memory_used_mb,swap_percent,disk_io_read_mb_s,disk_io_write_mb_s,disk_io_read_count,disk_io_write_count,network_sent_mb_s,network_recv_mb_s,network_packets_sent,network_packets_recv,network_errin,network_errout,network_dropin,network_dropout,tixstream_active,transfer_job_manager_active +1774028923.438463,0.50,4,3992.50,49.93,1725.31,1954.80,0.00,3511030400943.455078,0.000000,11,0,0.000000,0.000030,892331,449240,0,0,4919,0,1,1 +1774028928.435422,0.25,4,3992.50,49.95,1724.32,1955.79,0.00,364.564251,1547.958446,39428,60543,0.000000,0.000020,892331,449242,0,0,4921,0,1,1 +1774028933.437774,0.40,4,3992.50,49.98,1723.09,1957.02,0.00,3516782702930.445801,3516782701746.319824,238,2,0.000000,0.000030,892331,449245,0,0,4924,0,1,1 +1774028938.436334,0.25,4,3992.50,49.93,1725.29,1954.82,0.00,3519450531895.386719,0.021881,221,22,0.000000,0.000020,892331,449247,0,0,4926,0,1,1 +1774028943.437510,0.35,4,3992.50,49.97,1723.57,1956.54,0.00,3517609980984.793945,3517609980986.213379,70,0,0.000000,0.000030,892331,449250,0,0,4929,0,1,1 +1774028948.438701,0.20,4,3992.50,49.98,1723.36,1956.75,0.00,1.441551,0.022065,221,22,0.000000,0.000020,892331,449252,0,0,4931,0,1,1 +1774028953.439087,42.01,4,3992.50,56.55,1465.87,2214.25,0.00,0.516855,3518166282637.717773,238,2,82.111011,0.031846,900752,451481,0,0,4934,0,1,1 +1774028958.438809,31.34,4,3992.50,56.84,1454.44,2225.48,0.00,3518632203736.931641,3518632203738.940430,11,0,121.975498,0.028220,913188,453608,0,0,4936,0,1,1 +1774028963.438625,30.09,4,3992.50,56.68,1460.93,2219.11,0.00,0.000000,0.000000,11,0,120.973266,0.024103,925553,455377,0,0,4939,0,1,1 +1774028968.436010,28.43,4,3992.50,56.84,1454.23,2225.51,0.00,1.492675,0.022082,221,22,120.233517,0.033731,937968,457930,0,0,4941,0,1,1 +1774028973.434618,28.46,4,3992.50,56.66,1461.48,2218.56,0.00,3519416875170.847168,3519416875172.317383,11,0,119.400831,0.025235,950281,459791,0,0,4944,0,1,1 +1774028978.434538,29.27,4,3992.50,56.94,1450.73,2229.37,0.00,0.000000,0.000000,11,0,120.168060,0.018357,962541,461135,0,0,4946,0,1,1 +1774028983.435314,28.80,4,3992.50,56.83,1455.08,2224.94,0.00,1.491663,0.022067,221,22,119.546630,0.021678,974719,462743,0,0,4949,0,1,1 +1774028988.438967,28.12,4,3992.50,56.70,1460.00,2220.01,0.00,3515868885646.485352,3515868885647.904297,70,0,118.676981,0.020667,986836,464309,0,0,4951,0,1,1 +1774028993.439468,13.19,4,3992.50,52.21,1636.09,2044.05,0.00,1.958593,0.000195,238,2,102.327943,0.015349,997073,465444,0,0,4954,0,1,1 +1774028998.438929,3.26,4,3992.50,51.71,1655.55,2024.57,0.00,362.467280,1547.727811,39438,60888,0.002924,0.001173,997128,465481,0,0,4956,0,1,1 +1774029003.435075,42.41,4,3992.50,52.10,1640.19,2039.80,0.00,3521151574830.600098,3521151573646.513184,70,0,20.134742,0.088045,1002583,469742,0,0,4959,0,1,1 +1774029008.438429,24.26,4,3992.50,51.08,1680.17,1999.94,0.00,3516078719618.586914,0.000000,11,0,20.091750,0.079214,1008008,474007,0,0,4961,0,1,1 +1774029013.438694,3.46,4,3992.50,51.10,1679.25,2000.84,0.00,1.491816,0.022069,221,22,0.007691,0.005740,1008157,474133,0,0,4964,0,1,1 +1774029018.434538,0.65,4,3992.50,51.19,1676.06,2004.03,0.00,3521363812233.414062,3521363812234.708008,199,0,0.001591,0.000787,1008187,474153,0,0,4966,0,1,1 +1774029023.439103,1.60,4,3992.50,51.17,1676.76,2003.35,0.00,368.000566,1547.274661,40208,62289,0.001588,0.000795,1008217,474174,0,0,4969,0,1,1 +1774029028.437670,0.60,4,3992.50,51.17,1676.77,2003.34,0.00,3519445495862.574219,3519445494682.062012,11,0,0.002573,0.003157,1008276,474240,0,0,4971,0,1,1 +1774029033.434687,0.50,4,3992.50,51.17,1676.77,2003.33,0.00,0.050030,0.000000,70,0,0.003717,0.004430,1008343,474321,0,0,4974,0,1,1 +1774029038.438989,0.85,4,3992.50,51.17,1676.80,2003.30,0.00,3515412708091.927246,0.000000,11,0,0.003852,0.004550,1008431,474413,0,0,4976,0,1,1 +1774029043.435513,1.05,4,3992.50,51.17,1676.81,2003.29,0.00,1.492932,0.022086,221,22,0.004342,0.004781,1008522,474505,0,0,4979,0,1,1 +1774029048.439384,0.55,4,3992.50,51.17,1676.82,2003.28,0.00,3515714917694.244141,3515714917695.536133,199,0,0.002731,0.003951,1008587,474585,0,0,4981,0,1,1 +1774029053.438011,0.50,4,3992.50,51.17,1676.84,2003.27,0.00,368.437731,1549.520955,40208,62590,0.002734,0.003965,1008652,474666,0,0,4984,0,1,1 +1774029058.434516,0.70,4,3992.50,51.17,1676.85,2003.25,0.00,3520897862629.019531,3520897861447.611816,11,0,0.002818,0.004005,1008723,474750,0,0,4986,0,1,1 +1774029063.434612,0.45,4,3992.50,51.17,1676.86,2003.23,0.00,368.506439,1549.086528,40208,62606,0.002115,0.003594,1008776,474823,0,0,4989,0,1,1 +1774029068.438712,0.65,4,3992.50,51.16,1676.89,2003.22,0.00,3515554385716.644043,3515554384537.008301,11,0,0.002581,0.003938,1008840,474902,0,0,4991,0,1,1 +1774029073.438525,0.45,4,3992.50,51.16,1677.14,2002.96,0.00,364.466259,1549.248529,39450,62669,0.002821,0.004015,1008911,474987,0,0,4994,0,1,1 +1774029078.435203,0.65,4,3992.50,51.16,1677.16,2002.95,0.00,3520776470850.870117,3520776469665.344727,11,0,0.002506,0.003323,1008969,475055,0,0,4996,0,1,1 +1774029083.439085,0.50,4,3992.50,51.16,1677.17,2002.93,0.00,0.000000,0.000000,11,0,0.002765,0.004000,1009037,475139,0,0,4999,0,1,1 +1774029088.434551,0.50,4,3992.50,51.15,1677.31,2002.80,0.00,368.872971,1550.691031,40209,62780,0.002774,0.003989,1009105,475221,0,0,5001,0,1,1 +1774029093.439225,0.45,4,3992.50,51.16,1677.07,2003.04,0.00,3515151457247.574219,3515151456067.930664,11,0,0.002744,0.003961,1009171,475302,0,0,5004,0,1,1 +1774029098.437893,20.29,4,3992.50,50.89,1682.99,1992.55,0.00,0.000000,0.000000,11,0,0.037454,73.128635,1011790,483047,0,0,5006,0,1,1 +1774029103.435308,28.22,4,3992.50,51.09,1669.54,2000.37,0.00,0.177045,0.000000,199,0,0.024389,119.231342,1013518,495467,0,0,5009,0,1,1 +1774029108.437723,5.37,4,3992.50,50.88,1677.95,1992.00,0.00,0.000000,0.000000,199,0,0.008204,12.819737,1013820,496983,0,0,5011,0,1,1 +1774029113.438396,16.14,4,3992.50,50.72,1687.61,1985.82,0.00,0.000000,0.000000,199,0,40.056877,0.023998,1018151,498518,0,0,5014,0,1,1 +1774029118.434551,10.81,4,3992.50,50.63,1688.43,1982.24,0.00,388.582200,1792.074309,40546,64524,0.024141,40.095251,1019739,502823,0,0,5016,0,1,1 +1774029123.439373,0.65,4,3992.50,50.67,1687.01,1983.66,0.00,3515047576793.866211,3515047576797.918945,39788,64535,0.002179,0.005418,1019802,502928,0,0,5019,0,1,1 +1774029128.438809,0.35,4,3992.50,50.41,1696.82,1973.85,0.00,0.000000,0.057038,39788,64586,0.001157,0.003188,1019838,502990,0,0,5021,0,1,1 +1774029133.435246,0.35,4,3992.50,50.39,1697.87,1972.80,0.00,3520946191799.533203,3520946190392.180664,11,0,0.001166,0.003208,1019875,503054,0,0,5024,0,1,1 +1774029138.434575,0.40,4,3992.50,50.41,1697.14,1973.54,0.00,0.176977,0.000000,199,0,0.001145,0.003188,1019910,503116,0,0,5026,0,1,1 +1774029143.434566,0.25,4,3992.50,50.44,1695.92,1974.75,0.00,1.314944,0.022070,221,22,0.000966,0.002595,1019942,503169,0,0,5029,0,1,1 +1774029148.434556,0.35,4,3992.50,50.46,1694.94,1975.72,0.00,386.969232,1794.858284,40546,64653,0.001157,0.003188,1019978,503231,0,0,5031,0,1,1 +1774029153.434609,0.35,4,3992.50,50.46,1694.95,1975.72,0.00,3518399921899.727539,3518399920493.325684,11,0,0.001157,0.003198,1020014,503294,0,0,5034,0,1,1 +1774029158.434613,0.40,4,3992.50,50.47,1694.51,1976.16,0.00,2.008787,0.000195,238,2,0.001266,0.003320,1020059,503365,0,0,5036,0,1,1 +1774029163.438834,0.35,4,3992.50,50.47,1694.51,1976.16,0.00,3515469042823.974121,3515469042825.931152,70,0,0.001250,0.003282,1020102,503434,0,0,5039,0,1,1 +1774029168.438765,0.30,4,3992.50,50.47,1694.51,1976.16,0.00,388.415789,1794.922195,40546,64670,0.001281,0.003289,1020146,503504,0,0,5041,0,1,1 +1774029173.434717,0.45,4,3992.50,50.49,1693.79,1976.88,0.00,0.000000,0.074279,40546,64735,0.001158,0.003200,1020182,503567,0,0,5044,0,1,1 +1774029178.437495,0.30,4,3992.50,50.49,1693.79,1976.88,0.00,3516483678415.553711,3516483678419.594238,39788,64715,0.000928,0.002553,1020211,503617,0,0,5046,0,1,1 +1774029183.434880,0.35,4,3992.50,50.49,1693.79,1976.88,0.00,3520278745869.063965,3520278744457.771973,11,0,0.001166,0.003208,1020248,503681,0,0,5049,0,1,1 +1774029188.439094,36.42,4,3992.50,57.00,1447.07,2231.71,0.00,0.049958,0.000000,70,0,87.067692,0.063698,1029691,508261,0,0,5051,0,1,1 +1774029193.439023,29.49,4,3992.50,56.74,1457.41,2221.41,0.00,384.354963,1795.099191,39788,64837,122.177616,0.037708,1041940,510979,0,0,5054,0,1,1 +1774029198.438426,28.90,4,3992.50,57.18,1439.94,2238.86,0.00,0.000000,0.034086,39788,64858,121.083617,0.024845,1053727,512721,0,0,5056,0,1,1 +1774029203.438939,28.05,4,3992.50,57.04,1445.75,2233.06,0.00,3518076607757.351074,3518076606346.787598,11,0,120.250589,0.026565,1065444,514611,0,0,5059,0,1,1 +1774029208.438373,28.04,4,3992.50,57.09,1443.44,2235.37,0.00,2.009016,0.000195,238,2,119.623889,0.030969,1077220,516823,0,0,5061,0,1,1 +1774029213.438821,28.38,4,3992.50,56.93,1449.67,2229.12,0.00,3518121856399.598145,3518121856401.606934,11,0,118.871116,0.035436,1088967,519373,0,0,5064,0,1,1 +1774029218.434801,28.87,4,3992.50,57.05,1445.27,2233.56,0.00,384.708851,1796.597357,39788,64913,119.905399,0.036387,1100635,522017,0,0,5066,0,1,1 +1774029223.434827,29.95,4,3992.50,57.24,1437.66,2241.17,0.00,3518418850796.604492,3518418849385.858398,11,0,118.915909,0.032293,1111925,524407,0,0,5069,0,1,1 +1774029228.439326,11.82,4,3992.50,52.51,1623.11,2055.79,0.00,388.192332,1793.786460,40555,64961,97.460647,0.028124,1121163,526401,0,0,5071,0,1,1 +1774029233.434579,3.46,4,3992.50,51.75,1652.75,2026.08,0.00,0.080545,0.050439,40562,65019,0.004749,0.004229,1121264,526498,0,0,5074,0,1,1 +1774029238.438764,24.28,4,3992.50,52.22,1634.16,2044.73,0.00,3515494565877.507324,3515494564471.854980,11,0,22.119085,0.100968,1127802,531631,0,0,5076,0,1,1 +1774029243.439430,17.67,4,3992.50,51.96,1644.42,2034.43,0.00,384.510050,1795.622807,39804,65913,18.098214,0.078656,1132930,535778,0,0,5079,0,1,1 +1774029248.438339,1.56,4,3992.50,51.68,1655.51,2023.35,0.00,3519205199020.501465,3519205197606.883789,238,2,0.003438,0.005352,1133011,535882,0,0,5081,0,1,1 +1774029253.438562,0.50,4,3992.50,51.25,1672.51,2006.38,0.00,3518280159891.414062,3518280159893.422852,11,0,0.001886,0.003093,1133057,535944,0,0,5084,0,1,1 +1774029258.434496,22.61,4,3992.50,51.35,1662.36,2010.29,0.00,1.493109,0.022088,221,22,0.037589,95.018104,1135597,545980,0,0,5086,0,1,1 +1774029263.435041,27.20,4,3992.50,50.87,1676.93,1991.48,0.00,3518053375889.795898,3518053375891.265625,11,0,0.017964,110.145821,1136834,557504,0,0,5089,0,1,1 +1774029268.439121,1.50,4,3992.50,50.77,1680.68,1987.70,0.00,388.316924,2000.237835,40571,67661,0.006415,0.007290,1136956,557647,0,0,5091,0,1,1 +1774029273.439187,15.07,4,3992.50,52.19,1628.71,2043.21,0.00,3518391145016.025879,3518391143400.802246,238,2,40.062737,0.026195,1141233,559132,0,0,5094,0,1,1 +1774029278.438594,3.21,4,3992.50,51.46,1657.32,2014.59,0.00,3518854445786.766602,3518854445788.775391,11,0,0.003159,0.004100,1141308,559222,0,0,5096,0,1,1 +1774029283.439323,0.50,4,3992.50,51.07,1672.24,1999.67,0.00,1.491677,0.022067,221,22,0.002746,0.003964,1141374,559303,0,0,5099,0,1,1 +1774029288.434605,0.45,4,3992.50,50.87,1680.28,1991.63,0.00,403.202931,2003.924046,39924,67875,0.002507,0.003324,1141432,559371,0,0,5101,0,1,1 +1774029293.437582,1.80,4,3992.50,50.72,1686.29,1985.64,0.00,3516343174076.843750,3516343172480.054199,11,0,0.002732,0.003962,1141497,559452,0,0,5104,0,1,1 +1774029298.438604,0.65,4,3992.50,50.72,1686.11,1985.81,0.00,1.491590,0.022066,221,22,0.002746,0.003954,1141563,559532,0,0,5106,0,1,1 +1774029303.439154,0.75,4,3992.50,50.71,1686.37,1985.54,0.00,0.000000,0.000000,221,22,0.002766,0.004003,1141631,559616,0,0,5109,0,1,1 +1774029308.434768,0.60,4,3992.50,50.71,1686.39,1985.52,0.00,403.176127,2004.052779,39924,68051,0.002749,0.003958,1141697,559696,0,0,5111,0,1,1 +1774029313.436877,0.40,4,3992.50,50.62,1689.89,1982.03,0.00,4.059128,0.086487,40682,68140,0.002838,0.004038,1141769,559783,0,0,5114,0,1,1 +1774029318.438601,0.50,4,3992.50,50.64,1689.16,1982.75,0.00,3517224047556.391602,3517224045962.862793,70,0,0.002764,0.003966,1141836,559864,0,0,5116,0,1,1 +1774029323.434561,1.05,4,3992.50,50.64,1689.17,1982.74,0.00,1.960373,0.000195,238,2,0.002550,0.003361,1141897,559935,0,0,5119,0,1,1 +1774029328.438549,1.10,4,3992.50,50.64,1689.20,1982.73,0.00,3515633510142.765625,0.021858,221,22,0.003264,0.005045,1141978,560038,0,0,5121,0,1,1 +1774029333.438455,0.50,4,3992.50,50.64,1689.20,1982.70,0.00,402.830057,2002.481316,39924,68184,0.003230,0.005064,1142055,560142,0,0,5124,0,1,1 +1774029338.438685,0.60,4,3992.50,50.64,1689.23,1982.69,0.00,3518274997706.638184,3518274996108.383789,199,0,0.004777,0.005231,1142145,560238,0,0,5126,0,1,1 +1774029343.434628,11.56,4,3992.50,51.04,1671.04,1998.47,0.00,0.000000,0.000000,199,0,0.023530,40.095612,1143653,564620,0,0,5129,0,1,1 +1774029348.438935,0.50,4,3992.50,51.03,1671.43,1998.08,0.00,3515409543430.531738,0.000000,11,0,0.002697,0.006393,1143737,564748,0,0,5131,0,1,1 +1774029353.438969,0.45,4,3992.50,50.68,1685.36,1984.14,0.00,408.372366,2038.600327,40682,68535,0.001144,0.003198,1143772,564811,0,0,5134,0,1,1 +1774029358.437602,0.30,4,3992.50,50.58,1689.11,1980.40,0.00,3519399852320.923340,3519399850688.767578,221,22,0.000916,0.002555,1143800,564861,0,0,5136,0,1,1 +1774029363.434675,0.40,4,3992.50,50.61,1687.88,1981.62,0.00,407.121647,2039.861605,40682,68560,0.001145,0.003200,1143835,564924,0,0,5139,0,1,1 +1774029368.439515,0.40,4,3992.50,50.61,1687.89,1981.62,0.00,3515034037583.460449,3515034035954.723145,11,0,0.001143,0.003185,1143870,564986,0,0,5141,0,1,1 +1774029373.434600,0.25,4,3992.50,50.61,1687.89,1981.62,0.00,408.777066,2040.712874,40682,68571,0.001146,0.003201,1143905,565049,0,0,5144,0,1,1 +1774029378.439509,0.30,4,3992.50,50.61,1687.89,1981.61,0.00,3514985823509.295410,3514985821879.094727,221,22,0.000948,0.002560,1143936,565100,0,0,5146,0,1,1 +1774029383.434613,0.40,4,3992.50,50.61,1687.90,1981.61,0.00,0.517401,3521886337274.988770,238,2,0.001221,0.003294,1143977,565169,0,0,5149,0,1,1 +1774029388.439078,0.40,4,3992.50,50.61,1687.90,1981.61,0.00,3515298099704.617188,3515298099706.574219,70,0,0.001300,0.003366,1144024,565243,0,0,5151,0,1,1 +1774029393.436128,0.40,4,3992.50,50.58,1689.07,1980.43,0.00,1.442746,0.022083,221,22,0.001282,0.003301,1144068,565314,0,0,5154,0,1,1 +1774029398.439134,0.35,4,3992.50,50.58,1689.08,1980.43,0.00,3516322929702.534180,3516322929703.826660,199,0,0.001144,0.003186,1144103,565376,0,0,5156,0,1,1 +1774029403.438387,0.40,4,3992.50,50.58,1689.09,1980.43,0.00,408.259230,2043.103258,40682,68658,0.001145,0.003186,1144138,565438,0,0,5159,0,1,1 +1774029408.439337,0.30,4,3992.50,50.58,1689.09,1980.43,0.00,0.000000,0.004687,40682,68661,0.000915,0.002566,1144166,565489,0,0,5161,0,1,1 +1774029413.435161,38.90,4,3992.50,56.69,1457.92,2219.44,0.00,3521377837157.750977,3521377835521.906738,70,0,87.003487,0.043724,1153344,568433,0,0,5164,0,1,1 +1774029418.435458,28.07,4,3992.50,56.63,1460.04,2217.29,0.00,1.441809,0.022069,221,22,120.184759,0.083340,1166161,574729,0,0,5166,0,1,1 +1774029423.439138,28.04,4,3992.50,56.65,1459.32,2217.99,0.00,0.000000,0.000000,221,22,120.113194,0.108604,1179119,583070,0,0,5169,0,1,1 +1774029428.436034,27.82,4,3992.50,56.76,1455.06,2222.26,0.00,0.517216,3520622181646.298340,238,2,120.275636,0.112504,1192053,591668,0,0,5171,0,1,1 +1774029433.434760,28.13,4,3992.50,56.83,1452.22,2225.10,0.00,3519334554024.571777,3519334554026.580566,11,0,118.226665,0.111432,1204793,600184,0,0,5174,0,1,1 +1774029438.437811,27.74,4,3992.50,56.84,1451.95,2225.43,0.00,0.176845,0.000000,199,0,120.124050,0.106242,1217646,608303,0,0,5176,0,1,1 +1774029443.438442,28.30,4,3992.50,56.78,1454.13,2223.15,0.00,404.086426,2042.811536,39924,68857,119.580060,0.103610,1230362,616236,0,0,5179,0,1,1 +1774029448.434527,27.84,4,3992.50,56.70,1457.25,2220.09,0.00,3521194190852.158691,3521194189212.069824,70,0,118.889616,0.101369,1243171,623979,0,0,5181,0,1,1 +1774029453.438780,12.73,4,3992.50,51.13,1675.41,2002.00,0.00,1.957124,0.000195,238,2,101.283894,0.087420,1254108,630684,0,0,5184,0,1,1 +1774029458.438958,1.55,4,3992.50,50.76,1690.19,1987.20,0.00,0.000000,0.000000,238,2,0.004033,0.003979,1254194,630772,0,0,5186,0,1,1 +1774029463.434612,11.63,4,3992.50,50.82,1687.57,1989.81,0.00,3521498572957.504395,0.021894,221,22,6.060178,0.037566,1256223,632371,0,0,5189,0,1,1 +1774029468.434605,22.81,4,3992.50,51.30,1668.97,2008.41,0.00,402.936287,2043.754228,39939,69826,34.164593,0.130080,1265212,639454,0,0,5191,0,1,1 +1774029473.437925,3.66,4,3992.50,51.09,1677.25,2000.10,0.00,0.000000,0.019323,39939,69877,0.017709,0.010642,1265542,639719,0,0,5194,0,1,1 +1774029478.438789,22.86,4,3992.50,51.24,1665.89,2006.19,0.00,3517829717984.611816,3517829716343.521484,238,2,0.042121,83.109015,1268533,648470,0,0,5196,0,1,1 +1774029483.440479,28.46,4,3992.50,51.11,1666.05,2000.94,0.00,402.282918,2208.810293,39939,71017,0.029685,118.529793,1270663,660850,0,0,5199,0,1,1 +1774029488.439067,1.95,4,3992.50,50.74,1680.24,1986.75,0.00,3519430664218.157227,3519430662410.508789,238,2,0.005659,3.413311,1270867,661363,0,0,5201,0,1,1 +1774029493.434556,15.32,4,3992.50,55.63,1492.47,2178.21,0.00,3521614418565.818848,3521614418567.829590,11,0,30.477142,0.020771,1274191,662620,0,0,5204,0,1,1 +1774029498.435066,2.11,4,3992.50,50.81,1681.29,1989.39,0.00,0.000000,0.000000,11,0,9.619676,0.010546,1275343,662977,0,0,5206,0,1,1 +1774029503.438842,1.10,4,3992.50,50.82,1681.05,1989.62,0.00,0.000000,0.000000,11,0,0.002832,0.004086,1275416,663066,0,0,5209,0,1,1 +1774029508.438756,0.30,4,3992.50,50.82,1681.07,1989.61,0.00,0.050001,0.000000,70,0,0.002746,0.003942,1275482,663145,0,0,5211,0,1,1 +1774029513.439304,0.35,4,3992.50,50.82,1680.84,1989.84,0.00,3518051721883.776367,0.000000,11,0,0.002504,0.003343,1275540,663215,0,0,5214,0,1,1 +1774029518.438871,0.50,4,3992.50,50.82,1680.86,1989.82,0.00,0.000000,0.000000,11,0,0.002746,0.003955,1275606,663295,0,0,5216,0,1,1 +1774029523.438972,0.45,4,3992.50,50.82,1680.88,1989.81,0.00,0.000000,0.000000,11,0,0.002779,0.004003,1275675,663379,0,0,5219,0,1,1 +1774029528.434815,0.70,4,3992.50,50.82,1680.89,1989.79,0.00,0.000000,0.000000,11,0,0.002736,0.003958,1275740,663459,0,0,5221,0,1,1 +1774029533.438863,0.30,4,3992.50,50.66,1687.19,1983.49,0.00,423.837670,2248.240231,40088,71921,0.002596,0.003403,1275804,663534,0,0,5224,0,1,1 +1774029538.438710,0.45,4,3992.50,50.65,1687.58,1983.10,0.00,3518544821746.983398,3518544819919.039062,238,2,0.002746,0.003954,1275870,663614,0,0,5226,0,1,1 +1774029543.439396,0.35,4,3992.50,50.71,1685.14,1985.54,0.00,3517954909927.854492,3517954909929.686523,199,0,0.002808,0.004004,1275940,663698,0,0,5229,0,1,1 +1774029548.434618,0.60,4,3992.50,50.67,1686.66,1984.03,0.00,428.474080,2252.359874,40846,72064,0.002749,0.003958,1276006,663778,0,0,5231,0,1,1 +1774029553.436540,0.40,4,3992.50,50.69,1686.23,1984.45,0.00,3517085058070.263672,3517085056248.947266,70,0,0.002504,0.003329,1276064,663847,0,0,5234,0,1,1 +1774029558.438838,0.55,4,3992.50,50.71,1685.27,1985.41,0.00,427.994927,2249.266113,40846,72150,0.002732,0.003952,1276129,663927,0,0,5236,0,1,1 +1774029563.439585,0.60,4,3992.50,50.71,1685.27,1985.40,0.00,3517911369356.782715,3517911367534.820312,199,0,0.002733,0.003964,1276194,664008,0,0,5239,0,1,1 +1774029568.437551,7.23,4,3992.50,50.97,1673.86,1995.43,0.00,3519869286005.354492,0.000000,11,0,0.025253,24.451412,1277831,666737,0,0,5241,0,1,1 +1774029573.434617,5.02,4,3992.50,50.56,1688.38,1979.61,0.00,0.000000,0.000000,11,0,0.014149,15.637759,1278795,668478,0,0,5244,0,1,1 +1774029578.439268,0.30,4,3992.50,50.58,1687.64,1980.34,0.00,1.490508,0.022050,221,22,0.001156,0.003185,1278831,668540,0,0,5246,0,1,1 +1774029583.437091,0.45,4,3992.50,50.59,1687.40,1980.58,0.00,0.000000,0.000000,221,22,0.001145,0.003199,1278866,668603,0,0,5249,0,1,1 +1774029588.435137,0.35,4,3992.50,50.59,1687.40,1980.58,0.00,3519812448178.800781,3519812448180.094238,199,0,0.000916,0.002555,1278894,668653,0,0,5251,0,1,1 +1774029593.438832,0.40,4,3992.50,50.59,1687.40,1980.58,0.00,0.000000,0.000000,199,0,0.001156,0.003195,1278930,668716,0,0,5254,0,1,1 +1774029598.435543,0.35,4,3992.50,50.53,1689.43,1978.55,0.00,428.346466,2288.045096,40846,72554,0.001158,0.003190,1278966,668778,0,0,5256,0,1,1 +1774029603.436275,1.30,4,3992.50,50.57,1688.22,1979.77,0.00,0.000000,4.035347,40846,72584,0.001182,0.003228,1279004,668843,0,0,5259,0,1,1 +1774029608.438052,0.60,4,3992.50,50.58,1687.57,1980.42,0.00,3517186917442.671387,3517186915580.998535,11,0,0.001194,0.003249,1279043,668909,0,0,5261,0,1,1 +1774029613.434587,0.60,4,3992.50,50.39,1695.22,1972.76,0.00,1.492929,0.022086,221,22,0.001233,0.003293,1279085,668978,0,0,5264,0,1,1 +1774029618.439289,0.35,4,3992.50,50.13,1705.36,1962.63,0.00,3515131454826.112793,3515131454827.404785,199,0,0.001319,0.003319,1279132,669051,0,0,5266,0,1,1 +1774029623.438972,0.60,4,3992.50,50.13,1705.35,1962.63,0.00,1.315025,0.022072,221,22,0.001157,0.003185,1279168,669113,0,0,5269,0,1,1 +1774029628.434564,0.30,4,3992.50,50.16,1704.12,1963.86,0.00,3521541429339.705566,3521541429341.126953,70,0,0.001442,0.003657,1279211,669186,0,0,5271,0,1,1 +1774029633.439380,18.86,4,3992.50,57.02,1441.79,2232.39,0.00,3515051900360.473145,0.000000,11,0,25.616725,0.022101,1282014,670492,0,0,5274,0,1,1 +1774029638.434540,32.61,4,3992.50,57.01,1443.77,2232.12,0.00,0.050048,0.000000,70,0,119.283475,0.050165,1294214,674128,0,0,5276,0,1,1 +1774029643.434505,28.48,4,3992.50,57.04,1442.88,2233.11,0.00,0.000000,0.000000,70,0,119.168889,0.024050,1306550,675797,0,0,5279,0,1,1 +1774029648.439053,27.71,4,3992.50,57.00,1444.23,2231.79,0.00,423.760161,2288.909261,40099,72879,119.459689,0.032268,1318875,678117,0,0,5281,0,1,1 +1774029653.438154,28.18,4,3992.50,56.82,1451.32,2224.74,0.00,3519069711268.991699,3519069709401.683594,199,0,118.785637,0.027824,1330996,680088,0,0,5284,0,1,1 +1774029658.439323,27.44,4,3992.50,57.04,1442.82,2233.16,0.00,3517615289226.299805,0.000000,70,0,120.138483,0.019018,1343309,681360,0,0,5286,0,1,1 +1774029663.439193,27.68,4,3992.50,56.77,1453.52,2222.52,0.00,424.156552,2291.188332,40099,72930,118.168179,0.020068,1355487,682724,0,0,5289,0,1,1 +1774029668.439106,27.89,4,3992.50,56.97,1445.16,2230.67,0.00,3518498796262.111328,3518498794394.967773,199,0,120.169270,0.022656,1367832,684285,0,0,5291,0,1,1 +1774029673.439317,26.95,4,3992.50,56.97,1445.61,2230.44,0.00,0.000000,0.000000,199,0,118.759386,0.020078,1379962,685594,0,0,5294,0,1,1 +1774029678.438386,5.58,4,3992.50,52.08,1637.17,2038.92,0.00,3519091824009.759766,0.000000,11,0,49.906937,0.032844,1385972,687317,0,0,5296,0,1,1 +1774029683.434626,15.03,4,3992.50,52.02,1639.55,2036.53,0.00,424.678297,2293.568309,40115,73675,16.115816,0.076888,1390754,691096,0,0,5299,0,1,1 +1774029688.436525,13.27,4,3992.50,52.32,1627.44,2048.62,0.00,3517101115205.111328,3517101113338.335938,11,0,20.096376,0.078506,1396242,695355,0,0,5301,0,1,1 +1774029693.439034,11.60,4,3992.50,51.30,1664.79,2008.45,0.00,0.176864,0.000000,199,0,0.026940,48.249855,1398019,700470,0,0,5304,0,1,1 +1774029698.438013,29.55,4,3992.50,51.10,1665.96,2000.58,0.00,1.832210,0.000195,238,2,0.023697,118.994519,1399682,712883,0,0,5306,0,1,1 +1774029703.439596,10.30,4,3992.50,50.85,1675.68,1991.02,0.00,3517323811988.898926,0.021868,221,22,0.013055,37.848994,1400463,717002,0,0,5309,0,1,1 +1774029708.435656,8.59,4,3992.50,55.40,1501.43,2169.02,0.00,3521211588394.196289,3521211588395.490234,199,0,4.417052,0.010818,1401144,717534,0,0,5311,0,1,1 +1774029713.434526,7.37,4,3992.50,50.62,1688.67,1981.77,0.00,3519232490672.037109,0.000000,11,0,35.662721,0.016669,1404857,718504,0,0,5314,0,1,1 +1774029718.438469,0.75,4,3992.50,50.53,1692.23,1978.18,0.00,2.007206,0.000195,238,2,0.003445,0.006196,1404938,718609,0,0,5316,0,1,1 +1774029723.438910,0.40,4,3992.50,50.56,1690.81,1979.63,0.00,3518127178850.425293,0.021873,221,22,0.002855,0.004084,1405013,718698,0,0,5319,0,1,1 +1774029728.439363,0.35,4,3992.50,50.53,1692.08,1978.38,0.00,3518118098683.190918,3518118098684.660645,11,0,0.002517,0.003333,1405072,718767,0,0,5321,0,1,1 +1774029733.438841,0.35,4,3992.50,50.56,1690.87,1979.59,0.00,0.176972,0.000000,199,0,0.002734,0.003965,1405137,718848,0,0,5324,0,1,1 +1774029738.434604,0.40,4,3992.50,50.56,1690.89,1979.57,0.00,0.000000,0.000000,199,0,0.002761,0.003989,1405204,718930,0,0,5326,0,1,1 +1774029743.437176,1.50,4,3992.50,50.56,1690.89,1979.56,0.00,1.314265,0.022059,221,22,0.002328,0.003183,1405259,718997,0,0,5329,0,1,1 +1774029748.438737,0.35,4,3992.50,50.52,1692.64,1977.81,0.00,442.481960,2497.284427,40232,76014,0.002847,0.004037,1405332,719084,0,0,5331,0,1,1 +1774029753.436483,0.35,4,3992.50,50.52,1692.55,1977.90,0.00,4.062671,0.078844,40990,76083,0.002735,0.003966,1405397,719165,0,0,5334,0,1,1 +1774029758.439117,0.35,4,3992.50,50.55,1691.34,1979.12,0.00,3516584408729.486328,3516584406679.104492,221,22,0.002745,0.003952,1405463,719245,0,0,5336,0,1,1 +1774029763.436508,0.45,4,3992.50,50.55,1691.34,1979.14,0.00,3520274299227.502930,3520274299228.973633,11,0,0.003480,0.004929,1405536,719331,0,0,5339,0,1,1 +1774029768.438913,0.30,4,3992.50,50.55,1691.36,1979.13,0.00,0.176868,0.000000,199,0,0.002732,0.003940,1405601,719410,0,0,5341,0,1,1 +1774029773.435776,0.35,4,3992.50,50.55,1691.37,1979.11,0.00,3520645872692.802246,0.000000,11,0,0.002531,0.003358,1405661,719481,0,0,5344,0,1,1 +1774029778.434866,0.30,4,3992.50,50.55,1691.38,1979.10,0.00,0.000000,0.000000,11,0,0.002742,0.003963,1405727,719562,0,0,5346,0,1,1 +1774029783.434481,0.35,4,3992.50,50.55,1691.39,1979.09,0.00,1.492009,0.022072,221,22,0.002115,0.003727,1405780,719636,0,0,5349,0,1,1 +1774029788.434534,11.30,4,3992.50,50.34,1697.17,1970.84,0.00,442.615377,2534.303526,40232,76472,0.022362,40.066002,1407155,724010,0,0,5351,0,1,1 +1774029793.434589,0.45,4,3992.50,50.35,1696.63,1971.38,0.00,3518398750933.380371,3518398748843.162598,11,0,0.001157,0.003198,1407191,724073,0,0,5354,0,1,1 +1774029798.437528,0.35,4,3992.50,50.38,1695.40,1972.60,0.00,2.007609,0.000195,238,2,0.001144,0.003186,1407226,724135,0,0,5356,0,1,1 +1774029803.434532,0.25,4,3992.50,50.38,1695.41,1972.60,0.00,3520546910699.615723,3520546910701.625488,11,0,0.001153,0.003208,1407262,724199,0,0,5359,0,1,1 +1774029808.434544,0.30,4,3992.50,50.42,1693.93,1974.07,0.00,0.000000,0.000000,11,0,0.000928,0.002554,1407291,724249,0,0,5361,0,1,1 +1774029813.434610,0.35,4,3992.50,50.43,1693.71,1974.29,0.00,444.106192,2534.427626,40232,76563,0.001144,0.003198,1407326,724312,0,0,5364,0,1,1 +1774029818.438435,0.30,4,3992.50,50.45,1692.74,1975.27,0.00,3515747426805.653320,3515747424716.902832,11,0,0.001156,0.003186,1407362,724374,0,0,5366,0,1,1 +1774029823.434603,0.40,4,3992.50,50.48,1691.79,1976.22,0.00,0.000000,0.000000,11,0,0.001196,0.003263,1407401,724441,0,0,5369,0,1,1 +1774029828.439207,0.30,4,3992.50,50.48,1691.79,1976.22,0.00,447.760526,2536.253037,40990,76669,0.001194,0.003247,1407440,724507,0,0,5371,0,1,1 +1774029833.438519,0.40,4,3992.50,50.33,1697.28,1970.72,0.00,3518921839981.154297,3518921837890.400391,70,0,0.001371,0.003394,1407491,724585,0,0,5374,0,1,1 +1774029838.438544,0.40,4,3992.50,50.33,1697.29,1970.72,0.00,3518419200909.996094,0.000000,11,0,0.001144,0.003188,1407526,724647,0,0,5376,0,1,1 +1774029843.434675,0.25,4,3992.50,50.24,1701.00,1967.01,0.00,0.000000,0.000000,11,0,0.000916,0.002566,1407554,724698,0,0,5379,0,1,1 +1774029848.434776,0.35,4,3992.50,50.26,1700.03,1967.98,0.00,0.000000,0.000000,11,0,0.001157,0.003188,1407590,724760,0,0,5381,0,1,1 +1774029853.435030,28.43,4,3992.50,56.92,1447.30,2228.67,0.00,444.089425,2538.590907,40232,76788,55.280367,0.030584,1413504,726775,0,0,5384,0,1,1 +1774029858.438826,30.35,4,3992.50,56.81,1451.68,2224.39,0.00,3515768221433.639160,3515768219338.612793,238,2,118.475424,0.027942,1425719,728758,0,0,5386,0,1,1 +1774029863.434535,27.97,4,3992.50,56.95,1446.32,2229.75,0.00,3521459324569.245117,3521459324571.255371,11,0,119.874458,0.041403,1438028,731833,0,0,5389,0,1,1 +1774029868.438393,28.13,4,3992.50,56.93,1447.11,2228.99,0.00,443.769642,2536.797930,40232,76850,118.875760,0.032841,1450264,734235,0,0,5391,0,1,1 +1774029873.438566,27.99,4,3992.50,57.05,1442.56,2233.53,0.00,3518315414914.546875,3518315412819.799316,199,0,119.562186,0.020656,1462542,735637,0,0,5394,0,1,1 +1774029878.434512,27.99,4,3992.50,56.96,1446.08,2230.06,0.00,3521291817337.617676,0.000000,11,0,119.059691,0.022311,1474580,737160,0,0,5396,0,1,1 +1774029883.434504,23.26,4,3992.50,56.90,1448.28,2227.85,0.00,448.173592,2538.956636,40990,76917,119.361539,0.019630,1486582,738652,0,0,5399,0,1,1 +1774029888.439376,32.31,4,3992.50,56.99,1444.77,2231.31,0.00,0.000000,0.006829,40990,76929,119.645990,0.023406,1498574,740274,0,0,5401,0,1,1 +1774029893.439445,20.73,4,3992.50,56.80,1452.25,2223.89,0.00,3518388588267.238770,3518388588271.288086,40233,76925,118.560906,0.028247,1510551,742279,0,0,5404,0,1,1 +1774029898.439415,1.05,4,3992.50,51.60,1655.77,2020.32,0.00,3518458006748.233887,3518458004653.208984,199,0,16.627944,0.008256,1512358,742639,0,0,5406,0,1,1 +1774029903.439335,16.18,4,3992.50,51.06,1676.84,1999.30,0.00,1.314963,0.022071,221,22,10.068689,0.051489,1515327,745020,0,0,5409,0,1,1 +1774029908.437622,19.21,4,3992.50,53.16,1594.81,2081.31,0.00,3519642861135.933105,3519642861137.403809,11,0,24.131956,0.096785,1521982,750314,0,0,5411,0,1,1 +1774029913.438677,7.78,4,3992.50,50.93,1681.91,1994.21,0.00,0.176916,0.000000,199,0,6.039696,0.028137,1523637,751608,0,0,5414,0,1,1 +1774029918.439430,1.05,4,3992.50,50.65,1693.25,1982.87,0.00,1.831560,0.000195,238,2,0.004142,0.005386,1523714,751703,0,0,5416,0,1,1 +1774029923.434525,0.40,4,3992.50,50.68,1692.03,1984.08,0.00,0.000000,0.000000,238,2,0.002749,0.003968,1523780,751784,0,0,5419,0,1,1 +1774029928.439081,0.60,4,3992.50,50.68,1692.05,1984.07,0.00,441.832577,2537.861947,40243,78211,0.003014,0.004403,1523852,751874,0,0,5421,0,1,1 +1774029933.435312,0.45,4,3992.50,50.67,1692.14,1983.98,0.00,3521091691155.739258,3521091689058.227051,11,0,0.003220,0.005055,1523928,751977,0,0,5424,0,1,1 +1774029938.438646,0.60,4,3992.50,50.64,1693.43,1982.69,0.00,0.000000,0.000000,11,0,0.004782,0.005228,1524019,752073,0,0,5426,0,1,1 +1774029943.439056,0.45,4,3992.50,50.69,1691.50,1984.62,0.00,448.268092,2540.435542,41001,78530,0.003923,0.004490,1524116,752175,0,0,5429,0,1,1 +1774029948.439376,0.95,4,3992.50,50.70,1691.28,1984.84,0.00,3518212688766.664062,3518212686674.458008,11,0,0.002746,0.003954,1524182,752255,0,0,5431,0,1,1 +1774029953.436563,0.40,4,3992.50,50.70,1691.05,1985.07,0.00,0.000000,0.000000,11,0,0.002735,0.003966,1524247,752336,0,0,5434,0,1,1 +1774029958.439501,0.35,4,3992.50,50.70,1691.05,1985.05,0.00,448.041540,2539.232336,41001,78623,0.002745,0.003952,1524313,752416,0,0,5436,0,1,1 +1774029963.437605,0.35,4,3992.50,50.70,1691.07,1985.04,0.00,0.000000,0.040152,41001,78634,0.002588,0.003380,1524377,752489,0,0,5439,0,1,1 +1774029968.438421,10.88,4,3992.50,51.24,1667.53,2006.00,0.00,3517863646799.475586,3517863644707.356445,11,0,0.031413,45.062543,1526537,757340,0,0,5441,0,1,1 +1774029973.437680,28.94,4,3992.50,51.02,1669.07,1997.53,0.00,0.000000,0.000000,11,0,0.051960,118.184027,1530437,769495,0,0,5444,0,1,1 +1774029978.438778,10.87,4,3992.50,50.77,1678.85,1987.60,0.00,0.049989,0.000000,70,0,0.021978,41.856146,1531927,773953,0,0,5446,0,1,1 +1774029983.438762,15.69,4,3992.50,51.77,1643.55,2026.79,0.00,1.441899,0.022070,221,22,40.062344,0.022567,1536201,775371,0,0,5449,0,1,1 +1774029988.438702,4.26,4,3992.50,51.38,1658.69,2011.64,0.00,0.000000,0.000000,221,22,0.005718,0.006865,1536322,775496,0,0,5451,0,1,1 +1774029993.438699,0.45,4,3992.50,50.66,1686.99,1983.35,0.00,3518439089839.295410,3518439089840.715332,70,0,0.002746,0.003964,1536388,775577,0,0,5454,0,1,1 +1774029998.439018,0.40,4,3992.50,50.54,1691.72,1978.63,0.00,0.000000,0.000000,70,0,0.002733,0.003954,1536453,775657,0,0,5456,0,1,1 +1774030003.439272,0.45,4,3992.50,50.47,1694.39,1975.96,0.00,463.923648,2746.008146,40362,80197,0.002746,0.003964,1536519,775738,0,0,5459,0,1,1 +1774030008.439495,0.40,4,3992.50,50.51,1692.96,1977.39,0.00,3518280116510.353027,3518280114226.296387,238,2,0.002115,0.003717,1536572,775811,0,0,5461,0,1,1 +1774030013.434736,11.61,4,3992.50,50.51,1690.34,1977.70,0.00,0.000000,0.000000,238,2,0.031725,40.102772,1538760,780186,0,0,5464,0,1,1 +1774030018.438813,0.35,4,3992.50,50.17,1703.87,1964.17,0.00,0.000000,0.000000,238,2,0.001409,0.003804,1538803,780260,0,0,5466,0,1,1 +1774030023.438392,0.30,4,3992.50,50.21,1702.18,1965.86,0.00,3518733419379.345215,3518733419381.177246,199,0,0.000916,0.002564,1538831,780311,0,0,5469,0,1,1 +1774030028.438845,0.40,4,3992.50,50.26,1700.22,1967.82,0.00,467.838707,2782.187908,41120,80616,0.001157,0.003188,1538867,780373,0,0,5471,0,1,1 +1774030033.438851,0.35,4,3992.50,50.26,1700.22,1967.82,0.00,3518432512715.110840,3518432510400.731934,11,0,0.001152,0.003206,1538903,780437,0,0,5474,0,1,1 +1774030038.438598,0.30,4,3992.50,50.26,1700.22,1967.82,0.00,0.050003,0.000000,70,0,0.001144,0.003188,1538938,780499,0,0,5476,0,1,1 +1774030043.438989,0.55,4,3992.50,50.26,1700.23,1967.81,0.00,3518162485425.518066,0.000000,11,0,0.001144,0.003198,1538973,780562,0,0,5479,0,1,1 +1774030048.439326,0.30,4,3992.50,50.26,1700.23,1967.80,0.00,463.965915,2786.330574,40362,80671,0.001220,0.003250,1539014,780628,0,0,5481,0,1,1 +1774030053.435918,0.35,4,3992.50,50.26,1700.24,1967.80,0.00,3520836595183.762207,3520836592859.657227,11,0,0.001208,0.003262,1539054,780695,0,0,5484,0,1,1 +1774030058.436408,0.35,4,3992.50,50.22,1701.93,1966.11,0.00,0.049995,0.000000,70,0,0.001327,0.003346,1539102,780769,0,0,5486,0,1,1 +1774030063.439413,0.35,4,3992.50,50.25,1700.70,1967.34,0.00,0.000000,0.000000,70,0,0.000959,0.002600,1539133,780823,0,0,5489,0,1,1 +1774030068.439047,0.40,4,3992.50,50.25,1700.71,1967.33,0.00,463.981126,2786.738625,40362,80689,0.001144,0.003188,1539168,780885,0,0,5491,0,1,1 +1774030073.439198,0.30,4,3992.50,50.25,1700.71,1967.33,0.00,3518330940751.645508,3518330938429.000977,199,0,0.001144,0.003198,1539203,780948,0,0,5494,0,1,1 +1774030078.434890,25.15,4,3992.50,56.84,1449.70,2225.26,0.00,468.284524,2788.991837,41120,80760,38.092564,0.026324,1543382,782623,0,0,5496,0,1,1 +1774030083.435188,31.40,4,3992.50,56.97,1445.67,2230.35,0.00,3518227779573.803223,3518227777255.359863,70,0,118.158165,0.045437,1555498,785990,0,0,5499,0,1,1 +1774030088.438989,28.35,4,3992.50,56.92,1447.49,2228.48,0.00,1.957301,0.000195,238,2,119.874674,0.033416,1567690,788345,0,0,5501,0,1,1 +1774030093.438608,27.80,4,3992.50,56.91,1447.72,2228.34,0.00,0.000000,0.000000,238,2,118.371450,0.038570,1579730,791228,0,0,5504,0,1,1 +1774030098.436462,28.49,4,3992.50,56.83,1450.91,2225.17,0.00,3519948057179.546875,0.021884,221,22,119.819109,0.033211,1592067,793606,0,0,5506,0,1,1 +1774030103.434532,27.94,4,3992.50,56.72,1455.20,2220.89,0.00,3519795680360.225586,3519795680361.645996,70,0,118.608428,0.056588,1604125,797928,0,0,5509,0,1,1 +1774030108.435641,27.76,4,3992.50,56.92,1447.57,2228.55,0.00,463.844275,2786.189174,40362,80909,119.939845,0.026835,1616475,799841,0,0,5511,0,1,1 +1774030113.439498,27.90,4,3992.50,56.88,1448.96,2227.02,0.00,3515724885734.086914,3515724883413.018066,70,0,118.272284,0.038060,1628546,802675,0,0,5514,0,1,1 +1774030118.439173,24.85,4,3992.50,56.72,1455.26,2220.90,0.00,0.000000,0.000000,70,0,120.171878,0.051816,1640704,806610,0,0,5516,0,1,1 +1774030123.439071,1.10,4,3992.50,52.68,1613.43,2062.70,0.00,0.000000,0.000000,70,0,34.052202,0.014044,1644251,807440,0,0,5519,0,1,1 +1774030128.438405,8.43,4,3992.50,51.88,1644.96,2031.19,0.00,1.442087,0.022073,221,22,4.030530,0.021602,1645375,808316,0,0,5521,0,1,1 +1774030133.438911,26.65,4,3992.50,51.36,1665.22,2010.91,0.00,0.000000,0.000000,221,22,36.190863,0.146060,1655251,816001,0,0,5524,0,1,1 +1774030138.438897,1.20,4,3992.50,51.34,1666.18,2009.95,0.00,3518447439823.173828,3518447439824.644043,11,0,0.008517,0.007835,1655425,816168,0,0,5526,0,1,1 +1774030143.438380,13.85,4,3992.50,50.94,1678.31,1994.31,0.00,0.000000,0.000000,11,0,0.039407,57.429408,1658268,822288,0,0,5529,0,1,1 +1774030148.438372,29.39,4,3992.50,51.52,1649.46,2017.05,0.00,1.491897,0.022070,221,22,0.071653,118.831086,1663722,834533,0,0,5531,0,1,1 +1774030153.438393,7.78,4,3992.50,51.39,1654.83,2012.12,0.00,462.607982,2962.526876,40376,83314,0.019908,28.846653,1665049,837623,0,0,5534,0,1,1 +1774030158.438891,15.46,4,3992.50,51.25,1664.36,2006.50,0.00,3518086754208.569336,3518086751708.888672,221,22,40.058177,0.022442,1669265,839031,0,0,5536,0,1,1 +1774030163.439028,0.55,4,3992.50,51.26,1663.99,2006.84,0.00,0.516880,3518341042067.475098,238,2,0.005224,0.005248,1669376,839143,0,0,5539,0,1,1 +1774030168.438870,0.65,4,3992.50,51.26,1664.02,2006.80,0.00,3518548162075.224609,3518548162077.233398,11,0,0.003573,0.006313,1669467,839255,0,0,5541,0,1,1 +1774030173.434610,0.45,4,3992.50,51.21,1665.68,2005.17,0.00,484.255875,2972.716807,40482,83679,0.002744,0.003976,1669533,839337,0,0,5544,0,1,1 +1774030178.434529,0.45,4,3992.50,51.17,1667.32,2003.52,0.00,3518494287524.785645,3518494285038.404785,11,0,0.002505,0.003321,1669591,839405,0,0,5546,0,1,1 +1774030183.438618,0.35,4,3992.50,51.21,1665.95,2004.91,0.00,2.007148,0.000195,238,2,0.002750,0.003963,1669657,839486,0,0,5549,0,1,1 +1774030188.438434,0.40,4,3992.50,51.21,1665.95,2004.89,0.00,481.852235,2993.828721,40482,83909,0.002759,0.003986,1669724,839568,0,0,5551,0,1,1 +1774030193.438524,0.40,4,3992.50,51.22,1665.38,2005.46,0.00,3518373337257.141602,3518373334747.311523,11,0,0.002734,0.003964,1669789,839649,0,0,5554,0,1,1 +1774030198.434606,0.40,4,3992.50,51.22,1665.32,2005.52,0.00,484.222727,2996.160953,40482,83972,0.002862,0.004041,1669863,839736,0,0,5556,0,1,1 +1774030203.438882,0.75,4,3992.50,51.20,1666.20,2004.66,0.00,3515430856928.076660,3515430854420.201660,70,0,0.002731,0.003961,1669928,839817,0,0,5559,0,1,1 +1774030208.438915,0.75,4,3992.50,51.19,1666.73,2004.12,0.00,3518413786802.571289,0.000000,11,0,0.002759,0.003954,1669995,839897,0,0,5561,0,1,1 +1774030213.439233,0.50,4,3992.50,51.21,1666.00,2004.85,0.00,0.000000,0.000000,11,0,0.002808,0.003991,1670065,839980,0,0,5564,0,1,1 +1774030218.434606,2.66,4,3992.50,51.16,1667.74,2003.11,0.00,0.177117,0.000000,199,0,0.002494,0.003336,1670122,840049,0,0,5566,0,1,1 +1774030223.434647,0.40,4,3992.50,51.16,1667.75,2003.09,0.00,487.737916,2993.967360,41251,84151,0.002754,0.003972,1670189,840131,0,0,5569,0,1,1 +1774030228.436960,0.70,4,3992.50,51.17,1667.52,2003.33,0.00,0.000000,0.004197,41251,84158,0.004178,0.005708,1670271,840236,0,0,5571,0,1,1 +1774030233.439023,3.71,4,3992.50,50.99,1674.00,1996.42,0.00,3516985628145.636719,3516985625640.593262,11,0,0.014920,10.818734,1671161,841617,0,0,5574,0,1,1 +1774030238.439068,8.43,4,3992.50,50.90,1675.45,1992.87,0.00,0.000000,0.000000,11,0,0.016738,29.246840,1672205,844699,0,0,5576,0,1,1 +1774030243.436754,0.65,4,3992.50,50.73,1682.12,1986.20,0.00,0.000000,0.000000,11,0,0.002235,0.003601,1672264,844775,0,0,5579,0,1,1 +1774030248.439281,0.30,4,3992.50,50.73,1682.12,1986.19,0.00,0.176864,0.000000,199,0,0.001152,0.003194,1672300,844838,0,0,5581,0,1,1 +1774030253.438847,0.45,4,3992.50,50.73,1682.12,1986.19,0.00,3518743053806.817871,0.000000,70,0,0.000916,0.002564,1672328,844889,0,0,5584,0,1,1 +1774030258.438043,0.35,4,3992.50,50.70,1683.34,1984.98,0.00,0.126974,0.000000,199,0,0.001157,0.003188,1672364,844951,0,0,5586,0,1,1 +1774030263.437918,0.25,4,3992.50,50.72,1682.36,1985.95,0.00,3518525177642.104492,0.000000,11,0,0.001144,0.003198,1672399,845014,0,0,5589,0,1,1 +1774030268.438548,0.40,4,3992.50,50.72,1682.36,1985.95,0.00,0.000000,0.000000,11,0,0.001152,0.003196,1672435,845077,0,0,5591,0,1,1 +1774030273.438908,0.40,4,3992.50,50.72,1682.38,1985.94,0.00,0.000000,0.000000,11,0,0.001195,0.003229,1672474,845142,0,0,5594,0,1,1 +1774030278.438927,0.40,4,3992.50,50.70,1683.28,1985.04,0.00,2.008781,0.000195,238,2,0.001245,0.003281,1672517,845210,0,0,5596,0,1,1 +1774030283.437093,0.35,4,3992.50,50.71,1682.79,1985.52,0.00,3519728540263.011230,3519728540265.020508,11,0,0.001351,0.003387,1672566,845287,0,0,5599,0,1,1 +1774030288.437557,0.35,4,3992.50,50.71,1682.79,1985.52,0.00,1.491756,0.022068,221,22,0.000966,0.002616,1672598,845341,0,0,5601,0,1,1 +1774030293.438901,0.35,4,3992.50,50.74,1681.81,1986.50,0.00,3517491016461.297852,3517491016462.717285,70,0,0.001152,0.003205,1672634,845405,0,0,5604,0,1,1 +1774030298.438800,0.40,4,3992.50,50.74,1681.82,1986.50,0.00,487.878808,3034.393669,41251,84611,0.001144,0.003188,1672669,845467,0,0,5606,0,1,1 +1774030303.434890,27.67,4,3992.50,56.82,1450.64,2224.64,0.00,3521191118590.096191,3521191116040.218750,221,22,44.100851,0.031642,1677337,847564,0,0,5609,0,1,1 +1774030308.438261,30.72,4,3992.50,56.80,1451.99,2224.00,0.00,0.000000,0.000000,221,22,118.684154,0.064720,1689453,852470,0,0,5611,0,1,1 +1774030313.435117,28.15,4,3992.50,56.85,1450.26,2225.74,0.00,482.669706,3036.355893,40493,84721,119.639679,0.055519,1701586,856639,0,0,5614,0,1,1 +1774030318.438777,27.67,4,3992.50,56.88,1448.99,2227.00,0.00,4.057870,0.049573,41251,84761,118.326186,0.052595,1713635,860592,0,0,5616,0,1,1 +1774030323.434719,27.89,4,3992.50,56.79,1452.56,2223.43,0.00,3521295000568.331055,3521294998019.663086,11,0,120.012716,0.050435,1725912,864441,0,0,5619,0,1,1 +1774030328.437498,27.94,4,3992.50,57.17,1437.80,2238.24,0.00,0.049972,0.000000,70,0,119.096445,0.048311,1738045,868223,0,0,5621,0,1,1 +1774030333.434530,28.01,4,3992.50,57.04,1442.58,2233.39,0.00,3520527119816.343750,0.000000,11,0,119.233835,0.056878,1750189,872587,0,0,5624,0,1,1 +1774030338.434522,28.30,4,3992.50,56.89,1448.47,2227.54,0.00,0.000000,0.000000,11,0,119.564694,0.050471,1762326,876366,0,0,5626,0,1,1 +1774030343.439010,23.22,4,3992.50,56.83,1451.16,2224.93,0.00,0.000000,0.000000,11,0,118.655571,0.052170,1774330,880295,0,0,5629,0,1,1 +1774030348.434601,1.10,4,3992.50,51.03,1678.19,1997.87,0.00,0.000000,0.000000,11,0,28.067532,0.018812,1777269,881531,0,0,5631,0,1,1 +1774030353.438388,16.82,4,3992.50,51.65,1653.91,2022.16,0.00,2.007269,0.000195,238,2,14.081784,0.067658,1781360,884790,0,0,5634,0,1,1 +1774030358.438661,14.20,4,3992.50,51.34,1665.96,2010.05,0.00,3518244804516.620117,3518244804518.628418,11,0,22.125349,0.096652,1787773,889777,0,0,5636,0,1,1 +1774030363.438747,3.57,4,3992.50,50.95,1681.19,1994.85,0.00,488.073849,3035.529635,41268,85961,4.021054,0.017050,1788859,890655,0,0,5639,0,1,1 +1774030368.439534,0.80,4,3992.50,50.67,1692.28,1983.77,0.00,3517883281086.524902,3517883278539.426270,11,0,0.003462,0.005350,1788942,890759,0,0,5641,0,1,1 +1774030373.438527,0.25,4,3992.50,50.67,1692.29,1983.76,0.00,0.000000,0.000000,11,0,0.002755,0.003973,1789009,890841,0,0,5644,0,1,1 +1774030378.434632,0.30,4,3992.50,50.67,1692.06,1983.99,0.00,0.050039,0.000000,70,0,0.002761,0.003957,1789076,890921,0,0,5646,0,1,1 +1774030383.437183,0.45,4,3992.50,50.67,1692.07,1983.98,0.00,0.000000,0.000000,70,0,0.002745,0.003999,1789142,891003,0,0,5649,0,1,1 +1774030388.439286,0.40,4,3992.50,50.67,1692.09,1983.96,0.00,1.441288,0.022061,221,22,0.002504,0.003319,1789200,891071,0,0,5651,0,1,1 +1774030393.434533,0.50,4,3992.50,50.63,1693.71,1982.34,0.00,0.517386,3521785038166.812500,238,2,0.002875,0.004124,1789276,891162,0,0,5654,0,1,1 +1774030398.436134,0.30,4,3992.50,50.61,1694.64,1981.40,0.00,3517311266895.375977,3517311266897.383789,11,0,0.002741,0.003961,1789342,891243,0,0,5656,0,1,1 +1774030403.438575,0.45,4,3992.50,50.41,1702.54,1973.52,0.00,2.007809,0.000195,238,2,0.002770,0.003962,1789410,891324,0,0,5659,0,1,1 +1774030408.434520,0.30,4,3992.50,50.42,1702.07,1973.98,0.00,482.403774,3038.810138,40510,86484,0.002736,0.003958,1789475,891404,0,0,5661,0,1,1 +1774030413.435314,0.35,4,3992.50,50.44,1701.10,1974.95,0.00,0.000000,0.041009,40510,86521,0.002821,0.004004,1789546,891488,0,0,5664,0,1,1 +1774030418.438657,0.45,4,3992.50,50.46,1700.37,1975.68,0.00,3516086052287.652832,3516086049736.992676,11,0,0.002752,0.003960,1789613,891569,0,0,5666,0,1,1 +1774030423.439373,0.70,4,3992.50,50.40,1702.70,1973.34,0.00,1.491681,0.022067,221,22,0.002733,0.003951,1789678,891649,0,0,5669,0,1,1 +1774030428.439659,0.35,4,3992.50,50.46,1700.50,1975.54,0.00,3518236172644.919922,3518236172646.390137,11,0,0.003187,0.004255,1789740,891720,0,0,5671,0,1,1 +1774030433.438852,0.45,4,3992.50,50.46,1700.52,1975.53,0.00,0.000000,0.000000,11,0,0.002734,0.003965,1789805,891801,0,0,5674,0,1,1 +1774030438.438664,0.75,4,3992.50,50.46,1700.55,1975.50,0.00,488.103652,3036.673327,41269,86715,0.002754,0.003962,1789872,891882,0,0,5676,0,1,1 +1774030443.439199,0.70,4,3992.50,50.40,1702.61,1973.44,0.00,3518061409075.396973,3518061406527.195312,11,0,0.002733,0.003964,1789937,891963,0,0,5679,0,1,1 +1774030448.438626,14.00,4,3992.50,51.06,1673.53,1998.98,0.00,0.050006,0.000000,70,0,0.032746,58.296563,1792170,898209,0,0,5681,0,1,1 +1774030453.434537,28.59,4,3992.50,51.27,1659.27,2007.43,0.00,0.000000,0.000000,70,0,0.022257,119.468145,1793722,910738,0,0,5684,0,1,1 +1774030458.435718,7.63,4,3992.50,50.67,1682.84,1983.74,0.00,3517606085098.351074,0.000000,11,0,0.007431,27.439192,1794122,913735,0,0,5686,0,1,1 +1774030463.436780,16.07,4,3992.50,52.26,1624.11,2046.23,0.00,503.670705,3241.084070,40626,88094,40.052198,0.025306,1798360,915416,0,0,5689,0,1,1 +1774030468.439030,0.75,4,3992.50,51.41,1657.38,2012.95,0.00,3516853973473.374023,3516853970736.611328,11,0,0.004676,0.004181,1798456,915509,0,0,5691,0,1,1 +1774030473.437609,11.60,4,3992.50,51.00,1671.60,1996.69,0.00,1.492319,0.022077,221,22,0.026490,40.078980,1800243,919938,0,0,5694,0,1,1 +1774030478.434690,0.35,4,3992.50,50.70,1683.35,1984.95,0.00,3520492290623.749512,3520492290625.042969,199,0,0.001294,0.003202,1800279,920001,0,0,5696,0,1,1 +1774030483.439126,0.30,4,3992.50,50.74,1681.74,1986.55,0.00,3515318966988.333496,0.000000,11,0,0.000935,0.002570,1800309,920053,0,0,5699,0,1,1 +1774030488.435906,0.35,4,3992.50,50.77,1680.53,1987.77,0.00,2.010083,0.000195,238,2,0.001145,0.003190,1800344,920115,0,0,5701,0,1,1 +1774030493.435631,0.30,4,3992.50,50.78,1680.29,1988.01,0.00,3518630777908.724121,3518630777910.732910,11,0,0.001182,0.003229,1800382,920180,0,0,5704,0,1,1 +1774030498.439219,1.15,4,3992.50,50.66,1684.86,1983.43,0.00,0.049964,0.000000,70,0,0.001144,0.003199,1800417,920243,0,0,5706,0,1,1 +1774030503.439135,0.55,4,3992.50,50.68,1683.94,1984.36,0.00,1.958822,0.000195,238,2,0.001152,0.003206,1800453,920307,0,0,5709,0,1,1 +1774030508.438605,0.80,4,3992.50,50.69,1683.70,1984.60,0.00,505.883382,3282.520084,41384,88603,0.001145,0.003188,1800488,920369,0,0,5711,0,1,1 +1774030513.434523,0.60,4,3992.50,50.69,1683.70,1984.60,0.00,3521312136485.104004,3521312133707.032227,221,22,0.001271,0.003356,1800533,920442,0,0,5714,0,1,1 +1774030518.434619,0.50,4,3992.50,50.69,1683.69,1984.61,0.00,3518369596373.224609,3518369596374.644531,70,0,0.001065,0.002686,1800571,920502,0,0,5716,0,1,1 +1774030523.438649,0.70,4,3992.50,50.67,1684.43,1983.87,0.00,3515603198879.418457,0.000000,11,0,0.001195,0.003228,1800610,920568,0,0,5719,0,1,1 +1774030528.435326,0.60,4,3992.50,50.65,1685.19,1983.11,0.00,1.492887,0.022085,221,22,0.002605,0.004948,1800663,920655,0,0,5721,0,1,1 +1774030533.434618,0.55,4,3992.50,50.65,1685.21,1983.08,0.00,3518935204369.285156,3518935204370.578125,199,0,0.001641,0.004285,1800710,920740,0,0,5724,0,1,1 +1774030538.438030,26.69,4,3992.50,57.02,1442.86,2232.59,0.00,0.000000,0.000000,199,0,44.438846,0.030704,1805533,922731,0,0,5726,0,1,1 +1774030543.434884,31.05,4,3992.50,57.00,1444.21,2231.73,0.00,507.981261,3284.494596,41384,88828,119.040366,0.072139,1817614,928150,0,0,5729,0,1,1 +1774030548.434581,27.77,4,3992.50,57.24,1435.03,2240.96,0.00,3518649863609.708496,3518649860834.951660,11,0,118.370809,0.058322,1829691,932544,0,0,5731,0,1,1 +1774030553.439158,27.55,4,3992.50,56.93,1446.86,2229.06,0.00,0.049954,0.000000,70,0,119.656108,0.048798,1841920,936223,0,0,5734,0,1,1 +1774030558.437681,28.06,4,3992.50,57.02,1443.54,2232.40,0.00,507.938472,3283.455258,41384,88875,118.599287,0.048495,1854019,939796,0,0,5736,0,1,1 +1774030563.438565,27.90,4,3992.50,57.12,1439.46,2236.46,0.00,0.000000,0.049112,41384,88892,119.945619,0.045890,1866335,943203,0,0,5739,0,1,1 +1774030568.439462,27.62,4,3992.50,56.87,1449.35,2226.58,0.00,3517806450200.668945,3517806447426.293457,199,0,118.341377,0.053084,1878339,947229,0,0,5741,0,1,1 +1774030573.438957,28.07,4,3992.50,57.04,1442.53,2233.41,0.00,1.832021,0.000195,238,2,120.177545,0.051831,1890543,951107,0,0,5744,0,1,1 +1774030578.434606,23.06,4,3992.50,56.89,1448.60,2227.41,0.00,506.271053,3285.526919,41385,88962,118.264536,0.059661,1902513,955623,0,0,5746,0,1,1 +1774030583.434605,1.15,4,3992.50,51.17,1672.63,2003.37,0.00,3518438022542.095703,3518438019767.089844,199,0,28.643449,0.019650,1905512,956965,0,0,5749,0,1,1 +1774030588.438011,14.47,4,3992.50,52.00,1640.09,2035.91,0.00,503.396043,3280.654227,40639,89358,16.089840,0.076597,1910216,960718,0,0,5751,0,1,1 +1774030593.438391,17.01,4,3992.50,52.38,1625.31,2050.66,0.00,3518169605844.554688,3518169603065.792969,11,0,24.127656,0.097550,1916891,965967,0,0,5754,0,1,1 +1774030598.438818,3.31,4,3992.50,51.83,1641.32,2029.32,0.00,0.176938,0.000000,199,0,0.010523,0.008995,1917113,966172,0,0,5756,0,1,1 +1774030603.436262,0.55,4,3992.50,51.53,1653.28,2017.37,0.00,505.127708,3286.062898,41073,90394,0.003452,0.005376,1917195,966278,0,0,5759,0,1,1 +1774030608.436862,0.25,4,3992.50,51.51,1653.87,2016.77,0.00,0.000000,0.004589,41073,90400,0.002127,0.003583,1917249,966350,0,0,5761,0,1,1 +1774030613.438936,0.35,4,3992.50,51.52,1653.65,2017.00,0.00,3516978279270.246582,3516978276492.058105,11,0,0.002577,0.003958,1917313,966431,0,0,5764,0,1,1 +1774030618.437677,0.35,4,3992.50,51.32,1661.53,2009.11,0.00,0.050013,0.000000,70,0,0.002518,0.003322,1917372,966499,0,0,5766,0,1,1 +1774030623.438679,0.40,4,3992.50,51.35,1660.12,2010.53,0.00,1.441606,0.022066,221,22,0.002733,0.003963,1917437,966580,0,0,5769,0,1,1 +1774030628.438678,0.60,4,3992.50,51.35,1660.14,2010.50,0.00,3518438167304.314941,3518438167305.734863,70,0,0.002859,0.004110,1917512,966670,0,0,5771,0,1,1 +1774030633.434536,0.30,4,3992.50,51.35,1660.16,2010.49,0.00,509.482383,3287.572783,41832,90524,0.002736,0.003968,1917577,966751,0,0,5774,0,1,1 +1774030638.438685,0.50,4,3992.50,51.35,1660.17,2010.47,0.00,3515519551941.175293,0.022637,41074,90542,0.002731,0.003964,1917642,966832,0,0,5776,0,1,1 +1774030643.439527,0.35,4,3992.50,51.35,1660.18,2010.46,0.00,3517844988322.771973,3517844985541.409180,238,2,0.002733,0.003964,1917707,966913,0,0,5779,0,1,1 +1774030648.438542,0.35,4,3992.50,51.36,1659.95,2010.70,0.00,3519130319897.172852,3519130319899.182129,11,0,0.002809,0.003995,1917777,966996,0,0,5781,0,1,1 +1774030653.438647,0.25,4,3992.50,51.15,1667.84,2002.81,0.00,2.008747,0.000195,238,2,0.002505,0.003331,1917835,967065,0,0,5784,0,1,1 +1774030658.438529,18.20,4,3992.50,51.68,1642.75,2023.35,0.00,503.052609,3323.545720,41074,90925,0.057592,76.729398,1922050,975483,0,0,5786,0,1,1 +1774030663.438649,28.51,4,3992.50,52.33,1613.98,2048.66,0.00,3518352281687.104492,3518352278868.754883,11,0,0.047693,123.587320,1925552,988273,0,0,5789,0,1,1 +1774030668.439339,4.31,4,3992.50,51.48,1646.96,2015.40,0.00,509.048001,3463.168664,41841,91815,0.004978,4.812740,1925731,988901,0,0,5791,0,1,1 +1774030673.436901,14.80,4,3992.50,51.94,1632.13,2033.67,0.00,3520190635042.635254,3520190632086.426758,199,0,40.083114,0.024711,1930014,990442,0,0,5794,0,1,1 +1774030678.434669,0.70,4,3992.50,52.27,1619.21,2046.59,0.00,3520008845664.543457,0.000000,70,0,0.005215,0.005092,1930124,990550,0,0,5796,0,1,1 +1774030683.438797,1.80,4,3992.50,50.87,1674.28,1991.51,0.00,0.126848,0.000000,199,0,0.003457,0.006193,1930206,990655,0,0,5799,0,1,1 +1774030688.439332,0.25,4,3992.50,50.86,1674.65,1991.13,0.00,3518060258576.885254,0.000000,11,0,0.002517,0.003320,1930265,990723,0,0,5801,0,1,1 +1774030693.439252,8.18,4,3992.50,51.45,1649.68,2014.55,0.00,0.000000,0.000000,11,0,0.020851,26.444490,1931624,993697,0,0,5804,0,1,1 +1774030698.439038,4.32,4,3992.50,50.87,1672.07,1991.55,0.00,0.176961,0.000000,199,0,0.009197,13.626781,1932194,995260,0,0,5806,0,1,1 +1774030703.438856,0.50,4,3992.50,50.86,1672.42,1991.19,0.00,3518565406406.179199,0.000000,11,0,0.001190,0.003237,1932233,995326,0,0,5809,0,1,1 +1774030708.439236,0.35,4,3992.50,50.91,1670.21,1993.40,0.00,0.176940,0.000000,199,0,0.001157,0.003188,1932269,995388,0,0,5811,0,1,1 +1774030713.436340,0.45,4,3992.50,50.91,1670.21,1993.39,0.00,3520476136995.763672,0.000000,11,0,0.001145,0.003200,1932304,995451,0,0,5814,0,1,1 +1774030718.434438,0.45,4,3992.50,50.91,1670.22,1993.38,0.00,2.009553,0.000195,238,2,0.001145,0.003189,1932339,995513,0,0,5816,0,1,1 +1774030723.438895,0.40,4,3992.50,50.91,1670.23,1993.38,0.00,0.000000,0.000000,238,2,0.000915,0.002562,1932367,995564,0,0,5819,0,1,1 +1774030728.434612,0.45,4,3992.50,50.92,1670.00,1993.61,0.00,3521454051244.126953,3521454051246.137207,11,0,0.001171,0.003222,1932404,995628,0,0,5821,0,1,1 +1774030733.434551,0.45,4,3992.50,50.94,1669.26,1994.35,0.00,0.176955,0.000000,199,0,0.001207,0.003260,1932444,995695,0,0,5824,0,1,1 +1774030738.438950,0.30,4,3992.50,50.94,1669.26,1994.34,0.00,0.000000,0.000000,199,0,0.001231,0.003278,1932486,995763,0,0,5826,0,1,1 +1774030743.436158,0.40,4,3992.50,50.96,1668.53,1995.08,0.00,1.832859,0.000195,238,2,0.001301,0.003326,1932531,995836,0,0,5829,0,1,1 +1774030748.438702,0.35,4,3992.50,50.96,1668.53,1995.07,0.00,3516648285679.779785,0.021864,221,22,0.001152,0.003194,1932567,995899,0,0,5831,0,1,1 +1774030753.435331,0.35,4,3992.50,50.96,1668.54,1995.07,0.00,0.517243,3520810897340.434082,238,2,0.001145,0.003200,1932602,995962,0,0,5834,0,1,1 +1774030758.438396,0.45,4,3992.50,50.96,1668.54,1995.07,0.00,3516281695851.842773,3516281695853.850098,11,0,0.001156,0.003173,1932638,996023,0,0,5836,0,1,1 +1774030763.438531,21.53,4,3992.50,57.14,1432.54,2237.04,0.00,524.771977,3530.579107,41191,92665,28.443698,0.021824,1935688,997376,0,0,5839,0,1,1 +1774030768.434569,32.19,4,3992.50,57.21,1431.13,2239.93,0.00,3521227766574.317383,3521227763565.994629,70,0,119.064676,0.036924,1947937,999986,0,0,5841,0,1,1 +1774030773.438636,28.01,4,3992.50,57.24,1429.88,2241.14,0.00,1.440723,0.022052,221,22,119.293515,0.090554,1960568,1006919,0,0,5844,0,1,1 +1774030778.434508,28.44,4,3992.50,57.05,1437.49,2233.76,0.00,3521344109431.922363,3521344109433.343750,70,0,119.296765,0.111221,1973467,1015482,0,0,5846,0,1,1 +1774030783.437660,28.35,4,3992.50,57.08,1436.28,2234.75,0.00,524.405629,3528.611879,41191,92788,119.125199,0.110292,1986391,1023934,0,0,5849,0,1,1 +1774030788.439042,28.27,4,3992.50,57.00,1439.55,2231.48,0.00,3517465324247.407227,3517465321242.187500,11,0,119.368198,0.111877,1999305,1032528,0,0,5851,0,1,1 +1774030793.439389,28.61,4,3992.50,56.96,1440.80,2230.08,0.00,528.810361,3530.631372,41949,92841,119.592004,0.112262,2012263,1041113,0,0,5854,0,1,1 +1774030798.438406,28.66,4,3992.50,57.23,1430.42,2240.57,0.00,3519128877651.138672,3519128874648.468750,70,0,119.624394,0.111708,2025202,1049652,0,0,5856,0,1,1 +1774030803.435379,26.85,4,3992.50,57.12,1434.74,2236.33,0.00,1.442768,0.022084,221,22,119.274350,0.109577,2038181,1058066,0,0,5859,0,1,1 +1774030808.435330,5.12,4,3992.50,51.18,1667.28,2003.82,0.00,0.000000,0.000000,221,22,46.708825,0.065813,2044095,1062203,0,0,5861,0,1,1 +1774030813.440299,18.45,4,3992.50,51.91,1638.74,2032.33,0.00,3514943912805.522949,3514943912806.941406,70,0,22.101412,0.097779,2050426,1067237,0,0,5864,0,1,1 +1774030818.439323,9.29,4,3992.50,51.77,1644.33,2026.74,0.00,0.126978,0.000000,199,0,14.086666,0.063136,2054610,1070543,0,0,5866,0,1,1 +1774030823.439445,0.85,4,3992.50,51.64,1649.31,2021.73,0.00,0.000000,0.000000,199,0,0.003221,0.004727,2054685,1070636,0,0,5869,0,1,1 +1774030828.434558,0.60,4,3992.50,50.95,1676.14,1994.94,0.00,0.000000,0.000000,199,0,0.003249,0.005059,2054764,1070739,0,0,5871,0,1,1 +1774030833.434612,0.50,4,3992.50,50.96,1676.00,1995.06,0.00,1.314927,0.022070,221,22,0.003242,0.005051,2054842,1070842,0,0,5874,0,1,1 +1774030838.434624,0.45,4,3992.50,50.96,1675.79,1995.29,0.00,3518429120013.161621,3518429120014.631348,11,0,0.003851,0.004562,2054930,1070935,0,0,5876,0,1,1 +1774030843.437073,0.45,4,3992.50,50.96,1675.89,1995.18,0.00,0.000000,0.000000,11,0,0.004489,0.004391,2055012,1071019,0,0,5879,0,1,1 +1774030848.438875,0.30,4,3992.50,51.00,1674.44,1996.63,0.00,0.049982,0.000000,70,0,0.002733,0.003953,2055077,1071099,0,0,5881,0,1,1 +1774030853.439339,0.45,4,3992.50,51.00,1674.45,1996.62,0.00,1.441761,0.022068,221,22,0.002593,0.003442,2055142,1071175,0,0,5884,0,1,1 +1774030858.438875,0.45,4,3992.50,51.00,1674.46,1996.61,0.00,3518763893032.845703,3518763893034.265625,70,0,0.002746,0.003936,2055208,1071254,0,0,5886,0,1,1 +1774030863.438838,0.30,4,3992.50,51.00,1674.48,1996.60,0.00,0.126954,0.000000,199,0,0.002746,0.003964,2055274,1071335,0,0,5889,0,1,1 +1774030868.439450,0.40,4,3992.50,51.00,1674.50,1996.57,0.00,3518007302058.348145,0.000000,70,0,0.002808,0.003994,2055344,1071418,0,0,5891,0,1,1 +1774030873.439009,0.30,4,3992.50,50.99,1674.51,1996.56,0.00,524.954311,3533.055897,41216,94510,0.002796,0.004015,2055413,1071503,0,0,5894,0,1,1 +1774030878.439004,0.30,4,3992.50,50.99,1674.52,1996.55,0.00,0.000000,0.032422,41216,94549,0.002746,0.003942,2055479,1071582,0,0,5896,0,1,1 +1774030883.438798,10.54,4,3992.50,51.34,1658.57,2010.16,0.00,3518582284431.844238,3518582281423.900879,11,0,0.026176,41.667672,2057152,1076091,0,0,5899,0,1,1 +1774030888.436741,29.19,4,3992.50,51.31,1652.67,2008.95,0.00,2.009616,0.000195,238,2,0.041986,119.018158,2060240,1088398,0,0,5901,0,1,1 +1774030893.438608,11.49,4,3992.50,50.90,1664.75,1992.94,0.00,526.826636,3706.475073,41985,95693,0.014973,44.451539,2061176,1093102,0,0,5904,0,1,1 +1774030898.439375,6.82,4,3992.50,55.80,1480.83,2184.73,0.00,3517898017310.786621,3517898014132.395996,70,0,2.209502,0.007747,2061585,1093402,0,0,5906,0,1,1 +1774030903.439306,8.83,4,3992.50,50.68,1681.38,1984.23,0.00,0.000000,0.000000,70,0,37.859088,0.025287,2065595,1095056,0,0,5909,0,1,1 +1774030908.438849,0.55,4,3992.50,50.69,1680.91,1984.68,0.00,1.442026,0.022072,221,22,0.003219,0.005555,2065669,1095148,0,0,5911,0,1,1 +1774030913.439109,0.45,4,3992.50,50.69,1680.94,1984.67,0.00,0.000000,0.000000,221,22,0.002127,0.003727,2065723,1095222,0,0,5914,0,1,1 +1774030918.438743,11.13,4,3992.50,50.93,1668.89,1994.06,0.00,0.000000,0.000000,221,22,0.023831,40.068310,2067276,1099620,0,0,5916,0,1,1 +1774030923.434700,0.45,4,3992.50,50.87,1671.31,1991.65,0.00,0.000000,0.000000,221,22,0.001423,0.003820,2067320,1099695,0,0,5919,0,1,1 +1774030928.439010,0.40,4,3992.50,50.87,1671.32,1991.64,0.00,3515406730011.675781,3515406730012.967773,199,0,0.001169,0.003204,2067357,1099758,0,0,5921,0,1,1 +1774030933.438760,0.30,4,3992.50,50.72,1677.01,1985.95,0.00,548.606086,3774.331894,42124,96438,0.000928,0.002577,2067386,1099810,0,0,5924,0,1,1 +1774030938.438861,0.35,4,3992.50,50.72,1677.01,1985.95,0.00,3518366610901.049805,3518366607675.726562,11,0,0.001165,0.003196,2067423,1099873,0,0,5926,0,1,1 +1774030943.439225,0.30,4,3992.50,50.74,1676.27,1986.68,0.00,0.176940,0.000000,199,0,0.001132,0.003198,2067457,1099936,0,0,5929,0,1,1 +1774030948.439005,0.35,4,3992.50,50.76,1675.54,1987.42,0.00,548.602876,3778.524836,42124,96474,0.001144,0.003188,2067492,1099998,0,0,5931,0,1,1 +1774030953.438502,0.30,4,3992.50,50.76,1675.54,1987.41,0.00,3518791175343.598633,3518791175347.644043,41366,96456,0.001207,0.003260,2067532,1100065,0,0,5934,0,1,1 +1774030958.437055,0.35,4,3992.50,50.78,1674.80,1988.14,0.00,3519455807830.625000,3519455804596.041504,11,0,0.001183,0.003251,2067570,1100131,0,0,5936,0,1,1 +1774030963.438579,1.15,4,3992.50,50.79,1674.35,1988.61,0.00,544.528883,3777.263947,41366,96519,0.001319,0.003360,2067617,1100206,0,0,5939,0,1,1 +1774030968.439403,0.25,4,3992.50,50.79,1674.35,1988.61,0.00,3517857179121.861816,3517857175888.625000,70,0,0.000946,0.002579,2067647,1100258,0,0,5941,0,1,1 +1774030973.437880,0.30,4,3992.50,50.79,1674.35,1988.61,0.00,0.126992,0.000000,199,0,0.001145,0.003199,2067682,1100321,0,0,5944,0,1,1 +1774030978.439450,0.30,4,3992.50,50.79,1674.36,1988.60,0.00,548.406494,3777.276120,42124,96568,0.001144,0.003187,2067717,1100383,0,0,5946,0,1,1 +1774030983.439317,23.25,4,3992.50,57.25,1427.89,2241.66,0.00,3518531094707.106934,3518531091477.263672,70,0,36.656635,0.022221,2071621,1101745,0,0,5949,0,1,1 +1774030988.438471,32.03,4,3992.50,57.60,1415.05,2255.14,0.00,548.798499,3779.248970,42124,96683,118.985647,0.021246,2083808,1103183,0,0,5951,0,1,1 +1774030993.438321,27.91,4,3992.50,57.47,1420.27,2250.11,0.00,3518542649909.501465,3518542646679.500488,70,0,119.373175,0.028688,2096118,1105213,0,0,5954,0,1,1 +1774030998.438626,28.26,4,3992.50,57.12,1434.19,2236.18,0.00,0.126945,0.000000,199,0,118.767904,0.050327,2108436,1108940,0,0,5956,0,1,1 +1774031003.438909,28.33,4,3992.50,57.17,1432.25,2238.14,0.00,1.314867,0.022069,221,22,119.572316,0.062193,2120796,1113626,0,0,5959,0,1,1 +1774031008.438549,28.46,4,3992.50,57.27,1428.25,2242.15,0.00,3518690760108.153320,3518690760109.446289,199,0,119.388579,0.067491,2133177,1118698,0,0,5961,0,1,1 +1774031013.437667,28.47,4,3992.50,57.23,1429.58,2240.86,0.00,544.613914,3779.288552,41366,96729,119.014263,0.103674,2145760,1126653,0,0,5964,0,1,1 +1774031018.434753,28.51,4,3992.50,57.11,1434.46,2235.93,0.00,3520488611838.852539,3520488608602.863281,199,0,119.457768,0.084226,2158401,1133035,0,0,5966,0,1,1 +1774031023.436920,25.36,4,3992.50,57.25,1428.94,2241.55,0.00,3516913146130.555664,0.000000,11,0,119.131860,0.074425,2170892,1138712,0,0,5969,0,1,1 +1774031028.438469,1.15,4,3992.50,52.20,1626.71,2043.76,0.00,0.000000,0.000000,11,0,35.248076,0.026129,2174678,1140514,0,0,5971,0,1,1 +1774031033.439411,9.43,4,3992.50,51.36,1659.56,2010.87,0.00,548.809327,3778.432475,42139,97156,12.074631,0.057630,2178216,1143374,0,0,5974,0,1,1 +1774031038.436404,14.51,4,3992.50,51.01,1673.38,1997.04,0.00,3520554449201.562500,0.290116,41381,97691,20.122775,0.084221,2183796,1147812,0,0,5976,0,1,1 +1774031043.439105,5.22,4,3992.50,51.06,1671.44,1998.96,0.00,3516537332230.401367,3516537328997.565918,11,0,8.046121,0.038790,2186257,1149729,0,0,5979,0,1,1 +1774031048.434611,2.11,4,3992.50,51.03,1672.43,1997.93,0.00,545.342076,3783.114593,41381,97908,0.003441,0.005343,2186338,1149832,0,0,5981,0,1,1 +1774031053.435631,0.40,4,3992.50,51.06,1671.25,1999.15,0.00,3517719202450.672363,3517719199216.470703,11,0,0.002733,0.003963,2186403,1149913,0,0,5984,0,1,1 +1774031058.438941,0.30,4,3992.50,51.06,1671.27,1999.13,0.00,2.007460,0.000195,238,2,0.002757,0.003952,2186470,1149993,0,0,5986,0,1,1 +1774031063.438639,0.50,4,3992.50,51.06,1671.27,1999.12,0.00,3518650087915.290527,3518650087917.249023,70,0,0.002734,0.003964,2186535,1150074,0,0,5989,0,1,1 +1774031068.438615,1.10,4,3992.50,51.08,1670.55,1999.85,0.00,1.958798,0.000195,238,2,0.002734,0.003954,2186600,1150154,0,0,5991,0,1,1 +1774031073.439397,0.40,4,3992.50,51.08,1670.57,1999.83,0.00,546.818368,3779.581811,42139,98159,0.002630,0.003486,2186668,1150233,0,0,5994,0,1,1 +1774031078.438595,0.35,4,3992.50,51.08,1670.57,1999.82,0.00,3519001899050.076172,3519001895818.247070,70,0,0.002772,0.003955,2186736,1150313,0,0,5996,0,1,1 +1774031083.436260,0.35,4,3992.50,51.08,1670.60,1999.80,0.00,1.442568,0.022081,221,22,0.002735,0.003966,2186801,1150394,0,0,5999,0,1,1 +1774031088.435241,0.35,4,3992.50,51.07,1670.73,1999.66,0.00,3519154633598.946289,3519154633600.416504,11,0,0.002128,0.003718,2186855,1150467,0,0,6001,0,1,1 +1774031093.438679,0.70,4,3992.50,51.08,1670.58,1999.82,0.00,2.007409,0.000195,238,2,0.002814,0.004010,2186926,1150552,0,0,6004,0,1,1 +1774031098.438585,0.85,4,3992.50,51.10,1669.86,2000.54,0.00,3518503870455.697266,3518503870457.529785,199,0,0.002734,0.003954,2186991,1150632,0,0,6006,0,1,1 +1774031103.438739,0.40,4,3992.50,51.10,1669.63,2000.77,0.00,0.000000,0.000000,199,0,0.002734,0.003964,2187056,1150713,0,0,6009,0,1,1 +1774031108.438528,0.80,4,3992.50,51.10,1669.67,2000.73,0.00,1.831913,0.000195,238,2,0.002734,0.003954,2187121,1150793,0,0,6011,0,1,1 +1774031113.437758,0.40,4,3992.50,51.10,1669.68,2000.71,0.00,542.926640,3781.190836,41381,98589,0.003200,0.004253,2187184,1150864,0,0,6014,0,1,1 +1774031118.437553,11.33,4,3992.50,51.55,1649.57,2018.26,0.00,3518581758714.335938,3518581755478.269043,199,0,0.030553,46.674463,2189225,1155845,0,0,6016,0,1,1 +1774031123.438504,29.34,4,3992.50,53.71,1560.19,2102.82,0.00,3517767791743.325195,0.000000,11,0,0.052375,118.943129,2193268,1168087,0,0,6019,0,1,1 +1774031128.438979,10.59,4,3992.50,50.92,1669.22,1993.67,0.00,0.000000,0.000000,11,0,0.018615,39.459024,2194514,1172351,0,0,6021,0,1,1 +1774031133.438787,16.18,4,3992.50,52.54,1609.20,2057.01,0.00,1.491952,0.022071,221,22,40.066608,0.024382,2198913,1173848,0,0,6024,0,1,1 +1774031138.434583,0.95,4,3992.50,51.64,1644.47,2021.70,0.00,0.000000,0.000000,221,22,0.006169,0.007573,2199046,1173985,0,0,6026,0,1,1 +1774031143.434570,4.97,4,3992.50,51.93,1632.01,2033.19,0.00,0.516896,3518446680541.642090,238,2,0.018510,17.231764,2200086,1175943,0,0,6029,0,1,1 +1774031148.434630,6.27,4,3992.50,51.06,1665.03,1998.97,0.00,0.000000,0.000000,238,2,0.008523,22.838308,2200612,1178437,0,0,6031,0,1,1 +1774031153.438987,0.40,4,3992.50,51.02,1666.28,1997.72,0.00,3515373973168.656250,3515373973170.486816,199,0,0.001156,0.003195,2200648,1178500,0,0,6034,0,1,1 +1774031158.438563,0.30,4,3992.50,51.05,1665.30,1998.70,0.00,3518735570213.239746,0.000000,11,0,0.001145,0.003188,2200683,1178562,0,0,6036,0,1,1 +1774031163.438959,0.50,4,3992.50,51.06,1665.07,1998.92,0.00,0.000000,0.000000,11,0,0.001182,0.003229,2200721,1178627,0,0,6039,0,1,1 +1774031168.434536,0.45,4,3992.50,51.07,1664.59,1999.36,0.00,1.493216,0.022090,221,22,0.001171,0.003191,2200758,1178689,0,0,6041,0,1,1 +1774031173.434524,0.30,4,3992.50,51.07,1664.64,1999.36,0.00,3518445617263.221191,3518445617264.514160,199,0,0.001144,0.003198,2200793,1178752,0,0,6044,0,1,1 +1774031178.434536,0.30,4,3992.50,51.07,1664.64,1999.36,0.00,0.000000,0.000000,199,0,0.000941,0.002554,2200823,1178802,0,0,6046,0,1,1 +1774031183.434537,0.40,4,3992.50,51.07,1664.64,1999.36,0.00,1.314941,0.022070,221,22,0.001245,0.003291,2200866,1178871,0,0,6049,0,1,1 +1774031188.437912,0.35,4,3992.50,51.07,1664.39,1999.60,0.00,0.000000,0.000000,221,22,0.001269,0.003341,2200911,1178943,0,0,6051,0,1,1 +1774031193.439343,0.25,4,3992.50,51.07,1664.40,1999.60,0.00,3517430838151.577148,3517430838153.046387,11,0,0.001299,0.003323,2200956,1179016,0,0,6054,0,1,1 +1774031198.436698,0.45,4,3992.50,51.07,1664.40,1999.58,0.00,2.009852,0.000195,238,2,0.001158,0.003190,2200992,1179078,0,0,6056,0,1,1 +1774031203.438630,0.35,4,3992.50,51.07,1664.41,1999.58,0.00,3517078266815.612305,3517078266817.569824,70,0,0.001152,0.003205,2201028,1179142,0,0,6059,0,1,1 +1774031208.439402,0.40,4,3992.50,51.07,1664.41,1999.58,0.00,0.000000,0.000000,70,0,0.001157,0.003187,2201064,1179204,0,0,6061,0,1,1 +1774031213.439578,31.24,4,3992.50,57.13,1434.20,2236.82,0.00,1.958720,0.000195,238,2,69.500038,0.031361,2208333,1181241,0,0,6064,0,1,1 +1774031218.439309,29.69,4,3992.50,57.20,1431.71,2239.38,0.00,3518626351937.064453,3518626351939.023438,70,0,120.175165,0.033477,2220697,1183657,0,0,6066,0,1,1 +1774031223.438423,28.39,4,3992.50,57.21,1431.06,2239.96,0.00,568.703337,4027.200504,42256,100618,118.191212,0.035987,2232942,1186269,0,0,6069,0,1,1 +1774031228.438021,27.89,4,3992.50,57.33,1426.24,2244.78,0.00,3518719978985.931152,3518719975527.642090,199,0,120.178846,0.027482,2245369,1188199,0,0,6071,0,1,1 +1774031233.437220,27.82,4,3992.50,57.25,1429.64,2241.36,0.00,564.505135,4027.162018,41498,100641,119.196884,0.056216,2257740,1192425,0,0,6074,0,1,1 +1774031238.435961,28.11,4,3992.50,57.39,1423.80,2247.12,0.00,3519323683722.653809,3519323680259.855957,11,0,119.199160,0.039550,2269902,1195347,0,0,6076,0,1,1 +1774031243.439543,28.16,4,3992.50,57.25,1429.73,2241.28,0.00,0.176826,0.000000,199,0,119.684667,0.033021,2282189,1197720,0,0,6079,0,1,1 +1774031248.435076,28.21,4,3992.50,57.05,1437.25,2233.80,0.00,0.000000,0.000000,199,0,118.681785,0.051782,2294362,1201614,0,0,6081,0,1,1 +1774031253.438613,17.10,4,3992.50,57.13,1434.48,2236.63,0.00,3515950346965.441406,0.000000,11,0,120.092705,0.051936,2306787,1205471,0,0,6084,0,1,1 +1774031258.435716,1.05,4,3992.50,51.99,1635.64,2035.45,0.00,0.050029,0.000000,70,0,0.605990,0.005048,2306967,1205605,0,0,6086,0,1,1 +1774031263.435215,7.18,4,3992.50,51.82,1642.34,2028.71,0.00,0.000000,0.000000,70,0,4.038754,0.025507,2308313,1206678,0,0,6089,0,1,1 +1774031268.439029,23.59,4,3992.50,51.39,1658.80,2012.19,0.00,0.126856,0.000000,199,0,36.162155,0.147148,2318331,1214614,0,0,6091,0,1,1 +1774031273.434651,1.25,4,3992.50,51.21,1666.14,2004.84,0.00,3521521037958.311035,0.000000,70,0,0.009604,0.008803,2318526,1214800,0,0,6094,0,1,1 +1774031278.436085,20.08,4,3992.50,51.31,1656.76,2009.07,0.00,3517428591159.035156,0.000000,11,0,0.053977,83.100802,2322442,1223670,0,0,6096,0,1,1 +1774031283.438934,29.91,4,3992.50,51.49,1645.30,2016.13,0.00,564.434916,4194.860659,41513,102778,0.062263,120.500394,2327232,1236116,0,0,6099,0,1,1 +1774031288.438564,1.70,4,3992.50,51.16,1658.37,2003.22,0.00,0.010157,8.263599,41524,102851,0.005427,1.409569,2327418,1236419,0,0,6101,0,1,1 +1774031293.439334,13.95,4,3992.50,51.15,1663.04,2002.53,0.00,3517895445384.053223,3517895441743.866211,11,0,40.057953,0.029627,2331736,1238340,0,0,6104,0,1,1 +1774031298.435449,0.75,4,3992.50,51.15,1662.81,2002.73,0.00,1.493055,0.022087,221,22,0.004360,0.006613,2331834,1238456,0,0,6106,0,1,1 +1774031303.437117,0.50,4,3992.50,51.16,1662.59,2002.96,0.00,0.516722,3517263823643.858398,238,2,0.002833,0.004087,2331907,1238545,0,0,6109,0,1,1 +1774031308.435716,1.00,4,3992.50,51.31,1656.46,2009.08,0.00,3519423156273.536133,3519423156275.545410,11,0,0.002505,0.003322,2331965,1238613,0,0,6111,0,1,1 +1774031313.438546,1.45,4,3992.50,51.31,1656.48,2009.07,0.00,2.007653,0.000195,238,2,0.002732,0.003962,2332030,1238694,0,0,6114,0,1,1 +1774031318.438865,1.35,4,3992.50,51.36,1654.78,2010.78,0.00,582.627750,4233.222453,41689,103559,0.002733,0.003954,2332095,1238774,0,0,6116,0,1,1 +1774031323.434521,0.30,4,3992.50,51.36,1654.53,2011.02,0.00,3521496919355.766113,3521496915701.763672,238,2,0.002769,0.004007,2332163,1238858,0,0,6119,0,1,1 +1774031328.438999,0.35,4,3992.50,51.36,1654.55,2011.00,0.00,3515288958275.119629,0.021855,221,22,0.002731,0.003951,2332228,1238938,0,0,6121,0,1,1 +1774031333.436521,0.50,4,3992.50,51.23,1659.93,2005.61,0.00,0.000000,0.000000,221,22,0.002841,0.004042,2332300,1239025,0,0,6124,0,1,1 +1774031338.435106,0.40,4,3992.50,51.27,1658.26,2007.28,0.00,3519433426746.349609,3519433426747.819824,11,0,0.002734,0.003955,2332365,1239105,0,0,6126,0,1,1 +1774031343.434659,0.45,4,3992.50,51.29,1657.33,2008.22,0.00,0.000000,0.000000,11,0,0.002580,0.003371,2332428,1239177,0,0,6129,0,1,1 +1774031348.439403,0.30,4,3992.50,51.29,1657.34,2008.21,0.00,0.176785,0.000000,199,0,0.002744,0.003951,2332494,1239257,0,0,6131,0,1,1 +1774031353.438532,0.40,4,3992.50,51.29,1657.35,2008.20,0.00,588.660113,4234.529000,42447,103859,0.002780,0.003973,2332563,1239339,0,0,6134,0,1,1 +1774031358.438529,0.35,4,3992.50,51.31,1656.63,2008.92,0.00,3518439341172.394531,3518439337527.334961,11,0,0.002746,0.003954,2332629,1239419,0,0,6136,0,1,1 +1774031363.438530,0.40,4,3992.50,51.32,1656.39,2009.16,0.00,584.673630,4233.816360,41689,103886,0.002734,0.003964,2332694,1239500,0,0,6139,0,1,1 +1774031368.438432,11.23,4,3992.50,51.45,1648.68,2014.46,0.00,3518506099944.312012,3518506096295.046875,70,0,0.022470,40.062648,2334182,1243804,0,0,6141,0,1,1 +1774031373.434882,0.65,4,3992.50,51.08,1663.12,2000.06,0.00,0.127043,0.000000,199,0,0.003372,0.007298,2334290,1243949,0,0,6144,0,1,1 +1774031378.438935,0.40,4,3992.50,50.93,1669.31,1993.86,0.00,3515587180714.365234,0.000000,11,0,0.001143,0.003173,2334325,1244010,0,0,6146,0,1,1 +1774031383.434594,0.45,4,3992.50,50.96,1668.11,1995.06,0.00,589.246217,4271.698796,42447,104248,0.000924,0.002587,2334354,1244063,0,0,6149,0,1,1 +1774031388.438648,0.35,4,3992.50,50.93,1669.22,1993.95,0.00,3515586932126.896484,3515586928450.621582,11,0,0.001156,0.003185,2334390,1244125,0,0,6151,0,1,1 +1774031393.439175,0.40,4,3992.50,50.96,1668.00,1995.18,0.00,584.612092,4267.531496,41689,104231,0.001157,0.003198,2334426,1244188,0,0,6154,0,1,1 +1774031398.438688,0.25,4,3992.50,50.96,1668.01,1995.16,0.00,3518780199287.233887,3518780195603.517090,70,0,0.001145,0.003188,2334461,1244250,0,0,6156,0,1,1 +1774031403.437445,0.60,4,3992.50,50.73,1677.00,1986.16,0.00,584.769017,4275.138137,41689,104308,0.001182,0.003230,2334499,1244315,0,0,6159,0,1,1 +1774031408.434520,0.95,4,3992.50,50.79,1674.64,1988.51,0.00,3520496312092.096680,3520496308399.064941,221,22,0.000992,0.002618,2334533,1244369,0,0,6161,0,1,1 +1774031413.434610,0.45,4,3992.50,50.72,1677.28,1985.89,0.00,3518374201836.501465,3518374201837.971191,11,0,0.001228,0.003299,2334575,1244439,0,0,6164,0,1,1 +1774031418.439336,0.65,4,3992.50,50.76,1675.62,1987.55,0.00,1.490486,0.022049,221,22,0.001299,0.003311,2334620,1244511,0,0,6166,0,1,1 +1774031423.434532,0.60,4,3992.50,50.76,1675.62,1987.55,0.00,0.517392,3521821280463.535156,238,2,0.001146,0.003201,2334655,1244574,0,0,6169,0,1,1 +1774031428.439333,0.65,4,3992.50,50.73,1676.92,1986.25,0.00,582.120769,4270.092358,41700,104405,0.001655,0.004258,2334704,1244657,0,0,6171,0,1,1 +1774031433.438278,0.55,4,3992.50,50.76,1675.94,1987.23,0.00,0.000000,0.003126,41700,104409,0.001412,0.003664,2334744,1244731,0,0,6174,0,1,1 +1774031438.436500,28.59,4,3992.50,57.47,1420.09,2250.27,0.00,4.062284,0.114396,42458,104535,48.692458,0.029210,2339908,1246420,0,0,6176,0,1,1 +1774031443.439023,30.83,4,3992.50,57.28,1427.62,2242.77,0.00,3516662521038.554688,3516662517352.844727,238,2,119.520488,0.054384,2352297,1250380,0,0,6179,0,1,1 +1774031448.438776,27.78,4,3992.50,57.37,1424.02,2246.33,0.00,582.708660,4274.515625,41700,104540,119.406449,0.114122,2365106,1259101,0,0,6181,0,1,1 +1774031453.434550,28.25,4,3992.50,57.37,1424.25,2246.09,0.00,4.064274,0.025314,42458,104578,119.099422,0.112986,2377875,1267734,0,0,6184,0,1,1 +1774031458.439296,27.80,4,3992.50,57.36,1424.34,2245.95,0.00,3515100430315.055664,3515100426632.920898,70,0,120.086662,0.108046,2390831,1276061,0,0,6186,0,1,1 +1774031463.435365,27.74,4,3992.50,57.28,1427.66,2242.66,0.00,3521206050104.387695,0.000000,11,0,118.291082,0.109665,2403591,1284509,0,0,6189,0,1,1 +1774031468.438126,27.75,4,3992.50,57.32,1426.21,2244.12,0.00,2.007680,0.000195,238,2,120.134554,0.111751,2416511,1293086,0,0,6191,0,1,1 +1774031473.437098,27.82,4,3992.50,57.47,1420.12,2250.23,0.00,586.861261,4275.446930,42458,104686,118.822038,0.109352,2429237,1301480,0,0,6194,0,1,1 +1774031478.434524,22.08,4,3992.50,57.36,1424.63,2245.79,0.00,3520249353103.793457,3520249349416.076172,11,0,119.660221,0.113851,2442062,1310201,0,0,6196,0,1,1 +1774031483.434625,1.15,4,3992.50,51.94,1636.79,2033.60,0.00,584.841652,4274.601896,41713,104694,22.039336,0.023679,2444515,1311878,0,0,6199,0,1,1 +1774031488.439065,12.71,4,3992.50,51.80,1642.17,2028.18,0.00,3515315487218.893555,3515315483532.282715,70,0,12.077247,0.063512,2448170,1314716,0,0,6201,0,1,1 +1774031493.438537,17.37,4,3992.50,51.44,1656.39,2013.94,0.00,1.958996,0.000195,238,2,26.139272,0.104171,2455524,1320537,0,0,6204,0,1,1 +1774031498.438625,2.11,4,3992.50,51.12,1669.06,2001.28,0.00,3518375500796.958008,3518375500798.966309,11,0,2.016594,0.012872,2456174,1321059,0,0,6206,0,1,1 +1774031503.434522,0.55,4,3992.50,50.88,1678.13,1992.19,0.00,0.000000,0.000000,11,0,0.003463,0.005348,2456257,1321163,0,0,6209,0,1,1 +1774031508.435467,0.35,4,3992.50,50.94,1675.94,1994.39,0.00,0.176920,0.000000,199,0,0.002746,0.003954,2456323,1321243,0,0,6211,0,1,1 +1774031513.438676,16.18,4,3992.50,51.58,1646.95,2019.50,0.00,3516180537575.542969,0.000000,70,0,0.035026,66.293934,2458729,1328238,0,0,6214,0,1,1 +1774031518.436429,28.71,4,3992.50,51.42,1648.01,2013.39,0.00,1.442543,0.022080,221,22,0.030447,119.188437,2460887,1340733,0,0,6216,0,1,1 +1774031523.438449,5.67,4,3992.50,51.51,1645.13,2016.72,0.00,583.140753,4446.583173,41721,107096,0.009736,19.629438,2461359,1342938,0,0,6219,0,1,1 +1774031528.434562,16.88,4,3992.50,51.25,1659.12,2006.72,0.00,3521174595487.047363,3521174591619.037109,221,22,40.099865,0.033262,2465791,1345075,0,0,6221,0,1,1 +1774031533.438039,0.70,4,3992.50,51.08,1666.12,1999.71,0.00,3515992128886.789551,3515992128888.081543,199,0,0.006220,0.007835,2465937,1345239,0,0,6224,0,1,1 +1774031538.439132,0.65,4,3992.50,51.09,1665.42,2000.41,0.00,604.282601,4480.365642,41827,107524,0.004349,0.008733,2466045,1345392,0,0,6226,0,1,1 +1774031543.439631,0.45,4,3992.50,51.09,1665.45,2000.40,0.00,0.000000,0.016795,41827,107537,0.003878,0.007144,2466145,1345534,0,0,6229,0,1,1 +1774031548.439111,0.35,4,3992.50,51.09,1665.45,2000.38,0.00,3518803108910.615234,3518803105031.432617,238,2,0.003878,0.007111,2466245,1345673,0,0,6231,0,1,1 +1774031553.438853,0.60,4,3992.50,51.09,1665.46,2000.36,0.00,3518619070819.214844,3518619070821.047363,199,0,0.003878,0.007108,2466345,1345812,0,0,6234,0,1,1 +1774031558.439110,0.35,4,3992.50,51.10,1665.24,2000.59,0.00,3518255999700.506348,0.000000,70,0,0.002988,0.004631,2466419,1345907,0,0,6236,0,1,1 +1774031563.435884,0.45,4,3992.50,51.10,1665.02,2000.83,0.00,0.127035,0.000000,199,0,0.003868,0.007124,2466518,1346047,0,0,6239,0,1,1 +1774031568.438843,0.40,4,3992.50,51.10,1665.02,2000.82,0.00,608.115676,4478.922028,42585,107734,0.003977,0.007202,2466625,1346194,0,0,6241,0,1,1 +1774031573.438743,0.45,4,3992.50,51.10,1665.04,2000.80,0.00,3518507241247.269043,0.013965,41827,107751,0.003878,0.007132,2466725,1346335,0,0,6244,0,1,1 +1774031578.439032,0.40,4,3992.50,51.10,1665.05,2000.79,0.00,0.000000,0.006640,41827,107760,0.003420,0.005855,2466811,1346451,0,0,6246,0,1,1 +1774031583.439084,0.40,4,3992.50,51.06,1666.56,1999.28,0.00,3518399969533.330566,3518399965656.370117,11,0,0.003953,0.007172,2466916,1346595,0,0,6249,0,1,1 +1774031588.438891,0.50,4,3992.50,51.09,1665.35,2000.48,0.00,2.008867,0.000195,238,2,0.003878,0.007123,2467016,1346735,0,0,6251,0,1,1 +1774031593.437845,6.02,4,3992.50,51.52,1647.49,2017.20,0.00,0.000000,0.000000,238,2,0.017764,20.642849,2468074,1349113,0,0,6254,0,1,1 +1774031598.434585,5.92,4,3992.50,51.05,1664.52,1998.68,0.00,3520733374856.538574,3520733374858.548828,11,0,0.008569,19.448021,2468580,1351268,0,0,6256,0,1,1 +1774031603.434843,0.45,4,3992.50,51.03,1665.14,1998.06,0.00,0.176944,0.000000,199,0,0.002060,0.005745,2468643,1351380,0,0,6259,0,1,1 +1774031608.439246,0.40,4,3992.50,51.05,1664.67,1998.54,0.00,0.000000,0.000000,199,0,0.002287,0.006350,2468713,1351502,0,0,6261,0,1,1 +1774031613.439003,0.50,4,3992.50,51.05,1664.68,1998.54,0.00,608.505184,4516.156189,42585,108248,0.002289,0.006366,2468783,1351625,0,0,6264,0,1,1 +1774031618.438830,0.40,4,3992.50,51.06,1663.94,1999.27,0.00,0.000000,0.001563,42585,108250,0.002289,0.006356,2468853,1351747,0,0,6266,0,1,1 +1774031623.434536,0.50,4,3992.50,51.08,1663.21,2000.00,0.00,3521461182676.154785,3521461182680.204590,41827,108230,0.001833,0.005103,2468909,1351846,0,0,6269,0,1,1 +1774031628.439134,0.55,4,3992.50,51.09,1662.99,2000.22,0.00,3515204895824.144531,3515204891916.406250,11,0,0.002320,0.006389,2468982,1351971,0,0,6271,0,1,1 +1774031633.434520,0.60,4,3992.50,51.00,1666.59,1996.62,0.00,609.214789,4526.137954,42585,108293,0.002341,0.006434,2469056,1352098,0,0,6274,0,1,1 +1774031638.434538,0.40,4,3992.50,51.01,1666.10,1997.09,0.00,0.000000,0.080468,42585,108351,0.002395,0.006474,2469134,1352228,0,0,6276,0,1,1 +1774031643.438204,0.50,4,3992.50,51.01,1666.11,1997.09,0.00,0.000000,0.002342,42585,108354,0.001954,0.005196,2469198,1352335,0,0,6279,0,1,1 +1774031648.438760,0.60,4,3992.50,51.01,1666.11,1997.09,0.00,0.000000,0.003125,42585,108358,0.002289,0.006355,2469268,1352457,0,0,6281,0,1,1 +1774031653.439073,0.40,4,3992.50,51.01,1666.11,1997.09,0.00,3518217109317.324219,3518217105402.705078,221,22,0.002289,0.006366,2469338,1352580,0,0,6284,0,1,1 +1774031658.438020,0.55,4,3992.50,51.01,1666.13,1997.08,0.00,3519177909259.830566,3519177909261.300781,11,0,0.002289,0.006357,2469408,1352702,0,0,6286,0,1,1 +1774031663.434500,22.95,4,3992.50,57.26,1426.67,2241.76,0.00,0.000000,0.000000,11,0,19.646436,0.021462,2471586,1353982,0,0,6289,0,1,1 +1774031668.438112,32.18,4,3992.50,57.29,1427.04,2243.05,0.00,608.213241,4518.900165,42585,108472,120.081006,0.043030,2483866,1356944,0,0,6291,0,1,1 +1774031673.439188,28.66,4,3992.50,57.50,1418.91,2251.22,0.00,3517679831404.353516,3517679827491.634277,70,0,120.541619,0.029126,2496236,1358981,0,0,6294,0,1,1 +1774031678.435343,27.97,4,3992.50,57.26,1428.29,2241.84,0.00,1.443004,0.022087,221,22,119.858530,0.026869,2508490,1360798,0,0,6296,0,1,1 +1774031683.434845,28.18,4,3992.50,57.27,1427.76,2242.38,0.00,3518787537961.649414,3518787537962.942383,199,0,120.180894,0.026394,2520848,1362574,0,0,6299,0,1,1 +1774031688.438376,27.82,4,3992.50,57.28,1427.67,2242.48,0.00,1.314013,0.022055,221,22,120.088934,0.039045,2533312,1365354,0,0,6301,0,1,1 +1774031693.438837,28.85,4,3992.50,57.24,1429.08,2241.05,0.00,0.000000,0.000000,221,22,118.754525,0.029996,2545538,1367588,0,0,6304,0,1,1 +1774031698.438996,28.05,4,3992.50,57.21,1430.02,2240.06,0.00,0.516878,3518325600558.477539,238,2,119.559012,0.035735,2557637,1370198,0,0,6306,0,1,1 +1774031703.439069,27.66,4,3992.50,57.46,1420.63,2249.57,0.00,602.574869,4522.336519,41828,108577,119.968702,0.025684,2570135,1371918,0,0,6309,0,1,1 +1774031708.438769,1.50,4,3992.50,52.09,1630.84,2039.34,0.00,4.225156,0.166026,42602,108668,46.672150,0.014881,2575015,1372776,0,0,6311,0,1,1 +1774031713.439130,7.99,4,3992.50,51.25,1663.72,2006.48,0.00,0.000000,0.159949,42602,108948,10.060037,0.048035,2577940,1375063,0,0,6314,0,1,1 +1774031718.438598,17.95,4,3992.50,52.00,1634.24,2035.97,0.00,3518811509886.796875,3518811505970.459961,238,2,26.148992,0.110570,2585342,1380884,0,0,6316,0,1,1 +1774031723.438995,4.62,4,3992.50,51.07,1670.67,1999.54,0.00,3518158175312.728027,3518158175314.736328,11,0,4.034447,0.026835,2586633,1381938,0,0,6319,0,1,1 +1774031728.437019,1.10,4,3992.50,51.08,1670.43,1999.73,0.00,0.050020,0.000000,70,0,0.005098,0.009585,2586763,1382122,0,0,6321,0,1,1 +1774031733.438803,0.60,4,3992.50,51.08,1670.24,1999.97,0.00,604.490907,4521.965428,41844,109870,0.004385,0.008216,2586876,1382285,0,0,6324,0,1,1 +1774031738.434526,0.55,4,3992.50,51.08,1670.28,1999.93,0.00,3521449079027.083496,3521449075103.436523,221,22,0.006103,0.008939,2586997,1382429,0,0,6326,0,1,1 +1774031743.438440,0.55,4,3992.50,50.89,1677.67,1992.54,0.00,602.792861,4520.384396,41844,110132,0.004710,0.006899,2587112,1382571,0,0,6329,0,1,1 +1774031748.438743,0.45,4,3992.50,50.92,1676.70,1993.51,0.00,3518223643659.536133,3518223639740.586426,11,0,0.004800,0.007792,2587214,1382714,0,0,6331,0,1,1 +1774031753.438616,0.40,4,3992.50,50.92,1676.71,1993.48,0.00,608.832883,4524.200530,42602,110253,0.003949,0.007203,2587320,1382860,0,0,6334,0,1,1 +1774031758.435163,0.50,4,3992.50,50.92,1676.74,1993.47,0.00,3520868787859.959961,3520868783941.985840,11,0,0.003906,0.007146,2587422,1383001,0,0,6336,0,1,1 +1774031763.438679,0.40,4,3992.50,50.92,1676.51,1993.70,0.00,0.176829,0.000000,199,0,0.003418,0.005874,2587508,1383119,0,0,6339,0,1,1 +1774031768.438901,0.45,4,3992.50,50.92,1676.52,1993.68,0.00,0.000000,0.000000,199,0,0.003890,0.007122,2587609,1383259,0,0,6341,0,1,1 +1774031773.439337,0.40,4,3992.50,50.92,1676.54,1993.67,0.00,608.587392,4523.850383,42602,110395,0.004002,0.007222,2587717,1383407,0,0,6344,0,1,1 +1774031778.437294,0.40,4,3992.50,50.92,1676.56,1993.65,0.00,3519874806003.056152,0.011626,41844,110410,0.003892,0.006992,2587818,1383546,0,0,6346,0,1,1 +1774031783.437754,11.40,4,3992.50,51.66,1645.10,2022.52,0.00,4.060467,25.669615,42602,110624,0.026469,47.871143,2589589,1388716,0,0,6349,0,1,1 +1774031788.438919,28.70,4,3992.50,51.09,1661.05,2000.16,0.00,3517617428941.623047,3517617424999.422363,238,2,0.036214,118.143595,2592167,1401022,0,0,6351,0,1,1 +1774031793.438913,9.98,4,3992.50,50.85,1670.24,1991.09,0.00,3518441093943.847656,3518441093945.855957,11,0,0.014139,39.064239,2592978,1405215,0,0,6354,0,1,1 +1774031798.438905,0.80,4,3992.50,50.88,1669.24,1992.07,0.00,1.491897,0.022070,221,22,0.004739,0.004022,2593060,1405298,0,0,6356,0,1,1 +1774031803.434589,17.73,4,3992.50,51.18,1661.41,2003.84,0.00,3521476834293.693359,3521476834294.987793,199,0,40.099580,0.028963,2597381,1406770,0,0,6359,0,1,1 +1774031808.438805,0.40,4,3992.50,50.99,1668.72,1996.54,0.00,627.847731,4725.544597,42756,111869,0.003875,0.007116,2597481,1406910,0,0,6361,0,1,1 +1774031813.434607,0.45,4,3992.50,51.01,1668.02,1997.28,0.00,3521393879719.318848,3521393875614.847168,70,0,0.003423,0.005870,2597567,1407027,0,0,6364,0,1,1 +1774031818.434600,0.55,4,3992.50,51.00,1668.50,1996.81,0.00,628.504977,4729.635394,42756,111957,0.003083,0.006739,2597652,1407158,0,0,6366,0,1,1 +1774031823.438756,11.40,4,3992.50,51.17,1659.27,2003.55,0.00,3515515142925.769531,34.046798,41998,112219,0.024865,40.033285,2599210,1411540,0,0,6369,0,1,1 +1774031828.434672,0.45,4,3992.50,51.20,1658.18,2004.64,0.00,3521312938472.603516,3521312934329.959961,70,0,0.002060,0.005713,2599273,1411649,0,0,6371,0,1,1 +1774031833.434636,0.45,4,3992.50,51.21,1658.02,2004.80,0.00,624.447739,4763.858573,41998,112254,0.002297,0.006374,2599344,1411773,0,0,6374,0,1,1 +1774031838.434637,0.40,4,3992.50,51.09,1662.46,2000.35,0.00,3518437179409.013672,3518437175268.212891,221,22,0.002289,0.006356,2599414,1411895,0,0,6376,0,1,1 +1774031843.439132,1.10,4,3992.50,51.06,1663.67,1999.15,0.00,0.516430,3515276752214.391113,238,2,0.002287,0.006360,2599484,1412018,0,0,6379,0,1,1 +1774031848.438895,0.35,4,3992.50,51.06,1663.63,1999.19,0.00,3518603597311.821777,3518603597313.830566,11,0,0.001831,0.005089,2599540,1412116,0,0,6381,0,1,1 +1774031853.438525,0.40,4,3992.50,51.10,1662.32,2000.50,0.00,624.539467,4770.206232,41998,112304,0.002314,0.006398,2599612,1412241,0,0,6384,0,1,1 +1774031858.438648,0.45,4,3992.50,51.10,1662.32,2000.49,0.00,3518350784897.366699,3518350780752.108398,11,0,0.002339,0.006418,2599686,1412367,0,0,6386,0,1,1 +1774031863.439443,0.45,4,3992.50,51.09,1662.58,2000.24,0.00,0.000000,0.000000,11,0,0.002314,0.006396,2599758,1412492,0,0,6389,0,1,1 +1774031868.434617,0.40,4,3992.50,51.09,1662.58,2000.24,0.00,1.493336,0.022092,221,22,0.002039,0.005282,2599828,1412604,0,0,6391,0,1,1 +1774031873.434613,0.45,4,3992.50,51.09,1662.58,2000.24,0.00,0.000000,0.000000,221,22,0.002289,0.006366,2599898,1412727,0,0,6394,0,1,1 +1774031878.439104,0.45,4,3992.50,51.09,1662.34,2000.48,0.00,3515279672893.798828,3515279672895.090332,199,0,0.002295,0.006358,2599969,1412850,0,0,6396,0,1,1 +1774031883.434580,0.75,4,3992.50,50.72,1677.15,1985.65,0.00,3521623222116.446289,0.000000,70,0,0.003688,0.007075,2600063,1412989,0,0,6399,0,1,1 +1774031888.439059,43.09,4,3992.50,57.72,1410.23,2259.89,0.00,627.941619,4765.829027,42756,112517,101.254026,0.033608,2610611,1415164,0,0,6401,0,1,1 +1774031893.434514,28.15,4,3992.50,57.19,1430.77,2239.26,0.00,3521638575637.998047,3521638571490.675293,238,2,120.092358,0.070371,2623095,1420361,0,0,6404,0,1,1 +1774031898.439204,27.68,4,3992.50,57.31,1426.21,2243.87,0.00,3515140058827.232910,3515140058829.062988,199,0,118.276606,0.091117,2635515,1427293,0,0,6406,0,1,1 +1774031903.439255,28.49,4,3992.50,57.18,1431.34,2238.77,0.00,628.370778,4770.138262,42756,112573,119.992994,0.100767,2648199,1434900,0,0,6409,0,1,1 +1774031908.435116,27.95,4,3992.50,57.27,1427.85,2242.18,0.00,3521351563320.888184,3521351559175.824707,11,0,119.097604,0.112810,2661052,1443369,0,0,6411,0,1,1 +1774031913.438610,28.05,4,3992.50,57.35,1424.79,2245.32,0.00,0.000000,0.000000,11,0,119.316522,0.111671,2673869,1451837,0,0,6414,0,1,1 +1774031918.438396,27.88,4,3992.50,57.22,1429.81,2240.28,0.00,624.520096,4770.488570,41998,112601,119.803057,0.111075,2686688,1460440,0,0,6416,0,1,1 +1774031923.438297,28.26,4,3992.50,57.31,1426.45,2243.65,0.00,3518506346204.885254,3518506342058.836426,199,0,118.600951,0.113179,2699462,1469126,0,0,6419,0,1,1 +1774031928.438974,10.22,4,3992.50,52.99,1595.29,2074.82,0.00,3517961183704.964844,0.000000,11,0,89.136473,0.084751,2709102,1475568,0,0,6421,0,1,1 +1774031933.438832,1.35,4,3992.50,52.11,1629.88,2040.27,0.00,628.685187,4770.643108,42771,112684,0.008173,0.009211,2709276,1475762,0,0,6424,0,1,1 +1774031938.436399,13.62,4,3992.50,52.25,1624.64,2045.52,0.00,3520149992147.551758,3520149988003.695312,11,0,16.105537,0.075359,2713778,1479295,0,0,6426,0,1,1 +1774031943.436425,14.80,4,3992.50,51.59,1650.30,2019.86,0.00,624.603284,4770.982723,42013,113713,24.137991,0.104743,2720705,1484793,0,0,6429,0,1,1 +1774031948.434580,0.35,4,3992.50,51.24,1664.16,2006.00,0.00,3519736064076.797852,3519736059928.815918,70,0,0.003434,0.005883,2720792,1484911,0,0,6431,0,1,1 +1774031953.438584,0.45,4,3992.50,51.15,1667.52,2002.64,0.00,1.957222,0.000195,238,2,0.003875,0.007127,2720892,1485052,0,0,6434,0,1,1 +1774031958.435057,0.50,4,3992.50,50.99,1673.73,1996.44,0.00,3520920754416.126953,3520920754418.086914,70,0,0.003881,0.007127,2720992,1485192,0,0,6436,0,1,1 +1774031963.435736,0.45,4,3992.50,50.99,1673.74,1996.43,0.00,628.532015,4771.117020,42771,114130,0.003877,0.007119,2721092,1485332,0,0,6439,0,1,1 +1774031968.439285,0.35,4,3992.50,50.96,1675.00,1995.16,0.00,3515941388429.237305,3515941384289.078613,11,0,0.003426,0.005872,2721179,1485450,0,0,6441,0,1,1 +1774031973.437476,0.45,4,3992.50,50.97,1674.77,1995.40,0.00,0.000000,0.000000,11,0,0.003917,0.007166,2721282,1485593,0,0,6444,0,1,1 +1774031978.438825,0.50,4,3992.50,50.96,1674.79,1995.37,0.00,2.008247,0.000195,238,2,0.003978,0.007245,2721390,1485741,0,0,6446,0,1,1 +1774031983.434614,0.45,4,3992.50,50.98,1674.07,1996.09,0.00,627.186829,4775.973932,42771,114258,0.003881,0.007113,2721490,1485880,0,0,6449,0,1,1 +1774031988.439093,0.35,4,3992.50,50.98,1674.08,1996.08,0.00,3515288158283.846680,3515288154144.270508,11,0,0.003504,0.005915,2721582,1486001,0,0,6451,0,1,1 +1774031993.439145,0.40,4,3992.50,50.98,1674.11,1996.06,0.00,0.000000,0.000000,11,0,0.003878,0.007132,2721682,1486142,0,0,6454,0,1,1 +1774031998.434585,0.55,4,3992.50,50.98,1674.11,1996.05,0.00,0.050046,0.000000,70,0,0.003882,0.007129,2721782,1486282,0,0,6456,0,1,1 +1774032003.439429,0.50,4,3992.50,50.98,1674.13,1996.03,0.00,3515032217561.185547,0.000000,11,0,0.003887,0.007125,2721883,1486423,0,0,6459,0,1,1 +1774032008.434542,0.70,4,3992.50,51.00,1673.49,1996.68,0.00,2.010754,0.000196,238,2,0.003424,0.005861,2721969,1486539,0,0,6461,0,1,1 +1774032013.438875,0.40,4,3992.50,50.97,1674.63,1995.53,0.00,0.000000,0.000000,238,2,0.003895,0.007134,2722071,1486681,0,0,6464,0,1,1 +1774032018.434807,0.45,4,3992.50,50.98,1674.15,1996.02,0.00,3521302055017.644043,3521302055019.654297,11,0,0.003423,0.005860,2722157,1486797,0,0,6466,0,1,1 +1774032023.437088,0.45,4,3992.50,51.01,1672.93,1997.23,0.00,628.395523,4770.075915,42782,114570,0.003864,0.007129,2722256,1486938,0,0,6469,0,1,1 +1774032028.439435,0.50,4,3992.50,50.81,1680.78,1989.39,0.00,3516786063833.761230,3516786059692.135254,11,0,0.004388,0.008205,2722370,1487100,0,0,6471,0,1,1 +1774032033.435011,0.55,4,3992.50,50.83,1679.89,1990.28,0.00,0.000000,0.000000,11,0,0.004378,0.008226,2722482,1487263,0,0,6474,0,1,1 +1774032038.434524,0.60,4,3992.50,50.77,1682.29,1987.88,0.00,0.000000,0.000000,11,0,0.004369,0.007468,2722592,1487407,0,0,6476,0,1,1 +1774032043.436058,19.26,4,3992.50,51.73,1639.92,2025.34,0.00,0.049985,0.000000,70,0,0.044084,80.297971,2725631,1495940,0,0,6479,0,1,1 +1774032048.438787,28.46,4,3992.50,51.46,1646.63,2014.80,0.00,3516517688867.236816,0.000000,11,0,0.037659,120.106436,2728371,1508385,0,0,6481,0,1,1 +1774032053.438906,2.56,4,3992.50,51.16,1658.64,2003.04,0.00,0.049999,0.000000,70,0,0.008165,4.616792,2728679,1509086,0,0,6484,0,1,1 +1774032058.434512,15.67,4,3992.50,55.64,1487.09,2178.38,0.00,0.000000,0.000000,70,0,40.093087,0.019767,2732840,1510346,0,0,6486,0,1,1 +1774032063.438397,1.05,4,3992.50,51.56,1646.84,2018.63,0.00,643.807860,4973.675146,42179,116041,0.008333,0.010937,2733020,1510569,0,0,6489,0,1,1 +1774032068.434539,11.29,4,3992.50,51.53,1645.96,2017.34,0.00,0.000000,34.103857,42179,116284,0.021019,40.095612,2734483,1514909,0,0,6491,0,1,1 +1774032073.439412,0.50,4,3992.50,51.50,1647.02,2016.29,0.00,4.056886,0.095025,42937,116377,0.002287,0.006360,2734553,1515032,0,0,6494,0,1,1 +1774032078.439011,0.35,4,3992.50,51.35,1652.98,2010.32,0.00,3518719199739.550293,3518719199743.597656,42179,116358,0.002302,0.006357,2734624,1515154,0,0,6496,0,1,1 +1774032083.434526,0.40,4,3992.50,51.30,1654.77,2008.54,0.00,3521596443677.573730,3521596439306.311523,11,0,0.001858,0.005134,2734682,1515255,0,0,6499,0,1,1 +1774032088.438132,0.45,4,3992.50,51.30,1654.85,2008.45,0.00,0.049964,0.000000,70,0,0.002337,0.006414,2734756,1515381,0,0,6501,0,1,1 +1774032093.438998,0.50,4,3992.50,51.30,1654.62,2008.69,0.00,644.196613,5010.922889,42179,116371,0.002288,0.006365,2734826,1515504,0,0,6504,0,1,1 +1774032098.439474,0.45,4,3992.50,51.31,1654.38,2008.93,0.00,0.000000,6.006458,42179,116409,0.002289,0.006355,2734896,1515626,0,0,6506,0,1,1 +1774032103.439284,0.40,4,3992.50,51.30,1654.62,2008.68,0.00,3518571417108.404785,3518571412734.798828,11,0,0.002297,0.006362,2734967,1515749,0,0,6509,0,1,1 +1774032108.438852,0.40,4,3992.50,51.30,1654.62,2008.68,0.00,1.492023,0.022072,221,22,0.001957,0.005257,2735033,1515858,0,0,6511,0,1,1 +1774032113.439417,0.45,4,3992.50,51.30,1654.63,2008.68,0.00,646.853943,5017.250620,42937,116446,0.002469,0.006522,2735115,1515993,0,0,6514,0,1,1 +1774032118.438442,0.45,4,3992.50,51.29,1655.25,2008.06,0.00,3519123328835.438965,0.068373,42179,116487,0.002289,0.006357,2735185,1516115,0,0,6516,0,1,1 +1774032123.438064,0.40,4,3992.50,51.10,1662.64,2000.66,0.00,3518703348181.721191,3518703343807.663574,199,0,0.002289,0.006366,2735255,1516238,0,0,6519,0,1,1 +1774032128.438616,1.46,4,3992.50,51.10,1662.71,2000.60,0.00,3518048904235.217773,0.000000,11,0,0.003226,0.005804,2735335,1516353,0,0,6521,0,1,1 +1774032133.439030,37.62,4,3992.50,57.29,1426.99,2243.00,0.00,0.049996,0.000000,70,0,84.715864,0.039353,2744174,1518911,0,0,6524,0,1,1 +1774032138.436713,28.66,4,3992.50,57.40,1422.50,2247.46,0.00,0.127012,0.000000,199,0,120.221722,0.038476,2756419,1521612,0,0,6526,0,1,1 +1774032143.439248,27.56,4,3992.50,57.25,1428.48,2241.46,0.00,1.830908,0.000195,238,2,118.103935,0.023430,2768515,1523208,0,0,6529,0,1,1 +1774032148.437456,27.86,4,3992.50,57.30,1425.57,2243.49,0.00,3519698709728.755371,0.021883,221,22,120.211224,0.033401,2780854,1525466,0,0,6531,0,1,1 +1774032153.434511,27.71,4,3992.50,57.20,1430.59,2239.39,0.00,3520510673491.719727,3520510673493.013184,199,0,118.233233,0.025658,2792978,1527284,0,0,6534,0,1,1 +1774032158.435339,27.93,4,3992.50,57.16,1431.98,2238.04,0.00,644.074550,5017.274264,42179,116626,120.147522,0.031082,2805297,1529361,0,0,6536,0,1,1 +1774032163.434700,27.50,4,3992.50,57.15,1432.48,2237.52,0.00,3518887220427.298828,3518887216052.942871,70,0,118.379433,0.031302,2817393,1531514,0,0,6539,0,1,1 +1774032168.438811,27.79,4,3992.50,57.13,1433.17,2236.84,0.00,0.000000,0.000000,70,0,119.868301,0.032709,2829667,1533722,0,0,6541,0,1,1 +1774032173.434564,13.93,4,3992.50,51.06,1671.12,1998.96,0.00,1.960454,0.000195,238,2,105.633801,0.039376,2840408,1536760,0,0,6544,0,1,1 +1774032178.438558,0.70,4,3992.50,51.04,1671.80,1998.26,0.00,641.999744,5014.408363,42197,116749,0.004487,0.005255,2840508,1536873,0,0,6546,0,1,1 +1774032183.439445,19.90,4,3992.50,51.57,1650.91,2019.09,0.00,3517813494981.079590,3517813490607.962402,11,0,28.154688,0.122372,2848475,1543116,0,0,6549,0,1,1 +1774032188.438598,9.89,4,3992.50,52.14,1628.41,2041.58,0.00,0.000000,0.000000,11,0,12.079854,0.058691,2852092,1546031,0,0,6551,0,1,1 +1774032193.439379,0.75,4,3992.50,51.88,1638.55,2031.40,0.00,0.000000,0.000000,11,0,0.004581,0.008503,2852208,1546194,0,0,6554,0,1,1 +1774032198.438915,0.60,4,3992.50,51.53,1652.42,2017.56,0.00,2.008976,0.000195,238,2,0.003421,0.005856,2852294,1546310,0,0,6556,0,1,1 +1774032203.438043,0.75,4,3992.50,51.44,1655.96,2014.02,0.00,3519050846187.735840,3519050846189.745117,11,0,0.003879,0.007121,2852394,1546450,0,0,6559,0,1,1 +1774032208.439216,0.40,4,3992.50,51.44,1655.97,2014.01,0.00,644.370114,5018.218211,42197,117829,0.003877,0.007121,2852494,1546590,0,0,6561,0,1,1 +1774032213.434585,1.01,4,3992.50,51.42,1656.87,2013.11,0.00,3521699037582.755859,3521699033203.648438,199,0,0.003882,0.007139,2852594,1546731,0,0,6564,0,1,1 +1774032218.439179,0.40,4,3992.50,51.38,1658.16,2011.81,0.00,647.810163,5015.094156,42955,118070,0.003442,0.005881,2852682,1546849,0,0,6566,0,1,1 +1774032223.438774,0.40,4,3992.50,51.38,1658.31,2011.68,0.00,3518721959403.185547,3518721955030.242676,221,22,0.003987,0.007265,2852791,1546999,0,0,6569,0,1,1 +1774032228.439023,0.30,4,3992.50,51.40,1657.59,2012.40,0.00,0.516869,3518262309027.271484,238,2,0.003878,0.007122,2852891,1547139,0,0,6571,0,1,1 +1774032233.437926,0.50,4,3992.50,51.42,1656.61,2013.37,0.00,3519208872849.158691,3519208872851.167969,11,0,0.003879,0.007134,2852991,1547280,0,0,6574,0,1,1 +1774032238.439123,0.35,4,3992.50,51.42,1656.63,2013.35,0.00,1.491537,0.022065,221,22,0.003494,0.005881,2853082,1547398,0,0,6576,0,1,1 +1774032243.438668,1.50,4,3992.50,51.41,1657.12,2012.86,0.00,3518757956337.133789,3518757956338.427246,199,0,0.003878,0.007133,2853182,1547539,0,0,6579,0,1,1 +1774032248.438715,0.70,4,3992.50,51.41,1657.10,2012.89,0.00,0.000000,0.000000,199,0,0.003878,0.007122,2853282,1547679,0,0,6581,0,1,1 +1774032253.438573,0.50,4,3992.50,50.76,1682.62,1987.37,0.00,644.362693,5019.974183,42197,118171,0.003878,0.007133,2853382,1547820,0,0,6584,0,1,1 +1774032258.436419,0.35,4,3992.50,50.80,1681.16,1988.83,0.00,3519954007812.023438,3519954003434.776855,70,0,0.003671,0.006487,2853477,1547948,0,0,6586,0,1,1 +1774032263.438923,0.45,4,3992.50,50.80,1680.96,1989.02,0.00,0.000000,0.000000,70,0,0.003647,0.006508,2853570,1548078,0,0,6589,0,1,1 +1774032268.439265,0.35,4,3992.50,50.81,1680.73,1989.26,0.00,3518196327127.941895,0.000000,11,0,0.003878,0.007122,2853670,1548218,0,0,6591,0,1,1 +1774032273.438782,0.35,4,3992.50,50.74,1683.55,1986.43,0.00,644.583639,5020.412399,42197,118264,0.003260,0.006883,2853758,1548351,0,0,6594,0,1,1 +1774032278.434563,20.92,4,3992.50,51.52,1647.89,2017.01,0.00,0.000000,54.497747,42197,118595,0.041294,86.400710,2856649,1557393,0,0,6596,0,1,1 +1774032283.439419,28.28,4,3992.50,51.45,1647.42,2014.36,0.00,3515023661201.738281,3515023656776.001465,199,0,0.050690,118.654701,2860468,1569750,0,0,6599,0,1,1 +1774032288.439435,1.20,4,3992.50,51.19,1657.58,2004.11,0.00,1.314937,0.022070,221,22,0.006959,0.010832,2860632,1569975,0,0,6601,0,1,1 +1774032293.438600,14.28,4,3992.50,52.29,1618.04,2047.38,0.00,3519024602357.095703,3519024602358.389160,199,0,40.067380,0.020845,2864934,1571254,0,0,6604,0,1,1 +1774032298.435255,0.85,4,3992.50,51.43,1651.64,2013.74,0.00,664.527378,5228.621350,42355,119628,0.005871,0.009396,2865070,1571427,0,0,6606,0,1,1 +1774032303.438058,10.89,4,3992.50,51.13,1661.27,2001.92,0.00,3516465716484.199219,3516465711925.841797,70,0,0.024617,40.045206,2866654,1575791,0,0,6609,0,1,1 +1774032308.439215,0.85,4,3992.50,50.94,1668.70,1994.49,0.00,668.115808,5258.221152,43113,120072,0.001831,0.005088,2866710,1575889,0,0,6611,0,1,1 +1774032313.437399,0.55,4,3992.50,50.97,1667.72,1995.46,0.00,3519715725906.166504,3519715725910.210938,42355,120052,0.002061,0.005722,2866773,1575999,0,0,6614,0,1,1 +1774032318.437681,1.40,4,3992.50,50.97,1667.73,1995.46,0.00,0.000000,0.007812,42355,120057,0.002060,0.005735,2866836,1576110,0,0,6616,0,1,1 +1774032323.439416,0.55,4,3992.50,50.94,1668.62,1994.57,0.00,3517216863401.097656,3517216858807.346191,199,0,0.002326,0.006395,2866909,1576235,0,0,6619,0,1,1 +1774032328.437770,0.70,4,3992.50,50.98,1667.02,1996.17,0.00,664.301390,5261.171719,42355,120066,0.002786,0.007445,2866991,1576379,0,0,6621,0,1,1 +1774032333.434652,0.60,4,3992.50,51.01,1666.05,1997.14,0.00,3520632523979.313477,3520632519379.795410,221,22,0.002795,0.007453,2867074,1576524,0,0,6624,0,1,1 +1774032338.439226,0.80,4,3992.50,51.01,1666.06,1997.13,0.00,3515222202825.026855,3515222202826.495605,11,0,0.002938,0.005703,2867152,1576636,0,0,6626,0,1,1 +1774032343.437043,0.55,4,3992.50,51.01,1666.07,1997.12,0.00,0.000000,0.000000,11,0,0.004125,0.007825,2867255,1576783,0,0,6629,0,1,1 +1774032348.438581,0.60,4,3992.50,51.01,1666.07,1997.12,0.00,668.115002,5263.948437,43113,120179,0.003328,0.007130,2867335,1576916,0,0,6631,0,1,1 +1774032353.439019,0.65,4,3992.50,51.01,1666.07,1997.12,0.00,3518129491500.776367,3518129486903.931152,11,0,0.002289,0.006365,2867405,1577039,0,0,6634,0,1,1 +1774032358.437183,0.60,4,3992.50,50.87,1671.66,1991.53,0.00,664.503660,5267.498963,42355,120176,0.001832,0.005091,2867461,1577137,0,0,6636,0,1,1 +1774032363.439429,0.90,4,3992.50,50.90,1670.24,1992.93,0.00,0.000000,0.027039,42355,120194,0.003658,0.007055,2867553,1577275,0,0,6639,0,1,1 +1774032368.434790,39.96,4,3992.50,57.11,1434.02,2235.95,0.00,4.064611,0.094424,43113,120312,98.634599,0.044094,2877865,1580159,0,0,6641,0,1,1 +1774032373.435772,28.99,4,3992.50,57.44,1421.23,2248.72,0.00,3517746250385.730957,3517746245789.268066,11,0,122.146362,0.026236,2890421,1581928,0,0,6644,0,1,1 +1774032378.434884,28.20,4,3992.50,57.55,1416.57,2253.33,0.00,0.000000,0.000000,11,0,121.389981,0.020605,2902918,1583307,0,0,6646,0,1,1 +1774032383.439075,27.86,4,3992.50,57.46,1420.26,2249.71,0.00,2.007107,0.000195,238,2,120.864158,0.018900,2915158,1584599,0,0,6649,0,1,1 +1774032388.438878,27.84,4,3992.50,57.39,1423.04,2246.89,0.00,3518575384040.237305,3518575384042.246094,11,0,120.169556,0.021207,2927240,1585909,0,0,6651,0,1,1 +1774032393.439235,27.46,4,3992.50,57.30,1426.30,2243.58,0.00,0.049996,0.000000,70,0,119.356123,0.029547,2939285,1587979,0,0,6654,0,1,1 +1774032398.434534,28.30,4,3992.50,57.38,1423.57,2246.37,0.00,3521748595687.370117,0.000000,11,0,119.082559,0.041797,2951404,1590958,0,0,6656,0,1,1 +1774032403.434546,28.32,4,3992.50,57.29,1426.86,2243.08,0.00,0.176953,0.000000,199,0,119.653143,0.058826,2963798,1595259,0,0,6659,0,1,1 +1774032408.439792,9.58,4,3992.50,52.74,1604.94,2065.06,0.00,3514749297728.743164,0.000000,70,0,84.154502,0.024916,2972361,1596941,0,0,6661,0,1,1 +1774032413.438742,1.35,4,3992.50,51.91,1637.74,2032.25,0.00,3519176016249.979004,0.000000,11,0,0.008794,0.009785,2972534,1597133,0,0,6664,0,1,1 +1774032418.438238,9.90,4,3992.50,51.58,1650.60,2019.39,0.00,0.000000,0.000000,11,0,8.067313,0.045159,2975113,1599116,0,0,6666,0,1,1 +1774032423.439035,15.80,4,3992.50,52.26,1623.89,2046.05,0.00,0.049992,0.000000,70,0,24.111166,0.093099,2981319,1604076,0,0,6669,0,1,1 +1774032428.437346,5.37,4,3992.50,51.95,1635.87,2034.00,0.00,668.589330,5268.582880,43122,121554,8.055043,0.041945,2983821,1606100,0,0,6671,0,1,1 +1774032433.439098,0.35,4,3992.50,51.74,1643.99,2025.90,0.00,3517205345028.558105,3517205340431.728516,70,0,0.003877,0.007117,2983921,1606240,0,0,6674,0,1,1 +1774032438.439407,0.35,4,3992.50,51.61,1649.27,2020.66,0.00,1.958668,0.000195,238,2,0.002168,0.004230,2983978,1606325,0,0,6676,0,1,1 +1774032443.439381,23.67,4,3992.50,51.33,1654.62,2009.57,0.00,666.408254,5332.126387,43122,122302,0.038050,96.745507,2986523,1616543,0,0,6679,0,1,1 +1774032448.434591,26.66,4,3992.50,51.42,1648.16,2013.38,0.00,3521810973526.790039,3521810968856.623047,238,2,0.022440,108.460212,2988093,1627922,0,0,6681,0,1,1 +1774032453.437634,0.90,4,3992.50,51.27,1654.23,2007.30,0.00,666.012613,5465.192369,43133,123097,0.006765,0.009137,2988235,1628106,0,0,6684,0,1,1 +1774032458.438698,14.31,4,3992.50,51.24,1659.25,2006.23,0.00,3517688886036.996582,3517688881237.748535,199,0,40.052228,0.022624,2992448,1629419,0,0,6686,0,1,1 +1774032463.434580,1.40,4,3992.50,51.18,1661.80,2003.68,0.00,1.316025,0.022089,221,22,0.005892,0.007031,2992578,1629566,0,0,6689,0,1,1 +1774032468.435145,0.65,4,3992.50,51.18,1661.58,2003.89,0.00,3518039569794.566406,3518039569795.859375,199,0,0.004566,0.009355,2992692,1629730,0,0,6691,0,1,1 +1774032473.439283,0.50,4,3992.50,51.19,1661.34,2004.11,0.00,3515527869811.802734,0.000000,70,0,0.003875,0.007126,2992792,1629871,0,0,6694,0,1,1 +1774032478.434500,1.16,4,3992.50,51.19,1661.37,2004.11,0.00,1.443275,0.022091,221,22,0.003869,0.007129,2992891,1630011,0,0,6696,0,1,1 +1774032483.437518,0.35,4,3992.50,51.19,1661.38,2004.09,0.00,682.185657,5469.448152,42486,123503,0.003406,0.005874,2992976,1630129,0,0,6699,0,1,1 +1774032488.438789,0.50,4,3992.50,51.19,1661.40,2004.06,0.00,3517543635333.463867,3517543630545.820801,199,0,0.003910,0.007160,2993079,1630272,0,0,6701,0,1,1 +1774032493.436180,0.40,4,3992.50,51.19,1661.41,2004.05,0.00,3520273987169.742188,0.000000,70,0,0.003880,0.007136,2993179,1630413,0,0,6704,0,1,1 +1774032498.439428,0.40,4,3992.50,51.19,1661.43,2004.03,0.00,0.000000,0.000000,70,0,0.003969,0.007193,2993285,1630559,0,0,6706,0,1,1 +1774032503.434622,0.55,4,3992.50,51.19,1661.45,2004.02,0.00,688.762256,5478.289155,43244,123705,0.003424,0.005871,2993371,1630676,0,0,6709,0,1,1 +1774032508.438923,0.45,4,3992.50,51.18,1661.45,2004.00,0.00,3515413251825.078125,3515413247044.317383,11,0,0.003875,0.007116,2993471,1630816,0,0,6711,0,1,1 +1774032513.438606,0.40,4,3992.50,51.10,1664.84,2000.64,0.00,1.491989,0.022072,221,22,0.003953,0.007173,2993576,1630960,0,0,6714,0,1,1 +1774032518.438895,0.50,4,3992.50,51.14,1663.12,2002.36,0.00,3518233444059.152344,3518233444060.445312,199,0,0.003890,0.007122,2993677,1631100,0,0,6716,0,1,1 +1774032523.438408,11.60,4,3992.50,51.16,1659.66,2003.15,0.00,688.040374,5507.731041,43244,124072,0.028125,40.070604,2995519,1635499,0,0,6719,0,1,1 +1774032528.438741,0.50,4,3992.50,51.04,1664.62,1998.20,0.00,3518202677770.152832,3518202672949.422363,238,2,0.002570,0.006982,2995599,1635634,0,0,6721,0,1,1 +1774032533.439424,0.40,4,3992.50,51.04,1664.62,1998.19,0.00,3517956974685.351074,3517956974687.359375,11,0,0.002289,0.006365,2995669,1635757,0,0,6724,0,1,1 +1774032538.439491,0.40,4,3992.50,51.04,1664.38,1998.43,0.00,0.000000,0.000000,11,0,0.002289,0.006356,2995739,1635879,0,0,6726,0,1,1 +1774032543.434547,0.40,4,3992.50,51.04,1664.39,1998.43,0.00,2.010777,0.000196,238,2,0.002062,0.005725,2995802,1635989,0,0,6729,0,1,1 +1774032548.438560,0.60,4,3992.50,51.05,1663.90,1998.90,0.00,3515615707901.230469,3515615707903.187500,70,0,0.002058,0.005730,2995865,1636100,0,0,6731,0,1,1 +1774032553.434539,0.45,4,3992.50,51.05,1663.91,1998.90,0.00,3521269195267.474609,0.000000,11,0,0.002291,0.006371,2995935,1636223,0,0,6734,0,1,1 +1774032558.439237,0.40,4,3992.50,51.05,1663.92,1998.89,0.00,2.006903,0.000195,238,2,0.002324,0.006381,2996008,1636347,0,0,6736,0,1,1 +1774032563.438741,0.40,4,3992.50,51.05,1663.92,1998.89,0.00,686.209565,5513.917603,43244,124216,0.002339,0.006429,2996082,1636474,0,0,6739,0,1,1 +1774032568.438314,0.50,4,3992.50,51.05,1663.92,1998.89,0.00,3518737761181.098145,3518737756355.289062,199,0,0.002039,0.005291,2996153,1636587,0,0,6741,0,1,1 +1774032573.438612,0.40,4,3992.50,51.05,1663.92,1998.89,0.00,1.314863,0.022069,221,22,0.002332,0.006391,2996226,1636712,0,0,6744,0,1,1 +1774032578.434612,0.40,4,3992.50,51.05,1663.93,1998.88,0.00,683.143919,5517.772354,42486,124210,0.001833,0.005093,2996282,1636810,0,0,6746,0,1,1 +1774032583.434608,0.30,4,3992.50,51.05,1663.94,1998.88,0.00,0.000000,0.047656,42486,124257,0.002301,0.006366,2996353,1636933,0,0,6749,0,1,1 +1774032588.434559,36.42,4,3992.50,57.28,1426.89,2242.79,0.00,4.060880,0.034375,43244,124319,70.507165,0.035822,3003857,1639216,0,0,6751,0,1,1 +1774032593.437382,29.74,4,3992.50,57.22,1429.34,2240.34,0.00,3516451536233.707520,3516451531409.110840,238,2,119.927852,0.094437,3016769,1646275,0,0,6754,0,1,1 +1774032598.435482,28.05,4,3992.50,57.20,1430.11,2239.59,0.00,0.000000,0.000000,238,2,119.142210,0.110197,3029581,1654684,0,0,6756,0,1,1 +1774032603.434914,28.26,4,3992.50,57.39,1422.67,2247.02,0.00,686.219330,5514.260356,43244,124431,119.315961,0.110031,3042469,1663054,0,0,6759,0,1,1 +1774032608.438393,28.97,4,3992.50,57.32,1425.44,2244.25,0.00,3515990585753.384766,3515990580931.079590,199,0,120.118187,0.111166,3055484,1671463,0,0,6761,0,1,1 +1774032613.436934,28.35,4,3992.50,57.32,1425.76,2244.06,0.00,1.832371,0.000195,238,2,118.633339,0.110604,3068325,1679744,0,0,6764,0,1,1 +1774032618.439384,28.78,4,3992.50,57.20,1430.13,2239.57,0.00,3516713384205.985352,0.021864,221,22,119.740016,0.107409,3081184,1687876,0,0,6766,0,1,1 +1774032623.438824,28.56,4,3992.50,57.27,1427.32,2242.41,0.00,3518831634015.848633,3518831634017.268555,70,0,118.811526,0.110659,3094047,1696335,0,0,6769,0,1,1 +1774032628.439204,17.69,4,3992.50,57.25,1428.23,2241.54,0.00,1.441785,0.022069,221,22,119.390317,0.112472,3106916,1704815,0,0,6771,0,1,1 +1774032633.438983,1.85,4,3992.50,51.61,1649.06,2020.68,0.00,3518592973474.050781,3518592973475.520996,11,0,0.004809,0.005353,3107035,1704948,0,0,6774,0,1,1 +1774032638.439177,10.70,4,3992.50,51.52,1652.84,2017.03,0.00,0.000000,0.000000,11,0,6.115719,0.043126,3109048,1706552,0,0,6776,0,1,1 +1774032643.434515,20.30,4,3992.50,52.88,1599.18,2070.48,0.00,2.010664,0.000195,238,2,34.151476,0.136887,3118411,1713930,0,0,6779,0,1,1 +1774032648.439178,0.40,4,3992.50,52.17,1627.05,2042.58,0.00,3515159519479.701172,0.021855,221,22,0.004653,0.006531,3118500,1714050,0,0,6781,0,1,1 +1774032653.434552,18.44,4,3992.50,52.06,1627.08,2038.46,0.00,3521695102255.922363,3521695102257.393555,11,0,0.034144,74.586122,3120774,1722108,0,0,6784,0,1,1 +1774032658.439462,28.78,4,3992.50,51.60,1641.10,2020.32,0.00,1.490431,0.022049,221,22,0.079964,120.080224,3126820,1735132,0,0,6786,0,1,1 +1774032663.438496,5.12,4,3992.50,51.33,1651.79,2009.74,0.00,0.000000,0.000000,221,22,0.012823,10.428413,3127571,1736458,0,0,6789,0,1,1 +1774032668.439144,13.70,4,3992.50,51.97,1630.74,2034.78,0.00,3517981602823.886230,3517981602825.355957,11,0,40.058650,0.023375,3131855,1737844,0,0,6791,0,1,1 +1774032673.438705,0.50,4,3992.50,51.42,1652.21,2013.30,0.00,0.000000,0.000000,11,0,0.004559,0.006919,3131965,1737985,0,0,6794,0,1,1 +1774032678.439253,1.50,4,3992.50,51.12,1664.04,2001.48,0.00,703.895868,5719.763105,42632,127223,0.004642,0.009405,3132085,1738152,0,0,6796,0,1,1 +1774032683.439231,0.45,4,3992.50,51.11,1664.26,2001.24,0.00,3518452168637.848145,3518452163621.410645,11,0,0.003445,0.005896,3132173,1738271,0,0,6799,0,1,1 +1774032688.434547,0.60,4,3992.50,51.10,1664.65,2000.87,0.00,2.010673,0.000195,238,2,0.003907,0.007160,3132275,1738413,0,0,6801,0,1,1 +1774032693.438576,0.40,4,3992.50,51.11,1664.43,2001.09,0.00,701.398991,5715.901697,42632,127356,0.003883,0.007135,3132376,1738555,0,0,6804,0,1,1 +1774032698.438936,0.40,4,3992.50,51.12,1663.95,2001.57,0.00,3518183524630.903320,3518183519614.553223,199,0,0.003903,0.007153,3132478,1738697,0,0,6806,0,1,1 +1774032703.437399,0.50,4,3992.50,51.00,1668.93,1996.59,0.00,1.832399,0.000195,238,2,0.003421,0.005854,3132564,1738813,0,0,6809,0,1,1 +1774032708.434534,0.45,4,3992.50,51.01,1668.48,1997.04,0.00,3520454620891.693848,3520454620893.703613,11,0,0.003974,0.007202,3132670,1738959,0,0,6811,0,1,1 +1774032713.434609,0.55,4,3992.50,51.04,1667.27,1998.25,0.00,0.176950,0.000000,199,0,0.003878,0.007132,3132770,1739100,0,0,6814,0,1,1 +1774032718.436660,0.65,4,3992.50,51.04,1667.04,1998.48,0.00,703.507430,5718.576905,42632,127770,0.004546,0.008041,3132873,1739242,0,0,6816,0,1,1 +1774032723.438398,0.50,4,3992.50,51.04,1667.05,1998.46,0.00,3517213984465.281250,3517213979450.076172,11,0,0.003951,0.007145,3132978,1739384,0,0,6819,0,1,1 +1774032728.439091,0.35,4,3992.50,51.04,1667.07,1998.45,0.00,0.000000,0.000000,11,0,0.003420,0.005880,3133064,1739502,0,0,6821,0,1,1 +1774032733.434618,0.50,4,3992.50,51.04,1667.08,1998.43,0.00,0.000000,0.000000,11,0,0.003890,0.007147,3133165,1739644,0,0,6824,0,1,1 +1774032738.434521,0.35,4,3992.50,50.85,1674.51,1991.01,0.00,0.000000,0.000000,11,0,0.003878,0.007123,3133265,1739784,0,0,6826,0,1,1 +1774032743.435657,6.38,4,3992.50,51.50,1648.18,2016.33,0.00,2.008333,0.000195,238,2,0.019034,22.036055,3134354,1742301,0,0,6829,0,1,1 +1774032748.434860,5.37,4,3992.50,51.13,1661.24,2001.76,0.00,3518998307532.421875,0.021878,221,22,0.008948,18.036134,3134894,1744353,0,0,6831,0,1,1 +1774032753.436157,0.55,4,3992.50,50.99,1666.48,1996.53,0.00,3517524347998.014648,3517524347999.434082,70,0,0.002288,0.006364,3134964,1744476,0,0,6834,0,1,1 +1774032758.438777,0.30,4,3992.50,51.03,1665.01,1997.99,0.00,707.613081,5752.251227,43390,128270,0.002288,0.006353,3135034,1744598,0,0,6836,0,1,1 +1774032763.434546,0.45,4,3992.50,51.03,1665.02,1997.98,0.00,0.000000,0.007037,43390,128275,0.002291,0.006371,3135104,1744721,0,0,6839,0,1,1 +1774032768.434970,0.30,4,3992.50,51.03,1665.03,1997.98,0.00,3518139005789.649902,3518139000740.831055,238,2,0.001831,0.005088,3135160,1744819,0,0,6841,0,1,1 +1774032773.435261,0.55,4,3992.50,51.04,1664.57,1998.44,0.00,701.923231,5754.921561,42632,128259,0.002276,0.006366,3135229,1744942,0,0,6844,0,1,1 +1774032778.434545,0.50,4,3992.50,51.04,1664.57,1998.44,0.00,3518941670287.110352,3518941665233.092773,238,2,0.002322,0.006396,3135302,1745067,0,0,6846,0,1,1 +1774032783.438728,0.35,4,3992.50,51.04,1664.58,1998.43,0.00,3515495695199.138672,3515495695201.145996,11,0,0.002337,0.006423,3135376,1745194,0,0,6849,0,1,1 +1774032788.438589,0.40,4,3992.50,51.04,1664.58,1998.42,0.00,708.053453,5761.510693,43390,128368,0.001907,0.005182,3135438,1745298,0,0,6851,0,1,1 +1774032793.438051,0.45,4,3992.50,51.04,1664.59,1998.42,0.00,3518816245912.304199,3518816240858.392578,70,0,0.002445,0.006493,3135518,1745431,0,0,6854,0,1,1 +1774032798.434648,0.40,4,3992.50,51.04,1664.59,1998.41,0.00,1.442877,0.022085,221,22,0.002290,0.006360,3135588,1745553,0,0,6856,0,1,1 +1774032803.434592,0.35,4,3992.50,51.04,1664.60,1998.41,0.00,3518476528560.660156,3518476528562.080078,70,0,0.002289,0.006366,3135658,1745676,0,0,6859,0,1,1 +1774032808.438904,0.40,4,3992.50,51.04,1664.60,1998.41,0.00,3515405673489.695312,0.000000,11,0,0.001829,0.005084,3135714,1745774,0,0,6861,0,1,1 +1774032813.439220,36.02,4,3992.50,57.55,1416.73,2253.07,0.00,0.049997,0.000000,70,0,83.116539,0.036471,3144458,1748075,0,0,6864,0,1,1 +1774032818.435328,28.06,4,3992.50,57.34,1424.53,2245.14,0.00,3521178547087.764648,0.000000,11,0,119.459348,0.021052,3156702,1749392,0,0,6866,0,1,1 +1774032823.439409,27.61,4,3992.50,57.60,1414.61,2255.05,0.00,0.049959,0.000000,70,0,120.068826,0.027202,3168855,1751156,0,0,6869,0,1,1 +1774032828.434550,27.47,4,3992.50,57.21,1429.51,2240.09,0.00,704.607704,5767.178317,42632,128536,118.291274,0.056268,3181050,1755278,0,0,6871,0,1,1 +1774032833.435228,28.31,4,3992.50,57.18,1430.96,2238.67,0.00,0.000000,0.028024,42632,128553,120.160780,0.057346,3193378,1759481,0,0,6874,0,1,1 +1774032838.437016,27.26,4,3992.50,57.49,1418.74,2250.93,0.00,0.000000,0.004393,42632,128561,118.331956,0.063088,3205479,1764240,0,0,6876,0,1,1 +1774032843.434536,28.35,4,3992.50,57.24,1428.65,2240.99,0.00,3520183578292.785156,3520183573232.641602,11,0,120.055704,0.105476,3218234,1772276,0,0,6879,0,1,1 +1774032848.439258,28.10,4,3992.50,57.45,1420.43,2249.18,0.00,0.049953,0.000000,70,0,119.482998,0.100975,3231048,1779964,0,0,6881,0,1,1 +1774032853.439239,14.47,4,3992.50,50.98,1673.93,1995.80,0.00,0.000000,0.000000,70,0,106.574587,0.096653,3242352,1787247,0,0,6884,0,1,1 +1774032858.439292,0.70,4,3992.50,51.52,1652.64,2017.09,0.00,3518399881475.127930,0.000000,11,0,0.004666,0.005392,3242455,1787361,0,0,6886,0,1,1 +1774032863.438700,18.57,4,3992.50,51.41,1656.83,2012.84,0.00,1.492071,0.022073,221,22,24.146575,0.108942,3249304,1792869,0,0,6889,0,1,1 +1774032868.438742,10.65,4,3992.50,51.27,1662.38,2007.29,0.00,3518407434710.632812,3518407434712.103027,11,0,16.089820,0.066846,3253799,1796401,0,0,6891,0,1,1 +1774032873.435243,1.31,4,3992.50,51.40,1657.16,2012.51,0.00,0.000000,0.000000,11,0,0.010939,0.012482,3254026,1796661,0,0,6894,0,1,1 +1774032878.438486,25.84,4,3992.50,51.57,1644.07,2019.14,0.00,0.000000,0.000000,11,0,0.061723,106.487472,3258653,1807886,0,0,6896,0,1,1 +1774032883.438488,24.77,4,3992.50,51.40,1649.00,2012.45,0.00,0.050000,0.000000,70,0,0.033681,98.543719,3261058,1818231,0,0,6899,0,1,1 +1774032888.438851,1.15,4,3992.50,51.24,1655.18,2006.27,0.00,0.000000,0.000000,70,0,0.006784,0.009364,3261201,1818416,0,0,6901,0,1,1 +1774032893.437682,14.93,4,3992.50,51.36,1654.55,2010.79,0.00,0.000000,0.000000,70,0,40.071130,0.024910,3265505,1819936,0,0,6904,0,1,1 +1774032898.438108,0.85,4,3992.50,51.41,1652.62,2012.72,0.00,0.000000,0.000000,70,0,0.005886,0.007015,3265635,1820082,0,0,6906,0,1,1 +1774032903.434763,0.65,4,3992.50,51.42,1652.19,2013.14,0.00,3520791946928.541992,0.000000,11,0,0.004696,0.009497,3265759,1820255,0,0,6909,0,1,1 +1774032908.434784,0.70,4,3992.50,51.42,1652.21,2013.12,0.00,0.000000,0.000000,11,0,0.003878,0.007135,3265859,1820396,0,0,6911,0,1,1 +1774032913.434618,1.20,4,3992.50,51.10,1664.59,2000.75,0.00,0.000000,0.000000,11,0,0.003878,0.007133,3265959,1820537,0,0,6914,0,1,1 +1774032918.434818,0.35,4,3992.50,51.11,1664.12,2001.22,0.00,723.770596,5968.289782,42764,131489,0.003420,0.005855,3266045,1820653,0,0,6916,0,1,1 +1774032923.438595,0.40,4,3992.50,51.14,1662.89,2002.43,0.00,3515780967432.404297,3515780962191.585449,70,0,0.003888,0.007158,3266146,1820796,0,0,6919,0,1,1 +1774032928.434578,0.40,4,3992.50,51.06,1666.17,1999.17,0.00,724.331497,5973.433122,42764,131586,0.004386,0.008224,3266259,1820959,0,0,6921,0,1,1 +1774032933.437228,0.50,4,3992.50,51.10,1664.46,2000.87,0.00,3516573146583.924316,3516573141340.399902,221,22,0.004403,0.008240,3266373,1821124,0,0,6924,0,1,1 +1774032938.438600,0.50,4,3992.50,51.10,1664.61,2000.73,0.00,726.169261,5967.119896,43522,131713,0.004986,0.007702,3266495,1821275,0,0,6926,0,1,1 +1774032943.438657,0.50,4,3992.50,51.11,1664.39,2000.93,0.00,3518396751519.944824,3518396746277.616699,221,22,0.004485,0.006292,3266603,1821407,0,0,6929,0,1,1 +1774032948.438656,0.35,4,3992.50,51.11,1664.41,2000.92,0.00,726.368656,5968.823119,43522,131792,0.003953,0.007162,3266708,1821550,0,0,6931,0,1,1 +1774032953.438546,0.40,4,3992.50,51.11,1664.42,2000.91,0.00,3518514615478.889160,3518514610235.782227,238,2,0.004800,0.007802,3266810,1821694,0,0,6934,0,1,1 +1774032958.435630,0.45,4,3992.50,51.11,1664.43,2000.89,0.00,3520490313065.446777,3520490313067.406738,70,0,0.003880,0.007127,3266910,1821834,0,0,6936,0,1,1 +1774032963.437741,0.35,4,3992.50,51.10,1664.45,2000.88,0.00,0.000000,0.000000,70,0,0.003431,0.005863,3266997,1821951,0,0,6939,0,1,1 +1774032968.438987,10.90,4,3992.50,51.21,1657.93,2004.95,0.00,723.569132,6001.499576,42764,132126,0.026995,40.055781,3268758,1826298,0,0,6941,0,1,1 +1774032973.439139,0.70,4,3992.50,51.23,1657.22,2005.65,0.00,3518330570374.477051,3518330565095.440918,11,0,0.003622,0.009001,3268861,1826469,0,0,6944,0,1,1 +1774032978.438655,0.35,4,3992.50,51.03,1665.11,1997.77,0.00,0.000000,0.000000,11,0,0.002289,0.006357,3268931,1826591,0,0,6946,0,1,1 +1774032983.439005,0.35,4,3992.50,51.04,1664.38,1998.50,0.00,723.748762,6002.709166,42764,132229,0.001856,0.005129,3268989,1826692,0,0,6949,0,1,1 +1774032988.438679,0.35,4,3992.50,51.04,1664.38,1998.50,0.00,3518666691378.662109,3518666686098.937500,70,0,0.002314,0.006388,3269061,1826816,0,0,6951,0,1,1 +1774032993.438653,0.40,4,3992.50,51.04,1664.38,1998.49,0.00,3518455965068.208496,0.000000,11,0,0.002289,0.006366,3269131,1826939,0,0,6954,0,1,1 +1774032998.434591,0.45,4,3992.50,51.04,1664.39,1998.49,0.00,0.000000,0.000000,11,0,0.002278,0.006361,3269200,1827061,0,0,6956,0,1,1 +1774033003.435652,0.30,4,3992.50,51.04,1664.39,1998.48,0.00,0.000000,0.000000,11,0,0.002326,0.006371,3269273,1827184,0,0,6959,0,1,1 +1774033008.436039,0.45,4,3992.50,51.04,1664.40,1998.48,0.00,0.000000,0.000000,11,0,0.001869,0.005176,3269332,1827288,0,0,6961,0,1,1 +1774033013.438639,0.40,4,3992.50,51.04,1664.40,1998.47,0.00,727.482018,6006.142079,43522,132368,0.002394,0.006481,3269410,1827419,0,0,6964,0,1,1 +1774033018.434604,0.40,4,3992.50,50.85,1672.04,1990.83,0.00,3521279141016.340332,3521279141020.388184,42764,132350,0.002415,0.006462,3269488,1827549,0,0,6966,0,1,1 +1774033023.434626,0.35,4,3992.50,50.85,1671.80,1991.07,0.00,4.060822,0.030078,43522,132380,0.002284,0.006374,3269558,1827673,0,0,6969,0,1,1 +1774033028.438951,0.40,4,3992.50,50.86,1671.56,1991.31,0.00,0.000000,0.003903,43522,132383,0.001829,0.005084,3269614,1827771,0,0,6971,0,1,1 +1774033033.434933,0.45,4,3992.50,50.86,1671.57,1991.30,0.00,3521266150422.633789,3521266145135.492676,221,22,0.002291,0.006371,3269684,1827894,0,0,6974,0,1,1 +1774033038.438579,32.06,4,3992.50,57.38,1423.30,2246.46,0.00,0.516518,3515874019995.583984,238,2,66.452779,0.032784,3276865,1829827,0,0,6976,0,1,1 +1774033043.438870,30.23,4,3992.50,57.30,1426.32,2243.34,0.00,725.809263,6009.051755,43522,132519,118.358957,0.021571,3289094,1831234,0,0,6979,0,1,1 +1774033048.435429,27.66,4,3992.50,57.43,1421.22,2248.35,0.00,3520860143694.822266,3520860138407.633301,238,2,120.048780,0.021941,3301338,1832660,0,0,6981,0,1,1 +1774033053.434448,27.77,4,3992.50,57.40,1422.30,2247.29,0.00,3519127661728.599121,3519127661730.431641,199,0,118.392823,0.037649,3313509,1835279,0,0,6984,0,1,1 +1774033058.437722,28.22,4,3992.50,57.33,1425.19,2244.45,0.00,727.207203,6005.582416,43522,132569,119.899798,0.058497,3325911,1839819,0,0,6986,0,1,1 +1774033063.438985,27.81,4,3992.50,57.27,1427.24,2242.43,0.00,3517549318205.576660,3517549312925.254883,11,0,118.750454,0.064713,3338316,1844704,0,0,6989,0,1,1 +1774033068.435039,28.16,4,3992.50,57.44,1420.86,2248.78,0.00,1.493073,0.022088,221,22,119.870759,0.051571,3350767,1848554,0,0,6991,0,1,1 +1774033073.437383,28.46,4,3992.50,57.50,1418.41,2251.11,0.00,3516788450536.385742,3516788450537.854980,11,0,119.317468,0.043900,3363137,1851707,0,0,6994,0,1,1 +1774033078.434655,18.23,4,3992.50,57.57,1415.57,2254.14,0.00,728.258404,6012.961566,43523,132656,119.034015,0.033492,3375412,1854042,0,0,6996,0,1,1 +1774033083.438534,0.80,4,3992.50,51.45,1653.38,2014.32,0.00,3515709831564.492188,3515709826286.716309,70,0,5.409682,0.008581,3376131,1854331,0,0,6999,0,1,1 +1774033088.435447,13.79,4,3992.50,51.27,1660.13,2007.51,0.00,724.361532,6013.729889,42780,133102,18.128351,0.087875,3381485,1858535,0,0,7001,0,1,1 +1774033093.439433,9.83,4,3992.50,51.79,1639.77,2027.86,0.00,3515634674978.129883,3515634669696.110840,199,0,18.078802,0.072576,3386581,1862542,0,0,7004,0,1,1 +1774033098.436818,4.26,4,3992.50,51.55,1649.21,2018.41,0.00,3520278659609.357422,0.000000,70,0,4.035504,0.024983,3387846,1863554,0,0,7006,0,1,1 +1774033103.438991,19.16,4,3992.50,51.46,1650.38,2014.66,0.00,3516908415125.530273,0.000000,11,0,0.041139,79.687442,3390706,1872061,0,0,7009,0,1,1 +1774033108.436835,29.15,4,3992.50,51.52,1640.49,2017.15,0.00,724.277525,6176.678814,42781,134924,0.031656,120.222269,3393030,1884525,0,0,7011,0,1,1 +1774033113.434516,2.86,4,3992.50,51.13,1659.38,2001.90,0.00,3520069897539.498047,3520069892086.742188,199,0,0.009256,5.220511,3393328,1885298,0,0,7014,0,1,1 +1774033118.434603,14.95,4,3992.50,51.85,1634.94,2030.15,0.00,1.831804,0.000195,238,2,40.060494,0.023823,3397609,1886785,0,0,7016,0,1,1 +1774033123.434849,0.65,4,3992.50,51.27,1657.57,2007.51,0.00,3518264030074.491699,3518264030076.500000,11,0,0.005886,0.007013,3397739,1886931,0,0,7019,0,1,1 +1774033128.439340,0.70,4,3992.50,51.18,1661.30,2003.79,0.00,0.049955,0.000000,70,0,0.004663,0.009472,3397861,1887103,0,0,7021,0,1,1 +1774033133.438859,0.40,4,3992.50,51.18,1661.46,2003.62,0.00,1.442033,0.022072,221,22,0.003878,0.007133,3397961,1887244,0,0,7024,0,1,1 +1774033138.434773,0.40,4,3992.50,50.97,1669.35,1995.73,0.00,746.883640,6221.511572,43692,135502,0.003894,0.007141,3398062,1887385,0,0,7026,0,1,1 +1774033143.438380,0.50,4,3992.50,50.97,1669.36,1995.72,0.00,3515900277281.423828,3515900277285.470215,42934,135490,0.003426,0.005856,3398149,1887502,0,0,7029,0,1,1 +1774033148.438583,1.65,4,3992.50,50.98,1669.13,1995.95,0.00,3518294670763.890625,3518294665291.329590,70,0,0.003903,0.007153,3398251,1887644,0,0,7031,0,1,1 +1774033153.435650,1.26,4,3992.50,50.93,1671.12,1993.97,0.00,1.442741,0.022083,221,22,0.003893,0.007137,3398352,1887785,0,0,7034,0,1,1 +1774033158.439180,0.40,4,3992.50,50.95,1670.42,1994.68,0.00,3515954708585.467285,3515954708586.759766,199,0,0.003968,0.007193,3398458,1887931,0,0,7036,0,1,1 +1774033163.438132,0.45,4,3992.50,50.95,1670.19,1994.90,0.00,743.683187,6217.965545,42934,135702,0.003421,0.005866,3398544,1888048,0,0,7039,0,1,1 +1774033168.439487,0.35,4,3992.50,50.98,1669.22,1995.87,0.00,3517483379206.522949,3517483373735.048828,11,0,0.003864,0.007108,3398643,1888187,0,0,7041,0,1,1 +1774033173.436717,0.40,4,3992.50,50.98,1669.24,1995.86,0.00,744.116425,6220.189517,42934,135787,0.003968,0.007164,3398749,1888330,0,0,7044,0,1,1 +1774033178.438864,0.45,4,3992.50,50.99,1668.80,1996.30,0.00,3516927283638.654785,3516927278167.964355,11,0,0.003884,0.007127,3398850,1888471,0,0,7046,0,1,1 +1774033183.438526,0.35,4,3992.50,50.99,1668.82,1996.29,0.00,0.176965,0.000000,199,0,0.003649,0.006499,3398943,1888600,0,0,7049,0,1,1 +1774033188.439401,0.45,4,3992.50,50.99,1668.83,1996.28,0.00,0.000000,0.000000,199,0,0.003649,0.006500,3399036,1888729,0,0,7051,0,1,1 +1774033193.434515,9.31,4,3992.50,51.17,1659.39,2003.53,0.00,1.833628,0.000196,238,2,0.029245,34.690599,3401004,1892465,0,0,7054,0,1,1 +1774033198.438442,2.45,4,3992.50,51.19,1658.76,2004.16,0.00,0.000000,0.000000,238,2,0.006245,5.411489,3401337,1893186,0,0,7056,0,1,1 +1774033203.438231,1.05,4,3992.50,51.22,1657.35,2005.41,0.00,741.726864,6251.273590,42934,136239,0.002289,0.006366,3401407,1893309,0,0,7059,0,1,1 +1774033208.434529,1.00,4,3992.50,51.22,1657.23,2005.53,0.00,3521043735410.760254,3521043729899.376465,11,0,0.001840,0.005101,3401464,1893408,0,0,7061,0,1,1 +1774033213.438924,0.55,4,3992.50,51.22,1657.23,2005.53,0.00,747.121626,6245.639690,43701,136298,0.002299,0.006360,3401535,1893531,0,0,7064,0,1,1 +1774033218.438900,0.65,4,3992.50,51.22,1657.23,2005.53,0.00,3518454091789.403320,3518454086285.849121,199,0,0.002289,0.006356,3401605,1893653,0,0,7066,0,1,1 +1774033223.439250,0.55,4,3992.50,51.22,1657.24,2005.52,0.00,743.488456,6250.681855,42943,136286,0.002289,0.006366,3401675,1893776,0,0,7069,0,1,1 +1774033228.438974,0.80,4,3992.50,51.22,1657.24,2005.52,0.00,3518631280358.929199,3518631274851.223633,11,0,0.002353,0.006207,3401745,1893898,0,0,7071,0,1,1 +1774033233.439216,0.65,4,3992.50,51.22,1657.25,2005.52,0.00,743.681617,6256.834303,42943,136328,0.002835,0.007515,3401831,1894047,0,0,7074,0,1,1 +1774033238.434526,0.80,4,3992.50,51.23,1656.80,2005.96,0.00,3521740045980.778809,3521740040462.135254,70,0,0.003477,0.007071,3401929,1894189,0,0,7076,0,1,1 +1774033243.434629,0.60,4,3992.50,51.27,1655.57,2007.19,0.00,3518365313902.652832,0.000000,11,0,0.003454,0.006859,3402028,1894333,0,0,7079,0,1,1 +1774033248.436766,0.60,4,3992.50,51.27,1655.58,2007.18,0.00,747.458733,6254.571567,43701,136414,0.001830,0.005087,3402084,1894431,0,0,7081,0,1,1 +1774033253.438948,0.55,4,3992.50,51.27,1655.58,2007.18,0.00,3516902654085.603027,3516902648578.362305,199,0,0.003209,0.007033,3402156,1894557,0,0,7084,0,1,1 +1774033258.434911,0.65,4,3992.50,51.27,1655.59,2007.18,0.00,1.833316,0.000195,238,2,0.002291,0.006361,3402226,1894679,0,0,7086,0,1,1 +1774033263.438664,33.87,4,3992.50,57.39,1422.48,2246.75,0.00,3515797713904.735840,0.021859,221,22,72.653411,0.038616,3409915,1897114,0,0,7089,0,1,1 +1774033268.438375,28.93,4,3992.50,57.44,1420.06,2249.02,0.00,3518641024755.611328,3518641024757.081055,11,0,119.574003,0.021945,3422204,1898479,0,0,7091,0,1,1 +1774033273.435888,27.83,4,3992.50,57.38,1422.58,2246.47,0.00,748.150395,6260.560025,43701,136592,118.825020,0.022170,3434426,1899962,0,0,7094,0,1,1 +1774033278.438449,27.81,4,3992.50,57.60,1413.86,2255.26,0.00,3516636103172.418457,3516636097665.520508,70,0,119.906514,0.033576,3446560,1902266,0,0,7096,0,1,1 +1774033283.439008,27.92,4,3992.50,57.49,1418.16,2250.89,0.00,743.584333,6256.805734,42943,136601,118.359571,0.046280,3458715,1905600,0,0,7099,0,1,1 +1774033288.434569,28.34,4,3992.50,57.39,1422.30,2246.82,0.00,3521563626972.250488,3521563621453.562988,11,0,120.276148,0.035011,3470989,1908169,0,0,7101,0,1,1 +1774033293.439370,28.30,4,3992.50,57.43,1420.48,2248.67,0.00,743.004016,6251.541435,42943,136628,118.862691,0.055921,3483337,1912329,0,0,7104,0,1,1 +1774033298.438587,27.96,4,3992.50,57.47,1419.23,2249.93,0.00,3518988445716.952148,3518988440200.252441,238,2,119.402097,0.074740,3495763,1917856,0,0,7106,0,1,1 +1774033303.435304,16.67,4,3992.50,57.15,1431.77,2237.44,0.00,3520749060871.316895,0.021889,221,22,117.654572,0.065021,3507934,1922582,0,0,7109,0,1,1 +1774033308.438962,0.85,4,3992.50,52.17,1626.57,2042.62,0.00,3515864789843.225586,3515864789844.694336,11,0,0.004779,0.005529,3508056,1922715,0,0,7111,0,1,1 +1774033313.438587,16.40,4,3992.50,51.39,1656.96,2012.18,0.00,2.008940,0.000195,238,2,22.134697,0.099591,3514370,1927650,0,0,7114,0,1,1 +1774033318.439020,12.19,4,3992.50,51.08,1669.21,1999.89,0.00,3518132867169.996094,0.021873,221,22,18.099373,0.077123,3519475,1931721,0,0,7116,0,1,1 +1774033323.438252,1.20,4,3992.50,51.07,1669.41,1999.65,0.00,3518977609827.879883,3518977609829.173340,199,0,0.008199,0.010705,3519660,1931937,0,0,7119,0,1,1 +1774033328.439168,0.50,4,3992.50,50.90,1676.41,1992.70,0.00,743.495685,6257.854985,42952,138070,0.003877,0.007109,3519760,1932076,0,0,7121,0,1,1 +1774033333.439110,0.40,4,3992.50,50.91,1675.68,1993.41,0.00,0.000000,0.006152,42952,138079,0.003878,0.007132,3519860,1932217,0,0,7124,0,1,1 +1774033338.434598,0.45,4,3992.50,50.91,1675.70,1993.41,0.00,3521615262365.805664,3521615256844.153809,221,22,0.003423,0.005848,3519946,1932332,0,0,7126,0,1,1 +1774033343.434586,0.50,4,3992.50,50.94,1674.73,1994.38,0.00,3518445712261.482422,3518445712262.775391,199,0,0.003878,0.007132,3520046,1932473,0,0,7129,0,1,1 +1774033348.434606,0.45,4,3992.50,50.94,1674.74,1994.36,0.00,3518423136597.845703,0.000000,11,0,0.003911,0.007161,3520149,1932616,0,0,7131,0,1,1 +1774033353.434713,0.50,4,3992.50,50.94,1674.76,1994.34,0.00,0.000000,0.000000,11,0,0.003991,0.007244,3520258,1932764,0,0,7134,0,1,1 +1774033358.438668,0.40,4,3992.50,50.94,1674.78,1994.32,0.00,0.000000,0.000000,11,0,0.003418,0.005851,3520344,1932880,0,0,7136,0,1,1 +1774033363.436777,0.55,4,3992.50,50.94,1674.79,1994.31,0.00,0.000000,0.000000,11,0,0.003879,0.007135,3520444,1933021,0,0,7139,0,1,1 +1774033368.434625,0.45,4,3992.50,50.94,1674.81,1994.29,0.00,2.009654,0.000195,238,2,0.003954,0.007178,3520549,1933165,0,0,7141,0,1,1 +1774033373.434532,0.50,4,3992.50,50.94,1674.82,1994.28,0.00,3518502408841.928711,3518502408843.937500,11,0,0.003878,0.007132,3520649,1933306,0,0,7144,0,1,1 +1774033378.437423,0.45,4,3992.50,50.94,1674.84,1994.27,0.00,743.379092,6255.702415,42952,138375,0.003647,0.006472,3520742,1933433,0,0,7146,0,1,1 +1774033383.439012,0.50,4,3992.50,50.94,1674.86,1994.25,0.00,0.000000,0.048715,42952,138417,0.003648,0.006509,3520835,1933563,0,0,7149,0,1,1 +1774033388.438868,1.00,4,3992.50,50.94,1674.63,1994.47,0.00,0.000000,0.029981,42952,138444,0.004556,0.008052,3520939,1933706,0,0,7151,0,1,1 +1774033393.434558,0.80,4,3992.50,50.94,1674.65,1994.46,0.00,3521472627396.516602,3521472621874.159180,238,2,0.003881,0.007138,3521039,1933847,0,0,7154,0,1,1 +1774033398.435140,0.55,4,3992.50,50.94,1674.66,1994.45,0.00,3518027170853.312500,3518027170855.144531,199,0,0.003878,0.007122,3521139,1933987,0,0,7156,0,1,1 +1774033403.439184,0.50,4,3992.50,50.94,1674.67,1994.43,0.00,3515594369901.697266,0.000000,70,0,0.002799,0.005648,3521213,1934099,0,0,7159,0,1,1 +1774033408.438855,19.61,4,3992.50,51.44,1650.90,2013.80,0.00,3518668137665.558105,0.000000,11,0,0.043919,80.526011,3524290,1942576,0,0,7161,0,1,1 +1774033413.437393,28.57,4,3992.50,51.57,1641.93,2018.98,0.00,0.177005,0.000000,199,0,0.041349,118.603015,3527325,1954795,0,0,7164,0,1,1 +1774033418.434611,2.86,4,3992.50,51.33,1651.39,2009.72,0.00,3520396282659.311035,0.000000,11,0,0.007497,6.021291,3527545,1955625,0,0,7166,0,1,1 +1774033423.438814,14.36,4,3992.50,52.06,1626.62,2038.25,0.00,766.963297,6459.359217,43830,139973,40.029010,0.025263,3531855,1957014,0,0,7169,0,1,1 +1774033428.434534,11.04,4,3992.50,51.48,1646.89,2015.68,0.00,3521451359192.155273,3521451353489.916992,199,0,0.025728,40.103336,3533456,1961462,0,0,7171,0,1,1 +1774033433.434613,0.60,4,3992.50,51.33,1653.08,2009.50,0.00,3518381258176.902832,0.000000,11,0,0.002297,0.006374,3533527,1961586,0,0,7174,0,1,1 +1774033438.438945,0.45,4,3992.50,51.33,1652.84,2009.74,0.00,0.000000,0.000000,11,0,0.001829,0.005084,3533583,1961684,0,0,7176,0,1,1 +1774033443.439010,0.45,4,3992.50,51.33,1652.85,2009.73,0.00,2.008763,0.000195,238,2,0.001831,0.005099,3533639,1961783,0,0,7179,0,1,1 +1774033448.438583,0.55,4,3992.50,51.36,1651.64,2010.93,0.00,765.664576,6499.580003,43830,140328,0.002289,0.006357,3533709,1961905,0,0,7181,0,1,1 +1774033453.438879,0.45,4,3992.50,51.40,1650.19,2012.38,0.00,3518229040837.549805,3518229035105.001953,221,22,0.002314,0.006397,3533781,1962030,0,0,7184,0,1,1 +1774033458.438579,0.50,4,3992.50,51.40,1650.20,2012.38,0.00,0.516926,3518648532580.477539,238,2,0.002289,0.006356,3533851,1962152,0,0,7186,0,1,1 +1774033463.434541,0.45,4,3992.50,51.40,1650.21,2012.38,0.00,762.153874,6510.355051,43072,140414,0.001833,0.005103,3533907,1962251,0,0,7189,0,1,1 +1774033468.438839,0.45,4,3992.50,51.21,1657.64,2004.95,0.00,3515415051500.273438,3515415045763.654785,11,0,0.002387,0.006475,3533985,1962381,0,0,7191,0,1,1 +1774033473.439299,0.50,4,3992.50,51.21,1657.64,2004.95,0.00,1.491757,0.022068,221,22,0.002494,0.006553,3534069,1962518,0,0,7194,0,1,1 +1774033478.438653,0.40,4,3992.50,51.21,1657.64,2004.94,0.00,3518891905314.543945,3518891905315.836914,199,0,0.002285,0.006365,3534139,1962641,0,0,7196,0,1,1 +1774033483.439286,0.35,4,3992.50,51.21,1657.65,2004.93,0.00,1.831604,0.000195,238,2,0.001843,0.005098,3534196,1962740,0,0,7199,0,1,1 +1774033488.439448,0.50,4,3992.50,51.15,1660.04,2002.54,0.00,3518322888719.232910,3518322888721.241699,11,0,0.002289,0.006356,3534266,1962862,0,0,7201,0,1,1 +1774033493.439009,34.93,4,3992.50,57.55,1416.00,2253.02,0.00,0.176969,0.000000,199,0,84.331571,0.055377,3543172,1966626,0,0,7204,0,1,1 +1774033498.437568,30.45,4,3992.50,57.49,1418.09,2250.94,0.00,3519451407083.331055,0.000000,11,0,122.204527,0.049150,3555675,1970299,0,0,7206,0,1,1 +1774033503.436868,28.29,4,3992.50,57.54,1416.25,2252.79,0.00,2.009070,0.000195,238,2,121.584632,0.054715,3568078,1974358,0,0,7209,0,1,1 +1774033508.436017,28.53,4,3992.50,57.43,1420.62,2248.43,0.00,0.000000,0.000000,238,2,120.788024,0.049173,3580452,1977891,0,0,7211,0,1,1 +1774033513.434950,28.36,4,3992.50,57.53,1416.44,2252.60,0.00,3519188488054.972656,3519188488056.981445,11,0,119.991376,0.045490,3592728,1981276,0,0,7214,0,1,1 +1774033518.437990,27.74,4,3992.50,57.52,1416.96,2252.09,0.00,0.000000,0.000000,11,0,119.094307,0.050173,3604980,1984946,0,0,7216,0,1,1 +1774033523.434737,28.41,4,3992.50,57.36,1423.31,2245.62,0.00,0.000000,0.000000,11,0,119.441486,0.050646,3617180,1988815,0,0,7219,0,1,1 +1774033528.439171,28.63,4,3992.50,57.44,1420.15,2248.95,0.00,0.000000,0.000000,11,0,120.061804,0.059713,3629553,1993153,0,0,7221,0,1,1 +1774033533.438937,12.81,4,3992.50,52.31,1621.03,2048.09,0.00,0.050002,0.000000,70,0,97.943769,0.049880,3639673,1996712,0,0,7224,0,1,1 +1774033538.439101,18.55,4,3992.50,51.90,1637.04,2031.98,0.00,1.441847,0.022070,221,22,26.157562,0.118863,3647384,2002783,0,0,7226,0,1,1 +1774033543.439427,11.22,4,3992.50,51.91,1636.70,2032.32,0.00,0.516861,3518207313737.186523,238,2,14.081150,0.060960,3651371,2005946,0,0,7229,0,1,1 +1774033548.437494,3.26,4,3992.50,51.72,1643.96,2025.04,0.00,766.048529,6509.338743,43844,141987,0.007516,0.010581,3651544,2006154,0,0,7231,0,1,1 +1774033553.439424,0.40,4,3992.50,51.48,1653.58,2015.46,0.00,3517079469833.169922,3517079464096.146973,199,0,0.004823,0.007799,3651648,2006298,0,0,7234,0,1,1 +1774033558.435590,0.55,4,3992.50,51.47,1653.96,2015.07,0.00,764.109330,6512.012767,43086,142127,0.004721,0.007867,3651751,2006442,0,0,7236,0,1,1 +1774033563.439145,24.14,4,3992.50,51.48,1647.43,2015.57,0.00,3515937318323.104004,3515937312582.397461,221,22,0.061718,101.074829,3656404,2017042,0,0,7239,0,1,1 +1774033568.439325,25.94,4,3992.50,50.97,1665.41,1995.71,0.00,3518310377310.966309,3518310377312.386230,70,0,0.051957,103.945046,3660271,2027764,0,0,7241,0,1,1 +1774033573.436658,1.00,4,3992.50,50.85,1669.93,1991.04,0.00,0.127021,0.000000,199,0,0.007274,0.010292,3660423,2027964,0,0,7244,0,1,1 +1774033578.439444,13.81,4,3992.50,52.36,1614.88,2049.91,0.00,0.000000,0.000000,199,0,40.043146,0.026220,3664846,2029452,0,0,7246,0,1,1 +1774033583.438555,0.60,4,3992.50,51.68,1641.21,2023.57,0.00,1.832162,0.000195,238,2,0.004198,0.008181,3664953,2029598,0,0,7249,0,1,1 +1774033588.434648,0.40,4,3992.50,51.08,1664.95,1999.82,0.00,3521188713630.188477,3521188713632.198730,11,0,0.003906,0.007159,3665055,2029740,0,0,7251,0,1,1 +1774033593.434609,0.35,4,3992.50,50.96,1669.43,1995.32,0.00,783.444626,6712.566694,43219,143670,0.003878,0.007132,3665155,2029881,0,0,7254,0,1,1 +1774033598.434529,0.45,4,3992.50,50.95,1669.82,1994.95,0.00,3518493670072.875488,3518493664142.233887,221,22,0.003878,0.007123,3665255,2030021,0,0,7256,0,1,1 +1774033603.434544,0.35,4,3992.50,50.95,1670.09,1994.69,0.00,0.516893,3518426469238.223633,238,2,0.003408,0.005865,3665340,2030138,0,0,7259,0,1,1 +1774033608.436400,0.40,4,3992.50,50.95,1670.10,1994.68,0.00,3517131472415.254883,3517131472417.212891,70,0,0.003902,0.007018,3665442,2030279,0,0,7261,0,1,1 +1774033613.438674,0.35,4,3992.50,50.95,1669.86,1994.91,0.00,787.091469,6709.616055,43977,143829,0.003291,0.007033,3665533,2030415,0,0,7264,0,1,1 +1774033618.439034,0.45,4,3992.50,50.95,1669.89,1994.89,0.00,3518184105711.323242,3518184099784.573242,238,2,0.003971,0.007197,3665639,2030561,0,0,7266,0,1,1 +1774033623.438477,0.45,4,3992.50,50.92,1671.05,1993.73,0.00,3518828960814.656738,0.021877,221,22,0.003754,0.007108,3665738,2030700,0,0,7269,0,1,1 +1774033628.438845,0.80,4,3992.50,50.92,1671.06,1993.71,0.00,3518178501736.489746,3518178501737.959473,11,0,0.003620,0.005907,3665830,2030820,0,0,7271,0,1,1 +1774033633.438655,0.45,4,3992.50,50.95,1670.11,1994.67,0.00,2.008865,0.000195,238,2,0.003878,0.007133,3665930,2030961,0,0,7274,0,1,1 +1774033638.439068,0.35,4,3992.50,50.95,1670.12,1994.66,0.00,3518146795714.016113,3518146795716.024414,11,0,0.003878,0.007122,3666030,2031101,0,0,7276,0,1,1 +1774033643.438998,11.28,4,3992.50,51.23,1656.56,2005.86,0.00,787.510311,6742.978660,43977,144225,0.026577,40.065052,3667743,2035416,0,0,7279,0,1,1 +1774033648.434610,0.55,4,3992.50,51.06,1663.27,1999.17,0.00,3521527693130.963867,4.026483,43219,144281,0.003519,0.008860,3667848,2035582,0,0,7281,0,1,1 +1774033653.438598,0.40,4,3992.50,51.05,1663.54,1998.89,0.00,3515633698350.841309,3515633692392.123535,11,0,0.002287,0.006361,3667918,2035705,0,0,7284,0,1,1 +1774033658.437929,0.45,4,3992.50,51.08,1662.57,1999.88,0.00,0.000000,0.000000,11,0,0.001827,0.005097,3667974,2035804,0,0,7286,0,1,1 +1774033663.434607,0.40,4,3992.50,51.08,1662.57,1999.87,0.00,783.959519,6751.529880,43219,144375,0.002290,0.006370,3668044,2035927,0,0,7289,0,1,1 +1774033668.434605,0.50,4,3992.50,51.08,1662.57,1999.87,0.00,3518438939171.719727,3518438933208.111816,11,0,0.002289,0.006356,3668114,2036049,0,0,7291,0,1,1 +1774033673.434601,0.35,4,3992.50,51.10,1661.84,2000.60,0.00,2.008791,0.000195,238,2,0.002289,0.006366,3668184,2036172,0,0,7294,0,1,1 +1774033678.436946,0.50,4,3992.50,51.10,1661.84,2000.60,0.00,785.122329,6749.919493,43977,144441,0.002300,0.006359,3668255,2036294,0,0,7296,0,1,1 +1774033683.434515,0.40,4,3992.50,51.10,1661.84,2000.59,0.00,3520148558590.914062,3520148552622.249023,199,0,0.001895,0.005189,3668316,2036399,0,0,7299,0,1,1 +1774033688.436800,0.40,4,3992.50,51.10,1661.85,2000.59,0.00,1.314341,0.022060,221,22,0.002363,0.006446,3668392,2036527,0,0,7301,0,1,1 +1774033693.434609,0.35,4,3992.50,51.12,1661.12,2001.32,0.00,0.000000,0.000000,221,22,0.002445,0.006495,3668472,2036660,0,0,7304,0,1,1 +1774033698.438678,0.35,4,3992.50,51.12,1661.12,2001.32,0.00,3515575837411.560547,3515575837412.852539,199,0,0.002287,0.006351,3668542,2036782,0,0,7306,0,1,1 +1774033703.439514,0.50,4,3992.50,51.12,1661.12,2001.32,0.00,3517848852180.344727,0.000000,11,0,0.001839,0.005106,3668599,2036882,0,0,7309,0,1,1 +1774033708.438663,0.40,4,3992.50,51.16,1659.40,2003.04,0.00,0.176983,0.000000,199,0,0.002264,0.006357,3668667,2037004,0,0,7311,0,1,1 +1774033713.435279,37.11,4,3992.50,57.23,1428.05,2240.78,0.00,787.855633,6757.778423,43977,144528,90.393638,0.043334,3678144,2039836,0,0,7314,0,1,1 +1774033718.437183,29.81,4,3992.50,57.36,1423.28,2245.59,0.00,3517097864951.445801,0.076338,43219,144602,122.126050,0.029933,3690768,2041893,0,0,7316,0,1,1 +1774033723.435328,28.47,4,3992.50,57.26,1427.02,2241.83,0.00,3519743215155.332520,3519743209183.223633,70,0,122.015164,0.030448,3703275,2044003,0,0,7319,0,1,1 +1774033728.434520,28.23,4,3992.50,57.19,1429.89,2238.97,0.00,1.442128,0.022074,221,22,120.387988,0.023655,3715704,2045566,0,0,7321,0,1,1 +1774033733.434510,28.40,4,3992.50,57.18,1430.32,2238.56,0.00,0.516895,3518443710263.465820,238,2,120.169783,0.019570,3728240,2046861,0,0,7324,0,1,1 +1774033738.435566,28.70,4,3992.50,57.40,1421.57,2247.28,0.00,0.000000,0.000000,238,2,120.144011,0.022714,3740665,2048253,0,0,7326,0,1,1 +1774033743.438502,27.97,4,3992.50,57.41,1420.84,2247.83,0.00,780.971181,6749.502066,43219,144684,118.500072,0.032386,3752997,2050558,0,0,7329,0,1,1 +1774033748.438814,28.25,4,3992.50,57.32,1424.78,2244.05,0.00,3518217827516.195801,3518217821546.541016,11,0,119.759079,0.033395,3765269,2052904,0,0,7331,0,1,1 +1774033753.438715,10.90,4,3992.50,52.37,1618.43,2050.49,0.00,2.008829,0.000195,238,2,91.930034,0.020808,3774737,2054410,0,0,7334,0,1,1 +1774033758.439083,0.60,4,3992.50,51.61,1648.14,2020.79,0.00,0.000000,0.000000,238,2,0.005190,0.007270,3774859,2054559,0,0,7336,0,1,1 +1774033763.436623,12.12,4,3992.50,51.65,1646.65,2022.20,0.00,781.951265,6757.082753,43230,145051,10.114251,0.053446,3777916,2056892,0,0,7339,0,1,1 +1774033768.438678,17.11,4,3992.50,51.37,1657.77,2011.06,0.00,3516991940355.493652,3516991934387.713379,70,0,30.102340,0.118773,3786227,2063432,0,0,7341,0,1,1 +1774033773.438589,1.65,4,3992.50,51.26,1661.88,2006.92,0.00,0.126955,0.000000,199,0,0.015992,0.013093,3786546,2063734,0,0,7344,0,1,1 +1774033778.438721,0.40,4,3992.50,51.27,1661.68,2007.15,0.00,3518344117016.080566,0.000000,70,0,0.003878,0.007122,3786646,2063874,0,0,7346,0,1,1 +1774033783.438666,0.90,4,3992.50,51.35,1658.30,2010.50,0.00,3518476154895.708496,0.000000,11,0,0.003878,0.007132,3786746,2064015,0,0,7349,0,1,1 +1774033788.439320,0.50,4,3992.50,51.37,1657.58,2011.23,0.00,0.049993,0.000000,70,0,0.003878,0.007121,3786846,2064155,0,0,7351,0,1,1 +1774033793.434562,0.45,4,3992.50,51.39,1656.85,2011.95,0.00,1.443268,0.022091,221,22,0.003424,0.005871,3786932,2064272,0,0,7354,0,1,1 +1774033798.436417,0.45,4,3992.50,51.39,1656.86,2011.94,0.00,3517132489193.008301,3517132489194.427734,70,0,0.003889,0.007120,3787033,2064412,0,0,7356,0,1,1 +1774033803.434607,0.45,4,3992.50,51.39,1656.88,2011.93,0.00,788.052612,6757.499144,44032,146175,0.003993,0.007278,3787142,2064562,0,0,7359,0,1,1 +1774033808.439453,0.65,4,3992.50,51.41,1655.98,2012.82,0.00,3515030571224.888672,3515030565263.430176,11,0,0.003882,0.007124,3787243,2064703,0,0,7361,0,1,1 +1774033813.434572,0.35,4,3992.50,51.41,1656.00,2012.80,0.00,0.000000,0.000000,11,0,0.003882,0.007139,3787343,2064844,0,0,7364,0,1,1 +1774033818.438853,0.40,4,3992.50,51.41,1656.02,2012.79,0.00,0.000000,0.000000,11,0,0.003492,0.005903,3787434,2064964,0,0,7366,0,1,1 +1774033823.434537,0.35,4,3992.50,51.41,1656.04,2012.77,0.00,2.010524,0.000195,238,2,0.003894,0.007151,3787535,2065106,0,0,7369,0,1,1 +1774033828.435342,0.50,4,3992.50,51.41,1656.05,2012.75,0.00,785.695410,6754.137466,44041,146324,0.004390,0.008208,3787649,2065268,0,0,7371,0,1,1 +1774033833.434540,0.50,4,3992.50,51.21,1663.69,2005.11,0.00,3519001910073.859863,3519001904105.331055,199,0,0.004362,0.008220,3787760,2065431,0,0,7374,0,1,1 +1774033838.434611,0.45,4,3992.50,51.21,1663.71,2005.10,0.00,783.581623,6755.129693,43283,146316,0.004530,0.006462,3787868,2065560,0,0,7376,0,1,1 +1774033843.434689,2.56,4,3992.50,51.21,1663.71,2005.08,0.00,3518382832902.109863,3518382826928.736816,238,2,0.004938,0.007542,3787990,2065715,0,0,7379,0,1,1 +1774033848.438998,0.40,4,3992.50,51.03,1670.96,1997.85,0.00,3515406900011.618164,0.021856,221,22,0.003875,0.007116,3788090,2065855,0,0,7381,0,1,1 +1774033853.439461,0.50,4,3992.50,51.05,1669.99,1998.82,0.00,3518111466941.161133,3518111466942.453613,199,0,0.004799,0.007789,3788192,2065998,0,0,7384,0,1,1 +1774033858.435228,0.55,4,3992.50,51.05,1669.99,1998.80,0.00,1.316056,0.022089,221,22,0.003398,0.005848,3788276,2066113,0,0,7386,0,1,1 +1774033863.438653,0.45,4,3992.50,50.95,1673.86,1994.95,0.00,3516028001180.075195,3516028001181.367188,199,0,0.003850,0.007127,3788374,2066254,0,0,7389,0,1,1 +1774033868.439127,10.06,4,3992.50,51.81,1638.30,2028.67,0.00,3518104003623.873047,0.000000,11,0,0.029159,40.662887,3790347,2070711,0,0,7391,0,1,1 +1774033873.437345,28.59,4,3992.50,51.66,1638.14,2022.65,0.00,0.177016,0.000000,199,0,0.065617,118.686435,3795382,2082974,0,0,7394,0,1,1 +1774033878.434618,12.00,4,3992.50,51.19,1656.65,2004.33,0.00,1.832835,0.000195,238,2,0.014425,45.821408,3796203,2087841,0,0,7396,0,1,1 +1774033883.438905,13.47,4,3992.50,51.03,1666.79,1997.99,0.00,804.870074,6954.614472,44158,147852,40.026959,0.022093,3800559,2089183,0,0,7399,0,1,1 +1774033888.438897,0.80,4,3992.50,51.01,1667.47,1997.29,0.00,3518442926250.566895,3518442920096.078125,221,22,0.005588,0.009984,3800700,2089364,0,0,7401,0,1,1 +1774033893.438593,10.56,4,3992.50,51.24,1656.36,2006.16,0.00,806.126064,6989.058827,44158,148116,0.028147,40.065323,3802651,2093686,0,0,7404,0,1,1 +1774033898.439441,0.70,4,3992.50,51.25,1655.91,2006.60,0.00,3517840399516.112305,6.111268,43400,148186,0.003701,0.009356,3802758,2093863,0,0,7406,0,1,1 +1774033903.439268,0.50,4,3992.50,50.87,1670.95,1991.56,0.00,3518558715875.300781,3518558709683.776855,70,0,0.002289,0.006380,3802828,2093987,0,0,7409,0,1,1 +1774033908.438807,0.30,4,3992.50,50.90,1669.47,1993.04,0.00,0.000000,0.000000,70,0,0.002189,0.006331,3802899,2094107,0,0,7411,0,1,1 +1774033913.436390,0.35,4,3992.50,50.90,1669.47,1993.04,0.00,3520138383343.558105,0.000000,11,0,0.001990,0.005165,3802959,2094211,0,0,7414,0,1,1 +1774033918.437342,0.40,4,3992.50,50.90,1669.48,1993.03,0.00,0.000000,0.000000,11,0,0.002288,0.006355,3803029,2094333,0,0,7416,0,1,1 +1774033923.438531,0.45,4,3992.50,50.91,1669.27,1993.25,0.00,2.008312,0.000195,238,2,0.002288,0.006364,3803099,2094456,0,0,7419,0,1,1 +1774033928.439169,0.35,4,3992.50,50.74,1675.82,1986.69,0.00,3517988011769.009766,0.021872,221,22,0.002314,0.006386,3803171,2094580,0,0,7421,0,1,1 +1774033933.439397,0.35,4,3992.50,50.80,1673.62,1988.89,0.00,3518276752241.356445,3518276752242.649414,199,0,0.001932,0.005223,3803235,2094687,0,0,7424,0,1,1 +1774033938.434534,0.35,4,3992.50,50.80,1673.63,1988.89,0.00,1.316222,0.022092,221,22,0.002335,0.006419,3803308,2094813,0,0,7426,0,1,1 +1774033943.434529,0.40,4,3992.50,50.80,1673.63,1988.88,0.00,3518441015131.198242,3518441015132.668457,11,0,0.002426,0.006467,3803387,2094944,0,0,7429,0,1,1 +1774033948.439071,0.40,4,3992.50,50.80,1673.64,1988.88,0.00,0.176793,0.000000,199,0,0.002282,0.006346,3803457,2095066,0,0,7431,0,1,1 +1774033953.434530,0.40,4,3992.50,50.80,1673.64,1988.88,0.00,3521635621744.132324,0.000000,11,0,0.001833,0.005103,3803513,2095165,0,0,7434,0,1,1 +1774033958.434601,0.40,4,3992.50,50.80,1673.64,1988.87,0.00,0.000000,0.000000,11,0,0.002276,0.006356,3803582,2095287,0,0,7436,0,1,1 +1774033963.436079,39.75,4,3992.50,57.25,1427.30,2241.58,0.00,803.270650,6998.942659,43400,148411,87.100528,0.042162,3812611,2098008,0,0,7439,0,1,1 +1774033968.436806,28.01,4,3992.50,57.64,1411.92,2256.90,0.00,3517925305623.356445,3517925299425.285645,221,22,118.947182,0.041130,3824728,2100960,0,0,7441,0,1,1 +1774033973.438190,27.80,4,3992.50,57.41,1421.27,2247.62,0.00,801.794309,6999.136669,43400,148501,118.332041,0.043962,3836850,2104061,0,0,7444,0,1,1 +1774033978.438425,27.61,4,3992.50,57.33,1424.34,2244.55,0.00,3518271923183.012695,3518271916985.716309,11,0,119.959913,0.043253,3849056,2107203,0,0,7446,0,1,1 +1774033983.438552,27.78,4,3992.50,57.39,1421.75,2247.07,0.00,0.176949,0.000000,199,0,118.961063,0.048007,3861218,2110830,0,0,7449,0,1,1 +1774033988.434548,28.26,4,3992.50,57.44,1419.89,2248.98,0.00,808.039024,7006.737162,44158,148553,119.457971,0.028482,3873344,2112950,0,0,7451,0,1,1 +1774033993.438443,27.53,4,3992.50,57.41,1421.00,2247.87,0.00,0.000000,0.170765,44158,148572,119.875839,0.020460,3885844,2114261,0,0,7454,0,1,1 +1774033998.434654,28.07,4,3992.50,57.44,1419.91,2249.00,0.00,3521105637137.911133,3521105630939.484863,11,0,118.454315,0.027973,3898032,2116271,0,0,7456,0,1,1 +1774034003.434546,13.68,4,3992.50,53.78,1563.52,2105.42,0.00,807.654382,7001.478085,44164,148616,104.347565,0.024250,3908789,2117987,0,0,7459,0,1,1 +1774034008.439423,0.70,4,3992.50,52.08,1630.08,2038.88,0.00,3515008745875.205566,3515008739687.374512,199,0,0.005621,0.006722,3908915,2118129,0,0,7461,0,1,1 +1774034013.440892,13.54,4,3992.50,52.33,1619.97,2049.00,0.00,1.831298,0.000195,238,2,14.089348,0.070735,3913161,2121455,0,0,7464,0,1,1 +1774034018.439095,16.15,4,3992.50,51.75,1642.88,2026.01,0.00,3519702252521.447754,3519702252523.457031,11,0,26.155237,0.112089,3920588,2127401,0,0,7466,0,1,1 +1774034023.438562,0.45,4,3992.50,51.63,1647.65,2021.29,0.00,0.050005,0.000000,70,0,0.003886,0.007141,3920689,2127543,0,0,7469,0,1,1 +1774034028.436991,0.35,4,3992.50,51.62,1648.01,2020.94,0.00,0.000000,0.000000,70,0,0.003260,0.006887,3920777,2127676,0,0,7471,0,1,1 +1774034033.438492,24.10,4,3992.50,52.23,1618.08,2045.09,0.00,1.441462,0.022064,221,22,0.048946,97.914869,3924291,2137973,0,0,7474,0,1,1 +1774034038.437751,26.28,4,3992.50,51.82,1632.45,2028.76,0.00,806.338828,7179.770415,44174,151029,0.034041,107.170346,3926771,2149131,0,0,7476,0,1,1 +1774034043.434749,0.95,4,3992.50,51.71,1636.59,2024.60,0.00,3520550937002.014160,3520550930625.699707,221,22,0.007046,0.009658,3926916,2149319,0,0,7479,0,1,1 +1774034048.438507,12.63,4,3992.50,50.90,1671.84,1992.70,0.00,821.270826,7202.407922,43531,151321,40.033722,0.023269,3931292,2150688,0,0,7481,0,1,1 +1774034053.434539,0.65,4,3992.50,50.85,1673.71,1990.82,0.00,3521231532049.303223,3521231525658.298828,221,22,0.004391,0.008408,3931407,2150841,0,0,7484,0,1,1 +1774034058.434590,0.35,4,3992.50,50.85,1673.49,1991.05,0.00,3518401468255.913574,3518401468257.383789,11,0,0.003873,0.007118,3931507,2150981,0,0,7486,0,1,1 +1774034063.434611,0.40,4,3992.50,50.85,1673.50,1991.04,0.00,2.008781,0.000195,238,2,0.003878,0.007132,3931607,2151122,0,0,7489,0,1,1 +1774034068.434527,0.45,4,3992.50,50.85,1673.52,1991.03,0.00,821.384940,7208.252591,43531,151510,0.004535,0.008044,3931709,2151264,0,0,7491,0,1,1 +1774034073.438882,0.30,4,3992.50,50.88,1672.30,1992.24,0.00,3515375644913.752441,3515375638533.087402,221,22,0.003405,0.005847,3931794,2151380,0,0,7494,0,1,1 +1774034078.438789,0.45,4,3992.50,50.88,1672.32,1992.23,0.00,3518502095689.956055,3518502095691.425781,11,0,0.003878,0.007154,3931894,2151522,0,0,7496,0,1,1 +1774034083.439210,0.45,4,3992.50,50.88,1672.32,1992.21,0.00,0.176938,0.000000,199,0,0.003865,0.007132,3931993,2151663,0,0,7499,0,1,1 +1774034088.438550,0.35,4,3992.50,50.88,1672.34,1992.21,0.00,0.000000,0.000000,199,0,0.003959,0.007199,3932098,2151809,0,0,7501,0,1,1 +1774034093.439141,0.40,4,3992.50,50.88,1672.35,1992.19,0.00,3518021584184.232910,0.000000,11,0,0.003428,0.005872,3932185,2151927,0,0,7504,0,1,1 +1774034098.439220,0.45,4,3992.50,50.88,1672.36,1992.18,0.00,0.049999,0.000000,70,0,0.003953,0.007162,3932290,2152070,0,0,7506,0,1,1 +1774034103.438669,1.30,4,3992.50,50.80,1675.60,1988.94,0.00,3518824952427.247559,0.000000,11,0,0.003878,0.007133,3932390,2152211,0,0,7509,0,1,1 +1774034108.439075,0.95,4,3992.50,50.80,1675.61,1988.92,0.00,1.491773,0.022069,221,22,0.003865,0.007122,3932489,2152351,0,0,7511,0,1,1 +1774034113.439288,0.55,4,3992.50,50.83,1674.41,1990.13,0.00,0.516873,3518288034877.814453,238,2,0.003524,0.006486,3932581,2152479,0,0,7514,0,1,1 +1774034118.439065,11.65,4,3992.50,51.50,1646.27,2016.19,0.00,3518593871458.442871,3518593871460.451660,11,0,0.020543,40.066286,3933842,2156785,0,0,7516,0,1,1 +1774034123.434782,0.80,4,3992.50,51.31,1653.61,2008.80,0.00,1.493174,0.022089,221,22,0.003370,0.008203,3933937,2156941,0,0,7519,0,1,1 +1774034128.434530,0.85,4,3992.50,51.04,1663.98,1998.43,0.00,825.990474,7242.950166,44289,152144,0.002785,0.007443,3934019,2157085,0,0,7521,0,1,1 +1774034133.438621,0.70,4,3992.50,50.88,1670.42,1991.99,0.00,3515560509968.508301,3515560503557.117188,221,22,0.002791,0.007455,3934102,2157231,0,0,7524,0,1,1 +1774034138.437625,0.65,4,3992.50,50.68,1678.07,1984.34,0.00,0.000000,0.000000,221,22,0.002941,0.005697,3934180,2157342,0,0,7526,0,1,1 +1774034143.437931,0.60,4,3992.50,50.69,1677.84,1984.57,0.00,825.898341,7242.218050,44289,152163,0.003353,0.006767,3934272,2157478,0,0,7529,0,1,1 +1774034148.435520,0.65,4,3992.50,50.51,1685.01,1977.40,0.00,0.000000,0.042989,44289,152207,0.002290,0.006359,3934342,2157600,0,0,7531,0,1,1 +1774034153.439040,0.55,4,3992.50,50.51,1684.77,1977.64,0.00,0.000000,6.005928,44289,152247,0.003208,0.007031,3934414,2157726,0,0,7534,0,1,1 +1774034158.438943,0.55,4,3992.50,50.53,1684.04,1978.38,0.00,3518505535323.644043,3518505528900.753418,221,22,0.001856,0.005120,3934472,2157826,0,0,7536,0,1,1 +1774034163.438944,0.65,4,3992.50,50.48,1685.86,1976.55,0.00,3518436359531.170898,3518436359532.640625,11,0,0.002352,0.006459,3934547,2157955,0,0,7539,0,1,1 +1774034168.434529,0.70,4,3992.50,50.49,1685.62,1976.79,0.00,2.010564,0.000195,238,2,0.002392,0.006445,3934624,2158084,0,0,7541,0,1,1 +1774034173.438605,0.70,4,3992.50,50.49,1685.62,1976.78,0.00,820.702185,7242.850089,43531,152247,0.002349,0.006411,3934698,2158211,0,0,7544,0,1,1 +1774034178.438823,0.50,4,3992.50,50.49,1685.63,1976.78,0.00,3518283677900.340332,3518283671475.246582,11,0,0.001818,0.005089,3934753,2158309,0,0,7546,0,1,1 +1774034183.439072,0.65,4,3992.50,50.49,1685.64,1976.78,0.00,0.176944,0.000000,199,0,0.002352,0.006428,3934828,2158436,0,0,7549,0,1,1 +1774034188.434496,34.68,4,3992.50,57.14,1431.86,2237.03,0.00,1.833514,0.000195,238,2,71.972720,0.037239,3942434,2160756,0,0,7551,0,1,1 +1774034193.439452,28.61,4,3992.50,57.22,1428.44,2240.41,0.00,3514953098090.555664,3514953098092.562012,11,0,118.645765,0.020273,3954596,2162262,0,0,7554,0,1,1 +1774034198.437242,28.18,4,3992.50,57.31,1425.02,2243.82,0.00,2.009678,0.000195,238,2,119.635219,0.073021,3966952,2167738,0,0,7556,0,1,1 +1774034203.435091,27.67,4,3992.50,57.17,1430.38,2238.50,0.00,3519951304672.543945,0.021884,221,22,118.233567,0.074375,3979246,2173337,0,0,7559,0,1,1 +1774034208.435023,28.35,4,3992.50,57.06,1434.87,2234.00,0.00,0.516902,3518485173576.761230,238,2,120.198336,0.097468,3992033,2180676,0,0,7561,0,1,1 +1774034213.439441,27.59,4,3992.50,57.10,1433.02,2235.76,0.00,3515330558701.121094,3515330558703.127930,11,0,118.491100,0.101496,4004730,2188272,0,0,7564,0,1,1 +1774034218.435256,27.87,4,3992.50,57.12,1432.58,2236.25,0.00,0.050042,0.000000,70,0,119.897581,0.105463,4017489,2196240,0,0,7566,0,1,1 +1774034223.434676,27.43,4,3992.50,57.33,1424.11,2244.69,0.00,823.425547,7250.027861,43531,152547,119.615389,0.110757,4030426,2204696,0,0,7569,0,1,1 +1774034228.437454,17.05,4,3992.50,57.09,1433.55,2235.38,0.00,0.000781,0.087256,43532,152596,118.731236,0.106553,4043171,2212827,0,0,7571,0,1,1 +1774034233.439123,0.75,4,3992.50,52.86,1599.23,2069.69,0.00,3517263047172.799316,3517263040747.582031,221,22,0.204592,0.004468,4043301,2212954,0,0,7574,0,1,1 +1774034238.438486,17.29,4,3992.50,51.12,1667.44,2001.43,0.00,3518885700717.194336,3518885700718.614746,70,0,24.144907,0.108147,4050315,2218378,0,0,7576,0,1,1 +1774034243.438400,10.47,4,3992.50,51.67,1645.92,2022.92,0.00,3518497108481.624023,0.000000,11,0,16.098154,0.073823,4055052,2222144,0,0,7579,0,1,1 +1774034248.438575,0.60,4,3992.50,51.42,1655.49,2013.31,0.00,0.000000,0.000000,11,0,0.004126,0.007227,4055154,2222282,0,0,7581,0,1,1 +1774034253.439008,0.50,4,3992.50,51.04,1670.66,1998.18,0.00,0.000000,0.000000,11,0,0.003865,0.007132,4055253,2222423,0,0,7584,0,1,1 +1774034258.438553,0.45,4,3992.50,51.04,1670.60,1998.23,0.00,0.000000,0.000000,11,0,0.003260,0.006886,4055341,2222556,0,0,7586,0,1,1 +1774034263.438599,24.01,4,3992.50,52.01,1626.71,2036.27,0.00,0.000000,0.000000,11,0,0.061633,100.560706,4059829,2233486,0,0,7589,0,1,1 +1774034268.439008,26.68,4,3992.50,51.98,1626.40,2035.15,0.00,2.008625,0.000195,238,2,0.027445,104.545701,4061722,2244064,0,0,7591,0,1,1 +1774034273.439162,0.85,4,3992.50,51.83,1632.43,2029.09,0.00,0.000000,0.000000,238,2,0.007519,0.010927,4061883,2244277,0,0,7594,0,1,1 +1774034278.438541,14.73,4,3992.50,52.24,1619.02,2045.23,0.00,3518873968704.579590,0.021878,221,22,40.070234,0.028558,4066285,2245822,0,0,7596,0,1,1 +1774034283.434530,0.50,4,3992.50,51.40,1652.00,2012.25,0.00,0.000000,0.000000,221,22,0.003727,0.005870,4066371,2245939,0,0,7599,0,1,1 +1774034288.434661,0.50,4,3992.50,50.95,1669.61,1994.65,0.00,3518344660936.585938,3518344660937.878906,199,0,0.003272,0.006885,4066460,2246072,0,0,7601,0,1,1 +1774034293.438886,0.40,4,3992.50,50.92,1670.56,1993.70,0.00,842.389690,7430.181950,43675,155465,0.003887,0.007126,4066561,2246213,0,0,7604,0,1,1 +1774034298.434627,0.45,4,3992.50,50.92,1670.56,1993.70,0.00,4.064302,19.648866,44433,155598,0.003881,0.007116,4066661,2246352,0,0,7606,0,1,1 +1774034303.436778,0.45,4,3992.50,50.92,1670.72,1993.55,0.00,0.000000,0.043243,44433,155637,0.002961,0.004608,4066733,2246446,0,0,7609,0,1,1 +1774034308.434620,0.45,4,3992.50,50.94,1669.86,1994.41,0.00,3519956581102.469727,3519956574490.643066,199,0,0.003917,0.007157,4066836,2246588,0,0,7611,0,1,1 +1774034313.434681,0.30,4,3992.50,50.94,1669.88,1994.40,0.00,3518394202143.332031,0.000000,11,0,0.003420,0.005865,4066922,2246705,0,0,7614,0,1,1 +1774034318.436057,0.45,4,3992.50,50.94,1669.88,1994.39,0.00,0.000000,0.000000,11,0,0.003958,0.007196,4067027,2246851,0,0,7616,0,1,1 +1774034323.438909,0.50,4,3992.50,50.74,1677.52,1986.74,0.00,1.491044,0.022058,221,22,0.003927,0.007161,4067131,2246995,0,0,7619,0,1,1 +1774034328.439108,0.45,4,3992.50,50.70,1679.34,1984.91,0.00,3518297241869.853516,3518297241871.323730,11,0,0.003922,0.007137,4067234,2247136,0,0,7621,0,1,1 +1774034333.439215,0.35,4,3992.50,50.73,1678.14,1986.14,0.00,0.049999,0.000000,70,0,0.002454,0.003189,4067306,2247214,0,0,7624,0,1,1 +1774034338.437894,0.30,4,3992.50,50.73,1678.16,1986.12,0.00,1.442276,0.022076,221,22,0.001738,0.002627,4067353,2247273,0,0,7626,0,1,1 +1774034343.439515,0.75,4,3992.50,50.74,1677.71,1986.57,0.00,0.000000,0.000000,221,22,0.001688,0.002512,4067394,2247327,0,0,7629,0,1,1 +1774034348.434662,0.70,4,3992.50,50.77,1676.55,1987.73,0.00,0.517397,3521855294824.854004,238,2,0.013720,0.504074,4068187,2248153,0,0,7631,0,1,1 +1774034353.436381,1.56,4,3992.50,50.96,1669.20,1995.07,0.00,3517228287574.160645,3517228287576.118652,70,0,0.040706,3.465475,4071224,2251745,0,0,7634,0,1,1 +1774034358.438537,1.91,4,3992.50,51.04,1665.97,1998.27,0.00,842.865023,7453.346405,43675,156066,0.054244,3.474535,4075191,2256111,0,0,7636,0,1,1 +1774034363.438860,2.27,4,3992.50,50.99,1667.65,1996.38,0.00,3518209773369.122070,3518209766756.268555,11,0,0.041363,3.462744,4078324,2259585,0,0,7639,0,1,1 +1774034368.434962,2.02,4,3992.50,51.19,1659.71,2004.14,0.00,0.177091,0.000000,199,0,0.048953,3.470162,4081838,2263592,0,0,7641,0,1,1 +1774034373.434517,16.25,4,3992.50,58.27,1387.41,2281.28,0.00,3518750452270.784668,0.000000,11,0,2.054733,3.460340,4089332,2271077,0,0,7644,0,1,1 +1774034378.434500,3.52,4,3992.50,58.29,1386.32,2282.34,0.00,843.281342,7456.742454,43675,156247,3.514859,3.511903,4101217,2284557,0,0,7646,0,1,1 +1774034383.438537,4.24,4,3992.50,58.12,1392.99,2275.54,0.00,4.057563,22.442133,44433,156424,3.792843,3.529717,4114827,2298417,0,0,7649,0,1,1 +1774034388.434637,3.17,4,3992.50,58.18,1390.65,2278.01,0.00,3521183875827.595215,3521183869190.530273,70,0,3.773945,3.525515,4127323,2312316,0,0,7651,0,1,1 +1774034393.435196,3.21,4,3992.50,58.27,1387.05,2281.59,0.00,0.126939,0.000000,199,0,3.563707,3.517501,4139523,2324964,0,0,7654,0,1,1 +1774034398.438126,3.11,4,3992.50,58.09,1394.50,2274.20,0.00,3516376904579.547852,0.000000,70,0,3.451805,3.509828,4151219,2337056,0,0,7656,0,1,1 +1774034403.438041,3.11,4,3992.50,58.12,1393.30,2275.36,0.00,843.242713,7479.374259,43675,156494,3.532552,3.501114,4162779,2348412,0,0,7659,0,1,1 +1774034408.436651,3.87,4,3992.50,58.45,1379.68,2288.60,0.00,3519415361264.418945,3519415354625.135254,221,22,3.771578,2.503555,4173285,2358539,0,0,7661,0,1,1 +1774034413.438890,2.03,4,3992.50,58.10,1393.42,2274.88,0.00,3516862677809.088867,3516862677810.558105,11,0,3.501993,0.100890,4180179,2364240,0,0,7664,0,1,1 +1774034418.438791,1.93,4,3992.50,58.07,1394.63,2273.70,0.00,843.313074,7495.698905,43688,156706,3.540073,0.075647,4187028,2369911,0,0,7666,0,1,1 +1774034423.435342,1.73,4,3992.50,57.87,1402.51,2265.78,0.00,3520865460928.160645,3520865454269.844727,221,22,3.495083,0.074132,4193865,2375438,0,0,7669,0,1,1 +1774034428.439093,1.77,4,3992.50,57.71,1408.95,2259.34,0.00,3515799856932.789062,3515799856934.258301,11,0,3.512680,0.075144,4200732,2380997,0,0,7671,0,1,1 +1774034433.438955,1.57,4,3992.50,57.85,1403.21,2265.09,0.00,2.008845,0.000195,238,2,3.513985,0.075395,4207570,2386600,0,0,7674,0,1,1 +1774034438.439053,1.78,4,3992.50,57.71,1408.71,2259.59,0.00,845.331865,7496.928906,44446,156821,3.496458,0.076205,4214414,2392188,0,0,7676,0,1,1 +1774034443.435050,2.75,4,3992.50,57.99,1397.70,2270.62,0.00,3521256145417.549805,3521256138762.502930,11,0,3.532881,0.073683,4221344,2397714,0,0,7679,0,1,1 +1774034448.439086,1.77,4,3992.50,58.05,1395.71,2272.61,0.00,1.490691,0.022053,221,22,3.551812,0.075131,4228116,2403509,0,0,7681,0,1,1 +1774034453.439261,1.62,4,3992.50,57.87,1402.49,2265.81,0.00,845.835703,7496.810539,44446,156855,3.464654,0.074932,4235110,2408865,0,0,7684,0,1,1 +1774034458.438490,1.68,4,3992.50,58.05,1395.35,2272.96,0.00,3518980242991.197266,3518980236340.255859,199,0,3.554351,0.075612,4241901,2414634,0,0,7686,0,1,1 +1774034463.439096,1.72,4,3992.50,57.96,1399.07,2269.23,0.00,3518010599438.488281,0.000000,11,0,3.564485,0.075429,4248882,2420233,0,0,7689,0,1,1 +1774034468.438563,1.78,4,3992.50,58.06,1395.45,2273.04,0.00,1.492054,0.022073,221,22,3.487156,0.073548,4255711,2425755,0,0,7691,0,1,1 +1774034473.436926,2.95,4,3992.50,57.77,1406.55,2261.94,0.00,846.142301,7499.582583,44446,156914,3.516496,0.075361,4262634,2431352,0,0,7694,0,1,1 +1774034478.435233,1.57,4,3992.50,58.06,1395.34,2273.28,0.00,3519628793850.417969,3519628787198.322754,70,0,3.517046,0.073790,4269476,2436892,0,0,7696,0,1,1 +1774034483.438825,1.68,4,3992.50,58.07,1394.94,2273.75,0.00,1.957383,0.000195,238,2,3.568040,0.076156,4276302,2442782,0,0,7699,0,1,1 +1774034488.436260,1.67,4,3992.50,57.72,1408.93,2259.79,0.00,3520243514122.503906,0.021886,221,22,3.433182,0.074231,4283183,2448149,0,0,7701,0,1,1 +1774034493.434696,1.32,4,3992.50,57.98,1398.77,2269.97,0.00,842.067879,7499.495047,43688,156945,3.569738,0.075702,4290038,2453959,0,0,7704,0,1,1 +1774034498.434646,1.83,4,3992.50,57.82,1404.96,2263.83,0.00,3518472394875.112793,3518472388220.994141,199,0,3.551810,0.074907,4296969,2459536,0,0,7706,0,1,1 +1774034503.438924,1.82,4,3992.50,57.79,1406.00,2262.77,0.00,1.830270,0.000195,238,2,3.464596,0.074023,4303771,2465104,0,0,7709,0,1,1 +1774034508.438980,1.62,4,3992.50,57.72,1409.04,2259.74,0.00,3518397809158.895020,3518397809160.853516,70,0,3.525570,0.075928,4310690,2470712,0,0,7711,0,1,1 +1774034513.439387,1.68,4,3992.50,57.96,1399.69,2269.28,0.00,3518150841255.494141,0.000000,11,0,3.525782,0.075191,4317572,2476310,0,0,7714,0,1,1 +1774034518.434764,1.78,4,3992.50,57.90,1402.12,2266.87,0.00,1.493275,0.022091,221,22,3.564473,0.076022,4324343,2482182,0,0,7716,0,1,1 +1774034523.439337,1.67,4,3992.50,57.70,1410.01,2259.11,0.00,0.000000,0.000000,221,22,3.454718,0.074299,4331327,2487541,0,0,7719,0,1,1 +1774034528.435907,1.72,4,3992.50,57.88,1403.15,2265.99,0.00,0.517249,3520851823146.899902,238,2,3.545393,0.075729,4338088,2493354,0,0,7721,0,1,1 +1774034533.437762,1.52,4,3992.50,57.82,1405.28,2263.89,0.00,0.000000,0.000000,238,2,3.575858,0.075438,4345082,2498925,0,0,7724,0,1,1 +1774034538.439059,1.62,4,3992.50,57.76,1407.74,2261.49,0.00,0.000000,0.000000,238,2,3.466351,0.074728,4351882,2504509,0,0,7726,0,1,1 +1774034543.439379,1.57,4,3992.50,57.69,1410.37,2258.83,0.00,0.000000,0.000000,238,2,3.525055,0.075026,4358792,2510073,0,0,7729,0,1,1 +1774034548.434860,1.68,4,3992.50,57.84,1404.82,2264.39,0.00,846.113216,7504.085566,44446,157124,3.525490,0.073875,4365689,2515606,0,0,7731,0,1,1 +1774034553.434528,1.68,4,3992.50,57.99,1398.62,2270.59,0.00,3518670571899.536133,3518670565247.679199,221,22,3.486630,0.075140,4372437,2521327,0,0,7734,0,1,1 +1774034558.438771,1.67,4,3992.50,57.95,1400.14,2269.04,0.00,0.000000,0.000000,221,22,3.541637,0.074734,4379516,2526809,0,0,7736,0,1,1 +1774034563.434834,1.78,4,3992.50,58.02,1397.70,2271.50,0.00,846.532037,7503.215667,44446,157165,3.552254,0.074722,4386328,2532573,0,0,7739,0,1,1 +1774034568.436166,1.57,4,3992.50,57.86,1404.02,2265.20,0.00,3517499984939.847656,3517499978290.178223,221,22,3.441129,0.074744,4393190,2537955,0,0,7741,0,1,1 +1774034573.436666,1.52,4,3992.50,57.94,1400.81,2268.42,0.00,3518085574821.270996,3518085574822.740723,11,0,3.566937,0.074022,4400024,2543679,0,0,7744,0,1,1 +1774034578.438472,2.13,4,3992.50,57.78,1406.88,2262.32,0.00,842.991893,7494.631567,43688,157178,3.561077,0.075953,4406994,2549289,0,0,7746,0,1,1 +1774034583.438811,1.52,4,3992.50,57.96,1399.93,2269.27,0.00,3518198137329.333496,3518198130675.566406,199,0,3.493219,0.073987,4413836,2554827,0,0,7749,0,1,1 +1774034588.438988,1.83,4,3992.50,57.76,1407.69,2261.49,0.00,843.089679,7497.092828,43688,157209,3.503874,0.076291,4420702,2560454,0,0,7751,0,1,1 +1774034593.434541,1.47,4,3992.50,58.00,1398.20,2271.00,0.00,0.000000,0.007331,43688,157219,3.539865,0.073571,4427605,2565980,0,0,7754,0,1,1 +1774034598.438866,1.83,4,3992.50,58.11,1394.16,2275.02,0.00,3515396291816.562988,3515396285168.068848,199,0,3.546716,0.076000,4434369,2571836,0,0,7756,0,1,1 +1774034603.434839,1.78,4,3992.50,57.79,1406.50,2262.71,0.00,1.833312,0.000195,238,2,3.497184,0.073576,4441361,2577117,0,0,7759,0,1,1 +1774034608.434618,1.72,4,3992.50,57.88,1403.04,2266.17,0.00,841.324860,7497.728267,43688,157255,3.547080,0.075466,4448152,2582930,0,0,7761,0,1,1 +1774034613.435249,1.57,4,3992.50,57.76,1407.92,2261.27,0.00,3517992839810.505371,3517992833157.068848,199,0,3.448988,0.074412,4455070,2588331,0,0,7764,0,1,1 +1774034618.434517,1.68,4,3992.50,58.03,1397.12,2272.08,0.00,1.832104,0.000195,238,2,3.565624,0.074115,4461947,2594081,0,0,7766,0,1,1 +1774034623.435328,1.78,4,3992.50,58.08,1395.15,2274.05,0.00,3517866822658.139160,3517866822660.147461,11,0,3.557864,0.075423,4468924,2599661,0,0,7769,0,1,1 +1774034628.435109,1.52,4,3992.50,57.93,1401.11,2268.24,0.00,0.000000,0.000000,11,0,3.469814,0.075196,4475720,2605265,0,0,7771,0,1,1 +1774034633.435112,1.63,4,3992.50,58.12,1393.78,2275.43,0.00,847.356703,7497.452691,44446,157344,3.510539,0.075843,4482565,2610893,0,0,7774,0,1,1 +1774034638.435632,1.57,4,3992.50,57.78,1407.12,2262.07,0.00,3518071208312.193359,3518071201662.734863,70,0,3.537532,0.073227,4489528,2616370,0,0,7776,0,1,1 +1774034643.439136,1.63,4,3992.50,58.09,1395.00,2274.18,0.00,3515973531772.895996,0.000000,11,0,3.556478,0.075921,4496347,2622204,0,0,7779,0,1,1 +1774034648.434813,1.68,4,3992.50,57.92,1401.43,2267.77,0.00,2.010527,0.000195,238,2,3.464317,0.074597,4503282,2627581,0,0,7781,0,1,1 +1774034653.434528,1.67,4,3992.50,58.09,1394.74,2274.47,0.00,3518637693819.759766,3518637693821.718262,70,0,3.553779,0.075510,4510114,2633320,0,0,7784,0,1,1 +1774034658.434511,1.67,4,3992.50,57.82,1405.59,2263.61,0.00,0.000000,0.000000,70,0,3.563852,0.075186,4517073,2638911,0,0,7786,0,1,1 +1774034663.438927,3.54,4,3992.50,57.97,1399.54,2269.68,0.00,842.502285,7490.906751,43688,157422,3.476211,0.076151,4524010,2644505,0,0,7789,0,1,1 +1774034668.438477,5.07,4,3992.50,58.01,1398.15,2271.03,0.00,3518753864922.762207,3518753858267.887207,70,0,3.561271,0.084884,4531271,2650302,0,0,7791,0,1,1 +1774034673.438934,4.12,4,3992.50,58.52,1377.95,2291.23,0.00,1.441763,0.022068,221,22,4.561950,0.095638,4540197,2657165,0,0,7794,0,1,1 +1774034678.439106,4.16,4,3992.50,58.88,1363.78,2305.45,0.00,3518316437744.339844,3518316437745.809570,11,0,6.511143,0.148864,4552747,2668596,0,0,7796,0,1,1 +1774034683.439378,2.64,4,3992.50,58.53,1377.81,2291.41,0.00,0.000000,0.000000,11,0,5.624083,0.129070,4563865,2678111,0,0,7799,0,1,1 +1774034688.436938,4.57,4,3992.50,58.99,1359.46,2309.76,0.00,2.009770,0.000195,238,2,6.105995,0.134218,4575599,2688213,0,0,7801,0,1,1 +1774034693.438836,3.20,4,3992.50,59.32,1346.53,2322.69,0.00,840.969108,7495.245665,43689,158137,6.893165,0.153081,4589086,2699666,0,0,7804,0,1,1 +1774034698.434522,2.90,4,3992.50,59.15,1353.52,2315.68,0.00,3521475173403.276855,3521475166742.736816,11,0,6.792932,0.145460,4602205,2710883,0,0,7806,0,1,1 +1774034703.438648,2.38,4,3992.50,58.41,1382.18,2286.98,0.00,846.659373,7492.193862,44447,158408,4.604434,0.111837,4611321,2719093,0,0,7809,0,1,1 +1774034708.436994,4.27,4,3992.50,58.78,1367.65,2301.41,0.00,3519601996383.251465,3519601989730.031250,11,0,4.698784,0.102049,4620538,2726597,0,0,7811,0,1,1 +1774034713.438710,3.35,4,3992.50,59.33,1346.26,2322.81,0.00,847.067114,7495.865375,44447,158566,6.880104,0.150760,4633788,2738059,0,0,7814,0,1,1 +1774034718.437707,4.17,4,3992.50,58.60,1374.89,2294.32,0.00,3519143216436.437500,3519143209784.021484,11,0,6.808715,0.153735,4647223,2749559,0,0,7816,0,1,1 +1774034723.434542,2.08,4,3992.50,58.24,1388.89,2280.30,0.00,0.050032,0.000000,70,0,5.980076,0.138283,4658709,2760163,0,0,7819,0,1,1 +1774034728.435375,3.40,4,3992.50,58.52,1378.07,2291.06,0.00,3517851201008.664551,0.000000,11,0,3.546537,0.077881,4665991,2765540,0,0,7821,0,1,1 +1774034733.438585,3.26,4,3992.50,59.08,1356.08,2313.07,0.00,0.000000,0.000000,11,0,6.435748,0.143896,4678291,2776397,0,0,7824,0,1,1 +1774034738.438708,3.15,4,3992.50,59.21,1350.95,2318.27,0.00,847.337101,7498.772985,44447,159159,6.959795,0.158917,4692028,2787904,0,0,7826,0,1,1 +1774034743.437006,2.59,4,3992.50,58.80,1367.05,2302.16,0.00,3519635798324.589355,3519635798328.647461,43689,159176,6.900287,0.154782,4705188,2799863,0,0,7829,0,1,1 +1774034748.437945,2.33,4,3992.50,58.42,1381.77,2287.42,0.00,3517776032184.880859,3517776025530.474609,11,0,4.067650,0.094876,4713294,2806718,0,0,7831,0,1,1 +1774034753.437037,3.51,4,3992.50,58.88,1363.86,2305.32,0.00,847.512005,7500.475765,44447,159384,4.685039,0.099059,4722476,2814082,0,0,7834,0,1,1 +1774034758.438647,2.03,4,3992.50,58.75,1369.12,2300.07,0.00,3517304436927.720703,3517304430278.106934,11,0,6.372820,0.145194,4734824,2825069,0,0,7836,0,1,1 +1774034763.436528,2.03,4,3992.50,58.56,1376.55,2292.66,0.00,0.000000,0.000000,11,0,3.584471,0.079301,4741909,2830883,0,0,7839,0,1,1 +1774034768.438863,2.08,4,3992.50,58.20,1390.39,2278.71,0.00,0.176871,0.000000,199,0,3.559731,0.076877,4748697,2836751,0,0,7841,0,1,1 +1774034773.438975,1.63,4,3992.50,58.14,1392.82,2276.36,0.00,1.314912,0.022070,221,22,3.449848,0.075449,4755698,2842089,0,0,7844,0,1,1 +1774034778.434956,1.42,4,3992.50,58.23,1389.39,2279.83,0.00,0.000000,0.000000,221,22,3.545455,0.215455,4762734,2848157,0,0,7846,0,1,1 +1774034783.434730,2.34,4,3992.50,58.32,1385.70,2283.44,0.00,841.843295,7500.534561,43689,159709,3.506602,2.673857,4773791,2858367,0,0,7849,0,1,1 +1774034788.438542,2.96,4,3992.50,58.31,1386.12,2283.00,0.00,3515757182904.740723,3515757176251.422363,221,22,3.064599,3.493448,4784958,2869883,0,0,7851,0,1,1 +1774034793.438709,3.16,4,3992.50,58.17,1391.43,2277.66,0.00,3518319338147.418457,3518319338148.711426,199,0,3.595323,3.504373,4797233,2882099,0,0,7854,0,1,1 +1774034798.438676,3.27,4,3992.50,58.17,1391.67,2277.50,0.00,0.000000,0.000000,199,0,3.461335,3.503420,4809543,2893764,0,0,7856,0,1,1 +1774034803.436473,3.11,4,3992.50,58.21,1389.84,2279.12,0.00,847.554463,7503.676413,44447,159844,3.754456,3.510033,4821723,2906695,0,0,7859,0,1,1 +1774034808.434473,3.21,4,3992.50,58.32,1385.56,2283.23,0.00,0.000000,8.822084,44447,159914,3.463608,3.496616,4833913,2918536,0,0,7861,0,1,1 +1774034813.435336,3.22,4,3992.50,58.27,1387.05,2281.39,0.00,3517829390438.104004,3517829383777.423340,11,0,3.607792,3.506873,4846185,2930826,0,0,7864,0,1,1 +1774034818.438958,3.16,4,3992.50,58.20,1389.63,2278.71,0.00,0.000000,0.000000,11,0,3.569278,3.507896,4858419,2943081,0,0,7866,0,1,1 +1774034823.434903,3.73,4,3992.50,58.22,1388.55,2279.59,0.00,2.010420,0.000195,238,2,3.664147,3.505601,4870985,2955123,0,0,7869,0,1,1 +1774034828.438466,3.00,4,3992.50,58.31,1385.02,2282.94,0.00,0.000000,0.000000,238,2,3.477225,3.504526,4882988,2967143,0,0,7871,0,1,1 +1774034833.438962,3.32,4,3992.50,58.29,1385.38,2282.34,0.00,845.265268,7517.729619,44447,160066,3.672273,3.508779,4895504,2979563,0,0,7874,0,1,1 +1774034838.434993,3.22,4,3992.50,58.54,1375.34,2292.09,0.00,3521232530733.703613,3521232524057.234863,70,0,3.436527,3.495875,4907664,2991387,0,0,7876,0,1,1 +1774034843.437851,3.26,4,3992.50,58.51,1376.74,2290.63,0.00,0.000000,0.000000,70,0,3.619556,3.506833,4919880,3003771,0,0,7879,0,1,1 +1774034848.438196,3.16,4,3992.50,58.21,1388.40,2278.91,0.00,1.441795,0.022069,221,22,3.746118,3.506702,4932693,3015914,0,0,7881,0,1,1 +1774034853.439176,3.26,4,3992.50,58.20,1388.86,2278.52,0.00,3517747785896.087891,3517747785897.557129,11,0,3.583065,3.508186,4945033,3028169,0,0,7884,0,1,1 +1774034858.438866,3.27,4,3992.50,58.28,1385.71,2281.70,0.00,847.410463,7539.639465,44447,160279,3.587577,3.507582,4957286,3040459,0,0,7886,0,1,1 +1774034863.434520,3.02,4,3992.50,58.26,1386.57,2280.83,0.00,3521497871429.031738,3521497864729.385254,238,2,3.562857,3.507251,4969778,3052562,0,0,7889,0,1,1 +1774034868.438575,3.16,4,3992.50,58.33,1383.98,2283.59,0.00,3515586407207.475586,3515586407209.482422,11,0,3.472909,3.507527,4981926,3064607,0,0,7891,0,1,1 +1774034873.435399,3.27,4,3992.50,58.58,1373.81,2293.67,0.00,0.000000,0.000000,11,0,3.457543,3.504706,4993970,3076617,0,0,7894,0,1,1 +1774034878.435395,3.36,4,3992.50,58.51,1376.84,2290.64,0.00,0.000000,0.000000,11,0,3.954751,3.509477,5007228,3089093,0,0,7896,0,1,1 +1774034883.434530,2.86,4,3992.50,58.52,1376.04,2291.36,0.00,847.504687,7561.376146,44447,160483,3.569918,3.509110,5019654,3101337,0,0,7899,0,1,1 +1774034888.435866,3.11,4,3992.50,58.48,1377.68,2289.68,0.00,3517497194900.966797,3517497188188.581055,221,22,3.521236,3.508740,5031969,3113564,0,0,7901,0,1,1 +1774034893.438806,3.52,4,3992.50,58.39,1381.45,2285.99,0.00,3516369234244.920410,3516369234246.339355,70,0,3.575701,3.501166,5044344,3125635,0,0,7904,0,1,1 +1774034898.436584,2.86,4,3992.50,58.56,1374.58,2292.79,0.00,1.442536,0.022080,221,22,3.613067,3.508129,5056432,3138124,0,0,7906,0,1,1 +1774034903.435496,3.52,4,3992.50,58.44,1379.08,2288.19,0.00,846.050337,7561.754347,44447,160570,3.525440,3.504179,5068881,3149952,0,0,7909,0,1,1 +1774034908.439129,3.31,4,3992.50,58.40,1380.79,2286.46,0.00,3515882434257.069824,3515882427547.703613,221,22,3.441327,3.507647,5081119,3161918,0,0,7911,0,1,1 +1774034913.435740,3.27,4,3992.50,58.54,1375.19,2291.98,0.00,0.000000,0.000000,221,22,3.520585,3.509980,5093170,3174333,0,0,7914,0,1,1 +1774034918.439312,3.06,4,3992.50,58.69,1369.45,2297.84,0.00,0.000000,0.000000,221,22,3.556407,3.508136,5105573,3186368,0,0,7916,0,1,1 +1774034923.438889,3.27,4,3992.50,58.37,1382.21,2285.21,0.00,845.937708,7584.232408,44447,160781,3.637946,3.509033,5117896,3198889,0,0,7919,0,1,1 +1774034928.434522,3.17,4,3992.50,58.75,1367.14,2300.02,0.00,3521512551992.013672,3521512545248.399414,221,22,3.565805,3.504306,5130299,3210691,0,0,7921,0,1,1 +1774034933.438404,58.28,4,3992.50,59.83,1325.67,2342.43,0.00,845.227086,7681.968225,44461,161579,126.937270,105.219542,5151926,3229770,0,0,7924,0,1,1 +1774034938.434486,31.50,4,3992.50,58.06,1395.59,2273.15,0.00,3521196449264.413086,3521196442418.292480,199,0,132.128005,0.033812,5165198,3232167,0,0,7926,0,1,1 +1774034943.437402,31.97,4,3992.50,57.88,1403.13,2266.29,0.00,0.000000,0.000000,199,0,130.942906,0.031619,5177605,3234360,0,0,7929,0,1,1 +1774034948.435417,30.30,4,3992.50,58.15,1392.73,2276.68,0.00,3519834188834.561523,0.000000,11,0,125.167059,0.035162,5189423,3237000,0,0,7931,0,1,1 +1774034953.438735,28.91,4,3992.50,63.12,1198.30,2471.21,0.00,2.007457,0.000195,238,2,162.790998,0.057280,5205129,3241191,0,0,7934,0,1,1 +1774034958.439378,1.70,4,3992.50,51.88,1638.28,2031.19,0.00,0.000000,0.000000,238,2,8.963155,2.019003,5206493,3241993,0,0,7936,0,1,1 +1774034963.439174,10.14,4,3992.50,51.19,1663.62,2004.11,0.00,3518580603003.937988,3518580603005.946777,11,0,0.022101,38.064158,5208025,3246128,0,0,7939,0,1,1 +1774034968.438667,0.60,4,3992.50,50.98,1671.89,1995.87,0.00,0.176971,0.000000,199,0,0.002284,0.006365,5208095,3246251,0,0,7941,0,1,1 +1774034973.439039,0.35,4,3992.50,51.01,1670.63,1997.13,0.00,3518175959690.834473,0.000000,70,0,0.001806,0.005098,5208149,3246350,0,0,7944,0,1,1 +1774034978.438485,0.30,4,3992.50,51.01,1670.61,1997.15,0.00,0.126967,0.000000,199,0,0.001831,0.005089,5208205,3246448,0,0,7946,0,1,1 +1774034983.434700,0.40,4,3992.50,51.02,1670.16,1997.60,0.00,0.000000,0.000000,199,0,0.002303,0.006371,5208276,3246571,0,0,7949,0,1,1 +1774034988.434541,0.40,4,3992.50,51.02,1670.16,1997.60,0.00,867.053185,7740.267671,44677,162412,0.002301,0.006356,5208347,3246693,0,0,7951,0,1,1 +1774034993.434688,0.50,4,3992.50,51.02,1670.17,1997.60,0.00,3518334218635.091797,3518334211760.465820,238,2,0.002289,0.006353,5208417,3246815,0,0,7954,0,1,1 +1774034998.439475,0.30,4,3992.50,51.02,1670.18,1997.59,0.00,3515071886789.986816,3515071886791.943359,70,0,0.001837,0.005105,5208474,3246915,0,0,7956,0,1,1 +1774035003.438563,0.65,4,3992.50,51.02,1670.18,1997.58,0.00,3519078972054.230957,0.000000,11,0,0.002541,0.006678,5208564,3247058,0,0,7959,0,1,1 +1774035008.439180,0.95,4,3992.50,50.98,1671.82,1995.95,0.00,867.108883,7745.202037,44686,162538,0.002431,0.006481,5208643,3247190,0,0,7961,0,1,1 +1774035013.438550,0.50,4,3992.50,50.98,1671.82,1995.94,0.00,3518880384962.247559,3518880378080.969727,221,22,0.002289,0.006367,5208713,3247313,0,0,7964,0,1,1 +1774035018.439436,0.55,4,3992.50,50.98,1671.85,1995.91,0.00,3517813624353.200195,3517813624354.619629,70,0,0.001831,0.005088,5208769,3247411,0,0,7966,0,1,1 +1774035023.438106,0.60,4,3992.50,50.98,1671.63,1996.12,0.00,867.396604,7748.234381,44686,162554,0.002289,0.006368,5208839,3247534,0,0,7969,0,1,1 +1774035028.440373,5.01,4,3992.50,57.20,1428.82,2239.61,0.00,3516842573281.452637,3516842573285.502930,43928,162557,0.405852,0.009720,5209032,3247757,0,0,7971,0,1,1 +1774035033.434788,45.41,4,3992.50,57.23,1429.38,2240.75,0.00,3522371781132.017578,3522371774241.312012,11,0,103.663997,0.042757,5219761,3250570,0,0,7974,0,1,1 +1774035038.438680,28.49,4,3992.50,57.56,1416.59,2253.50,0.00,0.176815,0.000000,199,0,122.876694,0.022005,5232476,3252016,0,0,7976,0,1,1 +1774035043.436590,28.54,4,3992.50,57.33,1425.38,2244.69,0.00,3519908286265.096680,0.000000,70,0,121.422891,0.025306,5245081,3253787,0,0,7979,0,1,1 +1774035048.434952,28.77,4,3992.50,57.18,1431.30,2238.79,0.00,863.387918,7748.946699,43928,162714,120.204659,0.051210,5257242,3257624,0,0,7981,0,1,1 +1774035053.438397,28.12,4,3992.50,57.25,1428.64,2241.45,0.00,3516014223467.052734,3516014216588.540527,11,0,120.082661,0.054201,5269425,3261617,0,0,7984,0,1,1 +1774035058.434542,28.18,4,3992.50,57.41,1422.50,2247.68,0.00,867.884989,7752.462179,44686,162764,118.253992,0.045976,5281416,3265006,0,0,7986,0,1,1 +1774035063.435149,28.38,4,3992.50,57.28,1427.39,2242.77,0.00,3518010061788.312012,3518010054909.877930,11,0,120.180221,0.097399,5294177,3272457,0,0,7989,0,1,1 +1774035068.435395,28.06,4,3992.50,57.20,1430.48,2239.62,0.00,0.000000,0.000000,11,0,120.194547,0.113580,5307071,3281089,0,0,7991,0,1,1 +1774035073.438677,7.73,4,3992.50,52.59,1611.12,2059.09,0.00,862.645735,7741.510335,43936,162788,78.276599,0.062001,5315479,3285760,0,0,7994,0,1,1 +1774035078.434520,4.17,4,3992.50,51.61,1649.35,2020.84,0.00,3521365078707.014160,3521365071817.856445,70,0,2.022420,0.017531,5316188,3286348,0,0,7996,0,1,1 +1774035083.434537,15.56,4,3992.50,52.38,1619.43,2050.78,0.00,1.958782,0.000195,238,2,24.138310,0.105986,5323226,3291957,0,0,7999,0,1,1 +1774035088.435205,10.67,4,3992.50,52.83,1601.72,2068.48,0.00,3517967478605.951660,3517967478607.959961,11,0,14.084209,0.064414,5327355,3295299,0,0,8001,0,1,1 +1774035093.438879,1.10,4,3992.50,52.28,1623.10,2047.06,0.00,0.176823,0.000000,199,0,0.004578,0.008498,5327471,3295462,0,0,8004,0,1,1 +1774035098.434551,0.60,4,3992.50,51.74,1644.38,2025.81,0.00,3521485109885.143555,0.000000,70,0,0.003423,0.005873,5327557,3295579,0,0,8006,0,1,1 +1774035103.438780,0.70,4,3992.50,51.76,1643.64,2026.56,0.00,1.957134,0.000195,238,2,0.003862,0.007126,5327656,3295720,0,0,8009,0,1,1 +1774035108.439419,0.55,4,3992.50,51.55,1651.75,2018.44,0.00,3517987796494.152832,3517987796496.161133,11,0,0.003865,0.007122,5327755,3295860,0,0,8011,0,1,1 +1774035113.436081,0.70,4,3992.50,51.36,1659.28,2010.92,0.00,867.925650,7753.204456,44704,164345,0.003881,0.007137,5327855,3296001,0,0,8014,0,1,1 +1774035118.436527,0.50,4,3992.50,51.36,1659.30,2010.90,0.00,3518123739128.609375,0.045308,43946,164362,0.003453,0.005906,5327944,3296121,0,0,8016,0,1,1 +1774035123.438533,0.60,4,3992.50,51.36,1659.31,2010.89,0.00,3517025933837.114258,3517025926955.037109,70,0,0.003965,0.007241,5328051,3296269,0,0,8019,0,1,1 +1774035128.435942,0.45,4,3992.50,51.36,1659.32,2010.87,0.00,1.442642,0.022082,221,22,0.003880,0.007114,5328151,3296408,0,0,8021,0,1,1 +1774035133.439385,0.45,4,3992.50,51.36,1659.35,2010.85,0.00,861.200427,7742.819791,43946,164432,0.003875,0.007115,5328251,3296548,0,0,8024,0,1,1 +1774035138.436846,0.35,4,3992.50,51.26,1663.26,2006.94,0.00,3520224783093.261230,3520224776204.696777,199,0,0.003472,0.005898,5328340,3296667,0,0,8026,0,1,1 +1774035143.437760,0.40,4,3992.50,51.26,1663.39,2006.80,0.00,862.950766,7746.826421,43946,164494,0.003865,0.007131,5328439,3296808,0,0,8029,0,1,1 +1774035148.438398,0.40,4,3992.50,51.24,1664.14,2006.05,0.00,4.060322,0.050677,44704,164560,0.003254,0.005579,5328522,3296922,0,0,8031,0,1,1 +1774035153.439257,21.53,4,3992.50,51.61,1644.00,2020.83,0.00,3517832744444.084961,3517832737564.143555,199,0,0.044941,89.716254,5331795,3306378,0,0,8034,0,1,1 +1774035158.439445,28.31,4,3992.50,50.87,1669.74,1991.87,0.00,3518304801703.776367,0.000000,11,0,0.044013,115.360947,5335091,3318426,0,0,8036,0,1,1 +1774035163.438691,13.31,4,3992.50,55.96,1473.93,2191.05,0.00,887.218445,7921.998791,44836,165690,19.039316,0.024277,5337304,3319581,0,0,8039,0,1,1 +1774035168.434872,2.86,4,3992.50,51.06,1665.78,1999.19,0.00,3521126514324.874023,32.684436,44078,165912,21.050515,0.009914,5339564,3320080,0,0,8041,0,1,1 +1774035173.439183,0.70,4,3992.50,51.08,1665.15,1999.81,0.00,3515406732645.111816,3515406725578.755859,238,2,0.004575,0.009371,5339679,3320246,0,0,8044,0,1,1 +1774035178.438632,0.40,4,3992.50,51.07,1665.30,1999.67,0.00,3518825007325.185059,3518825007327.017578,199,0,0.003874,0.007131,5339779,3320387,0,0,8046,0,1,1 +1774035183.438476,0.45,4,3992.50,51.07,1665.32,1999.66,0.00,1.831893,0.000195,238,2,0.003866,0.007095,5339878,3320525,0,0,8049,0,1,1 +1774035188.438869,9.44,4,3992.50,51.32,1653.54,2009.37,0.00,3518159880781.373047,3518159880783.381836,11,0,0.020845,33.451003,5341203,3324080,0,0,8051,0,1,1 +1774035193.438613,3.01,4,3992.50,51.08,1662.67,1999.89,0.00,2.008892,0.000195,238,2,0.005142,6.617829,5341437,3324922,0,0,8054,0,1,1 +1774035198.439295,0.35,4,3992.50,51.11,1661.42,2001.14,0.00,3517957204025.030762,3517957204026.862305,199,0,0.002314,0.006386,5341509,3325046,0,0,8056,0,1,1 +1774035203.438652,0.50,4,3992.50,51.11,1661.43,2001.14,0.00,3518890068217.734375,0.000000,70,0,0.002289,0.006367,5341579,3325169,0,0,8059,0,1,1 +1774035208.434616,0.40,4,3992.50,51.11,1661.43,2001.14,0.00,3521279540655.989746,0.000000,11,0,0.001841,0.005101,5341636,3325268,0,0,8061,0,1,1 +1774035213.439439,0.40,4,3992.50,51.11,1661.43,2001.13,0.00,2.006853,0.000195,238,2,0.002287,0.006360,5341706,3325391,0,0,8064,0,1,1 +1774035218.436197,0.35,4,3992.50,51.11,1661.43,2001.13,0.00,0.000000,0.000000,238,2,0.002253,0.006360,5341773,3325513,0,0,8066,0,1,1 +1774035223.439311,0.50,4,3992.50,51.05,1663.87,1998.69,0.00,3516246993482.454102,3516246993484.411621,70,0,0.002287,0.006393,5341843,3325638,0,0,8069,0,1,1 +1774035228.434544,0.35,4,3992.50,51.05,1663.75,1998.82,0.00,0.000000,0.000000,70,0,0.001883,0.005156,5341903,3325740,0,0,8071,0,1,1 +1774035233.438574,0.40,4,3992.50,51.08,1662.77,1999.79,0.00,1.440733,0.022053,221,22,0.002394,0.006479,5341981,3325871,0,0,8074,0,1,1 +1774035238.439063,0.40,4,3992.50,51.08,1662.78,1999.79,0.00,885.516884,7993.150730,44839,166550,0.002421,0.006464,5342060,3326002,0,0,8076,0,1,1 +1774035243.439269,0.45,4,3992.50,51.08,1662.77,1999.80,0.00,3518292314867.359863,3518292307760.791992,11,0,0.002289,0.006366,5342130,3326125,0,0,8079,0,1,1 +1774035248.439142,0.30,4,3992.50,51.08,1662.77,1999.79,0.00,1.491932,0.022071,221,22,0.001819,0.005089,5342185,3326223,0,0,8081,0,1,1 +1774035253.439373,10.53,4,3992.50,57.43,1418.27,2248.61,0.00,885.562866,7993.608658,44839,166595,2.409897,0.012646,5342681,3326678,0,0,8084,0,1,1 +1774035258.438661,36.65,4,3992.50,57.68,1410.35,2258.36,0.00,3518938024138.734375,0.057430,44081,166653,112.575853,0.040820,5354340,3329429,0,0,8086,0,1,1 +1774035263.435150,27.84,4,3992.50,57.24,1427.93,2240.93,0.00,3520909860605.978027,3520909853489.959473,11,0,119.856866,0.033614,5366869,3331770,0,0,8089,0,1,1 +1774035268.438389,27.84,4,3992.50,57.50,1417.22,2251.34,0.00,882.462894,7988.949797,44081,166713,118.893970,0.036709,5379204,3334283,0,0,8091,0,1,1 +1774035273.434451,27.94,4,3992.50,57.40,1421.29,2247.45,0.00,3521210433758.487793,3521210426641.741211,70,0,119.459275,0.022729,5391432,3335978,0,0,8094,0,1,1 +1774035278.438557,28.18,4,3992.50,57.49,1418.07,2250.69,0.00,0.000000,0.000000,70,0,119.674458,0.042568,5403845,3338952,0,0,8096,0,1,1 +1774035283.439433,28.00,4,3992.50,57.39,1421.65,2247.11,0.00,0.126931,0.000000,199,0,118.547395,0.036737,5416209,3341591,0,0,8099,0,1,1 +1774035288.434793,28.15,4,3992.50,57.31,1424.92,2243.85,0.00,883.677839,8001.706305,44081,166763,120.280402,0.021722,5428648,3342961,0,0,8101,0,1,1 +1774035293.438563,28.51,4,3992.50,57.43,1420.23,2248.43,0.00,3515786286857.786133,3515786279751.898438,11,0,118.276229,0.028435,5440838,3344952,0,0,8104,0,1,1 +1774035298.438384,8.03,4,3992.50,51.57,1649.64,2019.11,0.00,887.262296,7994.717832,44850,166818,75.512720,0.030041,5448764,3347062,0,0,8106,0,1,1 +1774035303.437950,5.12,4,3992.50,51.20,1664.31,2004.48,0.00,0.000000,0.054595,44850,166916,4.027377,0.022823,5449909,3348022,0,0,8109,0,1,1 +1774035308.437169,15.16,4,3992.50,51.18,1664.87,2003.92,0.00,3518986681578.959473,3518986674470.592773,11,0,24.144768,0.107543,5456998,3353600,0,0,8111,0,1,1 +1774035313.439068,8.07,4,3992.50,51.26,1661.72,2007.07,0.00,1.491328,0.022062,221,22,12.067928,0.052355,5460505,3356307,0,0,8114,0,1,1 +1774035318.438455,0.85,4,3992.50,51.07,1669.12,1999.64,0.00,3518868534192.286621,3518868534193.756836,11,0,0.004102,0.007228,5460605,3356445,0,0,8116,0,1,1 +1774035323.438530,0.40,4,3992.50,51.07,1669.15,1999.62,0.00,887.217425,7995.051691,44850,168028,0.003878,0.007132,5460705,3356586,0,0,8119,0,1,1 +1774035328.438745,0.35,4,3992.50,51.07,1669.17,1999.61,0.00,3518285631103.438965,3518285623995.804199,11,0,0.003878,0.007122,5460805,3356726,0,0,8121,0,1,1 +1774035333.438657,0.55,4,3992.50,51.07,1669.18,1999.59,0.00,0.000000,0.000000,11,0,0.004186,0.007687,5460912,3356878,0,0,8124,0,1,1 +1774035338.438663,0.50,4,3992.50,51.08,1668.95,1999.82,0.00,2.008787,0.000195,238,2,0.004854,0.007620,5461014,3357020,0,0,8126,0,1,1 +1774035343.438552,0.50,4,3992.50,51.09,1668.52,2000.27,0.00,3518515094731.504883,3518515094733.336914,199,0,0.005222,0.008314,5461145,3357187,0,0,8129,0,1,1 +1774035348.438541,0.45,4,3992.50,51.09,1668.52,2000.25,0.00,1.831840,0.000195,238,2,0.005675,0.008508,5461275,3357346,0,0,8131,0,1,1 +1774035353.438035,0.45,4,3992.50,51.11,1667.56,2001.22,0.00,3518793456458.525879,0.021877,221,22,0.003878,0.007120,5461375,3357486,0,0,8134,0,1,1 +1774035358.435612,0.45,4,3992.50,51.13,1666.86,2001.92,0.00,3520142715915.483398,3520142715916.954102,11,0,0.004802,0.007783,5461477,3357628,0,0,8136,0,1,1 +1774035363.438464,0.35,4,3992.50,51.13,1666.88,2001.90,0.00,886.724903,7991.508294,44850,168464,0.003501,0.005922,5461569,3357750,0,0,8139,0,1,1 +1774035368.434606,0.40,4,3992.50,51.15,1666.15,2002.63,0.00,3521153938298.694336,3521153938302.756836,44092,168457,0.003856,0.007128,5461667,3357890,0,0,8141,0,1,1 +1774035373.434550,0.40,4,3992.50,51.16,1665.57,2003.22,0.00,4.060886,0.064161,44850,168524,0.003878,0.007132,5461767,3358031,0,0,8144,0,1,1 +1774035378.439028,9.09,4,3992.50,51.81,1638.82,2028.56,0.00,3515288823226.812500,3515288816122.806641,221,22,0.025057,33.825255,5463395,3361673,0,0,8146,0,1,1 +1774035383.436692,29.61,4,3992.50,51.29,1652.60,2008.12,0.00,0.000000,0.000000,221,22,0.032498,122.233349,5465707,3374445,0,0,8149,0,1,1 +1774035388.434535,12.76,4,3992.50,51.57,1641.99,2019.18,0.00,0.517118,3519956038938.366699,238,2,0.017945,49.097108,5466856,3379662,0,0,8151,0,1,1 +1774035393.437487,14.02,4,3992.50,56.01,1471.37,2192.86,0.00,3516361140824.382324,3516361140826.389648,11,0,26.629497,0.022305,5469784,3380812,0,0,8154,0,1,1 +1774035398.439078,2.21,4,3992.50,51.71,1639.80,2024.39,0.00,0.176897,0.000000,199,0,13.421088,0.011257,5471306,3381189,0,0,8156,0,1,1 +1774035403.439057,0.40,4,3992.50,51.24,1658.10,2006.12,0.00,0.000000,0.000000,199,0,0.003702,0.006986,5471403,3381328,0,0,8159,0,1,1 +1774035408.438483,0.40,4,3992.50,50.99,1667.84,1996.38,0.00,1.832046,0.000195,238,2,0.003260,0.006886,5471491,3381461,0,0,8161,0,1,1 +1774035413.438969,11.24,4,3992.50,51.23,1656.18,2005.92,0.00,3518095102277.305664,3518095102279.264160,70,0,0.025855,40.064315,5473158,3385933,0,0,8164,0,1,1 +1774035418.439256,0.40,4,3992.50,51.05,1663.34,1998.77,0.00,3518235008880.719727,0.000000,11,0,0.002276,0.006356,5473227,3386055,0,0,8166,0,1,1 +1774035423.436267,0.55,4,3992.50,51.05,1663.35,1998.77,0.00,1.492787,0.022084,221,22,0.002303,0.006401,5473298,3386180,0,0,8169,0,1,1 +1774035428.438755,0.50,4,3992.50,51.05,1663.35,1998.77,0.00,3516687701763.733398,3516687701765.152344,70,0,0.002300,0.006353,5473369,3386302,0,0,8171,0,1,1 +1774035433.434819,0.45,4,3992.50,51.05,1663.35,1998.76,0.00,0.127053,0.000000,199,0,0.002166,0.006346,5473438,3386423,0,0,8174,0,1,1 +1774035438.438797,0.35,4,3992.50,51.08,1662.13,1999.98,0.00,3515640151515.966309,0.000000,70,0,0.001950,0.005118,5473495,3386524,0,0,8176,0,1,1 +1774035443.436542,0.45,4,3992.50,51.08,1662.13,1999.98,0.00,3520025330967.666992,0.000000,11,0,0.002265,0.006369,5473563,3386647,0,0,8179,0,1,1 +1774035448.438476,0.40,4,3992.50,51.09,1661.89,2000.22,0.00,0.000000,0.000000,11,0,0.001881,0.005149,5473623,3386749,0,0,8181,0,1,1 +1774035453.438657,0.40,4,3992.50,51.09,1661.89,2000.21,0.00,0.049998,0.000000,70,0,0.002314,0.006415,5473695,3386875,0,0,8184,0,1,1 +1774035458.438773,0.35,4,3992.50,51.09,1661.91,2000.21,0.00,902.838745,8241.529903,44229,170433,0.002495,0.006544,5473779,3387011,0,0,8186,0,1,1 +1774035463.439245,0.45,4,3992.50,51.09,1661.69,2000.43,0.00,4.060456,0.024607,44987,170460,0.001839,0.005106,5473836,3387111,0,0,8189,0,1,1 +1774035468.438649,0.45,4,3992.50,51.09,1661.69,2000.42,0.00,3518856796460.640137,3518856789124.990234,11,0,0.002289,0.006357,5473906,3387233,0,0,8191,0,1,1 +1774035473.435285,0.35,4,3992.50,51.09,1661.69,2000.42,0.00,0.177072,0.000000,199,0,0.002290,0.006370,5473976,3387356,0,0,8194,0,1,1 +1774035478.439085,13.07,4,3992.50,57.59,1412.20,2254.61,0.00,902.047283,8235.477815,44229,170469,9.011695,0.017168,5475110,3388171,0,0,8196,0,1,1 +1774035483.434540,33.64,4,3992.50,57.19,1429.41,2239.02,0.00,3521638066374.146973,3521638059028.645020,11,0,118.473152,0.049603,5487231,3391709,0,0,8199,0,1,1 +1774035488.438654,27.98,4,3992.50,57.19,1429.28,2239.09,0.00,2.007138,0.000195,238,2,119.265993,0.028916,5499363,3393834,0,0,8201,0,1,1 +1774035493.438398,27.94,4,3992.50,57.38,1421.64,2246.69,0.00,3518617174890.111816,3518617174892.120605,11,0,118.970949,0.028496,5511513,3395782,0,0,8204,0,1,1 +1774035498.439402,28.07,4,3992.50,57.43,1419.97,2248.57,0.00,0.000000,0.000000,11,0,119.741720,0.025972,5523782,3397588,0,0,8206,0,1,1 +1774035503.438459,27.97,4,3992.50,57.22,1428.20,2240.22,0.00,0.050009,0.000000,70,0,118.584414,0.042780,5535815,3400861,0,0,8209,0,1,1 +1774035508.439395,28.22,4,3992.50,57.38,1421.93,2246.46,0.00,0.126929,0.000000,199,0,119.744120,0.033787,5548129,3403398,0,0,8211,0,1,1 +1774035513.438573,28.03,4,3992.50,57.52,1416.23,2252.19,0.00,3519015581615.561523,0.000000,11,0,118.583713,0.036504,5560244,3406122,0,0,8214,0,1,1 +1774035518.438506,28.49,4,3992.50,57.25,1427.00,2241.39,0.00,906.982730,8242.177377,44987,170678,119.967895,0.032653,5572517,3408456,0,0,8216,0,1,1 +1774035523.438449,5.07,4,3992.50,51.80,1640.30,2028.14,0.00,3518477303136.185059,3518477295801.005371,11,0,63.094088,0.020375,5579141,3409559,0,0,8219,0,1,1 +1774035528.438044,5.98,4,3992.50,51.22,1662.94,2005.49,0.00,1.492015,0.022072,221,22,6.033428,0.028430,5580675,3410807,0,0,8221,0,1,1 +1774035533.438668,3.31,4,3992.50,51.20,1663.70,2004.74,0.00,3517998520095.100098,3517998520096.520020,70,0,0.012838,0.008414,5580942,3411043,0,0,8224,0,1,1 +1774035538.435144,1.40,4,3992.50,51.19,1664.13,2004.29,0.00,1.960170,0.000195,238,2,0.009958,0.007794,5581167,3411254,0,0,8226,0,1,1 +1774035543.438699,1.60,4,3992.50,51.21,1663.50,2004.95,0.00,900.420982,8236.728417,44247,171171,0.007561,0.006117,5581301,3411396,0,0,8229,0,1,1 +1774035548.438730,2.22,4,3992.50,51.53,1650.90,2017.55,0.00,3518415250254.413086,3518415242914.768555,199,0,0.076107,0.004519,5581550,3411532,0,0,8231,0,1,1 +1774035553.437914,2.01,4,3992.50,52.22,1624.00,2044.45,0.00,3519011660792.158691,0.000000,11,0,1.873163,0.056397,5585224,3414780,0,0,8234,0,1,1 +1774035558.438987,2.77,4,3992.50,52.14,1626.95,2041.50,0.00,902.875911,8241.212142,44247,171479,2.131719,0.071212,5589462,3418851,0,0,8236,0,1,1 +1774035563.435245,2.22,4,3992.50,51.71,1643.82,2024.64,0.00,3521072519496.622070,3521072512151.211914,11,0,2.181829,0.072091,5593779,3423016,0,0,8239,0,1,1 +1774035568.434648,3.27,4,3992.50,51.80,1640.55,2027.91,0.00,0.176974,0.000000,199,0,1.822252,0.056598,5597568,3426380,0,0,8241,0,1,1 +1774035573.435096,1.31,4,3992.50,51.63,1646.86,2021.58,0.00,1.831672,0.000195,238,2,2.253258,0.077876,5602062,3430943,0,0,8244,0,1,1 +1774035578.435641,1.91,4,3992.50,51.60,1648.11,2020.32,0.00,900.962865,8242.341356,44247,171773,0.038924,0.007624,5602227,3431247,0,0,8246,0,1,1 +1774035583.438988,2.86,4,3992.50,51.63,1647.00,2021.44,0.00,3516082848749.639648,3516082841414.381348,11,0,0.006090,0.004270,5602345,3431358,0,0,8249,0,1,1 +1774035588.438040,2.07,4,3992.50,51.53,1650.87,2017.56,0.00,0.176987,0.000000,199,0,1.287633,0.025998,5604905,3432788,0,0,8251,0,1,1 +1774035593.438564,3.43,4,3992.50,51.44,1654.51,2013.93,0.00,3518068175492.895508,0.000000,70,0,2.010565,0.066542,5608891,3436608,0,0,8254,0,1,1 +1774035598.435779,2.32,4,3992.50,51.14,1666.19,2002.25,0.00,903.523140,8248.131908,44247,172099,2.155929,0.071617,5613174,3440707,0,0,8256,0,1,1 +1774035603.434519,2.07,4,3992.50,51.33,1658.80,2009.62,0.00,3519323862915.005859,3519323855572.511719,199,0,1.765240,0.060099,5616732,3444234,0,0,8259,0,1,1 +1774035608.439303,4.72,4,3992.50,51.58,1649.06,2019.37,0.00,1.830085,0.000195,238,2,2.224376,0.069183,5621184,3448305,0,0,8261,0,1,1 +1774035613.437528,1.01,4,3992.50,51.40,1655.80,2012.61,0.00,3519687015953.053223,0.021883,221,22,0.965234,0.048182,5623219,3451074,0,0,8264,0,1,1 +1774035618.439157,1.81,4,3992.50,51.49,1652.51,2015.91,0.00,3517291257100.407227,3517291257101.700195,199,0,0.007939,0.005239,5623339,3451224,0,0,8266,0,1,1 +1774035623.438581,2.32,4,3992.50,51.99,1633.09,2035.34,0.00,0.000000,0.000000,199,0,0.099749,0.004682,5623634,3451380,0,0,8269,0,1,1 +1774035628.437128,2.27,4,3992.50,52.09,1629.10,2039.32,0.00,1.315324,0.022077,221,22,1.963335,0.059392,5627596,3454845,0,0,8271,0,1,1 +1774035633.438925,1.81,4,3992.50,52.19,1625.16,2043.24,0.00,3517172546183.671875,3517172546185.091309,70,0,2.105560,0.075801,5631815,3459204,0,0,8274,0,1,1 +1774035638.437135,2.22,4,3992.50,51.99,1632.70,2035.69,0.00,1.442411,0.022078,221,22,1.866546,0.060795,5635585,3462594,0,0,8276,0,1,1 +1774035643.438845,3.17,4,3992.50,51.89,1636.81,2031.58,0.00,3517234574932.439941,3517234574933.909668,11,0,2.120257,0.071838,5639870,3466700,0,0,8279,0,1,1 +1774035648.438828,0.81,4,3992.50,51.71,1643.91,2024.46,0.00,1.491899,0.022070,221,22,2.023388,0.069478,5643904,3470575,0,0,8281,0,1,1 +1774035653.436158,1.31,4,3992.50,51.73,1643.17,2025.20,0.00,3520317120885.906250,3520317120887.376953,11,0,0.200688,0.014497,5644459,3471293,0,0,8284,0,1,1 +1774035658.438529,1.91,4,3992.50,52.19,1625.20,2043.18,0.00,1.491188,0.022060,221,22,0.411232,0.009937,5645398,3471797,0,0,8286,0,1,1 +1774035663.439002,1.36,4,3992.50,51.69,1644.50,2023.88,0.00,3518104019804.481445,3518104019805.774414,199,0,2.287955,0.070066,5649861,3475809,0,0,8289,0,1,1 +1774035668.437913,0.55,4,3992.50,51.72,1643.54,2024.85,0.00,1.315228,0.022075,221,22,1.459226,0.059781,5652758,3479230,0,0,8291,0,1,1 +1774035673.439066,0.60,4,3992.50,51.72,1643.55,2024.82,0.00,901.384101,8242.348339,44257,172985,0.004767,0.003636,5652870,3479365,0,0,8294,0,1,1 +1774035678.434624,0.65,4,3992.50,51.72,1643.56,2024.82,0.00,3521565367306.918945,3521565359959.204590,11,0,0.003457,0.004513,5652961,3479467,0,0,8296,0,1,1 +1774035683.439076,1.35,4,3992.50,51.39,1656.55,2011.84,0.00,902.280582,8236.962688,44257,173035,0.002578,0.002917,5653015,3479532,0,0,8299,0,1,1 +1774035688.438530,0.45,4,3992.50,51.38,1656.56,2011.82,0.00,3518821772270.376465,3518821764928.185059,199,0,0.003879,0.049079,5653185,3479720,0,0,8301,0,1,1 +1774035693.438814,1.61,4,3992.50,51.28,1660.67,2007.70,0.00,902.855543,8243.916788,44257,173143,0.156517,6.219734,5662207,3490729,0,0,8304,0,1,1 +1774035698.434685,2.27,4,3992.50,51.41,1655.55,2012.74,0.00,0.000000,0.053560,44257,173158,0.218383,8.657730,5674735,3506744,0,0,8306,0,1,1 +1774035703.434516,2.17,4,3992.50,51.50,1651.62,2016.26,0.00,3518556057064.392090,3518556049721.318848,221,22,0.210883,7.796778,5686947,3521465,0,0,8309,0,1,1 +1774035708.437735,2.32,4,3992.50,51.65,1644.92,2022.37,0.00,3516173154832.646484,3516173154834.065430,70,0,0.213495,8.460592,5699417,3537051,0,0,8311,0,1,1 +1774035713.434635,2.37,4,3992.50,51.62,1645.75,2021.05,0.00,903.594125,8286.046128,44257,173425,0.217828,8.558512,5711916,3552986,0,0,8314,0,1,1 +1774035718.439344,2.27,4,3992.50,51.75,1640.10,2026.16,0.00,3515126616037.977051,3515126608665.625977,221,22,0.214110,8.489463,5724389,3568791,0,0,8316,0,1,1 +1774035723.434808,2.38,4,3992.50,51.37,1654.41,2011.36,0.00,3521632330958.299316,3521632330959.593750,199,0,0.227598,9.146426,5737502,3585598,0,0,8319,0,1,1 +1774035728.438747,2.17,4,3992.50,51.49,1649.18,2016.09,0.00,902.196282,8274.441285,44257,173468,0.221469,8.570390,5750226,3601640,0,0,8321,0,1,1 +1774035733.438209,2.22,4,3992.50,51.53,1647.21,2017.61,0.00,4.061276,0.032035,45015,173507,0.153396,5.418843,5759255,3612115,0,0,8324,0,1,1 +1774035738.436302,2.53,4,3992.50,51.17,1660.93,2003.53,0.00,3519779368837.068359,3519779361460.409180,11,0,0.160849,5.799041,5768778,3622995,0,0,8326,0,1,1 +1774035743.434558,2.68,4,3992.50,51.49,1647.76,2016.13,0.00,0.000000,0.000000,11,0,0.218115,8.468337,5781297,3638778,0,0,8329,0,1,1 +1774035748.434703,2.37,4,3992.50,51.27,1656.18,2007.22,0.00,0.049999,0.000000,70,0,0.171501,6.342504,5791295,3650746,0,0,8331,0,1,1 +1774035753.434533,2.27,4,3992.50,51.32,1653.79,2009.25,0.00,903.064561,8320.112202,44257,173765,0.157134,5.601137,5800648,3661304,0,0,8334,0,1,1 +1774035758.434542,2.38,4,3992.50,51.49,1646.75,2015.77,0.00,3518431123205.332031,3518431115788.599121,11,0,0.214106,7.877823,5813057,3676070,0,0,8336,0,1,1 +1774035763.436432,2.37,4,3992.50,51.36,1651.14,2010.91,0.00,902.742632,8316.721736,44257,173794,0.183532,6.595682,5823560,3688882,0,0,8339,0,1,1 +1774035768.438547,2.17,4,3992.50,51.20,1656.99,2004.74,0.00,3516949723238.791016,3516949715825.095215,70,0,0.149715,5.344431,5832542,3698959,0,0,8341,0,1,1 +1774035773.437879,2.99,4,3992.50,51.26,1654.46,2006.78,0.00,1.959051,0.000195,238,2,0.192997,6.981051,5843872,3712065,0,0,8344,0,1,1 +1774035778.438380,2.02,4,3992.50,51.48,1645.11,2015.64,0.00,3518084674281.263184,3518084674283.095215,199,0,0.212809,7.985735,5855945,3727201,0,0,8346,0,1,1 +1774035783.438843,2.47,4,3992.50,51.23,1654.75,2005.89,0.00,3518111664641.869629,0.000000,11,0,0.152092,5.365286,5865002,3737378,0,0,8349,0,1,1 +1774035788.439431,2.28,4,3992.50,51.14,1658.16,2002.39,0.00,0.176932,0.000000,199,0,0.168504,6.012076,5875085,3748670,0,0,8351,0,1,1 +1774035793.438605,2.17,4,3992.50,51.51,1644.27,2016.61,0.00,1.832139,0.000195,238,2,0.235546,8.848149,5888497,3765266,0,0,8354,0,1,1 +1774035798.438483,2.52,4,3992.50,51.15,1658.06,2002.61,0.00,3518522586536.950195,0.021876,221,22,0.157277,5.465603,5897791,3775740,0,0,8356,0,1,1 +1774035803.439198,2.68,4,3992.50,51.12,1659.32,2001.44,0.00,3517934377856.694824,3517934377857.987305,199,0,0.160614,5.732017,5907440,3786518,0,0,8359,0,1,1 +1774035808.435270,2.58,4,3992.50,51.58,1641.23,2019.54,0.00,1.315975,0.022088,221,22,0.233401,8.672845,5920857,3802829,0,0,8361,0,1,1 +1774035813.438869,2.27,4,3992.50,51.30,1652.77,2008.33,0.00,905.001480,8393.511322,45015,174440,0.164551,5.741779,5930336,3813993,0,0,8364,0,1,1 +1774035818.435995,2.02,4,3992.50,51.35,1650.20,2010.52,0.00,3520460601862.182129,3520460594363.434082,238,2,0.132180,4.674051,5938443,3822873,0,0,8366,0,1,1 +1774035823.438025,2.53,4,3992.50,51.17,1657.26,2003.54,0.00,904.768479,8396.177416,45015,174466,0.178196,6.334866,5949016,3834852,0,0,8369,0,1,1 +1774035828.438970,2.37,4,3992.50,51.50,1644.52,2016.32,0.00,3517772729752.670410,0.838904,44257,174483,0.222212,8.151319,5961563,3850450,0,0,8371,0,1,1 +1774035833.438989,2.27,4,3992.50,51.20,1656.28,2004.41,0.00,3518423688788.984375,3518423681291.620605,70,0,0.127432,4.439785,5969226,3858960,0,0,8374,0,1,1 +1774035838.438529,2.02,4,3992.50,51.22,1655.48,2005.34,0.00,0.126965,0.000000,199,0,0.131350,4.631883,5977264,3867758,0,0,8376,0,1,1 +1774035843.437481,2.32,4,3992.50,51.13,1658.70,2001.78,0.00,1.832220,0.000195,238,2,0.135108,4.834229,5985245,3876932,0,0,8379,0,1,1 +1774035848.439379,0.75,4,3992.50,50.89,1668.25,1992.34,0.00,3517102453025.067383,3517102453027.025391,70,0,0.022250,0.746996,5986516,3878402,0,0,8381,0,1,1 +1774035853.438639,0.50,4,3992.50,50.89,1668.10,1992.48,0.00,1.959079,0.000195,238,2,0.001946,0.004226,5986588,3878486,0,0,8384,0,1,1 +1774035858.438075,0.75,4,3992.50,50.84,1670.63,1990.63,0.00,0.000000,0.000000,238,2,0.002886,0.002156,5986640,3878539,0,0,8386,0,1,1 +1774035863.437397,0.35,4,3992.50,50.89,1668.67,1992.60,0.00,3518914479956.067383,3518914479957.899414,199,0,0.000664,0.001718,5986667,3878574,0,0,8389,0,1,1 +1774035868.439211,0.55,4,3992.50,50.88,1669.27,1991.99,0.00,3517160976071.888672,0.000000,70,0,0.001136,0.001334,5986682,3878594,0,0,8391,0,1,1 +1774035873.438599,0.80,4,3992.50,50.92,1667.54,1993.76,0.00,0.000000,0.000000,70,0,0.001926,0.002160,5986742,3878646,0,0,8394,0,1,1 +1774035878.439391,13.67,4,3992.50,56.81,1440.56,2224.19,0.00,0.126933,0.000000,199,0,1.404192,0.031727,5989478,3880502,0,0,8396,0,1,1 +1774035883.434712,0.35,4,3992.50,56.87,1438.09,2226.66,0.00,923.509496,8457.992991,44370,175022,4.422459,0.124318,5997904,3887677,0,0,8399,0,1,1 +1774035888.436510,0.45,4,3992.50,56.72,1444.02,2220.74,0.00,3517172531904.179688,3517172524377.621582,238,2,6.306016,0.183467,6010027,3897982,0,0,8401,0,1,1 +1774035893.439382,0.35,4,3992.50,56.75,1442.79,2221.97,0.00,3516417053305.553711,3516417053307.561035,11,0,4.160717,0.134546,6018103,3905584,0,0,8404,0,1,1 +1774035898.434521,0.45,4,3992.50,56.94,1435.61,2229.15,0.00,1.493346,0.022092,221,22,4.086107,0.120584,6025883,3912522,0,0,8406,0,1,1 +1774035903.434962,0.55,4,3992.50,56.79,1441.17,2223.58,0.00,3518127228098.891113,3518127228100.360840,11,0,6.295828,0.172904,6037926,3922280,0,0,8409,0,1,1 +1774035908.438239,0.86,4,3992.50,56.84,1439.45,2225.31,0.00,926.275821,8444.876568,45128,175231,3.737425,0.130230,6045463,3929575,0,0,8411,0,1,1 +1774035913.438980,0.55,4,3992.50,56.89,1437.25,2227.52,0.00,3517916313605.854492,3517916306083.262207,199,0,2.903322,0.089114,6051134,3934764,0,0,8414,0,1,1 +1774035918.438803,0.60,4,3992.50,57.07,1430.23,2234.53,0.00,3518561723745.303223,0.000000,11,0,4.238827,0.118102,6059184,3941621,0,0,8416,0,1,1 +1774035923.436692,0.65,4,3992.50,51.70,1640.67,2024.06,0.00,0.177028,0.000000,199,0,4.137523,0.131536,6067015,3949030,0,0,8419,0,1,1 +1774035928.434540,0.70,4,3992.50,51.63,1643.29,2021.48,0.00,1.315508,0.022080,221,22,0.164070,0.011883,6067384,3949620,0,0,8421,0,1,1 +1774035933.439273,0.60,4,3992.50,51.63,1643.32,2021.43,0.00,920.458873,8442.429215,44370,175266,0.003341,0.002619,6067461,3949698,0,0,8424,0,1,1 +1774035938.434607,0.85,4,3992.50,51.44,1650.73,2014.00,0.00,3521723844059.690430,3521723836524.987305,70,0,0.003619,0.006312,6067545,3949803,0,0,8426,0,1,1 +1774035943.437675,0.65,4,3992.50,51.46,1650.05,2014.71,0.00,922.206281,8445.317464,44370,175373,0.003639,0.004527,6067628,3949901,0,0,8429,0,1,1 +1774035948.438865,1.26,4,3992.50,51.30,1656.32,2008.43,0.00,3517599788456.179199,3517599780930.293457,11,0,0.063755,2.037810,6071256,3953775,0,0,8431,0,1,1 +1774035953.438779,3.08,4,3992.50,51.23,1658.84,2005.85,0.00,0.000000,0.000000,11,0,0.196580,7.702962,6082447,3968197,0,0,8434,0,1,1 +1774035958.437388,3.08,4,3992.50,51.43,1651.05,2013.41,0.00,0.000000,0.000000,11,0,0.196178,7.553406,6093938,3982284,0,0,8436,0,1,1 +1774035963.434505,2.73,4,3992.50,51.66,1641.42,2022.44,0.00,923.354495,8459.698715,44370,175510,0.233069,8.972875,6107422,3998946,0,0,8439,0,1,1 +1774035968.434581,2.58,4,3992.50,51.53,1645.80,2017.48,0.00,4.060779,0.032910,45128,175548,0.205311,7.707985,6119233,4013401,0,0,8441,0,1,1 +1774035973.434513,2.78,4,3992.50,51.34,1652.73,2010.19,0.00,3518484479014.417480,3518484479018.465820,44370,175541,0.164209,5.846786,6129010,4024413,0,0,8444,0,1,1 +1774035978.439394,1.36,4,3992.50,51.09,1662.59,2000.18,0.00,3515006243409.253418,3515006235882.571777,238,2,0.042362,1.427038,6131604,4027190,0,0,8446,0,1,1 +1774035983.439142,0.75,4,3992.50,50.60,1681.57,1981.21,0.00,920.859850,8491.120303,44370,175777,0.001504,0.003125,6131658,4027265,0,0,8449,0,1,1 +1774035988.437854,1.00,4,3992.50,50.66,1679.94,1983.63,0.00,3519343505076.592773,3519343497506.773438,11,0,0.001590,0.003263,6131717,4027338,0,0,8451,0,1,1 +1774035993.437438,0.60,4,3992.50,50.66,1679.93,1983.65,0.00,2.008956,0.000195,238,2,0.000678,0.001422,6131747,4027374,0,0,8454,0,1,1 +1774035998.438614,0.40,4,3992.50,50.66,1679.93,1983.65,0.00,3517609502701.861328,3517609502703.819336,70,0,0.000587,0.001343,6131770,4027404,0,0,8456,0,1,1 +1774036003.436224,0.55,4,3992.50,50.66,1679.93,1983.64,0.00,3520120141713.653809,0.000000,11,0,0.000645,0.001424,6131798,4027440,0,0,8459,0,1,1 +1774036008.438673,0.55,4,3992.50,50.69,1678.95,1984.62,0.00,0.000000,0.000000,11,0,0.000570,0.001349,6131820,4027471,0,0,8461,0,1,1 +1774036013.434619,0.50,4,3992.50,50.69,1678.95,1984.62,0.00,0.050041,0.000000,70,0,0.000565,0.001661,6131840,4027502,0,0,8464,0,1,1 +1774036018.434609,1.25,4,3992.50,50.69,1678.95,1984.61,0.00,3518444129662.752930,0.000000,11,0,0.000592,0.001350,6131864,4027533,0,0,8466,0,1,1 +1774036023.434608,0.50,4,3992.50,50.54,1684.97,1978.61,0.00,926.883240,8490.940897,45128,175947,0.000805,0.001586,6131895,4027570,0,0,8469,0,1,1 +1774036028.434539,0.50,4,3992.50,50.62,1681.56,1982.02,0.00,0.000000,0.003906,45128,175951,0.000685,0.001376,6131925,4027603,0,0,8471,0,1,1 +1774036033.435828,0.45,4,3992.50,50.62,1681.56,1982.02,0.00,3517530328136.202148,3517530320574.091797,11,0,0.000709,0.001481,6131956,4027644,0,0,8474,0,1,1 +1774036038.434624,0.40,4,3992.50,50.62,1681.56,1982.02,0.00,2.009272,0.000195,238,2,0.000612,0.001325,6131981,4027673,0,0,8476,0,1,1 +1774036043.434548,0.35,4,3992.50,50.63,1681.32,1982.26,0.00,920.827469,8491.083736,44370,175965,0.000672,0.001685,6132009,4027706,0,0,8479,0,1,1 +1774036048.436130,0.60,4,3992.50,50.55,1684.68,1978.97,0.00,3517324424997.569336,3517324417431.654297,199,0,0.001967,0.001736,6132055,4027751,0,0,8481,0,1,1 +1774036053.436337,0.65,4,3992.50,50.98,1667.54,1996.11,0.00,0.000000,0.000000,199,0,0.002210,0.003822,6132106,4027815,0,0,8484,0,1,1 +1774036058.438748,7.38,4,3992.50,57.48,1417.56,2250.61,0.00,3516741183079.177246,0.000000,11,0,0.027902,0.002872,6132240,4027882,0,0,8486,0,1,1 +1774036063.434753,9.22,4,3992.50,58.82,1365.43,2302.97,0.00,0.050040,0.000000,70,0,4.086239,0.100816,6139922,4033747,0,0,8489,0,1,1 +1774036068.438956,2.89,4,3992.50,58.35,1384.20,2284.46,0.00,921.997185,8483.995352,44370,176140,7.795949,0.204766,6154643,4045610,0,0,8491,0,1,1 +1774036073.439283,2.33,4,3992.50,58.25,1388.48,2280.46,0.00,3518206866031.369141,3518206858463.560547,11,0,7.385780,0.211995,6168762,4057764,0,0,8494,0,1,1 +1774036078.435133,2.64,4,3992.50,58.75,1368.95,2300.02,0.00,0.177100,0.000000,199,0,6.633891,0.184669,6181187,4068645,0,0,8496,0,1,1 +1774036083.437356,2.48,4,3992.50,58.67,1371.95,2297.02,0.00,3516873062004.331055,0.000000,11,0,8.706782,0.232876,6197514,4082128,0,0,8499,0,1,1 +1774036088.438482,2.74,4,3992.50,58.39,1382.95,2286.01,0.00,0.000000,0.000000,11,0,6.214997,0.183183,6209529,4092624,0,0,8501,0,1,1 +1774036093.438677,2.54,4,3992.50,58.68,1371.66,2297.27,0.00,0.000000,0.000000,11,0,5.727106,0.162036,6220292,4102320,0,0,8504,0,1,1 +1774036098.438980,2.58,4,3992.50,58.67,1371.98,2296.97,0.00,0.000000,0.000000,11,0,7.914808,0.209029,6235136,4114527,0,0,8506,0,1,1 +1774036103.435189,2.34,4,3992.50,58.44,1381.12,2287.87,0.00,2.010313,0.000195,238,2,8.208377,0.228424,6250785,4127452,0,0,8509,0,1,1 +1774036108.438752,2.83,4,3992.50,58.22,1389.84,2279.56,0.00,3515932186658.265137,3515932186660.271973,11,0,10.090781,0.228282,6267048,4140681,0,0,8511,0,1,1 +1774036113.436808,2.94,4,3992.50,58.18,1391.33,2278.07,0.00,927.243398,8494.575009,45128,176304,11.813694,0.216162,6283204,4153177,0,0,8514,0,1,1 +1774036118.438814,2.28,4,3992.50,58.28,1387.79,2281.61,0.00,3517026265647.601074,3517026258086.244141,11,0,8.222187,0.196413,6297530,4164370,0,0,8516,0,1,1 +1774036123.438103,2.84,4,3992.50,58.18,1391.48,2277.90,0.00,0.050007,0.000000,70,0,7.578007,0.191090,6311663,4175550,0,0,8519,0,1,1 +1774036128.434506,2.33,4,3992.50,58.11,1394.43,2274.99,0.00,0.000000,0.000000,70,0,8.938285,0.225540,6328167,4188602,0,0,8521,0,1,1 +1774036133.434498,32.24,4,3992.50,57.15,1432.00,2237.37,0.00,1.958792,0.000195,238,2,143.137656,0.090878,6346513,4195331,0,0,8524,0,1,1 +1774036138.436917,28.37,4,3992.50,57.23,1428.79,2240.53,0.00,3516735877475.132812,3516735877476.963867,199,0,119.500134,0.063398,6358260,4200265,0,0,8526,0,1,1 +1774036143.434970,28.30,4,3992.50,57.20,1429.98,2239.41,0.00,3519807581904.589355,0.000000,70,0,118.399931,0.055002,6369623,4204440,0,0,8529,0,1,1 +1774036148.438945,28.41,4,3992.50,57.17,1431.15,2238.19,0.00,0.000000,0.000000,70,0,119.463518,0.053036,6381179,4208235,0,0,8531,0,1,1 +1774036153.438783,28.39,4,3992.50,57.38,1422.80,2246.62,0.00,0.126957,0.000000,199,0,118.760208,0.058648,6392652,4212587,0,0,8534,0,1,1 +1774036158.439147,28.82,4,3992.50,57.37,1423.15,2246.24,0.00,3518181148622.664062,0.000000,11,0,119.948014,0.061567,6404266,4217270,0,0,8536,0,1,1 +1774036163.437490,28.55,4,3992.50,57.31,1425.32,2243.75,0.00,927.190436,8494.197183,45128,176431,118.797094,0.057174,6415854,4221521,0,0,8539,0,1,1 +1774036168.438219,4.21,4,3992.50,52.33,1620.66,2048.76,0.00,3517923623474.196289,3517923615908.794434,238,2,61.875880,0.033359,6422017,4223902,0,0,8541,0,1,1 +1774036173.438671,17.63,4,3992.50,51.76,1642.98,2026.45,0.00,924.857160,8491.180871,45154,177138,24.158974,0.114486,6430041,4229833,0,0,8544,0,1,1 +1774036178.439289,12.38,4,3992.50,52.34,1620.00,2049.41,0.00,3518002347201.800293,0.054778,44396,177447,16.098995,0.076493,6435304,4233831,0,0,8546,0,1,1 +1774036183.435586,2.76,4,3992.50,51.49,1653.34,2016.07,0.00,4.063849,0.034400,45154,177493,0.015449,10.630808,6436187,4235151,0,0,8549,0,1,1 +1774036188.438380,28.87,4,3992.50,51.38,1650.31,2011.81,0.00,3516472055679.710449,3516472048118.848145,11,0,0.056033,115.903344,6440341,4247238,0,0,8551,0,1,1 +1774036193.439458,19.80,4,3992.50,51.18,1657.75,2003.92,0.00,0.049989,0.000000,70,0,0.042667,78.498575,6443487,4255471,0,0,8554,0,1,1 +1774036198.439454,12.41,4,3992.50,56.34,1458.74,2205.97,0.00,1.958790,0.000195,238,2,7.620168,0.016597,6444627,4256334,0,0,8556,0,1,1 +1774036203.439386,4.67,4,3992.50,52.62,1604.45,2060.25,0.00,944.691789,8698.273505,45311,179278,32.450580,0.016209,6447981,4257087,0,0,8559,0,1,1 +1774036208.435216,1.05,4,3992.50,51.91,1632.28,2032.41,0.00,3521374162870.691406,3521374155112.703125,70,0,0.003503,0.006681,6448066,4257201,0,0,8561,0,1,1 +1774036213.436336,0.50,4,3992.50,51.50,1648.19,2016.52,0.00,1.441572,0.022065,221,22,0.003902,0.007168,6448168,4257344,0,0,8564,0,1,1 +1774036218.438741,0.40,4,3992.50,51.54,1646.76,2017.95,0.00,3516745232415.665039,3516745232416.957520,199,0,0.003469,0.005940,6448258,4257466,0,0,8566,0,1,1 +1774036223.439210,0.40,4,3992.50,51.54,1646.77,2017.93,0.00,942.375627,8697.365472,44563,179311,0.003865,0.007132,6448357,4257607,0,0,8569,0,1,1 +1774036228.439433,0.55,4,3992.50,51.55,1646.55,2018.16,0.00,3518280700038.292480,3518280692283.047363,70,0,0.003903,0.007153,6448459,4257749,0,0,8571,0,1,1 +1774036233.438728,0.45,4,3992.50,51.55,1646.56,2018.14,0.00,3518933411572.155762,0.000000,11,0,0.003887,0.007129,6448560,4257890,0,0,8574,0,1,1 +1774036238.439173,0.40,4,3992.50,51.53,1647.00,2017.70,0.00,2.008610,0.000195,238,2,0.003720,0.006409,6448652,4258017,0,0,8576,0,1,1 +1774036243.434663,0.50,4,3992.50,51.53,1647.01,2017.68,0.00,3521613452067.433105,3521613452069.443848,11,0,0.005384,0.008947,6448772,4258187,0,0,8579,0,1,1 +1774036248.436412,1.45,4,3992.50,51.52,1647.41,2017.29,0.00,2.008087,0.000195,238,2,0.005839,0.009180,6448902,4258353,0,0,8581,0,1,1 +1774036253.434554,0.65,4,3992.50,51.52,1647.41,2017.28,0.00,3519744931394.748535,0.021883,221,22,0.003954,0.007175,6449007,4258497,0,0,8584,0,1,1 +1774036258.439347,0.55,4,3992.50,51.52,1647.67,2017.01,0.00,3515068115218.192871,3515068115219.661133,11,0,0.005149,0.007171,6449118,4258628,0,0,8586,0,1,1 +1774036263.436692,0.55,4,3992.50,51.52,1647.71,2017.00,0.00,1.492687,0.022082,221,22,0.004823,0.007814,6449222,4258773,0,0,8589,0,1,1 +1774036268.437506,0.50,4,3992.50,51.33,1655.01,2009.68,0.00,945.056113,8697.098750,45321,179635,0.003877,0.007121,6449322,4258913,0,0,8591,0,1,1 +1774036273.438655,0.35,4,3992.50,51.33,1655.04,2009.66,0.00,3517628609946.413086,3517628602194.352539,238,2,0.003877,0.007131,6449422,4259054,0,0,8594,0,1,1 +1774036278.439278,11.36,4,3992.50,51.66,1640.01,2022.69,0.00,0.000000,0.000000,238,2,0.022386,40.063598,6450803,4263524,0,0,8596,0,1,1 +1774036283.438231,0.55,4,3992.50,51.42,1649.53,2013.16,0.00,3519174390049.543457,0.021880,221,22,0.002277,0.006367,6450872,4263647,0,0,8599,0,1,1 +1774036288.434606,0.45,4,3992.50,51.41,1649.79,2012.91,0.00,3520990092889.785156,3520990092891.256348,11,0,0.002290,0.006361,6450942,4263769,0,0,8601,0,1,1 +1774036293.434629,0.35,4,3992.50,51.42,1649.64,2013.06,0.00,0.000000,0.000000,11,0,0.002322,0.006405,6451015,4263895,0,0,8604,0,1,1 +1774036298.438764,0.45,4,3992.50,51.41,1649.86,2012.83,0.00,1.490662,0.022052,221,22,0.001856,0.005155,6451073,4263998,0,0,8606,0,1,1 +1774036303.438715,0.40,4,3992.50,51.41,1649.87,2012.83,0.00,3518471133980.382324,3518471133981.852051,11,0,0.002287,0.006327,6451143,4264118,0,0,8609,0,1,1 +1774036308.438925,0.50,4,3992.50,51.41,1649.87,2012.82,0.00,0.049998,0.000000,70,0,0.002289,0.006356,6451213,4264240,0,0,8611,0,1,1 +1774036313.439448,0.40,4,3992.50,51.42,1649.63,2013.06,0.00,0.000000,0.000000,70,0,0.001856,0.005129,6451271,4264341,0,0,8614,0,1,1 +1774036318.438675,0.45,4,3992.50,51.42,1649.64,2013.05,0.00,1.442117,0.022074,221,22,0.002340,0.006407,6451345,4264466,0,0,8616,0,1,1 +1774036323.434545,0.50,4,3992.50,51.42,1649.64,2013.05,0.00,3521346189447.514648,3521346189448.935547,70,0,0.002064,0.005335,6451417,4264582,0,0,8619,0,1,1 +1774036328.437018,0.40,4,3992.50,51.42,1649.64,2013.05,0.00,3516697701092.207520,0.000000,11,0,0.002296,0.006361,6451488,4264705,0,0,8621,0,1,1 +1774036333.436404,0.40,4,3992.50,51.42,1649.43,2013.26,0.00,2.009036,0.000195,238,2,0.002289,0.006367,6451558,4264828,0,0,8624,0,1,1 +1774036338.434576,0.50,4,3992.50,51.42,1649.43,2013.26,0.00,940.976241,8742.014599,44563,180083,0.002290,0.006358,6451628,4264950,0,0,8626,0,1,1 +1774036343.438404,13.39,4,3992.50,57.70,1407.62,2259.25,0.00,4.057733,0.054255,45321,180138,6.209996,0.014752,6452500,4265650,0,0,8629,0,1,1 +1774036348.439338,36.69,4,3992.50,57.55,1415.41,2253.08,0.00,0.000000,0.099493,45321,180251,118.344470,0.029879,6464687,4267548,0,0,8631,0,1,1 +1774036353.434512,30.27,4,3992.50,57.29,1425.38,2243.10,0.00,3521836552902.480957,3521836545101.211426,221,22,118.981312,0.021235,6477008,4268897,0,0,8634,0,1,1 +1774036358.438543,30.54,4,3992.50,57.25,1426.93,2241.41,0.00,0.516478,3515603217848.412598,238,2,119.372677,0.027244,6489344,4270828,0,0,8636,0,1,1 +1774036363.438473,30.72,4,3992.50,57.53,1416.04,2252.45,0.00,3518486091208.506836,3518486091210.465332,70,0,119.166676,0.026547,6501464,4272822,0,0,8639,0,1,1 +1774036368.438748,30.49,4,3992.50,57.28,1425.57,2242.73,0.00,946.599724,8738.511254,45321,180295,119.562108,0.036455,6513576,4275403,0,0,8641,0,1,1 +1774036373.436721,30.24,4,3992.50,57.44,1419.59,2248.86,0.00,3519864031989.535156,3519864024192.614746,221,22,119.220702,0.044573,6525850,4278602,0,0,8644,0,1,1 +1774036378.436762,30.29,4,3992.50,57.33,1423.99,2244.44,0.00,0.000000,0.000000,221,22,119.376287,0.055627,6538231,4282819,0,0,8646,0,1,1 +1774036383.436964,30.55,4,3992.50,57.27,1426.12,2242.33,0.00,0.000000,0.000000,221,22,119.372602,0.059207,6550634,4287262,0,0,8649,0,1,1 +1774036388.438397,8.33,4,3992.50,51.29,1660.57,2007.98,0.00,0.000000,0.000000,221,22,67.904166,0.050819,6558422,4290329,0,0,8651,0,1,1 +1774036393.439181,13.91,4,3992.50,51.69,1644.89,2023.60,0.00,0.516814,3517885690946.825684,238,2,18.118358,0.083665,6564429,4294700,0,0,8654,0,1,1 +1774036398.438548,12.99,4,3992.50,52.19,1625.16,2043.30,0.00,3518883144978.127930,3518883144979.960449,199,0,20.120638,0.088940,6570901,4299508,0,0,8656,0,1,1 +1774036403.434532,0.85,4,3992.50,52.07,1629.81,2038.64,0.00,0.000000,0.000000,199,0,0.003911,0.006608,6570997,4299635,0,0,8659,0,1,1 +1774036408.439287,0.40,4,3992.50,51.66,1645.94,2022.50,0.00,945.760499,8731.797021,45332,181507,0.003646,0.006508,6571090,4299765,0,0,8661,0,1,1 +1774036413.434557,0.40,4,3992.50,51.62,1647.29,2021.18,0.00,3521768782891.958008,3521768775091.137207,199,0,0.003882,0.007139,6571190,4299906,0,0,8664,0,1,1 +1774036418.434545,0.55,4,3992.50,51.62,1647.29,2021.19,0.00,3518445507488.596680,0.000000,11,0,0.003886,0.007130,6571291,4300047,0,0,8666,0,1,1 +1774036423.438556,0.50,4,3992.50,51.62,1647.56,2020.93,0.00,946.077957,8733.643459,45332,181812,0.003646,0.006481,6571384,4300175,0,0,8669,0,1,1 +1774036428.439066,0.35,4,3992.50,51.62,1647.56,2020.91,0.00,3518078441333.123047,3518078433540.054688,70,0,0.003649,0.006488,6571477,4300303,0,0,8671,0,1,1 +1774036433.436590,0.45,4,3992.50,51.62,1647.57,2020.90,0.00,947.255935,8745.062419,45332,181865,0.004006,0.007291,6571587,4300454,0,0,8674,0,1,1 +1774036438.437824,0.40,4,3992.50,51.62,1647.37,2021.09,0.00,3517569352524.203125,3517569344730.222168,238,2,0.003877,0.007121,6571687,4300594,0,0,8676,0,1,1 +1774036443.439453,0.50,4,3992.50,51.62,1647.39,2021.09,0.00,3517291342191.933105,0.021868,221,22,0.003877,0.007117,6571787,4300734,0,0,8679,0,1,1 +1774036448.438466,6.58,4,3992.50,51.94,1634.01,2033.71,0.00,3519132083330.357910,3519132083331.651367,199,0,0.022257,27.095560,6573211,4303796,0,0,8681,0,1,1 +1774036453.439420,30.93,4,3992.50,51.99,1626.11,2035.49,0.00,3517766030381.327637,0.000000,70,0,0.065762,122.931193,6578097,4316839,0,0,8684,0,1,1 +1774036458.439415,16.11,4,3992.50,51.23,1655.64,2005.63,0.00,3518439934266.723145,0.000000,11,0,0.011704,55.079961,6578856,4322401,0,0,8686,0,1,1 +1774036463.438158,10.73,4,3992.50,56.14,1465.93,2198.13,0.00,0.176998,0.000000,199,0,16.837213,0.019305,6580921,4323369,0,0,8689,0,1,1 +1774036468.438562,3.76,4,3992.50,51.74,1638.13,2025.91,0.00,1.314835,0.022069,221,22,23.236849,0.018032,6583451,4324284,0,0,8691,0,1,1 +1774036473.438753,0.40,4,3992.50,51.63,1642.49,2021.60,0.00,965.046421,8945.768972,45454,183405,0.003878,0.007132,6583551,4324425,0,0,8694,0,1,1 +1774036478.434815,0.45,4,3992.50,51.63,1642.48,2021.61,0.00,3521210756473.457520,3521210748486.138184,221,22,0.003881,0.007128,6583651,4324565,0,0,8696,0,1,1 +1774036483.438285,1.05,4,3992.50,51.43,1650.64,2013.44,0.00,0.516536,3515996867969.020508,238,2,0.003875,0.007127,6583751,4324706,0,0,8699,0,1,1 +1774036488.434552,0.45,4,3992.50,51.44,1650.09,2013.99,0.00,0.000000,0.000000,238,2,0.003431,0.005868,6583838,4324823,0,0,8701,0,1,1 +1774036493.437863,0.45,4,3992.50,51.42,1650.80,2013.27,0.00,3516108857771.167969,0.021861,221,22,0.003901,0.007159,6583940,4324966,0,0,8704,0,1,1 +1774036498.438903,10.26,4,3992.50,51.16,1659.20,2003.17,0.00,960.822488,8978.472064,44696,183799,0.021126,40.060790,6585227,4329478,0,0,8706,0,1,1 +1774036503.434526,0.60,4,3992.50,51.00,1665.65,1996.72,0.00,3521520131878.099609,3521520123851.215820,238,2,0.002291,0.006372,6585297,4329601,0,0,8709,0,1,1 +1774036508.434698,0.65,4,3992.50,51.05,1663.70,1998.67,0.00,964.533268,8980.252213,45454,183931,0.001858,0.005159,6585355,4329704,0,0,8711,0,1,1 +1774036513.438887,0.45,4,3992.50,51.05,1663.70,1998.67,0.00,3515492104408.165527,3515492096398.880859,238,2,0.002260,0.006290,6585423,4329822,0,0,8714,0,1,1 +1774036518.438165,0.30,4,3992.50,51.05,1663.70,1998.67,0.00,964.705591,8981.861309,45454,183937,0.002289,0.006357,6585493,4329944,0,0,8716,0,1,1 +1774036523.434525,0.40,4,3992.50,51.07,1662.97,1999.40,0.00,3521000332784.653320,3521000324764.647949,199,0,0.001828,0.005110,6585549,4330044,0,0,8719,0,1,1 +1774036528.439398,0.45,4,3992.50,51.07,1662.98,1999.40,0.00,961.400503,8977.812312,44696,183954,0.002287,0.006350,6585619,4330166,0,0,8721,0,1,1 +1774036533.438529,0.45,4,3992.50,51.09,1662.24,2000.13,0.00,0.000000,0.080483,44696,184007,0.001857,0.005131,6585677,4330267,0,0,8724,0,1,1 +1774036538.439205,0.50,4,3992.50,51.10,1661.52,2000.86,0.00,3517961577404.643555,3517961569381.601074,11,0,0.002638,0.006972,6585757,4330404,0,0,8726,0,1,1 +1774036543.434607,0.55,4,3992.50,51.10,1661.52,2000.85,0.00,0.050046,0.000000,70,0,0.002996,0.007654,6585854,4330563,0,0,8729,0,1,1 +1774036548.436184,0.50,4,3992.50,51.10,1661.52,2000.85,0.00,0.126913,0.000000,199,0,0.003581,0.007501,6585951,4330710,0,0,8731,0,1,1 +1774036553.435774,0.45,4,3992.50,51.10,1661.53,2000.84,0.00,3518726112482.998047,0.000000,11,0,0.001831,0.005099,6586007,4330809,0,0,8734,0,1,1 +1774036558.434548,0.50,4,3992.50,51.10,1661.53,2000.84,0.00,0.050012,0.000000,70,0,0.004702,0.008619,6586106,4330950,0,0,8736,0,1,1 +1774036563.438379,1.85,4,3992.50,55.05,1506.54,2155.15,0.00,1.957290,0.000195,238,2,0.007042,0.010378,6586239,4331125,0,0,8739,0,1,1 +1774036568.436896,42.75,4,3992.50,57.74,1407.76,2260.51,0.00,3519480784207.932129,0.021881,221,22,116.401111,0.047746,6598466,4334496,0,0,8741,0,1,1 +1774036573.435510,32.64,4,3992.50,57.62,1412.37,2255.87,0.00,961.288886,8989.238472,44696,184150,122.007596,0.029800,6611275,4336517,0,0,8744,0,1,1 +1774036578.434924,31.32,4,3992.50,57.63,1412.03,2256.26,0.00,3518849859221.233887,3518849851195.860840,199,0,120.405885,0.042346,6623713,4339737,0,0,8746,0,1,1 +1774036583.439441,32.17,4,3992.50,57.64,1411.69,2256.61,0.00,961.468845,8978.669845,44696,184172,120.235237,0.035857,6636234,4342369,0,0,8749,0,1,1 +1774036588.435001,31.53,4,3992.50,57.42,1420.23,2248.11,0.00,3521564196345.204102,3521564188312.335449,221,22,119.875573,0.031087,6648703,4344491,0,0,8751,0,1,1 +1774036593.438593,31.22,4,3992.50,57.38,1422.32,2246.42,0.00,3515911460361.089844,3515911460362.381836,199,0,120.081511,0.036000,6661136,4347104,0,0,8754,0,1,1 +1774036598.435439,31.11,4,3992.50,57.46,1418.38,2249.84,0.00,1.315771,0.022084,221,22,119.040074,0.031886,6673442,4349492,0,0,8756,0,1,1 +1774036603.434561,30.73,4,3992.50,57.60,1413.05,2255.18,0.00,3519054899438.664062,3519054899440.134277,11,0,119.386526,0.032079,6685701,4351782,0,0,8759,0,1,1 +1774036608.439238,5.87,4,3992.50,52.58,1609.83,2058.50,0.00,0.000000,0.000000,11,0,68.031331,0.023356,6692657,4353502,0,0,8761,0,1,1 +1774036613.438194,2.86,4,3992.50,52.38,1617.44,2050.92,0.00,962.866912,8989.064901,44710,184404,2.022817,0.020458,6693512,4354229,0,0,8764,0,1,1 +1774036618.434535,21.40,4,3992.50,52.42,1616.19,2052.25,0.00,4.063814,0.143171,45468,184958,32.213355,0.141053,6703680,4361898,0,0,8766,0,1,1 +1774036623.434655,4.81,4,3992.50,51.81,1639.71,2028.57,0.00,3518352285706.348633,0.550670,44710,185326,6.049456,0.032889,6705824,4363505,0,0,8769,0,1,1 +1774036628.437992,0.90,4,3992.50,51.22,1662.74,2005.51,0.00,3516090338573.221191,3516090330553.181152,199,0,0.004587,0.008509,6705941,4363669,0,0,8771,0,1,1 +1774036633.438551,10.13,4,3992.50,51.61,1646.34,2020.48,0.00,3518044123037.420410,0.000000,70,0,0.026323,39.459595,6707672,4367968,0,0,8774,0,1,1 +1774036638.439008,30.25,4,3992.50,51.56,1641.77,2018.77,0.00,1.958610,0.000195,238,2,0.026675,118.433017,6709582,4380358,0,0,8776,0,1,1 +1774036643.438769,13.05,4,3992.50,51.37,1649.68,2011.44,0.00,3518605662831.020508,3518605662833.028809,11,0,0.010763,47.199779,6710185,4385355,0,0,8779,0,1,1 +1774036648.438858,12.99,4,3992.50,56.19,1463.92,2200.11,0.00,1.491868,0.022070,221,22,14.629829,0.020003,6712035,4386372,0,0,8781,0,1,1 +1774036653.435313,4.37,4,3992.50,51.12,1662.67,2001.33,0.00,3520933641673.742676,3520933641675.213867,11,0,25.460026,0.014957,6714794,4386983,0,0,8784,0,1,1 +1774036658.439095,0.40,4,3992.50,51.12,1662.44,2001.57,0.00,985.719444,9186.801032,45606,187063,0.003951,0.007210,6714900,4387129,0,0,8786,0,1,1 +1774036663.438120,0.35,4,3992.50,51.12,1662.46,2001.55,0.00,3519123162700.434570,3519123162704.478027,44848,187047,0.003429,0.005874,6714987,4387247,0,0,8789,0,1,1 +1774036668.439162,0.35,4,3992.50,51.12,1662.48,2001.54,0.00,3517703830674.309570,3517703822464.693359,11,0,0.003877,0.007121,6715087,4387387,0,0,8791,0,1,1 +1774036673.439039,0.45,4,3992.50,51.12,1662.49,2001.53,0.00,0.176957,0.000000,199,0,0.003878,0.007133,6715187,4387528,0,0,8794,0,1,1 +1774036678.438534,0.40,4,3992.50,51.13,1662.26,2001.76,0.00,0.000000,0.000000,199,0,0.003904,0.007154,6715289,4387670,0,0,8796,0,1,1 +1774036683.439320,0.45,4,3992.50,51.13,1662.28,2001.74,0.00,1.314735,0.022067,221,22,0.003015,0.005072,6715365,4387772,0,0,8799,0,1,1 +1774036688.437808,0.40,4,3992.50,51.13,1662.30,2001.73,0.00,3519501220971.381348,3519501220972.801758,70,0,0.003712,0.006566,6715462,4387906,0,0,8801,0,1,1 +1774036693.436829,0.45,4,3992.50,51.14,1661.70,2002.33,0.00,982.546669,9195.817272,44848,187321,0.003897,0.007159,6715563,4388049,0,0,8804,0,1,1 +1774036698.438858,0.40,4,3992.50,51.14,1661.71,2002.31,0.00,0.000000,0.032311,44848,187362,0.003959,0.007168,6715669,4388193,0,0,8806,0,1,1 +1774036703.439276,0.45,4,3992.50,50.80,1675.26,1988.77,0.00,3518143449959.010742,3518143441748.052246,11,0,0.003878,0.007132,6715769,4388334,0,0,8809,0,1,1 +1774036708.438962,0.35,4,3992.50,50.83,1673.79,1990.23,0.00,0.176964,0.000000,199,0,0.003420,0.005856,6715855,4388450,0,0,8811,0,1,1 +1774036713.434556,0.50,4,3992.50,50.83,1673.81,1990.20,0.00,3521540402963.660156,0.000000,11,0,0.003881,0.007139,6715955,4388591,0,0,8814,0,1,1 +1774036718.439454,0.40,4,3992.50,50.83,1673.82,1990.19,0.00,2.006823,0.000195,238,2,0.003256,0.006878,6716043,4388724,0,0,8816,0,1,1 +1774036723.438491,11.96,4,3992.50,51.15,1659.48,2002.80,0.00,3519114580020.543457,3519114580022.552246,11,0,0.023205,40.076366,6717478,4393154,0,0,8819,0,1,1 +1774036728.434614,0.45,4,3992.50,51.13,1660.37,2001.90,0.00,987.230554,9236.840429,45606,187799,0.001832,0.005093,6717534,4393252,0,0,8821,0,1,1 +1774036733.438610,0.45,4,3992.50,51.08,1662.41,1999.86,0.00,3515627716509.113281,3515627708270.475586,238,2,0.002295,0.006369,6717605,4393376,0,0,8824,0,1,1 +1774036738.439109,0.50,4,3992.50,50.89,1669.82,1992.45,0.00,0.000000,0.000000,238,2,0.002289,0.006355,6717675,4393498,0,0,8826,0,1,1 +1774036743.438890,0.45,4,3992.50,50.92,1668.60,1993.67,0.00,980.438294,9230.147567,44848,187807,0.002276,0.006366,6717744,4393621,0,0,8829,0,1,1 +1774036748.439507,0.35,4,3992.50,50.96,1666.89,1995.38,0.00,3518003307928.814941,3518003299680.483887,238,2,0.001831,0.005088,6717800,4393719,0,0,8831,0,1,1 +1774036753.439061,0.50,4,3992.50,50.97,1666.67,1995.60,0.00,3518750462826.144531,3518750462828.153320,11,0,0.002289,0.006367,6717870,4393842,0,0,8834,0,1,1 +1774036758.434536,0.40,4,3992.50,50.97,1666.68,1995.60,0.00,0.000000,0.000000,11,0,0.002341,0.006424,6717944,4393968,0,0,8836,0,1,1 +1774036763.437834,0.30,4,3992.50,50.99,1665.94,1996.33,0.00,2.007465,0.000195,238,2,0.002338,0.006424,6718018,4394095,0,0,8839,0,1,1 +1774036768.438588,0.45,4,3992.50,50.99,1665.71,1996.55,0.00,984.307847,9233.006095,45606,187880,0.002084,0.005297,6718090,4394209,0,0,8841,0,1,1 +1774036773.434841,0.55,4,3992.50,50.96,1667.11,1995.16,0.00,3521075726696.750000,3521075718442.631348,11,0,0.001858,0.005115,6718148,4394309,0,0,8844,0,1,1 +1774036778.434528,0.40,4,3992.50,50.98,1666.37,1995.89,0.00,0.050003,0.000000,70,0,0.001846,0.005102,6718205,4394408,0,0,8846,0,1,1 +1774036783.434610,0.40,4,3992.50,50.97,1666.61,1995.65,0.00,1.441871,0.022070,221,22,0.002289,0.006366,6718275,4394531,0,0,8849,0,1,1 +1774036788.438502,1.15,4,3992.50,51.35,1651.92,2010.33,0.00,0.000000,0.000000,221,22,0.005088,0.008946,6718395,4394693,0,0,8851,0,1,1 +1774036793.438606,41.93,4,3992.50,57.33,1423.50,2244.58,0.00,3518364340741.570312,3518364340742.989746,70,0,85.805253,0.050039,6727879,4398139,0,0,8854,0,1,1 +1774036798.438476,31.35,4,3992.50,57.38,1421.51,2246.71,0.00,0.000000,0.000000,70,0,119.181213,0.061529,6740938,4402690,0,0,8856,0,1,1 +1774036803.434529,29.38,4,3992.50,57.47,1417.56,2250.08,0.00,0.127053,0.000000,199,0,118.967351,0.054593,6753613,4406860,0,0,8859,0,1,1 +1774036808.438387,29.28,4,3992.50,57.56,1413.93,2253.70,0.00,985.541862,9227.594547,45616,188130,119.446022,0.054412,6766810,4411096,0,0,8861,0,1,1 +1774036813.438369,29.18,4,3992.50,57.46,1418.16,2249.52,0.00,3518449363435.582031,3518449355187.319336,11,0,118.901381,0.057705,6780303,4415366,0,0,8864,0,1,1 +1774036818.435472,28.94,4,3992.50,57.40,1420.34,2247.32,0.00,987.051079,9240.202375,45616,188209,119.579756,0.064382,6794038,4420138,0,0,8866,0,1,1 +1774036823.436625,29.40,4,3992.50,57.60,1412.52,2255.19,0.00,0.000000,0.009080,45616,188221,119.233265,0.066284,6808079,4425173,0,0,8869,0,1,1 +1774036828.438539,29.66,4,3992.50,57.57,1413.56,2254.08,0.00,3517091031456.752441,3517091023211.354004,199,0,119.374075,0.066884,6822295,4430285,0,0,8871,0,1,1 +1774036833.436301,14.65,4,3992.50,53.01,1592.41,2075.34,0.00,1.315530,0.022080,221,22,106.192129,0.066644,6835182,4435345,0,0,8874,0,1,1 +1774036838.438401,4.67,4,3992.50,51.51,1651.01,2016.70,0.00,3516960721948.430664,3516960721949.849609,70,0,4.031355,0.025355,6836629,4436469,0,0,8876,0,1,1 +1774036843.436511,23.66,4,3992.50,53.54,1571.55,2096.13,0.00,0.127001,0.000000,199,0,36.233700,0.163162,6848286,4445285,0,0,8879,0,1,1 +1774036848.438868,2.11,4,3992.50,52.67,1605.64,2062.06,0.00,3516779261281.557617,0.000000,70,0,0.016137,0.015154,6848625,4445613,0,0,8881,0,1,1 +1774036853.439107,14.27,4,3992.50,52.25,1619.13,2045.78,0.00,0.126947,0.000000,199,0,0.032769,57.286175,6850858,4451786,0,0,8884,0,1,1 +1774036858.439373,29.81,4,3992.50,51.60,1639.84,2020.34,0.00,986.417603,9378.272893,45633,190325,0.049030,119.368435,6854349,4464163,0,0,8886,0,1,1 +1774036863.438683,8.23,4,3992.50,51.56,1641.58,2018.74,0.00,3518923004645.361816,28.855351,44888,190506,0.015403,28.453705,6855279,4467304,0,0,8889,0,1,1 +1774036868.434869,15.31,4,3992.50,56.20,1463.27,2200.37,0.00,3521123495550.542969,3521123487119.089844,11,0,29.673388,0.024926,6858576,4468695,0,0,8891,0,1,1 +1774036873.434850,0.90,4,3992.50,52.65,1602.10,2061.52,0.00,1.491900,0.022070,221,22,10.432249,0.009106,6859768,4469074,0,0,8894,0,1,1 +1774036878.434600,0.80,4,3992.50,51.85,1633.47,2030.13,0.00,3518613105054.729492,3518613105056.022461,199,0,0.005064,0.008767,6859873,4469218,0,0,8896,0,1,1 +1774036883.438848,0.70,4,3992.50,51.48,1648.20,2015.39,0.00,1005.356031,9433.448059,45768,190942,0.003925,0.007176,6859977,4469362,0,0,8899,0,1,1 +1774036888.438870,0.45,4,3992.50,51.44,1649.73,2013.86,0.00,3518421171618.289062,3518421163181.783691,221,22,0.003878,0.007135,6860077,4469503,0,0,8901,0,1,1 +1774036893.438996,0.65,4,3992.50,51.41,1650.83,2012.78,0.00,3518348808960.543457,3518348808962.013184,11,0,0.003903,0.007163,6860179,4469646,0,0,8904,0,1,1 +1774036898.438630,0.60,4,3992.50,51.42,1650.60,2013.02,0.00,1006.460567,9442.308078,45768,191041,0.003433,0.005874,6860266,4469763,0,0,8906,0,1,1 +1774036903.438467,0.70,4,3992.50,51.41,1650.87,2012.76,0.00,3518551835962.286133,3518551827526.730469,70,0,0.003891,0.007151,6860367,4469905,0,0,8909,0,1,1 +1774036908.435990,0.65,4,3992.50,51.41,1650.88,2012.77,0.00,1.442609,0.022081,221,22,0.003981,0.007255,6860474,4470054,0,0,8911,0,1,1 +1774036913.434612,0.60,4,3992.50,51.41,1650.89,2012.75,0.00,1001.110038,9444.466115,45010,191344,0.003854,0.007134,6860572,4470195,0,0,8914,0,1,1 +1774036918.439455,0.65,4,3992.50,51.41,1650.90,2012.73,0.00,0.000000,0.007317,45010,191352,0.003404,0.005850,6860657,4470311,0,0,8916,0,1,1 +1774036923.437408,0.75,4,3992.50,51.32,1654.37,2009.27,0.00,3519877701638.832031,3519877693195.810059,11,0,0.003954,0.007175,6860762,4470455,0,0,8919,0,1,1 +1774036928.437879,0.60,4,3992.50,51.36,1652.70,2010.94,0.00,0.176936,0.000000,199,0,0.003865,0.007122,6860861,4470595,0,0,8921,0,1,1 +1774036933.434612,0.60,4,3992.50,51.35,1653.11,2010.53,0.00,3520737177622.182617,0.000000,11,0,0.003876,0.007145,6860961,4470737,0,0,8924,0,1,1 +1774036938.434543,0.55,4,3992.50,51.35,1653.12,2010.52,0.00,0.176956,0.000000,199,0,0.004879,0.007344,6861049,4470859,0,0,8926,0,1,1 +1774036943.438965,11.48,4,3992.50,51.23,1656.32,2005.69,0.00,3515328709165.418945,0.000000,70,0,0.029481,40.032441,6863128,4475360,0,0,8929,0,1,1 +1774036948.434547,0.60,4,3992.50,51.23,1656.36,2005.62,0.00,1.960521,0.000195,238,2,0.002440,0.006374,6863199,4475483,0,0,8931,0,1,1 +1774036953.438629,0.60,4,3992.50,51.06,1663.03,1998.96,0.00,3515567377404.151855,3515567377406.108887,70,0,0.002287,0.006361,6863269,4475606,0,0,8934,0,1,1 +1774036958.438251,0.40,4,3992.50,50.89,1669.68,1992.30,0.00,3518703296041.359375,0.000000,11,0,0.001819,0.005077,6863324,4475703,0,0,8936,0,1,1 +1774036963.435850,0.40,4,3992.50,50.92,1668.49,1993.50,0.00,0.000000,0.000000,11,0,0.002298,0.006377,6863395,4475827,0,0,8939,0,1,1 +1774036968.439160,0.40,4,3992.50,50.92,1668.49,1993.49,0.00,0.176836,0.000000,199,0,0.002275,0.006352,6863464,4475949,0,0,8941,0,1,1 +1774036973.435673,0.45,4,3992.50,50.92,1668.25,1993.73,0.00,1002.848321,9488.873486,45010,191899,0.002316,0.006402,6863536,4476074,0,0,8944,0,1,1 +1774036978.438813,0.45,4,3992.50,50.94,1667.52,1994.46,0.00,3516229557220.299805,3516229548743.681641,238,2,0.002338,0.006402,6863610,4476199,0,0,8946,0,1,1 +1774036983.439245,0.45,4,3992.50,50.94,1667.52,1994.46,0.00,3518132798219.116211,3518132798221.074707,70,0,0.001856,0.005142,6863668,4476301,0,0,8949,0,1,1 +1774036988.438765,0.50,4,3992.50,50.94,1667.52,1994.46,0.00,0.126965,0.000000,199,0,0.002484,0.006528,6863752,4476436,0,0,8951,0,1,1 +1774036993.436409,0.40,4,3992.50,50.94,1667.53,1994.45,0.00,1002.621499,9486.803921,45010,191951,0.002321,0.006394,6863824,4476561,0,0,8954,0,1,1 +1774036998.438956,0.45,4,3992.50,50.96,1666.79,1995.19,0.00,3516645627446.299316,3516645618970.432617,199,0,0.002288,0.006353,6863894,4476683,0,0,8956,0,1,1 +1774037003.438823,0.45,4,3992.50,50.96,1666.80,1995.18,0.00,1006.236760,9482.619248,45768,191982,0.001831,0.005099,6863950,4476782,0,0,8959,0,1,1 +1774037008.438800,13.40,4,3992.50,57.18,1427.32,2238.58,0.00,3518453823423.148926,3518453814947.128906,11,0,5.614219,0.015492,6864759,4477463,0,0,8961,0,1,1 +1774037013.438625,35.45,4,3992.50,57.47,1417.46,2250.22,0.00,0.000000,0.000000,11,0,118.456850,0.039139,6876828,4480229,0,0,8964,0,1,1 +1774037018.438921,29.65,4,3992.50,57.59,1412.95,2254.63,0.00,2.008670,0.000195,238,2,119.602892,0.048569,6889669,4483746,0,0,8966,0,1,1 +1774037023.434958,30.07,4,3992.50,57.40,1420.13,2247.44,0.00,3521228252707.733398,3521228252709.566895,199,0,118.883636,0.054992,6902561,4487706,0,0,8969,0,1,1 +1774037028.438400,29.77,4,3992.50,57.60,1412.34,2255.30,0.00,3516017325429.272949,0.000000,11,0,119.537585,0.053548,6915970,4491745,0,0,8971,0,1,1 +1774037033.438533,29.14,4,3992.50,57.57,1413.74,2253.84,0.00,1002.456342,9482.434537,45064,192214,118.569964,0.060253,6929831,4496351,0,0,8974,0,1,1 +1774037038.436864,29.51,4,3992.50,57.67,1409.50,2258.05,0.00,3519612316331.064453,3519612307848.027832,11,0,119.994799,0.065850,6944152,4501334,0,0,8976,0,1,1 +1774037043.438634,29.44,4,3992.50,57.60,1412.30,2255.28,0.00,2.008078,0.000195,238,2,119.405871,0.057526,6958033,4505675,0,0,8979,0,1,1 +1774037048.434531,29.82,4,3992.50,57.67,1409.71,2257.83,0.00,3521327211422.236328,3521327211424.196777,70,0,119.646819,0.070568,6972335,4511043,0,0,8981,0,1,1 +1774037053.434687,5.63,4,3992.50,54.08,1550.25,2117.39,0.00,3518327086652.668457,0.000000,11,0,66.927703,0.040110,6980207,4513871,0,0,8984,0,1,1 +1774037058.434530,5.92,4,3992.50,52.78,1601.25,2066.39,0.00,1006.712375,9483.379193,45839,192509,4.030762,0.026403,6981547,4514930,0,0,8986,0,1,1 +1774037063.435122,10.06,4,3992.50,51.74,1642.05,2025.56,0.00,3518020259854.966309,3518020251379.570312,11,0,16.102407,0.074491,6986938,4518878,0,0,8989,0,1,1 +1774037068.434583,13.23,4,3992.50,51.26,1660.56,2007.03,0.00,0.176972,0.000000,199,0,20.137484,0.091789,6993614,4523784,0,0,8991,0,1,1 +1774037073.435754,1.00,4,3992.50,51.29,1659.36,2008.21,0.00,1002.208154,9481.258884,45081,193340,0.004596,0.008502,6993731,4523947,0,0,8994,0,1,1 +1774037078.439177,0.40,4,3992.50,51.29,1659.39,2008.20,0.00,3516030544745.221191,3516030536270.162598,11,0,0.003875,0.007118,6993831,4524087,0,0,8996,0,1,1 +1774037083.439024,10.95,4,3992.50,51.93,1632.70,2033.06,0.00,0.050002,0.000000,70,0,0.032094,43.474458,6995986,4529013,0,0,8999,0,1,1 +1774037088.439436,29.28,4,3992.50,52.33,1611.58,2049.02,0.00,1.958627,0.000195,238,2,0.043628,118.235779,6999192,4542065,0,0,9001,0,1,1 +1774037093.434618,11.76,4,3992.50,52.28,1613.93,2047.04,0.00,1005.657417,9670.076515,45852,194832,0.019757,43.449480,7000462,4546980,0,0,9004,0,1,1 +1774037098.441803,4.60,4,3992.50,56.30,1459.08,2204.44,0.00,3513388703004.701172,3513388694363.007324,70,0,1.208741,0.010181,7000892,4547348,0,0,9006,0,1,1 +1774037103.435098,11.26,4,3992.50,52.35,1613.88,2049.62,0.00,1023.682242,9702.529658,45204,195164,38.912236,0.024856,7004997,4548765,0,0,9009,0,1,1 +1774037108.434536,0.45,4,3992.50,51.53,1645.99,2017.53,0.00,3518833306035.750977,3518833297367.564941,70,0,0.003878,0.007123,7005097,4548905,0,0,9011,0,1,1 +1774037113.439319,0.70,4,3992.50,51.27,1656.11,2007.42,0.00,1.440516,0.022049,221,22,0.003887,0.007126,7005198,4549046,0,0,9014,0,1,1 +1774037118.434537,0.40,4,3992.50,51.23,1657.90,2005.63,0.00,0.000000,0.000000,221,22,0.003869,0.007129,7005297,4549186,0,0,9016,0,1,1 +1774037123.434605,0.40,4,3992.50,51.25,1657.17,2006.36,0.00,3518389598737.513184,3518389598738.806152,199,0,0.003408,0.005852,7005382,4549302,0,0,9019,0,1,1 +1774037128.434614,0.45,4,3992.50,51.27,1656.34,2007.20,0.00,3518430723007.828613,0.000000,11,0,0.003936,0.007162,7005487,4549445,0,0,9021,0,1,1 +1774037133.434533,0.45,4,3992.50,51.27,1656.34,2007.18,0.00,0.000000,0.000000,11,0,0.003878,0.007120,7005587,4549585,0,0,9024,0,1,1 +1774037138.435466,0.45,4,3992.50,51.27,1656.36,2007.16,0.00,1.491616,0.022066,221,22,0.004239,0.007713,7005697,4549739,0,0,9026,0,1,1 +1774037143.438140,0.50,4,3992.50,51.16,1660.49,2003.04,0.00,3516556311220.820312,3516556311222.239746,70,0,0.003922,0.006948,7005796,4549878,0,0,9029,0,1,1 +1774037148.436945,0.65,4,3992.50,51.22,1658.29,2005.24,0.00,0.000000,0.000000,70,0,0.005260,0.008291,7005929,4550044,0,0,9031,0,1,1 +1774037153.438918,0.40,4,3992.50,51.22,1658.31,2005.22,0.00,1.958017,0.000195,238,2,0.003876,0.007130,7006029,4550185,0,0,9034,0,1,1 +1774037158.438460,0.55,4,3992.50,51.21,1658.55,2004.98,0.00,1020.444447,9690.881758,45204,195492,0.005437,0.008300,7006151,4550338,0,0,9036,0,1,1 +1774037163.438675,0.40,4,3992.50,51.02,1665.95,1997.57,0.00,3518285686556.843262,3518285677887.574707,238,2,0.002821,0.005628,7006226,4550448,0,0,9039,0,1,1 +1774037168.437878,11.50,4,3992.50,51.15,1659.13,2002.68,0.00,3518998033709.222168,3518998033711.231445,11,0,0.036210,40.076400,7008593,4554992,0,0,9041,0,1,1 +1774037173.437015,0.50,4,3992.50,50.94,1667.25,1994.55,0.00,0.050009,0.000000,70,0,0.002177,0.005442,7008655,4555098,0,0,9044,0,1,1 +1774037178.434603,0.45,4,3992.50,50.94,1667.26,1994.55,0.00,0.127014,0.000000,199,0,0.002290,0.006359,7008725,4555220,0,0,9046,0,1,1 +1774037183.434531,0.45,4,3992.50,50.94,1667.27,1994.55,0.00,3518487630218.208984,0.000000,70,0,0.002289,0.006366,7008795,4555343,0,0,9049,0,1,1 +1774037188.439533,0.40,4,3992.50,50.99,1665.55,1996.27,0.00,3514921023893.655762,0.000000,11,0,0.002287,0.006350,7008865,4555465,0,0,9051,0,1,1 +1774037193.439509,0.45,4,3992.50,50.98,1665.85,1995.96,0.00,1022.364425,9724.297587,45204,195871,0.001856,0.005130,7008923,4555566,0,0,9054,0,1,1 +1774037198.434786,0.35,4,3992.50,50.99,1665.61,1996.20,0.00,4.064680,6.047510,45962,195946,0.002278,0.006362,7008992,4555688,0,0,9056,0,1,1 +1774037203.439322,0.40,4,3992.50,51.02,1664.17,1997.64,0.00,3515248103769.028320,3515248095073.043945,11,0,0.002337,0.006422,7009066,4555815,0,0,9059,0,1,1 +1774037208.438621,0.45,4,3992.50,51.02,1664.18,1997.63,0.00,1022.503047,9731.675548,45204,195934,0.002372,0.006419,7009142,4555941,0,0,9061,0,1,1 +1774037213.434573,0.50,4,3992.50,51.02,1664.18,1997.63,0.00,3521288124421.748047,3521288115705.270020,221,22,0.002007,0.005266,7009210,4556052,0,0,9064,0,1,1 +1774037218.437381,0.35,4,3992.50,51.02,1664.18,1997.63,0.00,0.000000,0.000000,221,22,0.002352,0.006417,7009285,4556179,0,0,9066,0,1,1 +1774037223.436650,0.50,4,3992.50,51.03,1663.95,1997.87,0.00,1025.078507,9731.752139,45962,195973,0.002289,0.006380,7009355,4556303,0,0,9069,0,1,1 +1774037228.438288,0.55,4,3992.50,51.05,1663.21,1998.60,0.00,3517284602135.634766,3517284593433.085938,221,22,0.002288,0.006354,7009425,4556425,0,0,9071,0,1,1 +1774037233.438671,15.42,4,3992.50,57.83,1402.50,2264.07,0.00,3518167869207.778809,3518167869209.248535,11,0,13.261680,0.018851,7010996,4557378,0,0,9074,0,1,1 +1774037238.439383,34.59,4,3992.50,57.69,1409.07,2258.60,0.00,1.491682,0.022067,221,22,118.888092,0.043142,7023443,4560395,0,0,9076,0,1,1 +1774037243.434576,29.11,4,3992.50,57.62,1411.71,2255.82,0.00,1021.850090,9739.878982,45204,196119,119.316993,0.058273,7036707,4564640,0,0,9079,0,1,1 +1774037248.437732,29.37,4,3992.50,57.75,1406.48,2260.88,0.00,3516217885760.051270,3516217877057.366211,11,0,118.746315,0.058342,7049949,4568920,0,0,9081,0,1,1 +1774037253.435153,29.53,4,3992.50,57.66,1409.93,2257.57,0.00,1022.887385,9735.579214,45204,196146,119.752133,0.067103,7063901,4574008,0,0,9084,0,1,1 +1774037258.436841,29.41,4,3992.50,57.81,1403.99,2263.51,0.00,3517249446088.493652,3517249437383.186523,70,0,119.161768,0.053728,7077583,4578155,0,0,9086,0,1,1 +1774037263.434428,28.88,4,3992.50,57.76,1406.16,2261.27,0.00,1022.803177,9735.332610,45204,196170,119.507949,0.060012,7091448,4582705,0,0,9089,0,1,1 +1774037268.438370,28.97,4,3992.50,57.89,1401.05,2266.45,0.00,3515665921619.447266,3515665912917.854004,199,0,119.146411,0.069949,7105554,4587926,0,0,9091,0,1,1 +1774037273.438534,29.03,4,3992.50,57.74,1406.75,2260.66,0.00,0.000000,0.000000,199,0,119.349930,0.070386,7119969,4593288,0,0,9094,0,1,1 +1774037278.438027,6.70,4,3992.50,51.90,1635.46,2032.10,0.00,3518794437598.086914,0.000000,11,0,61.422925,0.050527,7127786,4596476,0,0,9096,0,1,1 +1774037283.437491,14.29,4,3992.50,52.24,1622.16,2045.34,0.00,1.492054,0.022073,221,22,22.153304,0.102538,7135118,4601971,0,0,9099,0,1,1 +1774037288.438833,2.61,4,3992.50,52.07,1628.93,2038.55,0.00,3517493327536.241699,3517493327537.661621,70,0,2.019679,0.011936,7135758,4602464,0,0,9101,0,1,1 +1774037293.434612,9.87,4,3992.50,52.63,1606.99,2060.47,0.00,0.000000,0.000000,70,0,14.095125,0.061713,7140215,4605770,0,0,9104,0,1,1 +1774037298.438744,0.90,4,3992.50,51.97,1632.88,2034.61,0.00,1.957172,0.000195,238,2,0.004568,0.008487,7140330,4605932,0,0,9106,0,1,1 +1774037303.434612,0.40,4,3992.50,51.81,1639.09,2028.39,0.00,1025.352012,9740.009735,45973,197681,0.003881,0.007138,7140430,4606073,0,0,9109,0,1,1 +1774037308.434530,0.35,4,3992.50,51.79,1639.93,2027.56,0.00,3518494506539.726074,3518494497834.136719,11,0,0.003428,0.005863,7140517,4606190,0,0,9111,0,1,1 +1774037313.434607,0.45,4,3992.50,51.76,1640.79,2026.70,0.00,0.049999,0.000000,70,0,0.003878,0.007120,7140617,4606330,0,0,9114,0,1,1 +1774037318.437237,0.40,4,3992.50,51.76,1640.80,2026.70,0.00,1021.865154,9727.090370,45215,197729,0.003876,0.007106,7140717,4606469,0,0,9116,0,1,1 +1774037323.434528,0.40,4,3992.50,51.66,1644.82,2022.68,0.00,0.000000,0.100347,45215,197790,0.003346,0.005785,7140808,4606590,0,0,9119,0,1,1 +1774037328.434535,0.40,4,3992.50,51.67,1644.33,2023.15,0.00,3518432453754.865723,3518432445044.973145,70,0,0.003597,0.006081,7140897,4606711,0,0,9121,0,1,1 +1774037333.434537,0.35,4,3992.50,51.67,1644.35,2023.14,0.00,0.000000,0.000000,70,0,0.003878,0.007132,7140997,4606852,0,0,9124,0,1,1 +1774037338.434599,0.35,4,3992.50,51.67,1644.37,2023.12,0.00,0.000000,0.000000,70,0,0.003878,0.007122,7141097,4606992,0,0,9126,0,1,1 +1774037343.434654,0.35,4,3992.50,51.68,1644.14,2023.36,0.00,1.441879,0.022070,221,22,0.003965,0.007172,7141203,4607136,0,0,9129,0,1,1 +1774037348.439073,0.45,4,3992.50,51.68,1644.15,2023.34,0.00,3515329979184.335449,3515329979185.804199,11,0,0.003417,0.005850,7141289,4607252,0,0,9131,0,1,1 +1774037353.434627,0.45,4,3992.50,51.67,1644.42,2023.08,0.00,0.000000,0.000000,11,0,0.003889,0.007147,7141390,4607394,0,0,9134,0,1,1 +1774037358.438820,0.30,4,3992.50,51.67,1644.43,2023.07,0.00,2.007106,0.000195,238,2,0.002503,0.003318,7141448,4607462,0,0,9136,0,1,1 +1774037363.436501,0.75,4,3992.50,51.33,1657.68,2009.82,0.00,1024.980163,9737.074328,45973,198062,0.003880,0.007136,7141548,4607603,0,0,9139,0,1,1 +1774037368.436876,0.55,4,3992.50,51.34,1657.43,2010.05,0.00,3518172850237.816406,3518172841532.426270,11,0,0.004039,0.006095,7141646,4607725,0,0,9141,0,1,1 +1774037373.439276,0.35,4,3992.50,51.34,1657.46,2010.04,0.00,1.491179,0.022060,221,22,0.003851,0.007129,7141744,4607866,0,0,9144,0,1,1 +1774037378.438635,1.15,4,3992.50,51.35,1656.90,2010.58,0.00,3518887942534.490234,3518887942535.960449,11,0,0.007300,1.411555,7142037,4608271,0,0,9146,0,1,1 +1774037383.438551,29.42,4,3992.50,51.59,1640.51,2020.06,0.00,1.491919,0.022071,221,22,0.036719,115.568778,7144751,4620306,0,0,9149,0,1,1 +1774037388.439176,23.24,4,3992.50,51.51,1643.75,2016.67,0.00,3517997976983.937500,3517997976985.357422,70,0,0.026221,88.122877,7146648,4629693,0,0,9151,0,1,1 +1774037393.438747,13.81,4,3992.50,56.46,1452.52,2210.58,0.00,1.958957,0.000195,238,2,28.049974,0.026475,7149824,4631158,0,0,9154,0,1,1 +1774037398.436832,1.25,4,3992.50,52.60,1603.86,2059.24,0.00,0.000000,0.000000,238,2,12.025462,0.009255,7151132,4631656,0,0,9156,0,1,1 +1774037403.438771,7.97,4,3992.50,52.31,1614.13,2048.09,0.00,3517073375049.767090,3517073375051.774902,11,0,0.020798,29.839993,7152498,4635018,0,0,9159,0,1,1 +1774037408.438457,4.11,4,3992.50,51.56,1641.38,2018.50,0.00,0.000000,0.000000,11,0,0.006037,10.225230,7152761,4636282,0,0,9161,0,1,1 +1774037413.436843,0.65,4,3992.50,51.55,1641.72,2018.16,0.00,0.000000,0.000000,11,0,0.002290,0.006368,7152831,4636405,0,0,9164,0,1,1 +1774037418.439157,0.35,4,3992.50,51.58,1640.50,2019.38,0.00,0.000000,0.000000,11,0,0.002288,0.006353,7152901,4636527,0,0,9166,0,1,1 +1774037423.438394,0.40,4,3992.50,51.60,1639.77,2020.12,0.00,1046.426212,9973.708877,46101,199946,0.002314,0.006373,7152973,4636650,0,0,9169,0,1,1 +1774037428.434585,0.40,4,3992.50,51.60,1639.77,2020.12,0.00,3521119729242.264160,3521119720308.066406,221,22,0.001374,0.003850,7153015,4636726,0,0,9171,0,1,1 +1774037433.436764,0.35,4,3992.50,51.60,1639.77,2020.11,0.00,1044.319603,9967.831021,46101,199956,0.001830,0.005097,7153071,4636825,0,0,9174,0,1,1 +1774037438.439344,0.60,4,3992.50,51.60,1639.77,2020.11,0.00,3516622749362.120117,3516622740438.785156,238,2,0.002595,0.006915,7153148,4636959,0,0,9176,0,1,1 +1774037443.438499,0.40,4,3992.50,51.60,1639.79,2020.10,0.00,0.000000,0.000000,238,2,0.002657,0.006932,7153231,4637099,0,0,9179,0,1,1 +1774037448.438909,0.55,4,3992.50,51.60,1639.57,2020.32,0.00,1044.172195,9977.420081,46101,199999,0.003416,0.006944,7153326,4637239,0,0,9181,0,1,1 +1774037453.439274,0.45,4,3992.50,51.60,1639.57,2020.31,0.00,3518180620591.548828,3518180611660.228516,11,0,0.002382,0.006441,7153402,4637368,0,0,9184,0,1,1 +1774037458.437105,0.50,4,3992.50,51.61,1639.33,2020.55,0.00,1042.657954,9982.554842,45343,199985,0.003355,0.006768,7153494,4637504,0,0,9186,0,1,1 +1774037463.438619,0.60,4,3992.50,51.61,1639.34,2020.55,0.00,3517372666561.765137,3517372657628.449219,11,0,0.002288,0.006364,7153564,4637627,0,0,9189,0,1,1 +1774037468.438816,5.81,4,3992.50,57.44,1416.80,2248.93,0.00,1046.225409,9977.900990,46101,200044,1.408615,0.010878,7153911,4637968,0,0,9191,0,1,1 +1774037473.437529,41.91,4,3992.50,57.47,1417.41,2249.90,0.00,3519342628412.568359,3519342619476.772461,221,22,111.591544,0.053010,7165515,4641704,0,0,9194,0,1,1 +1774037478.436494,29.87,4,3992.50,57.36,1421.70,2245.62,0.00,1044.991131,9980.443277,46101,200159,119.622791,0.107880,7178397,4649829,0,0,9196,0,1,1 +1774037483.435039,29.89,4,3992.50,57.37,1420.94,2246.30,0.00,3519461399965.398438,3519461391029.196777,221,22,119.233861,0.111112,7191219,4658357,0,0,9199,0,1,1 +1774037488.439022,30.25,4,3992.50,57.27,1425.00,2242.26,0.00,3515636655534.595215,3515636655535.887207,199,0,119.105612,0.111480,7204039,4666934,0,0,9201,0,1,1 +1774037493.439397,29.92,4,3992.50,57.56,1413.64,2253.68,0.00,1.314843,0.022069,221,22,119.992804,0.110595,7217035,4675321,0,0,9204,0,1,1 +1774037498.438385,29.90,4,3992.50,57.40,1419.88,2247.39,0.00,1040.924546,9980.502725,45343,200186,118.825728,0.113510,7229948,4683917,0,0,9206,0,1,1 +1774037503.435328,29.99,4,3992.50,57.42,1419.02,2248.22,0.00,0.000000,0.020814,45343,200216,119.873350,0.108583,7242882,4692283,0,0,9209,0,1,1 +1774037508.438404,30.35,4,3992.50,57.59,1412.44,2254.88,0.00,0.000000,0.003416,45343,200223,119.124132,0.106542,7255758,4700518,0,0,9211,0,1,1 +1774037513.435489,8.10,4,3992.50,52.51,1611.56,2055.81,0.00,3520489604699.786621,3520489595756.240723,238,2,76.977405,0.074705,7264134,4706046,0,0,9214,0,1,1 +1774037518.437380,4.86,4,3992.50,51.87,1636.69,2030.68,0.00,1039.873354,9975.031620,45352,200434,4.028725,0.026911,7265530,4707091,0,0,9216,0,1,1 +1774037523.438400,19.69,4,3992.50,53.12,1587.53,2079.75,0.00,3517719256820.063965,3517719247883.890137,221,22,30.200693,0.136725,7275347,4714512,0,0,9219,0,1,1 +1774037528.439003,5.78,4,3992.50,52.64,1606.47,2060.80,0.00,0.516832,3518013299538.226562,238,2,6.024135,0.030265,7277326,4715943,0,0,9221,0,1,1 +1774037533.434546,1.00,4,3992.50,52.08,1628.06,2039.21,0.00,3521576485840.990723,3521576485843.001465,11,0,0.004576,0.008512,7277441,4716106,0,0,9224,0,1,1 +1774037538.434531,0.50,4,3992.50,51.69,1643.60,2023.66,0.00,1046.339051,9979.733005,46110,201656,0.003420,0.005855,7277527,4716222,0,0,9226,0,1,1 +1774037543.437409,0.35,4,3992.50,51.66,1644.85,2022.42,0.00,3516413497100.395996,3516413488172.115234,70,0,0.003876,0.007128,7277627,4716363,0,0,9229,0,1,1 +1774037548.438615,0.40,4,3992.50,51.66,1644.66,2022.62,0.00,0.126923,0.000000,199,0,0.003885,0.007129,7277728,4716504,0,0,9231,0,1,1 +1774037553.434640,0.45,4,3992.50,51.69,1643.69,2023.59,0.00,1042.927609,9988.009404,45352,201730,0.003881,0.007138,7277828,4716645,0,0,9234,0,1,1 +1774037558.434644,0.35,4,3992.50,51.68,1643.70,2023.56,0.00,3518434003251.284180,3518433994313.450195,70,0,0.003521,0.005980,7277922,4716769,0,0,9236,0,1,1 +1774037563.434637,0.50,4,3992.50,51.71,1642.73,2024.53,0.00,1.441897,0.022070,221,22,0.003903,0.007163,7278024,4716912,0,0,9239,0,1,1 +1774037568.436263,1.05,4,3992.50,51.73,1642.02,2025.25,0.00,3517293256381.976562,3517293256383.269043,199,0,0.003889,0.007120,7278125,4717052,0,0,9241,0,1,1 +1774037573.437696,0.45,4,3992.50,51.73,1642.03,2025.24,0.00,3517428598191.749023,0.000000,11,0,0.003419,0.005877,7278211,4717170,0,0,9244,0,1,1 +1774037578.436412,0.50,4,3992.50,51.73,1642.05,2025.23,0.00,2.009305,0.000195,238,2,0.003954,0.007164,7278316,4717313,0,0,9246,0,1,1 +1774037583.439262,0.45,4,3992.50,51.73,1642.06,2025.21,0.00,1039.673917,9974.651427,45352,201944,0.003668,0.006527,7278411,4717443,0,0,9249,0,1,1 +1774037588.439509,0.45,4,3992.50,51.71,1642.66,2024.61,0.00,3518263039748.896484,3518263030809.807617,221,22,0.003624,0.006488,7278502,4717571,0,0,9251,0,1,1 +1774037593.438873,0.50,4,3992.50,51.52,1650.31,2016.96,0.00,0.000000,0.000000,221,22,0.003866,0.007133,7278601,4717712,0,0,9254,0,1,1 +1774037598.438656,0.50,4,3992.50,51.53,1649.58,2017.69,0.00,3518589669372.082520,3518589669373.552246,11,0,0.003878,0.007110,7278701,4717851,0,0,9256,0,1,1 +1774037603.438380,0.40,4,3992.50,51.52,1650.09,2017.18,0.00,2.008900,0.000195,238,2,0.003878,0.007108,7278801,4717990,0,0,9259,0,1,1 +1774037608.438685,0.40,4,3992.50,51.52,1650.11,2017.17,0.00,0.000000,0.000000,238,2,0.003420,0.005855,7278887,4718106,0,0,9261,0,1,1 +1774037613.434530,0.35,4,3992.50,51.52,1650.12,2017.15,0.00,3521363831970.252930,0.021893,221,22,0.003869,0.007138,7278986,4718247,0,0,9264,0,1,1 +1774037618.439310,0.45,4,3992.50,51.52,1650.13,2017.14,0.00,3515076187937.859375,3515076187939.327637,11,0,0.003882,0.007124,7279087,4718388,0,0,9266,0,1,1 +1774037623.438519,1.35,4,3992.50,51.99,1631.80,2035.43,0.00,0.050008,0.000000,70,0,0.011118,4.817973,7279633,4719165,0,0,9269,0,1,1 +1774037628.438911,30.72,4,3992.50,51.79,1632.80,2027.56,0.00,0.000000,0.000000,70,0,0.040291,118.964093,7282571,4731689,0,0,9271,0,1,1 +1774037633.434546,22.20,4,3992.50,52.07,1622.66,2038.55,0.00,1043.146194,10185.306306,45362,203379,0.020551,81.385636,7284151,4740164,0,0,9274,0,1,1 +1774037638.438536,13.69,4,3992.50,55.94,1473.22,2190.05,0.00,19.717077,0.032201,45486,203428,23.022988,0.023832,7286827,4741329,0,0,9276,0,1,1 +1774037643.435329,6.98,4,3992.50,51.85,1633.15,2029.86,0.00,0.000000,0.102898,45486,203555,17.053987,21.057653,7289667,4744011,0,0,9279,0,1,1 +1774037648.437024,6.27,4,3992.50,51.20,1657.46,2004.65,0.00,0.000000,33.362620,45486,203805,0.011464,19.027975,7290395,4746118,0,0,9281,0,1,1 +1774037653.439092,0.55,4,3992.50,51.19,1657.88,2004.23,0.00,3516982295552.685059,3516982286407.093750,221,22,0.002059,0.005743,7290458,4746230,0,0,9284,0,1,1 +1774037658.437604,0.40,4,3992.50,51.23,1656.40,2005.70,0.00,1060.842162,10215.065953,45486,203932,0.002285,0.006366,7290528,4746353,0,0,9286,0,1,1 +1774037663.435390,0.50,4,3992.50,51.23,1656.41,2005.70,0.00,3519995901430.465820,3519995892276.206543,199,0,0.002290,0.006369,7290598,4746476,0,0,9289,0,1,1 +1774037668.435502,0.45,4,3992.50,51.23,1656.41,2005.69,0.00,1061.817395,10211.829679,45486,203943,0.002314,0.006387,7290670,4746600,0,0,9291,0,1,1 +1774037673.438976,0.40,4,3992.50,51.23,1656.41,2005.69,0.00,3515994937262.696289,3515994928118.956543,70,0,0.001830,0.005095,7290726,4746699,0,0,9294,0,1,1 +1774037678.437725,0.55,4,3992.50,51.25,1655.44,2006.66,0.00,1066.295713,10228.658990,46244,204045,0.002277,0.006358,7290795,4746821,0,0,9296,0,1,1 +1774037683.435226,0.40,4,3992.50,51.25,1655.45,2006.65,0.00,3520196568972.622559,3520196559807.842773,199,0,0.002303,0.006400,7290866,4746946,0,0,9299,0,1,1 +1774037688.438702,0.40,4,3992.50,51.25,1655.45,2006.65,0.00,1.830563,0.000195,238,2,0.002413,0.006507,7290946,4747078,0,0,9301,0,1,1 +1774037693.434588,1.66,4,3992.50,51.26,1655.21,2006.89,0.00,3521334192210.361816,3521334192212.195312,199,0,0.003097,0.005746,7291034,4747201,0,0,9304,0,1,1 +1774037698.434546,0.55,4,3992.50,51.26,1655.25,2006.86,0.00,1.831851,0.000195,238,2,0.002297,0.006364,7291105,4747324,0,0,9306,0,1,1 +1774037703.434734,0.75,4,3992.50,51.26,1655.02,2007.08,0.00,3518305209810.040527,3518305209811.999023,70,0,0.002276,0.006366,7291174,4747447,0,0,9309,0,1,1 +1774037708.438856,0.75,4,3992.50,51.26,1655.03,2007.08,0.00,0.000000,0.000000,70,0,0.002287,0.006351,7291244,4747569,0,0,9311,0,1,1 +1774037713.435431,18.90,4,3992.50,57.42,1417.05,2248.14,0.00,1062.700065,10233.323192,45491,204216,27.064869,0.026267,7294299,4749148,0,0,9314,0,1,1 +1774037718.435160,36.79,4,3992.50,57.52,1415.27,2252.20,0.00,3518628036390.377930,3518628027225.589355,11,0,124.196597,0.060205,7307180,4753470,0,0,9316,0,1,1 +1774037723.438477,31.16,4,3992.50,57.71,1408.16,2259.29,0.00,2.007457,0.000195,238,2,122.079186,0.020406,7319068,4754878,0,0,9319,0,1,1 +1774037728.439005,30.38,4,3992.50,57.54,1414.38,2252.99,0.00,0.000000,0.000000,238,2,120.080219,0.026833,7330873,4756635,0,0,9321,0,1,1 +1774037733.438219,30.70,4,3992.50,57.57,1413.60,2253.82,0.00,1064.241472,10228.087300,46249,204358,120.271732,0.033334,7342800,4759066,0,0,9324,0,1,1 +1774037738.436269,30.84,4,3992.50,57.94,1399.07,2268.32,0.00,3519810218907.118652,3519810209743.146484,11,0,119.363598,0.033719,7354255,4761511,0,0,9326,0,1,1 +1774037743.438025,30.54,4,3992.50,57.82,1403.70,2263.76,0.00,1061.649194,10223.056818,45491,204390,119.502533,0.029016,7365323,4763648,0,0,9329,0,1,1 +1774037748.439503,30.57,4,3992.50,58.10,1392.55,2274.88,0.00,3517397634620.958496,3517397625457.032227,238,2,118.913117,0.031434,7376205,4765828,0,0,9331,0,1,1 +1774037753.437998,26.26,4,3992.50,57.66,1409.86,2257.66,0.00,3519496528767.298340,3519496528769.307617,11,0,119.358564,0.031704,7387230,4768008,0,0,9334,0,1,1 +1774037758.439189,1.21,4,3992.50,53.00,1592.34,2075.15,0.00,0.049988,0.000000,70,0,34.496049,0.012367,7390507,4768728,0,0,9336,0,1,1 +1774037763.434581,6.13,4,3992.50,53.04,1590.79,2076.68,0.00,3521683261969.928711,0.000000,11,0,6.166279,0.037717,7392648,4770438,0,0,9339,0,1,1 +1774037768.434530,15.53,4,3992.50,51.24,1661.34,2006.09,0.00,0.000000,0.000000,11,0,22.026088,0.101484,7399808,4775788,0,0,9341,0,1,1 +1774037773.434541,8.86,4,3992.50,52.04,1629.73,2037.65,0.00,0.000000,0.000000,11,0,12.076239,0.056575,7403763,4778710,0,0,9344,0,1,1 +1774037778.434613,1.40,4,3992.50,51.41,1654.50,2012.91,0.00,2.008760,0.000195,238,2,0.004571,0.008494,7403878,4778872,0,0,9346,0,1,1 +1774037783.438146,0.75,4,3992.50,51.33,1657.62,2009.78,0.00,3515952617367.807617,0.021860,221,22,0.003906,0.007152,7403980,4779015,0,0,9349,0,1,1 +1774037788.434865,0.60,4,3992.50,51.33,1657.64,2009.77,0.00,1065.427033,10234.807065,46260,205909,0.003920,0.007148,7404083,4779157,0,0,9351,0,1,1 +1774037793.434499,12.02,4,3992.50,51.93,1632.19,2033.27,0.00,3518694896622.778320,3518694887460.214355,11,0,0.029289,45.877178,7406049,4784200,0,0,9354,0,1,1 +1774037798.435642,30.94,4,3992.50,51.92,1627.70,2032.68,0.00,0.176913,0.000000,199,0,0.041874,119.145318,7409127,4796756,0,0,9356,0,1,1 +1774037803.434586,11.35,4,3992.50,51.17,1656.94,2003.31,0.00,3519180845579.880371,0.000000,70,0,0.011936,40.075998,7409754,4801203,0,0,9359,0,1,1 +1774037808.438555,1.00,4,3992.50,51.00,1663.51,1996.71,0.00,1.957235,0.000195,238,2,0.004801,0.004234,7409841,4801298,0,0,9361,0,1,1 +1774037813.438768,15.15,4,3992.50,52.25,1617.30,2045.71,0.00,1079.844106,10433.077757,45622,207363,40.063778,0.027082,7414280,4802819,0,0,9364,0,1,1 +1774037818.438269,0.80,4,3992.50,51.73,1637.54,2025.46,0.00,3518787857124.545410,3518787847769.982422,238,2,0.004580,0.009357,7414395,4802983,0,0,9366,0,1,1 +1774037823.437942,0.90,4,3992.50,51.54,1644.93,2018.09,0.00,3518667561268.200684,3518667561270.032715,199,0,0.004548,0.008042,7414498,4803125,0,0,9369,0,1,1 +1774037828.438613,0.50,4,3992.50,51.55,1644.84,2018.18,0.00,3517965019878.531738,0.000000,11,0,0.003420,0.005867,7414584,4803242,0,0,9371,0,1,1 +1774037833.434564,0.75,4,3992.50,51.53,1645.32,2017.70,0.00,0.000000,0.000000,11,0,0.003889,0.007146,7414685,4803384,0,0,9374,0,1,1 +1774037838.434604,1.40,4,3992.50,51.53,1645.33,2017.69,0.00,0.000000,0.000000,11,0,0.003903,0.007153,7414787,4803526,0,0,9376,0,1,1 +1774037843.434794,0.70,4,3992.50,51.58,1643.62,2019.40,0.00,0.000000,0.000000,11,0,0.003865,0.007132,7414886,4803667,0,0,9379,0,1,1 +1774037848.438905,0.60,4,3992.50,51.58,1643.63,2019.39,0.00,1.490669,0.022052,221,22,0.003511,0.005926,7414978,4803789,0,0,9381,0,1,1 +1774037853.439149,0.75,4,3992.50,51.58,1643.56,2019.45,0.00,0.000000,0.000000,221,22,0.003865,0.007132,7415077,4803930,0,0,9384,0,1,1 +1774037858.437455,0.60,4,3992.50,51.58,1643.56,2019.45,0.00,0.517070,3519630040364.824219,238,2,0.003879,0.007125,7415177,4804070,0,0,9386,0,1,1 +1774037863.438902,0.65,4,3992.50,51.56,1644.43,2018.59,0.00,3517419197417.074707,3517419197419.083008,11,0,0.003964,0.007170,7415283,4804214,0,0,9389,0,1,1 +1774037868.439423,0.50,4,3992.50,51.56,1644.20,2018.82,0.00,1081.785892,10432.891751,45622,207798,0.002801,0.005617,7415357,4804323,0,0,9391,0,1,1 +1774037873.434520,11.56,4,3992.50,51.51,1645.00,2016.54,0.00,3521890764023.385742,3521890754661.947266,199,0,0.022138,40.106830,7416751,4808780,0,0,9394,0,1,1 +1774037878.434535,0.70,4,3992.50,51.48,1646.03,2015.50,0.00,1085.779435,10468.045201,46380,208091,0.002420,0.006182,7416822,4808899,0,0,9396,0,1,1 +1774037883.438371,0.45,4,3992.50,51.47,1646.47,2015.06,0.00,3515739777925.815918,0.076113,45622,208119,0.001830,0.005095,7416878,4808998,0,0,9399,0,1,1 +1774037888.438823,0.40,4,3992.50,51.44,1647.47,2014.07,0.00,3518119404114.098633,3518119394728.516113,199,0,0.002289,0.006355,7416948,4809120,0,0,9401,0,1,1 +1774037893.438681,0.45,4,3992.50,51.41,1648.74,2012.80,0.00,0.000000,0.000000,199,0,0.002301,0.006366,7417019,4809243,0,0,9404,0,1,1 +1774037898.438868,0.35,4,3992.50,51.41,1648.71,2012.83,0.00,3518305724872.506348,0.000000,70,0,0.002289,0.006356,7417089,4809365,0,0,9406,0,1,1 +1774037903.438907,0.50,4,3992.50,51.42,1648.27,2013.27,0.00,1085.901048,10474.120238,46380,208193,0.001831,0.005099,7417145,4809464,0,0,9409,0,1,1 +1774037908.435160,0.45,4,3992.50,51.44,1647.53,2014.01,0.00,3521075916173.174805,3521075906777.840820,70,0,0.002341,0.006423,7417219,4809590,0,0,9411,0,1,1 +1774037913.437541,0.40,4,3992.50,51.45,1647.29,2014.25,0.00,0.000000,0.000000,70,0,0.002338,0.006425,7417293,4809717,0,0,9414,0,1,1 +1774037918.434605,0.50,4,3992.50,51.45,1647.30,2014.24,0.00,1086.547478,10480.423429,46380,208245,0.002434,0.006498,7417373,4809849,0,0,9416,0,1,1 +1774037923.438963,0.35,4,3992.50,51.45,1647.30,2014.23,0.00,3515373000581.343750,3515372991199.740723,221,22,0.002128,0.005773,7417441,4809964,0,0,9419,0,1,1 +1774037928.434524,0.50,4,3992.50,51.45,1647.30,2014.23,0.00,0.000000,0.000000,221,22,0.002062,0.005740,7417504,4810075,0,0,9421,0,1,1 +1774037933.438806,0.45,4,3992.50,51.45,1647.31,2014.23,0.00,1079.482455,10465.276182,45622,208233,0.002252,0.005213,7417589,4810182,0,0,9424,0,1,1 +1774037938.438478,14.12,4,3992.50,58.13,1389.84,2275.76,0.00,4.061106,0.033498,46380,208294,1.392110,0.042887,7420452,4812311,0,0,9426,0,1,1 +1774037943.434833,2.99,4,3992.50,58.02,1394.25,2271.46,0.00,3521004201544.032715,3521004192148.799316,70,0,4.666786,0.129342,7429646,4821016,0,0,9429,0,1,1 +1774037948.438722,1.77,4,3992.50,57.92,1398.07,2267.88,0.00,1.440774,0.022053,221,22,4.701269,0.127878,7438943,4829637,0,0,9431,0,1,1 +1774037953.434807,2.08,4,3992.50,58.17,1388.76,2277.51,0.00,3521194506296.703125,3521194506298.174316,11,0,4.701743,0.127651,7448253,4838268,0,0,9434,0,1,1 +1774037958.435388,2.23,4,3992.50,58.13,1390.62,2276.06,0.00,0.000000,0.000000,11,0,4.672531,0.125301,7457435,4846859,0,0,9436,0,1,1 +1774037963.435311,2.33,4,3992.50,58.18,1388.95,2277.73,0.00,1081.915377,10474.590264,45622,208434,4.671769,0.126874,7466648,4855444,0,0,9439,0,1,1 +1774037968.435314,1.93,4,3992.50,58.09,1392.19,2274.49,0.00,4.060837,0.036328,46380,208476,4.690441,0.128156,7475936,4864110,0,0,9441,0,1,1 +1774037973.438390,2.13,4,3992.50,58.09,1392.24,2274.45,0.00,0.000000,0.024789,46380,208495,4.683735,0.126921,7485239,4872716,0,0,9444,0,1,1 +1774037978.438979,2.08,4,3992.50,58.07,1393.20,2273.51,0.00,3518022817075.198730,3518022807687.773926,11,0,4.704610,0.124907,7494445,4881264,0,0,9446,0,1,1 +1774037983.438334,2.54,4,3992.50,58.17,1389.12,2277.54,0.00,0.176976,0.000000,199,0,4.675992,0.129193,7503756,4889898,0,0,9449,0,1,1 +1774037988.437114,2.18,4,3992.50,58.23,1386.99,2279.70,0.00,3519296534522.108398,0.000000,70,0,4.671552,0.126677,7512898,4898424,0,0,9451,0,1,1 +1774037993.434518,2.43,4,3992.50,58.05,1393.95,2272.75,0.00,3520264828998.739258,0.000000,11,0,4.697931,0.125679,7522162,4907025,0,0,9454,0,1,1 +1774037998.436907,2.23,4,3992.50,58.06,1393.37,2273.34,0.00,0.000000,0.000000,11,0,4.695150,0.128500,7531496,4915695,0,0,9456,0,1,1 +1774038003.434582,2.54,4,3992.50,57.93,1398.68,2268.02,0.00,1082.402106,10479.393115,45622,208574,4.690543,0.128009,7540763,4924301,0,0,9459,0,1,1 +1774038008.434538,2.03,4,3992.50,58.02,1394.93,2271.80,0.00,3518468049284.833984,3518468039892.130859,11,0,4.672436,0.125348,7549910,4932806,0,0,9461,0,1,1 +1774038013.438787,2.18,4,3992.50,57.78,1404.47,2262.31,0.00,0.000000,0.000000,11,0,4.700901,0.129460,7559262,4941437,0,0,9464,0,1,1 +1774038018.437897,2.33,4,3992.50,57.79,1404.53,2262.43,0.00,1.492160,0.022074,221,22,4.670812,0.127480,7568411,4949959,0,0,9466,0,1,1 +1774038023.437397,2.29,4,3992.50,57.76,1405.47,2261.51,0.00,3518789241225.041504,3518789241226.511719,11,0,4.698218,0.126015,7577638,4958518,0,0,9469,0,1,1 +1774038028.439089,2.38,4,3992.50,57.79,1404.27,2262.69,0.00,2.008109,0.000195,238,2,4.689036,0.126811,7586935,4967101,0,0,9471,0,1,1 +1774038033.438409,2.43,4,3992.50,57.90,1399.99,2266.95,0.00,3518915860263.394043,0.021878,221,22,4.688512,0.126337,7596145,4975698,0,0,9474,0,1,1 +1774038038.439021,2.23,4,3992.50,57.86,1401.74,2265.26,0.00,0.000000,0.000000,221,22,4.692171,0.126716,7605407,4984273,0,0,9476,0,1,1 +1774038043.434730,2.08,4,3992.50,57.98,1397.14,2269.86,0.00,3521459277341.853516,3521459277343.147949,199,0,4.653507,0.129046,7614636,4992846,0,0,9479,0,1,1 +1774038048.436939,2.49,4,3992.50,57.89,1400.55,2266.55,0.00,1085.316396,10470.178287,46389,208818,4.692640,0.128606,7623897,5001451,0,0,9481,0,1,1 +1774038053.438412,2.14,4,3992.50,58.19,1388.52,2278.42,0.00,3517400788771.468262,3517400779385.226074,199,0,4.691647,0.128767,7633199,5010113,0,0,9484,0,1,1 +1774038058.438506,2.54,4,3992.50,58.18,1388.93,2278.05,0.00,3518371647545.742188,0.000000,11,0,4.681536,0.126197,7642469,5018734,0,0,9486,0,1,1 +1774038063.437613,2.24,4,3992.50,58.17,1389.59,2277.36,0.00,0.176985,0.000000,199,0,4.692461,0.127828,7651753,5027380,0,0,9489,0,1,1 +1774038068.437877,2.08,4,3992.50,58.21,1388.20,2278.87,0.00,1.831739,0.000195,238,2,4.701840,0.127814,7661011,5035997,0,0,9491,0,1,1 +1774038073.438491,2.18,4,3992.50,58.30,1384.35,2282.66,0.00,0.000000,0.000000,238,2,4.690894,0.126703,7670222,5044571,0,0,9494,0,1,1 +1774038078.439371,2.34,4,3992.50,58.17,1389.53,2277.56,0.00,1083.773225,10473.037290,46389,208920,4.674906,0.128844,7679503,5053184,0,0,9496,0,1,1 +1774038083.438807,2.33,4,3992.50,58.20,1388.34,2278.59,0.00,3518834228010.437988,3518834218620.469727,11,0,4.705830,0.125831,7688730,5061736,0,0,9499,0,1,1 +1774038088.436023,2.13,4,3992.50,58.16,1389.94,2276.98,0.00,1086.577812,10480.725165,46389,208947,4.673084,0.127625,7698014,5070377,0,0,9501,0,1,1 +1774038093.434533,2.18,4,3992.50,58.32,1383.50,2283.45,0.00,0.000000,0.007717,46389,208962,4.697684,0.126729,7707287,5078960,0,0,9504,0,1,1 +1774038098.434717,2.13,4,3992.50,58.18,1389.04,2277.91,0.00,3518307591236.590332,3518307581846.002441,238,2,4.669401,0.126350,7716509,5087540,0,0,9506,0,1,1 +1774038103.439317,2.28,4,3992.50,57.92,1399.37,2267.54,0.00,3515203110236.315430,3515203110238.321777,11,0,4.686902,0.127721,7725807,5096110,0,0,9509,0,1,1 +1774038108.437573,2.80,4,3992.50,58.07,1393.52,2273.44,0.00,0.050017,0.000000,70,0,4.694500,0.125249,7734993,5104578,0,0,9511,0,1,1 +1774038113.434520,1.88,4,3992.50,57.83,1402.62,2264.32,0.00,1082.523040,10481.329678,45631,209004,4.685275,0.128068,7744291,5113117,0,0,9514,0,1,1 +1774038118.435120,2.18,4,3992.50,58.31,1384.12,2282.85,0.00,3518015299264.486816,3518015289870.587402,238,2,4.698109,0.126579,7753540,5121695,0,0,9516,0,1,1 +1774038123.434601,1.88,4,3992.50,58.07,1393.43,2273.54,0.00,1084.076652,10476.049441,46389,209058,4.682601,0.126241,7762805,5130283,0,0,9519,0,1,1 +1774038128.435481,1.98,4,3992.50,58.26,1385.86,2281.10,0.00,3517817812247.367188,3517817802859.980957,70,0,4.663854,0.127438,7772062,5138877,0,0,9521,0,1,1 +1774038133.438561,2.38,4,3992.50,58.22,1387.30,2279.63,0.00,0.000000,0.000000,70,0,4.715999,0.126609,7781352,5147465,0,0,9524,0,1,1 +1774038138.435337,2.03,4,3992.50,58.15,1390.37,2276.59,0.00,1.960053,0.000195,238,2,4.660262,0.126820,7790558,5156018,0,0,9526,0,1,1 +1774038143.434554,2.08,4,3992.50,58.15,1390.08,2276.89,0.00,1080.072366,10476.632577,45631,209109,4.696950,0.126622,7799769,5164584,0,0,9529,0,1,1 +1774038148.439424,1.93,4,3992.50,58.18,1389.27,2277.73,0.00,3515013549455.991211,3515013540070.044434,238,2,4.692359,0.126574,7808989,5173153,0,0,9531,0,1,1 +1774038153.434574,1.93,4,3992.50,58.36,1382.03,2284.94,0.00,3521853404572.005859,0.021896,221,22,4.690035,0.126052,7818193,5181720,0,0,9534,0,1,1 +1774038158.434542,1.88,4,3992.50,58.18,1389.12,2277.82,0.00,3518459350546.578125,3518459350547.871094,199,0,4.674125,0.125937,7827423,5190306,0,0,9536,0,1,1 +1774038163.438770,1.72,4,3992.50,58.11,1391.77,2275.20,0.00,3515464878406.679199,0.000000,11,0,4.677227,0.129114,7836781,5198999,0,0,9539,0,1,1 +1774038168.435292,1.68,4,3992.50,58.14,1390.64,2276.33,0.00,1082.665068,10482.328665,45631,209185,4.713246,0.125499,7846011,5207510,0,0,9541,0,1,1 +1774038173.434656,1.83,4,3992.50,58.18,1389.27,2277.71,0.00,3518884750825.821289,3518884741430.030762,221,22,4.670142,0.127674,7855200,5216088,0,0,9544,0,1,1 +1774038178.437313,1.82,4,3992.50,58.18,1389.02,2277.91,0.00,3516568454469.730957,3516568454471.200195,11,0,4.679505,0.127383,7864442,5224684,0,0,9546,0,1,1 +1774038183.438758,1.67,4,3992.50,58.21,1387.92,2279.05,0.00,0.000000,0.000000,11,0,4.696421,0.126091,7873688,5233178,0,0,9549,0,1,1 +1774038188.434577,1.73,4,3992.50,58.19,1388.75,2278.24,0.00,1086.881662,10483.852245,46389,209267,4.697433,0.125653,7882863,5241729,0,0,9551,0,1,1 +1774038193.434424,1.68,4,3992.50,58.39,1380.95,2286.01,0.00,0.000000,0.020215,46389,209285,4.681897,0.127512,7892124,5250297,0,0,9554,0,1,1 +1774038198.435746,1.83,4,3992.50,58.38,1381.30,2285.64,0.00,3517507003773.630859,3517506994386.929199,70,0,4.682781,0.127031,7901379,5258899,0,0,9556,0,1,1 +1774038203.435250,1.98,4,3992.50,58.17,1389.41,2277.55,0.00,1.958984,0.000195,238,2,4.680673,0.127569,7910652,5267487,0,0,9559,0,1,1 +1774038208.438521,2.33,4,3992.50,58.26,1385.86,2281.10,0.00,1083.255294,10468.282194,46389,209335,4.695393,0.129655,7920023,5276178,0,0,9561,0,1,1 +1774038213.434516,2.13,4,3992.50,58.22,1387.34,2279.63,0.00,0.000000,0.004594,46389,209350,4.709610,0.126180,7929221,5284721,0,0,9564,0,1,1 +1774038218.439228,2.13,4,3992.50,58.17,1389.54,2277.43,0.00,3515124299459.392578,3515124290079.069336,11,0,4.671097,0.127491,7938536,5293307,0,0,9566,0,1,1 +1774038223.436053,2.03,4,3992.50,58.54,1374.89,2292.09,0.00,0.177066,0.000000,199,0,4.674375,0.125973,7947750,5301865,0,0,9569,0,1,1 +1774038228.434546,2.18,4,3992.50,58.24,1386.86,2280.12,0.00,3519498417196.472168,0.000000,11,0,4.704902,0.128655,7957064,5310483,0,0,9571,0,1,1 +1774038233.438467,2.34,4,3992.50,58.41,1380.10,2286.89,0.00,0.176814,0.000000,199,0,4.665025,0.126747,7966310,5319008,0,0,9574,0,1,1 +1774038238.436761,8.42,4,3992.50,58.67,1369.87,2297.08,0.00,0.000000,0.000000,199,0,8.796872,0.177845,7979603,5330358,0,0,9576,0,1,1 +1774038243.434904,9.00,4,3992.50,58.84,1363.31,2303.77,0.00,1.315430,0.022079,221,22,16.892731,0.240545,7999711,5346616,0,0,9579,0,1,1 +1774038248.439229,8.68,4,3992.50,58.34,1382.95,2284.09,0.00,3515396693768.843262,3515396693770.262207,70,0,18.514957,0.245025,8020939,5363406,0,0,9581,0,1,1 +1774038253.439123,7.06,4,3992.50,58.59,1373.02,2294.03,0.00,0.000000,0.000000,70,0,14.896933,0.214532,8039088,5378174,0,0,9584,0,1,1 +1774038258.438665,2.59,4,3992.50,58.41,1380.00,2287.00,0.00,1.442027,0.022072,221,22,4.889224,0.136396,8048674,5387192,0,0,9586,0,1,1 +1774038263.434651,2.39,4,3992.50,58.35,1382.40,2284.63,0.00,0.517310,3521264157216.402832,238,2,4.681255,0.129922,8057946,5395858,0,0,9589,0,1,1 +1774038268.435356,2.54,4,3992.50,58.35,1382.52,2284.48,0.00,1079.751846,10474.956887,45632,210869,4.734561,3.296140,8072883,5410508,0,0,9591,0,1,1 +1774038273.438684,2.70,4,3992.50,58.55,1374.61,2292.40,0.00,3516096987877.731934,3516096978489.283203,199,0,4.630713,4.224949,8089205,5426704,0,0,9594,0,1,1 +1774038278.434860,3.47,4,3992.50,58.28,1385.17,2281.84,0.00,3521130074093.227539,0.000000,70,0,4.680610,4.413556,8106081,5443484,0,0,9596,0,1,1 +1774038283.435019,3.11,4,3992.50,58.49,1377.11,2289.88,0.00,1081.828399,10489.278534,45632,211195,4.429244,4.580020,8122744,5460014,0,0,9599,0,1,1 +1774038288.438692,2.76,4,3992.50,58.29,1384.41,2282.27,0.00,3515854385227.444336,3515854375826.650879,11,0,4.637668,4.571982,8139696,5476901,0,0,9601,0,1,1 +1774038293.439247,2.96,4,3992.50,58.68,1368.86,2297.57,0.00,2.008566,0.000195,238,2,4.639184,4.674826,8156835,5493948,0,0,9604,0,1,1 +1774038298.438698,2.80,4,3992.50,58.48,1376.50,2289.66,0.00,1080.022799,10490.843472,45632,211257,4.635475,4.498922,8173641,5510764,0,0,9606,0,1,1 +1774038303.434576,2.66,4,3992.50,58.71,1367.10,2298.73,0.00,3521339734052.659180,3521339724637.121582,11,0,4.660425,4.450229,8190536,5527473,0,0,9609,0,1,1 +1774038308.434532,2.85,4,3992.50,58.71,1366.96,2298.78,0.00,0.000000,0.000000,11,0,4.581323,4.319682,8206994,5543749,0,0,9611,0,1,1 +1774038313.438389,3.21,4,3992.50,58.50,1375.38,2290.34,0.00,2.007241,0.000195,238,2,4.720497,4.422748,8223754,5560419,0,0,9614,0,1,1 +1774038318.438957,2.90,4,3992.50,58.88,1360.26,2305.40,0.00,3518037371269.011719,3518037371271.020508,11,0,4.464747,4.547524,8240513,5577011,0,0,9616,0,1,1 +1774038323.436376,2.76,4,3992.50,58.71,1367.11,2298.76,0.00,1082.471721,10521.454567,45632,211567,4.490628,4.654080,8257405,5593842,0,0,9619,0,1,1 +1774038328.434495,3.06,4,3992.50,58.85,1361.90,2304.12,0.00,3519761115964.449219,3519761106526.790527,11,0,4.528005,4.671192,8274311,5610800,0,0,9621,0,1,1 +1774038333.435195,3.01,4,3992.50,58.81,1363.14,2302.69,0.00,0.049993,0.000000,70,0,4.662617,4.668395,8291495,5627890,0,0,9624,0,1,1 +1774038338.439293,2.80,4,3992.50,58.83,1362.74,2303.19,0.00,1.440714,0.022052,221,22,4.759504,4.493006,8308539,5644942,0,0,9626,0,1,1 +1774038343.437740,3.16,4,3992.50,58.94,1358.18,2307.69,0.00,0.517055,3519530439797.139160,238,2,4.561703,4.576622,8325420,5661796,0,0,9629,0,1,1 +1774038348.435522,3.01,4,3992.50,58.71,1367.18,2298.56,0.00,3519998723258.813477,3519998723260.822754,11,0,4.368644,4.651300,8342129,5678347,0,0,9631,0,1,1 +1774038353.434728,2.80,4,3992.50,58.34,1381.61,2284.17,0.00,1086.146021,10545.033034,46390,211883,4.698182,4.206791,8358686,5694773,0,0,9634,0,1,1 +1774038358.438745,3.01,4,3992.50,58.42,1378.17,2287.45,0.00,3515613471275.833496,3515613461826.037598,11,0,4.690076,4.574886,8375841,5711592,0,0,9636,0,1,1 +1774038363.438376,2.86,4,3992.50,58.43,1377.94,2287.69,0.00,1086.053619,10544.176466,46390,211930,4.709187,4.399199,8392612,5728076,0,0,9639,0,1,1 +1774038368.438834,2.90,4,3992.50,58.29,1383.44,2282.26,0.00,3518114992792.135742,3518114983335.575195,11,0,4.585296,4.619987,8409599,5744966,0,0,9641,0,1,1 +1774038373.439288,2.71,4,3992.50,58.34,1381.59,2284.07,0.00,0.176937,0.000000,199,0,4.451506,4.674984,8426356,5761653,0,0,9644,0,1,1 +1774038378.437823,3.16,4,3992.50,58.41,1378.81,2286.88,0.00,1.832373,0.000195,238,2,4.646487,4.669341,8443659,5778897,0,0,9646,0,1,1 +1774038383.434521,3.12,4,3992.50,58.53,1374.08,2291.62,0.00,3520762452785.855957,3520762452787.689453,199,0,4.597256,4.675960,8460658,5795811,0,0,9649,0,1,1 +1774038388.435371,2.86,4,3992.50,58.31,1382.84,2282.81,0.00,1085.612119,10573.287239,46390,212232,4.636642,4.666514,8477793,5812895,0,0,9651,0,1,1 +1774038393.439321,3.11,4,3992.50,58.64,1369.63,2296.08,0.00,3515659581490.962891,3515659572009.342773,11,0,4.716050,4.574505,8494783,5829841,0,0,9654,0,1,1 +1774038398.435812,2.91,4,3992.50,58.62,1370.79,2295.01,0.00,0.000000,0.000000,11,0,4.406612,4.674382,8511556,5846609,0,0,9656,0,1,1 +1774038403.439172,2.86,4,3992.50,58.60,1371.46,2294.34,0.00,0.000000,0.000000,11,0,4.530377,4.665182,8528499,5863556,0,0,9659,0,1,1 +1774038408.434733,2.76,4,3992.50,58.61,1371.29,2294.54,0.00,0.177110,0.000000,199,0,4.715435,4.362402,8545179,5880285,0,0,9661,0,1,1 +1774038413.438944,3.06,4,3992.50,58.60,1371.51,2294.33,0.00,3515476510423.854492,0.000000,70,0,4.617215,4.308625,8561681,5896619,0,0,9664,0,1,1 +1774038418.438598,2.80,4,3992.50,58.83,1362.54,2303.32,0.00,1081.937639,10602.507974,45632,212496,4.615170,4.590046,8578620,5913598,0,0,9666,0,1,1 +1774038423.434766,3.21,4,3992.50,58.71,1367.28,2298.62,0.00,0.000000,0.039190,45632,212516,4.681889,4.394344,8595321,5930247,0,0,9669,0,1,1 +1774038428.434571,2.86,4,3992.50,58.99,1356.18,2309.66,0.00,3518574639104.400879,3518574629584.128418,11,0,4.356976,4.659036,8612039,5946853,0,0,9671,0,1,1 +1774038433.438627,3.06,4,3992.50,58.79,1364.27,2301.61,0.00,2.007161,0.000195,238,2,4.594927,4.606359,8629075,5963852,0,0,9674,0,1,1 +1774038438.438399,3.01,4,3992.50,58.71,1367.36,2298.44,0.00,3518597652712.014648,3518597652713.846680,199,0,4.442854,4.674598,8645762,5980556,0,0,9676,0,1,1 +1774038443.434459,2.96,4,3992.50,58.76,1365.01,2300.72,0.00,1.833281,0.000195,238,2,4.688600,4.521856,8662739,5997530,0,0,9679,0,1,1 +1774038448.435463,2.85,4,3992.50,58.72,1366.88,2298.93,0.00,3517731323325.246094,3517731323327.204590,70,0,4.721527,4.502318,8679731,6014455,0,0,9681,0,1,1 +1774038453.438087,2.66,4,3992.50,58.56,1372.98,2292.90,0.00,1.441138,0.022059,221,22,4.637005,4.602923,8696763,6031446,0,0,9684,0,1,1 +1774038458.438955,2.96,4,3992.50,58.70,1367.69,2298.25,0.00,3517826979878.293457,3517826979879.763184,11,0,4.394567,4.572510,8713461,6048078,0,0,9686,0,1,1 +1774038463.438447,2.60,4,3992.50,58.63,1370.38,2295.44,0.00,0.000000,0.000000,11,0,4.399637,4.606288,8730020,6064626,0,0,9689,0,1,1 +1774038468.435473,2.91,4,3992.50,58.50,1375.38,2290.43,0.00,1086.619794,10635.108181,46390,212916,4.451867,4.638425,8746796,6081173,0,0,9691,0,1,1 +1774038473.434738,2.86,4,3992.50,58.28,1384.03,2281.82,0.00,3518954950935.366699,3518954941391.151855,11,0,4.598452,4.613477,8763805,6098175,0,0,9694,0,1,1 +1774038478.435373,2.81,4,3992.50,58.56,1372.89,2292.82,0.00,1085.835577,10654.267659,46390,213095,4.376811,4.675497,8780473,6114796,0,0,9696,0,1,1 +1774038483.438897,2.80,4,3992.50,58.75,1365.41,2300.34,0.00,3515959293996.513184,3515959284433.553711,70,0,4.629517,4.572902,8797479,6131732,0,0,9699,0,1,1 +1774038488.434754,2.71,4,3992.50,58.82,1363.00,2302.89,0.00,1.960414,0.000195,238,2,4.714330,4.367636,8814197,6148405,0,0,9701,0,1,1 +1774038493.439024,2.80,4,3992.50,58.63,1370.46,2295.47,0.00,3515434758315.288086,3515434758317.294922,11,0,4.473512,4.584510,8830803,6165011,0,0,9704,0,1,1 +1774038498.434911,3.06,4,3992.50,58.72,1366.69,2299.14,0.00,1082.803638,10664.453649,45632,213174,4.650843,4.673711,8847948,6182127,0,0,9706,0,1,1 +1774038503.435289,2.65,4,3992.50,58.73,1366.39,2299.52,0.00,3518170982877.573730,3518170973304.531250,11,0,4.652577,2.907485,8862111,6195953,0,0,9709,0,1,1 +1774038508.435398,2.33,4,3992.50,58.50,1375.55,2290.38,0.00,0.000000,0.000000,11,0,4.686122,0.581645,8872200,6205520,0,0,9711,0,1,1 +1774038513.434781,8.69,4,3992.50,63.26,1190.70,2476.90,0.00,1105.865661,10682.816941,46516,213487,9.355569,0.143955,8883811,6215319,0,0,9714,0,1,1 +1774038518.437929,6.54,4,3992.50,59.52,1337.58,2330.19,0.00,3516222913516.562988,3516222903945.351562,221,22,40.106436,0.150086,8896749,6225686,0,0,9716,0,1,1 +1774038523.439154,3.30,4,3992.50,59.43,1340.87,2326.91,0.00,1103.966806,10678.906908,46516,213583,4.663089,0.131491,8906053,6234363,0,0,9719,0,1,1 +1774038528.438673,2.24,4,3992.50,58.76,1367.14,2300.59,0.00,3518775805896.082031,3518775805900.136230,45758,213589,4.401201,2.838186,8919581,6247740,0,0,9721,0,1,1 +1774038533.437338,37.63,4,3992.50,57.72,1407.47,2259.68,0.00,3519377026446.103516,3519377016863.498535,199,0,110.452294,37.585808,8939058,6264491,0,0,9724,0,1,1 +1774038538.438282,29.93,4,3992.50,57.42,1419.66,2248.07,0.00,3517772767741.324707,0.000000,11,0,119.108514,0.078706,8951000,6270261,0,0,9726,0,1,1 +1774038543.436943,28.83,4,3992.50,57.37,1421.43,2246.32,0.00,0.177001,0.000000,199,0,119.421787,0.071806,8962693,6275841,0,0,9729,0,1,1 +1774038548.437514,24.53,4,3992.50,57.60,1412.70,2255.13,0.00,3518035379585.624023,0.000000,70,0,119.541395,0.059746,8974091,6280375,0,0,9731,0,1,1 +1774038553.438529,0.90,4,3992.50,51.14,1665.62,2002.05,0.00,3517723615430.784180,0.000000,11,0,28.433990,0.017617,8976892,6281570,0,0,9734,0,1,1 +1774038558.436967,0.50,4,3992.50,51.00,1671.23,1996.61,0.00,0.000000,0.000000,11,0,0.002687,0.005659,8976966,6281681,0,0,9736,0,1,1 +1774038563.438316,0.40,4,3992.50,51.01,1670.49,1997.34,0.00,1101.484335,10720.286988,45786,214162,0.001914,0.005230,8977029,6281789,0,0,9739,0,1,1 +1774038568.436947,0.35,4,3992.50,51.01,1670.50,1997.34,0.00,3519400903512.033203,3519400893886.529785,221,22,0.002302,0.006389,8977100,6281913,0,0,9741,0,1,1 +1774038573.438684,0.50,4,3992.50,51.01,1670.50,1997.33,0.00,3517215533610.718750,3517215533612.188477,11,0,0.002288,0.006364,8977170,6282036,0,0,9744,0,1,1 +1774038578.439153,0.60,4,3992.50,51.04,1669.34,1998.49,0.00,0.000000,0.000000,11,0,0.002351,0.006393,8977244,6282161,0,0,9746,0,1,1 +1774038583.438801,0.50,4,3992.50,51.04,1669.34,1998.48,0.00,2.008931,0.000195,238,2,0.001912,0.005187,8977305,6282267,0,0,9749,0,1,1 +1774038588.439480,0.35,4,3992.50,51.05,1669.11,1998.72,0.00,1099.623362,10721.885247,45786,214210,0.002289,0.006355,8977375,6282389,0,0,9751,0,1,1 +1774038593.438192,0.50,4,3992.50,51.05,1669.12,1998.71,0.00,3519343349304.552246,3519343339678.504883,238,2,0.002289,0.006368,8977445,6282512,0,0,9754,0,1,1 +1774038598.438390,9.83,4,3992.50,57.45,1418.79,2249.22,0.00,3518297914541.137695,3518297914543.145996,11,0,2.554317,0.013788,8977990,6283006,0,0,9756,0,1,1 +1774038603.436569,37.76,4,3992.50,57.54,1415.16,2252.92,0.00,1102.182968,10727.374000,45786,214331,116.466494,0.038040,8990109,6285684,0,0,9759,0,1,1 +1774038608.438729,30.21,4,3992.50,57.61,1412.62,2255.40,0.00,3516918195948.841309,3516918186331.132812,199,0,119.520049,0.036860,9002516,6288284,0,0,9761,0,1,1 +1774038613.437481,30.14,4,3992.50,57.43,1419.43,2248.55,0.00,1101.892871,10726.273547,45795,214425,118.798449,0.030508,9014726,6290456,0,0,9764,0,1,1 +1774038618.438647,30.27,4,3992.50,57.60,1412.72,2255.10,0.00,3517617360221.052246,3517617350601.315918,199,0,119.753668,0.057128,9027329,6294772,0,0,9766,0,1,1 +1774038623.435828,30.85,4,3992.50,57.53,1415.70,2252.30,0.00,0.000000,0.000000,199,0,118.837651,0.039091,9039639,6297561,0,0,9769,0,1,1 +1774038628.437876,30.46,4,3992.50,57.63,1411.79,2256.18,0.00,1105.226070,10719.239763,46553,214482,119.719945,0.031294,9051968,6299809,0,0,9771,0,1,1 +1774038633.435443,29.79,4,3992.50,57.52,1416.12,2251.84,0.00,3520149991670.131348,3520149982047.675293,11,0,119.422002,0.027082,9063995,6301844,0,0,9774,0,1,1 +1774038638.439415,30.13,4,3992.50,57.49,1416.96,2251.04,0.00,0.000000,0.000000,11,0,118.882187,0.053217,9076348,6305710,0,0,9776,0,1,1 +1774038643.434524,6.63,4,3992.50,51.93,1634.84,2033.24,0.00,0.000000,0.000000,11,0,71.582681,0.045038,9083951,6308905,0,0,9779,0,1,1 +1774038648.439429,2.05,4,3992.50,51.55,1649.72,2018.35,0.00,0.176780,0.000000,199,0,0.015707,0.012832,9084234,6309153,0,0,9781,0,1,1 +1774038653.437920,22.45,4,3992.50,52.43,1615.16,2052.86,0.00,3519499117788.090820,0.000000,70,0,32.208558,0.144783,9094698,6316894,0,0,9784,0,1,1 +1774038658.438543,5.12,4,3992.50,52.57,1609.78,2058.21,0.00,3517999061800.797363,0.000000,11,0,8.053961,0.039124,9097482,6318917,0,0,9786,0,1,1 +1774038663.438645,1.86,4,3992.50,51.95,1633.96,2034.01,0.00,1105.883869,10724.488976,46562,215714,0.004594,0.008529,9097599,6319082,0,0,9789,0,1,1 +1774038668.434561,0.65,4,3992.50,51.66,1645.21,2022.77,0.00,3521313147327.706543,3521313137701.042969,11,0,0.003881,0.007128,9097699,6319222,0,0,9791,0,1,1 +1774038673.434589,0.65,4,3992.50,51.65,1645.84,2022.14,0.00,1105.900211,10725.072746,46562,215993,0.004800,0.007802,9097801,6319366,0,0,9794,0,1,1 +1774038678.439325,0.90,4,3992.50,51.65,1645.86,2022.12,0.00,3515108194331.970703,3515108184721.795410,70,0,0.003412,0.005858,9097887,6319483,0,0,9796,0,1,1 +1774038683.438788,0.60,4,3992.50,51.65,1645.62,2022.36,0.00,3518814776301.121094,0.000000,11,0,0.003910,0.007158,9097989,6319626,0,0,9799,0,1,1 +1774038688.434612,0.55,4,3992.50,51.65,1645.63,2022.35,0.00,1.493142,0.022089,221,22,0.003881,0.007128,9098089,6319766,0,0,9801,0,1,1 +1774038693.434535,0.80,4,3992.50,51.65,1645.65,2022.33,0.00,0.516903,3518491817283.579102,238,2,0.004010,0.007269,9098199,6319916,0,0,9804,0,1,1 +1774038698.434860,0.60,4,3992.50,51.65,1645.73,2022.22,0.00,0.000000,0.000000,238,2,0.003407,0.005855,9098284,6320032,0,0,9806,0,1,1 +1774038703.434523,0.65,4,3992.50,51.52,1650.81,2017.17,0.00,3518674658899.639160,3518674658901.471680,199,0,0.003903,0.007164,9098386,6320175,0,0,9809,0,1,1 +1774038708.434636,0.65,4,3992.50,51.52,1650.83,2017.16,0.00,1.831795,0.000195,238,2,0.003953,0.007162,9098491,6320318,0,0,9811,0,1,1 +1774038713.436646,0.80,4,3992.50,51.52,1650.85,2017.14,0.00,1103.453946,10721.214476,46562,216241,0.003414,0.005858,9098577,6320435,0,0,9814,0,1,1 +1774038718.437501,0.70,4,3992.50,51.52,1650.85,2017.13,0.00,3517835568542.226074,3517835558924.074707,199,0,0.003877,0.007121,9098677,6320575,0,0,9816,0,1,1 +1774038723.438534,1.35,4,3992.50,51.49,1651.94,2015.98,0.00,1101.441199,10723.361542,45804,216308,0.008553,1.412039,9099015,6321032,0,0,9819,0,1,1 +1774038728.438811,29.29,4,3992.50,51.55,1642.42,2018.23,0.00,4.060615,85.810576,46562,216922,0.053525,120.168508,9102966,6333612,0,0,9821,0,1,1 +1774038733.437528,21.29,4,3992.50,51.54,1642.34,2017.93,0.00,3519340307101.411621,3519340297393.258789,199,0,0.036024,83.545182,9105543,6342377,0,0,9824,0,1,1 +1774038738.438685,1.30,4,3992.50,51.41,1647.42,2012.85,0.00,1101.431050,10928.181496,45820,217619,0.006542,0.008677,9105678,6342550,0,0,9826,0,1,1 +1774038743.438608,15.35,4,3992.50,51.43,1649.41,2013.48,0.00,23.784644,0.110744,46699,217749,40.065510,0.025439,9110081,6344090,0,0,9829,0,1,1 +1774038748.434649,0.80,4,3992.50,51.45,1648.30,2014.57,0.00,3521224863304.876465,0.030982,45941,217796,0.004578,0.009238,9110196,6344254,0,0,9831,0,1,1 +1774038753.439409,1.05,4,3992.50,51.46,1648.09,2014.81,0.00,3515090620743.151855,3515090610943.040527,199,0,0.002636,0.005610,9110268,6344363,0,0,9834,0,1,1 +1774038758.434615,11.40,4,3992.50,50.82,1671.64,1989.82,0.00,3521814094692.816895,0.000000,11,0,0.022199,40.105495,9111693,6348841,0,0,9836,0,1,1 +1774038763.434621,0.85,4,3992.50,50.82,1671.56,1989.90,0.00,1.491893,0.022070,221,22,0.002974,0.007894,9111783,6348993,0,0,9839,0,1,1 +1774038768.435421,0.60,4,3992.50,50.84,1670.89,1990.58,0.00,3517874557210.728027,3517874557212.197754,11,0,0.002326,0.006386,9111856,6349117,0,0,9841,0,1,1 +1774038773.436064,0.70,4,3992.50,50.85,1670.40,1991.07,0.00,1125.502334,10963.769196,46699,218241,0.001806,0.005098,9111910,6349216,0,0,9844,0,1,1 +1774038778.436732,0.50,4,3992.50,50.88,1669.42,1992.04,0.00,3517967199314.595703,3517967199318.640137,45941,218223,0.002289,0.006355,9111980,6349338,0,0,9846,0,1,1 +1774038783.438709,0.65,4,3992.50,50.88,1669.42,1992.04,0.00,0.000000,0.007028,45941,218229,0.002283,0.006371,9112050,6349462,0,0,9849,0,1,1 +1774038788.439189,0.45,4,3992.50,50.89,1669.19,1992.28,0.00,0.000000,6.058794,45941,218269,0.002289,0.006355,9112120,6349584,0,0,9851,0,1,1 +1774038793.434607,0.35,4,3992.50,50.89,1669.20,1992.27,0.00,3521664555542.932129,3521664545682.243652,238,2,0.001858,0.005166,9112178,6349687,0,0,9854,0,1,1 +1774038798.434808,0.50,4,3992.50,50.90,1668.46,1993.00,0.00,1123.593117,10970.873856,46699,218367,0.002326,0.006387,9112251,6349811,0,0,9856,0,1,1 +1774038803.438603,0.35,4,3992.50,50.90,1668.46,1993.00,0.00,3515768564332.000488,3515768554493.750000,70,0,0.002456,0.006530,9112333,6349946,0,0,9859,0,1,1 +1774038808.439159,0.40,4,3992.50,50.90,1668.46,1993.00,0.00,0.000000,0.000000,70,0,0.002351,0.006406,9112407,6350072,0,0,9861,0,1,1 +1774038813.439064,0.35,4,3992.50,50.90,1668.47,1992.99,0.00,3518504169536.000488,0.000000,11,0,0.001819,0.005099,9112462,6350171,0,0,9864,0,1,1 +1774038818.434516,0.40,4,3992.50,50.90,1668.47,1992.98,0.00,2.010618,0.000195,238,2,0.002291,0.006362,9112532,6350293,0,0,9866,0,1,1 +1774038823.434620,13.86,4,3992.50,57.31,1421.19,2244.00,0.00,3518363893918.042969,3518363893920.051270,11,0,5.815051,0.016985,9113418,6351093,0,0,9869,0,1,1 +1774038828.438410,35.37,4,3992.50,57.28,1424.30,2242.45,0.00,0.176819,0.000000,199,0,117.674831,0.060193,9125493,6355546,0,0,9871,0,1,1 +1774038833.435971,29.18,4,3992.50,57.36,1420.89,2245.85,0.00,1126.019471,10976.874455,46699,218524,118.423430,0.037577,9137700,6358332,0,0,9874,0,1,1 +1774038838.437662,29.06,4,3992.50,57.45,1417.26,2249.39,0.00,3517247328613.878906,3517247318771.336426,11,0,119.925556,0.040264,9149913,6361230,0,0,9876,0,1,1 +1774038843.434825,28.40,4,3992.50,57.72,1406.70,2260.05,0.00,0.000000,0.000000,11,0,118.832053,0.047581,9162045,6364692,0,0,9879,0,1,1 +1774038848.438513,28.92,4,3992.50,57.37,1420.50,2246.10,0.00,1120.759597,10963.530179,45941,218580,119.473061,0.048414,9174087,6368438,0,0,9881,0,1,1 +1774038853.436418,28.35,4,3992.50,57.49,1415.82,2250.88,0.00,3519911893857.069336,3519911884002.910645,11,0,119.012185,0.046007,9186132,6371937,0,0,9884,0,1,1 +1774038858.438802,28.49,4,3992.50,57.44,1417.90,2248.83,0.00,1125.110684,10966.448312,46699,218635,119.306868,0.038267,9198199,6374710,0,0,9886,0,1,1 +1774038863.438488,28.36,4,3992.50,57.35,1421.46,2245.27,0.00,3518657686848.210938,3518657677001.564453,11,0,119.771494,0.043354,9210269,6377791,0,0,9889,0,1,1 +1774038868.434533,5.33,4,3992.50,53.02,1591.12,2075.66,0.00,2.010379,0.000195,238,2,67.145414,0.029671,9217084,6379984,0,0,9891,0,1,1 +1774038873.440386,3.25,4,3992.50,52.59,1607.63,2059.16,0.00,0.000000,0.000000,238,2,1.418844,0.015483,9217764,6380482,0,0,9894,0,1,1 +1774038878.439306,21.33,4,3992.50,52.88,1596.13,2070.56,0.00,1119.974763,10974.703719,45958,219559,32.811359,0.146668,9228402,6388288,0,0,9896,0,1,1 +1774038883.439153,4.83,4,3992.50,52.29,1619.25,2047.44,0.00,3518544914643.599609,3518544904792.655762,70,0,6.040335,0.031021,9230471,6389836,0,0,9899,0,1,1 +1774038888.438665,0.40,4,3992.50,51.83,1637.55,2029.14,0.00,1.958980,0.000195,238,2,0.003866,0.007123,9230570,6389976,0,0,9901,0,1,1 +1774038893.435091,0.55,4,3992.50,51.74,1640.91,2025.79,0.00,0.000000,0.000000,238,2,0.003457,0.005948,9230659,6390099,0,0,9904,0,1,1 +1774038898.438401,9.69,4,3992.50,52.15,1623.36,2041.94,0.00,3516109795949.734375,3516109795951.741699,11,0,0.023988,38.638673,9232203,6394398,0,0,9906,0,1,1 +1774038903.438513,29.77,4,3992.50,52.25,1614.36,2045.83,0.00,2.008744,0.000195,238,2,0.056048,119.369569,9236295,6406755,0,0,9909,0,1,1 +1774038908.434715,12.76,4,3992.50,52.27,1614.28,2046.33,0.00,1124.666069,11155.480488,46733,221311,0.016292,47.110313,9237157,6411808,0,0,9911,0,1,1 +1774038913.436490,14.24,4,3992.50,52.71,1599.45,2063.82,0.00,3517188485558.651855,3517188475539.553223,221,22,40.052428,0.028733,9241661,6413369,0,0,9914,0,1,1 +1774038918.434643,0.40,4,3992.50,51.98,1628.05,2035.26,0.00,3519737735784.287109,3519737735785.757324,11,0,0.003764,0.006628,9241763,6413506,0,0,9916,0,1,1 +1774038923.434588,0.40,4,3992.50,51.44,1649.23,2014.04,0.00,0.000000,0.000000,11,0,0.003649,0.006499,9241856,6413635,0,0,9919,0,1,1 +1774038928.434572,0.40,4,3992.50,51.29,1655.23,2008.07,0.00,0.000000,0.000000,11,0,0.003886,0.007130,9241957,6413776,0,0,9921,0,1,1 +1774038933.435432,0.45,4,3992.50,51.30,1654.77,2008.53,0.00,1141.286878,11176.592704,46082,221606,0.003865,0.007131,9242056,6413917,0,0,9924,0,1,1 +1774038938.434561,0.55,4,3992.50,51.29,1655.00,2008.29,0.00,3519049912337.371094,3519049902298.415039,199,0,0.004178,0.007666,9242162,6414067,0,0,9926,0,1,1 +1774038943.435672,0.40,4,3992.50,51.29,1655.27,2008.03,0.00,1.831429,0.000195,238,2,0.003744,0.006437,9242256,6414196,0,0,9929,0,1,1 +1774038948.434782,0.60,4,3992.50,51.31,1654.55,2008.75,0.00,3519063233338.898926,3519063233340.908203,11,0,0.005850,0.009193,9242387,6414363,0,0,9931,0,1,1 +1774038953.438083,0.55,4,3992.50,51.29,1655.25,2008.05,0.00,2.007464,0.000195,238,2,0.004090,0.007685,9242494,6414517,0,0,9934,0,1,1 +1774038958.434639,0.55,4,3992.50,51.29,1655.02,2008.29,0.00,3520862656524.474609,0.021890,221,22,0.004389,0.007198,9242608,6414665,0,0,9936,0,1,1 +1774038963.434665,0.45,4,3992.50,51.28,1655.47,2007.83,0.00,1144.046100,11178.701228,46840,221844,0.003244,0.005840,9242691,6414780,0,0,9939,0,1,1 +1774038968.439442,0.50,4,3992.50,51.28,1655.38,2007.92,0.00,3515078767645.505859,0.030440,46082,221863,0.003862,0.007116,9242790,6414920,0,0,9941,0,1,1 +1774038973.438992,0.50,4,3992.50,51.27,1656.16,2007.15,0.00,3518753979346.379395,3518753969307.970215,199,0,0.004808,0.007811,9242893,6415065,0,0,9944,0,1,1 +1774038978.434793,0.45,4,3992.50,51.26,1656.48,2006.82,0.00,3521394586628.664062,0.000000,11,0,0.003881,0.007128,9242993,6415205,0,0,9946,0,1,1 +1774038983.438592,11.01,4,3992.50,51.33,1652.12,2009.63,0.00,0.000000,0.000000,11,0,0.023984,40.034095,9244588,6419601,0,0,9949,0,1,1 +1774038988.438868,0.70,4,3992.50,51.22,1656.18,2005.57,0.00,2.008679,0.000195,238,2,0.003489,0.008807,9244690,6419767,0,0,9951,0,1,1 +1774038993.434485,0.50,4,3992.50,51.25,1655.28,2006.47,0.00,3521523639120.228516,0.021894,221,22,0.002324,0.006411,9244763,6419893,0,0,9954,0,1,1 +1774038998.437526,0.50,4,3992.50,51.28,1654.05,2007.70,0.00,3516298980525.038574,3516298980526.330566,199,0,0.002287,0.006352,9244833,6420015,0,0,9956,0,1,1 +1774039003.438430,0.50,4,3992.50,51.29,1653.82,2007.93,0.00,0.000000,0.000000,199,0,0.002314,0.006383,9244905,6420139,0,0,9959,0,1,1 +1774039008.434518,0.45,4,3992.50,51.15,1659.25,2002.50,0.00,3521192037417.602051,0.000000,11,0,0.001832,0.005105,9244961,6420238,0,0,9961,0,1,1 +1774039013.437478,0.45,4,3992.50,51.18,1657.78,2003.97,0.00,0.000000,0.000000,11,0,0.002287,0.006362,9245031,6420361,0,0,9964,0,1,1 +1774039018.439083,0.45,4,3992.50,51.19,1657.57,2004.18,0.00,0.000000,0.000000,11,0,0.002309,0.006393,9245103,6420486,0,0,9966,0,1,1 +1774039023.434561,0.55,4,3992.50,51.20,1657.32,2004.43,0.00,0.000000,0.000000,11,0,0.002354,0.006434,9245178,6420613,0,0,9969,0,1,1 +1774039028.436393,0.45,4,3992.50,51.20,1657.32,2004.42,0.00,0.000000,0.000000,11,0,0.002166,0.005826,9245249,6420730,0,0,9971,0,1,1 +1774039033.434524,0.50,4,3992.50,51.02,1664.08,1997.66,0.00,1.492452,0.022079,221,22,0.002185,0.005848,9245320,6420850,0,0,9974,0,1,1 +1774039038.434530,0.35,4,3992.50,51.03,1663.87,1997.88,0.00,3518433018427.983398,3518433018429.453125,11,0,0.002297,0.006364,9245391,6420973,0,0,9976,0,1,1 +1774039043.434608,0.50,4,3992.50,51.03,1663.87,1997.88,0.00,2.008758,0.000195,238,2,0.002276,0.006366,9245460,6421096,0,0,9979,0,1,1 +1774039048.434541,0.65,4,3992.50,50.98,1665.95,1995.80,0.00,1139.489697,11219.317059,46082,222381,0.003659,0.006732,9245552,6421232,0,0,9981,0,1,1 +1774039053.434440,26.85,4,3992.50,57.51,1415.18,2251.83,0.00,3518507795342.897461,3518507785263.542969,221,22,41.062586,0.023781,9249945,6422684,0,0,9984,0,1,1 +1774039058.434546,31.32,4,3992.50,57.52,1414.86,2252.09,0.00,1144.028010,11219.041001,46840,222518,118.163255,0.033368,9262049,6424921,0,0,9986,0,1,1 +1774039063.438840,27.67,4,3992.50,57.41,1419.21,2247.71,0.00,3515417576532.776855,3515417566467.667480,11,0,119.464186,0.027717,9274367,6426903,0,0,9989,0,1,1 +1774039068.434550,28.24,4,3992.50,57.93,1399.00,2267.98,0.00,0.000000,0.000000,11,0,118.865173,0.022164,9286535,6428566,0,0,9991,0,1,1 +1774039073.435088,28.12,4,3992.50,57.42,1418.61,2248.32,0.00,0.176934,0.000000,199,0,119.459024,0.036853,9298891,6431285,0,0,9994,0,1,1 +1774039078.438427,28.00,4,3992.50,57.52,1414.93,2252.09,0.00,3516089259409.999023,0.000000,11,0,118.786849,0.029758,9311120,6433437,0,0,9996,0,1,1 +1774039083.438543,28.98,4,3992.50,57.31,1423.11,2243.84,0.00,1145.517437,11219.225046,46840,222605,119.761696,0.033780,9323231,6435852,0,0,9999,0,1,1 +1774039088.435478,28.41,4,3992.50,57.35,1421.51,2245.45,0.00,3520595032539.397949,3520595022457.808105,221,22,118.840449,0.035405,9335442,6438542,0,0,10001,0,1,1 +1774039093.437339,24.18,4,3992.50,57.32,1422.87,2244.19,0.00,3517128101444.771973,3517128101446.241211,11,0,119.928614,0.040870,9347829,6441511,0,0,10004,0,1,1 +1774039098.439199,1.25,4,3992.50,52.88,1596.48,2070.56,0.00,0.000000,0.000000,11,0,31.039550,0.017714,9351143,6442549,0,0,10006,0,1,1 +1774039103.439140,17.24,4,3992.50,52.56,1609.11,2057.88,0.00,0.176955,0.000000,199,0,24.164422,0.117368,9359225,6448494,0,0,10009,0,1,1 +1774039108.438813,11.06,4,3992.50,51.63,1645.46,2021.48,0.00,1.315027,0.022072,221,22,16.097891,0.070492,9364436,6452390,0,0,10011,0,1,1 +1774039113.439296,0.90,4,3992.50,51.62,1646.04,2020.88,0.00,3518097772254.348145,3518097772255.817871,11,0,0.004571,0.008503,9364551,6452553,0,0,10014,0,1,1 +1774039118.439121,0.35,4,3992.50,51.60,1646.54,2020.41,0.00,1141.695013,11220.803312,46103,223871,0.003878,0.007123,9364651,6452693,0,0,10016,0,1,1 +1774039123.438569,0.40,4,3992.50,51.60,1646.80,2020.14,0.00,3518825459459.959473,3518825449380.042969,70,0,0.003429,0.005874,9364738,6452811,0,0,10019,0,1,1 +1774039128.434522,0.40,4,3992.50,51.59,1647.09,2019.85,0.00,1142.529849,11230.066035,46103,224097,0.003881,0.007128,9364838,6452951,0,0,10021,0,1,1 +1774039133.438318,0.40,4,3992.50,51.59,1647.10,2019.84,0.00,3515767802675.794434,3515767792603.944336,199,0,0.003774,0.007049,9364940,6453095,0,0,10024,0,1,1 +1774039138.434608,0.45,4,3992.50,51.59,1647.12,2019.82,0.00,3521049893395.450684,0.000000,11,0,0.003423,0.005889,9365026,6453213,0,0,10026,0,1,1 +1774039143.435873,0.45,4,3992.50,51.59,1647.13,2019.82,0.00,1141.366123,11218.167733,46103,224123,0.003761,0.006642,9365128,6453351,0,0,10029,0,1,1 +1774039148.439167,0.50,4,3992.50,51.57,1647.87,2019.08,0.00,3516120473937.377930,3516120463862.655273,238,2,0.003617,0.006518,9365219,6453482,0,0,10031,0,1,1 +1774039153.434715,0.40,4,3992.50,51.57,1647.89,2019.05,0.00,3521573530014.534180,3521573530016.494141,70,0,0.003425,0.005916,9365305,6453602,0,0,10034,0,1,1 +1774039158.438913,1.25,4,3992.50,51.57,1647.89,2019.05,0.00,0.000000,0.000000,70,0,0.003910,0.007099,9365407,6453741,0,0,10036,0,1,1 +1774039163.438655,0.35,4,3992.50,51.57,1647.91,2019.02,0.00,0.000000,0.000000,70,0,0.003420,0.005865,9365493,6453858,0,0,10039,0,1,1 +1774039168.439261,0.40,4,3992.50,51.56,1648.43,2018.52,0.00,3518011475317.259766,0.000000,11,0,0.003873,0.007104,9365593,6453997,0,0,10041,0,1,1 +1774039173.438174,0.30,4,3992.50,51.55,1648.45,2018.48,0.00,0.050011,0.000000,70,0,0.003408,0.005854,9365678,6454113,0,0,10044,0,1,1 +1774039178.434547,0.45,4,3992.50,51.54,1649.09,2017.86,0.00,1.442941,0.022086,221,22,0.003211,0.006732,9365762,6454243,0,0,10046,0,1,1 +1774039183.437757,0.40,4,3992.50,51.54,1649.10,2017.84,0.00,1143.489784,11214.101610,46861,224429,0.003242,0.005836,9365845,6454358,0,0,10049,0,1,1 +1774039188.438574,0.40,4,3992.50,51.54,1649.11,2017.82,0.00,3517862118897.454102,3517862108821.485352,238,2,0.003865,0.007109,9365944,6454497,0,0,10051,0,1,1 +1774039193.439384,0.45,4,3992.50,51.54,1649.14,2017.81,0.00,0.000000,0.000000,238,2,0.003428,0.005872,9366031,6454615,0,0,10054,0,1,1 +1774039198.434528,0.45,4,3992.50,51.54,1649.15,2017.80,0.00,3521858294837.387207,0.021896,221,22,0.003857,0.007129,9366129,6454755,0,0,10056,0,1,1 +1774039203.439047,0.60,4,3992.50,51.54,1649.16,2017.78,0.00,0.516428,3515259799297.087402,238,2,0.003417,0.005847,9366215,6454871,0,0,10059,0,1,1 +1774039208.434511,18.85,4,3992.50,51.70,1638.84,2024.12,0.00,3521632490984.910645,3521632490986.920898,11,0,0.036294,73.181526,9368601,6462801,0,0,10061,0,1,1 +1774039213.438864,32.24,4,3992.50,52.66,1598.64,2061.68,0.00,1140.675147,11387.058364,46112,225558,0.034280,122.066048,9371265,6475584,0,0,10064,0,1,1 +1774039218.435010,3.82,4,3992.50,51.43,1647.10,2013.51,0.00,0.017983,0.109166,46129,225598,0.009340,9.828401,9371722,6476755,0,0,10066,0,1,1 +1774039223.434610,12.70,4,3992.50,52.19,1619.63,2043.44,0.00,3518718857260.241211,3518718847002.555176,221,22,40.075024,0.037311,9376447,6479014,0,0,10069,0,1,1 +1774039228.434791,10.01,4,3992.50,51.78,1634.76,2027.36,0.00,3518309491432.521484,3518309491433.991211,11,0,0.019972,40.063551,9377748,6483403,0,0,10071,0,1,1 +1774039233.434666,0.55,4,3992.50,51.65,1639.72,2022.40,0.00,1.491932,0.022071,221,22,0.002529,0.006972,9377824,6483537,0,0,10074,0,1,1 +1774039238.434661,0.45,4,3992.50,51.59,1642.18,2019.94,0.00,0.516895,3518441243831.596680,238,2,0.002118,0.005656,9377885,6483647,0,0,10076,0,1,1 +1774039243.438934,0.45,4,3992.50,51.59,1642.42,2019.70,0.00,3515432554615.208008,3515432554617.038574,199,0,0.002384,0.006314,9377956,6483771,0,0,10079,0,1,1 +1774039248.435546,0.60,4,3992.50,51.39,1650.05,2012.07,0.00,0.000000,0.000000,199,0,0.003337,0.006842,9378045,6483904,0,0,10081,0,1,1 +1774039253.438613,0.40,4,3992.50,51.42,1649.09,2013.03,0.00,0.000000,0.000000,199,0,0.002064,0.005690,9378110,6484018,0,0,10084,0,1,1 +1774039258.438553,0.55,4,3992.50,51.42,1649.09,2013.02,0.00,1.831858,0.000195,238,2,0.003603,0.006425,9378194,6484132,0,0,10086,0,1,1 +1774039263.438751,0.60,4,3992.50,51.42,1649.10,2013.02,0.00,3518298034862.343262,3518298034864.175293,199,0,0.002264,0.006366,9378262,6484255,0,0,10089,0,1,1 +1774039268.437878,0.30,4,3992.50,51.42,1649.10,2013.02,0.00,1161.435474,11468.971545,46245,226361,0.001907,0.005183,9378324,6484359,0,0,10091,0,1,1 +1774039273.439232,0.55,4,3992.50,51.41,1649.10,2013.01,0.00,3517484615202.737793,3517484604898.499023,221,22,0.003310,0.007159,9378403,6484494,0,0,10094,0,1,1 +1774039278.438885,0.35,4,3992.50,51.41,1649.11,2013.01,0.00,0.516930,3518681390593.223145,238,2,0.001845,0.005110,9378460,6484594,0,0,10096,0,1,1 +1774039283.438749,0.50,4,3992.50,51.42,1648.90,2013.22,0.00,3518533010794.302734,3518533010796.311523,11,0,0.002320,0.006391,9378532,6484719,0,0,10099,0,1,1 +1774039288.434586,0.65,4,3992.50,51.23,1656.37,2005.75,0.00,0.177101,0.000000,199,0,0.003230,0.005784,9378612,6484832,0,0,10101,0,1,1 +1774039293.435478,40.49,4,3992.50,57.40,1419.30,2247.45,0.00,1.314707,0.022066,221,22,97.723057,0.039320,9388832,6487475,0,0,10104,0,1,1 +1774039298.437332,29.73,4,3992.50,57.53,1414.36,2252.39,0.00,3517132828822.000488,3517132828823.469727,11,0,119.323768,0.028079,9401245,6489429,0,0,10106,0,1,1 +1774039303.436972,29.32,4,3992.50,57.45,1417.31,2249.36,0.00,0.176966,0.000000,199,0,118.975202,0.018118,9413624,6490743,0,0,10109,0,1,1 +1774039308.437385,29.93,4,3992.50,57.44,1417.80,2249.02,0.00,1161.136878,11466.232713,46245,226541,119.157099,0.019381,9426006,6492025,0,0,10111,0,1,1 +1774039313.435568,29.30,4,3992.50,57.58,1412.20,2254.46,0.00,3519716116989.260742,3519716106677.736328,238,2,119.208748,0.019967,9438189,6493316,0,0,10114,0,1,1 +1774039318.436775,29.39,4,3992.50,57.92,1399.00,2267.65,0.00,0.000000,0.000000,238,2,119.733710,0.015767,9450354,6494567,0,0,10116,0,1,1 +1774039323.439177,29.57,4,3992.50,57.64,1409.86,2256.84,0.00,3516748358004.004883,3516748358005.835938,199,0,118.909597,0.027931,9462513,6496483,0,0,10119,0,1,1 +1774039328.439378,30.21,4,3992.50,57.63,1410.21,2256.50,0.00,1161.185915,11466.797908,46245,226615,119.763082,0.030774,9474710,6498601,0,0,10121,0,1,1 +1774039333.438864,11.56,4,3992.50,53.00,1591.56,2075.24,0.00,0.084384,0.227269,46252,226632,92.538286,0.021593,9484099,6500100,0,0,10124,0,1,1 +1774039338.438385,0.80,4,3992.50,52.10,1626.85,2039.94,0.00,0.083602,0.099033,46258,226662,0.005429,0.004670,9484209,6500203,0,0,10126,0,1,1 +1774039343.438821,9.05,4,3992.50,52.15,1625.04,2041.69,0.00,4.060486,0.272632,47016,227060,10.085228,0.062492,9488389,6503388,0,0,10129,0,1,1 +1774039348.436439,19.78,4,3992.50,53.24,1582.18,2084.52,0.00,3520114314086.308105,3520114303777.706543,221,22,30.169891,0.147433,9499692,6512247,0,0,10131,0,1,1 +1774039353.439127,1.71,4,3992.50,51.93,1633.33,2033.36,0.00,1159.466307,11461.774942,46260,227583,0.045962,0.010363,9499966,6512503,0,0,10134,0,1,1 +1774039358.438888,0.80,4,3992.50,51.59,1646.82,2019.86,0.00,3518605747529.482910,3518605737222.611816,11,0,0.004572,0.008469,9500081,6512663,0,0,10136,0,1,1 +1774039363.434808,0.35,4,3992.50,51.50,1650.50,2016.19,0.00,0.050041,0.000000,70,0,0.003398,0.005857,9500165,6512779,0,0,10139,0,1,1 +1774039368.438542,0.50,4,3992.50,51.48,1651.09,2015.60,0.00,3515811701256.865723,0.000000,11,0,0.003837,0.007105,9500262,6512918,0,0,10141,0,1,1 +1774039373.438907,0.45,4,3992.50,51.49,1650.62,2016.06,0.00,2.008642,0.000195,238,2,0.003407,0.005852,9500347,6513034,0,0,10144,0,1,1 +1774039378.439100,0.35,4,3992.50,51.49,1650.64,2016.04,0.00,3518301693047.559570,3518301693049.568359,11,0,0.003652,0.006970,9500440,6513171,0,0,10146,0,1,1 +1774039383.438671,0.45,4,3992.50,51.49,1650.65,2016.04,0.00,1165.742349,11469.992766,47018,228243,0.003492,0.005973,9500532,6513295,0,0,10149,0,1,1 +1774039388.438399,0.35,4,3992.50,51.46,1651.76,2014.92,0.00,3518628747792.249023,3518628737488.144043,199,0,0.003866,0.007123,9500631,6513435,0,0,10151,0,1,1 +1774039393.438435,0.40,4,3992.50,51.48,1651.29,2015.39,0.00,1165.456990,11468.986573,47018,228318,0.003408,0.005840,9500716,6513550,0,0,10154,0,1,1 +1774039398.437751,0.55,4,3992.50,51.48,1651.31,2015.38,0.00,3518918295224.898438,3518918284919.885742,199,0,0.003841,0.007111,9500813,6513689,0,0,10156,0,1,1 +1774039403.436405,0.50,4,3992.50,51.48,1651.32,2015.37,0.00,3519384806761.627930,0.000000,11,0,0.003471,0.005907,9500902,6513809,0,0,10159,0,1,1 +1774039408.438841,0.40,4,3992.50,51.47,1651.34,2015.36,0.00,1161.015990,11463.600235,46260,228419,0.003813,0.007056,9500997,6513944,0,0,10161,0,1,1 +1774039413.436418,0.45,4,3992.50,51.47,1651.36,2015.34,0.00,3520142923249.799805,3520142912935.729492,221,22,0.003397,0.005855,9501081,6514060,0,0,10164,0,1,1 +1774039418.434520,0.45,4,3992.50,51.47,1651.37,2015.33,0.00,1160.530025,11473.594123,46260,228505,0.003621,0.006474,9501172,6514187,0,0,10166,0,1,1 +1774039423.434541,0.35,4,3992.50,51.47,1651.37,2015.31,0.00,3518422357869.706543,3518422347560.599609,221,22,0.003030,0.006261,9501253,6514309,0,0,10169,0,1,1 +1774039428.439101,0.45,4,3992.50,51.47,1651.39,2015.30,0.00,3515231546904.078613,3515231546905.497070,70,0,0.003445,0.006299,9501341,6514432,0,0,10171,0,1,1 +1774039433.438937,0.40,4,3992.50,51.47,1651.41,2015.28,0.00,1.441942,0.022071,221,22,0.003624,0.006486,9501432,6514560,0,0,10174,0,1,1 +1774039438.437216,0.50,4,3992.50,51.47,1651.41,2015.27,0.00,3519648744484.323730,3519648744485.793945,11,0,0.003409,0.005845,9501517,6514675,0,0,10176,0,1,1 +1774039443.439149,0.45,4,3992.50,51.47,1651.43,2015.25,0.00,1.491318,0.022062,221,22,0.003394,0.005850,9501601,6514791,0,0,10179,0,1,1 +1774039448.435267,16.41,4,3992.50,51.96,1629.35,2034.36,0.00,1160.990978,11510.396297,46260,228902,0.030373,66.954998,9503708,6522022,0,0,10181,0,1,1 +1774039453.434524,29.74,4,3992.50,51.75,1634.02,2026.08,0.00,3518960235708.046387,3518960225366.558594,70,0,0.058574,118.204595,9508135,6534655,0,0,10184,0,1,1 +1774039458.434643,5.98,4,3992.50,51.73,1634.77,2025.44,0.00,0.126950,0.000000,199,0,0.018665,20.040658,9509412,6536986,0,0,10186,0,1,1 +1774039463.434499,15.11,4,3992.50,52.77,1596.80,2066.15,0.00,3518538405566.105957,0.000000,11,0,40.065633,0.021765,9513898,6538325,0,0,10189,0,1,1 +1774039468.439242,0.90,4,3992.50,51.92,1630.20,2032.74,0.00,0.000000,0.000000,11,0,0.004899,0.006483,9514009,6538459,0,0,10191,0,1,1 +1774039473.434564,11.19,4,3992.50,51.55,1643.54,2018.25,0.00,0.000000,0.000000,11,0,0.022289,40.106974,9515442,6543023,0,0,10194,0,1,1 +1774039478.434621,0.70,4,3992.50,51.21,1656.76,2005.03,0.00,0.176951,0.000000,199,0,0.002880,0.007314,9515527,6543163,0,0,10196,0,1,1 +1774039483.439182,0.40,4,3992.50,51.25,1655.07,2006.72,0.00,1.313743,0.022050,221,22,0.002262,0.006360,9515595,6543286,0,0,10199,0,1,1 +1774039488.436861,0.45,4,3992.50,51.27,1654.60,2007.20,0.00,3520071690105.703613,3520071690107.174316,11,0,0.001815,0.005099,9515650,6543385,0,0,10201,0,1,1 +1774039493.439443,0.50,4,3992.50,51.25,1655.29,2006.50,0.00,0.049974,0.000000,70,0,0.002313,0.006394,9515722,6543510,0,0,10204,0,1,1 +1774039498.438712,0.40,4,3992.50,51.28,1654.07,2007.72,0.00,1.959076,0.000195,238,2,0.001819,0.005090,9515777,6543608,0,0,10206,0,1,1 +1774039503.439531,0.80,4,3992.50,51.28,1654.09,2007.71,0.00,0.000000,0.000000,238,2,0.002263,0.006352,9515845,6543730,0,0,10209,0,1,1 +1774039508.434524,0.65,4,3992.50,51.08,1661.75,2000.05,0.00,3521964332186.731934,3521964332188.742676,11,0,0.001845,0.005125,9515902,6543830,0,0,10211,0,1,1 +1774039513.436700,0.80,4,3992.50,51.09,1661.50,2000.29,0.00,1.491245,0.022061,221,22,0.002363,0.006488,9515978,6543961,0,0,10214,0,1,1 +1774039518.438619,0.60,4,3992.50,51.06,1662.52,1999.28,0.00,1179.378405,11710.607378,46392,230654,0.001869,0.005151,9516037,6544064,0,0,10216,0,1,1 +1774039523.439291,0.70,4,3992.50,51.06,1662.52,1999.27,0.00,3517964472080.725098,3517964461546.870117,221,22,0.002413,0.006466,9516115,6544195,0,0,10219,0,1,1 +1774039528.439252,1.40,4,3992.50,51.04,1663.29,1998.51,0.00,3518464495277.562012,3518464495279.032227,11,0,0.001793,0.005089,9516168,6544293,0,0,10221,0,1,1 +1774039533.438664,0.65,4,3992.50,51.05,1663.04,1998.74,0.00,1181.461856,11716.537493,46392,230670,0.002276,0.006354,9516237,6544415,0,0,10224,0,1,1 +1774039538.438769,36.32,4,3992.50,57.86,1401.35,2265.39,0.00,0.000000,0.021582,46392,230720,85.124165,0.047294,9525186,6547545,0,0,10226,0,1,1 +1774039543.438880,33.30,4,3992.50,57.71,1407.21,2259.46,0.00,3518359110686.706055,3518359100151.072754,238,2,122.166643,0.033551,9537783,6549987,0,0,10229,0,1,1 +1774039548.438644,29.29,4,3992.50,57.57,1412.50,2254.15,0.00,3518603633203.275879,3518603633205.284668,11,0,121.174212,0.041312,9550137,6552971,0,0,10231,0,1,1 +1774039553.439213,28.76,4,3992.50,57.51,1415.04,2251.64,0.00,1181.188469,11714.018882,46392,230820,120.548943,0.050626,9562243,6556857,0,0,10234,0,1,1 +1774039558.438378,28.97,4,3992.50,57.71,1407.29,2259.58,0.00,4.061518,0.027251,47150,230855,119.583655,0.046552,9574360,6560345,0,0,10236,0,1,1 +1774039563.438561,28.83,4,3992.50,57.57,1412.89,2253.84,0.00,3518308710393.770996,0.029882,46392,230845,119.358909,0.052565,9586411,6564329,0,0,10239,0,1,1 +1774039568.438789,28.91,4,3992.50,57.56,1413.16,2253.54,0.00,4.060655,0.071383,47150,230921,120.158224,0.057567,9598501,6568568,0,0,10241,0,1,1 +1774039573.438613,28.84,4,3992.50,57.82,1402.94,2263.78,0.00,3518560742254.516602,3518560731723.873047,199,0,120.167117,0.044558,9610625,6571985,0,0,10244,0,1,1 +1774039578.434530,12.54,4,3992.50,54.69,1525.67,2141.14,0.00,3521312364654.337891,0.000000,11,0,97.213789,0.043915,9620499,6575274,0,0,10246,0,1,1 +1774039583.439247,0.90,4,3992.50,52.64,1605.95,2060.86,0.00,1184.339162,11704.693264,47159,230968,0.004950,0.006654,9620613,6575413,0,0,10249,0,1,1 +1774039588.438881,13.67,4,3992.50,52.74,1601.86,2064.91,0.00,3518695175204.651855,3518695164673.550781,70,0,16.127558,0.093789,9627043,6580390,0,0,10251,0,1,1 +1774039593.439212,13.09,4,3992.50,52.82,1598.70,2068.09,0.00,0.126945,0.000000,199,0,20.124943,0.100176,9634585,6586258,0,0,10254,0,1,1 +1774039598.438797,3.71,4,3992.50,51.54,1648.77,2017.99,0.00,3518729452031.440430,0.000000,11,0,4.037582,0.029301,9636372,6587678,0,0,10256,0,1,1 +1774039603.434610,0.65,4,3992.50,51.54,1649.00,2017.77,0.00,1.493145,0.022089,221,22,0.003368,0.005865,9636454,6587795,0,0,10259,0,1,1 +1774039608.436779,0.55,4,3992.50,51.55,1648.40,2018.40,0.00,3516911429916.806152,3516911429918.275391,11,0,0.003663,0.006973,9636548,6587933,0,0,10261,0,1,1 +1774039613.436678,0.70,4,3992.50,51.55,1648.51,2018.29,0.00,0.176957,0.000000,199,0,0.003408,0.005865,9636633,6588050,0,0,10264,0,1,1 +1774039618.434668,0.60,4,3992.50,51.49,1651.04,2015.76,0.00,3519852193688.708496,0.000000,11,0,0.003867,0.007100,9636732,6588188,0,0,10266,0,1,1 +1774039623.439381,0.60,4,3992.50,51.49,1651.05,2015.76,0.00,2.006897,0.000195,238,2,0.003379,0.005847,9636815,6588304,0,0,10269,0,1,1 +1774039628.438105,0.70,4,3992.50,51.50,1650.57,2016.22,0.00,3519335817084.361816,3519335817086.321289,70,0,0.003967,0.007267,9636922,6588453,0,0,10271,0,1,1 +1774039633.438597,0.60,4,3992.50,51.50,1650.59,2016.20,0.00,3518090299145.786133,0.000000,11,0,0.002763,0.005627,9636993,6588563,0,0,10274,0,1,1 +1774039638.435420,21.18,4,3992.50,52.15,1620.37,2041.76,0.00,0.050032,0.000000,70,0,0.035046,84.182045,9639369,6597640,0,0,10276,0,1,1 +1774039643.436221,28.93,4,3992.50,51.63,1638.60,2021.40,0.00,0.126933,0.000000,199,0,0.076695,120.174584,9645210,6610532,0,0,10279,0,1,1 +1774039648.438415,1.55,4,3992.50,51.27,1652.49,2007.46,0.00,3516894047824.869141,0.000000,11,0,0.003915,0.806211,9645341,6610736,0,0,10281,0,1,1 +1774039653.438607,14.55,4,3992.50,51.52,1645.78,2016.97,0.00,2.008712,0.000195,238,2,40.071831,0.032150,9650061,6612596,0,0,10284,0,1,1 +1774039658.434599,0.70,4,3992.50,51.34,1652.50,2010.24,0.00,3521259749284.113770,3521259749285.947266,199,0,0.004558,0.009313,9650174,6612756,0,0,10286,0,1,1 +1774039663.434606,0.65,4,3992.50,51.34,1652.52,2010.23,0.00,1205.019319,11911.237509,47284,234002,0.003395,0.005827,9650258,6612870,0,0,10289,0,1,1 +1774039668.438812,0.55,4,3992.50,51.37,1651.30,2011.44,0.00,3515479722475.968262,3515479711777.443359,221,22,0.003812,0.007104,9650353,6613009,0,0,10291,0,1,1 +1774039673.439167,0.65,4,3992.50,51.18,1659.12,2003.62,0.00,3518187905161.461914,3518187905162.754883,199,0,0.003357,0.005865,9650434,6613126,0,0,10294,0,1,1 +1774039678.438869,0.70,4,3992.50,51.16,1659.54,2003.21,0.00,1.315020,0.022072,221,22,0.003840,0.007098,9650531,6613264,0,0,10296,0,1,1 +1774039683.438868,0.60,4,3992.50,51.17,1659.20,2003.55,0.00,3518438410076.758301,3518438410078.051270,199,0,0.003441,0.005892,9650619,6613383,0,0,10299,0,1,1 +1774039688.438393,0.65,4,3992.50,51.20,1657.99,2004.75,0.00,3518771284547.549316,0.000000,11,0,0.003222,0.006873,9650704,6613515,0,0,10301,0,1,1 +1774039693.436826,0.55,4,3992.50,51.22,1657.27,2005.48,0.00,0.000000,0.000000,11,0,0.002768,0.004441,9650771,6613605,0,0,10304,0,1,1 +1774039698.438834,11.30,4,3992.50,51.34,1651.25,2009.99,0.00,1.491296,0.022061,221,22,0.033277,40.052686,9653008,6618072,0,0,10306,0,1,1 +1774039703.436269,0.65,4,3992.50,51.30,1652.69,2008.56,0.00,3520243802225.353027,3520243802226.773926,70,0,0.002034,0.005720,9653067,6618183,0,0,10309,0,1,1 +1774039708.439216,0.55,4,3992.50,51.33,1651.46,2009.78,0.00,3516364431607.108398,0.000000,11,0,0.002262,0.006352,9653135,6618305,0,0,10311,0,1,1 +1774039713.434533,0.45,4,3992.50,51.34,1651.23,2010.01,0.00,1206.327748,11968.067307,47284,234612,0.001808,0.005104,9653189,6618404,0,0,10314,0,1,1 +1774039718.439330,0.55,4,3992.50,51.34,1651.00,2010.25,0.00,3515064505189.422363,0.024586,46526,234595,0.002261,0.006350,9653257,6618526,0,0,10316,0,1,1 +1774039723.438924,0.40,4,3992.50,51.35,1650.76,2010.48,0.00,0.000000,0.003907,46526,234599,0.001793,0.005099,9653310,6618625,0,0,10319,0,1,1 +1774039728.434609,0.55,4,3992.50,51.35,1650.77,2010.48,0.00,0.000000,6.012219,46526,234634,0.002261,0.006357,9653378,6618747,0,0,10321,0,1,1 +1774039733.439216,0.35,4,3992.50,51.35,1650.77,2010.48,0.00,3515198871498.002441,3515198860746.151367,11,0,0.001867,0.005156,9653437,6618850,0,0,10324,0,1,1 +1774039738.438730,0.45,4,3992.50,51.35,1650.77,2010.48,0.00,1.492039,0.022072,221,22,0.002327,0.006388,9653510,6618974,0,0,10326,0,1,1 +1774039743.439095,0.30,4,3992.50,51.35,1650.77,2010.47,0.00,3518180641336.622070,3518180641338.091797,11,0,0.002476,0.006559,9653593,6619111,0,0,10329,0,1,1 +1774039748.437114,0.55,4,3992.50,51.35,1650.79,2010.46,0.00,1.492486,0.022079,221,22,0.002321,0.006384,9653665,6619235,0,0,10331,0,1,1 +1774039753.434542,0.45,4,3992.50,51.27,1653.93,2007.31,0.00,3520247686347.787598,3520247686349.258301,11,0,0.001845,0.005101,9653722,6619334,0,0,10334,0,1,1 +1774039758.439420,0.40,4,3992.50,51.30,1652.71,2008.54,0.00,1199.966345,11951.324963,46526,234711,0.002287,0.006350,9653792,6619456,0,0,10336,0,1,1 +1774039763.434645,38.55,4,3992.50,57.61,1410.79,2255.57,0.00,4.064722,0.036070,47284,234773,87.010864,0.036201,9662991,6621771,0,0,10339,0,1,1 +1774039768.434557,29.73,4,3992.50,58.11,1391.23,2275.12,0.00,3518498981260.966309,3518498970502.904785,70,0,118.767118,0.022500,9675236,6623357,0,0,10341,0,1,1 +1774039773.437737,29.28,4,3992.50,57.86,1401.19,2265.21,0.00,1.440978,0.022056,221,22,119.491129,0.024219,9687532,6625067,0,0,10344,0,1,1 +1774039778.439887,31.72,4,3992.50,57.76,1404.84,2261.59,0.00,1203.188398,11957.972998,47284,234874,119.423442,0.052589,9699920,6629133,0,0,10346,0,1,1 +1774039783.439322,28.50,4,3992.50,57.51,1414.79,2251.60,0.00,3518835197089.772949,3518835186328.606445,238,2,118.901629,0.090025,9712440,6636103,0,0,10349,0,1,1 +1774039788.439189,28.98,4,3992.50,57.86,1401.09,2265.35,0.00,3518530506939.996094,3518530506941.828125,199,0,119.999023,0.103279,9725345,6644068,0,0,10351,0,1,1 +1774039793.436752,28.80,4,3992.50,57.99,1395.91,2270.52,0.00,0.000000,0.000000,199,0,118.435797,0.062114,9737807,6648714,0,0,10354,0,1,1 +1774039798.434767,29.82,4,3992.50,57.64,1409.80,2256.57,0.00,3519834532506.810547,0.000000,11,0,120.220326,0.031669,9750364,6650911,0,0,10356,0,1,1 +1774039803.439187,14.33,4,3992.50,53.76,1561.71,2104.79,0.00,0.000000,0.000000,11,0,103.254172,0.025140,9761045,6652796,0,0,10359,0,1,1 +1774039808.434543,0.70,4,3992.50,53.00,1591.30,2075.20,0.00,1202.425850,11974.767799,46550,235025,0.005432,0.007895,9761175,6652956,0,0,10361,0,1,1 +1774039813.437478,8.33,4,3992.50,53.00,1591.57,2074.89,0.00,3516373083319.764648,3516373072563.743652,11,0,8.066740,0.048464,9764134,6655196,0,0,10364,0,1,1 +1774039818.434593,17.77,4,3992.50,52.47,1612.18,2054.25,0.00,0.050029,0.000000,70,0,32.199453,0.133898,9774303,6662728,0,0,10366,0,1,1 +1774039823.439251,5.31,4,3992.50,51.83,1637.32,2029.15,0.00,1204.197911,11952.947309,47308,236030,0.028026,12.823658,9775548,6664593,0,0,10369,0,1,1 +1774039828.438434,31.80,4,3992.50,52.13,1618.98,2041.03,0.00,3519012063636.804199,3519012052874.863281,221,22,0.034151,122.602702,9778000,6677653,0,0,10371,0,1,1 +1774039833.434517,19.49,4,3992.50,51.82,1631.49,2028.88,0.00,0.517300,3521196122384.203613,238,2,0.012075,69.755918,9778802,6685053,0,0,10374,0,1,1 +1774039838.439023,0.90,4,3992.50,51.12,1659.02,2001.35,0.00,3515268955325.221680,3515268955327.228027,11,0,0.008002,0.011240,9778952,6685258,0,0,10376,0,1,1 +1774039843.435536,11.89,4,3992.50,53.90,1552.61,2110.38,0.00,0.050035,0.000000,70,0,40.093063,0.023511,9783421,6686674,0,0,10379,0,1,1 +1774039848.434523,0.65,4,3992.50,52.63,1602.29,2060.69,0.00,0.000000,0.000000,70,0,0.006577,0.011407,9783569,6686863,0,0,10381,0,1,1 +1774039853.434577,0.40,4,3992.50,51.93,1629.75,2033.23,0.00,1220.987016,12169.788271,46672,237661,0.004163,0.007770,9783682,6687022,0,0,10384,0,1,1 +1774039858.439008,0.45,4,3992.50,51.80,1634.91,2028.07,0.00,3515321841563.110352,3515321830623.934570,11,0,0.004481,0.006251,9783790,6687151,0,0,10386,0,1,1 +1774039863.438231,0.40,4,3992.50,51.78,1635.51,2027.48,0.00,0.050008,0.000000,70,0,0.003879,0.007133,9783890,6687292,0,0,10389,0,1,1 +1774039868.438843,0.40,4,3992.50,51.80,1635.03,2027.96,0.00,1224.911369,12168.793923,47430,237985,0.003903,0.007153,9783992,6687434,0,0,10391,0,1,1 +1774039873.434540,0.55,4,3992.50,51.58,1643.70,2019.31,0.00,3521468089980.806641,0.126574,46672,238022,0.003889,0.007147,9784093,6687576,0,0,10394,0,1,1 +1774039878.434699,0.40,4,3992.50,51.57,1643.86,2019.15,0.00,3518324947060.783691,3518324936111.725098,70,0,0.004800,0.007767,9784195,6687717,0,0,10396,0,1,1 +1774039883.438266,0.45,4,3992.50,51.57,1643.97,2019.04,0.00,1224.187887,12161.844069,47430,238138,0.003480,0.005936,9784285,6687840,0,0,10399,0,1,1 +1774039888.434669,0.40,4,3992.50,51.57,1643.99,2019.02,0.00,3520969836332.181641,3520969825378.717773,199,0,0.004551,0.008037,9784388,6687981,0,0,10401,0,1,1 +1774039893.435319,0.45,4,3992.50,51.57,1643.79,2019.22,0.00,3517980018532.228516,0.000000,70,0,0.003983,0.007215,9784495,6688128,0,0,10404,0,1,1 +1774039898.438652,0.40,4,3992.50,51.57,1643.79,2019.21,0.00,0.000000,0.000000,70,0,0.003896,0.007113,9784597,6688268,0,0,10406,0,1,1 +1774039903.438496,0.35,4,3992.50,51.57,1643.86,2019.14,0.00,0.126957,0.000000,199,0,0.003446,0.005909,9784685,6688388,0,0,10409,0,1,1 +1774039908.434627,0.35,4,3992.50,51.57,1643.95,2019.06,0.00,1221.818837,12180.072737,46672,238258,0.003881,0.007115,9784785,6688527,0,0,10411,0,1,1 +1774039913.439267,0.40,4,3992.50,51.57,1643.96,2019.05,0.00,4.057074,0.056198,47430,238326,0.003874,0.007126,9784885,6688668,0,0,10414,0,1,1 +1774039918.438525,10.95,4,3992.50,51.92,1628.74,2032.70,0.00,3518959678862.280762,3518959667915.062500,11,0,0.023059,40.072651,9786343,6693085,0,0,10416,0,1,1 +1774039923.439065,0.75,4,3992.50,51.48,1645.92,2015.45,0.00,1224.978724,12203.466171,47430,238598,0.003055,0.007062,9786436,6693228,0,0,10419,0,1,1 +1774039928.439126,0.40,4,3992.50,51.51,1644.70,2016.68,0.00,3518394167144.250977,3518394156162.702637,238,2,0.002289,0.006356,9786506,6693350,0,0,10421,0,1,1 +1774039933.439088,0.40,4,3992.50,51.31,1652.34,2009.03,0.00,3518463978059.005859,3518463978060.837891,199,0,0.002276,0.006366,9786575,6693473,0,0,10424,0,1,1 +1774039938.439342,0.40,4,3992.50,51.33,1651.88,2009.49,0.00,1.831743,0.000195,238,2,0.002072,0.005710,9786639,6693582,0,0,10426,0,1,1 +1774039943.439217,0.45,4,3992.50,51.32,1651.88,2009.49,0.00,3518525416905.982910,3518525416907.991699,11,0,0.002060,0.005745,9786702,6693694,0,0,10429,0,1,1 +1774039948.437129,0.40,4,3992.50,51.32,1651.89,2009.49,0.00,1.492518,0.022080,221,22,0.002298,0.006367,9786773,6693817,0,0,10431,0,1,1 +1774039953.435346,0.55,4,3992.50,51.33,1651.64,2009.73,0.00,3519691767111.238770,3519691767112.709473,11,0,0.002302,0.006387,9786844,6693941,0,0,10434,0,1,1 +1774039958.439470,0.45,4,3992.50,51.33,1651.65,2009.73,0.00,1.490665,0.022052,221,22,0.002337,0.006413,9786918,6694067,0,0,10436,0,1,1 +1774039963.439219,0.35,4,3992.50,51.33,1651.66,2009.71,0.00,0.516920,3518613558276.104980,238,2,0.001919,0.005192,9786981,6694172,0,0,10439,0,1,1 +1774039968.435877,0.40,4,3992.50,51.33,1651.66,2009.71,0.00,3520790782878.781250,3520790782880.791016,11,0,0.002458,0.006486,9787062,6694304,0,0,10441,0,1,1 +1774039973.438875,0.50,4,3992.50,51.33,1651.66,2009.71,0.00,2.007585,0.000195,238,2,0.002295,0.006370,9787133,6694428,0,0,10444,0,1,1 +1774039978.439259,0.40,4,3992.50,51.15,1658.84,2002.53,0.00,3518167349261.933105,3518167349263.941895,11,0,0.002289,0.006356,9787203,6694550,0,0,10446,0,1,1 +1774039983.440303,8.88,4,3992.50,57.49,1414.36,2250.85,0.00,0.000000,0.000000,11,0,2.609045,0.011211,9787687,6694968,0,0,10449,0,1,1 +1774039988.438437,38.35,4,3992.50,57.63,1409.95,2256.38,0.00,0.050019,0.000000,70,0,113.200598,0.048218,9799316,6698388,0,0,10451,0,1,1 +1774039993.437706,28.61,4,3992.50,57.51,1414.57,2251.77,0.00,1225.240352,12212.874886,47430,238849,119.179941,0.042878,9811386,6701687,0,0,10454,0,1,1 +1774039998.438495,28.36,4,3992.50,57.84,1401.69,2264.73,0.00,3517881952206.516602,3517881941222.272949,11,0,119.544248,0.034457,9823521,6704243,0,0,10456,0,1,1 +1774040003.438664,28.38,4,3992.50,57.59,1411.33,2254.84,0.00,0.000000,0.000000,11,0,118.759432,0.032317,9835697,6706679,0,0,10459,0,1,1 +1774040008.437817,28.73,4,3992.50,57.56,1412.74,2253.64,0.00,0.000000,0.000000,11,0,119.584157,0.051109,9847819,6710489,0,0,10461,0,1,1 +1774040013.434700,28.63,4,3992.50,57.53,1413.72,2252.61,0.00,1221.811954,12218.697636,46672,238868,118.839252,0.044039,9859938,6713629,0,0,10464,0,1,1 +1774040018.439432,28.75,4,3992.50,57.79,1403.88,2262.48,0.00,4.057000,0.164688,47430,238906,119.850072,0.049724,9872071,6717391,0,0,10466,0,1,1 +1774040023.438442,28.71,4,3992.50,57.80,1403.32,2263.05,0.00,3519134526089.310547,3519134526093.369141,46672,238893,118.984971,0.045139,9884010,6720764,0,0,10469,0,1,1 +1774040028.434541,7.04,4,3992.50,51.35,1656.12,2010.32,0.00,3521184293392.185547,3521184282393.235840,199,0,74.963344,0.028364,9891675,6722840,0,0,10471,0,1,1 +1774040033.434603,1.40,4,3992.50,51.35,1655.75,2010.66,0.00,3518392951018.092285,0.000000,11,0,0.008394,0.006954,9891835,6722988,0,0,10474,0,1,1 +1774040038.438585,22.64,4,3992.50,52.71,1602.71,2063.68,0.00,1.490708,0.022053,221,22,36.189572,0.160477,9903617,6731806,0,0,10476,0,1,1 +1774040043.439246,5.66,4,3992.50,52.29,1619.14,2047.18,0.00,1219.542512,12210.129232,46685,239758,4.039065,0.028936,9905150,6732942,0,0,10479,0,1,1 +1774040048.439209,0.75,4,3992.50,51.88,1635.00,2031.34,0.00,3518463342104.193359,3518463331113.365234,199,0,0.004089,0.007227,9905249,6733080,0,0,10481,0,1,1 +1774040053.438921,0.40,4,3992.50,51.86,1636.01,2030.34,0.00,1.315017,0.022072,221,22,0.003878,0.007133,9905349,6733221,0,0,10484,0,1,1 +1774040058.437005,0.35,4,3992.50,51.86,1636.03,2030.33,0.00,1220.171371,12217.219654,46685,240307,0.003880,0.007125,9905449,6733361,0,0,10486,0,1,1 +1774040063.439414,0.50,4,3992.50,51.87,1635.59,2030.77,0.00,3516742492971.383789,3516742481985.314453,11,0,0.003838,0.007129,9905546,6733502,0,0,10489,0,1,1 +1774040068.438537,0.40,4,3992.50,51.87,1635.59,2030.75,0.00,2.009141,0.000195,238,2,0.003429,0.005864,9905633,6733619,0,0,10491,0,1,1 +1774040073.439293,0.35,4,3992.50,51.87,1635.62,2030.74,0.00,1223.062809,12210.989070,47443,240429,0.003928,0.007193,9905737,6733764,0,0,10494,0,1,1 +1774040078.434726,0.40,4,3992.50,51.87,1635.62,2030.74,0.00,3521654376792.529297,0.006940,46685,240443,0.003970,0.007222,9905844,6733910,0,0,10496,0,1,1 +1774040083.439183,0.30,4,3992.50,51.87,1635.65,2030.70,0.00,4.057223,0.059322,47443,240478,0.003862,0.007126,9905943,6734051,0,0,10499,0,1,1 +1774040088.439447,0.40,4,3992.50,51.87,1635.68,2030.69,0.00,3518251398060.752930,3518251398064.795410,46685,240463,0.003420,0.005855,9906029,6734167,0,0,10501,0,1,1 +1774040093.434532,0.45,4,3992.50,51.87,1635.69,2030.67,0.00,3521899350948.156738,3521899339944.182129,221,22,0.003965,0.007187,9906135,6734312,0,0,10504,0,1,1 +1774040098.434545,0.35,4,3992.50,51.83,1636.94,2029.43,0.00,0.000000,0.000000,221,22,0.003878,0.007110,9906235,6734451,0,0,10506,0,1,1 +1774040103.438894,0.45,4,3992.50,51.84,1636.68,2029.68,0.00,1218.643657,12202.351539,46685,240570,0.003875,0.007126,9906335,6734592,0,0,10509,0,1,1 +1774040108.434669,0.35,4,3992.50,51.85,1636.47,2029.88,0.00,3521412772579.249023,3521412761578.161133,11,0,0.003411,0.005860,9906420,6734708,0,0,10511,0,1,1 +1774040113.434542,0.70,4,3992.50,51.85,1636.50,2029.87,0.00,1225.287615,12213.461572,47443,240727,0.003866,0.007133,9906519,6734849,0,0,10514,0,1,1 +1774040118.439048,0.30,4,3992.50,51.85,1636.50,2029.85,0.00,3515269344649.209961,3515269333671.032227,199,0,0.003883,0.007124,9906620,6734990,0,0,10516,0,1,1 +1774040123.435310,0.65,4,3992.50,52.21,1622.16,2044.20,0.00,1.315925,0.022087,221,22,0.006288,0.008778,9906758,6735172,0,0,10519,0,1,1 +1774040128.439372,26.64,4,3992.50,51.93,1627.07,2033.00,0.00,3515581295479.260254,3515581295480.678711,70,0,0.064216,109.072163,9911610,6746725,0,0,10521,0,1,1 +1774040133.438896,23.44,4,3992.50,51.90,1628.73,2032.09,0.00,1.442032,0.022072,221,22,0.020639,95.944155,9913150,6756711,0,0,10524,0,1,1 +1774040138.439422,12.66,4,3992.50,56.73,1442.01,2221.00,0.00,0.000000,0.000000,221,22,23.441285,0.026494,9915920,6758030,0,0,10526,0,1,1 +1774040143.439205,2.10,4,3992.50,52.52,1606.70,2056.30,0.00,3518589950871.525391,3518589950872.945312,70,0,16.629440,0.010058,9917773,6758442,0,0,10529,0,1,1 +1774040148.438401,3.72,4,3992.50,52.28,1616.15,2046.84,0.00,3519003512969.083008,0.000000,11,0,0.015602,11.230554,9918657,6759968,0,0,10531,0,1,1 +1774040153.434546,7.79,4,3992.50,51.78,1634.44,2027.38,0.00,0.050039,0.000000,70,0,0.014903,28.871079,9919607,6763036,0,0,10534,0,1,1 +1774040158.434609,0.50,4,3992.50,51.78,1634.61,2027.21,0.00,3518392954536.567871,0.000000,11,0,0.003998,0.007679,9919700,6763173,0,0,10536,0,1,1 +1774040163.439416,0.40,4,3992.50,51.77,1634.79,2027.03,0.00,0.000000,0.000000,11,0,0.002287,0.006347,9919770,6763295,0,0,10539,0,1,1 +1774040168.438783,0.30,4,3992.50,51.77,1634.86,2026.95,0.00,0.176976,0.000000,199,0,0.002310,0.006396,9919842,6763420,0,0,10541,0,1,1 +1774040173.435093,0.50,4,3992.50,51.78,1634.40,2027.41,0.00,1.315913,0.022087,221,22,0.001832,0.005102,9919898,6763519,0,0,10544,0,1,1 +1774040178.434655,0.30,4,3992.50,51.78,1634.41,2027.41,0.00,3518745586114.882324,3518745586116.352539,11,0,0.003211,0.007026,9919970,6763644,0,0,10546,0,1,1 +1774040183.437314,0.45,4,3992.50,51.78,1634.41,2027.41,0.00,0.000000,0.000000,11,0,0.002275,0.006350,9920039,6763766,0,0,10549,0,1,1 +1774040188.439200,0.45,4,3992.50,51.78,1634.41,2027.40,0.00,0.000000,0.000000,11,0,0.002351,0.006447,9920114,6763894,0,0,10551,0,1,1 +1774040193.436074,0.45,4,3992.50,51.78,1634.42,2027.40,0.00,0.177064,0.000000,199,0,0.001920,0.005195,9920177,6763999,0,0,10554,0,1,1 +1774040198.436280,0.45,4,3992.50,51.78,1634.42,2027.39,0.00,0.000000,0.000000,199,0,0.002007,0.005222,9920245,6764108,0,0,10556,0,1,1 +1774040203.439046,0.45,4,3992.50,51.78,1634.43,2027.39,0.00,1244.134423,12451.940709,47616,242703,0.002325,0.006425,9920318,6764235,0,0,10559,0,1,1 +1774040208.438952,0.40,4,3992.50,51.78,1634.59,2027.23,0.00,3518503123980.917969,3518503112765.410645,221,22,0.001831,0.005089,9920374,6764333,0,0,10561,0,1,1 +1774040213.437964,12.78,4,3992.50,57.72,1405.43,2259.93,0.00,3519132432497.112793,3519132432498.533203,70,0,5.615302,0.015444,9921183,6765010,0,0,10564,0,1,1 +1774040218.434798,35.26,4,3992.50,57.66,1408.71,2257.56,0.00,3520666673166.332520,0.000000,11,0,118.039010,0.055785,9933188,6768963,0,0,10566,0,1,1 +1774040223.434552,28.09,4,3992.50,57.78,1404.17,2262.18,0.00,0.050002,0.000000,70,0,118.769054,0.043118,9945247,6772214,0,0,10569,0,1,1 +1774040228.438505,27.66,4,3992.50,57.78,1404.02,2262.30,0.00,1239.906757,12449.080604,46858,242820,120.069578,0.046978,9957436,6775718,0,0,10571,0,1,1 +1774040233.437248,27.71,4,3992.50,57.64,1409.45,2256.87,0.00,0.000000,0.006838,46858,242832,119.799129,0.025778,9969870,6777514,0,0,10574,0,1,1 +1774040238.435390,27.79,4,3992.50,57.82,1402.52,2263.79,0.00,4.062350,0.028429,47616,242870,118.613318,0.026196,9982245,6779283,0,0,10576,0,1,1 +1774040243.438451,27.81,4,3992.50,57.78,1404.17,2262.14,0.00,3516284329506.395996,3516284318297.276367,238,2,120.091356,0.041675,9994479,6782451,0,0,10579,0,1,1 +1774040248.434709,27.84,4,3992.50,57.66,1409.00,2257.38,0.00,1239.857563,12468.440503,46858,242873,118.251057,0.027867,10006536,6784491,0,0,10581,0,1,1 +1774040253.439138,27.67,4,3992.50,57.64,1407.64,2256.71,0.00,3515323693885.372559,3515323682675.120605,238,2,120.064843,0.036269,10019032,6787107,0,0,10584,0,1,1 +1774040258.437633,5.07,4,3992.50,51.45,1652.11,2014.28,0.00,3519496599882.534180,3519496599884.543457,11,0,66.113174,0.031739,10025863,6789360,0,0,10586,0,1,1 +1774040263.434627,1.66,4,3992.50,51.40,1654.08,2012.32,0.00,0.000000,0.000000,11,0,0.011821,0.007828,10026073,6789543,0,0,10589,0,1,1 +1774040268.439385,18.75,4,3992.50,52.98,1592.16,2074.23,0.00,0.000000,0.000000,11,0,26.164234,0.125755,10034704,6795960,0,0,10591,0,1,1 +1774040273.439063,9.04,4,3992.50,51.42,1652.98,2013.38,0.00,0.000000,0.000000,11,0,14.064332,0.059697,10039225,6799246,0,0,10594,0,1,1 +1774040278.437004,0.75,4,3992.50,51.41,1653.46,2012.91,0.00,0.177026,0.000000,199,0,0.004604,0.008531,10039343,6799411,0,0,10596,0,1,1 +1774040283.434932,0.45,4,3992.50,51.45,1652.05,2014.34,0.00,3519896127686.255371,0.000000,11,0,0.003422,0.005868,10039429,6799528,0,0,10599,0,1,1 +1774040288.438827,0.40,4,3992.50,51.45,1652.08,2014.32,0.00,1244.165309,12450.414134,47627,244185,0.003875,0.007129,10039529,6799669,0,0,10601,0,1,1 +1774040293.439176,0.40,4,3992.50,51.45,1652.08,2014.30,0.00,3518191660376.598145,3518191649162.401367,11,0,0.003890,0.007132,10039630,6799810,0,0,10604,0,1,1 +1774040298.439273,0.50,4,3992.50,51.47,1651.37,2015.04,0.00,0.000000,0.000000,11,0,0.005046,0.008127,10039744,6799974,0,0,10606,0,1,1 +1774040303.439425,24.75,4,3992.50,52.22,1616.52,2044.47,0.00,0.176948,0.000000,199,0,0.059072,102.559021,10044124,6811111,0,0,10609,0,1,1 +1774040308.438429,25.48,4,3992.50,51.89,1628.39,2031.70,0.00,3519138411288.025879,0.000000,11,0,0.074761,102.592587,10049754,6822273,0,0,10611,0,1,1 +1774040313.438400,12.26,4,3992.50,56.46,1452.12,2210.50,0.00,0.000000,0.000000,11,0,10.025525,0.021762,10051215,6823296,0,0,10614,0,1,1 +1774040318.437369,4.57,4,3992.50,51.70,1638.68,2023.99,0.00,1261.072906,12668.474566,47065,245791,30.053521,0.013672,10054448,6823992,0,0,10616,0,1,1 +1774040323.438553,0.75,4,3992.50,51.70,1638.45,2024.20,0.00,4.059878,0.113645,47823,245840,0.004528,0.009364,10054559,6824157,0,0,10619,0,1,1 +1774040328.438861,0.50,4,3992.50,51.50,1646.14,2016.52,0.00,3518220958761.816406,3518220947359.407227,238,2,0.003878,0.007097,10054659,6824295,0,0,10621,0,1,1 +1774040333.439240,0.35,4,3992.50,51.50,1646.17,2016.51,0.00,3518170629352.806641,3518170629354.638672,199,0,0.003428,0.005898,10054746,6824415,0,0,10624,0,1,1 +1774040338.438929,0.40,4,3992.50,51.50,1646.18,2016.49,0.00,3518655699808.702637,0.000000,11,0,0.003866,0.007123,10054845,6824555,0,0,10626,0,1,1 +1774040343.435220,0.40,4,3992.50,51.50,1646.20,2016.48,0.00,2.010280,0.000195,238,2,0.003856,0.007138,10054943,6824696,0,0,10629,0,1,1 +1774040348.438643,0.40,4,3992.50,51.50,1646.21,2016.46,0.00,3516030490229.916016,3516030490231.873047,70,0,0.003443,0.005870,10055031,6824813,0,0,10631,0,1,1 +1774040353.439318,0.40,4,3992.50,51.50,1646.21,2016.45,0.00,1264.652746,12664.542019,47823,246090,0.003407,0.005864,10055116,6824930,0,0,10634,0,1,1 +1774040358.439275,0.30,4,3992.50,51.50,1646.25,2016.43,0.00,3518467348217.018555,3518467336815.541016,11,0,0.003501,0.005943,10055207,6825053,0,0,10636,0,1,1 +1774040363.439034,0.30,4,3992.50,51.51,1645.76,2016.92,0.00,0.050002,0.000000,70,0,0.000619,0.001297,10055231,6825080,0,0,10639,0,1,1 +1774040368.436832,0.25,4,3992.50,51.51,1645.76,2016.92,0.00,1.959652,0.000195,238,2,0.000259,0.000020,10055247,6825082,0,0,10641,0,1,1 +1774040373.435171,0.25,4,3992.50,51.51,1645.77,2016.91,0.00,1259.222448,12670.531069,47065,246173,0.000149,0.000030,10055256,6825085,0,0,10644,0,1,1 +1774040378.439123,0.25,4,3992.50,51.51,1645.77,2016.91,0.00,3515658481783.916992,3515658470387.367188,70,0,0.000042,0.000020,10055259,6825087,0,0,10646,0,1,1 +1774040383.439387,0.20,4,3992.50,51.51,1645.77,2016.90,0.00,1264.756788,12665.701784,47823,246205,0.000051,0.000030,10055262,6825090,0,0,10649,0,1,1 +1774040388.434664,0.20,4,3992.50,51.51,1645.78,2016.90,0.00,3521763908069.063965,3521763896654.775879,238,2,0.000089,0.000020,10055268,6825092,0,0,10651,0,1,1 +1774040393.437981,0.40,4,3992.50,51.51,1645.79,2016.88,0.00,3516105114190.269531,3516105114192.276855,11,0,0.003937,0.007211,10055373,6825241,0,0,10654,0,1,1 +1774040398.436569,9.89,4,3992.50,51.74,1635.61,2025.68,0.00,1261.193101,12694.270276,47068,246425,0.023910,38.875157,10056920,6829546,0,0,10656,0,1,1 +1774040403.439400,2.20,4,3992.50,51.84,1631.83,2029.46,0.00,0.014055,9.834177,47078,246541,0.004681,1.211549,10057077,6829883,0,0,10659,0,1,1 +1774040408.439073,0.70,4,3992.50,51.85,1631.12,2030.18,0.00,4.061106,0.132431,47836,246655,0.002289,0.006356,10057147,6830005,0,0,10661,0,1,1 +1774040413.434579,0.90,4,3992.50,51.85,1631.37,2029.93,0.00,3521602514112.488770,3521602502664.982910,221,22,0.001845,0.005103,10057204,6830104,0,0,10664,0,1,1 +1774040418.438694,0.70,4,3992.50,51.85,1631.37,2029.92,0.00,0.516469,3515543658411.401367,238,2,0.002295,0.006359,10057275,6830227,0,0,10666,0,1,1 +1774040423.434536,0.45,4,3992.50,51.85,1631.38,2029.92,0.00,3521366046635.981445,3521366046637.814941,199,0,0.001083,0.001285,10057294,6830253,0,0,10669,0,1,1 +1774040428.436168,0.55,4,3992.50,51.85,1631.38,2029.92,0.00,0.000000,0.000000,199,0,0.000125,0.000020,10057295,6830255,0,0,10671,0,1,1 +1774040433.435392,0.45,4,3992.50,51.81,1632.82,2028.47,0.00,1264.931308,12708.673172,47836,246710,0.000125,0.000030,10057296,6830258,0,0,10674,0,1,1 +1774040438.435097,0.60,4,3992.50,51.81,1632.82,2028.47,0.00,3518645219369.730469,3518645207925.256348,238,2,0.000000,0.000020,10057296,6830260,0,0,10676,0,1,1 +1774040443.434430,0.40,4,3992.50,51.82,1632.58,2028.71,0.00,3518906420567.141113,3518906420569.100098,70,0,0.000000,0.000030,10057296,6830263,0,0,10679,0,1,1 +1774040448.435907,0.55,4,3992.50,51.84,1631.60,2029.70,0.00,1.441469,0.022064,221,22,0.000829,0.000020,10057340,6830265,0,0,10681,0,1,1 +1774040453.436480,0.60,4,3992.50,51.84,1631.61,2029.69,0.00,1263.275341,12705.274110,47836,246744,0.004368,0.007690,10057440,6830416,0,0,10684,0,1,1 +1774040458.438700,0.70,4,3992.50,51.84,1631.61,2029.69,0.00,3516875453263.514160,3516875441824.745605,238,2,0.002919,0.005545,10057520,6830531,0,0,10686,0,1,1 +1774040463.439279,15.91,4,3992.50,57.75,1404.38,2260.98,0.00,1258.696490,12705.301487,47078,246754,9.018530,0.018929,10058685,6831415,0,0,10689,0,1,1 +1774040468.439002,34.01,4,3992.50,57.63,1409.52,2256.51,0.00,3518632248926.539062,3518632237479.982422,11,0,118.171907,0.050817,10070734,6834973,0,0,10691,0,1,1 +1774040473.435088,28.42,4,3992.50,57.52,1414.04,2251.94,0.00,0.177092,0.000000,199,0,118.255713,0.034597,10082760,6837442,0,0,10694,0,1,1 +1774040478.438734,28.53,4,3992.50,57.51,1414.24,2251.76,0.00,1.830501,0.000195,238,2,120.077057,0.041373,10095033,6840626,0,0,10696,0,1,1 +1774040483.438008,4.40,4,3992.50,58.85,1362.02,2304.00,0.00,0.000000,0.000000,238,2,12.257846,0.002145,10096320,6840788,0,0,10699,0,1,1 +1774040488.439117,1.36,4,3992.50,58.74,1366.32,2299.73,0.00,1258.563069,12704.114562,47078,246871,0.000446,0.000020,10096331,6840790,0,0,10701,0,1,1 +1774040493.439384,0.61,4,3992.50,58.77,1365.18,2300.93,0.00,4.060623,0.078511,47836,246909,0.000278,0.000030,10096341,6840793,0,0,10704,0,1,1 +1774040498.437307,0.51,4,3992.50,58.55,1373.86,2292.25,0.00,0.000000,0.005471,47836,246913,0.000286,0.000020,10096349,6840795,0,0,10706,0,1,1 +1774040503.438763,0.60,4,3992.50,58.56,1373.37,2292.74,0.00,3517412535399.644531,3517412523960.694824,199,0,0.000018,0.000030,10096350,6840798,0,0,10709,0,1,1 +1774040508.438419,0.45,4,3992.50,58.59,1372.14,2293.97,0.00,3518679317243.382812,0.000000,70,0,0.000546,0.000053,10096367,6840801,0,0,10711,0,1,1 +1774040513.434511,0.71,4,3992.50,58.59,1372.14,2293.97,0.00,3521189402210.622559,0.000000,11,0,0.002800,0.005753,10096428,6840903,0,0,10714,0,1,1 +1774040518.437129,1.31,4,3992.50,58.60,1371.90,2294.20,0.00,1264.249839,12700.404885,47836,246960,0.002926,0.007592,10096522,6841056,0,0,10716,0,1,1 +1774040523.434901,1.11,4,3992.50,58.59,1372.05,2294.05,0.00,0.025793,0.052856,47840,247003,0.004872,0.008418,10096633,6841211,0,0,10719,0,1,1 +1774040528.434496,1.16,4,3992.50,58.61,1371.32,2294.79,0.00,3518722198079.771484,3518722186634.665039,238,2,0.005420,0.007101,10096752,6841355,0,0,10721,0,1,1 +1774040533.438916,14.60,4,3992.50,57.74,1405.49,2260.57,0.00,3515329424954.772949,3515329424956.729980,70,0,59.060636,0.053331,10104845,6844809,0,0,10724,0,1,1 +1774040538.437968,33.22,4,3992.50,57.86,1400.76,2265.25,0.00,3519104619743.061035,0.000000,11,0,131.609596,0.057932,10118203,6849065,0,0,10726,0,1,1 +1774040543.435381,4.79,4,3992.50,58.49,1376.24,2289.86,0.00,1265.592498,12713.741617,47840,247057,13.474163,0.004199,10119635,6849399,0,0,10729,0,1,1 +1774040548.434747,0.55,4,3992.50,58.49,1376.02,2290.10,0.00,3518883557441.322754,3518883557445.381836,47082,247043,0.000372,0.000020,10119651,6849401,0,0,10731,0,1,1 +1774040553.437692,0.71,4,3992.50,58.49,1376.02,2290.10,0.00,3516366328769.059570,3516366317329.512207,11,0,0.000795,0.000030,10119665,6849404,0,0,10734,0,1,1 +1774040558.434621,0.56,4,3992.50,58.49,1376.03,2290.09,0.00,0.000000,0.000000,11,0,0.000355,0.000020,10119668,6849406,0,0,10736,0,1,1 +1774040563.435428,0.66,4,3992.50,58.49,1376.03,2290.09,0.00,0.176925,0.000000,199,0,0.000403,0.000030,10119683,6849409,0,0,10739,0,1,1 +1774040568.434507,0.41,4,3992.50,58.51,1375.29,2290.83,0.00,1.832173,0.000195,238,2,0.000502,0.000020,10119697,6849411,0,0,10741,0,1,1 +1774040573.435345,0.71,4,3992.50,58.51,1375.29,2290.83,0.00,3517848023512.112793,3517848023514.121094,11,0,0.001674,0.004506,10119751,6849502,0,0,10744,0,1,1 +1774040578.438215,0.71,4,3992.50,58.51,1375.30,2290.82,0.00,2.007636,0.000195,238,2,0.001925,0.004988,10119811,6849602,0,0,10746,0,1,1 +1774040583.438521,0.71,4,3992.50,58.51,1375.30,2290.82,0.00,3518222279274.911621,3518222279276.870117,70,0,0.003107,0.004743,10119883,6849700,0,0,10749,0,1,1 +1774040588.439168,0.81,4,3992.50,58.51,1375.30,2290.82,0.00,1264.723946,12705.667544,47840,247200,0.004465,0.006694,10119986,6849832,0,0,10751,0,1,1 +1774040593.438649,16.49,4,3992.50,57.55,1412.79,2253.19,0.00,3518802699320.973145,3518802687877.232910,199,0,64.917694,0.049691,10127426,6853329,0,0,10754,0,1,1 +1774040598.438388,34.04,4,3992.50,57.55,1412.83,2253.19,0.00,0.000000,0.000000,199,0,137.995898,0.063413,10141430,6858266,0,0,10756,0,1,1 +1774040603.434676,5.56,4,3992.50,58.77,1364.95,2301.12,0.00,3521051143592.115234,0.000000,70,0,14.079345,0.003960,10142908,6858581,0,0,10759,0,1,1 +1774040608.435063,0.56,4,3992.50,58.63,1370.57,2295.55,0.00,3518165500257.932129,0.000000,11,0,0.000278,0.000020,10142918,6858583,0,0,10761,0,1,1 +1774040613.434824,0.60,4,3992.50,58.64,1370.35,2295.77,0.00,1.491966,0.022071,221,22,0.000278,0.000030,10142928,6858586,0,0,10764,0,1,1 +1774040618.438842,0.45,4,3992.50,58.64,1370.12,2296.00,0.00,3515612178950.083008,3515612178951.374512,199,0,0.000000,0.000020,10142928,6858588,0,0,10766,0,1,1 +1774040623.438719,0.40,4,3992.50,58.67,1369.14,2296.98,0.00,1.314974,0.022071,221,22,0.000198,0.000030,10142940,6858591,0,0,10769,0,1,1 +1774040628.434873,0.35,4,3992.50,58.67,1368.90,2297.23,0.00,3521145543046.855469,3521145543048.276855,70,0,0.000353,0.000020,10142954,6858593,0,0,10771,0,1,1 +1774040633.437930,0.51,4,3992.50,58.67,1368.90,2297.22,0.00,1.957592,0.000195,238,2,0.002283,0.006308,10143024,6858713,0,0,10774,0,1,1 +1774040638.435242,0.46,4,3992.50,58.67,1368.91,2297.21,0.00,1259.545221,12714.239115,47082,247262,0.002737,0.007017,10143113,6858858,0,0,10776,0,1,1 +1774040643.439315,0.51,4,3992.50,58.67,1368.91,2297.21,0.00,4.057535,0.028492,47840,247292,0.001855,0.005126,10143171,6858959,0,0,10779,0,1,1 +1774040648.435336,0.51,4,3992.50,58.67,1368.92,2297.20,0.00,3521239306335.299805,3521239294882.221680,221,22,0.001944,0.005245,10143230,6859060,0,0,10781,0,1,1 +1774040653.439071,15.23,4,3992.50,57.94,1397.63,2268.40,0.00,3515810678918.146973,3515810678919.438965,199,0,64.943152,0.053672,10151801,6862506,0,0,10784,0,1,1 +1774040658.439444,30.29,4,3992.50,58.56,1373.31,2292.82,0.00,3518175045033.192383,0.000000,11,0,119.068700,0.029481,10162488,6864619,0,0,10786,0,1,1 +1774040663.434568,0.25,4,3992.50,58.84,1362.51,2303.62,0.00,1266.173923,12719.941201,47842,247376,11.808084,0.002437,10163583,6864813,0,0,10789,0,1,1 +1774040668.434527,0.30,4,3992.50,58.85,1362.02,2304.11,0.00,3518465793745.625488,3518465782302.757324,199,0,0.002837,0.000020,10163601,6864815,0,0,10791,0,1,1 +1774040673.434569,0.35,4,3992.50,58.86,1361.53,2304.60,0.00,1264.751747,12707.449780,47842,247393,0.000382,0.000030,10163608,6864818,0,0,10794,0,1,1 +1774040678.434565,0.90,4,3992.50,58.88,1360.80,2305.32,0.00,3518439992111.670410,3518439980669.044434,11,0,0.002783,0.000020,10163621,6864820,0,0,10796,0,1,1 +1774040683.440783,1.05,4,3992.50,58.88,1360.80,2305.32,0.00,1.490042,0.022043,221,22,0.000720,0.000030,10163637,6864823,0,0,10799,0,1,1 +1774040688.434527,0.65,4,3992.50,58.88,1360.80,2305.32,0.00,1260.964150,12723.456260,47084,247386,0.000531,0.000020,10163643,6864825,0,0,10801,0,1,1 +1774040693.434548,0.75,4,3992.50,57.71,1406.80,2259.32,0.00,4.060823,0.027344,47842,247419,35.995374,0.013733,10167169,6865552,0,0,10804,0,1,1 +1774040698.434524,0.65,4,3992.50,57.71,1406.57,2259.55,0.00,3518454296048.578125,3518454284604.404785,221,22,0.005810,0.008330,10167301,6865716,0,0,10806,0,1,1 +1774040703.438418,0.65,4,3992.50,57.74,1405.61,2260.52,0.00,3515698793824.967285,3515698793826.259277,199,0,0.006633,0.008789,10167446,6865889,0,0,10809,0,1,1 +1774040708.434537,0.70,4,3992.50,57.73,1405.98,2260.15,0.00,0.000000,0.000000,199,0,0.006644,0.008793,10167591,6866061,0,0,10811,0,1,1 +1774040713.434564,0.75,4,3992.50,57.76,1404.54,2261.59,0.00,0.000000,0.000000,199,0,0.005769,0.008310,10167721,6866224,0,0,10814,0,1,1 +1774040718.434530,5.97,4,3992.50,51.72,1641.09,2025.02,0.00,1260.880524,12707.856516,47098,247595,4.926111,0.029756,10169361,6867494,0,0,10816,0,1,1 +1774040723.434440,2.06,4,3992.50,51.45,1651.75,2014.36,0.00,3518500242961.580566,3518500231514.479004,199,0,0.008392,0.003960,10169538,6867587,0,0,10819,0,1,1 +1774040728.435081,0.35,4,3992.50,51.45,1651.75,2014.36,0.00,0.000000,0.000000,199,0,0.000326,0.000020,10169552,6867589,0,0,10821,0,1,1 +1774040733.436994,0.65,4,3992.50,51.45,1651.84,2014.25,0.00,1264.448796,12703.168628,47856,247734,0.001317,0.000030,10169582,6867592,0,0,10824,0,1,1 +1774040738.439084,0.45,4,3992.50,51.47,1650.87,2015.23,0.00,3516967244031.086914,3516967232592.947754,11,0,0.000294,0.000020,10169592,6867594,0,0,10826,0,1,1 +1774040743.438643,0.60,4,3992.50,51.47,1650.88,2015.22,0.00,1261.159973,12709.134501,47098,247717,0.000436,0.000030,10169612,6867597,0,0,10829,0,1,1 +1774040748.436772,0.45,4,3992.50,51.47,1650.89,2015.22,0.00,3519753853913.625000,3519753842462.199707,199,0,0.000326,0.000020,10169626,6867599,0,0,10831,0,1,1 +1774040753.439075,17.93,4,3992.50,52.33,1617.23,2048.84,0.00,1264.350399,12702.515198,47856,248406,31.706702,0.140319,10179853,6875282,0,0,10834,0,1,1 +1774040758.438743,9.54,4,3992.50,52.59,1607.10,2058.94,0.00,3518670957152.179199,3518670945708.164062,11,0,10.549013,0.057073,10183584,6878197,0,0,10836,0,1,1 +1774040763.434521,0.65,4,3992.50,52.31,1617.98,2048.05,0.00,2.010486,0.000195,238,2,0.005912,0.010430,10183722,6878394,0,0,10839,0,1,1 +1774040768.439111,0.55,4,3992.50,52.22,1621.63,2044.39,0.00,3515210310496.025879,3515210310498.032715,11,0,0.003632,0.006690,10183814,6878524,0,0,10841,0,1,1 +1774040773.438719,0.35,4,3992.50,52.21,1622.01,2044.03,0.00,1265.209644,12710.107828,47857,249164,0.001346,0.001750,10183849,6878565,0,0,10844,0,1,1 +1774040778.434561,0.35,4,3992.50,52.19,1622.64,2043.41,0.00,3521365126940.009277,3521365115486.485840,11,0,0.003881,0.007141,10183949,6878706,0,0,10846,0,1,1 +1774040783.434616,0.30,4,3992.50,52.19,1622.65,2043.40,0.00,2.008767,0.000195,238,2,0.000785,0.000030,10183956,6878709,0,0,10849,0,1,1 +1774040788.434546,0.25,4,3992.50,52.19,1622.65,2043.40,0.00,3518486657692.678711,3518486657694.687500,11,0,0.000151,0.000020,10183957,6878711,0,0,10851,0,1,1 +1774040793.434619,0.30,4,3992.50,52.19,1622.65,2043.39,0.00,1265.091974,12709.157562,47857,249232,0.000041,0.000030,10183960,6878714,0,0,10854,0,1,1 +1774040798.434534,0.25,4,3992.50,52.19,1622.66,2043.39,0.00,3518496595618.427734,3518496584174.002930,11,0,0.000174,0.000020,10183971,6878716,0,0,10856,0,1,1 +1774040803.434919,0.35,4,3992.50,52.19,1622.66,2043.38,0.00,0.000000,0.000000,11,0,0.000061,0.000030,10183975,6878719,0,0,10859,0,1,1 +1774040808.434702,0.25,4,3992.50,52.20,1622.42,2043.63,0.00,0.176961,0.000000,199,0,0.000273,0.000020,10183992,6878721,0,0,10861,0,1,1 +1774040813.436838,0.50,4,3992.50,51.56,1647.34,2018.70,0.00,3516935362831.001465,0.000000,11,0,0.003726,0.008421,10184082,6878878,0,0,10864,0,1,1 +1774040818.438497,0.50,4,3992.50,51.59,1646.14,2019.90,0.00,1260.631069,12705.145561,47099,249239,0.004786,0.009661,10184210,6879066,0,0,10866,0,1,1 +1774040823.434530,0.50,4,3992.50,51.62,1645.18,2020.87,0.00,3521230875437.898926,3521230863978.485352,238,2,0.004694,0.009183,10184340,6879254,0,0,10869,0,1,1 +1774040828.434891,0.80,4,3992.50,51.60,1645.71,2020.33,0.00,3518183125695.853516,3518183125697.861816,11,0,0.005022,0.010298,10184475,6879455,0,0,10871,0,1,1 +1774040833.438401,0.50,4,3992.50,51.60,1645.72,2020.32,0.00,1260.165018,12700.528535,47099,249327,0.004561,0.009658,10184596,6879635,0,0,10874,0,1,1 +1774040838.434613,0.55,4,3992.50,51.60,1645.75,2020.30,0.00,3521104430145.576660,3521104418686.494629,238,2,0.004818,0.009685,10184726,6879825,0,0,10876,0,1,1 +1774040843.434585,0.30,4,3992.50,51.60,1645.75,2020.30,0.00,1259.047987,12709.532706,47099,249351,0.000828,0.002575,10184756,6879868,0,0,10879,0,1,1 +1774040848.434806,0.20,4,3992.50,51.60,1645.75,2020.30,0.00,4.060660,0.025389,47857,249379,0.000093,0.000020,10184762,6879870,0,0,10881,0,1,1 +1774040853.434958,0.25,4,3992.50,51.60,1645.76,2020.29,0.00,3518330545207.624023,3518330533761.587891,238,2,0.000061,0.000030,10184766,6879873,0,0,10884,0,1,1 +1774040858.434917,0.20,4,3992.50,51.60,1645.77,2020.29,0.00,3518465691564.707520,3518465691566.666016,70,0,0.000056,0.000020,10184770,6879875,0,0,10886,0,1,1 +1774040863.438993,0.30,4,3992.50,51.60,1645.77,2020.28,0.00,0.000000,0.000000,70,0,0.000000,0.000673,10184770,6879882,0,0,10889,0,1,1 +1774040868.438908,0.20,4,3992.50,51.60,1645.77,2020.28,0.00,0.000000,0.000000,70,0,0.000089,0.000020,10184776,6879884,0,0,10891,0,1,1 +1774040873.438761,11.14,4,3992.50,51.94,1630.84,2033.60,0.00,3518540409784.493164,0.000000,11,0,0.036115,43.275915,10187205,6884692,0,0,10894,0,1,1 +1774040878.439169,30.77,4,3992.50,51.67,1636.42,2022.87,0.00,2.008625,0.000195,238,2,0.057853,122.565079,10191589,6897338,0,0,10896,0,1,1 +1774040883.436801,10.44,4,3992.50,51.33,1649.93,2009.64,0.00,1263.710317,12888.515325,47867,250562,0.014125,39.277005,10192625,6901484,0,0,10899,0,1,1 +1774040888.438145,8.32,4,3992.50,56.34,1456.22,2205.84,0.00,3517491419600.688965,3517491407986.521973,11,0,14.025184,0.021670,10194431,6902487,0,0,10901,0,1,1 +1774040893.434575,3.97,4,3992.50,52.58,1603.54,2058.52,0.00,1281.706823,12924.026533,47234,250868,26.059058,0.013114,10197177,6903215,0,0,10904,0,1,1 +1774040898.438399,6.32,4,3992.50,52.49,1606.61,2055.22,0.00,3515748335852.487793,3515748324227.194824,199,0,0.020568,23.029727,10198419,6905953,0,0,10906,0,1,1 +1774040903.438705,4.06,4,3992.50,52.25,1615.45,2045.71,0.00,1280.536474,12948.082580,47234,251142,0.004175,12.017764,10198727,6907250,0,0,10909,0,1,1 +1774040908.434600,0.30,4,3992.50,52.28,1614.23,2046.94,0.00,3521328079920.138672,3521328068242.292480,199,0,0.000000,0.000020,10198727,6907252,0,0,10911,0,1,1 +1774040913.434534,0.30,4,3992.50,52.28,1614.23,2046.94,0.00,1.831860,0.000195,238,2,0.000000,0.000030,10198727,6907255,0,0,10914,0,1,1 +1774040918.436179,0.30,4,3992.50,52.08,1622.11,2039.05,0.00,3517279895064.762695,0.021868,221,22,0.000000,0.000020,10198727,6907257,0,0,10916,0,1,1 +1774040923.434586,0.30,4,3992.50,52.09,1621.87,2039.30,0.00,1283.769635,12953.214208,47992,251285,0.000000,0.000030,10198727,6907260,0,0,10919,0,1,1 +1774040928.435176,0.25,4,3992.50,52.09,1621.87,2039.30,0.00,3518022057776.761230,3518022046113.703613,199,0,0.000000,0.000020,10198727,6907262,0,0,10921,0,1,1 +1774040933.439092,0.50,4,3992.50,52.09,1621.87,2039.30,0.00,1.313912,0.022053,221,22,0.004041,0.008183,10198846,6907427,0,0,10924,0,1,1 +1774040938.437091,0.40,4,3992.50,52.09,1621.88,2039.29,0.00,3519845401879.267090,3519845401880.737793,11,0,0.003510,0.009621,10198957,6907615,0,0,10926,0,1,1 +1774040943.439500,0.35,4,3992.50,52.09,1621.88,2039.29,0.00,1.491176,0.022060,221,22,0.003008,0.007875,10199060,6907779,0,0,10929,0,1,1 +1774040948.435428,1.20,4,3992.50,52.09,1621.67,2039.49,0.00,3521305403686.951660,3521305403688.422363,11,0,0.005937,0.012918,10199204,6908012,0,0,10931,0,1,1 +1774040953.436194,2.46,4,3992.50,51.34,1650.65,2010.23,0.00,0.176926,0.000000,199,0,0.028011,5.038551,10200926,6910258,0,0,10934,0,1,1 +1774040958.438845,0.70,4,3992.50,51.13,1659.39,2001.95,0.00,1.314245,0.022059,221,22,0.003439,0.009688,10201032,6910442,0,0,10936,0,1,1 +1774040963.438683,0.55,4,3992.50,51.14,1658.93,2002.41,0.00,0.000000,0.000000,221,22,0.003421,0.009534,10201136,6910625,0,0,10939,0,1,1 +1774040968.437770,0.55,4,3992.50,51.18,1657.71,2003.64,0.00,1279.533502,12952.632206,47234,251467,0.002734,0.007625,10201219,6910771,0,0,10941,0,1,1 +1774040973.434608,0.50,4,3992.50,51.18,1657.71,2003.63,0.00,3520663186333.572266,3520663174656.515625,199,0,0.003461,0.009540,10201326,6910954,0,0,10944,0,1,1 +1774040978.434524,0.45,4,3992.50,51.17,1657.72,2003.61,0.00,1.831867,0.000195,238,2,0.003484,0.009586,10201435,6911140,0,0,10946,0,1,1 +1774040983.434611,0.55,4,3992.50,51.17,1657.73,2003.61,0.00,1282.821522,12950.204220,47992,251548,0.003441,0.009542,10201541,6911324,0,0,10949,0,1,1 +1774040988.438574,0.45,4,3992.50,51.18,1657.50,2003.84,0.00,3515650664914.318359,3515650653255.974121,238,2,0.002744,0.007617,10201625,6911470,0,0,10951,0,1,1 +1774040993.434606,0.50,4,3992.50,51.13,1659.67,2001.66,0.00,3521232022004.999512,3521232022007.009766,11,0,0.003449,0.009542,10201731,6911653,0,0,10954,0,1,1 +1774040998.439249,0.50,4,3992.50,50.96,1666.26,1995.07,0.00,1279.603442,12943.408987,47234,251574,0.003598,0.009641,10201847,6911845,0,0,10956,0,1,1 +1774041003.438654,0.50,4,3992.50,50.94,1667.11,1994.23,0.00,3518855416530.952148,3518855404854.927734,11,0,0.002747,0.007634,10201931,6911992,0,0,10959,0,1,1 +1774041008.435123,0.55,4,3992.50,50.96,1666.21,1995.12,0.00,0.177078,0.000000,199,0,0.002757,0.007637,10202016,6912139,0,0,10961,0,1,1 +1774041013.438472,0.85,4,3992.50,50.96,1666.22,1995.11,0.00,1.314061,0.022056,221,22,0.003431,0.009515,10202121,6912321,0,0,10964,0,1,1 +1774041018.434703,11.84,4,3992.50,57.75,1403.98,2261.07,0.00,1284.342715,12965.285500,48002,251676,1.610208,0.013514,10202519,6912732,0,0,10966,0,1,1 +1774041023.438739,36.31,4,3992.50,57.72,1406.34,2259.79,0.00,3515599476872.033203,3515599465210.776855,11,0,116.071338,0.050488,10214541,6916046,0,0,10969,0,1,1 +1774041028.434666,28.04,4,3992.50,57.71,1406.39,2259.61,0.00,1285.914125,12966.178248,48002,251768,118.861727,0.042019,10226746,6919103,0,0,10971,0,1,1 +1774041033.434450,29.27,4,3992.50,57.60,1410.84,2255.24,0.00,3518589448519.332520,3518589436847.901855,199,0,119.569758,0.035464,10238998,6921739,0,0,10974,0,1,1 +1774041038.438681,28.62,4,3992.50,57.48,1415.71,2250.36,0.00,1.313830,0.022052,221,22,118.666533,0.036772,10251344,6924290,0,0,10976,0,1,1 +1774041043.439108,28.32,4,3992.50,57.78,1404.05,2262.09,0.00,1279.204708,12954.553919,47244,251809,119.553571,0.046571,10263530,6927829,0,0,10979,0,1,1 +1774041048.438969,28.66,4,3992.50,57.68,1407.89,2258.18,0.00,3518534817387.883789,3518534805712.684570,11,0,119.571608,0.043677,10275827,6931161,0,0,10981,0,1,1 +1774041053.438380,28.46,4,3992.50,57.58,1411.60,2254.49,0.00,2.009026,0.000195,238,2,119.381874,0.051649,10288158,6934885,0,0,10984,0,1,1 +1774041058.435666,28.74,4,3992.50,57.70,1406.93,2259.21,0.00,0.000000,0.000000,238,2,119.433817,0.055826,10300451,6938733,0,0,10986,0,1,1 +1774041063.438559,6.72,4,3992.50,51.43,1652.71,2013.48,0.00,1282.183225,12948.473535,48008,251885,72.660968,0.027730,10307987,6940546,0,0,10989,0,1,1 +1774041068.435106,1.40,4,3992.50,51.41,1653.23,2012.93,0.00,3520869023246.638672,3520869011565.531250,238,2,0.012639,0.010710,10308236,6940798,0,0,10991,0,1,1 +1774041073.434527,13.91,4,3992.50,52.65,1604.90,2061.29,0.00,3518844192770.553223,3518844192772.385254,199,0,18.120118,0.087967,10314297,6945395,0,0,10994,0,1,1 +1774041078.437529,13.54,4,3992.50,53.27,1580.64,2085.47,0.00,1.314153,0.022057,221,22,22.123688,0.100728,10321488,6950800,0,0,10996,0,1,1 +1774041083.439421,0.70,4,3992.50,52.54,1608.96,2057.18,0.00,3517105643939.827148,3517105643941.119629,199,0,0.006017,0.012100,10321628,6951019,0,0,10999,0,1,1 +1774041088.438402,22.10,4,3992.50,52.42,1609.08,2052.26,0.00,3519154943349.042969,0.000000,11,0,0.047428,92.560793,10324963,6960944,0,0,11001,0,1,1 +1774041093.438948,28.07,4,3992.50,52.08,1616.92,2039.01,0.00,2.008570,0.000195,238,2,0.025133,112.551198,10326745,6972784,0,0,11004,0,1,1 +1774041098.438036,11.58,4,3992.50,56.41,1453.95,2208.42,0.00,3519078965012.830078,3519078965014.839355,11,0,19.242207,0.024970,10329115,6973917,0,0,11006,0,1,1 +1774041103.434540,2.91,4,3992.50,51.62,1641.22,2021.12,0.00,0.050035,0.000000,70,0,20.851353,0.022601,10331444,6974982,0,0,11009,0,1,1 +1774041108.434621,0.50,4,3992.50,51.63,1641.03,2021.34,0.00,1300.609658,13162.450779,47450,254761,0.005022,0.010290,10331579,6975182,0,0,11011,0,1,1 +1774041113.435751,0.45,4,3992.50,51.63,1640.80,2021.57,0.00,0.000000,0.025580,47450,254794,0.005357,0.009192,10331703,6975358,0,0,11014,0,1,1 +1774041118.438888,0.45,4,3992.50,51.63,1640.80,2021.55,0.00,3516230838134.975098,3516230826278.935547,221,22,0.005007,0.010284,10331837,6975558,0,0,11016,0,1,1 +1774041123.436487,1.30,4,3992.50,51.64,1640.59,2021.77,0.00,3520127779817.088867,3520127779818.509277,70,0,0.005025,0.010293,10331972,6975758,0,0,11019,0,1,1 +1774041128.434637,0.45,4,3992.50,51.64,1640.60,2021.76,0.00,3519739516728.026367,0.000000,11,0,0.004325,0.008393,10332085,6975922,0,0,11021,0,1,1 +1774041133.434533,0.50,4,3992.50,51.64,1640.62,2021.73,0.00,1304.768778,13163.127094,48208,254923,0.005068,0.010340,10332224,6976126,0,0,11024,0,1,1 +1774041138.434646,0.45,4,3992.50,51.63,1640.78,2021.60,0.00,3518357342977.787109,3518357331119.944824,11,0,0.004323,0.008377,10332337,6976289,0,0,11026,0,1,1 +1774041143.434643,0.55,4,3992.50,51.63,1640.89,2021.49,0.00,1304.742359,13162.932347,48208,255002,0.005103,0.010376,10332477,6976496,0,0,11029,0,1,1 +1774041148.436544,0.50,4,3992.50,51.63,1640.90,2021.48,0.00,3517100186163.208496,3517100174309.531738,11,0,0.005120,0.010327,10332619,6976699,0,0,11031,0,1,1 +1774041153.434639,0.90,4,3992.50,51.63,1640.92,2021.46,0.00,2.009555,0.000195,238,2,0.004337,0.009047,10332733,6976868,0,0,11034,0,1,1 +1774041158.434630,0.50,4,3992.50,51.63,1640.95,2021.44,0.00,3518443473821.817871,3518443473823.649902,199,0,0.005022,0.010291,10332868,6977068,0,0,11036,0,1,1 +1774041163.434647,0.50,4,3992.50,51.62,1641.31,2021.05,0.00,1304.560208,13162.996895,48208,255114,0.005022,0.010300,10333003,6977269,0,0,11039,0,1,1 +1774041168.437418,0.45,4,3992.50,51.62,1641.34,2021.04,0.00,3516488583408.216309,3516488571556.307129,199,0,0.004321,0.008372,10333116,6977432,0,0,11041,0,1,1 +1774041173.439343,0.55,4,3992.50,51.63,1641.12,2021.26,0.00,1304.062552,13157.988728,48208,255130,0.005029,0.010304,10333252,6977634,0,0,11044,0,1,1 +1774041178.438936,0.50,4,3992.50,51.63,1641.13,2021.25,0.00,3518723456435.434082,3518723444576.105957,70,0,0.005519,0.010942,10333386,6977834,0,0,11046,0,1,1 +1774041183.434802,11.54,4,3992.50,51.81,1632.67,2028.47,0.00,1305.771263,13208.078556,48208,255432,0.023425,40.104218,10334852,6982358,0,0,11049,0,1,1 +1774041188.438466,0.60,4,3992.50,51.55,1642.86,2018.28,0.00,3515860947109.192871,3515860935225.483887,11,0,0.002745,0.007618,10334936,6982504,0,0,11051,0,1,1 +1774041193.438663,0.50,4,3992.50,51.39,1649.23,2011.91,0.00,1.491836,0.022069,221,22,0.003433,0.009534,10335041,6982687,0,0,11054,0,1,1 +1774041198.439302,0.35,4,3992.50,51.39,1649.09,2012.06,0.00,0.516828,3517987104948.217285,238,2,0.003445,0.009523,10335147,6982869,0,0,11056,0,1,1 +1774041203.438410,0.50,4,3992.50,51.40,1648.85,2012.30,0.00,0.000000,0.000000,238,2,0.003205,0.008877,10335245,6983038,0,0,11059,0,1,1 +1774041208.439322,0.50,4,3992.50,51.40,1648.85,2012.29,0.00,3517794949580.440430,0.021871,221,22,0.002970,0.008289,10335336,6983199,0,0,11061,0,1,1 +1774041213.434547,0.50,4,3992.50,51.40,1648.86,2012.29,0.00,1300.430954,13215.852701,47450,255504,0.002787,0.007672,10335423,6983348,0,0,11064,0,1,1 +1774041218.434546,0.60,4,3992.50,51.38,1649.48,2011.67,0.00,3518437315246.877930,3518437303344.129883,199,0,0.003484,0.010230,10335532,6983538,0,0,11066,0,1,1 +1774041223.434636,0.45,4,3992.50,51.40,1648.65,2012.50,0.00,3518374287684.661621,0.000000,70,0,0.002772,0.007664,10335618,6983687,0,0,11069,0,1,1 +1774041228.439265,0.45,4,3992.50,51.41,1648.50,2012.64,0.00,3515182927051.164551,0.000000,11,0,0.003636,0.009703,10335737,6983883,0,0,11071,0,1,1 +1774041233.438548,0.45,4,3992.50,51.41,1648.26,2012.88,0.00,0.000000,0.000000,11,0,0.003434,0.009535,10335842,6984066,0,0,11074,0,1,1 +1774041238.434537,0.50,4,3992.50,51.41,1648.27,2012.88,0.00,1305.789169,13213.984397,48208,255611,0.002749,0.007629,10335926,6984212,0,0,11076,0,1,1 +1774041243.434781,0.45,4,3992.50,51.41,1648.28,2012.87,0.00,3518265102494.972656,3518265090595.442871,221,22,0.003420,0.009534,10336030,6984395,0,0,11079,0,1,1 +1774041248.439062,13.69,4,3992.50,57.97,1395.54,2269.64,0.00,1298.077612,13192.081061,47450,255619,8.330640,0.019988,10337155,6985243,0,0,11081,0,1,1 +1774041253.438574,36.66,4,3992.50,57.75,1404.88,2260.90,0.00,3518780218278.196777,3518780206374.320801,11,0,123.272612,0.044364,10349968,6988216,0,0,11084,0,1,1 +1774041258.435493,30.10,4,3992.50,57.61,1410.40,2255.37,0.00,2.010028,0.000195,238,2,122.256863,0.062283,10362576,6992765,0,0,11086,0,1,1 +1774041263.438441,30.88,4,3992.50,57.70,1406.47,2259.27,0.00,3516363826444.021973,3516363826446.029297,11,0,120.713491,0.067739,10375286,6997673,0,0,11089,0,1,1 +1774041268.434964,29.02,4,3992.50,57.59,1411.07,2254.75,0.00,0.050035,0.000000,70,0,120.511851,0.059157,10387721,7002004,0,0,11091,0,1,1 +1774041273.438375,29.29,4,3992.50,57.59,1411.11,2254.65,0.00,1303.802140,13194.531329,48208,255789,119.646856,0.061126,10400103,7006402,0,0,11094,0,1,1 +1774041278.438557,30.04,4,3992.50,57.53,1413.46,2252.37,0.00,3518308798455.094238,3518308786556.560547,199,0,119.780765,0.081356,10412671,7012525,0,0,11096,0,1,1 +1774041283.435394,30.10,4,3992.50,57.84,1401.28,2264.48,0.00,1.832996,0.000195,238,2,119.866816,0.091182,10425460,7019273,0,0,11099,0,1,1 +1774041288.438557,30.73,4,3992.50,57.67,1407.85,2257.91,0.00,3516213185756.941895,3516213185758.898926,70,0,118.911566,0.083023,10438061,7025212,0,0,11101,0,1,1 +1774041293.438116,2.11,4,3992.50,53.16,1584.47,2081.39,0.00,1304.875488,13204.977546,48214,255857,52.286695,0.035079,10443574,7027667,0,0,11104,0,1,1 +1774041298.438555,6.77,4,3992.50,52.21,1621.92,2043.95,0.00,3518128154094.057617,3518128142194.630859,221,22,4.031040,0.026979,10445032,7028824,0,0,11106,0,1,1 +1774041303.438376,22.50,4,3992.50,51.60,1645.42,2020.35,0.00,3518563048177.988281,3518563048179.458008,11,0,34.207202,0.150612,10455963,7036925,0,0,11109,0,1,1 +1774041308.434698,3.91,4,3992.50,51.69,1641.83,2023.87,0.00,0.000000,0.000000,11,0,2.032558,0.024875,10456991,7037797,0,0,11111,0,1,1 +1774041313.438391,10.60,4,3992.50,52.06,1626.09,2038.08,0.00,1.490793,0.022054,221,22,0.027459,43.439826,10458797,7042604,0,0,11114,0,1,1 +1774041318.438895,30.73,4,3992.50,51.89,1627.91,2031.46,0.00,0.000000,0.000000,221,22,0.035449,118.767453,10461308,7055242,0,0,11116,0,1,1 +1774041323.439391,11.66,4,3992.50,51.45,1645.25,2014.38,0.00,0.516843,3518088134327.843750,238,2,0.023895,42.871094,10462871,7059993,0,0,11119,0,1,1 +1774041328.438781,1.15,4,3992.50,51.27,1652.24,2007.40,0.00,3518866908981.312988,0.021878,221,22,0.006166,0.008325,10462999,7060159,0,0,11121,0,1,1 +1774041333.438700,15.52,4,3992.50,51.51,1645.55,2016.54,0.00,0.516903,3518493749670.337891,238,2,40.068174,0.032704,10467533,7061806,0,0,11124,0,1,1 +1774041338.439065,0.70,4,3992.50,51.52,1644.86,2017.26,0.00,1322.602048,13409.331631,48358,258566,0.004335,0.008376,10467647,7061969,0,0,11126,0,1,1 +1774041343.439243,0.60,4,3992.50,51.57,1643.16,2018.96,0.00,3518311873327.354492,3518311861242.133301,70,0,0.005098,0.010412,10467788,7062177,0,0,11129,0,1,1 +1774041348.438781,0.70,4,3992.50,51.57,1643.16,2018.95,0.00,0.000000,0.000000,70,0,0.005061,0.010935,10467926,7062381,0,0,11131,0,1,1 +1774041353.436123,0.85,4,3992.50,51.57,1642.96,2019.15,0.00,1321.298931,13417.498533,47600,258631,0.007149,0.012109,10468092,7062605,0,0,11134,0,1,1 +1774041358.438534,0.75,4,3992.50,51.57,1642.98,2019.14,0.00,3516741541702.096680,3516741529616.197266,238,2,0.006104,0.010726,10468251,7062821,0,0,11136,0,1,1 +1774041363.439252,0.60,4,3992.50,51.58,1642.76,2019.36,0.00,1322.508299,13408.709326,48358,258901,0.005047,0.010286,10468388,7063021,0,0,11139,0,1,1 +1774041368.434607,0.55,4,3992.50,51.58,1642.80,2019.31,0.00,3521709232536.886230,3521709220439.666016,70,0,0.004371,0.008435,10468504,7063188,0,0,11141,0,1,1 +1774041373.438092,0.70,4,3992.50,51.58,1642.81,2019.30,0.00,1.957425,0.000195,238,2,0.004333,0.008394,10468618,7063353,0,0,11144,0,1,1 +1774041378.434541,0.60,4,3992.50,51.58,1642.83,2019.29,0.00,3520936966386.831543,3520936966388.665039,199,0,0.004414,0.008436,10468737,7063520,0,0,11146,0,1,1 +1774041383.434588,0.75,4,3992.50,51.57,1642.83,2019.27,0.00,3518404452537.569824,0.000000,11,0,0.005022,0.010288,10468872,7063720,0,0,11149,0,1,1 +1774041388.438754,0.55,4,3992.50,51.57,1642.86,2019.25,0.00,0.000000,0.000000,11,0,0.005018,0.010282,10469007,7063920,0,0,11151,0,1,1 +1774041393.438959,0.60,4,3992.50,51.57,1642.88,2019.24,0.00,0.000000,0.000000,11,0,0.004323,0.008387,10469120,7064084,0,0,11154,0,1,1 +1774041398.438709,0.85,4,3992.50,51.58,1642.81,2019.30,0.00,1320.712451,13411.651436,47600,259153,0.005143,0.010381,10469264,7064291,0,0,11156,0,1,1 +1774041403.434609,0.75,4,3992.50,51.57,1642.95,2019.17,0.00,4.064172,0.060108,48358,259225,0.004458,0.010103,10469391,7064487,0,0,11159,0,1,1 +1774041408.434532,11.50,4,3992.50,51.63,1639.86,2021.28,0.00,3518491302954.879395,3518491290868.360352,11,0,0.024665,40.071181,10470878,7068996,0,0,11161,0,1,1 +1774041413.434520,0.80,4,3992.50,51.57,1642.01,2019.13,0.00,1324.710567,13445.219157,48358,259509,0.003433,0.010178,10470983,7069183,0,0,11164,0,1,1 +1774041418.437991,0.65,4,3992.50,51.57,1642.02,2019.12,0.00,3515996152691.859863,3515996140578.321777,221,22,0.004352,0.010187,10471090,7069368,0,0,11166,0,1,1 +1774041423.434610,0.70,4,3992.50,51.58,1641.79,2019.35,0.00,1324.110743,13454.291144,48358,259518,0.002748,0.007638,10471174,7069515,0,0,11169,0,1,1 +1774041428.436185,0.60,4,3992.50,51.58,1641.79,2019.35,0.00,3517329429580.916504,3517329417462.216797,238,2,0.003440,0.009529,10471280,7069698,0,0,11171,0,1,1 +1774041433.438728,0.70,4,3992.50,51.58,1641.80,2019.34,0.00,3516648409401.375000,3516648409403.382324,11,0,0.003444,0.009529,10471386,7069881,0,0,11174,0,1,1 +1774041438.439134,0.70,4,3992.50,51.56,1642.30,2018.84,0.00,0.000000,0.000000,11,0,0.002746,0.007623,10471470,7070027,0,0,11176,0,1,1 +1774041443.439223,0.60,4,3992.50,51.56,1642.30,2018.84,0.00,2.008753,0.000195,238,2,0.003484,0.009596,10471579,7070214,0,0,11179,0,1,1 +1774041448.438768,0.75,4,3992.50,51.56,1642.30,2018.83,0.00,1322.818817,13452.524893,48358,259627,0.003484,0.009587,10471688,7070400,0,0,11181,0,1,1 +1774041453.438581,0.65,4,3992.50,51.56,1642.31,2018.82,0.00,3518568420606.615234,3518568408477.560547,238,2,0.002266,0.005921,10471765,7070525,0,0,11184,0,1,1 +1774041458.435106,1.66,4,3992.50,51.57,1642.11,2019.04,0.00,3520884615211.132324,3520884615213.142090,11,0,0.003444,0.009539,10471871,7070708,0,0,11186,0,1,1 +1774041463.438580,0.70,4,3992.50,51.59,1641.15,2019.99,0.00,2.007394,0.000195,238,2,0.003406,0.009527,10471974,7070891,0,0,11189,0,1,1 +1774041468.439045,1.10,4,3992.50,51.28,1653.36,2007.76,0.00,0.000000,0.000000,238,2,0.005284,0.009959,10472097,7071071,0,0,11191,0,1,1 +1774041473.438496,43.77,4,3992.50,57.74,1405.13,2260.55,0.00,3518823398341.806641,3518823398343.638672,199,0,106.163359,0.041159,10483117,7073712,0,0,11194,0,1,1 +1774041478.434538,28.36,4,3992.50,57.61,1410.28,2255.38,0.00,1.833287,0.000195,238,2,118.261706,0.030776,10495424,7075860,0,0,11196,0,1,1 +1774041483.436998,30.46,4,3992.50,57.69,1407.13,2258.61,0.00,1322.048131,13444.902074,48358,259788,119.508443,0.022543,10507849,7077399,0,0,11199,0,1,1 +1774041488.434527,30.31,4,3992.50,57.64,1408.98,2256.68,0.00,0.000000,0.004299,48358,259799,118.823552,0.021035,10520088,7078840,0,0,11201,0,1,1 +1774041493.434504,30.61,4,3992.50,57.74,1405.17,2260.50,0.00,3518453801291.802246,3518453789163.462402,221,22,119.369504,0.031242,10532403,7080911,0,0,11204,0,1,1 +1774041498.438567,30.83,4,3992.50,57.87,1399.76,2265.92,0.00,0.000000,0.000000,221,22,119.268692,0.027398,10544512,7082956,0,0,11206,0,1,1 +1774041503.438581,30.31,4,3992.50,57.96,1396.41,2269.29,0.00,0.516893,3518427432580.713867,238,2,119.563177,0.021064,10556565,7084443,0,0,11209,0,1,1 +1774041508.438554,30.66,4,3992.50,57.70,1406.47,2259.23,0.00,0.000000,0.000000,238,2,118.963895,0.019841,10568632,7085732,0,0,11211,0,1,1 +1774041513.438042,10.45,4,3992.50,53.75,1561.22,2104.51,0.00,3518797564013.455078,3518797564015.414062,70,0,85.531383,0.021180,10577439,7086939,0,0,11214,0,1,1 +1774041518.434531,2.91,4,3992.50,52.61,1606.02,2059.71,0.00,0.000000,0.000000,70,0,2.018878,0.018807,10578175,7087581,0,0,11216,0,1,1 +1774041523.438379,21.62,4,3992.50,52.01,1629.40,2036.27,0.00,3515731714106.168945,0.000000,11,0,32.214442,0.148142,10588792,7095507,0,0,11219,0,1,1 +1774041528.434533,5.37,4,3992.50,52.51,1609.61,2056.05,0.00,0.000000,0.000000,11,0,6.006959,0.026420,10590711,7096887,0,0,11221,0,1,1 +1774041533.438686,1.50,4,3992.50,51.78,1638.27,2027.32,0.00,2.007122,0.000195,238,2,0.010099,0.012193,10590940,7097143,0,0,11224,0,1,1 +1774041538.438737,0.60,4,3992.50,51.69,1641.99,2023.64,0.00,1324.092851,13452.389749,48450,260985,0.004348,0.008390,10591055,7097307,0,0,11226,0,1,1 +1774041543.434628,0.60,4,3992.50,51.68,1642.24,2023.38,0.00,3521330551765.175293,3521330539628.791992,11,0,0.005027,0.010792,10591190,7097511,0,0,11229,0,1,1 +1774041548.435842,0.35,4,3992.50,51.69,1642.02,2023.61,0.00,1.491533,0.022065,221,22,0.004335,0.008549,10591304,7097676,0,0,11231,0,1,1 +1774041553.438717,0.50,4,3992.50,51.67,1642.63,2023.01,0.00,3516414581280.214355,3516414581281.683594,11,0,0.005028,0.010303,10591440,7097878,0,0,11234,0,1,1 +1774041558.434613,0.45,4,3992.50,51.68,1642.39,2023.25,0.00,1327.204512,13464.280361,48450,261399,0.005140,0.010423,10591584,7098086,0,0,11236,0,1,1 +1774041563.434523,0.50,4,3992.50,51.68,1642.42,2023.22,0.00,3518500709459.898438,3518500697330.558105,238,2,0.004361,0.008431,10591700,7098253,0,0,11239,0,1,1 +1774041568.434523,0.40,4,3992.50,51.68,1642.42,2023.22,0.00,3518436826778.952148,3518436826780.960938,11,0,0.005035,0.010291,10591836,7098453,0,0,11241,0,1,1 +1774041573.434617,0.60,4,3992.50,51.67,1642.44,2023.18,0.00,1322.029392,13453.061911,47692,261462,0.005048,0.010288,10591973,7098653,0,0,11244,0,1,1 +1774041578.438717,0.50,4,3992.50,51.67,1642.59,2022.95,0.00,0.055423,0.034737,47704,261502,0.004407,0.008423,10592092,7098820,0,0,11246,0,1,1 +1774041583.434535,0.45,4,3992.50,51.67,1642.61,2022.94,0.00,3521382256454.062500,3521382244310.658691,238,2,0.005035,0.010317,10592228,7099022,0,0,11249,0,1,1 +1774041588.434536,1.10,4,3992.50,51.73,1640.20,2025.36,0.00,3518436542489.360352,3518436542491.318848,70,0,0.006123,0.009776,10592368,7099220,0,0,11251,0,1,1 +1774041593.438433,28.37,4,3992.50,51.84,1629.98,2029.51,0.00,3515696773171.356934,0.000000,11,0,0.041042,111.880082,10595313,7111086,0,0,11254,0,1,1 +1774041598.438840,23.90,4,3992.50,51.57,1640.30,2019.27,0.00,0.000000,0.000000,11,0,0.029755,93.136962,10597371,7121056,0,0,11256,0,1,1 +1774041603.441387,6.96,4,3992.50,56.31,1457.29,2204.75,0.00,1.491135,0.022059,221,22,3.614334,0.016231,10598150,7121639,0,0,11259,0,1,1 +1774041608.434592,8.25,4,3992.50,51.96,1627.68,2034.39,0.00,0.517598,3523225094921.276367,238,2,36.505163,0.017661,10601955,7122676,0,0,11261,0,1,1 +1774041613.435132,0.95,4,3992.50,51.83,1632.82,2029.24,0.00,1343.773797,13657.268197,48603,263074,0.005744,0.013185,10602107,7122906,0,0,11264,0,1,1 +1774041618.439052,0.50,4,3992.50,51.82,1633.11,2028.97,0.00,3515680578567.924316,3515680566264.581055,199,0,0.004963,0.008636,10602234,7123077,0,0,11266,0,1,1 +1774041623.438497,11.14,4,3992.50,51.97,1626.36,2034.78,0.00,1341.838923,13690.362534,47845,263315,0.024946,40.074043,10603814,7127569,0,0,11269,0,1,1 +1774041628.439262,0.85,4,3992.50,51.81,1632.55,2028.59,0.00,3517898803685.134277,3517898791338.041504,238,2,0.004833,0.012607,10603955,7127807,0,0,11271,0,1,1 +1774041633.434609,0.50,4,3992.50,51.61,1640.59,2020.54,0.00,3521714265430.545410,3521714265432.555664,11,0,0.002774,0.007671,10604041,7127956,0,0,11274,0,1,1 +1774041638.434613,0.50,4,3992.50,51.57,1642.19,2018.94,0.00,1341.865683,13692.975764,47845,263424,0.003421,0.009524,10604145,7128138,0,0,11276,0,1,1 +1774041643.434614,0.55,4,3992.50,51.57,1641.98,2019.16,0.00,3518436033087.385254,3518436020736.270020,11,0,0.003454,0.009542,10604252,7128322,0,0,11279,0,1,1 +1774041648.439240,0.40,4,3992.50,51.57,1641.98,2019.15,0.00,0.000000,0.000000,11,0,0.002744,0.007616,10604336,7128468,0,0,11281,0,1,1 +1774041653.439261,0.75,4,3992.50,51.57,1641.99,2019.14,0.00,1345.921672,13698.968210,48603,263492,0.005535,0.012315,10604487,7128708,0,0,11284,0,1,1 +1774041658.434530,0.55,4,3992.50,51.43,1647.70,2013.43,0.00,3521769292223.847656,3521769279857.577148,221,22,0.005147,0.010858,10604615,7128905,0,0,11286,0,1,1 +1774041663.434603,0.50,4,3992.50,51.45,1646.72,2014.41,0.00,0.516887,3518386114176.350586,238,2,0.002543,0.007031,10604694,7129042,0,0,11289,0,1,1 +1774041668.436713,0.40,4,3992.50,51.45,1646.73,2014.40,0.00,3516952916184.108398,0.021866,221,22,0.002376,0.006447,10604771,7129170,0,0,11291,0,1,1 +1774041673.439040,0.50,4,3992.50,51.45,1646.73,2014.39,0.00,3516800719825.518555,3516800719826.937988,70,0,0.003525,0.009605,10604882,7129359,0,0,11294,0,1,1 +1774041678.438867,0.55,4,3992.50,51.42,1647.76,2013.37,0.00,3518558955949.008301,0.000000,11,0,0.003441,0.010176,10604988,7129546,0,0,11296,0,1,1 +1774041683.439064,0.50,4,3992.50,51.45,1646.78,2014.35,0.00,1.491836,0.022069,221,22,0.002759,0.007633,10605073,7129693,0,0,11299,0,1,1 +1774041688.438811,5.76,4,3992.50,57.58,1410.18,2254.35,0.00,3518614825039.461426,3518614825040.931641,11,0,1.409208,0.014318,10605450,7130089,0,0,11301,0,1,1 +1774041693.437523,40.31,4,3992.50,57.72,1405.44,2259.82,0.00,2.009307,0.000195,238,2,112.187352,0.046247,10617006,7133188,0,0,11304,0,1,1 +1774041698.439132,28.07,4,3992.50,57.49,1414.38,2250.93,0.00,3517304972934.438477,3517304972936.270020,199,0,118.927683,0.024923,10629260,7134766,0,0,11306,0,1,1 +1774041703.434694,28.79,4,3992.50,57.69,1406.78,2258.56,0.00,3521563445137.373047,0.000000,11,0,120.281772,0.042296,10641755,7137999,0,0,11309,0,1,1 +1774041708.435446,29.10,4,3992.50,57.67,1407.45,2257.90,0.00,0.176927,0.000000,199,0,119.776678,0.101654,10654524,7145659,0,0,11311,0,1,1 +1774041713.434659,28.83,4,3992.50,57.45,1415.90,2249.43,0.00,3518990819333.963379,0.000000,70,0,118.611461,0.096334,10667216,7152807,0,0,11314,0,1,1 +1774041718.434425,29.48,4,3992.50,57.59,1410.49,2254.79,0.00,3518602305925.666992,0.000000,11,0,119.981088,0.049085,10679720,7156333,0,0,11316,0,1,1 +1774041723.438976,28.12,4,3992.50,57.80,1402.29,2262.98,0.00,2.006962,0.000195,238,2,119.059080,0.025644,10692093,7158224,0,0,11319,0,1,1 +1774041728.435632,28.28,4,3992.50,57.67,1407.48,2257.85,0.00,3520792071646.034668,3520792071648.044434,11,0,119.448493,0.023281,10704513,7159923,0,0,11321,0,1,1 +1774041733.438954,8.12,4,3992.50,51.30,1656.94,2008.43,0.00,0.000000,0.000000,11,0,75.867709,0.024772,10712497,7161461,0,0,11324,0,1,1 +1774041738.438385,20.58,4,3992.50,52.88,1595.09,2070.22,0.00,2.009018,0.000195,238,2,28.172134,0.126497,10721410,7168041,0,0,11326,0,1,1 +1774041743.439516,8.30,4,3992.50,52.38,1614.62,2050.64,0.00,1339.665091,13696.906833,47861,264795,12.079744,0.061432,10725495,7171189,0,0,11329,0,1,1 +1774041748.438636,0.65,4,3992.50,51.81,1636.67,2028.59,0.00,3519056812096.997070,3519056799736.792969,11,0,0.004384,0.008769,10725596,7171344,0,0,11331,0,1,1 +1774041753.439174,12.46,4,3992.50,52.27,1617.02,2046.37,0.00,0.000000,0.000000,11,0,0.027344,49.875829,10727390,7176856,0,0,11334,0,1,1 +1774041758.436996,30.02,4,3992.50,52.11,1619.38,2040.32,0.00,0.050022,0.000000,70,0,0.027440,119.027246,10729284,7189455,0,0,11336,0,1,1 +1774041763.434542,9.96,4,3992.50,51.78,1632.13,2027.22,0.00,3520164834676.679688,0.000000,11,0,0.013681,36.282588,10730033,7193550,0,0,11339,0,1,1 +1774041768.439255,15.64,4,3992.50,51.36,1651.23,2010.70,0.00,0.049953,0.000000,70,0,40.031326,0.028350,10734522,7195014,0,0,11341,0,1,1 +1774041773.439284,0.65,4,3992.50,51.37,1650.52,2011.38,0.00,0.126952,0.000000,199,0,0.005037,0.010633,10734651,7195203,0,0,11344,0,1,1 +1774041778.439270,0.45,4,3992.50,51.37,1650.80,2011.12,0.00,1.831841,0.000195,238,2,0.005098,0.010415,10734792,7195411,0,0,11346,0,1,1 +1774041783.434585,0.55,4,3992.50,51.40,1649.58,2012.33,0.00,1360.984807,13896.340463,47988,266547,0.004340,0.008407,10734906,7195576,0,0,11349,0,1,1 +1774041788.438840,2.11,4,3992.50,51.40,1649.59,2012.31,0.00,3515445392641.697266,3515445380130.744141,11,0,0.005001,0.010290,10735040,7195777,0,0,11351,0,1,1 +1774041793.439239,0.55,4,3992.50,51.36,1651.13,2010.80,0.00,0.176939,0.000000,199,0,0.003702,0.006973,10735137,7195915,0,0,11354,0,1,1 +1774041798.434874,0.45,4,3992.50,51.38,1650.43,2011.50,0.00,3521511286101.041504,0.000000,11,0,0.004848,0.009696,10735269,7196105,0,0,11356,0,1,1 +1774041803.438921,0.45,4,3992.50,51.41,1649.21,2012.72,0.00,2.007165,0.000195,238,2,0.004332,0.008393,10735383,7196270,0,0,11359,0,1,1 +1774041808.437333,0.50,4,3992.50,51.41,1649.23,2012.71,0.00,3519555118134.253906,3519555118136.263184,11,0,0.005105,0.010865,10735523,7196480,0,0,11361,0,1,1 +1774041813.437314,0.50,4,3992.50,51.41,1649.26,2012.68,0.00,0.000000,0.000000,11,0,0.005022,0.010449,10735658,7196681,0,0,11364,0,1,1 +1774041818.436318,0.45,4,3992.50,51.41,1649.27,2012.66,0.00,2.009190,0.000195,238,2,0.004411,0.008431,10735777,7196848,0,0,11366,0,1,1 +1774041823.439120,0.45,4,3992.50,51.41,1649.29,2012.64,0.00,3516466682929.611328,3516466682931.618652,11,0,0.005020,0.010295,10735912,7197049,0,0,11369,0,1,1 +1774041828.434544,0.50,4,3992.50,51.41,1649.30,2012.63,0.00,1362.965471,13919.193191,47988,266984,0.005060,0.010295,10736050,7197249,0,0,11371,0,1,1 +1774041833.437620,0.50,4,3992.50,51.40,1649.32,2012.61,0.00,0.000000,0.033866,47988,267026,0.004346,0.008394,10736165,7197414,0,0,11374,0,1,1 +1774041838.434610,0.60,4,3992.50,51.36,1650.97,2010.96,0.00,3520557068715.215332,3520557056161.415039,221,22,0.005025,0.010297,10736300,7197614,0,0,11376,0,1,1 +1774041843.438562,0.50,4,3992.50,51.39,1649.77,2012.16,0.00,1363.209655,13895.576660,48746,267103,0.004400,0.010055,10736423,7197808,0,0,11379,0,1,1 +1774041848.439134,10.97,4,3992.50,51.61,1640.54,2020.52,0.00,3518034654949.318848,28.033218,47988,267308,0.023509,40.064596,10737867,7202291,0,0,11381,0,1,1 +1774041853.434783,0.65,4,3992.50,51.46,1646.46,2014.59,0.00,3521501381378.841797,3521501368794.814941,199,0,0.003206,0.008412,10737964,7202455,0,0,11384,0,1,1 +1774041858.438795,0.50,4,3992.50,51.48,1645.48,2015.57,0.00,0.000000,0.000000,199,0,0.003430,0.009517,10738069,7202637,0,0,11386,0,1,1 +1774041863.439058,0.50,4,3992.50,51.48,1645.49,2015.57,0.00,1.314872,0.022069,221,22,0.003441,0.009542,10738175,7202821,0,0,11389,0,1,1 +1774041868.438982,0.40,4,3992.50,51.50,1644.76,2016.30,0.00,1364.307937,13940.930767,48746,267446,0.002747,0.007623,10738259,7202967,0,0,11391,0,1,1 +1774041873.439783,0.45,4,3992.50,51.50,1644.76,2016.30,0.00,0.000000,0.060147,48746,267454,0.003408,0.010176,10738362,7203154,0,0,11394,0,1,1 +1774041878.439113,0.65,4,3992.50,51.31,1652.20,2008.86,0.00,3518908148625.204590,3518908136048.499023,11,0,0.003421,0.009513,10738466,7203335,0,0,11396,0,1,1 +1774041883.439282,0.45,4,3992.50,51.31,1652.20,2008.85,0.00,0.000000,0.000000,11,0,0.002809,0.007695,10738555,7203486,0,0,11399,0,1,1 +1774041888.434931,0.50,4,3992.50,51.31,1652.20,2008.84,0.00,0.177107,0.000000,199,0,0.003487,0.009595,10738664,7203672,0,0,11401,0,1,1 +1774041893.439442,0.50,4,3992.50,51.31,1652.21,2008.84,0.00,0.000000,0.000000,199,0,0.003605,0.009663,10738781,7203865,0,0,11404,0,1,1 +1774041898.438956,0.55,4,3992.50,51.31,1652.21,2008.84,0.00,1361.673708,13948.171061,47988,267493,0.002791,0.007674,10738868,7204015,0,0,11406,0,1,1 +1774041903.438555,0.50,4,3992.50,51.31,1652.22,2008.82,0.00,3518719419376.565430,3518719406788.989258,221,22,0.003442,0.009543,10738974,7204199,0,0,11409,0,1,1 +1774041908.438694,0.35,4,3992.50,51.31,1652.22,2008.82,0.00,1364.249363,13946.533634,48746,267600,0.003433,0.009511,10739079,7204380,0,0,11411,0,1,1 +1774041913.438876,34.96,4,3992.50,57.55,1412.14,2253.11,0.00,3518309278273.753418,3518309265693.047363,11,0,71.305976,0.041357,10746745,7206951,0,0,11414,0,1,1 +1774041918.437818,31.21,4,3992.50,57.65,1407.97,2257.21,0.00,1362.006416,13949.987576,47988,267694,119.594274,0.028143,10759167,7208839,0,0,11416,0,1,1 +1774041923.434528,30.34,4,3992.50,57.84,1400.63,2264.53,0.00,3520753686705.676270,3520753674111.895020,199,0,118.842989,0.017234,10771475,7210120,0,0,11419,0,1,1 +1774041928.438632,29.10,4,3992.50,57.65,1407.93,2257.25,0.00,1360.424872,13935.656728,47988,267722,120.067803,0.018640,10783809,7211429,0,0,11421,0,1,1 +1774041933.441399,29.69,4,3992.50,57.56,1411.87,2253.42,0.00,3516490588751.362305,3516490576170.942871,238,2,119.308905,0.052730,10796091,7215385,0,0,11424,0,1,1 +1774041938.434628,29.13,4,3992.50,57.67,1407.35,2257.92,0.00,3523208568342.280762,3523208568344.292480,11,0,119.152810,0.093340,10808725,7222417,0,0,11426,0,1,1 +1774041943.436821,30.08,4,3992.50,57.72,1405.55,2259.68,0.00,0.049978,0.000000,70,0,119.239540,0.094973,10821510,7229604,0,0,11429,0,1,1 +1774041948.438449,30.07,4,3992.50,57.63,1408.74,2256.51,0.00,1.441425,0.022063,221,22,119.048973,0.072607,10834180,7235172,0,0,11431,0,1,1 +1774041953.438501,18.20,4,3992.50,57.69,1406.59,2258.72,0.00,1364.273638,13947.138745,48747,267842,118.982710,0.071181,10846750,7240328,0,0,11434,0,1,1 +1774041958.434535,1.15,4,3992.50,51.49,1649.30,2016.02,0.00,0.169666,0.194197,48763,267870,0.007892,0.009949,10846947,7240553,0,0,11436,0,1,1 +1774041963.439390,8.58,4,3992.50,51.37,1654.16,2011.11,0.00,3515024133144.064453,3515024120574.716797,11,0,6.052289,0.040185,10849235,7242194,0,0,11439,0,1,1 +1774041968.439032,19.28,4,3992.50,51.81,1636.65,2028.59,0.00,2.008933,0.000195,238,2,32.177454,0.133716,10859225,7249751,0,0,11441,0,1,1 +1774041973.434864,2.56,4,3992.50,51.81,1636.85,2028.36,0.00,3521372525012.553711,0.021893,221,22,2.029047,0.021015,10860220,7250519,0,0,11444,0,1,1 +1774041978.438433,18.09,4,3992.50,52.06,1623.96,2038.26,0.00,0.000000,0.000000,221,22,0.038768,65.859317,10862839,7257713,0,0,11446,0,1,1 +1774041983.437121,31.10,4,3992.50,51.89,1627.79,2031.45,0.00,3519360415952.536133,3519360415953.956543,70,0,0.046530,119.604624,10866260,7270202,0,0,11449,0,1,1 +1774041988.439086,6.27,4,3992.50,51.26,1652.50,2007.13,0.00,1.958019,0.000195,238,2,0.009634,19.630800,10866711,7272450,0,0,11451,0,1,1 +1774041993.438749,15.26,4,3992.50,52.32,1613.57,2048.46,0.00,1383.777775,14154.755002,48923,270452,40.070625,0.028833,10871291,7274229,0,0,11454,0,1,1 +1774041998.439057,0.75,4,3992.50,51.81,1633.38,2028.64,0.00,3518220141029.233887,0.031443,48165,270509,0.007286,0.011124,10871458,7274433,0,0,11456,0,1,1 +1774042003.438489,0.45,4,3992.50,51.57,1643.02,2019.01,0.00,3518837086038.731445,3518837073263.071777,238,2,0.003979,0.007258,10871566,7274582,0,0,11459,0,1,1 +1774042008.439165,0.40,4,3992.50,51.59,1642.17,2019.86,0.00,1379.437177,14151.968962,48165,270559,0.004335,0.009032,10871680,7274750,0,0,11461,0,1,1 +1774042013.439261,0.50,4,3992.50,51.60,1641.93,2020.10,0.00,0.000000,0.035644,48165,270606,0.005022,0.010300,10871815,7274951,0,0,11464,0,1,1 +1774042018.438687,0.55,4,3992.50,51.60,1641.95,2020.09,0.00,3518841171171.786621,3518841158398.035645,11,0,0.005983,0.010961,10871955,7275154,0,0,11466,0,1,1 +1774042023.439515,0.50,4,3992.50,51.59,1641.98,2020.05,0.00,2.008457,0.000195,238,2,0.004368,0.008437,10872072,7275322,0,0,11469,0,1,1 +1774042028.439474,0.50,4,3992.50,51.59,1641.99,2020.04,0.00,0.000000,0.000000,238,2,0.005010,0.010291,10872206,7275522,0,0,11471,0,1,1 +1774042033.434526,0.50,4,3992.50,51.63,1640.78,2021.25,0.00,1385.055190,14168.358726,48923,270996,0.005108,0.010348,10872346,7275726,0,0,11474,0,1,1 +1774042038.434639,0.50,4,3992.50,51.63,1640.79,2021.24,0.00,3518357325305.500000,3518357312537.096680,70,0,0.004348,0.008415,10872461,7275892,0,0,11476,0,1,1 +1774042043.434529,0.55,4,3992.50,51.62,1640.80,2021.23,0.00,1385.673765,14154.725283,48923,271081,0.005097,0.010341,10872601,7276096,0,0,11479,0,1,1 +1774042048.438828,0.50,4,3992.50,51.62,1640.82,2021.21,0.00,3515414282368.187500,3515414269608.969727,221,22,0.004830,0.010111,10872732,7276292,0,0,11481,0,1,1 +1774042053.438555,0.50,4,3992.50,51.62,1640.84,2021.18,0.00,1384.276883,14155.223206,48923,271135,0.004336,0.008425,10872846,7276459,0,0,11484,0,1,1 +1774042058.439553,0.60,4,3992.50,51.62,1640.87,2021.16,0.00,3517734808022.488281,3517734795254.789062,221,22,0.005034,0.010288,10872982,7276659,0,0,11486,0,1,1 +1774042063.437248,0.45,4,3992.50,51.62,1640.88,2021.15,0.00,3520060103023.702637,3520060103025.173340,11,0,0.004567,0.009025,10873103,7276835,0,0,11489,0,1,1 +1774042068.434623,0.50,4,3992.50,51.62,1641.02,2021.01,0.00,1382.358140,14162.000791,48165,271241,0.004198,0.009445,10873221,7277018,0,0,11491,0,1,1 +1774042073.439288,11.53,4,3992.50,52.13,1620.05,2041.06,0.00,3515157226949.675781,3515157214186.643555,238,2,0.031506,40.036808,10875191,7281597,0,0,11494,0,1,1 +1774042078.437812,0.70,4,3992.50,51.96,1626.73,2034.36,0.00,1384.092998,14192.891314,48923,271559,0.002760,0.007626,10875276,7281743,0,0,11496,0,1,1 +1774042083.434669,0.40,4,3992.50,51.91,1628.82,2032.27,0.00,3520650214288.554199,3520650201477.492676,11,0,0.002748,0.007638,10875360,7281890,0,0,11499,0,1,1 +1774042088.439344,0.55,4,3992.50,51.88,1629.96,2031.12,0.00,0.176788,0.000000,199,0,0.003405,0.009503,10875463,7282071,0,0,11501,0,1,1 +1774042093.438557,0.55,4,3992.50,51.87,1630.16,2030.93,0.00,3518991256461.396484,0.000000,11,0,0.002747,0.007647,10875547,7282219,0,0,11504,0,1,1 +1774042098.438499,0.50,4,3992.50,51.89,1629.43,2031.66,0.00,0.000000,0.000000,11,0,0.003446,0.009524,10875653,7282401,0,0,11506,0,1,1 +1774042103.436415,0.65,4,3992.50,51.89,1629.46,2031.64,0.00,0.000000,0.000000,11,0,0.003447,0.009513,10875759,7282582,0,0,11509,0,1,1 +1774042108.434643,0.45,4,3992.50,51.89,1629.46,2031.63,0.00,2.009501,0.000195,238,2,0.002798,0.007713,10875847,7282734,0,0,11511,0,1,1 +1774042113.438693,0.45,4,3992.50,51.90,1628.98,2032.11,0.00,0.000000,0.000000,238,2,0.003489,0.009596,10875957,7282922,0,0,11514,0,1,1 +1774042118.436402,0.50,4,3992.50,51.90,1628.98,2032.11,0.00,3520049665488.025391,3520049665489.857910,199,0,0.003412,0.009058,10876069,7283104,0,0,11516,0,1,1 +1774042123.436915,0.40,4,3992.50,51.88,1629.97,2031.12,0.00,1.314807,0.022068,221,22,0.002988,0.008291,10876161,7283265,0,0,11519,0,1,1 +1774042128.438793,0.50,4,3992.50,51.90,1629.00,2032.09,0.00,3517116547093.637207,3517116547095.056641,70,0,0.003432,0.009521,10876266,7283447,0,0,11521,0,1,1 +1774042133.438878,0.50,4,3992.50,51.71,1636.66,2024.44,0.00,3518377324693.732910,0.000000,11,0,0.003192,0.008875,10876363,7283616,0,0,11524,0,1,1 +1774042138.438658,35.05,4,3992.50,57.48,1414.61,2250.47,0.00,0.000000,0.000000,11,0,84.127768,0.048577,10885229,7286678,0,0,11526,0,1,1 +1774042143.434545,31.37,4,3992.50,57.56,1411.50,2253.44,0.00,1.493123,0.022088,221,22,122.275435,0.034075,10897900,7288943,0,0,11529,0,1,1 +1774042148.434848,29.03,4,3992.50,57.59,1410.14,2254.84,0.00,0.000000,0.000000,221,22,121.567694,0.036749,10910491,7291358,0,0,11531,0,1,1 +1774042153.438757,29.54,4,3992.50,57.83,1400.71,2264.30,0.00,1379.062247,14183.971290,48165,271846,120.675921,0.032351,10922873,7293789,0,0,11534,0,1,1 +1774042158.434871,28.78,4,3992.50,57.64,1408.26,2256.73,0.00,3521174179571.313965,3521174166747.719238,199,0,120.261880,0.036464,10934996,7296501,0,0,11536,0,1,1 +1774042163.438377,28.87,4,3992.50,57.60,1409.78,2255.23,0.00,1.314020,0.022055,221,22,119.688987,0.049123,10947278,7300109,0,0,11539,0,1,1 +1774042168.436633,28.53,4,3992.50,57.75,1403.81,2261.18,0.00,1384.684522,14200.147042,48923,271910,119.215278,0.052583,10959540,7303975,0,0,11541,0,1,1 +1774042173.439103,29.41,4,3992.50,57.73,1404.88,2260.16,0.00,3516699857190.438965,3516699844387.243652,11,0,119.511774,0.045910,10971785,7307342,0,0,11544,0,1,1 +1774042178.434644,13.07,4,3992.50,52.52,1608.69,2056.40,0.00,1.493226,0.022090,221,22,98.223329,0.020688,10981796,7308836,0,0,11546,0,1,1 +1774042183.434549,0.75,4,3992.50,51.87,1634.32,2030.76,0.00,3518503980235.619141,3518503980236.912109,199,0,0.006015,0.009308,10981950,7309032,0,0,11549,0,1,1 +1774042188.438385,17.25,4,3992.50,52.57,1606.87,2058.18,0.00,3515739893157.557617,0.000000,11,0,22.262464,0.108468,10989246,7314543,0,0,11551,0,1,1 +1774042193.438673,10.77,4,3992.50,51.55,1646.81,2018.20,0.00,0.000000,0.000000,11,0,17.968272,0.075095,10994978,7318750,0,0,11554,0,1,1 +1774042198.435127,2.41,4,3992.50,51.39,1652.80,2012.18,0.00,0.000000,0.000000,11,0,0.014701,0.013735,10995279,7319041,0,0,11556,0,1,1 +1774042203.439108,0.60,4,3992.50,51.39,1652.85,2012.17,0.00,1.490708,0.022053,221,22,0.004332,0.009024,10995393,7319209,0,0,11559,0,1,1 +1774042208.438959,0.85,4,3992.50,51.39,1652.93,2012.08,0.00,1380.355706,14196.773935,48189,273189,0.005043,0.010299,10995530,7319410,0,0,11561,0,1,1 +1774042213.439411,0.90,4,3992.50,51.33,1655.25,2009.76,0.00,3518118841669.607422,3518118828856.022949,199,0,0.004227,0.009916,10995650,7319602,0,0,11564,0,1,1 +1774042218.439345,25.97,4,3992.50,52.26,1613.50,2046.25,0.00,1.314959,0.022071,221,22,0.040597,101.757673,10998414,7330600,0,0,11566,0,1,1 +1774042223.435064,27.10,4,3992.50,51.61,1638.44,2020.72,0.00,0.000000,0.000000,221,22,0.046397,103.453172,11001784,7341674,0,0,11569,0,1,1 +1774042228.439052,1.30,4,3992.50,51.59,1639.37,2019.79,0.00,1383.291764,14389.982532,48966,274714,0.008064,0.011976,11001966,7341916,0,0,11571,0,1,1 +1774042233.435581,15.13,4,3992.50,53.24,1577.48,2084.38,0.00,15.673477,0.404382,48316,274784,40.090113,0.024618,11006293,7343285,0,0,11574,0,1,1 +1774042238.439220,1.25,4,3992.50,52.33,1612.90,2048.95,0.00,3515878725037.073730,3515878712044.184082,238,2,0.008209,0.013650,11006489,7343537,0,0,11576,0,1,1 +1774042243.434550,0.55,4,3992.50,51.81,1633.21,2028.65,0.00,3521726380879.382324,0.021895,221,22,0.003653,0.006505,11006582,7343666,0,0,11579,0,1,1 +1774042248.439514,0.65,4,3992.50,51.64,1640.06,2021.79,0.00,1402.725889,14387.785833,49074,274952,0.005068,0.010280,11006721,7343866,0,0,11581,0,1,1 +1774042253.438815,0.95,4,3992.50,51.62,1640.82,2021.04,0.00,3518929269914.189941,3518929256915.891113,11,0,0.007171,0.013091,11006906,7344125,0,0,11584,0,1,1 +1774042258.434554,0.65,4,3992.50,51.62,1640.84,2021.03,0.00,2.010502,0.000195,238,2,0.005405,0.008798,11007042,7344302,0,0,11586,0,1,1 +1774042263.434598,0.60,4,3992.50,51.62,1640.84,2021.00,0.00,1399.528588,14402.044657,48316,275021,0.005048,0.010331,11007179,7344505,0,0,11589,0,1,1 +1774042268.439001,0.60,4,3992.50,51.62,1640.88,2020.98,0.00,3515341509162.076660,3515341496172.895020,11,0,0.005687,0.011846,11007317,7344711,0,0,11591,0,1,1 +1774042273.434899,0.75,4,3992.50,51.62,1640.89,2020.96,0.00,1.493119,0.022088,221,22,0.004370,0.008432,11007433,7344878,0,0,11594,0,1,1 +1774042278.434537,0.60,4,3992.50,51.62,1640.91,2020.95,0.00,3518692069859.543457,3518692069861.013672,11,0,0.004998,0.010291,11007566,7345078,0,0,11596,0,1,1 +1774042283.437820,0.80,4,3992.50,51.62,1640.93,2020.93,0.00,0.000000,0.000000,11,0,0.005106,0.010334,11007707,7345282,0,0,11599,0,1,1 +1774042288.434690,0.55,4,3992.50,51.42,1648.57,2013.29,0.00,0.000000,0.000000,11,0,0.004326,0.008395,11007820,7345446,0,0,11601,0,1,1 +1774042293.435615,10.94,4,3992.50,52.02,1624.36,2036.67,0.00,0.049991,0.000000,70,0,0.022833,40.062366,11009197,7349924,0,0,11604,0,1,1 +1774042298.435238,0.90,4,3992.50,52.01,1624.68,2036.37,0.00,1.958937,0.000195,238,2,0.004875,0.012649,11009342,7350165,0,0,11606,0,1,1 +1774042303.434613,0.65,4,3992.50,51.64,1639.20,2021.84,0.00,3518877409184.723145,3518877409186.681641,70,0,0.002772,0.007665,11009428,7350314,0,0,11609,0,1,1 +1774042308.434630,0.85,4,3992.50,51.44,1647.14,2013.91,0.00,0.126953,0.000000,199,0,0.003433,0.009524,11009533,7350496,0,0,11611,0,1,1 +1774042313.438010,0.80,4,3992.50,51.44,1647.14,2013.91,0.00,1400.425993,14426.939473,48316,275638,0.003456,0.009528,11009640,7350679,0,0,11614,0,1,1 +1774042318.434543,0.60,4,3992.50,51.43,1647.56,2013.49,0.00,3520878505065.208496,3520878492021.022949,11,0,0.003671,0.008299,11009726,7350828,0,0,11616,0,1,1 +1774042323.435264,1.50,4,3992.50,51.44,1647.16,2013.89,0.00,0.176928,0.000000,199,0,0.003433,0.009533,11009831,7351011,0,0,11619,0,1,1 +1774042328.434711,0.55,4,3992.50,51.27,1653.84,2007.20,0.00,3518826343220.544922,0.000000,11,0,0.002085,0.005754,11009896,7351123,0,0,11621,0,1,1 +1774042333.438673,0.75,4,3992.50,51.29,1652.86,2008.18,0.00,1404.497269,14431.370568,49074,275759,0.003468,0.010232,11010004,7351314,0,0,11624,0,1,1 +1774042338.434469,0.60,4,3992.50,51.13,1659.30,2001.74,0.00,3521398634005.094727,3521398620956.923828,11,0,0.003543,0.009638,11010117,7351503,0,0,11626,0,1,1 +1774042343.437327,0.60,4,3992.50,51.15,1658.36,2002.70,0.00,0.049971,0.000000,70,0,0.002877,0.007738,11010210,7351659,0,0,11629,0,1,1 +1774042348.436300,0.70,4,3992.50,51.15,1658.36,2002.69,0.00,1405.849301,14445.793116,49074,275772,0.003434,0.009526,11010315,7351841,0,0,11631,0,1,1 +1774042353.439335,0.75,4,3992.50,51.15,1658.37,2002.68,0.00,3516302475013.479492,3516302461984.175293,11,0,0.003406,0.009528,11010418,7352024,0,0,11634,0,1,1 +1774042358.435292,24.86,4,3992.50,57.47,1414.86,2249.95,0.00,0.000000,0.000000,11,0,32.879245,0.030308,11014036,7353775,0,0,11636,0,1,1 +1774042363.434532,32.19,4,3992.50,57.61,1409.46,2255.44,0.00,1401.762639,14445.102219,48316,275862,120.191077,0.028424,11026633,7355439,0,0,11639,0,1,1 +1774042368.438786,28.79,4,3992.50,57.79,1402.36,2262.52,0.00,3515446832709.500000,3515446819679.227539,11,0,120.069577,0.036299,11039073,7358042,0,0,11641,0,1,1 +1774042373.437508,28.51,4,3992.50,57.89,1398.58,2266.37,0.00,0.176998,0.000000,199,0,119.796363,0.022584,11051336,7359687,0,0,11644,0,1,1 +1774042378.438554,28.40,4,3992.50,57.59,1410.24,2254.63,0.00,1401.079365,14440.012035,48316,275914,119.144436,0.034585,11063546,7362000,0,0,11646,0,1,1 +1774042383.439050,28.66,4,3992.50,57.74,1404.35,2260.56,0.00,3518088605710.702148,3518088592670.460449,70,0,119.556394,0.039299,11075718,7364875,0,0,11649,0,1,1 +1774042388.438611,28.49,4,3992.50,57.70,1405.98,2258.93,0.00,1.958961,0.000195,238,2,119.377964,0.029906,11088039,7366980,0,0,11651,0,1,1 +1774042393.438651,29.01,4,3992.50,57.71,1405.22,2259.62,0.00,3518408759731.641602,3518408759733.650391,11,0,118.969323,0.030254,11100426,7369022,0,0,11654,0,1,1 +1774042398.439212,25.73,4,3992.50,57.75,1403.80,2261.18,0.00,2.008564,0.000195,238,2,119.752895,0.029671,11112743,7371168,0,0,11656,0,1,1 +1774042403.438850,1.30,4,3992.50,51.38,1653.26,2011.70,0.00,1399.735012,14444.214691,48327,275982,35.655640,0.013734,11116485,7371909,0,0,11659,0,1,1 +1774042408.438575,8.69,4,3992.50,51.79,1637.28,2027.65,0.00,3518630672351.815430,3518630659309.571289,11,0,8.066320,0.048716,11119391,7374154,0,0,11661,0,1,1 +1774042413.439006,14.88,4,3992.50,52.03,1627.71,2037.20,0.00,0.049996,0.000000,70,0,26.150778,0.113244,11127743,7380299,0,0,11664,0,1,1 +1774042418.439442,6.18,4,3992.50,52.06,1626.46,2038.43,0.00,1401.470363,14442.967773,48327,277350,6.043717,0.033277,11129737,7381814,0,0,11666,0,1,1 +1774042423.438630,1.05,4,3992.50,51.81,1636.38,2028.48,0.00,3519008534000.690430,3519008520955.988770,11,0,0.006659,0.012352,11129891,7382041,0,0,11669,0,1,1 +1774042428.439406,1.50,4,3992.50,51.61,1644.07,2020.84,0.00,1405.485102,14442.158265,49085,277411,0.004335,0.008388,11130005,7382205,0,0,11671,0,1,1 +1774042433.437663,15.69,4,3992.50,52.38,1611.39,2050.96,0.00,3519664498297.596191,3519664485254.350586,11,0,0.050137,64.936722,11133575,7389527,0,0,11674,0,1,1 +1774042438.439380,29.54,4,3992.50,52.95,1587.15,2073.09,0.00,0.049983,0.000000,70,0,0.041558,122.144027,11136561,7402111,0,0,11676,0,1,1 +1774042443.438838,7.13,4,3992.50,51.87,1628.60,2030.88,0.00,0.000000,0.000000,70,0,0.008500,18.036468,11136935,7404105,0,0,11679,0,1,1 +1774042448.434540,15.90,4,3992.50,51.81,1633.66,2028.35,0.00,3521464167218.930176,0.000000,11,0,40.104077,0.034610,11141512,7406238,0,0,11681,0,1,1 +1774042453.437919,0.75,4,3992.50,51.82,1633.21,2028.79,0.00,0.049966,0.000000,70,0,0.006136,0.007809,11141651,7406400,0,0,11684,0,1,1 +1774042458.434798,0.80,4,3992.50,51.82,1633.01,2028.99,0.00,3520635076581.774902,0.000000,11,0,0.005727,0.012532,11141801,7406624,0,0,11686,0,1,1 +1774042463.438554,0.45,4,3992.50,51.82,1633.02,2028.97,0.00,0.000000,0.000000,11,0,0.004366,0.008401,11141918,7406790,0,0,11689,0,1,1 +1774042468.438717,0.40,4,3992.50,51.82,1633.04,2028.97,0.00,0.176947,0.000000,199,0,0.005022,0.010934,11142053,7406994,0,0,11691,0,1,1 +1774042473.436775,0.60,4,3992.50,51.82,1633.11,2028.89,0.00,0.000000,0.000000,199,0,0.005012,0.010292,11142187,7407194,0,0,11694,0,1,1 +1774042478.434539,0.45,4,3992.50,51.82,1633.12,2028.87,0.00,3520012024246.591309,0.000000,70,0,0.004363,0.008437,11142303,7407361,0,0,11696,0,1,1 +1774042483.435283,0.40,4,3992.50,51.82,1633.14,2028.85,0.00,0.126934,0.000000,199,0,0.004323,0.008398,11142416,7407526,0,0,11699,0,1,1 +1774042488.438971,0.35,4,3992.50,51.63,1640.56,2021.44,0.00,0.000000,0.000000,199,0,0.004250,0.008313,11142533,7407694,0,0,11701,0,1,1 +1774042493.438707,0.45,4,3992.50,51.63,1640.58,2021.42,0.00,3518623142782.032227,0.000000,11,0,0.005010,0.010301,11142667,7407895,0,0,11704,0,1,1 +1774042498.438920,0.65,4,3992.50,51.63,1640.60,2021.40,0.00,1.491831,0.022069,221,22,0.005022,0.010290,11142802,7408095,0,0,11706,0,1,1 +1774042503.438840,0.45,4,3992.50,51.63,1640.62,2021.38,0.00,0.000000,0.000000,221,22,0.004423,0.008440,11142922,7408263,0,0,11709,0,1,1 +1774042508.439130,0.40,4,3992.50,51.63,1640.65,2021.36,0.00,3518233154877.135254,3518233154878.428223,199,0,0.005030,0.010298,11143058,7408464,0,0,11711,0,1,1 +1774042513.438954,0.80,4,3992.50,51.63,1640.66,2021.34,0.00,3518560780033.956055,0.000000,70,0,0.004404,0.010064,11143181,7408658,0,0,11714,0,1,1 +1774042518.439055,11.01,4,3992.50,51.68,1637.79,2023.20,0.00,1.441865,0.022070,221,22,0.025688,40.069090,11144742,7413039,0,0,11716,0,1,1 +1774042523.434656,0.60,4,3992.50,51.52,1643.98,2017.02,0.00,3521535209756.270996,3521535209757.564941,199,0,0.003436,0.009542,11144847,7413222,0,0,11719,0,1,1 +1774042528.437192,0.45,4,3992.50,51.54,1643.00,2018.00,0.00,3516653761137.977051,0.000000,11,0,0.003444,0.009519,11144953,7413404,0,0,11721,0,1,1 +1774042533.439437,0.45,4,3992.50,51.55,1642.79,2018.20,0.00,0.176874,0.000000,199,0,0.002733,0.008261,11145036,7413554,0,0,11724,0,1,1 +1774042538.439154,0.45,4,3992.50,51.55,1642.80,2018.20,0.00,3518636099084.796875,0.000000,11,0,0.003433,0.009525,11145141,7413736,0,0,11726,0,1,1 +1774042543.439019,0.50,4,3992.50,51.55,1642.80,2018.19,0.00,1.491935,0.022071,221,22,0.002976,0.008267,11145232,7413895,0,0,11729,0,1,1 +1774042548.438988,0.45,4,3992.50,51.55,1642.82,2018.18,0.00,1419.900911,14690.646666,48451,279716,0.002551,0.006998,11145312,7414030,0,0,11731,0,1,1 +1774042553.434641,0.75,4,3992.50,51.55,1642.60,2018.40,0.00,3521498892975.716309,3521498879694.799805,199,0,0.005603,0.012396,11145468,7414275,0,0,11734,0,1,1 +1774042558.439281,0.50,4,3992.50,51.55,1642.61,2018.39,0.00,1.313722,0.022050,221,22,0.004544,0.009986,11145599,7414475,0,0,11736,0,1,1 +1774042563.434546,0.45,4,3992.50,51.55,1642.62,2018.38,0.00,0.517384,3521772314586.711914,238,2,0.002893,0.007778,11145693,7414632,0,0,11739,0,1,1 +1774042568.436569,0.50,4,3992.50,51.51,1644.21,2016.79,0.00,3517014543438.433594,3517014543440.441406,11,0,0.003444,0.009520,11145799,7414814,0,0,11741,0,1,1 +1774042573.438994,0.55,4,3992.50,51.54,1642.98,2018.02,0.00,0.049976,0.000000,70,0,0.003432,0.009529,11145904,7414997,0,0,11744,0,1,1 +1774042578.439038,0.40,4,3992.50,51.54,1642.99,2018.01,0.00,3518406252537.577637,0.000000,11,0,0.002747,0.007623,11145988,7415143,0,0,11746,0,1,1 +1774042583.435893,26.23,4,3992.50,57.95,1396.15,2268.68,0.00,1422.278573,14699.949954,48451,279845,39.688711,0.031090,11150363,7416813,0,0,11749,0,1,1 +1774042588.438922,32.81,4,3992.50,57.74,1404.11,2260.70,0.00,3516306891610.959473,3516306878349.624512,70,0,118.293776,0.053762,11162506,7420600,0,0,11751,0,1,1 +1774042593.438374,30.73,4,3992.50,57.79,1402.21,2262.63,0.00,3518822744474.561523,0.000000,11,0,119.981762,0.045838,11174851,7423845,0,0,11754,0,1,1 +1774042598.438982,30.45,4,3992.50,57.70,1405.82,2258.99,0.00,0.000000,0.000000,11,0,118.148944,0.035249,11186982,7426470,0,0,11756,0,1,1 +1774042603.438634,31.19,4,3992.50,57.48,1414.47,2250.36,0.00,2.008929,0.000195,238,2,120.176530,0.025724,11199445,7428226,0,0,11759,0,1,1 +1774042608.438493,30.51,4,3992.50,57.66,1407.51,2257.33,0.00,3518536663838.531250,3518536663840.540039,11,0,118.570806,0.030897,11211792,7430335,0,0,11761,0,1,1 +1774042613.439145,30.11,4,3992.50,57.57,1410.73,2254.13,0.00,0.176930,0.000000,199,0,119.548909,0.033476,11224022,7432766,0,0,11764,0,1,1 +1774042618.435011,29.76,4,3992.50,57.60,1409.57,2255.25,0.00,0.000000,0.000000,199,0,119.265660,0.026398,11236350,7434524,0,0,11766,0,1,1 +1774042623.439059,26.46,4,3992.50,57.48,1414.45,2250.45,0.00,1.830354,0.000195,238,2,119.270456,0.041754,11248640,7437528,0,0,11769,0,1,1 +1774042628.436092,0.90,4,3992.50,52.97,1591.02,2073.88,0.00,3520526497015.583984,3520526497017.593750,11,0,32.464452,0.009269,11251966,7438197,0,0,11771,0,1,1 +1774042633.434576,10.05,4,3992.50,53.02,1588.89,2075.95,0.00,2.009398,0.000195,238,2,12.091891,0.067547,11256062,7441299,0,0,11774,0,1,1 +1774042638.434555,18.40,4,3992.50,53.19,1582.09,2082.70,0.00,3518452640814.474121,3518452640816.482422,11,0,28.175500,0.125050,11265244,7448008,0,0,11776,0,1,1 +1774042643.439340,0.75,4,3992.50,52.54,1607.72,2057.05,0.00,0.000000,0.000000,11,0,0.005710,0.011673,11265394,7448232,0,0,11779,0,1,1 +1774042648.439205,0.40,4,3992.50,52.21,1620.70,2044.11,0.00,0.050001,0.000000,70,0,0.003730,0.008153,11265497,7448389,0,0,11781,0,1,1 +1774042653.438574,20.34,4,3992.50,52.04,1623.38,2037.52,0.00,3518881629557.436523,0.000000,11,0,0.032759,82.537206,11267724,7457263,0,0,11784,0,1,1 +1774042658.439070,29.70,4,3992.50,51.99,1623.57,2035.69,0.00,1.491746,0.022068,221,22,0.035992,118.355933,11270365,7469525,0,0,11786,0,1,1 +1774042663.438673,2.06,4,3992.50,52.14,1617.78,2041.52,0.00,1424.256603,14882.287451,49237,282334,0.008421,4.220632,11270677,7470253,0,0,11789,0,1,1 +1774042668.437486,14.90,4,3992.50,52.56,1603.90,2057.70,0.00,3519272805294.244141,3519272791833.547363,238,2,40.075901,0.027509,11275161,7471821,0,0,11791,0,1,1 +1774042673.438671,0.70,4,3992.50,51.60,1641.16,2020.43,0.00,1438.948018,14877.738257,48626,282448,0.006813,0.009669,11275320,7472016,0,0,11794,0,1,1 +1774042678.438609,0.65,4,3992.50,51.34,1651.68,2009.91,0.00,4.060890,0.035743,49384,282497,0.005837,0.012636,11275479,7472247,0,0,11796,0,1,1 +1774042683.439118,0.40,4,3992.50,51.31,1652.66,2008.93,0.00,3518079721285.219238,3518079707850.464844,199,0,0.004335,0.008399,11275593,7472412,0,0,11799,0,1,1 +1774042688.438700,0.60,4,3992.50,51.36,1650.91,2010.69,0.00,1445.302596,14882.562336,49384,282513,0.005023,0.010291,11275728,7472612,0,0,11801,0,1,1 +1774042693.439110,0.65,4,3992.50,51.29,1653.33,2008.27,0.00,3518148701653.738770,3518148688218.704102,199,0,0.005030,0.010295,11275864,7472813,0,0,11804,0,1,1 +1774042698.438635,0.45,4,3992.50,51.29,1653.35,2008.24,0.00,1.832010,0.000195,238,2,0.004361,0.008434,11275980,7472980,0,0,11806,0,1,1 +1774042703.439192,0.40,4,3992.50,51.30,1653.15,2008.45,0.00,3518045214914.773926,3518045214916.782227,11,0,0.004335,0.008399,11276094,7473145,0,0,11809,0,1,1 +1774042708.434546,0.45,4,3992.50,51.32,1652.43,2009.17,0.00,0.177118,0.000000,199,0,0.004446,0.008460,11276215,7473314,0,0,11811,0,1,1 +1774042713.438536,0.40,4,3992.50,51.34,1651.46,2010.14,0.00,3515631604784.036133,0.000000,11,0,0.004345,0.008380,11276330,7473478,0,0,11814,0,1,1 +1774042718.438330,0.45,4,3992.50,51.34,1651.47,2010.12,0.00,0.176960,0.000000,199,0,0.005023,0.010266,11276465,7473676,0,0,11816,0,1,1 +1774042723.438627,0.60,4,3992.50,51.34,1651.50,2010.10,0.00,3518227949610.099121,0.000000,11,0,0.005097,0.010340,11276605,7473880,0,0,11819,0,1,1 +1774042728.438910,0.50,4,3992.50,51.34,1651.51,2010.08,0.00,1445.277099,14897.108178,49384,282977,0.004323,0.009033,11276718,7474048,0,0,11821,0,1,1 +1774042733.434521,10.05,4,3992.50,51.83,1618.18,2029.46,0.00,3521528427629.446289,3521528414164.985840,70,0,0.001712,0.002950,11276761,7474108,0,0,11824,0,1,1 +1774042738.439106,0.60,4,3992.50,51.57,1631.21,2018.95,0.00,1.440574,0.022050,221,22,0.000000,0.000020,11276761,7474110,0,0,11826,0,1,1 +1774042743.438977,7.85,4,3992.50,51.95,1612.36,2033.79,0.00,3518527663894.597656,3518527663896.067383,11,0,0.001859,0.001918,11276801,7474153,0,0,11829,0,1,1 +1774042748.435446,0.45,4,3992.50,51.69,1623.97,2023.61,0.00,2.010209,0.000195,238,2,0.000413,0.000808,11276812,7474170,0,0,11831,0,1,1 +1774042753.434617,9.10,4,3992.50,52.48,1593.67,2054.54,0.00,3519019965627.031250,0.021879,221,24,0.000229,0.000663,11276819,7474185,0,0,11834,0,1,1 +1774042758.434562,0.25,4,3992.50,52.49,1592.99,2055.25,0.00,3518475760820.796387,3518475760822.089355,199,0,0.000229,0.000653,11276826,7474199,0,0,11836,0,1,1 +1774042763.434570,7.69,4,3992.50,52.32,1598.10,2048.28,0.00,1445.281352,16266.445814,49390,290403,0.000000,0.000030,11276826,7474202,0,0,11839,0,1,1 +1774042768.434939,0.25,4,3992.50,52.28,1599.33,2047.05,0.00,3518177715796.684570,3518177700976.769043,11,0,0.000000,0.000020,11276826,7474204,0,0,11841,0,1,1 +1774042773.436419,0.80,4,3992.50,52.12,1610.45,2040.57,0.00,1445.060466,16323.103662,49395,290735,0.000279,0.000725,11276837,7474223,0,0,11844,0,1,1 +1774042778.439056,11.10,4,3992.50,51.53,1648.73,2017.63,0.00,3516583046827.325684,3516583031952.668457,70,0,0.026179,40.050377,11278423,7478729,0,0,11846,0,1,1 +1774042783.439106,0.65,4,3992.50,51.49,1650.56,2015.80,0.00,1.958769,0.000195,238,2,0.002721,0.007633,11278505,7478876,0,0,11849,0,1,1 +1774042788.438579,0.40,4,3992.50,51.48,1650.81,2015.55,0.00,3518808167972.290527,3518808167974.122559,199,0,0.002085,0.005754,11278570,7478988,0,0,11851,0,1,1 +1774042793.435892,0.60,4,3992.50,51.51,1649.62,2016.75,0.00,0.000000,0.000000,199,0,0.003473,0.010215,11278678,7479177,0,0,11854,0,1,1 +1774042798.434595,0.50,4,3992.50,51.51,1649.62,2016.74,0.00,3519350343042.378906,0.000000,11,0,0.002768,0.007633,11278764,7479324,0,0,11856,0,1,1 +1774042803.437091,0.45,4,3992.50,51.51,1649.62,2016.74,0.00,1.491150,0.022059,221,28,0.003457,0.009529,11278871,7479507,0,0,11859,0,1,1 +1774042808.438669,0.70,4,3992.50,51.51,1649.55,2016.80,0.00,3517326489233.017578,3517326489234.310059,199,0,0.003432,0.009521,11278976,7479689,0,0,11861,0,1,1 +1774042813.434614,0.60,4,3992.50,51.53,1648.82,2017.54,0.00,1442.517394,16381.639676,48665,291236,0.002749,0.007639,11279060,7479836,0,0,11864,0,1,1 +1774042818.439227,0.50,4,3992.50,51.54,1648.58,2017.78,0.00,3515194162423.461914,3515194147510.390137,11,0,0.003443,0.009515,11279166,7480018,0,0,11866,0,1,1 +1774042823.436061,0.60,4,3992.50,51.34,1656.46,2009.90,0.00,0.000000,0.000000,11,0,0.003641,0.009728,11279285,7480215,0,0,11869,0,1,1 +1774042828.439240,2.25,4,3992.50,51.34,1656.47,2009.89,0.00,1.490946,0.022056,221,28,0.002745,0.007618,11279369,7480361,0,0,11871,0,1,1 +1774042833.439105,3.26,4,3992.50,51.98,1608.87,2035.00,0.00,1444.141128,16442.373238,49429,291708,0.002747,0.007633,11279453,7480508,0,0,11874,0,1,1 +1774042838.438061,6.54,4,3992.50,52.05,1606.99,2038.07,0.00,3519172281586.267090,3519172266586.777344,11,0,0.000216,0.000654,11279459,7480522,0,0,11876,0,1,1 +1774042843.437765,1.00,4,3992.50,53.15,1567.51,2080.80,0.00,2.008908,0.000195,238,2,0.000000,0.000030,11279459,7480525,0,0,11879,0,1,1 +1774042848.438620,6.57,4,3992.50,52.63,1583.41,2060.62,0.00,3517835938955.546875,3517835938957.378906,199,0,0.002525,0.002610,11279500,7480569,0,0,11881,0,1,1 +1774042853.438385,4.76,4,3992.50,52.25,1596.96,2045.62,0.00,3518602632467.186035,0.000000,11,0,0.002126,0.002827,11279549,7480631,0,0,11884,0,1,1 +1774042858.435310,3.11,4,3992.50,52.35,1590.57,2049.59,0.00,0.050031,0.000000,70,0,0.001065,0.000429,11279571,7480647,0,0,11886,0,1,1 +1774042863.437207,0.35,4,3992.50,52.35,1590.58,2049.57,0.00,0.126905,0.000000,199,0,0.000229,0.000663,11279578,7480662,0,0,11889,0,1,1 +1774042868.435791,2.71,4,3992.50,52.48,1591.57,2054.53,0.00,3519433707677.995605,0.000000,11,0,0.000470,0.001602,11279593,7480689,0,0,11891,0,1,1 +1774042873.439366,36.36,4,3992.50,64.61,1137.58,2529.43,0.00,0.049964,0.000000,70,0,58.449907,0.040285,11286056,7483196,0,0,11894,0,1,1 +1774042878.435492,63.04,4,3992.50,64.49,1143.22,2524.90,0.00,1446.734421,17464.647307,49452,296959,199.439721,0.069757,11306915,7488372,0,0,11896,0,1,1 +1774042883.438602,39.45,4,3992.50,64.52,1143.35,2525.94,0.00,3516250034513.818359,3516250018518.315430,11,0,157.518820,0.066877,11323012,7493439,0,0,11899,0,1,1 +1774042888.439401,35.34,4,3992.50,64.60,1140.02,2529.33,0.00,0.049992,0.000000,70,0,138.168706,0.061639,11337162,7498052,0,0,11901,0,1,1 +1774042893.438519,33.01,4,3992.50,64.44,1146.21,2522.95,0.00,1441.858504,17454.271044,48702,296966,129.601250,0.059677,11350319,7502485,0,0,11904,0,1,1 +1774042898.436181,32.34,4,3992.50,64.43,1146.26,2522.50,0.00,3520083184962.518066,3520083168945.490234,11,0,125.633975,0.057404,11363152,7506678,0,0,11906,0,1,1 +1774042903.434534,31.57,4,3992.50,64.40,1147.26,2521.26,0.00,0.000000,0.000000,11,0,123.013464,0.060820,11375720,7510991,0,0,11909,0,1,1 +1774042908.434550,30.02,4,3992.50,64.31,1150.19,2517.94,0.00,2.008782,0.000195,238,2,120.966410,0.059098,11387965,7515409,0,0,11911,0,1,1 +1774042913.437490,29.82,4,3992.50,64.50,1142.40,2525.35,0.00,3516369879470.406250,3516369879472.413574,11,0,120.894658,0.057132,11400182,7519690,0,0,11914,0,1,1 +1774042918.434793,31.75,4,3992.50,64.52,1141.42,2526.09,0.00,0.000000,0.000000,11,0,120.035561,0.058997,11412541,7523837,0,0,11916,0,1,1 +1774042923.435549,30.52,4,3992.50,64.65,1136.23,2531.25,0.00,1.491669,0.022067,221,40,119.544621,0.050782,11424605,7527755,0,0,11919,0,1,1 +1774042928.438390,35.93,4,3992.50,64.98,1105.73,2544.11,0.00,3516439151277.221191,3516439151278.513672,199,0,119.896429,0.052929,11436816,7531689,0,0,11921,0,1,1 +1774042933.436588,33.03,4,3992.50,64.40,1128.65,2521.57,0.00,1.832496,0.000195,238,2,268.662929,0.117432,11464193,7540898,0,0,11927,0,1,1 +1774042939.699058,34.37,4,3992.50,64.42,1127.91,2522.31,0.00,2809145247265.156738,2809145247266.760254,11,0,0.000000,0.000000,11464193,7540898,0,0,11927,0,1,1 +1774042943.437603,43.18,4,3992.50,67.41,1012.42,2639.34,0.00,1.995287,0.029517,221,42,101.120110,0.029257,11471956,7542630,0,0,11929,0,1,1 +1774042948.436519,3.22,4,3992.50,66.57,1045.27,2606.36,0.00,1444.940508,18252.946215,49524,301434,0.000781,0.000549,11472018,7542674,0,0,11931,0,1,1 +1774042953.434908,11.02,4,3992.50,67.01,1027.14,2623.44,0.00,3519570978803.023926,3519570961994.719727,11,0,42.031750,0.012658,11476192,7543653,0,0,11934,0,1,1 +1774042958.438553,0.56,4,3992.50,67.15,1021.50,2629.10,0.00,2.007326,0.000195,238,2,0.543253,0.000745,11476298,7543713,0,0,11936,0,1,1 +1774042963.438681,1.06,4,3992.50,66.98,1028.12,2622.46,0.00,3518346491131.645020,3518346491133.603516,70,0,4.825739,0.002686,11476937,7543927,0,0,11939,0,1,1 +1774042968.438428,7.15,4,3992.50,59.46,1325.09,2327.80,0.00,1446.306960,18343.471971,49559,302010,106.990497,0.027144,11486894,7545961,0,0,11941,0,1,1 +1774042973.438725,0.75,4,3992.50,51.98,1633.88,2035.29,0.00,3518228317556.081055,3518228300660.823730,11,0,19.154397,0.007417,11488657,7546379,0,0,11944,0,1,1 +1774042978.435534,1.00,4,3992.50,51.71,1644.54,2024.59,0.00,0.000000,0.000000,11,0,0.006749,0.006876,11488797,7546521,0,0,11946,0,1,1 +1774042983.436413,2.11,4,3992.50,51.53,1651.54,2017.58,0.00,0.176922,0.000000,199,0,0.013640,0.015241,11489070,7546817,0,0,11949,0,1,1 +1774042988.439433,19.67,4,3992.50,51.96,1634.73,2034.45,0.00,1.830730,0.000195,238,2,30.158431,0.130583,11498634,7553947,0,0,11951,0,1,1 +1774042993.438868,8.23,4,3992.50,51.56,1650.58,2018.56,0.00,3518835059633.355957,3518835059635.314941,70,0,10.074428,0.052055,11502067,7556468,0,0,11954,0,1,1 +1774042998.434633,0.85,4,3992.50,51.54,1651.32,2017.78,0.00,0.000000,0.000000,70,0,0.005046,0.009795,11502197,7556656,0,0,11956,0,1,1 +1774043003.434546,0.50,4,3992.50,51.54,1651.39,2017.75,0.00,1466.687503,18344.045439,49877,303196,0.005048,0.010301,11502334,7556857,0,0,11959,0,1,1 +1774043008.434548,0.50,4,3992.50,51.54,1651.18,2017.98,0.00,3518435307462.914551,3518435290584.440430,221,46,0.005022,0.010253,11502469,7557054,0,0,11961,0,1,1 +1774043013.438548,0.40,4,3992.50,51.56,1650.46,2018.70,0.00,3515625236739.404297,3515625236740.696289,199,0,0.004332,0.008431,11502583,7557222,0,0,11964,0,1,1 +1774043018.439123,0.50,4,3992.50,51.43,1655.42,2013.75,0.00,0.000000,0.000000,199,0,0.005034,0.010289,11502719,7557422,0,0,11966,0,1,1 +1774043023.438982,0.45,4,3992.50,51.46,1654.20,2014.96,0.00,0.000000,0.000000,199,0,0.004692,0.009847,11502850,7557614,0,0,11969,0,1,1 +1774043028.434607,6.90,4,3992.50,51.82,1622.66,2028.97,0.00,1.316093,0.022090,221,49,0.001489,0.002287,11502887,7557660,0,0,11971,0,1,1 +1774043033.434603,3.17,4,3992.50,51.86,1621.12,2030.55,0.00,0.516895,3518440227001.204590,238,2,0.001252,0.002324,11502916,7557700,0,0,11974,0,1,1 +1774043038.438653,6.67,4,3992.50,51.67,1625.33,2022.91,0.00,1459.513857,18913.781590,49141,306998,0.002395,0.004834,11502980,7557795,0,0,11976,0,1,1 +1774043043.434556,0.20,4,3992.50,51.59,1628.33,2019.92,0.00,3521322460025.032227,3521322442542.839355,221,52,0.000075,0.000714,11502985,7557805,0,0,11979,0,1,1 +1774043048.438868,7.89,4,3992.50,52.90,1577.09,2071.16,0.00,1459.954166,19190.554696,49141,308604,0.001869,0.001906,11503026,7557847,0,0,11981,0,1,1 +1774043053.438602,0.50,4,3992.50,52.28,1601.19,2047.06,0.00,3518624213852.762695,3518624196107.399902,11,0,0.000405,0.000797,11503036,7557863,0,0,11984,0,1,1 +1774043058.438867,3.12,4,3992.50,52.69,1585.52,2062.74,0.00,1466.688209,19363.521161,49899,309622,0.000795,0.000403,11503051,7557874,0,0,11986,0,1,1 +1774043063.435602,2.56,4,3992.50,51.97,1634.41,2034.67,0.00,3520736026939.803223,3520736009030.329590,11,0,0.002743,0.004632,11503117,7557961,0,0,11989,0,1,1 +1774043068.438464,0.40,4,3992.50,51.90,1636.96,2032.12,0.00,1461.868063,19357.928457,49141,309731,0.005020,0.010285,11503252,7558161,0,0,11991,0,1,1 +1774043073.438845,0.55,4,3992.50,51.83,1639.82,2029.25,0.00,3518169739974.772949,3518169722068.358887,221,58,0.004348,0.008399,11503367,7558326,0,0,11994,0,1,1 +1774043078.438824,0.40,4,3992.50,51.76,1642.41,2026.66,0.00,3518451842826.613281,3518451842828.083008,11,0,0.005035,0.010278,11503503,7558525,0,0,11996,0,1,1 +1774043083.435405,0.55,4,3992.50,51.75,1643.04,2026.03,0.00,1467.769584,19382.301650,49899,309813,0.005038,0.010307,11503639,7558726,0,0,11999,0,1,1 +1774043088.435543,1.10,4,3992.50,51.87,1638.03,2030.86,0.00,0.028905,0.005078,49906,309830,0.009219,1.413645,11504025,7559226,0,0,12001,0,1,1 +1774043093.434503,28.03,4,3992.50,52.28,1616.96,2046.81,0.00,3519168862330.229492,3519168844424.249512,11,0,0.038864,114.593446,11506756,7571330,0,0,12004,0,1,1 +1774043098.439012,22.89,4,3992.50,53.92,1548.14,2111.17,0.00,2.006980,0.000195,238,2,0.017911,89.046725,11508020,7580597,0,0,12006,0,1,1 +1774043103.435818,11.00,4,3992.50,56.57,1445.44,2215.00,0.00,3520685677890.084961,3520685677892.094727,11,0,25.867430,0.031095,11511199,7582222,0,0,12009,0,1,1 +1774043108.439147,1.70,4,3992.50,51.53,1642.89,2017.51,0.00,0.000000,0.000000,11,0,14.219127,0.019955,11512859,7583048,0,0,12011,0,1,1 +1774043113.438683,11.19,4,3992.50,52.24,1614.29,2045.29,0.00,0.176970,0.000000,199,0,0.026952,40.074307,11514592,7587633,0,0,12014,0,1,1 +1774043118.439427,1.15,4,3992.50,51.82,1630.35,2028.99,0.00,1.831563,0.000195,238,2,0.003713,0.009338,11514700,7587812,0,0,12016,0,1,1 +1774043123.439146,7.48,4,3992.50,52.45,1585.54,2053.54,0.00,3518634849896.983398,3518634849898.992188,11,0,0.000916,0.002564,11514728,7587863,0,0,12019,0,1,1 +1774043128.434563,5.74,4,3992.50,52.71,1578.23,2063.73,0.00,0.050046,0.000000,70,0,0.000458,0.001933,11514742,7587893,0,0,12021,0,1,1 +1774043133.434610,2.01,4,3992.50,52.21,1596.84,2043.96,0.00,1509.435946,20092.292031,57973,314251,0.000720,0.001970,11514766,7587935,0,0,12024,0,1,1 +1774043138.439390,5.42,4,3992.50,54.07,1523.82,2117.04,0.00,0.000000,202.070914,57973,315300,0.000229,0.000653,11514773,7587949,0,0,12026,0,1,1 +1774043143.438905,2.21,4,3992.50,52.76,1572.91,2065.72,0.00,3518778471177.436523,3518778452390.368164,11,0,0.000229,0.001307,11514780,7587968,0,0,12029,0,1,1 +1774043148.434509,4.68,4,3992.50,51.80,1615.95,2027.91,0.00,1.493207,0.022090,221,66,0.000229,0.000654,11514787,7587982,0,0,12031,0,1,1 +1774043153.434602,6.37,4,3992.50,52.60,1584.18,2059.28,0.00,3518371597584.532227,3518371597585.952148,70,0,0.002862,0.003846,11514843,7588052,0,0,12034,0,1,1 +1774043158.439226,0.90,4,3992.50,51.55,1626.93,2018.48,0.00,1512.121279,20824.649242,58742,318389,0.001825,0.002421,11514892,7588110,0,0,12036,0,1,1 +1774043163.438695,0.75,4,3992.50,51.32,1652.34,2009.33,0.00,3518811235187.301270,3518811215854.907227,11,0,0.001467,0.003907,11514940,7588191,0,0,12039,0,1,1 +1774043168.439260,0.80,4,3992.50,50.98,1665.88,1995.79,0.00,0.000000,0.000000,11,0,0.002746,0.007622,11515024,7588337,0,0,12041,0,1,1 +1774043173.434618,0.80,4,3992.50,50.94,1667.17,1994.50,0.00,0.000000,0.000000,11,0,0.003432,0.009551,11515129,7588521,0,0,12044,0,1,1 +1774043178.439300,9.66,4,3992.50,58.20,1383.15,2278.49,0.00,1512.154367,20824.514043,58743,318463,5.210250,0.018595,11515959,7589258,0,0,12046,0,1,1 +1774043183.438713,38.09,4,3992.50,58.04,1389.22,2272.34,0.00,3518850655431.335938,3518850636098.441895,199,0,120.783976,0.063000,11528398,7593812,0,0,12049,0,1,1 +1774043188.438606,29.67,4,3992.50,57.99,1391.22,2270.36,0.00,1513.425768,20844.572091,58743,318555,120.770363,0.049422,11540787,7597327,0,0,12051,0,1,1 +1774043193.434467,30.07,4,3992.50,57.88,1395.45,2266.13,0.00,3521352215129.804199,3521352195783.180664,70,0,121.264947,0.040434,11553045,7600452,0,0,12054,0,1,1 +1774043198.436465,30.08,4,3992.50,57.89,1395.14,2266.42,0.00,1512.916034,20835.913650,58743,318582,119.915845,0.044203,11565191,7603809,0,0,12056,0,1,1 +1774043203.434553,30.42,4,3992.50,57.76,1400.19,2261.35,0.00,0.000000,0.023251,58743,318615,119.610708,0.051448,11577379,7607644,0,0,12059,0,1,1 +1774043208.434497,29.37,4,3992.50,57.71,1402.09,2259.50,0.00,3518476761383.177734,3518476742050.799316,221,70,119.364804,0.053419,11589543,7611659,0,0,12061,0,1,1 +1774043213.434510,30.58,4,3992.50,57.76,1404.29,2261.33,0.00,3518427851974.678711,3518427851976.148926,11,0,120.166746,0.039727,11601856,7614525,0,0,12064,0,1,1 +1774043218.434864,33.89,4,3992.50,57.73,1389.45,2260.36,0.00,1513.463509,20945.317743,58743,319212,118.952123,0.045708,11613876,7618083,0,0,12066,0,1,1 +1774043223.436268,11.37,4,3992.50,53.71,1545.66,2102.90,0.00,3517449236077.058105,3517449216649.287109,11,0,59.466687,0.016428,11619776,7619293,0,0,12069,0,1,1 +1774043228.434534,2.91,4,3992.50,53.18,1565.27,2082.11,0.00,0.177015,0.000000,199,0,0.000000,0.000020,11619776,7619295,0,0,12071,0,1,1 +1774043233.438856,0.50,4,3992.50,52.87,1577.31,2070.07,0.00,1512.172286,21424.895047,58754,321768,0.000000,0.000030,11619776,7619298,0,0,12074,0,1,1 +1774043238.438700,0.60,4,3992.50,52.73,1582.69,2064.68,0.00,3518546849513.639648,3518546829581.250488,238,2,0.000000,0.000020,11619776,7619300,0,0,12076,0,1,1 +1774043243.438680,6.92,4,3992.50,52.20,1600.13,2043.93,0.00,3518451505054.838379,0.021875,221,72,0.002238,0.002454,11619806,7619339,0,0,12079,0,1,1 +1774043248.437546,3.27,4,3992.50,52.16,1609.61,2041.99,0.00,3519235248966.964355,3519235248968.257812,199,0,0.000237,0.000662,11619814,7619354,0,0,12081,0,1,1 +1774043253.436553,3.21,4,3992.50,52.81,1582.84,2067.65,0.00,1.315203,0.022075,221,72,0.000025,0.000061,11619816,7619359,0,0,12084,0,1,1 +1774043258.434612,1.35,4,3992.50,52.38,1617.08,2050.98,0.00,3519803481143.710938,3519803481145.004395,199,0,0.004076,0.005035,11619907,7619464,0,0,12086,0,1,1 +1774043263.438557,3.15,4,3992.50,52.00,1632.10,2036.05,0.00,0.000000,0.000000,199,0,0.012702,0.015409,11620165,7619761,0,0,12089,0,1,1 +1774043268.439068,20.56,4,3992.50,52.88,1597.63,2070.52,0.00,1.831649,0.000195,238,2,32.197568,0.145635,11630640,7627545,0,0,12091,0,1,1 +1774043273.439023,7.04,4,3992.50,52.31,1602.11,2048.02,0.00,3518469022878.096191,3518469022880.104492,11,0,8.048108,0.035592,11633174,7629384,0,0,12094,0,1,1 +1774043278.437499,1.05,4,3992.50,52.34,1600.73,2049.40,0.00,2.009401,0.000195,238,2,0.005247,0.010423,11633309,7629584,0,0,12096,0,1,1 +1774043283.438009,0.85,4,3992.50,52.22,1605.76,2044.36,0.00,0.000000,0.000000,238,2,0.005009,0.010299,11633443,7629785,0,0,12099,0,1,1 +1774043288.434589,0.55,4,3992.50,52.15,1608.30,2041.84,0.00,3520845510164.635742,3520845510166.469238,199,0,0.005021,0.009349,11633561,7629953,0,0,12101,0,1,1 +1774043293.434514,6.57,4,3992.50,52.35,1600.24,2049.81,0.00,1.831863,0.000195,238,2,0.022534,24.050263,11634930,7632939,0,0,12104,0,1,1 +1774043298.437997,29.55,4,3992.50,53.55,1546.72,2096.75,0.00,3515988298419.474121,3515988298421.431641,70,0,0.072535,124.115013,11640314,7646205,0,0,12106,0,1,1 +1774043303.438462,16.26,4,3992.50,52.18,1614.49,2043.15,0.00,1515.573366,22101.514071,58325,327237,0.012680,56.880237,11641069,7651917,0,0,12109,0,1,1 +1774043308.438332,13.15,4,3992.50,57.23,1419.23,2240.79,0.00,3518528528664.280273,3518528508075.939941,11,0,17.035051,0.023831,11643178,7653095,0,0,12111,0,1,1 +1774043313.438930,6.56,4,3992.50,52.73,1573.72,2064.61,0.00,0.000000,0.000000,11,0,23.031417,0.019579,11645559,7654342,0,0,12114,0,1,1 +1774043318.439439,5.29,4,3992.50,52.87,1569.23,2070.09,0.00,0.049995,0.000000,70,0,0.000895,0.000757,11645577,7654362,0,0,12116,0,1,1 +1774043323.439392,3.02,4,3992.50,52.56,1580.59,2057.86,0.00,1.441908,0.022071,221,78,0.000000,0.000030,11645577,7654365,0,0,12119,0,1,1 +1774043328.438531,7.52,4,3992.50,52.34,1592.61,2049.29,0.00,1549.847820,22856.005415,62036,331592,0.000242,0.000777,11645585,7654380,0,0,12121,0,1,1 +1774043333.436625,2.71,4,3992.50,51.45,1645.28,2014.50,0.00,4.701792,50.417356,64902,332081,0.002891,0.002784,11645648,7654443,0,0,12124,0,1,1 +1774043338.439321,0.90,4,3992.50,50.84,1669.28,1990.53,0.00,3516541735067.558594,3516541713732.340820,11,0,0.005754,0.012544,11645801,7654669,0,0,12126,0,1,1 +1774043343.434727,1.15,4,3992.50,51.24,1652.84,2005.97,0.00,1557.533470,22923.609012,64975,332158,0.004340,0.008407,11645915,7654834,0,0,12129,0,1,1 +1774043348.439099,0.85,4,3992.50,51.24,1652.63,2006.16,0.00,3515363039223.039551,3515363017895.244141,11,0,0.005049,0.010307,11646052,7655036,0,0,12131,0,1,1 +1774043353.438976,0.80,4,3992.50,51.28,1651.23,2007.57,0.00,0.000000,0.000000,11,0,0.004398,0.008438,11646170,7655204,0,0,12134,0,1,1 +1774043358.438572,0.80,4,3992.50,51.30,1650.27,2008.52,0.00,1552.167055,22904.436518,64217,332153,0.005035,0.010935,11646306,7655408,0,0,12136,0,1,1 +1774043363.438711,0.75,4,3992.50,51.30,1650.28,2008.48,0.00,3518339156144.551270,3518339134794.601562,11,0,0.004565,0.009033,11646427,7655585,0,0,12139,0,1,1 +1774043368.438927,4.41,4,3992.50,51.99,1623.15,2035.64,0.00,1552.937081,22901.657740,64312,332197,0.004806,0.009669,11646556,7655774,0,0,12141,0,1,1 +1774043373.438681,0.60,4,3992.50,51.91,1626.22,2032.53,0.00,3518610663577.847656,3518610642225.682129,221,82,0.005023,0.010288,11646691,7655974,0,0,12144,0,1,1 +1774043378.439384,8.97,4,3992.50,52.00,1622.70,2036.08,0.00,0.000000,0.000000,221,82,0.004297,0.008388,11646802,7656138,0,0,12146,0,1,1 +1774043383.434610,3.11,4,3992.50,51.95,1624.95,2033.84,0.00,3521799781756.268555,3521799781757.562500,199,0,0.004934,0.010212,11646940,7656341,0,0,12149,0,1,1 +1774043388.439432,1.35,4,3992.50,51.85,1628.56,2030.24,0.00,3515047235464.359863,0.000000,70,0,0.003713,0.008132,11647042,7656497,0,0,12151,0,1,1 +1774043393.437091,11.66,4,3992.50,51.97,1622.70,2034.62,0.00,3520085459330.763672,0.000000,11,0,0.025958,40.086739,11648687,7660956,0,0,12154,0,1,1 +1774043398.438230,1.30,4,3992.50,51.93,1624.22,2033.11,0.00,1556.907917,22931.664128,65157,332648,0.002511,0.006492,11648763,7661083,0,0,12156,0,1,1 +1774043403.439078,1.15,4,3992.50,51.86,1626.89,2030.42,0.00,3517840403590.813965,3517840382214.763184,70,0,0.003420,0.009532,11648867,7661266,0,0,12159,0,1,1 +1774043408.439413,1.90,4,3992.50,51.91,1624.91,2032.41,0.00,0.126945,0.000000,199,0,0.003433,0.009524,11648972,7661448,0,0,12161,0,1,1 +1774043413.434894,1.30,4,3992.50,51.87,1626.32,2031.00,0.00,3521619769213.829102,0.000000,11,0,0.002711,0.007628,11649053,7661594,0,0,12164,0,1,1 +1774043418.438735,1.30,4,3992.50,51.91,1625.09,2032.23,0.00,1.490749,0.022053,221,82,0.003431,0.009517,11649158,7661776,0,0,12166,0,1,1 +1774043423.438689,1.00,4,3992.50,51.91,1624.86,2032.45,0.00,0.000000,0.000000,221,82,0.003433,0.010178,11649263,7661963,0,0,12169,0,1,1 +1774043428.439422,0.85,4,3992.50,51.91,1624.88,2032.44,0.00,1555.680639,22939.631839,65180,332778,0.002842,0.007692,11649355,7662114,0,0,12171,0,1,1 +1774043433.439024,1.30,4,3992.50,51.91,1624.88,2032.44,0.00,3518718027766.848633,3518718006379.343262,199,0,0.003484,0.009597,11649464,7662301,0,0,12174,0,1,1 +1774043438.436412,1.00,4,3992.50,51.91,1624.88,2032.43,0.00,1.832793,0.000195,238,2,0.003622,0.009680,11649582,7662494,0,0,12176,0,1,1 +1774043443.434612,1.05,4,3992.50,51.92,1624.65,2032.67,0.00,3519704260179.896484,0.021883,221,82,0.002779,0.007674,11649668,7662644,0,0,12179,0,1,1 +1774043448.435658,0.90,4,3992.50,51.92,1624.66,2032.66,0.00,3517701366963.743652,3517701366965.212891,11,0,0.003433,0.009522,11649773,7662826,0,0,12181,0,1,1 +1774043453.438858,1.35,4,3992.50,51.89,1625.75,2031.57,0.00,0.000000,0.000000,11,0,0.005548,0.012315,11649926,7663067,0,0,12184,0,1,1 +1774043458.438397,10.43,4,3992.50,58.07,1384.80,2273.48,0.00,2.008974,0.000195,238,2,1.410881,0.014101,11650352,7663471,0,0,12186,0,1,1 +1774043463.439147,36.67,4,3992.50,58.31,1382.27,2283.15,0.00,3517909444367.123047,3517909444368.954590,199,0,118.148544,0.043522,11662494,7666355,0,0,12189,0,1,1 +1774043468.438630,29.31,4,3992.50,58.36,1381.45,2284.80,0.00,1557.449040,22945.621008,65195,333000,119.183051,0.033706,11674843,7668591,0,0,12191,0,1,1 +1774043473.436782,28.79,4,3992.50,58.19,1387.92,2278.36,0.00,3519738437027.262207,3519738415633.518066,70,0,119.209523,0.030414,11687074,7670702,0,0,12194,0,1,1 +1774043478.439276,29.44,4,3992.50,58.24,1386.03,2280.23,0.00,1552.580520,22931.799902,64438,332938,119.303047,0.025723,11699122,7672477,0,0,12196,0,1,1 +1774043483.438746,29.49,4,3992.50,57.80,1403.20,2263.13,0.00,3518810014694.421387,3518809993302.321777,11,0,118.976464,0.020952,11711245,7673931,0,0,12199,0,1,1 +1774043488.438445,28.92,4,3992.50,57.76,1404.92,2261.39,0.00,0.176964,0.000000,199,0,119.569314,0.019458,11723274,7675278,0,0,12201,0,1,1 +1774043493.439042,28.83,4,3992.50,57.64,1409.55,2256.77,0.00,0.000000,0.000000,199,0,118.750355,0.023192,11735370,7676781,0,0,12204,0,1,1 +1774043498.436424,29.15,4,3992.50,57.61,1410.64,2255.60,0.00,3520280950398.344727,0.000000,11,0,119.830941,0.034288,11747589,7679140,0,0,12206,0,1,1 +1774043503.434609,7.03,4,3992.50,51.69,1642.68,2023.70,0.00,2.009519,0.000195,238,2,71.123300,0.015360,11754813,7680216,0,0,12209,0,1,1 +1774043508.435133,5.58,4,3992.50,51.63,1645.12,2021.25,0.00,3518068255694.557617,3518068255696.565918,11,0,4.032924,0.029213,11756235,7681330,0,0,12211,0,1,1 +1774043513.438390,14.29,4,3992.50,51.48,1650.97,2015.38,0.00,1.490923,0.022056,221,82,16.107099,0.084539,11761802,7685479,0,0,12214,0,1,1 +1774043518.437148,12.60,4,3992.50,52.80,1599.11,2067.16,0.00,1562.852080,22949.841179,65327,334002,20.120175,0.089075,11768186,7690313,0,0,12216,0,1,1 +1774043523.434539,0.85,4,3992.50,52.39,1615.00,2051.27,0.00,3520274395580.959473,3520274374187.579102,238,2,0.005025,0.010306,11768321,7690514,0,0,12219,0,1,1 +1774043528.438490,2.61,4,3992.50,52.36,1616.07,2050.20,0.00,3515659297329.393066,0.021858,221,82,0.014055,6.415699,11769092,7691546,0,0,12221,0,1,1 +1774043533.437729,29.50,4,3992.50,52.27,1616.94,2046.64,0.00,3518972637459.743164,3518972637461.036133,199,0,0.037180,118.786072,11771779,7703751,0,0,12224,0,1,1 +1774043538.436873,21.35,4,3992.50,52.19,1620.42,2043.20,0.00,3519039505162.874023,0.000000,11,0,0.026505,79.932690,11773692,7712172,0,0,12226,0,1,1 +1774043543.434606,1.00,4,3992.50,52.19,1620.47,2043.20,0.00,1.492571,0.022080,221,82,0.004115,0.007114,11773778,7712301,0,0,12229,0,1,1 +1774043548.434566,11.50,4,3992.50,56.74,1442.26,2221.53,0.00,0.000000,0.000000,221,82,12.828081,0.021364,11775452,7713328,0,0,12231,0,1,1 +1774043553.438679,4.91,4,3992.50,51.70,1639.56,2024.22,0.00,0.000000,0.000000,221,82,27.223392,0.025750,11778412,7714511,0,0,12234,0,1,1 +1774043558.438056,1.05,4,3992.50,51.63,1642.30,2021.50,0.00,1590.607057,23153.142693,66550,336046,0.004349,0.009035,11778527,7714679,0,0,12236,0,1,1 +1774043563.434565,1.05,4,3992.50,51.62,1642.87,2020.94,0.00,3520895841111.176270,3520895819537.729492,11,0,0.005047,0.010316,11778664,7714881,0,0,12239,0,1,1 +1774043568.439111,0.95,4,3992.50,51.61,1643.23,2020.57,0.00,1586.397842,23129.273669,65792,336010,0.005018,0.010269,11778799,7715080,0,0,12241,0,1,1 +1774043573.434808,1.00,4,3992.50,51.63,1642.26,2021.54,0.00,4.064337,0.112597,66550,336143,0.004365,0.008438,11778915,7715247,0,0,12244,0,1,1 +1774043578.438733,1.50,4,3992.50,51.62,1642.79,2021.03,0.00,3515677832099.908203,0.051424,65793,336100,0.005018,0.010295,11779050,7715448,0,0,12246,0,1,1 +1774043583.434943,1.05,4,3992.50,51.62,1642.70,2021.10,0.00,3521105597595.510254,3521105576016.532227,11,0,0.005026,0.010296,11779185,7715648,0,0,12249,0,1,1 +1774043588.436904,1.10,4,3992.50,51.62,1642.73,2021.07,0.00,1.491310,0.022062,221,82,0.005097,0.009383,11779308,7715820,0,0,12251,0,1,1 +1774043593.437935,0.85,4,3992.50,51.64,1642.01,2021.80,0.00,3517711863731.007324,3517711863732.300293,199,0,0.004347,0.008398,11779423,7715985,0,0,12254,0,1,1 +1774043598.439327,0.95,4,3992.50,51.64,1642.01,2021.82,0.00,3517458074480.136719,0.000000,70,0,0.005134,0.010328,11779566,7716188,0,0,12256,0,1,1 +1774043603.439320,1.15,4,3992.50,51.60,1643.40,2020.45,0.00,3518442203663.702637,0.000000,11,0,0.004336,0.008400,11779680,7716353,0,0,12259,0,1,1 +1774043608.439026,0.85,4,3992.50,51.60,1643.41,2020.43,0.00,1.491982,0.022072,221,82,0.005043,0.010287,11779817,7716553,0,0,12261,0,1,1 +1774043613.434767,2.46,4,3992.50,51.61,1643.17,2020.65,0.00,3521436590384.706055,3521436590386.177246,11,0,0.005027,0.010309,11779952,7716754,0,0,12264,0,1,1 +1774043618.437145,8.27,4,3992.50,52.20,1618.62,2043.57,0.00,0.176869,0.000000,199,0,0.026388,30.238770,11781674,7720158,0,0,12266,0,1,1 +1774043623.439056,4.41,4,3992.50,51.72,1638.32,2025.14,0.00,3517092967509.867676,0.000000,70,0,0.008100,9.822785,11782076,7721395,0,0,12269,0,1,1 +1774043628.434629,0.85,4,3992.50,51.66,1640.88,2022.61,0.00,1593.343801,23205.535242,66569,336834,0.003449,0.009533,11782182,7721577,0,0,12271,0,1,1 +1774043633.434609,0.95,4,3992.50,51.60,1643.13,2020.35,0.00,3518450688063.875488,3518450688067.770020,65832,336754,0.002747,0.007633,11782266,7721724,0,0,12274,0,1,1 +1774043638.436512,0.85,4,3992.50,51.59,1643.77,2019.71,0.00,3517099037631.944824,3517099016043.258789,11,0,0.003445,0.009521,11782372,7721906,0,0,12276,0,1,1 +1774043643.438691,0.95,4,3992.50,51.60,1643.21,2020.27,0.00,0.049978,0.000000,70,0,0.003432,0.009530,11782477,7722089,0,0,12279,0,1,1 +1774043648.439060,0.95,4,3992.50,51.60,1643.25,2020.24,0.00,3518178059183.674805,0.000000,11,0,0.002734,0.007623,11782560,7722235,0,0,12281,0,1,1 +1774043653.434656,0.85,4,3992.50,51.60,1643.25,2020.23,0.00,1593.560790,23211.523836,66593,336890,0.003469,0.009582,11782668,7722421,0,0,12284,0,1,1 +1774043658.434611,1.00,4,3992.50,51.59,1643.73,2019.75,0.00,0.000000,0.039844,66593,336927,0.003496,0.009586,11782778,7722607,0,0,12286,0,1,1 +1774043663.434608,0.85,4,3992.50,51.60,1643.07,2020.41,0.00,3518438972142.039551,3518438950541.057617,238,2,0.002853,0.007752,11782870,7722762,0,0,12289,0,1,1 +1774043668.434512,0.90,4,3992.50,51.60,1643.11,2020.38,0.00,3518504752913.408691,3518504752915.240723,199,0,0.003558,0.009625,11782983,7722952,0,0,12291,0,1,1 +1774043673.437243,0.90,4,3992.50,51.59,1643.40,2020.04,0.00,3516516628161.386230,0.000000,11,0,0.003431,0.009529,11783088,7723135,0,0,12294,0,1,1 +1774043678.438672,0.95,4,3992.50,51.59,1643.65,2019.83,0.00,0.000000,0.000000,11,0,0.002746,0.007621,11783172,7723281,0,0,12296,0,1,1 +1774043683.438602,13.65,4,3992.50,58.66,1368.46,2296.48,0.00,1.491915,0.022071,221,82,7.817708,0.018708,11784216,7724141,0,0,12299,0,1,1 +1774043688.434950,37.27,4,3992.50,58.30,1382.13,2282.62,0.00,3521009197653.510742,3521009197654.981934,11,0,123.689413,0.086124,11797322,7730268,0,0,12301,0,1,1 +1774043693.436071,29.44,4,3992.50,58.36,1380.91,2284.89,0.00,0.000000,0.000000,11,0,122.029058,0.021266,11809376,7731780,0,0,12304,0,1,1 +1774043698.438537,30.12,4,3992.50,58.43,1378.15,2287.69,0.00,0.049975,0.000000,70,0,120.483421,0.028493,11821265,7733801,0,0,12306,0,1,1 +1774043703.438527,29.42,4,3992.50,58.29,1383.55,2282.19,0.00,1588.437196,23191.559552,65891,337042,120.176277,0.036019,11832909,7736441,0,0,12309,0,1,1 +1774043708.438464,30.04,4,3992.50,58.27,1384.29,2281.45,0.00,3518481679497.761230,3518481657892.452148,238,2,118.962021,0.031792,11844001,7738730,0,0,12311,0,1,1 +1774043713.434507,31.10,4,3992.50,58.49,1375.66,2290.09,0.00,3521223810333.138184,0.021892,221,82,119.474816,0.034074,11855141,7741039,0,0,12314,0,1,1 +1774043718.438936,29.78,4,3992.50,58.36,1380.83,2284.91,0.00,3515323055196.635254,3515323055198.103516,11,0,119.929030,0.032613,11866262,7743331,0,0,12316,0,1,1 +1774043723.438678,30.92,4,3992.50,58.44,1377.70,2288.05,0.00,0.000000,0.000000,11,0,119.795708,0.030288,11877165,7745488,0,0,12319,0,1,1 +1774043728.434587,2.01,4,3992.50,51.46,1651.00,2014.84,0.00,0.050041,0.000000,70,0,53.102021,0.020338,11882195,7746625,0,0,12321,0,1,1 +1774043733.434500,4.61,4,3992.50,51.71,1641.24,2024.58,0.00,1592.596494,23192.443956,66660,337446,2.020689,0.019410,11882994,7747298,0,0,12324,0,1,1 +1774043738.434431,22.92,4,3992.50,52.15,1623.89,2041.88,0.00,3518485715247.751465,3518485693646.020996,238,2,34.214856,0.156050,11894245,7755777,0,0,12326,0,1,1 +1774043743.439245,3.71,4,3992.50,51.93,1632.57,2033.17,0.00,3515053077470.644043,3515053077472.650879,11,0,4.030277,0.029493,11895776,7757076,0,0,12329,0,1,1 +1774043748.438711,1.00,4,3992.50,51.74,1639.91,2025.84,0.00,1593.049172,23195.045886,66726,338496,0.005023,0.010292,11895911,7757276,0,0,12331,0,1,1 +1774043753.439121,1.45,4,3992.50,51.51,1648.84,2016.93,0.00,3518148748647.390137,3518148727047.461914,238,2,0.006441,0.011815,11896072,7757501,0,0,12334,0,1,1 +1774043758.438910,1.05,4,3992.50,51.52,1648.77,2017.00,0.00,3518585740348.483398,3518585740350.492188,11,0,0.006087,0.010684,11896229,7757713,0,0,12336,0,1,1 +1774043763.437714,0.90,4,3992.50,51.52,1648.53,2017.23,0.00,1593.260141,23198.623992,66726,338639,0.005024,0.010303,11896364,7757914,0,0,12339,0,1,1 +1774043768.438498,0.90,4,3992.50,51.52,1648.57,2017.21,0.00,0.000000,0.207292,66726,338881,0.004348,0.008388,11896479,7758078,0,0,12341,0,1,1 +1774043773.438560,0.90,4,3992.50,51.55,1647.60,2018.18,0.00,3518393507435.601074,3518393485835.465332,11,0,0.005123,0.010394,11896622,7758285,0,0,12344,0,1,1 +1774043778.439054,0.95,4,3992.50,51.55,1647.61,2018.16,0.00,2.008591,0.000195,238,2,0.005035,0.010290,11896758,7758485,0,0,12346,0,1,1 +1774043783.439296,0.90,4,3992.50,51.55,1647.62,2018.14,0.00,3518266843142.192871,3518266843144.201172,11,0,0.004348,0.008399,11896873,7758650,0,0,12349,0,1,1 +1774043788.434536,0.90,4,3992.50,51.55,1647.64,2018.13,0.00,2.010703,0.000195,238,2,0.005110,0.010348,11897014,7758854,0,0,12351,0,1,1 +1774043793.438092,1.05,4,3992.50,51.54,1647.66,2018.10,0.00,3515937305029.183594,3515937305031.014648,199,0,0.005031,0.010281,11897150,7759054,0,0,12354,0,1,1 +1774043798.434550,1.00,4,3992.50,51.43,1652.13,2013.65,0.00,3520931335238.083496,0.000000,11,0,0.004426,0.008477,11897270,7759224,0,0,12356,0,1,1 +1774043803.434537,1.20,4,3992.50,51.45,1651.39,2014.39,0.00,1588.822257,23193.610857,65968,339054,0.005048,0.010332,11897407,7759427,0,0,12359,0,1,1 +1774043808.438910,1.15,4,3992.50,51.44,1651.85,2013.94,0.00,3515362690068.606445,3515362668482.751465,11,0,0.005018,0.010269,11897542,7759626,0,0,12361,0,1,1 +1774043813.438767,0.85,4,3992.50,51.44,1651.86,2013.93,0.00,1592.924624,23194.312549,66726,339217,0.004348,0.008412,11897657,7759792,0,0,12364,0,1,1 +1774043818.436871,0.95,4,3992.50,51.46,1650.89,2014.89,0.00,3519772419059.310547,3519772419063.358887,65968,339142,0.005012,0.010939,11897791,7759996,0,0,12366,0,1,1 +1774043823.437412,1.20,4,3992.50,51.46,1650.91,2014.86,0.00,3518056456487.608398,3518056434884.952148,199,0,0.004793,0.009641,11897919,7760183,0,0,12369,0,1,1 +1774043828.439419,1.00,4,3992.50,51.46,1650.94,2014.85,0.00,0.000000,0.000000,199,0,0.004563,0.009045,11898040,7760361,0,0,12371,0,1,1 +1774043833.434554,0.90,4,3992.50,51.46,1650.95,2014.84,0.00,1.316222,0.022092,221,82,0.005048,0.010318,11898177,7760563,0,0,12374,0,1,1 +1774043838.434504,5.01,4,3992.50,52.12,1625.07,2040.51,0.00,0.000000,0.000000,221,82,0.018779,18.037686,11899281,7762741,0,0,12376,0,1,1 +1774043843.438371,29.31,4,3992.50,52.92,1590.10,2072.02,0.00,3515718220614.995117,3515718220616.287109,199,0,0.030843,118.078170,11901509,7775051,0,0,12379,0,1,1 +1774043848.438789,17.78,4,3992.50,52.71,1595.20,2063.63,0.00,1592.576054,23370.849035,66733,340438,0.009895,68.891147,11902262,7782207,0,0,12381,0,1,1 +1774043853.439362,2.21,4,3992.50,51.90,1627.85,2032.09,0.00,3518033807722.110840,3518033785944.691406,11,0,0.007049,0.012920,11902426,7782459,0,0,12384,0,1,1 +1774043858.438520,13.81,4,3992.50,52.51,1604.11,2055.86,0.00,2.009127,0.000195,238,2,40.068812,0.031390,11906839,7784474,0,0,12386,0,1,1 +1774043863.434608,11.33,4,3992.50,51.88,1627.34,2031.36,0.00,3521192638601.625488,3521192638603.585449,70,0,0.025956,40.103184,11908393,7789041,0,0,12389,0,1,1 +1774043868.434551,1.15,4,3992.50,51.84,1628.97,2029.73,0.00,0.126955,0.000000,199,0,0.003770,0.009862,11908504,7789230,0,0,12391,0,1,1 +1774043873.435147,0.85,4,3992.50,51.77,1631.96,2026.74,0.00,1608.499690,23430.354761,66096,340963,0.003433,0.009533,11908609,7789413,0,0,12394,0,1,1 +1774043878.434591,1.65,4,3992.50,51.77,1631.60,2027.10,0.00,3518828907825.553711,3518828885998.796387,70,0,0.003213,0.008887,11908708,7789583,0,0,12396,0,1,1 +1774043883.434676,0.85,4,3992.50,51.76,1632.12,2026.57,0.00,1612.851651,23432.869439,66854,341066,0.003026,0.008954,11908803,7789749,0,0,12399,0,1,1 +1774043888.438945,0.95,4,3992.50,51.76,1632.13,2026.57,0.00,3515435410020.755859,3515435388217.026367,238,2,0.003430,0.009516,11908908,7789931,0,0,12401,0,1,1 +1774043893.438740,0.90,4,3992.50,51.77,1631.79,2026.91,0.00,3518581372197.173340,3518581372199.181641,11,0,0.002747,0.007634,11908992,7790078,0,0,12404,0,1,1 +1774043898.439063,0.85,4,3992.50,51.77,1631.93,2026.77,0.00,2.008659,0.000195,238,2,0.003420,0.009511,11909096,7790259,0,0,12406,0,1,1 +1774043903.435502,1.10,4,3992.50,51.77,1631.68,2027.01,0.00,3520944491762.863770,3520944491764.697266,199,0,0.003486,0.009603,11909205,7790446,0,0,12409,0,1,1 +1774043908.438639,0.85,4,3992.50,51.78,1631.56,2027.14,0.00,1611.740996,23424.673181,66854,341176,0.002872,0.007776,11909299,7790603,0,0,12411,0,1,1 +1774043913.439090,0.85,4,3992.50,51.75,1632.47,2026.22,0.00,3518119768027.402344,3518119746202.754883,199,0,0.003557,0.009647,11909412,7790795,0,0,12414,0,1,1 +1774043918.439420,0.80,4,3992.50,51.74,1632.88,2025.82,0.00,1.314855,0.022069,221,82,0.003446,0.009524,11909518,7790977,0,0,12416,0,1,1 +1774043923.438401,1.05,4,3992.50,51.76,1632.19,2026.51,0.00,3519154492100.139648,3519154492101.560059,70,0,0.002760,0.007635,11909603,7791124,0,0,12419,0,1,1 +1774043928.438411,37.23,4,3992.50,58.59,1366.75,2293.74,0.00,1.958785,0.000195,238,2,82.723685,0.040363,11918445,7793504,0,0,12421,0,1,1 +1774043933.437202,30.02,4,3992.50,58.30,1383.21,2282.48,0.00,1611.327173,23445.259305,66860,341327,118.198392,0.034037,11930778,7795890,0,0,12424,0,1,1 +1774043938.434524,28.92,4,3992.50,58.09,1391.21,2274.50,0.00,3520322939363.247070,3520322917524.905273,11,0,119.182731,0.031437,11943156,7798285,0,0,12426,0,1,1 +1774043943.454383,39.99,4,3992.50,60.81,1347.55,2380.99,0.00,2.000842,0.000195,238,2,118.544650,0.019088,11955439,7799606,0,0,12429,0,1,1 +1774043948.438118,59.74,4,3992.50,71.37,931.63,2794.14,0.00,3529920013977.218750,3529920013979.233887,11,0,117.747982,0.029041,11967717,7801715,0,0,12431,0,1,1 +1774043953.435492,61.69,4,3992.50,83.48,441.41,3268.30,0.00,0.050026,0.000000,70,0,117.828771,0.030201,11980062,7803711,0,0,12434,0,1,1 +1774043958.441826,60.41,4,3992.50,59.04,1414.27,2311.59,0.00,2189.215417,23415.566691,106482,345932,118.818274,0.027276,11992551,7805529,0,0,12436,0,1,1 +1774043963.438709,61.35,4,3992.50,66.18,1135.52,2591.24,0.00,3520631777018.585938,3520631755752.140137,11,0,119.044940,0.031158,12005120,7807513,0,0,12439,0,1,1 +1774043968.439491,47.08,4,3992.50,84.83,412.91,3321.25,0.00,2.008475,0.000195,238,2,113.341922,0.024333,12016973,7809283,0,0,12441,0,1,1 +1774043973.439526,24.15,4,3992.50,52.49,1688.91,2054.93,0.00,3518412731987.547363,3518412731989.505859,70,0,0.005906,0.009270,12017118,7809476,0,0,12444,0,1,1 +1774043978.438381,10.89,4,3992.50,52.88,1625.27,2070.55,0.00,3519242751583.562012,0.000000,11,0,8.100201,0.056646,12020252,7811761,0,0,12446,0,1,1 +1774043983.434514,20.14,4,3992.50,52.66,1618.64,2061.70,0.00,0.050039,0.000000,70,0,32.189063,0.138229,12030423,7819518,0,0,12449,0,1,1 +1774043988.438556,1.15,4,3992.50,52.51,1624.49,2055.86,0.00,0.000000,0.000000,70,0,0.005036,0.009766,12030553,7819705,0,0,12451,0,1,1 +1774043993.434612,0.85,4,3992.50,52.32,1632.07,2048.29,0.00,1.960336,0.000195,238,2,0.005026,0.010309,12030688,7819906,0,0,12454,0,1,1 +1774043998.439380,0.85,4,3992.50,52.24,1635.11,2045.20,0.00,3515085169531.215332,3515085169533.221680,11,0,0.004344,0.008382,12030803,7820070,0,0,12456,0,1,1 +1774044003.436158,15.59,4,3992.50,53.30,1585.13,2086.62,0.00,1.494420,0.022085,223,82,0.045164,58.743590,12033928,7826733,0,0,12459,0,1,1 +1774044008.434573,30.58,4,3992.50,53.68,1562.29,2101.79,0.00,0.000000,0.000000,223,82,0.063055,122.227734,12038610,7839477,0,0,12461,0,1,1 +1774044013.438300,8.07,4,3992.50,52.63,1601.43,2060.71,0.00,0.000000,0.000000,223,82,0.011773,24.226656,12039221,7842127,0,0,12464,0,1,1 +1774044018.439060,15.15,4,3992.50,57.49,1411.12,2250.78,0.00,3517902329422.207031,3517902329423.500977,199,0,30.845569,0.024686,12042602,7843665,0,0,12466,0,1,1 +1774044023.439500,1.30,4,3992.50,53.03,1585.68,2076.22,0.00,1.316388,0.022068,223,82,9.218995,0.013537,12043736,7844167,0,0,12469,0,1,1 +1774044028.434545,1.16,4,3992.50,52.48,1607.09,2054.80,0.00,3521926963042.118164,3521926963043.414062,199,0,0.005055,0.010621,12043866,7844354,0,0,12471,0,1,1 +1774044033.438964,9.77,4,3992.50,77.26,716.00,3024.83,0.00,2760.293301,23637.068906,156074,354046,0.004332,0.008405,12043980,7844520,0,0,12474,0,1,1 +1774044038.438072,29.88,4,3992.50,96.20,0.00,3766.33,0.00,151.044907,2.157807,165620,355957,0.005021,0.010326,12044115,7844723,0,0,12476,0,1,1 +1774044043.438920,29.17,4,3992.50,76.72,728.00,3003.95,0.00,3517840997352.063477,3517840976609.391113,11,0,0.005068,0.010374,12044253,7844930,0,0,12479,0,1,1 +1774044048.439704,29.13,4,3992.50,58.52,1444.23,2291.06,0.00,0.049992,0.000000,70,0,0.004377,0.008457,12044370,7845099,0,0,12481,0,1,1 +1774044053.440305,29.57,4,3992.50,89.84,214.73,3517.59,0.00,3518014147980.975586,0.000000,11,0,0.008039,0.013825,12044552,7845366,0,0,12484,0,1,1 +1774044058.439215,29.57,4,3992.50,67.78,1090.00,2653.91,0.00,3463.743800,23674.003306,201505,363842,0.005464,0.008868,12044692,7845549,0,0,12486,0,1,1 +1774044063.436523,24.47,4,3992.50,52.66,1677.81,2061.93,0.00,3520332248852.362305,3520332228633.617188,238,2,0.005021,0.010339,12044827,7845753,0,0,12489,0,1,1 +1774044068.438527,1.10,4,3992.50,52.54,1674.86,2056.94,0.00,3517028046177.768555,3517028046179.776367,11,0,0.005046,0.010286,12044964,7845953,0,0,12491,0,1,1 +1774044073.436083,1.10,4,3992.50,52.39,1678.96,2051.29,0.00,0.177040,0.000000,199,0,0.004425,0.008444,12045084,7846121,0,0,12494,0,1,1 +1774044078.439101,1.10,4,3992.50,52.23,1684.32,2045.08,0.00,1.830731,0.000195,238,2,0.005019,0.010284,12045219,7846321,0,0,12496,0,1,1 +1774044083.438662,1.25,4,3992.50,52.13,1688.09,2040.87,0.00,3518745947169.341797,3518745947171.350586,11,0,0.004391,0.010708,12045341,7846519,0,0,12499,0,1,1 +1774044088.438580,11.40,4,3992.50,52.49,1634.90,2055.29,0.00,3593.365973,23705.401727,209937,365883,0.022797,40.067148,12046811,7850992,0,0,12501,0,1,1 +1774044093.439245,1.61,4,3992.50,52.38,1638.80,2050.83,0.00,3517968790559.805176,3517968770450.779785,11,0,0.004606,0.012424,12046953,7851228,0,0,12504,0,1,1 +1774044098.439564,0.85,4,3992.50,52.24,1644.14,2045.48,0.00,2.008661,0.000195,238,2,0.002784,0.007654,12047040,7851376,0,0,12506,0,1,1 +1774044103.434548,1.16,4,3992.50,52.21,1645.63,2044.00,0.00,3521970274066.015137,3521970274068.025391,11,0,0.003474,0.009575,12047148,7851561,0,0,12509,0,1,1 +1774044108.435488,1.05,4,3992.50,52.22,1645.29,2044.34,0.00,2.008412,0.000195,238,2,0.003433,0.009555,12047253,7851744,0,0,12511,0,1,1 +1774044113.434536,1.15,4,3992.50,52.21,1645.38,2044.25,0.00,3519107253236.650391,3519107253238.609375,70,0,0.002747,0.007635,12047337,7851891,0,0,12514,0,1,1 +1774044118.434601,1.90,4,3992.50,52.19,1646.09,2043.50,0.00,3518391400130.798340,0.000000,11,0,0.003441,0.009532,12047443,7852074,0,0,12516,0,1,1 +1774044123.438979,9.07,4,3992.50,73.19,873.66,2865.55,0.00,0.000000,0.000000,11,0,0.003468,0.009563,12047551,7852259,0,0,12519,0,1,1 +1774044128.438929,28.92,4,3992.50,55.52,1568.61,2173.55,0.00,1.493472,0.022071,223,82,0.002812,0.007723,12047640,7852412,0,0,12521,0,1,1 +1774044133.440236,29.12,4,3992.50,91.11,162.57,3567.30,0.00,3885.940179,23709.591992,239226,370116,0.003573,0.009669,12047755,7852605,0,0,12524,0,1,1 +1774044138.439585,29.10,4,3992.50,69.83,1012.76,2734.01,0.00,3518895750188.620117,3518895730358.673340,11,0,0.002884,0.007725,12047848,7852759,0,0,12526,0,1,1 +1774044143.448867,29.65,4,3992.50,94.92,40.23,3716.28,0.00,0.049907,0.000000,70,0,0.004385,0.010218,12047958,7852948,0,0,12529,0,1,1 +1774044148.436070,29.05,4,3992.50,74.63,818.91,2921.84,0.00,0.000000,0.000000,70,0,0.003459,0.010219,12048064,7853136,0,0,12531,0,1,1 +1774044153.435351,53.66,4,3992.50,42.43,2031.40,1661.32,0.00,1.959071,0.000195,238,2,60.104104,0.057447,12054809,7856739,0,0,12534,0,1,0 +1774044158.434537,31.26,4,3992.50,41.27,2076.95,1615.80,0.00,3519010490880.437500,3519010490882.270020,199,0,120.183440,0.028571,12067027,7858662,0,0,12536,0,1,0 +1774044163.438831,28.70,4,3992.50,40.32,2114.18,1578.57,0.00,4446.689270,23704.204154,276767,378193,119.862307,0.023136,12079350,7860155,0,0,12539,0,1,0 +1774044168.439070,55.32,4,3992.50,44.56,1947.57,1744.61,0.00,3518269397055.353027,3518269377782.394531,11,0,118.557512,0.038225,12091483,7862958,0,0,12541,0,1,1 +1774044173.438376,69.49,4,3992.50,46.52,1870.23,1821.18,0.00,0.050007,0.000000,70,0,119.378853,0.041404,12103619,7866094,0,0,12544,0,1,1 +1774044178.438699,38.41,4,3992.50,45.71,1901.19,1789.57,0.00,0.126945,0.000000,199,0,119.155797,0.023773,12115886,7867983,0,0,12546,0,1,1 +1774044183.434690,38.38,4,3992.50,48.33,1798.29,1892.27,0.00,0.000000,0.000000,199,0,42.711481,0.010455,12120282,7868810,0,0,12549,0,1,1 +1774044188.439360,53.82,4,3992.50,51.15,1687.66,2002.59,0.00,4493.251388,23703.118386,285334,378688,32.380268,0.013762,12123452,7869546,0,0,12551,0,1,1 +1774044193.438381,40.27,4,3992.50,51.38,1678.01,2011.49,0.00,3519126082467.955078,3519126063234.552246,238,2,132.223260,0.038084,12135377,7872018,0,0,12554,0,1,1 +1774044198.435014,29.67,4,3992.50,51.94,1655.51,2033.45,0.00,4495.038198,23741.814890,284670,378884,126.807078,0.036079,12146853,7874414,0,0,12556,0,1,1 +1774044203.434616,2.71,4,3992.50,44.80,1935.11,1753.83,0.00,4.235395,0.121592,285457,378980,34.075882,0.011592,12149966,7875104,0,0,12559,0,1,1 +1774044208.439380,2.25,4,3992.50,44.66,1940.27,1748.66,0.00,0.000000,0.007025,285457,378984,0.000699,0.001919,12149988,7875142,0,0,12561,0,1,1 +1774044213.435613,13.34,4,3992.50,95.69,7.81,3746.55,0.00,3521089730012.033203,3521089710767.827637,238,2,0.003958,0.010662,12150108,7875348,0,0,12564,0,1,1 +1774044218.440490,35.62,4,3992.50,96.08,0.00,3761.83,0.00,5065.094879,23703.034980,333716,379145,0.002821,0.008335,12150197,7875504,0,0,12566,0,1,1 +1774044223.436704,45.51,4,3992.50,96.04,0.04,3760.13,0.00,3521103092229.527344,3521103073561.232910,70,0,0.003773,0.008370,12150301,7875669,0,0,12569,0,1,1 +1774044228.446680,90.47,4,3992.50,96.00,0.00,3758.67,0.00,3511431642909.603516,0.000000,11,0,0.003230,0.006824,12150397,7875808,0,0,12572,0,1,1 +1774044233.438802,96.60,4,3992.50,96.32,0.00,3771.18,0.00,0.000000,0.000000,11,0,0.028633,0.017752,12150875,7876201,0,0,12574,0,1,1 +1774044238.441434,88.80,4,3992.50,96.03,0.00,3759.89,0.00,0.000000,0.000000,11,0,4.017006,0.016371,12151929,7877011,0,0,12576,0,1,1 +1774044243.437304,76.98,4,3992.50,46.36,1899.48,1815.12,0.00,17174.444695,23750.197649,1720626,383760,10.054642,0.036734,12154742,7879115,0,0,12579,0,1,1 +1774044248.439058,39.19,4,3992.50,47.18,1830.04,1847.24,0.00,3517203144420.809082,3517203137852.792480,11,0,26.149274,0.116303,12163049,7885402,0,0,12581,0,1,1 +1774044253.438222,3.56,4,3992.50,47.21,1828.12,1848.28,0.00,0.000000,0.000000,11,0,0.005655,0.010555,12163197,7885610,0,0,12584,0,1,1 +1774044258.437308,1.96,4,3992.50,46.42,1858.80,1817.64,0.00,0.050009,0.000000,70,0,0.005080,0.010318,12163336,7885812,0,0,12586,0,1,1 +1774044263.437327,1.86,4,3992.50,46.47,1857.17,1819.28,0.00,17183.022194,23730.724885,1722072,384389,0.004336,0.008400,12163450,7885977,0,0,12589,0,1,1 +1774044268.439795,2.31,4,3992.50,46.52,1855.02,1821.42,0.00,3516700728579.263672,3516700722033.347168,224,83,0.005083,0.010348,12163590,7886181,0,0,12591,0,1,1 +1774044273.439424,14.24,4,3992.50,47.99,1794.32,1878.93,0.00,17178.970118,23744.391093,1721330,384871,0.040752,52.497713,12166363,7892104,0,0,12594,0,1,1 +1774044278.439112,29.71,4,3992.50,48.49,1767.11,1898.54,0.00,4.072813,151.285039,1722103,385790,0.048647,123.412251,12169906,7904764,0,0,12596,0,1,1 +1774044283.437415,10.74,4,3992.50,47.86,1788.81,1874.00,0.00,3519631746971.671387,3519631740258.728516,11,0,0.009599,29.238247,12170421,7907791,0,0,12599,0,1,1 +1774044288.438779,16.11,4,3992.50,49.23,1735.44,1927.32,0.00,17208.852564,23930.156226,1732867,386139,40.057117,0.029137,12174891,7909306,0,0,12601,0,1,1 +1774044293.434646,4.56,4,3992.50,48.06,1781.08,1881.70,0.00,3521347822984.243164,3521347816255.493652,70,0,0.005278,0.011310,12175028,7909510,0,0,12604,0,1,1 +1774044298.434523,2.25,4,3992.50,47.60,1799.11,1863.59,0.00,1.444274,0.022071,224,83,0.005023,0.010291,12175163,7909710,0,0,12606,0,1,1 +1774044303.435992,9.28,4,3992.50,49.27,1815.28,1928.97,0.00,0.000000,0.000000,224,83,0.004322,0.008397,12175276,7909875,0,0,12609,0,1,1 +1774044308.435446,30.26,4,3992.50,88.24,300.70,3454.90,0.00,0.514607,3518821449406.403320,238,2,0.004339,0.008416,12175390,7910041,0,0,12611,0,1,1 +1774044313.439589,29.76,4,3992.50,90.41,215.60,3539.83,0.00,17500.065010,23921.990411,1751666,390625,0.005058,0.010330,12175528,7910245,0,0,12614,0,1,1 +1774044318.438927,29.20,4,3992.50,96.08,0.00,3761.58,0.00,144.512771,2.114342,1761368,392588,0.004391,0.008472,12175646,7910415,0,0,12616,0,1,1 +1774044323.439908,30.32,4,3992.50,77.28,701.97,3025.52,0.00,164.926251,2.374046,1772037,394775,0.005024,0.010324,12175781,7910618,0,0,12619,0,1,1 +1774044328.440241,30.57,4,3992.50,63.54,1248.50,2487.90,0.00,3518202914630.224609,3518202908508.886230,224,83,0.004418,0.008502,12175900,7910791,0,0,12621,0,1,1 +1774044333.439868,24.17,4,3992.50,47.04,1897.39,1841.57,0.00,3518699313978.694824,3518699313980.117188,70,0,0.005053,0.010352,12176037,7910996,0,0,12624,0,1,1 +1774044338.439042,1.61,4,3992.50,47.11,1888.70,1844.33,0.00,3519018952686.098145,0.000000,11,0,0.004439,0.009356,12176159,7911179,0,0,12626,0,1,1 +1774044343.438505,12.76,4,3992.50,47.51,1818.70,1860.13,0.00,0.050005,0.000000,70,0,0.025266,40.074203,12177751,7915596,0,0,12629,0,1,1 +1774044348.434530,1.86,4,3992.50,47.32,1825.95,1852.84,0.00,3521236668092.995605,0.000000,11,0,0.003436,0.010176,12177856,7915782,0,0,12631,0,1,1 +1774044353.438928,2.25,4,3992.50,47.17,1832.10,1846.70,0.00,0.000000,0.000000,11,0,0.003736,0.009798,12177964,7915973,0,0,12634,0,1,1 +1774044358.435117,1.30,4,3992.50,47.05,1836.79,1841.98,0.00,0.050038,0.000000,70,0,0.002774,0.007629,12178050,7916119,0,0,12636,0,1,1 +1774044363.439460,1.30,4,3992.50,47.04,1836.88,1841.90,0.00,1.957089,0.000195,238,2,0.003430,0.009526,12178155,7916302,0,0,12639,0,1,1 +1774044368.437631,1.60,4,3992.50,47.05,1836.68,1842.11,0.00,3519724753057.779297,3519724753059.611816,199,0,0.002748,0.007626,12178239,7916448,0,0,12641,0,1,1 +1774044373.439376,1.60,4,3992.50,47.05,1836.75,1842.04,0.00,18099.501662,23982.691116,1799888,399298,0.003445,0.009562,12178345,7916633,0,0,12644,0,1,1 +1774044378.439386,1.45,4,3992.50,47.04,1836.94,1841.81,0.00,3518430063845.443848,3518430057960.212891,199,0,0.003267,0.008940,12178448,7916806,0,0,12646,0,1,1 +1774044383.434611,1.41,4,3992.50,47.03,1837.41,1841.36,0.00,0.000000,0.000000,199,0,0.003004,0.008318,12178541,7916968,0,0,12649,0,1,1 +1774044388.438826,1.25,4,3992.50,47.03,1837.43,1841.35,0.00,1.316176,0.022052,224,83,0.003612,0.009654,12178659,7917160,0,0,12651,0,1,1 +1774044393.438958,7.67,4,3992.50,95.50,3.84,3738.96,0.00,3518344258448.411133,3518344258449.883301,11,0,0.002780,0.007641,12178746,7917308,0,0,12654,0,1,1 +1774044398.438850,30.45,4,3992.50,77.00,725.43,3014.67,0.00,18274.007372,23993.975361,1810729,401502,0.003510,0.009587,12178856,7917495,0,0,12656,0,1,1 +1774044403.440367,30.81,4,3992.50,61.07,1347.45,2391.14,0.00,148.555617,2.381699,1820531,403759,0.003475,0.009563,12178964,7917680,0,0,12659,0,1,1 +1774044408.440510,59.72,4,3992.50,72.69,878.14,2845.91,0.00,3518337031849.748047,3518337026276.230469,70,0,62.109097,0.086719,12186854,7923806,0,0,12661,0,1,1 +1774044413.438969,63.33,4,3992.50,82.82,476.33,3242.68,0.00,0.000000,0.000000,70,0,114.723663,0.141380,12200927,7934687,0,0,12664,0,1,1 +1774044418.436733,62.01,4,3992.50,92.01,104.96,3602.24,0.00,1.959666,0.000195,238,2,116.944028,0.147656,12215267,7946135,0,0,12666,0,1,1 +1774044423.435522,55.53,4,3992.50,53.42,1603.72,2091.46,0.00,19174.221661,24009.042348,1873357,410422,118.020208,0.142416,12229693,7957320,0,0,12669,0,1,1 +1774044428.434647,31.03,4,3992.50,53.84,1586.43,2108.09,0.00,3519052577697.021973,3519052572864.359863,199,0,123.597054,0.037549,12242506,7960127,0,0,12671,0,1,1 +1774044433.435023,30.75,4,3992.50,53.98,1580.25,2113.57,0.00,3518172539577.408691,0.000000,11,0,121.760963,0.031872,12255024,7962394,0,0,12674,0,1,1 +1774044438.438640,30.14,4,3992.50,53.92,1582.05,2111.06,0.00,0.000000,0.000000,11,0,120.677769,0.042011,12267241,7965588,0,0,12676,0,1,1 +1774044443.438092,30.18,4,3992.50,54.25,1568.53,2123.96,0.00,0.000000,0.000000,11,0,120.177520,0.048372,12279378,7969113,0,0,12679,0,1,1 +1774044448.436599,21.77,4,3992.50,53.94,1580.34,2111.79,0.00,0.000000,0.000000,11,0,119.598374,0.051963,12291422,7973038,0,0,12681,0,1,1 +1774044453.438681,2.76,4,3992.50,47.79,1821.05,1870.97,0.00,19167.591669,23993.709857,1873747,410750,8.012736,0.010215,12292359,7973450,0,0,12684,0,1,1 +1774044458.436397,27.67,4,3992.50,48.16,1798.36,1885.54,0.00,3520045552026.534180,3520045547194.726074,224,83,16.121515,0.084319,12297788,7977500,0,0,12686,0,1,1 +1774044463.438818,25.16,4,3992.50,47.84,1810.93,1872.87,0.00,19187.950325,23992.603897,1874284,411824,24.133983,0.107288,12305585,7983408,0,0,12689,0,1,1 +1774044468.434636,2.81,4,3992.50,47.56,1821.85,1861.96,0.00,3521382226579.236328,3521382221768.232910,224,83,0.004359,0.007867,12305694,7983558,0,0,12691,0,1,1 +1774044473.439330,1.45,4,3992.50,47.47,1825.41,1858.38,0.00,19179.319350,23981.729645,1874294,411851,0.005030,0.010291,12305830,7983759,0,0,12694,0,1,1 +1774044478.438535,1.60,4,3992.50,47.40,1827.77,1855.98,0.00,3518996584353.909180,0.160963,1873558,411774,0.003692,0.008624,12305930,7983918,0,0,12696,0,1,1 +1774044483.439886,35.22,4,3992.50,70.98,963.31,2778.89,0.00,3517486555178.518555,3517486550370.667969,11,0,0.113541,99.756760,12314467,8000338,0,0,12699,0,1,1 +1774044489.151155,78.89,4,3992.50,94.71,19.70,3708.03,0.00,0.154916,0.000000,199,0,1.001571,89.372760,12404977,8098902,0,0,12702,0,1,1 +1774044493.452138,39.52,4,3992.50,95.48,21.94,3738.27,0.00,2.129555,0.000227,238,2,0.072866,5.220085,12409646,8103926,0,0,12704,0,1,1 +1774044498.435586,43.37,4,3992.50,87.60,295.39,3429.90,0.00,19825.124741,24296.138333,1919249,418616,40.201634,0.038777,12414235,8106152,0,0,12706,0,1,1 +1774044503.435858,31.71,4,3992.50,64.33,1223.51,2518.56,0.00,3518246113878.900391,3518246109424.938477,11,0,0.007075,0.010602,12414396,8106353,0,0,12709,0,1,1 +1774044508.435370,29.90,4,3992.50,93.74,89.07,3669.98,0.00,20089.920714,24223.163389,1940478,423295,0.004110,0.007795,12414503,8106508,0,0,12711,0,1,1 +1774044513.436377,24.61,4,3992.50,47.58,1876.73,1862.79,0.00,3517728931362.836426,3517728927230.829102,11,0,0.005044,0.010332,12414640,8106712,0,0,12714,0,1,1 +1774044518.434739,1.51,4,3992.50,47.40,1876.68,1855.71,0.00,2.009447,0.000195,238,2,0.005037,0.010294,12414776,8106912,0,0,12716,0,1,1 +1774044523.438809,1.90,4,3992.50,47.17,1884.66,1846.80,0.00,3515575245166.965332,3515575245168.922363,70,0,0.004332,0.008393,12414890,8107077,0,0,12719,0,1,1 +1774044528.438981,1.81,4,3992.50,47.07,1888.04,1843.09,0.00,3518315882574.591797,0.000000,11,0,0.005047,0.010321,12415027,8107279,0,0,12721,0,1,1 +1774044533.439456,1.40,4,3992.50,46.96,1892.35,1838.60,0.00,0.176936,0.000000,199,0,0.005035,0.010318,12415163,8107481,0,0,12724,0,1,1 +1774044538.435221,1.10,4,3992.50,46.96,1891.93,1838.55,0.00,1.318402,0.022089,224,83,0.004479,0.008524,12415287,8107655,0,0,12726,0,1,1 +1774044543.438771,1.35,4,3992.50,46.77,1897.47,1831.21,0.00,3515941255545.147949,3515941255546.442383,199,0,0.005019,0.010776,12415422,8107859,0,0,12729,0,1,1 +1774044548.438811,3.53,4,3992.50,46.89,1854.56,1835.68,0.00,3518409160828.874512,0.000000,11,0,0.004423,0.008591,12415542,8108027,0,0,12731,0,1,1 +1774044553.436617,1.45,4,3992.50,46.79,1858.18,1832.06,0.00,2.009671,0.000195,238,2,0.005025,0.010305,12415677,8108228,0,0,12734,0,1,1 +1774044558.438064,1.15,4,3992.50,46.76,1857.50,1830.75,0.00,20229.552511,24216.347430,1960227,425603,0.005021,0.010288,12415812,8108428,0,0,12736,0,1,1 +1774044563.438991,1.45,4,3992.50,46.74,1858.45,1829.78,0.00,3517784904083.549805,3517784900098.298340,70,0,0.004157,0.008135,12415922,8108592,0,0,12739,0,1,1 +1774044568.439107,12.51,4,3992.50,46.54,1863.55,1822.04,0.00,1.444205,0.022070,224,83,0.031232,40.071313,12417977,8113117,0,0,12741,0,1,1 +1774044573.438912,1.40,4,3992.50,46.54,1863.19,1822.16,0.00,0.000000,0.000000,224,83,0.003433,0.009534,12418082,8113300,0,0,12744,0,1,1 +1774044578.439231,0.95,4,3992.50,46.57,1861.93,1823.41,0.00,20235.596265,24260.065285,1960669,425991,0.001373,0.003821,12418124,8113374,0,0,12746,0,1,1 +1774044583.437688,1.30,4,3992.50,46.57,1862.05,1823.24,0.00,3519523019216.599609,3519523015191.927246,199,0,0.002747,0.007636,12418208,8113521,0,0,12749,0,1,1 +1774044588.438955,1.30,4,3992.50,46.57,1861.86,1823.48,0.00,20233.111501,24255.612218,1960672,426107,0.003440,0.009530,12418314,8113704,0,0,12751,0,1,1 +1774044593.437939,1.20,4,3992.50,46.57,1861.87,1823.47,0.00,3519152238149.927246,3519152234125.589844,199,0,0.002989,0.008256,12418406,8113862,0,0,12754,0,1,1 +1774044598.434551,1.10,4,3992.50,46.52,1863.84,1821.50,0.00,3520823451202.113281,0.000000,70,0,0.003244,0.008940,12418507,8114035,0,0,12756,0,1,1 +1774044603.434618,1.75,4,3992.50,46.52,1863.84,1821.50,0.00,20238.486881,24263.450618,1960692,426129,0.003509,0.009596,12418618,8114222,0,0,12759,0,1,1 +1774044608.434537,0.85,4,3992.50,46.54,1863.08,1822.24,0.00,3518494212176.388672,3518494208151.355469,11,0,0.002772,0.008137,12418704,8114373,0,0,12761,0,1,1 +1774044613.434637,1.85,4,3992.50,46.57,1862.12,1823.21,0.00,1.494208,0.022070,224,83,0.003639,0.009883,12418823,8114571,0,0,12764,0,1,1 +1774044618.434538,1.20,4,3992.50,46.77,1853.99,1831.31,0.00,20236.250154,24264.323711,1960076,426125,0.003441,0.009532,12418929,8114754,0,0,12766,0,1,1 +1774044623.434785,0.70,4,3992.50,46.75,1854.89,1830.41,0.00,3518263038848.844238,3518263034821.050293,224,83,0.002746,0.007633,12419013,8114901,0,0,12769,0,1,1 +1774044628.438924,0.95,4,3992.50,46.75,1854.90,1830.44,0.00,0.000000,0.000000,224,83,0.003430,0.009516,12419118,8115083,0,0,12771,0,1,1 +1774044633.438941,22.51,4,3992.50,53.36,1596.04,2089.14,0.00,20235.948963,24263.776420,1960121,426162,25.843277,0.026806,12422012,8116443,0,0,12774,0,1,1 +1774044638.434515,33.80,4,3992.50,53.21,1602.00,2083.16,0.00,3521554062618.939453,3521554058588.953125,70,0,119.271107,0.033557,12434124,8118648,0,0,12776,0,1,1 +1774044643.439034,28.61,4,3992.50,52.97,1615.52,2073.88,0.00,0.126838,0.000000,199,0,118.857356,0.030103,12446312,8120737,0,0,12779,0,1,1 +1774044648.437238,28.52,4,3992.50,53.17,1606.96,2081.76,0.00,3519701910285.247559,0.000000,11,0,119.206930,0.021827,12458481,8122248,0,0,12781,0,1,1 +1774044653.438935,28.42,4,3992.50,53.07,1610.15,2077.90,0.00,0.000000,0.000000,11,0,119.324400,0.024006,12470684,8123819,0,0,12784,0,1,1 +1774044658.436014,29.31,4,3992.50,53.72,1584.05,2103.20,0.00,0.050029,0.000000,70,0,119.233280,0.020662,12482811,8125190,0,0,12786,0,1,1 +1774044663.435665,29.04,4,3992.50,53.02,1610.99,2075.70,0.00,1.444339,0.022072,224,83,119.170591,0.028660,12494797,8127239,0,0,12789,0,1,1 +1774044668.439032,29.37,4,3992.50,53.42,1594.54,2091.43,0.00,3516069044259.388184,3516069044260.859863,11,0,119.085619,0.033748,12506895,8129587,0,0,12791,0,1,1 +1774044673.438811,29.06,4,3992.50,53.33,1597.46,2088.00,0.00,0.176961,0.000000,199,0,119.175507,0.042844,12519149,8132638,0,0,12794,0,1,1 +1774044678.438839,1.55,4,3992.50,46.97,1846.41,1839.04,0.00,3518417626777.879395,0.000000,11,0,46.267104,0.016478,12523934,8133597,0,0,12796,0,1,1 +1774044683.438185,13.56,4,3992.50,47.31,1833.20,1852.22,0.00,20253.204242,24267.714170,1960999,426694,8.068719,0.050730,12526881,8135886,0,0,12799,0,1,1 +1774044688.438815,22.24,4,3992.50,46.97,1846.34,1839.02,0.00,3517993823612.137695,3517993819597.187012,224,83,24.135650,0.104625,12534523,8141666,0,0,12801,0,1,1 +1774044693.437158,11.95,4,3992.50,46.82,1852.30,1833.01,0.00,3519603752684.782715,3519603752686.255371,11,0,8.062914,0.043101,12537299,8143698,0,0,12804,0,1,1 +1774044698.439021,1.55,4,3992.50,46.83,1851.70,1833.60,0.00,20256.004383,24256.148892,1961140,427453,0.005170,0.011471,12537442,8143917,0,0,12806,0,1,1 +1774044703.438681,0.75,4,3992.50,46.83,1851.66,1833.63,0.00,3518676000456.063965,3518675996454.157227,11,0,0.004323,0.008400,12537555,8144082,0,0,12809,0,1,1 +1774044708.434631,0.90,4,3992.50,46.86,1850.49,1834.82,0.00,20279.980063,24285.435524,1961140,427919,0.005039,0.010299,12537691,8144282,0,0,12811,0,1,1 +1774044713.436182,0.80,4,3992.50,46.86,1850.49,1834.82,0.00,3517345839920.360840,3517345835917.383301,238,2,0.005004,0.010305,12537825,8144484,0,0,12814,0,1,1 +1774044718.439218,0.70,4,3992.50,46.85,1850.83,1834.48,0.00,0.000000,0.000000,238,2,0.003876,0.007106,12537925,8144623,0,0,12816,0,1,1 +1774044723.436537,1.15,4,3992.50,46.85,1851.05,1834.26,0.00,3520324799998.300781,3520324800000.310547,11,0,0.004197,0.007876,12538039,8144783,0,0,12819,0,1,1 +1774044728.439192,0.80,4,3992.50,46.85,1851.14,1834.15,0.00,0.000000,0.000000,11,0,0.005070,0.010347,12538178,8144987,0,0,12821,0,1,1 +1774044733.434520,0.70,4,3992.50,46.85,1851.18,1834.14,0.00,0.177119,0.000000,199,0,0.005052,0.010310,12538315,8145188,0,0,12824,0,1,1 +1774044738.434558,0.75,4,3992.50,46.85,1851.19,1834.12,0.00,0.000000,0.000000,199,0,0.004344,0.008398,12538430,8145353,0,0,12826,0,1,1 +1774044743.439178,0.80,4,3992.50,46.84,1851.36,1833.95,0.00,20240.763992,24243.578564,1960388,428066,0.005118,0.010974,12538572,8145561,0,0,12829,0,1,1 +1774044748.438470,1.00,4,3992.50,46.82,1852.30,1832.98,0.00,3518935239717.145508,3518935235708.233887,238,2,0.005945,0.010937,12538709,8145762,0,0,12831,0,1,1 +1774044753.439379,0.75,4,3992.50,46.82,1852.07,1833.23,0.00,20258.261966,24261.642739,1961163,428201,0.004335,0.008411,12538823,8145928,0,0,12834,0,1,1 +1774044758.438680,0.85,4,3992.50,46.63,1859.64,1825.66,0.00,3518928885737.359375,3518928881734.649902,70,0,0.005048,0.010292,12538960,8146128,0,0,12836,0,1,1 +1774044763.438396,0.65,4,3992.50,46.63,1859.69,1825.65,0.00,0.126960,0.000000,199,0,0.004573,0.009029,12539082,8146305,0,0,12839,0,1,1 +1774044768.435727,0.65,4,3992.50,46.56,1862.29,1823.06,0.00,0.000000,0.000000,199,0,0.004796,0.009675,12539210,8146494,0,0,12841,0,1,1 +1774044773.438954,0.90,4,3992.50,46.56,1862.30,1823.04,0.00,0.000000,0.000000,199,0,0.004981,0.010294,12539342,8146695,0,0,12844,0,1,1 +1774044778.438761,0.95,4,3992.50,46.59,1861.32,1824.01,0.00,3518572899832.096680,0.000000,70,0,0.004323,0.008390,12539455,8146859,0,0,12846,0,1,1 +1774044783.436500,0.75,4,3992.50,46.59,1861.34,1824.00,0.00,1.959675,0.000195,238,2,0.005037,0.010342,12539591,8147061,0,0,12849,0,1,1 +1774044788.440267,8.84,4,3992.50,47.14,1837.36,1845.76,0.00,20246.754010,24248.059522,1961166,428490,0.026479,33.436284,12541191,8150915,0,0,12851,0,1,1 +1774044793.439193,29.22,4,3992.50,47.39,1819.59,1855.28,0.00,3519192940935.967773,3519192936930.788086,238,2,0.056411,118.196982,12545341,8163164,0,0,12854,0,1,1 +1774044798.435213,13.82,4,3992.50,47.07,1828.34,1842.72,0.00,0.000000,0.000000,238,2,0.018285,53.523980,12546610,8168792,0,0,12856,0,1,1 +1774044803.437540,10.73,4,3992.50,51.67,1648.21,2022.86,0.00,3516800160913.807129,3516800160915.814941,11,0,11.737864,0.018235,12548147,8169696,0,0,12859,0,1,1 +1774044808.438523,9.29,4,3992.50,47.64,1805.29,1865.17,0.00,1.493945,0.022066,224,83,28.333422,9.532299,12551930,8171673,0,0,12861,0,1,1 +1774044813.435417,8.94,4,3992.50,47.72,1799.84,1868.37,0.00,0.000000,0.000000,224,83,0.011295,30.574532,12552593,8174971,0,0,12864,0,1,1 +1774044818.434509,0.90,4,3992.50,47.13,1822.82,1845.39,0.00,3519076630032.267090,3519076630033.562500,199,0,0.003467,0.009521,12552701,8175153,0,0,12866,0,1,1 +1774044823.438790,1.30,4,3992.50,46.92,1831.00,1837.21,0.00,20262.711321,24488.781574,1960542,430117,0.002744,0.007639,12552785,8175301,0,0,12869,0,1,1 +1774044828.439006,0.65,4,3992.50,46.95,1829.92,1838.27,0.00,4.063009,0.051170,1961303,430217,0.003433,0.009524,12552890,8175483,0,0,12871,0,1,1 +1774044833.439071,2.41,4,3992.50,46.95,1829.94,1838.27,0.00,3518391604317.322266,3518391600091.826660,70,0,0.003065,0.008712,12552988,8175651,0,0,12874,0,1,1 +1774044838.434580,0.90,4,3992.50,46.98,1828.74,1839.46,0.00,1.960550,0.000195,238,2,0.003193,0.008546,12553085,8175818,0,0,12876,0,1,1 +1774044843.438383,0.75,4,3992.50,46.98,1828.75,1839.46,0.00,3515762906560.723633,0.021858,224,83,0.003439,0.009535,12553191,8176002,0,0,12879,0,1,1 +1774044848.439267,0.65,4,3992.50,46.95,1830.05,1838.16,0.00,3517815474396.140137,3517815474397.611816,11,0,0.002746,0.007622,12553275,8176148,0,0,12881,0,1,1 +1774044853.434620,1.36,4,3992.50,46.98,1828.82,1839.40,0.00,0.050047,0.000000,70,0,0.003588,0.009730,12553392,8176343,0,0,12884,0,1,1 +1774044858.434536,0.70,4,3992.50,46.98,1828.82,1839.39,0.00,0.126955,0.000000,199,0,0.003589,0.009650,12553507,8176535,0,0,12886,0,1,1 +1774044863.438877,0.90,4,3992.50,46.98,1828.84,1839.38,0.00,1.830247,0.000195,238,2,0.002769,0.007627,12553593,8176682,0,0,12889,0,1,1 +1774044868.439176,2.06,4,3992.50,47.14,1822.51,1845.71,0.00,3518226555066.207031,3518226555068.215332,11,0,0.003441,0.009532,12553699,8176865,0,0,12891,0,1,1 +1774044873.434659,1.66,4,3992.50,46.99,1828.43,1839.81,0.00,20302.643972,24534.049539,1961303,430282,0.003411,0.009543,12553802,8177048,0,0,12894,0,1,1 +1774044878.434605,17.73,4,3992.50,53.14,1591.65,2080.58,0.00,3518475483687.556152,3518475479458.455078,224,83,18.433463,0.024679,12555972,8178307,0,0,12896,0,1,1 +1774044883.438371,33.35,4,3992.50,53.23,1595.40,2084.20,0.00,20263.505691,24493.495817,1960543,430323,119.274515,0.041936,12568043,8181211,0,0,12899,0,1,1 +1774044888.435066,28.30,4,3992.50,53.12,1603.82,2079.84,0.00,3520764737301.989258,3520764733066.012207,224,83,119.045247,0.034234,12580257,8183505,0,0,12901,0,1,1 +1774044893.434634,27.89,4,3992.50,53.45,1590.71,2092.86,0.00,20280.520237,24514.148178,1960543,430345,119.374742,0.028666,12592468,8185637,0,0,12904,0,1,1 +1774044898.434530,27.99,4,3992.50,53.20,1600.86,2082.82,0.00,0.216411,0.004981,1960555,430352,118.966972,0.022739,12604693,8187185,0,0,12906,0,1,1 +1774044903.438925,29.08,4,3992.50,53.21,1600.39,2083.26,0.00,3515347114823.705078,3515347110595.665527,199,0,120.059997,0.020729,12617041,8188690,0,0,12909,0,1,1 +1774044908.434523,28.69,4,3992.50,53.23,1599.69,2084.03,0.00,20302.345766,24533.848145,1961334,430532,118.267954,0.038100,12629119,8191303,0,0,12911,0,1,1 +1774044913.435432,28.55,4,3992.50,52.98,1609.47,2074.22,0.00,3517798039872.684082,3517798035645.851074,11,0,120.147132,0.028139,12641442,8193225,0,0,12914,0,1,1 +1774044918.441363,28.52,4,3992.50,53.00,1608.55,2075.23,0.00,0.000000,0.000000,11,0,118.713728,0.030467,12653724,8195457,0,0,12916,0,1,1 +1774044923.434995,2.91,4,3992.50,47.12,1838.81,1844.95,0.00,0.000000,0.000000,11,0,53.058740,0.021236,12659231,8196834,0,0,12919,0,1,1 +1774044928.434561,7.28,4,3992.50,47.89,1808.68,1875.09,0.00,0.176969,0.000000,199,0,3.747855,0.029649,12660628,8198024,0,0,12921,0,1,1 +1774044933.434526,22.81,4,3992.50,47.81,1811.95,1871.70,0.00,3518461270232.315918,0.000000,70,0,26.451009,0.119113,12669354,8204441,0,0,12924,0,1,1 +1774044938.434539,12.42,4,3992.50,47.70,1816.10,1867.53,0.00,20285.307221,24512.959560,1961420,431589,10.070210,0.051892,12672861,8207001,0,0,12926,0,1,1 +1774044943.434643,1.90,4,3992.50,47.58,1820.66,1862.96,0.00,3518363587951.391602,3518363583722.395508,224,83,0.005716,0.012316,12673011,8207228,0,0,12929,0,1,1 +1774044948.438382,1.00,4,3992.50,47.41,1827.50,1856.14,0.00,20264.695522,24495.034997,1960659,431821,0.005014,0.010266,12673146,8207427,0,0,12931,0,1,1 +1774044953.438565,2.41,4,3992.50,47.41,1827.61,1856.03,0.00,3518308350966.185059,3518308346732.837402,224,83,0.005357,0.010611,12673287,8207639,0,0,12934,0,1,1 +1774044958.439333,1.00,4,3992.50,47.24,1833.88,1849.72,0.00,20276.777599,24509.822969,1960661,431896,0.005009,0.010289,12673421,8207839,0,0,12936,0,1,1 +1774044963.434543,1.20,4,3992.50,47.27,1832.89,1850.75,0.00,4.096014,0.167250,1961425,432023,0.004353,0.008408,12673536,8208004,0,0,12939,0,1,1 +1774044968.439383,1.10,4,3992.50,47.08,1840.33,1843.32,0.00,0.000000,0.019122,1961425,432030,0.005143,0.010436,12673681,8208214,0,0,12941,0,1,1 +1774044973.439127,1.05,4,3992.50,47.09,1840.10,1843.50,0.00,3518617532525.950684,3518617528295.943848,224,83,0.005031,0.010309,12673817,8208416,0,0,12944,0,1,1 +1774044978.439164,0.85,4,3992.50,47.08,1840.17,1843.48,0.00,3518411280301.793945,3518411280303.089355,199,0,0.004323,0.008390,12673930,8208580,0,0,12946,0,1,1 +1774044983.434540,0.95,4,3992.50,47.08,1840.18,1843.45,0.00,3521693771939.392090,0.000000,70,0,0.005014,0.010323,12674064,8208782,0,0,12949,0,1,1 +1774044988.438969,0.85,4,3992.50,47.08,1840.22,1843.44,0.00,1.957056,0.000195,238,2,0.005118,0.010321,12674206,8208985,0,0,12951,0,1,1 +1774044993.437436,1.30,4,3992.50,46.89,1847.66,1836.01,0.00,0.000000,0.000000,238,2,0.004337,0.008402,12674320,8209150,0,0,12954,0,1,1 +1774044998.436408,0.95,4,3992.50,46.91,1846.91,1836.77,0.00,3519160937700.840820,3519160937702.850098,11,0,0.005094,0.010351,12674460,8209355,0,0,12956,0,1,1 +1774045003.434747,1.20,4,3992.50,46.89,1847.94,1835.73,0.00,0.000000,0.000000,11,0,0.005024,0.010304,12674595,8209556,0,0,12959,0,1,1 +1774045008.437518,5.92,4,3992.50,47.54,1821.06,1861.42,0.00,20274.292336,24500.586653,1961430,432439,0.020177,19.829086,12675813,8211930,0,0,12961,0,1,1 +1774045013.436949,29.21,4,3992.50,47.21,1825.99,1848.22,0.00,3518838020844.211426,3518838016615.042969,70,0,0.070669,119.096579,12681155,8224221,0,0,12964,0,1,1 +1774045018.437311,17.26,4,3992.50,47.03,1828.29,1841.22,0.00,20284.019178,24687.798992,1961435,433476,0.030271,66.179695,12683316,8231046,0,0,12966,0,1,1 +1774045023.438826,2.11,4,3992.50,47.06,1826.88,1842.60,0.00,3517371288625.208008,3517371284220.485352,238,2,0.005486,0.007131,12683427,8231191,0,0,12969,0,1,1 +1774045028.439327,16.77,4,3992.50,48.95,1752.86,1916.65,0.00,20300.920574,24716.991544,1961602,433826,40.063263,0.032678,12687963,8232884,0,0,12971,0,1,1 +1774045033.434519,1.21,4,3992.50,48.30,1778.53,1890.98,0.00,3521823749643.178223,3521823745224.374512,70,0,0.004786,0.009651,12688090,8233071,0,0,12974,0,1,1 +1774045038.439396,11.23,4,3992.50,47.85,1793.18,1873.51,0.00,1.956880,0.000195,238,2,0.032000,40.028958,12690266,8237526,0,0,12976,0,1,1 +1774045043.438770,1.50,4,3992.50,47.49,1807.17,1859.52,0.00,3518878322799.775879,3518878322801.784668,11,0,0.004023,0.010605,12690385,8237729,0,0,12979,0,1,1 +1774045048.434654,0.85,4,3992.50,47.51,1806.44,1860.25,0.00,2.010444,0.000195,238,2,0.003697,0.008287,12690473,8237877,0,0,12981,0,1,1 +1774045053.434640,0.90,4,3992.50,47.51,1806.45,1860.23,0.00,3518446964832.429199,0.021875,224,83,0.003479,0.009573,12690582,8238063,0,0,12984,0,1,1 +1774045058.436656,0.90,4,3992.50,47.54,1805.48,1861.21,0.00,0.514343,3517018793093.711914,238,2,0.003419,0.009520,12690686,8238245,0,0,12986,0,1,1 +1774045063.439085,1.05,4,3992.50,47.56,1804.50,1862.19,0.00,0.000000,0.000000,238,2,0.002758,0.007630,12690771,8238392,0,0,12989,0,1,1 +1774045068.438521,0.95,4,3992.50,47.58,1803.77,1862.92,0.00,3518834436026.830566,0.021877,224,83,0.003459,0.009525,12690878,8238574,0,0,12991,0,1,1 +1774045073.435209,1.05,4,3992.50,47.16,1820.39,1846.30,0.00,3520769202333.536621,3520769202334.959473,70,0,0.003473,0.010216,12690986,8238763,0,0,12994,0,1,1 +1774045078.439237,0.90,4,3992.50,47.16,1820.28,1846.41,0.00,20288.595569,24739.875224,1961610,434315,0.002803,0.007687,12691075,8238914,0,0,12996,0,1,1 +1774045083.439346,0.80,4,3992.50,47.20,1818.84,1847.85,0.00,3518359847994.041016,3518359843537.314941,238,2,0.003602,0.009703,12691192,8239109,0,0,12999,0,1,1 +1774045088.438511,1.05,4,3992.50,47.02,1825.67,1841.02,0.00,3519024977547.141602,3519024977549.100586,70,0,0.004560,0.009985,12691323,8239309,0,0,13001,0,1,1 +1774045093.435057,0.95,4,3992.50,47.05,1824.45,1842.24,0.00,0.127041,0.000000,199,0,0.003884,0.008254,12691431,8239470,0,0,13004,0,1,1 +1774045098.439061,1.05,4,3992.50,47.05,1824.45,1842.23,0.00,3515622319701.010254,0.000000,70,0,0.003418,0.009517,12691535,8239652,0,0,13006,0,1,1 +1774045103.435225,12.15,4,3992.50,53.40,1579.24,2090.86,0.00,3521138024565.222168,0.000000,11,0,5.421091,0.020338,12692386,8240404,0,0,13009,0,1,1 +1774045108.434512,36.71,4,3992.50,53.39,1587.19,2090.41,0.00,2.009076,0.000195,238,2,122.188393,0.039008,12704909,8243052,0,0,13011,0,1,1 +1774045113.434810,28.71,4,3992.50,53.51,1587.39,2094.88,0.00,3518227611176.395020,0.021874,224,83,121.156077,0.040099,12717162,8246124,0,0,13014,0,1,1 +1774045118.438454,29.17,4,3992.50,53.27,1596.44,2085.74,0.00,3515874549801.924316,3515874549803.218750,199,0,121.078913,0.039012,12729413,8248899,0,0,13016,0,1,1 +1774045123.435188,28.46,4,3992.50,53.32,1594.39,2087.77,0.00,1.318146,0.022085,224,83,120.242964,0.045267,12741558,8252188,0,0,13019,0,1,1 +1774045128.439364,29.70,4,3992.50,53.44,1589.79,2092.39,0.00,3515500862880.755859,3515500862882.050293,199,0,119.662369,0.048680,12753598,8255913,0,0,13021,0,1,1 +1774045133.435031,28.37,4,3992.50,53.38,1592.24,2089.96,0.00,3521488816290.685059,0.000000,11,0,119.468340,0.041487,12765770,8258833,0,0,13024,0,1,1 +1774045138.434489,28.65,4,3992.50,53.37,1592.64,2089.54,0.00,0.176972,0.000000,199,0,119.378423,0.052791,12777949,8262633,0,0,13026,0,1,1 +1774045143.434640,26.36,4,3992.50,53.40,1590.87,2090.91,0.00,3518331247300.848145,0.000000,11,0,119.557327,0.050524,12789969,8266533,0,0,13029,0,1,1 +1774045148.437471,6.36,4,3992.50,48.06,1800.48,1881.81,0.00,0.000000,0.000000,11,0,57.249834,0.030058,12795834,8268516,0,0,13031,0,1,1 +1774045153.436522,3.91,4,3992.50,47.68,1815.36,1866.92,0.00,0.176987,0.000000,199,0,0.011777,0.014854,12796078,8268798,0,0,13034,0,1,1 diff --git a/evaluation/data/pipeline_validation_run1/pipeline.log b/evaluation/data/pipeline_validation_run1/pipeline.log new file mode 100644 index 0000000..d49e64c --- /dev/null +++ b/evaluation/data/pipeline_validation_run1/pipeline.log @@ -0,0 +1,5063 @@ +2026/03/20 16:48:24 detector: Ensemble method=sead contamination=0.15 +2026/03/20 16:48:24 detector: SEAD η=0.100 λ=0.010 quantile_window=300 +2026/03/20 16:48:24 detector: auto-scaling enabled +2026/03/20 16:48:24 pipeline started – waiting for SIGINT / SIGTERM +2026/03/20 16:48:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:48:29 ───────────────────────────────────────────────── +2026/03/20 16:48:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:48:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:29.575536451Z"} +2026/03/20 16:48:34 [metric_collector] {"stage_name":"metric_collector","events_processed":4,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0.8,"last_update":"2026-03-20T16:48:29.575783075Z"} +2026/03/20 16:48:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:29.58529338Z"} +2026/03/20 16:48:34 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:29.719577456Z"} +2026/03/20 16:48:34 [transform_engine] {"stage_name":"transform_engine","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:29.719599367Z"} +2026/03/20 16:48:34 ───────────────────────────────────────────────── +2026/03/20 16:48:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:48:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:34.575670538Z"} +2026/03/20 16:48:39 [metric_collector] {"stage_name":"metric_collector","events_processed":9,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1.8,"last_update":"2026-03-20T16:48:34.575964341Z"} +2026/03/20 16:48:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:34.584570094Z"} +2026/03/20 16:48:39 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:34.718794313Z"} +2026/03/20 16:48:39 [transform_engine] {"stage_name":"transform_engine","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:34.718743998Z"} +2026/03/20 16:48:39 ───────────────────────────────────────────────── +2026/03/20 16:48:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:48:44 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:39.719693062Z"} +2026/03/20 16:48:44 [transform_engine] {"stage_name":"transform_engine","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:39.719805904Z"} +2026/03/20 16:48:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:39.575531231Z"} +2026/03/20 16:48:44 [metric_collector] {"stage_name":"metric_collector","events_processed":14,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2.8,"last_update":"2026-03-20T16:48:39.575968435Z"} +2026/03/20 16:48:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:39.585382545Z"} +2026/03/20 16:48:44 ───────────────────────────────────────────────── +2026/03/20 16:48:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:48:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:44.575860115Z"} +2026/03/20 16:48:49 [metric_collector] {"stage_name":"metric_collector","events_processed":19,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3.8,"last_update":"2026-03-20T16:48:44.576518826Z"} +2026/03/20 16:48:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":10,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:44.585441162Z"} +2026/03/20 16:48:49 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:44.7196865Z"} +2026/03/20 16:48:49 [transform_engine] {"stage_name":"transform_engine","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:44.719741723Z"} +2026/03/20 16:48:49 ───────────────────────────────────────────────── +2026/03/20 16:48:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:48:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":12,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:49.584959564Z"} +2026/03/20 16:48:54 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:49.719508177Z"} +2026/03/20 16:48:54 [transform_engine] {"stage_name":"transform_engine","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:49.719397649Z"} +2026/03/20 16:48:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:49.575603758Z"} +2026/03/20 16:48:54 [metric_collector] {"stage_name":"metric_collector","events_processed":24,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4.8,"last_update":"2026-03-20T16:48:49.576337161Z"} +2026/03/20 16:48:54 ───────────────────────────────────────────────── +2026/03/20 16:48:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:48:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:54.576105206Z"} +2026/03/20 16:48:59 [metric_collector] {"stage_name":"metric_collector","events_processed":29,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5.8,"last_update":"2026-03-20T16:48:54.576092272Z"} +2026/03/20 16:48:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":12,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:54.576205004Z"} +2026/03/20 16:48:59 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:54.719540066Z"} +2026/03/20 16:48:59 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":116.941905,"throughput_eps":0,"last_update":"2026-03-20T16:48:54.836510845Z"} +2026/03/20 16:48:59 ───────────────────────────────────────────────── +2026/03/20 16:49:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:04 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":116.941905,"throughput_eps":0,"last_update":"2026-03-20T16:48:59.719123877Z"} +2026/03/20 16:49:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:59.575532235Z"} +2026/03/20 16:49:04 [metric_collector] {"stage_name":"metric_collector","events_processed":34,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6.8,"last_update":"2026-03-20T16:48:59.576019795Z"} +2026/03/20 16:49:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":16,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:59.587720891Z"} +2026/03/20 16:49:04 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.336335999999999,"throughput_eps":0,"last_update":"2026-03-20T16:48:59.71917319Z"} +2026/03/20 16:49:04 ───────────────────────────────────────────────── +2026/03/20 16:49:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:09 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":116.941905,"throughput_eps":0,"last_update":"2026-03-20T16:49:04.719482906Z"} +2026/03/20 16:49:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:04.575944069Z"} +2026/03/20 16:49:09 [metric_collector] {"stage_name":"metric_collector","events_processed":39,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7.8,"last_update":"2026-03-20T16:49:04.576692821Z"} +2026/03/20 16:49:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":18,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:04.585060822Z"} +2026/03/20 16:49:09 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.336335999999999,"throughput_eps":0,"last_update":"2026-03-20T16:49:04.719456406Z"} +2026/03/20 16:49:09 ───────────────────────────────────────────────── +2026/03/20 16:49:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:09.57549729Z"} +2026/03/20 16:49:14 [metric_collector] {"stage_name":"metric_collector","events_processed":44,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":8.8,"last_update":"2026-03-20T16:49:09.575818847Z"} +2026/03/20 16:49:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":20,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:09.586163401Z"} +2026/03/20 16:49:14 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.336335999999999,"throughput_eps":0,"last_update":"2026-03-20T16:49:09.719551276Z"} +2026/03/20 16:49:14 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":116.941905,"throughput_eps":0,"last_update":"2026-03-20T16:49:09.719565242Z"} +2026/03/20 16:49:14 ───────────────────────────────────────────────── +2026/03/20 16:49:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:14.575493572Z"} +2026/03/20 16:49:19 [metric_collector] {"stage_name":"metric_collector","events_processed":49,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":9.8,"last_update":"2026-03-20T16:49:14.575775264Z"} +2026/03/20 16:49:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":22,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:14.585754651Z"} +2026/03/20 16:49:19 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.336335999999999,"throughput_eps":0,"last_update":"2026-03-20T16:49:14.719166012Z"} +2026/03/20 16:49:19 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":116.941905,"throughput_eps":0,"last_update":"2026-03-20T16:49:14.719183655Z"} +2026/03/20 16:49:19 ───────────────────────────────────────────────── +2026/03/20 16:49:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:24 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":116.941905,"throughput_eps":0,"last_update":"2026-03-20T16:49:19.718985592Z"} +2026/03/20 16:49:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:19.575935993Z"} +2026/03/20 16:49:24 [metric_collector] {"stage_name":"metric_collector","events_processed":54,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":10.8,"last_update":"2026-03-20T16:49:19.576692923Z"} +2026/03/20 16:49:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":24,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:19.58465779Z"} +2026/03/20 16:49:24 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.336335999999999,"throughput_eps":0,"last_update":"2026-03-20T16:49:19.718970323Z"} +2026/03/20 16:49:24 ───────────────────────────────────────────────── +2026/03/20 16:49:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:29 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.336335999999999,"throughput_eps":0,"last_update":"2026-03-20T16:49:24.719142683Z"} +2026/03/20 16:49:29 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":116.26926880000002,"throughput_eps":0,"last_update":"2026-03-20T16:49:24.832734852Z"} +2026/03/20 16:49:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:24.575946834Z"} +2026/03/20 16:49:29 [metric_collector] {"stage_name":"metric_collector","events_processed":59,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":11.8,"last_update":"2026-03-20T16:49:24.576294771Z"} +2026/03/20 16:49:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":26,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:24.584827262Z"} +2026/03/20 16:49:29 ───────────────────────────────────────────────── +2026/03/20 16:49:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:34 [metric_collector] {"stage_name":"metric_collector","events_processed":64,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":12.8,"last_update":"2026-03-20T16:49:29.57599864Z"} +2026/03/20 16:49:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":28,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:29.585887356Z"} +2026/03/20 16:49:34 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.6488819999999995,"throughput_eps":0,"last_update":"2026-03-20T16:49:29.71930467Z"} +2026/03/20 16:49:34 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":116.26926880000002,"throughput_eps":0,"last_update":"2026-03-20T16:49:29.719319738Z"} +2026/03/20 16:49:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:29.575502624Z"} +2026/03/20 16:49:34 ───────────────────────────────────────────────── +2026/03/20 16:49:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:34.575556739Z"} +2026/03/20 16:49:39 [metric_collector] {"stage_name":"metric_collector","events_processed":69,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":13.8,"last_update":"2026-03-20T16:49:34.575595172Z"} +2026/03/20 16:49:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":30,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:34.585426081Z"} +2026/03/20 16:49:39 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.6488819999999995,"throughput_eps":0,"last_update":"2026-03-20T16:49:34.719770576Z"} +2026/03/20 16:49:39 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":116.26926880000002,"throughput_eps":0,"last_update":"2026-03-20T16:49:34.718646894Z"} +2026/03/20 16:49:39 ───────────────────────────────────────────────── +2026/03/20 16:49:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":32,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:39.585836618Z"} +2026/03/20 16:49:44 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.6488819999999995,"throughput_eps":0,"last_update":"2026-03-20T16:49:39.719228675Z"} +2026/03/20 16:49:44 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":116.26926880000002,"throughput_eps":0,"last_update":"2026-03-20T16:49:39.719239665Z"} +2026/03/20 16:49:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:39.575768218Z"} +2026/03/20 16:49:44 [metric_collector] {"stage_name":"metric_collector","events_processed":74,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":14.8,"last_update":"2026-03-20T16:49:39.576147224Z"} +2026/03/20 16:49:44 ───────────────────────────────────────────────── +2026/03/20 16:49:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:44.575853244Z"} +2026/03/20 16:49:49 [metric_collector] {"stage_name":"metric_collector","events_processed":79,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":15.8,"last_update":"2026-03-20T16:49:44.576470551Z"} +2026/03/20 16:49:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":34,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:44.587258184Z"} +2026/03/20 16:49:49 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.6488819999999995,"throughput_eps":0,"last_update":"2026-03-20T16:49:44.719628298Z"} +2026/03/20 16:49:49 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":116.26926880000002,"throughput_eps":0,"last_update":"2026-03-20T16:49:44.719639449Z"} +2026/03/20 16:49:49 ───────────────────────────────────────────────── +2026/03/20 16:49:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:49.575591094Z"} +2026/03/20 16:49:54 [metric_collector] {"stage_name":"metric_collector","events_processed":84,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":16.8,"last_update":"2026-03-20T16:49:49.575687335Z"} +2026/03/20 16:49:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":36,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:49.586302415Z"} +2026/03/20 16:49:54 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.6488819999999995,"throughput_eps":0,"last_update":"2026-03-20T16:49:49.719602785Z"} +2026/03/20 16:49:54 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":116.26926880000002,"throughput_eps":0,"last_update":"2026-03-20T16:49:49.719615039Z"} +2026/03/20 16:49:54 ───────────────────────────────────────────────── +2026/03/20 16:49:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:59 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":106.24250644000003,"throughput_eps":0,"last_update":"2026-03-20T16:49:54.785284587Z"} +2026/03/20 16:49:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:54.575806051Z"} +2026/03/20 16:49:59 [metric_collector] {"stage_name":"metric_collector","events_processed":89,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":17.8,"last_update":"2026-03-20T16:49:54.576158607Z"} +2026/03/20 16:49:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":38,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:54.587900078Z"} +2026/03/20 16:49:59 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.6488819999999995,"throughput_eps":0,"last_update":"2026-03-20T16:49:54.719139241Z"} +2026/03/20 16:49:59 ───────────────────────────────────────────────── +2026/03/20 16:50:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:04 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":106.24250644000003,"throughput_eps":0,"last_update":"2026-03-20T16:49:59.719235596Z"} +2026/03/20 16:50:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:59.575955204Z"} +2026/03/20 16:50:04 [metric_collector] {"stage_name":"metric_collector","events_processed":94,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":18.8,"last_update":"2026-03-20T16:49:59.576567402Z"} +2026/03/20 16:50:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":40,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:59.586833807Z"} +2026/03/20 16:50:04 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.5925302,"throughput_eps":0,"last_update":"2026-03-20T16:49:59.719209567Z"} +2026/03/20 16:50:04 ───────────────────────────────────────────────── +2026/03/20 16:50:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:09 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":106.24250644000003,"throughput_eps":0,"last_update":"2026-03-20T16:50:04.718781386Z"} +2026/03/20 16:50:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:04.575691504Z"} +2026/03/20 16:50:09 [metric_collector] {"stage_name":"metric_collector","events_processed":99,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":19.8,"last_update":"2026-03-20T16:50:04.576062586Z"} +2026/03/20 16:50:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":42,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:04.587571303Z"} +2026/03/20 16:50:09 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.5925302,"throughput_eps":0,"last_update":"2026-03-20T16:50:04.718882588Z"} +2026/03/20 16:50:09 ───────────────────────────────────────────────── +2026/03/20 16:50:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:14 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":106.24250644000003,"throughput_eps":0,"last_update":"2026-03-20T16:50:09.719720708Z"} +2026/03/20 16:50:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:09.57552283Z"} +2026/03/20 16:50:14 [metric_collector] {"stage_name":"metric_collector","events_processed":104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":20.8,"last_update":"2026-03-20T16:50:09.575517259Z"} +2026/03/20 16:50:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":44,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:09.586505556Z"} +2026/03/20 16:50:14 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.5925302,"throughput_eps":0,"last_update":"2026-03-20T16:50:09.719680411Z"} +2026/03/20 16:50:14 ───────────────────────────────────────────────── +2026/03/20 16:50:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:19 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.5925302,"throughput_eps":0,"last_update":"2026-03-20T16:50:14.719565237Z"} +2026/03/20 16:50:19 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":106.24250644000003,"throughput_eps":0,"last_update":"2026-03-20T16:50:14.719448135Z"} +2026/03/20 16:50:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:14.575595401Z"} +2026/03/20 16:50:19 [metric_collector] {"stage_name":"metric_collector","events_processed":109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":21.8,"last_update":"2026-03-20T16:50:14.575629916Z"} +2026/03/20 16:50:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":46,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:14.585055922Z"} +2026/03/20 16:50:19 ───────────────────────────────────────────────── +2026/03/20 16:50:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:19.57563212Z"} +2026/03/20 16:50:24 [metric_collector] {"stage_name":"metric_collector","events_processed":114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":22.8,"last_update":"2026-03-20T16:50:19.575936035Z"} +2026/03/20 16:50:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":48,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:19.585837934Z"} +2026/03/20 16:50:24 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.5925302,"throughput_eps":0,"last_update":"2026-03-20T16:50:19.719195087Z"} +2026/03/20 16:50:24 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":106.24250644000003,"throughput_eps":0,"last_update":"2026-03-20T16:50:19.719237988Z"} +2026/03/20 16:50:24 ───────────────────────────────────────────────── +2026/03/20 16:50:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:29 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.5925302,"throughput_eps":0,"last_update":"2026-03-20T16:50:24.719198455Z"} +2026/03/20 16:50:29 [transform_engine] {"stage_name":"transform_engine","events_processed":4,"events_dropped":0,"avg_latency_ms":107.08107695200003,"throughput_eps":0,"last_update":"2026-03-20T16:50:24.829228097Z"} +2026/03/20 16:50:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:24.575678131Z"} +2026/03/20 16:50:29 [metric_collector] {"stage_name":"metric_collector","events_processed":119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":23.8,"last_update":"2026-03-20T16:50:24.576015419Z"} +2026/03/20 16:50:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":50,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:24.585537732Z"} +2026/03/20 16:50:29 ───────────────────────────────────────────────── +2026/03/20 16:50:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:29.575676984Z"} +2026/03/20 16:50:34 [metric_collector] {"stage_name":"metric_collector","events_processed":124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":24.8,"last_update":"2026-03-20T16:50:29.576021606Z"} +2026/03/20 16:50:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":52,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:29.586575203Z"} +2026/03/20 16:50:34 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.74883116,"throughput_eps":0,"last_update":"2026-03-20T16:50:29.718849969Z"} +2026/03/20 16:50:34 [transform_engine] {"stage_name":"transform_engine","events_processed":4,"events_dropped":0,"avg_latency_ms":107.08107695200003,"throughput_eps":0,"last_update":"2026-03-20T16:50:29.718863625Z"} +2026/03/20 16:50:34 ───────────────────────────────────────────────── +2026/03/20 16:50:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":54,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:34.585291978Z"} +2026/03/20 16:50:39 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.74883116,"throughput_eps":0,"last_update":"2026-03-20T16:50:34.719545535Z"} +2026/03/20 16:50:39 [transform_engine] {"stage_name":"transform_engine","events_processed":4,"events_dropped":0,"avg_latency_ms":107.08107695200003,"throughput_eps":0,"last_update":"2026-03-20T16:50:34.71955884Z"} +2026/03/20 16:50:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:34.575538012Z"} +2026/03/20 16:50:39 [metric_collector] {"stage_name":"metric_collector","events_processed":129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":25.8,"last_update":"2026-03-20T16:50:34.575906299Z"} +2026/03/20 16:50:39 ───────────────────────────────────────────────── +2026/03/20 16:50:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:44 [transform_engine] {"stage_name":"transform_engine","events_processed":4,"events_dropped":0,"avg_latency_ms":107.08107695200003,"throughput_eps":0,"last_update":"2026-03-20T16:50:39.718729594Z"} +2026/03/20 16:50:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:39.575534169Z"} +2026/03/20 16:50:44 [metric_collector] {"stage_name":"metric_collector","events_processed":134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":26.8,"last_update":"2026-03-20T16:50:39.575770838Z"} +2026/03/20 16:50:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":56,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:39.585606031Z"} +2026/03/20 16:50:44 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.74883116,"throughput_eps":0,"last_update":"2026-03-20T16:50:39.718850903Z"} +2026/03/20 16:50:44 ───────────────────────────────────────────────── +2026/03/20 16:50:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:49 [metric_collector] {"stage_name":"metric_collector","events_processed":139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":27.8,"last_update":"2026-03-20T16:50:44.576706484Z"} +2026/03/20 16:50:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":58,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:44.586733943Z"} +2026/03/20 16:50:49 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.74883116,"throughput_eps":0,"last_update":"2026-03-20T16:50:44.718945104Z"} +2026/03/20 16:50:49 [transform_engine] {"stage_name":"transform_engine","events_processed":4,"events_dropped":0,"avg_latency_ms":107.08107695200003,"throughput_eps":0,"last_update":"2026-03-20T16:50:44.718955274Z"} +2026/03/20 16:50:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:44.575932649Z"} +2026/03/20 16:50:49 ───────────────────────────────────────────────── +2026/03/20 16:50:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:49.576000945Z"} +2026/03/20 16:50:54 [metric_collector] {"stage_name":"metric_collector","events_processed":144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":28.8,"last_update":"2026-03-20T16:50:49.576370875Z"} +2026/03/20 16:50:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":60,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:49.584641882Z"} +2026/03/20 16:50:54 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.74883116,"throughput_eps":0,"last_update":"2026-03-20T16:50:49.718788081Z"} +2026/03/20 16:50:54 [transform_engine] {"stage_name":"transform_engine","events_processed":4,"events_dropped":0,"avg_latency_ms":107.08107695200003,"throughput_eps":0,"last_update":"2026-03-20T16:50:49.718801366Z"} +2026/03/20 16:50:54 ───────────────────────────────────────────────── +2026/03/20 16:50:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:54.575959145Z"} +2026/03/20 16:50:59 [metric_collector] {"stage_name":"metric_collector","events_processed":149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":29.8,"last_update":"2026-03-20T16:50:54.576295311Z"} +2026/03/20 16:50:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":62,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:54.584911986Z"} +2026/03/20 16:50:59 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.74883116,"throughput_eps":0,"last_update":"2026-03-20T16:50:54.719214694Z"} +2026/03/20 16:50:59 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":108.45506696160004,"throughput_eps":0,"last_update":"2026-03-20T16:50:54.833174689Z"} +2026/03/20 16:50:59 ───────────────────────────────────────────────── +2026/03/20 16:51:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:04 [metric_collector] {"stage_name":"metric_collector","events_processed":154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":30.8,"last_update":"2026-03-20T16:50:59.575604839Z"} +2026/03/20 16:51:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":64,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:59.585501618Z"} +2026/03/20 16:51:04 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":4.904423528000001,"throughput_eps":0,"last_update":"2026-03-20T16:50:59.719794733Z"} +2026/03/20 16:51:04 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":108.45506696160004,"throughput_eps":0,"last_update":"2026-03-20T16:50:59.718697826Z"} +2026/03/20 16:51:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:59.575497305Z"} +2026/03/20 16:51:04 ───────────────────────────────────────────────── +2026/03/20 16:51:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:04.575876206Z"} +2026/03/20 16:51:09 [metric_collector] {"stage_name":"metric_collector","events_processed":159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":31.8,"last_update":"2026-03-20T16:51:04.576536647Z"} +2026/03/20 16:51:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":66,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:04.585613267Z"} +2026/03/20 16:51:09 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":4.904423528000001,"throughput_eps":0,"last_update":"2026-03-20T16:51:04.718910449Z"} +2026/03/20 16:51:09 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":108.45506696160004,"throughput_eps":0,"last_update":"2026-03-20T16:51:04.718864632Z"} +2026/03/20 16:51:09 ───────────────────────────────────────────────── +2026/03/20 16:51:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:14 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":108.45506696160004,"throughput_eps":0,"last_update":"2026-03-20T16:51:09.719568995Z"} +2026/03/20 16:51:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:09.575865991Z"} +2026/03/20 16:51:14 [metric_collector] {"stage_name":"metric_collector","events_processed":164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":32.8,"last_update":"2026-03-20T16:51:09.576268643Z"} +2026/03/20 16:51:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":68,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:09.586227977Z"} +2026/03/20 16:51:14 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":4.904423528000001,"throughput_eps":0,"last_update":"2026-03-20T16:51:09.719469807Z"} +2026/03/20 16:51:14 ───────────────────────────────────────────────── +2026/03/20 16:51:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":70,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:14.585563722Z"} +2026/03/20 16:51:19 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":4.904423528000001,"throughput_eps":0,"last_update":"2026-03-20T16:51:14.718823028Z"} +2026/03/20 16:51:19 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":108.45506696160004,"throughput_eps":0,"last_update":"2026-03-20T16:51:14.718796428Z"} +2026/03/20 16:51:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:14.575802631Z"} +2026/03/20 16:51:19 [metric_collector] {"stage_name":"metric_collector","events_processed":169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":33.8,"last_update":"2026-03-20T16:51:14.576032186Z"} +2026/03/20 16:51:19 ───────────────────────────────────────────────── +2026/03/20 16:51:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:19.576239943Z"} +2026/03/20 16:51:24 [metric_collector] {"stage_name":"metric_collector","events_processed":174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":34.8,"last_update":"2026-03-20T16:51:19.576857783Z"} +2026/03/20 16:51:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":72,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:19.585763315Z"} +2026/03/20 16:51:24 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":4.904423528000001,"throughput_eps":0,"last_update":"2026-03-20T16:51:19.719098538Z"} +2026/03/20 16:51:24 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":108.45506696160004,"throughput_eps":0,"last_update":"2026-03-20T16:51:19.71898359Z"} +2026/03/20 16:51:24 ───────────────────────────────────────────────── +2026/03/20 16:51:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:29 [metric_collector] {"stage_name":"metric_collector","events_processed":179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":35.8,"last_update":"2026-03-20T16:51:24.5759187Z"} +2026/03/20 16:51:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":74,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:24.586973626Z"} +2026/03/20 16:51:29 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":4.904423528000001,"throughput_eps":0,"last_update":"2026-03-20T16:51:24.719256537Z"} +2026/03/20 16:51:29 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":110.37128296928003,"throughput_eps":0,"last_update":"2026-03-20T16:51:24.837440646Z"} +2026/03/20 16:51:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:24.575527129Z"} +2026/03/20 16:51:29 ───────────────────────────────────────────────── +2026/03/20 16:51:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:29.57587163Z"} +2026/03/20 16:51:34 [metric_collector] {"stage_name":"metric_collector","events_processed":184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":36.8,"last_update":"2026-03-20T16:51:29.57621459Z"} +2026/03/20 16:51:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":76,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:29.585142618Z"} +2026/03/20 16:51:34 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":5.3549208224000004,"throughput_eps":0,"last_update":"2026-03-20T16:51:29.719529348Z"} +2026/03/20 16:51:34 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":110.37128296928003,"throughput_eps":0,"last_update":"2026-03-20T16:51:29.719380996Z"} +2026/03/20 16:51:34 ───────────────────────────────────────────────── +2026/03/20 16:51:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:34.575817233Z"} +2026/03/20 16:51:39 [metric_collector] {"stage_name":"metric_collector","events_processed":189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":37.8,"last_update":"2026-03-20T16:51:34.576144453Z"} +2026/03/20 16:51:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":78,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:34.587217329Z"} +2026/03/20 16:51:39 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":5.3549208224000004,"throughput_eps":0,"last_update":"2026-03-20T16:51:34.719528386Z"} +2026/03/20 16:51:39 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":110.37128296928003,"throughput_eps":0,"last_update":"2026-03-20T16:51:34.719534618Z"} +2026/03/20 16:51:39 ───────────────────────────────────────────────── +2026/03/20 16:51:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:44 [metric_collector] {"stage_name":"metric_collector","events_processed":194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":38.8,"last_update":"2026-03-20T16:51:39.576155628Z"} +2026/03/20 16:51:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":80,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:39.586343099Z"} +2026/03/20 16:51:44 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":5.3549208224000004,"throughput_eps":0,"last_update":"2026-03-20T16:51:39.719745355Z"} +2026/03/20 16:51:44 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":110.37128296928003,"throughput_eps":0,"last_update":"2026-03-20T16:51:39.719759753Z"} +2026/03/20 16:51:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:39.575753866Z"} +2026/03/20 16:51:44 ───────────────────────────────────────────────── +2026/03/20 16:51:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:44.575792361Z"} +2026/03/20 16:51:49 [metric_collector] {"stage_name":"metric_collector","events_processed":199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":39.8,"last_update":"2026-03-20T16:51:44.576296226Z"} +2026/03/20 16:51:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":82,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:44.584910616Z"} +2026/03/20 16:51:49 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":5.3549208224000004,"throughput_eps":0,"last_update":"2026-03-20T16:51:44.71915501Z"} +2026/03/20 16:51:49 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":110.37128296928003,"throughput_eps":0,"last_update":"2026-03-20T16:51:44.719166973Z"} +2026/03/20 16:51:49 ───────────────────────────────────────────────── +2026/03/20 16:51:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":84,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:49.587098172Z"} +2026/03/20 16:51:54 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":5.3549208224000004,"throughput_eps":0,"last_update":"2026-03-20T16:51:49.719504342Z"} +2026/03/20 16:51:54 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":110.37128296928003,"throughput_eps":0,"last_update":"2026-03-20T16:51:49.719528368Z"} +2026/03/20 16:51:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:49.575813006Z"} +2026/03/20 16:51:54 [metric_collector] {"stage_name":"metric_collector","events_processed":204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":40.8,"last_update":"2026-03-20T16:51:49.575708538Z"} +2026/03/20 16:51:54 ───────────────────────────────────────────────── +2026/03/20 16:51:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:54.575847329Z"} +2026/03/20 16:51:59 [metric_collector] {"stage_name":"metric_collector","events_processed":209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":41.8,"last_update":"2026-03-20T16:51:54.57607407Z"} +2026/03/20 16:51:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":86,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:54.585249137Z"} +2026/03/20 16:51:59 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":5.3549208224000004,"throughput_eps":0,"last_update":"2026-03-20T16:51:54.719640361Z"} +2026/03/20 16:51:59 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":110.37128296928003,"throughput_eps":0,"last_update":"2026-03-20T16:51:54.719653957Z"} +2026/03/20 16:51:59 ───────────────────────────────────────────────── +2026/03/20 16:52:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:04 [transform_engine] {"stage_name":"transform_engine","events_processed":7,"events_dropped":0,"avg_latency_ms":100.96300297542402,"throughput_eps":0,"last_update":"2026-03-20T16:51:59.719323264Z"} +2026/03/20 16:52:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:59.576011202Z"} +2026/03/20 16:52:04 [metric_collector] {"stage_name":"metric_collector","events_processed":214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":42.8,"last_update":"2026-03-20T16:51:59.576553881Z"} +2026/03/20 16:52:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":88,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:59.585084197Z"} +2026/03/20 16:52:04 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.664770657920001,"throughput_eps":0,"last_update":"2026-03-20T16:51:59.719416651Z"} +2026/03/20 16:52:04 ───────────────────────────────────────────────── +2026/03/20 16:52:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:04.575725964Z"} +2026/03/20 16:52:09 [metric_collector] {"stage_name":"metric_collector","events_processed":219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":43.8,"last_update":"2026-03-20T16:52:04.575807548Z"} +2026/03/20 16:52:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":90,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:04.585678209Z"} +2026/03/20 16:52:09 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.664770657920001,"throughput_eps":0,"last_update":"2026-03-20T16:52:04.719025162Z"} +2026/03/20 16:52:09 [transform_engine] {"stage_name":"transform_engine","events_processed":7,"events_dropped":0,"avg_latency_ms":100.96300297542402,"throughput_eps":0,"last_update":"2026-03-20T16:52:04.718900646Z"} +2026/03/20 16:52:09 ───────────────────────────────────────────────── +2026/03/20 16:52:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":92,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:09.584733061Z"} +2026/03/20 16:52:14 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.664770657920001,"throughput_eps":0,"last_update":"2026-03-20T16:52:09.718969862Z"} +2026/03/20 16:52:14 [transform_engine] {"stage_name":"transform_engine","events_processed":7,"events_dropped":0,"avg_latency_ms":100.96300297542402,"throughput_eps":0,"last_update":"2026-03-20T16:52:09.718997284Z"} +2026/03/20 16:52:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:09.575830074Z"} +2026/03/20 16:52:14 [metric_collector] {"stage_name":"metric_collector","events_processed":224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":44.8,"last_update":"2026-03-20T16:52:09.576378333Z"} +2026/03/20 16:52:14 ───────────────────────────────────────────────── +2026/03/20 16:52:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:19 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.664770657920001,"throughput_eps":0,"last_update":"2026-03-20T16:52:14.719738352Z"} +2026/03/20 16:52:19 [transform_engine] {"stage_name":"transform_engine","events_processed":7,"events_dropped":0,"avg_latency_ms":100.96300297542402,"throughput_eps":0,"last_update":"2026-03-20T16:52:14.719698706Z"} +2026/03/20 16:52:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:14.575541236Z"} +2026/03/20 16:52:19 [metric_collector] {"stage_name":"metric_collector","events_processed":229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":45.8,"last_update":"2026-03-20T16:52:14.576072904Z"} +2026/03/20 16:52:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":94,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:14.585346217Z"} +2026/03/20 16:52:19 ───────────────────────────────────────────────── +2026/03/20 16:52:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:24 [transform_engine] {"stage_name":"transform_engine","events_processed":7,"events_dropped":0,"avg_latency_ms":100.96300297542402,"throughput_eps":0,"last_update":"2026-03-20T16:52:19.719384301Z"} +2026/03/20 16:52:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:19.575909094Z"} +2026/03/20 16:52:24 [metric_collector] {"stage_name":"metric_collector","events_processed":234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":46.8,"last_update":"2026-03-20T16:52:19.576231235Z"} +2026/03/20 16:52:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":96,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:19.586063179Z"} +2026/03/20 16:52:24 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.664770657920001,"throughput_eps":0,"last_update":"2026-03-20T16:52:19.719403157Z"} +2026/03/20 16:52:24 ───────────────────────────────────────────────── +2026/03/20 16:52:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:24.575498344Z"} +2026/03/20 16:52:29 [metric_collector] {"stage_name":"metric_collector","events_processed":239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":47.8,"last_update":"2026-03-20T16:52:24.575872955Z"} +2026/03/20 16:52:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":98,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:24.585687548Z"} +2026/03/20 16:52:29 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.664770657920001,"throughput_eps":0,"last_update":"2026-03-20T16:52:24.718930802Z"} +2026/03/20 16:52:29 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":93.47140998033922,"throughput_eps":0,"last_update":"2026-03-20T16:52:24.782450026Z"} +2026/03/20 16:52:29 ───────────────────────────────────────────────── +2026/03/20 16:52:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:29.575694283Z"} +2026/03/20 16:52:34 [metric_collector] {"stage_name":"metric_collector","events_processed":244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":48.8,"last_update":"2026-03-20T16:52:29.576091317Z"} +2026/03/20 16:52:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:29.585402415Z"} +2026/03/20 16:52:34 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":5.952213726336001,"throughput_eps":0,"last_update":"2026-03-20T16:52:29.719765983Z"} +2026/03/20 16:52:34 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":93.47140998033922,"throughput_eps":0,"last_update":"2026-03-20T16:52:29.719728813Z"} +2026/03/20 16:52:34 ───────────────────────────────────────────────── +2026/03/20 16:52:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:39 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":93.47140998033922,"throughput_eps":0,"last_update":"2026-03-20T16:52:34.718976661Z"} +2026/03/20 16:52:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:34.575554192Z"} +2026/03/20 16:52:39 [metric_collector] {"stage_name":"metric_collector","events_processed":249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":49.8,"last_update":"2026-03-20T16:52:34.576156545Z"} +2026/03/20 16:52:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:34.585636687Z"} +2026/03/20 16:52:39 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":5.952213726336001,"throughput_eps":0,"last_update":"2026-03-20T16:52:34.718840303Z"} +2026/03/20 16:52:39 ───────────────────────────────────────────────── +2026/03/20 16:52:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:44 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":5.952213726336001,"throughput_eps":0,"last_update":"2026-03-20T16:52:39.719291779Z"} +2026/03/20 16:52:44 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":93.47140998033922,"throughput_eps":0,"last_update":"2026-03-20T16:52:39.719224441Z"} +2026/03/20 16:52:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:39.575734785Z"} +2026/03/20 16:52:44 [metric_collector] {"stage_name":"metric_collector","events_processed":254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":50.8,"last_update":"2026-03-20T16:52:39.576067947Z"} +2026/03/20 16:52:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:39.586983056Z"} +2026/03/20 16:52:44 ───────────────────────────────────────────────── +2026/03/20 16:52:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:44.575586853Z"} +2026/03/20 16:52:49 [metric_collector] {"stage_name":"metric_collector","events_processed":259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":51.8,"last_update":"2026-03-20T16:52:44.575682484Z"} +2026/03/20 16:52:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:44.58603727Z"} +2026/03/20 16:52:49 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":5.952213726336001,"throughput_eps":0,"last_update":"2026-03-20T16:52:44.719490244Z"} +2026/03/20 16:52:49 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":93.47140998033922,"throughput_eps":0,"last_update":"2026-03-20T16:52:44.719520561Z"} +2026/03/20 16:52:49 ───────────────────────────────────────────────── +2026/03/20 16:52:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:49.575728958Z"} +2026/03/20 16:52:54 [metric_collector] {"stage_name":"metric_collector","events_processed":264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":52.8,"last_update":"2026-03-20T16:52:49.576110122Z"} +2026/03/20 16:52:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:49.585335797Z"} +2026/03/20 16:52:54 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":5.952213726336001,"throughput_eps":0,"last_update":"2026-03-20T16:52:49.719685529Z"} +2026/03/20 16:52:54 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":93.47140998033922,"throughput_eps":0,"last_update":"2026-03-20T16:52:49.719700708Z"} +2026/03/20 16:52:54 ───────────────────────────────────────────────── +2026/03/20 16:52:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:54.575819843Z"} +2026/03/20 16:52:59 [metric_collector] {"stage_name":"metric_collector","events_processed":269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":53.8,"last_update":"2026-03-20T16:52:54.576231174Z"} +2026/03/20 16:52:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:54.585836402Z"} +2026/03/20 16:52:59 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":5.952213726336001,"throughput_eps":0,"last_update":"2026-03-20T16:52:54.719482946Z"} +2026/03/20 16:52:59 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":88.24757618427137,"throughput_eps":0,"last_update":"2026-03-20T16:52:54.786557941Z"} +2026/03/20 16:52:59 ───────────────────────────────────────────────── +2026/03/20 16:53:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:59.576043195Z"} +2026/03/20 16:53:04 [metric_collector] {"stage_name":"metric_collector","events_processed":274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":54.8,"last_update":"2026-03-20T16:52:59.576562771Z"} +2026/03/20 16:53:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:59.585064235Z"} +2026/03/20 16:53:04 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":6.407688381068801,"throughput_eps":0,"last_update":"2026-03-20T16:52:59.719271692Z"} +2026/03/20 16:53:04 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":88.24757618427137,"throughput_eps":0,"last_update":"2026-03-20T16:52:59.719377112Z"} +2026/03/20 16:53:04 ───────────────────────────────────────────────── +2026/03/20 16:53:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:04.575902495Z"} +2026/03/20 16:53:09 [metric_collector] {"stage_name":"metric_collector","events_processed":279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":55.8,"last_update":"2026-03-20T16:53:04.576469151Z"} +2026/03/20 16:53:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:04.586781976Z"} +2026/03/20 16:53:09 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":6.407688381068801,"throughput_eps":0,"last_update":"2026-03-20T16:53:04.718918306Z"} +2026/03/20 16:53:09 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":88.24757618427137,"throughput_eps":0,"last_update":"2026-03-20T16:53:04.718937242Z"} +2026/03/20 16:53:09 ───────────────────────────────────────────────── +2026/03/20 16:53:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:09.575760499Z"} +2026/03/20 16:53:14 [metric_collector] {"stage_name":"metric_collector","events_processed":283,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":56.6,"last_update":"2026-03-20T16:53:09.575765869Z"} +2026/03/20 16:53:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:09.58687059Z"} +2026/03/20 16:53:14 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":6.407688381068801,"throughput_eps":0,"last_update":"2026-03-20T16:53:09.719095243Z"} +2026/03/20 16:53:14 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":88.24757618427137,"throughput_eps":0,"last_update":"2026-03-20T16:53:09.719109782Z"} +2026/03/20 16:53:14 ───────────────────────────────────────────────── +2026/03/20 16:53:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:19 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":6.407688381068801,"throughput_eps":0,"last_update":"2026-03-20T16:53:14.719177148Z"} +2026/03/20 16:53:19 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":88.24757618427137,"throughput_eps":0,"last_update":"2026-03-20T16:53:14.719211033Z"} +2026/03/20 16:53:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:14.575551563Z"} +2026/03/20 16:53:19 [metric_collector] {"stage_name":"metric_collector","events_processed":289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":57.8,"last_update":"2026-03-20T16:53:14.575946093Z"} +2026/03/20 16:53:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:14.585796413Z"} +2026/03/20 16:53:19 ───────────────────────────────────────────────── +2026/03/20 16:53:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:24 [metric_collector] {"stage_name":"metric_collector","events_processed":294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":58.8,"last_update":"2026-03-20T16:53:19.576086358Z"} +2026/03/20 16:53:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:19.58581002Z"} +2026/03/20 16:53:24 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":6.407688381068801,"throughput_eps":0,"last_update":"2026-03-20T16:53:19.719095871Z"} +2026/03/20 16:53:24 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":88.24757618427137,"throughput_eps":0,"last_update":"2026-03-20T16:53:19.719142219Z"} +2026/03/20 16:53:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:19.575839169Z"} +2026/03/20 16:53:24 ───────────────────────────────────────────────── +2026/03/20 16:53:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:24.575734349Z"} +2026/03/20 16:53:29 [metric_collector] {"stage_name":"metric_collector","events_processed":299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":59.8,"last_update":"2026-03-20T16:53:24.576022947Z"} +2026/03/20 16:53:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":122,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:24.586312305Z"} +2026/03/20 16:53:29 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":6.407688381068801,"throughput_eps":0,"last_update":"2026-03-20T16:53:24.719919412Z"} +2026/03/20 16:53:29 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":83.2126591474171,"throughput_eps":0,"last_update":"2026-03-20T16:53:24.782817452Z"} +2026/03/20 16:53:29 ───────────────────────────────────────────────── +2026/03/20 16:53:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:34 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":6.370236304855041,"throughput_eps":0,"last_update":"2026-03-20T16:53:29.719497275Z"} +2026/03/20 16:53:34 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":83.2126591474171,"throughput_eps":0,"last_update":"2026-03-20T16:53:29.71950515Z"} +2026/03/20 16:53:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:34.575505873Z"} +2026/03/20 16:53:34 [metric_collector] {"stage_name":"metric_collector","events_processed":304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":60.8,"last_update":"2026-03-20T16:53:29.575825572Z"} +2026/03/20 16:53:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:29.585249427Z"} +2026/03/20 16:53:34 ───────────────────────────────────────────────── +2026/03/20 16:53:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:39 [metric_collector] {"stage_name":"metric_collector","events_processed":309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":61.8,"last_update":"2026-03-20T16:53:34.576313668Z"} +2026/03/20 16:53:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":126,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:34.585630352Z"} +2026/03/20 16:53:39 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":6.370236304855041,"throughput_eps":0,"last_update":"2026-03-20T16:53:34.718807572Z"} +2026/03/20 16:53:39 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":83.2126591474171,"throughput_eps":0,"last_update":"2026-03-20T16:53:34.718818903Z"} +2026/03/20 16:53:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:34.575505873Z"} +2026/03/20 16:53:39 ───────────────────────────────────────────────── +2026/03/20 16:53:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:39.576001175Z"} +2026/03/20 16:53:44 [metric_collector] {"stage_name":"metric_collector","events_processed":314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":62.8,"last_update":"2026-03-20T16:53:39.576513319Z"} +2026/03/20 16:53:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":128,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:39.585250303Z"} +2026/03/20 16:53:44 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":6.370236304855041,"throughput_eps":0,"last_update":"2026-03-20T16:53:39.719561894Z"} +2026/03/20 16:53:44 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":83.2126591474171,"throughput_eps":0,"last_update":"2026-03-20T16:53:39.71957584Z"} +2026/03/20 16:53:44 ───────────────────────────────────────────────── +2026/03/20 16:53:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:49 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":83.2126591474171,"throughput_eps":0,"last_update":"2026-03-20T16:53:44.719655129Z"} +2026/03/20 16:53:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:44.575795026Z"} +2026/03/20 16:53:49 [metric_collector] {"stage_name":"metric_collector","events_processed":319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":63.8,"last_update":"2026-03-20T16:53:44.576582994Z"} +2026/03/20 16:53:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":130,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:44.586229709Z"} +2026/03/20 16:53:49 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":6.370236304855041,"throughput_eps":0,"last_update":"2026-03-20T16:53:44.719638668Z"} +2026/03/20 16:53:49 ───────────────────────────────────────────────── +2026/03/20 16:53:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:49.575555506Z"} +2026/03/20 16:53:54 [metric_collector] {"stage_name":"metric_collector","events_processed":324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":64.8,"last_update":"2026-03-20T16:53:49.576014449Z"} +2026/03/20 16:53:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:49.58600057Z"} +2026/03/20 16:53:54 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":6.370236304855041,"throughput_eps":0,"last_update":"2026-03-20T16:53:49.718832186Z"} +2026/03/20 16:53:54 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":83.2126591474171,"throughput_eps":0,"last_update":"2026-03-20T16:53:49.718843838Z"} +2026/03/20 16:53:54 ───────────────────────────────────────────────── +2026/03/20 16:53:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:59 [metric_collector] {"stage_name":"metric_collector","events_processed":329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":65.8,"last_update":"2026-03-20T16:53:54.575760867Z"} +2026/03/20 16:53:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:54.586197667Z"} +2026/03/20 16:53:59 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":6.370236304855041,"throughput_eps":0,"last_update":"2026-03-20T16:53:54.71958779Z"} +2026/03/20 16:53:59 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":89.20370731793369,"throughput_eps":0,"last_update":"2026-03-20T16:53:54.832770387Z"} +2026/03/20 16:53:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:54.57554678Z"} +2026/03/20 16:53:59 ───────────────────────────────────────────────── +2026/03/20 16:54:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:59.575532939Z"} +2026/03/20 16:54:04 [metric_collector] {"stage_name":"metric_collector","events_processed":334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":66.8,"last_update":"2026-03-20T16:53:59.575765622Z"} +2026/03/20 16:54:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:59.585235605Z"} +2026/03/20 16:54:04 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":6.842923443884033,"throughput_eps":0,"last_update":"2026-03-20T16:53:59.719638476Z"} +2026/03/20 16:54:04 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":89.20370731793369,"throughput_eps":0,"last_update":"2026-03-20T16:53:59.719667271Z"} +2026/03/20 16:54:04 ───────────────────────────────────────────────── +2026/03/20 16:54:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:04.57575292Z"} +2026/03/20 16:54:09 [metric_collector] {"stage_name":"metric_collector","events_processed":339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":67.8,"last_update":"2026-03-20T16:54:04.57660009Z"} +2026/03/20 16:54:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:04.585226372Z"} +2026/03/20 16:54:09 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":6.842923443884033,"throughput_eps":0,"last_update":"2026-03-20T16:54:04.719446149Z"} +2026/03/20 16:54:09 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":89.20370731793369,"throughput_eps":0,"last_update":"2026-03-20T16:54:04.719554265Z"} +2026/03/20 16:54:09 ───────────────────────────────────────────────── +2026/03/20 16:54:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:14 [metric_collector] {"stage_name":"metric_collector","events_processed":344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":68.8,"last_update":"2026-03-20T16:54:09.576224527Z"} +2026/03/20 16:54:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:09.58438779Z"} +2026/03/20 16:54:14 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":6.842923443884033,"throughput_eps":0,"last_update":"2026-03-20T16:54:09.719824254Z"} +2026/03/20 16:54:14 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":89.20370731793369,"throughput_eps":0,"last_update":"2026-03-20T16:54:09.719631909Z"} +2026/03/20 16:54:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:09.575865194Z"} +2026/03/20 16:54:14 ───────────────────────────────────────────────── +2026/03/20 16:54:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:19 [metric_collector] {"stage_name":"metric_collector","events_processed":349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":69.8,"last_update":"2026-03-20T16:54:14.576145107Z"} +2026/03/20 16:54:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:14.586475181Z"} +2026/03/20 16:54:19 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":6.842923443884033,"throughput_eps":0,"last_update":"2026-03-20T16:54:14.719836021Z"} +2026/03/20 16:54:19 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":89.20370731793369,"throughput_eps":0,"last_update":"2026-03-20T16:54:14.718630619Z"} +2026/03/20 16:54:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:14.575866838Z"} +2026/03/20 16:54:19 ───────────────────────────────────────────────── +2026/03/20 16:54:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:24 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":89.20370731793369,"throughput_eps":0,"last_update":"2026-03-20T16:54:19.718821427Z"} +2026/03/20 16:54:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:19.576055416Z"} +2026/03/20 16:54:24 [metric_collector] {"stage_name":"metric_collector","events_processed":354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":70.8,"last_update":"2026-03-20T16:54:19.576441672Z"} +2026/03/20 16:54:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:19.576203989Z"} +2026/03/20 16:54:24 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":6.842923443884033,"throughput_eps":0,"last_update":"2026-03-20T16:54:19.718846144Z"} +2026/03/20 16:54:24 ───────────────────────────────────────────────── +2026/03/20 16:54:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:24.575883493Z"} +2026/03/20 16:54:29 [metric_collector] {"stage_name":"metric_collector","events_processed":359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":71.8,"last_update":"2026-03-20T16:54:24.576404815Z"} +2026/03/20 16:54:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:24.585704593Z"} +2026/03/20 16:54:29 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":6.842923443884033,"throughput_eps":0,"last_update":"2026-03-20T16:54:24.719109854Z"} +2026/03/20 16:54:29 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":84.08506565434695,"throughput_eps":0,"last_update":"2026-03-20T16:54:24.782639729Z"} +2026/03/20 16:54:29 ───────────────────────────────────────────────── +2026/03/20 16:54:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:29.575555578Z"} +2026/03/20 16:54:34 [metric_collector] {"stage_name":"metric_collector","events_processed":364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":72.8,"last_update":"2026-03-20T16:54:29.575971389Z"} +2026/03/20 16:54:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:29.585229179Z"} +2026/03/20 16:54:34 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":7.290607155107227,"throughput_eps":0,"last_update":"2026-03-20T16:54:29.719683307Z"} +2026/03/20 16:54:34 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":84.08506565434695,"throughput_eps":0,"last_update":"2026-03-20T16:54:29.719625487Z"} +2026/03/20 16:54:34 ───────────────────────────────────────────────── +2026/03/20 16:54:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:34.576027641Z"} +2026/03/20 16:54:39 [metric_collector] {"stage_name":"metric_collector","events_processed":369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":73.8,"last_update":"2026-03-20T16:54:34.5764107Z"} +2026/03/20 16:54:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:34.585479752Z"} +2026/03/20 16:54:39 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":7.290607155107227,"throughput_eps":0,"last_update":"2026-03-20T16:54:34.719877725Z"} +2026/03/20 16:54:39 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":84.08506565434695,"throughput_eps":0,"last_update":"2026-03-20T16:54:34.718696177Z"} +2026/03/20 16:54:39 ───────────────────────────────────────────────── +2026/03/20 16:54:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:39.575736301Z"} +2026/03/20 16:54:44 [metric_collector] {"stage_name":"metric_collector","events_processed":374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":74.8,"last_update":"2026-03-20T16:54:39.576049025Z"} +2026/03/20 16:54:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:39.586491042Z"} +2026/03/20 16:54:44 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":7.290607155107227,"throughput_eps":0,"last_update":"2026-03-20T16:54:39.719785568Z"} +2026/03/20 16:54:44 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":84.08506565434695,"throughput_eps":0,"last_update":"2026-03-20T16:54:39.718657542Z"} +2026/03/20 16:54:44 ───────────────────────────────────────────────── +2026/03/20 16:54:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:44.57583449Z"} +2026/03/20 16:54:49 [metric_collector] {"stage_name":"metric_collector","events_processed":379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":75.8,"last_update":"2026-03-20T16:54:44.576201658Z"} +2026/03/20 16:54:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:44.584894178Z"} +2026/03/20 16:54:49 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":7.290607155107227,"throughput_eps":0,"last_update":"2026-03-20T16:54:44.71925304Z"} +2026/03/20 16:54:49 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":84.08506565434695,"throughput_eps":0,"last_update":"2026-03-20T16:54:44.719145655Z"} +2026/03/20 16:54:49 ───────────────────────────────────────────────── +2026/03/20 16:54:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:49.586527651Z"} +2026/03/20 16:54:54 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":7.290607155107227,"throughput_eps":0,"last_update":"2026-03-20T16:54:49.719170119Z"} +2026/03/20 16:54:54 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":84.08506565434695,"throughput_eps":0,"last_update":"2026-03-20T16:54:49.719046454Z"} +2026/03/20 16:54:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:49.575744653Z"} +2026/03/20 16:54:54 [metric_collector] {"stage_name":"metric_collector","events_processed":384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":76.8,"last_update":"2026-03-20T16:54:49.57612155Z"} +2026/03/20 16:54:54 ───────────────────────────────────────────────── +2026/03/20 16:54:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:59 [transform_engine] {"stage_name":"transform_engine","events_processed":13,"events_dropped":0,"avg_latency_ms":90.36144932347756,"throughput_eps":0,"last_update":"2026-03-20T16:54:54.834670611Z"} +2026/03/20 16:54:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:54.575535925Z"} +2026/03/20 16:54:59 [metric_collector] {"stage_name":"metric_collector","events_processed":389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":77.8,"last_update":"2026-03-20T16:54:54.576043151Z"} +2026/03/20 16:54:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:54.587903892Z"} +2026/03/20 16:54:59 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":7.290607155107227,"throughput_eps":0,"last_update":"2026-03-20T16:54:54.719323364Z"} +2026/03/20 16:54:59 ───────────────────────────────────────────────── +2026/03/20 16:55:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:59.584555827Z"} +2026/03/20 16:55:04 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":7.767055124085782,"throughput_eps":0,"last_update":"2026-03-20T16:54:59.719143519Z"} +2026/03/20 16:55:04 [transform_engine] {"stage_name":"transform_engine","events_processed":13,"events_dropped":0,"avg_latency_ms":90.36144932347756,"throughput_eps":0,"last_update":"2026-03-20T16:54:59.719108363Z"} +2026/03/20 16:55:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:59.576022156Z"} +2026/03/20 16:55:04 [metric_collector] {"stage_name":"metric_collector","events_processed":394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":78.8,"last_update":"2026-03-20T16:54:59.576409864Z"} +2026/03/20 16:55:04 ───────────────────────────────────────────────── +2026/03/20 16:55:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:09 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":7.767055124085782,"throughput_eps":0,"last_update":"2026-03-20T16:55:04.719744299Z"} +2026/03/20 16:55:09 [transform_engine] {"stage_name":"transform_engine","events_processed":13,"events_dropped":0,"avg_latency_ms":90.36144932347756,"throughput_eps":0,"last_update":"2026-03-20T16:55:04.719617348Z"} +2026/03/20 16:55:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:04.576077945Z"} +2026/03/20 16:55:09 [metric_collector] {"stage_name":"metric_collector","events_processed":399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":79.8,"last_update":"2026-03-20T16:55:04.576308814Z"} +2026/03/20 16:55:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:04.585504547Z"} +2026/03/20 16:55:09 ───────────────────────────────────────────────── +2026/03/20 16:55:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:14 [transform_engine] {"stage_name":"transform_engine","events_processed":13,"events_dropped":0,"avg_latency_ms":90.36144932347756,"throughput_eps":0,"last_update":"2026-03-20T16:55:09.719697948Z"} +2026/03/20 16:55:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:09.575559774Z"} +2026/03/20 16:55:14 [metric_collector] {"stage_name":"metric_collector","events_processed":404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":80.8,"last_update":"2026-03-20T16:55:09.57548912Z"} +2026/03/20 16:55:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:09.585190185Z"} +2026/03/20 16:55:14 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":7.767055124085782,"throughput_eps":0,"last_update":"2026-03-20T16:55:09.719580695Z"} +2026/03/20 16:55:14 ───────────────────────────────────────────────── +2026/03/20 16:55:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:14.575894981Z"} +2026/03/20 16:55:19 [metric_collector] {"stage_name":"metric_collector","events_processed":409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":81.8,"last_update":"2026-03-20T16:55:14.576189191Z"} +2026/03/20 16:55:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:14.586503926Z"} +2026/03/20 16:55:19 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":7.767055124085782,"throughput_eps":0,"last_update":"2026-03-20T16:55:14.718792425Z"} +2026/03/20 16:55:19 [transform_engine] {"stage_name":"transform_engine","events_processed":13,"events_dropped":0,"avg_latency_ms":90.36144932347756,"throughput_eps":0,"last_update":"2026-03-20T16:55:14.718757749Z"} +2026/03/20 16:55:19 ───────────────────────────────────────────────── +2026/03/20 16:55:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:19.575517626Z"} +2026/03/20 16:55:24 [metric_collector] {"stage_name":"metric_collector","events_processed":414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":82.8,"last_update":"2026-03-20T16:55:19.575752924Z"} +2026/03/20 16:55:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:19.585904691Z"} +2026/03/20 16:55:24 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":7.767055124085782,"throughput_eps":0,"last_update":"2026-03-20T16:55:19.719147225Z"} +2026/03/20 16:55:24 [transform_engine] {"stage_name":"transform_engine","events_processed":13,"events_dropped":0,"avg_latency_ms":90.36144932347756,"throughput_eps":0,"last_update":"2026-03-20T16:55:19.719098583Z"} +2026/03/20 16:55:24 ───────────────────────────────────────────────── +2026/03/20 16:55:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:29 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":85.40071905878206,"throughput_eps":0,"last_update":"2026-03-20T16:55:24.785174402Z"} +2026/03/20 16:55:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:24.575506617Z"} +2026/03/20 16:55:29 [metric_collector] {"stage_name":"metric_collector","events_processed":419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":83.8,"last_update":"2026-03-20T16:55:24.575745953Z"} +2026/03/20 16:55:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":170,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:24.585218438Z"} +2026/03/20 16:55:29 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":7.767055124085782,"throughput_eps":0,"last_update":"2026-03-20T16:55:24.719641792Z"} +2026/03/20 16:55:29 ───────────────────────────────────────────────── +2026/03/20 16:55:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:34 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":8.436163699268626,"throughput_eps":0,"last_update":"2026-03-20T16:55:29.719761646Z"} +2026/03/20 16:55:34 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":85.40071905878206,"throughput_eps":0,"last_update":"2026-03-20T16:55:29.719776074Z"} +2026/03/20 16:55:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:29.576029298Z"} +2026/03/20 16:55:34 [metric_collector] {"stage_name":"metric_collector","events_processed":424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":84.8,"last_update":"2026-03-20T16:55:29.57639345Z"} +2026/03/20 16:55:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:29.585419907Z"} +2026/03/20 16:55:34 ───────────────────────────────────────────────── +2026/03/20 16:55:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:34.575760995Z"} +2026/03/20 16:55:39 [metric_collector] {"stage_name":"metric_collector","events_processed":429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":85.8,"last_update":"2026-03-20T16:55:34.576023043Z"} +2026/03/20 16:55:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:34.585855857Z"} +2026/03/20 16:55:39 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":8.436163699268626,"throughput_eps":0,"last_update":"2026-03-20T16:55:34.719246173Z"} +2026/03/20 16:55:39 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":85.40071905878206,"throughput_eps":0,"last_update":"2026-03-20T16:55:34.71925987Z"} +2026/03/20 16:55:39 ───────────────────────────────────────────────── +2026/03/20 16:55:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:44 [metric_collector] {"stage_name":"metric_collector","events_processed":433,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":86.6,"last_update":"2026-03-20T16:55:39.575464814Z"} +2026/03/20 16:55:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:39.58478832Z"} +2026/03/20 16:55:44 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":8.436163699268626,"throughput_eps":0,"last_update":"2026-03-20T16:55:39.719183289Z"} +2026/03/20 16:55:44 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":85.40071905878206,"throughput_eps":0,"last_update":"2026-03-20T16:55:39.719192727Z"} +2026/03/20 16:55:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:39.575540108Z"} +2026/03/20 16:55:44 ───────────────────────────────────────────────── +2026/03/20 16:55:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:44.585197906Z"} +2026/03/20 16:55:49 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":8.436163699268626,"throughput_eps":0,"last_update":"2026-03-20T16:55:44.719345864Z"} +2026/03/20 16:55:49 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":85.40071905878206,"throughput_eps":0,"last_update":"2026-03-20T16:55:44.719372585Z"} +2026/03/20 16:55:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:44.575489576Z"} +2026/03/20 16:55:49 [metric_collector] {"stage_name":"metric_collector","events_processed":438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":87.6,"last_update":"2026-03-20T16:55:44.575030972Z"} +2026/03/20 16:55:49 ───────────────────────────────────────────────── +2026/03/20 16:55:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:54 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":8.436163699268626,"throughput_eps":0,"last_update":"2026-03-20T16:55:49.719600786Z"} +2026/03/20 16:55:54 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":85.40071905878206,"throughput_eps":0,"last_update":"2026-03-20T16:55:49.719615836Z"} +2026/03/20 16:55:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:49.575543835Z"} +2026/03/20 16:55:54 [metric_collector] {"stage_name":"metric_collector","events_processed":444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":88.8,"last_update":"2026-03-20T16:55:49.575980307Z"} +2026/03/20 16:55:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:49.587210577Z"} +2026/03/20 16:55:54 ───────────────────────────────────────────────── +2026/03/20 16:55:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:54.576022909Z"} +2026/03/20 16:55:59 [metric_collector] {"stage_name":"metric_collector","events_processed":449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":89.8,"last_update":"2026-03-20T16:55:54.575952244Z"} +2026/03/20 16:55:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:54.587258731Z"} +2026/03/20 16:55:59 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":8.436163699268626,"throughput_eps":0,"last_update":"2026-03-20T16:55:54.719614785Z"} +2026/03/20 16:55:59 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":82.50752664702564,"throughput_eps":0,"last_update":"2026-03-20T16:55:54.790568418Z"} +2026/03/20 16:55:59 ───────────────────────────────────────────────── +2026/03/20 16:56:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:59.586154048Z"} +2026/03/20 16:56:04 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":8.390728159414902,"throughput_eps":0,"last_update":"2026-03-20T16:55:59.719507891Z"} +2026/03/20 16:56:04 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":82.50752664702564,"throughput_eps":0,"last_update":"2026-03-20T16:55:59.719653858Z"} +2026/03/20 16:56:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:59.575541732Z"} +2026/03/20 16:56:04 [metric_collector] {"stage_name":"metric_collector","events_processed":454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":90.8,"last_update":"2026-03-20T16:55:59.575735861Z"} +2026/03/20 16:56:04 ───────────────────────────────────────────────── +2026/03/20 16:56:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:04.57558828Z"} +2026/03/20 16:56:09 [metric_collector] {"stage_name":"metric_collector","events_processed":459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":91.8,"last_update":"2026-03-20T16:56:04.5760661Z"} +2026/03/20 16:56:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:04.587239577Z"} +2026/03/20 16:56:09 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":8.390728159414902,"throughput_eps":0,"last_update":"2026-03-20T16:56:04.719489245Z"} +2026/03/20 16:56:09 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":82.50752664702564,"throughput_eps":0,"last_update":"2026-03-20T16:56:04.719396548Z"} +2026/03/20 16:56:09 ───────────────────────────────────────────────── +2026/03/20 16:56:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:09.575559209Z"} +2026/03/20 16:56:14 [metric_collector] {"stage_name":"metric_collector","events_processed":464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":92.8,"last_update":"2026-03-20T16:56:09.575658799Z"} +2026/03/20 16:56:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:09.58545374Z"} +2026/03/20 16:56:14 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":8.390728159414902,"throughput_eps":0,"last_update":"2026-03-20T16:56:09.719749415Z"} +2026/03/20 16:56:14 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":82.50752664702564,"throughput_eps":0,"last_update":"2026-03-20T16:56:09.719762489Z"} +2026/03/20 16:56:14 ───────────────────────────────────────────────── +2026/03/20 16:56:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:19 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":8.390728159414902,"throughput_eps":0,"last_update":"2026-03-20T16:56:14.719125277Z"} +2026/03/20 16:56:19 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":82.50752664702564,"throughput_eps":0,"last_update":"2026-03-20T16:56:14.719139725Z"} +2026/03/20 16:56:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:14.575547289Z"} +2026/03/20 16:56:19 [metric_collector] {"stage_name":"metric_collector","events_processed":469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":93.8,"last_update":"2026-03-20T16:56:14.575893308Z"} +2026/03/20 16:56:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:14.586733833Z"} +2026/03/20 16:56:19 ───────────────────────────────────────────────── +2026/03/20 16:56:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:24 [metric_collector] {"stage_name":"metric_collector","events_processed":474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":94.8,"last_update":"2026-03-20T16:56:19.575858485Z"} +2026/03/20 16:56:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:19.587047425Z"} +2026/03/20 16:56:24 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":8.390728159414902,"throughput_eps":0,"last_update":"2026-03-20T16:56:19.719274945Z"} +2026/03/20 16:56:24 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":82.50752664702564,"throughput_eps":0,"last_update":"2026-03-20T16:56:19.719282861Z"} +2026/03/20 16:56:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:19.575526552Z"} +2026/03/20 16:56:24 ───────────────────────────────────────────────── +2026/03/20 16:56:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:29 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":88.80772311762053,"throughput_eps":0,"last_update":"2026-03-20T16:56:24.833725455Z"} +2026/03/20 16:56:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:24.575602065Z"} +2026/03/20 16:56:29 [metric_collector] {"stage_name":"metric_collector","events_processed":479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":95.8,"last_update":"2026-03-20T16:56:24.576074455Z"} +2026/03/20 16:56:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:24.58731196Z"} +2026/03/20 16:56:29 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":8.390728159414902,"throughput_eps":0,"last_update":"2026-03-20T16:56:24.719701607Z"} +2026/03/20 16:56:29 ───────────────────────────────────────────────── +2026/03/20 16:56:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:29.575829836Z"} +2026/03/20 16:56:34 [metric_collector] {"stage_name":"metric_collector","events_processed":484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":96.8,"last_update":"2026-03-20T16:56:29.576146881Z"} +2026/03/20 16:56:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:29.585544931Z"} +2026/03/20 16:56:34 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":8.713176927531922,"throughput_eps":0,"last_update":"2026-03-20T16:56:29.718890977Z"} +2026/03/20 16:56:34 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":88.80772311762053,"throughput_eps":0,"last_update":"2026-03-20T16:56:29.718783152Z"} +2026/03/20 16:56:34 ───────────────────────────────────────────────── +2026/03/20 16:56:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:34.575543138Z"} +2026/03/20 16:56:39 [metric_collector] {"stage_name":"metric_collector","events_processed":489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":97.8,"last_update":"2026-03-20T16:56:34.575832029Z"} +2026/03/20 16:56:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:34.585683334Z"} +2026/03/20 16:56:39 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":8.713176927531922,"throughput_eps":0,"last_update":"2026-03-20T16:56:34.719077941Z"} +2026/03/20 16:56:39 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":88.80772311762053,"throughput_eps":0,"last_update":"2026-03-20T16:56:34.719090205Z"} +2026/03/20 16:56:39 ───────────────────────────────────────────────── +2026/03/20 16:56:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:44 [metric_collector] {"stage_name":"metric_collector","events_processed":494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":98.8,"last_update":"2026-03-20T16:56:39.576144958Z"} +2026/03/20 16:56:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:39.5853904Z"} +2026/03/20 16:56:44 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":8.713176927531922,"throughput_eps":0,"last_update":"2026-03-20T16:56:39.719629666Z"} +2026/03/20 16:56:44 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":88.80772311762053,"throughput_eps":0,"last_update":"2026-03-20T16:56:39.719638372Z"} +2026/03/20 16:56:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:39.575721321Z"} +2026/03/20 16:56:44 ───────────────────────────────────────────────── +2026/03/20 16:56:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:44.575758494Z"} +2026/03/20 16:56:49 [metric_collector] {"stage_name":"metric_collector","events_processed":499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":99.8,"last_update":"2026-03-20T16:56:44.576215354Z"} +2026/03/20 16:56:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:44.586823856Z"} +2026/03/20 16:56:49 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":8.713176927531922,"throughput_eps":0,"last_update":"2026-03-20T16:56:44.719051964Z"} +2026/03/20 16:56:49 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":88.80772311762053,"throughput_eps":0,"last_update":"2026-03-20T16:56:44.719061552Z"} +2026/03/20 16:56:49 ───────────────────────────────────────────────── +2026/03/20 16:56:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:54 [metric_collector] {"stage_name":"metric_collector","events_processed":504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":100.8,"last_update":"2026-03-20T16:56:49.576209245Z"} +2026/03/20 16:56:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:49.585223358Z"} +2026/03/20 16:56:54 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":8.713176927531922,"throughput_eps":0,"last_update":"2026-03-20T16:56:49.719316229Z"} +2026/03/20 16:56:54 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":88.80772311762053,"throughput_eps":0,"last_update":"2026-03-20T16:56:49.719326117Z"} +2026/03/20 16:56:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:49.575811778Z"} +2026/03/20 16:56:54 ───────────────────────────────────────────────── +2026/03/20 16:56:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:59 [transform_engine] {"stage_name":"transform_engine","events_processed":17,"events_dropped":0,"avg_latency_ms":83.60704289409642,"throughput_eps":0,"last_update":"2026-03-20T16:56:54.782529026Z"} +2026/03/20 16:56:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:54.575850159Z"} +2026/03/20 16:56:59 [metric_collector] {"stage_name":"metric_collector","events_processed":509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":101.8,"last_update":"2026-03-20T16:56:54.57617563Z"} +2026/03/20 16:56:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":206,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:54.585377783Z"} +2026/03/20 16:56:59 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":8.713176927531922,"throughput_eps":0,"last_update":"2026-03-20T16:56:54.719707291Z"} +2026/03/20 16:56:59 ───────────────────────────────────────────────── +2026/03/20 16:57:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:04 [metric_collector] {"stage_name":"metric_collector","events_processed":514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":102.8,"last_update":"2026-03-20T16:56:59.575686526Z"} +2026/03/20 16:57:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:59.586041218Z"} +2026/03/20 16:57:04 [detection_layer] {"stage_name":"detection_layer","events_processed":17,"events_dropped":0,"avg_latency_ms":8.876964142025539,"throughput_eps":0,"last_update":"2026-03-20T16:56:59.719407708Z"} +2026/03/20 16:57:04 [transform_engine] {"stage_name":"transform_engine","events_processed":17,"events_dropped":0,"avg_latency_ms":83.60704289409642,"throughput_eps":0,"last_update":"2026-03-20T16:56:59.719421233Z"} +2026/03/20 16:57:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:59.575543985Z"} +2026/03/20 16:57:04 ───────────────────────────────────────────────── +2026/03/20 16:57:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:04.575899054Z"} +2026/03/20 16:57:09 [metric_collector] {"stage_name":"metric_collector","events_processed":519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":103.8,"last_update":"2026-03-20T16:57:04.576824389Z"} +2026/03/20 16:57:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":210,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:04.586019501Z"} +2026/03/20 16:57:09 [detection_layer] {"stage_name":"detection_layer","events_processed":17,"events_dropped":0,"avg_latency_ms":8.876964142025539,"throughput_eps":0,"last_update":"2026-03-20T16:57:04.7194034Z"} +2026/03/20 16:57:09 [transform_engine] {"stage_name":"transform_engine","events_processed":17,"events_dropped":0,"avg_latency_ms":83.60704289409642,"throughput_eps":0,"last_update":"2026-03-20T16:57:04.719417286Z"} +2026/03/20 16:57:09 ───────────────────────────────────────────────── +2026/03/20 16:57:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:14 [metric_collector] {"stage_name":"metric_collector","events_processed":524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":104.8,"last_update":"2026-03-20T16:57:09.576556139Z"} +2026/03/20 16:57:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:09.586089276Z"} +2026/03/20 16:57:14 [detection_layer] {"stage_name":"detection_layer","events_processed":17,"events_dropped":0,"avg_latency_ms":8.876964142025539,"throughput_eps":0,"last_update":"2026-03-20T16:57:09.719323477Z"} +2026/03/20 16:57:14 [transform_engine] {"stage_name":"transform_engine","events_processed":17,"events_dropped":0,"avg_latency_ms":83.60704289409642,"throughput_eps":0,"last_update":"2026-03-20T16:57:09.719331361Z"} +2026/03/20 16:57:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:09.575862165Z"} +2026/03/20 16:57:14 ───────────────────────────────────────────────── +2026/03/20 16:57:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:14.575553079Z"} +2026/03/20 16:57:19 [metric_collector] {"stage_name":"metric_collector","events_processed":529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":105.8,"last_update":"2026-03-20T16:57:14.57594191Z"} +2026/03/20 16:57:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:14.586999606Z"} +2026/03/20 16:57:19 [detection_layer] {"stage_name":"detection_layer","events_processed":17,"events_dropped":0,"avg_latency_ms":8.876964142025539,"throughput_eps":0,"last_update":"2026-03-20T16:57:14.71932058Z"} +2026/03/20 16:57:19 [transform_engine] {"stage_name":"transform_engine","events_processed":17,"events_dropped":0,"avg_latency_ms":83.60704289409642,"throughput_eps":0,"last_update":"2026-03-20T16:57:14.719333706Z"} +2026/03/20 16:57:19 ───────────────────────────────────────────────── +2026/03/20 16:57:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:24 [detection_layer] {"stage_name":"detection_layer","events_processed":17,"events_dropped":0,"avg_latency_ms":8.876964142025539,"throughput_eps":0,"last_update":"2026-03-20T16:57:19.719404267Z"} +2026/03/20 16:57:24 [transform_engine] {"stage_name":"transform_engine","events_processed":17,"events_dropped":0,"avg_latency_ms":83.60704289409642,"throughput_eps":0,"last_update":"2026-03-20T16:57:19.719417692Z"} +2026/03/20 16:57:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:19.575801071Z"} +2026/03/20 16:57:24 [metric_collector] {"stage_name":"metric_collector","events_processed":534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":106.8,"last_update":"2026-03-20T16:57:19.576421774Z"} +2026/03/20 16:57:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:19.585954082Z"} +2026/03/20 16:57:24 ───────────────────────────────────────────────── +2026/03/20 16:57:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:24.57552926Z"} +2026/03/20 16:57:29 [metric_collector] {"stage_name":"metric_collector","events_processed":539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":107.8,"last_update":"2026-03-20T16:57:24.575711338Z"} +2026/03/20 16:57:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:24.585724104Z"} +2026/03/20 16:57:29 [detection_layer] {"stage_name":"detection_layer","events_processed":17,"events_dropped":0,"avg_latency_ms":8.876964142025539,"throughput_eps":0,"last_update":"2026-03-20T16:57:24.7190783Z"} +2026/03/20 16:57:29 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":80.27852051527715,"throughput_eps":0,"last_update":"2026-03-20T16:57:24.786060074Z"} +2026/03/20 16:57:29 ───────────────────────────────────────────────── +2026/03/20 16:57:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:34 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":9.075584113620431,"throughput_eps":0,"last_update":"2026-03-20T16:57:29.719434408Z"} +2026/03/20 16:57:34 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":80.27852051527715,"throughput_eps":0,"last_update":"2026-03-20T16:57:29.719450448Z"} +2026/03/20 16:57:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:29.576107806Z"} +2026/03/20 16:57:34 [metric_collector] {"stage_name":"metric_collector","events_processed":544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":108.8,"last_update":"2026-03-20T16:57:29.576087517Z"} +2026/03/20 16:57:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:29.585073305Z"} +2026/03/20 16:57:34 ───────────────────────────────────────────────── +2026/03/20 16:57:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:34.575720297Z"} +2026/03/20 16:57:39 [metric_collector] {"stage_name":"metric_collector","events_processed":549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":109.8,"last_update":"2026-03-20T16:57:34.575999069Z"} +2026/03/20 16:57:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":222,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:34.587021993Z"} +2026/03/20 16:57:39 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":9.075584113620431,"throughput_eps":0,"last_update":"2026-03-20T16:57:34.719337941Z"} +2026/03/20 16:57:39 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":80.27852051527715,"throughput_eps":0,"last_update":"2026-03-20T16:57:34.719345385Z"} +2026/03/20 16:57:39 ───────────────────────────────────────────────── +2026/03/20 16:57:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:39.575632021Z"} +2026/03/20 16:57:44 [metric_collector] {"stage_name":"metric_collector","events_processed":554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":110.8,"last_update":"2026-03-20T16:57:39.575947503Z"} +2026/03/20 16:57:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:39.586802438Z"} +2026/03/20 16:57:44 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":9.075584113620431,"throughput_eps":0,"last_update":"2026-03-20T16:57:39.719079497Z"} +2026/03/20 16:57:44 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":80.27852051527715,"throughput_eps":0,"last_update":"2026-03-20T16:57:39.719090067Z"} +2026/03/20 16:57:44 ───────────────────────────────────────────────── +2026/03/20 16:57:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:49 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":80.27852051527715,"throughput_eps":0,"last_update":"2026-03-20T16:57:44.718688617Z"} +2026/03/20 16:57:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:44.575509487Z"} +2026/03/20 16:57:49 [metric_collector] {"stage_name":"metric_collector","events_processed":559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":111.8,"last_update":"2026-03-20T16:57:44.575551587Z"} +2026/03/20 16:57:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:44.585529231Z"} +2026/03/20 16:57:49 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":9.075584113620431,"throughput_eps":0,"last_update":"2026-03-20T16:57:44.718805861Z"} +2026/03/20 16:57:49 ───────────────────────────────────────────────── +2026/03/20 16:57:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:49.575540938Z"} +2026/03/20 16:57:54 [metric_collector] {"stage_name":"metric_collector","events_processed":564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":112.8,"last_update":"2026-03-20T16:57:49.575743574Z"} +2026/03/20 16:57:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:49.585600018Z"} +2026/03/20 16:57:54 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":9.075584113620431,"throughput_eps":0,"last_update":"2026-03-20T16:57:49.718828753Z"} +2026/03/20 16:57:54 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":80.27852051527715,"throughput_eps":0,"last_update":"2026-03-20T16:57:49.718721138Z"} +2026/03/20 16:57:54 ───────────────────────────────────────────────── +2026/03/20 16:57:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:54.575724805Z"} +2026/03/20 16:57:59 [metric_collector] {"stage_name":"metric_collector","events_processed":569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":113.8,"last_update":"2026-03-20T16:57:54.576225471Z"} +2026/03/20 16:57:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:54.584731208Z"} +2026/03/20 16:57:59 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":9.075584113620431,"throughput_eps":0,"last_update":"2026-03-20T16:57:54.719212728Z"} +2026/03/20 16:57:59 [transform_engine] {"stage_name":"transform_engine","events_processed":19,"events_dropped":0,"avg_latency_ms":86.20804501222172,"throughput_eps":0,"last_update":"2026-03-20T16:57:54.829153318Z"} +2026/03/20 16:57:59 ───────────────────────────────────────────────── +2026/03/20 16:58:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:59.586271867Z"} +2026/03/20 16:58:04 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":9.584972090896345,"throughput_eps":0,"last_update":"2026-03-20T16:57:59.719584852Z"} +2026/03/20 16:58:04 [transform_engine] {"stage_name":"transform_engine","events_processed":19,"events_dropped":0,"avg_latency_ms":86.20804501222172,"throughput_eps":0,"last_update":"2026-03-20T16:57:59.719590873Z"} +2026/03/20 16:58:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:59.575801189Z"} +2026/03/20 16:58:04 [metric_collector] {"stage_name":"metric_collector","events_processed":574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":114.8,"last_update":"2026-03-20T16:57:59.576122382Z"} +2026/03/20 16:58:04 ───────────────────────────────────────────────── +2026/03/20 16:58:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:09 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":9.584972090896345,"throughput_eps":0,"last_update":"2026-03-20T16:58:04.719688176Z"} +2026/03/20 16:58:09 [transform_engine] {"stage_name":"transform_engine","events_processed":19,"events_dropped":0,"avg_latency_ms":86.20804501222172,"throughput_eps":0,"last_update":"2026-03-20T16:58:04.719696993Z"} +2026/03/20 16:58:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:04.575532428Z"} +2026/03/20 16:58:09 [metric_collector] {"stage_name":"metric_collector","events_processed":579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":115.8,"last_update":"2026-03-20T16:58:04.575775841Z"} +2026/03/20 16:58:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:04.58647136Z"} +2026/03/20 16:58:09 ───────────────────────────────────────────────── +2026/03/20 16:58:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:14 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":9.584972090896345,"throughput_eps":0,"last_update":"2026-03-20T16:58:09.719506727Z"} +2026/03/20 16:58:14 [transform_engine] {"stage_name":"transform_engine","events_processed":19,"events_dropped":0,"avg_latency_ms":86.20804501222172,"throughput_eps":0,"last_update":"2026-03-20T16:58:09.719512598Z"} +2026/03/20 16:58:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:09.575726629Z"} +2026/03/20 16:58:14 [metric_collector] {"stage_name":"metric_collector","events_processed":584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":116.8,"last_update":"2026-03-20T16:58:09.576043353Z"} +2026/03/20 16:58:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:09.586106406Z"} +2026/03/20 16:58:14 ───────────────────────────────────────────────── +2026/03/20 16:58:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:14.58661405Z"} +2026/03/20 16:58:19 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":9.584972090896345,"throughput_eps":0,"last_update":"2026-03-20T16:58:14.718911551Z"} +2026/03/20 16:58:19 [transform_engine] {"stage_name":"transform_engine","events_processed":19,"events_dropped":0,"avg_latency_ms":86.20804501222172,"throughput_eps":0,"last_update":"2026-03-20T16:58:14.718923323Z"} +2026/03/20 16:58:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:14.575872743Z"} +2026/03/20 16:58:19 [metric_collector] {"stage_name":"metric_collector","events_processed":589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":117.8,"last_update":"2026-03-20T16:58:14.576540878Z"} +2026/03/20 16:58:19 ───────────────────────────────────────────────── +2026/03/20 16:58:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:24 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":9.584972090896345,"throughput_eps":0,"last_update":"2026-03-20T16:58:19.719216854Z"} +2026/03/20 16:58:24 [transform_engine] {"stage_name":"transform_engine","events_processed":19,"events_dropped":0,"avg_latency_ms":86.20804501222172,"throughput_eps":0,"last_update":"2026-03-20T16:58:19.719232234Z"} +2026/03/20 16:58:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:19.575770101Z"} +2026/03/20 16:58:24 [metric_collector] {"stage_name":"metric_collector","events_processed":594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":118.8,"last_update":"2026-03-20T16:58:19.576173331Z"} +2026/03/20 16:58:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:19.584831553Z"} +2026/03/20 16:58:24 ───────────────────────────────────────────────── +2026/03/20 16:58:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:29 [metric_collector] {"stage_name":"metric_collector","events_processed":599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":119.8,"last_update":"2026-03-20T16:58:24.576344524Z"} +2026/03/20 16:58:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:24.586069063Z"} +2026/03/20 16:58:29 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":9.584972090896345,"throughput_eps":0,"last_update":"2026-03-20T16:58:24.719417418Z"} +2026/03/20 16:58:29 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":91.04819300977738,"throughput_eps":0,"last_update":"2026-03-20T16:58:24.82984075Z"} +2026/03/20 16:58:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:24.575878514Z"} +2026/03/20 16:58:29 ───────────────────────────────────────────────── +2026/03/20 16:58:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:29.575511218Z"} +2026/03/20 16:58:34 [metric_collector] {"stage_name":"metric_collector","events_processed":604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":120.8,"last_update":"2026-03-20T16:58:29.575725848Z"} +2026/03/20 16:58:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:29.586417583Z"} +2026/03/20 16:58:34 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":10.264376872717076,"throughput_eps":0,"last_update":"2026-03-20T16:58:29.719686411Z"} +2026/03/20 16:58:34 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":91.04819300977738,"throughput_eps":0,"last_update":"2026-03-20T16:58:29.719695328Z"} +2026/03/20 16:58:34 ───────────────────────────────────────────────── +2026/03/20 16:58:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:34.575593102Z"} +2026/03/20 16:58:39 [metric_collector] {"stage_name":"metric_collector","events_processed":609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":121.8,"last_update":"2026-03-20T16:58:34.576004367Z"} +2026/03/20 16:58:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":246,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:34.587315396Z"} +2026/03/20 16:58:39 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":10.264376872717076,"throughput_eps":0,"last_update":"2026-03-20T16:58:34.71967959Z"} +2026/03/20 16:58:39 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":91.04819300977738,"throughput_eps":0,"last_update":"2026-03-20T16:58:34.719692595Z"} +2026/03/20 16:58:39 ───────────────────────────────────────────────── +2026/03/20 16:58:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:39.584840239Z"} +2026/03/20 16:58:44 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":10.264376872717076,"throughput_eps":0,"last_update":"2026-03-20T16:58:39.719037545Z"} +2026/03/20 16:58:44 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":91.04819300977738,"throughput_eps":0,"last_update":"2026-03-20T16:58:39.719045119Z"} +2026/03/20 16:58:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:39.575694411Z"} +2026/03/20 16:58:44 [metric_collector] {"stage_name":"metric_collector","events_processed":614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":122.8,"last_update":"2026-03-20T16:58:39.576193133Z"} +2026/03/20 16:58:44 ───────────────────────────────────────────────── +2026/03/20 16:58:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:44.576257424Z"} +2026/03/20 16:58:49 [metric_collector] {"stage_name":"metric_collector","events_processed":619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":123.8,"last_update":"2026-03-20T16:58:44.576568808Z"} +2026/03/20 16:58:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:44.585154418Z"} +2026/03/20 16:58:49 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":10.264376872717076,"throughput_eps":0,"last_update":"2026-03-20T16:58:44.719481015Z"} +2026/03/20 16:58:49 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":91.04819300977738,"throughput_eps":0,"last_update":"2026-03-20T16:58:44.719489452Z"} +2026/03/20 16:58:49 ───────────────────────────────────────────────── +2026/03/20 16:58:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:54 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":91.04819300977738,"throughput_eps":0,"last_update":"2026-03-20T16:58:49.719404872Z"} +2026/03/20 16:58:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:49.575845996Z"} +2026/03/20 16:58:54 [metric_collector] {"stage_name":"metric_collector","events_processed":624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":124.8,"last_update":"2026-03-20T16:58:49.576218767Z"} +2026/03/20 16:58:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:49.584998508Z"} +2026/03/20 16:58:54 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":10.264376872717076,"throughput_eps":0,"last_update":"2026-03-20T16:58:49.719390464Z"} +2026/03/20 16:58:54 ───────────────────────────────────────────────── +2026/03/20 16:58:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:54.575615336Z"} +2026/03/20 16:58:59 [metric_collector] {"stage_name":"metric_collector","events_processed":629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":125.8,"last_update":"2026-03-20T16:58:54.576103578Z"} +2026/03/20 16:58:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:54.586979592Z"} +2026/03/20 16:58:59 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":10.264376872717076,"throughput_eps":0,"last_update":"2026-03-20T16:58:54.719211618Z"} +2026/03/20 16:58:59 [transform_engine] {"stage_name":"transform_engine","events_processed":21,"events_dropped":0,"avg_latency_ms":95.5786058078219,"throughput_eps":0,"last_update":"2026-03-20T16:58:54.832922073Z"} +2026/03/20 16:58:59 ───────────────────────────────────────────────── +2026/03/20 16:59:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:59.575721116Z"} +2026/03/20 16:59:04 [metric_collector] {"stage_name":"metric_collector","events_processed":634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":126.8,"last_update":"2026-03-20T16:58:59.575961475Z"} +2026/03/20 16:59:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:59.587553747Z"} +2026/03/20 16:59:04 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":10.531482698173662,"throughput_eps":0,"last_update":"2026-03-20T16:58:59.719804651Z"} +2026/03/20 16:59:04 [transform_engine] {"stage_name":"transform_engine","events_processed":21,"events_dropped":0,"avg_latency_ms":95.5786058078219,"throughput_eps":0,"last_update":"2026-03-20T16:58:59.718706715Z"} +2026/03/20 16:59:04 ───────────────────────────────────────────────── +2026/03/20 16:59:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:04.575679277Z"} +2026/03/20 16:59:09 [metric_collector] {"stage_name":"metric_collector","events_processed":639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":127.8,"last_update":"2026-03-20T16:59:04.576062709Z"} +2026/03/20 16:59:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:04.587136813Z"} +2026/03/20 16:59:09 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":10.531482698173662,"throughput_eps":0,"last_update":"2026-03-20T16:59:04.719708694Z"} +2026/03/20 16:59:09 [transform_engine] {"stage_name":"transform_engine","events_processed":21,"events_dropped":0,"avg_latency_ms":95.5786058078219,"throughput_eps":0,"last_update":"2026-03-20T16:59:04.71959658Z"} +2026/03/20 16:59:09 ───────────────────────────────────────────────── +2026/03/20 16:59:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:14 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":10.531482698173662,"throughput_eps":0,"last_update":"2026-03-20T16:59:09.719780283Z"} +2026/03/20 16:59:14 [transform_engine] {"stage_name":"transform_engine","events_processed":21,"events_dropped":0,"avg_latency_ms":95.5786058078219,"throughput_eps":0,"last_update":"2026-03-20T16:59:09.718703898Z"} +2026/03/20 16:59:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:09.575552574Z"} +2026/03/20 16:59:14 [metric_collector] {"stage_name":"metric_collector","events_processed":644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":128.8,"last_update":"2026-03-20T16:59:09.575825525Z"} +2026/03/20 16:59:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:09.586483535Z"} +2026/03/20 16:59:14 ───────────────────────────────────────────────── +2026/03/20 16:59:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:14.575816182Z"} +2026/03/20 16:59:19 [metric_collector] {"stage_name":"metric_collector","events_processed":649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":129.8,"last_update":"2026-03-20T16:59:14.576060648Z"} +2026/03/20 16:59:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:14.585935846Z"} +2026/03/20 16:59:19 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":10.531482698173662,"throughput_eps":0,"last_update":"2026-03-20T16:59:14.719162963Z"} +2026/03/20 16:59:19 [transform_engine] {"stage_name":"transform_engine","events_processed":21,"events_dropped":0,"avg_latency_ms":95.5786058078219,"throughput_eps":0,"last_update":"2026-03-20T16:59:14.719265679Z"} +2026/03/20 16:59:19 ───────────────────────────────────────────────── +2026/03/20 16:59:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:19.575518716Z"} +2026/03/20 16:59:24 [metric_collector] {"stage_name":"metric_collector","events_processed":654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":130.8,"last_update":"2026-03-20T16:59:19.575961161Z"} +2026/03/20 16:59:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:19.586286869Z"} +2026/03/20 16:59:24 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":10.531482698173662,"throughput_eps":0,"last_update":"2026-03-20T16:59:19.719608981Z"} +2026/03/20 16:59:24 [transform_engine] {"stage_name":"transform_engine","events_processed":21,"events_dropped":0,"avg_latency_ms":95.5786058078219,"throughput_eps":0,"last_update":"2026-03-20T16:59:19.719640972Z"} +2026/03/20 16:59:24 ───────────────────────────────────────────────── +2026/03/20 16:59:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:24.575849435Z"} +2026/03/20 16:59:29 [metric_collector] {"stage_name":"metric_collector","events_processed":659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":131.8,"last_update":"2026-03-20T16:59:24.576193251Z"} +2026/03/20 16:59:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:24.585961265Z"} +2026/03/20 16:59:29 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":10.531482698173662,"throughput_eps":0,"last_update":"2026-03-20T16:59:24.719320451Z"} +2026/03/20 16:59:29 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":99.16793024625753,"throughput_eps":0,"last_update":"2026-03-20T16:59:24.832801464Z"} +2026/03/20 16:59:29 ───────────────────────────────────────────────── +2026/03/20 16:59:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:29.585224084Z"} +2026/03/20 16:59:34 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":10.42396715853893,"throughput_eps":0,"last_update":"2026-03-20T16:59:29.719766712Z"} +2026/03/20 16:59:34 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":99.16793024625753,"throughput_eps":0,"last_update":"2026-03-20T16:59:29.719682101Z"} +2026/03/20 16:59:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:29.575519621Z"} +2026/03/20 16:59:34 [metric_collector] {"stage_name":"metric_collector","events_processed":664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":132.8,"last_update":"2026-03-20T16:59:29.575452604Z"} +2026/03/20 16:59:34 ───────────────────────────────────────────────── +2026/03/20 16:59:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:34.585855251Z"} +2026/03/20 16:59:39 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":10.42396715853893,"throughput_eps":0,"last_update":"2026-03-20T16:59:34.719084413Z"} +2026/03/20 16:59:39 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":99.16793024625753,"throughput_eps":0,"last_update":"2026-03-20T16:59:34.719106716Z"} +2026/03/20 16:59:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:34.575568926Z"} +2026/03/20 16:59:39 [metric_collector] {"stage_name":"metric_collector","events_processed":669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":133.8,"last_update":"2026-03-20T16:59:34.57561867Z"} +2026/03/20 16:59:39 ───────────────────────────────────────────────── +2026/03/20 16:59:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:39.575901274Z"} +2026/03/20 16:59:44 [metric_collector] {"stage_name":"metric_collector","events_processed":674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":134.8,"last_update":"2026-03-20T16:59:39.576251492Z"} +2026/03/20 16:59:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:39.585866968Z"} +2026/03/20 16:59:44 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":10.42396715853893,"throughput_eps":0,"last_update":"2026-03-20T16:59:39.719124587Z"} +2026/03/20 16:59:44 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":99.16793024625753,"throughput_eps":0,"last_update":"2026-03-20T16:59:39.71915793Z"} +2026/03/20 16:59:44 ───────────────────────────────────────────────── +2026/03/20 16:59:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:44.575915099Z"} +2026/03/20 16:59:49 [metric_collector] {"stage_name":"metric_collector","events_processed":679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":135.8,"last_update":"2026-03-20T16:59:44.576334601Z"} +2026/03/20 16:59:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:44.58510336Z"} +2026/03/20 16:59:49 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":10.42396715853893,"throughput_eps":0,"last_update":"2026-03-20T16:59:44.719332074Z"} +2026/03/20 16:59:49 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":99.16793024625753,"throughput_eps":0,"last_update":"2026-03-20T16:59:44.719314511Z"} +2026/03/20 16:59:49 ───────────────────────────────────────────────── +2026/03/20 16:59:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:54 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":99.16793024625753,"throughput_eps":0,"last_update":"2026-03-20T16:59:49.718943767Z"} +2026/03/20 16:59:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:49.575497884Z"} +2026/03/20 16:59:54 [metric_collector] {"stage_name":"metric_collector","events_processed":684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":136.8,"last_update":"2026-03-20T16:59:49.575906925Z"} +2026/03/20 16:59:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":276,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:49.586744887Z"} +2026/03/20 16:59:54 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":10.42396715853893,"throughput_eps":0,"last_update":"2026-03-20T16:59:49.718963085Z"} +2026/03/20 16:59:54 ───────────────────────────────────────────────── +2026/03/20 16:59:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:54.575535614Z"} +2026/03/20 16:59:59 [metric_collector] {"stage_name":"metric_collector","events_processed":689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":137.8,"last_update":"2026-03-20T16:59:54.576138405Z"} +2026/03/20 16:59:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:54.586905182Z"} +2026/03/20 16:59:59 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":10.42396715853893,"throughput_eps":0,"last_update":"2026-03-20T16:59:54.719183335Z"} +2026/03/20 16:59:59 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":92.60210879700604,"throughput_eps":0,"last_update":"2026-03-20T16:59:54.785489426Z"} +2026/03/20 16:59:59 ───────────────────────────────────────────────── +2026/03/20 17:00:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:59.575829146Z"} +2026/03/20 17:00:04 [metric_collector] {"stage_name":"metric_collector","events_processed":699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":139.8,"last_update":"2026-03-20T17:00:04.575767769Z"} +2026/03/20 17:00:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:59.585053397Z"} +2026/03/20 17:00:04 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":10.571536326831145,"throughput_eps":0,"last_update":"2026-03-20T16:59:59.719376068Z"} +2026/03/20 17:00:04 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":92.60210879700604,"throughput_eps":0,"last_update":"2026-03-20T16:59:59.719342303Z"} +2026/03/20 17:00:04 ───────────────────────────────────────────────── +2026/03/20 17:00:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:09 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":92.60210879700604,"throughput_eps":0,"last_update":"2026-03-20T17:00:04.719312079Z"} +2026/03/20 17:00:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:04.575905572Z"} +2026/03/20 17:00:09 [metric_collector] {"stage_name":"metric_collector","events_processed":699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":139.8,"last_update":"2026-03-20T17:00:04.575767769Z"} +2026/03/20 17:00:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:04.592106683Z"} +2026/03/20 17:00:09 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":10.571536326831145,"throughput_eps":0,"last_update":"2026-03-20T17:00:04.719443631Z"} +2026/03/20 17:00:09 ───────────────────────────────────────────────── +2026/03/20 17:00:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:09.575518206Z"} +2026/03/20 17:00:14 [metric_collector] {"stage_name":"metric_collector","events_processed":704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":140.8,"last_update":"2026-03-20T17:00:09.5757922Z"} +2026/03/20 17:00:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:09.585958272Z"} +2026/03/20 17:00:14 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":10.571536326831145,"throughput_eps":0,"last_update":"2026-03-20T17:00:09.719222052Z"} +2026/03/20 17:00:14 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":92.60210879700604,"throughput_eps":0,"last_update":"2026-03-20T17:00:09.71924693Z"} +2026/03/20 17:00:14 ───────────────────────────────────────────────── +2026/03/20 17:00:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":286,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:14.586416202Z"} +2026/03/20 17:00:19 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":10.571536326831145,"throughput_eps":0,"last_update":"2026-03-20T17:00:14.719767942Z"} +2026/03/20 17:00:19 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":92.60210879700604,"throughput_eps":0,"last_update":"2026-03-20T17:00:14.718642752Z"} +2026/03/20 17:00:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:14.575798857Z"} +2026/03/20 17:00:19 [metric_collector] {"stage_name":"metric_collector","events_processed":709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":141.8,"last_update":"2026-03-20T17:00:14.57612543Z"} +2026/03/20 17:00:19 ───────────────────────────────────────────────── +2026/03/20 17:00:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:19.575747379Z"} +2026/03/20 17:00:24 [metric_collector] {"stage_name":"metric_collector","events_processed":714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":142.8,"last_update":"2026-03-20T17:00:19.576547748Z"} +2026/03/20 17:00:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:19.585869228Z"} +2026/03/20 17:00:24 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":10.571536326831145,"throughput_eps":0,"last_update":"2026-03-20T17:00:19.719095851Z"} +2026/03/20 17:00:24 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":92.60210879700604,"throughput_eps":0,"last_update":"2026-03-20T17:00:19.719104006Z"} +2026/03/20 17:00:24 ───────────────────────────────────────────────── +2026/03/20 17:00:24 [ANOMALY] time=2026-03-20T17:00:24Z score=0.9607 method=SEAD details=MAD!:w=0.24,s=0.87 RRCF-fast!:w=0.19,s=1.00 RRCF-mid!:w=0.19,s=1.00 RRCF-slow!:w=0.19,s=1.00 COPOD!:w=0.20,s=0.96 +2026/03/20 17:00:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:29 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":87.06673043760483,"throughput_eps":0,"last_update":"2026-03-20T17:00:24.783955897Z"} +2026/03/20 17:00:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:24.575689981Z"} +2026/03/20 17:00:29 [metric_collector] {"stage_name":"metric_collector","events_processed":719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":143.8,"last_update":"2026-03-20T17:00:24.576255702Z"} +2026/03/20 17:00:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:24.586677085Z"} +2026/03/20 17:00:29 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":10.571536326831145,"throughput_eps":0,"last_update":"2026-03-20T17:00:24.71901454Z"} +2026/03/20 17:00:29 ───────────────────────────────────────────────── +2026/03/20 17:00:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:34 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":87.06673043760483,"throughput_eps":0,"last_update":"2026-03-20T17:00:29.719071412Z"} +2026/03/20 17:00:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:29.575573229Z"} +2026/03/20 17:00:34 [metric_collector] {"stage_name":"metric_collector","events_processed":724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":144.8,"last_update":"2026-03-20T17:00:29.575996638Z"} +2026/03/20 17:00:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:29.588715201Z"} +2026/03/20 17:00:34 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":10.324819661464916,"throughput_eps":0,"last_update":"2026-03-20T17:00:29.719062915Z"} +2026/03/20 17:00:34 ───────────────────────────────────────────────── +2026/03/20 17:00:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:34.575687901Z"} +2026/03/20 17:00:39 [metric_collector] {"stage_name":"metric_collector","events_processed":729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":145.8,"last_update":"2026-03-20T17:00:34.57602213Z"} +2026/03/20 17:00:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:34.585972834Z"} +2026/03/20 17:00:39 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":10.324819661464916,"throughput_eps":0,"last_update":"2026-03-20T17:00:34.719222645Z"} +2026/03/20 17:00:39 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":87.06673043760483,"throughput_eps":0,"last_update":"2026-03-20T17:00:34.719234627Z"} +2026/03/20 17:00:39 ───────────────────────────────────────────────── +2026/03/20 17:00:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:44 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":87.06673043760483,"throughput_eps":0,"last_update":"2026-03-20T17:00:39.719710071Z"} +2026/03/20 17:00:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:39.57603646Z"} +2026/03/20 17:00:44 [metric_collector] {"stage_name":"metric_collector","events_processed":734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":146.8,"last_update":"2026-03-20T17:00:39.576433108Z"} +2026/03/20 17:00:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:39.585402058Z"} +2026/03/20 17:00:44 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":10.324819661464916,"throughput_eps":0,"last_update":"2026-03-20T17:00:39.719702947Z"} +2026/03/20 17:00:44 ───────────────────────────────────────────────── +2026/03/20 17:00:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:44.575512829Z"} +2026/03/20 17:00:49 [metric_collector] {"stage_name":"metric_collector","events_processed":739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":147.8,"last_update":"2026-03-20T17:00:44.576029796Z"} +2026/03/20 17:00:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:44.584832629Z"} +2026/03/20 17:00:49 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":10.324819661464916,"throughput_eps":0,"last_update":"2026-03-20T17:00:44.719115715Z"} +2026/03/20 17:00:49 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":87.06673043760483,"throughput_eps":0,"last_update":"2026-03-20T17:00:44.719130795Z"} +2026/03/20 17:00:49 ───────────────────────────────────────────────── +2026/03/20 17:00:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:49.576094299Z"} +2026/03/20 17:00:54 [metric_collector] {"stage_name":"metric_collector","events_processed":744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":148.8,"last_update":"2026-03-20T17:00:49.576411686Z"} +2026/03/20 17:00:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:49.585564599Z"} +2026/03/20 17:00:54 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":10.324819661464916,"throughput_eps":0,"last_update":"2026-03-20T17:00:49.719809112Z"} +2026/03/20 17:00:54 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":87.06673043760483,"throughput_eps":0,"last_update":"2026-03-20T17:00:49.718654225Z"} +2026/03/20 17:00:54 ───────────────────────────────────────────────── +2026/03/20 17:00:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:59 [transform_engine] {"stage_name":"transform_engine","events_processed":25,"events_dropped":0,"avg_latency_ms":92.18896135008387,"throughput_eps":0,"last_update":"2026-03-20T17:00:54.832073248Z"} +2026/03/20 17:00:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:54.575620644Z"} +2026/03/20 17:00:59 [metric_collector] {"stage_name":"metric_collector","events_processed":749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":149.8,"last_update":"2026-03-20T17:00:54.575819775Z"} +2026/03/20 17:00:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:54.586115603Z"} +2026/03/20 17:00:59 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":10.324819661464916,"throughput_eps":0,"last_update":"2026-03-20T17:00:54.719382488Z"} +2026/03/20 17:00:59 ───────────────────────────────────────────────── +2026/03/20 17:01:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:59.575744382Z"} +2026/03/20 17:01:04 [metric_collector] {"stage_name":"metric_collector","events_processed":754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":150.8,"last_update":"2026-03-20T17:00:59.576250659Z"} +2026/03/20 17:01:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:59.584525485Z"} +2026/03/20 17:01:04 [detection_layer] {"stage_name":"detection_layer","events_processed":25,"events_dropped":0,"avg_latency_ms":10.383887329171934,"throughput_eps":0,"last_update":"2026-03-20T17:00:59.718788736Z"} +2026/03/20 17:01:04 [transform_engine] {"stage_name":"transform_engine","events_processed":25,"events_dropped":0,"avg_latency_ms":92.18896135008387,"throughput_eps":0,"last_update":"2026-03-20T17:00:59.718745774Z"} +2026/03/20 17:01:04 ───────────────────────────────────────────────── +2026/03/20 17:01:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:09 [detection_layer] {"stage_name":"detection_layer","events_processed":25,"events_dropped":0,"avg_latency_ms":10.383887329171934,"throughput_eps":0,"last_update":"2026-03-20T17:01:04.719662761Z"} +2026/03/20 17:01:09 [transform_engine] {"stage_name":"transform_engine","events_processed":25,"events_dropped":0,"avg_latency_ms":92.18896135008387,"throughput_eps":0,"last_update":"2026-03-20T17:01:04.719766309Z"} +2026/03/20 17:01:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:04.575958184Z"} +2026/03/20 17:01:09 [metric_collector] {"stage_name":"metric_collector","events_processed":759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":151.8,"last_update":"2026-03-20T17:01:04.576705833Z"} +2026/03/20 17:01:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:04.586416895Z"} +2026/03/20 17:01:09 ───────────────────────────────────────────────── +2026/03/20 17:01:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:14 [detection_layer] {"stage_name":"detection_layer","events_processed":25,"events_dropped":0,"avg_latency_ms":10.383887329171934,"throughput_eps":0,"last_update":"2026-03-20T17:01:09.71879442Z"} +2026/03/20 17:01:14 [transform_engine] {"stage_name":"transform_engine","events_processed":25,"events_dropped":0,"avg_latency_ms":92.18896135008387,"throughput_eps":0,"last_update":"2026-03-20T17:01:09.718734295Z"} +2026/03/20 17:01:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:09.575790943Z"} +2026/03/20 17:01:14 [metric_collector] {"stage_name":"metric_collector","events_processed":764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":152.8,"last_update":"2026-03-20T17:01:09.576098671Z"} +2026/03/20 17:01:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:09.586603221Z"} +2026/03/20 17:01:14 ───────────────────────────────────────────────── +2026/03/20 17:01:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:14.575749295Z"} +2026/03/20 17:01:19 [metric_collector] {"stage_name":"metric_collector","events_processed":769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":153.8,"last_update":"2026-03-20T17:01:14.576130213Z"} +2026/03/20 17:01:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:14.586229949Z"} +2026/03/20 17:01:19 [detection_layer] {"stage_name":"detection_layer","events_processed":25,"events_dropped":0,"avg_latency_ms":10.383887329171934,"throughput_eps":0,"last_update":"2026-03-20T17:01:14.71959791Z"} +2026/03/20 17:01:19 [transform_engine] {"stage_name":"transform_engine","events_processed":25,"events_dropped":0,"avg_latency_ms":92.18896135008387,"throughput_eps":0,"last_update":"2026-03-20T17:01:14.71955594Z"} +2026/03/20 17:01:19 ───────────────────────────────────────────────── +2026/03/20 17:01:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:19.575942033Z"} +2026/03/20 17:01:24 [metric_collector] {"stage_name":"metric_collector","events_processed":774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":154.8,"last_update":"2026-03-20T17:01:19.576226317Z"} +2026/03/20 17:01:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:19.584816288Z"} +2026/03/20 17:01:24 [detection_layer] {"stage_name":"detection_layer","events_processed":25,"events_dropped":0,"avg_latency_ms":10.383887329171934,"throughput_eps":0,"last_update":"2026-03-20T17:01:19.7192108Z"} +2026/03/20 17:01:24 [transform_engine] {"stage_name":"transform_engine","events_processed":25,"events_dropped":0,"avg_latency_ms":92.18896135008387,"throughput_eps":0,"last_update":"2026-03-20T17:01:19.719311162Z"} +2026/03/20 17:01:24 ───────────────────────────────────────────────── +2026/03/20 17:01:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:24.57618224Z"} +2026/03/20 17:01:29 [metric_collector] {"stage_name":"metric_collector","events_processed":779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":155.8,"last_update":"2026-03-20T17:01:24.576169595Z"} +2026/03/20 17:01:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:24.586245798Z"} +2026/03/20 17:01:29 [detection_layer] {"stage_name":"detection_layer","events_processed":25,"events_dropped":0,"avg_latency_ms":10.383887329171934,"throughput_eps":0,"last_update":"2026-03-20T17:01:24.719523225Z"} +2026/03/20 17:01:29 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":95.8821968800671,"throughput_eps":0,"last_update":"2026-03-20T17:01:24.830114342Z"} +2026/03/20 17:01:29 ───────────────────────────────────────────────── +2026/03/20 17:01:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:29.575918663Z"} +2026/03/20 17:01:34 [metric_collector] {"stage_name":"metric_collector","events_processed":784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":156.8,"last_update":"2026-03-20T17:01:29.576268762Z"} +2026/03/20 17:01:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:29.585905996Z"} +2026/03/20 17:01:34 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":10.453477063337548,"throughput_eps":0,"last_update":"2026-03-20T17:01:29.719393395Z"} +2026/03/20 17:01:34 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":95.8821968800671,"throughput_eps":0,"last_update":"2026-03-20T17:01:29.719253247Z"} +2026/03/20 17:01:34 ───────────────────────────────────────────────── +2026/03/20 17:01:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:34.575543111Z"} +2026/03/20 17:01:39 [metric_collector] {"stage_name":"metric_collector","events_processed":789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":157.8,"last_update":"2026-03-20T17:01:34.575946723Z"} +2026/03/20 17:01:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:34.585508674Z"} +2026/03/20 17:01:39 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":10.453477063337548,"throughput_eps":0,"last_update":"2026-03-20T17:01:34.719029125Z"} +2026/03/20 17:01:39 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":95.8821968800671,"throughput_eps":0,"last_update":"2026-03-20T17:01:34.718830094Z"} +2026/03/20 17:01:39 ───────────────────────────────────────────────── +2026/03/20 17:01:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:44 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":10.453477063337548,"throughput_eps":0,"last_update":"2026-03-20T17:01:39.719610316Z"} +2026/03/20 17:01:44 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":95.8821968800671,"throughput_eps":0,"last_update":"2026-03-20T17:01:39.719724615Z"} +2026/03/20 17:01:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:39.575779864Z"} +2026/03/20 17:01:44 [metric_collector] {"stage_name":"metric_collector","events_processed":794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":158.8,"last_update":"2026-03-20T17:01:39.576183374Z"} +2026/03/20 17:01:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":320,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:39.585218299Z"} +2026/03/20 17:01:44 ───────────────────────────────────────────────── +2026/03/20 17:01:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:44.575513875Z"} +2026/03/20 17:01:49 [metric_collector] {"stage_name":"metric_collector","events_processed":799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":159.8,"last_update":"2026-03-20T17:01:44.576051052Z"} +2026/03/20 17:01:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:44.586865951Z"} +2026/03/20 17:01:49 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":10.453477063337548,"throughput_eps":0,"last_update":"2026-03-20T17:01:44.719232424Z"} +2026/03/20 17:01:49 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":95.8821968800671,"throughput_eps":0,"last_update":"2026-03-20T17:01:44.719265669Z"} +2026/03/20 17:01:49 ───────────────────────────────────────────────── +2026/03/20 17:01:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:49.575863551Z"} +2026/03/20 17:01:54 [metric_collector] {"stage_name":"metric_collector","events_processed":804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":160.8,"last_update":"2026-03-20T17:01:49.576170658Z"} +2026/03/20 17:01:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:49.585713184Z"} +2026/03/20 17:01:54 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":10.453477063337548,"throughput_eps":0,"last_update":"2026-03-20T17:01:49.719167037Z"} +2026/03/20 17:01:54 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":95.8821968800671,"throughput_eps":0,"last_update":"2026-03-20T17:01:49.719059381Z"} +2026/03/20 17:01:54 ───────────────────────────────────────────────── +2026/03/20 17:01:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:59 [metric_collector] {"stage_name":"metric_collector","events_processed":809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":161.8,"last_update":"2026-03-20T17:01:54.576707165Z"} +2026/03/20 17:01:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:54.585229511Z"} +2026/03/20 17:01:59 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":10.453477063337548,"throughput_eps":0,"last_update":"2026-03-20T17:01:54.720430354Z"} +2026/03/20 17:01:59 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":89.91524970405368,"throughput_eps":0,"last_update":"2026-03-20T17:01:54.7855338Z"} +2026/03/20 17:01:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:54.57595145Z"} +2026/03/20 17:01:59 ───────────────────────────────────────────────── +2026/03/20 17:02:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:59.575594849Z"} +2026/03/20 17:02:04 [metric_collector] {"stage_name":"metric_collector","events_processed":814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":162.8,"last_update":"2026-03-20T17:01:59.575804821Z"} +2026/03/20 17:02:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:59.586144563Z"} +2026/03/20 17:02:04 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":9.202104650670039,"throughput_eps":0,"last_update":"2026-03-20T17:01:59.719473486Z"} +2026/03/20 17:02:04 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":89.91524970405368,"throughput_eps":0,"last_update":"2026-03-20T17:01:59.719484777Z"} +2026/03/20 17:02:04 ───────────────────────────────────────────────── +2026/03/20 17:02:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":330,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:04.585065168Z"} +2026/03/20 17:02:09 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":9.202104650670039,"throughput_eps":0,"last_update":"2026-03-20T17:02:04.719453314Z"} +2026/03/20 17:02:09 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":89.91524970405368,"throughput_eps":0,"last_update":"2026-03-20T17:02:04.719465789Z"} +2026/03/20 17:02:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:04.575867389Z"} +2026/03/20 17:02:09 [metric_collector] {"stage_name":"metric_collector","events_processed":819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":163.8,"last_update":"2026-03-20T17:02:04.576300587Z"} +2026/03/20 17:02:09 ───────────────────────────────────────────────── +2026/03/20 17:02:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:09.575917927Z"} +2026/03/20 17:02:14 [metric_collector] {"stage_name":"metric_collector","events_processed":824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":164.8,"last_update":"2026-03-20T17:02:09.576470714Z"} +2026/03/20 17:02:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:09.585536641Z"} +2026/03/20 17:02:14 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":9.202104650670039,"throughput_eps":0,"last_update":"2026-03-20T17:02:09.718826837Z"} +2026/03/20 17:02:14 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":89.91524970405368,"throughput_eps":0,"last_update":"2026-03-20T17:02:09.71883876Z"} +2026/03/20 17:02:14 ───────────────────────────────────────────────── +2026/03/20 17:02:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:14.585213956Z"} +2026/03/20 17:02:19 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":9.202104650670039,"throughput_eps":0,"last_update":"2026-03-20T17:02:14.719583856Z"} +2026/03/20 17:02:19 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":89.91524970405368,"throughput_eps":0,"last_update":"2026-03-20T17:02:14.719596631Z"} +2026/03/20 17:02:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:14.575900775Z"} +2026/03/20 17:02:19 [metric_collector] {"stage_name":"metric_collector","events_processed":829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":165.8,"last_update":"2026-03-20T17:02:14.576258329Z"} +2026/03/20 17:02:19 ───────────────────────────────────────────────── +2026/03/20 17:02:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:19.575856769Z"} +2026/03/20 17:02:24 [metric_collector] {"stage_name":"metric_collector","events_processed":834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":166.8,"last_update":"2026-03-20T17:02:19.576194084Z"} +2026/03/20 17:02:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:19.586460038Z"} +2026/03/20 17:02:24 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":9.202104650670039,"throughput_eps":0,"last_update":"2026-03-20T17:02:19.719718921Z"} +2026/03/20 17:02:24 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":89.91524970405368,"throughput_eps":0,"last_update":"2026-03-20T17:02:19.719725955Z"} +2026/03/20 17:02:24 ───────────────────────────────────────────────── +2026/03/20 17:02:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:29 [metric_collector] {"stage_name":"metric_collector","events_processed":839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":167.8,"last_update":"2026-03-20T17:02:24.576565528Z"} +2026/03/20 17:02:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:24.58503712Z"} +2026/03/20 17:02:29 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":9.202104650670039,"throughput_eps":0,"last_update":"2026-03-20T17:02:24.719268434Z"} +2026/03/20 17:02:29 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":84.77009876324294,"throughput_eps":0,"last_update":"2026-03-20T17:02:24.783602876Z"} +2026/03/20 17:02:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:29.57559238Z"} +2026/03/20 17:02:29 ───────────────────────────────────────────────── +2026/03/20 17:02:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:34 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":9.834080120536033,"throughput_eps":0,"last_update":"2026-03-20T17:02:29.719235774Z"} +2026/03/20 17:02:34 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":84.77009876324294,"throughput_eps":0,"last_update":"2026-03-20T17:02:29.719297973Z"} +2026/03/20 17:02:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:29.57559238Z"} +2026/03/20 17:02:34 [metric_collector] {"stage_name":"metric_collector","events_processed":844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":168.8,"last_update":"2026-03-20T17:02:29.576227244Z"} +2026/03/20 17:02:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:29.584908578Z"} +2026/03/20 17:02:34 ───────────────────────────────────────────────── +2026/03/20 17:02:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:39 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":84.77009876324294,"throughput_eps":0,"last_update":"2026-03-20T17:02:34.719522754Z"} +2026/03/20 17:02:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:34.575555541Z"} +2026/03/20 17:02:39 [metric_collector] {"stage_name":"metric_collector","events_processed":849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":169.8,"last_update":"2026-03-20T17:02:34.575954985Z"} +2026/03/20 17:02:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":342,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:34.586198849Z"} +2026/03/20 17:02:39 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":9.834080120536033,"throughput_eps":0,"last_update":"2026-03-20T17:02:34.719542461Z"} +2026/03/20 17:02:39 ───────────────────────────────────────────────── +2026/03/20 17:02:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:39.575797909Z"} +2026/03/20 17:02:44 [metric_collector] {"stage_name":"metric_collector","events_processed":854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":170.8,"last_update":"2026-03-20T17:02:39.576873456Z"} +2026/03/20 17:02:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:39.586510129Z"} +2026/03/20 17:02:44 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":9.834080120536033,"throughput_eps":0,"last_update":"2026-03-20T17:02:39.718863677Z"} +2026/03/20 17:02:44 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":84.77009876324294,"throughput_eps":0,"last_update":"2026-03-20T17:02:39.71872434Z"} +2026/03/20 17:02:44 ───────────────────────────────────────────────── +2026/03/20 17:02:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:49 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":84.77009876324294,"throughput_eps":0,"last_update":"2026-03-20T17:02:44.719521181Z"} +2026/03/20 17:02:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:44.575560984Z"} +2026/03/20 17:02:49 [metric_collector] {"stage_name":"metric_collector","events_processed":859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":171.8,"last_update":"2026-03-20T17:02:44.575623934Z"} +2026/03/20 17:02:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:44.586289085Z"} +2026/03/20 17:02:49 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":9.834080120536033,"throughput_eps":0,"last_update":"2026-03-20T17:02:44.719608959Z"} +2026/03/20 17:02:49 ───────────────────────────────────────────────── +2026/03/20 17:02:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:49.576055202Z"} +2026/03/20 17:02:54 [metric_collector] {"stage_name":"metric_collector","events_processed":864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":172.8,"last_update":"2026-03-20T17:02:49.576387287Z"} +2026/03/20 17:02:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:49.586262397Z"} +2026/03/20 17:02:54 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":9.834080120536033,"throughput_eps":0,"last_update":"2026-03-20T17:02:49.719555149Z"} +2026/03/20 17:02:54 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":84.77009876324294,"throughput_eps":0,"last_update":"2026-03-20T17:02:49.719521855Z"} +2026/03/20 17:02:54 ───────────────────────────────────────────────── +2026/03/20 17:02:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:54.575635137Z"} +2026/03/20 17:02:59 [metric_collector] {"stage_name":"metric_collector","events_processed":869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":173.8,"last_update":"2026-03-20T17:02:54.576076873Z"} +2026/03/20 17:02:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":350,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:54.586379691Z"} +2026/03/20 17:02:59 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":9.834080120536033,"throughput_eps":0,"last_update":"2026-03-20T17:02:54.719459032Z"} +2026/03/20 17:02:59 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":80.79570821059436,"throughput_eps":0,"last_update":"2026-03-20T17:02:54.78447845Z"} +2026/03/20 17:02:59 ───────────────────────────────────────────────── +2026/03/20 17:03:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:59.575522983Z"} +2026/03/20 17:03:04 [metric_collector] {"stage_name":"metric_collector","events_processed":874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":174.8,"last_update":"2026-03-20T17:02:59.575984966Z"} +2026/03/20 17:03:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:59.586496415Z"} +2026/03/20 17:03:04 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":10.233033896428827,"throughput_eps":0,"last_update":"2026-03-20T17:02:59.719831162Z"} +2026/03/20 17:03:04 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":80.79570821059436,"throughput_eps":0,"last_update":"2026-03-20T17:02:59.718681904Z"} +2026/03/20 17:03:04 ───────────────────────────────────────────────── +2026/03/20 17:03:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:09 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":80.79570821059436,"throughput_eps":0,"last_update":"2026-03-20T17:03:04.719157239Z"} +2026/03/20 17:03:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:04.575663207Z"} +2026/03/20 17:03:09 [metric_collector] {"stage_name":"metric_collector","events_processed":879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":175.8,"last_update":"2026-03-20T17:03:04.575982959Z"} +2026/03/20 17:03:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:04.58564333Z"} +2026/03/20 17:03:09 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":10.233033896428827,"throughput_eps":0,"last_update":"2026-03-20T17:03:04.71914206Z"} +2026/03/20 17:03:09 ───────────────────────────────────────────────── +2026/03/20 17:03:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:14 [metric_collector] {"stage_name":"metric_collector","events_processed":884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":176.8,"last_update":"2026-03-20T17:03:09.576140424Z"} +2026/03/20 17:03:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:09.585223531Z"} +2026/03/20 17:03:14 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":10.233033896428827,"throughput_eps":0,"last_update":"2026-03-20T17:03:09.719620329Z"} +2026/03/20 17:03:14 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":80.79570821059436,"throughput_eps":0,"last_update":"2026-03-20T17:03:09.719633043Z"} +2026/03/20 17:03:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:09.57576171Z"} +2026/03/20 17:03:14 ───────────────────────────────────────────────── +2026/03/20 17:03:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:14.575957943Z"} +2026/03/20 17:03:19 [metric_collector] {"stage_name":"metric_collector","events_processed":889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":177.8,"last_update":"2026-03-20T17:03:14.57626977Z"} +2026/03/20 17:03:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:14.586275714Z"} +2026/03/20 17:03:19 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":10.233033896428827,"throughput_eps":0,"last_update":"2026-03-20T17:03:14.719480146Z"} +2026/03/20 17:03:19 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":80.79570821059436,"throughput_eps":0,"last_update":"2026-03-20T17:03:14.719456721Z"} +2026/03/20 17:03:19 ───────────────────────────────────────────────── +2026/03/20 17:03:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:19.575715385Z"} +2026/03/20 17:03:24 [metric_collector] {"stage_name":"metric_collector","events_processed":894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":178.8,"last_update":"2026-03-20T17:03:19.576173812Z"} +2026/03/20 17:03:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":360,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:19.586097438Z"} +2026/03/20 17:03:24 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":10.233033896428827,"throughput_eps":0,"last_update":"2026-03-20T17:03:19.71956895Z"} +2026/03/20 17:03:24 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":80.79570821059436,"throughput_eps":0,"last_update":"2026-03-20T17:03:19.719509086Z"} +2026/03/20 17:03:24 ───────────────────────────────────────────────── +2026/03/20 17:03:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:24.585258206Z"} +2026/03/20 17:03:29 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":10.233033896428827,"throughput_eps":0,"last_update":"2026-03-20T17:03:24.719485842Z"} +2026/03/20 17:03:29 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":77.2287629684755,"throughput_eps":0,"last_update":"2026-03-20T17:03:24.782512812Z"} +2026/03/20 17:03:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:24.575658047Z"} +2026/03/20 17:03:29 [metric_collector] {"stage_name":"metric_collector","events_processed":899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":179.8,"last_update":"2026-03-20T17:03:24.575975615Z"} +2026/03/20 17:03:29 ───────────────────────────────────────────────── +2026/03/20 17:03:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:29.575803182Z"} +2026/03/20 17:03:34 [metric_collector] {"stage_name":"metric_collector","events_processed":904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":180.8,"last_update":"2026-03-20T17:03:29.576002673Z"} +2026/03/20 17:03:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:29.586547509Z"} +2026/03/20 17:03:34 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":10.668866717143061,"throughput_eps":0,"last_update":"2026-03-20T17:03:29.718787471Z"} +2026/03/20 17:03:34 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":77.2287629684755,"throughput_eps":0,"last_update":"2026-03-20T17:03:29.718778533Z"} +2026/03/20 17:03:34 ───────────────────────────────────────────────── +2026/03/20 17:03:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:39 [metric_collector] {"stage_name":"metric_collector","events_processed":909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":181.8,"last_update":"2026-03-20T17:03:34.575789623Z"} +2026/03/20 17:03:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:34.587231886Z"} +2026/03/20 17:03:39 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":10.668866717143061,"throughput_eps":0,"last_update":"2026-03-20T17:03:34.719810083Z"} +2026/03/20 17:03:39 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":77.2287629684755,"throughput_eps":0,"last_update":"2026-03-20T17:03:34.719690334Z"} +2026/03/20 17:03:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:34.575493747Z"} +2026/03/20 17:03:39 ───────────────────────────────────────────────── +2026/03/20 17:03:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:44 [metric_collector] {"stage_name":"metric_collector","events_processed":914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":182.8,"last_update":"2026-03-20T17:03:39.575853171Z"} +2026/03/20 17:03:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:39.585955751Z"} +2026/03/20 17:03:44 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":10.668866717143061,"throughput_eps":0,"last_update":"2026-03-20T17:03:39.719308728Z"} +2026/03/20 17:03:44 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":77.2287629684755,"throughput_eps":0,"last_update":"2026-03-20T17:03:39.719321402Z"} +2026/03/20 17:03:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:39.575555341Z"} +2026/03/20 17:03:44 ───────────────────────────────────────────────── +2026/03/20 17:03:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:44.575838092Z"} +2026/03/20 17:03:49 [metric_collector] {"stage_name":"metric_collector","events_processed":919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":183.8,"last_update":"2026-03-20T17:03:44.576175919Z"} +2026/03/20 17:03:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:44.586229216Z"} +2026/03/20 17:03:49 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":10.668866717143061,"throughput_eps":0,"last_update":"2026-03-20T17:03:44.719495564Z"} +2026/03/20 17:03:49 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":77.2287629684755,"throughput_eps":0,"last_update":"2026-03-20T17:03:44.71950844Z"} +2026/03/20 17:03:49 ───────────────────────────────────────────────── +2026/03/20 17:03:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:49.575893051Z"} +2026/03/20 17:03:54 [metric_collector] {"stage_name":"metric_collector","events_processed":924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":184.8,"last_update":"2026-03-20T17:03:49.576677242Z"} +2026/03/20 17:03:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:49.585231731Z"} +2026/03/20 17:03:54 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":10.668866717143061,"throughput_eps":0,"last_update":"2026-03-20T17:03:49.719470989Z"} +2026/03/20 17:03:54 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":77.2287629684755,"throughput_eps":0,"last_update":"2026-03-20T17:03:49.719478723Z"} +2026/03/20 17:03:54 ───────────────────────────────────────────────── +2026/03/20 17:03:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:54.586304017Z"} +2026/03/20 17:03:59 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":10.668866717143061,"throughput_eps":0,"last_update":"2026-03-20T17:03:54.71964884Z"} +2026/03/20 17:03:59 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":73.8666219747804,"throughput_eps":0,"last_update":"2026-03-20T17:03:54.78007828Z"} +2026/03/20 17:03:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:54.575764468Z"} +2026/03/20 17:03:59 [metric_collector] {"stage_name":"metric_collector","events_processed":929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":185.8,"last_update":"2026-03-20T17:03:54.575685146Z"} +2026/03/20 17:03:59 ───────────────────────────────────────────────── +2026/03/20 17:04:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:04 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":10.86302797371445,"throughput_eps":0,"last_update":"2026-03-20T17:03:59.719043709Z"} +2026/03/20 17:04:04 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":73.8666219747804,"throughput_eps":0,"last_update":"2026-03-20T17:03:59.719049711Z"} +2026/03/20 17:04:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:59.575868877Z"} +2026/03/20 17:04:04 [metric_collector] {"stage_name":"metric_collector","events_processed":934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":186.8,"last_update":"2026-03-20T17:03:59.576179391Z"} +2026/03/20 17:04:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:59.584643589Z"} +2026/03/20 17:04:04 ───────────────────────────────────────────────── +2026/03/20 17:04:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:09 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":10.86302797371445,"throughput_eps":0,"last_update":"2026-03-20T17:04:04.719206795Z"} +2026/03/20 17:04:09 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":73.8666219747804,"throughput_eps":0,"last_update":"2026-03-20T17:04:04.719214731Z"} +2026/03/20 17:04:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:04.575663549Z"} +2026/03/20 17:04:09 [metric_collector] {"stage_name":"metric_collector","events_processed":939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":187.8,"last_update":"2026-03-20T17:04:04.576038047Z"} +2026/03/20 17:04:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:04.58698711Z"} +2026/03/20 17:04:09 ───────────────────────────────────────────────── +2026/03/20 17:04:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:09.575810357Z"} +2026/03/20 17:04:14 [metric_collector] {"stage_name":"metric_collector","events_processed":944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":188.8,"last_update":"2026-03-20T17:04:09.576110571Z"} +2026/03/20 17:04:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":380,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:09.586661353Z"} +2026/03/20 17:04:14 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":10.86302797371445,"throughput_eps":0,"last_update":"2026-03-20T17:04:09.718890383Z"} +2026/03/20 17:04:14 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":73.8666219747804,"throughput_eps":0,"last_update":"2026-03-20T17:04:09.718896095Z"} +2026/03/20 17:04:14 ───────────────────────────────────────────────── +2026/03/20 17:04:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:19 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":73.8666219747804,"throughput_eps":0,"last_update":"2026-03-20T17:04:14.719070762Z"} +2026/03/20 17:04:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:14.57605958Z"} +2026/03/20 17:04:19 [metric_collector] {"stage_name":"metric_collector","events_processed":949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":189.8,"last_update":"2026-03-20T17:04:14.576416934Z"} +2026/03/20 17:04:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:14.585800823Z"} +2026/03/20 17:04:19 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":10.86302797371445,"throughput_eps":0,"last_update":"2026-03-20T17:04:14.719065312Z"} +2026/03/20 17:04:19 ───────────────────────────────────────────────── +2026/03/20 17:04:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:19.575780959Z"} +2026/03/20 17:04:24 [metric_collector] {"stage_name":"metric_collector","events_processed":954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":190.8,"last_update":"2026-03-20T17:04:19.576557765Z"} +2026/03/20 17:04:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:19.586291716Z"} +2026/03/20 17:04:24 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":10.86302797371445,"throughput_eps":0,"last_update":"2026-03-20T17:04:19.719509973Z"} +2026/03/20 17:04:24 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":73.8666219747804,"throughput_eps":0,"last_update":"2026-03-20T17:04:19.719517667Z"} +2026/03/20 17:04:24 ───────────────────────────────────────────────── +2026/03/20 17:04:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:24.585487364Z"} +2026/03/20 17:04:29 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":10.86302797371445,"throughput_eps":0,"last_update":"2026-03-20T17:04:24.719814811Z"} +2026/03/20 17:04:29 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":81.70124017982432,"throughput_eps":0,"last_update":"2026-03-20T17:04:24.831748146Z"} +2026/03/20 17:04:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:24.576042637Z"} +2026/03/20 17:04:29 [metric_collector] {"stage_name":"metric_collector","events_processed":959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":191.8,"last_update":"2026-03-20T17:04:24.576332001Z"} +2026/03/20 17:04:29 ───────────────────────────────────────────────── +2026/03/20 17:04:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:29.575567543Z"} +2026/03/20 17:04:34 [metric_collector] {"stage_name":"metric_collector","events_processed":964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":192.8,"last_update":"2026-03-20T17:04:29.575706238Z"} +2026/03/20 17:04:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":388,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:29.585586881Z"} +2026/03/20 17:04:34 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":11.15847997897156,"throughput_eps":0,"last_update":"2026-03-20T17:04:29.718810551Z"} +2026/03/20 17:04:34 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":81.70124017982432,"throughput_eps":0,"last_update":"2026-03-20T17:04:29.718826151Z"} +2026/03/20 17:04:34 ───────────────────────────────────────────────── +2026/03/20 17:04:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:39 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":81.70124017982432,"throughput_eps":0,"last_update":"2026-03-20T17:04:34.71893824Z"} +2026/03/20 17:04:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:34.575569353Z"} +2026/03/20 17:04:39 [metric_collector] {"stage_name":"metric_collector","events_processed":969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":193.8,"last_update":"2026-03-20T17:04:34.576379073Z"} +2026/03/20 17:04:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":390,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:34.585675336Z"} +2026/03/20 17:04:39 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":11.15847997897156,"throughput_eps":0,"last_update":"2026-03-20T17:04:34.718930095Z"} +2026/03/20 17:04:39 ───────────────────────────────────────────────── +2026/03/20 17:04:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:39.575881784Z"} +2026/03/20 17:04:44 [metric_collector] {"stage_name":"metric_collector","events_processed":974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":194.8,"last_update":"2026-03-20T17:04:39.576297851Z"} +2026/03/20 17:04:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:39.585585338Z"} +2026/03/20 17:04:44 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":11.15847997897156,"throughput_eps":0,"last_update":"2026-03-20T17:04:39.71884367Z"} +2026/03/20 17:04:44 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":81.70124017982432,"throughput_eps":0,"last_update":"2026-03-20T17:04:39.718855472Z"} +2026/03/20 17:04:44 ───────────────────────────────────────────────── +2026/03/20 17:04:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:44.575852944Z"} +2026/03/20 17:04:49 [metric_collector] {"stage_name":"metric_collector","events_processed":979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":195.8,"last_update":"2026-03-20T17:04:44.576177536Z"} +2026/03/20 17:04:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:44.584805601Z"} +2026/03/20 17:04:49 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":11.15847997897156,"throughput_eps":0,"last_update":"2026-03-20T17:04:44.719037894Z"} +2026/03/20 17:04:49 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":81.70124017982432,"throughput_eps":0,"last_update":"2026-03-20T17:04:44.719048234Z"} +2026/03/20 17:04:49 ───────────────────────────────────────────────── +2026/03/20 17:04:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:49.57605576Z"} +2026/03/20 17:04:54 [metric_collector] {"stage_name":"metric_collector","events_processed":984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":196.8,"last_update":"2026-03-20T17:04:49.576805996Z"} +2026/03/20 17:04:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:49.585139619Z"} +2026/03/20 17:04:54 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":11.15847997897156,"throughput_eps":0,"last_update":"2026-03-20T17:04:49.719584093Z"} +2026/03/20 17:04:54 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":81.70124017982432,"throughput_eps":0,"last_update":"2026-03-20T17:04:49.71959791Z"} +2026/03/20 17:04:54 ───────────────────────────────────────────────── +2026/03/20 17:04:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:54.57597976Z"} +2026/03/20 17:04:59 [metric_collector] {"stage_name":"metric_collector","events_processed":989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":197.8,"last_update":"2026-03-20T17:04:54.576264917Z"} +2026/03/20 17:04:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:54.585003123Z"} +2026/03/20 17:04:59 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":11.15847997897156,"throughput_eps":0,"last_update":"2026-03-20T17:04:54.719403601Z"} +2026/03/20 17:04:59 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":87.40977334385947,"throughput_eps":0,"last_update":"2026-03-20T17:04:54.829664099Z"} +2026/03/20 17:04:59 ───────────────────────────────────────────────── +2026/03/20 17:05:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:04 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":87.40977334385947,"throughput_eps":0,"last_update":"2026-03-20T17:04:59.719128053Z"} +2026/03/20 17:05:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:59.575545973Z"} +2026/03/20 17:05:04 [metric_collector] {"stage_name":"metric_collector","events_processed":994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":198.8,"last_update":"2026-03-20T17:04:59.575756175Z"} +2026/03/20 17:05:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":400,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:59.585750798Z"} +2026/03/20 17:05:04 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":11.57642818317725,"throughput_eps":0,"last_update":"2026-03-20T17:04:59.719113606Z"} +2026/03/20 17:05:04 ───────────────────────────────────────────────── +2026/03/20 17:05:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:04.576416155Z"} +2026/03/20 17:05:09 [metric_collector] {"stage_name":"metric_collector","events_processed":999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":199.8,"last_update":"2026-03-20T17:05:04.576854765Z"} +2026/03/20 17:05:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":402,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:04.585961699Z"} +2026/03/20 17:05:09 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":11.57642818317725,"throughput_eps":0,"last_update":"2026-03-20T17:05:04.719209102Z"} +2026/03/20 17:05:09 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":87.40977334385947,"throughput_eps":0,"last_update":"2026-03-20T17:05:04.719221146Z"} +2026/03/20 17:05:09 ───────────────────────────────────────────────── +2026/03/20 17:05:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:14 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":11.57642818317725,"throughput_eps":0,"last_update":"2026-03-20T17:05:09.719018353Z"} +2026/03/20 17:05:14 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":87.40977334385947,"throughput_eps":0,"last_update":"2026-03-20T17:05:09.719030627Z"} +2026/03/20 17:05:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:09.575555756Z"} +2026/03/20 17:05:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":200.8,"last_update":"2026-03-20T17:05:09.575903021Z"} +2026/03/20 17:05:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:09.585639211Z"} +2026/03/20 17:05:14 ───────────────────────────────────────────────── +2026/03/20 17:05:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:14.584911525Z"} +2026/03/20 17:05:19 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":11.57642818317725,"throughput_eps":0,"last_update":"2026-03-20T17:05:14.719303283Z"} +2026/03/20 17:05:19 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":87.40977334385947,"throughput_eps":0,"last_update":"2026-03-20T17:05:14.719318431Z"} +2026/03/20 17:05:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:14.576201911Z"} +2026/03/20 17:05:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":201.8,"last_update":"2026-03-20T17:05:14.576758948Z"} +2026/03/20 17:05:19 ───────────────────────────────────────────────── +2026/03/20 17:05:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:24 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":87.40977334385947,"throughput_eps":0,"last_update":"2026-03-20T17:05:19.719070668Z"} +2026/03/20 17:05:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:19.575517565Z"} +2026/03/20 17:05:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":202.8,"last_update":"2026-03-20T17:05:19.575626404Z"} +2026/03/20 17:05:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":408,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:19.584732458Z"} +2026/03/20 17:05:24 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":11.57642818317725,"throughput_eps":0,"last_update":"2026-03-20T17:05:19.71906078Z"} +2026/03/20 17:05:24 ───────────────────────────────────────────────── +2026/03/20 17:05:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:24.57568769Z"} +2026/03/20 17:05:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":203.8,"last_update":"2026-03-20T17:05:24.575979388Z"} +2026/03/20 17:05:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:24.586257537Z"} +2026/03/20 17:05:29 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":11.57642818317725,"throughput_eps":0,"last_update":"2026-03-20T17:05:24.71966952Z"} +2026/03/20 17:05:29 [transform_engine] {"stage_name":"transform_engine","events_processed":34,"events_dropped":0,"avg_latency_ms":92.53910307508758,"throughput_eps":0,"last_update":"2026-03-20T17:05:24.832748295Z"} +2026/03/20 17:05:29 ───────────────────────────────────────────────── +2026/03/20 17:05:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:29.575566379Z"} +2026/03/20 17:05:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":204.8,"last_update":"2026-03-20T17:05:29.576186135Z"} +2026/03/20 17:05:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:29.586797432Z"} +2026/03/20 17:05:34 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":11.892578546541799,"throughput_eps":0,"last_update":"2026-03-20T17:05:29.719079829Z"} +2026/03/20 17:05:34 [transform_engine] {"stage_name":"transform_engine","events_processed":34,"events_dropped":0,"avg_latency_ms":92.53910307508758,"throughput_eps":0,"last_update":"2026-03-20T17:05:29.719093195Z"} +2026/03/20 17:05:34 ───────────────────────────────────────────────── +2026/03/20 17:05:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":205.8,"last_update":"2026-03-20T17:05:34.576191117Z"} +2026/03/20 17:05:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:34.584790391Z"} +2026/03/20 17:05:39 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":11.892578546541799,"throughput_eps":0,"last_update":"2026-03-20T17:05:34.719085138Z"} +2026/03/20 17:05:39 [transform_engine] {"stage_name":"transform_engine","events_processed":34,"events_dropped":0,"avg_latency_ms":92.53910307508758,"throughput_eps":0,"last_update":"2026-03-20T17:05:34.719095008Z"} +2026/03/20 17:05:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:34.576285568Z"} +2026/03/20 17:05:39 ───────────────────────────────────────────────── +2026/03/20 17:05:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":206.8,"last_update":"2026-03-20T17:05:39.576683902Z"} +2026/03/20 17:05:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:39.585017979Z"} +2026/03/20 17:05:44 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":11.892578546541799,"throughput_eps":0,"last_update":"2026-03-20T17:05:39.719342058Z"} +2026/03/20 17:05:44 [transform_engine] {"stage_name":"transform_engine","events_processed":34,"events_dropped":0,"avg_latency_ms":92.53910307508758,"throughput_eps":0,"last_update":"2026-03-20T17:05:39.719387133Z"} +2026/03/20 17:05:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:39.575935669Z"} +2026/03/20 17:05:44 ───────────────────────────────────────────────── +2026/03/20 17:05:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:44.57568822Z"} +2026/03/20 17:05:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":207.8,"last_update":"2026-03-20T17:05:44.575992993Z"} +2026/03/20 17:05:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:44.58672363Z"} +2026/03/20 17:05:49 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":11.892578546541799,"throughput_eps":0,"last_update":"2026-03-20T17:05:44.718963895Z"} +2026/03/20 17:05:49 [transform_engine] {"stage_name":"transform_engine","events_processed":34,"events_dropped":0,"avg_latency_ms":92.53910307508758,"throughput_eps":0,"last_update":"2026-03-20T17:05:44.718972751Z"} +2026/03/20 17:05:49 ───────────────────────────────────────────────── +2026/03/20 17:05:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:54.575535127Z"} +2026/03/20 17:05:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":208.8,"last_update":"2026-03-20T17:05:49.576272739Z"} +2026/03/20 17:05:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":420,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:49.584536393Z"} +2026/03/20 17:05:54 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":11.892578546541799,"throughput_eps":0,"last_update":"2026-03-20T17:05:49.719837415Z"} +2026/03/20 17:05:54 [transform_engine] {"stage_name":"transform_engine","events_processed":34,"events_dropped":0,"avg_latency_ms":92.53910307508758,"throughput_eps":0,"last_update":"2026-03-20T17:05:49.718714594Z"} +2026/03/20 17:05:54 ───────────────────────────────────────────────── +2026/03/20 17:05:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:54.586257057Z"} +2026/03/20 17:05:59 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":11.892578546541799,"throughput_eps":0,"last_update":"2026-03-20T17:05:54.719563866Z"} +2026/03/20 17:05:59 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":86.62396686007008,"throughput_eps":0,"last_update":"2026-03-20T17:05:54.782536447Z"} +2026/03/20 17:05:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:54.575535127Z"} +2026/03/20 17:05:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":209.8,"last_update":"2026-03-20T17:05:54.576153631Z"} +2026/03/20 17:05:59 ───────────────────────────────────────────────── +2026/03/20 17:06:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:59.575926826Z"} +2026/03/20 17:06:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":210.8,"last_update":"2026-03-20T17:05:59.576696329Z"} +2026/03/20 17:06:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:59.584591437Z"} +2026/03/20 17:06:04 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":11.820831837233438,"throughput_eps":0,"last_update":"2026-03-20T17:05:59.71881656Z"} +2026/03/20 17:06:04 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":86.62396686007008,"throughput_eps":0,"last_update":"2026-03-20T17:05:59.718960676Z"} +2026/03/20 17:06:04 ───────────────────────────────────────────────── +2026/03/20 17:06:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:04.587408378Z"} +2026/03/20 17:06:09 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":11.820831837233438,"throughput_eps":0,"last_update":"2026-03-20T17:06:04.719703321Z"} +2026/03/20 17:06:09 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":86.62396686007008,"throughput_eps":0,"last_update":"2026-03-20T17:06:04.719763246Z"} +2026/03/20 17:06:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:04.575600598Z"} +2026/03/20 17:06:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":211.8,"last_update":"2026-03-20T17:06:04.575967982Z"} +2026/03/20 17:06:09 ───────────────────────────────────────────────── +2026/03/20 17:06:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:09.575491338Z"} +2026/03/20 17:06:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":212.8,"last_update":"2026-03-20T17:06:09.575872598Z"} +2026/03/20 17:06:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:09.586002958Z"} +2026/03/20 17:06:14 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":11.820831837233438,"throughput_eps":0,"last_update":"2026-03-20T17:06:09.719506119Z"} +2026/03/20 17:06:14 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":86.62396686007008,"throughput_eps":0,"last_update":"2026-03-20T17:06:09.719389967Z"} +2026/03/20 17:06:14 ───────────────────────────────────────────────── +2026/03/20 17:06:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:14.575560726Z"} +2026/03/20 17:06:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":213.8,"last_update":"2026-03-20T17:06:14.575892632Z"} +2026/03/20 17:06:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:14.584829827Z"} +2026/03/20 17:06:19 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":11.820831837233438,"throughput_eps":0,"last_update":"2026-03-20T17:06:14.719226315Z"} +2026/03/20 17:06:19 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":86.62396686007008,"throughput_eps":0,"last_update":"2026-03-20T17:06:14.719201397Z"} +2026/03/20 17:06:19 ───────────────────────────────────────────────── +2026/03/20 17:06:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:24 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":11.820831837233438,"throughput_eps":0,"last_update":"2026-03-20T17:06:19.719293144Z"} +2026/03/20 17:06:24 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":86.62396686007008,"throughput_eps":0,"last_update":"2026-03-20T17:06:19.719181439Z"} +2026/03/20 17:06:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:19.57593567Z"} +2026/03/20 17:06:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":214.8,"last_update":"2026-03-20T17:06:19.576303033Z"} +2026/03/20 17:06:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:19.585790722Z"} +2026/03/20 17:06:24 ───────────────────────────────────────────────── +2026/03/20 17:06:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:29 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":11.820831837233438,"throughput_eps":0,"last_update":"2026-03-20T17:06:24.719470361Z"} +2026/03/20 17:06:29 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":82.42505248805607,"throughput_eps":0,"last_update":"2026-03-20T17:06:24.785156105Z"} +2026/03/20 17:06:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:24.575537729Z"} +2026/03/20 17:06:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":215.8,"last_update":"2026-03-20T17:06:24.575686134Z"} +2026/03/20 17:06:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:24.586069178Z"} +2026/03/20 17:06:29 ───────────────────────────────────────────────── +2026/03/20 17:06:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:29.585523473Z"} +2026/03/20 17:06:34 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":12.116314869786752,"throughput_eps":0,"last_update":"2026-03-20T17:06:29.718814421Z"} +2026/03/20 17:06:34 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":82.42505248805607,"throughput_eps":0,"last_update":"2026-03-20T17:06:29.718702888Z"} +2026/03/20 17:06:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:29.575861278Z"} +2026/03/20 17:06:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":216.8,"last_update":"2026-03-20T17:06:29.5762797Z"} +2026/03/20 17:06:34 ───────────────────────────────────────────────── +2026/03/20 17:06:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:34.575560027Z"} +2026/03/20 17:06:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":217.8,"last_update":"2026-03-20T17:06:34.57602654Z"} +2026/03/20 17:06:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:34.587055242Z"} +2026/03/20 17:06:39 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":12.116314869786752,"throughput_eps":0,"last_update":"2026-03-20T17:06:34.719219508Z"} +2026/03/20 17:06:39 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":82.42505248805607,"throughput_eps":0,"last_update":"2026-03-20T17:06:34.719247111Z"} +2026/03/20 17:06:39 ───────────────────────────────────────────────── +2026/03/20 17:06:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:39.585271063Z"} +2026/03/20 17:06:44 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":12.116314869786752,"throughput_eps":0,"last_update":"2026-03-20T17:06:39.719515849Z"} +2026/03/20 17:06:44 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":82.42505248805607,"throughput_eps":0,"last_update":"2026-03-20T17:06:39.719642661Z"} +2026/03/20 17:06:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:39.575843296Z"} +2026/03/20 17:06:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":218.8,"last_update":"2026-03-20T17:06:39.576324187Z"} +2026/03/20 17:06:44 ───────────────────────────────────────────────── +2026/03/20 17:06:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:44.575681274Z"} +2026/03/20 17:06:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":219.8,"last_update":"2026-03-20T17:06:44.57602414Z"} +2026/03/20 17:06:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":442,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:44.585896278Z"} +2026/03/20 17:06:49 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":12.116314869786752,"throughput_eps":0,"last_update":"2026-03-20T17:06:44.719304026Z"} +2026/03/20 17:06:49 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":82.42505248805607,"throughput_eps":0,"last_update":"2026-03-20T17:06:44.71927998Z"} +2026/03/20 17:06:49 ───────────────────────────────────────────────── +2026/03/20 17:06:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:49.575683717Z"} +2026/03/20 17:06:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":220.8,"last_update":"2026-03-20T17:06:49.576056912Z"} +2026/03/20 17:06:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:49.586071623Z"} +2026/03/20 17:06:54 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":12.116314869786752,"throughput_eps":0,"last_update":"2026-03-20T17:06:49.719440751Z"} +2026/03/20 17:06:54 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":82.42505248805607,"throughput_eps":0,"last_update":"2026-03-20T17:06:49.71940862Z"} +2026/03/20 17:06:54 ───────────────────────────────────────────────── +2026/03/20 17:06:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:54.575842627Z"} +2026/03/20 17:06:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":221.8,"last_update":"2026-03-20T17:06:54.576616609Z"} +2026/03/20 17:06:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":446,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:54.586609119Z"} +2026/03/20 17:06:59 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":12.116314869786752,"throughput_eps":0,"last_update":"2026-03-20T17:06:54.718842758Z"} +2026/03/20 17:06:59 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":78.44717919044486,"throughput_eps":0,"last_update":"2026-03-20T17:06:54.781497222Z"} +2026/03/20 17:06:59 ───────────────────────────────────────────────── +2026/03/20 17:07:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:59.57574551Z"} +2026/03/20 17:07:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":222.8,"last_update":"2026-03-20T17:06:59.576099568Z"} +2026/03/20 17:07:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:59.587026096Z"} +2026/03/20 17:07:04 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.228620895829403,"throughput_eps":0,"last_update":"2026-03-20T17:06:59.719451167Z"} +2026/03/20 17:07:04 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":78.44717919044486,"throughput_eps":0,"last_update":"2026-03-20T17:06:59.719419256Z"} +2026/03/20 17:07:04 ───────────────────────────────────────────────── +2026/03/20 17:07:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":223.8,"last_update":"2026-03-20T17:07:04.575718911Z"} +2026/03/20 17:07:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:04.585965638Z"} +2026/03/20 17:07:09 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.228620895829403,"throughput_eps":0,"last_update":"2026-03-20T17:07:04.719304826Z"} +2026/03/20 17:07:09 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":78.44717919044486,"throughput_eps":0,"last_update":"2026-03-20T17:07:04.719317149Z"} +2026/03/20 17:07:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:04.575598351Z"} +2026/03/20 17:07:09 ───────────────────────────────────────────────── +2026/03/20 17:07:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:09.575720658Z"} +2026/03/20 17:07:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":224.8,"last_update":"2026-03-20T17:07:09.576073173Z"} +2026/03/20 17:07:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":452,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:09.587393487Z"} +2026/03/20 17:07:14 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.228620895829403,"throughput_eps":0,"last_update":"2026-03-20T17:07:09.719625168Z"} +2026/03/20 17:07:14 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":78.44717919044486,"throughput_eps":0,"last_update":"2026-03-20T17:07:09.719632322Z"} +2026/03/20 17:07:14 ───────────────────────────────────────────────── +2026/03/20 17:07:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:19 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.228620895829403,"throughput_eps":0,"last_update":"2026-03-20T17:07:14.719253272Z"} +2026/03/20 17:07:19 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":78.44717919044486,"throughput_eps":0,"last_update":"2026-03-20T17:07:14.719261027Z"} +2026/03/20 17:07:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:14.575523191Z"} +2026/03/20 17:07:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":225.8,"last_update":"2026-03-20T17:07:14.575645065Z"} +2026/03/20 17:07:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:14.58600528Z"} +2026/03/20 17:07:19 ───────────────────────────────────────────────── +2026/03/20 17:07:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:19.58686201Z"} +2026/03/20 17:07:24 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.228620895829403,"throughput_eps":0,"last_update":"2026-03-20T17:07:19.719175218Z"} +2026/03/20 17:07:24 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":78.44717919044486,"throughput_eps":0,"last_update":"2026-03-20T17:07:19.719181891Z"} +2026/03/20 17:07:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:19.575738915Z"} +2026/03/20 17:07:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":226.8,"last_update":"2026-03-20T17:07:19.576108682Z"} +2026/03/20 17:07:24 ───────────────────────────────────────────────── +2026/03/20 17:07:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:24.575512575Z"} +2026/03/20 17:07:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":227.8,"last_update":"2026-03-20T17:07:24.575829331Z"} +2026/03/20 17:07:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:24.585762259Z"} +2026/03/20 17:07:29 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.228620895829403,"throughput_eps":0,"last_update":"2026-03-20T17:07:24.719069965Z"} +2026/03/20 17:07:29 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":84.71616535235589,"throughput_eps":0,"last_update":"2026-03-20T17:07:24.828871885Z"} +2026/03/20 17:07:29 ───────────────────────────────────────────────── +2026/03/20 17:07:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:29.576054672Z"} +2026/03/20 17:07:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":228.8,"last_update":"2026-03-20T17:07:29.576412798Z"} +2026/03/20 17:07:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:29.584500711Z"} +2026/03/20 17:07:34 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":11.607522316663523,"throughput_eps":0,"last_update":"2026-03-20T17:07:29.718798409Z"} +2026/03/20 17:07:34 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":84.71616535235589,"throughput_eps":0,"last_update":"2026-03-20T17:07:29.71875705Z"} +2026/03/20 17:07:34 ───────────────────────────────────────────────── +2026/03/20 17:07:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:34.587299684Z"} +2026/03/20 17:07:39 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":11.607522316663523,"throughput_eps":0,"last_update":"2026-03-20T17:07:34.719582367Z"} +2026/03/20 17:07:39 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":84.71616535235589,"throughput_eps":0,"last_update":"2026-03-20T17:07:34.719605943Z"} +2026/03/20 17:07:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:34.576033122Z"} +2026/03/20 17:07:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":229.8,"last_update":"2026-03-20T17:07:34.576014616Z"} +2026/03/20 17:07:39 ───────────────────────────────────────────────── +2026/03/20 17:07:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:39.575857927Z"} +2026/03/20 17:07:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":230.8,"last_update":"2026-03-20T17:07:39.576628573Z"} +2026/03/20 17:07:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:39.58582992Z"} +2026/03/20 17:07:44 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":11.607522316663523,"throughput_eps":0,"last_update":"2026-03-20T17:07:39.719019145Z"} +2026/03/20 17:07:44 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":84.71616535235589,"throughput_eps":0,"last_update":"2026-03-20T17:07:39.719119838Z"} +2026/03/20 17:07:44 ───────────────────────────────────────────────── +2026/03/20 17:07:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:44.586612169Z"} +2026/03/20 17:07:49 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":11.607522316663523,"throughput_eps":0,"last_update":"2026-03-20T17:07:44.718789158Z"} +2026/03/20 17:07:49 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":84.71616535235589,"throughput_eps":0,"last_update":"2026-03-20T17:07:44.718781684Z"} +2026/03/20 17:07:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:44.575930595Z"} +2026/03/20 17:07:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":231.8,"last_update":"2026-03-20T17:07:44.576529853Z"} +2026/03/20 17:07:49 ───────────────────────────────────────────────── +2026/03/20 17:07:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:49.575517521Z"} +2026/03/20 17:07:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":232.8,"last_update":"2026-03-20T17:07:49.575845029Z"} +2026/03/20 17:07:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:49.585529261Z"} +2026/03/20 17:07:54 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":11.607522316663523,"throughput_eps":0,"last_update":"2026-03-20T17:07:49.719840043Z"} +2026/03/20 17:07:54 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":84.71616535235589,"throughput_eps":0,"last_update":"2026-03-20T17:07:49.718673068Z"} +2026/03/20 17:07:54 ───────────────────────────────────────────────── +2026/03/20 17:07:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:54.575972113Z"} +2026/03/20 17:07:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":233.8,"last_update":"2026-03-20T17:07:54.576536073Z"} +2026/03/20 17:07:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":470,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:54.588314268Z"} +2026/03/20 17:07:59 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":11.607522316663523,"throughput_eps":0,"last_update":"2026-03-20T17:07:54.719528503Z"} +2026/03/20 17:07:59 [transform_engine] {"stage_name":"transform_engine","events_processed":39,"events_dropped":0,"avg_latency_ms":80.73669968188472,"throughput_eps":0,"last_update":"2026-03-20T17:07:54.78447763Z"} +2026/03/20 17:07:59 ───────────────────────────────────────────────── +2026/03/20 17:08:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:59.576164887Z"} +2026/03/20 17:08:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":234.8,"last_update":"2026-03-20T17:07:59.576324392Z"} +2026/03/20 17:08:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:59.586656716Z"} +2026/03/20 17:08:04 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":11.954327653330818,"throughput_eps":0,"last_update":"2026-03-20T17:07:59.719139066Z"} +2026/03/20 17:08:04 [transform_engine] {"stage_name":"transform_engine","events_processed":39,"events_dropped":0,"avg_latency_ms":80.73669968188472,"throughput_eps":0,"last_update":"2026-03-20T17:07:59.719254827Z"} +2026/03/20 17:08:04 ───────────────────────────────────────────────── +2026/03/20 17:08:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:04.575498204Z"} +2026/03/20 17:08:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":235.8,"last_update":"2026-03-20T17:08:04.576205469Z"} +2026/03/20 17:08:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:04.585558167Z"} +2026/03/20 17:08:09 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":11.954327653330818,"throughput_eps":0,"last_update":"2026-03-20T17:08:04.718852047Z"} +2026/03/20 17:08:09 [transform_engine] {"stage_name":"transform_engine","events_processed":39,"events_dropped":0,"avg_latency_ms":80.73669968188472,"throughput_eps":0,"last_update":"2026-03-20T17:08:04.718740001Z"} +2026/03/20 17:08:09 ───────────────────────────────────────────────── +2026/03/20 17:08:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:09.575759894Z"} +2026/03/20 17:08:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":236.8,"last_update":"2026-03-20T17:08:09.576139841Z"} +2026/03/20 17:08:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":476,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:09.584952655Z"} +2026/03/20 17:08:14 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":11.954327653330818,"throughput_eps":0,"last_update":"2026-03-20T17:08:09.719309714Z"} +2026/03/20 17:08:14 [transform_engine] {"stage_name":"transform_engine","events_processed":39,"events_dropped":0,"avg_latency_ms":80.73669968188472,"throughput_eps":0,"last_update":"2026-03-20T17:08:09.719206637Z"} +2026/03/20 17:08:14 ───────────────────────────────────────────────── +2026/03/20 17:08:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:14.585598477Z"} +2026/03/20 17:08:19 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":11.954327653330818,"throughput_eps":0,"last_update":"2026-03-20T17:08:14.718844572Z"} +2026/03/20 17:08:19 [transform_engine] {"stage_name":"transform_engine","events_processed":39,"events_dropped":0,"avg_latency_ms":80.73669968188472,"throughput_eps":0,"last_update":"2026-03-20T17:08:14.718836938Z"} +2026/03/20 17:08:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:14.575544163Z"} +2026/03/20 17:08:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":237.8,"last_update":"2026-03-20T17:08:14.575871702Z"} +2026/03/20 17:08:19 ───────────────────────────────────────────────── +2026/03/20 17:08:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:19.576005339Z"} +2026/03/20 17:08:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":238.8,"last_update":"2026-03-20T17:08:19.576795233Z"} +2026/03/20 17:08:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":480,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:19.586172389Z"} +2026/03/20 17:08:24 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":11.954327653330818,"throughput_eps":0,"last_update":"2026-03-20T17:08:19.719514492Z"} +2026/03/20 17:08:24 [transform_engine] {"stage_name":"transform_engine","events_processed":39,"events_dropped":0,"avg_latency_ms":80.73669968188472,"throughput_eps":0,"last_update":"2026-03-20T17:08:19.719532366Z"} +2026/03/20 17:08:24 ───────────────────────────────────────────────── +2026/03/20 17:08:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":482,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:24.58608058Z"} +2026/03/20 17:08:29 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":11.954327653330818,"throughput_eps":0,"last_update":"2026-03-20T17:08:24.719435923Z"} +2026/03/20 17:08:29 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":85.82466574550779,"throughput_eps":0,"last_update":"2026-03-20T17:08:24.825563249Z"} +2026/03/20 17:08:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:24.575551646Z"} +2026/03/20 17:08:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":239.8,"last_update":"2026-03-20T17:08:24.575867882Z"} +2026/03/20 17:08:29 ───────────────────────────────────────────────── +2026/03/20 17:08:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:29.586302796Z"} +2026/03/20 17:08:34 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":12.378421522664656,"throughput_eps":0,"last_update":"2026-03-20T17:08:29.719668773Z"} +2026/03/20 17:08:34 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":85.82466574550779,"throughput_eps":0,"last_update":"2026-03-20T17:08:29.719684133Z"} +2026/03/20 17:08:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:29.575516579Z"} +2026/03/20 17:08:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":240.8,"last_update":"2026-03-20T17:08:29.575933348Z"} +2026/03/20 17:08:34 ───────────────────────────────────────────────── +2026/03/20 17:08:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:34.576183739Z"} +2026/03/20 17:08:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":241.8,"last_update":"2026-03-20T17:08:34.576339458Z"} +2026/03/20 17:08:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":486,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:34.58554659Z"} +2026/03/20 17:08:39 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":12.378421522664656,"throughput_eps":0,"last_update":"2026-03-20T17:08:34.718815455Z"} +2026/03/20 17:08:39 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":85.82466574550779,"throughput_eps":0,"last_update":"2026-03-20T17:08:34.718746814Z"} +2026/03/20 17:08:39 ───────────────────────────────────────────────── +2026/03/20 17:08:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:39.575759748Z"} +2026/03/20 17:08:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":242.8,"last_update":"2026-03-20T17:08:39.576480368Z"} +2026/03/20 17:08:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:39.585047303Z"} +2026/03/20 17:08:44 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":12.378421522664656,"throughput_eps":0,"last_update":"2026-03-20T17:08:39.719392147Z"} +2026/03/20 17:08:44 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":85.82466574550779,"throughput_eps":0,"last_update":"2026-03-20T17:08:39.719402135Z"} +2026/03/20 17:08:44 ───────────────────────────────────────────────── +2026/03/20 17:08:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:44.575700566Z"} +2026/03/20 17:08:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":243.8,"last_update":"2026-03-20T17:08:44.576022694Z"} +2026/03/20 17:08:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":490,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:44.586510178Z"} +2026/03/20 17:08:49 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":12.378421522664656,"throughput_eps":0,"last_update":"2026-03-20T17:08:44.718815256Z"} +2026/03/20 17:08:49 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":85.82466574550779,"throughput_eps":0,"last_update":"2026-03-20T17:08:44.718694805Z"} +2026/03/20 17:08:49 ───────────────────────────────────────────────── +2026/03/20 17:08:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":244.8,"last_update":"2026-03-20T17:08:49.576136731Z"} +2026/03/20 17:08:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:49.585892484Z"} +2026/03/20 17:08:54 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":12.378421522664656,"throughput_eps":0,"last_update":"2026-03-20T17:08:49.719129031Z"} +2026/03/20 17:08:54 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":85.82466574550779,"throughput_eps":0,"last_update":"2026-03-20T17:08:49.719140783Z"} +2026/03/20 17:08:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:49.575745401Z"} +2026/03/20 17:08:54 ───────────────────────────────────────────────── +2026/03/20 17:08:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:54.575757977Z"} +2026/03/20 17:08:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":245.8,"last_update":"2026-03-20T17:08:54.576052321Z"} +2026/03/20 17:08:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:54.586206619Z"} +2026/03/20 17:08:59 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":12.378421522664656,"throughput_eps":0,"last_update":"2026-03-20T17:08:54.719464382Z"} +2026/03/20 17:08:59 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":91.05275299640623,"throughput_eps":0,"last_update":"2026-03-20T17:08:54.831442338Z"} +2026/03/20 17:08:59 ───────────────────────────────────────────────── +2026/03/20 17:09:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:59.575590306Z"} +2026/03/20 17:09:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":246.8,"last_update":"2026-03-20T17:08:59.57566062Z"} +2026/03/20 17:09:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":496,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:59.585832611Z"} +2026/03/20 17:09:04 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":12.872329418131727,"throughput_eps":0,"last_update":"2026-03-20T17:08:59.719104174Z"} +2026/03/20 17:09:04 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":91.05275299640623,"throughput_eps":0,"last_update":"2026-03-20T17:08:59.719126817Z"} +2026/03/20 17:09:04 ───────────────────────────────────────────────── +2026/03/20 17:09:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:04.575977608Z"} +2026/03/20 17:09:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":247.8,"last_update":"2026-03-20T17:09:04.576444614Z"} +2026/03/20 17:09:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":498,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:04.585228185Z"} +2026/03/20 17:09:09 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":12.872329418131727,"throughput_eps":0,"last_update":"2026-03-20T17:09:04.719616883Z"} +2026/03/20 17:09:09 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":91.05275299640623,"throughput_eps":0,"last_update":"2026-03-20T17:09:04.719645457Z"} +2026/03/20 17:09:09 ───────────────────────────────────────────────── +2026/03/20 17:09:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:09.575907987Z"} +2026/03/20 17:09:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":248.8,"last_update":"2026-03-20T17:09:09.576544506Z"} +2026/03/20 17:09:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:09.586572232Z"} +2026/03/20 17:09:14 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":12.872329418131727,"throughput_eps":0,"last_update":"2026-03-20T17:09:09.718806645Z"} +2026/03/20 17:09:14 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":91.05275299640623,"throughput_eps":0,"last_update":"2026-03-20T17:09:09.718744316Z"} +2026/03/20 17:09:14 ───────────────────────────────────────────────── +2026/03/20 17:09:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:14.57568901Z"} +2026/03/20 17:09:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":249.8,"last_update":"2026-03-20T17:09:14.575683158Z"} +2026/03/20 17:09:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:14.586215301Z"} +2026/03/20 17:09:19 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":12.872329418131727,"throughput_eps":0,"last_update":"2026-03-20T17:09:14.71963542Z"} +2026/03/20 17:09:19 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":91.05275299640623,"throughput_eps":0,"last_update":"2026-03-20T17:09:14.719648605Z"} +2026/03/20 17:09:19 ───────────────────────────────────────────────── +2026/03/20 17:09:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:19.587386515Z"} +2026/03/20 17:09:24 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":12.872329418131727,"throughput_eps":0,"last_update":"2026-03-20T17:09:19.719721949Z"} +2026/03/20 17:09:24 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":91.05275299640623,"throughput_eps":0,"last_update":"2026-03-20T17:09:19.719735245Z"} +2026/03/20 17:09:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:19.575497322Z"} +2026/03/20 17:09:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":250.8,"last_update":"2026-03-20T17:09:19.576044551Z"} +2026/03/20 17:09:24 ───────────────────────────────────────────────── +2026/03/20 17:09:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:24.575519089Z"} +2026/03/20 17:09:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":251.8,"last_update":"2026-03-20T17:09:24.575595696Z"} +2026/03/20 17:09:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":506,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:24.586235355Z"} +2026/03/20 17:09:29 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":12.872329418131727,"throughput_eps":0,"last_update":"2026-03-20T17:09:24.71948692Z"} +2026/03/20 17:09:29 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":91.05275299640623,"throughput_eps":0,"last_update":"2026-03-20T17:09:24.719500866Z"} +2026/03/20 17:09:29 ───────────────────────────────────────────────── +2026/03/20 17:09:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:34 [transform_engine] {"stage_name":"transform_engine","events_processed":42,"events_dropped":0,"avg_latency_ms":85.94409599712498,"throughput_eps":0,"last_update":"2026-03-20T17:09:29.71881158Z"} +2026/03/20 17:09:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:29.575719635Z"} +2026/03/20 17:09:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":252.8,"last_update":"2026-03-20T17:09:29.575695108Z"} +2026/03/20 17:09:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:29.587556448Z"} +2026/03/20 17:09:34 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":12.885865134505382,"throughput_eps":0,"last_update":"2026-03-20T17:09:29.718798626Z"} +2026/03/20 17:09:34 ───────────────────────────────────────────────── +2026/03/20 17:09:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:39 [transform_engine] {"stage_name":"transform_engine","events_processed":42,"events_dropped":0,"avg_latency_ms":85.94409599712498,"throughput_eps":0,"last_update":"2026-03-20T17:09:34.718763497Z"} +2026/03/20 17:09:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:34.575600652Z"} +2026/03/20 17:09:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":253.8,"last_update":"2026-03-20T17:09:34.575761741Z"} +2026/03/20 17:09:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:34.585533697Z"} +2026/03/20 17:09:39 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":12.885865134505382,"throughput_eps":0,"last_update":"2026-03-20T17:09:34.718778467Z"} +2026/03/20 17:09:39 ───────────────────────────────────────────────── +2026/03/20 17:09:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:39.575519011Z"} +2026/03/20 17:09:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":254.8,"last_update":"2026-03-20T17:09:39.575698796Z"} +2026/03/20 17:09:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":512,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:39.586319409Z"} +2026/03/20 17:09:44 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":12.885865134505382,"throughput_eps":0,"last_update":"2026-03-20T17:09:39.719706104Z"} +2026/03/20 17:09:44 [transform_engine] {"stage_name":"transform_engine","events_processed":42,"events_dropped":0,"avg_latency_ms":85.94409599712498,"throughput_eps":0,"last_update":"2026-03-20T17:09:39.719718206Z"} +2026/03/20 17:09:44 ───────────────────────────────────────────────── +2026/03/20 17:09:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:49 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":12.885865134505382,"throughput_eps":0,"last_update":"2026-03-20T17:09:44.718809027Z"} +2026/03/20 17:09:49 [transform_engine] {"stage_name":"transform_engine","events_processed":42,"events_dropped":0,"avg_latency_ms":85.94409599712498,"throughput_eps":0,"last_update":"2026-03-20T17:09:44.718822544Z"} +2026/03/20 17:09:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:44.57588422Z"} +2026/03/20 17:09:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":255.8,"last_update":"2026-03-20T17:09:44.576396081Z"} +2026/03/20 17:09:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:44.586510926Z"} +2026/03/20 17:09:49 ───────────────────────────────────────────────── +2026/03/20 17:09:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:54 [transform_engine] {"stage_name":"transform_engine","events_processed":42,"events_dropped":0,"avg_latency_ms":85.94409599712498,"throughput_eps":0,"last_update":"2026-03-20T17:09:49.719563816Z"} +2026/03/20 17:09:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:49.575852147Z"} +2026/03/20 17:09:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":256.8,"last_update":"2026-03-20T17:09:49.576175166Z"} +2026/03/20 17:09:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:49.585257101Z"} +2026/03/20 17:09:54 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":12.885865134505382,"throughput_eps":0,"last_update":"2026-03-20T17:09:49.71953966Z"} +2026/03/20 17:09:54 ───────────────────────────────────────────────── +2026/03/20 17:09:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:59 [transform_engine] {"stage_name":"transform_engine","events_processed":43,"events_dropped":0,"avg_latency_ms":81.63562379769998,"throughput_eps":0,"last_update":"2026-03-20T17:09:54.783231066Z"} +2026/03/20 17:09:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:54.575662962Z"} +2026/03/20 17:09:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":257.8,"last_update":"2026-03-20T17:09:54.576052117Z"} +2026/03/20 17:09:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:54.58755844Z"} +2026/03/20 17:09:59 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":12.885865134505382,"throughput_eps":0,"last_update":"2026-03-20T17:09:54.718796908Z"} +2026/03/20 17:09:59 ───────────────────────────────────────────────── +2026/03/20 17:10:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:04 [transform_engine] {"stage_name":"transform_engine","events_processed":43,"events_dropped":0,"avg_latency_ms":81.63562379769998,"throughput_eps":0,"last_update":"2026-03-20T17:09:59.719417826Z"} +2026/03/20 17:10:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:59.575798226Z"} +2026/03/20 17:10:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":258.8,"last_update":"2026-03-20T17:09:59.576437941Z"} +2026/03/20 17:10:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":520,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:59.586067487Z"} +2026/03/20 17:10:04 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":13.149079707604306,"throughput_eps":0,"last_update":"2026-03-20T17:09:59.719405583Z"} +2026/03/20 17:10:04 ───────────────────────────────────────────────── +2026/03/20 17:10:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:09 [transform_engine] {"stage_name":"transform_engine","events_processed":43,"events_dropped":0,"avg_latency_ms":81.63562379769998,"throughput_eps":0,"last_update":"2026-03-20T17:10:04.71912557Z"} +2026/03/20 17:10:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:04.575515844Z"} +2026/03/20 17:10:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":259.8,"last_update":"2026-03-20T17:10:04.575795491Z"} +2026/03/20 17:10:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":522,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:04.591685284Z"} +2026/03/20 17:10:09 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":13.149079707604306,"throughput_eps":0,"last_update":"2026-03-20T17:10:04.719065515Z"} +2026/03/20 17:10:09 ───────────────────────────────────────────────── +2026/03/20 17:10:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:09.575722974Z"} +2026/03/20 17:10:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":260.8,"last_update":"2026-03-20T17:10:09.576175081Z"} +2026/03/20 17:10:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:09.584369536Z"} +2026/03/20 17:10:14 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":13.149079707604306,"throughput_eps":0,"last_update":"2026-03-20T17:10:09.719813367Z"} +2026/03/20 17:10:14 [transform_engine] {"stage_name":"transform_engine","events_processed":43,"events_dropped":0,"avg_latency_ms":81.63562379769998,"throughput_eps":0,"last_update":"2026-03-20T17:10:09.718649596Z"} +2026/03/20 17:10:14 ───────────────────────────────────────────────── +2026/03/20 17:10:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:19 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":13.149079707604306,"throughput_eps":0,"last_update":"2026-03-20T17:10:14.719691683Z"} +2026/03/20 17:10:19 [transform_engine] {"stage_name":"transform_engine","events_processed":43,"events_dropped":0,"avg_latency_ms":81.63562379769998,"throughput_eps":0,"last_update":"2026-03-20T17:10:14.719593736Z"} +2026/03/20 17:10:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:14.575536283Z"} +2026/03/20 17:10:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":261.8,"last_update":"2026-03-20T17:10:14.57607205Z"} +2026/03/20 17:10:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":526,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:14.587312313Z"} +2026/03/20 17:10:19 ───────────────────────────────────────────────── +2026/03/20 17:10:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:24 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":13.149079707604306,"throughput_eps":0,"last_update":"2026-03-20T17:10:19.719865359Z"} +2026/03/20 17:10:24 [transform_engine] {"stage_name":"transform_engine","events_processed":43,"events_dropped":0,"avg_latency_ms":81.63562379769998,"throughput_eps":0,"last_update":"2026-03-20T17:10:19.718698753Z"} +2026/03/20 17:10:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:19.576043626Z"} +2026/03/20 17:10:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":262.8,"last_update":"2026-03-20T17:10:19.576024449Z"} +2026/03/20 17:10:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:19.586465752Z"} +2026/03/20 17:10:24 ───────────────────────────────────────────────── +2026/03/20 17:10:24 [ANOMALY] time=2026-03-20T17:10:24Z score=0.9382 method=SEAD details=MAD!:w=0.26,s=0.98 RRCF-fast!:w=0.18,s=0.95 RRCF-mid!:w=0.17,s=0.98 RRCF-slow!:w=0.17,s=0.98 COPOD!:w=0.21,s=0.81 +2026/03/20 17:10:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:24.575751595Z"} +2026/03/20 17:10:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":263.8,"last_update":"2026-03-20T17:10:24.57617692Z"} +2026/03/20 17:10:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:24.586092134Z"} +2026/03/20 17:10:29 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":13.149079707604306,"throughput_eps":0,"last_update":"2026-03-20T17:10:24.718801552Z"} +2026/03/20 17:10:29 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":78.01222183815997,"throughput_eps":0,"last_update":"2026-03-20T17:10:24.782435207Z"} +2026/03/20 17:10:29 ───────────────────────────────────────────────── +2026/03/20 17:10:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:34 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":11.900673166083447,"throughput_eps":0,"last_update":"2026-03-20T17:10:29.71879841Z"} +2026/03/20 17:10:34 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":78.01222183815997,"throughput_eps":0,"last_update":"2026-03-20T17:10:29.718753715Z"} +2026/03/20 17:10:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:29.575516334Z"} +2026/03/20 17:10:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":264.8,"last_update":"2026-03-20T17:10:29.576255831Z"} +2026/03/20 17:10:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":532,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:29.585556337Z"} +2026/03/20 17:10:34 ───────────────────────────────────────────────── +2026/03/20 17:10:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:34.58514207Z"} +2026/03/20 17:10:39 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":11.900673166083447,"throughput_eps":0,"last_update":"2026-03-20T17:10:34.719508962Z"} +2026/03/20 17:10:39 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":78.01222183815997,"throughput_eps":0,"last_update":"2026-03-20T17:10:34.719544751Z"} +2026/03/20 17:10:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:34.576090781Z"} +2026/03/20 17:10:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":265.8,"last_update":"2026-03-20T17:10:34.576340048Z"} +2026/03/20 17:10:39 ───────────────────────────────────────────────── +2026/03/20 17:10:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:39.575516613Z"} +2026/03/20 17:10:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":266.8,"last_update":"2026-03-20T17:10:39.575628407Z"} +2026/03/20 17:10:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":536,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:39.587021284Z"} +2026/03/20 17:10:44 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":11.900673166083447,"throughput_eps":0,"last_update":"2026-03-20T17:10:39.719451998Z"} +2026/03/20 17:10:44 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":78.01222183815997,"throughput_eps":0,"last_update":"2026-03-20T17:10:39.719407123Z"} +2026/03/20 17:10:44 ───────────────────────────────────────────────── +2026/03/20 17:10:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:49 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":78.01222183815997,"throughput_eps":0,"last_update":"2026-03-20T17:10:44.719626807Z"} +2026/03/20 17:10:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:44.575501884Z"} +2026/03/20 17:10:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":267.8,"last_update":"2026-03-20T17:10:44.575748897Z"} +2026/03/20 17:10:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:44.586280354Z"} +2026/03/20 17:10:49 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":11.900673166083447,"throughput_eps":0,"last_update":"2026-03-20T17:10:44.719773949Z"} +2026/03/20 17:10:49 ───────────────────────────────────────────────── +2026/03/20 17:10:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:49.575943475Z"} +2026/03/20 17:10:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":268.8,"last_update":"2026-03-20T17:10:49.576261465Z"} +2026/03/20 17:10:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":540,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:49.584811504Z"} +2026/03/20 17:10:54 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":11.900673166083447,"throughput_eps":0,"last_update":"2026-03-20T17:10:49.719225647Z"} +2026/03/20 17:10:54 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":78.01222183815997,"throughput_eps":0,"last_update":"2026-03-20T17:10:49.719054127Z"} +2026/03/20 17:10:54 ───────────────────────────────────────────────── +2026/03/20 17:10:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:54.57610964Z"} +2026/03/20 17:10:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":269.8,"last_update":"2026-03-20T17:10:54.576913311Z"} +2026/03/20 17:10:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":542,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:54.585661008Z"} +2026/03/20 17:10:59 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":11.900673166083447,"throughput_eps":0,"last_update":"2026-03-20T17:10:54.719158407Z"} +2026/03/20 17:10:59 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":84.85405687052798,"throughput_eps":0,"last_update":"2026-03-20T17:10:54.831270846Z"} +2026/03/20 17:10:59 ───────────────────────────────────────────────── +2026/03/20 17:11:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:59.575740641Z"} +2026/03/20 17:11:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":270.8,"last_update":"2026-03-20T17:10:59.576058069Z"} +2026/03/20 17:11:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:59.587201439Z"} +2026/03/20 17:11:04 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":11.668261332866757,"throughput_eps":0,"last_update":"2026-03-20T17:10:59.719456842Z"} +2026/03/20 17:11:04 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":84.85405687052798,"throughput_eps":0,"last_update":"2026-03-20T17:10:59.719412967Z"} +2026/03/20 17:11:04 ───────────────────────────────────────────────── +2026/03/20 17:11:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:09 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":11.668261332866757,"throughput_eps":0,"last_update":"2026-03-20T17:11:04.719246171Z"} +2026/03/20 17:11:09 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":84.85405687052798,"throughput_eps":0,"last_update":"2026-03-20T17:11:04.719203228Z"} +2026/03/20 17:11:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:04.575863406Z"} +2026/03/20 17:11:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":271.8,"last_update":"2026-03-20T17:11:04.576195572Z"} +2026/03/20 17:11:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:04.585989045Z"} +2026/03/20 17:11:09 ───────────────────────────────────────────────── +2026/03/20 17:11:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:09.575530867Z"} +2026/03/20 17:11:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":272.8,"last_update":"2026-03-20T17:11:09.576213084Z"} +2026/03/20 17:11:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:09.585812515Z"} +2026/03/20 17:11:14 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":11.668261332866757,"throughput_eps":0,"last_update":"2026-03-20T17:11:09.719059645Z"} +2026/03/20 17:11:14 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":84.85405687052798,"throughput_eps":0,"last_update":"2026-03-20T17:11:09.719040989Z"} +2026/03/20 17:11:14 ───────────────────────────────────────────────── +2026/03/20 17:11:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:19 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":11.668261332866757,"throughput_eps":0,"last_update":"2026-03-20T17:11:14.719347569Z"} +2026/03/20 17:11:19 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":84.85405687052798,"throughput_eps":0,"last_update":"2026-03-20T17:11:14.719289558Z"} +2026/03/20 17:11:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:14.575832844Z"} +2026/03/20 17:11:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":273.8,"last_update":"2026-03-20T17:11:14.576085078Z"} +2026/03/20 17:11:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:14.585954216Z"} +2026/03/20 17:11:19 ───────────────────────────────────────────────── +2026/03/20 17:11:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:19.575571969Z"} +2026/03/20 17:11:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":274.8,"last_update":"2026-03-20T17:11:19.575664297Z"} +2026/03/20 17:11:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:19.586507252Z"} +2026/03/20 17:11:24 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":11.668261332866757,"throughput_eps":0,"last_update":"2026-03-20T17:11:19.71962033Z"} +2026/03/20 17:11:24 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":84.85405687052798,"throughput_eps":0,"last_update":"2026-03-20T17:11:19.719631271Z"} +2026/03/20 17:11:24 ───────────────────────────────────────────────── +2026/03/20 17:11:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:24.576303873Z"} +2026/03/20 17:11:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":275.8,"last_update":"2026-03-20T17:11:24.576290378Z"} +2026/03/20 17:11:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:24.586141061Z"} +2026/03/20 17:11:29 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":11.668261332866757,"throughput_eps":0,"last_update":"2026-03-20T17:11:24.719377319Z"} +2026/03/20 17:11:29 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":80.3387762964224,"throughput_eps":0,"last_update":"2026-03-20T17:11:24.781668148Z"} +2026/03/20 17:11:29 ───────────────────────────────────────────────── +2026/03/20 17:11:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:34 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":80.3387762964224,"throughput_eps":0,"last_update":"2026-03-20T17:11:29.719634231Z"} +2026/03/20 17:11:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:29.575495641Z"} +2026/03/20 17:11:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":276.8,"last_update":"2026-03-20T17:11:29.575465934Z"} +2026/03/20 17:11:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:29.587072033Z"} +2026/03/20 17:11:34 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":11.856389266293407,"throughput_eps":0,"last_update":"2026-03-20T17:11:29.719618482Z"} +2026/03/20 17:11:34 ───────────────────────────────────────────────── +2026/03/20 17:11:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:39 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":11.856389266293407,"throughput_eps":0,"last_update":"2026-03-20T17:11:34.719154333Z"} +2026/03/20 17:11:39 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":80.3387762964224,"throughput_eps":0,"last_update":"2026-03-20T17:11:34.719137952Z"} +2026/03/20 17:11:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:34.575840662Z"} +2026/03/20 17:11:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":277.8,"last_update":"2026-03-20T17:11:34.576482141Z"} +2026/03/20 17:11:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:34.585838667Z"} +2026/03/20 17:11:39 ───────────────────────────────────────────────── +2026/03/20 17:11:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:39.575950513Z"} +2026/03/20 17:11:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":278.8,"last_update":"2026-03-20T17:11:39.576413993Z"} +2026/03/20 17:11:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":560,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:39.585105815Z"} +2026/03/20 17:11:44 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":11.856389266293407,"throughput_eps":0,"last_update":"2026-03-20T17:11:39.719380522Z"} +2026/03/20 17:11:44 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":80.3387762964224,"throughput_eps":0,"last_update":"2026-03-20T17:11:39.719390581Z"} +2026/03/20 17:11:44 ───────────────────────────────────────────────── +2026/03/20 17:11:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:44.575679117Z"} +2026/03/20 17:11:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":279.8,"last_update":"2026-03-20T17:11:44.576002267Z"} +2026/03/20 17:11:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:44.587456345Z"} +2026/03/20 17:11:49 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":11.856389266293407,"throughput_eps":0,"last_update":"2026-03-20T17:11:44.719675986Z"} +2026/03/20 17:11:49 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":80.3387762964224,"throughput_eps":0,"last_update":"2026-03-20T17:11:44.719685754Z"} +2026/03/20 17:11:49 ───────────────────────────────────────────────── +2026/03/20 17:11:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:49.576062287Z"} +2026/03/20 17:11:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":280.8,"last_update":"2026-03-20T17:11:49.576380036Z"} +2026/03/20 17:11:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:49.586913439Z"} +2026/03/20 17:11:54 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":11.856389266293407,"throughput_eps":0,"last_update":"2026-03-20T17:11:49.719316494Z"} +2026/03/20 17:11:54 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":80.3387762964224,"throughput_eps":0,"last_update":"2026-03-20T17:11:49.719331804Z"} +2026/03/20 17:11:54 ───────────────────────────────────────────────── +2026/03/20 17:11:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:54.575927944Z"} +2026/03/20 17:11:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":281.8,"last_update":"2026-03-20T17:11:54.576302342Z"} +2026/03/20 17:11:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":566,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:54.586046172Z"} +2026/03/20 17:11:59 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":11.856389266293407,"throughput_eps":0,"last_update":"2026-03-20T17:11:54.719417456Z"} +2026/03/20 17:11:59 [transform_engine] {"stage_name":"transform_engine","events_processed":47,"events_dropped":0,"avg_latency_ms":87.13305163713791,"throughput_eps":0,"last_update":"2026-03-20T17:11:54.833744842Z"} +2026/03/20 17:11:59 ───────────────────────────────────────────────── +2026/03/20 17:12:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:59.576511857Z"} +2026/03/20 17:12:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":282.8,"last_update":"2026-03-20T17:11:59.576632288Z"} +2026/03/20 17:12:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:59.586971329Z"} +2026/03/20 17:12:04 [detection_layer] {"stage_name":"detection_layer","events_processed":47,"events_dropped":0,"avg_latency_ms":12.308179413034726,"throughput_eps":0,"last_update":"2026-03-20T17:11:59.719311749Z"} +2026/03/20 17:12:04 [transform_engine] {"stage_name":"transform_engine","events_processed":47,"events_dropped":0,"avg_latency_ms":87.13305163713791,"throughput_eps":0,"last_update":"2026-03-20T17:11:59.719321849Z"} +2026/03/20 17:12:04 ───────────────────────────────────────────────── +2026/03/20 17:12:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":283.8,"last_update":"2026-03-20T17:12:04.576177354Z"} +2026/03/20 17:12:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":570,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:04.584499148Z"} +2026/03/20 17:12:09 [detection_layer] {"stage_name":"detection_layer","events_processed":47,"events_dropped":0,"avg_latency_ms":12.308179413034726,"throughput_eps":0,"last_update":"2026-03-20T17:12:04.71880456Z"} +2026/03/20 17:12:09 [transform_engine] {"stage_name":"transform_engine","events_processed":47,"events_dropped":0,"avg_latency_ms":87.13305163713791,"throughput_eps":0,"last_update":"2026-03-20T17:12:04.71866958Z"} +2026/03/20 17:12:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:04.575767358Z"} +2026/03/20 17:12:09 ───────────────────────────────────────────────── +2026/03/20 17:12:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":284.8,"last_update":"2026-03-20T17:12:09.576239359Z"} +2026/03/20 17:12:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":572,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:09.586259279Z"} +2026/03/20 17:12:14 [detection_layer] {"stage_name":"detection_layer","events_processed":47,"events_dropped":0,"avg_latency_ms":12.308179413034726,"throughput_eps":0,"last_update":"2026-03-20T17:12:09.719502287Z"} +2026/03/20 17:12:14 [transform_engine] {"stage_name":"transform_engine","events_processed":47,"events_dropped":0,"avg_latency_ms":87.13305163713791,"throughput_eps":0,"last_update":"2026-03-20T17:12:09.719511494Z"} +2026/03/20 17:12:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:09.575920518Z"} +2026/03/20 17:12:14 ───────────────────────────────────────────────── +2026/03/20 17:12:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:14.575750312Z"} +2026/03/20 17:12:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":285.8,"last_update":"2026-03-20T17:12:14.576184094Z"} +2026/03/20 17:12:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:14.586024219Z"} +2026/03/20 17:12:19 [detection_layer] {"stage_name":"detection_layer","events_processed":47,"events_dropped":0,"avg_latency_ms":12.308179413034726,"throughput_eps":0,"last_update":"2026-03-20T17:12:14.719283771Z"} +2026/03/20 17:12:19 [transform_engine] {"stage_name":"transform_engine","events_processed":47,"events_dropped":0,"avg_latency_ms":87.13305163713791,"throughput_eps":0,"last_update":"2026-03-20T17:12:14.719291185Z"} +2026/03/20 17:12:19 ───────────────────────────────────────────────── +2026/03/20 17:12:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:19.575878725Z"} +2026/03/20 17:12:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":286.8,"last_update":"2026-03-20T17:12:19.576338476Z"} +2026/03/20 17:12:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":576,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:19.586468558Z"} +2026/03/20 17:12:24 [detection_layer] {"stage_name":"detection_layer","events_processed":47,"events_dropped":0,"avg_latency_ms":12.308179413034726,"throughput_eps":0,"last_update":"2026-03-20T17:12:19.719692163Z"} +2026/03/20 17:12:24 [transform_engine] {"stage_name":"transform_engine","events_processed":47,"events_dropped":0,"avg_latency_ms":87.13305163713791,"throughput_eps":0,"last_update":"2026-03-20T17:12:19.719699126Z"} +2026/03/20 17:12:24 ───────────────────────────────────────────────── +2026/03/20 17:12:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:29 [detection_layer] {"stage_name":"detection_layer","events_processed":47,"events_dropped":0,"avg_latency_ms":12.308179413034726,"throughput_eps":0,"last_update":"2026-03-20T17:12:24.71879707Z"} +2026/03/20 17:12:29 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":82.72725710971034,"throughput_eps":0,"last_update":"2026-03-20T17:12:24.783915997Z"} +2026/03/20 17:12:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:24.575511802Z"} +2026/03/20 17:12:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":287.8,"last_update":"2026-03-20T17:12:24.575742233Z"} +2026/03/20 17:12:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:24.586712877Z"} +2026/03/20 17:12:29 ───────────────────────────────────────────────── +2026/03/20 17:12:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:29.575732334Z"} +2026/03/20 17:12:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":288.8,"last_update":"2026-03-20T17:12:29.576021679Z"} +2026/03/20 17:12:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":580,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:29.586571096Z"} +2026/03/20 17:12:34 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":12.231014930427781,"throughput_eps":0,"last_update":"2026-03-20T17:12:29.718824717Z"} +2026/03/20 17:12:34 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":82.72725710971034,"throughput_eps":0,"last_update":"2026-03-20T17:12:29.718718793Z"} +2026/03/20 17:12:34 ───────────────────────────────────────────────── +2026/03/20 17:12:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:34.575798134Z"} +2026/03/20 17:12:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":289.8,"last_update":"2026-03-20T17:12:34.57607747Z"} +2026/03/20 17:12:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:34.586970625Z"} +2026/03/20 17:12:39 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":12.231014930427781,"throughput_eps":0,"last_update":"2026-03-20T17:12:34.719224639Z"} +2026/03/20 17:12:39 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":82.72725710971034,"throughput_eps":0,"last_update":"2026-03-20T17:12:34.719233778Z"} +2026/03/20 17:12:39 ───────────────────────────────────────────────── +2026/03/20 17:12:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:39.57551769Z"} +2026/03/20 17:12:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":290.8,"last_update":"2026-03-20T17:12:39.575455069Z"} +2026/03/20 17:12:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:39.584630762Z"} +2026/03/20 17:12:44 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":12.231014930427781,"throughput_eps":0,"last_update":"2026-03-20T17:12:39.718791254Z"} +2026/03/20 17:12:44 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":82.72725710971034,"throughput_eps":0,"last_update":"2026-03-20T17:12:39.718801814Z"} +2026/03/20 17:12:44 ───────────────────────────────────────────────── +2026/03/20 17:12:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:44.575791938Z"} +2026/03/20 17:12:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":291.8,"last_update":"2026-03-20T17:12:44.576082876Z"} +2026/03/20 17:12:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":586,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:44.585722687Z"} +2026/03/20 17:12:49 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":12.231014930427781,"throughput_eps":0,"last_update":"2026-03-20T17:12:44.719111003Z"} +2026/03/20 17:12:49 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":82.72725710971034,"throughput_eps":0,"last_update":"2026-03-20T17:12:44.719126402Z"} +2026/03/20 17:12:49 ───────────────────────────────────────────────── +2026/03/20 17:12:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:54 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":12.231014930427781,"throughput_eps":0,"last_update":"2026-03-20T17:12:49.719377847Z"} +2026/03/20 17:12:54 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":82.72725710971034,"throughput_eps":0,"last_update":"2026-03-20T17:12:49.719388036Z"} +2026/03/20 17:12:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:49.575499868Z"} +2026/03/20 17:12:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":292.8,"last_update":"2026-03-20T17:12:49.575553291Z"} +2026/03/20 17:12:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":588,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:49.585037434Z"} +2026/03/20 17:12:54 ───────────────────────────────────────────────── +2026/03/20 17:12:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":293.8,"last_update":"2026-03-20T17:12:54.576215949Z"} +2026/03/20 17:12:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:54.584556761Z"} +2026/03/20 17:12:59 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":12.231014930427781,"throughput_eps":0,"last_update":"2026-03-20T17:12:54.719824353Z"} +2026/03/20 17:12:59 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":79.25397128776828,"throughput_eps":0,"last_update":"2026-03-20T17:12:54.784081976Z"} +2026/03/20 17:12:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:54.575884183Z"} +2026/03/20 17:12:59 ───────────────────────────────────────────────── +2026/03/20 17:13:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":592,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:59.585136696Z"} +2026/03/20 17:13:04 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":13.083103944342225,"throughput_eps":0,"last_update":"2026-03-20T17:12:59.719422599Z"} +2026/03/20 17:13:04 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":79.25397128776828,"throughput_eps":0,"last_update":"2026-03-20T17:12:59.719450443Z"} +2026/03/20 17:13:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:59.576333758Z"} +2026/03/20 17:13:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":294.8,"last_update":"2026-03-20T17:12:59.576315783Z"} +2026/03/20 17:13:04 ───────────────────────────────────────────────── +2026/03/20 17:13:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:04.575974079Z"} +2026/03/20 17:13:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":295.8,"last_update":"2026-03-20T17:13:04.576322576Z"} +2026/03/20 17:13:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:04.585171744Z"} +2026/03/20 17:13:09 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":13.083103944342225,"throughput_eps":0,"last_update":"2026-03-20T17:13:04.719443212Z"} +2026/03/20 17:13:09 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":79.25397128776828,"throughput_eps":0,"last_update":"2026-03-20T17:13:04.719459633Z"} +2026/03/20 17:13:09 ───────────────────────────────────────────────── +2026/03/20 17:13:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:14 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":13.083103944342225,"throughput_eps":0,"last_update":"2026-03-20T17:13:09.719191245Z"} +2026/03/20 17:13:14 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":79.25397128776828,"throughput_eps":0,"last_update":"2026-03-20T17:13:09.719205403Z"} +2026/03/20 17:13:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:09.576541821Z"} +2026/03/20 17:13:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":296.8,"last_update":"2026-03-20T17:13:09.575419789Z"} +2026/03/20 17:13:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:09.584805525Z"} +2026/03/20 17:13:14 ───────────────────────────────────────────────── +2026/03/20 17:13:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:14.575875071Z"} +2026/03/20 17:13:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":297.8,"last_update":"2026-03-20T17:13:14.576278024Z"} +2026/03/20 17:13:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:14.585477202Z"} +2026/03/20 17:13:19 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":13.083103944342225,"throughput_eps":0,"last_update":"2026-03-20T17:13:14.718801519Z"} +2026/03/20 17:13:19 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":79.25397128776828,"throughput_eps":0,"last_update":"2026-03-20T17:13:14.718710655Z"} +2026/03/20 17:13:19 ───────────────────────────────────────────────── +2026/03/20 17:13:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":298.8,"last_update":"2026-03-20T17:13:19.57543631Z"} +2026/03/20 17:13:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:19.58522528Z"} +2026/03/20 17:13:24 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":13.083103944342225,"throughput_eps":0,"last_update":"2026-03-20T17:13:19.719630392Z"} +2026/03/20 17:13:24 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":79.25397128776828,"throughput_eps":0,"last_update":"2026-03-20T17:13:19.719645972Z"} +2026/03/20 17:13:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:19.57650542Z"} +2026/03/20 17:13:24 ───────────────────────────────────────────────── +2026/03/20 17:13:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:24.575821922Z"} +2026/03/20 17:13:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":299.8,"last_update":"2026-03-20T17:13:24.576213623Z"} +2026/03/20 17:13:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":602,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:24.585154346Z"} +2026/03/20 17:13:29 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":13.083103944342225,"throughput_eps":0,"last_update":"2026-03-20T17:13:24.719560402Z"} +2026/03/20 17:13:29 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":75.84135663021463,"throughput_eps":0,"last_update":"2026-03-20T17:13:24.781768353Z"} +2026/03/20 17:13:29 ───────────────────────────────────────────────── +2026/03/20 17:13:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:34 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":75.84135663021463,"throughput_eps":0,"last_update":"2026-03-20T17:13:29.71888431Z"} +2026/03/20 17:13:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:29.575504975Z"} +2026/03/20 17:13:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":300.8,"last_update":"2026-03-20T17:13:29.575744324Z"} +2026/03/20 17:13:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:29.585641512Z"} +2026/03/20 17:13:34 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":13.277495155473781,"throughput_eps":0,"last_update":"2026-03-20T17:13:29.71887375Z"} +2026/03/20 17:13:34 ───────────────────────────────────────────────── +2026/03/20 17:13:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:34.576013021Z"} +2026/03/20 17:13:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":301.8,"last_update":"2026-03-20T17:13:34.576303929Z"} +2026/03/20 17:13:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:34.586431899Z"} +2026/03/20 17:13:39 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":13.277495155473781,"throughput_eps":0,"last_update":"2026-03-20T17:13:34.719837993Z"} +2026/03/20 17:13:39 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":75.84135663021463,"throughput_eps":0,"last_update":"2026-03-20T17:13:34.718655235Z"} +2026/03/20 17:13:39 ───────────────────────────────────────────────── +2026/03/20 17:13:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:39.576279744Z"} +2026/03/20 17:13:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":302.8,"last_update":"2026-03-20T17:13:39.576264695Z"} +2026/03/20 17:13:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:39.58513262Z"} +2026/03/20 17:13:44 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":13.277495155473781,"throughput_eps":0,"last_update":"2026-03-20T17:13:39.719512983Z"} +2026/03/20 17:13:44 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":75.84135663021463,"throughput_eps":0,"last_update":"2026-03-20T17:13:39.719521991Z"} +2026/03/20 17:13:44 ───────────────────────────────────────────────── +2026/03/20 17:13:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:44.57577645Z"} +2026/03/20 17:13:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":303.8,"last_update":"2026-03-20T17:13:44.576076635Z"} +2026/03/20 17:13:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:44.585391838Z"} +2026/03/20 17:13:49 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":13.277495155473781,"throughput_eps":0,"last_update":"2026-03-20T17:13:44.719645311Z"} +2026/03/20 17:13:49 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":75.84135663021463,"throughput_eps":0,"last_update":"2026-03-20T17:13:44.719651192Z"} +2026/03/20 17:13:49 ───────────────────────────────────────────────── +2026/03/20 17:13:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:49.575584258Z"} +2026/03/20 17:13:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":304.8,"last_update":"2026-03-20T17:13:49.575718095Z"} +2026/03/20 17:13:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:49.584996918Z"} +2026/03/20 17:13:54 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":13.277495155473781,"throughput_eps":0,"last_update":"2026-03-20T17:13:49.719218312Z"} +2026/03/20 17:13:54 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":75.84135663021463,"throughput_eps":0,"last_update":"2026-03-20T17:13:49.719228051Z"} +2026/03/20 17:13:54 ───────────────────────────────────────────────── +2026/03/20 17:13:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:54.575672965Z"} +2026/03/20 17:13:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":305.8,"last_update":"2026-03-20T17:13:54.575954214Z"} +2026/03/20 17:13:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:54.587493852Z"} +2026/03/20 17:13:59 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":13.277495155473781,"throughput_eps":0,"last_update":"2026-03-20T17:13:54.718787974Z"} +2026/03/20 17:13:59 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":73.60143610417171,"throughput_eps":0,"last_update":"2026-03-20T17:13:54.783417114Z"} +2026/03/20 17:13:59 ───────────────────────────────────────────────── +2026/03/20 17:14:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:59.57550921Z"} +2026/03/20 17:14:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":306.8,"last_update":"2026-03-20T17:13:59.575835666Z"} +2026/03/20 17:14:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:59.586063941Z"} +2026/03/20 17:14:04 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":13.588248124379026,"throughput_eps":0,"last_update":"2026-03-20T17:13:59.719426782Z"} +2026/03/20 17:14:04 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":73.60143610417171,"throughput_eps":0,"last_update":"2026-03-20T17:13:59.719439367Z"} +2026/03/20 17:14:04 ───────────────────────────────────────────────── +2026/03/20 17:14:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:09 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":73.60143610417171,"throughput_eps":0,"last_update":"2026-03-20T17:14:04.718731037Z"} +2026/03/20 17:14:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:04.575975311Z"} +2026/03/20 17:14:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":307.8,"last_update":"2026-03-20T17:14:04.576466192Z"} +2026/03/20 17:14:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:04.586543577Z"} +2026/03/20 17:14:09 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":13.588248124379026,"throughput_eps":0,"last_update":"2026-03-20T17:14:04.718847109Z"} +2026/03/20 17:14:09 ───────────────────────────────────────────────── +2026/03/20 17:14:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:09.576036437Z"} +2026/03/20 17:14:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":308.8,"last_update":"2026-03-20T17:14:09.576580371Z"} +2026/03/20 17:14:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":620,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:09.586246436Z"} +2026/03/20 17:14:14 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":13.588248124379026,"throughput_eps":0,"last_update":"2026-03-20T17:14:09.719617069Z"} +2026/03/20 17:14:14 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":73.60143610417171,"throughput_eps":0,"last_update":"2026-03-20T17:14:09.71963326Z"} +2026/03/20 17:14:14 ───────────────────────────────────────────────── +2026/03/20 17:14:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:19 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":13.588248124379026,"throughput_eps":0,"last_update":"2026-03-20T17:14:14.719487615Z"} +2026/03/20 17:14:19 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":73.60143610417171,"throughput_eps":0,"last_update":"2026-03-20T17:14:14.719451074Z"} +2026/03/20 17:14:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:14.575746253Z"} +2026/03/20 17:14:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":309.8,"last_update":"2026-03-20T17:14:14.576159637Z"} +2026/03/20 17:14:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":622,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:14.585331264Z"} +2026/03/20 17:14:19 ───────────────────────────────────────────────── +2026/03/20 17:14:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:24 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":73.60143610417171,"throughput_eps":0,"last_update":"2026-03-20T17:14:19.718941576Z"} +2026/03/20 17:14:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:19.576021127Z"} +2026/03/20 17:14:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":310.8,"last_update":"2026-03-20T17:14:19.576543228Z"} +2026/03/20 17:14:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":622,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:19.576201472Z"} +2026/03/20 17:14:24 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":13.588248124379026,"throughput_eps":0,"last_update":"2026-03-20T17:14:19.718921878Z"} +2026/03/20 17:14:24 ───────────────────────────────────────────────── +2026/03/20 17:14:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:24.575808036Z"} +2026/03/20 17:14:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":311.8,"last_update":"2026-03-20T17:14:24.576142607Z"} +2026/03/20 17:14:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:24.586452267Z"} +2026/03/20 17:14:29 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":13.588248124379026,"throughput_eps":0,"last_update":"2026-03-20T17:14:24.718884176Z"} +2026/03/20 17:14:29 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":81.74561688333738,"throughput_eps":0,"last_update":"2026-03-20T17:14:24.833049615Z"} +2026/03/20 17:14:29 ───────────────────────────────────────────────── +2026/03/20 17:14:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:34 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":81.74561688333738,"throughput_eps":0,"last_update":"2026-03-20T17:14:29.719483805Z"} +2026/03/20 17:14:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:29.575933093Z"} +2026/03/20 17:14:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":312.8,"last_update":"2026-03-20T17:14:29.576553623Z"} +2026/03/20 17:14:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:29.585122074Z"} +2026/03/20 17:14:34 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":13.826673099503221,"throughput_eps":0,"last_update":"2026-03-20T17:14:29.719452095Z"} +2026/03/20 17:14:34 ───────────────────────────────────────────────── +2026/03/20 17:14:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:34.575532081Z"} +2026/03/20 17:14:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":313.8,"last_update":"2026-03-20T17:14:34.575777913Z"} +2026/03/20 17:14:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:34.585381008Z"} +2026/03/20 17:14:39 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":13.826673099503221,"throughput_eps":0,"last_update":"2026-03-20T17:14:34.719399794Z"} +2026/03/20 17:14:39 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":81.74561688333738,"throughput_eps":0,"last_update":"2026-03-20T17:14:34.719432547Z"} +2026/03/20 17:14:39 ───────────────────────────────────────────────── +2026/03/20 17:14:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":632,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:39.587045689Z"} +2026/03/20 17:14:44 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":13.826673099503221,"throughput_eps":0,"last_update":"2026-03-20T17:14:39.719300444Z"} +2026/03/20 17:14:44 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":81.74561688333738,"throughput_eps":0,"last_update":"2026-03-20T17:14:39.71933492Z"} +2026/03/20 17:14:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:39.575507161Z"} +2026/03/20 17:14:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":314.8,"last_update":"2026-03-20T17:14:39.575972313Z"} +2026/03/20 17:14:44 ───────────────────────────────────────────────── +2026/03/20 17:14:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:44.584910391Z"} +2026/03/20 17:14:49 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":13.826673099503221,"throughput_eps":0,"last_update":"2026-03-20T17:14:44.719348615Z"} +2026/03/20 17:14:49 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":81.74561688333738,"throughput_eps":0,"last_update":"2026-03-20T17:14:44.719291657Z"} +2026/03/20 17:14:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:44.575595548Z"} +2026/03/20 17:14:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":315.6,"last_update":"2026-03-20T17:14:44.575034161Z"} +2026/03/20 17:14:49 ───────────────────────────────────────────────── +2026/03/20 17:14:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:54 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":13.826673099503221,"throughput_eps":0,"last_update":"2026-03-20T17:14:49.719484632Z"} +2026/03/20 17:14:54 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":81.74561688333738,"throughput_eps":0,"last_update":"2026-03-20T17:14:49.719528185Z"} +2026/03/20 17:14:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:49.575560774Z"} +2026/03/20 17:14:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1583,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":316.6,"last_update":"2026-03-20T17:14:49.575035767Z"} +2026/03/20 17:14:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:49.586165742Z"} +2026/03/20 17:14:54 ───────────────────────────────────────────────── +2026/03/20 17:14:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:59 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":13.826673099503221,"throughput_eps":0,"last_update":"2026-03-20T17:14:54.718945852Z"} +2026/03/20 17:14:59 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":86.9098667066699,"throughput_eps":0,"last_update":"2026-03-20T17:14:54.826527536Z"} +2026/03/20 17:14:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:54.576182247Z"} +2026/03/20 17:14:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":317.8,"last_update":"2026-03-20T17:14:54.576768491Z"} +2026/03/20 17:14:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:54.585642169Z"} +2026/03/20 17:14:59 ───────────────────────────────────────────────── +2026/03/20 17:15:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:04 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":86.9098667066699,"throughput_eps":0,"last_update":"2026-03-20T17:14:59.718653069Z"} +2026/03/20 17:15:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:59.575551705Z"} +2026/03/20 17:15:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":318.8,"last_update":"2026-03-20T17:14:59.575660474Z"} +2026/03/20 17:15:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":640,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:59.585465958Z"} +2026/03/20 17:15:04 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":14.058482079602577,"throughput_eps":0,"last_update":"2026-03-20T17:14:59.719737068Z"} +2026/03/20 17:15:04 ───────────────────────────────────────────────── +2026/03/20 17:15:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:09 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":86.9098667066699,"throughput_eps":0,"last_update":"2026-03-20T17:15:04.719556395Z"} +2026/03/20 17:15:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:04.575789924Z"} +2026/03/20 17:15:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":319.8,"last_update":"2026-03-20T17:15:04.576280905Z"} +2026/03/20 17:15:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:04.586311581Z"} +2026/03/20 17:15:09 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":14.058482079602577,"throughput_eps":0,"last_update":"2026-03-20T17:15:04.719544372Z"} +2026/03/20 17:15:09 ───────────────────────────────────────────────── +2026/03/20 17:15:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:14 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":14.058482079602577,"throughput_eps":0,"last_update":"2026-03-20T17:15:09.718801217Z"} +2026/03/20 17:15:14 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":86.9098667066699,"throughput_eps":0,"last_update":"2026-03-20T17:15:09.71881397Z"} +2026/03/20 17:15:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:09.575585538Z"} +2026/03/20 17:15:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":320.8,"last_update":"2026-03-20T17:15:09.575828314Z"} +2026/03/20 17:15:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:09.585567802Z"} +2026/03/20 17:15:14 ───────────────────────────────────────────────── +2026/03/20 17:15:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:14.576605186Z"} +2026/03/20 17:15:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":321.8,"last_update":"2026-03-20T17:15:14.5766075Z"} +2026/03/20 17:15:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":646,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:14.585342341Z"} +2026/03/20 17:15:19 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":14.058482079602577,"throughput_eps":0,"last_update":"2026-03-20T17:15:14.71959389Z"} +2026/03/20 17:15:19 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":86.9098667066699,"throughput_eps":0,"last_update":"2026-03-20T17:15:14.719602627Z"} +2026/03/20 17:15:19 ───────────────────────────────────────────────── +2026/03/20 17:15:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:24 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":86.9098667066699,"throughput_eps":0,"last_update":"2026-03-20T17:15:19.719156888Z"} +2026/03/20 17:15:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:19.575753536Z"} +2026/03/20 17:15:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":322.8,"last_update":"2026-03-20T17:15:19.576004617Z"} +2026/03/20 17:15:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:19.5857095Z"} +2026/03/20 17:15:24 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":14.058482079602577,"throughput_eps":0,"last_update":"2026-03-20T17:15:19.71914248Z"} +2026/03/20 17:15:24 ───────────────────────────────────────────────── +2026/03/20 17:15:24 [ANOMALY] time=2026-03-20T17:15:24Z score=0.8744 method=SEAD details=MAD!:w=0.28,s=0.68 RRCF-fast!:w=0.18,s=0.92 RRCF-mid!:w=0.17,s=0.94 RRCF-slow!:w=0.17,s=0.94 COPOD!:w=0.21,s=0.98 +2026/03/20 17:15:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:24.575821071Z"} +2026/03/20 17:15:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":323.8,"last_update":"2026-03-20T17:15:24.57588815Z"} +2026/03/20 17:15:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":650,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:24.586441931Z"} +2026/03/20 17:15:29 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":14.058482079602577,"throughput_eps":0,"last_update":"2026-03-20T17:15:24.719831429Z"} +2026/03/20 17:15:29 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":92.14336216533593,"throughput_eps":0,"last_update":"2026-03-20T17:15:24.831786461Z"} +2026/03/20 17:15:29 ───────────────────────────────────────────────── +2026/03/20 17:15:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:29.575521306Z"} +2026/03/20 17:15:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":324.8,"last_update":"2026-03-20T17:15:29.575958564Z"} +2026/03/20 17:15:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:29.586674326Z"} +2026/03/20 17:15:34 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":12.871407463682061,"throughput_eps":0,"last_update":"2026-03-20T17:15:29.719049841Z"} +2026/03/20 17:15:34 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":92.14336216533593,"throughput_eps":0,"last_update":"2026-03-20T17:15:29.719062265Z"} +2026/03/20 17:15:34 ───────────────────────────────────────────────── +2026/03/20 17:15:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:34.585923606Z"} +2026/03/20 17:15:39 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":12.871407463682061,"throughput_eps":0,"last_update":"2026-03-20T17:15:34.719088669Z"} +2026/03/20 17:15:39 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":92.14336216533593,"throughput_eps":0,"last_update":"2026-03-20T17:15:34.719096984Z"} +2026/03/20 17:15:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:34.576674909Z"} +2026/03/20 17:15:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":325.8,"last_update":"2026-03-20T17:15:34.57670695Z"} +2026/03/20 17:15:39 ───────────────────────────────────────────────── +2026/03/20 17:15:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:44 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":92.14336216533593,"throughput_eps":0,"last_update":"2026-03-20T17:15:39.719365271Z"} +2026/03/20 17:15:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:39.575501328Z"} +2026/03/20 17:15:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":326.8,"last_update":"2026-03-20T17:15:39.575888841Z"} +2026/03/20 17:15:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:39.58609222Z"} +2026/03/20 17:15:44 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":12.871407463682061,"throughput_eps":0,"last_update":"2026-03-20T17:15:39.71933866Z"} +2026/03/20 17:15:44 ───────────────────────────────────────────────── +2026/03/20 17:15:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:49 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":12.871407463682061,"throughput_eps":0,"last_update":"2026-03-20T17:15:44.719307182Z"} +2026/03/20 17:15:49 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":92.14336216533593,"throughput_eps":0,"last_update":"2026-03-20T17:15:44.719315387Z"} +2026/03/20 17:15:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:44.575671905Z"} +2026/03/20 17:15:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":327.8,"last_update":"2026-03-20T17:15:44.575961681Z"} +2026/03/20 17:15:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:44.586042935Z"} +2026/03/20 17:15:49 ───────────────────────────────────────────────── +2026/03/20 17:15:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:49.57588809Z"} +2026/03/20 17:15:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":328.8,"last_update":"2026-03-20T17:15:49.576136396Z"} +2026/03/20 17:15:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":660,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:49.587326698Z"} +2026/03/20 17:15:54 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":12.871407463682061,"throughput_eps":0,"last_update":"2026-03-20T17:15:49.719659981Z"} +2026/03/20 17:15:54 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":92.14336216533593,"throughput_eps":0,"last_update":"2026-03-20T17:15:49.719668097Z"} +2026/03/20 17:15:54 ───────────────────────────────────────────────── +2026/03/20 17:15:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":662,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:54.585503319Z"} +2026/03/20 17:15:59 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":12.871407463682061,"throughput_eps":0,"last_update":"2026-03-20T17:15:54.719767817Z"} +2026/03/20 17:15:59 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":96.57884533226876,"throughput_eps":0,"last_update":"2026-03-20T17:15:54.834106419Z"} +2026/03/20 17:15:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:54.575508099Z"} +2026/03/20 17:15:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":329.8,"last_update":"2026-03-20T17:15:54.57547786Z"} +2026/03/20 17:15:59 ───────────────────────────────────────────────── +2026/03/20 17:16:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:59.575722035Z"} +2026/03/20 17:16:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":330.8,"last_update":"2026-03-20T17:15:59.57608457Z"} +2026/03/20 17:16:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:59.585630689Z"} +2026/03/20 17:16:04 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":13.33265217094565,"throughput_eps":0,"last_update":"2026-03-20T17:15:59.718798637Z"} +2026/03/20 17:16:04 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":96.57884533226876,"throughput_eps":0,"last_update":"2026-03-20T17:15:59.718807373Z"} +2026/03/20 17:16:04 ───────────────────────────────────────────────── +2026/03/20 17:16:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:09 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":13.33265217094565,"throughput_eps":0,"last_update":"2026-03-20T17:16:04.718842114Z"} +2026/03/20 17:16:09 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":96.57884533226876,"throughput_eps":0,"last_update":"2026-03-20T17:16:04.718737264Z"} +2026/03/20 17:16:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:04.576019038Z"} +2026/03/20 17:16:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":331.8,"last_update":"2026-03-20T17:16:04.576294235Z"} +2026/03/20 17:16:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:04.585616215Z"} +2026/03/20 17:16:09 ───────────────────────────────────────────────── +2026/03/20 17:16:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:09.575766565Z"} +2026/03/20 17:16:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":332.8,"last_update":"2026-03-20T17:16:09.576137215Z"} +2026/03/20 17:16:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":668,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:09.587169615Z"} +2026/03/20 17:16:14 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":13.33265217094565,"throughput_eps":0,"last_update":"2026-03-20T17:16:09.719565355Z"} +2026/03/20 17:16:14 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":96.57884533226876,"throughput_eps":0,"last_update":"2026-03-20T17:16:09.719579992Z"} +2026/03/20 17:16:14 ───────────────────────────────────────────────── +2026/03/20 17:16:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:14.575724517Z"} +2026/03/20 17:16:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":333.8,"last_update":"2026-03-20T17:16:14.576030264Z"} +2026/03/20 17:16:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":670,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:14.58634632Z"} +2026/03/20 17:16:19 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":13.33265217094565,"throughput_eps":0,"last_update":"2026-03-20T17:16:14.719701211Z"} +2026/03/20 17:16:19 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":96.57884533226876,"throughput_eps":0,"last_update":"2026-03-20T17:16:14.719717072Z"} +2026/03/20 17:16:19 ───────────────────────────────────────────────── +2026/03/20 17:16:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:19.576099478Z"} +2026/03/20 17:16:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":334.8,"last_update":"2026-03-20T17:16:19.576432998Z"} +2026/03/20 17:16:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:19.586365969Z"} +2026/03/20 17:16:24 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":13.33265217094565,"throughput_eps":0,"last_update":"2026-03-20T17:16:19.719672048Z"} +2026/03/20 17:16:24 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":96.57884533226876,"throughput_eps":0,"last_update":"2026-03-20T17:16:19.719684823Z"} +2026/03/20 17:16:24 ───────────────────────────────────────────────── +2026/03/20 17:16:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:29 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":91.42948546581502,"throughput_eps":0,"last_update":"2026-03-20T17:16:24.790586118Z"} +2026/03/20 17:16:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:24.575694858Z"} +2026/03/20 17:16:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":335.8,"last_update":"2026-03-20T17:16:24.576021605Z"} +2026/03/20 17:16:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:24.586361116Z"} +2026/03/20 17:16:29 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":13.33265217094565,"throughput_eps":0,"last_update":"2026-03-20T17:16:24.719735748Z"} +2026/03/20 17:16:29 ───────────────────────────────────────────────── +2026/03/20 17:16:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:29.575545469Z"} +2026/03/20 17:16:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":336.8,"last_update":"2026-03-20T17:16:29.575660971Z"} +2026/03/20 17:16:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":676,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:29.586657884Z"} +2026/03/20 17:16:34 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":13.700245136756521,"throughput_eps":0,"last_update":"2026-03-20T17:16:29.719191023Z"} +2026/03/20 17:16:34 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":91.42948546581502,"throughput_eps":0,"last_update":"2026-03-20T17:16:29.719049261Z"} +2026/03/20 17:16:34 ───────────────────────────────────────────────── +2026/03/20 17:16:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:34.576111025Z"} +2026/03/20 17:16:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":337.8,"last_update":"2026-03-20T17:16:34.576616595Z"} +2026/03/20 17:16:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:34.585755093Z"} +2026/03/20 17:16:39 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":13.700245136756521,"throughput_eps":0,"last_update":"2026-03-20T17:16:34.719153153Z"} +2026/03/20 17:16:39 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":91.42948546581502,"throughput_eps":0,"last_update":"2026-03-20T17:16:34.719204503Z"} +2026/03/20 17:16:39 ───────────────────────────────────────────────── +2026/03/20 17:16:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:44 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":91.42948546581502,"throughput_eps":0,"last_update":"2026-03-20T17:16:39.718955742Z"} +2026/03/20 17:16:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:39.575812749Z"} +2026/03/20 17:16:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":338.8,"last_update":"2026-03-20T17:16:39.576160416Z"} +2026/03/20 17:16:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:39.585594982Z"} +2026/03/20 17:16:44 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":13.700245136756521,"throughput_eps":0,"last_update":"2026-03-20T17:16:39.718931476Z"} +2026/03/20 17:16:44 ───────────────────────────────────────────────── +2026/03/20 17:16:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:44.575986349Z"} +2026/03/20 17:16:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":339.8,"last_update":"2026-03-20T17:16:44.575968976Z"} +2026/03/20 17:16:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:44.586881787Z"} +2026/03/20 17:16:49 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":13.700245136756521,"throughput_eps":0,"last_update":"2026-03-20T17:16:44.719432936Z"} +2026/03/20 17:16:49 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":91.42948546581502,"throughput_eps":0,"last_update":"2026-03-20T17:16:44.719313788Z"} +2026/03/20 17:16:49 ───────────────────────────────────────────────── +2026/03/20 17:16:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":340.8,"last_update":"2026-03-20T17:16:49.576160842Z"} +2026/03/20 17:16:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:49.585181905Z"} +2026/03/20 17:16:54 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":13.700245136756521,"throughput_eps":0,"last_update":"2026-03-20T17:16:49.71944502Z"} +2026/03/20 17:16:54 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":91.42948546581502,"throughput_eps":0,"last_update":"2026-03-20T17:16:49.719546394Z"} +2026/03/20 17:16:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:49.575855286Z"} +2026/03/20 17:16:54 ───────────────────────────────────────────────── +2026/03/20 17:16:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:54.575734644Z"} +2026/03/20 17:16:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":341.8,"last_update":"2026-03-20T17:16:54.576125835Z"} +2026/03/20 17:16:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:54.58660776Z"} +2026/03/20 17:16:59 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":13.700245136756521,"throughput_eps":0,"last_update":"2026-03-20T17:16:54.718912439Z"} +2026/03/20 17:16:59 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":85.54184317265202,"throughput_eps":0,"last_update":"2026-03-20T17:16:54.780845351Z"} +2026/03/20 17:16:59 ───────────────────────────────────────────────── +2026/03/20 17:17:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:04 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":85.54184317265202,"throughput_eps":0,"last_update":"2026-03-20T17:16:59.719561226Z"} +2026/03/20 17:17:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:59.575527236Z"} +2026/03/20 17:17:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":342.8,"last_update":"2026-03-20T17:16:59.57580566Z"} +2026/03/20 17:17:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":688,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:59.586072032Z"} +2026/03/20 17:17:04 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":12.578859109405217,"throughput_eps":0,"last_update":"2026-03-20T17:16:59.719455363Z"} +2026/03/20 17:17:04 ───────────────────────────────────────────────── +2026/03/20 17:17:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:04.575531133Z"} +2026/03/20 17:17:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":343.8,"last_update":"2026-03-20T17:17:04.575919328Z"} +2026/03/20 17:17:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:04.586657955Z"} +2026/03/20 17:17:09 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":12.578859109405217,"throughput_eps":0,"last_update":"2026-03-20T17:17:04.718930216Z"} +2026/03/20 17:17:09 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":85.54184317265202,"throughput_eps":0,"last_update":"2026-03-20T17:17:04.718907823Z"} +2026/03/20 17:17:09 ───────────────────────────────────────────────── +2026/03/20 17:17:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:09.575980944Z"} +2026/03/20 17:17:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":344.8,"last_update":"2026-03-20T17:17:09.576303563Z"} +2026/03/20 17:17:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:09.585336849Z"} +2026/03/20 17:17:14 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":12.578859109405217,"throughput_eps":0,"last_update":"2026-03-20T17:17:09.719764526Z"} +2026/03/20 17:17:14 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":85.54184317265202,"throughput_eps":0,"last_update":"2026-03-20T17:17:09.719715072Z"} +2026/03/20 17:17:14 ───────────────────────────────────────────────── +2026/03/20 17:17:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:14.575513305Z"} +2026/03/20 17:17:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":345.8,"last_update":"2026-03-20T17:17:14.575589812Z"} +2026/03/20 17:17:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:14.585046009Z"} +2026/03/20 17:17:19 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":12.578859109405217,"throughput_eps":0,"last_update":"2026-03-20T17:17:14.719341975Z"} +2026/03/20 17:17:19 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":85.54184317265202,"throughput_eps":0,"last_update":"2026-03-20T17:17:14.719290948Z"} +2026/03/20 17:17:19 ───────────────────────────────────────────────── +2026/03/20 17:17:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:24 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":12.578859109405217,"throughput_eps":0,"last_update":"2026-03-20T17:17:19.719068847Z"} +2026/03/20 17:17:24 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":85.54184317265202,"throughput_eps":0,"last_update":"2026-03-20T17:17:19.719044751Z"} +2026/03/20 17:17:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:19.575818615Z"} +2026/03/20 17:17:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":346.8,"last_update":"2026-03-20T17:17:19.576140523Z"} +2026/03/20 17:17:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:19.585665222Z"} +2026/03/20 17:17:24 ───────────────────────────────────────────────── +2026/03/20 17:17:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:24.585914983Z"} +2026/03/20 17:17:29 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":12.578859109405217,"throughput_eps":0,"last_update":"2026-03-20T17:17:24.720273692Z"} +2026/03/20 17:17:29 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":81.18141693812161,"throughput_eps":0,"last_update":"2026-03-20T17:17:24.782978659Z"} +2026/03/20 17:17:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:29.575545122Z"} +2026/03/20 17:17:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":347.8,"last_update":"2026-03-20T17:17:24.576140113Z"} +2026/03/20 17:17:29 ───────────────────────────────────────────────── +2026/03/20 17:17:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":348.8,"last_update":"2026-03-20T17:17:29.576066112Z"} +2026/03/20 17:17:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":700,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:29.586174913Z"} +2026/03/20 17:17:34 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":12.979230887524174,"throughput_eps":0,"last_update":"2026-03-20T17:17:29.719805536Z"} +2026/03/20 17:17:34 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":81.18141693812161,"throughput_eps":0,"last_update":"2026-03-20T17:17:29.719694624Z"} +2026/03/20 17:17:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:29.575545122Z"} +2026/03/20 17:17:34 ───────────────────────────────────────────────── +2026/03/20 17:17:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:39 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":81.18141693812161,"throughput_eps":0,"last_update":"2026-03-20T17:17:34.719524856Z"} +2026/03/20 17:17:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:34.576102758Z"} +2026/03/20 17:17:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":349.8,"last_update":"2026-03-20T17:17:34.576427792Z"} +2026/03/20 17:17:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":702,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:34.585265033Z"} +2026/03/20 17:17:39 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":12.979230887524174,"throughput_eps":0,"last_update":"2026-03-20T17:17:34.719545725Z"} +2026/03/20 17:17:39 ───────────────────────────────────────────────── +2026/03/20 17:17:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:44 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":81.18141693812161,"throughput_eps":0,"last_update":"2026-03-20T17:17:39.719574473Z"} +2026/03/20 17:17:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:39.575741376Z"} +2026/03/20 17:17:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":350.8,"last_update":"2026-03-20T17:17:39.575955777Z"} +2026/03/20 17:17:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:39.586251316Z"} +2026/03/20 17:17:44 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":12.979230887524174,"throughput_eps":0,"last_update":"2026-03-20T17:17:39.719686768Z"} +2026/03/20 17:17:44 ───────────────────────────────────────────────── +2026/03/20 17:17:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:44.57587089Z"} +2026/03/20 17:17:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":351.8,"last_update":"2026-03-20T17:17:44.576231571Z"} +2026/03/20 17:17:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:44.58671443Z"} +2026/03/20 17:17:49 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":12.979230887524174,"throughput_eps":0,"last_update":"2026-03-20T17:17:44.718925326Z"} +2026/03/20 17:17:49 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":81.18141693812161,"throughput_eps":0,"last_update":"2026-03-20T17:17:44.71893798Z"} +2026/03/20 17:17:49 ───────────────────────────────────────────────── +2026/03/20 17:17:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:49.575542702Z"} +2026/03/20 17:17:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":352.8,"last_update":"2026-03-20T17:17:49.576045327Z"} +2026/03/20 17:17:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:49.585933614Z"} +2026/03/20 17:17:54 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":12.979230887524174,"throughput_eps":0,"last_update":"2026-03-20T17:17:49.71939Z"} +2026/03/20 17:17:54 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":81.18141693812161,"throughput_eps":0,"last_update":"2026-03-20T17:17:49.719286932Z"} +2026/03/20 17:17:54 ───────────────────────────────────────────────── +2026/03/20 17:17:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:54.575795663Z"} +2026/03/20 17:17:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":353.8,"last_update":"2026-03-20T17:17:54.576075039Z"} +2026/03/20 17:17:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:54.587240016Z"} +2026/03/20 17:17:59 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":12.979230887524174,"throughput_eps":0,"last_update":"2026-03-20T17:17:54.719539353Z"} +2026/03/20 17:17:59 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":88.7056029504973,"throughput_eps":0,"last_update":"2026-03-20T17:17:54.838376988Z"} +2026/03/20 17:17:59 ───────────────────────────────────────────────── +2026/03/20 17:18:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:04 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":88.7056029504973,"throughput_eps":0,"last_update":"2026-03-20T17:17:59.719469059Z"} +2026/03/20 17:18:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:59.575759382Z"} +2026/03/20 17:18:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":354.8,"last_update":"2026-03-20T17:17:59.576171553Z"} +2026/03/20 17:18:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":712,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:59.585302298Z"} +2026/03/20 17:18:04 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.60797811001934,"throughput_eps":0,"last_update":"2026-03-20T17:17:59.719444702Z"} +2026/03/20 17:18:04 ───────────────────────────────────────────────── +2026/03/20 17:18:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:09 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":88.7056029504973,"throughput_eps":0,"last_update":"2026-03-20T17:18:04.719667263Z"} +2026/03/20 17:18:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:04.575572546Z"} +2026/03/20 17:18:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":355.8,"last_update":"2026-03-20T17:18:04.575513452Z"} +2026/03/20 17:18:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:04.585257063Z"} +2026/03/20 17:18:09 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.60797811001934,"throughput_eps":0,"last_update":"2026-03-20T17:18:04.719797803Z"} +2026/03/20 17:18:09 ───────────────────────────────────────────────── +2026/03/20 17:18:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:14 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.60797811001934,"throughput_eps":0,"last_update":"2026-03-20T17:18:09.719102776Z"} +2026/03/20 17:18:14 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":88.7056029504973,"throughput_eps":0,"last_update":"2026-03-20T17:18:09.718943199Z"} +2026/03/20 17:18:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:09.575916459Z"} +2026/03/20 17:18:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":356.8,"last_update":"2026-03-20T17:18:09.576271892Z"} +2026/03/20 17:18:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:09.586713081Z"} +2026/03/20 17:18:14 ───────────────────────────────────────────────── +2026/03/20 17:18:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":357.8,"last_update":"2026-03-20T17:18:14.576625006Z"} +2026/03/20 17:18:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":718,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:14.58589119Z"} +2026/03/20 17:18:19 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.60797811001934,"throughput_eps":0,"last_update":"2026-03-20T17:18:14.719062688Z"} +2026/03/20 17:18:19 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":88.7056029504973,"throughput_eps":0,"last_update":"2026-03-20T17:18:14.719047097Z"} +2026/03/20 17:18:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:14.575974068Z"} +2026/03/20 17:18:19 ───────────────────────────────────────────────── +2026/03/20 17:18:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:19.575788649Z"} +2026/03/20 17:18:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":358.8,"last_update":"2026-03-20T17:18:19.576212092Z"} +2026/03/20 17:18:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:19.585187008Z"} +2026/03/20 17:18:24 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.60797811001934,"throughput_eps":0,"last_update":"2026-03-20T17:18:19.719392629Z"} +2026/03/20 17:18:24 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":88.7056029504973,"throughput_eps":0,"last_update":"2026-03-20T17:18:19.719412697Z"} +2026/03/20 17:18:24 ───────────────────────────────────────────────── +2026/03/20 17:18:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":722,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:24.586791947Z"} +2026/03/20 17:18:29 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.60797811001934,"throughput_eps":0,"last_update":"2026-03-20T17:18:24.719051626Z"} +2026/03/20 17:18:29 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":94.30956456039785,"throughput_eps":0,"last_update":"2026-03-20T17:18:24.835811923Z"} +2026/03/20 17:18:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:24.576044389Z"} +2026/03/20 17:18:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":359.8,"last_update":"2026-03-20T17:18:24.577021283Z"} +2026/03/20 17:18:29 ───────────────────────────────────────────────── +2026/03/20 17:18:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":360.8,"last_update":"2026-03-20T17:18:29.575941401Z"} +2026/03/20 17:18:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:29.586940651Z"} +2026/03/20 17:18:34 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":14.462538488015472,"throughput_eps":0,"last_update":"2026-03-20T17:18:29.719306756Z"} +2026/03/20 17:18:34 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":94.30956456039785,"throughput_eps":0,"last_update":"2026-03-20T17:18:29.719272641Z"} +2026/03/20 17:18:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:29.575662696Z"} +2026/03/20 17:18:34 ───────────────────────────────────────────────── +2026/03/20 17:18:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:34.585178802Z"} +2026/03/20 17:18:39 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":14.462538488015472,"throughput_eps":0,"last_update":"2026-03-20T17:18:34.719565184Z"} +2026/03/20 17:18:39 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":94.30956456039785,"throughput_eps":0,"last_update":"2026-03-20T17:18:34.719535447Z"} +2026/03/20 17:18:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:34.576079276Z"} +2026/03/20 17:18:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":361.8,"last_update":"2026-03-20T17:18:34.576396905Z"} +2026/03/20 17:18:39 ───────────────────────────────────────────────── +2026/03/20 17:18:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:39.57581477Z"} +2026/03/20 17:18:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":362.8,"last_update":"2026-03-20T17:18:39.576135075Z"} +2026/03/20 17:18:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":728,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:39.58599572Z"} +2026/03/20 17:18:44 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":14.462538488015472,"throughput_eps":0,"last_update":"2026-03-20T17:18:39.719336888Z"} +2026/03/20 17:18:44 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":94.30956456039785,"throughput_eps":0,"last_update":"2026-03-20T17:18:39.719301501Z"} +2026/03/20 17:18:44 ───────────────────────────────────────────────── +2026/03/20 17:18:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:44.575826891Z"} +2026/03/20 17:18:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":363.8,"last_update":"2026-03-20T17:18:44.576069397Z"} +2026/03/20 17:18:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":730,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:44.587052165Z"} +2026/03/20 17:18:49 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":14.462538488015472,"throughput_eps":0,"last_update":"2026-03-20T17:18:44.719472359Z"} +2026/03/20 17:18:49 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":94.30956456039785,"throughput_eps":0,"last_update":"2026-03-20T17:18:44.719440297Z"} +2026/03/20 17:18:49 ───────────────────────────────────────────────── +2026/03/20 17:18:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":364.8,"last_update":"2026-03-20T17:18:49.57615038Z"} +2026/03/20 17:18:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:49.58750376Z"} +2026/03/20 17:18:54 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":14.462538488015472,"throughput_eps":0,"last_update":"2026-03-20T17:18:49.718815798Z"} +2026/03/20 17:18:54 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":94.30956456039785,"throughput_eps":0,"last_update":"2026-03-20T17:18:49.718676851Z"} +2026/03/20 17:18:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:49.575838282Z"} +2026/03/20 17:18:54 ───────────────────────────────────────────────── +2026/03/20 17:18:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:54.575977284Z"} +2026/03/20 17:18:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":365.8,"last_update":"2026-03-20T17:18:54.576310523Z"} +2026/03/20 17:18:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:54.585294017Z"} +2026/03/20 17:18:59 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":14.462538488015472,"throughput_eps":0,"last_update":"2026-03-20T17:18:54.719667078Z"} +2026/03/20 17:18:59 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":88.46718964831828,"throughput_eps":0,"last_update":"2026-03-20T17:18:54.784821666Z"} +2026/03/20 17:18:59 ───────────────────────────────────────────────── +2026/03/20 17:19:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:59.57551422Z"} +2026/03/20 17:19:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":366.8,"last_update":"2026-03-20T17:18:59.575684536Z"} +2026/03/20 17:19:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":736,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:59.58650857Z"} +2026/03/20 17:19:04 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.493468990412378,"throughput_eps":0,"last_update":"2026-03-20T17:18:59.719792164Z"} +2026/03/20 17:19:04 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":88.46718964831828,"throughput_eps":0,"last_update":"2026-03-20T17:18:59.718654812Z"} +2026/03/20 17:19:04 ───────────────────────────────────────────────── +2026/03/20 17:19:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":367.8,"last_update":"2026-03-20T17:19:04.576081058Z"} +2026/03/20 17:19:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":738,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:04.585973385Z"} +2026/03/20 17:19:09 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.493468990412378,"throughput_eps":0,"last_update":"2026-03-20T17:19:04.719347924Z"} +2026/03/20 17:19:09 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":88.46718964831828,"throughput_eps":0,"last_update":"2026-03-20T17:19:04.719238574Z"} +2026/03/20 17:19:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:04.575848803Z"} +2026/03/20 17:19:09 ───────────────────────────────────────────────── +2026/03/20 17:19:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:09.575547373Z"} +2026/03/20 17:19:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":368.8,"last_update":"2026-03-20T17:19:09.575851617Z"} +2026/03/20 17:19:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":740,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:09.586056213Z"} +2026/03/20 17:19:14 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.493468990412378,"throughput_eps":0,"last_update":"2026-03-20T17:19:09.719425664Z"} +2026/03/20 17:19:14 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":88.46718964831828,"throughput_eps":0,"last_update":"2026-03-20T17:19:09.719390316Z"} +2026/03/20 17:19:14 ───────────────────────────────────────────────── +2026/03/20 17:19:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:14.58486883Z"} +2026/03/20 17:19:19 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.493468990412378,"throughput_eps":0,"last_update":"2026-03-20T17:19:14.71924328Z"} +2026/03/20 17:19:19 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":88.46718964831828,"throughput_eps":0,"last_update":"2026-03-20T17:19:14.71913429Z"} +2026/03/20 17:19:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:14.575938899Z"} +2026/03/20 17:19:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":369.8,"last_update":"2026-03-20T17:19:14.576247001Z"} +2026/03/20 17:19:19 ───────────────────────────────────────────────── +2026/03/20 17:19:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:19.575732704Z"} +2026/03/20 17:19:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":370.8,"last_update":"2026-03-20T17:19:19.575993725Z"} +2026/03/20 17:19:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:19.585166682Z"} +2026/03/20 17:19:24 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.493468990412378,"throughput_eps":0,"last_update":"2026-03-20T17:19:19.718812245Z"} +2026/03/20 17:19:24 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":88.46718964831828,"throughput_eps":0,"last_update":"2026-03-20T17:19:19.718703817Z"} +2026/03/20 17:19:24 ───────────────────────────────────────────────── +2026/03/20 17:19:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:24.575764378Z"} +2026/03/20 17:19:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":371.8,"last_update":"2026-03-20T17:19:24.576091386Z"} +2026/03/20 17:19:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:24.586885122Z"} +2026/03/20 17:19:29 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.493468990412378,"throughput_eps":0,"last_update":"2026-03-20T17:19:24.719481593Z"} +2026/03/20 17:19:29 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":88.46718964831828,"throughput_eps":0,"last_update":"2026-03-20T17:19:24.719314894Z"} +2026/03/20 17:19:29 ───────────────────────────────────────────────── +2026/03/20 17:19:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:34 [detection_layer] {"stage_name":"detection_layer","events_processed":62,"events_dropped":0,"avg_latency_ms":14.657121792329903,"throughput_eps":0,"last_update":"2026-03-20T17:19:29.718917254Z"} +2026/03/20 17:19:34 [transform_engine] {"stage_name":"transform_engine","events_processed":62,"events_dropped":0,"avg_latency_ms":93.62624151865462,"throughput_eps":0,"last_update":"2026-03-20T17:19:29.719027515Z"} +2026/03/20 17:19:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:29.575559707Z"} +2026/03/20 17:19:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":372.8,"last_update":"2026-03-20T17:19:29.575740133Z"} +2026/03/20 17:19:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:29.586691944Z"} +2026/03/20 17:19:34 ───────────────────────────────────────────────── +2026/03/20 17:19:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:34.575683711Z"} +2026/03/20 17:19:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":373.8,"last_update":"2026-03-20T17:19:34.576242594Z"} +2026/03/20 17:19:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":750,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:34.585559798Z"} +2026/03/20 17:19:39 [detection_layer] {"stage_name":"detection_layer","events_processed":62,"events_dropped":0,"avg_latency_ms":14.657121792329903,"throughput_eps":0,"last_update":"2026-03-20T17:19:34.718826797Z"} +2026/03/20 17:19:39 [transform_engine] {"stage_name":"transform_engine","events_processed":62,"events_dropped":0,"avg_latency_ms":93.62624151865462,"throughput_eps":0,"last_update":"2026-03-20T17:19:34.71872381Z"} +2026/03/20 17:19:39 ───────────────────────────────────────────────── +2026/03/20 17:19:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:39.57587107Z"} +2026/03/20 17:19:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":374.8,"last_update":"2026-03-20T17:19:39.576124727Z"} +2026/03/20 17:19:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":752,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:39.587022955Z"} +2026/03/20 17:19:44 [detection_layer] {"stage_name":"detection_layer","events_processed":62,"events_dropped":0,"avg_latency_ms":14.657121792329903,"throughput_eps":0,"last_update":"2026-03-20T17:19:39.719428183Z"} +2026/03/20 17:19:44 [transform_engine] {"stage_name":"transform_engine","events_processed":62,"events_dropped":0,"avg_latency_ms":93.62624151865462,"throughput_eps":0,"last_update":"2026-03-20T17:19:39.719317901Z"} +2026/03/20 17:19:44 ───────────────────────────────────────────────── +2026/03/20 17:19:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:44.575493188Z"} +2026/03/20 17:19:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":375.8,"last_update":"2026-03-20T17:19:44.576062621Z"} +2026/03/20 17:19:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:44.587134041Z"} +2026/03/20 17:19:49 [detection_layer] {"stage_name":"detection_layer","events_processed":62,"events_dropped":0,"avg_latency_ms":14.657121792329903,"throughput_eps":0,"last_update":"2026-03-20T17:19:44.719376216Z"} +2026/03/20 17:19:49 [transform_engine] {"stage_name":"transform_engine","events_processed":62,"events_dropped":0,"avg_latency_ms":93.62624151865462,"throughput_eps":0,"last_update":"2026-03-20T17:19:44.71947706Z"} +2026/03/20 17:19:49 ───────────────────────────────────────────────── +2026/03/20 17:19:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:54 [detection_layer] {"stage_name":"detection_layer","events_processed":62,"events_dropped":0,"avg_latency_ms":14.657121792329903,"throughput_eps":0,"last_update":"2026-03-20T17:19:49.71958845Z"} +2026/03/20 17:19:54 [transform_engine] {"stage_name":"transform_engine","events_processed":62,"events_dropped":0,"avg_latency_ms":93.62624151865462,"throughput_eps":0,"last_update":"2026-03-20T17:19:49.719566237Z"} +2026/03/20 17:19:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:49.575768482Z"} +2026/03/20 17:19:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":376.8,"last_update":"2026-03-20T17:19:49.576619584Z"} +2026/03/20 17:19:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:49.586302691Z"} +2026/03/20 17:19:54 ───────────────────────────────────────────────── +2026/03/20 17:19:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:59 [detection_layer] {"stage_name":"detection_layer","events_processed":62,"events_dropped":0,"avg_latency_ms":14.657121792329903,"throughput_eps":0,"last_update":"2026-03-20T17:19:54.719641972Z"} +2026/03/20 17:19:59 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":97.17956121492371,"throughput_eps":0,"last_update":"2026-03-20T17:19:54.83115881Z"} +2026/03/20 17:19:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:54.57598765Z"} +2026/03/20 17:19:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":377.6,"last_update":"2026-03-20T17:19:54.576012578Z"} +2026/03/20 17:19:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":758,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:54.586237073Z"} +2026/03/20 17:19:59 ───────────────────────────────────────────────── +2026/03/20 17:20:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:59.576058007Z"} +2026/03/20 17:20:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1893,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":378.6,"last_update":"2026-03-20T17:19:59.576013862Z"} +2026/03/20 17:20:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:59.586650057Z"} +2026/03/20 17:20:04 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":14.990703033863923,"throughput_eps":0,"last_update":"2026-03-20T17:19:59.719468962Z"} +2026/03/20 17:20:04 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":97.17956121492371,"throughput_eps":0,"last_update":"2026-03-20T17:19:59.719409008Z"} +2026/03/20 17:20:04 ───────────────────────────────────────────────── +2026/03/20 17:20:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:04.575501682Z"} +2026/03/20 17:20:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":379.8,"last_update":"2026-03-20T17:20:04.575679584Z"} +2026/03/20 17:20:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:04.596817586Z"} +2026/03/20 17:20:09 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":14.990703033863923,"throughput_eps":0,"last_update":"2026-03-20T17:20:04.7192104Z"} +2026/03/20 17:20:09 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":97.17956121492371,"throughput_eps":0,"last_update":"2026-03-20T17:20:04.7191841Z"} +2026/03/20 17:20:09 ───────────────────────────────────────────────── +2026/03/20 17:20:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":380.8,"last_update":"2026-03-20T17:20:09.576337221Z"} +2026/03/20 17:20:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:09.585342556Z"} +2026/03/20 17:20:14 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":14.990703033863923,"throughput_eps":0,"last_update":"2026-03-20T17:20:09.719667253Z"} +2026/03/20 17:20:14 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":97.17956121492371,"throughput_eps":0,"last_update":"2026-03-20T17:20:09.719782675Z"} +2026/03/20 17:20:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:09.575891686Z"} +2026/03/20 17:20:14 ───────────────────────────────────────────────── +2026/03/20 17:20:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:14.575507744Z"} +2026/03/20 17:20:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":381.8,"last_update":"2026-03-20T17:20:14.575571987Z"} +2026/03/20 17:20:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":766,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:14.58594141Z"} +2026/03/20 17:20:19 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":14.990703033863923,"throughput_eps":0,"last_update":"2026-03-20T17:20:14.719218389Z"} +2026/03/20 17:20:19 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":97.17956121492371,"throughput_eps":0,"last_update":"2026-03-20T17:20:14.71919857Z"} +2026/03/20 17:20:19 ───────────────────────────────────────────────── +2026/03/20 17:20:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:24 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":14.990703033863923,"throughput_eps":0,"last_update":"2026-03-20T17:20:19.719748302Z"} +2026/03/20 17:20:24 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":97.17956121492371,"throughput_eps":0,"last_update":"2026-03-20T17:20:19.718641991Z"} +2026/03/20 17:20:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:19.575759693Z"} +2026/03/20 17:20:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":382.8,"last_update":"2026-03-20T17:20:19.57616928Z"} +2026/03/20 17:20:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":768,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:19.585495742Z"} +2026/03/20 17:20:24 ───────────────────────────────────────────────── +2026/03/20 17:20:24 [ANOMALY] time=2026-03-20T17:20:24Z score=0.8711 method=SEAD details=MAD!:w=0.27,s=0.92 RRCF-fast:w=0.18,s=0.73 RRCF-mid:w=0.16,s=0.86 RRCF-slow!:w=0.16,s=0.89 COPOD!:w=0.22,s=0.92 +2026/03/20 17:20:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:29 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":90.82371897193897,"throughput_eps":0,"last_update":"2026-03-20T17:20:24.785057766Z"} +2026/03/20 17:20:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:24.575747817Z"} +2026/03/20 17:20:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":383.8,"last_update":"2026-03-20T17:20:24.576199915Z"} +2026/03/20 17:20:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":770,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:24.586366379Z"} +2026/03/20 17:20:29 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":14.990703033863923,"throughput_eps":0,"last_update":"2026-03-20T17:20:24.7197688Z"} +2026/03/20 17:20:29 ───────────────────────────────────────────────── +2026/03/20 17:20:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:34 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":90.82371897193897,"throughput_eps":0,"last_update":"2026-03-20T17:20:29.719776815Z"} +2026/03/20 17:20:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:29.575542792Z"} +2026/03/20 17:20:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":384.8,"last_update":"2026-03-20T17:20:29.575830344Z"} +2026/03/20 17:20:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:29.586369763Z"} +2026/03/20 17:20:34 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":15.34554502709114,"throughput_eps":0,"last_update":"2026-03-20T17:20:29.719729915Z"} +2026/03/20 17:20:34 ───────────────────────────────────────────────── +2026/03/20 17:20:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:34.575734377Z"} +2026/03/20 17:20:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":385.8,"last_update":"2026-03-20T17:20:34.57563159Z"} +2026/03/20 17:20:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:34.584633169Z"} +2026/03/20 17:20:39 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":15.34554502709114,"throughput_eps":0,"last_update":"2026-03-20T17:20:34.718871987Z"} +2026/03/20 17:20:39 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":90.82371897193897,"throughput_eps":0,"last_update":"2026-03-20T17:20:34.718900552Z"} +2026/03/20 17:20:39 ───────────────────────────────────────────────── +2026/03/20 17:20:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":386.8,"last_update":"2026-03-20T17:20:39.575454747Z"} +2026/03/20 17:20:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:39.58563056Z"} +2026/03/20 17:20:44 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":15.34554502709114,"throughput_eps":0,"last_update":"2026-03-20T17:20:39.71882769Z"} +2026/03/20 17:20:44 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":90.82371897193897,"throughput_eps":0,"last_update":"2026-03-20T17:20:39.718944223Z"} +2026/03/20 17:20:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:39.575528529Z"} +2026/03/20 17:20:44 ───────────────────────────────────────────────── +2026/03/20 17:20:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:44.575508203Z"} +2026/03/20 17:20:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":387.8,"last_update":"2026-03-20T17:20:44.575815914Z"} +2026/03/20 17:20:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:44.585672896Z"} +2026/03/20 17:20:49 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":15.34554502709114,"throughput_eps":0,"last_update":"2026-03-20T17:20:44.71878839Z"} +2026/03/20 17:20:49 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":90.82371897193897,"throughput_eps":0,"last_update":"2026-03-20T17:20:44.718780694Z"} +2026/03/20 17:20:49 ───────────────────────────────────────────────── +2026/03/20 17:20:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:49.576030359Z"} +2026/03/20 17:20:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":388.8,"last_update":"2026-03-20T17:20:49.576290368Z"} +2026/03/20 17:20:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":780,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:49.585542869Z"} +2026/03/20 17:20:54 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":15.34554502709114,"throughput_eps":0,"last_update":"2026-03-20T17:20:49.718826177Z"} +2026/03/20 17:20:54 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":90.82371897193897,"throughput_eps":0,"last_update":"2026-03-20T17:20:49.718779768Z"} +2026/03/20 17:20:54 ───────────────────────────────────────────────── +2026/03/20 17:20:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":389.8,"last_update":"2026-03-20T17:20:54.575986478Z"} +2026/03/20 17:20:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":782,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:54.586118257Z"} +2026/03/20 17:20:59 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":15.34554502709114,"throughput_eps":0,"last_update":"2026-03-20T17:20:54.719375765Z"} +2026/03/20 17:20:59 [transform_engine] {"stage_name":"transform_engine","events_processed":65,"events_dropped":0,"avg_latency_ms":95.09567057755119,"throughput_eps":0,"last_update":"2026-03-20T17:20:54.831613558Z"} +2026/03/20 17:20:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:54.575998853Z"} +2026/03/20 17:20:59 ───────────────────────────────────────────────── +2026/03/20 17:21:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:59.586700883Z"} +2026/03/20 17:21:04 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":15.436566821672914,"throughput_eps":0,"last_update":"2026-03-20T17:20:59.719051181Z"} +2026/03/20 17:21:04 [transform_engine] {"stage_name":"transform_engine","events_processed":65,"events_dropped":0,"avg_latency_ms":95.09567057755119,"throughput_eps":0,"last_update":"2026-03-20T17:20:59.719064567Z"} +2026/03/20 17:21:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:59.575886444Z"} +2026/03/20 17:21:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":390.8,"last_update":"2026-03-20T17:20:59.576230575Z"} +2026/03/20 17:21:04 ───────────────────────────────────────────────── +2026/03/20 17:21:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":391.8,"last_update":"2026-03-20T17:21:04.575836114Z"} +2026/03/20 17:21:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:04.585478584Z"} +2026/03/20 17:21:09 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":15.436566821672914,"throughput_eps":0,"last_update":"2026-03-20T17:21:04.719753056Z"} +2026/03/20 17:21:09 [transform_engine] {"stage_name":"transform_engine","events_processed":65,"events_dropped":0,"avg_latency_ms":95.09567057755119,"throughput_eps":0,"last_update":"2026-03-20T17:21:04.718625794Z"} +2026/03/20 17:21:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:04.575504538Z"} +2026/03/20 17:21:09 ───────────────────────────────────────────────── +2026/03/20 17:21:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:09.575927802Z"} +2026/03/20 17:21:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":392.8,"last_update":"2026-03-20T17:21:09.576261272Z"} +2026/03/20 17:21:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:09.585852924Z"} +2026/03/20 17:21:14 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":15.436566821672914,"throughput_eps":0,"last_update":"2026-03-20T17:21:09.719167255Z"} +2026/03/20 17:21:14 [transform_engine] {"stage_name":"transform_engine","events_processed":65,"events_dropped":0,"avg_latency_ms":95.09567057755119,"throughput_eps":0,"last_update":"2026-03-20T17:21:09.719182314Z"} +2026/03/20 17:21:14 ───────────────────────────────────────────────── +2026/03/20 17:21:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:14.575757104Z"} +2026/03/20 17:21:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":393.8,"last_update":"2026-03-20T17:21:14.575998328Z"} +2026/03/20 17:21:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:14.577060476Z"} +2026/03/20 17:21:19 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":15.436566821672914,"throughput_eps":0,"last_update":"2026-03-20T17:21:14.719186262Z"} +2026/03/20 17:21:19 [transform_engine] {"stage_name":"transform_engine","events_processed":65,"events_dropped":0,"avg_latency_ms":95.09567057755119,"throughput_eps":0,"last_update":"2026-03-20T17:21:14.719196843Z"} +2026/03/20 17:21:19 ───────────────────────────────────────────────── +2026/03/20 17:21:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:24 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":15.436566821672914,"throughput_eps":0,"last_update":"2026-03-20T17:21:19.71939483Z"} +2026/03/20 17:21:24 [transform_engine] {"stage_name":"transform_engine","events_processed":65,"events_dropped":0,"avg_latency_ms":95.09567057755119,"throughput_eps":0,"last_update":"2026-03-20T17:21:19.719409098Z"} +2026/03/20 17:21:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:19.575571034Z"} +2026/03/20 17:21:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":394.8,"last_update":"2026-03-20T17:21:19.575467506Z"} +2026/03/20 17:21:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:19.576490158Z"} +2026/03/20 17:21:24 ───────────────────────────────────────────────── +2026/03/20 17:21:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:24.576719931Z"} +2026/03/20 17:21:29 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":15.436566821672914,"throughput_eps":0,"last_update":"2026-03-20T17:21:24.719503202Z"} +2026/03/20 17:21:29 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":88.93729906204095,"throughput_eps":0,"last_update":"2026-03-20T17:21:24.783825469Z"} +2026/03/20 17:21:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:24.575579342Z"} +2026/03/20 17:21:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":395.8,"last_update":"2026-03-20T17:21:24.575693982Z"} +2026/03/20 17:21:29 ───────────────────────────────────────────────── +2026/03/20 17:21:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":396.8,"last_update":"2026-03-20T17:21:29.576028177Z"} +2026/03/20 17:21:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":796,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:29.587427393Z"} +2026/03/20 17:21:34 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":15.290875057338331,"throughput_eps":0,"last_update":"2026-03-20T17:21:29.719858697Z"} +2026/03/20 17:21:34 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":88.93729906204095,"throughput_eps":0,"last_update":"2026-03-20T17:21:29.718675623Z"} +2026/03/20 17:21:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:29.575817186Z"} +2026/03/20 17:21:34 ───────────────────────────────────────────────── +2026/03/20 17:21:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:34.575734403Z"} +2026/03/20 17:21:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":397.8,"last_update":"2026-03-20T17:21:34.575728182Z"} +2026/03/20 17:21:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:34.586533955Z"} +2026/03/20 17:21:39 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":15.290875057338331,"throughput_eps":0,"last_update":"2026-03-20T17:21:34.718803528Z"} +2026/03/20 17:21:39 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":88.93729906204095,"throughput_eps":0,"last_update":"2026-03-20T17:21:34.71874172Z"} +2026/03/20 17:21:39 ───────────────────────────────────────────────── +2026/03/20 17:21:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:39.575666044Z"} +2026/03/20 17:21:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":398.8,"last_update":"2026-03-20T17:21:39.576035604Z"} +2026/03/20 17:21:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":800,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:39.585767944Z"} +2026/03/20 17:21:44 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":15.290875057338331,"throughput_eps":0,"last_update":"2026-03-20T17:21:39.71904777Z"} +2026/03/20 17:21:44 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":88.93729906204095,"throughput_eps":0,"last_update":"2026-03-20T17:21:39.719019075Z"} +2026/03/20 17:21:44 ───────────────────────────────────────────────── +2026/03/20 17:21:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:44.576404844Z"} +2026/03/20 17:21:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":399.8,"last_update":"2026-03-20T17:21:44.576390777Z"} +2026/03/20 17:21:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":802,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:44.585743408Z"} +2026/03/20 17:21:49 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":15.290875057338331,"throughput_eps":0,"last_update":"2026-03-20T17:21:44.71899155Z"} +2026/03/20 17:21:49 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":88.93729906204095,"throughput_eps":0,"last_update":"2026-03-20T17:21:44.719038539Z"} +2026/03/20 17:21:49 ───────────────────────────────────────────────── +2026/03/20 17:21:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:49.575653165Z"} +2026/03/20 17:21:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":400.8,"last_update":"2026-03-20T17:21:49.576091838Z"} +2026/03/20 17:21:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:49.58644064Z"} +2026/03/20 17:21:54 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":15.290875057338331,"throughput_eps":0,"last_update":"2026-03-20T17:21:49.719850123Z"} +2026/03/20 17:21:54 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":88.93729906204095,"throughput_eps":0,"last_update":"2026-03-20T17:21:49.718680905Z"} +2026/03/20 17:21:54 ───────────────────────────────────────────────── +2026/03/20 17:21:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:54.586797868Z"} +2026/03/20 17:21:59 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":15.290875057338331,"throughput_eps":0,"last_update":"2026-03-20T17:21:54.719052245Z"} +2026/03/20 17:21:59 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":83.92129264963276,"throughput_eps":0,"last_update":"2026-03-20T17:21:54.782955328Z"} +2026/03/20 17:21:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:54.575496035Z"} +2026/03/20 17:21:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":401.8,"last_update":"2026-03-20T17:21:54.575835539Z"} +2026/03/20 17:21:59 ───────────────────────────────────────────────── +2026/03/20 17:22:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:59.575878928Z"} +2026/03/20 17:22:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":402.8,"last_update":"2026-03-20T17:21:59.576117741Z"} +2026/03/20 17:22:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:59.58592434Z"} +2026/03/20 17:22:04 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.231165845870665,"throughput_eps":0,"last_update":"2026-03-20T17:21:59.719294508Z"} +2026/03/20 17:22:04 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":83.92129264963276,"throughput_eps":0,"last_update":"2026-03-20T17:21:59.71930634Z"} +2026/03/20 17:22:04 ───────────────────────────────────────────────── +2026/03/20 17:22:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:04.576568765Z"} +2026/03/20 17:22:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":403.8,"last_update":"2026-03-20T17:22:04.575407862Z"} +2026/03/20 17:22:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:04.585331725Z"} +2026/03/20 17:22:09 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.231165845870665,"throughput_eps":0,"last_update":"2026-03-20T17:22:04.719734487Z"} +2026/03/20 17:22:09 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":83.92129264963276,"throughput_eps":0,"last_update":"2026-03-20T17:22:04.719749876Z"} +2026/03/20 17:22:09 ───────────────────────────────────────────────── +2026/03/20 17:22:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:14 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":83.92129264963276,"throughput_eps":0,"last_update":"2026-03-20T17:22:09.719210549Z"} +2026/03/20 17:22:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:09.575566342Z"} +2026/03/20 17:22:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":404.8,"last_update":"2026-03-20T17:22:09.575692441Z"} +2026/03/20 17:22:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":812,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:09.586834938Z"} +2026/03/20 17:22:14 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.231165845870665,"throughput_eps":0,"last_update":"2026-03-20T17:22:09.719198315Z"} +2026/03/20 17:22:14 ───────────────────────────────────────────────── +2026/03/20 17:22:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:19 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.231165845870665,"throughput_eps":0,"last_update":"2026-03-20T17:22:14.719111619Z"} +2026/03/20 17:22:19 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":83.92129264963276,"throughput_eps":0,"last_update":"2026-03-20T17:22:14.719119224Z"} +2026/03/20 17:22:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:14.57553788Z"} +2026/03/20 17:22:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":405.8,"last_update":"2026-03-20T17:22:14.575804205Z"} +2026/03/20 17:22:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:14.585893996Z"} +2026/03/20 17:22:19 ───────────────────────────────────────────────── +2026/03/20 17:22:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:24 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.231165845870665,"throughput_eps":0,"last_update":"2026-03-20T17:22:19.719654831Z"} +2026/03/20 17:22:24 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":83.92129264963276,"throughput_eps":0,"last_update":"2026-03-20T17:22:19.719662385Z"} +2026/03/20 17:22:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:19.575529387Z"} +2026/03/20 17:22:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":406.8,"last_update":"2026-03-20T17:22:19.575868481Z"} +2026/03/20 17:22:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":816,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:19.586444587Z"} +2026/03/20 17:22:24 ───────────────────────────────────────────────── +2026/03/20 17:22:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:24.575815089Z"} +2026/03/20 17:22:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":407.8,"last_update":"2026-03-20T17:22:24.57607373Z"} +2026/03/20 17:22:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":818,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:24.587007918Z"} +2026/03/20 17:22:29 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.231165845870665,"throughput_eps":0,"last_update":"2026-03-20T17:22:24.719419279Z"} +2026/03/20 17:22:29 [transform_engine] {"stage_name":"transform_engine","events_processed":68,"events_dropped":0,"avg_latency_ms":89.76489711970622,"throughput_eps":0,"last_update":"2026-03-20T17:22:24.832576046Z"} +2026/03/20 17:22:29 ───────────────────────────────────────────────── +2026/03/20 17:22:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:29.575508393Z"} +2026/03/20 17:22:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":408.8,"last_update":"2026-03-20T17:22:29.576085379Z"} +2026/03/20 17:22:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":820,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:29.585822936Z"} +2026/03/20 17:22:34 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":14.786109476696533,"throughput_eps":0,"last_update":"2026-03-20T17:22:29.719239519Z"} +2026/03/20 17:22:34 [transform_engine] {"stage_name":"transform_engine","events_processed":68,"events_dropped":0,"avg_latency_ms":89.76489711970622,"throughput_eps":0,"last_update":"2026-03-20T17:22:29.719255369Z"} +2026/03/20 17:22:34 ───────────────────────────────────────────────── +2026/03/20 17:22:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:34.586160762Z"} +2026/03/20 17:22:39 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":14.786109476696533,"throughput_eps":0,"last_update":"2026-03-20T17:22:34.719407315Z"} +2026/03/20 17:22:39 [transform_engine] {"stage_name":"transform_engine","events_processed":68,"events_dropped":0,"avg_latency_ms":89.76489711970622,"throughput_eps":0,"last_update":"2026-03-20T17:22:34.719420199Z"} +2026/03/20 17:22:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:34.575566866Z"} +2026/03/20 17:22:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":409.8,"last_update":"2026-03-20T17:22:34.575671384Z"} +2026/03/20 17:22:39 ───────────────────────────────────────────────── +2026/03/20 17:22:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:39.57574327Z"} +2026/03/20 17:22:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":410.8,"last_update":"2026-03-20T17:22:39.576104256Z"} +2026/03/20 17:22:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:39.586701009Z"} +2026/03/20 17:22:44 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":14.786109476696533,"throughput_eps":0,"last_update":"2026-03-20T17:22:39.718952135Z"} +2026/03/20 17:22:44 [transform_engine] {"stage_name":"transform_engine","events_processed":68,"events_dropped":0,"avg_latency_ms":89.76489711970622,"throughput_eps":0,"last_update":"2026-03-20T17:22:39.718960722Z"} +2026/03/20 17:22:44 ───────────────────────────────────────────────── +2026/03/20 17:22:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":411.8,"last_update":"2026-03-20T17:22:44.576212815Z"} +2026/03/20 17:22:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":826,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:44.585597627Z"} +2026/03/20 17:22:49 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":14.786109476696533,"throughput_eps":0,"last_update":"2026-03-20T17:22:44.719838246Z"} +2026/03/20 17:22:49 [transform_engine] {"stage_name":"transform_engine","events_processed":68,"events_dropped":0,"avg_latency_ms":89.76489711970622,"throughput_eps":0,"last_update":"2026-03-20T17:22:44.71875041Z"} +2026/03/20 17:22:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:44.575753362Z"} +2026/03/20 17:22:49 ───────────────────────────────────────────────── +2026/03/20 17:22:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":412.8,"last_update":"2026-03-20T17:22:49.5760293Z"} +2026/03/20 17:22:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:49.585322339Z"} +2026/03/20 17:22:54 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":14.786109476696533,"throughput_eps":0,"last_update":"2026-03-20T17:22:49.719688789Z"} +2026/03/20 17:22:54 [transform_engine] {"stage_name":"transform_engine","events_processed":68,"events_dropped":0,"avg_latency_ms":89.76489711970622,"throughput_eps":0,"last_update":"2026-03-20T17:22:49.719702134Z"} +2026/03/20 17:22:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:49.575503901Z"} +2026/03/20 17:22:54 ───────────────────────────────────────────────── +2026/03/20 17:22:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:54.575675814Z"} +2026/03/20 17:22:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":413.8,"last_update":"2026-03-20T17:22:54.575744263Z"} +2026/03/20 17:22:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":830,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:54.585666621Z"} +2026/03/20 17:22:59 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":14.786109476696533,"throughput_eps":0,"last_update":"2026-03-20T17:22:54.718956478Z"} +2026/03/20 17:22:59 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":84.95861309576497,"throughput_eps":0,"last_update":"2026-03-20T17:22:54.784706808Z"} +2026/03/20 17:22:59 ───────────────────────────────────────────────── +2026/03/20 17:23:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:59.575758872Z"} +2026/03/20 17:23:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":414.8,"last_update":"2026-03-20T17:22:59.576124236Z"} +2026/03/20 17:23:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":832,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:59.586559358Z"} +2026/03/20 17:23:04 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":13.660901381357228,"throughput_eps":0,"last_update":"2026-03-20T17:22:59.718779035Z"} +2026/03/20 17:23:04 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":84.95861309576497,"throughput_eps":0,"last_update":"2026-03-20T17:22:59.718765159Z"} +2026/03/20 17:23:04 ───────────────────────────────────────────────── +2026/03/20 17:23:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:04.575865701Z"} +2026/03/20 17:23:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":415.8,"last_update":"2026-03-20T17:23:04.576473967Z"} +2026/03/20 17:23:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:04.587073103Z"} +2026/03/20 17:23:09 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":13.660901381357228,"throughput_eps":0,"last_update":"2026-03-20T17:23:04.719479007Z"} +2026/03/20 17:23:09 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":84.95861309576497,"throughput_eps":0,"last_update":"2026-03-20T17:23:04.719491611Z"} +2026/03/20 17:23:09 ───────────────────────────────────────────────── +2026/03/20 17:23:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:09.575728036Z"} +2026/03/20 17:23:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":416.8,"last_update":"2026-03-20T17:23:09.576281077Z"} +2026/03/20 17:23:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:09.585116093Z"} +2026/03/20 17:23:14 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":13.660901381357228,"throughput_eps":0,"last_update":"2026-03-20T17:23:09.719441274Z"} +2026/03/20 17:23:14 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":84.95861309576497,"throughput_eps":0,"last_update":"2026-03-20T17:23:09.719449199Z"} +2026/03/20 17:23:14 ───────────────────────────────────────────────── +2026/03/20 17:23:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:14.575765071Z"} +2026/03/20 17:23:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":417.8,"last_update":"2026-03-20T17:23:14.576061064Z"} +2026/03/20 17:23:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:14.586227331Z"} +2026/03/20 17:23:19 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":13.660901381357228,"throughput_eps":0,"last_update":"2026-03-20T17:23:14.719472412Z"} +2026/03/20 17:23:19 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":84.95861309576497,"throughput_eps":0,"last_update":"2026-03-20T17:23:14.719484234Z"} +2026/03/20 17:23:19 ───────────────────────────────────────────────── +2026/03/20 17:23:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:19.575937638Z"} +2026/03/20 17:23:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":418.8,"last_update":"2026-03-20T17:23:19.576270169Z"} +2026/03/20 17:23:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:19.586425658Z"} +2026/03/20 17:23:24 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":13.660901381357228,"throughput_eps":0,"last_update":"2026-03-20T17:23:19.719843328Z"} +2026/03/20 17:23:24 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":84.95861309576497,"throughput_eps":0,"last_update":"2026-03-20T17:23:19.718661022Z"} +2026/03/20 17:23:24 ───────────────────────────────────────────────── +2026/03/20 17:23:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:29 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":13.660901381357228,"throughput_eps":0,"last_update":"2026-03-20T17:23:24.719656769Z"} +2026/03/20 17:23:29 [transform_engine] {"stage_name":"transform_engine","events_processed":70,"events_dropped":0,"avg_latency_ms":80.32152187661198,"throughput_eps":0,"last_update":"2026-03-20T17:23:24.781440716Z"} +2026/03/20 17:23:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:24.575513905Z"} +2026/03/20 17:23:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":419.8,"last_update":"2026-03-20T17:23:24.575919225Z"} +2026/03/20 17:23:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:24.586379765Z"} +2026/03/20 17:23:29 ───────────────────────────────────────────────── +2026/03/20 17:23:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:29.575962446Z"} +2026/03/20 17:23:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":420.8,"last_update":"2026-03-20T17:23:29.576275792Z"} +2026/03/20 17:23:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:29.585845831Z"} +2026/03/20 17:23:34 [detection_layer] {"stage_name":"detection_layer","events_processed":70,"events_dropped":0,"avg_latency_ms":14.036212705085784,"throughput_eps":0,"last_update":"2026-03-20T17:23:29.719143455Z"} +2026/03/20 17:23:34 [transform_engine] {"stage_name":"transform_engine","events_processed":70,"events_dropped":0,"avg_latency_ms":80.32152187661198,"throughput_eps":0,"last_update":"2026-03-20T17:23:29.719149927Z"} +2026/03/20 17:23:34 ───────────────────────────────────────────────── +2026/03/20 17:23:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:34.584662923Z"} +2026/03/20 17:23:39 [detection_layer] {"stage_name":"detection_layer","events_processed":70,"events_dropped":0,"avg_latency_ms":14.036212705085784,"throughput_eps":0,"last_update":"2026-03-20T17:23:34.719044369Z"} +2026/03/20 17:23:39 [transform_engine] {"stage_name":"transform_engine","events_processed":70,"events_dropped":0,"avg_latency_ms":80.32152187661198,"throughput_eps":0,"last_update":"2026-03-20T17:23:34.719056261Z"} +2026/03/20 17:23:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:34.575997281Z"} +2026/03/20 17:23:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":421.8,"last_update":"2026-03-20T17:23:34.576378115Z"} +2026/03/20 17:23:39 ───────────────────────────────────────────────── +2026/03/20 17:23:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:44 [transform_engine] {"stage_name":"transform_engine","events_processed":70,"events_dropped":0,"avg_latency_ms":80.32152187661198,"throughput_eps":0,"last_update":"2026-03-20T17:23:39.718706077Z"} +2026/03/20 17:23:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:39.575737056Z"} +2026/03/20 17:23:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":422.8,"last_update":"2026-03-20T17:23:39.576043499Z"} +2026/03/20 17:23:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":848,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:39.58757589Z"} +2026/03/20 17:23:44 [detection_layer] {"stage_name":"detection_layer","events_processed":70,"events_dropped":0,"avg_latency_ms":14.036212705085784,"throughput_eps":0,"last_update":"2026-03-20T17:23:39.719800838Z"} +2026/03/20 17:23:44 ───────────────────────────────────────────────── +2026/03/20 17:23:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":423.8,"last_update":"2026-03-20T17:23:44.576050334Z"} +2026/03/20 17:23:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:44.586367698Z"} +2026/03/20 17:23:49 [detection_layer] {"stage_name":"detection_layer","events_processed":70,"events_dropped":0,"avg_latency_ms":14.036212705085784,"throughput_eps":0,"last_update":"2026-03-20T17:23:44.719596956Z"} +2026/03/20 17:23:49 [transform_engine] {"stage_name":"transform_engine","events_processed":70,"events_dropped":0,"avg_latency_ms":80.32152187661198,"throughput_eps":0,"last_update":"2026-03-20T17:23:44.719604229Z"} +2026/03/20 17:23:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:44.575751205Z"} +2026/03/20 17:23:49 ───────────────────────────────────────────────── +2026/03/20 17:23:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:49.575770233Z"} +2026/03/20 17:23:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":424.8,"last_update":"2026-03-20T17:23:49.576203125Z"} +2026/03/20 17:23:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:49.585390712Z"} +2026/03/20 17:23:54 [detection_layer] {"stage_name":"detection_layer","events_processed":70,"events_dropped":0,"avg_latency_ms":14.036212705085784,"throughput_eps":0,"last_update":"2026-03-20T17:23:49.719681819Z"} +2026/03/20 17:23:54 [transform_engine] {"stage_name":"transform_engine","events_processed":70,"events_dropped":0,"avg_latency_ms":80.32152187661198,"throughput_eps":0,"last_update":"2026-03-20T17:23:49.719688082Z"} +2026/03/20 17:23:54 ───────────────────────────────────────────────── +2026/03/20 17:23:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:54.585386885Z"} +2026/03/20 17:23:59 [detection_layer] {"stage_name":"detection_layer","events_processed":70,"events_dropped":0,"avg_latency_ms":14.036212705085784,"throughput_eps":0,"last_update":"2026-03-20T17:23:54.719583592Z"} +2026/03/20 17:23:59 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":77.28137710128959,"throughput_eps":0,"last_update":"2026-03-20T17:23:54.784716223Z"} +2026/03/20 17:23:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:54.576014063Z"} +2026/03/20 17:23:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":425.8,"last_update":"2026-03-20T17:23:54.576319664Z"} +2026/03/20 17:23:59 ───────────────────────────────────────────────── +2026/03/20 17:24:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:59.575812449Z"} +2026/03/20 17:24:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":426.8,"last_update":"2026-03-20T17:23:59.576211347Z"} +2026/03/20 17:24:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:59.585618937Z"} +2026/03/20 17:24:04 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.269265564068627,"throughput_eps":0,"last_update":"2026-03-20T17:23:59.718780024Z"} +2026/03/20 17:24:04 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":77.28137710128959,"throughput_eps":0,"last_update":"2026-03-20T17:23:59.718710682Z"} +2026/03/20 17:24:04 ───────────────────────────────────────────────── +2026/03/20 17:24:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:04.57598947Z"} +2026/03/20 17:24:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":427.8,"last_update":"2026-03-20T17:24:04.576498968Z"} +2026/03/20 17:24:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:04.584506416Z"} +2026/03/20 17:24:09 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.269265564068627,"throughput_eps":0,"last_update":"2026-03-20T17:24:04.719840776Z"} +2026/03/20 17:24:09 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":77.28137710128959,"throughput_eps":0,"last_update":"2026-03-20T17:24:04.71867551Z"} +2026/03/20 17:24:09 ───────────────────────────────────────────────── +2026/03/20 17:24:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:09.575548268Z"} +2026/03/20 17:24:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":428.8,"last_update":"2026-03-20T17:24:09.575529293Z"} +2026/03/20 17:24:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":860,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:09.585518811Z"} +2026/03/20 17:24:14 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.269265564068627,"throughput_eps":0,"last_update":"2026-03-20T17:24:09.71882852Z"} +2026/03/20 17:24:14 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":77.28137710128959,"throughput_eps":0,"last_update":"2026-03-20T17:24:09.718737708Z"} +2026/03/20 17:24:14 ───────────────────────────────────────────────── +2026/03/20 17:24:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":429.8,"last_update":"2026-03-20T17:24:14.575676692Z"} +2026/03/20 17:24:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":862,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:14.585948388Z"} +2026/03/20 17:24:19 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.269265564068627,"throughput_eps":0,"last_update":"2026-03-20T17:24:14.719258939Z"} +2026/03/20 17:24:19 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":77.28137710128959,"throughput_eps":0,"last_update":"2026-03-20T17:24:14.719265642Z"} +2026/03/20 17:24:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:14.575521186Z"} +2026/03/20 17:24:19 ───────────────────────────────────────────────── +2026/03/20 17:24:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:24 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.269265564068627,"throughput_eps":0,"last_update":"2026-03-20T17:24:19.719533143Z"} +2026/03/20 17:24:24 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":77.28137710128959,"throughput_eps":0,"last_update":"2026-03-20T17:24:19.719545416Z"} +2026/03/20 17:24:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:19.575851476Z"} +2026/03/20 17:24:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":430.8,"last_update":"2026-03-20T17:24:19.576312293Z"} +2026/03/20 17:24:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:19.586209348Z"} +2026/03/20 17:24:24 ───────────────────────────────────────────────── +2026/03/20 17:24:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":431.8,"last_update":"2026-03-20T17:24:24.576374739Z"} +2026/03/20 17:24:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:24.586040966Z"} +2026/03/20 17:24:29 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.269265564068627,"throughput_eps":0,"last_update":"2026-03-20T17:24:24.719239492Z"} +2026/03/20 17:24:29 [transform_engine] {"stage_name":"transform_engine","events_processed":72,"events_dropped":0,"avg_latency_ms":74.61178508103168,"throughput_eps":0,"last_update":"2026-03-20T17:24:24.783188739Z"} +2026/03/20 17:24:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:24.576053387Z"} +2026/03/20 17:24:29 ───────────────────────────────────────────────── +2026/03/20 17:24:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":868,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:29.584794973Z"} +2026/03/20 17:24:34 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":13.326357251254903,"throughput_eps":0,"last_update":"2026-03-20T17:24:29.719065167Z"} +2026/03/20 17:24:34 [transform_engine] {"stage_name":"transform_engine","events_processed":72,"events_dropped":0,"avg_latency_ms":74.61178508103168,"throughput_eps":0,"last_update":"2026-03-20T17:24:29.719172742Z"} +2026/03/20 17:24:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:29.575971217Z"} +2026/03/20 17:24:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":432.8,"last_update":"2026-03-20T17:24:29.576319639Z"} +2026/03/20 17:24:34 ───────────────────────────────────────────────── +2026/03/20 17:24:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:39 [transform_engine] {"stage_name":"transform_engine","events_processed":72,"events_dropped":0,"avg_latency_ms":74.61178508103168,"throughput_eps":0,"last_update":"2026-03-20T17:24:34.718990012Z"} +2026/03/20 17:24:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:34.575966136Z"} +2026/03/20 17:24:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":433.8,"last_update":"2026-03-20T17:24:34.576311332Z"} +2026/03/20 17:24:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:34.585693021Z"} +2026/03/20 17:24:39 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":13.326357251254903,"throughput_eps":0,"last_update":"2026-03-20T17:24:34.718883439Z"} +2026/03/20 17:24:39 ───────────────────────────────────────────────── +2026/03/20 17:24:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:44 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":13.326357251254903,"throughput_eps":0,"last_update":"2026-03-20T17:24:39.719108027Z"} +2026/03/20 17:24:44 [transform_engine] {"stage_name":"transform_engine","events_processed":72,"events_dropped":0,"avg_latency_ms":74.61178508103168,"throughput_eps":0,"last_update":"2026-03-20T17:24:39.719001645Z"} +2026/03/20 17:24:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:39.575586255Z"} +2026/03/20 17:24:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":434.8,"last_update":"2026-03-20T17:24:39.575905382Z"} +2026/03/20 17:24:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:39.585666824Z"} +2026/03/20 17:24:44 ───────────────────────────────────────────────── +2026/03/20 17:24:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:44.576149035Z"} +2026/03/20 17:24:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":435.8,"last_update":"2026-03-20T17:24:44.576752574Z"} +2026/03/20 17:24:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:44.576257622Z"} +2026/03/20 17:24:49 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":13.326357251254903,"throughput_eps":0,"last_update":"2026-03-20T17:24:44.719116773Z"} +2026/03/20 17:24:49 [transform_engine] {"stage_name":"transform_engine","events_processed":72,"events_dropped":0,"avg_latency_ms":74.61178508103168,"throughput_eps":0,"last_update":"2026-03-20T17:24:44.719093069Z"} +2026/03/20 17:24:49 ───────────────────────────────────────────────── +2026/03/20 17:24:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:54 [transform_engine] {"stage_name":"transform_engine","events_processed":72,"events_dropped":0,"avg_latency_ms":74.61178508103168,"throughput_eps":0,"last_update":"2026-03-20T17:24:49.718787847Z"} +2026/03/20 17:24:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:49.575652971Z"} +2026/03/20 17:24:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":436.8,"last_update":"2026-03-20T17:24:49.575598919Z"} +2026/03/20 17:24:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":876,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:49.586542103Z"} +2026/03/20 17:24:54 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":13.326357251254903,"throughput_eps":0,"last_update":"2026-03-20T17:24:49.718842502Z"} +2026/03/20 17:24:54 ───────────────────────────────────────────────── +2026/03/20 17:24:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":437.8,"last_update":"2026-03-20T17:24:54.576056895Z"} +2026/03/20 17:24:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:54.587592538Z"} +2026/03/20 17:24:59 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":13.326357251254903,"throughput_eps":0,"last_update":"2026-03-20T17:24:54.71880264Z"} +2026/03/20 17:24:59 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":82.03675446482535,"throughput_eps":0,"last_update":"2026-03-20T17:24:54.830512341Z"} +2026/03/20 17:24:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:54.575662385Z"} +2026/03/20 17:24:59 ───────────────────────────────────────────────── +2026/03/20 17:25:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:59.575497825Z"} +2026/03/20 17:25:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":438.8,"last_update":"2026-03-20T17:24:59.575722762Z"} +2026/03/20 17:25:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:59.586027524Z"} +2026/03/20 17:25:04 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.181882001003924,"throughput_eps":0,"last_update":"2026-03-20T17:24:59.719440316Z"} +2026/03/20 17:25:04 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":82.03675446482535,"throughput_eps":0,"last_update":"2026-03-20T17:24:59.719479691Z"} +2026/03/20 17:25:04 ───────────────────────────────────────────────── +2026/03/20 17:25:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:04.575922921Z"} +2026/03/20 17:25:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":439.8,"last_update":"2026-03-20T17:25:04.576543912Z"} +2026/03/20 17:25:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:04.585042989Z"} +2026/03/20 17:25:09 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.181882001003924,"throughput_eps":0,"last_update":"2026-03-20T17:25:04.719404103Z"} +2026/03/20 17:25:09 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":82.03675446482535,"throughput_eps":0,"last_update":"2026-03-20T17:25:04.719436093Z"} +2026/03/20 17:25:09 ───────────────────────────────────────────────── +2026/03/20 17:25:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:09.576013895Z"} +2026/03/20 17:25:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":440.8,"last_update":"2026-03-20T17:25:09.576414248Z"} +2026/03/20 17:25:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:09.586364988Z"} +2026/03/20 17:25:14 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.181882001003924,"throughput_eps":0,"last_update":"2026-03-20T17:25:09.719665371Z"} +2026/03/20 17:25:14 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":82.03675446482535,"throughput_eps":0,"last_update":"2026-03-20T17:25:09.71968105Z"} +2026/03/20 17:25:14 ───────────────────────────────────────────────── +2026/03/20 17:25:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:14.575980952Z"} +2026/03/20 17:25:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":441.8,"last_update":"2026-03-20T17:25:14.576735889Z"} +2026/03/20 17:25:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":886,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:14.586013931Z"} +2026/03/20 17:25:19 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.181882001003924,"throughput_eps":0,"last_update":"2026-03-20T17:25:14.719456201Z"} +2026/03/20 17:25:19 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":82.03675446482535,"throughput_eps":0,"last_update":"2026-03-20T17:25:14.719412989Z"} +2026/03/20 17:25:19 ───────────────────────────────────────────────── +2026/03/20 17:25:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:24 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.181882001003924,"throughput_eps":0,"last_update":"2026-03-20T17:25:19.719833649Z"} +2026/03/20 17:25:24 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":82.03675446482535,"throughput_eps":0,"last_update":"2026-03-20T17:25:19.718674453Z"} +2026/03/20 17:25:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:19.575971356Z"} +2026/03/20 17:25:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":442.8,"last_update":"2026-03-20T17:25:19.576224988Z"} +2026/03/20 17:25:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:19.587418898Z"} +2026/03/20 17:25:24 ───────────────────────────────────────────────── +2026/03/20 17:25:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:24.575982174Z"} +2026/03/20 17:25:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":443.8,"last_update":"2026-03-20T17:25:24.576340416Z"} +2026/03/20 17:25:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:24.586092673Z"} +2026/03/20 17:25:29 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.181882001003924,"throughput_eps":0,"last_update":"2026-03-20T17:25:24.719229495Z"} +2026/03/20 17:25:29 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":82.03675446482535,"throughput_eps":0,"last_update":"2026-03-20T17:25:24.719283226Z"} +2026/03/20 17:25:29 ───────────────────────────────────────────────── +2026/03/20 17:25:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":892,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:29.58608652Z"} +2026/03/20 17:25:34 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":14.62459240080314,"throughput_eps":0,"last_update":"2026-03-20T17:25:29.719367253Z"} +2026/03/20 17:25:34 [transform_engine] {"stage_name":"transform_engine","events_processed":74,"events_dropped":0,"avg_latency_ms":88.08472097186028,"throughput_eps":0,"last_update":"2026-03-20T17:25:29.719380538Z"} +2026/03/20 17:25:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:29.57553492Z"} +2026/03/20 17:25:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":444.8,"last_update":"2026-03-20T17:25:29.575458715Z"} +2026/03/20 17:25:34 ───────────────────────────────────────────────── +2026/03/20 17:25:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:34.586604728Z"} +2026/03/20 17:25:39 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":14.62459240080314,"throughput_eps":0,"last_update":"2026-03-20T17:25:34.718834347Z"} +2026/03/20 17:25:39 [transform_engine] {"stage_name":"transform_engine","events_processed":74,"events_dropped":0,"avg_latency_ms":88.08472097186028,"throughput_eps":0,"last_update":"2026-03-20T17:25:34.718867049Z"} +2026/03/20 17:25:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:34.576056534Z"} +2026/03/20 17:25:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":445.8,"last_update":"2026-03-20T17:25:34.576212381Z"} +2026/03/20 17:25:39 ───────────────────────────────────────────────── +2026/03/20 17:25:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":896,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:39.587181869Z"} +2026/03/20 17:25:44 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":14.62459240080314,"throughput_eps":0,"last_update":"2026-03-20T17:25:39.719642304Z"} +2026/03/20 17:25:44 [transform_engine] {"stage_name":"transform_engine","events_processed":74,"events_dropped":0,"avg_latency_ms":88.08472097186028,"throughput_eps":0,"last_update":"2026-03-20T17:25:39.719620311Z"} +2026/03/20 17:25:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:39.575711177Z"} +2026/03/20 17:25:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":446.8,"last_update":"2026-03-20T17:25:39.57611727Z"} +2026/03/20 17:25:44 ───────────────────────────────────────────────── +2026/03/20 17:25:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:49 [transform_engine] {"stage_name":"transform_engine","events_processed":74,"events_dropped":0,"avg_latency_ms":88.08472097186028,"throughput_eps":0,"last_update":"2026-03-20T17:25:44.719480085Z"} +2026/03/20 17:25:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:44.575871254Z"} +2026/03/20 17:25:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":447.8,"last_update":"2026-03-20T17:25:44.576082637Z"} +2026/03/20 17:25:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":898,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:44.588268944Z"} +2026/03/20 17:25:49 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":14.62459240080314,"throughput_eps":0,"last_update":"2026-03-20T17:25:44.7195253Z"} +2026/03/20 17:25:49 ───────────────────────────────────────────────── +2026/03/20 17:25:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:49.575955554Z"} +2026/03/20 17:25:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":448.8,"last_update":"2026-03-20T17:25:49.57633201Z"} +2026/03/20 17:25:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":900,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:49.585704941Z"} +2026/03/20 17:25:54 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":14.62459240080314,"throughput_eps":0,"last_update":"2026-03-20T17:25:49.719074288Z"} +2026/03/20 17:25:54 [transform_engine] {"stage_name":"transform_engine","events_processed":74,"events_dropped":0,"avg_latency_ms":88.08472097186028,"throughput_eps":0,"last_update":"2026-03-20T17:25:49.719022039Z"} +2026/03/20 17:25:54 ───────────────────────────────────────────────── +2026/03/20 17:25:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:59 [transform_engine] {"stage_name":"transform_engine","events_processed":75,"events_dropped":0,"avg_latency_ms":93.18217817748823,"throughput_eps":0,"last_update":"2026-03-20T17:25:54.832909683Z"} +2026/03/20 17:25:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:54.575729573Z"} +2026/03/20 17:25:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":449.8,"last_update":"2026-03-20T17:25:54.576281083Z"} +2026/03/20 17:25:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:54.585097534Z"} +2026/03/20 17:25:59 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":14.62459240080314,"throughput_eps":0,"last_update":"2026-03-20T17:25:54.719435392Z"} +2026/03/20 17:25:59 ───────────────────────────────────────────────── +2026/03/20 17:26:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:04 [transform_engine] {"stage_name":"transform_engine","events_processed":75,"events_dropped":0,"avg_latency_ms":93.18217817748823,"throughput_eps":0,"last_update":"2026-03-20T17:25:59.718635117Z"} +2026/03/20 17:26:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:59.576250877Z"} +2026/03/20 17:26:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":450.8,"last_update":"2026-03-20T17:25:59.576237853Z"} +2026/03/20 17:26:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:59.585402278Z"} +2026/03/20 17:26:04 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":15.418985720642512,"throughput_eps":0,"last_update":"2026-03-20T17:25:59.719908733Z"} +2026/03/20 17:26:04 ───────────────────────────────────────────────── +2026/03/20 17:26:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":451.8,"last_update":"2026-03-20T17:26:04.576066697Z"} +2026/03/20 17:26:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:04.577091389Z"} +2026/03/20 17:26:09 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":15.418985720642512,"throughput_eps":0,"last_update":"2026-03-20T17:26:04.719164612Z"} +2026/03/20 17:26:09 [transform_engine] {"stage_name":"transform_engine","events_processed":75,"events_dropped":0,"avg_latency_ms":93.18217817748823,"throughput_eps":0,"last_update":"2026-03-20T17:26:04.719275833Z"} +2026/03/20 17:26:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:09.575567791Z"} +2026/03/20 17:26:09 ───────────────────────────────────────────────── +2026/03/20 17:26:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:09.575567791Z"} +2026/03/20 17:26:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":452.8,"last_update":"2026-03-20T17:26:09.576023769Z"} +2026/03/20 17:26:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":908,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:09.586090395Z"} +2026/03/20 17:26:14 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":15.418985720642512,"throughput_eps":0,"last_update":"2026-03-20T17:26:09.719457881Z"} +2026/03/20 17:26:14 [transform_engine] {"stage_name":"transform_engine","events_processed":75,"events_dropped":0,"avg_latency_ms":93.18217817748823,"throughput_eps":0,"last_update":"2026-03-20T17:26:09.719367339Z"} +2026/03/20 17:26:14 ───────────────────────────────────────────────── +2026/03/20 17:26:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:19 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":15.418985720642512,"throughput_eps":0,"last_update":"2026-03-20T17:26:14.719826651Z"} +2026/03/20 17:26:19 [transform_engine] {"stage_name":"transform_engine","events_processed":75,"events_dropped":0,"avg_latency_ms":93.18217817748823,"throughput_eps":0,"last_update":"2026-03-20T17:26:14.719724276Z"} +2026/03/20 17:26:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:14.57599775Z"} +2026/03/20 17:26:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":453.8,"last_update":"2026-03-20T17:26:14.576691831Z"} +2026/03/20 17:26:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:14.585343754Z"} +2026/03/20 17:26:19 ───────────────────────────────────────────────── +2026/03/20 17:26:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:24 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":15.418985720642512,"throughput_eps":0,"last_update":"2026-03-20T17:26:19.719165248Z"} +2026/03/20 17:26:24 [transform_engine] {"stage_name":"transform_engine","events_processed":75,"events_dropped":0,"avg_latency_ms":93.18217817748823,"throughput_eps":0,"last_update":"2026-03-20T17:26:19.719189594Z"} +2026/03/20 17:26:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:19.575811346Z"} +2026/03/20 17:26:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":454.8,"last_update":"2026-03-20T17:26:19.576121296Z"} +2026/03/20 17:26:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":912,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:19.587764027Z"} +2026/03/20 17:26:24 ───────────────────────────────────────────────── +2026/03/20 17:26:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:24.575517603Z"} +2026/03/20 17:26:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":455.8,"last_update":"2026-03-20T17:26:24.57559507Z"} +2026/03/20 17:26:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:24.586445394Z"} +2026/03/20 17:26:29 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":15.418985720642512,"throughput_eps":0,"last_update":"2026-03-20T17:26:24.719918396Z"} +2026/03/20 17:26:29 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":87.31412974199058,"throughput_eps":0,"last_update":"2026-03-20T17:26:24.782498368Z"} +2026/03/20 17:26:29 ───────────────────────────────────────────────── +2026/03/20 17:26:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:34 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.746548176514011,"throughput_eps":0,"last_update":"2026-03-20T17:26:29.719384282Z"} +2026/03/20 17:26:34 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":87.31412974199058,"throughput_eps":0,"last_update":"2026-03-20T17:26:29.719406265Z"} +2026/03/20 17:26:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:29.575816741Z"} +2026/03/20 17:26:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":456.8,"last_update":"2026-03-20T17:26:29.576254795Z"} +2026/03/20 17:26:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:29.585119756Z"} +2026/03/20 17:26:34 ───────────────────────────────────────────────── +2026/03/20 17:26:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:39 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.746548176514011,"throughput_eps":0,"last_update":"2026-03-20T17:26:34.719702195Z"} +2026/03/20 17:26:39 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":87.31412974199058,"throughput_eps":0,"last_update":"2026-03-20T17:26:34.71967888Z"} +2026/03/20 17:26:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:34.57595218Z"} +2026/03/20 17:26:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":457.8,"last_update":"2026-03-20T17:26:34.576201324Z"} +2026/03/20 17:26:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":918,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:34.586330436Z"} +2026/03/20 17:26:39 ───────────────────────────────────────────────── +2026/03/20 17:26:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":458.8,"last_update":"2026-03-20T17:26:39.575703618Z"} +2026/03/20 17:26:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":920,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:39.585950926Z"} +2026/03/20 17:26:44 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.746548176514011,"throughput_eps":0,"last_update":"2026-03-20T17:26:39.719400528Z"} +2026/03/20 17:26:44 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":87.31412974199058,"throughput_eps":0,"last_update":"2026-03-20T17:26:39.719445173Z"} +2026/03/20 17:26:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:39.575771628Z"} +2026/03/20 17:26:44 ───────────────────────────────────────────────── +2026/03/20 17:26:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:49 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.746548176514011,"throughput_eps":0,"last_update":"2026-03-20T17:26:44.718791719Z"} +2026/03/20 17:26:49 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":87.31412974199058,"throughput_eps":0,"last_update":"2026-03-20T17:26:44.718753657Z"} +2026/03/20 17:26:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:44.576109648Z"} +2026/03/20 17:26:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":459.8,"last_update":"2026-03-20T17:26:44.5767512Z"} +2026/03/20 17:26:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:44.586522181Z"} +2026/03/20 17:26:49 ───────────────────────────────────────────────── +2026/03/20 17:26:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:54 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.746548176514011,"throughput_eps":0,"last_update":"2026-03-20T17:26:49.719403335Z"} +2026/03/20 17:26:54 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":87.31412974199058,"throughput_eps":0,"last_update":"2026-03-20T17:26:49.719535166Z"} +2026/03/20 17:26:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:49.575518826Z"} +2026/03/20 17:26:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":460.8,"last_update":"2026-03-20T17:26:49.575816924Z"} +2026/03/20 17:26:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:49.586092047Z"} +2026/03/20 17:26:54 ───────────────────────────────────────────────── +2026/03/20 17:26:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:59 [transform_engine] {"stage_name":"transform_engine","events_processed":77,"events_dropped":0,"avg_latency_ms":82.51719419359246,"throughput_eps":0,"last_update":"2026-03-20T17:26:54.781974315Z"} +2026/03/20 17:26:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:54.575754385Z"} +2026/03/20 17:26:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":461.8,"last_update":"2026-03-20T17:26:54.576159507Z"} +2026/03/20 17:26:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:54.58539516Z"} +2026/03/20 17:26:59 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.746548176514011,"throughput_eps":0,"last_update":"2026-03-20T17:26:54.720557379Z"} +2026/03/20 17:26:59 ───────────────────────────────────────────────── +2026/03/20 17:27:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":462.8,"last_update":"2026-03-20T17:26:59.575461003Z"} +2026/03/20 17:27:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:59.585919397Z"} +2026/03/20 17:27:04 [detection_layer] {"stage_name":"detection_layer","events_processed":77,"events_dropped":0,"avg_latency_ms":16.03436954121121,"throughput_eps":0,"last_update":"2026-03-20T17:26:59.719146272Z"} +2026/03/20 17:27:04 [transform_engine] {"stage_name":"transform_engine","events_processed":77,"events_dropped":0,"avg_latency_ms":82.51719419359246,"throughput_eps":0,"last_update":"2026-03-20T17:26:59.719115874Z"} +2026/03/20 17:27:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:59.575532899Z"} +2026/03/20 17:27:04 ───────────────────────────────────────────────── +2026/03/20 17:27:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":930,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:04.585144352Z"} +2026/03/20 17:27:09 [detection_layer] {"stage_name":"detection_layer","events_processed":77,"events_dropped":0,"avg_latency_ms":16.03436954121121,"throughput_eps":0,"last_update":"2026-03-20T17:27:04.719594631Z"} +2026/03/20 17:27:09 [transform_engine] {"stage_name":"transform_engine","events_processed":77,"events_dropped":0,"avg_latency_ms":82.51719419359246,"throughput_eps":0,"last_update":"2026-03-20T17:27:04.719632023Z"} +2026/03/20 17:27:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:04.575507783Z"} +2026/03/20 17:27:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":463.8,"last_update":"2026-03-20T17:27:04.575854212Z"} +2026/03/20 17:27:09 ───────────────────────────────────────────────── +2026/03/20 17:27:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":464.8,"last_update":"2026-03-20T17:27:09.575736175Z"} +2026/03/20 17:27:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:09.585256674Z"} +2026/03/20 17:27:14 [detection_layer] {"stage_name":"detection_layer","events_processed":77,"events_dropped":0,"avg_latency_ms":16.03436954121121,"throughput_eps":0,"last_update":"2026-03-20T17:27:09.719558485Z"} +2026/03/20 17:27:14 [transform_engine] {"stage_name":"transform_engine","events_processed":77,"events_dropped":0,"avg_latency_ms":82.51719419359246,"throughput_eps":0,"last_update":"2026-03-20T17:27:09.719611657Z"} +2026/03/20 17:27:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:09.575519863Z"} +2026/03/20 17:27:14 ───────────────────────────────────────────────── +2026/03/20 17:27:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:19 [transform_engine] {"stage_name":"transform_engine","events_processed":77,"events_dropped":0,"avg_latency_ms":82.51719419359246,"throughput_eps":0,"last_update":"2026-03-20T17:27:14.719431088Z"} +2026/03/20 17:27:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:14.575821719Z"} +2026/03/20 17:27:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":465.8,"last_update":"2026-03-20T17:27:14.576203527Z"} +2026/03/20 17:27:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:14.586037745Z"} +2026/03/20 17:27:19 [detection_layer] {"stage_name":"detection_layer","events_processed":77,"events_dropped":0,"avg_latency_ms":16.03436954121121,"throughput_eps":0,"last_update":"2026-03-20T17:27:14.719401532Z"} +2026/03/20 17:27:19 ───────────────────────────────────────────────── +2026/03/20 17:27:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:24 [detection_layer] {"stage_name":"detection_layer","events_processed":77,"events_dropped":0,"avg_latency_ms":16.03436954121121,"throughput_eps":0,"last_update":"2026-03-20T17:27:19.719395786Z"} +2026/03/20 17:27:24 [transform_engine] {"stage_name":"transform_engine","events_processed":77,"events_dropped":0,"avg_latency_ms":82.51719419359246,"throughput_eps":0,"last_update":"2026-03-20T17:27:19.719416605Z"} +2026/03/20 17:27:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:19.575526907Z"} +2026/03/20 17:27:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":466.8,"last_update":"2026-03-20T17:27:19.575800609Z"} +2026/03/20 17:27:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:19.586117348Z"} +2026/03/20 17:27:24 ───────────────────────────────────────────────── +2026/03/20 17:27:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:24.575501923Z"} +2026/03/20 17:27:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":467.8,"last_update":"2026-03-20T17:27:24.575729025Z"} +2026/03/20 17:27:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:24.586522133Z"} +2026/03/20 17:27:29 [detection_layer] {"stage_name":"detection_layer","events_processed":77,"events_dropped":0,"avg_latency_ms":16.03436954121121,"throughput_eps":0,"last_update":"2026-03-20T17:27:24.719823699Z"} +2026/03/20 17:27:29 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":76.00469155487397,"throughput_eps":0,"last_update":"2026-03-20T17:27:24.768664085Z"} +2026/03/20 17:27:29 ───────────────────────────────────────────────── +2026/03/20 17:27:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:29.576429092Z"} +2026/03/20 17:27:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":468.8,"last_update":"2026-03-20T17:27:29.576515276Z"} +2026/03/20 17:27:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":940,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:29.585403973Z"} +2026/03/20 17:27:34 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":16.54737963296897,"throughput_eps":0,"last_update":"2026-03-20T17:27:29.719812322Z"} +2026/03/20 17:27:34 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":76.00469155487397,"throughput_eps":0,"last_update":"2026-03-20T17:27:29.719697934Z"} +2026/03/20 17:27:34 ───────────────────────────────────────────────── +2026/03/20 17:27:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":469.8,"last_update":"2026-03-20T17:27:34.576069431Z"} +2026/03/20 17:27:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:34.58640061Z"} +2026/03/20 17:27:39 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":16.54737963296897,"throughput_eps":0,"last_update":"2026-03-20T17:27:34.719908956Z"} +2026/03/20 17:27:39 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":76.00469155487397,"throughput_eps":0,"last_update":"2026-03-20T17:27:34.71865773Z"} +2026/03/20 17:27:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:34.575673627Z"} +2026/03/20 17:27:39 ───────────────────────────────────────────────── +2026/03/20 17:27:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:39.575618906Z"} +2026/03/20 17:27:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":470.8,"last_update":"2026-03-20T17:27:39.576015682Z"} +2026/03/20 17:27:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:39.585869091Z"} +2026/03/20 17:27:44 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":16.54737963296897,"throughput_eps":0,"last_update":"2026-03-20T17:27:39.719147692Z"} +2026/03/20 17:27:44 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":76.00469155487397,"throughput_eps":0,"last_update":"2026-03-20T17:27:39.719254495Z"} +2026/03/20 17:27:44 ───────────────────────────────────────────────── +2026/03/20 17:27:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:44.57564337Z"} +2026/03/20 17:27:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":471.8,"last_update":"2026-03-20T17:27:44.576019627Z"} +2026/03/20 17:27:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:44.586722928Z"} +2026/03/20 17:27:49 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":16.54737963296897,"throughput_eps":0,"last_update":"2026-03-20T17:27:44.718916542Z"} +2026/03/20 17:27:49 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":76.00469155487397,"throughput_eps":0,"last_update":"2026-03-20T17:27:44.718937051Z"} +2026/03/20 17:27:49 ───────────────────────────────────────────────── +2026/03/20 17:27:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:49.575541512Z"} +2026/03/20 17:27:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":472.8,"last_update":"2026-03-20T17:27:49.575500533Z"} +2026/03/20 17:27:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:49.586506582Z"} +2026/03/20 17:27:54 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":16.54737963296897,"throughput_eps":0,"last_update":"2026-03-20T17:27:49.719773145Z"} +2026/03/20 17:27:54 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":76.00469155487397,"throughput_eps":0,"last_update":"2026-03-20T17:27:49.718653409Z"} +2026/03/20 17:27:54 ───────────────────────────────────────────────── +2026/03/20 17:27:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":473.8,"last_update":"2026-03-20T17:27:54.575736134Z"} +2026/03/20 17:27:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:54.586196192Z"} +2026/03/20 17:27:59 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":16.54737963296897,"throughput_eps":0,"last_update":"2026-03-20T17:27:54.71958981Z"} +2026/03/20 17:27:59 [transform_engine] {"stage_name":"transform_engine","events_processed":79,"events_dropped":0,"avg_latency_ms":72.72493624389918,"throughput_eps":0,"last_update":"2026-03-20T17:27:54.779240482Z"} +2026/03/20 17:27:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:54.575493631Z"} +2026/03/20 17:27:59 ───────────────────────────────────────────────── +2026/03/20 17:28:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:59.58475271Z"} +2026/03/20 17:28:04 [detection_layer] {"stage_name":"detection_layer","events_processed":79,"events_dropped":0,"avg_latency_ms":16.556542906375178,"throughput_eps":0,"last_update":"2026-03-20T17:27:59.719123194Z"} +2026/03/20 17:28:04 [transform_engine] {"stage_name":"transform_engine","events_processed":79,"events_dropped":0,"avg_latency_ms":72.72493624389918,"throughput_eps":0,"last_update":"2026-03-20T17:27:59.719155545Z"} +2026/03/20 17:28:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:59.575706227Z"} +2026/03/20 17:28:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":474.8,"last_update":"2026-03-20T17:27:59.576098795Z"} +2026/03/20 17:28:04 ───────────────────────────────────────────────── +2026/03/20 17:28:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:04.575860867Z"} +2026/03/20 17:28:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":475.8,"last_update":"2026-03-20T17:28:04.576125461Z"} +2026/03/20 17:28:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:04.586955046Z"} +2026/03/20 17:28:09 [detection_layer] {"stage_name":"detection_layer","events_processed":79,"events_dropped":0,"avg_latency_ms":16.556542906375178,"throughput_eps":0,"last_update":"2026-03-20T17:28:04.71928403Z"} +2026/03/20 17:28:09 [transform_engine] {"stage_name":"transform_engine","events_processed":79,"events_dropped":0,"avg_latency_ms":72.72493624389918,"throughput_eps":0,"last_update":"2026-03-20T17:28:04.719345587Z"} +2026/03/20 17:28:09 ───────────────────────────────────────────────── +2026/03/20 17:28:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:09.575712331Z"} +2026/03/20 17:28:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":476.8,"last_update":"2026-03-20T17:28:09.575988608Z"} +2026/03/20 17:28:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:09.586928264Z"} +2026/03/20 17:28:14 [detection_layer] {"stage_name":"detection_layer","events_processed":79,"events_dropped":0,"avg_latency_ms":16.556542906375178,"throughput_eps":0,"last_update":"2026-03-20T17:28:09.719344134Z"} +2026/03/20 17:28:14 [transform_engine] {"stage_name":"transform_engine","events_processed":79,"events_dropped":0,"avg_latency_ms":72.72493624389918,"throughput_eps":0,"last_update":"2026-03-20T17:28:09.719325108Z"} +2026/03/20 17:28:14 ───────────────────────────────────────────────── +2026/03/20 17:28:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:19 [detection_layer] {"stage_name":"detection_layer","events_processed":79,"events_dropped":0,"avg_latency_ms":16.556542906375178,"throughput_eps":0,"last_update":"2026-03-20T17:28:14.719453698Z"} +2026/03/20 17:28:19 [transform_engine] {"stage_name":"transform_engine","events_processed":79,"events_dropped":0,"avg_latency_ms":72.72493624389918,"throughput_eps":0,"last_update":"2026-03-20T17:28:14.719502822Z"} +2026/03/20 17:28:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:14.575518171Z"} +2026/03/20 17:28:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":477.8,"last_update":"2026-03-20T17:28:14.576081045Z"} +2026/03/20 17:28:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":958,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:14.585199348Z"} +2026/03/20 17:28:19 ───────────────────────────────────────────────── +2026/03/20 17:28:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:19.575983274Z"} +2026/03/20 17:28:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":478.8,"last_update":"2026-03-20T17:28:19.575889345Z"} +2026/03/20 17:28:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:19.586514955Z"} +2026/03/20 17:28:24 [detection_layer] {"stage_name":"detection_layer","events_processed":79,"events_dropped":0,"avg_latency_ms":16.556542906375178,"throughput_eps":0,"last_update":"2026-03-20T17:28:19.718806762Z"} +2026/03/20 17:28:24 [transform_engine] {"stage_name":"transform_engine","events_processed":79,"events_dropped":0,"avg_latency_ms":72.72493624389918,"throughput_eps":0,"last_update":"2026-03-20T17:28:19.71869583Z"} +2026/03/20 17:28:24 ───────────────────────────────────────────────── +2026/03/20 17:28:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":479.8,"last_update":"2026-03-20T17:28:24.5760009Z"} +2026/03/20 17:28:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":962,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:24.585890226Z"} +2026/03/20 17:28:29 [detection_layer] {"stage_name":"detection_layer","events_processed":79,"events_dropped":0,"avg_latency_ms":16.556542906375178,"throughput_eps":0,"last_update":"2026-03-20T17:28:24.719141035Z"} +2026/03/20 17:28:29 [transform_engine] {"stage_name":"transform_engine","events_processed":80,"events_dropped":0,"avg_latency_ms":80.29599119511934,"throughput_eps":0,"last_update":"2026-03-20T17:28:24.82974449Z"} +2026/03/20 17:28:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:24.57558118Z"} +2026/03/20 17:28:29 ───────────────────────────────────────────────── +2026/03/20 17:28:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:29.57600853Z"} +2026/03/20 17:28:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":480.8,"last_update":"2026-03-20T17:28:29.576449861Z"} +2026/03/20 17:28:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:29.584869274Z"} +2026/03/20 17:28:34 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":15.645160525100142,"throughput_eps":0,"last_update":"2026-03-20T17:28:29.719145952Z"} +2026/03/20 17:28:34 [transform_engine] {"stage_name":"transform_engine","events_processed":80,"events_dropped":0,"avg_latency_ms":80.29599119511934,"throughput_eps":0,"last_update":"2026-03-20T17:28:29.719193001Z"} +2026/03/20 17:28:34 ───────────────────────────────────────────────── +2026/03/20 17:28:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:39 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":15.645160525100142,"throughput_eps":0,"last_update":"2026-03-20T17:28:34.719787941Z"} +2026/03/20 17:28:39 [transform_engine] {"stage_name":"transform_engine","events_processed":80,"events_dropped":0,"avg_latency_ms":80.29599119511934,"throughput_eps":0,"last_update":"2026-03-20T17:28:34.718643017Z"} +2026/03/20 17:28:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:34.575528957Z"} +2026/03/20 17:28:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":481.8,"last_update":"2026-03-20T17:28:34.575574595Z"} +2026/03/20 17:28:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:34.586465082Z"} +2026/03/20 17:28:39 ───────────────────────────────────────────────── +2026/03/20 17:28:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:39.576100947Z"} +2026/03/20 17:28:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":482.8,"last_update":"2026-03-20T17:28:39.576412452Z"} +2026/03/20 17:28:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:39.585446639Z"} +2026/03/20 17:28:44 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":15.645160525100142,"throughput_eps":0,"last_update":"2026-03-20T17:28:39.719641805Z"} +2026/03/20 17:28:44 [transform_engine] {"stage_name":"transform_engine","events_processed":80,"events_dropped":0,"avg_latency_ms":80.29599119511934,"throughput_eps":0,"last_update":"2026-03-20T17:28:39.719745041Z"} +2026/03/20 17:28:44 ───────────────────────────────────────────────── +2026/03/20 17:28:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:44.575853515Z"} +2026/03/20 17:28:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":483.8,"last_update":"2026-03-20T17:28:44.576463769Z"} +2026/03/20 17:28:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":970,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:44.585513146Z"} +2026/03/20 17:28:49 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":15.645160525100142,"throughput_eps":0,"last_update":"2026-03-20T17:28:44.718775433Z"} +2026/03/20 17:28:49 [transform_engine] {"stage_name":"transform_engine","events_processed":80,"events_dropped":0,"avg_latency_ms":80.29599119511934,"throughput_eps":0,"last_update":"2026-03-20T17:28:44.718760244Z"} +2026/03/20 17:28:49 ───────────────────────────────────────────────── +2026/03/20 17:28:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:49.576031399Z"} +2026/03/20 17:28:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":484.8,"last_update":"2026-03-20T17:28:49.576557473Z"} +2026/03/20 17:28:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:49.585424382Z"} +2026/03/20 17:28:54 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":15.645160525100142,"throughput_eps":0,"last_update":"2026-03-20T17:28:49.719786169Z"} +2026/03/20 17:28:54 [transform_engine] {"stage_name":"transform_engine","events_processed":80,"events_dropped":0,"avg_latency_ms":80.29599119511934,"throughput_eps":0,"last_update":"2026-03-20T17:28:49.718632398Z"} +2026/03/20 17:28:54 ───────────────────────────────────────────────── +2026/03/20 17:28:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:54.575806175Z"} +2026/03/20 17:28:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":485.8,"last_update":"2026-03-20T17:28:54.576221988Z"} +2026/03/20 17:28:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:54.584831226Z"} +2026/03/20 17:28:59 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":15.645160525100142,"throughput_eps":0,"last_update":"2026-03-20T17:28:54.719236968Z"} +2026/03/20 17:28:59 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":76.92585395609547,"throughput_eps":0,"last_update":"2026-03-20T17:28:54.782563847Z"} +2026/03/20 17:28:59 ───────────────────────────────────────────────── +2026/03/20 17:29:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:59.575499766Z"} +2026/03/20 17:29:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":486.8,"last_update":"2026-03-20T17:28:59.575899919Z"} +2026/03/20 17:29:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:59.585499037Z"} +2026/03/20 17:29:04 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":16.056618020080116,"throughput_eps":0,"last_update":"2026-03-20T17:28:59.718822855Z"} +2026/03/20 17:29:04 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":76.92585395609547,"throughput_eps":0,"last_update":"2026-03-20T17:28:59.718708657Z"} +2026/03/20 17:29:04 ───────────────────────────────────────────────── +2026/03/20 17:29:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:04.575597742Z"} +2026/03/20 17:29:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":487.8,"last_update":"2026-03-20T17:29:04.575644891Z"} +2026/03/20 17:29:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:04.585497002Z"} +2026/03/20 17:29:09 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":16.056618020080116,"throughput_eps":0,"last_update":"2026-03-20T17:29:04.719990363Z"} +2026/03/20 17:29:09 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":76.92585395609547,"throughput_eps":0,"last_update":"2026-03-20T17:29:04.718738905Z"} +2026/03/20 17:29:09 ───────────────────────────────────────────────── +2026/03/20 17:29:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:09.575747295Z"} +2026/03/20 17:29:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":488.8,"last_update":"2026-03-20T17:29:09.576091251Z"} +2026/03/20 17:29:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:09.586399635Z"} +2026/03/20 17:29:14 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":16.056618020080116,"throughput_eps":0,"last_update":"2026-03-20T17:29:09.719663319Z"} +2026/03/20 17:29:14 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":76.92585395609547,"throughput_eps":0,"last_update":"2026-03-20T17:29:09.719638602Z"} +2026/03/20 17:29:14 ───────────────────────────────────────────────── +2026/03/20 17:29:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:14.585212925Z"} +2026/03/20 17:29:19 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":16.056618020080116,"throughput_eps":0,"last_update":"2026-03-20T17:29:14.719529571Z"} +2026/03/20 17:29:19 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":76.92585395609547,"throughput_eps":0,"last_update":"2026-03-20T17:29:14.719510605Z"} +2026/03/20 17:29:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:14.575537651Z"} +2026/03/20 17:29:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":489.8,"last_update":"2026-03-20T17:29:14.575578689Z"} +2026/03/20 17:29:19 ───────────────────────────────────────────────── +2026/03/20 17:29:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:19.587070909Z"} +2026/03/20 17:29:24 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":16.056618020080116,"throughput_eps":0,"last_update":"2026-03-20T17:29:19.719264883Z"} +2026/03/20 17:29:24 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":76.92585395609547,"throughput_eps":0,"last_update":"2026-03-20T17:29:19.719285563Z"} +2026/03/20 17:29:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:19.576041387Z"} +2026/03/20 17:29:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":490.8,"last_update":"2026-03-20T17:29:19.576030066Z"} +2026/03/20 17:29:24 ───────────────────────────────────────────────── +2026/03/20 17:29:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:24.586570377Z"} +2026/03/20 17:29:29 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":16.056618020080116,"throughput_eps":0,"last_update":"2026-03-20T17:29:24.718803358Z"} +2026/03/20 17:29:29 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":84.60938196487638,"throughput_eps":0,"last_update":"2026-03-20T17:29:24.834081356Z"} +2026/03/20 17:29:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:24.57560598Z"} +2026/03/20 17:29:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":491.8,"last_update":"2026-03-20T17:29:24.575721421Z"} +2026/03/20 17:29:29 ───────────────────────────────────────────────── +2026/03/20 17:29:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:29.575765152Z"} +2026/03/20 17:29:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":492.8,"last_update":"2026-03-20T17:29:29.576058863Z"} +2026/03/20 17:29:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:29.586185602Z"} +2026/03/20 17:29:34 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":16.417901416064094,"throughput_eps":0,"last_update":"2026-03-20T17:29:29.719371873Z"} +2026/03/20 17:29:34 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":84.60938196487638,"throughput_eps":0,"last_update":"2026-03-20T17:29:29.719450823Z"} +2026/03/20 17:29:34 ───────────────────────────────────────────────── +2026/03/20 17:29:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:34.576072379Z"} +2026/03/20 17:29:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":493.8,"last_update":"2026-03-20T17:29:34.576464657Z"} +2026/03/20 17:29:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":990,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:34.585764289Z"} +2026/03/20 17:29:39 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":16.417901416064094,"throughput_eps":0,"last_update":"2026-03-20T17:29:34.719223039Z"} +2026/03/20 17:29:39 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":84.60938196487638,"throughput_eps":0,"last_update":"2026-03-20T17:29:34.719165839Z"} +2026/03/20 17:29:39 ───────────────────────────────────────────────── +2026/03/20 17:29:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:44 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":84.60938196487638,"throughput_eps":0,"last_update":"2026-03-20T17:29:39.71978644Z"} +2026/03/20 17:29:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:39.576043689Z"} +2026/03/20 17:29:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":494.8,"last_update":"2026-03-20T17:29:39.576430527Z"} +2026/03/20 17:29:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":992,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:39.58641672Z"} +2026/03/20 17:29:44 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":16.417901416064094,"throughput_eps":0,"last_update":"2026-03-20T17:29:39.71983835Z"} +2026/03/20 17:29:44 ───────────────────────────────────────────────── +2026/03/20 17:29:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:44.57553199Z"} +2026/03/20 17:29:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":495.8,"last_update":"2026-03-20T17:29:44.575811264Z"} +2026/03/20 17:29:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:44.586069947Z"} +2026/03/20 17:29:49 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":16.417901416064094,"throughput_eps":0,"last_update":"2026-03-20T17:29:44.719297256Z"} +2026/03/20 17:29:49 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":84.60938196487638,"throughput_eps":0,"last_update":"2026-03-20T17:29:44.719402076Z"} +2026/03/20 17:29:49 ───────────────────────────────────────────────── +2026/03/20 17:29:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:54 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":84.60938196487638,"throughput_eps":0,"last_update":"2026-03-20T17:29:49.718683232Z"} +2026/03/20 17:29:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:49.575746296Z"} +2026/03/20 17:29:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":496.8,"last_update":"2026-03-20T17:29:49.576520645Z"} +2026/03/20 17:29:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":996,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:49.585519244Z"} +2026/03/20 17:29:54 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":16.417901416064094,"throughput_eps":0,"last_update":"2026-03-20T17:29:49.719830502Z"} +2026/03/20 17:29:54 ───────────────────────────────────────────────── +2026/03/20 17:29:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:59 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":80.8326673719011,"throughput_eps":0,"last_update":"2026-03-20T17:29:54.784383504Z"} +2026/03/20 17:29:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:54.575834546Z"} +2026/03/20 17:29:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":497.8,"last_update":"2026-03-20T17:29:54.57660115Z"} +2026/03/20 17:29:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:54.585469611Z"} +2026/03/20 17:29:59 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":16.417901416064094,"throughput_eps":0,"last_update":"2026-03-20T17:29:54.719795026Z"} +2026/03/20 17:29:59 ───────────────────────────────────────────────── +2026/03/20 17:30:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:59.575821595Z"} +2026/03/20 17:30:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":498.8,"last_update":"2026-03-20T17:29:59.576117049Z"} +2026/03/20 17:30:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:59.586165313Z"} +2026/03/20 17:30:04 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":16.659370932851278,"throughput_eps":0,"last_update":"2026-03-20T17:29:59.71937069Z"} +2026/03/20 17:30:04 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":80.8326673719011,"throughput_eps":0,"last_update":"2026-03-20T17:29:59.719417119Z"} +2026/03/20 17:30:04 ───────────────────────────────────────────────── +2026/03/20 17:30:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:04.591966811Z"} +2026/03/20 17:30:09 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":16.659370932851278,"throughput_eps":0,"last_update":"2026-03-20T17:30:04.719311338Z"} +2026/03/20 17:30:09 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":80.8326673719011,"throughput_eps":0,"last_update":"2026-03-20T17:30:04.719288754Z"} +2026/03/20 17:30:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:04.575723959Z"} +2026/03/20 17:30:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":499.8,"last_update":"2026-03-20T17:30:04.576497867Z"} +2026/03/20 17:30:09 ───────────────────────────────────────────────── +2026/03/20 17:30:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:09.57585164Z"} +2026/03/20 17:30:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":500.8,"last_update":"2026-03-20T17:30:09.576478567Z"} +2026/03/20 17:30:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:09.584781089Z"} +2026/03/20 17:30:14 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":16.659370932851278,"throughput_eps":0,"last_update":"2026-03-20T17:30:09.71925609Z"} +2026/03/20 17:30:14 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":80.8326673719011,"throughput_eps":0,"last_update":"2026-03-20T17:30:09.719168583Z"} +2026/03/20 17:30:14 ───────────────────────────────────────────────── +2026/03/20 17:30:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:14.575542617Z"} +2026/03/20 17:30:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":501.8,"last_update":"2026-03-20T17:30:14.575770422Z"} +2026/03/20 17:30:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1006,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:14.586410027Z"} +2026/03/20 17:30:19 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":16.659370932851278,"throughput_eps":0,"last_update":"2026-03-20T17:30:14.719778335Z"} +2026/03/20 17:30:19 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":80.8326673719011,"throughput_eps":0,"last_update":"2026-03-20T17:30:14.719903143Z"} +2026/03/20 17:30:19 ───────────────────────────────────────────────── +2026/03/20 17:30:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":502.8,"last_update":"2026-03-20T17:30:19.575572849Z"} +2026/03/20 17:30:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1008,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:19.585958932Z"} +2026/03/20 17:30:24 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":16.659370932851278,"throughput_eps":0,"last_update":"2026-03-20T17:30:19.719297201Z"} +2026/03/20 17:30:24 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":80.8326673719011,"throughput_eps":0,"last_update":"2026-03-20T17:30:19.719196188Z"} +2026/03/20 17:30:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:19.575513366Z"} +2026/03/20 17:30:24 ───────────────────────────────────────────────── +2026/03/20 17:30:24 [ANOMALY] time=2026-03-20T17:30:24Z score=0.8529 method=SEAD details=MAD!:w=0.29,s=0.84 RRCF-fast:w=0.18,s=0.80 RRCF-mid:w=0.16,s=0.80 RRCF-slow:w=0.15,s=0.86 COPOD!:w=0.22,s=0.95 +2026/03/20 17:30:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:24.58568618Z"} +2026/03/20 17:30:29 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":16.659370932851278,"throughput_eps":0,"last_update":"2026-03-20T17:30:24.719001444Z"} +2026/03/20 17:30:29 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":87.50973909752088,"throughput_eps":0,"last_update":"2026-03-20T17:30:24.833187511Z"} +2026/03/20 17:30:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:24.5755214Z"} +2026/03/20 17:30:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":503.6,"last_update":"2026-03-20T17:30:24.575253067Z"} +2026/03/20 17:30:29 ───────────────────────────────────────────────── +2026/03/20 17:30:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1012,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:29.585240559Z"} +2026/03/20 17:30:34 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":16.455199346281024,"throughput_eps":0,"last_update":"2026-03-20T17:30:29.719630245Z"} +2026/03/20 17:30:34 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":87.50973909752088,"throughput_eps":0,"last_update":"2026-03-20T17:30:29.719609936Z"} +2026/03/20 17:30:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:29.576021394Z"} +2026/03/20 17:30:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":504.8,"last_update":"2026-03-20T17:30:29.57633882Z"} +2026/03/20 17:30:34 ───────────────────────────────────────────────── +2026/03/20 17:30:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:34.575515063Z"} +2026/03/20 17:30:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":505.8,"last_update":"2026-03-20T17:30:34.576122914Z"} +2026/03/20 17:30:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:34.586657111Z"} +2026/03/20 17:30:39 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":16.455199346281024,"throughput_eps":0,"last_update":"2026-03-20T17:30:34.719002511Z"} +2026/03/20 17:30:39 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":87.50973909752088,"throughput_eps":0,"last_update":"2026-03-20T17:30:34.718904304Z"} +2026/03/20 17:30:39 ───────────────────────────────────────────────── +2026/03/20 17:30:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:39.575758047Z"} +2026/03/20 17:30:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":506.8,"last_update":"2026-03-20T17:30:39.57606342Z"} +2026/03/20 17:30:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:39.586186543Z"} +2026/03/20 17:30:44 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":16.455199346281024,"throughput_eps":0,"last_update":"2026-03-20T17:30:39.719568733Z"} +2026/03/20 17:30:44 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":87.50973909752088,"throughput_eps":0,"last_update":"2026-03-20T17:30:39.719604852Z"} +2026/03/20 17:30:44 ───────────────────────────────────────────────── +2026/03/20 17:30:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1018,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:44.586989589Z"} +2026/03/20 17:30:49 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":16.455199346281024,"throughput_eps":0,"last_update":"2026-03-20T17:30:44.719214598Z"} +2026/03/20 17:30:49 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":87.50973909752088,"throughput_eps":0,"last_update":"2026-03-20T17:30:44.719222573Z"} +2026/03/20 17:30:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:44.575793626Z"} +2026/03/20 17:30:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":507.8,"last_update":"2026-03-20T17:30:44.576132263Z"} +2026/03/20 17:30:49 ───────────────────────────────────────────────── +2026/03/20 17:30:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:49.57585976Z"} +2026/03/20 17:30:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":508.8,"last_update":"2026-03-20T17:30:49.576204098Z"} +2026/03/20 17:30:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1020,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:49.584899566Z"} +2026/03/20 17:30:54 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":16.455199346281024,"throughput_eps":0,"last_update":"2026-03-20T17:30:49.719130775Z"} +2026/03/20 17:30:54 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":87.50973909752088,"throughput_eps":0,"last_update":"2026-03-20T17:30:49.719137298Z"} +2026/03/20 17:30:54 ───────────────────────────────────────────────── +2026/03/20 17:30:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:54.575538959Z"} +2026/03/20 17:30:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":509.8,"last_update":"2026-03-20T17:30:54.575583524Z"} +2026/03/20 17:30:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1022,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:54.586268182Z"} +2026/03/20 17:30:59 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":16.455199346281024,"throughput_eps":0,"last_update":"2026-03-20T17:30:54.719629278Z"} +2026/03/20 17:30:59 [transform_engine] {"stage_name":"transform_engine","events_processed":85,"events_dropped":0,"avg_latency_ms":92.78222407801671,"throughput_eps":0,"last_update":"2026-03-20T17:30:54.833534835Z"} +2026/03/20 17:30:59 ───────────────────────────────────────────────── +2026/03/20 17:31:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:59.575702052Z"} +2026/03/20 17:31:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":510.8,"last_update":"2026-03-20T17:30:59.575980964Z"} +2026/03/20 17:31:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:59.587337677Z"} +2026/03/20 17:31:04 [detection_layer] {"stage_name":"detection_layer","events_processed":85,"events_dropped":0,"avg_latency_ms":16.64477347702482,"throughput_eps":0,"last_update":"2026-03-20T17:30:59.719728889Z"} +2026/03/20 17:31:04 [transform_engine] {"stage_name":"transform_engine","events_processed":85,"events_dropped":0,"avg_latency_ms":92.78222407801671,"throughput_eps":0,"last_update":"2026-03-20T17:30:59.719740412Z"} +2026/03/20 17:31:04 ───────────────────────────────────────────────── +2026/03/20 17:31:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:09 [transform_engine] {"stage_name":"transform_engine","events_processed":85,"events_dropped":0,"avg_latency_ms":92.78222407801671,"throughput_eps":0,"last_update":"2026-03-20T17:31:04.719019573Z"} +2026/03/20 17:31:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:04.575891073Z"} +2026/03/20 17:31:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":511.8,"last_update":"2026-03-20T17:31:04.576436875Z"} +2026/03/20 17:31:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:04.586777376Z"} +2026/03/20 17:31:09 [detection_layer] {"stage_name":"detection_layer","events_processed":85,"events_dropped":0,"avg_latency_ms":16.64477347702482,"throughput_eps":0,"last_update":"2026-03-20T17:31:04.719008061Z"} +2026/03/20 17:31:09 ───────────────────────────────────────────────── +2026/03/20 17:31:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:09.57603968Z"} +2026/03/20 17:31:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":512.8,"last_update":"2026-03-20T17:31:09.576407212Z"} +2026/03/20 17:31:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:09.586402615Z"} +2026/03/20 17:31:14 [detection_layer] {"stage_name":"detection_layer","events_processed":85,"events_dropped":0,"avg_latency_ms":16.64477347702482,"throughput_eps":0,"last_update":"2026-03-20T17:31:09.719646333Z"} +2026/03/20 17:31:14 [transform_engine] {"stage_name":"transform_engine","events_processed":85,"events_dropped":0,"avg_latency_ms":92.78222407801671,"throughput_eps":0,"last_update":"2026-03-20T17:31:09.719655861Z"} +2026/03/20 17:31:14 ───────────────────────────────────────────────── +2026/03/20 17:31:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:14.5755407Z"} +2026/03/20 17:31:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":513.8,"last_update":"2026-03-20T17:31:14.575702309Z"} +2026/03/20 17:31:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:14.585651545Z"} +2026/03/20 17:31:19 [detection_layer] {"stage_name":"detection_layer","events_processed":85,"events_dropped":0,"avg_latency_ms":16.64477347702482,"throughput_eps":0,"last_update":"2026-03-20T17:31:14.718866255Z"} +2026/03/20 17:31:19 [transform_engine] {"stage_name":"transform_engine","events_processed":85,"events_dropped":0,"avg_latency_ms":92.78222407801671,"throughput_eps":0,"last_update":"2026-03-20T17:31:14.718877537Z"} +2026/03/20 17:31:19 ───────────────────────────────────────────────── +2026/03/20 17:31:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:19.58604019Z"} +2026/03/20 17:31:24 [detection_layer] {"stage_name":"detection_layer","events_processed":85,"events_dropped":0,"avg_latency_ms":16.64477347702482,"throughput_eps":0,"last_update":"2026-03-20T17:31:19.719278114Z"} +2026/03/20 17:31:24 [transform_engine] {"stage_name":"transform_engine","events_processed":85,"events_dropped":0,"avg_latency_ms":92.78222407801671,"throughput_eps":0,"last_update":"2026-03-20T17:31:19.719288253Z"} +2026/03/20 17:31:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:19.575600346Z"} +2026/03/20 17:31:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":514.8,"last_update":"2026-03-20T17:31:19.575954513Z"} +2026/03/20 17:31:24 ───────────────────────────────────────────────── +2026/03/20 17:31:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:29 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":96.67436806241336,"throughput_eps":0,"last_update":"2026-03-20T17:31:24.831718389Z"} +2026/03/20 17:31:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:24.57580354Z"} +2026/03/20 17:31:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":515.8,"last_update":"2026-03-20T17:31:24.57613896Z"} +2026/03/20 17:31:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:24.586084109Z"} +2026/03/20 17:31:29 [detection_layer] {"stage_name":"detection_layer","events_processed":85,"events_dropped":0,"avg_latency_ms":16.64477347702482,"throughput_eps":0,"last_update":"2026-03-20T17:31:24.719458933Z"} +2026/03/20 17:31:29 ───────────────────────────────────────────────── +2026/03/20 17:31:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:29.575752502Z"} +2026/03/20 17:31:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":516.8,"last_update":"2026-03-20T17:31:29.576027577Z"} +2026/03/20 17:31:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1036,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:29.587410354Z"} +2026/03/20 17:31:34 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":16.828068581619856,"throughput_eps":0,"last_update":"2026-03-20T17:31:29.719689512Z"} +2026/03/20 17:31:34 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":96.67436806241336,"throughput_eps":0,"last_update":"2026-03-20T17:31:29.719724801Z"} +2026/03/20 17:31:34 ───────────────────────────────────────────────── +2026/03/20 17:31:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:34.585297745Z"} +2026/03/20 17:31:39 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":16.828068581619856,"throughput_eps":0,"last_update":"2026-03-20T17:31:34.719702183Z"} +2026/03/20 17:31:39 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":96.67436806241336,"throughput_eps":0,"last_update":"2026-03-20T17:31:34.71964871Z"} +2026/03/20 17:31:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:34.575521859Z"} +2026/03/20 17:31:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":517.8,"last_update":"2026-03-20T17:31:34.575713354Z"} +2026/03/20 17:31:39 ───────────────────────────────────────────────── +2026/03/20 17:31:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":518.8,"last_update":"2026-03-20T17:31:39.576167513Z"} +2026/03/20 17:31:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:39.585748108Z"} +2026/03/20 17:31:44 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":16.828068581619856,"throughput_eps":0,"last_update":"2026-03-20T17:31:39.719012195Z"} +2026/03/20 17:31:44 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":96.67436806241336,"throughput_eps":0,"last_update":"2026-03-20T17:31:39.718990203Z"} +2026/03/20 17:31:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:39.575740648Z"} +2026/03/20 17:31:44 ───────────────────────────────────────────────── +2026/03/20 17:31:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:44.575685157Z"} +2026/03/20 17:31:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":519.8,"last_update":"2026-03-20T17:31:44.576106542Z"} +2026/03/20 17:31:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:44.586572238Z"} +2026/03/20 17:31:49 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":16.828068581619856,"throughput_eps":0,"last_update":"2026-03-20T17:31:44.71982942Z"} +2026/03/20 17:31:49 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":96.67436806241336,"throughput_eps":0,"last_update":"2026-03-20T17:31:44.718724028Z"} +2026/03/20 17:31:49 ───────────────────────────────────────────────── +2026/03/20 17:31:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:49.576058596Z"} +2026/03/20 17:31:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":520.8,"last_update":"2026-03-20T17:31:49.576047074Z"} +2026/03/20 17:31:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:49.586434712Z"} +2026/03/20 17:31:54 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":16.828068581619856,"throughput_eps":0,"last_update":"2026-03-20T17:31:49.719884459Z"} +2026/03/20 17:31:54 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":96.67436806241336,"throughput_eps":0,"last_update":"2026-03-20T17:31:49.718666042Z"} +2026/03/20 17:31:54 ───────────────────────────────────────────────── +2026/03/20 17:31:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":521.8,"last_update":"2026-03-20T17:31:54.576029263Z"} +2026/03/20 17:31:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:54.585983022Z"} +2026/03/20 17:31:59 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":16.828068581619856,"throughput_eps":0,"last_update":"2026-03-20T17:31:54.719505417Z"} +2026/03/20 17:31:59 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":99.8949136499307,"throughput_eps":0,"last_update":"2026-03-20T17:31:54.832196197Z"} +2026/03/20 17:31:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:54.575725072Z"} +2026/03/20 17:31:59 ───────────────────────────────────────────────── +2026/03/20 17:32:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":522.8,"last_update":"2026-03-20T17:31:59.576063313Z"} +2026/03/20 17:32:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1048,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:59.586833894Z"} +2026/03/20 17:32:04 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":17.159376465295885,"throughput_eps":0,"last_update":"2026-03-20T17:31:59.719240885Z"} +2026/03/20 17:32:04 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":99.8949136499307,"throughput_eps":0,"last_update":"2026-03-20T17:31:59.719134141Z"} +2026/03/20 17:32:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:59.575738563Z"} +2026/03/20 17:32:04 ───────────────────────────────────────────────── +2026/03/20 17:32:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":523.8,"last_update":"2026-03-20T17:32:04.575708995Z"} +2026/03/20 17:32:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1050,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:04.585674927Z"} +2026/03/20 17:32:09 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":17.159376465295885,"throughput_eps":0,"last_update":"2026-03-20T17:32:04.718958561Z"} +2026/03/20 17:32:09 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":99.8949136499307,"throughput_eps":0,"last_update":"2026-03-20T17:32:04.718919126Z"} +2026/03/20 17:32:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:04.575592753Z"} +2026/03/20 17:32:09 ───────────────────────────────────────────────── +2026/03/20 17:32:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:09.575815272Z"} +2026/03/20 17:32:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":524.8,"last_update":"2026-03-20T17:32:09.576107049Z"} +2026/03/20 17:32:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:09.587084917Z"} +2026/03/20 17:32:14 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":17.159376465295885,"throughput_eps":0,"last_update":"2026-03-20T17:32:09.719560464Z"} +2026/03/20 17:32:14 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":99.8949136499307,"throughput_eps":0,"last_update":"2026-03-20T17:32:09.719668801Z"} +2026/03/20 17:32:14 ───────────────────────────────────────────────── +2026/03/20 17:32:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:14.575967552Z"} +2026/03/20 17:32:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":525.8,"last_update":"2026-03-20T17:32:14.576262476Z"} +2026/03/20 17:32:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:14.585407813Z"} +2026/03/20 17:32:19 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":17.159376465295885,"throughput_eps":0,"last_update":"2026-03-20T17:32:14.719737229Z"} +2026/03/20 17:32:19 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":99.8949136499307,"throughput_eps":0,"last_update":"2026-03-20T17:32:14.719718845Z"} +2026/03/20 17:32:19 ───────────────────────────────────────────────── +2026/03/20 17:32:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:19.575698201Z"} +2026/03/20 17:32:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":526.8,"last_update":"2026-03-20T17:32:19.576050685Z"} +2026/03/20 17:32:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1056,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:19.586782755Z"} +2026/03/20 17:32:24 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":17.159376465295885,"throughput_eps":0,"last_update":"2026-03-20T17:32:19.719151333Z"} +2026/03/20 17:32:24 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":99.8949136499307,"throughput_eps":0,"last_update":"2026-03-20T17:32:19.719112739Z"} +2026/03/20 17:32:24 ───────────────────────────────────────────────── +2026/03/20 17:32:24 [ANOMALY] time=2026-03-20T17:32:24Z score=0.9031 method=SEAD details=MAD!:w=0.29,s=0.86 RRCF-fast!:w=0.18,s=0.97 RRCF-mid!:w=0.16,s=0.91 RRCF-slow!:w=0.15,s=0.90 COPOD!:w=0.22,s=0.91 +2026/03/20 17:32:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:29 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":17.159376465295885,"throughput_eps":0,"last_update":"2026-03-20T17:32:24.719623244Z"} +2026/03/20 17:32:29 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":102.54730311994457,"throughput_eps":0,"last_update":"2026-03-20T17:32:24.832904542Z"} +2026/03/20 17:32:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:24.575704866Z"} +2026/03/20 17:32:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":527.8,"last_update":"2026-03-20T17:32:24.57598376Z"} +2026/03/20 17:32:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:24.5862452Z"} +2026/03/20 17:32:29 ───────────────────────────────────────────────── +2026/03/20 17:32:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:34 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":102.54730311994457,"throughput_eps":0,"last_update":"2026-03-20T17:32:29.718777176Z"} +2026/03/20 17:32:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:29.575489376Z"} +2026/03/20 17:32:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":528.8,"last_update":"2026-03-20T17:32:29.5756593Z"} +2026/03/20 17:32:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:29.585247334Z"} +2026/03/20 17:32:34 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":16.48181857223671,"throughput_eps":0,"last_update":"2026-03-20T17:32:29.718809037Z"} +2026/03/20 17:32:34 ───────────────────────────────────────────────── +2026/03/20 17:32:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:34.575565905Z"} +2026/03/20 17:32:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":529.8,"last_update":"2026-03-20T17:32:34.57600338Z"} +2026/03/20 17:32:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1062,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:34.586588361Z"} +2026/03/20 17:32:39 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":16.48181857223671,"throughput_eps":0,"last_update":"2026-03-20T17:32:34.718822745Z"} +2026/03/20 17:32:39 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":102.54730311994457,"throughput_eps":0,"last_update":"2026-03-20T17:32:34.718793338Z"} +2026/03/20 17:32:39 ───────────────────────────────────────────────── +2026/03/20 17:32:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:39.575671382Z"} +2026/03/20 17:32:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":530.8,"last_update":"2026-03-20T17:32:39.575953472Z"} +2026/03/20 17:32:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:39.585839836Z"} +2026/03/20 17:32:44 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":16.48181857223671,"throughput_eps":0,"last_update":"2026-03-20T17:32:39.719144021Z"} +2026/03/20 17:32:44 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":102.54730311994457,"throughput_eps":0,"last_update":"2026-03-20T17:32:39.719178057Z"} +2026/03/20 17:32:44 ───────────────────────────────────────────────── +2026/03/20 17:32:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":531.8,"last_update":"2026-03-20T17:32:44.575988865Z"} +2026/03/20 17:32:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:44.586171297Z"} +2026/03/20 17:32:49 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":16.48181857223671,"throughput_eps":0,"last_update":"2026-03-20T17:32:44.719487272Z"} +2026/03/20 17:32:49 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":102.54730311994457,"throughput_eps":0,"last_update":"2026-03-20T17:32:44.719463015Z"} +2026/03/20 17:32:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:44.575680536Z"} +2026/03/20 17:32:49 ───────────────────────────────────────────────── +2026/03/20 17:32:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":532.8,"last_update":"2026-03-20T17:32:49.576223186Z"} +2026/03/20 17:32:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:49.584451032Z"} +2026/03/20 17:32:54 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":16.48181857223671,"throughput_eps":0,"last_update":"2026-03-20T17:32:49.719895692Z"} +2026/03/20 17:32:54 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":102.54730311994457,"throughput_eps":0,"last_update":"2026-03-20T17:32:49.718687453Z"} +2026/03/20 17:32:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:49.57578083Z"} +2026/03/20 17:32:54 ───────────────────────────────────────────────── +2026/03/20 17:32:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:54.585764679Z"} +2026/03/20 17:32:59 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":16.48181857223671,"throughput_eps":0,"last_update":"2026-03-20T17:32:54.719241515Z"} +2026/03/20 17:32:59 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":102.54730311994457,"throughput_eps":0,"last_update":"2026-03-20T17:32:54.719086568Z"} +2026/03/20 17:32:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:54.575540837Z"} +2026/03/20 17:32:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":533.8,"last_update":"2026-03-20T17:32:54.575875507Z"} +2026/03/20 17:32:59 ───────────────────────────────────────────────── +2026/03/20 17:33:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":534.8,"last_update":"2026-03-20T17:32:59.576093924Z"} +2026/03/20 17:33:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1072,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:59.585441701Z"} +2026/03/20 17:33:04 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":16.690378257789366,"throughput_eps":0,"last_update":"2026-03-20T17:32:59.718808995Z"} +2026/03/20 17:33:04 [transform_engine] {"stage_name":"transform_engine","events_processed":89,"events_dropped":0,"avg_latency_ms":94.98600349595566,"throughput_eps":0,"last_update":"2026-03-20T17:32:59.718696409Z"} +2026/03/20 17:33:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:59.575755948Z"} +2026/03/20 17:33:04 ───────────────────────────────────────────────── +2026/03/20 17:33:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:04.575563766Z"} +2026/03/20 17:33:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":535.8,"last_update":"2026-03-20T17:33:04.575693725Z"} +2026/03/20 17:33:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:04.585786707Z"} +2026/03/20 17:33:09 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":16.690378257789366,"throughput_eps":0,"last_update":"2026-03-20T17:33:04.719167895Z"} +2026/03/20 17:33:09 [transform_engine] {"stage_name":"transform_engine","events_processed":89,"events_dropped":0,"avg_latency_ms":94.98600349595566,"throughput_eps":0,"last_update":"2026-03-20T17:33:04.719265902Z"} +2026/03/20 17:33:09 ───────────────────────────────────────────────── +2026/03/20 17:33:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:14 [transform_engine] {"stage_name":"transform_engine","events_processed":89,"events_dropped":0,"avg_latency_ms":94.98600349595566,"throughput_eps":0,"last_update":"2026-03-20T17:33:09.719001207Z"} +2026/03/20 17:33:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:09.57596195Z"} +2026/03/20 17:33:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":536.8,"last_update":"2026-03-20T17:33:09.576330835Z"} +2026/03/20 17:33:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1076,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:09.585741344Z"} +2026/03/20 17:33:14 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":16.690378257789366,"throughput_eps":0,"last_update":"2026-03-20T17:33:09.719105246Z"} +2026/03/20 17:33:14 ───────────────────────────────────────────────── +2026/03/20 17:33:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:14.57567642Z"} +2026/03/20 17:33:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":537.8,"last_update":"2026-03-20T17:33:14.57602673Z"} +2026/03/20 17:33:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:14.585866731Z"} +2026/03/20 17:33:19 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":16.690378257789366,"throughput_eps":0,"last_update":"2026-03-20T17:33:14.719122111Z"} +2026/03/20 17:33:19 [transform_engine] {"stage_name":"transform_engine","events_processed":89,"events_dropped":0,"avg_latency_ms":94.98600349595566,"throughput_eps":0,"last_update":"2026-03-20T17:33:14.719162778Z"} +2026/03/20 17:33:19 ───────────────────────────────────────────────── +2026/03/20 17:33:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":538.8,"last_update":"2026-03-20T17:33:19.575976653Z"} +2026/03/20 17:33:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:19.586363278Z"} +2026/03/20 17:33:24 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":16.690378257789366,"throughput_eps":0,"last_update":"2026-03-20T17:33:19.719596513Z"} +2026/03/20 17:33:24 [transform_engine] {"stage_name":"transform_engine","events_processed":89,"events_dropped":0,"avg_latency_ms":94.98600349595566,"throughput_eps":0,"last_update":"2026-03-20T17:33:19.71957396Z"} +2026/03/20 17:33:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:19.575988596Z"} +2026/03/20 17:33:24 ───────────────────────────────────────────────── +2026/03/20 17:33:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:24.576012698Z"} +2026/03/20 17:33:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":539.8,"last_update":"2026-03-20T17:33:24.575999654Z"} +2026/03/20 17:33:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1082,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:24.585577704Z"} +2026/03/20 17:33:29 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":16.690378257789366,"throughput_eps":0,"last_update":"2026-03-20T17:33:24.718792049Z"} +2026/03/20 17:33:29 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":88.44331599676454,"throughput_eps":0,"last_update":"2026-03-20T17:33:24.781017936Z"} +2026/03/20 17:33:29 ───────────────────────────────────────────────── +2026/03/20 17:33:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:29.576052657Z"} +2026/03/20 17:33:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":540.8,"last_update":"2026-03-20T17:33:29.57603849Z"} +2026/03/20 17:33:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:29.587543495Z"} +2026/03/20 17:33:34 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":16.526943406231492,"throughput_eps":0,"last_update":"2026-03-20T17:33:29.718816576Z"} +2026/03/20 17:33:34 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":88.44331599676454,"throughput_eps":0,"last_update":"2026-03-20T17:33:29.718720692Z"} +2026/03/20 17:33:34 ───────────────────────────────────────────────── +2026/03/20 17:33:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:34.576067462Z"} +2026/03/20 17:33:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":541.8,"last_update":"2026-03-20T17:33:34.576235614Z"} +2026/03/20 17:33:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:34.585179533Z"} +2026/03/20 17:33:39 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":16.526943406231492,"throughput_eps":0,"last_update":"2026-03-20T17:33:34.719469728Z"} +2026/03/20 17:33:39 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":88.44331599676454,"throughput_eps":0,"last_update":"2026-03-20T17:33:34.719443437Z"} +2026/03/20 17:33:39 ───────────────────────────────────────────────── +2026/03/20 17:33:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:39.575579497Z"} +2026/03/20 17:33:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":542.8,"last_update":"2026-03-20T17:33:39.575682264Z"} +2026/03/20 17:33:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:39.586019757Z"} +2026/03/20 17:33:44 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":16.526943406231492,"throughput_eps":0,"last_update":"2026-03-20T17:33:39.719459924Z"} +2026/03/20 17:33:44 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":88.44331599676454,"throughput_eps":0,"last_update":"2026-03-20T17:33:39.719408605Z"} +2026/03/20 17:33:44 ───────────────────────────────────────────────── +2026/03/20 17:33:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:44.575794445Z"} +2026/03/20 17:33:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":543.8,"last_update":"2026-03-20T17:33:44.57612121Z"} +2026/03/20 17:33:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:44.585570085Z"} +2026/03/20 17:33:49 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":16.526943406231492,"throughput_eps":0,"last_update":"2026-03-20T17:33:44.718808461Z"} +2026/03/20 17:33:49 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":88.44331599676454,"throughput_eps":0,"last_update":"2026-03-20T17:33:44.718736013Z"} +2026/03/20 17:33:49 ───────────────────────────────────────────────── +2026/03/20 17:33:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:49.576175058Z"} +2026/03/20 17:33:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":544.8,"last_update":"2026-03-20T17:33:49.57675092Z"} +2026/03/20 17:33:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:49.585701202Z"} +2026/03/20 17:33:54 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":16.526943406231492,"throughput_eps":0,"last_update":"2026-03-20T17:33:49.719126223Z"} +2026/03/20 17:33:54 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":88.44331599676454,"throughput_eps":0,"last_update":"2026-03-20T17:33:49.719110293Z"} +2026/03/20 17:33:54 ───────────────────────────────────────────────── +2026/03/20 17:33:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:54.575525969Z"} +2026/03/20 17:33:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":545.8,"last_update":"2026-03-20T17:33:54.57556331Z"} +2026/03/20 17:33:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:54.585879865Z"} +2026/03/20 17:33:59 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":16.526943406231492,"throughput_eps":0,"last_update":"2026-03-20T17:33:54.719383222Z"} +2026/03/20 17:33:59 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":93.52199559741163,"throughput_eps":0,"last_update":"2026-03-20T17:33:54.833238842Z"} +2026/03/20 17:33:59 ───────────────────────────────────────────────── +2026/03/20 17:34:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:59.576024596Z"} +2026/03/20 17:34:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":546.8,"last_update":"2026-03-20T17:33:59.57643478Z"} +2026/03/20 17:34:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:59.585200451Z"} +2026/03/20 17:34:04 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":16.743047524985194,"throughput_eps":0,"last_update":"2026-03-20T17:33:59.719506077Z"} +2026/03/20 17:34:04 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":93.52199559741163,"throughput_eps":0,"last_update":"2026-03-20T17:33:59.719613803Z"} +2026/03/20 17:34:04 ───────────────────────────────────────────────── +2026/03/20 17:34:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:04.586132635Z"} +2026/03/20 17:34:09 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":16.743047524985194,"throughput_eps":0,"last_update":"2026-03-20T17:34:04.719475918Z"} +2026/03/20 17:34:09 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":93.52199559741163,"throughput_eps":0,"last_update":"2026-03-20T17:34:04.719364204Z"} +2026/03/20 17:34:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:04.575792314Z"} +2026/03/20 17:34:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":547.8,"last_update":"2026-03-20T17:34:04.576156991Z"} +2026/03/20 17:34:09 ───────────────────────────────────────────────── +2026/03/20 17:34:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:09.575828514Z"} +2026/03/20 17:34:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":548.8,"last_update":"2026-03-20T17:34:09.576410126Z"} +2026/03/20 17:34:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:09.586838847Z"} +2026/03/20 17:34:14 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":16.743047524985194,"throughput_eps":0,"last_update":"2026-03-20T17:34:09.719345546Z"} +2026/03/20 17:34:14 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":93.52199559741163,"throughput_eps":0,"last_update":"2026-03-20T17:34:09.719235906Z"} +2026/03/20 17:34:14 ───────────────────────────────────────────────── +2026/03/20 17:34:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:19 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":16.743047524985194,"throughput_eps":0,"last_update":"2026-03-20T17:34:14.719593333Z"} +2026/03/20 17:34:19 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":93.52199559741163,"throughput_eps":0,"last_update":"2026-03-20T17:34:14.719562544Z"} +2026/03/20 17:34:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:14.575914165Z"} +2026/03/20 17:34:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":549.8,"last_update":"2026-03-20T17:34:14.576198629Z"} +2026/03/20 17:34:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:14.588156575Z"} +2026/03/20 17:34:19 ───────────────────────────────────────────────── +2026/03/20 17:34:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:19.575878106Z"} +2026/03/20 17:34:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":550.8,"last_update":"2026-03-20T17:34:19.576225591Z"} +2026/03/20 17:34:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:19.585846428Z"} +2026/03/20 17:34:24 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":16.743047524985194,"throughput_eps":0,"last_update":"2026-03-20T17:34:19.71924314Z"} +2026/03/20 17:34:24 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":93.52199559741163,"throughput_eps":0,"last_update":"2026-03-20T17:34:19.719277756Z"} +2026/03/20 17:34:24 ───────────────────────────────────────────────── +2026/03/20 17:34:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":551.8,"last_update":"2026-03-20T17:34:24.575937883Z"} +2026/03/20 17:34:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:24.585865167Z"} +2026/03/20 17:34:29 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":16.743047524985194,"throughput_eps":0,"last_update":"2026-03-20T17:34:24.71915983Z"} +2026/03/20 17:34:29 [transform_engine] {"stage_name":"transform_engine","events_processed":92,"events_dropped":0,"avg_latency_ms":97.58340447792932,"throughput_eps":0,"last_update":"2026-03-20T17:34:24.832968671Z"} +2026/03/20 17:34:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:24.575512801Z"} +2026/03/20 17:34:29 ───────────────────────────────────────────────── +2026/03/20 17:34:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:29.576116536Z"} +2026/03/20 17:34:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":552.8,"last_update":"2026-03-20T17:34:29.576062573Z"} +2026/03/20 17:34:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:29.585422702Z"} +2026/03/20 17:34:34 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":16.954644019988155,"throughput_eps":0,"last_update":"2026-03-20T17:34:29.718818034Z"} +2026/03/20 17:34:34 [transform_engine] {"stage_name":"transform_engine","events_processed":92,"events_dropped":0,"avg_latency_ms":97.58340447792932,"throughput_eps":0,"last_update":"2026-03-20T17:34:29.718719014Z"} +2026/03/20 17:34:34 ───────────────────────────────────────────────── +2026/03/20 17:34:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":553.8,"last_update":"2026-03-20T17:34:34.576700681Z"} +2026/03/20 17:34:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:34.584979504Z"} +2026/03/20 17:34:39 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":16.954644019988155,"throughput_eps":0,"last_update":"2026-03-20T17:34:34.719394611Z"} +2026/03/20 17:34:39 [transform_engine] {"stage_name":"transform_engine","events_processed":92,"events_dropped":0,"avg_latency_ms":97.58340447792932,"throughput_eps":0,"last_update":"2026-03-20T17:34:34.719434577Z"} +2026/03/20 17:34:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:34.575886354Z"} +2026/03/20 17:34:39 ───────────────────────────────────────────────── +2026/03/20 17:34:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:39.575554602Z"} +2026/03/20 17:34:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":554.8,"last_update":"2026-03-20T17:34:39.575600209Z"} +2026/03/20 17:34:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:39.586810558Z"} +2026/03/20 17:34:44 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":16.954644019988155,"throughput_eps":0,"last_update":"2026-03-20T17:34:39.719059829Z"} +2026/03/20 17:34:44 [transform_engine] {"stage_name":"transform_engine","events_processed":92,"events_dropped":0,"avg_latency_ms":97.58340447792932,"throughput_eps":0,"last_update":"2026-03-20T17:34:39.719168597Z"} +2026/03/20 17:34:44 ───────────────────────────────────────────────── +2026/03/20 17:34:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:44.575525632Z"} +2026/03/20 17:34:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":555.8,"last_update":"2026-03-20T17:34:44.576083419Z"} +2026/03/20 17:34:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:44.586291452Z"} +2026/03/20 17:34:49 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":16.954644019988155,"throughput_eps":0,"last_update":"2026-03-20T17:34:44.719782623Z"} +2026/03/20 17:34:49 [transform_engine] {"stage_name":"transform_engine","events_processed":92,"events_dropped":0,"avg_latency_ms":97.58340447792932,"throughput_eps":0,"last_update":"2026-03-20T17:34:44.719667112Z"} +2026/03/20 17:34:49 ───────────────────────────────────────────────── +2026/03/20 17:34:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":556.8,"last_update":"2026-03-20T17:34:49.576072605Z"} +2026/03/20 17:34:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:49.586237625Z"} +2026/03/20 17:34:54 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":16.954644019988155,"throughput_eps":0,"last_update":"2026-03-20T17:34:49.719486319Z"} +2026/03/20 17:34:54 [transform_engine] {"stage_name":"transform_engine","events_processed":92,"events_dropped":0,"avg_latency_ms":97.58340447792932,"throughput_eps":0,"last_update":"2026-03-20T17:34:49.719509443Z"} +2026/03/20 17:34:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:49.575662761Z"} +2026/03/20 17:34:54 ───────────────────────────────────────────────── +2026/03/20 17:34:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:54.575993369Z"} +2026/03/20 17:34:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":557.8,"last_update":"2026-03-20T17:34:54.576194674Z"} +2026/03/20 17:34:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:54.585071711Z"} +2026/03/20 17:34:59 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":16.954644019988155,"throughput_eps":0,"last_update":"2026-03-20T17:34:54.719529944Z"} +2026/03/20 17:34:59 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":91.38441778234346,"throughput_eps":0,"last_update":"2026-03-20T17:34:54.786079199Z"} +2026/03/20 17:34:59 ───────────────────────────────────────────────── +2026/03/20 17:35:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:59.585552021Z"} +2026/03/20 17:35:04 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":16.973065615990524,"throughput_eps":0,"last_update":"2026-03-20T17:34:59.71882865Z"} +2026/03/20 17:35:04 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":91.38441778234346,"throughput_eps":0,"last_update":"2026-03-20T17:34:59.718770809Z"} +2026/03/20 17:35:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:59.575992248Z"} +2026/03/20 17:35:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":558.8,"last_update":"2026-03-20T17:34:59.576388886Z"} +2026/03/20 17:35:04 ───────────────────────────────────────────────── +2026/03/20 17:35:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:09 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":16.973065615990524,"throughput_eps":0,"last_update":"2026-03-20T17:35:04.719604247Z"} +2026/03/20 17:35:09 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":91.38441778234346,"throughput_eps":0,"last_update":"2026-03-20T17:35:04.719619976Z"} +2026/03/20 17:35:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:04.575846346Z"} +2026/03/20 17:35:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":559.8,"last_update":"2026-03-20T17:35:04.576168442Z"} +2026/03/20 17:35:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1122,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:04.58641533Z"} +2026/03/20 17:35:09 ───────────────────────────────────────────────── +2026/03/20 17:35:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":560.8,"last_update":"2026-03-20T17:35:09.575836446Z"} +2026/03/20 17:35:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:09.584958803Z"} +2026/03/20 17:35:14 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":16.973065615990524,"throughput_eps":0,"last_update":"2026-03-20T17:35:09.719389872Z"} +2026/03/20 17:35:14 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":91.38441778234346,"throughput_eps":0,"last_update":"2026-03-20T17:35:09.719403467Z"} +2026/03/20 17:35:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:09.575495745Z"} +2026/03/20 17:35:14 ───────────────────────────────────────────────── +2026/03/20 17:35:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:14.575817048Z"} +2026/03/20 17:35:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":561.8,"last_update":"2026-03-20T17:35:14.576119296Z"} +2026/03/20 17:35:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1126,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:14.586210538Z"} +2026/03/20 17:35:19 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":16.973065615990524,"throughput_eps":0,"last_update":"2026-03-20T17:35:14.719477654Z"} +2026/03/20 17:35:19 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":91.38441778234346,"throughput_eps":0,"last_update":"2026-03-20T17:35:14.719485318Z"} +2026/03/20 17:35:19 ───────────────────────────────────────────────── +2026/03/20 17:35:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1128,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:19.584852439Z"} +2026/03/20 17:35:24 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":16.973065615990524,"throughput_eps":0,"last_update":"2026-03-20T17:35:19.71917548Z"} +2026/03/20 17:35:24 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":91.38441778234346,"throughput_eps":0,"last_update":"2026-03-20T17:35:19.719186962Z"} +2026/03/20 17:35:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:19.575913872Z"} +2026/03/20 17:35:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":562.8,"last_update":"2026-03-20T17:35:19.576206963Z"} +2026/03/20 17:35:24 ───────────────────────────────────────────────── +2026/03/20 17:35:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:24.576262655Z"} +2026/03/20 17:35:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":563.8,"last_update":"2026-03-20T17:35:24.576951704Z"} +2026/03/20 17:35:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1130,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:24.584860761Z"} +2026/03/20 17:35:29 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":16.973065615990524,"throughput_eps":0,"last_update":"2026-03-20T17:35:24.71925771Z"} +2026/03/20 17:35:29 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":95.56999942587477,"throughput_eps":0,"last_update":"2026-03-20T17:35:24.831586286Z"} +2026/03/20 17:35:29 ───────────────────────────────────────────────── +2026/03/20 17:35:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:29.575828235Z"} +2026/03/20 17:35:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":564.8,"last_update":"2026-03-20T17:35:29.57618627Z"} +2026/03/20 17:35:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:29.585073469Z"} +2026/03/20 17:35:34 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":16.85228469279242,"throughput_eps":0,"last_update":"2026-03-20T17:35:29.71944862Z"} +2026/03/20 17:35:34 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":95.56999942587477,"throughput_eps":0,"last_update":"2026-03-20T17:35:29.719464551Z"} +2026/03/20 17:35:34 ───────────────────────────────────────────────── +2026/03/20 17:35:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":565.8,"last_update":"2026-03-20T17:35:34.575990991Z"} +2026/03/20 17:35:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:34.585904373Z"} +2026/03/20 17:35:39 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":16.85228469279242,"throughput_eps":0,"last_update":"2026-03-20T17:35:34.719220915Z"} +2026/03/20 17:35:39 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":95.56999942587477,"throughput_eps":0,"last_update":"2026-03-20T17:35:34.719227518Z"} +2026/03/20 17:35:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:34.575595073Z"} +2026/03/20 17:35:39 ───────────────────────────────────────────────── +2026/03/20 17:35:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:39.575520577Z"} +2026/03/20 17:35:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":566.8,"last_update":"2026-03-20T17:35:39.576104905Z"} +2026/03/20 17:35:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:39.585828365Z"} +2026/03/20 17:35:44 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":16.85228469279242,"throughput_eps":0,"last_update":"2026-03-20T17:35:39.719095215Z"} +2026/03/20 17:35:44 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":95.56999942587477,"throughput_eps":0,"last_update":"2026-03-20T17:35:39.719104062Z"} +2026/03/20 17:35:44 ───────────────────────────────────────────────── +2026/03/20 17:35:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:44.575788422Z"} +2026/03/20 17:35:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":567.8,"last_update":"2026-03-20T17:35:44.575761851Z"} +2026/03/20 17:35:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:44.585789754Z"} +2026/03/20 17:35:49 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":16.85228469279242,"throughput_eps":0,"last_update":"2026-03-20T17:35:44.719238448Z"} +2026/03/20 17:35:49 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":95.56999942587477,"throughput_eps":0,"last_update":"2026-03-20T17:35:44.719252436Z"} +2026/03/20 17:35:49 ───────────────────────────────────────────────── +2026/03/20 17:35:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:49.575668925Z"} +2026/03/20 17:35:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":568.8,"last_update":"2026-03-20T17:35:49.575663144Z"} +2026/03/20 17:35:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:49.58620982Z"} +2026/03/20 17:35:54 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":16.85228469279242,"throughput_eps":0,"last_update":"2026-03-20T17:35:49.719464539Z"} +2026/03/20 17:35:54 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":95.56999942587477,"throughput_eps":0,"last_update":"2026-03-20T17:35:49.719472483Z"} +2026/03/20 17:35:54 ───────────────────────────────────────────────── +2026/03/20 17:35:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:54.575692838Z"} +2026/03/20 17:35:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":569.8,"last_update":"2026-03-20T17:35:54.576010375Z"} +2026/03/20 17:35:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:54.58729891Z"} +2026/03/20 17:35:59 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":16.85228469279242,"throughput_eps":0,"last_update":"2026-03-20T17:35:54.71962165Z"} +2026/03/20 17:35:59 [transform_engine] {"stage_name":"transform_engine","events_processed":95,"events_dropped":0,"avg_latency_ms":98.26300994069982,"throughput_eps":0,"last_update":"2026-03-20T17:35:54.828669697Z"} +2026/03/20 17:35:59 ───────────────────────────────────────────────── +2026/03/20 17:36:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:59.575970058Z"} +2026/03/20 17:36:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":570.8,"last_update":"2026-03-20T17:35:59.576238261Z"} +2026/03/20 17:36:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:59.585192311Z"} +2026/03/20 17:36:04 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":16.949330954233936,"throughput_eps":0,"last_update":"2026-03-20T17:35:59.719443616Z"} +2026/03/20 17:36:04 [transform_engine] {"stage_name":"transform_engine","events_processed":95,"events_dropped":0,"avg_latency_ms":98.26300994069982,"throughput_eps":0,"last_update":"2026-03-20T17:35:59.719458944Z"} +2026/03/20 17:36:04 ───────────────────────────────────────────────── +2026/03/20 17:36:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:09 [transform_engine] {"stage_name":"transform_engine","events_processed":95,"events_dropped":0,"avg_latency_ms":98.26300994069982,"throughput_eps":0,"last_update":"2026-03-20T17:36:04.718718476Z"} +2026/03/20 17:36:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:04.575798764Z"} +2026/03/20 17:36:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":571.8,"last_update":"2026-03-20T17:36:04.576172529Z"} +2026/03/20 17:36:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:04.586534141Z"} +2026/03/20 17:36:09 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":16.949330954233936,"throughput_eps":0,"last_update":"2026-03-20T17:36:04.718841271Z"} +2026/03/20 17:36:09 ───────────────────────────────────────────────── +2026/03/20 17:36:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:09.575882277Z"} +2026/03/20 17:36:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":572.8,"last_update":"2026-03-20T17:36:09.576503505Z"} +2026/03/20 17:36:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:09.585810842Z"} +2026/03/20 17:36:14 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":16.949330954233936,"throughput_eps":0,"last_update":"2026-03-20T17:36:09.719159428Z"} +2026/03/20 17:36:14 [transform_engine] {"stage_name":"transform_engine","events_processed":95,"events_dropped":0,"avg_latency_ms":98.26300994069982,"throughput_eps":0,"last_update":"2026-03-20T17:36:09.719062824Z"} +2026/03/20 17:36:14 ───────────────────────────────────────────────── +2026/03/20 17:36:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:14.585087691Z"} +2026/03/20 17:36:19 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":16.949330954233936,"throughput_eps":0,"last_update":"2026-03-20T17:36:14.719503674Z"} +2026/03/20 17:36:19 [transform_engine] {"stage_name":"transform_engine","events_processed":95,"events_dropped":0,"avg_latency_ms":98.26300994069982,"throughput_eps":0,"last_update":"2026-03-20T17:36:14.719408723Z"} +2026/03/20 17:36:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:14.576050382Z"} +2026/03/20 17:36:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":573.8,"last_update":"2026-03-20T17:36:14.576368721Z"} +2026/03/20 17:36:19 ───────────────────────────────────────────────── +2026/03/20 17:36:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:24 [transform_engine] {"stage_name":"transform_engine","events_processed":95,"events_dropped":0,"avg_latency_ms":98.26300994069982,"throughput_eps":0,"last_update":"2026-03-20T17:36:19.718743012Z"} +2026/03/20 17:36:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:19.575601931Z"} +2026/03/20 17:36:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":574.8,"last_update":"2026-03-20T17:36:19.575614975Z"} +2026/03/20 17:36:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:19.585514574Z"} +2026/03/20 17:36:24 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":16.949330954233936,"throughput_eps":0,"last_update":"2026-03-20T17:36:19.718778399Z"} +2026/03/20 17:36:24 ───────────────────────────────────────────────── +2026/03/20 17:36:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":575.8,"last_update":"2026-03-20T17:36:24.576093195Z"} +2026/03/20 17:36:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:24.58625135Z"} +2026/03/20 17:36:29 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":16.949330954233936,"throughput_eps":0,"last_update":"2026-03-20T17:36:24.719644617Z"} +2026/03/20 17:36:29 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":91.67847575255985,"throughput_eps":0,"last_update":"2026-03-20T17:36:24.785039009Z"} +2026/03/20 17:36:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:24.575739889Z"} +2026/03/20 17:36:29 ───────────────────────────────────────────────── +2026/03/20 17:36:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:34 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":17.03294816338715,"throughput_eps":0,"last_update":"2026-03-20T17:36:29.718987802Z"} +2026/03/20 17:36:34 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":91.67847575255985,"throughput_eps":0,"last_update":"2026-03-20T17:36:29.719000096Z"} +2026/03/20 17:36:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:29.576166332Z"} +2026/03/20 17:36:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":576.8,"last_update":"2026-03-20T17:36:29.57614938Z"} +2026/03/20 17:36:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:29.586883737Z"} +2026/03/20 17:36:34 ───────────────────────────────────────────────── +2026/03/20 17:36:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:39 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":91.67847575255985,"throughput_eps":0,"last_update":"2026-03-20T17:36:34.71895859Z"} +2026/03/20 17:36:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:34.575841279Z"} +2026/03/20 17:36:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":577.8,"last_update":"2026-03-20T17:36:34.576194616Z"} +2026/03/20 17:36:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:34.585700863Z"} +2026/03/20 17:36:39 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":17.03294816338715,"throughput_eps":0,"last_update":"2026-03-20T17:36:34.718949723Z"} +2026/03/20 17:36:39 ───────────────────────────────────────────────── +2026/03/20 17:36:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:39.586541521Z"} +2026/03/20 17:36:44 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":17.03294816338715,"throughput_eps":0,"last_update":"2026-03-20T17:36:39.718868601Z"} +2026/03/20 17:36:44 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":91.67847575255985,"throughput_eps":0,"last_update":"2026-03-20T17:36:39.718913707Z"} +2026/03/20 17:36:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:39.575559859Z"} +2026/03/20 17:36:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":578.8,"last_update":"2026-03-20T17:36:39.575673006Z"} +2026/03/20 17:36:44 ───────────────────────────────────────────────── +2026/03/20 17:36:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:44.575521853Z"} +2026/03/20 17:36:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":579.8,"last_update":"2026-03-20T17:36:44.575959631Z"} +2026/03/20 17:36:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:44.586767721Z"} +2026/03/20 17:36:49 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":17.03294816338715,"throughput_eps":0,"last_update":"2026-03-20T17:36:44.719085508Z"} +2026/03/20 17:36:49 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":91.67847575255985,"throughput_eps":0,"last_update":"2026-03-20T17:36:44.719039359Z"} +2026/03/20 17:36:49 ───────────────────────────────────────────────── +2026/03/20 17:36:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:49.575981917Z"} +2026/03/20 17:36:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":580.8,"last_update":"2026-03-20T17:36:49.576215935Z"} +2026/03/20 17:36:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:49.586949122Z"} +2026/03/20 17:36:54 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":17.03294816338715,"throughput_eps":0,"last_update":"2026-03-20T17:36:49.719158095Z"} +2026/03/20 17:36:54 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":91.67847575255985,"throughput_eps":0,"last_update":"2026-03-20T17:36:49.719188493Z"} +2026/03/20 17:36:54 ───────────────────────────────────────────────── +2026/03/20 17:36:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:59 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":17.03294816338715,"throughput_eps":0,"last_update":"2026-03-20T17:36:54.719044593Z"} +2026/03/20 17:36:59 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":86.19104040204789,"throughput_eps":0,"last_update":"2026-03-20T17:36:54.783336037Z"} +2026/03/20 17:36:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:54.575743201Z"} +2026/03/20 17:36:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":581.8,"last_update":"2026-03-20T17:36:54.576054937Z"} +2026/03/20 17:36:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:54.586779417Z"} +2026/03/20 17:36:59 ───────────────────────────────────────────────── +2026/03/20 17:37:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:04 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":17.274344530709723,"throughput_eps":0,"last_update":"2026-03-20T17:36:59.719644469Z"} +2026/03/20 17:37:04 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":86.19104040204789,"throughput_eps":0,"last_update":"2026-03-20T17:36:59.719765229Z"} +2026/03/20 17:37:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:59.575532761Z"} +2026/03/20 17:37:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":582.8,"last_update":"2026-03-20T17:36:59.576015516Z"} +2026/03/20 17:37:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:59.585418558Z"} +2026/03/20 17:37:04 ───────────────────────────────────────────────── +2026/03/20 17:37:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":583.8,"last_update":"2026-03-20T17:37:04.576374557Z"} +2026/03/20 17:37:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1170,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:04.584808906Z"} +2026/03/20 17:37:09 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":17.274344530709723,"throughput_eps":0,"last_update":"2026-03-20T17:37:04.719271404Z"} +2026/03/20 17:37:09 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":86.19104040204789,"throughput_eps":0,"last_update":"2026-03-20T17:37:04.719231788Z"} +2026/03/20 17:37:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:04.576388044Z"} +2026/03/20 17:37:09 ───────────────────────────────────────────────── +2026/03/20 17:37:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:14 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":17.274344530709723,"throughput_eps":0,"last_update":"2026-03-20T17:37:09.719057985Z"} +2026/03/20 17:37:14 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":86.19104040204789,"throughput_eps":0,"last_update":"2026-03-20T17:37:09.719080488Z"} +2026/03/20 17:37:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:09.575732874Z"} +2026/03/20 17:37:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":584.8,"last_update":"2026-03-20T17:37:09.576135685Z"} +2026/03/20 17:37:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:09.585835195Z"} +2026/03/20 17:37:14 ───────────────────────────────────────────────── +2026/03/20 17:37:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:14.575665117Z"} +2026/03/20 17:37:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":585.8,"last_update":"2026-03-20T17:37:14.575644327Z"} +2026/03/20 17:37:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:14.587296834Z"} +2026/03/20 17:37:19 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":17.274344530709723,"throughput_eps":0,"last_update":"2026-03-20T17:37:14.719569451Z"} +2026/03/20 17:37:19 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":86.19104040204789,"throughput_eps":0,"last_update":"2026-03-20T17:37:14.719608355Z"} +2026/03/20 17:37:19 ───────────────────────────────────────────────── +2026/03/20 17:37:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:19.57576098Z"} +2026/03/20 17:37:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":586.8,"last_update":"2026-03-20T17:37:19.576107013Z"} +2026/03/20 17:37:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:19.58738293Z"} +2026/03/20 17:37:24 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":17.274344530709723,"throughput_eps":0,"last_update":"2026-03-20T17:37:19.718806805Z"} +2026/03/20 17:37:24 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":86.19104040204789,"throughput_eps":0,"last_update":"2026-03-20T17:37:19.718724808Z"} +2026/03/20 17:37:24 ───────────────────────────────────────────────── +2026/03/20 17:37:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:24.575601612Z"} +2026/03/20 17:37:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":587.8,"last_update":"2026-03-20T17:37:24.575728775Z"} +2026/03/20 17:37:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:24.586042392Z"} +2026/03/20 17:37:29 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":17.274344530709723,"throughput_eps":0,"last_update":"2026-03-20T17:37:24.719371608Z"} +2026/03/20 17:37:29 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":82.07541952163831,"throughput_eps":0,"last_update":"2026-03-20T17:37:24.78491467Z"} +2026/03/20 17:37:29 ───────────────────────────────────────────────── +2026/03/20 17:37:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:34 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":17.33203122456778,"throughput_eps":0,"last_update":"2026-03-20T17:37:29.719665677Z"} +2026/03/20 17:37:34 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":82.07541952163831,"throughput_eps":0,"last_update":"2026-03-20T17:37:29.719782831Z"} +2026/03/20 17:37:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:29.575527401Z"} +2026/03/20 17:37:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":588.8,"last_update":"2026-03-20T17:37:29.575948527Z"} +2026/03/20 17:37:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:29.587441751Z"} +2026/03/20 17:37:34 ───────────────────────────────────────────────── +2026/03/20 17:37:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:34.575797182Z"} +2026/03/20 17:37:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":589.8,"last_update":"2026-03-20T17:37:34.576112986Z"} +2026/03/20 17:37:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:34.586687352Z"} +2026/03/20 17:37:39 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":17.33203122456778,"throughput_eps":0,"last_update":"2026-03-20T17:37:34.719034086Z"} +2026/03/20 17:37:39 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":82.07541952163831,"throughput_eps":0,"last_update":"2026-03-20T17:37:34.718933143Z"} +2026/03/20 17:37:39 ───────────────────────────────────────────────── +2026/03/20 17:37:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":590.8,"last_update":"2026-03-20T17:37:39.576734109Z"} +2026/03/20 17:37:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:39.584945864Z"} +2026/03/20 17:37:44 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":17.33203122456778,"throughput_eps":0,"last_update":"2026-03-20T17:37:39.719329481Z"} +2026/03/20 17:37:44 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":82.07541952163831,"throughput_eps":0,"last_update":"2026-03-20T17:37:39.719402219Z"} +2026/03/20 17:37:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:39.576113742Z"} +2026/03/20 17:37:44 ───────────────────────────────────────────────── +2026/03/20 17:37:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:49 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":82.07541952163831,"throughput_eps":0,"last_update":"2026-03-20T17:37:44.718627096Z"} +2026/03/20 17:37:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:44.575544288Z"} +2026/03/20 17:37:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":591.8,"last_update":"2026-03-20T17:37:44.575590667Z"} +2026/03/20 17:37:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:44.585456987Z"} +2026/03/20 17:37:49 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":17.33203122456778,"throughput_eps":0,"last_update":"2026-03-20T17:37:44.719753912Z"} +2026/03/20 17:37:49 ───────────────────────────────────────────────── +2026/03/20 17:37:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:49.575580079Z"} +2026/03/20 17:37:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":592.8,"last_update":"2026-03-20T17:37:49.575706902Z"} +2026/03/20 17:37:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:49.586040908Z"} +2026/03/20 17:37:54 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":17.33203122456778,"throughput_eps":0,"last_update":"2026-03-20T17:37:49.719416755Z"} +2026/03/20 17:37:54 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":82.07541952163831,"throughput_eps":0,"last_update":"2026-03-20T17:37:49.719457652Z"} +2026/03/20 17:37:54 ───────────────────────────────────────────────── +2026/03/20 17:37:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:54.575545711Z"} +2026/03/20 17:37:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":593.8,"last_update":"2026-03-20T17:37:54.575794056Z"} +2026/03/20 17:37:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:54.586274904Z"} +2026/03/20 17:37:59 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":17.33203122456778,"throughput_eps":0,"last_update":"2026-03-20T17:37:54.719618703Z"} +2026/03/20 17:37:59 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":79.51010901731065,"throughput_eps":0,"last_update":"2026-03-20T17:37:54.789013608Z"} +2026/03/20 17:37:59 ───────────────────────────────────────────────── +2026/03/20 17:38:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:59.585364868Z"} +2026/03/20 17:38:04 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":17.480072179654222,"throughput_eps":0,"last_update":"2026-03-20T17:37:59.719820948Z"} +2026/03/20 17:38:04 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":79.51010901731065,"throughput_eps":0,"last_update":"2026-03-20T17:37:59.719854784Z"} +2026/03/20 17:38:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:59.575905073Z"} +2026/03/20 17:38:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":594.8,"last_update":"2026-03-20T17:37:59.576148108Z"} +2026/03/20 17:38:04 ───────────────────────────────────────────────── +2026/03/20 17:38:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:04.585102225Z"} +2026/03/20 17:38:09 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":17.480072179654222,"throughput_eps":0,"last_update":"2026-03-20T17:38:04.719485019Z"} +2026/03/20 17:38:09 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":79.51010901731065,"throughput_eps":0,"last_update":"2026-03-20T17:38:04.719518403Z"} +2026/03/20 17:38:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:04.575927205Z"} +2026/03/20 17:38:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":595.8,"last_update":"2026-03-20T17:38:04.576235264Z"} +2026/03/20 17:38:09 ───────────────────────────────────────────────── +2026/03/20 17:38:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:14 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":17.480072179654222,"throughput_eps":0,"last_update":"2026-03-20T17:38:09.719243124Z"} +2026/03/20 17:38:14 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":79.51010901731065,"throughput_eps":0,"last_update":"2026-03-20T17:38:09.71940327Z"} +2026/03/20 17:38:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:09.575874097Z"} +2026/03/20 17:38:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":596.8,"last_update":"2026-03-20T17:38:09.576170554Z"} +2026/03/20 17:38:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:09.585005632Z"} +2026/03/20 17:38:14 ───────────────────────────────────────────────── +2026/03/20 17:38:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:14.575943922Z"} +2026/03/20 17:38:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":597.8,"last_update":"2026-03-20T17:38:14.576502922Z"} +2026/03/20 17:38:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:14.585224614Z"} +2026/03/20 17:38:19 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":17.480072179654222,"throughput_eps":0,"last_update":"2026-03-20T17:38:14.719461146Z"} +2026/03/20 17:38:19 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":79.51010901731065,"throughput_eps":0,"last_update":"2026-03-20T17:38:14.71950485Z"} +2026/03/20 17:38:19 ───────────────────────────────────────────────── +2026/03/20 17:38:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:19.57556586Z"} +2026/03/20 17:38:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":598.8,"last_update":"2026-03-20T17:38:19.575681631Z"} +2026/03/20 17:38:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:19.585343293Z"} +2026/03/20 17:38:24 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":17.480072179654222,"throughput_eps":0,"last_update":"2026-03-20T17:38:19.719489206Z"} +2026/03/20 17:38:24 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":79.51010901731065,"throughput_eps":0,"last_update":"2026-03-20T17:38:19.719530154Z"} +2026/03/20 17:38:24 ───────────────────────────────────────────────── +2026/03/20 17:38:24 mad: auto-calibrated on 100 vectors (51 features) +2026/03/20 17:38:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":599.8,"last_update":"2026-03-20T17:38:24.576497585Z"} +2026/03/20 17:38:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:24.586858585Z"} +2026/03/20 17:38:29 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":17.480072179654222,"throughput_eps":0,"last_update":"2026-03-20T17:38:24.719090459Z"} +2026/03/20 17:38:29 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":86.33552421384853,"throughput_eps":0,"last_update":"2026-03-20T17:38:24.832840158Z"} +2026/03/20 17:38:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:24.575947021Z"} +2026/03/20 17:38:29 ───────────────────────────────────────────────── +2026/03/20 17:38:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:29.575510826Z"} +2026/03/20 17:38:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":600.8,"last_update":"2026-03-20T17:38:29.576042023Z"} +2026/03/20 17:38:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:29.586397363Z"} +2026/03/20 17:38:34 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":17.69173594372338,"throughput_eps":0,"last_update":"2026-03-20T17:38:29.719832072Z"} +2026/03/20 17:38:34 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":86.33552421384853,"throughput_eps":0,"last_update":"2026-03-20T17:38:29.718693903Z"} +2026/03/20 17:38:34 ───────────────────────────────────────────────── +2026/03/20 17:38:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:34.575508356Z"} +2026/03/20 17:38:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":601.8,"last_update":"2026-03-20T17:38:34.575712957Z"} +2026/03/20 17:38:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1206,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:34.586712811Z"} +2026/03/20 17:38:39 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":17.69173594372338,"throughput_eps":0,"last_update":"2026-03-20T17:38:34.719116019Z"} +2026/03/20 17:38:39 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":86.33552421384853,"throughput_eps":0,"last_update":"2026-03-20T17:38:34.719088126Z"} +2026/03/20 17:38:39 ───────────────────────────────────────────────── +2026/03/20 17:38:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:44 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":17.69173594372338,"throughput_eps":0,"last_update":"2026-03-20T17:38:39.719714325Z"} +2026/03/20 17:38:44 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":86.33552421384853,"throughput_eps":0,"last_update":"2026-03-20T17:38:39.719602722Z"} +2026/03/20 17:38:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:39.575758452Z"} +2026/03/20 17:38:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":602.8,"last_update":"2026-03-20T17:38:39.576191691Z"} +2026/03/20 17:38:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:39.585382743Z"} +2026/03/20 17:38:44 ───────────────────────────────────────────────── +2026/03/20 17:38:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:44.575683671Z"} +2026/03/20 17:38:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":603.8,"last_update":"2026-03-20T17:38:44.576034622Z"} +2026/03/20 17:38:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1210,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:44.586551812Z"} +2026/03/20 17:38:49 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":17.69173594372338,"throughput_eps":0,"last_update":"2026-03-20T17:38:44.718821062Z"} +2026/03/20 17:38:49 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":86.33552421384853,"throughput_eps":0,"last_update":"2026-03-20T17:38:44.718734566Z"} +2026/03/20 17:38:49 ───────────────────────────────────────────────── +2026/03/20 17:38:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:49.575606146Z"} +2026/03/20 17:38:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":604.8,"last_update":"2026-03-20T17:38:49.575758077Z"} +2026/03/20 17:38:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:49.585073858Z"} +2026/03/20 17:38:54 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":17.69173594372338,"throughput_eps":0,"last_update":"2026-03-20T17:38:49.719389537Z"} +2026/03/20 17:38:54 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":86.33552421384853,"throughput_eps":0,"last_update":"2026-03-20T17:38:49.719389147Z"} +2026/03/20 17:38:54 ───────────────────────────────────────────────── +2026/03/20 17:38:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:54.576493789Z"} +2026/03/20 17:38:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":605.8,"last_update":"2026-03-20T17:38:54.57537152Z"} +2026/03/20 17:38:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:54.58516692Z"} +2026/03/20 17:38:59 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":17.69173594372338,"throughput_eps":0,"last_update":"2026-03-20T17:38:54.720496494Z"} +2026/03/20 17:38:59 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":91.58801217107883,"throughput_eps":0,"last_update":"2026-03-20T17:38:54.831972409Z"} +2026/03/20 17:38:59 ───────────────────────────────────────────────── +2026/03/20 17:39:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:04 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":91.58801217107883,"throughput_eps":0,"last_update":"2026-03-20T17:38:59.718768573Z"} +2026/03/20 17:39:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:59.575523245Z"} +2026/03/20 17:39:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":606.8,"last_update":"2026-03-20T17:38:59.575761811Z"} +2026/03/20 17:39:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:59.586602011Z"} +2026/03/20 17:39:04 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":17.709567354978706,"throughput_eps":0,"last_update":"2026-03-20T17:38:59.718808069Z"} +2026/03/20 17:39:04 ───────────────────────────────────────────────── +2026/03/20 17:39:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:04.575913133Z"} +2026/03/20 17:39:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":607.8,"last_update":"2026-03-20T17:39:04.576216574Z"} +2026/03/20 17:39:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:04.58593717Z"} +2026/03/20 17:39:09 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":17.709567354978706,"throughput_eps":0,"last_update":"2026-03-20T17:39:04.719263757Z"} +2026/03/20 17:39:09 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":91.58801217107883,"throughput_eps":0,"last_update":"2026-03-20T17:39:04.719279237Z"} +2026/03/20 17:39:09 ───────────────────────────────────────────────── +2026/03/20 17:39:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:09.575815555Z"} +2026/03/20 17:39:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":608.8,"last_update":"2026-03-20T17:39:09.576186465Z"} +2026/03/20 17:39:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:09.584581544Z"} +2026/03/20 17:39:14 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":17.709567354978706,"throughput_eps":0,"last_update":"2026-03-20T17:39:09.718806073Z"} +2026/03/20 17:39:14 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":91.58801217107883,"throughput_eps":0,"last_update":"2026-03-20T17:39:09.71874165Z"} +2026/03/20 17:39:14 ───────────────────────────────────────────────── +2026/03/20 17:39:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:14.575834336Z"} +2026/03/20 17:39:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":609.8,"last_update":"2026-03-20T17:39:14.576147135Z"} +2026/03/20 17:39:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1222,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:14.585835159Z"} +2026/03/20 17:39:19 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":17.709567354978706,"throughput_eps":0,"last_update":"2026-03-20T17:39:14.719224393Z"} +2026/03/20 17:39:19 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":91.58801217107883,"throughput_eps":0,"last_update":"2026-03-20T17:39:14.719236446Z"} +2026/03/20 17:39:19 ───────────────────────────────────────────────── +2026/03/20 17:39:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:19.586266163Z"} +2026/03/20 17:39:24 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":17.709567354978706,"throughput_eps":0,"last_update":"2026-03-20T17:39:19.719583361Z"} +2026/03/20 17:39:24 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":91.58801217107883,"throughput_eps":0,"last_update":"2026-03-20T17:39:19.719594984Z"} +2026/03/20 17:39:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:19.57566498Z"} +2026/03/20 17:39:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":610.8,"last_update":"2026-03-20T17:39:19.576039497Z"} +2026/03/20 17:39:24 ───────────────────────────────────────────────── +2026/03/20 17:39:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:24.57601994Z"} +2026/03/20 17:39:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":611.8,"last_update":"2026-03-20T17:39:24.576262325Z"} +2026/03/20 17:39:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:24.58554863Z"} +2026/03/20 17:39:29 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":17.709567354978706,"throughput_eps":0,"last_update":"2026-03-20T17:39:24.718968519Z"} +2026/03/20 17:39:29 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":95.53450053686308,"throughput_eps":0,"last_update":"2026-03-20T17:39:24.830018705Z"} +2026/03/20 17:39:29 ───────────────────────────────────────────────── +2026/03/20 17:39:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:29.575564692Z"} +2026/03/20 17:39:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":612.8,"last_update":"2026-03-20T17:39:29.57567382Z"} +2026/03/20 17:39:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:29.585949161Z"} +2026/03/20 17:39:34 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":17.847818683982965,"throughput_eps":0,"last_update":"2026-03-20T17:39:29.719387648Z"} +2026/03/20 17:39:34 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":95.53450053686308,"throughput_eps":0,"last_update":"2026-03-20T17:39:29.719416634Z"} +2026/03/20 17:39:34 ───────────────────────────────────────────────── +2026/03/20 17:39:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":613.8,"last_update":"2026-03-20T17:39:34.575745944Z"} +2026/03/20 17:39:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:34.586117558Z"} +2026/03/20 17:39:39 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":17.847818683982965,"throughput_eps":0,"last_update":"2026-03-20T17:39:34.719549426Z"} +2026/03/20 17:39:39 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":95.53450053686308,"throughput_eps":0,"last_update":"2026-03-20T17:39:34.719499601Z"} +2026/03/20 17:39:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:34.575553605Z"} +2026/03/20 17:39:39 ───────────────────────────────────────────────── +2026/03/20 17:39:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:44 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":17.847818683982965,"throughput_eps":0,"last_update":"2026-03-20T17:39:39.719066188Z"} +2026/03/20 17:39:44 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":95.53450053686308,"throughput_eps":0,"last_update":"2026-03-20T17:39:39.719108038Z"} +2026/03/20 17:39:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:39.576012037Z"} +2026/03/20 17:39:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":614.8,"last_update":"2026-03-20T17:39:39.576342168Z"} +2026/03/20 17:39:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:39.58480586Z"} +2026/03/20 17:39:44 ───────────────────────────────────────────────── +2026/03/20 17:39:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":615.8,"last_update":"2026-03-20T17:39:44.575828288Z"} +2026/03/20 17:39:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:44.585213213Z"} +2026/03/20 17:39:49 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":17.847818683982965,"throughput_eps":0,"last_update":"2026-03-20T17:39:44.71952355Z"} +2026/03/20 17:39:49 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":95.53450053686308,"throughput_eps":0,"last_update":"2026-03-20T17:39:44.719540632Z"} +2026/03/20 17:39:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:44.575503616Z"} +2026/03/20 17:39:49 ───────────────────────────────────────────────── +2026/03/20 17:39:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:54 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":95.53450053686308,"throughput_eps":0,"last_update":"2026-03-20T17:39:49.719322747Z"} +2026/03/20 17:39:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:49.575994995Z"} +2026/03/20 17:39:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":616.8,"last_update":"2026-03-20T17:39:49.576175822Z"} +2026/03/20 17:39:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:49.585949502Z"} +2026/03/20 17:39:54 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":17.847818683982965,"throughput_eps":0,"last_update":"2026-03-20T17:39:49.719275777Z"} +2026/03/20 17:39:54 ───────────────────────────────────────────────── +2026/03/20 17:39:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:54.586086461Z"} +2026/03/20 17:39:59 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":17.847818683982965,"throughput_eps":0,"last_update":"2026-03-20T17:39:54.719545823Z"} +2026/03/20 17:39:59 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":89.12078422949047,"throughput_eps":0,"last_update":"2026-03-20T17:39:54.782912111Z"} +2026/03/20 17:39:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:54.575519652Z"} +2026/03/20 17:39:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":617.8,"last_update":"2026-03-20T17:39:54.575824305Z"} +2026/03/20 17:39:59 ───────────────────────────────────────────────── +2026/03/20 17:40:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":618.8,"last_update":"2026-03-20T17:39:59.576010935Z"} +2026/03/20 17:40:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:59.586233063Z"} +2026/03/20 17:40:04 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":17.667138547186372,"throughput_eps":0,"last_update":"2026-03-20T17:39:59.719412012Z"} +2026/03/20 17:40:04 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":89.12078422949047,"throughput_eps":0,"last_update":"2026-03-20T17:39:59.71951561Z"} +2026/03/20 17:40:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:59.575557837Z"} +2026/03/20 17:40:04 ───────────────────────────────────────────────── +2026/03/20 17:40:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:09 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":17.667138547186372,"throughput_eps":0,"last_update":"2026-03-20T17:40:04.719174024Z"} +2026/03/20 17:40:09 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":89.12078422949047,"throughput_eps":0,"last_update":"2026-03-20T17:40:04.719153765Z"} +2026/03/20 17:40:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:04.575672089Z"} +2026/03/20 17:40:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":619.8,"last_update":"2026-03-20T17:40:04.57608017Z"} +2026/03/20 17:40:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:04.594925789Z"} +2026/03/20 17:40:09 ───────────────────────────────────────────────── +2026/03/20 17:40:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:09.57560077Z"} +2026/03/20 17:40:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":620.8,"last_update":"2026-03-20T17:40:09.576111198Z"} +2026/03/20 17:40:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:09.586264345Z"} +2026/03/20 17:40:14 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":17.667138547186372,"throughput_eps":0,"last_update":"2026-03-20T17:40:09.719498796Z"} +2026/03/20 17:40:14 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":89.12078422949047,"throughput_eps":0,"last_update":"2026-03-20T17:40:09.719613336Z"} +2026/03/20 17:40:14 ───────────────────────────────────────────────── +2026/03/20 17:40:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:14.575836219Z"} +2026/03/20 17:40:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":621.8,"last_update":"2026-03-20T17:40:14.576608678Z"} +2026/03/20 17:40:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1246,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:14.586176085Z"} +2026/03/20 17:40:19 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":17.667138547186372,"throughput_eps":0,"last_update":"2026-03-20T17:40:14.719527564Z"} +2026/03/20 17:40:19 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":89.12078422949047,"throughput_eps":0,"last_update":"2026-03-20T17:40:14.71947841Z"} +2026/03/20 17:40:19 ───────────────────────────────────────────────── +2026/03/20 17:40:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:24 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":89.12078422949047,"throughput_eps":0,"last_update":"2026-03-20T17:40:19.719393149Z"} +2026/03/20 17:40:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:19.575986518Z"} +2026/03/20 17:40:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":622.8,"last_update":"2026-03-20T17:40:19.576287174Z"} +2026/03/20 17:40:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:19.586154014Z"} +2026/03/20 17:40:24 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":17.667138547186372,"throughput_eps":0,"last_update":"2026-03-20T17:40:19.719437995Z"} +2026/03/20 17:40:24 ───────────────────────────────────────────────── +2026/03/20 17:40:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:29 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":17.667138547186372,"throughput_eps":0,"last_update":"2026-03-20T17:40:24.719838314Z"} +2026/03/20 17:40:29 [transform_engine] {"stage_name":"transform_engine","events_processed":104,"events_dropped":0,"avg_latency_ms":93.97818178359239,"throughput_eps":0,"last_update":"2026-03-20T17:40:24.832153444Z"} +2026/03/20 17:40:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:24.575511247Z"} +2026/03/20 17:40:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":623.8,"last_update":"2026-03-20T17:40:24.575837481Z"} +2026/03/20 17:40:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:24.586194831Z"} +2026/03/20 17:40:29 ───────────────────────────────────────────────── +2026/03/20 17:40:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:29.575726077Z"} +2026/03/20 17:40:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":624.8,"last_update":"2026-03-20T17:40:29.576125672Z"} +2026/03/20 17:40:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:29.586005707Z"} +2026/03/20 17:40:34 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":17.7591440377491,"throughput_eps":0,"last_update":"2026-03-20T17:40:29.719421488Z"} +2026/03/20 17:40:34 [transform_engine] {"stage_name":"transform_engine","events_processed":104,"events_dropped":0,"avg_latency_ms":93.97818178359239,"throughput_eps":0,"last_update":"2026-03-20T17:40:29.719389346Z"} +2026/03/20 17:40:34 ───────────────────────────────────────────────── +2026/03/20 17:40:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":625.8,"last_update":"2026-03-20T17:40:34.575679031Z"} +2026/03/20 17:40:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:34.586907018Z"} +2026/03/20 17:40:39 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":17.7591440377491,"throughput_eps":0,"last_update":"2026-03-20T17:40:34.719148684Z"} +2026/03/20 17:40:39 [transform_engine] {"stage_name":"transform_engine","events_processed":104,"events_dropped":0,"avg_latency_ms":93.97818178359239,"throughput_eps":0,"last_update":"2026-03-20T17:40:34.719160416Z"} +2026/03/20 17:40:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:34.575522822Z"} +2026/03/20 17:40:39 ───────────────────────────────────────────────── +2026/03/20 17:40:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:39.575511792Z"} +2026/03/20 17:40:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":626.8,"last_update":"2026-03-20T17:40:39.57558381Z"} +2026/03/20 17:40:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:39.586226886Z"} +2026/03/20 17:40:44 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":17.7591440377491,"throughput_eps":0,"last_update":"2026-03-20T17:40:39.71953194Z"} +2026/03/20 17:40:44 [transform_engine] {"stage_name":"transform_engine","events_processed":104,"events_dropped":0,"avg_latency_ms":93.97818178359239,"throughput_eps":0,"last_update":"2026-03-20T17:40:39.719486684Z"} +2026/03/20 17:40:44 ───────────────────────────────────────────────── +2026/03/20 17:40:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:44.575942231Z"} +2026/03/20 17:40:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":627.8,"last_update":"2026-03-20T17:40:44.576294916Z"} +2026/03/20 17:40:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:44.585435527Z"} +2026/03/20 17:40:49 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":17.7591440377491,"throughput_eps":0,"last_update":"2026-03-20T17:40:44.71973091Z"} +2026/03/20 17:40:49 [transform_engine] {"stage_name":"transform_engine","events_processed":104,"events_dropped":0,"avg_latency_ms":93.97818178359239,"throughput_eps":0,"last_update":"2026-03-20T17:40:44.719848885Z"} +2026/03/20 17:40:49 ───────────────────────────────────────────────── +2026/03/20 17:40:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:54 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":17.7591440377491,"throughput_eps":0,"last_update":"2026-03-20T17:40:49.719370303Z"} +2026/03/20 17:40:54 [transform_engine] {"stage_name":"transform_engine","events_processed":104,"events_dropped":0,"avg_latency_ms":93.97818178359239,"throughput_eps":0,"last_update":"2026-03-20T17:40:49.719381183Z"} +2026/03/20 17:40:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:49.57587878Z"} +2026/03/20 17:40:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":628.8,"last_update":"2026-03-20T17:40:49.576170128Z"} +2026/03/20 17:40:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:49.584988181Z"} +2026/03/20 17:40:54 ───────────────────────────────────────────────── +2026/03/20 17:40:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:54.586085656Z"} +2026/03/20 17:40:59 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":17.7591440377491,"throughput_eps":0,"last_update":"2026-03-20T17:40:54.719319652Z"} +2026/03/20 17:40:59 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":88.22361042687392,"throughput_eps":0,"last_update":"2026-03-20T17:40:54.784537591Z"} +2026/03/20 17:40:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:54.575959819Z"} +2026/03/20 17:40:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":629.8,"last_update":"2026-03-20T17:40:54.576276004Z"} +2026/03/20 17:40:59 ───────────────────────────────────────────────── +2026/03/20 17:41:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:59.585317592Z"} +2026/03/20 17:41:04 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":17.49918003019928,"throughput_eps":0,"last_update":"2026-03-20T17:40:59.719545894Z"} +2026/03/20 17:41:04 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":88.22361042687392,"throughput_eps":0,"last_update":"2026-03-20T17:40:59.719586582Z"} +2026/03/20 17:41:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:59.575813705Z"} +2026/03/20 17:41:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":630.8,"last_update":"2026-03-20T17:40:59.576183763Z"} +2026/03/20 17:41:04 ───────────────────────────────────────────────── +2026/03/20 17:41:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:04.576306004Z"} +2026/03/20 17:41:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":631.8,"last_update":"2026-03-20T17:41:04.576187136Z"} +2026/03/20 17:41:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:04.584783576Z"} +2026/03/20 17:41:09 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":17.49918003019928,"throughput_eps":0,"last_update":"2026-03-20T17:41:04.719160245Z"} +2026/03/20 17:41:09 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":88.22361042687392,"throughput_eps":0,"last_update":"2026-03-20T17:41:04.719215731Z"} +2026/03/20 17:41:09 ───────────────────────────────────────────────── +2026/03/20 17:41:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:14 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":88.22361042687392,"throughput_eps":0,"last_update":"2026-03-20T17:41:09.719588455Z"} +2026/03/20 17:41:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:09.575498555Z"} +2026/03/20 17:41:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":632.8,"last_update":"2026-03-20T17:41:09.576032026Z"} +2026/03/20 17:41:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:09.586188223Z"} +2026/03/20 17:41:14 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":17.49918003019928,"throughput_eps":0,"last_update":"2026-03-20T17:41:09.719731048Z"} +2026/03/20 17:41:14 ───────────────────────────────────────────────── +2026/03/20 17:41:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:14.57566398Z"} +2026/03/20 17:41:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":633.8,"last_update":"2026-03-20T17:41:14.576085808Z"} +2026/03/20 17:41:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:14.585666683Z"} +2026/03/20 17:41:19 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":17.49918003019928,"throughput_eps":0,"last_update":"2026-03-20T17:41:14.719006162Z"} +2026/03/20 17:41:19 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":88.22361042687392,"throughput_eps":0,"last_update":"2026-03-20T17:41:14.719060075Z"} +2026/03/20 17:41:19 ───────────────────────────────────────────────── +2026/03/20 17:41:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:19.575794585Z"} +2026/03/20 17:41:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":634.8,"last_update":"2026-03-20T17:41:19.576149926Z"} +2026/03/20 17:41:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:19.584465077Z"} +2026/03/20 17:41:24 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":17.49918003019928,"throughput_eps":0,"last_update":"2026-03-20T17:41:19.718923962Z"} +2026/03/20 17:41:24 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":88.22361042687392,"throughput_eps":0,"last_update":"2026-03-20T17:41:19.71865156Z"} +2026/03/20 17:41:24 ───────────────────────────────────────────────── +2026/03/20 17:41:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:24.575703264Z"} +2026/03/20 17:41:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":635.8,"last_update":"2026-03-20T17:41:24.576094733Z"} +2026/03/20 17:41:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:24.587051563Z"} +2026/03/20 17:41:29 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":17.49918003019928,"throughput_eps":0,"last_update":"2026-03-20T17:41:24.719443854Z"} +2026/03/20 17:41:29 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":93.35834174149915,"throughput_eps":0,"last_update":"2026-03-20T17:41:24.833309489Z"} +2026/03/20 17:41:29 ───────────────────────────────────────────────── +2026/03/20 17:41:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:29.575921282Z"} +2026/03/20 17:41:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":636.8,"last_update":"2026-03-20T17:41:29.576288444Z"} +2026/03/20 17:41:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1276,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:29.585732999Z"} +2026/03/20 17:41:34 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":17.439795824159425,"throughput_eps":0,"last_update":"2026-03-20T17:41:29.719188016Z"} +2026/03/20 17:41:34 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":93.35834174149915,"throughput_eps":0,"last_update":"2026-03-20T17:41:29.719220047Z"} +2026/03/20 17:41:34 ───────────────────────────────────────────────── +2026/03/20 17:41:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:39 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":93.35834174149915,"throughput_eps":0,"last_update":"2026-03-20T17:41:34.718776275Z"} +2026/03/20 17:41:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:34.575735149Z"} +2026/03/20 17:41:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":637.8,"last_update":"2026-03-20T17:41:34.576015586Z"} +2026/03/20 17:41:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:34.586541071Z"} +2026/03/20 17:41:39 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":17.439795824159425,"throughput_eps":0,"last_update":"2026-03-20T17:41:34.718795051Z"} +2026/03/20 17:41:39 ───────────────────────────────────────────────── +2026/03/20 17:41:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":638.8,"last_update":"2026-03-20T17:41:39.575425095Z"} +2026/03/20 17:41:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:39.585191817Z"} +2026/03/20 17:41:44 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":17.439795824159425,"throughput_eps":0,"last_update":"2026-03-20T17:41:39.719481258Z"} +2026/03/20 17:41:44 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":93.35834174149915,"throughput_eps":0,"last_update":"2026-03-20T17:41:39.719580858Z"} +2026/03/20 17:41:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:39.576486007Z"} +2026/03/20 17:41:44 ───────────────────────────────────────────────── +2026/03/20 17:41:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:44.575766842Z"} +2026/03/20 17:41:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":639.8,"last_update":"2026-03-20T17:41:44.57617322Z"} +2026/03/20 17:41:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:44.587059956Z"} +2026/03/20 17:41:49 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":17.439795824159425,"throughput_eps":0,"last_update":"2026-03-20T17:41:44.719438761Z"} +2026/03/20 17:41:49 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":93.35834174149915,"throughput_eps":0,"last_update":"2026-03-20T17:41:44.719540676Z"} +2026/03/20 17:41:49 ───────────────────────────────────────────────── +2026/03/20 17:41:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:49.575749313Z"} +2026/03/20 17:41:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":640.8,"last_update":"2026-03-20T17:41:49.576030892Z"} +2026/03/20 17:41:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:49.587399652Z"} +2026/03/20 17:41:54 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":17.439795824159425,"throughput_eps":0,"last_update":"2026-03-20T17:41:49.719780131Z"} +2026/03/20 17:41:54 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":93.35834174149915,"throughput_eps":0,"last_update":"2026-03-20T17:41:49.719709516Z"} +2026/03/20 17:41:54 ───────────────────────────────────────────────── +2026/03/20 17:41:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1286,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:54.586621089Z"} +2026/03/20 17:41:59 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":17.439795824159425,"throughput_eps":0,"last_update":"2026-03-20T17:41:54.719451553Z"} +2026/03/20 17:41:59 [transform_engine] {"stage_name":"transform_engine","events_processed":107,"events_dropped":0,"avg_latency_ms":87.75788319319932,"throughput_eps":0,"last_update":"2026-03-20T17:41:54.784146627Z"} +2026/03/20 17:41:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:54.576429644Z"} +2026/03/20 17:41:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":641.8,"last_update":"2026-03-20T17:41:54.575407857Z"} +2026/03/20 17:41:59 ───────────────────────────────────────────────── +2026/03/20 17:42:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:04 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":17.33786845932754,"throughput_eps":0,"last_update":"2026-03-20T17:41:59.71926674Z"} +2026/03/20 17:42:04 [transform_engine] {"stage_name":"transform_engine","events_processed":107,"events_dropped":0,"avg_latency_ms":87.75788319319932,"throughput_eps":0,"last_update":"2026-03-20T17:41:59.719238937Z"} +2026/03/20 17:42:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:59.576664733Z"} +2026/03/20 17:42:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":642.8,"last_update":"2026-03-20T17:41:59.575467048Z"} +2026/03/20 17:42:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:59.585852415Z"} +2026/03/20 17:42:04 ───────────────────────────────────────────────── +2026/03/20 17:42:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:04.585594802Z"} +2026/03/20 17:42:09 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":17.33786845932754,"throughput_eps":0,"last_update":"2026-03-20T17:42:04.718792834Z"} +2026/03/20 17:42:09 [transform_engine] {"stage_name":"transform_engine","events_processed":107,"events_dropped":0,"avg_latency_ms":87.75788319319932,"throughput_eps":0,"last_update":"2026-03-20T17:42:04.718753659Z"} +2026/03/20 17:42:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:04.575538876Z"} +2026/03/20 17:42:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":643.8,"last_update":"2026-03-20T17:42:04.575550618Z"} +2026/03/20 17:42:09 ───────────────────────────────────────────────── +2026/03/20 17:42:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:14 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":17.33786845932754,"throughput_eps":0,"last_update":"2026-03-20T17:42:09.719381462Z"} +2026/03/20 17:42:14 [transform_engine] {"stage_name":"transform_engine","events_processed":107,"events_dropped":0,"avg_latency_ms":87.75788319319932,"throughput_eps":0,"last_update":"2026-03-20T17:42:09.719400277Z"} +2026/03/20 17:42:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:09.575933678Z"} +2026/03/20 17:42:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":644.8,"last_update":"2026-03-20T17:42:09.576323676Z"} +2026/03/20 17:42:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:09.585018435Z"} +2026/03/20 17:42:14 ───────────────────────────────────────────────── +2026/03/20 17:42:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:14.575759912Z"} +2026/03/20 17:42:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":645.8,"last_update":"2026-03-20T17:42:14.576205305Z"} +2026/03/20 17:42:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:14.58542994Z"} +2026/03/20 17:42:19 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":17.33786845932754,"throughput_eps":0,"last_update":"2026-03-20T17:42:14.718881613Z"} +2026/03/20 17:42:19 [transform_engine] {"stage_name":"transform_engine","events_processed":107,"events_dropped":0,"avg_latency_ms":87.75788319319932,"throughput_eps":0,"last_update":"2026-03-20T17:42:14.718770781Z"} +2026/03/20 17:42:19 ───────────────────────────────────────────────── +2026/03/20 17:42:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:19.575487883Z"} +2026/03/20 17:42:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":646.8,"last_update":"2026-03-20T17:42:19.575841591Z"} +2026/03/20 17:42:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:19.586043939Z"} +2026/03/20 17:42:24 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":17.33786845932754,"throughput_eps":0,"last_update":"2026-03-20T17:42:19.719276264Z"} +2026/03/20 17:42:24 [transform_engine] {"stage_name":"transform_engine","events_processed":107,"events_dropped":0,"avg_latency_ms":87.75788319319932,"throughput_eps":0,"last_update":"2026-03-20T17:42:19.719307885Z"} +2026/03/20 17:42:24 ───────────────────────────────────────────────── +2026/03/20 17:42:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":647.8,"last_update":"2026-03-20T17:42:24.575712374Z"} +2026/03/20 17:42:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:24.586163508Z"} +2026/03/20 17:42:29 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":17.33786845932754,"throughput_eps":0,"last_update":"2026-03-20T17:42:24.719410033Z"} +2026/03/20 17:42:29 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":93.36222375455947,"throughput_eps":0,"last_update":"2026-03-20T17:42:24.835215819Z"} +2026/03/20 17:42:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:24.575497482Z"} +2026/03/20 17:42:29 ───────────────────────────────────────────────── +2026/03/20 17:42:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:34 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":17.142302567462036,"throughput_eps":0,"last_update":"2026-03-20T17:42:29.719429559Z"} +2026/03/20 17:42:34 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":93.36222375455947,"throughput_eps":0,"last_update":"2026-03-20T17:42:29.719396074Z"} +2026/03/20 17:42:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:29.57552947Z"} +2026/03/20 17:42:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":648.8,"last_update":"2026-03-20T17:42:29.576001824Z"} +2026/03/20 17:42:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:29.586013527Z"} +2026/03/20 17:42:34 ───────────────────────────────────────────────── +2026/03/20 17:42:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:34.575532246Z"} +2026/03/20 17:42:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":649.8,"last_update":"2026-03-20T17:42:34.575756365Z"} +2026/03/20 17:42:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:34.587079178Z"} +2026/03/20 17:42:39 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":17.142302567462036,"throughput_eps":0,"last_update":"2026-03-20T17:42:34.71946543Z"} +2026/03/20 17:42:39 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":93.36222375455947,"throughput_eps":0,"last_update":"2026-03-20T17:42:34.719499846Z"} +2026/03/20 17:42:39 ───────────────────────────────────────────────── +2026/03/20 17:42:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:39.575508445Z"} +2026/03/20 17:42:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":650.8,"last_update":"2026-03-20T17:42:39.575648394Z"} +2026/03/20 17:42:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:39.586238714Z"} +2026/03/20 17:42:44 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":17.142302567462036,"throughput_eps":0,"last_update":"2026-03-20T17:42:39.719586962Z"} +2026/03/20 17:42:44 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":93.36222375455947,"throughput_eps":0,"last_update":"2026-03-20T17:42:39.719487351Z"} +2026/03/20 17:42:44 ───────────────────────────────────────────────── +2026/03/20 17:42:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:44.584844945Z"} +2026/03/20 17:42:49 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":17.142302567462036,"throughput_eps":0,"last_update":"2026-03-20T17:42:44.719304461Z"} +2026/03/20 17:42:49 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":93.36222375455947,"throughput_eps":0,"last_update":"2026-03-20T17:42:44.719193208Z"} +2026/03/20 17:42:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:44.575533092Z"} +2026/03/20 17:42:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":651.8,"last_update":"2026-03-20T17:42:44.575945642Z"} +2026/03/20 17:42:49 ───────────────────────────────────────────────── +2026/03/20 17:42:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:49.575504508Z"} +2026/03/20 17:42:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":652.8,"last_update":"2026-03-20T17:42:49.575721364Z"} +2026/03/20 17:42:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:49.586634364Z"} +2026/03/20 17:42:54 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":17.142302567462036,"throughput_eps":0,"last_update":"2026-03-20T17:42:49.719086598Z"} +2026/03/20 17:42:54 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":93.36222375455947,"throughput_eps":0,"last_update":"2026-03-20T17:42:49.71920789Z"} +2026/03/20 17:42:54 ───────────────────────────────────────────────── +2026/03/20 17:42:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:54.575901552Z"} +2026/03/20 17:42:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":653.8,"last_update":"2026-03-20T17:42:54.576259357Z"} +2026/03/20 17:42:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:54.586329192Z"} +2026/03/20 17:42:59 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":17.142302567462036,"throughput_eps":0,"last_update":"2026-03-20T17:42:54.719830758Z"} +2026/03/20 17:42:59 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":87.55988020364757,"throughput_eps":0,"last_update":"2026-03-20T17:42:54.784205742Z"} +2026/03/20 17:42:59 ───────────────────────────────────────────────── +2026/03/20 17:43:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:59.584846786Z"} +2026/03/20 17:43:04 [detection_layer] {"stage_name":"detection_layer","events_processed":109,"events_dropped":0,"avg_latency_ms":17.29237505396963,"throughput_eps":0,"last_update":"2026-03-20T17:42:59.719132737Z"} +2026/03/20 17:43:04 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":87.55988020364757,"throughput_eps":0,"last_update":"2026-03-20T17:42:59.719138057Z"} +2026/03/20 17:43:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:59.575766637Z"} +2026/03/20 17:43:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":654.8,"last_update":"2026-03-20T17:42:59.576092711Z"} +2026/03/20 17:43:04 ───────────────────────────────────────────────── +2026/03/20 17:43:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:04.575550325Z"} +2026/03/20 17:43:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":655.8,"last_update":"2026-03-20T17:43:04.575496352Z"} +2026/03/20 17:43:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:04.585974319Z"} +2026/03/20 17:43:09 [detection_layer] {"stage_name":"detection_layer","events_processed":109,"events_dropped":0,"avg_latency_ms":17.29237505396963,"throughput_eps":0,"last_update":"2026-03-20T17:43:04.719333307Z"} +2026/03/20 17:43:09 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":87.55988020364757,"throughput_eps":0,"last_update":"2026-03-20T17:43:04.719345471Z"} +2026/03/20 17:43:09 ───────────────────────────────────────────────── +2026/03/20 17:43:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:09.575518198Z"} +2026/03/20 17:43:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":656.8,"last_update":"2026-03-20T17:43:09.575774769Z"} +2026/03/20 17:43:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:09.584995057Z"} +2026/03/20 17:43:14 [detection_layer] {"stage_name":"detection_layer","events_processed":109,"events_dropped":0,"avg_latency_ms":17.29237505396963,"throughput_eps":0,"last_update":"2026-03-20T17:43:09.719401825Z"} +2026/03/20 17:43:14 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":87.55988020364757,"throughput_eps":0,"last_update":"2026-03-20T17:43:09.719414188Z"} +2026/03/20 17:43:14 ───────────────────────────────────────────────── +2026/03/20 17:43:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:14.585196333Z"} +2026/03/20 17:43:19 [detection_layer] {"stage_name":"detection_layer","events_processed":109,"events_dropped":0,"avg_latency_ms":17.29237505396963,"throughput_eps":0,"last_update":"2026-03-20T17:43:14.719403129Z"} +2026/03/20 17:43:19 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":87.55988020364757,"throughput_eps":0,"last_update":"2026-03-20T17:43:14.719411094Z"} +2026/03/20 17:43:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:14.575771293Z"} +2026/03/20 17:43:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":657.8,"last_update":"2026-03-20T17:43:14.576048824Z"} +2026/03/20 17:43:19 ───────────────────────────────────────────────── +2026/03/20 17:43:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:24 [detection_layer] {"stage_name":"detection_layer","events_processed":109,"events_dropped":0,"avg_latency_ms":17.29237505396963,"throughput_eps":0,"last_update":"2026-03-20T17:43:19.719470359Z"} +2026/03/20 17:43:24 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":87.55988020364757,"throughput_eps":0,"last_update":"2026-03-20T17:43:19.719478133Z"} +2026/03/20 17:43:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:19.576015759Z"} +2026/03/20 17:43:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":658.8,"last_update":"2026-03-20T17:43:19.576195563Z"} +2026/03/20 17:43:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1320,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:19.585198606Z"} +2026/03/20 17:43:24 ───────────────────────────────────────────────── +2026/03/20 17:43:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:24.57562172Z"} +2026/03/20 17:43:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":659.8,"last_update":"2026-03-20T17:43:24.575606752Z"} +2026/03/20 17:43:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:24.586798405Z"} +2026/03/20 17:43:29 [detection_layer] {"stage_name":"detection_layer","events_processed":109,"events_dropped":0,"avg_latency_ms":17.29237505396963,"throughput_eps":0,"last_update":"2026-03-20T17:43:24.719191973Z"} +2026/03/20 17:43:29 [transform_engine] {"stage_name":"transform_engine","events_processed":110,"events_dropped":0,"avg_latency_ms":82.72056856291806,"throughput_eps":0,"last_update":"2026-03-20T17:43:24.782571446Z"} +2026/03/20 17:43:29 ───────────────────────────────────────────────── +2026/03/20 17:43:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3303,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":660.6,"last_update":"2026-03-20T17:43:29.575878664Z"} +2026/03/20 17:43:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:29.585613618Z"} +2026/03/20 17:43:34 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":16.313763243175703,"throughput_eps":0,"last_update":"2026-03-20T17:43:29.718822109Z"} +2026/03/20 17:43:34 [transform_engine] {"stage_name":"transform_engine","events_processed":110,"events_dropped":0,"avg_latency_ms":82.72056856291806,"throughput_eps":0,"last_update":"2026-03-20T17:43:29.718771321Z"} +2026/03/20 17:43:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:29.576060101Z"} +2026/03/20 17:43:34 ───────────────────────────────────────────────── +2026/03/20 17:43:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:39 [transform_engine] {"stage_name":"transform_engine","events_processed":110,"events_dropped":0,"avg_latency_ms":82.72056856291806,"throughput_eps":0,"last_update":"2026-03-20T17:43:34.71934049Z"} +2026/03/20 17:43:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:34.575517969Z"} +2026/03/20 17:43:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":661.8,"last_update":"2026-03-20T17:43:34.57554432Z"} +2026/03/20 17:43:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:34.586066803Z"} +2026/03/20 17:43:39 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":16.313763243175703,"throughput_eps":0,"last_update":"2026-03-20T17:43:34.71931455Z"} +2026/03/20 17:43:39 ───────────────────────────────────────────────── +2026/03/20 17:43:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:39.575891089Z"} +2026/03/20 17:43:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":662.8,"last_update":"2026-03-20T17:43:39.576076624Z"} +2026/03/20 17:43:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:39.58827155Z"} +2026/03/20 17:43:44 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":16.313763243175703,"throughput_eps":0,"last_update":"2026-03-20T17:43:39.719554987Z"} +2026/03/20 17:43:44 [transform_engine] {"stage_name":"transform_engine","events_processed":110,"events_dropped":0,"avg_latency_ms":82.72056856291806,"throughput_eps":0,"last_update":"2026-03-20T17:43:39.719599302Z"} +2026/03/20 17:43:44 ───────────────────────────────────────────────── +2026/03/20 17:43:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:49 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":16.313763243175703,"throughput_eps":0,"last_update":"2026-03-20T17:43:44.718896826Z"} +2026/03/20 17:43:49 [transform_engine] {"stage_name":"transform_engine","events_processed":110,"events_dropped":0,"avg_latency_ms":82.72056856291806,"throughput_eps":0,"last_update":"2026-03-20T17:43:44.718917004Z"} +2026/03/20 17:43:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:44.575753412Z"} +2026/03/20 17:43:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":663.8,"last_update":"2026-03-20T17:43:44.576001497Z"} +2026/03/20 17:43:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1330,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:44.585645488Z"} +2026/03/20 17:43:49 ───────────────────────────────────────────────── +2026/03/20 17:43:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:54 [transform_engine] {"stage_name":"transform_engine","events_processed":110,"events_dropped":0,"avg_latency_ms":82.72056856291806,"throughput_eps":0,"last_update":"2026-03-20T17:43:49.719389532Z"} +2026/03/20 17:43:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:49.575531247Z"} +2026/03/20 17:43:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":664.8,"last_update":"2026-03-20T17:43:49.575516639Z"} +2026/03/20 17:43:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:49.585149278Z"} +2026/03/20 17:43:54 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":16.313763243175703,"throughput_eps":0,"last_update":"2026-03-20T17:43:49.719417326Z"} +2026/03/20 17:43:54 ───────────────────────────────────────────────── +2026/03/20 17:43:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:54.575871462Z"} +2026/03/20 17:43:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":665.8,"last_update":"2026-03-20T17:43:54.576204369Z"} +2026/03/20 17:43:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:54.58555029Z"} +2026/03/20 17:43:59 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":16.313763243175703,"throughput_eps":0,"last_update":"2026-03-20T17:43:54.718880122Z"} +2026/03/20 17:43:59 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":78.82423065033446,"throughput_eps":0,"last_update":"2026-03-20T17:43:54.781957652Z"} +2026/03/20 17:43:59 ───────────────────────────────────────────────── +2026/03/20 17:44:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:59.576062072Z"} +2026/03/20 17:44:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":666.8,"last_update":"2026-03-20T17:43:59.576511323Z"} +2026/03/20 17:44:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:59.5866285Z"} +2026/03/20 17:44:04 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":16.815925394540564,"throughput_eps":0,"last_update":"2026-03-20T17:43:59.718972035Z"} +2026/03/20 17:44:04 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":78.82423065033446,"throughput_eps":0,"last_update":"2026-03-20T17:43:59.718927339Z"} +2026/03/20 17:44:04 ───────────────────────────────────────────────── +2026/03/20 17:44:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:04.586383076Z"} +2026/03/20 17:44:09 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":16.815925394540564,"throughput_eps":0,"last_update":"2026-03-20T17:44:04.719728732Z"} +2026/03/20 17:44:09 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":78.82423065033446,"throughput_eps":0,"last_update":"2026-03-20T17:44:04.719698675Z"} +2026/03/20 17:44:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:04.575765861Z"} +2026/03/20 17:44:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":667.8,"last_update":"2026-03-20T17:44:04.576076104Z"} +2026/03/20 17:44:09 ───────────────────────────────────────────────── +2026/03/20 17:44:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:09.575609198Z"} +2026/03/20 17:44:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":668.8,"last_update":"2026-03-20T17:44:09.575487394Z"} +2026/03/20 17:44:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:09.58510208Z"} +2026/03/20 17:44:14 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":16.815925394540564,"throughput_eps":0,"last_update":"2026-03-20T17:44:09.719341099Z"} +2026/03/20 17:44:14 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":78.82423065033446,"throughput_eps":0,"last_update":"2026-03-20T17:44:09.719448715Z"} +2026/03/20 17:44:14 ───────────────────────────────────────────────── +2026/03/20 17:44:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:19 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":78.82423065033446,"throughput_eps":0,"last_update":"2026-03-20T17:44:14.719710695Z"} +2026/03/20 17:44:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:14.575728121Z"} +2026/03/20 17:44:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":669.8,"last_update":"2026-03-20T17:44:14.576238248Z"} +2026/03/20 17:44:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1342,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:14.585368696Z"} +2026/03/20 17:44:19 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":16.815925394540564,"throughput_eps":0,"last_update":"2026-03-20T17:44:14.719758195Z"} +2026/03/20 17:44:19 ───────────────────────────────────────────────── +2026/03/20 17:44:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:19.575746531Z"} +2026/03/20 17:44:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":670.8,"last_update":"2026-03-20T17:44:19.576120938Z"} +2026/03/20 17:44:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:19.585526153Z"} +2026/03/20 17:44:24 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":16.815925394540564,"throughput_eps":0,"last_update":"2026-03-20T17:44:19.71882812Z"} +2026/03/20 17:44:24 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":78.82423065033446,"throughput_eps":0,"last_update":"2026-03-20T17:44:19.718780639Z"} +2026/03/20 17:44:24 ───────────────────────────────────────────────── +2026/03/20 17:44:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:24.575557342Z"} +2026/03/20 17:44:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":671.8,"last_update":"2026-03-20T17:44:24.575967989Z"} +2026/03/20 17:44:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:24.586031634Z"} +2026/03/20 17:44:29 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":16.815925394540564,"throughput_eps":0,"last_update":"2026-03-20T17:44:24.719447752Z"} +2026/03/20 17:44:29 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":75.80829352026757,"throughput_eps":0,"last_update":"2026-03-20T17:44:24.783234757Z"} +2026/03/20 17:44:29 ───────────────────────────────────────────────── +2026/03/20 17:44:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:29.575509552Z"} +2026/03/20 17:44:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":672.8,"last_update":"2026-03-20T17:44:29.575928986Z"} +2026/03/20 17:44:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:29.585097437Z"} +2026/03/20 17:44:34 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":16.823191915632453,"throughput_eps":0,"last_update":"2026-03-20T17:44:29.719508213Z"} +2026/03/20 17:44:34 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":75.80829352026757,"throughput_eps":0,"last_update":"2026-03-20T17:44:29.719466453Z"} +2026/03/20 17:44:34 ───────────────────────────────────────────────── +2026/03/20 17:44:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:34.575876516Z"} +2026/03/20 17:44:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":673.8,"last_update":"2026-03-20T17:44:34.576153396Z"} +2026/03/20 17:44:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1350,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:34.585400958Z"} +2026/03/20 17:44:39 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":16.823191915632453,"throughput_eps":0,"last_update":"2026-03-20T17:44:34.720006609Z"} +2026/03/20 17:44:39 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":75.80829352026757,"throughput_eps":0,"last_update":"2026-03-20T17:44:34.719886198Z"} +2026/03/20 17:44:39 ───────────────────────────────────────────────── +2026/03/20 17:44:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:44 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":75.80829352026757,"throughput_eps":0,"last_update":"2026-03-20T17:44:39.719579448Z"} +2026/03/20 17:44:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:39.575926406Z"} +2026/03/20 17:44:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":674.8,"last_update":"2026-03-20T17:44:39.576425402Z"} +2026/03/20 17:44:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:39.585299008Z"} +2026/03/20 17:44:44 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":16.823191915632453,"throughput_eps":0,"last_update":"2026-03-20T17:44:39.719681894Z"} +2026/03/20 17:44:44 ───────────────────────────────────────────────── +2026/03/20 17:44:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:49 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":75.80829352026757,"throughput_eps":0,"last_update":"2026-03-20T17:44:44.718928013Z"} +2026/03/20 17:44:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:44.575907841Z"} +2026/03/20 17:44:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":675.8,"last_update":"2026-03-20T17:44:44.576213316Z"} +2026/03/20 17:44:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:44.586689843Z"} +2026/03/20 17:44:49 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":16.823191915632453,"throughput_eps":0,"last_update":"2026-03-20T17:44:44.7190255Z"} +2026/03/20 17:44:49 ───────────────────────────────────────────────── +2026/03/20 17:44:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:49.586159174Z"} +2026/03/20 17:44:54 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":16.823191915632453,"throughput_eps":0,"last_update":"2026-03-20T17:44:49.719424041Z"} +2026/03/20 17:44:54 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":75.80829352026757,"throughput_eps":0,"last_update":"2026-03-20T17:44:49.71946514Z"} +2026/03/20 17:44:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:49.575659322Z"} +2026/03/20 17:44:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":676.8,"last_update":"2026-03-20T17:44:49.576014953Z"} +2026/03/20 17:44:54 ───────────────────────────────────────────────── +2026/03/20 17:44:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:54.575941523Z"} +2026/03/20 17:44:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":677.8,"last_update":"2026-03-20T17:44:54.576314197Z"} +2026/03/20 17:44:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:54.586648121Z"} +2026/03/20 17:44:59 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":16.823191915632453,"throughput_eps":0,"last_update":"2026-03-20T17:44:54.719005873Z"} +2026/03/20 17:44:59 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":73.67076361621406,"throughput_eps":0,"last_update":"2026-03-20T17:44:54.784144862Z"} +2026/03/20 17:44:59 ───────────────────────────────────────────────── +2026/03/20 17:45:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:59.576521701Z"} +2026/03/20 17:45:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":678.8,"last_update":"2026-03-20T17:44:59.575428506Z"} +2026/03/20 17:45:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1360,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:59.585734887Z"} +2026/03/20 17:45:04 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.941326732505964,"throughput_eps":0,"last_update":"2026-03-20T17:44:59.718978499Z"} +2026/03/20 17:45:04 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":73.67076361621406,"throughput_eps":0,"last_update":"2026-03-20T17:44:59.719002545Z"} +2026/03/20 17:45:04 ───────────────────────────────────────────────── +2026/03/20 17:45:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:04.575721004Z"} +2026/03/20 17:45:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":679.8,"last_update":"2026-03-20T17:45:04.576087095Z"} +2026/03/20 17:45:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:04.587592764Z"} +2026/03/20 17:45:09 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.941326732505964,"throughput_eps":0,"last_update":"2026-03-20T17:45:04.718860762Z"} +2026/03/20 17:45:09 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":73.67076361621406,"throughput_eps":0,"last_update":"2026-03-20T17:45:04.718832487Z"} +2026/03/20 17:45:09 ───────────────────────────────────────────────── +2026/03/20 17:45:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:09.58553855Z"} +2026/03/20 17:45:14 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.941326732505964,"throughput_eps":0,"last_update":"2026-03-20T17:45:09.719843386Z"} +2026/03/20 17:45:14 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":73.67076361621406,"throughput_eps":0,"last_update":"2026-03-20T17:45:09.718720085Z"} +2026/03/20 17:45:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:09.57577637Z"} +2026/03/20 17:45:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":680.8,"last_update":"2026-03-20T17:45:09.576168741Z"} +2026/03/20 17:45:14 ───────────────────────────────────────────────── +2026/03/20 17:45:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":681.8,"last_update":"2026-03-20T17:45:14.576158977Z"} +2026/03/20 17:45:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:14.585871441Z"} +2026/03/20 17:45:19 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.941326732505964,"throughput_eps":0,"last_update":"2026-03-20T17:45:14.719108454Z"} +2026/03/20 17:45:19 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":73.67076361621406,"throughput_eps":0,"last_update":"2026-03-20T17:45:14.719118724Z"} +2026/03/20 17:45:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:14.575713534Z"} +2026/03/20 17:45:19 ───────────────────────────────────────────────── +2026/03/20 17:45:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:19.586512113Z"} +2026/03/20 17:45:24 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.941326732505964,"throughput_eps":0,"last_update":"2026-03-20T17:45:19.719859388Z"} +2026/03/20 17:45:24 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":73.67076361621406,"throughput_eps":0,"last_update":"2026-03-20T17:45:19.71872196Z"} +2026/03/20 17:45:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:19.575770898Z"} +2026/03/20 17:45:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3413,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":682.6,"last_update":"2026-03-20T17:45:19.575776389Z"} +2026/03/20 17:45:24 ───────────────────────────────────────────────── +2026/03/20 17:45:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:24.575712862Z"} +2026/03/20 17:45:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":683.8,"last_update":"2026-03-20T17:45:24.576086047Z"} +2026/03/20 17:45:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:24.586540073Z"} +2026/03/20 17:45:29 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.941326732505964,"throughput_eps":0,"last_update":"2026-03-20T17:45:24.718836828Z"} +2026/03/20 17:45:29 [transform_engine] {"stage_name":"transform_engine","events_processed":114,"events_dropped":0,"avg_latency_ms":71.62386329297125,"throughput_eps":0,"last_update":"2026-03-20T17:45:24.782218225Z"} +2026/03/20 17:45:29 ───────────────────────────────────────────────── +2026/03/20 17:45:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:34 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":16.96436758600477,"throughput_eps":0,"last_update":"2026-03-20T17:45:29.719684377Z"} +2026/03/20 17:45:34 [transform_engine] {"stage_name":"transform_engine","events_processed":114,"events_dropped":0,"avg_latency_ms":71.62386329297125,"throughput_eps":0,"last_update":"2026-03-20T17:45:29.719693385Z"} +2026/03/20 17:45:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:29.57557304Z"} +2026/03/20 17:45:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":684.8,"last_update":"2026-03-20T17:45:29.575671008Z"} +2026/03/20 17:45:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:29.58732974Z"} +2026/03/20 17:45:34 ───────────────────────────────────────────────── +2026/03/20 17:45:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:39 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":16.96436758600477,"throughput_eps":0,"last_update":"2026-03-20T17:45:34.719240553Z"} +2026/03/20 17:45:39 [transform_engine] {"stage_name":"transform_engine","events_processed":114,"events_dropped":0,"avg_latency_ms":71.62386329297125,"throughput_eps":0,"last_update":"2026-03-20T17:45:34.719250663Z"} +2026/03/20 17:45:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:34.575759171Z"} +2026/03/20 17:45:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":685.8,"last_update":"2026-03-20T17:45:34.576091488Z"} +2026/03/20 17:45:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:34.585986321Z"} +2026/03/20 17:45:39 ───────────────────────────────────────────────── +2026/03/20 17:45:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":686.8,"last_update":"2026-03-20T17:45:39.576149392Z"} +2026/03/20 17:45:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:39.586642723Z"} +2026/03/20 17:45:44 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":16.96436758600477,"throughput_eps":0,"last_update":"2026-03-20T17:45:39.719826742Z"} +2026/03/20 17:45:44 [transform_engine] {"stage_name":"transform_engine","events_processed":114,"events_dropped":0,"avg_latency_ms":71.62386329297125,"throughput_eps":0,"last_update":"2026-03-20T17:45:39.718715845Z"} +2026/03/20 17:45:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:39.575778272Z"} +2026/03/20 17:45:44 ───────────────────────────────────────────────── +2026/03/20 17:45:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:44.575793495Z"} +2026/03/20 17:45:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":687.8,"last_update":"2026-03-20T17:45:44.576190806Z"} +2026/03/20 17:45:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:44.584061572Z"} +2026/03/20 17:45:49 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":16.96436758600477,"throughput_eps":0,"last_update":"2026-03-20T17:45:44.719397536Z"} +2026/03/20 17:45:49 [transform_engine] {"stage_name":"transform_engine","events_processed":114,"events_dropped":0,"avg_latency_ms":71.62386329297125,"throughput_eps":0,"last_update":"2026-03-20T17:45:44.719412465Z"} +2026/03/20 17:45:49 ───────────────────────────────────────────────── +2026/03/20 17:45:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:49.575555011Z"} +2026/03/20 17:45:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":688.8,"last_update":"2026-03-20T17:45:49.575787877Z"} +2026/03/20 17:45:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1380,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:49.585207461Z"} +2026/03/20 17:45:54 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":16.96436758600477,"throughput_eps":0,"last_update":"2026-03-20T17:45:49.719521408Z"} +2026/03/20 17:45:54 [transform_engine] {"stage_name":"transform_engine","events_processed":114,"events_dropped":0,"avg_latency_ms":71.62386329297125,"throughput_eps":0,"last_update":"2026-03-20T17:45:49.719497993Z"} +2026/03/20 17:45:54 ───────────────────────────────────────────────── +2026/03/20 17:45:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:54.575747208Z"} +2026/03/20 17:45:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":689.8,"last_update":"2026-03-20T17:45:54.576287974Z"} +2026/03/20 17:45:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:54.585566888Z"} +2026/03/20 17:45:59 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":16.96436758600477,"throughput_eps":0,"last_update":"2026-03-20T17:45:54.718954573Z"} +2026/03/20 17:45:59 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":79.56060403437701,"throughput_eps":0,"last_update":"2026-03-20T17:45:54.83015192Z"} +2026/03/20 17:45:59 ───────────────────────────────────────────────── +2026/03/20 17:46:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:04 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":17.230102468803814,"throughput_eps":0,"last_update":"2026-03-20T17:45:59.7195183Z"} +2026/03/20 17:46:04 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":79.56060403437701,"throughput_eps":0,"last_update":"2026-03-20T17:45:59.719545662Z"} +2026/03/20 17:46:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:59.575507374Z"} +2026/03/20 17:46:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":690.8,"last_update":"2026-03-20T17:45:59.576008885Z"} +2026/03/20 17:46:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:59.587301718Z"} +2026/03/20 17:46:04 ───────────────────────────────────────────────── +2026/03/20 17:46:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:09 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":17.230102468803814,"throughput_eps":0,"last_update":"2026-03-20T17:46:04.719326117Z"} +2026/03/20 17:46:09 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":79.56060403437701,"throughput_eps":0,"last_update":"2026-03-20T17:46:04.719267154Z"} +2026/03/20 17:46:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:04.575709495Z"} +2026/03/20 17:46:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":691.8,"last_update":"2026-03-20T17:46:04.575591449Z"} +2026/03/20 17:46:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:04.586860687Z"} +2026/03/20 17:46:09 ───────────────────────────────────────────────── +2026/03/20 17:46:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:09.575574265Z"} +2026/03/20 17:46:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":692.8,"last_update":"2026-03-20T17:46:09.576051799Z"} +2026/03/20 17:46:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1388,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:09.58581888Z"} +2026/03/20 17:46:14 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":17.230102468803814,"throughput_eps":0,"last_update":"2026-03-20T17:46:09.719179936Z"} +2026/03/20 17:46:14 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":79.56060403437701,"throughput_eps":0,"last_update":"2026-03-20T17:46:09.719208321Z"} +2026/03/20 17:46:14 ───────────────────────────────────────────────── +2026/03/20 17:46:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:19 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":17.230102468803814,"throughput_eps":0,"last_update":"2026-03-20T17:46:14.719533349Z"} +2026/03/20 17:46:19 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":79.56060403437701,"throughput_eps":0,"last_update":"2026-03-20T17:46:14.719587202Z"} +2026/03/20 17:46:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:14.575530725Z"} +2026/03/20 17:46:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":693.8,"last_update":"2026-03-20T17:46:14.575506338Z"} +2026/03/20 17:46:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1390,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:14.586153805Z"} +2026/03/20 17:46:19 ───────────────────────────────────────────────── +2026/03/20 17:46:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:24 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":79.56060403437701,"throughput_eps":0,"last_update":"2026-03-20T17:46:19.719173119Z"} +2026/03/20 17:46:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:19.576052563Z"} +2026/03/20 17:46:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":694.8,"last_update":"2026-03-20T17:46:19.576224553Z"} +2026/03/20 17:46:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:19.58690846Z"} +2026/03/20 17:46:24 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":17.230102468803814,"throughput_eps":0,"last_update":"2026-03-20T17:46:19.719130057Z"} +2026/03/20 17:46:24 ───────────────────────────────────────────────── +2026/03/20 17:46:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:24.575513533Z"} +2026/03/20 17:46:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":695.8,"last_update":"2026-03-20T17:46:24.575941172Z"} +2026/03/20 17:46:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:24.586164085Z"} +2026/03/20 17:46:29 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":17.230102468803814,"throughput_eps":0,"last_update":"2026-03-20T17:46:24.719362125Z"} +2026/03/20 17:46:29 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":86.8603606275016,"throughput_eps":0,"last_update":"2026-03-20T17:46:24.835437875Z"} +2026/03/20 17:46:29 ───────────────────────────────────────────────── +2026/03/20 17:46:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:29.586694327Z"} +2026/03/20 17:46:34 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":17.53027637504305,"throughput_eps":0,"last_update":"2026-03-20T17:46:29.719218748Z"} +2026/03/20 17:46:34 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":86.8603606275016,"throughput_eps":0,"last_update":"2026-03-20T17:46:29.7191885Z"} +2026/03/20 17:46:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:29.575669178Z"} +2026/03/20 17:46:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":696.8,"last_update":"2026-03-20T17:46:29.575981846Z"} +2026/03/20 17:46:34 ───────────────────────────────────────────────── +2026/03/20 17:46:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:34.575817732Z"} +2026/03/20 17:46:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":697.8,"last_update":"2026-03-20T17:46:34.576140229Z"} +2026/03/20 17:46:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:34.585694872Z"} +2026/03/20 17:46:39 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":17.53027637504305,"throughput_eps":0,"last_update":"2026-03-20T17:46:34.718829513Z"} +2026/03/20 17:46:39 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":86.8603606275016,"throughput_eps":0,"last_update":"2026-03-20T17:46:34.718739251Z"} +2026/03/20 17:46:39 ───────────────────────────────────────────────── +2026/03/20 17:46:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:39.575893066Z"} +2026/03/20 17:46:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3493,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":698.6,"last_update":"2026-03-20T17:46:39.575941598Z"} +2026/03/20 17:46:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1400,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:39.585291981Z"} +2026/03/20 17:46:44 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":17.53027637504305,"throughput_eps":0,"last_update":"2026-03-20T17:46:39.71959406Z"} +2026/03/20 17:46:44 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":86.8603606275016,"throughput_eps":0,"last_update":"2026-03-20T17:46:39.71969803Z"} +2026/03/20 17:46:44 ───────────────────────────────────────────────── +2026/03/20 17:46:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:49 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":17.53027637504305,"throughput_eps":0,"last_update":"2026-03-20T17:46:44.719331971Z"} +2026/03/20 17:46:49 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":86.8603606275016,"throughput_eps":0,"last_update":"2026-03-20T17:46:44.719312375Z"} +2026/03/20 17:46:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:44.575537067Z"} +2026/03/20 17:46:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3498,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":699.6,"last_update":"2026-03-20T17:46:44.575034353Z"} +2026/03/20 17:46:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1402,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:44.586054955Z"} +2026/03/20 17:46:49 ───────────────────────────────────────────────── +2026/03/20 17:46:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:54 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":17.53027637504305,"throughput_eps":0,"last_update":"2026-03-20T17:46:49.719375121Z"} +2026/03/20 17:46:54 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":86.8603606275016,"throughput_eps":0,"last_update":"2026-03-20T17:46:49.719329664Z"} +2026/03/20 17:46:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:49.57587587Z"} +2026/03/20 17:46:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":700.8,"last_update":"2026-03-20T17:46:49.576295533Z"} +2026/03/20 17:46:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:49.586068225Z"} +2026/03/20 17:46:54 ───────────────────────────────────────────────── +2026/03/20 17:46:54 [ANOMALY] time=2026-03-20T17:46:54Z score=0.8409 method=SEAD details=MAD!:w=0.34,s=1.00 RRCF-fast!:w=0.17,s=0.99 RRCF-mid!:w=0.15,s=0.90 RRCF-slow!:w=0.13,s=0.99 COPOD!:w=0.22,s=0.34 +2026/03/20 17:46:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:54.575794328Z"} +2026/03/20 17:46:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":701.6,"last_update":"2026-03-20T17:46:54.57576918Z"} +2026/03/20 17:46:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:54.585395592Z"} +2026/03/20 17:46:59 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":17.53027637504305,"throughput_eps":0,"last_update":"2026-03-20T17:46:54.719714788Z"} +2026/03/20 17:46:59 [transform_engine] {"stage_name":"transform_engine","events_processed":117,"events_dropped":0,"avg_latency_ms":91.57058970200129,"throughput_eps":0,"last_update":"2026-03-20T17:46:54.830152735Z"} +2026/03/20 17:46:59 ───────────────────────────────────────────────── +2026/03/20 17:47:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:04 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":16.37520470003444,"throughput_eps":0,"last_update":"2026-03-20T17:46:59.719595648Z"} +2026/03/20 17:47:04 [transform_engine] {"stage_name":"transform_engine","events_processed":117,"events_dropped":0,"avg_latency_ms":91.57058970200129,"throughput_eps":0,"last_update":"2026-03-20T17:46:59.719603052Z"} +2026/03/20 17:47:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:59.575567601Z"} +2026/03/20 17:47:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":702.8,"last_update":"2026-03-20T17:46:59.575656332Z"} +2026/03/20 17:47:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1408,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:59.586380155Z"} +2026/03/20 17:47:04 ───────────────────────────────────────────────── +2026/03/20 17:47:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:04.586007439Z"} +2026/03/20 17:47:09 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":16.37520470003444,"throughput_eps":0,"last_update":"2026-03-20T17:47:04.719248732Z"} +2026/03/20 17:47:09 [transform_engine] {"stage_name":"transform_engine","events_processed":117,"events_dropped":0,"avg_latency_ms":91.57058970200129,"throughput_eps":0,"last_update":"2026-03-20T17:47:04.719254593Z"} +2026/03/20 17:47:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:04.575669024Z"} +2026/03/20 17:47:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":703.8,"last_update":"2026-03-20T17:47:04.576038913Z"} +2026/03/20 17:47:09 ───────────────────────────────────────────────── +2026/03/20 17:47:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:09.575897748Z"} +2026/03/20 17:47:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":704.8,"last_update":"2026-03-20T17:47:09.576601617Z"} +2026/03/20 17:47:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:09.585684597Z"} +2026/03/20 17:47:14 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":16.37520470003444,"throughput_eps":0,"last_update":"2026-03-20T17:47:09.719075489Z"} +2026/03/20 17:47:14 [transform_engine] {"stage_name":"transform_engine","events_processed":117,"events_dropped":0,"avg_latency_ms":91.57058970200129,"throughput_eps":0,"last_update":"2026-03-20T17:47:09.719088304Z"} +2026/03/20 17:47:14 ───────────────────────────────────────────────── +2026/03/20 17:47:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:14.575723592Z"} +2026/03/20 17:47:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":705.8,"last_update":"2026-03-20T17:47:14.576105844Z"} +2026/03/20 17:47:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:14.585320386Z"} +2026/03/20 17:47:19 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":16.37520470003444,"throughput_eps":0,"last_update":"2026-03-20T17:47:14.71955729Z"} +2026/03/20 17:47:19 [transform_engine] {"stage_name":"transform_engine","events_processed":117,"events_dropped":0,"avg_latency_ms":91.57058970200129,"throughput_eps":0,"last_update":"2026-03-20T17:47:14.719564333Z"} +2026/03/20 17:47:19 ───────────────────────────────────────────────── +2026/03/20 17:47:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:19.576091983Z"} +2026/03/20 17:47:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":706.8,"last_update":"2026-03-20T17:47:19.576569657Z"} +2026/03/20 17:47:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:19.586441369Z"} +2026/03/20 17:47:24 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":16.37520470003444,"throughput_eps":0,"last_update":"2026-03-20T17:47:19.719826443Z"} +2026/03/20 17:47:24 [transform_engine] {"stage_name":"transform_engine","events_processed":117,"events_dropped":0,"avg_latency_ms":91.57058970200129,"throughput_eps":0,"last_update":"2026-03-20T17:47:19.718665188Z"} +2026/03/20 17:47:24 ───────────────────────────────────────────────── +2026/03/20 17:47:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:24.575737317Z"} +2026/03/20 17:47:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":707.8,"last_update":"2026-03-20T17:47:24.576265398Z"} +2026/03/20 17:47:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:24.58553131Z"} +2026/03/20 17:47:29 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":16.37520470003444,"throughput_eps":0,"last_update":"2026-03-20T17:47:24.719663095Z"} +2026/03/20 17:47:29 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":95.42858856160103,"throughput_eps":0,"last_update":"2026-03-20T17:47:24.830535591Z"} +2026/03/20 17:47:29 ───────────────────────────────────────────────── +2026/03/20 17:47:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:29.575729823Z"} +2026/03/20 17:47:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":708.8,"last_update":"2026-03-20T17:47:29.576014258Z"} +2026/03/20 17:47:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1420,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:29.586386098Z"} +2026/03/20 17:47:34 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":16.873350360027555,"throughput_eps":0,"last_update":"2026-03-20T17:47:29.719743311Z"} +2026/03/20 17:47:34 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":95.42858856160103,"throughput_eps":0,"last_update":"2026-03-20T17:47:29.719755844Z"} +2026/03/20 17:47:34 ───────────────────────────────────────────────── +2026/03/20 17:47:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":709.8,"last_update":"2026-03-20T17:47:34.576092035Z"} +2026/03/20 17:47:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:34.585813619Z"} +2026/03/20 17:47:39 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":16.873350360027555,"throughput_eps":0,"last_update":"2026-03-20T17:47:34.719236318Z"} +2026/03/20 17:47:39 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":95.42858856160103,"throughput_eps":0,"last_update":"2026-03-20T17:47:34.719248572Z"} +2026/03/20 17:47:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:34.575728668Z"} +2026/03/20 17:47:39 ───────────────────────────────────────────────── +2026/03/20 17:47:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:39.586199021Z"} +2026/03/20 17:47:44 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":16.873350360027555,"throughput_eps":0,"last_update":"2026-03-20T17:47:39.719637431Z"} +2026/03/20 17:47:44 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":95.42858856160103,"throughput_eps":0,"last_update":"2026-03-20T17:47:39.719650947Z"} +2026/03/20 17:47:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:39.575763409Z"} +2026/03/20 17:47:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":710.8,"last_update":"2026-03-20T17:47:39.576066579Z"} +2026/03/20 17:47:44 ───────────────────────────────────────────────── +2026/03/20 17:47:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:44.575802523Z"} +2026/03/20 17:47:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":711.8,"last_update":"2026-03-20T17:47:44.576329252Z"} +2026/03/20 17:47:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:44.584763611Z"} +2026/03/20 17:47:49 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":16.873350360027555,"throughput_eps":0,"last_update":"2026-03-20T17:47:44.719031862Z"} +2026/03/20 17:47:49 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":95.42858856160103,"throughput_eps":0,"last_update":"2026-03-20T17:47:44.719040899Z"} +2026/03/20 17:47:49 ───────────────────────────────────────────────── +2026/03/20 17:47:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:49.575814613Z"} +2026/03/20 17:47:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":712.8,"last_update":"2026-03-20T17:47:49.576128314Z"} +2026/03/20 17:47:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:49.585633635Z"} +2026/03/20 17:47:54 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":16.873350360027555,"throughput_eps":0,"last_update":"2026-03-20T17:47:49.718863809Z"} +2026/03/20 17:47:54 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":95.42858856160103,"throughput_eps":0,"last_update":"2026-03-20T17:47:49.718878286Z"} +2026/03/20 17:47:54 ───────────────────────────────────────────────── +2026/03/20 17:47:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:54.575905419Z"} +2026/03/20 17:47:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":713.8,"last_update":"2026-03-20T17:47:54.57633365Z"} +2026/03/20 17:47:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:54.586293772Z"} +2026/03/20 17:47:59 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":16.873350360027555,"throughput_eps":0,"last_update":"2026-03-20T17:47:54.719611654Z"} +2026/03/20 17:47:59 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":89.86432344928083,"throughput_eps":0,"last_update":"2026-03-20T17:47:54.78723056Z"} +2026/03/20 17:47:59 ───────────────────────────────────────────────── +2026/03/20 17:48:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:48:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:59.575612023Z"} +2026/03/20 17:48:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":714.8,"last_update":"2026-03-20T17:47:59.575645247Z"} +2026/03/20 17:48:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:59.58589325Z"} +2026/03/20 17:48:04 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":17.174544688022046,"throughput_eps":0,"last_update":"2026-03-20T17:47:59.719227816Z"} +2026/03/20 17:48:04 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":89.86432344928083,"throughput_eps":0,"last_update":"2026-03-20T17:47:59.719238628Z"} +2026/03/20 17:48:04 ───────────────────────────────────────────────── +2026/03/20 17:48:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:48:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:04.586108835Z"} +2026/03/20 17:48:09 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":17.174544688022046,"throughput_eps":0,"last_update":"2026-03-20T17:48:04.719369711Z"} +2026/03/20 17:48:09 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":89.86432344928083,"throughput_eps":0,"last_update":"2026-03-20T17:48:04.719378899Z"} +2026/03/20 17:48:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:04.575729139Z"} +2026/03/20 17:48:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":715.8,"last_update":"2026-03-20T17:48:04.576070253Z"} +2026/03/20 17:48:09 ───────────────────────────────────────────────── +2026/03/20 17:48:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:48:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:09.576275893Z"} +2026/03/20 17:48:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":716.8,"last_update":"2026-03-20T17:48:09.57616961Z"} +2026/03/20 17:48:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:09.584993895Z"} +2026/03/20 17:48:14 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":17.174544688022046,"throughput_eps":0,"last_update":"2026-03-20T17:48:09.719394486Z"} +2026/03/20 17:48:14 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":89.86432344928083,"throughput_eps":0,"last_update":"2026-03-20T17:48:09.71940722Z"} +2026/03/20 17:48:14 ───────────────────────────────────────────────── +2026/03/20 17:48:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:48:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:14.576066382Z"} +2026/03/20 17:48:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":717.8,"last_update":"2026-03-20T17:48:14.576501476Z"} +2026/03/20 17:48:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:14.585433929Z"} +2026/03/20 17:48:19 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":17.174544688022046,"throughput_eps":0,"last_update":"2026-03-20T17:48:14.719693851Z"} +2026/03/20 17:48:19 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":89.86432344928083,"throughput_eps":0,"last_update":"2026-03-20T17:48:14.719700855Z"} +2026/03/20 17:48:19 ───────────────────────────────────────────────── +2026/03/20 17:48:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:48:24 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":89.86432344928083,"throughput_eps":0,"last_update":"2026-03-20T17:48:19.7191799Z"} +2026/03/20 17:48:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:19.575908713Z"} +2026/03/20 17:48:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":718.8,"last_update":"2026-03-20T17:48:19.576400735Z"} +2026/03/20 17:48:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:19.584850944Z"} +2026/03/20 17:48:24 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":17.174544688022046,"throughput_eps":0,"last_update":"2026-03-20T17:48:19.719168389Z"} +2026/03/20 17:48:24 ───────────────────────────────────────────────── +2026/03/20 17:48:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:48:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:24.575898708Z"} +2026/03/20 17:48:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":719.8,"last_update":"2026-03-20T17:48:24.576213832Z"} +2026/03/20 17:48:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1442,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:24.586045408Z"} +2026/03/20 17:48:29 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":17.174544688022046,"throughput_eps":0,"last_update":"2026-03-20T17:48:24.719447799Z"} +2026/03/20 17:48:29 [transform_engine] {"stage_name":"transform_engine","events_processed":120,"events_dropped":0,"avg_latency_ms":94.59298595942467,"throughput_eps":0,"last_update":"2026-03-20T17:48:24.832971196Z"} +2026/03/20 17:48:29 ───────────────────────────────────────────────── +2026/03/20 17:48:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:48:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:29.58604135Z"} +2026/03/20 17:48:34 [detection_layer] {"stage_name":"detection_layer","events_processed":120,"events_dropped":0,"avg_latency_ms":17.454276750417637,"throughput_eps":0,"last_update":"2026-03-20T17:48:29.719548844Z"} +2026/03/20 17:48:34 [transform_engine] {"stage_name":"transform_engine","events_processed":120,"events_dropped":0,"avg_latency_ms":94.59298595942467,"throughput_eps":0,"last_update":"2026-03-20T17:48:29.719560767Z"} +2026/03/20 17:48:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:29.575496827Z"} +2026/03/20 17:48:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":720.8,"last_update":"2026-03-20T17:48:29.575562313Z"} +2026/03/20 17:48:34 ───────────────────────────────────────────────── +2026/03/20 17:48:35 shutting down… +2026/03/20 17:48:35 pipeline stopped diff --git a/evaluation/data/pipeline_validation_run2/baseline_metrics.csv b/evaluation/data/pipeline_validation_run2/baseline_metrics.csv new file mode 100644 index 0000000..2f02f53 --- /dev/null +++ b/evaluation/data/pipeline_validation_run2/baseline_metrics.csv @@ -0,0 +1,3248 @@ +timestamp,cpu_percent,cpu_count,cpu_freq_current,memory_percent,memory_available_mb,memory_used_mb,swap_percent,disk_io_read_mb_s,disk_io_write_mb_s,disk_io_read_count,disk_io_write_count,network_sent_mb_s,network_recv_mb_s,network_packets_sent,network_packets_recv,network_errin,network_errout,network_dropin,network_dropout,tixstream_active,transfer_job_manager_active +1774046184.624599,0.90,4,3992.50,47.89,1805.95,1875.07,0.00,4.082411,0.174363,1965699,452905,0.000016,0.000046,12808898,8281790,0,0,13550,0,1,1 +1774046189.628885,0.90,4,3992.50,47.91,1805.21,1875.81,0.00,3515423928884.913086,3515423924415.094238,199,0,0.000000,0.000663,12808898,8281796,0,0,13552,0,1,1 +1774046194.625401,0.80,4,3992.50,47.92,1804.96,1876.05,0.00,1.318204,0.022086,224,83,0.000031,0.000042,12808900,8281800,0,0,13555,0,1,1 +1774046199.628658,0.90,4,3992.50,47.92,1804.71,1876.30,0.00,0.000000,0.000000,224,83,0.000093,0.000108,12808906,8281809,0,0,13557,0,1,1 +1774046204.628738,2.15,4,3992.50,47.89,1805.92,1875.09,0.00,3518380404630.073242,3518380404631.545410,11,0,0.000000,0.000030,12808906,8281812,0,0,13560,0,1,1 +1774046209.628389,0.70,4,3992.50,47.87,1806.93,1874.09,0.00,0.000000,0.000000,11,0,0.000000,0.000020,12808906,8281814,0,0,13562,0,1,1 +1774046214.628246,39.16,4,3992.50,54.38,1551.70,2129.21,0.00,0.000000,0.000000,11,0,91.132334,0.039269,12818324,8284682,0,0,13565,0,1,1 +1774046219.628387,31.91,4,3992.50,54.26,1556.41,2124.42,0.00,0.176948,0.000000,199,0,121.964332,0.036415,12830643,8287432,0,0,13567,0,1,1 +1774046224.628518,30.49,4,3992.50,54.27,1556.13,2124.88,0.00,1.317251,0.022070,224,83,121.162578,0.041142,12842860,8290586,0,0,13570,0,1,1 +1774046229.628576,30.16,4,3992.50,54.24,1557.24,2123.70,0.00,0.514545,3518396663583.706543,238,2,120.163102,0.039166,12854928,8293554,0,0,13572,0,1,1 +1774046234.628594,30.41,4,3992.50,54.36,1552.56,2128.39,0.00,20314.044828,24789.726807,1965701,453102,119.963071,0.038701,12866974,8296514,0,0,13575,0,1,1 +1774046239.628280,29.99,4,3992.50,54.56,1544.79,2136.11,0.00,3518658453775.578125,3518658449300.134766,224,83,119.972355,0.037079,12879069,8299316,0,0,13577,0,1,1 +1774046244.626452,29.68,4,3992.50,54.29,1555.29,2125.63,0.00,0.000000,0.000000,224,83,119.206137,0.039701,12891098,8302383,0,0,13580,0,1,1 +1774046249.628665,29.98,4,3992.50,54.63,1541.89,2139.04,0.00,3516880598139.906250,3516880598141.377930,11,0,119.309694,0.045369,12903122,8305912,0,0,13582,0,1,1 +1774046254.624430,11.86,4,3992.50,49.82,1730.36,1950.67,0.00,0.177103,0.000000,199,0,92.604081,0.034129,12912434,8308555,0,0,13585,0,1,1 +1774046259.629229,1.20,4,3992.50,49.24,1753.30,1927.67,0.00,3515063708741.049805,0.000000,11,0,0.003114,0.002087,12912492,8308599,0,0,13587,0,1,1 +1774046264.625037,26.81,4,3992.50,49.33,1749.49,1931.52,0.00,20333.342576,24811.211990,1965725,453725,22.202397,0.104763,12919736,8314007,0,0,13590,0,1,1 +1774046269.624798,15.28,4,3992.50,48.95,1764.44,1916.56,0.00,0.004688,0.197666,1965731,454035,18.068962,0.075773,12925439,8318243,0,0,13592,0,1,1 +1774046274.624805,2.10,4,3992.50,48.97,1763.80,1917.14,0.00,3518431966512.183105,3518431962035.872559,238,2,0.007519,0.005119,12925580,8318358,0,0,13595,0,1,1 +1774046279.628626,1.95,4,3992.50,48.97,1763.85,1917.10,0.00,20298.788070,24772.476570,1965735,454587,0.001588,0.000786,12925610,8318378,0,0,13597,0,1,1 +1774046284.629264,0.60,4,3992.50,48.96,1763.86,1917.09,0.00,3517988128640.009766,3517988124165.306152,199,0,0.001597,0.000804,12925641,8318400,0,0,13600,0,1,1 +1774046289.624513,1.20,4,3992.50,48.78,1771.07,1909.91,0.00,3521783908713.428711,0.000000,11,0,0.003766,0.001780,12925715,8318444,0,0,13602,0,1,1 +1774046294.624729,0.80,4,3992.50,48.78,1771.09,1909.89,0.00,20315.430503,24790.420706,1965735,454669,0.002259,0.001718,12925748,8318467,0,0,13605,0,1,1 +1774046299.628896,0.70,4,3992.50,48.78,1771.09,1909.89,0.00,3515507532630.458496,3515507528159.000977,11,0,0.001588,0.000786,12925778,8318487,0,0,13607,0,1,1 +1774046304.628772,1.85,4,3992.50,48.78,1771.10,1909.86,0.00,0.000000,0.000000,11,0,0.001665,0.000889,12925814,8318514,0,0,13610,0,1,1 +1774046309.624682,0.95,4,3992.50,48.67,1775.37,1905.61,0.00,20332.941045,24811.942618,1965735,454795,0.001591,0.000787,12925844,8318534,0,0,13612,0,1,1 +1774046314.624537,0.70,4,3992.50,48.56,1779.71,1901.28,0.00,3518539290148.437988,0.014063,1964974,454747,0.001714,0.000897,12925882,8318563,0,0,13615,0,1,1 +1774046319.628500,0.95,4,3992.50,48.62,1777.50,1903.48,0.00,3515651005617.584473,3515651001141.666992,70,0,0.001702,0.000859,12925920,8318589,0,0,13617,0,1,1 +1774046324.629042,2.05,4,3992.50,48.43,1784.90,1896.07,0.00,0.126939,0.000000,199,0,0.001589,0.001440,12925950,8318614,0,0,13620,0,1,1 +1774046329.629560,1.40,4,3992.50,48.41,1785.80,1895.19,0.00,1.317149,0.022068,224,83,0.001589,0.000786,12925980,8318634,0,0,13622,0,1,1 +1774046334.628942,0.95,4,3992.50,48.41,1785.80,1895.18,0.00,0.514614,3518871841634.922852,238,2,0.001640,0.000858,12926014,8318659,0,0,13625,0,1,1 +1774046339.624604,0.85,4,3992.50,48.43,1784.84,1896.15,0.00,20331.939974,24813.384494,1965735,455013,0.001591,0.000787,12926044,8318679,0,0,13627,0,1,1 +1774046344.624550,0.70,4,3992.50,48.43,1784.86,1896.14,0.00,3518475602579.826172,3518475598104.229980,11,0,0.000795,0.000413,12926059,8318691,0,0,13630,0,1,1 +1774046349.624418,13.52,4,3992.50,49.10,1750.98,1922.55,0.00,0.000000,0.000000,11,0,0.028168,53.079956,12928015,8324327,0,0,13632,0,1,1 +1774046354.628458,29.77,4,3992.50,49.30,1738.85,1930.29,0.00,0.049960,0.000000,70,0,0.033517,119.879212,12930463,8336968,0,0,13635,0,1,1 +1774046359.628731,10.60,4,3992.50,48.67,1763.61,1905.68,0.00,0.000000,0.000000,70,0,0.017439,32.050503,12931478,8340413,0,0,13637,0,1,1 +1774046364.628627,14.40,4,3992.50,49.69,1723.74,1945.61,0.00,3518510288341.838867,0.000000,11,0,40.062623,0.020193,12935895,8341789,0,0,13640,0,1,1 +1774046369.628737,1.50,4,3992.50,49.13,1745.86,1923.50,0.00,1.494205,0.022070,224,83,0.005442,0.005447,12935992,8341875,0,0,13642,0,1,1 +1774046374.629277,11.33,4,3992.50,48.61,1763.77,1903.02,0.00,20332.341053,25024.637515,1966268,456714,0.021267,40.058357,12937450,8346328,0,0,13645,0,1,1 +1774046379.625806,0.90,4,3992.50,48.65,1762.08,1904.70,0.00,3520881624696.655762,3520881620000.592285,224,83,0.001024,0.002247,12937477,8346372,0,0,13647,0,1,1 +1774046384.629534,0.70,4,3992.50,48.27,1776.73,1890.05,0.00,3515816143336.135742,3515816143337.606934,11,0,0.000000,0.000030,12937477,8346375,0,0,13650,0,1,1 +1774046389.629435,0.65,4,3992.50,48.27,1776.73,1890.05,0.00,0.000000,0.000000,11,0,0.000000,0.000664,12937477,8346381,0,0,13652,0,1,1 +1774046394.628898,0.60,4,3992.50,48.28,1776.62,1890.17,0.00,20334.150962,25036.158433,1965510,456756,0.000025,0.000061,12937479,8346386,0,0,13655,0,1,1 +1774046399.624537,0.55,4,3992.50,48.28,1776.62,1890.17,0.00,0.000000,0.001564,1965510,456758,0.000000,0.000020,12937479,8346388,0,0,13657,0,1,1 +1774046404.628153,0.60,4,3992.50,48.33,1774.65,1892.13,0.00,0.000000,4.011162,1965510,456782,0.000000,0.000030,12937479,8346391,0,0,13660,0,1,1 +1774046409.624621,0.65,4,3992.50,48.36,1773.25,1893.54,0.00,3520924003797.610352,3520923999086.755859,238,2,0.000062,0.000070,12937483,8346397,0,0,13662,0,1,1 +1774046414.629283,0.65,4,3992.50,48.36,1773.25,1893.54,0.00,20311.039282,25014.212170,1965521,456821,0.000157,0.000210,12937495,8346412,0,0,13665,0,1,1 +1774046419.625049,0.85,4,3992.50,48.31,1775.17,1891.62,0.00,3521418857709.816406,3521418852998.269531,238,2,0.000064,0.000084,12937500,8346419,0,0,13667,0,1,1 +1774046424.629198,0.65,4,3992.50,48.31,1775.17,1891.62,0.00,20317.178903,25016.860608,1966282,456963,0.000124,0.000130,12937508,8346430,0,0,13670,0,1,1 +1774046429.628753,0.55,4,3992.50,48.35,1773.94,1892.84,0.00,3518750372032.247070,3518750372036.301758,1965521,456894,0.000000,0.000020,12937508,8346432,0,0,13672,0,1,1 +1774046434.625883,0.65,4,3992.50,48.35,1773.95,1892.84,0.00,4.065517,0.025405,1966282,456982,0.000000,0.000030,12937508,8346435,0,0,13675,0,1,1 +1774046439.624648,0.90,4,3992.50,48.35,1773.95,1892.84,0.00,3519306610019.228516,3519306605315.004883,224,83,0.000000,0.000020,12937508,8346437,0,0,13677,0,1,1 +1774046444.624889,40.11,4,3992.50,54.53,1541.46,2135.02,0.00,3518267208321.160156,3518267208322.632812,11,0,90.926371,0.033482,12946956,8348817,0,0,13680,0,1,1 +1774046449.625427,30.02,4,3992.50,54.52,1547.32,2134.72,0.00,2.008573,0.000195,238,2,119.551706,0.028369,12959124,8350952,0,0,13682,0,1,1 +1774046454.624558,29.68,4,3992.50,54.52,1547.44,2134.56,0.00,3519048460560.870605,3519048460562.703125,199,0,118.785494,0.027140,12971357,8352908,0,0,13685,0,1,1 +1774046459.629208,30.39,4,3992.50,54.66,1542.27,2139.89,0.00,3515168646892.553711,0.000000,11,0,119.454494,0.036654,12983595,8355735,0,0,13687,0,1,1 +1774046464.624557,30.02,4,3992.50,54.76,1538.11,2144.11,0.00,0.050047,0.000000,70,0,118.875550,0.025157,12995819,8357646,0,0,13690,0,1,1 +1774046469.624493,29.75,4,3992.50,54.45,1550.23,2132.03,0.00,1.958814,0.000195,238,2,119.565502,0.023265,13008070,8359475,0,0,13692,0,1,1 +1774046474.628382,29.85,4,3992.50,54.66,1542.01,2140.24,0.00,20318.231701,25018.365854,1966282,457170,119.273352,0.019515,13020392,8360942,0,0,13695,0,1,1 +1774046479.628422,29.75,4,3992.50,54.68,1541.59,2140.66,0.00,3518409412114.216797,3518409407410.463379,238,2,119.367279,0.026429,13032716,8362948,0,0,13697,0,1,1 +1774046484.624565,13.77,4,3992.50,50.03,1723.41,1958.85,0.00,3521153050285.035645,3521153050287.045898,11,0,99.614019,0.017177,13042886,8364227,0,0,13700,0,1,1 +1774046489.629359,2.10,4,3992.50,49.23,1755.02,1927.28,0.00,2.006865,0.000195,238,2,0.003792,0.001671,13042956,8364274,0,0,13702,0,1,1 +1774046494.628488,24.23,4,3992.50,49.09,1760.40,1921.89,0.00,0.000000,0.000000,238,2,26.171171,0.119375,13051609,8370642,0,0,13705,0,1,1 +1774046499.624526,12.22,4,3992.50,49.12,1758.89,1923.25,0.00,20353.421566,25058.828442,1966091,458271,14.100528,0.061325,13056311,8374018,0,0,13707,0,1,1 +1774046504.625027,1.66,4,3992.50,49.16,1757.44,1924.66,0.00,0.000000,0.025290,1966091,458341,0.008498,0.005954,13056457,8374139,0,0,13710,0,1,1 +1774046509.624727,0.90,4,3992.50,49.09,1760.22,1921.92,0.00,3518648454532.685059,3518648449830.699219,238,2,0.001589,0.000786,13056487,8374159,0,0,13712,0,1,1 +1774046514.628812,0.75,4,3992.50,49.02,1762.79,1919.35,0.00,3515564860205.341309,3515564860207.171875,199,0,0.001596,0.000803,13056518,8374181,0,0,13715,0,1,1 +1774046519.626424,0.85,4,3992.50,48.95,1765.63,1916.50,0.00,3520117999753.710449,0.000000,11,0,0.003818,0.203613,13056609,8374293,0,0,13717,0,1,1 +1774046524.629519,27.54,4,3992.50,49.40,1740.77,1934.01,0.00,20330.782376,25095.752723,1966856,459242,0.053464,110.088961,13060695,8385871,0,0,13720,0,1,1 +1774046529.629114,25.25,4,3992.50,49.54,1728.45,1939.58,0.00,3518722647729.608398,3518722642961.301270,11,0,0.035873,94.741067,13063364,8395685,0,0,13722,0,1,1 +1774046534.624529,1.26,4,3992.50,49.21,1741.37,1926.66,0.00,2.010633,0.000195,238,2,0.005316,0.004396,13063461,8395784,0,0,13725,0,1,1 +1774046539.629028,14.38,4,3992.50,51.11,1666.85,2001.19,0.00,3515274159569.467773,0.021855,226,83,40.028503,0.022814,13067978,8397342,0,0,13727,0,1,1 +1774046544.626732,2.06,4,3992.50,50.51,1690.29,1977.73,0.00,3520053811194.814453,3520053811196.239258,70,0,0.004839,0.004255,13068072,8397422,0,0,13730,0,1,1 +1774046549.628504,0.75,4,3992.50,49.63,1725.05,1942.99,0.00,1.445288,0.022062,226,83,0.001620,0.000811,13068104,8397444,0,0,13732,0,1,1 +1774046554.629209,0.60,4,3992.50,49.44,1732.42,1935.62,0.00,0.000000,0.000000,226,83,0.001589,0.000796,13068134,8397465,0,0,13735,0,1,1 +1774046559.624529,0.95,4,3992.50,49.43,1732.86,1935.19,0.00,3521733341393.991699,3521733341395.416992,70,0,0.001591,0.000787,13068164,8397485,0,0,13737,0,1,1 +1774046564.624802,0.80,4,3992.50,49.43,1732.86,1935.19,0.00,20357.526175,25243.629277,1966236,460234,0.001004,0.000598,13068185,8397502,0,0,13740,0,1,1 +1774046569.629198,0.95,4,3992.50,49.41,1733.39,1934.66,0.00,3515346472704.425293,3515346467822.397949,11,0,0.001588,0.000786,13068215,8397522,0,0,13742,0,1,1 +1774046574.628801,0.70,4,3992.50,49.41,1733.41,1934.65,0.00,0.000000,0.000000,11,0,0.001589,0.000796,13068245,8397543,0,0,13745,0,1,1 +1774046579.625863,0.75,4,3992.50,49.41,1733.42,1934.64,0.00,0.000000,0.000000,11,0,0.001683,0.000862,13068281,8397569,0,0,13747,0,1,1 +1774046584.628606,0.70,4,3992.50,49.42,1733.18,1934.88,0.00,20351.585356,25231.335394,1966999,460425,0.001619,0.001464,13068313,8397596,0,0,13750,0,1,1 +1774046589.629100,1.10,4,3992.50,49.42,1732.99,1935.07,0.00,3518089741274.032715,3518089736392.037598,70,0,0.003837,0.001835,13068392,8397645,0,0,13752,0,1,1 +1774046594.627423,0.90,4,3992.50,49.42,1733.00,1935.06,0.00,0.126996,0.000000,199,0,0.001590,0.000796,13068422,8397666,0,0,13755,0,1,1 +1774046599.628501,11.26,4,3992.50,49.25,1736.95,1928.34,0.00,3517678859935.554199,0.000000,70,0,0.021779,40.053010,13069833,8402019,0,0,13757,0,1,1 +1774046604.629375,0.90,4,3992.50,49.10,1742.75,1922.51,0.00,3517822174664.628906,0.000000,11,0,0.001424,0.003114,13069872,8402078,0,0,13760,0,1,1 +1774046609.624531,0.80,4,3992.50,49.10,1742.75,1922.51,0.00,0.177125,0.000000,199,0,0.000000,0.000020,13069872,8402080,0,0,13762,0,1,1 +1774046614.628104,0.65,4,3992.50,49.13,1741.52,1923.73,0.00,0.000000,0.000000,199,0,0.000000,0.000030,13069872,8402083,0,0,13765,0,1,1 +1774046619.627913,0.65,4,3992.50,48.94,1749.18,1916.08,0.00,1.831906,0.000195,238,2,0.000000,0.000020,13069872,8402085,0,0,13767,0,1,1 +1774046624.624588,0.65,4,3992.50,48.94,1749.18,1916.08,0.00,3520778847910.082520,3520778847912.092285,11,0,0.000000,0.000030,13069872,8402088,0,0,13770,0,1,1 +1774046629.624542,0.85,4,3992.50,48.95,1748.95,1916.31,0.00,0.176955,0.000000,199,0,0.000000,0.000020,13069872,8402090,0,0,13772,0,1,1 +1774046634.628594,0.75,4,3992.50,48.95,1748.95,1916.31,0.00,1.830353,0.000195,238,2,0.000075,0.000123,13069878,8402099,0,0,13775,0,1,1 +1774046639.625854,0.65,4,3992.50,48.95,1748.95,1916.31,0.00,3520366189310.234863,3520366189312.194336,70,0,0.000066,0.000098,13069884,8402107,0,0,13777,0,1,1 +1774046644.624749,0.65,4,3992.50,48.77,1755.80,1909.46,0.00,20363.139630,25291.098635,1966239,460837,0.000107,0.000148,13069892,8402118,0,0,13780,0,1,1 +1774046649.627540,0.55,4,3992.50,48.81,1754.33,1910.93,0.00,3516474360054.531250,3516474355128.987305,226,83,0.000124,0.000764,13069900,8402132,0,0,13782,0,1,1 +1774046654.626782,0.60,4,3992.50,48.81,1754.33,1910.93,0.00,3518970416651.322754,3518970416652.796875,11,0,0.000000,0.000030,13069900,8402135,0,0,13785,0,1,1 +1774046659.629524,0.60,4,3992.50,48.83,1753.60,1911.66,0.00,20351.596213,25271.741779,1967002,460979,0.000000,0.000020,13069900,8402137,0,0,13787,0,1,1 +1774046664.628427,13.26,4,3992.50,55.30,1505.73,2165.09,0.00,3519209008014.366211,3519209008018.418945,1966239,460920,7.216934,0.011729,13070853,8402831,0,0,13790,0,1,1 +1774046669.627070,35.08,4,3992.50,54.92,1527.06,2150.14,0.00,3519392688154.193359,3519392683225.784180,199,0,119.398618,0.024368,13083059,8404624,0,0,13792,0,1,1 +1774046674.628874,30.02,4,3992.50,55.07,1524.38,2156.09,0.00,20351.169717,25276.580718,1966239,461029,118.928533,0.033389,13095415,8407146,0,0,13795,0,1,1 +1774046679.628555,29.72,4,3992.50,54.97,1528.34,2152.24,0.00,0.000000,0.050687,1966239,461049,119.378454,0.037569,13107670,8410023,0,0,13797,0,1,1 +1774046684.628506,31.00,4,3992.50,55.04,1525.88,2154.91,0.00,3518471042549.187500,3518471037622.078613,11,0,119.381961,0.067362,13120152,8415237,0,0,13800,0,1,1 +1774046689.624514,29.47,4,3992.50,55.23,1518.32,2162.25,0.00,1.496996,0.022088,226,83,119.075196,0.065830,13132577,8420335,0,0,13802,0,1,1 +1774046694.628199,29.33,4,3992.50,54.98,1528.16,2152.45,0.00,20342.200429,25267.160159,1966239,461087,119.895407,0.076151,13145173,8426290,0,0,13805,0,1,1 +1774046699.629244,30.18,4,3992.50,54.98,1528.23,2152.41,0.00,3517701950825.783691,3517701945899.520020,199,0,119.169947,0.105107,13157978,8434502,0,0,13807,0,1,1 +1774046704.626816,30.01,4,3992.50,55.07,1524.43,2156.19,0.00,3520146649826.583496,0.000000,11,0,119.448110,0.090803,13170683,8441570,0,0,13810,0,1,1 +1774046709.624429,5.38,4,3992.50,49.33,1749.49,1931.25,0.00,0.000000,0.000000,11,0,63.737788,0.055603,13177555,8445835,0,0,13812,0,1,1 +1774046714.629182,7.62,4,3992.50,49.17,1755.40,1925.30,0.00,2.006881,0.000195,238,2,4.030618,0.021985,13178998,8446917,0,0,13815,0,1,1 +1774046719.628508,26.63,4,3992.50,49.77,1732.27,1948.43,0.00,20359.547449,25289.869518,1966266,461945,32.211707,0.138447,13189050,8454253,0,0,13817,0,1,1 +1774046724.624580,4.47,4,3992.50,48.47,1782.82,1897.85,0.00,4.072633,0.501468,1967035,462540,4.018818,0.022657,13190538,8455381,0,0,13820,0,1,1 +1774046729.629400,8.93,4,3992.50,49.55,1738.71,1939.95,0.00,3515048479993.358398,3515048479997.416504,1966273,462506,0.022405,34.219038,13192068,8459124,0,0,13822,0,1,1 +1774046734.628486,29.87,4,3992.50,49.67,1725.69,1944.63,0.00,3519080998058.631348,3519080993129.586914,11,0,0.027411,118.187989,13194083,8471426,0,0,13825,0,1,1 +1774046739.624521,14.59,4,3992.50,49.40,1732.58,1933.97,0.00,1.496988,0.022088,226,83,0.014172,52.720774,13195008,8477028,0,0,13827,0,1,1 +1774046744.627219,14.02,4,3992.50,51.53,1649.43,2017.37,0.00,0.512712,3516539816220.242676,238,2,40.042220,0.023125,13199380,8478532,0,0,13830,0,1,1 +1774046749.624637,3.46,4,3992.50,50.58,1686.38,1980.42,0.00,20390.787638,25478.646557,1967150,463758,0.003865,0.001662,13199451,8478578,0,0,13832,0,1,1 +1774046754.624512,1.40,4,3992.50,50.15,1703.26,1963.51,0.00,3518525236078.448730,3518525230993.089844,238,2,0.003371,0.005328,13199527,8478675,0,0,13835,0,1,1 +1774046759.629436,0.65,4,3992.50,49.79,1717.51,1949.28,0.00,20360.207588,25440.461420,1967150,463797,0.001588,0.000785,13199557,8478695,0,0,13837,0,1,1 +1774046764.629294,0.70,4,3992.50,49.69,1721.46,1945.33,0.00,3518537008692.162109,3518537003608.769531,11,0,0.001589,0.000796,13199587,8478716,0,0,13840,0,1,1 +1774046769.629134,0.90,4,3992.50,49.47,1729.79,1937.01,0.00,0.000000,0.000000,11,0,0.001620,0.000811,13199619,8478738,0,0,13842,0,1,1 +1774046774.628174,0.95,4,3992.50,49.48,1729.55,1937.24,0.00,0.000000,0.000000,11,0,0.001615,0.000827,13199651,8478761,0,0,13845,0,1,1 +1774046779.629202,1.76,4,3992.50,49.48,1729.56,1937.22,0.00,0.000000,0.000000,11,0,0.001589,0.000786,13199681,8478781,0,0,13847,0,1,1 +1774046784.628591,0.75,4,3992.50,49.43,1731.56,1935.24,0.00,0.000000,0.000000,11,0,0.001589,0.001440,13199711,8478806,0,0,13850,0,1,1 +1774046789.629029,1.15,4,3992.50,49.27,1737.73,1929.04,0.00,0.000000,0.000000,11,0,0.001682,0.000862,13199747,8478832,0,0,13852,0,1,1 +1774046794.628923,1.00,4,3992.50,49.30,1736.54,1930.26,0.00,0.000000,0.000000,11,0,0.001597,0.000804,13199778,8478854,0,0,13855,0,1,1 +1774046799.629337,0.90,4,3992.50,48.94,1750.66,1916.15,0.00,0.176938,0.000000,199,0,0.001788,0.000927,13199821,8478885,0,0,13857,0,1,1 +1774046804.624517,0.90,4,3992.50,48.75,1758.15,1908.66,0.00,3521832334847.226562,0.000000,11,0,0.001591,0.000797,13199851,8478906,0,0,13860,0,1,1 +1774046809.628268,0.90,4,3992.50,48.78,1757.17,1909.66,0.00,2.007283,0.000195,238,2,0.001588,0.000786,13199881,8478926,0,0,13862,0,1,1 +1774046814.628267,0.85,4,3992.50,48.81,1755.96,1910.87,0.00,0.000000,0.000000,238,2,0.001589,0.000796,13199911,8478947,0,0,13865,0,1,1 +1774046819.626757,0.65,4,3992.50,48.82,1755.47,1911.35,0.00,3519500685140.868652,3519500685142.827637,70,0,0.000971,0.000549,13199929,8478960,0,0,13867,0,1,1 +1774046824.628536,11.03,4,3992.50,49.01,1745.41,1918.84,0.00,20370.990069,25518.101661,1966392,464667,0.021686,40.049083,13201314,8483333,0,0,13870,0,1,1 +1774046829.626578,0.75,4,3992.50,49.00,1745.99,1918.27,0.00,0.000000,2.097794,1966392,464731,0.000000,0.000020,13201314,8483335,0,0,13872,0,1,1 +1774046834.629004,0.65,4,3992.50,48.83,1752.41,1911.85,0.00,4.062775,0.026940,1967155,464821,0.000000,0.000030,13201314,8483338,0,0,13875,0,1,1 +1774046839.626218,0.60,4,3992.50,48.85,1751.73,1912.54,0.00,3520398806818.083496,3520398801668.084473,199,0,0.000000,0.000020,13201314,8483340,0,0,13877,0,1,1 +1774046844.629144,0.60,4,3992.50,48.85,1751.48,1912.78,0.00,3516379626069.313965,0.000000,11,0,0.000000,0.000030,13201314,8483343,0,0,13880,0,1,1 +1774046849.629402,0.60,4,3992.50,48.85,1751.48,1912.78,0.00,20381.302600,25528.035606,1967155,464863,0.000000,0.000664,13201314,8483349,0,0,13882,0,1,1 +1774046854.624506,0.65,4,3992.50,48.85,1751.48,1912.78,0.00,3521885731668.024414,3521885726514.505371,226,83,0.000000,0.000030,13201314,8483352,0,0,13885,0,1,1 +1774046859.629184,0.65,4,3992.50,48.85,1751.48,1912.77,0.00,3515148469016.488281,3515148469017.960449,11,0,0.000050,0.000082,13201318,8483358,0,0,13887,0,1,1 +1774046864.628496,0.70,4,3992.50,48.82,1752.95,1911.30,0.00,20385.160855,25536.937467,1967155,464936,0.000066,0.000108,13201324,8483367,0,0,13890,0,1,1 +1774046869.629028,0.60,4,3992.50,48.83,1752.50,1911.76,0.00,3518062735755.835449,3518062730603.308105,238,2,0.000206,0.000208,13201338,8483383,0,0,13892,0,1,1 +1774046874.624602,0.65,4,3992.50,48.83,1752.50,1911.76,0.00,3521554381059.791504,3521554381061.751953,70,0,0.000000,0.000030,13201338,8483386,0,0,13895,0,1,1 +1774046879.624533,0.65,4,3992.50,48.84,1752.25,1912.01,0.00,20378.520223,25533.765101,1966392,464861,0.000000,0.000020,13201338,8483388,0,0,13897,0,1,1 +1774046884.624602,0.60,4,3992.50,48.84,1752.25,1912.01,0.00,3518389353188.437500,3518389348031.910156,226,83,0.000000,0.000030,13201338,8483391,0,0,13900,0,1,1 +1774046889.625299,24.64,4,3992.50,55.10,1513.82,2157.20,0.00,20378.019152,25529.892972,1967155,464986,37.452748,0.022697,13205355,8484946,0,0,13902,0,1,1 +1774046894.624518,33.10,4,3992.50,55.17,1517.28,2160.05,0.00,3518986163714.532715,3518986158562.610352,11,0,120.201731,0.061484,13217968,8489650,0,0,13905,0,1,1 +1774046899.627472,28.79,4,3992.50,55.01,1525.25,2153.84,0.00,0.000000,0.000000,11,0,118.526311,0.108263,13230637,8498076,0,0,13907,0,1,1 +1774046904.628668,29.71,4,3992.50,55.19,1518.55,2160.68,0.00,2.008309,0.000195,238,2,119.757561,0.081898,13243228,8504490,0,0,13910,0,1,1 +1774046909.628696,29.02,4,3992.50,55.11,1521.38,2157.78,0.00,3518417279158.531738,3518417279160.363770,199,0,119.186609,0.089977,13255713,8511522,0,0,13912,0,1,1 +1774046914.625168,29.20,4,3992.50,55.21,1517.44,2161.61,0.00,0.000000,0.000000,199,0,119.282653,0.109129,13268525,8519988,0,0,13915,0,1,1 +1774046919.626033,29.10,4,3992.50,55.06,1523.67,2155.90,0.00,20374.588828,25529.323735,1966392,465078,119.577223,0.113173,13281366,8528749,0,0,13917,0,1,1 +1774046924.626102,28.78,4,3992.50,55.20,1517.90,2161.18,0.00,3518388372273.600098,3518388367118.222168,11,0,118.794288,0.112858,13294078,8537585,0,0,13920,0,1,1 +1774046929.629421,24.74,4,3992.50,55.48,1507.09,2172.08,0.00,1.494808,0.022056,226,83,120.119641,0.108783,13307033,8546072,0,0,13922,0,1,1 +1774046934.624541,1.51,4,3992.50,50.26,1711.28,1967.91,0.00,20396.840807,25558.829124,1966405,465139,32.690034,0.032142,13310635,8548492,0,0,13925,0,1,1 +1774046939.625605,9.64,4,3992.50,49.67,1734.57,1944.64,0.00,3517689009823.690430,3517689004667.836914,226,83,8.062017,0.043818,13313478,8550625,0,0,13927,0,1,1 +1774046944.629380,14.63,4,3992.50,49.64,1735.52,1943.64,0.00,20365.626205,25514.997168,1967174,465892,18.104572,0.086092,13319615,8555163,0,0,13930,0,1,1 +1774046949.628988,8.34,4,3992.50,49.18,1753.50,1925.69,0.00,3518713055606.268555,3518713050452.070801,238,2,14.081167,0.056842,13324061,8558437,0,0,13932,0,1,1 +1774046954.629008,2.05,4,3992.50,48.95,1762.83,1916.32,0.00,0.000000,0.000000,238,2,0.002283,0.002168,13324106,8558480,0,0,13935,0,1,1 +1774046959.624595,0.60,4,3992.50,48.90,1764.67,1914.52,0.00,3521545591249.050781,3521545591250.884766,199,0,0.001591,0.000787,13324136,8558500,0,0,13937,0,1,1 +1774046964.626481,17.92,4,3992.50,49.38,1741.56,1933.29,0.00,3517109966239.549316,0.000000,11,0,0.039400,68.074072,13326996,8565759,0,0,13940,0,1,1 +1774046969.628403,29.11,4,3992.50,50.10,1705.12,1961.37,0.00,20370.619005,25663.903037,1966422,467355,0.036655,119.121514,13329735,8578083,0,0,13942,0,1,1 +1774046974.624602,5.22,4,3992.50,49.21,1738.62,1926.51,0.00,0.000000,36.105276,1966422,467589,0.007006,17.840135,13330176,8579998,0,0,13945,0,1,1 +1774046979.629337,13.78,4,3992.50,50.97,1670.50,1995.74,0.00,19.362133,30.554073,1966546,467869,40.026371,0.027584,13334554,8581797,0,0,13947,0,1,1 +1774046984.628670,1.20,4,3992.50,50.36,1694.41,1971.88,0.00,4.065289,0.049030,1967309,467990,0.003710,0.004163,13334625,8581862,0,0,13950,0,1,1 +1774046989.627550,0.70,4,3992.50,49.72,1719.73,1946.58,0.00,3519225227473.153809,3519225222131.366211,238,2,0.001598,0.001438,13334656,8581887,0,0,13952,0,1,1 +1774046994.625642,0.65,4,3992.50,49.56,1725.73,1940.57,0.00,3519780831713.206055,3519780831715.038574,199,0,0.001714,0.000897,13334694,8581916,0,0,13955,0,1,1 +1774046999.624651,0.90,4,3992.50,49.57,1725.71,1940.60,0.00,0.000000,0.000000,199,0,0.001590,0.000786,13334724,8581936,0,0,13957,0,1,1 +1774047004.624622,0.75,4,3992.50,49.56,1725.72,1940.58,0.00,3518457627196.325195,0.000000,11,0,0.001589,0.000796,13334754,8581957,0,0,13960,0,1,1 +1774047009.624517,0.75,4,3992.50,49.55,1726.18,1940.14,0.00,20398.271460,25741.203373,1966556,468112,0.001614,0.000817,13334786,8581979,0,0,13962,0,1,1 +1774047014.628659,0.75,4,3992.50,49.55,1726.32,1940.00,0.00,3515524497693.280273,3515524492352.877441,238,2,0.001596,0.000803,13334817,8582001,0,0,13965,0,1,1 +1774047019.624606,0.90,4,3992.50,49.56,1726.09,1940.23,0.00,0.000000,0.000000,238,2,0.001590,0.000787,13334847,8582021,0,0,13967,0,1,1 +1774047024.624757,1.05,4,3992.50,49.56,1726.09,1940.21,0.00,3518330996801.393555,3518330996803.402344,11,0,0.001714,0.000897,13334885,8582050,0,0,13970,0,1,1 +1774047029.628826,0.70,4,3992.50,49.56,1726.11,1940.20,0.00,2.007156,0.000195,238,2,0.001663,0.000826,13334920,8582073,0,0,13972,0,1,1 +1774047034.625087,0.80,4,3992.50,49.56,1726.12,1940.19,0.00,0.000000,0.000000,238,2,0.001598,0.000805,13334951,8582095,0,0,13975,0,1,1 +1774047039.629088,0.85,4,3992.50,49.55,1726.12,1940.19,0.00,20383.585033,25720.398460,1967319,468451,0.001588,0.000786,13334981,8582115,0,0,13977,0,1,1 +1774047044.629450,0.85,4,3992.50,49.55,1726.14,1940.17,0.00,3518182987096.513672,3518182981756.350098,226,83,0.001589,0.000783,13335011,8582135,0,0,13980,0,1,1 +1774047049.624798,10.37,4,3992.50,49.25,1735.77,1928.24,0.00,3521713867106.789062,3521713867108.214355,70,0,0.027011,40.098290,13336871,8586447,0,0,13982,0,1,1 +1774047054.629203,1.05,4,3992.50,49.15,1739.59,1924.42,0.00,1.957065,0.000195,238,2,0.003352,0.006596,13336938,8586557,0,0,13985,0,1,1 +1774047059.627083,0.60,4,3992.50,49.18,1738.37,1925.65,0.00,3519929674550.891113,3519929674552.900879,11,0,0.000008,0.000028,13336939,8586560,0,0,13987,0,1,1 +1774047064.628759,1.55,4,3992.50,49.02,1744.90,1919.11,0.00,20395.068631,25768.552133,1967320,468840,0.000000,0.000030,13336939,8586563,0,0,13990,0,1,1 +1774047069.624602,0.65,4,3992.50,49.00,1745.48,1918.53,0.00,3521364720793.593262,3521364720797.646973,1966557,468762,0.000000,0.000020,13336939,8586565,0,0,13992,0,1,1 +1774047074.624537,0.55,4,3992.50,49.01,1744.99,1919.01,0.00,4.064799,0.069142,1967320,468853,0.000000,0.000030,13336939,8586568,0,0,13995,0,1,1 +1774047079.628958,0.70,4,3992.50,49.01,1745.30,1918.71,0.00,3515329285859.665039,3515329280489.073242,11,0,0.000000,0.000020,13336939,8586570,0,0,13997,0,1,1 +1774047084.628589,1.20,4,3992.50,49.01,1745.07,1918.94,0.00,0.000000,0.000000,11,0,0.000025,0.000061,13336941,8586575,0,0,14000,0,1,1 +1774047089.628912,0.65,4,3992.50,49.02,1744.87,1919.14,0.00,2.008659,0.000195,238,2,0.000066,0.000098,13336947,8586583,0,0,14002,0,1,1 +1774047094.628538,0.65,4,3992.50,49.00,1745.65,1918.36,0.00,3518700913698.727539,3518700913700.736328,11,0,0.000076,0.000123,13336953,8586592,0,0,14005,0,1,1 +1774047099.628656,0.50,4,3992.50,49.03,1744.42,1919.59,0.00,2.008742,0.000195,238,2,0.000218,0.000196,13336967,8586608,0,0,14007,0,1,1 +1774047104.628688,0.60,4,3992.50,49.03,1744.42,1919.59,0.00,3518414743100.869141,0.021875,226,83,0.000000,0.000030,13336967,8586611,0,0,14010,0,1,1 +1774047109.624535,0.55,4,3992.50,49.03,1744.42,1919.59,0.00,0.513415,3521362250268.809570,238,2,0.000000,0.000020,13336967,8586613,0,0,14012,0,1,1 +1774047114.626378,26.24,4,3992.50,55.26,1507.34,2163.74,0.00,3517140401933.360352,3517140401935.318359,70,0,40.445530,0.021141,13341268,8588070,0,0,14015,0,1,1 +1774047119.624595,31.54,4,3992.50,55.26,1513.80,2163.43,0.00,1.959488,0.000195,238,2,119.407212,0.045106,13353382,8591491,0,0,14017,0,1,1 +1774047124.625003,27.92,4,3992.50,55.27,1515.03,2163.84,0.00,3518150409963.401367,3518150409965.409668,11,0,118.754870,0.019438,13365528,8592921,0,0,14020,0,1,1 +1774047129.624829,27.84,4,3992.50,55.17,1519.04,2159.87,0.00,0.050002,0.000000,70,0,119.570761,0.024382,13377866,8594772,0,0,14022,0,1,1 +1774047134.625474,28.02,4,3992.50,55.35,1511.65,2167.25,0.00,20395.159900,25778.209702,1966557,469047,119.349900,0.025435,13390112,8596716,0,0,14025,0,1,1 +1774047139.629361,28.31,4,3992.50,55.21,1517.22,2161.68,0.00,4.061589,0.052303,1967320,469146,118.870284,0.037972,13402261,8599698,0,0,14027,0,1,1 +1774047144.627493,28.26,4,3992.50,55.52,1505.26,2173.62,0.00,3519751656632.270996,3519751651250.579590,11,0,120.210696,0.044915,13414542,8603179,0,0,14030,0,1,1 +1774047149.624480,28.41,4,3992.50,55.30,1513.97,2164.95,0.00,0.000000,0.000000,11,0,118.233053,0.041856,13426513,8606416,0,0,14032,0,1,1 +1774047154.627410,24.16,4,3992.50,55.19,1518.11,2160.90,0.00,0.049971,0.000000,70,0,120.094197,0.050268,13438696,8610326,0,0,14035,0,1,1 +1774047159.624489,1.36,4,3992.50,49.29,1749.02,1929.98,0.00,1.959934,0.000195,238,2,30.462866,0.013864,13441847,8611323,0,0,14037,0,1,1 +1774047164.625495,14.87,4,3992.50,50.07,1718.77,1960.25,0.00,3517729233509.838867,3517729233511.846680,11,0,12.137382,0.059456,13445974,8614441,0,0,14040,0,1,1 +1774047169.628720,20.03,4,3992.50,50.46,1703.43,1975.54,0.00,2.007494,0.000195,238,2,28.103639,0.127027,13455332,8621379,0,0,14042,0,1,1 +1774047174.628958,1.45,4,3992.50,49.73,1731.86,1947.05,0.00,3518269858153.514648,3518269858155.473145,70,0,0.002611,0.002600,13455369,8621418,0,0,14045,0,1,1 +1774047179.629248,21.32,4,3992.50,50.19,1708.58,1964.88,0.00,3518233441245.993164,0.000000,11,0,0.051740,87.731395,13459161,8630968,0,0,14047,0,1,1 +1774047184.628911,29.09,4,3992.50,49.53,1725.66,1939.40,0.00,0.176965,0.000000,199,0,0.103429,117.407892,13467087,8643691,0,0,14050,0,1,1 +1774047189.629375,7.26,4,3992.50,54.27,1541.38,2124.66,0.00,1.318725,0.022068,226,83,2.615357,0.012011,13467761,8644144,0,0,14052,0,1,1 +1774047194.624579,8.24,4,3992.50,50.74,1679.48,1986.56,0.00,20439.553298,25983.752433,1967501,471850,37.491918,0.014969,13471662,8645056,0,0,14055,0,1,1 +1774047199.629344,0.85,4,3992.50,50.06,1705.96,1960.11,0.00,3515087256876.627441,3515087251344.492188,11,0,0.001588,0.000785,13471692,8645076,0,0,14057,0,1,1 +1774047204.625621,0.70,4,3992.50,49.73,1719.02,1947.06,0.00,0.000000,0.000000,11,0,0.001641,0.000859,13471726,8645101,0,0,14060,0,1,1 +1774047209.624542,0.80,4,3992.50,49.53,1726.68,1939.39,0.00,0.000000,0.000000,11,0,0.001598,0.000794,13471757,8645122,0,0,14062,0,1,1 +1774047214.625473,1.40,4,3992.50,48.54,1765.50,1900.57,0.00,0.000000,0.000000,11,0,0.001713,0.000884,13471795,8645150,0,0,14065,0,1,1 +1774047219.627887,1.30,4,3992.50,48.54,1765.52,1900.56,0.00,1.495079,0.022060,226,83,0.001588,0.000786,13471825,8645170,0,0,14067,0,1,1 +1774047224.624593,0.80,4,3992.50,48.54,1765.52,1900.55,0.00,3520756328963.188477,3520756328964.612793,70,0,0.001615,0.000828,13471857,8645193,0,0,14070,0,1,1 +1774047229.625510,0.65,4,3992.50,48.28,1775.96,1890.12,0.00,0.126930,0.000000,199,0,0.001597,0.000794,13471888,8645214,0,0,14072,0,1,1 +1774047234.628946,0.80,4,3992.50,48.28,1775.96,1890.11,0.00,20407.241689,25970.687058,1967501,472213,0.001763,0.000958,13471930,8645247,0,0,14075,0,1,1 +1774047239.629227,0.85,4,3992.50,48.31,1774.76,1891.32,0.00,3518239584436.142090,0.117962,1966738,472234,0.001664,0.000814,13471965,8645269,0,0,14077,0,1,1 +1774047244.627958,1.50,4,3992.50,48.32,1774.31,1891.76,0.00,4.065778,0.053822,1967501,472358,0.002259,0.001718,13471998,8645292,0,0,14080,0,1,1 +1774047249.629120,0.80,4,3992.50,48.13,1781.70,1884.38,0.00,3517619727406.307129,3517619721840.286621,70,0,0.001589,0.000786,13472028,8645312,0,0,14082,0,1,1 +1774047254.629040,0.75,4,3992.50,48.13,1781.71,1884.37,0.00,20421.720757,25989.179012,1967501,472408,0.001597,0.001435,13472059,8645337,0,0,14085,0,1,1 +1774047259.626531,0.65,4,3992.50,48.13,1781.71,1884.36,0.00,3520203535774.955566,3520203535779.004395,1966738,472331,0.001590,0.000787,13472089,8645357,0,0,14087,0,1,1 +1774047264.628942,0.80,4,3992.50,48.13,1781.73,1884.35,0.00,3516741732109.354492,3516741726540.673828,11,0,0.001588,0.000796,13472119,8645378,0,0,14090,0,1,1 +1774047269.627007,11.00,4,3992.50,48.64,1759.12,1904.29,0.00,0.000000,0.000000,11,0,0.021145,40.074614,13473538,8649639,0,0,14092,0,1,1 +1774047274.625835,0.90,4,3992.50,48.06,1782.11,1881.47,0.00,0.000000,0.000000,11,0,0.001147,0.002922,13473574,8649695,0,0,14095,0,1,1 +1774047279.628740,0.65,4,3992.50,48.07,1781.41,1882.18,0.00,20409.589794,26009.826753,1967502,472782,0.000000,0.000020,13473574,8649697,0,0,14097,0,1,1 +1774047284.627064,0.55,4,3992.50,48.12,1779.44,1884.14,0.00,0.000000,0.014849,1967502,472786,0.000000,0.000030,13473574,8649700,0,0,14100,0,1,1 +1774047289.629390,1.70,4,3992.50,47.96,1785.83,1877.76,0.00,3516801212629.175293,3516801207028.275879,11,0,0.000000,0.000020,13473574,8649702,0,0,14102,0,1,1 +1774047294.629059,0.60,4,3992.50,48.00,1784.36,1879.23,0.00,2.008922,0.000195,238,2,0.000000,0.000030,13473574,8649705,0,0,14105,0,1,1 +1774047299.627425,0.60,4,3992.50,47.85,1790.30,1873.28,0.00,3519587610730.367188,0.021882,226,83,0.000000,0.000020,13473574,8649707,0,0,14107,0,1,1 +1774047304.624537,0.65,4,3992.50,47.87,1789.41,1874.12,0.00,0.000000,0.000000,226,83,0.000025,0.000061,13473576,8649712,0,0,14110,0,1,1 +1774047309.628600,0.65,4,3992.50,47.87,1789.47,1874.12,0.00,0.000000,0.000000,226,83,0.000066,0.000098,13473582,8649720,0,0,14112,0,1,1 +1774047314.629386,0.60,4,3992.50,47.87,1789.47,1874.12,0.00,3517883669182.781738,3517883669184.255371,11,0,0.000107,0.000148,13473590,8649731,0,0,14115,0,1,1 +1774047319.624609,0.80,4,3992.50,47.80,1792.05,1871.53,0.00,0.050048,0.000000,70,0,0.000124,0.000765,13473598,8649745,0,0,14117,0,1,1 +1774047324.625893,0.60,4,3992.50,47.80,1792.05,1871.53,0.00,1.958286,0.000195,238,2,0.000000,0.000030,13473598,8649748,0,0,14120,0,1,1 +1774047329.625431,0.60,4,3992.50,47.81,1791.81,1871.78,0.00,3518762586042.512695,3518762586044.521484,11,0,0.000000,0.000020,13473598,8649750,0,0,14122,0,1,1 +1774047334.625236,1.00,4,3992.50,47.69,1796.38,1867.20,0.00,20422.265463,26030.153383,1967504,472922,0.000000,0.000030,13473598,8649753,0,0,14125,0,1,1 +1774047339.628837,34.66,4,3992.50,54.34,1543.14,2127.40,0.00,3515904557947.118652,3515904552342.013672,226,83,75.654586,0.031281,13481448,8651988,0,0,14127,0,1,1 +1774047344.627384,29.55,4,3992.50,54.20,1556.70,2121.95,0.00,0.513137,3519460201229.272949,238,2,118.198032,0.027819,13493518,8654083,0,0,14130,0,1,1 +1774047349.628480,28.15,4,3992.50,54.26,1554.09,2124.54,0.00,3517665786886.222656,0.021870,226,83,119.341638,0.020233,13505825,8655485,0,0,14132,0,1,1 +1774047354.628783,28.06,4,3992.50,54.33,1551.60,2127.17,0.00,3518224487178.357910,3518224487179.654785,199,0,118.958062,0.018907,13517996,8656764,0,0,14135,0,1,1 +1774047359.628989,28.14,4,3992.50,54.31,1552.40,2126.37,0.00,3518292086371.044434,0.000000,11,0,119.957376,0.016344,13530026,8657977,0,0,14137,0,1,1 +1774047364.627139,27.70,4,3992.50,54.11,1560.31,2118.41,0.00,2.009533,0.000195,238,2,118.404387,0.021150,13541831,8659603,0,0,14140,0,1,1 +1774047369.628597,28.36,4,3992.50,54.47,1546.10,2132.70,0.00,3517411352342.869141,3517411352344.876953,11,0,120.131066,0.026580,13554046,8661667,0,0,14142,0,1,1 +1774047374.624578,27.94,4,3992.50,54.23,1555.40,2123.39,0.00,0.050040,0.000000,70,0,118.261840,0.027255,13566200,8663734,0,0,14145,0,1,1 +1774047379.624597,16.52,4,3992.50,54.29,1553.41,2125.46,0.00,3518423665063.093750,0.000000,11,0,116.562768,0.021287,13578250,8665337,0,0,14147,0,1,1 +1774047384.628444,15.35,4,3992.50,48.87,1765.62,1913.25,0.00,0.000000,0.000000,11,0,14.101980,0.078207,13583308,8669147,0,0,14150,0,1,1 +1774047389.624787,12.03,4,3992.50,48.32,1786.95,1891.91,0.00,0.000000,0.000000,11,0,20.130673,0.083665,13589807,8673911,0,0,14152,0,1,1 +1774047394.628935,6.12,4,3992.50,48.39,1784.16,1894.68,0.00,0.176806,0.000000,199,0,6.033457,0.027544,13591706,8675328,0,0,14155,0,1,1 +1774047399.628935,2.86,4,3992.50,47.61,1814.94,1863.93,0.00,20417.373958,26030.302194,1966766,474274,0.001736,0.001996,13591744,8675369,0,0,14157,0,1,1 +1774047404.629110,0.35,4,3992.50,47.63,1814.22,1864.65,0.00,3518313834976.767090,3518313829362.739746,226,83,0.001413,0.000650,13591771,8675388,0,0,14160,0,1,1 +1774047409.628736,18.40,4,3992.50,48.02,1790.16,1880.04,0.00,0.513027,3518700979153.458008,238,2,0.040815,74.512553,13594742,8683155,0,0,14162,0,1,1 +1774047414.629068,28.79,4,3992.50,48.12,1781.88,1884.08,0.00,3518203339128.962402,3518203339130.793945,199,0,0.029117,118.958522,13596881,8695463,0,0,14165,0,1,1 +1774047419.628706,4.16,4,3992.50,47.86,1791.26,1873.74,0.00,3518691856612.736328,0.000000,70,0,0.005610,11.621717,13597146,8696786,0,0,14167,0,1,1 +1774047424.628876,14.90,4,3992.50,49.00,1747.57,1918.52,0.00,0.126949,0.000000,199,0,40.063542,0.025784,13601559,8698536,0,0,14170,0,1,1 +1774047429.629076,0.95,4,3992.50,48.33,1773.88,1892.23,0.00,3518296459433.163574,0.000000,11,0,0.003985,0.003804,13601641,8698608,0,0,14172,0,1,1 +1774047434.628888,0.55,4,3992.50,47.98,1787.72,1878.38,0.00,0.176960,0.000000,199,0,0.001589,0.000796,13601671,8698629,0,0,14175,0,1,1 +1774047439.628948,0.55,4,3992.50,47.98,1787.76,1878.37,0.00,3518395075398.316406,0.000000,11,0,0.001714,0.000887,13601709,8698657,0,0,14177,0,1,1 +1774047444.628929,0.95,4,3992.50,47.96,1788.53,1877.60,0.00,20441.082792,26230.951930,1967663,476124,0.001589,0.000796,13601739,8698678,0,0,14180,0,1,1 +1774047449.626410,0.55,4,3992.50,47.96,1788.54,1877.59,0.00,0.000000,5.645325,1967663,476197,0.001590,0.001431,13601769,8698702,0,0,14182,0,1,1 +1774047454.627841,0.55,4,3992.50,47.96,1788.56,1877.56,0.00,0.000000,0.132384,1967663,476269,0.001614,0.000827,13601801,8698725,0,0,14185,0,1,1 +1774047459.628288,0.45,4,3992.50,47.96,1788.58,1877.55,0.00,3518122862460.682129,3518122856663.569824,238,2,0.001589,0.000774,13601831,8698744,0,0,14187,0,1,1 +1774047464.628274,0.55,4,3992.50,47.76,1796.22,1869.90,0.00,3518447554525.875977,0.021875,226,83,0.001682,0.000872,13601867,8698771,0,0,14190,0,1,1 +1774047469.629056,0.40,4,3992.50,47.78,1795.49,1870.62,0.00,0.000000,0.000000,226,83,0.001628,0.000819,13601900,8698794,0,0,14192,0,1,1 +1774047474.624630,0.45,4,3992.50,47.78,1795.51,1870.61,0.00,3521554936549.014160,3521554936550.489258,11,0,0.001665,0.000837,13601935,8698818,0,0,14195,0,1,1 +1774047479.624596,0.50,4,3992.50,47.78,1795.44,1870.68,0.00,1.495811,0.022070,226,83,0.001589,0.000786,13601965,8698838,0,0,14197,0,1,1 +1774047484.624542,0.45,4,3992.50,47.77,1795.70,1870.41,0.00,3518475560969.014160,3518475560970.487793,11,0,0.001589,0.000796,13601995,8698859,0,0,14200,0,1,1 +1774047489.628876,4.21,4,3992.50,48.15,1780.25,1885.05,0.00,0.000000,0.000000,11,0,0.015255,14.812327,13602867,8700588,0,0,14202,0,1,1 +1774047494.624596,7.48,4,3992.50,47.72,1794.95,1868.41,0.00,0.177105,0.000000,199,0,0.008546,25.261550,13603342,8703264,0,0,14205,0,1,1 +1774047499.624828,0.45,4,3992.50,47.39,1808.19,1855.36,0.00,20439.879699,26273.247461,1967663,476716,0.000000,0.000020,13603342,8703266,0,0,14207,0,1,1 +1774047504.629213,0.40,4,3992.50,47.39,1807.97,1855.58,0.00,3515353967797.738770,3515353961969.388672,11,0,0.000000,0.000030,13603342,8703269,0,0,14210,0,1,1 +1774047509.628853,0.45,4,3992.50,47.46,1805.30,1858.25,0.00,0.176966,0.000000,199,0,0.000000,0.000020,13603342,8703271,0,0,14212,0,1,1 +1774047514.627653,0.45,4,3992.50,47.47,1805.05,1858.48,0.00,1.832276,0.000195,238,2,0.000000,0.000674,13603342,8703278,0,0,14215,0,1,1 +1774047519.627854,0.40,4,3992.50,47.47,1804.82,1858.73,0.00,3518295878232.280273,3518295878234.112305,199,0,0.000000,0.000020,13603342,8703280,0,0,14217,0,1,1 +1774047524.625511,0.40,4,3992.50,47.49,1804.08,1859.47,0.00,3520086643338.167969,0.000000,11,0,0.000000,0.000030,13603342,8703283,0,0,14220,0,1,1 +1774047529.628423,0.50,4,3992.50,47.49,1804.07,1859.48,0.00,1.494930,0.022057,226,83,0.000025,0.000051,13603344,8703287,0,0,14222,0,1,1 +1774047534.628741,0.45,4,3992.50,47.49,1804.07,1859.48,0.00,0.512956,3518213586302.133789,238,2,0.000192,0.000263,13603360,8703306,0,0,14225,0,1,1 +1774047539.628899,0.35,4,3992.50,47.47,1804.93,1858.62,0.00,3518325720175.770508,3518325720177.779297,11,0,0.000155,0.000146,13603370,8703318,0,0,14227,0,1,1 +1774047544.628898,0.45,4,3992.50,47.48,1804.69,1858.87,0.00,20436.943648,26276.948557,1966900,476694,0.000000,0.000030,13603370,8703321,0,0,14230,0,1,1 +1774047549.624511,0.50,4,3992.50,47.48,1804.70,1858.85,0.00,3521527547205.649414,3521527541358.505859,238,2,0.000000,0.000020,13603370,8703323,0,0,14232,0,1,1 +1774047554.624538,0.40,4,3992.50,47.44,1805.98,1857.57,0.00,3518417619037.067383,0.021875,226,83,0.000000,0.000030,13603370,8703326,0,0,14235,0,1,1 +1774047559.628319,37.97,4,3992.50,53.73,1568.26,2103.70,0.00,20420.005815,26257.159049,1966900,476789,78.452777,0.031089,13611464,8705546,0,0,14237,0,1,1 +1774047564.625337,28.48,4,3992.50,53.98,1565.14,2113.47,0.00,4.067172,0.103675,1967663,476965,120.038516,0.017923,13623741,8706826,0,0,14240,0,1,1 +1774047569.628449,27.65,4,3992.50,53.67,1577.28,2101.39,0.00,0.000000,0.002342,1967663,476977,118.292428,0.025202,13635778,8708715,0,0,14242,0,1,1 +1774047574.629221,28.43,4,3992.50,53.66,1577.62,2101.04,0.00,0.000000,0.001562,1967663,476987,120.148398,0.029706,13647929,8710978,0,0,14245,0,1,1 +1774047579.625278,27.55,4,3992.50,53.61,1579.86,2098.84,0.00,0.000000,0.030200,1967663,477000,118.268863,0.054038,13660166,8715123,0,0,14247,0,1,1 +1774047584.625799,28.15,4,3992.50,53.84,1570.71,2107.96,0.00,3518070641397.812500,3518070641401.855957,1966900,476927,120.168997,0.062749,13672709,8719979,0,0,14250,0,1,1 +1774047589.627439,27.98,4,3992.50,53.78,1572.89,2105.76,0.00,3517284180484.537109,3517284174646.191406,70,0,118.948004,0.080972,13685230,8726307,0,0,14252,0,1,1 +1774047594.624808,27.83,4,3992.50,53.65,1578.12,2100.60,0.00,0.000000,0.000000,70,0,119.458366,0.102361,13697963,8734289,0,0,14255,0,1,1 +1774047599.624449,15.64,4,3992.50,47.40,1822.94,1855.84,0.00,3518689857148.535156,0.000000,11,0,111.788005,0.083937,13709830,8740801,0,0,14257,0,1,1 +1774047604.627087,1.45,4,3992.50,47.16,1831.88,1846.58,0.00,0.000000,0.000000,11,0,0.003116,0.001454,13709888,8740842,0,0,14260,0,1,1 +1774047609.624870,16.73,4,3992.50,48.49,1779.85,1898.59,0.00,1.496464,0.022080,226,83,16.120340,0.078782,13715353,8744860,0,0,14262,0,1,1 +1774047614.625533,5.32,4,3992.50,48.09,1795.77,1882.70,0.00,3517971150878.012695,3517971150879.486328,11,0,4.027729,0.018081,13716654,8745730,0,0,14265,0,1,1 +1774047619.626174,15.45,4,3992.50,47.85,1804.93,1873.49,0.00,0.000000,0.000000,11,0,20.113182,0.085745,13723063,8750519,0,0,14267,0,1,1 +1774047624.626821,1.00,4,3992.50,47.87,1804.22,1874.21,0.00,20435.457697,26274.554432,1968222,477850,0.002129,0.002047,13723107,8750562,0,0,14270,0,1,1 +1774047629.627615,0.60,4,3992.50,47.89,1803.27,1875.17,0.00,3517878474060.865723,3517878468221.890137,70,0,0.001589,0.000786,13723137,8750582,0,0,14272,0,1,1 +1774047634.628392,0.55,4,3992.50,47.81,1806.46,1872.00,0.00,3517890589896.776367,0.000000,11,0,0.001597,0.000804,13723168,8750604,0,0,14275,0,1,1 +1774047639.629065,0.50,4,3992.50,47.61,1814.35,1864.11,0.00,0.000000,0.000000,11,0,0.001589,0.000786,13723198,8750624,0,0,14277,0,1,1 +1774047644.625977,0.55,4,3992.50,47.67,1812.15,1866.31,0.00,0.177062,0.000000,199,0,0.001615,0.001472,13723230,8750651,0,0,14280,0,1,1 +1774047649.625466,0.40,4,3992.50,47.67,1812.16,1866.30,0.00,3518797003061.548828,0.000000,11,0,0.001690,0.000911,13723268,8750679,0,0,14282,0,1,1 +1774047654.626037,0.50,4,3992.50,47.67,1812.18,1866.28,0.00,0.049994,0.000000,70,0,0.002598,0.002969,13723324,8750744,0,0,14285,0,1,1 +1774047659.629129,0.50,4,3992.50,47.67,1811.94,1866.52,0.00,0.000000,0.000000,70,0,0.001588,0.000786,13723354,8750764,0,0,14287,0,1,1 +1774047664.629238,0.45,4,3992.50,47.67,1811.95,1866.50,0.00,3518360450924.208496,0.000000,11,0,0.001682,0.000872,13723390,8750791,0,0,14290,0,1,1 +1774047669.627301,0.40,4,3992.50,47.67,1811.97,1866.48,0.00,2.009567,0.000195,238,2,0.001665,0.000827,13723425,8750814,0,0,14292,0,1,1 +1774047674.625222,0.55,4,3992.50,47.67,1811.98,1866.47,0.00,0.000000,0.000000,238,2,0.001590,0.000797,13723455,8750835,0,0,14295,0,1,1 +1774047679.628774,0.45,4,3992.50,47.67,1811.98,1866.48,0.00,3515939335095.512695,3515939335097.343262,199,0,0.001588,0.000786,13723485,8750855,0,0,14297,0,1,1 +1774047684.625813,0.45,4,3992.50,47.67,1811.99,1866.47,0.00,0.000000,0.000000,199,0,0.001590,0.000784,13723515,8750875,0,0,14300,0,1,1 +1774047689.626710,0.40,4,3992.50,47.67,1812.00,1866.46,0.00,3517806024426.406738,0.000000,11,0,0.001597,0.000794,13723546,8750896,0,0,14302,0,1,1 +1774047694.629080,0.40,4,3992.50,47.48,1819.42,1859.05,0.00,20428.421381,26266.658035,1968222,478677,0.001588,0.000796,13723576,8750917,0,0,14305,0,1,1 +1774047699.625741,0.45,4,3992.50,47.48,1819.44,1859.03,0.00,3520788108797.515137,3520788102952.608398,11,0,0.001702,0.000888,13723613,8750945,0,0,14307,0,1,1 +1774047704.628691,0.50,4,3992.50,47.51,1818.47,1860.00,0.00,2.007605,0.000195,238,2,0.001588,0.000796,13723643,8750966,0,0,14310,0,1,1 +1774047709.628751,0.40,4,3992.50,47.51,1818.48,1859.99,0.00,3518395713625.823730,3518395713627.832520,11,0,0.000983,0.001226,13723662,8750984,0,0,14312,0,1,1 +1774047714.629137,13.23,4,3992.50,47.89,1800.32,1874.93,0.00,0.000000,0.000000,11,0,0.027925,53.476534,13725598,8756772,0,0,14315,0,1,1 +1774047719.627094,28.97,4,3992.50,48.21,1779.31,1887.59,0.00,0.000000,0.000000,11,0,0.060346,120.233875,13730239,8769485,0,0,14317,0,1,1 +1774047724.624529,8.63,4,3992.50,47.77,1794.35,1870.23,0.00,0.177044,0.000000,199,0,0.028609,31.471837,13732403,8772991,0,0,14320,0,1,1 +1774047729.624417,13.81,4,3992.50,52.69,1602.86,2062.81,0.00,20461.828373,26485.040840,1969099,480189,17.816031,0.014535,13734478,8773899,0,0,14322,0,1,1 +1774047734.628610,3.06,4,3992.50,48.81,1754.61,1911.04,0.00,3515488981944.063477,3515488975926.209473,11,0,22.237044,0.018156,13736954,8775225,0,0,14325,0,1,1 +1774047739.628373,5.41,4,3992.50,48.60,1761.87,1902.65,0.00,0.000000,0.000000,11,0,0.015685,19.433605,13738004,8777410,0,0,14327,0,1,1 +1774047744.628999,6.07,4,3992.50,48.14,1778.38,1884.75,0.00,0.176931,0.000000,199,0,0.012673,20.633575,13738898,8779715,0,0,14330,0,1,1 +1774047749.628840,0.40,4,3992.50,48.07,1781.09,1882.05,0.00,3518549015000.233398,0.000000,11,0,0.000000,0.000020,13738898,8779717,0,0,14332,0,1,1 +1774047754.628928,0.40,4,3992.50,47.90,1787.83,1875.31,0.00,0.000000,0.000000,11,0,0.000000,0.000030,13738898,8779720,0,0,14335,0,1,1 +1774047759.629200,0.45,4,3992.50,47.86,1789.47,1873.65,0.00,0.176944,0.000000,199,0,0.000025,0.000051,13738900,8779724,0,0,14337,0,1,1 +1774047764.627803,0.35,4,3992.50,47.88,1788.70,1874.42,0.00,1.832348,0.000195,238,2,0.000000,0.000030,13738900,8779727,0,0,14340,0,1,1 +1774047769.624604,0.55,4,3992.50,47.86,1789.30,1873.83,0.00,3520689690519.784668,0.021889,226,83,0.000000,0.000020,13738900,8779729,0,0,14342,0,1,1 +1774047774.629415,0.40,4,3992.50,47.86,1789.30,1873.83,0.00,20440.383655,26499.256224,1969099,480668,0.000031,0.000698,13738902,8779738,0,0,14345,0,1,1 +1774047779.629274,0.40,4,3992.50,47.86,1789.30,1873.83,0.00,3518536301367.019531,3518536295303.620117,11,0,0.000134,0.000183,13738913,8779751,0,0,14347,0,1,1 +1774047784.628470,0.45,4,3992.50,47.86,1789.30,1873.83,0.00,0.000000,0.000000,11,0,0.000025,0.000061,13738915,8779756,0,0,14350,0,1,1 +1774047789.628553,0.55,4,3992.50,47.87,1789.09,1874.05,0.00,0.000000,0.000000,11,0,0.002304,0.001170,13738967,8779796,0,0,14352,0,1,1 +1774047794.628426,0.45,4,3992.50,47.65,1797.58,1865.55,0.00,20462.065903,26525.539703,1969099,480741,0.000033,0.000038,13738970,8779800,0,0,14355,0,1,1 +1774047799.628911,0.45,4,3992.50,47.65,1797.36,1865.77,0.00,3518095778334.941406,3518095772272.209473,11,0,0.000000,0.000020,13738970,8779802,0,0,14357,0,1,1 +1774047804.628903,20.89,4,3992.50,53.90,1558.68,2110.41,0.00,1.495803,0.022070,226,83,9.620160,0.014485,13740214,8780708,0,0,14360,0,1,1 +1774047809.625410,32.80,4,3992.50,53.82,1568.14,2107.03,0.00,3520896872227.673828,3520896872229.148926,11,0,120.455571,0.034225,13752747,8783303,0,0,14362,0,1,1 +1774047814.626115,28.63,4,3992.50,53.86,1570.42,2108.75,0.00,20458.661499,26521.274311,1969099,480883,121.973266,0.074338,13765613,8789007,0,0,14365,0,1,1 +1774047819.625184,28.25,4,3992.50,53.76,1574.43,2104.86,0.00,3519092356850.323242,3519092350784.252441,226,83,120.221923,0.114099,13778444,8797884,0,0,14367,0,1,1 +1774047824.628743,28.35,4,3992.50,53.72,1576.22,2103.20,0.00,3515934301041.639648,3515934301043.062500,70,0,119.513955,0.111773,13791296,8806587,0,0,14370,0,1,1 +1774047829.628876,28.32,4,3992.50,53.73,1575.75,2103.67,0.00,0.000000,0.000000,70,0,119.394020,0.106482,13804125,8814907,0,0,14372,0,1,1 +1774047834.624680,28.82,4,3992.50,53.74,1575.27,2104.18,0.00,1.960434,0.000195,238,2,119.701983,0.109307,13816987,8823428,0,0,14375,0,1,1 +1774047839.629430,28.51,4,3992.50,53.78,1573.67,2105.68,0.00,20436.060613,26500.030061,1968336,480901,120.083552,0.112507,13829852,8832190,0,0,14377,0,1,1 +1774047844.628708,27.91,4,3992.50,53.79,1573.43,2105.93,0.00,3518945308644.977051,3518945302576.330078,70,0,118.414754,0.114922,13842536,8841114,0,0,14380,0,1,1 +1774047849.626556,3.92,4,3992.50,49.05,1759.16,1920.32,0.00,20470.444784,26536.744898,1969114,481016,56.319061,0.053134,13848606,8845189,0,0,14382,0,1,1 +1774047854.628876,6.77,4,3992.50,48.85,1766.82,1912.64,0.00,3516804784001.410156,3516804777940.407227,199,0,6.034692,0.027212,13850530,8846635,0,0,14385,0,1,1 +1774047859.627849,17.19,4,3992.50,48.71,1772.52,1906.93,0.00,3519160704686.363770,0.000000,70,0,20.144762,0.098482,13857440,8851742,0,0,14387,0,1,1 +1774047864.629194,9.69,4,3992.50,47.51,1819.29,1860.15,0.00,20452.064619,26518.596693,1968351,481857,14.081105,0.061175,13862078,8855160,0,0,14390,0,1,1 +1774047869.628632,0.40,4,3992.50,47.53,1818.61,1860.84,0.00,3518833116971.402344,3518833110902.604492,11,0,0.001589,0.000786,13862108,8855180,0,0,14392,0,1,1 +1774047874.628855,12.61,4,3992.50,47.93,1799.80,1876.66,0.00,1.495734,0.022069,226,83,0.028610,51.273702,13864101,8860669,0,0,14395,0,1,1 +1774047879.629378,28.74,4,3992.50,48.05,1786.77,1881.34,0.00,0.000000,0.000000,226,83,0.022949,120.156475,13865742,8873165,0,0,14397,0,1,1 +1774047884.628545,10.19,4,3992.50,47.56,1803.62,1862.10,0.00,20459.532111,26721.966109,1968351,483294,0.017209,33.660300,13866738,8876818,0,0,14400,0,1,1 +1774047889.628718,14.25,4,3992.50,49.34,1733.97,1931.73,0.00,3518315319614.222168,3518315313352.513184,238,2,40.062843,0.025729,13871141,8878554,0,0,14402,0,1,1 +1774047894.629399,0.95,4,3992.50,48.65,1761.09,1904.61,0.00,3517958064400.003418,3517958064402.011719,11,0,0.002602,0.003439,13871198,8878611,0,0,14405,0,1,1 +1774047899.628473,0.50,4,3992.50,48.30,1774.64,1891.04,0.00,0.050009,0.000000,70,0,0.001623,0.000825,13871231,8878634,0,0,14407,0,1,1 +1774047904.629234,0.40,4,3992.50,48.29,1774.90,1890.82,0.00,0.126934,0.000000,199,0,0.001589,0.000809,13871261,8878656,0,0,14410,0,1,1 +1774047909.629384,0.45,4,3992.50,48.29,1775.02,1890.71,0.00,0.000000,0.000000,199,0,0.002352,0.002427,13871300,8878688,0,0,14412,0,1,1 +1774047914.629334,0.50,4,3992.50,48.29,1775.03,1890.69,0.00,1.831854,0.000195,238,2,0.001589,0.000796,13871330,8878709,0,0,14415,0,1,1 +1774047919.625271,0.60,4,3992.50,48.29,1775.05,1890.67,0.00,3521299286432.520996,3521299286434.480957,70,0,0.001616,0.000818,13871362,8878731,0,0,14417,0,1,1 +1774047924.628385,0.45,4,3992.50,48.29,1775.13,1890.58,0.00,0.000000,0.000000,70,0,0.001412,0.000650,13871389,8878750,0,0,14420,0,1,1 +1774047929.628924,0.35,4,3992.50,48.29,1775.14,1890.57,0.00,1.445645,0.022068,226,83,0.001682,0.000849,13871425,8878775,0,0,14422,0,1,1 +1774047934.629038,0.45,4,3992.50,48.29,1775.16,1890.55,0.00,0.000000,0.000000,226,83,0.001651,0.000859,13871459,8878801,0,0,14425,0,1,1 +1774047939.624754,0.40,4,3992.50,48.29,1775.18,1890.55,0.00,3521454258483.692871,3521454258485.167969,11,0,0.001665,0.000827,13871494,8878824,0,0,14427,0,1,1 +1774047944.625712,0.55,4,3992.50,48.28,1775.34,1890.38,0.00,20473.397044,26727.015375,1968468,483940,0.001597,0.000804,13871525,8878846,0,0,14430,0,1,1 +1774047949.629490,0.35,4,3992.50,48.28,1775.45,1890.28,0.00,0.000000,0.051816,1968468,484003,0.001588,0.000786,13871555,8878866,0,0,14432,0,1,1 +1774047954.628756,0.50,4,3992.50,48.26,1776.21,1889.52,0.00,3518954286773.877441,3518954280518.090332,11,0,0.002614,0.002970,13871613,8878931,0,0,14435,0,1,1 +1774047959.624602,0.40,4,3992.50,48.24,1776.93,1888.80,0.00,0.050042,0.000000,70,0,0.000971,0.000549,13871631,8878944,0,0,14437,0,1,1 +1774047964.629028,10.99,4,3992.50,48.16,1777.42,1885.66,0.00,0.126841,0.000000,199,0,0.020623,40.026525,13873017,8883317,0,0,14440,0,1,1 +1774047969.629451,0.45,4,3992.50,47.98,1784.41,1878.68,0.00,20479.475079,26768.126803,1969231,484447,0.000253,0.000639,13873024,8883331,0,0,14442,0,1,1 +1774047974.624492,0.40,4,3992.50,47.92,1786.75,1876.34,0.00,3521930524372.261230,3521930518077.010742,11,0,0.000000,0.000674,13873024,8883338,0,0,14445,0,1,1 +1774047979.628012,0.45,4,3992.50,47.94,1786.01,1877.07,0.00,20466.973452,26751.590293,1969231,484482,0.000000,0.000020,13873024,8883340,0,0,14447,0,1,1 +1774047984.629093,0.35,4,3992.50,47.93,1786.71,1876.38,0.00,0.000000,0.003124,1969231,484485,0.000000,0.000030,13873024,8883343,0,0,14450,0,1,1 +1774047989.628923,0.45,4,3992.50,47.91,1787.32,1875.76,0.00,0.000000,0.001563,1969231,484487,0.000000,0.000020,13873024,8883345,0,0,14452,0,1,1 +1774047994.629266,0.55,4,3992.50,47.93,1786.59,1876.50,0.00,3518196090647.568359,3518196084356.944336,238,2,0.000000,0.000030,13873024,8883348,0,0,14455,0,1,1 +1774047999.624415,0.45,4,3992.50,47.93,1786.59,1876.49,0.00,3521854264737.314453,3521854264739.325195,11,0,0.000113,0.000132,13873032,8883358,0,0,14457,0,1,1 +1774048004.625407,0.35,4,3992.50,47.95,1785.86,1877.23,0.00,1.495504,0.022066,226,83,0.000058,0.000100,13873037,8883366,0,0,14460,0,1,1 +1774048009.628511,0.45,4,3992.50,47.95,1785.61,1877.48,0.00,0.000000,0.000000,226,83,0.000175,0.000183,13873049,8883380,0,0,14462,0,1,1 +1774048014.629009,0.40,4,3992.50,47.95,1785.62,1877.47,0.00,3518086781404.434570,3518086781405.908203,11,0,0.000031,0.000055,13873051,8883385,0,0,14465,0,1,1 +1774048019.629415,0.45,4,3992.50,47.95,1785.62,1877.47,0.00,0.000000,0.000000,11,0,0.000000,0.000020,13873051,8883387,0,0,14467,0,1,1 +1774048024.629317,0.45,4,3992.50,47.96,1785.37,1877.71,0.00,1.495830,0.022071,226,83,0.000000,0.000030,13873051,8883390,0,0,14470,0,1,1 +1774048029.631373,19.33,4,3992.50,54.10,1552.16,2118.10,0.00,0.000000,0.000000,226,83,28.798483,0.020366,13876147,8884743,0,0,14472,0,1,1 +1774048034.628913,33.67,4,3992.50,54.06,1560.02,2116.54,0.00,3520168653116.100586,3520168653117.575195,11,0,123.266394,0.025925,13888752,8886668,0,0,14475,0,1,1 +1774048039.624568,28.56,4,3992.50,54.26,1554.99,2124.27,0.00,0.050043,0.000000,70,0,120.875462,0.023696,13901244,8888373,0,0,14477,0,1,1 +1774048044.625486,28.02,4,3992.50,54.71,1537.07,2142.20,0.00,1.958429,0.000195,238,2,120.142943,0.026181,13913504,8890379,0,0,14480,0,1,1 +1774048049.628520,28.28,4,3992.50,54.10,1561.23,2118.04,0.00,3516303503256.722656,3516303503258.729980,11,0,120.092915,0.025333,13925757,8892332,0,0,14482,0,1,1 +1774048054.628705,28.41,4,3992.50,53.91,1568.71,2110.53,0.00,0.000000,0.000000,11,0,120.161296,0.023849,13938033,8894141,0,0,14485,0,1,1 +1774048059.628464,27.76,4,3992.50,54.18,1558.04,2121.14,0.00,0.000000,0.000000,11,0,119.970581,0.018208,13950346,8895559,0,0,14487,0,1,1 +1774048064.627946,27.61,4,3992.50,54.11,1560.89,2118.45,0.00,0.050005,0.000000,70,0,119.177152,0.019090,13962539,8897015,0,0,14490,0,1,1 +1774048069.628534,24.31,4,3992.50,54.05,1562.96,2116.36,0.00,1.445631,0.022068,226,83,119.356685,0.044308,13974657,8900449,0,0,14492,0,1,1 +1774048074.624701,1.10,4,3992.50,47.82,1807.01,1872.30,0.00,3521136550894.122070,3521136550895.597168,11,0,33.679221,0.014572,13978178,8901476,0,0,14495,0,1,1 +1774048079.626689,8.07,4,3992.50,47.96,1801.60,1877.73,0.00,0.176883,0.000000,199,0,6.050698,0.035661,13980407,8903162,0,0,14497,0,1,1 +1774048084.628386,21.67,4,3992.50,48.72,1771.74,1907.54,0.00,20470.335162,26764.525447,1968479,485745,30.362112,0.130313,13990148,8910334,0,0,14500,0,1,1 +1774048089.629249,2.66,4,3992.50,47.74,1810.07,1869.23,0.00,4.064045,0.269387,1969242,485937,3.835326,0.021821,13991557,8911408,0,0,14502,0,1,1 +1774048094.629236,1.20,4,3992.50,47.77,1808.83,1870.45,0.00,3518445930332.435059,3518445924040.065430,11,0,0.004036,0.004207,13991644,8911496,0,0,14505,0,1,1 +1774048099.628198,0.40,4,3992.50,47.78,1808.61,1870.68,0.00,20485.776345,26779.803646,1969242,486312,0.001590,0.000786,13991674,8911516,0,0,14507,0,1,1 +1774048104.629070,0.45,4,3992.50,47.80,1807.65,1871.63,0.00,3517823992280.370117,3517823985988.569336,199,0,0.001589,0.001440,13991704,8911541,0,0,14510,0,1,1 +1774048109.628698,0.40,4,3992.50,47.80,1807.66,1871.62,0.00,20482.874248,26776.368238,1969244,486329,0.001589,0.000786,13991734,8911561,0,0,14512,0,1,1 +1774048114.628614,0.50,4,3992.50,47.80,1807.68,1871.60,0.00,3518495944470.643555,3518495938176.215332,226,83,0.001589,0.000796,13991764,8911582,0,0,14515,0,1,1 +1774048119.624520,0.40,4,3992.50,47.80,1807.71,1871.59,0.00,3521320654976.963867,3521320654978.261719,199,0,0.001666,0.000880,13991800,8911608,0,0,14517,0,1,1 +1774048124.625997,0.45,4,3992.50,47.80,1807.72,1871.57,0.00,1.831295,0.000195,238,2,0.001589,0.000796,13991830,8911629,0,0,14520,0,1,1 +1774048129.625314,0.45,4,3992.50,47.80,1807.74,1871.56,0.00,20482.314474,26778.211676,1969244,486451,0.001589,0.000786,13991860,8911649,0,0,14522,0,1,1 +1774048134.629036,0.60,4,3992.50,47.80,1807.75,1871.55,0.00,3515819861619.592285,3515819855331.244141,11,0,0.001719,0.000933,13991899,8911680,0,0,14525,0,1,1 +1774048139.629246,0.50,4,3992.50,47.80,1807.76,1871.54,0.00,20480.671602,26773.482979,1969244,486501,0.001747,0.000885,13991940,8911708,0,0,14527,0,1,1 +1774048144.624625,0.40,4,3992.50,47.82,1807.04,1872.27,0.00,3521691609680.704590,3521691603379.798340,238,2,0.001591,0.000797,13991970,8911729,0,0,14530,0,1,1 +1774048149.626607,0.50,4,3992.50,47.82,1807.04,1872.26,0.00,3517043188719.050293,3517043188721.058105,11,0,0.001589,0.000786,13992000,8911749,0,0,14532,0,1,1 +1774048154.628832,0.40,4,3992.50,47.82,1807.06,1872.24,0.00,20472.417407,26762.772382,1969244,486570,0.001588,0.000796,13992030,8911770,0,0,14535,0,1,1 +1774048159.625978,0.65,4,3992.50,47.82,1807.07,1872.24,0.00,3520446485347.460449,3520446479048.702637,238,2,0.001590,0.000787,13992060,8911790,0,0,14537,0,1,1 +1774048164.628576,0.45,4,3992.50,47.82,1807.07,1872.23,0.00,3516610621542.032227,3516610621543.989746,70,0,0.001588,0.000796,13992090,8911811,0,0,14540,0,1,1 +1774048169.629270,0.40,4,3992.50,47.82,1807.09,1872.21,0.00,3517948831043.859863,0.000000,11,0,0.001589,0.001430,13992120,8911835,0,0,14542,0,1,1 +1774048174.624540,0.40,4,3992.50,47.82,1807.10,1872.21,0.00,0.177121,0.000000,199,0,0.001591,0.000797,13992150,8911856,0,0,14545,0,1,1 +1774048179.625873,0.40,4,3992.50,47.82,1807.10,1872.19,0.00,20475.893931,26767.651365,1969244,486695,0.001597,0.000794,13992181,8911877,0,0,14547,0,1,1 +1774048184.628993,7.33,4,3992.50,48.32,1785.81,1891.98,0.00,3516242641676.132812,0.032402,1968481,486678,0.024104,30.028093,13993784,8915194,0,0,14550,0,1,1 +1774048189.624783,29.18,4,3992.50,48.03,1788.98,1880.46,0.00,4.068172,117.857635,1969244,487463,0.058074,121.271712,13998280,8927717,0,0,14552,0,1,1 +1774048194.628458,13.78,4,3992.50,47.97,1785.37,1878.19,0.00,3515852975288.992188,3515852968882.652832,11,0,0.022897,53.838677,14000007,8933363,0,0,14555,0,1,1 +1774048199.624587,13.42,4,3992.50,48.05,1784.30,1881.41,0.00,2.010346,0.000195,238,2,40.092567,0.018287,14004291,8934597,0,0,14557,0,1,1 +1774048204.629392,9.58,4,3992.50,47.92,1787.40,1876.00,0.00,3515059292440.588867,0.021854,226,83,0.022992,35.822250,14005787,8938515,0,0,14560,0,1,1 +1774048209.629091,2.35,4,3992.50,47.57,1800.59,1862.43,0.00,3518648492464.001465,3518648492465.475586,11,0,0.003106,4.210318,14005929,8939045,0,0,14562,0,1,1 +1774048214.624606,0.40,4,3992.50,47.41,1806.79,1856.23,0.00,1.497144,0.022090,226,83,0.000000,0.000030,14005929,8939048,0,0,14565,0,1,1 +1774048219.624570,0.65,4,3992.50,47.42,1806.32,1856.69,0.00,3518462189963.252930,3518462189964.727051,11,0,0.000000,0.000020,14005929,8939050,0,0,14567,0,1,1 +1774048224.627112,0.40,4,3992.50,47.43,1806.07,1856.94,0.00,0.000000,0.000000,11,0,0.000000,0.000030,14005929,8939053,0,0,14570,0,1,1 +1774048229.625415,0.40,4,3992.50,47.46,1804.84,1858.17,0.00,0.000000,0.000000,11,0,0.000050,0.000082,14005933,8939059,0,0,14572,0,1,1 +1774048234.628801,0.45,4,3992.50,47.46,1804.84,1858.17,0.00,0.000000,0.000000,11,0,0.000008,0.000681,14005934,8939067,0,0,14575,0,1,1 +1774048239.625316,0.40,4,3992.50,47.48,1804.11,1858.90,0.00,0.050035,0.000000,70,0,0.000000,0.000020,14005934,8939069,0,0,14577,0,1,1 +1774048244.629383,0.35,4,3992.50,47.48,1804.11,1858.90,0.00,1.957197,0.000195,238,2,0.000056,0.000086,14005938,8939076,0,0,14580,0,1,1 +1774048249.628735,0.45,4,3992.50,47.48,1804.11,1858.90,0.00,3518893505209.745605,3518893505211.578125,199,0,0.000126,0.000175,14005948,8939088,0,0,14582,0,1,1 +1774048254.626001,0.50,4,3992.50,47.38,1807.92,1855.09,0.00,3520361822374.571777,0.000000,11,0,0.001102,0.002280,14005980,8939141,0,0,14585,0,1,1 +1774048259.624645,0.45,4,3992.50,47.41,1806.70,1856.32,0.00,0.177001,0.000000,199,0,0.000000,0.000020,14005980,8939143,0,0,14587,0,1,1 +1774048264.624614,0.40,4,3992.50,47.41,1806.70,1856.32,0.00,20496.808526,27020.502894,1968616,488476,0.000000,0.000030,14005980,8939146,0,0,14590,0,1,1 +1774048269.624653,24.81,4,3992.50,54.13,1550.84,2119.41,0.00,3518409865824.699707,3518409859299.266113,238,2,46.067667,0.021994,14010824,8940670,0,0,14592,0,1,1 +1774048274.629067,31.66,4,3992.50,54.09,1559.03,2117.59,0.00,3515333647357.446289,0.021856,226,83,118.257409,0.032687,14022745,8943155,0,0,14595,0,1,1 +1774048279.624953,28.53,4,3992.50,54.01,1563.49,2114.62,0.00,3521334460052.469238,3521334460053.944336,11,0,120.065024,0.019277,14035008,8944571,0,0,14597,0,1,1 +1774048284.628580,27.90,4,3992.50,54.12,1559.34,2118.86,0.00,0.000000,0.000000,11,0,118.674847,0.020292,14047029,8946156,0,0,14600,0,1,1 +1774048289.627540,27.97,4,3992.50,54.13,1558.74,2119.39,0.00,0.050010,0.000000,70,0,119.587673,0.016369,14059119,8947399,0,0,14602,0,1,1 +1774048294.628952,27.84,4,3992.50,54.04,1562.21,2115.78,0.00,20491.018006,27012.880039,1968616,488695,118.926746,0.016321,14071018,8948621,0,0,14605,0,1,1 +1774048299.629058,27.92,4,3992.50,53.93,1566.65,2111.43,0.00,3518362219125.675293,3518362212600.687012,226,83,119.361077,0.024694,14082989,8950543,0,0,14607,0,1,1 +1774048304.629051,27.76,4,3992.50,54.08,1560.93,2117.30,0.00,0.000000,0.000000,226,83,119.765143,0.026879,14095076,8952555,0,0,14610,0,1,1 +1774048309.628574,22.25,4,3992.50,54.32,1551.34,2126.84,0.00,20497.316184,27023.249943,1968617,488733,118.573346,0.023143,14107007,8954340,0,0,14612,0,1,1 +1774048314.629057,1.20,4,3992.50,48.38,1784.12,1894.00,0.00,3518097708140.757812,3518097701617.550293,11,0,26.038839,0.012474,14109732,8955237,0,0,14615,0,1,1 +1774048319.624494,9.19,4,3992.50,48.10,1794.73,1883.40,0.00,0.050046,0.000000,70,0,6.058495,0.035614,14111943,8956835,0,0,14617,0,1,1 +1774048324.628562,14.87,4,3992.50,48.81,1767.05,1911.12,0.00,3515577066864.131836,0.000000,11,0,20.104769,0.087507,14118367,8961608,0,0,14620,0,1,1 +1774048329.629494,9.50,4,3992.50,47.60,1814.54,1863.62,0.00,0.000000,0.000000,11,0,14.081537,0.060129,14122877,8964941,0,0,14622,0,1,1 +1774048334.628846,0.95,4,3992.50,47.62,1813.56,1864.57,0.00,20499.650517,27025.549842,1968628,490169,0.001687,0.001956,14122912,8964979,0,0,14625,0,1,1 +1774048339.624597,0.40,4,3992.50,47.62,1813.59,1864.56,0.00,3521429915744.578613,3521429909213.797852,199,0,0.001591,0.000787,14122942,8964999,0,0,14627,0,1,1 +1774048344.624602,0.40,4,3992.50,47.65,1812.62,1865.53,0.00,1.831834,0.000195,238,2,0.001589,0.000796,14122972,8965020,0,0,14630,0,1,1 +1774048349.625229,1.45,4,3992.50,47.65,1812.63,1865.52,0.00,3517996362424.622559,3517996362426.631348,11,0,0.002059,0.002069,14123017,8965064,0,0,14632,0,1,1 +1774048354.626505,0.60,4,3992.50,47.65,1812.64,1865.52,0.00,20491.763146,27015.393129,1968628,490326,0.002720,0.003955,14123081,8965145,0,0,14635,0,1,1 +1774048359.628733,0.45,4,3992.50,47.65,1812.42,1865.74,0.00,3516870449329.421387,3516870442806.854980,199,0,0.002629,0.003475,14123149,8965223,0,0,14637,0,1,1 +1774048364.629024,0.65,4,3992.50,47.65,1812.43,1865.73,0.00,3518232140982.625000,0.000000,70,0,0.002505,0.003974,14123207,8965296,0,0,14640,0,1,1 +1774048369.624523,0.60,4,3992.50,47.70,1810.72,1867.44,0.00,3521607334450.049316,0.000000,11,0,0.002744,0.003966,14123273,8965377,0,0,14642,0,1,1 +1774048374.624764,0.50,4,3992.50,47.70,1810.73,1867.43,0.00,0.000000,0.000000,11,0,0.002733,0.003964,14123338,8965458,0,0,14645,0,1,1 +1774048379.628697,0.65,4,3992.50,47.70,1810.73,1867.42,0.00,2.007210,0.000195,238,2,0.003727,0.004660,14123410,8965544,0,0,14647,0,1,1 +1774048384.626939,0.45,4,3992.50,47.70,1810.74,1867.41,0.00,0.000000,0.000000,238,2,0.002735,0.004002,14123475,8965626,0,0,14650,0,1,1 +1774048389.629378,0.85,4,3992.50,47.70,1810.78,1867.38,0.00,3516721738653.583984,3516721738655.541504,70,0,0.005549,0.005882,14123585,8965734,0,0,14652,0,1,1 +1774048394.628956,0.75,4,3992.50,47.70,1810.80,1867.37,0.00,1.958955,0.000195,238,2,0.002759,0.003965,14123652,8965815,0,0,14655,0,1,1 +1774048399.626412,0.55,4,3992.50,47.69,1810.79,1867.36,0.00,20509.483119,27036.455076,1969391,490747,0.002722,0.003956,14123716,8965895,0,0,14657,0,1,1 +1774048404.628874,0.65,4,3992.50,47.69,1810.82,1867.35,0.00,3516706137615.111328,3516706131094.668945,238,2,0.002503,0.003342,14123774,8965965,0,0,14660,0,1,1 +1774048409.625003,0.60,4,3992.50,47.69,1810.83,1867.34,0.00,20510.863396,27043.664254,1968628,490715,0.002736,0.003957,14123839,8966045,0,0,14662,0,1,1 +1774048414.629079,1.05,4,3992.50,47.69,1810.84,1867.32,0.00,0.000000,0.039519,1968628,490759,0.002739,0.003969,14123905,8966127,0,0,14665,0,1,1 +1774048419.628723,0.50,4,3992.50,47.69,1810.85,1867.30,0.00,3518687629572.773926,3518687623044.525879,238,2,0.002734,0.003967,14123970,8966208,0,0,14667,0,1,1 +1774048424.629008,4.46,4,3992.50,48.28,1787.28,1890.32,0.00,20497.881996,27021.303294,1969391,490898,0.018168,16.629365,14125154,8968163,0,0,14670,0,1,1 +1774048429.628693,29.24,4,3992.50,48.24,1780.49,1888.84,0.00,3518659163700.710449,3518659157177.040039,226,83,0.050197,118.774512,14128992,8980342,0,0,14672,0,1,1 +1774048434.628383,17.96,4,3992.50,47.84,1791.49,1872.86,0.00,3518655468969.428223,3518655468970.725586,199,0,0.035936,69.707860,14131662,8987644,0,0,14675,0,1,1 +1774048439.626411,15.67,4,3992.50,52.81,1597.92,2067.49,0.00,1.319368,0.022079,226,83,40.077418,0.021269,14136010,8988995,0,0,14677,0,1,1 +1774048444.624511,3.06,4,3992.50,48.68,1759.32,1906.09,0.00,0.513183,3519774612715.087402,238,2,0.005034,0.005067,14136123,8989120,0,0,14680,0,1,1 +1774048449.625269,11.08,4,3992.50,47.93,1786.16,1876.69,0.00,3517904147198.043945,3517904147200.002441,70,0,0.022415,40.059082,14137630,8993512,0,0,14682,0,1,1 +1774048454.625727,0.65,4,3992.50,47.96,1785.18,1877.68,0.00,0.126941,0.000000,199,0,0.002211,0.005028,14137688,8993608,0,0,14685,0,1,1 +1774048459.629258,0.65,4,3992.50,47.90,1787.63,1875.23,0.00,0.000000,0.000000,199,0,0.001152,0.003194,14137724,8993671,0,0,14687,0,1,1 +1774048464.628870,0.55,4,3992.50,47.74,1793.73,1869.13,0.00,20517.792873,27268.277373,1968763,492509,0.001144,0.003198,14137759,8993734,0,0,14690,0,1,1 +1774048469.625387,0.55,4,3992.50,47.79,1791.77,1871.07,0.00,3520889742985.232910,3520889736230.745605,11,0,0.001170,0.003209,14137796,8993797,0,0,14692,0,1,1 +1774048474.629021,0.60,4,3992.50,47.60,1799.07,1863.79,0.00,1.494714,0.022054,226,83,0.000915,0.002575,14137824,8993849,0,0,14695,0,1,1 +1774048479.625170,0.55,4,3992.50,47.63,1797.84,1865.01,0.00,20530.689036,27287.242299,1968763,492519,0.001145,0.003190,14137859,8993911,0,0,14697,0,1,1 +1774048484.628700,0.60,4,3992.50,47.44,1805.49,1857.37,0.00,3515955266404.796387,3515955259657.674316,238,2,0.001131,0.003196,14137893,8993974,0,0,14700,0,1,1 +1774048489.626595,0.55,4,3992.50,47.46,1804.75,1858.10,0.00,3519918968755.433594,0.021884,226,83,0.001271,0.003345,14137938,8994046,0,0,14702,0,1,1 +1774048494.626446,0.55,4,3992.50,47.46,1804.75,1858.10,0.00,20519.555989,27269.078430,1969526,492624,0.001170,0.003229,14137975,8994111,0,0,14705,0,1,1 +1774048499.624525,0.55,4,3992.50,47.40,1806.85,1856.00,0.00,0.000000,0.019539,1969526,492629,0.001300,0.003959,14138020,8994187,0,0,14707,0,1,1 +1774048504.624645,0.85,4,3992.50,47.43,1805.67,1857.19,0.00,3518352350332.588379,3518352343584.834473,70,0,0.001152,0.003206,14138056,8994251,0,0,14710,0,1,1 +1774048509.625724,0.70,4,3992.50,47.43,1805.67,1857.18,0.00,0.000000,0.000000,70,0,0.000915,0.002554,14138084,8994301,0,0,14712,0,1,1 +1774048514.626642,0.75,4,3992.50,47.24,1813.28,1849.58,0.00,1.958430,0.000195,238,2,0.001144,0.003197,14138119,8994364,0,0,14715,0,1,1 +1774048519.624538,24.42,4,3992.50,53.90,1560.62,2110.25,0.00,3519917805283.315430,3519917805285.324707,11,0,41.882582,0.027401,14142608,8996083,0,0,14717,0,1,1 +1774048524.628716,33.45,4,3992.50,53.98,1564.08,2113.30,0.00,20499.249103,27245.757685,1968764,492806,124.068195,0.032369,14155300,8998418,0,0,14720,0,1,1 +1774048529.628812,27.91,4,3992.50,54.11,1560.32,2118.52,0.00,0.000000,0.006055,1968764,492816,121.365541,0.023267,14167727,9000093,0,0,14722,0,1,1 +1774048534.628593,28.14,4,3992.50,54.10,1560.68,2118.30,0.00,3518591173879.804688,3518591167127.358398,11,0,120.768763,0.025744,14179898,9001986,0,0,14725,0,1,1 +1774048539.624593,28.30,4,3992.50,53.94,1567.03,2111.95,0.00,2.010398,0.000195,238,2,120.059498,0.019922,14191944,9003337,0,0,14727,0,1,1 +1774048544.628470,27.97,4,3992.50,54.32,1552.22,2126.67,0.00,20498.468263,27247.453270,1968764,492841,119.469336,0.019325,14204002,9004759,0,0,14730,0,1,1 +1774048549.624598,28.40,4,3992.50,53.99,1565.28,2113.65,0.00,3521164600777.063965,3521164594018.145020,226,83,119.259595,0.035335,14216210,9007364,0,0,14732,0,1,1 +1774048554.629157,28.45,4,3992.50,53.89,1568.94,2110.04,0.00,20496.190723,27243.891048,1968764,492896,120.059045,0.028696,14228606,9009295,0,0,14735,0,1,1 +1774048559.628522,21.53,4,3992.50,54.26,1554.71,2124.32,0.00,0.000781,0.005274,1968765,492907,119.782481,0.029403,14241016,9011420,0,0,14737,0,1,1 +1774048564.629028,1.15,4,3992.50,47.98,1800.44,1878.58,0.00,3518081044579.464355,3518081037827.587891,199,0,18.628575,0.007182,14243041,9011726,0,0,14740,0,1,1 +1774048569.628385,4.56,4,3992.50,47.98,1800.63,1878.38,0.00,0.000000,0.000000,199,0,0.015489,0.008537,14243313,9011942,0,0,14742,0,1,1 +1774048574.624599,27.44,4,3992.50,48.83,1767.30,1911.70,0.00,3521103098009.990723,0.000000,70,0,34.221340,0.145834,14253982,9019907,0,0,14745,0,1,1 +1774048579.628244,5.12,4,3992.50,48.57,1777.26,1901.73,0.00,20501.513732,27249.787588,1968775,494110,6.044210,0.032747,14256153,9021490,0,0,14747,0,1,1 +1774048584.628583,7.48,4,3992.50,48.22,1789.90,1887.93,0.00,4.064471,0.034373,1969538,494244,0.022544,27.644732,14257597,9024564,0,0,14750,0,1,1 +1774048589.629042,28.59,4,3992.50,48.45,1772.67,1896.90,0.00,3518114396442.888184,3518114389692.919922,226,83,0.025626,118.159550,14259397,9037010,0,0,14752,0,1,1 +1774048594.626391,14.84,4,3992.50,47.91,1789.44,1875.92,0.00,0.513260,3520303328013.904785,238,2,0.025951,59.317291,14261260,9043175,0,0,14755,0,1,1 +1774048599.624560,14.41,4,3992.50,49.26,1736.84,1928.64,0.00,3519726387512.539062,3519726387514.498047,70,0,40.081148,0.029411,14265721,9044907,0,0,14757,0,1,1 +1774048604.624415,1.55,4,3992.50,48.51,1766.26,1899.25,0.00,3518538777838.341797,0.000000,11,0,0.003871,0.003481,14265801,9044985,0,0,14760,0,1,1 +1774048609.627205,0.85,4,3992.50,48.04,1784.47,1881.01,0.00,0.049972,0.000000,70,0,0.003508,0.006278,14265887,9045095,0,0,14762,0,1,1 +1774048614.628493,0.50,4,3992.50,47.78,1794.84,1870.66,0.00,1.958285,0.000195,238,2,0.002758,0.003994,14265954,9045178,0,0,14765,0,1,1 +1774048619.625589,0.60,4,3992.50,47.79,1794.37,1871.13,0.00,3520482022424.091309,3520482022425.924316,199,0,0.003380,0.004879,14266020,9045260,0,0,14767,0,1,1 +1774048624.624860,0.60,4,3992.50,47.81,1793.67,1871.83,0.00,0.000000,0.000000,199,0,0.002721,0.003977,14266084,9045342,0,0,14770,0,1,1 +1774048629.629416,0.75,4,3992.50,47.82,1793.22,1872.28,0.00,1.317647,0.022050,226,83,0.002752,0.004633,14266151,9045429,0,0,14772,0,1,1 +1774048634.628709,0.60,4,3992.50,47.82,1793.23,1872.27,0.00,3518934275238.966309,3518934275240.439941,11,0,0.001899,0.003094,14266198,9045491,0,0,14775,0,1,1 +1774048639.624735,0.60,4,3992.50,47.82,1793.24,1872.26,0.00,0.177094,0.000000,199,0,0.002560,0.003811,14266260,9045569,0,0,14777,0,1,1 +1774048644.628570,0.55,4,3992.50,47.82,1793.25,1872.25,0.00,3515740835356.384277,0.000000,11,0,0.002812,0.004037,14266330,9045656,0,0,14780,0,1,1 +1774048649.624549,1.45,4,3992.50,47.82,1793.27,1872.23,0.00,20552.414108,27498.011701,1968886,496189,0.002736,0.003957,14266395,9045736,0,0,14782,0,1,1 +1774048654.629128,0.50,4,3992.50,47.82,1793.28,1872.22,0.00,3515218540360.686523,3515218533425.015625,238,2,0.002806,0.004001,14266465,9045820,0,0,14785,0,1,1 +1774048659.629277,0.50,4,3992.50,47.82,1793.30,1872.21,0.00,3518332243660.700195,3518332243662.708984,11,0,0.002734,0.003954,14266530,9045900,0,0,14787,0,1,1 +1774048664.628509,0.55,4,3992.50,47.82,1793.31,1872.19,0.00,20543.107106,27480.234958,1969649,496362,0.002734,0.003965,14266595,9045981,0,0,14790,0,1,1 +1774048669.624598,0.60,4,3992.50,47.82,1793.33,1872.17,0.00,3521191736355.604004,3521191729413.934082,199,0,0.002515,0.003331,14266654,9046050,0,0,14792,0,1,1 +1774048674.624595,0.55,4,3992.50,47.82,1793.34,1872.16,0.00,0.000000,0.000000,199,0,0.002734,0.003964,14266719,9046131,0,0,14795,0,1,1 +1774048679.624607,10.89,4,3992.50,47.52,1802.24,1860.61,0.00,3518428497254.063477,0.000000,11,0,0.022173,40.063331,14268184,9050543,0,0,14797,0,1,1 +1774048684.628941,0.90,4,3992.50,47.53,1802.01,1860.84,0.00,0.049957,0.000000,70,0,0.003215,0.006753,14268257,9050662,0,0,14800,0,1,1 +1774048689.625145,0.50,4,3992.50,47.56,1800.78,1862.07,0.00,1.960277,0.000195,238,2,0.002210,0.003592,14268314,9050737,0,0,14802,0,1,1 +1774048694.629166,0.80,4,3992.50,47.52,1802.20,1860.64,0.00,20521.442778,27492.162048,1969649,496801,0.002692,0.004733,14268367,9050807,0,0,14805,0,1,1 +1774048699.628829,0.60,4,3992.50,47.55,1800.98,1861.87,0.00,3518673775523.273438,3518673768548.312012,199,0,0.001144,0.003188,14268402,9050869,0,0,14807,0,1,1 +1774048704.629302,0.50,4,3992.50,47.55,1800.98,1861.86,0.00,3518104588277.482422,0.000000,11,0,0.001144,0.003198,14268437,9050932,0,0,14810,0,1,1 +1774048709.627946,0.50,4,3992.50,47.55,1800.98,1861.86,0.00,0.000000,0.000000,11,0,0.001153,0.003197,14268473,9050995,0,0,14812,0,1,1 +1774048714.628725,0.55,4,3992.50,47.55,1801.00,1861.85,0.00,20532.689892,27512.043896,1968886,496786,0.001144,0.003197,14268508,9051058,0,0,14815,0,1,1 +1774048719.625102,0.45,4,3992.50,47.57,1800.51,1862.34,0.00,3520988420504.956055,3520988413517.979004,226,83,0.001170,0.003221,14268545,9051122,0,0,14817,0,1,1 +1774048724.627665,0.60,4,3992.50,47.57,1800.51,1862.34,0.00,3516634645964.933105,3516634645966.406250,11,0,0.001250,0.003315,14268588,9051193,0,0,14820,0,1,1 +1774048729.629101,0.55,4,3992.50,47.57,1800.51,1862.34,0.00,0.049986,0.000000,70,0,0.001268,0.003288,14268631,9051263,0,0,14822,0,1,1 +1774048734.627565,0.60,4,3992.50,47.57,1800.51,1862.34,0.00,20542.146829,27524.793337,1968886,496798,0.000966,0.002627,14268663,9051318,0,0,14825,0,1,1 +1774048739.628951,0.50,4,3992.50,47.57,1800.51,1862.33,0.00,3517462190741.077148,3517462183762.559570,11,0,0.001194,0.003249,14268702,9051384,0,0,14827,0,1,1 +1774048744.628432,26.12,4,3992.50,54.09,1552.29,2117.79,0.00,2.008998,0.000195,238,2,46.476623,0.028428,14273739,9053227,0,0,14830,0,1,1 +1774048749.628586,31.49,4,3992.50,53.95,1564.26,2112.27,0.00,20537.313402,27515.631445,1969649,497005,118.572363,0.052629,14286063,9057135,0,0,14832,0,1,1 +1774048754.625797,28.46,4,3992.50,54.30,1551.93,2125.94,0.00,3520400872878.700195,3520400865898.282715,11,0,119.849513,0.073622,14298516,9062694,0,0,14835,0,1,1 +1774048759.624586,28.21,4,3992.50,54.60,1540.21,2137.56,0.00,0.050012,0.000000,70,0,118.613389,0.084299,14310892,9069168,0,0,14837,0,1,1 +1774048764.624776,28.18,4,3992.50,53.92,1566.91,2110.92,0.00,1.958715,0.000195,238,2,119.791700,0.106561,14323565,9077325,0,0,14840,0,1,1 +1774048769.627302,28.77,4,3992.50,54.11,1559.27,2118.58,0.00,3516660253818.245605,3516660253820.253418,11,0,118.936508,0.104500,14336270,9085342,0,0,14842,0,1,1 +1774048774.629439,28.37,4,3992.50,53.87,1568.58,2109.25,0.00,20527.115407,27504.903232,1968886,497009,119.744260,0.103718,14349096,9093308,0,0,14845,0,1,1 +1774048779.626547,28.24,4,3992.50,54.09,1560.18,2117.59,0.00,4.067099,0.060680,1969649,497118,119.667025,0.111591,14361935,9101983,0,0,14847,0,1,1 +1774048784.628964,23.17,4,3992.50,54.26,1553.69,2124.21,0.00,3516736914408.641602,0.001074,1968887,497045,118.728268,0.081309,14374533,9108192,0,0,14850,0,1,1 +1774048789.625090,1.10,4,3992.50,47.60,1814.40,1863.50,0.00,3521165652991.315918,3521165646004.894531,199,0,25.262199,0.018033,14377266,9109374,0,0,14852,0,1,1 +1774048794.628515,11.26,4,3992.50,49.00,1759.49,1918.41,0.00,0.000000,0.000000,199,0,10.060518,0.049998,14380595,9111924,0,0,14855,0,1,1 +1774048799.628960,15.82,4,3992.50,49.04,1758.01,1919.86,0.00,20534.024431,27515.050276,1968901,497985,24.140621,0.104100,14388262,9117567,0,0,14857,0,1,1 +1774048804.628394,5.53,4,3992.50,48.95,1761.13,1916.70,0.00,3518835260104.808105,3518835253122.549316,11,0,6.046243,0.030623,14390322,9119033,0,0,14860,0,1,1 +1774048809.629148,2.01,4,3992.50,48.15,1792.74,1885.13,0.00,20537.009397,27513.835827,1969674,498456,0.006378,0.007446,14390461,9119184,0,0,14862,0,1,1 +1774048814.626288,0.55,4,3992.50,48.03,1797.54,1880.32,0.00,3520450710128.248535,3520450703144.902832,226,83,0.002735,0.003967,14390526,9119265,0,0,14865,0,1,1 +1774048819.628562,10.13,4,3992.50,48.30,1784.61,1891.19,0.00,3516837867778.455566,3516837867779.928711,11,0,0.026775,39.846130,14392247,9123649,0,0,14867,0,1,1 +1774048824.628140,28.81,4,3992.50,47.90,1792.02,1875.53,0.00,1.495927,0.022072,226,83,0.030829,119.982469,14394469,9136211,0,0,14870,0,1,1 +1774048829.624480,12.29,4,3992.50,48.52,1764.53,1899.66,0.00,3521014625389.229980,3521014625390.704590,11,0,0.013536,45.302411,14395310,9141033,0,0,14872,0,1,1 +1774048834.628931,15.96,4,3992.50,48.47,1767.64,1897.75,0.00,0.049956,0.000000,70,0,40.028370,0.023227,14399661,9142456,0,0,14875,0,1,1 +1774048839.628896,1.15,4,3992.50,48.58,1763.30,1902.06,0.00,0.000000,0.000000,70,0,0.005914,0.007324,14399786,9142588,0,0,14877,0,1,1 +1774048844.629423,0.55,4,3992.50,48.19,1778.60,1886.80,0.00,1.445649,0.022068,226,83,0.002733,0.003964,14399851,9142669,0,0,14880,0,1,1 +1774048849.624654,0.45,4,3992.50,48.18,1778.89,1886.49,0.00,3521796040149.505859,3521796040150.804199,199,0,0.002736,0.003945,14399916,9142748,0,0,14882,0,1,1 +1774048854.629240,0.65,4,3992.50,48.18,1778.91,1886.48,0.00,20536.422862,27698.274043,1969119,500092,0.003494,0.005512,14399998,9142862,0,0,14885,0,1,1 +1774048859.628507,0.45,4,3992.50,48.18,1779.11,1886.28,0.00,3518952476282.571777,3518952469111.270020,238,2,0.002558,0.003809,14400060,9142940,0,0,14887,0,1,1 +1774048864.629262,0.45,4,3992.50,48.17,1779.44,1885.95,0.00,3517906148583.502930,3517906148585.334473,199,0,0.002758,0.003995,14400127,9143023,0,0,14890,0,1,1 +1774048869.628961,0.50,4,3992.50,48.16,1779.70,1885.69,0.00,20556.495195,27725.545417,1969119,500243,0.002734,0.003955,14400192,9143103,0,0,14892,0,1,1 +1774048874.629190,0.50,4,3992.50,48.16,1779.70,1885.68,0.00,3518276113909.072266,3518276106738.950195,238,2,0.004010,0.004503,14400284,9143201,0,0,14895,0,1,1 +1774048879.626456,0.65,4,3992.50,48.16,1779.73,1885.66,0.00,3520361990033.808105,3520361990035.641113,199,0,0.002735,0.003956,14400349,9143281,0,0,14897,0,1,1 +1774048884.628614,0.65,4,3992.50,48.16,1779.74,1885.66,0.00,0.000000,0.000000,199,0,0.002795,0.004015,14400418,9143366,0,0,14900,0,1,1 +1774048889.629205,0.50,4,3992.50,48.16,1780.00,1885.39,0.00,1.318692,0.022068,226,83,0.001886,0.003553,14400464,9143429,0,0,14902,0,1,1 +1774048894.624611,11.46,4,3992.50,47.82,1790.64,1872.13,0.00,20576.907672,27787.586536,1969882,500738,0.029520,40.102632,14402467,9147848,0,0,14905,0,1,1 +1774048899.628752,0.50,4,3992.50,47.63,1797.80,1864.98,0.00,3515525515485.820312,3515525508289.023438,199,0,0.001369,0.003733,14402507,9147917,0,0,14907,0,1,1 +1774048904.624593,0.60,4,3992.50,47.64,1797.55,1865.23,0.00,20576.439841,27785.312236,1969882,500818,0.001145,0.003201,14402542,9147980,0,0,14910,0,1,1 +1774048909.624654,0.50,4,3992.50,47.65,1797.34,1865.44,0.00,3518394002854.039551,3518393995649.420898,238,2,0.000916,0.002554,14402570,9148030,0,0,14912,0,1,1 +1774048914.628555,0.50,4,3992.50,47.65,1797.34,1865.44,0.00,3515694373117.810059,3515694373119.817383,11,0,0.001152,0.003203,14402606,9148094,0,0,14915,0,1,1 +1774048919.629171,0.50,4,3992.50,47.65,1797.34,1865.44,0.00,2.008542,0.000195,238,2,0.001144,0.003188,14402641,9148156,0,0,14917,0,1,1 +1774048924.629389,0.60,4,3992.50,47.67,1796.36,1866.42,0.00,20552.530976,27762.993091,1969119,500763,0.001144,0.003198,14402676,9148219,0,0,14920,0,1,1 +1774048929.627148,0.50,4,3992.50,47.67,1796.37,1866.40,0.00,0.000000,0.078942,1969119,500818,0.001195,0.003252,14402715,9148285,0,0,14922,0,1,1 +1774048934.628173,0.50,4,3992.50,47.67,1796.38,1866.40,0.00,4.063913,0.027729,1969882,500909,0.001195,0.003259,14402754,9148352,0,0,14925,0,1,1 +1774048939.629187,0.65,4,3992.50,47.69,1795.65,1867.13,0.00,3517723960644.774414,3517723953441.249023,199,0,0.001319,0.003350,14402801,9148426,0,0,14927,0,1,1 +1774048944.624595,0.40,4,3992.50,47.69,1795.65,1867.13,0.00,3521671669915.614258,0.000000,70,0,0.000947,0.002592,14402831,9148479,0,0,14930,0,1,1 +1774048949.624511,0.55,4,3992.50,47.69,1795.65,1867.13,0.00,20555.729684,27764.772851,1969119,500838,0.001144,0.003188,14402866,9148541,0,0,14932,0,1,1 +1774048954.624610,0.55,4,3992.50,47.69,1795.65,1867.12,0.00,3518367440915.290039,3518367433706.561035,11,0,0.001152,0.003850,14402902,9148609,0,0,14935,0,1,1 +1774048959.624511,27.89,4,3992.50,54.44,1539.30,2131.54,0.00,0.050001,0.000000,70,0,56.495113,0.046129,14409144,9151835,0,0,14937,0,1,1 +1774048964.628793,32.48,4,3992.50,54.19,1555.77,2121.55,0.00,3515426865893.811035,0.000000,11,0,122.892361,0.066442,14422077,9156837,0,0,14940,0,1,1 +1774048969.628695,28.27,4,3992.50,54.08,1560.38,2117.29,0.00,2.008828,0.000195,238,2,121.363727,0.017435,14433972,9158111,0,0,14942,0,1,1 +1774048974.629389,28.23,4,3992.50,54.27,1553.05,2124.60,0.00,3517949026614.212891,0.021872,226,83,120.943544,0.022945,14445838,9159788,0,0,14945,0,1,1 +1774048979.625413,28.05,4,3992.50,54.08,1560.32,2117.37,0.00,3521237437741.744141,3521237437743.169434,70,0,119.806984,0.030975,14457840,9162107,0,0,14947,0,1,1 +1774048984.628624,27.76,4,3992.50,54.33,1550.64,2127.06,0.00,20542.194147,27746.683539,1969119,501015,119.783836,0.035862,14469803,9164854,0,0,14950,0,1,1 +1774048989.629086,28.15,4,3992.50,54.43,1546.65,2131.03,0.00,3518111764396.803223,3518111757188.404785,11,0,119.105824,0.035418,14481417,9167503,0,0,14952,0,1,1 +1774048994.624491,27.96,4,3992.50,54.23,1554.59,2123.09,0.00,2.010637,0.000195,238,2,119.872715,0.036319,14493037,9170107,0,0,14955,0,1,1 +1774048999.625941,18.41,4,3992.50,54.32,1550.96,2126.81,0.00,20547.471456,27756.640251,1969120,501055,119.542166,0.037533,14504978,9172907,0,0,14957,0,1,1 +1774049004.628687,1.20,4,3992.50,49.69,1732.11,1945.66,0.00,3516505524721.860840,3516505517516.568848,11,0,5.609996,0.006237,14505669,9173163,0,0,14960,0,1,1 +1774049009.628384,10.24,4,3992.50,48.74,1769.46,1908.26,0.00,2.008911,0.000195,238,2,8.068766,0.048777,14508641,9175396,0,0,14962,0,1,1 +1774049014.629472,14.22,4,3992.50,49.19,1751.87,1925.87,0.00,3517671793751.024902,3517671793752.856445,199,0,18.129859,0.083547,14514611,9179916,0,0,14965,0,1,1 +1774049019.624544,9.16,4,3992.50,48.66,1772.39,1905.33,0.00,0.000000,0.000000,199,0,14.074289,0.059427,14519074,9183241,0,0,14967,0,1,1 +1774049024.624767,0.95,4,3992.50,48.21,1789.98,1887.71,0.00,1.318789,0.022069,226,83,0.002821,0.005259,14519143,9183338,0,0,14970,0,1,1 +1774049029.626402,19.48,4,3992.50,48.16,1787.41,1885.43,0.00,0.512821,3517286858408.956543,238,2,0.036155,80.893852,14521700,9191944,0,0,14972,0,1,1 +1774049034.626966,28.18,4,3992.50,48.43,1768.28,1896.29,0.00,3518040786196.384277,0.021873,226,83,0.019355,118.956655,14523022,9204413,0,0,14975,0,1,1 +1774049039.629228,2.45,4,3992.50,48.08,1781.54,1882.51,0.00,3516846297342.390625,3516846297343.863770,11,0,0.005277,5.212212,14523214,9205115,0,0,14977,0,1,1 +1774049044.627162,15.35,4,3992.50,49.64,1721.78,1943.38,0.00,0.177026,0.000000,199,0,40.082862,0.022365,14527742,9206469,0,0,14980,0,1,1 +1774049049.624619,0.95,4,3992.50,48.76,1756.27,1908.89,0.00,3520227803733.446289,0.000000,70,0,0.005920,0.007452,14527873,9206609,0,0,14982,0,1,1 +1774049054.627590,0.65,4,3992.50,48.25,1776.18,1889.02,0.00,0.126878,0.000000,199,0,0.002732,0.003962,14527938,9206690,0,0,14985,0,1,1 +1774049059.626533,0.50,4,3992.50,48.26,1775.84,1889.34,0.00,3519181192644.434082,0.000000,11,0,0.002734,0.003955,14528003,9206770,0,0,14987,0,1,1 +1774049064.626582,0.55,4,3992.50,48.24,1776.30,1888.90,0.00,0.000000,0.000000,11,0,0.002734,0.003964,14528068,9206851,0,0,14990,0,1,1 +1774049069.624501,0.65,4,3992.50,48.24,1776.34,1888.85,0.00,0.000000,0.000000,11,0,0.002277,0.002688,14528119,9206907,0,0,14992,0,1,1 +1774049074.629274,0.50,4,3992.50,48.06,1783.68,1881.50,0.00,20555.309495,27944.857269,1969245,504104,0.002527,0.003358,14528179,9206978,0,0,14995,0,1,1 +1774049079.629523,0.50,4,3992.50,48.06,1783.71,1881.48,0.00,3518262142806.577148,3518262135408.333496,238,2,0.002741,0.003962,14528245,9207059,0,0,14997,0,1,1 +1774049084.628792,0.55,4,3992.50,48.06,1783.72,1881.47,0.00,3518951934427.620117,0.021878,226,83,0.002815,0.004040,14528315,9207146,0,0,15000,0,1,1 +1774049089.629265,0.50,4,3992.50,48.05,1783.74,1881.46,0.00,0.512940,3518103878391.391602,238,2,0.002721,0.004598,14528379,9207230,0,0,15002,0,1,1 +1774049094.627574,0.50,4,3992.50,48.05,1783.75,1881.45,0.00,3519628128557.012695,3519628128558.845703,199,0,0.002809,0.004006,14528449,9207314,0,0,15005,0,1,1 +1774049099.626482,0.60,4,3992.50,47.87,1791.16,1874.04,0.00,20579.252058,27977.908698,1969245,504335,0.002734,0.003955,14528514,9207394,0,0,15007,0,1,1 +1774049104.628902,0.45,4,3992.50,47.89,1790.19,1875.00,0.00,3516735158827.591309,3516735151432.832520,226,83,0.002504,0.003329,14528572,9207463,0,0,15010,0,1,1 +1774049109.624525,0.55,4,3992.50,47.85,1791.76,1873.43,0.00,0.513438,3521520130724.661133,238,2,0.002736,0.003971,14528637,9207544,0,0,15012,0,1,1 +1774049114.624521,1.86,4,3992.50,48.02,1784.74,1880.13,0.00,3518439725973.021484,3518439725974.979980,70,0,0.010047,4.213394,14529167,9208270,0,0,15015,0,1,1 +1774049119.625977,10.19,4,3992.50,47.78,1791.82,1870.62,0.00,3517413273699.075195,0.000000,11,0,0.015718,35.844178,14530248,9211945,0,0,15017,0,1,1 +1774049124.628900,0.60,4,3992.50,47.76,1792.68,1869.76,0.00,0.000000,0.000000,11,0,0.000915,0.002563,14530276,9211996,0,0,15020,0,1,1 +1774049129.625323,0.45,4,3992.50,47.75,1793.05,1869.40,0.00,0.000000,0.000000,11,0,0.001145,0.003190,14530311,9212058,0,0,15022,0,1,1 +1774049134.629038,0.55,4,3992.50,47.75,1792.80,1869.63,0.00,0.049963,0.000000,70,0,0.001144,0.003195,14530346,9212121,0,0,15025,0,1,1 +1774049139.628982,0.35,4,3992.50,47.76,1792.57,1869.88,0.00,20575.115944,28010.009000,1969245,504793,0.001144,0.003188,14530381,9212183,0,0,15027,0,1,1 +1774049144.629164,0.50,4,3992.50,47.76,1792.57,1869.88,0.00,0.000000,0.002344,1969245,504795,0.001132,0.003198,14530415,9212246,0,0,15030,0,1,1 +1774049149.624603,0.55,4,3992.50,47.78,1791.60,1870.85,0.00,3521650258188.736816,3521650250747.007812,199,0,0.001158,0.003222,14530451,9212310,0,0,15032,0,1,1 +1774049154.625285,0.65,4,3992.50,47.81,1790.40,1872.05,0.00,3517957078804.549316,0.000000,70,0,0.003129,0.006754,14530518,9212429,0,0,15035,0,1,1 +1774049159.626822,0.45,4,3992.50,47.77,1792.32,1870.12,0.00,20572.628642,28003.535714,1970009,504908,0.000991,0.002647,14530552,9212485,0,0,15037,0,1,1 +1774049164.629319,0.50,4,3992.50,47.80,1790.89,1871.56,0.00,3516680565568.203613,3516680558138.773438,11,0,0.001237,0.003272,14530593,9212554,0,0,15040,0,1,1 +1774049169.628333,0.50,4,3992.50,47.80,1790.89,1871.56,0.00,0.050010,0.000000,70,0,0.001145,0.003189,14530628,9212616,0,0,15042,0,1,1 +1774049174.624490,0.55,4,3992.50,47.80,1790.89,1871.56,0.00,1.960296,0.000195,238,2,0.001145,0.003200,14530663,9212679,0,0,15045,0,1,1 +1774049179.629202,0.40,4,3992.50,47.80,1790.89,1871.55,0.00,20557.617349,27985.836140,1970009,504969,0.001143,0.003185,14530698,9212741,0,0,15047,0,1,1 +1774049184.627620,30.58,4,3992.50,54.20,1548.19,2122.06,0.00,3519551093141.398438,3519551085705.833496,11,0,58.704870,0.036822,14536861,9215251,0,0,15050,0,1,1 +1774049189.629139,30.43,4,3992.50,54.19,1554.91,2121.67,0.00,20568.687328,28003.819013,1969246,505023,118.929557,0.032095,14549096,9217563,0,0,15052,0,1,1 +1774049194.627579,27.88,4,3992.50,54.07,1560.09,2117.15,0.00,0.000000,0.035949,1969246,505037,119.604083,0.022852,14561342,9219135,0,0,15055,0,1,1 +1774049199.625551,28.11,4,3992.50,54.00,1563.16,2114.11,0.00,3519864830700.163574,3519864823259.719727,11,0,118.813970,0.026181,14573515,9221138,0,0,15057,0,1,1 +1774049204.628809,28.59,4,3992.50,54.44,1545.89,2131.42,0.00,0.049967,0.000000,70,0,120.090166,0.027409,14585892,9223084,0,0,15060,0,1,1 +1774049209.628468,27.92,4,3992.50,53.92,1566.09,2111.26,0.00,0.000000,0.000000,70,0,118.171719,0.037919,14597998,9225960,0,0,15062,0,1,1 +1774049214.625039,27.98,4,3992.50,53.93,1565.64,2111.64,0.00,0.000000,0.000000,70,0,120.249140,0.022983,14610421,9227632,0,0,15065,0,1,1 +1774049219.626530,27.74,4,3992.50,54.41,1547.05,2130.27,0.00,1.445370,0.022064,226,83,118.533368,0.027650,14622653,9229619,0,0,15067,0,1,1 +1774049224.624509,20.03,4,3992.50,54.21,1555.02,2122.39,0.00,3519859780627.281738,3519859780628.706055,70,0,119.811135,0.049091,14634763,9233365,0,0,15070,0,1,1 +1774049229.624412,1.10,4,3992.50,48.45,1780.49,1896.90,0.00,1.958827,0.000195,238,2,12.621770,0.008254,14636150,9233774,0,0,15072,0,1,1 +1774049234.628377,15.56,4,3992.50,48.66,1772.35,1905.05,0.00,3515649384702.463379,0.021858,226,83,14.085011,0.070252,14640933,9237396,0,0,15075,0,1,1 +1774049239.624500,11.98,4,3992.50,48.23,1789.11,1888.29,0.00,3521167873158.921387,3521167873160.346680,70,0,16.107947,0.069662,14646097,9241173,0,0,15077,0,1,1 +1774049244.624533,6.83,4,3992.50,48.73,1769.59,1907.74,0.00,3518413686880.287598,0.000000,11,0,10.071992,0.050825,14649691,9243824,0,0,15080,0,1,1 +1774049249.624532,0.70,4,3992.50,48.26,1787.71,1889.64,0.00,0.000000,0.000000,11,0,0.003022,0.004546,14649761,9243912,0,0,15082,0,1,1 +1774049254.625222,0.40,4,3992.50,48.05,1796.03,1881.35,0.00,1.495594,0.022067,226,83,0.002746,0.003964,14649827,9243993,0,0,15085,0,1,1 +1774049259.624505,0.50,4,3992.50,47.85,1803.89,1873.49,0.00,3518941870188.521973,3518941870189.819336,199,0,0.002742,0.003963,14649893,9244074,0,0,15087,0,1,1 +1774049264.624542,0.40,4,3992.50,47.86,1803.68,1873.72,0.00,20578.818223,28013.863562,1970026,506804,0.002734,0.003964,14649958,9244155,0,0,15090,0,1,1 +1774049269.624491,0.45,4,3992.50,47.88,1802.95,1874.45,0.00,3518473442654.454102,3518473435219.403320,70,0,0.002734,0.003954,14650023,9244235,0,0,15092,0,1,1 +1774049274.628377,0.50,4,3992.50,47.88,1802.96,1874.43,0.00,3515704826998.399414,0.000000,11,0,0.002629,0.003483,14650091,9244314,0,0,15095,0,1,1 +1774049279.624541,0.55,4,3992.50,47.88,1802.96,1874.42,0.00,20590.881161,28035.720265,1969263,506812,0.002736,0.003957,14650156,9244394,0,0,15097,0,1,1 +1774049284.629117,0.45,4,3992.50,47.87,1802.98,1874.41,0.00,3515219659946.379883,3515219652514.055176,11,0,0.003652,0.005273,14650223,9244482,0,0,15100,0,1,1 +1774049289.624521,0.60,4,3992.50,47.87,1802.98,1874.40,0.00,0.000000,0.000000,11,0,0.004459,0.005282,14650312,9244577,0,0,15102,0,1,1 +1774049294.624598,0.65,4,3992.50,47.87,1803.00,1874.38,0.00,1.495778,0.022070,226,83,0.003926,0.004607,14650405,9244674,0,0,15105,0,1,1 +1774049299.626517,0.40,4,3992.50,47.87,1803.03,1874.36,0.00,20565.692904,28003.575778,1969263,506946,0.002504,0.003332,14650463,9244743,0,0,15107,0,1,1 +1774049304.625810,0.50,4,3992.50,47.86,1803.54,1873.86,0.00,3518934626314.515625,3518934618874.149414,70,0,0.002734,0.003965,14650528,9244824,0,0,15110,0,1,1 +1774049309.627155,0.50,4,3992.50,47.86,1803.55,1873.85,0.00,20569.501707,28006.892725,1969263,507024,0.002733,0.003953,14650593,9244904,0,0,15112,0,1,1 +1774049314.627755,0.50,4,3992.50,47.86,1803.55,1873.83,0.00,4.064259,0.055462,1970026,507149,0.002733,0.003964,14650658,9244985,0,0,15115,0,1,1 +1774049319.628452,0.45,4,3992.50,47.86,1803.56,1873.82,0.00,3517946828731.488281,3517946821297.192383,11,0,0.002721,0.003954,14650722,9245065,0,0,15117,0,1,1 +1774049324.628793,0.65,4,3992.50,47.86,1803.58,1873.80,0.00,0.000000,0.000000,11,0,0.002721,0.003964,14650786,9245146,0,0,15120,0,1,1 +1774049329.629442,0.45,4,3992.50,47.86,1803.61,1873.79,0.00,0.049994,0.000000,70,0,0.002123,0.003725,14650840,9245220,0,0,15122,0,1,1 +1774049334.625320,0.60,4,3992.50,47.86,1803.61,1873.78,0.00,20596.077479,28037.695447,1970026,507256,0.002532,0.003364,14650900,9245291,0,0,15125,0,1,1 +1774049339.629184,4.36,4,3992.50,48.34,1784.62,1892.62,0.00,3515720138528.257324,3515720131098.565430,11,0,0.016861,15.817863,14651931,9247161,0,0,15127,0,1,1 +1774049344.628399,28.76,4,3992.50,48.51,1769.98,1899.09,0.00,1.496036,0.022074,226,83,0.039009,118.787099,14654880,9259454,0,0,15130,0,1,1 +1774049349.628296,17.47,4,3992.50,47.99,1785.27,1878.77,0.00,20574.016957,28175.096710,1969264,508154,0.023740,70.500371,14656728,9266786,0,0,15132,0,1,1 +1774049354.625439,0.90,4,3992.50,47.58,1801.29,1862.75,0.00,4.067069,45.158610,1970027,508490,0.002557,0.006332,14656800,9266905,0,0,15135,0,1,1 +1774049359.628375,15.73,4,3992.50,50.40,1691.79,1973.25,0.00,3516372992263.372070,3516372984625.330078,238,2,40.039367,0.031229,14661157,9269008,0,0,15137,0,1,1 +1774049364.628629,10.51,4,3992.50,48.03,1778.11,1880.42,0.00,3518258015556.640137,3518258015558.648438,11,0,0.028184,40.064673,14662946,9273488,0,0,15140,0,1,1 +1774049369.625805,0.75,4,3992.50,47.66,1792.39,1866.13,0.00,0.000000,0.000000,11,0,0.002657,0.006289,14663017,9273607,0,0,15142,0,1,1 +1774049374.624609,0.55,4,3992.50,47.69,1791.55,1866.98,0.00,0.000000,0.000000,11,0,0.000916,0.002565,14663045,9273658,0,0,15145,0,1,1 +1774049379.624525,0.50,4,3992.50,47.69,1791.55,1866.98,0.00,20594.808342,28258.244642,1969410,508934,0.001144,0.003188,14663080,9273720,0,0,15147,0,1,1 +1774049384.624620,0.40,4,3992.50,47.72,1790.32,1868.20,0.00,3518370373733.672852,3518370366068.501465,238,2,0.001170,0.003229,14663117,9273785,0,0,15150,0,1,1 +1774049389.624547,0.65,4,3992.50,47.69,1791.27,1867.26,0.00,20592.754759,28258.265057,1969410,508942,0.001144,0.003188,14663152,9273847,0,0,15152,0,1,1 +1774049394.626010,0.50,4,3992.50,47.69,1791.27,1867.25,0.00,3517408586868.000977,3517408579206.674316,199,0,0.001131,0.003197,14663186,9273910,0,0,15155,0,1,1 +1774049399.624612,0.45,4,3992.50,47.69,1791.27,1867.25,0.00,20604.111471,28267.986318,1970173,509044,0.001153,0.003197,14663222,9273973,0,0,15157,0,1,1 +1774049404.624529,0.80,4,3992.50,47.70,1790.81,1867.71,0.00,3518495752426.260742,3518495752430.304688,1969410,508961,0.001170,0.003229,14663259,9274038,0,0,15160,0,1,1 +1774049409.624700,0.75,4,3992.50,47.73,1789.91,1868.60,0.00,3518316659203.951172,3518316651538.614258,11,0,0.001041,0.002710,14663297,9274098,0,0,15162,0,1,1 +1774049414.629174,0.65,4,3992.50,47.54,1797.33,1861.19,0.00,0.000000,0.000000,11,0,0.001299,0.003803,14663342,9274174,0,0,15165,0,1,1 +1774049419.628990,1.00,4,3992.50,47.52,1798.06,1860.45,0.00,0.000000,0.000000,11,0,0.001144,0.003349,14663377,9274237,0,0,15167,0,1,1 +1774049424.624483,0.75,4,3992.50,47.54,1797.09,1861.44,0.00,0.000000,0.000000,11,0,0.001145,0.003201,14663412,9274300,0,0,15170,0,1,1 +1774049429.628781,0.70,4,3992.50,47.54,1797.08,1861.45,0.00,0.176801,0.000000,199,0,0.001143,0.003185,14663447,9274362,0,0,15172,0,1,1 +1774049434.626568,34.51,4,3992.50,53.89,1562.46,2109.78,0.00,3519995025625.552734,0.000000,11,0,60.717596,0.039375,14669896,9277046,0,0,15175,0,1,1 +1774049439.624560,29.86,4,3992.50,54.08,1561.32,2117.30,0.00,2.009596,0.000195,238,2,120.213128,0.042815,14682171,9280323,0,0,15177,0,1,1 +1774049444.624625,29.48,4,3992.50,54.00,1564.51,2114.13,0.00,3518391322021.619629,3518391322023.578125,70,0,120.162886,0.039968,14694389,9283391,0,0,15180,0,1,1 +1774049449.625293,28.41,4,3992.50,53.96,1566.11,2112.77,0.00,20595.741083,28256.738583,1970183,509362,120.147267,0.043689,14706559,9286757,0,0,15182,0,1,1 +1774049454.629216,28.54,4,3992.50,54.06,1562.35,2116.50,0.00,3515679000497.689941,0.005464,1969420,509287,119.073436,0.052425,14718729,9290635,0,0,15185,0,1,1 +1774049459.628442,28.36,4,3992.50,54.07,1561.68,2117.08,0.00,3518981683843.644043,3518981676176.416504,11,0,119.181362,0.049852,14730819,9294452,0,0,15187,0,1,1 +1774049464.627467,28.55,4,3992.50,53.88,1569.25,2109.61,0.00,20598.495203,28266.088948,1969420,509316,119.587011,0.046120,14743022,9298019,0,0,15190,0,1,1 +1774049469.624537,28.56,4,3992.50,54.07,1561.94,2116.91,0.00,3520500102774.944824,3520500095104.351562,11,0,118.832359,0.046792,14755077,9301515,0,0,15192,0,1,1 +1774049474.624530,19.02,4,3992.50,54.04,1562.97,2115.97,0.00,0.050000,0.000000,70,0,120.164458,0.057594,14767192,9305860,0,0,15195,0,1,1 +1774049479.626709,1.05,4,3992.50,48.03,1798.63,1880.29,0.00,20585.590953,28248.403315,1969435,509384,7.410932,0.006317,14768048,9306192,0,0,15197,0,1,1 +1774049484.624557,12.88,4,3992.50,48.06,1797.30,1881.60,0.00,3519952401784.753906,3519952394113.876465,226,83,14.103706,0.071793,14772859,9309823,0,0,15200,0,1,1 +1774049489.629421,12.56,4,3992.50,47.58,1815.91,1863.02,0.00,0.512490,3515017664019.937500,238,2,22.108827,0.097363,14780130,9315270,0,0,15202,0,1,1 +1774049494.628702,5.18,4,3992.50,47.90,1803.35,1875.57,0.00,0.000000,0.000000,238,2,4.036220,0.022755,14781537,9316302,0,0,15205,0,1,1 +1774049499.624505,0.95,4,3992.50,47.93,1802.19,1876.74,0.00,0.000000,0.000000,238,2,0.003523,0.005401,14781624,9316410,0,0,15207,0,1,1 +1774049504.628820,15.99,4,3992.50,48.13,1791.02,1884.54,0.00,20574.846598,28264.043242,1969435,511022,0.038684,65.041152,14784401,9323328,0,0,15210,0,1,1 +1774049509.624486,29.99,4,3992.50,48.37,1772.94,1893.98,0.00,3521489449130.286133,3521489441428.312500,226,83,0.050249,121.875762,14788156,9335773,0,0,15212,0,1,1 +1774049514.628986,5.42,4,3992.50,48.17,1779.51,1886.00,0.00,3515273625025.000488,3515273625026.295898,199,0,0.011274,18.215620,14788825,9337778,0,0,15215,0,1,1 +1774049519.624510,15.24,4,3992.50,48.58,1763.66,1901.90,0.00,20636.352956,28492.785377,1970312,512286,40.104988,0.030866,14793351,9339748,0,0,15217,0,1,1 +1774049524.624600,1.05,4,3992.50,48.12,1781.56,1884.01,0.00,3518374084818.583496,3518374076969.501953,11,0,0.004432,0.006742,14793455,9339873,0,0,15220,0,1,1 +1774049529.628595,0.60,4,3992.50,47.96,1787.70,1877.87,0.00,0.000000,0.000000,11,0,0.002731,0.003951,14793520,9339953,0,0,15222,0,1,1 +1774049534.625506,0.55,4,3992.50,47.98,1787.20,1878.36,0.00,2.010031,0.000195,238,2,0.002743,0.003975,14793586,9340035,0,0,15225,0,1,1 +1774049539.628890,0.55,4,3992.50,47.98,1787.23,1878.34,0.00,3516057535515.512207,3516057535517.469727,70,0,0.002503,0.003318,14793644,9340103,0,0,15227,0,1,1 +1774049544.627429,0.60,4,3992.50,47.99,1786.80,1878.77,0.00,3519465773459.336914,0.000000,11,0,0.002734,0.003965,14793709,9340184,0,0,15230,0,1,1 +1774049549.625412,0.50,4,3992.50,48.00,1786.06,1879.49,0.00,0.000000,0.000000,11,0,0.002760,0.004631,14793776,9340270,0,0,15232,0,1,1 +1774049554.626641,0.50,4,3992.50,47.80,1793.96,1871.60,0.00,0.176910,0.000000,199,0,0.002733,0.003963,14793841,9340351,0,0,15235,0,1,1 +1774049559.627744,0.50,4,3992.50,47.82,1793.23,1872.33,0.00,0.000000,0.000000,199,0,0.002826,0.004029,14793912,9340437,0,0,15237,0,1,1 +1774049564.629184,0.60,4,3992.50,47.84,1792.52,1873.04,0.00,3517424227286.776367,0.000000,11,0,0.002741,0.003971,14793978,9340519,0,0,15240,0,1,1 +1774049569.625958,0.60,4,3992.50,47.84,1792.55,1873.02,0.00,1.496767,0.022085,226,83,0.002810,0.003997,14794048,9340602,0,0,15242,0,1,1 +1774049574.627123,0.50,4,3992.50,47.86,1791.82,1873.75,0.00,0.000000,0.000000,226,83,0.002504,0.003330,14794106,9340671,0,0,15245,0,1,1 +1774049579.628757,0.65,4,3992.50,47.67,1799.00,1866.55,0.00,0.512821,3517287529288.002441,238,2,0.002708,0.003953,14794169,9340751,0,0,15247,0,1,1 +1774049584.626637,0.50,4,3992.50,47.65,1800.11,1865.45,0.00,0.000000,0.000000,238,2,0.002735,0.003953,14794234,9340831,0,0,15250,0,1,1 +1774049589.628882,2.56,4,3992.50,48.20,1777.82,1887.30,0.00,3516858320964.967285,3516858320966.975098,11,0,0.014028,7.014874,14794947,9341840,0,0,15252,0,1,1 +1774049594.624655,8.94,4,3992.50,47.88,1788.51,1874.42,0.00,1.497066,0.022089,226,83,0.024273,33.081570,14796532,9345348,0,0,15255,0,1,1 +1774049599.629017,0.65,4,3992.50,47.65,1797.29,1865.65,0.00,0.512541,3515370854941.390137,238,2,0.001151,0.003193,14796568,9345411,0,0,15257,0,1,1 +1774049604.624600,0.55,4,3992.50,47.66,1796.80,1866.14,0.00,3521547684896.387695,3521547684898.221191,199,0,0.001145,0.003201,14796603,9345474,0,0,15260,0,1,1 +1774049609.624601,0.55,4,3992.50,47.66,1796.81,1866.14,0.00,3518436783152.171875,0.000000,11,0,0.001144,0.003188,14796638,9345536,0,0,15262,0,1,1 +1774049614.624605,0.55,4,3992.50,47.69,1795.83,1867.12,0.00,0.176953,0.000000,199,0,0.001144,0.003842,14796673,9345603,0,0,15265,0,1,1 +1774049619.627456,0.60,4,3992.50,47.69,1795.83,1867.11,0.00,20606.127733,28489.945530,1970312,513189,0.001144,0.003186,14796708,9345665,0,0,15267,0,1,1 +1774049624.624604,0.60,4,3992.50,47.69,1795.83,1867.11,0.00,3520445496298.735352,1.985899,1969549,513120,0.000903,0.002566,14796735,9345716,0,0,15270,0,1,1 +1774049629.625194,0.55,4,3992.50,47.69,1795.84,1867.10,0.00,3518022312823.139160,3518022304929.833984,70,0,0.001152,0.003196,14796771,9345779,0,0,15272,0,1,1 +1774049634.624536,0.55,4,3992.50,47.57,1800.54,1862.41,0.00,20616.654049,28512.012895,1969549,513176,0.001270,0.003354,14796816,9345852,0,0,15275,0,1,1 +1774049639.624524,0.50,4,3992.50,47.57,1800.54,1862.40,0.00,4.064755,0.026953,1970312,513266,0.001375,0.003407,14796867,9345930,0,0,15277,0,1,1 +1774049644.624608,0.60,4,3992.50,47.57,1800.54,1862.40,0.00,3518378677627.785645,3518378669737.634766,70,0,0.001144,0.003198,14796902,9345993,0,0,15280,0,1,1 +1774049649.624584,0.50,4,3992.50,47.56,1801.05,1861.89,0.00,1.445808,0.022070,226,83,0.001144,0.003188,14796937,9346055,0,0,15282,0,1,1 +1774049654.624524,0.55,4,3992.50,47.56,1800.81,1862.14,0.00,3518479501005.306152,3518479501006.780273,11,0,0.001144,0.003198,14796972,9346118,0,0,15285,0,1,1 +1774049659.628741,28.14,4,3992.50,54.20,1549.33,2122.05,0.00,0.000000,0.000000,11,0,46.030313,0.025548,14801809,9347701,0,0,15287,0,1,1 +1774049664.628508,30.78,4,3992.50,54.39,1548.14,2129.61,0.00,1.495870,0.022071,226,83,119.778324,0.037662,14814167,9350378,0,0,15290,0,1,1 +1774049669.628641,27.39,4,3992.50,54.02,1563.79,2115.09,0.00,20616.013889,28507.737315,1970312,513439,118.577827,0.073408,14826472,9355955,0,0,15292,0,1,1 +1774049674.625603,28.09,4,3992.50,54.31,1552.62,2126.23,0.00,3520576017762.448730,3520576009865.719238,226,83,120.265266,0.092781,14839163,9363004,0,0,15295,0,1,1 +1774049679.629388,27.71,4,3992.50,53.95,1566.52,2112.41,0.00,0.000000,0.000000,226,83,118.103466,0.105292,14851735,9371210,0,0,15297,0,1,1 +1774049684.625901,28.69,4,3992.50,54.29,1553.11,2125.77,0.00,3520892742856.642090,3520892742858.116699,11,0,120.280833,0.103573,14864619,9379228,0,0,15300,0,1,1 +1774049689.624501,28.10,4,3992.50,54.14,1559.20,2119.71,0.00,20623.829755,28516.648604,1970312,513512,118.429367,0.108767,14877320,9387544,0,0,15302,0,1,1 +1774049694.625464,28.34,4,3992.50,53.98,1565.59,2113.27,0.00,3517759837980.102051,3517759830090.835449,199,0,119.974310,0.111198,14890138,9396216,0,0,15305,0,1,1 +1774049699.629017,23.00,4,3992.50,54.01,1564.23,2114.68,0.00,0.000000,0.000000,199,0,119.312801,0.113023,14902899,9404914,0,0,15307,0,1,1 +1774049704.629126,1.25,4,3992.50,48.43,1782.63,1896.32,0.00,3518360906190.050781,0.000000,11,0,24.847422,0.026389,14905727,9406772,0,0,15310,0,1,1 +1774049709.629234,15.77,4,3992.50,48.49,1780.35,1898.56,0.00,20613.682835,28508.484721,1969564,513892,18.116014,0.085057,14911643,9411128,0,0,15312,0,1,1 +1774049714.624601,13.82,4,3992.50,47.94,1802.13,1876.82,0.00,3521700327471.518066,3521700319569.222168,11,0,20.146968,0.091854,14918178,9416078,0,0,15315,0,1,1 +1774049719.624607,3.81,4,3992.50,48.03,1798.55,1880.39,0.00,20614.107035,28509.615916,1969564,514585,2.015222,0.011930,14918894,9416652,0,0,15317,0,1,1 +1774049724.627981,1.00,4,3992.50,48.03,1798.59,1880.36,0.00,3516064562669.650879,3516064554779.457031,11,0,0.003435,0.005357,14918975,9416757,0,0,15320,0,1,1 +1774049729.624531,0.65,4,3992.50,48.03,1798.60,1880.34,0.00,20628.363838,28529.531078,1969564,514776,0.002744,0.003965,14919041,9416838,0,0,15322,0,1,1 +1774049734.627869,0.70,4,3992.50,47.86,1805.15,1873.75,0.00,0.000000,0.399245,1969564,515011,0.002707,0.003962,14919104,9416919,0,0,15325,0,1,1 +1774049739.625469,0.60,4,3992.50,47.81,1807.26,1871.69,0.00,3520127079483.532227,3520127071583.624512,11,0,0.002710,0.003956,14919167,9416999,0,0,15327,0,1,1 +1774049744.624535,0.65,4,3992.50,47.64,1813.72,1865.22,0.00,1.496080,0.022074,226,83,0.002128,0.004372,14919221,9417077,0,0,15330,0,1,1 +1774049749.624521,0.45,4,3992.50,47.67,1812.51,1866.44,0.00,3518447265307.854980,3518447265309.151855,199,0,0.002455,0.003330,14919286,9417153,0,0,15332,0,1,1 +1774049754.628541,1.85,4,3992.50,47.67,1812.53,1866.43,0.00,1.317788,0.022053,226,83,0.003739,0.006120,14919377,9417277,0,0,15335,0,1,1 +1774049759.628739,0.60,4,3992.50,47.67,1812.54,1866.41,0.00,0.512968,3518298456339.635742,238,2,0.002721,0.003954,14919441,9417357,0,0,15337,0,1,1 +1774049764.629393,0.55,4,3992.50,47.67,1812.55,1866.39,0.00,3517976686735.823730,3517976686737.832031,11,0,0.002733,0.003964,14919506,9417438,0,0,15340,0,1,1 +1774049769.628193,0.50,4,3992.50,47.67,1812.57,1866.38,0.00,0.176996,0.000000,199,0,0.002804,0.004003,14919576,9417522,0,0,15342,0,1,1 +1774049774.626566,0.70,4,3992.50,47.67,1812.58,1866.38,0.00,20624.730056,28519.847550,1970327,515371,0.002722,0.003966,14919640,9417603,0,0,15345,0,1,1 +1774049779.627455,0.60,4,3992.50,47.67,1812.59,1866.37,0.00,3517811700239.840820,3517811692346.863770,238,2,0.002721,0.003954,14919704,9417683,0,0,15347,0,1,1 +1774049784.629395,0.50,4,3992.50,47.67,1812.60,1866.35,0.00,3517072801989.119141,3517072801991.126953,11,0,0.002720,0.003963,14919768,9417764,0,0,15350,0,1,1 +1774049789.624536,0.65,4,3992.50,47.67,1812.62,1866.34,0.00,20638.249174,28538.372205,1970327,515459,0.002507,0.003324,14919826,9417832,0,0,15352,0,1,1 +1774049794.624478,0.50,4,3992.50,47.67,1812.40,1866.55,0.00,3518477768276.497559,3518477760383.959473,11,0,0.002721,0.003964,14919890,9417913,0,0,15355,0,1,1 +1774049799.625134,0.60,4,3992.50,47.67,1812.42,1866.54,0.00,0.000000,0.000000,11,0,0.002795,0.004004,14919959,9417997,0,0,15357,0,1,1 +1774049804.624518,18.28,4,3992.50,48.11,1791.02,1883.66,0.00,0.176975,0.000000,199,0,0.033393,77.129798,14922218,9426469,0,0,15360,0,1,1 +1774049809.628800,29.76,4,3992.50,48.35,1773.12,1892.93,0.00,3515426339030.898438,0.000000,11,0,0.032309,122.272884,14924598,9439275,0,0,15362,0,1,1 +1774049814.624915,2.76,4,3992.50,48.32,1773.84,1891.73,0.00,0.177091,0.000000,199,0,0.005524,5.619445,14924847,9440014,0,0,15365,0,1,1 +1774049819.626056,12.22,4,3992.50,49.29,1735.91,1929.77,0.00,0.000000,0.000000,199,0,40.055866,0.022070,14929302,9441404,0,0,15367,0,1,1 +1774049824.624526,10.80,4,3992.50,48.51,1763.94,1899.08,0.00,1.832397,0.000195,238,2,0.022230,40.076919,14930731,9445763,0,0,15370,0,1,1 +1774049829.624856,0.75,4,3992.50,48.21,1775.52,1887.49,0.00,3518205309896.571289,3518205309898.403320,199,0,0.002557,0.006272,14930803,9445881,0,0,15372,0,1,1 +1774049834.628292,0.50,4,3992.50,47.86,1789.17,1873.85,0.00,20619.159011,28734.222309,1969695,517294,0.001144,0.003196,14930838,9445944,0,0,15375,0,1,1 +1774049839.624533,0.50,4,3992.50,47.87,1788.62,1874.40,0.00,0.000000,0.003909,1969695,517298,0.001153,0.003198,14930874,9446007,0,0,15377,0,1,1 +1774049844.624521,0.65,4,3992.50,47.87,1788.77,1874.25,0.00,3518445530485.540527,3518445522363.580078,226,83,0.001132,0.003198,14930908,9446070,0,0,15380,0,1,1 +1774049849.627411,0.40,4,3992.50,47.91,1787.40,1875.62,0.00,0.000000,0.000000,226,83,0.001169,0.003205,14930945,9446133,0,0,15382,0,1,1 +1774049854.624599,0.60,4,3992.50,47.92,1786.95,1876.07,0.00,3520417332385.983887,3520417332387.458496,11,0,0.000916,0.002578,14930973,9446185,0,0,15385,0,1,1 +1774049859.628821,0.50,4,3992.50,47.92,1786.97,1876.04,0.00,0.000000,0.000000,11,0,0.001143,0.003185,14931008,9446247,0,0,15387,0,1,1 +1774049864.624526,0.50,4,3992.50,47.92,1786.98,1876.03,0.00,0.000000,0.000000,11,0,0.001246,0.003325,14931051,9446318,0,0,15390,0,1,1 +1774049869.624734,0.55,4,3992.50,47.94,1786.25,1876.77,0.00,2.008705,0.000195,238,2,0.001213,0.003275,14931091,9446386,0,0,15392,0,1,1 +1774049874.628637,0.60,4,3992.50,47.95,1785.79,1877.21,0.00,3515693179418.051270,0.021858,226,83,0.001276,0.003947,14931135,9446462,0,0,15395,0,1,1 +1774049879.629385,0.50,4,3992.50,47.95,1785.80,1877.21,0.00,3517910292760.321289,3517910292761.618164,199,0,0.001144,0.003187,14931170,9446524,0,0,15397,0,1,1 +1774049884.628690,0.45,4,3992.50,47.95,1785.80,1877.21,0.00,3518926867556.693848,0.000000,70,0,0.001145,0.003198,14931205,9446587,0,0,15400,0,1,1 +1774049889.629181,0.65,4,3992.50,47.95,1785.80,1877.21,0.00,0.000000,0.000000,70,0,0.002901,0.003633,14931257,9446654,0,0,15402,0,1,1 +1774049894.628898,28.64,4,3992.50,54.44,1539.61,2131.62,0.00,3518636726845.199219,0.000000,11,0,56.086989,0.025122,14937169,9448200,0,0,15405,0,1,1 +1774049899.629542,30.63,4,3992.50,54.55,1541.32,2135.95,0.00,0.000000,0.000000,11,0,119.352453,0.022610,14949487,9449735,0,0,15407,0,1,1 +1774049904.628457,28.26,4,3992.50,54.26,1553.39,2124.46,0.00,0.000000,0.000000,11,0,118.987383,0.017701,14961565,9451056,0,0,15410,0,1,1 +1774049909.627445,28.59,4,3992.50,54.39,1548.50,2129.34,0.00,20637.684913,28762.321522,1969695,517542,119.386851,0.020204,14973680,9452500,0,0,15412,0,1,1 +1774049914.628303,28.64,4,3992.50,54.31,1551.43,2126.45,0.00,3517834146345.421875,3517834138223.821777,11,0,118.948538,0.034177,14985917,9455093,0,0,15415,0,1,1 +1774049919.624769,28.61,4,3992.50,54.10,1559.71,2118.12,0.00,20648.101341,28776.892630,1969695,517569,119.468516,0.067886,14998543,9460257,0,0,15417,0,1,1 +1774049924.626184,28.72,4,3992.50,54.14,1558.17,2119.72,0.00,3517441285249.763672,3517441277129.017090,11,0,118.942707,0.055133,15010914,9464494,0,0,15420,0,1,1 +1774049929.626210,28.55,4,3992.50,54.26,1553.52,2124.31,0.00,20633.400230,28756.491550,1969695,517619,119.969960,0.041904,15023217,9467623,0,0,15422,0,1,1 +1774049934.627387,20.94,4,3992.50,54.13,1558.72,2119.23,0.00,3517609504582.569824,3517609496461.347168,11,0,118.732555,0.024574,15035164,9469432,0,0,15425,0,1,1 +1774049939.628502,0.95,4,3992.50,47.89,1803.13,1874.82,0.00,20629.050352,28750.372452,1969712,517648,15.621788,0.006524,15036838,9469713,0,0,15427,0,1,1 +1774049944.628591,15.85,4,3992.50,49.01,1758.95,1918.98,0.00,3518374502074.898926,3518374493951.734375,199,0,18.123647,0.090001,15042899,9474243,0,0,15430,0,1,1 +1774049949.626685,15.28,4,3992.50,48.80,1767.29,1910.64,0.00,3519778642280.769043,0.000000,70,0,22.140059,0.094492,15050046,9479491,0,0,15432,0,1,1 +1774049954.628711,1.10,4,3992.50,48.24,1789.29,1888.63,0.00,0.126902,0.000000,199,0,0.007281,0.006651,15050195,9479635,0,0,15435,0,1,1 +1774049959.628698,0.85,4,3992.50,48.00,1798.46,1879.46,0.00,3518446632690.533691,0.000000,70,0,0.003249,0.005193,15050272,9479736,0,0,15437,0,1,1 +1774049964.624595,0.70,4,3992.50,47.81,1806.08,1871.84,0.00,1.960398,0.000195,238,2,0.002507,0.003333,15050330,9479805,0,0,15440,0,1,1 +1774049969.624595,0.60,4,3992.50,47.78,1807.36,1870.58,0.00,3518436648746.253418,3518436648748.085449,199,0,0.002734,0.003954,15050395,9479885,0,0,15442,0,1,1 +1774049974.628877,1.00,4,3992.50,47.81,1805.89,1872.04,0.00,1.317719,0.022051,226,83,0.002731,0.003961,15050460,9479966,0,0,15445,0,1,1 +1774049979.628606,0.55,4,3992.50,47.81,1805.90,1872.03,0.00,3518628091640.772949,3518628091642.247070,11,0,0.002721,0.003942,15050524,9480045,0,0,15447,0,1,1 +1774049984.624524,1.71,4,3992.50,47.83,1805.46,1872.46,0.00,0.050041,0.000000,70,0,0.002857,0.004131,15050599,9480137,0,0,15450,0,1,1 +1774049989.628057,1.95,4,3992.50,47.83,1805.23,1872.70,0.00,1.444780,0.022055,226,83,0.002732,0.003952,15050664,9480217,0,0,15452,0,1,1 +1774049994.624522,0.95,4,3992.50,47.83,1805.24,1872.69,0.00,3520926297447.718750,3520926297449.193848,11,0,0.002736,0.003967,15050729,9480298,0,0,15455,0,1,1 +1774049999.626928,1.00,4,3992.50,47.83,1805.26,1872.68,0.00,1.495081,0.022060,226,83,0.002707,0.003940,15050792,9480377,0,0,15457,0,1,1 +1774050004.628708,0.50,4,3992.50,47.83,1805.27,1872.66,0.00,0.000000,0.000000,226,83,0.002579,0.004026,15050855,9480454,0,0,15460,0,1,1 +1774050009.624566,0.55,4,3992.50,47.85,1804.38,1873.55,0.00,20649.277038,28782.255972,1969722,519322,0.002723,0.003958,15050919,9480534,0,0,15462,0,1,1 +1774050014.629335,0.65,4,3992.50,47.85,1804.38,1873.55,0.00,3515084076435.452637,3515084068318.252441,199,0,0.002731,0.003960,15050984,9480615,0,0,15465,0,1,1 +1774050019.627995,0.75,4,3992.50,47.85,1804.40,1873.54,0.00,1.832327,0.000195,238,2,0.002730,0.003963,15051049,9480696,0,0,15467,0,1,1 +1774050024.624523,0.55,4,3992.50,47.79,1806.77,1871.17,0.00,3520881617561.352539,3520881617563.362305,11,0,0.002736,0.003967,15051114,9480777,0,0,15470,0,1,1 +1774050029.626686,0.50,4,3992.50,47.79,1806.78,1871.16,0.00,20628.805710,28746.197416,1970485,519610,0.002732,0.003953,15051179,9480857,0,0,15472,0,1,1 +1774050034.625635,0.60,4,3992.50,47.79,1806.79,1871.14,0.00,3519176742534.080078,3519176734411.470215,11,0,0.002734,0.003965,15051244,9480938,0,0,15475,0,1,1 +1774050039.628645,0.50,4,3992.50,47.79,1806.81,1871.12,0.00,1.494901,0.022057,226,83,0.002503,0.003319,15051302,9481006,0,0,15477,0,1,1 +1774050044.628567,0.45,4,3992.50,47.73,1809.05,1868.87,0.00,3518492349990.114746,3518492349991.588379,11,0,0.002721,0.003964,15051366,9481087,0,0,15480,0,1,1 +1774050049.629142,13.81,4,3992.50,48.32,1783.23,1891.66,0.00,0.176933,0.000000,199,0,0.026977,58.082668,15053208,9487357,0,0,15482,0,1,1 +1774050054.628643,28.73,4,3992.50,48.50,1767.63,1898.97,0.00,1.318979,0.022073,226,83,0.060269,118.394902,15057800,9499895,0,0,15485,0,1,1 +1774050059.624597,7.99,4,3992.50,49.24,1736.65,1927.82,0.00,3521286557904.570801,3521286557906.045898,11,0,0.019250,28.674543,15059195,9503049,0,0,15487,0,1,1 +1774050064.629287,13.68,4,3992.50,49.05,1744.86,1920.48,0.00,0.000000,0.000000,11,0,40.027441,0.022695,15063628,9504481,0,0,15490,0,1,1 +1774050069.628577,0.80,4,3992.50,48.59,1762.88,1902.49,0.00,0.000000,0.000000,11,0,0.003371,0.004212,15063705,9504570,0,0,15492,0,1,1 +1774050074.624514,11.69,4,3992.50,48.00,1783.38,1879.46,0.00,20669.839061,29011.628494,1969862,521270,0.023088,40.100609,15065181,9508954,0,0,15495,0,1,1 +1774050079.629052,0.60,4,3992.50,47.83,1790.05,1872.80,0.00,3515247005255.121582,3515246996927.668945,11,0,0.001143,0.003185,15065216,9509016,0,0,15497,0,1,1 +1774050084.628829,0.55,4,3992.50,47.75,1793.50,1869.34,0.00,0.050002,0.000000,70,0,0.001152,0.003206,15065252,9509080,0,0,15500,0,1,1 +1774050089.625135,0.50,4,3992.50,47.77,1792.55,1870.30,0.00,20668.256575,29023.571887,1969862,521422,0.001145,0.003178,15065287,9509141,0,0,15502,0,1,1 +1774050094.628573,0.50,4,3992.50,47.79,1791.57,1871.28,0.00,3516019948424.729492,3516019940081.194336,199,0,0.000927,0.002606,15065316,9509195,0,0,15505,0,1,1 +1774050099.624598,0.55,4,3992.50,47.80,1791.33,1871.51,0.00,1.833294,0.000195,238,2,0.001145,0.003190,15065351,9509257,0,0,15507,0,1,1 +1774050104.628774,0.45,4,3992.50,47.80,1791.33,1871.51,0.00,3515500510218.376465,3515500510220.383301,11,0,0.000915,0.002562,15065379,9509308,0,0,15510,0,1,1 +1774050109.629204,0.45,4,3992.50,47.80,1791.34,1871.50,0.00,0.000000,0.000000,11,0,0.001169,0.003219,15065416,9509372,0,0,15512,0,1,1 +1774050114.629228,0.65,4,3992.50,47.80,1791.34,1871.50,0.00,20652.942003,29004.091361,1969862,521461,0.001253,0.003330,15065460,9509444,0,0,15515,0,1,1 +1774050119.628910,0.50,4,3992.50,47.80,1791.34,1871.50,0.00,3518660376154.263184,3518660367802.367188,199,0,0.001325,0.003345,15065507,9509518,0,0,15517,0,1,1 +1774050124.628654,0.55,4,3992.50,47.82,1790.60,1872.24,0.00,3518617836425.982422,0.000000,70,0,0.001144,0.003198,15065542,9509581,0,0,15520,0,1,1 +1774050129.626323,0.60,4,3992.50,47.82,1790.60,1872.23,0.00,20666.687986,29017.852950,1970625,521611,0.001158,0.003189,15065578,9509643,0,0,15522,0,1,1 +1774050134.628337,0.50,4,3992.50,47.82,1790.61,1872.23,0.00,0.000000,0.004686,1970625,521616,0.001144,0.003197,15065613,9509706,0,0,15525,0,1,1 +1774050139.629163,30.52,4,3992.50,54.13,1552.71,2119.21,0.00,3517856701064.776855,3517856692717.453125,226,83,60.680319,0.031431,15072010,9511691,0,0,15527,0,1,1 +1774050144.624816,30.20,4,3992.50,54.21,1555.62,2122.44,0.00,20673.580824,29029.664649,1970625,521747,120.273053,0.031914,15084407,9513966,0,0,15530,0,1,1 +1774050149.628397,27.69,4,3992.50,54.36,1550.27,2128.24,0.00,3515919616096.548828,3515919607753.167969,238,2,119.078051,0.018051,15096542,9515258,0,0,15532,0,1,1 +1774050154.625458,27.90,4,3992.50,54.24,1554.81,2123.63,0.00,3520505934915.577637,3520505934917.587402,11,0,119.237353,0.027336,15108771,9517256,0,0,15535,0,1,1 +1774050159.627201,27.87,4,3992.50,54.26,1554.14,2124.38,0.00,20645.845581,28994.423887,1969862,521703,120.132851,0.050863,15121074,9521111,0,0,15537,0,1,1 +1774050164.624766,28.38,4,3992.50,54.08,1561.03,2117.48,0.00,3520151609078.398438,3520151600720.831543,238,2,118.236974,0.066274,15133437,9526218,0,0,15540,0,1,1 +1774050169.625388,28.42,4,3992.50,54.23,1555.35,2123.12,0.00,20652.528118,29001.064143,1970625,521849,120.163652,0.055125,15145957,9530388,0,0,15542,0,1,1 +1774050174.624538,28.41,4,3992.50,54.41,1548.36,2130.17,0.00,3519035079324.318359,3519035070975.157227,199,0,118.205751,0.086909,15158376,9537068,0,0,15545,0,1,1 +1774050179.628201,19.62,4,3992.50,54.21,1556.06,2122.51,0.00,3515861603992.198730,0.000000,11,0,120.104204,0.089994,15171145,9543977,0,0,15547,0,1,1 +1774050184.627196,0.85,4,3992.50,47.98,1799.88,1878.69,0.00,0.000000,0.000000,11,0,9.421802,0.010980,15172266,9544567,0,0,15550,0,1,1 +1774050189.629370,13.97,4,3992.50,49.20,1752.24,1926.33,0.00,0.000000,0.000000,11,0,14.179348,0.074502,15177361,9548273,0,0,15552,0,1,1 +1774050194.626536,12.74,4,3992.50,48.09,1795.91,1882.65,0.00,20672.576034,29022.135213,1970888,522977,22.064355,0.095131,15184551,9553649,0,0,15555,0,1,1 +1774050199.628833,4.82,4,3992.50,48.21,1791.16,1887.38,0.00,3516821451426.140625,3516821443085.095215,70,0,4.032634,0.021640,15185940,9554616,0,0,15557,0,1,1 +1774050204.628981,0.85,4,3992.50,48.21,1791.20,1887.34,0.00,20656.133411,29004.870764,1970125,523022,0.002831,0.005767,15186010,9554718,0,0,15560,0,1,1 +1774050209.628774,21.31,4,3992.50,49.01,1755.05,1918.82,0.00,3518583222097.198730,3518583213747.740723,199,0,0.043081,86.331036,15189079,9563847,0,0,15562,0,1,1 +1774050214.628866,28.59,4,3992.50,48.69,1759.47,1906.15,0.00,20656.240752,29177.793065,1970129,524282,0.024367,118.767637,15190796,9576218,0,0,15565,0,1,1 +1774050219.629088,1.05,4,3992.50,48.47,1767.90,1897.61,0.00,0.000000,0.028612,1970129,524308,0.004387,0.007332,15190917,9576376,0,0,15567,0,1,1 +1774050224.629260,12.18,4,3992.50,49.10,1742.98,1922.55,0.00,3518316287621.643066,3518316279098.901367,226,83,40.063141,0.023450,15195320,9577864,0,0,15570,0,1,1 +1774050229.626964,0.60,4,3992.50,48.52,1765.87,1899.68,0.00,20684.177191,29191.992280,1970286,524440,0.004164,0.004156,15195412,9577956,0,0,15572,0,1,1 +1774050234.628907,0.85,4,3992.50,48.20,1778.51,1887.05,0.00,3517070242982.973145,3517070234483.841309,11,0,0.003459,0.006227,15195494,9578063,0,0,15575,0,1,1 +1774050239.629081,0.55,4,3992.50,48.20,1778.57,1887.01,0.00,0.000000,0.000000,11,0,0.002759,0.003985,15195561,9578145,0,0,15577,0,1,1 +1774050244.628785,0.70,4,3992.50,48.17,1779.77,1885.80,0.00,0.000000,0.000000,11,0,0.003403,0.004886,15195629,9578228,0,0,15580,0,1,1 +1774050249.624601,0.60,4,3992.50,48.10,1782.44,1883.12,0.00,2.010472,0.000195,238,2,0.002736,0.003958,15195694,9578308,0,0,15582,0,1,1 +1774050254.624600,0.50,4,3992.50,48.13,1781.24,1884.33,0.00,20678.240693,29211.687578,1971055,524913,0.002538,0.003370,15195755,9578380,0,0,15585,0,1,1 +1774050259.627515,0.50,4,3992.50,48.13,1781.25,1884.32,0.00,3516387056487.239258,3516387047958.766602,238,2,0.002732,0.003952,15195820,9578460,0,0,15587,0,1,1 +1774050264.625546,0.50,4,3992.50,48.13,1781.26,1884.31,0.00,3519823398404.811035,0.021884,226,83,0.002586,0.003407,15195883,9578535,0,0,15590,0,1,1 +1774050269.628873,0.50,4,3992.50,48.13,1781.27,1884.30,0.00,3516097731063.168945,3516097731064.641602,11,0,0.002732,0.004595,15195948,9578619,0,0,15592,0,1,1 +1774050274.628724,0.75,4,3992.50,47.74,1796.58,1869.01,0.00,0.050001,0.000000,70,0,0.002734,0.003964,15196013,9578700,0,0,15595,0,1,1 +1774050279.629051,0.40,4,3992.50,47.73,1796.71,1868.88,0.00,20678.841813,29210.044304,1971055,525224,0.002816,0.003990,15196084,9578783,0,0,15597,0,1,1 +1774050284.629429,0.50,4,3992.50,47.68,1798.69,1866.91,0.00,3518171215162.723145,3518171206631.657227,11,0,0.002733,0.003964,15196149,9578864,0,0,15600,0,1,1 +1774050289.629387,0.65,4,3992.50,47.71,1797.71,1867.88,0.00,0.050000,0.000000,70,0,0.002734,0.003954,15196214,9578944,0,0,15602,0,1,1 +1774050294.628677,9.09,4,3992.50,48.81,1752.64,1911.04,0.00,20683.128608,29216.228179,1971055,525373,0.023291,34.058414,15197767,9582628,0,0,15605,0,1,1 +1774050299.629224,2.66,4,3992.50,48.10,1780.10,1883.23,0.00,3518052667862.808594,3518052659329.893555,238,2,0.005424,6.014184,15198068,9583389,0,0,15607,0,1,1 +1774050304.626076,1.05,4,3992.50,48.13,1779.07,1884.27,0.00,3520654006985.586426,0.021889,226,83,0.000916,0.002566,15198096,9583440,0,0,15610,0,1,1 +1774050309.628747,0.65,4,3992.50,48.09,1780.59,1882.74,0.00,20667.710715,29232.644661,1971058,525706,0.001152,0.003194,15198132,9583503,0,0,15612,0,1,1 +1774050314.628945,0.70,4,3992.50,48.12,1779.36,1883.97,0.00,3518297818575.125488,3518297810007.428711,11,0,0.001144,0.003198,15198167,9583566,0,0,15615,0,1,1 +1774050319.629459,0.95,4,3992.50,48.11,1779.62,1883.71,0.00,20674.056270,29245.268487,1970295,525630,0.001144,0.003188,15198202,9583628,0,0,15617,0,1,1 +1774050324.629017,0.75,4,3992.50,48.11,1779.62,1883.71,0.00,3518747908426.072754,3518747899853.222168,11,0,0.001145,0.003198,15198237,9583691,0,0,15620,0,1,1 +1774050329.627826,0.65,4,3992.50,48.08,1780.93,1882.41,0.00,20685.176062,29259.279375,1971059,525742,0.001170,0.003220,15198274,9583755,0,0,15622,0,1,1 +1774050334.625403,0.70,4,3992.50,48.10,1780.19,1883.14,0.00,3520143124187.968262,3520143115611.750977,11,0,0.001183,0.003906,15198312,9583826,0,0,15625,0,1,1 +1774050339.627566,0.75,4,3992.50,48.10,1779.95,1883.38,0.00,0.049978,0.000000,70,0,0.001069,0.003075,15198352,9583891,0,0,15627,0,1,1 +1774050344.627216,0.70,4,3992.50,48.10,1779.95,1883.38,0.00,1.958926,0.000195,238,2,0.001217,0.002903,15198391,9583956,0,0,15630,0,1,1 +1774050349.629082,1.45,4,3992.50,48.10,1779.96,1883.38,0.00,20666.460791,29241.457047,1970296,525719,0.001144,0.003187,15198426,9584018,0,0,15632,0,1,1 +1774050354.629207,0.80,4,3992.50,48.11,1779.74,1883.59,0.00,3518349537676.044434,3518349529100.020020,70,0,0.002153,0.005371,15198487,9584125,0,0,15635,0,1,1 +1774050359.625203,34.06,4,3992.50,54.23,1547.80,2123.11,0.00,20692.700708,29275.826007,1970296,525760,66.351799,0.036466,15205483,9586514,0,0,15637,0,1,1 +1774050364.624470,29.88,4,3992.50,54.46,1545.26,2132.06,0.00,3518953061096.944336,3518953052518.009766,226,83,120.183286,0.033979,15217712,9588974,0,0,15640,0,1,1 +1774050369.624508,27.90,4,3992.50,54.33,1550.35,2127.23,0.00,3518410786320.381348,3518410786321.854980,11,0,118.162032,0.028571,15229870,9591177,0,0,15642,0,1,1 +1774050374.628818,28.11,4,3992.50,54.41,1547.53,2130.11,0.00,2.007059,0.000195,238,2,120.063707,0.028627,15242275,9593234,0,0,15645,0,1,1 +1774050379.629091,27.90,4,3992.50,54.32,1550.80,2126.85,0.00,3518244937499.005859,3518244937501.014648,11,0,118.355631,0.016275,15254358,9594443,0,0,15647,0,1,1 +1774050384.625369,28.22,4,3992.50,54.48,1544.55,2133.09,0.00,0.177085,0.000000,199,0,120.054167,0.026146,15266466,9596404,0,0,15650,0,1,1 +1774050389.628374,27.95,4,3992.50,54.47,1544.98,2132.70,0.00,3516323799119.420898,0.000000,11,0,119.098628,0.033510,15278800,9598859,0,0,15652,0,1,1 +1774050394.624730,28.21,4,3992.50,54.42,1547.22,2130.47,0.00,0.000000,0.000000,11,0,119.257981,0.045945,15290968,9602392,0,0,15655,0,1,1 +1774050399.624540,18.11,4,3992.50,54.58,1540.65,2137.09,0.00,0.050002,0.000000,70,0,119.373585,0.042123,15303136,9605611,0,0,15657,0,1,1 +1774050404.629366,0.85,4,3992.50,49.10,1755.50,1922.23,0.00,20656.327593,29224.643958,1970309,525990,4.606942,0.006544,15303736,9605844,0,0,15660,0,1,1 +1774050409.629132,15.71,4,3992.50,48.09,1795.09,1882.65,0.00,0.000000,0.152351,1970309,526407,14.111248,0.077897,15308726,9609568,0,0,15662,0,1,1 +1774050414.627909,13.94,4,3992.50,48.83,1765.89,1911.82,0.00,3519297731111.300781,3519297722532.463379,70,0,26.155863,0.111441,15317126,9615926,0,0,15665,0,1,1 +1774050419.629050,0.95,4,3992.50,48.41,1782.33,1895.35,0.00,20675.615102,29246.794750,1971072,527244,0.003218,0.004687,15317201,9616016,0,0,15667,0,1,1 +1774050424.628508,1.20,4,3992.50,48.16,1792.06,1885.67,0.00,3518818054512.584473,3518818045938.571289,11,0,0.002734,0.003965,15317266,9616097,0,0,15670,0,1,1 +1774050429.625759,0.55,4,3992.50,48.17,1791.82,1885.90,0.00,20687.692174,29270.015281,1970309,527286,0.002735,0.003956,15317331,9616177,0,0,15672,0,1,1 +1774050434.624786,0.95,4,3992.50,48.19,1790.86,1886.87,0.00,3519122229689.832031,3519122221110.557617,11,0,0.002759,0.003965,15317398,9616258,0,0,15675,0,1,1 +1774050439.625379,0.45,4,3992.50,48.20,1790.62,1887.10,0.00,1.495623,0.022068,226,83,0.002115,0.003717,15317451,9616331,0,0,15677,0,1,1 +1774050444.628987,19.75,4,3992.50,48.52,1769.55,1899.62,0.00,20663.976210,29275.584588,1971073,527885,0.035870,80.463697,15319923,9624972,0,0,15680,0,1,1 +1774050449.624484,28.37,4,3992.50,48.62,1761.04,1903.64,0.00,3521609025385.227051,3521609016761.110352,11,0,0.030033,118.876566,15322124,9637366,0,0,15682,0,1,1 +1774050454.628514,3.50,4,3992.50,48.24,1775.73,1888.58,0.00,0.000000,0.000000,11,0,0.005688,5.811374,15322331,9638141,0,0,15685,0,1,1 +1774050459.628771,14.39,4,3992.50,52.91,1593.99,2071.55,0.00,0.000000,0.000000,11,0,32.823579,0.022222,15326000,9639502,0,0,15687,0,1,1 +1774050464.626727,1.15,4,3992.50,49.76,1717.11,1948.41,0.00,20704.160735,29446.156897,1970458,528839,7.248907,0.009480,15326910,9639767,0,0,15690,0,1,1 +1774050469.625554,0.50,4,3992.50,48.96,1748.50,1917.05,0.00,4.065700,0.071013,1971221,528974,0.002722,0.003955,15326974,9639847,0,0,15692,0,1,1 +1774050474.629112,0.60,4,3992.50,48.34,1773.07,1892.47,0.00,3515934884668.653809,3515934875940.437012,11,0,0.002732,0.003961,15327039,9639928,0,0,15695,0,1,1 +1774050479.628839,0.55,4,3992.50,48.31,1774.00,1891.54,0.00,20700.893123,29448.980345,1971221,529129,0.002721,0.003955,15327103,9640008,0,0,15697,0,1,1 +1774050484.629486,0.65,4,3992.50,48.33,1773.30,1892.22,0.00,3517981765744.660645,3517981756996.709961,226,83,0.002504,0.003330,15327161,9640077,0,0,15700,0,1,1 +1774050489.628628,0.60,4,3992.50,48.33,1773.32,1892.22,0.00,3519041280469.827148,3519041280471.301270,11,0,0.004746,0.005045,15327252,9640174,0,0,15702,0,1,1 +1774050494.628616,0.70,4,3992.50,48.35,1772.38,1893.16,0.00,0.050000,0.000000,70,0,0.003642,0.004426,15327334,9640266,0,0,15705,0,1,1 +1774050499.629234,0.60,4,3992.50,48.35,1772.39,1893.15,0.00,1.445622,0.022068,226,83,0.002827,0.004029,15327405,9640352,0,0,15707,0,1,1 +1774050504.628681,0.50,4,3992.50,48.35,1772.40,1893.14,0.00,20696.490580,29463.195177,1970459,529343,0.002729,0.003973,15327470,9640434,0,0,15710,0,1,1 +1774050509.628636,0.40,4,3992.50,48.33,1773.24,1892.30,0.00,3518468529297.773438,3518468520533.434082,11,0,0.002580,0.003406,15327533,9640508,0,0,15712,0,1,1 +1774050514.624545,0.55,4,3992.50,48.30,1774.31,1891.23,0.00,1.497026,0.022088,226,83,0.002117,0.003685,15327586,9640579,0,0,15715,0,1,1 +1774050519.629031,11.24,4,3992.50,48.41,1767.44,1895.51,0.00,20675.654898,29463.728113,1970462,529718,0.024864,40.029067,15329241,9644963,0,0,15717,0,1,1 +1774050524.624521,0.50,4,3992.50,48.35,1769.77,1893.18,0.00,0.000000,0.008602,1970462,529721,0.001145,0.003201,15329276,9645026,0,0,15720,0,1,1 +1774050529.629090,0.65,4,3992.50,48.37,1769.04,1893.91,0.00,3515224686214.722168,3515224677428.259277,11,0,0.001143,0.003828,15329311,9645092,0,0,15722,0,1,1 +1774050534.625265,0.50,4,3992.50,48.38,1768.82,1894.13,0.00,0.050038,0.000000,70,0,0.001170,0.003231,15329348,9645157,0,0,15725,0,1,1 +1774050539.629484,0.55,4,3992.50,48.38,1768.82,1894.12,0.00,0.000000,0.000000,70,0,0.001169,0.003216,15329385,9645221,0,0,15727,0,1,1 +1774050544.624690,0.60,4,3992.50,48.38,1768.82,1894.12,0.00,1.447188,0.022091,226,83,0.001154,0.003209,15329421,9645285,0,0,15730,0,1,1 +1774050549.625263,0.60,4,3992.50,48.38,1768.87,1894.07,0.00,20691.835795,29496.855222,1970466,529797,0.000915,0.002554,15329449,9645335,0,0,15732,0,1,1 +1774050554.624530,0.90,4,3992.50,48.38,1768.88,1894.07,0.00,3518953170885.371094,3518953162077.516113,238,2,0.001195,0.003261,15329488,9645402,0,0,15735,0,1,1 +1774050559.626137,0.50,4,3992.50,48.38,1768.88,1894.07,0.00,3517306867449.349609,3517306867451.357422,11,0,0.001194,0.003249,15329527,9645468,0,0,15737,0,1,1 +1774050564.628763,0.65,4,3992.50,48.38,1768.88,1894.08,0.00,20688.900897,29484.855642,1971229,529940,0.001350,0.003384,15329576,9645545,0,0,15740,0,1,1 +1774050569.625374,0.50,4,3992.50,48.38,1768.88,1894.08,0.00,0.000000,0.006254,1971229,529944,0.000916,0.002556,15329604,9645595,0,0,15742,0,1,1 +1774050574.629153,0.50,4,3992.50,48.38,1768.88,1894.08,0.00,3515780111651.457520,3515780111655.500977,1970466,529863,0.001144,0.003195,15329639,9645658,0,0,15745,0,1,1 +1774050579.624557,22.77,4,3992.50,54.19,1547.63,2121.48,0.00,3521673754278.025391,3521673745465.248535,70,0,22.056574,0.019429,15332107,9646814,0,0,15747,0,1,1 +1774050584.625584,31.99,4,3992.50,54.28,1550.09,2125.18,0.00,0.000000,0.000000,70,0,118.143464,0.034186,15344341,9649220,0,0,15750,0,1,1 +1774050589.627049,27.65,4,3992.50,54.98,1525.30,2152.43,0.00,20693.656979,29491.879934,1971230,530094,119.730577,0.016772,15356669,9650466,0,0,15752,0,1,1 +1774050594.629269,27.84,4,3992.50,54.40,1547.63,2130.01,0.00,3516875412040.327148,3516875403243.483398,11,0,118.512300,0.020583,15368894,9651874,0,0,15755,0,1,1 +1774050599.628569,28.00,4,3992.50,54.43,1546.73,2130.91,0.00,1.496010,0.022073,226,83,120.182745,0.019347,15381174,9653145,0,0,15757,0,1,1 +1774050604.625326,27.58,4,3992.50,54.22,1554.87,2122.81,0.00,20707.639974,29519.684628,1970467,530048,118.237685,0.023225,15392995,9654857,0,0,15760,0,1,1 +1774050609.628857,28.40,4,3992.50,54.35,1549.76,2127.91,0.00,4.075931,0.125985,1971240,530171,120.084544,0.025007,15405437,9656610,0,0,15762,0,1,1 +1774050614.629219,28.07,4,3992.50,54.21,1555.29,2122.39,0.00,3518182058767.838867,3518182049967.524414,70,0,118.159229,0.030739,15417671,9658806,0,0,15765,0,1,1 +1774050619.628614,28.22,4,3992.50,54.24,1553.90,2123.74,0.00,1.445976,0.022073,226,83,120.184358,0.030218,15430069,9661063,0,0,15767,0,1,1 +1774050624.627191,1.31,4,3992.50,49.01,1758.92,1918.79,0.00,20700.255342,29509.324219,1970490,530175,50.088549,0.014364,15435344,9662001,0,0,15770,0,1,1 +1774050629.626430,9.03,4,3992.50,48.00,1798.39,1879.34,0.00,3518973119348.061035,3518973110541.455566,199,0,6.049862,0.036830,15437431,9663552,0,0,15772,0,1,1 +1774050634.626719,14.42,4,3992.50,48.97,1760.36,1917.37,0.00,0.000000,0.000000,199,0,20.178604,0.088080,15443937,9668304,0,0,15775,0,1,1 +1774050639.629103,9.34,4,3992.50,48.64,1773.29,1904.42,0.00,20689.881464,29487.675502,1971254,531420,14.027321,0.065653,15448659,9671929,0,0,15777,0,1,1 +1774050644.624506,20.79,4,3992.50,48.54,1772.54,1900.49,0.00,3521675360225.030273,3521675351415.066406,70,0,0.039348,82.801672,15451389,9680841,0,0,15780,0,1,1 +1774050649.628451,28.89,4,3992.50,48.80,1754.09,1910.54,0.00,1.957245,0.000195,238,2,0.022947,120.078181,15453021,9693430,0,0,15782,0,1,1 +1774050654.624540,2.25,4,3992.50,48.14,1779.43,1884.95,0.00,3521191625115.278809,0.021892,226,83,0.005704,2.213777,15453185,9693843,0,0,15785,0,1,1 +1774050659.628745,14.15,4,3992.50,49.80,1714.73,1949.61,0.00,3515480626396.253906,3515480626397.726074,11,0,40.032329,0.023904,15457719,9695387,0,0,15787,0,1,1 +1774050664.628794,0.95,4,3992.50,48.90,1749.88,1914.50,0.00,20719.105122,29706.928928,1971420,532961,0.005921,0.007998,15457845,9695526,0,0,15790,0,1,1 +1774050669.628812,0.55,4,3992.50,48.45,1767.52,1896.87,0.00,3518424553501.320801,3518424544513.440918,11,0,0.002834,0.004079,15457918,9695614,0,0,15792,0,1,1 +1774050674.629488,0.60,4,3992.50,48.05,1783.18,1881.22,0.00,0.000000,0.000000,11,0,0.002733,0.003951,15457983,9695694,0,0,15795,0,1,1 +1774050679.624536,0.50,4,3992.50,48.09,1781.69,1882.71,0.00,0.000000,0.000000,11,0,0.002736,0.003958,15458048,9695774,0,0,15797,0,1,1 +1774050684.628696,0.60,4,3992.50,48.13,1779.98,1884.41,0.00,0.049958,0.000000,70,0,0.002731,0.003961,15458113,9695855,0,0,15800,0,1,1 +1774050689.629318,0.50,4,3992.50,48.14,1779.75,1884.65,0.00,0.126937,0.000000,199,0,0.002530,0.003351,15458173,9695925,0,0,15802,0,1,1 +1774050694.624517,0.55,4,3992.50,48.14,1779.51,1884.88,0.00,0.000000,0.000000,199,0,0.002736,0.003968,15458238,9696006,0,0,15805,0,1,1 +1774050699.627984,0.50,4,3992.50,48.12,1780.55,1883.84,0.00,3515998535504.387695,0.000000,11,0,0.002833,0.004035,15458310,9696093,0,0,15807,0,1,1 +1774050704.624526,0.60,4,3992.50,48.13,1779.83,1884.58,0.00,0.000000,0.000000,11,0,0.002736,0.003967,15458375,9696174,0,0,15810,0,1,1 +1774050709.625729,0.65,4,3992.50,48.13,1779.85,1884.56,0.00,20714.326490,29700.672035,1971420,533431,0.002820,0.003993,15458446,9696257,0,0,15812,0,1,1 +1774050714.628776,0.45,4,3992.50,48.07,1782.38,1882.01,0.00,3516293860076.587891,3516293851092.083984,226,83,0.002732,0.003962,15458511,9696338,0,0,15815,0,1,1 +1774050719.625208,0.50,4,3992.50,48.09,1781.66,1882.74,0.00,3520950202586.045410,3520950202587.470215,70,0,0.002736,0.003945,15458576,9696417,0,0,15817,0,1,1 +1774050724.625747,0.75,4,3992.50,48.09,1781.68,1882.73,0.00,3518057435286.622559,0.000000,11,0,0.002733,0.003951,15458641,9696497,0,0,15820,0,1,1 +1774050729.629029,0.45,4,3992.50,48.09,1781.69,1882.71,0.00,0.000000,0.000000,11,0,0.002503,0.003975,15458699,9696570,0,0,15822,0,1,1 +1774050734.628735,0.85,4,3992.50,48.13,1779.76,1884.55,0.00,0.176964,0.000000,199,0,0.007087,1.009176,15458944,9696905,0,0,15825,0,1,1 +1774050739.628937,10.54,4,3992.50,47.87,1787.72,1874.02,0.00,0.000000,0.000000,199,0,0.017962,39.057564,15460237,9701007,0,0,15827,0,1,1 +1774050744.627708,1.05,4,3992.50,47.77,1792.74,1870.13,0.00,1.832286,0.000195,238,2,0.001720,0.004105,15460286,9701088,0,0,15830,0,1,1 +1774050749.628567,0.40,4,3992.50,47.82,1790.78,1872.09,0.00,3517832264855.765625,3517832264857.773926,11,0,0.001144,0.003187,15460321,9701150,0,0,15832,0,1,1 +1774050754.628435,0.55,4,3992.50,47.66,1796.80,1866.07,0.00,20715.791619,29746.877211,1970658,533871,0.001144,0.003198,15460356,9701213,0,0,15835,0,1,1 +1774050759.628850,0.50,4,3992.50,47.63,1798.17,1864.69,0.00,3518145608481.749512,3518145599451.601074,70,0,0.001144,0.003188,15460391,9701275,0,0,15837,0,1,1 +1774050764.626456,0.45,4,3992.50,47.66,1796.94,1865.92,0.00,0.000000,0.000000,70,0,0.001145,0.003199,15460426,9701338,0,0,15840,0,1,1 +1774050769.628742,0.50,4,3992.50,47.66,1796.95,1865.91,0.00,0.126895,0.000000,199,0,0.001177,0.003226,15460464,9701403,0,0,15842,0,1,1 +1774050774.624913,0.70,4,3992.50,47.69,1795.73,1867.14,0.00,20730.944945,29770.975356,1970658,533899,0.001183,0.003263,15460502,9701470,0,0,15845,0,1,1 +1774050779.628544,0.50,4,3992.50,47.70,1795.48,1867.39,0.00,3515884218148.415527,3515884209120.032715,238,2,0.000990,0.002646,15460536,9701526,0,0,15847,0,1,1 +1774050784.625181,0.50,4,3992.50,47.65,1797.09,1865.77,0.00,3520804878337.630859,3520804878339.463867,199,0,0.001207,0.003250,15460575,9701593,0,0,15850,0,1,1 +1774050789.628592,0.65,4,3992.50,47.68,1796.11,1866.75,0.00,3516039048741.321289,0.000000,11,0,0.003222,0.004340,15460640,9701678,0,0,15852,0,1,1 +1774050794.625492,0.65,4,3992.50,47.62,1798.39,1864.48,0.00,2.010035,0.000195,238,2,0.002255,0.004460,15460697,9701759,0,0,15855,0,1,1 +1774050799.624506,0.45,4,3992.50,47.52,1802.23,1860.64,0.00,0.000000,0.000000,238,2,0.001145,0.003189,15460732,9701821,0,0,15857,0,1,1 +1774050804.624599,29.31,4,3992.50,54.51,1536.75,2134.27,0.00,3518371092355.348145,3518371092357.306641,70,0,53.680166,0.031374,15466448,9703849,0,0,15860,0,1,1 +1774050809.627000,30.16,4,3992.50,54.51,1543.22,2134.07,0.00,20709.317865,29734.159475,1971421,534206,118.705782,0.040789,15478466,9706890,0,0,15862,0,1,1 +1774050814.629129,28.13,4,3992.50,54.54,1541.99,2135.32,0.00,3516939287848.465820,3516939278823.135742,70,0,119.514264,0.020748,15490652,9708300,0,0,15865,0,1,1 +1774050819.629194,27.94,4,3992.50,54.55,1541.70,2135.57,0.00,3518391625304.931152,0.000000,11,0,119.162212,0.026551,15502809,9710302,0,0,15867,0,1,1 +1774050824.626322,28.50,4,3992.50,54.13,1557.92,2119.43,0.00,0.000000,0.000000,11,0,119.240520,0.039245,15515272,9713240,0,0,15870,0,1,1 +1774050829.628826,28.15,4,3992.50,54.32,1550.50,2126.81,0.00,2.007784,0.000195,238,2,119.703171,0.047144,15527363,9716806,0,0,15872,0,1,1 +1774050834.625555,28.27,4,3992.50,54.29,1551.85,2125.39,0.00,20726.796196,29768.032806,1970658,534192,118.640638,0.023832,15539506,9718575,0,0,15875,0,1,1 +1774050839.624526,28.23,4,3992.50,54.17,1556.34,2120.95,0.00,3519161132400.307617,3519161123365.136719,11,0,120.192093,0.031331,15551895,9720915,0,0,15877,0,1,1 +1774050844.628853,21.21,4,3992.50,54.18,1556.20,2121.16,0.00,0.000000,0.000000,11,0,118.259144,0.040637,15563826,9723963,0,0,15880,0,1,1 +1774050849.624694,0.90,4,3992.50,48.86,1764.48,1912.88,0.00,2.010462,0.000195,238,2,18.244233,0.006042,15565779,9724237,0,0,15882,0,1,1 +1774050854.624513,9.83,4,3992.50,48.51,1778.07,1899.25,0.00,3518564466913.581543,3518564466915.414062,199,0,4.046222,0.031397,15567444,9725493,0,0,15885,0,1,1 +1774050859.624529,21.16,4,3992.50,48.46,1779.97,1897.37,0.00,3518425598782.232422,0.000000,11,0,36.212051,0.155497,15579130,9734277,0,0,15887,0,1,1 +1774050864.624535,1.00,4,3992.50,48.01,1797.45,1879.84,0.00,1.495799,0.022070,226,83,0.006036,0.007116,15579260,9734421,0,0,15890,0,1,1 +1774050869.628140,0.70,4,3992.50,47.80,1805.77,1871.57,0.00,0.512619,3515902442222.414062,238,2,0.002744,0.003951,15579326,9734501,0,0,15892,0,1,1 +1774050874.629368,12.75,4,3992.50,48.32,1781.44,1891.77,0.00,3517573140255.320312,3517573140257.278320,70,0,0.028901,51.066210,15581287,9740020,0,0,15895,0,1,1 +1774050879.628388,29.11,4,3992.50,48.32,1774.89,1892.03,0.00,20723.490091,29888.107338,1971443,536606,0.029157,118.592617,15583376,9752402,0,0,15897,0,1,1 +1774050884.625071,9.85,4,3992.50,48.01,1784.54,1879.78,0.00,3520773297297.189941,3520773288126.325195,238,2,0.012081,35.480154,15584090,9756241,0,0,15900,0,1,1 +1774050889.628563,14.19,4,3992.50,50.06,1705.06,1959.97,0.00,20718.312141,29934.321339,1970873,537087,40.035430,0.026193,15588445,9757950,0,0,15902,0,1,1 +1774050894.629037,0.60,4,3992.50,48.99,1746.92,1918.15,0.00,3518103566388.704102,3518103557167.667969,226,83,0.005081,0.004932,15588557,9758063,0,0,15905,0,1,1 +1774050899.629335,0.85,4,3992.50,48.48,1766.82,1898.27,0.00,3518227188309.875000,3518227188311.171875,199,0,0.003472,0.006219,15588640,9758169,0,0,15907,0,1,1 +1774050904.629340,0.55,4,3992.50,48.31,1773.57,1891.52,0.00,0.000000,0.000000,199,0,0.002708,0.003939,15588703,9758248,0,0,15910,0,1,1 +1774050909.626111,0.40,4,3992.50,48.30,1774.19,1890.90,0.00,3520711447649.796875,0.000000,70,0,0.002506,0.003335,15588761,9758317,0,0,15912,0,1,1 +1774050914.629088,0.55,4,3992.50,48.31,1773.73,1891.35,0.00,0.000000,0.000000,70,0,0.002740,0.003970,15588827,9758399,0,0,15915,0,1,1 +1774050919.628635,0.75,4,3992.50,48.30,1774.09,1891.00,0.00,20740.687388,29958.351015,1971636,537485,0.002759,0.003986,15588894,9758481,0,0,15917,0,1,1 +1774050924.625232,0.50,4,3992.50,48.30,1774.09,1890.99,0.00,0.000000,0.102804,1971636,537584,0.002735,0.004611,15588959,9758566,0,0,15920,0,1,1 +1774050929.628609,0.45,4,3992.50,48.30,1774.11,1890.97,0.00,3516062546390.821777,3516062537178.155273,238,2,0.002825,0.004027,15589030,9758652,0,0,15922,0,1,1 +1774050934.628867,0.65,4,3992.50,48.16,1779.64,1885.45,0.00,3518255288344.043945,3518255288346.052734,11,0,0.003403,0.004886,15589098,9758735,0,0,15925,0,1,1 +1774050939.629037,0.45,4,3992.50,48.16,1779.65,1885.43,0.00,20738.152110,29954.825171,1971636,537678,0.002734,0.003954,15589163,9758815,0,0,15927,0,1,1 +1774050944.628656,0.45,4,3992.50,48.16,1779.66,1885.44,0.00,3518705554890.828125,3518705545673.139160,11,0,0.002588,0.003379,15589227,9758888,0,0,15930,0,1,1 +1774050949.627501,0.55,4,3992.50,48.16,1779.67,1885.43,0.00,0.176994,0.000000,199,0,0.002734,0.003955,15589292,9758968,0,0,15932,0,1,1 +1774050954.626046,0.80,4,3992.50,48.19,1778.50,1886.58,0.00,1.832369,0.000195,238,2,0.003743,0.006140,15589383,9759093,0,0,15935,0,1,1 +1774050959.628671,2.26,4,3992.50,48.33,1772.47,1892.23,0.00,3516591359922.823730,3516591359924.831055,11,0,0.011312,5.812353,15590014,9759969,0,0,15937,0,1,1 +1774050964.629143,9.28,4,3992.50,48.37,1768.84,1893.69,0.00,20736.899693,29991.343581,1971636,538140,0.012384,34.250734,15590810,9763559,0,0,15940,0,1,1 +1774050969.628206,0.85,4,3992.50,47.94,1785.49,1877.09,0.00,0.000000,0.037605,1971636,538179,0.000903,0.002555,15590837,9763609,0,0,15942,0,1,1 +1774050974.628767,0.45,4,3992.50,47.99,1783.53,1879.05,0.00,3518042873937.737793,3518042864683.370605,70,0,0.001132,0.003198,15590871,9763672,0,0,15945,0,1,1 +1774050979.629447,0.45,4,3992.50,47.99,1783.54,1879.04,0.00,3517958873422.314453,0.000000,11,0,0.001132,0.003188,15590905,9763734,0,0,15947,0,1,1 +1774050984.628306,0.50,4,3992.50,48.01,1782.80,1879.77,0.00,0.000000,0.000000,11,0,0.001153,0.003207,15590941,9763798,0,0,15950,0,1,1 +1774050989.624518,0.45,4,3992.50,48.01,1782.81,1879.77,0.00,20750.509533,30017.031313,1970873,538146,0.001145,0.003835,15590976,9763864,0,0,15952,0,1,1 +1774050994.628703,0.50,4,3992.50,48.01,1782.82,1879.76,0.00,3515495123012.563477,3515495113760.626953,199,0,0.001169,0.003226,15591013,9763929,0,0,15955,0,1,1 +1774050999.624597,0.45,4,3992.50,48.01,1782.82,1879.75,0.00,3521328418117.220215,0.000000,11,0,0.001183,0.003253,15591051,9763995,0,0,15957,0,1,1 +1774051004.627019,0.55,4,3992.50,47.93,1786.04,1876.54,0.00,20728.813781,29981.805961,1971636,538257,0.000991,0.002656,15591085,9764052,0,0,15960,0,1,1 +1774051009.628682,0.45,4,3992.50,47.96,1784.82,1877.76,0.00,3517267719472.770996,3517267719476.818848,1970873,538178,0.001299,0.003313,15591130,9764124,0,0,15962,0,1,1 +1774051014.629391,0.45,4,3992.50,47.96,1784.83,1877.75,0.00,0.000000,0.019528,1970873,538183,0.001144,0.003197,15591165,9764187,0,0,15965,0,1,1 +1774051019.629110,0.50,4,3992.50,47.96,1784.84,1877.75,0.00,3518634879834.224609,3518634870572.161133,11,0,0.001144,0.003188,15591200,9764249,0,0,15967,0,1,1 +1774051024.629188,0.50,4,3992.50,47.96,1784.84,1877.74,0.00,0.000000,0.000000,11,0,0.001152,0.003206,15591236,9764313,0,0,15970,0,1,1 +1774051029.628716,30.92,4,3992.50,54.44,1540.04,2131.36,0.00,0.000000,0.000000,11,0,63.298173,0.030096,15597831,9766289,0,0,15972,0,1,1 +1774051034.627765,30.05,4,3992.50,54.31,1550.64,2126.50,0.00,0.176987,0.000000,199,0,118.183764,0.042308,15609779,9769524,0,0,15975,0,1,1 +1774051039.626907,28.24,4,3992.50,54.30,1551.29,2125.84,0.00,20738.173598,30001.676828,1970873,538375,120.187031,0.040794,15622004,9772509,0,0,15977,0,1,1 +1774051044.625290,28.20,4,3992.50,54.16,1556.48,2120.59,0.00,3519575718101.587891,3519575708834.845703,238,2,118.201588,0.039969,15634034,9775443,0,0,15980,0,1,1 +1774051049.625672,28.23,4,3992.50,54.23,1553.79,2123.35,0.00,3518168211852.109863,0.021873,226,83,120.156849,0.045426,15646312,9778915,0,0,15982,0,1,1 +1774051054.628625,27.86,4,3992.50,54.26,1552.75,2124.37,0.00,3516360431642.112793,3516360431643.535645,70,0,118.092421,0.053067,15658337,9782914,0,0,15985,0,1,1 +1774051059.628966,28.74,4,3992.50,54.27,1552.24,2124.91,0.00,0.000000,0.000000,70,0,120.157616,0.025780,15670638,9784790,0,0,15987,0,1,1 +1774051064.629069,28.64,4,3992.50,54.11,1558.61,2118.50,0.00,1.958749,0.000195,238,2,119.161885,0.037231,15682761,9787508,0,0,15990,0,1,1 +1774051069.629255,19.13,4,3992.50,54.10,1558.91,2118.27,0.00,3518306161829.416016,0.021874,226,83,119.156093,0.044530,15694727,9790988,0,0,15992,0,1,1 +1774051074.626730,1.76,4,3992.50,48.12,1793.29,1883.86,0.00,3520214491958.282715,3520214491959.707031,70,0,8.820742,0.006624,15695732,9791277,0,0,15995,0,1,1 +1774051079.624525,13.22,4,3992.50,48.01,1797.62,1879.52,0.00,0.000000,0.000000,70,0,14.106976,0.071602,15700545,9794885,0,0,15997,0,1,1 +1774051084.628690,15.25,4,3992.50,48.31,1785.58,1891.59,0.00,20717.628115,29972.314418,1970890,539199,20.091601,0.082135,15706641,9799422,0,0,16000,0,1,1 +1774051089.624522,4.62,4,3992.50,48.45,1780.38,1896.79,0.00,3521372623382.705078,3521372614112.454590,199,0,6.057677,0.035031,15708944,9801100,0,0,16002,0,1,1 +1774051094.629282,1.05,4,3992.50,48.45,1780.37,1896.77,0.00,3515090968121.677734,0.000000,70,0,0.004545,0.005929,15709047,9801215,0,0,16005,0,1,1 +1774051099.627722,0.75,4,3992.50,48.13,1792.59,1884.55,0.00,1.446252,0.022077,226,83,0.002697,0.003956,15709109,9801295,0,0,16007,0,1,1 +1774051104.626826,0.45,4,3992.50,48.13,1792.57,1884.56,0.00,20737.154773,30003.344276,1970890,539800,0.002128,0.003728,15709163,9801369,0,0,16010,0,1,1 +1774051109.628960,0.80,4,3992.50,48.15,1791.88,1885.28,0.00,3516935903871.734375,3516935894612.454102,199,0,0.002336,0.003181,15709219,9801436,0,0,16012,0,1,1 +1774051114.629203,0.45,4,3992.50,48.15,1791.89,1885.27,0.00,3518266542698.660156,0.000000,70,0,0.002733,0.003964,15709284,9801517,0,0,16015,0,1,1 +1774051119.629442,0.50,4,3992.50,48.16,1791.74,1885.42,0.00,0.126947,0.000000,199,0,0.003428,0.004944,15709367,9801614,0,0,16017,0,1,1 +1774051124.629295,0.50,4,3992.50,48.14,1792.21,1884.94,0.00,20735.370523,29999.333844,1970890,540151,0.002505,0.003331,15709425,9801683,0,0,16020,0,1,1 +1774051129.624601,0.45,4,3992.50,47.95,1799.87,1877.29,0.00,3521743548200.244629,3521743538927.976074,70,0,0.002736,0.003958,15709490,9801763,0,0,16022,0,1,1 +1774051134.625480,16.48,4,3992.50,48.71,1767.02,1907.00,0.00,3517818786190.430176,0.000000,11,0,0.042997,67.691846,15712508,9809099,0,0,16025,0,1,1 +1774051139.624497,28.92,4,3992.50,48.53,1765.43,1900.19,0.00,20743.085693,30165.061236,1971660,541299,0.028257,118.993580,15714505,9821459,0,0,16027,0,1,1 +1774051144.628831,5.61,4,3992.50,47.66,1798.29,1865.96,0.00,0.010928,14.546375,1971662,541479,0.008851,18.416582,15714974,9823536,0,0,16030,0,1,1 +1774051149.628817,15.24,4,3992.50,53.14,1584.93,2080.49,0.00,3518446780135.290527,3518446770699.120117,226,83,35.057424,0.019479,15718876,9824776,0,0,16032,0,1,1 +1774051154.629087,0.95,4,3992.50,49.14,1741.63,1923.79,0.00,0.000000,0.000000,226,83,5.012665,0.008233,15719523,9825085,0,0,16035,0,1,1 +1774051159.624598,0.85,4,3992.50,48.56,1764.29,1901.13,0.00,3521599141468.473145,3521599141469.770996,199,0,0.003209,0.005560,15719596,9825177,0,0,16037,0,1,1 +1774051164.625540,0.60,4,3992.50,48.10,1782.09,1883.33,0.00,1.831491,0.000195,238,2,0.002733,0.003963,15719661,9825258,0,0,16040,0,1,1 +1774051169.628494,0.45,4,3992.50,48.10,1782.09,1883.32,0.00,20744.153350,30186.074179,1971777,541872,0.002732,0.003952,15719726,9825338,0,0,16042,0,1,1 +1774051174.628941,0.60,4,3992.50,48.10,1782.25,1883.18,0.00,3518122902949.362305,3518122893503.240723,226,83,0.002721,0.003964,15719790,9825419,0,0,16045,0,1,1 +1774051179.624521,6.64,4,3992.50,48.45,1767.20,1896.76,0.00,3521549562837.108398,3521549562838.533691,70,0,0.018450,24.863208,15720957,9828177,0,0,16047,0,1,1 +1774051184.629402,4.85,4,3992.50,48.31,1771.61,1891.30,0.00,3515006484521.113281,0.000000,11,0,0.006265,15.212536,15721335,9829870,0,0,16050,0,1,1 +1774051189.628620,0.60,4,3992.50,48.31,1771.46,1891.45,0.00,20761.669166,30246.934484,1971780,542291,0.001140,0.003196,15721370,9829933,0,0,16052,0,1,1 +1774051194.624469,0.55,4,3992.50,48.31,1771.46,1891.45,0.00,3521360195979.168457,3521360186487.507324,11,0,0.001145,0.003188,15721405,9829995,0,0,16055,0,1,1 +1774051199.629290,0.45,4,3992.50,48.31,1771.46,1891.45,0.00,0.000000,0.000000,11,0,0.000915,0.002564,15721433,9830046,0,0,16057,0,1,1 +1774051204.624527,1.25,4,3992.50,48.35,1770.03,1892.88,0.00,0.177122,0.000000,199,0,0.001158,0.003201,15721469,9830109,0,0,16060,0,1,1 +1774051209.624531,1.10,4,3992.50,48.34,1770.17,1892.73,0.00,1.318847,0.022070,226,83,0.001144,0.003188,15721504,9830171,0,0,16062,0,1,1 +1774051214.629061,1.55,4,3992.50,48.34,1770.16,1892.74,0.00,3515252140859.184082,3515252140860.656250,11,0,0.001156,0.003226,15721540,9830236,0,0,16065,0,1,1 +1774051219.628391,0.65,4,3992.50,48.34,1770.16,1892.74,0.00,1.496001,0.022073,226,83,0.001195,0.003251,15721579,9830302,0,0,16067,0,1,1 +1774051224.624539,1.00,4,3992.50,48.26,1773.59,1889.31,0.00,0.000000,0.000000,226,83,0.001252,0.003319,15721622,9830373,0,0,16070,0,1,1 +1774051229.625944,0.65,4,3992.50,48.29,1772.37,1890.54,0.00,3517449290335.809082,3517449290337.105469,199,0,0.001268,0.003288,15721665,9830443,0,0,16072,0,1,1 +1774051234.624555,0.70,4,3992.50,48.29,1772.37,1890.53,0.00,0.000000,0.000000,199,0,0.000924,0.002573,15721694,9830495,0,0,16075,0,1,1 +1774051239.628734,0.70,4,3992.50,48.29,1772.38,1890.52,0.00,0.000000,0.000000,199,0,0.001143,0.003185,15721729,9830557,0,0,16077,0,1,1 +1774051244.629305,0.80,4,3992.50,48.29,1772.38,1890.54,0.00,20753.447807,30241.214782,1971349,542504,0.001144,0.003197,15721764,9830620,0,0,16080,0,1,1 +1774051249.628837,33.03,4,3992.50,54.34,1544.39,2127.59,0.00,3518766568607.134766,3518766559116.099609,226,83,68.105119,0.032897,15728805,9832752,0,0,16082,0,1,1 +1774051254.624986,29.62,4,3992.50,54.43,1546.03,2130.93,0.00,20770.497428,30268.043838,1971349,542627,119.059971,0.025622,15741208,9834474,0,0,16085,0,1,1 +1774051259.628920,28.01,4,3992.50,54.34,1549.63,2127.35,0.00,3515670980152.175293,3515670970670.828613,70,0,118.877634,0.035671,15753555,9837054,0,0,16087,0,1,1 +1774051264.628863,28.09,4,3992.50,54.28,1551.99,2125.33,0.00,0.000000,0.000000,70,0,119.372477,0.034847,15765888,9839567,0,0,16090,0,1,1 +1774051269.628497,24.31,4,3992.50,54.63,1538.39,2138.93,0.00,1.445907,0.022072,226,83,119.578603,0.037085,15778132,9842434,0,0,16092,0,1,1 +1774051274.625456,31.40,4,3992.50,54.53,1542.46,2134.81,0.00,0.000000,0.000000,226,83,118.835352,0.033684,15790053,9844920,0,0,16095,0,1,1 +1774051279.627048,28.38,4,3992.50,54.53,1542.27,2134.98,0.00,20751.957193,30235.334264,1972112,542800,120.136952,0.042849,15802485,9848043,0,0,16097,0,1,1 +1774051284.624505,28.40,4,3992.50,54.48,1544.22,2133.04,0.00,3520227443440.322266,3520227433950.573730,11,0,118.240753,0.065112,15814927,9852929,0,0,16100,0,1,1 +1774051289.627068,18.09,4,3992.50,54.22,1554.62,2122.71,0.00,0.000000,0.000000,11,0,120.114449,0.057145,15827418,9857332,0,0,16102,0,1,1 +1774051294.628875,0.95,4,3992.50,48.86,1764.42,1912.96,0.00,0.000000,0.000000,11,0,3.208080,0.004774,15827853,9857510,0,0,16105,0,1,1 +1774051299.627403,17.95,4,3992.50,48.41,1781.98,1895.41,0.00,1.496241,0.022077,226,83,18.135537,0.092079,15833930,9862094,0,0,16107,0,1,1 +1774051304.626391,14.00,4,3992.50,48.91,1762.57,1914.75,0.00,3519149129935.420898,3519149129936.845215,70,0,22.135501,0.096405,15841061,9867441,0,0,16110,0,1,1 +1774051309.628128,2.25,4,3992.50,48.70,1770.68,1906.58,0.00,0.000000,0.000000,70,0,0.009562,2.811220,15841524,9868032,0,0,16112,0,1,1 +1774051314.629316,27.92,4,3992.50,49.53,1729.00,1939.05,0.00,1.958324,0.000195,238,2,0.040357,119.747009,15844491,9880546,0,0,16115,0,1,1 +1774051319.624603,20.93,4,3992.50,48.57,1762.49,1901.66,0.00,3521756981830.668457,3521756981832.502441,199,0,0.038274,82.604823,15847288,9889220,0,0,16117,0,1,1 +1774051324.630915,13.23,4,3992.50,48.67,1759.83,1905.38,0.00,20749.156257,30412.756925,1971502,545291,40.015447,0.027716,15851768,9890878,0,0,16120,0,1,1 +1774051329.628483,0.65,4,3992.50,48.54,1764.86,1900.39,0.00,3520149638120.256348,3520149628437.913574,238,2,0.004343,0.004728,15851863,9890978,0,0,16122,0,1,1 +1774051334.624589,0.80,4,3992.50,48.53,1765.25,1899.98,0.00,20789.709707,30475.204281,1971502,545425,0.003208,0.005569,15851936,9891071,0,0,16125,0,1,1 +1774051339.629216,0.55,4,3992.50,48.53,1765.28,1899.98,0.00,0.000000,0.047417,1971502,545483,0.002832,0.004062,15852009,9891158,0,0,16127,0,1,1 +1774051344.628508,0.55,4,3992.50,48.18,1778.95,1886.31,0.00,3518935299734.928223,3518935290056.093750,226,83,0.002734,0.003965,15852074,9891239,0,0,16130,0,1,1 +1774051349.628721,0.55,4,3992.50,48.18,1778.96,1886.30,0.00,3518287395982.488770,3518287395983.912598,70,0,0.002742,0.003962,15852140,9891320,0,0,16132,0,1,1 +1774051354.624553,0.45,4,3992.50,48.18,1778.73,1886.53,0.00,20792.811118,30477.076413,1971502,545614,0.002761,0.003999,15852207,9891403,0,0,16135,0,1,1 +1774051359.624609,0.55,4,3992.50,48.19,1778.51,1886.75,0.00,0.000000,0.071484,1971502,545657,0.002734,0.003954,15852272,9891483,0,0,16137,0,1,1 +1774051364.626987,0.55,4,3992.50,48.17,1779.25,1886.03,0.00,0.000000,0.214546,1971502,545897,0.002720,0.003962,15852336,9891564,0,0,16140,0,1,1 +1774051369.628392,0.50,4,3992.50,48.17,1779.26,1886.01,0.00,0.000000,0.035439,1971502,545939,0.002826,0.004016,15852407,9891649,0,0,16142,0,1,1 +1774051374.627544,0.45,4,3992.50,48.17,1779.27,1886.00,0.00,0.000000,0.036334,1971502,545982,0.002505,0.003344,15852465,9891719,0,0,16145,0,1,1 +1774051379.628886,0.65,4,3992.50,48.17,1779.29,1885.99,0.00,4.063655,0.053013,1972265,546106,0.002816,0.004472,15852536,9891805,0,0,16147,0,1,1 +1774051384.629000,0.50,4,3992.50,48.20,1778.07,1887.20,0.00,3518357074409.401367,3518357064737.082520,70,0,0.002721,0.004125,15852600,9891887,0,0,16150,0,1,1 +1774051389.629303,0.70,4,3992.50,48.20,1778.09,1887.19,0.00,1.958671,0.000195,238,2,0.004455,0.005265,15852689,9891981,0,0,16152,0,1,1 +1774051394.629448,0.60,4,3992.50,48.20,1778.09,1887.17,0.00,20772.917293,30451.265759,1971502,546110,0.004765,0.005228,15852778,9892077,0,0,16155,0,1,1 +1774051399.624463,0.50,4,3992.50,47.98,1786.92,1878.36,0.00,3521948064576.311523,3521948054890.035645,11,0,0.002736,0.003958,15852843,9892157,0,0,16157,0,1,1 +1774051404.629374,10.03,4,3992.50,48.77,1753.46,1909.43,0.00,2.006818,0.000195,238,2,0.021841,39.022998,15854284,9896426,0,0,16160,0,1,1 +1774051409.628757,1.65,4,3992.50,48.53,1762.97,1899.98,0.00,20776.083963,30488.179307,1971503,546518,0.003210,1.008363,15854391,9896677,0,0,16162,0,1,1 +1774051414.624847,0.55,4,3992.50,48.50,1763.95,1898.99,0.00,3521190890372.242676,3521190880655.755859,11,0,0.001133,0.003200,15854425,9896740,0,0,16165,0,1,1 +1774051419.628467,0.60,4,3992.50,48.29,1772.43,1890.52,0.00,0.176825,0.000000,199,0,0.001144,0.003186,15854460,9896802,0,0,16167,0,1,1 +1774051424.629001,0.45,4,3992.50,48.27,1772.88,1890.07,0.00,0.000000,0.000000,199,0,0.001144,0.003198,15854495,9896865,0,0,16170,0,1,1 +1774051429.629400,0.50,4,3992.50,48.27,1773.12,1889.82,0.00,20773.693670,30487.997473,1971503,546558,0.001140,0.003196,15854530,9896928,0,0,16172,0,1,1 +1774051434.629107,0.50,4,3992.50,48.27,1772.88,1890.07,0.00,0.000000,0.003125,1971503,546561,0.001157,0.003229,15854566,9896993,0,0,16175,0,1,1 +1774051439.629320,0.50,4,3992.50,48.27,1772.88,1890.06,0.00,3518286699023.555664,3518286689308.888672,199,0,0.000953,0.002616,15854597,9897047,0,0,16177,0,1,1 +1774051444.628483,0.50,4,3992.50,48.23,1774.53,1888.41,0.00,1.832143,0.000195,238,2,0.001195,0.003744,15854636,9897117,0,0,16180,0,1,1 +1774051449.624823,0.50,4,3992.50,48.23,1774.54,1888.41,0.00,3521014387193.782715,3521014387195.792969,11,0,0.001208,0.003445,15854676,9897186,0,0,16182,0,1,1 +1774051454.625308,0.45,4,3992.50,48.28,1772.57,1890.38,0.00,0.000000,0.000000,11,0,0.001287,0.003323,15854720,9897259,0,0,16185,0,1,1 +1774051459.624522,0.50,4,3992.50,48.28,1772.57,1890.38,0.00,0.000000,0.000000,11,0,0.001153,0.003196,15854756,9897322,0,0,16187,0,1,1 +1774051464.628979,0.55,4,3992.50,48.26,1773.32,1889.63,0.00,0.049955,0.000000,70,0,0.001131,0.003195,15854790,9897385,0,0,16190,0,1,1 +1774051469.628918,26.73,4,3992.50,54.19,1547.51,2121.75,0.00,20779.795148,30492.957002,1972266,546758,54.082051,0.027294,15860532,9899127,0,0,16192,0,1,1 +1774051474.624619,30.85,4,3992.50,54.47,1544.55,2132.52,0.00,3521465771918.808594,3521465762197.403320,70,0,119.071288,0.030112,15872743,9901209,0,0,16195,0,1,1 +1774051479.626504,28.46,4,3992.50,54.40,1547.26,2129.84,0.00,0.126905,0.000000,199,0,119.541366,0.081871,15885296,9907412,0,0,16197,0,1,1 +1774051484.628445,28.43,4,3992.50,54.35,1549.11,2128.03,0.00,3517072296432.079590,0.000000,11,0,118.740348,0.084711,15897775,9913895,0,0,16200,0,1,1 +1774051489.624495,28.31,4,3992.50,54.49,1543.82,2133.32,0.00,20791.954265,30516.878579,1971503,546833,120.090343,0.102089,15910490,9921827,0,0,16202,0,1,1 +1774051494.629089,28.26,4,3992.50,54.43,1546.07,2131.07,0.00,3515207617121.976074,3515207607413.653809,11,0,118.283086,0.094527,15923046,9929053,0,0,16205,0,1,1 +1774051499.626544,28.69,4,3992.50,54.37,1548.33,2128.77,0.00,1.496562,0.022082,226,83,120.249404,0.082529,15935771,9935303,0,0,16207,0,1,1 +1774051504.628873,28.17,4,3992.50,54.30,1550.99,2126.07,0.00,20768.425811,30478.704975,1972266,546978,119.128455,0.069064,15948306,9940559,0,0,16210,0,1,1 +1774051509.624536,21.27,4,3992.50,54.36,1548.96,2128.24,0.00,3521491370526.280762,3521491360804.520996,11,0,119.277410,0.049125,15960630,9944303,0,0,16212,0,1,1 +1774051514.629452,1.00,4,3992.50,48.97,1760.00,1917.19,0.00,0.049951,0.000000,70,0,17.213326,0.014611,15962514,9945221,0,0,16215,0,1,1 +1774051519.629210,10.48,4,3992.50,48.56,1775.87,1901.33,0.00,1.445871,0.022071,226,83,8.070135,0.048268,15965488,9947393,0,0,16217,0,1,1 +1774051524.628848,13.11,4,3992.50,48.06,1795.67,1881.50,0.00,20775.681549,30495.654308,1971518,547725,20.120500,0.087680,15971953,9952272,0,0,16220,0,1,1 +1774051529.624542,7.99,4,3992.50,47.82,1805.10,1872.07,0.00,3521469821576.361328,3521469811848.180176,238,2,12.085643,0.054711,15975907,9955234,0,0,16222,0,1,1 +1774051534.629023,0.95,4,3992.50,47.87,1802.94,1874.23,0.00,3515286716825.060547,3515286716827.067383,11,0,0.002818,0.005094,15975976,9955330,0,0,16225,0,1,1 +1774051539.628514,19.11,4,3992.50,48.53,1773.01,1900.04,0.00,20781.856389,30558.351458,1972283,548886,0.036669,79.125285,15978573,9963702,0,0,16227,0,1,1 +1774051544.629066,28.77,4,3992.50,48.43,1768.57,1896.23,0.00,0.003125,119.741081,1972287,549594,0.069347,118.176309,15983783,9976414,0,0,16230,0,1,1 +1774051549.626307,3.01,4,3992.50,47.98,1785.72,1878.37,0.00,3520379194022.636230,3520379184119.915039,238,2,0.010322,7.823989,15984362,9977409,0,0,16232,0,1,1 +1774051554.628492,15.05,4,3992.50,48.18,1778.56,1886.36,0.00,0.000000,0.000000,238,2,40.048127,0.025852,15988798,9978961,0,0,16235,0,1,1 +1774051559.627232,0.90,4,3992.50,48.20,1777.80,1887.15,0.00,3519324143321.048828,3519324143322.881348,199,0,0.005277,0.005320,15988913,9979077,0,0,16237,0,1,1 +1774051564.628616,0.85,4,3992.50,48.09,1782.23,1882.73,0.00,20789.135237,30666.843786,1971691,549829,0.003467,0.006235,15988996,9979185,0,0,16240,0,1,1 +1774051569.629097,0.45,4,3992.50,48.12,1781.02,1883.94,0.00,4.064355,0.024216,1972454,549920,0.002733,0.003954,15989061,9979265,0,0,16242,0,1,1 +1774051574.627569,1.20,4,3992.50,48.12,1781.04,1883.93,0.00,3519512712454.529297,3519512702575.107422,199,0,0.002734,0.003953,15989126,9979345,0,0,16245,0,1,1 +1774051579.625510,0.60,4,3992.50,48.07,1783.11,1881.86,0.00,1.832590,0.000195,238,2,0.002506,0.003966,15989184,9979417,0,0,16247,0,1,1 +1774051584.629043,0.75,4,3992.50,48.04,1784.24,1880.73,0.00,3515952653203.758789,3515952653205.716309,70,0,0.002769,0.003980,15989252,9979499,0,0,16250,0,1,1 +1774051589.624585,0.55,4,3992.50,48.06,1783.28,1881.70,0.00,20813.579780,30727.268388,1971692,550095,0.002744,0.003966,15989318,9979580,0,0,16252,0,1,1 +1774051594.624605,0.45,4,3992.50,48.09,1782.30,1882.67,0.00,3518423210801.578125,3518423200895.345703,226,83,0.002527,0.002813,15989387,9979654,0,0,16255,0,1,1 +1774051599.624530,0.45,4,3992.50,48.06,1783.39,1881.59,0.00,0.512996,3518490184678.794922,238,2,0.001995,0.002795,15989434,9979706,0,0,16257,0,1,1 +1774051604.624575,1.65,4,3992.50,48.06,1783.43,1881.54,0.00,20796.934237,30699.748011,1972455,550263,0.001663,0.002512,15989473,9979760,0,0,16260,0,1,1 +1774051609.629202,0.55,4,3992.50,48.08,1782.46,1882.51,0.00,3515184379176.061523,3515184369284.318848,11,0,0.002151,0.001973,15989524,9979807,0,0,16262,0,1,1 +1774051614.624618,0.45,4,3992.50,48.09,1781.99,1882.99,0.00,20818.222824,30728.259153,1972455,550322,0.001112,0.001722,15989553,9979846,0,0,16265,0,1,1 +1774051619.628659,0.55,4,3992.50,48.03,1784.40,1880.58,0.00,3515595612007.955566,3515595612011.997070,1971692,550243,0.001617,0.002390,15989589,9979891,0,0,16267,0,1,1 +1774051624.625500,16.10,4,3992.50,54.97,1515.63,2152.17,0.00,4.067316,0.104070,1972455,550412,3.067486,0.040860,15992116,9982732,0,0,16270,0,1,1 +1774051629.624670,2.53,4,3992.50,54.91,1518.30,2149.77,0.00,3519021884833.109375,3519021874928.421387,238,2,3.578733,0.052348,15995465,9986493,0,0,16272,0,1,1 +1774051634.624555,1.87,4,3992.50,55.02,1514.09,2154.35,0.00,3518518074278.565430,3518518074280.397461,199,0,3.468888,0.044606,15998667,9989781,0,0,16275,0,1,1 +1774051639.624955,2.03,4,3992.50,54.79,1523.23,2145.32,0.00,20793.387239,30697.860007,1971755,550480,3.480940,0.043596,16001923,9993054,0,0,16277,0,1,1 +1774051644.628202,2.02,4,3992.50,55.16,1509.09,2159.71,0.00,3516154378303.402344,3516154368404.739258,11,0,3.493846,0.047224,16005155,9996362,0,0,16280,0,1,1 +1774051649.628321,1.88,4,3992.50,55.32,1503.18,2165.79,0.00,0.000000,0.000000,11,0,3.273814,1.000882,16009858,10001440,0,0,16282,0,1,1 +1774051654.626393,3.52,4,3992.50,55.18,1509.09,2160.29,0.00,0.000000,0.000000,11,0,3.482695,3.504928,16017163,10012956,0,0,16285,0,1,1 +1774051659.625052,3.11,4,3992.50,55.23,1507.27,2162.47,0.00,20804.875251,30709.956539,1972518,550738,3.695673,3.506305,16026843,10026511,0,0,16287,0,1,1 +1774051664.624508,3.26,4,3992.50,55.22,1507.72,2162.16,0.00,3518819489523.756836,3518819479620.079102,199,0,3.494624,3.508065,16036407,10040000,0,0,16290,0,1,1 +1774051669.624500,3.62,4,3992.50,55.32,1504.40,2165.84,0.00,20795.088690,30701.767222,1971755,550689,3.731911,3.505768,16045151,10051845,0,0,16292,0,1,1 +1774051674.628964,4.17,4,3992.50,55.20,1509.21,2161.36,0.00,3515298673890.377930,3515298663992.553223,199,0,3.539569,3.503838,16053980,10063749,0,0,16295,0,1,1 +1774051679.624517,3.93,4,3992.50,55.07,1514.90,2156.04,0.00,1.320022,0.022090,226,83,3.521714,3.508095,16063014,10075470,0,0,16297,0,1,1 +1774051684.624968,3.66,4,3992.50,55.07,1515.00,2156.29,0.00,0.512942,3518120365555.808105,238,2,3.519546,3.503755,16070751,10086639,0,0,16300,0,1,1 +1774051689.624720,3.62,4,3992.50,55.19,1510.59,2160.96,0.00,20798.315794,30710.175753,1972518,550938,3.604230,3.505673,16079696,10098603,0,0,16302,0,1,1 +1774051694.626511,3.87,4,3992.50,55.21,1510.48,2161.49,0.00,3517177892084.114746,3517177882178.124023,199,0,3.701130,3.510280,16089210,10110959,0,0,16305,0,1,1 +1774051699.625193,3.11,4,3992.50,55.26,1508.81,2163.36,0.00,1.832319,0.000195,238,2,3.554383,3.507335,16098299,10122634,0,0,16307,0,1,1 +1774051704.624500,3.62,4,3992.50,55.22,1510.77,2162.09,0.00,3518924750978.944824,3518924750980.953613,11,0,3.532832,3.508388,16107252,10133819,0,0,16310,0,1,1 +1774051709.629400,3.35,4,3992.50,55.35,1506.04,2166.92,0.00,1.494336,0.022049,226,83,3.498394,2.315463,16114352,10142182,0,0,16312,0,1,1 +1774051714.624764,1.98,4,3992.50,55.23,1510.86,2162.30,0.00,0.000000,0.000000,226,83,3.504194,0.089585,16117645,10145485,0,0,16315,0,1,1 +1774051719.624786,2.48,4,3992.50,54.99,1520.31,2152.88,0.00,0.000000,0.000000,226,83,3.474402,0.049506,16121167,10149025,0,0,16317,0,1,1 +1774051724.628740,2.53,4,3992.50,55.08,1516.90,2156.51,0.00,3515657121449.672852,3515657121451.145508,11,0,3.491273,0.043560,16124485,10152299,0,0,16320,0,1,1 +1774051729.625038,2.03,4,3992.50,55.19,1512.87,2160.79,0.00,0.000000,0.000000,11,0,3.502740,0.046023,16127843,10155669,0,0,16322,0,1,1 +1774051734.625660,2.38,4,3992.50,55.04,1518.97,2154.91,0.00,20796.707643,30734.987206,1972520,551279,3.474968,0.043515,16131109,10158892,0,0,16325,0,1,1 +1774051739.627406,1.62,4,3992.50,55.08,1517.80,2156.32,0.00,3517209361248.829102,3517209351311.307129,226,83,3.527905,0.044565,16134410,10162178,0,0,16327,0,1,1 +1774051744.628479,1.92,4,3992.50,55.12,1516.10,2158.07,0.00,20789.272825,30734.193395,1971757,551242,3.487700,0.047748,16137908,10165658,0,0,16330,0,1,1 +1774051749.628080,2.02,4,3992.50,55.07,1518.10,2156.20,0.00,3518718435030.067383,3518718425083.640137,70,0,3.480249,0.044060,16141192,10168911,0,0,16332,0,1,1 +1774051754.625393,1.82,4,3992.50,55.20,1513.08,2161.19,0.00,3520328747701.470703,0.000000,11,0,3.477839,0.045298,16144530,10172243,0,0,16335,0,1,1 +1774051759.624584,1.72,4,3992.50,55.00,1520.92,2153.41,0.00,1.496043,0.022074,226,83,3.490873,0.044825,16147858,10175574,0,0,16337,0,1,1 +1774051764.628743,2.58,4,3992.50,54.81,1528.29,2146.02,0.00,20776.458330,30715.302621,1971757,551286,3.446642,0.044192,16151216,10178885,0,0,16340,0,1,1 +1774051769.624474,1.67,4,3992.50,55.13,1515.84,2158.45,0.00,4.068219,0.027563,1972520,551382,3.522191,0.045113,16154506,10182215,0,0,16342,0,1,1 +1774051774.625046,1.93,4,3992.50,55.14,1515.61,2158.67,0.00,3518034929639.593750,3518034919697.123535,238,2,3.462897,0.046181,16157908,10185605,0,0,16345,0,1,1 +1774051779.628636,3.14,4,3992.50,55.30,1509.13,2165.20,0.00,20782.365362,30718.882918,1972520,551428,3.496317,0.043531,16161199,10188851,0,0,16347,0,1,1 +1774051784.628891,1.87,4,3992.50,55.16,1514.71,2159.62,0.00,3518257612382.795898,3518257612386.851074,1971757,551361,3.505772,0.044592,16164523,10192137,0,0,16350,0,1,1 +1774051789.629135,1.98,4,3992.50,54.99,1521.32,2153.17,0.00,3518265488993.929199,3518265479046.707031,238,2,3.456429,0.046194,16167978,10195550,0,0,16352,0,1,1 +1774051794.625066,1.87,4,3992.50,55.23,1512.36,2162.27,0.00,3521303493584.163086,3521303493586.123047,70,0,3.473623,0.043451,16171205,10198756,0,0,16355,0,1,1 +1774051799.629507,1.82,4,3992.50,54.93,1523.81,2150.82,0.00,1.957051,0.000195,238,2,3.498478,0.046410,16174658,10202234,0,0,16357,0,1,1 +1774051804.624834,1.87,4,3992.50,55.10,1517.42,2157.33,0.00,3521728507170.458984,3521728507172.419434,70,0,3.489668,0.046586,16178072,10205623,0,0,16360,0,1,1 +1774051809.626541,1.87,4,3992.50,55.20,1513.59,2161.33,0.00,3517236511565.566895,0.000000,11,0,3.515480,0.044383,16181343,10208950,0,0,16362,0,1,1 +1774051814.627936,1.93,4,3992.50,55.16,1515.09,2159.69,0.00,2.008229,0.000195,238,2,3.430020,0.046131,16184792,10212335,0,0,16365,0,1,1 +1774051819.624933,1.87,4,3992.50,55.06,1518.93,2155.86,0.00,3520551576818.424805,3520551576820.434570,11,0,3.502718,0.044446,16188093,10215669,0,0,16367,0,1,1 +1774051824.628803,1.97,4,3992.50,55.25,1511.71,2163.08,0.00,2.007235,0.000195,238,2,3.507499,0.042435,16191301,10218870,0,0,16370,0,1,1 +1774051829.629296,1.87,4,3992.50,55.14,1513.80,2158.98,0.00,20791.185830,30738.009243,1971763,551498,3.448529,0.047673,16194754,10222347,0,0,16372,0,1,1 +1774051834.625083,1.82,4,3992.50,54.95,1523.34,2151.41,0.00,3521404579240.396973,3521404569286.213867,11,0,3.508893,0.041909,16197967,10225533,0,0,16375,0,1,1 +1774051839.628854,1.82,4,3992.50,54.90,1525.23,2149.56,0.00,0.000000,0.000000,11,0,3.451221,0.045638,16201303,10228832,0,0,16377,0,1,1 +1774051844.625324,2.18,4,3992.50,55.10,1517.65,2157.12,0.00,0.000000,0.000000,11,0,3.505195,0.042234,16204489,10232021,0,0,16380,0,1,1 +1774051849.624811,1.82,4,3992.50,55.03,1520.29,2154.57,0.00,0.050005,0.000000,70,0,3.476463,0.044285,16207771,10235292,0,0,16382,0,1,1 +1774051854.624955,2.13,4,3992.50,55.00,1521.55,2153.27,0.00,0.000000,0.000000,70,0,3.476422,0.045484,16210974,10238479,0,0,16385,0,1,1 +1774051859.625381,2.08,4,3992.50,55.27,1510.79,2163.99,0.00,3518137388993.095215,0.000000,11,0,3.493156,0.044751,16214307,10241795,0,0,16387,0,1,1 +1774051864.628525,1.77,4,3992.50,55.06,1519.14,2155.64,0.00,0.176842,0.000000,199,0,3.494060,0.046350,16217648,10245160,0,0,16390,0,1,1 +1774051869.625021,2.13,4,3992.50,54.90,1525.16,2149.64,0.00,20809.651673,30762.694109,1971763,551608,3.470519,0.043236,16220917,10248369,0,0,16392,0,1,1 +1774051874.624527,1.82,4,3992.50,54.84,1527.75,2147.02,0.00,3518784553352.232910,3518784543403.352539,238,2,3.492831,0.045981,16224311,10251722,0,0,16395,0,1,1 +1774051879.628918,2.22,4,3992.50,54.92,1524.66,2150.26,0.00,3515350146498.351074,3515350146500.308105,70,0,3.474576,0.047193,16227715,10255138,0,0,16397,0,1,1 +1774051884.628577,1.67,4,3992.50,54.88,1526.02,2148.76,0.00,3518676948307.139648,0.000000,11,0,3.520870,0.043231,16231006,10258408,0,0,16400,0,1,1 +1774051889.625261,1.72,4,3992.50,54.93,1522.21,2150.58,0.00,0.050033,0.000000,70,0,3.447280,0.044530,16234298,10261687,0,0,16402,0,1,1 +1774051894.624483,1.97,4,3992.50,54.88,1526.18,2148.57,0.00,0.126973,0.000000,199,0,3.511308,0.043528,16237569,10264951,0,0,16405,0,1,1 +1774051899.628871,1.87,4,3992.50,54.88,1526.07,2148.70,0.00,20780.895744,30714.243844,1972526,551754,3.461474,0.045982,16240941,10268316,0,0,16407,0,1,1 +1774051904.624505,1.82,4,3992.50,55.15,1515.65,2159.08,0.00,3521511913808.231445,3521511903857.479004,199,0,3.514058,0.042468,16244167,10271499,0,0,16410,0,1,1 +1774051909.628915,1.57,4,3992.50,55.34,1508.20,2166.52,0.00,20776.741161,30714.087329,1971763,551683,3.483277,0.045292,16247510,10274798,0,0,16412,0,1,1 +1774051914.628675,1.97,4,3992.50,55.12,1516.84,2157.99,0.00,3518605969986.567383,3518605960040.156250,11,0,3.499241,0.042115,16250698,10277970,0,0,16415,0,1,1 +1774051919.628587,1.82,4,3992.50,55.14,1516.14,2158.66,0.00,0.000000,0.000000,11,0,3.502703,0.044803,16253997,10281259,0,0,16417,0,1,1 +1774051924.628810,8.11,4,3992.50,55.20,1511.75,2161.04,0.00,0.000000,0.000000,11,0,3.485251,0.084616,16260685,10286926,0,0,16420,0,1,1 +1774051929.628723,3.60,4,3992.50,55.19,1514.07,2160.68,0.00,20795.604207,30742.042373,1971763,552054,3.523158,0.091229,16267923,10293107,0,0,16422,0,1,1 +1774051934.624526,4.48,4,3992.50,56.01,1482.06,2192.72,0.00,3521393303392.991211,3521393293438.192383,199,0,5.837921,0.128967,16279371,10302743,0,0,16425,0,1,1 +1774051939.624616,3.56,4,3992.50,56.12,1477.50,2197.33,0.00,3518373112569.057617,0.000000,70,0,6.911882,0.160573,16292738,10314907,0,0,16427,0,1,1 +1774051944.627238,3.15,4,3992.50,55.80,1490.00,2184.78,0.00,0.000000,0.000000,70,0,6.985017,0.162441,16306488,10327099,0,0,16430,0,1,1 +1774051949.628476,2.49,4,3992.50,55.52,1501.15,2173.62,0.00,20794.110875,30734.025561,1972526,552348,4.686534,0.109677,16315557,10335390,0,0,16432,0,1,1 +1774051954.628747,4.51,4,3992.50,55.47,1503.15,2171.73,0.00,3518246421726.589844,3518246411784.626953,199,0,5.051865,0.121488,16325700,10344306,0,0,16435,0,1,1 +1774051959.628935,4.47,4,3992.50,56.04,1481.11,2194.04,0.00,0.000000,0.000000,199,0,5.620997,0.122522,16336575,10353612,0,0,16437,0,1,1 +1774051964.628593,5.58,4,3992.50,55.95,1484.51,2190.59,0.00,1.318938,0.022072,226,83,6.997092,0.166950,16350441,10365856,0,0,16440,0,1,1 +1774051969.626393,5.09,4,3992.50,56.33,1470.03,2205.35,0.00,20806.970903,30755.557243,1972526,552840,6.535095,0.150065,16363174,10377301,0,0,16442,0,1,1 +1774051974.628671,2.59,4,3992.50,55.96,1484.61,2190.77,0.00,0.000000,0.021767,1972526,552913,5.704991,0.138708,16374587,10387525,0,0,16445,0,1,1 +1774051979.629106,4.72,4,3992.50,56.16,1476.78,2198.93,0.00,3518130720903.785156,3518130710960.422363,226,83,5.423882,0.123942,16385257,10396650,0,0,16447,0,1,1 +1774051984.624825,2.54,4,3992.50,55.99,1483.67,2192.02,0.00,0.513428,3521452291829.833008,238,2,6.899147,0.162755,16398745,10408891,0,0,16450,0,1,1 +1774051989.628959,3.76,4,3992.50,55.97,1484.39,2191.50,0.00,20780.120999,30717.092771,1972526,553400,6.554418,0.148369,16411730,10419986,0,0,16452,0,1,1 +1774051994.624743,2.13,4,3992.50,55.72,1494.26,2181.64,0.00,3521406418256.066406,3521406408304.320312,199,0,5.510049,0.131122,16422338,10429821,0,0,16455,0,1,1 +1774051999.624797,4.37,4,3992.50,55.99,1484.05,2192.16,0.00,20794.843468,30742.204338,1971764,553440,5.089137,0.124545,16432724,10438682,0,0,16457,0,1,1 +1774052004.629313,3.20,4,3992.50,56.05,1481.74,2194.58,0.00,3515262503902.394043,3515262493962.604980,226,83,6.698509,0.149162,16445633,10450106,0,0,16460,0,1,1 +1774052009.629189,2.43,4,3992.50,55.56,1500.96,2175.36,0.00,0.513001,3518524186801.076172,238,2,6.661566,0.155629,16458773,10461842,0,0,16462,0,1,1 +1774052014.628538,2.08,4,3992.50,55.37,1508.40,2167.91,0.00,3518895105810.663574,3518895105812.622559,70,0,3.845650,0.092339,16466526,10468594,0,0,16465,0,1,1 +1774052019.625482,2.13,4,3992.50,55.27,1512.18,2164.10,0.00,20807.918605,30761.681819,1971764,553778,3.490959,0.083070,16473544,10474641,0,0,16467,0,1,1 +1774052024.629184,2.18,4,3992.50,55.57,1500.68,2175.65,0.00,3515833838294.380859,3515833828354.113281,11,0,3.523631,0.080369,16480606,10480606,0,0,16470,0,1,1 +1774052029.628227,2.03,4,3992.50,55.73,1494.31,2181.98,0.00,0.050010,0.000000,70,0,3.546812,0.076188,16487418,10486399,0,0,16472,0,1,1 +1774052034.628684,2.08,4,3992.50,55.43,1506.11,2170.25,0.00,0.000000,0.000000,70,0,3.506299,0.403025,16495090,10493058,0,0,16475,0,1,1 +1774052039.628764,2.65,4,3992.50,55.64,1498.16,2178.46,0.00,3518380323006.411621,0.000000,11,0,3.470910,2.048743,16504808,10502545,0,0,16477,0,1,1 +1774052044.629268,3.01,4,3992.50,55.55,1501.89,2174.72,0.00,0.000000,0.000000,11,0,3.616129,3.507683,16517212,10514740,0,0,16480,0,1,1 +1774052049.624651,3.57,4,3992.50,55.60,1499.71,2176.91,0.00,20814.466610,30771.507023,1971764,554067,3.600062,3.507691,16530157,10527666,0,0,16482,0,1,1 +1774052054.629295,3.16,4,3992.50,55.66,1497.27,2179.36,0.00,3515172562964.585938,3515172553025.969238,11,0,3.529152,3.506237,16542399,10540195,0,0,16485,0,1,1 +1774052059.628589,3.37,4,3992.50,55.73,1494.48,2182.09,0.00,0.000000,0.000000,11,0,3.447203,3.507298,16554542,10552710,0,0,16487,0,1,1 +1774052064.629424,3.62,4,3992.50,55.64,1496.32,2178.28,0.00,0.176924,0.000000,199,0,3.737896,3.506039,16567046,10565294,0,0,16490,0,1,1 +1774052069.625088,3.88,4,3992.50,55.85,1489.96,2186.49,0.00,3521490861936.671387,0.000000,11,0,3.564129,3.505781,16579473,10577460,0,0,16492,0,1,1 +1774052074.628809,3.26,4,3992.50,55.63,1498.26,2177.99,0.00,20779.782488,30741.515471,1971764,554285,3.662284,3.507869,16591928,10590015,0,0,16495,0,1,1 +1774052079.624512,3.32,4,3992.50,55.78,1492.21,2183.84,0.00,4.068243,0.032352,1972527,554389,3.615155,3.505369,16604390,10602302,0,0,16497,0,1,1 +1774052084.629127,3.06,4,3992.50,55.77,1492.30,2183.54,0.00,3515192623812.836426,3515192613856.911133,11,0,3.645252,3.507927,16616909,10614937,0,0,16500,0,1,1 +1774052089.628214,3.16,4,3992.50,55.80,1490.95,2184.57,0.00,0.176985,0.000000,199,0,3.534393,3.507296,16629141,10627429,0,0,16502,0,1,1 +1774052094.626811,3.67,4,3992.50,55.64,1496.90,2178.50,0.00,20804.973710,30773.147175,1972527,554482,3.564848,3.506943,16641522,10639830,0,0,16505,0,1,1 +1774052099.625251,3.32,4,3992.50,56.01,1482.39,2192.81,0.00,3519534951448.547363,3519534941480.239258,11,0,3.501384,3.505930,16653996,10651922,0,0,16507,0,1,1 +1774052104.625314,4.64,4,3992.50,55.59,1498.66,2176.36,0.00,20794.986366,30784.562447,1971764,554549,3.686615,3.507206,16666807,10664436,0,0,16510,0,1,1 +1774052109.628965,3.32,4,3992.50,55.65,1496.06,2178.75,0.00,3515869374296.832520,3515869364314.372070,70,0,3.482240,3.509245,16679015,10677057,0,0,16512,0,1,1 +1774052114.625295,4.03,4,3992.50,55.98,1482.95,2191.57,0.00,20814.542723,30807.661992,1972527,554735,3.651925,3.504530,16691434,10689330,0,0,16515,0,1,1 +1774052119.624540,3.28,4,3992.50,55.62,1496.58,2177.68,0.00,0.000000,0.006349,1972527,554754,3.613447,3.508227,16704114,10701891,0,0,16517,0,1,1 +1774052124.629273,3.26,4,3992.50,55.35,1506.85,2167.26,0.00,3515110037012.339355,3515110037016.386719,1971764,554685,3.515517,3.508637,16716465,10714581,0,0,16520,0,1,1 +1774052129.624666,3.48,4,3992.50,55.37,1503.94,2167.89,0.00,3521682190021.101562,3521682180022.048340,70,0,3.534140,3.509360,16728736,10727122,0,0,16522,0,1,1 +1774052134.625788,3.42,4,3992.50,55.50,1500.77,2172.86,0.00,1.445476,0.022065,226,83,3.652207,3.508049,16741206,10739707,0,0,16525,0,1,1 +1774052139.628605,3.52,4,3992.50,55.47,1501.50,2171.95,0.00,3516456294809.985840,3516456294811.282227,199,0,3.599764,3.503655,16753736,10752303,0,0,16527,0,1,1 +1774052144.629020,3.73,4,3992.50,55.37,1503.41,2167.72,0.00,1.318738,0.022068,226,83,3.443719,3.507625,16765838,10764482,0,0,16530,0,1,1 +1774052149.624809,3.79,4,3992.50,55.71,1491.82,2181.11,0.00,3521403108537.204590,3521403108538.502441,199,0,3.485207,3.505807,16777946,10776563,0,0,16532,0,1,1 +1774052154.624897,3.32,4,3992.50,55.45,1501.65,2170.99,0.00,1.831804,0.000195,238,2,3.710926,3.508271,16790750,10789292,0,0,16535,0,1,1 +1774052159.628804,3.46,4,3992.50,55.45,1501.42,2170.96,0.00,0.000000,0.000000,238,2,3.578256,3.509695,16803226,10802103,0,0,16537,0,1,1 +1774052164.629198,3.31,4,3992.50,55.34,1505.54,2166.71,0.00,3518160373988.629395,3518160373990.587891,70,0,3.619324,3.508711,16815848,10814856,0,0,16540,0,1,1 +1774052169.625394,3.47,4,3992.50,55.38,1503.86,2168.16,0.00,20811.026951,30849.886973,1971764,555094,3.521159,3.507472,16828260,10827322,0,0,16542,0,1,1 +1774052174.624801,3.47,4,3992.50,55.58,1495.49,2176.26,0.00,0.000000,0.009278,1971764,555112,3.498132,3.508532,16840555,10839796,0,0,16545,0,1,1 +1774052179.628094,3.62,4,3992.50,55.66,1492.24,2179.27,0.00,3516121342584.909180,3516121332560.328613,11,0,3.436965,3.506509,16852638,10852075,0,0,16547,0,1,1 +1774052184.625123,3.62,4,3992.50,55.60,1494.57,2176.73,0.00,0.000000,0.000000,11,0,3.523776,3.506771,16864961,10864406,0,0,16550,0,1,1 +1774052189.625777,3.37,4,3992.50,55.47,1499.41,2171.64,0.00,1.495605,0.022067,226,83,3.488688,3.508781,16877090,10876859,0,0,16552,0,1,1 +1774052194.627433,59.27,4,3992.50,54.82,1524.30,2146.16,0.00,20790.944092,30901.679201,1972535,555908,135.716586,102.510376,16899875,10898299,0,0,16555,0,1,1 +1774052199.624527,33.43,4,3992.50,54.37,1544.74,2128.77,0.00,3520482911837.995117,3520482901717.497070,238,2,134.658183,0.080108,16913141,10904342,0,0,16557,0,1,1 +1774052204.628805,31.57,4,3992.50,54.67,1538.55,2140.29,0.00,20775.476931,30922.291172,1971772,556040,127.854114,0.059901,16925332,10909057,0,0,16560,0,1,1 +1774052209.628769,37.69,4,3992.50,59.45,1351.29,2327.54,0.00,23.459445,0.123048,1972684,556173,134.580732,0.070515,16938456,10914331,0,0,16562,0,1,1 +1774052214.624492,21.29,4,3992.50,54.37,1550.31,2128.62,0.00,3521449571957.784668,3521449561817.486816,226,83,135.893107,0.066175,16951563,10919497,0,0,16565,0,1,1 +1774052219.624547,3.06,4,3992.50,49.29,1749.04,1929.89,0.00,3518397795789.645996,3518397795791.069824,70,0,10.428281,3.021034,16953153,10920553,0,0,16567,0,1,1 +1774052224.624540,9.98,4,3992.50,48.06,1796.01,1881.64,0.00,3518442801096.138184,0.000000,11,0,0.015611,37.058011,16954167,10924513,0,0,16570,0,1,1 +1774052229.624616,0.55,4,3992.50,47.91,1801.92,1875.73,0.00,2.008759,0.000195,238,2,0.001144,0.003832,16954202,10924579,0,0,16572,0,1,1 +1774052234.628536,0.55,4,3992.50,47.95,1800.45,1877.21,0.00,0.000000,0.000000,238,2,0.001144,0.003195,16954237,10924642,0,0,16575,0,1,1 +1774052239.629493,0.45,4,3992.50,47.95,1800.23,1877.43,0.00,3517764091054.343262,3517764091056.351562,11,0,0.001157,0.003187,16954273,10924704,0,0,16577,0,1,1 +1774052244.624971,0.60,4,3992.50,48.22,1789.70,1887.91,0.00,0.000000,0.000000,11,0,0.000924,0.002575,16954302,10924756,0,0,16580,0,1,1 +1774052249.628636,0.60,4,3992.50,48.22,1789.74,1887.91,0.00,0.049963,0.000000,70,0,0.001118,0.003186,16954335,10924818,0,0,16582,0,1,1 +1774052254.626388,0.50,4,3992.50,48.16,1792.12,1885.53,0.00,1.959670,0.000195,238,2,0.001145,0.003199,16954370,10924881,0,0,16585,0,1,1 +1774052259.626633,0.55,4,3992.50,48.20,1790.68,1886.98,0.00,3518264993329.528809,0.021874,226,83,0.001119,0.003188,16954403,10924943,0,0,16587,0,1,1 +1774052264.625792,0.45,4,3992.50,48.20,1790.46,1887.19,0.00,3519029118025.076172,3519029118026.500488,70,0,0.001333,0.003435,16954453,10925021,0,0,16590,0,1,1 +1774052269.628896,0.55,4,3992.50,48.20,1790.47,1887.18,0.00,1.444904,0.022057,226,83,0.001349,0.003374,16954502,10925097,0,0,16592,0,1,1 +1774052274.625478,0.40,4,3992.50,48.20,1790.47,1887.18,0.00,3520843811252.009766,3520843811253.484375,11,0,0.001153,0.003208,16954538,10925161,0,0,16595,0,1,1 +1774052279.629312,0.40,4,3992.50,48.22,1789.64,1888.01,0.00,20802.878646,30965.974564,1972707,556910,0.000915,0.002552,16954566,10925211,0,0,16597,0,1,1 +1774052284.628952,0.55,4,3992.50,48.22,1789.63,1888.03,0.00,3518690835410.813477,3518690835414.860840,1971944,556830,0.001144,0.003198,16954601,10925274,0,0,16600,0,1,1 +1774052289.628691,0.90,4,3992.50,48.22,1789.62,1888.04,0.00,4.064958,0.028126,1972707,556924,0.002540,0.003878,16954660,10925351,0,0,16602,0,1,1 +1774052294.626974,29.54,4,3992.50,54.28,1550.28,2125.31,0.00,3519646118226.854004,3519646108050.450684,238,2,64.117743,0.042804,16961386,10928182,0,0,16605,0,1,1 +1774052299.628540,31.50,4,3992.50,54.32,1551.97,2126.89,0.00,0.000000,0.000000,238,2,118.127275,0.064478,16973387,10932985,0,0,16607,0,1,1 +1774052304.628840,28.02,4,3992.50,54.31,1552.55,2126.27,0.00,3518226210300.681152,3518226210302.689941,11,0,118.956118,0.053124,16985481,10937007,0,0,16610,0,1,1 +1774052309.626861,28.29,4,3992.50,54.34,1551.17,2127.65,0.00,0.000000,0.000000,11,0,119.411348,0.054286,16997598,10941105,0,0,16612,0,1,1 +1774052314.624448,28.30,4,3992.50,54.20,1556.73,2122.16,0.00,0.000000,0.000000,11,0,119.020519,0.051529,17009679,10944998,0,0,16615,0,1,1 +1774052319.628685,28.24,4,3992.50,54.24,1555.13,2123.70,0.00,0.000000,0.000000,11,0,119.262798,0.054634,17021779,10949129,0,0,16617,0,1,1 +1774052324.628773,28.69,4,3992.50,54.43,1547.90,2130.94,0.00,0.049999,0.000000,70,0,119.561997,0.049945,17033894,10952896,0,0,16620,0,1,1 +1774052329.624546,28.32,4,3992.50,54.26,1554.69,2124.23,0.00,0.000000,0.000000,70,0,118.861891,0.058292,17045893,10957353,0,0,16622,0,1,1 +1774052334.624497,19.38,4,3992.50,54.29,1553.43,2125.52,0.00,20814.919228,30990.301829,1971945,557097,119.565460,0.050649,17058091,10961231,0,0,16625,0,1,1 +1774052339.628390,3.61,4,3992.50,48.30,1788.00,1890.95,0.00,3515699970245.739258,3515699960078.421387,11,0,10.622161,0.018437,17059740,10962169,0,0,16627,0,1,1 +1774052344.628389,13.96,4,3992.50,48.44,1782.26,1896.68,0.00,0.000000,0.000000,11,0,14.104057,0.074732,17064591,10965756,0,0,16630,0,1,1 +1774052349.628517,13.39,4,3992.50,49.26,1750.39,1928.51,0.00,20814.307658,30989.972013,1971953,558110,24.141558,0.103781,17072418,10971597,0,0,16632,0,1,1 +1774052354.628839,0.85,4,3992.50,48.82,1767.41,1911.52,0.00,3518209912411.663086,3518209902236.397461,11,0,0.003414,0.005335,17072497,10971700,0,0,16635,0,1,1 +1774052359.624529,0.45,4,3992.50,48.60,1776.32,1902.61,0.00,20836.866867,31017.896592,1972716,558492,0.002731,0.004610,17072562,10971785,0,0,16637,0,1,1 +1774052364.628670,1.35,4,3992.50,48.35,1786.09,1892.84,0.00,3515525648705.878418,3515525638542.044434,11,0,0.002731,0.003961,17072627,10971866,0,0,16640,0,1,1 +1774052369.629402,0.55,4,3992.50,48.35,1785.84,1893.10,0.00,0.176927,0.000000,199,0,0.002733,0.003954,17072692,10971946,0,0,16642,0,1,1 +1774052374.628960,0.50,4,3992.50,48.34,1786.20,1892.75,0.00,1.318964,0.022072,226,83,0.002492,0.003331,17072749,10972015,0,0,16645,0,1,1 +1774052379.624814,0.50,4,3992.50,48.34,1786.20,1892.73,0.00,3521356698110.058594,3521356698111.533691,11,0,0.002736,0.003958,17072814,10972095,0,0,16647,0,1,1 +1774052384.628712,0.50,4,3992.50,48.34,1786.22,1892.71,0.00,0.000000,0.000000,11,0,0.002629,0.003483,17072882,10972174,0,0,16650,0,1,1 +1774052389.628978,0.45,4,3992.50,48.39,1784.26,1894.67,0.00,0.000000,0.000000,11,0,0.002741,0.003962,17072948,10972255,0,0,16652,0,1,1 +1774052394.626109,0.55,4,3992.50,48.39,1784.28,1894.65,0.00,0.000000,0.000000,11,0,0.002735,0.003967,17073013,10972336,0,0,16655,0,1,1 +1774052399.624846,0.50,4,3992.50,48.39,1784.31,1894.63,0.00,0.176998,0.000000,199,0,0.002809,0.003995,17073083,10972419,0,0,16657,0,1,1 +1774052404.627833,0.50,4,3992.50,48.39,1784.32,1894.61,0.00,3516337085701.064453,0.000000,11,0,0.002732,0.003949,17073148,10972499,0,0,16660,0,1,1 +1774052409.625863,0.50,4,3992.50,48.36,1785.71,1893.23,0.00,2.009581,0.000195,238,2,0.002735,0.003956,17073213,10972579,0,0,16662,0,1,1 +1774052414.626455,0.50,4,3992.50,48.36,1785.71,1893.22,0.00,3518020441665.836426,0.021872,226,83,0.002729,0.003972,17073278,10972661,0,0,16665,0,1,1 +1774052419.624601,0.55,4,3992.50,48.35,1785.73,1893.21,0.00,0.000000,0.000000,226,83,0.002722,0.003943,17073342,10972740,0,0,16667,0,1,1 +1774052424.625491,4.22,4,3992.50,48.87,1765.31,1913.56,0.00,0.000000,0.000000,226,83,0.016893,15.426130,17074388,10974605,0,0,16670,0,1,1 +1774052429.629024,28.70,4,3992.50,49.01,1752.85,1918.78,0.00,3515952561854.007812,3515952561855.480469,11,0,0.036365,118.564712,17077037,10987062,0,0,16672,0,1,1 +1774052434.625221,17.70,4,3992.50,48.26,1777.07,1889.48,0.00,20834.761801,31185.013122,1972723,560063,0.055377,71.097276,17081255,10994685,0,0,16675,0,1,1 +1774052439.629198,13.39,4,3992.50,50.51,1686.73,1977.77,0.00,3515640558579.833984,3515640548244.203613,226,83,40.032969,0.028536,17085659,10996401,0,0,16677,0,1,1 +1774052444.628946,1.00,4,3992.50,49.03,1744.84,1919.66,0.00,20833.780200,31198.659281,1972092,560375,0.005716,0.007081,17085781,10996533,0,0,16680,0,1,1 +1774052449.624517,10.27,4,3992.50,48.29,1773.35,1890.81,0.00,3521556970584.784668,3521556960212.713379,11,0,0.020026,40.098559,17087092,11000926,0,0,16682,0,1,1 +1774052454.628798,0.80,4,3992.50,48.02,1784.02,1880.15,0.00,1.494521,0.022051,226,83,0.002543,0.006277,17087163,11001045,0,0,16685,0,1,1 +1774052459.629348,0.60,4,3992.50,48.03,1783.84,1880.32,0.00,3518050205768.818848,3518050205770.292480,11,0,0.003058,0.006031,17087224,11001154,0,0,16687,0,1,1 +1774052464.629067,0.55,4,3992.50,48.02,1783.89,1880.27,0.00,2.008902,0.000195,238,2,0.001144,0.003198,17087259,11001217,0,0,16690,0,1,1 +1774052469.624763,0.45,4,3992.50,48.07,1782.21,1881.95,0.00,20854.233990,31262.300601,1972855,560844,0.001171,0.003222,17087296,11001281,0,0,16692,0,1,1 +1774052474.625783,0.50,4,3992.50,47.88,1789.62,1874.54,0.00,3517719480131.077637,3517719480135.123047,1972092,560764,0.001152,0.003205,17087332,11001345,0,0,16695,0,1,1 +1774052479.628813,0.50,4,3992.50,47.88,1789.62,1874.54,0.00,4.062285,2.024945,1972855,560864,0.001144,0.003186,17087367,11001407,0,0,16697,0,1,1 +1774052484.627162,0.50,4,3992.50,47.88,1789.38,1874.79,0.00,3519599273142.936035,3519599262740.218262,199,0,0.000916,0.002565,17087395,11001458,0,0,16700,0,1,1 +1774052489.628598,0.45,4,3992.50,47.88,1789.38,1874.78,0.00,3517426593130.049805,0.000000,11,0,0.001207,0.003280,17087435,11001526,0,0,16702,0,1,1 +1774052494.628708,0.55,4,3992.50,47.70,1796.55,1867.62,0.00,20833.768252,31236.700878,1972092,560789,0.001220,0.003935,17087476,11001599,0,0,16705,0,1,1 +1774052499.629103,0.40,4,3992.50,47.73,1795.33,1868.84,0.00,3518159283018.153320,3518159272615.813477,11,0,0.001246,0.003271,17087518,11001668,0,0,16707,0,1,1 +1774052504.628592,0.55,4,3992.50,47.74,1795.09,1869.08,0.00,0.050005,0.000000,70,0,0.001207,0.003249,17087557,11001735,0,0,16710,0,1,1 +1774052509.624424,0.50,4,3992.50,47.74,1795.09,1869.08,0.00,3521372387564.925781,0.000000,11,0,0.001145,0.003191,17087592,11001797,0,0,16712,0,1,1 +1774052514.625867,25.35,4,3992.50,54.51,1537.95,2134.00,0.00,0.176902,0.000000,199,0,43.853430,0.026650,17092239,11003500,0,0,16715,0,1,1 +1774052519.629430,31.28,4,3992.50,54.39,1548.03,2129.38,0.00,3515932038393.449707,0.000000,70,0,118.678142,0.043131,17104241,11006690,0,0,16717,0,1,1 +1774052524.624608,27.98,4,3992.50,54.36,1549.74,2128.46,0.00,0.127076,0.000000,199,0,118.477127,0.034791,17116253,11009221,0,0,16720,0,1,1 +1774052529.628453,27.96,4,3992.50,54.43,1547.20,2131.15,0.00,1.317834,0.022053,226,83,119.871531,0.033260,17128452,11011751,0,0,16722,0,1,1 +1774052534.625320,28.16,4,3992.50,54.42,1547.42,2130.76,0.00,0.000000,0.000000,226,83,118.436202,0.040321,17140472,11014883,0,0,16725,0,1,1 +1774052539.628427,28.53,4,3992.50,54.42,1547.67,2130.50,0.00,0.512670,3516252219599.425293,238,2,120.091280,0.047000,17152678,11018340,0,0,16727,0,1,1 +1774052544.626163,28.04,4,3992.50,54.36,1549.68,2128.48,0.00,3520031043738.981445,0.021885,226,83,118.816367,0.035827,17164677,11020993,0,0,16730,0,1,1 +1774052549.624617,28.38,4,3992.50,54.34,1550.54,2127.64,0.00,3519525946077.092285,3519525946078.389648,199,0,119.598220,0.039872,17176737,11024095,0,0,16732,0,1,1 +1774052554.628723,23.68,4,3992.50,54.36,1550.06,2128.21,0.00,1.830333,0.000195,238,2,119.267811,0.034793,17188999,11026687,0,0,16735,0,1,1 +1774052559.628131,1.05,4,3992.50,49.32,1747.24,1931.01,0.00,3518853896076.607910,3518853896078.616699,11,0,28.245938,0.016126,17191976,11027732,0,0,16737,0,1,1 +1774052564.628414,14.47,4,3992.50,49.43,1742.82,1935.39,0.00,20833.191697,31236.342162,1972105,561478,16.124050,0.078629,17197410,11031755,0,0,16740,0,1,1 +1774052569.625480,14.19,4,3992.50,48.27,1788.32,1889.90,0.00,0.000000,0.092535,1972105,561892,24.143351,0.108351,17205468,11037840,0,0,16742,0,1,1 +1774052574.628448,3.40,4,3992.50,48.27,1788.07,1890.07,0.00,3516350169523.871094,3516350159124.738770,226,83,0.014515,0.010929,17205752,11038097,0,0,16745,0,1,1 +1774052579.628552,20.49,4,3992.50,48.77,1764.10,1909.64,0.00,0.000000,0.000000,226,83,0.036806,82.522177,17208331,11046929,0,0,16747,0,1,1 +1774052584.629088,28.82,4,3992.50,48.38,1771.59,1894.11,0.00,0.000000,0.000000,226,83,0.049735,119.555569,17212064,11059225,0,0,16750,0,1,1 +1774052589.624616,2.06,4,3992.50,48.50,1766.11,1899.06,0.00,3521587413207.952637,3521587413209.377441,70,0,0.004954,3.013513,17212232,11059680,0,0,16752,0,1,1 +1774052594.624628,14.83,4,3992.50,48.27,1775.26,1889.85,0.00,3518428538771.544922,0.000000,11,0,40.066512,0.025889,17216622,11061227,0,0,16755,0,1,1 +1774052599.630205,0.70,4,3992.50,48.06,1783.43,1881.75,0.00,0.176756,0.000000,199,0,0.006784,0.006686,17216736,11061341,0,0,16757,0,1,1 +1774052604.627649,0.90,4,3992.50,48.13,1780.75,1884.42,0.00,1.319522,0.022082,226,83,0.003482,0.006240,17216820,11061449,0,0,16760,0,1,1 +1774052609.628914,0.40,4,3992.50,48.18,1778.80,1886.37,0.00,20846.983125,31410.883308,1972278,563499,0.002758,0.003959,17216887,11061529,0,0,16762,0,1,1 +1774052614.624722,0.65,4,3992.50,48.18,1778.82,1886.36,0.00,3521389085394.951660,3521389074820.988770,11,0,0.002736,0.003955,17216952,11061609,0,0,16765,0,1,1 +1774052619.628854,0.65,4,3992.50,48.12,1781.35,1883.82,0.00,20840.596777,31418.428960,1973041,563799,0.002731,0.003951,17217017,11061689,0,0,16767,0,1,1 +1774052624.629261,0.50,4,3992.50,47.96,1787.54,1877.64,0.00,3518150599477.599609,3518150588891.838867,70,0,0.002759,0.003982,17217084,11061771,0,0,16770,0,1,1 +1774052629.628695,0.55,4,3992.50,47.98,1786.59,1878.56,0.00,0.000000,0.000000,70,0,0.002289,0.003331,17217136,11061831,0,0,16772,0,1,1 +1774052634.626486,0.50,4,3992.50,48.00,1786.02,1879.16,0.00,1.446440,0.022080,226,83,0.002828,0.004042,17217207,11061918,0,0,16775,0,1,1 +1774052639.624496,0.55,4,3992.50,48.00,1786.05,1879.13,0.00,20864.623582,31457.375824,1973041,564201,0.002780,0.004026,17217276,11062003,0,0,16777,0,1,1 +1774052644.628675,0.45,4,3992.50,48.00,1786.07,1879.12,0.00,3515499371681.803223,3515499361103.528809,70,0,0.002731,0.003961,17217341,11062084,0,0,16780,0,1,1 +1774052649.628645,0.45,4,3992.50,47.99,1786.08,1879.11,0.00,20853.827664,31445.090967,1972278,564168,0.002808,0.003982,17217411,11062166,0,0,16782,0,1,1 +1774052654.624505,0.60,4,3992.50,47.99,1786.10,1879.10,0.00,3521352331810.538086,3521352321210.436523,199,0,0.002736,0.003968,17217476,11062247,0,0,16785,0,1,1 +1774052659.628567,0.45,4,3992.50,47.99,1786.10,1879.10,0.00,3515581599682.769531,0.000000,11,0,0.002731,0.003939,17217541,11062326,0,0,16787,0,1,1 +1774052664.629217,0.35,4,3992.50,47.88,1790.48,1874.71,0.00,20855.106824,31440.961243,1973041,564401,0.002504,0.003330,17217599,11062395,0,0,16790,0,1,1 +1774052669.628402,6.68,4,3992.50,48.59,1761.25,1902.40,0.00,3519011030339.067383,3519011019749.933594,199,0,0.017765,26.046939,17218713,11065262,0,0,16792,0,1,1 +1774052674.628601,4.46,4,3992.50,48.15,1777.65,1885.14,0.00,3518296607899.390625,0.000000,70,0,0.007223,14.025284,17219128,11066795,0,0,16795,0,1,1 +1774052679.628386,0.50,4,3992.50,48.12,1778.62,1884.17,0.00,0.000000,0.000000,70,0,0.001144,0.003188,17219163,11066857,0,0,16797,0,1,1 +1774052684.629230,0.60,4,3992.50,47.96,1785.04,1877.75,0.00,3517843854863.718750,0.000000,11,0,0.001144,0.003197,17219198,11066920,0,0,16800,0,1,1 +1774052689.628924,0.45,4,3992.50,47.99,1784.05,1878.74,0.00,2.008912,0.000195,238,2,0.001144,0.003188,17219233,11066982,0,0,16802,0,1,1 +1774052694.628693,0.45,4,3992.50,47.99,1784.05,1878.73,0.00,3518599477540.913574,3518599477542.745605,199,0,0.001144,0.003842,17219268,11067049,0,0,16805,0,1,1 +1774052699.628505,0.60,4,3992.50,47.99,1784.05,1878.73,0.00,20858.425411,31484.467009,1973041,564797,0.001144,0.003175,17219303,11067110,0,0,16807,0,1,1 +1774052704.624645,0.55,4,3992.50,48.00,1783.58,1879.20,0.00,3521155361239.087891,2.005063,1972278,564733,0.000941,0.002610,17219333,11067164,0,0,16810,0,1,1 +1774052709.624593,0.45,4,3992.50,48.00,1783.59,1879.20,0.00,3518473770304.931641,3518473759673.288574,11,0,0.001203,0.003258,17219373,11067231,0,0,16812,0,1,1 +1774052714.624595,0.55,4,3992.50,48.00,1783.59,1879.21,0.00,0.000000,0.000000,11,0,0.001220,0.003291,17219414,11067300,0,0,16815,0,1,1 +1774052719.626005,0.45,4,3992.50,48.00,1783.37,1879.42,0.00,0.176903,0.000000,199,0,0.001299,0.003313,17219459,11067372,0,0,16817,0,1,1 +1774052724.624493,0.75,4,3992.50,48.00,1783.37,1879.42,0.00,3519502173637.943359,0.000000,11,0,0.001145,0.003199,17219494,11067435,0,0,16820,0,1,1 +1774052729.625511,0.55,4,3992.50,48.00,1783.37,1879.42,0.00,20849.506193,31478.967254,1972278,564829,0.001144,0.003187,17219529,11067497,0,0,16822,0,1,1 +1774052734.625206,0.45,4,3992.50,48.00,1783.38,1879.41,0.00,3518651610437.701660,3518651599803.953613,226,83,0.001144,0.003198,17219564,11067560,0,0,16825,0,1,1 +1774052739.628373,34.29,4,3992.50,54.57,1536.07,2136.46,0.00,3516210400570.735840,3516210400572.158691,70,0,76.663775,0.033081,17227643,11069794,0,0,16827,0,1,1 +1774052744.628173,28.66,4,3992.50,54.54,1541.38,2135.29,0.00,20858.601160,31486.780197,1973041,565061,118.169521,0.022402,17239812,11071335,0,0,16830,0,1,1 +1774052749.628608,28.13,4,3992.50,54.53,1541.74,2134.98,0.00,3518130617421.763184,3518130606792.976562,238,2,119.959464,0.028039,17252266,11073381,0,0,16832,0,1,1 +1774052754.629054,27.90,4,3992.50,54.19,1555.18,2121.52,0.00,0.000000,0.000000,238,2,118.355315,0.022840,17264524,11074974,0,0,16835,0,1,1 +1774052759.629117,27.92,4,3992.50,54.37,1548.05,2128.62,0.00,3518392618884.351562,3518392618886.183594,199,0,120.178918,0.058298,17277031,11079115,0,0,16837,0,1,1 +1774052764.624506,27.57,4,3992.50,54.25,1552.61,2124.10,0.00,3521685634250.843750,0.000000,11,0,118.281685,0.044035,17289275,11082403,0,0,16840,0,1,1 +1774052769.629168,28.10,4,3992.50,54.31,1550.12,2126.54,0.00,20838.387279,31456.396320,1973041,565129,120.057616,0.029107,17301644,11084487,0,0,16842,0,1,1 +1774052774.628907,27.81,4,3992.50,54.37,1548.11,2128.56,0.00,3518620627089.431641,3518620616460.967773,11,0,118.779683,0.047634,17313852,11087983,0,0,16845,0,1,1 +1774052779.624564,16.10,4,3992.50,54.24,1553.05,2123.74,0.00,0.000000,0.000000,11,0,115.063196,0.036646,17325627,11090639,0,0,16847,0,1,1 +1774052784.624524,0.65,4,3992.50,48.06,1795.16,1881.62,0.00,2.008805,0.000195,238,2,0.001167,0.001550,17325655,11090675,0,0,16850,0,1,1 +1774052789.627135,0.80,4,3992.50,48.05,1795.51,1881.27,0.00,3516600884911.582031,3516600884913.589355,11,0,0.004000,0.003952,17325739,11090761,0,0,16852,0,1,1 +1774052794.626784,7.47,4,3992.50,48.03,1796.31,1880.46,0.00,2.008930,0.000195,238,2,0.006672,0.004168,17325896,11090893,0,0,16855,0,1,1 +1774052799.628748,1.50,4,3992.50,48.02,1796.51,1880.24,0.00,20843.812482,31473.873741,1972299,565382,0.009243,0.006632,17326087,11091082,0,0,16857,0,1,1 +1774052804.624536,1.91,4,3992.50,48.15,1791.64,1885.13,0.00,3521403509888.704102,3521403499245.502441,238,2,0.011974,0.007684,17326303,11091275,0,0,16860,0,1,1 +1774052809.628930,3.27,4,3992.50,48.34,1784.05,1892.68,0.00,20837.752569,31458.846764,1973062,565752,0.032182,0.005367,17326479,11091390,0,0,16862,0,1,1 +1774052814.624524,2.42,4,3992.50,48.28,1786.58,1890.16,0.00,0.000000,0.010752,1973062,565774,2.081017,0.067458,17330558,11095213,0,0,16865,0,1,1 +1774052819.628381,1.71,4,3992.50,48.18,1790.23,1886.49,0.00,3515724679167.412598,3515724668545.704590,226,83,1.750817,0.056967,17333998,11098477,0,0,16867,0,1,1 +1774052824.628639,2.72,4,3992.50,48.53,1776.75,1899.97,0.00,3518255546571.161621,3518255546572.635742,11,0,0.384114,0.017576,17334906,11099374,0,0,16870,0,1,1 +1774052829.627836,2.47,4,3992.50,48.44,1780.08,1896.62,0.00,0.000000,0.000000,11,0,1.908944,0.062042,17338722,11102887,0,0,16872,0,1,1 +1774052834.628920,2.87,4,3992.50,48.37,1782.79,1893.94,0.00,0.049989,0.000000,70,0,1.968544,0.065607,17342768,11106679,0,0,16875,0,1,1 +1774052839.624884,4.34,4,3992.50,48.86,1763.75,1912.95,0.00,20870.806890,31512.207257,1972299,566079,2.178152,0.071156,17347179,11110806,0,0,16877,0,1,1 +1774052844.629094,2.52,4,3992.50,48.61,1773.47,1903.23,0.00,3515476798690.652832,3515476788065.367188,226,83,2.065269,0.067118,17351306,11114716,0,0,16880,0,1,1 +1774052849.624595,2.32,4,3992.50,48.54,1776.11,1900.61,0.00,0.000000,0.000000,226,83,2.127511,0.071700,17355597,11118892,0,0,16882,0,1,1 +1774052854.624539,1.16,4,3992.50,47.98,1798.35,1878.35,0.00,0.512994,3518476646080.513184,238,2,2.046164,0.069355,17359690,11122868,0,0,16885,0,1,1 +1774052859.627489,1.66,4,3992.50,47.87,1802.42,1874.29,0.00,3516362606283.873535,0.021862,226,83,0.089606,0.009651,17360007,11123288,0,0,16887,0,1,1 +1774052864.626278,2.57,4,3992.50,48.40,1781.83,1894.88,0.00,3519289711767.471680,3519289711768.945801,11,0,1.401014,0.038950,17362869,11125457,0,0,16890,0,1,1 +1774052869.628982,2.37,4,3992.50,48.71,1769.62,1907.05,0.00,0.049973,0.000000,70,0,2.074257,0.066274,17367063,11129310,0,0,16892,0,1,1 +1774052874.627194,2.37,4,3992.50,48.74,1768.50,1908.20,0.00,1.959490,0.000195,238,2,1.957629,0.061817,17371041,11132881,0,0,16895,0,1,1 +1774052879.624525,2.47,4,3992.50,48.84,1764.45,1912.24,0.00,3520316908144.640625,3520316908146.650391,11,0,1.965963,0.068049,17374989,11136825,0,0,16897,0,1,1 +1774052884.624514,1.91,4,3992.50,48.73,1768.69,1907.99,0.00,20854.050542,31487.449044,1972299,566805,2.020100,0.065137,17379070,11140656,0,0,16900,0,1,1 +1774052889.624611,1.20,4,3992.50,48.15,1791.62,1885.09,0.00,3518368987966.738770,3518368977331.560059,238,2,0.959204,0.045774,17381058,11143218,0,0,16902,0,1,1 +1774052894.628692,1.66,4,3992.50,48.29,1785.97,1890.72,0.00,3515567864264.549805,3515567864266.380371,199,0,0.009194,0.006872,17381234,11143405,0,0,16905,0,1,1 +1774052899.628231,2.22,4,3992.50,48.75,1767.80,1908.86,0.00,20855.753580,31490.549500,1972299,567155,1.123827,0.030390,17383545,11144868,0,0,16907,0,1,1 +1774052904.628829,2.12,4,3992.50,48.82,1765.10,1911.56,0.00,3518016488843.283203,3518016478209.443359,226,83,2.430707,0.082948,17388393,11149660,0,0,16910,0,1,1 +1774052909.626512,2.21,4,3992.50,49.11,1753.73,1922.90,0.00,3520068307861.791016,3520068307863.088379,199,0,1.707393,0.052336,17391839,11152661,0,0,16912,0,1,1 +1774052914.628510,3.07,4,3992.50,48.75,1768.04,1908.62,0.00,1.318321,0.022061,226,83,1.693041,0.061821,17395312,11156221,0,0,16915,0,1,1 +1774052919.625960,2.42,4,3992.50,48.49,1778.02,1898.64,0.00,20863.148671,31503.942763,1972299,567460,1.777434,0.063153,17398931,11159824,0,0,16917,0,1,1 +1774052924.624417,2.17,4,3992.50,48.62,1773.25,1903.43,0.00,3519523547396.364258,3519523536759.008789,199,0,2.421280,0.073168,17403671,11163993,0,0,16920,0,1,1 +1774052929.628944,2.31,4,3992.50,48.75,1768.15,1908.54,0.00,20839.026371,31459.537835,1973062,567690,1.489759,0.058952,17406750,11167421,0,0,16922,0,1,1 +1774052934.624573,0.81,4,3992.50,48.67,1771.19,1905.48,0.00,3521516440737.766602,3521516430098.335938,199,0,1.888079,0.061035,17410512,11170959,0,0,16925,0,1,1 +1774052939.628521,0.75,4,3992.50,48.63,1772.71,1903.97,0.00,0.000000,0.000000,199,0,0.120608,0.009685,17410842,11171463,0,0,16927,0,1,1 +1774052944.628880,0.80,4,3992.50,48.63,1772.73,1903.95,0.00,1.318753,0.022069,226,83,0.002562,0.001935,17410907,11171523,0,0,16930,0,1,1 +1774052949.624624,0.55,4,3992.50,48.63,1772.74,1903.95,0.00,20870.275062,31515.027039,1972299,567824,0.002066,0.003007,17410965,11171592,0,0,16932,0,1,1 +1774052954.628552,0.90,4,3992.50,48.63,1772.89,1903.80,0.00,3515675531382.322754,3515675520756.451660,11,0,0.002811,0.003604,17411015,11171651,0,0,16935,0,1,1 +1774052959.624584,0.60,4,3992.50,48.62,1772.93,1903.75,0.00,20870.568688,31513.336866,1972299,567977,0.001984,0.002809,17411073,11171723,0,0,16937,0,1,1 +1774052964.629082,1.26,4,3992.50,48.47,1779.11,1897.53,0.00,3515275160057.748535,3515275149432.982910,11,0,0.115460,4.030429,17417735,11179471,0,0,16940,0,1,1 +1774052969.629086,2.37,4,3992.50,48.38,1782.54,1894.00,0.00,20858.053711,31488.425507,1973062,568133,0.190686,7.075193,17428917,11192668,0,0,16942,0,1,1 +1774052974.626873,2.37,4,3992.50,48.39,1781.98,1894.54,0.00,3519995056173.105469,3519995045538.017090,11,0,0.220724,8.322137,17441726,11208113,0,0,16945,0,1,1 +1774052979.628420,2.42,4,3992.50,48.68,1770.28,1905.84,0.00,0.000000,0.000000,11,0,0.238747,8.761492,17455396,11224764,0,0,16947,0,1,1 +1774052984.628908,2.42,4,3992.50,48.61,1772.32,1903.23,0.00,0.000000,0.000000,11,0,0.228928,8.621614,17468567,11240899,0,0,16950,0,1,1 +1774052989.629386,2.48,4,3992.50,48.32,1783.16,1891.85,0.00,2.008597,0.000195,238,2,0.208900,7.407726,17480714,11254886,0,0,16952,0,1,1 +1774052994.628998,2.27,4,3992.50,48.69,1768.03,1906.43,0.00,0.000000,0.000000,238,2,0.212619,7.906281,17492847,11269945,0,0,16955,0,1,1 +1774052999.626513,2.58,4,3992.50,48.61,1771.01,1903.09,0.00,3520186663506.305664,0.021886,226,83,0.164246,5.825323,17502592,11280899,0,0,16957,0,1,1 +1774053004.629218,2.93,4,3992.50,48.38,1779.30,1894.27,0.00,3516534859172.816895,3516534859174.113281,199,0,0.188102,6.704091,17513730,11293470,0,0,16960,0,1,1 +1774053009.629148,2.32,4,3992.50,48.86,1760.29,1912.81,0.00,1.318866,0.022071,226,83,0.237322,8.649847,17527182,11309998,0,0,16962,0,1,1 +1774053014.624508,2.68,4,3992.50,48.36,1779.35,1893.30,0.00,3521705270373.566406,3521705270374.864258,199,0,0.162278,5.643293,17536787,11320727,0,0,16965,0,1,1 +1774053019.624866,2.88,4,3992.50,48.39,1777.53,1894.71,0.00,3518185216052.375000,0.000000,11,0,0.170996,6.026212,17546990,11332032,0,0,16967,0,1,1 +1774053024.624497,2.62,4,3992.50,48.69,1765.49,1906.23,0.00,0.000000,0.000000,11,0,0.235417,8.762659,17560423,11348560,0,0,16970,0,1,1 +1774053029.628594,2.42,4,3992.50,48.47,1773.73,1897.53,0.00,20841.005773,31543.469113,1973069,568839,0.172158,6.110985,17570458,11360296,0,0,16972,0,1,1 +1774053034.625908,2.73,4,3992.50,48.39,1776.50,1894.39,0.00,3520327900519.480957,3520327889802.314941,199,0,0.164287,5.875477,17580226,11371291,0,0,16975,0,1,1 +1774053039.624527,2.42,4,3992.50,48.89,1756.30,1914.13,0.00,1.832342,0.000195,238,2,0.228520,8.467959,17593375,11387127,0,0,16977,0,1,1 +1774053044.624526,2.52,4,3992.50,48.48,1772.00,1897.95,0.00,3518437712721.648438,3518437712723.480469,199,0,0.172539,6.025828,17603226,11398863,0,0,16980,0,1,1 +1774053049.624526,2.27,4,3992.50,48.44,1772.96,1896.69,0.00,20853.841335,31571.777275,1972306,568846,0.123412,4.340043,17610799,11407140,0,0,16982,0,1,1 +1774053054.628122,2.67,4,3992.50,48.40,1774.25,1894.93,0.00,3515908855782.090820,3515908845070.025879,238,2,0.163265,5.753985,17620568,11417991,0,0,16985,0,1,1 +1774053059.628809,2.22,4,3992.50,48.74,1760.52,1908.22,0.00,3517953254605.814941,3517953254607.823242,11,0,0.225802,8.404295,17633354,11433893,0,0,16987,0,1,1 +1774053064.628483,2.37,4,3992.50,48.38,1774.06,1894.31,0.00,0.000000,0.000000,11,0,0.125476,4.312363,17640872,11442275,0,0,16990,0,1,1 +1774053069.628979,2.37,4,3992.50,48.49,1769.50,1898.52,0.00,2.008590,0.000195,238,2,0.130058,4.559765,17648894,11450944,0,0,16992,0,1,1 +1774053074.629372,2.32,4,3992.50,49.17,1742.50,1925.08,0.00,0.000000,0.000000,238,2,0.217324,8.061581,17661476,11466099,0,0,16995,0,1,1 +1774053079.625471,2.42,4,3992.50,48.67,1761.38,1905.71,0.00,3521184277697.297852,3521184277699.131348,199,0,0.168424,5.841637,17671105,11477503,0,0,16997,0,1,1 +1774053084.628429,2.77,4,3992.50,48.47,1769.31,1897.52,0.00,20845.577566,31626.387980,1973070,569432,0.124075,4.372124,17678778,11485840,0,0,17000,0,1,1 +1774053089.629283,2.62,4,3992.50,48.51,1767.04,1899.36,0.00,3517836134061.262695,3517836123275.918457,199,0,0.158827,5.629318,17688353,11496476,0,0,17002,0,1,1 +1774053094.629156,2.42,4,3992.50,48.93,1750.42,1915.55,0.00,3518526817316.596191,0.000000,11,0,0.232209,8.532282,17701513,11512720,0,0,17005,0,1,1 +1774053099.628450,2.77,4,3992.50,48.67,1760.29,1905.43,0.00,20861.027949,31649.628678,1973070,569490,0.155249,5.415382,17710728,11523029,0,0,17007,0,1,1 +1774053104.629456,2.67,4,3992.50,48.48,1767.23,1897.95,0.00,3517729430009.894043,3517729419224.984863,11,0,0.162055,5.760141,17720432,11533845,0,0,17010,0,1,1 +1774053109.629199,3.18,4,3992.50,48.96,1747.56,1917.02,0.00,1.495878,0.022071,226,83,0.233027,8.693271,17733788,11550210,0,0,17012,0,1,1 +1774053114.629006,2.52,4,3992.50,48.31,1772.89,1891.27,0.00,3518572592295.623535,3518572592297.097656,11,0,0.166099,5.804706,17743410,11561482,0,0,17015,0,1,1 +1774053119.629425,2.37,4,3992.50,48.27,1774.07,1889.78,0.00,0.049996,0.000000,70,0,0.123171,4.373993,17750934,11569696,0,0,17017,0,1,1 +1774053124.629295,1.71,4,3992.50,48.26,1774.25,1889.42,0.00,3518529238830.214844,0.000000,11,0,0.050585,1.751888,17754006,11573077,0,0,17020,0,1,1 +1774053129.625731,0.85,4,3992.50,48.01,1784.00,1879.68,0.00,20868.894475,31707.448643,1972307,569715,0.004805,0.121989,17754253,11573368,0,0,17022,0,1,1 +1774053134.628790,1.65,4,3992.50,47.90,1789.58,1875.54,0.00,3516285682529.648926,3516285671703.970215,226,83,0.003820,0.003977,17754335,11573457,0,0,17025,0,1,1 +1774053139.629036,0.65,4,3992.50,47.90,1789.90,1875.23,0.00,3518264097622.350098,3518264097623.824219,11,0,0.000586,0.001372,17754364,11573490,0,0,17027,0,1,1 +1774053144.627515,0.75,4,3992.50,48.03,1784.78,1880.34,0.00,0.050015,0.000000,70,0,0.001618,0.001991,17754397,11573518,0,0,17030,0,1,1 +1774053149.628758,13.52,4,3992.50,53.86,1556.42,2108.71,0.00,3517563218944.980469,0.000000,11,0,0.196228,0.005228,17754851,11573749,0,0,17032,0,1,1 +1774053154.628931,0.55,4,3992.50,53.99,1551.32,2113.80,0.00,0.000000,0.000000,11,0,2.781402,0.078738,17760308,11578372,0,0,17035,0,1,1 +1774053159.628487,0.50,4,3992.50,54.20,1543.01,2122.07,0.00,0.000000,0.000000,11,0,5.106064,0.137710,17770060,11586256,0,0,17037,0,1,1 +1774053164.629012,0.50,4,3992.50,53.90,1554.91,2110.21,0.00,1.495644,0.022068,226,83,4.814776,0.157145,17779608,11595031,0,0,17040,0,1,1 +1774053169.628701,0.50,4,3992.50,53.99,1551.38,2113.75,0.00,3518656065066.564453,3518656065068.038086,11,0,3.646531,0.108993,17786589,11601349,0,0,17042,0,1,1 +1774053174.625396,0.60,4,3992.50,54.23,1541.70,2123.42,0.00,2.010118,0.000195,238,2,4.553932,0.125980,17795225,11608620,0,0,17045,0,1,1 +1774053179.624498,0.45,4,3992.50,53.98,1551.80,2113.32,0.00,3519069447713.473145,3519069447715.432129,70,0,6.118106,0.178045,17807088,11618602,0,0,17047,0,1,1 +1774053184.625002,0.55,4,3992.50,54.05,1548.97,2116.15,0.00,20871.242165,31691.058728,1972432,570104,4.090553,0.124266,17815016,11625668,0,0,17050,0,1,1 +1774053189.629213,0.55,4,3992.50,54.39,1535.54,2129.54,0.00,4.061326,0.024198,1973195,570197,5.391926,0.148512,17825144,11634184,0,0,17052,0,1,1 +1774053194.629444,0.55,4,3992.50,48.98,1747.54,1917.59,0.00,3518275197935.510742,0.000000,1972432,570124,3.874037,0.113407,17832522,11640645,0,0,17055,0,1,1 +1774053199.629206,0.70,4,3992.50,48.78,1755.43,1909.70,0.00,3518604125369.143066,3518604114546.274414,226,83,0.891384,0.042820,17834293,11642906,0,0,17057,0,1,1 +1774053204.629021,0.50,4,3992.50,48.72,1757.78,1907.36,0.00,0.000000,0.000000,226,83,0.350258,0.014555,17835006,11643662,0,0,17060,0,1,1 +1774053209.629035,0.55,4,3992.50,48.72,1757.59,1907.55,0.00,3518427706312.205078,3518427706313.628906,70,0,0.002300,0.002262,17835052,11643708,0,0,17062,0,1,1 +1774053214.629373,0.70,4,3992.50,48.71,1758.02,1907.12,0.00,1.445703,0.022069,226,83,0.002169,0.002964,17835109,11643775,0,0,17065,0,1,1 +1774053219.628788,0.80,4,3992.50,48.71,1757.98,1907.16,0.00,3518848657298.833496,3518848657300.130371,199,0,0.001814,0.003486,17835159,11643833,0,0,17067,0,1,1 +1774053224.628745,1.00,4,3992.50,48.57,1763.58,1901.48,0.00,20877.466002,31694.740860,1973195,570406,0.003000,0.003416,17835221,11643904,0,0,17070,0,1,1 +1774053229.624939,0.50,4,3992.50,48.46,1767.77,1897.36,0.00,3521117154638.386230,3521117143812.966309,199,0,0.041003,1.304075,17837603,11646442,0,0,17072,0,1,1 +1774053234.624530,2.73,4,3992.50,48.70,1758.25,1906.86,0.00,3518724850564.657227,0.000000,11,0,0.203226,7.792795,17849330,11660815,0,0,17075,0,1,1 +1774053239.629398,2.53,4,3992.50,48.84,1752.49,1912.31,0.00,0.000000,0.000000,11,0,0.239011,9.227441,17863192,11677910,0,0,17077,0,1,1 +1774053244.624499,2.58,4,3992.50,48.98,1746.46,1917.77,0.00,0.000000,0.000000,11,0,0.243521,9.189062,17877153,11695113,0,0,17080,0,1,1 +1774053249.626761,2.52,4,3992.50,48.78,1753.66,1909.99,0.00,0.049977,0.000000,70,0,0.228012,8.378197,17890297,11711028,0,0,17082,0,1,1 +1774053254.629129,2.37,4,3992.50,48.45,1766.27,1897.05,0.00,3516771868995.408203,0.000000,11,0,0.138522,4.900552,17898499,11720184,0,0,17085,0,1,1 +1774053259.624592,0.70,4,3992.50,48.30,1772.15,1891.17,0.00,0.000000,0.000000,11,0,0.013443,0.433584,17899279,11721059,0,0,17087,0,1,1 +1774053264.629485,0.70,4,3992.50,48.33,1770.95,1892.37,0.00,0.000000,0.000000,11,0,0.001620,0.003712,17899338,11721134,0,0,17090,0,1,1 +1774053269.629001,0.75,4,3992.50,48.01,1784.91,1879.51,0.00,20875.415082,31717.805247,1972432,570713,0.000731,0.001469,17899363,11721167,0,0,17092,0,1,1 +1774053274.629055,0.40,4,3992.50,48.04,1783.68,1880.74,0.00,4.064703,6.056577,1973195,570865,0.000385,0.001079,17899380,11721190,0,0,17095,0,1,1 +1774053279.624524,0.60,4,3992.50,48.04,1783.44,1880.98,0.00,3521628121161.305664,3521628110306.662598,226,83,0.000507,0.000976,17899399,11721216,0,0,17097,0,1,1 +1774053284.629175,0.40,4,3992.50,48.04,1783.44,1880.98,0.00,20856.563769,31705.284657,1973195,570941,0.000526,0.001919,17899418,11721246,0,0,17100,0,1,1 +1774053289.624616,0.45,4,3992.50,48.04,1783.44,1880.98,0.00,3521648694962.247559,3521648684093.522461,226,83,0.000578,0.001301,17899441,11721273,0,0,17102,0,1,1 +1774053294.626150,0.40,4,3992.50,48.06,1782.70,1881.72,0.00,3517357688192.140137,3517357688193.436523,199,0,0.000415,0.001071,17899460,11721295,0,0,17105,0,1,1 +1774053299.624619,0.40,4,3992.50,47.96,1786.59,1877.84,0.00,20879.613419,31744.553768,1972432,570871,0.000552,0.000988,17899482,11721322,0,0,17107,0,1,1 +1774053304.627390,0.50,4,3992.50,47.85,1791.13,1873.29,0.00,3516488531516.444336,3516488520661.023926,11,0,0.000563,0.001304,17899503,11721350,0,0,17110,0,1,1 +1774053309.628582,0.55,4,3992.50,47.85,1791.14,1873.29,0.00,20868.421631,31727.316885,1972432,570917,0.000727,0.001398,17899536,11721385,0,0,17112,0,1,1 +1774053314.628819,0.50,4,3992.50,47.86,1790.65,1873.78,0.00,3518270771693.348145,3518270760830.369141,238,2,0.000390,0.001096,17899553,11721409,0,0,17115,0,1,1 +1774053319.629453,0.45,4,3992.50,47.86,1790.65,1873.78,0.00,3517990707611.425781,3517990707613.383789,70,0,0.000535,0.000975,17899574,11721435,0,0,17117,0,1,1 +1774053324.627906,0.75,4,3992.50,47.88,1789.67,1874.76,0.00,0.000000,0.000000,70,0,0.000556,0.001304,17899595,11721463,0,0,17120,0,1,1 +1774053329.626677,0.85,4,3992.50,47.84,1791.50,1873.11,0.00,0.126984,0.000000,199,0,0.001586,0.001670,17899638,11721505,0,0,17122,0,1,1 +1774053334.627594,1.00,4,3992.50,47.96,1786.69,1877.92,0.00,1.831500,0.000195,238,2,0.002290,0.003375,17899687,11721558,0,0,17125,0,1,1 +1774053339.628587,8.84,4,3992.50,54.68,1527.79,2140.73,0.00,3517738896202.471680,0.021871,226,83,0.027894,0.002562,17899822,11721625,0,0,17127,0,1,1 +1774053344.628478,8.51,4,3992.50,54.99,1515.78,2152.92,0.00,3518513771037.659668,3518513771039.133301,11,0,5.359785,0.117153,17909814,11728309,0,0,17130,0,1,1 +1774053349.628578,2.28,4,3992.50,55.33,1502.50,2166.48,0.00,20877.041776,31734.487339,1973195,571228,7.194398,0.190986,17923285,11739377,0,0,17132,0,1,1 +1774053354.626267,2.38,4,3992.50,55.01,1515.75,2153.61,0.00,3520064454418.943359,3520064454422.990234,1972432,571152,7.965764,0.208063,17938123,11751519,0,0,17135,0,1,1 +1774053359.624658,2.44,4,3992.50,55.00,1516.13,2153.40,0.00,3519569391250.144043,3519569380382.930176,238,2,7.942676,0.225817,17953282,11764397,0,0,17137,0,1,1 +1774053364.625271,2.69,4,3992.50,55.15,1510.70,2159.24,0.00,20872.896792,31731.282868,1973195,571255,5.926038,0.170984,17964465,11774400,0,0,17140,0,1,1 +1774053369.629101,2.44,4,3992.50,55.49,1497.40,2172.75,0.00,3515743936191.173340,3515743925341.600586,199,0,6.879551,0.187385,17977381,11785417,0,0,17142,0,1,1 +1774053374.628770,2.63,4,3992.50,55.28,1506.07,2164.34,0.00,3518669902042.314941,0.000000,11,0,8.200376,0.229767,17993133,11798445,0,0,17145,0,1,1 +1774053379.624493,2.74,4,3992.50,55.36,1502.98,2167.61,0.00,2.010509,0.000195,238,2,5.970825,0.168970,18004408,11808431,0,0,17147,0,1,1 +1774053384.625233,2.08,4,3992.50,55.64,1492.35,2178.27,0.00,3517916408093.187988,3517916408095.145996,70,0,8.153481,0.211276,18019548,11820778,0,0,17150,0,1,1 +1774053389.625974,2.33,4,3992.50,55.24,1507.73,2162.90,0.00,0.000000,0.000000,70,0,8.447326,0.217089,18035307,11833214,0,0,17152,0,1,1 +1774053394.624506,35.29,4,3992.50,54.55,1542.30,2135.77,0.00,20879.479797,31744.513214,1972432,571232,155.173153,0.093808,18055618,11839962,0,0,17155,0,1,1 +1774053399.624600,28.46,4,3992.50,54.35,1550.36,2127.73,0.00,3518371025044.685547,3518371014181.089355,238,2,118.739032,0.056818,18068510,11844265,0,0,17157,0,1,1 +1774053404.625002,29.00,4,3992.50,54.33,1550.74,2127.33,0.00,3518154006630.858398,3518154006632.866699,11,0,119.568901,0.044435,18081017,11847711,0,0,17160,0,1,1 +1774053409.628718,27.94,4,3992.50,54.37,1549.19,2128.88,0.00,0.049963,0.000000,70,0,118.703235,0.051246,18093063,11851622,0,0,17162,0,1,1 +1774053414.629281,28.56,4,3992.50,54.51,1544.07,2134.04,0.00,3518041079568.415039,0.000000,11,0,119.619845,0.047026,18105243,11855072,0,0,17165,0,1,1 +1774053419.628438,28.36,4,3992.50,54.40,1548.23,2129.88,0.00,2.009127,0.000195,238,2,119.255277,0.041980,18117355,11858243,0,0,17167,0,1,1 +1774053424.625089,28.64,4,3992.50,54.47,1545.68,2132.44,0.00,3520795961206.463867,3520795961208.297363,199,0,119.139244,0.044392,18129489,11861548,0,0,17170,0,1,1 +1774053429.628973,9.89,4,3992.50,48.14,1793.54,1884.68,0.00,1.317824,0.022053,226,83,86.560570,0.028109,18138469,11863510,0,0,17172,0,1,1 +1774053434.629123,14.67,4,3992.50,48.89,1763.90,1914.33,0.00,3518331939686.402344,3518331939687.875977,11,0,16.270801,0.084150,18144137,11867703,0,0,17175,0,1,1 +1774053439.628542,13.67,4,3992.50,49.22,1751.04,1927.13,0.00,20879.983619,31739.735617,1973208,572477,23.994742,0.104195,18151937,11873491,0,0,17177,0,1,1 +1774053444.628771,0.50,4,3992.50,48.84,1766.00,1912.21,0.00,3518276427400.895020,3518276416542.850586,70,0,0.001481,0.002314,18151973,11873539,0,0,17180,0,1,1 +1774053449.624560,0.80,4,3992.50,48.49,1779.64,1898.55,0.00,20895.103586,31762.810263,1973208,572507,0.003264,0.005184,18152051,11873639,0,0,17182,0,1,1 +1774053454.628658,0.55,4,3992.50,48.48,1779.98,1898.22,0.00,3515556148038.917969,0.451388,1972445,572655,0.002503,0.003340,18152109,11873709,0,0,17185,0,1,1 +1774053459.628896,0.65,4,3992.50,48.41,1782.89,1895.29,0.00,3518269719074.732422,3518269708212.228027,11,0,0.002746,0.003954,18152175,11873789,0,0,17187,0,1,1 +1774053464.625411,0.40,4,3992.50,48.41,1782.93,1895.27,0.00,0.000000,0.000000,11,0,0.002736,0.003967,18152240,11873870,0,0,17190,0,1,1 +1774053469.628953,0.55,4,3992.50,48.41,1782.95,1895.25,0.00,2.007367,0.000195,238,2,0.002732,0.003952,18152305,11873950,0,0,17192,0,1,1 +1774053474.628900,0.50,4,3992.50,48.37,1784.22,1893.99,0.00,20871.707236,31737.289025,1972445,572978,0.002842,0.004084,18152379,11874039,0,0,17195,0,1,1 +1774053479.624514,0.40,4,3992.50,48.39,1783.77,1894.43,0.00,3521525956458.596680,3521525945585.602539,11,0,0.002761,0.004633,18152446,11874125,0,0,17197,0,1,1 +1774053484.624510,0.50,4,3992.50,48.39,1783.79,1894.43,0.00,20877.576292,31737.077405,1973208,573112,0.002734,0.003964,18152511,11874206,0,0,17200,0,1,1 +1774053489.626594,0.55,4,3992.50,48.39,1783.59,1894.63,0.00,3516970896719.923340,3516970885864.780273,199,0,0.002504,0.003319,18152569,11874274,0,0,17202,0,1,1 +1774053494.627426,0.50,4,3992.50,48.39,1783.71,1894.50,0.00,20869.844927,31731.838200,1972445,573126,0.002795,0.003991,18152638,11874357,0,0,17205,0,1,1 +1774053499.626449,0.70,4,3992.50,48.41,1782.75,1895.47,0.00,3519124647601.965820,3519124636736.220215,11,0,0.005183,0.006407,18152731,11874454,0,0,17207,0,1,1 +1774053504.624538,0.60,4,3992.50,48.41,1782.76,1895.45,0.00,20885.542789,31749.312636,1973208,573258,0.003799,0.004367,18152818,11874548,0,0,17210,0,1,1 +1774053509.624535,0.50,4,3992.50,48.23,1789.94,1888.28,0.00,3518439384217.001465,3518439373355.904297,226,83,0.003663,0.004632,18152886,11874632,0,0,17212,0,1,1 +1774053514.627409,0.50,4,3992.50,48.23,1789.95,1888.27,0.00,3516415910424.366211,3516415910425.662598,199,0,0.002732,0.003962,18152951,11874713,0,0,17215,0,1,1 +1774053519.629138,0.55,4,3992.50,48.23,1789.71,1888.49,0.00,3517220975676.454102,0.000000,70,0,0.002720,0.003953,18153015,11874793,0,0,17217,0,1,1 +1774053524.629266,0.45,4,3992.50,48.23,1789.74,1888.48,0.00,0.000000,0.000000,70,0,0.002505,0.003331,18153073,11874862,0,0,17220,0,1,1 +1774053529.626937,0.50,4,3992.50,48.23,1789.75,1888.46,0.00,20887.239674,31752.154333,1973208,573461,0.002722,0.003956,18153137,11874942,0,0,17222,0,1,1 +1774053534.628682,0.55,4,3992.50,47.96,1800.44,1877.78,0.00,0.000000,0.010446,1973208,573470,0.002733,0.003963,18153202,11875023,0,0,17225,0,1,1 +1774053539.628481,17.04,4,3992.50,48.41,1779.98,1895.40,0.00,3518578447671.041504,3518578436810.615723,199,0,0.030534,69.305361,18155377,11882377,0,0,17227,0,1,1 +1774053544.628745,29.58,4,3992.50,48.70,1760.57,1906.82,0.00,3518251623220.898926,0.000000,70,0,0.026212,122.568446,18157310,11895100,0,0,17230,0,1,1 +1774053549.628708,4.22,4,3992.50,48.50,1767.37,1899.03,0.00,20873.603044,31913.487243,1972450,574541,0.004984,13.224364,18157577,11896597,0,0,17232,0,1,1 +1774053554.629227,14.34,4,3992.50,50.06,1705.75,1959.80,0.00,3518071668103.321289,3518071657064.539551,199,0,40.058106,0.025180,18161928,11898229,0,0,17235,0,1,1 +1774053559.629242,10.44,4,3992.50,48.57,1762.54,1901.78,0.00,1.318844,0.022070,226,83,0.023657,40.065469,18163389,11902693,0,0,17237,0,1,1 +1774053564.626692,1.30,4,3992.50,48.58,1762.20,1901.96,0.00,0.000000,0.000000,226,83,0.003307,0.007450,18163491,11902849,0,0,17240,0,1,1 +1774053569.629374,0.50,4,3992.50,48.39,1769.61,1894.56,0.00,0.512713,3516551005474.722656,238,2,0.001144,0.003186,18163526,11902911,0,0,17242,0,1,1 +1774053574.628945,0.60,4,3992.50,48.42,1768.38,1895.79,0.00,3518739512941.647461,3518739512943.479492,199,0,0.001132,0.003198,18163560,11902974,0,0,17245,0,1,1 +1774053579.629234,0.45,4,3992.50,48.42,1768.33,1895.84,0.00,20891.506569,31978.960952,1972567,575245,0.001152,0.003196,18163596,11903037,0,0,17247,0,1,1 +1774053584.627738,0.55,4,3992.50,48.38,1769.92,1894.25,0.00,3519490004006.717773,3519489992915.480957,11,0,0.001170,0.003230,18163633,11903102,0,0,17250,0,1,1 +1774053589.628982,0.50,4,3992.50,48.41,1768.70,1895.47,0.00,20887.696983,31972.868133,1972567,575251,0.001144,0.003175,18163668,11903163,0,0,17252,0,1,1 +1774053594.629248,0.45,4,3992.50,48.41,1768.70,1895.46,0.00,3518249987537.670898,3518249976450.332031,11,0,0.000915,0.002577,18163696,11903215,0,0,17255,0,1,1 +1774053599.628629,0.60,4,3992.50,48.41,1768.70,1895.46,0.00,0.000000,0.000000,11,0,0.000941,0.002586,18163726,11903267,0,0,17257,0,1,1 +1774053604.624580,0.50,4,3992.50,48.43,1767.97,1896.20,0.00,2.010417,0.000195,238,2,0.001271,0.003356,18163771,11903340,0,0,17260,0,1,1 +1774053609.629181,0.55,4,3992.50,48.43,1768.04,1896.12,0.00,3515202422592.334961,3515202422594.341797,11,0,0.001299,0.003942,18163816,11903415,0,0,17262,0,1,1 +1774053614.624551,0.50,4,3992.50,48.43,1768.05,1896.12,0.00,1.497187,0.022091,226,83,0.000924,0.002587,18163845,11903468,0,0,17265,0,1,1 +1774053619.624514,0.45,4,3992.50,48.43,1768.05,1896.12,0.00,3518463261694.771973,3518463261696.245605,11,0,0.001144,0.003188,18163880,11903530,0,0,17267,0,1,1 +1774053624.629083,23.03,4,3992.50,54.32,1543.91,2126.81,0.00,1.494435,0.022050,226,83,32.020474,0.026600,18167332,11905259,0,0,17270,0,1,1 +1774053629.626564,31.92,4,3992.50,54.44,1545.06,2131.64,0.00,20901.937126,31999.221266,1972575,575533,118.424873,0.055120,18179468,11909330,0,0,17272,0,1,1 +1774053634.625026,28.41,4,3992.50,54.43,1546.71,2130.89,0.00,3519519768338.351074,3519519757244.668457,70,0,120.000890,0.056897,18191583,11913695,0,0,17275,0,1,1 +1774053639.624946,28.13,4,3992.50,54.49,1544.45,2133.40,0.00,3518493533631.335449,0.000000,11,0,118.562059,0.048516,18203537,11917444,0,0,17277,0,1,1 +1774053644.624496,29.51,4,3992.50,54.33,1550.59,2127.25,0.00,20898.853261,31986.111302,1973338,575657,119.775774,0.053065,18215730,11921486,0,0,17280,0,1,1 +1774053649.626683,28.16,4,3992.50,54.33,1550.63,2127.24,0.00,3516899015228.206055,3516899004146.743652,70,0,118.908195,0.051468,18227671,11925510,0,0,17282,0,1,1 +1774053654.624523,28.46,4,3992.50,54.36,1549.52,2128.28,0.00,0.127008,0.000000,199,0,119.413614,0.051952,18239667,11929425,0,0,17285,0,1,1 +1774053659.624838,28.54,4,3992.50,54.53,1542.94,2134.86,0.00,20891.411505,31981.303078,1972575,575635,119.354673,0.051276,18251740,11933367,0,0,17287,0,1,1 +1774053664.628210,26.61,4,3992.50,54.46,1545.86,2132.05,0.00,3516066076795.125488,3516066065710.713379,226,83,118.880992,0.052007,18263707,11937330,0,0,17290,0,1,1 +1774053669.629304,3.51,4,3992.50,48.55,1777.06,1900.84,0.00,20891.037358,31976.482649,1973355,575795,40.063606,0.031221,18268062,11939153,0,0,17292,0,1,1 +1774053674.624422,9.91,4,3992.50,48.22,1790.12,1887.77,0.00,0.000000,0.280841,1973355,576152,8.068420,0.042153,18270814,11941110,0,0,17295,0,1,1 +1774053679.629391,18.13,4,3992.50,48.04,1796.77,1880.96,0.00,3514943603092.679199,0.240776,1972592,576599,32.151293,0.133959,18281007,11948605,0,0,17297,0,1,1 +1774053684.629000,0.75,4,3992.50,48.09,1794.89,1882.90,0.00,0.000000,0.190542,1972592,576609,0.002272,0.004461,18281068,11948689,0,0,17300,0,1,1 +1774053689.629115,0.50,4,3992.50,48.10,1794.45,1883.35,0.00,3518355820382.621094,3518355809291.526367,199,0,0.002644,0.003187,18281124,11948756,0,0,17302,0,1,1 +1774053694.626542,0.50,4,3992.50,48.12,1793.74,1884.07,0.00,3520248726765.666992,0.000000,11,0,0.002710,0.003966,18281187,11948837,0,0,17305,0,1,1 +1774053699.625484,0.50,4,3992.50,48.12,1793.76,1884.06,0.00,0.000000,0.000000,11,0,0.002734,0.003943,18281252,11948916,0,0,17307,0,1,1 +1774053704.624602,0.50,4,3992.50,48.12,1793.78,1884.04,0.00,20900.796206,31990.543553,1973355,577236,0.002734,0.003965,18281317,11948997,0,0,17310,0,1,1 +1774053709.624611,0.95,4,3992.50,48.13,1793.56,1884.25,0.00,3518430909698.156738,3518430898610.210449,199,0,0.002765,0.003979,18281384,11949079,0,0,17312,0,1,1 +1774053714.624522,0.55,4,3992.50,48.14,1792.83,1884.97,0.00,1.831868,0.000195,238,2,0.002891,0.004145,18281461,11949172,0,0,17315,0,1,1 +1774053719.624526,0.55,4,3992.50,48.14,1792.86,1884.96,0.00,3518434554574.163086,3518434554576.171875,11,0,0.002742,0.003962,18281527,11949253,0,0,17317,0,1,1 +1774053724.624508,0.50,4,3992.50,48.14,1792.87,1884.95,0.00,1.495806,0.022070,226,83,0.002505,0.003331,18281585,11949322,0,0,17320,0,1,1 +1774053729.624606,0.50,4,3992.50,48.14,1792.88,1884.93,0.00,3518368070134.481445,3518368070135.905273,70,0,0.002765,0.003967,18281652,11949403,0,0,17322,0,1,1 +1774053734.627007,0.70,4,3992.50,48.14,1792.89,1884.92,0.00,0.126892,0.000000,199,0,0.002776,0.003977,18281720,11949485,0,0,17325,0,1,1 +1774053739.625504,0.50,4,3992.50,48.14,1792.91,1884.91,0.00,20899.146642,31994.687663,1972592,577329,0.002734,0.003956,18281785,11949565,0,0,17327,0,1,1 +1774053744.626713,0.55,4,3992.50,48.14,1792.91,1884.89,0.00,3517586703063.023438,3517586691973.676758,11,0,0.002746,0.004594,18281851,11949649,0,0,17330,0,1,1 +1774053749.628634,0.50,4,3992.50,48.14,1792.94,1884.87,0.00,1.495226,0.022062,226,83,0.002733,0.003953,18281916,11949729,0,0,17332,0,1,1 +1774053754.626740,0.55,4,3992.50,48.14,1792.96,1884.86,0.00,0.000000,0.000000,226,83,0.002735,0.003966,18281981,11949810,0,0,17335,0,1,1 +1774053759.629049,0.55,4,3992.50,48.06,1796.05,1881.76,0.00,3516813331579.650391,3516813331581.123535,11,0,0.002740,0.003948,18282047,11949890,0,0,17337,0,1,1 +1774053764.628724,0.55,4,3992.50,48.06,1796.07,1881.75,0.00,1.495898,0.022072,226,83,0.002505,0.003343,18282105,11949960,0,0,17340,0,1,1 +1774053769.629198,0.50,4,3992.50,48.07,1795.83,1881.98,0.00,20893.627702,31982.246168,1973355,577640,0.002708,0.003954,18282168,11950040,0,0,17342,0,1,1 +1774053774.624617,0.50,4,3992.50,48.10,1794.39,1883.41,0.00,3521664252108.578125,3521664252112.629395,1972592,577562,0.002736,0.003968,18282233,11950121,0,0,17345,0,1,1 +1774053779.629422,15.01,4,3992.50,48.64,1770.66,1904.31,0.00,3515058683712.266113,3515058672630.623535,70,0,0.028033,63.636919,18284192,11957078,0,0,17347,0,1,1 +1774053784.624865,29.42,4,3992.50,48.65,1761.76,1904.83,0.00,0.000000,0.000000,70,0,0.052367,118.275147,18288218,11969341,0,0,17350,0,1,1 +1774053789.628488,6.92,4,3992.50,48.62,1761.19,1903.71,0.00,20877.867381,32138.058407,1972598,578691,0.012576,23.220217,18289100,11971838,0,0,17352,0,1,1 +1774053794.629187,14.59,4,3992.50,49.49,1726.26,1937.77,0.00,3517945270888.570312,3517945259621.846191,11,0,40.055619,0.023901,18293380,11973396,0,0,17355,0,1,1 +1774053799.628897,0.95,4,3992.50,49.28,1734.61,1929.40,0.00,0.000000,0.000000,11,0,0.005068,0.004182,18293483,11973486,0,0,17357,0,1,1 +1774053804.625527,0.95,4,3992.50,48.69,1757.85,1906.16,0.00,1.496810,0.022085,226,83,0.005664,0.008173,18293587,11973606,0,0,17360,0,1,1 +1774053809.628343,11.19,4,3992.50,48.27,1772.02,1889.74,0.00,3516457310493.860352,3516457310495.283203,70,0,0.028876,40.044635,18295552,11978068,0,0,17362,0,1,1 +1774053814.628825,0.55,4,3992.50,48.24,1772.98,1888.77,0.00,3518097498574.209961,0.000000,11,0,0.001144,0.003198,18295587,11978131,0,0,17365,0,1,1 +1774053819.626078,0.45,4,3992.50,48.08,1779.14,1882.61,0.00,2.009893,0.000195,238,2,0.001132,0.003190,18295621,11978193,0,0,17367,0,1,1 +1774053824.628804,0.55,4,3992.50,48.08,1779.15,1882.60,0.00,20903.083219,32209.286661,1973472,579562,0.000940,0.002594,18295651,11978246,0,0,17370,0,1,1 +1774053829.628430,0.50,4,3992.50,48.09,1778.90,1882.85,0.00,3518700475435.536133,3518700464122.322754,238,2,0.000903,0.002555,18295678,11978296,0,0,17372,0,1,1 +1774053834.624520,0.50,4,3992.50,48.09,1778.90,1882.85,0.00,3521190933715.331055,3521190933717.291504,70,0,0.001145,0.003200,18295713,11978359,0,0,17375,0,1,1 +1774053839.629277,0.55,4,3992.50,48.09,1778.92,1882.83,0.00,1.956927,0.000195,238,2,0.001118,0.003185,18295746,11978421,0,0,17377,0,1,1 +1774053844.625648,0.50,4,3992.50,48.09,1778.92,1882.83,0.00,20925.601842,32254.298689,1972709,579515,0.001254,0.003333,18295790,11978493,0,0,17380,0,1,1 +1774053849.624786,0.45,4,3992.50,48.09,1778.92,1882.83,0.00,3519043191843.724609,3519043180521.300293,238,2,0.001220,0.003282,18295831,11978561,0,0,17382,0,1,1 +1774053854.624599,0.50,4,3992.50,48.09,1778.91,1882.83,0.00,3518569314973.549805,3518569314975.558594,11,0,0.001325,0.003355,18295878,11978636,0,0,17385,0,1,1 +1774053859.625171,1.05,4,3992.50,48.09,1778.91,1882.83,0.00,0.176933,0.000000,199,0,0.001144,0.003188,18295913,11978698,0,0,17387,0,1,1 +1774053864.628760,0.45,4,3992.50,48.09,1778.92,1882.83,0.00,3515913846656.653320,0.000000,11,0,0.001131,0.003183,18295947,11978760,0,0,17390,0,1,1 +1774053869.629178,0.50,4,3992.50,48.09,1778.92,1882.84,0.00,20914.739458,32228.290680,1973472,579664,0.000915,0.002567,18295975,11978811,0,0,17392,0,1,1 +1774053874.627511,25.13,4,3992.50,54.63,1532.80,2139.08,0.00,3519610617699.639160,3519610606381.318848,70,0,46.685749,0.028293,18300909,11980596,0,0,17395,0,1,1 +1774053879.624773,31.13,4,3992.50,54.77,1532.75,2144.39,0.00,1.959862,0.000195,238,2,118.429296,0.027530,18313051,11982543,0,0,17397,0,1,1 +1774053884.629058,28.38,4,3992.50,54.62,1538.70,2138.37,0.00,3515424375588.527832,3515424375590.484375,70,0,119.464099,0.019849,18325406,11983911,0,0,17400,0,1,1 +1774053889.625507,28.09,4,3992.50,54.58,1540.28,2137.11,0.00,20931.300754,32254.029490,1973472,579822,118.653193,0.031798,18337663,11986297,0,0,17402,0,1,1 +1774053894.629291,28.36,4,3992.50,54.76,1533.46,2143.96,0.00,3515776647897.706543,3515776636589.616699,238,2,119.879845,0.033541,18350142,11988781,0,0,17405,0,1,1 +1774053899.628501,27.70,4,3992.50,54.55,1541.91,2135.61,0.00,3518993142936.905273,3518993142938.914062,11,0,118.581313,0.026433,18362247,11990749,0,0,17407,0,1,1 +1774053904.628989,28.68,4,3992.50,54.60,1539.79,2137.64,0.00,0.000000,0.000000,11,0,119.957245,0.028906,18374670,11992884,0,0,17410,0,1,1 +1774053909.628675,28.25,4,3992.50,54.79,1532.43,2144.99,0.00,2.008915,0.000195,238,2,118.973642,0.025956,18386955,11994745,0,0,17412,0,1,1 +1774053914.624416,23.01,4,3992.50,54.54,1542.33,2135.20,0.00,20932.309789,32258.889811,1973473,579967,119.466988,0.019403,18399212,11996122,0,0,17415,0,1,1 +1774053919.628997,1.10,4,3992.50,48.17,1791.58,1885.93,0.00,3515216201688.670898,3515216190383.929688,199,0,25.415465,0.009708,18401867,11996655,0,0,17417,0,1,1 +1774053924.628604,10.59,4,3992.50,48.19,1790.81,1886.69,0.00,3518713824829.191406,0.000000,11,0,8.069521,0.046157,18404776,11998748,0,0,17420,0,1,1 +1774053929.624524,12.93,4,3992.50,49.06,1756.80,1920.66,0.00,0.000000,0.000000,11,0,20.139411,0.089554,18411496,12003756,0,0,17422,0,1,1 +1774053934.628802,8.43,4,3992.50,49.05,1756.92,1920.55,0.00,0.049957,0.000000,70,0,12.062282,0.055287,18415418,12006723,0,0,17425,0,1,1 +1774053939.629414,1.05,4,3992.50,48.70,1770.78,1906.68,0.00,20914.018028,32228.411989,1973487,581207,0.003261,0.005848,18415496,12006829,0,0,17427,0,1,1 +1774053944.624541,0.80,4,3992.50,48.35,1784.29,1893.16,0.00,3521869632179.518555,3521869632183.581543,1972724,581130,0.002507,0.003334,18415554,12006898,0,0,17430,0,1,1 +1774053949.629192,0.80,4,3992.50,48.33,1785.37,1892.09,0.00,3515167585071.824707,3515167573762.557129,11,0,0.002731,0.003951,18415619,12006978,0,0,17432,0,1,1 +1774053954.627079,0.85,4,3992.50,48.34,1784.68,1892.79,0.00,0.000000,0.000000,11,0,0.002735,0.003966,18415684,12007059,0,0,17435,0,1,1 +1774053959.628447,0.60,4,3992.50,48.35,1784.50,1892.96,0.00,20906.842360,32224.158007,1972724,581466,0.002733,0.003953,18415749,12007139,0,0,17437,0,1,1 +1774053964.624595,0.75,4,3992.50,48.18,1790.91,1886.54,0.00,3521149232743.855469,3521149221414.717773,11,0,0.003228,0.004599,18415829,12007240,0,0,17440,0,1,1 +1774053969.624523,0.70,4,3992.50,48.18,1790.93,1886.53,0.00,0.176956,0.000000,199,0,0.004065,0.005696,18415910,12007346,0,0,17442,0,1,1 +1774053974.624521,0.75,4,3992.50,48.18,1790.94,1886.52,0.00,1.318848,0.022070,226,83,0.002127,0.003727,18415964,12007420,0,0,17445,0,1,1 +1774053979.624599,0.60,4,3992.50,48.18,1790.96,1886.50,0.00,0.512980,3518382269344.041992,238,2,0.002734,0.003954,18416029,12007500,0,0,17447,0,1,1 +1774053984.624456,0.75,4,3992.50,48.18,1790.98,1886.48,0.00,3518537965735.874023,0.021876,226,83,0.002808,0.003992,18416099,12007583,0,0,17450,0,1,1 +1774053989.628629,0.75,4,3992.50,48.18,1790.99,1886.47,0.00,20897.690735,32206.319300,1973487,581764,0.002731,0.003951,18416164,12007663,0,0,17452,0,1,1 +1774053994.624526,0.65,4,3992.50,48.18,1791.00,1886.46,0.00,0.000000,0.033915,1973487,581805,0.002736,0.003967,18416229,12007744,0,0,17455,0,1,1 +1774053999.628951,0.70,4,3992.50,48.18,1791.00,1886.45,0.00,0.000000,0.030832,1973487,581845,0.002517,0.003388,18416288,12007817,0,0,17457,0,1,1 +1774054004.627824,0.65,4,3992.50,48.18,1791.02,1886.44,0.00,3519230333800.703125,3519230322480.020996,226,83,0.002695,0.004526,18416350,12007896,0,0,17460,0,1,1 +1774054009.628692,0.75,4,3992.50,48.18,1791.03,1886.43,0.00,3517826569067.408691,3517826569068.881836,11,0,0.002764,0.003979,18416417,12007978,0,0,17462,0,1,1 +1774054014.624627,0.60,4,3992.50,48.18,1791.04,1886.41,0.00,1.497018,0.022088,226,83,0.002775,0.004001,18416485,12008062,0,0,17465,0,1,1 +1774054019.624843,0.85,4,3992.50,48.18,1791.07,1886.40,0.00,0.000000,0.000000,226,83,0.002733,0.003954,18416550,12008142,0,0,17467,0,1,1 +1774054024.628998,0.60,4,3992.50,47.99,1798.73,1878.72,0.00,3515515798378.825684,3515515798380.248047,70,0,0.002719,0.003961,18416614,12008223,0,0,17470,0,1,1 +1774054029.624527,12.22,4,3992.50,48.83,1763.95,1911.86,0.00,3521585930704.145508,0.000000,11,0,0.028338,48.919491,18418566,12013538,0,0,17472,0,1,1 +1774054034.628521,28.87,4,3992.50,48.58,1765.35,1902.15,0.00,20895.870173,32372.243996,1972725,582854,0.054661,119.944547,18422749,12026793,0,0,17475,0,1,1 +1774054039.624531,10.10,4,3992.50,48.25,1775.82,1888.99,0.00,3521247372254.775879,3521247360760.060547,11,0,0.024075,36.227588,18424559,12030859,0,0,17477,0,1,1 +1774054044.624615,14.97,4,3992.50,50.19,1699.88,1964.92,0.00,0.000000,0.000000,11,0,40.062067,0.034088,18428947,12033180,0,0,17480,0,1,1 +1774054049.628982,11.77,4,3992.50,48.93,1747.10,1915.68,0.00,1.494496,0.022051,226,83,0.038150,40.045865,18431511,12038778,0,0,17482,0,1,1 +1774054054.628882,0.75,4,3992.50,48.95,1746.24,1916.52,0.00,20930.863665,32475.290356,1972871,583578,0.002515,0.005833,18431581,12038889,0,0,17485,0,1,1 +1774054059.627548,0.55,4,3992.50,48.73,1755.06,1907.70,0.00,3519376520806.844727,3519376509260.864746,199,0,0.001145,0.003189,18431616,12038951,0,0,17487,0,1,1 +1774054064.628880,0.55,4,3992.50,48.41,1767.23,1895.54,0.00,3517500025170.816895,0.000000,11,0,0.001144,0.003197,18431651,12039014,0,0,17490,0,1,1 +1774054069.624545,0.50,4,3992.50,48.41,1767.35,1895.41,0.00,20950.104531,32502.916296,1972871,583655,0.001133,0.003835,18431685,12039080,0,0,17492,0,1,1 +1774054074.629414,0.55,4,3992.50,48.42,1766.87,1895.89,0.00,3515014193314.562012,3515014181782.946777,70,0,0.001168,0.003226,18431722,12039145,0,0,17495,0,1,1 +1774054079.627609,0.45,4,3992.50,48.42,1766.87,1895.89,0.00,1.446323,0.022078,226,83,0.001153,0.003197,18431758,12039208,0,0,17497,0,1,1 +1774054084.625945,0.60,4,3992.50,48.44,1766.14,1896.62,0.00,3519608394475.148926,3519608394476.445801,199,0,0.001120,0.003199,18431791,12039271,0,0,17500,0,1,1 +1774054089.629164,0.40,4,3992.50,48.39,1768.09,1894.67,0.00,3516173023413.660156,0.000000,11,0,0.000928,0.002584,18431820,12039323,0,0,17502,0,1,1 +1774054094.624536,0.55,4,3992.50,48.44,1766.12,1896.63,0.00,20951.335928,32508.926630,1972871,583702,0.001303,0.003382,18431867,12039398,0,0,17505,0,1,1 +1774054099.629205,0.75,4,3992.50,48.44,1766.13,1896.63,0.00,3515154371224.851074,3515154359687.261230,226,83,0.002363,0.003900,18431931,12039482,0,0,17507,0,1,1 +1774054104.626670,0.50,4,3992.50,48.44,1766.14,1896.62,0.00,3520222612283.270508,3520222612284.745117,11,0,0.002205,0.003617,18431988,12039560,0,0,17510,0,1,1 +1774054109.624491,0.50,4,3992.50,48.44,1766.14,1896.62,0.00,0.050022,0.000000,70,0,0.002067,0.003847,18432025,12039624,0,0,17512,0,1,1 +1774054114.624529,32.48,4,3992.50,54.57,1534.11,2136.67,0.00,1.958774,0.000195,238,2,40.463395,0.026303,18436440,12041227,0,0,17515,0,1,1 +1774054119.628378,30.39,4,3992.50,54.61,1537.79,2138.09,0.00,20913.831683,32454.049868,1972871,583897,120.154333,0.037931,18448958,12044096,0,0,17517,0,1,1 +1774054124.624536,29.43,4,3992.50,54.43,1545.05,2131.01,0.00,3521142978584.875488,3521142967026.891602,238,2,120.376335,0.055124,18461765,12048369,0,0,17520,0,1,1 +1774054129.624722,27.93,4,3992.50,54.48,1542.99,2133.02,0.00,20933.216704,32477.902397,1973634,584008,120.015073,0.055105,18474975,12052611,0,0,17522,0,1,1 +1774054134.628527,27.69,4,3992.50,54.75,1532.66,2143.48,0.00,3515761767776.067383,3515761756241.737793,11,0,119.458703,0.062184,18488326,12057419,0,0,17525,0,1,1 +1774054139.628901,28.10,4,3992.50,54.73,1533.14,2142.93,0.00,0.049996,0.000000,70,0,119.884843,0.060020,18501784,12061941,0,0,17527,0,1,1 +1774054144.624535,28.04,4,3992.50,54.41,1545.56,2130.47,0.00,20954.251872,32507.638288,1973634,584075,119.157793,0.060143,18515224,12066526,0,0,17530,0,1,1 +1774054149.628964,28.50,4,3992.50,54.62,1537.53,2138.55,0.00,3515323124895.763672,3515323113362.682129,70,0,119.725417,0.068187,18529051,12071688,0,0,17532,0,1,1 +1774054154.628897,23.11,4,3992.50,54.63,1537.29,2138.88,0.00,0.126955,0.000000,199,0,119.775206,0.064054,18542962,12076629,0,0,17535,0,1,1 +1774054159.628976,0.85,4,3992.50,48.17,1790.21,1885.94,0.00,1.318827,0.022070,226,83,27.308917,0.018437,18546284,12077889,0,0,17537,0,1,1 +1774054164.628971,13.07,4,3992.50,48.44,1779.55,1896.58,0.00,3518441109425.568359,3518441109426.992188,70,0,14.100327,0.068971,18550973,12081449,0,0,17540,0,1,1 +1774054169.628398,15.75,4,3992.50,49.00,1757.72,1918.38,0.00,3518840002052.968750,0.000000,11,0,26.163173,0.115546,18559494,12087755,0,0,17542,0,1,1 +1774054174.628388,2.20,4,3992.50,48.40,1781.07,1895.00,0.00,0.000000,0.000000,11,0,0.018512,0.012980,18559856,12088063,0,0,17545,0,1,1 +1774054179.625488,0.55,4,3992.50,48.43,1779.88,1896.20,0.00,0.000000,0.000000,11,0,0.002514,0.003343,18559915,12088133,0,0,17547,0,1,1 +1774054184.628104,0.50,4,3992.50,48.43,1780.11,1895.99,0.00,20925.193932,32463.302022,1973651,585377,0.002732,0.003962,18559980,12088214,0,0,17550,0,1,1 +1774054189.624618,0.55,4,3992.50,48.43,1779.76,1896.33,0.00,3520891958047.289551,3520891946493.082031,238,2,0.002736,0.003957,18560045,12088294,0,0,17552,0,1,1 +1774054194.625407,0.60,4,3992.50,48.43,1780.11,1895.98,0.00,3517881786004.855469,3517881786006.687012,199,0,0.002733,0.004607,18560110,12088379,0,0,17555,0,1,1 +1774054199.629402,0.50,4,3992.50,48.45,1779.16,1896.93,0.00,1.830373,0.000195,238,2,0.002731,0.003951,18560175,12088459,0,0,17557,0,1,1 +1774054204.629379,0.50,4,3992.50,48.46,1778.93,1897.14,0.00,3518453737169.467285,3518453737171.475586,11,0,0.002874,0.004097,18560251,12088549,0,0,17560,0,1,1 +1774054209.628111,0.50,4,3992.50,48.43,1779.81,1896.30,0.00,0.000000,0.000000,11,0,0.002531,0.003984,18560311,12088622,0,0,17562,0,1,1 +1774054214.627886,0.60,4,3992.50,48.44,1779.57,1896.53,0.00,0.176961,0.000000,199,0,0.002492,0.003331,18560368,12088691,0,0,17565,0,1,1 +1774054219.628798,0.50,4,3992.50,48.44,1779.62,1896.49,0.00,20932.179993,32475.204077,1973660,585857,0.002566,0.003348,18560430,12088761,0,0,17567,0,1,1 +1774054224.628779,0.75,4,3992.50,48.44,1779.62,1896.48,0.00,3518450095030.852051,3518450083484.385254,226,83,0.002721,0.003964,18560494,12088842,0,0,17570,0,1,1 +1774054229.628589,0.50,4,3992.50,48.44,1779.63,1896.47,0.00,0.513008,3518571300931.742188,238,2,0.002123,0.004369,18560548,12088920,0,0,17572,0,1,1 +1774054234.626403,21.81,4,3992.50,48.79,1761.20,1910.14,0.00,3519975818471.251953,3519975818473.261230,11,0,0.050095,90.335685,18564134,12098808,0,0,17575,0,1,1 +1774054239.629014,28.63,4,3992.50,48.65,1758.50,1904.62,0.00,0.000000,0.000000,11,0,0.049453,114.756236,18567876,12111581,0,0,17577,0,1,1 +1774054244.628256,1.60,4,3992.50,47.93,1786.54,1876.73,0.00,0.000000,0.000000,11,0,0.004154,0.006556,18567981,12111717,0,0,17580,0,1,1 +1774054249.629662,3.01,4,3992.50,52.95,1590.42,2072.99,0.00,0.000000,0.000000,11,0,0.206850,0.006549,18568147,12111874,0,0,17582,0,1,1 +1774054254.626497,12.09,4,3992.50,49.91,1709.47,1954.00,0.00,1.496748,0.022084,226,83,39.889574,0.025418,18572515,12113420,0,0,17585,0,1,1 +1774054259.629398,0.50,4,3992.50,48.77,1753.86,1909.61,0.00,3516397096558.517578,3516397096559.990234,11,0,0.002740,0.004604,18572581,12113505,0,0,17587,0,1,1 +1774054264.628445,0.50,4,3992.50,48.48,1765.43,1898.02,0.00,1.496086,0.022075,226,83,0.003334,0.005075,18572658,12113608,0,0,17590,0,1,1 +1774054269.628788,8.93,4,3992.50,48.83,1750.36,1911.75,0.00,3518196163189.829590,3518196163191.253418,70,0,0.024479,34.518812,18574281,12117645,0,0,17592,0,1,1 +1774054274.628383,2.71,4,3992.50,48.28,1771.23,1890.43,0.00,3518722140223.432129,0.000000,11,0,0.005896,5.553312,18574528,12118358,0,0,17595,0,1,1 +1774054279.628489,0.50,4,3992.50,48.32,1770.02,1891.64,0.00,0.049999,0.000000,70,0,0.001170,0.003219,18574565,12118422,0,0,17597,0,1,1 +1774054284.624522,0.50,4,3992.50,48.32,1770.02,1891.64,0.00,0.127054,0.000000,199,0,0.001153,0.003208,18574601,12118486,0,0,17600,0,1,1 +1774054289.628138,0.45,4,3992.50,48.31,1770.03,1891.64,0.00,1.830512,0.000195,238,2,0.000927,0.002552,18574630,12118536,0,0,17602,0,1,1 +1774054294.629160,0.50,4,3992.50,48.31,1770.03,1891.64,0.00,3517718106392.728516,3517718106394.736816,11,0,0.001144,0.003185,18574665,12118598,0,0,17605,0,1,1 +1774054299.624590,0.50,4,3992.50,48.31,1770.03,1891.63,0.00,0.050046,0.000000,70,0,0.001145,0.003191,18574700,12118660,0,0,17607,0,1,1 +1774054304.624510,0.65,4,3992.50,48.31,1770.09,1891.58,0.00,20951.770148,32727.419735,1973006,587873,0.001170,0.003229,18574737,12118725,0,0,17610,0,1,1 +1774054309.627796,0.50,4,3992.50,48.31,1770.09,1891.58,0.00,3516126086777.416016,3516126075009.740234,11,0,0.001202,0.003256,18574777,12118792,0,0,17612,0,1,1 +1774054314.624527,0.65,4,3992.50,48.35,1768.66,1893.01,0.00,0.000000,0.000000,11,0,0.001221,0.003938,18574818,12118865,0,0,17615,0,1,1 +1774054319.625698,0.50,4,3992.50,48.37,1767.92,1893.75,0.00,20946.585142,32719.372097,1973009,587989,0.001300,0.003313,18574863,12118937,0,0,17617,0,1,1 +1774054324.624624,0.65,4,3992.50,48.37,1767.93,1893.74,0.00,3519192752987.074707,3519192741206.992676,238,2,0.001145,0.003186,18574898,12118999,0,0,17620,0,1,1 +1774054329.624596,0.50,4,3992.50,48.37,1767.93,1893.74,0.00,3518456922091.684082,3518456922093.643066,70,0,0.000916,0.002567,18574926,12119050,0,0,17622,0,1,1 +1774054334.624511,1.00,4,3992.50,48.24,1773.01,1888.66,0.00,20955.863282,32727.643517,1973772,588114,0.002660,0.004530,18574993,12119141,0,0,17625,0,1,1 +1774054339.628496,29.04,4,3992.50,54.56,1534.03,2136.20,0.00,3515635206981.618164,3515635195217.990234,226,83,55.513791,0.031717,18581122,12121263,0,0,17627,0,1,1 +1774054344.628341,30.46,4,3992.50,54.48,1541.82,2132.90,0.00,0.000000,0.000000,226,83,118.205804,0.057484,18593500,12125698,0,0,17630,0,1,1 +1774054349.624468,27.85,4,3992.50,54.70,1532.95,2141.76,0.00,20970.305774,32752.630391,1973772,588278,118.808664,0.054644,18606123,12129823,0,0,17632,0,1,1 +1774054354.626194,28.22,4,3992.50,54.65,1535.34,2139.63,0.00,3517223019329.195312,3517223007560.060547,226,83,119.406728,0.059731,18619265,12134492,0,0,17635,0,1,1 +1774054359.627302,28.12,4,3992.50,54.83,1528.36,2146.58,0.00,3517657617158.261719,3517657617159.685059,70,0,119.125619,0.063601,18633186,12139346,0,0,17637,0,1,1 +1774054364.625178,28.22,4,3992.50,54.65,1535.18,2139.75,0.00,3519932528316.180176,0.000000,11,0,119.383902,0.071970,18647862,12144925,0,0,17640,0,1,1 +1774054369.629020,28.12,4,3992.50,55.26,1511.48,2163.50,0.00,2.007247,0.000195,238,2,119.430245,0.065427,18662035,12149905,0,0,17642,0,1,1 +1774054374.625220,27.94,4,3992.50,54.73,1532.02,2142.95,0.00,3521113577734.272949,3521113577736.283203,11,0,119.113195,0.067239,18676269,12154993,0,0,17645,0,1,1 +1774054379.624677,20.94,4,3992.50,54.81,1529.20,2145.81,0.00,1.495963,0.022073,226,83,119.470454,0.057464,18690019,12159444,0,0,17647,0,1,1 +1774054384.629306,2.21,4,3992.50,48.36,1781.74,1893.31,0.00,3515182952335.804199,3515182952337.100098,199,0,18.171793,0.017247,18692273,12160370,0,0,17650,0,1,1 +1774054389.628836,18.07,4,3992.50,49.46,1738.47,1936.52,0.00,0.000000,0.000000,199,0,26.165028,0.121344,18700858,12166993,0,0,17652,0,1,1 +1774054394.629109,11.43,4,3992.50,48.80,1764.23,1910.76,0.00,20954.376454,32726.260474,1973788,589290,14.089976,0.064641,18705515,12170514,0,0,17655,0,1,1 +1774054399.629520,1.35,4,3992.50,48.57,1773.16,1901.81,0.00,0.000000,0.026170,1973788,589332,0.007367,0.007830,18705679,12170679,0,0,17657,0,1,1 +1774054404.628864,0.45,4,3992.50,48.57,1773.20,1901.79,0.00,3518898726684.492676,3518898714910.570801,11,0,0.003569,0.003712,18705759,12170759,0,0,17660,0,1,1 +1774054409.625493,0.60,4,3992.50,48.57,1773.20,1901.80,0.00,1.496810,0.022085,226,83,0.003666,0.004623,18705827,12170842,0,0,17662,0,1,1 +1774054414.629086,0.70,4,3992.50,48.84,1762.66,1912.33,0.00,3515911072482.969238,3515911072484.441895,11,0,0.002732,0.003961,18705892,12170923,0,0,17665,0,1,1 +1774054419.625548,0.55,4,3992.50,48.84,1762.67,1912.32,0.00,0.050035,0.000000,70,0,0.002723,0.003957,18705956,12171003,0,0,17667,0,1,1 +1774054424.626398,0.70,4,3992.50,48.65,1770.33,1904.66,0.00,20952.086792,32723.464622,1973788,589919,0.002733,0.003964,18706021,12171084,0,0,17670,0,1,1 +1774054429.629409,0.50,4,3992.50,48.65,1770.34,1904.65,0.00,3516319818369.279297,3516319806601.027832,238,2,0.002807,0.004045,18706092,12171170,0,0,17672,0,1,1 +1774054434.624597,0.45,4,3992.50,48.46,1777.52,1897.48,0.00,3521826257359.587402,0.021896,226,83,0.002736,0.003968,18706157,12171251,0,0,17675,0,1,1 +1774054439.626404,0.50,4,3992.50,48.45,1777.98,1897.01,0.00,3517166240764.908691,3517166240766.381836,11,0,0.002504,0.003319,18706215,12171319,0,0,17677,0,1,1 +1774054444.627868,0.45,4,3992.50,48.48,1776.76,1898.23,0.00,20945.501084,32719.542876,1973025,589927,0.002841,0.004042,18706288,12171406,0,0,17680,0,1,1 +1774054449.627269,0.55,4,3992.50,48.48,1776.78,1898.21,0.00,3518859021713.370117,3518859009934.468262,11,0,0.002759,0.004617,18706355,12171491,0,0,17682,0,1,1 +1774054454.628286,0.50,4,3992.50,48.44,1778.30,1896.70,0.00,20951.437519,32722.542481,1973788,590075,0.002733,0.003963,18706420,12171572,0,0,17685,0,1,1 +1774054459.628563,0.55,4,3992.50,48.47,1777.33,1897.66,0.00,3518242031745.647949,3518242019972.801758,11,0,0.002733,0.003954,18706485,12171652,0,0,17687,0,1,1 +1774054464.628746,0.60,4,3992.50,48.47,1777.10,1897.89,0.00,0.176947,0.000000,199,0,0.003403,0.004886,18706553,12171735,0,0,17690,0,1,1 +1774054469.628197,0.70,4,3992.50,48.49,1776.46,1898.53,0.00,3518823225902.198730,0.000000,11,0,0.004473,0.005690,18706628,12171827,0,0,17692,0,1,1 +1774054474.628848,25.49,4,3992.50,48.65,1764.93,1904.84,0.00,1.495606,0.022067,226,83,0.057263,106.218679,18710924,12182988,0,0,17695,0,1,1 +1774054479.624553,24.74,4,3992.50,48.24,1774.59,1888.54,0.00,3521462377480.476562,3521462377481.951660,11,0,0.051798,98.945290,18714822,12193120,0,0,17697,0,1,1 +1774054484.624651,12.19,4,3992.50,53.29,1577.88,2086.52,0.00,0.000000,0.000000,11,0,14.993047,0.017270,18716738,12194009,0,0,17700,0,1,1 +1774054489.625607,3.51,4,3992.50,48.80,1753.82,1910.57,0.00,0.000000,0.000000,11,0,25.098518,0.014386,18719460,12194689,0,0,17702,0,1,1 +1774054494.624508,8.39,4,3992.50,48.86,1749.70,1913.11,0.00,0.176992,0.000000,199,0,0.025868,31.858833,18721216,12198240,0,0,17705,0,1,1 +1774054499.628638,3.21,4,3992.50,48.21,1772.80,1887.45,0.00,20953.546165,32943.576042,1973193,591978,0.007493,8.211233,18721660,12199224,0,0,17707,0,1,1 +1774054504.629139,0.65,4,3992.50,48.28,1770.12,1890.12,0.00,3518084526675.813477,3518084514677.259766,11,0,0.001144,0.003198,18721695,12199287,0,0,17710,0,1,1 +1774054509.624571,0.50,4,3992.50,48.14,1775.50,1884.75,0.00,2.010626,0.000195,238,2,0.001145,0.003178,18721730,12199348,0,0,17712,0,1,1 +1774054514.624596,0.55,4,3992.50,48.15,1775.25,1884.99,0.00,3518419967919.664551,3518419967921.672852,11,0,0.000916,0.003221,18721758,12199404,0,0,17715,0,1,1 +1774054519.628647,0.55,4,3992.50,48.17,1774.29,1885.96,0.00,1.494590,0.022052,226,83,0.001177,0.003224,18721796,12199469,0,0,17717,0,1,1 +1774054524.627045,0.80,4,3992.50,48.17,1774.29,1885.95,0.00,3519564519062.120605,3519564519063.417969,199,0,0.001132,0.003199,18721830,12199532,0,0,17720,0,1,1 +1774054529.626729,0.50,4,3992.50,48.17,1774.29,1885.95,0.00,1.831952,0.000195,238,2,0.001144,0.003188,18721865,12199594,0,0,17722,0,1,1 +1774054534.628779,0.55,4,3992.50,48.17,1774.29,1885.95,0.00,3516995190911.585938,3516995190913.593750,11,0,0.001219,0.003290,18721906,12199663,0,0,17725,0,1,1 +1774054539.624577,0.50,4,3992.50,48.17,1774.30,1885.95,0.00,0.050042,0.000000,70,0,0.001221,0.003284,18721947,12199731,0,0,17727,0,1,1 +1774054544.624595,0.55,4,3992.50,48.17,1774.30,1885.95,0.00,20974.964460,32974.874593,1973956,592233,0.001300,0.003324,18721992,12199804,0,0,17730,0,1,1 +1774054549.625623,0.55,4,3992.50,48.13,1775.78,1884.47,0.00,0.000000,0.005468,1973956,592238,0.000915,0.002554,18722020,12199854,0,0,17732,0,1,1 +1774054554.628777,0.45,4,3992.50,48.13,1775.79,1884.46,0.00,3516219094314.888672,3516219082322.365234,199,0,0.001152,0.003204,18722056,12199918,0,0,17735,0,1,1 +1774054559.629382,4.46,4,3992.50,54.52,1533.21,2134.41,0.00,1.318688,0.022068,226,83,0.605190,0.006872,18722242,12200106,0,0,17737,0,1,1 +1774054564.629079,40.13,4,3992.50,54.61,1534.86,2138.23,0.00,3518650714977.248047,3518650714978.722168,11,0,112.664682,0.055602,18733741,12204186,0,0,17740,0,1,1 +1774054569.627377,28.38,4,3992.50,54.69,1534.30,2141.23,0.00,0.177013,0.000000,199,0,119.948739,0.054242,18745718,12208268,0,0,17742,0,1,1 +1774054574.624851,27.89,4,3992.50,54.47,1543.05,2132.76,0.00,20985.521716,32991.918797,1973956,592454,118.404755,0.042499,18757671,12211503,0,0,17745,0,1,1 +1774054579.628383,28.64,4,3992.50,54.56,1539.71,2136.05,0.00,3515953158565.300293,3515953146571.612305,238,2,120.054673,0.059262,18770083,12216020,0,0,17747,0,1,1 +1774054584.628978,28.06,4,3992.50,54.48,1542.62,2133.20,0.00,3518018499244.813477,3518018499246.645508,199,0,118.367822,0.052587,18783054,12220051,0,0,17750,0,1,1 +1774054589.624490,28.39,4,3992.50,54.61,1537.86,2137.97,0.00,1.833482,0.000195,238,2,119.612264,0.059270,18796315,12224582,0,0,17752,0,1,1 +1774054594.627960,28.43,4,3992.50,54.81,1529.78,2146.00,0.00,3515996529260.055664,3515996529262.062988,11,0,119.318378,0.054170,18809127,12228776,0,0,17755,0,1,1 +1774054599.629258,28.79,4,3992.50,54.67,1535.32,2140.54,0.00,0.049987,0.000000,70,0,119.221352,0.050743,18821754,12232586,0,0,17757,0,1,1 +1774054604.628554,7.79,4,3992.50,49.55,1735.92,1939.97,0.00,20978.068304,32980.194260,1973963,592547,77.809711,0.031182,18829887,12234859,0,0,17760,0,1,1 +1774054609.626840,3.11,4,3992.50,48.86,1763.09,1912.80,0.00,3519644180190.675293,3519644168186.171387,11,0,2.022458,0.016133,18830700,12235475,0,0,17762,0,1,1 +1774054614.626293,16.16,4,3992.50,49.58,1734.82,1941.00,0.00,1.495964,0.022073,226,83,22.148862,0.106125,18838118,12241077,0,0,17765,0,1,1 +1774054619.624418,11.20,4,3992.50,49.57,1734.94,1940.84,0.00,3519757291742.117676,3519757291743.592285,11,0,16.104873,0.070567,18843402,12244956,0,0,17767,0,1,1 +1774054624.629279,6.92,4,3992.50,49.37,1742.73,1932.91,0.00,0.000000,0.000000,11,0,0.025447,24.422790,18844962,12247841,0,0,17770,0,1,1 +1774054629.627760,29.12,4,3992.50,48.88,1753.69,1913.68,0.00,20981.613135,33091.864225,1973969,594573,0.070420,118.404736,18850297,12260051,0,0,17772,0,1,1 +1774054634.626981,15.96,4,3992.50,48.79,1752.70,1910.25,0.00,0.000781,64.931601,1973970,595025,0.037489,62.305146,18852976,12266662,0,0,17775,0,1,1 +1774054639.629444,0.95,4,3992.50,48.61,1760.57,1903.33,0.00,3516705332210.029297,3516705320044.352051,199,0,0.002800,0.005615,18853050,12266771,0,0,17777,0,1,1 +1774054644.629393,13.86,4,3992.50,53.23,1579.77,2084.16,0.00,3518472709568.967773,0.000000,11,0,40.064645,0.022582,18857457,12268106,0,0,17780,0,1,1 +1774054649.629174,0.90,4,3992.50,48.56,1762.81,1901.10,0.00,20995.535408,33183.656640,1974079,595414,0.006788,0.008267,18857610,12268275,0,0,17782,0,1,1 +1774054654.628914,0.80,4,3992.50,48.40,1768.79,1895.14,0.00,3518620210205.096191,0.030666,1973316,595395,0.004680,0.009491,18857733,12268448,0,0,17785,0,1,1 +1774054659.629002,0.60,4,3992.50,48.43,1767.82,1896.11,0.00,3518375211713.471680,3518375199521.826660,199,0,0.003420,0.005855,18857819,12268564,0,0,17787,0,1,1 +1774054664.629133,0.50,4,3992.50,48.43,1767.83,1896.10,0.00,0.000000,0.000000,199,0,0.003899,0.007140,18857921,12268706,0,0,17790,0,1,1 +1774054669.628625,0.55,4,3992.50,48.43,1767.85,1896.08,0.00,3518794460120.708008,0.000000,70,0,0.003891,0.007154,18858022,12268848,0,0,17792,0,1,1 +1774054674.629306,0.55,4,3992.50,48.43,1767.86,1896.07,0.00,20991.707338,33177.870091,1974079,595629,0.003877,0.007131,18858122,12268989,0,0,17795,0,1,1 +1774054679.629488,0.60,4,3992.50,48.42,1768.12,1895.80,0.00,3518308634521.868164,3518308622333.067871,226,83,0.003513,0.005930,18858214,12269111,0,0,17797,0,1,1 +1774054684.627797,0.55,4,3992.50,48.40,1768.81,1895.12,0.00,0.000000,0.000000,226,83,0.003879,0.007122,18858314,12269251,0,0,17800,0,1,1 +1774054689.627120,0.55,4,3992.50,48.39,1769.30,1894.62,0.00,3518914015396.922363,3518914015398.219727,199,0,0.003879,0.007123,18858414,12269391,0,0,17802,0,1,1 +1774054694.624719,0.55,4,3992.50,48.39,1769.32,1894.61,0.00,3520127169135.017578,0.000000,11,0,0.003880,0.007136,18858514,12269532,0,0,17805,0,1,1 +1774054699.629476,0.60,4,3992.50,48.34,1771.23,1892.70,0.00,2.006880,0.000195,238,2,0.004575,0.006484,18858625,12269663,0,0,17807,0,1,1 +1774054704.629209,0.60,4,3992.50,48.37,1770.26,1893.66,0.00,3518625008453.817871,3518625008455.776367,70,0,0.004938,0.007542,18858747,12269818,0,0,17810,0,1,1 +1774054709.624561,0.60,4,3992.50,48.37,1770.28,1893.64,0.00,21010.029889,33213.594972,1973316,595878,0.004792,0.007787,18858848,12269960,0,0,17812,0,1,1 +1774054714.629152,0.55,4,3992.50,48.37,1770.30,1893.62,0.00,3515210259325.144531,3515210247142.682617,226,83,0.003874,0.007623,18858948,12270103,0,0,17815,0,1,1 +1774054719.628958,10.84,4,3992.50,48.84,1749.79,1912.32,0.00,20989.867052,33221.686991,1973316,596185,0.022538,40.069414,18860412,12274608,0,0,17817,0,1,1 +1774054724.627823,0.85,4,3992.50,48.47,1764.73,1897.57,0.00,3519236462801.184082,3519236450568.482910,70,0,0.002669,0.006641,18860492,12274737,0,0,17820,0,1,1 +1774054729.624614,0.60,4,3992.50,48.48,1764.14,1898.16,0.00,21003.979815,33241.844563,1973316,596285,0.002290,0.006360,18860562,12274859,0,0,17822,0,1,1 +1774054734.624571,0.50,4,3992.50,48.50,1763.41,1898.89,0.00,3518467498786.457031,3518467486556.390625,11,0,0.001844,0.005099,18860619,12274958,0,0,17825,0,1,1 +1774054739.627445,0.60,4,3992.50,48.30,1771.07,1891.23,0.00,0.176851,0.000000,199,0,0.002288,0.006352,18860689,12275080,0,0,17827,0,1,1 +1774054744.628770,0.60,4,3992.50,48.32,1770.34,1891.96,0.00,0.000000,0.000000,199,0,0.002309,0.006403,18860761,12275206,0,0,17830,0,1,1 +1774054749.624499,0.55,4,3992.50,48.33,1770.10,1892.20,0.00,1.833402,0.000195,238,2,0.002316,0.006393,18860833,12275330,0,0,17832,0,1,1 +1774054754.624786,0.55,4,3992.50,48.33,1770.10,1892.20,0.00,20991.400500,33221.106357,1974079,596407,0.001856,0.005130,18860891,12275431,0,0,17835,0,1,1 +1774054759.626428,0.65,4,3992.50,48.33,1770.11,1892.20,0.00,3517282310754.463379,3517282298528.069336,238,2,0.002338,0.006416,18860965,12275557,0,0,17837,0,1,1 +1774054764.624557,0.50,4,3992.50,48.33,1770.11,1892.19,0.00,0.000000,0.000000,238,2,0.002415,0.006512,18861044,12275690,0,0,17840,0,1,1 +1774054769.625656,0.55,4,3992.50,48.33,1770.11,1892.19,0.00,3517664172630.926758,3517664172632.885254,70,0,0.002382,0.006430,18861120,12275818,0,0,17842,0,1,1 +1774054774.628527,0.70,4,3992.50,48.33,1770.12,1892.18,0.00,1.957665,0.000195,238,2,0.002288,0.006337,18861190,12275939,0,0,17845,0,1,1 +1774054779.628943,0.50,4,3992.50,48.33,1770.13,1892.18,0.00,3518144507703.192871,0.021873,226,83,0.001831,0.005757,18861246,12276043,0,0,17847,0,1,1 +1774054784.629257,27.93,4,3992.50,54.55,1534.91,2135.66,0.00,3518215975721.252930,3518215975722.549805,199,0,45.267009,0.035728,18866078,12278204,0,0,17850,0,1,1 +1774054789.628378,30.27,4,3992.50,54.50,1541.68,2133.83,0.00,1.832158,0.000195,238,2,120.188286,0.032786,18878399,12280493,0,0,17852,0,1,1 +1774054794.624639,28.21,4,3992.50,54.53,1540.58,2134.96,0.00,21008.318472,33248.129261,1974079,596638,120.267261,0.056107,18890880,12284744,0,0,17855,0,1,1 +1774054799.628633,27.91,4,3992.50,54.68,1534.46,2141.04,0.00,3515628157293.898926,3515628157297.943359,1973316,596566,119.682700,0.055883,18903336,12288976,0,0,17857,0,1,1 +1774054804.629164,28.65,4,3992.50,54.53,1540.57,2134.96,0.00,3518064207650.820312,3518064195419.244141,199,0,118.560698,0.048097,18915796,12292669,0,0,17860,0,1,1 +1774054809.628452,29.25,4,3992.50,54.65,1535.91,2139.53,0.00,3518937930525.546875,0.000000,11,0,120.183145,0.050448,18928118,12296492,0,0,17862,0,1,1 +1774054814.628381,28.23,4,3992.50,54.49,1541.94,2133.53,0.00,2.008818,0.000195,238,2,118.565321,0.036023,18940267,12299246,0,0,17865,0,1,1 +1774054819.624498,28.49,4,3992.50,54.67,1534.99,2140.52,0.00,3521171105989.286133,0.021892,226,83,119.859444,0.029684,18952606,12301383,0,0,17867,0,1,1 +1774054824.629009,23.04,4,3992.50,54.59,1538.43,2137.13,0.00,0.000000,0.000000,226,83,119.055819,0.049836,18964754,12305164,0,0,17870,0,1,1 +1774054829.628628,1.25,4,3992.50,48.38,1781.50,1894.05,0.00,20990.811036,33226.239672,1973340,596749,23.839487,0.011423,18967287,12305738,0,0,17872,0,1,1 +1774054834.628396,13.88,4,3992.50,48.78,1765.55,1909.97,0.00,4.064935,0.279407,1974103,597262,14.162099,0.076836,18972176,12309405,0,0,17875,0,1,1 +1774054839.624515,14.76,4,3992.50,48.52,1775.63,1899.84,0.00,3521169807210.460938,3521169794971.725586,11,0,24.093359,0.098004,18979623,12314898,0,0,17877,0,1,1 +1774054844.627900,3.56,4,3992.50,48.54,1774.99,1900.42,0.00,20980.571580,33202.207984,1974103,598007,2.025928,0.019657,18980547,12315638,0,0,17880,0,1,1 +1774054849.625908,1.05,4,3992.50,48.53,1775.30,1900.14,0.00,3519839075602.841797,0.090563,1973340,598028,0.004584,0.008671,18980663,12315802,0,0,17882,0,1,1 +1774054854.629276,0.85,4,3992.50,48.53,1775.32,1900.12,0.00,3516068979011.702148,3516068966785.823242,70,0,0.003405,0.005861,18980748,12315919,0,0,17885,0,1,1 +1774054859.627614,18.72,4,3992.50,48.67,1766.61,1905.48,0.00,3519607268531.343750,0.000000,11,0,0.031426,75.342308,18982860,12324102,0,0,17887,0,1,1 +1774054864.627781,28.68,4,3992.50,49.21,1734.85,1926.79,0.00,20994.071595,33402.220580,1974103,599412,0.023932,118.829485,18984516,12336592,0,0,17890,0,1,1 +1774054869.624512,4.87,4,3992.50,48.42,1766.82,1895.91,0.00,3520738620084.718750,3520738607668.039062,11,0,0.006245,10.968704,18984765,12337910,0,0,17892,0,1,1 +1774054874.624518,14.41,4,3992.50,49.77,1715.02,1948.76,0.00,0.176953,0.000000,199,0,40.072782,0.036026,18989473,12340182,0,0,17895,0,1,1 +1774054879.628533,1.35,4,3992.50,48.88,1750.23,1913.59,0.00,1.317789,0.022053,226,83,0.007052,0.010496,18989633,12340375,0,0,17897,0,1,1 +1774054884.626882,0.70,4,3992.50,48.51,1764.57,1899.25,0.00,21019.593707,33414.676556,1974221,599735,0.003867,0.007122,18989732,12340515,0,0,17900,0,1,1 +1774054889.628981,0.80,4,3992.50,48.47,1766.29,1897.53,0.00,3516960911170.722656,3516960898786.228027,199,0,0.003419,0.005853,18989818,12340631,0,0,17902,0,1,1 +1774054894.629178,0.75,4,3992.50,48.50,1764.96,1898.86,0.00,3518298176997.622070,0.000000,11,0,0.003878,0.007132,18989918,12340772,0,0,17905,0,1,1 +1774054899.627062,0.85,4,3992.50,48.52,1764.08,1899.74,0.00,0.000000,0.000000,11,0,0.003422,0.005858,18990004,12340888,0,0,17907,0,1,1 +1774054904.629224,0.95,4,3992.50,48.52,1764.10,1899.73,0.00,0.049978,0.000000,70,0,0.003889,0.007148,18990105,12341030,0,0,17910,0,1,1 +1774054909.628568,0.80,4,3992.50,48.49,1765.52,1898.31,0.00,21016.857578,33435.122846,1974221,600086,0.003866,0.007627,18990204,12341173,0,0,17912,0,1,1 +1774054914.628089,0.65,4,3992.50,48.52,1764.30,1899.53,0.00,3518774055593.494141,3518774043174.246094,226,83,0.003980,0.007365,18990311,12341321,0,0,17915,0,1,1 +1774054919.628440,0.90,4,3992.50,48.52,1764.32,1899.51,0.00,0.512952,3518190198860.230469,238,2,0.003244,0.005709,18990394,12341435,0,0,17917,0,1,1 +1774054924.627857,0.80,4,3992.50,48.52,1764.32,1899.51,0.00,3518847622636.139160,3518847622637.971191,199,0,0.003953,0.007173,18990499,12341579,0,0,17920,0,1,1 +1774054929.624585,0.90,4,3992.50,48.29,1773.12,1890.71,0.00,3520741432753.457031,0.000000,70,0,0.003881,0.007127,18990599,12341719,0,0,17922,0,1,1 +1774054934.624546,0.95,4,3992.50,48.29,1773.15,1890.69,0.00,1.445812,0.022070,226,83,0.003865,0.007120,18990698,12341859,0,0,17925,0,1,1 +1774054939.628511,0.80,4,3992.50,48.30,1772.64,1891.21,0.00,3515648670887.708008,3515648670889.180664,11,0,0.003257,0.006867,18990786,12341991,0,0,17927,0,1,1 +1774054944.624496,11.65,4,3992.50,48.41,1766.61,1895.43,0.00,21031.044129,33481.677507,1974223,600495,0.028155,40.100375,18992626,12346526,0,0,17930,0,1,1 +1774054949.624537,0.90,4,3992.50,48.07,1780.04,1882.01,0.00,3518408356623.608887,3518408344183.076172,11,0,0.001955,0.005101,18992681,12346625,0,0,17932,0,1,1 +1774054954.624597,0.75,4,3992.50,48.07,1780.03,1882.01,0.00,1.495783,0.022070,226,83,0.002297,0.006374,18992752,12346749,0,0,17935,0,1,1 +1774054959.629042,0.75,4,3992.50,48.08,1779.79,1882.25,0.00,3515311925735.742676,3515311925737.038086,199,0,0.002287,0.006350,18992822,12346871,0,0,17937,0,1,1 +1774054964.628873,0.70,4,3992.50,48.07,1780.04,1881.99,0.00,3518556811666.215332,0.000000,70,0,0.001819,0.005099,18992877,12346970,0,0,17940,0,1,1 +1774054969.626392,0.90,4,3992.50,48.09,1779.07,1882.97,0.00,3520183844550.661133,0.000000,11,0,0.002290,0.006359,18992947,12347092,0,0,17942,0,1,1 +1774054974.627095,0.55,4,3992.50,48.12,1778.09,1883.95,0.00,21011.200981,33466.465338,1974223,600703,0.002288,0.006365,18993017,12347215,0,0,17945,0,1,1 +1774054979.624599,0.65,4,3992.50,48.14,1777.35,1884.68,0.00,3520193989962.502441,3520193977499.217285,70,0,0.002340,0.007066,18993091,12347345,0,0,17947,0,1,1 +1774054984.625382,0.50,4,3992.50,48.14,1777.36,1884.68,0.00,1.958482,0.000195,238,2,0.001881,0.005160,18993151,12347448,0,0,17950,0,1,1 +1774054989.626738,0.65,4,3992.50,48.13,1777.78,1884.26,0.00,3517483328606.859375,3517483328608.690918,199,0,0.002450,0.006517,18993232,12347582,0,0,17952,0,1,1 +1774054994.627015,0.55,4,3992.50,48.13,1777.54,1884.49,0.00,3518242387618.105957,0.000000,11,0,0.002320,0.006391,18993304,12347707,0,0,17955,0,1,1 +1774054999.625895,0.80,4,3992.50,48.14,1777.09,1884.95,0.00,0.176993,0.000000,199,0,0.003382,0.006981,18993395,12347844,0,0,17957,0,1,1 +1774055004.629340,0.60,4,3992.50,48.14,1777.09,1884.95,0.00,1.830575,0.000195,238,2,0.003213,0.006745,18993485,12347979,0,0,17960,0,1,1 +1774055009.624711,31.65,4,3992.50,54.37,1542.70,2128.65,0.00,21027.546839,33502.274041,1973460,600730,64.154273,0.033650,19000201,12350100,0,0,17962,0,1,1 +1774055014.628397,29.59,4,3992.50,54.79,1529.65,2145.20,0.00,3515845478161.364746,3515845465707.901367,226,83,118.079013,0.025523,19012343,12351826,0,0,17965,0,1,1 +1774055019.624506,27.78,4,3992.50,54.65,1535.63,2139.59,0.00,0.000000,0.000000,226,83,120.261384,0.040775,19024410,12354933,0,0,17967,0,1,1 +1774055024.624567,28.14,4,3992.50,54.62,1536.82,2138.43,0.00,3518394831927.040527,3518394831928.464355,70,0,118.175089,0.060276,19036642,12359571,0,0,17970,0,1,1 +1774055029.624494,28.33,4,3992.50,54.48,1542.19,2133.11,0.00,1.958817,0.000195,238,2,120.190493,0.090007,19049264,12366599,0,0,17972,0,1,1 +1774055034.624487,28.31,4,3992.50,54.50,1541.55,2133.74,0.00,3518442532284.792480,3518442532286.750977,70,0,118.189075,0.093531,19061755,12373892,0,0,17975,0,1,1 +1774055039.629465,28.39,4,3992.50,54.50,1541.48,2133.76,0.00,1.444363,0.022048,226,83,120.076754,0.100629,19074623,12381657,0,0,17977,0,1,1 +1774055044.626568,28.09,4,3992.50,54.46,1543.12,2132.20,0.00,3520477073279.511230,3520477073280.986328,11,0,119.063907,0.099928,19087397,12389251,0,0,17980,0,1,1 +1774055049.628731,18.81,4,3992.50,54.51,1541.16,2134.19,0.00,0.000000,0.000000,11,0,119.334934,0.078639,19100080,12395286,0,0,17982,0,1,1 +1774055054.629386,1.05,4,3992.50,48.04,1794.52,1880.83,0.00,0.176930,0.000000,199,0,8.016785,0.010766,19101054,12395804,0,0,17985,0,1,1 +1774055059.625621,14.32,4,3992.50,49.06,1754.45,1920.87,0.00,1.833216,0.000195,238,2,16.122677,0.079410,19106548,12399846,0,0,17987,0,1,1 +1774055064.626612,10.69,4,3992.50,49.29,1745.36,1929.92,0.00,3517740197506.525391,3517740197508.533203,11,0,14.108082,0.066917,19111219,12403290,0,0,17990,0,1,1 +1774055069.624445,6.49,4,3992.50,49.01,1754.30,1919.04,0.00,1.496449,0.022080,226,83,10.049032,0.046606,19114574,12405707,0,0,17992,0,1,1 +1774055074.628556,1.10,4,3992.50,48.76,1766.21,1909.05,0.00,0.000000,0.000000,226,83,0.004121,0.007256,19114676,12405848,0,0,17995,0,1,1 +1774055079.626994,0.80,4,3992.50,48.24,1786.44,1888.81,0.00,3519536548088.924316,3519536548090.398438,11,0,0.003879,0.007112,19114776,12405987,0,0,17997,0,1,1 +1774055084.624598,0.50,4,3992.50,48.27,1785.48,1889.77,0.00,0.050024,0.000000,70,0,0.003880,0.007136,19114876,12406128,0,0,18000,0,1,1 +1774055089.625872,0.65,4,3992.50,48.26,1785.62,1889.63,0.00,0.126921,0.000000,199,0,0.003872,0.007116,19114976,12406268,0,0,18002,0,1,1 +1774055094.624757,0.55,4,3992.50,48.27,1785.40,1889.86,0.00,21014.741377,33480.667010,1973475,602485,0.003396,0.005866,19115060,12406385,0,0,18005,0,1,1 +1774055099.628021,0.70,4,3992.50,48.27,1785.41,1889.85,0.00,3516141694458.183594,3516141682003.296387,70,0,0.004001,0.007273,19115170,12406535,0,0,18007,0,1,1 +1774055104.629101,0.60,4,3992.50,48.27,1785.45,1889.82,0.00,1.445489,0.022066,226,83,0.003877,0.007131,19115270,12406676,0,0,18010,0,1,1 +1774055109.625735,0.60,4,3992.50,48.08,1792.63,1882.62,0.00,0.000000,0.000000,226,83,0.003881,0.007759,19115370,12406819,0,0,18012,0,1,1 +1774055114.624563,0.70,4,3992.50,48.08,1792.64,1882.61,0.00,0.513109,3519261910607.752930,238,2,0.003421,0.005866,19115456,12406936,0,0,18015,0,1,1 +1774055119.624597,0.50,4,3992.50,48.08,1792.66,1882.60,0.00,3518413264673.055664,0.021875,226,83,0.003953,0.007162,19115561,12407079,0,0,18017,0,1,1 +1774055124.624602,0.90,4,3992.50,47.91,1799.38,1875.88,0.00,3518433956441.355469,3518433956442.829102,11,0,0.003886,0.007128,19115662,12407220,0,0,18020,0,1,1 +1774055129.628755,17.62,4,3992.50,48.54,1771.80,1900.32,0.00,0.000000,0.000000,11,0,0.048620,70.251836,19119071,12414916,0,0,18022,0,1,1 +1774055134.627389,28.94,4,3992.50,48.45,1766.81,1897.07,0.00,0.177001,0.000000,199,0,0.065863,118.400356,19124073,12427150,0,0,18025,0,1,1 +1774055139.624571,4.87,4,3992.50,48.01,1782.71,1879.89,0.00,21025.972542,33665.795219,1974238,604000,0.011371,16.437054,19124757,12428941,0,0,18027,0,1,1 +1774055144.624470,15.67,4,3992.50,49.65,1718.92,1943.96,0.00,3518508125216.925781,3518508112582.141602,238,2,40.069303,0.026717,19129277,12430401,0,0,18030,0,1,1 +1774055149.626543,1.05,4,3992.50,48.78,1752.86,1910.04,0.00,3516979317556.367676,0.021866,226,83,0.004565,0.009352,19129391,12430565,0,0,18032,0,1,1 +1774055154.629287,0.50,4,3992.50,48.31,1771.34,1891.54,0.00,0.512707,3516507088867.980957,238,2,0.002795,0.005633,19129465,12430676,0,0,18035,0,1,1 +1774055159.629030,11.56,4,3992.50,48.13,1776.96,1884.24,0.00,3518618155227.321289,3518618155229.280273,70,0,0.028749,40.071548,19131320,12435206,0,0,18037,0,1,1 +1774055164.627485,0.80,4,3992.50,47.95,1783.97,1877.23,0.00,21040.125931,33725.485231,1974383,604746,0.003052,0.007624,19131404,12435353,0,0,18040,0,1,1 +1774055169.628583,0.65,4,3992.50,47.79,1790.17,1871.04,0.00,3517664361212.060547,3517664348531.982910,226,83,0.002682,0.007419,19131486,12435497,0,0,18042,0,1,1 +1774055174.627178,0.50,4,3992.50,47.79,1790.17,1871.04,0.00,0.000000,0.000000,226,83,0.001399,0.004508,19131530,12435578,0,0,18045,0,1,1 +1774055179.628395,0.70,4,3992.50,47.79,1790.16,1871.04,0.00,21027.060421,33706.854406,1974383,604757,0.001831,0.005088,19131586,12435676,0,0,18047,0,1,1 +1774055184.624555,0.50,4,3992.50,47.79,1790.16,1871.04,0.00,3521141310290.851074,3521141297599.697266,11,0,0.001840,0.005111,19131643,12435776,0,0,18050,0,1,1 +1774055189.628942,0.65,4,3992.50,47.76,1791.48,1869.72,0.00,1.494489,0.022051,226,83,0.002287,0.006350,19131713,12435898,0,0,18052,0,1,1 +1774055194.628600,0.65,4,3992.50,47.78,1790.53,1870.67,0.00,3518677964569.131836,3518677964570.605469,11,0,0.002402,0.005280,19131808,12436009,0,0,18055,0,1,1 +1774055199.629415,0.60,4,3992.50,47.78,1790.64,1870.57,0.00,0.000000,0.000000,11,0,0.001798,0.003994,19131880,12436094,0,0,18057,0,1,1 +1774055204.624524,0.65,4,3992.50,47.78,1790.64,1870.57,0.00,1.497265,0.022092,226,83,0.002464,0.005335,19131979,12436208,0,0,18060,0,1,1 +1774055209.629075,0.80,4,3992.50,47.81,1789.20,1872.00,0.00,3515237598842.658691,3515237598843.954590,199,0,0.002315,0.005155,19132069,12436311,0,0,18062,0,1,1 +1774055214.628509,0.65,4,3992.50,47.82,1788.88,1872.32,0.00,21031.814547,33723.029451,1973620,604797,0.001722,0.003897,19132135,12436391,0,0,18065,0,1,1 +1774055219.629132,0.65,4,3992.50,47.85,1787.66,1873.55,0.00,3517998934545.527832,3517998921855.499023,238,2,0.002284,0.005094,19132222,12436489,0,0,18067,0,1,1 +1774055224.627387,12.90,4,3992.50,55.03,1512.61,2154.54,0.00,3519665294015.244629,3519665294017.253906,11,0,0.609131,0.018879,19133525,12437310,0,0,18070,0,1,1 +1774055229.628884,7.13,4,3992.50,55.39,1498.88,2168.76,0.00,0.176900,0.000000,199,0,4.672143,0.130732,19142767,12445857,0,0,18072,0,1,1 +1774055234.625208,2.18,4,3992.50,55.09,1510.93,2156.91,0.00,1.319818,0.022087,226,83,4.690907,0.128064,19152048,12454470,0,0,18075,0,1,1 +1774055239.625011,2.23,4,3992.50,54.89,1519.01,2149.07,0.00,3518575471305.026367,3518575471306.323242,199,0,4.696332,0.128357,19161263,12463115,0,0,18077,0,1,1 +1774055244.624521,2.13,4,3992.50,54.89,1519.25,2149.09,0.00,1.832016,0.000195,238,2,4.667300,0.127160,19170531,12471738,0,0,18080,0,1,1 +1774055249.624497,2.08,4,3992.50,54.93,1518.04,2150.55,0.00,21027.699764,33719.521460,1973620,605002,4.700284,0.126904,19179699,12480389,0,0,18082,0,1,1 +1774055254.624502,2.23,4,3992.50,54.80,1523.31,2145.52,0.00,3518433662383.060547,3518433649693.319824,11,0,4.650464,0.129404,19188997,12488995,0,0,18085,0,1,1 +1774055259.627015,2.13,4,3992.50,55.04,1514.28,2154.81,0.00,0.000000,0.000000,11,0,4.711472,0.124967,19198176,12497582,0,0,18087,0,1,1 +1774055264.628078,1.93,4,3992.50,55.02,1514.98,2154.31,0.00,1.495483,0.022066,226,83,4.690697,0.126907,19207409,12506192,0,0,18090,0,1,1 +1774055269.628577,2.28,4,3992.50,54.92,1519.41,2150.35,0.00,3518085849908.084961,3518085849909.558594,11,0,4.678151,0.127603,19216603,12514807,0,0,18092,0,1,1 +1774055274.624425,2.28,4,3992.50,54.97,1517.94,2152.05,0.00,0.050042,0.000000,70,0,4.688615,0.124196,19225699,12523344,0,0,18095,0,1,1 +1774055279.625007,2.13,4,3992.50,55.06,1514.55,2155.67,0.00,1.445632,0.022068,226,83,4.695112,0.129677,19235062,12532033,0,0,18097,0,1,1 +1774055284.628449,2.23,4,3992.50,54.89,1521.34,2149.14,0.00,21013.647929,33696.277277,1973620,605154,4.680162,0.129091,19244356,12540685,0,0,18100,0,1,1 +1774055289.625281,2.08,4,3992.50,54.98,1518.29,2152.43,0.00,4.067323,0.029120,1974383,605254,4.694081,0.125791,19253558,12549248,0,0,18102,0,1,1 +1774055294.624862,2.08,4,3992.50,54.86,1523.46,2147.73,0.00,3518732284221.479004,3518732271534.387695,199,0,4.696568,0.127204,19262793,12557845,0,0,18105,0,1,1 +1774055299.624605,2.33,4,3992.50,54.91,1521.70,2149.74,0.00,0.000000,0.000000,199,0,4.683515,0.127781,19272051,12566483,0,0,18107,0,1,1 +1774055304.628948,2.23,4,3992.50,55.05,1516.01,2155.48,0.00,3515383240784.891113,0.000000,11,0,4.678910,0.127881,19281272,12575064,0,0,18110,0,1,1 +1774055309.625448,2.13,4,3992.50,54.92,1521.17,2150.33,0.00,21048.410478,33743.176642,1974383,605315,4.667418,0.128168,19290594,12583689,0,0,18112,0,1,1 +1774055314.629094,2.28,4,3992.50,55.01,1517.81,2153.66,0.00,0.000000,0.015516,1974383,605330,4.699030,0.128320,19299909,12592320,0,0,18115,0,1,1 +1774055319.625450,2.08,4,3992.50,54.92,1521.30,2150.20,0.00,3521003361296.110352,3521003348598.953613,238,2,4.698223,0.126594,19309204,12600887,0,0,18117,0,1,1 +1774055324.629428,2.17,4,3992.50,54.81,1525.47,2146.12,0.00,3515639718029.077148,3515639718031.034180,70,0,4.665548,0.125137,19318344,12609422,0,0,18120,0,1,1 +1774055329.629021,2.18,4,3992.50,55.09,1514.88,2156.80,0.00,0.000000,0.000000,70,0,4.707468,0.126275,19327624,12618025,0,0,18122,0,1,1 +1774055334.625187,2.84,4,3992.50,54.88,1523.05,2148.77,0.00,1.960292,0.000195,238,2,4.659682,0.127552,19336876,12626619,0,0,18125,0,1,1 +1774055339.629063,2.18,4,3992.50,55.03,1517.48,2154.52,0.00,21011.313178,33693.469633,1973620,605329,4.712910,0.126214,19346104,12635123,0,0,18127,0,1,1 +1774055344.628991,2.18,4,3992.50,54.80,1526.63,2145.63,0.00,3518487907560.525391,3518487894870.313477,70,0,4.673716,0.126696,19355326,12643689,0,0,18130,0,1,1 +1774055349.629039,2.03,4,3992.50,55.03,1517.89,2154.37,0.00,0.000000,0.000000,70,0,4.697091,0.127102,19364637,12652322,0,0,18132,0,1,1 +1774055354.625067,2.03,4,3992.50,55.14,1513.75,2158.70,0.00,3521233838292.471191,0.000000,11,0,4.678561,0.126745,19373876,12660926,0,0,18135,0,1,1 +1774055359.624698,2.08,4,3992.50,55.05,1517.14,2155.34,0.00,0.176966,0.000000,199,0,4.699950,0.125345,19383043,12669503,0,0,18137,0,1,1 +1774055364.624593,2.08,4,3992.50,55.18,1512.39,2160.29,0.00,21029.873265,33720.345952,1973620,605413,4.697477,0.129086,19392459,12678115,0,0,18140,0,1,1 +1774055369.629007,2.33,4,3992.50,55.09,1515.90,2156.99,0.00,3515334054839.403320,3515334042160.516113,70,0,4.685975,0.128417,19401731,12686701,0,0,18142,0,1,1 +1774055374.624535,2.34,4,3992.50,55.12,1514.89,2158.24,0.00,1.960542,0.000195,238,2,4.661439,0.127336,19410969,12695217,0,0,18145,0,1,1 +1774055379.625015,2.28,4,3992.50,55.21,1511.85,2161.55,0.00,3518099353838.704590,3518099353840.712891,11,0,4.677894,0.127011,19420157,12703761,0,0,18147,0,1,1 +1774055384.624491,2.28,4,3992.50,55.15,1514.29,2159.34,0.00,0.000000,0.000000,11,0,4.712549,0.124415,19429321,12712331,0,0,18150,0,1,1 +1774055389.624496,2.23,4,3992.50,54.80,1528.30,2145.57,0.00,0.050000,0.000000,70,0,4.675341,0.127070,19438594,12720952,0,0,18152,0,1,1 +1774055394.624582,2.08,4,3992.50,55.04,1518.83,2154.99,0.00,0.126951,0.000000,199,0,4.705563,0.126775,19447858,12729627,0,0,18155,0,1,1 +1774055399.628556,2.23,4,3992.50,54.91,1523.85,2149.98,0.00,3515642571868.006836,0.000000,11,0,4.666802,0.125828,19457026,12738227,0,0,18157,0,1,1 +1774055404.624763,2.08,4,3992.50,54.77,1529.54,2144.23,0.00,0.177087,0.000000,199,0,4.689118,0.127814,19466348,12746869,0,0,18160,0,1,1 +1774055409.628133,1.98,4,3992.50,54.81,1527.89,2145.93,0.00,3516067113833.675781,0.000000,70,0,4.713842,0.127635,19475689,12755543,0,0,18162,0,1,1 +1774055414.624515,2.69,4,3992.50,54.81,1527.88,2145.94,0.00,0.000000,0.000000,70,0,4.658038,0.126884,19484929,12764079,0,0,18165,0,1,1 +1774055419.628788,2.18,4,3992.50,54.85,1526.38,2147.41,0.00,21011.614331,33690.981854,1973628,605610,4.711373,0.127027,19494244,12772670,0,0,18167,0,1,1 +1774055424.629436,2.08,4,3992.50,54.89,1522.59,2149.24,0.00,4.064220,0.031539,1974391,605710,4.680939,0.127968,19503540,12781269,0,0,18170,0,1,1 +1774055429.628932,1.88,4,3992.50,55.07,1517.83,2155.95,0.00,3518792167825.954102,3518792155138.553223,11,0,4.667734,0.126314,19512741,12789868,0,0,18172,0,1,1 +1774055434.625814,1.98,4,3992.50,54.82,1527.40,2146.44,0.00,21046.813003,33740.857526,1974391,605735,4.681751,0.128324,19521969,12798437,0,0,18175,0,1,1 +1774055439.629209,2.18,4,3992.50,54.86,1525.75,2147.98,0.00,3516049439378.441406,3516049426700.922363,11,0,4.713167,0.126464,19531236,12807070,0,0,18177,0,1,1 +1774055444.629269,1.92,4,3992.50,54.80,1528.26,2145.54,0.00,0.176951,0.000000,199,0,4.677183,0.127592,19540577,12815660,0,0,18180,0,1,1 +1774055449.625623,1.98,4,3992.50,55.01,1520.34,2153.65,0.00,3521004250551.151855,0.000000,11,0,4.684175,0.123637,19549643,12824100,0,0,18182,0,1,1 +1774055454.624500,2.44,4,3992.50,55.07,1518.01,2156.24,0.00,1.496137,0.022075,226,83,4.692900,0.126164,19558872,12832637,0,0,18185,0,1,1 +1774055459.628798,2.23,4,3992.50,54.95,1523.00,2151.30,0.00,21010.063360,33690.871528,1973628,605730,4.641991,0.127704,19568135,12841169,0,0,18187,0,1,1 +1774055464.625323,2.18,4,3992.50,55.06,1518.44,2155.85,0.00,3520884941571.125977,3520884928870.585938,226,83,4.721821,0.127491,19577365,12849768,0,0,18190,0,1,1 +1774055469.628557,2.03,4,3992.50,54.95,1523.08,2151.25,0.00,21018.592941,33698.076161,1974391,605843,4.670404,0.126916,19586644,12858328,0,0,18192,0,1,1 +1774055474.625397,2.18,4,3992.50,55.01,1520.70,2153.62,0.00,3520662550766.841797,3520662538072.605469,11,0,4.707774,0.126316,19595875,12866938,0,0,18195,0,1,1 +1774055479.626722,1.98,4,3992.50,54.84,1527.13,2147.19,0.00,2.008257,0.000195,238,2,4.666882,0.126854,19605122,12875464,0,0,18197,0,1,1 +1774055484.625327,2.03,4,3992.50,54.81,1528.27,2146.00,0.00,0.000000,0.000000,238,2,4.664842,0.126127,19614364,12884031,0,0,18200,0,1,1 +1774055489.624956,2.08,4,3992.50,54.93,1523.64,2150.65,0.00,3518698135126.443359,3518698135128.452148,11,0,4.705636,0.126594,19623609,12892650,0,0,18202,0,1,1 +1774055494.626323,2.18,4,3992.50,54.95,1523.07,2151.23,0.00,0.049986,0.000000,70,0,4.688493,0.126717,19632905,12901238,0,0,18205,0,1,1 +1774055499.628964,2.13,4,3992.50,55.12,1516.37,2158.05,0.00,0.126886,0.000000,199,0,4.706970,0.127289,19642163,12909781,0,0,18207,0,1,1 +1774055504.625588,2.03,4,3992.50,55.10,1516.88,2157.45,0.00,3520814687588.059570,0.000000,11,0,4.677236,0.125953,19651319,12918304,0,0,18210,0,1,1 +1774055509.628245,1.92,4,3992.50,55.06,1518.59,2155.67,0.00,2.007722,0.000195,238,2,4.677234,0.127149,19660562,12926824,0,0,18212,0,1,1 +1774055514.626531,2.23,4,3992.50,54.81,1528.34,2145.91,0.00,3519643972315.864746,3519643972317.697754,199,0,4.708875,0.126733,19669819,12935400,0,0,18215,0,1,1 +1774055519.628289,2.08,4,3992.50,54.81,1528.31,2146.00,0.00,1.318384,0.022063,226,83,4.681263,0.128044,19679084,12943980,0,0,18217,0,1,1 +1774055524.627389,6.43,4,3992.50,55.34,1507.84,2166.52,0.00,21031.912510,33726.076916,1973629,606026,5.119309,0.144665,19689527,12953160,0,0,18220,0,1,1 +1774055529.628396,10.87,4,3992.50,55.61,1496.92,2177.32,0.00,4.063927,0.391913,1974392,606569,16.422854,0.234897,19708823,12968877,0,0,18222,0,1,1 +1774055534.628325,12.03,4,3992.50,55.39,1505.44,2168.75,0.00,3518487108848.310059,3518487096161.396484,11,0,22.950690,0.284050,19733912,12988364,0,0,18225,0,1,1 +1774055539.629040,7.72,4,3992.50,55.49,1501.56,2172.62,0.00,0.049993,0.000000,70,0,14.795639,0.215626,19752030,13002919,0,0,18227,0,1,1 +1774055544.629325,2.74,4,3992.50,55.76,1490.93,2183.27,0.00,3518236297184.810059,0.000000,11,0,4.702433,0.131526,19761397,13011546,0,0,18230,0,1,1 +1774055549.628856,2.44,4,3992.50,55.19,1513.46,2160.71,0.00,1.495941,0.022072,226,83,4.648931,2.518867,19774755,13024701,0,0,18232,0,1,1 +1774055554.628838,2.95,4,3992.50,55.20,1512.77,2161.35,0.00,3518449982966.262695,3518449982967.686523,70,0,4.526109,4.629810,19791842,13041718,0,0,18235,0,1,1 +1774055559.625006,2.81,4,3992.50,55.43,1504.09,2170.03,0.00,3521135515592.279785,0.000000,11,0,4.657058,4.624414,19808901,13058807,0,0,18237,0,1,1 +1774055564.629143,3.30,4,3992.50,55.44,1503.41,2170.74,0.00,21016.302212,33693.584808,1974392,607759,4.635583,4.379045,19825571,13075349,0,0,18240,0,1,1 +1774055569.625129,3.01,4,3992.50,55.46,1502.61,2171.50,0.00,3521263742877.062988,3521263730179.100098,11,0,4.582882,4.676066,19842537,13092275,0,0,18242,0,1,1 +1774055574.628962,2.80,4,3992.50,55.49,1501.55,2172.56,0.00,1.494655,0.022053,226,83,4.495901,4.559395,19859318,13109004,0,0,18245,0,1,1 +1774055579.628628,3.16,4,3992.50,55.51,1500.71,2173.21,0.00,21033.598167,33745.969092,1974392,607951,4.619495,4.651419,19876431,13126147,0,0,18247,0,1,1 +1774055584.624417,2.96,4,3992.50,55.41,1504.27,2169.41,0.00,3521402955677.115234,3521402942954.879395,226,83,4.656737,4.675401,19893608,13143269,0,0,18250,0,1,1 +1774055589.625614,2.85,4,3992.50,55.37,1505.43,2168.00,0.00,21027.156143,33735.689652,1974392,607999,4.533566,4.675376,19910660,13160242,0,0,18252,0,1,1 +1774055594.625457,2.90,4,3992.50,55.37,1505.37,2167.80,0.00,3518547820845.110352,3518547808134.430176,199,0,4.666446,4.416496,19927464,13176959,0,0,18255,0,1,1 +1774055599.625415,2.90,4,3992.50,55.31,1507.29,2165.62,0.00,1.318859,0.022070,226,83,4.698724,3.836814,19943273,13192620,0,0,18257,0,1,1 +1774055604.628996,3.15,4,3992.50,55.48,1500.51,2172.16,0.00,21013.075886,33745.418551,1973629,608124,4.602463,4.573253,19960212,13209612,0,0,18260,0,1,1 +1774055609.625074,2.65,4,3992.50,55.47,1500.72,2171.70,0.00,0.000000,0.008014,1973629,608144,4.482799,4.608059,19977037,13226280,0,0,18262,0,1,1 +1774055614.624661,2.95,4,3992.50,55.42,1502.19,2169.94,0.00,3518727697532.508301,3518727684789.986328,226,83,4.559605,4.675367,19993987,13243173,0,0,18265,0,1,1 +1774055619.624517,2.95,4,3992.50,55.54,1497.10,2174.68,0.00,21032.798867,33770.672614,1974392,608308,4.206194,4.676147,20010423,13259650,0,0,18267,0,1,1 +1774055624.628623,3.11,4,3992.50,55.42,1501.84,2169.70,0.00,3515550078910.423828,3515550066183.369629,226,83,4.575559,4.640507,20027475,13276647,0,0,18270,0,1,1 +1774055629.626625,3.11,4,3992.50,55.49,1498.73,2172.55,0.00,3519844128594.220215,3519844128595.694336,11,0,4.604842,4.641253,20044425,13293628,0,0,18272,0,1,1 +1774055634.624416,2.70,4,3992.50,55.39,1502.34,2168.66,0.00,1.496462,0.022080,226,83,4.670673,4.564681,20061351,13310695,0,0,18275,0,1,1 +1774055639.624527,3.11,4,3992.50,55.42,1499.05,2169.64,0.00,3518359392623.395996,3518359392624.819824,70,0,4.675518,4.673918,20078487,13327689,0,0,18277,0,1,1 +1774055644.629244,3.11,4,3992.50,55.38,1499.99,2168.45,0.00,3515120547120.950684,0.000000,11,0,4.674163,4.603423,20095684,13344756,0,0,18280,0,1,1 +1774055649.625099,2.76,4,3992.50,55.40,1501.12,2169.00,0.00,21051.140977,33824.668681,1974392,608607,4.259516,4.669337,20112199,13361235,0,0,18282,0,1,1 +1774055654.628380,2.95,4,3992.50,55.50,1497.03,2172.79,0.00,3516129569526.524902,3516129569530.576660,1973629,608544,4.667379,4.586016,20129232,13378274,0,0,18285,0,1,1 +1774055659.625344,2.86,4,3992.50,55.40,1500.70,2168.92,0.00,3520575440329.820801,3520575427553.595703,226,83,4.652829,4.419514,20145664,13394824,0,0,18287,0,1,1 +1774055664.625291,3.01,4,3992.50,55.25,1504.00,2163.29,0.00,0.000000,0.000000,226,83,4.544324,4.622267,20162545,13411717,0,0,18290,0,1,1 +1774055669.628604,2.85,4,3992.50,55.24,1506.35,2162.80,0.00,0.000000,0.000000,226,83,4.752181,4.672918,20179885,13428976,0,0,18292,0,1,1 +1774055674.628375,2.80,4,3992.50,55.31,1503.71,2165.45,0.00,3518598543662.305176,3518598543663.602539,199,0,4.651960,4.264982,20196312,13445363,0,0,18295,0,1,1 +1774055679.628381,2.86,4,3992.50,55.22,1507.06,2162.17,0.00,3518432430148.146484,0.000000,70,0,4.716050,4.546499,20213447,13462369,0,0,18297,0,1,1 +1774055684.629095,3.06,4,3992.50,55.22,1507.10,2162.12,0.00,0.000000,0.000000,70,0,4.486816,4.630020,20230341,13479083,0,0,18300,0,1,1 +1774055689.624555,2.96,4,3992.50,55.29,1504.54,2164.62,0.00,21048.682155,33854.680444,1973629,608856,4.741545,4.623841,20247616,13496201,0,0,18302,0,1,1 +1774055694.625124,2.80,4,3992.50,55.17,1509.15,2160.04,0.00,3518036697370.377930,3518036684577.511719,11,0,4.237103,4.671666,20264041,13512694,0,0,18305,0,1,1 +1774055699.628628,3.10,4,3992.50,55.16,1509.56,2159.62,0.00,21014.896269,33826.879105,1973629,609046,4.650000,4.373218,20280773,13529273,0,0,18307,0,1,1 +1774055704.624549,3.01,4,3992.50,55.29,1504.41,2164.83,0.00,3521310351033.391602,3521310338200.485840,226,83,4.428822,4.631895,20297535,13545859,0,0,18310,0,1,1 +1774055709.628975,3.01,4,3992.50,55.32,1503.37,2165.96,0.00,3515325218018.077637,3515325218019.373047,199,0,4.550708,4.562608,20314437,13562566,0,0,18312,0,1,1 +1774055714.624464,3.01,4,3992.50,55.32,1503.34,2165.90,0.00,21048.434016,33881.271497,1973629,609172,4.453465,4.481683,20330829,13579076,0,0,18315,0,1,1 +1774055719.629258,3.66,4,3992.50,55.32,1503.39,2166.00,0.00,0.000000,0.014342,1973629,609196,4.615476,4.294796,20347338,13595415,0,0,18317,0,1,1 +1774055724.625172,3.21,4,3992.50,55.42,1499.36,2169.93,0.00,3521314812656.846680,3521314799825.262695,11,0,4.653396,4.425671,20364040,13612218,0,0,18320,0,1,1 +1774055729.624506,2.95,4,3992.50,55.39,1500.44,2168.79,0.00,0.050007,0.000000,70,0,4.145794,4.673420,20380280,13628367,0,0,18322,0,1,1 +1774055734.625125,3.46,4,3992.50,55.43,1499.24,2170.03,0.00,0.126937,0.000000,199,0,4.568032,4.546826,20397234,13645255,0,0,18325,0,1,1 +1774055739.624519,2.95,4,3992.50,55.29,1504.37,2164.88,0.00,3518863968963.728027,0.000000,70,0,4.529340,4.609140,20414084,13662078,0,0,18327,0,1,1 +1774055744.628566,3.21,4,3992.50,55.45,1498.17,2171.04,0.00,0.000000,0.000000,70,0,4.618697,4.663565,20431196,13679185,0,0,18330,0,1,1 +1774055749.625215,3.11,4,3992.50,55.40,1500.34,2168.88,0.00,3520796732075.013184,0.000000,11,0,4.705369,4.596333,20448199,13696160,0,0,18332,0,1,1 +1774055754.625311,3.05,4,3992.50,55.20,1507.78,2161.25,0.00,0.000000,0.000000,11,0,4.472400,4.554524,20464913,13712802,0,0,18335,0,1,1 +1774055759.628660,3.35,4,3992.50,55.64,1490.73,2178.45,0.00,0.000000,0.000000,11,0,4.495079,4.656274,20481794,13729718,0,0,18337,0,1,1 +1774055764.628844,3.06,4,3992.50,55.50,1496.35,2172.82,0.00,0.000000,0.000000,11,0,4.728779,4.633252,20499055,13746786,0,0,18340,0,1,1 +1774055769.629298,2.95,4,3992.50,55.47,1497.41,2171.85,0.00,0.049995,0.000000,70,0,4.608740,4.509769,20515926,13763552,0,0,18342,0,1,1 +1774055774.629044,3.06,4,3992.50,55.40,1499.94,2169.07,0.00,21030.641087,33905.480933,1973629,609762,4.606834,4.624388,20533000,13780524,0,0,18345,0,1,1 +1774055779.624987,3.06,4,3992.50,55.87,1481.34,2187.63,0.00,3521294824947.175293,3521294812062.533203,70,0,4.673995,4.606378,20550124,13797548,0,0,18347,0,1,1 +1774055784.626387,3.25,4,3992.50,55.78,1485.15,2183.83,0.00,1.445396,0.022064,226,83,4.689128,3.551662,20565479,13812708,0,0,18350,0,1,1 +1774055789.628834,2.38,4,3992.50,55.44,1498.41,2170.62,0.00,3516716250330.694824,3516716250331.991211,199,0,4.681228,0.156166,20574813,13821327,0,0,18352,0,1,1 +1774055794.627576,33.11,4,3992.50,55.29,1510.62,2164.77,0.00,1.832297,0.000195,238,2,147.797821,0.109545,20595944,13829590,0,0,18355,0,1,1 +1774055799.629189,50.45,4,3992.50,59.88,1332.73,2344.35,0.00,3517302486298.452637,3517302486300.410645,70,0,186.182557,0.066585,20615464,13834611,0,0,18357,0,1,1 +1774055804.628881,31.41,4,3992.50,54.56,1540.88,2136.12,0.00,3518654242291.737793,0.000000,11,0,123.687041,0.061286,20627594,13839260,0,0,18360,0,1,1 +1774055809.624683,14.31,4,3992.50,49.99,1719.93,1957.20,0.00,0.177102,0.000000,199,0,103.220339,0.054530,20637468,13843463,0,0,18362,0,1,1 +1774055814.625487,0.95,4,3992.50,48.92,1761.77,1915.36,0.00,3517870989254.423340,0.000000,70,0,0.006197,0.006423,20637602,13843605,0,0,18365,0,1,1 +1774055819.629036,11.90,4,3992.50,49.21,1749.53,1926.73,0.00,1.444775,0.022055,226,83,0.021716,40.040399,20639012,13848146,0,0,18367,0,1,1 +1774055824.626531,1.15,4,3992.50,48.92,1760.76,1915.46,0.00,3520200730177.862793,3520200730179.337402,11,0,0.003450,0.009453,20639110,13848316,0,0,18370,0,1,1 +1774055829.629280,0.70,4,3992.50,48.71,1769.27,1906.98,0.00,0.049973,0.000000,70,0,0.002067,0.005740,20639174,13848428,0,0,18372,0,1,1 +1774055834.629409,0.85,4,3992.50,48.46,1778.96,1897.29,0.00,3518346038685.918945,0.000000,11,0,0.002289,0.006366,20639244,13848551,0,0,18375,0,1,1 +1774055839.629394,0.80,4,3992.50,48.13,1791.86,1884.34,0.00,0.050000,0.000000,70,0,0.002289,0.006356,20639314,13848673,0,0,18377,0,1,1 +1774055844.625338,0.75,4,3992.50,48.13,1791.91,1884.34,0.00,21070.219398,33993.798551,1974552,610913,0.002062,0.005724,20639377,13848783,0,0,18380,0,1,1 +1774055849.624599,0.80,4,3992.50,48.13,1791.91,1884.34,0.00,3518957303797.359375,3518957290880.394531,238,2,0.002098,0.005767,20639443,13848896,0,0,18382,0,1,1 +1774055854.628824,0.70,4,3992.50,48.15,1791.18,1885.07,0.00,0.000000,0.000000,238,2,0.001410,0.003890,20639488,13848975,0,0,18385,0,1,1 +1774055859.629172,0.80,4,3992.50,48.15,1791.19,1885.06,0.00,0.000000,0.000000,238,2,0.002440,0.006542,20639570,13849109,0,0,18387,0,1,1 +1774055864.628993,0.80,4,3992.50,48.13,1792.03,1884.22,0.00,21051.923569,33969.492617,1974552,610952,0.002345,0.006422,20639644,13849236,0,0,18390,0,1,1 +1774055869.626490,0.90,4,3992.50,48.06,1794.65,1881.59,0.00,0.000000,0.003127,1974552,610955,0.001944,0.005192,20639707,13849342,0,0,18392,0,1,1 +1774055874.624679,0.70,4,3992.50,48.06,1794.66,1881.59,0.00,3519711572616.382324,3519711559695.128418,226,83,0.002298,0.006376,20639778,13849466,0,0,18395,0,1,1 +1774055879.624605,0.80,4,3992.50,48.06,1794.66,1881.59,0.00,21047.931940,33968.758313,1973789,610879,0.002276,0.006356,20639847,13849588,0,0,18397,0,1,1 +1774055884.626310,27.05,4,3992.50,54.62,1537.68,2138.49,0.00,4.063361,0.119979,1974552,611087,59.068309,0.034235,20646107,13851702,0,0,18400,0,1,1 +1774055889.625260,31.91,4,3992.50,54.42,1546.34,2130.71,0.00,3519176205684.851562,3519176192765.448730,226,83,122.794487,0.046218,20658532,13855010,0,0,18402,0,1,1 +1774055894.629406,28.92,4,3992.50,54.38,1547.96,2129.10,0.00,3515521805632.161621,3515521805633.584473,70,0,120.865122,0.044259,20670739,13858337,0,0,18405,0,1,1 +1774055899.625407,29.25,4,3992.50,54.47,1544.52,2132.54,0.00,1.960357,0.000195,238,2,121.064365,0.044876,20682998,13861542,0,0,18407,0,1,1 +1774055904.624521,28.38,4,3992.50,54.85,1529.56,2147.48,0.00,3519060451378.620605,3519060451380.629883,11,0,120.186753,0.040023,20695144,13864451,0,0,18410,0,1,1 +1774055909.626031,28.28,4,3992.50,54.58,1540.12,2136.92,0.00,0.000000,0.000000,11,0,119.727453,0.027915,20707329,13866517,0,0,18412,0,1,1 +1774055914.624533,28.02,4,3992.50,54.53,1539.93,2135.09,0.00,2.009391,0.000195,238,2,118.998010,0.049290,20719321,13870182,0,0,18415,0,1,1 +1774055919.625450,28.54,4,3992.50,54.54,1541.49,2135.53,0.00,3517792485463.417969,3517792485465.426270,11,0,119.942060,0.050682,20731409,13873911,0,0,18417,0,1,1 +1774055924.625811,18.96,4,3992.50,54.39,1547.55,2129.60,0.00,21047.594804,33966.152095,1973790,611116,118.354223,0.042865,20743470,13877115,0,0,18420,0,1,1 +1774055929.627684,1.05,4,3992.50,49.19,1751.12,1926.02,0.00,3517120099512.914062,3517120086598.259277,11,0,4.408388,0.007117,20744021,13877372,0,0,18422,0,1,1 +1774055934.627266,10.75,4,3992.50,49.30,1747.11,1930.03,0.00,0.176968,0.000000,199,0,10.080304,0.055589,20747619,13880025,0,0,18425,0,1,1 +1774055939.624528,15.24,4,3992.50,48.64,1772.69,1904.39,0.00,3520364936079.515625,0.000000,70,0,26.174347,0.117475,20756291,13886383,0,0,18427,0,1,1 +1774055944.628538,2.81,4,3992.50,48.63,1773.19,1903.90,0.00,0.000000,0.000000,70,0,4.026537,0.022831,20757718,13887512,0,0,18430,0,1,1 +1774055949.624518,1.25,4,3992.50,48.85,1764.55,1912.49,0.00,1.446964,0.022088,226,83,0.003460,0.006983,20757804,13887642,0,0,18432,0,1,1 +1774055954.629009,19.13,4,3992.50,48.84,1761.57,1912.27,0.00,3515279397543.041504,3515279397544.514160,11,0,0.031102,78.451398,20759905,13896202,0,0,18435,0,1,1 +1774055959.628370,28.32,4,3992.50,48.86,1752.86,1912.88,0.00,1.495992,0.022073,226,83,0.045846,119.593329,20763302,13908653,0,0,18437,0,1,1 +1774055964.624519,3.31,4,3992.50,48.43,1769.00,1896.10,0.00,3521149109897.419922,3521149109898.894531,11,0,0.008930,7.024426,20763758,13909559,0,0,18440,0,1,1 +1774055969.629355,14.30,4,3992.50,49.44,1729.52,1935.58,0.00,0.000000,0.000000,11,0,40.028084,0.029895,20768198,13911347,0,0,18442,0,1,1 +1774055974.627434,0.90,4,3992.50,48.70,1758.30,1906.79,0.00,0.000000,0.000000,11,0,0.004397,0.008468,20768308,13911497,0,0,18445,0,1,1 +1774055979.624969,0.60,4,3992.50,48.38,1771.05,1894.04,0.00,0.177040,0.000000,199,0,0.003930,0.007188,20768412,13911641,0,0,18447,0,1,1 +1774055984.624603,1.35,4,3992.50,48.11,1781.65,1883.45,0.00,21070.000049,34177.928492,1973910,614238,0.003878,0.007133,20768512,13911782,0,0,18450,0,1,1 +1774055989.624520,0.65,4,3992.50,47.92,1789.05,1876.05,0.00,3518495451988.156250,3518495438881.149414,11,0,0.003428,0.005863,20768599,13911899,0,0,18452,0,1,1 +1774055994.625290,0.55,4,3992.50,47.92,1789.07,1876.04,0.00,2.008480,0.000195,238,2,0.003865,0.007119,20768698,13912039,0,0,18455,0,1,1 +1774055999.628985,0.55,4,3992.50,47.92,1788.84,1876.27,0.00,21051.067505,34150.232291,1973910,614265,0.003672,0.006515,20768793,13912169,0,0,18457,0,1,1 +1774056004.626785,0.60,4,3992.50,47.95,1787.88,1877.23,0.00,3519985849941.121582,3519985836828.466797,70,0,0.003193,0.005234,20768872,13912274,0,0,18460,0,1,1 +1774056009.624517,0.70,4,3992.50,47.95,1787.73,1877.37,0.00,21078.155749,34191.049284,1973919,614310,0.003973,0.007201,20768978,13912420,0,0,18462,0,1,1 +1774056014.624535,0.60,4,3992.50,47.95,1787.73,1877.36,0.00,3518425054173.913086,3518425041067.062500,11,0,0.003886,0.007140,20769079,13912562,0,0,18465,0,1,1 +1774056019.624514,0.50,4,3992.50,47.97,1787.02,1878.08,0.00,21068.730844,34175.817365,1973919,614451,0.003953,0.007163,20769184,13912705,0,0,18467,0,1,1 +1774056024.624427,0.90,4,3992.50,47.99,1786.30,1878.80,0.00,3518498400540.124023,3518498387431.389160,226,83,0.003420,0.006509,20769270,13912826,0,0,18470,0,1,1 +1774056029.624512,0.55,4,3992.50,47.99,1786.30,1878.80,0.00,3518377475276.330078,3518377475277.753906,70,0,0.003865,0.007122,20769369,13912966,0,0,18472,0,1,1 +1774056034.628913,0.65,4,3992.50,48.00,1785.59,1879.50,0.00,21054.128457,34145.659172,1974683,614562,0.003870,0.007134,20769469,13913108,0,0,18475,0,1,1 +1774056039.627409,1.15,4,3992.50,48.15,1779.79,1885.25,0.00,0.000000,0.092899,1974683,614655,0.008905,1.413391,20769802,13913554,0,0,18477,0,1,1 +1774056044.627029,10.78,4,3992.50,48.42,1767.32,1895.68,0.00,3518704203977.274902,3518704190871.174316,238,2,0.026787,38.666904,20771708,13917797,0,0,18480,0,1,1 +1774056049.629409,0.65,4,3992.50,48.40,1767.93,1895.08,0.00,3516763849647.397949,0.021865,226,83,0.002275,0.006353,20771777,13917919,0,0,18482,0,1,1 +1774056054.626659,0.65,4,3992.50,48.43,1766.71,1896.30,0.00,3520373414964.059082,3520373414965.483887,70,0,0.002303,0.006369,20771848,13918042,0,0,18485,0,1,1 +1774056059.627988,0.65,4,3992.50,48.44,1766.46,1896.54,0.00,1.445417,0.022064,226,83,0.002296,0.006362,20771919,13918165,0,0,18487,0,1,1 +1774056064.624594,0.60,4,3992.50,48.44,1766.47,1896.54,0.00,21081.462180,34235.130889,1973920,614871,0.002877,0.007468,20772000,13918309,0,0,18490,0,1,1 +1774056069.628673,0.65,4,3992.50,48.44,1766.48,1896.52,0.00,3515569021377.178223,3515569008242.619629,238,2,0.002026,0.005629,20772062,13918419,0,0,18492,0,1,1 +1774056074.629287,0.65,4,3992.50,48.44,1766.47,1896.54,0.00,21068.114338,34211.780436,1974683,614983,0.003432,0.007598,20772142,13918558,0,0,18495,0,1,1 +1774056079.628792,0.65,4,3992.50,48.44,1766.48,1896.53,0.00,3518785999436.554688,3518785986291.979004,11,0,0.002339,0.006406,20772216,13918683,0,0,18497,0,1,1 +1774056084.628573,0.50,4,3992.50,48.26,1773.39,1889.62,0.00,0.176961,0.000000,199,0,0.000987,0.002666,20772250,13918741,0,0,18500,0,1,1 +1774056089.627338,0.75,4,3992.50,48.26,1773.54,1889.47,0.00,0.000000,0.000000,199,0,0.002383,0.007077,20772326,13918873,0,0,18502,0,1,1 +1774056094.624593,0.50,4,3992.50,48.26,1773.55,1889.46,0.00,21080.045204,34234.776827,1973920,614911,0.002290,0.006369,20772396,13918996,0,0,18505,0,1,1 +1774056099.629513,0.55,4,3992.50,48.25,1773.75,1889.25,0.00,3514978467982.991211,3514978454848.534180,70,0,0.002287,0.006325,20772466,13919116,0,0,18507,0,1,1 +1774056104.629236,0.60,4,3992.50,48.25,1773.76,1889.26,0.00,3518632004573.281738,0.000000,11,0,0.001831,0.005124,20772522,13919217,0,0,18510,0,1,1 +1774056109.624459,30.43,4,3992.50,54.44,1540.72,2131.35,0.00,0.177122,0.000000,199,0,57.540420,0.030348,20778569,13921019,0,0,18512,0,1,1 +1774056114.625307,30.65,4,3992.50,54.71,1534.49,2142.12,0.00,3517840766016.826172,0.000000,11,0,119.752079,0.036917,20790881,13923591,0,0,18515,0,1,1 +1774056119.625408,28.63,4,3992.50,54.65,1536.38,2139.75,0.00,21072.284686,34215.521242,1974683,615197,118.786461,0.095199,20803339,13930836,0,0,18517,0,1,1 +1774056124.626010,28.67,4,3992.50,54.66,1535.96,2140.16,0.00,3518013490227.147949,3518013477085.050781,199,0,119.577982,0.097206,20815992,13938325,0,0,18520,0,1,1 +1774056129.624753,28.20,4,3992.50,54.59,1538.80,2137.25,0.00,1.832297,0.000195,238,2,119.623210,0.101347,20828655,13946166,0,0,18522,0,1,1 +1774056134.625546,28.46,4,3992.50,54.69,1534.91,2141.20,0.00,3517879214840.922852,3517879214842.931152,11,0,118.770413,0.090658,20841180,13953103,0,0,18525,0,1,1 +1774056139.628134,28.69,4,3992.50,54.72,1533.65,2142.48,0.00,0.049974,0.000000,70,0,120.116884,0.058587,20853727,13957379,0,0,18527,0,1,1 +1774056144.625319,28.02,4,3992.50,54.59,1538.85,2137.31,0.00,0.127025,0.000000,199,0,118.642674,0.057572,20866079,13961841,0,0,18530,0,1,1 +1774056149.624562,20.81,4,3992.50,54.56,1539.98,2136.24,0.00,21075.725937,34221.539428,1974684,615281,119.810217,0.101016,20878727,13969675,0,0,18532,0,1,1 +1774056154.628812,1.25,4,3992.50,48.14,1791.30,1884.92,0.00,3515449150951.314453,3515449137816.822754,238,2,13.015427,0.018956,20880240,13970733,0,0,18535,0,1,1 +1774056159.627832,11.26,4,3992.50,48.63,1772.13,1904.08,0.00,3519127092926.062012,3519127092927.894531,199,0,8.074124,0.052976,20883286,13973048,0,0,18537,0,1,1 +1774056164.629003,12.20,4,3992.50,48.49,1777.48,1898.68,0.00,1.318539,0.022065,226,83,20.116169,0.086503,20889863,13977958,0,0,18540,0,1,1 +1774056169.629304,7.33,4,3992.50,48.69,1769.62,1906.52,0.00,21070.066373,34215.135543,1974701,616502,12.074182,0.057835,20893900,13981007,0,0,18542,0,1,1 +1774056174.628466,1.10,4,3992.50,48.42,1780.49,1895.65,0.00,3519026431193.147461,3519026418044.549316,238,2,0.004572,0.008505,20894015,13981170,0,0,18545,0,1,1 +1774056179.629119,0.60,4,3992.50,48.44,1779.52,1896.62,0.00,21064.011060,34212.995685,1973938,616514,0.003886,0.007130,20894116,13981311,0,0,18547,0,1,1 +1774056184.624526,18.58,4,3992.50,48.95,1756.11,1916.43,0.00,3521672008369.865723,3521671995207.610840,226,83,0.041899,76.788308,20897090,13989617,0,0,18550,0,1,1 +1774056189.626374,28.90,4,3992.50,48.89,1750.01,1914.30,0.00,0.000000,0.000000,226,83,0.052521,118.922556,20901085,14001827,0,0,18552,0,1,1 +1774056194.624524,3.51,4,3992.50,48.68,1757.73,1905.80,0.00,0.000000,0.000000,226,83,0.008851,9.426543,20901498,14003008,0,0,18555,0,1,1 +1774056199.628445,14.89,4,3992.50,49.94,1708.33,1955.16,0.00,21070.125608,34375.941339,1974053,618027,40.038795,0.027932,20906048,14004511,0,0,18557,0,1,1 +1774056204.624507,0.90,4,3992.50,48.97,1746.15,1917.38,0.00,3521210789194.507812,3521210775869.058105,199,0,0.005198,0.009159,20906172,14004670,0,0,18560,0,1,1 +1774056209.624602,0.55,4,3992.50,48.72,1756.21,1907.33,0.00,1.318823,0.022070,226,83,0.003878,0.007110,20906272,14004809,0,0,18562,0,1,1 +1774056214.624527,0.50,4,3992.50,48.72,1756.12,1907.41,0.00,21091.030793,34403.551306,1974816,618237,0.004775,0.008446,20906372,14004957,0,0,18565,0,1,1 +1774056219.628641,0.65,4,3992.50,48.71,1756.39,1907.15,0.00,0.000000,0.033078,1974816,618276,0.003887,0.007091,20906473,14005095,0,0,18567,0,1,1 +1774056224.628485,0.60,4,3992.50,48.71,1756.39,1907.14,0.00,3518547099463.583008,3518547086150.278809,238,2,0.002975,0.004623,20906546,14005190,0,0,18570,0,1,1 +1774056229.624585,0.55,4,3992.50,48.69,1757.30,1906.25,0.00,3521183763204.403809,0.021892,226,83,0.003889,0.007167,20906647,14005333,0,0,18572,0,1,1 +1774056234.628569,0.65,4,3992.50,48.69,1757.10,1906.45,0.00,0.512580,3515636029548.208008,238,2,0.003875,0.007770,20906747,14005478,0,0,18575,0,1,1 +1774056239.628953,0.45,4,3992.50,48.69,1757.11,1906.44,0.00,3518166882086.701660,0.021873,226,83,0.003513,0.005930,20906839,14005600,0,0,18577,0,1,1 +1774056244.629480,0.60,4,3992.50,48.69,1757.37,1906.18,0.00,21088.491894,34419.850882,1974816,618547,0.003903,0.007163,20906941,14005743,0,0,18580,0,1,1 +1774056249.627337,0.55,4,3992.50,48.70,1756.76,1906.79,0.00,3519945708395.635254,3519945695058.579590,70,0,0.003992,0.007197,20907049,14005888,0,0,18582,0,1,1 +1774056254.629433,0.55,4,3992.50,48.69,1757.36,1906.19,0.00,1.957968,0.000195,238,2,0.003864,0.007129,20907148,14006029,0,0,18585,0,1,1 +1774056259.624597,0.60,4,3992.50,48.71,1756.39,1907.15,0.00,3521843805983.574219,3521843805985.584473,11,0,0.003419,0.005869,20907234,14006146,0,0,18587,0,1,1 +1774056264.628580,1.15,4,3992.50,48.63,1759.39,1904.16,0.00,0.176812,0.000000,199,0,0.010855,3.213912,20907773,14006884,0,0,18590,0,1,1 +1774056269.628935,10.33,4,3992.50,48.68,1755.95,1905.87,0.00,21086.470023,34457.206482,1974053,618846,0.024000,36.857816,20909459,14010857,0,0,18592,0,1,1 +1774056274.628870,0.60,4,3992.50,48.57,1760.30,1901.52,0.00,3518482835185.974609,3518482821812.283203,238,2,0.001844,0.005099,20909516,14010956,0,0,18595,0,1,1 +1774056279.624771,0.55,4,3992.50,48.55,1760.85,1900.96,0.00,21107.506687,34487.991125,1974816,618974,0.002291,0.006361,20909586,14011078,0,0,18597,0,1,1 +1774056284.626989,0.60,4,3992.50,48.56,1760.54,1901.27,0.00,3516876915502.181641,3516876902138.596191,238,2,0.002300,0.006363,20909657,14011201,0,0,18600,0,1,1 +1774056289.628886,0.55,4,3992.50,48.54,1761.20,1900.61,0.00,3517102757490.620605,3517102757492.578125,70,0,0.002283,0.006362,20909727,14011324,0,0,18602,0,1,1 +1774056294.627841,0.60,4,3992.50,48.54,1761.21,1900.61,0.00,21096.567268,34466.978516,1974816,618988,0.002048,0.005721,20909789,14011434,0,0,18605,0,1,1 +1774056299.627529,0.60,4,3992.50,48.55,1760.96,1900.85,0.00,3518656727342.187988,3518656713971.777344,238,2,0.002073,0.005766,20909853,14011547,0,0,18607,0,1,1 +1774056304.624601,0.65,4,3992.50,48.59,1759.26,1902.55,0.00,3520499134949.734863,0.021888,226,83,0.002341,0.006432,20909927,14011674,0,0,18610,0,1,1 +1774056309.626983,0.55,4,3992.50,48.59,1759.26,1902.55,0.00,0.512744,3516761355340.881348,238,2,0.002351,0.006446,20910002,14011802,0,0,18612,0,1,1 +1774056314.624415,1.46,4,3992.50,48.61,1758.77,1903.04,0.00,0.000000,0.000000,238,2,0.002454,0.006478,20910083,14011934,0,0,18615,0,1,1 +1774056319.628156,0.60,4,3992.50,48.60,1759.20,1902.62,0.00,3515806900842.666016,0.021859,226,83,0.001830,0.005110,20910139,14012034,0,0,18617,0,1,1 +1774056324.627215,0.75,4,3992.50,48.61,1758.46,1903.36,0.00,0.513085,3519099870168.950195,238,2,0.002277,0.007011,20910208,14012161,0,0,18620,0,1,1 +1774056329.626045,0.65,4,3992.50,48.61,1758.46,1903.37,0.00,3519260812339.201660,3519260812341.034180,199,0,0.002289,0.006358,20910278,14012283,0,0,18622,0,1,1 +1774056334.629412,29.60,4,3992.50,54.60,1531.38,2137.72,0.00,21077.835355,34440.729517,1974816,619146,30.228571,0.029288,20913588,14014005,0,0,18625,0,1,1 +1774056339.624572,36.57,4,3992.50,54.68,1533.37,2140.85,0.00,3521846671353.032715,3521846657968.357422,11,0,122.686578,0.039901,20926012,14016944,0,0,18627,0,1,1 +1774056344.629073,32.04,4,3992.50,54.63,1535.25,2139.08,0.00,1.494455,0.022050,226,83,121.257271,0.039731,20938347,14019943,0,0,18630,0,1,1 +1774056349.625240,31.10,4,3992.50,54.66,1534.59,2140.01,0.00,0.000000,0.000000,226,83,120.253450,0.044723,20950353,14023388,0,0,18632,0,1,1 +1774056354.625371,31.43,4,3992.50,54.64,1535.26,2139.38,0.00,0.000000,0.000000,226,83,120.159694,0.047836,20962451,14026989,0,0,18635,0,1,1 +1774056359.627818,31.09,4,3992.50,54.48,1541.67,2132.90,0.00,3516716478805.458496,3516716478806.754883,199,0,120.104089,0.051864,20974584,14031006,0,0,18637,0,1,1 +1774056364.628978,31.12,4,3992.50,54.63,1535.68,2138.93,0.00,21087.140751,34456.234167,1974816,619333,119.335983,0.047189,20986698,14034544,0,0,18640,0,1,1 +1774056369.628454,31.57,4,3992.50,54.69,1533.32,2141.34,0.00,3518805371659.212891,3518805358283.787109,238,2,119.174516,0.045598,20998713,14037914,0,0,18642,0,1,1 +1774056374.627203,27.29,4,3992.50,54.98,1522.17,2152.48,0.00,3519317993523.971680,0.021880,226,83,119.993234,0.049286,21010820,14041652,0,0,18645,0,1,1 +1774056379.628701,1.25,4,3992.50,48.88,1760.77,1913.92,0.00,0.000000,0.000000,226,83,32.238872,0.018619,21014204,14042779,0,0,18647,0,1,1 +1774056384.628661,14.75,4,3992.50,49.33,1743.09,1931.54,0.00,3518465279901.400391,3518465279902.874512,11,0,16.243687,0.081395,21019588,14046831,0,0,18650,0,1,1 +1774056389.628619,14.75,4,3992.50,49.42,1739.56,1935.01,0.00,0.050000,0.000000,70,0,24.017437,0.109878,21027510,14052701,0,0,18652,0,1,1 +1774056394.628766,1.05,4,3992.50,49.16,1749.71,1924.88,0.00,3518333999962.594727,0.000000,11,0,0.005097,0.007986,21027617,14052849,0,0,18655,0,1,1 +1774056399.628746,0.60,4,3992.50,48.77,1765.09,1909.50,0.00,21092.439716,34465.565384,1974833,620580,0.002784,0.005628,21027690,14052959,0,0,18657,0,1,1 +1774056404.624547,23.17,4,3992.50,49.24,1742.21,1927.68,0.00,3521394480229.383301,3521394466845.071289,11,0,0.037883,92.019877,21030267,14063011,0,0,18660,0,1,1 +1774056409.628472,28.03,4,3992.50,49.29,1732.14,1929.87,0.00,0.000000,0.000000,11,0,0.022658,113.073419,21031875,14074823,0,0,18662,0,1,1 +1774056414.628862,9.12,4,3992.50,53.68,1560.70,2101.55,0.00,1.495684,0.022069,226,83,7.811733,0.021040,21033260,14075787,0,0,18665,0,1,1 +1774056419.629090,6.06,4,3992.50,50.07,1702.03,1960.17,0.00,0.512965,3518276849342.662109,238,2,32.264822,0.023150,21036710,14077147,0,0,18667,0,1,1 +1774056424.628742,1.90,4,3992.50,49.03,1742.67,1919.57,0.00,3518681864942.470215,3518681864944.479004,11,0,0.004439,0.008845,21036825,14077307,0,0,18670,0,1,1 +1774056429.625671,1.10,4,3992.50,48.70,1755.41,1906.84,0.00,0.000000,0.000000,11,0,0.003634,0.006501,21036917,14077436,0,0,18672,0,1,1 +1774056434.625474,0.65,4,3992.50,48.70,1755.43,1906.81,0.00,0.000000,0.000000,11,0,0.003383,0.005853,21037000,14077552,0,0,18675,0,1,1 +1774056439.628465,0.65,4,3992.50,48.72,1754.59,1907.66,0.00,1.494907,0.022057,226,83,0.003813,0.007080,21037095,14077689,0,0,18677,0,1,1 +1774056444.625251,0.70,4,3992.50,48.72,1754.61,1907.64,0.00,21119.748181,34693.524275,1974177,622444,0.002494,0.003320,21037152,14077757,0,0,18680,0,1,1 +1774056449.629334,0.50,4,3992.50,48.72,1754.61,1907.64,0.00,4.061429,0.061473,1974940,622571,0.003430,0.005869,21037239,14077874,0,0,18682,0,1,1 +1774056454.626171,0.60,4,3992.50,48.72,1754.62,1907.62,0.00,3520664090192.104980,3520664076623.899902,70,0,0.003863,0.007777,21037338,14078019,0,0,18685,0,1,1 +1774056459.624487,0.65,4,3992.50,48.72,1754.64,1907.61,0.00,21114.728524,34683.008431,1974177,622535,0.003464,0.005920,21037426,14078140,0,0,18687,0,1,1 +1774056464.624608,0.60,4,3992.50,48.54,1761.81,1900.45,0.00,3518352451071.607910,3518352437508.098145,199,0,0.003815,0.007094,21037521,14078278,0,0,18690,0,1,1 +1774056469.624874,0.55,4,3992.50,48.54,1761.82,1900.43,0.00,0.000000,0.000000,199,0,0.003470,0.005882,21037610,14078396,0,0,18692,0,1,1 +1774056474.628092,0.65,4,3992.50,48.54,1761.84,1900.41,0.00,0.000000,0.000000,199,0,0.003838,0.007128,21037707,14078537,0,0,18695,0,1,1 +1774056479.624529,0.65,4,3992.50,48.36,1768.73,1893.53,0.00,1.833142,0.000195,238,2,0.003360,0.005822,21037788,14078650,0,0,18697,0,1,1 +1774056484.624587,0.65,4,3992.50,48.36,1768.78,1893.49,0.00,3518396426444.533203,3518396426446.541992,11,0,0.003672,0.006969,21037883,14078788,0,0,18700,0,1,1 +1774056489.628872,0.60,4,3992.50,48.36,1768.79,1893.47,0.00,0.000000,0.000000,11,0,0.002761,0.005601,21037954,14078896,0,0,18702,0,1,1 +1774056494.628814,10.75,4,3992.50,48.32,1769.40,1891.66,0.00,0.176955,0.000000,199,0,0.026545,40.068009,21039701,14083386,0,0,18705,0,1,1 +1774056499.628781,0.85,4,3992.50,48.22,1773.07,1888.00,0.00,3518460574276.054688,0.000000,70,0,0.003395,0.006916,21039791,14083519,0,0,18707,0,1,1 +1774056504.624868,0.65,4,3992.50,48.19,1774.29,1886.78,0.00,1.446933,0.022088,226,83,0.003797,0.007061,21039879,14083645,0,0,18710,0,1,1 +1774056509.626529,0.60,4,3992.50,48.22,1773.06,1888.01,0.00,3517268740550.852051,3517268740552.148438,199,0,0.002030,0.005741,21039940,14083757,0,0,18712,0,1,1 +1774056514.627981,0.65,4,3992.50,48.22,1773.07,1888.00,0.00,1.318465,0.022064,226,83,0.001818,0.005085,21039995,14083855,0,0,18715,0,1,1 +1774056519.629056,0.45,4,3992.50,48.26,1771.62,1889.45,0.00,3517680635980.023438,3517680635981.497070,11,0,0.003197,0.007681,21040066,14083985,0,0,18717,0,1,1 +1774056524.628503,0.75,4,3992.50,48.26,1771.55,1889.52,0.00,2.009011,0.000195,238,2,0.001793,0.005099,21040119,14084084,0,0,18720,0,1,1 +1774056529.628673,0.60,4,3992.50,48.24,1772.50,1888.56,0.00,3518317770436.897461,3518317770438.855957,70,0,0.002251,0.006356,21040186,14084206,0,0,18722,0,1,1 +1774056534.629187,0.55,4,3992.50,48.26,1771.53,1889.54,0.00,1.958588,0.000195,238,2,0.001843,0.005160,21040243,14084309,0,0,18725,0,1,1 +1774056539.626192,0.55,4,3992.50,48.26,1771.53,1889.54,0.00,3520546580978.919434,3520546580980.879395,70,0,0.002415,0.006523,21040321,14084443,0,0,18727,0,1,1 +1774056544.629496,0.65,4,3992.50,48.26,1771.54,1889.54,0.00,1.957496,0.000195,238,2,0.001886,0.005183,21040381,14084548,0,0,18730,0,1,1 +1774056549.624643,0.60,4,3992.50,48.26,1771.54,1889.53,0.00,3521855525375.977051,3521855525377.987305,11,0,0.002329,0.006412,21040454,14084673,0,0,18732,0,1,1 +1774056554.628661,0.65,4,3992.50,48.26,1771.54,1889.53,0.00,2.007176,0.000195,238,2,0.001787,0.005090,21040507,14084772,0,0,18735,0,1,1 +1774056559.628554,11.33,4,3992.50,54.59,1527.95,2137.23,0.00,21110.173050,34712.743931,1974940,623386,5.814784,0.015996,21041352,14085493,0,0,18737,0,1,1 +1774056564.624526,36.40,4,3992.50,54.63,1533.68,2138.70,0.00,3521274542061.393555,3521274528450.103516,70,0,116.055158,0.043278,21053196,14088547,0,0,18740,0,1,1 +1774056569.628042,28.12,4,3992.50,54.65,1533.78,2139.71,0.00,0.126864,0.000000,199,0,119.280894,0.034373,21065346,14091002,0,0,18742,0,1,1 +1774056574.628472,27.81,4,3992.50,54.77,1529.32,2144.20,0.00,1.831679,0.000195,238,2,118.954511,0.024472,21077559,14092736,0,0,18745,0,1,1 +1774056579.626365,27.67,4,3992.50,54.51,1539.19,2134.35,0.00,3519920423797.628418,3519920423799.587402,70,0,119.616078,0.028620,21089843,14094798,0,0,18747,0,1,1 +1774056584.628559,28.09,4,3992.50,54.63,1534.62,2138.89,0.00,0.000000,0.000000,70,0,118.712828,0.016993,21102133,14096026,0,0,18750,0,1,1 +1774056589.626161,28.23,4,3992.50,54.55,1537.80,2135.68,0.00,3520125868880.440918,0.000000,11,0,119.623929,0.027186,21114486,14097927,0,0,18752,0,1,1 +1774056594.624515,27.66,4,3992.50,54.74,1530.39,2143.10,0.00,1.496293,0.022078,226,83,118.806116,0.024695,21126839,14099676,0,0,18755,0,1,1 +1774056599.624501,28.36,4,3992.50,54.47,1541.00,2132.56,0.00,3518446606652.767578,3518446606654.064453,199,0,119.764179,0.050134,21139043,14103515,0,0,18757,0,1,1 +1774056604.626558,5.83,4,3992.50,49.53,1734.31,1939.29,0.00,21102.945573,34698.155465,1974948,623622,68.868304,0.021975,21146105,14105039,0,0,18760,0,1,1 +1774056609.625116,3.56,4,3992.50,48.80,1763.03,1910.57,0.00,0.084399,0.069942,1974964,623724,0.014675,0.013206,21146384,14105292,0,0,18762,0,1,1 +1774056614.627585,19.83,4,3992.50,49.11,1750.74,1922.79,0.00,3516700676144.489258,3516700662550.541016,70,0,30.188085,0.157320,21157974,14114461,0,0,18765,0,1,1 +1774056619.628806,8.45,4,3992.50,48.89,1759.17,1914.32,0.00,1.445448,0.022065,226,83,10.070486,0.056922,21161959,14117687,0,0,18767,0,1,1 +1774056624.624520,1.66,4,3992.50,48.43,1777.46,1896.04,0.00,0.513428,3521456360482.654297,238,2,0.004371,0.007922,21162069,14117841,0,0,18770,0,1,1 +1774056629.626567,5.52,4,3992.50,48.84,1761.38,1912.07,0.00,3516996943064.504883,3516996943066.462402,70,0,0.019156,20.231057,21163239,14120310,0,0,18772,0,1,1 +1774056634.628392,29.31,4,3992.50,49.49,1728.74,1937.65,0.00,21104.135775,34789.949850,1974964,625565,0.070247,124.151157,21168551,14133464,0,0,18775,0,1,1 +1774056639.629083,16.86,4,3992.50,48.36,1768.44,1893.38,0.00,3517950669969.166992,84.116492,1974201,626003,0.011442,60.680539,21169319,14139594,0,0,18777,0,1,1 +1774056644.629304,9.45,4,3992.50,53.44,1570.38,2092.10,0.00,3518281919663.363770,3518281905883.011719,238,2,15.636125,0.028204,21171506,14141120,0,0,18780,0,1,1 +1774056649.628865,3.41,4,3992.50,49.74,1714.93,1947.55,0.00,3518745883826.535156,3518745883828.367188,199,0,24.445356,0.027200,21174148,14142996,0,0,18782,0,1,1 +1774056654.628834,1.30,4,3992.50,49.05,1742.11,1920.38,0.00,21131.220304,34919.184798,1975072,626478,0.005379,0.010028,21174282,14143173,0,0,18785,0,1,1 +1774056659.629045,0.75,4,3992.50,48.64,1757.97,1904.52,0.00,3518288442960.635254,3518288429173.340332,199,0,0.003408,0.005842,21174367,14143288,0,0,18787,0,1,1 +1774056664.624517,0.85,4,3992.50,48.64,1758.10,1904.39,0.00,3521626782180.236816,0.000000,11,0,0.003837,0.008012,21174465,14143444,0,0,18790,0,1,1 +1774056669.628869,0.95,4,3992.50,48.65,1757.92,1904.57,0.00,21112.886976,34888.788385,1975072,626591,0.003589,0.006369,21174555,14143570,0,0,18792,0,1,1 +1774056674.628787,0.85,4,3992.50,48.65,1757.69,1904.80,0.00,3518495407591.745605,3518495393803.624512,11,0,0.004095,0.007679,21174663,14143723,0,0,18795,0,1,1 +1774056679.624548,0.85,4,3992.50,48.58,1760.36,1902.09,0.00,21149.192258,34949.053646,1975072,626887,0.003398,0.005848,21174747,14143838,0,0,18797,0,1,1 +1774056684.628944,0.85,4,3992.50,48.59,1759.93,1902.57,0.00,3515347011415.509277,3515346997639.455078,11,0,0.003417,0.005847,21174833,14143954,0,0,18800,0,1,1 +1774056689.624611,0.70,4,3992.50,48.59,1759.95,1902.55,0.00,0.000000,0.000000,11,0,0.003900,0.007141,21174934,14144095,0,0,18802,0,1,1 +1774056694.624755,0.80,4,3992.50,48.60,1759.75,1902.75,0.00,21130.653121,34918.530696,1975072,627017,0.003420,0.005865,21175020,14144212,0,0,18805,0,1,1 +1774056699.628066,0.85,4,3992.50,48.60,1759.76,1902.73,0.00,0.000000,0.027716,1975072,627029,0.003900,0.007133,21175121,14144353,0,0,18807,0,1,1 +1774056704.627151,0.70,4,3992.50,48.59,1760.02,1902.48,0.00,3519080655872.758301,3519080642081.931641,11,0,0.003408,0.005854,21175206,14144469,0,0,18810,0,1,1 +1774056709.629102,0.80,4,3992.50,48.60,1759.79,1902.71,0.00,21123.025982,34906.039552,1975072,627129,0.003882,0.007132,21175306,14144610,0,0,18812,0,1,1 +1774056714.624582,0.75,4,3992.50,48.40,1767.44,1895.05,0.00,3521620252110.840820,3521620238309.977051,11,0,0.003406,0.005853,21175391,14144726,0,0,18815,0,1,1 +1774056719.628434,8.88,4,3992.50,48.69,1755.32,1906.35,0.00,0.176817,0.000000,199,0,0.024061,31.570076,21176827,14148393,0,0,18817,0,1,1 +1774056724.626310,3.71,4,3992.50,48.41,1765.47,1895.49,0.00,0.000000,0.000000,199,0,0.007078,8.488536,21177216,14149465,0,0,18820,0,1,1 +1774056729.629162,0.80,4,3992.50,48.22,1772.89,1888.06,0.00,0.000000,0.000000,199,0,0.002250,0.006340,21177283,14149586,0,0,18822,0,1,1 +1774056734.627866,0.75,4,3992.50,48.23,1772.65,1888.31,0.00,21136.568967,34964.957220,1975072,627525,0.001819,0.005100,21177338,14149685,0,0,18825,0,1,1 +1774056739.628379,0.85,4,3992.50,48.21,1773.51,1887.45,0.00,3518076241574.941406,3518076227749.726074,238,2,0.002276,0.006355,21177407,14149807,0,0,18827,0,1,1 +1774056744.624696,0.65,4,3992.50,48.23,1772.53,1888.43,0.00,3521030311795.554688,0.021891,226,83,0.001782,0.005102,21177459,14149906,0,0,18830,0,1,1 +1774056749.624543,0.90,4,3992.50,48.23,1772.54,1888.43,0.00,0.000000,0.000000,226,83,0.002239,0.006344,21177525,14150027,0,0,18832,0,1,1 +1774056754.629458,0.65,4,3992.50,48.23,1772.54,1888.42,0.00,21109.020275,34925.562058,1975072,627565,0.001837,0.005133,21177582,14150129,0,0,18835,0,1,1 +1774056759.626334,0.90,4,3992.50,48.23,1772.53,1888.43,0.00,0.000000,0.068793,1975072,627616,0.002315,0.006422,21177654,14150255,0,0,18837,0,1,1 +1774056764.627507,0.70,4,3992.50,48.23,1772.54,1888.43,0.00,3517612075557.870117,3517612061732.345215,70,0,0.001906,0.005191,21177716,14150360,0,0,18840,0,1,1 +1774056769.624480,0.90,4,3992.50,48.23,1772.55,1888.42,0.00,21144.013218,34981.168052,1975072,627625,0.002408,0.006486,21177793,14150492,0,0,18842,0,1,1 +1774056774.628642,0.70,4,3992.50,48.24,1772.31,1888.66,0.00,3515511567775.645020,3515511553958.364258,70,0,0.001792,0.005094,21177846,14150591,0,0,18845,0,1,1 +1774056779.628693,0.85,4,3992.50,48.22,1772.85,1888.12,0.00,3518401103051.030762,0.000000,11,0,0.002238,0.006356,21177912,14150713,0,0,18847,0,1,1 +1774056784.628403,15.28,4,3992.50,54.55,1530.21,2135.65,0.00,0.000000,0.000000,11,0,5.013966,0.014454,21178684,14151341,0,0,18850,0,1,1 +1774056789.629137,34.66,4,3992.50,54.79,1527.12,2145.10,0.00,21128.165499,34955.000164,1975072,627762,118.149181,0.049210,21190802,14154809,0,0,18852,0,1,1 +1774056794.629079,28.49,4,3992.50,54.48,1540.62,2133.18,0.00,3518477667133.799805,3518477653304.777344,11,0,118.764170,0.039486,21202893,14157840,0,0,18855,0,1,1 +1774056799.626668,28.49,4,3992.50,54.92,1521.39,2150.31,0.00,0.050024,0.000000,70,0,119.628341,0.039581,21215227,14160724,0,0,18857,0,1,1 +1774056804.629372,28.62,4,3992.50,54.65,1533.94,2139.80,0.00,0.126885,0.000000,199,0,120.107717,0.035085,21227673,14163372,0,0,18860,0,1,1 +1774056809.628141,28.21,4,3992.50,54.48,1540.76,2133.04,0.00,3519303559359.534180,0.000000,11,0,118.997702,0.044230,21239985,14166580,0,0,18862,0,1,1 +1774056814.624553,28.61,4,3992.50,54.69,1532.45,2141.31,0.00,0.000000,0.000000,11,0,119.451576,0.046203,21252174,14169939,0,0,18865,0,1,1 +1774056819.628376,28.21,4,3992.50,54.67,1533.35,2140.57,0.00,2.007254,0.000195,238,2,120.080218,0.035742,21264634,14172570,0,0,18867,0,1,1 +1774056824.624738,28.36,4,3992.50,54.52,1539.09,2134.64,0.00,3520998902478.142090,3520998902480.102051,70,0,118.254767,0.054722,21276823,14176724,0,0,18870,0,1,1 +1774056829.625865,5.22,4,3992.50,49.68,1728.77,1945.07,0.00,1.958348,0.000195,238,2,67.077954,0.027886,21283621,14178625,0,0,18872,0,1,1 +1774056834.628010,6.02,4,3992.50,48.59,1771.61,1902.23,0.00,3516928414235.743164,3516928414237.750488,11,0,4.035156,0.029675,21285341,14179972,0,0,18875,0,1,1 +1774056839.628540,15.95,4,3992.50,49.98,1717.12,1956.65,0.00,0.000000,0.000000,11,0,22.680061,0.127292,21294438,14187136,0,0,18877,0,1,1 +1774056844.629518,6.64,4,3992.50,49.49,1735.95,1937.75,0.00,21127.242587,34954.327975,1975085,628848,11.552713,0.055944,21298715,14190586,0,0,18880,0,1,1 +1774056849.625646,3.61,4,3992.50,48.87,1760.39,1913.30,0.00,3521164337277.781738,3521164323437.093262,199,0,2.024955,0.019893,21299684,14191365,0,0,18882,0,1,1 +1774056854.629264,0.80,4,3992.50,48.83,1761.98,1911.71,0.00,21115.921810,34936.399388,1975085,629385,0.003405,0.005861,21299769,14191482,0,0,18885,0,1,1 +1774056859.624582,0.50,4,3992.50,48.85,1761.29,1912.41,0.00,0.000000,0.019061,1975085,629396,0.003869,0.007116,21299868,14191621,0,0,18887,0,1,1 +1774056864.624601,0.80,4,3992.50,48.65,1769.16,1904.57,0.00,3518424041512.232910,3518424027681.964355,11,0,0.003357,0.005840,21299949,14191736,0,0,18890,0,1,1 +1774056869.626642,0.50,4,3992.50,48.65,1768.93,1904.79,0.00,21118.693688,34947.649307,1974322,629415,0.003859,0.007102,21300048,14191875,0,0,18892,0,1,1 +1774056874.628916,0.50,4,3992.50,48.66,1768.69,1905.03,0.00,0.000000,0.092438,1974322,629459,0.003406,0.005894,21300133,14191994,0,0,18895,0,1,1 +1774056879.628903,0.60,4,3992.50,48.66,1768.72,1905.01,0.00,0.000000,0.079297,1974322,629550,0.003777,0.006633,21300236,14192131,0,0,18897,0,1,1 +1774056884.628871,0.60,4,3992.50,48.66,1768.73,1905.00,0.00,3518459743193.916016,3518459729359.055664,11,0,0.003597,0.006454,21300325,14192257,0,0,18900,0,1,1 +1774056889.624760,0.60,4,3992.50,48.66,1768.75,1904.98,0.00,0.000000,0.000000,11,0,0.003464,0.006256,21300412,14192379,0,0,18902,0,1,1 +1774056894.628941,0.50,4,3992.50,48.66,1768.76,1904.97,0.00,2.007111,0.000195,238,2,0.003858,0.006759,21300512,14192516,0,0,18905,0,1,1 +1774056899.628802,0.60,4,3992.50,48.66,1768.77,1904.96,0.00,3518534842593.594238,3518534842595.426270,199,0,0.003383,0.005843,21300595,14192631,0,0,18907,0,1,1 +1774056904.628773,0.60,4,3992.50,48.70,1766.83,1906.90,0.00,1.318855,0.022070,226,83,0.003886,0.007140,21300696,14192773,0,0,18910,0,1,1 +1774056909.628489,0.55,4,3992.50,48.69,1767.40,1906.33,0.00,0.513017,3518637566439.758789,238,2,0.003383,0.005856,21300779,14192889,0,0,18912,0,1,1 +1774056914.625200,0.60,4,3992.50,48.70,1767.16,1906.56,0.00,3520752629735.686035,3520752629737.695801,11,0,0.003843,0.007744,21300876,14193031,0,0,18915,0,1,1 +1774056919.628631,0.55,4,3992.50,48.70,1767.18,1906.55,0.00,0.176832,0.000000,199,0,0.003380,0.005826,21300959,14193145,0,0,18917,0,1,1 +1774056924.625764,0.80,4,3992.50,48.66,1768.52,1905.21,0.00,0.000000,0.000000,199,0,0.003855,0.007124,21301057,14193285,0,0,18920,0,1,1 +1774056929.627248,0.55,4,3992.50,48.67,1768.05,1905.68,0.00,21120.865464,34952.060497,1974322,629924,0.003369,0.005828,21301139,14193399,0,0,18922,0,1,1 +1774056934.624659,0.50,4,3992.50,48.67,1768.06,1905.67,0.00,3520260331285.688477,3520260317443.217773,199,0,0.003679,0.006993,21301234,14193537,0,0,18925,0,1,1 +1774056939.624510,23.27,4,3992.50,48.91,1754.13,1915.12,0.00,0.000000,0.000000,199,0,0.040392,98.150088,21304129,14204003,0,0,18927,0,1,1 +1774056944.626028,27.03,4,3992.50,48.77,1752.18,1909.48,0.00,1.831280,0.000195,238,2,0.085935,106.948010,21310741,14215643,0,0,18930,0,1,1 +1774056949.624557,14.26,4,3992.50,53.56,1565.86,2097.12,0.00,3519473156654.398926,3519473156656.231445,199,0,29.061380,0.028844,21314214,14217237,0,0,18932,0,1,1 +1774056954.624536,1.00,4,3992.50,49.70,1717.23,1945.73,0.00,1.831843,0.000195,238,2,11.018626,0.006934,21315397,14217601,0,0,18935,0,1,1 +1774056959.627400,7.17,4,3992.50,49.76,1713.88,1948.38,0.00,21136.639237,35147.585655,1975197,631563,0.020266,26.434562,21316618,14220716,0,0,18937,0,1,1 +1774056964.625642,4.52,4,3992.50,48.42,1765.86,1895.62,0.00,3519675519394.043945,3519675505372.146484,11,0,0.006973,13.633751,21316942,14222317,0,0,18940,0,1,1 +1774056969.629319,0.65,4,3992.50,48.45,1764.64,1896.84,0.00,0.176823,0.000000,199,0,0.002466,0.006891,21317017,14222451,0,0,18942,0,1,1 +1774056974.624604,0.65,4,3992.50,48.45,1764.70,1896.78,0.00,21166.472162,35238.271345,1974434,631782,0.002004,0.005650,21317077,14222562,0,0,18945,0,1,1 +1774056979.624608,0.50,4,3992.50,48.43,1765.12,1896.33,0.00,3518434496135.614746,3518434482075.798340,226,83,0.002277,0.007000,21317146,14222688,0,0,18947,0,1,1 +1774056984.626446,0.55,4,3992.50,48.45,1764.39,1897.07,0.00,0.512800,3517144438832.094727,238,2,0.001830,0.005128,21317202,14222789,0,0,18950,0,1,1 +1774056989.628941,0.65,4,3992.50,48.48,1763.41,1898.05,0.00,21138.198508,35187.595695,1975197,631881,0.002237,0.006340,21317268,14222910,0,0,18952,0,1,1 +1774056994.629234,0.55,4,3992.50,48.46,1764.20,1897.26,0.00,3518230835050.391602,3518230820996.639648,199,0,0.002060,0.005719,21317331,14223020,0,0,18955,0,1,1 +1774056999.624557,0.60,4,3992.50,48.48,1763.46,1898.00,0.00,0.000000,0.000000,199,0,0.002137,0.005834,21317400,14223137,0,0,18957,0,1,1 +1774057004.624602,0.45,4,3992.50,48.48,1763.22,1898.24,0.00,21150.389973,35207.659747,1975197,631911,0.002372,0.006467,21317477,14223267,0,0,18960,0,1,1 +1774057009.624604,0.65,4,3992.50,48.48,1763.23,1898.23,0.00,3518435681174.362305,0.001172,1974434,631833,0.002413,0.006457,21317555,14223397,0,0,18962,0,1,1 +1774057014.627207,0.45,4,3992.50,48.49,1763.00,1898.47,0.00,0.000000,0.074180,1974434,631894,0.002275,0.006363,21317624,14223520,0,0,18965,0,1,1 +1774057019.628422,0.55,4,3992.50,48.49,1763.00,1898.46,0.00,3517582187325.839844,3517582173267.721680,199,0,0.001874,0.005113,21317683,14223620,0,0,18967,0,1,1 +1774057024.624564,16.48,4,3992.50,54.59,1529.84,2137.24,0.00,1.319866,0.022087,226,83,17.045252,0.023123,21319670,14224765,0,0,18970,0,1,1 +1774057029.625469,34.27,4,3992.50,54.78,1529.57,2144.70,0.00,0.000000,0.000000,226,83,124.152210,0.037396,21332485,14227417,0,0,18972,0,1,1 +1774057034.624626,28.53,4,3992.50,54.90,1525.71,2149.38,0.00,3519030313992.690918,3519030313994.165039,11,0,122.193398,0.029981,21345140,14229683,0,0,18975,0,1,1 +1774057039.624567,25.39,4,3992.50,54.57,1538.80,2136.37,0.00,21151.006760,35208.644545,1975197,632126,120.167830,0.048847,21357392,14233467,0,0,18977,0,1,1 +1774057044.625220,26.99,4,3992.50,55.47,1503.55,2171.64,0.00,3517977674452.600586,3517977674456.648438,1974434,632048,99.938756,0.063552,21367759,14238447,0,0,18980,0,1,1 +1774057049.628874,27.69,4,3992.50,54.57,1538.77,2136.39,0.00,3515867280720.655762,3515867266669.407715,11,0,120.274293,0.024980,21379477,14240323,0,0,18982,0,1,1 +1774057054.628547,23.54,4,3992.50,55.28,1510.94,2164.17,0.00,1.495899,0.022072,226,83,97.141155,0.020652,21388673,14241844,0,0,18985,0,1,1 +1774057059.628490,27.43,4,3992.50,55.87,1487.88,2187.26,0.00,21145.436006,35208.737719,1974434,632070,110.679735,0.025465,21398546,14243770,0,0,18987,0,1,1 +1774057064.628663,30.62,4,3992.50,55.24,1512.20,2162.96,0.00,3518315140902.586426,3518315126841.406738,11,0,127.751035,0.029844,21410108,14246073,0,0,18990,0,1,1 +1774057069.628771,8.25,4,3992.50,49.81,1725.01,1950.21,0.00,21150.364819,35207.773668,1975203,632195,85.965091,0.020983,21417844,14247621,0,0,18992,0,1,1 +1774057074.629415,5.16,4,3992.50,49.11,1752.43,1922.80,0.00,3517984326756.805664,3517984312700.853516,70,0,4.032826,0.024881,21419302,14248708,0,0,18995,0,1,1 +1774057079.625675,13.60,4,3992.50,49.84,1723.69,1951.49,0.00,0.127048,0.000000,199,0,18.228938,0.089466,21425380,14253301,0,0,18997,0,1,1 +1774057084.627860,10.94,4,3992.50,49.06,1754.26,1920.88,0.00,3516900237666.846680,0.000000,70,0,18.010956,0.084010,21431301,14257731,0,0,19000,0,1,1 +1774057089.627187,3.26,4,3992.50,48.84,1762.94,1912.16,0.00,21153.683252,35214.318050,1975208,633507,0.015803,11.628680,21432232,14259309,0,0,19002,0,1,1 +1774057094.624527,29.93,4,3992.50,49.14,1743.85,1923.86,0.00,0.001563,89.354081,1975210,634271,0.035852,122.247345,21434837,14272293,0,0,19005,0,1,1 +1774057099.628331,18.25,4,3992.50,50.71,1677.25,1985.44,0.00,3515761917921.588379,3515761903784.299805,70,0,0.019301,71.250910,21436210,14279858,0,0,19007,0,1,1 +1774057104.629105,0.95,4,3992.50,48.61,1759.67,1903.02,0.00,21147.564605,35409.522440,1975210,634973,0.005766,0.009340,21436347,14280034,0,0,19010,0,1,1 +1774057109.629147,13.69,4,3992.50,53.12,1582.91,2079.79,0.00,19.377181,0.160253,1975363,635102,35.056221,0.021252,21440208,14281264,0,0,19012,0,1,1 +1774057114.629392,1.10,4,3992.50,48.29,1772.14,1890.55,0.00,3518265089665.292969,3518265075420.916016,199,0,5.014988,0.012258,21440933,14281547,0,0,19015,0,1,1 +1774057119.628679,0.55,4,3992.50,48.29,1772.16,1890.53,0.00,1.319036,0.022073,226,83,0.004838,0.007843,21441038,14281693,0,0,19017,0,1,1 +1774057124.628685,0.50,4,3992.50,48.31,1771.20,1891.50,0.00,3518432723583.718262,3518432723585.142090,70,0,0.003433,0.005878,21441125,14281811,0,0,19020,0,1,1 +1774057129.626247,0.60,4,3992.50,48.31,1771.21,1891.48,0.00,21180.543575,35432.592580,1975363,635281,0.003880,0.007126,21441225,14281951,0,0,19022,0,1,1 +1774057134.629022,0.80,4,3992.50,48.80,1752.14,1910.55,0.00,3516485476384.894531,3516485462146.275391,226,83,0.003896,0.007811,21441327,14282099,0,0,19025,0,1,1 +1774057139.625014,0.55,4,3992.50,48.80,1752.16,1910.54,0.00,21185.748884,35443.875183,1975363,635395,0.004551,0.008051,21441430,14282241,0,0,19027,0,1,1 +1774057144.624545,0.65,4,3992.50,48.80,1751.93,1910.77,0.00,3518767926562.904297,3518767912316.340820,11,0,0.003446,0.006541,21441518,14282364,0,0,19030,0,1,1 +1774057149.624626,0.60,4,3992.50,48.80,1751.95,1910.75,0.00,21165.853439,35414.955458,1974600,635389,0.003996,0.007229,21441626,14282512,0,0,19032,0,1,1 +1774057154.625487,0.60,4,3992.50,48.80,1751.96,1910.74,0.00,4.064046,0.053116,1975363,635512,0.003877,0.007131,21441726,14282653,0,0,19035,0,1,1 +1774057159.626598,0.55,4,3992.50,48.80,1751.97,1910.72,0.00,3517655463360.500488,3517655449118.342285,11,0,0.003960,0.007169,21441832,14282797,0,0,19037,0,1,1 +1774057164.627975,0.50,4,3992.50,48.80,1751.97,1910.73,0.00,21164.434762,35405.878371,1975363,635565,0.003407,0.006507,21441917,14282918,0,0,19040,0,1,1 +1774057169.628830,0.65,4,3992.50,48.80,1751.99,1910.70,0.00,3517835768661.994629,3517835754417.055664,238,2,0.003877,0.007121,21442017,14283058,0,0,19042,0,1,1 +1774057174.625865,0.55,4,3992.50,48.80,1752.03,1910.68,0.00,21176.750287,35436.723293,1974600,635566,0.003893,0.007137,21442118,14283199,0,0,19045,0,1,1 +1774057179.628961,0.50,4,3992.50,48.80,1752.04,1910.66,0.00,0.000000,0.002635,1974600,635572,0.003876,0.007118,21442218,14283339,0,0,19047,0,1,1 +1774057184.624615,2.41,4,3992.50,48.59,1760.36,1902.31,0.00,3521497591684.318359,3521497577420.939941,226,83,0.011582,4.220000,21442836,14284184,0,0,19050,0,1,1 +1774057189.624513,9.69,4,3992.50,48.49,1762.84,1898.59,0.00,0.000000,0.000000,226,83,0.014801,35.853786,21443868,14287830,0,0,19052,0,1,1 +1774057194.628724,0.90,4,3992.50,48.29,1770.64,1890.77,0.00,0.512557,3515476674809.823730,238,2,0.002968,0.008627,21443959,14287986,0,0,19055,0,1,1 +1774057199.624611,0.50,4,3992.50,48.13,1777.05,1884.36,0.00,3521333817231.950684,3521333817233.784180,199,0,0.002278,0.006361,21444028,14288108,0,0,19057,0,1,1 +1774057204.624766,0.60,4,3992.50,48.13,1776.84,1884.58,0.00,3518328303252.439941,0.000000,70,0,0.002289,0.006366,21444098,14288231,0,0,19060,0,1,1 +1774057209.628583,0.65,4,3992.50,48.14,1776.46,1884.97,0.00,3515753170408.758789,0.000000,11,0,0.002300,0.006351,21444169,14288353,0,0,19062,0,1,1 +1774057214.628614,0.65,4,3992.50,47.99,1782.56,1878.86,0.00,0.000000,0.000000,11,0,0.001839,0.005107,21444226,14288453,0,0,19065,0,1,1 +1774057219.628508,0.60,4,3992.50,47.99,1782.35,1879.08,0.00,21170.726606,35456.763856,1975372,636104,0.002314,0.006387,21444298,14288577,0,0,19067,0,1,1 +1774057224.628631,0.75,4,3992.50,48.04,1780.62,1880.80,0.00,3518351190765.778320,3518351176480.393555,11,0,0.002339,0.006428,21444372,14288704,0,0,19070,0,1,1 +1774057229.628989,0.60,4,3992.50,48.06,1779.65,1881.77,0.00,1.495693,0.022069,226,83,0.002364,0.006449,21444448,14288832,0,0,19072,0,1,1 +1774057234.628834,0.55,4,3992.50,48.06,1779.65,1881.77,0.00,0.000000,0.000000,226,83,0.001862,0.005124,21444506,14288933,0,0,19075,0,1,1 +1774057239.628932,0.65,4,3992.50,48.06,1779.66,1881.76,0.00,3518368082800.484375,3518368082801.781250,199,0,0.002421,0.006465,21444585,14289064,0,0,19077,0,1,1 +1774057244.624618,0.50,4,3992.50,48.06,1779.67,1881.76,0.00,21184.313940,35486.682079,1974609,636071,0.002291,0.006371,21444655,14289187,0,0,19080,0,1,1 +1774057249.629230,0.60,4,3992.50,48.01,1781.68,1879.74,0.00,4.060999,0.044880,1975372,636182,0.002274,0.006994,21444724,14289313,0,0,19082,0,1,1 +1774057254.625432,17.58,4,3992.50,54.84,1521.11,2147.27,0.00,0.000000,0.007721,1975372,636212,22.253829,0.021418,21447206,14290512,0,0,19085,0,1,1 +1774057259.624590,32.68,4,3992.50,54.96,1521.40,2151.80,0.00,3519029719827.738770,3519029705537.485840,238,2,118.185440,0.027665,21459321,14292314,0,0,19087,0,1,1 +1774057264.624528,27.99,4,3992.50,54.64,1534.96,2139.18,0.00,3518480462265.260254,3518480462267.218750,70,0,120.172468,0.033410,21471721,14294661,0,0,19090,0,1,1 +1774057269.626310,27.71,4,3992.50,54.56,1537.88,2136.24,0.00,3517183802050.038574,0.000000,11,0,118.130678,0.051977,21483816,14298439,0,0,19092,0,1,1 +1774057274.628378,27.78,4,3992.50,54.67,1533.70,2140.43,0.00,21157.459852,35441.680812,1974609,636294,120.149973,0.110757,21496678,14306934,0,0,19095,0,1,1 +1774057279.628709,27.79,4,3992.50,54.48,1541.05,2133.11,0.00,3518204749782.151855,3518204735490.957520,238,2,119.390372,0.109424,21509531,14315324,0,0,19097,0,1,1 +1774057284.625246,28.05,4,3992.50,54.58,1537.07,2137.02,0.00,3520875826629.478516,3520875826631.438477,70,0,119.065235,0.068462,21522103,14320500,0,0,19100,0,1,1 +1774057289.624569,28.12,4,3992.50,54.75,1530.69,2143.43,0.00,0.000000,0.000000,70,0,119.992631,0.042165,21534738,14323531,0,0,19102,0,1,1 +1774057294.628615,27.87,4,3992.50,54.77,1529.77,2144.38,0.00,3515592177242.202637,0.000000,11,0,118.275000,0.039139,21546967,14326498,0,0,19105,0,1,1 +1774057299.629326,1.15,4,3992.50,49.89,1720.80,1953.41,0.00,0.000000,0.000000,11,0,49.865143,0.015774,21552153,14327560,0,0,19107,0,1,1 +1774057304.628484,6.02,4,3992.50,49.36,1741.55,1932.64,0.00,0.176983,0.000000,199,0,4.035209,0.026243,21553627,14328704,0,0,19110,0,1,1 +1774057309.624450,22.10,4,3992.50,49.41,1739.54,1934.57,0.00,1.319913,0.022088,226,83,32.226188,0.145335,21564104,14336417,0,0,19112,0,1,1 +1774057314.624737,3.37,4,3992.50,48.64,1769.62,1904.43,0.00,21167.639094,35454.899111,1975383,637464,4.027655,0.024420,21565490,14337554,0,0,19115,0,1,1 +1774057319.624616,0.55,4,3992.50,48.46,1776.84,1897.22,0.00,3518522027723.443848,3518522013436.444336,70,0,0.003930,0.007787,21565594,14337700,0,0,19117,0,1,1 +1774057324.624619,0.50,4,3992.50,48.46,1776.61,1897.45,0.00,0.000000,0.000000,70,0,0.003878,0.007107,21565694,14337839,0,0,19120,0,1,1 +1774057329.628561,1.60,4,3992.50,48.09,1791.34,1882.76,0.00,1.444662,0.022053,226,83,0.003418,0.005876,21565780,14337957,0,0,19122,0,1,1 +1774057334.625561,9.04,4,3992.50,48.81,1762.55,1911.04,0.00,21181.558881,35479.202550,1975383,638053,0.028023,36.686168,21567520,14342139,0,0,19125,0,1,1 +1774057339.628438,28.65,4,3992.50,49.23,1738.42,1927.61,0.00,3516414335905.262207,3516414321625.883301,11,0,0.029386,120.100422,21569724,14354611,0,0,19127,0,1,1 +1774057344.626420,13.14,4,3992.50,48.91,1747.55,1914.90,0.00,0.050020,0.000000,70,0,0.028734,48.298736,21571791,14359742,0,0,19130,0,1,1 +1774057349.627079,1.10,4,3992.50,48.76,1753.44,1909.06,0.00,0.000000,0.000000,70,0,0.006412,0.007272,21571907,14359878,0,0,19132,0,1,1 +1774057354.625509,13.55,4,3992.50,49.93,1707.57,1954.93,0.00,0.000000,0.000000,70,0,40.078252,0.024760,21576406,14361374,0,0,19135,0,1,1 +1774057359.629379,0.95,4,3992.50,49.17,1737.27,1925.23,0.00,3515716332730.355957,0.000000,11,0,0.004576,0.009349,21576521,14361538,0,0,19137,0,1,1 +1774057364.628527,0.55,4,3992.50,48.86,1749.71,1912.80,0.00,0.050009,0.000000,70,0,0.003891,0.007134,21576622,14361679,0,0,19140,0,1,1 +1774057369.628720,0.55,4,3992.50,48.73,1754.43,1908.08,0.00,21184.791721,35649.658283,1974729,639384,0.003420,0.005842,21576708,14361794,0,0,19142,0,1,1 +1774057374.628861,0.60,4,3992.50,48.73,1754.55,1907.95,0.00,3518337862207.028320,3518337847740.052246,238,2,0.003886,0.007140,21576809,14361936,0,0,19145,0,1,1 +1774057379.626406,0.45,4,3992.50,48.71,1755.45,1907.05,0.00,3520165900400.134277,3520165900401.967285,199,0,0.003893,0.007157,21576910,14362078,0,0,19147,0,1,1 +1774057384.628996,0.70,4,3992.50,48.51,1763.21,1899.30,0.00,21174.513375,35644.877095,1974729,639539,0.003876,0.007772,21577010,14362223,0,0,19150,0,1,1 +1774057389.624509,0.45,4,3992.50,48.52,1763.00,1899.50,0.00,3521597476315.980469,3521597461825.292969,11,0,0.003486,0.005898,21577100,14362342,0,0,19152,0,1,1 +1774057394.627598,0.60,4,3992.50,48.48,1764.25,1898.25,0.00,21176.641715,35641.526418,1975492,639784,0.003919,0.007153,21577203,14362485,0,0,19155,0,1,1 +1774057399.628905,0.65,4,3992.50,48.52,1762.83,1899.68,0.00,3517517938550.011230,3517517924079.970703,11,0,0.004986,0.007728,21577325,14362638,0,0,19157,0,1,1 +1774057404.628976,0.65,4,3992.50,48.52,1762.83,1899.67,0.00,21189.424170,35663.125875,1975492,639892,0.005025,0.007582,21577453,14362796,0,0,19160,0,1,1 +1774057409.628444,0.60,4,3992.50,48.52,1762.83,1899.68,0.00,3518811459109.491699,3518811459113.548340,1974729,639813,0.003421,0.005856,21577539,14362912,0,0,19162,0,1,1 +1774057414.627145,0.40,4,3992.50,48.49,1764.17,1898.34,0.00,0.000000,0.036338,1974729,639853,0.002802,0.005629,21577613,14363022,0,0,19165,0,1,1 +1774057419.624653,11.31,4,3992.50,48.69,1754.98,1906.27,0.00,3520191785754.885742,3520191771269.666016,11,0,0.026448,40.090249,21579263,14367584,0,0,19167,0,1,1 +1774057424.628569,0.75,4,3992.50,48.51,1762.16,1899.11,0.00,0.049961,0.000000,70,0,0.002274,0.006361,21579332,14367707,0,0,19170,0,1,1 +1774057429.624500,0.45,4,3992.50,48.48,1763.35,1897.93,0.00,0.127057,0.000000,199,0,0.001828,0.005101,21579388,14367806,0,0,19172,0,1,1 +1774057434.628608,0.55,4,3992.50,48.52,1761.63,1899.65,0.00,3515548486207.504883,0.000000,70,0,0.002287,0.006361,21579458,14367929,0,0,19175,0,1,1 +1774057439.624592,0.55,4,3992.50,48.52,1761.63,1899.64,0.00,0.127055,0.000000,199,0,0.002291,0.006361,21579528,14368051,0,0,19177,0,1,1 +1774057444.624575,0.65,4,3992.50,48.52,1761.64,1899.64,0.00,3518449555826.204590,0.000000,11,0,0.002301,0.006397,21579599,14368176,0,0,19180,0,1,1 +1774057449.628693,0.55,4,3992.50,48.54,1760.67,1900.61,0.00,2.007136,0.000195,238,2,0.001855,0.005759,21579657,14368280,0,0,19182,0,1,1 +1774057454.628841,0.55,4,3992.50,48.54,1760.67,1900.60,0.00,0.000000,0.000000,238,2,0.002339,0.006428,21579731,14368407,0,0,19185,0,1,1 +1774057459.628869,0.65,4,3992.50,48.54,1760.68,1900.60,0.00,21187.600883,35703.768219,1975492,640358,0.002335,0.006426,21579805,14368534,0,0,19187,0,1,1 +1774057464.629238,0.50,4,3992.50,48.54,1760.68,1900.60,0.00,3518177497643.475586,3518177483130.132324,199,0,0.002507,0.006554,21579890,14368671,0,0,19190,0,1,1 +1774057469.628406,0.55,4,3992.50,48.57,1759.73,1901.55,0.00,3519022729221.674805,0.000000,11,0,0.002060,0.005711,21579953,14368780,0,0,19192,0,1,1 +1774057474.624942,0.60,4,3992.50,48.57,1759.73,1901.55,0.00,2.010182,0.000195,238,2,0.002061,0.005749,21580016,14368892,0,0,19195,0,1,1 +1774057479.625969,0.55,4,3992.50,48.57,1759.73,1901.54,0.00,3517714964308.493652,3517714964310.501953,11,0,0.002288,0.006355,21580086,14369014,0,0,19197,0,1,1 +1774057484.628384,20.05,4,3992.50,54.56,1532.59,2136.06,0.00,0.000000,0.000000,11,0,30.217766,0.027608,21583383,14370630,0,0,19200,0,1,1 +1774057489.628787,33.79,4,3992.50,54.71,1531.45,2142.00,0.00,21183.950510,35701.174501,1974729,640408,123.777783,0.029410,21596102,14372840,0,0,19202,0,1,1 +1774057494.625420,28.96,4,3992.50,54.49,1540.23,2133.47,0.00,3520808516313.487305,3520808501783.831543,226,83,122.251401,0.036766,21608617,14375463,0,0,19205,0,1,1 +1774057499.628586,28.54,4,3992.50,54.71,1531.73,2141.92,0.00,3516210729479.889160,3516210729481.185547,199,0,120.089113,0.049787,21620757,14379028,0,0,19207,0,1,1 +1774057504.629436,28.55,4,3992.50,54.57,1537.23,2136.40,0.00,21181.879806,35698.132800,1974729,640456,120.141346,0.045084,21632806,14382543,0,0,19210,0,1,1 +1774057509.628678,28.63,4,3992.50,54.51,1539.55,2134.12,0.00,3518970549619.711914,3518970535097.491699,226,83,120.182285,0.048918,21644948,14386180,0,0,19212,0,1,1 +1774057514.625788,28.74,4,3992.50,54.67,1533.23,2140.41,0.00,21196.420109,35724.940991,1974729,640561,119.634329,0.056208,21657092,14390203,0,0,19215,0,1,1 +1774057519.628941,28.48,4,3992.50,54.73,1530.75,2142.89,0.00,4.062184,0.068121,1975492,640659,119.088636,0.043172,21669159,14393366,0,0,19217,0,1,1 +1774057524.628645,24.57,4,3992.50,54.59,1536.40,2137.34,0.00,3518645497842.004883,3518645483325.021484,226,83,119.770283,0.035387,21681310,14396025,0,0,19220,0,1,1 +1774057529.629177,1.35,4,3992.50,48.77,1764.42,1909.30,0.00,3518062707588.468262,3518062707589.892090,70,0,30.243272,0.015415,21684508,14396916,0,0,19222,0,1,1 +1774057534.625847,6.98,4,3992.50,47.97,1795.51,1878.22,0.00,0.000000,0.000000,70,0,4.042128,0.031722,21686084,14398170,0,0,19225,0,1,1 +1774057539.624496,15.62,4,3992.50,49.93,1718.73,1954.94,0.00,1.446192,0.022076,226,83,22.140230,0.100118,21693272,14403596,0,0,19227,0,1,1 +1774057544.629378,8.90,4,3992.50,50.04,1714.43,1959.20,0.00,0.000000,0.000000,226,83,14.080526,0.068445,21698055,14407241,0,0,19230,0,1,1 +1774057549.629519,1.25,4,3992.50,49.30,1743.32,1930.30,0.00,0.000000,0.000000,226,83,0.003963,0.008269,21698159,14407397,0,0,19232,0,1,1 +1774057554.624518,0.90,4,3992.50,49.14,1749.60,1924.04,0.00,3521959768792.618652,3521959768793.916992,199,0,0.003882,0.007139,21698259,14407538,0,0,19235,0,1,1 +1774057559.624610,0.75,4,3992.50,49.11,1750.69,1922.95,0.00,1.831802,0.000195,238,2,0.003420,0.005855,21698345,14407654,0,0,19237,0,1,1 +1774057564.625468,0.80,4,3992.50,49.14,1749.56,1924.07,0.00,21184.224547,35699.608290,1975505,642047,0.004485,0.008884,21698458,14407821,0,0,19240,0,1,1 +1774057569.628522,0.90,4,3992.50,48.85,1761.21,1912.43,0.00,3516289220227.684082,3516289205720.678711,11,0,0.004080,0.007645,21698565,14407972,0,0,19242,0,1,1 +1774057574.628899,0.65,4,3992.50,48.86,1760.68,1912.96,0.00,0.000000,0.000000,11,0,0.004208,0.007819,21698682,14408134,0,0,19245,0,1,1 +1774057579.628622,0.70,4,3992.50,48.86,1760.70,1912.94,0.00,0.000000,0.000000,11,0,0.003420,0.006499,21698768,14408254,0,0,19247,0,1,1 +1774057584.629269,0.85,4,3992.50,48.89,1759.64,1914.00,0.00,0.176930,0.000000,199,0,0.003878,0.007119,21698868,14408394,0,0,19250,0,1,1 +1774057589.624550,0.70,4,3992.50,48.89,1759.41,1914.23,0.00,21205.641033,35739.773469,1974742,642295,0.003894,0.007129,21698969,14408534,0,0,19252,0,1,1 +1774057594.625856,0.70,4,3992.50,48.86,1760.70,1912.94,0.00,3517518444242.937012,3517518429724.481445,238,2,0.003960,0.007822,21699075,14408683,0,0,19255,0,1,1 +1774057599.628523,0.75,4,3992.50,48.87,1760.47,1913.18,0.00,3516561545284.343750,3516561545286.174805,199,0,0.003418,0.005852,21699161,14408799,0,0,19257,0,1,1 +1774057604.628536,0.80,4,3992.50,48.86,1760.48,1913.16,0.00,1.831831,0.000195,238,2,0.003878,0.007120,21699261,14408939,0,0,19260,0,1,1 +1774057609.629542,0.80,4,3992.50,48.86,1760.64,1913.00,0.00,3517729486735.574219,3517729486737.405762,199,0,0.003451,0.005879,21699349,14409057,0,0,19262,0,1,1 +1774057614.628874,0.70,4,3992.50,48.81,1762.73,1910.92,0.00,21188.461026,35711.005299,1974742,642470,0.003866,0.007121,21699448,14409197,0,0,19265,0,1,1 +1774057619.628954,1.55,4,3992.50,48.81,1762.55,1911.09,0.00,4.064680,0.026562,1975505,642563,0.003909,0.007122,21699550,14409337,0,0,19267,0,1,1 +1774057624.624597,0.45,4,3992.50,48.84,1761.58,1912.07,0.00,3521506105608.615723,3521506091079.389648,199,0,0.000188,0.000538,21699562,14409345,0,0,19270,0,1,1 +1774057629.624535,0.55,4,3992.50,48.84,1761.34,1912.31,0.00,1.318864,0.022071,226,83,0.000047,0.000181,21699565,14409348,0,0,19272,0,1,1 +1774057634.624640,0.70,4,3992.50,48.84,1761.40,1912.25,0.00,21187.939282,35705.562099,1975508,642621,0.000089,0.000030,21699571,14409351,0,0,19275,0,1,1 +1774057639.624656,0.65,4,3992.50,48.84,1761.40,1912.25,0.00,3518426048356.452148,3518426033840.044434,11,0,0.000028,0.000020,21699573,14409353,0,0,19277,0,1,1 +1774057644.628821,0.55,4,3992.50,48.64,1769.27,1904.39,0.00,2.007117,0.000195,238,2,0.000028,0.000030,21699575,14409356,0,0,19280,0,1,1 +1774057649.628820,0.55,4,3992.50,48.45,1776.92,1896.74,0.00,0.000000,0.000000,238,2,0.000075,0.000020,21699580,14409358,0,0,19282,0,1,1 +1774057654.624502,0.85,4,3992.50,48.47,1775.95,1897.70,0.00,3521478099595.805176,3521478099597.815430,11,0,0.003881,0.007156,21699681,14409501,0,0,19285,0,1,1 +1774057659.629398,0.85,4,3992.50,48.49,1774.99,1898.66,0.00,21165.088345,35671.493623,1974745,642660,0.003656,0.006509,21699775,14409631,0,0,19287,0,1,1 +1774057664.629388,8.54,4,3992.50,48.66,1768.27,1905.06,0.00,3518444447655.835938,3518444433135.018555,199,0,0.026494,34.460583,21701443,14413564,0,0,19290,0,1,1 +1774057669.628476,29.17,4,3992.50,48.65,1760.41,1904.56,0.00,3519079319098.614258,0.000000,11,0,0.030251,118.191937,21703654,14425898,0,0,19292,0,1,1 +1774057674.629457,13.51,4,3992.50,49.47,1724.45,1936.72,0.00,21185.719332,35878.764366,1975508,643861,0.013590,52.467496,21704647,14431472,0,0,19295,0,1,1 +1774057679.624528,11.90,4,3992.50,53.08,1583.86,2078.14,0.00,3521909490384.151367,3521909475673.718262,11,0,14.643627,0.020063,21706464,14432478,0,0,19297,0,1,1 +1774057684.624535,3.81,4,3992.50,53.75,1557.52,2104.48,0.00,0.050000,0.000000,70,0,13.139096,0.005569,21707873,14432768,0,0,19300,0,1,1 +1774057689.624547,0.75,4,3992.50,53.76,1557.29,2104.71,0.00,21205.094106,35911.515474,1974883,644060,0.000447,0.000664,21707884,14432774,0,0,19302,0,1,1 +1774057694.628719,0.60,4,3992.50,53.76,1557.05,2104.95,0.00,3515503790145.791504,3515503775451.596191,70,0,0.000278,0.000030,21707894,14432777,0,0,19305,0,1,1 +1774057699.628726,0.85,4,3992.50,53.76,1557.33,2104.67,0.00,0.000000,0.000000,70,0,0.000321,0.000020,21707905,14432779,0,0,19307,0,1,1 +1774057704.625215,0.75,4,3992.50,53.77,1556.68,2105.32,0.00,21224.109158,35936.862694,1975646,644153,0.000250,0.000030,21707922,14432782,0,0,19310,0,1,1 +1774057709.626246,0.65,4,3992.50,53.77,1556.79,2105.21,0.00,3517711888953.154785,3517711874252.336914,226,83,0.000550,0.000020,21707940,14432784,0,0,19312,0,1,1 +1774057714.625702,0.80,4,3992.50,53.79,1556.06,2105.94,0.00,0.513044,3518820361268.327148,238,2,0.002383,0.005344,21708009,14432892,0,0,19315,0,1,1 +1774057719.628575,0.60,4,3992.50,53.79,1556.07,2105.93,0.00,3516416809407.839844,0.021862,226,83,0.001840,0.005100,21708066,14432991,0,0,19317,0,1,1 +1774057724.629208,0.75,4,3992.50,53.79,1556.08,2105.91,0.00,21201.013061,35907.221011,1974884,644236,0.003424,0.007256,21708152,14433134,0,0,19320,0,1,1 +1774057729.627421,0.85,4,3992.50,53.79,1556.09,2105.91,0.00,3519695534442.756348,3519695519730.897949,11,0,0.006417,0.009395,21708290,14433308,0,0,19322,0,1,1 +1774057734.628848,1.30,4,3992.50,48.76,1753.00,1909.00,0.00,0.049986,0.000000,70,0,12.301511,0.013240,21709570,14433813,0,0,19325,0,1,1 +1774057739.625758,8.14,4,3992.50,48.72,1753.64,1907.65,0.00,1.446695,0.022084,226,83,0.022640,32.476179,21711083,14437473,0,0,19327,0,1,1 +1774057744.628739,3.10,4,3992.50,48.43,1764.50,1896.14,0.00,0.000000,0.000000,226,83,0.003555,7.607251,21711343,14438286,0,0,19330,0,1,1 +1774057749.629151,0.45,4,3992.50,48.44,1764.02,1896.63,0.00,21201.953549,35946.805569,1974884,644615,0.000126,0.000020,21711353,14438288,0,0,19332,0,1,1 +1774057754.629414,0.40,4,3992.50,48.44,1764.02,1896.63,0.00,3518252055847.523926,3518252041103.706543,11,0,0.000126,0.000674,21711363,14438295,0,0,19335,0,1,1 +1774057759.625563,0.45,4,3992.50,48.44,1764.02,1896.63,0.00,21225.609297,35977.525267,1975647,644704,0.000000,0.000020,21711363,14438297,0,0,19337,0,1,1 +1774057764.629148,0.55,4,3992.50,48.44,1764.02,1896.63,0.00,3515916083279.726074,3515916083283.774414,1974884,644623,0.000000,0.000030,21711363,14438300,0,0,19340,0,1,1 +1774057769.629434,0.40,4,3992.50,48.44,1764.02,1896.63,0.00,3518235983282.364746,3518235968536.594238,238,2,0.000126,0.000020,21711373,14438302,0,0,19342,0,1,1 +1774057774.624505,0.45,4,3992.50,48.44,1764.03,1896.62,0.00,0.000000,0.000000,238,2,0.001828,0.005167,21711429,14438405,0,0,19345,0,1,1 +1774057779.628645,0.65,4,3992.50,48.44,1764.03,1896.62,0.00,3515526196398.104980,3515526196400.112305,11,0,0.002400,0.006506,21711508,14438537,0,0,19347,0,1,1 +1774057784.629104,0.85,4,3992.50,48.44,1764.04,1896.61,0.00,21203.250493,35948.748073,1974885,644654,0.003392,0.006422,21711609,14438676,0,0,19350,0,1,1 +1774057789.628680,1.05,4,3992.50,48.31,1770.28,1891.43,0.00,3518735874869.170898,3518735860120.891113,199,0,0.004491,0.009593,21711718,14438849,0,0,19352,0,1,1 +1774057794.625168,0.70,4,3992.50,48.33,1769.31,1892.41,0.00,3520910131380.760742,0.000000,70,0,0.002278,0.006370,21711787,14438972,0,0,19355,0,1,1 +1774057799.629368,0.60,4,3992.50,48.33,1769.31,1892.40,0.00,3515484459973.332031,0.000000,11,0,0.002325,0.006401,21711860,14439098,0,0,19357,0,1,1 +1774057804.629414,0.40,4,3992.50,48.33,1769.32,1892.39,0.00,0.176951,0.000000,199,0,0.000000,0.000030,21711860,14439101,0,0,19360,0,1,1 +1774057809.624606,0.55,4,3992.50,48.34,1768.92,1892.80,0.00,0.000000,0.000000,199,0,0.000000,0.000020,21711860,14439103,0,0,19362,0,1,1 +1774057814.624528,0.50,4,3992.50,48.33,1769.49,1892.23,0.00,3518492395732.601562,0.000000,70,0,0.000000,0.000030,21711860,14439106,0,0,19365,0,1,1 +1774057819.624612,0.40,4,3992.50,48.33,1769.52,1892.20,0.00,1.958756,0.000195,238,2,0.000000,0.000664,21711860,14439112,0,0,19367,0,1,1 +1774057824.624610,0.50,4,3992.50,48.34,1769.05,1892.67,0.00,3518438172933.250488,3518438172935.259277,11,0,0.000000,0.000030,21711860,14439115,0,0,19370,0,1,1 +1774057829.629123,0.65,4,3992.50,48.38,1767.58,1894.14,0.00,0.049955,0.000000,70,0,0.000000,0.000020,21711860,14439117,0,0,19372,0,1,1 +1774057834.628599,0.50,4,3992.50,48.38,1767.58,1894.14,0.00,3518805657393.446289,0.000000,11,0,0.002218,0.005849,21711934,14439238,0,0,19375,0,1,1 +1774057839.625818,0.50,4,3992.50,48.38,1767.58,1894.12,0.00,0.000000,0.000000,11,0,0.002290,0.006360,21712004,14439360,0,0,19377,0,1,1 +1774057844.626093,0.60,4,3992.50,48.38,1767.59,1894.12,0.00,21204.043650,35950.368920,1974894,644868,0.001844,0.005098,21712061,14439459,0,0,19380,0,1,1 +1774057849.624885,17.83,4,3992.50,54.78,1523.43,2144.75,0.00,0.000000,0.007033,1974894,644897,15.031178,0.021086,21713820,14440556,0,0,19382,0,1,1 +1774057854.627146,35.91,4,3992.50,54.54,1537.50,2135.34,0.00,3516847166914.557617,3516847152173.901367,199,0,116.308961,0.069826,21725639,14445685,0,0,19385,0,1,1 +1774057859.628542,28.74,4,3992.50,54.57,1537.86,2136.37,0.00,3517455155101.467773,0.000000,11,0,121.684677,0.066578,21738072,14450621,0,0,19387,0,1,1 +1774057864.628666,3.84,4,3992.50,55.01,1520.41,2153.87,0.00,0.176949,0.000000,199,0,12.323794,0.005648,21739380,14451032,0,0,19390,0,1,1 +1774057869.628536,0.46,4,3992.50,55.01,1520.42,2153.86,0.00,3518528566773.553711,0.000000,11,0,0.000447,0.000020,21739391,14451034,0,0,19392,0,1,1 +1774057874.629297,0.51,4,3992.50,54.84,1527.01,2147.28,0.00,0.176926,0.000000,199,0,0.000278,0.000030,21739401,14451037,0,0,19395,0,1,1 +1774057879.624996,0.61,4,3992.50,54.91,1524.59,2149.71,0.00,1.319983,0.022089,226,83,0.000168,0.000020,21739402,14451039,0,0,19397,0,1,1 +1774057884.628736,0.61,4,3992.50,55.23,1511.71,2162.54,0.00,0.512605,3515807254971.590820,238,2,0.000000,0.000673,21739402,14451046,0,0,19400,0,1,1 +1774057889.625046,0.46,4,3992.50,55.26,1510.53,2163.73,0.00,3521036068702.577637,3521036068704.537598,70,0,0.000447,0.000020,21739413,14451048,0,0,19402,0,1,1 +1774057894.628867,0.91,4,3992.50,55.26,1510.57,2163.72,0.00,0.000000,0.000000,70,0,0.006746,0.009412,21739568,14451233,0,0,19405,0,1,1 +1774057899.625143,1.11,4,3992.50,55.26,1510.58,2163.71,0.00,1.960249,0.000195,238,2,0.005327,0.007038,21739685,14451371,0,0,19407,0,1,1 +1774057904.627543,0.91,4,3992.50,55.26,1510.59,2163.71,0.00,3516748707401.035156,3516748707402.866699,199,0,0.006635,0.008792,21739830,14451544,0,0,19410,0,1,1 +1774057909.625188,0.91,4,3992.50,55.26,1510.59,2163.71,0.00,21215.029776,35969.559970,1974894,645120,0.006616,0.008790,21739973,14451716,0,0,19412,0,1,1 +1774057914.625887,13.48,4,3992.50,54.70,1532.82,2141.43,0.00,3517944621254.666504,3517944606509.329590,11,0,51.881768,0.049457,21745901,14455065,0,0,19415,0,1,1 +1774057919.624601,31.27,4,3992.50,54.59,1536.96,2137.30,0.00,0.176999,0.000000,199,0,130.614906,0.075400,21759146,14460612,0,0,19417,0,1,1 +1774057924.625017,5.04,4,3992.50,55.88,1486.52,2187.71,0.00,1.831684,0.000195,238,2,14.069066,0.005896,21760599,14461081,0,0,19420,0,1,1 +1774057929.625255,0.61,4,3992.50,55.91,1485.12,2189.18,0.00,3518269654808.646973,0.021874,226,83,0.000278,0.000020,21760609,14461083,0,0,19422,0,1,1 +1774057934.625166,0.51,4,3992.50,55.92,1484.87,2189.43,0.00,3518499965550.789551,3518499965552.263672,11,0,0.000278,0.000030,21760619,14461086,0,0,19425,0,1,1 +1774057939.628599,0.51,4,3992.50,55.92,1484.87,2189.43,0.00,0.176832,0.000000,199,0,0.000000,0.000020,21760619,14461088,0,0,19427,0,1,1 +1774057944.624535,0.46,4,3992.50,55.92,1484.87,2189.43,0.00,1.833326,0.000195,238,2,0.000000,0.000030,21760619,14461091,0,0,19430,0,1,1 +1774057949.628465,0.50,4,3992.50,55.92,1484.87,2189.43,0.00,3515673932061.812988,3515673932063.819824,11,0,0.000278,0.000663,21760629,14461097,0,0,19432,0,1,1 +1774057954.625100,0.61,4,3992.50,55.92,1484.78,2189.47,0.00,2.010142,0.000195,238,2,0.002294,0.006079,21760695,14461210,0,0,19435,0,1,1 +1774057959.624695,0.66,4,3992.50,55.92,1484.78,2189.46,0.00,3518722005091.605957,3518722005093.614746,11,0,0.002289,0.006357,21760765,14461332,0,0,19437,0,1,1 +1774057964.627306,0.76,4,3992.50,55.92,1484.84,2189.45,0.00,2.007741,0.000195,238,2,0.002445,0.006539,21760847,14461467,0,0,19440,0,1,1 +1774057969.628528,1.42,4,3992.50,55.91,1485.31,2188.99,0.00,3517576731522.457520,3517576731524.465820,11,0,0.004319,0.007643,21760930,14461586,0,0,19442,0,1,1 +1774057974.625179,13.66,4,3992.50,54.62,1535.80,2138.48,0.00,0.050034,0.000000,70,0,53.526425,0.043146,21766902,14464402,0,0,19445,0,1,1 +1774057979.625865,28.79,4,3992.50,54.50,1540.64,2133.62,0.00,0.000000,0.000000,70,0,119.175530,0.088026,21779614,14470908,0,0,19447,0,1,1 +1774057984.629026,4.90,4,3992.50,56.05,1479.77,2194.50,0.00,1.444887,0.022056,226,83,12.862136,0.006756,21781021,14471440,0,0,19450,0,1,1 +1774057989.628835,0.61,4,3992.50,56.07,1479.07,2195.23,0.00,3518571743583.462891,3518571743584.937012,11,0,0.000447,0.000020,21781032,14471442,0,0,19452,0,1,1 +1774057994.628186,0.55,4,3992.50,56.03,1480.52,2193.78,0.00,21208.057440,35957.492740,1974921,645292,0.000251,0.000030,21781041,14471445,0,0,19455,0,1,1 +1774057999.628514,0.35,4,3992.50,56.03,1480.52,2193.78,0.00,4.064479,0.023827,1975684,645379,0.000431,0.000020,21781057,14471447,0,0,19457,0,1,1 +1774058004.624536,0.56,4,3992.50,56.04,1480.28,2194.02,0.00,3521238816268.148438,3521238801510.919922,238,2,0.000037,0.000030,21781059,14471450,0,0,19460,0,1,1 +1774058009.624802,0.76,4,3992.50,56.05,1479.94,2194.36,0.00,0.000000,0.000000,238,2,0.000636,0.000020,21781082,14471452,0,0,19462,0,1,1 +1774058014.628896,4.49,4,3992.50,55.47,1502.37,2171.89,0.00,3515558544391.159668,3515558544393.166992,11,0,11.213888,0.017341,21782371,14472226,0,0,19465,0,1,1 +1774058019.629470,6.05,4,3992.50,55.52,1500.38,2173.84,0.00,2.008559,0.000195,238,2,15.822466,0.015102,21784038,14473040,0,0,19467,0,1,1 +1774058024.628867,7.32,4,3992.50,55.47,1502.34,2171.92,0.00,3518861670866.466797,3518861670868.476074,11,0,20.092581,0.014274,21786080,14473739,0,0,19470,0,1,1 +1774058029.628664,5.15,4,3992.50,55.60,1497.43,2176.81,0.00,2.008870,0.000195,238,2,16.166621,0.010191,21787746,14474158,0,0,19472,0,1,1 +1774058034.629227,17.42,4,3992.50,55.36,1506.83,2167.43,0.00,3518040889615.132812,0.021873,226,83,73.958323,0.039334,21795672,14476689,0,0,19475,0,1,1 +1774058039.627464,28.81,4,3992.50,55.39,1503.55,2168.62,0.00,3519678550935.054688,3519678550936.529297,11,0,121.121976,0.035809,21806956,14479217,0,0,19477,0,1,1 +1774058044.629265,3.49,4,3992.50,55.64,1495.99,2178.27,0.00,0.000000,0.000000,11,0,11.078331,0.003074,21808039,14479442,0,0,19480,0,1,1 +1774058049.628751,0.61,4,3992.50,56.06,1479.28,2194.98,0.00,2.008995,0.000195,238,2,0.002709,0.000020,21808049,14479444,0,0,19482,0,1,1 +1774058054.629065,0.61,4,3992.50,56.12,1477.00,2197.29,0.00,3518216934726.371582,3518216934728.203613,199,0,0.000000,0.000030,21808049,14479447,0,0,19485,0,1,1 +1774058059.625422,0.46,4,3992.50,55.92,1484.88,2189.42,0.00,3521002212517.662598,0.000000,70,0,0.002947,0.000020,21808073,14479449,0,0,19487,0,1,1 +1774058064.627751,0.46,4,3992.50,55.93,1484.39,2189.91,0.00,0.000000,0.000000,70,0,0.000037,0.000030,21808075,14479452,0,0,19490,0,1,1 +1774058069.624417,0.56,4,3992.50,55.93,1484.39,2189.91,0.00,0.127038,0.000000,199,0,0.000037,0.000020,21808077,14479454,0,0,19492,0,1,1 +1774058074.628945,15.58,4,3992.50,50.34,1703.33,1970.97,0.00,1.830179,0.000195,238,2,113.872533,0.030324,21818378,14481563,0,0,19495,0,1,1 +1774058079.624582,0.55,4,3992.50,49.25,1745.92,1928.38,0.00,0.000000,0.000000,238,2,0.738970,0.007529,21818530,14481730,0,0,19497,0,1,1 +1774058084.627296,0.95,4,3992.50,49.27,1745.15,1929.10,0.00,3516527959960.077637,3516527959962.035645,70,0,0.001962,0.005247,21818596,14481839,0,0,19500,0,1,1 +1774058089.624550,1.00,4,3992.50,48.85,1761.72,1912.57,0.00,3520371271288.477539,0.000000,11,0,0.006277,0.008972,21818733,14482012,0,0,19502,0,1,1 +1774058094.629251,5.81,4,3992.50,48.88,1760.35,1913.95,0.00,21185.531657,35919.483416,1974942,645669,4.028204,0.027204,21820125,14483127,0,0,19505,0,1,1 +1774058099.628729,22.67,4,3992.50,49.83,1723.46,1950.77,0.00,3518804916164.440918,3518804901413.620117,226,83,32.196222,0.142890,21830516,14490897,0,0,19507,0,1,1 +1774058104.628193,2.86,4,3992.50,48.90,1759.69,1914.54,0.00,3518814050642.354980,3518814050643.829102,11,0,4.027388,0.016383,21831908,14491927,0,0,19510,0,1,1 +1774058109.628708,0.60,4,3992.50,48.64,1769.77,1904.46,0.00,0.000000,0.000000,11,0,0.000765,0.000020,21831918,14491929,0,0,19512,0,1,1 +1774058114.629325,0.55,4,3992.50,48.63,1770.13,1904.09,0.00,0.049994,0.000000,70,0,0.000850,0.000030,21831934,14491932,0,0,19515,0,1,1 +1774058119.629334,0.50,4,3992.50,48.63,1770.14,1904.09,0.00,3518430696971.616211,0.000000,11,0,0.000292,0.000020,21831952,14491934,0,0,19517,0,1,1 +1774058124.625391,0.80,4,3992.50,48.65,1769.42,1904.81,0.00,0.050039,0.000000,70,0,0.000122,0.000030,21831960,14491937,0,0,19520,0,1,1 +1774058129.629229,0.65,4,3992.50,48.65,1769.42,1904.81,0.00,0.126856,0.000000,199,0,0.000844,0.000020,21831975,14491939,0,0,19522,0,1,1 +1774058134.628474,1.10,4,3992.50,48.62,1770.72,1903.50,0.00,3518968738554.075195,0.000000,11,0,0.008007,0.018159,21832203,14492293,0,0,19525,0,1,1 +1774058139.624750,1.26,4,3992.50,48.62,1770.53,1903.70,0.00,0.000000,0.000000,11,0,0.008278,0.019237,21832442,14492666,0,0,19527,0,1,1 +1774058144.627782,1.20,4,3992.50,48.65,1769.59,1904.64,0.00,2.007572,0.000195,238,2,0.008053,0.019190,21832674,14493029,0,0,19530,0,1,1 +1774058149.624586,2.06,4,3992.50,48.45,1777.31,1896.92,0.00,21217.023806,35977.727156,1974943,647215,0.018975,0.022845,21833053,14493442,0,0,19532,0,1,1 +1774058154.624531,0.60,4,3992.50,48.49,1775.61,1898.62,0.00,4.064791,0.098341,1975706,647383,0.004524,0.008580,21833181,14493621,0,0,19535,0,1,1 +1774058159.626858,0.60,4,3992.50,48.49,1775.62,1898.61,0.00,0.000000,0.037873,1975706,647426,0.005020,0.010286,21833316,14493821,0,0,19537,0,1,1 +1774058164.628641,0.35,4,3992.50,48.49,1775.88,1898.35,0.00,3517182552382.309570,3517182537642.236328,11,0,0.000141,0.000030,21833325,14493824,0,0,19540,0,1,1 +1774058169.625402,0.35,4,3992.50,48.49,1775.66,1898.57,0.00,1.496770,0.022085,226,83,0.000094,0.000020,21833331,14493826,0,0,19542,0,1,1 +1774058174.624510,0.40,4,3992.50,48.50,1775.45,1898.78,0.00,21207.760343,35961.374300,1974943,647442,0.000042,0.000030,21833334,14493829,0,0,19545,0,1,1 +1774058179.629147,0.50,4,3992.50,48.50,1775.45,1898.78,0.00,3515176734009.033691,3515176719271.722656,226,83,0.000075,0.000020,21833339,14493831,0,0,19547,0,1,1 +1774058184.628702,0.40,4,3992.50,48.50,1775.45,1898.78,0.00,0.513034,3518750386816.355957,238,2,0.000000,0.000030,21833339,14493834,0,0,19550,0,1,1 +1774058189.628797,0.30,4,3992.50,48.50,1775.46,1898.78,0.00,3518370523798.801270,0.021875,226,83,0.000089,0.000020,21833345,14493836,0,0,19552,0,1,1 +1774058194.624419,0.65,4,3992.50,48.50,1775.47,1898.76,0.00,3521520781365.528809,3521520781367.003906,11,0,0.005206,0.010646,21833487,14494042,0,0,19555,0,1,1 +1774058199.628584,0.70,4,3992.50,48.50,1775.25,1898.99,0.00,0.000000,0.000000,11,0,0.004609,0.009086,21833612,14494223,0,0,19557,0,1,1 +1774058204.629326,0.65,4,3992.50,48.50,1775.26,1898.97,0.00,0.000000,0.000000,11,0,0.005065,0.010320,21833750,14494426,0,0,19560,0,1,1 +1774058209.626424,0.60,4,3992.50,48.50,1775.30,1898.93,0.00,21217.785306,35976.022205,1974943,647611,0.004338,0.009039,21833864,14494594,0,0,19562,0,1,1 +1774058214.629066,0.60,4,3992.50,48.50,1775.32,1898.91,0.00,3516579544686.825684,3516579529944.941895,11,0,0.005038,0.010297,21834000,14494795,0,0,19565,0,1,1 +1774058219.628615,0.65,4,3992.50,48.50,1775.34,1898.89,0.00,1.495936,0.022072,226,83,0.005048,0.010304,21834137,14494996,0,0,19567,0,1,1 +1774058224.624516,0.55,4,3992.50,48.50,1775.36,1898.87,0.00,0.513409,3521323774608.586914,238,2,0.004339,0.008406,21834251,14495161,0,0,19570,0,1,1 +1774058229.629488,1.40,4,3992.50,48.48,1775.96,1898.25,0.00,21186.458100,35919.561348,1975706,647824,0.009179,1.413827,21834601,14495669,0,0,19572,0,1,1 +1774058234.628874,27.67,4,3992.50,48.79,1758.48,1910.30,0.00,0.000000,82.553119,1975706,648364,0.057513,114.784830,21838774,14507686,0,0,19575,0,1,1 +1774058239.628464,22.17,4,3992.50,48.99,1744.53,1917.93,0.00,3518725187591.082031,3518725172759.570801,238,2,0.028223,88.936573,21840754,14516944,0,0,19577,0,1,1 +1774058244.628468,13.44,4,3992.50,53.26,1577.45,2085.32,0.00,21226.889001,36127.746018,1975820,648977,17.235704,0.026322,21842913,14518206,0,0,19580,0,1,1 +1774058249.628005,3.42,4,3992.50,48.84,1750.45,1912.30,0.00,3518762753438.267090,3518762738536.555176,226,83,22.841020,0.022512,21845391,14519135,0,0,19582,0,1,1 +1774058254.629166,11.14,4,3992.50,49.29,1731.77,1929.82,0.00,21222.492402,36167.562066,1975821,649487,0.020067,40.056488,21846653,14523608,0,0,19585,0,1,1 +1774058259.628728,1.05,4,3992.50,49.02,1742.34,1919.25,0.00,3518745134265.834961,18.643135,1975058,649581,0.004148,0.010709,21846773,14523810,0,0,19587,0,1,1 +1774058264.629055,0.75,4,3992.50,48.61,1758.27,1903.32,0.00,4.064480,0.086322,1975821,649705,0.003204,0.008875,21846871,14523979,0,0,19590,0,1,1 +1774058269.624500,0.60,4,3992.50,48.65,1756.75,1904.84,0.00,3521645228262.035156,3521645213282.547363,70,0,0.003003,0.008290,21846964,14524139,0,0,19592,0,1,1 +1774058274.625049,0.90,4,3992.50,48.89,1747.40,1914.19,0.00,3518051469315.355957,0.000000,11,0,0.003458,0.010208,21847071,14524328,0,0,19595,0,1,1 +1774058279.628390,0.65,4,3992.50,48.90,1747.17,1914.43,0.00,21214.734257,36170.621835,1975821,649718,0.002999,0.008239,21847164,14524485,0,0,19597,0,1,1 +1774058284.624584,0.65,4,3992.50,48.90,1746.93,1914.66,0.00,3521117805582.912109,5.994016,1975058,649668,0.003207,0.008920,21847262,14524657,0,0,19600,0,1,1 +1774058289.629279,0.60,4,3992.50,48.71,1754.57,1907.02,0.00,3515136479427.368652,3515136464463.473145,238,2,0.003430,0.009515,21847367,14524839,0,0,19602,0,1,1 +1774058294.624633,0.65,4,3992.50,48.74,1753.16,1908.43,0.00,21246.646319,36234.484988,1975821,649758,0.002875,0.007765,21847461,14524994,0,0,19605,0,1,1 +1774058299.628150,0.70,4,3992.50,48.74,1753.16,1908.43,0.00,3515963885097.958008,3515963885102.001465,1975058,649676,0.003088,0.008377,21847561,14525161,0,0,19607,0,1,1 +1774058304.628673,0.55,4,3992.50,48.74,1753.17,1908.42,0.00,3518069542355.212891,3518069527380.650879,199,0,0.002642,0.007100,21847646,14525304,0,0,19610,0,1,1 +1774058309.624591,0.70,4,3992.50,48.79,1751.34,1910.25,0.00,1.833333,0.000195,238,2,0.003449,0.009532,21847752,14525486,0,0,19612,0,1,1 +1774058314.629438,1.75,4,3992.50,48.79,1751.35,1910.24,0.00,0.000000,0.000000,238,2,0.006270,0.011469,21847904,14525699,0,0,19615,0,1,1 +1774058319.628011,13.75,4,3992.50,54.73,1525.91,2142.65,0.00,21232.965192,36211.272271,1975821,649866,8.421789,0.019272,21849015,14526553,0,0,19617,0,1,1 +1774058324.628377,35.31,4,3992.50,54.79,1528.46,2145.20,0.00,3518179037045.805176,3518179022074.704102,199,0,119.247910,0.037445,21861302,14528848,0,0,19620,0,1,1 +1774058329.628990,28.19,4,3992.50,54.69,1533.69,2141.34,0.00,1.318686,0.022068,226,83,119.063344,0.039682,21873466,14531626,0,0,19622,0,1,1 +1774058334.625195,27.79,4,3992.50,54.75,1531.32,2143.60,0.00,0.513378,3521109621931.826172,238,2,118.255147,0.033520,21885644,14533971,0,0,19625,0,1,1 +1774058339.629071,28.07,4,3992.50,54.61,1536.71,2138.30,0.00,21210.462498,36173.037257,1975821,650016,120.074539,0.026039,21898023,14535639,0,0,19627,0,1,1 +1774058344.627492,27.47,4,3992.50,54.76,1530.97,2144.02,0.00,3519548252022.777344,3519548237043.875488,238,2,118.602515,0.019668,21910261,14536914,0,0,19630,0,1,1 +1774058349.628383,28.05,4,3992.50,54.70,1533.28,2141.79,0.00,3517810920340.419922,0.021871,226,83,119.761695,0.075443,21922827,14542747,0,0,19632,0,1,1 +1774058354.628636,28.10,4,3992.50,54.79,1530.01,2145.00,0.00,3518258926036.239746,3518258926037.663574,70,0,119.577893,0.070246,21935410,14547915,0,0,19635,0,1,1 +1774058359.628478,28.20,4,3992.50,54.54,1539.74,2135.24,0.00,21225.468398,36202.409381,1975058,650004,118.772470,0.031811,21947712,14550161,0,0,19637,0,1,1 +1774058364.624622,4.72,4,3992.50,49.37,1742.01,1933.05,0.00,3521152721765.788574,3521152706776.336426,226,83,63.745244,0.022412,21954453,14551343,0,0,19640,0,1,1 +1774058369.629405,5.87,4,3992.50,49.00,1756.41,1918.64,0.00,21207.265350,36166.954117,1975832,650319,6.036771,0.035460,21956541,14552927,0,0,19642,0,1,1 +1774058374.626450,21.33,4,3992.50,49.63,1731.70,1943.29,0.00,3520517735481.824707,3520517720498.971191,226,83,30.196933,0.131505,21966109,14559949,0,0,19645,0,1,1 +1774058379.628746,5.02,4,3992.50,49.41,1740.44,1934.53,0.00,21217.809795,36185.431253,1975832,651235,4.036942,0.026507,21967583,14561059,0,0,19647,0,1,1 +1774058384.629239,1.45,4,3992.50,49.47,1738.15,1936.76,0.00,3518089777696.018066,3518089762724.299805,199,0,0.005726,0.011683,21967734,14561283,0,0,19650,0,1,1 +1774058389.624530,0.75,4,3992.50,49.46,1738.49,1936.48,0.00,1.833563,0.000195,238,2,0.005027,0.010300,21967869,14561483,0,0,19652,0,1,1 +1774058394.624525,0.65,4,3992.50,49.44,1739.34,1935.63,0.00,3518440771655.812500,0.021875,226,83,0.004336,0.008400,21967983,14561648,0,0,19655,0,1,1 +1774058399.627968,0.65,4,3992.50,49.44,1739.36,1935.60,0.00,3516016085830.676758,3516016085832.099609,70,0,0.004333,0.008384,21968097,14561812,0,0,19657,0,1,1 +1774058404.624511,2.11,4,3992.50,48.77,1765.40,1909.49,0.00,1.960144,0.000195,238,2,0.004339,0.008405,21968211,14561977,0,0,19660,0,1,1 +1774058409.624630,0.95,4,3992.50,48.79,1764.82,1910.08,0.00,21222.481840,36202.141326,1975078,651663,0.005169,0.011098,21968358,14562192,0,0,19662,0,1,1 +1774058414.628605,0.80,4,3992.50,48.79,1764.84,1910.06,0.00,3515642349022.637207,3515642334056.350586,199,0,0.005031,0.010280,21968494,14562392,0,0,19665,0,1,1 +1774058419.628542,0.70,4,3992.50,48.79,1764.85,1910.05,0.00,3518481897825.303711,0.000000,11,0,0.004336,0.008402,21968608,14562557,0,0,19667,0,1,1 +1774058424.629006,0.90,4,3992.50,48.79,1764.62,1910.28,0.00,1.495662,0.022068,226,83,0.005035,0.010299,21968744,14562758,0,0,19670,0,1,1 +1774058429.629474,0.95,4,3992.50,48.79,1764.64,1910.26,0.00,0.000000,0.000000,226,83,0.005097,0.010304,21968884,14562959,0,0,19672,0,1,1 +1774058434.624612,0.80,4,3992.50,48.79,1764.65,1910.25,0.00,0.513488,3521861415420.899414,238,2,0.004361,0.008441,21969000,14563127,0,0,19675,0,1,1 +1774058439.625854,0.85,4,3992.50,48.79,1764.68,1910.21,0.00,0.000000,0.000000,238,2,0.005021,0.010288,21969135,14563327,0,0,19677,0,1,1 +1774058444.628943,0.75,4,3992.50,48.79,1764.69,1910.20,0.00,3516264939166.159180,3516264939168.116699,70,0,0.004907,0.010269,21969270,14563526,0,0,19680,0,1,1 +1774058449.629464,0.85,4,3992.50,48.79,1764.71,1910.18,0.00,3518070269932.311523,0.000000,11,0,0.004460,0.008414,21969385,14563692,0,0,19682,0,1,1 +1774058454.629400,0.80,4,3992.50,48.79,1764.72,1910.17,0.00,0.176955,0.000000,199,0,0.005010,0.010301,21969519,14563893,0,0,19685,0,1,1 +1774058459.629043,0.75,4,3992.50,48.79,1764.50,1910.40,0.00,3518689015417.557617,0.000000,11,0,0.004586,0.009019,21969642,14564069,0,0,19687,0,1,1 +1774058464.629186,0.85,4,3992.50,48.79,1764.50,1910.39,0.00,21228.450246,36202.358861,1975841,652148,0.004768,0.009679,21969768,14564259,0,0,19690,0,1,1 +1774058469.624677,0.75,4,3992.50,48.79,1764.53,1910.37,0.00,3521613441490.997070,0.025707,1975078,652103,0.005014,0.010300,21969902,14564459,0,0,19692,0,1,1 +1774058474.629391,2.50,4,3992.50,48.63,1771.05,1903.85,0.00,3515123013681.845215,3515122998717.524902,11,0,0.014732,7.817482,21970753,14565734,0,0,19695,0,1,1 +1774058479.624532,28.62,4,3992.50,48.81,1758.03,1910.84,0.00,21249.709344,36329.296527,1975841,652826,0.034855,118.290073,21973269,14578194,0,0,19697,0,1,1 +1774058484.628642,20.00,4,3992.50,48.68,1757.38,1905.97,0.00,3515547915615.731934,3515547900563.168945,11,0,0.052932,79.068239,21977223,14586784,0,0,19700,0,1,1 +1774058489.628914,1.65,4,3992.50,48.45,1766.32,1897.08,0.00,1.495719,0.022069,226,83,0.004403,0.006063,21977309,14586903,0,0,19702,0,1,1 +1774058494.628593,15.23,4,3992.50,48.22,1775.65,1887.75,0.00,0.513021,3518663489206.040039,238,2,40.069623,0.031195,21981850,14588598,0,0,19705,0,1,1 +1774058499.629380,5.32,4,3992.50,48.50,1764.57,1898.80,0.00,3517883615719.026855,3517883615720.858887,199,0,0.017598,18.237353,21982917,14590907,0,0,19707,0,1,1 +1774058504.629381,6.69,4,3992.50,48.45,1764.82,1897.10,0.00,21248.258438,36444.726668,1975998,653977,0.014616,21.843056,21983806,14593377,0,0,19710,0,1,1 +1774058509.628941,0.80,4,3992.50,48.30,1771.04,1890.89,0.00,3518746860714.125977,0.048832,1975235,653963,0.002772,0.007657,21983892,14593524,0,0,19712,0,1,1 +1774058514.626511,0.85,4,3992.50,48.31,1770.46,1891.46,0.00,3520147318856.152344,3520147303648.356934,11,0,0.003435,0.009539,21983997,14593707,0,0,19715,0,1,1 +1774058519.624625,1.81,4,3992.50,48.39,1767.22,1894.66,0.00,1.496365,0.022079,226,83,0.003460,0.009559,21984104,14593891,0,0,19717,0,1,1 +1774058524.624516,0.65,4,3992.50,48.27,1772.10,1889.83,0.00,0.000000,0.000000,226,83,0.002747,0.007633,21984188,14594038,0,0,19720,0,1,1 +1774058529.624681,0.85,4,3992.50,48.30,1770.89,1891.04,0.00,3518321429367.435059,3518321429368.909180,11,0,0.003441,0.009532,21984294,14594221,0,0,19722,0,1,1 +1774058534.627218,0.85,4,3992.50,48.27,1772.08,1889.85,0.00,0.176863,0.000000,199,0,0.003406,0.009529,21984397,14594404,0,0,19725,0,1,1 +1774058539.629402,0.85,4,3992.50,48.31,1770.61,1891.27,0.00,3516901484215.340820,0.000000,70,0,0.002859,0.008419,21984490,14594564,0,0,19727,0,1,1 +1774058544.629128,0.80,4,3992.50,48.31,1770.66,1891.27,0.00,21249.553640,36451.039251,1975998,654120,0.003446,0.009566,21984596,14594749,0,0,19730,0,1,1 +1774058549.624536,0.80,4,3992.50,48.43,1765.83,1896.05,0.00,3521671475224.260742,3521671460007.674805,238,2,0.002917,0.007756,21984691,14594905,0,0,19732,0,1,1 +1774058554.625876,0.90,4,3992.50,48.43,1765.88,1896.05,0.00,3517494191200.493164,3517494191202.500977,11,0,0.002741,0.007639,21984775,14595053,0,0,19735,0,1,1 +1774058559.628834,25.15,4,3992.50,51.07,1663.73,1999.66,0.00,0.000000,0.000000,11,0,0.003406,0.009519,21984878,14595235,0,0,19737,0,1,1 +1774058564.628180,17.35,4,3992.50,48.97,1745.70,1917.28,0.00,0.050007,0.000000,70,0,0.003685,0.007070,21984972,14595374,0,0,19740,0,1,1 +1774058569.627979,36.89,4,3992.50,54.95,1519.61,2151.52,0.00,1.445859,0.022071,226,83,84.129711,0.042751,21993893,14598124,0,0,19742,0,1,1 +1774058574.628361,28.69,4,3992.50,55.23,1510.00,2162.57,0.00,21299.496682,36528.826685,1978961,655122,119.366236,0.046697,22006348,14601425,0,0,19745,0,1,1 +1774058579.629141,27.91,4,3992.50,54.75,1529.02,2143.53,0.00,3517888865500.405762,3517888850273.706055,70,0,118.959216,0.060294,22018755,14606066,0,0,19747,0,1,1 +1774058584.627917,28.49,4,3992.50,54.81,1526.45,2146.07,0.00,0.126984,0.000000,199,0,119.423333,0.100827,22031590,14613758,0,0,19750,0,1,1 +1774058589.624505,28.67,4,3992.50,54.59,1535.04,2137.50,0.00,1.319748,0.022085,226,83,119.077567,0.105523,22044356,14621657,0,0,19752,0,1,1 +1774058594.628402,28.43,4,3992.50,54.72,1530.27,2142.29,0.00,21284.539956,36503.350141,1978961,655162,119.701727,0.100298,22057218,14629346,0,0,19755,0,1,1 +1774058599.625453,28.41,4,3992.50,54.74,1529.11,2143.39,0.00,3520512785457.008301,3520512770218.650391,199,0,118.666189,0.108753,22069961,14637536,0,0,19757,0,1,1 +1774058604.629293,28.84,4,3992.50,54.86,1524.56,2147.98,0.00,21286.101946,36503.955544,1978961,655275,120.099868,0.088372,22082820,14644103,0,0,19760,0,1,1 +1774058609.628239,14.45,4,3992.50,48.69,1766.19,1906.47,0.00,3519178762303.744629,3519178747069.698730,226,83,106.187332,0.069813,22094022,14649215,0,0,19762,0,1,1 +1774058614.628911,2.01,4,3992.50,48.73,1764.86,1907.80,0.00,3517964421903.572754,3517964421904.996582,70,0,0.011977,0.010574,22094255,14649428,0,0,19765,0,1,1 +1774058619.625995,15.02,4,3992.50,48.86,1759.68,1912.93,0.00,1.446645,0.022083,226,83,18.126743,0.086919,22100254,14653920,0,0,19767,0,1,1 +1774058624.629087,16.05,4,3992.50,49.41,1737.88,1934.63,0.00,0.512671,3516262759728.340332,238,2,22.129915,0.104291,22107573,14659441,0,0,19770,0,1,1 +1774058629.628908,0.85,4,3992.50,49.42,1737.69,1934.83,0.00,21297.460432,36534.172531,1978214,656380,0.004357,0.008398,22107689,14659606,0,0,19772,0,1,1 +1774058634.624505,1.10,4,3992.50,48.95,1755.93,1916.55,0.00,3521538539668.641113,3521538524419.579102,226,83,0.003733,0.008170,22107792,14659764,0,0,19775,0,1,1 +1774058639.628976,22.82,4,3992.50,49.29,1738.17,1929.84,0.00,3515293700376.902344,3515293700378.197754,199,0,0.036157,93.263560,22110181,14669939,0,0,19777,0,1,1 +1774058644.629306,27.69,4,3992.50,48.54,1759.65,1900.51,0.00,21297.126434,36701.559333,1978215,657530,0.031578,111.757740,22112361,14681652,0,0,19780,0,1,1 +1774058649.629134,10.03,4,3992.50,53.67,1559.18,2101.45,0.00,3518557870600.894531,3518557855195.094238,11,0,7.423114,0.022930,22113623,14682626,0,0,19782,0,1,1 +1774058654.628547,5.32,4,3992.50,48.42,1764.75,1895.88,0.00,21324.655596,36742.858777,1979090,658009,32.654288,0.018110,22117063,14683701,0,0,19785,0,1,1 +1774058659.629260,1.05,4,3992.50,48.42,1764.79,1895.87,0.00,3517935605438.007812,0.019919,1978327,657985,0.005149,0.010746,22117201,14683897,0,0,19787,0,1,1 +1774058664.629283,0.65,4,3992.50,48.40,1765.73,1894.91,0.00,3518421007754.317383,3518420992333.861328,70,0,0.005022,0.010300,22117336,14684098,0,0,19790,0,1,1 +1774058669.626179,0.65,4,3992.50,48.42,1764.80,1895.86,0.00,1.960006,0.000195,238,2,0.005051,0.010284,22117473,14684297,0,0,19792,0,1,1 +1774058674.628556,0.55,4,3992.50,48.41,1765.24,1895.43,0.00,3516765505254.678223,3516765505256.686035,11,0,0.004978,0.009973,22117588,14684469,0,0,19795,0,1,1 +1774058679.629270,0.85,4,3992.50,48.82,1749.38,1911.29,0.00,1.495587,0.022067,226,83,0.005030,0.010297,22117724,14684670,0,0,19797,0,1,1 +1774058684.628494,0.60,4,3992.50,48.81,1749.70,1910.97,0.00,21323.963124,36744.628546,1979090,658420,0.004133,0.007798,22117833,14684825,0,0,19800,0,1,1 +1774058689.624552,0.65,4,3992.50,48.82,1749.24,1911.42,0.00,0.000000,0.012901,1979090,658430,0.004568,0.009030,22117954,14685001,0,0,19802,0,1,1 +1774058694.628684,0.60,4,3992.50,48.82,1749.36,1911.30,0.00,3515531793185.123535,3515531777781.041992,11,0,0.005111,0.010342,22118095,14685206,0,0,19805,0,1,1 +1774058699.624526,0.55,4,3992.50,48.80,1750.21,1910.45,0.00,0.177100,0.000000,199,0,0.004339,0.008409,22118209,14685371,0,0,19807,0,1,1 +1774058704.626609,0.65,4,3992.50,48.80,1750.12,1910.54,0.00,3516972239418.893066,0.000000,11,0,0.005108,0.010336,22118350,14685575,0,0,19810,0,1,1 +1774058709.624571,0.70,4,3992.50,48.59,1758.27,1902.40,0.00,0.000000,0.000000,11,0,0.005024,0.010282,22118485,14685774,0,0,19812,0,1,1 +1774058714.624563,0.60,4,3992.50,48.60,1758.03,1902.64,0.00,21318.148077,36739.219262,1978328,658557,0.004336,0.008412,22118599,14685940,0,0,19815,0,1,1 +1774058719.624586,0.70,4,3992.50,48.60,1758.05,1902.62,0.00,3518420399072.321777,3518420383649.342285,238,2,0.005010,0.010278,22118733,14686139,0,0,19817,0,1,1 +1774058724.628380,10.45,4,3992.50,48.79,1749.14,1910.34,0.00,21299.940302,36747.337557,1978328,658804,0.028748,40.038459,22120621,14690647,0,0,19820,0,1,1 +1774058729.629247,1.05,4,3992.50,48.43,1763.51,1896.03,0.00,3517827491072.080078,3517827475617.648926,11,0,0.005059,0.012279,22120774,14690887,0,0,19822,0,1,1 +1774058734.629034,0.70,4,3992.50,48.46,1762.05,1897.50,0.00,0.000000,0.000000,11,0,0.003433,0.009534,22120879,14691070,0,0,19825,0,1,1 +1774058739.628772,0.65,4,3992.50,48.47,1761.84,1897.71,0.00,0.000000,0.000000,11,0,0.003256,0.009918,22120981,14691249,0,0,19827,0,1,1 +1774058744.629136,0.75,4,3992.50,48.47,1761.84,1897.71,0.00,0.176940,0.000000,199,0,0.002936,0.007883,22121069,14691403,0,0,19830,0,1,1 +1774058749.628749,0.65,4,3992.50,48.47,1761.85,1897.70,0.00,0.000000,0.000000,199,0,0.003433,0.009525,22121174,14691585,0,0,19832,0,1,1 +1774058754.628855,0.65,4,3992.50,48.49,1761.11,1898.43,0.00,0.000000,0.000000,199,0,0.003217,0.008875,22121273,14691754,0,0,19835,0,1,1 +1774058759.628403,1.76,4,3992.50,48.49,1760.88,1898.66,0.00,3518754898261.561035,0.000000,70,0,0.003001,0.008314,22121366,14691916,0,0,19837,0,1,1 +1774058764.628756,0.65,4,3992.50,48.49,1760.89,1898.65,0.00,21320.622416,36776.890036,1979091,659094,0.003471,0.009596,22121474,14692103,0,0,19840,0,1,1 +1774058769.624539,0.65,4,3992.50,48.49,1760.90,1898.65,0.00,3521406737041.320312,3521406721570.916504,70,0,0.002858,0.007731,22121567,14692256,0,0,19842,0,1,1 +1774058774.624734,0.60,4,3992.50,48.49,1760.91,1898.64,0.00,0.126948,0.000000,199,0,0.003589,0.009660,22121682,14692449,0,0,19845,0,1,1 +1774058779.624513,0.75,4,3992.50,48.49,1760.91,1898.64,0.00,3518592405549.409668,0.000000,11,0,0.003433,0.009525,22121787,14692631,0,0,19847,0,1,1 +1774058784.625338,0.70,4,3992.50,48.49,1760.91,1898.63,0.00,0.000000,0.000000,11,0,0.003353,0.008741,22121884,14692800,0,0,19850,0,1,1 +1774058789.629981,7.26,4,3992.50,55.19,1504.90,2160.87,0.00,0.049954,0.000000,70,0,1.207660,0.014115,22122234,14693181,0,0,19852,0,1,1 +1774058794.628598,40.22,4,3992.50,54.92,1519.96,2150.16,0.00,3519410441306.833984,0.000000,11,0,112.190316,0.042335,22133900,14696050,0,0,19855,0,1,1 +1774058799.624543,27.94,4,3992.50,54.73,1528.12,2142.85,0.00,21336.201172,36809.500347,1978387,659163,118.260380,0.028524,22146074,14698027,0,0,19857,0,1,1 +1774058804.626495,28.15,4,3992.50,55.01,1517.21,2153.76,0.00,3517064030805.948242,3517064015351.232422,11,0,119.520494,0.027010,22158363,14699890,0,0,19860,0,1,1 +1774058809.628648,28.21,4,3992.50,54.91,1521.23,2149.71,0.00,0.000000,0.000000,11,0,118.712083,0.021771,22170397,14701386,0,0,19862,0,1,1 +1774058814.629077,28.04,4,3992.50,54.98,1518.19,2152.71,0.00,21321.128488,36776.566334,1979150,659287,120.156744,0.030894,22182518,14703439,0,0,19865,0,1,1 +1774058819.626423,28.25,4,3992.50,54.99,1518.09,2152.90,0.00,3520306589345.594238,3520306573880.564941,70,0,118.227263,0.028676,22194507,14705321,0,0,19867,0,1,1 +1774058824.625727,28.28,4,3992.50,54.74,1527.86,2143.04,0.00,1.446002,0.022073,226,83,120.186499,0.037704,22206789,14708131,0,0,19870,0,1,1 +1774058829.624560,27.88,4,3992.50,54.97,1518.65,2152.31,0.00,0.513108,3519258299002.396973,238,2,118.204179,0.061619,22219037,14712772,0,0,19872,0,1,1 +1774058834.624600,8.08,4,3992.50,48.84,1758.79,1912.26,0.00,3518409386708.620605,0.021875,226,83,78.918284,0.039154,22227315,14715375,0,0,19875,0,1,1 +1774058839.624530,3.87,4,3992.50,48.96,1754.21,1916.81,0.00,21317.800776,36780.356717,1978401,659324,2.022274,0.021030,22228143,14716075,0,0,19877,0,1,1 +1774058844.628392,21.46,4,3992.50,48.70,1764.34,1906.57,0.00,3515721667353.597656,3515721651903.192871,226,83,32.170496,0.141941,22238534,14723735,0,0,19880,0,1,1 +1774058849.624895,5.52,4,3992.50,48.70,1764.33,1906.57,0.00,3520899695849.244141,3520899695850.718750,11,0,6.045132,0.026183,22240440,14725088,0,0,19882,0,1,1 +1774058854.624593,1.41,4,3992.50,48.69,1764.38,1906.50,0.00,0.050003,0.000000,70,0,0.010131,0.012216,22240671,14725345,0,0,19885,0,1,1 +1774058859.629285,0.75,4,3992.50,48.69,1764.40,1906.49,0.00,3515138741887.257324,0.000000,11,0,0.005030,0.010268,22240807,14725544,0,0,19887,0,1,1 +1774058864.628914,1.00,4,3992.50,48.97,1753.54,1917.36,0.00,2.008938,0.000195,238,2,0.005062,0.010312,22240945,14725746,0,0,19890,0,1,1 +1774058869.629020,0.55,4,3992.50,48.78,1760.96,1909.93,0.00,3518363015050.770508,0.021875,226,83,0.004361,0.008389,22241061,14725910,0,0,19892,0,1,1 +1774058874.624785,0.70,4,3992.50,48.78,1760.98,1909.91,0.00,3521419362308.572266,3521419362310.047363,11,0,0.005027,0.010954,22241196,14726115,0,0,19895,0,1,1 +1774058879.624480,1.55,4,3992.50,48.31,1779.30,1891.59,0.00,0.050003,0.000000,70,0,0.005048,0.010322,22241333,14726317,0,0,19897,0,1,1 +1774058884.624621,0.55,4,3992.50,48.39,1776.50,1894.40,0.00,1.958734,0.000195,238,2,0.004449,0.008524,22241456,14726490,0,0,19900,0,1,1 +1774058889.628973,0.65,4,3992.50,48.22,1783.15,1887.75,0.00,21302.516537,36749.520705,1979165,660971,0.005018,0.010282,22241591,14726690,0,0,19902,0,1,1 +1774058894.624568,0.80,4,3992.50,48.23,1782.64,1888.26,0.00,3521539386967.232422,3521539371494.985352,199,0,0.005014,0.010310,22241725,14726891,0,0,19905,0,1,1 +1774058899.629319,0.55,4,3992.50,48.23,1782.66,1888.24,0.00,3515097445201.407715,0.000000,11,0,0.004406,0.008422,22241844,14727058,0,0,19907,0,1,1 +1774058904.627076,0.70,4,3992.50,48.23,1782.68,1888.22,0.00,1.496472,0.022080,226,83,0.005025,0.010305,22241979,14727259,0,0,19910,0,1,1 +1774058909.624435,0.60,4,3992.50,48.19,1784.10,1886.82,0.00,3520296918378.338867,3520296918379.813477,11,0,0.005033,0.010304,22242115,14727460,0,0,19912,0,1,1 +1774058914.629212,0.75,4,3992.50,48.24,1782.14,1888.79,0.00,21302.710107,36746.513706,1979165,661076,0.006516,0.009399,22242274,14727651,0,0,19915,0,1,1 +1774058919.627614,0.65,4,3992.50,48.25,1781.94,1888.99,0.00,3519562268432.848633,3519562252969.166992,199,0,0.005024,0.010294,22242409,14727851,0,0,19917,0,1,1 +1774058924.628846,0.60,4,3992.50,48.25,1781.95,1888.98,0.00,21317.637464,36772.585964,1979165,661097,0.005968,0.010967,22242548,14728055,0,0,19920,0,1,1 +1774058929.624619,0.55,4,3992.50,48.25,1781.72,1889.21,0.00,3521414554836.270020,3521414539363.134277,226,83,0.004352,0.008397,22242663,14728219,0,0,19922,0,1,1 +1774058934.628405,0.60,4,3992.50,48.25,1781.74,1889.18,0.00,0.512600,3515774877809.632324,238,2,0.005031,0.010280,22242799,14728419,0,0,19925,0,1,1 +1774058939.629099,0.85,4,3992.50,48.25,1781.75,1889.18,0.00,3517948957671.980469,0.021872,226,83,0.005022,0.010933,22242934,14728623,0,0,19927,0,1,1 +1774058944.628699,0.75,4,3992.50,48.16,1785.35,1885.57,0.00,21323.276906,36784.661454,1979165,661192,0.006942,0.411667,22243126,14728907,0,0,19930,0,1,1 +1774058949.629118,26.57,4,3992.50,48.63,1761.38,1903.79,0.00,3518141822877.172852,66.088982,1978402,661554,0.050057,111.555810,22246795,14740672,0,0,19932,0,1,1 +1774058954.628522,23.51,4,3992.50,48.67,1753.21,1905.41,0.00,0.000781,103.885640,1978403,662192,0.024785,93.146412,22248599,14750418,0,0,19935,0,1,1 +1774058959.625480,12.69,4,3992.50,53.30,1573.29,2086.71,0.00,3520578966986.048828,3520578951342.352539,226,83,23.056214,0.027395,22251303,14751682,0,0,19937,0,1,1 +1774058964.627943,5.07,4,3992.50,49.27,1730.97,1928.96,0.00,0.000000,0.000000,226,83,17.033622,14.936166,22254109,14753929,0,0,19940,0,1,1 +1774058969.624510,8.02,4,3992.50,48.60,1756.14,1902.71,0.00,3520854603710.851074,3520854603712.275879,70,0,0.018147,25.154347,22255315,14756654,0,0,19942,0,1,1 +1774058974.625146,0.65,4,3992.50,48.48,1760.67,1898.18,0.00,1.445617,0.022068,226,83,0.003420,0.009533,22255419,14756837,0,0,19945,0,1,1 +1774058979.625201,0.60,4,3992.50,48.45,1761.92,1896.93,0.00,0.512983,3518398338322.016113,238,2,0.002734,0.007623,22255502,14756983,0,0,19947,0,1,1 +1774058984.628774,0.70,4,3992.50,48.44,1762.26,1896.58,0.00,3515924824634.663086,3515924824636.669922,11,0,0.003380,0.009527,22255603,14757166,0,0,19950,0,1,1 +1774058989.628443,0.60,4,3992.50,48.44,1762.27,1896.58,0.00,21339.791642,37025.588950,1978513,662919,0.003459,0.009556,22255710,14757350,0,0,19952,0,1,1 +1774058994.624532,0.60,4,3992.50,48.34,1766.04,1892.81,0.00,0.000000,0.005473,1978513,662922,0.002749,0.007639,22255794,14757497,0,0,19955,0,1,1 +1774058999.624518,0.60,4,3992.50,48.36,1765.31,1893.53,0.00,3518446932940.630371,3518446917254.348633,226,83,0.003441,0.009532,22255900,14757680,0,0,19957,0,1,1 +1774059004.624586,0.60,4,3992.50,48.36,1765.32,1893.52,0.00,3518389479817.554199,3518389479818.851074,199,0,0.003446,0.010209,22256006,14757869,0,0,19960,0,1,1 +1774059009.626681,0.65,4,3992.50,48.39,1764.25,1894.59,0.00,21333.354257,37011.805646,1979286,663118,0.002884,0.007775,22256101,14758025,0,0,19962,0,1,1 +1774059014.628612,0.65,4,3992.50,48.39,1764.26,1894.59,0.00,3517079328326.876465,3517079312646.611328,226,83,0.003600,0.009656,22256217,14758218,0,0,19965,0,1,1 +1774059019.628736,0.65,4,3992.50,48.39,1764.26,1894.58,0.00,3518349298702.633789,3518349298703.930664,199,0,0.003433,0.009524,22256322,14758400,0,0,19967,0,1,1 +1774059024.629197,0.60,4,3992.50,48.40,1764.02,1894.82,0.00,3518113370768.979492,0.000000,11,0,0.002746,0.007633,22256406,14758547,0,0,19970,0,1,1 +1774059029.628372,12.18,4,3992.50,54.72,1522.29,2142.36,0.00,21341.927658,37033.473876,1978523,663113,2.010939,0.015560,22256896,14759041,0,0,19972,0,1,1 +1774059034.628390,36.94,4,3992.50,54.79,1523.80,2145.09,0.00,3518424550067.543457,3518424534378.592285,70,0,113.220578,0.031145,22268510,14761019,0,0,19975,0,1,1 +1774059039.628726,28.77,4,3992.50,54.76,1526.17,2143.87,0.00,21340.989202,37025.101478,1979286,663345,119.094025,0.019606,22280602,14762308,0,0,19977,0,1,1 +1774059044.628568,28.56,4,3992.50,54.80,1524.48,2145.59,0.00,3518548188587.902832,3518548172902.242676,70,0,119.482473,0.031066,22292760,14764620,0,0,19980,0,1,1 +1774059049.624930,28.33,4,3992.50,54.61,1531.96,2138.06,0.00,3520999138558.752930,0.000000,11,0,118.965784,0.098855,22305376,14772201,0,0,19982,0,1,1 +1774059054.628663,28.36,4,3992.50,54.56,1533.89,2136.19,0.00,0.000000,0.000000,11,0,120.104112,0.100357,22318109,14779989,0,0,19985,0,1,1 +1774059059.628881,28.46,4,3992.50,54.73,1527.32,2142.72,0.00,21337.478585,37025.997774,1978523,663298,118.524935,0.097494,22330717,14787463,0,0,19987,0,1,1 +1774059064.628402,28.87,4,3992.50,54.83,1523.46,2146.57,0.00,3518774203070.375977,3518774187379.670898,11,0,119.863828,0.083396,22343452,14793782,0,0,19990,0,1,1 +1774059069.628098,28.66,4,3992.50,54.68,1529.31,2140.67,0.00,1.495892,0.022072,226,83,119.397259,0.089451,22356021,14800624,0,0,19992,0,1,1 +1774059074.624531,7.32,4,3992.50,48.31,1778.85,1891.27,0.00,21356.282519,37054.234882,1979293,663419,74.974340,0.063907,22363990,14805359,0,0,19995,0,1,1 +1774059079.627697,5.26,4,3992.50,48.27,1780.25,1889.86,0.00,3516210831141.675781,3516210815466.323730,11,0,2.020598,0.020125,22364788,14806005,0,0,19997,0,1,1 +1774059084.628910,23.32,4,3992.50,48.97,1752.87,1917.12,0.00,21333.363831,37019.172893,1978537,664148,34.203932,0.157963,22376049,14814584,0,0,20000,0,1,1 +1774059089.626413,4.06,4,3992.50,48.08,1787.61,1882.40,0.00,3520194861673.402832,3520194845975.899414,70,0,4.037178,0.029975,22377626,14815803,0,0,20002,0,1,1 +1774059094.628870,0.60,4,3992.50,48.17,1784.19,1885.82,0.00,21332.076043,37010.430028,1979300,664718,0.004785,0.009447,22377757,14815989,0,0,20005,0,1,1 +1774059099.624598,0.90,4,3992.50,48.24,1781.19,1888.82,0.00,3521446044361.421875,0.162932,1978537,664644,0.004327,0.008397,22377870,14816153,0,0,20007,0,1,1 +1774059104.627671,0.70,4,3992.50,48.24,1781.20,1888.80,0.00,3516275538872.681152,3516275523191.910645,199,0,0.005019,0.010294,22378005,14816354,0,0,20010,0,1,1 +1774059109.628989,0.55,4,3992.50,48.27,1780.24,1889.76,0.00,3517509919400.560547,0.000000,11,0,0.005046,0.010288,22378142,14816554,0,0,20012,0,1,1 +1774059114.629159,0.75,4,3992.50,48.23,1781.75,1888.24,0.00,2.008721,0.000195,238,2,0.004336,0.008399,22378256,14816719,0,0,20015,0,1,1 +1774059119.628688,0.70,4,3992.50,48.22,1782.00,1888.00,0.00,3518768883813.707520,3518768883815.666016,70,0,0.005073,0.010323,22378395,14816921,0,0,20017,0,1,1 +1774059124.624601,0.60,4,3992.50,48.21,1782.53,1887.48,0.00,3521315475107.191895,0.000000,11,0,0.005127,0.010433,22378538,14817130,0,0,20020,0,1,1 +1774059129.624606,0.70,4,3992.50,48.24,1781.32,1888.68,0.00,0.050000,0.000000,70,0,0.004367,0.008415,22378654,14817296,0,0,20022,0,1,1 +1774059134.628942,0.65,4,3992.50,48.20,1782.80,1887.20,0.00,0.126843,0.000000,199,0,0.005093,0.010975,22378794,14817504,0,0,20025,0,1,1 +1774059139.628407,0.65,4,3992.50,48.23,1781.59,1888.41,0.00,1.832032,0.000195,238,2,0.005049,0.010325,22378931,14817707,0,0,20027,0,1,1 +1774059144.624563,0.60,4,3992.50,48.24,1781.38,1888.63,0.00,21352.946690,37057.949218,1978537,665113,0.004352,0.008406,22379046,14817872,0,0,20030,0,1,1 +1774059149.629167,0.70,4,3992.50,48.24,1781.38,1888.63,0.00,3515200570838.795898,3515200555160.836426,226,83,0.005018,0.010281,22379181,14818072,0,0,20032,0,1,1 +1774059154.629034,0.65,4,3992.50,48.24,1781.40,1888.61,0.00,3518530757466.365234,3518530757467.839355,11,0,0.005023,0.010301,22379316,14818273,0,0,20035,0,1,1 +1774059159.628516,0.75,4,3992.50,48.24,1781.42,1888.60,0.00,0.050005,0.000000,70,0,0.004336,0.008391,22379430,14818437,0,0,20037,0,1,1 +1774059164.629006,0.75,4,3992.50,48.19,1783.12,1886.89,0.00,21340.461682,37025.989277,1979300,665343,0.005022,0.010299,22379565,14818638,0,0,20040,0,1,1 +1774059169.624532,0.80,4,3992.50,48.23,1781.67,1888.35,0.00,3521588697412.069824,3521588681710.951660,70,0,0.005027,0.010300,22379700,14818838,0,0,20042,0,1,1 +1774059174.629166,6.36,4,3992.50,48.72,1762.54,1907.40,0.00,1.956975,0.000195,238,2,0.020127,25.425304,22380915,14821924,0,0,20045,0,1,1 +1774059179.628425,29.08,4,3992.50,49.15,1738.88,1924.21,0.00,21343.758445,37105.845957,1979300,665881,0.044135,119.189329,22384169,14834298,0,0,20047,0,1,1 +1774059184.627122,15.76,4,3992.50,48.89,1744.30,1914.07,0.00,3519354414359.749512,3519354398595.888184,238,2,0.022924,60.502143,22385897,14840609,0,0,20050,0,1,1 +1774059189.628381,9.18,4,3992.50,53.60,1561.52,2098.57,0.00,3517551374069.691895,3517551374071.523438,199,0,3.215449,0.018762,22386671,14841262,0,0,20052,0,1,1 +1774059194.624687,6.08,4,3992.50,48.50,1761.37,1898.72,0.00,21377.599247,37262.398086,1979431,666878,36.881749,0.021001,22390466,14842595,0,0,20055,0,1,1 +1774059199.628972,3.21,4,3992.50,48.66,1754.93,1905.10,0.00,3515424409742.936523,3515424393883.640625,11,0,0.015047,9.020924,22391327,14844002,0,0,20057,0,1,1 +1774059204.624618,8.89,4,3992.50,48.36,1765.21,1893.45,0.00,0.177107,0.000000,199,0,0.018876,31.083041,22392523,14847340,0,0,20060,0,1,1 +1774059209.625981,0.70,4,3992.50,48.41,1763.24,1895.41,0.00,1.831337,0.000195,238,2,0.002733,0.007621,22392606,14847486,0,0,20062,0,1,1 +1774059214.628497,0.85,4,3992.50,48.23,1770.44,1888.21,0.00,3516667079033.801270,3516667079035.632324,199,0,0.005604,0.010537,22392755,14847695,0,0,20065,0,1,1 +1774059219.624601,0.60,4,3992.50,48.26,1769.01,1889.64,0.00,3521181056121.904297,0.000000,11,0,0.002062,0.005758,22392818,14847807,0,0,20067,0,1,1 +1774059224.629130,0.75,4,3992.50,48.29,1768.04,1890.61,0.00,1.494447,0.022050,226,83,0.004364,0.010195,22392926,14847993,0,0,20070,0,1,1 +1774059229.624467,0.80,4,3992.50,48.29,1768.05,1890.60,0.00,21380.427024,37305.901223,1979431,667253,0.003444,0.009541,22393032,14848176,0,0,20072,0,1,1 +1774059234.626411,1.55,4,3992.50,48.29,1768.05,1890.59,0.00,3517070072842.522461,3517070056937.547852,238,2,0.002771,0.007630,22393118,14848323,0,0,20075,0,1,1 +1774059239.628748,0.75,4,3992.50,48.29,1768.05,1890.59,0.00,3516793430090.902344,3516793430092.910156,11,0,0.003520,0.009613,22393230,14848511,0,0,20077,0,1,1 +1774059244.626576,0.80,4,3992.50,48.29,1768.07,1890.58,0.00,0.050022,0.000000,70,0,0.003447,0.009569,22393336,14848696,0,0,20080,0,1,1 +1774059249.625620,0.60,4,3992.50,48.29,1768.07,1890.57,0.00,21366.016912,37282.372061,1979431,667354,0.002903,0.007751,22393430,14848852,0,0,20082,0,1,1 +1774059254.629168,0.75,4,3992.50,48.29,1768.08,1890.57,0.00,3515942146552.805664,3515942146556.847656,1978668,667270,0.003431,0.009527,22393535,14849035,0,0,20085,0,1,1 +1774059259.628711,0.75,4,3992.50,48.29,1768.08,1890.56,0.00,3518758766890.996094,3518758750970.224121,238,2,0.003547,0.009624,22393649,14849223,0,0,20087,0,1,1 +1774059264.628610,13.54,4,3992.50,54.82,1519.26,2146.47,0.00,21356.353436,37275.995168,1978671,667299,8.219693,0.020428,22394722,14850051,0,0,20090,0,1,1 +1774059269.624763,33.54,4,3992.50,54.52,1535.38,2134.61,0.00,4.067876,0.163798,1979434,667500,118.260736,0.046405,22406885,14853149,0,0,20092,0,1,1 +1774059274.628760,28.30,4,3992.50,54.51,1536.39,2134.25,0.00,0.000000,0.001366,1979434,667509,120.100763,0.101242,22419804,14860828,0,0,20095,0,1,1 +1774059279.629117,27.94,4,3992.50,54.69,1529.54,2141.11,0.00,3518185337520.233398,3518185321607.912109,70,0,118.178289,0.083790,22432337,14867257,0,0,20097,0,1,1 +1774059284.629686,28.46,4,3992.50,54.67,1530.36,2140.34,0.00,0.126939,0.000000,199,0,120.179405,0.097463,22445141,14874775,0,0,20100,0,1,1 +1774059289.628566,28.13,4,3992.50,54.61,1532.47,2138.25,0.00,21366.601048,37283.891151,1979434,667562,119.427416,0.111355,22457976,14883340,0,0,20102,0,1,1 +1774059294.624501,27.81,4,3992.50,54.49,1537.50,2133.23,0.00,3521300495695.504883,3521300479766.995605,238,2,119.096034,0.113313,22470765,14891990,0,0,20105,0,1,1 +1774059299.628821,28.22,4,3992.50,54.66,1530.88,2139.88,0.00,21341.541604,37243.391266,1979434,667586,120.093513,0.106747,22483520,14900205,0,0,20107,0,1,1 +1774059304.628661,27.84,4,3992.50,54.56,1534.48,2136.23,0.00,3518550156203.828613,3518550140289.558105,199,0,118.193804,0.093364,22496002,14907297,0,0,20110,0,1,1 +1774059309.628125,4.72,4,3992.50,49.34,1738.93,1931.86,0.00,3518813951402.542480,0.000000,70,0,63.914799,0.061494,22502881,14911665,0,0,20112,0,1,1 +1774059314.628447,3.11,4,3992.50,48.69,1764.37,1906.41,0.00,0.126945,0.000000,199,0,0.014489,0.012015,22503166,14911934,0,0,20115,0,1,1 +1774059319.625232,10.25,4,3992.50,48.49,1772.21,1898.57,0.00,3520700572222.039062,0.000000,70,0,8.059121,0.040735,22505799,14913943,0,0,20117,0,1,1 +1774059324.625615,19.93,4,3992.50,49.53,1731.62,1939.06,0.00,0.000000,0.000000,70,0,32.194445,0.141628,22516394,14921664,0,0,20120,0,1,1 +1774059329.628394,2.21,4,3992.50,48.94,1754.41,1916.28,0.00,21346.156211,37255.724165,1978687,668710,0.005286,0.009997,22516531,14921859,0,0,20122,0,1,1 +1774059334.629065,1.15,4,3992.50,48.68,1764.82,1905.81,0.00,3517964714312.113281,3517964698393.882324,238,2,0.005022,0.010943,22516666,14922064,0,0,20125,0,1,1 +1774059339.625433,3.77,4,3992.50,48.79,1760.39,1910.23,0.00,3520994966663.222168,3520994966665.232422,11,0,0.016382,13.239387,22517660,14923803,0,0,20127,0,1,1 +1774059344.629465,29.44,4,3992.50,48.88,1750.77,1913.64,0.00,0.000000,0.000000,11,0,0.031755,118.679009,22519840,14936248,0,0,20130,0,1,1 +1774059349.624521,18.77,4,3992.50,49.00,1740.78,1918.65,0.00,0.000000,0.000000,11,0,0.016661,73.182247,22520878,14943956,0,0,20132,0,1,1 +1774059354.628446,1.35,4,3992.50,48.68,1753.49,1906.10,0.00,0.176814,0.000000,199,0,0.008008,0.012898,22521061,14944213,0,0,20135,0,1,1 +1774059359.624544,15.18,4,3992.50,49.78,1710.94,1949.10,0.00,3521185103004.371582,0.000000,11,0,40.094639,0.028733,22525426,14945818,0,0,20137,0,1,1 +1774059364.624525,1.30,4,3992.50,49.29,1730.30,1929.73,0.00,0.176954,0.000000,199,0,0.007732,0.012440,22525606,14946050,0,0,20140,0,1,1 +1774059369.624715,0.80,4,3992.50,48.77,1750.77,1909.26,0.00,3518303344477.372070,0.000000,11,0,0.005047,0.010290,22525743,14946250,0,0,20142,0,1,1 +1774059374.625396,0.90,4,3992.50,48.57,1758.57,1901.46,0.00,0.176929,0.000000,199,0,0.004310,0.008373,22525855,14946413,0,0,20145,0,1,1 +1774059379.629059,0.80,4,3992.50,48.56,1758.94,1901.10,0.00,3515861613126.797363,0.000000,70,0,0.005696,0.011212,22525994,14946616,0,0,20147,0,1,1 +1774059384.629198,1.05,4,3992.50,48.53,1760.02,1900.03,0.00,3518339596773.045410,0.000000,11,0,0.005634,0.011441,22526142,14946841,0,0,20150,0,1,1 +1774059389.625504,0.70,4,3992.50,48.53,1760.03,1900.02,0.00,2.010274,0.000195,238,2,0.004326,0.008396,22526255,14947005,0,0,20152,0,1,1 +1774059394.624592,0.75,4,3992.50,48.55,1759.07,1900.99,0.00,21379.345194,37489.642838,1978860,670932,0.003274,0.007181,22526347,14947147,0,0,20155,0,1,1 +1774059399.625451,0.95,4,3992.50,48.55,1759.09,1900.98,0.00,3517832884322.943848,3517832868220.358887,11,0,0.005040,0.010958,22526483,14947353,0,0,20157,0,1,1 +1774059404.629160,0.80,4,3992.50,48.55,1759.09,1900.98,0.00,21361.607539,37455.088749,1978860,671012,0.005044,0.010293,22526620,14947554,0,0,20160,0,1,1 +1774059409.628299,0.85,4,3992.50,48.55,1759.10,1900.97,0.00,3519043546861.267578,3519043530753.021484,70,0,0.004419,0.008439,22526740,14947722,0,0,20162,0,1,1 +1774059414.628698,0.80,4,3992.50,48.55,1759.12,1900.96,0.00,1.445685,0.022069,226,83,0.005009,0.010300,22526874,14947923,0,0,20165,0,1,1 +1774059419.628429,0.85,4,3992.50,48.55,1759.14,1900.94,0.00,21377.109683,37484.951402,1978860,671077,0.005023,0.010278,22527009,14948122,0,0,20167,0,1,1 +1774059424.624527,0.85,4,3992.50,48.55,1759.16,1900.93,0.00,3521185061878.372070,3521185045758.282227,238,2,0.004327,0.008406,22527122,14948287,0,0,20170,0,1,1 +1774059429.629038,11.48,4,3992.50,48.89,1745.25,1914.12,0.00,3515265701013.080566,3515265701015.087402,11,0,0.027539,40.037569,22528838,14952916,0,0,20172,0,1,1 +1774059434.624481,0.95,4,3992.50,48.59,1757.16,1902.22,0.00,0.000000,0.000000,11,0,0.003623,0.009719,22528947,14953102,0,0,20175,0,1,1 +1774059439.628788,1.75,4,3992.50,48.62,1755.71,1903.66,0.00,0.176801,0.000000,199,0,0.002740,0.007625,22529031,14953249,0,0,20177,0,1,1 +1774059444.629173,0.75,4,3992.50,48.62,1755.71,1903.66,0.00,0.000000,0.000000,199,0,0.003446,0.009533,22529137,14953432,0,0,20180,0,1,1 +1774059449.628184,1.00,4,3992.50,48.62,1755.73,1903.64,0.00,0.000000,0.000000,199,0,0.003434,0.009526,22529242,14953614,0,0,20182,0,1,1 +1774059454.628168,0.75,4,3992.50,48.62,1755.73,1903.63,0.00,3518447852891.467773,0.000000,11,0,0.002747,0.007633,22529326,14953761,0,0,20185,0,1,1 +1774059459.629303,0.90,4,3992.50,48.62,1755.74,1903.63,0.00,0.049989,0.000000,70,0,0.003432,0.009522,22529431,14953943,0,0,20187,0,1,1 +1774059464.628614,0.90,4,3992.50,48.62,1755.75,1903.62,0.00,1.446000,0.022073,226,83,0.003467,0.010219,22529539,14954133,0,0,20190,0,1,1 +1774059469.627881,0.90,4,3992.50,48.62,1755.76,1903.62,0.00,3518953206362.375488,3518953206363.849609,11,0,0.002797,0.007687,22529627,14954283,0,0,20192,0,1,1 +1774059474.625677,0.85,4,3992.50,48.62,1755.76,1903.61,0.00,0.000000,0.000000,11,0,0.003635,0.009732,22529746,14954480,0,0,20195,0,1,1 +1774059479.629256,0.95,4,3992.50,48.56,1758.08,1901.29,0.00,0.176827,0.000000,199,0,0.003437,0.009543,22529851,14954664,0,0,20197,0,1,1 +1774059484.624534,0.85,4,3992.50,48.59,1756.86,1902.52,0.00,0.000000,0.000000,199,0,0.002749,0.007640,22529935,14954811,0,0,20200,0,1,1 +1774059489.629112,0.85,4,3992.50,48.59,1756.86,1902.52,0.00,1.317641,0.022050,226,83,0.003430,0.009515,22530040,14954993,0,0,20202,0,1,1 +1774059494.628024,23.64,4,3992.50,54.58,1530.38,2137.03,0.00,0.000000,0.000000,226,83,38.268593,0.035460,22534196,14957040,0,0,20205,0,1,1 +1774059499.628839,33.00,4,3992.50,54.88,1521.57,2148.76,0.00,3517863675384.709961,3517863675386.006836,199,0,124.151200,0.054367,22546871,14961055,0,0,20207,0,1,1 +1774059504.624604,29.71,4,3992.50,54.53,1535.49,2134.90,0.00,1.833389,0.000195,238,2,122.271870,0.054594,22559282,14965090,0,0,20210,0,1,1 +1774059509.625369,29.42,4,3992.50,54.73,1527.66,2142.66,0.00,0.000000,0.000000,238,2,120.746795,0.049060,22571544,14968750,0,0,20212,0,1,1 +1774059514.625128,28.82,4,3992.50,54.66,1530.39,2139.95,0.00,0.000000,0.000000,238,2,120.372418,0.044829,22583803,14972141,0,0,20215,0,1,1 +1774059519.629007,28.71,4,3992.50,54.73,1527.45,2142.87,0.00,3515709581462.701172,3515709581464.658203,70,0,119.870756,0.051737,22595909,14975988,0,0,20217,0,1,1 +1774059524.625005,28.27,4,3992.50,54.66,1530.32,2140.05,0.00,21398.597344,37553.711431,1979623,671915,119.658467,0.047247,22607956,14979528,0,0,20220,0,1,1 +1774059529.628985,28.80,4,3992.50,54.68,1529.49,2140.86,0.00,0.000000,0.048692,1979623,671928,120.070531,0.044788,22620178,14982759,0,0,20222,0,1,1 +1774059534.624518,22.36,4,3992.50,54.61,1532.52,2137.92,0.00,3521583931926.993164,3521583915770.323730,70,0,119.671522,0.044137,22632299,14985921,0,0,20225,0,1,1 +1774059539.624553,1.00,4,3992.50,48.06,1788.60,1881.83,0.00,0.126952,0.000000,199,0,20.434046,0.015499,22634535,14986683,0,0,20227,0,1,1 +1774059544.627800,12.65,4,3992.50,49.50,1732.34,1938.05,0.00,21363.552885,37499.732970,1978877,672253,14.086898,0.073734,22639316,14990326,0,0,20230,0,1,1 +1774059549.629440,15.92,4,3992.50,49.62,1727.54,1942.83,0.00,3517283508666.360840,3517283492525.173828,11,0,24.133021,0.103759,22647099,14996123,0,0,20232,0,1,1 +1774059554.625345,2.86,4,3992.50,49.11,1747.44,1922.91,0.00,0.000000,0.000000,11,0,2.030411,0.022392,22648082,14996925,0,0,20235,0,1,1 +1774059559.628704,0.95,4,3992.50,48.85,1757.64,1912.71,0.00,1.494797,0.022055,226,83,0.005074,0.009780,22648215,14997113,0,0,20237,0,1,1 +1774059564.629238,18.04,4,3992.50,48.82,1756.09,1911.37,0.00,21377.888223,37556.014446,1979640,673430,0.039469,73.109307,22650841,15005070,0,0,20240,0,1,1 +1774059569.624823,28.90,4,3992.50,48.84,1747.12,1912.06,0.00,0.000000,121.440229,1979640,674378,0.035933,119.077649,22653418,15017485,0,0,20242,0,1,1 +1774059574.628687,4.46,4,3992.50,49.01,1739.46,1918.68,0.00,3515720110326.412109,3515720094037.813477,226,83,0.008510,13.018400,22653803,15019056,0,0,20245,0,1,1 +1774059579.629201,13.35,4,3992.50,49.35,1727.61,1932.32,0.00,3518075811729.533691,3518075811730.957031,70,0,40.065160,0.031993,22658370,15020872,0,0,20247,0,1,1 +1774059584.624546,0.65,4,3992.50,48.84,1747.77,1912.16,0.00,21420.939412,37765.579513,1979769,674893,0.004650,0.005467,22658478,15020991,0,0,20250,0,1,1 +1774059589.624540,1.05,4,3992.50,48.28,1769.67,1890.26,0.00,0.000000,0.047363,1979769,674957,0.005774,0.012543,22658632,15021216,0,0,20252,0,1,1 +1774059594.627046,0.60,4,3992.50,48.32,1768.00,1891.93,0.00,3516674823479.238770,3516674807156.525879,226,83,0.005020,0.010283,22658767,15021416,0,0,20255,0,1,1 +1774059599.628563,0.60,4,3992.50,48.37,1766.07,1893.87,0.00,0.512833,3517370035297.098633,238,2,0.004347,0.009031,22658882,15021584,0,0,20257,0,1,1 +1774059604.624510,0.85,4,3992.50,48.60,1756.92,1902.96,0.00,3521291560073.121582,3521291560074.955078,199,0,0.005035,0.010317,22659018,15021786,0,0,20260,0,1,1 +1774059609.629490,0.55,4,3992.50,48.62,1756.30,1903.63,0.00,3514936035228.347168,0.000000,11,0,0.005030,0.010311,22659154,15021988,0,0,20262,0,1,1 +1774059614.629362,0.60,4,3992.50,48.61,1756.79,1903.14,0.00,2.008840,0.000195,238,2,0.003649,0.006499,22659247,15022117,0,0,20265,0,1,1 +1774059619.624586,0.70,4,3992.50,48.61,1756.82,1903.12,0.00,0.000000,0.000000,238,2,0.005121,0.010376,22659388,15022323,0,0,20267,0,1,1 +1774059624.629229,0.55,4,3992.50,48.61,1756.84,1903.10,0.00,3515172767060.344238,3515172767062.301270,70,0,0.005018,0.010291,22659523,15022524,0,0,20270,0,1,1 +1774059629.625415,0.85,4,3992.50,48.56,1758.76,1901.18,0.00,21413.280421,37759.727744,1979015,675261,0.004352,0.008396,22659638,15022688,0,0,20272,0,1,1 +1774059634.624503,0.65,4,3992.50,48.58,1758.04,1901.90,0.00,3519078675411.414062,3519078659074.333008,199,0,0.004918,0.010192,22659775,15022890,0,0,20275,0,1,1 +1774059639.624595,0.55,4,3992.50,48.58,1758.05,1901.88,0.00,0.000000,0.000000,199,0,0.005010,0.010278,22659909,15023089,0,0,20277,0,1,1 +1774059644.624817,0.70,4,3992.50,48.58,1758.08,1901.86,0.00,21399.928561,37729.373821,1979778,675451,0.004336,0.008399,22660023,15023254,0,0,20280,0,1,1 +1774059649.628601,0.70,4,3992.50,48.58,1758.09,1901.85,0.00,3515776335448.127930,3515776319129.009277,226,83,0.004413,0.010046,22660147,15023447,0,0,20282,0,1,1 +1774059654.624545,10.96,4,3992.50,48.81,1748.75,1911.01,0.00,21416.935548,37795.802592,1979778,675750,0.028677,40.105941,22661910,15027992,0,0,20285,0,1,1 +1774059659.629045,0.75,4,3992.50,48.71,1752.83,1906.92,0.00,3515273331104.615723,3515273314755.173340,70,0,0.002744,0.007616,22661994,15028138,0,0,20287,0,1,1 +1774059664.624995,0.65,4,3992.50,48.71,1752.84,1906.92,0.00,1.446973,0.022088,226,83,0.003444,0.010194,22662100,15028326,0,0,20290,0,1,1 +1774059669.624810,0.75,4,3992.50,48.70,1752.84,1906.91,0.00,3518567720299.476074,3518567720300.772949,199,0,0.003433,0.009525,22662205,15028508,0,0,20292,0,1,1 +1774059674.629275,0.55,4,3992.50,48.70,1752.84,1906.91,0.00,1.317671,0.022051,226,83,0.002744,0.007626,22662289,15028655,0,0,20295,0,1,1 +1774059679.628673,1.55,4,3992.50,48.70,1752.85,1906.90,0.00,3518860895920.333008,3518860895921.807129,11,0,0.003421,0.009525,22662393,15028837,0,0,20297,0,1,1 +1774059684.629141,0.70,4,3992.50,48.70,1752.86,1906.89,0.00,0.000000,0.000000,11,0,0.004020,0.010642,22662509,15029042,0,0,20300,0,1,1 +1774059689.627941,0.55,4,3992.50,48.73,1751.88,1907.86,0.00,0.050012,0.000000,70,0,0.002818,0.007695,22662599,15029193,0,0,20302,0,1,1 +1774059694.628463,0.60,4,3992.50,48.73,1751.89,1907.86,0.00,0.000000,0.000000,70,0,0.003294,0.009380,22662705,15029377,0,0,20305,0,1,1 +1774059699.625490,0.60,4,3992.50,48.69,1753.39,1906.37,0.00,3520530623415.963867,0.000000,11,0,0.003462,0.009046,22662813,15029558,0,0,20307,0,1,1 +1774059704.629255,0.60,4,3992.50,48.72,1752.17,1907.59,0.00,0.000000,0.000000,11,0,0.002732,0.007627,22662896,15029705,0,0,20310,0,1,1 +1774059709.624607,0.65,4,3992.50,48.72,1752.18,1907.58,0.00,0.000000,0.000000,11,0,0.003462,0.009533,22663003,15029887,0,0,20312,0,1,1 +1774059714.625170,0.70,4,3992.50,48.72,1752.18,1907.57,0.00,21394.586726,37767.088255,1979015,675819,0.003420,0.009533,22663107,15030070,0,0,20315,0,1,1 +1774059719.627937,24.23,4,3992.50,54.52,1531.89,2134.64,0.00,3516491074819.721191,3516491058454.435059,11,0,44.644414,0.036717,22667913,15032306,0,0,20317,0,1,1 +1774059724.628095,31.50,4,3992.50,54.62,1531.41,2138.68,0.00,21396.313544,37770.251482,1979015,675948,119.561280,0.056371,22680006,15036239,0,0,20320,0,1,1 +1774059729.625153,28.11,4,3992.50,54.73,1527.29,2142.84,0.00,3520508700574.246582,3520508684188.138184,238,2,118.831970,0.052429,22691952,15040124,0,0,20322,0,1,1 +1774059734.624460,28.56,4,3992.50,54.72,1527.88,2142.32,0.00,21402.018740,37776.800598,1979778,676069,118.978288,0.053414,22703919,15044118,0,0,20325,0,1,1 +1774059739.626522,28.40,4,3992.50,54.67,1529.62,2140.52,0.00,3516986596513.024414,3516986580149.095703,199,0,119.311654,0.051445,22715887,15048063,0,0,20327,0,1,1 +1774059744.625476,28.37,4,3992.50,54.54,1534.88,2135.30,0.00,3519173339708.587891,0.000000,70,0,119.388218,0.054896,22728011,15052156,0,0,20330,0,1,1 +1774059749.627464,28.44,4,3992.50,54.60,1532.52,2137.70,0.00,21392.502409,37756.610050,1979778,676099,118.913279,0.056713,22739958,15056520,0,0,20332,0,1,1 +1774059754.628804,28.55,4,3992.50,54.80,1524.54,2145.63,0.00,3517494641027.139160,3517494624658.952148,238,2,120.131629,0.054549,22752091,15060653,0,0,20335,0,1,1 +1774059759.624526,23.30,4,3992.50,54.51,1536.11,2134.15,0.00,3521449890960.722168,3521449890962.555664,199,0,118.261578,0.055225,22764056,15064932,0,0,20337,0,1,1 +1774059764.629476,1.25,4,3992.50,49.26,1741.73,1928.52,0.00,1.317543,0.022048,226,83,27.423008,0.025577,22767107,15066630,0,0,20340,0,1,1 +1774059769.626654,13.41,4,3992.50,49.25,1741.89,1928.30,0.00,3520424132741.799316,3520424132743.273926,11,0,16.117062,0.080423,22772493,15070660,0,0,20342,0,1,1 +1774059774.628633,14.85,4,3992.50,49.45,1733.96,1936.20,0.00,0.176883,0.000000,199,0,22.122677,0.096967,22779535,15075968,0,0,20345,0,1,1 +1774059779.629291,2.46,4,3992.50,49.55,1730.19,1939.97,0.00,21398.154131,37767.733605,1979787,677426,2.026562,0.022226,22780493,15076764,0,0,20347,0,1,1 +1774059784.626906,1.20,4,3992.50,49.28,1740.75,1929.41,0.00,0.000000,0.167072,1979787,677645,0.005055,0.009801,22780624,15076953,0,0,20350,0,1,1 +1774059789.628475,0.65,4,3992.50,49.12,1747.03,1923.12,0.00,3517333149366.465332,3517333132999.878906,11,0,0.004438,0.009008,22780744,15077128,0,0,20352,0,1,1 +1774059794.625658,0.65,4,3992.50,49.12,1747.12,1923.05,0.00,0.000000,0.000000,11,0,0.004921,0.010317,22780873,15077321,0,0,20355,0,1,1 +1774059799.628795,0.60,4,3992.50,49.10,1747.61,1922.55,0.00,2.007529,0.000195,238,2,0.005007,0.010271,22781007,15077520,0,0,20357,0,1,1 +1774059804.629095,1.55,4,3992.50,48.48,1772.23,1897.93,0.00,21397.853201,37770.962381,1979787,677767,0.004336,0.008266,22781121,15077684,0,0,20360,0,1,1 +1774059809.629312,0.50,4,3992.50,48.49,1771.65,1898.50,0.00,3518284653658.208496,3518284637286.834473,11,0,0.004387,0.010204,22781254,15077887,0,0,20362,0,1,1 +1774059814.628833,0.80,4,3992.50,48.51,1770.99,1899.17,0.00,0.176970,0.000000,199,0,0.007184,0.011310,22781432,15078114,0,0,20365,0,1,1 +1774059819.629326,0.65,4,3992.50,48.51,1771.01,1899.16,0.00,21398.861009,37769.664576,1979787,677885,0.004335,0.008364,22781546,15078276,0,0,20367,0,1,1 +1774059824.624517,0.70,4,3992.50,48.49,1771.64,1898.52,0.00,3521824856168.340820,3521824839780.337402,11,0,0.005040,0.010310,22781682,15078477,0,0,20370,0,1,1 +1774059829.627826,0.55,4,3992.50,48.49,1771.54,1898.62,0.00,0.176836,0.000000,199,0,0.006015,0.010980,22781824,15078682,0,0,20372,0,1,1 +1774059834.624600,0.60,4,3992.50,48.47,1772.50,1897.67,0.00,3520708507367.121582,0.000000,11,0,0.004334,0.008413,22781938,15078848,0,0,20375,0,1,1 +1774059839.627614,18.68,4,3992.50,48.88,1753.15,1913.91,0.00,0.000000,0.000000,11,0,0.047492,76.073614,22785274,15087024,0,0,20377,0,1,1 +1774059844.628849,28.37,4,3992.50,50.06,1699.59,1959.90,0.00,0.000000,0.000000,11,0,0.023117,120.139895,22786922,15099472,0,0,20380,0,1,1 +1774059849.629005,4.11,4,3992.50,49.21,1731.37,1926.60,0.00,1.495754,0.022070,226,83,0.005656,8.819589,22787135,15100562,0,0,20382,0,1,1 +1774059854.624516,13.52,4,3992.50,53.43,1567.52,2092.02,0.00,21438.274858,38012.719844,1979901,679428,40.101407,0.029626,22791541,15102214,0,0,20385,0,1,1 +1774059859.624601,0.75,4,3992.50,48.35,1766.57,1892.97,0.00,3518377027040.087402,0.064550,1979138,679449,0.006442,0.006410,22791693,15102368,0,0,20387,0,1,1 +1774059864.624500,0.95,4,3992.50,48.38,1765.42,1894.11,0.00,3518508304964.181152,3518508288401.449219,199,0,0.005732,0.013187,22791844,15102598,0,0,20390,0,1,1 +1774059869.625687,0.65,4,3992.50,48.38,1765.20,1894.32,0.00,21411.201274,37969.784396,1979138,679480,0.004335,0.008375,22791958,15102761,0,0,20392,0,1,1 +1774059874.624470,0.80,4,3992.50,48.38,1765.23,1894.31,0.00,3519293376645.797852,3519293360077.958008,226,83,0.004405,0.010066,22792081,15102955,0,0,20395,0,1,1 +1774059879.626545,10.75,4,3992.50,48.47,1760.88,1897.75,0.00,21406.078647,37993.183546,1979138,679824,0.025757,40.057379,22793591,15107568,0,0,20397,0,1,1 +1774059884.625674,0.65,4,3992.50,48.31,1767.05,1891.57,0.00,3519050767750.985840,3519050751155.577148,11,0,0.002772,0.007666,22793677,15107717,0,0,20400,0,1,1 +1774059889.629135,0.65,4,3992.50,48.31,1767.06,1891.57,0.00,21401.644664,37988.737392,1979138,679900,0.003431,0.009518,22793782,15107899,0,0,20402,0,1,1 +1774059894.628797,0.80,4,3992.50,48.34,1766.08,1892.55,0.00,3518675073125.116699,3518675056525.243652,199,0,0.003429,0.009543,22793887,15108083,0,0,20405,0,1,1 +1774059899.628643,0.55,4,3992.50,48.34,1765.84,1892.78,0.00,3518545164182.041504,0.000000,11,0,0.002747,0.007624,22793971,15108229,0,0,20407,0,1,1 +1774059904.625104,0.80,4,3992.50,48.34,1765.86,1892.76,0.00,1.496860,0.022086,226,83,0.003448,0.009541,22794077,15108412,0,0,20410,0,1,1 +1774059909.628579,0.60,4,3992.50,48.34,1765.87,1892.76,0.00,3515993301006.912109,3515993301008.334961,70,0,0.003431,0.009518,22794182,15108594,0,0,20412,0,1,1 +1774059914.624925,0.70,4,3992.50,48.34,1765.88,1892.75,0.00,3521010494334.000000,0.000000,11,0,0.002799,0.007701,22794270,15108745,0,0,20415,0,1,1 +1774059919.629307,0.70,4,3992.50,48.34,1765.88,1892.75,0.00,21401.767949,37985.902028,1979901,680074,0.003468,0.009578,22794378,15108931,0,0,20417,0,1,1 +1774059924.626199,0.60,4,3992.50,48.34,1765.88,1892.74,0.00,3520625598478.434570,3520625581867.967773,226,83,0.002280,0.005924,22794456,15109056,0,0,20420,0,1,1 +1774059929.629054,0.95,4,3992.50,48.34,1765.89,1892.74,0.00,3516429070479.852051,3516429070481.325195,11,0,0.003431,0.010162,22794561,15109242,0,0,20422,0,1,1 +1774059934.628749,0.65,4,3992.50,48.15,1773.29,1885.34,0.00,0.000000,0.000000,11,0,0.002747,0.007634,22794645,15109389,0,0,20425,0,1,1 +1774059939.627122,0.65,4,3992.50,48.17,1772.56,1886.07,0.00,0.177011,0.000000,199,0,0.003442,0.009535,22794751,15109572,0,0,20427,0,1,1 +1774059944.629551,19.46,4,3992.50,54.90,1516.77,2149.29,0.00,21409.948446,38000.831522,1979901,680171,29.633780,0.027594,22798004,15110996,0,0,20430,0,1,1 +1774059949.627814,35.38,4,3992.50,54.64,1529.73,2139.42,0.00,3519660066603.401367,3519660049998.868164,11,0,123.816877,0.049953,22810728,15114503,0,0,20432,0,1,1 +1774059954.630409,28.92,4,3992.50,54.77,1525.14,2144.26,0.00,0.000000,0.000000,11,0,121.905527,0.038287,22823216,15117199,0,0,20435,0,1,1 +1774059959.625457,29.40,4,3992.50,54.58,1532.20,2137.10,0.00,21437.691269,38057.114810,1979138,680211,120.485308,0.040189,22835551,15120130,0,0,20437,0,1,1 +1774059964.629409,28.23,4,3992.50,54.53,1534.23,2135.07,0.00,3515658728623.186523,3515658712033.334473,11,0,120.068475,0.055840,22847710,15124426,0,0,20440,0,1,1 +1774059969.628755,28.44,4,3992.50,54.69,1527.80,2141.43,0.00,21419.260016,38024.446814,1979138,680227,119.176472,0.049601,22859705,15128287,0,0,20442,0,1,1 +1774059974.624474,28.75,4,3992.50,54.56,1533.11,2136.21,0.00,3521451849573.383301,3521451832956.142090,11,0,119.263192,0.047874,22871704,15131982,0,0,20445,0,1,1 +1774059979.626709,28.30,4,3992.50,54.51,1535.27,2134.02,0.00,21406.890332,38002.599548,1979138,680269,120.107991,0.054072,22883800,15136279,0,0,20447,0,1,1 +1774059984.628914,24.40,4,3992.50,55.18,1509.09,2160.29,0.00,3516886197044.505859,3516886180448.647461,70,0,108.576438,0.032193,22893942,15138572,0,0,20450,0,1,1 +1774059989.629241,0.85,4,3992.50,48.50,1770.68,1898.70,0.00,3518207346806.146484,0.000000,11,0,42.369097,0.012516,22897747,15139366,0,0,20452,0,1,1 +1774059994.624535,7.50,4,3992.50,48.82,1738.02,1911.25,0.00,0.050047,0.000000,70,0,0.002455,0.003453,22897805,15139441,0,0,20455,0,1,1 +1774059999.624527,3.11,4,3992.50,48.72,1742.94,1907.56,0.00,21420.728750,38377.233351,1979922,682485,0.000674,0.002565,22897825,15139483,0,0,20457,0,1,1 +1774060004.625180,7.88,4,3992.50,49.96,1694.02,1955.96,0.00,3517977322392.217773,3517977305437.830078,199,0,0.008556,0.004405,22897983,15139609,0,0,20460,0,1,1 +1774060009.624510,7.32,4,3992.50,50.49,1675.69,1976.91,0.00,21419.374404,38830.480279,1979159,685102,0.010609,0.006848,22898169,15139765,0,0,20462,0,1,1 +1774060014.628986,3.15,4,3992.50,48.82,1739.71,1911.54,0.00,3515290343140.991211,3515290325747.917480,70,0,0.007891,0.005579,22898314,15139889,0,0,20465,0,1,1 +1774060019.626217,3.86,4,3992.50,50.00,1695.77,1957.62,0.00,21428.495460,39063.005585,1979159,686387,0.000912,0.001085,22898331,15139911,0,0,20467,0,1,1 +1774060024.629017,9.56,4,3992.50,48.79,1739.48,1910.07,0.00,0.000781,376.964676,1979160,688575,0.000815,0.000494,22898343,15139925,0,0,20470,0,1,1 +1774060029.624602,0.60,4,3992.50,48.66,1744.48,1905.08,0.00,3521546950071.437988,3521546932053.607422,70,0,0.000031,0.000045,22898345,15139929,0,0,20472,0,1,1 +1774060034.627283,0.75,4,3992.50,48.60,1746.64,1902.91,0.00,21409.214648,39425.237664,1979923,688808,0.001639,0.000878,22898369,15139947,0,0,20475,0,1,1 +1774060039.628492,20.06,4,3992.50,49.90,1716.31,1953.77,0.00,3517586571713.033691,3517586553691.581543,199,0,28.160755,0.119092,22907463,15146310,0,0,20477,0,1,1 +1774060044.628388,19.32,4,3992.50,49.38,1736.62,1933.41,0.00,3518510523383.096191,0.000000,11,0,28.163755,0.118537,22916343,15152823,0,0,20480,0,1,1 +1774060049.628991,6.53,4,3992.50,49.48,1732.82,1937.16,0.00,0.000000,0.000000,11,0,10.070650,0.055542,22919917,15155558,0,0,20482,0,1,1 +1774060054.629185,0.65,4,3992.50,49.16,1745.37,1924.62,0.00,0.000000,0.000000,11,0,0.004361,0.008430,22920033,15155725,0,0,20485,0,1,1 +1774060059.627564,0.55,4,3992.50,49.16,1745.14,1924.86,0.00,0.000000,0.000000,11,0,0.005024,0.010294,22920168,15155925,0,0,20487,0,1,1 +1774060064.628177,1.76,4,3992.50,48.96,1753.17,1916.73,0.00,0.049994,0.000000,70,0,0.011182,2.618229,22920688,15156681,0,0,20490,0,1,1 +1774060069.628930,26.01,4,3992.50,49.14,1741.05,1924.02,0.00,21413.403559,39528.997563,1979160,691581,0.033037,110.142513,22923007,15168006,0,0,20492,0,1,1 +1774060074.624524,22.52,4,3992.50,48.95,1742.52,1916.48,0.00,3521540803078.027832,3521540784941.762207,238,2,0.016300,92.417208,22924062,15177805,0,0,20495,0,1,1 +1774060079.624655,1.40,4,3992.50,48.79,1748.64,1910.40,0.00,3518345045832.892090,3518345045834.724121,199,0,0.008760,0.014699,22924263,15178087,0,0,20497,0,1,1 +1774060084.628591,14.10,4,3992.50,49.79,1710.42,1949.30,0.00,3515669704629.481934,0.000000,70,0,40.029809,0.025918,22928659,15179885,0,0,20500,0,1,1 +1774060089.628467,7.50,4,3992.50,49.38,1710.52,1933.38,0.00,3518524100243.214844,0.000000,11,0,0.005814,0.007957,22928789,15180029,0,0,20502,0,1,1 +1774060094.628886,0.40,4,3992.50,49.39,1710.28,1933.61,0.00,21434.263388,39912.498692,1979307,693823,0.000795,0.000413,22928804,15180041,0,0,20505,0,1,1 +1774060099.628673,4.69,4,3992.50,49.49,1708.45,1937.46,0.00,3518586761164.934082,3518586742682.357910,238,2,0.001481,0.002304,22928840,15180088,0,0,20507,0,1,1 +1774060104.624868,4.22,4,3992.50,48.77,1736.85,1909.39,0.00,3521116880235.393555,3521116880237.227051,199,0,0.001024,0.001047,22928862,15180112,0,0,20510,0,1,1 +1774060109.624528,3.20,4,3992.50,48.81,1735.30,1911.05,0.00,3518676739987.156250,0.000000,11,0,0.000491,0.001326,22928879,15180141,0,0,20512,0,1,1 +1774060114.628998,8.93,4,3992.50,48.72,1741.91,1907.34,0.00,0.176795,0.000000,199,0,0.003955,0.003332,22928959,15180216,0,0,20515,0,1,1 +1774060119.628546,0.55,4,3992.50,48.63,1745.11,1904.16,0.00,0.000000,0.000000,199,0,0.000795,0.000403,22928974,15180227,0,0,20517,0,1,1 +1774060124.628487,3.76,4,3992.50,49.85,1700.50,1951.56,0.00,1.831858,0.000195,238,2,0.000699,0.000343,22928991,15180243,0,0,20520,0,1,1 +1774060129.625850,0.60,4,3992.50,48.94,1752.18,1916.14,0.00,3520293714627.675293,0.021887,226,105,0.004478,0.008681,22929093,15180401,0,0,20522,0,1,1 +1774060134.629442,0.70,4,3992.50,48.61,1765.13,1903.19,0.00,0.512620,3515911742136.083984,238,2,0.005050,0.010306,22929230,15180603,0,0,20525,0,1,1 +1774060139.624610,0.70,4,3992.50,48.56,1767.19,1901.14,0.00,3521840416807.977051,3521840416809.937500,70,0,0.005027,0.010945,22929365,15180807,0,0,20527,0,1,1 +1774060144.626232,0.60,4,3992.50,48.57,1766.71,1901.61,0.00,3517295989840.123535,0.000000,11,0,0.004334,0.008397,22929479,15180972,0,0,20530,0,1,1 +1774060149.629117,0.65,4,3992.50,48.57,1766.73,1901.59,0.00,21423.700918,40840.856012,1979307,698796,0.005040,0.010293,22929616,15181173,0,0,20532,0,1,1 +1774060154.629414,0.70,4,3992.50,48.56,1766.95,1901.38,0.00,3518227903549.540527,3518227884122.164551,199,0,0.005022,0.010300,22929751,15181374,0,0,20535,0,1,1 +1774060159.628062,0.65,4,3992.50,48.57,1766.76,1901.57,0.00,21441.676468,40875.536845,1979307,698865,0.004431,0.008456,22929872,15181542,0,0,20537,0,1,1 +1774060164.624602,0.65,4,3992.50,48.57,1766.77,1901.55,0.00,3520873884269.626953,3520873864827.741699,11,0,0.005039,0.010308,22930008,15181743,0,0,20540,0,1,1 +1774060169.624606,0.70,4,3992.50,48.57,1766.79,1901.54,0.00,21440.102315,40864.521918,1980070,699029,0.005022,0.010291,22930143,15181943,0,0,20542,0,1,1 +1774060174.624601,0.55,4,3992.50,48.57,1766.81,1901.52,0.00,3518440632700.145508,3518440613275.688965,11,0,0.004323,0.008400,22930256,15182108,0,0,20545,0,1,1 +1774060179.629459,0.75,4,3992.50,48.58,1766.33,1902.00,0.00,0.000000,0.000000,11,0,0.005018,0.010268,22930391,15182307,0,0,20547,0,1,1 +1774060184.628095,6.03,4,3992.50,49.26,1719.05,1928.64,0.00,0.177001,0.000000,199,0,0.003650,0.006500,22930484,15182436,0,0,20550,0,1,1 +1774060189.629509,2.36,4,3992.50,48.76,1740.48,1908.90,0.00,3517442744104.127441,0.000000,11,0,0.000184,0.000174,22930488,15182441,0,0,20552,0,1,1 +1774060194.624834,6.10,4,3992.50,49.14,1724.35,1924.11,0.00,2.010669,0.000195,238,2,0.002117,0.002553,22930537,15182496,0,0,20555,0,1,1 +1774060199.626512,4.07,4,3992.50,51.15,1648.07,2002.63,0.00,21430.922088,41444.517908,1980070,702099,0.001023,0.001036,22930559,15182519,0,0,20557,0,1,1 +1774060204.628640,2.66,4,3992.50,49.72,1701.15,1946.48,0.00,0.000000,62.239230,1980070,702485,0.001430,0.001838,22930591,15182558,0,0,20560,0,1,1 +1774060209.628837,7.59,4,3992.50,50.49,1670.83,1976.82,0.00,3518298531297.959961,3518298511218.182617,11,0,0.002168,0.004848,22930648,15182645,0,0,20562,0,1,1 +1774060214.624539,0.65,4,3992.50,49.65,1703.79,1943.86,0.00,1.497088,0.022089,226,110,0.000795,0.000897,22930663,15182660,0,0,20565,0,1,1 +1774060219.628690,2.00,4,3992.50,49.61,1725.95,1942.36,0.00,21420.854347,41854.679274,1980079,704519,0.002852,0.006261,22930741,15182780,0,0,20567,0,1,1 +1774060224.628510,1.00,4,3992.50,49.19,1742.45,1925.87,0.00,3518564162571.712402,3518564142121.657227,11,0,0.005010,0.010301,22930875,15182981,0,0,20570,0,1,1 +1774060229.626985,1.05,4,3992.50,49.21,1741.48,1926.84,0.00,21446.677528,41902.306062,1980079,704601,0.004362,0.008392,22930991,15183145,0,0,20572,0,1,1 +1774060234.628917,0.80,4,3992.50,49.22,1741.31,1927.00,0.00,3517078249938.051270,0.010933,1979316,704525,0.004995,0.010284,22931124,15183345,0,0,20575,0,1,1 +1774060239.628413,0.70,4,3992.50,49.03,1748.74,1919.58,0.00,3518791938678.977539,3518791918223.450684,11,0,0.004561,0.009007,22931245,15183520,0,0,20577,0,1,1 +1774060244.624560,0.85,4,3992.50,49.03,1748.78,1919.54,0.00,0.177090,0.000000,199,0,0.004785,0.009687,22931372,15183710,0,0,20580,0,1,1 +1774060249.624438,7.43,4,3992.50,49.07,1747.16,1921.13,0.00,3518523395817.308105,0.000000,11,0,0.022861,25.050208,22932708,15186698,0,0,20582,0,1,1 +1774060254.624538,5.11,4,3992.50,48.65,1763.23,1904.66,0.00,0.176950,0.000000,199,0,0.008915,15.030876,22933208,15188434,0,0,20585,0,1,1 +1774060259.628820,0.85,4,3992.50,48.61,1764.80,1903.10,0.00,3515426527296.565430,0.000000,70,0,0.002732,0.007617,22933291,15188580,0,0,20587,0,1,1 +1774060264.624600,0.85,4,3992.50,48.41,1772.40,1895.50,0.00,1.447022,0.022089,226,115,0.003436,0.009542,22933396,15188763,0,0,20590,0,1,1 +1774060269.624517,0.80,4,3992.50,48.36,1774.40,1893.50,0.00,3518495626464.640137,3518495626466.063965,70,0,0.003458,0.009524,22933503,15188945,0,0,20592,0,1,1 +1774060274.624498,0.90,4,3992.50,48.37,1774.18,1893.72,0.00,1.445806,0.022070,226,115,0.002060,0.005732,22933566,15189056,0,0,20595,0,1,1 +1774060279.628638,6.76,4,3992.50,49.14,1723.70,1923.85,0.00,21420.903069,42100.012236,1980079,706184,0.001334,0.004462,22933605,15189134,0,0,20597,0,1,1 +1774060284.629058,6.81,4,3992.50,48.96,1731.21,1916.89,0.00,0.000000,307.197609,1980079,707580,0.001090,0.002445,22933634,15189186,0,0,20600,0,1,1 +1774060289.624598,5.57,4,3992.50,49.23,1718.01,1927.53,0.00,3521578939442.836426,3521578918422.101562,11,0,0.000279,0.000716,22933645,15189204,0,0,20602,0,1,1 +1774060294.624532,0.70,4,3992.50,49.44,1709.68,1935.86,0.00,0.050001,0.000000,70,0,0.000469,0.001187,22933663,15189235,0,0,20605,0,1,1 +1774060299.624597,7.20,4,3992.50,49.29,1716.68,1929.76,0.00,3518391673858.106934,0.000000,11,0,0.001467,0.003897,22933711,15189315,0,0,20607,0,1,1 +1774060304.628899,0.90,4,3992.50,49.29,1715.95,1929.80,0.00,21421.706707,42947.679673,1980079,710091,0.000000,0.000030,22933711,15189318,0,0,20610,0,1,1 +1774060309.624560,3.37,4,3992.50,49.59,1704.09,1941.60,0.00,0.000000,150.367181,1980079,710775,0.000687,0.001922,22933732,15189356,0,0,20612,0,1,1 +1774060314.624767,4.37,4,3992.50,50.30,1699.14,1969.43,0.00,3518291837659.692383,3518291815965.860352,11,0,0.003453,0.005469,22933802,15189450,0,0,20615,0,1,1 +1774060319.628701,34.44,4,3992.50,55.34,1502.42,2166.84,0.00,21423.278265,43227.617919,1980079,711533,83.858132,0.039423,22942738,15191798,0,0,20617,0,1,1 +1774060324.627750,31.15,4,3992.50,54.80,1526.16,2145.70,0.00,3519106538399.875488,3519106516572.753418,226,127,122.392461,0.023727,22955249,15193378,0,0,20620,0,1,1 +1774060329.624497,29.08,4,3992.50,54.78,1527.20,2144.62,0.00,0.000000,0.000000,226,127,122.053030,0.028336,22967912,15195330,0,0,20622,0,1,1 +1774060334.628574,28.66,4,3992.50,54.79,1526.63,2145.19,0.00,0.000000,0.000000,226,127,120.069585,0.027285,22980198,15197124,0,0,20625,0,1,1 +1774060339.626606,28.43,4,3992.50,54.76,1527.82,2144.04,0.00,21447.080573,43278.744930,1980079,711597,120.214673,0.028793,22992524,15199065,0,0,20627,0,1,1 +1774060344.628402,28.41,4,3992.50,54.66,1531.66,2140.21,0.00,0.000000,0.144089,1980079,711652,119.320436,0.035606,23004681,15201713,0,0,20630,0,1,1 +1774060349.624523,28.69,4,3992.50,54.86,1524.12,2147.70,0.00,0.000000,0.025997,1980079,711658,119.257861,0.023648,23016967,15203398,0,0,20632,0,1,1 +1774060354.628733,28.53,4,3992.50,54.65,1532.28,2139.56,0.00,3515477277211.216309,3515477255407.755371,70,0,120.073436,0.039240,23029575,15206250,0,0,20635,0,1,1 +1774060359.628962,13.37,4,3992.50,48.87,1758.57,1913.37,0.00,21435.112617,43260.022886,1979324,711555,98.134426,0.032628,23039674,15208537,0,0,20637,0,1,1 +1774060364.627463,1.51,4,3992.50,48.85,1759.17,1912.76,0.00,0.074241,0.009085,1979331,711586,0.008670,0.010165,23039865,15208754,0,0,20640,0,1,1 +1774060369.624528,13.42,4,3992.50,49.05,1751.52,1920.37,0.00,4.067134,0.387044,1980094,712153,16.118936,0.082152,23045334,15212839,0,0,20642,0,1,1 +1774060374.626640,13.96,4,3992.50,48.79,1742.69,1910.19,0.00,3516951560281.772949,3516951538468.868652,11,0,14.071191,0.060941,23049781,15216216,0,0,20645,0,1,1 +1774060379.628559,3.91,4,3992.50,50.00,1697.60,1957.46,0.00,0.000000,0.000000,11,0,0.000013,0.000143,23049782,15216219,0,0,20647,0,1,1 +1774060384.624532,5.71,4,3992.50,49.01,1732.27,1919.04,0.00,2.010408,0.000195,238,2,0.001476,0.000525,23049809,15216238,0,0,20650,0,1,1 +1774060389.624419,5.68,4,3992.50,49.08,1729.79,1921.47,0.00,0.000000,0.000000,238,2,0.000807,0.000526,23049825,15216250,0,0,20652,0,1,1 +1774060394.628830,3.81,4,3992.50,49.00,1732.75,1918.55,0.00,3515336271698.276855,3515336271700.283691,11,0,0.009811,0.003455,23049997,15216350,0,0,20655,0,1,1 +1774060399.629261,8.21,4,3992.50,49.25,1722.88,1928.43,0.00,0.000000,0.000000,11,0,2.010764,0.007546,23050631,15216820,0,0,20657,0,1,1 +1774060404.627512,0.90,4,3992.50,49.27,1722.38,1928.93,0.00,1.496324,0.022078,226,135,0.000013,0.000061,23050632,15216825,0,0,20660,0,1,1 +1774060409.628801,9.47,4,3992.50,49.31,1741.16,1930.61,0.00,3517529845877.373047,3517529845878.796387,70,0,8.040092,0.031498,23053057,15218625,0,0,20662,0,1,1 +1774060414.624999,2.71,4,3992.50,48.51,1772.43,1899.33,0.00,1.960280,0.000195,238,2,0.017220,0.015528,23053418,15218966,0,0,20665,0,1,1 +1774060419.629098,0.95,4,3992.50,48.53,1771.59,1900.17,0.00,21416.652802,44559.112496,1979331,720432,0.005031,0.010282,23053554,15219166,0,0,20667,0,1,1 +1774060424.629266,0.95,4,3992.50,48.62,1767.99,1903.73,0.00,3518319368080.982422,3518319344920.325195,238,2,0.005010,0.010300,23053688,15219367,0,0,20670,0,1,1 +1774060429.624514,0.70,4,3992.50,48.64,1767.56,1904.21,0.00,3521784004595.236816,3521784004597.247070,11,0,0.004361,0.008406,23053804,15219532,0,0,20672,0,1,1 +1774060434.628561,0.90,4,3992.50,48.64,1767.57,1904.19,0.00,2.007165,0.000195,238,2,0.005977,0.010961,23053944,15219736,0,0,20675,0,1,1 +1774060439.629056,1.40,4,3992.50,48.64,1767.38,1904.39,0.00,0.000000,0.000000,238,2,0.005022,0.010290,23054079,15219936,0,0,20677,0,1,1 +1774060444.629293,0.80,4,3992.50,48.56,1770.45,1901.31,0.00,3518270376019.726562,0.021874,226,139,0.004336,0.008399,23054193,15220101,0,0,20680,0,1,1 +1774060449.624717,0.80,4,3992.50,48.59,1769.24,1902.52,0.00,3521660577060.284180,3521660577061.709473,70,0,0.004352,0.008397,23054308,15220265,0,0,20682,0,1,1 +1774060454.624456,1.50,4,3992.50,48.62,1768.30,1903.46,0.00,3518620417114.752441,0.000000,11,0,0.005048,0.010301,23054445,15220466,0,0,20685,0,1,1 +1774060459.629128,0.85,4,3992.50,48.65,1767.09,1904.68,0.00,21420.268957,44554.345573,1980094,720842,0.004457,0.009127,23054568,15220641,0,0,20687,0,1,1 +1774060464.624598,0.80,4,3992.50,48.65,1767.11,1904.66,0.00,3521627849891.667969,3521627826713.500488,226,139,0.005014,0.010310,23054702,15220842,0,0,20690,0,1,1 +1774060469.624533,5.18,4,3992.50,48.52,1752.83,1899.65,0.00,3518483284827.712402,3518483284829.186035,11,0,0.002181,0.004836,23054760,15220928,0,0,20692,0,1,1 +1774060474.629125,5.32,4,3992.50,48.77,1744.69,1909.64,0.00,0.049954,0.000000,70,0,0.000701,0.001948,23054782,15220968,0,0,20695,0,1,1 +1774060479.624601,3.52,4,3992.50,49.56,1710.89,1940.42,0.00,0.127068,0.000000,199,0,0.000008,0.000028,23054783,15220971,0,0,20697,0,1,1 +1774060484.628805,4.71,4,3992.50,48.62,1749.84,1903.52,0.00,3515481806606.881348,0.000000,11,0,0.000915,0.002562,23054811,15221022,0,0,20700,0,1,1 +1774060489.627708,5.84,4,3992.50,48.59,1749.15,1902.29,0.00,2.009230,0.000195,238,2,0.000687,0.002404,23054832,15221063,0,0,20702,0,1,1 +1774060494.628396,2.96,4,3992.50,48.46,1753.82,1897.50,0.00,3517953446661.147949,0.021872,226,146,0.000229,0.000824,23054839,15221079,0,0,20705,0,1,1 +1774060499.629520,8.06,4,3992.50,48.83,1736.54,1911.82,0.00,21429.907416,45904.742072,1979331,727303,0.000850,0.000765,23054857,15221100,0,0,20707,0,1,1 +1774060504.629257,0.70,4,3992.50,48.66,1742.43,1905.12,0.00,3518622235310.453125,3518622210828.830078,226,147,0.000050,0.000575,23054861,15221110,0,0,20710,0,1,1 +1774060509.628563,8.69,4,3992.50,48.66,1766.67,1905.05,0.00,3518925243697.257324,3518925243698.731445,11,0,0.023409,32.459773,23056460,15224849,0,0,20712,0,1,1 +1774060514.624634,28.37,4,3992.50,49.03,1745.14,1919.48,0.00,0.177092,0.000000,199,0,0.033722,118.670548,23058759,15237381,0,0,20715,0,1,1 +1774060519.628474,14.13,4,3992.50,48.38,1766.93,1894.13,0.00,0.000000,0.000000,199,0,0.019254,54.046982,23059773,15243242,0,0,20717,0,1,1 +1774060524.629035,13.35,4,3992.50,51.61,1640.79,2020.51,0.00,3518042201697.449707,0.000000,70,0,40.063671,0.038078,23064289,15245248,0,0,20720,0,1,1 +1774060529.628900,0.95,4,3992.50,49.96,1705.07,1956.23,0.00,0.126957,0.000000,199,0,0.004344,0.008398,23064404,15245413,0,0,20722,0,1,1 +1774060534.628815,0.70,4,3992.50,49.24,1733.33,1927.97,0.00,3518497061332.833984,0.000000,11,0,0.004162,0.008128,23064514,15245576,0,0,20725,0,1,1 +1774060539.629372,10.70,4,3992.50,48.77,1751.68,1909.65,0.00,21457.271523,46223.084014,1980220,729597,0.025032,40.066192,23066133,15250128,0,0,20727,0,1,1 +1774060544.624477,0.70,4,3992.50,48.55,1760.49,1900.82,0.00,3521885298383.316895,3521885273588.996094,226,151,0.003156,0.008304,23066226,15250290,0,0,20730,0,1,1 +1774060549.628982,0.70,4,3992.50,48.59,1758.89,1902.44,0.00,0.512527,3515270352442.555664,238,2,0.003430,0.009516,23066331,15250472,0,0,20732,0,1,1 +1774060554.629139,0.65,4,3992.50,48.59,1758.76,1902.57,0.00,3518326271128.206055,3518326271130.214355,11,0,0.003458,0.010209,23066438,15250661,0,0,20735,0,1,1 +1774060559.625831,0.70,4,3992.50,48.58,1759.20,1902.14,0.00,0.000000,0.000000,11,0,0.002761,0.007628,23066523,15250807,0,0,20737,0,1,1 +1774060564.628648,6.02,4,3992.50,50.14,1685.89,1962.97,0.00,21443.515930,46406.745119,1979457,730646,0.001838,0.005747,23066580,15250911,0,0,20740,0,1,1 +1774060569.625747,4.42,4,3992.50,49.01,1728.34,1918.80,0.00,3520479904350.615723,3520479879358.643066,199,0,0.000268,0.000685,23066590,15250927,0,0,20742,0,1,1 +1774060574.624556,6.05,4,3992.50,49.27,1720.22,1929.05,0.00,1.319162,0.022076,226,154,0.000279,0.000726,23066601,15250946,0,0,20745,0,1,1 +1774060579.624602,0.40,4,3992.50,49.29,1719.50,1929.77,0.00,3518404801558.757812,3518404801560.231934,11,0,0.000025,0.000051,23066603,15250950,0,0,20747,0,1,1 +1774060584.624553,8.91,4,3992.50,48.88,1733.15,1913.89,0.00,0.050000,0.000000,70,0,0.002364,0.003847,23066649,15251024,0,0,20750,0,1,1 +1774060589.624599,2.81,4,3992.50,49.45,1711.42,1935.93,0.00,21455.347316,47272.388513,1979457,734646,0.000260,0.001323,23066658,15251044,0,0,20752,0,1,1 +1774060594.628251,2.45,4,3992.50,49.12,1745.32,1923.29,0.00,3515869266832.492676,3515869241034.102539,11,0,0.001316,0.003626,23066699,15251117,0,0,20755,0,1,1 +1774060599.628503,0.60,4,3992.50,48.62,1765.20,1903.42,0.00,1.495726,0.022069,226,169,0.002734,0.007623,23066782,15251263,0,0,20757,0,1,1 +1774060604.627103,1.25,4,3992.50,48.30,1777.60,1891.03,0.00,21460.121654,47354.694015,1979469,735225,0.005801,0.012501,23066926,15251483,0,0,20760,0,1,1 +1774060609.625638,41.55,4,3992.50,54.70,1529.55,2141.80,0.00,3519468712031.868164,3519468686138.430176,11,0,107.983287,0.037712,23078076,15254061,0,0,20762,0,1,1 +1774060614.628804,28.54,4,3992.50,53.99,1557.81,2113.82,0.00,21442.032234,47311.579353,1979469,735293,119.893715,0.023301,23090562,15255483,0,0,20765,0,1,1 +1774060619.629265,27.85,4,3992.50,54.02,1556.49,2115.13,0.00,4.064371,0.022849,1980232,735471,118.353435,0.019665,23102690,15256746,0,0,20767,0,1,1 +1774060624.624946,28.52,4,3992.50,54.10,1553.68,2117.96,0.00,3521479425192.263672,3521479399287.998535,11,0,120.078173,0.053310,23115014,15260788,0,0,20770,0,1,1 +1774060629.627427,28.03,4,3992.50,54.18,1550.36,2121.28,0.00,1.495059,0.022059,226,169,118.724262,0.077364,23127378,15266580,0,0,20772,0,1,1 +1774060634.629080,27.01,4,3992.50,54.51,1537.39,2134.17,0.00,3517274486571.937500,3517274486573.233887,199,0,119.542366,0.072618,23139857,15271947,0,0,20775,0,1,1 +1774060639.628808,30.25,4,3992.50,54.10,1553.52,2118.07,0.00,1.831936,0.000195,238,2,119.384829,0.059810,23152290,15276397,0,0,20777,0,1,1 +1774060644.629364,28.91,4,3992.50,53.84,1563.69,2107.93,0.00,21451.214710,47336.457677,1979469,735361,118.960462,0.050166,23164613,15280085,0,0,20780,0,1,1 +1774060649.624521,8.95,4,3992.50,48.93,1755.81,1915.89,0.00,3521848590846.627930,3521848564935.415527,11,0,82.606386,0.046283,23173248,15283523,0,0,20782,0,1,1 +1774060654.629386,1.45,4,3992.50,48.19,1785.13,1886.57,0.00,21434.899084,47295.822466,1979484,735396,0.008406,0.009303,23173430,15283726,0,0,20785,0,1,1 +1774060659.628373,19.12,4,3992.50,49.88,1718.62,1952.95,0.00,0.000000,0.273395,1979484,735980,24.162696,0.116032,23181594,15289837,0,0,20787,0,1,1 +1774060664.629059,10.76,4,3992.50,48.96,1754.67,1916.82,0.00,3517954585272.249023,3517954559387.964355,226,169,16.097780,0.075910,23186799,15293694,0,0,20790,0,1,1 +1774060669.629406,0.80,4,3992.50,49.36,1738.95,1932.50,0.00,3518192947078.186035,3518192947079.609863,70,0,0.003636,0.006488,23186891,15293822,0,0,20792,0,1,1 +1774060674.626878,0.70,4,3992.50,48.97,1754.07,1917.44,0.00,0.000000,0.000000,70,0,0.005716,0.011236,23187031,15294026,0,0,20795,0,1,1 +1774060679.629440,0.75,4,3992.50,48.63,1767.70,1903.82,0.00,21448.779982,47318.906805,1980247,737142,0.005020,0.010273,23187166,15294225,0,0,20797,0,1,1 +1774060684.628714,0.60,4,3992.50,48.68,1765.50,1906.03,0.00,3518948358307.382324,3518948332420.286621,11,0,0.003705,0.008808,23187267,15294387,0,0,20800,0,1,1 +1774060689.625184,22.41,4,3992.50,48.68,1762.22,1905.88,0.00,2.010208,0.000195,238,2,0.053237,91.609073,23191006,15304333,0,0,20802,0,1,1 +1774060694.624513,26.95,4,3992.50,49.27,1731.74,1929.01,0.00,0.000000,0.000000,238,2,0.030181,113.572247,23193304,15315995,0,0,20805,0,1,1 +1774060699.625621,2.30,4,3992.50,48.35,1767.12,1893.00,0.00,3517657755020.825195,0.021870,226,169,0.009031,0.013399,23193502,15316252,0,0,20807,0,1,1 +1774060704.627534,13.34,4,3992.50,48.59,1757.99,1902.33,0.00,3517091531677.096191,3517091531678.569336,11,0,40.048267,0.025770,23197916,15317921,0,0,20810,0,1,1 +1774060709.629337,0.95,4,3992.50,48.59,1758.03,1902.30,0.00,0.000000,0.000000,11,0,0.005048,0.010620,23198046,15318109,0,0,20812,0,1,1 +1774060714.624493,0.85,4,3992.50,48.59,1757.80,1902.53,0.00,0.000000,0.000000,11,0,0.006511,0.009413,23198204,15318300,0,0,20815,0,1,1 +1774060719.628426,0.65,4,3992.50,48.59,1757.81,1902.53,0.00,0.049961,0.000000,70,0,0.005018,0.010270,23198339,15318499,0,0,20817,0,1,1 +1774060724.624521,0.75,4,3992.50,48.41,1765.13,1895.21,0.00,0.127052,0.000000,199,0,0.004339,0.008406,23198453,15318664,0,0,20820,0,1,1 +1774060729.624605,0.65,4,3992.50,48.41,1765.15,1895.19,0.00,3518377829924.062988,0.000000,11,0,0.005010,0.010290,23198587,15318864,0,0,20822,0,1,1 +1774060734.628883,0.75,4,3992.50,48.50,1761.60,1898.70,0.00,21460.838478,47508.235477,1980359,738840,0.005964,0.010992,23198726,15319070,0,0,20825,0,1,1 +1774060739.628995,0.55,4,3992.50,48.32,1768.60,1891.74,0.00,3518358555608.816406,3518358529539.538574,199,0,0.004336,0.008389,23198840,15319234,0,0,20827,0,1,1 +1774060744.628839,1.55,4,3992.50,48.32,1768.60,1891.75,0.00,1.318889,0.022071,226,169,0.005128,0.010376,23198982,15319441,0,0,20830,0,1,1 +1774060749.627183,0.60,4,3992.50,48.32,1768.63,1891.72,0.00,21484.818322,47564.710706,1980359,738960,0.005007,0.010921,23199116,15319644,0,0,20832,0,1,1 +1774060754.628599,0.65,4,3992.50,48.32,1768.64,1891.70,0.00,3517441100142.617188,3517441074080.163086,70,0,0.004409,0.008437,23199235,15319812,0,0,20835,0,1,1 +1774060759.624597,0.60,4,3992.50,48.28,1770.07,1890.27,0.00,3521255930592.015137,0.000000,11,0,0.005077,0.010361,23199374,15320016,0,0,20837,0,1,1 +1774060764.624527,1.20,4,3992.50,48.36,1766.95,1893.41,0.00,21479.500616,47549.763905,1980359,739078,0.011643,2.510582,23199919,15320702,0,0,20840,0,1,1 +1774060769.627389,10.39,4,3992.50,48.21,1772.27,1887.68,0.00,3516424197713.067383,3516424171657.906250,199,0,0.019823,37.550363,23201225,15324788,0,0,20842,0,1,1 +1774060774.629202,0.65,4,3992.50,48.12,1776.03,1883.92,0.00,21471.241287,47568.963121,1980359,739368,0.003419,0.009531,23201329,15324971,0,0,20845,0,1,1 +1774060779.629003,0.65,4,3992.50,48.14,1775.05,1884.90,0.00,3518576872092.455566,3518576845982.940918,226,169,0.003433,0.009525,23201434,15325153,0,0,20847,0,1,1 +1774060784.624523,0.60,4,3992.50,48.14,1775.06,1884.89,0.00,3521592831447.240234,3521592831448.715332,11,0,0.002749,0.007640,23201518,15325300,0,0,20850,0,1,1 +1774060789.624528,0.75,4,3992.50,48.14,1775.07,1884.88,0.00,0.000000,0.000000,11,0,0.003429,0.009532,23201623,15325483,0,0,20852,0,1,1 +1774060794.627829,0.65,4,3992.50,48.14,1775.08,1884.88,0.00,0.000000,0.000000,11,0,0.003431,0.009515,23201728,15325665,0,0,20855,0,1,1 +1774060799.628606,0.70,4,3992.50,48.11,1776.15,1883.80,0.00,2.008477,0.000195,238,2,0.002771,0.007666,23201814,15325814,0,0,20857,0,1,1 +1774060804.626274,0.70,4,3992.50,48.11,1776.40,1883.55,0.00,3520078861723.791504,3520078861725.801270,11,0,0.003256,0.008967,23201916,15325989,0,0,20860,0,1,1 +1774060809.625369,0.60,4,3992.50,48.19,1773.03,1886.92,0.00,2.009153,0.000195,238,2,0.001665,0.004537,23201970,15326080,0,0,20862,0,1,1 +1774060814.628796,0.60,4,3992.50,48.19,1773.04,1886.91,0.00,3516027263320.737793,0.021860,226,169,0.002900,0.008410,23202064,15326242,0,0,20865,0,1,1 +1774060819.627414,0.65,4,3992.50,48.19,1773.04,1886.90,0.00,3519410085746.695801,3519410085748.119629,70,0,0.003434,0.009527,23202169,15326424,0,0,20867,0,1,1 +1774060824.629130,0.65,4,3992.50,48.19,1773.06,1886.89,0.00,21471.793820,47573.070880,1980368,739506,0.003440,0.009514,23202275,15326606,0,0,20870,0,1,1 +1774060829.629073,5.17,4,3992.50,54.75,1515.31,2143.46,0.00,3518477612600.667969,3518477586490.181152,11,0,1.408391,0.012416,23202625,15326966,0,0,20872,0,1,1 +1774060834.624504,40.12,4,3992.50,54.55,1534.72,2135.65,0.00,0.177115,0.000000,199,0,109.456905,0.041153,23214042,15329544,0,0,20875,0,1,1 +1774060839.624529,27.96,4,3992.50,54.58,1533.57,2137.00,0.00,21478.931418,47589.261293,1980368,739635,120.168385,0.020931,23226515,15330891,0,0,20877,0,1,1 +1774060844.625052,27.79,4,3992.50,54.52,1535.78,2134.74,0.00,0.000000,0.038473,1980368,739650,118.151286,0.024055,23238706,15332659,0,0,20880,0,1,1 +1774060849.628733,27.92,4,3992.50,54.65,1526.94,2139.59,0.00,3515849256552.958984,3515849230461.843750,11,0,120.078380,0.017762,23251133,15333910,0,0,20882,0,1,1 +1774060854.626251,27.66,4,3992.50,54.54,1535.17,2135.31,0.00,2.009786,0.000195,238,2,118.422770,0.024276,23263139,15335535,0,0,20885,0,1,1 +1774060859.624507,27.86,4,3992.50,54.73,1527.62,2142.90,0.00,3519665400346.240723,3519665400348.250000,11,0,120.009966,0.029443,23275391,15337626,0,0,20887,0,1,1 +1774060864.624525,27.81,4,3992.50,54.40,1540.75,2129.82,0.00,0.050000,0.000000,70,0,119.387565,0.083586,23287958,15343989,0,0,20890,0,1,1 +1774060869.625129,28.94,4,3992.50,54.45,1538.61,2131.88,0.00,3518011986774.308594,0.000000,11,0,118.976712,0.088119,23300635,15350490,0,0,20892,0,1,1 +1774060874.624509,8.09,4,3992.50,49.84,1719.15,1951.48,0.00,0.176975,0.000000,199,0,79.532234,0.048516,23309006,15353958,0,0,20895,0,1,1 +1774060879.629504,1.80,4,3992.50,49.12,1747.59,1922.98,0.00,3514926062771.789062,0.000000,70,0,0.007495,0.007630,23309162,15354123,0,0,20897,0,1,1 +1774060884.624515,19.36,4,3992.50,49.02,1751.22,1919.34,0.00,21500.753218,47637.675255,1980379,740393,26.235384,0.122954,23317998,15360487,0,0,20900,0,1,1 +1774060889.624535,10.16,4,3992.50,48.18,1784.03,1886.48,0.00,3518422962784.559082,0.033301,1979616,740533,14.055111,0.070800,23322654,15364107,0,0,20902,0,1,1 +1774060894.624653,0.65,4,3992.50,48.25,1781.61,1888.91,0.00,3518354496225.861328,3518354470111.584473,11,0,0.005424,0.011364,23322802,15364330,0,0,20905,0,1,1 +1774060899.628917,0.60,4,3992.50,48.24,1781.62,1888.89,0.00,0.049957,0.000000,70,0,0.004823,0.009677,23322933,15364520,0,0,20907,0,1,1 +1774060904.628627,0.60,4,3992.50,48.28,1780.16,1890.36,0.00,21476.481348,47593.389487,1979616,740887,0.003934,0.008777,23323041,15364689,0,0,20910,0,1,1 +1774060909.625405,23.58,4,3992.50,48.80,1755.55,1910.74,0.00,3520705761206.737305,3520705735074.379883,199,0,0.061292,97.610812,23327497,15375184,0,0,20912,0,1,1 +1774060914.629061,26.70,4,3992.50,49.18,1733.15,1925.49,0.00,3515866602002.648926,0.000000,11,0,0.035373,107.476958,23330037,15386376,0,0,20915,0,1,1 +1774060919.629367,11.21,4,3992.50,53.68,1558.06,2101.65,0.00,21493.347822,47793.393248,1979722,742349,13.028558,0.023821,23331781,15387421,0,0,20917,0,1,1 +1774060924.626904,4.26,4,3992.50,50.06,1699.57,1960.15,0.00,4.066749,0.325453,1980485,742722,27.059462,0.018162,23334785,15388190,0,0,20920,0,1,1 +1774060929.628878,0.65,4,3992.50,49.20,1733.59,1926.13,0.00,3517049156190.956055,0.020597,1979722,742604,0.004983,0.010274,23334917,15388389,0,0,20922,0,1,1 +1774060934.629318,0.75,4,3992.50,48.87,1746.18,1913.54,0.00,3518127461297.602539,3518127434997.918457,11,0,0.004343,0.008407,23335032,15388555,0,0,20925,0,1,1 +1774060939.628902,0.55,4,3992.50,48.90,1745.22,1914.50,0.00,1.495925,0.022072,226,169,0.004998,0.010291,23335165,15388755,0,0,20927,0,1,1 +1774060944.629074,0.70,4,3992.50,48.87,1746.26,1913.46,0.00,3518316185841.543457,3518316185843.017578,11,0,0.005010,0.010919,23335299,15388958,0,0,20930,0,1,1 +1774060949.628142,0.80,4,3992.50,49.24,1731.75,1927.98,0.00,0.050009,0.000000,70,0,0.004337,0.008416,23335413,15389124,0,0,20932,0,1,1 +1774060954.624516,0.60,4,3992.50,49.24,1731.77,1927.96,0.00,3520990164771.544434,0.000000,11,0,0.005051,0.010326,23335550,15389326,0,0,20935,0,1,1 +1774060959.627415,0.70,4,3992.50,49.24,1731.79,1927.94,0.00,1.494934,0.022058,226,169,0.004829,0.009614,23335681,15389511,0,0,20937,0,1,1 +1774060964.624593,0.65,4,3992.50,49.24,1731.80,1927.93,0.00,3520423941122.764648,3520423941124.062500,199,0,0.004686,0.009139,23335810,15389696,0,0,20940,0,1,1 +1774060969.624747,0.65,4,3992.50,49.24,1731.82,1927.91,0.00,3518328688145.634277,0.000000,11,0,0.005130,0.010338,23335953,15389900,0,0,20942,0,1,1 +1774060974.625412,0.60,4,3992.50,49.24,1731.83,1927.90,0.00,21491.803000,47790.647389,1979722,742925,0.004387,0.008794,23336071,15390071,0,0,20945,0,1,1 +1774060979.624527,0.70,4,3992.50,49.24,1731.85,1927.88,0.00,4.065466,0.032037,1980485,743104,0.005641,0.010819,23336205,15390267,0,0,20947,0,1,1 +1774060984.628387,0.70,4,3992.50,49.23,1732.11,1927.62,0.00,3515723101885.664062,3515723075607.640137,11,0,0.005019,0.010267,23336340,15390466,0,0,20950,0,1,1 +1774060989.627434,7.73,4,3992.50,49.05,1739.32,1920.32,0.00,0.000000,0.000000,11,0,0.025338,28.458119,23337916,15393765,0,0,20952,0,1,1 +1774060994.624593,4.16,4,3992.50,48.67,1753.54,1905.64,0.00,0.050028,0.000000,70,0,0.011029,11.636857,23338472,15395257,0,0,20955,0,1,1 +1774060999.628830,0.65,4,3992.50,48.67,1753.54,1905.64,0.00,1.444577,0.022052,226,169,0.002757,0.007617,23338557,15395403,0,0,20957,0,1,1 +1774061004.628795,0.65,4,3992.50,48.68,1753.05,1906.12,0.00,21497.381925,47833.559842,1980485,743496,0.003416,0.009542,23338661,15395587,0,0,20960,0,1,1 +1774061009.627088,0.70,4,3992.50,48.68,1753.07,1906.11,0.00,3519639006839.437988,3519638980495.873047,70,0,0.003460,0.010159,23338768,15395772,0,0,20962,0,1,1 +1774061014.627275,0.70,4,3992.50,48.69,1752.85,1906.32,0.00,0.000000,0.000000,70,0,0.004920,0.008654,23338896,15395946,0,0,20965,0,1,1 +1774061019.624913,0.70,4,3992.50,48.72,1751.63,1907.54,0.00,1.959714,0.000195,238,2,0.003460,0.009529,23339003,15396128,0,0,20967,0,1,1 +1774061024.625203,0.65,4,3992.50,48.72,1751.65,1907.53,0.00,21491.408449,47834.559227,1979722,743397,0.003204,0.008875,23339101,15396297,0,0,20970,0,1,1 +1774061029.627949,0.60,4,3992.50,48.72,1751.65,1907.53,0.00,3516506356737.603516,3516506330409.391602,11,0,0.002961,0.008278,23339191,15396457,0,0,20972,0,1,1 +1774061034.629179,0.75,4,3992.50,48.72,1751.65,1907.52,0.00,0.000000,0.000000,11,0,0.004417,0.010294,23339303,15396649,0,0,20975,0,1,1 +1774061039.628859,0.65,4,3992.50,48.72,1751.66,1907.52,0.00,0.000000,0.000000,11,0,0.003177,0.008410,23339408,15396819,0,0,20977,0,1,1 +1774061044.626703,0.70,4,3992.50,48.72,1751.66,1907.52,0.00,0.177029,0.000000,199,0,0.003206,0.008917,23339506,15396991,0,0,20980,0,1,1 +1774061049.629027,0.60,4,3992.50,48.72,1751.68,1907.50,0.00,3516802249627.252441,0.000000,11,0,0.003432,0.009520,23339611,15397173,0,0,20982,0,1,1 +1774061054.624763,8.79,4,3992.50,54.81,1518.68,2145.81,0.00,0.000000,0.000000,11,0,7.826066,0.019161,23340767,15398067,0,0,20985,0,1,1 +1774061059.627313,36.18,4,3992.50,54.69,1527.59,2141.05,0.00,0.176863,0.000000,199,0,119.307990,0.040179,23353105,15400694,0,0,20987,0,1,1 +1774061064.624676,28.78,4,3992.50,54.46,1537.03,2132.04,0.00,21509.892259,47862.733094,1980485,743737,122.236242,0.027168,23365726,15402533,0,0,20990,0,1,1 +1774061069.629064,28.06,4,3992.50,54.87,1520.68,2148.34,0.00,3515352565746.590332,3515352565750.634766,1979722,743572,120.861960,0.015975,23378301,15403763,0,0,20992,0,1,1 +1774061074.629374,28.13,4,3992.50,54.68,1528.09,2140.92,0.00,3518218881203.365234,3518218854862.134277,70,0,120.165385,0.036225,23390807,15406348,0,0,20995,0,1,1 +1774061079.624515,28.25,4,3992.50,54.51,1534.88,2134.23,0.00,3521859735268.957520,0.000000,11,0,119.483519,0.024290,23403096,15407797,0,0,20997,0,1,1 +1774061084.625228,27.97,4,3992.50,54.54,1533.70,2135.41,0.00,21491.597447,47830.712947,1979722,743626,120.153259,0.029674,23415483,15409725,0,0,21000,0,1,1 +1774061089.627975,27.82,4,3992.50,54.61,1530.90,2138.17,0.00,3516505342431.093262,3516505316102.686035,11,0,119.901944,0.034753,23427776,15412324,0,0,21002,0,1,1 +1774061094.627997,28.49,4,3992.50,54.57,1532.66,2136.39,0.00,2.008780,0.000195,238,2,118.363204,0.048791,23439890,15415913,0,0,21005,0,1,1 +1774061099.628467,3.97,4,3992.50,49.10,1746.73,1922.44,0.00,0.000000,0.000000,238,2,57.078789,0.029460,23445830,15417776,0,0,21007,0,1,1 +1774061104.629432,4.21,4,3992.50,48.86,1756.30,1912.87,0.00,3517758620579.350586,3517758620581.358887,11,0,2.017847,0.020249,23446580,15418411,0,0,21010,0,1,1 +1774061109.628811,17.33,4,3992.50,48.60,1766.18,1902.93,0.00,0.000000,0.000000,11,0,24.160133,0.114604,23454747,15424544,0,0,21012,0,1,1 +1774061114.629392,10.40,4,3992.50,48.41,1773.67,1895.40,0.00,0.176933,0.000000,199,0,14.078987,0.056898,23459105,15427712,0,0,21015,0,1,1 +1774061119.629174,1.81,4,3992.50,48.12,1785.14,1883.93,0.00,1.831916,0.000195,238,2,0.013298,0.015293,23459395,15428026,0,0,21017,0,1,1 +1774061124.626083,2.06,4,3992.50,48.14,1784.19,1884.89,0.00,0.000000,0.000000,238,2,0.004338,0.008405,23459509,15428191,0,0,21020,0,1,1 +1774061129.628947,1.05,4,3992.50,48.20,1782.02,1887.06,0.00,3516423658980.601562,3516423658982.559082,70,0,0.005020,0.010272,23459644,15428390,0,0,21022,0,1,1 +1774061134.626275,0.80,4,3992.50,48.25,1780.07,1889.00,0.00,21506.254916,47864.689448,1979734,745043,0.005038,0.010281,23459780,15428589,0,0,21025,0,1,1 +1774061139.627374,0.80,4,3992.50,48.27,1779.34,1889.73,0.00,3517664447969.936035,3517664421629.945312,226,169,0.004373,0.008883,23459897,15428757,0,0,21027,0,1,1 +1774061144.629467,0.85,4,3992.50,48.32,1777.40,1891.68,0.00,21484.326623,47819.295292,1979734,745270,0.005134,0.010600,23460041,15428968,0,0,21030,0,1,1 +1774061149.625486,0.75,4,3992.50,48.27,1779.29,1889.79,0.00,3521240519505.012695,3521240493138.028809,226,169,0.004589,0.009013,23460164,15429143,0,0,21032,0,1,1 +1774061154.629214,0.75,4,3992.50,48.27,1779.08,1889.99,0.00,21481.368999,47803.708013,1980497,745457,0.004790,0.009672,23460292,15429333,0,0,21035,0,1,1 +1774061159.628533,0.90,4,3992.50,48.27,1779.09,1889.98,0.00,0.000000,0.006642,1980497,745464,0.005036,0.010292,23460428,15429533,0,0,21037,0,1,1 +1774061164.628637,1.70,4,3992.50,48.29,1778.38,1890.70,0.00,3518363904086.234375,3518363877746.285645,11,0,0.004410,0.008439,23460547,15429701,0,0,21040,0,1,1 +1774061169.626378,0.75,4,3992.50,48.27,1779.36,1889.71,0.00,0.000000,0.000000,11,0,0.005037,0.010283,23460683,15429900,0,0,21042,0,1,1 +1774061174.626153,5.52,4,3992.50,48.51,1769.45,1899.42,0.00,21495.781384,47841.617030,1979734,745409,0.022283,18.641848,23461997,15432275,0,0,21045,0,1,1 +1774061179.628556,29.05,4,3992.50,48.61,1758.71,1903.38,0.00,3516747607497.983398,3516747581165.981934,11,0,0.032729,118.713873,23464347,15444630,0,0,21047,0,1,1 +1774061184.626506,17.54,4,3992.50,48.14,1772.35,1884.89,0.00,0.000000,0.000000,11,0,0.026238,67.731935,23466065,15451749,0,0,21050,0,1,1 +1774061189.624544,1.86,4,3992.50,48.18,1770.79,1886.45,0.00,0.000000,0.000000,11,0,0.005873,0.006877,23466181,15451891,0,0,21052,0,1,1 +1774061194.628517,14.46,4,3992.50,53.20,1574.52,2082.88,0.00,21501.174791,48006.632735,1980601,746966,40.032215,0.026082,23470589,15453285,0,0,21055,0,1,1 +1774061199.628607,1.20,4,3992.50,48.94,1741.35,1916.05,0.00,3518373933738.636230,3518373933742.699219,1979838,746816,0.008401,0.012058,23470792,15453534,0,0,21057,0,1,1 +1774061204.629354,10.64,4,3992.50,68.11,1053.81,2666.59,0.00,29.636099,0.501780,1982117,747403,0.005119,0.012295,23470931,15453752,0,0,21060,0,1,1 +1774061209.629122,45.09,4,3992.50,61.76,1324.74,2417.91,0.00,3518600226606.906250,3518600200104.236328,11,0,0.788921,40.836519,23533243,15518906,0,0,21062,0,1,1 +1774061214.629445,29.57,4,3992.50,62.41,1292.92,2443.66,0.00,0.049997,0.000000,70,0,0.004357,0.011791,23533376,15519130,0,0,21065,0,1,1 +1774061219.629776,29.11,4,3992.50,67.31,1106.39,2635.44,0.00,22008.043076,48089.377844,2021967,753894,0.002822,0.007687,23533466,15519281,0,0,21067,0,1,1 +1774061224.628923,28.87,4,3992.50,69.34,1023.20,2714.75,0.00,3519038209743.759766,3519038183656.291992,11,0,0.003481,0.009586,23533574,15519468,0,0,21070,0,1,1 +1774061229.629259,30.19,4,3992.50,69.31,1016.98,2713.47,0.00,1.495700,0.022069,226,169,0.002990,0.008256,23533666,15519626,0,0,21072,0,1,1 +1774061234.630180,21.95,4,3992.50,48.81,1829.07,1911.15,0.00,22404.888899,48090.769484,2046629,759791,0.003263,0.008962,23533768,15519802,0,0,21075,0,1,1 +1774061239.624734,0.90,4,3992.50,48.55,1834.04,1900.93,0.00,3522273792910.110840,3522273767192.910156,70,0,0.003424,0.009535,23533872,15519984,0,0,21077,0,1,1 +1774061244.629421,0.70,4,3992.50,48.56,1833.54,1901.16,0.00,22395.722299,48054.679229,2047584,760015,0.002819,0.007688,23533962,15520135,0,0,21080,0,1,1 +1774061249.628455,0.85,4,3992.50,48.26,1845.17,1889.43,0.00,3519116596266.389160,3519116570578.293945,199,0,0.003484,0.009588,23534071,15520321,0,0,21082,0,1,1 +1774061254.624615,0.80,4,3992.50,48.27,1844.81,1889.72,0.00,1.833244,0.000195,238,2,0.003538,0.009637,23534184,15520511,0,0,21085,0,1,1 +1774061259.629029,0.80,4,3992.50,48.25,1844.95,1889.21,0.00,3515334285879.995605,3515334285882.002441,11,0,0.002881,0.007717,23534277,15520665,0,0,21087,0,1,1 +1774061264.627206,0.80,4,3992.50,48.13,1849.57,1884.56,0.00,0.000000,0.000000,11,0,0.003434,0.009538,23534382,15520848,0,0,21090,0,1,1 +1774061269.629038,0.95,4,3992.50,48.16,1848.48,1885.65,0.00,0.176888,0.000000,199,0,0.003407,0.009521,23534485,15521030,0,0,21092,0,1,1 +1774061274.628374,27.44,4,3992.50,55.05,1536.37,2155.42,0.00,3518904560227.964355,0.000000,70,0,60.096805,0.037207,23540804,15523266,0,0,21095,0,1,1 +1774061279.628447,31.22,4,3992.50,55.12,1533.79,2158.00,0.00,0.126951,0.000000,199,0,122.166988,0.033583,23553303,15525665,0,0,21097,0,1,1 +1774061284.625412,28.30,4,3992.50,55.12,1533.76,2158.02,0.00,3520573566150.943848,0.000000,70,0,121.841266,0.041904,23565632,15528685,0,0,21100,0,1,1 +1774061289.624562,28.90,4,3992.50,54.58,1554.74,2137.00,0.00,22426.975959,48108.364836,2048555,760428,120.587765,0.049787,23577957,15532281,0,0,21102,0,1,1 +1774061294.627209,35.15,4,3992.50,70.68,953.01,2767.22,0.00,36.284698,0.443808,2050840,760767,119.705013,0.048391,23590288,15535834,0,0,21105,0,1,1 +1774061299.626445,59.78,4,3992.50,67.82,1065.07,2655.37,0.00,187.250581,2.625792,2062740,762872,118.586001,0.047883,23602650,15539224,0,0,21107,0,1,1 +1774061304.629566,59.32,4,3992.50,56.05,1536.34,2194.30,0.00,192.394654,1.688009,2076956,764452,118.289909,0.044821,23614815,15542625,0,0,21110,0,1,1 +1774061309.629075,55.78,4,3992.50,90.05,150.09,3525.55,0.00,3518782932506.059082,3518782907237.886230,11,0,119.777907,0.055651,23627163,15546466,0,0,21112,0,1,0 +1774061314.626076,44.13,4,3992.50,89.83,158.01,3517.22,0.00,2.009995,0.000195,238,2,120.235972,0.040382,23639427,15549557,0,0,21115,0,1,0 +1774061319.628378,52.94,4,3992.50,87.14,263.30,3411.73,0.00,0.000000,0.000000,238,2,4.207540,0.013038,23640003,15549900,0,0,21117,0,1,1 +1774061324.628003,70.29,4,3992.50,39.93,2127.77,1563.51,0.00,22883.809115,48109.513265,2082963,764872,0.000000,0.000030,23640003,15549903,0,0,21120,0,1,1 +1774061329.626848,59.88,4,3992.50,43.43,1990.85,1700.48,0.00,3519250395376.509766,3519250370148.877930,11,0,0.002302,0.007654,23640086,15550049,0,0,21122,0,1,1 +1774061334.624587,19.01,4,3992.50,45.14,1923.94,1767.33,0.00,22906.847696,48127.861674,2085982,765218,0.007168,0.012044,23640215,15550218,0,0,21125,0,1,1 +1774061339.625466,3.26,4,3992.50,45.16,1923.27,1767.99,0.00,3517819193099.958984,3517819167894.773438,11,0,0.002530,0.007624,23640293,15550356,0,0,21127,0,1,1 +1774061344.627441,2.85,4,3992.50,45.15,1923.46,1767.80,0.00,0.176883,0.000000,199,0,0.003432,0.009530,23640398,15550539,0,0,21130,0,1,1 +1774061349.629390,1.76,4,3992.50,45.16,1921.15,1768.08,0.00,1.831122,0.000195,238,2,0.003277,0.008759,23640498,15550709,0,0,21132,0,1,1 +1774061354.625251,1.85,4,3992.50,45.22,1918.86,1770.36,0.00,22909.530044,48146.083436,2085231,765167,0.003423,0.009542,23640602,15550892,0,0,21135,0,1,1 +1774061359.624525,2.36,4,3992.50,45.23,1918.48,1770.73,0.00,0.000000,0.038287,2085231,765174,0.003434,0.009526,23640707,15551074,0,0,21137,0,1,1 +1774061364.628640,8.76,4,3992.50,45.79,1896.29,1792.90,0.00,3515543569499.814941,3515543544306.863770,11,0,0.002803,0.007637,23640790,15551222,0,0,21140,0,1,1 +1774061369.625229,2.01,4,3992.50,45.83,1894.64,1794.54,0.00,1.497604,0.022085,227,170,0.003444,0.009539,23640896,15551405,0,0,21142,0,1,1 +1774061374.628461,1.95,4,3992.50,45.85,1894.15,1795.03,0.00,3516164775581.444336,3516164775582.917969,11,0,0.002732,0.007616,23640979,15551551,0,0,21145,0,1,1 +1774061379.629137,1.86,4,3992.50,45.88,1890.71,1796.47,0.00,0.049993,0.000000,70,0,0.004428,0.011913,23641114,15551779,0,0,21147,0,1,1 +1774061384.629554,15.06,4,3992.50,96.53,0.00,3779.38,0.00,1.446461,0.022068,227,170,0.003188,0.009525,23641217,15551962,0,0,21150,0,1,1 +1774061389.626510,84.74,4,3992.50,96.33,0.00,3771.51,0.00,3520580605245.385254,3520580605246.683594,199,0,0.002433,0.006461,23641297,15552092,0,0,21152,0,1,1 +1774061394.629256,83.36,4,3992.50,96.23,0.00,3767.78,0.00,3516506382437.834473,0.000000,70,0,0.003303,0.007355,23641378,15552221,0,0,21155,0,1,1 +1774061399.627331,65.33,4,3992.50,87.38,311.14,3421.29,0.00,3519791912730.146973,0.000000,11,0,0.005586,0.007673,23641505,15552382,0,0,21157,0,1,1 +1774061404.709780,80.22,4,3992.50,96.62,0.00,3783.03,0.00,0.049189,0.000000,70,0,0.002749,0.006524,23641589,15552510,0,0,21164,0,1,1 +1774061414.132277,99.67,4,3992.50,81.52,548.05,3191.76,0.00,0.767621,0.011711,227,170,0.000048,0.000120,23641594,15552515,0,0,21164,0,1,1 +1774061414.628989,79.29,4,3992.50,46.24,1924.70,1810.45,0.00,0.000000,0.000000,227,170,0.031524,0.013903,23641642,15552551,0,0,21165,0,1,1 +1774061419.625696,47.76,4,3992.50,48.33,1777.03,1892.10,0.00,0.000000,0.000000,227,170,32.228249,0.147042,23652233,15560401,0,0,21167,0,1,1 +1774061424.625168,12.76,4,3992.50,48.90,1754.59,1914.42,0.00,3518808377012.057617,3518808377013.355469,199,0,8.051403,0.042346,23654848,15562424,0,0,21170,0,1,1 +1774061429.625164,4.47,4,3992.50,47.57,1806.71,1862.29,0.00,0.000000,0.000000,199,0,0.005701,0.011687,23654997,15562648,0,0,21172,0,1,1 +1774061434.624657,1.10,4,3992.50,47.54,1807.74,1861.28,0.00,3518793742917.728027,0.000000,70,0,0.004367,0.008426,23655113,15562815,0,0,21175,0,1,1 +1774061439.625073,4.77,4,3992.50,47.92,1792.10,1876.07,0.00,45558.182063,48107.332505,3793807,770635,0.019064,14.633989,23656209,15564766,0,0,21177,0,1,1 +1774061444.628506,29.19,4,3992.50,48.53,1760.34,1900.23,0.00,3516023002858.234375,3516023000310.671387,11,0,0.036236,118.493311,23658808,15577170,0,0,21180,0,1,1 +1774061449.625200,19.23,4,3992.50,48.29,1764.54,1890.84,0.00,45604.386869,48313.149643,3804648,771790,0.026042,71.961965,23660548,15584896,0,0,21182,0,1,1 +1774061454.629395,14.74,4,3992.50,49.64,1711.71,1943.62,0.00,18.194205,35.611621,3804703,772008,40.030366,0.025873,23664949,15586354,0,0,21185,0,1,1 +1774061459.624544,1.41,4,3992.50,48.72,1747.76,1907.57,0.00,0.158748,0.117008,3804715,772115,0.006005,0.007488,23665083,15586509,0,0,21187,0,1,1 +1774061464.624545,2.61,4,3992.50,48.17,1769.36,1885.97,0.00,3518436421604.201660,3518436418879.840332,11,0,0.005253,0.011254,23665218,15586709,0,0,21190,0,1,1 +1774061469.624424,1.25,4,3992.50,47.97,1777.12,1878.20,0.00,0.176957,0.000000,199,0,0.004794,0.009670,23665346,15586898,0,0,21192,0,1,1 +1774061474.628420,5.56,4,3992.50,96.34,0.00,3772.08,0.00,45558.166251,48278.474798,3804851,772238,0.005044,0.010936,23665483,15587103,0,0,21195,0,1,1 +1774061479.625238,29.44,4,3992.50,83.98,451.32,3288.10,0.00,153.879175,2.591004,3814581,774454,0.004364,0.008420,23665599,15587269,0,0,21197,0,1,1 +1774061484.625773,30.05,4,3992.50,66.47,1138.09,2602.26,0.00,3518060878381.241211,3518060875808.394043,238,2,0.005689,0.011477,23665751,15587497,0,0,21200,0,1,1 +1774061489.627889,29.84,4,3992.50,48.23,1849.47,1888.43,0.00,3516948701843.181152,3516948701845.138672,70,0,0.004448,0.009053,23665872,15587676,0,0,21202,0,1,1 +1774061494.626317,29.31,4,3992.50,92.88,104.04,3636.38,0.00,1.447037,0.022077,227,170,0.005341,0.010772,23666015,15587890,0,0,21205,0,1,1 +1774061499.626145,29.37,4,3992.50,82.47,499.56,3228.81,0.00,3518557739188.244141,3518557739189.668457,70,0,0.005041,0.010329,23666151,15588093,0,0,21207,0,1,1 +1774061504.629631,28.95,4,3992.50,47.38,1906.35,1855.11,0.00,3515986394083.140625,0.000000,11,0,0.004335,0.008431,23666265,15588261,0,0,21210,0,1,1 +1774061509.624602,1.36,4,3992.50,47.37,1876.18,1854.74,0.00,0.000000,0.000000,11,0,0.004390,0.008451,23666382,15588429,0,0,21212,0,1,1 +1774061514.624580,1.20,4,3992.50,47.49,1870.50,1859.53,0.00,2.008798,0.000195,238,2,0.005022,0.010300,23666517,15588630,0,0,21215,0,1,1 +1774061519.627920,0.95,4,3992.50,47.36,1874.05,1854.27,0.00,3516088201771.880859,3516088201773.888184,11,0,0.005019,0.010284,23666652,15588830,0,0,21217,0,1,1 +1774061524.626419,12.14,4,3992.50,47.97,1780.27,1878.21,0.00,0.000000,0.000000,11,0,0.030160,40.081480,23668601,15593392,0,0,21220,0,1,1 +1774061529.624780,1.46,4,3992.50,48.09,1775.15,1882.75,0.00,0.050016,0.000000,70,0,0.005522,0.013611,23668768,15593655,0,0,21222,0,1,1 +1774061534.624599,1.30,4,3992.50,47.99,1778.80,1879.11,0.00,3518564009485.498047,0.000000,11,0,0.003421,0.009534,23668872,15593838,0,0,21225,0,1,1 +1774061539.624631,1.00,4,3992.50,47.98,1779.26,1878.65,0.00,1.496573,0.022070,227,170,0.002772,0.008267,23668958,15593988,0,0,21227,0,1,1 +1774061544.624608,0.90,4,3992.50,47.98,1779.30,1878.59,0.00,46494.240835,48371.584903,3872421,786888,0.003454,0.009542,23669065,15594172,0,0,21230,0,1,1 +1774061549.625059,0.90,4,3992.50,47.98,1779.32,1878.58,0.00,3518119411471.430176,3518119409595.738770,11,0,0.002734,0.007623,23669148,15594318,0,0,21232,0,1,1 +1774061554.628574,1.00,4,3992.50,47.97,1779.61,1878.25,0.00,46462.918911,48337.457037,3872424,786944,0.003431,0.009527,23669253,15594501,0,0,21235,0,1,1 +1774061559.629223,1.10,4,3992.50,47.91,1782.15,1875.72,0.00,3517980385000.043945,3517980383124.431641,11,0,0.003445,0.009554,23669359,15594685,0,0,21237,0,1,1 +1774061564.629011,4.41,4,3992.50,93.68,90.14,3667.97,0.00,46509.604151,48375.577398,3873687,787180,0.002123,0.005795,23669427,15594800,0,0,21240,0,1,1 +1774061569.625268,29.43,4,3992.50,85.48,394.89,3346.86,0.00,129.503274,2.377170,3881305,789176,0.003524,0.009625,23669539,15594988,0,0,21242,0,1,1 +1774061574.628412,29.84,4,3992.50,70.85,954.23,2773.80,0.00,3516226240763.918945,3516226239024.674805,227,170,0.003612,0.009654,23669656,15595181,0,0,21245,0,1,1 +1774061579.625446,29.90,4,3992.50,52.18,1704.87,2043.07,0.00,3520525659338.016602,3520525659339.441895,70,0,0.002761,0.007628,23669741,15595327,0,0,21247,0,1,1 +1774061584.628839,29.36,4,3992.50,93.17,78.52,3647.80,0.00,0.000000,0.000000,70,0,0.003503,0.009578,23669851,15595514,0,0,21250,0,1,1 +1774061589.630281,52.87,4,3992.50,54.13,1616.46,2119.38,0.00,47269.901319,48372.941882,3923314,799355,40.652285,0.032184,23674274,15597388,0,0,21252,0,1,1 +1774061594.625429,61.13,4,3992.50,39.52,2148.23,1547.20,0.00,3521854447962.801270,3521854446858.421387,11,0,117.481554,0.033303,23686597,15599531,0,0,21255,0,1,0 +1774061599.627976,28.09,4,3992.50,39.35,2154.83,1540.55,0.00,0.000000,0.000000,11,0,120.107801,0.028224,23699058,15601533,0,0,21257,0,1,0 +1774061604.629056,28.03,4,3992.50,39.76,2138.09,1556.88,0.00,0.176915,0.000000,199,0,119.939357,0.022939,23711353,15603189,0,0,21260,0,1,0 +1774061609.629375,58.79,4,3992.50,46.45,1875.76,1818.67,0.00,3518212521054.985840,0.000000,70,0,77.202521,0.014815,23719201,15604324,0,0,21262,0,1,1 +1774061614.628385,90.92,4,3992.50,48.72,1786.04,1907.69,0.00,3519134163550.665527,0.000000,11,0,124.771271,0.036290,23731302,15606779,0,0,21265,0,1,1 +1774061619.628071,71.77,4,3992.50,50.88,1700.80,1992.08,0.00,2.008915,0.000195,238,2,122.654259,0.032995,23743232,15608968,0,0,21267,0,1,1 +1774061624.629100,30.39,4,3992.50,51.02,1694.61,1997.60,0.00,0.000000,0.000000,238,2,121.527314,0.028729,23754833,15611172,0,0,21270,0,1,1 +1774061629.624673,30.74,4,3992.50,51.26,1684.47,2007.02,0.00,3521555373608.357910,3521555373610.318359,70,0,120.502288,0.033496,23766428,15613445,0,0,21272,0,1,1 +1774061634.624529,4.27,4,3992.50,45.30,1883.48,1773.60,0.00,0.000000,0.000000,70,0,60.679418,0.015589,23772211,15614604,0,0,21275,0,1,1 +1774061639.624523,2.11,4,3992.50,45.02,1894.37,1762.70,0.00,47490.740177,48389.860264,3943127,801921,0.002320,0.004510,23772257,15614682,0,0,21277,0,1,1 +1774061644.626136,2.00,4,3992.50,45.05,1893.13,1763.92,0.00,0.013277,0.042174,3943130,801961,0.003420,0.009531,23772361,15614865,0,0,21280,0,1,1 +1774061649.628561,7.16,4,3992.50,45.18,1887.96,1769.08,0.00,3516731716016.707520,3516731715117.995117,70,0,0.003827,0.010027,23772477,15615059,0,0,21282,0,1,1 +1774061654.630387,5.46,4,3992.50,88.27,219.11,3456.09,0.00,3517152622348.557129,0.000000,11,0,0.003409,0.009550,23772580,15615243,0,0,21285,0,1,1 +1774061659.628454,53.24,4,3992.50,95.98,0.13,3757.96,0.00,48789.174836,48409.483044,4062568,802860,0.007402,0.012208,23772745,15615472,0,0,21287,0,1,1 +1774061664.642540,77.10,4,3992.50,96.18,0.00,3765.66,0.00,3508552791510.529785,3508552791887.538086,227,170,0.003174,0.006348,23772837,15615602,0,0,21290,0,1,1 +1774061669.643536,93.99,4,3992.50,96.20,0.00,3766.46,0.00,0.512105,3517736465226.095703,238,2,0.001618,0.004885,23772898,15615688,0,0,21292,0,1,1 +1774061674.635728,98.45,4,3992.50,96.34,0.00,3772.01,0.00,0.000000,0.000000,238,2,0.028898,0.018501,23773385,15616100,0,0,21295,0,1,1 +1774061679.627232,89.34,4,3992.50,48.55,1827.06,1900.75,0.00,61040.153267,48478.401555,5407941,808327,8.047034,0.029134,23775441,15617707,0,0,21297,0,1,1 +1774061684.629166,58.39,4,3992.50,71.01,957.43,2780.26,0.00,227.406673,2.447588,5423902,810572,16.485957,0.067963,23780384,15621413,0,0,21300,0,1,1 +1774061689.626412,21.59,4,3992.50,47.25,1839.74,1849.88,0.00,3520375997614.252441,3520376010388.749023,11,0,15.705031,0.072612,23785423,15625209,0,0,21302,0,1,1 +1774061694.628747,17.58,4,3992.50,47.45,1810.04,1857.95,0.00,1.495883,0.022060,227,170,0.032838,70.078637,23787625,15632882,0,0,21305,0,1,1 +1774061699.628845,29.35,4,3992.50,47.88,1785.66,1874.79,0.00,3518368150351.698242,3518368150353.122559,70,0,0.080154,119.391721,23793697,15645683,0,0,21307,0,1,1 +1774061704.627573,8.01,4,3992.50,47.37,1804.14,1854.54,0.00,3519332401757.923340,0.000000,11,0,0.022543,15.644634,23794923,15647663,0,0,21310,0,1,1 +1774061709.628974,10.94,4,3992.50,48.03,1778.34,1880.32,0.00,0.049986,0.000000,70,0,40.052729,0.022943,23799380,15649106,0,0,21312,0,1,1 +1774061714.629118,2.41,4,3992.50,47.80,1787.33,1871.36,0.00,61227.780345,48591.593111,5436031,812815,0.005723,0.012534,23799530,15649331,0,0,21315,0,1,1 +1774061719.628524,1.65,4,3992.50,47.65,1793.02,1865.66,0.00,3518855252404.533691,3518855265042.635742,11,0,0.004336,0.008391,23799644,15649495,0,0,21317,0,1,1 +1774061724.628507,1.51,4,3992.50,47.63,1793.76,1864.94,0.00,0.000000,0.000000,11,0,0.005035,0.010300,23799780,15649696,0,0,21320,0,1,1 +1774061729.629320,1.80,4,3992.50,47.70,1790.89,1867.76,0.00,0.049992,0.000000,70,0,0.005009,0.010289,23799914,15649896,0,0,21322,0,1,1 +1774061734.628772,1.25,4,3992.50,47.70,1791.10,1867.61,0.00,0.000000,0.000000,70,0,0.004349,0.009044,23800029,15650065,0,0,21325,0,1,1 +1774061739.628876,1.15,4,3992.50,47.56,1796.57,1862.12,0.00,0.000000,0.000000,70,0,0.005035,0.010321,23800165,15650267,0,0,21327,0,1,1 +1774061744.629424,4.16,4,3992.50,88.74,203.56,3474.45,0.00,61230.695383,48599.536967,5437006,813266,0.003649,0.006498,23800258,15650396,0,0,21330,0,1,1 +1774061749.629383,30.39,4,3992.50,53.06,1660.85,2077.58,0.00,3518465793587.031250,3518465806219.548828,199,0,0.005145,0.010416,23800401,15650606,0,0,21332,0,1,1 +1774061754.626040,29.42,4,3992.50,94.67,28.93,3706.43,0.00,1.833062,0.000195,238,2,0.004180,0.008297,23800513,15650772,0,0,21335,0,1,1 +1774061759.629115,29.52,4,3992.50,80.83,571.92,3164.71,0.00,3516274820123.590820,3516274820125.421875,199,0,0.005130,0.010370,23800656,15650979,0,0,21337,0,1,1 +1774061764.629475,29.70,4,3992.50,59.46,1407.21,2328.07,0.00,1.319534,0.022069,227,170,0.004821,0.009666,23800786,15651168,0,0,21340,0,1,1 +1774061769.629565,29.78,4,3992.50,63.36,1263.49,2480.88,0.00,62000.592871,48617.430317,5484394,825468,0.004579,0.009086,23800908,15651349,0,0,21342,0,1,1 +1774061774.625975,27.59,4,3992.50,46.83,1908.45,1833.49,0.00,3520965216101.595215,3520965229496.090820,11,0,0.005071,0.010377,23801046,15651555,0,0,21345,0,1,1 +1774061779.624513,1.60,4,3992.50,46.97,1892.05,1838.96,0.00,0.000000,0.000000,11,0,0.004337,0.008392,23801160,15651719,0,0,21347,0,1,1 +1774061784.627948,1.35,4,3992.50,46.95,1892.39,1838.04,0.00,1.495555,0.022055,227,170,0.004995,0.011165,23801295,15651935,0,0,21350,0,1,1 +1774061789.627413,12.05,4,3992.50,47.10,1848.34,1843.94,0.00,62180.843995,48656.510075,5505836,828592,0.025965,40.077278,23802894,15656518,0,0,21352,0,1,1 +1774061794.628935,1.15,4,3992.50,47.07,1849.52,1842.76,0.00,3517366425899.283203,3517366439417.521484,238,2,0.003139,0.008695,23802990,15656687,0,0,21355,0,1,1 +1774061799.628924,1.45,4,3992.50,47.05,1850.29,1841.96,0.00,3518444797464.426758,0.021875,227,170,0.003433,0.010168,23803095,15656873,0,0,21357,0,1,1 +1774061804.624526,1.15,4,3992.50,47.04,1850.41,1841.70,0.00,62225.265302,48702.159091,5505103,828503,0.003005,0.008307,23803188,15657034,0,0,21360,0,1,1 +1774061809.624647,2.61,4,3992.50,46.61,1861.59,1825.08,0.00,8.475479,0.159762,5506402,828766,0.003178,0.008858,23803284,15657202,0,0,21362,0,1,1 +1774061814.629110,0.75,4,3992.50,46.64,1860.62,1826.06,0.00,3515299789450.692871,3515299802957.631836,238,2,0.002054,0.005735,23803347,15657314,0,0,21365,0,1,1 +1774061819.628719,1.10,4,3992.50,46.59,1862.53,1824.15,0.00,62183.732981,48665.433794,5506428,828897,0.002759,0.007624,23803432,15657460,0,0,21367,0,1,1 +1774061824.624631,0.90,4,3992.50,46.61,1861.86,1824.82,0.00,3521316408813.745117,3521316422343.883789,199,0,0.003449,0.009604,23803538,15657647,0,0,21370,0,1,1 +1774061829.628414,0.90,4,3992.50,46.61,1861.87,1824.81,0.00,0.000000,0.000000,199,0,0.002782,0.007680,23803625,15657797,0,0,21372,0,1,1 +1774061834.628942,0.90,4,3992.50,46.61,1861.87,1824.81,0.00,3518065651193.774902,0.000000,70,0,0.003620,0.009696,23803743,15657992,0,0,21375,0,1,1 +1774061839.625384,1.45,4,3992.50,46.61,1861.88,1824.79,0.00,1.960184,0.000195,238,2,0.003454,0.009544,23803849,15658175,0,0,21377,0,1,1 +1774061844.628515,0.90,4,3992.50,46.61,1861.90,1824.78,0.00,62139.973001,48631.243849,5506432,828933,0.002745,0.007641,23803933,15658323,0,0,21380,0,1,1 +1774061849.630096,10.43,4,3992.50,53.14,1606.10,2080.45,0.00,3517325356737.217285,3517325370252.143555,11,0,2.611666,0.016668,23804498,15658856,0,0,21382,0,1,1 +1774061854.628882,36.23,4,3992.50,52.65,1625.13,2061.42,0.00,0.176996,0.000000,199,0,115.991343,0.038871,23816441,15661485,0,0,21385,0,1,1 +1774061859.625152,28.10,4,3992.50,53.59,1590.66,2098.16,0.00,1.833203,0.000195,238,2,118.857231,0.029254,23828682,15663453,0,0,21387,0,1,1 +1774061864.624651,28.40,4,3992.50,52.88,1618.46,2070.55,0.00,3518790163943.794434,3518790163945.626953,199,0,119.578568,0.034702,23840747,15665918,0,0,21390,0,1,1 +1774061869.628608,28.53,4,3992.50,53.06,1611.16,2077.24,0.00,1.830387,0.000195,238,2,119.291626,0.082855,23853254,15672200,0,0,21392,0,1,1 +1774061874.624512,28.36,4,3992.50,52.77,1621.61,2066.12,0.00,3521322004043.074219,3521322004045.034180,70,0,119.091495,0.104099,23865944,15680167,0,0,21395,0,1,1 +1774061879.628676,29.36,4,3992.50,52.71,1623.16,2063.90,0.00,3515510148728.584473,0.000000,11,0,119.492798,0.093057,23878698,15687345,0,0,21397,0,1,1 +1774061884.624505,29.24,4,3992.50,52.65,1625.18,2061.23,0.00,62233.555277,48702.628569,5506486,829170,118.892934,0.105659,23891391,15695343,0,0,21400,0,1,1 +1774061889.628693,29.21,4,3992.50,52.80,1618.49,2067.16,0.00,3515492032004.184082,3515492045510.499512,238,2,120.099207,0.113513,23904302,15704070,0,0,21402,0,1,1 +1774061894.627793,7.14,4,3992.50,46.52,1864.11,1821.52,0.00,62190.966648,48670.859475,5506500,829194,71.730998,0.060299,23912008,15708438,0,0,21405,0,1,1 +1774061899.629153,4.36,4,3992.50,46.33,1871.67,1813.97,0.00,0.367088,0.233530,5506536,829284,0.009843,0.010914,23912216,15708666,0,0,21407,0,1,1 +1774061904.628416,37.26,4,3992.50,48.22,1797.70,1887.73,0.00,3518955887249.046875,3518955900770.856445,11,0,28.185508,0.131940,23921531,15715654,0,0,21410,0,1,1 +1774061909.628382,13.50,4,3992.50,48.51,1786.10,1899.30,0.00,2.008803,0.000195,238,2,12.078129,0.062171,23925643,15718783,0,0,21412,0,1,1 +1774061914.624567,1.16,4,3992.50,48.09,1802.52,1882.88,0.00,62250.081617,48700.029984,5506958,830379,0.004837,0.010057,23925774,15718977,0,0,21415,0,1,1 +1774061919.624556,2.36,4,3992.50,48.03,1805.01,1880.39,0.00,3518445074439.090820,3518445087980.794434,70,0,0.006720,0.009641,23925938,15719173,0,0,21417,0,1,1 +1774061924.628978,5.91,4,3992.50,48.00,1805.16,1879.22,0.00,62149.747448,48620.070269,5506977,830573,0.018961,15.420869,23926993,15721151,0,0,21420,0,1,1 +1774061929.629281,29.24,4,3992.50,48.45,1780.17,1897.08,0.00,3518224423571.642090,3518224437112.340332,199,0,0.036651,119.973982,23929571,15733855,0,0,21422,0,1,1 +1774061934.624778,18.17,4,3992.50,46.84,1839.52,1833.92,0.00,62256.624633,48881.601809,5506229,831601,0.056111,69.781663,23933789,15741388,0,0,21425,0,1,1 +1774061939.628606,2.51,4,3992.50,47.49,1813.62,1859.31,0.00,3515745414648.104492,3515745427999.563477,227,170,0.007834,0.011333,23933941,15741595,0,0,21427,0,1,1 +1774061944.629476,15.82,4,3992.50,47.80,1801.84,1871.64,0.00,3517825462551.768066,3517825462553.065918,199,0,40.059240,0.033674,23938390,15743530,0,0,21430,0,1,1 +1774061949.624511,1.56,4,3992.50,47.36,1819.39,1854.13,0.00,1.320940,0.022092,227,170,0.005704,0.012537,23938538,15743754,0,0,21432,0,1,1 +1774061954.625031,1.05,4,3992.50,47.26,1823.16,1850.35,0.00,62223.308444,48863.692032,5516397,831975,0.004335,0.008399,23938652,15743919,0,0,21435,0,1,1 +1774061959.628703,0.90,4,3992.50,47.25,1823.76,1849.75,0.00,0.024982,0.124713,5516398,832041,0.005019,0.010283,23938787,15744119,0,0,21437,0,1,1 +1774061964.629257,1.00,4,3992.50,47.23,1824.23,1849.23,0.00,3518047295648.047363,3518047309008.948242,11,0,0.005072,0.010361,23938926,15744324,0,0,21440,0,1,1 +1774061969.626962,0.70,4,3992.50,47.00,1833.25,1840.27,0.00,1.497269,0.022080,227,170,0.004371,0.008433,23939043,15744491,0,0,21442,0,1,1 +1774061974.628671,1.00,4,3992.50,47.03,1832.29,1841.23,0.00,62208.686912,48852.334935,5516404,832182,0.005021,0.010297,23939178,15744692,0,0,21445,0,1,1 +1774061979.629411,0.80,4,3992.50,46.85,1839.29,1834.24,0.00,3517916777107.667969,3517916790466.077148,238,2,0.004335,0.008388,23939292,15744856,0,0,21447,0,1,1 +1774061984.628980,0.70,4,3992.50,46.85,1839.07,1834.46,0.00,3518740321617.472168,3518740321619.480957,11,0,0.004429,0.008476,23939412,15745027,0,0,21450,0,1,1 +1774061989.625483,1.25,4,3992.50,46.86,1838.99,1834.54,0.00,0.177077,0.000000,199,0,0.004419,0.010060,23939536,15745220,0,0,21452,0,1,1 +1774061994.629145,1.10,4,3992.50,46.86,1838.88,1834.64,0.00,3515862476693.175781,0.000000,70,0,0.005106,0.010976,23939677,15745428,0,0,21455,0,1,1 +1774061999.628661,1.00,4,3992.50,46.85,1839.05,1834.48,0.00,62237.488836,48873.987670,5516411,832371,0.004324,0.008390,23939790,15745592,0,0,21457,0,1,1 +1774062004.625282,3.22,4,3992.50,47.05,1829.27,1842.16,0.00,7.551099,0.031662,5521393,832551,0.005013,0.010307,23939924,15745793,0,0,21460,0,1,1 +1774062009.624518,11.55,4,3992.50,47.50,1808.96,1859.71,0.00,3518974907241.624023,3518974920611.965332,227,170,0.027862,40.077314,23941705,15750333,0,0,21462,0,1,1 +1774062014.629289,1.70,4,3992.50,47.24,1819.15,1849.52,0.00,3515082601049.655762,3515082601051.129395,11,0,0.004396,0.011366,23941835,15750550,0,0,21465,0,1,1 +1774062019.629083,0.95,4,3992.50,47.20,1820.77,1847.90,0.00,62241.804070,48909.547919,5521427,832945,0.003421,0.009525,23941939,15750732,0,0,21467,0,1,1 +1774062024.624590,1.71,4,3992.50,47.21,1820.45,1848.21,0.00,3521601741783.309082,3521601755126.954590,70,0,0.002770,0.007648,23942025,15750880,0,0,21470,0,1,1 +1774062029.625960,1.25,4,3992.50,47.30,1816.82,1851.84,0.00,0.126918,0.000000,199,0,0.003420,0.009522,23942129,15751062,0,0,21472,0,1,1 +1774062034.625885,1.05,4,3992.50,47.34,1815.31,1853.35,0.00,62242.440774,48908.283317,5521541,832959,0.003408,0.009534,23942232,15751245,0,0,21475,0,1,1 +1774062039.626556,0.90,4,3992.50,47.26,1818.41,1850.25,0.00,0.000000,0.012498,5521541,832963,0.002746,0.007622,23942316,15751391,0,0,21477,0,1,1 +1774062044.627985,1.25,4,3992.50,47.21,1820.39,1848.28,0.00,3517431884306.780273,3517431897636.915039,199,0,0.003445,0.009562,23942422,15751576,0,0,21480,0,1,1 +1774062049.628806,1.45,4,3992.50,47.21,1820.34,1848.32,0.00,3517859598851.243164,0.000000,70,0,0.003470,0.009585,23942530,15751762,0,0,21482,0,1,1 +1774062054.627772,0.95,4,3992.50,47.19,1821.05,1847.62,0.00,1.446881,0.022075,227,170,0.002841,0.007753,23942621,15751917,0,0,21485,0,1,1 +1774062059.628949,1.00,4,3992.50,47.19,1821.19,1847.48,0.00,3517609542090.458984,3517609542091.756348,199,0,0.003557,0.010266,23942734,15752111,0,0,21487,0,1,1 +1774062064.624658,1.01,4,3992.50,47.19,1821.22,1847.44,0.00,3521459290736.031738,0.000000,11,0,0.003449,0.009542,23942840,15752294,0,0,21490,0,1,1 +1774062069.625631,2.05,4,3992.50,46.99,1829.09,1839.58,0.00,0.000000,0.000000,11,0,0.002759,0.007622,23942925,15752440,0,0,21492,0,1,1 +1774062074.624612,1.71,4,3992.50,47.00,1828.46,1840.18,0.00,2.009199,0.000195,238,2,0.004843,0.010239,23943055,15752639,0,0,21495,0,1,1 +1774062079.624515,41.43,4,3992.50,53.43,1582.87,2092.00,0.00,0.000000,0.000000,238,2,98.542086,0.052199,23953234,15756191,0,0,21497,0,1,1 +1774062084.627452,28.89,4,3992.50,53.37,1591.47,2089.59,0.00,3516371585314.281250,3516371585316.288574,11,0,120.095081,0.047861,23965479,15759690,0,0,21500,0,1,1 +1774062089.624557,28.57,4,3992.50,53.63,1581.45,2099.56,0.00,2.009953,0.000195,238,2,118.230467,0.045693,23977469,15763086,0,0,21502,0,1,1 +1774062094.625001,29.27,4,3992.50,53.84,1572.94,2108.13,0.00,3518125194097.779297,3518125194099.610840,199,0,119.957063,0.044374,23989751,15766202,0,0,21505,0,1,1 +1774062099.625394,28.35,4,3992.50,53.54,1584.92,2096.05,0.00,3518160742664.646484,0.000000,11,0,118.353697,0.047190,24001786,15769802,0,0,21507,0,1,1 +1774062104.629385,29.17,4,3992.50,53.75,1576.46,2104.54,0.00,62188.109029,48870.829851,5520801,833057,120.068705,0.052612,24013975,15773699,0,0,21510,0,1,1 +1774062109.629480,28.66,4,3992.50,53.47,1587.62,2093.43,0.00,3518369828268.361328,3518369841595.837402,199,0,118.361215,0.044923,24026036,15776864,0,0,21512,0,1,1 +1774062114.624560,28.41,4,3992.50,53.45,1588.14,2092.82,0.00,3521903162387.392090,0.000000,11,0,120.081327,0.044390,24038183,15780244,0,0,21515,0,1,1 +1774062119.624593,11.51,4,3992.50,47.37,1826.53,1854.57,0.00,2.008776,0.000195,238,2,91.726489,0.051922,24047560,15784099,0,0,21517,0,1,1 +1774062124.626399,2.15,4,3992.50,47.40,1825.42,1855.65,0.00,3517166574071.393066,3517166574073.350586,70,0,0.008602,0.010472,24047746,15784317,0,0,21520,0,1,1 +1774062129.624554,28.55,4,3992.50,49.23,1753.71,1927.34,0.00,62261.982354,48928.540739,5520873,833765,24.170305,0.118237,24055666,15790237,0,0,21522,0,1,1 +1774062134.629233,15.19,4,3992.50,47.88,1806.27,1874.71,0.00,0.376991,0.072491,5520893,834007,16.084916,0.073959,24060969,15794229,0,0,21525,0,1,1 +1774062139.625765,1.56,4,3992.50,47.85,1807.62,1873.35,0.00,4.094148,0.089711,5521659,834205,0.005761,0.011721,24061122,15794455,0,0,21527,0,1,1 +1774062144.625991,1.35,4,3992.50,47.87,1806.91,1874.07,0.00,3518278047293.251953,3518278060624.051758,227,170,0.004336,0.008399,24061236,15794620,0,0,21530,0,1,1 +1774062149.624536,1.25,4,3992.50,47.56,1819.09,1861.89,0.00,0.000000,0.000000,227,170,0.005032,0.010302,24061372,15794821,0,0,21532,0,1,1 +1774062154.628995,1.25,4,3992.50,47.46,1822.75,1858.23,0.00,3515301873878.368164,3515301873879.665039,199,0,0.005018,0.010304,24061507,15795023,0,0,21535,0,1,1 +1774062159.626938,0.95,4,3992.50,47.49,1821.54,1859.45,0.00,0.000000,0.000000,199,0,0.004338,0.008393,24061621,15795187,0,0,21537,0,1,1 +1774062164.625469,1.50,4,3992.50,47.54,1819.84,1861.15,0.00,62257.580359,48925.855869,5520896,834482,0.005062,0.010335,24061759,15795390,0,0,21540,0,1,1 +1774062169.628984,1.35,4,3992.50,47.53,1819.96,1861.02,0.00,3515965753924.187988,3515965767241.338867,227,170,0.004433,0.008495,24061881,15795561,0,0,21542,0,1,1 +1774062174.629279,0.85,4,3992.50,47.53,1819.98,1861.01,0.00,3518229268866.288574,3518229268867.762695,11,0,0.004361,0.008399,24061997,15795726,0,0,21545,0,1,1 +1774062179.629423,1.10,4,3992.50,47.53,1820.00,1860.99,0.00,2.008731,0.000195,238,2,0.005010,0.010290,24062131,15795926,0,0,21547,0,1,1 +1774062184.629447,1.05,4,3992.50,47.58,1818.18,1862.81,0.00,3518420073471.749512,3518420073473.757812,11,0,0.004419,0.008448,24062251,15796095,0,0,21550,0,1,1 +1774062189.629014,1.25,4,3992.50,47.58,1818.20,1862.80,0.00,1.496712,0.022072,227,170,0.005035,0.010304,24062387,15796296,0,0,21552,0,1,1 +1774062194.628263,1.10,4,3992.50,47.51,1820.70,1860.30,0.00,62247.376514,48919.121513,5520898,834798,0.005023,0.010946,24062522,15796501,0,0,21555,0,1,1 +1774062199.627964,1.00,4,3992.50,47.51,1820.71,1860.28,0.00,3518646942450.984375,3518646955777.497070,238,2,0.004349,0.008390,24062637,15796665,0,0,21557,0,1,1 +1774062204.624522,2.36,4,3992.50,47.14,1835.18,1845.83,0.00,3520860882195.144531,3520860882197.154785,11,0,0.005038,0.010308,24062773,15796866,0,0,21560,0,1,1 +1774062209.624508,2.31,4,3992.50,47.14,1835.18,1845.83,0.00,62243.807654,48912.011696,5521664,835033,0.005022,0.010291,24062908,15797066,0,0,21562,0,1,1 +1774062214.626481,1.20,4,3992.50,47.18,1833.96,1847.04,0.00,3517049297181.374023,3517049310507.696289,199,0,0.004334,0.008396,24063022,15797231,0,0,21565,0,1,1 +1774062219.626400,1.36,4,3992.50,47.20,1833.00,1848.00,0.00,3518494094488.145020,0.000000,11,0,0.007204,0.011307,24063202,15797458,0,0,21567,0,1,1 +1774062224.629017,0.95,4,3992.50,47.21,1832.53,1848.48,0.00,0.000000,0.000000,11,0,0.005702,0.011191,24063341,15797659,0,0,21570,0,1,1 +1774062229.628685,1.30,4,3992.50,47.33,1828.12,1852.89,0.00,0.000000,0.000000,11,0,0.006187,0.010499,24063473,15797855,0,0,21572,0,1,1 +1774062234.624665,26.61,4,3992.50,48.26,1784.04,1889.64,0.00,1.497786,0.022088,227,170,0.058518,108.648851,24067799,15809302,0,0,21575,0,1,1 +1774062239.624538,23.87,4,3992.50,48.22,1778.91,1888.11,0.00,3518526916540.438965,3518526916541.736816,199,0,0.018997,96.539129,24069244,15819367,0,0,21577,0,1,1 +1774062244.628725,11.93,4,3992.50,52.97,1593.05,2073.96,0.00,62210.586219,49047.168499,5521814,836225,11.817934,0.023512,24070862,15820370,0,0,21580,0,1,1 +1774062249.629227,8.99,4,3992.50,48.26,1776.64,1889.44,0.00,3518084077333.287598,3518084090504.574219,238,2,28.254639,15.241786,24074743,15823009,0,0,21582,0,1,1 +1774062254.628770,7.53,4,3992.50,47.82,1791.75,1872.46,0.00,3518758596808.886230,3518758596810.895020,11,0,0.012964,24.848335,24075526,15825844,0,0,21585,0,1,1 +1774062259.628685,0.95,4,3992.50,47.87,1790.12,1874.03,0.00,1.496607,0.022071,227,170,0.003429,0.009532,24075631,15826027,0,0,21587,0,1,1 +1774062264.628945,1.95,4,3992.50,47.87,1790.18,1874.03,0.00,0.000000,0.000000,227,170,0.002797,0.008352,24075719,15826183,0,0,21590,0,1,1 +1774062269.628121,1.05,4,3992.50,47.87,1790.18,1874.02,0.00,62271.779042,49163.576493,5521837,836873,0.003434,0.009526,24075824,15826365,0,0,21592,0,1,1 +1774062274.628407,2.61,4,3992.50,47.96,1786.49,1877.71,0.00,0.000000,0.011718,5521837,836877,0.003483,0.009539,24075933,15826548,0,0,21595,0,1,1 +1774062279.624529,0.85,4,3992.50,47.98,1785.76,1878.44,0.00,0.000000,0.003909,5521837,836879,0.002749,0.007654,24076017,15826696,0,0,21597,0,1,1 +1774062284.625127,1.15,4,3992.50,47.98,1785.77,1878.44,0.00,3518016622252.307617,1.989996,5521073,836723,0.003433,0.009533,24076122,15826879,0,0,21600,0,1,1 +1774062289.625408,2.41,4,3992.50,47.82,1791.78,1872.41,0.00,4.065298,0.119915,5521837,836969,0.002734,0.007623,24076205,15827025,0,0,21602,0,1,1 +1774062294.626010,1.00,4,3992.50,47.42,1807.50,1856.67,0.00,3518013856378.619141,3518013869482.384766,70,0,0.003592,0.009727,24076323,15827221,0,0,21605,0,1,1 +1774062299.625964,0.90,4,3992.50,47.44,1806.81,1857.36,0.00,1.446595,0.022071,227,170,0.003601,0.009681,24076439,15827415,0,0,21607,0,1,1 +1774062304.625473,0.90,4,3992.50,47.44,1806.91,1857.30,0.00,3518782416919.445801,3518782416920.920410,11,0,0.002747,0.007634,24076523,15827562,0,0,21610,0,1,1 +1774062309.624511,0.75,4,3992.50,47.46,1805.96,1858.25,0.00,0.050010,0.000000,70,0,0.003434,0.009526,24076628,15827744,0,0,21612,0,1,1 +1774062314.628772,1.66,4,3992.50,47.47,1805.61,1858.59,0.00,1.445350,0.022052,227,170,0.004937,0.010849,24076764,15827954,0,0,21615,0,1,1 +1774062319.624513,43.30,4,3992.50,53.86,1567.07,2108.86,0.00,0.512644,3521436888553.702637,238,2,103.436680,0.051366,24087569,15831474,0,0,21617,0,1,1 +1774062324.625213,27.90,4,3992.50,53.88,1571.38,2109.52,0.00,3517944813403.259277,3517944813405.091309,199,0,120.149249,0.021308,24099957,15833015,0,0,21620,0,1,1 +1774062329.624499,28.10,4,3992.50,53.70,1578.53,2102.43,0.00,1.832098,0.000195,238,2,118.581008,0.044067,24112098,15836193,0,0,21622,0,1,1 +1774062334.627718,27.90,4,3992.50,53.86,1572.10,2108.84,0.00,62217.357776,49126.311818,5521121,837040,119.686912,0.024923,24124319,15838066,0,0,21625,0,1,1 +1774062339.624538,28.45,4,3992.50,53.98,1567.52,2113.44,0.00,3520675914865.857910,3520675927974.202148,227,170,120.246055,0.030104,24136868,15840104,0,0,21627,0,1,1 +1774062344.624468,29.28,4,3992.50,53.92,1569.69,2111.25,0.00,0.000000,0.000000,227,170,118.165732,0.048063,24148942,15843568,0,0,21630,0,1,1 +1774062349.625664,27.91,4,3992.50,53.95,1568.49,2112.42,0.00,3517596269101.476562,3517596269102.951172,11,0,120.137776,0.023771,24161300,15845264,0,0,21632,0,1,1 +1774062354.625380,28.75,4,3992.50,53.94,1569.21,2111.73,0.00,0.000000,0.000000,11,0,118.171762,0.036835,24173456,15847836,0,0,21635,0,1,1 +1774062359.629132,10.40,4,3992.50,48.48,1782.79,1898.17,0.00,0.000000,0.000000,11,0,86.857994,0.042382,24182365,15850760,0,0,21637,0,1,1 +1774062364.624514,4.82,4,3992.50,48.01,1801.30,1879.70,0.00,62321.284020,49203.889902,5521906,837450,0.010529,0.011422,24182582,15850998,0,0,21640,0,1,1 +1774062369.630473,24.32,4,3992.50,48.08,1798.50,1882.52,0.00,3514249077532.363281,3514249090622.043457,11,0,26.174861,0.123426,24191346,15857579,0,0,21642,0,1,1 +1774062374.625199,11.13,4,3992.50,48.87,1767.79,1913.22,0.00,2.010910,0.000196,238,2,14.066196,0.066130,24196057,15860966,0,0,21645,0,1,1 +1774062379.629414,1.15,4,3992.50,48.36,1787.52,1893.48,0.00,62205.987973,49117.651640,5521189,838400,0.003646,0.006483,24196150,15861094,0,0,21647,0,1,1 +1774062384.628204,2.11,4,3992.50,47.93,1804.45,1876.56,0.00,4.073544,0.030965,5521954,838596,0.005625,0.010883,24196291,15861303,0,0,21650,0,1,1 +1774062389.629424,3.96,4,3992.50,48.28,1790.33,1890.19,0.00,3517579413019.463379,3517579426121.687988,11,0,0.017249,13.828719,24197315,15863162,0,0,21652,0,1,1 +1774062394.624508,29.44,4,3992.50,48.57,1770.67,1901.52,0.00,2.010766,0.000196,238,2,0.063211,118.289852,24202010,15875526,0,0,21655,0,1,1 +1774062399.629062,19.36,4,3992.50,47.80,1795.57,1871.44,0.00,3515235285813.405273,3515235285815.362305,70,0,0.047001,73.043140,24205422,15883147,0,0,21657,0,1,1 +1774062404.628118,13.03,4,3992.50,52.99,1592.38,2074.63,0.00,0.126977,0.000000,199,0,40.073477,0.029606,24209855,15884761,0,0,21660,0,1,1 +1774062409.625928,2.01,4,3992.50,48.96,1750.25,1916.76,0.00,3519978624418.603516,0.000000,70,0,0.007149,0.010191,24210032,15884966,0,0,21662,0,1,1 +1774062414.628654,0.65,4,3992.50,48.52,1767.40,1899.61,0.00,62245.674648,49314.972278,5521383,839909,0.005032,0.010295,24210168,15885167,0,0,21665,0,1,1 diff --git a/evaluation/data/pipeline_validation_run2/pipeline.log b/evaluation/data/pipeline_validation_run2/pipeline.log new file mode 100644 index 0000000..d49e64c --- /dev/null +++ b/evaluation/data/pipeline_validation_run2/pipeline.log @@ -0,0 +1,5063 @@ +2026/03/20 16:48:24 detector: Ensemble method=sead contamination=0.15 +2026/03/20 16:48:24 detector: SEAD η=0.100 λ=0.010 quantile_window=300 +2026/03/20 16:48:24 detector: auto-scaling enabled +2026/03/20 16:48:24 pipeline started – waiting for SIGINT / SIGTERM +2026/03/20 16:48:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:48:29 ───────────────────────────────────────────────── +2026/03/20 16:48:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:48:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:29.575536451Z"} +2026/03/20 16:48:34 [metric_collector] {"stage_name":"metric_collector","events_processed":4,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0.8,"last_update":"2026-03-20T16:48:29.575783075Z"} +2026/03/20 16:48:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:29.58529338Z"} +2026/03/20 16:48:34 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:29.719577456Z"} +2026/03/20 16:48:34 [transform_engine] {"stage_name":"transform_engine","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:29.719599367Z"} +2026/03/20 16:48:34 ───────────────────────────────────────────────── +2026/03/20 16:48:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:48:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:34.575670538Z"} +2026/03/20 16:48:39 [metric_collector] {"stage_name":"metric_collector","events_processed":9,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1.8,"last_update":"2026-03-20T16:48:34.575964341Z"} +2026/03/20 16:48:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:34.584570094Z"} +2026/03/20 16:48:39 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:34.718794313Z"} +2026/03/20 16:48:39 [transform_engine] {"stage_name":"transform_engine","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:34.718743998Z"} +2026/03/20 16:48:39 ───────────────────────────────────────────────── +2026/03/20 16:48:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:48:44 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:39.719693062Z"} +2026/03/20 16:48:44 [transform_engine] {"stage_name":"transform_engine","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:39.719805904Z"} +2026/03/20 16:48:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:39.575531231Z"} +2026/03/20 16:48:44 [metric_collector] {"stage_name":"metric_collector","events_processed":14,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2.8,"last_update":"2026-03-20T16:48:39.575968435Z"} +2026/03/20 16:48:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:39.585382545Z"} +2026/03/20 16:48:44 ───────────────────────────────────────────────── +2026/03/20 16:48:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:48:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:44.575860115Z"} +2026/03/20 16:48:49 [metric_collector] {"stage_name":"metric_collector","events_processed":19,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3.8,"last_update":"2026-03-20T16:48:44.576518826Z"} +2026/03/20 16:48:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":10,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:44.585441162Z"} +2026/03/20 16:48:49 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:44.7196865Z"} +2026/03/20 16:48:49 [transform_engine] {"stage_name":"transform_engine","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:44.719741723Z"} +2026/03/20 16:48:49 ───────────────────────────────────────────────── +2026/03/20 16:48:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:48:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":12,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:49.584959564Z"} +2026/03/20 16:48:54 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:49.719508177Z"} +2026/03/20 16:48:54 [transform_engine] {"stage_name":"transform_engine","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:49.719397649Z"} +2026/03/20 16:48:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:49.575603758Z"} +2026/03/20 16:48:54 [metric_collector] {"stage_name":"metric_collector","events_processed":24,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4.8,"last_update":"2026-03-20T16:48:49.576337161Z"} +2026/03/20 16:48:54 ───────────────────────────────────────────────── +2026/03/20 16:48:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:48:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:54.576105206Z"} +2026/03/20 16:48:59 [metric_collector] {"stage_name":"metric_collector","events_processed":29,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5.8,"last_update":"2026-03-20T16:48:54.576092272Z"} +2026/03/20 16:48:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":12,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:54.576205004Z"} +2026/03/20 16:48:59 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:54.719540066Z"} +2026/03/20 16:48:59 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":116.941905,"throughput_eps":0,"last_update":"2026-03-20T16:48:54.836510845Z"} +2026/03/20 16:48:59 ───────────────────────────────────────────────── +2026/03/20 16:49:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:04 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":116.941905,"throughput_eps":0,"last_update":"2026-03-20T16:48:59.719123877Z"} +2026/03/20 16:49:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:59.575532235Z"} +2026/03/20 16:49:04 [metric_collector] {"stage_name":"metric_collector","events_processed":34,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6.8,"last_update":"2026-03-20T16:48:59.576019795Z"} +2026/03/20 16:49:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":16,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:59.587720891Z"} +2026/03/20 16:49:04 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.336335999999999,"throughput_eps":0,"last_update":"2026-03-20T16:48:59.71917319Z"} +2026/03/20 16:49:04 ───────────────────────────────────────────────── +2026/03/20 16:49:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:09 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":116.941905,"throughput_eps":0,"last_update":"2026-03-20T16:49:04.719482906Z"} +2026/03/20 16:49:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:04.575944069Z"} +2026/03/20 16:49:09 [metric_collector] {"stage_name":"metric_collector","events_processed":39,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7.8,"last_update":"2026-03-20T16:49:04.576692821Z"} +2026/03/20 16:49:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":18,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:04.585060822Z"} +2026/03/20 16:49:09 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.336335999999999,"throughput_eps":0,"last_update":"2026-03-20T16:49:04.719456406Z"} +2026/03/20 16:49:09 ───────────────────────────────────────────────── +2026/03/20 16:49:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:09.57549729Z"} +2026/03/20 16:49:14 [metric_collector] {"stage_name":"metric_collector","events_processed":44,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":8.8,"last_update":"2026-03-20T16:49:09.575818847Z"} +2026/03/20 16:49:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":20,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:09.586163401Z"} +2026/03/20 16:49:14 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.336335999999999,"throughput_eps":0,"last_update":"2026-03-20T16:49:09.719551276Z"} +2026/03/20 16:49:14 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":116.941905,"throughput_eps":0,"last_update":"2026-03-20T16:49:09.719565242Z"} +2026/03/20 16:49:14 ───────────────────────────────────────────────── +2026/03/20 16:49:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:14.575493572Z"} +2026/03/20 16:49:19 [metric_collector] {"stage_name":"metric_collector","events_processed":49,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":9.8,"last_update":"2026-03-20T16:49:14.575775264Z"} +2026/03/20 16:49:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":22,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:14.585754651Z"} +2026/03/20 16:49:19 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.336335999999999,"throughput_eps":0,"last_update":"2026-03-20T16:49:14.719166012Z"} +2026/03/20 16:49:19 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":116.941905,"throughput_eps":0,"last_update":"2026-03-20T16:49:14.719183655Z"} +2026/03/20 16:49:19 ───────────────────────────────────────────────── +2026/03/20 16:49:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:24 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":116.941905,"throughput_eps":0,"last_update":"2026-03-20T16:49:19.718985592Z"} +2026/03/20 16:49:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:19.575935993Z"} +2026/03/20 16:49:24 [metric_collector] {"stage_name":"metric_collector","events_processed":54,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":10.8,"last_update":"2026-03-20T16:49:19.576692923Z"} +2026/03/20 16:49:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":24,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:19.58465779Z"} +2026/03/20 16:49:24 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.336335999999999,"throughput_eps":0,"last_update":"2026-03-20T16:49:19.718970323Z"} +2026/03/20 16:49:24 ───────────────────────────────────────────────── +2026/03/20 16:49:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:29 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.336335999999999,"throughput_eps":0,"last_update":"2026-03-20T16:49:24.719142683Z"} +2026/03/20 16:49:29 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":116.26926880000002,"throughput_eps":0,"last_update":"2026-03-20T16:49:24.832734852Z"} +2026/03/20 16:49:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:24.575946834Z"} +2026/03/20 16:49:29 [metric_collector] {"stage_name":"metric_collector","events_processed":59,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":11.8,"last_update":"2026-03-20T16:49:24.576294771Z"} +2026/03/20 16:49:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":26,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:24.584827262Z"} +2026/03/20 16:49:29 ───────────────────────────────────────────────── +2026/03/20 16:49:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:34 [metric_collector] {"stage_name":"metric_collector","events_processed":64,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":12.8,"last_update":"2026-03-20T16:49:29.57599864Z"} +2026/03/20 16:49:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":28,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:29.585887356Z"} +2026/03/20 16:49:34 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.6488819999999995,"throughput_eps":0,"last_update":"2026-03-20T16:49:29.71930467Z"} +2026/03/20 16:49:34 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":116.26926880000002,"throughput_eps":0,"last_update":"2026-03-20T16:49:29.719319738Z"} +2026/03/20 16:49:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:29.575502624Z"} +2026/03/20 16:49:34 ───────────────────────────────────────────────── +2026/03/20 16:49:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:34.575556739Z"} +2026/03/20 16:49:39 [metric_collector] {"stage_name":"metric_collector","events_processed":69,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":13.8,"last_update":"2026-03-20T16:49:34.575595172Z"} +2026/03/20 16:49:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":30,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:34.585426081Z"} +2026/03/20 16:49:39 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.6488819999999995,"throughput_eps":0,"last_update":"2026-03-20T16:49:34.719770576Z"} +2026/03/20 16:49:39 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":116.26926880000002,"throughput_eps":0,"last_update":"2026-03-20T16:49:34.718646894Z"} +2026/03/20 16:49:39 ───────────────────────────────────────────────── +2026/03/20 16:49:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":32,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:39.585836618Z"} +2026/03/20 16:49:44 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.6488819999999995,"throughput_eps":0,"last_update":"2026-03-20T16:49:39.719228675Z"} +2026/03/20 16:49:44 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":116.26926880000002,"throughput_eps":0,"last_update":"2026-03-20T16:49:39.719239665Z"} +2026/03/20 16:49:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:39.575768218Z"} +2026/03/20 16:49:44 [metric_collector] {"stage_name":"metric_collector","events_processed":74,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":14.8,"last_update":"2026-03-20T16:49:39.576147224Z"} +2026/03/20 16:49:44 ───────────────────────────────────────────────── +2026/03/20 16:49:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:44.575853244Z"} +2026/03/20 16:49:49 [metric_collector] {"stage_name":"metric_collector","events_processed":79,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":15.8,"last_update":"2026-03-20T16:49:44.576470551Z"} +2026/03/20 16:49:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":34,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:44.587258184Z"} +2026/03/20 16:49:49 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.6488819999999995,"throughput_eps":0,"last_update":"2026-03-20T16:49:44.719628298Z"} +2026/03/20 16:49:49 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":116.26926880000002,"throughput_eps":0,"last_update":"2026-03-20T16:49:44.719639449Z"} +2026/03/20 16:49:49 ───────────────────────────────────────────────── +2026/03/20 16:49:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:49.575591094Z"} +2026/03/20 16:49:54 [metric_collector] {"stage_name":"metric_collector","events_processed":84,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":16.8,"last_update":"2026-03-20T16:49:49.575687335Z"} +2026/03/20 16:49:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":36,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:49.586302415Z"} +2026/03/20 16:49:54 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.6488819999999995,"throughput_eps":0,"last_update":"2026-03-20T16:49:49.719602785Z"} +2026/03/20 16:49:54 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":116.26926880000002,"throughput_eps":0,"last_update":"2026-03-20T16:49:49.719615039Z"} +2026/03/20 16:49:54 ───────────────────────────────────────────────── +2026/03/20 16:49:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:59 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":106.24250644000003,"throughput_eps":0,"last_update":"2026-03-20T16:49:54.785284587Z"} +2026/03/20 16:49:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:54.575806051Z"} +2026/03/20 16:49:59 [metric_collector] {"stage_name":"metric_collector","events_processed":89,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":17.8,"last_update":"2026-03-20T16:49:54.576158607Z"} +2026/03/20 16:49:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":38,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:54.587900078Z"} +2026/03/20 16:49:59 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.6488819999999995,"throughput_eps":0,"last_update":"2026-03-20T16:49:54.719139241Z"} +2026/03/20 16:49:59 ───────────────────────────────────────────────── +2026/03/20 16:50:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:04 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":106.24250644000003,"throughput_eps":0,"last_update":"2026-03-20T16:49:59.719235596Z"} +2026/03/20 16:50:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:59.575955204Z"} +2026/03/20 16:50:04 [metric_collector] {"stage_name":"metric_collector","events_processed":94,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":18.8,"last_update":"2026-03-20T16:49:59.576567402Z"} +2026/03/20 16:50:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":40,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:59.586833807Z"} +2026/03/20 16:50:04 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.5925302,"throughput_eps":0,"last_update":"2026-03-20T16:49:59.719209567Z"} +2026/03/20 16:50:04 ───────────────────────────────────────────────── +2026/03/20 16:50:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:09 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":106.24250644000003,"throughput_eps":0,"last_update":"2026-03-20T16:50:04.718781386Z"} +2026/03/20 16:50:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:04.575691504Z"} +2026/03/20 16:50:09 [metric_collector] {"stage_name":"metric_collector","events_processed":99,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":19.8,"last_update":"2026-03-20T16:50:04.576062586Z"} +2026/03/20 16:50:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":42,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:04.587571303Z"} +2026/03/20 16:50:09 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.5925302,"throughput_eps":0,"last_update":"2026-03-20T16:50:04.718882588Z"} +2026/03/20 16:50:09 ───────────────────────────────────────────────── +2026/03/20 16:50:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:14 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":106.24250644000003,"throughput_eps":0,"last_update":"2026-03-20T16:50:09.719720708Z"} +2026/03/20 16:50:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:09.57552283Z"} +2026/03/20 16:50:14 [metric_collector] {"stage_name":"metric_collector","events_processed":104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":20.8,"last_update":"2026-03-20T16:50:09.575517259Z"} +2026/03/20 16:50:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":44,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:09.586505556Z"} +2026/03/20 16:50:14 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.5925302,"throughput_eps":0,"last_update":"2026-03-20T16:50:09.719680411Z"} +2026/03/20 16:50:14 ───────────────────────────────────────────────── +2026/03/20 16:50:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:19 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.5925302,"throughput_eps":0,"last_update":"2026-03-20T16:50:14.719565237Z"} +2026/03/20 16:50:19 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":106.24250644000003,"throughput_eps":0,"last_update":"2026-03-20T16:50:14.719448135Z"} +2026/03/20 16:50:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:14.575595401Z"} +2026/03/20 16:50:19 [metric_collector] {"stage_name":"metric_collector","events_processed":109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":21.8,"last_update":"2026-03-20T16:50:14.575629916Z"} +2026/03/20 16:50:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":46,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:14.585055922Z"} +2026/03/20 16:50:19 ───────────────────────────────────────────────── +2026/03/20 16:50:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:19.57563212Z"} +2026/03/20 16:50:24 [metric_collector] {"stage_name":"metric_collector","events_processed":114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":22.8,"last_update":"2026-03-20T16:50:19.575936035Z"} +2026/03/20 16:50:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":48,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:19.585837934Z"} +2026/03/20 16:50:24 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.5925302,"throughput_eps":0,"last_update":"2026-03-20T16:50:19.719195087Z"} +2026/03/20 16:50:24 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":106.24250644000003,"throughput_eps":0,"last_update":"2026-03-20T16:50:19.719237988Z"} +2026/03/20 16:50:24 ───────────────────────────────────────────────── +2026/03/20 16:50:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:29 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.5925302,"throughput_eps":0,"last_update":"2026-03-20T16:50:24.719198455Z"} +2026/03/20 16:50:29 [transform_engine] {"stage_name":"transform_engine","events_processed":4,"events_dropped":0,"avg_latency_ms":107.08107695200003,"throughput_eps":0,"last_update":"2026-03-20T16:50:24.829228097Z"} +2026/03/20 16:50:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:24.575678131Z"} +2026/03/20 16:50:29 [metric_collector] {"stage_name":"metric_collector","events_processed":119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":23.8,"last_update":"2026-03-20T16:50:24.576015419Z"} +2026/03/20 16:50:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":50,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:24.585537732Z"} +2026/03/20 16:50:29 ───────────────────────────────────────────────── +2026/03/20 16:50:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:29.575676984Z"} +2026/03/20 16:50:34 [metric_collector] {"stage_name":"metric_collector","events_processed":124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":24.8,"last_update":"2026-03-20T16:50:29.576021606Z"} +2026/03/20 16:50:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":52,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:29.586575203Z"} +2026/03/20 16:50:34 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.74883116,"throughput_eps":0,"last_update":"2026-03-20T16:50:29.718849969Z"} +2026/03/20 16:50:34 [transform_engine] {"stage_name":"transform_engine","events_processed":4,"events_dropped":0,"avg_latency_ms":107.08107695200003,"throughput_eps":0,"last_update":"2026-03-20T16:50:29.718863625Z"} +2026/03/20 16:50:34 ───────────────────────────────────────────────── +2026/03/20 16:50:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":54,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:34.585291978Z"} +2026/03/20 16:50:39 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.74883116,"throughput_eps":0,"last_update":"2026-03-20T16:50:34.719545535Z"} +2026/03/20 16:50:39 [transform_engine] {"stage_name":"transform_engine","events_processed":4,"events_dropped":0,"avg_latency_ms":107.08107695200003,"throughput_eps":0,"last_update":"2026-03-20T16:50:34.71955884Z"} +2026/03/20 16:50:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:34.575538012Z"} +2026/03/20 16:50:39 [metric_collector] {"stage_name":"metric_collector","events_processed":129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":25.8,"last_update":"2026-03-20T16:50:34.575906299Z"} +2026/03/20 16:50:39 ───────────────────────────────────────────────── +2026/03/20 16:50:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:44 [transform_engine] {"stage_name":"transform_engine","events_processed":4,"events_dropped":0,"avg_latency_ms":107.08107695200003,"throughput_eps":0,"last_update":"2026-03-20T16:50:39.718729594Z"} +2026/03/20 16:50:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:39.575534169Z"} +2026/03/20 16:50:44 [metric_collector] {"stage_name":"metric_collector","events_processed":134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":26.8,"last_update":"2026-03-20T16:50:39.575770838Z"} +2026/03/20 16:50:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":56,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:39.585606031Z"} +2026/03/20 16:50:44 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.74883116,"throughput_eps":0,"last_update":"2026-03-20T16:50:39.718850903Z"} +2026/03/20 16:50:44 ───────────────────────────────────────────────── +2026/03/20 16:50:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:49 [metric_collector] {"stage_name":"metric_collector","events_processed":139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":27.8,"last_update":"2026-03-20T16:50:44.576706484Z"} +2026/03/20 16:50:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":58,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:44.586733943Z"} +2026/03/20 16:50:49 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.74883116,"throughput_eps":0,"last_update":"2026-03-20T16:50:44.718945104Z"} +2026/03/20 16:50:49 [transform_engine] {"stage_name":"transform_engine","events_processed":4,"events_dropped":0,"avg_latency_ms":107.08107695200003,"throughput_eps":0,"last_update":"2026-03-20T16:50:44.718955274Z"} +2026/03/20 16:50:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:44.575932649Z"} +2026/03/20 16:50:49 ───────────────────────────────────────────────── +2026/03/20 16:50:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:49.576000945Z"} +2026/03/20 16:50:54 [metric_collector] {"stage_name":"metric_collector","events_processed":144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":28.8,"last_update":"2026-03-20T16:50:49.576370875Z"} +2026/03/20 16:50:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":60,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:49.584641882Z"} +2026/03/20 16:50:54 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.74883116,"throughput_eps":0,"last_update":"2026-03-20T16:50:49.718788081Z"} +2026/03/20 16:50:54 [transform_engine] {"stage_name":"transform_engine","events_processed":4,"events_dropped":0,"avg_latency_ms":107.08107695200003,"throughput_eps":0,"last_update":"2026-03-20T16:50:49.718801366Z"} +2026/03/20 16:50:54 ───────────────────────────────────────────────── +2026/03/20 16:50:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:54.575959145Z"} +2026/03/20 16:50:59 [metric_collector] {"stage_name":"metric_collector","events_processed":149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":29.8,"last_update":"2026-03-20T16:50:54.576295311Z"} +2026/03/20 16:50:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":62,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:54.584911986Z"} +2026/03/20 16:50:59 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.74883116,"throughput_eps":0,"last_update":"2026-03-20T16:50:54.719214694Z"} +2026/03/20 16:50:59 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":108.45506696160004,"throughput_eps":0,"last_update":"2026-03-20T16:50:54.833174689Z"} +2026/03/20 16:50:59 ───────────────────────────────────────────────── +2026/03/20 16:51:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:04 [metric_collector] {"stage_name":"metric_collector","events_processed":154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":30.8,"last_update":"2026-03-20T16:50:59.575604839Z"} +2026/03/20 16:51:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":64,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:59.585501618Z"} +2026/03/20 16:51:04 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":4.904423528000001,"throughput_eps":0,"last_update":"2026-03-20T16:50:59.719794733Z"} +2026/03/20 16:51:04 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":108.45506696160004,"throughput_eps":0,"last_update":"2026-03-20T16:50:59.718697826Z"} +2026/03/20 16:51:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:59.575497305Z"} +2026/03/20 16:51:04 ───────────────────────────────────────────────── +2026/03/20 16:51:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:04.575876206Z"} +2026/03/20 16:51:09 [metric_collector] {"stage_name":"metric_collector","events_processed":159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":31.8,"last_update":"2026-03-20T16:51:04.576536647Z"} +2026/03/20 16:51:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":66,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:04.585613267Z"} +2026/03/20 16:51:09 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":4.904423528000001,"throughput_eps":0,"last_update":"2026-03-20T16:51:04.718910449Z"} +2026/03/20 16:51:09 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":108.45506696160004,"throughput_eps":0,"last_update":"2026-03-20T16:51:04.718864632Z"} +2026/03/20 16:51:09 ───────────────────────────────────────────────── +2026/03/20 16:51:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:14 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":108.45506696160004,"throughput_eps":0,"last_update":"2026-03-20T16:51:09.719568995Z"} +2026/03/20 16:51:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:09.575865991Z"} +2026/03/20 16:51:14 [metric_collector] {"stage_name":"metric_collector","events_processed":164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":32.8,"last_update":"2026-03-20T16:51:09.576268643Z"} +2026/03/20 16:51:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":68,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:09.586227977Z"} +2026/03/20 16:51:14 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":4.904423528000001,"throughput_eps":0,"last_update":"2026-03-20T16:51:09.719469807Z"} +2026/03/20 16:51:14 ───────────────────────────────────────────────── +2026/03/20 16:51:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":70,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:14.585563722Z"} +2026/03/20 16:51:19 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":4.904423528000001,"throughput_eps":0,"last_update":"2026-03-20T16:51:14.718823028Z"} +2026/03/20 16:51:19 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":108.45506696160004,"throughput_eps":0,"last_update":"2026-03-20T16:51:14.718796428Z"} +2026/03/20 16:51:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:14.575802631Z"} +2026/03/20 16:51:19 [metric_collector] {"stage_name":"metric_collector","events_processed":169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":33.8,"last_update":"2026-03-20T16:51:14.576032186Z"} +2026/03/20 16:51:19 ───────────────────────────────────────────────── +2026/03/20 16:51:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:19.576239943Z"} +2026/03/20 16:51:24 [metric_collector] {"stage_name":"metric_collector","events_processed":174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":34.8,"last_update":"2026-03-20T16:51:19.576857783Z"} +2026/03/20 16:51:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":72,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:19.585763315Z"} +2026/03/20 16:51:24 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":4.904423528000001,"throughput_eps":0,"last_update":"2026-03-20T16:51:19.719098538Z"} +2026/03/20 16:51:24 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":108.45506696160004,"throughput_eps":0,"last_update":"2026-03-20T16:51:19.71898359Z"} +2026/03/20 16:51:24 ───────────────────────────────────────────────── +2026/03/20 16:51:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:29 [metric_collector] {"stage_name":"metric_collector","events_processed":179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":35.8,"last_update":"2026-03-20T16:51:24.5759187Z"} +2026/03/20 16:51:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":74,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:24.586973626Z"} +2026/03/20 16:51:29 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":4.904423528000001,"throughput_eps":0,"last_update":"2026-03-20T16:51:24.719256537Z"} +2026/03/20 16:51:29 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":110.37128296928003,"throughput_eps":0,"last_update":"2026-03-20T16:51:24.837440646Z"} +2026/03/20 16:51:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:24.575527129Z"} +2026/03/20 16:51:29 ───────────────────────────────────────────────── +2026/03/20 16:51:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:29.57587163Z"} +2026/03/20 16:51:34 [metric_collector] {"stage_name":"metric_collector","events_processed":184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":36.8,"last_update":"2026-03-20T16:51:29.57621459Z"} +2026/03/20 16:51:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":76,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:29.585142618Z"} +2026/03/20 16:51:34 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":5.3549208224000004,"throughput_eps":0,"last_update":"2026-03-20T16:51:29.719529348Z"} +2026/03/20 16:51:34 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":110.37128296928003,"throughput_eps":0,"last_update":"2026-03-20T16:51:29.719380996Z"} +2026/03/20 16:51:34 ───────────────────────────────────────────────── +2026/03/20 16:51:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:34.575817233Z"} +2026/03/20 16:51:39 [metric_collector] {"stage_name":"metric_collector","events_processed":189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":37.8,"last_update":"2026-03-20T16:51:34.576144453Z"} +2026/03/20 16:51:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":78,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:34.587217329Z"} +2026/03/20 16:51:39 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":5.3549208224000004,"throughput_eps":0,"last_update":"2026-03-20T16:51:34.719528386Z"} +2026/03/20 16:51:39 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":110.37128296928003,"throughput_eps":0,"last_update":"2026-03-20T16:51:34.719534618Z"} +2026/03/20 16:51:39 ───────────────────────────────────────────────── +2026/03/20 16:51:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:44 [metric_collector] {"stage_name":"metric_collector","events_processed":194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":38.8,"last_update":"2026-03-20T16:51:39.576155628Z"} +2026/03/20 16:51:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":80,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:39.586343099Z"} +2026/03/20 16:51:44 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":5.3549208224000004,"throughput_eps":0,"last_update":"2026-03-20T16:51:39.719745355Z"} +2026/03/20 16:51:44 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":110.37128296928003,"throughput_eps":0,"last_update":"2026-03-20T16:51:39.719759753Z"} +2026/03/20 16:51:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:39.575753866Z"} +2026/03/20 16:51:44 ───────────────────────────────────────────────── +2026/03/20 16:51:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:44.575792361Z"} +2026/03/20 16:51:49 [metric_collector] {"stage_name":"metric_collector","events_processed":199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":39.8,"last_update":"2026-03-20T16:51:44.576296226Z"} +2026/03/20 16:51:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":82,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:44.584910616Z"} +2026/03/20 16:51:49 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":5.3549208224000004,"throughput_eps":0,"last_update":"2026-03-20T16:51:44.71915501Z"} +2026/03/20 16:51:49 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":110.37128296928003,"throughput_eps":0,"last_update":"2026-03-20T16:51:44.719166973Z"} +2026/03/20 16:51:49 ───────────────────────────────────────────────── +2026/03/20 16:51:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":84,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:49.587098172Z"} +2026/03/20 16:51:54 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":5.3549208224000004,"throughput_eps":0,"last_update":"2026-03-20T16:51:49.719504342Z"} +2026/03/20 16:51:54 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":110.37128296928003,"throughput_eps":0,"last_update":"2026-03-20T16:51:49.719528368Z"} +2026/03/20 16:51:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:49.575813006Z"} +2026/03/20 16:51:54 [metric_collector] {"stage_name":"metric_collector","events_processed":204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":40.8,"last_update":"2026-03-20T16:51:49.575708538Z"} +2026/03/20 16:51:54 ───────────────────────────────────────────────── +2026/03/20 16:51:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:54.575847329Z"} +2026/03/20 16:51:59 [metric_collector] {"stage_name":"metric_collector","events_processed":209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":41.8,"last_update":"2026-03-20T16:51:54.57607407Z"} +2026/03/20 16:51:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":86,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:54.585249137Z"} +2026/03/20 16:51:59 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":5.3549208224000004,"throughput_eps":0,"last_update":"2026-03-20T16:51:54.719640361Z"} +2026/03/20 16:51:59 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":110.37128296928003,"throughput_eps":0,"last_update":"2026-03-20T16:51:54.719653957Z"} +2026/03/20 16:51:59 ───────────────────────────────────────────────── +2026/03/20 16:52:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:04 [transform_engine] {"stage_name":"transform_engine","events_processed":7,"events_dropped":0,"avg_latency_ms":100.96300297542402,"throughput_eps":0,"last_update":"2026-03-20T16:51:59.719323264Z"} +2026/03/20 16:52:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:59.576011202Z"} +2026/03/20 16:52:04 [metric_collector] {"stage_name":"metric_collector","events_processed":214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":42.8,"last_update":"2026-03-20T16:51:59.576553881Z"} +2026/03/20 16:52:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":88,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:59.585084197Z"} +2026/03/20 16:52:04 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.664770657920001,"throughput_eps":0,"last_update":"2026-03-20T16:51:59.719416651Z"} +2026/03/20 16:52:04 ───────────────────────────────────────────────── +2026/03/20 16:52:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:04.575725964Z"} +2026/03/20 16:52:09 [metric_collector] {"stage_name":"metric_collector","events_processed":219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":43.8,"last_update":"2026-03-20T16:52:04.575807548Z"} +2026/03/20 16:52:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":90,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:04.585678209Z"} +2026/03/20 16:52:09 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.664770657920001,"throughput_eps":0,"last_update":"2026-03-20T16:52:04.719025162Z"} +2026/03/20 16:52:09 [transform_engine] {"stage_name":"transform_engine","events_processed":7,"events_dropped":0,"avg_latency_ms":100.96300297542402,"throughput_eps":0,"last_update":"2026-03-20T16:52:04.718900646Z"} +2026/03/20 16:52:09 ───────────────────────────────────────────────── +2026/03/20 16:52:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":92,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:09.584733061Z"} +2026/03/20 16:52:14 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.664770657920001,"throughput_eps":0,"last_update":"2026-03-20T16:52:09.718969862Z"} +2026/03/20 16:52:14 [transform_engine] {"stage_name":"transform_engine","events_processed":7,"events_dropped":0,"avg_latency_ms":100.96300297542402,"throughput_eps":0,"last_update":"2026-03-20T16:52:09.718997284Z"} +2026/03/20 16:52:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:09.575830074Z"} +2026/03/20 16:52:14 [metric_collector] {"stage_name":"metric_collector","events_processed":224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":44.8,"last_update":"2026-03-20T16:52:09.576378333Z"} +2026/03/20 16:52:14 ───────────────────────────────────────────────── +2026/03/20 16:52:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:19 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.664770657920001,"throughput_eps":0,"last_update":"2026-03-20T16:52:14.719738352Z"} +2026/03/20 16:52:19 [transform_engine] {"stage_name":"transform_engine","events_processed":7,"events_dropped":0,"avg_latency_ms":100.96300297542402,"throughput_eps":0,"last_update":"2026-03-20T16:52:14.719698706Z"} +2026/03/20 16:52:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:14.575541236Z"} +2026/03/20 16:52:19 [metric_collector] {"stage_name":"metric_collector","events_processed":229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":45.8,"last_update":"2026-03-20T16:52:14.576072904Z"} +2026/03/20 16:52:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":94,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:14.585346217Z"} +2026/03/20 16:52:19 ───────────────────────────────────────────────── +2026/03/20 16:52:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:24 [transform_engine] {"stage_name":"transform_engine","events_processed":7,"events_dropped":0,"avg_latency_ms":100.96300297542402,"throughput_eps":0,"last_update":"2026-03-20T16:52:19.719384301Z"} +2026/03/20 16:52:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:19.575909094Z"} +2026/03/20 16:52:24 [metric_collector] {"stage_name":"metric_collector","events_processed":234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":46.8,"last_update":"2026-03-20T16:52:19.576231235Z"} +2026/03/20 16:52:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":96,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:19.586063179Z"} +2026/03/20 16:52:24 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.664770657920001,"throughput_eps":0,"last_update":"2026-03-20T16:52:19.719403157Z"} +2026/03/20 16:52:24 ───────────────────────────────────────────────── +2026/03/20 16:52:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:24.575498344Z"} +2026/03/20 16:52:29 [metric_collector] {"stage_name":"metric_collector","events_processed":239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":47.8,"last_update":"2026-03-20T16:52:24.575872955Z"} +2026/03/20 16:52:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":98,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:24.585687548Z"} +2026/03/20 16:52:29 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.664770657920001,"throughput_eps":0,"last_update":"2026-03-20T16:52:24.718930802Z"} +2026/03/20 16:52:29 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":93.47140998033922,"throughput_eps":0,"last_update":"2026-03-20T16:52:24.782450026Z"} +2026/03/20 16:52:29 ───────────────────────────────────────────────── +2026/03/20 16:52:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:29.575694283Z"} +2026/03/20 16:52:34 [metric_collector] {"stage_name":"metric_collector","events_processed":244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":48.8,"last_update":"2026-03-20T16:52:29.576091317Z"} +2026/03/20 16:52:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:29.585402415Z"} +2026/03/20 16:52:34 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":5.952213726336001,"throughput_eps":0,"last_update":"2026-03-20T16:52:29.719765983Z"} +2026/03/20 16:52:34 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":93.47140998033922,"throughput_eps":0,"last_update":"2026-03-20T16:52:29.719728813Z"} +2026/03/20 16:52:34 ───────────────────────────────────────────────── +2026/03/20 16:52:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:39 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":93.47140998033922,"throughput_eps":0,"last_update":"2026-03-20T16:52:34.718976661Z"} +2026/03/20 16:52:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:34.575554192Z"} +2026/03/20 16:52:39 [metric_collector] {"stage_name":"metric_collector","events_processed":249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":49.8,"last_update":"2026-03-20T16:52:34.576156545Z"} +2026/03/20 16:52:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:34.585636687Z"} +2026/03/20 16:52:39 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":5.952213726336001,"throughput_eps":0,"last_update":"2026-03-20T16:52:34.718840303Z"} +2026/03/20 16:52:39 ───────────────────────────────────────────────── +2026/03/20 16:52:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:44 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":5.952213726336001,"throughput_eps":0,"last_update":"2026-03-20T16:52:39.719291779Z"} +2026/03/20 16:52:44 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":93.47140998033922,"throughput_eps":0,"last_update":"2026-03-20T16:52:39.719224441Z"} +2026/03/20 16:52:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:39.575734785Z"} +2026/03/20 16:52:44 [metric_collector] {"stage_name":"metric_collector","events_processed":254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":50.8,"last_update":"2026-03-20T16:52:39.576067947Z"} +2026/03/20 16:52:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:39.586983056Z"} +2026/03/20 16:52:44 ───────────────────────────────────────────────── +2026/03/20 16:52:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:44.575586853Z"} +2026/03/20 16:52:49 [metric_collector] {"stage_name":"metric_collector","events_processed":259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":51.8,"last_update":"2026-03-20T16:52:44.575682484Z"} +2026/03/20 16:52:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:44.58603727Z"} +2026/03/20 16:52:49 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":5.952213726336001,"throughput_eps":0,"last_update":"2026-03-20T16:52:44.719490244Z"} +2026/03/20 16:52:49 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":93.47140998033922,"throughput_eps":0,"last_update":"2026-03-20T16:52:44.719520561Z"} +2026/03/20 16:52:49 ───────────────────────────────────────────────── +2026/03/20 16:52:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:49.575728958Z"} +2026/03/20 16:52:54 [metric_collector] {"stage_name":"metric_collector","events_processed":264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":52.8,"last_update":"2026-03-20T16:52:49.576110122Z"} +2026/03/20 16:52:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:49.585335797Z"} +2026/03/20 16:52:54 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":5.952213726336001,"throughput_eps":0,"last_update":"2026-03-20T16:52:49.719685529Z"} +2026/03/20 16:52:54 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":93.47140998033922,"throughput_eps":0,"last_update":"2026-03-20T16:52:49.719700708Z"} +2026/03/20 16:52:54 ───────────────────────────────────────────────── +2026/03/20 16:52:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:54.575819843Z"} +2026/03/20 16:52:59 [metric_collector] {"stage_name":"metric_collector","events_processed":269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":53.8,"last_update":"2026-03-20T16:52:54.576231174Z"} +2026/03/20 16:52:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:54.585836402Z"} +2026/03/20 16:52:59 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":5.952213726336001,"throughput_eps":0,"last_update":"2026-03-20T16:52:54.719482946Z"} +2026/03/20 16:52:59 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":88.24757618427137,"throughput_eps":0,"last_update":"2026-03-20T16:52:54.786557941Z"} +2026/03/20 16:52:59 ───────────────────────────────────────────────── +2026/03/20 16:53:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:59.576043195Z"} +2026/03/20 16:53:04 [metric_collector] {"stage_name":"metric_collector","events_processed":274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":54.8,"last_update":"2026-03-20T16:52:59.576562771Z"} +2026/03/20 16:53:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:59.585064235Z"} +2026/03/20 16:53:04 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":6.407688381068801,"throughput_eps":0,"last_update":"2026-03-20T16:52:59.719271692Z"} +2026/03/20 16:53:04 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":88.24757618427137,"throughput_eps":0,"last_update":"2026-03-20T16:52:59.719377112Z"} +2026/03/20 16:53:04 ───────────────────────────────────────────────── +2026/03/20 16:53:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:04.575902495Z"} +2026/03/20 16:53:09 [metric_collector] {"stage_name":"metric_collector","events_processed":279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":55.8,"last_update":"2026-03-20T16:53:04.576469151Z"} +2026/03/20 16:53:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:04.586781976Z"} +2026/03/20 16:53:09 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":6.407688381068801,"throughput_eps":0,"last_update":"2026-03-20T16:53:04.718918306Z"} +2026/03/20 16:53:09 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":88.24757618427137,"throughput_eps":0,"last_update":"2026-03-20T16:53:04.718937242Z"} +2026/03/20 16:53:09 ───────────────────────────────────────────────── +2026/03/20 16:53:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:09.575760499Z"} +2026/03/20 16:53:14 [metric_collector] {"stage_name":"metric_collector","events_processed":283,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":56.6,"last_update":"2026-03-20T16:53:09.575765869Z"} +2026/03/20 16:53:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:09.58687059Z"} +2026/03/20 16:53:14 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":6.407688381068801,"throughput_eps":0,"last_update":"2026-03-20T16:53:09.719095243Z"} +2026/03/20 16:53:14 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":88.24757618427137,"throughput_eps":0,"last_update":"2026-03-20T16:53:09.719109782Z"} +2026/03/20 16:53:14 ───────────────────────────────────────────────── +2026/03/20 16:53:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:19 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":6.407688381068801,"throughput_eps":0,"last_update":"2026-03-20T16:53:14.719177148Z"} +2026/03/20 16:53:19 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":88.24757618427137,"throughput_eps":0,"last_update":"2026-03-20T16:53:14.719211033Z"} +2026/03/20 16:53:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:14.575551563Z"} +2026/03/20 16:53:19 [metric_collector] {"stage_name":"metric_collector","events_processed":289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":57.8,"last_update":"2026-03-20T16:53:14.575946093Z"} +2026/03/20 16:53:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:14.585796413Z"} +2026/03/20 16:53:19 ───────────────────────────────────────────────── +2026/03/20 16:53:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:24 [metric_collector] {"stage_name":"metric_collector","events_processed":294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":58.8,"last_update":"2026-03-20T16:53:19.576086358Z"} +2026/03/20 16:53:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:19.58581002Z"} +2026/03/20 16:53:24 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":6.407688381068801,"throughput_eps":0,"last_update":"2026-03-20T16:53:19.719095871Z"} +2026/03/20 16:53:24 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":88.24757618427137,"throughput_eps":0,"last_update":"2026-03-20T16:53:19.719142219Z"} +2026/03/20 16:53:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:19.575839169Z"} +2026/03/20 16:53:24 ───────────────────────────────────────────────── +2026/03/20 16:53:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:24.575734349Z"} +2026/03/20 16:53:29 [metric_collector] {"stage_name":"metric_collector","events_processed":299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":59.8,"last_update":"2026-03-20T16:53:24.576022947Z"} +2026/03/20 16:53:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":122,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:24.586312305Z"} +2026/03/20 16:53:29 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":6.407688381068801,"throughput_eps":0,"last_update":"2026-03-20T16:53:24.719919412Z"} +2026/03/20 16:53:29 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":83.2126591474171,"throughput_eps":0,"last_update":"2026-03-20T16:53:24.782817452Z"} +2026/03/20 16:53:29 ───────────────────────────────────────────────── +2026/03/20 16:53:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:34 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":6.370236304855041,"throughput_eps":0,"last_update":"2026-03-20T16:53:29.719497275Z"} +2026/03/20 16:53:34 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":83.2126591474171,"throughput_eps":0,"last_update":"2026-03-20T16:53:29.71950515Z"} +2026/03/20 16:53:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:34.575505873Z"} +2026/03/20 16:53:34 [metric_collector] {"stage_name":"metric_collector","events_processed":304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":60.8,"last_update":"2026-03-20T16:53:29.575825572Z"} +2026/03/20 16:53:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:29.585249427Z"} +2026/03/20 16:53:34 ───────────────────────────────────────────────── +2026/03/20 16:53:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:39 [metric_collector] {"stage_name":"metric_collector","events_processed":309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":61.8,"last_update":"2026-03-20T16:53:34.576313668Z"} +2026/03/20 16:53:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":126,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:34.585630352Z"} +2026/03/20 16:53:39 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":6.370236304855041,"throughput_eps":0,"last_update":"2026-03-20T16:53:34.718807572Z"} +2026/03/20 16:53:39 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":83.2126591474171,"throughput_eps":0,"last_update":"2026-03-20T16:53:34.718818903Z"} +2026/03/20 16:53:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:34.575505873Z"} +2026/03/20 16:53:39 ───────────────────────────────────────────────── +2026/03/20 16:53:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:39.576001175Z"} +2026/03/20 16:53:44 [metric_collector] {"stage_name":"metric_collector","events_processed":314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":62.8,"last_update":"2026-03-20T16:53:39.576513319Z"} +2026/03/20 16:53:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":128,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:39.585250303Z"} +2026/03/20 16:53:44 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":6.370236304855041,"throughput_eps":0,"last_update":"2026-03-20T16:53:39.719561894Z"} +2026/03/20 16:53:44 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":83.2126591474171,"throughput_eps":0,"last_update":"2026-03-20T16:53:39.71957584Z"} +2026/03/20 16:53:44 ───────────────────────────────────────────────── +2026/03/20 16:53:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:49 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":83.2126591474171,"throughput_eps":0,"last_update":"2026-03-20T16:53:44.719655129Z"} +2026/03/20 16:53:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:44.575795026Z"} +2026/03/20 16:53:49 [metric_collector] {"stage_name":"metric_collector","events_processed":319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":63.8,"last_update":"2026-03-20T16:53:44.576582994Z"} +2026/03/20 16:53:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":130,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:44.586229709Z"} +2026/03/20 16:53:49 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":6.370236304855041,"throughput_eps":0,"last_update":"2026-03-20T16:53:44.719638668Z"} +2026/03/20 16:53:49 ───────────────────────────────────────────────── +2026/03/20 16:53:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:49.575555506Z"} +2026/03/20 16:53:54 [metric_collector] {"stage_name":"metric_collector","events_processed":324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":64.8,"last_update":"2026-03-20T16:53:49.576014449Z"} +2026/03/20 16:53:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:49.58600057Z"} +2026/03/20 16:53:54 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":6.370236304855041,"throughput_eps":0,"last_update":"2026-03-20T16:53:49.718832186Z"} +2026/03/20 16:53:54 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":83.2126591474171,"throughput_eps":0,"last_update":"2026-03-20T16:53:49.718843838Z"} +2026/03/20 16:53:54 ───────────────────────────────────────────────── +2026/03/20 16:53:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:59 [metric_collector] {"stage_name":"metric_collector","events_processed":329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":65.8,"last_update":"2026-03-20T16:53:54.575760867Z"} +2026/03/20 16:53:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:54.586197667Z"} +2026/03/20 16:53:59 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":6.370236304855041,"throughput_eps":0,"last_update":"2026-03-20T16:53:54.71958779Z"} +2026/03/20 16:53:59 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":89.20370731793369,"throughput_eps":0,"last_update":"2026-03-20T16:53:54.832770387Z"} +2026/03/20 16:53:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:54.57554678Z"} +2026/03/20 16:53:59 ───────────────────────────────────────────────── +2026/03/20 16:54:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:59.575532939Z"} +2026/03/20 16:54:04 [metric_collector] {"stage_name":"metric_collector","events_processed":334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":66.8,"last_update":"2026-03-20T16:53:59.575765622Z"} +2026/03/20 16:54:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:59.585235605Z"} +2026/03/20 16:54:04 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":6.842923443884033,"throughput_eps":0,"last_update":"2026-03-20T16:53:59.719638476Z"} +2026/03/20 16:54:04 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":89.20370731793369,"throughput_eps":0,"last_update":"2026-03-20T16:53:59.719667271Z"} +2026/03/20 16:54:04 ───────────────────────────────────────────────── +2026/03/20 16:54:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:04.57575292Z"} +2026/03/20 16:54:09 [metric_collector] {"stage_name":"metric_collector","events_processed":339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":67.8,"last_update":"2026-03-20T16:54:04.57660009Z"} +2026/03/20 16:54:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:04.585226372Z"} +2026/03/20 16:54:09 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":6.842923443884033,"throughput_eps":0,"last_update":"2026-03-20T16:54:04.719446149Z"} +2026/03/20 16:54:09 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":89.20370731793369,"throughput_eps":0,"last_update":"2026-03-20T16:54:04.719554265Z"} +2026/03/20 16:54:09 ───────────────────────────────────────────────── +2026/03/20 16:54:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:14 [metric_collector] {"stage_name":"metric_collector","events_processed":344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":68.8,"last_update":"2026-03-20T16:54:09.576224527Z"} +2026/03/20 16:54:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:09.58438779Z"} +2026/03/20 16:54:14 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":6.842923443884033,"throughput_eps":0,"last_update":"2026-03-20T16:54:09.719824254Z"} +2026/03/20 16:54:14 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":89.20370731793369,"throughput_eps":0,"last_update":"2026-03-20T16:54:09.719631909Z"} +2026/03/20 16:54:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:09.575865194Z"} +2026/03/20 16:54:14 ───────────────────────────────────────────────── +2026/03/20 16:54:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:19 [metric_collector] {"stage_name":"metric_collector","events_processed":349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":69.8,"last_update":"2026-03-20T16:54:14.576145107Z"} +2026/03/20 16:54:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:14.586475181Z"} +2026/03/20 16:54:19 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":6.842923443884033,"throughput_eps":0,"last_update":"2026-03-20T16:54:14.719836021Z"} +2026/03/20 16:54:19 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":89.20370731793369,"throughput_eps":0,"last_update":"2026-03-20T16:54:14.718630619Z"} +2026/03/20 16:54:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:14.575866838Z"} +2026/03/20 16:54:19 ───────────────────────────────────────────────── +2026/03/20 16:54:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:24 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":89.20370731793369,"throughput_eps":0,"last_update":"2026-03-20T16:54:19.718821427Z"} +2026/03/20 16:54:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:19.576055416Z"} +2026/03/20 16:54:24 [metric_collector] {"stage_name":"metric_collector","events_processed":354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":70.8,"last_update":"2026-03-20T16:54:19.576441672Z"} +2026/03/20 16:54:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:19.576203989Z"} +2026/03/20 16:54:24 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":6.842923443884033,"throughput_eps":0,"last_update":"2026-03-20T16:54:19.718846144Z"} +2026/03/20 16:54:24 ───────────────────────────────────────────────── +2026/03/20 16:54:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:24.575883493Z"} +2026/03/20 16:54:29 [metric_collector] {"stage_name":"metric_collector","events_processed":359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":71.8,"last_update":"2026-03-20T16:54:24.576404815Z"} +2026/03/20 16:54:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:24.585704593Z"} +2026/03/20 16:54:29 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":6.842923443884033,"throughput_eps":0,"last_update":"2026-03-20T16:54:24.719109854Z"} +2026/03/20 16:54:29 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":84.08506565434695,"throughput_eps":0,"last_update":"2026-03-20T16:54:24.782639729Z"} +2026/03/20 16:54:29 ───────────────────────────────────────────────── +2026/03/20 16:54:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:29.575555578Z"} +2026/03/20 16:54:34 [metric_collector] {"stage_name":"metric_collector","events_processed":364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":72.8,"last_update":"2026-03-20T16:54:29.575971389Z"} +2026/03/20 16:54:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:29.585229179Z"} +2026/03/20 16:54:34 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":7.290607155107227,"throughput_eps":0,"last_update":"2026-03-20T16:54:29.719683307Z"} +2026/03/20 16:54:34 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":84.08506565434695,"throughput_eps":0,"last_update":"2026-03-20T16:54:29.719625487Z"} +2026/03/20 16:54:34 ───────────────────────────────────────────────── +2026/03/20 16:54:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:34.576027641Z"} +2026/03/20 16:54:39 [metric_collector] {"stage_name":"metric_collector","events_processed":369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":73.8,"last_update":"2026-03-20T16:54:34.5764107Z"} +2026/03/20 16:54:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:34.585479752Z"} +2026/03/20 16:54:39 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":7.290607155107227,"throughput_eps":0,"last_update":"2026-03-20T16:54:34.719877725Z"} +2026/03/20 16:54:39 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":84.08506565434695,"throughput_eps":0,"last_update":"2026-03-20T16:54:34.718696177Z"} +2026/03/20 16:54:39 ───────────────────────────────────────────────── +2026/03/20 16:54:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:39.575736301Z"} +2026/03/20 16:54:44 [metric_collector] {"stage_name":"metric_collector","events_processed":374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":74.8,"last_update":"2026-03-20T16:54:39.576049025Z"} +2026/03/20 16:54:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:39.586491042Z"} +2026/03/20 16:54:44 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":7.290607155107227,"throughput_eps":0,"last_update":"2026-03-20T16:54:39.719785568Z"} +2026/03/20 16:54:44 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":84.08506565434695,"throughput_eps":0,"last_update":"2026-03-20T16:54:39.718657542Z"} +2026/03/20 16:54:44 ───────────────────────────────────────────────── +2026/03/20 16:54:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:44.57583449Z"} +2026/03/20 16:54:49 [metric_collector] {"stage_name":"metric_collector","events_processed":379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":75.8,"last_update":"2026-03-20T16:54:44.576201658Z"} +2026/03/20 16:54:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:44.584894178Z"} +2026/03/20 16:54:49 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":7.290607155107227,"throughput_eps":0,"last_update":"2026-03-20T16:54:44.71925304Z"} +2026/03/20 16:54:49 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":84.08506565434695,"throughput_eps":0,"last_update":"2026-03-20T16:54:44.719145655Z"} +2026/03/20 16:54:49 ───────────────────────────────────────────────── +2026/03/20 16:54:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:49.586527651Z"} +2026/03/20 16:54:54 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":7.290607155107227,"throughput_eps":0,"last_update":"2026-03-20T16:54:49.719170119Z"} +2026/03/20 16:54:54 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":84.08506565434695,"throughput_eps":0,"last_update":"2026-03-20T16:54:49.719046454Z"} +2026/03/20 16:54:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:49.575744653Z"} +2026/03/20 16:54:54 [metric_collector] {"stage_name":"metric_collector","events_processed":384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":76.8,"last_update":"2026-03-20T16:54:49.57612155Z"} +2026/03/20 16:54:54 ───────────────────────────────────────────────── +2026/03/20 16:54:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:59 [transform_engine] {"stage_name":"transform_engine","events_processed":13,"events_dropped":0,"avg_latency_ms":90.36144932347756,"throughput_eps":0,"last_update":"2026-03-20T16:54:54.834670611Z"} +2026/03/20 16:54:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:54.575535925Z"} +2026/03/20 16:54:59 [metric_collector] {"stage_name":"metric_collector","events_processed":389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":77.8,"last_update":"2026-03-20T16:54:54.576043151Z"} +2026/03/20 16:54:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:54.587903892Z"} +2026/03/20 16:54:59 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":7.290607155107227,"throughput_eps":0,"last_update":"2026-03-20T16:54:54.719323364Z"} +2026/03/20 16:54:59 ───────────────────────────────────────────────── +2026/03/20 16:55:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:59.584555827Z"} +2026/03/20 16:55:04 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":7.767055124085782,"throughput_eps":0,"last_update":"2026-03-20T16:54:59.719143519Z"} +2026/03/20 16:55:04 [transform_engine] {"stage_name":"transform_engine","events_processed":13,"events_dropped":0,"avg_latency_ms":90.36144932347756,"throughput_eps":0,"last_update":"2026-03-20T16:54:59.719108363Z"} +2026/03/20 16:55:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:59.576022156Z"} +2026/03/20 16:55:04 [metric_collector] {"stage_name":"metric_collector","events_processed":394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":78.8,"last_update":"2026-03-20T16:54:59.576409864Z"} +2026/03/20 16:55:04 ───────────────────────────────────────────────── +2026/03/20 16:55:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:09 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":7.767055124085782,"throughput_eps":0,"last_update":"2026-03-20T16:55:04.719744299Z"} +2026/03/20 16:55:09 [transform_engine] {"stage_name":"transform_engine","events_processed":13,"events_dropped":0,"avg_latency_ms":90.36144932347756,"throughput_eps":0,"last_update":"2026-03-20T16:55:04.719617348Z"} +2026/03/20 16:55:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:04.576077945Z"} +2026/03/20 16:55:09 [metric_collector] {"stage_name":"metric_collector","events_processed":399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":79.8,"last_update":"2026-03-20T16:55:04.576308814Z"} +2026/03/20 16:55:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:04.585504547Z"} +2026/03/20 16:55:09 ───────────────────────────────────────────────── +2026/03/20 16:55:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:14 [transform_engine] {"stage_name":"transform_engine","events_processed":13,"events_dropped":0,"avg_latency_ms":90.36144932347756,"throughput_eps":0,"last_update":"2026-03-20T16:55:09.719697948Z"} +2026/03/20 16:55:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:09.575559774Z"} +2026/03/20 16:55:14 [metric_collector] {"stage_name":"metric_collector","events_processed":404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":80.8,"last_update":"2026-03-20T16:55:09.57548912Z"} +2026/03/20 16:55:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:09.585190185Z"} +2026/03/20 16:55:14 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":7.767055124085782,"throughput_eps":0,"last_update":"2026-03-20T16:55:09.719580695Z"} +2026/03/20 16:55:14 ───────────────────────────────────────────────── +2026/03/20 16:55:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:14.575894981Z"} +2026/03/20 16:55:19 [metric_collector] {"stage_name":"metric_collector","events_processed":409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":81.8,"last_update":"2026-03-20T16:55:14.576189191Z"} +2026/03/20 16:55:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:14.586503926Z"} +2026/03/20 16:55:19 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":7.767055124085782,"throughput_eps":0,"last_update":"2026-03-20T16:55:14.718792425Z"} +2026/03/20 16:55:19 [transform_engine] {"stage_name":"transform_engine","events_processed":13,"events_dropped":0,"avg_latency_ms":90.36144932347756,"throughput_eps":0,"last_update":"2026-03-20T16:55:14.718757749Z"} +2026/03/20 16:55:19 ───────────────────────────────────────────────── +2026/03/20 16:55:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:19.575517626Z"} +2026/03/20 16:55:24 [metric_collector] {"stage_name":"metric_collector","events_processed":414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":82.8,"last_update":"2026-03-20T16:55:19.575752924Z"} +2026/03/20 16:55:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:19.585904691Z"} +2026/03/20 16:55:24 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":7.767055124085782,"throughput_eps":0,"last_update":"2026-03-20T16:55:19.719147225Z"} +2026/03/20 16:55:24 [transform_engine] {"stage_name":"transform_engine","events_processed":13,"events_dropped":0,"avg_latency_ms":90.36144932347756,"throughput_eps":0,"last_update":"2026-03-20T16:55:19.719098583Z"} +2026/03/20 16:55:24 ───────────────────────────────────────────────── +2026/03/20 16:55:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:29 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":85.40071905878206,"throughput_eps":0,"last_update":"2026-03-20T16:55:24.785174402Z"} +2026/03/20 16:55:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:24.575506617Z"} +2026/03/20 16:55:29 [metric_collector] {"stage_name":"metric_collector","events_processed":419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":83.8,"last_update":"2026-03-20T16:55:24.575745953Z"} +2026/03/20 16:55:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":170,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:24.585218438Z"} +2026/03/20 16:55:29 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":7.767055124085782,"throughput_eps":0,"last_update":"2026-03-20T16:55:24.719641792Z"} +2026/03/20 16:55:29 ───────────────────────────────────────────────── +2026/03/20 16:55:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:34 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":8.436163699268626,"throughput_eps":0,"last_update":"2026-03-20T16:55:29.719761646Z"} +2026/03/20 16:55:34 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":85.40071905878206,"throughput_eps":0,"last_update":"2026-03-20T16:55:29.719776074Z"} +2026/03/20 16:55:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:29.576029298Z"} +2026/03/20 16:55:34 [metric_collector] {"stage_name":"metric_collector","events_processed":424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":84.8,"last_update":"2026-03-20T16:55:29.57639345Z"} +2026/03/20 16:55:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:29.585419907Z"} +2026/03/20 16:55:34 ───────────────────────────────────────────────── +2026/03/20 16:55:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:34.575760995Z"} +2026/03/20 16:55:39 [metric_collector] {"stage_name":"metric_collector","events_processed":429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":85.8,"last_update":"2026-03-20T16:55:34.576023043Z"} +2026/03/20 16:55:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:34.585855857Z"} +2026/03/20 16:55:39 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":8.436163699268626,"throughput_eps":0,"last_update":"2026-03-20T16:55:34.719246173Z"} +2026/03/20 16:55:39 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":85.40071905878206,"throughput_eps":0,"last_update":"2026-03-20T16:55:34.71925987Z"} +2026/03/20 16:55:39 ───────────────────────────────────────────────── +2026/03/20 16:55:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:44 [metric_collector] {"stage_name":"metric_collector","events_processed":433,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":86.6,"last_update":"2026-03-20T16:55:39.575464814Z"} +2026/03/20 16:55:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:39.58478832Z"} +2026/03/20 16:55:44 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":8.436163699268626,"throughput_eps":0,"last_update":"2026-03-20T16:55:39.719183289Z"} +2026/03/20 16:55:44 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":85.40071905878206,"throughput_eps":0,"last_update":"2026-03-20T16:55:39.719192727Z"} +2026/03/20 16:55:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:39.575540108Z"} +2026/03/20 16:55:44 ───────────────────────────────────────────────── +2026/03/20 16:55:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:44.585197906Z"} +2026/03/20 16:55:49 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":8.436163699268626,"throughput_eps":0,"last_update":"2026-03-20T16:55:44.719345864Z"} +2026/03/20 16:55:49 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":85.40071905878206,"throughput_eps":0,"last_update":"2026-03-20T16:55:44.719372585Z"} +2026/03/20 16:55:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:44.575489576Z"} +2026/03/20 16:55:49 [metric_collector] {"stage_name":"metric_collector","events_processed":438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":87.6,"last_update":"2026-03-20T16:55:44.575030972Z"} +2026/03/20 16:55:49 ───────────────────────────────────────────────── +2026/03/20 16:55:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:54 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":8.436163699268626,"throughput_eps":0,"last_update":"2026-03-20T16:55:49.719600786Z"} +2026/03/20 16:55:54 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":85.40071905878206,"throughput_eps":0,"last_update":"2026-03-20T16:55:49.719615836Z"} +2026/03/20 16:55:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:49.575543835Z"} +2026/03/20 16:55:54 [metric_collector] {"stage_name":"metric_collector","events_processed":444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":88.8,"last_update":"2026-03-20T16:55:49.575980307Z"} +2026/03/20 16:55:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:49.587210577Z"} +2026/03/20 16:55:54 ───────────────────────────────────────────────── +2026/03/20 16:55:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:54.576022909Z"} +2026/03/20 16:55:59 [metric_collector] {"stage_name":"metric_collector","events_processed":449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":89.8,"last_update":"2026-03-20T16:55:54.575952244Z"} +2026/03/20 16:55:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:54.587258731Z"} +2026/03/20 16:55:59 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":8.436163699268626,"throughput_eps":0,"last_update":"2026-03-20T16:55:54.719614785Z"} +2026/03/20 16:55:59 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":82.50752664702564,"throughput_eps":0,"last_update":"2026-03-20T16:55:54.790568418Z"} +2026/03/20 16:55:59 ───────────────────────────────────────────────── +2026/03/20 16:56:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:59.586154048Z"} +2026/03/20 16:56:04 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":8.390728159414902,"throughput_eps":0,"last_update":"2026-03-20T16:55:59.719507891Z"} +2026/03/20 16:56:04 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":82.50752664702564,"throughput_eps":0,"last_update":"2026-03-20T16:55:59.719653858Z"} +2026/03/20 16:56:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:59.575541732Z"} +2026/03/20 16:56:04 [metric_collector] {"stage_name":"metric_collector","events_processed":454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":90.8,"last_update":"2026-03-20T16:55:59.575735861Z"} +2026/03/20 16:56:04 ───────────────────────────────────────────────── +2026/03/20 16:56:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:04.57558828Z"} +2026/03/20 16:56:09 [metric_collector] {"stage_name":"metric_collector","events_processed":459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":91.8,"last_update":"2026-03-20T16:56:04.5760661Z"} +2026/03/20 16:56:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:04.587239577Z"} +2026/03/20 16:56:09 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":8.390728159414902,"throughput_eps":0,"last_update":"2026-03-20T16:56:04.719489245Z"} +2026/03/20 16:56:09 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":82.50752664702564,"throughput_eps":0,"last_update":"2026-03-20T16:56:04.719396548Z"} +2026/03/20 16:56:09 ───────────────────────────────────────────────── +2026/03/20 16:56:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:09.575559209Z"} +2026/03/20 16:56:14 [metric_collector] {"stage_name":"metric_collector","events_processed":464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":92.8,"last_update":"2026-03-20T16:56:09.575658799Z"} +2026/03/20 16:56:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:09.58545374Z"} +2026/03/20 16:56:14 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":8.390728159414902,"throughput_eps":0,"last_update":"2026-03-20T16:56:09.719749415Z"} +2026/03/20 16:56:14 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":82.50752664702564,"throughput_eps":0,"last_update":"2026-03-20T16:56:09.719762489Z"} +2026/03/20 16:56:14 ───────────────────────────────────────────────── +2026/03/20 16:56:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:19 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":8.390728159414902,"throughput_eps":0,"last_update":"2026-03-20T16:56:14.719125277Z"} +2026/03/20 16:56:19 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":82.50752664702564,"throughput_eps":0,"last_update":"2026-03-20T16:56:14.719139725Z"} +2026/03/20 16:56:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:14.575547289Z"} +2026/03/20 16:56:19 [metric_collector] {"stage_name":"metric_collector","events_processed":469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":93.8,"last_update":"2026-03-20T16:56:14.575893308Z"} +2026/03/20 16:56:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:14.586733833Z"} +2026/03/20 16:56:19 ───────────────────────────────────────────────── +2026/03/20 16:56:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:24 [metric_collector] {"stage_name":"metric_collector","events_processed":474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":94.8,"last_update":"2026-03-20T16:56:19.575858485Z"} +2026/03/20 16:56:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:19.587047425Z"} +2026/03/20 16:56:24 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":8.390728159414902,"throughput_eps":0,"last_update":"2026-03-20T16:56:19.719274945Z"} +2026/03/20 16:56:24 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":82.50752664702564,"throughput_eps":0,"last_update":"2026-03-20T16:56:19.719282861Z"} +2026/03/20 16:56:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:19.575526552Z"} +2026/03/20 16:56:24 ───────────────────────────────────────────────── +2026/03/20 16:56:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:29 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":88.80772311762053,"throughput_eps":0,"last_update":"2026-03-20T16:56:24.833725455Z"} +2026/03/20 16:56:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:24.575602065Z"} +2026/03/20 16:56:29 [metric_collector] {"stage_name":"metric_collector","events_processed":479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":95.8,"last_update":"2026-03-20T16:56:24.576074455Z"} +2026/03/20 16:56:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:24.58731196Z"} +2026/03/20 16:56:29 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":8.390728159414902,"throughput_eps":0,"last_update":"2026-03-20T16:56:24.719701607Z"} +2026/03/20 16:56:29 ───────────────────────────────────────────────── +2026/03/20 16:56:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:29.575829836Z"} +2026/03/20 16:56:34 [metric_collector] {"stage_name":"metric_collector","events_processed":484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":96.8,"last_update":"2026-03-20T16:56:29.576146881Z"} +2026/03/20 16:56:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:29.585544931Z"} +2026/03/20 16:56:34 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":8.713176927531922,"throughput_eps":0,"last_update":"2026-03-20T16:56:29.718890977Z"} +2026/03/20 16:56:34 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":88.80772311762053,"throughput_eps":0,"last_update":"2026-03-20T16:56:29.718783152Z"} +2026/03/20 16:56:34 ───────────────────────────────────────────────── +2026/03/20 16:56:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:34.575543138Z"} +2026/03/20 16:56:39 [metric_collector] {"stage_name":"metric_collector","events_processed":489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":97.8,"last_update":"2026-03-20T16:56:34.575832029Z"} +2026/03/20 16:56:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:34.585683334Z"} +2026/03/20 16:56:39 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":8.713176927531922,"throughput_eps":0,"last_update":"2026-03-20T16:56:34.719077941Z"} +2026/03/20 16:56:39 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":88.80772311762053,"throughput_eps":0,"last_update":"2026-03-20T16:56:34.719090205Z"} +2026/03/20 16:56:39 ───────────────────────────────────────────────── +2026/03/20 16:56:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:44 [metric_collector] {"stage_name":"metric_collector","events_processed":494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":98.8,"last_update":"2026-03-20T16:56:39.576144958Z"} +2026/03/20 16:56:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:39.5853904Z"} +2026/03/20 16:56:44 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":8.713176927531922,"throughput_eps":0,"last_update":"2026-03-20T16:56:39.719629666Z"} +2026/03/20 16:56:44 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":88.80772311762053,"throughput_eps":0,"last_update":"2026-03-20T16:56:39.719638372Z"} +2026/03/20 16:56:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:39.575721321Z"} +2026/03/20 16:56:44 ───────────────────────────────────────────────── +2026/03/20 16:56:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:44.575758494Z"} +2026/03/20 16:56:49 [metric_collector] {"stage_name":"metric_collector","events_processed":499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":99.8,"last_update":"2026-03-20T16:56:44.576215354Z"} +2026/03/20 16:56:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:44.586823856Z"} +2026/03/20 16:56:49 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":8.713176927531922,"throughput_eps":0,"last_update":"2026-03-20T16:56:44.719051964Z"} +2026/03/20 16:56:49 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":88.80772311762053,"throughput_eps":0,"last_update":"2026-03-20T16:56:44.719061552Z"} +2026/03/20 16:56:49 ───────────────────────────────────────────────── +2026/03/20 16:56:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:54 [metric_collector] {"stage_name":"metric_collector","events_processed":504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":100.8,"last_update":"2026-03-20T16:56:49.576209245Z"} +2026/03/20 16:56:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:49.585223358Z"} +2026/03/20 16:56:54 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":8.713176927531922,"throughput_eps":0,"last_update":"2026-03-20T16:56:49.719316229Z"} +2026/03/20 16:56:54 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":88.80772311762053,"throughput_eps":0,"last_update":"2026-03-20T16:56:49.719326117Z"} +2026/03/20 16:56:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:49.575811778Z"} +2026/03/20 16:56:54 ───────────────────────────────────────────────── +2026/03/20 16:56:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:59 [transform_engine] {"stage_name":"transform_engine","events_processed":17,"events_dropped":0,"avg_latency_ms":83.60704289409642,"throughput_eps":0,"last_update":"2026-03-20T16:56:54.782529026Z"} +2026/03/20 16:56:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:54.575850159Z"} +2026/03/20 16:56:59 [metric_collector] {"stage_name":"metric_collector","events_processed":509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":101.8,"last_update":"2026-03-20T16:56:54.57617563Z"} +2026/03/20 16:56:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":206,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:54.585377783Z"} +2026/03/20 16:56:59 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":8.713176927531922,"throughput_eps":0,"last_update":"2026-03-20T16:56:54.719707291Z"} +2026/03/20 16:56:59 ───────────────────────────────────────────────── +2026/03/20 16:57:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:04 [metric_collector] {"stage_name":"metric_collector","events_processed":514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":102.8,"last_update":"2026-03-20T16:56:59.575686526Z"} +2026/03/20 16:57:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:59.586041218Z"} +2026/03/20 16:57:04 [detection_layer] {"stage_name":"detection_layer","events_processed":17,"events_dropped":0,"avg_latency_ms":8.876964142025539,"throughput_eps":0,"last_update":"2026-03-20T16:56:59.719407708Z"} +2026/03/20 16:57:04 [transform_engine] {"stage_name":"transform_engine","events_processed":17,"events_dropped":0,"avg_latency_ms":83.60704289409642,"throughput_eps":0,"last_update":"2026-03-20T16:56:59.719421233Z"} +2026/03/20 16:57:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:59.575543985Z"} +2026/03/20 16:57:04 ───────────────────────────────────────────────── +2026/03/20 16:57:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:04.575899054Z"} +2026/03/20 16:57:09 [metric_collector] {"stage_name":"metric_collector","events_processed":519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":103.8,"last_update":"2026-03-20T16:57:04.576824389Z"} +2026/03/20 16:57:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":210,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:04.586019501Z"} +2026/03/20 16:57:09 [detection_layer] {"stage_name":"detection_layer","events_processed":17,"events_dropped":0,"avg_latency_ms":8.876964142025539,"throughput_eps":0,"last_update":"2026-03-20T16:57:04.7194034Z"} +2026/03/20 16:57:09 [transform_engine] {"stage_name":"transform_engine","events_processed":17,"events_dropped":0,"avg_latency_ms":83.60704289409642,"throughput_eps":0,"last_update":"2026-03-20T16:57:04.719417286Z"} +2026/03/20 16:57:09 ───────────────────────────────────────────────── +2026/03/20 16:57:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:14 [metric_collector] {"stage_name":"metric_collector","events_processed":524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":104.8,"last_update":"2026-03-20T16:57:09.576556139Z"} +2026/03/20 16:57:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:09.586089276Z"} +2026/03/20 16:57:14 [detection_layer] {"stage_name":"detection_layer","events_processed":17,"events_dropped":0,"avg_latency_ms":8.876964142025539,"throughput_eps":0,"last_update":"2026-03-20T16:57:09.719323477Z"} +2026/03/20 16:57:14 [transform_engine] {"stage_name":"transform_engine","events_processed":17,"events_dropped":0,"avg_latency_ms":83.60704289409642,"throughput_eps":0,"last_update":"2026-03-20T16:57:09.719331361Z"} +2026/03/20 16:57:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:09.575862165Z"} +2026/03/20 16:57:14 ───────────────────────────────────────────────── +2026/03/20 16:57:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:14.575553079Z"} +2026/03/20 16:57:19 [metric_collector] {"stage_name":"metric_collector","events_processed":529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":105.8,"last_update":"2026-03-20T16:57:14.57594191Z"} +2026/03/20 16:57:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:14.586999606Z"} +2026/03/20 16:57:19 [detection_layer] {"stage_name":"detection_layer","events_processed":17,"events_dropped":0,"avg_latency_ms":8.876964142025539,"throughput_eps":0,"last_update":"2026-03-20T16:57:14.71932058Z"} +2026/03/20 16:57:19 [transform_engine] {"stage_name":"transform_engine","events_processed":17,"events_dropped":0,"avg_latency_ms":83.60704289409642,"throughput_eps":0,"last_update":"2026-03-20T16:57:14.719333706Z"} +2026/03/20 16:57:19 ───────────────────────────────────────────────── +2026/03/20 16:57:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:24 [detection_layer] {"stage_name":"detection_layer","events_processed":17,"events_dropped":0,"avg_latency_ms":8.876964142025539,"throughput_eps":0,"last_update":"2026-03-20T16:57:19.719404267Z"} +2026/03/20 16:57:24 [transform_engine] {"stage_name":"transform_engine","events_processed":17,"events_dropped":0,"avg_latency_ms":83.60704289409642,"throughput_eps":0,"last_update":"2026-03-20T16:57:19.719417692Z"} +2026/03/20 16:57:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:19.575801071Z"} +2026/03/20 16:57:24 [metric_collector] {"stage_name":"metric_collector","events_processed":534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":106.8,"last_update":"2026-03-20T16:57:19.576421774Z"} +2026/03/20 16:57:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:19.585954082Z"} +2026/03/20 16:57:24 ───────────────────────────────────────────────── +2026/03/20 16:57:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:24.57552926Z"} +2026/03/20 16:57:29 [metric_collector] {"stage_name":"metric_collector","events_processed":539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":107.8,"last_update":"2026-03-20T16:57:24.575711338Z"} +2026/03/20 16:57:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:24.585724104Z"} +2026/03/20 16:57:29 [detection_layer] {"stage_name":"detection_layer","events_processed":17,"events_dropped":0,"avg_latency_ms":8.876964142025539,"throughput_eps":0,"last_update":"2026-03-20T16:57:24.7190783Z"} +2026/03/20 16:57:29 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":80.27852051527715,"throughput_eps":0,"last_update":"2026-03-20T16:57:24.786060074Z"} +2026/03/20 16:57:29 ───────────────────────────────────────────────── +2026/03/20 16:57:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:34 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":9.075584113620431,"throughput_eps":0,"last_update":"2026-03-20T16:57:29.719434408Z"} +2026/03/20 16:57:34 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":80.27852051527715,"throughput_eps":0,"last_update":"2026-03-20T16:57:29.719450448Z"} +2026/03/20 16:57:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:29.576107806Z"} +2026/03/20 16:57:34 [metric_collector] {"stage_name":"metric_collector","events_processed":544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":108.8,"last_update":"2026-03-20T16:57:29.576087517Z"} +2026/03/20 16:57:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:29.585073305Z"} +2026/03/20 16:57:34 ───────────────────────────────────────────────── +2026/03/20 16:57:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:34.575720297Z"} +2026/03/20 16:57:39 [metric_collector] {"stage_name":"metric_collector","events_processed":549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":109.8,"last_update":"2026-03-20T16:57:34.575999069Z"} +2026/03/20 16:57:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":222,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:34.587021993Z"} +2026/03/20 16:57:39 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":9.075584113620431,"throughput_eps":0,"last_update":"2026-03-20T16:57:34.719337941Z"} +2026/03/20 16:57:39 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":80.27852051527715,"throughput_eps":0,"last_update":"2026-03-20T16:57:34.719345385Z"} +2026/03/20 16:57:39 ───────────────────────────────────────────────── +2026/03/20 16:57:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:39.575632021Z"} +2026/03/20 16:57:44 [metric_collector] {"stage_name":"metric_collector","events_processed":554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":110.8,"last_update":"2026-03-20T16:57:39.575947503Z"} +2026/03/20 16:57:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:39.586802438Z"} +2026/03/20 16:57:44 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":9.075584113620431,"throughput_eps":0,"last_update":"2026-03-20T16:57:39.719079497Z"} +2026/03/20 16:57:44 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":80.27852051527715,"throughput_eps":0,"last_update":"2026-03-20T16:57:39.719090067Z"} +2026/03/20 16:57:44 ───────────────────────────────────────────────── +2026/03/20 16:57:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:49 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":80.27852051527715,"throughput_eps":0,"last_update":"2026-03-20T16:57:44.718688617Z"} +2026/03/20 16:57:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:44.575509487Z"} +2026/03/20 16:57:49 [metric_collector] {"stage_name":"metric_collector","events_processed":559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":111.8,"last_update":"2026-03-20T16:57:44.575551587Z"} +2026/03/20 16:57:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:44.585529231Z"} +2026/03/20 16:57:49 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":9.075584113620431,"throughput_eps":0,"last_update":"2026-03-20T16:57:44.718805861Z"} +2026/03/20 16:57:49 ───────────────────────────────────────────────── +2026/03/20 16:57:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:49.575540938Z"} +2026/03/20 16:57:54 [metric_collector] {"stage_name":"metric_collector","events_processed":564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":112.8,"last_update":"2026-03-20T16:57:49.575743574Z"} +2026/03/20 16:57:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:49.585600018Z"} +2026/03/20 16:57:54 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":9.075584113620431,"throughput_eps":0,"last_update":"2026-03-20T16:57:49.718828753Z"} +2026/03/20 16:57:54 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":80.27852051527715,"throughput_eps":0,"last_update":"2026-03-20T16:57:49.718721138Z"} +2026/03/20 16:57:54 ───────────────────────────────────────────────── +2026/03/20 16:57:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:54.575724805Z"} +2026/03/20 16:57:59 [metric_collector] {"stage_name":"metric_collector","events_processed":569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":113.8,"last_update":"2026-03-20T16:57:54.576225471Z"} +2026/03/20 16:57:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:54.584731208Z"} +2026/03/20 16:57:59 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":9.075584113620431,"throughput_eps":0,"last_update":"2026-03-20T16:57:54.719212728Z"} +2026/03/20 16:57:59 [transform_engine] {"stage_name":"transform_engine","events_processed":19,"events_dropped":0,"avg_latency_ms":86.20804501222172,"throughput_eps":0,"last_update":"2026-03-20T16:57:54.829153318Z"} +2026/03/20 16:57:59 ───────────────────────────────────────────────── +2026/03/20 16:58:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:59.586271867Z"} +2026/03/20 16:58:04 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":9.584972090896345,"throughput_eps":0,"last_update":"2026-03-20T16:57:59.719584852Z"} +2026/03/20 16:58:04 [transform_engine] {"stage_name":"transform_engine","events_processed":19,"events_dropped":0,"avg_latency_ms":86.20804501222172,"throughput_eps":0,"last_update":"2026-03-20T16:57:59.719590873Z"} +2026/03/20 16:58:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:59.575801189Z"} +2026/03/20 16:58:04 [metric_collector] {"stage_name":"metric_collector","events_processed":574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":114.8,"last_update":"2026-03-20T16:57:59.576122382Z"} +2026/03/20 16:58:04 ───────────────────────────────────────────────── +2026/03/20 16:58:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:09 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":9.584972090896345,"throughput_eps":0,"last_update":"2026-03-20T16:58:04.719688176Z"} +2026/03/20 16:58:09 [transform_engine] {"stage_name":"transform_engine","events_processed":19,"events_dropped":0,"avg_latency_ms":86.20804501222172,"throughput_eps":0,"last_update":"2026-03-20T16:58:04.719696993Z"} +2026/03/20 16:58:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:04.575532428Z"} +2026/03/20 16:58:09 [metric_collector] {"stage_name":"metric_collector","events_processed":579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":115.8,"last_update":"2026-03-20T16:58:04.575775841Z"} +2026/03/20 16:58:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:04.58647136Z"} +2026/03/20 16:58:09 ───────────────────────────────────────────────── +2026/03/20 16:58:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:14 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":9.584972090896345,"throughput_eps":0,"last_update":"2026-03-20T16:58:09.719506727Z"} +2026/03/20 16:58:14 [transform_engine] {"stage_name":"transform_engine","events_processed":19,"events_dropped":0,"avg_latency_ms":86.20804501222172,"throughput_eps":0,"last_update":"2026-03-20T16:58:09.719512598Z"} +2026/03/20 16:58:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:09.575726629Z"} +2026/03/20 16:58:14 [metric_collector] {"stage_name":"metric_collector","events_processed":584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":116.8,"last_update":"2026-03-20T16:58:09.576043353Z"} +2026/03/20 16:58:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:09.586106406Z"} +2026/03/20 16:58:14 ───────────────────────────────────────────────── +2026/03/20 16:58:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:14.58661405Z"} +2026/03/20 16:58:19 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":9.584972090896345,"throughput_eps":0,"last_update":"2026-03-20T16:58:14.718911551Z"} +2026/03/20 16:58:19 [transform_engine] {"stage_name":"transform_engine","events_processed":19,"events_dropped":0,"avg_latency_ms":86.20804501222172,"throughput_eps":0,"last_update":"2026-03-20T16:58:14.718923323Z"} +2026/03/20 16:58:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:14.575872743Z"} +2026/03/20 16:58:19 [metric_collector] {"stage_name":"metric_collector","events_processed":589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":117.8,"last_update":"2026-03-20T16:58:14.576540878Z"} +2026/03/20 16:58:19 ───────────────────────────────────────────────── +2026/03/20 16:58:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:24 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":9.584972090896345,"throughput_eps":0,"last_update":"2026-03-20T16:58:19.719216854Z"} +2026/03/20 16:58:24 [transform_engine] {"stage_name":"transform_engine","events_processed":19,"events_dropped":0,"avg_latency_ms":86.20804501222172,"throughput_eps":0,"last_update":"2026-03-20T16:58:19.719232234Z"} +2026/03/20 16:58:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:19.575770101Z"} +2026/03/20 16:58:24 [metric_collector] {"stage_name":"metric_collector","events_processed":594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":118.8,"last_update":"2026-03-20T16:58:19.576173331Z"} +2026/03/20 16:58:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:19.584831553Z"} +2026/03/20 16:58:24 ───────────────────────────────────────────────── +2026/03/20 16:58:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:29 [metric_collector] {"stage_name":"metric_collector","events_processed":599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":119.8,"last_update":"2026-03-20T16:58:24.576344524Z"} +2026/03/20 16:58:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:24.586069063Z"} +2026/03/20 16:58:29 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":9.584972090896345,"throughput_eps":0,"last_update":"2026-03-20T16:58:24.719417418Z"} +2026/03/20 16:58:29 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":91.04819300977738,"throughput_eps":0,"last_update":"2026-03-20T16:58:24.82984075Z"} +2026/03/20 16:58:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:24.575878514Z"} +2026/03/20 16:58:29 ───────────────────────────────────────────────── +2026/03/20 16:58:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:29.575511218Z"} +2026/03/20 16:58:34 [metric_collector] {"stage_name":"metric_collector","events_processed":604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":120.8,"last_update":"2026-03-20T16:58:29.575725848Z"} +2026/03/20 16:58:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:29.586417583Z"} +2026/03/20 16:58:34 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":10.264376872717076,"throughput_eps":0,"last_update":"2026-03-20T16:58:29.719686411Z"} +2026/03/20 16:58:34 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":91.04819300977738,"throughput_eps":0,"last_update":"2026-03-20T16:58:29.719695328Z"} +2026/03/20 16:58:34 ───────────────────────────────────────────────── +2026/03/20 16:58:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:34.575593102Z"} +2026/03/20 16:58:39 [metric_collector] {"stage_name":"metric_collector","events_processed":609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":121.8,"last_update":"2026-03-20T16:58:34.576004367Z"} +2026/03/20 16:58:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":246,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:34.587315396Z"} +2026/03/20 16:58:39 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":10.264376872717076,"throughput_eps":0,"last_update":"2026-03-20T16:58:34.71967959Z"} +2026/03/20 16:58:39 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":91.04819300977738,"throughput_eps":0,"last_update":"2026-03-20T16:58:34.719692595Z"} +2026/03/20 16:58:39 ───────────────────────────────────────────────── +2026/03/20 16:58:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:39.584840239Z"} +2026/03/20 16:58:44 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":10.264376872717076,"throughput_eps":0,"last_update":"2026-03-20T16:58:39.719037545Z"} +2026/03/20 16:58:44 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":91.04819300977738,"throughput_eps":0,"last_update":"2026-03-20T16:58:39.719045119Z"} +2026/03/20 16:58:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:39.575694411Z"} +2026/03/20 16:58:44 [metric_collector] {"stage_name":"metric_collector","events_processed":614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":122.8,"last_update":"2026-03-20T16:58:39.576193133Z"} +2026/03/20 16:58:44 ───────────────────────────────────────────────── +2026/03/20 16:58:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:44.576257424Z"} +2026/03/20 16:58:49 [metric_collector] {"stage_name":"metric_collector","events_processed":619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":123.8,"last_update":"2026-03-20T16:58:44.576568808Z"} +2026/03/20 16:58:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:44.585154418Z"} +2026/03/20 16:58:49 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":10.264376872717076,"throughput_eps":0,"last_update":"2026-03-20T16:58:44.719481015Z"} +2026/03/20 16:58:49 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":91.04819300977738,"throughput_eps":0,"last_update":"2026-03-20T16:58:44.719489452Z"} +2026/03/20 16:58:49 ───────────────────────────────────────────────── +2026/03/20 16:58:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:54 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":91.04819300977738,"throughput_eps":0,"last_update":"2026-03-20T16:58:49.719404872Z"} +2026/03/20 16:58:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:49.575845996Z"} +2026/03/20 16:58:54 [metric_collector] {"stage_name":"metric_collector","events_processed":624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":124.8,"last_update":"2026-03-20T16:58:49.576218767Z"} +2026/03/20 16:58:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:49.584998508Z"} +2026/03/20 16:58:54 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":10.264376872717076,"throughput_eps":0,"last_update":"2026-03-20T16:58:49.719390464Z"} +2026/03/20 16:58:54 ───────────────────────────────────────────────── +2026/03/20 16:58:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:54.575615336Z"} +2026/03/20 16:58:59 [metric_collector] {"stage_name":"metric_collector","events_processed":629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":125.8,"last_update":"2026-03-20T16:58:54.576103578Z"} +2026/03/20 16:58:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:54.586979592Z"} +2026/03/20 16:58:59 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":10.264376872717076,"throughput_eps":0,"last_update":"2026-03-20T16:58:54.719211618Z"} +2026/03/20 16:58:59 [transform_engine] {"stage_name":"transform_engine","events_processed":21,"events_dropped":0,"avg_latency_ms":95.5786058078219,"throughput_eps":0,"last_update":"2026-03-20T16:58:54.832922073Z"} +2026/03/20 16:58:59 ───────────────────────────────────────────────── +2026/03/20 16:59:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:59.575721116Z"} +2026/03/20 16:59:04 [metric_collector] {"stage_name":"metric_collector","events_processed":634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":126.8,"last_update":"2026-03-20T16:58:59.575961475Z"} +2026/03/20 16:59:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:59.587553747Z"} +2026/03/20 16:59:04 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":10.531482698173662,"throughput_eps":0,"last_update":"2026-03-20T16:58:59.719804651Z"} +2026/03/20 16:59:04 [transform_engine] {"stage_name":"transform_engine","events_processed":21,"events_dropped":0,"avg_latency_ms":95.5786058078219,"throughput_eps":0,"last_update":"2026-03-20T16:58:59.718706715Z"} +2026/03/20 16:59:04 ───────────────────────────────────────────────── +2026/03/20 16:59:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:04.575679277Z"} +2026/03/20 16:59:09 [metric_collector] {"stage_name":"metric_collector","events_processed":639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":127.8,"last_update":"2026-03-20T16:59:04.576062709Z"} +2026/03/20 16:59:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:04.587136813Z"} +2026/03/20 16:59:09 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":10.531482698173662,"throughput_eps":0,"last_update":"2026-03-20T16:59:04.719708694Z"} +2026/03/20 16:59:09 [transform_engine] {"stage_name":"transform_engine","events_processed":21,"events_dropped":0,"avg_latency_ms":95.5786058078219,"throughput_eps":0,"last_update":"2026-03-20T16:59:04.71959658Z"} +2026/03/20 16:59:09 ───────────────────────────────────────────────── +2026/03/20 16:59:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:14 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":10.531482698173662,"throughput_eps":0,"last_update":"2026-03-20T16:59:09.719780283Z"} +2026/03/20 16:59:14 [transform_engine] {"stage_name":"transform_engine","events_processed":21,"events_dropped":0,"avg_latency_ms":95.5786058078219,"throughput_eps":0,"last_update":"2026-03-20T16:59:09.718703898Z"} +2026/03/20 16:59:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:09.575552574Z"} +2026/03/20 16:59:14 [metric_collector] {"stage_name":"metric_collector","events_processed":644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":128.8,"last_update":"2026-03-20T16:59:09.575825525Z"} +2026/03/20 16:59:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:09.586483535Z"} +2026/03/20 16:59:14 ───────────────────────────────────────────────── +2026/03/20 16:59:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:14.575816182Z"} +2026/03/20 16:59:19 [metric_collector] {"stage_name":"metric_collector","events_processed":649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":129.8,"last_update":"2026-03-20T16:59:14.576060648Z"} +2026/03/20 16:59:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:14.585935846Z"} +2026/03/20 16:59:19 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":10.531482698173662,"throughput_eps":0,"last_update":"2026-03-20T16:59:14.719162963Z"} +2026/03/20 16:59:19 [transform_engine] {"stage_name":"transform_engine","events_processed":21,"events_dropped":0,"avg_latency_ms":95.5786058078219,"throughput_eps":0,"last_update":"2026-03-20T16:59:14.719265679Z"} +2026/03/20 16:59:19 ───────────────────────────────────────────────── +2026/03/20 16:59:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:19.575518716Z"} +2026/03/20 16:59:24 [metric_collector] {"stage_name":"metric_collector","events_processed":654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":130.8,"last_update":"2026-03-20T16:59:19.575961161Z"} +2026/03/20 16:59:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:19.586286869Z"} +2026/03/20 16:59:24 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":10.531482698173662,"throughput_eps":0,"last_update":"2026-03-20T16:59:19.719608981Z"} +2026/03/20 16:59:24 [transform_engine] {"stage_name":"transform_engine","events_processed":21,"events_dropped":0,"avg_latency_ms":95.5786058078219,"throughput_eps":0,"last_update":"2026-03-20T16:59:19.719640972Z"} +2026/03/20 16:59:24 ───────────────────────────────────────────────── +2026/03/20 16:59:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:24.575849435Z"} +2026/03/20 16:59:29 [metric_collector] {"stage_name":"metric_collector","events_processed":659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":131.8,"last_update":"2026-03-20T16:59:24.576193251Z"} +2026/03/20 16:59:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:24.585961265Z"} +2026/03/20 16:59:29 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":10.531482698173662,"throughput_eps":0,"last_update":"2026-03-20T16:59:24.719320451Z"} +2026/03/20 16:59:29 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":99.16793024625753,"throughput_eps":0,"last_update":"2026-03-20T16:59:24.832801464Z"} +2026/03/20 16:59:29 ───────────────────────────────────────────────── +2026/03/20 16:59:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:29.585224084Z"} +2026/03/20 16:59:34 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":10.42396715853893,"throughput_eps":0,"last_update":"2026-03-20T16:59:29.719766712Z"} +2026/03/20 16:59:34 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":99.16793024625753,"throughput_eps":0,"last_update":"2026-03-20T16:59:29.719682101Z"} +2026/03/20 16:59:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:29.575519621Z"} +2026/03/20 16:59:34 [metric_collector] {"stage_name":"metric_collector","events_processed":664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":132.8,"last_update":"2026-03-20T16:59:29.575452604Z"} +2026/03/20 16:59:34 ───────────────────────────────────────────────── +2026/03/20 16:59:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:34.585855251Z"} +2026/03/20 16:59:39 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":10.42396715853893,"throughput_eps":0,"last_update":"2026-03-20T16:59:34.719084413Z"} +2026/03/20 16:59:39 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":99.16793024625753,"throughput_eps":0,"last_update":"2026-03-20T16:59:34.719106716Z"} +2026/03/20 16:59:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:34.575568926Z"} +2026/03/20 16:59:39 [metric_collector] {"stage_name":"metric_collector","events_processed":669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":133.8,"last_update":"2026-03-20T16:59:34.57561867Z"} +2026/03/20 16:59:39 ───────────────────────────────────────────────── +2026/03/20 16:59:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:39.575901274Z"} +2026/03/20 16:59:44 [metric_collector] {"stage_name":"metric_collector","events_processed":674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":134.8,"last_update":"2026-03-20T16:59:39.576251492Z"} +2026/03/20 16:59:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:39.585866968Z"} +2026/03/20 16:59:44 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":10.42396715853893,"throughput_eps":0,"last_update":"2026-03-20T16:59:39.719124587Z"} +2026/03/20 16:59:44 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":99.16793024625753,"throughput_eps":0,"last_update":"2026-03-20T16:59:39.71915793Z"} +2026/03/20 16:59:44 ───────────────────────────────────────────────── +2026/03/20 16:59:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:44.575915099Z"} +2026/03/20 16:59:49 [metric_collector] {"stage_name":"metric_collector","events_processed":679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":135.8,"last_update":"2026-03-20T16:59:44.576334601Z"} +2026/03/20 16:59:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:44.58510336Z"} +2026/03/20 16:59:49 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":10.42396715853893,"throughput_eps":0,"last_update":"2026-03-20T16:59:44.719332074Z"} +2026/03/20 16:59:49 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":99.16793024625753,"throughput_eps":0,"last_update":"2026-03-20T16:59:44.719314511Z"} +2026/03/20 16:59:49 ───────────────────────────────────────────────── +2026/03/20 16:59:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:54 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":99.16793024625753,"throughput_eps":0,"last_update":"2026-03-20T16:59:49.718943767Z"} +2026/03/20 16:59:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:49.575497884Z"} +2026/03/20 16:59:54 [metric_collector] {"stage_name":"metric_collector","events_processed":684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":136.8,"last_update":"2026-03-20T16:59:49.575906925Z"} +2026/03/20 16:59:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":276,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:49.586744887Z"} +2026/03/20 16:59:54 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":10.42396715853893,"throughput_eps":0,"last_update":"2026-03-20T16:59:49.718963085Z"} +2026/03/20 16:59:54 ───────────────────────────────────────────────── +2026/03/20 16:59:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:54.575535614Z"} +2026/03/20 16:59:59 [metric_collector] {"stage_name":"metric_collector","events_processed":689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":137.8,"last_update":"2026-03-20T16:59:54.576138405Z"} +2026/03/20 16:59:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:54.586905182Z"} +2026/03/20 16:59:59 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":10.42396715853893,"throughput_eps":0,"last_update":"2026-03-20T16:59:54.719183335Z"} +2026/03/20 16:59:59 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":92.60210879700604,"throughput_eps":0,"last_update":"2026-03-20T16:59:54.785489426Z"} +2026/03/20 16:59:59 ───────────────────────────────────────────────── +2026/03/20 17:00:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:59.575829146Z"} +2026/03/20 17:00:04 [metric_collector] {"stage_name":"metric_collector","events_processed":699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":139.8,"last_update":"2026-03-20T17:00:04.575767769Z"} +2026/03/20 17:00:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:59.585053397Z"} +2026/03/20 17:00:04 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":10.571536326831145,"throughput_eps":0,"last_update":"2026-03-20T16:59:59.719376068Z"} +2026/03/20 17:00:04 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":92.60210879700604,"throughput_eps":0,"last_update":"2026-03-20T16:59:59.719342303Z"} +2026/03/20 17:00:04 ───────────────────────────────────────────────── +2026/03/20 17:00:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:09 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":92.60210879700604,"throughput_eps":0,"last_update":"2026-03-20T17:00:04.719312079Z"} +2026/03/20 17:00:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:04.575905572Z"} +2026/03/20 17:00:09 [metric_collector] {"stage_name":"metric_collector","events_processed":699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":139.8,"last_update":"2026-03-20T17:00:04.575767769Z"} +2026/03/20 17:00:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:04.592106683Z"} +2026/03/20 17:00:09 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":10.571536326831145,"throughput_eps":0,"last_update":"2026-03-20T17:00:04.719443631Z"} +2026/03/20 17:00:09 ───────────────────────────────────────────────── +2026/03/20 17:00:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:09.575518206Z"} +2026/03/20 17:00:14 [metric_collector] {"stage_name":"metric_collector","events_processed":704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":140.8,"last_update":"2026-03-20T17:00:09.5757922Z"} +2026/03/20 17:00:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:09.585958272Z"} +2026/03/20 17:00:14 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":10.571536326831145,"throughput_eps":0,"last_update":"2026-03-20T17:00:09.719222052Z"} +2026/03/20 17:00:14 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":92.60210879700604,"throughput_eps":0,"last_update":"2026-03-20T17:00:09.71924693Z"} +2026/03/20 17:00:14 ───────────────────────────────────────────────── +2026/03/20 17:00:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":286,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:14.586416202Z"} +2026/03/20 17:00:19 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":10.571536326831145,"throughput_eps":0,"last_update":"2026-03-20T17:00:14.719767942Z"} +2026/03/20 17:00:19 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":92.60210879700604,"throughput_eps":0,"last_update":"2026-03-20T17:00:14.718642752Z"} +2026/03/20 17:00:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:14.575798857Z"} +2026/03/20 17:00:19 [metric_collector] {"stage_name":"metric_collector","events_processed":709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":141.8,"last_update":"2026-03-20T17:00:14.57612543Z"} +2026/03/20 17:00:19 ───────────────────────────────────────────────── +2026/03/20 17:00:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:19.575747379Z"} +2026/03/20 17:00:24 [metric_collector] {"stage_name":"metric_collector","events_processed":714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":142.8,"last_update":"2026-03-20T17:00:19.576547748Z"} +2026/03/20 17:00:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:19.585869228Z"} +2026/03/20 17:00:24 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":10.571536326831145,"throughput_eps":0,"last_update":"2026-03-20T17:00:19.719095851Z"} +2026/03/20 17:00:24 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":92.60210879700604,"throughput_eps":0,"last_update":"2026-03-20T17:00:19.719104006Z"} +2026/03/20 17:00:24 ───────────────────────────────────────────────── +2026/03/20 17:00:24 [ANOMALY] time=2026-03-20T17:00:24Z score=0.9607 method=SEAD details=MAD!:w=0.24,s=0.87 RRCF-fast!:w=0.19,s=1.00 RRCF-mid!:w=0.19,s=1.00 RRCF-slow!:w=0.19,s=1.00 COPOD!:w=0.20,s=0.96 +2026/03/20 17:00:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:29 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":87.06673043760483,"throughput_eps":0,"last_update":"2026-03-20T17:00:24.783955897Z"} +2026/03/20 17:00:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:24.575689981Z"} +2026/03/20 17:00:29 [metric_collector] {"stage_name":"metric_collector","events_processed":719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":143.8,"last_update":"2026-03-20T17:00:24.576255702Z"} +2026/03/20 17:00:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:24.586677085Z"} +2026/03/20 17:00:29 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":10.571536326831145,"throughput_eps":0,"last_update":"2026-03-20T17:00:24.71901454Z"} +2026/03/20 17:00:29 ───────────────────────────────────────────────── +2026/03/20 17:00:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:34 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":87.06673043760483,"throughput_eps":0,"last_update":"2026-03-20T17:00:29.719071412Z"} +2026/03/20 17:00:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:29.575573229Z"} +2026/03/20 17:00:34 [metric_collector] {"stage_name":"metric_collector","events_processed":724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":144.8,"last_update":"2026-03-20T17:00:29.575996638Z"} +2026/03/20 17:00:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:29.588715201Z"} +2026/03/20 17:00:34 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":10.324819661464916,"throughput_eps":0,"last_update":"2026-03-20T17:00:29.719062915Z"} +2026/03/20 17:00:34 ───────────────────────────────────────────────── +2026/03/20 17:00:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:34.575687901Z"} +2026/03/20 17:00:39 [metric_collector] {"stage_name":"metric_collector","events_processed":729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":145.8,"last_update":"2026-03-20T17:00:34.57602213Z"} +2026/03/20 17:00:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:34.585972834Z"} +2026/03/20 17:00:39 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":10.324819661464916,"throughput_eps":0,"last_update":"2026-03-20T17:00:34.719222645Z"} +2026/03/20 17:00:39 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":87.06673043760483,"throughput_eps":0,"last_update":"2026-03-20T17:00:34.719234627Z"} +2026/03/20 17:00:39 ───────────────────────────────────────────────── +2026/03/20 17:00:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:44 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":87.06673043760483,"throughput_eps":0,"last_update":"2026-03-20T17:00:39.719710071Z"} +2026/03/20 17:00:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:39.57603646Z"} +2026/03/20 17:00:44 [metric_collector] {"stage_name":"metric_collector","events_processed":734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":146.8,"last_update":"2026-03-20T17:00:39.576433108Z"} +2026/03/20 17:00:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:39.585402058Z"} +2026/03/20 17:00:44 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":10.324819661464916,"throughput_eps":0,"last_update":"2026-03-20T17:00:39.719702947Z"} +2026/03/20 17:00:44 ───────────────────────────────────────────────── +2026/03/20 17:00:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:44.575512829Z"} +2026/03/20 17:00:49 [metric_collector] {"stage_name":"metric_collector","events_processed":739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":147.8,"last_update":"2026-03-20T17:00:44.576029796Z"} +2026/03/20 17:00:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:44.584832629Z"} +2026/03/20 17:00:49 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":10.324819661464916,"throughput_eps":0,"last_update":"2026-03-20T17:00:44.719115715Z"} +2026/03/20 17:00:49 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":87.06673043760483,"throughput_eps":0,"last_update":"2026-03-20T17:00:44.719130795Z"} +2026/03/20 17:00:49 ───────────────────────────────────────────────── +2026/03/20 17:00:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:49.576094299Z"} +2026/03/20 17:00:54 [metric_collector] {"stage_name":"metric_collector","events_processed":744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":148.8,"last_update":"2026-03-20T17:00:49.576411686Z"} +2026/03/20 17:00:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:49.585564599Z"} +2026/03/20 17:00:54 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":10.324819661464916,"throughput_eps":0,"last_update":"2026-03-20T17:00:49.719809112Z"} +2026/03/20 17:00:54 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":87.06673043760483,"throughput_eps":0,"last_update":"2026-03-20T17:00:49.718654225Z"} +2026/03/20 17:00:54 ───────────────────────────────────────────────── +2026/03/20 17:00:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:59 [transform_engine] {"stage_name":"transform_engine","events_processed":25,"events_dropped":0,"avg_latency_ms":92.18896135008387,"throughput_eps":0,"last_update":"2026-03-20T17:00:54.832073248Z"} +2026/03/20 17:00:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:54.575620644Z"} +2026/03/20 17:00:59 [metric_collector] {"stage_name":"metric_collector","events_processed":749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":149.8,"last_update":"2026-03-20T17:00:54.575819775Z"} +2026/03/20 17:00:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:54.586115603Z"} +2026/03/20 17:00:59 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":10.324819661464916,"throughput_eps":0,"last_update":"2026-03-20T17:00:54.719382488Z"} +2026/03/20 17:00:59 ───────────────────────────────────────────────── +2026/03/20 17:01:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:59.575744382Z"} +2026/03/20 17:01:04 [metric_collector] {"stage_name":"metric_collector","events_processed":754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":150.8,"last_update":"2026-03-20T17:00:59.576250659Z"} +2026/03/20 17:01:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:59.584525485Z"} +2026/03/20 17:01:04 [detection_layer] {"stage_name":"detection_layer","events_processed":25,"events_dropped":0,"avg_latency_ms":10.383887329171934,"throughput_eps":0,"last_update":"2026-03-20T17:00:59.718788736Z"} +2026/03/20 17:01:04 [transform_engine] {"stage_name":"transform_engine","events_processed":25,"events_dropped":0,"avg_latency_ms":92.18896135008387,"throughput_eps":0,"last_update":"2026-03-20T17:00:59.718745774Z"} +2026/03/20 17:01:04 ───────────────────────────────────────────────── +2026/03/20 17:01:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:09 [detection_layer] {"stage_name":"detection_layer","events_processed":25,"events_dropped":0,"avg_latency_ms":10.383887329171934,"throughput_eps":0,"last_update":"2026-03-20T17:01:04.719662761Z"} +2026/03/20 17:01:09 [transform_engine] {"stage_name":"transform_engine","events_processed":25,"events_dropped":0,"avg_latency_ms":92.18896135008387,"throughput_eps":0,"last_update":"2026-03-20T17:01:04.719766309Z"} +2026/03/20 17:01:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:04.575958184Z"} +2026/03/20 17:01:09 [metric_collector] {"stage_name":"metric_collector","events_processed":759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":151.8,"last_update":"2026-03-20T17:01:04.576705833Z"} +2026/03/20 17:01:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:04.586416895Z"} +2026/03/20 17:01:09 ───────────────────────────────────────────────── +2026/03/20 17:01:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:14 [detection_layer] {"stage_name":"detection_layer","events_processed":25,"events_dropped":0,"avg_latency_ms":10.383887329171934,"throughput_eps":0,"last_update":"2026-03-20T17:01:09.71879442Z"} +2026/03/20 17:01:14 [transform_engine] {"stage_name":"transform_engine","events_processed":25,"events_dropped":0,"avg_latency_ms":92.18896135008387,"throughput_eps":0,"last_update":"2026-03-20T17:01:09.718734295Z"} +2026/03/20 17:01:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:09.575790943Z"} +2026/03/20 17:01:14 [metric_collector] {"stage_name":"metric_collector","events_processed":764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":152.8,"last_update":"2026-03-20T17:01:09.576098671Z"} +2026/03/20 17:01:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:09.586603221Z"} +2026/03/20 17:01:14 ───────────────────────────────────────────────── +2026/03/20 17:01:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:14.575749295Z"} +2026/03/20 17:01:19 [metric_collector] {"stage_name":"metric_collector","events_processed":769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":153.8,"last_update":"2026-03-20T17:01:14.576130213Z"} +2026/03/20 17:01:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:14.586229949Z"} +2026/03/20 17:01:19 [detection_layer] {"stage_name":"detection_layer","events_processed":25,"events_dropped":0,"avg_latency_ms":10.383887329171934,"throughput_eps":0,"last_update":"2026-03-20T17:01:14.71959791Z"} +2026/03/20 17:01:19 [transform_engine] {"stage_name":"transform_engine","events_processed":25,"events_dropped":0,"avg_latency_ms":92.18896135008387,"throughput_eps":0,"last_update":"2026-03-20T17:01:14.71955594Z"} +2026/03/20 17:01:19 ───────────────────────────────────────────────── +2026/03/20 17:01:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:19.575942033Z"} +2026/03/20 17:01:24 [metric_collector] {"stage_name":"metric_collector","events_processed":774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":154.8,"last_update":"2026-03-20T17:01:19.576226317Z"} +2026/03/20 17:01:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:19.584816288Z"} +2026/03/20 17:01:24 [detection_layer] {"stage_name":"detection_layer","events_processed":25,"events_dropped":0,"avg_latency_ms":10.383887329171934,"throughput_eps":0,"last_update":"2026-03-20T17:01:19.7192108Z"} +2026/03/20 17:01:24 [transform_engine] {"stage_name":"transform_engine","events_processed":25,"events_dropped":0,"avg_latency_ms":92.18896135008387,"throughput_eps":0,"last_update":"2026-03-20T17:01:19.719311162Z"} +2026/03/20 17:01:24 ───────────────────────────────────────────────── +2026/03/20 17:01:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:24.57618224Z"} +2026/03/20 17:01:29 [metric_collector] {"stage_name":"metric_collector","events_processed":779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":155.8,"last_update":"2026-03-20T17:01:24.576169595Z"} +2026/03/20 17:01:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:24.586245798Z"} +2026/03/20 17:01:29 [detection_layer] {"stage_name":"detection_layer","events_processed":25,"events_dropped":0,"avg_latency_ms":10.383887329171934,"throughput_eps":0,"last_update":"2026-03-20T17:01:24.719523225Z"} +2026/03/20 17:01:29 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":95.8821968800671,"throughput_eps":0,"last_update":"2026-03-20T17:01:24.830114342Z"} +2026/03/20 17:01:29 ───────────────────────────────────────────────── +2026/03/20 17:01:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:29.575918663Z"} +2026/03/20 17:01:34 [metric_collector] {"stage_name":"metric_collector","events_processed":784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":156.8,"last_update":"2026-03-20T17:01:29.576268762Z"} +2026/03/20 17:01:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:29.585905996Z"} +2026/03/20 17:01:34 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":10.453477063337548,"throughput_eps":0,"last_update":"2026-03-20T17:01:29.719393395Z"} +2026/03/20 17:01:34 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":95.8821968800671,"throughput_eps":0,"last_update":"2026-03-20T17:01:29.719253247Z"} +2026/03/20 17:01:34 ───────────────────────────────────────────────── +2026/03/20 17:01:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:34.575543111Z"} +2026/03/20 17:01:39 [metric_collector] {"stage_name":"metric_collector","events_processed":789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":157.8,"last_update":"2026-03-20T17:01:34.575946723Z"} +2026/03/20 17:01:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:34.585508674Z"} +2026/03/20 17:01:39 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":10.453477063337548,"throughput_eps":0,"last_update":"2026-03-20T17:01:34.719029125Z"} +2026/03/20 17:01:39 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":95.8821968800671,"throughput_eps":0,"last_update":"2026-03-20T17:01:34.718830094Z"} +2026/03/20 17:01:39 ───────────────────────────────────────────────── +2026/03/20 17:01:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:44 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":10.453477063337548,"throughput_eps":0,"last_update":"2026-03-20T17:01:39.719610316Z"} +2026/03/20 17:01:44 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":95.8821968800671,"throughput_eps":0,"last_update":"2026-03-20T17:01:39.719724615Z"} +2026/03/20 17:01:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:39.575779864Z"} +2026/03/20 17:01:44 [metric_collector] {"stage_name":"metric_collector","events_processed":794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":158.8,"last_update":"2026-03-20T17:01:39.576183374Z"} +2026/03/20 17:01:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":320,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:39.585218299Z"} +2026/03/20 17:01:44 ───────────────────────────────────────────────── +2026/03/20 17:01:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:44.575513875Z"} +2026/03/20 17:01:49 [metric_collector] {"stage_name":"metric_collector","events_processed":799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":159.8,"last_update":"2026-03-20T17:01:44.576051052Z"} +2026/03/20 17:01:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:44.586865951Z"} +2026/03/20 17:01:49 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":10.453477063337548,"throughput_eps":0,"last_update":"2026-03-20T17:01:44.719232424Z"} +2026/03/20 17:01:49 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":95.8821968800671,"throughput_eps":0,"last_update":"2026-03-20T17:01:44.719265669Z"} +2026/03/20 17:01:49 ───────────────────────────────────────────────── +2026/03/20 17:01:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:49.575863551Z"} +2026/03/20 17:01:54 [metric_collector] {"stage_name":"metric_collector","events_processed":804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":160.8,"last_update":"2026-03-20T17:01:49.576170658Z"} +2026/03/20 17:01:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:49.585713184Z"} +2026/03/20 17:01:54 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":10.453477063337548,"throughput_eps":0,"last_update":"2026-03-20T17:01:49.719167037Z"} +2026/03/20 17:01:54 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":95.8821968800671,"throughput_eps":0,"last_update":"2026-03-20T17:01:49.719059381Z"} +2026/03/20 17:01:54 ───────────────────────────────────────────────── +2026/03/20 17:01:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:59 [metric_collector] {"stage_name":"metric_collector","events_processed":809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":161.8,"last_update":"2026-03-20T17:01:54.576707165Z"} +2026/03/20 17:01:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:54.585229511Z"} +2026/03/20 17:01:59 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":10.453477063337548,"throughput_eps":0,"last_update":"2026-03-20T17:01:54.720430354Z"} +2026/03/20 17:01:59 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":89.91524970405368,"throughput_eps":0,"last_update":"2026-03-20T17:01:54.7855338Z"} +2026/03/20 17:01:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:54.57595145Z"} +2026/03/20 17:01:59 ───────────────────────────────────────────────── +2026/03/20 17:02:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:59.575594849Z"} +2026/03/20 17:02:04 [metric_collector] {"stage_name":"metric_collector","events_processed":814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":162.8,"last_update":"2026-03-20T17:01:59.575804821Z"} +2026/03/20 17:02:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:59.586144563Z"} +2026/03/20 17:02:04 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":9.202104650670039,"throughput_eps":0,"last_update":"2026-03-20T17:01:59.719473486Z"} +2026/03/20 17:02:04 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":89.91524970405368,"throughput_eps":0,"last_update":"2026-03-20T17:01:59.719484777Z"} +2026/03/20 17:02:04 ───────────────────────────────────────────────── +2026/03/20 17:02:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":330,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:04.585065168Z"} +2026/03/20 17:02:09 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":9.202104650670039,"throughput_eps":0,"last_update":"2026-03-20T17:02:04.719453314Z"} +2026/03/20 17:02:09 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":89.91524970405368,"throughput_eps":0,"last_update":"2026-03-20T17:02:04.719465789Z"} +2026/03/20 17:02:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:04.575867389Z"} +2026/03/20 17:02:09 [metric_collector] {"stage_name":"metric_collector","events_processed":819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":163.8,"last_update":"2026-03-20T17:02:04.576300587Z"} +2026/03/20 17:02:09 ───────────────────────────────────────────────── +2026/03/20 17:02:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:09.575917927Z"} +2026/03/20 17:02:14 [metric_collector] {"stage_name":"metric_collector","events_processed":824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":164.8,"last_update":"2026-03-20T17:02:09.576470714Z"} +2026/03/20 17:02:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:09.585536641Z"} +2026/03/20 17:02:14 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":9.202104650670039,"throughput_eps":0,"last_update":"2026-03-20T17:02:09.718826837Z"} +2026/03/20 17:02:14 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":89.91524970405368,"throughput_eps":0,"last_update":"2026-03-20T17:02:09.71883876Z"} +2026/03/20 17:02:14 ───────────────────────────────────────────────── +2026/03/20 17:02:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:14.585213956Z"} +2026/03/20 17:02:19 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":9.202104650670039,"throughput_eps":0,"last_update":"2026-03-20T17:02:14.719583856Z"} +2026/03/20 17:02:19 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":89.91524970405368,"throughput_eps":0,"last_update":"2026-03-20T17:02:14.719596631Z"} +2026/03/20 17:02:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:14.575900775Z"} +2026/03/20 17:02:19 [metric_collector] {"stage_name":"metric_collector","events_processed":829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":165.8,"last_update":"2026-03-20T17:02:14.576258329Z"} +2026/03/20 17:02:19 ───────────────────────────────────────────────── +2026/03/20 17:02:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:19.575856769Z"} +2026/03/20 17:02:24 [metric_collector] {"stage_name":"metric_collector","events_processed":834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":166.8,"last_update":"2026-03-20T17:02:19.576194084Z"} +2026/03/20 17:02:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:19.586460038Z"} +2026/03/20 17:02:24 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":9.202104650670039,"throughput_eps":0,"last_update":"2026-03-20T17:02:19.719718921Z"} +2026/03/20 17:02:24 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":89.91524970405368,"throughput_eps":0,"last_update":"2026-03-20T17:02:19.719725955Z"} +2026/03/20 17:02:24 ───────────────────────────────────────────────── +2026/03/20 17:02:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:29 [metric_collector] {"stage_name":"metric_collector","events_processed":839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":167.8,"last_update":"2026-03-20T17:02:24.576565528Z"} +2026/03/20 17:02:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:24.58503712Z"} +2026/03/20 17:02:29 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":9.202104650670039,"throughput_eps":0,"last_update":"2026-03-20T17:02:24.719268434Z"} +2026/03/20 17:02:29 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":84.77009876324294,"throughput_eps":0,"last_update":"2026-03-20T17:02:24.783602876Z"} +2026/03/20 17:02:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:29.57559238Z"} +2026/03/20 17:02:29 ───────────────────────────────────────────────── +2026/03/20 17:02:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:34 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":9.834080120536033,"throughput_eps":0,"last_update":"2026-03-20T17:02:29.719235774Z"} +2026/03/20 17:02:34 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":84.77009876324294,"throughput_eps":0,"last_update":"2026-03-20T17:02:29.719297973Z"} +2026/03/20 17:02:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:29.57559238Z"} +2026/03/20 17:02:34 [metric_collector] {"stage_name":"metric_collector","events_processed":844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":168.8,"last_update":"2026-03-20T17:02:29.576227244Z"} +2026/03/20 17:02:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:29.584908578Z"} +2026/03/20 17:02:34 ───────────────────────────────────────────────── +2026/03/20 17:02:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:39 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":84.77009876324294,"throughput_eps":0,"last_update":"2026-03-20T17:02:34.719522754Z"} +2026/03/20 17:02:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:34.575555541Z"} +2026/03/20 17:02:39 [metric_collector] {"stage_name":"metric_collector","events_processed":849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":169.8,"last_update":"2026-03-20T17:02:34.575954985Z"} +2026/03/20 17:02:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":342,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:34.586198849Z"} +2026/03/20 17:02:39 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":9.834080120536033,"throughput_eps":0,"last_update":"2026-03-20T17:02:34.719542461Z"} +2026/03/20 17:02:39 ───────────────────────────────────────────────── +2026/03/20 17:02:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:39.575797909Z"} +2026/03/20 17:02:44 [metric_collector] {"stage_name":"metric_collector","events_processed":854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":170.8,"last_update":"2026-03-20T17:02:39.576873456Z"} +2026/03/20 17:02:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:39.586510129Z"} +2026/03/20 17:02:44 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":9.834080120536033,"throughput_eps":0,"last_update":"2026-03-20T17:02:39.718863677Z"} +2026/03/20 17:02:44 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":84.77009876324294,"throughput_eps":0,"last_update":"2026-03-20T17:02:39.71872434Z"} +2026/03/20 17:02:44 ───────────────────────────────────────────────── +2026/03/20 17:02:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:49 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":84.77009876324294,"throughput_eps":0,"last_update":"2026-03-20T17:02:44.719521181Z"} +2026/03/20 17:02:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:44.575560984Z"} +2026/03/20 17:02:49 [metric_collector] {"stage_name":"metric_collector","events_processed":859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":171.8,"last_update":"2026-03-20T17:02:44.575623934Z"} +2026/03/20 17:02:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:44.586289085Z"} +2026/03/20 17:02:49 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":9.834080120536033,"throughput_eps":0,"last_update":"2026-03-20T17:02:44.719608959Z"} +2026/03/20 17:02:49 ───────────────────────────────────────────────── +2026/03/20 17:02:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:49.576055202Z"} +2026/03/20 17:02:54 [metric_collector] {"stage_name":"metric_collector","events_processed":864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":172.8,"last_update":"2026-03-20T17:02:49.576387287Z"} +2026/03/20 17:02:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:49.586262397Z"} +2026/03/20 17:02:54 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":9.834080120536033,"throughput_eps":0,"last_update":"2026-03-20T17:02:49.719555149Z"} +2026/03/20 17:02:54 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":84.77009876324294,"throughput_eps":0,"last_update":"2026-03-20T17:02:49.719521855Z"} +2026/03/20 17:02:54 ───────────────────────────────────────────────── +2026/03/20 17:02:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:54.575635137Z"} +2026/03/20 17:02:59 [metric_collector] {"stage_name":"metric_collector","events_processed":869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":173.8,"last_update":"2026-03-20T17:02:54.576076873Z"} +2026/03/20 17:02:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":350,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:54.586379691Z"} +2026/03/20 17:02:59 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":9.834080120536033,"throughput_eps":0,"last_update":"2026-03-20T17:02:54.719459032Z"} +2026/03/20 17:02:59 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":80.79570821059436,"throughput_eps":0,"last_update":"2026-03-20T17:02:54.78447845Z"} +2026/03/20 17:02:59 ───────────────────────────────────────────────── +2026/03/20 17:03:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:59.575522983Z"} +2026/03/20 17:03:04 [metric_collector] {"stage_name":"metric_collector","events_processed":874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":174.8,"last_update":"2026-03-20T17:02:59.575984966Z"} +2026/03/20 17:03:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:59.586496415Z"} +2026/03/20 17:03:04 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":10.233033896428827,"throughput_eps":0,"last_update":"2026-03-20T17:02:59.719831162Z"} +2026/03/20 17:03:04 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":80.79570821059436,"throughput_eps":0,"last_update":"2026-03-20T17:02:59.718681904Z"} +2026/03/20 17:03:04 ───────────────────────────────────────────────── +2026/03/20 17:03:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:09 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":80.79570821059436,"throughput_eps":0,"last_update":"2026-03-20T17:03:04.719157239Z"} +2026/03/20 17:03:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:04.575663207Z"} +2026/03/20 17:03:09 [metric_collector] {"stage_name":"metric_collector","events_processed":879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":175.8,"last_update":"2026-03-20T17:03:04.575982959Z"} +2026/03/20 17:03:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:04.58564333Z"} +2026/03/20 17:03:09 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":10.233033896428827,"throughput_eps":0,"last_update":"2026-03-20T17:03:04.71914206Z"} +2026/03/20 17:03:09 ───────────────────────────────────────────────── +2026/03/20 17:03:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:14 [metric_collector] {"stage_name":"metric_collector","events_processed":884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":176.8,"last_update":"2026-03-20T17:03:09.576140424Z"} +2026/03/20 17:03:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:09.585223531Z"} +2026/03/20 17:03:14 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":10.233033896428827,"throughput_eps":0,"last_update":"2026-03-20T17:03:09.719620329Z"} +2026/03/20 17:03:14 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":80.79570821059436,"throughput_eps":0,"last_update":"2026-03-20T17:03:09.719633043Z"} +2026/03/20 17:03:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:09.57576171Z"} +2026/03/20 17:03:14 ───────────────────────────────────────────────── +2026/03/20 17:03:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:14.575957943Z"} +2026/03/20 17:03:19 [metric_collector] {"stage_name":"metric_collector","events_processed":889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":177.8,"last_update":"2026-03-20T17:03:14.57626977Z"} +2026/03/20 17:03:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:14.586275714Z"} +2026/03/20 17:03:19 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":10.233033896428827,"throughput_eps":0,"last_update":"2026-03-20T17:03:14.719480146Z"} +2026/03/20 17:03:19 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":80.79570821059436,"throughput_eps":0,"last_update":"2026-03-20T17:03:14.719456721Z"} +2026/03/20 17:03:19 ───────────────────────────────────────────────── +2026/03/20 17:03:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:19.575715385Z"} +2026/03/20 17:03:24 [metric_collector] {"stage_name":"metric_collector","events_processed":894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":178.8,"last_update":"2026-03-20T17:03:19.576173812Z"} +2026/03/20 17:03:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":360,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:19.586097438Z"} +2026/03/20 17:03:24 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":10.233033896428827,"throughput_eps":0,"last_update":"2026-03-20T17:03:19.71956895Z"} +2026/03/20 17:03:24 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":80.79570821059436,"throughput_eps":0,"last_update":"2026-03-20T17:03:19.719509086Z"} +2026/03/20 17:03:24 ───────────────────────────────────────────────── +2026/03/20 17:03:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:24.585258206Z"} +2026/03/20 17:03:29 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":10.233033896428827,"throughput_eps":0,"last_update":"2026-03-20T17:03:24.719485842Z"} +2026/03/20 17:03:29 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":77.2287629684755,"throughput_eps":0,"last_update":"2026-03-20T17:03:24.782512812Z"} +2026/03/20 17:03:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:24.575658047Z"} +2026/03/20 17:03:29 [metric_collector] {"stage_name":"metric_collector","events_processed":899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":179.8,"last_update":"2026-03-20T17:03:24.575975615Z"} +2026/03/20 17:03:29 ───────────────────────────────────────────────── +2026/03/20 17:03:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:29.575803182Z"} +2026/03/20 17:03:34 [metric_collector] {"stage_name":"metric_collector","events_processed":904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":180.8,"last_update":"2026-03-20T17:03:29.576002673Z"} +2026/03/20 17:03:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:29.586547509Z"} +2026/03/20 17:03:34 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":10.668866717143061,"throughput_eps":0,"last_update":"2026-03-20T17:03:29.718787471Z"} +2026/03/20 17:03:34 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":77.2287629684755,"throughput_eps":0,"last_update":"2026-03-20T17:03:29.718778533Z"} +2026/03/20 17:03:34 ───────────────────────────────────────────────── +2026/03/20 17:03:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:39 [metric_collector] {"stage_name":"metric_collector","events_processed":909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":181.8,"last_update":"2026-03-20T17:03:34.575789623Z"} +2026/03/20 17:03:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:34.587231886Z"} +2026/03/20 17:03:39 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":10.668866717143061,"throughput_eps":0,"last_update":"2026-03-20T17:03:34.719810083Z"} +2026/03/20 17:03:39 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":77.2287629684755,"throughput_eps":0,"last_update":"2026-03-20T17:03:34.719690334Z"} +2026/03/20 17:03:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:34.575493747Z"} +2026/03/20 17:03:39 ───────────────────────────────────────────────── +2026/03/20 17:03:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:44 [metric_collector] {"stage_name":"metric_collector","events_processed":914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":182.8,"last_update":"2026-03-20T17:03:39.575853171Z"} +2026/03/20 17:03:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:39.585955751Z"} +2026/03/20 17:03:44 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":10.668866717143061,"throughput_eps":0,"last_update":"2026-03-20T17:03:39.719308728Z"} +2026/03/20 17:03:44 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":77.2287629684755,"throughput_eps":0,"last_update":"2026-03-20T17:03:39.719321402Z"} +2026/03/20 17:03:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:39.575555341Z"} +2026/03/20 17:03:44 ───────────────────────────────────────────────── +2026/03/20 17:03:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:44.575838092Z"} +2026/03/20 17:03:49 [metric_collector] {"stage_name":"metric_collector","events_processed":919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":183.8,"last_update":"2026-03-20T17:03:44.576175919Z"} +2026/03/20 17:03:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:44.586229216Z"} +2026/03/20 17:03:49 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":10.668866717143061,"throughput_eps":0,"last_update":"2026-03-20T17:03:44.719495564Z"} +2026/03/20 17:03:49 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":77.2287629684755,"throughput_eps":0,"last_update":"2026-03-20T17:03:44.71950844Z"} +2026/03/20 17:03:49 ───────────────────────────────────────────────── +2026/03/20 17:03:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:49.575893051Z"} +2026/03/20 17:03:54 [metric_collector] {"stage_name":"metric_collector","events_processed":924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":184.8,"last_update":"2026-03-20T17:03:49.576677242Z"} +2026/03/20 17:03:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:49.585231731Z"} +2026/03/20 17:03:54 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":10.668866717143061,"throughput_eps":0,"last_update":"2026-03-20T17:03:49.719470989Z"} +2026/03/20 17:03:54 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":77.2287629684755,"throughput_eps":0,"last_update":"2026-03-20T17:03:49.719478723Z"} +2026/03/20 17:03:54 ───────────────────────────────────────────────── +2026/03/20 17:03:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:54.586304017Z"} +2026/03/20 17:03:59 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":10.668866717143061,"throughput_eps":0,"last_update":"2026-03-20T17:03:54.71964884Z"} +2026/03/20 17:03:59 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":73.8666219747804,"throughput_eps":0,"last_update":"2026-03-20T17:03:54.78007828Z"} +2026/03/20 17:03:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:54.575764468Z"} +2026/03/20 17:03:59 [metric_collector] {"stage_name":"metric_collector","events_processed":929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":185.8,"last_update":"2026-03-20T17:03:54.575685146Z"} +2026/03/20 17:03:59 ───────────────────────────────────────────────── +2026/03/20 17:04:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:04 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":10.86302797371445,"throughput_eps":0,"last_update":"2026-03-20T17:03:59.719043709Z"} +2026/03/20 17:04:04 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":73.8666219747804,"throughput_eps":0,"last_update":"2026-03-20T17:03:59.719049711Z"} +2026/03/20 17:04:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:59.575868877Z"} +2026/03/20 17:04:04 [metric_collector] {"stage_name":"metric_collector","events_processed":934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":186.8,"last_update":"2026-03-20T17:03:59.576179391Z"} +2026/03/20 17:04:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:59.584643589Z"} +2026/03/20 17:04:04 ───────────────────────────────────────────────── +2026/03/20 17:04:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:09 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":10.86302797371445,"throughput_eps":0,"last_update":"2026-03-20T17:04:04.719206795Z"} +2026/03/20 17:04:09 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":73.8666219747804,"throughput_eps":0,"last_update":"2026-03-20T17:04:04.719214731Z"} +2026/03/20 17:04:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:04.575663549Z"} +2026/03/20 17:04:09 [metric_collector] {"stage_name":"metric_collector","events_processed":939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":187.8,"last_update":"2026-03-20T17:04:04.576038047Z"} +2026/03/20 17:04:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:04.58698711Z"} +2026/03/20 17:04:09 ───────────────────────────────────────────────── +2026/03/20 17:04:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:09.575810357Z"} +2026/03/20 17:04:14 [metric_collector] {"stage_name":"metric_collector","events_processed":944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":188.8,"last_update":"2026-03-20T17:04:09.576110571Z"} +2026/03/20 17:04:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":380,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:09.586661353Z"} +2026/03/20 17:04:14 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":10.86302797371445,"throughput_eps":0,"last_update":"2026-03-20T17:04:09.718890383Z"} +2026/03/20 17:04:14 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":73.8666219747804,"throughput_eps":0,"last_update":"2026-03-20T17:04:09.718896095Z"} +2026/03/20 17:04:14 ───────────────────────────────────────────────── +2026/03/20 17:04:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:19 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":73.8666219747804,"throughput_eps":0,"last_update":"2026-03-20T17:04:14.719070762Z"} +2026/03/20 17:04:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:14.57605958Z"} +2026/03/20 17:04:19 [metric_collector] {"stage_name":"metric_collector","events_processed":949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":189.8,"last_update":"2026-03-20T17:04:14.576416934Z"} +2026/03/20 17:04:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:14.585800823Z"} +2026/03/20 17:04:19 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":10.86302797371445,"throughput_eps":0,"last_update":"2026-03-20T17:04:14.719065312Z"} +2026/03/20 17:04:19 ───────────────────────────────────────────────── +2026/03/20 17:04:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:19.575780959Z"} +2026/03/20 17:04:24 [metric_collector] {"stage_name":"metric_collector","events_processed":954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":190.8,"last_update":"2026-03-20T17:04:19.576557765Z"} +2026/03/20 17:04:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:19.586291716Z"} +2026/03/20 17:04:24 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":10.86302797371445,"throughput_eps":0,"last_update":"2026-03-20T17:04:19.719509973Z"} +2026/03/20 17:04:24 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":73.8666219747804,"throughput_eps":0,"last_update":"2026-03-20T17:04:19.719517667Z"} +2026/03/20 17:04:24 ───────────────────────────────────────────────── +2026/03/20 17:04:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:24.585487364Z"} +2026/03/20 17:04:29 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":10.86302797371445,"throughput_eps":0,"last_update":"2026-03-20T17:04:24.719814811Z"} +2026/03/20 17:04:29 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":81.70124017982432,"throughput_eps":0,"last_update":"2026-03-20T17:04:24.831748146Z"} +2026/03/20 17:04:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:24.576042637Z"} +2026/03/20 17:04:29 [metric_collector] {"stage_name":"metric_collector","events_processed":959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":191.8,"last_update":"2026-03-20T17:04:24.576332001Z"} +2026/03/20 17:04:29 ───────────────────────────────────────────────── +2026/03/20 17:04:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:29.575567543Z"} +2026/03/20 17:04:34 [metric_collector] {"stage_name":"metric_collector","events_processed":964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":192.8,"last_update":"2026-03-20T17:04:29.575706238Z"} +2026/03/20 17:04:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":388,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:29.585586881Z"} +2026/03/20 17:04:34 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":11.15847997897156,"throughput_eps":0,"last_update":"2026-03-20T17:04:29.718810551Z"} +2026/03/20 17:04:34 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":81.70124017982432,"throughput_eps":0,"last_update":"2026-03-20T17:04:29.718826151Z"} +2026/03/20 17:04:34 ───────────────────────────────────────────────── +2026/03/20 17:04:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:39 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":81.70124017982432,"throughput_eps":0,"last_update":"2026-03-20T17:04:34.71893824Z"} +2026/03/20 17:04:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:34.575569353Z"} +2026/03/20 17:04:39 [metric_collector] {"stage_name":"metric_collector","events_processed":969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":193.8,"last_update":"2026-03-20T17:04:34.576379073Z"} +2026/03/20 17:04:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":390,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:34.585675336Z"} +2026/03/20 17:04:39 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":11.15847997897156,"throughput_eps":0,"last_update":"2026-03-20T17:04:34.718930095Z"} +2026/03/20 17:04:39 ───────────────────────────────────────────────── +2026/03/20 17:04:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:39.575881784Z"} +2026/03/20 17:04:44 [metric_collector] {"stage_name":"metric_collector","events_processed":974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":194.8,"last_update":"2026-03-20T17:04:39.576297851Z"} +2026/03/20 17:04:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:39.585585338Z"} +2026/03/20 17:04:44 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":11.15847997897156,"throughput_eps":0,"last_update":"2026-03-20T17:04:39.71884367Z"} +2026/03/20 17:04:44 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":81.70124017982432,"throughput_eps":0,"last_update":"2026-03-20T17:04:39.718855472Z"} +2026/03/20 17:04:44 ───────────────────────────────────────────────── +2026/03/20 17:04:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:44.575852944Z"} +2026/03/20 17:04:49 [metric_collector] {"stage_name":"metric_collector","events_processed":979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":195.8,"last_update":"2026-03-20T17:04:44.576177536Z"} +2026/03/20 17:04:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:44.584805601Z"} +2026/03/20 17:04:49 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":11.15847997897156,"throughput_eps":0,"last_update":"2026-03-20T17:04:44.719037894Z"} +2026/03/20 17:04:49 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":81.70124017982432,"throughput_eps":0,"last_update":"2026-03-20T17:04:44.719048234Z"} +2026/03/20 17:04:49 ───────────────────────────────────────────────── +2026/03/20 17:04:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:49.57605576Z"} +2026/03/20 17:04:54 [metric_collector] {"stage_name":"metric_collector","events_processed":984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":196.8,"last_update":"2026-03-20T17:04:49.576805996Z"} +2026/03/20 17:04:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:49.585139619Z"} +2026/03/20 17:04:54 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":11.15847997897156,"throughput_eps":0,"last_update":"2026-03-20T17:04:49.719584093Z"} +2026/03/20 17:04:54 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":81.70124017982432,"throughput_eps":0,"last_update":"2026-03-20T17:04:49.71959791Z"} +2026/03/20 17:04:54 ───────────────────────────────────────────────── +2026/03/20 17:04:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:54.57597976Z"} +2026/03/20 17:04:59 [metric_collector] {"stage_name":"metric_collector","events_processed":989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":197.8,"last_update":"2026-03-20T17:04:54.576264917Z"} +2026/03/20 17:04:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:54.585003123Z"} +2026/03/20 17:04:59 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":11.15847997897156,"throughput_eps":0,"last_update":"2026-03-20T17:04:54.719403601Z"} +2026/03/20 17:04:59 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":87.40977334385947,"throughput_eps":0,"last_update":"2026-03-20T17:04:54.829664099Z"} +2026/03/20 17:04:59 ───────────────────────────────────────────────── +2026/03/20 17:05:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:04 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":87.40977334385947,"throughput_eps":0,"last_update":"2026-03-20T17:04:59.719128053Z"} +2026/03/20 17:05:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:59.575545973Z"} +2026/03/20 17:05:04 [metric_collector] {"stage_name":"metric_collector","events_processed":994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":198.8,"last_update":"2026-03-20T17:04:59.575756175Z"} +2026/03/20 17:05:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":400,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:59.585750798Z"} +2026/03/20 17:05:04 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":11.57642818317725,"throughput_eps":0,"last_update":"2026-03-20T17:04:59.719113606Z"} +2026/03/20 17:05:04 ───────────────────────────────────────────────── +2026/03/20 17:05:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:04.576416155Z"} +2026/03/20 17:05:09 [metric_collector] {"stage_name":"metric_collector","events_processed":999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":199.8,"last_update":"2026-03-20T17:05:04.576854765Z"} +2026/03/20 17:05:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":402,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:04.585961699Z"} +2026/03/20 17:05:09 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":11.57642818317725,"throughput_eps":0,"last_update":"2026-03-20T17:05:04.719209102Z"} +2026/03/20 17:05:09 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":87.40977334385947,"throughput_eps":0,"last_update":"2026-03-20T17:05:04.719221146Z"} +2026/03/20 17:05:09 ───────────────────────────────────────────────── +2026/03/20 17:05:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:14 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":11.57642818317725,"throughput_eps":0,"last_update":"2026-03-20T17:05:09.719018353Z"} +2026/03/20 17:05:14 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":87.40977334385947,"throughput_eps":0,"last_update":"2026-03-20T17:05:09.719030627Z"} +2026/03/20 17:05:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:09.575555756Z"} +2026/03/20 17:05:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":200.8,"last_update":"2026-03-20T17:05:09.575903021Z"} +2026/03/20 17:05:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:09.585639211Z"} +2026/03/20 17:05:14 ───────────────────────────────────────────────── +2026/03/20 17:05:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:14.584911525Z"} +2026/03/20 17:05:19 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":11.57642818317725,"throughput_eps":0,"last_update":"2026-03-20T17:05:14.719303283Z"} +2026/03/20 17:05:19 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":87.40977334385947,"throughput_eps":0,"last_update":"2026-03-20T17:05:14.719318431Z"} +2026/03/20 17:05:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:14.576201911Z"} +2026/03/20 17:05:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":201.8,"last_update":"2026-03-20T17:05:14.576758948Z"} +2026/03/20 17:05:19 ───────────────────────────────────────────────── +2026/03/20 17:05:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:24 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":87.40977334385947,"throughput_eps":0,"last_update":"2026-03-20T17:05:19.719070668Z"} +2026/03/20 17:05:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:19.575517565Z"} +2026/03/20 17:05:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":202.8,"last_update":"2026-03-20T17:05:19.575626404Z"} +2026/03/20 17:05:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":408,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:19.584732458Z"} +2026/03/20 17:05:24 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":11.57642818317725,"throughput_eps":0,"last_update":"2026-03-20T17:05:19.71906078Z"} +2026/03/20 17:05:24 ───────────────────────────────────────────────── +2026/03/20 17:05:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:24.57568769Z"} +2026/03/20 17:05:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":203.8,"last_update":"2026-03-20T17:05:24.575979388Z"} +2026/03/20 17:05:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:24.586257537Z"} +2026/03/20 17:05:29 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":11.57642818317725,"throughput_eps":0,"last_update":"2026-03-20T17:05:24.71966952Z"} +2026/03/20 17:05:29 [transform_engine] {"stage_name":"transform_engine","events_processed":34,"events_dropped":0,"avg_latency_ms":92.53910307508758,"throughput_eps":0,"last_update":"2026-03-20T17:05:24.832748295Z"} +2026/03/20 17:05:29 ───────────────────────────────────────────────── +2026/03/20 17:05:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:29.575566379Z"} +2026/03/20 17:05:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":204.8,"last_update":"2026-03-20T17:05:29.576186135Z"} +2026/03/20 17:05:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:29.586797432Z"} +2026/03/20 17:05:34 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":11.892578546541799,"throughput_eps":0,"last_update":"2026-03-20T17:05:29.719079829Z"} +2026/03/20 17:05:34 [transform_engine] {"stage_name":"transform_engine","events_processed":34,"events_dropped":0,"avg_latency_ms":92.53910307508758,"throughput_eps":0,"last_update":"2026-03-20T17:05:29.719093195Z"} +2026/03/20 17:05:34 ───────────────────────────────────────────────── +2026/03/20 17:05:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":205.8,"last_update":"2026-03-20T17:05:34.576191117Z"} +2026/03/20 17:05:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:34.584790391Z"} +2026/03/20 17:05:39 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":11.892578546541799,"throughput_eps":0,"last_update":"2026-03-20T17:05:34.719085138Z"} +2026/03/20 17:05:39 [transform_engine] {"stage_name":"transform_engine","events_processed":34,"events_dropped":0,"avg_latency_ms":92.53910307508758,"throughput_eps":0,"last_update":"2026-03-20T17:05:34.719095008Z"} +2026/03/20 17:05:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:34.576285568Z"} +2026/03/20 17:05:39 ───────────────────────────────────────────────── +2026/03/20 17:05:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":206.8,"last_update":"2026-03-20T17:05:39.576683902Z"} +2026/03/20 17:05:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:39.585017979Z"} +2026/03/20 17:05:44 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":11.892578546541799,"throughput_eps":0,"last_update":"2026-03-20T17:05:39.719342058Z"} +2026/03/20 17:05:44 [transform_engine] {"stage_name":"transform_engine","events_processed":34,"events_dropped":0,"avg_latency_ms":92.53910307508758,"throughput_eps":0,"last_update":"2026-03-20T17:05:39.719387133Z"} +2026/03/20 17:05:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:39.575935669Z"} +2026/03/20 17:05:44 ───────────────────────────────────────────────── +2026/03/20 17:05:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:44.57568822Z"} +2026/03/20 17:05:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":207.8,"last_update":"2026-03-20T17:05:44.575992993Z"} +2026/03/20 17:05:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:44.58672363Z"} +2026/03/20 17:05:49 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":11.892578546541799,"throughput_eps":0,"last_update":"2026-03-20T17:05:44.718963895Z"} +2026/03/20 17:05:49 [transform_engine] {"stage_name":"transform_engine","events_processed":34,"events_dropped":0,"avg_latency_ms":92.53910307508758,"throughput_eps":0,"last_update":"2026-03-20T17:05:44.718972751Z"} +2026/03/20 17:05:49 ───────────────────────────────────────────────── +2026/03/20 17:05:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:54.575535127Z"} +2026/03/20 17:05:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":208.8,"last_update":"2026-03-20T17:05:49.576272739Z"} +2026/03/20 17:05:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":420,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:49.584536393Z"} +2026/03/20 17:05:54 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":11.892578546541799,"throughput_eps":0,"last_update":"2026-03-20T17:05:49.719837415Z"} +2026/03/20 17:05:54 [transform_engine] {"stage_name":"transform_engine","events_processed":34,"events_dropped":0,"avg_latency_ms":92.53910307508758,"throughput_eps":0,"last_update":"2026-03-20T17:05:49.718714594Z"} +2026/03/20 17:05:54 ───────────────────────────────────────────────── +2026/03/20 17:05:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:54.586257057Z"} +2026/03/20 17:05:59 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":11.892578546541799,"throughput_eps":0,"last_update":"2026-03-20T17:05:54.719563866Z"} +2026/03/20 17:05:59 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":86.62396686007008,"throughput_eps":0,"last_update":"2026-03-20T17:05:54.782536447Z"} +2026/03/20 17:05:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:54.575535127Z"} +2026/03/20 17:05:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":209.8,"last_update":"2026-03-20T17:05:54.576153631Z"} +2026/03/20 17:05:59 ───────────────────────────────────────────────── +2026/03/20 17:06:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:59.575926826Z"} +2026/03/20 17:06:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":210.8,"last_update":"2026-03-20T17:05:59.576696329Z"} +2026/03/20 17:06:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:59.584591437Z"} +2026/03/20 17:06:04 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":11.820831837233438,"throughput_eps":0,"last_update":"2026-03-20T17:05:59.71881656Z"} +2026/03/20 17:06:04 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":86.62396686007008,"throughput_eps":0,"last_update":"2026-03-20T17:05:59.718960676Z"} +2026/03/20 17:06:04 ───────────────────────────────────────────────── +2026/03/20 17:06:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:04.587408378Z"} +2026/03/20 17:06:09 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":11.820831837233438,"throughput_eps":0,"last_update":"2026-03-20T17:06:04.719703321Z"} +2026/03/20 17:06:09 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":86.62396686007008,"throughput_eps":0,"last_update":"2026-03-20T17:06:04.719763246Z"} +2026/03/20 17:06:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:04.575600598Z"} +2026/03/20 17:06:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":211.8,"last_update":"2026-03-20T17:06:04.575967982Z"} +2026/03/20 17:06:09 ───────────────────────────────────────────────── +2026/03/20 17:06:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:09.575491338Z"} +2026/03/20 17:06:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":212.8,"last_update":"2026-03-20T17:06:09.575872598Z"} +2026/03/20 17:06:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:09.586002958Z"} +2026/03/20 17:06:14 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":11.820831837233438,"throughput_eps":0,"last_update":"2026-03-20T17:06:09.719506119Z"} +2026/03/20 17:06:14 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":86.62396686007008,"throughput_eps":0,"last_update":"2026-03-20T17:06:09.719389967Z"} +2026/03/20 17:06:14 ───────────────────────────────────────────────── +2026/03/20 17:06:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:14.575560726Z"} +2026/03/20 17:06:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":213.8,"last_update":"2026-03-20T17:06:14.575892632Z"} +2026/03/20 17:06:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:14.584829827Z"} +2026/03/20 17:06:19 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":11.820831837233438,"throughput_eps":0,"last_update":"2026-03-20T17:06:14.719226315Z"} +2026/03/20 17:06:19 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":86.62396686007008,"throughput_eps":0,"last_update":"2026-03-20T17:06:14.719201397Z"} +2026/03/20 17:06:19 ───────────────────────────────────────────────── +2026/03/20 17:06:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:24 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":11.820831837233438,"throughput_eps":0,"last_update":"2026-03-20T17:06:19.719293144Z"} +2026/03/20 17:06:24 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":86.62396686007008,"throughput_eps":0,"last_update":"2026-03-20T17:06:19.719181439Z"} +2026/03/20 17:06:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:19.57593567Z"} +2026/03/20 17:06:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":214.8,"last_update":"2026-03-20T17:06:19.576303033Z"} +2026/03/20 17:06:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:19.585790722Z"} +2026/03/20 17:06:24 ───────────────────────────────────────────────── +2026/03/20 17:06:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:29 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":11.820831837233438,"throughput_eps":0,"last_update":"2026-03-20T17:06:24.719470361Z"} +2026/03/20 17:06:29 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":82.42505248805607,"throughput_eps":0,"last_update":"2026-03-20T17:06:24.785156105Z"} +2026/03/20 17:06:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:24.575537729Z"} +2026/03/20 17:06:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":215.8,"last_update":"2026-03-20T17:06:24.575686134Z"} +2026/03/20 17:06:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:24.586069178Z"} +2026/03/20 17:06:29 ───────────────────────────────────────────────── +2026/03/20 17:06:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:29.585523473Z"} +2026/03/20 17:06:34 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":12.116314869786752,"throughput_eps":0,"last_update":"2026-03-20T17:06:29.718814421Z"} +2026/03/20 17:06:34 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":82.42505248805607,"throughput_eps":0,"last_update":"2026-03-20T17:06:29.718702888Z"} +2026/03/20 17:06:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:29.575861278Z"} +2026/03/20 17:06:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":216.8,"last_update":"2026-03-20T17:06:29.5762797Z"} +2026/03/20 17:06:34 ───────────────────────────────────────────────── +2026/03/20 17:06:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:34.575560027Z"} +2026/03/20 17:06:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":217.8,"last_update":"2026-03-20T17:06:34.57602654Z"} +2026/03/20 17:06:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:34.587055242Z"} +2026/03/20 17:06:39 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":12.116314869786752,"throughput_eps":0,"last_update":"2026-03-20T17:06:34.719219508Z"} +2026/03/20 17:06:39 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":82.42505248805607,"throughput_eps":0,"last_update":"2026-03-20T17:06:34.719247111Z"} +2026/03/20 17:06:39 ───────────────────────────────────────────────── +2026/03/20 17:06:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:39.585271063Z"} +2026/03/20 17:06:44 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":12.116314869786752,"throughput_eps":0,"last_update":"2026-03-20T17:06:39.719515849Z"} +2026/03/20 17:06:44 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":82.42505248805607,"throughput_eps":0,"last_update":"2026-03-20T17:06:39.719642661Z"} +2026/03/20 17:06:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:39.575843296Z"} +2026/03/20 17:06:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":218.8,"last_update":"2026-03-20T17:06:39.576324187Z"} +2026/03/20 17:06:44 ───────────────────────────────────────────────── +2026/03/20 17:06:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:44.575681274Z"} +2026/03/20 17:06:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":219.8,"last_update":"2026-03-20T17:06:44.57602414Z"} +2026/03/20 17:06:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":442,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:44.585896278Z"} +2026/03/20 17:06:49 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":12.116314869786752,"throughput_eps":0,"last_update":"2026-03-20T17:06:44.719304026Z"} +2026/03/20 17:06:49 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":82.42505248805607,"throughput_eps":0,"last_update":"2026-03-20T17:06:44.71927998Z"} +2026/03/20 17:06:49 ───────────────────────────────────────────────── +2026/03/20 17:06:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:49.575683717Z"} +2026/03/20 17:06:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":220.8,"last_update":"2026-03-20T17:06:49.576056912Z"} +2026/03/20 17:06:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:49.586071623Z"} +2026/03/20 17:06:54 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":12.116314869786752,"throughput_eps":0,"last_update":"2026-03-20T17:06:49.719440751Z"} +2026/03/20 17:06:54 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":82.42505248805607,"throughput_eps":0,"last_update":"2026-03-20T17:06:49.71940862Z"} +2026/03/20 17:06:54 ───────────────────────────────────────────────── +2026/03/20 17:06:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:54.575842627Z"} +2026/03/20 17:06:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":221.8,"last_update":"2026-03-20T17:06:54.576616609Z"} +2026/03/20 17:06:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":446,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:54.586609119Z"} +2026/03/20 17:06:59 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":12.116314869786752,"throughput_eps":0,"last_update":"2026-03-20T17:06:54.718842758Z"} +2026/03/20 17:06:59 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":78.44717919044486,"throughput_eps":0,"last_update":"2026-03-20T17:06:54.781497222Z"} +2026/03/20 17:06:59 ───────────────────────────────────────────────── +2026/03/20 17:07:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:59.57574551Z"} +2026/03/20 17:07:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":222.8,"last_update":"2026-03-20T17:06:59.576099568Z"} +2026/03/20 17:07:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:59.587026096Z"} +2026/03/20 17:07:04 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.228620895829403,"throughput_eps":0,"last_update":"2026-03-20T17:06:59.719451167Z"} +2026/03/20 17:07:04 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":78.44717919044486,"throughput_eps":0,"last_update":"2026-03-20T17:06:59.719419256Z"} +2026/03/20 17:07:04 ───────────────────────────────────────────────── +2026/03/20 17:07:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":223.8,"last_update":"2026-03-20T17:07:04.575718911Z"} +2026/03/20 17:07:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:04.585965638Z"} +2026/03/20 17:07:09 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.228620895829403,"throughput_eps":0,"last_update":"2026-03-20T17:07:04.719304826Z"} +2026/03/20 17:07:09 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":78.44717919044486,"throughput_eps":0,"last_update":"2026-03-20T17:07:04.719317149Z"} +2026/03/20 17:07:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:04.575598351Z"} +2026/03/20 17:07:09 ───────────────────────────────────────────────── +2026/03/20 17:07:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:09.575720658Z"} +2026/03/20 17:07:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":224.8,"last_update":"2026-03-20T17:07:09.576073173Z"} +2026/03/20 17:07:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":452,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:09.587393487Z"} +2026/03/20 17:07:14 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.228620895829403,"throughput_eps":0,"last_update":"2026-03-20T17:07:09.719625168Z"} +2026/03/20 17:07:14 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":78.44717919044486,"throughput_eps":0,"last_update":"2026-03-20T17:07:09.719632322Z"} +2026/03/20 17:07:14 ───────────────────────────────────────────────── +2026/03/20 17:07:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:19 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.228620895829403,"throughput_eps":0,"last_update":"2026-03-20T17:07:14.719253272Z"} +2026/03/20 17:07:19 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":78.44717919044486,"throughput_eps":0,"last_update":"2026-03-20T17:07:14.719261027Z"} +2026/03/20 17:07:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:14.575523191Z"} +2026/03/20 17:07:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":225.8,"last_update":"2026-03-20T17:07:14.575645065Z"} +2026/03/20 17:07:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:14.58600528Z"} +2026/03/20 17:07:19 ───────────────────────────────────────────────── +2026/03/20 17:07:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:19.58686201Z"} +2026/03/20 17:07:24 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.228620895829403,"throughput_eps":0,"last_update":"2026-03-20T17:07:19.719175218Z"} +2026/03/20 17:07:24 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":78.44717919044486,"throughput_eps":0,"last_update":"2026-03-20T17:07:19.719181891Z"} +2026/03/20 17:07:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:19.575738915Z"} +2026/03/20 17:07:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":226.8,"last_update":"2026-03-20T17:07:19.576108682Z"} +2026/03/20 17:07:24 ───────────────────────────────────────────────── +2026/03/20 17:07:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:24.575512575Z"} +2026/03/20 17:07:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":227.8,"last_update":"2026-03-20T17:07:24.575829331Z"} +2026/03/20 17:07:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:24.585762259Z"} +2026/03/20 17:07:29 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.228620895829403,"throughput_eps":0,"last_update":"2026-03-20T17:07:24.719069965Z"} +2026/03/20 17:07:29 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":84.71616535235589,"throughput_eps":0,"last_update":"2026-03-20T17:07:24.828871885Z"} +2026/03/20 17:07:29 ───────────────────────────────────────────────── +2026/03/20 17:07:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:29.576054672Z"} +2026/03/20 17:07:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":228.8,"last_update":"2026-03-20T17:07:29.576412798Z"} +2026/03/20 17:07:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:29.584500711Z"} +2026/03/20 17:07:34 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":11.607522316663523,"throughput_eps":0,"last_update":"2026-03-20T17:07:29.718798409Z"} +2026/03/20 17:07:34 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":84.71616535235589,"throughput_eps":0,"last_update":"2026-03-20T17:07:29.71875705Z"} +2026/03/20 17:07:34 ───────────────────────────────────────────────── +2026/03/20 17:07:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:34.587299684Z"} +2026/03/20 17:07:39 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":11.607522316663523,"throughput_eps":0,"last_update":"2026-03-20T17:07:34.719582367Z"} +2026/03/20 17:07:39 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":84.71616535235589,"throughput_eps":0,"last_update":"2026-03-20T17:07:34.719605943Z"} +2026/03/20 17:07:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:34.576033122Z"} +2026/03/20 17:07:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":229.8,"last_update":"2026-03-20T17:07:34.576014616Z"} +2026/03/20 17:07:39 ───────────────────────────────────────────────── +2026/03/20 17:07:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:39.575857927Z"} +2026/03/20 17:07:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":230.8,"last_update":"2026-03-20T17:07:39.576628573Z"} +2026/03/20 17:07:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:39.58582992Z"} +2026/03/20 17:07:44 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":11.607522316663523,"throughput_eps":0,"last_update":"2026-03-20T17:07:39.719019145Z"} +2026/03/20 17:07:44 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":84.71616535235589,"throughput_eps":0,"last_update":"2026-03-20T17:07:39.719119838Z"} +2026/03/20 17:07:44 ───────────────────────────────────────────────── +2026/03/20 17:07:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:44.586612169Z"} +2026/03/20 17:07:49 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":11.607522316663523,"throughput_eps":0,"last_update":"2026-03-20T17:07:44.718789158Z"} +2026/03/20 17:07:49 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":84.71616535235589,"throughput_eps":0,"last_update":"2026-03-20T17:07:44.718781684Z"} +2026/03/20 17:07:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:44.575930595Z"} +2026/03/20 17:07:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":231.8,"last_update":"2026-03-20T17:07:44.576529853Z"} +2026/03/20 17:07:49 ───────────────────────────────────────────────── +2026/03/20 17:07:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:49.575517521Z"} +2026/03/20 17:07:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":232.8,"last_update":"2026-03-20T17:07:49.575845029Z"} +2026/03/20 17:07:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:49.585529261Z"} +2026/03/20 17:07:54 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":11.607522316663523,"throughput_eps":0,"last_update":"2026-03-20T17:07:49.719840043Z"} +2026/03/20 17:07:54 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":84.71616535235589,"throughput_eps":0,"last_update":"2026-03-20T17:07:49.718673068Z"} +2026/03/20 17:07:54 ───────────────────────────────────────────────── +2026/03/20 17:07:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:54.575972113Z"} +2026/03/20 17:07:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":233.8,"last_update":"2026-03-20T17:07:54.576536073Z"} +2026/03/20 17:07:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":470,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:54.588314268Z"} +2026/03/20 17:07:59 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":11.607522316663523,"throughput_eps":0,"last_update":"2026-03-20T17:07:54.719528503Z"} +2026/03/20 17:07:59 [transform_engine] {"stage_name":"transform_engine","events_processed":39,"events_dropped":0,"avg_latency_ms":80.73669968188472,"throughput_eps":0,"last_update":"2026-03-20T17:07:54.78447763Z"} +2026/03/20 17:07:59 ───────────────────────────────────────────────── +2026/03/20 17:08:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:59.576164887Z"} +2026/03/20 17:08:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":234.8,"last_update":"2026-03-20T17:07:59.576324392Z"} +2026/03/20 17:08:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:59.586656716Z"} +2026/03/20 17:08:04 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":11.954327653330818,"throughput_eps":0,"last_update":"2026-03-20T17:07:59.719139066Z"} +2026/03/20 17:08:04 [transform_engine] {"stage_name":"transform_engine","events_processed":39,"events_dropped":0,"avg_latency_ms":80.73669968188472,"throughput_eps":0,"last_update":"2026-03-20T17:07:59.719254827Z"} +2026/03/20 17:08:04 ───────────────────────────────────────────────── +2026/03/20 17:08:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:04.575498204Z"} +2026/03/20 17:08:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":235.8,"last_update":"2026-03-20T17:08:04.576205469Z"} +2026/03/20 17:08:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:04.585558167Z"} +2026/03/20 17:08:09 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":11.954327653330818,"throughput_eps":0,"last_update":"2026-03-20T17:08:04.718852047Z"} +2026/03/20 17:08:09 [transform_engine] {"stage_name":"transform_engine","events_processed":39,"events_dropped":0,"avg_latency_ms":80.73669968188472,"throughput_eps":0,"last_update":"2026-03-20T17:08:04.718740001Z"} +2026/03/20 17:08:09 ───────────────────────────────────────────────── +2026/03/20 17:08:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:09.575759894Z"} +2026/03/20 17:08:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":236.8,"last_update":"2026-03-20T17:08:09.576139841Z"} +2026/03/20 17:08:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":476,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:09.584952655Z"} +2026/03/20 17:08:14 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":11.954327653330818,"throughput_eps":0,"last_update":"2026-03-20T17:08:09.719309714Z"} +2026/03/20 17:08:14 [transform_engine] {"stage_name":"transform_engine","events_processed":39,"events_dropped":0,"avg_latency_ms":80.73669968188472,"throughput_eps":0,"last_update":"2026-03-20T17:08:09.719206637Z"} +2026/03/20 17:08:14 ───────────────────────────────────────────────── +2026/03/20 17:08:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:14.585598477Z"} +2026/03/20 17:08:19 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":11.954327653330818,"throughput_eps":0,"last_update":"2026-03-20T17:08:14.718844572Z"} +2026/03/20 17:08:19 [transform_engine] {"stage_name":"transform_engine","events_processed":39,"events_dropped":0,"avg_latency_ms":80.73669968188472,"throughput_eps":0,"last_update":"2026-03-20T17:08:14.718836938Z"} +2026/03/20 17:08:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:14.575544163Z"} +2026/03/20 17:08:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":237.8,"last_update":"2026-03-20T17:08:14.575871702Z"} +2026/03/20 17:08:19 ───────────────────────────────────────────────── +2026/03/20 17:08:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:19.576005339Z"} +2026/03/20 17:08:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":238.8,"last_update":"2026-03-20T17:08:19.576795233Z"} +2026/03/20 17:08:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":480,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:19.586172389Z"} +2026/03/20 17:08:24 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":11.954327653330818,"throughput_eps":0,"last_update":"2026-03-20T17:08:19.719514492Z"} +2026/03/20 17:08:24 [transform_engine] {"stage_name":"transform_engine","events_processed":39,"events_dropped":0,"avg_latency_ms":80.73669968188472,"throughput_eps":0,"last_update":"2026-03-20T17:08:19.719532366Z"} +2026/03/20 17:08:24 ───────────────────────────────────────────────── +2026/03/20 17:08:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":482,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:24.58608058Z"} +2026/03/20 17:08:29 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":11.954327653330818,"throughput_eps":0,"last_update":"2026-03-20T17:08:24.719435923Z"} +2026/03/20 17:08:29 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":85.82466574550779,"throughput_eps":0,"last_update":"2026-03-20T17:08:24.825563249Z"} +2026/03/20 17:08:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:24.575551646Z"} +2026/03/20 17:08:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":239.8,"last_update":"2026-03-20T17:08:24.575867882Z"} +2026/03/20 17:08:29 ───────────────────────────────────────────────── +2026/03/20 17:08:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:29.586302796Z"} +2026/03/20 17:08:34 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":12.378421522664656,"throughput_eps":0,"last_update":"2026-03-20T17:08:29.719668773Z"} +2026/03/20 17:08:34 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":85.82466574550779,"throughput_eps":0,"last_update":"2026-03-20T17:08:29.719684133Z"} +2026/03/20 17:08:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:29.575516579Z"} +2026/03/20 17:08:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":240.8,"last_update":"2026-03-20T17:08:29.575933348Z"} +2026/03/20 17:08:34 ───────────────────────────────────────────────── +2026/03/20 17:08:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:34.576183739Z"} +2026/03/20 17:08:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":241.8,"last_update":"2026-03-20T17:08:34.576339458Z"} +2026/03/20 17:08:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":486,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:34.58554659Z"} +2026/03/20 17:08:39 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":12.378421522664656,"throughput_eps":0,"last_update":"2026-03-20T17:08:34.718815455Z"} +2026/03/20 17:08:39 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":85.82466574550779,"throughput_eps":0,"last_update":"2026-03-20T17:08:34.718746814Z"} +2026/03/20 17:08:39 ───────────────────────────────────────────────── +2026/03/20 17:08:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:39.575759748Z"} +2026/03/20 17:08:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":242.8,"last_update":"2026-03-20T17:08:39.576480368Z"} +2026/03/20 17:08:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:39.585047303Z"} +2026/03/20 17:08:44 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":12.378421522664656,"throughput_eps":0,"last_update":"2026-03-20T17:08:39.719392147Z"} +2026/03/20 17:08:44 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":85.82466574550779,"throughput_eps":0,"last_update":"2026-03-20T17:08:39.719402135Z"} +2026/03/20 17:08:44 ───────────────────────────────────────────────── +2026/03/20 17:08:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:44.575700566Z"} +2026/03/20 17:08:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":243.8,"last_update":"2026-03-20T17:08:44.576022694Z"} +2026/03/20 17:08:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":490,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:44.586510178Z"} +2026/03/20 17:08:49 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":12.378421522664656,"throughput_eps":0,"last_update":"2026-03-20T17:08:44.718815256Z"} +2026/03/20 17:08:49 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":85.82466574550779,"throughput_eps":0,"last_update":"2026-03-20T17:08:44.718694805Z"} +2026/03/20 17:08:49 ───────────────────────────────────────────────── +2026/03/20 17:08:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":244.8,"last_update":"2026-03-20T17:08:49.576136731Z"} +2026/03/20 17:08:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:49.585892484Z"} +2026/03/20 17:08:54 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":12.378421522664656,"throughput_eps":0,"last_update":"2026-03-20T17:08:49.719129031Z"} +2026/03/20 17:08:54 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":85.82466574550779,"throughput_eps":0,"last_update":"2026-03-20T17:08:49.719140783Z"} +2026/03/20 17:08:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:49.575745401Z"} +2026/03/20 17:08:54 ───────────────────────────────────────────────── +2026/03/20 17:08:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:54.575757977Z"} +2026/03/20 17:08:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":245.8,"last_update":"2026-03-20T17:08:54.576052321Z"} +2026/03/20 17:08:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:54.586206619Z"} +2026/03/20 17:08:59 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":12.378421522664656,"throughput_eps":0,"last_update":"2026-03-20T17:08:54.719464382Z"} +2026/03/20 17:08:59 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":91.05275299640623,"throughput_eps":0,"last_update":"2026-03-20T17:08:54.831442338Z"} +2026/03/20 17:08:59 ───────────────────────────────────────────────── +2026/03/20 17:09:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:59.575590306Z"} +2026/03/20 17:09:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":246.8,"last_update":"2026-03-20T17:08:59.57566062Z"} +2026/03/20 17:09:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":496,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:59.585832611Z"} +2026/03/20 17:09:04 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":12.872329418131727,"throughput_eps":0,"last_update":"2026-03-20T17:08:59.719104174Z"} +2026/03/20 17:09:04 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":91.05275299640623,"throughput_eps":0,"last_update":"2026-03-20T17:08:59.719126817Z"} +2026/03/20 17:09:04 ───────────────────────────────────────────────── +2026/03/20 17:09:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:04.575977608Z"} +2026/03/20 17:09:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":247.8,"last_update":"2026-03-20T17:09:04.576444614Z"} +2026/03/20 17:09:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":498,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:04.585228185Z"} +2026/03/20 17:09:09 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":12.872329418131727,"throughput_eps":0,"last_update":"2026-03-20T17:09:04.719616883Z"} +2026/03/20 17:09:09 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":91.05275299640623,"throughput_eps":0,"last_update":"2026-03-20T17:09:04.719645457Z"} +2026/03/20 17:09:09 ───────────────────────────────────────────────── +2026/03/20 17:09:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:09.575907987Z"} +2026/03/20 17:09:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":248.8,"last_update":"2026-03-20T17:09:09.576544506Z"} +2026/03/20 17:09:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:09.586572232Z"} +2026/03/20 17:09:14 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":12.872329418131727,"throughput_eps":0,"last_update":"2026-03-20T17:09:09.718806645Z"} +2026/03/20 17:09:14 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":91.05275299640623,"throughput_eps":0,"last_update":"2026-03-20T17:09:09.718744316Z"} +2026/03/20 17:09:14 ───────────────────────────────────────────────── +2026/03/20 17:09:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:14.57568901Z"} +2026/03/20 17:09:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":249.8,"last_update":"2026-03-20T17:09:14.575683158Z"} +2026/03/20 17:09:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:14.586215301Z"} +2026/03/20 17:09:19 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":12.872329418131727,"throughput_eps":0,"last_update":"2026-03-20T17:09:14.71963542Z"} +2026/03/20 17:09:19 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":91.05275299640623,"throughput_eps":0,"last_update":"2026-03-20T17:09:14.719648605Z"} +2026/03/20 17:09:19 ───────────────────────────────────────────────── +2026/03/20 17:09:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:19.587386515Z"} +2026/03/20 17:09:24 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":12.872329418131727,"throughput_eps":0,"last_update":"2026-03-20T17:09:19.719721949Z"} +2026/03/20 17:09:24 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":91.05275299640623,"throughput_eps":0,"last_update":"2026-03-20T17:09:19.719735245Z"} +2026/03/20 17:09:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:19.575497322Z"} +2026/03/20 17:09:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":250.8,"last_update":"2026-03-20T17:09:19.576044551Z"} +2026/03/20 17:09:24 ───────────────────────────────────────────────── +2026/03/20 17:09:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:24.575519089Z"} +2026/03/20 17:09:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":251.8,"last_update":"2026-03-20T17:09:24.575595696Z"} +2026/03/20 17:09:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":506,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:24.586235355Z"} +2026/03/20 17:09:29 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":12.872329418131727,"throughput_eps":0,"last_update":"2026-03-20T17:09:24.71948692Z"} +2026/03/20 17:09:29 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":91.05275299640623,"throughput_eps":0,"last_update":"2026-03-20T17:09:24.719500866Z"} +2026/03/20 17:09:29 ───────────────────────────────────────────────── +2026/03/20 17:09:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:34 [transform_engine] {"stage_name":"transform_engine","events_processed":42,"events_dropped":0,"avg_latency_ms":85.94409599712498,"throughput_eps":0,"last_update":"2026-03-20T17:09:29.71881158Z"} +2026/03/20 17:09:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:29.575719635Z"} +2026/03/20 17:09:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":252.8,"last_update":"2026-03-20T17:09:29.575695108Z"} +2026/03/20 17:09:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:29.587556448Z"} +2026/03/20 17:09:34 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":12.885865134505382,"throughput_eps":0,"last_update":"2026-03-20T17:09:29.718798626Z"} +2026/03/20 17:09:34 ───────────────────────────────────────────────── +2026/03/20 17:09:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:39 [transform_engine] {"stage_name":"transform_engine","events_processed":42,"events_dropped":0,"avg_latency_ms":85.94409599712498,"throughput_eps":0,"last_update":"2026-03-20T17:09:34.718763497Z"} +2026/03/20 17:09:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:34.575600652Z"} +2026/03/20 17:09:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":253.8,"last_update":"2026-03-20T17:09:34.575761741Z"} +2026/03/20 17:09:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:34.585533697Z"} +2026/03/20 17:09:39 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":12.885865134505382,"throughput_eps":0,"last_update":"2026-03-20T17:09:34.718778467Z"} +2026/03/20 17:09:39 ───────────────────────────────────────────────── +2026/03/20 17:09:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:39.575519011Z"} +2026/03/20 17:09:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":254.8,"last_update":"2026-03-20T17:09:39.575698796Z"} +2026/03/20 17:09:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":512,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:39.586319409Z"} +2026/03/20 17:09:44 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":12.885865134505382,"throughput_eps":0,"last_update":"2026-03-20T17:09:39.719706104Z"} +2026/03/20 17:09:44 [transform_engine] {"stage_name":"transform_engine","events_processed":42,"events_dropped":0,"avg_latency_ms":85.94409599712498,"throughput_eps":0,"last_update":"2026-03-20T17:09:39.719718206Z"} +2026/03/20 17:09:44 ───────────────────────────────────────────────── +2026/03/20 17:09:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:49 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":12.885865134505382,"throughput_eps":0,"last_update":"2026-03-20T17:09:44.718809027Z"} +2026/03/20 17:09:49 [transform_engine] {"stage_name":"transform_engine","events_processed":42,"events_dropped":0,"avg_latency_ms":85.94409599712498,"throughput_eps":0,"last_update":"2026-03-20T17:09:44.718822544Z"} +2026/03/20 17:09:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:44.57588422Z"} +2026/03/20 17:09:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":255.8,"last_update":"2026-03-20T17:09:44.576396081Z"} +2026/03/20 17:09:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:44.586510926Z"} +2026/03/20 17:09:49 ───────────────────────────────────────────────── +2026/03/20 17:09:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:54 [transform_engine] {"stage_name":"transform_engine","events_processed":42,"events_dropped":0,"avg_latency_ms":85.94409599712498,"throughput_eps":0,"last_update":"2026-03-20T17:09:49.719563816Z"} +2026/03/20 17:09:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:49.575852147Z"} +2026/03/20 17:09:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":256.8,"last_update":"2026-03-20T17:09:49.576175166Z"} +2026/03/20 17:09:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:49.585257101Z"} +2026/03/20 17:09:54 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":12.885865134505382,"throughput_eps":0,"last_update":"2026-03-20T17:09:49.71953966Z"} +2026/03/20 17:09:54 ───────────────────────────────────────────────── +2026/03/20 17:09:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:59 [transform_engine] {"stage_name":"transform_engine","events_processed":43,"events_dropped":0,"avg_latency_ms":81.63562379769998,"throughput_eps":0,"last_update":"2026-03-20T17:09:54.783231066Z"} +2026/03/20 17:09:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:54.575662962Z"} +2026/03/20 17:09:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":257.8,"last_update":"2026-03-20T17:09:54.576052117Z"} +2026/03/20 17:09:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:54.58755844Z"} +2026/03/20 17:09:59 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":12.885865134505382,"throughput_eps":0,"last_update":"2026-03-20T17:09:54.718796908Z"} +2026/03/20 17:09:59 ───────────────────────────────────────────────── +2026/03/20 17:10:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:04 [transform_engine] {"stage_name":"transform_engine","events_processed":43,"events_dropped":0,"avg_latency_ms":81.63562379769998,"throughput_eps":0,"last_update":"2026-03-20T17:09:59.719417826Z"} +2026/03/20 17:10:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:59.575798226Z"} +2026/03/20 17:10:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":258.8,"last_update":"2026-03-20T17:09:59.576437941Z"} +2026/03/20 17:10:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":520,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:59.586067487Z"} +2026/03/20 17:10:04 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":13.149079707604306,"throughput_eps":0,"last_update":"2026-03-20T17:09:59.719405583Z"} +2026/03/20 17:10:04 ───────────────────────────────────────────────── +2026/03/20 17:10:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:09 [transform_engine] {"stage_name":"transform_engine","events_processed":43,"events_dropped":0,"avg_latency_ms":81.63562379769998,"throughput_eps":0,"last_update":"2026-03-20T17:10:04.71912557Z"} +2026/03/20 17:10:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:04.575515844Z"} +2026/03/20 17:10:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":259.8,"last_update":"2026-03-20T17:10:04.575795491Z"} +2026/03/20 17:10:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":522,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:04.591685284Z"} +2026/03/20 17:10:09 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":13.149079707604306,"throughput_eps":0,"last_update":"2026-03-20T17:10:04.719065515Z"} +2026/03/20 17:10:09 ───────────────────────────────────────────────── +2026/03/20 17:10:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:09.575722974Z"} +2026/03/20 17:10:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":260.8,"last_update":"2026-03-20T17:10:09.576175081Z"} +2026/03/20 17:10:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:09.584369536Z"} +2026/03/20 17:10:14 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":13.149079707604306,"throughput_eps":0,"last_update":"2026-03-20T17:10:09.719813367Z"} +2026/03/20 17:10:14 [transform_engine] {"stage_name":"transform_engine","events_processed":43,"events_dropped":0,"avg_latency_ms":81.63562379769998,"throughput_eps":0,"last_update":"2026-03-20T17:10:09.718649596Z"} +2026/03/20 17:10:14 ───────────────────────────────────────────────── +2026/03/20 17:10:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:19 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":13.149079707604306,"throughput_eps":0,"last_update":"2026-03-20T17:10:14.719691683Z"} +2026/03/20 17:10:19 [transform_engine] {"stage_name":"transform_engine","events_processed":43,"events_dropped":0,"avg_latency_ms":81.63562379769998,"throughput_eps":0,"last_update":"2026-03-20T17:10:14.719593736Z"} +2026/03/20 17:10:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:14.575536283Z"} +2026/03/20 17:10:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":261.8,"last_update":"2026-03-20T17:10:14.57607205Z"} +2026/03/20 17:10:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":526,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:14.587312313Z"} +2026/03/20 17:10:19 ───────────────────────────────────────────────── +2026/03/20 17:10:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:24 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":13.149079707604306,"throughput_eps":0,"last_update":"2026-03-20T17:10:19.719865359Z"} +2026/03/20 17:10:24 [transform_engine] {"stage_name":"transform_engine","events_processed":43,"events_dropped":0,"avg_latency_ms":81.63562379769998,"throughput_eps":0,"last_update":"2026-03-20T17:10:19.718698753Z"} +2026/03/20 17:10:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:19.576043626Z"} +2026/03/20 17:10:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":262.8,"last_update":"2026-03-20T17:10:19.576024449Z"} +2026/03/20 17:10:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:19.586465752Z"} +2026/03/20 17:10:24 ───────────────────────────────────────────────── +2026/03/20 17:10:24 [ANOMALY] time=2026-03-20T17:10:24Z score=0.9382 method=SEAD details=MAD!:w=0.26,s=0.98 RRCF-fast!:w=0.18,s=0.95 RRCF-mid!:w=0.17,s=0.98 RRCF-slow!:w=0.17,s=0.98 COPOD!:w=0.21,s=0.81 +2026/03/20 17:10:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:24.575751595Z"} +2026/03/20 17:10:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":263.8,"last_update":"2026-03-20T17:10:24.57617692Z"} +2026/03/20 17:10:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:24.586092134Z"} +2026/03/20 17:10:29 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":13.149079707604306,"throughput_eps":0,"last_update":"2026-03-20T17:10:24.718801552Z"} +2026/03/20 17:10:29 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":78.01222183815997,"throughput_eps":0,"last_update":"2026-03-20T17:10:24.782435207Z"} +2026/03/20 17:10:29 ───────────────────────────────────────────────── +2026/03/20 17:10:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:34 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":11.900673166083447,"throughput_eps":0,"last_update":"2026-03-20T17:10:29.71879841Z"} +2026/03/20 17:10:34 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":78.01222183815997,"throughput_eps":0,"last_update":"2026-03-20T17:10:29.718753715Z"} +2026/03/20 17:10:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:29.575516334Z"} +2026/03/20 17:10:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":264.8,"last_update":"2026-03-20T17:10:29.576255831Z"} +2026/03/20 17:10:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":532,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:29.585556337Z"} +2026/03/20 17:10:34 ───────────────────────────────────────────────── +2026/03/20 17:10:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:34.58514207Z"} +2026/03/20 17:10:39 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":11.900673166083447,"throughput_eps":0,"last_update":"2026-03-20T17:10:34.719508962Z"} +2026/03/20 17:10:39 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":78.01222183815997,"throughput_eps":0,"last_update":"2026-03-20T17:10:34.719544751Z"} +2026/03/20 17:10:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:34.576090781Z"} +2026/03/20 17:10:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":265.8,"last_update":"2026-03-20T17:10:34.576340048Z"} +2026/03/20 17:10:39 ───────────────────────────────────────────────── +2026/03/20 17:10:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:39.575516613Z"} +2026/03/20 17:10:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":266.8,"last_update":"2026-03-20T17:10:39.575628407Z"} +2026/03/20 17:10:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":536,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:39.587021284Z"} +2026/03/20 17:10:44 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":11.900673166083447,"throughput_eps":0,"last_update":"2026-03-20T17:10:39.719451998Z"} +2026/03/20 17:10:44 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":78.01222183815997,"throughput_eps":0,"last_update":"2026-03-20T17:10:39.719407123Z"} +2026/03/20 17:10:44 ───────────────────────────────────────────────── +2026/03/20 17:10:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:49 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":78.01222183815997,"throughput_eps":0,"last_update":"2026-03-20T17:10:44.719626807Z"} +2026/03/20 17:10:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:44.575501884Z"} +2026/03/20 17:10:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":267.8,"last_update":"2026-03-20T17:10:44.575748897Z"} +2026/03/20 17:10:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:44.586280354Z"} +2026/03/20 17:10:49 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":11.900673166083447,"throughput_eps":0,"last_update":"2026-03-20T17:10:44.719773949Z"} +2026/03/20 17:10:49 ───────────────────────────────────────────────── +2026/03/20 17:10:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:49.575943475Z"} +2026/03/20 17:10:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":268.8,"last_update":"2026-03-20T17:10:49.576261465Z"} +2026/03/20 17:10:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":540,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:49.584811504Z"} +2026/03/20 17:10:54 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":11.900673166083447,"throughput_eps":0,"last_update":"2026-03-20T17:10:49.719225647Z"} +2026/03/20 17:10:54 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":78.01222183815997,"throughput_eps":0,"last_update":"2026-03-20T17:10:49.719054127Z"} +2026/03/20 17:10:54 ───────────────────────────────────────────────── +2026/03/20 17:10:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:54.57610964Z"} +2026/03/20 17:10:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":269.8,"last_update":"2026-03-20T17:10:54.576913311Z"} +2026/03/20 17:10:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":542,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:54.585661008Z"} +2026/03/20 17:10:59 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":11.900673166083447,"throughput_eps":0,"last_update":"2026-03-20T17:10:54.719158407Z"} +2026/03/20 17:10:59 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":84.85405687052798,"throughput_eps":0,"last_update":"2026-03-20T17:10:54.831270846Z"} +2026/03/20 17:10:59 ───────────────────────────────────────────────── +2026/03/20 17:11:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:59.575740641Z"} +2026/03/20 17:11:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":270.8,"last_update":"2026-03-20T17:10:59.576058069Z"} +2026/03/20 17:11:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:59.587201439Z"} +2026/03/20 17:11:04 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":11.668261332866757,"throughput_eps":0,"last_update":"2026-03-20T17:10:59.719456842Z"} +2026/03/20 17:11:04 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":84.85405687052798,"throughput_eps":0,"last_update":"2026-03-20T17:10:59.719412967Z"} +2026/03/20 17:11:04 ───────────────────────────────────────────────── +2026/03/20 17:11:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:09 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":11.668261332866757,"throughput_eps":0,"last_update":"2026-03-20T17:11:04.719246171Z"} +2026/03/20 17:11:09 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":84.85405687052798,"throughput_eps":0,"last_update":"2026-03-20T17:11:04.719203228Z"} +2026/03/20 17:11:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:04.575863406Z"} +2026/03/20 17:11:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":271.8,"last_update":"2026-03-20T17:11:04.576195572Z"} +2026/03/20 17:11:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:04.585989045Z"} +2026/03/20 17:11:09 ───────────────────────────────────────────────── +2026/03/20 17:11:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:09.575530867Z"} +2026/03/20 17:11:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":272.8,"last_update":"2026-03-20T17:11:09.576213084Z"} +2026/03/20 17:11:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:09.585812515Z"} +2026/03/20 17:11:14 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":11.668261332866757,"throughput_eps":0,"last_update":"2026-03-20T17:11:09.719059645Z"} +2026/03/20 17:11:14 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":84.85405687052798,"throughput_eps":0,"last_update":"2026-03-20T17:11:09.719040989Z"} +2026/03/20 17:11:14 ───────────────────────────────────────────────── +2026/03/20 17:11:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:19 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":11.668261332866757,"throughput_eps":0,"last_update":"2026-03-20T17:11:14.719347569Z"} +2026/03/20 17:11:19 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":84.85405687052798,"throughput_eps":0,"last_update":"2026-03-20T17:11:14.719289558Z"} +2026/03/20 17:11:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:14.575832844Z"} +2026/03/20 17:11:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":273.8,"last_update":"2026-03-20T17:11:14.576085078Z"} +2026/03/20 17:11:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:14.585954216Z"} +2026/03/20 17:11:19 ───────────────────────────────────────────────── +2026/03/20 17:11:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:19.575571969Z"} +2026/03/20 17:11:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":274.8,"last_update":"2026-03-20T17:11:19.575664297Z"} +2026/03/20 17:11:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:19.586507252Z"} +2026/03/20 17:11:24 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":11.668261332866757,"throughput_eps":0,"last_update":"2026-03-20T17:11:19.71962033Z"} +2026/03/20 17:11:24 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":84.85405687052798,"throughput_eps":0,"last_update":"2026-03-20T17:11:19.719631271Z"} +2026/03/20 17:11:24 ───────────────────────────────────────────────── +2026/03/20 17:11:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:24.576303873Z"} +2026/03/20 17:11:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":275.8,"last_update":"2026-03-20T17:11:24.576290378Z"} +2026/03/20 17:11:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:24.586141061Z"} +2026/03/20 17:11:29 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":11.668261332866757,"throughput_eps":0,"last_update":"2026-03-20T17:11:24.719377319Z"} +2026/03/20 17:11:29 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":80.3387762964224,"throughput_eps":0,"last_update":"2026-03-20T17:11:24.781668148Z"} +2026/03/20 17:11:29 ───────────────────────────────────────────────── +2026/03/20 17:11:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:34 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":80.3387762964224,"throughput_eps":0,"last_update":"2026-03-20T17:11:29.719634231Z"} +2026/03/20 17:11:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:29.575495641Z"} +2026/03/20 17:11:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":276.8,"last_update":"2026-03-20T17:11:29.575465934Z"} +2026/03/20 17:11:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:29.587072033Z"} +2026/03/20 17:11:34 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":11.856389266293407,"throughput_eps":0,"last_update":"2026-03-20T17:11:29.719618482Z"} +2026/03/20 17:11:34 ───────────────────────────────────────────────── +2026/03/20 17:11:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:39 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":11.856389266293407,"throughput_eps":0,"last_update":"2026-03-20T17:11:34.719154333Z"} +2026/03/20 17:11:39 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":80.3387762964224,"throughput_eps":0,"last_update":"2026-03-20T17:11:34.719137952Z"} +2026/03/20 17:11:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:34.575840662Z"} +2026/03/20 17:11:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":277.8,"last_update":"2026-03-20T17:11:34.576482141Z"} +2026/03/20 17:11:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:34.585838667Z"} +2026/03/20 17:11:39 ───────────────────────────────────────────────── +2026/03/20 17:11:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:39.575950513Z"} +2026/03/20 17:11:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":278.8,"last_update":"2026-03-20T17:11:39.576413993Z"} +2026/03/20 17:11:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":560,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:39.585105815Z"} +2026/03/20 17:11:44 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":11.856389266293407,"throughput_eps":0,"last_update":"2026-03-20T17:11:39.719380522Z"} +2026/03/20 17:11:44 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":80.3387762964224,"throughput_eps":0,"last_update":"2026-03-20T17:11:39.719390581Z"} +2026/03/20 17:11:44 ───────────────────────────────────────────────── +2026/03/20 17:11:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:44.575679117Z"} +2026/03/20 17:11:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":279.8,"last_update":"2026-03-20T17:11:44.576002267Z"} +2026/03/20 17:11:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:44.587456345Z"} +2026/03/20 17:11:49 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":11.856389266293407,"throughput_eps":0,"last_update":"2026-03-20T17:11:44.719675986Z"} +2026/03/20 17:11:49 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":80.3387762964224,"throughput_eps":0,"last_update":"2026-03-20T17:11:44.719685754Z"} +2026/03/20 17:11:49 ───────────────────────────────────────────────── +2026/03/20 17:11:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:49.576062287Z"} +2026/03/20 17:11:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":280.8,"last_update":"2026-03-20T17:11:49.576380036Z"} +2026/03/20 17:11:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:49.586913439Z"} +2026/03/20 17:11:54 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":11.856389266293407,"throughput_eps":0,"last_update":"2026-03-20T17:11:49.719316494Z"} +2026/03/20 17:11:54 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":80.3387762964224,"throughput_eps":0,"last_update":"2026-03-20T17:11:49.719331804Z"} +2026/03/20 17:11:54 ───────────────────────────────────────────────── +2026/03/20 17:11:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:54.575927944Z"} +2026/03/20 17:11:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":281.8,"last_update":"2026-03-20T17:11:54.576302342Z"} +2026/03/20 17:11:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":566,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:54.586046172Z"} +2026/03/20 17:11:59 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":11.856389266293407,"throughput_eps":0,"last_update":"2026-03-20T17:11:54.719417456Z"} +2026/03/20 17:11:59 [transform_engine] {"stage_name":"transform_engine","events_processed":47,"events_dropped":0,"avg_latency_ms":87.13305163713791,"throughput_eps":0,"last_update":"2026-03-20T17:11:54.833744842Z"} +2026/03/20 17:11:59 ───────────────────────────────────────────────── +2026/03/20 17:12:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:59.576511857Z"} +2026/03/20 17:12:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":282.8,"last_update":"2026-03-20T17:11:59.576632288Z"} +2026/03/20 17:12:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:59.586971329Z"} +2026/03/20 17:12:04 [detection_layer] {"stage_name":"detection_layer","events_processed":47,"events_dropped":0,"avg_latency_ms":12.308179413034726,"throughput_eps":0,"last_update":"2026-03-20T17:11:59.719311749Z"} +2026/03/20 17:12:04 [transform_engine] {"stage_name":"transform_engine","events_processed":47,"events_dropped":0,"avg_latency_ms":87.13305163713791,"throughput_eps":0,"last_update":"2026-03-20T17:11:59.719321849Z"} +2026/03/20 17:12:04 ───────────────────────────────────────────────── +2026/03/20 17:12:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":283.8,"last_update":"2026-03-20T17:12:04.576177354Z"} +2026/03/20 17:12:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":570,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:04.584499148Z"} +2026/03/20 17:12:09 [detection_layer] {"stage_name":"detection_layer","events_processed":47,"events_dropped":0,"avg_latency_ms":12.308179413034726,"throughput_eps":0,"last_update":"2026-03-20T17:12:04.71880456Z"} +2026/03/20 17:12:09 [transform_engine] {"stage_name":"transform_engine","events_processed":47,"events_dropped":0,"avg_latency_ms":87.13305163713791,"throughput_eps":0,"last_update":"2026-03-20T17:12:04.71866958Z"} +2026/03/20 17:12:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:04.575767358Z"} +2026/03/20 17:12:09 ───────────────────────────────────────────────── +2026/03/20 17:12:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":284.8,"last_update":"2026-03-20T17:12:09.576239359Z"} +2026/03/20 17:12:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":572,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:09.586259279Z"} +2026/03/20 17:12:14 [detection_layer] {"stage_name":"detection_layer","events_processed":47,"events_dropped":0,"avg_latency_ms":12.308179413034726,"throughput_eps":0,"last_update":"2026-03-20T17:12:09.719502287Z"} +2026/03/20 17:12:14 [transform_engine] {"stage_name":"transform_engine","events_processed":47,"events_dropped":0,"avg_latency_ms":87.13305163713791,"throughput_eps":0,"last_update":"2026-03-20T17:12:09.719511494Z"} +2026/03/20 17:12:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:09.575920518Z"} +2026/03/20 17:12:14 ───────────────────────────────────────────────── +2026/03/20 17:12:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:14.575750312Z"} +2026/03/20 17:12:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":285.8,"last_update":"2026-03-20T17:12:14.576184094Z"} +2026/03/20 17:12:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:14.586024219Z"} +2026/03/20 17:12:19 [detection_layer] {"stage_name":"detection_layer","events_processed":47,"events_dropped":0,"avg_latency_ms":12.308179413034726,"throughput_eps":0,"last_update":"2026-03-20T17:12:14.719283771Z"} +2026/03/20 17:12:19 [transform_engine] {"stage_name":"transform_engine","events_processed":47,"events_dropped":0,"avg_latency_ms":87.13305163713791,"throughput_eps":0,"last_update":"2026-03-20T17:12:14.719291185Z"} +2026/03/20 17:12:19 ───────────────────────────────────────────────── +2026/03/20 17:12:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:19.575878725Z"} +2026/03/20 17:12:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":286.8,"last_update":"2026-03-20T17:12:19.576338476Z"} +2026/03/20 17:12:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":576,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:19.586468558Z"} +2026/03/20 17:12:24 [detection_layer] {"stage_name":"detection_layer","events_processed":47,"events_dropped":0,"avg_latency_ms":12.308179413034726,"throughput_eps":0,"last_update":"2026-03-20T17:12:19.719692163Z"} +2026/03/20 17:12:24 [transform_engine] {"stage_name":"transform_engine","events_processed":47,"events_dropped":0,"avg_latency_ms":87.13305163713791,"throughput_eps":0,"last_update":"2026-03-20T17:12:19.719699126Z"} +2026/03/20 17:12:24 ───────────────────────────────────────────────── +2026/03/20 17:12:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:29 [detection_layer] {"stage_name":"detection_layer","events_processed":47,"events_dropped":0,"avg_latency_ms":12.308179413034726,"throughput_eps":0,"last_update":"2026-03-20T17:12:24.71879707Z"} +2026/03/20 17:12:29 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":82.72725710971034,"throughput_eps":0,"last_update":"2026-03-20T17:12:24.783915997Z"} +2026/03/20 17:12:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:24.575511802Z"} +2026/03/20 17:12:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":287.8,"last_update":"2026-03-20T17:12:24.575742233Z"} +2026/03/20 17:12:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:24.586712877Z"} +2026/03/20 17:12:29 ───────────────────────────────────────────────── +2026/03/20 17:12:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:29.575732334Z"} +2026/03/20 17:12:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":288.8,"last_update":"2026-03-20T17:12:29.576021679Z"} +2026/03/20 17:12:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":580,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:29.586571096Z"} +2026/03/20 17:12:34 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":12.231014930427781,"throughput_eps":0,"last_update":"2026-03-20T17:12:29.718824717Z"} +2026/03/20 17:12:34 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":82.72725710971034,"throughput_eps":0,"last_update":"2026-03-20T17:12:29.718718793Z"} +2026/03/20 17:12:34 ───────────────────────────────────────────────── +2026/03/20 17:12:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:34.575798134Z"} +2026/03/20 17:12:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":289.8,"last_update":"2026-03-20T17:12:34.57607747Z"} +2026/03/20 17:12:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:34.586970625Z"} +2026/03/20 17:12:39 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":12.231014930427781,"throughput_eps":0,"last_update":"2026-03-20T17:12:34.719224639Z"} +2026/03/20 17:12:39 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":82.72725710971034,"throughput_eps":0,"last_update":"2026-03-20T17:12:34.719233778Z"} +2026/03/20 17:12:39 ───────────────────────────────────────────────── +2026/03/20 17:12:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:39.57551769Z"} +2026/03/20 17:12:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":290.8,"last_update":"2026-03-20T17:12:39.575455069Z"} +2026/03/20 17:12:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:39.584630762Z"} +2026/03/20 17:12:44 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":12.231014930427781,"throughput_eps":0,"last_update":"2026-03-20T17:12:39.718791254Z"} +2026/03/20 17:12:44 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":82.72725710971034,"throughput_eps":0,"last_update":"2026-03-20T17:12:39.718801814Z"} +2026/03/20 17:12:44 ───────────────────────────────────────────────── +2026/03/20 17:12:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:44.575791938Z"} +2026/03/20 17:12:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":291.8,"last_update":"2026-03-20T17:12:44.576082876Z"} +2026/03/20 17:12:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":586,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:44.585722687Z"} +2026/03/20 17:12:49 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":12.231014930427781,"throughput_eps":0,"last_update":"2026-03-20T17:12:44.719111003Z"} +2026/03/20 17:12:49 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":82.72725710971034,"throughput_eps":0,"last_update":"2026-03-20T17:12:44.719126402Z"} +2026/03/20 17:12:49 ───────────────────────────────────────────────── +2026/03/20 17:12:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:54 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":12.231014930427781,"throughput_eps":0,"last_update":"2026-03-20T17:12:49.719377847Z"} +2026/03/20 17:12:54 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":82.72725710971034,"throughput_eps":0,"last_update":"2026-03-20T17:12:49.719388036Z"} +2026/03/20 17:12:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:49.575499868Z"} +2026/03/20 17:12:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":292.8,"last_update":"2026-03-20T17:12:49.575553291Z"} +2026/03/20 17:12:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":588,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:49.585037434Z"} +2026/03/20 17:12:54 ───────────────────────────────────────────────── +2026/03/20 17:12:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":293.8,"last_update":"2026-03-20T17:12:54.576215949Z"} +2026/03/20 17:12:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:54.584556761Z"} +2026/03/20 17:12:59 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":12.231014930427781,"throughput_eps":0,"last_update":"2026-03-20T17:12:54.719824353Z"} +2026/03/20 17:12:59 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":79.25397128776828,"throughput_eps":0,"last_update":"2026-03-20T17:12:54.784081976Z"} +2026/03/20 17:12:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:54.575884183Z"} +2026/03/20 17:12:59 ───────────────────────────────────────────────── +2026/03/20 17:13:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":592,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:59.585136696Z"} +2026/03/20 17:13:04 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":13.083103944342225,"throughput_eps":0,"last_update":"2026-03-20T17:12:59.719422599Z"} +2026/03/20 17:13:04 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":79.25397128776828,"throughput_eps":0,"last_update":"2026-03-20T17:12:59.719450443Z"} +2026/03/20 17:13:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:59.576333758Z"} +2026/03/20 17:13:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":294.8,"last_update":"2026-03-20T17:12:59.576315783Z"} +2026/03/20 17:13:04 ───────────────────────────────────────────────── +2026/03/20 17:13:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:04.575974079Z"} +2026/03/20 17:13:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":295.8,"last_update":"2026-03-20T17:13:04.576322576Z"} +2026/03/20 17:13:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:04.585171744Z"} +2026/03/20 17:13:09 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":13.083103944342225,"throughput_eps":0,"last_update":"2026-03-20T17:13:04.719443212Z"} +2026/03/20 17:13:09 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":79.25397128776828,"throughput_eps":0,"last_update":"2026-03-20T17:13:04.719459633Z"} +2026/03/20 17:13:09 ───────────────────────────────────────────────── +2026/03/20 17:13:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:14 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":13.083103944342225,"throughput_eps":0,"last_update":"2026-03-20T17:13:09.719191245Z"} +2026/03/20 17:13:14 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":79.25397128776828,"throughput_eps":0,"last_update":"2026-03-20T17:13:09.719205403Z"} +2026/03/20 17:13:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:09.576541821Z"} +2026/03/20 17:13:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":296.8,"last_update":"2026-03-20T17:13:09.575419789Z"} +2026/03/20 17:13:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:09.584805525Z"} +2026/03/20 17:13:14 ───────────────────────────────────────────────── +2026/03/20 17:13:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:14.575875071Z"} +2026/03/20 17:13:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":297.8,"last_update":"2026-03-20T17:13:14.576278024Z"} +2026/03/20 17:13:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:14.585477202Z"} +2026/03/20 17:13:19 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":13.083103944342225,"throughput_eps":0,"last_update":"2026-03-20T17:13:14.718801519Z"} +2026/03/20 17:13:19 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":79.25397128776828,"throughput_eps":0,"last_update":"2026-03-20T17:13:14.718710655Z"} +2026/03/20 17:13:19 ───────────────────────────────────────────────── +2026/03/20 17:13:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":298.8,"last_update":"2026-03-20T17:13:19.57543631Z"} +2026/03/20 17:13:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:19.58522528Z"} +2026/03/20 17:13:24 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":13.083103944342225,"throughput_eps":0,"last_update":"2026-03-20T17:13:19.719630392Z"} +2026/03/20 17:13:24 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":79.25397128776828,"throughput_eps":0,"last_update":"2026-03-20T17:13:19.719645972Z"} +2026/03/20 17:13:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:19.57650542Z"} +2026/03/20 17:13:24 ───────────────────────────────────────────────── +2026/03/20 17:13:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:24.575821922Z"} +2026/03/20 17:13:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":299.8,"last_update":"2026-03-20T17:13:24.576213623Z"} +2026/03/20 17:13:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":602,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:24.585154346Z"} +2026/03/20 17:13:29 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":13.083103944342225,"throughput_eps":0,"last_update":"2026-03-20T17:13:24.719560402Z"} +2026/03/20 17:13:29 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":75.84135663021463,"throughput_eps":0,"last_update":"2026-03-20T17:13:24.781768353Z"} +2026/03/20 17:13:29 ───────────────────────────────────────────────── +2026/03/20 17:13:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:34 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":75.84135663021463,"throughput_eps":0,"last_update":"2026-03-20T17:13:29.71888431Z"} +2026/03/20 17:13:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:29.575504975Z"} +2026/03/20 17:13:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":300.8,"last_update":"2026-03-20T17:13:29.575744324Z"} +2026/03/20 17:13:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:29.585641512Z"} +2026/03/20 17:13:34 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":13.277495155473781,"throughput_eps":0,"last_update":"2026-03-20T17:13:29.71887375Z"} +2026/03/20 17:13:34 ───────────────────────────────────────────────── +2026/03/20 17:13:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:34.576013021Z"} +2026/03/20 17:13:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":301.8,"last_update":"2026-03-20T17:13:34.576303929Z"} +2026/03/20 17:13:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:34.586431899Z"} +2026/03/20 17:13:39 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":13.277495155473781,"throughput_eps":0,"last_update":"2026-03-20T17:13:34.719837993Z"} +2026/03/20 17:13:39 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":75.84135663021463,"throughput_eps":0,"last_update":"2026-03-20T17:13:34.718655235Z"} +2026/03/20 17:13:39 ───────────────────────────────────────────────── +2026/03/20 17:13:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:39.576279744Z"} +2026/03/20 17:13:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":302.8,"last_update":"2026-03-20T17:13:39.576264695Z"} +2026/03/20 17:13:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:39.58513262Z"} +2026/03/20 17:13:44 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":13.277495155473781,"throughput_eps":0,"last_update":"2026-03-20T17:13:39.719512983Z"} +2026/03/20 17:13:44 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":75.84135663021463,"throughput_eps":0,"last_update":"2026-03-20T17:13:39.719521991Z"} +2026/03/20 17:13:44 ───────────────────────────────────────────────── +2026/03/20 17:13:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:44.57577645Z"} +2026/03/20 17:13:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":303.8,"last_update":"2026-03-20T17:13:44.576076635Z"} +2026/03/20 17:13:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:44.585391838Z"} +2026/03/20 17:13:49 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":13.277495155473781,"throughput_eps":0,"last_update":"2026-03-20T17:13:44.719645311Z"} +2026/03/20 17:13:49 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":75.84135663021463,"throughput_eps":0,"last_update":"2026-03-20T17:13:44.719651192Z"} +2026/03/20 17:13:49 ───────────────────────────────────────────────── +2026/03/20 17:13:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:49.575584258Z"} +2026/03/20 17:13:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":304.8,"last_update":"2026-03-20T17:13:49.575718095Z"} +2026/03/20 17:13:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:49.584996918Z"} +2026/03/20 17:13:54 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":13.277495155473781,"throughput_eps":0,"last_update":"2026-03-20T17:13:49.719218312Z"} +2026/03/20 17:13:54 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":75.84135663021463,"throughput_eps":0,"last_update":"2026-03-20T17:13:49.719228051Z"} +2026/03/20 17:13:54 ───────────────────────────────────────────────── +2026/03/20 17:13:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:54.575672965Z"} +2026/03/20 17:13:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":305.8,"last_update":"2026-03-20T17:13:54.575954214Z"} +2026/03/20 17:13:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:54.587493852Z"} +2026/03/20 17:13:59 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":13.277495155473781,"throughput_eps":0,"last_update":"2026-03-20T17:13:54.718787974Z"} +2026/03/20 17:13:59 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":73.60143610417171,"throughput_eps":0,"last_update":"2026-03-20T17:13:54.783417114Z"} +2026/03/20 17:13:59 ───────────────────────────────────────────────── +2026/03/20 17:14:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:59.57550921Z"} +2026/03/20 17:14:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":306.8,"last_update":"2026-03-20T17:13:59.575835666Z"} +2026/03/20 17:14:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:59.586063941Z"} +2026/03/20 17:14:04 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":13.588248124379026,"throughput_eps":0,"last_update":"2026-03-20T17:13:59.719426782Z"} +2026/03/20 17:14:04 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":73.60143610417171,"throughput_eps":0,"last_update":"2026-03-20T17:13:59.719439367Z"} +2026/03/20 17:14:04 ───────────────────────────────────────────────── +2026/03/20 17:14:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:09 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":73.60143610417171,"throughput_eps":0,"last_update":"2026-03-20T17:14:04.718731037Z"} +2026/03/20 17:14:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:04.575975311Z"} +2026/03/20 17:14:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":307.8,"last_update":"2026-03-20T17:14:04.576466192Z"} +2026/03/20 17:14:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:04.586543577Z"} +2026/03/20 17:14:09 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":13.588248124379026,"throughput_eps":0,"last_update":"2026-03-20T17:14:04.718847109Z"} +2026/03/20 17:14:09 ───────────────────────────────────────────────── +2026/03/20 17:14:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:09.576036437Z"} +2026/03/20 17:14:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":308.8,"last_update":"2026-03-20T17:14:09.576580371Z"} +2026/03/20 17:14:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":620,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:09.586246436Z"} +2026/03/20 17:14:14 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":13.588248124379026,"throughput_eps":0,"last_update":"2026-03-20T17:14:09.719617069Z"} +2026/03/20 17:14:14 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":73.60143610417171,"throughput_eps":0,"last_update":"2026-03-20T17:14:09.71963326Z"} +2026/03/20 17:14:14 ───────────────────────────────────────────────── +2026/03/20 17:14:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:19 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":13.588248124379026,"throughput_eps":0,"last_update":"2026-03-20T17:14:14.719487615Z"} +2026/03/20 17:14:19 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":73.60143610417171,"throughput_eps":0,"last_update":"2026-03-20T17:14:14.719451074Z"} +2026/03/20 17:14:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:14.575746253Z"} +2026/03/20 17:14:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":309.8,"last_update":"2026-03-20T17:14:14.576159637Z"} +2026/03/20 17:14:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":622,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:14.585331264Z"} +2026/03/20 17:14:19 ───────────────────────────────────────────────── +2026/03/20 17:14:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:24 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":73.60143610417171,"throughput_eps":0,"last_update":"2026-03-20T17:14:19.718941576Z"} +2026/03/20 17:14:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:19.576021127Z"} +2026/03/20 17:14:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":310.8,"last_update":"2026-03-20T17:14:19.576543228Z"} +2026/03/20 17:14:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":622,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:19.576201472Z"} +2026/03/20 17:14:24 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":13.588248124379026,"throughput_eps":0,"last_update":"2026-03-20T17:14:19.718921878Z"} +2026/03/20 17:14:24 ───────────────────────────────────────────────── +2026/03/20 17:14:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:24.575808036Z"} +2026/03/20 17:14:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":311.8,"last_update":"2026-03-20T17:14:24.576142607Z"} +2026/03/20 17:14:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:24.586452267Z"} +2026/03/20 17:14:29 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":13.588248124379026,"throughput_eps":0,"last_update":"2026-03-20T17:14:24.718884176Z"} +2026/03/20 17:14:29 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":81.74561688333738,"throughput_eps":0,"last_update":"2026-03-20T17:14:24.833049615Z"} +2026/03/20 17:14:29 ───────────────────────────────────────────────── +2026/03/20 17:14:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:34 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":81.74561688333738,"throughput_eps":0,"last_update":"2026-03-20T17:14:29.719483805Z"} +2026/03/20 17:14:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:29.575933093Z"} +2026/03/20 17:14:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":312.8,"last_update":"2026-03-20T17:14:29.576553623Z"} +2026/03/20 17:14:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:29.585122074Z"} +2026/03/20 17:14:34 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":13.826673099503221,"throughput_eps":0,"last_update":"2026-03-20T17:14:29.719452095Z"} +2026/03/20 17:14:34 ───────────────────────────────────────────────── +2026/03/20 17:14:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:34.575532081Z"} +2026/03/20 17:14:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":313.8,"last_update":"2026-03-20T17:14:34.575777913Z"} +2026/03/20 17:14:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:34.585381008Z"} +2026/03/20 17:14:39 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":13.826673099503221,"throughput_eps":0,"last_update":"2026-03-20T17:14:34.719399794Z"} +2026/03/20 17:14:39 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":81.74561688333738,"throughput_eps":0,"last_update":"2026-03-20T17:14:34.719432547Z"} +2026/03/20 17:14:39 ───────────────────────────────────────────────── +2026/03/20 17:14:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":632,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:39.587045689Z"} +2026/03/20 17:14:44 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":13.826673099503221,"throughput_eps":0,"last_update":"2026-03-20T17:14:39.719300444Z"} +2026/03/20 17:14:44 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":81.74561688333738,"throughput_eps":0,"last_update":"2026-03-20T17:14:39.71933492Z"} +2026/03/20 17:14:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:39.575507161Z"} +2026/03/20 17:14:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":314.8,"last_update":"2026-03-20T17:14:39.575972313Z"} +2026/03/20 17:14:44 ───────────────────────────────────────────────── +2026/03/20 17:14:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:44.584910391Z"} +2026/03/20 17:14:49 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":13.826673099503221,"throughput_eps":0,"last_update":"2026-03-20T17:14:44.719348615Z"} +2026/03/20 17:14:49 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":81.74561688333738,"throughput_eps":0,"last_update":"2026-03-20T17:14:44.719291657Z"} +2026/03/20 17:14:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:44.575595548Z"} +2026/03/20 17:14:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":315.6,"last_update":"2026-03-20T17:14:44.575034161Z"} +2026/03/20 17:14:49 ───────────────────────────────────────────────── +2026/03/20 17:14:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:54 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":13.826673099503221,"throughput_eps":0,"last_update":"2026-03-20T17:14:49.719484632Z"} +2026/03/20 17:14:54 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":81.74561688333738,"throughput_eps":0,"last_update":"2026-03-20T17:14:49.719528185Z"} +2026/03/20 17:14:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:49.575560774Z"} +2026/03/20 17:14:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1583,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":316.6,"last_update":"2026-03-20T17:14:49.575035767Z"} +2026/03/20 17:14:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:49.586165742Z"} +2026/03/20 17:14:54 ───────────────────────────────────────────────── +2026/03/20 17:14:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:59 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":13.826673099503221,"throughput_eps":0,"last_update":"2026-03-20T17:14:54.718945852Z"} +2026/03/20 17:14:59 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":86.9098667066699,"throughput_eps":0,"last_update":"2026-03-20T17:14:54.826527536Z"} +2026/03/20 17:14:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:54.576182247Z"} +2026/03/20 17:14:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":317.8,"last_update":"2026-03-20T17:14:54.576768491Z"} +2026/03/20 17:14:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:54.585642169Z"} +2026/03/20 17:14:59 ───────────────────────────────────────────────── +2026/03/20 17:15:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:04 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":86.9098667066699,"throughput_eps":0,"last_update":"2026-03-20T17:14:59.718653069Z"} +2026/03/20 17:15:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:59.575551705Z"} +2026/03/20 17:15:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":318.8,"last_update":"2026-03-20T17:14:59.575660474Z"} +2026/03/20 17:15:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":640,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:59.585465958Z"} +2026/03/20 17:15:04 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":14.058482079602577,"throughput_eps":0,"last_update":"2026-03-20T17:14:59.719737068Z"} +2026/03/20 17:15:04 ───────────────────────────────────────────────── +2026/03/20 17:15:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:09 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":86.9098667066699,"throughput_eps":0,"last_update":"2026-03-20T17:15:04.719556395Z"} +2026/03/20 17:15:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:04.575789924Z"} +2026/03/20 17:15:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":319.8,"last_update":"2026-03-20T17:15:04.576280905Z"} +2026/03/20 17:15:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:04.586311581Z"} +2026/03/20 17:15:09 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":14.058482079602577,"throughput_eps":0,"last_update":"2026-03-20T17:15:04.719544372Z"} +2026/03/20 17:15:09 ───────────────────────────────────────────────── +2026/03/20 17:15:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:14 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":14.058482079602577,"throughput_eps":0,"last_update":"2026-03-20T17:15:09.718801217Z"} +2026/03/20 17:15:14 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":86.9098667066699,"throughput_eps":0,"last_update":"2026-03-20T17:15:09.71881397Z"} +2026/03/20 17:15:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:09.575585538Z"} +2026/03/20 17:15:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":320.8,"last_update":"2026-03-20T17:15:09.575828314Z"} +2026/03/20 17:15:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:09.585567802Z"} +2026/03/20 17:15:14 ───────────────────────────────────────────────── +2026/03/20 17:15:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:14.576605186Z"} +2026/03/20 17:15:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":321.8,"last_update":"2026-03-20T17:15:14.5766075Z"} +2026/03/20 17:15:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":646,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:14.585342341Z"} +2026/03/20 17:15:19 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":14.058482079602577,"throughput_eps":0,"last_update":"2026-03-20T17:15:14.71959389Z"} +2026/03/20 17:15:19 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":86.9098667066699,"throughput_eps":0,"last_update":"2026-03-20T17:15:14.719602627Z"} +2026/03/20 17:15:19 ───────────────────────────────────────────────── +2026/03/20 17:15:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:24 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":86.9098667066699,"throughput_eps":0,"last_update":"2026-03-20T17:15:19.719156888Z"} +2026/03/20 17:15:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:19.575753536Z"} +2026/03/20 17:15:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":322.8,"last_update":"2026-03-20T17:15:19.576004617Z"} +2026/03/20 17:15:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:19.5857095Z"} +2026/03/20 17:15:24 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":14.058482079602577,"throughput_eps":0,"last_update":"2026-03-20T17:15:19.71914248Z"} +2026/03/20 17:15:24 ───────────────────────────────────────────────── +2026/03/20 17:15:24 [ANOMALY] time=2026-03-20T17:15:24Z score=0.8744 method=SEAD details=MAD!:w=0.28,s=0.68 RRCF-fast!:w=0.18,s=0.92 RRCF-mid!:w=0.17,s=0.94 RRCF-slow!:w=0.17,s=0.94 COPOD!:w=0.21,s=0.98 +2026/03/20 17:15:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:24.575821071Z"} +2026/03/20 17:15:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":323.8,"last_update":"2026-03-20T17:15:24.57588815Z"} +2026/03/20 17:15:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":650,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:24.586441931Z"} +2026/03/20 17:15:29 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":14.058482079602577,"throughput_eps":0,"last_update":"2026-03-20T17:15:24.719831429Z"} +2026/03/20 17:15:29 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":92.14336216533593,"throughput_eps":0,"last_update":"2026-03-20T17:15:24.831786461Z"} +2026/03/20 17:15:29 ───────────────────────────────────────────────── +2026/03/20 17:15:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:29.575521306Z"} +2026/03/20 17:15:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":324.8,"last_update":"2026-03-20T17:15:29.575958564Z"} +2026/03/20 17:15:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:29.586674326Z"} +2026/03/20 17:15:34 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":12.871407463682061,"throughput_eps":0,"last_update":"2026-03-20T17:15:29.719049841Z"} +2026/03/20 17:15:34 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":92.14336216533593,"throughput_eps":0,"last_update":"2026-03-20T17:15:29.719062265Z"} +2026/03/20 17:15:34 ───────────────────────────────────────────────── +2026/03/20 17:15:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:34.585923606Z"} +2026/03/20 17:15:39 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":12.871407463682061,"throughput_eps":0,"last_update":"2026-03-20T17:15:34.719088669Z"} +2026/03/20 17:15:39 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":92.14336216533593,"throughput_eps":0,"last_update":"2026-03-20T17:15:34.719096984Z"} +2026/03/20 17:15:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:34.576674909Z"} +2026/03/20 17:15:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":325.8,"last_update":"2026-03-20T17:15:34.57670695Z"} +2026/03/20 17:15:39 ───────────────────────────────────────────────── +2026/03/20 17:15:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:44 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":92.14336216533593,"throughput_eps":0,"last_update":"2026-03-20T17:15:39.719365271Z"} +2026/03/20 17:15:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:39.575501328Z"} +2026/03/20 17:15:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":326.8,"last_update":"2026-03-20T17:15:39.575888841Z"} +2026/03/20 17:15:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:39.58609222Z"} +2026/03/20 17:15:44 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":12.871407463682061,"throughput_eps":0,"last_update":"2026-03-20T17:15:39.71933866Z"} +2026/03/20 17:15:44 ───────────────────────────────────────────────── +2026/03/20 17:15:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:49 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":12.871407463682061,"throughput_eps":0,"last_update":"2026-03-20T17:15:44.719307182Z"} +2026/03/20 17:15:49 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":92.14336216533593,"throughput_eps":0,"last_update":"2026-03-20T17:15:44.719315387Z"} +2026/03/20 17:15:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:44.575671905Z"} +2026/03/20 17:15:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":327.8,"last_update":"2026-03-20T17:15:44.575961681Z"} +2026/03/20 17:15:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:44.586042935Z"} +2026/03/20 17:15:49 ───────────────────────────────────────────────── +2026/03/20 17:15:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:49.57588809Z"} +2026/03/20 17:15:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":328.8,"last_update":"2026-03-20T17:15:49.576136396Z"} +2026/03/20 17:15:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":660,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:49.587326698Z"} +2026/03/20 17:15:54 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":12.871407463682061,"throughput_eps":0,"last_update":"2026-03-20T17:15:49.719659981Z"} +2026/03/20 17:15:54 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":92.14336216533593,"throughput_eps":0,"last_update":"2026-03-20T17:15:49.719668097Z"} +2026/03/20 17:15:54 ───────────────────────────────────────────────── +2026/03/20 17:15:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":662,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:54.585503319Z"} +2026/03/20 17:15:59 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":12.871407463682061,"throughput_eps":0,"last_update":"2026-03-20T17:15:54.719767817Z"} +2026/03/20 17:15:59 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":96.57884533226876,"throughput_eps":0,"last_update":"2026-03-20T17:15:54.834106419Z"} +2026/03/20 17:15:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:54.575508099Z"} +2026/03/20 17:15:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":329.8,"last_update":"2026-03-20T17:15:54.57547786Z"} +2026/03/20 17:15:59 ───────────────────────────────────────────────── +2026/03/20 17:16:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:59.575722035Z"} +2026/03/20 17:16:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":330.8,"last_update":"2026-03-20T17:15:59.57608457Z"} +2026/03/20 17:16:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:59.585630689Z"} +2026/03/20 17:16:04 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":13.33265217094565,"throughput_eps":0,"last_update":"2026-03-20T17:15:59.718798637Z"} +2026/03/20 17:16:04 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":96.57884533226876,"throughput_eps":0,"last_update":"2026-03-20T17:15:59.718807373Z"} +2026/03/20 17:16:04 ───────────────────────────────────────────────── +2026/03/20 17:16:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:09 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":13.33265217094565,"throughput_eps":0,"last_update":"2026-03-20T17:16:04.718842114Z"} +2026/03/20 17:16:09 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":96.57884533226876,"throughput_eps":0,"last_update":"2026-03-20T17:16:04.718737264Z"} +2026/03/20 17:16:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:04.576019038Z"} +2026/03/20 17:16:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":331.8,"last_update":"2026-03-20T17:16:04.576294235Z"} +2026/03/20 17:16:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:04.585616215Z"} +2026/03/20 17:16:09 ───────────────────────────────────────────────── +2026/03/20 17:16:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:09.575766565Z"} +2026/03/20 17:16:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":332.8,"last_update":"2026-03-20T17:16:09.576137215Z"} +2026/03/20 17:16:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":668,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:09.587169615Z"} +2026/03/20 17:16:14 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":13.33265217094565,"throughput_eps":0,"last_update":"2026-03-20T17:16:09.719565355Z"} +2026/03/20 17:16:14 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":96.57884533226876,"throughput_eps":0,"last_update":"2026-03-20T17:16:09.719579992Z"} +2026/03/20 17:16:14 ───────────────────────────────────────────────── +2026/03/20 17:16:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:14.575724517Z"} +2026/03/20 17:16:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":333.8,"last_update":"2026-03-20T17:16:14.576030264Z"} +2026/03/20 17:16:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":670,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:14.58634632Z"} +2026/03/20 17:16:19 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":13.33265217094565,"throughput_eps":0,"last_update":"2026-03-20T17:16:14.719701211Z"} +2026/03/20 17:16:19 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":96.57884533226876,"throughput_eps":0,"last_update":"2026-03-20T17:16:14.719717072Z"} +2026/03/20 17:16:19 ───────────────────────────────────────────────── +2026/03/20 17:16:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:19.576099478Z"} +2026/03/20 17:16:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":334.8,"last_update":"2026-03-20T17:16:19.576432998Z"} +2026/03/20 17:16:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:19.586365969Z"} +2026/03/20 17:16:24 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":13.33265217094565,"throughput_eps":0,"last_update":"2026-03-20T17:16:19.719672048Z"} +2026/03/20 17:16:24 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":96.57884533226876,"throughput_eps":0,"last_update":"2026-03-20T17:16:19.719684823Z"} +2026/03/20 17:16:24 ───────────────────────────────────────────────── +2026/03/20 17:16:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:29 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":91.42948546581502,"throughput_eps":0,"last_update":"2026-03-20T17:16:24.790586118Z"} +2026/03/20 17:16:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:24.575694858Z"} +2026/03/20 17:16:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":335.8,"last_update":"2026-03-20T17:16:24.576021605Z"} +2026/03/20 17:16:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:24.586361116Z"} +2026/03/20 17:16:29 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":13.33265217094565,"throughput_eps":0,"last_update":"2026-03-20T17:16:24.719735748Z"} +2026/03/20 17:16:29 ───────────────────────────────────────────────── +2026/03/20 17:16:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:29.575545469Z"} +2026/03/20 17:16:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":336.8,"last_update":"2026-03-20T17:16:29.575660971Z"} +2026/03/20 17:16:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":676,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:29.586657884Z"} +2026/03/20 17:16:34 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":13.700245136756521,"throughput_eps":0,"last_update":"2026-03-20T17:16:29.719191023Z"} +2026/03/20 17:16:34 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":91.42948546581502,"throughput_eps":0,"last_update":"2026-03-20T17:16:29.719049261Z"} +2026/03/20 17:16:34 ───────────────────────────────────────────────── +2026/03/20 17:16:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:34.576111025Z"} +2026/03/20 17:16:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":337.8,"last_update":"2026-03-20T17:16:34.576616595Z"} +2026/03/20 17:16:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:34.585755093Z"} +2026/03/20 17:16:39 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":13.700245136756521,"throughput_eps":0,"last_update":"2026-03-20T17:16:34.719153153Z"} +2026/03/20 17:16:39 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":91.42948546581502,"throughput_eps":0,"last_update":"2026-03-20T17:16:34.719204503Z"} +2026/03/20 17:16:39 ───────────────────────────────────────────────── +2026/03/20 17:16:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:44 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":91.42948546581502,"throughput_eps":0,"last_update":"2026-03-20T17:16:39.718955742Z"} +2026/03/20 17:16:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:39.575812749Z"} +2026/03/20 17:16:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":338.8,"last_update":"2026-03-20T17:16:39.576160416Z"} +2026/03/20 17:16:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:39.585594982Z"} +2026/03/20 17:16:44 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":13.700245136756521,"throughput_eps":0,"last_update":"2026-03-20T17:16:39.718931476Z"} +2026/03/20 17:16:44 ───────────────────────────────────────────────── +2026/03/20 17:16:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:44.575986349Z"} +2026/03/20 17:16:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":339.8,"last_update":"2026-03-20T17:16:44.575968976Z"} +2026/03/20 17:16:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:44.586881787Z"} +2026/03/20 17:16:49 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":13.700245136756521,"throughput_eps":0,"last_update":"2026-03-20T17:16:44.719432936Z"} +2026/03/20 17:16:49 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":91.42948546581502,"throughput_eps":0,"last_update":"2026-03-20T17:16:44.719313788Z"} +2026/03/20 17:16:49 ───────────────────────────────────────────────── +2026/03/20 17:16:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":340.8,"last_update":"2026-03-20T17:16:49.576160842Z"} +2026/03/20 17:16:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:49.585181905Z"} +2026/03/20 17:16:54 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":13.700245136756521,"throughput_eps":0,"last_update":"2026-03-20T17:16:49.71944502Z"} +2026/03/20 17:16:54 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":91.42948546581502,"throughput_eps":0,"last_update":"2026-03-20T17:16:49.719546394Z"} +2026/03/20 17:16:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:49.575855286Z"} +2026/03/20 17:16:54 ───────────────────────────────────────────────── +2026/03/20 17:16:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:54.575734644Z"} +2026/03/20 17:16:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":341.8,"last_update":"2026-03-20T17:16:54.576125835Z"} +2026/03/20 17:16:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:54.58660776Z"} +2026/03/20 17:16:59 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":13.700245136756521,"throughput_eps":0,"last_update":"2026-03-20T17:16:54.718912439Z"} +2026/03/20 17:16:59 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":85.54184317265202,"throughput_eps":0,"last_update":"2026-03-20T17:16:54.780845351Z"} +2026/03/20 17:16:59 ───────────────────────────────────────────────── +2026/03/20 17:17:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:04 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":85.54184317265202,"throughput_eps":0,"last_update":"2026-03-20T17:16:59.719561226Z"} +2026/03/20 17:17:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:59.575527236Z"} +2026/03/20 17:17:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":342.8,"last_update":"2026-03-20T17:16:59.57580566Z"} +2026/03/20 17:17:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":688,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:59.586072032Z"} +2026/03/20 17:17:04 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":12.578859109405217,"throughput_eps":0,"last_update":"2026-03-20T17:16:59.719455363Z"} +2026/03/20 17:17:04 ───────────────────────────────────────────────── +2026/03/20 17:17:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:04.575531133Z"} +2026/03/20 17:17:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":343.8,"last_update":"2026-03-20T17:17:04.575919328Z"} +2026/03/20 17:17:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:04.586657955Z"} +2026/03/20 17:17:09 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":12.578859109405217,"throughput_eps":0,"last_update":"2026-03-20T17:17:04.718930216Z"} +2026/03/20 17:17:09 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":85.54184317265202,"throughput_eps":0,"last_update":"2026-03-20T17:17:04.718907823Z"} +2026/03/20 17:17:09 ───────────────────────────────────────────────── +2026/03/20 17:17:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:09.575980944Z"} +2026/03/20 17:17:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":344.8,"last_update":"2026-03-20T17:17:09.576303563Z"} +2026/03/20 17:17:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:09.585336849Z"} +2026/03/20 17:17:14 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":12.578859109405217,"throughput_eps":0,"last_update":"2026-03-20T17:17:09.719764526Z"} +2026/03/20 17:17:14 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":85.54184317265202,"throughput_eps":0,"last_update":"2026-03-20T17:17:09.719715072Z"} +2026/03/20 17:17:14 ───────────────────────────────────────────────── +2026/03/20 17:17:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:14.575513305Z"} +2026/03/20 17:17:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":345.8,"last_update":"2026-03-20T17:17:14.575589812Z"} +2026/03/20 17:17:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:14.585046009Z"} +2026/03/20 17:17:19 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":12.578859109405217,"throughput_eps":0,"last_update":"2026-03-20T17:17:14.719341975Z"} +2026/03/20 17:17:19 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":85.54184317265202,"throughput_eps":0,"last_update":"2026-03-20T17:17:14.719290948Z"} +2026/03/20 17:17:19 ───────────────────────────────────────────────── +2026/03/20 17:17:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:24 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":12.578859109405217,"throughput_eps":0,"last_update":"2026-03-20T17:17:19.719068847Z"} +2026/03/20 17:17:24 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":85.54184317265202,"throughput_eps":0,"last_update":"2026-03-20T17:17:19.719044751Z"} +2026/03/20 17:17:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:19.575818615Z"} +2026/03/20 17:17:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":346.8,"last_update":"2026-03-20T17:17:19.576140523Z"} +2026/03/20 17:17:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:19.585665222Z"} +2026/03/20 17:17:24 ───────────────────────────────────────────────── +2026/03/20 17:17:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:24.585914983Z"} +2026/03/20 17:17:29 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":12.578859109405217,"throughput_eps":0,"last_update":"2026-03-20T17:17:24.720273692Z"} +2026/03/20 17:17:29 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":81.18141693812161,"throughput_eps":0,"last_update":"2026-03-20T17:17:24.782978659Z"} +2026/03/20 17:17:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:29.575545122Z"} +2026/03/20 17:17:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":347.8,"last_update":"2026-03-20T17:17:24.576140113Z"} +2026/03/20 17:17:29 ───────────────────────────────────────────────── +2026/03/20 17:17:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":348.8,"last_update":"2026-03-20T17:17:29.576066112Z"} +2026/03/20 17:17:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":700,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:29.586174913Z"} +2026/03/20 17:17:34 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":12.979230887524174,"throughput_eps":0,"last_update":"2026-03-20T17:17:29.719805536Z"} +2026/03/20 17:17:34 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":81.18141693812161,"throughput_eps":0,"last_update":"2026-03-20T17:17:29.719694624Z"} +2026/03/20 17:17:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:29.575545122Z"} +2026/03/20 17:17:34 ───────────────────────────────────────────────── +2026/03/20 17:17:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:39 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":81.18141693812161,"throughput_eps":0,"last_update":"2026-03-20T17:17:34.719524856Z"} +2026/03/20 17:17:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:34.576102758Z"} +2026/03/20 17:17:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":349.8,"last_update":"2026-03-20T17:17:34.576427792Z"} +2026/03/20 17:17:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":702,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:34.585265033Z"} +2026/03/20 17:17:39 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":12.979230887524174,"throughput_eps":0,"last_update":"2026-03-20T17:17:34.719545725Z"} +2026/03/20 17:17:39 ───────────────────────────────────────────────── +2026/03/20 17:17:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:44 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":81.18141693812161,"throughput_eps":0,"last_update":"2026-03-20T17:17:39.719574473Z"} +2026/03/20 17:17:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:39.575741376Z"} +2026/03/20 17:17:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":350.8,"last_update":"2026-03-20T17:17:39.575955777Z"} +2026/03/20 17:17:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:39.586251316Z"} +2026/03/20 17:17:44 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":12.979230887524174,"throughput_eps":0,"last_update":"2026-03-20T17:17:39.719686768Z"} +2026/03/20 17:17:44 ───────────────────────────────────────────────── +2026/03/20 17:17:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:44.57587089Z"} +2026/03/20 17:17:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":351.8,"last_update":"2026-03-20T17:17:44.576231571Z"} +2026/03/20 17:17:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:44.58671443Z"} +2026/03/20 17:17:49 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":12.979230887524174,"throughput_eps":0,"last_update":"2026-03-20T17:17:44.718925326Z"} +2026/03/20 17:17:49 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":81.18141693812161,"throughput_eps":0,"last_update":"2026-03-20T17:17:44.71893798Z"} +2026/03/20 17:17:49 ───────────────────────────────────────────────── +2026/03/20 17:17:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:49.575542702Z"} +2026/03/20 17:17:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":352.8,"last_update":"2026-03-20T17:17:49.576045327Z"} +2026/03/20 17:17:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:49.585933614Z"} +2026/03/20 17:17:54 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":12.979230887524174,"throughput_eps":0,"last_update":"2026-03-20T17:17:49.71939Z"} +2026/03/20 17:17:54 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":81.18141693812161,"throughput_eps":0,"last_update":"2026-03-20T17:17:49.719286932Z"} +2026/03/20 17:17:54 ───────────────────────────────────────────────── +2026/03/20 17:17:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:54.575795663Z"} +2026/03/20 17:17:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":353.8,"last_update":"2026-03-20T17:17:54.576075039Z"} +2026/03/20 17:17:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:54.587240016Z"} +2026/03/20 17:17:59 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":12.979230887524174,"throughput_eps":0,"last_update":"2026-03-20T17:17:54.719539353Z"} +2026/03/20 17:17:59 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":88.7056029504973,"throughput_eps":0,"last_update":"2026-03-20T17:17:54.838376988Z"} +2026/03/20 17:17:59 ───────────────────────────────────────────────── +2026/03/20 17:18:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:04 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":88.7056029504973,"throughput_eps":0,"last_update":"2026-03-20T17:17:59.719469059Z"} +2026/03/20 17:18:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:59.575759382Z"} +2026/03/20 17:18:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":354.8,"last_update":"2026-03-20T17:17:59.576171553Z"} +2026/03/20 17:18:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":712,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:59.585302298Z"} +2026/03/20 17:18:04 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.60797811001934,"throughput_eps":0,"last_update":"2026-03-20T17:17:59.719444702Z"} +2026/03/20 17:18:04 ───────────────────────────────────────────────── +2026/03/20 17:18:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:09 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":88.7056029504973,"throughput_eps":0,"last_update":"2026-03-20T17:18:04.719667263Z"} +2026/03/20 17:18:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:04.575572546Z"} +2026/03/20 17:18:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":355.8,"last_update":"2026-03-20T17:18:04.575513452Z"} +2026/03/20 17:18:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:04.585257063Z"} +2026/03/20 17:18:09 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.60797811001934,"throughput_eps":0,"last_update":"2026-03-20T17:18:04.719797803Z"} +2026/03/20 17:18:09 ───────────────────────────────────────────────── +2026/03/20 17:18:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:14 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.60797811001934,"throughput_eps":0,"last_update":"2026-03-20T17:18:09.719102776Z"} +2026/03/20 17:18:14 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":88.7056029504973,"throughput_eps":0,"last_update":"2026-03-20T17:18:09.718943199Z"} +2026/03/20 17:18:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:09.575916459Z"} +2026/03/20 17:18:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":356.8,"last_update":"2026-03-20T17:18:09.576271892Z"} +2026/03/20 17:18:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:09.586713081Z"} +2026/03/20 17:18:14 ───────────────────────────────────────────────── +2026/03/20 17:18:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":357.8,"last_update":"2026-03-20T17:18:14.576625006Z"} +2026/03/20 17:18:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":718,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:14.58589119Z"} +2026/03/20 17:18:19 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.60797811001934,"throughput_eps":0,"last_update":"2026-03-20T17:18:14.719062688Z"} +2026/03/20 17:18:19 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":88.7056029504973,"throughput_eps":0,"last_update":"2026-03-20T17:18:14.719047097Z"} +2026/03/20 17:18:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:14.575974068Z"} +2026/03/20 17:18:19 ───────────────────────────────────────────────── +2026/03/20 17:18:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:19.575788649Z"} +2026/03/20 17:18:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":358.8,"last_update":"2026-03-20T17:18:19.576212092Z"} +2026/03/20 17:18:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:19.585187008Z"} +2026/03/20 17:18:24 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.60797811001934,"throughput_eps":0,"last_update":"2026-03-20T17:18:19.719392629Z"} +2026/03/20 17:18:24 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":88.7056029504973,"throughput_eps":0,"last_update":"2026-03-20T17:18:19.719412697Z"} +2026/03/20 17:18:24 ───────────────────────────────────────────────── +2026/03/20 17:18:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":722,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:24.586791947Z"} +2026/03/20 17:18:29 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.60797811001934,"throughput_eps":0,"last_update":"2026-03-20T17:18:24.719051626Z"} +2026/03/20 17:18:29 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":94.30956456039785,"throughput_eps":0,"last_update":"2026-03-20T17:18:24.835811923Z"} +2026/03/20 17:18:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:24.576044389Z"} +2026/03/20 17:18:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":359.8,"last_update":"2026-03-20T17:18:24.577021283Z"} +2026/03/20 17:18:29 ───────────────────────────────────────────────── +2026/03/20 17:18:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":360.8,"last_update":"2026-03-20T17:18:29.575941401Z"} +2026/03/20 17:18:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:29.586940651Z"} +2026/03/20 17:18:34 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":14.462538488015472,"throughput_eps":0,"last_update":"2026-03-20T17:18:29.719306756Z"} +2026/03/20 17:18:34 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":94.30956456039785,"throughput_eps":0,"last_update":"2026-03-20T17:18:29.719272641Z"} +2026/03/20 17:18:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:29.575662696Z"} +2026/03/20 17:18:34 ───────────────────────────────────────────────── +2026/03/20 17:18:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:34.585178802Z"} +2026/03/20 17:18:39 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":14.462538488015472,"throughput_eps":0,"last_update":"2026-03-20T17:18:34.719565184Z"} +2026/03/20 17:18:39 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":94.30956456039785,"throughput_eps":0,"last_update":"2026-03-20T17:18:34.719535447Z"} +2026/03/20 17:18:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:34.576079276Z"} +2026/03/20 17:18:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":361.8,"last_update":"2026-03-20T17:18:34.576396905Z"} +2026/03/20 17:18:39 ───────────────────────────────────────────────── +2026/03/20 17:18:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:39.57581477Z"} +2026/03/20 17:18:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":362.8,"last_update":"2026-03-20T17:18:39.576135075Z"} +2026/03/20 17:18:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":728,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:39.58599572Z"} +2026/03/20 17:18:44 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":14.462538488015472,"throughput_eps":0,"last_update":"2026-03-20T17:18:39.719336888Z"} +2026/03/20 17:18:44 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":94.30956456039785,"throughput_eps":0,"last_update":"2026-03-20T17:18:39.719301501Z"} +2026/03/20 17:18:44 ───────────────────────────────────────────────── +2026/03/20 17:18:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:44.575826891Z"} +2026/03/20 17:18:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":363.8,"last_update":"2026-03-20T17:18:44.576069397Z"} +2026/03/20 17:18:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":730,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:44.587052165Z"} +2026/03/20 17:18:49 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":14.462538488015472,"throughput_eps":0,"last_update":"2026-03-20T17:18:44.719472359Z"} +2026/03/20 17:18:49 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":94.30956456039785,"throughput_eps":0,"last_update":"2026-03-20T17:18:44.719440297Z"} +2026/03/20 17:18:49 ───────────────────────────────────────────────── +2026/03/20 17:18:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":364.8,"last_update":"2026-03-20T17:18:49.57615038Z"} +2026/03/20 17:18:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:49.58750376Z"} +2026/03/20 17:18:54 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":14.462538488015472,"throughput_eps":0,"last_update":"2026-03-20T17:18:49.718815798Z"} +2026/03/20 17:18:54 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":94.30956456039785,"throughput_eps":0,"last_update":"2026-03-20T17:18:49.718676851Z"} +2026/03/20 17:18:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:49.575838282Z"} +2026/03/20 17:18:54 ───────────────────────────────────────────────── +2026/03/20 17:18:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:54.575977284Z"} +2026/03/20 17:18:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":365.8,"last_update":"2026-03-20T17:18:54.576310523Z"} +2026/03/20 17:18:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:54.585294017Z"} +2026/03/20 17:18:59 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":14.462538488015472,"throughput_eps":0,"last_update":"2026-03-20T17:18:54.719667078Z"} +2026/03/20 17:18:59 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":88.46718964831828,"throughput_eps":0,"last_update":"2026-03-20T17:18:54.784821666Z"} +2026/03/20 17:18:59 ───────────────────────────────────────────────── +2026/03/20 17:19:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:59.57551422Z"} +2026/03/20 17:19:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":366.8,"last_update":"2026-03-20T17:18:59.575684536Z"} +2026/03/20 17:19:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":736,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:59.58650857Z"} +2026/03/20 17:19:04 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.493468990412378,"throughput_eps":0,"last_update":"2026-03-20T17:18:59.719792164Z"} +2026/03/20 17:19:04 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":88.46718964831828,"throughput_eps":0,"last_update":"2026-03-20T17:18:59.718654812Z"} +2026/03/20 17:19:04 ───────────────────────────────────────────────── +2026/03/20 17:19:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":367.8,"last_update":"2026-03-20T17:19:04.576081058Z"} +2026/03/20 17:19:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":738,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:04.585973385Z"} +2026/03/20 17:19:09 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.493468990412378,"throughput_eps":0,"last_update":"2026-03-20T17:19:04.719347924Z"} +2026/03/20 17:19:09 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":88.46718964831828,"throughput_eps":0,"last_update":"2026-03-20T17:19:04.719238574Z"} +2026/03/20 17:19:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:04.575848803Z"} +2026/03/20 17:19:09 ───────────────────────────────────────────────── +2026/03/20 17:19:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:09.575547373Z"} +2026/03/20 17:19:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":368.8,"last_update":"2026-03-20T17:19:09.575851617Z"} +2026/03/20 17:19:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":740,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:09.586056213Z"} +2026/03/20 17:19:14 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.493468990412378,"throughput_eps":0,"last_update":"2026-03-20T17:19:09.719425664Z"} +2026/03/20 17:19:14 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":88.46718964831828,"throughput_eps":0,"last_update":"2026-03-20T17:19:09.719390316Z"} +2026/03/20 17:19:14 ───────────────────────────────────────────────── +2026/03/20 17:19:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:14.58486883Z"} +2026/03/20 17:19:19 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.493468990412378,"throughput_eps":0,"last_update":"2026-03-20T17:19:14.71924328Z"} +2026/03/20 17:19:19 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":88.46718964831828,"throughput_eps":0,"last_update":"2026-03-20T17:19:14.71913429Z"} +2026/03/20 17:19:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:14.575938899Z"} +2026/03/20 17:19:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":369.8,"last_update":"2026-03-20T17:19:14.576247001Z"} +2026/03/20 17:19:19 ───────────────────────────────────────────────── +2026/03/20 17:19:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:19.575732704Z"} +2026/03/20 17:19:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":370.8,"last_update":"2026-03-20T17:19:19.575993725Z"} +2026/03/20 17:19:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:19.585166682Z"} +2026/03/20 17:19:24 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.493468990412378,"throughput_eps":0,"last_update":"2026-03-20T17:19:19.718812245Z"} +2026/03/20 17:19:24 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":88.46718964831828,"throughput_eps":0,"last_update":"2026-03-20T17:19:19.718703817Z"} +2026/03/20 17:19:24 ───────────────────────────────────────────────── +2026/03/20 17:19:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:24.575764378Z"} +2026/03/20 17:19:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":371.8,"last_update":"2026-03-20T17:19:24.576091386Z"} +2026/03/20 17:19:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:24.586885122Z"} +2026/03/20 17:19:29 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.493468990412378,"throughput_eps":0,"last_update":"2026-03-20T17:19:24.719481593Z"} +2026/03/20 17:19:29 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":88.46718964831828,"throughput_eps":0,"last_update":"2026-03-20T17:19:24.719314894Z"} +2026/03/20 17:19:29 ───────────────────────────────────────────────── +2026/03/20 17:19:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:34 [detection_layer] {"stage_name":"detection_layer","events_processed":62,"events_dropped":0,"avg_latency_ms":14.657121792329903,"throughput_eps":0,"last_update":"2026-03-20T17:19:29.718917254Z"} +2026/03/20 17:19:34 [transform_engine] {"stage_name":"transform_engine","events_processed":62,"events_dropped":0,"avg_latency_ms":93.62624151865462,"throughput_eps":0,"last_update":"2026-03-20T17:19:29.719027515Z"} +2026/03/20 17:19:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:29.575559707Z"} +2026/03/20 17:19:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":372.8,"last_update":"2026-03-20T17:19:29.575740133Z"} +2026/03/20 17:19:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:29.586691944Z"} +2026/03/20 17:19:34 ───────────────────────────────────────────────── +2026/03/20 17:19:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:34.575683711Z"} +2026/03/20 17:19:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":373.8,"last_update":"2026-03-20T17:19:34.576242594Z"} +2026/03/20 17:19:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":750,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:34.585559798Z"} +2026/03/20 17:19:39 [detection_layer] {"stage_name":"detection_layer","events_processed":62,"events_dropped":0,"avg_latency_ms":14.657121792329903,"throughput_eps":0,"last_update":"2026-03-20T17:19:34.718826797Z"} +2026/03/20 17:19:39 [transform_engine] {"stage_name":"transform_engine","events_processed":62,"events_dropped":0,"avg_latency_ms":93.62624151865462,"throughput_eps":0,"last_update":"2026-03-20T17:19:34.71872381Z"} +2026/03/20 17:19:39 ───────────────────────────────────────────────── +2026/03/20 17:19:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:39.57587107Z"} +2026/03/20 17:19:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":374.8,"last_update":"2026-03-20T17:19:39.576124727Z"} +2026/03/20 17:19:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":752,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:39.587022955Z"} +2026/03/20 17:19:44 [detection_layer] {"stage_name":"detection_layer","events_processed":62,"events_dropped":0,"avg_latency_ms":14.657121792329903,"throughput_eps":0,"last_update":"2026-03-20T17:19:39.719428183Z"} +2026/03/20 17:19:44 [transform_engine] {"stage_name":"transform_engine","events_processed":62,"events_dropped":0,"avg_latency_ms":93.62624151865462,"throughput_eps":0,"last_update":"2026-03-20T17:19:39.719317901Z"} +2026/03/20 17:19:44 ───────────────────────────────────────────────── +2026/03/20 17:19:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:44.575493188Z"} +2026/03/20 17:19:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":375.8,"last_update":"2026-03-20T17:19:44.576062621Z"} +2026/03/20 17:19:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:44.587134041Z"} +2026/03/20 17:19:49 [detection_layer] {"stage_name":"detection_layer","events_processed":62,"events_dropped":0,"avg_latency_ms":14.657121792329903,"throughput_eps":0,"last_update":"2026-03-20T17:19:44.719376216Z"} +2026/03/20 17:19:49 [transform_engine] {"stage_name":"transform_engine","events_processed":62,"events_dropped":0,"avg_latency_ms":93.62624151865462,"throughput_eps":0,"last_update":"2026-03-20T17:19:44.71947706Z"} +2026/03/20 17:19:49 ───────────────────────────────────────────────── +2026/03/20 17:19:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:54 [detection_layer] {"stage_name":"detection_layer","events_processed":62,"events_dropped":0,"avg_latency_ms":14.657121792329903,"throughput_eps":0,"last_update":"2026-03-20T17:19:49.71958845Z"} +2026/03/20 17:19:54 [transform_engine] {"stage_name":"transform_engine","events_processed":62,"events_dropped":0,"avg_latency_ms":93.62624151865462,"throughput_eps":0,"last_update":"2026-03-20T17:19:49.719566237Z"} +2026/03/20 17:19:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:49.575768482Z"} +2026/03/20 17:19:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":376.8,"last_update":"2026-03-20T17:19:49.576619584Z"} +2026/03/20 17:19:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:49.586302691Z"} +2026/03/20 17:19:54 ───────────────────────────────────────────────── +2026/03/20 17:19:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:59 [detection_layer] {"stage_name":"detection_layer","events_processed":62,"events_dropped":0,"avg_latency_ms":14.657121792329903,"throughput_eps":0,"last_update":"2026-03-20T17:19:54.719641972Z"} +2026/03/20 17:19:59 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":97.17956121492371,"throughput_eps":0,"last_update":"2026-03-20T17:19:54.83115881Z"} +2026/03/20 17:19:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:54.57598765Z"} +2026/03/20 17:19:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":377.6,"last_update":"2026-03-20T17:19:54.576012578Z"} +2026/03/20 17:19:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":758,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:54.586237073Z"} +2026/03/20 17:19:59 ───────────────────────────────────────────────── +2026/03/20 17:20:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:59.576058007Z"} +2026/03/20 17:20:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1893,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":378.6,"last_update":"2026-03-20T17:19:59.576013862Z"} +2026/03/20 17:20:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:59.586650057Z"} +2026/03/20 17:20:04 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":14.990703033863923,"throughput_eps":0,"last_update":"2026-03-20T17:19:59.719468962Z"} +2026/03/20 17:20:04 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":97.17956121492371,"throughput_eps":0,"last_update":"2026-03-20T17:19:59.719409008Z"} +2026/03/20 17:20:04 ───────────────────────────────────────────────── +2026/03/20 17:20:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:04.575501682Z"} +2026/03/20 17:20:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":379.8,"last_update":"2026-03-20T17:20:04.575679584Z"} +2026/03/20 17:20:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:04.596817586Z"} +2026/03/20 17:20:09 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":14.990703033863923,"throughput_eps":0,"last_update":"2026-03-20T17:20:04.7192104Z"} +2026/03/20 17:20:09 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":97.17956121492371,"throughput_eps":0,"last_update":"2026-03-20T17:20:04.7191841Z"} +2026/03/20 17:20:09 ───────────────────────────────────────────────── +2026/03/20 17:20:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":380.8,"last_update":"2026-03-20T17:20:09.576337221Z"} +2026/03/20 17:20:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:09.585342556Z"} +2026/03/20 17:20:14 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":14.990703033863923,"throughput_eps":0,"last_update":"2026-03-20T17:20:09.719667253Z"} +2026/03/20 17:20:14 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":97.17956121492371,"throughput_eps":0,"last_update":"2026-03-20T17:20:09.719782675Z"} +2026/03/20 17:20:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:09.575891686Z"} +2026/03/20 17:20:14 ───────────────────────────────────────────────── +2026/03/20 17:20:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:14.575507744Z"} +2026/03/20 17:20:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":381.8,"last_update":"2026-03-20T17:20:14.575571987Z"} +2026/03/20 17:20:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":766,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:14.58594141Z"} +2026/03/20 17:20:19 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":14.990703033863923,"throughput_eps":0,"last_update":"2026-03-20T17:20:14.719218389Z"} +2026/03/20 17:20:19 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":97.17956121492371,"throughput_eps":0,"last_update":"2026-03-20T17:20:14.71919857Z"} +2026/03/20 17:20:19 ───────────────────────────────────────────────── +2026/03/20 17:20:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:24 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":14.990703033863923,"throughput_eps":0,"last_update":"2026-03-20T17:20:19.719748302Z"} +2026/03/20 17:20:24 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":97.17956121492371,"throughput_eps":0,"last_update":"2026-03-20T17:20:19.718641991Z"} +2026/03/20 17:20:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:19.575759693Z"} +2026/03/20 17:20:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":382.8,"last_update":"2026-03-20T17:20:19.57616928Z"} +2026/03/20 17:20:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":768,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:19.585495742Z"} +2026/03/20 17:20:24 ───────────────────────────────────────────────── +2026/03/20 17:20:24 [ANOMALY] time=2026-03-20T17:20:24Z score=0.8711 method=SEAD details=MAD!:w=0.27,s=0.92 RRCF-fast:w=0.18,s=0.73 RRCF-mid:w=0.16,s=0.86 RRCF-slow!:w=0.16,s=0.89 COPOD!:w=0.22,s=0.92 +2026/03/20 17:20:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:29 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":90.82371897193897,"throughput_eps":0,"last_update":"2026-03-20T17:20:24.785057766Z"} +2026/03/20 17:20:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:24.575747817Z"} +2026/03/20 17:20:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":383.8,"last_update":"2026-03-20T17:20:24.576199915Z"} +2026/03/20 17:20:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":770,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:24.586366379Z"} +2026/03/20 17:20:29 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":14.990703033863923,"throughput_eps":0,"last_update":"2026-03-20T17:20:24.7197688Z"} +2026/03/20 17:20:29 ───────────────────────────────────────────────── +2026/03/20 17:20:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:34 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":90.82371897193897,"throughput_eps":0,"last_update":"2026-03-20T17:20:29.719776815Z"} +2026/03/20 17:20:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:29.575542792Z"} +2026/03/20 17:20:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":384.8,"last_update":"2026-03-20T17:20:29.575830344Z"} +2026/03/20 17:20:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:29.586369763Z"} +2026/03/20 17:20:34 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":15.34554502709114,"throughput_eps":0,"last_update":"2026-03-20T17:20:29.719729915Z"} +2026/03/20 17:20:34 ───────────────────────────────────────────────── +2026/03/20 17:20:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:34.575734377Z"} +2026/03/20 17:20:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":385.8,"last_update":"2026-03-20T17:20:34.57563159Z"} +2026/03/20 17:20:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:34.584633169Z"} +2026/03/20 17:20:39 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":15.34554502709114,"throughput_eps":0,"last_update":"2026-03-20T17:20:34.718871987Z"} +2026/03/20 17:20:39 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":90.82371897193897,"throughput_eps":0,"last_update":"2026-03-20T17:20:34.718900552Z"} +2026/03/20 17:20:39 ───────────────────────────────────────────────── +2026/03/20 17:20:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":386.8,"last_update":"2026-03-20T17:20:39.575454747Z"} +2026/03/20 17:20:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:39.58563056Z"} +2026/03/20 17:20:44 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":15.34554502709114,"throughput_eps":0,"last_update":"2026-03-20T17:20:39.71882769Z"} +2026/03/20 17:20:44 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":90.82371897193897,"throughput_eps":0,"last_update":"2026-03-20T17:20:39.718944223Z"} +2026/03/20 17:20:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:39.575528529Z"} +2026/03/20 17:20:44 ───────────────────────────────────────────────── +2026/03/20 17:20:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:44.575508203Z"} +2026/03/20 17:20:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":387.8,"last_update":"2026-03-20T17:20:44.575815914Z"} +2026/03/20 17:20:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:44.585672896Z"} +2026/03/20 17:20:49 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":15.34554502709114,"throughput_eps":0,"last_update":"2026-03-20T17:20:44.71878839Z"} +2026/03/20 17:20:49 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":90.82371897193897,"throughput_eps":0,"last_update":"2026-03-20T17:20:44.718780694Z"} +2026/03/20 17:20:49 ───────────────────────────────────────────────── +2026/03/20 17:20:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:49.576030359Z"} +2026/03/20 17:20:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":388.8,"last_update":"2026-03-20T17:20:49.576290368Z"} +2026/03/20 17:20:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":780,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:49.585542869Z"} +2026/03/20 17:20:54 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":15.34554502709114,"throughput_eps":0,"last_update":"2026-03-20T17:20:49.718826177Z"} +2026/03/20 17:20:54 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":90.82371897193897,"throughput_eps":0,"last_update":"2026-03-20T17:20:49.718779768Z"} +2026/03/20 17:20:54 ───────────────────────────────────────────────── +2026/03/20 17:20:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":389.8,"last_update":"2026-03-20T17:20:54.575986478Z"} +2026/03/20 17:20:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":782,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:54.586118257Z"} +2026/03/20 17:20:59 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":15.34554502709114,"throughput_eps":0,"last_update":"2026-03-20T17:20:54.719375765Z"} +2026/03/20 17:20:59 [transform_engine] {"stage_name":"transform_engine","events_processed":65,"events_dropped":0,"avg_latency_ms":95.09567057755119,"throughput_eps":0,"last_update":"2026-03-20T17:20:54.831613558Z"} +2026/03/20 17:20:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:54.575998853Z"} +2026/03/20 17:20:59 ───────────────────────────────────────────────── +2026/03/20 17:21:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:59.586700883Z"} +2026/03/20 17:21:04 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":15.436566821672914,"throughput_eps":0,"last_update":"2026-03-20T17:20:59.719051181Z"} +2026/03/20 17:21:04 [transform_engine] {"stage_name":"transform_engine","events_processed":65,"events_dropped":0,"avg_latency_ms":95.09567057755119,"throughput_eps":0,"last_update":"2026-03-20T17:20:59.719064567Z"} +2026/03/20 17:21:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:59.575886444Z"} +2026/03/20 17:21:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":390.8,"last_update":"2026-03-20T17:20:59.576230575Z"} +2026/03/20 17:21:04 ───────────────────────────────────────────────── +2026/03/20 17:21:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":391.8,"last_update":"2026-03-20T17:21:04.575836114Z"} +2026/03/20 17:21:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:04.585478584Z"} +2026/03/20 17:21:09 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":15.436566821672914,"throughput_eps":0,"last_update":"2026-03-20T17:21:04.719753056Z"} +2026/03/20 17:21:09 [transform_engine] {"stage_name":"transform_engine","events_processed":65,"events_dropped":0,"avg_latency_ms":95.09567057755119,"throughput_eps":0,"last_update":"2026-03-20T17:21:04.718625794Z"} +2026/03/20 17:21:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:04.575504538Z"} +2026/03/20 17:21:09 ───────────────────────────────────────────────── +2026/03/20 17:21:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:09.575927802Z"} +2026/03/20 17:21:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":392.8,"last_update":"2026-03-20T17:21:09.576261272Z"} +2026/03/20 17:21:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:09.585852924Z"} +2026/03/20 17:21:14 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":15.436566821672914,"throughput_eps":0,"last_update":"2026-03-20T17:21:09.719167255Z"} +2026/03/20 17:21:14 [transform_engine] {"stage_name":"transform_engine","events_processed":65,"events_dropped":0,"avg_latency_ms":95.09567057755119,"throughput_eps":0,"last_update":"2026-03-20T17:21:09.719182314Z"} +2026/03/20 17:21:14 ───────────────────────────────────────────────── +2026/03/20 17:21:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:14.575757104Z"} +2026/03/20 17:21:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":393.8,"last_update":"2026-03-20T17:21:14.575998328Z"} +2026/03/20 17:21:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:14.577060476Z"} +2026/03/20 17:21:19 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":15.436566821672914,"throughput_eps":0,"last_update":"2026-03-20T17:21:14.719186262Z"} +2026/03/20 17:21:19 [transform_engine] {"stage_name":"transform_engine","events_processed":65,"events_dropped":0,"avg_latency_ms":95.09567057755119,"throughput_eps":0,"last_update":"2026-03-20T17:21:14.719196843Z"} +2026/03/20 17:21:19 ───────────────────────────────────────────────── +2026/03/20 17:21:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:24 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":15.436566821672914,"throughput_eps":0,"last_update":"2026-03-20T17:21:19.71939483Z"} +2026/03/20 17:21:24 [transform_engine] {"stage_name":"transform_engine","events_processed":65,"events_dropped":0,"avg_latency_ms":95.09567057755119,"throughput_eps":0,"last_update":"2026-03-20T17:21:19.719409098Z"} +2026/03/20 17:21:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:19.575571034Z"} +2026/03/20 17:21:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":394.8,"last_update":"2026-03-20T17:21:19.575467506Z"} +2026/03/20 17:21:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:19.576490158Z"} +2026/03/20 17:21:24 ───────────────────────────────────────────────── +2026/03/20 17:21:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:24.576719931Z"} +2026/03/20 17:21:29 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":15.436566821672914,"throughput_eps":0,"last_update":"2026-03-20T17:21:24.719503202Z"} +2026/03/20 17:21:29 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":88.93729906204095,"throughput_eps":0,"last_update":"2026-03-20T17:21:24.783825469Z"} +2026/03/20 17:21:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:24.575579342Z"} +2026/03/20 17:21:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":395.8,"last_update":"2026-03-20T17:21:24.575693982Z"} +2026/03/20 17:21:29 ───────────────────────────────────────────────── +2026/03/20 17:21:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":396.8,"last_update":"2026-03-20T17:21:29.576028177Z"} +2026/03/20 17:21:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":796,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:29.587427393Z"} +2026/03/20 17:21:34 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":15.290875057338331,"throughput_eps":0,"last_update":"2026-03-20T17:21:29.719858697Z"} +2026/03/20 17:21:34 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":88.93729906204095,"throughput_eps":0,"last_update":"2026-03-20T17:21:29.718675623Z"} +2026/03/20 17:21:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:29.575817186Z"} +2026/03/20 17:21:34 ───────────────────────────────────────────────── +2026/03/20 17:21:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:34.575734403Z"} +2026/03/20 17:21:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":397.8,"last_update":"2026-03-20T17:21:34.575728182Z"} +2026/03/20 17:21:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:34.586533955Z"} +2026/03/20 17:21:39 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":15.290875057338331,"throughput_eps":0,"last_update":"2026-03-20T17:21:34.718803528Z"} +2026/03/20 17:21:39 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":88.93729906204095,"throughput_eps":0,"last_update":"2026-03-20T17:21:34.71874172Z"} +2026/03/20 17:21:39 ───────────────────────────────────────────────── +2026/03/20 17:21:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:39.575666044Z"} +2026/03/20 17:21:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":398.8,"last_update":"2026-03-20T17:21:39.576035604Z"} +2026/03/20 17:21:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":800,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:39.585767944Z"} +2026/03/20 17:21:44 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":15.290875057338331,"throughput_eps":0,"last_update":"2026-03-20T17:21:39.71904777Z"} +2026/03/20 17:21:44 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":88.93729906204095,"throughput_eps":0,"last_update":"2026-03-20T17:21:39.719019075Z"} +2026/03/20 17:21:44 ───────────────────────────────────────────────── +2026/03/20 17:21:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:44.576404844Z"} +2026/03/20 17:21:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":399.8,"last_update":"2026-03-20T17:21:44.576390777Z"} +2026/03/20 17:21:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":802,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:44.585743408Z"} +2026/03/20 17:21:49 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":15.290875057338331,"throughput_eps":0,"last_update":"2026-03-20T17:21:44.71899155Z"} +2026/03/20 17:21:49 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":88.93729906204095,"throughput_eps":0,"last_update":"2026-03-20T17:21:44.719038539Z"} +2026/03/20 17:21:49 ───────────────────────────────────────────────── +2026/03/20 17:21:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:49.575653165Z"} +2026/03/20 17:21:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":400.8,"last_update":"2026-03-20T17:21:49.576091838Z"} +2026/03/20 17:21:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:49.58644064Z"} +2026/03/20 17:21:54 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":15.290875057338331,"throughput_eps":0,"last_update":"2026-03-20T17:21:49.719850123Z"} +2026/03/20 17:21:54 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":88.93729906204095,"throughput_eps":0,"last_update":"2026-03-20T17:21:49.718680905Z"} +2026/03/20 17:21:54 ───────────────────────────────────────────────── +2026/03/20 17:21:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:54.586797868Z"} +2026/03/20 17:21:59 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":15.290875057338331,"throughput_eps":0,"last_update":"2026-03-20T17:21:54.719052245Z"} +2026/03/20 17:21:59 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":83.92129264963276,"throughput_eps":0,"last_update":"2026-03-20T17:21:54.782955328Z"} +2026/03/20 17:21:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:54.575496035Z"} +2026/03/20 17:21:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":401.8,"last_update":"2026-03-20T17:21:54.575835539Z"} +2026/03/20 17:21:59 ───────────────────────────────────────────────── +2026/03/20 17:22:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:59.575878928Z"} +2026/03/20 17:22:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":402.8,"last_update":"2026-03-20T17:21:59.576117741Z"} +2026/03/20 17:22:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:59.58592434Z"} +2026/03/20 17:22:04 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.231165845870665,"throughput_eps":0,"last_update":"2026-03-20T17:21:59.719294508Z"} +2026/03/20 17:22:04 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":83.92129264963276,"throughput_eps":0,"last_update":"2026-03-20T17:21:59.71930634Z"} +2026/03/20 17:22:04 ───────────────────────────────────────────────── +2026/03/20 17:22:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:04.576568765Z"} +2026/03/20 17:22:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":403.8,"last_update":"2026-03-20T17:22:04.575407862Z"} +2026/03/20 17:22:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:04.585331725Z"} +2026/03/20 17:22:09 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.231165845870665,"throughput_eps":0,"last_update":"2026-03-20T17:22:04.719734487Z"} +2026/03/20 17:22:09 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":83.92129264963276,"throughput_eps":0,"last_update":"2026-03-20T17:22:04.719749876Z"} +2026/03/20 17:22:09 ───────────────────────────────────────────────── +2026/03/20 17:22:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:14 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":83.92129264963276,"throughput_eps":0,"last_update":"2026-03-20T17:22:09.719210549Z"} +2026/03/20 17:22:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:09.575566342Z"} +2026/03/20 17:22:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":404.8,"last_update":"2026-03-20T17:22:09.575692441Z"} +2026/03/20 17:22:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":812,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:09.586834938Z"} +2026/03/20 17:22:14 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.231165845870665,"throughput_eps":0,"last_update":"2026-03-20T17:22:09.719198315Z"} +2026/03/20 17:22:14 ───────────────────────────────────────────────── +2026/03/20 17:22:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:19 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.231165845870665,"throughput_eps":0,"last_update":"2026-03-20T17:22:14.719111619Z"} +2026/03/20 17:22:19 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":83.92129264963276,"throughput_eps":0,"last_update":"2026-03-20T17:22:14.719119224Z"} +2026/03/20 17:22:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:14.57553788Z"} +2026/03/20 17:22:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":405.8,"last_update":"2026-03-20T17:22:14.575804205Z"} +2026/03/20 17:22:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:14.585893996Z"} +2026/03/20 17:22:19 ───────────────────────────────────────────────── +2026/03/20 17:22:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:24 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.231165845870665,"throughput_eps":0,"last_update":"2026-03-20T17:22:19.719654831Z"} +2026/03/20 17:22:24 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":83.92129264963276,"throughput_eps":0,"last_update":"2026-03-20T17:22:19.719662385Z"} +2026/03/20 17:22:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:19.575529387Z"} +2026/03/20 17:22:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":406.8,"last_update":"2026-03-20T17:22:19.575868481Z"} +2026/03/20 17:22:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":816,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:19.586444587Z"} +2026/03/20 17:22:24 ───────────────────────────────────────────────── +2026/03/20 17:22:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:24.575815089Z"} +2026/03/20 17:22:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":407.8,"last_update":"2026-03-20T17:22:24.57607373Z"} +2026/03/20 17:22:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":818,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:24.587007918Z"} +2026/03/20 17:22:29 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.231165845870665,"throughput_eps":0,"last_update":"2026-03-20T17:22:24.719419279Z"} +2026/03/20 17:22:29 [transform_engine] {"stage_name":"transform_engine","events_processed":68,"events_dropped":0,"avg_latency_ms":89.76489711970622,"throughput_eps":0,"last_update":"2026-03-20T17:22:24.832576046Z"} +2026/03/20 17:22:29 ───────────────────────────────────────────────── +2026/03/20 17:22:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:29.575508393Z"} +2026/03/20 17:22:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":408.8,"last_update":"2026-03-20T17:22:29.576085379Z"} +2026/03/20 17:22:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":820,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:29.585822936Z"} +2026/03/20 17:22:34 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":14.786109476696533,"throughput_eps":0,"last_update":"2026-03-20T17:22:29.719239519Z"} +2026/03/20 17:22:34 [transform_engine] {"stage_name":"transform_engine","events_processed":68,"events_dropped":0,"avg_latency_ms":89.76489711970622,"throughput_eps":0,"last_update":"2026-03-20T17:22:29.719255369Z"} +2026/03/20 17:22:34 ───────────────────────────────────────────────── +2026/03/20 17:22:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:34.586160762Z"} +2026/03/20 17:22:39 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":14.786109476696533,"throughput_eps":0,"last_update":"2026-03-20T17:22:34.719407315Z"} +2026/03/20 17:22:39 [transform_engine] {"stage_name":"transform_engine","events_processed":68,"events_dropped":0,"avg_latency_ms":89.76489711970622,"throughput_eps":0,"last_update":"2026-03-20T17:22:34.719420199Z"} +2026/03/20 17:22:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:34.575566866Z"} +2026/03/20 17:22:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":409.8,"last_update":"2026-03-20T17:22:34.575671384Z"} +2026/03/20 17:22:39 ───────────────────────────────────────────────── +2026/03/20 17:22:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:39.57574327Z"} +2026/03/20 17:22:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":410.8,"last_update":"2026-03-20T17:22:39.576104256Z"} +2026/03/20 17:22:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:39.586701009Z"} +2026/03/20 17:22:44 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":14.786109476696533,"throughput_eps":0,"last_update":"2026-03-20T17:22:39.718952135Z"} +2026/03/20 17:22:44 [transform_engine] {"stage_name":"transform_engine","events_processed":68,"events_dropped":0,"avg_latency_ms":89.76489711970622,"throughput_eps":0,"last_update":"2026-03-20T17:22:39.718960722Z"} +2026/03/20 17:22:44 ───────────────────────────────────────────────── +2026/03/20 17:22:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":411.8,"last_update":"2026-03-20T17:22:44.576212815Z"} +2026/03/20 17:22:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":826,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:44.585597627Z"} +2026/03/20 17:22:49 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":14.786109476696533,"throughput_eps":0,"last_update":"2026-03-20T17:22:44.719838246Z"} +2026/03/20 17:22:49 [transform_engine] {"stage_name":"transform_engine","events_processed":68,"events_dropped":0,"avg_latency_ms":89.76489711970622,"throughput_eps":0,"last_update":"2026-03-20T17:22:44.71875041Z"} +2026/03/20 17:22:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:44.575753362Z"} +2026/03/20 17:22:49 ───────────────────────────────────────────────── +2026/03/20 17:22:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":412.8,"last_update":"2026-03-20T17:22:49.5760293Z"} +2026/03/20 17:22:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:49.585322339Z"} +2026/03/20 17:22:54 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":14.786109476696533,"throughput_eps":0,"last_update":"2026-03-20T17:22:49.719688789Z"} +2026/03/20 17:22:54 [transform_engine] {"stage_name":"transform_engine","events_processed":68,"events_dropped":0,"avg_latency_ms":89.76489711970622,"throughput_eps":0,"last_update":"2026-03-20T17:22:49.719702134Z"} +2026/03/20 17:22:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:49.575503901Z"} +2026/03/20 17:22:54 ───────────────────────────────────────────────── +2026/03/20 17:22:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:54.575675814Z"} +2026/03/20 17:22:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":413.8,"last_update":"2026-03-20T17:22:54.575744263Z"} +2026/03/20 17:22:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":830,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:54.585666621Z"} +2026/03/20 17:22:59 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":14.786109476696533,"throughput_eps":0,"last_update":"2026-03-20T17:22:54.718956478Z"} +2026/03/20 17:22:59 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":84.95861309576497,"throughput_eps":0,"last_update":"2026-03-20T17:22:54.784706808Z"} +2026/03/20 17:22:59 ───────────────────────────────────────────────── +2026/03/20 17:23:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:59.575758872Z"} +2026/03/20 17:23:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":414.8,"last_update":"2026-03-20T17:22:59.576124236Z"} +2026/03/20 17:23:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":832,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:59.586559358Z"} +2026/03/20 17:23:04 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":13.660901381357228,"throughput_eps":0,"last_update":"2026-03-20T17:22:59.718779035Z"} +2026/03/20 17:23:04 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":84.95861309576497,"throughput_eps":0,"last_update":"2026-03-20T17:22:59.718765159Z"} +2026/03/20 17:23:04 ───────────────────────────────────────────────── +2026/03/20 17:23:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:04.575865701Z"} +2026/03/20 17:23:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":415.8,"last_update":"2026-03-20T17:23:04.576473967Z"} +2026/03/20 17:23:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:04.587073103Z"} +2026/03/20 17:23:09 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":13.660901381357228,"throughput_eps":0,"last_update":"2026-03-20T17:23:04.719479007Z"} +2026/03/20 17:23:09 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":84.95861309576497,"throughput_eps":0,"last_update":"2026-03-20T17:23:04.719491611Z"} +2026/03/20 17:23:09 ───────────────────────────────────────────────── +2026/03/20 17:23:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:09.575728036Z"} +2026/03/20 17:23:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":416.8,"last_update":"2026-03-20T17:23:09.576281077Z"} +2026/03/20 17:23:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:09.585116093Z"} +2026/03/20 17:23:14 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":13.660901381357228,"throughput_eps":0,"last_update":"2026-03-20T17:23:09.719441274Z"} +2026/03/20 17:23:14 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":84.95861309576497,"throughput_eps":0,"last_update":"2026-03-20T17:23:09.719449199Z"} +2026/03/20 17:23:14 ───────────────────────────────────────────────── +2026/03/20 17:23:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:14.575765071Z"} +2026/03/20 17:23:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":417.8,"last_update":"2026-03-20T17:23:14.576061064Z"} +2026/03/20 17:23:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:14.586227331Z"} +2026/03/20 17:23:19 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":13.660901381357228,"throughput_eps":0,"last_update":"2026-03-20T17:23:14.719472412Z"} +2026/03/20 17:23:19 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":84.95861309576497,"throughput_eps":0,"last_update":"2026-03-20T17:23:14.719484234Z"} +2026/03/20 17:23:19 ───────────────────────────────────────────────── +2026/03/20 17:23:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:19.575937638Z"} +2026/03/20 17:23:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":418.8,"last_update":"2026-03-20T17:23:19.576270169Z"} +2026/03/20 17:23:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:19.586425658Z"} +2026/03/20 17:23:24 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":13.660901381357228,"throughput_eps":0,"last_update":"2026-03-20T17:23:19.719843328Z"} +2026/03/20 17:23:24 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":84.95861309576497,"throughput_eps":0,"last_update":"2026-03-20T17:23:19.718661022Z"} +2026/03/20 17:23:24 ───────────────────────────────────────────────── +2026/03/20 17:23:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:29 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":13.660901381357228,"throughput_eps":0,"last_update":"2026-03-20T17:23:24.719656769Z"} +2026/03/20 17:23:29 [transform_engine] {"stage_name":"transform_engine","events_processed":70,"events_dropped":0,"avg_latency_ms":80.32152187661198,"throughput_eps":0,"last_update":"2026-03-20T17:23:24.781440716Z"} +2026/03/20 17:23:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:24.575513905Z"} +2026/03/20 17:23:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":419.8,"last_update":"2026-03-20T17:23:24.575919225Z"} +2026/03/20 17:23:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:24.586379765Z"} +2026/03/20 17:23:29 ───────────────────────────────────────────────── +2026/03/20 17:23:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:29.575962446Z"} +2026/03/20 17:23:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":420.8,"last_update":"2026-03-20T17:23:29.576275792Z"} +2026/03/20 17:23:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:29.585845831Z"} +2026/03/20 17:23:34 [detection_layer] {"stage_name":"detection_layer","events_processed":70,"events_dropped":0,"avg_latency_ms":14.036212705085784,"throughput_eps":0,"last_update":"2026-03-20T17:23:29.719143455Z"} +2026/03/20 17:23:34 [transform_engine] {"stage_name":"transform_engine","events_processed":70,"events_dropped":0,"avg_latency_ms":80.32152187661198,"throughput_eps":0,"last_update":"2026-03-20T17:23:29.719149927Z"} +2026/03/20 17:23:34 ───────────────────────────────────────────────── +2026/03/20 17:23:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:34.584662923Z"} +2026/03/20 17:23:39 [detection_layer] {"stage_name":"detection_layer","events_processed":70,"events_dropped":0,"avg_latency_ms":14.036212705085784,"throughput_eps":0,"last_update":"2026-03-20T17:23:34.719044369Z"} +2026/03/20 17:23:39 [transform_engine] {"stage_name":"transform_engine","events_processed":70,"events_dropped":0,"avg_latency_ms":80.32152187661198,"throughput_eps":0,"last_update":"2026-03-20T17:23:34.719056261Z"} +2026/03/20 17:23:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:34.575997281Z"} +2026/03/20 17:23:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":421.8,"last_update":"2026-03-20T17:23:34.576378115Z"} +2026/03/20 17:23:39 ───────────────────────────────────────────────── +2026/03/20 17:23:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:44 [transform_engine] {"stage_name":"transform_engine","events_processed":70,"events_dropped":0,"avg_latency_ms":80.32152187661198,"throughput_eps":0,"last_update":"2026-03-20T17:23:39.718706077Z"} +2026/03/20 17:23:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:39.575737056Z"} +2026/03/20 17:23:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":422.8,"last_update":"2026-03-20T17:23:39.576043499Z"} +2026/03/20 17:23:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":848,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:39.58757589Z"} +2026/03/20 17:23:44 [detection_layer] {"stage_name":"detection_layer","events_processed":70,"events_dropped":0,"avg_latency_ms":14.036212705085784,"throughput_eps":0,"last_update":"2026-03-20T17:23:39.719800838Z"} +2026/03/20 17:23:44 ───────────────────────────────────────────────── +2026/03/20 17:23:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":423.8,"last_update":"2026-03-20T17:23:44.576050334Z"} +2026/03/20 17:23:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:44.586367698Z"} +2026/03/20 17:23:49 [detection_layer] {"stage_name":"detection_layer","events_processed":70,"events_dropped":0,"avg_latency_ms":14.036212705085784,"throughput_eps":0,"last_update":"2026-03-20T17:23:44.719596956Z"} +2026/03/20 17:23:49 [transform_engine] {"stage_name":"transform_engine","events_processed":70,"events_dropped":0,"avg_latency_ms":80.32152187661198,"throughput_eps":0,"last_update":"2026-03-20T17:23:44.719604229Z"} +2026/03/20 17:23:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:44.575751205Z"} +2026/03/20 17:23:49 ───────────────────────────────────────────────── +2026/03/20 17:23:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:49.575770233Z"} +2026/03/20 17:23:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":424.8,"last_update":"2026-03-20T17:23:49.576203125Z"} +2026/03/20 17:23:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:49.585390712Z"} +2026/03/20 17:23:54 [detection_layer] {"stage_name":"detection_layer","events_processed":70,"events_dropped":0,"avg_latency_ms":14.036212705085784,"throughput_eps":0,"last_update":"2026-03-20T17:23:49.719681819Z"} +2026/03/20 17:23:54 [transform_engine] {"stage_name":"transform_engine","events_processed":70,"events_dropped":0,"avg_latency_ms":80.32152187661198,"throughput_eps":0,"last_update":"2026-03-20T17:23:49.719688082Z"} +2026/03/20 17:23:54 ───────────────────────────────────────────────── +2026/03/20 17:23:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:54.585386885Z"} +2026/03/20 17:23:59 [detection_layer] {"stage_name":"detection_layer","events_processed":70,"events_dropped":0,"avg_latency_ms":14.036212705085784,"throughput_eps":0,"last_update":"2026-03-20T17:23:54.719583592Z"} +2026/03/20 17:23:59 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":77.28137710128959,"throughput_eps":0,"last_update":"2026-03-20T17:23:54.784716223Z"} +2026/03/20 17:23:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:54.576014063Z"} +2026/03/20 17:23:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":425.8,"last_update":"2026-03-20T17:23:54.576319664Z"} +2026/03/20 17:23:59 ───────────────────────────────────────────────── +2026/03/20 17:24:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:59.575812449Z"} +2026/03/20 17:24:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":426.8,"last_update":"2026-03-20T17:23:59.576211347Z"} +2026/03/20 17:24:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:59.585618937Z"} +2026/03/20 17:24:04 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.269265564068627,"throughput_eps":0,"last_update":"2026-03-20T17:23:59.718780024Z"} +2026/03/20 17:24:04 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":77.28137710128959,"throughput_eps":0,"last_update":"2026-03-20T17:23:59.718710682Z"} +2026/03/20 17:24:04 ───────────────────────────────────────────────── +2026/03/20 17:24:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:04.57598947Z"} +2026/03/20 17:24:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":427.8,"last_update":"2026-03-20T17:24:04.576498968Z"} +2026/03/20 17:24:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:04.584506416Z"} +2026/03/20 17:24:09 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.269265564068627,"throughput_eps":0,"last_update":"2026-03-20T17:24:04.719840776Z"} +2026/03/20 17:24:09 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":77.28137710128959,"throughput_eps":0,"last_update":"2026-03-20T17:24:04.71867551Z"} +2026/03/20 17:24:09 ───────────────────────────────────────────────── +2026/03/20 17:24:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:09.575548268Z"} +2026/03/20 17:24:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":428.8,"last_update":"2026-03-20T17:24:09.575529293Z"} +2026/03/20 17:24:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":860,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:09.585518811Z"} +2026/03/20 17:24:14 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.269265564068627,"throughput_eps":0,"last_update":"2026-03-20T17:24:09.71882852Z"} +2026/03/20 17:24:14 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":77.28137710128959,"throughput_eps":0,"last_update":"2026-03-20T17:24:09.718737708Z"} +2026/03/20 17:24:14 ───────────────────────────────────────────────── +2026/03/20 17:24:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":429.8,"last_update":"2026-03-20T17:24:14.575676692Z"} +2026/03/20 17:24:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":862,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:14.585948388Z"} +2026/03/20 17:24:19 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.269265564068627,"throughput_eps":0,"last_update":"2026-03-20T17:24:14.719258939Z"} +2026/03/20 17:24:19 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":77.28137710128959,"throughput_eps":0,"last_update":"2026-03-20T17:24:14.719265642Z"} +2026/03/20 17:24:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:14.575521186Z"} +2026/03/20 17:24:19 ───────────────────────────────────────────────── +2026/03/20 17:24:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:24 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.269265564068627,"throughput_eps":0,"last_update":"2026-03-20T17:24:19.719533143Z"} +2026/03/20 17:24:24 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":77.28137710128959,"throughput_eps":0,"last_update":"2026-03-20T17:24:19.719545416Z"} +2026/03/20 17:24:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:19.575851476Z"} +2026/03/20 17:24:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":430.8,"last_update":"2026-03-20T17:24:19.576312293Z"} +2026/03/20 17:24:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:19.586209348Z"} +2026/03/20 17:24:24 ───────────────────────────────────────────────── +2026/03/20 17:24:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":431.8,"last_update":"2026-03-20T17:24:24.576374739Z"} +2026/03/20 17:24:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:24.586040966Z"} +2026/03/20 17:24:29 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.269265564068627,"throughput_eps":0,"last_update":"2026-03-20T17:24:24.719239492Z"} +2026/03/20 17:24:29 [transform_engine] {"stage_name":"transform_engine","events_processed":72,"events_dropped":0,"avg_latency_ms":74.61178508103168,"throughput_eps":0,"last_update":"2026-03-20T17:24:24.783188739Z"} +2026/03/20 17:24:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:24.576053387Z"} +2026/03/20 17:24:29 ───────────────────────────────────────────────── +2026/03/20 17:24:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":868,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:29.584794973Z"} +2026/03/20 17:24:34 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":13.326357251254903,"throughput_eps":0,"last_update":"2026-03-20T17:24:29.719065167Z"} +2026/03/20 17:24:34 [transform_engine] {"stage_name":"transform_engine","events_processed":72,"events_dropped":0,"avg_latency_ms":74.61178508103168,"throughput_eps":0,"last_update":"2026-03-20T17:24:29.719172742Z"} +2026/03/20 17:24:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:29.575971217Z"} +2026/03/20 17:24:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":432.8,"last_update":"2026-03-20T17:24:29.576319639Z"} +2026/03/20 17:24:34 ───────────────────────────────────────────────── +2026/03/20 17:24:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:39 [transform_engine] {"stage_name":"transform_engine","events_processed":72,"events_dropped":0,"avg_latency_ms":74.61178508103168,"throughput_eps":0,"last_update":"2026-03-20T17:24:34.718990012Z"} +2026/03/20 17:24:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:34.575966136Z"} +2026/03/20 17:24:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":433.8,"last_update":"2026-03-20T17:24:34.576311332Z"} +2026/03/20 17:24:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:34.585693021Z"} +2026/03/20 17:24:39 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":13.326357251254903,"throughput_eps":0,"last_update":"2026-03-20T17:24:34.718883439Z"} +2026/03/20 17:24:39 ───────────────────────────────────────────────── +2026/03/20 17:24:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:44 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":13.326357251254903,"throughput_eps":0,"last_update":"2026-03-20T17:24:39.719108027Z"} +2026/03/20 17:24:44 [transform_engine] {"stage_name":"transform_engine","events_processed":72,"events_dropped":0,"avg_latency_ms":74.61178508103168,"throughput_eps":0,"last_update":"2026-03-20T17:24:39.719001645Z"} +2026/03/20 17:24:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:39.575586255Z"} +2026/03/20 17:24:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":434.8,"last_update":"2026-03-20T17:24:39.575905382Z"} +2026/03/20 17:24:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:39.585666824Z"} +2026/03/20 17:24:44 ───────────────────────────────────────────────── +2026/03/20 17:24:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:44.576149035Z"} +2026/03/20 17:24:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":435.8,"last_update":"2026-03-20T17:24:44.576752574Z"} +2026/03/20 17:24:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:44.576257622Z"} +2026/03/20 17:24:49 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":13.326357251254903,"throughput_eps":0,"last_update":"2026-03-20T17:24:44.719116773Z"} +2026/03/20 17:24:49 [transform_engine] {"stage_name":"transform_engine","events_processed":72,"events_dropped":0,"avg_latency_ms":74.61178508103168,"throughput_eps":0,"last_update":"2026-03-20T17:24:44.719093069Z"} +2026/03/20 17:24:49 ───────────────────────────────────────────────── +2026/03/20 17:24:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:54 [transform_engine] {"stage_name":"transform_engine","events_processed":72,"events_dropped":0,"avg_latency_ms":74.61178508103168,"throughput_eps":0,"last_update":"2026-03-20T17:24:49.718787847Z"} +2026/03/20 17:24:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:49.575652971Z"} +2026/03/20 17:24:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":436.8,"last_update":"2026-03-20T17:24:49.575598919Z"} +2026/03/20 17:24:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":876,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:49.586542103Z"} +2026/03/20 17:24:54 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":13.326357251254903,"throughput_eps":0,"last_update":"2026-03-20T17:24:49.718842502Z"} +2026/03/20 17:24:54 ───────────────────────────────────────────────── +2026/03/20 17:24:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":437.8,"last_update":"2026-03-20T17:24:54.576056895Z"} +2026/03/20 17:24:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:54.587592538Z"} +2026/03/20 17:24:59 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":13.326357251254903,"throughput_eps":0,"last_update":"2026-03-20T17:24:54.71880264Z"} +2026/03/20 17:24:59 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":82.03675446482535,"throughput_eps":0,"last_update":"2026-03-20T17:24:54.830512341Z"} +2026/03/20 17:24:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:54.575662385Z"} +2026/03/20 17:24:59 ───────────────────────────────────────────────── +2026/03/20 17:25:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:59.575497825Z"} +2026/03/20 17:25:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":438.8,"last_update":"2026-03-20T17:24:59.575722762Z"} +2026/03/20 17:25:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:59.586027524Z"} +2026/03/20 17:25:04 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.181882001003924,"throughput_eps":0,"last_update":"2026-03-20T17:24:59.719440316Z"} +2026/03/20 17:25:04 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":82.03675446482535,"throughput_eps":0,"last_update":"2026-03-20T17:24:59.719479691Z"} +2026/03/20 17:25:04 ───────────────────────────────────────────────── +2026/03/20 17:25:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:04.575922921Z"} +2026/03/20 17:25:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":439.8,"last_update":"2026-03-20T17:25:04.576543912Z"} +2026/03/20 17:25:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:04.585042989Z"} +2026/03/20 17:25:09 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.181882001003924,"throughput_eps":0,"last_update":"2026-03-20T17:25:04.719404103Z"} +2026/03/20 17:25:09 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":82.03675446482535,"throughput_eps":0,"last_update":"2026-03-20T17:25:04.719436093Z"} +2026/03/20 17:25:09 ───────────────────────────────────────────────── +2026/03/20 17:25:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:09.576013895Z"} +2026/03/20 17:25:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":440.8,"last_update":"2026-03-20T17:25:09.576414248Z"} +2026/03/20 17:25:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:09.586364988Z"} +2026/03/20 17:25:14 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.181882001003924,"throughput_eps":0,"last_update":"2026-03-20T17:25:09.719665371Z"} +2026/03/20 17:25:14 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":82.03675446482535,"throughput_eps":0,"last_update":"2026-03-20T17:25:09.71968105Z"} +2026/03/20 17:25:14 ───────────────────────────────────────────────── +2026/03/20 17:25:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:14.575980952Z"} +2026/03/20 17:25:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":441.8,"last_update":"2026-03-20T17:25:14.576735889Z"} +2026/03/20 17:25:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":886,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:14.586013931Z"} +2026/03/20 17:25:19 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.181882001003924,"throughput_eps":0,"last_update":"2026-03-20T17:25:14.719456201Z"} +2026/03/20 17:25:19 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":82.03675446482535,"throughput_eps":0,"last_update":"2026-03-20T17:25:14.719412989Z"} +2026/03/20 17:25:19 ───────────────────────────────────────────────── +2026/03/20 17:25:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:24 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.181882001003924,"throughput_eps":0,"last_update":"2026-03-20T17:25:19.719833649Z"} +2026/03/20 17:25:24 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":82.03675446482535,"throughput_eps":0,"last_update":"2026-03-20T17:25:19.718674453Z"} +2026/03/20 17:25:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:19.575971356Z"} +2026/03/20 17:25:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":442.8,"last_update":"2026-03-20T17:25:19.576224988Z"} +2026/03/20 17:25:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:19.587418898Z"} +2026/03/20 17:25:24 ───────────────────────────────────────────────── +2026/03/20 17:25:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:24.575982174Z"} +2026/03/20 17:25:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":443.8,"last_update":"2026-03-20T17:25:24.576340416Z"} +2026/03/20 17:25:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:24.586092673Z"} +2026/03/20 17:25:29 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.181882001003924,"throughput_eps":0,"last_update":"2026-03-20T17:25:24.719229495Z"} +2026/03/20 17:25:29 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":82.03675446482535,"throughput_eps":0,"last_update":"2026-03-20T17:25:24.719283226Z"} +2026/03/20 17:25:29 ───────────────────────────────────────────────── +2026/03/20 17:25:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":892,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:29.58608652Z"} +2026/03/20 17:25:34 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":14.62459240080314,"throughput_eps":0,"last_update":"2026-03-20T17:25:29.719367253Z"} +2026/03/20 17:25:34 [transform_engine] {"stage_name":"transform_engine","events_processed":74,"events_dropped":0,"avg_latency_ms":88.08472097186028,"throughput_eps":0,"last_update":"2026-03-20T17:25:29.719380538Z"} +2026/03/20 17:25:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:29.57553492Z"} +2026/03/20 17:25:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":444.8,"last_update":"2026-03-20T17:25:29.575458715Z"} +2026/03/20 17:25:34 ───────────────────────────────────────────────── +2026/03/20 17:25:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:34.586604728Z"} +2026/03/20 17:25:39 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":14.62459240080314,"throughput_eps":0,"last_update":"2026-03-20T17:25:34.718834347Z"} +2026/03/20 17:25:39 [transform_engine] {"stage_name":"transform_engine","events_processed":74,"events_dropped":0,"avg_latency_ms":88.08472097186028,"throughput_eps":0,"last_update":"2026-03-20T17:25:34.718867049Z"} +2026/03/20 17:25:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:34.576056534Z"} +2026/03/20 17:25:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":445.8,"last_update":"2026-03-20T17:25:34.576212381Z"} +2026/03/20 17:25:39 ───────────────────────────────────────────────── +2026/03/20 17:25:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":896,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:39.587181869Z"} +2026/03/20 17:25:44 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":14.62459240080314,"throughput_eps":0,"last_update":"2026-03-20T17:25:39.719642304Z"} +2026/03/20 17:25:44 [transform_engine] {"stage_name":"transform_engine","events_processed":74,"events_dropped":0,"avg_latency_ms":88.08472097186028,"throughput_eps":0,"last_update":"2026-03-20T17:25:39.719620311Z"} +2026/03/20 17:25:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:39.575711177Z"} +2026/03/20 17:25:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":446.8,"last_update":"2026-03-20T17:25:39.57611727Z"} +2026/03/20 17:25:44 ───────────────────────────────────────────────── +2026/03/20 17:25:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:49 [transform_engine] {"stage_name":"transform_engine","events_processed":74,"events_dropped":0,"avg_latency_ms":88.08472097186028,"throughput_eps":0,"last_update":"2026-03-20T17:25:44.719480085Z"} +2026/03/20 17:25:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:44.575871254Z"} +2026/03/20 17:25:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":447.8,"last_update":"2026-03-20T17:25:44.576082637Z"} +2026/03/20 17:25:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":898,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:44.588268944Z"} +2026/03/20 17:25:49 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":14.62459240080314,"throughput_eps":0,"last_update":"2026-03-20T17:25:44.7195253Z"} +2026/03/20 17:25:49 ───────────────────────────────────────────────── +2026/03/20 17:25:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:49.575955554Z"} +2026/03/20 17:25:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":448.8,"last_update":"2026-03-20T17:25:49.57633201Z"} +2026/03/20 17:25:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":900,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:49.585704941Z"} +2026/03/20 17:25:54 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":14.62459240080314,"throughput_eps":0,"last_update":"2026-03-20T17:25:49.719074288Z"} +2026/03/20 17:25:54 [transform_engine] {"stage_name":"transform_engine","events_processed":74,"events_dropped":0,"avg_latency_ms":88.08472097186028,"throughput_eps":0,"last_update":"2026-03-20T17:25:49.719022039Z"} +2026/03/20 17:25:54 ───────────────────────────────────────────────── +2026/03/20 17:25:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:59 [transform_engine] {"stage_name":"transform_engine","events_processed":75,"events_dropped":0,"avg_latency_ms":93.18217817748823,"throughput_eps":0,"last_update":"2026-03-20T17:25:54.832909683Z"} +2026/03/20 17:25:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:54.575729573Z"} +2026/03/20 17:25:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":449.8,"last_update":"2026-03-20T17:25:54.576281083Z"} +2026/03/20 17:25:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:54.585097534Z"} +2026/03/20 17:25:59 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":14.62459240080314,"throughput_eps":0,"last_update":"2026-03-20T17:25:54.719435392Z"} +2026/03/20 17:25:59 ───────────────────────────────────────────────── +2026/03/20 17:26:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:04 [transform_engine] {"stage_name":"transform_engine","events_processed":75,"events_dropped":0,"avg_latency_ms":93.18217817748823,"throughput_eps":0,"last_update":"2026-03-20T17:25:59.718635117Z"} +2026/03/20 17:26:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:59.576250877Z"} +2026/03/20 17:26:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":450.8,"last_update":"2026-03-20T17:25:59.576237853Z"} +2026/03/20 17:26:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:59.585402278Z"} +2026/03/20 17:26:04 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":15.418985720642512,"throughput_eps":0,"last_update":"2026-03-20T17:25:59.719908733Z"} +2026/03/20 17:26:04 ───────────────────────────────────────────────── +2026/03/20 17:26:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":451.8,"last_update":"2026-03-20T17:26:04.576066697Z"} +2026/03/20 17:26:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:04.577091389Z"} +2026/03/20 17:26:09 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":15.418985720642512,"throughput_eps":0,"last_update":"2026-03-20T17:26:04.719164612Z"} +2026/03/20 17:26:09 [transform_engine] {"stage_name":"transform_engine","events_processed":75,"events_dropped":0,"avg_latency_ms":93.18217817748823,"throughput_eps":0,"last_update":"2026-03-20T17:26:04.719275833Z"} +2026/03/20 17:26:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:09.575567791Z"} +2026/03/20 17:26:09 ───────────────────────────────────────────────── +2026/03/20 17:26:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:09.575567791Z"} +2026/03/20 17:26:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":452.8,"last_update":"2026-03-20T17:26:09.576023769Z"} +2026/03/20 17:26:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":908,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:09.586090395Z"} +2026/03/20 17:26:14 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":15.418985720642512,"throughput_eps":0,"last_update":"2026-03-20T17:26:09.719457881Z"} +2026/03/20 17:26:14 [transform_engine] {"stage_name":"transform_engine","events_processed":75,"events_dropped":0,"avg_latency_ms":93.18217817748823,"throughput_eps":0,"last_update":"2026-03-20T17:26:09.719367339Z"} +2026/03/20 17:26:14 ───────────────────────────────────────────────── +2026/03/20 17:26:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:19 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":15.418985720642512,"throughput_eps":0,"last_update":"2026-03-20T17:26:14.719826651Z"} +2026/03/20 17:26:19 [transform_engine] {"stage_name":"transform_engine","events_processed":75,"events_dropped":0,"avg_latency_ms":93.18217817748823,"throughput_eps":0,"last_update":"2026-03-20T17:26:14.719724276Z"} +2026/03/20 17:26:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:14.57599775Z"} +2026/03/20 17:26:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":453.8,"last_update":"2026-03-20T17:26:14.576691831Z"} +2026/03/20 17:26:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:14.585343754Z"} +2026/03/20 17:26:19 ───────────────────────────────────────────────── +2026/03/20 17:26:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:24 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":15.418985720642512,"throughput_eps":0,"last_update":"2026-03-20T17:26:19.719165248Z"} +2026/03/20 17:26:24 [transform_engine] {"stage_name":"transform_engine","events_processed":75,"events_dropped":0,"avg_latency_ms":93.18217817748823,"throughput_eps":0,"last_update":"2026-03-20T17:26:19.719189594Z"} +2026/03/20 17:26:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:19.575811346Z"} +2026/03/20 17:26:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":454.8,"last_update":"2026-03-20T17:26:19.576121296Z"} +2026/03/20 17:26:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":912,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:19.587764027Z"} +2026/03/20 17:26:24 ───────────────────────────────────────────────── +2026/03/20 17:26:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:24.575517603Z"} +2026/03/20 17:26:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":455.8,"last_update":"2026-03-20T17:26:24.57559507Z"} +2026/03/20 17:26:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:24.586445394Z"} +2026/03/20 17:26:29 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":15.418985720642512,"throughput_eps":0,"last_update":"2026-03-20T17:26:24.719918396Z"} +2026/03/20 17:26:29 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":87.31412974199058,"throughput_eps":0,"last_update":"2026-03-20T17:26:24.782498368Z"} +2026/03/20 17:26:29 ───────────────────────────────────────────────── +2026/03/20 17:26:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:34 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.746548176514011,"throughput_eps":0,"last_update":"2026-03-20T17:26:29.719384282Z"} +2026/03/20 17:26:34 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":87.31412974199058,"throughput_eps":0,"last_update":"2026-03-20T17:26:29.719406265Z"} +2026/03/20 17:26:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:29.575816741Z"} +2026/03/20 17:26:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":456.8,"last_update":"2026-03-20T17:26:29.576254795Z"} +2026/03/20 17:26:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:29.585119756Z"} +2026/03/20 17:26:34 ───────────────────────────────────────────────── +2026/03/20 17:26:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:39 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.746548176514011,"throughput_eps":0,"last_update":"2026-03-20T17:26:34.719702195Z"} +2026/03/20 17:26:39 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":87.31412974199058,"throughput_eps":0,"last_update":"2026-03-20T17:26:34.71967888Z"} +2026/03/20 17:26:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:34.57595218Z"} +2026/03/20 17:26:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":457.8,"last_update":"2026-03-20T17:26:34.576201324Z"} +2026/03/20 17:26:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":918,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:34.586330436Z"} +2026/03/20 17:26:39 ───────────────────────────────────────────────── +2026/03/20 17:26:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":458.8,"last_update":"2026-03-20T17:26:39.575703618Z"} +2026/03/20 17:26:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":920,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:39.585950926Z"} +2026/03/20 17:26:44 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.746548176514011,"throughput_eps":0,"last_update":"2026-03-20T17:26:39.719400528Z"} +2026/03/20 17:26:44 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":87.31412974199058,"throughput_eps":0,"last_update":"2026-03-20T17:26:39.719445173Z"} +2026/03/20 17:26:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:39.575771628Z"} +2026/03/20 17:26:44 ───────────────────────────────────────────────── +2026/03/20 17:26:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:49 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.746548176514011,"throughput_eps":0,"last_update":"2026-03-20T17:26:44.718791719Z"} +2026/03/20 17:26:49 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":87.31412974199058,"throughput_eps":0,"last_update":"2026-03-20T17:26:44.718753657Z"} +2026/03/20 17:26:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:44.576109648Z"} +2026/03/20 17:26:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":459.8,"last_update":"2026-03-20T17:26:44.5767512Z"} +2026/03/20 17:26:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:44.586522181Z"} +2026/03/20 17:26:49 ───────────────────────────────────────────────── +2026/03/20 17:26:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:54 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.746548176514011,"throughput_eps":0,"last_update":"2026-03-20T17:26:49.719403335Z"} +2026/03/20 17:26:54 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":87.31412974199058,"throughput_eps":0,"last_update":"2026-03-20T17:26:49.719535166Z"} +2026/03/20 17:26:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:49.575518826Z"} +2026/03/20 17:26:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":460.8,"last_update":"2026-03-20T17:26:49.575816924Z"} +2026/03/20 17:26:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:49.586092047Z"} +2026/03/20 17:26:54 ───────────────────────────────────────────────── +2026/03/20 17:26:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:59 [transform_engine] {"stage_name":"transform_engine","events_processed":77,"events_dropped":0,"avg_latency_ms":82.51719419359246,"throughput_eps":0,"last_update":"2026-03-20T17:26:54.781974315Z"} +2026/03/20 17:26:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:54.575754385Z"} +2026/03/20 17:26:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":461.8,"last_update":"2026-03-20T17:26:54.576159507Z"} +2026/03/20 17:26:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:54.58539516Z"} +2026/03/20 17:26:59 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.746548176514011,"throughput_eps":0,"last_update":"2026-03-20T17:26:54.720557379Z"} +2026/03/20 17:26:59 ───────────────────────────────────────────────── +2026/03/20 17:27:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":462.8,"last_update":"2026-03-20T17:26:59.575461003Z"} +2026/03/20 17:27:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:59.585919397Z"} +2026/03/20 17:27:04 [detection_layer] {"stage_name":"detection_layer","events_processed":77,"events_dropped":0,"avg_latency_ms":16.03436954121121,"throughput_eps":0,"last_update":"2026-03-20T17:26:59.719146272Z"} +2026/03/20 17:27:04 [transform_engine] {"stage_name":"transform_engine","events_processed":77,"events_dropped":0,"avg_latency_ms":82.51719419359246,"throughput_eps":0,"last_update":"2026-03-20T17:26:59.719115874Z"} +2026/03/20 17:27:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:59.575532899Z"} +2026/03/20 17:27:04 ───────────────────────────────────────────────── +2026/03/20 17:27:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":930,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:04.585144352Z"} +2026/03/20 17:27:09 [detection_layer] {"stage_name":"detection_layer","events_processed":77,"events_dropped":0,"avg_latency_ms":16.03436954121121,"throughput_eps":0,"last_update":"2026-03-20T17:27:04.719594631Z"} +2026/03/20 17:27:09 [transform_engine] {"stage_name":"transform_engine","events_processed":77,"events_dropped":0,"avg_latency_ms":82.51719419359246,"throughput_eps":0,"last_update":"2026-03-20T17:27:04.719632023Z"} +2026/03/20 17:27:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:04.575507783Z"} +2026/03/20 17:27:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":463.8,"last_update":"2026-03-20T17:27:04.575854212Z"} +2026/03/20 17:27:09 ───────────────────────────────────────────────── +2026/03/20 17:27:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":464.8,"last_update":"2026-03-20T17:27:09.575736175Z"} +2026/03/20 17:27:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:09.585256674Z"} +2026/03/20 17:27:14 [detection_layer] {"stage_name":"detection_layer","events_processed":77,"events_dropped":0,"avg_latency_ms":16.03436954121121,"throughput_eps":0,"last_update":"2026-03-20T17:27:09.719558485Z"} +2026/03/20 17:27:14 [transform_engine] {"stage_name":"transform_engine","events_processed":77,"events_dropped":0,"avg_latency_ms":82.51719419359246,"throughput_eps":0,"last_update":"2026-03-20T17:27:09.719611657Z"} +2026/03/20 17:27:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:09.575519863Z"} +2026/03/20 17:27:14 ───────────────────────────────────────────────── +2026/03/20 17:27:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:19 [transform_engine] {"stage_name":"transform_engine","events_processed":77,"events_dropped":0,"avg_latency_ms":82.51719419359246,"throughput_eps":0,"last_update":"2026-03-20T17:27:14.719431088Z"} +2026/03/20 17:27:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:14.575821719Z"} +2026/03/20 17:27:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":465.8,"last_update":"2026-03-20T17:27:14.576203527Z"} +2026/03/20 17:27:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:14.586037745Z"} +2026/03/20 17:27:19 [detection_layer] {"stage_name":"detection_layer","events_processed":77,"events_dropped":0,"avg_latency_ms":16.03436954121121,"throughput_eps":0,"last_update":"2026-03-20T17:27:14.719401532Z"} +2026/03/20 17:27:19 ───────────────────────────────────────────────── +2026/03/20 17:27:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:24 [detection_layer] {"stage_name":"detection_layer","events_processed":77,"events_dropped":0,"avg_latency_ms":16.03436954121121,"throughput_eps":0,"last_update":"2026-03-20T17:27:19.719395786Z"} +2026/03/20 17:27:24 [transform_engine] {"stage_name":"transform_engine","events_processed":77,"events_dropped":0,"avg_latency_ms":82.51719419359246,"throughput_eps":0,"last_update":"2026-03-20T17:27:19.719416605Z"} +2026/03/20 17:27:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:19.575526907Z"} +2026/03/20 17:27:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":466.8,"last_update":"2026-03-20T17:27:19.575800609Z"} +2026/03/20 17:27:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:19.586117348Z"} +2026/03/20 17:27:24 ───────────────────────────────────────────────── +2026/03/20 17:27:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:24.575501923Z"} +2026/03/20 17:27:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":467.8,"last_update":"2026-03-20T17:27:24.575729025Z"} +2026/03/20 17:27:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:24.586522133Z"} +2026/03/20 17:27:29 [detection_layer] {"stage_name":"detection_layer","events_processed":77,"events_dropped":0,"avg_latency_ms":16.03436954121121,"throughput_eps":0,"last_update":"2026-03-20T17:27:24.719823699Z"} +2026/03/20 17:27:29 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":76.00469155487397,"throughput_eps":0,"last_update":"2026-03-20T17:27:24.768664085Z"} +2026/03/20 17:27:29 ───────────────────────────────────────────────── +2026/03/20 17:27:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:29.576429092Z"} +2026/03/20 17:27:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":468.8,"last_update":"2026-03-20T17:27:29.576515276Z"} +2026/03/20 17:27:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":940,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:29.585403973Z"} +2026/03/20 17:27:34 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":16.54737963296897,"throughput_eps":0,"last_update":"2026-03-20T17:27:29.719812322Z"} +2026/03/20 17:27:34 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":76.00469155487397,"throughput_eps":0,"last_update":"2026-03-20T17:27:29.719697934Z"} +2026/03/20 17:27:34 ───────────────────────────────────────────────── +2026/03/20 17:27:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":469.8,"last_update":"2026-03-20T17:27:34.576069431Z"} +2026/03/20 17:27:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:34.58640061Z"} +2026/03/20 17:27:39 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":16.54737963296897,"throughput_eps":0,"last_update":"2026-03-20T17:27:34.719908956Z"} +2026/03/20 17:27:39 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":76.00469155487397,"throughput_eps":0,"last_update":"2026-03-20T17:27:34.71865773Z"} +2026/03/20 17:27:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:34.575673627Z"} +2026/03/20 17:27:39 ───────────────────────────────────────────────── +2026/03/20 17:27:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:39.575618906Z"} +2026/03/20 17:27:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":470.8,"last_update":"2026-03-20T17:27:39.576015682Z"} +2026/03/20 17:27:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:39.585869091Z"} +2026/03/20 17:27:44 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":16.54737963296897,"throughput_eps":0,"last_update":"2026-03-20T17:27:39.719147692Z"} +2026/03/20 17:27:44 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":76.00469155487397,"throughput_eps":0,"last_update":"2026-03-20T17:27:39.719254495Z"} +2026/03/20 17:27:44 ───────────────────────────────────────────────── +2026/03/20 17:27:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:44.57564337Z"} +2026/03/20 17:27:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":471.8,"last_update":"2026-03-20T17:27:44.576019627Z"} +2026/03/20 17:27:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:44.586722928Z"} +2026/03/20 17:27:49 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":16.54737963296897,"throughput_eps":0,"last_update":"2026-03-20T17:27:44.718916542Z"} +2026/03/20 17:27:49 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":76.00469155487397,"throughput_eps":0,"last_update":"2026-03-20T17:27:44.718937051Z"} +2026/03/20 17:27:49 ───────────────────────────────────────────────── +2026/03/20 17:27:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:49.575541512Z"} +2026/03/20 17:27:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":472.8,"last_update":"2026-03-20T17:27:49.575500533Z"} +2026/03/20 17:27:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:49.586506582Z"} +2026/03/20 17:27:54 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":16.54737963296897,"throughput_eps":0,"last_update":"2026-03-20T17:27:49.719773145Z"} +2026/03/20 17:27:54 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":76.00469155487397,"throughput_eps":0,"last_update":"2026-03-20T17:27:49.718653409Z"} +2026/03/20 17:27:54 ───────────────────────────────────────────────── +2026/03/20 17:27:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":473.8,"last_update":"2026-03-20T17:27:54.575736134Z"} +2026/03/20 17:27:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:54.586196192Z"} +2026/03/20 17:27:59 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":16.54737963296897,"throughput_eps":0,"last_update":"2026-03-20T17:27:54.71958981Z"} +2026/03/20 17:27:59 [transform_engine] {"stage_name":"transform_engine","events_processed":79,"events_dropped":0,"avg_latency_ms":72.72493624389918,"throughput_eps":0,"last_update":"2026-03-20T17:27:54.779240482Z"} +2026/03/20 17:27:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:54.575493631Z"} +2026/03/20 17:27:59 ───────────────────────────────────────────────── +2026/03/20 17:28:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:59.58475271Z"} +2026/03/20 17:28:04 [detection_layer] {"stage_name":"detection_layer","events_processed":79,"events_dropped":0,"avg_latency_ms":16.556542906375178,"throughput_eps":0,"last_update":"2026-03-20T17:27:59.719123194Z"} +2026/03/20 17:28:04 [transform_engine] {"stage_name":"transform_engine","events_processed":79,"events_dropped":0,"avg_latency_ms":72.72493624389918,"throughput_eps":0,"last_update":"2026-03-20T17:27:59.719155545Z"} +2026/03/20 17:28:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:59.575706227Z"} +2026/03/20 17:28:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":474.8,"last_update":"2026-03-20T17:27:59.576098795Z"} +2026/03/20 17:28:04 ───────────────────────────────────────────────── +2026/03/20 17:28:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:04.575860867Z"} +2026/03/20 17:28:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":475.8,"last_update":"2026-03-20T17:28:04.576125461Z"} +2026/03/20 17:28:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:04.586955046Z"} +2026/03/20 17:28:09 [detection_layer] {"stage_name":"detection_layer","events_processed":79,"events_dropped":0,"avg_latency_ms":16.556542906375178,"throughput_eps":0,"last_update":"2026-03-20T17:28:04.71928403Z"} +2026/03/20 17:28:09 [transform_engine] {"stage_name":"transform_engine","events_processed":79,"events_dropped":0,"avg_latency_ms":72.72493624389918,"throughput_eps":0,"last_update":"2026-03-20T17:28:04.719345587Z"} +2026/03/20 17:28:09 ───────────────────────────────────────────────── +2026/03/20 17:28:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:09.575712331Z"} +2026/03/20 17:28:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":476.8,"last_update":"2026-03-20T17:28:09.575988608Z"} +2026/03/20 17:28:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:09.586928264Z"} +2026/03/20 17:28:14 [detection_layer] {"stage_name":"detection_layer","events_processed":79,"events_dropped":0,"avg_latency_ms":16.556542906375178,"throughput_eps":0,"last_update":"2026-03-20T17:28:09.719344134Z"} +2026/03/20 17:28:14 [transform_engine] {"stage_name":"transform_engine","events_processed":79,"events_dropped":0,"avg_latency_ms":72.72493624389918,"throughput_eps":0,"last_update":"2026-03-20T17:28:09.719325108Z"} +2026/03/20 17:28:14 ───────────────────────────────────────────────── +2026/03/20 17:28:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:19 [detection_layer] {"stage_name":"detection_layer","events_processed":79,"events_dropped":0,"avg_latency_ms":16.556542906375178,"throughput_eps":0,"last_update":"2026-03-20T17:28:14.719453698Z"} +2026/03/20 17:28:19 [transform_engine] {"stage_name":"transform_engine","events_processed":79,"events_dropped":0,"avg_latency_ms":72.72493624389918,"throughput_eps":0,"last_update":"2026-03-20T17:28:14.719502822Z"} +2026/03/20 17:28:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:14.575518171Z"} +2026/03/20 17:28:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":477.8,"last_update":"2026-03-20T17:28:14.576081045Z"} +2026/03/20 17:28:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":958,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:14.585199348Z"} +2026/03/20 17:28:19 ───────────────────────────────────────────────── +2026/03/20 17:28:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:19.575983274Z"} +2026/03/20 17:28:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":478.8,"last_update":"2026-03-20T17:28:19.575889345Z"} +2026/03/20 17:28:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:19.586514955Z"} +2026/03/20 17:28:24 [detection_layer] {"stage_name":"detection_layer","events_processed":79,"events_dropped":0,"avg_latency_ms":16.556542906375178,"throughput_eps":0,"last_update":"2026-03-20T17:28:19.718806762Z"} +2026/03/20 17:28:24 [transform_engine] {"stage_name":"transform_engine","events_processed":79,"events_dropped":0,"avg_latency_ms":72.72493624389918,"throughput_eps":0,"last_update":"2026-03-20T17:28:19.71869583Z"} +2026/03/20 17:28:24 ───────────────────────────────────────────────── +2026/03/20 17:28:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":479.8,"last_update":"2026-03-20T17:28:24.5760009Z"} +2026/03/20 17:28:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":962,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:24.585890226Z"} +2026/03/20 17:28:29 [detection_layer] {"stage_name":"detection_layer","events_processed":79,"events_dropped":0,"avg_latency_ms":16.556542906375178,"throughput_eps":0,"last_update":"2026-03-20T17:28:24.719141035Z"} +2026/03/20 17:28:29 [transform_engine] {"stage_name":"transform_engine","events_processed":80,"events_dropped":0,"avg_latency_ms":80.29599119511934,"throughput_eps":0,"last_update":"2026-03-20T17:28:24.82974449Z"} +2026/03/20 17:28:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:24.57558118Z"} +2026/03/20 17:28:29 ───────────────────────────────────────────────── +2026/03/20 17:28:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:29.57600853Z"} +2026/03/20 17:28:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":480.8,"last_update":"2026-03-20T17:28:29.576449861Z"} +2026/03/20 17:28:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:29.584869274Z"} +2026/03/20 17:28:34 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":15.645160525100142,"throughput_eps":0,"last_update":"2026-03-20T17:28:29.719145952Z"} +2026/03/20 17:28:34 [transform_engine] {"stage_name":"transform_engine","events_processed":80,"events_dropped":0,"avg_latency_ms":80.29599119511934,"throughput_eps":0,"last_update":"2026-03-20T17:28:29.719193001Z"} +2026/03/20 17:28:34 ───────────────────────────────────────────────── +2026/03/20 17:28:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:39 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":15.645160525100142,"throughput_eps":0,"last_update":"2026-03-20T17:28:34.719787941Z"} +2026/03/20 17:28:39 [transform_engine] {"stage_name":"transform_engine","events_processed":80,"events_dropped":0,"avg_latency_ms":80.29599119511934,"throughput_eps":0,"last_update":"2026-03-20T17:28:34.718643017Z"} +2026/03/20 17:28:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:34.575528957Z"} +2026/03/20 17:28:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":481.8,"last_update":"2026-03-20T17:28:34.575574595Z"} +2026/03/20 17:28:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:34.586465082Z"} +2026/03/20 17:28:39 ───────────────────────────────────────────────── +2026/03/20 17:28:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:39.576100947Z"} +2026/03/20 17:28:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":482.8,"last_update":"2026-03-20T17:28:39.576412452Z"} +2026/03/20 17:28:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:39.585446639Z"} +2026/03/20 17:28:44 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":15.645160525100142,"throughput_eps":0,"last_update":"2026-03-20T17:28:39.719641805Z"} +2026/03/20 17:28:44 [transform_engine] {"stage_name":"transform_engine","events_processed":80,"events_dropped":0,"avg_latency_ms":80.29599119511934,"throughput_eps":0,"last_update":"2026-03-20T17:28:39.719745041Z"} +2026/03/20 17:28:44 ───────────────────────────────────────────────── +2026/03/20 17:28:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:44.575853515Z"} +2026/03/20 17:28:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":483.8,"last_update":"2026-03-20T17:28:44.576463769Z"} +2026/03/20 17:28:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":970,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:44.585513146Z"} +2026/03/20 17:28:49 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":15.645160525100142,"throughput_eps":0,"last_update":"2026-03-20T17:28:44.718775433Z"} +2026/03/20 17:28:49 [transform_engine] {"stage_name":"transform_engine","events_processed":80,"events_dropped":0,"avg_latency_ms":80.29599119511934,"throughput_eps":0,"last_update":"2026-03-20T17:28:44.718760244Z"} +2026/03/20 17:28:49 ───────────────────────────────────────────────── +2026/03/20 17:28:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:49.576031399Z"} +2026/03/20 17:28:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":484.8,"last_update":"2026-03-20T17:28:49.576557473Z"} +2026/03/20 17:28:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:49.585424382Z"} +2026/03/20 17:28:54 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":15.645160525100142,"throughput_eps":0,"last_update":"2026-03-20T17:28:49.719786169Z"} +2026/03/20 17:28:54 [transform_engine] {"stage_name":"transform_engine","events_processed":80,"events_dropped":0,"avg_latency_ms":80.29599119511934,"throughput_eps":0,"last_update":"2026-03-20T17:28:49.718632398Z"} +2026/03/20 17:28:54 ───────────────────────────────────────────────── +2026/03/20 17:28:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:54.575806175Z"} +2026/03/20 17:28:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":485.8,"last_update":"2026-03-20T17:28:54.576221988Z"} +2026/03/20 17:28:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:54.584831226Z"} +2026/03/20 17:28:59 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":15.645160525100142,"throughput_eps":0,"last_update":"2026-03-20T17:28:54.719236968Z"} +2026/03/20 17:28:59 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":76.92585395609547,"throughput_eps":0,"last_update":"2026-03-20T17:28:54.782563847Z"} +2026/03/20 17:28:59 ───────────────────────────────────────────────── +2026/03/20 17:29:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:59.575499766Z"} +2026/03/20 17:29:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":486.8,"last_update":"2026-03-20T17:28:59.575899919Z"} +2026/03/20 17:29:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:59.585499037Z"} +2026/03/20 17:29:04 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":16.056618020080116,"throughput_eps":0,"last_update":"2026-03-20T17:28:59.718822855Z"} +2026/03/20 17:29:04 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":76.92585395609547,"throughput_eps":0,"last_update":"2026-03-20T17:28:59.718708657Z"} +2026/03/20 17:29:04 ───────────────────────────────────────────────── +2026/03/20 17:29:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:04.575597742Z"} +2026/03/20 17:29:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":487.8,"last_update":"2026-03-20T17:29:04.575644891Z"} +2026/03/20 17:29:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:04.585497002Z"} +2026/03/20 17:29:09 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":16.056618020080116,"throughput_eps":0,"last_update":"2026-03-20T17:29:04.719990363Z"} +2026/03/20 17:29:09 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":76.92585395609547,"throughput_eps":0,"last_update":"2026-03-20T17:29:04.718738905Z"} +2026/03/20 17:29:09 ───────────────────────────────────────────────── +2026/03/20 17:29:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:09.575747295Z"} +2026/03/20 17:29:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":488.8,"last_update":"2026-03-20T17:29:09.576091251Z"} +2026/03/20 17:29:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:09.586399635Z"} +2026/03/20 17:29:14 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":16.056618020080116,"throughput_eps":0,"last_update":"2026-03-20T17:29:09.719663319Z"} +2026/03/20 17:29:14 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":76.92585395609547,"throughput_eps":0,"last_update":"2026-03-20T17:29:09.719638602Z"} +2026/03/20 17:29:14 ───────────────────────────────────────────────── +2026/03/20 17:29:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:14.585212925Z"} +2026/03/20 17:29:19 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":16.056618020080116,"throughput_eps":0,"last_update":"2026-03-20T17:29:14.719529571Z"} +2026/03/20 17:29:19 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":76.92585395609547,"throughput_eps":0,"last_update":"2026-03-20T17:29:14.719510605Z"} +2026/03/20 17:29:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:14.575537651Z"} +2026/03/20 17:29:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":489.8,"last_update":"2026-03-20T17:29:14.575578689Z"} +2026/03/20 17:29:19 ───────────────────────────────────────────────── +2026/03/20 17:29:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:19.587070909Z"} +2026/03/20 17:29:24 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":16.056618020080116,"throughput_eps":0,"last_update":"2026-03-20T17:29:19.719264883Z"} +2026/03/20 17:29:24 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":76.92585395609547,"throughput_eps":0,"last_update":"2026-03-20T17:29:19.719285563Z"} +2026/03/20 17:29:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:19.576041387Z"} +2026/03/20 17:29:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":490.8,"last_update":"2026-03-20T17:29:19.576030066Z"} +2026/03/20 17:29:24 ───────────────────────────────────────────────── +2026/03/20 17:29:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:24.586570377Z"} +2026/03/20 17:29:29 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":16.056618020080116,"throughput_eps":0,"last_update":"2026-03-20T17:29:24.718803358Z"} +2026/03/20 17:29:29 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":84.60938196487638,"throughput_eps":0,"last_update":"2026-03-20T17:29:24.834081356Z"} +2026/03/20 17:29:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:24.57560598Z"} +2026/03/20 17:29:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":491.8,"last_update":"2026-03-20T17:29:24.575721421Z"} +2026/03/20 17:29:29 ───────────────────────────────────────────────── +2026/03/20 17:29:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:29.575765152Z"} +2026/03/20 17:29:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":492.8,"last_update":"2026-03-20T17:29:29.576058863Z"} +2026/03/20 17:29:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:29.586185602Z"} +2026/03/20 17:29:34 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":16.417901416064094,"throughput_eps":0,"last_update":"2026-03-20T17:29:29.719371873Z"} +2026/03/20 17:29:34 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":84.60938196487638,"throughput_eps":0,"last_update":"2026-03-20T17:29:29.719450823Z"} +2026/03/20 17:29:34 ───────────────────────────────────────────────── +2026/03/20 17:29:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:34.576072379Z"} +2026/03/20 17:29:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":493.8,"last_update":"2026-03-20T17:29:34.576464657Z"} +2026/03/20 17:29:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":990,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:34.585764289Z"} +2026/03/20 17:29:39 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":16.417901416064094,"throughput_eps":0,"last_update":"2026-03-20T17:29:34.719223039Z"} +2026/03/20 17:29:39 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":84.60938196487638,"throughput_eps":0,"last_update":"2026-03-20T17:29:34.719165839Z"} +2026/03/20 17:29:39 ───────────────────────────────────────────────── +2026/03/20 17:29:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:44 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":84.60938196487638,"throughput_eps":0,"last_update":"2026-03-20T17:29:39.71978644Z"} +2026/03/20 17:29:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:39.576043689Z"} +2026/03/20 17:29:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":494.8,"last_update":"2026-03-20T17:29:39.576430527Z"} +2026/03/20 17:29:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":992,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:39.58641672Z"} +2026/03/20 17:29:44 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":16.417901416064094,"throughput_eps":0,"last_update":"2026-03-20T17:29:39.71983835Z"} +2026/03/20 17:29:44 ───────────────────────────────────────────────── +2026/03/20 17:29:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:44.57553199Z"} +2026/03/20 17:29:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":495.8,"last_update":"2026-03-20T17:29:44.575811264Z"} +2026/03/20 17:29:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:44.586069947Z"} +2026/03/20 17:29:49 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":16.417901416064094,"throughput_eps":0,"last_update":"2026-03-20T17:29:44.719297256Z"} +2026/03/20 17:29:49 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":84.60938196487638,"throughput_eps":0,"last_update":"2026-03-20T17:29:44.719402076Z"} +2026/03/20 17:29:49 ───────────────────────────────────────────────── +2026/03/20 17:29:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:54 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":84.60938196487638,"throughput_eps":0,"last_update":"2026-03-20T17:29:49.718683232Z"} +2026/03/20 17:29:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:49.575746296Z"} +2026/03/20 17:29:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":496.8,"last_update":"2026-03-20T17:29:49.576520645Z"} +2026/03/20 17:29:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":996,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:49.585519244Z"} +2026/03/20 17:29:54 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":16.417901416064094,"throughput_eps":0,"last_update":"2026-03-20T17:29:49.719830502Z"} +2026/03/20 17:29:54 ───────────────────────────────────────────────── +2026/03/20 17:29:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:59 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":80.8326673719011,"throughput_eps":0,"last_update":"2026-03-20T17:29:54.784383504Z"} +2026/03/20 17:29:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:54.575834546Z"} +2026/03/20 17:29:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":497.8,"last_update":"2026-03-20T17:29:54.57660115Z"} +2026/03/20 17:29:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:54.585469611Z"} +2026/03/20 17:29:59 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":16.417901416064094,"throughput_eps":0,"last_update":"2026-03-20T17:29:54.719795026Z"} +2026/03/20 17:29:59 ───────────────────────────────────────────────── +2026/03/20 17:30:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:59.575821595Z"} +2026/03/20 17:30:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":498.8,"last_update":"2026-03-20T17:29:59.576117049Z"} +2026/03/20 17:30:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:59.586165313Z"} +2026/03/20 17:30:04 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":16.659370932851278,"throughput_eps":0,"last_update":"2026-03-20T17:29:59.71937069Z"} +2026/03/20 17:30:04 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":80.8326673719011,"throughput_eps":0,"last_update":"2026-03-20T17:29:59.719417119Z"} +2026/03/20 17:30:04 ───────────────────────────────────────────────── +2026/03/20 17:30:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:04.591966811Z"} +2026/03/20 17:30:09 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":16.659370932851278,"throughput_eps":0,"last_update":"2026-03-20T17:30:04.719311338Z"} +2026/03/20 17:30:09 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":80.8326673719011,"throughput_eps":0,"last_update":"2026-03-20T17:30:04.719288754Z"} +2026/03/20 17:30:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:04.575723959Z"} +2026/03/20 17:30:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":499.8,"last_update":"2026-03-20T17:30:04.576497867Z"} +2026/03/20 17:30:09 ───────────────────────────────────────────────── +2026/03/20 17:30:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:09.57585164Z"} +2026/03/20 17:30:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":500.8,"last_update":"2026-03-20T17:30:09.576478567Z"} +2026/03/20 17:30:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:09.584781089Z"} +2026/03/20 17:30:14 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":16.659370932851278,"throughput_eps":0,"last_update":"2026-03-20T17:30:09.71925609Z"} +2026/03/20 17:30:14 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":80.8326673719011,"throughput_eps":0,"last_update":"2026-03-20T17:30:09.719168583Z"} +2026/03/20 17:30:14 ───────────────────────────────────────────────── +2026/03/20 17:30:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:14.575542617Z"} +2026/03/20 17:30:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":501.8,"last_update":"2026-03-20T17:30:14.575770422Z"} +2026/03/20 17:30:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1006,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:14.586410027Z"} +2026/03/20 17:30:19 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":16.659370932851278,"throughput_eps":0,"last_update":"2026-03-20T17:30:14.719778335Z"} +2026/03/20 17:30:19 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":80.8326673719011,"throughput_eps":0,"last_update":"2026-03-20T17:30:14.719903143Z"} +2026/03/20 17:30:19 ───────────────────────────────────────────────── +2026/03/20 17:30:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":502.8,"last_update":"2026-03-20T17:30:19.575572849Z"} +2026/03/20 17:30:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1008,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:19.585958932Z"} +2026/03/20 17:30:24 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":16.659370932851278,"throughput_eps":0,"last_update":"2026-03-20T17:30:19.719297201Z"} +2026/03/20 17:30:24 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":80.8326673719011,"throughput_eps":0,"last_update":"2026-03-20T17:30:19.719196188Z"} +2026/03/20 17:30:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:19.575513366Z"} +2026/03/20 17:30:24 ───────────────────────────────────────────────── +2026/03/20 17:30:24 [ANOMALY] time=2026-03-20T17:30:24Z score=0.8529 method=SEAD details=MAD!:w=0.29,s=0.84 RRCF-fast:w=0.18,s=0.80 RRCF-mid:w=0.16,s=0.80 RRCF-slow:w=0.15,s=0.86 COPOD!:w=0.22,s=0.95 +2026/03/20 17:30:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:24.58568618Z"} +2026/03/20 17:30:29 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":16.659370932851278,"throughput_eps":0,"last_update":"2026-03-20T17:30:24.719001444Z"} +2026/03/20 17:30:29 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":87.50973909752088,"throughput_eps":0,"last_update":"2026-03-20T17:30:24.833187511Z"} +2026/03/20 17:30:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:24.5755214Z"} +2026/03/20 17:30:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":503.6,"last_update":"2026-03-20T17:30:24.575253067Z"} +2026/03/20 17:30:29 ───────────────────────────────────────────────── +2026/03/20 17:30:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1012,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:29.585240559Z"} +2026/03/20 17:30:34 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":16.455199346281024,"throughput_eps":0,"last_update":"2026-03-20T17:30:29.719630245Z"} +2026/03/20 17:30:34 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":87.50973909752088,"throughput_eps":0,"last_update":"2026-03-20T17:30:29.719609936Z"} +2026/03/20 17:30:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:29.576021394Z"} +2026/03/20 17:30:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":504.8,"last_update":"2026-03-20T17:30:29.57633882Z"} +2026/03/20 17:30:34 ───────────────────────────────────────────────── +2026/03/20 17:30:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:34.575515063Z"} +2026/03/20 17:30:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":505.8,"last_update":"2026-03-20T17:30:34.576122914Z"} +2026/03/20 17:30:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:34.586657111Z"} +2026/03/20 17:30:39 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":16.455199346281024,"throughput_eps":0,"last_update":"2026-03-20T17:30:34.719002511Z"} +2026/03/20 17:30:39 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":87.50973909752088,"throughput_eps":0,"last_update":"2026-03-20T17:30:34.718904304Z"} +2026/03/20 17:30:39 ───────────────────────────────────────────────── +2026/03/20 17:30:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:39.575758047Z"} +2026/03/20 17:30:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":506.8,"last_update":"2026-03-20T17:30:39.57606342Z"} +2026/03/20 17:30:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:39.586186543Z"} +2026/03/20 17:30:44 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":16.455199346281024,"throughput_eps":0,"last_update":"2026-03-20T17:30:39.719568733Z"} +2026/03/20 17:30:44 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":87.50973909752088,"throughput_eps":0,"last_update":"2026-03-20T17:30:39.719604852Z"} +2026/03/20 17:30:44 ───────────────────────────────────────────────── +2026/03/20 17:30:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1018,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:44.586989589Z"} +2026/03/20 17:30:49 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":16.455199346281024,"throughput_eps":0,"last_update":"2026-03-20T17:30:44.719214598Z"} +2026/03/20 17:30:49 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":87.50973909752088,"throughput_eps":0,"last_update":"2026-03-20T17:30:44.719222573Z"} +2026/03/20 17:30:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:44.575793626Z"} +2026/03/20 17:30:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":507.8,"last_update":"2026-03-20T17:30:44.576132263Z"} +2026/03/20 17:30:49 ───────────────────────────────────────────────── +2026/03/20 17:30:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:49.57585976Z"} +2026/03/20 17:30:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":508.8,"last_update":"2026-03-20T17:30:49.576204098Z"} +2026/03/20 17:30:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1020,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:49.584899566Z"} +2026/03/20 17:30:54 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":16.455199346281024,"throughput_eps":0,"last_update":"2026-03-20T17:30:49.719130775Z"} +2026/03/20 17:30:54 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":87.50973909752088,"throughput_eps":0,"last_update":"2026-03-20T17:30:49.719137298Z"} +2026/03/20 17:30:54 ───────────────────────────────────────────────── +2026/03/20 17:30:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:54.575538959Z"} +2026/03/20 17:30:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":509.8,"last_update":"2026-03-20T17:30:54.575583524Z"} +2026/03/20 17:30:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1022,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:54.586268182Z"} +2026/03/20 17:30:59 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":16.455199346281024,"throughput_eps":0,"last_update":"2026-03-20T17:30:54.719629278Z"} +2026/03/20 17:30:59 [transform_engine] {"stage_name":"transform_engine","events_processed":85,"events_dropped":0,"avg_latency_ms":92.78222407801671,"throughput_eps":0,"last_update":"2026-03-20T17:30:54.833534835Z"} +2026/03/20 17:30:59 ───────────────────────────────────────────────── +2026/03/20 17:31:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:59.575702052Z"} +2026/03/20 17:31:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":510.8,"last_update":"2026-03-20T17:30:59.575980964Z"} +2026/03/20 17:31:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:59.587337677Z"} +2026/03/20 17:31:04 [detection_layer] {"stage_name":"detection_layer","events_processed":85,"events_dropped":0,"avg_latency_ms":16.64477347702482,"throughput_eps":0,"last_update":"2026-03-20T17:30:59.719728889Z"} +2026/03/20 17:31:04 [transform_engine] {"stage_name":"transform_engine","events_processed":85,"events_dropped":0,"avg_latency_ms":92.78222407801671,"throughput_eps":0,"last_update":"2026-03-20T17:30:59.719740412Z"} +2026/03/20 17:31:04 ───────────────────────────────────────────────── +2026/03/20 17:31:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:09 [transform_engine] {"stage_name":"transform_engine","events_processed":85,"events_dropped":0,"avg_latency_ms":92.78222407801671,"throughput_eps":0,"last_update":"2026-03-20T17:31:04.719019573Z"} +2026/03/20 17:31:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:04.575891073Z"} +2026/03/20 17:31:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":511.8,"last_update":"2026-03-20T17:31:04.576436875Z"} +2026/03/20 17:31:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:04.586777376Z"} +2026/03/20 17:31:09 [detection_layer] {"stage_name":"detection_layer","events_processed":85,"events_dropped":0,"avg_latency_ms":16.64477347702482,"throughput_eps":0,"last_update":"2026-03-20T17:31:04.719008061Z"} +2026/03/20 17:31:09 ───────────────────────────────────────────────── +2026/03/20 17:31:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:09.57603968Z"} +2026/03/20 17:31:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":512.8,"last_update":"2026-03-20T17:31:09.576407212Z"} +2026/03/20 17:31:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:09.586402615Z"} +2026/03/20 17:31:14 [detection_layer] {"stage_name":"detection_layer","events_processed":85,"events_dropped":0,"avg_latency_ms":16.64477347702482,"throughput_eps":0,"last_update":"2026-03-20T17:31:09.719646333Z"} +2026/03/20 17:31:14 [transform_engine] {"stage_name":"transform_engine","events_processed":85,"events_dropped":0,"avg_latency_ms":92.78222407801671,"throughput_eps":0,"last_update":"2026-03-20T17:31:09.719655861Z"} +2026/03/20 17:31:14 ───────────────────────────────────────────────── +2026/03/20 17:31:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:14.5755407Z"} +2026/03/20 17:31:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":513.8,"last_update":"2026-03-20T17:31:14.575702309Z"} +2026/03/20 17:31:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:14.585651545Z"} +2026/03/20 17:31:19 [detection_layer] {"stage_name":"detection_layer","events_processed":85,"events_dropped":0,"avg_latency_ms":16.64477347702482,"throughput_eps":0,"last_update":"2026-03-20T17:31:14.718866255Z"} +2026/03/20 17:31:19 [transform_engine] {"stage_name":"transform_engine","events_processed":85,"events_dropped":0,"avg_latency_ms":92.78222407801671,"throughput_eps":0,"last_update":"2026-03-20T17:31:14.718877537Z"} +2026/03/20 17:31:19 ───────────────────────────────────────────────── +2026/03/20 17:31:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:19.58604019Z"} +2026/03/20 17:31:24 [detection_layer] {"stage_name":"detection_layer","events_processed":85,"events_dropped":0,"avg_latency_ms":16.64477347702482,"throughput_eps":0,"last_update":"2026-03-20T17:31:19.719278114Z"} +2026/03/20 17:31:24 [transform_engine] {"stage_name":"transform_engine","events_processed":85,"events_dropped":0,"avg_latency_ms":92.78222407801671,"throughput_eps":0,"last_update":"2026-03-20T17:31:19.719288253Z"} +2026/03/20 17:31:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:19.575600346Z"} +2026/03/20 17:31:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":514.8,"last_update":"2026-03-20T17:31:19.575954513Z"} +2026/03/20 17:31:24 ───────────────────────────────────────────────── +2026/03/20 17:31:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:29 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":96.67436806241336,"throughput_eps":0,"last_update":"2026-03-20T17:31:24.831718389Z"} +2026/03/20 17:31:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:24.57580354Z"} +2026/03/20 17:31:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":515.8,"last_update":"2026-03-20T17:31:24.57613896Z"} +2026/03/20 17:31:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:24.586084109Z"} +2026/03/20 17:31:29 [detection_layer] {"stage_name":"detection_layer","events_processed":85,"events_dropped":0,"avg_latency_ms":16.64477347702482,"throughput_eps":0,"last_update":"2026-03-20T17:31:24.719458933Z"} +2026/03/20 17:31:29 ───────────────────────────────────────────────── +2026/03/20 17:31:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:29.575752502Z"} +2026/03/20 17:31:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":516.8,"last_update":"2026-03-20T17:31:29.576027577Z"} +2026/03/20 17:31:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1036,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:29.587410354Z"} +2026/03/20 17:31:34 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":16.828068581619856,"throughput_eps":0,"last_update":"2026-03-20T17:31:29.719689512Z"} +2026/03/20 17:31:34 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":96.67436806241336,"throughput_eps":0,"last_update":"2026-03-20T17:31:29.719724801Z"} +2026/03/20 17:31:34 ───────────────────────────────────────────────── +2026/03/20 17:31:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:34.585297745Z"} +2026/03/20 17:31:39 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":16.828068581619856,"throughput_eps":0,"last_update":"2026-03-20T17:31:34.719702183Z"} +2026/03/20 17:31:39 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":96.67436806241336,"throughput_eps":0,"last_update":"2026-03-20T17:31:34.71964871Z"} +2026/03/20 17:31:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:34.575521859Z"} +2026/03/20 17:31:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":517.8,"last_update":"2026-03-20T17:31:34.575713354Z"} +2026/03/20 17:31:39 ───────────────────────────────────────────────── +2026/03/20 17:31:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":518.8,"last_update":"2026-03-20T17:31:39.576167513Z"} +2026/03/20 17:31:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:39.585748108Z"} +2026/03/20 17:31:44 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":16.828068581619856,"throughput_eps":0,"last_update":"2026-03-20T17:31:39.719012195Z"} +2026/03/20 17:31:44 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":96.67436806241336,"throughput_eps":0,"last_update":"2026-03-20T17:31:39.718990203Z"} +2026/03/20 17:31:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:39.575740648Z"} +2026/03/20 17:31:44 ───────────────────────────────────────────────── +2026/03/20 17:31:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:44.575685157Z"} +2026/03/20 17:31:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":519.8,"last_update":"2026-03-20T17:31:44.576106542Z"} +2026/03/20 17:31:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:44.586572238Z"} +2026/03/20 17:31:49 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":16.828068581619856,"throughput_eps":0,"last_update":"2026-03-20T17:31:44.71982942Z"} +2026/03/20 17:31:49 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":96.67436806241336,"throughput_eps":0,"last_update":"2026-03-20T17:31:44.718724028Z"} +2026/03/20 17:31:49 ───────────────────────────────────────────────── +2026/03/20 17:31:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:49.576058596Z"} +2026/03/20 17:31:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":520.8,"last_update":"2026-03-20T17:31:49.576047074Z"} +2026/03/20 17:31:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:49.586434712Z"} +2026/03/20 17:31:54 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":16.828068581619856,"throughput_eps":0,"last_update":"2026-03-20T17:31:49.719884459Z"} +2026/03/20 17:31:54 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":96.67436806241336,"throughput_eps":0,"last_update":"2026-03-20T17:31:49.718666042Z"} +2026/03/20 17:31:54 ───────────────────────────────────────────────── +2026/03/20 17:31:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":521.8,"last_update":"2026-03-20T17:31:54.576029263Z"} +2026/03/20 17:31:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:54.585983022Z"} +2026/03/20 17:31:59 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":16.828068581619856,"throughput_eps":0,"last_update":"2026-03-20T17:31:54.719505417Z"} +2026/03/20 17:31:59 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":99.8949136499307,"throughput_eps":0,"last_update":"2026-03-20T17:31:54.832196197Z"} +2026/03/20 17:31:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:54.575725072Z"} +2026/03/20 17:31:59 ───────────────────────────────────────────────── +2026/03/20 17:32:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":522.8,"last_update":"2026-03-20T17:31:59.576063313Z"} +2026/03/20 17:32:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1048,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:59.586833894Z"} +2026/03/20 17:32:04 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":17.159376465295885,"throughput_eps":0,"last_update":"2026-03-20T17:31:59.719240885Z"} +2026/03/20 17:32:04 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":99.8949136499307,"throughput_eps":0,"last_update":"2026-03-20T17:31:59.719134141Z"} +2026/03/20 17:32:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:59.575738563Z"} +2026/03/20 17:32:04 ───────────────────────────────────────────────── +2026/03/20 17:32:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":523.8,"last_update":"2026-03-20T17:32:04.575708995Z"} +2026/03/20 17:32:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1050,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:04.585674927Z"} +2026/03/20 17:32:09 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":17.159376465295885,"throughput_eps":0,"last_update":"2026-03-20T17:32:04.718958561Z"} +2026/03/20 17:32:09 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":99.8949136499307,"throughput_eps":0,"last_update":"2026-03-20T17:32:04.718919126Z"} +2026/03/20 17:32:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:04.575592753Z"} +2026/03/20 17:32:09 ───────────────────────────────────────────────── +2026/03/20 17:32:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:09.575815272Z"} +2026/03/20 17:32:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":524.8,"last_update":"2026-03-20T17:32:09.576107049Z"} +2026/03/20 17:32:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:09.587084917Z"} +2026/03/20 17:32:14 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":17.159376465295885,"throughput_eps":0,"last_update":"2026-03-20T17:32:09.719560464Z"} +2026/03/20 17:32:14 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":99.8949136499307,"throughput_eps":0,"last_update":"2026-03-20T17:32:09.719668801Z"} +2026/03/20 17:32:14 ───────────────────────────────────────────────── +2026/03/20 17:32:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:14.575967552Z"} +2026/03/20 17:32:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":525.8,"last_update":"2026-03-20T17:32:14.576262476Z"} +2026/03/20 17:32:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:14.585407813Z"} +2026/03/20 17:32:19 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":17.159376465295885,"throughput_eps":0,"last_update":"2026-03-20T17:32:14.719737229Z"} +2026/03/20 17:32:19 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":99.8949136499307,"throughput_eps":0,"last_update":"2026-03-20T17:32:14.719718845Z"} +2026/03/20 17:32:19 ───────────────────────────────────────────────── +2026/03/20 17:32:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:19.575698201Z"} +2026/03/20 17:32:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":526.8,"last_update":"2026-03-20T17:32:19.576050685Z"} +2026/03/20 17:32:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1056,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:19.586782755Z"} +2026/03/20 17:32:24 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":17.159376465295885,"throughput_eps":0,"last_update":"2026-03-20T17:32:19.719151333Z"} +2026/03/20 17:32:24 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":99.8949136499307,"throughput_eps":0,"last_update":"2026-03-20T17:32:19.719112739Z"} +2026/03/20 17:32:24 ───────────────────────────────────────────────── +2026/03/20 17:32:24 [ANOMALY] time=2026-03-20T17:32:24Z score=0.9031 method=SEAD details=MAD!:w=0.29,s=0.86 RRCF-fast!:w=0.18,s=0.97 RRCF-mid!:w=0.16,s=0.91 RRCF-slow!:w=0.15,s=0.90 COPOD!:w=0.22,s=0.91 +2026/03/20 17:32:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:29 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":17.159376465295885,"throughput_eps":0,"last_update":"2026-03-20T17:32:24.719623244Z"} +2026/03/20 17:32:29 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":102.54730311994457,"throughput_eps":0,"last_update":"2026-03-20T17:32:24.832904542Z"} +2026/03/20 17:32:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:24.575704866Z"} +2026/03/20 17:32:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":527.8,"last_update":"2026-03-20T17:32:24.57598376Z"} +2026/03/20 17:32:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:24.5862452Z"} +2026/03/20 17:32:29 ───────────────────────────────────────────────── +2026/03/20 17:32:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:34 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":102.54730311994457,"throughput_eps":0,"last_update":"2026-03-20T17:32:29.718777176Z"} +2026/03/20 17:32:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:29.575489376Z"} +2026/03/20 17:32:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":528.8,"last_update":"2026-03-20T17:32:29.5756593Z"} +2026/03/20 17:32:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:29.585247334Z"} +2026/03/20 17:32:34 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":16.48181857223671,"throughput_eps":0,"last_update":"2026-03-20T17:32:29.718809037Z"} +2026/03/20 17:32:34 ───────────────────────────────────────────────── +2026/03/20 17:32:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:34.575565905Z"} +2026/03/20 17:32:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":529.8,"last_update":"2026-03-20T17:32:34.57600338Z"} +2026/03/20 17:32:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1062,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:34.586588361Z"} +2026/03/20 17:32:39 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":16.48181857223671,"throughput_eps":0,"last_update":"2026-03-20T17:32:34.718822745Z"} +2026/03/20 17:32:39 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":102.54730311994457,"throughput_eps":0,"last_update":"2026-03-20T17:32:34.718793338Z"} +2026/03/20 17:32:39 ───────────────────────────────────────────────── +2026/03/20 17:32:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:39.575671382Z"} +2026/03/20 17:32:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":530.8,"last_update":"2026-03-20T17:32:39.575953472Z"} +2026/03/20 17:32:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:39.585839836Z"} +2026/03/20 17:32:44 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":16.48181857223671,"throughput_eps":0,"last_update":"2026-03-20T17:32:39.719144021Z"} +2026/03/20 17:32:44 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":102.54730311994457,"throughput_eps":0,"last_update":"2026-03-20T17:32:39.719178057Z"} +2026/03/20 17:32:44 ───────────────────────────────────────────────── +2026/03/20 17:32:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":531.8,"last_update":"2026-03-20T17:32:44.575988865Z"} +2026/03/20 17:32:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:44.586171297Z"} +2026/03/20 17:32:49 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":16.48181857223671,"throughput_eps":0,"last_update":"2026-03-20T17:32:44.719487272Z"} +2026/03/20 17:32:49 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":102.54730311994457,"throughput_eps":0,"last_update":"2026-03-20T17:32:44.719463015Z"} +2026/03/20 17:32:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:44.575680536Z"} +2026/03/20 17:32:49 ───────────────────────────────────────────────── +2026/03/20 17:32:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":532.8,"last_update":"2026-03-20T17:32:49.576223186Z"} +2026/03/20 17:32:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:49.584451032Z"} +2026/03/20 17:32:54 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":16.48181857223671,"throughput_eps":0,"last_update":"2026-03-20T17:32:49.719895692Z"} +2026/03/20 17:32:54 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":102.54730311994457,"throughput_eps":0,"last_update":"2026-03-20T17:32:49.718687453Z"} +2026/03/20 17:32:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:49.57578083Z"} +2026/03/20 17:32:54 ───────────────────────────────────────────────── +2026/03/20 17:32:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:54.585764679Z"} +2026/03/20 17:32:59 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":16.48181857223671,"throughput_eps":0,"last_update":"2026-03-20T17:32:54.719241515Z"} +2026/03/20 17:32:59 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":102.54730311994457,"throughput_eps":0,"last_update":"2026-03-20T17:32:54.719086568Z"} +2026/03/20 17:32:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:54.575540837Z"} +2026/03/20 17:32:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":533.8,"last_update":"2026-03-20T17:32:54.575875507Z"} +2026/03/20 17:32:59 ───────────────────────────────────────────────── +2026/03/20 17:33:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":534.8,"last_update":"2026-03-20T17:32:59.576093924Z"} +2026/03/20 17:33:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1072,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:59.585441701Z"} +2026/03/20 17:33:04 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":16.690378257789366,"throughput_eps":0,"last_update":"2026-03-20T17:32:59.718808995Z"} +2026/03/20 17:33:04 [transform_engine] {"stage_name":"transform_engine","events_processed":89,"events_dropped":0,"avg_latency_ms":94.98600349595566,"throughput_eps":0,"last_update":"2026-03-20T17:32:59.718696409Z"} +2026/03/20 17:33:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:59.575755948Z"} +2026/03/20 17:33:04 ───────────────────────────────────────────────── +2026/03/20 17:33:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:04.575563766Z"} +2026/03/20 17:33:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":535.8,"last_update":"2026-03-20T17:33:04.575693725Z"} +2026/03/20 17:33:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:04.585786707Z"} +2026/03/20 17:33:09 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":16.690378257789366,"throughput_eps":0,"last_update":"2026-03-20T17:33:04.719167895Z"} +2026/03/20 17:33:09 [transform_engine] {"stage_name":"transform_engine","events_processed":89,"events_dropped":0,"avg_latency_ms":94.98600349595566,"throughput_eps":0,"last_update":"2026-03-20T17:33:04.719265902Z"} +2026/03/20 17:33:09 ───────────────────────────────────────────────── +2026/03/20 17:33:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:14 [transform_engine] {"stage_name":"transform_engine","events_processed":89,"events_dropped":0,"avg_latency_ms":94.98600349595566,"throughput_eps":0,"last_update":"2026-03-20T17:33:09.719001207Z"} +2026/03/20 17:33:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:09.57596195Z"} +2026/03/20 17:33:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":536.8,"last_update":"2026-03-20T17:33:09.576330835Z"} +2026/03/20 17:33:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1076,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:09.585741344Z"} +2026/03/20 17:33:14 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":16.690378257789366,"throughput_eps":0,"last_update":"2026-03-20T17:33:09.719105246Z"} +2026/03/20 17:33:14 ───────────────────────────────────────────────── +2026/03/20 17:33:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:14.57567642Z"} +2026/03/20 17:33:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":537.8,"last_update":"2026-03-20T17:33:14.57602673Z"} +2026/03/20 17:33:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:14.585866731Z"} +2026/03/20 17:33:19 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":16.690378257789366,"throughput_eps":0,"last_update":"2026-03-20T17:33:14.719122111Z"} +2026/03/20 17:33:19 [transform_engine] {"stage_name":"transform_engine","events_processed":89,"events_dropped":0,"avg_latency_ms":94.98600349595566,"throughput_eps":0,"last_update":"2026-03-20T17:33:14.719162778Z"} +2026/03/20 17:33:19 ───────────────────────────────────────────────── +2026/03/20 17:33:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":538.8,"last_update":"2026-03-20T17:33:19.575976653Z"} +2026/03/20 17:33:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:19.586363278Z"} +2026/03/20 17:33:24 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":16.690378257789366,"throughput_eps":0,"last_update":"2026-03-20T17:33:19.719596513Z"} +2026/03/20 17:33:24 [transform_engine] {"stage_name":"transform_engine","events_processed":89,"events_dropped":0,"avg_latency_ms":94.98600349595566,"throughput_eps":0,"last_update":"2026-03-20T17:33:19.71957396Z"} +2026/03/20 17:33:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:19.575988596Z"} +2026/03/20 17:33:24 ───────────────────────────────────────────────── +2026/03/20 17:33:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:24.576012698Z"} +2026/03/20 17:33:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":539.8,"last_update":"2026-03-20T17:33:24.575999654Z"} +2026/03/20 17:33:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1082,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:24.585577704Z"} +2026/03/20 17:33:29 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":16.690378257789366,"throughput_eps":0,"last_update":"2026-03-20T17:33:24.718792049Z"} +2026/03/20 17:33:29 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":88.44331599676454,"throughput_eps":0,"last_update":"2026-03-20T17:33:24.781017936Z"} +2026/03/20 17:33:29 ───────────────────────────────────────────────── +2026/03/20 17:33:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:29.576052657Z"} +2026/03/20 17:33:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":540.8,"last_update":"2026-03-20T17:33:29.57603849Z"} +2026/03/20 17:33:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:29.587543495Z"} +2026/03/20 17:33:34 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":16.526943406231492,"throughput_eps":0,"last_update":"2026-03-20T17:33:29.718816576Z"} +2026/03/20 17:33:34 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":88.44331599676454,"throughput_eps":0,"last_update":"2026-03-20T17:33:29.718720692Z"} +2026/03/20 17:33:34 ───────────────────────────────────────────────── +2026/03/20 17:33:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:34.576067462Z"} +2026/03/20 17:33:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":541.8,"last_update":"2026-03-20T17:33:34.576235614Z"} +2026/03/20 17:33:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:34.585179533Z"} +2026/03/20 17:33:39 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":16.526943406231492,"throughput_eps":0,"last_update":"2026-03-20T17:33:34.719469728Z"} +2026/03/20 17:33:39 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":88.44331599676454,"throughput_eps":0,"last_update":"2026-03-20T17:33:34.719443437Z"} +2026/03/20 17:33:39 ───────────────────────────────────────────────── +2026/03/20 17:33:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:39.575579497Z"} +2026/03/20 17:33:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":542.8,"last_update":"2026-03-20T17:33:39.575682264Z"} +2026/03/20 17:33:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:39.586019757Z"} +2026/03/20 17:33:44 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":16.526943406231492,"throughput_eps":0,"last_update":"2026-03-20T17:33:39.719459924Z"} +2026/03/20 17:33:44 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":88.44331599676454,"throughput_eps":0,"last_update":"2026-03-20T17:33:39.719408605Z"} +2026/03/20 17:33:44 ───────────────────────────────────────────────── +2026/03/20 17:33:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:44.575794445Z"} +2026/03/20 17:33:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":543.8,"last_update":"2026-03-20T17:33:44.57612121Z"} +2026/03/20 17:33:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:44.585570085Z"} +2026/03/20 17:33:49 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":16.526943406231492,"throughput_eps":0,"last_update":"2026-03-20T17:33:44.718808461Z"} +2026/03/20 17:33:49 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":88.44331599676454,"throughput_eps":0,"last_update":"2026-03-20T17:33:44.718736013Z"} +2026/03/20 17:33:49 ───────────────────────────────────────────────── +2026/03/20 17:33:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:49.576175058Z"} +2026/03/20 17:33:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":544.8,"last_update":"2026-03-20T17:33:49.57675092Z"} +2026/03/20 17:33:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:49.585701202Z"} +2026/03/20 17:33:54 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":16.526943406231492,"throughput_eps":0,"last_update":"2026-03-20T17:33:49.719126223Z"} +2026/03/20 17:33:54 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":88.44331599676454,"throughput_eps":0,"last_update":"2026-03-20T17:33:49.719110293Z"} +2026/03/20 17:33:54 ───────────────────────────────────────────────── +2026/03/20 17:33:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:54.575525969Z"} +2026/03/20 17:33:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":545.8,"last_update":"2026-03-20T17:33:54.57556331Z"} +2026/03/20 17:33:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:54.585879865Z"} +2026/03/20 17:33:59 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":16.526943406231492,"throughput_eps":0,"last_update":"2026-03-20T17:33:54.719383222Z"} +2026/03/20 17:33:59 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":93.52199559741163,"throughput_eps":0,"last_update":"2026-03-20T17:33:54.833238842Z"} +2026/03/20 17:33:59 ───────────────────────────────────────────────── +2026/03/20 17:34:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:59.576024596Z"} +2026/03/20 17:34:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":546.8,"last_update":"2026-03-20T17:33:59.57643478Z"} +2026/03/20 17:34:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:59.585200451Z"} +2026/03/20 17:34:04 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":16.743047524985194,"throughput_eps":0,"last_update":"2026-03-20T17:33:59.719506077Z"} +2026/03/20 17:34:04 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":93.52199559741163,"throughput_eps":0,"last_update":"2026-03-20T17:33:59.719613803Z"} +2026/03/20 17:34:04 ───────────────────────────────────────────────── +2026/03/20 17:34:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:04.586132635Z"} +2026/03/20 17:34:09 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":16.743047524985194,"throughput_eps":0,"last_update":"2026-03-20T17:34:04.719475918Z"} +2026/03/20 17:34:09 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":93.52199559741163,"throughput_eps":0,"last_update":"2026-03-20T17:34:04.719364204Z"} +2026/03/20 17:34:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:04.575792314Z"} +2026/03/20 17:34:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":547.8,"last_update":"2026-03-20T17:34:04.576156991Z"} +2026/03/20 17:34:09 ───────────────────────────────────────────────── +2026/03/20 17:34:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:09.575828514Z"} +2026/03/20 17:34:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":548.8,"last_update":"2026-03-20T17:34:09.576410126Z"} +2026/03/20 17:34:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:09.586838847Z"} +2026/03/20 17:34:14 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":16.743047524985194,"throughput_eps":0,"last_update":"2026-03-20T17:34:09.719345546Z"} +2026/03/20 17:34:14 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":93.52199559741163,"throughput_eps":0,"last_update":"2026-03-20T17:34:09.719235906Z"} +2026/03/20 17:34:14 ───────────────────────────────────────────────── +2026/03/20 17:34:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:19 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":16.743047524985194,"throughput_eps":0,"last_update":"2026-03-20T17:34:14.719593333Z"} +2026/03/20 17:34:19 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":93.52199559741163,"throughput_eps":0,"last_update":"2026-03-20T17:34:14.719562544Z"} +2026/03/20 17:34:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:14.575914165Z"} +2026/03/20 17:34:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":549.8,"last_update":"2026-03-20T17:34:14.576198629Z"} +2026/03/20 17:34:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:14.588156575Z"} +2026/03/20 17:34:19 ───────────────────────────────────────────────── +2026/03/20 17:34:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:19.575878106Z"} +2026/03/20 17:34:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":550.8,"last_update":"2026-03-20T17:34:19.576225591Z"} +2026/03/20 17:34:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:19.585846428Z"} +2026/03/20 17:34:24 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":16.743047524985194,"throughput_eps":0,"last_update":"2026-03-20T17:34:19.71924314Z"} +2026/03/20 17:34:24 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":93.52199559741163,"throughput_eps":0,"last_update":"2026-03-20T17:34:19.719277756Z"} +2026/03/20 17:34:24 ───────────────────────────────────────────────── +2026/03/20 17:34:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":551.8,"last_update":"2026-03-20T17:34:24.575937883Z"} +2026/03/20 17:34:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:24.585865167Z"} +2026/03/20 17:34:29 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":16.743047524985194,"throughput_eps":0,"last_update":"2026-03-20T17:34:24.71915983Z"} +2026/03/20 17:34:29 [transform_engine] {"stage_name":"transform_engine","events_processed":92,"events_dropped":0,"avg_latency_ms":97.58340447792932,"throughput_eps":0,"last_update":"2026-03-20T17:34:24.832968671Z"} +2026/03/20 17:34:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:24.575512801Z"} +2026/03/20 17:34:29 ───────────────────────────────────────────────── +2026/03/20 17:34:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:29.576116536Z"} +2026/03/20 17:34:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":552.8,"last_update":"2026-03-20T17:34:29.576062573Z"} +2026/03/20 17:34:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:29.585422702Z"} +2026/03/20 17:34:34 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":16.954644019988155,"throughput_eps":0,"last_update":"2026-03-20T17:34:29.718818034Z"} +2026/03/20 17:34:34 [transform_engine] {"stage_name":"transform_engine","events_processed":92,"events_dropped":0,"avg_latency_ms":97.58340447792932,"throughput_eps":0,"last_update":"2026-03-20T17:34:29.718719014Z"} +2026/03/20 17:34:34 ───────────────────────────────────────────────── +2026/03/20 17:34:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":553.8,"last_update":"2026-03-20T17:34:34.576700681Z"} +2026/03/20 17:34:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:34.584979504Z"} +2026/03/20 17:34:39 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":16.954644019988155,"throughput_eps":0,"last_update":"2026-03-20T17:34:34.719394611Z"} +2026/03/20 17:34:39 [transform_engine] {"stage_name":"transform_engine","events_processed":92,"events_dropped":0,"avg_latency_ms":97.58340447792932,"throughput_eps":0,"last_update":"2026-03-20T17:34:34.719434577Z"} +2026/03/20 17:34:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:34.575886354Z"} +2026/03/20 17:34:39 ───────────────────────────────────────────────── +2026/03/20 17:34:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:39.575554602Z"} +2026/03/20 17:34:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":554.8,"last_update":"2026-03-20T17:34:39.575600209Z"} +2026/03/20 17:34:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:39.586810558Z"} +2026/03/20 17:34:44 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":16.954644019988155,"throughput_eps":0,"last_update":"2026-03-20T17:34:39.719059829Z"} +2026/03/20 17:34:44 [transform_engine] {"stage_name":"transform_engine","events_processed":92,"events_dropped":0,"avg_latency_ms":97.58340447792932,"throughput_eps":0,"last_update":"2026-03-20T17:34:39.719168597Z"} +2026/03/20 17:34:44 ───────────────────────────────────────────────── +2026/03/20 17:34:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:44.575525632Z"} +2026/03/20 17:34:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":555.8,"last_update":"2026-03-20T17:34:44.576083419Z"} +2026/03/20 17:34:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:44.586291452Z"} +2026/03/20 17:34:49 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":16.954644019988155,"throughput_eps":0,"last_update":"2026-03-20T17:34:44.719782623Z"} +2026/03/20 17:34:49 [transform_engine] {"stage_name":"transform_engine","events_processed":92,"events_dropped":0,"avg_latency_ms":97.58340447792932,"throughput_eps":0,"last_update":"2026-03-20T17:34:44.719667112Z"} +2026/03/20 17:34:49 ───────────────────────────────────────────────── +2026/03/20 17:34:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":556.8,"last_update":"2026-03-20T17:34:49.576072605Z"} +2026/03/20 17:34:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:49.586237625Z"} +2026/03/20 17:34:54 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":16.954644019988155,"throughput_eps":0,"last_update":"2026-03-20T17:34:49.719486319Z"} +2026/03/20 17:34:54 [transform_engine] {"stage_name":"transform_engine","events_processed":92,"events_dropped":0,"avg_latency_ms":97.58340447792932,"throughput_eps":0,"last_update":"2026-03-20T17:34:49.719509443Z"} +2026/03/20 17:34:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:49.575662761Z"} +2026/03/20 17:34:54 ───────────────────────────────────────────────── +2026/03/20 17:34:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:54.575993369Z"} +2026/03/20 17:34:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":557.8,"last_update":"2026-03-20T17:34:54.576194674Z"} +2026/03/20 17:34:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:54.585071711Z"} +2026/03/20 17:34:59 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":16.954644019988155,"throughput_eps":0,"last_update":"2026-03-20T17:34:54.719529944Z"} +2026/03/20 17:34:59 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":91.38441778234346,"throughput_eps":0,"last_update":"2026-03-20T17:34:54.786079199Z"} +2026/03/20 17:34:59 ───────────────────────────────────────────────── +2026/03/20 17:35:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:59.585552021Z"} +2026/03/20 17:35:04 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":16.973065615990524,"throughput_eps":0,"last_update":"2026-03-20T17:34:59.71882865Z"} +2026/03/20 17:35:04 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":91.38441778234346,"throughput_eps":0,"last_update":"2026-03-20T17:34:59.718770809Z"} +2026/03/20 17:35:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:59.575992248Z"} +2026/03/20 17:35:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":558.8,"last_update":"2026-03-20T17:34:59.576388886Z"} +2026/03/20 17:35:04 ───────────────────────────────────────────────── +2026/03/20 17:35:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:09 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":16.973065615990524,"throughput_eps":0,"last_update":"2026-03-20T17:35:04.719604247Z"} +2026/03/20 17:35:09 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":91.38441778234346,"throughput_eps":0,"last_update":"2026-03-20T17:35:04.719619976Z"} +2026/03/20 17:35:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:04.575846346Z"} +2026/03/20 17:35:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":559.8,"last_update":"2026-03-20T17:35:04.576168442Z"} +2026/03/20 17:35:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1122,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:04.58641533Z"} +2026/03/20 17:35:09 ───────────────────────────────────────────────── +2026/03/20 17:35:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":560.8,"last_update":"2026-03-20T17:35:09.575836446Z"} +2026/03/20 17:35:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:09.584958803Z"} +2026/03/20 17:35:14 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":16.973065615990524,"throughput_eps":0,"last_update":"2026-03-20T17:35:09.719389872Z"} +2026/03/20 17:35:14 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":91.38441778234346,"throughput_eps":0,"last_update":"2026-03-20T17:35:09.719403467Z"} +2026/03/20 17:35:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:09.575495745Z"} +2026/03/20 17:35:14 ───────────────────────────────────────────────── +2026/03/20 17:35:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:14.575817048Z"} +2026/03/20 17:35:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":561.8,"last_update":"2026-03-20T17:35:14.576119296Z"} +2026/03/20 17:35:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1126,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:14.586210538Z"} +2026/03/20 17:35:19 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":16.973065615990524,"throughput_eps":0,"last_update":"2026-03-20T17:35:14.719477654Z"} +2026/03/20 17:35:19 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":91.38441778234346,"throughput_eps":0,"last_update":"2026-03-20T17:35:14.719485318Z"} +2026/03/20 17:35:19 ───────────────────────────────────────────────── +2026/03/20 17:35:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1128,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:19.584852439Z"} +2026/03/20 17:35:24 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":16.973065615990524,"throughput_eps":0,"last_update":"2026-03-20T17:35:19.71917548Z"} +2026/03/20 17:35:24 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":91.38441778234346,"throughput_eps":0,"last_update":"2026-03-20T17:35:19.719186962Z"} +2026/03/20 17:35:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:19.575913872Z"} +2026/03/20 17:35:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":562.8,"last_update":"2026-03-20T17:35:19.576206963Z"} +2026/03/20 17:35:24 ───────────────────────────────────────────────── +2026/03/20 17:35:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:24.576262655Z"} +2026/03/20 17:35:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":563.8,"last_update":"2026-03-20T17:35:24.576951704Z"} +2026/03/20 17:35:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1130,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:24.584860761Z"} +2026/03/20 17:35:29 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":16.973065615990524,"throughput_eps":0,"last_update":"2026-03-20T17:35:24.71925771Z"} +2026/03/20 17:35:29 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":95.56999942587477,"throughput_eps":0,"last_update":"2026-03-20T17:35:24.831586286Z"} +2026/03/20 17:35:29 ───────────────────────────────────────────────── +2026/03/20 17:35:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:29.575828235Z"} +2026/03/20 17:35:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":564.8,"last_update":"2026-03-20T17:35:29.57618627Z"} +2026/03/20 17:35:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:29.585073469Z"} +2026/03/20 17:35:34 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":16.85228469279242,"throughput_eps":0,"last_update":"2026-03-20T17:35:29.71944862Z"} +2026/03/20 17:35:34 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":95.56999942587477,"throughput_eps":0,"last_update":"2026-03-20T17:35:29.719464551Z"} +2026/03/20 17:35:34 ───────────────────────────────────────────────── +2026/03/20 17:35:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":565.8,"last_update":"2026-03-20T17:35:34.575990991Z"} +2026/03/20 17:35:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:34.585904373Z"} +2026/03/20 17:35:39 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":16.85228469279242,"throughput_eps":0,"last_update":"2026-03-20T17:35:34.719220915Z"} +2026/03/20 17:35:39 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":95.56999942587477,"throughput_eps":0,"last_update":"2026-03-20T17:35:34.719227518Z"} +2026/03/20 17:35:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:34.575595073Z"} +2026/03/20 17:35:39 ───────────────────────────────────────────────── +2026/03/20 17:35:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:39.575520577Z"} +2026/03/20 17:35:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":566.8,"last_update":"2026-03-20T17:35:39.576104905Z"} +2026/03/20 17:35:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:39.585828365Z"} +2026/03/20 17:35:44 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":16.85228469279242,"throughput_eps":0,"last_update":"2026-03-20T17:35:39.719095215Z"} +2026/03/20 17:35:44 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":95.56999942587477,"throughput_eps":0,"last_update":"2026-03-20T17:35:39.719104062Z"} +2026/03/20 17:35:44 ───────────────────────────────────────────────── +2026/03/20 17:35:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:44.575788422Z"} +2026/03/20 17:35:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":567.8,"last_update":"2026-03-20T17:35:44.575761851Z"} +2026/03/20 17:35:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:44.585789754Z"} +2026/03/20 17:35:49 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":16.85228469279242,"throughput_eps":0,"last_update":"2026-03-20T17:35:44.719238448Z"} +2026/03/20 17:35:49 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":95.56999942587477,"throughput_eps":0,"last_update":"2026-03-20T17:35:44.719252436Z"} +2026/03/20 17:35:49 ───────────────────────────────────────────────── +2026/03/20 17:35:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:49.575668925Z"} +2026/03/20 17:35:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":568.8,"last_update":"2026-03-20T17:35:49.575663144Z"} +2026/03/20 17:35:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:49.58620982Z"} +2026/03/20 17:35:54 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":16.85228469279242,"throughput_eps":0,"last_update":"2026-03-20T17:35:49.719464539Z"} +2026/03/20 17:35:54 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":95.56999942587477,"throughput_eps":0,"last_update":"2026-03-20T17:35:49.719472483Z"} +2026/03/20 17:35:54 ───────────────────────────────────────────────── +2026/03/20 17:35:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:54.575692838Z"} +2026/03/20 17:35:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":569.8,"last_update":"2026-03-20T17:35:54.576010375Z"} +2026/03/20 17:35:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:54.58729891Z"} +2026/03/20 17:35:59 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":16.85228469279242,"throughput_eps":0,"last_update":"2026-03-20T17:35:54.71962165Z"} +2026/03/20 17:35:59 [transform_engine] {"stage_name":"transform_engine","events_processed":95,"events_dropped":0,"avg_latency_ms":98.26300994069982,"throughput_eps":0,"last_update":"2026-03-20T17:35:54.828669697Z"} +2026/03/20 17:35:59 ───────────────────────────────────────────────── +2026/03/20 17:36:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:59.575970058Z"} +2026/03/20 17:36:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":570.8,"last_update":"2026-03-20T17:35:59.576238261Z"} +2026/03/20 17:36:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:59.585192311Z"} +2026/03/20 17:36:04 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":16.949330954233936,"throughput_eps":0,"last_update":"2026-03-20T17:35:59.719443616Z"} +2026/03/20 17:36:04 [transform_engine] {"stage_name":"transform_engine","events_processed":95,"events_dropped":0,"avg_latency_ms":98.26300994069982,"throughput_eps":0,"last_update":"2026-03-20T17:35:59.719458944Z"} +2026/03/20 17:36:04 ───────────────────────────────────────────────── +2026/03/20 17:36:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:09 [transform_engine] {"stage_name":"transform_engine","events_processed":95,"events_dropped":0,"avg_latency_ms":98.26300994069982,"throughput_eps":0,"last_update":"2026-03-20T17:36:04.718718476Z"} +2026/03/20 17:36:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:04.575798764Z"} +2026/03/20 17:36:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":571.8,"last_update":"2026-03-20T17:36:04.576172529Z"} +2026/03/20 17:36:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:04.586534141Z"} +2026/03/20 17:36:09 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":16.949330954233936,"throughput_eps":0,"last_update":"2026-03-20T17:36:04.718841271Z"} +2026/03/20 17:36:09 ───────────────────────────────────────────────── +2026/03/20 17:36:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:09.575882277Z"} +2026/03/20 17:36:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":572.8,"last_update":"2026-03-20T17:36:09.576503505Z"} +2026/03/20 17:36:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:09.585810842Z"} +2026/03/20 17:36:14 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":16.949330954233936,"throughput_eps":0,"last_update":"2026-03-20T17:36:09.719159428Z"} +2026/03/20 17:36:14 [transform_engine] {"stage_name":"transform_engine","events_processed":95,"events_dropped":0,"avg_latency_ms":98.26300994069982,"throughput_eps":0,"last_update":"2026-03-20T17:36:09.719062824Z"} +2026/03/20 17:36:14 ───────────────────────────────────────────────── +2026/03/20 17:36:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:14.585087691Z"} +2026/03/20 17:36:19 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":16.949330954233936,"throughput_eps":0,"last_update":"2026-03-20T17:36:14.719503674Z"} +2026/03/20 17:36:19 [transform_engine] {"stage_name":"transform_engine","events_processed":95,"events_dropped":0,"avg_latency_ms":98.26300994069982,"throughput_eps":0,"last_update":"2026-03-20T17:36:14.719408723Z"} +2026/03/20 17:36:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:14.576050382Z"} +2026/03/20 17:36:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":573.8,"last_update":"2026-03-20T17:36:14.576368721Z"} +2026/03/20 17:36:19 ───────────────────────────────────────────────── +2026/03/20 17:36:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:24 [transform_engine] {"stage_name":"transform_engine","events_processed":95,"events_dropped":0,"avg_latency_ms":98.26300994069982,"throughput_eps":0,"last_update":"2026-03-20T17:36:19.718743012Z"} +2026/03/20 17:36:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:19.575601931Z"} +2026/03/20 17:36:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":574.8,"last_update":"2026-03-20T17:36:19.575614975Z"} +2026/03/20 17:36:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:19.585514574Z"} +2026/03/20 17:36:24 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":16.949330954233936,"throughput_eps":0,"last_update":"2026-03-20T17:36:19.718778399Z"} +2026/03/20 17:36:24 ───────────────────────────────────────────────── +2026/03/20 17:36:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":575.8,"last_update":"2026-03-20T17:36:24.576093195Z"} +2026/03/20 17:36:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:24.58625135Z"} +2026/03/20 17:36:29 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":16.949330954233936,"throughput_eps":0,"last_update":"2026-03-20T17:36:24.719644617Z"} +2026/03/20 17:36:29 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":91.67847575255985,"throughput_eps":0,"last_update":"2026-03-20T17:36:24.785039009Z"} +2026/03/20 17:36:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:24.575739889Z"} +2026/03/20 17:36:29 ───────────────────────────────────────────────── +2026/03/20 17:36:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:34 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":17.03294816338715,"throughput_eps":0,"last_update":"2026-03-20T17:36:29.718987802Z"} +2026/03/20 17:36:34 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":91.67847575255985,"throughput_eps":0,"last_update":"2026-03-20T17:36:29.719000096Z"} +2026/03/20 17:36:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:29.576166332Z"} +2026/03/20 17:36:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":576.8,"last_update":"2026-03-20T17:36:29.57614938Z"} +2026/03/20 17:36:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:29.586883737Z"} +2026/03/20 17:36:34 ───────────────────────────────────────────────── +2026/03/20 17:36:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:39 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":91.67847575255985,"throughput_eps":0,"last_update":"2026-03-20T17:36:34.71895859Z"} +2026/03/20 17:36:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:34.575841279Z"} +2026/03/20 17:36:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":577.8,"last_update":"2026-03-20T17:36:34.576194616Z"} +2026/03/20 17:36:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:34.585700863Z"} +2026/03/20 17:36:39 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":17.03294816338715,"throughput_eps":0,"last_update":"2026-03-20T17:36:34.718949723Z"} +2026/03/20 17:36:39 ───────────────────────────────────────────────── +2026/03/20 17:36:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:39.586541521Z"} +2026/03/20 17:36:44 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":17.03294816338715,"throughput_eps":0,"last_update":"2026-03-20T17:36:39.718868601Z"} +2026/03/20 17:36:44 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":91.67847575255985,"throughput_eps":0,"last_update":"2026-03-20T17:36:39.718913707Z"} +2026/03/20 17:36:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:39.575559859Z"} +2026/03/20 17:36:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":578.8,"last_update":"2026-03-20T17:36:39.575673006Z"} +2026/03/20 17:36:44 ───────────────────────────────────────────────── +2026/03/20 17:36:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:44.575521853Z"} +2026/03/20 17:36:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":579.8,"last_update":"2026-03-20T17:36:44.575959631Z"} +2026/03/20 17:36:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:44.586767721Z"} +2026/03/20 17:36:49 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":17.03294816338715,"throughput_eps":0,"last_update":"2026-03-20T17:36:44.719085508Z"} +2026/03/20 17:36:49 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":91.67847575255985,"throughput_eps":0,"last_update":"2026-03-20T17:36:44.719039359Z"} +2026/03/20 17:36:49 ───────────────────────────────────────────────── +2026/03/20 17:36:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:49.575981917Z"} +2026/03/20 17:36:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":580.8,"last_update":"2026-03-20T17:36:49.576215935Z"} +2026/03/20 17:36:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:49.586949122Z"} +2026/03/20 17:36:54 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":17.03294816338715,"throughput_eps":0,"last_update":"2026-03-20T17:36:49.719158095Z"} +2026/03/20 17:36:54 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":91.67847575255985,"throughput_eps":0,"last_update":"2026-03-20T17:36:49.719188493Z"} +2026/03/20 17:36:54 ───────────────────────────────────────────────── +2026/03/20 17:36:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:59 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":17.03294816338715,"throughput_eps":0,"last_update":"2026-03-20T17:36:54.719044593Z"} +2026/03/20 17:36:59 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":86.19104040204789,"throughput_eps":0,"last_update":"2026-03-20T17:36:54.783336037Z"} +2026/03/20 17:36:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:54.575743201Z"} +2026/03/20 17:36:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":581.8,"last_update":"2026-03-20T17:36:54.576054937Z"} +2026/03/20 17:36:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:54.586779417Z"} +2026/03/20 17:36:59 ───────────────────────────────────────────────── +2026/03/20 17:37:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:04 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":17.274344530709723,"throughput_eps":0,"last_update":"2026-03-20T17:36:59.719644469Z"} +2026/03/20 17:37:04 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":86.19104040204789,"throughput_eps":0,"last_update":"2026-03-20T17:36:59.719765229Z"} +2026/03/20 17:37:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:59.575532761Z"} +2026/03/20 17:37:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":582.8,"last_update":"2026-03-20T17:36:59.576015516Z"} +2026/03/20 17:37:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:59.585418558Z"} +2026/03/20 17:37:04 ───────────────────────────────────────────────── +2026/03/20 17:37:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":583.8,"last_update":"2026-03-20T17:37:04.576374557Z"} +2026/03/20 17:37:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1170,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:04.584808906Z"} +2026/03/20 17:37:09 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":17.274344530709723,"throughput_eps":0,"last_update":"2026-03-20T17:37:04.719271404Z"} +2026/03/20 17:37:09 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":86.19104040204789,"throughput_eps":0,"last_update":"2026-03-20T17:37:04.719231788Z"} +2026/03/20 17:37:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:04.576388044Z"} +2026/03/20 17:37:09 ───────────────────────────────────────────────── +2026/03/20 17:37:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:14 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":17.274344530709723,"throughput_eps":0,"last_update":"2026-03-20T17:37:09.719057985Z"} +2026/03/20 17:37:14 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":86.19104040204789,"throughput_eps":0,"last_update":"2026-03-20T17:37:09.719080488Z"} +2026/03/20 17:37:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:09.575732874Z"} +2026/03/20 17:37:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":584.8,"last_update":"2026-03-20T17:37:09.576135685Z"} +2026/03/20 17:37:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:09.585835195Z"} +2026/03/20 17:37:14 ───────────────────────────────────────────────── +2026/03/20 17:37:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:14.575665117Z"} +2026/03/20 17:37:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":585.8,"last_update":"2026-03-20T17:37:14.575644327Z"} +2026/03/20 17:37:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:14.587296834Z"} +2026/03/20 17:37:19 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":17.274344530709723,"throughput_eps":0,"last_update":"2026-03-20T17:37:14.719569451Z"} +2026/03/20 17:37:19 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":86.19104040204789,"throughput_eps":0,"last_update":"2026-03-20T17:37:14.719608355Z"} +2026/03/20 17:37:19 ───────────────────────────────────────────────── +2026/03/20 17:37:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:19.57576098Z"} +2026/03/20 17:37:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":586.8,"last_update":"2026-03-20T17:37:19.576107013Z"} +2026/03/20 17:37:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:19.58738293Z"} +2026/03/20 17:37:24 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":17.274344530709723,"throughput_eps":0,"last_update":"2026-03-20T17:37:19.718806805Z"} +2026/03/20 17:37:24 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":86.19104040204789,"throughput_eps":0,"last_update":"2026-03-20T17:37:19.718724808Z"} +2026/03/20 17:37:24 ───────────────────────────────────────────────── +2026/03/20 17:37:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:24.575601612Z"} +2026/03/20 17:37:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":587.8,"last_update":"2026-03-20T17:37:24.575728775Z"} +2026/03/20 17:37:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:24.586042392Z"} +2026/03/20 17:37:29 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":17.274344530709723,"throughput_eps":0,"last_update":"2026-03-20T17:37:24.719371608Z"} +2026/03/20 17:37:29 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":82.07541952163831,"throughput_eps":0,"last_update":"2026-03-20T17:37:24.78491467Z"} +2026/03/20 17:37:29 ───────────────────────────────────────────────── +2026/03/20 17:37:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:34 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":17.33203122456778,"throughput_eps":0,"last_update":"2026-03-20T17:37:29.719665677Z"} +2026/03/20 17:37:34 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":82.07541952163831,"throughput_eps":0,"last_update":"2026-03-20T17:37:29.719782831Z"} +2026/03/20 17:37:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:29.575527401Z"} +2026/03/20 17:37:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":588.8,"last_update":"2026-03-20T17:37:29.575948527Z"} +2026/03/20 17:37:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:29.587441751Z"} +2026/03/20 17:37:34 ───────────────────────────────────────────────── +2026/03/20 17:37:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:34.575797182Z"} +2026/03/20 17:37:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":589.8,"last_update":"2026-03-20T17:37:34.576112986Z"} +2026/03/20 17:37:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:34.586687352Z"} +2026/03/20 17:37:39 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":17.33203122456778,"throughput_eps":0,"last_update":"2026-03-20T17:37:34.719034086Z"} +2026/03/20 17:37:39 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":82.07541952163831,"throughput_eps":0,"last_update":"2026-03-20T17:37:34.718933143Z"} +2026/03/20 17:37:39 ───────────────────────────────────────────────── +2026/03/20 17:37:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":590.8,"last_update":"2026-03-20T17:37:39.576734109Z"} +2026/03/20 17:37:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:39.584945864Z"} +2026/03/20 17:37:44 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":17.33203122456778,"throughput_eps":0,"last_update":"2026-03-20T17:37:39.719329481Z"} +2026/03/20 17:37:44 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":82.07541952163831,"throughput_eps":0,"last_update":"2026-03-20T17:37:39.719402219Z"} +2026/03/20 17:37:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:39.576113742Z"} +2026/03/20 17:37:44 ───────────────────────────────────────────────── +2026/03/20 17:37:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:49 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":82.07541952163831,"throughput_eps":0,"last_update":"2026-03-20T17:37:44.718627096Z"} +2026/03/20 17:37:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:44.575544288Z"} +2026/03/20 17:37:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":591.8,"last_update":"2026-03-20T17:37:44.575590667Z"} +2026/03/20 17:37:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:44.585456987Z"} +2026/03/20 17:37:49 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":17.33203122456778,"throughput_eps":0,"last_update":"2026-03-20T17:37:44.719753912Z"} +2026/03/20 17:37:49 ───────────────────────────────────────────────── +2026/03/20 17:37:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:49.575580079Z"} +2026/03/20 17:37:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":592.8,"last_update":"2026-03-20T17:37:49.575706902Z"} +2026/03/20 17:37:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:49.586040908Z"} +2026/03/20 17:37:54 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":17.33203122456778,"throughput_eps":0,"last_update":"2026-03-20T17:37:49.719416755Z"} +2026/03/20 17:37:54 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":82.07541952163831,"throughput_eps":0,"last_update":"2026-03-20T17:37:49.719457652Z"} +2026/03/20 17:37:54 ───────────────────────────────────────────────── +2026/03/20 17:37:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:54.575545711Z"} +2026/03/20 17:37:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":593.8,"last_update":"2026-03-20T17:37:54.575794056Z"} +2026/03/20 17:37:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:54.586274904Z"} +2026/03/20 17:37:59 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":17.33203122456778,"throughput_eps":0,"last_update":"2026-03-20T17:37:54.719618703Z"} +2026/03/20 17:37:59 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":79.51010901731065,"throughput_eps":0,"last_update":"2026-03-20T17:37:54.789013608Z"} +2026/03/20 17:37:59 ───────────────────────────────────────────────── +2026/03/20 17:38:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:59.585364868Z"} +2026/03/20 17:38:04 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":17.480072179654222,"throughput_eps":0,"last_update":"2026-03-20T17:37:59.719820948Z"} +2026/03/20 17:38:04 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":79.51010901731065,"throughput_eps":0,"last_update":"2026-03-20T17:37:59.719854784Z"} +2026/03/20 17:38:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:59.575905073Z"} +2026/03/20 17:38:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":594.8,"last_update":"2026-03-20T17:37:59.576148108Z"} +2026/03/20 17:38:04 ───────────────────────────────────────────────── +2026/03/20 17:38:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:04.585102225Z"} +2026/03/20 17:38:09 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":17.480072179654222,"throughput_eps":0,"last_update":"2026-03-20T17:38:04.719485019Z"} +2026/03/20 17:38:09 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":79.51010901731065,"throughput_eps":0,"last_update":"2026-03-20T17:38:04.719518403Z"} +2026/03/20 17:38:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:04.575927205Z"} +2026/03/20 17:38:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":595.8,"last_update":"2026-03-20T17:38:04.576235264Z"} +2026/03/20 17:38:09 ───────────────────────────────────────────────── +2026/03/20 17:38:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:14 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":17.480072179654222,"throughput_eps":0,"last_update":"2026-03-20T17:38:09.719243124Z"} +2026/03/20 17:38:14 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":79.51010901731065,"throughput_eps":0,"last_update":"2026-03-20T17:38:09.71940327Z"} +2026/03/20 17:38:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:09.575874097Z"} +2026/03/20 17:38:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":596.8,"last_update":"2026-03-20T17:38:09.576170554Z"} +2026/03/20 17:38:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:09.585005632Z"} +2026/03/20 17:38:14 ───────────────────────────────────────────────── +2026/03/20 17:38:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:14.575943922Z"} +2026/03/20 17:38:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":597.8,"last_update":"2026-03-20T17:38:14.576502922Z"} +2026/03/20 17:38:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:14.585224614Z"} +2026/03/20 17:38:19 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":17.480072179654222,"throughput_eps":0,"last_update":"2026-03-20T17:38:14.719461146Z"} +2026/03/20 17:38:19 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":79.51010901731065,"throughput_eps":0,"last_update":"2026-03-20T17:38:14.71950485Z"} +2026/03/20 17:38:19 ───────────────────────────────────────────────── +2026/03/20 17:38:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:19.57556586Z"} +2026/03/20 17:38:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":598.8,"last_update":"2026-03-20T17:38:19.575681631Z"} +2026/03/20 17:38:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:19.585343293Z"} +2026/03/20 17:38:24 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":17.480072179654222,"throughput_eps":0,"last_update":"2026-03-20T17:38:19.719489206Z"} +2026/03/20 17:38:24 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":79.51010901731065,"throughput_eps":0,"last_update":"2026-03-20T17:38:19.719530154Z"} +2026/03/20 17:38:24 ───────────────────────────────────────────────── +2026/03/20 17:38:24 mad: auto-calibrated on 100 vectors (51 features) +2026/03/20 17:38:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":599.8,"last_update":"2026-03-20T17:38:24.576497585Z"} +2026/03/20 17:38:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:24.586858585Z"} +2026/03/20 17:38:29 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":17.480072179654222,"throughput_eps":0,"last_update":"2026-03-20T17:38:24.719090459Z"} +2026/03/20 17:38:29 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":86.33552421384853,"throughput_eps":0,"last_update":"2026-03-20T17:38:24.832840158Z"} +2026/03/20 17:38:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:24.575947021Z"} +2026/03/20 17:38:29 ───────────────────────────────────────────────── +2026/03/20 17:38:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:29.575510826Z"} +2026/03/20 17:38:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":600.8,"last_update":"2026-03-20T17:38:29.576042023Z"} +2026/03/20 17:38:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:29.586397363Z"} +2026/03/20 17:38:34 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":17.69173594372338,"throughput_eps":0,"last_update":"2026-03-20T17:38:29.719832072Z"} +2026/03/20 17:38:34 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":86.33552421384853,"throughput_eps":0,"last_update":"2026-03-20T17:38:29.718693903Z"} +2026/03/20 17:38:34 ───────────────────────────────────────────────── +2026/03/20 17:38:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:34.575508356Z"} +2026/03/20 17:38:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":601.8,"last_update":"2026-03-20T17:38:34.575712957Z"} +2026/03/20 17:38:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1206,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:34.586712811Z"} +2026/03/20 17:38:39 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":17.69173594372338,"throughput_eps":0,"last_update":"2026-03-20T17:38:34.719116019Z"} +2026/03/20 17:38:39 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":86.33552421384853,"throughput_eps":0,"last_update":"2026-03-20T17:38:34.719088126Z"} +2026/03/20 17:38:39 ───────────────────────────────────────────────── +2026/03/20 17:38:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:44 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":17.69173594372338,"throughput_eps":0,"last_update":"2026-03-20T17:38:39.719714325Z"} +2026/03/20 17:38:44 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":86.33552421384853,"throughput_eps":0,"last_update":"2026-03-20T17:38:39.719602722Z"} +2026/03/20 17:38:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:39.575758452Z"} +2026/03/20 17:38:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":602.8,"last_update":"2026-03-20T17:38:39.576191691Z"} +2026/03/20 17:38:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:39.585382743Z"} +2026/03/20 17:38:44 ───────────────────────────────────────────────── +2026/03/20 17:38:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:44.575683671Z"} +2026/03/20 17:38:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":603.8,"last_update":"2026-03-20T17:38:44.576034622Z"} +2026/03/20 17:38:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1210,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:44.586551812Z"} +2026/03/20 17:38:49 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":17.69173594372338,"throughput_eps":0,"last_update":"2026-03-20T17:38:44.718821062Z"} +2026/03/20 17:38:49 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":86.33552421384853,"throughput_eps":0,"last_update":"2026-03-20T17:38:44.718734566Z"} +2026/03/20 17:38:49 ───────────────────────────────────────────────── +2026/03/20 17:38:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:49.575606146Z"} +2026/03/20 17:38:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":604.8,"last_update":"2026-03-20T17:38:49.575758077Z"} +2026/03/20 17:38:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:49.585073858Z"} +2026/03/20 17:38:54 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":17.69173594372338,"throughput_eps":0,"last_update":"2026-03-20T17:38:49.719389537Z"} +2026/03/20 17:38:54 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":86.33552421384853,"throughput_eps":0,"last_update":"2026-03-20T17:38:49.719389147Z"} +2026/03/20 17:38:54 ───────────────────────────────────────────────── +2026/03/20 17:38:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:54.576493789Z"} +2026/03/20 17:38:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":605.8,"last_update":"2026-03-20T17:38:54.57537152Z"} +2026/03/20 17:38:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:54.58516692Z"} +2026/03/20 17:38:59 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":17.69173594372338,"throughput_eps":0,"last_update":"2026-03-20T17:38:54.720496494Z"} +2026/03/20 17:38:59 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":91.58801217107883,"throughput_eps":0,"last_update":"2026-03-20T17:38:54.831972409Z"} +2026/03/20 17:38:59 ───────────────────────────────────────────────── +2026/03/20 17:39:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:04 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":91.58801217107883,"throughput_eps":0,"last_update":"2026-03-20T17:38:59.718768573Z"} +2026/03/20 17:39:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:59.575523245Z"} +2026/03/20 17:39:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":606.8,"last_update":"2026-03-20T17:38:59.575761811Z"} +2026/03/20 17:39:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:59.586602011Z"} +2026/03/20 17:39:04 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":17.709567354978706,"throughput_eps":0,"last_update":"2026-03-20T17:38:59.718808069Z"} +2026/03/20 17:39:04 ───────────────────────────────────────────────── +2026/03/20 17:39:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:04.575913133Z"} +2026/03/20 17:39:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":607.8,"last_update":"2026-03-20T17:39:04.576216574Z"} +2026/03/20 17:39:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:04.58593717Z"} +2026/03/20 17:39:09 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":17.709567354978706,"throughput_eps":0,"last_update":"2026-03-20T17:39:04.719263757Z"} +2026/03/20 17:39:09 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":91.58801217107883,"throughput_eps":0,"last_update":"2026-03-20T17:39:04.719279237Z"} +2026/03/20 17:39:09 ───────────────────────────────────────────────── +2026/03/20 17:39:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:09.575815555Z"} +2026/03/20 17:39:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":608.8,"last_update":"2026-03-20T17:39:09.576186465Z"} +2026/03/20 17:39:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:09.584581544Z"} +2026/03/20 17:39:14 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":17.709567354978706,"throughput_eps":0,"last_update":"2026-03-20T17:39:09.718806073Z"} +2026/03/20 17:39:14 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":91.58801217107883,"throughput_eps":0,"last_update":"2026-03-20T17:39:09.71874165Z"} +2026/03/20 17:39:14 ───────────────────────────────────────────────── +2026/03/20 17:39:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:14.575834336Z"} +2026/03/20 17:39:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":609.8,"last_update":"2026-03-20T17:39:14.576147135Z"} +2026/03/20 17:39:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1222,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:14.585835159Z"} +2026/03/20 17:39:19 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":17.709567354978706,"throughput_eps":0,"last_update":"2026-03-20T17:39:14.719224393Z"} +2026/03/20 17:39:19 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":91.58801217107883,"throughput_eps":0,"last_update":"2026-03-20T17:39:14.719236446Z"} +2026/03/20 17:39:19 ───────────────────────────────────────────────── +2026/03/20 17:39:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:19.586266163Z"} +2026/03/20 17:39:24 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":17.709567354978706,"throughput_eps":0,"last_update":"2026-03-20T17:39:19.719583361Z"} +2026/03/20 17:39:24 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":91.58801217107883,"throughput_eps":0,"last_update":"2026-03-20T17:39:19.719594984Z"} +2026/03/20 17:39:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:19.57566498Z"} +2026/03/20 17:39:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":610.8,"last_update":"2026-03-20T17:39:19.576039497Z"} +2026/03/20 17:39:24 ───────────────────────────────────────────────── +2026/03/20 17:39:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:24.57601994Z"} +2026/03/20 17:39:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":611.8,"last_update":"2026-03-20T17:39:24.576262325Z"} +2026/03/20 17:39:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:24.58554863Z"} +2026/03/20 17:39:29 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":17.709567354978706,"throughput_eps":0,"last_update":"2026-03-20T17:39:24.718968519Z"} +2026/03/20 17:39:29 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":95.53450053686308,"throughput_eps":0,"last_update":"2026-03-20T17:39:24.830018705Z"} +2026/03/20 17:39:29 ───────────────────────────────────────────────── +2026/03/20 17:39:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:29.575564692Z"} +2026/03/20 17:39:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":612.8,"last_update":"2026-03-20T17:39:29.57567382Z"} +2026/03/20 17:39:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:29.585949161Z"} +2026/03/20 17:39:34 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":17.847818683982965,"throughput_eps":0,"last_update":"2026-03-20T17:39:29.719387648Z"} +2026/03/20 17:39:34 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":95.53450053686308,"throughput_eps":0,"last_update":"2026-03-20T17:39:29.719416634Z"} +2026/03/20 17:39:34 ───────────────────────────────────────────────── +2026/03/20 17:39:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":613.8,"last_update":"2026-03-20T17:39:34.575745944Z"} +2026/03/20 17:39:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:34.586117558Z"} +2026/03/20 17:39:39 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":17.847818683982965,"throughput_eps":0,"last_update":"2026-03-20T17:39:34.719549426Z"} +2026/03/20 17:39:39 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":95.53450053686308,"throughput_eps":0,"last_update":"2026-03-20T17:39:34.719499601Z"} +2026/03/20 17:39:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:34.575553605Z"} +2026/03/20 17:39:39 ───────────────────────────────────────────────── +2026/03/20 17:39:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:44 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":17.847818683982965,"throughput_eps":0,"last_update":"2026-03-20T17:39:39.719066188Z"} +2026/03/20 17:39:44 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":95.53450053686308,"throughput_eps":0,"last_update":"2026-03-20T17:39:39.719108038Z"} +2026/03/20 17:39:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:39.576012037Z"} +2026/03/20 17:39:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":614.8,"last_update":"2026-03-20T17:39:39.576342168Z"} +2026/03/20 17:39:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:39.58480586Z"} +2026/03/20 17:39:44 ───────────────────────────────────────────────── +2026/03/20 17:39:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":615.8,"last_update":"2026-03-20T17:39:44.575828288Z"} +2026/03/20 17:39:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:44.585213213Z"} +2026/03/20 17:39:49 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":17.847818683982965,"throughput_eps":0,"last_update":"2026-03-20T17:39:44.71952355Z"} +2026/03/20 17:39:49 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":95.53450053686308,"throughput_eps":0,"last_update":"2026-03-20T17:39:44.719540632Z"} +2026/03/20 17:39:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:44.575503616Z"} +2026/03/20 17:39:49 ───────────────────────────────────────────────── +2026/03/20 17:39:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:54 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":95.53450053686308,"throughput_eps":0,"last_update":"2026-03-20T17:39:49.719322747Z"} +2026/03/20 17:39:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:49.575994995Z"} +2026/03/20 17:39:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":616.8,"last_update":"2026-03-20T17:39:49.576175822Z"} +2026/03/20 17:39:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:49.585949502Z"} +2026/03/20 17:39:54 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":17.847818683982965,"throughput_eps":0,"last_update":"2026-03-20T17:39:49.719275777Z"} +2026/03/20 17:39:54 ───────────────────────────────────────────────── +2026/03/20 17:39:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:54.586086461Z"} +2026/03/20 17:39:59 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":17.847818683982965,"throughput_eps":0,"last_update":"2026-03-20T17:39:54.719545823Z"} +2026/03/20 17:39:59 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":89.12078422949047,"throughput_eps":0,"last_update":"2026-03-20T17:39:54.782912111Z"} +2026/03/20 17:39:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:54.575519652Z"} +2026/03/20 17:39:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":617.8,"last_update":"2026-03-20T17:39:54.575824305Z"} +2026/03/20 17:39:59 ───────────────────────────────────────────────── +2026/03/20 17:40:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":618.8,"last_update":"2026-03-20T17:39:59.576010935Z"} +2026/03/20 17:40:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:59.586233063Z"} +2026/03/20 17:40:04 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":17.667138547186372,"throughput_eps":0,"last_update":"2026-03-20T17:39:59.719412012Z"} +2026/03/20 17:40:04 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":89.12078422949047,"throughput_eps":0,"last_update":"2026-03-20T17:39:59.71951561Z"} +2026/03/20 17:40:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:59.575557837Z"} +2026/03/20 17:40:04 ───────────────────────────────────────────────── +2026/03/20 17:40:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:09 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":17.667138547186372,"throughput_eps":0,"last_update":"2026-03-20T17:40:04.719174024Z"} +2026/03/20 17:40:09 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":89.12078422949047,"throughput_eps":0,"last_update":"2026-03-20T17:40:04.719153765Z"} +2026/03/20 17:40:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:04.575672089Z"} +2026/03/20 17:40:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":619.8,"last_update":"2026-03-20T17:40:04.57608017Z"} +2026/03/20 17:40:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:04.594925789Z"} +2026/03/20 17:40:09 ───────────────────────────────────────────────── +2026/03/20 17:40:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:09.57560077Z"} +2026/03/20 17:40:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":620.8,"last_update":"2026-03-20T17:40:09.576111198Z"} +2026/03/20 17:40:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:09.586264345Z"} +2026/03/20 17:40:14 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":17.667138547186372,"throughput_eps":0,"last_update":"2026-03-20T17:40:09.719498796Z"} +2026/03/20 17:40:14 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":89.12078422949047,"throughput_eps":0,"last_update":"2026-03-20T17:40:09.719613336Z"} +2026/03/20 17:40:14 ───────────────────────────────────────────────── +2026/03/20 17:40:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:14.575836219Z"} +2026/03/20 17:40:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":621.8,"last_update":"2026-03-20T17:40:14.576608678Z"} +2026/03/20 17:40:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1246,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:14.586176085Z"} +2026/03/20 17:40:19 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":17.667138547186372,"throughput_eps":0,"last_update":"2026-03-20T17:40:14.719527564Z"} +2026/03/20 17:40:19 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":89.12078422949047,"throughput_eps":0,"last_update":"2026-03-20T17:40:14.71947841Z"} +2026/03/20 17:40:19 ───────────────────────────────────────────────── +2026/03/20 17:40:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:24 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":89.12078422949047,"throughput_eps":0,"last_update":"2026-03-20T17:40:19.719393149Z"} +2026/03/20 17:40:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:19.575986518Z"} +2026/03/20 17:40:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":622.8,"last_update":"2026-03-20T17:40:19.576287174Z"} +2026/03/20 17:40:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:19.586154014Z"} +2026/03/20 17:40:24 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":17.667138547186372,"throughput_eps":0,"last_update":"2026-03-20T17:40:19.719437995Z"} +2026/03/20 17:40:24 ───────────────────────────────────────────────── +2026/03/20 17:40:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:29 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":17.667138547186372,"throughput_eps":0,"last_update":"2026-03-20T17:40:24.719838314Z"} +2026/03/20 17:40:29 [transform_engine] {"stage_name":"transform_engine","events_processed":104,"events_dropped":0,"avg_latency_ms":93.97818178359239,"throughput_eps":0,"last_update":"2026-03-20T17:40:24.832153444Z"} +2026/03/20 17:40:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:24.575511247Z"} +2026/03/20 17:40:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":623.8,"last_update":"2026-03-20T17:40:24.575837481Z"} +2026/03/20 17:40:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:24.586194831Z"} +2026/03/20 17:40:29 ───────────────────────────────────────────────── +2026/03/20 17:40:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:29.575726077Z"} +2026/03/20 17:40:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":624.8,"last_update":"2026-03-20T17:40:29.576125672Z"} +2026/03/20 17:40:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:29.586005707Z"} +2026/03/20 17:40:34 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":17.7591440377491,"throughput_eps":0,"last_update":"2026-03-20T17:40:29.719421488Z"} +2026/03/20 17:40:34 [transform_engine] {"stage_name":"transform_engine","events_processed":104,"events_dropped":0,"avg_latency_ms":93.97818178359239,"throughput_eps":0,"last_update":"2026-03-20T17:40:29.719389346Z"} +2026/03/20 17:40:34 ───────────────────────────────────────────────── +2026/03/20 17:40:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":625.8,"last_update":"2026-03-20T17:40:34.575679031Z"} +2026/03/20 17:40:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:34.586907018Z"} +2026/03/20 17:40:39 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":17.7591440377491,"throughput_eps":0,"last_update":"2026-03-20T17:40:34.719148684Z"} +2026/03/20 17:40:39 [transform_engine] {"stage_name":"transform_engine","events_processed":104,"events_dropped":0,"avg_latency_ms":93.97818178359239,"throughput_eps":0,"last_update":"2026-03-20T17:40:34.719160416Z"} +2026/03/20 17:40:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:34.575522822Z"} +2026/03/20 17:40:39 ───────────────────────────────────────────────── +2026/03/20 17:40:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:39.575511792Z"} +2026/03/20 17:40:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":626.8,"last_update":"2026-03-20T17:40:39.57558381Z"} +2026/03/20 17:40:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:39.586226886Z"} +2026/03/20 17:40:44 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":17.7591440377491,"throughput_eps":0,"last_update":"2026-03-20T17:40:39.71953194Z"} +2026/03/20 17:40:44 [transform_engine] {"stage_name":"transform_engine","events_processed":104,"events_dropped":0,"avg_latency_ms":93.97818178359239,"throughput_eps":0,"last_update":"2026-03-20T17:40:39.719486684Z"} +2026/03/20 17:40:44 ───────────────────────────────────────────────── +2026/03/20 17:40:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:44.575942231Z"} +2026/03/20 17:40:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":627.8,"last_update":"2026-03-20T17:40:44.576294916Z"} +2026/03/20 17:40:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:44.585435527Z"} +2026/03/20 17:40:49 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":17.7591440377491,"throughput_eps":0,"last_update":"2026-03-20T17:40:44.71973091Z"} +2026/03/20 17:40:49 [transform_engine] {"stage_name":"transform_engine","events_processed":104,"events_dropped":0,"avg_latency_ms":93.97818178359239,"throughput_eps":0,"last_update":"2026-03-20T17:40:44.719848885Z"} +2026/03/20 17:40:49 ───────────────────────────────────────────────── +2026/03/20 17:40:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:54 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":17.7591440377491,"throughput_eps":0,"last_update":"2026-03-20T17:40:49.719370303Z"} +2026/03/20 17:40:54 [transform_engine] {"stage_name":"transform_engine","events_processed":104,"events_dropped":0,"avg_latency_ms":93.97818178359239,"throughput_eps":0,"last_update":"2026-03-20T17:40:49.719381183Z"} +2026/03/20 17:40:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:49.57587878Z"} +2026/03/20 17:40:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":628.8,"last_update":"2026-03-20T17:40:49.576170128Z"} +2026/03/20 17:40:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:49.584988181Z"} +2026/03/20 17:40:54 ───────────────────────────────────────────────── +2026/03/20 17:40:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:54.586085656Z"} +2026/03/20 17:40:59 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":17.7591440377491,"throughput_eps":0,"last_update":"2026-03-20T17:40:54.719319652Z"} +2026/03/20 17:40:59 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":88.22361042687392,"throughput_eps":0,"last_update":"2026-03-20T17:40:54.784537591Z"} +2026/03/20 17:40:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:54.575959819Z"} +2026/03/20 17:40:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":629.8,"last_update":"2026-03-20T17:40:54.576276004Z"} +2026/03/20 17:40:59 ───────────────────────────────────────────────── +2026/03/20 17:41:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:59.585317592Z"} +2026/03/20 17:41:04 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":17.49918003019928,"throughput_eps":0,"last_update":"2026-03-20T17:40:59.719545894Z"} +2026/03/20 17:41:04 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":88.22361042687392,"throughput_eps":0,"last_update":"2026-03-20T17:40:59.719586582Z"} +2026/03/20 17:41:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:59.575813705Z"} +2026/03/20 17:41:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":630.8,"last_update":"2026-03-20T17:40:59.576183763Z"} +2026/03/20 17:41:04 ───────────────────────────────────────────────── +2026/03/20 17:41:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:04.576306004Z"} +2026/03/20 17:41:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":631.8,"last_update":"2026-03-20T17:41:04.576187136Z"} +2026/03/20 17:41:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:04.584783576Z"} +2026/03/20 17:41:09 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":17.49918003019928,"throughput_eps":0,"last_update":"2026-03-20T17:41:04.719160245Z"} +2026/03/20 17:41:09 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":88.22361042687392,"throughput_eps":0,"last_update":"2026-03-20T17:41:04.719215731Z"} +2026/03/20 17:41:09 ───────────────────────────────────────────────── +2026/03/20 17:41:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:14 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":88.22361042687392,"throughput_eps":0,"last_update":"2026-03-20T17:41:09.719588455Z"} +2026/03/20 17:41:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:09.575498555Z"} +2026/03/20 17:41:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":632.8,"last_update":"2026-03-20T17:41:09.576032026Z"} +2026/03/20 17:41:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:09.586188223Z"} +2026/03/20 17:41:14 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":17.49918003019928,"throughput_eps":0,"last_update":"2026-03-20T17:41:09.719731048Z"} +2026/03/20 17:41:14 ───────────────────────────────────────────────── +2026/03/20 17:41:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:14.57566398Z"} +2026/03/20 17:41:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":633.8,"last_update":"2026-03-20T17:41:14.576085808Z"} +2026/03/20 17:41:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:14.585666683Z"} +2026/03/20 17:41:19 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":17.49918003019928,"throughput_eps":0,"last_update":"2026-03-20T17:41:14.719006162Z"} +2026/03/20 17:41:19 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":88.22361042687392,"throughput_eps":0,"last_update":"2026-03-20T17:41:14.719060075Z"} +2026/03/20 17:41:19 ───────────────────────────────────────────────── +2026/03/20 17:41:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:19.575794585Z"} +2026/03/20 17:41:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":634.8,"last_update":"2026-03-20T17:41:19.576149926Z"} +2026/03/20 17:41:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:19.584465077Z"} +2026/03/20 17:41:24 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":17.49918003019928,"throughput_eps":0,"last_update":"2026-03-20T17:41:19.718923962Z"} +2026/03/20 17:41:24 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":88.22361042687392,"throughput_eps":0,"last_update":"2026-03-20T17:41:19.71865156Z"} +2026/03/20 17:41:24 ───────────────────────────────────────────────── +2026/03/20 17:41:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:24.575703264Z"} +2026/03/20 17:41:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":635.8,"last_update":"2026-03-20T17:41:24.576094733Z"} +2026/03/20 17:41:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:24.587051563Z"} +2026/03/20 17:41:29 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":17.49918003019928,"throughput_eps":0,"last_update":"2026-03-20T17:41:24.719443854Z"} +2026/03/20 17:41:29 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":93.35834174149915,"throughput_eps":0,"last_update":"2026-03-20T17:41:24.833309489Z"} +2026/03/20 17:41:29 ───────────────────────────────────────────────── +2026/03/20 17:41:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:29.575921282Z"} +2026/03/20 17:41:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":636.8,"last_update":"2026-03-20T17:41:29.576288444Z"} +2026/03/20 17:41:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1276,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:29.585732999Z"} +2026/03/20 17:41:34 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":17.439795824159425,"throughput_eps":0,"last_update":"2026-03-20T17:41:29.719188016Z"} +2026/03/20 17:41:34 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":93.35834174149915,"throughput_eps":0,"last_update":"2026-03-20T17:41:29.719220047Z"} +2026/03/20 17:41:34 ───────────────────────────────────────────────── +2026/03/20 17:41:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:39 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":93.35834174149915,"throughput_eps":0,"last_update":"2026-03-20T17:41:34.718776275Z"} +2026/03/20 17:41:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:34.575735149Z"} +2026/03/20 17:41:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":637.8,"last_update":"2026-03-20T17:41:34.576015586Z"} +2026/03/20 17:41:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:34.586541071Z"} +2026/03/20 17:41:39 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":17.439795824159425,"throughput_eps":0,"last_update":"2026-03-20T17:41:34.718795051Z"} +2026/03/20 17:41:39 ───────────────────────────────────────────────── +2026/03/20 17:41:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":638.8,"last_update":"2026-03-20T17:41:39.575425095Z"} +2026/03/20 17:41:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:39.585191817Z"} +2026/03/20 17:41:44 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":17.439795824159425,"throughput_eps":0,"last_update":"2026-03-20T17:41:39.719481258Z"} +2026/03/20 17:41:44 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":93.35834174149915,"throughput_eps":0,"last_update":"2026-03-20T17:41:39.719580858Z"} +2026/03/20 17:41:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:39.576486007Z"} +2026/03/20 17:41:44 ───────────────────────────────────────────────── +2026/03/20 17:41:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:44.575766842Z"} +2026/03/20 17:41:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":639.8,"last_update":"2026-03-20T17:41:44.57617322Z"} +2026/03/20 17:41:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:44.587059956Z"} +2026/03/20 17:41:49 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":17.439795824159425,"throughput_eps":0,"last_update":"2026-03-20T17:41:44.719438761Z"} +2026/03/20 17:41:49 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":93.35834174149915,"throughput_eps":0,"last_update":"2026-03-20T17:41:44.719540676Z"} +2026/03/20 17:41:49 ───────────────────────────────────────────────── +2026/03/20 17:41:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:49.575749313Z"} +2026/03/20 17:41:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":640.8,"last_update":"2026-03-20T17:41:49.576030892Z"} +2026/03/20 17:41:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:49.587399652Z"} +2026/03/20 17:41:54 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":17.439795824159425,"throughput_eps":0,"last_update":"2026-03-20T17:41:49.719780131Z"} +2026/03/20 17:41:54 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":93.35834174149915,"throughput_eps":0,"last_update":"2026-03-20T17:41:49.719709516Z"} +2026/03/20 17:41:54 ───────────────────────────────────────────────── +2026/03/20 17:41:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1286,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:54.586621089Z"} +2026/03/20 17:41:59 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":17.439795824159425,"throughput_eps":0,"last_update":"2026-03-20T17:41:54.719451553Z"} +2026/03/20 17:41:59 [transform_engine] {"stage_name":"transform_engine","events_processed":107,"events_dropped":0,"avg_latency_ms":87.75788319319932,"throughput_eps":0,"last_update":"2026-03-20T17:41:54.784146627Z"} +2026/03/20 17:41:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:54.576429644Z"} +2026/03/20 17:41:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":641.8,"last_update":"2026-03-20T17:41:54.575407857Z"} +2026/03/20 17:41:59 ───────────────────────────────────────────────── +2026/03/20 17:42:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:04 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":17.33786845932754,"throughput_eps":0,"last_update":"2026-03-20T17:41:59.71926674Z"} +2026/03/20 17:42:04 [transform_engine] {"stage_name":"transform_engine","events_processed":107,"events_dropped":0,"avg_latency_ms":87.75788319319932,"throughput_eps":0,"last_update":"2026-03-20T17:41:59.719238937Z"} +2026/03/20 17:42:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:59.576664733Z"} +2026/03/20 17:42:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":642.8,"last_update":"2026-03-20T17:41:59.575467048Z"} +2026/03/20 17:42:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:59.585852415Z"} +2026/03/20 17:42:04 ───────────────────────────────────────────────── +2026/03/20 17:42:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:04.585594802Z"} +2026/03/20 17:42:09 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":17.33786845932754,"throughput_eps":0,"last_update":"2026-03-20T17:42:04.718792834Z"} +2026/03/20 17:42:09 [transform_engine] {"stage_name":"transform_engine","events_processed":107,"events_dropped":0,"avg_latency_ms":87.75788319319932,"throughput_eps":0,"last_update":"2026-03-20T17:42:04.718753659Z"} +2026/03/20 17:42:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:04.575538876Z"} +2026/03/20 17:42:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":643.8,"last_update":"2026-03-20T17:42:04.575550618Z"} +2026/03/20 17:42:09 ───────────────────────────────────────────────── +2026/03/20 17:42:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:14 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":17.33786845932754,"throughput_eps":0,"last_update":"2026-03-20T17:42:09.719381462Z"} +2026/03/20 17:42:14 [transform_engine] {"stage_name":"transform_engine","events_processed":107,"events_dropped":0,"avg_latency_ms":87.75788319319932,"throughput_eps":0,"last_update":"2026-03-20T17:42:09.719400277Z"} +2026/03/20 17:42:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:09.575933678Z"} +2026/03/20 17:42:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":644.8,"last_update":"2026-03-20T17:42:09.576323676Z"} +2026/03/20 17:42:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:09.585018435Z"} +2026/03/20 17:42:14 ───────────────────────────────────────────────── +2026/03/20 17:42:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:14.575759912Z"} +2026/03/20 17:42:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":645.8,"last_update":"2026-03-20T17:42:14.576205305Z"} +2026/03/20 17:42:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:14.58542994Z"} +2026/03/20 17:42:19 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":17.33786845932754,"throughput_eps":0,"last_update":"2026-03-20T17:42:14.718881613Z"} +2026/03/20 17:42:19 [transform_engine] {"stage_name":"transform_engine","events_processed":107,"events_dropped":0,"avg_latency_ms":87.75788319319932,"throughput_eps":0,"last_update":"2026-03-20T17:42:14.718770781Z"} +2026/03/20 17:42:19 ───────────────────────────────────────────────── +2026/03/20 17:42:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:19.575487883Z"} +2026/03/20 17:42:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":646.8,"last_update":"2026-03-20T17:42:19.575841591Z"} +2026/03/20 17:42:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:19.586043939Z"} +2026/03/20 17:42:24 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":17.33786845932754,"throughput_eps":0,"last_update":"2026-03-20T17:42:19.719276264Z"} +2026/03/20 17:42:24 [transform_engine] {"stage_name":"transform_engine","events_processed":107,"events_dropped":0,"avg_latency_ms":87.75788319319932,"throughput_eps":0,"last_update":"2026-03-20T17:42:19.719307885Z"} +2026/03/20 17:42:24 ───────────────────────────────────────────────── +2026/03/20 17:42:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":647.8,"last_update":"2026-03-20T17:42:24.575712374Z"} +2026/03/20 17:42:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:24.586163508Z"} +2026/03/20 17:42:29 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":17.33786845932754,"throughput_eps":0,"last_update":"2026-03-20T17:42:24.719410033Z"} +2026/03/20 17:42:29 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":93.36222375455947,"throughput_eps":0,"last_update":"2026-03-20T17:42:24.835215819Z"} +2026/03/20 17:42:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:24.575497482Z"} +2026/03/20 17:42:29 ───────────────────────────────────────────────── +2026/03/20 17:42:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:34 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":17.142302567462036,"throughput_eps":0,"last_update":"2026-03-20T17:42:29.719429559Z"} +2026/03/20 17:42:34 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":93.36222375455947,"throughput_eps":0,"last_update":"2026-03-20T17:42:29.719396074Z"} +2026/03/20 17:42:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:29.57552947Z"} +2026/03/20 17:42:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":648.8,"last_update":"2026-03-20T17:42:29.576001824Z"} +2026/03/20 17:42:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:29.586013527Z"} +2026/03/20 17:42:34 ───────────────────────────────────────────────── +2026/03/20 17:42:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:34.575532246Z"} +2026/03/20 17:42:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":649.8,"last_update":"2026-03-20T17:42:34.575756365Z"} +2026/03/20 17:42:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:34.587079178Z"} +2026/03/20 17:42:39 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":17.142302567462036,"throughput_eps":0,"last_update":"2026-03-20T17:42:34.71946543Z"} +2026/03/20 17:42:39 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":93.36222375455947,"throughput_eps":0,"last_update":"2026-03-20T17:42:34.719499846Z"} +2026/03/20 17:42:39 ───────────────────────────────────────────────── +2026/03/20 17:42:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:39.575508445Z"} +2026/03/20 17:42:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":650.8,"last_update":"2026-03-20T17:42:39.575648394Z"} +2026/03/20 17:42:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:39.586238714Z"} +2026/03/20 17:42:44 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":17.142302567462036,"throughput_eps":0,"last_update":"2026-03-20T17:42:39.719586962Z"} +2026/03/20 17:42:44 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":93.36222375455947,"throughput_eps":0,"last_update":"2026-03-20T17:42:39.719487351Z"} +2026/03/20 17:42:44 ───────────────────────────────────────────────── +2026/03/20 17:42:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:44.584844945Z"} +2026/03/20 17:42:49 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":17.142302567462036,"throughput_eps":0,"last_update":"2026-03-20T17:42:44.719304461Z"} +2026/03/20 17:42:49 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":93.36222375455947,"throughput_eps":0,"last_update":"2026-03-20T17:42:44.719193208Z"} +2026/03/20 17:42:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:44.575533092Z"} +2026/03/20 17:42:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":651.8,"last_update":"2026-03-20T17:42:44.575945642Z"} +2026/03/20 17:42:49 ───────────────────────────────────────────────── +2026/03/20 17:42:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:49.575504508Z"} +2026/03/20 17:42:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":652.8,"last_update":"2026-03-20T17:42:49.575721364Z"} +2026/03/20 17:42:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:49.586634364Z"} +2026/03/20 17:42:54 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":17.142302567462036,"throughput_eps":0,"last_update":"2026-03-20T17:42:49.719086598Z"} +2026/03/20 17:42:54 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":93.36222375455947,"throughput_eps":0,"last_update":"2026-03-20T17:42:49.71920789Z"} +2026/03/20 17:42:54 ───────────────────────────────────────────────── +2026/03/20 17:42:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:54.575901552Z"} +2026/03/20 17:42:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":653.8,"last_update":"2026-03-20T17:42:54.576259357Z"} +2026/03/20 17:42:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:54.586329192Z"} +2026/03/20 17:42:59 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":17.142302567462036,"throughput_eps":0,"last_update":"2026-03-20T17:42:54.719830758Z"} +2026/03/20 17:42:59 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":87.55988020364757,"throughput_eps":0,"last_update":"2026-03-20T17:42:54.784205742Z"} +2026/03/20 17:42:59 ───────────────────────────────────────────────── +2026/03/20 17:43:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:59.584846786Z"} +2026/03/20 17:43:04 [detection_layer] {"stage_name":"detection_layer","events_processed":109,"events_dropped":0,"avg_latency_ms":17.29237505396963,"throughput_eps":0,"last_update":"2026-03-20T17:42:59.719132737Z"} +2026/03/20 17:43:04 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":87.55988020364757,"throughput_eps":0,"last_update":"2026-03-20T17:42:59.719138057Z"} +2026/03/20 17:43:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:59.575766637Z"} +2026/03/20 17:43:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":654.8,"last_update":"2026-03-20T17:42:59.576092711Z"} +2026/03/20 17:43:04 ───────────────────────────────────────────────── +2026/03/20 17:43:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:04.575550325Z"} +2026/03/20 17:43:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":655.8,"last_update":"2026-03-20T17:43:04.575496352Z"} +2026/03/20 17:43:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:04.585974319Z"} +2026/03/20 17:43:09 [detection_layer] {"stage_name":"detection_layer","events_processed":109,"events_dropped":0,"avg_latency_ms":17.29237505396963,"throughput_eps":0,"last_update":"2026-03-20T17:43:04.719333307Z"} +2026/03/20 17:43:09 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":87.55988020364757,"throughput_eps":0,"last_update":"2026-03-20T17:43:04.719345471Z"} +2026/03/20 17:43:09 ───────────────────────────────────────────────── +2026/03/20 17:43:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:09.575518198Z"} +2026/03/20 17:43:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":656.8,"last_update":"2026-03-20T17:43:09.575774769Z"} +2026/03/20 17:43:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:09.584995057Z"} +2026/03/20 17:43:14 [detection_layer] {"stage_name":"detection_layer","events_processed":109,"events_dropped":0,"avg_latency_ms":17.29237505396963,"throughput_eps":0,"last_update":"2026-03-20T17:43:09.719401825Z"} +2026/03/20 17:43:14 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":87.55988020364757,"throughput_eps":0,"last_update":"2026-03-20T17:43:09.719414188Z"} +2026/03/20 17:43:14 ───────────────────────────────────────────────── +2026/03/20 17:43:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:14.585196333Z"} +2026/03/20 17:43:19 [detection_layer] {"stage_name":"detection_layer","events_processed":109,"events_dropped":0,"avg_latency_ms":17.29237505396963,"throughput_eps":0,"last_update":"2026-03-20T17:43:14.719403129Z"} +2026/03/20 17:43:19 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":87.55988020364757,"throughput_eps":0,"last_update":"2026-03-20T17:43:14.719411094Z"} +2026/03/20 17:43:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:14.575771293Z"} +2026/03/20 17:43:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":657.8,"last_update":"2026-03-20T17:43:14.576048824Z"} +2026/03/20 17:43:19 ───────────────────────────────────────────────── +2026/03/20 17:43:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:24 [detection_layer] {"stage_name":"detection_layer","events_processed":109,"events_dropped":0,"avg_latency_ms":17.29237505396963,"throughput_eps":0,"last_update":"2026-03-20T17:43:19.719470359Z"} +2026/03/20 17:43:24 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":87.55988020364757,"throughput_eps":0,"last_update":"2026-03-20T17:43:19.719478133Z"} +2026/03/20 17:43:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:19.576015759Z"} +2026/03/20 17:43:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":658.8,"last_update":"2026-03-20T17:43:19.576195563Z"} +2026/03/20 17:43:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1320,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:19.585198606Z"} +2026/03/20 17:43:24 ───────────────────────────────────────────────── +2026/03/20 17:43:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:24.57562172Z"} +2026/03/20 17:43:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":659.8,"last_update":"2026-03-20T17:43:24.575606752Z"} +2026/03/20 17:43:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:24.586798405Z"} +2026/03/20 17:43:29 [detection_layer] {"stage_name":"detection_layer","events_processed":109,"events_dropped":0,"avg_latency_ms":17.29237505396963,"throughput_eps":0,"last_update":"2026-03-20T17:43:24.719191973Z"} +2026/03/20 17:43:29 [transform_engine] {"stage_name":"transform_engine","events_processed":110,"events_dropped":0,"avg_latency_ms":82.72056856291806,"throughput_eps":0,"last_update":"2026-03-20T17:43:24.782571446Z"} +2026/03/20 17:43:29 ───────────────────────────────────────────────── +2026/03/20 17:43:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3303,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":660.6,"last_update":"2026-03-20T17:43:29.575878664Z"} +2026/03/20 17:43:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:29.585613618Z"} +2026/03/20 17:43:34 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":16.313763243175703,"throughput_eps":0,"last_update":"2026-03-20T17:43:29.718822109Z"} +2026/03/20 17:43:34 [transform_engine] {"stage_name":"transform_engine","events_processed":110,"events_dropped":0,"avg_latency_ms":82.72056856291806,"throughput_eps":0,"last_update":"2026-03-20T17:43:29.718771321Z"} +2026/03/20 17:43:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:29.576060101Z"} +2026/03/20 17:43:34 ───────────────────────────────────────────────── +2026/03/20 17:43:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:39 [transform_engine] {"stage_name":"transform_engine","events_processed":110,"events_dropped":0,"avg_latency_ms":82.72056856291806,"throughput_eps":0,"last_update":"2026-03-20T17:43:34.71934049Z"} +2026/03/20 17:43:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:34.575517969Z"} +2026/03/20 17:43:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":661.8,"last_update":"2026-03-20T17:43:34.57554432Z"} +2026/03/20 17:43:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:34.586066803Z"} +2026/03/20 17:43:39 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":16.313763243175703,"throughput_eps":0,"last_update":"2026-03-20T17:43:34.71931455Z"} +2026/03/20 17:43:39 ───────────────────────────────────────────────── +2026/03/20 17:43:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:39.575891089Z"} +2026/03/20 17:43:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":662.8,"last_update":"2026-03-20T17:43:39.576076624Z"} +2026/03/20 17:43:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:39.58827155Z"} +2026/03/20 17:43:44 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":16.313763243175703,"throughput_eps":0,"last_update":"2026-03-20T17:43:39.719554987Z"} +2026/03/20 17:43:44 [transform_engine] {"stage_name":"transform_engine","events_processed":110,"events_dropped":0,"avg_latency_ms":82.72056856291806,"throughput_eps":0,"last_update":"2026-03-20T17:43:39.719599302Z"} +2026/03/20 17:43:44 ───────────────────────────────────────────────── +2026/03/20 17:43:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:49 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":16.313763243175703,"throughput_eps":0,"last_update":"2026-03-20T17:43:44.718896826Z"} +2026/03/20 17:43:49 [transform_engine] {"stage_name":"transform_engine","events_processed":110,"events_dropped":0,"avg_latency_ms":82.72056856291806,"throughput_eps":0,"last_update":"2026-03-20T17:43:44.718917004Z"} +2026/03/20 17:43:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:44.575753412Z"} +2026/03/20 17:43:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":663.8,"last_update":"2026-03-20T17:43:44.576001497Z"} +2026/03/20 17:43:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1330,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:44.585645488Z"} +2026/03/20 17:43:49 ───────────────────────────────────────────────── +2026/03/20 17:43:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:54 [transform_engine] {"stage_name":"transform_engine","events_processed":110,"events_dropped":0,"avg_latency_ms":82.72056856291806,"throughput_eps":0,"last_update":"2026-03-20T17:43:49.719389532Z"} +2026/03/20 17:43:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:49.575531247Z"} +2026/03/20 17:43:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":664.8,"last_update":"2026-03-20T17:43:49.575516639Z"} +2026/03/20 17:43:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:49.585149278Z"} +2026/03/20 17:43:54 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":16.313763243175703,"throughput_eps":0,"last_update":"2026-03-20T17:43:49.719417326Z"} +2026/03/20 17:43:54 ───────────────────────────────────────────────── +2026/03/20 17:43:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:54.575871462Z"} +2026/03/20 17:43:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":665.8,"last_update":"2026-03-20T17:43:54.576204369Z"} +2026/03/20 17:43:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:54.58555029Z"} +2026/03/20 17:43:59 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":16.313763243175703,"throughput_eps":0,"last_update":"2026-03-20T17:43:54.718880122Z"} +2026/03/20 17:43:59 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":78.82423065033446,"throughput_eps":0,"last_update":"2026-03-20T17:43:54.781957652Z"} +2026/03/20 17:43:59 ───────────────────────────────────────────────── +2026/03/20 17:44:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:59.576062072Z"} +2026/03/20 17:44:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":666.8,"last_update":"2026-03-20T17:43:59.576511323Z"} +2026/03/20 17:44:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:59.5866285Z"} +2026/03/20 17:44:04 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":16.815925394540564,"throughput_eps":0,"last_update":"2026-03-20T17:43:59.718972035Z"} +2026/03/20 17:44:04 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":78.82423065033446,"throughput_eps":0,"last_update":"2026-03-20T17:43:59.718927339Z"} +2026/03/20 17:44:04 ───────────────────────────────────────────────── +2026/03/20 17:44:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:04.586383076Z"} +2026/03/20 17:44:09 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":16.815925394540564,"throughput_eps":0,"last_update":"2026-03-20T17:44:04.719728732Z"} +2026/03/20 17:44:09 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":78.82423065033446,"throughput_eps":0,"last_update":"2026-03-20T17:44:04.719698675Z"} +2026/03/20 17:44:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:04.575765861Z"} +2026/03/20 17:44:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":667.8,"last_update":"2026-03-20T17:44:04.576076104Z"} +2026/03/20 17:44:09 ───────────────────────────────────────────────── +2026/03/20 17:44:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:09.575609198Z"} +2026/03/20 17:44:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":668.8,"last_update":"2026-03-20T17:44:09.575487394Z"} +2026/03/20 17:44:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:09.58510208Z"} +2026/03/20 17:44:14 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":16.815925394540564,"throughput_eps":0,"last_update":"2026-03-20T17:44:09.719341099Z"} +2026/03/20 17:44:14 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":78.82423065033446,"throughput_eps":0,"last_update":"2026-03-20T17:44:09.719448715Z"} +2026/03/20 17:44:14 ───────────────────────────────────────────────── +2026/03/20 17:44:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:19 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":78.82423065033446,"throughput_eps":0,"last_update":"2026-03-20T17:44:14.719710695Z"} +2026/03/20 17:44:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:14.575728121Z"} +2026/03/20 17:44:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":669.8,"last_update":"2026-03-20T17:44:14.576238248Z"} +2026/03/20 17:44:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1342,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:14.585368696Z"} +2026/03/20 17:44:19 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":16.815925394540564,"throughput_eps":0,"last_update":"2026-03-20T17:44:14.719758195Z"} +2026/03/20 17:44:19 ───────────────────────────────────────────────── +2026/03/20 17:44:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:19.575746531Z"} +2026/03/20 17:44:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":670.8,"last_update":"2026-03-20T17:44:19.576120938Z"} +2026/03/20 17:44:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:19.585526153Z"} +2026/03/20 17:44:24 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":16.815925394540564,"throughput_eps":0,"last_update":"2026-03-20T17:44:19.71882812Z"} +2026/03/20 17:44:24 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":78.82423065033446,"throughput_eps":0,"last_update":"2026-03-20T17:44:19.718780639Z"} +2026/03/20 17:44:24 ───────────────────────────────────────────────── +2026/03/20 17:44:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:24.575557342Z"} +2026/03/20 17:44:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":671.8,"last_update":"2026-03-20T17:44:24.575967989Z"} +2026/03/20 17:44:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:24.586031634Z"} +2026/03/20 17:44:29 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":16.815925394540564,"throughput_eps":0,"last_update":"2026-03-20T17:44:24.719447752Z"} +2026/03/20 17:44:29 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":75.80829352026757,"throughput_eps":0,"last_update":"2026-03-20T17:44:24.783234757Z"} +2026/03/20 17:44:29 ───────────────────────────────────────────────── +2026/03/20 17:44:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:29.575509552Z"} +2026/03/20 17:44:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":672.8,"last_update":"2026-03-20T17:44:29.575928986Z"} +2026/03/20 17:44:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:29.585097437Z"} +2026/03/20 17:44:34 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":16.823191915632453,"throughput_eps":0,"last_update":"2026-03-20T17:44:29.719508213Z"} +2026/03/20 17:44:34 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":75.80829352026757,"throughput_eps":0,"last_update":"2026-03-20T17:44:29.719466453Z"} +2026/03/20 17:44:34 ───────────────────────────────────────────────── +2026/03/20 17:44:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:34.575876516Z"} +2026/03/20 17:44:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":673.8,"last_update":"2026-03-20T17:44:34.576153396Z"} +2026/03/20 17:44:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1350,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:34.585400958Z"} +2026/03/20 17:44:39 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":16.823191915632453,"throughput_eps":0,"last_update":"2026-03-20T17:44:34.720006609Z"} +2026/03/20 17:44:39 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":75.80829352026757,"throughput_eps":0,"last_update":"2026-03-20T17:44:34.719886198Z"} +2026/03/20 17:44:39 ───────────────────────────────────────────────── +2026/03/20 17:44:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:44 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":75.80829352026757,"throughput_eps":0,"last_update":"2026-03-20T17:44:39.719579448Z"} +2026/03/20 17:44:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:39.575926406Z"} +2026/03/20 17:44:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":674.8,"last_update":"2026-03-20T17:44:39.576425402Z"} +2026/03/20 17:44:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:39.585299008Z"} +2026/03/20 17:44:44 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":16.823191915632453,"throughput_eps":0,"last_update":"2026-03-20T17:44:39.719681894Z"} +2026/03/20 17:44:44 ───────────────────────────────────────────────── +2026/03/20 17:44:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:49 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":75.80829352026757,"throughput_eps":0,"last_update":"2026-03-20T17:44:44.718928013Z"} +2026/03/20 17:44:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:44.575907841Z"} +2026/03/20 17:44:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":675.8,"last_update":"2026-03-20T17:44:44.576213316Z"} +2026/03/20 17:44:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:44.586689843Z"} +2026/03/20 17:44:49 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":16.823191915632453,"throughput_eps":0,"last_update":"2026-03-20T17:44:44.7190255Z"} +2026/03/20 17:44:49 ───────────────────────────────────────────────── +2026/03/20 17:44:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:49.586159174Z"} +2026/03/20 17:44:54 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":16.823191915632453,"throughput_eps":0,"last_update":"2026-03-20T17:44:49.719424041Z"} +2026/03/20 17:44:54 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":75.80829352026757,"throughput_eps":0,"last_update":"2026-03-20T17:44:49.71946514Z"} +2026/03/20 17:44:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:49.575659322Z"} +2026/03/20 17:44:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":676.8,"last_update":"2026-03-20T17:44:49.576014953Z"} +2026/03/20 17:44:54 ───────────────────────────────────────────────── +2026/03/20 17:44:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:54.575941523Z"} +2026/03/20 17:44:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":677.8,"last_update":"2026-03-20T17:44:54.576314197Z"} +2026/03/20 17:44:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:54.586648121Z"} +2026/03/20 17:44:59 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":16.823191915632453,"throughput_eps":0,"last_update":"2026-03-20T17:44:54.719005873Z"} +2026/03/20 17:44:59 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":73.67076361621406,"throughput_eps":0,"last_update":"2026-03-20T17:44:54.784144862Z"} +2026/03/20 17:44:59 ───────────────────────────────────────────────── +2026/03/20 17:45:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:59.576521701Z"} +2026/03/20 17:45:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":678.8,"last_update":"2026-03-20T17:44:59.575428506Z"} +2026/03/20 17:45:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1360,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:59.585734887Z"} +2026/03/20 17:45:04 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.941326732505964,"throughput_eps":0,"last_update":"2026-03-20T17:44:59.718978499Z"} +2026/03/20 17:45:04 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":73.67076361621406,"throughput_eps":0,"last_update":"2026-03-20T17:44:59.719002545Z"} +2026/03/20 17:45:04 ───────────────────────────────────────────────── +2026/03/20 17:45:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:04.575721004Z"} +2026/03/20 17:45:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":679.8,"last_update":"2026-03-20T17:45:04.576087095Z"} +2026/03/20 17:45:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:04.587592764Z"} +2026/03/20 17:45:09 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.941326732505964,"throughput_eps":0,"last_update":"2026-03-20T17:45:04.718860762Z"} +2026/03/20 17:45:09 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":73.67076361621406,"throughput_eps":0,"last_update":"2026-03-20T17:45:04.718832487Z"} +2026/03/20 17:45:09 ───────────────────────────────────────────────── +2026/03/20 17:45:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:09.58553855Z"} +2026/03/20 17:45:14 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.941326732505964,"throughput_eps":0,"last_update":"2026-03-20T17:45:09.719843386Z"} +2026/03/20 17:45:14 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":73.67076361621406,"throughput_eps":0,"last_update":"2026-03-20T17:45:09.718720085Z"} +2026/03/20 17:45:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:09.57577637Z"} +2026/03/20 17:45:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":680.8,"last_update":"2026-03-20T17:45:09.576168741Z"} +2026/03/20 17:45:14 ───────────────────────────────────────────────── +2026/03/20 17:45:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":681.8,"last_update":"2026-03-20T17:45:14.576158977Z"} +2026/03/20 17:45:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:14.585871441Z"} +2026/03/20 17:45:19 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.941326732505964,"throughput_eps":0,"last_update":"2026-03-20T17:45:14.719108454Z"} +2026/03/20 17:45:19 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":73.67076361621406,"throughput_eps":0,"last_update":"2026-03-20T17:45:14.719118724Z"} +2026/03/20 17:45:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:14.575713534Z"} +2026/03/20 17:45:19 ───────────────────────────────────────────────── +2026/03/20 17:45:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:19.586512113Z"} +2026/03/20 17:45:24 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.941326732505964,"throughput_eps":0,"last_update":"2026-03-20T17:45:19.719859388Z"} +2026/03/20 17:45:24 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":73.67076361621406,"throughput_eps":0,"last_update":"2026-03-20T17:45:19.71872196Z"} +2026/03/20 17:45:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:19.575770898Z"} +2026/03/20 17:45:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3413,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":682.6,"last_update":"2026-03-20T17:45:19.575776389Z"} +2026/03/20 17:45:24 ───────────────────────────────────────────────── +2026/03/20 17:45:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:24.575712862Z"} +2026/03/20 17:45:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":683.8,"last_update":"2026-03-20T17:45:24.576086047Z"} +2026/03/20 17:45:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:24.586540073Z"} +2026/03/20 17:45:29 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.941326732505964,"throughput_eps":0,"last_update":"2026-03-20T17:45:24.718836828Z"} +2026/03/20 17:45:29 [transform_engine] {"stage_name":"transform_engine","events_processed":114,"events_dropped":0,"avg_latency_ms":71.62386329297125,"throughput_eps":0,"last_update":"2026-03-20T17:45:24.782218225Z"} +2026/03/20 17:45:29 ───────────────────────────────────────────────── +2026/03/20 17:45:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:34 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":16.96436758600477,"throughput_eps":0,"last_update":"2026-03-20T17:45:29.719684377Z"} +2026/03/20 17:45:34 [transform_engine] {"stage_name":"transform_engine","events_processed":114,"events_dropped":0,"avg_latency_ms":71.62386329297125,"throughput_eps":0,"last_update":"2026-03-20T17:45:29.719693385Z"} +2026/03/20 17:45:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:29.57557304Z"} +2026/03/20 17:45:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":684.8,"last_update":"2026-03-20T17:45:29.575671008Z"} +2026/03/20 17:45:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:29.58732974Z"} +2026/03/20 17:45:34 ───────────────────────────────────────────────── +2026/03/20 17:45:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:39 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":16.96436758600477,"throughput_eps":0,"last_update":"2026-03-20T17:45:34.719240553Z"} +2026/03/20 17:45:39 [transform_engine] {"stage_name":"transform_engine","events_processed":114,"events_dropped":0,"avg_latency_ms":71.62386329297125,"throughput_eps":0,"last_update":"2026-03-20T17:45:34.719250663Z"} +2026/03/20 17:45:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:34.575759171Z"} +2026/03/20 17:45:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":685.8,"last_update":"2026-03-20T17:45:34.576091488Z"} +2026/03/20 17:45:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:34.585986321Z"} +2026/03/20 17:45:39 ───────────────────────────────────────────────── +2026/03/20 17:45:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":686.8,"last_update":"2026-03-20T17:45:39.576149392Z"} +2026/03/20 17:45:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:39.586642723Z"} +2026/03/20 17:45:44 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":16.96436758600477,"throughput_eps":0,"last_update":"2026-03-20T17:45:39.719826742Z"} +2026/03/20 17:45:44 [transform_engine] {"stage_name":"transform_engine","events_processed":114,"events_dropped":0,"avg_latency_ms":71.62386329297125,"throughput_eps":0,"last_update":"2026-03-20T17:45:39.718715845Z"} +2026/03/20 17:45:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:39.575778272Z"} +2026/03/20 17:45:44 ───────────────────────────────────────────────── +2026/03/20 17:45:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:44.575793495Z"} +2026/03/20 17:45:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":687.8,"last_update":"2026-03-20T17:45:44.576190806Z"} +2026/03/20 17:45:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:44.584061572Z"} +2026/03/20 17:45:49 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":16.96436758600477,"throughput_eps":0,"last_update":"2026-03-20T17:45:44.719397536Z"} +2026/03/20 17:45:49 [transform_engine] {"stage_name":"transform_engine","events_processed":114,"events_dropped":0,"avg_latency_ms":71.62386329297125,"throughput_eps":0,"last_update":"2026-03-20T17:45:44.719412465Z"} +2026/03/20 17:45:49 ───────────────────────────────────────────────── +2026/03/20 17:45:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:49.575555011Z"} +2026/03/20 17:45:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":688.8,"last_update":"2026-03-20T17:45:49.575787877Z"} +2026/03/20 17:45:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1380,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:49.585207461Z"} +2026/03/20 17:45:54 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":16.96436758600477,"throughput_eps":0,"last_update":"2026-03-20T17:45:49.719521408Z"} +2026/03/20 17:45:54 [transform_engine] {"stage_name":"transform_engine","events_processed":114,"events_dropped":0,"avg_latency_ms":71.62386329297125,"throughput_eps":0,"last_update":"2026-03-20T17:45:49.719497993Z"} +2026/03/20 17:45:54 ───────────────────────────────────────────────── +2026/03/20 17:45:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:54.575747208Z"} +2026/03/20 17:45:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":689.8,"last_update":"2026-03-20T17:45:54.576287974Z"} +2026/03/20 17:45:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:54.585566888Z"} +2026/03/20 17:45:59 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":16.96436758600477,"throughput_eps":0,"last_update":"2026-03-20T17:45:54.718954573Z"} +2026/03/20 17:45:59 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":79.56060403437701,"throughput_eps":0,"last_update":"2026-03-20T17:45:54.83015192Z"} +2026/03/20 17:45:59 ───────────────────────────────────────────────── +2026/03/20 17:46:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:04 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":17.230102468803814,"throughput_eps":0,"last_update":"2026-03-20T17:45:59.7195183Z"} +2026/03/20 17:46:04 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":79.56060403437701,"throughput_eps":0,"last_update":"2026-03-20T17:45:59.719545662Z"} +2026/03/20 17:46:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:59.575507374Z"} +2026/03/20 17:46:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":690.8,"last_update":"2026-03-20T17:45:59.576008885Z"} +2026/03/20 17:46:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:59.587301718Z"} +2026/03/20 17:46:04 ───────────────────────────────────────────────── +2026/03/20 17:46:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:09 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":17.230102468803814,"throughput_eps":0,"last_update":"2026-03-20T17:46:04.719326117Z"} +2026/03/20 17:46:09 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":79.56060403437701,"throughput_eps":0,"last_update":"2026-03-20T17:46:04.719267154Z"} +2026/03/20 17:46:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:04.575709495Z"} +2026/03/20 17:46:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":691.8,"last_update":"2026-03-20T17:46:04.575591449Z"} +2026/03/20 17:46:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:04.586860687Z"} +2026/03/20 17:46:09 ───────────────────────────────────────────────── +2026/03/20 17:46:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:09.575574265Z"} +2026/03/20 17:46:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":692.8,"last_update":"2026-03-20T17:46:09.576051799Z"} +2026/03/20 17:46:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1388,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:09.58581888Z"} +2026/03/20 17:46:14 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":17.230102468803814,"throughput_eps":0,"last_update":"2026-03-20T17:46:09.719179936Z"} +2026/03/20 17:46:14 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":79.56060403437701,"throughput_eps":0,"last_update":"2026-03-20T17:46:09.719208321Z"} +2026/03/20 17:46:14 ───────────────────────────────────────────────── +2026/03/20 17:46:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:19 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":17.230102468803814,"throughput_eps":0,"last_update":"2026-03-20T17:46:14.719533349Z"} +2026/03/20 17:46:19 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":79.56060403437701,"throughput_eps":0,"last_update":"2026-03-20T17:46:14.719587202Z"} +2026/03/20 17:46:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:14.575530725Z"} +2026/03/20 17:46:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":693.8,"last_update":"2026-03-20T17:46:14.575506338Z"} +2026/03/20 17:46:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1390,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:14.586153805Z"} +2026/03/20 17:46:19 ───────────────────────────────────────────────── +2026/03/20 17:46:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:24 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":79.56060403437701,"throughput_eps":0,"last_update":"2026-03-20T17:46:19.719173119Z"} +2026/03/20 17:46:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:19.576052563Z"} +2026/03/20 17:46:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":694.8,"last_update":"2026-03-20T17:46:19.576224553Z"} +2026/03/20 17:46:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:19.58690846Z"} +2026/03/20 17:46:24 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":17.230102468803814,"throughput_eps":0,"last_update":"2026-03-20T17:46:19.719130057Z"} +2026/03/20 17:46:24 ───────────────────────────────────────────────── +2026/03/20 17:46:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:24.575513533Z"} +2026/03/20 17:46:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":695.8,"last_update":"2026-03-20T17:46:24.575941172Z"} +2026/03/20 17:46:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:24.586164085Z"} +2026/03/20 17:46:29 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":17.230102468803814,"throughput_eps":0,"last_update":"2026-03-20T17:46:24.719362125Z"} +2026/03/20 17:46:29 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":86.8603606275016,"throughput_eps":0,"last_update":"2026-03-20T17:46:24.835437875Z"} +2026/03/20 17:46:29 ───────────────────────────────────────────────── +2026/03/20 17:46:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:29.586694327Z"} +2026/03/20 17:46:34 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":17.53027637504305,"throughput_eps":0,"last_update":"2026-03-20T17:46:29.719218748Z"} +2026/03/20 17:46:34 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":86.8603606275016,"throughput_eps":0,"last_update":"2026-03-20T17:46:29.7191885Z"} +2026/03/20 17:46:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:29.575669178Z"} +2026/03/20 17:46:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":696.8,"last_update":"2026-03-20T17:46:29.575981846Z"} +2026/03/20 17:46:34 ───────────────────────────────────────────────── +2026/03/20 17:46:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:34.575817732Z"} +2026/03/20 17:46:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":697.8,"last_update":"2026-03-20T17:46:34.576140229Z"} +2026/03/20 17:46:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:34.585694872Z"} +2026/03/20 17:46:39 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":17.53027637504305,"throughput_eps":0,"last_update":"2026-03-20T17:46:34.718829513Z"} +2026/03/20 17:46:39 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":86.8603606275016,"throughput_eps":0,"last_update":"2026-03-20T17:46:34.718739251Z"} +2026/03/20 17:46:39 ───────────────────────────────────────────────── +2026/03/20 17:46:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:39.575893066Z"} +2026/03/20 17:46:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3493,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":698.6,"last_update":"2026-03-20T17:46:39.575941598Z"} +2026/03/20 17:46:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1400,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:39.585291981Z"} +2026/03/20 17:46:44 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":17.53027637504305,"throughput_eps":0,"last_update":"2026-03-20T17:46:39.71959406Z"} +2026/03/20 17:46:44 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":86.8603606275016,"throughput_eps":0,"last_update":"2026-03-20T17:46:39.71969803Z"} +2026/03/20 17:46:44 ───────────────────────────────────────────────── +2026/03/20 17:46:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:49 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":17.53027637504305,"throughput_eps":0,"last_update":"2026-03-20T17:46:44.719331971Z"} +2026/03/20 17:46:49 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":86.8603606275016,"throughput_eps":0,"last_update":"2026-03-20T17:46:44.719312375Z"} +2026/03/20 17:46:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:44.575537067Z"} +2026/03/20 17:46:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3498,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":699.6,"last_update":"2026-03-20T17:46:44.575034353Z"} +2026/03/20 17:46:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1402,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:44.586054955Z"} +2026/03/20 17:46:49 ───────────────────────────────────────────────── +2026/03/20 17:46:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:54 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":17.53027637504305,"throughput_eps":0,"last_update":"2026-03-20T17:46:49.719375121Z"} +2026/03/20 17:46:54 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":86.8603606275016,"throughput_eps":0,"last_update":"2026-03-20T17:46:49.719329664Z"} +2026/03/20 17:46:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:49.57587587Z"} +2026/03/20 17:46:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":700.8,"last_update":"2026-03-20T17:46:49.576295533Z"} +2026/03/20 17:46:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:49.586068225Z"} +2026/03/20 17:46:54 ───────────────────────────────────────────────── +2026/03/20 17:46:54 [ANOMALY] time=2026-03-20T17:46:54Z score=0.8409 method=SEAD details=MAD!:w=0.34,s=1.00 RRCF-fast!:w=0.17,s=0.99 RRCF-mid!:w=0.15,s=0.90 RRCF-slow!:w=0.13,s=0.99 COPOD!:w=0.22,s=0.34 +2026/03/20 17:46:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:54.575794328Z"} +2026/03/20 17:46:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":701.6,"last_update":"2026-03-20T17:46:54.57576918Z"} +2026/03/20 17:46:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:54.585395592Z"} +2026/03/20 17:46:59 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":17.53027637504305,"throughput_eps":0,"last_update":"2026-03-20T17:46:54.719714788Z"} +2026/03/20 17:46:59 [transform_engine] {"stage_name":"transform_engine","events_processed":117,"events_dropped":0,"avg_latency_ms":91.57058970200129,"throughput_eps":0,"last_update":"2026-03-20T17:46:54.830152735Z"} +2026/03/20 17:46:59 ───────────────────────────────────────────────── +2026/03/20 17:47:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:04 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":16.37520470003444,"throughput_eps":0,"last_update":"2026-03-20T17:46:59.719595648Z"} +2026/03/20 17:47:04 [transform_engine] {"stage_name":"transform_engine","events_processed":117,"events_dropped":0,"avg_latency_ms":91.57058970200129,"throughput_eps":0,"last_update":"2026-03-20T17:46:59.719603052Z"} +2026/03/20 17:47:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:59.575567601Z"} +2026/03/20 17:47:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":702.8,"last_update":"2026-03-20T17:46:59.575656332Z"} +2026/03/20 17:47:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1408,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:59.586380155Z"} +2026/03/20 17:47:04 ───────────────────────────────────────────────── +2026/03/20 17:47:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:04.586007439Z"} +2026/03/20 17:47:09 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":16.37520470003444,"throughput_eps":0,"last_update":"2026-03-20T17:47:04.719248732Z"} +2026/03/20 17:47:09 [transform_engine] {"stage_name":"transform_engine","events_processed":117,"events_dropped":0,"avg_latency_ms":91.57058970200129,"throughput_eps":0,"last_update":"2026-03-20T17:47:04.719254593Z"} +2026/03/20 17:47:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:04.575669024Z"} +2026/03/20 17:47:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":703.8,"last_update":"2026-03-20T17:47:04.576038913Z"} +2026/03/20 17:47:09 ───────────────────────────────────────────────── +2026/03/20 17:47:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:09.575897748Z"} +2026/03/20 17:47:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":704.8,"last_update":"2026-03-20T17:47:09.576601617Z"} +2026/03/20 17:47:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:09.585684597Z"} +2026/03/20 17:47:14 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":16.37520470003444,"throughput_eps":0,"last_update":"2026-03-20T17:47:09.719075489Z"} +2026/03/20 17:47:14 [transform_engine] {"stage_name":"transform_engine","events_processed":117,"events_dropped":0,"avg_latency_ms":91.57058970200129,"throughput_eps":0,"last_update":"2026-03-20T17:47:09.719088304Z"} +2026/03/20 17:47:14 ───────────────────────────────────────────────── +2026/03/20 17:47:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:14.575723592Z"} +2026/03/20 17:47:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":705.8,"last_update":"2026-03-20T17:47:14.576105844Z"} +2026/03/20 17:47:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:14.585320386Z"} +2026/03/20 17:47:19 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":16.37520470003444,"throughput_eps":0,"last_update":"2026-03-20T17:47:14.71955729Z"} +2026/03/20 17:47:19 [transform_engine] {"stage_name":"transform_engine","events_processed":117,"events_dropped":0,"avg_latency_ms":91.57058970200129,"throughput_eps":0,"last_update":"2026-03-20T17:47:14.719564333Z"} +2026/03/20 17:47:19 ───────────────────────────────────────────────── +2026/03/20 17:47:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:19.576091983Z"} +2026/03/20 17:47:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":706.8,"last_update":"2026-03-20T17:47:19.576569657Z"} +2026/03/20 17:47:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:19.586441369Z"} +2026/03/20 17:47:24 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":16.37520470003444,"throughput_eps":0,"last_update":"2026-03-20T17:47:19.719826443Z"} +2026/03/20 17:47:24 [transform_engine] {"stage_name":"transform_engine","events_processed":117,"events_dropped":0,"avg_latency_ms":91.57058970200129,"throughput_eps":0,"last_update":"2026-03-20T17:47:19.718665188Z"} +2026/03/20 17:47:24 ───────────────────────────────────────────────── +2026/03/20 17:47:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:24.575737317Z"} +2026/03/20 17:47:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":707.8,"last_update":"2026-03-20T17:47:24.576265398Z"} +2026/03/20 17:47:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:24.58553131Z"} +2026/03/20 17:47:29 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":16.37520470003444,"throughput_eps":0,"last_update":"2026-03-20T17:47:24.719663095Z"} +2026/03/20 17:47:29 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":95.42858856160103,"throughput_eps":0,"last_update":"2026-03-20T17:47:24.830535591Z"} +2026/03/20 17:47:29 ───────────────────────────────────────────────── +2026/03/20 17:47:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:29.575729823Z"} +2026/03/20 17:47:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":708.8,"last_update":"2026-03-20T17:47:29.576014258Z"} +2026/03/20 17:47:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1420,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:29.586386098Z"} +2026/03/20 17:47:34 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":16.873350360027555,"throughput_eps":0,"last_update":"2026-03-20T17:47:29.719743311Z"} +2026/03/20 17:47:34 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":95.42858856160103,"throughput_eps":0,"last_update":"2026-03-20T17:47:29.719755844Z"} +2026/03/20 17:47:34 ───────────────────────────────────────────────── +2026/03/20 17:47:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":709.8,"last_update":"2026-03-20T17:47:34.576092035Z"} +2026/03/20 17:47:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:34.585813619Z"} +2026/03/20 17:47:39 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":16.873350360027555,"throughput_eps":0,"last_update":"2026-03-20T17:47:34.719236318Z"} +2026/03/20 17:47:39 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":95.42858856160103,"throughput_eps":0,"last_update":"2026-03-20T17:47:34.719248572Z"} +2026/03/20 17:47:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:34.575728668Z"} +2026/03/20 17:47:39 ───────────────────────────────────────────────── +2026/03/20 17:47:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:39.586199021Z"} +2026/03/20 17:47:44 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":16.873350360027555,"throughput_eps":0,"last_update":"2026-03-20T17:47:39.719637431Z"} +2026/03/20 17:47:44 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":95.42858856160103,"throughput_eps":0,"last_update":"2026-03-20T17:47:39.719650947Z"} +2026/03/20 17:47:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:39.575763409Z"} +2026/03/20 17:47:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":710.8,"last_update":"2026-03-20T17:47:39.576066579Z"} +2026/03/20 17:47:44 ───────────────────────────────────────────────── +2026/03/20 17:47:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:44.575802523Z"} +2026/03/20 17:47:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":711.8,"last_update":"2026-03-20T17:47:44.576329252Z"} +2026/03/20 17:47:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:44.584763611Z"} +2026/03/20 17:47:49 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":16.873350360027555,"throughput_eps":0,"last_update":"2026-03-20T17:47:44.719031862Z"} +2026/03/20 17:47:49 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":95.42858856160103,"throughput_eps":0,"last_update":"2026-03-20T17:47:44.719040899Z"} +2026/03/20 17:47:49 ───────────────────────────────────────────────── +2026/03/20 17:47:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:49.575814613Z"} +2026/03/20 17:47:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":712.8,"last_update":"2026-03-20T17:47:49.576128314Z"} +2026/03/20 17:47:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:49.585633635Z"} +2026/03/20 17:47:54 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":16.873350360027555,"throughput_eps":0,"last_update":"2026-03-20T17:47:49.718863809Z"} +2026/03/20 17:47:54 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":95.42858856160103,"throughput_eps":0,"last_update":"2026-03-20T17:47:49.718878286Z"} +2026/03/20 17:47:54 ───────────────────────────────────────────────── +2026/03/20 17:47:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:54.575905419Z"} +2026/03/20 17:47:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":713.8,"last_update":"2026-03-20T17:47:54.57633365Z"} +2026/03/20 17:47:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:54.586293772Z"} +2026/03/20 17:47:59 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":16.873350360027555,"throughput_eps":0,"last_update":"2026-03-20T17:47:54.719611654Z"} +2026/03/20 17:47:59 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":89.86432344928083,"throughput_eps":0,"last_update":"2026-03-20T17:47:54.78723056Z"} +2026/03/20 17:47:59 ───────────────────────────────────────────────── +2026/03/20 17:48:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:48:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:59.575612023Z"} +2026/03/20 17:48:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":714.8,"last_update":"2026-03-20T17:47:59.575645247Z"} +2026/03/20 17:48:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:59.58589325Z"} +2026/03/20 17:48:04 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":17.174544688022046,"throughput_eps":0,"last_update":"2026-03-20T17:47:59.719227816Z"} +2026/03/20 17:48:04 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":89.86432344928083,"throughput_eps":0,"last_update":"2026-03-20T17:47:59.719238628Z"} +2026/03/20 17:48:04 ───────────────────────────────────────────────── +2026/03/20 17:48:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:48:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:04.586108835Z"} +2026/03/20 17:48:09 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":17.174544688022046,"throughput_eps":0,"last_update":"2026-03-20T17:48:04.719369711Z"} +2026/03/20 17:48:09 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":89.86432344928083,"throughput_eps":0,"last_update":"2026-03-20T17:48:04.719378899Z"} +2026/03/20 17:48:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:04.575729139Z"} +2026/03/20 17:48:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":715.8,"last_update":"2026-03-20T17:48:04.576070253Z"} +2026/03/20 17:48:09 ───────────────────────────────────────────────── +2026/03/20 17:48:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:48:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:09.576275893Z"} +2026/03/20 17:48:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":716.8,"last_update":"2026-03-20T17:48:09.57616961Z"} +2026/03/20 17:48:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:09.584993895Z"} +2026/03/20 17:48:14 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":17.174544688022046,"throughput_eps":0,"last_update":"2026-03-20T17:48:09.719394486Z"} +2026/03/20 17:48:14 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":89.86432344928083,"throughput_eps":0,"last_update":"2026-03-20T17:48:09.71940722Z"} +2026/03/20 17:48:14 ───────────────────────────────────────────────── +2026/03/20 17:48:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:48:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:14.576066382Z"} +2026/03/20 17:48:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":717.8,"last_update":"2026-03-20T17:48:14.576501476Z"} +2026/03/20 17:48:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:14.585433929Z"} +2026/03/20 17:48:19 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":17.174544688022046,"throughput_eps":0,"last_update":"2026-03-20T17:48:14.719693851Z"} +2026/03/20 17:48:19 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":89.86432344928083,"throughput_eps":0,"last_update":"2026-03-20T17:48:14.719700855Z"} +2026/03/20 17:48:19 ───────────────────────────────────────────────── +2026/03/20 17:48:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:48:24 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":89.86432344928083,"throughput_eps":0,"last_update":"2026-03-20T17:48:19.7191799Z"} +2026/03/20 17:48:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:19.575908713Z"} +2026/03/20 17:48:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":718.8,"last_update":"2026-03-20T17:48:19.576400735Z"} +2026/03/20 17:48:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:19.584850944Z"} +2026/03/20 17:48:24 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":17.174544688022046,"throughput_eps":0,"last_update":"2026-03-20T17:48:19.719168389Z"} +2026/03/20 17:48:24 ───────────────────────────────────────────────── +2026/03/20 17:48:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:48:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:24.575898708Z"} +2026/03/20 17:48:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":719.8,"last_update":"2026-03-20T17:48:24.576213832Z"} +2026/03/20 17:48:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1442,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:24.586045408Z"} +2026/03/20 17:48:29 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":17.174544688022046,"throughput_eps":0,"last_update":"2026-03-20T17:48:24.719447799Z"} +2026/03/20 17:48:29 [transform_engine] {"stage_name":"transform_engine","events_processed":120,"events_dropped":0,"avg_latency_ms":94.59298595942467,"throughput_eps":0,"last_update":"2026-03-20T17:48:24.832971196Z"} +2026/03/20 17:48:29 ───────────────────────────────────────────────── +2026/03/20 17:48:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:48:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:29.58604135Z"} +2026/03/20 17:48:34 [detection_layer] {"stage_name":"detection_layer","events_processed":120,"events_dropped":0,"avg_latency_ms":17.454276750417637,"throughput_eps":0,"last_update":"2026-03-20T17:48:29.719548844Z"} +2026/03/20 17:48:34 [transform_engine] {"stage_name":"transform_engine","events_processed":120,"events_dropped":0,"avg_latency_ms":94.59298595942467,"throughput_eps":0,"last_update":"2026-03-20T17:48:29.719560767Z"} +2026/03/20 17:48:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:29.575496827Z"} +2026/03/20 17:48:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":720.8,"last_update":"2026-03-20T17:48:29.575562313Z"} +2026/03/20 17:48:34 ───────────────────────────────────────────────── +2026/03/20 17:48:35 shutting down… +2026/03/20 17:48:35 pipeline stopped diff --git a/evaluation/data/pipeline_validation_run3/baseline_metrics.csv b/evaluation/data/pipeline_validation_run3/baseline_metrics.csv new file mode 100644 index 0000000..4d93ed8 --- /dev/null +++ b/evaluation/data/pipeline_validation_run3/baseline_metrics.csv @@ -0,0 +1,3248 @@ +timestamp,cpu_percent,cpu_count,cpu_freq_current,memory_percent,memory_available_mb,memory_used_mb,swap_percent,disk_io_read_mb_s,disk_io_write_mb_s,disk_io_read_count,disk_io_write_count,network_sent_mb_s,network_recv_mb_s,network_packets_sent,network_packets_recv,network_errin,network_errout,network_dropin,network_dropout,tixstream_active,transfer_job_manager_active +1774074261.616895,0.75,4,3992.50,47.53,1799.61,1860.94,0.00,0.000000,0.000000,228,171,0.000008,0.000028,24219729,15905707,0,0,27588,0,1,1 +1774074266.613016,0.50,4,3992.50,47.56,1798.38,1862.16,0.00,0.511823,3521168864786.270508,238,2,0.000101,0.000154,24219737,15905718,0,0,27591,0,1,1 +1774074271.617120,0.65,4,3992.50,47.56,1798.38,1862.16,0.00,3515552202607.588867,0.021857,228,171,0.000000,0.000020,24219737,15905720,0,0,27593,0,1,1 +1774074276.617787,0.45,4,3992.50,47.56,1798.38,1862.16,0.00,62288.497002,49436.179095,5524790,869015,0.000000,0.000030,24219737,15905723,0,0,27596,0,1,1 +1774074281.616480,0.55,4,3992.50,47.57,1798.14,1862.41,0.00,3519356933334.958008,3519356946193.776855,70,0,0.000000,0.000020,24219737,15905725,0,0,27598,0,1,1 +1774074286.617223,0.40,4,3992.50,47.57,1798.14,1862.41,0.00,62293.064033,49435.484476,5525555,869196,0.000000,0.000030,24219737,15905728,0,0,27601,0,1,1 +1774074291.616910,46.42,4,3992.50,54.28,1546.04,2125.05,0.00,3518657566550.502930,3518657579410.848145,11,0,96.346611,0.034735,24229767,15908111,0,0,27603,0,1,1 +1774074296.617108,32.69,4,3992.50,54.26,1551.51,2124.28,0.00,62295.831650,49440.933918,5524791,869102,121.967349,0.023516,24242348,15909832,0,0,27606,0,1,1 +1774074301.613516,31.13,4,3992.50,54.34,1548.48,2127.39,0.00,3520966830977.354004,3520966843841.828125,199,0,120.458001,0.033705,24254726,15912330,0,0,27608,0,1,1 +1774074306.612968,31.66,4,3992.50,54.02,1560.63,2115.05,0.00,3518822962665.363770,0.000000,11,0,119.985592,0.036380,24267159,15915064,0,0,27611,0,1,1 +1774074311.616849,31.31,4,3992.50,54.27,1551.11,2124.62,0.00,0.049961,0.000000,70,0,120.073145,0.024679,24279361,15916908,0,0,27613,0,1,1 +1774074316.617487,29.97,4,3992.50,54.06,1559.33,2116.40,0.00,0.126937,0.000000,199,0,119.550298,0.019611,24291518,15918323,0,0,27616,0,1,1 +1774074321.619395,29.37,4,3992.50,54.38,1546.50,2129.20,0.00,3517095429942.309570,0.000000,11,0,119.521753,0.025773,24303692,15920256,0,0,27618,0,1,1 +1774074326.616930,30.41,4,3992.50,54.16,1555.24,2120.46,0.00,1.498102,0.022081,228,171,119.434012,0.046581,24316028,15923838,0,0,27621,0,1,1 +1774074331.617312,10.35,4,3992.50,47.91,1800.24,1875.59,0.00,3518168168932.754883,3518168168934.230469,11,0,88.119945,0.028891,24325121,15926059,0,0,27623,0,1,1 +1774074336.617280,3.56,4,3992.50,47.92,1799.83,1876.00,0.00,0.176954,0.000000,199,0,0.002258,0.001079,24325165,15926091,0,0,27626,0,1,1 +1774074341.616922,45.15,4,3992.50,48.28,1785.60,1890.17,0.00,3518689056237.271973,0.000000,11,0,22.147808,0.103741,24332413,15931511,0,0,27628,0,1,1 +1774074346.612950,21.22,4,3992.50,48.68,1769.65,1906.06,0.00,2.010386,0.000195,238,2,18.118488,0.075476,24338158,15935698,0,0,27631,0,1,1 +1774074351.616937,4.76,4,3992.50,48.60,1772.94,1902.73,0.00,62250.932913,49404.955753,5525589,870651,0.009890,0.006251,24338342,15935841,0,0,27633,0,1,1 +1774074356.617807,1.00,4,3992.50,48.60,1772.88,1902.80,0.00,3517825187502.922363,0.131227,5524824,870678,0.003388,0.002174,24338399,15935895,0,0,27636,0,1,1 +1774074361.617831,26.16,4,3992.50,48.40,1773.62,1894.92,0.00,3518420310943.490234,3518420323797.461914,11,0,0.046659,107.954655,24341933,15947321,0,0,27638,0,1,1 +1774074366.616504,24.12,4,3992.50,47.72,1793.26,1868.41,0.00,0.050013,0.000000,70,0,0.037424,97.164421,24344771,15957514,0,0,27641,0,1,1 +1774074371.614878,1.51,4,3992.50,47.73,1795.51,1868.76,0.00,3519581640272.798828,0.000000,11,0,0.002990,0.003873,24344837,15957590,0,0,27643,0,1,1 +1774074376.617550,14.29,4,3992.50,49.07,1744.26,1921.18,0.00,62289.052231,49623.434699,5526210,872399,40.046368,0.024570,24349305,15959255,0,0,27646,0,1,1 +1774074381.615738,2.16,4,3992.50,48.37,1771.76,1893.68,0.00,3519712058774.676758,3519712071451.602539,70,0,0.002629,0.003462,24349364,15959313,0,0,27648,0,1,1 +1774074386.616235,2.05,4,3992.50,48.52,1765.59,1899.85,0.00,1.447220,0.022068,228,171,0.002188,0.001905,24349406,15959356,0,0,27651,0,1,1 +1774074391.613472,1.91,4,3992.50,48.38,1771.11,1894.34,0.00,62351.218564,49677.676893,5525445,872404,0.002054,0.001902,24349453,15959402,0,0,27653,0,1,1 +1774074396.617562,1.00,4,3992.50,48.36,1771.86,1893.58,0.00,3515561041469.991699,3515561054125.643555,238,2,0.001619,0.000821,24349485,15959425,0,0,27656,0,1,1 +1774074401.616971,0.90,4,3992.50,48.37,1771.75,1893.69,0.00,0.000000,0.000000,238,2,0.001615,0.000817,24349517,15959447,0,0,27658,0,1,1 +1774074406.617493,0.85,4,3992.50,48.37,1771.77,1893.68,0.00,3518069856249.982910,0.021873,228,171,0.001597,0.000804,24349548,15959469,0,0,27661,0,1,1 +1774074411.617128,0.60,4,3992.50,48.35,1772.49,1892.97,0.00,3518694529605.174805,3518694529606.650391,11,0,0.001589,0.000786,24349578,15959489,0,0,27663,0,1,1 +1774074416.617077,0.75,4,3992.50,48.35,1772.52,1892.94,0.00,0.050001,0.000000,70,0,0.001620,0.000821,24349610,15959512,0,0,27666,0,1,1 +1774074421.616874,21.60,4,3992.50,50.32,1692.96,1970.23,0.00,62348.345746,49678.044029,5528668,872934,0.001620,0.000811,24349642,15959534,0,0,27668,0,1,1 +1774074426.616479,11.81,4,3992.50,52.18,1620.79,2043.06,0.00,3518714509912.332520,3518714522583.165039,21,0,0.001664,0.000849,24349677,15959559,0,0,27671,0,1,1 +1774074431.617190,3.16,4,3992.50,49.64,1720.34,1943.57,0.00,0.048040,0.000000,70,0,0.001651,0.001480,24349711,15959587,0,0,27673,0,1,1 +1774074436.612927,0.55,4,3992.50,49.22,1736.76,1927.15,0.00,0.000000,0.000000,70,0,0.001653,0.000847,24349745,15959612,0,0,27676,0,1,1 +1774074441.617201,0.75,4,3992.50,48.98,1746.41,1917.52,0.00,3515432596766.156250,0.000000,21,0,0.001596,0.000794,24349776,15959633,0,0,27678,0,1,1 +1774074446.617381,7.52,4,3992.50,48.92,1746.73,1915.50,0.00,62361.124472,49694.223051,5531274,873801,0.021438,28.242546,24351238,15962748,0,0,27681,0,1,1 +1774074451.614212,4.17,4,3992.50,48.84,1749.07,1912.17,0.00,0.000782,17.470840,5531275,874085,0.006616,11.827886,24351660,15964052,0,0,27683,0,1,1 +1774074456.615615,0.65,4,3992.50,48.59,1758.72,1902.54,0.00,3517450195020.001465,3517450207664.843750,237,175,0.000000,0.000030,24351660,15964055,0,0,27686,0,1,1 +1774074461.617796,0.40,4,3992.50,48.61,1758.26,1903.00,0.00,62334.642653,49710.162098,5531275,874273,0.000000,0.000020,24351660,15964057,0,0,27688,0,1,1 +1774074466.613645,0.50,4,3992.50,48.61,1758.26,1903.00,0.00,3521360623071.704102,3521360635711.689941,238,2,0.000000,0.000030,24351660,15964060,0,0,27691,0,1,1 +1774074471.617654,0.50,4,3992.50,48.61,1758.26,1903.00,0.00,3515618747175.314941,3515618747177.320312,21,0,0.000000,0.000020,24351660,15964062,0,0,27693,0,1,1 +1774074476.614454,0.45,4,3992.50,48.61,1758.26,1903.00,0.00,62407.423061,49763.757298,5532049,874455,0.000000,0.000030,24351660,15964065,0,0,27696,0,1,1 +1774074481.617276,0.55,4,3992.50,48.61,1758.26,1903.00,0.00,3516452584929.721680,3516452584933.801758,5531275,874279,0.000025,0.000051,24351662,15964069,0,0,27698,0,1,1 +1774074486.614550,0.45,4,3992.50,48.41,1765.91,1895.35,0.00,3520356011613.613770,3520356024251.946777,70,0,0.000066,0.000108,24351668,15964078,0,0,27701,0,1,1 +1774074491.613062,0.40,4,3992.50,48.41,1765.91,1895.35,0.00,1.959372,0.000195,238,2,0.000076,0.000113,24351674,15964086,0,0,27703,0,1,1 +1774074496.612942,0.70,4,3992.50,48.42,1765.69,1895.57,0.00,0.000000,0.000000,238,2,0.000155,0.000800,24351684,15964103,0,0,27706,0,1,1 +1774074501.613033,0.50,4,3992.50,48.42,1765.69,1895.57,0.00,0.000000,0.000000,238,2,0.000000,0.000020,24351684,15964105,0,0,27708,0,1,1 +1774074506.613084,0.50,4,3992.50,48.42,1765.69,1895.57,0.00,3518401329631.968750,3518401329633.800781,199,0,0.000000,0.000030,24351684,15964108,0,0,27711,0,1,1 +1774074511.617883,0.40,4,3992.50,48.42,1765.69,1895.57,0.00,0.000000,0.000000,199,0,0.000000,0.000020,24351684,15964110,0,0,27713,0,1,1 +1774074516.616969,36.59,4,3992.50,54.09,1550.47,2117.73,0.00,3519080025154.900391,0.000000,21,0,64.706392,0.037056,24358470,15966802,0,0,27716,0,1,1 +1774074521.613563,29.72,4,3992.50,54.22,1551.03,2122.89,0.00,0.000000,0.000000,21,0,120.248517,0.060056,24370686,15971430,0,0,27718,0,1,1 +1774074526.617368,29.15,4,3992.50,54.19,1552.55,2121.82,0.00,62320.056739,49694.355633,5532049,874704,120.073664,0.044713,24382907,15974899,0,0,27721,0,1,1 +1774074531.612956,29.14,4,3992.50,54.26,1549.90,2124.43,0.00,3521544602548.949219,3521544615195.243652,199,0,120.271793,0.032834,24395177,15977428,0,0,27723,0,1,1 +1774074536.616556,28.33,4,3992.50,54.14,1554.76,2119.76,0.00,0.000000,0.000000,199,0,119.877168,0.048376,24407329,15981208,0,0,27726,0,1,1 +1774074541.617814,28.43,4,3992.50,54.40,1544.30,2130.00,0.00,1.831375,0.000195,238,2,118.332744,0.047620,24419359,15984906,0,0,27728,0,1,1 +1774074546.617379,29.55,4,3992.50,54.35,1546.36,2127.99,0.00,3518743063659.813965,0.028127,237,175,120.176953,0.039979,24431696,15987996,0,0,27731,0,1,1 +1774074551.617693,28.79,4,3992.50,54.23,1551.19,2123.21,0.00,62357.918429,49729.086854,5531275,874614,119.155992,0.042295,24443853,15991299,0,0,27733,0,1,1 +1774074556.612920,19.05,4,3992.50,54.08,1556.98,2117.48,0.00,3521799738370.676758,3521799751013.708496,199,0,119.277920,0.049336,24456000,15995138,0,0,27736,0,1,1 +1774074561.613021,3.01,4,3992.50,48.35,1781.34,1893.12,0.00,3518365928196.666504,0.000000,21,0,3.407879,0.003876,24456420,15995315,0,0,27738,0,1,1 +1774074566.616400,28.10,4,3992.50,50.05,1714.71,1959.73,0.00,0.048014,0.000000,70,0,18.155775,0.091408,24462517,15999830,0,0,27741,0,1,1 +1774074571.617532,20.96,4,3992.50,49.17,1749.08,1925.28,0.00,3517640491452.961914,0.000000,21,0,22.086433,0.092410,24469508,16005010,0,0,27743,0,1,1 +1774074576.616014,1.25,4,3992.50,48.80,1763.62,1910.75,0.00,0.000000,0.000000,21,0,0.002294,0.002194,24469554,16005055,0,0,27746,0,1,1 +1774074581.613030,0.85,4,3992.50,48.65,1769.43,1904.94,0.00,0.000000,0.000000,21,0,0.001414,0.000641,24469581,16005073,0,0,27748,0,1,1 +1774074586.613038,0.80,4,3992.50,48.84,1762.09,1912.23,0.00,0.000000,0.000000,21,0,0.001589,0.000796,24469611,16005094,0,0,27751,0,1,1 +1774074591.617179,0.60,4,3992.50,48.84,1762.15,1912.22,0.00,0.000000,0.000000,21,0,0.001596,0.000794,24469642,16005115,0,0,27753,0,1,1 +1774074596.617880,1.35,4,3992.50,48.84,1762.29,1912.08,0.00,0.000000,0.000000,21,0,0.001589,0.000796,24469672,16005136,0,0,27756,0,1,1 +1774074601.614423,0.70,4,3992.50,48.81,1763.32,1911.05,0.00,1.539443,0.028340,237,175,0.001590,0.000787,24469702,16005156,0,0,27758,0,1,1 +1774074606.617778,1.00,4,3992.50,48.81,1763.43,1910.93,0.00,3516077852430.770508,3516077852432.279297,21,0,0.001714,0.000951,24469742,16005187,0,0,27761,0,1,1 +1774074611.616310,0.80,4,3992.50,48.81,1763.44,1910.93,0.00,0.048061,0.000000,70,0,0.001590,0.000786,24469772,16005207,0,0,27763,0,1,1 +1774074616.613028,0.55,4,3992.50,48.81,1763.21,1911.15,0.00,3520748182924.847656,0.000000,21,0,0.001746,0.000923,24469812,16005238,0,0,27766,0,1,1 +1774074621.617788,0.60,4,3992.50,48.85,1761.89,1912.43,0.00,0.174834,0.000000,199,0,0.001662,0.000825,24469847,16005261,0,0,27768,0,1,1 +1774074626.613031,0.55,4,3992.50,48.85,1761.95,1912.42,0.00,1.364677,0.028347,237,175,0.001599,0.000805,24469878,16005283,0,0,27771,0,1,1 +1774074631.613032,0.65,4,3992.50,48.84,1762.32,1912.04,0.00,3518436801446.680176,3518436801448.190430,21,0,0.001589,0.001430,24469908,16005307,0,0,27773,0,1,1 +1774074636.613012,2.15,4,3992.50,48.84,1762.34,1912.04,0.00,0.000000,0.000000,21,0,0.001589,0.000809,24469938,16005329,0,0,27776,0,1,1 +1774074641.612996,0.95,4,3992.50,48.84,1762.34,1912.03,0.00,1.538384,0.028320,237,175,0.002259,0.001708,24469971,16005351,0,0,27778,0,1,1 +1774074646.616992,0.60,4,3992.50,48.84,1762.35,1912.02,0.00,3515627754024.627441,3515627754026.088379,70,0,0.001588,0.000795,24470001,16005372,0,0,27781,0,1,1 +1774074651.612957,0.75,4,3992.50,48.85,1761.62,1912.75,0.00,3521279328503.729492,0.000000,21,0,0.001590,0.000787,24470031,16005392,0,0,27783,0,1,1 +1774074656.616649,0.55,4,3992.50,48.85,1761.62,1912.75,0.00,62321.566909,49697.428458,5532064,876651,0.001588,0.000796,24470061,16005413,0,0,27786,0,1,1 +1774074661.616402,2.36,4,3992.50,48.49,1775.99,1898.38,0.00,0.000000,0.058108,5532064,876719,0.001597,0.000794,24470092,16005434,0,0,27788,0,1,1 +1774074666.617147,1.60,4,3992.50,48.48,1776.27,1898.10,0.00,3517912603231.823730,3517912615863.344238,21,0,0.000970,0.000559,24470110,16005448,0,0,27791,0,1,1 +1774074671.617402,21.54,4,3992.50,49.53,1729.87,1939.04,0.00,0.174991,0.000000,199,0,0.064459,90.743864,24474859,16015404,0,0,27793,0,1,1 +1774074676.614902,28.75,4,3992.50,48.91,1745.83,1914.78,0.00,3520197381497.967285,0.000000,70,0,0.031107,114.425074,24477204,16027080,0,0,27796,0,1,1 +1774074681.617806,1.20,4,3992.50,49.16,1735.91,1924.64,0.00,0.000000,0.000000,70,0,0.001525,0.003230,24477250,16027148,0,0,27798,0,1,1 +1774074686.616429,15.55,4,3992.50,49.03,1741.36,1919.75,0.00,62403.334866,49953.140819,5532219,878125,40.075879,0.020897,24481720,16028504,0,0,27801,0,1,1 +1774074691.612987,9.84,4,3992.50,49.09,1736.99,1922.01,0.00,3520861058648.813965,3520861071102.192871,238,2,0.021719,37.084566,24483126,16032569,0,0,27803,0,1,1 +1774074696.617214,2.15,4,3992.50,48.42,1763.32,1895.72,0.00,3515465034359.638672,3515465034361.644043,21,0,0.003174,3.006532,24483274,16032981,0,0,27806,0,1,1 +1774074701.617795,0.45,4,3992.50,48.46,1761.84,1897.20,0.00,62374.830725,49969.819434,5531446,878366,0.000000,0.000020,24483274,16032983,0,0,27808,0,1,1 +1774074706.617784,0.50,4,3992.50,48.38,1764.88,1894.17,0.00,3518444989818.687988,3518445002225.169434,21,0,0.000000,0.000030,24483274,16032986,0,0,27811,0,1,1 +1774074711.614083,0.45,4,3992.50,48.60,1756.43,1902.61,0.00,62432.407701,50012.682198,5532220,878548,0.000000,0.000020,24483274,16032988,0,0,27813,0,1,1 +1774074716.612975,0.45,4,3992.50,48.60,1756.44,1902.61,0.00,3519217226041.139160,3519217238454.422852,21,0,0.000025,0.000061,24483276,16032993,0,0,27816,0,1,1 +1774074721.612953,0.50,4,3992.50,48.60,1756.20,1902.85,0.00,0.048047,0.000000,70,0,0.000000,0.000020,24483276,16032995,0,0,27818,0,1,1 +1774074726.617569,0.50,4,3992.50,48.61,1755.96,1903.08,0.00,3515191853701.716309,0.000000,21,0,0.000000,0.000030,24483276,16032998,0,0,27821,0,1,1 +1774074731.616391,0.60,4,3992.50,48.61,1755.95,1903.11,0.00,62396.784848,49991.494605,5531447,878437,0.000125,0.000163,24483285,16033010,0,0,27823,0,1,1 +1774074736.615003,0.45,4,3992.50,48.61,1755.95,1903.12,0.00,3519414273160.676270,3519414285566.313477,199,0,0.000127,0.000156,24483295,16033022,0,0,27826,0,1,1 +1774074741.612923,0.40,4,3992.50,48.61,1755.95,1903.12,0.00,3519901890042.126953,0.000000,70,0,0.000156,0.000146,24483305,16033034,0,0,27828,0,1,1 +1774074746.617735,0.40,4,3992.50,48.61,1755.95,1903.12,0.00,62326.152622,49931.723380,5532221,878656,0.000000,0.000030,24483305,16033037,0,0,27831,0,1,1 +1774074751.613032,0.45,4,3992.50,48.61,1755.95,1903.12,0.00,3521749995133.913574,3521749995138.000488,5531447,878481,0.000000,0.000020,24483305,16033039,0,0,27833,0,1,1 +1774074756.616887,29.58,4,3992.50,54.93,1517.11,2150.50,0.00,3515726712461.388672,3515726724854.111328,70,0,50.635580,0.021442,24488645,16034521,0,0,27836,0,1,1 +1774074761.613580,30.39,4,3992.50,54.62,1534.25,2138.57,0.00,62423.324740,50012.967848,5531447,878636,119.244102,0.034770,24500836,16037120,0,0,27838,0,1,1 +1774074766.614367,27.86,4,3992.50,54.73,1530.14,2142.68,0.00,3517883514657.959473,3517883527058.204590,21,0,119.143740,0.049228,24512857,16040946,0,0,27841,0,1,1 +1774074771.616471,28.04,4,3992.50,54.69,1531.57,2141.23,0.00,1.537732,0.028308,237,175,120.114800,0.035799,24525103,16043714,0,0,27843,0,1,1 +1774074776.615796,28.43,4,3992.50,54.75,1529.16,2143.64,0.00,0.000000,0.000000,237,175,118.181288,0.030356,24537298,16046028,0,0,27846,0,1,1 +1774074781.617588,28.23,4,3992.50,54.84,1525.54,2147.27,0.00,3517176453768.443359,3517176453769.953125,21,0,120.121774,0.047152,24549502,16049698,0,0,27848,0,1,1 +1774074786.613330,28.26,4,3992.50,54.71,1530.74,2142.18,0.00,1.539690,0.028344,237,175,119.064395,0.028457,24561571,16051871,0,0,27851,0,1,1 +1774074791.617573,28.03,4,3992.50,54.61,1534.54,2138.27,0.00,0.468060,3515454258058.852539,238,2,119.262283,0.033756,24573669,16054469,0,0,27853,0,1,1 +1774074796.617032,22.03,4,3992.50,54.79,1527.91,2145.02,0.00,0.000000,0.000000,238,2,119.776727,0.043885,24585791,16057869,0,0,27856,0,1,1 +1774074801.617216,1.00,4,3992.50,48.48,1774.89,1898.03,0.00,3518307298902.488281,3518307298904.495605,21,0,19.829348,0.007948,24587870,16058417,0,0,27858,0,1,1 +1774074806.617430,17.07,4,3992.50,49.58,1731.78,1941.07,0.00,0.000000,0.000000,21,0,14.091654,0.065962,24592496,16061872,0,0,27861,0,1,1 +1774074811.617426,17.18,4,3992.50,48.68,1766.84,1905.98,0.00,62386.318621,49980.849446,5532232,880013,20.129219,0.089117,24599166,16066589,0,0,27863,0,1,1 +1774074816.616377,5.97,4,3992.50,48.61,1769.69,1903.12,0.00,3519175551172.614258,3519175563580.501953,199,0,6.037426,0.027217,24601049,16067977,0,0,27866,0,1,1 +1774074821.617050,1.76,4,3992.50,48.42,1777.25,1895.57,0.00,3517963821820.910156,0.000000,70,0,0.004453,0.003175,24601138,16068045,0,0,27868,0,1,1 +1774074826.617379,0.80,4,3992.50,48.06,1790.96,1881.84,0.00,0.126945,0.000000,199,0,0.000807,0.001057,24601154,16068061,0,0,27871,0,1,1 +1774074831.613841,0.70,4,3992.50,48.06,1790.99,1881.82,0.00,3520928749749.083008,0.000000,21,0,0.001590,0.000787,24601184,16068081,0,0,27873,0,1,1 +1774074836.616288,2.11,4,3992.50,48.11,1789.28,1883.54,0.00,0.174914,0.000000,199,0,0.001588,0.000796,24601214,16068102,0,0,27876,0,1,1 +1774074841.612959,0.70,4,3992.50,48.11,1789.20,1883.62,0.00,3520781882731.863281,0.000000,21,0,0.001598,0.000795,24601245,16068123,0,0,27878,0,1,1 +1774074846.612969,0.50,4,3992.50,48.11,1789.21,1883.60,0.00,62382.032388,49981.618899,5531458,880399,0.001665,0.000889,24601281,16068150,0,0,27881,0,1,1 +1774074851.613041,0.65,4,3992.50,48.06,1790.98,1881.82,0.00,3518386739983.108887,3518386752381.860352,237,175,0.001589,0.000786,24601311,16068170,0,0,27883,0,1,1 +1774074856.613045,0.50,4,3992.50,48.12,1788.82,1883.99,0.00,3518433959256.104980,3518433959257.566895,70,0,0.001589,0.000796,24601341,16068191,0,0,27886,0,1,1 +1774074861.613156,0.50,4,3992.50,48.12,1788.61,1884.20,0.00,62384.838080,49980.681662,5532232,880634,0.001745,0.000912,24601381,16068221,0,0,27888,0,1,1 +1774074866.612958,0.65,4,3992.50,48.17,1786.66,1886.16,0.00,3518576605032.167480,3518576605036.267090,5531458,880466,0.001714,0.000898,24601420,16068249,0,0,27891,0,1,1 +1774074871.613943,0.85,4,3992.50,48.17,1786.67,1886.14,0.00,0.000000,0.054286,5531458,880528,0.001589,0.000786,24601450,16068269,0,0,27893,0,1,1 +1774074876.614378,15.54,4,3992.50,49.09,1747.05,1921.96,0.00,3518130513283.301270,3518130525681.037109,237,175,0.028840,64.890853,24603479,16075264,0,0,27896,0,1,1 +1774074881.617858,28.83,4,3992.50,49.31,1729.96,1930.70,0.00,3515990714332.409668,3515990714333.918945,21,0,0.021872,119.485286,24605036,16087718,0,0,27898,0,1,1 +1774074886.612955,6.19,4,3992.50,48.72,1749.72,1907.34,0.00,2.008806,0.000196,238,2,0.007410,20.653065,24605444,16089964,0,0,27901,0,1,1 +1774074891.616265,13.55,4,3992.50,53.47,1563.87,2093.53,0.00,3516109583014.442871,3516109583016.448730,21,0,18.221865,0.017221,24607567,16091008,0,0,27903,0,1,1 +1774074896.612958,3.81,4,3992.50,48.36,1764.00,1893.37,0.00,1.539397,0.028339,237,175,21.848781,0.010340,24609872,16091559,0,0,27906,0,1,1 +1774074901.617731,0.50,4,3992.50,48.37,1763.79,1893.60,0.00,3515081707665.601074,3515081707666.935059,199,0,0.001588,0.000785,24609902,16091579,0,0,27908,0,1,1 +1774074906.616447,0.55,4,3992.50,48.38,1763.24,1894.16,0.00,3519340717963.657715,0.000000,21,0,0.001590,0.000796,24609932,16091600,0,0,27911,0,1,1 +1774074911.617401,5.42,4,3992.50,48.98,1739.61,1917.51,0.00,0.000000,0.000000,21,0,0.013658,14.421573,24610805,16093324,0,0,27913,0,1,1 +1774074916.615006,7.24,4,3992.50,48.68,1751.64,1905.78,0.00,0.048070,0.000000,70,0,0.008817,25.652609,24611372,16096074,0,0,27916,0,1,1 +1774074921.613035,0.55,4,3992.50,48.68,1751.41,1906.02,0.00,62429.459307,50243.247351,5532372,882648,0.000025,0.000051,24611374,16096078,0,0,27918,0,1,1 +1774074926.617291,0.90,4,3992.50,48.69,1750.94,1906.48,0.00,3515444872221.401367,3515444884392.324219,199,0,0.000000,0.000030,24611374,16096081,0,0,27921,0,1,1 +1774074931.617339,0.55,4,3992.50,48.72,1749.74,1907.68,0.00,0.000000,0.000000,199,0,0.000000,0.000020,24611374,16096083,0,0,27923,0,1,1 +1774074936.617023,0.40,4,3992.50,48.68,1751.52,1905.90,0.00,3518659604355.902344,0.000000,70,0,0.000031,0.000055,24611376,16096088,0,0,27926,0,1,1 +1774074941.616425,0.70,4,3992.50,48.70,1750.54,1906.88,0.00,62408.219701,50229.549936,5531598,882536,0.000008,0.000028,24611377,16096091,0,0,27928,0,1,1 +1774074946.617184,0.50,4,3992.50,48.71,1750.29,1907.13,0.00,0.000000,4.009547,5531598,882561,0.000025,0.000061,24611379,16096096,0,0,27931,0,1,1 +1774074951.616641,0.40,4,3992.50,48.71,1750.29,1907.13,0.00,0.000000,0.011720,5531598,882567,0.000050,0.000082,24611383,16096102,0,0,27933,0,1,1 +1774074956.617430,0.45,4,3992.50,48.72,1750.07,1907.35,0.00,3517881921291.504883,3517881933460.814941,238,2,0.000076,0.000767,24611389,16096115,0,0,27936,0,1,1 +1774074961.616724,0.45,4,3992.50,48.72,1750.07,1907.35,0.00,3518934616623.383301,3518934616625.342285,70,0,0.000155,0.000146,24611399,16096127,0,0,27938,0,1,1 +1774074966.617484,0.55,4,3992.50,48.72,1749.83,1907.59,0.00,62395.366557,50219.968238,5532372,882751,0.000000,0.000030,24611399,16096130,0,0,27941,0,1,1 +1774074971.615609,0.45,4,3992.50,48.72,1749.83,1907.59,0.00,3519757228613.089355,3519757240792.948730,238,2,0.000000,0.000020,24611399,16096132,0,0,27943,0,1,1 +1774074976.626384,2.55,4,3992.50,51.37,1649.48,2011.41,0.00,3510871211203.799316,3510871211205.627441,199,0,0.025044,0.004380,24611474,16096193,0,0,27946,0,1,1 +1774074981.612937,42.76,4,3992.50,54.56,1533.25,2136.20,0.00,1.367055,0.028397,237,175,108.821823,0.037879,24622525,16099092,0,0,27948,0,1,1 +1774074986.617386,29.29,4,3992.50,54.72,1529.63,2142.40,0.00,3515309808589.191406,3515309808590.525391,199,0,119.861220,0.024660,24634863,16100897,0,0,27951,0,1,1 +1774074991.613393,27.97,4,3992.50,54.73,1529.29,2142.98,0.00,0.000000,0.000000,199,0,118.459622,0.023705,24647033,16102629,0,0,27953,0,1,1 +1774074996.613924,28.06,4,3992.50,54.65,1532.68,2139.59,0.00,0.000000,0.000000,199,0,120.154096,0.017077,24659453,16103920,0,0,27956,0,1,1 +1774075001.612984,27.66,4,3992.50,55.06,1516.49,2155.82,0.00,62416.464497,50237.310701,5532372,882942,118.186035,0.021478,24671588,16105540,0,0,27958,0,1,1 +1774075006.616947,28.01,4,3992.50,54.69,1531.18,2141.11,0.00,3515650721872.976562,3515650734040.372070,21,0,120.071844,0.019051,24683965,16106969,0,0,27961,0,1,1 +1774075011.617908,27.86,4,3992.50,54.80,1526.82,2145.48,0.00,0.000000,0.000000,21,0,119.342583,0.021230,24696229,16108570,0,0,27963,0,1,1 +1774075016.613096,28.20,4,3992.50,54.74,1529.18,2143.05,0.00,62460.908079,50276.305046,5531598,882841,119.077181,0.028282,24708303,16110740,0,0,27966,0,1,1 +1774075021.613131,8.63,4,3992.50,48.49,1774.04,1898.36,0.00,4.166280,0.119726,5532379,883029,81.714130,0.018022,24716687,16112099,0,0,27968,0,1,1 +1774075026.617741,5.66,4,3992.50,48.42,1776.69,1895.70,0.00,3515195805517.195312,3515195817682.852051,70,0,2.018648,0.013665,24717457,16112648,0,0,27971,0,1,1 +1774075031.616968,31.70,4,3992.50,50.09,1711.37,1960.95,0.00,62414.624905,50236.130990,5532385,883848,34.207432,0.148475,24728242,16120691,0,0,27973,0,1,1 +1774075036.617552,5.12,4,3992.50,50.14,1709.28,1963.00,0.00,3518026362019.206543,3518026374194.442871,21,0,4.037338,0.024646,24729779,16121853,0,0,27976,0,1,1 +1774075041.613028,1.10,4,3992.50,49.08,1750.58,1921.71,0.00,0.000000,0.000000,21,0,0.002295,0.002185,24729825,16121897,0,0,27978,0,1,1 +1774075046.617044,0.75,4,3992.50,48.82,1760.74,1911.55,0.00,1.537144,0.028298,237,175,0.001588,0.000795,24729855,16121918,0,0,27981,0,1,1 +1774075051.613068,0.50,4,3992.50,48.83,1760.58,1911.71,0.00,3521237721074.656738,3521237721075.993164,199,0,0.001590,0.000787,24729885,16121938,0,0,27983,0,1,1 +1774075056.612952,0.55,4,3992.50,48.80,1761.72,1910.57,0.00,62402.177917,50230.347141,5531611,884245,0.001589,0.000796,24729915,16121959,0,0,27986,0,1,1 +1774075061.617523,1.70,4,3992.50,48.82,1760.75,1911.54,0.00,4.105524,0.244113,5532385,884461,0.001588,0.000785,24729945,16121979,0,0,27988,0,1,1 +1774075066.617329,0.75,4,3992.50,48.83,1760.52,1911.77,0.00,0.000000,0.207430,5532385,884696,0.001622,0.000848,24729978,16122004,0,0,27991,0,1,1 +1774075071.616973,0.55,4,3992.50,48.83,1760.53,1911.76,0.00,3518687581325.847168,3518687593501.919922,199,0,0.001690,0.000911,24730016,16122032,0,0,27993,0,1,1 +1774075076.616960,0.55,4,3992.50,48.83,1760.54,1911.76,0.00,3518446859279.070312,0.000000,21,0,0.001589,0.000796,24730046,16122053,0,0,27996,0,1,1 +1774075081.612957,0.50,4,3992.50,48.83,1760.55,1911.74,0.00,62450.904303,50269.917991,5531611,884603,0.001746,0.000913,24730086,16122083,0,0,27998,0,1,1 +1774075086.612957,0.55,4,3992.50,48.83,1760.31,1911.98,0.00,4.109277,0.074902,5532385,884824,0.001664,0.000836,24730121,16122107,0,0,28001,0,1,1 +1774075091.616436,0.75,4,3992.50,48.83,1760.39,1911.91,0.00,3515991258929.551270,0.024202,5531612,884687,0.001588,0.001429,24730151,16122131,0,0,28003,0,1,1 +1774075096.612957,0.50,4,3992.50,48.81,1761.38,1910.92,0.00,3520886448325.359375,3520886460502.968262,238,2,0.001590,0.000797,24730181,16122152,0,0,28006,0,1,1 +1774075101.612952,0.50,4,3992.50,48.86,1759.42,1912.88,0.00,3518440754062.097168,3518440754064.104004,21,0,0.001589,0.000786,24730211,16122172,0,0,28008,0,1,1 +1774075106.617381,0.70,4,3992.50,48.86,1759.43,1912.87,0.00,2.005060,0.000195,238,2,0.001596,0.000803,24730242,16122194,0,0,28011,0,1,1 +1774075111.615923,0.55,4,3992.50,48.86,1759.44,1912.86,0.00,3519463632293.891113,3519463632295.850098,70,0,0.001590,0.000786,24730272,16122214,0,0,28013,0,1,1 +1774075116.617047,0.55,4,3992.50,48.86,1759.46,1912.82,0.00,1.489997,0.028314,237,175,0.001589,0.000796,24730302,16122235,0,0,28016,0,1,1 +1774075121.613819,0.75,4,3992.50,48.86,1759.48,1912.81,0.00,3520710399207.719238,3520710399209.230469,21,0,0.003765,0.001783,24730376,16122280,0,0,28018,0,1,1 +1774075126.617682,0.70,4,3992.50,48.90,1757.79,1914.51,0.00,1.537191,0.028298,237,175,0.003474,0.022467,24730440,16122345,0,0,28021,0,1,1 +1774075131.617398,25.06,4,3992.50,48.79,1755.49,1910.18,0.00,62407.049226,50300.973042,5532390,885581,0.039738,106.938346,24733433,16133556,0,0,28023,0,1,1 +1774075136.612952,24.31,4,3992.50,48.55,1757.96,1900.66,0.00,3521567933060.831055,3521567945178.500977,21,0,0.021482,98.225059,24735051,16143740,0,0,28026,0,1,1 +1774075141.618367,13.54,4,3992.50,52.92,1587.19,2071.74,0.00,0.047995,0.000000,70,0,23.413804,0.018175,24737713,16144866,0,0,28028,0,1,1 +1774075146.616939,1.56,4,3992.50,49.27,1730.02,1928.91,0.00,3519442403162.916016,0.000000,21,0,16.631652,0.006647,24739507,16145270,0,0,28031,0,1,1 +1774075151.616377,2.11,4,3992.50,48.82,1747.45,1911.38,0.00,0.000000,0.000000,21,0,0.009009,4.814097,24740055,16146078,0,0,28033,0,1,1 +1774075156.616494,9.98,4,3992.50,47.97,1778.55,1878.33,0.00,1.538343,0.028320,237,175,0.016076,35.252545,24741199,16149759,0,0,28036,0,1,1 +1774075161.613033,0.50,4,3992.50,47.96,1779.05,1877.82,0.00,0.468782,3520874444082.702148,238,2,0.000000,0.000020,24741199,16149761,0,0,28038,0,1,1 +1774075166.617506,0.70,4,3992.50,48.00,1777.58,1879.30,0.00,3515292285683.092773,0.028100,237,175,0.000050,0.000092,24741203,16149768,0,0,28041,0,1,1 +1774075171.613020,0.45,4,3992.50,48.01,1777.09,1879.79,0.00,3521596615624.242676,3521596615625.753906,21,0,0.000033,0.000059,24741206,16149773,0,0,28043,0,1,1 +1774075176.614027,0.45,4,3992.50,48.03,1776.36,1880.51,0.00,0.000000,0.000000,21,0,0.000000,0.000030,24741206,16149776,0,0,28046,0,1,1 +1774075181.617695,1.20,4,3992.50,48.03,1776.36,1880.52,0.00,0.048012,0.000000,70,0,0.000000,0.000020,24741206,16149778,0,0,28048,0,1,1 +1774075186.616483,0.40,4,3992.50,48.03,1776.36,1880.52,0.00,3519290072231.540039,0.000000,21,0,0.000031,0.000055,24741208,16149783,0,0,28051,0,1,1 +1774075191.617339,0.55,4,3992.50,48.06,1775.38,1881.50,0.00,62408.856447,50466.937083,5531765,886899,0.000165,0.000208,24741221,16149798,0,0,28053,0,1,1 +1774075196.617509,0.45,4,3992.50,48.06,1775.14,1881.73,0.00,3518317163406.442871,3518317175347.990723,238,2,0.000025,0.000061,24741223,16149803,0,0,28056,0,1,1 +1774075201.615887,0.45,4,3992.50,48.06,1775.14,1881.73,0.00,3519579368701.145020,0.028134,237,175,0.000155,0.000146,24741233,16149815,0,0,28058,0,1,1 +1774075206.613034,0.55,4,3992.50,48.08,1774.42,1882.46,0.00,3520445927449.974609,3520445927451.310547,199,0,0.000000,0.000030,24741233,16149818,0,0,28061,0,1,1 +1774075211.617070,0.50,4,3992.50,48.10,1773.47,1883.41,0.00,3515599090346.581543,0.000000,21,0,0.000000,0.000020,24741233,16149820,0,0,28063,0,1,1 +1774075216.616076,1.30,4,3992.50,48.10,1773.47,1883.41,0.00,62431.940762,50485.686417,5531766,886967,0.000000,0.000030,24741233,16149823,0,0,28066,0,1,1 +1774075221.618666,7.77,4,3992.50,54.73,1520.24,2142.84,0.00,3516615738551.597656,3516615750489.246094,70,0,1.974658,0.005871,24741577,16150076,0,0,28068,0,1,1 +1774075226.615831,38.57,4,3992.50,54.69,1527.72,2141.32,0.00,62459.003302,50504.408303,5532540,887274,111.856733,0.043961,24753184,16153418,0,0,28071,0,1,1 +1774075231.612847,28.90,4,3992.50,54.52,1536.49,2134.47,0.00,3520538441790.018555,3520538453745.019531,21,0,120.071997,0.111948,24766039,16162094,0,0,28073,0,1,1 +1774075236.617382,27.97,4,3992.50,54.52,1536.32,2134.62,0.00,0.000000,0.000000,21,0,119.690553,0.111074,24778896,16170733,0,0,28076,0,1,1 +1774075241.617426,28.28,4,3992.50,54.49,1537.52,2133.23,0.00,0.000000,0.000000,21,0,118.797249,0.105927,24791690,16178999,0,0,28078,0,1,1 +1774075246.616875,27.92,4,3992.50,54.63,1531.93,2139.07,0.00,1.538548,0.028323,237,175,120.014794,0.111310,24804587,16187641,0,0,28081,0,1,1 +1774075251.616453,28.10,4,3992.50,54.72,1528.64,2142.33,0.00,0.000000,0.000000,237,175,119.007007,0.107616,24817414,16196056,0,0,28083,0,1,1 +1774075256.616381,28.65,4,3992.50,54.45,1539.12,2131.86,0.00,0.000000,0.000000,237,175,119.400230,0.109362,24830283,16204563,0,0,28086,0,1,1 +1774075261.617752,28.24,4,3992.50,54.58,1533.93,2137.04,0.00,0.000000,0.000000,237,175,119.765843,0.109761,24843154,16213104,0,0,28088,0,1,1 +1774075266.617620,7.43,4,3992.50,50.14,1707.94,1963.11,0.00,0.000000,0.000000,237,175,75.132037,0.070264,24851297,16218494,0,0,28091,0,1,1 +1774075271.614485,2.96,4,3992.50,48.90,1756.56,1914.49,0.00,62457.292837,50507.798629,5531777,887332,0.004724,0.002111,24851378,16218552,0,0,28093,0,1,1 +1774075276.617268,23.51,4,3992.50,48.92,1755.65,1915.33,0.00,3516479991151.065430,3516480003087.758301,199,0,24.217235,0.109276,24859256,16224290,0,0,28096,0,1,1 +1774075281.613037,13.15,4,3992.50,48.42,1775.33,1895.63,0.00,1.364534,0.028344,237,175,16.037519,0.070173,24864448,16228137,0,0,28098,0,1,1 +1774075286.616922,1.80,4,3992.50,48.37,1777.17,1893.80,0.00,3515705238014.984863,3515705238016.494141,21,0,0.003832,0.004612,24864510,16228211,0,0,28101,0,1,1 +1774075291.617260,0.55,4,3992.50,48.38,1776.70,1894.27,0.00,0.000000,0.000000,21,0,0.001998,0.001858,24864554,16228254,0,0,28103,0,1,1 +1774075296.612964,0.60,4,3992.50,48.45,1774.01,1896.96,0.00,1.539702,0.028345,237,175,0.001591,0.000797,24864584,16228275,0,0,28106,0,1,1 +1774075301.613249,0.60,4,3992.50,48.45,1774.02,1896.95,0.00,3518236888213.368164,3518236888214.877930,21,0,0.001589,0.000786,24864614,16228295,0,0,28108,0,1,1 +1774075306.617086,0.55,4,3992.50,48.43,1774.89,1896.07,0.00,0.000000,0.000000,21,0,0.001588,0.000796,24864644,16228316,0,0,28111,0,1,1 +1774075311.617282,1.15,4,3992.50,48.43,1774.79,1896.17,0.00,62417.244392,50475.623478,5531779,888849,0.001723,0.000950,24864685,16228347,0,0,28113,0,1,1 +1774075316.617162,0.60,4,3992.50,48.43,1774.80,1896.16,0.00,3518522152551.352051,3518522164493.682129,70,0,0.001589,0.000796,24864715,16228368,0,0,28116,0,1,1 +1774075321.615620,0.50,4,3992.50,48.43,1774.81,1896.15,0.00,1.490792,0.028329,237,175,0.001590,0.000786,24864745,16228388,0,0,28118,0,1,1 +1774075326.613040,0.50,4,3992.50,48.43,1774.83,1896.13,0.00,3520253821785.553711,3520253821786.889160,199,0,0.002353,0.001807,24864784,16228418,0,0,28121,0,1,1 +1774075331.617741,0.70,4,3992.50,48.43,1774.84,1896.12,0.00,3515132073611.644531,0.000000,70,0,0.001733,0.000884,24864824,16228446,0,0,28123,0,1,1 +1774075336.617255,0.80,4,3992.50,48.43,1774.67,1896.30,0.00,1.958980,0.000195,238,2,0.001652,0.000847,24864858,16228471,0,0,28126,0,1,1 +1774075341.613045,0.50,4,3992.50,48.38,1776.71,1894.27,0.00,0.000000,0.000000,238,2,0.001591,0.000787,24864888,16228491,0,0,28128,0,1,1 +1774075346.612957,0.55,4,3992.50,48.43,1774.99,1895.98,0.00,3518499446210.497070,3518499446212.504395,21,0,0.001589,0.000796,24864918,16228512,0,0,28131,0,1,1 +1774075351.617944,0.60,4,3992.50,48.43,1774.79,1896.18,0.00,62357.499746,50427.578005,5531779,889118,0.001588,0.001429,24864948,16228536,0,0,28133,0,1,1 +1774075356.616482,0.60,4,3992.50,48.43,1774.81,1896.16,0.00,3519466087010.354980,3519466098955.619629,70,0,0.001598,0.000804,24864979,16228558,0,0,28136,0,1,1 +1774075361.617310,0.75,4,3992.50,48.43,1774.82,1896.16,0.00,1.958465,0.000195,238,2,0.001576,0.000786,24865008,16228578,0,0,28138,0,1,1 +1774075366.616620,0.60,4,3992.50,48.43,1774.83,1896.14,0.00,3518923097559.796387,3518923097561.803711,21,0,0.000983,0.000559,24865027,16228592,0,0,28141,0,1,1 +1774075371.617733,0.50,4,3992.50,48.43,1774.84,1896.13,0.00,1.538036,0.028314,237,175,0.001413,0.000640,24865054,16228610,0,0,28143,0,1,1 +1774075376.613859,18.17,4,3992.50,48.86,1753.66,1912.82,0.00,3521165569938.866699,3521165569940.377930,21,0,0.037453,76.372691,24867706,16236816,0,0,28146,0,1,1 +1774075381.614148,28.82,4,3992.50,48.93,1742.68,1915.65,0.00,0.000000,0.000000,21,0,0.041435,118.157105,24870873,16248939,0,0,28148,0,1,1 +1774075386.617500,3.56,4,3992.50,48.54,1756.78,1900.54,0.00,0.000000,0.000000,21,0,0.004707,10.610686,24871163,16250099,0,0,28151,0,1,1 +1774075391.617828,13.05,4,3992.50,53.42,1567.82,2091.39,0.00,2.006704,0.000195,238,2,20.232847,0.015037,24873439,16251097,0,0,28153,0,1,1 +1774075396.617518,3.06,4,3992.50,49.52,1720.39,1938.82,0.00,3518655341585.562988,3518655341587.521973,70,0,19.834734,0.410647,24875612,16251614,0,0,28156,0,1,1 +1774075401.617535,10.34,4,3992.50,48.63,1753.29,1903.88,0.00,3518425037243.578125,0.000000,21,0,0.017247,39.660275,24876849,16255875,0,0,28158,0,1,1 +1774075406.616936,0.45,4,3992.50,48.66,1751.85,1905.31,0.00,0.000000,0.000000,21,0,0.000000,0.000030,24876849,16255878,0,0,28161,0,1,1 +1774075411.617416,0.45,4,3992.50,48.61,1753.94,1903.23,0.00,62435.856545,50714.589488,5532711,891230,0.000000,0.000020,24876849,16255880,0,0,28163,0,1,1 +1774075416.617573,0.45,4,3992.50,48.67,1751.77,1905.39,0.00,3518326678723.961426,3518326690445.984863,21,0,0.000000,0.000513,24876849,16255886,0,0,28166,0,1,1 +1774075421.612968,0.60,4,3992.50,48.67,1751.77,1905.39,0.00,1.539797,0.028346,237,175,0.002201,0.001222,24876895,16255917,0,0,28168,0,1,1 +1774075426.613028,0.40,4,3992.50,48.67,1751.77,1905.39,0.00,0.000000,0.000000,237,175,0.000008,0.000038,24876896,16255921,0,0,28171,0,1,1 +1774075431.617324,0.50,4,3992.50,48.69,1751.04,1906.13,0.00,62382.598432,50679.961425,5531937,891102,0.000000,0.000020,24876896,16255923,0,0,28173,0,1,1 +1774075436.617294,0.45,4,3992.50,48.49,1758.68,1898.49,0.00,3518458602008.026367,3518458613720.292969,238,2,0.000031,0.000055,24876898,16255928,0,0,28176,0,1,1 +1774075441.616601,0.50,4,3992.50,48.49,1758.71,1898.45,0.00,3518924743236.414551,3518924743238.246582,199,0,0.000109,0.000152,24876907,16255939,0,0,28178,0,1,1 +1774075446.613382,0.50,4,3992.50,48.49,1758.50,1898.67,0.00,1.833016,0.000195,238,2,0.000156,0.000156,24876917,16255952,0,0,28181,0,1,1 +1774075451.617614,0.50,4,3992.50,48.49,1758.51,1898.65,0.00,3515461787411.916504,3515461787413.921875,21,0,0.000000,0.000020,24876917,16255954,0,0,28183,0,1,1 +1774075456.617846,0.40,4,3992.50,48.49,1758.51,1898.65,0.00,0.174992,0.000000,199,0,0.000000,0.000030,24876917,16255957,0,0,28186,0,1,1 +1774075461.616612,13.79,4,3992.50,54.69,1521.46,2141.27,0.00,0.000000,0.000000,199,0,1.205608,0.004638,24877159,16256159,0,0,28188,0,1,1 +1774075466.615544,33.77,4,3992.50,54.82,1522.68,2146.18,0.00,0.000000,0.000000,199,0,120.193022,0.032506,24889515,16258626,0,0,28191,0,1,1 +1774075471.617284,27.79,4,3992.50,54.55,1534.94,2135.91,0.00,1.362904,0.028310,237,175,118.121735,0.017676,24901609,16259956,0,0,28193,0,1,1 +1774075476.614546,27.39,4,3992.50,54.89,1521.57,2149.16,0.00,3520365488373.893066,3520365488375.355957,70,0,120.035693,0.035727,24913864,16262687,0,0,28196,0,1,1 +1774075481.616549,27.74,4,3992.50,54.77,1526.30,2144.44,0.00,3517027995554.809082,0.000000,21,0,118.730410,0.059350,24926155,16267263,0,0,28198,0,1,1 +1774075486.617371,28.18,4,3992.50,54.54,1535.66,2135.18,0.00,0.174971,0.000000,199,0,119.761193,0.059097,24938735,16271792,0,0,28201,0,1,1 +1774075491.617377,27.69,4,3992.50,54.84,1523.79,2147.10,0.00,3518433026169.891602,0.000000,70,0,119.167004,0.028342,24950993,16273941,0,0,28203,0,1,1 +1774075496.613556,28.58,4,3992.50,54.69,1529.45,2141.41,0.00,0.127050,0.000000,199,0,119.264495,0.043001,24963324,16277252,0,0,28206,0,1,1 +1774075501.615604,28.07,4,3992.50,54.72,1528.47,2142.50,0.00,3516996840412.018555,0.000000,21,0,119.827986,0.055775,24975714,16281559,0,0,28208,0,1,1 +1774075506.616493,5.94,4,3992.50,48.17,1784.77,1886.12,0.00,0.000000,0.000000,21,0,69.191703,0.026468,24982927,16283517,0,0,28211,0,1,1 +1774075511.617624,4.96,4,3992.50,48.45,1773.94,1896.95,0.00,62423.765273,50712.881667,5531950,891697,2.015591,0.010650,24983596,16284022,0,0,28213,0,1,1 +1774075516.617138,25.55,4,3992.50,49.73,1723.86,1946.96,0.00,0.000000,0.492821,5531950,892592,32.200850,0.142543,24994099,16291773,0,0,28216,0,1,1 +1774075521.616487,6.23,4,3992.50,50.15,1707.29,1963.49,0.00,3518895781025.166016,3518895792737.725098,238,2,6.050546,0.034905,24996322,16293477,0,0,28218,0,1,1 +1774075526.617557,1.40,4,3992.50,49.00,1752.40,1918.38,0.00,3517683984094.562012,3517683984096.568848,21,0,0.002305,0.002192,24996369,16293522,0,0,28221,0,1,1 +1774075531.617827,0.45,4,3992.50,48.88,1757.03,1913.75,0.00,1.538296,0.028319,237,175,0.001589,0.000786,24996399,16293542,0,0,28223,0,1,1 +1774075536.617662,0.75,4,3992.50,48.97,1753.30,1917.48,0.00,3518553410515.513184,3518553410516.975586,70,0,0.001597,0.000804,24996430,16293564,0,0,28226,0,1,1 +1774075541.614633,1.15,4,3992.50,48.97,1753.31,1917.46,0.00,62479.810323,50756.518078,5532725,893344,0.001590,0.000774,24996460,16293583,0,0,28228,0,1,1 +1774075546.617695,0.50,4,3992.50,48.97,1753.32,1917.45,0.00,0.000000,0.072905,5532725,893397,0.001588,0.000796,24996490,16293604,0,0,28231,0,1,1 +1774075551.617201,0.55,4,3992.50,48.99,1752.60,1918.18,0.00,3518784879096.748535,3518784890814.073730,21,0,0.001690,0.001555,24996528,16293636,0,0,28233,0,1,1 +1774075556.613050,0.50,4,3992.50,48.99,1752.61,1918.16,0.00,0.000000,0.000000,21,0,0.001616,0.000828,24996560,16293659,0,0,28236,0,1,1 +1774075561.612956,0.50,4,3992.50,48.99,1752.63,1918.15,0.00,0.048048,0.000000,70,0,0.001589,0.000786,24996590,16293679,0,0,28238,0,1,1 +1774075566.613424,0.45,4,3992.50,48.99,1752.64,1918.14,0.00,3518108337523.003906,0.000000,21,0,0.001744,0.000922,24996630,16293710,0,0,28241,0,1,1 +1774075571.613053,0.50,4,3992.50,48.99,1752.65,1918.13,0.00,62446.638349,50729.794438,5532725,893569,0.001672,0.000834,24996666,16293734,0,0,28243,0,1,1 +1774075576.613042,0.50,4,3992.50,48.98,1752.91,1917.87,0.00,3518445158454.082031,3518445158458.165527,5531951,893399,0.001589,0.000809,24996696,16293756,0,0,28246,0,1,1 +1774075581.616890,0.35,4,3992.50,48.99,1752.91,1917.88,0.00,3515731654526.794434,3515731666229.633789,70,0,0.001588,0.000786,24996726,16293776,0,0,28248,0,1,1 +1774075586.616931,0.50,4,3992.50,48.98,1752.93,1917.86,0.00,3518408262938.372559,0.000000,21,0,0.003126,0.002575,24996772,16293822,0,0,28251,0,1,1 +1774075591.617623,0.55,4,3992.50,48.98,1752.95,1917.84,0.00,0.174976,0.000000,199,0,0.002920,0.002520,24996818,16293867,0,0,28253,0,1,1 +1774075596.617439,0.45,4,3992.50,48.98,1752.95,1917.83,0.00,3518566540833.366211,0.000000,21,0,0.001589,0.000796,24996848,16293888,0,0,28256,0,1,1 +1774075601.617629,1.35,4,3992.50,48.95,1754.32,1916.31,0.00,0.174993,0.000000,199,0,0.007034,2.207426,24997195,16294353,0,0,28258,0,1,1 +1774075606.617385,27.45,4,3992.50,48.57,1761.74,1901.68,0.00,0.000000,0.000000,199,0,0.045554,114.568982,25000584,16306326,0,0,28261,0,1,1 +1774075611.617590,21.96,4,3992.50,48.64,1752.70,1904.50,0.00,62435.171542,50897.828268,5531951,894601,0.026481,88.319829,25002525,16315446,0,0,28263,0,1,1 +1774075616.617026,2.01,4,3992.50,48.66,1753.38,1905.12,0.00,4.109741,31.339766,5532725,894999,0.004717,0.005624,25002610,16315547,0,0,28266,0,1,1 +1774075621.617384,14.12,4,3992.50,49.73,1711.94,1946.88,0.00,18.038553,0.083978,5532834,895121,40.059677,0.019631,25006993,16316913,0,0,28268,0,1,1 +1774075626.616926,1.71,4,3992.50,48.90,1744.23,1914.58,0.00,3518759708836.420898,0.014064,5532060,895018,0.007007,3.011048,25007382,16317511,0,0,28271,0,1,1 +1774075631.617627,9.79,4,3992.50,48.47,1759.38,1897.65,0.00,3517943420658.056152,3517943432180.860840,199,0,0.015617,37.048556,25008508,16321302,0,0,28273,0,1,1 +1774075636.612957,0.40,4,3992.50,48.51,1757.73,1899.31,0.00,1.833548,0.000195,238,2,0.000039,0.000063,25008511,16321308,0,0,28276,0,1,1 +1774075641.612972,0.40,4,3992.50,48.52,1757.24,1899.80,0.00,62453.759450,50967.397431,5532060,895367,0.000000,0.000020,25008511,16321310,0,0,28278,0,1,1 +1774075646.612969,0.35,4,3992.50,48.52,1757.50,1899.54,0.00,3518439368673.558594,3518439380161.967773,21,0,0.000025,0.000061,25008513,16321315,0,0,28281,0,1,1 +1774075651.612978,0.40,4,3992.50,48.52,1757.28,1899.75,0.00,1.538376,0.028320,237,175,0.000000,0.000020,25008513,16321317,0,0,28283,0,1,1 +1774075656.612957,0.45,4,3992.50,48.53,1757.06,1899.97,0.00,0.000000,0.000000,237,175,0.000000,0.000030,25008513,16321320,0,0,28286,0,1,1 +1774075661.613122,0.50,4,3992.50,48.53,1757.06,1899.97,0.00,0.000000,0.000000,237,175,0.000000,0.000020,25008513,16321322,0,0,28288,0,1,1 +1774075666.613034,0.35,4,3992.50,48.53,1756.97,1900.06,0.00,3518498417383.878418,3518498417385.340332,70,0,0.000157,0.000210,25008525,16321337,0,0,28291,0,1,1 +1774075671.617202,0.45,4,3992.50,48.53,1757.07,1899.97,0.00,62403.883134,50929.194620,5532060,895414,0.000033,0.000059,25008528,16321342,0,0,28293,0,1,1 +1774075676.612968,0.45,4,3992.50,48.34,1764.48,1892.55,0.00,3521418926919.284180,3521418938413.317871,21,0,0.000156,0.000156,25008538,16321355,0,0,28296,0,1,1 +1774075681.612979,0.45,4,3992.50,48.34,1764.48,1892.55,0.00,0.048047,0.000000,70,0,0.000000,0.000664,25008538,16321361,0,0,28298,0,1,1 +1774075686.613004,0.40,4,3992.50,48.34,1764.48,1892.55,0.00,1.490324,0.028320,237,175,0.000000,0.000030,25008538,16321364,0,0,28301,0,1,1 +1774075691.617389,1.05,4,3992.50,48.30,1766.05,1890.99,0.00,0.468047,3515354326101.542969,238,2,0.002176,0.002276,25008572,16321396,0,0,28303,0,1,1 +1774075696.612946,42.27,4,3992.50,54.78,1523.11,2144.80,0.00,62509.485395,51017.160805,5532060,895617,105.240052,0.043074,25019279,16324613,0,0,28306,0,1,1 +1774075701.617256,28.16,4,3992.50,54.50,1536.88,2133.69,0.00,3515406966165.064941,3515406977637.289062,238,2,118.461511,0.039164,25031285,16327584,0,0,28308,0,1,1 +1774075706.613490,28.09,4,3992.50,54.75,1526.78,2143.73,0.00,3521089305317.662109,3521089305319.670410,21,0,119.655810,0.026913,25043477,16329639,0,0,28311,0,1,1 +1774075711.616487,27.61,4,3992.50,54.49,1537.43,2133.23,0.00,0.000000,0.000000,21,0,118.693002,0.021886,25055673,16331321,0,0,28313,0,1,1 +1774075716.618372,28.31,4,3992.50,54.52,1536.31,2134.39,0.00,0.000000,0.000000,21,0,119.717992,0.043108,25067798,16334681,0,0,28316,0,1,1 +1774075721.616321,28.06,4,3992.50,54.54,1535.40,2135.24,0.00,62481.582371,50992.952681,5532060,895724,118.814727,0.033829,25079926,16337156,0,0,28318,0,1,1 +1774075726.617251,28.28,4,3992.50,54.77,1526.09,2144.56,0.00,4.108513,0.064441,5532834,895920,119.943166,0.035691,25092180,16339915,0,0,28321,0,1,1 +1774075731.614020,28.97,4,3992.50,54.90,1521.25,2149.38,0.00,0.000000,0.029511,5532834,895934,118.840312,0.037961,25104287,16342834,0,0,28323,0,1,1 +1774075736.617049,9.99,4,3992.50,48.28,1780.36,1890.36,0.00,3516307148993.732422,3516307160474.709473,21,0,86.067477,0.021518,25113104,16344459,0,0,28326,0,1,1 +1774075741.615902,1.76,4,3992.50,48.38,1776.55,1894.17,0.00,0.000000,0.000000,21,0,0.004665,0.002283,25113187,16344516,0,0,28328,0,1,1 +1774075746.616547,13.97,4,3992.50,48.74,1762.34,1908.33,0.00,62452.143410,50965.965713,5532848,896335,10.084286,0.057602,25116843,16347249,0,0,28331,0,1,1 +1774075751.617863,20.65,4,3992.50,49.11,1747.73,1922.89,0.00,3517511127148.707031,3517511138631.833496,237,175,30.165886,0.127113,25126469,16354456,0,0,28333,0,1,1 +1774075756.616977,1.71,4,3992.50,48.69,1764.38,1906.20,0.00,0.000000,0.000000,237,175,0.002293,0.002193,25126515,16354501,0,0,28336,0,1,1 +1774075761.617721,0.45,4,3992.50,48.59,1768.28,1902.35,0.00,3517913573778.449707,3517913573779.959473,21,0,0.000970,0.000549,25126533,16354514,0,0,28338,0,1,1 +1774075766.613851,24.28,4,3992.50,48.84,1752.35,1912.10,0.00,0.175136,0.000000,199,0,0.051289,100.623819,25130287,16365162,0,0,28341,0,1,1 +1774075771.613027,25.60,4,3992.50,48.89,1742.79,1914.25,0.00,62466.208416,51154.681318,5532074,898441,0.035979,104.562450,25132962,16375859,0,0,28343,0,1,1 +1774075776.612957,0.80,4,3992.50,48.73,1749.32,1907.72,0.00,3518486070975.925293,3518486082285.920898,21,0,0.002494,0.003658,25133017,16375930,0,0,28346,0,1,1 +1774075781.613848,13.92,4,3992.50,49.72,1711.86,1946.71,0.00,62467.109853,51169.733302,5532955,898876,40.056985,0.021646,25137465,16377372,0,0,28348,0,1,1 +1774075786.617761,1.81,4,3992.50,49.17,1733.68,1924.93,0.00,3515686041921.053223,3515686053210.098633,237,175,0.004861,0.004307,25137563,16377455,0,0,28351,0,1,1 +1774075791.617412,0.45,4,3992.50,48.76,1749.63,1908.98,0.00,3518682446269.700684,3518682446271.210938,21,0,0.001589,0.000786,25137593,16377475,0,0,28353,0,1,1 +1774075796.617566,0.45,4,3992.50,48.69,1752.46,1906.16,0.00,0.000000,0.000000,21,0,0.001682,0.000872,25137629,16377502,0,0,28356,0,1,1 +1774075801.617397,0.45,4,3992.50,48.69,1752.47,1906.15,0.00,0.048048,0.000000,70,0,0.001589,0.000786,25137659,16377522,0,0,28358,0,1,1 +1774075806.617312,0.65,4,3992.50,48.68,1752.56,1906.06,0.00,0.126955,0.000000,199,0,0.001589,0.000796,25137689,16377543,0,0,28361,0,1,1 +1774075811.617549,0.40,4,3992.50,48.67,1753.07,1905.55,0.00,3518270404868.513672,0.000000,21,0,0.001614,0.001461,25137721,16377569,0,0,28363,0,1,1 +1774075816.613039,0.55,4,3992.50,48.67,1752.95,1905.66,0.00,62534.665845,51225.560260,5532957,899346,0.001591,0.000797,25137751,16377590,0,0,28366,0,1,1 +1774075821.617227,0.35,4,3992.50,48.67,1753.21,1905.40,0.00,3515492299362.093262,3515492310651.540527,21,0,0.001681,0.000861,25137787,16377616,0,0,28368,0,1,1 +1774075826.616521,0.45,4,3992.50,48.66,1753.31,1905.30,0.00,1.538596,0.028324,237,175,0.001652,0.000847,25137821,16377641,0,0,28371,0,1,1 +1774075831.615287,0.35,4,3992.50,48.57,1756.99,1901.62,0.00,62488.031438,51192.008406,5532183,899270,0.001664,0.000814,25137856,16377663,0,0,28373,0,1,1 +1774075836.617575,0.45,4,3992.50,48.58,1756.77,1901.85,0.00,3516827847394.357422,3516827858682.426758,237,175,0.001588,0.000796,25137886,16377684,0,0,28376,0,1,1 +1774075841.613067,0.65,4,3992.50,48.58,1756.78,1901.84,0.00,3521612171863.710449,3521612171865.222168,21,0,0.001599,0.000795,25137917,16377705,0,0,28378,0,1,1 +1774075846.616438,0.45,4,3992.50,48.60,1755.81,1902.81,0.00,62432.049250,51145.027756,5532183,899372,0.001588,0.000796,25137947,16377726,0,0,28381,0,1,1 +1774075851.617643,9.84,4,3992.50,49.38,1723.95,1933.23,0.00,3517589770289.854980,3517589781581.592285,199,0,0.021736,38.648357,25139433,16381898,0,0,28383,0,1,1 +1774075856.617309,1.50,4,3992.50,48.66,1751.71,1905.31,0.00,62482.243877,51219.065321,5532957,899859,0.002153,1.405433,25139530,16382124,0,0,28386,0,1,1 +1774075861.617819,0.45,4,3992.50,48.52,1757.32,1899.71,0.00,3518078562730.899902,3518078573990.844727,237,175,0.000000,0.000020,25139530,16382126,0,0,28388,0,1,1 +1774075866.617255,1.30,4,3992.50,48.36,1763.66,1893.36,0.00,3518833999641.129395,3518833999642.639648,21,0,0.000000,0.000030,25139530,16382129,0,0,28391,0,1,1 +1774075871.617145,0.45,4,3992.50,48.41,1761.70,1895.32,0.00,62475.519270,51216.853445,5532183,899731,0.000000,0.000020,25139530,16382131,0,0,28393,0,1,1 +1774075876.613038,0.45,4,3992.50,48.41,1761.70,1895.32,0.00,3521329811098.187012,3521329822363.853027,238,2,0.000000,0.000674,25139530,16382138,0,0,28396,0,1,1 +1774075881.617431,0.40,4,3992.50,48.41,1761.70,1895.32,0.00,3515348332062.905762,3515348332064.736328,199,0,0.000000,0.000020,25139530,16382140,0,0,28398,0,1,1 +1774075886.617645,0.50,4,3992.50,48.41,1761.48,1895.54,0.00,62475.412623,51217.584838,5532957,899950,0.000632,0.001170,25139545,16382167,0,0,28401,0,1,1 +1774075891.616574,0.40,4,3992.50,48.41,1761.48,1895.54,0.00,0.000000,0.007033,5532957,899958,0.001374,0.001804,25139564,16382197,0,0,28403,0,1,1 +1774075896.617229,0.40,4,3992.50,48.43,1760.75,1896.27,0.00,3517975693534.763672,3517975704790.253418,237,175,0.000084,0.000131,25139571,16382207,0,0,28406,0,1,1 +1774075901.617002,0.40,4,3992.50,48.43,1760.75,1896.27,0.00,62475.457022,51222.126112,5532183,899830,0.000093,0.000095,25139577,16382215,0,0,28408,0,1,1 +1774075906.617716,0.40,4,3992.50,48.24,1768.15,1888.88,0.00,0.000000,0.001562,5532183,899832,0.000000,0.000030,25139577,16382218,0,0,28411,0,1,1 +1774075911.612942,0.45,4,3992.50,48.26,1767.41,1889.61,0.00,0.000000,0.003128,5532183,899836,0.000000,0.000020,25139577,16382220,0,0,28413,0,1,1 +1774075916.614891,0.50,4,3992.50,48.26,1767.41,1889.61,0.00,3517066736830.191406,3517066748080.082520,70,0,0.000000,0.000030,25139577,16382223,0,0,28416,0,1,1 +1774075921.617232,25.45,4,3992.50,54.62,1526.64,2138.32,0.00,1.489634,0.028307,237,175,41.043353,0.024488,25143947,16383896,0,0,28418,0,1,1 +1774075926.616523,31.54,4,3992.50,54.79,1525.18,2145.12,0.00,3518936261607.181641,3518936261608.644043,70,0,118.178091,0.057376,25155885,16388368,0,0,28421,0,1,1 +1774075931.616534,28.00,4,3992.50,54.59,1532.90,2137.40,0.00,3518429498596.749023,0.000000,21,0,118.363278,0.036730,25167996,16391200,0,0,28423,0,1,1 +1774075936.613592,28.17,4,3992.50,54.66,1530.30,2140.11,0.00,62510.925262,51250.093833,5532183,899993,120.035647,0.044811,25180215,16394672,0,0,28426,0,1,1 +1774075941.613010,27.92,4,3992.50,54.90,1520.89,2149.50,0.00,4.109756,0.032328,5532957,900184,118.176268,0.031285,25192246,16397080,0,0,28428,0,1,1 +1774075946.616417,28.02,4,3992.50,54.52,1535.81,2134.63,0.00,3516041037573.500488,3516041048822.110352,238,2,120.083294,0.045270,25204528,16400575,0,0,28431,0,1,1 +1774075951.613742,27.66,4,3992.50,54.62,1531.73,2138.55,0.00,0.000000,0.000000,238,2,118.826388,0.047155,25216638,16404253,0,0,28433,0,1,1 +1774075956.614340,28.05,4,3992.50,54.64,1531.30,2139.20,0.00,3518016487178.856445,3518016487180.688477,199,0,119.550999,0.021923,25228879,16405918,0,0,28436,0,1,1 +1774075961.617281,24.27,4,3992.50,54.38,1541.32,2129.21,0.00,62441.345835,51190.099506,5532958,900270,119.492802,0.049920,25241003,16409820,0,0,28438,0,1,1 +1774075966.617693,1.30,4,3992.50,48.15,1785.53,1885.00,0.00,3518147825889.446777,3518147837146.562012,21,0,31.645018,0.017021,25244295,16411040,0,0,28441,0,1,1 +1774075971.616437,12.12,4,3992.50,48.87,1757.02,1913.47,0.00,62489.978086,51233.399194,5532196,900529,10.077855,0.053377,25247785,16413667,0,0,28443,0,1,1 +1774075976.612959,21.16,4,3992.50,49.46,1733.96,1936.46,0.00,3520886816792.601074,3520886828052.678223,237,175,30.198626,0.128468,25257642,16420955,0,0,28446,0,1,1 +1774075981.613722,1.60,4,3992.50,49.07,1749.29,1921.12,0.00,3517900297791.847168,3517900297793.182129,199,0,0.012585,0.007213,25257878,16421138,0,0,28448,0,1,1 +1774075986.613505,1.25,4,3992.50,48.71,1763.26,1907.10,0.00,3518589993801.453613,0.000000,21,0,0.001511,0.001810,25257910,16421174,0,0,28451,0,1,1 +1774075991.613030,0.50,4,3992.50,48.71,1763.20,1907.21,0.00,0.000000,0.000000,21,0,0.001589,0.000786,25257940,16421194,0,0,28453,0,1,1 +1774075996.613120,0.45,4,3992.50,48.74,1762.23,1908.18,0.00,0.048046,0.000000,70,0,0.001589,0.000796,25257970,16421215,0,0,28456,0,1,1 +1774076001.612958,0.45,4,3992.50,48.74,1762.23,1908.19,0.00,62476.267936,51223.293451,5532196,901693,0.001597,0.000794,25258001,16421236,0,0,28458,0,1,1 +1774076006.613026,0.45,4,3992.50,48.73,1762.59,1907.82,0.00,3518388960664.912598,3518388971917.241211,199,0,0.001589,0.000796,25258031,16421257,0,0,28461,0,1,1 +1774076011.612964,0.40,4,3992.50,48.73,1762.38,1908.03,0.00,62474.894877,51222.489761,5532196,901779,0.001715,0.001586,25258071,16421291,0,0,28463,0,1,1 +1774076016.617690,0.35,4,3992.50,48.73,1762.39,1908.02,0.00,3515114796992.269531,3515114808234.083984,21,0,0.001588,0.000795,25258101,16421312,0,0,28466,0,1,1 +1774076021.616996,0.75,4,3992.50,48.75,1761.67,1908.74,0.00,0.000000,0.000000,21,0,0.005134,0.003664,25258183,16421364,0,0,28468,0,1,1 +1774076026.617483,0.40,4,3992.50,48.75,1761.68,1908.73,0.00,0.174983,0.000000,199,0,0.001713,0.000897,25258221,16421393,0,0,28471,0,1,1 +1774076031.617218,0.50,4,3992.50,48.75,1761.70,1908.72,0.00,62481.543849,51224.743344,5532970,902090,0.001664,0.000826,25258256,16421416,0,0,28473,0,1,1 +1774076036.617850,0.50,4,3992.50,48.56,1769.10,1901.31,0.00,3517992445423.004395,3517992456677.911133,70,0,0.001589,0.000796,25258286,16421437,0,0,28476,0,1,1 +1774076041.615032,0.60,4,3992.50,48.56,1769.11,1901.30,0.00,62509.464213,51250.945070,5532196,902001,0.001590,0.000787,25258316,16421457,0,0,28478,0,1,1 +1774076046.615402,0.35,4,3992.50,48.37,1776.76,1893.65,0.00,3518176956817.574707,3518176968068.917969,70,0,0.001589,0.000796,25258346,16421478,0,0,28481,0,1,1 +1774076051.617194,0.70,4,3992.50,48.17,1784.45,1885.96,0.00,62451.857686,51203.806837,5532196,902092,0.001589,0.000786,25258376,16421498,0,0,28483,0,1,1 +1774076056.617394,0.45,4,3992.50,48.19,1783.48,1886.93,0.00,3518296866285.114258,3518296877535.286133,237,175,0.001597,0.000804,25258407,16421520,0,0,28486,0,1,1 +1774076061.616050,0.45,4,3992.50,48.19,1783.49,1886.93,0.00,0.468583,3519383249367.297363,238,2,0.001590,0.000786,25258437,16421540,0,0,28488,0,1,1 +1774076066.616946,0.80,4,3992.50,48.19,1783.50,1886.92,0.00,3517806530897.891602,3517806530899.849609,70,0,0.001639,0.000858,25258471,16421565,0,0,28491,0,1,1 +1774076071.616474,0.60,4,3992.50,48.19,1783.51,1886.91,0.00,62484.252033,51227.143244,5532970,902406,0.001589,0.000786,25258501,16421585,0,0,28493,0,1,1 +1774076076.613676,9.51,4,3992.50,48.66,1763.28,1905.34,0.00,3520407265588.114746,3520407276848.503418,238,2,0.023095,38.882591,25260103,16425917,0,0,28496,0,1,1 +1774076081.617431,28.83,4,3992.50,48.82,1748.91,1911.43,0.00,3515796792752.883789,3515796792754.889160,21,0,0.039446,118.083381,25263143,16438316,0,0,28498,0,1,1 +1774076086.617440,12.44,4,3992.50,48.68,1750.79,1906.11,0.00,62478.294704,51392.508747,5532972,903509,0.030091,48.078238,25265399,16443503,0,0,28501,0,1,1 +1774076091.614165,14.80,4,3992.50,50.12,1696.36,1962.32,0.00,3520743083845.209961,3520743094938.280762,21,0,40.090805,0.024550,25269884,16445175,0,0,28503,0,1,1 +1774076096.617538,11.14,4,3992.50,48.50,1757.97,1898.77,0.00,0.000000,0.000000,21,0,0.027904,40.037543,25271684,16449594,0,0,28506,0,1,1 +1774076101.612954,0.70,4,3992.50,48.49,1758.42,1898.31,0.00,0.175161,0.000000,199,0,0.000943,0.001738,25271706,16449629,0,0,28508,0,1,1 +1774076106.613767,0.50,4,3992.50,48.51,1757.31,1899.43,0.00,3517865207518.147461,0.000000,21,0,0.000000,0.000030,25271706,16449632,0,0,28511,0,1,1 +1774076111.617142,0.35,4,3992.50,48.51,1757.31,1899.43,0.00,62450.213992,51429.074025,5532329,904063,0.000000,0.000020,25271706,16449634,0,0,28513,0,1,1 +1774076116.617171,0.35,4,3992.50,48.51,1757.31,1899.43,0.00,3518416656539.588379,3518416667568.103516,21,0,0.000000,0.000030,25271706,16449637,0,0,28516,0,1,1 +1774076121.612973,0.45,4,3992.50,48.51,1757.31,1899.43,0.00,2.008522,0.000195,238,2,0.000025,0.000051,25271708,16449641,0,0,28518,0,1,1 +1774076126.612956,0.45,4,3992.50,48.52,1757.09,1899.65,0.00,3518448795133.250000,3518448795135.082520,199,0,0.000016,0.000046,25271710,16449646,0,0,28521,0,1,1 +1774076131.612965,0.40,4,3992.50,48.52,1757.09,1899.65,0.00,3518431211365.182129,0.000000,21,0,0.000000,0.000020,25271710,16449648,0,0,28523,0,1,1 +1774076136.617742,0.45,4,3992.50,48.52,1757.09,1899.64,0.00,0.000000,0.000000,21,0,0.000118,0.000136,25271718,16449659,0,0,28526,0,1,1 +1774076141.612957,0.70,4,3992.50,48.52,1757.10,1899.64,0.00,0.175168,0.000000,199,0,0.000188,0.000870,25271732,16449679,0,0,28528,0,1,1 +1774076146.613018,0.35,4,3992.50,48.52,1757.10,1899.64,0.00,3518394404800.375488,0.000000,21,0,0.000093,0.000105,25271738,16449688,0,0,28531,0,1,1 +1774076151.613212,0.35,4,3992.50,48.52,1757.10,1899.64,0.00,0.048045,0.000000,70,0,0.000000,0.000020,25271738,16449690,0,0,28533,0,1,1 +1774076156.612961,0.55,4,3992.50,48.46,1759.42,1897.32,0.00,0.000000,0.000000,70,0,0.000000,0.000030,25271738,16449693,0,0,28536,0,1,1 +1774076161.617190,25.36,4,3992.50,54.85,1517.98,2147.36,0.00,1.489073,0.028296,237,175,47.230147,0.022446,25276732,16451254,0,0,28538,0,1,1 +1774076166.616866,31.13,4,3992.50,54.80,1524.47,2145.72,0.00,0.000000,0.000000,237,175,119.173939,0.018399,25288998,16452602,0,0,28541,0,1,1 +1774076171.613525,27.64,4,3992.50,55.04,1515.17,2155.00,0.00,3520789167869.945801,3520789167871.409180,70,0,119.448368,0.026704,25301216,16454569,0,0,28543,0,1,1 +1774076176.612938,27.97,4,3992.50,54.67,1529.57,2140.64,0.00,3518850766745.904785,0.000000,21,0,118.977820,0.026539,25313155,16456590,0,0,28546,0,1,1 +1774076181.615475,28.23,4,3992.50,54.86,1522.22,2148.06,0.00,0.000000,0.000000,21,0,120.108322,0.038772,25325254,16459554,0,0,28548,0,1,1 +1774076186.613382,28.57,4,3992.50,54.88,1521.47,2148.84,0.00,0.175073,0.000000,199,0,118.218551,0.045090,25337182,16462955,0,0,28551,0,1,1 +1774076191.617943,28.01,4,3992.50,54.68,1529.54,2140.77,0.00,0.000000,0.000000,199,0,120.068383,0.054329,25349563,16467088,0,0,28553,0,1,1 +1774076196.617458,27.75,4,3992.50,54.97,1518.02,2152.22,0.00,1.363511,0.028323,237,175,118.994085,0.074455,25361960,16472886,0,0,28556,0,1,1 +1774076201.616331,22.62,4,3992.50,54.54,1535.10,2135.26,0.00,62509.029923,51479.914286,5533104,904609,119.410055,0.067272,25374511,16478094,0,0,28558,0,1,1 +1774076206.612956,1.65,4,3992.50,48.36,1777.10,1893.26,0.00,3520813813306.056641,3520813824341.471191,199,0,23.856381,0.015092,25377090,16479144,0,0,28561,0,1,1 +1774076211.616048,12.83,4,3992.50,48.42,1774.69,1895.61,0.00,1.830704,0.000195,238,2,12.080710,0.061539,25381228,16482302,0,0,28563,0,1,1 +1774076216.617734,19.01,4,3992.50,49.37,1737.37,1932.88,0.00,0.000000,0.000000,238,2,28.163399,0.123866,25390384,16489061,0,0,28566,0,1,1 +1774076221.614171,1.30,4,3992.50,49.47,1733.35,1936.84,0.00,3520946595970.588379,3520946595972.421875,199,0,0.002119,0.002039,25390427,16489103,0,0,28568,0,1,1 +1774076226.617465,0.45,4,3992.50,49.03,1750.72,1919.52,0.00,1.362481,0.028302,237,175,0.001588,0.000796,25390457,16489124,0,0,28571,0,1,1 +1774076231.616789,0.45,4,3992.50,48.97,1752.97,1917.27,0.00,62503.524739,51476.371320,5533115,906011,0.001629,0.000820,25390490,16489147,0,0,28573,0,1,1 +1774076236.612968,0.40,4,3992.50,48.97,1752.98,1917.25,0.00,3521127943769.642578,3521127954805.250000,21,0,0.001622,0.000835,25390522,16489171,0,0,28576,0,1,1 +1774076241.617442,0.40,4,3992.50,48.97,1753.00,1917.25,0.00,1.537004,0.028295,237,175,0.001588,0.000786,25390552,16489191,0,0,28578,0,1,1 +1774076246.615686,0.45,4,3992.50,48.97,1752.77,1917.48,0.00,0.000000,0.000000,237,175,0.001590,0.000796,25390582,16489212,0,0,28581,0,1,1 +1774076251.613062,0.50,4,3992.50,49.03,1750.74,1919.50,0.00,3520284460550.913574,3520284460552.424805,21,0,0.001716,0.000942,25390622,16489242,0,0,28583,0,1,1 +1774076256.613152,0.40,4,3992.50,49.03,1750.70,1919.51,0.00,1.538351,0.028320,237,175,0.001589,0.000796,25390652,16489263,0,0,28586,0,1,1 +1774076261.617711,0.50,4,3992.50,49.03,1750.76,1919.49,0.00,3515232107423.869141,3515232107425.377930,21,0,0.001743,0.000936,25390692,16489295,0,0,28588,0,1,1 +1774076266.617846,0.45,4,3992.50,48.83,1758.43,1911.81,0.00,1.538337,0.028320,237,175,0.001672,0.000844,25390728,16489320,0,0,28591,0,1,1 +1774076271.617256,0.40,4,3992.50,48.84,1758.20,1912.05,0.00,62502.446852,51476.116876,5533115,906445,0.001589,0.000786,25390758,16489340,0,0,28593,0,1,1 +1774076276.615326,0.40,4,3992.50,48.84,1757.89,1912.36,0.00,3519795872068.474121,3519795883099.098145,199,0,0.001590,0.001441,25390788,16489365,0,0,28596,0,1,1 +1774076281.613827,0.75,4,3992.50,48.84,1758.00,1912.25,0.00,62511.071433,51485.557628,5532341,906353,0.001590,0.000786,25390818,16489385,0,0,28598,0,1,1 +1774076286.614191,0.40,4,3992.50,48.85,1757.68,1912.53,0.00,3518181577237.331055,3518181588258.866699,70,0,0.000970,0.000559,25390836,16489399,0,0,28601,0,1,1 +1774076291.616650,0.45,4,3992.50,48.85,1757.74,1912.52,0.00,1.957826,0.000195,238,2,0.001588,0.000786,25390866,16489419,0,0,28603,0,1,1 +1774076296.613265,0.35,4,3992.50,48.85,1757.75,1912.50,0.00,0.000000,0.000000,238,2,0.001590,0.000797,25390896,16489440,0,0,28606,0,1,1 +1774076301.612962,0.55,4,3992.50,48.85,1757.77,1912.46,0.00,62494.284321,51473.374248,5532343,906490,0.001597,0.000794,25390927,16489461,0,0,28608,0,1,1 +1774076306.614625,0.45,4,3992.50,48.85,1757.80,1912.45,0.00,3517267905243.672852,3517267916260.254883,238,2,0.001589,0.000796,25390957,16489482,0,0,28611,0,1,1 +1774076311.615199,0.60,4,3992.50,48.85,1757.81,1912.44,0.00,3518033069203.690430,3518033069205.521973,199,0,0.001589,0.000786,25390987,16489502,0,0,28613,0,1,1 +1774076316.615332,11.30,4,3992.50,48.77,1758.33,1909.52,0.00,1.831787,0.000195,238,2,0.028008,47.070039,25392909,16494615,0,0,28616,0,1,1 +1774076321.612973,29.17,4,3992.50,48.86,1746.65,1912.87,0.00,3520097383962.157227,3520097383964.165039,21,0,0.044760,118.224333,25396179,16506946,0,0,28618,0,1,1 +1774076326.616525,19.11,4,3992.50,53.12,1578.94,2079.75,0.00,0.000000,0.000000,21,0,14.032495,39.844633,25399064,16512016,0,0,28621,0,1,1 +1774076331.617533,4.22,4,3992.50,49.79,1709.14,1949.52,0.00,2.006432,0.000195,238,2,26.041767,3.219078,25402209,16513219,0,0,28623,0,1,1 +1774076336.617823,9.88,4,3992.50,48.35,1763.71,1892.96,0.00,0.000000,0.000000,238,2,0.014069,36.851251,25403184,16516983,0,0,28626,0,1,1 +1774076341.616684,0.50,4,3992.50,48.36,1763.23,1893.44,0.00,3519238778155.368164,3519238778157.375977,21,0,0.000000,0.000664,25403184,16516989,0,0,28628,0,1,1 +1774076346.615172,0.40,4,3992.50,48.34,1763.91,1892.76,0.00,62533.580297,51701.291522,5533230,908378,0.000000,0.000030,25403184,16516992,0,0,28631,0,1,1 +1774076351.617192,0.55,4,3992.50,48.59,1754.32,1902.30,0.00,3517016595231.589844,3517016606054.224609,238,2,0.000000,0.000020,25403184,16516994,0,0,28633,0,1,1 +1774076356.617037,0.45,4,3992.50,48.60,1753.88,1902.79,0.00,3518546067770.740234,3518546067772.572266,199,0,0.000000,0.000030,25403184,16516997,0,0,28636,0,1,1 +1774076361.617403,0.40,4,3992.50,48.60,1753.88,1902.79,0.00,3518179595107.625000,0.000000,21,0,0.000025,0.000051,25403186,16517001,0,0,28638,0,1,1 +1774076366.614401,0.65,4,3992.50,48.60,1753.88,1902.79,0.00,0.048076,0.000000,70,0,0.000050,0.000092,25403190,16517008,0,0,28641,0,1,1 +1774076371.617400,0.40,4,3992.50,48.60,1753.88,1902.79,0.00,0.126877,0.000000,199,0,0.000031,0.000045,25403192,16517012,0,0,28643,0,1,1 +1774076376.617723,0.40,4,3992.50,48.60,1753.88,1902.79,0.00,3518209758029.500488,0.000000,70,0,0.000159,0.000224,25403205,16517028,0,0,28646,0,1,1 +1774076381.616388,0.50,4,3992.50,48.60,1753.88,1902.79,0.00,62527.217514,51729.661070,5532456,908437,0.000181,0.000177,25403217,16517042,0,0,28648,0,1,1 +1774076386.617593,0.40,4,3992.50,48.64,1752.13,1904.54,0.00,3517589245557.361328,3517589256347.473633,238,2,0.000000,0.000030,25403217,16517045,0,0,28651,0,1,1 +1774076391.613075,0.35,4,3992.50,48.64,1752.13,1904.54,0.00,62569.204268,51762.651175,5533230,908619,0.000000,0.000020,25403217,16517047,0,0,28653,0,1,1 +1774076396.612994,0.45,4,3992.50,48.64,1752.13,1904.54,0.00,3518493968520.091797,3518493968524.175293,5532456,908445,0.000000,0.000030,25403217,16517050,0,0,28656,0,1,1 +1774076401.616102,13.77,4,3992.50,54.55,1527.95,2135.68,0.00,3516251358030.710938,3516251368816.710938,238,2,7.410204,0.010157,25404176,16517691,0,0,28658,0,1,1 +1774076406.617385,33.64,4,3992.50,54.81,1522.96,2146.08,0.00,3517534565894.331055,3517534565896.162598,199,0,118.136267,0.029123,25416331,16519820,0,0,28661,0,1,1 +1774076411.617381,28.25,4,3992.50,54.55,1535.57,2135.62,0.00,3518439720345.297852,0.000000,21,0,120.170941,0.031786,25428711,16522244,0,0,28663,0,1,1 +1774076416.613017,27.94,4,3992.50,54.56,1535.16,2136.07,0.00,0.175153,0.000000,199,0,118.268821,0.021031,25440908,16523824,0,0,28666,0,1,1 +1774076421.612983,28.11,4,3992.50,54.73,1528.38,2142.82,0.00,0.000000,0.000000,199,0,120.166962,0.020644,25453181,16525394,0,0,28668,0,1,1 +1774076426.613748,27.86,4,3992.50,54.73,1528.54,2142.62,0.00,3517898931649.594727,0.000000,21,0,118.951600,0.035800,25465357,16528141,0,0,28671,0,1,1 +1774076431.617415,28.23,4,3992.50,54.76,1527.27,2144.02,0.00,62468.861495,51678.316657,5533231,908878,119.297067,0.075809,25477824,16534021,0,0,28673,0,1,1 +1774076436.613456,28.19,4,3992.50,54.89,1522.19,2148.93,0.00,3521224832461.046875,3521224843267.885254,199,0,119.877869,0.066721,25490377,16539200,0,0,28676,0,1,1 +1774076441.613177,28.61,4,3992.50,54.60,1533.60,2137.62,0.00,3518633400140.423340,0.000000,21,0,118.586023,0.060591,25502811,16543911,0,0,28678,0,1,1 +1774076446.617425,4.86,4,3992.50,49.97,1714.75,1956.51,0.00,1.537073,0.028296,237,175,64.642494,0.026312,25509604,16545896,0,0,28681,0,1,1 +1774076451.613482,2.26,4,3992.50,49.05,1750.84,1920.42,0.00,3521214639465.561523,3521214639467.073242,21,0,0.006131,0.001832,25509706,16545964,0,0,28683,0,1,1 +1774076456.618168,24.67,4,3992.50,49.28,1741.80,1929.38,0.00,62452.199354,51670.312710,5532484,909789,24.138138,0.115311,25517675,16551931,0,0,28686,0,1,1 +1774076461.617155,9.25,4,3992.50,48.31,1779.73,1891.42,0.00,3519150196585.290527,3519150207379.471191,21,0,16.095967,0.068960,25522826,16555851,0,0,28688,0,1,1 +1774076466.617178,0.70,4,3992.50,49.09,1749.32,1921.80,0.00,0.048047,0.000000,70,0,0.001589,0.000796,25522856,16555872,0,0,28691,0,1,1 +1774076471.617601,0.45,4,3992.50,48.71,1763.91,1907.25,0.00,3518139600307.198730,0.000000,21,0,0.001589,0.001430,25522886,16555896,0,0,28693,0,1,1 +1774076476.617010,1.40,4,3992.50,48.49,1772.81,1898.30,0.00,0.000000,0.000000,21,0,0.007267,2.007650,25523251,16556354,0,0,28696,0,1,1 +1774076481.616731,27.70,4,3992.50,48.68,1758.03,1905.86,0.00,0.000000,0.000000,21,0,0.049395,115.569133,25526965,16568319,0,0,28698,0,1,1 +1774076486.617482,21.55,4,3992.50,48.65,1752.79,1904.90,0.00,0.174974,0.000000,199,0,0.019662,87.511692,25528309,16577433,0,0,28701,0,1,1 +1774076491.616952,9.04,4,3992.50,53.33,1570.05,2087.92,0.00,1.832030,0.000195,238,2,7.020076,0.014908,25529371,16578154,0,0,28703,0,1,1 +1774076496.617172,6.22,4,3992.50,49.74,1710.66,1947.29,0.00,3518282566993.074707,3518282566994.906738,199,0,33.048200,0.013793,25532771,16578962,0,0,28706,0,1,1 +1774076501.616482,0.65,4,3992.50,49.12,1734.61,1923.30,0.00,0.000000,0.000000,199,0,0.000979,0.000557,25532790,16578976,0,0,28708,0,1,1 +1774076506.617658,0.55,4,3992.50,48.81,1746.96,1911.01,0.00,62518.031284,51894.050566,5533397,912196,0.001475,0.000733,25532821,16579000,0,0,28711,0,1,1 +1774076511.613444,0.50,4,3992.50,48.66,1752.93,1905.03,0.00,0.000000,0.065192,5533397,912268,0.001591,0.000787,25532851,16579020,0,0,28713,0,1,1 +1774076516.613329,0.60,4,3992.50,48.66,1753.01,1904.96,0.00,3518518487462.228027,3518518498087.551758,237,175,0.001589,0.000796,25532881,16579041,0,0,28716,0,1,1 +1774076521.617149,0.45,4,3992.50,48.65,1753.02,1904.95,0.00,62479.519265,51885.666117,5532623,912235,0.001613,0.000817,25532913,16579063,0,0,28718,0,1,1 +1774076526.617326,0.55,4,3992.50,48.65,1753.04,1904.94,0.00,3518312436957.434570,3518312447558.509277,238,2,0.001589,0.000796,25532943,16579084,0,0,28721,0,1,1 +1774076531.616987,0.50,4,3992.50,48.61,1754.83,1903.14,0.00,3518676093912.589844,3518676093914.421875,199,0,0.001620,0.000811,25532975,16579106,0,0,28723,0,1,1 +1774076536.615880,0.35,4,3992.50,48.61,1754.85,1903.12,0.00,62546.566401,51937.070249,5533397,912572,0.001745,0.001579,25533015,16579142,0,0,28726,0,1,1 +1774076541.612957,0.45,4,3992.50,48.61,1754.61,1903.36,0.00,3520495601957.840820,3520495612569.362793,238,2,0.001673,0.000835,25533051,16579166,0,0,28728,0,1,1 +1774076546.615773,0.45,4,3992.50,48.63,1753.88,1904.09,0.00,62495.700521,51896.424025,5533397,912656,0.001588,0.000796,25533081,16579187,0,0,28731,0,1,1 +1774076551.613544,0.50,4,3992.50,48.63,1753.89,1904.08,0.00,0.000000,0.009770,5533397,912668,0.001590,0.000787,25533111,16579207,0,0,28733,0,1,1 +1774076556.614812,0.45,4,3992.50,48.63,1753.90,1904.06,0.00,3517545006186.073242,3517545016788.620117,238,2,0.001589,0.000796,25533141,16579228,0,0,28736,0,1,1 +1774076561.616404,11.13,4,3992.50,48.32,1764.42,1892.03,0.00,3517317625577.066406,3517317625579.072754,21,0,0.020519,40.048119,25534538,16583602,0,0,28738,0,1,1 +1774076566.617095,0.65,4,3992.50,48.32,1764.77,1891.68,0.00,0.048040,0.000000,70,0,0.000924,0.002243,25534567,16583646,0,0,28741,0,1,1 +1774076571.613007,0.40,4,3992.50,48.32,1764.77,1891.68,0.00,1.960392,0.000195,238,2,0.000000,0.000020,25534567,16583648,0,0,28743,0,1,1 +1774076576.617390,0.40,4,3992.50,48.33,1764.30,1892.15,0.00,3515355814603.516113,0.028100,237,175,0.000000,0.000030,25534567,16583651,0,0,28746,0,1,1 +1774076581.613106,0.40,4,3992.50,48.33,1764.06,1892.39,0.00,0.000000,0.000000,237,175,0.000000,0.000020,25534567,16583653,0,0,28748,0,1,1 +1774076586.612972,0.30,4,3992.50,48.33,1764.06,1892.38,0.00,62528.928103,51964.853330,5532623,912900,0.000000,0.000030,25534567,16583656,0,0,28751,0,1,1 +1774076591.615631,0.50,4,3992.50,48.33,1764.08,1892.37,0.00,3516567217365.085938,3516567227922.767578,238,2,0.000000,0.000020,25534567,16583658,0,0,28753,0,1,1 +1774076596.615505,0.40,4,3992.50,48.33,1764.08,1892.37,0.00,62528.354664,51967.203006,5532624,912927,0.000025,0.000061,25534569,16583663,0,0,28756,0,1,1 +1774076601.616926,0.40,4,3992.50,48.27,1766.40,1890.04,0.00,0.000000,0.003124,5532624,912931,0.000066,0.000742,25534575,16583675,0,0,28758,0,1,1 +1774076606.617274,0.60,4,3992.50,48.31,1765.18,1891.27,0.00,4.108992,0.030857,5533398,913111,0.000138,0.000173,25534585,16583688,0,0,28761,0,1,1 +1774076611.617508,0.50,4,3992.50,48.29,1765.86,1890.59,0.00,3518272409481.158203,3518272409485.244141,5532624,912941,0.000093,0.000095,25534591,16583696,0,0,28763,0,1,1 +1774076616.613049,0.40,4,3992.50,48.26,1766.77,1889.67,0.00,3521577869805.490723,3521577880375.794434,238,2,0.000000,0.000030,25534591,16583699,0,0,28766,0,1,1 +1774076621.617406,0.70,4,3992.50,48.30,1765.34,1891.11,0.00,62472.341010,51920.726655,5532624,912996,0.002172,0.001044,25534635,16583729,0,0,28768,0,1,1 +1774076626.616460,7.91,4,3992.50,54.67,1521.62,2140.55,0.00,3519103322467.011719,3519103333031.653809,199,0,2.209549,0.007803,25535053,16584061,0,0,28771,0,1,1 +1774076631.616780,38.73,4,3992.50,54.46,1535.68,2132.09,0.00,1.363292,0.028319,237,175,112.147566,0.050146,25546467,16587931,0,0,28773,0,1,1 +1774076636.617500,28.03,4,3992.50,54.62,1531.00,2138.64,0.00,0.468389,3517929910725.497559,238,2,119.948706,0.050197,25558718,16591815,0,0,28776,0,1,1 +1774076641.616978,27.92,4,3992.50,54.51,1535.72,2134.07,0.00,3518804757188.512207,0.028128,237,175,118.175509,0.056156,25570802,16596190,0,0,28778,0,1,1 +1774076646.617398,28.10,4,3992.50,54.50,1535.87,2133.73,0.00,3518142215471.583496,3518142215472.918457,199,0,119.955994,0.046335,25583113,16599803,0,0,28781,0,1,1 +1774076651.616469,27.81,4,3992.50,54.48,1536.61,2133.17,0.00,0.000000,0.000000,199,0,118.384825,0.049711,25595163,16603665,0,0,28783,0,1,1 +1774076656.613899,28.34,4,3992.50,54.63,1531.02,2138.79,0.00,62564.885078,51992.951767,5533398,913377,120.026027,0.051949,25607329,16607704,0,0,28786,0,1,1 +1774076661.617547,28.15,4,3992.50,54.44,1538.66,2131.26,0.00,3515871988650.963379,3515871999207.928711,238,2,118.676046,0.031397,25619370,16610123,0,0,28788,0,1,1 +1774076666.616498,28.07,4,3992.50,54.61,1531.53,2138.24,0.00,3519175450949.815430,3519175450951.774414,70,0,119.790276,0.045422,25631598,16613588,0,0,28791,0,1,1 +1774076671.617224,7.34,4,3992.50,48.23,1781.60,1888.28,0.00,3517926836500.736816,0.000000,21,0,76.096286,0.037122,25639401,16616418,0,0,28793,0,1,1 +1774076676.617373,2.60,4,3992.50,48.25,1780.95,1888.94,0.00,0.174995,0.000000,199,0,0.007855,0.005299,25639517,16616506,0,0,28796,0,1,1 +1774076681.618060,23.25,4,3992.50,49.60,1727.87,1941.97,0.00,1.831584,0.000195,238,2,31.792018,0.140012,25649946,16624163,0,0,28798,0,1,1 +1774076686.615195,7.18,4,3992.50,49.85,1718.21,1951.58,0.00,0.000000,0.000000,238,2,8.464705,0.042320,25652851,16626326,0,0,28801,0,1,1 +1774076691.616921,0.80,4,3992.50,49.29,1739.98,1929.74,0.00,3517223185838.346680,0.028115,237,175,0.001904,0.000799,25652882,16626347,0,0,28803,0,1,1 +1774076696.616940,0.50,4,3992.50,49.01,1750.94,1918.79,0.00,0.000000,0.000000,237,175,0.001589,0.000796,25652912,16626368,0,0,28806,0,1,1 +1774076701.617444,0.40,4,3992.50,48.78,1759.87,1909.92,0.00,3518083010395.024902,3518083010396.534668,21,0,0.001589,0.000786,25652942,16626388,0,0,28808,0,1,1 +1774076706.613026,0.40,4,3992.50,48.82,1758.43,1911.37,0.00,0.000000,0.000000,21,0,0.001591,0.000797,25652972,16626409,0,0,28811,0,1,1 +1774076711.617229,0.45,4,3992.50,48.82,1758.45,1911.35,0.00,62476.363062,51924.239909,5532638,914847,0.001588,0.000786,25653002,16626429,0,0,28813,0,1,1 +1774076716.617113,0.45,4,3992.50,48.79,1759.61,1910.19,0.00,3518518681691.489746,3518518692252.678711,70,0,0.001690,0.000921,25653040,16626458,0,0,28816,0,1,1 +1774076721.618405,0.45,4,3992.50,48.83,1757.91,1911.90,0.00,1.489947,0.028313,237,175,0.001622,0.000813,25653073,16626480,0,0,28818,0,1,1 +1774076726.613437,0.40,4,3992.50,48.92,1754.59,1915.21,0.00,0.000000,0.000000,237,175,0.001591,0.000810,25653103,16626502,0,0,28821,0,1,1 +1774076731.615318,0.40,4,3992.50,48.92,1754.60,1915.21,0.00,62507.932186,51948.438819,5533412,915140,0.001775,0.001593,25653145,16626539,0,0,28823,0,1,1 +1774076736.614212,0.50,4,3992.50,48.92,1754.62,1915.19,0.00,3519215288488.772461,3519215299056.084473,21,0,0.001633,0.000811,25653178,16626561,0,0,28826,0,1,1 +1774076741.614418,0.65,4,3992.50,48.92,1754.63,1915.17,0.00,2.006753,0.000195,238,2,0.001589,0.000786,25653208,16626581,0,0,28828,0,1,1 +1774076746.612946,0.45,4,3992.50,48.72,1762.27,1907.54,0.00,62545.280805,51983.399118,5532638,915067,0.001590,0.000796,25653238,16626602,0,0,28831,0,1,1 +1774076751.617637,0.45,4,3992.50,48.72,1762.28,1907.52,0.00,3515139050267.921387,3515139060818.625977,199,0,0.001588,0.000785,25653268,16626622,0,0,28833,0,1,1 +1774076756.617154,2.81,4,3992.50,48.88,1756.03,1913.78,0.00,3518776976357.866699,0.000000,70,0,0.001597,0.000804,25653299,16626644,0,0,28836,0,1,1 +1774076761.617682,0.35,4,3992.50,48.88,1756.04,1913.77,0.00,3518066309706.318848,0.000000,21,0,0.001589,0.000774,25653329,16626663,0,0,28838,0,1,1 +1774076766.613043,0.40,4,3992.50,48.88,1756.05,1913.75,0.00,62586.933856,52016.382442,5532638,915102,0.001591,0.000797,25653359,16626684,0,0,28841,0,1,1 +1774076771.616506,0.45,4,3992.50,48.88,1756.07,1913.72,0.00,3516002013289.158691,3516002023840.589355,238,2,0.001588,0.000786,25653389,16626704,0,0,28843,0,1,1 +1774076776.617223,0.45,4,3992.50,48.88,1756.09,1913.71,0.00,3517932553716.910645,3517932553718.917480,21,0,0.001589,0.000796,25653419,16626725,0,0,28846,0,1,1 +1774076781.612955,1.36,4,3992.50,48.84,1757.48,1912.26,0.00,0.048088,0.000000,70,0,0.006980,2.209352,25653798,16627198,0,0,28848,0,1,1 +1774076786.617039,26.42,4,3992.50,49.00,1744.63,1918.27,0.00,0.000000,0.000000,70,0,0.062567,110.066743,25658624,16638687,0,0,28851,0,1,1 +1774076791.617429,23.27,4,3992.50,48.73,1748.59,1907.78,0.00,3518162999037.211426,0.000000,21,0,0.051188,92.725934,25662552,16648382,0,0,28853,0,1,1 +1774076796.612948,11.43,4,3992.50,49.80,1708.42,1949.88,0.00,2.008636,0.000195,238,2,40.099659,0.022915,25666863,16649807,0,0,28856,0,1,1 +1774076801.613025,10.76,4,3992.50,48.94,1740.37,1916.16,0.00,3518383027893.768555,3518383027895.600098,199,0,0.027215,40.062387,25668798,16654198,0,0,28858,0,1,1 +1774076806.613029,0.70,4,3992.50,48.94,1740.58,1915.95,0.00,1.363378,0.028320,237,175,0.001401,0.003115,25668834,16654257,0,0,28861,0,1,1 +1774076811.616597,0.40,4,3992.50,48.69,1750.19,1906.34,0.00,3515928585397.751953,3515928585399.260742,21,0,0.000000,0.000020,25668834,16654259,0,0,28863,0,1,1 +1774076816.614865,0.55,4,3992.50,48.68,1750.41,1906.12,0.00,0.048064,0.000000,70,0,0.000000,0.000030,25668834,16654262,0,0,28866,0,1,1 +1774076821.617296,0.35,4,3992.50,48.68,1750.66,1905.87,0.00,0.000000,0.000000,70,0,0.000000,0.000020,25668834,16654264,0,0,28868,0,1,1 +1774076826.616490,0.45,4,3992.50,48.68,1750.44,1906.08,0.00,62556.899406,52218.051458,5532766,916956,0.000025,0.000061,25668836,16654269,0,0,28871,0,1,1 +1774076831.616399,0.50,4,3992.50,48.69,1750.20,1906.33,0.00,3518501263282.699219,3518501273618.606445,237,175,0.000039,0.000053,25668839,16654274,0,0,28873,0,1,1 +1774076836.613043,1.16,4,3992.50,48.14,1771.62,1884.91,0.00,3520800367271.534180,3520800367273.044922,21,0,0.000031,0.000055,25668841,16654279,0,0,28876,0,1,1 +1774076841.612995,0.45,4,3992.50,48.21,1769.18,1887.36,0.00,62547.458945,52214.146789,5532766,916987,0.000188,0.000226,25668855,16654295,0,0,28878,0,1,1 +1774076846.612953,0.35,4,3992.50,48.24,1767.70,1888.83,0.00,4.109312,0.029297,5533540,917165,0.000056,0.000086,25668859,16654302,0,0,28881,0,1,1 +1774076851.617206,0.40,4,3992.50,48.24,1767.70,1888.83,0.00,3515447023778.548828,3515447023782.626953,5532766,916989,0.000124,0.000120,25668867,16654312,0,0,28883,0,1,1 +1774076856.615520,0.35,4,3992.50,48.24,1767.70,1888.82,0.00,3519623594555.920410,3519623604892.568848,70,0,0.000000,0.000030,25668867,16654315,0,0,28886,0,1,1 +1774076861.612968,0.40,4,3992.50,48.24,1767.71,1888.82,0.00,1.491093,0.028335,237,175,0.000000,0.000664,25668867,16654321,0,0,28888,0,1,1 +1774076866.616377,26.86,4,3992.50,54.75,1521.59,2143.74,0.00,3516040387438.447266,3516040387439.781250,199,0,49.439505,0.027575,25674102,16656290,0,0,28891,0,1,1 +1774076871.618269,31.09,4,3992.50,54.87,1521.04,2148.44,0.00,0.000000,0.000000,199,0,119.521660,0.036128,25686337,16659053,0,0,28893,0,1,1 +1774076876.617774,28.09,4,3992.50,54.72,1527.27,2142.25,0.00,3518785387770.893555,0.000000,70,0,118.779575,0.022626,25698612,16660759,0,0,28896,0,1,1 +1774076881.615961,27.77,4,3992.50,54.67,1529.07,2140.51,0.00,3519713192204.213379,0.000000,21,0,119.808043,0.033418,25710865,16663382,0,0,28898,0,1,1 +1774076886.613427,27.96,4,3992.50,55.05,1514.18,2155.43,0.00,0.175089,0.000000,199,0,118.623124,0.028712,25722985,16665622,0,0,28901,0,1,1 +1774076891.615444,27.91,4,3992.50,55.14,1510.95,2158.76,0.00,3517018558954.599609,0.000000,70,0,120.115501,0.036892,25735128,16668468,0,0,28903,0,1,1 +1774076896.617006,27.91,4,3992.50,54.80,1524.11,2145.48,0.00,62531.392217,52197.737342,5533540,917454,118.726667,0.026989,25747254,16670527,0,0,28906,0,1,1 +1774076901.613274,28.15,4,3992.50,54.85,1522.16,2147.43,0.00,3521065046047.076660,3521065056391.728027,21,0,119.654016,0.029329,25759503,16672798,0,0,28908,0,1,1 +1774076906.617524,21.88,4,3992.50,54.71,1527.52,2142.16,0.00,0.174851,0.000000,199,0,119.062424,0.044033,25771606,16676196,0,0,28911,0,1,1 +1774076911.617388,13.57,4,3992.50,50.01,1711.55,1958.11,0.00,0.000000,0.000000,199,0,35.743461,0.072135,25778502,16680003,0,0,28913,0,1,1 +1774076916.616398,14.39,4,3992.50,49.30,1739.41,1930.20,0.00,1.832199,0.000195,238,2,20.115505,0.090390,25785196,16684877,0,0,28916,0,1,1 +1774076921.615250,5.97,4,3992.50,49.23,1742.26,1927.30,0.00,3519245195201.130371,3519245195202.962891,199,0,6.044249,0.030863,25787277,16686416,0,0,28918,0,1,1 +1774076926.616382,21.12,4,3992.50,49.58,1723.54,1941.02,0.00,62532.681275,52260.820231,5532784,919130,0.030496,87.910627,25789412,16695924,0,0,28921,0,1,1 +1774076931.617016,28.59,4,3992.50,49.97,1699.78,1956.51,0.00,3517990864569.084473,3517990874842.142090,21,0,0.060930,117.167315,25793991,16708322,0,0,28923,0,1,1 +1774076936.612965,1.56,4,3992.50,49.71,1711.14,1946.30,0.00,0.000000,0.000000,21,0,0.005578,0.004422,25794100,16708425,0,0,28926,0,1,1 +1774076941.613197,13.35,4,3992.50,49.85,1706.52,1951.87,0.00,0.174992,0.000000,199,0,40.060831,0.025097,25798447,16710134,0,0,28928,0,1,1 +1774076946.617067,0.90,4,3992.50,49.19,1732.51,1925.92,0.00,62516.221528,52357.159703,5532905,920113,0.002289,0.003028,25798492,16710179,0,0,28931,0,1,1 +1774076951.617616,0.40,4,3992.50,48.59,1756.21,1902.21,0.00,3518050842523.990234,3518050852689.974121,21,0,0.001589,0.000786,25798522,16710199,0,0,28933,0,1,1 +1774076956.617689,0.35,4,3992.50,48.47,1760.86,1897.57,0.00,0.174997,0.000000,199,0,0.001640,0.000858,25798556,16710224,0,0,28936,0,1,1 +1774076961.614125,0.45,4,3992.50,48.46,1761.21,1897.22,0.00,1.833143,0.000195,238,2,0.001590,0.000787,25798586,16710244,0,0,28938,0,1,1 +1774076966.617221,0.65,4,3992.50,48.46,1761.26,1897.17,0.00,3516260277375.177246,3516260277377.183105,21,0,0.001763,0.000958,25798628,16710277,0,0,28941,0,1,1 +1774076971.616137,1.51,4,3992.50,48.48,1760.29,1898.14,0.00,0.000000,0.000000,21,0,0.001615,0.000805,25798660,16710298,0,0,28943,0,1,1 +1774076976.616486,0.45,4,3992.50,48.49,1760.08,1898.35,0.00,0.048044,0.000000,70,0,0.001589,0.000796,25798690,16710319,0,0,28946,0,1,1 +1774076981.616843,0.45,4,3992.50,48.49,1760.09,1898.34,0.00,62560.270352,52417.239589,5532906,920387,0.002352,0.001783,25798729,16710347,0,0,28948,0,1,1 +1774076986.617676,0.40,4,3992.50,48.49,1759.86,1898.57,0.00,3517851281255.322754,3517851291397.437012,21,0,0.001620,0.000821,25798761,16710370,0,0,28951,0,1,1 +1774076991.617182,0.45,4,3992.50,48.50,1759.64,1898.80,0.00,1.538531,0.028323,237,175,0.001672,0.000834,25798797,16710394,0,0,28953,0,1,1 +1774076996.617152,0.40,4,3992.50,48.50,1759.65,1898.79,0.00,3518457534307.320801,3518457534308.655762,199,0,0.001589,0.001440,25798827,16710419,0,0,28956,0,1,1 +1774077001.617248,0.40,4,3992.50,48.50,1759.66,1898.78,0.00,3518369884875.326172,0.000000,70,0,0.001589,0.000786,25798857,16710439,0,0,28958,0,1,1 +1774077006.617611,0.65,4,3992.50,48.50,1759.46,1898.98,0.00,3518181850800.784668,0.000000,21,0,0.001589,0.000796,25798887,16710460,0,0,28961,0,1,1 +1774077011.616410,0.40,4,3992.50,48.50,1759.47,1898.96,0.00,0.000000,0.000000,21,0,0.001590,0.000786,25798917,16710480,0,0,28963,0,1,1 +1774077016.618425,6.63,4,3992.50,48.86,1744.60,1912.93,0.00,62543.693436,52400.233624,5533680,920925,0.018302,24.630111,25800080,16713245,0,0,28966,0,1,1 +1774077021.615483,4.62,4,3992.50,48.97,1739.28,1917.20,0.00,3520508857345.179688,3520508867498.702148,21,0,0.007991,15.436394,25800607,16714999,0,0,28968,0,1,1 +1774077026.617402,0.55,4,3992.50,48.77,1747.16,1909.32,0.00,1.537789,0.028309,237,175,0.000000,0.000030,25800607,16715002,0,0,28971,0,1,1 +1774077031.617662,0.40,4,3992.50,48.61,1753.11,1903.37,0.00,62559.995868,52454.637408,5532906,920961,0.000000,0.000020,25800607,16715004,0,0,28973,0,1,1 +1774077036.615023,0.40,4,3992.50,48.61,1753.11,1903.37,0.00,3520294815751.049805,3520294825862.269531,237,175,0.000000,0.000030,25800607,16715007,0,0,28976,0,1,1 +1774077041.617567,0.65,4,3992.50,48.62,1752.87,1903.61,0.00,3516647889202.739746,3516647889204.074707,199,0,0.000000,0.000020,25800607,16715009,0,0,28978,0,1,1 +1774077046.617569,0.40,4,3992.50,48.62,1752.87,1903.61,0.00,1.831835,0.000195,238,2,0.000000,0.000030,25800607,16715012,0,0,28981,0,1,1 +1774077051.617847,0.45,4,3992.50,48.62,1752.87,1903.61,0.00,0.000000,0.000000,238,2,0.000025,0.000051,25800609,16715016,0,0,28983,0,1,1 +1774077056.613033,0.40,4,3992.50,48.63,1752.64,1903.83,0.00,62623.067960,52512.070933,5532906,921091,0.000058,0.000100,25800614,16715024,0,0,28986,0,1,1 +1774077061.616951,0.40,4,3992.50,48.63,1752.41,1904.07,0.00,3515682068705.855957,3515682078801.039551,199,0,0.000075,0.000756,25800620,16715036,0,0,28988,0,1,1 +1774077066.613037,0.40,4,3992.50,48.63,1752.41,1904.07,0.00,1.833271,0.000195,238,2,0.000156,0.000156,25800630,16715049,0,0,28991,0,1,1 +1774077071.613010,0.40,4,3992.50,48.63,1752.41,1904.07,0.00,3518456382357.403320,3518456382359.410156,21,0,0.000000,0.000020,25800630,16715051,0,0,28993,0,1,1 +1774077076.617552,0.50,4,3992.50,48.64,1752.17,1904.31,0.00,0.048003,0.000000,70,0,0.000000,0.000030,25800630,16715054,0,0,28996,0,1,1 +1774077081.617074,0.40,4,3992.50,48.64,1752.16,1904.32,0.00,62574.824280,52466.578359,5533680,921295,0.000000,0.000020,25800630,16715056,0,0,28998,0,1,1 +1774077086.616766,29.79,4,3992.50,54.66,1525.22,2140.26,0.00,3518654288805.583496,3518654298912.025879,237,175,59.291177,0.030453,25806840,16717136,0,0,29001,0,1,1 +1774077091.617368,30.24,4,3992.50,54.84,1522.23,2146.96,0.00,3518013281245.419922,3518013281246.754883,199,0,119.149541,0.030598,25818954,16719419,0,0,29003,0,1,1 +1774077096.616905,28.18,4,3992.50,54.64,1529.98,2139.36,0.00,0.000000,0.000000,199,0,118.975441,0.016634,25831116,16720663,0,0,29006,0,1,1 +1774077101.617438,29.74,4,3992.50,54.99,1516.59,2152.84,0.00,1.831641,0.000195,238,2,119.352550,0.022052,25843279,16722325,0,0,29008,0,1,1 +1774077106.617840,28.02,4,3992.50,54.71,1527.53,2141.96,0.00,0.000000,0.000000,238,2,119.356172,0.019354,25855567,16723777,0,0,29011,0,1,1 +1774077111.618380,28.60,4,3992.50,54.82,1523.18,2146.33,0.00,3518057703331.726562,3518057703333.733398,21,0,119.351475,0.017997,25867731,16725121,0,0,29013,0,1,1 +1774077116.613260,28.35,4,3992.50,54.91,1519.73,2149.77,0.00,1.539956,0.028349,237,175,119.085787,0.021011,25879829,16726718,0,0,29016,0,1,1 +1774077121.612916,28.82,4,3992.50,54.70,1527.78,2141.80,0.00,3518679282756.541504,3518679282758.051758,21,0,119.574581,0.024398,25891965,16728562,0,0,29018,0,1,1 +1774077126.617858,19.92,4,3992.50,54.92,1519.49,2150.06,0.00,62503.002116,52410.025359,5532907,921374,119.446397,0.017811,25904137,16729854,0,0,29021,0,1,1 +1774077131.614226,0.75,4,3992.50,48.43,1773.40,1896.14,0.00,3520994848384.812012,3520994858493.101562,238,2,11.828068,0.003411,25905414,16730041,0,0,29023,0,1,1 +1774077136.616609,15.97,4,3992.50,48.91,1754.41,1915.08,0.00,62533.091190,52437.054270,5532921,921731,14.226588,0.069262,25910193,16733620,0,0,29026,0,1,1 +1774077141.616377,15.29,4,3992.50,48.82,1757.88,1911.56,0.00,3518600619095.624023,3518600629198.948242,21,0,24.002520,0.101485,25917747,16739286,0,0,29028,0,1,1 +1774077146.616503,3.21,4,3992.50,48.13,1784.93,1884.52,0.00,0.048046,0.000000,70,0,2.023012,0.013691,25918577,16739908,0,0,29031,0,1,1 +1774077151.617442,0.85,4,3992.50,48.17,1783.27,1886.16,0.00,3517776333389.616211,0.000000,21,0,0.002293,0.002183,25918623,16739952,0,0,29033,0,1,1 +1774077156.612962,0.45,4,3992.50,48.18,1783.07,1886.37,0.00,2.008636,0.000195,238,2,0.001591,0.000797,25918653,16739973,0,0,29036,0,1,1 +1774077161.612946,0.35,4,3992.50,48.19,1782.84,1886.60,0.00,62567.205444,52463.534434,5533695,923073,0.001597,0.000794,25918684,16739994,0,0,29038,0,1,1 +1774077166.616906,0.45,4,3992.50,48.19,1782.85,1886.59,0.00,3515652258940.055176,3515652269037.701660,21,0,0.001588,0.000795,25918714,16740015,0,0,29041,0,1,1 +1774077171.617612,0.85,4,3992.50,48.17,1783.44,1886.00,0.00,0.174975,0.000000,199,0,0.001589,0.000786,25918744,16740035,0,0,29043,0,1,1 +1774077176.616388,0.45,4,3992.50,48.20,1782.49,1886.95,0.00,0.000000,0.000000,199,0,0.001735,0.000954,25918785,16740066,0,0,29046,0,1,1 +1774077181.615485,0.35,4,3992.50,48.19,1782.51,1886.93,0.00,0.000000,0.000000,199,0,0.001589,0.000799,25918815,16740087,0,0,29048,0,1,1 +1774077186.617152,0.40,4,3992.50,48.19,1782.52,1886.92,0.00,62543.863454,52446.077821,5532921,923067,0.001682,0.000908,25918851,16740115,0,0,29051,0,1,1 +1774077191.616598,0.55,4,3992.50,48.21,1782.04,1887.39,0.00,0.000000,0.033207,5532921,923110,0.001652,0.001481,25918885,16740143,0,0,29053,0,1,1 +1774077196.613052,0.65,4,3992.50,48.21,1782.05,1887.39,0.00,3520934378885.316406,3520934388993.605957,199,0,0.001665,0.000837,25918920,16740167,0,0,29056,0,1,1 +1774077201.617386,0.50,4,3992.50,48.21,1782.07,1887.38,0.00,3515389538407.312988,0.000000,21,0,0.001588,0.000786,25918950,16740187,0,0,29058,0,1,1 +1774077206.617303,0.40,4,3992.50,48.17,1783.32,1886.12,0.00,0.000000,0.000000,21,0,0.001589,0.000796,25918980,16740208,0,0,29061,0,1,1 +1774077211.613047,0.55,4,3992.50,48.20,1782.11,1887.33,0.00,1.539689,0.028344,237,175,0.001578,0.000787,25919009,16740228,0,0,29063,0,1,1 +1774077216.612941,0.50,4,3992.50,48.20,1782.12,1887.32,0.00,3518511870296.144531,3518511870297.654785,21,0,0.001589,0.000796,25919039,16740249,0,0,29066,0,1,1 +1774077221.612957,0.80,4,3992.50,48.18,1783.05,1886.39,0.00,0.000000,0.000000,21,0,0.003165,0.001566,25919103,16740289,0,0,29068,0,1,1 +1774077226.616671,0.45,4,3992.50,48.21,1781.84,1887.60,0.00,0.000000,0.000000,21,0,0.001588,0.000796,25919133,16740310,0,0,29071,0,1,1 +1774077231.617088,0.50,4,3992.50,48.23,1781.11,1888.33,0.00,0.000000,0.000000,21,0,0.001589,0.000786,25919163,16740330,0,0,29073,0,1,1 +1774077236.617473,10.85,4,3992.50,49.10,1745.02,1922.23,0.00,0.000000,0.000000,21,0,0.025398,45.466704,25920830,16745346,0,0,29076,0,1,1 +1774077241.613812,28.09,4,3992.50,49.10,1736.87,1922.24,0.00,0.048082,0.000000,70,0,0.057406,120.273513,25925192,16758112,0,0,29078,0,1,1 +1774077246.612955,10.74,4,3992.50,48.66,1751.05,1905.06,0.00,62575.574330,52645.412422,5532922,924583,0.036042,39.476340,25927941,16762465,0,0,29081,0,1,1 +1774077251.617093,14.89,4,3992.50,50.13,1694.98,1962.83,0.00,3515527706135.460449,3515527716055.584473,199,0,40.030361,0.029174,25932409,16764511,0,0,29083,0,1,1 +1774077256.617543,11.13,4,3992.50,49.04,1736.25,1919.99,0.00,3518120902372.558594,0.000000,21,0,0.027161,40.060524,25934151,16768891,0,0,29086,0,1,1 +1774077261.617429,0.75,4,3992.50,48.73,1748.37,1907.87,0.00,0.048048,0.000000,70,0,0.001401,0.003105,25934187,16768949,0,0,29088,0,1,1 +1774077266.617226,0.40,4,3992.50,48.76,1747.36,1908.88,0.00,1.490393,0.028321,237,175,0.000050,0.000092,25934191,16768956,0,0,29091,0,1,1 +1774077271.617406,0.40,4,3992.50,48.75,1747.61,1908.61,0.00,3518310090227.163574,3518310090228.625977,70,0,0.000008,0.000028,25934192,16768959,0,0,29093,0,1,1 +1774077276.613038,0.40,4,3992.50,48.75,1747.54,1908.69,0.00,62637.344520,52751.437505,5533065,925236,0.000000,0.000030,25934192,16768962,0,0,29096,0,1,1 +1774077281.617133,0.50,4,3992.50,48.74,1747.79,1908.44,0.00,3515557839743.690430,3515557849612.750977,199,0,0.000025,0.000051,25934194,16768966,0,0,29098,0,1,1 +1774077286.617528,0.45,4,3992.50,48.76,1747.30,1908.94,0.00,62581.668976,52705.230794,5533839,925438,0.000000,0.000030,25934194,16768969,0,0,29101,0,1,1 +1774077291.616032,0.35,4,3992.50,48.76,1747.30,1908.94,0.00,3519490082704.471680,3519490092583.309570,237,175,0.000000,0.000020,25934194,16768971,0,0,29103,0,1,1 +1774077296.617254,0.40,4,3992.50,48.76,1747.30,1908.94,0.00,3517577572721.707031,3517577572723.216797,21,0,0.000118,0.000136,25934202,16768982,0,0,29106,0,1,1 +1774077301.617314,0.55,4,3992.50,48.56,1755.18,1901.06,0.00,1.538360,0.028320,237,175,0.000157,0.000200,25934214,16768996,0,0,29108,0,1,1 +1774077306.612980,0.70,4,3992.50,48.57,1754.75,1901.49,0.00,62635.427256,52755.265290,5533065,925430,0.000124,0.000131,25934222,16769007,0,0,29111,0,1,1 +1774077311.612972,0.55,4,3992.50,48.57,1754.75,1901.49,0.00,3518442433112.129395,3518442442985.251953,21,0,0.000000,0.000020,25934222,16769009,0,0,29113,0,1,1 +1774077316.613582,0.75,4,3992.50,48.57,1754.75,1901.49,0.00,0.174979,0.000000,199,0,0.000000,0.000030,25934222,16769012,0,0,29116,0,1,1 +1774077321.617438,24.66,4,3992.50,55.01,1510.45,2153.84,0.00,0.000000,0.000000,199,0,41.830396,0.025288,25938615,16770681,0,0,29118,0,1,1 +1774077326.616484,31.02,4,3992.50,55.12,1511.07,2158.11,0.00,0.000000,0.000000,199,0,119.186556,0.021794,25950751,16772336,0,0,29121,0,1,1 +1774077331.616802,28.28,4,3992.50,54.85,1521.87,2147.36,0.00,1.363292,0.028319,237,175,119.157831,0.020213,25962999,16773856,0,0,29123,0,1,1 +1774077336.616495,27.54,4,3992.50,54.87,1520.91,2148.30,0.00,0.468486,3518652686247.563965,238,2,118.970597,0.018237,25975147,16775239,0,0,29126,0,1,1 +1774077341.617100,28.49,4,3992.50,54.91,1519.25,2149.94,0.00,3518011397224.900391,3518011397226.907227,21,0,119.350455,0.018659,25987290,16776615,0,0,29128,0,1,1 +1774077346.617918,27.76,4,3992.50,54.97,1517.04,2152.11,0.00,62572.433990,52701.138582,5533065,925638,119.554225,0.043743,25999576,16779977,0,0,29131,0,1,1 +1774077351.616865,27.97,4,3992.50,54.82,1522.70,2146.52,0.00,3519178304255.016602,3519178314129.958496,70,0,118.795287,0.036461,26011814,16782769,0,0,29133,0,1,1 +1774077356.614983,28.26,4,3992.50,54.77,1524.78,2144.41,0.00,0.127001,0.000000,199,0,120.012038,0.019225,26024183,16784210,0,0,29136,0,1,1 +1774077361.617615,24.72,4,3992.50,54.63,1530.38,2138.89,0.00,1.830872,0.000195,238,2,118.299197,0.018086,26036177,16785582,0,0,29138,0,1,1 +1774077366.614742,2.21,4,3992.50,48.65,1764.55,1904.71,0.00,0.000000,0.000000,238,2,30.262576,0.006223,26039333,16785963,0,0,29141,0,1,1 +1774077371.617706,15.07,4,3992.50,48.49,1770.71,1898.51,0.00,62547.829596,52679.062057,5533856,926294,14.091808,0.069875,26044162,16789554,0,0,29143,0,1,1 +1774077376.617048,16.26,4,3992.50,48.63,1765.37,1903.79,0.00,3518899855587.434082,3518899865465.357910,21,0,24.149635,0.104189,26052033,16795229,0,0,29146,0,1,1 +1774077381.613054,2.61,4,3992.50,48.82,1757.82,1911.33,0.00,0.000000,0.000000,21,0,2.018534,0.010782,26052740,16795728,0,0,29148,0,1,1 +1774077386.612987,1.10,4,3992.50,48.27,1779.29,1889.89,0.00,0.048048,0.000000,70,0,0.002900,0.003946,26052799,16795799,0,0,29151,0,1,1 +1774077391.617229,0.65,4,3992.50,48.28,1778.80,1890.32,0.00,3515454735755.338867,0.000000,21,0,0.002910,0.002518,26052844,16795844,0,0,29153,0,1,1 +1774077396.613058,0.45,4,3992.50,48.28,1778.87,1890.30,0.00,62639.168452,52755.518158,5533856,927462,0.001591,0.000797,26052874,16795865,0,0,29156,0,1,1 +1774077401.614744,0.45,4,3992.50,48.28,1778.88,1890.30,0.00,0.000000,0.003417,5533856,927469,0.001597,0.000794,26052905,16795886,0,0,29158,0,1,1 +1774077406.616415,0.40,4,3992.50,48.29,1778.65,1890.52,0.00,3517261926384.637207,3517261936254.734863,238,2,0.001589,0.000796,26052935,16795907,0,0,29161,0,1,1 +1774077411.613419,0.45,4,3992.50,48.29,1778.66,1890.52,0.00,3520546919858.527832,3520546919860.536133,21,0,0.001716,0.000942,26052975,16795937,0,0,29163,0,1,1 +1774077416.612969,0.55,4,3992.50,48.36,1775.96,1893.21,0.00,0.175016,0.000000,199,0,0.001589,0.000796,26053005,16795958,0,0,29166,0,1,1 +1774077421.615298,0.40,4,3992.50,48.35,1775.97,1893.21,0.00,62553.497417,52687.118207,5533082,927457,0.001620,0.000811,26053037,16795980,0,0,29168,0,1,1 +1774077426.612989,0.55,4,3992.50,48.35,1776.00,1893.18,0.00,3520062699991.223145,3520062709866.758301,199,0,0.001652,0.000847,26053071,16796005,0,0,29171,0,1,1 +1774077431.612971,0.45,4,3992.50,48.35,1776.00,1893.18,0.00,1.831843,0.000195,238,2,0.001726,0.000877,26053110,16796032,0,0,29173,0,1,1 +1774077436.612969,0.35,4,3992.50,48.35,1776.00,1893.18,0.00,3518438161675.786133,0.028125,237,175,0.001041,0.000617,26053133,16796051,0,0,29176,0,1,1 +1774077441.615884,0.45,4,3992.50,48.35,1776.13,1893.06,0.00,62544.807509,52681.086460,5533082,927624,0.001413,0.000640,26053160,16796069,0,0,29178,0,1,1 +1774077446.617292,0.50,4,3992.50,48.35,1776.14,1893.05,0.00,3517446668493.060059,3517446678361.214355,70,0,0.001589,0.000796,26053190,16796090,0,0,29181,0,1,1 +1774077451.613055,0.40,4,3992.50,48.36,1775.91,1893.29,0.00,0.000000,0.000000,70,0,0.001591,0.001431,26053220,16796114,0,0,29183,0,1,1 +1774077456.617491,0.50,4,3992.50,48.36,1775.92,1893.27,0.00,1.957053,0.000195,238,2,0.001588,0.000795,26053250,16796135,0,0,29186,0,1,1 +1774077461.617867,18.34,4,3992.50,48.85,1752.62,1912.41,0.00,0.000000,0.000000,238,2,0.034137,77.508975,26055690,16804490,0,0,29188,0,1,1 +1774077466.617383,29.18,4,3992.50,48.82,1745.16,1911.60,0.00,3518777759713.094727,0.028128,237,175,0.023680,118.178434,26057388,16816812,0,0,29191,0,1,1 +1774077471.613971,3.41,4,3992.50,48.78,1745.98,1909.97,0.00,62628.119775,52924.501060,5533857,929032,0.004719,9.423562,26057591,16817883,0,0,29193,0,1,1 +1774077476.615007,15.22,4,3992.50,48.82,1746.14,1911.33,0.00,3517707732712.907715,3517707742409.403809,21,0,40.054297,0.020612,26061924,16819274,0,0,29196,0,1,1 +1774077481.617240,0.60,4,3992.50,48.82,1745.97,1911.54,0.00,2.005940,0.000195,238,2,0.003084,0.001420,26061980,16819312,0,0,29198,0,1,1 +1774077486.617606,10.93,4,3992.50,49.19,1730.43,1926.04,0.00,62598.093043,52949.490266,5533991,929709,0.020199,40.062374,26063287,16823778,0,0,29201,0,1,1 +1774077491.617059,0.50,4,3992.50,48.96,1739.78,1916.71,0.00,3518822391881.865723,3518822401532.728516,237,175,0.000253,0.000639,26063294,16823792,0,0,29203,0,1,1 +1774077496.616884,0.45,4,3992.50,48.97,1739.18,1917.30,0.00,3518560281083.348633,3518560281084.684082,199,0,0.000000,0.000030,26063294,16823795,0,0,29206,0,1,1 +1774077501.617220,0.45,4,3992.50,48.96,1739.55,1916.93,0.00,3518200500835.128418,0.000000,21,0,0.000000,0.000020,26063294,16823797,0,0,29208,0,1,1 +1774077506.616423,0.40,4,3992.50,48.97,1739.35,1917.14,0.00,2.007156,0.000195,238,2,0.000025,0.000061,26063296,16823802,0,0,29211,0,1,1 +1774077511.617301,0.40,4,3992.50,48.95,1740.15,1916.33,0.00,3517819810399.087402,0.028120,237,175,0.000000,0.000020,26063296,16823804,0,0,29213,0,1,1 +1774077516.617114,0.45,4,3992.50,48.95,1740.16,1916.32,0.00,0.468475,3518568882879.048340,238,2,0.000000,0.000674,26063296,16823811,0,0,29216,0,1,1 +1774077521.617089,0.80,4,3992.50,48.84,1744.28,1912.20,0.00,3518454692786.300781,3518454692788.259277,70,0,0.002205,0.001066,26063342,16823842,0,0,29218,0,1,1 +1774077526.617320,0.40,4,3992.50,48.85,1744.04,1912.44,0.00,0.126947,0.000000,199,0,0.000084,0.000131,26063349,16823852,0,0,29221,0,1,1 +1774077531.617299,0.40,4,3992.50,48.85,1744.04,1912.44,0.00,3518452310784.033691,0.000000,21,0,0.000175,0.000183,26063361,16823866,0,0,29223,0,1,1 +1774077536.617963,0.55,4,3992.50,48.88,1742.81,1913.67,0.00,0.000000,0.000000,21,0,0.000031,0.000055,26063363,16823871,0,0,29226,0,1,1 +1774077541.614613,0.45,4,3992.50,48.88,1742.57,1913.91,0.00,62642.544648,52993.012971,5533217,929663,0.000000,0.000020,26063363,16823873,0,0,29228,0,1,1 +1774077546.617017,0.50,4,3992.50,48.88,1742.56,1913.91,0.00,3516746388867.657715,3516746398506.090820,21,0,0.000000,0.000030,26063363,16823876,0,0,29231,0,1,1 +1774077551.617580,27.20,4,3992.50,54.97,1513.48,2152.36,0.00,1.538206,0.028317,237,175,47.866371,0.023734,26068422,16825488,0,0,29233,0,1,1 +1774077556.617511,31.55,4,3992.50,54.91,1520.19,2149.82,0.00,3518486190431.664062,3518486190433.126465,70,0,118.169516,0.024435,26080657,16827290,0,0,29236,0,1,1 +1774077561.616652,28.85,4,3992.50,55.05,1514.85,2155.31,0.00,62615.385047,52966.829496,5533991,930031,120.192224,0.034094,26093053,16829886,0,0,29238,0,1,1 +1774077566.613208,27.99,4,3992.50,54.99,1517.12,2153.05,0.00,3520862848258.683594,3520862857912.282227,21,0,118.245640,0.026615,26105083,16831959,0,0,29241,0,1,1 +1774077571.613459,29.54,4,3992.50,55.13,1511.72,2158.48,0.00,1.538302,0.028319,237,175,120.166164,0.044981,26117341,16835446,0,0,29243,0,1,1 +1774077576.613738,29.05,4,3992.50,54.75,1526.86,2143.43,0.00,62599.664879,52954.797279,5533991,930061,118.566476,0.048157,26129485,16839165,0,0,29246,0,1,1 +1774077581.615156,29.58,4,3992.50,54.90,1520.66,2149.60,0.00,3517439035667.336426,3517439045311.466309,70,0,119.735277,0.031527,26141687,16841567,0,0,29248,0,1,1 +1774077586.617733,29.82,4,3992.50,54.84,1522.95,2147.21,0.00,0.126888,0.000000,199,0,119.508569,0.039337,26153862,16844538,0,0,29251,0,1,1 +1774077591.617387,24.01,4,3992.50,55.46,1498.96,2171.26,0.00,1.831963,0.000195,238,2,118.775277,0.034811,26165896,16847227,0,0,29253,0,1,1 +1774077596.617380,1.20,4,3992.50,49.09,1748.33,1921.93,0.00,3518442108665.211914,0.028125,237,175,24.237902,0.008758,26168448,16847807,0,0,29256,0,1,1 +1774077601.617437,13.26,4,3992.50,48.96,1753.52,1916.75,0.00,62598.458731,52957.507544,5533230,930316,10.079480,0.055213,26171965,16850468,0,0,29258,0,1,1 +1774077606.616916,12.21,4,3992.50,48.95,1753.64,1916.56,0.00,3518803352371.471680,3518803362013.536621,237,175,18.111067,0.079670,26177899,16854947,0,0,29261,0,1,1 +1774077611.617209,8.47,4,3992.50,48.82,1758.64,1911.55,0.00,3518231300876.546875,3518231300878.057129,21,0,12.069305,0.050661,26181658,16857760,0,0,29263,0,1,1 +1774077616.617305,0.95,4,3992.50,48.73,1762.19,1908.00,0.00,0.174997,0.000000,199,0,0.002306,0.002193,26181705,16857805,0,0,29266,0,1,1 +1774077621.612952,0.45,4,3992.50,48.74,1761.70,1908.46,0.00,62655.085216,53005.347954,5533230,931431,0.001591,0.000774,26181735,16857824,0,0,29268,0,1,1 +1774077626.615854,18.70,4,3992.50,49.53,1726.99,1939.07,0.00,3516396365566.351562,3516396375200.761230,237,175,0.031773,76.068493,26183948,16865961,0,0,29271,0,1,1 +1774077631.617631,30.99,4,3992.50,49.12,1734.46,1923.30,0.00,0.000000,0.000000,237,175,0.026734,119.529264,26185834,16878479,0,0,29273,0,1,1 +1774077636.617157,3.71,4,3992.50,48.83,1745.59,1911.70,0.00,62605.113280,53140.191179,5533233,932728,0.005743,9.420732,26186065,16879612,0,0,29276,0,1,1 +1774077641.613005,14.18,4,3992.50,50.05,1698.08,1959.73,0.00,3521360959754.033691,3521360969227.385742,70,0,40.101203,0.033384,26190584,16881728,0,0,29278,0,1,1 +1774077646.613221,0.95,4,3992.50,49.88,1705.08,1952.77,0.00,3518284952990.840332,0.000000,21,0,0.003435,0.006185,26190664,16881832,0,0,29281,0,1,1 +1774077651.617434,0.50,4,3992.50,49.23,1730.40,1927.45,0.00,1.537084,0.028296,237,175,0.002739,0.004602,26190730,16881917,0,0,29283,0,1,1 +1774077656.617721,0.55,4,3992.50,48.94,1741.68,1916.17,0.00,3518235194631.374023,3518235194632.884277,21,0,0.002505,0.003330,26190788,16881986,0,0,29286,0,1,1 +1774077661.613648,0.60,4,3992.50,48.94,1741.70,1916.15,0.00,2.008472,0.000195,238,2,0.002736,0.003958,26190853,16882066,0,0,29288,0,1,1 +1774077666.614783,0.60,4,3992.50,48.94,1741.74,1916.11,0.00,3517638401040.199219,3517638401042.205566,21,0,0.002733,0.003963,26190918,16882147,0,0,29291,0,1,1 +1774077671.617052,0.50,4,3992.50,48.78,1748.17,1909.68,0.00,0.000000,0.000000,21,0,0.002529,0.003350,26190978,16882217,0,0,29293,0,1,1 +1774077676.617704,0.50,4,3992.50,48.78,1748.18,1909.67,0.00,2.006574,0.000195,238,2,0.003403,0.004885,26191046,16882300,0,0,29296,0,1,1 +1774077681.614115,0.55,4,3992.50,48.79,1747.46,1910.40,0.00,62661.456324,53203.338893,5533379,933426,0.002816,0.004033,26191116,16882386,0,0,29298,0,1,1 +1774077686.617012,0.55,4,3992.50,48.79,1747.47,1910.38,0.00,3516400326934.464355,3516400336382.326660,21,0,0.003339,0.005071,26191194,16882489,0,0,29301,0,1,1 +1774077691.617109,0.50,4,3992.50,48.79,1747.49,1910.36,0.00,0.000000,0.000000,21,0,0.003218,0.005067,26191278,16882595,0,0,29303,0,1,1 +1774077696.616429,1.40,4,3992.50,48.07,1775.86,1882.00,0.00,0.000000,0.000000,21,0,0.003669,0.004635,26191346,16882679,0,0,29306,0,1,1 +1774077701.613038,0.50,4,3992.50,48.11,1774.17,1883.68,0.00,2.008198,0.000195,238,2,0.002735,0.003957,26191411,16882759,0,0,29308,0,1,1 +1774077706.616435,7.66,4,3992.50,49.15,1732.28,1924.48,0.00,3516048501870.290039,0.028106,237,175,0.020403,29.027671,26192748,16886020,0,0,29311,0,1,1 +1774077711.615785,3.96,4,3992.50,48.45,1758.96,1897.04,0.00,0.000000,0.000000,237,175,0.007094,11.022566,26193192,16887289,0,0,29313,0,1,1 +1774077716.617505,0.55,4,3992.50,48.26,1766.61,1889.39,0.00,0.468296,3517227574527.423340,238,2,0.001144,0.003840,26193227,16887356,0,0,29316,0,1,1 +1774077721.617745,0.45,4,3992.50,48.30,1764.95,1891.05,0.00,3518268172983.168457,3518268172985.175293,21,0,0.001144,0.003188,26193262,16887418,0,0,29318,0,1,1 +1774077726.617764,0.55,4,3992.50,48.32,1764.21,1891.79,0.00,0.000000,0.000000,21,0,0.001158,0.003198,26193298,16887481,0,0,29321,0,1,1 +1774077731.614165,0.55,4,3992.50,48.32,1764.22,1891.78,0.00,2.008281,0.000195,238,2,0.001153,0.003198,26193334,16887544,0,0,29323,0,1,1 +1774077736.613750,0.45,4,3992.50,48.26,1766.43,1889.57,0.00,3518728985407.391602,3518728985409.398926,21,0,0.001145,0.003198,26193369,16887607,0,0,29326,0,1,1 +1774077741.617511,0.50,4,3992.50,48.30,1765.10,1890.90,0.00,1.537223,0.028299,237,175,0.001169,0.003217,26193406,16887671,0,0,29328,0,1,1 +1774077746.613012,0.40,4,3992.50,48.31,1764.37,1891.63,0.00,0.000000,0.000000,237,175,0.000967,0.002629,26193438,16887726,0,0,29331,0,1,1 +1774077751.617294,0.70,4,3992.50,48.31,1764.37,1891.63,0.00,0.468056,3515426737339.298340,238,2,0.001250,0.003304,26193481,16887796,0,0,29333,0,1,1 +1774077756.617329,0.40,4,3992.50,48.31,1764.37,1891.63,0.00,3518412253488.300293,0.028125,237,175,0.001269,0.003299,26193524,16887867,0,0,29336,0,1,1 +1774077761.617748,0.55,4,3992.50,48.31,1764.37,1891.62,0.00,62611.703395,53201.073187,5533379,933986,0.001144,0.003188,26193559,16887929,0,0,29338,0,1,1 +1774077766.617086,0.50,4,3992.50,48.29,1765.17,1890.83,0.00,0.000000,0.044537,5533379,934033,0.001145,0.003198,26193594,16887992,0,0,29341,0,1,1 +1774077771.617686,0.50,4,3992.50,48.33,1763.74,1892.26,0.00,3518015161753.269531,3518015171165.023926,21,0,0.001157,0.003188,26193630,16888054,0,0,29343,0,1,1 +1774077776.616397,27.85,4,3992.50,54.79,1518.83,2145.09,0.00,1.538776,0.028328,237,175,43.679347,0.027287,26198438,16889807,0,0,29346,0,1,1 +1774077781.613767,31.11,4,3992.50,54.71,1527.06,2141.85,0.00,62654.010998,53233.730568,5534153,934343,118.427775,0.034597,26210671,16892315,0,0,29348,0,1,1 +1774077786.616991,29.95,4,3992.50,54.88,1520.34,2148.64,0.00,3516170061155.258301,3516170070565.978027,70,0,119.889222,0.026884,26223056,16894299,0,0,29351,0,1,1 +1774077791.617577,29.61,4,3992.50,54.68,1527.98,2140.94,0.00,0.000000,0.000000,70,0,118.352457,0.030754,26235345,16896512,0,0,29353,0,1,1 +1774077796.616421,30.25,4,3992.50,54.81,1522.92,2146.03,0.00,0.000000,0.000000,70,0,119.994850,0.025543,26247697,16898340,0,0,29356,0,1,1 +1774077801.613905,29.57,4,3992.50,54.97,1516.64,2152.29,0.00,3520208086875.460449,0.000000,21,0,118.824343,0.027282,26259847,16900267,0,0,29358,0,1,1 +1774077806.617376,30.50,4,3992.50,55.02,1514.74,2154.12,0.00,2.005444,0.000195,238,2,119.481734,0.022113,26272060,16901853,0,0,29361,0,1,1 +1774077811.612934,30.71,4,3992.50,55.04,1513.85,2155.06,0.00,62676.271088,53253.177614,5534153,934426,119.270681,0.028451,26284278,16903939,0,0,29363,0,1,1 +1774077816.612986,25.93,4,3992.50,55.04,1514.17,2154.82,0.00,3518400856770.489258,3518400866187.120605,21,0,119.164741,0.029909,26296537,16906076,0,0,29366,0,1,1 +1774077821.612977,1.56,4,3992.50,49.82,1718.34,1950.65,0.00,1.538382,0.028320,237,175,28.445995,0.013628,26299593,16906839,0,0,29368,0,1,1 +1774077826.617649,15.18,4,3992.50,49.65,1725.23,1943.72,0.00,3515152171226.286621,3515152171227.620605,199,0,14.087426,0.071423,26304355,16910423,0,0,29371,0,1,1 +1774077831.617437,17.15,4,3992.50,49.69,1723.49,1945.40,0.00,0.000000,0.000000,199,0,26.160989,0.118123,26312931,16916878,0,0,29373,0,1,1 +1774077836.617783,0.95,4,3992.50,48.76,1759.98,1908.93,0.00,1.831709,0.000195,238,2,0.003032,0.004581,26313002,16916969,0,0,29376,0,1,1 +1774077841.612979,1.90,4,3992.50,48.76,1759.67,1909.23,0.00,62676.763448,53258.139147,5533390,935635,0.002724,0.003946,26313066,16917048,0,0,29378,0,1,1 +1774077846.617854,0.60,4,3992.50,48.80,1758.36,1910.54,0.00,3515009781845.754883,3515009791248.121094,70,0,0.002731,0.004604,26313131,16917133,0,0,29381,0,1,1 +1774077851.617113,0.40,4,3992.50,48.80,1758.38,1910.52,0.00,0.126972,0.000000,199,0,0.002721,0.003955,26313195,16917213,0,0,29383,0,1,1 +1774077856.613016,0.50,4,3992.50,48.80,1758.15,1910.75,0.00,0.000000,0.000000,199,0,0.002736,0.003967,26313260,16917294,0,0,29386,0,1,1 +1774077861.616960,0.50,4,3992.50,48.79,1758.54,1910.36,0.00,62573.133077,53165.615921,5534164,936103,0.002739,0.003959,26313326,16917375,0,0,29388,0,1,1 +1774077866.617069,0.55,4,3992.50,48.77,1759.26,1909.64,0.00,3518359861969.815430,3518359871382.714355,238,2,0.002859,0.004120,26313401,16917466,0,0,29391,0,1,1 +1774077871.618314,0.80,4,3992.50,48.77,1759.27,1909.63,0.00,0.000000,0.000000,238,2,0.002504,0.003320,26313459,16917534,0,0,29393,0,1,1 +1774077876.617648,0.55,4,3992.50,48.77,1759.28,1909.62,0.00,3518906012321.098145,0.028129,237,175,0.002734,0.003965,26313524,16917615,0,0,29396,0,1,1 +1774077881.613043,0.45,4,3992.50,48.77,1759.30,1909.60,0.00,62678.853837,53256.687454,5534164,936235,0.002811,0.003998,26313594,16917698,0,0,29398,0,1,1 +1774077886.617880,0.55,4,3992.50,48.77,1759.31,1909.58,0.00,3515036703319.682617,0.028878,5533390,936105,0.002731,0.003960,26313659,16917779,0,0,29401,0,1,1 +1774077891.616901,0.70,4,3992.50,48.77,1759.33,1909.57,0.00,3519125967312.809082,3519125976725.336426,199,0,0.002734,0.003955,26313724,16917859,0,0,29403,0,1,1 +1774077896.615855,0.55,4,3992.50,48.78,1758.97,1909.93,0.00,1.363664,0.028326,237,175,0.002734,0.003965,26313789,16917940,0,0,29406,0,1,1 +1774077901.616986,0.45,4,3992.50,48.78,1758.98,1909.91,0.00,62606.964602,53195.891390,5534164,936433,0.002733,0.003953,26313854,16918020,0,0,29408,0,1,1 +1774077906.613895,0.65,4,3992.50,48.79,1758.75,1910.14,0.00,3520613394419.159180,3520613403839.519531,199,0,0.002514,0.003341,26313913,16918090,0,0,29411,0,1,1 +1774077911.617719,0.65,4,3992.50,48.79,1758.78,1910.12,0.00,62574.636648,53167.403693,5534164,936529,0.002719,0.004595,26313977,16918174,0,0,29413,0,1,1 +1774077916.613141,0.55,4,3992.50,48.79,1758.78,1910.11,0.00,3521661503465.269531,3521661512888.450684,70,0,0.002736,0.003968,26314042,16918255,0,0,29416,0,1,1 +1774077921.613048,0.55,4,3992.50,48.79,1758.80,1910.10,0.00,0.000000,0.000000,70,0,0.002721,0.003954,26314106,16918335,0,0,29418,0,1,1 +1774077926.617094,0.50,4,3992.50,48.79,1758.84,1910.05,0.00,0.000000,0.000000,70,0,0.002750,0.003963,26314172,16918416,0,0,29421,0,1,1 +1774077931.617368,15.68,4,3992.50,49.56,1725.14,1940.43,0.00,3518244623690.695801,0.000000,21,0,0.036523,64.095924,26316682,16925363,0,0,29423,0,1,1 +1774077936.617740,28.98,4,3992.50,49.75,1709.52,1947.77,0.00,0.174987,0.000000,199,0,0.034214,119.766519,26319255,16937910,0,0,29426,0,1,1 +1774077941.615945,6.76,4,3992.50,49.11,1732.81,1922.86,0.00,1.832494,0.000195,238,2,0.016441,21.246872,26320420,16940299,0,0,29428,0,1,1 +1774077946.617388,12.80,4,3992.50,48.84,1745.39,1912.34,0.00,3517422299589.373535,3517422299591.205078,199,0,40.052911,0.027749,26324769,16942079,0,0,29431,0,1,1 +1774077951.616393,11.11,4,3992.50,48.83,1744.61,1911.61,0.00,62648.608225,53458.093079,5533539,938197,0.022342,40.074980,26326260,16946582,0,0,29433,0,1,1 +1774077956.613006,0.90,4,3992.50,48.64,1752.03,1904.18,0.00,3520822530269.384766,3520822539464.477051,21,0,0.002318,0.005665,26326324,16946690,0,0,29436,0,1,1 +1774077961.612971,0.55,4,3992.50,48.50,1757.40,1898.82,0.00,0.175001,0.000000,199,0,0.001144,0.003188,26326359,16946752,0,0,29438,0,1,1 +1774077966.613043,0.50,4,3992.50,48.53,1756.17,1900.04,0.00,3518386682035.561523,0.000000,21,0,0.001140,0.003206,26326394,16946816,0,0,29441,0,1,1 +1774077971.614415,0.60,4,3992.50,48.53,1756.18,1900.04,0.00,0.174952,0.000000,199,0,0.001144,0.003187,26326429,16946878,0,0,29443,0,1,1 +1774077976.617007,0.55,4,3992.50,48.55,1755.20,1901.03,0.00,1.362673,0.028306,237,175,0.000928,0.003238,26326458,16946935,0,0,29446,0,1,1 +1774077981.613809,0.55,4,3992.50,48.55,1755.20,1901.03,0.00,3520688925335.571777,3520688925337.083008,21,0,0.001145,0.003190,26326493,16946997,0,0,29448,0,1,1 +1774077986.614725,0.60,4,3992.50,48.55,1755.20,1901.03,0.00,0.000000,0.000000,21,0,0.001743,0.004306,26326540,16947082,0,0,29451,0,1,1 +1774077991.616914,0.50,4,3992.50,48.55,1755.20,1901.02,0.00,62613.021681,53430.306678,5534313,938534,0.001663,0.004406,26326597,16947176,0,0,29453,0,1,1 +1774077996.613701,0.45,4,3992.50,48.55,1755.20,1901.02,0.00,3520699855679.241699,3520699864871.836426,70,0,0.002101,0.003909,26326637,16947245,0,0,29456,0,1,1 +1774078001.617306,0.50,4,3992.50,48.56,1754.96,1901.27,0.00,62595.251509,53415.192207,5534313,938541,0.001237,0.003261,26326678,16947313,0,0,29458,0,1,1 +1774078006.612978,0.55,4,3992.50,48.58,1754.22,1902.00,0.00,3521485145174.674316,3521485154367.351074,238,2,0.001145,0.003201,26326713,16947376,0,0,29461,0,1,1 +1774078011.616904,0.50,4,3992.50,48.53,1756.09,1900.14,0.00,62585.176969,53411.849851,5533539,938441,0.001144,0.003173,26326748,16947437,0,0,29463,0,1,1 +1774078016.616145,0.60,4,3992.50,48.53,1756.09,1900.14,0.00,3518971574571.336914,3518971583755.220703,70,0,0.000916,0.002577,26326776,16947489,0,0,29466,0,1,1 +1774078021.617444,27.93,4,3992.50,54.75,1520.91,2143.69,0.00,0.126920,0.000000,199,0,50.663225,0.028537,26332191,16949342,0,0,29468,0,1,1 +1774078026.617730,33.92,4,3992.50,54.73,1525.90,2142.79,0.00,3518236163499.345215,0.000000,21,0,118.158546,0.035909,26344396,16951956,0,0,29471,0,1,1 +1774078031.617385,30.88,4,3992.50,54.69,1527.44,2141.21,0.00,1.538485,0.028322,237,175,118.974238,0.035578,26356723,16954610,0,0,29473,0,1,1 +1774078036.616368,31.07,4,3992.50,54.72,1526.23,2142.54,0.00,3519152725125.400879,3519152725126.736328,199,0,119.390888,0.043690,26369028,16957841,0,0,29476,0,1,1 +1774078041.617168,30.49,4,3992.50,54.91,1518.73,2150.01,0.00,3517874787947.727051,0.000000,21,0,119.747740,0.026032,26381356,16959623,0,0,29478,0,1,1 +1774078046.613757,30.71,4,3992.50,54.91,1518.66,2149.97,0.00,0.000000,0.000000,21,0,118.646718,0.039350,26393543,16962432,0,0,29481,0,1,1 +1774078051.614203,30.82,4,3992.50,54.71,1526.61,2142.10,0.00,62634.843589,53449.337954,5534313,938831,119.755140,0.040075,26405784,16965377,0,0,29483,0,1,1 +1774078056.613575,30.65,4,3992.50,54.84,1521.47,2147.18,0.00,3518879218112.781250,3518879218116.869629,5533539,938670,119.381455,0.033626,26418023,16967789,0,0,29486,0,1,1 +1774078061.617283,24.28,4,3992.50,54.67,1528.45,2140.36,0.00,3515830144131.856445,3515830153307.115723,199,0,119.275833,0.036980,26430154,16970528,0,0,29488,0,1,1 +1774078066.617335,0.95,4,3992.50,49.45,1732.74,1936.07,0.00,1.363365,0.028320,237,175,21.433025,0.012851,26432430,16971312,0,0,29491,0,1,1 +1774078071.616398,10.05,4,3992.50,48.87,1755.25,1913.57,0.00,0.000000,0.000000,237,175,6.047414,0.032319,26434523,16972828,0,0,29493,0,1,1 +1774078076.617515,23.07,4,3992.50,49.71,1722.25,1946.45,0.00,0.468352,3517651644103.889160,238,2,34.199717,0.151392,26445471,16980966,0,0,29496,0,1,1 +1774078081.613655,1.65,4,3992.50,49.28,1739.09,1929.60,0.00,3521155529682.410156,3521155529684.418457,21,0,0.007737,0.007915,26445633,16981132,0,0,29498,0,1,1 +1774078086.617835,0.45,4,3992.50,48.80,1758.16,1910.54,0.00,0.174854,0.000000,199,0,0.002731,0.003961,26445698,16981213,0,0,29501,0,1,1 +1774078091.614844,10.50,4,3992.50,49.28,1737.39,1929.49,0.00,1.364195,0.028337,237,175,0.026503,42.492257,26447515,16985888,0,0,29503,0,1,1 +1774078096.617403,31.39,4,3992.50,49.29,1728.66,1929.82,0.00,3516637546407.528320,3516637546408.989746,70,0,0.032390,122.114502,26449849,16998752,0,0,29506,0,1,1 +1774078101.613956,11.40,4,3992.50,49.10,1733.14,1922.34,0.00,62683.737439,53666.527384,5534324,941484,0.018345,40.494877,26451063,17003180,0,0,29508,0,1,1 +1774078106.615921,15.15,4,3992.50,53.71,1554.70,2102.90,0.00,17.765675,31.278821,5534453,941753,40.047795,0.025749,26455431,17004834,0,0,29511,0,1,1 +1774078111.615259,0.95,4,3992.50,48.93,1742.02,1915.55,0.00,3518902659747.915039,3518902668745.117676,237,175,0.005990,0.007436,26455562,17004973,0,0,29513,0,1,1 +1774078116.617854,1.50,4,3992.50,48.93,1742.04,1915.55,0.00,3516612073852.254395,3516612073853.715820,70,0,0.002732,0.004593,26455627,17005057,0,0,29516,0,1,1 +1774078121.617276,0.75,4,3992.50,48.81,1746.56,1911.02,0.00,0.000000,0.000000,70,0,0.004908,0.004963,26455736,17005163,0,0,29518,0,1,1 +1774078126.617291,0.80,4,3992.50,49.02,1738.11,1919.43,0.00,3518426628974.278809,0.000000,21,0,0.002734,0.003964,26455801,17005244,0,0,29521,0,1,1 +1774078131.613030,1.05,4,3992.50,49.02,1738.17,1919.42,0.00,0.000000,0.000000,21,0,0.002494,0.003324,26455858,17005312,0,0,29523,0,1,1 +1774078136.613032,0.50,4,3992.50,49.02,1738.19,1919.41,0.00,2.006835,0.000195,238,2,0.002754,0.004003,26455925,17005396,0,0,29526,0,1,1 +1774078141.616473,0.55,4,3992.50,49.02,1738.41,1919.18,0.00,3516016955095.674805,0.028106,237,175,0.002732,0.003939,26455990,17005475,0,0,29528,0,1,1 +1774078146.617741,0.45,4,3992.50,49.01,1738.61,1918.98,0.00,0.468338,3517545174904.015137,238,2,0.002826,0.004039,26456061,17005562,0,0,29531,0,1,1 +1774078151.612917,0.45,4,3992.50,49.01,1738.62,1918.96,0.00,3521835236817.729004,3521835236819.737793,21,0,0.002507,0.003324,26456119,17005630,0,0,29533,0,1,1 +1774078156.615991,0.45,4,3992.50,49.03,1737.91,1919.68,0.00,62616.354466,53628.325862,5533777,942026,0.002807,0.004002,26456189,17005714,0,0,29536,0,1,1 +1774078161.613014,0.55,4,3992.50,49.07,1736.40,1921.19,0.00,3520533449279.116211,3520533458277.853516,199,0,0.002735,0.003957,26456254,17005794,0,0,29538,0,1,1 +1774078166.613574,0.45,4,3992.50,49.09,1735.80,1921.80,0.00,1.831631,0.000195,238,2,0.002792,0.004034,26456324,17005880,0,0,29541,0,1,1 +1774078171.616531,0.55,4,3992.50,49.09,1735.81,1921.79,0.00,0.000000,0.000000,238,2,0.002732,0.003952,26456389,17005960,0,0,29543,0,1,1 +1774078176.618402,2.46,4,3992.50,48.86,1744.72,1912.82,0.00,62629.400691,53641.344744,5533777,942175,0.013504,9.418045,26457194,17007257,0,0,29546,0,1,1 +1774078181.617448,9.03,4,3992.50,48.55,1755.12,1900.98,0.00,0.000000,36.077979,5533777,942389,0.015950,30.654481,26458302,17010499,0,0,29548,0,1,1 +1774078186.616499,0.50,4,3992.50,48.47,1758.59,1897.52,0.00,3519104652110.229492,3519104661069.284180,21,0,0.001145,0.003186,26458337,17010561,0,0,29551,0,1,1 +1774078191.617393,0.50,4,3992.50,48.49,1757.61,1898.50,0.00,1.538104,0.028315,237,175,0.000915,0.002566,26458365,17010612,0,0,29553,0,1,1 +1774078196.617135,0.55,4,3992.50,48.52,1756.62,1899.49,0.00,3518618984960.767578,3518618984962.277832,21,0,0.001152,0.003206,26458401,17010676,0,0,29556,0,1,1 +1774078201.617605,0.60,4,3992.50,48.52,1756.62,1899.48,0.00,0.000000,0.000000,21,0,0.001144,0.003188,26458436,17010738,0,0,29558,0,1,1 +1774078206.617621,0.75,4,3992.50,48.47,1758.34,1897.77,0.00,0.000000,0.000000,21,0,0.001144,0.003198,26458471,17010801,0,0,29561,0,1,1 +1774078211.616457,0.70,4,3992.50,48.48,1757.88,1898.23,0.00,0.000000,0.000000,21,0,0.001170,0.003220,26458508,17010865,0,0,29563,0,1,1 +1774078216.617031,0.70,4,3992.50,48.49,1757.64,1898.47,0.00,2.006606,0.000195,238,2,0.001195,0.003260,26458547,17010932,0,0,29566,0,1,1 +1774078221.615840,0.65,4,3992.50,48.45,1759.20,1896.91,0.00,3519275819931.745117,3519275819933.752441,21,0,0.001220,0.003282,26458588,17011000,0,0,29568,0,1,1 +1774078226.617225,0.80,4,3992.50,48.44,1759.41,1896.70,0.00,0.174952,0.000000,199,0,0.001071,0.002689,26458626,17011061,0,0,29571,0,1,1 +1774078231.613028,0.65,4,3992.50,48.48,1758.18,1897.94,0.00,1.364524,0.028344,237,175,0.001145,0.003191,26458661,17011123,0,0,29573,0,1,1 +1774078236.617873,0.75,4,3992.50,48.50,1757.20,1898.92,0.00,0.468004,3515030991300.257324,238,2,0.001131,0.003195,26458695,17011186,0,0,29576,0,1,1 +1774078241.613693,0.75,4,3992.50,48.50,1757.20,1898.93,0.00,3521381803136.317871,0.028149,237,175,0.001153,0.003186,26458731,17011248,0,0,29578,0,1,1 +1774078246.617084,29.08,4,3992.50,54.82,1518.77,2146.23,0.00,3516052220029.663574,3516052220031.172852,21,0,57.247532,0.033090,26464798,17013334,0,0,29581,0,1,1 +1774078251.617561,32.01,4,3992.50,55.10,1510.27,2157.10,0.00,0.048042,0.000000,70,0,119.355756,0.035241,26477088,17015875,0,0,29583,0,1,1 +1774078256.617165,28.77,4,3992.50,54.82,1523.00,2146.48,0.00,1.490450,0.028323,237,175,118.977114,0.023177,26489442,17017475,0,0,29586,0,1,1 +1774078261.617451,28.98,4,3992.50,54.92,1519.13,2150.38,0.00,3518235677305.594238,3518235677307.104004,21,0,119.364712,0.032198,26501840,17019781,0,0,29588,0,1,1 +1774078266.617193,28.40,4,3992.50,55.02,1515.51,2154.00,0.00,62658.091209,53704.801520,5533778,942856,118.970974,0.020369,26513982,17021159,0,0,29591,0,1,1 +1774078271.617238,29.05,4,3992.50,54.89,1520.40,2149.14,0.00,3518404960563.455566,3518404969516.200195,21,0,119.764017,0.021698,26526185,17022670,0,0,29593,0,1,1 +1774078276.617107,28.76,4,3992.50,54.87,1521.34,2148.18,0.00,0.000000,0.000000,21,0,118.770513,0.032137,26538287,17024971,0,0,29596,0,1,1 +1774078281.617872,28.98,4,3992.50,54.94,1518.68,2150.91,0.00,1.538144,0.028316,237,175,119.952148,0.040086,26550650,17028008,0,0,29598,0,1,1 +1774078286.617807,21.93,4,3992.50,55.10,1512.18,2157.45,0.00,3518482838678.203125,3518482838679.713379,21,0,118.968798,0.028131,26562951,17030064,0,0,29601,0,1,1 +1774078291.613028,1.05,4,3992.50,49.97,1713.15,1956.48,0.00,62714.846360,53753.719988,5533791,942963,14.037800,0.008517,26564525,17030439,0,0,29603,0,1,1 +1774078296.616439,17.53,4,3992.50,49.77,1720.98,1948.58,0.00,3516039058510.501953,3516039067456.787598,199,0,18.108644,0.085964,26570536,17034775,0,0,29606,0,1,1 +1774078301.617577,13.67,4,3992.50,48.89,1755.47,1914.05,0.00,62644.588696,53690.514838,5534565,943938,22.121996,0.091630,26577596,17039965,0,0,29608,0,1,1 +1774078306.615240,1.80,4,3992.50,48.94,1753.43,1916.08,0.00,3520082329916.224121,0.205467,5533791,943866,0.018180,0.011544,26577963,17040256,0,0,29611,0,1,1 +1774078311.617152,1.10,4,3992.50,48.94,1753.46,1916.05,0.00,3517092372596.212402,3517092381543.253906,237,175,0.003275,0.005701,26578041,17040360,0,0,29613,0,1,1 +1774078316.617389,26.17,4,3992.50,48.85,1751.15,1912.57,0.00,3518270214889.565918,3518270214891.075684,21,0,0.039830,104.349120,26580872,17051510,0,0,29616,0,1,1 +1774078321.617819,26.65,4,3992.50,49.25,1728.43,1928.06,0.00,62649.528314,53878.763713,5533791,945455,0.030105,100.735695,26583074,17062033,0,0,29618,0,1,1 +1774078326.612942,0.65,4,3992.50,49.11,1733.87,1922.62,0.00,3521872476436.735352,3521872485216.817871,21,0,0.004032,0.006435,26583169,17062159,0,0,29621,0,1,1 +1774078331.612957,10.78,4,3992.50,48.98,1739.55,1917.61,0.00,0.000000,0.000000,21,0,40.070172,0.030082,26587776,17064088,0,0,29623,0,1,1 +1774078336.616478,0.90,4,3992.50,48.98,1739.33,1917.81,0.00,0.048013,0.000000,70,0,0.002915,0.006081,26587852,17064194,0,0,29626,0,1,1 +1774078341.616961,0.55,4,3992.50,48.98,1739.36,1917.80,0.00,3518097642098.736816,0.000000,21,0,0.002733,0.003954,26587917,17064274,0,0,29628,0,1,1 +1774078346.617519,0.45,4,3992.50,49.04,1737.16,1919.99,0.00,0.174980,0.000000,199,0,0.002504,0.003330,26587975,17064343,0,0,29631,0,1,1 +1774078351.617071,0.65,4,3992.50,49.04,1737.18,1919.98,0.00,62678.116178,53913.855581,5533946,945979,0.002734,0.003955,26588040,17064423,0,0,29633,0,1,1 +1774078356.617124,0.80,4,3992.50,49.14,1733.07,1924.09,0.00,3518400300115.214355,3518400308878.773926,21,0,0.002734,0.003964,26588105,17064504,0,0,29636,0,1,1 +1774078361.617293,0.50,4,3992.50,49.15,1732.98,1924.18,0.00,62674.664538,53907.312727,5534720,946248,0.002759,0.003985,26588172,17064586,0,0,29638,0,1,1 +1774078366.613034,1.20,4,3992.50,49.16,1732.25,1924.91,0.00,3521437250872.438965,3521437259646.052734,237,175,0.002507,0.003333,26588230,17064655,0,0,29641,0,1,1 +1774078371.613023,0.45,4,3992.50,49.16,1732.27,1924.88,0.00,62671.284895,53909.351084,5533946,946184,0.002827,0.004017,26588301,17064740,0,0,29643,0,1,1 +1774078376.617622,1.30,4,3992.50,49.11,1734.58,1922.58,0.00,3515203495750.969238,3515203504506.291016,70,0,0.003408,0.005533,26588370,17064828,0,0,29646,0,1,1 +1774078381.613155,0.50,4,3992.50,49.14,1733.36,1923.80,0.00,0.000000,0.000000,70,0,0.002811,0.003998,26588440,17064911,0,0,29648,0,1,1 +1774078386.617610,0.45,4,3992.50,49.14,1733.18,1923.93,0.00,1.957045,0.000195,238,2,0.002731,0.003961,26588505,17064992,0,0,29651,0,1,1 +1774078391.616901,0.55,4,3992.50,49.13,1733.79,1923.37,0.00,3518936495297.365234,3518936495299.197754,199,0,0.002734,0.003955,26588570,17065072,0,0,29653,0,1,1 +1774078396.613774,0.55,4,3992.50,49.10,1734.70,1922.45,0.00,3520638982000.105957,0.000000,21,0,0.002735,0.003954,26588635,17065152,0,0,29656,0,1,1 +1774078401.612951,11.21,4,3992.50,49.20,1729.67,1926.30,0.00,1.538632,0.028325,237,175,0.024391,40.072077,26590246,17069663,0,0,29658,0,1,1 +1774078406.613104,0.70,4,3992.50,49.11,1733.27,1922.71,0.00,0.000000,0.000000,237,175,0.001795,0.004738,26590299,17069756,0,0,29661,0,1,1 +1774078411.613040,0.55,4,3992.50,49.11,1733.27,1922.71,0.00,0.468463,3518482027307.235840,238,2,0.001144,0.003188,26590334,17069818,0,0,29663,0,1,1 +1774078416.613030,0.50,4,3992.50,49.11,1733.27,1922.71,0.00,3518444091661.525391,3518444091663.532227,21,0,0.001144,0.003198,26590369,17069881,0,0,29666,0,1,1 +1774078421.617861,1.60,4,3992.50,48.95,1739.43,1916.55,0.00,0.048000,0.000000,70,0,0.003323,0.004201,26590449,17069970,0,0,29668,0,1,1 +1774078426.613030,0.50,4,3992.50,48.95,1739.44,1916.55,0.00,1.960684,0.000196,238,2,0.001146,0.003201,26590484,17070033,0,0,29671,0,1,1 +1774078431.616902,0.50,4,3992.50,48.89,1741.94,1914.04,0.00,3515714541100.557129,3515714541102.562988,21,0,0.001144,0.003185,26590519,17070095,0,0,29673,0,1,1 +1774078436.613032,0.45,4,3992.50,48.89,1741.95,1914.04,0.00,0.000000,0.000000,21,0,0.001120,0.003200,26590552,17070158,0,0,29676,0,1,1 +1774078441.617674,0.50,4,3992.50,48.89,1741.95,1914.04,0.00,0.000000,0.000000,21,0,0.000940,0.003226,26590582,17070214,0,0,29678,0,1,1 +1774078446.617531,0.55,4,3992.50,48.91,1740.97,1915.02,0.00,1.538423,0.028321,237,175,0.001313,0.003354,26590629,17070288,0,0,29681,0,1,1 +1774078451.615346,0.45,4,3992.50,48.88,1742.28,1913.71,0.00,3519975370535.058594,3519975370536.569336,21,0,0.001207,0.003252,26590668,17070355,0,0,29683,0,1,1 +1774078456.617207,0.50,4,3992.50,48.91,1741.05,1914.92,0.00,0.048029,0.000000,70,0,0.001144,0.003197,26590703,17070418,0,0,29686,0,1,1 +1774078461.615026,0.50,4,3992.50,48.91,1741.06,1914.92,0.00,3519972284988.507812,0.000000,21,0,0.001145,0.003189,26590738,17070480,0,0,29688,0,1,1 +1774078466.616403,24.12,4,3992.50,54.71,1521.13,2142.09,0.00,62659.533752,53934.830341,5534720,946932,41.651801,0.026057,26595187,17072182,0,0,29691,0,1,1 +1774078471.617397,31.96,4,3992.50,54.75,1524.43,2143.73,0.00,3517738279958.526367,3517738288681.893555,238,2,118.140127,0.033115,26607248,17074548,0,0,29693,0,1,1 +1774078476.617227,27.48,4,3992.50,55.05,1512.81,2155.42,0.00,3518556794070.952637,3518556794072.959961,21,0,118.169092,0.024715,26619451,17076290,0,0,29696,0,1,1 +1774078481.616377,28.85,4,3992.50,54.94,1517.35,2151.02,0.00,62687.448131,53959.028854,5534720,947069,119.786974,0.028209,26631754,17078300,0,0,29698,0,1,1 +1774078486.612940,28.80,4,3992.50,54.69,1527.18,2141.20,0.00,3520857232775.528320,3520857241508.466797,21,0,118.651893,0.038617,26644035,17081240,0,0,29701,0,1,1 +1774078491.614801,29.28,4,3992.50,55.04,1513.39,2155.00,0.00,0.048029,0.000000,70,0,120.126103,0.038559,26656480,17084073,0,0,29703,0,1,1 +1774078496.615134,29.44,4,3992.50,55.01,1514.49,2153.88,0.00,0.126945,0.000000,199,0,118.357839,0.027625,26668616,17086061,0,0,29706,0,1,1 +1774078501.613860,30.14,4,3992.50,54.95,1517.08,2151.29,0.00,62692.589296,53963.665705,5534720,947121,120.006432,0.044508,26681084,17089331,0,0,29708,0,1,1 +1774078506.616453,25.19,4,3992.50,54.96,1516.74,2151.71,0.00,0.000781,0.024109,5534721,947139,119.308528,0.034974,26693393,17091811,0,0,29711,0,1,1 +1774078511.617681,9.41,4,3992.50,49.43,1733.13,1935.27,0.00,3517573176063.738770,3517573184788.447266,21,0,39.295719,0.047676,26699377,17094208,0,0,29713,0,1,1 +1774078516.617529,20.31,4,3992.50,50.00,1710.74,1957.61,0.00,0.048048,0.000000,70,0,30.173080,0.129400,26708943,17101331,0,0,29716,0,1,1 +1774078521.613478,3.21,4,3992.50,49.29,1738.41,1929.92,0.00,62723.533311,53994.264431,5533958,947745,2.030356,0.016659,26709862,17101966,0,0,29718,0,1,1 +1774078526.616888,1.20,4,3992.50,48.99,1750.14,1918.18,0.00,3516039152658.120117,3516039161374.419434,21,0,0.003196,0.004699,26709935,17102057,0,0,29721,0,1,1 +1774078531.617023,15.62,4,3992.50,49.27,1736.21,1929.00,0.00,62675.165955,54007.497371,5534732,948664,0.029466,62.094806,26711977,17108922,0,0,29723,0,1,1 +1774078536.617660,31.50,4,3992.50,49.56,1716.16,1940.53,0.00,3517989286469.426758,3517989295136.227051,21,0,0.036321,122.561352,26714616,17121828,0,0,29726,0,1,1 +1774078541.614610,12.10,4,3992.50,53.85,1548.95,2108.18,0.00,0.048076,0.000000,70,0,2.620155,20.454985,26715599,17124513,0,0,29728,0,1,1 +1774078546.617314,6.42,4,3992.50,49.88,1704.14,1953.00,0.00,1.957731,0.000195,238,2,37.435650,0.016794,26719475,17125599,0,0,29731,0,1,1 +1774078551.612943,0.95,4,3992.50,49.27,1727.95,1929.18,0.00,62743.360702,54186.336871,5534102,949794,0.004348,0.006851,26719556,17125705,0,0,29733,0,1,1 +1774078556.616180,0.60,4,3992.50,48.83,1745.41,1911.73,0.00,4.106619,0.042941,5534876,949980,0.002840,0.004094,26719630,17125795,0,0,29736,0,1,1 +1774078561.617213,0.65,4,3992.50,48.75,1748.45,1908.69,0.00,3517709986991.862305,3517709995543.705566,238,2,0.002733,0.003941,26719695,17125874,0,0,29738,0,1,1 +1774078566.614128,0.45,4,3992.50,48.73,1749.30,1907.83,0.00,62727.230058,54172.490378,5534102,949887,0.002506,0.003345,26719753,17125944,0,0,29741,0,1,1 +1774078571.612955,0.85,4,3992.50,48.71,1749.84,1907.29,0.00,3519262616691.205078,3519262625243.167969,237,175,0.002734,0.004599,26719818,17126028,0,0,29743,0,1,1 +1774078576.617250,0.40,4,3992.50,48.73,1749.39,1907.74,0.00,3515417461064.106445,3515417461065.615234,21,0,0.002756,0.003979,26719885,17126110,0,0,29746,0,1,1 +1774078581.617059,0.60,4,3992.50,48.74,1748.87,1908.26,0.00,0.000000,0.000000,21,0,0.002721,0.003954,26719949,17126190,0,0,29748,0,1,1 +1774078586.615909,0.55,4,3992.50,48.74,1748.89,1908.25,0.00,0.000000,0.000000,21,0,0.003220,0.004979,26720027,17126295,0,0,29751,0,1,1 +1774078591.614320,0.55,4,3992.50,48.74,1748.90,1908.24,0.00,0.000000,0.000000,21,0,0.003144,0.005016,26720106,17126397,0,0,29753,0,1,1 +1774078596.612943,0.50,4,3992.50,48.74,1748.68,1908.45,0.00,0.000000,0.000000,21,0,0.003502,0.004054,26720171,17126473,0,0,29756,0,1,1 +1774078601.616366,0.55,4,3992.50,48.74,1748.98,1908.15,0.00,1.537326,0.028301,237,175,0.002719,0.003939,26720235,17126552,0,0,29758,0,1,1 +1774078606.612949,0.35,4,3992.50,48.40,1762.19,1894.96,0.00,0.468777,3520843568149.102539,238,2,0.002723,0.003954,26720299,17126632,0,0,29761,0,1,1 +1774078611.617085,1.65,4,3992.50,48.41,1761.96,1895.19,0.00,62636.785915,54112.586943,5534124,950455,0.002731,0.003951,26720364,17126712,0,0,29763,0,1,1 +1774078616.612949,0.35,4,3992.50,48.41,1761.73,1895.42,0.00,3521350133087.059570,3521350141627.334473,70,0,0.002117,0.003730,26720417,17126786,0,0,29766,0,1,1 +1774078621.617692,11.53,4,3992.50,48.23,1767.25,1888.34,0.00,62635.261557,54142.167014,5534898,950975,0.023226,40.029520,26721890,17131298,0,0,29768,0,1,1 +1774078626.616416,0.25,4,3992.50,48.26,1766.02,1889.56,0.00,3519334836298.645020,3519334844802.013184,21,0,0.001153,0.003207,26721926,17131362,0,0,29771,0,1,1 +1774078631.617679,0.30,4,3992.50,48.29,1765.04,1890.54,0.00,2.006329,0.000195,238,2,0.000903,0.002554,26721953,17131412,0,0,29773,0,1,1 +1774078636.612942,0.40,4,3992.50,48.31,1764.07,1891.51,0.00,3521774099701.803223,3521774099703.636719,199,0,0.001145,0.003845,26721988,17131479,0,0,29776,0,1,1 +1774078641.612938,2.76,4,3992.50,48.50,1756.54,1899.00,0.00,3518439918081.761719,0.000000,21,0,0.001132,0.003188,26722022,17131541,0,0,29778,0,1,1 +1774078646.616498,0.55,4,3992.50,48.55,1754.61,1900.91,0.00,1.537284,0.028300,237,176,0.001144,0.003196,26722057,17131604,0,0,29781,0,1,1 +1774078651.617940,0.50,4,3992.50,48.55,1754.61,1900.91,0.00,62676.991227,54182.085955,5535463,951148,0.001144,0.003187,26722092,17131666,0,0,29783,0,1,1 +1774078656.616151,0.50,4,3992.50,48.55,1754.61,1900.91,0.00,3519696320362.975098,3519696328862.874023,238,2,0.001195,0.003261,26722131,17131733,0,0,29786,0,1,1 +1774078661.616757,0.50,4,3992.50,48.55,1754.62,1900.91,0.00,0.000000,0.000000,238,2,0.000966,0.002616,26722163,17131787,0,0,29788,0,1,1 +1774078666.615766,0.55,4,3992.50,48.55,1754.62,1900.90,0.00,3519134319829.397949,3519134319831.230469,199,0,0.001358,0.003395,26722213,17131865,0,0,29791,0,1,1 +1774078671.617668,0.40,4,3992.50,48.55,1754.63,1900.89,0.00,1.362861,0.028310,237,176,0.001131,0.003187,26722247,17131927,0,0,29793,0,1,1 +1774078676.617427,0.55,4,3992.50,48.55,1754.63,1900.89,0.00,0.000000,0.000000,237,176,0.001144,0.003198,26722282,17131990,0,0,29796,0,1,1 +1774078681.617392,10.87,4,3992.50,55.19,1499.98,2160.97,0.00,0.468460,3518462199112.787598,238,2,2.008230,0.009064,26722694,17132352,0,0,29798,0,1,1 +1774078686.616522,37.91,4,3992.50,55.19,1505.57,2160.62,0.00,3519049509421.172852,0.028130,237,176,113.379212,0.046499,26734412,17135778,0,0,29801,0,1,1 +1774078691.616414,29.10,4,3992.50,55.32,1501.66,2165.92,0.00,3518513119394.807617,3518513119396.317871,21,0,120.167758,0.024911,26746688,17137595,0,0,29803,0,1,1 +1774078696.612974,28.90,4,3992.50,54.98,1515.16,2152.41,0.00,0.000000,0.000000,21,0,118.446801,0.032391,26758874,17140007,0,0,29806,0,1,1 +1774078701.613878,30.02,4,3992.50,54.86,1519.47,2148.09,0.00,0.174968,0.000000,199,0,119.946188,0.033986,26771249,17142467,0,0,29808,0,1,1 +1774078706.616376,29.18,4,3992.50,55.19,1506.71,2160.93,0.00,1.362698,0.028306,237,176,119.109999,0.029714,26783601,17144579,0,0,29811,0,1,1 +1774078711.616476,29.23,4,3992.50,54.94,1516.61,2150.96,0.00,0.468448,3518366709962.057617,238,2,119.164315,0.033635,26795830,17147008,0,0,29813,0,1,1 +1774078716.613923,29.18,4,3992.50,54.89,1518.57,2149.01,0.00,3520234790023.109375,3520234790024.942383,199,0,119.424661,0.031446,26807915,17149267,0,0,29816,0,1,1 +1774078721.616850,28.66,4,3992.50,55.06,1511.87,2155.73,0.00,62659.745573,54166.417016,5535463,951467,118.898111,0.024790,26820131,17150873,0,0,29818,0,1,1 +1774078726.616436,7.83,4,3992.50,49.92,1713.38,1954.30,0.00,3518728214036.193848,0.080085,5534700,951316,74.913023,0.022832,26827815,17152403,0,0,29821,0,1,1 +1774078731.612943,2.41,4,3992.50,48.81,1756.81,1910.84,0.00,3520897509938.050293,3520897518436.856445,237,176,0.006034,0.006177,26827938,17152530,0,0,29823,0,1,1 +1774078736.617555,24.84,4,3992.50,49.51,1729.33,1938.24,0.00,0.468025,3515194308556.145020,238,2,32.165371,0.141022,26838233,17160102,0,0,29826,0,1,1 +1774078741.617633,7.48,4,3992.50,50.20,1702.13,1965.41,0.00,3518382405149.497070,3518382405151.504395,21,0,8.058252,0.039672,26840950,17162124,0,0,29828,0,1,1 +1774078746.616437,1.20,4,3992.50,49.45,1731.62,1935.91,0.00,1.538747,0.028327,237,176,0.003209,0.004716,26841024,17162216,0,0,29831,0,1,1 +1774078751.614682,0.50,4,3992.50,49.19,1741.51,1926.02,0.00,62713.054099,54218.262197,5534700,952536,0.002735,0.003956,26841089,17162296,0,0,29833,0,1,1 +1774078756.613055,0.55,4,3992.50,49.19,1741.61,1925.92,0.00,3519582784465.341797,3519582792961.379395,70,0,0.002722,0.003966,26841153,17162377,0,0,29836,0,1,1 +1774078761.617766,0.60,4,3992.50,49.19,1741.63,1925.90,0.00,0.000000,0.000000,70,0,0.002731,0.003951,26841218,17162457,0,0,29838,0,1,1 +1774078766.616954,0.60,4,3992.50,49.19,1741.64,1925.89,0.00,3519008112349.052734,0.000000,21,0,0.002734,0.003965,26841283,17162538,0,0,29841,0,1,1 +1774078771.616123,0.50,4,3992.50,49.19,1741.66,1925.88,0.00,0.000000,0.000000,21,0,0.002614,0.004072,26841350,17162617,0,0,29843,0,1,1 +1774078776.616145,0.50,4,3992.50,49.19,1741.67,1925.87,0.00,62696.411790,54199.627864,5535474,953126,0.002746,0.003995,26841416,17162700,0,0,29846,0,1,1 +1774078781.617723,0.65,4,3992.50,49.19,1741.68,1925.86,0.00,3517327035650.293457,0.011032,5534700,952990,0.002504,0.003320,26841474,17162768,0,0,29848,0,1,1 +1774078786.616409,0.45,4,3992.50,49.19,1741.70,1925.83,0.00,3519361872600.092773,3519361881095.026367,21,0,0.002734,0.003965,26841539,17162849,0,0,29851,0,1,1 +1774078791.617263,0.55,4,3992.50,49.19,1741.71,1925.82,0.00,1.538116,0.028315,237,176,0.002783,0.003981,26841607,17162931,0,0,29853,0,1,1 +1774078796.617022,0.60,4,3992.50,49.19,1741.73,1925.80,0.00,3518606907070.636719,3518606907071.971680,199,0,0.002734,0.003964,26841672,17163012,0,0,29856,0,1,1 +1774078801.617563,0.50,4,3992.50,49.19,1741.74,1925.80,0.00,1.831638,0.000195,238,2,0.002733,0.003954,26841737,17163092,0,0,29858,0,1,1 +1774078806.617512,0.55,4,3992.50,49.18,1741.92,1925.62,0.00,0.000000,0.000000,238,2,0.002734,0.003964,26841802,17163173,0,0,29861,0,1,1 +1774078811.613608,0.70,4,3992.50,49.18,1741.94,1925.60,0.00,3521186630276.868652,3521186630278.702148,199,0,0.002744,0.003965,26841868,17163254,0,0,29863,0,1,1 +1774078816.616934,0.50,4,3992.50,49.18,1741.95,1925.58,0.00,1.830618,0.000195,238,2,0.002732,0.003962,26841933,17163335,0,0,29866,0,1,1 +1774078821.617518,0.45,4,3992.50,49.14,1743.58,1923.96,0.00,62683.292060,54193.894376,5534704,953331,0.002504,0.003320,26841991,17163403,0,0,29868,0,1,1 +1774078826.617582,0.50,4,3992.50,49.18,1742.14,1925.39,0.00,3518391869414.514160,3518391877905.290039,237,176,0.002734,0.003964,26842056,17163484,0,0,29871,0,1,1 +1774078831.616238,0.50,4,3992.50,49.18,1742.16,1925.38,0.00,3519383043074.488281,3519383043075.998535,21,0,0.002734,0.003955,26842121,17163564,0,0,29873,0,1,1 +1774078836.617396,0.75,4,3992.50,49.20,1741.44,1926.10,0.00,62682.208684,54187.774359,5535478,953611,0.004001,0.026354,26842208,17163688,0,0,29876,0,1,1 +1774078841.617826,29.66,4,3992.50,49.30,1730.50,1930.39,0.00,3518134891256.485840,3518134899751.982422,199,0,0.046728,116.739353,26845762,17176081,0,0,29878,0,1,1 +1774078846.617287,22.67,4,3992.50,50.15,1691.30,1963.30,0.00,1.832033,0.000195,238,2,0.018289,88.336430,26847083,17185312,0,0,29881,0,1,1 +1774078851.617078,11.58,4,3992.50,53.73,1553.51,2103.73,0.00,3518584703731.210449,0.028126,237,176,5.617147,0.015183,26848062,17186063,0,0,29883,0,1,1 +1774078856.617203,5.71,4,3992.50,49.74,1709.83,1947.41,0.00,62707.272306,54404.211812,5534814,954960,34.451376,0.016091,26851548,17186851,0,0,29886,0,1,1 +1774078861.612968,10.82,4,3992.50,49.12,1732.02,1923.31,0.00,3521419555418.329102,3521419563730.099609,70,0,0.029299,40.100252,26853586,17191352,0,0,29888,0,1,1 +1774078866.613865,0.50,4,3992.50,49.13,1731.61,1923.72,0.00,0.000000,0.000000,70,0,0.001144,0.003197,26853621,17191415,0,0,29891,0,1,1 +1774078871.617485,0.55,4,3992.50,49.05,1735.09,1920.24,0.00,1.489254,0.028300,237,176,0.000915,0.002552,26853649,17191465,0,0,29893,0,1,1 +1774078876.614541,0.55,4,3992.50,48.98,1737.59,1917.74,0.00,3520510212032.874512,3520510212034.385254,21,0,0.001145,0.003200,26853684,17191528,0,0,29896,0,1,1 +1774078881.617288,0.45,4,3992.50,48.96,1738.43,1916.89,0.00,0.000000,0.000000,21,0,0.001156,0.003217,26853720,17191592,0,0,29898,0,1,1 +1774078886.617323,0.55,4,3992.50,48.97,1738.20,1917.14,0.00,62714.061476,54441.515927,5535588,955496,0.001744,0.004307,26853767,17191677,0,0,29901,0,1,1 +1774078891.617206,0.50,4,3992.50,48.97,1738.20,1917.13,0.00,3518519202258.901367,3518519210531.522461,199,0,0.001538,0.004252,26853814,17191761,0,0,29903,0,1,1 +1774078896.615681,0.50,4,3992.50,48.98,1737.46,1917.87,0.00,1.363795,0.028329,237,176,0.002075,0.003877,26853852,17191828,0,0,29906,0,1,1 +1774078901.616903,0.45,4,3992.50,48.97,1738.16,1917.18,0.00,3517577976440.997070,3517577976442.506836,21,0,0.001270,0.003986,26853897,17191904,0,0,29908,0,1,1 +1774078906.617183,0.55,4,3992.50,48.99,1737.42,1917.91,0.00,0.048044,0.000000,70,0,0.001021,0.002671,26853932,17191963,0,0,29911,0,1,1 +1774078911.617915,0.55,4,3992.50,48.99,1737.42,1917.91,0.00,0.000000,0.000000,70,0,0.001144,0.003187,26853967,17192025,0,0,29913,0,1,1 +1774078916.614603,0.45,4,3992.50,48.99,1737.21,1918.12,0.00,0.000000,0.000000,70,0,0.001145,0.003200,26854002,17192088,0,0,29916,0,1,1 +1774078921.615703,1.00,4,3992.50,48.75,1746.52,1908.81,0.00,62696.540618,54434.016884,5534814,955443,0.002968,0.004178,26854056,17192156,0,0,29918,0,1,1 +1774078926.619276,41.07,4,3992.50,55.56,1490.54,2175.14,0.00,3515924312254.283691,3515924320512.596191,199,0,108.877989,0.052440,26865415,17195893,0,0,29921,0,1,1 +1774078931.612927,31.01,4,3992.50,55.22,1505.62,2161.96,0.00,62789.937187,54515.303168,5534814,955573,122.323946,0.043014,26877918,17199133,0,0,29923,0,1,1 +1774078936.617139,29.76,4,3992.50,55.28,1503.10,2164.45,0.00,3515476216642.857422,3515476224900.030273,199,0,120.066242,0.040076,26890267,17202042,0,0,29926,0,1,1 +1774078941.613472,29.86,4,3992.50,55.10,1510.20,2157.37,0.00,3521018916428.468262,0.000000,21,0,120.254157,0.042263,26902518,17205158,0,0,29928,0,1,1 +1774078946.617930,29.26,4,3992.50,55.04,1512.46,2155.13,0.00,2.005048,0.000195,238,2,120.058542,0.050822,26914748,17209007,0,0,29931,0,1,1 +1774078951.617280,29.51,4,3992.50,54.90,1517.90,2149.63,0.00,62716.527538,54453.209856,5534814,955630,120.181101,0.049691,26926970,17212753,0,0,29933,0,1,1 +1774078956.617942,29.81,4,3992.50,54.88,1518.80,2148.80,0.00,3517972047049.628906,3517972055312.738770,70,0,118.946471,0.038759,26939111,17215768,0,0,29936,0,1,1 +1774078961.617628,29.35,4,3992.50,54.96,1515.72,2151.89,0.00,3518657944148.230469,0.000000,21,0,119.372620,0.037601,26951362,17218562,0,0,29938,0,1,1 +1774078966.613038,7.34,4,3992.50,50.26,1699.79,1967.86,0.00,2.008680,0.000195,238,2,75.374360,0.032178,26959020,17220903,0,0,29941,0,1,1 +1774078971.617045,2.51,4,3992.50,50.21,1701.82,1965.82,0.00,62658.287340,54402.942218,5534826,955744,2.015769,0.013737,26959758,17221487,0,0,29943,0,1,1 +1774078976.619364,18.25,4,3992.50,49.98,1710.89,1956.71,0.00,3516806130969.128906,3516806139229.092285,199,0,20.165593,0.098424,26966535,17226553,0,0,29946,0,1,1 +1774078981.612957,17.31,4,3992.50,49.91,1713.37,1954.17,0.00,1.365128,0.028357,237,176,18.082249,0.075692,26972007,17230932,0,0,29948,0,1,1 +1774078986.616672,2.80,4,3992.50,49.44,1731.86,1935.66,0.00,3515825330370.506836,3515825330371.840820,199,0,0.011802,0.008861,26972253,17231146,0,0,29951,0,1,1 +1774078991.612979,0.55,4,3992.50,49.16,1742.86,1924.66,0.00,1.364387,0.028341,237,176,0.003423,0.005851,26972339,17231262,0,0,29953,0,1,1 +1774078996.613020,0.45,4,3992.50,49.19,1741.61,1925.91,0.00,3518408176384.801270,3518408176386.263184,70,0,0.003878,0.007132,26972439,17231403,0,0,29956,0,1,1 +1774079001.613487,0.70,4,3992.50,49.19,1741.62,1925.90,0.00,3518108771617.046875,0.000000,21,0,0.003407,0.005855,26972524,17231519,0,0,29958,0,1,1 +1774079006.616626,0.75,4,3992.50,49.21,1740.91,1926.62,0.00,0.048017,0.000000,70,0,0.003876,0.007115,26972624,17231659,0,0,29961,0,1,1 +1774079011.617202,0.55,4,3992.50,49.08,1745.96,1921.55,0.00,3518031821854.681152,0.000000,21,0,0.003495,0.005935,26972716,17231780,0,0,29963,0,1,1 +1774079016.613544,3.66,4,3992.50,49.25,1739.22,1928.18,0.00,1.539505,0.028341,237,176,0.018424,13.040822,26973815,17233581,0,0,29966,0,1,1 +1774079021.617057,29.17,4,3992.50,49.31,1729.04,1930.65,0.00,3515966790761.190918,3515966790762.525391,199,0,0.044917,118.087775,26976969,17245867,0,0,29968,0,1,1 +1774079026.616468,18.97,4,3992.50,49.36,1721.83,1932.60,0.00,62717.730018,54645.622917,5534826,958440,0.027807,73.914127,26979025,17253501,0,0,29971,0,1,1 +1774079031.614924,8.28,4,3992.50,53.93,1545.00,2111.62,0.00,21.886349,0.120838,5535721,958754,3.617877,0.018007,26979826,17254177,0,0,29973,0,1,1 +1774079036.616891,6.22,4,3992.50,49.44,1720.98,1935.64,0.00,3517053854404.273438,3517053862492.672363,237,176,36.440641,0.021131,26983561,17255339,0,0,29976,0,1,1 +1774079041.613395,0.55,4,3992.50,49.16,1731.80,1924.83,0.00,3520898949600.883789,3520898949602.395020,21,0,0.003423,0.005859,26983647,17255455,0,0,29978,0,1,1 +1774079046.613323,0.70,4,3992.50,49.56,1716.35,1940.28,0.00,2.006865,0.000195,238,2,0.003878,0.007132,26983747,17255596,0,0,29981,0,1,1 +1774079051.617609,0.60,4,3992.50,49.55,1716.54,1940.09,0.00,3515424066496.063477,3515424066498.068848,21,0,0.003862,0.007760,26983846,17255740,0,0,29983,0,1,1 +1774079056.617321,0.60,4,3992.50,49.55,1716.55,1940.07,0.00,0.000000,0.000000,21,0,0.003866,0.007133,26983945,17255881,0,0,29986,0,1,1 +1774079061.617315,0.85,4,3992.50,49.55,1716.57,1940.06,0.00,62728.357863,54653.479667,5534947,958928,0.003445,0.005886,26984033,17255999,0,0,29988,0,1,1 +1774079066.617156,0.55,4,3992.50,49.55,1716.59,1940.04,0.00,3518549052903.826660,3518549060978.953125,21,0,0.003916,0.007195,26984136,17256144,0,0,29991,0,1,1 +1774079071.617627,0.65,4,3992.50,49.07,1735.35,1921.28,0.00,2.006647,0.000195,238,2,0.003878,0.007122,26984236,17256284,0,0,29993,0,1,1 +1774079076.617551,0.55,4,3992.50,49.08,1734.89,1921.73,0.00,3518490347233.559082,3518490347235.518066,70,0,0.003979,0.007216,26984343,17256432,0,0,29996,0,1,1 +1774079081.617811,11.12,4,3992.50,48.81,1744.30,1910.98,0.00,62729.097325,54686.868959,5535721,959508,0.022472,40.064022,26985816,17260902,0,0,29998,0,1,1 +1774079086.617713,0.75,4,3992.50,48.58,1753.33,1901.94,0.00,3518505643716.977051,3518505651757.820312,238,2,0.002520,0.006627,26985893,17261030,0,0,30001,0,1,1 +1774079091.617085,0.65,4,3992.50,48.62,1751.68,1903.59,0.00,62734.176281,54696.647211,5534947,959438,0.002289,0.006357,26985963,17261152,0,0,30003,0,1,1 +1774079096.612952,0.55,4,3992.50,48.62,1751.70,1903.57,0.00,4.112676,0.089527,5535721,959622,0.002291,0.006371,26986033,17261275,0,0,30006,0,1,1 +1774079101.616991,0.70,4,3992.50,48.63,1751.27,1904.00,0.00,3515597848782.024414,3515597856818.079102,21,0,0.002300,0.006351,26986104,17261397,0,0,30008,0,1,1 +1774079106.617732,0.75,4,3992.50,48.64,1751.03,1904.24,0.00,2.006538,0.000195,238,2,0.001831,0.005098,26986160,17261496,0,0,30011,0,1,1 +1774079111.613045,0.70,4,3992.50,48.64,1751.04,1904.23,0.00,62785.140507,54745.242810,5534947,959545,0.002291,0.006362,26986230,17261618,0,0,30013,0,1,1 +1774079116.617629,0.85,4,3992.50,48.64,1751.04,1904.23,0.00,3515214263437.004395,3515214271464.012695,21,0,0.002312,0.006391,26986302,17261743,0,0,30016,0,1,1 +1774079121.617300,0.85,4,3992.50,48.64,1751.04,1904.23,0.00,62732.417772,54697.532606,5534947,959553,0.002360,0.006427,26986378,17261870,0,0,30018,0,1,1 +1774079126.612964,0.95,4,3992.50,48.64,1751.05,1904.22,0.00,0.000000,0.033623,5534947,959591,0.002460,0.006528,26986460,17262004,0,0,30021,0,1,1 +1774079131.613024,0.70,4,3992.50,48.64,1751.05,1904.22,0.00,3518395181552.074707,3518395189586.126465,199,0,0.001893,0.005152,26986520,17262107,0,0,30023,0,1,1 +1774079136.614858,0.90,4,3992.50,48.64,1751.06,1904.21,0.00,0.000000,0.000000,199,0,0.002288,0.007007,26986590,17262234,0,0,30026,0,1,1 +1774079141.617786,1.00,4,3992.50,48.64,1751.06,1904.21,0.00,3516378271649.658203,0.000000,21,0,0.002275,0.006352,26986659,17262356,0,0,30028,0,1,1 +1774079146.620869,2.80,4,3992.50,51.62,1637.61,2020.99,0.00,62693.748110,54660.361760,5535721,959827,0.025529,0.009127,26986801,17262532,0,0,30031,0,1,1 +1774079151.616796,44.09,4,3992.50,54.92,1516.61,2150.42,0.00,0.000000,0.193126,5535721,959971,117.841337,0.053010,26998984,17266369,0,0,30033,0,1,1 +1774079156.616814,30.24,4,3992.50,55.16,1508.71,2159.60,0.00,0.000000,0.004590,5535721,959981,121.166979,0.030878,27011312,17268468,0,0,30036,0,1,1 +1774079161.616374,30.43,4,3992.50,55.20,1507.02,2161.30,0.00,3518746453112.768555,3518746461151.617188,21,0,120.777675,0.044053,27023631,17271669,0,0,30038,0,1,1 +1774079166.616778,30.16,4,3992.50,55.07,1512.38,2156.02,0.00,0.000000,0.000000,21,0,120.307715,0.043253,27035968,17274693,0,0,30041,0,1,1 +1774079171.614043,30.45,4,3992.50,54.97,1516.28,2152.15,0.00,62762.621797,54724.249795,5534947,959852,119.683277,0.030739,27048248,17276741,0,0,30043,0,1,1 +1774079176.617536,29.33,4,3992.50,55.05,1513.17,2155.22,0.00,3515981194614.852051,3515981202643.043945,199,0,119.019207,0.047299,27060396,17280147,0,0,30046,0,1,1 +1774079181.617550,29.48,4,3992.50,55.04,1513.41,2154.93,0.00,3518427232734.497559,0.000000,70,0,120.026384,0.054637,27072510,17284153,0,0,30048,0,1,1 +1774079186.617493,29.13,4,3992.50,55.35,1501.16,2167.20,0.00,3518477271672.757812,0.000000,21,0,119.568986,0.029992,27084848,17286209,0,0,30051,0,1,1 +1774079191.617280,5.98,4,3992.50,50.04,1709.10,1959.37,0.00,0.000000,0.000000,21,0,67.101363,0.019935,27091891,17287303,0,0,30053,0,1,1 +1774079196.612964,1.60,4,3992.50,49.07,1747.31,1921.16,0.00,0.175151,0.000000,199,0,0.006630,0.007156,27092030,17287456,0,0,30056,0,1,1 +1774079201.614405,22.85,4,3992.50,49.83,1717.53,1950.84,0.00,1.362986,0.028312,237,176,26.663648,0.127505,27100894,17293995,0,0,30058,0,1,1 +1774079206.617283,9.34,4,3992.50,48.68,1762.48,1905.90,0.00,3516413060954.362793,3516413060955.872070,21,0,13.574486,0.057128,27105061,17297083,0,0,30061,0,1,1 +1774079211.617041,1.00,4,3992.50,48.70,1761.51,1906.85,0.00,62735.595895,54698.106148,5535738,961227,0.004561,0.008469,27105175,17297243,0,0,30063,0,1,1 +1774079216.616046,5.88,4,3992.50,49.37,1735.46,1932.88,0.00,3519137417195.815918,3519137425232.508789,238,2,0.021164,22.317843,27106492,17300007,0,0,30066,0,1,1 +1774079221.612957,32.88,4,3992.50,50.42,1685.97,1974.14,0.00,3520612410809.742188,3520612410811.750488,21,0,0.054772,122.596635,27110557,17313021,0,0,30068,0,1,1 +1774079226.617631,16.73,4,3992.50,48.93,1739.69,1915.80,0.00,0.000000,0.000000,21,0,0.016221,60.237181,27111529,17319238,0,0,30071,0,1,1 +1774079231.617543,8.73,4,3992.50,54.03,1541.30,2115.30,0.00,0.000000,0.000000,21,0,16.154373,0.019128,27113579,17320203,0,0,30073,0,1,1 +1774079236.617684,3.31,4,3992.50,49.84,1705.38,1951.25,0.00,0.000000,0.000000,21,0,23.917072,0.016109,27116134,17320964,0,0,30076,0,1,1 +1774079241.618475,0.65,4,3992.50,49.20,1730.45,1926.18,0.00,62736.295110,54892.524206,5535073,962861,0.003903,0.007152,27116236,17321106,0,0,30078,0,1,1 +1774079246.618060,0.45,4,3992.50,48.87,1743.21,1913.41,0.00,3518729211217.748535,3518729219063.363281,70,0,0.003878,0.007133,27116336,17321247,0,0,30081,0,1,1 +1774079251.617614,0.65,4,3992.50,48.86,1743.71,1912.92,0.00,1.958964,0.000195,238,2,0.003878,0.007123,27116436,17321387,0,0,30083,0,1,1 +1774079256.617738,0.65,4,3992.50,49.17,1731.29,1925.30,0.00,3518349363437.956543,3518349363439.963867,21,0,0.003420,0.005865,27116522,17321504,0,0,30086,0,1,1 +1774079261.617396,0.65,4,3992.50,49.17,1731.34,1925.29,0.00,0.000000,0.000000,21,0,0.003891,0.007154,27116623,17321646,0,0,30088,0,1,1 +1774079266.616837,0.65,4,3992.50,49.17,1731.61,1925.03,0.00,62757.335109,54907.561181,5535847,963196,0.003886,0.007624,27116724,17321791,0,0,30091,0,1,1 +1774079271.613033,1.20,4,3992.50,49.16,1731.83,1924.80,0.00,3521116215574.421875,3521116223429.295898,21,0,0.003485,0.006071,27116814,17321912,0,0,30093,0,1,1 +1774079276.612932,0.60,4,3992.50,49.16,1731.85,1924.78,0.00,2.006876,0.000195,238,2,0.003897,0.007158,27116915,17322055,0,0,30096,0,1,1 +1774079281.614958,0.70,4,3992.50,49.16,1731.87,1924.77,0.00,62722.908703,54879.277006,5535847,963281,0.003951,0.007160,27117020,17322198,0,0,30098,0,1,1 +1774079286.613055,0.50,4,3992.50,49.16,1731.87,1924.75,0.00,3519776615426.759766,3519776623278.516113,70,0,0.003879,0.007122,27117120,17322338,0,0,30101,0,1,1 +1774079291.616481,0.45,4,3992.50,49.17,1731.42,1925.21,0.00,1.489312,0.028301,237,176,0.003405,0.005851,27117205,17322454,0,0,30103,0,1,1 +1774079296.617159,0.60,4,3992.50,49.17,1731.44,1925.19,0.00,3517960218505.923340,3517960218507.433105,21,0,0.003246,0.006761,27117292,17322587,0,0,30106,0,1,1 +1774079301.616633,0.55,4,3992.50,49.17,1731.46,1925.17,0.00,62752.810317,54907.362585,5535073,963209,0.003715,0.007111,27117390,17322726,0,0,30108,0,1,1 +1774079306.613037,11.12,4,3992.50,48.84,1742.96,1912.11,0.00,3520969571814.321777,3520969579663.080566,237,176,0.021563,40.095544,27118729,17327182,0,0,30111,0,1,1 +1774079311.616482,0.85,4,3992.50,48.64,1750.63,1904.48,0.00,0.000000,0.000000,237,176,0.002721,0.007245,27118811,17327321,0,0,30113,0,1,1 +1774079316.614490,0.55,4,3992.50,48.66,1749.93,1905.18,0.00,62769.685956,54959.737387,5535073,963561,0.002298,0.006377,27118882,17327445,0,0,30116,0,1,1 +1774079321.614618,0.80,4,3992.50,48.66,1749.92,1905.19,0.00,4.109172,0.035546,5535847,963743,0.004462,0.007364,27118996,17327593,0,0,30118,0,1,1 +1774079326.613706,0.55,4,3992.50,48.66,1749.92,1905.19,0.00,0.000000,0.002344,5535847,963745,0.001831,0.005100,27119052,17327692,0,0,30121,0,1,1 +1774079331.613099,0.65,4,3992.50,48.66,1749.93,1905.18,0.00,3518864163818.064453,3518864171631.382812,70,0,0.002289,0.006840,27119122,17327817,0,0,30123,0,1,1 +1774079336.613035,0.60,4,3992.50,48.58,1752.97,1902.14,0.00,0.000000,0.000000,70,0,0.002289,0.006527,27119192,17327941,0,0,30126,0,1,1 +1774079341.613096,0.60,4,3992.50,48.62,1751.54,1903.58,0.00,3518393946711.183105,0.000000,21,0,0.002289,0.006356,27119262,17328063,0,0,30128,0,1,1 +1774079346.617108,0.55,4,3992.50,48.62,1751.54,1903.57,0.00,0.000000,0.000000,21,0,0.001842,0.005126,27119319,17328164,0,0,30131,0,1,1 +1774079351.612932,0.60,4,3992.50,48.62,1751.54,1903.57,0.00,0.000000,0.000000,21,0,0.002460,0.006530,27119401,17328298,0,0,30133,0,1,1 +1774079356.617479,0.55,4,3992.50,48.62,1751.54,1903.57,0.00,0.174841,0.000000,199,0,0.002349,0.006410,27119475,17328425,0,0,30136,0,1,1 +1774079361.617731,0.65,4,3992.50,48.62,1751.54,1903.57,0.00,3518260094744.291016,0.000000,21,0,0.002289,0.006356,27119545,17328547,0,0,30138,0,1,1 +1774079366.617496,0.60,4,3992.50,48.62,1751.54,1903.56,0.00,2.006930,0.000195,238,2,0.002398,0.006486,27119624,17328678,0,0,30141,0,1,1 +1774079371.617044,8.62,4,3992.50,55.24,1498.26,2162.65,0.00,0.000000,0.000000,238,2,1.207389,0.009832,27119933,17328986,0,0,30143,0,1,1 +1774079376.617114,38.18,4,3992.50,55.15,1506.71,2159.06,0.00,3518388557307.900391,3518388557309.907227,21,0,114.961391,0.032131,27131878,17331119,0,0,30146,0,1,1 +1774079381.615512,29.92,4,3992.50,55.03,1512.38,2154.70,0.00,0.000000,0.000000,21,0,119.406793,0.025703,27144231,17332747,0,0,30148,0,1,1 +1774079386.613027,29.08,4,3992.50,55.06,1511.68,2155.57,0.00,0.048071,0.000000,70,0,119.026315,0.029122,27156433,17334818,0,0,30151,0,1,1 +1774079391.617367,29.40,4,3992.50,55.03,1512.94,2154.36,0.00,3515386137758.776855,0.000000,21,0,119.263486,0.027866,27168661,17336862,0,0,30153,0,1,1 +1774079396.614304,29.54,4,3992.50,55.06,1511.55,2155.82,0.00,0.000000,0.000000,21,0,119.041608,0.033385,27180816,17339248,0,0,30156,0,1,1 +1774079401.617846,30.22,4,3992.50,55.05,1512.12,2155.20,0.00,62705.909555,54903.370939,5535847,964032,119.883341,0.028648,27193126,17341213,0,0,30158,0,1,1 +1774079406.614408,29.99,4,3992.50,54.96,1515.71,2151.64,0.00,3520857639993.214844,3520857647806.477051,199,0,119.052437,0.038080,27205361,17343902,0,0,30161,0,1,1 +1774079411.617570,29.56,4,3992.50,55.12,1509.10,2158.15,0.00,3516213960945.214355,0.000000,21,0,119.503713,0.057744,27217853,17348149,0,0,30163,0,1,1 +1774079416.617838,7.37,4,3992.50,49.52,1728.58,1938.79,0.00,2.006729,0.000195,238,2,74.106475,0.031290,27225614,17350424,0,0,30166,0,1,1 +1774079421.614058,3.46,4,3992.50,49.00,1748.71,1918.65,0.00,3521099188036.189941,3521099188038.149902,70,0,0.011625,0.011526,27225838,17350649,0,0,30168,0,1,1 +1774079426.616393,13.52,4,3992.50,49.60,1725.30,1942.08,0.00,62721.146697,54917.267500,5535867,964812,14.095607,0.072488,27230655,17354196,0,0,30171,0,1,1 +1774079431.616956,17.36,4,3992.50,49.26,1738.70,1928.67,0.00,3518041121650.859863,3518041129457.553711,21,0,26.147350,0.111080,27238953,17360391,0,0,30173,0,1,1 +1774079436.613068,1.25,4,3992.50,48.87,1753.99,1913.38,0.00,0.175136,0.000000,199,0,0.004598,0.008536,27239070,17360556,0,0,30176,0,1,1 +1774079441.617683,0.85,4,3992.50,48.80,1756.84,1910.53,0.00,1.362122,0.028294,237,176,0.003874,0.007116,27239170,17360696,0,0,30178,0,1,1 +1774079446.616439,0.55,4,3992.50,48.79,1756.96,1910.40,0.00,3519313066659.324707,3519313066660.835449,21,0,0.003879,0.007109,27239270,17360835,0,0,30181,0,1,1 +1774079451.615419,4.72,4,3992.50,49.16,1742.39,1924.82,0.00,62759.176914,54954.832976,5535093,965458,0.017908,15.635628,27240351,17362814,0,0,30183,0,1,1 +1774079456.615436,29.77,4,3992.50,48.98,1741.59,1917.81,0.00,3518425243304.267090,3518425251106.945801,70,0,0.035346,118.170695,27242921,17375265,0,0,30186,0,1,1 +1774079461.613296,19.05,4,3992.50,49.00,1735.97,1918.32,0.00,3519944102585.379395,0.000000,21,0,0.025258,71.344152,27244619,17382984,0,0,30188,0,1,1 +1774079466.615772,13.95,4,3992.50,53.85,1547.62,2108.53,0.00,0.000000,0.000000,21,0,28.236192,0.023532,27247932,17384184,0,0,30191,0,1,1 +1774079471.617409,1.50,4,3992.50,48.77,1746.63,1909.52,0.00,0.000000,0.000000,21,0,11.820140,0.012138,27249327,17384554,0,0,30193,0,1,1 +1774079476.613069,0.50,4,3992.50,48.83,1744.43,1911.72,0.00,0.000000,0.000000,21,0,0.003423,0.005895,27249413,17384673,0,0,30196,0,1,1 +1774079481.617208,0.65,4,3992.50,49.16,1731.37,1924.75,0.00,2.005176,0.000195,238,2,0.003875,0.007117,27249513,17384813,0,0,30198,0,1,1 +1774079486.617567,0.65,4,3992.50,49.08,1734.42,1921.73,0.00,3518184451955.611328,3518184451957.618164,21,0,0.004477,0.008241,27249625,17384976,0,0,30201,0,1,1 +1774079491.613030,0.75,4,3992.50,49.12,1733.01,1923.16,0.00,1.539776,0.028346,237,176,0.005198,0.008852,27249739,17385140,0,0,30203,0,1,1 +1774079496.617856,0.55,4,3992.50,49.12,1733.02,1923.14,0.00,0.000000,0.000000,237,176,0.003442,0.005891,27249827,17385259,0,0,30206,0,1,1 +1774079501.617629,0.55,4,3992.50,49.12,1733.04,1923.13,0.00,0.468478,3518596439446.442383,238,2,0.004800,0.007792,27249929,17385402,0,0,30208,0,1,1 +1774079506.617625,0.55,4,3992.50,49.12,1733.05,1923.11,0.00,3518439889228.749023,3518439889230.707520,70,0,0.003909,0.007158,27250031,17385545,0,0,30211,0,1,1 +1774079511.613243,0.55,4,3992.50,49.12,1733.06,1923.11,0.00,3521523950696.494629,0.000000,21,0,0.003902,0.007124,27250133,17385685,0,0,30213,0,1,1 +1774079516.617852,0.50,4,3992.50,49.12,1733.07,1923.09,0.00,0.000000,0.000000,21,0,0.003492,0.005900,27250224,17385805,0,0,30216,0,1,1 +1774079521.617115,0.55,4,3992.50,49.12,1733.09,1923.08,0.00,0.175026,0.000000,199,0,0.003904,0.007123,27250326,17385945,0,0,30218,0,1,1 +1774079526.617810,0.65,4,3992.50,49.12,1733.12,1923.05,0.00,62759.354218,55142.057243,5535990,967740,0.003259,0.006894,27250414,17386079,0,0,30221,0,1,1 +1774079531.613174,10.70,4,3992.50,49.29,1725.44,1929.64,0.00,3521702523633.583984,3521702531259.011719,199,0,0.032660,40.104672,27252654,17390538,0,0,30223,0,1,1 +1774079536.617568,0.80,4,3992.50,49.05,1734.60,1920.50,0.00,62712.985046,55137.407864,5535990,968017,0.002971,0.007899,27252744,17390691,0,0,30226,0,1,1 +1774079541.617708,0.55,4,3992.50,48.95,1738.69,1916.41,0.00,3518338542566.326660,3518338550148.474121,70,0,0.002289,0.006356,27252814,17390813,0,0,30228,0,1,1 +1774079546.617276,0.65,4,3992.50,48.97,1737.82,1917.28,0.00,3518741017686.367188,0.000000,21,0,0.002060,0.005720,27252877,17390923,0,0,30231,0,1,1 +1774079551.617816,0.60,4,3992.50,48.97,1737.83,1917.28,0.00,1.538213,0.028317,237,176,0.002047,0.005734,27252939,17391034,0,0,30233,0,1,1 +1774079556.612938,0.65,4,3992.50,48.98,1737.36,1917.74,0.00,0.468914,3521873078525.494629,238,2,0.002299,0.006380,27253010,17391158,0,0,30236,0,1,1 +1774079561.617079,0.50,4,3992.50,48.98,1737.49,1917.62,0.00,3515525724302.366211,3515525724304.371582,21,0,0.002287,0.006351,27253080,17391280,0,0,30238,0,1,1 +1774079566.615394,0.60,4,3992.50,48.98,1737.50,1917.61,0.00,0.175059,0.000000,199,0,0.002327,0.006405,27253153,17391405,0,0,30241,0,1,1 +1774079571.616486,0.60,4,3992.50,48.98,1737.50,1917.60,0.00,3517669095584.098145,0.000000,70,0,0.001881,0.005175,27253213,17391509,0,0,30243,0,1,1 +1774079576.617693,0.55,4,3992.50,48.98,1737.50,1917.60,0.00,3517587795149.212891,0.000000,21,0,0.002444,0.006490,27253294,17391641,0,0,30246,0,1,1 +1774079581.614242,0.55,4,3992.50,48.98,1737.26,1917.84,0.00,62807.515100,55228.096063,5535216,967969,0.002353,0.006423,27253368,17391768,0,0,30248,0,1,1 +1774079586.617318,0.70,4,3992.50,48.98,1737.27,1917.84,0.00,3516273909795.870117,3516273917365.351562,70,0,0.002287,0.006362,27253438,17391891,0,0,30251,0,1,1 +1774079591.618200,0.50,4,3992.50,48.98,1737.27,1917.84,0.00,1.490069,0.028315,237,176,0.001831,0.005088,27253494,17391989,0,0,30253,0,1,1 +1774079596.613023,13.22,4,3992.50,54.89,1511.69,2149.12,0.00,62827.666077,55247.175477,5535216,968003,6.221689,0.017123,27254383,17392751,0,0,30256,0,1,1 +1774079601.616492,35.01,4,3992.50,55.12,1508.09,2157.95,0.00,3515997713152.083008,3515997720720.983398,21,0,119.281294,0.042886,27266409,17395826,0,0,30258,0,1,1 +1774079606.617748,29.31,4,3992.50,55.37,1499.14,2167.78,0.00,1.537993,0.028313,237,176,118.932907,0.029182,27278478,17397959,0,0,30261,0,1,1 +1774079611.618034,29.16,4,3992.50,54.96,1515.20,2151.76,0.00,0.000000,0.000000,237,176,119.158978,0.027073,27290730,17399746,0,0,30263,0,1,1 +1774079616.617463,29.74,4,3992.50,55.09,1510.13,2156.82,0.00,0.468511,3518839244008.246094,238,2,119.180517,0.032868,27302979,17402038,0,0,30266,0,1,1 +1774079621.617411,29.35,4,3992.50,54.99,1514.17,2152.81,0.00,62762.798664,55190.774435,5535216,968161,119.367338,0.037803,27315096,17404671,0,0,30268,0,1,1 +1774079626.613340,29.00,4,3992.50,54.91,1517.24,2149.87,0.00,4.112625,0.062942,5535990,968356,119.062234,0.029312,27327275,17406682,0,0,30271,0,1,1 +1774079631.615560,29.36,4,3992.50,54.88,1518.28,2148.72,0.00,3516875890420.787598,3516875890424.873047,5535216,968190,119.312561,0.030034,27339514,17408764,0,0,30273,0,1,1 +1774079636.617114,28.75,4,3992.50,55.09,1509.96,2157.03,0.00,4.108000,0.031728,5535990,968375,118.926596,0.031160,27351661,17411150,0,0,30276,0,1,1 +1774079641.615388,5.23,4,3992.50,49.08,1745.30,1921.77,0.00,3519652185660.105957,3519652193240.537598,199,0,65.917984,0.016498,27358475,17412162,0,0,30278,0,1,1 +1774079646.616375,7.77,4,3992.50,49.26,1738.26,1928.82,0.00,1.831474,0.000195,238,2,6.042010,0.036346,27360623,17413857,0,0,30281,0,1,1 +1774079651.613996,16.40,4,3992.50,48.80,1756.50,1910.59,0.00,0.000000,0.000000,238,2,20.130254,0.087062,27366932,17418522,0,0,30283,0,1,1 +1774079656.613076,9.06,4,3992.50,49.87,1714.39,1952.66,0.00,3519084718359.459473,0.028130,237,176,14.098730,0.070787,27371766,17422159,0,0,30286,0,1,1 +1774079661.617857,0.55,4,3992.50,49.74,1719.54,1947.51,0.00,3515076251851.087891,3515076251852.596680,21,0,0.003862,0.007759,27371865,17422303,0,0,30288,0,1,1 +1774079666.615767,0.70,4,3992.50,49.19,1740.96,1926.07,0.00,62790.493189,55214.541078,5535229,969558,0.003867,0.007135,27371964,17422444,0,0,30291,0,1,1 +1774079671.615478,0.50,4,3992.50,48.34,1774.50,1892.55,0.00,3518640790974.906738,3518640798546.620605,237,176,0.002477,0.003217,27372038,17422524,0,0,30293,0,1,1 +1774079676.613324,0.75,4,3992.50,48.49,1768.39,1898.66,0.00,3519953090055.715820,3519953090057.226562,21,0,0.001716,0.002624,27372083,17422583,0,0,30296,0,1,1 +1774079681.613027,0.95,4,3992.50,48.50,1768.16,1898.90,0.00,1.538470,0.028322,237,176,0.001728,0.002548,27372127,17422639,0,0,30298,0,1,1 +1774079686.615531,0.55,4,3992.50,48.53,1767.19,1899.87,0.00,3516676561551.103516,3516676561552.564941,70,0,0.002458,0.003321,27372192,17422715,0,0,30301,0,1,1 +1774079691.613721,0.35,4,3992.50,48.52,1767.20,1899.86,0.00,0.000000,0.000000,70,0,0.001491,0.002333,27372229,17422764,0,0,30303,0,1,1 +1774079696.617225,0.50,4,3992.50,48.52,1767.21,1899.85,0.00,62724.346860,55153.310330,5536003,970033,0.001618,0.002458,27372265,17422814,0,0,30306,0,1,1 +1774079701.615402,18.90,4,3992.50,55.68,1485.09,2179.93,0.00,0.000000,0.016998,5536003,970073,3.238781,0.043991,27374872,17425836,0,0,30308,0,1,1 +1774079706.614786,2.13,4,3992.50,55.62,1481.16,2177.84,0.00,3518870430966.979492,3518870438542.279785,238,2,3.562216,0.049058,27378005,17429369,0,0,30311,0,1,1 +1774079711.613678,2.03,4,3992.50,55.16,1507.45,2159.57,0.00,3519216622455.922852,3519216622457.755371,199,0,3.457374,0.045129,27381214,17432681,0,0,30313,0,1,1 +1774079716.615142,1.92,4,3992.50,55.39,1498.47,2168.55,0.00,0.000000,0.000000,199,0,3.487276,0.044785,27384424,17435978,0,0,30316,0,1,1 +1774079721.616624,1.72,4,3992.50,55.55,1491.95,2175.09,0.00,3517394657327.466797,0.000000,21,0,3.458932,0.045757,27387644,17439291,0,0,30318,0,1,1 +1774079726.617269,2.08,4,3992.50,55.51,1493.66,2173.34,0.00,0.000000,0.000000,21,0,3.518244,0.047091,27390901,17442640,0,0,30321,0,1,1 +1774079731.617858,1.87,4,3992.50,55.23,1504.69,2162.32,0.00,2.006599,0.000195,238,2,3.431208,0.046313,27394158,17445950,0,0,30323,0,1,1 +1774079736.616041,1.93,4,3992.50,55.36,1499.64,2167.36,0.00,62785.064797,55212.283360,5535229,970132,3.497544,0.044125,27397390,17449225,0,0,30326,0,1,1 +1774079741.613144,2.03,4,3992.50,55.25,1503.67,2163.36,0.00,3520476554666.591797,3520476562243.016113,21,0,3.518133,0.044776,27400594,17452506,0,0,30328,0,1,1 +1774079746.616364,1.82,4,3992.50,55.51,1493.55,2173.46,0.00,2.005544,0.000195,238,2,3.450498,0.046467,27403939,17455856,0,0,30331,0,1,1 +1774079751.617259,2.13,4,3992.50,55.54,1492.43,2174.59,0.00,3517807922294.744141,0.028120,237,176,3.485545,0.045587,27407242,17459217,0,0,30333,0,1,1 +1774079756.617706,1.72,4,3992.50,55.46,1495.52,2171.48,0.00,0.000000,0.000000,237,176,3.484522,0.043394,27410492,17462426,0,0,30336,0,1,1 +1774079761.616924,2.44,4,3992.50,55.43,1496.77,2170.23,0.00,3518987332875.208008,3518987332876.718262,21,0,3.511283,0.047246,27413835,17465816,0,0,30338,0,1,1 +1774079766.615850,4.41,4,3992.50,55.57,1491.17,2175.86,0.00,62781.848211,55204.190812,5536003,970397,3.461993,0.046918,27417194,17469186,0,0,30341,0,1,1 +1774079771.617616,2.48,4,3992.50,55.85,1480.45,2186.58,0.00,3517194831397.666504,3517194838970.846680,199,0,3.491044,0.045837,27420517,17472520,0,0,30343,0,1,1 +1774079776.617209,1.98,4,3992.50,55.53,1492.90,2174.09,0.00,0.000000,0.000000,199,0,3.496306,0.043601,27423723,17475741,0,0,30346,0,1,1 +1774079781.617617,2.33,4,3992.50,55.46,1495.81,2171.22,0.00,62763.060279,55187.886422,5536003,970477,3.460482,0.045673,27427022,17479016,0,0,30348,0,1,1 +1774079786.613011,1.83,4,3992.50,55.28,1502.70,2164.32,0.00,3521681741234.345215,3521681748815.290039,238,2,3.484153,0.046994,27430410,17482395,0,0,30351,0,1,1 +1774079791.617436,1.82,4,3992.50,55.48,1494.80,2172.23,0.00,3515325809474.708984,3515325809476.666016,70,0,3.512906,0.043343,27433603,17485564,0,0,30353,0,1,1 +1774079796.613935,2.18,4,3992.50,55.27,1503.13,2163.86,0.00,1.491376,0.028340,237,176,3.458663,0.048114,27437031,17488978,0,0,30356,0,1,1 +1774079801.617041,2.07,4,3992.50,55.40,1498.12,2168.89,0.00,3516252622310.263672,3516252622311.725098,70,0,3.487521,0.043708,27440220,17492130,0,0,30358,0,1,1 +1774079806.617423,1.87,4,3992.50,55.65,1488.01,2179.01,0.00,62759.403962,55188.291945,5535229,970468,3.500221,0.044583,27443495,17495426,0,0,30361,0,1,1 +1774079811.612941,2.03,4,3992.50,55.36,1499.39,2167.62,0.00,3521594613483.999512,3521594621062.485352,70,0,3.456618,0.045258,27446831,17498754,0,0,30363,0,1,1 +1774079816.612946,2.08,4,3992.50,55.33,1500.91,2166.11,0.00,0.126953,0.000000,199,0,3.518698,0.045145,27450156,17502083,0,0,30366,0,1,1 +1774079821.613241,2.23,4,3992.50,55.62,1489.27,2177.75,0.00,62760.372869,55189.285674,5535229,970497,3.476519,0.049566,27453714,17505677,0,0,30368,0,1,1 +1774079826.616547,1.87,4,3992.50,55.33,1500.68,2166.30,0.00,3516112495770.055664,3516112503334.756348,238,2,3.460390,0.048029,27457199,17509170,0,0,30371,0,1,1 +1774079831.613947,1.87,4,3992.50,55.42,1497.30,2169.73,0.00,62794.897154,55221.263756,5535229,970516,3.496248,0.043368,27460441,17512407,0,0,30373,0,1,1 +1774079836.617332,1.97,4,3992.50,55.70,1486.11,2180.94,0.00,3516056203655.125977,3516056211221.703613,21,0,3.463393,0.047126,27463789,17515798,0,0,30376,0,1,1 +1774079841.617729,2.99,4,3992.50,55.62,1489.29,2177.69,0.00,0.048043,0.000000,70,0,3.521882,0.044676,27467135,17519103,0,0,30378,0,1,1 +1774079846.617815,1.92,4,3992.50,55.33,1500.53,2166.47,0.00,1.958755,0.000195,238,2,3.461277,0.045029,27470473,17522413,0,0,30381,0,1,1 +1774079851.617431,2.28,4,3992.50,55.62,1489.39,2177.55,0.00,3518707246438.889160,3518707246440.896484,21,0,3.504541,0.043404,27473704,17525652,0,0,30383,0,1,1 +1774079856.613451,1.67,4,3992.50,55.41,1497.43,2169.59,0.00,62818.364910,55236.588033,5536003,970750,3.503809,0.046671,27477090,17529012,0,0,30386,0,1,1 +1774079861.617103,1.98,4,3992.50,55.59,1490.73,2176.29,0.00,3515868907244.644531,3515868914814.856445,21,0,3.473065,0.047602,27480468,17532443,0,0,30388,0,1,1 +1774079866.616326,1.83,4,3992.50,55.31,1501.50,2165.52,0.00,1.538618,0.028325,237,176,3.486729,0.045883,27483878,17535853,0,0,30391,0,1,1 +1774079871.616399,1.82,4,3992.50,55.64,1488.67,2178.31,0.00,3518385797524.710938,3518385797526.221191,21,0,3.457622,0.042257,27487015,17538971,0,0,30393,0,1,1 +1774079876.617213,1.93,4,3992.50,55.36,1499.61,2167.39,0.00,62758.135177,55183.640240,5536003,970784,3.502871,0.044769,27490326,17542285,0,0,30396,0,1,1 +1774079881.617254,1.88,4,3992.50,55.41,1497.64,2169.34,0.00,3518408188209.627441,3518408195783.783691,237,176,3.469011,0.045835,27493650,17545590,0,0,30398,0,1,1 +1774079886.616434,1.87,4,3992.50,55.39,1498.12,2168.83,0.00,62777.115507,55201.678498,5536003,970806,3.533055,0.045929,27497038,17548972,0,0,30401,0,1,1 +1774079891.616417,1.87,4,3992.50,55.31,1501.71,2165.42,0.00,3518449698535.984863,3518449706111.717285,21,0,3.454592,0.044429,27500388,17552270,0,0,30403,0,1,1 +1774079896.613525,1.98,4,3992.50,55.41,1497.45,2169.57,0.00,2.007997,0.000195,238,2,3.493098,0.042993,27503547,17555400,0,0,30406,0,1,1 +1774079901.616056,1.77,4,3992.50,55.70,1486.37,2180.61,0.00,62730.498837,55164.732213,5535229,970665,3.466695,0.047363,27506950,17558804,0,0,30408,0,1,1 +1774079906.616411,2.03,4,3992.50,55.77,1483.44,2183.59,0.00,0.000000,0.006738,5535229,970676,3.527477,0.044150,27510217,17562053,0,0,30411,0,1,1 +1774079911.617173,1.62,4,3992.50,55.56,1491.64,2175.41,0.00,3517900809072.339355,3517900816642.780762,21,0,3.454088,0.047390,27513698,17565516,0,0,30413,0,1,1 +1774079916.615903,2.88,4,3992.50,55.49,1494.46,2172.55,0.00,0.175044,0.000000,199,0,3.498251,0.042149,27516815,17568640,0,0,30416,0,1,1 +1774079921.613482,2.03,4,3992.50,55.37,1499.05,2167.93,0.00,62794.493422,55219.436264,5535229,970717,3.459842,0.048417,27520268,17572060,0,0,30418,0,1,1 +1774079926.612972,1.72,4,3992.50,55.47,1495.19,2171.85,0.00,3518795781081.198730,3518795788653.533203,21,0,3.514614,0.042699,27523457,17575250,0,0,30421,0,1,1 +1774079931.613003,1.98,4,3992.50,55.63,1488.82,2178.22,0.00,0.174999,0.000000,199,0,3.489193,0.045285,27526819,17578583,0,0,30423,0,1,1 +1774079936.616044,2.03,4,3992.50,55.39,1498.41,2168.64,0.00,0.000000,0.000000,199,0,3.490100,0.047373,27530226,17582002,0,0,30426,0,1,1 +1774079941.613795,1.88,4,3992.50,55.36,1499.69,2167.30,0.00,62796.430956,55217.576854,5536003,970936,3.475870,0.044459,27533495,17585234,0,0,30428,0,1,1 +1774079946.617177,1.82,4,3992.50,55.53,1493.01,2174.02,0.00,3516059271796.341309,3516059279366.841797,21,0,3.477784,0.045310,27536731,17588490,0,0,30431,0,1,1 +1774079951.617416,1.82,4,3992.50,55.62,1489.30,2177.70,0.00,0.000000,0.000000,21,0,3.535608,0.044423,27540015,17591791,0,0,30433,0,1,1 +1774079956.617801,1.98,4,3992.50,55.42,1497.01,2169.99,0.00,2.006681,0.000195,238,2,3.463404,0.046961,27543454,17595215,0,0,30436,0,1,1 +1774079961.617457,1.62,4,3992.50,55.47,1495.33,2171.68,0.00,3518679343986.844238,0.028127,237,176,3.489165,0.041867,27546590,17598322,0,0,30438,0,1,1 +1774079966.613771,1.93,4,3992.50,55.36,1499.47,2167.55,0.00,3521033067976.416016,3521033067977.927246,21,0,3.443868,0.044517,27549902,17601575,0,0,30441,0,1,1 +1774079971.613230,1.77,4,3992.50,55.45,1496.12,2170.93,0.00,0.000000,0.000000,21,0,3.517046,0.042052,27553035,17604721,0,0,30443,0,1,1 +1774079976.616026,1.87,4,3992.50,55.44,1496.50,2170.54,0.00,0.000000,0.000000,21,0,3.488092,0.043930,27556278,17607929,0,0,30446,0,1,1 +1774079981.617890,2.03,4,3992.50,55.63,1488.89,2178.17,0.00,62740.848382,55172.196976,5535229,970847,3.465526,0.044121,27559518,17611172,0,0,30448,0,1,1 +1774079986.617019,1.97,4,3992.50,55.39,1498.40,2168.56,0.00,3519050485650.955078,3519050493223.749512,21,0,3.514374,0.046071,27562850,17614516,0,0,30451,0,1,1 +1774079991.616979,1.77,4,3992.50,55.58,1490.80,2176.24,0.00,62768.859749,55193.254218,5536003,971043,3.452066,0.043626,27566079,17617728,0,0,30453,0,1,1 +1774079996.616789,2.12,4,3992.50,55.79,1482.55,2184.47,0.00,3518571177772.969727,3518571177777.056152,5535229,970873,3.509107,0.044927,27569451,17621056,0,0,30456,0,1,1 +1774080001.617621,8.66,4,3992.50,55.43,1496.68,2170.12,0.00,3517851370396.445312,3517851377964.637695,238,2,3.479169,0.081595,27576295,17626640,0,0,30458,0,1,1 +1774080006.616044,3.96,4,3992.50,55.79,1482.46,2184.29,0.00,3519547683896.092773,3519547683898.052246,70,0,3.590214,0.085719,27583355,17632641,0,0,30461,0,1,1 +1774080011.615922,6.66,4,3992.50,56.28,1463.14,2203.62,0.00,62769.844445,55194.556739,5536008,971520,5.669361,0.132379,27594737,17642331,0,0,30463,0,1,1 +1774080016.617624,4.73,4,3992.50,56.87,1439.93,2226.75,0.00,3517239701858.512207,3517239709430.910645,199,0,6.970017,0.155908,27608110,17654332,0,0,30466,0,1,1 +1774080021.617563,3.56,4,3992.50,56.44,1457.05,2209.63,0.00,3518479992896.090820,0.000000,70,0,6.927379,0.163343,27621758,17666550,0,0,30468,0,1,1 +1774080026.616371,2.89,4,3992.50,56.16,1467.91,2198.74,0.00,3519276276844.643066,0.000000,21,0,4.746194,0.115575,27631281,17674967,0,0,30471,0,1,1 +1774080031.616144,4.78,4,3992.50,56.63,1449.54,2217.10,0.00,0.175008,0.000000,199,0,6.056622,0.142577,27643210,17685454,0,0,30473,0,1,1 +1774080036.612942,4.22,4,3992.50,56.39,1458.89,2207.78,0.00,3520691735942.421387,0.000000,70,0,7.018227,0.157770,27657050,17697358,0,0,30476,0,1,1 +1774080041.616418,3.81,4,3992.50,56.73,1445.59,2221.00,0.00,0.000000,0.000000,70,0,6.695140,0.147626,27669865,17708660,0,0,30478,0,1,1 +1774080046.617232,3.36,4,3992.50,56.24,1464.79,2201.98,0.00,0.000000,0.000000,70,0,6.278495,0.151656,27682354,17719970,0,0,30481,0,1,1 +1774080051.617159,3.66,4,3992.50,56.38,1459.34,2207.29,0.00,62769.228099,55194.714297,5536008,972478,3.971406,0.099336,27690443,17727063,0,0,30483,0,1,1 +1774080056.613614,3.67,4,3992.50,56.21,1465.85,2200.78,0.00,3520933732483.967285,3520933740063.793945,21,0,6.444053,0.147557,27703026,17737965,0,0,30486,0,1,1 +1774080061.617015,3.81,4,3992.50,56.69,1447.02,2219.64,0.00,62725.699782,55156.513340,5536008,972692,6.840389,0.160361,27716466,17750034,0,0,30488,0,1,1 +1774080066.617080,3.15,4,3992.50,56.36,1459.94,2206.68,0.00,3518391250813.541992,3518391258386.267578,237,176,6.697950,0.146514,27729181,17761423,0,0,30491,0,1,1 +1774080071.617020,3.25,4,3992.50,55.92,1477.23,2189.37,0.00,62763.475627,55194.858948,5535234,972700,4.349919,0.111813,27737977,17769456,0,0,30493,0,1,1 +1774080076.617721,4.41,4,3992.50,56.33,1461.29,2205.30,0.00,0.000000,0.018845,5535234,972736,4.500051,0.099582,27746860,17776861,0,0,30496,0,1,1 +1774080081.617144,3.81,4,3992.50,56.27,1463.74,2203.04,0.00,3518843521875.912598,3518843529445.293457,237,176,5.611159,0.134413,27757958,17786725,0,0,30498,0,1,1 +1774080086.617271,3.45,4,3992.50,56.56,1452.18,2214.41,0.00,62761.122596,55192.867401,5535234,972856,6.901978,0.160162,27771590,17798784,0,0,30501,0,1,1 +1774080091.617103,2.54,4,3992.50,56.14,1468.41,2198.18,0.00,3518555446286.448242,3518555453856.660645,21,0,5.260895,0.121952,27781745,17808076,0,0,30503,0,1,1 +1774080096.616877,2.08,4,3992.50,55.96,1475.45,2191.14,0.00,0.000000,0.000000,21,0,3.486050,0.087697,27788890,17814217,0,0,30506,0,1,1 +1774080101.617611,2.64,4,3992.50,55.77,1482.94,2183.63,0.00,0.000000,0.000000,21,0,3.537258,0.082291,27795817,17820209,0,0,30508,0,1,1 +1774080106.617340,2.13,4,3992.50,56.00,1473.96,2192.58,0.00,0.048049,0.000000,70,0,3.527093,0.083907,27802862,17826264,0,0,30511,0,1,1 +1774080111.615334,2.14,4,3992.50,56.22,1465.38,2201.21,0.00,62789.399034,55216.802828,5535234,973217,3.428909,0.273267,27810138,17832457,0,0,30513,0,1,1 +1774080116.616480,2.75,4,3992.50,56.37,1459.41,2207.16,0.00,3517630765850.771484,3517630773417.133301,237,176,3.553623,2.241197,27820282,17842202,0,0,30516,0,1,1 +1774080121.614528,3.16,4,3992.50,56.02,1473.28,2193.27,0.00,62787.219805,55219.061534,5535234,973347,3.375042,3.452988,27832570,17854300,0,0,30518,0,1,1 +1774080126.614842,3.47,4,3992.50,56.17,1467.40,2199.21,0.00,3518216537759.769043,3518216545324.500000,237,176,3.517525,3.504882,27844903,17866587,0,0,30521,0,1,1 +1774080131.617436,3.11,4,3992.50,55.93,1476.82,2189.74,0.00,3516612929351.786133,3516612929353.295410,21,0,3.469359,3.504904,27857064,17878865,0,0,30523,0,1,1 +1774080136.617391,3.47,4,3992.50,55.97,1475.09,2191.47,0.00,0.000000,0.000000,21,0,3.563065,3.507469,27869513,17891375,0,0,30526,0,1,1 +1774080141.617181,3.62,4,3992.50,56.13,1468.93,2197.66,0.00,62766.891756,55199.970702,5535234,973442,3.645159,3.503965,27881862,17903757,0,0,30528,0,1,1 +1774080146.613419,3.42,4,3992.50,56.04,1472.54,2193.94,0.00,3521086590540.914062,3521086598113.166992,70,0,3.449797,3.506948,27894266,17916257,0,0,30531,0,1,1 +1774080151.615674,3.26,4,3992.50,56.18,1466.79,2199.50,0.00,0.000000,0.000000,70,0,3.613501,3.506577,27906610,17928674,0,0,30533,0,1,1 +1774080156.613539,3.88,4,3992.50,56.18,1466.31,2199.70,0.00,1.490969,0.028332,237,176,3.609293,3.505537,27919058,17940973,0,0,30536,0,1,1 +1774080161.617077,3.27,4,3992.50,56.04,1471.81,2193.96,0.00,3515949236006.722168,3515949236008.230957,21,0,3.671397,3.507706,27931676,17953411,0,0,30538,0,1,1 +1774080166.613638,2.96,4,3992.50,55.97,1474.14,2191.47,0.00,62811.565061,55256.795131,5536008,973849,3.542737,3.507666,27944294,17965957,0,0,30541,0,1,1 +1774080171.613774,3.17,4,3992.50,55.88,1477.51,2187.84,0.00,3518341119464.776855,3518341119468.866699,5535234,973685,3.585538,3.507599,27956602,17978392,0,0,30543,0,1,1 +1774080176.613416,3.22,4,3992.50,56.23,1463.60,2201.57,0.00,0.000000,0.019533,5535234,973712,3.528992,3.507520,27968904,17990771,0,0,30546,0,1,1 +1774080181.617300,3.63,4,3992.50,56.19,1465.12,2199.80,0.00,3515706380956.083496,3515706388494.183105,237,176,3.455506,3.506368,27981061,18002991,0,0,30548,0,1,1 +1774080186.613104,3.16,4,3992.50,55.94,1474.72,2190.05,0.00,3521392579156.326172,3521392579157.662598,199,0,3.539448,3.508618,27993345,18015493,0,0,30551,0,1,1 +1774080191.618594,3.72,4,3992.50,56.00,1471.84,2192.62,0.00,3514577682430.219727,0.000000,21,0,3.450462,3.505877,28005467,18027742,0,0,30553,0,1,1 +1774080196.617408,3.62,4,3992.50,56.30,1459.97,2204.42,0.00,62783.266106,55252.418423,5536008,974088,3.568662,3.504464,28018158,18039980,0,0,30556,0,1,1 +1774080201.617377,3.32,4,3992.50,56.11,1467.34,2196.68,0.00,3518458989547.619629,3518458989551.709473,5535234,973922,3.702356,3.508346,28030653,18052514,0,0,30558,0,1,1 +1774080206.614381,3.43,4,3992.50,56.04,1469.69,2194.11,0.00,3520546501270.240723,3520546508799.723145,21,0,3.468015,3.509230,28042788,18065342,0,0,30561,0,1,1 +1774080211.617049,3.52,4,3992.50,56.07,1468.16,2195.36,0.00,62734.887882,55209.882010,5536008,974141,3.687682,3.508541,28055512,18077996,0,0,30563,0,1,1 +1774080216.614517,2.81,4,3992.50,56.16,1464.40,2198.91,0.00,3520219639603.412598,3520219647136.073242,199,0,3.564764,3.509508,28067682,18090563,0,0,30566,0,1,1 +1774080221.615481,3.11,4,3992.50,55.89,1474.85,2188.21,0.00,62751.989757,55249.114362,5535234,974104,3.633031,3.506573,28080486,18103092,0,0,30568,0,1,1 +1774080226.617279,3.11,4,3992.50,56.07,1467.70,2195.16,0.00,3517172112163.590820,3517172119665.340820,70,0,3.740892,3.507272,28092940,18115744,0,0,30571,0,1,1 +1774080231.616539,2.91,4,3992.50,56.00,1470.04,2192.56,0.00,3518958325791.284668,0.000000,21,0,3.625074,3.507640,28105542,18128247,0,0,30573,0,1,1 +1774080236.617394,2.65,4,3992.50,56.06,1467.45,2194.88,0.00,62753.518144,55250.332029,5535234,974153,3.392665,3.508652,28117584,18140553,0,0,30576,0,1,1 +1774080241.617241,3.42,4,3992.50,56.12,1464.80,2197.36,0.00,3518544871296.142090,3518544878800.841797,21,0,3.614410,3.505530,28129867,18152800,0,0,30578,0,1,1 +1774080246.612846,3.01,4,3992.50,55.87,1474.41,2187.58,0.00,0.048089,0.000000,70,0,3.681158,3.508065,28142627,18165370,0,0,30581,0,1,1 +1774080251.612913,2.81,4,3992.50,55.96,1471.07,2190.78,0.00,0.000000,0.000000,70,0,3.468227,3.509570,28154843,18177962,0,0,30583,0,1,1 +1774080256.617263,3.32,4,3992.50,56.29,1457.88,2203.96,0.00,3515378881986.507324,0.000000,21,0,3.619997,3.504958,28167234,18190301,0,0,30586,0,1,1 +1774080261.613559,3.32,4,3992.50,55.95,1471.10,2190.68,0.00,0.000000,0.000000,21,0,3.544954,3.508925,28179788,18202863,0,0,30588,0,1,1 +1774080266.613610,3.27,4,3992.50,55.95,1471.14,2190.58,0.00,0.174998,0.000000,199,0,3.489686,3.508315,28192115,18215596,0,0,30591,0,1,1 +1774080271.616600,66.78,4,3992.50,56.64,1445.43,2217.42,0.00,1.362564,0.028303,237,176,169.065554,102.475554,28217768,18238892,0,0,30593,0,1,1 +1774080276.615096,31.08,4,3992.50,55.02,1510.36,2154.13,0.00,3519496185161.568359,3519496185163.030762,70,0,118.794070,0.069346,28229441,18243991,0,0,30596,0,1,1 +1774080281.617190,30.28,4,3992.50,55.05,1513.36,2155.50,0.00,0.000000,0.000000,70,0,119.505720,0.060385,28240786,18248557,0,0,30598,0,1,1 +1774080286.617396,38.22,4,3992.50,55.05,1513.34,2155.47,0.00,3518292218653.504395,0.000000,21,0,149.394585,0.077563,28255597,18254450,0,0,30601,0,1,1 +1774080291.616729,18.50,4,3992.50,55.08,1512.32,2156.59,0.00,0.000000,0.000000,21,0,106.151532,0.055487,28265739,18258712,0,0,30603,0,1,1 +1774080296.612974,1.61,4,3992.50,48.76,1759.78,1909.12,0.00,0.000000,0.000000,21,0,15.239449,0.016785,28267384,18259494,0,0,30606,0,1,1 +1774080301.612971,11.16,4,3992.50,48.79,1757.20,1910.41,0.00,2.006837,0.000195,238,2,0.028673,40.069866,28269280,18264074,0,0,30608,0,1,1 +1774080306.613072,0.55,4,3992.50,48.79,1757.23,1910.39,0.00,62782.985966,55438.206410,5536175,976228,0.001831,0.005099,28269336,18264173,0,0,30611,0,1,1 +1774080311.613033,0.70,4,3992.50,48.78,1757.95,1909.67,0.00,3518464545084.037598,3518464552431.030273,21,0,0.002276,0.007000,28269405,18264299,0,0,30613,0,1,1 +1774080316.612941,0.55,4,3992.50,48.74,1759.34,1908.28,0.00,62783.313759,55440.352178,5535401,976056,0.002289,0.006366,28269475,18264422,0,0,30616,0,1,1 +1774080321.612954,0.65,4,3992.50,48.74,1759.34,1908.28,0.00,3518428419696.413086,3518428427037.711426,237,176,0.002297,0.006364,28269546,18264545,0,0,30618,0,1,1 +1774080326.617841,0.60,4,3992.50,48.74,1759.34,1908.28,0.00,62723.416953,55385.195276,5536175,976237,0.001842,0.005094,28269603,18264644,0,0,30621,0,1,1 +1774080331.616952,0.55,4,3992.50,48.76,1758.65,1908.98,0.00,3519062741143.433105,3519062748489.637695,238,2,0.002289,0.006357,28269673,18264766,0,0,30623,0,1,1 +1774080336.613025,0.50,4,3992.50,48.76,1758.54,1909.08,0.00,3521203156919.807129,3521203156921.640625,199,0,0.001832,0.005103,28269729,18264865,0,0,30626,0,1,1 +1774080341.614552,0.85,4,3992.50,48.74,1759.15,1908.47,0.00,1.362963,0.028312,237,176,0.002489,0.006603,28269815,18265003,0,0,30628,0,1,1 +1774080346.617066,0.65,4,3992.50,48.77,1758.18,1909.45,0.00,62749.066435,55413.516872,5535401,976108,0.002036,0.005297,28269885,18265117,0,0,30631,0,1,1 +1774080351.616534,0.50,4,3992.50,48.77,1758.20,1909.43,0.00,3518812107904.209961,3518812115245.740723,21,0,0.002289,0.006357,28269955,18265239,0,0,30633,0,1,1 +1774080356.617441,0.60,4,3992.50,48.80,1756.96,1910.67,0.00,0.048038,0.000000,70,0,0.002271,0.006360,28270024,18265362,0,0,30636,0,1,1 +1774080361.617560,1.30,4,3992.50,48.73,1759.69,1907.96,0.00,62784.730197,55440.137939,5536175,976300,0.003659,0.007059,28270116,18265500,0,0,30638,0,1,1 +1774080366.613252,40.96,4,3992.50,55.06,1511.83,2155.78,0.00,3521471297180.111816,3521471304531.211914,70,0,101.033785,0.040594,28280688,18268180,0,0,30641,0,1,1 +1774080371.616894,28.20,4,3992.50,55.50,1495.90,2172.88,0.00,3515876364782.016113,0.000000,21,0,119.884707,0.036642,28293150,18270780,0,0,30643,0,1,1 +1774080376.616500,28.64,4,3992.50,55.00,1515.46,2153.36,0.00,0.048051,0.000000,70,0,118.375824,0.025983,28305320,18272514,0,0,30646,0,1,1 +1774080381.617149,28.44,4,3992.50,55.15,1509.66,2159.21,0.00,3517980914797.367676,0.000000,21,0,120.166913,0.065585,28317889,18277325,0,0,30648,0,1,1 +1774080386.616954,28.81,4,3992.50,55.14,1509.82,2159.04,0.00,2.006914,0.000195,238,2,118.790477,0.078792,28330406,18283208,0,0,30651,0,1,1 +1774080391.617914,29.92,4,3992.50,55.13,1510.21,2158.62,0.00,3517761918900.270020,3517761918902.228516,70,0,119.562593,0.071846,28343055,18288483,0,0,30653,0,1,1 +1774080396.617468,29.57,4,3992.50,54.92,1518.44,2150.43,0.00,1.958964,0.000195,238,2,118.991050,0.064615,28355545,18293367,0,0,30656,0,1,1 +1774080401.617475,29.58,4,3992.50,54.92,1518.70,2150.12,0.00,62784.181616,55441.735033,5536175,976550,119.379738,0.060785,28367978,18297794,0,0,30658,0,1,1 +1774080406.617096,10.61,4,3992.50,50.31,1699.06,1969.89,0.00,3518703162169.220703,3518703169512.231934,238,2,89.337156,0.037090,28377148,18300497,0,0,30661,0,1,1 +1774080411.613038,1.46,4,3992.50,49.53,1729.72,1939.21,0.00,0.000000,0.000000,238,2,0.006330,0.006290,28377269,18300623,0,0,30663,0,1,1 +1774080416.616410,21.89,4,3992.50,50.30,1699.54,1969.35,0.00,3516066501747.142090,0.028106,237,176,24.284186,0.118376,28385346,18306597,0,0,30666,0,1,1 +1774080421.613025,10.45,4,3992.50,48.86,1755.91,1912.94,0.00,0.468774,3520820216897.199219,238,2,15.971012,0.073407,28390535,18310591,0,0,30668,0,1,1 +1774080426.614850,0.60,4,3992.50,48.79,1758.64,1910.19,0.00,3517153836025.002441,3517153836026.833984,199,0,0.002961,0.004596,28390607,18310684,0,0,30671,0,1,1 +1774080431.614035,0.55,4,3992.50,48.77,1759.47,1909.38,0.00,62796.479137,55452.203448,5536190,978102,0.003891,0.007124,28390708,18310824,0,0,30673,0,1,1 +1774080436.612971,0.45,4,3992.50,48.79,1758.53,1910.32,0.00,3519186180944.979004,3519186188289.747559,70,0,0.003910,0.007159,28390810,18310967,0,0,30676,0,1,1 +1774080441.617397,0.80,4,3992.50,48.82,1757.34,1911.50,0.00,1.957057,0.000195,238,2,0.003875,0.007586,28390910,18311109,0,0,30678,0,1,1 +1774080446.616451,0.55,4,3992.50,48.96,1751.98,1916.87,0.00,3519102768341.922852,3519102768343.930176,21,0,0.003452,0.006052,28390998,18311229,0,0,30681,0,1,1 +1774080451.617563,0.65,4,3992.50,48.97,1751.75,1917.10,0.00,62772.460540,55431.120211,5536190,978243,0.003890,0.007152,28391099,18311371,0,0,30683,0,1,1 +1774080456.617848,0.65,4,3992.50,48.96,1751.75,1917.09,0.00,3518236611693.143555,0.002930,5535416,978070,0.003987,0.007264,28391208,18311521,0,0,30686,0,1,1 +1774080461.616954,0.55,4,3992.50,48.96,1751.78,1917.07,0.00,4.110012,0.061632,5536190,978291,0.003408,0.005856,28391293,18311637,0,0,30688,0,1,1 +1774080466.617166,0.60,4,3992.50,48.97,1751.55,1917.30,0.00,0.000000,0.023046,5536190,978313,0.003953,0.007172,28391398,18311781,0,0,30691,0,1,1 +1774080471.616301,0.65,4,3992.50,48.99,1750.82,1918.02,0.00,3519046304273.175781,3519046311617.157227,199,0,0.003866,0.007124,28391497,18311921,0,0,30693,0,1,1 +1774080476.617659,0.50,4,3992.50,48.99,1750.66,1918.14,0.00,3517481770083.289062,0.000000,70,0,0.003877,0.007130,28391597,18312062,0,0,30696,0,1,1 +1774080481.613334,1.76,4,3992.50,49.01,1749.99,1918.87,0.00,3521483220735.126953,0.000000,21,0,0.003881,0.007103,28391697,18312200,0,0,30698,0,1,1 +1774080486.617013,0.45,4,3992.50,49.01,1749.99,1918.86,0.00,62736.151787,55402.857548,5535416,978240,0.003430,0.005886,28391784,18312319,0,0,30701,0,1,1 +1774080491.616822,0.70,4,3992.50,49.00,1750.57,1918.28,0.00,0.000000,0.042287,5535416,978292,0.003866,0.007123,28391883,18312459,0,0,30703,0,1,1 +1774080496.617632,0.50,4,3992.50,49.01,1749.85,1919.01,0.00,0.000000,0.027730,5535416,978329,0.003865,0.007131,28391982,18312600,0,0,30706,0,1,1 +1774080501.612952,0.60,4,3992.50,49.01,1749.86,1918.99,0.00,0.000000,0.001857,5535416,978335,0.003436,0.005861,28392069,18312716,0,0,30708,0,1,1 +1774080506.613031,0.55,4,3992.50,49.01,1749.87,1919.00,0.00,3518381889914.849121,3518381897251.841797,237,176,0.003865,0.007603,28392168,18312859,0,0,30711,0,1,1 +1774080511.615603,0.65,4,3992.50,49.03,1749.11,1919.75,0.00,62748.491286,55415.231315,5535416,978412,0.003884,0.007275,28392269,18313000,0,0,30713,0,1,1 +1774080516.614139,0.65,4,3992.50,48.84,1756.54,1912.32,0.00,4.110481,0.084400,5536190,978642,0.005351,0.008623,28392372,18313147,0,0,30716,0,1,1 +1774080521.613079,26.97,4,3992.50,49.07,1742.21,1921.06,0.00,0.000781,67.003072,5536191,979069,0.036390,108.583249,28395053,18324672,0,0,30718,0,1,1 +1774080526.613198,25.48,4,3992.50,48.90,1741.84,1914.61,0.00,3518353122196.866211,3518353129470.265137,238,2,0.017165,96.534768,28396237,18334791,0,0,30721,0,1,1 +1774080531.620436,4.01,4,3992.50,53.87,1548.23,2109.23,0.00,0.000000,0.000000,238,2,0.608092,0.012067,28396532,18335088,0,0,30723,0,1,1 +1774080536.614992,11.22,4,3992.50,49.26,1728.64,1928.82,0.00,62866.522639,55709.564825,5535526,979875,39.503203,0.025811,28400700,18336572,0,0,30726,0,1,1 +1774080541.615917,11.13,4,3992.50,48.83,1744.39,1911.82,0.00,3517786167793.835938,3517786174942.174805,237,176,0.022529,40.060110,28402153,18341122,0,0,30728,0,1,1 +1774080546.617072,0.60,4,3992.50,48.87,1742.68,1913.52,0.00,62784.046820,55672.093390,5535526,980240,0.001831,0.005098,28402209,18341221,0,0,30731,0,1,1 +1774080551.616402,0.60,4,3992.50,48.78,1746.38,1909.82,0.00,3518908190654.437012,3518908197768.487793,238,2,0.002277,0.006357,28402278,18341343,0,0,30733,0,1,1 +1774080556.616978,0.50,4,3992.50,48.77,1746.67,1909.53,0.00,0.000000,0.000000,238,2,0.002276,0.006353,28402347,18341465,0,0,30736,0,1,1 +1774080561.617128,0.60,4,3992.50,48.80,1745.45,1910.75,0.00,62800.292619,55683.408505,5536300,980494,0.002284,0.006364,28402417,18341588,0,0,30738,0,1,1 +1774080566.617433,0.50,4,3992.50,48.82,1744.72,1911.49,0.00,3518222713220.757324,3518222720337.918457,237,176,0.001856,0.005130,28402475,18341689,0,0,30741,0,1,1 +1774080571.613694,0.60,4,3992.50,48.82,1744.72,1911.48,0.00,3521070048165.765137,3521070048167.276367,21,0,0.002341,0.007067,28402549,18341819,0,0,30743,0,1,1 +1774080576.616460,0.60,4,3992.50,48.85,1743.63,1912.57,0.00,62769.476741,55658.545687,5536300,980533,0.002275,0.006362,28402618,18341942,0,0,30746,0,1,1 +1774080581.614027,0.60,4,3992.50,48.87,1742.90,1913.30,0.00,3520149391801.095703,3520149398919.421875,21,0,0.001958,0.005247,28402684,18342050,0,0,30748,0,1,1 +1774080586.616317,0.55,4,3992.50,48.87,1742.90,1913.30,0.00,0.174920,0.000000,199,0,0.002481,0.006551,28402767,18342187,0,0,30751,0,1,1 +1774080591.617289,0.60,4,3992.50,48.87,1742.91,1913.30,0.00,3517753016474.627930,0.000000,70,0,0.002314,0.006355,28402839,18342309,0,0,30753,0,1,1 +1774080596.616405,0.55,4,3992.50,48.79,1745.79,1910.42,0.00,62815.241791,55699.214109,5536300,980573,0.002289,0.006367,28402909,18342432,0,0,30756,0,1,1 +1774080601.616389,0.65,4,3992.50,48.80,1745.55,1910.66,0.00,3518448604962.603516,3518448612077.270020,199,0,0.002047,0.005710,28402971,18342541,0,0,30758,0,1,1 +1774080606.617480,38.96,4,3992.50,55.07,1510.49,2156.04,0.00,62786.228682,55677.376658,5535528,980604,80.304187,0.042067,28411503,18345278,0,0,30761,0,1,1 +1774080611.613033,31.42,4,3992.50,55.11,1510.09,2157.83,0.00,0.000000,0.012413,5535528,980618,119.688687,0.065210,28424069,18350101,0,0,30763,0,1,1 +1774080616.613749,29.59,4,3992.50,55.11,1510.29,2157.77,0.00,3517933211297.206543,3517933218406.753906,21,0,118.767996,0.080228,28436552,18356098,0,0,30766,0,1,1 +1774080621.612935,30.51,4,3992.50,54.97,1515.87,2152.07,0.00,62810.332200,55698.618354,5535528,980647,120.213264,0.090630,28449337,18362871,0,0,30768,0,1,1 +1774080626.616415,29.81,4,3992.50,55.00,1514.55,2153.39,0.00,3515990232763.070801,3515990239868.506348,199,0,118.908574,0.091151,28462042,18369824,0,0,30771,0,1,1 +1774080631.616857,30.15,4,3992.50,54.90,1518.57,2149.47,0.00,1.363258,0.028318,237,176,119.384956,0.097007,28474849,18377042,0,0,30773,0,1,1 +1774080636.616644,29.22,4,3992.50,55.00,1514.44,2153.55,0.00,3518587362486.203613,3518587362487.713867,21,0,119.393492,0.082272,28487532,18383153,0,0,30776,0,1,1 +1774080641.613578,28.99,4,3992.50,55.00,1514.57,2153.36,0.00,0.000000,0.000000,21,0,119.055692,0.072476,28500009,18388606,0,0,30778,0,1,1 +1774080646.617477,15.74,4,3992.50,50.39,1695.33,1972.70,0.00,62751.235797,55646.459614,5535534,980740,109.886569,0.071000,28511681,18394000,0,0,30781,0,1,1 +1774080651.617737,0.80,4,3992.50,49.64,1724.37,1943.66,0.00,3518254276373.379883,3518254283483.151855,199,0,0.005406,0.007781,28511809,18394160,0,0,30783,0,1,1 +1774080656.617487,18.82,4,3992.50,49.71,1721.62,1946.32,0.00,1.363447,0.028322,237,176,22.153018,0.110534,28519365,18399947,0,0,30786,0,1,1 +1774080661.617081,11.26,4,3992.50,48.74,1759.40,1908.46,0.00,3518722862322.395996,3518722862323.858398,70,0,18.104490,0.074782,28525133,18404142,0,0,30788,0,1,1 +1774080666.613035,1.81,4,3992.50,48.77,1758.50,1909.37,0.00,62855.166398,55735.647305,5536314,981837,0.014759,0.013938,28525437,18404439,0,0,30791,0,1,1 +1774080671.612970,1.86,4,3992.50,49.13,1744.16,1923.62,0.00,0.000000,0.147756,5536314,982029,0.010633,3.214922,28525980,18405176,0,0,30793,0,1,1 +1774080676.612940,27.54,4,3992.50,49.24,1733.36,1928.05,0.00,3518458401086.098633,3518458408199.751465,70,0,0.036407,110.361174,28528573,18416693,0,0,30796,0,1,1 +1774080681.617465,23.88,4,3992.50,48.95,1738.38,1916.47,0.00,0.126838,0.000000,199,0,0.018237,91.453067,28529740,18426395,0,0,30798,0,1,1 +1774080686.616812,1.15,4,3992.50,48.79,1744.50,1910.34,0.00,3518896215112.883301,0.000000,21,0,0.005747,0.008204,28529859,18426555,0,0,30801,0,1,1 +1774080691.616484,11.59,4,3992.50,49.10,1733.22,1922.43,0.00,62826.247706,55899.998107,5536432,983767,40.064855,0.025768,28534248,18428193,0,0,30803,0,1,1 +1774080696.616929,0.70,4,3992.50,48.98,1737.93,1917.77,0.00,3518124521295.904785,3518124528219.574219,237,176,0.006457,0.008404,28534401,18428371,0,0,30806,0,1,1 +1774080701.615000,2.86,4,3992.50,48.76,1746.45,1909.25,0.00,3519794931762.804199,3519794931764.314941,21,0,0.004974,0.010425,28534528,18428557,0,0,30808,0,1,1 +1774080706.617482,0.50,4,3992.50,48.80,1745.24,1910.48,0.00,1.537615,0.028306,237,176,0.004797,0.008417,28534630,18428703,0,0,30811,0,1,1 +1774080711.617341,0.55,4,3992.50,48.80,1745.24,1910.47,0.00,3518536813732.906738,3518536813734.416992,21,0,0.003428,0.005889,28534717,18428822,0,0,30813,0,1,1 +1774080716.617002,0.70,4,3992.50,48.81,1744.64,1911.07,0.00,1.538483,0.028322,237,176,0.004573,0.008086,28534822,18428967,0,0,30816,0,1,1 +1774080721.614686,0.55,4,3992.50,48.81,1744.66,1911.06,0.00,0.468674,3520068008518.593262,238,2,0.004499,0.007379,28534934,18429114,0,0,30818,0,1,1 +1774080726.612957,0.60,4,3992.50,48.74,1747.48,1908.25,0.00,3519654113100.436523,3519654113102.395996,70,0,0.003650,0.006488,28535027,18429242,0,0,30821,0,1,1 +1774080731.615917,0.60,4,3992.50,48.74,1747.48,1908.24,0.00,3516355083612.913086,0.000000,21,0,0.003691,0.006523,28535123,18429373,0,0,30823,0,1,1 +1774080736.616531,0.60,4,3992.50,48.74,1747.27,1908.46,0.00,0.000000,0.000000,21,0,0.003909,0.007157,28535225,18429516,0,0,30826,0,1,1 +1774080741.617078,0.55,4,3992.50,48.74,1747.27,1908.45,0.00,2.006616,0.000195,238,2,0.003886,0.007130,28535326,18429657,0,0,30828,0,1,1 +1774080746.617769,0.60,4,3992.50,48.74,1747.29,1908.43,0.00,62807.324577,55889.153924,5535658,984098,0.003971,0.007197,28535432,18429803,0,0,30831,0,1,1 +1774080751.613890,0.50,4,3992.50,48.74,1747.31,1908.42,0.00,0.000000,0.040950,5535658,984145,0.003423,0.005860,28535518,18429919,0,0,30833,0,1,1 +1774080756.617880,11.39,4,3992.50,49.47,1717.77,1936.99,0.00,3515631779483.492188,3515631786399.066406,21,0,0.027611,40.035686,28537327,18434447,0,0,30836,0,1,1 +1774080761.616873,0.85,4,3992.50,49.54,1714.92,1939.79,0.00,0.000000,0.000000,21,0,0.002922,0.006920,28537409,18434578,0,0,30838,0,1,1 +1774080766.613018,0.60,4,3992.50,49.08,1733.12,1921.63,0.00,62870.591372,55976.294616,5536432,984707,0.002291,0.006371,28537479,18434701,0,0,30841,0,1,1 +1774080771.613020,0.70,4,3992.50,49.05,1734.27,1920.43,0.00,3518436016643.117188,3518436023532.096680,21,0,0.002251,0.006356,28537546,18434823,0,0,30843,0,1,1 +1774080776.617396,0.60,4,3992.50,49.06,1734.08,1920.68,0.00,0.174847,0.000000,199,0,0.002066,0.006366,28537610,18434938,0,0,30846,0,1,1 +1774080781.617146,0.55,4,3992.50,49.06,1734.03,1920.72,0.00,3518613238769.856934,0.000000,21,0,0.002060,0.005735,28537673,18435049,0,0,30848,0,1,1 +1774080786.617075,0.50,4,3992.50,49.04,1734.86,1919.89,0.00,1.538401,0.028321,237,176,0.002289,0.006403,28537743,18435173,0,0,30851,0,1,1 +1774080791.612962,0.75,4,3992.50,49.10,1732.47,1922.28,0.00,3521333805249.853516,3521333805251.364746,21,0,0.002316,0.006392,28537815,18435297,0,0,30853,0,1,1 +1774080796.617045,0.50,4,3992.50,49.10,1732.47,1922.28,0.00,0.174857,0.000000,199,0,0.002337,0.006410,28537889,18435423,0,0,30856,0,1,1 +1774080801.612956,0.65,4,3992.50,49.10,1732.48,1922.28,0.00,3521317352799.748047,0.000000,21,0,0.001908,0.005199,28537951,18435528,0,0,30858,0,1,1 +1774080806.613003,0.65,4,3992.50,49.10,1732.27,1922.48,0.00,0.174998,0.000000,199,0,0.002465,0.006500,28538033,18435662,0,0,30861,0,1,1 +1774080811.612993,0.55,4,3992.50,49.10,1732.27,1922.48,0.00,1.831840,0.000195,238,2,0.002289,0.006356,28538103,18435784,0,0,30863,0,1,1 +1774080816.614939,0.65,4,3992.50,49.11,1732.03,1922.72,0.00,3517068218918.477051,0.028114,237,176,0.002301,0.006363,28538174,18435907,0,0,30866,0,1,1 +1774080821.612959,0.55,4,3992.50,48.99,1736.73,1918.04,0.00,0.000000,0.000000,237,176,0.001832,0.005091,28538230,18436005,0,0,30868,0,1,1 +1774080826.616488,32.19,4,3992.50,54.98,1511.60,2152.48,0.00,3515955746465.933105,3515955746467.267090,199,0,64.455696,0.036818,28545137,18438177,0,0,30871,0,1,1 +1774080831.616761,32.61,4,3992.50,55.02,1512.11,2154.07,0.00,3518245033895.485352,0.000000,21,0,119.970770,0.045961,28557753,18441488,0,0,30873,0,1,1 +1774080836.612931,28.96,4,3992.50,54.99,1513.39,2152.94,0.00,0.000000,0.000000,21,0,118.466898,0.052543,28570085,18445311,0,0,30876,0,1,1 +1774080841.614290,28.89,4,3992.50,54.97,1514.16,2152.17,0.00,2.006290,0.000195,238,2,120.144505,0.046494,28582617,18448645,0,0,30878,0,1,1 +1774080846.616900,29.58,4,3992.50,54.98,1513.78,2152.55,0.00,3516601493669.076660,3516601493671.082520,21,0,118.713168,0.049428,28595031,18452389,0,0,30881,0,1,1 +1774080851.616897,28.92,4,3992.50,55.05,1511.16,2155.16,0.00,62822.168507,55937.726950,5536432,985065,119.568233,0.030084,28607337,18454624,0,0,30883,0,1,1 +1774080856.616374,29.26,4,3992.50,55.22,1504.44,2161.91,0.00,3518805340480.494141,3518805347365.603027,70,0,119.384600,0.041118,28619643,18457665,0,0,30886,0,1,1 +1774080861.617036,29.40,4,3992.50,55.26,1502.75,2163.58,0.00,3517970774506.449219,0.000000,21,0,118.967699,0.079178,28632044,18463579,0,0,30888,0,1,1 +1774080866.612959,18.86,4,3992.50,54.88,1517.91,2148.50,0.00,0.000000,0.000000,21,0,119.689324,0.095949,28644678,18470803,0,0,30891,0,1,1 +1774080871.616465,0.70,4,3992.50,49.74,1718.79,1947.63,0.00,0.048013,0.000000,70,0,6.347149,0.008807,28645500,18471317,0,0,30893,0,1,1 +1774080876.617552,0.70,4,3992.50,49.05,1745.88,1920.54,0.00,0.126926,0.000000,199,0,0.002915,0.002871,28645587,18471411,0,0,30896,0,1,1 +1774080881.617397,7.48,4,3992.50,48.74,1758.08,1908.33,0.00,0.000000,0.000000,199,0,0.007008,0.004584,28645755,18471554,0,0,30898,0,1,1 +1774080886.613668,0.90,4,3992.50,48.76,1757.32,1909.08,0.00,0.000000,0.000000,199,0,0.009842,0.006190,28645946,18471741,0,0,30901,0,1,1 +1774080891.617697,2.55,4,3992.50,49.02,1747.16,1919.24,0.00,1.362281,0.028298,237,176,0.010622,0.007509,28646141,18471928,0,0,30903,0,1,1 +1774080896.613149,1.41,4,3992.50,49.04,1746.37,1920.02,0.00,62873.815893,55989.140316,5535673,985385,0.004377,0.004191,28646209,18472002,0,0,30906,0,1,1 +1774080901.612996,2.61,4,3992.50,49.73,1719.16,1947.23,0.00,3518544881799.730469,3518544888678.354492,237,176,0.028476,0.002607,28646332,18472054,0,0,30908,0,1,1 +1774080906.616626,2.96,4,3992.50,49.45,1730.40,1935.93,0.00,3515884715955.786621,3515884715957.295898,21,0,1.805453,0.058417,28649874,18475336,0,0,30911,0,1,1 +1774080911.616783,2.87,4,3992.50,49.38,1732.85,1933.47,0.00,1.538331,0.028319,237,176,1.862708,0.059055,28653636,18478757,0,0,30913,0,1,1 +1774080916.612953,2.83,4,3992.50,49.40,1732.40,1933.95,0.00,62868.884691,55981.579039,5536447,985988,2.322483,0.079045,28658301,18483339,0,0,30916,0,1,1 +1774080921.617613,2.56,4,3992.50,48.95,1749.87,1916.49,0.00,3515161580707.230469,3515161587582.854004,237,176,2.038034,0.066721,28662367,18487217,0,0,30918,0,1,1 +1774080926.616885,2.52,4,3992.50,48.68,1760.27,1906.09,0.00,62825.758258,55946.900536,5535673,985942,2.143830,0.069076,28666616,18491224,0,0,30921,0,1,1 +1774080931.617565,1.66,4,3992.50,48.44,1769.73,1896.63,0.00,0.000000,0.045599,5535673,986014,0.216142,0.013854,28667178,18491952,0,0,30923,0,1,1 +1774080936.617862,2.16,4,3992.50,48.54,1765.88,1900.47,0.00,3518227658124.654297,3518227665003.566406,21,0,0.006584,0.004129,28667301,18492062,0,0,30926,0,1,1 +1774080941.613516,3.17,4,3992.50,48.89,1752.29,1914.02,0.00,0.000000,0.000000,21,0,0.294257,0.007962,28667971,18492402,0,0,30928,0,1,1 +1774080946.617157,3.02,4,3992.50,48.98,1748.59,1917.71,0.00,1.537260,0.028300,237,176,2.083745,0.067494,28672061,18496278,0,0,30931,0,1,1 +1774080951.617400,2.62,4,3992.50,49.51,1727.91,1938.38,0.00,0.000000,0.000000,237,176,1.973698,0.066541,28675950,18500042,0,0,30933,0,1,1 +1774080956.616176,2.92,4,3992.50,49.44,1730.72,1935.59,0.00,3519298839520.576172,3519298839521.911621,199,0,2.049575,0.066380,28680064,18503843,0,0,30936,0,1,1 +1774080961.612964,2.37,4,3992.50,49.41,1731.70,1934.60,0.00,3520698991115.833008,0.000000,21,0,2.159917,0.066627,28684404,18507760,0,0,30938,0,1,1 +1774080966.612958,2.01,4,3992.50,49.32,1735.48,1930.82,0.00,1.538381,0.028320,237,176,1.833890,0.071519,28688063,18511796,0,0,30941,0,1,1 +1774080971.614530,2.32,4,3992.50,49.38,1733.07,1933.21,0.00,3517331999152.085938,3517331999153.595703,21,0,1.677667,0.051949,28691434,18514683,0,0,30943,0,1,1 +1774080976.616395,2.71,4,3992.50,49.27,1737.31,1928.97,0.00,1.537805,0.028310,237,176,1.823275,0.060648,28695113,18518198,0,0,30946,0,1,1 +1774080981.614934,1.41,4,3992.50,49.02,1747.16,1919.12,0.00,3519465582647.048828,3519465582648.559570,21,0,0.649214,0.027612,28696528,18519787,0,0,30948,0,1,1 +1774080986.616880,3.42,4,3992.50,49.43,1730.81,1935.45,0.00,0.048028,0.000000,70,0,1.469434,0.042151,28699531,18522127,0,0,30951,0,1,1 +1774080991.617422,2.73,4,3992.50,49.00,1747.63,1918.63,0.00,62815.410910,55933.607882,5536447,987205,2.347336,0.082971,28704236,18526870,0,0,30953,0,1,1 +1774080996.615403,2.37,4,3992.50,49.34,1734.62,1931.65,0.00,3519858352932.522461,3519858359817.725098,199,0,1.858871,0.059463,28708007,18530289,0,0,30956,0,1,1 +1774081001.617491,2.17,4,3992.50,49.33,1735.05,1931.20,0.00,3516968979843.058105,0.000000,70,0,2.065311,0.069838,28712243,18534351,0,0,30958,0,1,1 +1774081006.612939,2.47,4,3992.50,49.27,1737.41,1928.86,0.00,62875.355612,55990.807416,5535673,987214,2.276637,0.070668,28716754,18538500,0,0,30961,0,1,1 +1774081011.613214,1.26,4,3992.50,49.09,1744.14,1922.13,0.00,0.000000,0.046482,5535673,987271,0.357284,0.025218,28717578,18539848,0,0,30963,0,1,1 +1774081016.617483,1.50,4,3992.50,48.95,1749.66,1916.62,0.00,3515435901022.314941,3515435907893.221191,237,176,0.006098,0.004844,28717700,18539964,0,0,30966,0,1,1 +1774081021.615831,2.46,4,3992.50,49.34,1734.34,1931.90,0.00,0.000000,0.000000,237,176,0.087590,0.005038,28717984,18540117,0,0,30968,0,1,1 +1774081026.612958,2.48,4,3992.50,49.41,1731.56,1934.68,0.00,3520460194158.068359,3520460194159.579102,21,0,1.890181,0.060858,28721748,18543602,0,0,30971,0,1,1 +1774081031.614854,2.11,4,3992.50,49.43,1731.02,1935.24,0.00,0.000000,0.000000,21,0,2.179036,0.071729,28726124,18547756,0,0,30973,0,1,1 +1774081036.612989,0.75,4,3992.50,48.85,1753.57,1912.70,0.00,0.175065,0.000000,199,0,1.936735,0.064858,28729989,18551485,0,0,30976,0,1,1 +1774081041.616487,0.85,4,3992.50,48.81,1755.09,1911.17,0.00,62774.068213,55901.133439,5535673,987706,0.169059,0.012372,28730438,18552111,0,0,30978,0,1,1 +1774081046.613046,0.60,4,3992.50,48.81,1755.09,1911.17,0.00,3520859958244.793457,3520859965127.447754,21,0,0.002383,0.002233,28730495,18552167,0,0,30981,0,1,1 +1774081051.613112,1.00,4,3992.50,48.82,1754.67,1911.58,0.00,0.000000,0.000000,21,0,0.003080,0.003902,28730574,18552256,0,0,30983,0,1,1 +1774081056.617312,0.60,4,3992.50,49.02,1746.90,1919.34,0.00,0.000000,0.000000,21,0,0.002466,0.002756,28730621,18552309,0,0,30986,0,1,1 +1774081061.613037,0.80,4,3992.50,49.03,1746.70,1919.54,0.00,0.048088,0.000000,70,0,0.003992,0.029348,28730749,18552452,0,0,30988,0,1,1 +1774081066.616977,1.46,4,3992.50,48.96,1749.33,1916.82,0.00,62768.652240,55896.518809,5535673,988076,0.146440,5.047371,28739203,18562148,0,0,30991,0,1,1 +1774081071.614597,2.28,4,3992.50,48.92,1750.81,1915.30,0.00,4.111234,0.041426,5536447,988271,0.203704,7.406527,28750958,18576173,0,0,30993,0,1,1 +1774081076.612924,2.43,4,3992.50,49.11,1743.26,1922.84,0.00,0.000000,0.008890,5536447,988286,0.210458,7.585169,28763253,18590293,0,0,30996,0,1,1 +1774081081.612922,2.33,4,3992.50,49.19,1739.74,1925.86,0.00,3518438583884.889160,3518438583888.976562,5535673,988124,0.245935,9.036054,28777278,18607323,0,0,30998,0,1,1 +1774081086.617011,2.52,4,3992.50,48.98,1747.44,1917.79,0.00,3515562309753.605957,3515562316623.549316,238,2,0.170243,5.927171,28787278,18618665,0,0,31001,0,1,1 +1774081091.613139,2.78,4,3992.50,49.03,1745.37,1919.45,0.00,0.000000,0.000000,238,2,0.170331,6.105305,28797420,18630116,0,0,31003,0,1,1 +1774081096.616405,2.28,4,3992.50,49.31,1733.58,1930.73,0.00,3516140666218.211914,3516140666220.042969,199,0,0.230430,8.503832,28810675,18646166,0,0,31006,0,1,1 +1774081101.612965,2.78,4,3992.50,49.18,1738.12,1925.61,0.00,62865.337293,56017.056643,5536447,988582,0.195748,6.946846,28821977,18659395,0,0,31008,0,1,1 +1774081106.614924,2.42,4,3992.50,49.23,1735.64,1927.59,0.00,3517059323301.383301,3517059330140.442383,238,2,0.215242,8.236708,28834568,18674639,0,0,31011,0,1,1 +1774081111.616969,2.67,4,3992.50,49.27,1733.57,1929.00,0.00,3516998965215.696777,0.028114,237,176,0.226893,9.417641,28847643,18691026,0,0,31013,0,1,1 +1774081116.618030,2.42,4,3992.50,49.24,1734.17,1927.91,0.00,62803.297036,55971.499699,5535673,988524,0.229579,9.001729,28860728,18707718,0,0,31016,0,1,1 +1774081121.612928,2.88,4,3992.50,49.11,1738.66,1922.88,0.00,0.000000,36.048010,5535673,988724,0.172650,6.715008,28870851,18720211,0,0,31018,0,1,1 +1774081126.617037,2.98,4,3992.50,49.00,1742.52,1918.48,0.00,3515548065149.598145,3515548071942.713867,70,0,0.196155,7.258421,28882272,18733782,0,0,31021,0,1,1 +1774081131.617774,2.32,4,3992.50,49.43,1725.14,1935.32,0.00,62808.851969,56011.175330,5535673,988757,0.232979,8.871461,28895561,18750399,0,0,31023,0,1,1 +1774081136.617278,2.53,4,3992.50,49.27,1731.16,1928.86,0.00,3518786350422.454102,3518786357221.855957,21,0,0.161207,5.633725,28905046,18761184,0,0,31026,0,1,1 +1774081141.612935,2.53,4,3992.50,49.25,1731.25,1928.40,0.00,0.000000,0.000000,21,0,0.167558,5.970988,28915065,18772365,0,0,31028,0,1,1 +1774081146.616397,2.17,4,3992.50,49.88,1706.20,1952.99,0.00,0.000000,0.000000,21,0,0.232457,8.646992,28928431,18788621,0,0,31031,0,1,1 +1774081151.617474,2.72,4,3992.50,49.17,1733.65,1925.00,0.00,1.538048,0.028314,237,176,0.183128,6.359571,28938975,18800991,0,0,31033,0,1,1 +1774081156.616923,2.73,4,3992.50,49.19,1732.54,1925.71,0.00,3518824599800.853516,3518824599802.188477,199,0,0.157257,5.543585,28948459,18811401,0,0,31036,0,1,1 +1774081161.617134,2.58,4,3992.50,49.17,1732.84,1924.96,0.00,62819.443172,56060.620769,5536447,989309,0.204137,7.248361,28960429,18825021,0,0,31038,0,1,1 +1774081166.616028,2.62,4,3992.50,49.82,1706.51,1950.73,0.00,3519215854216.020996,3519215860975.289062,237,176,0.222015,8.327915,28973008,18840849,0,0,31041,0,1,1 +1774081171.616874,2.37,4,3992.50,49.51,1718.56,1938.25,0.00,3517841608747.606445,3517841608748.941406,199,0,0.174243,6.125255,28983218,18852424,0,0,31043,0,1,1 +1774081176.615729,3.03,4,3992.50,49.53,1717.19,1939.20,0.00,3519243329575.491699,0.000000,21,0,0.186889,6.671035,28994261,18864906,0,0,31046,0,1,1 +1774081181.612944,2.68,4,3992.50,49.80,1706.12,1949.74,0.00,2.007954,0.000195,238,2,0.237955,8.939145,29007782,18881691,0,0,31048,0,1,1 +1774081186.614514,2.47,4,3992.50,49.34,1723.53,1931.92,0.00,0.000000,0.000000,238,2,0.138212,4.775519,29015983,18890961,0,0,31051,0,1,1 +1774081191.612924,2.27,4,3992.50,49.49,1717.62,1937.48,0.00,0.000000,0.000000,238,2,0.131724,4.660194,29024076,18899763,0,0,31053,0,1,1 +1774081196.615800,2.78,4,3992.50,49.71,1708.48,1946.17,0.00,3516414862431.170898,3516414862433.176758,21,0,0.206311,7.433326,29036107,18913755,0,0,31056,0,1,1 +1774081201.617038,2.42,4,3992.50,49.49,1716.50,1937.64,0.00,0.174957,0.000000,199,0,0.189443,6.789570,29046877,18926911,0,0,31058,0,1,1 +1774081206.617075,2.43,4,3992.50,49.44,1716.12,1935.74,0.00,3518410834171.778320,0.000000,70,0,0.152915,5.433909,29056076,18937141,0,0,31061,0,1,1 +1774081211.614894,2.93,4,3992.50,49.17,1728.20,1925.19,0.00,0.127009,0.000000,199,0,0.160347,5.701477,29065618,18947869,0,0,31063,0,1,1 +1774081216.616939,1.31,4,3992.50,48.75,1744.69,1908.62,0.00,0.000000,0.000000,199,0,0.041303,1.417366,29067996,18950601,0,0,31066,0,1,1 +1774081221.617380,1.40,4,3992.50,48.31,1763.34,1891.61,0.00,62816.555066,56137.963776,5536448,990034,0.001888,0.003840,29068067,18950679,0,0,31068,0,1,1 +1774081226.617054,0.70,4,3992.50,48.38,1760.68,1894.28,0.00,3518667214820.677246,3518667221500.294434,199,0,0.003004,0.002393,29068118,18950740,0,0,31071,0,1,1 +1774081231.613159,0.50,4,3992.50,48.61,1751.61,1903.30,0.00,0.000000,0.000000,199,0,0.000619,0.001888,29068144,18950778,0,0,31073,0,1,1 +1774081236.613058,0.75,4,3992.50,48.72,1747.51,1907.44,0.00,1.831873,0.000195,238,2,0.001451,0.002034,29068167,18950803,0,0,31076,0,1,1 +1774081241.613033,0.85,4,3992.50,48.74,1746.52,1908.43,0.00,62820.584399,56146.572325,5536448,990249,0.001790,0.001971,29068224,18950854,0,0,31078,0,1,1 +1774081246.613671,13.63,4,3992.50,54.37,1527.72,2128.73,0.00,3517988034783.399414,3517988041458.357422,199,0,3.058371,0.072573,29074078,18954994,0,0,31081,0,1,1 +1774081251.614400,0.50,4,3992.50,54.37,1527.76,2128.70,0.00,3517923992319.896484,0.000000,21,0,4.554574,0.131806,29082968,18962485,0,0,31083,0,1,1 +1774081256.617043,0.50,4,3992.50,54.42,1525.76,2130.69,0.00,0.048021,0.000000,70,0,4.982660,0.130952,29092360,18970051,0,0,31086,0,1,1 +1774081261.617114,0.45,4,3992.50,54.44,1524.86,2131.59,0.00,0.000000,0.000000,70,0,6.507876,0.172630,29104668,18979790,0,0,31088,0,1,1 +1774081266.616926,0.50,4,3992.50,54.63,1517.43,2138.98,0.00,3518569831520.956055,0.000000,21,0,5.461649,0.165569,29115193,18989088,0,0,31091,0,1,1 +1774081271.613307,0.45,4,3992.50,54.70,1514.59,2141.82,0.00,0.175127,0.000000,199,0,5.177854,0.149688,29124981,18997591,0,0,31093,0,1,1 +1774081276.617218,0.60,4,3992.50,54.74,1513.60,2143.06,0.00,1.830404,0.000195,238,2,6.708061,0.183423,29137685,19007963,0,0,31096,0,1,1 +1774081281.612984,0.55,4,3992.50,49.40,1722.50,1934.16,0.00,3521419638621.359375,3521419638623.368164,21,0,4.062716,0.140688,29145785,19015822,0,0,31098,0,1,1 +1774081286.617159,0.60,4,3992.50,49.23,1729.16,1927.50,0.00,0.048007,0.000000,70,0,1.198899,0.045357,29148166,19018442,0,0,31101,0,1,1 +1774081291.612959,0.50,4,3992.50,49.23,1729.16,1927.50,0.00,62892.820129,56193.749842,5536560,990414,0.245207,0.011097,29148686,19019009,0,0,31103,0,1,1 +1774081296.612951,0.90,4,3992.50,49.15,1732.29,1924.38,0.00,3518442758167.008789,3518442758171.094727,5535786,990255,0.003121,0.002969,29148759,19019086,0,0,31106,0,1,1 +1774081301.617005,0.85,4,3992.50,49.01,1737.88,1918.79,0.00,3515587046972.172852,3515587053656.159180,21,0,0.001740,0.003180,29148806,19019155,0,0,31108,0,1,1 +1774081306.617127,0.95,4,3992.50,48.98,1739.05,1917.62,0.00,0.174996,0.000000,199,0,0.003369,0.004702,29148890,19019243,0,0,31111,0,1,1 +1774081311.616930,0.70,4,3992.50,48.99,1738.61,1918.05,0.00,62842.341537,56148.865063,5536560,990578,0.003133,0.004288,29148952,19019324,0,0,31113,0,1,1 +1774081316.617839,0.75,4,3992.50,49.00,1737.99,1918.60,0.00,3517797957934.381348,3517797964625.043457,237,176,0.061944,2.006034,29152537,19023172,0,0,31116,0,1,1 +1774081321.617478,2.48,4,3992.50,49.01,1737.68,1918.94,0.00,3518691422373.552246,3518691422374.887207,199,0,0.189169,7.294416,29163520,19036821,0,0,31118,0,1,1 +1774081326.617812,2.78,4,3992.50,48.93,1740.67,1915.90,0.00,3518201944608.067383,0.000000,21,0,0.226971,8.797526,29176715,19053106,0,0,31121,0,1,1 +1774081331.612955,2.68,4,3992.50,49.10,1733.75,1922.34,0.00,0.175170,0.000000,199,0,0.221616,8.541218,29189506,19068839,0,0,31123,0,1,1 +1774081336.613052,2.73,4,3992.50,49.20,1729.41,1926.17,0.00,62838.652348,56154.933187,5536560,990782,0.243291,9.042609,29203481,19085786,0,0,31126,0,1,1 +1774081341.617543,2.37,4,3992.50,48.78,1745.23,1909.93,0.00,3515279497021.045410,3515279503699.069824,21,0,0.148482,5.242801,29212214,19095739,0,0,31128,0,1,1 +1774081346.616842,0.65,4,3992.50,48.60,1752.25,1902.94,0.00,0.048054,0.000000,70,0,0.011610,0.355374,29212899,19096480,0,0,31131,0,1,1 +1774081351.617914,1.40,4,3992.50,48.51,1757.14,1899.17,0.00,62822.411826,56144.013782,5535786,990660,0.001797,0.003826,29212962,19096557,0,0,31133,0,1,1 +1774081356.617109,0.45,4,3992.50,48.54,1755.94,1900.37,0.00,3519004060418.609863,3519004067097.557617,238,2,0.000605,0.001416,29212987,19096592,0,0,31136,0,1,1 +1774081361.613100,0.40,4,3992.50,48.54,1755.94,1900.37,0.00,3521260497095.014648,3521260497096.848145,199,0,0.000570,0.001313,29213009,19096620,0,0,31138,0,1,1 +1774081366.615160,0.45,4,3992.50,48.54,1755.94,1900.37,0.00,3516987745689.418945,0.000000,21,0,0.000563,0.001992,29213030,19096655,0,0,31141,0,1,1 +1774081371.616962,0.45,4,3992.50,48.54,1755.94,1900.37,0.00,0.000000,0.000000,21,0,0.000663,0.001379,29213059,19096688,0,0,31143,0,1,1 +1774081376.612953,0.50,4,3992.50,48.56,1755.21,1901.09,0.00,0.000000,0.000000,21,0,0.000696,0.001705,29213088,19096722,0,0,31146,0,1,1 +1774081381.613031,0.40,4,3992.50,48.56,1755.21,1901.09,0.00,62839.071256,56186.219034,5536560,991140,0.000568,0.001337,29213110,19096752,0,0,31148,0,1,1 +1774081386.613034,0.40,4,3992.50,48.56,1755.21,1901.09,0.00,3518434823174.025879,3518434829825.466309,237,176,0.000711,0.001694,29213134,19096786,0,0,31151,0,1,1 +1774081391.616475,0.55,4,3992.50,48.56,1755.21,1901.09,0.00,62795.283381,56148.421105,5536560,991150,0.000577,0.001324,29213156,19096815,0,0,31153,0,1,1 +1774081396.617535,0.45,4,3992.50,48.56,1755.22,1901.09,0.00,0.000000,0.001562,5536560,991151,0.000794,0.001508,29213194,19096858,0,0,31156,0,1,1 +1774081401.617293,0.40,4,3992.50,48.56,1755.22,1901.09,0.00,3518607457404.638672,3518607457408.725098,5535786,990979,0.000583,0.001325,29213217,19096887,0,0,31158,0,1,1 +1774081406.617211,0.50,4,3992.50,48.56,1755.22,1901.08,0.00,3518494545361.888672,3518494552008.849609,238,2,0.000614,0.001672,29213240,19096919,0,0,31161,0,1,1 +1774081411.612977,1.81,4,3992.50,48.36,1763.00,1893.51,0.00,3521419326359.139648,3521419326361.148438,21,0,0.001612,0.001720,29213285,19096965,0,0,31163,0,1,1 +1774081416.617241,1.10,4,3992.50,48.59,1754.18,1902.32,0.00,0.048006,0.000000,70,0,0.003479,0.004559,29213344,19097036,0,0,31166,0,1,1 +1774081421.619394,2.51,4,3992.50,54.38,1531.38,2129.03,0.00,1.489690,0.028308,237,176,0.007326,0.002672,29213427,19097104,0,0,31168,0,1,1 +1774081426.616898,15.33,4,3992.50,56.25,1459.52,2202.36,0.00,3520194487857.883789,3520194487859.395020,21,0,4.733670,0.108121,29222386,19103140,0,0,31171,0,1,1 +1774081431.616503,2.49,4,3992.50,56.24,1460.54,2201.78,0.00,2.006995,0.000195,238,2,8.121526,0.215060,29237595,19115489,0,0,31173,0,1,1 +1774081436.615892,2.94,4,3992.50,56.35,1456.70,2206.29,0.00,62845.713710,56194.190361,5536560,991389,9.165837,0.238494,29254562,19129245,0,0,31176,0,1,1 +1774081441.612992,3.10,4,3992.50,56.57,1448.39,2215.04,0.00,3520479645250.011719,3520479651906.591309,21,0,9.560155,0.259609,29272591,19144017,0,0,31178,0,1,1 +1774081446.613419,2.19,4,3992.50,56.37,1456.70,2207.20,0.00,0.000000,0.000000,21,0,5.777057,0.175034,29283750,19154136,0,0,31181,0,1,1 +1774081451.617029,2.74,4,3992.50,56.49,1452.54,2211.60,0.00,0.048012,0.000000,70,0,5.782886,0.163349,29294644,19163903,0,0,31183,0,1,1 +1774081456.615137,2.44,4,3992.50,56.33,1459.25,2205.34,0.00,62863.774169,56208.634077,5536560,991434,8.619534,0.224852,29310790,19176899,0,0,31186,0,1,1 +1774081461.615480,2.48,4,3992.50,56.39,1457.38,2207.62,0.00,0.000000,0.005761,5536560,991444,6.527130,0.197757,29323481,19188182,0,0,31188,0,1,1 +1774081466.617599,2.08,4,3992.50,56.43,1455.50,2209.46,0.00,3516946322344.564941,3516946328994.411621,21,0,6.062584,0.171853,29334874,19198412,0,0,31191,0,1,1 +1774081471.617388,30.80,4,3992.50,56.04,1473.47,2194.12,0.00,0.000000,0.000000,21,0,122.544550,0.068290,29351291,19203246,0,0,31193,0,1,1 +1774081476.616497,34.65,4,3992.50,56.31,1463.24,2204.66,0.00,62851.246662,56197.430081,5536560,991483,134.287080,0.036874,29364336,19205878,0,0,31196,0,1,1 +1774081481.616518,32.32,4,3992.50,55.86,1480.69,2187.05,0.00,3518422072419.314453,3518422079071.916504,21,0,131.516773,0.032814,29376687,19208273,0,0,31198,0,1,1 +1774081486.612941,32.32,4,3992.50,56.05,1473.39,2194.50,0.00,0.175125,0.000000,199,0,124.089541,0.038892,29388353,19210912,0,0,31201,0,1,1 +1774081491.615542,31.04,4,3992.50,56.04,1473.70,2194.17,0.00,62803.088330,56158.286167,5535786,991349,122.558899,0.036036,29399875,19213478,0,0,31203,0,1,1 +1774081496.617381,26.72,4,3992.50,55.97,1476.52,2191.36,0.00,0.000000,0.005369,5535786,991361,120.791556,0.036330,29411267,19216034,0,0,31206,0,1,1 +1774081501.616548,33.03,4,3992.50,55.84,1481.50,2186.36,0.00,3519023879936.815918,3519023886586.353027,21,0,120.425840,0.033197,29422681,19218572,0,0,31208,0,1,1 +1774081506.617265,9.71,4,3992.50,48.82,1756.44,1911.51,0.00,0.000000,0.000000,21,0,87.747365,0.027682,29430921,19220457,0,0,31211,0,1,1 +1774081511.617377,14.98,4,3992.50,49.54,1728.49,1939.44,0.00,2.006791,0.000195,238,2,14.128488,0.078667,29435881,19224232,0,0,31213,0,1,1 +1774081516.617605,16.37,4,3992.50,48.80,1757.25,1910.62,0.00,3518276522861.034668,0.028124,237,176,26.135898,0.115096,29444380,19230595,0,0,31216,0,1,1 +1774081521.616739,1.05,4,3992.50,49.44,1732.18,1935.71,0.00,3519047208266.821777,3519047208268.157227,199,0,0.003879,0.007111,29444480,19230734,0,0,31218,0,1,1 +1774081526.613576,0.60,4,3992.50,49.07,1746.51,1921.39,0.00,0.000000,0.000000,199,0,0.003880,0.007137,29444580,19230875,0,0,31221,0,1,1 +1774081531.615053,0.55,4,3992.50,49.07,1746.73,1921.16,0.00,3517397835409.698730,0.000000,70,0,0.003427,0.005849,29444667,19230991,0,0,31223,0,1,1 +1774081536.615506,0.60,4,3992.50,49.09,1746.00,1921.89,0.00,0.000000,0.000000,70,0,0.003246,0.006894,29444754,19231125,0,0,31226,0,1,1 +1774081541.612943,20.54,4,3992.50,49.81,1709.79,1950.33,0.00,1.959794,0.000195,238,2,0.034781,84.574811,29447144,19240403,0,0,31228,0,1,1 +1774081546.616420,29.71,4,3992.50,50.20,1690.72,1965.48,0.00,3515992193536.933105,0.028105,237,176,0.036027,118.085708,29449789,19252651,0,0,31231,0,1,1 +1774081551.617072,2.41,4,3992.50,49.23,1728.52,1927.46,0.00,3517978270322.858887,3517978270324.320801,70,0,0.007376,2.411316,29449974,19253081,0,0,31233,0,1,1 +1774081556.614409,14.81,4,3992.50,49.30,1726.79,1930.36,0.00,1.959833,0.000195,238,2,40.084017,0.030594,29454372,19255074,0,0,31236,0,1,1 +1774081561.613023,1.00,4,3992.50,49.31,1726.58,1930.57,0.00,3519412619719.808105,3519412619721.815918,21,0,0.006104,0.007639,29454508,19255231,0,0,31238,0,1,1 +1774081566.616945,0.95,4,3992.50,49.31,1726.62,1930.53,0.00,0.000000,0.000000,21,0,0.004576,0.010002,29454623,19255400,0,0,31241,0,1,1 +1774081571.616232,0.60,4,3992.50,49.15,1732.86,1924.29,0.00,0.048054,0.000000,70,0,0.003421,0.005843,29454709,19255515,0,0,31243,0,1,1 +1774081576.614135,0.65,4,3992.50,49.12,1733.86,1923.29,0.00,1.490957,0.028332,237,176,0.003880,0.007135,29454809,19255656,0,0,31246,0,1,1 +1774081581.614248,0.75,4,3992.50,49.12,1733.88,1923.27,0.00,62850.892391,56393.239917,5535913,994681,0.003886,0.007118,29454910,19255796,0,0,31248,0,1,1 +1774081586.615474,0.60,4,3992.50,49.15,1732.66,1924.48,0.00,3517574606484.691895,3517574612942.417480,21,0,0.003902,0.007162,29455012,19255939,0,0,31251,0,1,1 +1774081591.617127,0.45,4,3992.50,49.15,1732.68,1924.46,0.00,1.537871,0.028311,237,176,0.003419,0.005841,29455098,19256054,0,0,31253,0,1,1 +1774081596.617384,0.75,4,3992.50,49.16,1732.48,1924.67,0.00,3518256436644.039551,3518256436645.549316,21,0,0.004539,0.008292,29455214,19256221,0,0,31256,0,1,1 +1774081601.612966,0.60,4,3992.50,49.12,1734.17,1922.98,0.00,0.000000,0.000000,21,0,0.003881,0.007129,29455314,19256361,0,0,31258,0,1,1 +1774081606.615226,0.70,4,3992.50,49.15,1732.96,1924.19,0.00,62829.568287,56369.310304,5536687,995026,0.004073,0.007661,29455420,19256513,0,0,31261,0,1,1 +1774081611.613037,0.60,4,3992.50,49.11,1734.20,1922.92,0.00,0.000000,0.034195,5536687,995067,0.004619,0.007108,29455520,19256647,0,0,31263,0,1,1 +1774081616.612970,0.80,4,3992.50,49.14,1733.01,1924.12,0.00,0.000000,0.053516,5536687,995112,0.003272,0.006895,29455609,19256781,0,0,31266,0,1,1 +1774081621.617602,11.30,4,3992.50,49.05,1735.49,1920.46,0.00,3515181060524.421875,3515181066981.355957,199,0,0.029805,40.028937,29457676,19261241,0,0,31268,0,1,1 +1774081626.617581,0.75,4,3992.50,49.09,1733.82,1922.14,0.00,1.831843,0.000195,238,2,0.002856,0.007273,29457759,19261382,0,0,31271,0,1,1 +1774081631.612949,0.70,4,3992.50,49.08,1734.35,1921.61,0.00,3521699738988.824707,3521699738990.658691,199,0,0.002291,0.007006,29457829,19261508,0,0,31273,0,1,1 +1774081636.617540,0.55,4,3992.50,48.92,1740.77,1915.20,0.00,1.830155,0.000195,238,2,0.002287,0.006360,29457899,19261631,0,0,31276,0,1,1 +1774081641.617404,0.60,4,3992.50,48.94,1740.03,1915.93,0.00,3518532937607.001465,3518532937608.833496,199,0,0.002060,0.005710,29457962,19261740,0,0,31278,0,1,1 +1774081646.613262,0.55,4,3992.50,48.94,1739.79,1916.16,0.00,1.364509,0.028344,237,176,0.002070,0.005758,29458026,19261853,0,0,31281,0,1,1 +1774081651.617682,0.65,4,3992.50,48.95,1739.55,1916.41,0.00,3515329830968.379395,3515329830969.888184,21,0,0.002287,0.006350,29458096,19261975,0,0,31283,0,1,1 +1774081656.613330,0.55,4,3992.50,48.95,1739.55,1916.40,0.00,62912.719376,56484.269906,5536687,995510,0.002341,0.006434,29458170,19262102,0,0,31286,0,1,1 +1774081661.612973,0.55,4,3992.50,48.95,1739.56,1916.40,0.00,3518688545061.975586,3518688551485.289551,21,0,0.002327,0.006394,29458243,19262226,0,0,31288,0,1,1 +1774081666.616963,0.60,4,3992.50,48.95,1739.32,1916.64,0.00,62807.845786,56390.122494,5536687,995517,0.001955,0.005232,29458308,19262335,0,0,31291,0,1,1 +1774081671.616491,0.60,4,3992.50,48.97,1738.59,1917.37,0.00,3518768980719.120605,3518768987142.395996,199,0,0.002370,0.006432,29458383,19262463,0,0,31293,0,1,1 +1774081676.613069,0.50,4,3992.50,48.91,1740.98,1914.98,0.00,62896.730052,56473.812382,5535913,995390,0.002290,0.006370,29458453,19262586,0,0,31296,0,1,1 +1774081681.613152,0.75,4,3992.50,48.95,1739.53,1916.43,0.00,3518378505918.461426,3518378512337.051270,21,0,0.002297,0.006364,29458524,19262709,0,0,31298,0,1,1 +1774081686.612950,0.50,4,3992.50,48.95,1739.54,1916.42,0.00,0.175007,0.000000,199,0,0.001831,0.005099,29458580,19262808,0,0,31301,0,1,1 +1774081691.617047,34.27,4,3992.50,54.98,1512.51,2152.77,0.00,3515556551298.221680,0.000000,21,0,79.250511,0.047544,29466824,19265962,0,0,31303,0,1,1 +1774081696.613163,33.89,4,3992.50,55.08,1510.59,2156.66,0.00,1.539575,0.028342,237,176,122.467209,0.031798,29479513,19268085,0,0,31306,0,1,1 +1774081701.616842,30.33,4,3992.50,55.18,1506.79,2160.54,0.00,62810.208937,56393.802343,5536687,995727,120.681368,0.031915,29492059,19270268,0,0,31308,0,1,1 +1774081706.613311,30.17,4,3992.50,55.07,1511.13,2156.12,0.00,3520923599032.775391,3520923605459.952637,21,0,120.250731,0.023978,29504401,19271981,0,0,31311,0,1,1 +1774081711.613040,29.95,4,3992.50,55.28,1502.86,2164.36,0.00,2.006945,0.000195,238,2,120.174249,0.024994,29516845,19273756,0,0,31313,0,1,1 +1774081716.613142,30.40,4,3992.50,55.11,1509.46,2157.83,0.00,62854.686515,56434.274755,5536687,995769,120.163873,0.041334,29529088,19276686,0,0,31316,0,1,1 +1774081721.617817,30.12,4,3992.50,55.06,1511.41,2155.81,0.00,3515150424136.435059,3515150430552.809082,199,0,119.653704,0.045680,29541279,19279964,0,0,31318,0,1,1 +1774081726.613004,29.27,4,3992.50,55.01,1513.36,2153.94,0.00,62918.343622,56489.802341,5536687,995791,118.678133,0.045179,29553336,19283267,0,0,31321,0,1,1 +1774081731.614971,14.67,4,3992.50,48.71,1760.38,1907.00,0.00,3517053667243.574707,3517053673663.530762,70,0,104.103882,0.038682,29564047,19286161,0,0,31323,0,1,1 +1774081736.617450,0.80,4,3992.50,48.56,1766.06,1901.32,0.00,3516694150987.148926,0.000000,21,0,0.005414,0.006117,29564167,19286293,0,0,31326,0,1,1 +1774081741.613346,13.30,4,3992.50,49.49,1729.89,1937.46,0.00,2.008484,0.000195,238,2,8.077812,0.048396,29567159,19288519,0,0,31328,0,1,1 +1774081746.614789,21.13,4,3992.50,49.32,1736.13,1931.12,0.00,3517422298182.810059,3517422298184.641602,199,0,32.181040,0.140915,29577388,19296181,0,0,31331,0,1,1 +1774081751.617551,0.65,4,3992.50,49.37,1734.20,1933.07,0.00,1.362626,0.028305,237,176,0.003896,0.007126,29577490,19296322,0,0,31333,0,1,1 +1774081756.617701,0.85,4,3992.50,49.01,1748.27,1919.00,0.00,3518331976275.965820,3518331976277.428223,70,0,0.003878,0.007132,29577590,19296463,0,0,31336,0,1,1 +1774081761.616423,0.45,4,3992.50,49.02,1748.00,1919.27,0.00,0.000000,0.000000,70,0,0.003421,0.006501,29577676,19296583,0,0,31338,0,1,1 +1774081766.618921,15.11,4,3992.50,49.28,1735.08,1929.50,0.00,1.957811,0.000195,238,2,0.041333,60.065575,29580587,19303150,0,0,31341,0,1,1 +1774081771.616389,29.87,4,3992.50,49.31,1725.79,1930.43,0.00,62883.772452,56629.873813,5535924,998263,0.036379,120.230411,29583257,19315546,0,0,31343,0,1,1 +1774081776.617807,7.78,4,3992.50,49.15,1729.90,1924.53,0.00,4.108893,6.529495,5536699,998549,0.011682,24.837487,29583753,19318337,0,0,31346,0,1,1 +1774081781.617673,14.90,4,3992.50,48.87,1742.47,1913.38,0.00,17.770789,34.505807,5536813,998862,40.069441,0.031909,29588384,19320348,0,0,31348,0,1,1 +1774081786.616731,1.10,4,3992.50,48.89,1741.77,1914.08,0.00,3519100300752.105469,3519100306986.862793,21,0,0.006391,0.008996,29588526,19320517,0,0,31351,0,1,1 +1774081791.614873,0.55,4,3992.50,48.94,1739.84,1916.02,0.00,0.000000,0.000000,21,0,0.003422,0.005857,29588612,19320633,0,0,31353,0,1,1 +1774081796.617718,0.60,4,3992.50,48.98,1738.13,1917.71,0.00,0.048020,0.000000,70,0,0.003876,0.007128,29588712,19320774,0,0,31356,0,1,1 +1774081801.617210,0.80,4,3992.50,48.94,1739.84,1916.02,0.00,3518794295424.492676,0.000000,21,0,0.003878,0.007123,29588812,19320914,0,0,31358,0,1,1 +1774081806.617037,0.95,4,3992.50,48.95,1739.48,1916.34,0.00,0.048049,0.000000,70,0,0.003891,0.007133,29588913,19321055,0,0,31361,0,1,1 +1774081811.616500,0.80,4,3992.50,48.84,1743.77,1912.09,0.00,1.958999,0.000195,238,2,0.003446,0.005874,29589001,19321172,0,0,31363,0,1,1 +1774081816.612959,0.70,4,3992.50,48.82,1744.61,1911.28,0.00,62914.245413,56682.724277,5536040,999044,0.003893,0.007137,29589102,19321313,0,0,31366,0,1,1 +1774081821.617471,0.80,4,3992.50,48.85,1743.14,1912.73,0.00,0.000000,0.090934,5536040,999121,0.003968,0.007191,29589208,19321459,0,0,31368,0,1,1 +1774081826.617193,0.90,4,3992.50,48.86,1742.91,1912.95,0.00,3518632855187.349121,3518632861415.209473,237,176,0.003886,0.007785,29589309,19321605,0,0,31371,0,1,1 +1774081831.617238,0.70,4,3992.50,48.86,1742.94,1912.94,0.00,3518405303278.738770,3518405303280.200684,70,0,0.003482,0.005880,29589399,19321723,0,0,31373,0,1,1 +1774081836.613053,0.80,4,3992.50,48.90,1741.51,1914.37,0.00,1.960430,0.000195,238,2,0.003894,0.007153,29589500,19321865,0,0,31376,0,1,1 +1774081841.612973,0.70,4,3992.50,48.87,1742.42,1913.42,0.00,3518493922782.574219,0.028125,237,176,0.003878,0.007123,29589600,19322005,0,0,31378,0,1,1 +1774081846.616168,6.57,4,3992.50,49.02,1736.56,1919.14,0.00,0.468158,3516190449684.108398,238,2,0.017940,18.623869,29590702,19324224,0,0,31381,0,1,1 +1774081851.612940,6.47,4,3992.50,49.31,1723.62,1930.63,0.00,62914.417137,56715.590034,5536814,999773,0.007975,21.451166,29591165,19326587,0,0,31383,0,1,1 +1774081856.612943,1.00,4,3992.50,49.16,1730.41,1924.91,0.00,0.000000,0.082031,5536814,999817,0.002289,0.006366,29591235,19326710,0,0,31386,0,1,1 +1774081861.613071,0.75,4,3992.50,49.16,1730.51,1924.81,0.00,3518347390854.616211,3518347397051.033203,199,0,0.002284,0.006351,29591305,19326832,0,0,31388,0,1,1 +1774081866.613026,0.75,4,3992.50,49.16,1730.67,1924.65,0.00,1.363391,0.028321,237,176,0.001831,0.005099,29591361,19326931,0,0,31391,0,1,1 +1774081871.614944,0.75,4,3992.50,49.45,1719.24,1936.05,0.00,0.000000,0.000000,237,176,0.002275,0.006354,29591430,19327053,0,0,31393,0,1,1 +1774081876.617415,0.90,4,3992.50,49.07,1734.10,1921.22,0.00,62839.109441,56651.036997,5536040,999658,0.002275,0.006363,29591499,19327176,0,0,31396,0,1,1 +1774081881.617257,0.55,4,3992.50,49.07,1734.10,1921.22,0.00,3518548066129.693359,3518548072321.019043,237,176,0.002314,0.006387,29591571,19327300,0,0,31398,0,1,1 +1774081886.615620,0.80,4,3992.50,49.07,1734.11,1921.21,0.00,62894.868167,56701.720331,5536814,999913,0.001882,0.005163,29591631,19327403,0,0,31401,0,1,1 +1774081891.615883,0.65,4,3992.50,49.07,1734.11,1921.20,0.00,3518251967740.620605,3518251973932.924805,21,0,0.002364,0.007093,29591707,19327535,0,0,31403,0,1,1 +1774081896.613007,0.70,4,3992.50,49.07,1734.12,1921.20,0.00,62907.886659,56715.787525,5536040,999744,0.003061,0.007614,29591801,19327691,0,0,31406,0,1,1 +1774081901.614344,0.85,4,3992.50,49.08,1733.88,1921.44,0.00,3517496286808.378418,3517496292995.085938,199,0,0.002288,0.006354,29591871,19327813,0,0,31408,0,1,1 +1774081906.616556,0.70,4,3992.50,48.93,1739.58,1915.75,0.00,3516881717420.958008,0.000000,21,0,0.002484,0.006870,29591947,19327945,0,0,31411,0,1,1 +1774081911.613039,0.85,4,3992.50,48.93,1739.57,1915.76,0.00,0.000000,0.000000,21,0,0.002947,0.006320,29592011,19328059,0,0,31413,0,1,1 +1774081916.615901,40.39,4,3992.50,55.41,1495.14,2169.47,0.00,0.174900,0.000000,199,0,70.667775,0.036555,29599595,19330400,0,0,31416,0,1,1 +1774081921.613084,31.43,4,3992.50,55.26,1503.42,2163.38,0.00,3520420780818.883789,0.000000,21,0,120.259818,0.087533,29612388,19336975,0,0,31418,0,1,1 +1774081926.612963,29.64,4,3992.50,55.00,1513.38,2153.47,0.00,0.000000,0.000000,21,0,120.205854,0.113333,29625445,19345585,0,0,31421,0,1,1 +1774081931.613153,29.24,4,3992.50,55.03,1512.08,2154.70,0.00,0.000000,0.000000,21,0,119.796548,0.115096,29638321,19354287,0,0,31423,0,1,1 +1774081936.616848,29.23,4,3992.50,55.16,1507.11,2159.72,0.00,0.174871,0.000000,199,0,119.111443,0.113094,29651130,19363075,0,0,31426,0,1,1 +1774081941.613020,29.40,4,3992.50,55.25,1503.80,2163.01,0.00,3521132820564.527344,0.000000,21,0,119.694927,0.114804,29664211,19371738,0,0,31428,0,1,1 +1774081946.617520,30.08,4,3992.50,55.03,1512.45,2154.36,0.00,0.048004,0.000000,70,0,119.293548,0.115820,29677163,19380450,0,0,31431,0,1,1 +1774081951.617444,29.47,4,3992.50,55.06,1511.22,2155.56,0.00,1.490355,0.028321,237,176,119.000335,0.114207,29690002,19389176,0,0,31433,0,1,1 +1774081956.614140,17.94,4,3992.50,55.05,1511.56,2155.36,0.00,3520764036767.781738,3520764036769.292969,21,0,117.666963,0.088563,29702674,19395842,0,0,31436,0,1,1 +1774081961.617194,1.15,4,3992.50,49.15,1742.48,1924.43,0.00,0.000000,0.000000,21,0,0.005071,0.007418,29702798,19396003,0,0,31438,0,1,1 +1774081966.617453,18.30,4,3992.50,49.30,1736.70,1930.15,0.00,2.006732,0.000195,238,2,20.132391,0.097144,29709420,19400886,0,0,31441,0,1,1 +1774081971.617826,11.04,4,3992.50,49.10,1744.41,1922.42,0.00,62869.250822,56679.795643,5536825,1000997,16.095009,0.070597,29714684,19404809,0,0,31443,0,1,1 +1774081976.616957,4.52,4,3992.50,49.32,1735.65,1931.16,0.00,3519048664466.240234,3519048670659.064941,199,0,4.037254,0.027267,29716247,19406063,0,0,31446,0,1,1 +1774081981.615565,0.60,4,3992.50,49.14,1743.05,1923.76,0.00,62889.173610,56700.785330,5536051,1001480,0.003879,0.007124,29716347,19406203,0,0,31448,0,1,1 +1774081986.617718,0.65,4,3992.50,49.14,1743.00,1923.82,0.00,4.107508,0.031432,5536825,1001666,0.003258,0.006892,29716435,19406337,0,0,31451,0,1,1 +1774081991.616728,21.42,4,3992.50,49.29,1732.84,1929.68,0.00,3519134674394.895020,3519134680587.040039,21,0,0.034375,85.551767,29718734,19415729,0,0,31453,0,1,1 +1774081996.616749,29.56,4,3992.50,49.30,1724.10,1930.02,0.00,0.000000,0.000000,21,0,0.035314,119.375819,29721317,19428336,0,0,31456,0,1,1 +1774082001.617655,2.26,4,3992.50,49.01,1735.18,1918.85,0.00,0.174968,0.000000,199,0,0.007680,0.211652,29721498,19428589,0,0,31458,0,1,1 +1774082006.617925,16.03,4,3992.50,49.10,1732.95,1922.41,0.00,1.831737,0.000195,238,2,40.061767,0.023537,29725974,19430000,0,0,31461,0,1,1 +1774082011.617218,1.15,4,3992.50,49.12,1732.24,1923.11,0.00,3518934092229.570312,0.028129,237,176,0.006589,0.009213,29726119,19430167,0,0,31463,0,1,1 +1774082016.613704,0.55,4,3992.50,49.12,1732.28,1923.09,0.00,62936.410247,56930.299022,5536940,1003195,0.003889,0.007145,29726220,19430309,0,0,31466,0,1,1 +1774082021.617574,0.65,4,3992.50,49.12,1732.29,1923.07,0.00,3515716735710.393066,3515716741707.642578,237,176,0.003875,0.007760,29726320,19430453,0,0,31468,0,1,1 +1774082026.617771,0.65,4,3992.50,48.84,1743.30,1912.08,0.00,3518298051046.215820,3518298051047.677734,70,0,0.004529,0.006472,29726428,19430583,0,0,31471,0,1,1 +1774082031.617805,0.65,4,3992.50,48.87,1741.81,1913.52,0.00,1.958776,0.000195,238,2,0.006294,0.009367,29726557,19430740,0,0,31473,0,1,1 +1774082036.617306,0.65,4,3992.50,48.87,1741.88,1913.50,0.00,0.000000,0.000000,238,2,0.003878,0.007164,29726657,19430883,0,0,31476,0,1,1 +1774082041.617054,0.55,4,3992.50,48.87,1741.88,1913.48,0.00,0.000000,0.000000,238,2,0.003866,0.007110,29726756,19431022,0,0,31478,0,1,1 +1774082046.616323,0.45,4,3992.50,48.87,1741.89,1913.48,0.00,3518951505755.305176,3518951505757.137207,199,0,0.003514,0.005941,29726848,19431145,0,0,31481,0,1,1 +1774082051.615002,0.65,4,3992.50,48.87,1741.91,1913.46,0.00,62906.050166,56905.560176,5536166,1003208,0.003879,0.007124,29726948,19431285,0,0,31483,0,1,1 +1774082056.617454,0.60,4,3992.50,48.87,1741.93,1913.44,0.00,3516712275286.891602,3516712281283.030273,21,0,0.003959,0.007177,29727054,19431430,0,0,31486,0,1,1 +1774082061.615411,0.45,4,3992.50,48.87,1741.94,1913.43,0.00,0.175072,0.000000,199,0,0.003880,0.007125,29727154,19431570,0,0,31488,0,1,1 +1774082066.617453,0.65,4,3992.50,48.88,1741.48,1913.89,0.00,1.831088,0.000195,238,2,0.003419,0.005863,29727240,19431687,0,0,31491,0,1,1 +1774082071.617436,8.70,4,3992.50,49.09,1732.48,1921.95,0.00,62887.818672,56890.848782,5536166,1003343,0.023637,34.059561,29728693,19435594,0,0,31493,0,1,1 +1774082076.617148,3.15,4,3992.50,48.81,1742.98,1910.90,0.00,3518639775309.963379,3518639781309.089844,199,0,0.005900,6.019304,29728945,19436436,0,0,31496,0,1,1 +1774082081.617479,0.50,4,3992.50,48.82,1742.30,1911.58,0.00,62889.383433,56922.991316,5536941,1003773,0.001373,0.003821,29728987,19436510,0,0,31498,0,1,1 +1774082086.617479,0.65,4,3992.50,48.87,1740.59,1913.30,0.00,3518436932070.055176,3518436938035.506348,237,176,0.002289,0.006366,29729057,19436633,0,0,31501,0,1,1 +1774082091.617342,0.50,4,3992.50,48.90,1739.36,1914.52,0.00,62893.907870,56928.339137,5536941,1003815,0.002289,0.007000,29729127,19436759,0,0,31503,0,1,1 +1774082096.617066,0.50,4,3992.50,48.91,1738.74,1915.10,0.00,3518631297732.961914,3518631303698.199219,238,2,0.001831,0.005099,29729183,19436858,0,0,31506,0,1,1 +1774082101.613037,0.70,4,3992.50,48.91,1738.79,1915.09,0.00,0.000000,0.000000,238,2,0.002299,0.006369,29729254,19436981,0,0,31508,0,1,1 +1774082106.613037,0.55,4,3992.50,48.93,1738.32,1915.57,0.00,3518437374951.611816,3518437374953.443848,199,0,0.002327,0.006397,29729327,19437106,0,0,31511,0,1,1 +1774082111.612961,0.60,4,3992.50,48.93,1738.32,1915.56,0.00,3518491106537.239258,0.000000,70,0,0.002339,0.006418,29729401,19437232,0,0,31513,0,1,1 +1774082116.617715,0.50,4,3992.50,48.93,1738.33,1915.55,0.00,0.000000,0.000000,70,0,0.001894,0.005187,29729462,19437337,0,0,31516,0,1,1 +1774082121.617637,0.55,4,3992.50,48.93,1738.33,1915.55,0.00,62894.655009,56931.811207,5536941,1003892,0.002444,0.006482,29729542,19437469,0,0,31518,0,1,1 +1774082126.616994,0.60,4,3992.50,48.92,1738.36,1915.52,0.00,3518889740211.016113,0.005860,5536167,1003727,0.002289,0.006367,29729612,19437592,0,0,31521,0,1,1 +1774082131.617067,0.55,4,3992.50,49.02,1734.59,1919.30,0.00,3518385491168.841309,3518385497127.437012,21,0,0.002301,0.006343,29729683,19437713,0,0,31523,0,1,1 +1774082136.616381,0.65,4,3992.50,48.96,1737.12,1916.77,0.00,62902.355525,56938.841303,5536941,1003966,0.001831,0.005112,29729739,19437813,0,0,31526,0,1,1 +1774082141.613709,38.71,4,3992.50,55.08,1507.36,2156.50,0.00,0.000000,0.079437,5536941,1004085,87.295662,0.042506,29738844,19440544,0,0,31528,0,1,1 +1774082146.613036,29.32,4,3992.50,55.03,1511.11,2154.43,0.00,3518911281533.414062,0.006544,5536167,1003921,119.125350,0.046672,29751661,19443969,0,0,31531,0,1,1 +1774082151.617479,28.37,4,3992.50,55.11,1507.72,2157.77,0.00,3515313705398.990723,3515313711352.026367,199,0,119.469752,0.067588,29765070,19448904,0,0,31533,0,1,1 +1774082156.617289,28.30,4,3992.50,55.27,1501.56,2163.93,0.00,1.831905,0.000195,238,2,119.038215,0.056798,29778383,19453047,0,0,31536,0,1,1 +1774082161.613948,28.66,4,3992.50,55.33,1499.23,2166.27,0.00,3520789647016.949707,3520789647018.909668,70,0,119.773973,0.056021,29791941,19457129,0,0,31538,0,1,1 +1774082166.616691,28.85,4,3992.50,55.17,1505.43,2160.04,0.00,3516508567100.094727,0.000000,21,0,119.067631,0.061423,29805608,19461686,0,0,31541,0,1,1 +1774082171.616398,29.00,4,3992.50,55.12,1507.27,2158.21,0.00,2.006954,0.000195,238,2,119.546132,0.058339,29819673,19466000,0,0,31543,0,1,1 +1774082176.613815,28.81,4,3992.50,55.31,1500.15,2165.37,0.00,62920.110380,56960.617735,5536167,1004001,119.374331,0.063395,29833722,19470697,0,0,31546,0,1,1 +1774082181.617054,13.69,4,3992.50,49.57,1724.86,1940.72,0.00,3516159121437.115723,3516159127389.672363,238,2,103.858021,0.059803,29845772,19475327,0,0,31548,0,1,1 +1774082186.617414,0.70,4,3992.50,49.19,1739.61,1925.96,0.00,0.000000,0.000000,238,2,0.004974,0.006634,29845888,19475464,0,0,31551,0,1,1 +1774082191.614298,14.67,4,3992.50,49.65,1721.61,1943.95,0.00,0.000000,0.000000,238,2,12.096565,0.061678,29850026,19478437,0,0,31553,0,1,1 +1774082196.613073,17.48,4,3992.50,49.76,1717.19,1948.28,0.00,3519299181681.123047,0.028132,237,176,28.166516,0.116296,29858839,19484850,0,0,31556,0,1,1 +1774082201.615985,2.30,4,3992.50,49.46,1729.13,1936.35,0.00,62851.609713,56899.273240,5536184,1005513,0.014078,0.013596,29859145,19485152,0,0,31558,0,1,1 +1774082206.616910,0.50,4,3992.50,49.12,1742.36,1923.11,0.00,3517786314720.443848,3517786320675.145020,237,176,0.003443,0.007413,29859238,19485296,0,0,31561,0,1,1 +1774082211.617736,18.65,4,3992.50,49.46,1725.23,1936.38,0.00,62877.821366,56964.702670,5536184,1005783,0.037223,77.509388,29861752,19493820,0,0,31563,0,1,1 +1774082216.617253,29.25,4,3992.50,49.88,1700.63,1952.79,0.00,4.109674,120.230062,5536958,1006731,0.064662,119.688953,29866571,19506887,0,0,31566,0,1,1 +1774082221.616417,4.01,4,3992.50,49.27,1724.00,1929.02,0.00,3519025873387.565430,3519025879187.984375,70,0,0.011537,7.935186,29867063,19507951,0,0,31568,0,1,1 +1774082226.616411,13.17,4,3992.50,49.23,1727.05,1927.34,0.00,0.126953,0.000000,199,0,40.063515,0.024145,29871517,19509472,0,0,31571,0,1,1 +1774082231.616439,0.80,4,3992.50,49.25,1726.15,1928.23,0.00,3518417476190.451172,0.000000,21,0,0.006457,0.008506,29871670,19509649,0,0,31573,0,1,1 +1774082236.617910,0.85,4,3992.50,49.25,1726.06,1928.30,0.00,2.006246,0.000195,238,2,0.004120,0.008097,29871771,19509790,0,0,31576,0,1,1 +1774082241.614905,1.40,4,3992.50,48.56,1752.98,1901.41,0.00,3520553505832.225586,3520553505834.058594,199,0,0.003422,0.005859,29871857,19509906,0,0,31578,0,1,1 +1774082246.617586,0.65,4,3992.50,48.66,1749.36,1905.04,0.00,62877.731140,57107.591965,5537137,1007350,0.003889,0.007129,29871958,19510047,0,0,31581,0,1,1 +1774082251.615777,0.70,4,3992.50,48.94,1738.38,1916.00,0.00,3519710471630.898926,3519710477404.390137,238,2,0.003854,0.007125,29872056,19510187,0,0,31583,0,1,1 +1774082256.616658,0.55,4,3992.50,48.95,1737.94,1916.46,0.00,3517817742987.123047,3517817742989.129395,21,0,0.003865,0.007150,29872155,19510329,0,0,31586,0,1,1 +1774082261.616382,0.60,4,3992.50,48.95,1737.96,1916.44,0.00,2.006947,0.000195,238,2,0.003645,0.006497,29872248,19510458,0,0,31588,0,1,1 +1774082266.617585,0.50,4,3992.50,48.95,1737.97,1916.43,0.00,3517590811104.852051,3517590811106.858398,21,0,0.003742,0.006573,29872347,19510593,0,0,31591,0,1,1 +1774082271.617576,0.55,4,3992.50,48.95,1737.98,1916.42,0.00,1.538382,0.028320,237,176,0.003702,0.006977,29872444,19510731,0,0,31593,0,1,1 +1774082276.613181,0.55,4,3992.50,48.95,1737.99,1916.41,0.00,0.468869,3521532672726.437988,238,2,0.004055,0.006123,29872543,19510855,0,0,31596,0,1,1 +1774082281.613393,0.55,4,3992.50,48.95,1738.00,1916.39,0.00,62902.845631,57136.103386,5536363,1007455,0.003482,0.005895,29872633,19510974,0,0,31598,0,1,1 +1774082286.613563,0.60,4,3992.50,48.96,1737.56,1916.85,0.00,3518317331790.110840,3518317337558.733398,199,0,0.003865,0.007776,29872732,19511119,0,0,31601,0,1,1 +1774082291.613699,0.60,4,3992.50,48.96,1737.57,1916.83,0.00,0.000000,0.000000,199,0,0.003259,0.006885,29872820,19511252,0,0,31603,0,1,1 +1774082296.617454,11.20,4,3992.50,48.73,1745.02,1908.08,0.00,0.000000,0.000000,199,0,0.031368,40.044398,29874893,19515992,0,0,31606,0,1,1 +1774082301.614021,0.60,4,3992.50,48.52,1753.60,1899.50,0.00,0.000000,0.000000,199,0,0.001807,0.005105,29874947,19516091,0,0,31608,0,1,1 +1774082306.613847,0.60,4,3992.50,48.54,1752.62,1900.48,0.00,3518559226183.582031,0.000000,21,0,0.002297,0.006374,29875018,19516215,0,0,31611,0,1,1 +1774082311.617207,0.60,4,3992.50,48.50,1754.38,1898.72,0.00,0.000000,0.000000,21,0,0.002287,0.006352,29875088,19516337,0,0,31613,0,1,1 +1774082316.615466,0.50,4,3992.50,48.83,1741.40,1911.66,0.00,0.048064,0.000000,70,0,0.002290,0.006356,29875158,19516459,0,0,31616,0,1,1 +1774082321.617743,0.55,4,3992.50,48.83,1741.20,1911.89,0.00,62882.950498,57148.792151,5537137,1008044,0.001830,0.005099,29875214,19516558,0,0,31618,0,1,1 +1774082326.615916,0.70,4,3992.50,48.83,1741.22,1911.88,0.00,3519722858751.651367,3.976843,5536363,1007889,0.003399,0.006976,29875306,19516694,0,0,31621,0,1,1 +1774082331.617644,0.55,4,3992.50,48.83,1741.22,1911.88,0.00,3517221590678.257812,3517221596403.501953,237,176,0.003984,0.007677,29875398,19516831,0,0,31623,0,1,1 +1774082336.613628,0.50,4,3992.50,48.83,1741.22,1911.88,0.00,3521265995382.950195,3521265995384.461426,21,0,0.002341,0.006433,29875472,19516958,0,0,31626,0,1,1 +1774082341.617083,0.65,4,3992.50,48.83,1741.23,1911.88,0.00,0.000000,0.000000,21,0,0.002035,0.005273,29875542,19517070,0,0,31628,0,1,1 +1774082346.617755,0.45,4,3992.50,48.86,1740.10,1913.00,0.00,62903.167506,57171.147195,5537137,1008079,0.002289,0.006365,29875612,19517193,0,0,31631,0,1,1 +1774082351.617435,0.60,4,3992.50,48.86,1740.21,1912.88,0.00,0.000000,0.060941,5537137,1008127,0.002297,0.007008,29875683,19517320,0,0,31633,0,1,1 +1774082356.617566,0.60,4,3992.50,48.86,1740.22,1912.88,0.00,0.000000,0.001562,5537137,1008129,0.002289,0.006366,29875753,19517443,0,0,31636,0,1,1 +1774082361.613128,34.51,4,3992.50,55.16,1503.38,2159.46,0.00,3521563112402.500000,3521563112406.594238,5536363,1007989,67.843625,0.048184,29883453,19520637,0,0,31638,0,1,1 +1774082366.615144,29.65,4,3992.50,55.42,1494.73,2169.87,0.00,3517019548645.188965,3517019554370.010254,237,176,119.912439,0.057420,29895825,19524898,0,0,31641,0,1,1 +1774082371.617221,28.51,4,3992.50,55.23,1502.34,2162.24,0.00,0.468262,3516976012969.249023,238,2,118.345629,0.053750,29908528,19528925,0,0,31643,0,1,1 +1774082376.616456,28.37,4,3992.50,55.26,1500.81,2163.75,0.00,3518975393940.166504,3518975393941.999023,199,0,119.663923,0.070731,29921936,19534131,0,0,31646,0,1,1 +1774082381.612975,28.31,4,3992.50,55.28,1500.12,2164.38,0.00,3520888566988.507324,0.000000,21,0,118.450811,0.052653,29935036,19538183,0,0,31648,0,1,1 +1774082386.617291,28.52,4,3992.50,55.34,1497.81,2166.72,0.00,0.048005,0.000000,70,0,119.868951,0.062059,29948895,19542934,0,0,31651,0,1,1 +1774082391.617193,28.73,4,3992.50,55.18,1504.27,2160.33,0.00,62908.700561,57180.294857,5536363,1008184,119.485585,0.067216,29962543,19548009,0,0,31653,0,1,1 +1774082396.616658,31.28,4,3992.50,55.17,1504.32,2160.17,0.00,3518813922274.651367,3518813928001.600098,238,2,119.118534,0.067072,29976618,19553090,0,0,31656,0,1,1 +1774082401.612949,19.14,4,3992.50,55.38,1496.34,2168.29,0.00,62952.214795,57221.680242,5536364,1008209,119.589984,0.065248,29990804,19558011,0,0,31658,0,1,1 +1774082406.617668,1.05,4,3992.50,49.02,1745.41,1919.22,0.00,3515119541704.095215,3515119547426.936035,70,0,4.316594,0.008124,29991429,19558343,0,0,31661,0,1,1 +1774082411.613041,19.84,4,3992.50,50.53,1686.07,1978.48,0.00,0.000000,0.000000,70,0,22.177493,0.108229,29998869,19563873,0,0,31663,0,1,1 +1774082416.617618,11.92,4,3992.50,50.29,1695.36,1969.11,0.00,0.126837,0.000000,199,0,18.095911,0.085002,30004805,19568282,0,0,31666,0,1,1 +1774082421.616958,3.41,4,3992.50,49.71,1718.31,1946.09,0.00,1.832078,0.000195,238,2,0.016497,13.032027,30005752,19570033,0,0,31668,0,1,1 +1774082426.617365,29.23,4,3992.50,49.32,1726.56,1931.16,0.00,3518151038957.708496,3518151038959.540039,199,0,0.051200,118.761225,30009551,19582387,0,0,31671,0,1,1 +1774082431.618387,18.97,4,3992.50,48.67,1748.27,1905.36,0.00,62894.639950,57341.941057,5536382,1010788,0.032895,73.299673,30011717,19590357,0,0,31673,0,1,1 +1774082436.617311,11.69,4,3992.50,50.05,1695.25,1959.75,0.00,3519194454803.374512,3519194460358.403809,199,0,40.095597,0.029712,30016080,19592287,0,0,31676,0,1,1 +1774082441.616948,0.70,4,3992.50,49.55,1715.19,1939.82,0.00,1.363478,0.028322,237,176,0.005277,0.006774,30016199,19592426,0,0,31678,0,1,1 +1774082446.617235,1.25,4,3992.50,49.52,1716.14,1938.83,0.00,62920.294976,57382.564266,5536499,1011140,0.003945,0.007953,30016297,19592565,0,0,31681,0,1,1 +1774082451.616449,0.60,4,3992.50,49.04,1734.76,1920.21,0.00,4.109923,0.078333,5537273,1011379,0.003979,0.007248,30016405,19592713,0,0,31683,0,1,1 +1774082456.617241,0.50,4,3992.50,49.08,1733.35,1921.66,0.00,3517879723841.896973,3517879729382.601562,238,2,0.003407,0.005864,30016490,19592830,0,0,31686,0,1,1 +1774082461.616634,0.55,4,3992.50,49.11,1732.39,1922.62,0.00,3518864774879.621582,3518864774881.628906,21,0,0.003866,0.007123,30016589,19592970,0,0,31688,0,1,1 +1774082466.617051,0.50,4,3992.50,49.09,1732.89,1922.12,0.00,62920.192314,57381.370384,5536499,1011446,0.003903,0.007163,30016691,19593113,0,0,31691,0,1,1 +1774082471.615437,0.65,4,3992.50,49.09,1732.91,1922.09,0.00,3519572856509.305176,3519572862050.377441,21,0,0.003879,0.007112,30016791,19593252,0,0,31693,0,1,1 +1774082476.613186,0.65,4,3992.50,48.82,1743.66,1911.38,0.00,2.007740,0.000195,238,2,0.003484,0.005918,30016881,19593373,0,0,31696,0,1,1 +1774082481.616400,0.50,4,3992.50,49.03,1735.47,1919.52,0.00,3516176451586.057617,3516176451588.063477,21,0,0.003907,0.007143,30016983,19593515,0,0,31698,0,1,1 +1774082486.616460,0.55,4,3992.50,49.03,1735.52,1919.50,0.00,0.048046,0.000000,70,0,0.003903,0.007784,30017085,19593661,0,0,31701,0,1,1 +1774082491.617610,0.55,4,3992.50,49.03,1735.54,1919.49,0.00,1.958339,0.000195,238,2,0.003956,0.007161,30017190,19593804,0,0,31703,0,1,1 +1774082496.617627,0.60,4,3992.50,49.03,1735.31,1919.72,0.00,0.000000,0.000000,238,2,0.003990,0.006974,30017286,19593943,0,0,31706,0,1,1 +1774082501.615117,0.60,4,3992.50,49.03,1735.32,1919.71,0.00,3520204390207.325195,3520204390209.333496,21,0,0.003867,0.007126,30017385,19594083,0,0,31708,0,1,1 +1774082506.617400,0.50,4,3992.50,48.96,1737.96,1917.07,0.00,1.537677,0.028307,237,176,0.004073,0.007661,30017491,19594235,0,0,31711,0,1,1 +1774082511.616587,0.55,4,3992.50,49.00,1736.58,1918.42,0.00,62934.135124,57395.708667,5536499,1011678,0.005018,0.008326,30017601,19594389,0,0,31713,0,1,1 +1774082516.614906,10.90,4,3992.50,49.27,1724.67,1929.19,0.00,3519620496570.863770,3519620502111.762207,21,0,0.025111,40.081426,30019208,19598846,0,0,31716,0,1,1 +1774082521.612961,0.75,4,3992.50,49.25,1725.86,1928.19,0.00,0.000000,0.000000,21,0,0.002505,0.006644,30019283,19598975,0,0,31718,0,1,1 +1774082526.612959,0.55,4,3992.50,49.27,1724.88,1929.16,0.00,2.006837,0.000195,238,2,0.002321,0.006366,30019355,19599098,0,0,31721,0,1,1 +1774082531.613013,0.45,4,3992.50,49.27,1725.18,1928.87,0.00,3518399757626.812988,3518399757628.819824,21,0,0.002297,0.006364,30019426,19599221,0,0,31723,0,1,1 +1774082536.615720,0.65,4,3992.50,49.27,1725.18,1928.87,0.00,62891.385732,57391.499156,5536499,1011999,0.002288,0.006363,30019496,19599344,0,0,31726,0,1,1 +1774082541.616986,0.50,4,3992.50,49.27,1725.18,1928.86,0.00,3517546409640.105957,3517546415141.577637,21,0,0.001386,0.003821,30019539,19599418,0,0,31728,0,1,1 +1774082546.615524,0.60,4,3992.50,49.27,1724.96,1929.04,0.00,1.538829,0.028329,237,176,0.001859,0.005100,30019597,19599517,0,0,31731,0,1,1 +1774082551.612970,0.65,4,3992.50,49.20,1727.75,1926.30,0.00,3520235087283.037598,3520235087284.548340,21,0,0.002315,0.007035,30019669,19599645,0,0,31733,0,1,1 +1774082556.612967,0.55,4,3992.50,49.00,1735.39,1918.65,0.00,0.000000,0.000000,21,0,0.002339,0.006428,30019743,19599772,0,0,31736,0,1,1 +1774082561.617254,0.55,4,3992.50,49.02,1734.90,1919.14,0.00,0.174850,0.000000,199,0,0.002456,0.006507,30019825,19599905,0,0,31738,0,1,1 +1774082566.616964,0.65,4,3992.50,49.02,1734.91,1919.14,0.00,1.363458,0.028322,237,176,0.002122,0.005783,30019892,19600020,0,0,31741,0,1,1 +1774082571.617315,0.60,4,3992.50,49.02,1734.91,1919.14,0.00,0.000000,0.000000,237,176,0.002060,0.005735,30019955,19600131,0,0,31743,0,1,1 +1774082576.617228,0.55,4,3992.50,49.06,1733.07,1920.93,0.00,3518497959971.138184,3518497959972.648438,21,0,0.002324,0.006374,30020028,19600255,0,0,31746,0,1,1 +1774082581.612968,36.35,4,3992.50,55.41,1492.84,2169.55,0.00,0.048088,0.000000,70,0,80.424694,0.035449,30028531,19602431,0,0,31748,0,1,1 +1774082586.612979,32.44,4,3992.50,55.43,1494.81,2170.21,0.00,3518429437376.210938,0.000000,21,0,119.313481,0.033028,30041182,19604693,0,0,31751,0,1,1 +1774082591.613740,31.16,4,3992.50,55.11,1507.31,2157.76,0.00,0.048040,0.000000,70,0,119.182456,0.041049,30054136,19607676,0,0,31753,0,1,1 +1774082596.613641,30.82,4,3992.50,55.13,1506.56,2158.46,0.00,0.000000,0.000000,70,0,119.143930,0.050304,30067110,19611293,0,0,31756,0,1,1 +1774082601.617117,30.46,4,3992.50,55.25,1501.83,2163.22,0.00,1.489297,0.028301,237,176,119.520258,0.046696,30080256,19614730,0,0,31758,0,1,1 +1774082606.617370,30.68,4,3992.50,55.35,1497.96,2167.01,0.00,3518259044243.661133,3518259044245.170898,21,0,119.364198,0.055432,30093859,19619056,0,0,31761,0,1,1 +1774082611.613681,30.87,4,3992.50,55.69,1484.86,2180.30,0.00,1.539515,0.028341,237,176,119.293136,0.044154,30107421,19622405,0,0,31763,0,1,1 +1774082616.617136,30.12,4,3992.50,55.49,1492.50,2172.55,0.00,3516007669381.366699,3516007669382.875977,21,0,119.400958,0.060940,30121520,19626958,0,0,31766,0,1,1 +1774082621.617304,16.36,4,3992.50,50.06,1705.20,1959.94,0.00,62923.390124,57425.196211,5536507,1012328,110.742306,0.056965,30134231,19631206,0,0,31768,0,1,1 +1774082626.613032,1.86,4,3992.50,49.28,1735.59,1929.55,0.00,0.074282,0.098131,5536513,1012351,0.005515,0.005484,30134357,19631331,0,0,31771,0,1,1 +1774082631.617280,17.20,4,3992.50,49.58,1723.88,1941.24,0.00,3515450188863.620605,3515450194357.308594,21,0,18.118571,0.089380,30140414,19635796,0,0,31773,0,1,1 +1774082636.615589,14.28,4,3992.50,50.08,1704.16,1960.88,0.00,0.048063,0.000000,70,0,22.138827,0.097326,30147531,19641224,0,0,31776,0,1,1 +1774082641.616111,2.01,4,3992.50,49.79,1715.73,1949.30,0.00,0.126940,0.000000,199,0,0.011859,0.011432,30147791,19641481,0,0,31778,0,1,1 +1774082646.617013,0.60,4,3992.50,49.35,1732.93,1932.11,0.00,1.831505,0.000195,238,2,0.003877,0.007131,30147891,19641622,0,0,31781,0,1,1 +1774082651.616474,0.90,4,3992.50,49.14,1740.87,1924.14,0.00,3518816783647.820312,3518816783649.652344,199,0,0.003878,0.007123,30147991,19641762,0,0,31783,0,1,1 +1774082656.617280,0.55,4,3992.50,49.16,1740.40,1924.64,0.00,3517869773674.235840,0.000000,21,0,0.003907,0.007131,30148093,19641903,0,0,31786,0,1,1 +1774082661.613019,0.90,4,3992.50,49.16,1740.44,1924.60,0.00,1.539691,0.028344,237,176,0.003423,0.005860,30148179,19642019,0,0,31788,0,1,1 +1774082666.616336,0.85,4,3992.50,49.16,1740.45,1924.58,0.00,62886.437465,57390.476207,5537287,1014011,0.003875,0.007759,30148279,19642163,0,0,31791,0,1,1 +1774082671.613003,0.60,4,3992.50,49.18,1739.49,1925.54,0.00,3520784355711.345703,3520784361214.622070,237,176,0.003989,0.007247,30148388,19642311,0,0,31793,0,1,1 +1774082676.617130,0.60,4,3992.50,49.18,1739.45,1925.59,0.00,0.468071,3515535433906.101074,238,2,0.003913,0.007801,30148491,19642458,0,0,31796,0,1,1 +1774082681.612987,0.60,4,3992.50,49.18,1739.46,1925.57,0.00,62979.868287,57476.290901,5537287,1014071,0.003436,0.005860,30148578,19642574,0,0,31798,0,1,1 +1774082686.612986,0.65,4,3992.50,49.19,1739.15,1925.89,0.00,3518438205707.138672,3518438211208.116211,70,0,0.003953,0.007172,30148683,19642718,0,0,31801,0,1,1 +1774082691.617444,0.45,4,3992.50,49.19,1739.16,1925.88,0.00,62869.487135,57377.565248,5536513,1013986,0.003875,0.007103,30148783,19642857,0,0,31803,0,1,1 +1774082696.617897,0.70,4,3992.50,49.12,1741.98,1923.06,0.00,3518117892942.344727,3518117898438.537109,199,0,0.003878,0.007763,30148883,19643001,0,0,31806,0,1,1 +1774082701.617229,0.65,4,3992.50,49.12,1741.76,1923.28,0.00,1.832081,0.000195,238,2,0.003421,0.005856,30148969,19643117,0,0,31808,0,1,1 +1774082706.613516,0.80,4,3992.50,48.94,1748.93,1916.11,0.00,3521052018869.338867,3521052018871.347656,21,0,0.003881,0.007138,30149069,19643258,0,0,31811,0,1,1 +1774082711.612962,0.80,4,3992.50,48.95,1748.70,1916.35,0.00,0.000000,0.000000,21,0,0.003878,0.007123,30149169,19643398,0,0,31813,0,1,1 +1774082716.615297,0.85,4,3992.50,48.98,1747.50,1917.54,0.00,62900.322331,57402.153512,5537287,1014365,0.003864,0.007144,30149268,19643539,0,0,31816,0,1,1 +1774082721.612955,0.55,4,3992.50,49.00,1746.75,1918.30,0.00,3520085943649.424805,3520085949152.564453,199,0,0.002809,0.004452,30149339,19643630,0,0,31818,0,1,1 +1774082726.614223,0.90,4,3992.50,48.76,1755.86,1909.20,0.00,3517544978674.621094,0.000000,21,0,0.003877,0.007774,30149439,19643775,0,0,31821,0,1,1 +1774082731.612947,19.45,4,3992.50,49.33,1729.96,1931.57,0.00,2.007348,0.000195,238,2,0.031846,75.136266,30151512,19651860,0,0,31823,0,1,1 +1774082736.612968,31.20,4,3992.50,49.54,1713.57,1939.70,0.00,62923.315144,57585.616046,5536513,1015304,0.031261,119.573473,30153842,19664408,0,0,31826,0,1,1 +1774082741.616395,4.91,4,3992.50,48.84,1741.20,1912.30,0.00,3516027842728.416504,3516027848064.488281,21,0,0.007369,10.416924,30154218,19665690,0,0,31828,0,1,1 +1774082746.617738,14.20,4,3992.50,48.71,1747.40,1906.99,0.00,62926.350955,57618.841212,5536675,1015775,40.055559,0.024975,30158711,19667150,0,0,31831,0,1,1 +1774082751.617041,11.75,4,3992.50,49.00,1735.28,1918.63,0.00,3518927834386.554199,3518927839696.055664,199,0,0.028281,40.077684,30160536,19671754,0,0,31833,0,1,1 +1774082756.617813,0.90,4,3992.50,48.98,1736.14,1917.77,0.00,3517894082622.766602,0.000000,21,0,0.001831,0.005098,30160592,19671853,0,0,31836,0,1,1 +1774082761.617822,0.75,4,3992.50,48.99,1735.90,1918.01,0.00,0.048047,0.000000,70,0,0.002301,0.006356,30160663,19671975,0,0,31838,0,1,1 +1774082766.613996,0.85,4,3992.50,49.01,1734.92,1918.99,0.00,1.491473,0.028342,237,176,0.001820,0.005103,30160718,19672074,0,0,31841,0,1,1 +1774082771.616403,0.80,4,3992.50,49.01,1734.93,1918.98,0.00,3516744083696.195312,3516744083697.656738,70,0,0.002080,0.005715,30160783,19672184,0,0,31843,0,1,1 +1774082776.616416,0.80,4,3992.50,49.01,1734.95,1918.97,0.00,0.000000,0.000000,70,0,0.002085,0.005776,30160848,19672298,0,0,31846,0,1,1 +1774082781.617437,0.75,4,3992.50,49.01,1734.95,1918.96,0.00,0.000000,0.000000,70,0,0.002276,0.006999,30160917,19672424,0,0,31848,0,1,1 +1774082786.617588,0.65,4,3992.50,49.13,1730.50,1923.41,0.00,1.958730,0.000195,238,2,0.002289,0.006366,30160987,19672547,0,0,31851,0,1,1 +1774082791.616492,0.90,4,3992.50,49.06,1733.26,1920.65,0.00,3519208151254.802734,0.028131,237,176,0.002377,0.006469,30161064,19672676,0,0,31853,0,1,1 +1774082796.612986,0.75,4,3992.50,49.06,1733.04,1920.87,0.00,62985.890801,57715.068150,5536676,1016209,0.002607,0.006388,30161144,19672810,0,0,31856,0,1,1 +1774082801.617687,0.80,4,3992.50,49.06,1733.29,1920.62,0.00,0.000000,0.007025,5536676,1016213,0.002287,0.006350,30161214,19672932,0,0,31858,0,1,1 +1774082806.612959,0.70,4,3992.50,49.06,1733.06,1920.85,0.00,3521767162036.595703,3521767167310.211914,21,0,0.002488,0.006892,30161290,19673065,0,0,31861,0,1,1 +1774082811.614405,0.85,4,3992.50,49.09,1732.07,1921.85,0.00,2.006255,0.000195,238,2,0.002493,0.006874,30161367,19673197,0,0,31863,0,1,1 +1774082816.617378,36.54,4,3992.50,55.05,1508.53,2155.15,0.00,62903.853614,57640.480230,5536676,1016327,93.080590,0.046799,30171117,19676347,0,0,31866,0,1,1 +1774082821.617666,30.61,4,3992.50,55.14,1505.94,2158.98,0.00,3518235123250.032227,3518235128518.191406,70,0,122.161219,0.030389,30183562,19678495,0,0,31868,0,1,1 +1774082826.616740,28.64,4,3992.50,55.07,1508.67,2156.19,0.00,0.000000,0.000000,70,0,120.586370,0.028232,30195797,19680650,0,0,31871,0,1,1 +1774082831.616935,29.02,4,3992.50,55.21,1503.10,2161.76,0.00,3518300272414.589355,0.000000,21,0,120.359994,0.050206,30207997,19684428,0,0,31873,0,1,1 +1774082836.613537,29.83,4,3992.50,55.25,1501.49,2163.32,0.00,0.048080,0.000000,70,0,119.645990,0.048738,30220172,19688123,0,0,31876,0,1,1 +1774082841.617746,29.56,4,3992.50,55.09,1507.91,2156.96,0.00,0.000000,0.000000,70,0,120.065126,0.049274,30232429,19691763,0,0,31878,0,1,1 +1774082846.617630,29.22,4,3992.50,55.12,1506.96,2157.91,0.00,1.490367,0.028321,237,176,119.766606,0.040416,30244627,19694839,0,0,31881,0,1,1 +1774082851.613097,28.86,4,3992.50,55.07,1508.57,2156.31,0.00,3521629578067.720703,3521629578069.232422,21,0,118.671011,0.046278,30256728,19698216,0,0,31883,0,1,1 +1774082856.613011,11.46,4,3992.50,48.74,1756.70,1908.26,0.00,62948.613826,57676.204838,5537465,1016726,91.129624,0.039430,30266073,19701019,0,0,31886,0,1,1 +1774082861.616977,14.39,4,3992.50,49.84,1713.70,1951.21,0.00,0.000000,0.580594,5537465,1017378,14.100969,0.078399,30271105,19704700,0,0,31888,0,1,1 +1774082866.616449,15.13,4,3992.50,51.02,1667.11,1997.72,0.00,3518808837009.368652,3518808842281.662598,21,0,26.155402,0.109437,30279547,19710894,0,0,31891,0,1,1 +1774082871.612952,1.00,4,3992.50,50.56,1685.39,1979.44,0.00,0.048081,0.000000,70,0,0.003681,0.005989,30279636,19711010,0,0,31893,0,1,1 +1774082876.612952,0.55,4,3992.50,49.91,1710.59,1954.25,0.00,62947.480381,57676.312401,5537465,1018052,0.003878,0.007132,30279736,19711151,0,0,31896,0,1,1 +1774082881.617913,0.65,4,3992.50,49.90,1710.98,1953.86,0.00,3514949673328.474121,3514949678592.956055,237,176,0.003874,0.007115,30279836,19711291,0,0,31898,0,1,1 +1774082886.612952,0.50,4,3992.50,49.90,1711.34,1953.50,0.00,0.468922,3521931299315.566406,238,2,0.003869,0.007139,30279935,19711432,0,0,31901,0,1,1 +1774082891.617176,0.60,4,3992.50,49.91,1710.88,1953.95,0.00,3515467335748.286621,3515467335750.117188,199,0,0.003405,0.005850,30280020,19711548,0,0,31903,0,1,1 +1774082896.617727,0.65,4,3992.50,49.91,1710.66,1954.17,0.00,3518049595103.954102,0.000000,70,0,0.003886,0.007140,30280121,19711690,0,0,31906,0,1,1 +1774082901.612958,0.70,4,3992.50,49.92,1710.16,1954.63,0.00,3521796696535.333984,0.000000,21,0,0.003983,0.007254,30280229,19711838,0,0,31908,0,1,1 +1774082906.615770,0.60,4,3992.50,49.92,1710.18,1954.61,0.00,62908.028236,57644.349826,5536691,1018238,0.003901,0.007159,30280331,19711981,0,0,31911,0,1,1 +1774082911.617802,0.55,4,3992.50,49.92,1710.24,1954.60,0.00,3517008052627.106934,3517008057889.601074,238,2,0.003406,0.005853,30280416,19712097,0,0,31913,0,1,1 +1774082916.617254,0.55,4,3992.50,49.92,1710.25,1954.58,0.00,62948.305406,57683.171518,5536691,1018328,0.003941,0.007817,30280520,19712245,0,0,31916,0,1,1 +1774082921.617667,0.75,4,3992.50,49.29,1734.98,1929.88,0.00,0.000000,0.037399,5536691,1018372,0.003886,0.007130,30280621,19712386,0,0,31918,0,1,1 +1774082926.616860,0.65,4,3992.50,49.28,1735.29,1929.58,0.00,3519005381556.754883,3519005386823.956543,199,0,0.004976,0.007741,30280742,19712540,0,0,31921,0,1,1 +1774082931.612966,0.55,4,3992.50,49.49,1727.17,1937.66,0.00,1.833264,0.000195,238,2,0.004934,0.007504,30280863,19712691,0,0,31923,0,1,1 +1774082936.616430,0.70,4,3992.50,49.50,1726.98,1937.88,0.00,3516001494626.588379,3516001494628.593750,21,0,0.004087,0.006807,30280952,19712812,0,0,31926,0,1,1 +1774082941.615115,0.60,4,3992.50,49.50,1726.99,1937.87,0.00,0.048060,0.000000,70,0,0.003879,0.007124,30281052,19712952,0,0,31928,0,1,1 +1774082946.613433,0.50,4,3992.50,49.50,1727.00,1937.86,0.00,62964.544584,57696.448623,5536691,1018522,0.003887,0.007143,30281153,19713094,0,0,31931,0,1,1 +1774082951.617340,0.65,4,3992.50,49.47,1727.82,1937.04,0.00,3515689931685.717285,3515689936947.802734,199,0,0.003875,0.007117,30281253,19713234,0,0,31933,0,1,1 +1774082956.616933,0.65,4,3992.50,49.48,1727.60,1937.26,0.00,1.831985,0.000195,238,2,0.002789,0.005628,30281326,19713344,0,0,31936,0,1,1 +1774082961.617523,21.42,4,3992.50,49.67,1716.12,1944.58,0.00,3518021904284.578613,3518021904286.585449,21,0,0.041017,87.522723,30284198,19722796,0,0,31938,0,1,1 +1774082966.616263,29.06,4,3992.50,49.34,1718.56,1931.77,0.00,1.538767,0.028327,237,176,0.026903,117.595662,30286231,19735001,0,0,31941,0,1,1 +1774082971.613027,1.30,4,3992.50,49.03,1732.52,1919.74,0.00,3520715441311.155273,3520715441312.666504,21,0,0.003211,0.007256,30286335,19735157,0,0,31943,0,1,1 +1774082976.615168,13.24,4,3992.50,49.11,1732.04,1922.81,0.00,0.174925,0.000000,199,0,40.045313,0.026278,30290680,19736789,0,0,31946,0,1,1 +1774082981.616381,11.39,4,3992.50,48.98,1736.03,1917.75,0.00,1.831392,0.000195,238,2,0.029950,40.061964,30292541,19741377,0,0,31948,0,1,1 +1774082986.617596,0.95,4,3992.50,48.75,1744.98,1908.80,0.00,3517582684630.213379,3517582684632.171875,70,0,0.002555,0.006244,30292613,19741498,0,0,31951,0,1,1 +1774082991.616848,0.60,4,3992.50,48.75,1744.98,1908.80,0.00,3518963841528.233887,0.000000,21,0,0.002289,0.006357,30292683,19741620,0,0,31953,0,1,1 +1774082996.617196,0.55,4,3992.50,48.78,1744.00,1909.78,0.00,1.538272,0.028318,237,176,0.002297,0.006374,30292754,19741744,0,0,31956,0,1,1 +1774083001.617758,0.70,4,3992.50,48.76,1744.52,1909.26,0.00,3518042210138.566895,3518042210139.901855,199,0,0.002289,0.006355,30292824,19741866,0,0,31958,0,1,1 +1774083006.616452,0.70,4,3992.50,48.77,1744.30,1909.48,0.00,0.000000,0.000000,199,0,0.002315,0.006374,30292896,19741989,0,0,31961,0,1,1 +1774083011.613853,0.50,4,3992.50,48.77,1744.30,1909.47,0.00,62997.760658,57948.854599,5537606,1020684,0.001819,0.005117,30292951,19742089,0,0,31963,0,1,1 +1774083016.613008,0.70,4,3992.50,48.77,1744.31,1909.47,0.00,3519031794725.903809,3519031799773.213867,21,0,0.002289,0.006367,30293021,19742212,0,0,31966,0,1,1 +1774083021.616399,0.65,4,3992.50,48.79,1743.57,1910.20,0.00,0.174881,0.000000,199,0,0.002287,0.006352,30293091,19742334,0,0,31968,0,1,1 +1774083026.612978,0.50,4,3992.50,48.79,1743.57,1910.20,0.00,63008.134252,57962.501181,5537606,1020788,0.002481,0.006590,30293176,19742472,0,0,31971,0,1,1 +1774083031.616920,0.75,4,3992.50,48.72,1746.46,1907.32,0.00,3515665274858.665039,3515665274862.749023,5536832,1020616,0.001941,0.005185,30293239,19742578,0,0,31973,0,1,1 +1774083036.613037,0.65,4,3992.50,48.72,1746.47,1907.31,0.00,3521172149487.006348,3521172154529.143066,70,0,0.002278,0.006371,30293308,19742701,0,0,31976,0,1,1 +1774083041.612973,0.70,4,3992.50,48.71,1746.47,1907.30,0.00,3518481628306.316895,0.000000,21,0,0.002276,0.006356,30293377,19742823,0,0,31978,0,1,1 +1774083046.612990,17.88,4,3992.50,55.13,1502.19,2158.45,0.00,0.048047,0.000000,70,0,24.842913,0.025727,30296160,19744120,0,0,31981,0,1,1 +1774083051.613834,36.29,4,3992.50,55.22,1503.05,2162.04,0.00,62950.406300,57913.277938,5536832,1020806,123.552871,0.034517,30308936,19746546,0,0,31983,0,1,1 +1774083056.613659,31.50,4,3992.50,55.08,1508.66,2156.43,0.00,3518559932404.364258,3518559937442.567383,21,0,120.774395,0.029245,30321431,19748475,0,0,31986,0,1,1 +1774083061.613424,31.03,4,3992.50,55.17,1505.29,2159.87,0.00,0.000000,0.000000,21,0,120.774110,0.035121,30333850,19750949,0,0,31988,0,1,1 +1774083066.612921,30.42,4,3992.50,55.03,1510.56,2154.52,0.00,0.000000,0.000000,21,0,119.978405,0.034711,30346225,19753507,0,0,31991,0,1,1 +1774083071.612954,30.52,4,3992.50,55.00,1511.60,2153.48,0.00,0.174999,0.000000,199,0,119.765849,0.034555,30358531,19756001,0,0,31993,0,1,1 +1774083076.613160,30.50,4,3992.50,55.15,1505.91,2159.20,0.00,62962.423496,57920.883597,5537606,1021079,119.961557,0.035201,30370791,19758435,0,0,31996,0,1,1 +1774083081.615152,30.41,4,3992.50,55.14,1506.12,2158.90,0.00,3517035754885.360840,3517035759925.100586,199,0,119.319326,0.034300,30383064,19760852,0,0,31998,0,1,1 +1774083086.613031,27.36,4,3992.50,55.21,1503.45,2161.73,0.00,1.363958,0.028332,237,176,119.217969,0.025414,30395453,19762684,0,0,32001,0,1,1 +1774083091.617488,1.20,4,3992.50,49.74,1717.73,1947.45,0.00,0.000000,0.000000,237,176,37.221490,0.009834,30399379,19763252,0,0,32003,0,1,1 +1774083096.614383,7.93,4,3992.50,49.50,1727.29,1937.85,0.00,63002.925696,57959.579501,5537625,1021435,6.052573,0.038032,30401573,19764908,0,0,32006,0,1,1 +1774083101.617184,14.17,4,3992.50,49.18,1739.41,1925.70,0.00,3516467757996.273926,3516467763035.001953,199,0,22.120134,0.096366,30408669,19770135,0,0,32008,0,1,1 +1774083106.612959,9.39,4,3992.50,49.82,1714.47,1950.59,0.00,63018.420796,57972.909478,5537625,1022027,12.092320,0.059151,30412665,19773193,0,0,32011,0,1,1 +1774083111.612974,1.86,4,3992.50,49.75,1717.40,1947.66,0.00,3518426220834.003418,0.547948,5536851,1022404,0.004786,0.009547,30412788,19773372,0,0,32013,0,1,1 +1774083116.613150,0.60,4,3992.50,49.52,1726.13,1938.93,0.00,3518313720661.992188,3518313725698.581055,21,0,0.004800,0.007963,30412890,19773517,0,0,32016,0,1,1 +1774083121.613306,0.60,4,3992.50,49.52,1726.27,1938.80,0.00,1.538331,0.028319,237,176,0.003878,0.007122,30412990,19773657,0,0,32018,0,1,1 +1774083126.612968,0.55,4,3992.50,49.52,1726.29,1938.78,0.00,3518675346495.496582,3518675346497.006836,21,0,0.003429,0.005874,30413077,19773775,0,0,32021,0,1,1 +1774083131.612968,0.65,4,3992.50,49.52,1726.40,1938.66,0.00,0.000000,0.000000,21,0,0.003878,0.007122,30413177,19773915,0,0,32023,0,1,1 +1774083136.617640,0.65,4,3992.50,49.52,1726.18,1938.88,0.00,0.000000,0.000000,21,0,0.003962,0.007250,30413284,19774064,0,0,32026,0,1,1 +1774083141.617716,0.65,4,3992.50,49.52,1726.20,1938.86,0.00,0.000000,0.000000,21,0,0.003947,0.007179,30413389,19774208,0,0,32028,0,1,1 +1774083146.617167,0.55,4,3992.50,49.42,1730.26,1934.76,0.00,1.538548,0.028323,237,176,0.003421,0.005866,30413475,19774325,0,0,32031,0,1,1 +1774083151.617566,0.70,4,3992.50,49.42,1730.32,1934.75,0.00,62954.673338,57920.392972,5536851,1022669,0.003878,0.007122,30413575,19774465,0,0,32033,0,1,1 +1774083156.616389,11.42,4,3992.50,49.79,1714.65,1949.40,0.00,3519265228327.874512,3519265233363.741699,237,176,0.028109,43.482783,30415415,19779346,0,0,32036,0,1,1 +1774083161.613117,29.03,4,3992.50,49.67,1711.48,1944.54,0.00,3520741885816.016602,3520741885817.479492,70,0,0.043216,119.258065,30418575,19791989,0,0,32038,0,1,1 +1774083166.613028,11.36,4,3992.50,49.94,1698.03,1955.21,0.00,62962.306507,58104.184153,5536851,1023889,0.031643,42.476442,30420777,19796638,0,0,32041,0,1,1 +1774083171.614568,14.80,4,3992.50,50.50,1677.55,1977.18,0.00,17.665651,27.123088,5536982,1024165,40.052294,0.022159,30425188,19797939,0,0,32043,0,1,1 +1774083176.617432,1.05,4,3992.50,49.79,1705.38,1949.34,0.00,3516422906512.352051,3516422911358.200195,21,0,0.006596,0.009365,30425334,19798110,0,0,32046,0,1,1 +1774083181.616930,0.55,4,3992.50,49.32,1723.91,1930.81,0.00,2.007037,0.000195,238,2,0.003878,0.007767,30425434,19798254,0,0,32048,0,1,1 +1774083186.616537,0.60,4,3992.50,48.85,1742.27,1912.45,0.00,62981.862552,58134.989057,5536982,1024322,0.003878,0.007133,30425534,19798395,0,0,32051,0,1,1 +1774083191.616384,0.50,4,3992.50,48.85,1742.21,1912.50,0.00,3518544466436.529785,3518544471285.127930,70,0,0.003899,0.007105,30425636,19798534,0,0,32053,0,1,1 +1774083196.617000,0.60,4,3992.50,48.85,1742.27,1912.43,0.00,1.490148,0.028317,237,176,0.003407,0.005890,30425721,19798653,0,0,32056,0,1,1 +1774083201.613444,2.76,4,3992.50,49.31,1723.98,1930.75,0.00,0.000000,0.000000,237,176,0.013744,7.226179,30426488,19799776,0,0,32058,0,1,1 +1774083206.612963,8.99,4,3992.50,49.00,1735.21,1918.60,0.00,62983.528603,58172.303222,5537015,1024784,0.014741,32.856594,30427435,19803217,0,0,32061,0,1,1 +1774083211.617507,0.65,4,3992.50,48.85,1741.20,1912.61,0.00,3515242685286.063477,3515242690091.961914,238,2,0.002287,0.006325,30427505,19803337,0,0,32063,0,1,1 +1774083216.617109,0.50,4,3992.50,48.88,1739.97,1913.83,0.00,3518717329041.602051,3518717329043.560547,70,0,0.001831,0.005124,30427561,19803438,0,0,32066,0,1,1 +1774083221.617250,0.55,4,3992.50,48.89,1739.74,1914.07,0.00,62977.171947,58165.132742,5537015,1024830,0.002289,0.006356,30427631,19803560,0,0,32068,0,1,1 +1774083226.613232,0.70,4,3992.50,48.82,1742.35,1911.46,0.00,3521267187638.645508,3521267192454.739746,21,0,0.003409,0.006987,30427724,19803697,0,0,32071,0,1,1 +1774083231.616423,0.75,4,3992.50,48.86,1740.98,1912.83,0.00,0.174888,0.000000,199,0,0.003351,0.006753,30427816,19803832,0,0,32073,0,1,1 +1774083236.617408,0.60,4,3992.50,48.81,1742.80,1911.01,0.00,0.000000,0.000000,199,0,0.001831,0.005098,30427872,19803931,0,0,32076,0,1,1 +1774083241.616480,0.65,4,3992.50,48.82,1742.59,1911.23,0.00,62990.528292,58181.657663,5537015,1024872,0.002314,0.006388,30427944,19804055,0,0,32078,0,1,1 +1774083246.617617,0.55,4,3992.50,48.68,1747.77,1906.05,0.00,3517637022781.943848,3517637027586.997070,238,2,0.002364,0.007102,30428020,19804188,0,0,32081,0,1,1 +1774083251.617723,0.65,4,3992.50,48.68,1747.77,1906.05,0.00,62975.666953,58169.630450,5537015,1024880,0.002444,0.006482,30428100,19804320,0,0,32083,0,1,1 +1774083256.617241,0.50,4,3992.50,48.71,1746.79,1907.02,0.00,3518776313715.520508,3518776318524.128906,21,0,0.001819,0.005099,30428155,19804419,0,0,32086,0,1,1 +1774083261.612949,0.65,4,3992.50,48.68,1747.73,1906.09,0.00,0.048088,0.000000,70,0,0.002278,0.006362,30428224,19804541,0,0,32088,0,1,1 +1774083266.616413,0.60,4,3992.50,48.70,1747.13,1906.68,0.00,1.957433,0.000195,238,2,0.002295,0.006370,30428295,19804665,0,0,32091,0,1,1 +1774083271.616204,1.25,4,3992.50,48.70,1747.00,1906.80,0.00,3518584323706.683105,3518584323708.641602,70,0,0.004808,0.007089,30428429,19804805,0,0,32093,0,1,1 +1774083276.614696,16.06,4,3992.50,55.71,1478.67,2181.11,0.00,63002.070370,58188.620565,5537789,1025244,3.681216,0.101492,30435794,19811247,0,0,32096,0,1,1 +1774083281.617244,1.98,4,3992.50,55.71,1478.86,2181.11,0.00,3516644548298.229004,3516644553107.774902,70,0,4.674720,0.128142,30445101,19819889,0,0,32098,0,1,1 +1774083286.612955,2.14,4,3992.50,55.86,1473.51,2186.87,0.00,3521458277094.862793,0.000000,21,0,4.701824,0.126424,30454376,19828507,0,0,32101,0,1,1 +1774083291.612918,2.08,4,3992.50,55.86,1473.61,2187.00,0.00,62983.580815,58171.579342,5537789,1025321,4.667012,0.127316,30463588,19837090,0,0,32103,0,1,1 +1774083296.613449,1.98,4,3992.50,55.64,1482.47,2178.35,0.00,3518063681282.181641,3518063681286.267578,5537015,1025158,4.670653,0.128714,30472890,19845728,0,0,32106,0,1,1 +1774083301.617694,2.23,4,3992.50,55.63,1483.09,2177.96,0.00,3515452448029.729492,3515452452833.482422,70,0,4.704044,0.124661,30482030,19854264,0,0,32108,0,1,1 +1774083306.616416,2.18,4,3992.50,55.49,1488.57,2172.67,0.00,0.126986,0.000000,199,0,4.701047,0.127894,30491385,19862873,0,0,32111,0,1,1 +1774083311.612958,2.44,4,3992.50,55.46,1490.16,2171.24,0.00,63026.537108,58211.468150,5537789,1025412,4.676296,0.127093,30500608,19871463,0,0,32113,0,1,1 +1774083316.613079,2.44,4,3992.50,55.40,1492.73,2169.15,0.00,3518351938454.845703,3518351943264.635742,238,2,4.680176,0.127805,30509804,19880028,0,0,32116,0,1,1 +1774083321.617405,2.13,4,3992.50,55.57,1486.40,2175.67,0.00,3515395595102.787109,3515395595104.792480,21,0,4.686532,0.126977,30519055,19888613,0,0,32118,0,1,1 +1774083326.613490,2.18,4,3992.50,55.88,1474.77,2187.88,0.00,2.008409,0.000195,238,2,4.684024,0.127011,30528282,19897175,0,0,32121,0,1,1 +1774083331.612966,1.73,4,3992.50,55.74,1480.21,2182.46,0.00,62987.703431,58177.340605,5537789,1025477,4.679645,0.127601,30537523,19905799,0,0,32123,0,1,1 +1774083336.612936,2.13,4,3992.50,55.84,1476.57,2186.41,0.00,3518458032874.350586,3518458037686.245605,21,0,4.695756,0.125638,30546710,19914352,0,0,32126,0,1,1 +1774083341.616889,1.93,4,3992.50,56.10,1466.62,2196.55,0.00,0.000000,0.000000,21,0,4.676652,0.128393,30556020,19922979,0,0,32128,0,1,1 +1774083346.617616,2.18,4,3992.50,55.68,1483.15,2180.04,0.00,2.006544,0.000195,238,2,4.716224,0.127019,30565193,19931594,0,0,32131,0,1,1 +1774083351.615963,1.93,4,3992.50,55.69,1482.63,2180.55,0.00,3519601291667.282227,3519601291669.290039,21,0,4.669529,0.128331,30574448,19940219,0,0,32133,0,1,1 +1774083356.613305,2.03,4,3992.50,55.59,1486.88,2176.31,0.00,0.175093,0.000000,199,0,4.661723,0.126976,30583593,19948784,0,0,32136,0,1,1 +1774083361.614575,1.82,4,3992.50,55.55,1488.48,2174.75,0.00,3517544256354.296387,0.000000,70,0,4.707280,0.128075,30592922,19957324,0,0,32138,0,1,1 +1774083366.612952,1.83,4,3992.50,55.38,1495.14,2168.11,0.00,1.490816,0.028330,237,176,4.683260,0.127009,30602184,19965848,0,0,32141,0,1,1 +1774083371.617518,2.18,4,3992.50,55.72,1481.75,2181.58,0.00,0.468030,3515227487707.285156,238,2,4.700469,0.127272,30611512,19974481,0,0,32143,0,1,1 +1774083376.617432,1.83,4,3992.50,55.80,1478.84,2184.52,0.00,3518497947303.857910,3518497947305.864746,21,0,4.694482,0.126079,30620759,19983011,0,0,32146,0,1,1 +1774083381.615986,2.03,4,3992.50,55.88,1475.53,2187.86,0.00,1.538824,0.028328,237,176,4.660992,0.127223,30629969,19991608,0,0,32148,0,1,1 +1774083386.612952,2.28,4,3992.50,55.72,1481.80,2181.74,0.00,0.468742,3520573993103.693848,238,2,4.710514,0.127909,30639305,20000258,0,0,32151,0,1,1 +1774083391.613079,1.93,4,3992.50,55.90,1475.22,2188.73,0.00,3518347934320.707520,3518347934322.714355,21,0,4.691851,0.126151,30648530,20008821,0,0,32153,0,1,1 +1774083396.613319,1.98,4,3992.50,55.84,1477.87,2186.28,0.00,62975.974955,58168.563477,5537015,1025534,4.665388,0.128921,30657776,20017446,0,0,32156,0,1,1 +1774083401.616785,2.03,4,3992.50,55.81,1479.36,2185.09,0.00,4.106431,0.033863,5537789,1025725,4.706972,0.128113,30667113,20026081,0,0,32158,0,1,1 +1774083406.617631,2.08,4,3992.50,55.73,1482.51,2182.12,0.00,3517841631597.369141,3517841636408.224609,70,0,4.678580,0.126593,30676349,20034649,0,0,32161,0,1,1 +1774083411.616958,2.23,4,3992.50,55.80,1480.08,2184.52,0.00,0.000000,0.000000,70,0,4.660896,0.128521,30685631,20043190,0,0,32163,0,1,1 +1774083416.617376,2.33,4,3992.50,55.86,1477.55,2187.09,0.00,1.958625,0.000195,238,2,4.710887,0.126776,30694807,20051737,0,0,32166,0,1,1 +1774083421.617415,2.18,4,3992.50,55.83,1478.76,2185.88,0.00,62976.516488,58170.961925,5537015,1025610,4.683642,0.127239,30704076,20060312,0,0,32168,0,1,1 +1774083426.615410,2.18,4,3992.50,55.86,1477.52,2187.14,0.00,4.110926,0.033119,5537789,1025803,4.699952,0.126240,30713270,20068920,0,0,32171,0,1,1 +1774083431.617095,1.98,4,3992.50,55.80,1480.04,2184.61,0.00,3517251486051.787109,3517251490861.791504,70,0,4.662319,0.126282,30722479,20077449,0,0,32173,0,1,1 +1774083436.613754,2.13,4,3992.50,56.13,1466.80,2197.81,0.00,1.491329,0.028339,237,176,4.687240,0.125884,30731692,20085998,0,0,32176,0,1,1 +1774083441.612993,2.13,4,3992.50,55.83,1478.77,2185.86,0.00,0.468528,3518972968294.826660,238,2,4.690894,0.127356,30740913,20094530,0,0,32178,0,1,1 +1774083446.617466,1.83,4,3992.50,55.69,1484.45,2180.23,0.00,0.000000,0.000000,238,2,4.686149,0.128269,30750184,20103224,0,0,32181,0,1,1 +1774083451.613871,2.13,4,3992.50,55.53,1490.61,2174.02,0.00,63026.433650,58213.360445,5537789,1025887,4.683586,0.126783,30759445,20111799,0,0,32183,0,1,1 +1774083456.613170,1.98,4,3992.50,55.73,1482.86,2181.79,0.00,0.000000,0.007521,5537789,1025901,4.711712,0.126386,30768696,20120413,0,0,32186,0,1,1 +1774083461.614427,2.12,4,3992.50,55.72,1483.05,2181.62,0.00,3517553431318.089355,3517553431322.175781,5537015,1025738,4.662815,0.127590,30777944,20128970,0,0,32188,0,1,1 +1774083466.617720,2.18,4,3992.50,55.80,1479.88,2184.88,0.00,3516121617374.381836,3516121622178.694336,70,0,4.691328,0.125261,30787209,20137539,0,0,32191,0,1,1 +1774083471.612946,2.08,4,3992.50,55.58,1488.50,2176.14,0.00,3521799706318.995117,0.000000,21,0,4.697329,0.127669,30796490,20146108,0,0,32193,0,1,1 +1774083476.617177,2.18,4,3992.50,55.82,1479.30,2185.37,0.00,62929.856583,58122.349788,5537789,1025959,4.673482,0.127772,30805780,20154721,0,0,32196,0,1,1 +1774083481.613171,2.18,4,3992.50,55.72,1483.19,2181.59,0.00,3521258561365.069824,3521258566180.329102,199,0,4.685815,0.126851,30814958,20163295,0,0,32198,0,1,1 +1774083486.612926,2.49,4,3992.50,55.77,1481.31,2183.36,0.00,62986.026040,58174.401359,5537789,1025985,4.707813,0.128725,30824275,20171847,0,0,32201,0,1,1 +1774083491.613098,1.98,4,3992.50,55.61,1487.54,2177.15,0.00,3518316317770.284668,3518316322581.508301,199,0,4.673128,0.127049,30833477,20180323,0,0,32203,0,1,1 +1774083496.612950,1.87,4,3992.50,55.75,1481.90,2182.77,0.00,62984.808660,58173.307252,5537789,1026026,4.700487,0.126175,30842745,20188922,0,0,32206,0,1,1 +1774083501.617371,2.58,4,3992.50,55.46,1493.38,2171.23,0.00,3515328519798.104004,3515328524605.338867,70,0,4.672966,0.126094,30851979,20197449,0,0,32208,0,1,1 +1774083506.617867,1.93,4,3992.50,55.88,1476.71,2187.91,0.00,62972.708404,58165.793472,5537015,1025873,4.688482,0.126632,30861180,20206025,0,0,32211,0,1,1 +1774083511.617279,1.73,4,3992.50,55.72,1483.21,2181.40,0.00,0.000000,0.005274,5537015,1025887,4.693603,0.127050,30870438,20214649,0,0,32213,0,1,1 +1774083516.617780,2.23,4,3992.50,55.50,1491.56,2173.06,0.00,3518084574022.487305,3518084578829.392090,70,0,4.677745,0.128048,30879703,20223278,0,0,32216,0,1,1 +1774083521.613865,1.93,4,3992.50,55.55,1489.78,2174.81,0.00,1.960324,0.000195,238,2,4.688312,0.125495,30888853,20231814,0,0,32218,0,1,1 +1774083526.613492,1.93,4,3992.50,55.61,1487.37,2177.32,0.00,0.000000,0.000000,238,2,4.661470,0.128696,30898110,20240430,0,0,32221,0,1,1 +1774083531.612931,1.88,4,3992.50,55.47,1492.97,2171.63,0.00,3518832117557.191406,3518832117559.023926,199,0,4.702485,0.129362,30907342,20249000,0,0,32223,0,1,1 +1774083536.612943,2.33,4,3992.50,55.76,1481.55,2183.05,0.00,0.000000,0.000000,199,0,4.693200,0.127277,30916609,20257565,0,0,32226,0,1,1 +1774083541.613201,2.13,4,3992.50,55.69,1484.14,2180.50,0.00,0.000000,0.000000,199,0,4.687504,0.126599,30925870,20266148,0,0,32228,0,1,1 +1774083546.612955,2.03,4,3992.50,55.48,1492.27,2172.35,0.00,3518610468077.409180,0.000000,70,0,4.703817,0.127982,30935184,20274758,0,0,32231,0,1,1 +1774083551.617364,1.97,4,3992.50,55.55,1489.63,2175.01,0.00,1.489019,0.028295,237,176,4.677693,0.127601,30944432,20283319,0,0,32233,0,1,1 +1774083556.613443,2.03,4,3992.50,55.66,1485.56,2179.07,0.00,3521198326971.690430,3521198326973.201660,21,0,4.695319,0.125499,30953684,20291874,0,0,32236,0,1,1 +1774083561.614675,1.88,4,3992.50,55.56,1489.30,2175.32,0.00,0.000000,0.000000,21,0,4.672809,0.126542,30962870,20300478,0,0,32238,0,1,1 +1774083566.613761,1.98,4,3992.50,55.53,1490.40,2174.21,0.00,0.175032,0.000000,199,0,4.689981,0.128063,30972175,20309071,0,0,32241,0,1,1 +1774083571.614102,4.51,4,3992.50,55.77,1481.00,2183.68,0.00,62974.539966,58167.747294,5537015,1026110,4.694291,0.130715,30981521,20317696,0,0,32243,0,1,1 +1774083576.617635,11.66,4,3992.50,55.86,1477.38,2187.20,0.00,4.107157,0.475738,5537790,1026820,14.814703,0.223289,30999913,20332305,0,0,32246,0,1,1 +1774083581.617115,12.68,4,3992.50,56.02,1471.36,2193.18,0.00,3518802641819.382812,3518802646630.636719,199,0,20.911481,0.267634,31023314,20350579,0,0,32248,0,1,1 +1774083586.613613,10.22,4,3992.50,56.34,1458.72,2205.74,0.00,3520903284752.698730,0.000000,21,0,18.887623,0.251836,31045003,20367922,0,0,32251,0,1,1 +1774083591.616989,3.24,4,3992.50,55.81,1479.49,2184.96,0.00,0.000000,0.000000,21,0,4.681020,0.133156,31054437,20376635,0,0,32253,0,1,1 +1774083596.616698,2.14,4,3992.50,56.06,1469.42,2195.05,0.00,0.000000,0.000000,21,0,4.712482,2.072605,31067138,20389083,0,0,32256,0,1,1 +1774083601.614181,3.63,4,3992.50,56.05,1469.74,2194.62,0.00,1.539154,0.028335,237,176,4.626848,4.404291,31084077,20405787,0,0,32258,0,1,1 +1774083606.617754,3.37,4,3992.50,56.52,1451.48,2212.86,0.00,3515924906146.344727,3515924906147.854004,21,0,4.694180,4.643655,31101347,20422953,0,0,32261,0,1,1 +1774083611.616380,3.37,4,3992.50,56.23,1462.71,2201.60,0.00,62996.307232,58189.992440,5537017,1027884,4.423051,4.570220,31117870,20439399,0,0,32263,0,1,1 +1774083616.614853,3.57,4,3992.50,56.31,1457.86,2204.47,0.00,3519512719549.824707,3519512724356.288574,21,0,4.712712,4.630438,31135245,20456603,0,0,32266,0,1,1 +1774083621.616642,3.32,4,3992.50,56.19,1464.23,2200.02,0.00,62956.473591,58169.007295,5537017,1028010,4.355186,4.674872,31151792,20473079,0,0,32268,0,1,1 +1774083626.617654,3.27,4,3992.50,56.55,1450.13,2214.07,0.00,3517725408745.518066,3517725413531.722656,238,2,4.695576,4.638293,31169091,20490363,0,0,32271,0,1,1 +1774083631.615979,3.32,4,3992.50,56.28,1460.47,2203.49,0.00,3519615914876.719727,3519615914878.552734,199,0,4.573031,4.657973,31186016,20507252,0,0,32273,0,1,1 +1774083636.613811,3.32,4,3992.50,56.49,1452.11,2211.52,0.00,1.832631,0.000195,238,2,4.513261,4.556069,31202827,20524000,0,0,32276,0,1,1 +1774083641.616831,3.22,4,3992.50,56.42,1454.48,2208.86,0.00,62938.984574,58154.842936,5537017,1028140,4.682611,4.675192,31219965,20541077,0,0,32278,0,1,1 +1774083646.613346,3.73,4,3992.50,56.36,1456.48,2206.56,0.00,3520891460758.063965,3520891465548.931641,237,176,4.616591,4.676907,31237165,20558297,0,0,32281,0,1,1 +1774083651.617530,3.22,4,3992.50,56.29,1458.72,2204.00,0.00,62928.911595,58168.504311,5537791,1028498,4.634659,4.675343,31254343,20575320,0,0,32283,0,1,1 +1774083656.617290,3.52,4,3992.50,56.46,1451.90,2210.49,0.00,3518606003802.380371,3518606008568.335449,199,0,4.703347,4.582708,31271501,20592389,0,0,32286,0,1,1 +1774083661.616625,3.52,4,3992.50,56.23,1460.63,2201.41,0.00,1.363560,0.028324,237,176,4.640466,4.595832,31288565,20609398,0,0,32288,0,1,1 +1774083666.612927,3.32,4,3992.50,56.20,1461.47,2200.27,0.00,0.000000,0.000000,237,176,4.616443,4.676101,31305719,20626524,0,0,32291,0,1,1 +1774083671.616538,3.47,4,3992.50,56.24,1459.59,2202.08,0.00,62936.131300,58175.284428,5537791,1028614,4.749796,4.283475,31322399,20643159,0,0,32293,0,1,1 +1774083676.613897,3.43,4,3992.50,56.30,1456.96,2204.29,0.00,3520296623923.372070,1.395561,5537017,1028461,4.606775,4.559047,31339353,20660079,0,0,32296,0,1,1 +1774083681.615424,3.72,4,3992.50,56.32,1455.63,2205.23,0.00,3517362540294.639160,3517362545053.476074,21,0,4.529337,4.673365,31356132,20676750,0,0,32298,0,1,1 +1774083686.613887,3.42,4,3992.50,56.37,1453.62,2206.99,0.00,2.007453,0.000195,238,2,4.595555,4.634897,31373188,20693777,0,0,32301,0,1,1 +1774083691.616836,4.28,4,3992.50,56.25,1458.03,2202.46,0.00,3516363421597.669922,3516363421599.675781,21,0,4.759406,4.675613,31390520,20711102,0,0,32303,0,1,1 +1774083696.613402,3.83,4,3992.50,56.36,1453.68,2206.60,0.00,0.175120,0.000000,199,0,4.662000,4.631798,31407716,20728223,0,0,32306,0,1,1 +1774083701.613841,3.32,4,3992.50,56.15,1461.86,2198.36,0.00,1.831675,0.000195,238,2,4.617830,4.588032,31424824,20745250,0,0,32308,0,1,1 +1774083706.616408,4.05,4,3992.50,56.23,1458.55,2201.62,0.00,62944.685707,58213.914242,5537017,1028720,4.706752,4.408681,31441561,20761850,0,0,32311,0,1,1 +1774083711.615043,3.68,4,3992.50,56.12,1462.82,2197.25,0.00,3519397792280.556641,3519397797015.545898,237,176,4.416252,4.549779,31458171,20778419,0,0,32313,0,1,1 +1774083716.617311,3.37,4,3992.50,56.14,1462.16,2198.06,0.00,0.000000,0.000000,237,176,4.711136,4.593414,31475366,20795612,0,0,32316,0,1,1 +1774083721.616565,3.01,4,3992.50,56.12,1462.75,2197.36,0.00,0.000000,0.000000,237,176,4.023705,4.673889,31491338,20811488,0,0,32318,0,1,1 +1774083726.613210,3.31,4,3992.50,56.35,1454.06,2206.04,0.00,63023.875386,58310.214869,5537791,1029147,4.548115,4.553291,31508192,20828275,0,0,32321,0,1,1 +1774083731.616378,3.11,4,3992.50,56.13,1462.50,2197.53,0.00,3516209422589.022949,3516209427296.537109,237,176,4.500965,4.657637,31525056,20845112,0,0,32323,0,1,1 +1774083736.617597,3.21,4,3992.50,56.05,1465.50,2194.55,0.00,3517579580065.746094,3517579580067.081055,199,0,4.587109,4.671093,31542133,20862171,0,0,32326,0,1,1 +1774083741.616592,2.91,4,3992.50,56.05,1465.55,2194.44,0.00,62991.484290,58309.835309,5537017,1029182,4.728370,4.314054,31558759,20878762,0,0,32328,0,1,1 +1774083746.613034,3.06,4,3992.50,56.12,1462.84,2197.27,0.00,4.112204,0.036647,5537791,1029380,4.393506,4.593421,31575286,20895347,0,0,32331,0,1,1 +1774083751.615033,3.16,4,3992.50,56.06,1465.23,2194.74,0.00,3517031032672.782715,3517031037355.867188,21,0,4.501312,4.655551,31592059,20911994,0,0,32333,0,1,1 +1774083756.613024,2.91,4,3992.50,56.15,1461.69,2198.33,0.00,2.007643,0.000195,238,2,4.395824,4.634514,31608739,20928655,0,0,32336,0,1,1 +1774083761.613009,3.26,4,3992.50,56.21,1459.29,2200.64,0.00,62977.193451,58298.370452,5537017,1029262,4.642012,4.652521,31625945,20945680,0,0,32338,0,1,1 +1774083766.613590,3.01,4,3992.50,56.04,1465.80,2194.05,0.00,3518027890905.220703,3518027895585.491699,21,0,4.697786,4.509005,31642880,20962705,0,0,32341,0,1,1 +1774083771.614929,3.36,4,3992.50,56.36,1453.20,2206.78,0.00,0.000000,0.000000,21,0,4.688673,4.577265,31659989,20979610,0,0,32343,0,1,1 +1774083776.615208,3.01,4,3992.50,56.04,1465.73,2194.08,0.00,0.048044,0.000000,70,0,4.436307,4.621944,31676619,20996278,0,0,32346,0,1,1 +1774083781.617458,3.05,4,3992.50,56.06,1464.75,2195.03,0.00,3516854808502.518066,0.000000,21,0,4.650228,4.589993,31693664,21013197,0,0,32348,0,1,1 +1774083786.612947,3.01,4,3992.50,56.17,1460.66,2199.16,0.00,0.000000,0.000000,21,0,4.541241,4.638893,31710558,21030040,0,0,32351,0,1,1 +1774083791.612977,2.86,4,3992.50,56.05,1465.40,2194.36,0.00,2.006824,0.000195,238,2,4.761541,4.631678,31727957,21047271,0,0,32353,0,1,1 +1774083796.616890,3.11,4,3992.50,56.24,1457.81,2201.86,0.00,3515685465696.578125,0.028103,237,176,4.622001,4.593083,31744897,21064243,0,0,32356,0,1,1 +1774083801.614898,2.96,4,3992.50,56.03,1466.13,2193.51,0.00,63006.684383,58375.238928,5537791,1029941,4.635890,4.614810,31762014,21081238,0,0,32358,0,1,1 +1774083806.617686,3.01,4,3992.50,56.07,1464.44,2195.21,0.00,3516476357278.680664,3516476361905.204590,238,2,4.486449,4.675111,31778872,21098079,0,0,32361,0,1,1 +1774083811.613766,2.81,4,3992.50,56.06,1464.68,2194.94,0.00,63030.529369,58397.810455,5537791,1029986,4.565717,4.645308,31795888,21115025,0,0,32363,0,1,1 +1774083816.613408,3.01,4,3992.50,56.24,1457.75,2201.90,0.00,3518688789151.313965,3518688793782.690430,70,0,4.732870,4.511272,31812863,21131965,0,0,32366,0,1,1 +1774083821.612930,2.81,4,3992.50,56.00,1466.99,2192.71,0.00,0.000000,0.000000,70,0,4.072409,4.675833,31829018,21148175,0,0,32368,0,1,1 +1774083826.612927,3.27,4,3992.50,55.99,1467.65,2191.95,0.00,1.490333,0.028320,237,176,4.570437,4.637969,31846073,21165114,0,0,32371,0,1,1 +1774083831.617375,2.74,4,3992.50,56.25,1457.57,2202.20,0.00,62921.503605,58326.171716,5537019,1030024,4.669388,2.233795,31859014,21177720,0,0,32373,0,1,1 +1774083836.617842,2.23,4,3992.50,56.13,1462.30,2197.48,0.00,3518108685428.152832,3518108690027.143066,237,176,4.670921,0.241100,31868612,21186592,0,0,32376,0,1,1 +1774083841.617336,3.35,4,3992.50,55.81,1477.62,2184.92,0.00,3518793525432.840820,3518793525434.351074,21,0,4.720729,0.128246,31877836,21195209,0,0,32378,0,1,1 +1774083846.614087,13.39,4,3992.50,61.42,1259.50,2404.87,0.00,0.000000,0.000000,21,0,44.177585,0.166988,31893012,21206745,0,0,32381,0,1,1 +1774083851.617113,2.28,4,3992.50,56.86,1438.12,2226.27,0.00,2.005622,0.000195,238,2,5.271460,0.129357,31902352,21215420,0,0,32383,0,1,1 +1774083856.612927,2.79,4,3992.50,56.77,1441.82,2222.60,0.00,3521385730651.241699,3521385730653.250488,21,0,4.720119,0.226648,31911855,21224344,0,0,32386,0,1,1 +1774083861.616720,2.49,4,3992.50,56.37,1457.30,2207.10,0.00,62953.056066,58334.914080,5537927,1030514,4.611862,4.489133,31928956,21241356,0,0,32388,0,1,1 +1774083866.616107,2.95,4,3992.50,56.45,1454.17,2209.96,0.00,3518868763991.014648,3518868768613.227051,21,0,4.576851,4.259317,31945273,21257582,0,0,32391,0,1,1 +1774083871.617622,36.63,4,3992.50,55.39,1495.55,2168.60,0.00,0.048032,0.000000,70,0,117.191457,31.816819,31967410,21272276,0,0,32393,0,1,1 +1774083876.612955,31.28,4,3992.50,55.44,1494.93,2170.71,0.00,1.491724,0.028347,237,176,127.941160,0.049141,31981619,21275829,0,0,32396,0,1,1 +1774083881.617621,30.16,4,3992.50,55.34,1499.10,2166.57,0.00,0.000000,0.000000,237,176,125.550616,0.037860,31994687,21278524,0,0,32398,0,1,1 +1774083886.616998,19.16,4,3992.50,55.27,1501.89,2163.86,0.00,63007.133423,58417.042887,5537927,1030973,122.432002,0.039567,32007802,21281430,0,0,32401,0,1,1 +1774083891.616934,1.70,4,3992.50,49.91,1711.81,1953.94,0.00,3518482022713.369141,3518482027304.281250,199,0,2.121110,0.006608,32008169,21281637,0,0,32403,0,1,1 +1774083896.617042,0.55,4,3992.50,49.18,1740.25,1925.50,0.00,1.831796,0.000195,238,2,0.002410,0.006498,32008249,21281769,0,0,32406,0,1,1 +1774083901.616431,0.70,4,3992.50,48.96,1748.85,1916.90,0.00,3518866889975.669434,3518866889977.627930,70,0,0.002289,0.006988,32008319,21281894,0,0,32408,0,1,1 +1774083906.616603,0.55,4,3992.50,48.95,1749.43,1916.32,0.00,3518316526404.316406,0.000000,21,0,0.001831,0.005111,32008375,21281994,0,0,32411,0,1,1 +1774083911.616457,0.55,4,3992.50,48.95,1749.20,1916.55,0.00,63002.760440,58421.720541,5537952,1031192,0.002289,0.006356,32008445,21282116,0,0,32413,0,1,1 +1774083916.617174,0.90,4,3992.50,49.14,1741.85,1923.88,0.00,3517932745062.900879,3517932745066.983398,5537178,1031015,0.002457,0.006491,32008526,21282249,0,0,32416,0,1,1 +1774083921.617281,0.55,4,3992.50,48.95,1749.07,1916.70,0.00,4.109189,0.039452,5537952,1031198,0.002264,0.006356,32008594,21282371,0,0,32418,0,1,1 +1774083926.617644,0.50,4,3992.50,48.95,1749.07,1916.69,0.00,3518181639349.536621,3518181643928.586426,237,176,0.001839,0.005106,32008651,21282471,0,0,32421,0,1,1 +1774083931.614263,0.75,4,3992.50,48.96,1748.82,1916.94,0.00,3520818461636.087402,3520818461637.423340,199,0,0.002290,0.006360,32008721,21282593,0,0,32423,0,1,1 +1774083936.613458,29.89,4,3992.50,55.65,1487.09,2178.66,0.00,63010.877090,58429.460887,5537952,1031244,59.698325,0.031620,32015015,21284496,0,0,32426,0,1,1 +1774083941.617500,30.33,4,3992.50,55.67,1486.23,2179.53,0.00,3515595461245.082520,3515595465820.231934,238,2,119.879155,0.047899,32027460,21288044,0,0,32428,0,1,1 +1774083946.612884,28.48,4,3992.50,55.40,1496.71,2169.14,0.00,0.000000,0.000000,238,2,118.481788,0.051176,32039615,21291825,0,0,32431,0,1,1 +1774083951.616101,28.79,4,3992.50,55.68,1485.88,2179.98,0.00,0.000000,0.000000,238,2,120.095411,0.043457,32051875,21294935,0,0,32433,0,1,1 +1774083956.615113,28.25,4,3992.50,55.47,1494.04,2171.72,0.00,63007.256380,58431.772194,5537178,1031221,118.802196,0.070736,32064137,21300395,0,0,32436,0,1,1 +1774083961.613612,28.90,4,3992.50,55.55,1490.73,2175.09,0.00,3519493285287.560547,3519493289864.010254,237,176,119.620347,0.076046,32076665,21306183,0,0,32438,0,1,1 +1774083966.616910,28.79,4,3992.50,55.44,1495.16,2170.63,0.00,62953.750846,58381.799580,5537178,1031251,119.302566,0.064138,32089145,21310829,0,0,32441,0,1,1 +1774083971.617026,28.89,4,3992.50,55.50,1492.94,2172.83,0.00,3518355335680.785156,3518355340257.155273,21,0,118.975240,0.061615,32101500,21315345,0,0,32443,0,1,1 +1774083976.612953,20.07,4,3992.50,55.38,1497.46,2168.45,0.00,2.008472,0.000195,238,2,119.476822,0.063929,32113940,21320229,0,0,32446,0,1,1 +1774083981.617425,0.95,4,3992.50,50.06,1705.99,1959.91,0.00,3515293425024.978516,0.028100,237,176,11.211875,0.011088,32115245,21320755,0,0,32448,0,1,1 +1774083986.616374,17.68,4,3992.50,50.57,1685.75,1980.11,0.00,63012.755270,58433.082839,5537967,1032063,22.149242,0.106428,32122636,21326343,0,0,32451,0,1,1 +1774083991.613975,13.07,4,3992.50,50.74,1679.34,1986.49,0.00,3520126050969.569336,3520126055549.980469,238,2,18.127914,0.087939,32128690,21330993,0,0,32453,0,1,1 +1774083996.617928,1.05,4,3992.50,50.02,1707.28,1958.54,0.00,62949.282017,58375.427571,5537967,1032822,0.005181,0.007742,32128792,21331133,0,0,32456,0,1,1 +1774084001.617183,0.65,4,3992.50,49.16,1741.27,1924.57,0.00,3518961479588.162598,3518961484168.273438,70,0,0.003678,0.006978,32128887,21331271,0,0,32458,0,1,1 +1774084006.615907,0.45,4,3992.50,49.19,1740.05,1925.79,0.00,1.490712,0.028328,237,176,0.003235,0.006884,32128973,21331404,0,0,32461,0,1,1 +1774084011.617637,26.11,4,3992.50,49.71,1715.04,1946.08,0.00,0.468295,3517220413819.018066,238,2,0.058176,102.920164,32133161,21342450,0,0,32463,0,1,1 +1774084016.612961,26.03,4,3992.50,49.27,1725.18,1929.23,0.00,3521731181959.982422,3521731181961.815918,199,0,0.028326,102.245318,32135076,21353193,0,0,32466,0,1,1 +1774084021.617616,1.40,4,3992.50,48.90,1739.78,1914.63,0.00,3515164627172.839355,0.000000,21,0,0.005837,0.006741,32135189,21353324,0,0,32468,0,1,1 +1774084026.612940,14.93,4,3992.50,49.36,1723.41,1932.68,0.00,2.008715,0.000195,238,2,40.107986,0.033666,32139832,21355483,0,0,32471,0,1,1 +1774084031.617462,1.05,4,3992.50,49.36,1723.42,1932.66,0.00,3515257656924.401367,3515257656926.406738,21,0,0.003976,0.007011,32139926,21355605,0,0,32473,0,1,1 +1774084036.614313,0.60,4,3992.50,49.41,1721.50,1934.59,0.00,63058.440172,58664.222015,5538077,1034673,0.003880,0.007781,32140026,21355750,0,0,32476,0,1,1 +1774084041.615679,0.55,4,3992.50,49.41,1721.52,1934.57,0.00,3517475872470.668457,3517475876860.919434,21,0,0.003877,0.007120,32140126,21355890,0,0,32478,0,1,1 +1774084046.616854,0.55,4,3992.50,49.41,1721.52,1934.56,0.00,63003.915898,58613.554959,5538077,1034719,0.003648,0.006472,32140219,21356017,0,0,32481,0,1,1 +1774084051.617498,1.50,4,3992.50,49.41,1721.54,1934.55,0.00,3517984269108.040039,0.019529,5537303,1034592,0.003661,0.006488,32140313,21356145,0,0,32483,0,1,1 +1774084056.617537,0.60,4,3992.50,49.36,1723.32,1932.73,0.00,3518409840899.181641,3518409845284.404785,238,2,0.003903,0.007151,32140415,21356287,0,0,32486,0,1,1 +1774084061.617030,0.80,4,3992.50,49.36,1723.35,1932.73,0.00,3518794012482.782715,3518794012484.790039,21,0,0.003918,0.007156,32140518,21356430,0,0,32488,0,1,1 +1774084066.617595,0.60,4,3992.50,49.36,1723.36,1932.72,0.00,0.174980,0.000000,199,0,0.003940,0.007182,32140622,21356575,0,0,32491,0,1,1 +1774084071.616982,0.50,4,3992.50,49.40,1722.15,1933.94,0.00,1.832060,0.000195,238,2,0.003421,0.005856,32140708,21356691,0,0,32493,0,1,1 +1774084076.617388,0.55,4,3992.50,49.39,1722.17,1933.92,0.00,63011.603872,58622.842284,5538077,1034978,0.003952,0.007172,32140813,21356835,0,0,32496,0,1,1 +1774084081.612954,0.55,4,3992.50,49.36,1723.50,1932.59,0.00,3521560222532.942871,3521560226926.453613,237,176,0.003894,0.007116,32140914,21356974,0,0,32498,0,1,1 +1774084086.617380,0.50,4,3992.50,49.40,1722.00,1934.05,0.00,3515325111948.986816,3515325111950.447754,70,0,0.003862,0.007126,32141013,21357115,0,0,32501,0,1,1 +1774084091.616430,11.66,4,3992.50,49.51,1716.52,1938.41,0.00,3519105918539.468262,0.000000,21,0,0.025699,40.073524,32142703,21361568,0,0,32503,0,1,1 +1774084096.617835,0.80,4,3992.50,49.72,1708.39,1946.50,0.00,0.000000,0.000000,21,0,0.002420,0.006056,32142775,21361685,0,0,32506,0,1,1 +1774084101.616426,0.55,4,3992.50,49.48,1717.82,1937.11,0.00,1.538812,0.028328,237,176,0.002289,0.007002,32142845,21361811,0,0,32508,0,1,1 +1774084106.614271,0.70,4,3992.50,49.47,1718.14,1936.79,0.00,63040.253021,58689.071215,5537303,1035215,0.002277,0.006369,32142914,21361934,0,0,32511,0,1,1 +1774084111.617437,0.55,4,3992.50,49.28,1725.53,1929.40,0.00,3516210446532.990234,3516210450879.047363,238,2,0.002287,0.006352,32142984,21362056,0,0,32513,0,1,1 +1774084116.613030,0.50,4,3992.50,49.29,1725.29,1929.64,0.00,63068.196787,58715.604069,5537303,1035228,0.001845,0.005103,32143041,21362155,0,0,32516,0,1,1 +1774084121.613321,0.50,4,3992.50,49.10,1732.69,1922.24,0.00,0.000000,0.042185,5537303,1035268,0.002297,0.006364,32143112,21362278,0,0,32518,0,1,1 +1774084126.617099,0.70,4,3992.50,49.13,1731.46,1923.43,0.00,3515781011987.620605,3515781016335.056641,21,0,0.002312,0.006392,32143184,21362403,0,0,32521,0,1,1 +1774084131.613029,0.70,4,3992.50,49.13,1731.28,1923.64,0.00,63070.053436,58715.717526,5538077,1035473,0.003451,0.007039,32143280,21362543,0,0,32523,0,1,1 +1774084136.617399,0.60,4,3992.50,49.13,1731.28,1923.64,0.00,3515364698839.801270,3515364703184.789062,238,2,0.003668,0.006543,32143369,21362666,0,0,32526,0,1,1 +1774084141.616419,0.65,4,3992.50,49.13,1731.29,1923.64,0.00,3519127088702.105957,3519127088704.113281,21,0,0.002401,0.006458,32143446,21362796,0,0,32528,0,1,1 +1774084146.617567,0.60,4,3992.50,49.13,1731.29,1923.63,0.00,1.538026,0.028314,237,176,0.002259,0.006373,32143514,21362920,0,0,32531,0,1,1 +1774084151.613119,0.45,4,3992.50,49.13,1731.29,1923.63,0.00,3521569780429.808594,3521569780431.145020,199,0,0.002278,0.006362,32143583,21363042,0,0,32533,0,1,1 +1774084156.616387,1.00,4,3992.50,48.90,1740.34,1914.59,0.00,0.000000,0.000000,199,0,0.002622,0.005828,32143657,21363159,0,0,32536,0,1,1 +1774084161.617174,38.83,4,3992.50,55.35,1497.40,2167.07,0.00,3517883938611.617188,0.000000,21,0,92.719061,0.042266,32153328,21365960,0,0,32538,0,1,1 +1774084166.617673,28.86,4,3992.50,55.56,1490.44,2175.11,0.00,2.006635,0.000195,238,2,119.754913,0.032613,32165612,21368150,0,0,32541,0,1,1 +1774084171.613722,28.37,4,3992.50,55.59,1489.18,2176.39,0.00,3521219872604.349609,3521219872606.358398,21,0,118.256496,0.023743,32177630,21369766,0,0,32543,0,1,1 +1774084176.613084,28.51,4,3992.50,55.57,1489.68,2175.88,0.00,0.175022,0.000000,199,0,120.180071,0.024849,32189892,21371570,0,0,32546,0,1,1 +1774084181.616316,28.60,4,3992.50,55.74,1483.21,2182.36,0.00,3516164195087.603516,0.000000,21,0,118.885034,0.020029,32201909,21373016,0,0,32548,0,1,1 +1774084186.618423,28.41,4,3992.50,55.49,1493.04,2172.51,0.00,2.005990,0.000195,238,2,119.312970,0.028485,32213978,21375022,0,0,32551,0,1,1 +1774084191.617745,28.71,4,3992.50,55.63,1487.62,2177.91,0.00,0.000000,0.000000,238,2,119.582185,0.027109,32226189,21376961,0,0,32553,0,1,1 +1774084196.613329,28.44,4,3992.50,55.34,1499.05,2166.52,0.00,3521547872408.357910,3521547872410.191406,199,0,118.873147,0.034014,32238371,21379445,0,0,32556,0,1,1 +1774084201.617284,12.37,4,3992.50,50.49,1688.75,1976.88,0.00,3515656181404.761230,0.000000,21,0,97.862083,0.035520,32248402,21382161,0,0,32558,0,1,1 +1774084206.616577,0.90,4,3992.50,49.69,1720.19,1945.42,0.00,1.538596,0.028324,237,176,0.005947,0.007150,32248541,21382318,0,0,32561,0,1,1 +1774084211.615772,19.49,4,3992.50,49.72,1718.73,1946.84,0.00,3519003443280.159668,3519003443281.622070,70,0,20.140236,0.097274,32255181,21387253,0,0,32563,0,1,1 +1774084216.617588,13.02,4,3992.50,49.35,1733.57,1931.98,0.00,62995.847837,58647.882396,5538087,1036873,20.106167,0.085104,32261554,21392027,0,0,32566,0,1,1 +1774084221.617694,1.85,4,3992.50,49.29,1735.62,1929.90,0.00,0.000000,0.050878,5538087,1036948,0.011963,0.011933,32261801,21392276,0,0,32568,0,1,1 +1774084226.616953,0.75,4,3992.50,49.65,1721.55,1943.93,0.00,3518958511942.388672,3518958516292.575195,21,0,0.003429,0.005874,32261888,21392394,0,0,32571,0,1,1 +1774084231.617890,0.60,4,3992.50,49.64,1722.20,1943.34,0.00,63002.865569,58658.235623,5537313,1036781,0.003890,0.007765,32261989,21392538,0,0,32573,0,1,1 +1774084236.617508,0.55,4,3992.50,49.66,1721.23,1944.30,0.00,3518705937002.105957,3518705941345.874512,238,2,0.003853,0.007133,32262087,21392679,0,0,32576,0,1,1 +1774084241.617882,0.70,4,3992.50,49.66,1721.24,1944.29,0.00,3518173953071.585449,3518173953073.543945,70,0,0.003878,0.007122,32262187,21392819,0,0,32578,0,1,1 +1774084246.613738,1.61,4,3992.50,48.81,1754.47,1911.07,0.00,1.491568,0.028344,237,176,0.003423,0.005870,32262273,21392936,0,0,32581,0,1,1 +1774084251.614552,0.50,4,3992.50,48.86,1752.52,1913.02,0.00,3517864434415.935547,3517864434417.397461,70,0,0.003991,0.007277,32262382,21393086,0,0,32583,0,1,1 +1774084256.617403,0.60,4,3992.50,49.26,1737.00,1928.49,0.00,0.000000,0.000000,70,0,0.003896,0.007149,32262484,21393229,0,0,32586,0,1,1 +1774084261.617656,0.50,4,3992.50,49.08,1743.92,1921.61,0.00,1.490256,0.028319,237,176,0.003878,0.007122,32262584,21393369,0,0,32588,0,1,1 +1774084266.616444,0.75,4,3992.50,49.16,1740.84,1924.69,0.00,3519290595323.398438,3519290595324.909180,21,0,0.006346,0.209185,32262735,21393575,0,0,32591,0,1,1 +1774084271.616888,25.93,4,3992.50,49.41,1725.35,1934.56,0.00,0.048043,0.000000,70,0,0.038785,107.551109,32265561,21405088,0,0,32593,0,1,1 +1774084276.616652,24.27,4,3992.50,49.26,1724.41,1928.60,0.00,0.000000,0.000000,70,0,0.076845,97.367574,32271333,21415590,0,0,32596,0,1,1 +1774084281.612949,1.46,4,3992.50,48.91,1738.09,1914.90,0.00,0.000000,0.000000,70,0,0.006701,0.008948,32271471,21415765,0,0,32598,0,1,1 +1774084286.617616,14.14,4,3992.50,50.29,1685.67,1969.06,0.00,3515155935956.487793,0.000000,21,0,40.026159,0.024781,32275872,21417266,0,0,32601,0,1,1 +1774084291.617275,0.95,4,3992.50,49.58,1713.70,1941.03,0.00,63040.749540,58879.341668,5538236,1038941,0.005031,0.008509,32275990,21417418,0,0,32603,0,1,1 +1774084296.617835,0.75,4,3992.50,49.17,1729.64,1925.08,0.00,3518043342818.602051,0.008788,5537462,1038810,0.004477,0.008885,32276102,21417585,0,0,32606,0,1,1 +1774084301.616425,0.50,4,3992.50,49.11,1731.94,1922.79,0.00,3519429534178.220215,3519429538336.398438,21,0,0.003879,0.007112,32276202,21417724,0,0,32608,0,1,1 +1774084306.612952,0.60,4,3992.50,49.11,1731.89,1922.85,0.00,0.175122,0.000000,199,0,0.003901,0.007145,32276304,21417866,0,0,32611,0,1,1 +1774084311.616682,0.70,4,3992.50,49.08,1733.02,1921.67,0.00,3515814227943.476074,0.000000,21,0,0.004744,0.007615,32276405,21418009,0,0,32613,0,1,1 +1774084316.617114,11.24,4,3992.50,49.38,1720.30,1933.38,0.00,0.000000,0.000000,21,0,0.031626,40.062880,32278572,21422435,0,0,32616,0,1,1 +1774084321.612945,0.75,4,3992.50,49.19,1727.65,1926.03,0.00,0.000000,0.000000,21,0,0.004195,0.008851,32278669,21422592,0,0,32618,0,1,1 +1774084326.617569,0.65,4,3992.50,49.19,1727.65,1926.03,0.00,0.048002,0.000000,70,0,0.002287,0.006360,32278739,21422715,0,0,32621,0,1,1 +1774084331.615516,0.65,4,3992.50,49.22,1726.43,1927.25,0.00,3519882371916.424805,0.000000,21,0,0.002290,0.006333,32278809,21422835,0,0,32623,0,1,1 +1774084336.615787,0.50,4,3992.50,49.22,1726.43,1927.24,0.00,0.000000,0.000000,21,0,0.001839,0.005132,32278866,21422937,0,0,32626,0,1,1 +1774084341.616318,0.60,4,3992.50,49.22,1726.44,1927.24,0.00,2.006623,0.000195,238,2,0.002301,0.006355,32278937,21423059,0,0,32628,0,1,1 +1774084346.615580,0.60,4,3992.50,49.22,1726.45,1927.23,0.00,63039.639139,58924.407935,5537462,1039325,0.002277,0.006367,32279006,21423182,0,0,32631,0,1,1 +1774084351.615961,0.70,4,3992.50,49.07,1732.54,1921.14,0.00,3518169228820.531250,3518169232936.799805,70,0,0.002314,0.006374,32279078,21423305,0,0,32633,0,1,1 +1774084356.615729,0.45,4,3992.50,49.09,1731.56,1922.12,0.00,0.126959,0.000000,199,0,0.001881,0.005174,32279138,21423409,0,0,32636,0,1,1 +1774084361.617457,0.65,4,3992.50,49.09,1731.56,1922.12,0.00,63014.487546,58895.430252,5538236,1039553,0.002377,0.007099,32279215,21423542,0,0,32638,0,1,1 +1774084366.617395,0.65,4,3992.50,49.09,1731.56,1922.11,0.00,3518481297560.837402,3518481297564.919434,5537462,1039376,0.002413,0.006467,32279293,21423673,0,0,32641,0,1,1 +1774084371.617303,0.55,4,3992.50,49.09,1731.57,1922.11,0.00,3518501580170.301758,3518501584286.951660,21,0,0.002289,0.006331,32279363,21423793,0,0,32643,0,1,1 +1774084376.615145,0.50,4,3992.50,48.86,1740.52,1913.15,0.00,0.000000,0.000000,21,0,0.001819,0.005126,32279418,21423894,0,0,32646,0,1,1 +1774084381.615096,1.00,4,3992.50,48.87,1740.30,1913.39,0.00,63037.071945,58916.411537,5538236,1039578,0.002289,0.006356,32279488,21424016,0,0,32648,0,1,1 +1774084386.617217,41.86,4,3992.50,55.54,1488.51,2174.39,0.00,3516945223217.002441,3516945227335.875000,21,0,96.300313,0.036658,32289640,21426350,0,0,32651,0,1,1 +1774084391.612948,27.83,4,3992.50,55.42,1494.16,2169.84,0.00,63090.297544,58966.245903,5538236,1039710,120.271293,0.024039,32302117,21427999,0,0,32653,0,1,1 +1774084396.612971,27.82,4,3992.50,55.35,1497.04,2166.92,0.00,3518421338285.373047,3518421342403.879883,238,2,118.162393,0.024038,32314163,21429718,0,0,32656,0,1,1 +1774084401.613797,28.02,4,3992.50,55.33,1497.90,2166.11,0.00,3517855879679.220215,3517855879681.227051,21,0,120.151429,0.036553,32326631,21432526,0,0,32658,0,1,1 +1774084406.616908,27.76,4,3992.50,55.44,1493.48,2170.49,0.00,0.000000,0.000000,21,0,119.091006,0.027566,32338937,21434574,0,0,32661,0,1,1 +1774084411.617432,27.95,4,3992.50,55.35,1496.82,2167.16,0.00,2.006626,0.000195,238,2,119.153074,0.047137,32351239,21438174,0,0,32663,0,1,1 +1774084416.614413,27.86,4,3992.50,55.31,1498.38,2165.58,0.00,3520562687345.887207,3520562687347.895508,21,0,120.041207,0.030447,32363757,21440322,0,0,32666,0,1,1 +1774084421.613319,28.00,4,3992.50,55.30,1498.67,2165.28,0.00,1.538716,0.028327,237,176,118.389802,0.051308,32375926,21444272,0,0,32668,0,1,1 +1774084426.617503,11.40,4,3992.50,49.63,1721.06,1942.99,0.00,3515494974423.182129,3515494974424.643066,70,0,93.850964,0.040020,32385542,21447216,0,0,32671,0,1,1 +1774084431.613656,0.90,4,3992.50,49.30,1733.89,1930.16,0.00,1.960298,0.000195,238,2,0.006070,0.007147,32385679,21447367,0,0,32673,0,1,1 +1774084436.616411,20.61,4,3992.50,50.53,1685.60,1978.39,0.00,3516498947013.389160,3516498947015.395020,21,0,26.153762,0.126108,32394391,21453956,0,0,32676,0,1,1 +1774084441.616496,10.36,4,3992.50,49.17,1738.86,1925.06,0.00,1.538353,0.028320,237,176,14.092859,0.067569,32399048,21457482,0,0,32678,0,1,1 +1774084446.617478,1.50,4,3992.50,49.60,1722.02,1941.86,0.00,0.468365,3517746704050.689453,238,2,0.004581,0.008527,32399164,21457647,0,0,32681,0,1,1 +1774084451.617312,0.55,4,3992.50,49.31,1733.39,1930.51,0.00,3518553908760.223145,0.028126,237,176,0.003408,0.005855,32399249,21457763,0,0,32683,0,1,1 +1774084456.613513,0.50,4,3992.50,49.31,1733.40,1930.50,0.00,3521112332427.097656,3521112332428.608887,21,0,0.003881,0.007125,32399349,21457903,0,0,32686,0,1,1 +1774084461.617012,0.60,4,3992.50,49.31,1733.41,1930.49,0.00,62992.511408,58876.200065,5538253,1041188,0.003875,0.007117,32399449,21458043,0,0,32688,0,1,1 +1774084466.616475,0.55,4,3992.50,49.32,1732.88,1931.02,0.00,3518815462144.103027,3518815466261.731445,238,2,0.003874,0.007141,32399549,21458185,0,0,32691,0,1,1 +1774084471.613036,0.65,4,3992.50,49.33,1732.64,1931.25,0.00,0.000000,0.000000,238,2,0.003497,0.005939,32399640,21458307,0,0,32693,0,1,1 +1774084476.617679,0.60,4,3992.50,49.13,1740.30,1923.59,0.00,62972.001415,58863.172803,5537479,1041322,0.003937,0.007255,32399745,21458456,0,0,32696,0,1,1 +1774084481.613970,0.55,4,3992.50,49.17,1738.77,1925.08,0.00,0.000000,0.004300,5537479,1041329,0.003435,0.005868,32399832,21458572,0,0,32698,0,1,1 +1774084486.617638,0.70,4,3992.50,48.68,1758.14,1905.78,0.00,3515857709420.513672,3515857713530.138672,238,2,0.003825,0.007089,32399928,21458710,0,0,32701,0,1,1 +1774084491.617512,0.50,4,3992.50,48.71,1756.94,1906.98,0.00,3518526106555.929688,0.028126,237,176,0.003470,0.006527,32400017,21458832,0,0,32703,0,1,1 +1774084496.612987,0.65,4,3992.50,48.75,1755.24,1908.69,0.00,63088.046909,58971.300443,5537480,1041429,0.003856,0.007101,32400115,21458970,0,0,32706,0,1,1 +1774084501.617457,0.70,4,3992.50,48.76,1754.82,1909.11,0.00,3515294226040.514160,3515294230149.861328,237,176,0.003400,0.005858,32400200,21459087,0,0,32708,0,1,1 +1774084506.617607,0.75,4,3992.50,48.78,1754.09,1909.80,0.00,3518331836954.191895,3518331836955.654297,70,0,0.002933,0.006724,32400282,21459217,0,0,32711,0,1,1 +1774084511.613032,0.75,4,3992.50,49.08,1742.17,1921.72,0.00,1.960583,0.000195,238,2,0.003548,0.005861,32400369,21459333,0,0,32713,0,1,1 +1774084516.612978,1.05,4,3992.50,49.08,1742.22,1921.71,0.00,63035.288219,58918.810561,5538255,1041796,0.003624,0.006474,32400460,21459460,0,0,32716,0,1,1 +1774084521.613014,0.70,4,3992.50,49.08,1742.23,1921.69,0.00,3518411768949.916992,3518411773068.278320,70,0,0.003637,0.006489,32400552,21459588,0,0,32718,0,1,1 +1774084526.616447,0.85,4,3992.50,49.08,1742.25,1921.68,0.00,1.957445,0.000195,238,2,0.003484,0.006231,32400641,21459709,0,0,32721,0,1,1 +1774084531.616392,16.37,4,3992.50,49.87,1708.82,1952.37,0.00,3518475979671.882812,3518475979673.714844,199,0,0.042874,66.305077,32403675,21466960,0,0,32723,0,1,1 +1774084536.612944,29.03,4,3992.50,49.69,1707.66,1945.29,0.00,0.000000,0.000000,199,0,0.052217,118.249076,32407574,21479159,0,0,32726,0,1,1 +1774084541.617639,6.72,4,3992.50,49.31,1721.85,1930.72,0.00,3515136325038.188965,0.000000,21,0,0.012042,20.618788,32408154,21481464,0,0,32728,0,1,1 +1774084546.616411,16.48,4,3992.50,50.15,1690.77,1963.54,0.00,2.007329,0.000195,238,2,40.077505,0.027515,32412809,21483007,0,0,32731,0,1,1 +1774084551.617619,10.80,4,3992.50,49.61,1710.98,1942.32,0.00,3517587404086.142090,3517587404087.973633,199,0,0.026025,40.057287,32414494,21487468,0,0,32733,0,1,1 +1774084556.617542,0.85,4,3992.50,49.44,1717.46,1935.84,0.00,0.000000,0.000000,199,0,0.001660,0.004153,32414537,21487548,0,0,32736,0,1,1 +1774084561.617721,0.70,4,3992.50,49.44,1717.46,1935.83,0.00,3518310767830.650391,0.000000,21,0,0.002264,0.007000,32414605,21487674,0,0,32738,0,1,1 +1774084566.617857,0.85,4,3992.50,49.46,1716.73,1936.51,0.00,0.048046,0.000000,70,0,0.001818,0.005099,32414660,21487773,0,0,32741,0,1,1 +1774084571.617587,0.75,4,3992.50,49.47,1716.57,1936.72,0.00,1.490412,0.028322,237,176,0.002259,0.006352,32414728,21487895,0,0,32743,0,1,1 +1774084576.617144,0.80,4,3992.50,49.46,1716.65,1936.64,0.00,63058.347263,59165.106007,5538411,1043779,0.001806,0.005130,32414782,21487996,0,0,32746,0,1,1 +1774084581.615492,0.80,4,3992.50,49.46,1716.65,1936.63,0.00,3519599684386.975098,3519599688282.667969,21,0,0.002239,0.006358,32414848,21488118,0,0,32748,0,1,1 +1774084586.615953,0.60,4,3992.50,49.28,1724.04,1929.24,0.00,63048.486068,59158.459421,5538411,1043822,0.001818,0.005098,32414903,21488217,0,0,32751,0,1,1 +1774084591.613451,0.90,4,3992.50,49.28,1724.05,1929.23,0.00,3520198100993.584961,3520198104883.909668,238,2,0.002353,0.006453,32414978,21488345,0,0,32753,0,1,1 +1774084596.617847,0.80,4,3992.50,49.27,1724.05,1929.23,0.00,3515346660226.909668,3515346660228.740234,199,0,0.002586,0.006365,32415057,21488478,0,0,32756,0,1,1 +1774084601.613028,0.90,4,3992.50,49.29,1723.32,1929.96,0.00,63110.842811,59221.086086,5537637,1043726,0.002335,0.006419,32415130,21488604,0,0,32758,0,1,1 +1774084606.617310,0.75,4,3992.50,49.24,1725.45,1927.84,0.00,3515426710874.248047,3515426714755.100586,238,2,0.001825,0.005102,32415186,21488704,0,0,32761,0,1,1 +1774084611.617609,1.25,4,3992.50,49.18,1727.97,1925.32,0.00,3518226942751.604980,3518226942753.611816,21,0,0.003885,0.008454,32415280,21488857,0,0,32763,0,1,1 +1774084616.618015,39.69,4,3992.50,55.65,1483.58,2178.84,0.00,63049.177364,59159.254732,5538411,1043947,95.730004,0.056598,32425171,21492730,0,0,32766,0,1,1 +1774084621.616387,28.60,4,3992.50,55.55,1488.71,2175.00,0.00,3519583053793.313965,3519583057682.812500,238,2,119.408831,0.043022,32437451,21495771,0,0,32768,0,1,1 +1774084626.613090,28.12,4,3992.50,55.30,1498.40,2165.30,0.00,3520758663355.155273,3520758663356.988281,199,0,119.043696,0.042838,32449581,21498862,0,0,32771,0,1,1 +1774084631.616376,28.52,4,3992.50,55.41,1494.44,2169.29,0.00,3516126369142.933105,0.000000,21,0,119.486429,0.042433,32461728,21501919,0,0,32773,0,1,1 +1774084636.616287,28.07,4,3992.50,55.58,1487.68,2176.03,0.00,2.006872,0.000195,238,2,118.767361,0.031154,32473939,21504202,0,0,32776,0,1,1 +1774084641.617139,28.17,4,3992.50,55.72,1482.16,2181.50,0.00,3517837167174.183594,3517837167176.190430,21,0,119.742868,0.041379,32486109,21507385,0,0,32778,0,1,1 +1774084646.614458,28.24,4,3992.50,55.47,1491.98,2171.75,0.00,63088.125681,59196.057433,5538411,1044173,118.626824,0.029818,32498181,21509541,0,0,32781,0,1,1 +1774084651.617500,28.48,4,3992.50,55.42,1493.77,2169.86,0.00,3516297896998.029785,3516297900885.645508,21,0,120.092061,0.055996,32510299,21513665,0,0,32783,0,1,1 +1774084656.617144,11.81,4,3992.50,50.69,1679.01,1984.80,0.00,63054.750626,59168.745944,5537645,1044028,94.536364,0.032800,32519870,21516060,0,0,32786,0,1,1 +1774084661.613011,1.00,4,3992.50,50.09,1702.60,1961.20,0.00,3521348334647.707520,3521348338536.650391,21,0,0.004036,0.003983,32519956,21516148,0,0,32788,0,1,1 +1774084666.617385,17.89,4,3992.50,50.00,1706.21,1957.53,0.00,62995.228345,59113.219250,5537651,1044604,20.135078,0.114468,32528021,21522508,0,0,32791,0,1,1 +1774084671.612957,11.83,4,3992.50,49.54,1723.93,1939.76,0.00,3521556202952.400879,3521556206841.202637,70,0,20.154033,0.106795,32535829,21528694,0,0,32793,0,1,1 +1774084676.618813,5.77,4,3992.50,49.44,1727.80,1935.75,0.00,62976.524323,59095.885427,5537651,1045036,0.020556,20.614565,32537098,21531175,0,0,32796,0,1,1 +1774084681.618438,29.11,4,3992.50,49.49,1718.20,1937.82,0.00,3518701117383.255371,3518701121268.731445,70,0,0.039992,118.179659,32540008,21543547,0,0,32798,0,1,1 +1774084686.616940,17.17,4,3992.50,49.06,1730.40,1920.86,0.00,3519491153592.312012,0.000000,21,0,0.025705,66.321932,32541731,21550607,0,0,32801,0,1,1 +1774084691.614765,14.15,4,3992.50,54.10,1534.28,2118.25,0.00,2.007709,0.000195,238,2,26.861030,0.021823,32544998,21551747,0,0,32803,0,1,1 +1774084696.616776,1.40,4,3992.50,49.88,1699.56,1952.96,0.00,63044.759969,59333.029190,5538546,1047078,13.219249,0.010412,32546459,21552133,0,0,32806,0,1,1 +1774084701.613228,1.00,4,3992.50,49.40,1718.22,1934.29,0.00,3520936165464.052734,3520936169181.747070,199,0,0.003654,0.006801,32546545,21552247,0,0,32808,0,1,1 +1774084706.616520,0.65,4,3992.50,49.32,1721.36,1931.15,0.00,3516121782914.953613,0.000000,70,0,0.003926,0.007239,32546649,21552395,0,0,32811,0,1,1 +1774084711.616400,0.50,4,3992.50,49.31,1722.06,1930.45,0.00,63069.475487,59358.427587,5537772,1047001,0.002855,0.005626,32546727,21552505,0,0,32813,0,1,1 +1774084716.617426,0.55,4,3992.50,49.31,1722.09,1930.44,0.00,3517715682733.416992,3517715686441.656738,238,2,0.003618,0.006960,32546818,21552642,0,0,32816,0,1,1 +1774084721.617130,0.95,4,3992.50,49.24,1724.64,1927.84,0.00,63073.846381,59374.854594,5538546,1047338,0.003395,0.005887,32546902,21552760,0,0,32818,0,1,1 +1774084726.616793,1.40,4,3992.50,49.17,1727.47,1925.06,0.00,3518674212265.258789,3518674215964.777832,237,176,0.003878,0.007133,32547002,21552901,0,0,32821,0,1,1 +1774084731.612954,0.65,4,3992.50,49.18,1727.00,1925.53,0.00,3521140750609.173828,3521140750610.685059,21,0,0.004576,0.006518,32547112,21553034,0,0,32823,0,1,1 +1774084736.617054,0.70,4,3992.50,49.16,1727.95,1924.58,0.00,0.174857,0.000000,199,0,0.005582,0.008461,32547235,21553191,0,0,32826,0,1,1 +1774084741.617910,0.50,4,3992.50,49.19,1726.74,1925.79,0.00,1.831523,0.000195,238,2,0.003407,0.005829,32547320,21553305,0,0,32828,0,1,1 +1774084746.617159,0.65,4,3992.50,49.15,1728.00,1924.53,0.00,3518965943367.288574,3518965943369.295898,21,0,0.003916,0.007148,32547422,21553447,0,0,32831,0,1,1 +1774084751.617516,0.65,4,3992.50,49.20,1726.11,1926.38,0.00,63067.615776,59367.371353,5538546,1047606,0.003415,0.005850,32547508,21553563,0,0,32833,0,1,1 +1774084756.614630,0.50,4,3992.50,49.13,1728.93,1923.56,0.00,3520468686481.830078,3520468690184.475586,21,0,0.003281,0.007531,32547597,21553700,0,0,32836,0,1,1 +1774084761.616800,0.50,4,3992.50,49.16,1727.75,1924.78,0.00,0.000000,0.000000,21,0,0.003361,0.005865,32547679,21553817,0,0,32838,0,1,1 +1774084766.612947,0.55,4,3992.50,49.14,1728.48,1924.05,0.00,0.000000,0.000000,21,0,0.003731,0.006887,32547776,21553951,0,0,32841,0,1,1 +1774084771.612972,10.67,4,3992.50,49.01,1732.84,1919.04,0.00,0.000000,0.000000,21,0,0.027927,40.066769,32549626,21558479,0,0,32843,0,1,1 +1774084776.617047,0.80,4,3992.50,48.92,1736.46,1915.48,0.00,2.005202,0.000195,238,2,0.003051,0.007607,32549716,21558626,0,0,32846,0,1,1 +1774084781.616422,0.45,4,3992.50,48.91,1736.95,1915.01,0.00,3518877244480.663574,3518877244482.622559,70,0,0.002021,0.005709,32549776,21558735,0,0,32848,0,1,1 +1774084786.616544,0.70,4,3992.50,48.93,1736.18,1915.73,0.00,1.958741,0.000195,238,2,0.001893,0.005728,32549835,21558846,0,0,32851,0,1,1 +1774084791.612952,0.60,4,3992.50,48.97,1734.76,1917.20,0.00,3520966644559.472656,3520966644561.306152,199,0,0.002186,0.005739,32549899,21558957,0,0,32853,0,1,1 +1774084796.617502,0.60,4,3992.50,48.97,1734.76,1917.20,0.00,1.830170,0.000195,238,2,0.001817,0.005094,32549954,21559056,0,0,32856,0,1,1 +1774084801.617735,0.60,4,3992.50,48.97,1734.76,1917.20,0.00,0.000000,0.000000,238,2,0.002276,0.006356,32550023,21559178,0,0,32858,0,1,1 +1774084806.613130,0.65,4,3992.50,48.96,1734.92,1917.04,0.00,63124.175727,59466.751154,5537781,1047966,0.001845,0.005135,32550080,21559279,0,0,32861,0,1,1 +1774084811.613027,0.60,4,3992.50,48.96,1734.93,1917.02,0.00,3518509892416.595703,3518509896070.727051,238,2,0.002314,0.006418,32550152,21559405,0,0,32863,0,1,1 +1774084816.613037,0.55,4,3992.50,48.96,1734.87,1917.05,0.00,63065.901492,59411.911931,5537781,1048021,0.001938,0.005217,32550216,21559512,0,0,32866,0,1,1 +1774084821.616138,0.70,4,3992.50,48.96,1734.90,1917.07,0.00,3516256181589.441406,3516256185243.004395,199,0,0.002382,0.007104,32550292,21559647,0,0,32868,0,1,1 +1774084826.615441,0.45,4,3992.50,48.96,1734.90,1917.06,0.00,1.363569,0.028324,237,176,0.001819,0.005099,32550347,21559746,0,0,32871,0,1,1 +1774084831.616941,0.65,4,3992.50,48.96,1734.91,1917.06,0.00,3517381607487.613281,3517381607488.948242,199,0,0.002250,0.006354,32550414,21559868,0,0,32873,0,1,1 +1774084836.615383,1.15,4,3992.50,48.77,1742.35,1909.62,0.00,3519533850580.833008,0.000000,21,0,0.003215,0.005816,32550493,21559984,0,0,32876,0,1,1 +1774084841.613403,42.85,4,3992.50,55.06,1505.89,2155.82,0.00,63097.140865,59435.737114,5538555,1048345,97.178232,0.058243,32560656,21564073,0,0,32878,0,1,1 +1774084846.612903,28.58,4,3992.50,55.05,1507.25,2155.24,0.00,3518788876639.421875,0.020217,5537781,1048185,119.976936,0.055243,32572893,21568315,0,0,32881,0,1,1 +1774084851.617442,28.15,4,3992.50,55.12,1504.46,2158.02,0.00,3515246117174.813965,3515246120827.322754,21,0,118.055101,0.040188,32584940,21571356,0,0,32883,0,1,1 +1774084856.612934,28.26,4,3992.50,55.04,1507.57,2154.89,0.00,0.048090,0.000000,70,0,119.872577,0.046246,32597130,21574825,0,0,32886,0,1,1 +1774084861.616793,28.36,4,3992.50,54.98,1509.65,2152.78,0.00,63023.463299,59366.510506,5538555,1048401,118.471588,0.051647,32609176,21578597,0,0,32888,0,1,1 +1774084866.617728,28.72,4,3992.50,55.06,1506.70,2155.77,0.00,3517779494571.882324,0.027632,5537781,1048242,120.142258,0.042505,32621357,21581708,0,0,32891,0,1,1 +1774084871.617378,28.72,4,3992.50,55.24,1499.86,2162.62,0.00,3518683320641.548828,3518683324297.315918,199,0,118.770450,0.032862,32633454,21584231,0,0,32893,0,1,1 +1774084876.615664,28.70,4,3992.50,55.16,1502.68,2159.81,0.00,0.000000,0.000000,199,0,119.605766,0.048663,32645661,21587885,0,0,32896,0,1,1 +1774084881.617213,11.94,4,3992.50,49.89,1709.14,1953.38,0.00,1.362956,0.028312,237,176,93.300709,0.032046,32655185,21590201,0,0,32898,0,1,1 +1774084886.618371,3.16,4,3992.50,49.56,1722.10,1940.45,0.00,3517623029001.188965,3517623029002.698730,21,0,0.039315,0.012302,32655468,21590454,0,0,32901,0,1,1 +1774084891.616432,17.45,4,3992.50,49.74,1715.10,1947.39,0.00,2.007614,0.000195,238,2,22.191680,0.121150,32664155,21597264,0,0,32903,0,1,1 +1774084896.612954,2.71,4,3992.50,49.64,1719.11,1943.37,0.00,3520886822228.761719,3520886822230.770020,21,0,3.982195,0.021923,32665713,21598494,0,0,32906,0,1,1 +1774084901.612968,8.86,4,3992.50,49.32,1731.38,1931.07,0.00,0.000000,0.000000,21,0,14.092914,0.076062,32671135,21602878,0,0,32908,0,1,1 +1774084906.617479,0.60,4,3992.50,49.02,1743.11,1919.36,0.00,2.005027,0.000195,238,2,0.003417,0.005847,32671221,21602994,0,0,32911,0,1,1 +1774084911.614614,0.55,4,3992.50,48.95,1746.13,1916.34,0.00,3520454376432.072754,3520454376434.081055,21,0,0.004282,0.008179,32671334,21603155,0,0,32913,0,1,1 +1774084916.613285,0.60,4,3992.50,48.79,1752.39,1910.07,0.00,0.048060,0.000000,70,0,0.003396,0.005854,32671418,21603271,0,0,32916,0,1,1 +1774084921.617404,0.55,4,3992.50,48.79,1752.16,1910.30,0.00,63020.336942,59364.993875,5538570,1049985,0.004621,0.007510,32671515,21603405,0,0,32918,0,1,1 +1774084926.616998,0.50,4,3992.50,48.74,1753.98,1908.48,0.00,3518722749276.554199,3518722752935.252930,21,0,0.003357,0.005945,32671598,21603525,0,0,32921,0,1,1 +1774084931.613732,0.65,4,3992.50,48.76,1753.49,1908.96,0.00,0.000000,0.000000,21,0,0.003141,0.006407,32671688,21603656,0,0,32923,0,1,1 +1774084936.612940,26.41,4,3992.50,49.43,1722.45,1935.44,0.00,0.048054,0.000000,70,0,0.048785,102.172747,32675033,21614695,0,0,32926,0,1,1 +1774084941.612964,26.66,4,3992.50,49.12,1728.14,1922.97,0.00,3518420678639.119141,0.000000,21,0,0.031294,102.951303,32677289,21625550,0,0,32928,0,1,1 +1774084946.612947,1.66,4,3992.50,49.13,1728.88,1923.53,0.00,0.000000,0.000000,21,0,0.007133,0.010031,32677439,21625745,0,0,32931,0,1,1 +1774084951.613127,15.58,4,3992.50,49.21,1727.84,1926.66,0.00,0.048045,0.000000,70,0,40.068365,0.031529,32682084,21627714,0,0,32933,0,1,1 +1774084956.613473,1.00,4,3992.50,49.20,1728.02,1926.48,0.00,3518193718917.698242,0.000000,21,0,0.004096,0.008086,32682183,21627854,0,0,32936,0,1,1 +1774084961.616955,0.70,4,3992.50,49.20,1728.04,1926.46,0.00,2.005439,0.000195,238,2,0.003825,0.007105,32682279,21627993,0,0,32938,0,1,1 +1774084966.617421,0.50,4,3992.50,49.21,1727.80,1926.70,0.00,63077.996692,59613.827957,5537912,1051472,0.003382,0.005877,32682362,21628111,0,0,32941,0,1,1 +1774084971.612964,0.65,4,3992.50,49.21,1727.82,1926.68,0.00,3521576484737.415527,3521576488205.495117,237,176,0.003635,0.006465,32682454,21628237,0,0,32943,0,1,1 +1774084976.613104,0.80,4,3992.50,49.15,1730.23,1924.27,0.00,0.468444,3518338893828.458496,238,2,0.003649,0.006486,32682547,21628365,0,0,32946,0,1,1 +1774084981.617161,0.55,4,3992.50,48.53,1754.47,1900.04,0.00,3515584820153.203613,3515584820155.209473,21,0,0.003484,0.006264,32682636,21628488,0,0,32948,0,1,1 +1774084986.612943,0.60,4,3992.50,48.59,1752.28,1902.23,0.00,2.008530,0.000195,238,2,0.003765,0.006717,32682729,21628621,0,0,32951,0,1,1 +1774084991.613385,0.50,4,3992.50,48.61,1751.31,1903.20,0.00,3518126643437.291016,3518126643439.249023,70,0,0.003513,0.005918,32682821,21628742,0,0,32953,0,1,1 +1774084996.617703,7.02,4,3992.50,49.44,1718.52,1935.88,0.00,3515401238768.407227,0.000000,21,0,0.020376,24.223098,32684089,21631534,0,0,32956,0,1,1 +1774085001.617002,5.41,4,3992.50,48.69,1746.83,1906.25,0.00,0.175025,0.000000,199,0,0.009645,15.831445,32684684,21633286,0,0,32958,0,1,1 +1774085006.617134,0.65,4,3992.50,49.03,1733.32,1919.76,0.00,63088.155463,59654.258778,5538686,1052238,0.002246,0.006374,32684751,21633410,0,0,32961,0,1,1 +1774085011.617005,0.60,4,3992.50,49.07,1732.05,1921.04,0.00,0.000000,0.003125,5538686,1052242,0.001781,0.005089,32684803,21633508,0,0,32963,0,1,1 +1774085016.613031,0.50,4,3992.50,49.07,1731.81,1921.28,0.00,3521236014324.310547,3521236017761.026855,199,0,0.002265,0.007015,32684871,21633635,0,0,32966,0,1,1 +1774085021.617468,0.75,4,3992.50,49.07,1731.82,1921.26,0.00,63029.775369,59602.965413,5537912,1052077,0.001817,0.005084,32684926,21633733,0,0,32968,0,1,1 +1774085026.617222,0.65,4,3992.50,49.10,1730.60,1922.49,0.00,3518609770903.841797,3518609774334.036133,21,0,0.002289,0.006366,32684996,21633856,0,0,32971,0,1,1 +1774085031.613259,0.65,4,3992.50,49.10,1730.60,1922.48,0.00,1.539599,0.028343,237,176,0.002930,0.005701,32685073,21633967,0,0,32973,0,1,1 +1774085036.617588,0.55,4,3992.50,49.10,1730.61,1922.48,0.00,3515393496822.668457,3515393496824.177246,21,0,0.003363,0.006792,32685166,21634105,0,0,32976,0,1,1 +1774085041.617580,0.70,4,3992.50,48.96,1736.07,1916.97,0.00,2.006839,0.000195,238,2,0.001902,0.005190,32685228,21634210,0,0,32978,0,1,1 +1774085046.617243,0.60,4,3992.50,48.99,1734.88,1918.20,0.00,3518674901704.417969,3518674901706.424805,21,0,0.002432,0.006492,32685307,21634343,0,0,32981,0,1,1 +1774085051.617816,0.60,4,3992.50,48.99,1734.90,1918.19,0.00,63078.653508,59653.103018,5537912,1052166,0.001818,0.005088,32685362,21634441,0,0,32983,0,1,1 +1774085056.613026,0.55,4,3992.50,48.99,1734.90,1918.18,0.00,3521810683320.508301,3521810686749.561035,199,0,0.002278,0.006372,32685431,21634564,0,0,32986,0,1,1 +1774085061.617397,2.15,4,3992.50,50.44,1679.29,1975.02,0.00,63030.616069,59607.854386,5537912,1052195,0.004742,0.007760,32685546,21634708,0,0,32988,0,1,1 +1774085066.615707,43.26,4,3992.50,55.11,1505.06,2157.81,0.00,3519626766269.733398,3519626769696.819824,21,0,115.218015,0.078333,32697762,21640488,0,0,32991,0,1,1 +1774085071.613363,31.41,4,3992.50,55.35,1496.29,2166.91,0.00,1.539100,0.028334,237,176,122.225133,0.017862,32709873,21641763,0,0,32993,0,1,1 +1774085076.615727,30.12,4,3992.50,55.31,1497.93,2165.42,0.00,3516774517980.790039,3516774517982.299316,21,0,120.408650,0.023328,32721621,21643425,0,0,32996,0,1,1 +1774085081.617818,29.57,4,3992.50,55.37,1495.35,2168.01,0.00,63059.507532,59635.131689,5537912,1052328,119.860847,0.031076,32733430,21645624,0,0,32998,0,1,1 +1774085086.617303,29.38,4,3992.50,55.28,1498.92,2164.39,0.00,3518799601863.592285,3518799605287.746582,238,2,119.601732,0.035045,32745109,21648148,0,0,33001,0,1,1 +1774085091.617372,30.19,4,3992.50,55.57,1487.79,2175.52,0.00,3518388789518.349121,3518388789520.356445,21,0,119.379961,0.032886,32756660,21650588,0,0,33003,0,1,1 +1774085096.617178,29.86,4,3992.50,55.44,1492.88,2170.42,0.00,63088.335587,59662.559705,5537912,1052366,119.797757,0.033697,32767923,21652892,0,0,33006,0,1,1 +1774085101.617758,29.44,4,3992.50,55.45,1492.31,2171.02,0.00,0.000000,0.028122,5537912,1052383,119.592907,0.030922,32778886,21655032,0,0,33008,0,1,1 +1774085106.613415,5.99,4,3992.50,50.41,1689.55,1973.86,0.00,0.068810,0.125891,5537918,1052433,69.341061,0.020367,32785259,21656341,0,0,33011,0,1,1 +1774085111.617858,3.11,4,3992.50,49.72,1716.95,1946.46,0.00,3515313512736.014160,3515313516157.021973,237,176,0.009988,0.008683,32785442,21656507,0,0,33013,0,1,1 +1774085116.613539,18.71,4,3992.50,50.13,1700.62,1962.74,0.00,3521479290180.081055,3521479290181.592773,21,0,24.255118,0.114644,32793500,21662561,0,0,33016,0,1,1 +1774085121.613655,10.39,4,3992.50,49.32,1732.18,1931.16,0.00,0.000000,0.000000,21,0,16.022858,0.074887,32798765,21666544,0,0,33018,0,1,1 +1774085126.617827,1.35,4,3992.50,49.43,1728.23,1935.11,0.00,63033.429130,59611.414752,5537923,1053663,0.004121,0.007256,32798867,21666685,0,0,33021,0,1,1 +1774085131.617911,0.55,4,3992.50,49.34,1731.43,1931.91,0.00,3518377908979.352051,3518377912404.164062,21,0,0.003865,0.007122,32798966,21666825,0,0,33023,0,1,1 +1774085136.616975,0.60,4,3992.50,49.29,1733.62,1929.72,0.00,2.007212,0.000195,238,2,0.002971,0.004607,32799039,21666919,0,0,33026,0,1,1 +1774085141.617855,0.50,4,3992.50,49.34,1731.66,1931.67,0.00,3517818136211.484863,0.028120,237,176,0.003407,0.005854,32799124,21667035,0,0,33028,0,1,1 +1774085146.614254,0.85,4,3992.50,49.33,1731.79,1931.55,0.00,3520972509079.437500,3520972509080.948730,21,0,0.003881,0.007137,32799224,21667176,0,0,33031,0,1,1 +1774085151.614652,0.45,4,3992.50,49.33,1731.80,1931.54,0.00,63081.011670,59657.288239,5537923,1054183,0.003878,0.007122,32799324,21667316,0,0,33033,0,1,1 +1774085156.617070,0.55,4,3992.50,49.30,1733.11,1930.23,0.00,4.107291,0.065496,5538697,1054409,0.003964,0.007897,32799431,21667469,0,0,33036,0,1,1 +1774085161.617476,0.60,4,3992.50,49.30,1733.17,1930.17,0.00,3518151483150.722168,3518151486578.482910,21,0,0.003445,0.005886,32799519,21667587,0,0,33038,0,1,1 +1774085166.617115,0.50,4,3992.50,49.30,1733.20,1930.14,0.00,63090.578458,59666.428276,5537923,1054280,0.003878,0.007133,32799619,21667728,0,0,33041,0,1,1 +1774085171.616506,0.60,4,3992.50,49.29,1733.48,1929.85,0.00,3518865909757.465332,3518865913179.778320,238,2,0.003961,0.007171,32799725,21667872,0,0,33043,0,1,1 +1774085176.617241,0.60,4,3992.50,49.29,1733.51,1929.83,0.00,3517919765802.439941,3517919765804.271484,199,0,0.003890,0.007131,32799826,21668013,0,0,33046,0,1,1 +1774085181.617083,0.60,4,3992.50,49.28,1733.77,1929.57,0.00,63091.953673,59664.119415,5538697,1054550,0.003866,0.007097,32799925,21668151,0,0,33048,0,1,1 +1774085186.614633,0.50,4,3992.50,49.29,1733.57,1929.78,0.00,3520161939957.737305,3520161943385.310547,238,2,0.003409,0.005893,32800010,21668270,0,0,33051,0,1,1 +1774085191.617075,0.60,4,3992.50,49.30,1733.26,1930.08,0.00,3516719075686.168945,3516719075688.174805,21,0,0.003876,0.007119,32800110,21668410,0,0,33053,0,1,1 +1774085196.617567,0.65,4,3992.50,49.30,1733.27,1930.07,0.00,63079.820376,59656.422319,5537923,1054460,0.004460,0.008241,32800221,21668573,0,0,33056,0,1,1 +1774085201.617131,0.55,4,3992.50,49.30,1733.29,1930.05,0.00,3518744103440.580566,3518744106863.104004,237,176,0.003878,0.007123,32800321,21668713,0,0,33058,0,1,1 +1774085206.614677,0.70,4,3992.50,49.30,1733.30,1930.04,0.00,3520165044580.044922,3520165044581.555664,21,0,0.003430,0.005876,32800408,21668831,0,0,33061,0,1,1 +1774085211.617773,0.55,4,3992.50,49.30,1733.31,1930.02,0.00,2.005594,0.000195,238,2,0.004277,0.008182,32800521,21668993,0,0,33063,0,1,1 +1774085216.614216,0.65,4,3992.50,49.34,1731.63,1931.71,0.00,3520941740652.297363,3520941740654.305664,21,0,0.005050,0.008151,32800635,21669159,0,0,33066,0,1,1 +1774085221.614915,26.95,4,3992.50,49.17,1732.93,1925.18,0.00,0.000000,0.000000,21,0,0.040426,105.544252,32803582,21680527,0,0,33068,0,1,1 +1774085226.616445,27.09,4,3992.50,49.33,1719.68,1931.33,0.00,1.537908,0.028312,237,176,0.036814,99.514225,32806350,21690961,0,0,33071,0,1,1 +1774085231.614768,1.65,4,3992.50,49.35,1720.14,1931.98,0.00,3519617668937.964844,3519617668939.475586,21,0,0.005769,0.010575,32806484,21691162,0,0,33073,0,1,1 +1774085236.617095,13.35,4,3992.50,48.90,1739.27,1914.51,0.00,63074.341062,59839.745509,5538064,1056007,40.043339,0.020906,32810828,21692491,0,0,33076,0,1,1 +1774085241.612940,3.36,4,3992.50,48.85,1741.36,1912.40,0.00,3521363273301.094727,3521363276537.878906,238,2,0.016454,11.039024,32811696,21694038,0,0,33078,0,1,1 +1774085246.617171,8.48,4,3992.50,48.74,1744.48,1908.31,0.00,0.000000,0.000000,238,2,0.010828,29.026844,32812311,21697261,0,0,33081,0,1,1 +1774085251.617683,0.55,4,3992.50,48.77,1743.50,1909.29,0.00,3518077136500.782227,3518077136502.740723,70,0,0.001831,0.005101,32812367,21697360,0,0,33083,0,1,1 +1774085256.616471,0.55,4,3992.50,48.76,1743.76,1909.03,0.00,3519290038438.166992,0.000000,21,0,0.002289,0.006368,32812437,21697483,0,0,33086,0,1,1 +1774085261.613596,0.55,4,3992.50,48.66,1747.77,1904.98,0.00,1.539264,0.028337,237,176,0.001832,0.005092,32812493,21697581,0,0,33088,0,1,1 +1774085266.615904,0.60,4,3992.50,48.66,1747.58,1905.21,0.00,63077.166875,59876.213911,5538842,1056573,0.002313,0.006382,32812565,21697705,0,0,33091,0,1,1 +1774085271.617587,0.50,4,3992.50,48.67,1747.36,1905.43,0.00,3517253181871.464844,3517253181875.550293,5538068,1056398,0.001851,0.005108,32812623,21697805,0,0,33093,0,1,1 +1774085276.614734,0.60,4,3992.50,48.70,1746.14,1906.64,0.00,0.000000,4.008537,5538068,1056423,0.002290,0.006370,32812693,21697928,0,0,33096,0,1,1 +1774085281.613031,0.55,4,3992.50,48.70,1745.90,1906.89,0.00,3519635438047.019043,3519635441241.947754,238,2,0.002390,0.006483,32812771,21698058,0,0,33098,0,1,1 +1774085286.613033,0.50,4,3992.50,48.70,1745.90,1906.88,0.00,0.000000,0.000000,238,2,0.002339,0.007072,32812845,21698189,0,0,33101,0,1,1 +1774085291.615958,0.55,4,3992.50,48.89,1738.67,1914.07,0.00,3516380626947.078613,3516380626949.036133,70,0,0.001985,0.005212,32812911,21698297,0,0,33103,0,1,1 +1774085296.617532,0.55,4,3992.50,48.69,1746.36,1906.43,0.00,3517329377456.576660,0.000000,21,0,0.002301,0.006364,32812982,21698420,0,0,33106,0,1,1 +1774085301.612962,0.55,4,3992.50,48.69,1746.36,1906.42,0.00,0.000000,0.000000,21,0,0.002291,0.006362,32813052,21698542,0,0,33108,0,1,1 +1774085306.616966,7.01,4,3992.50,54.72,1517.23,2142.38,0.00,0.048008,0.000000,70,0,3.208466,0.013623,32813625,21699076,0,0,33111,0,1,1 +1774085311.617781,38.89,4,3992.50,55.02,1509.82,2154.21,0.00,63093.377869,59898.299605,5538068,1056623,120.749631,0.036265,32826103,21701625,0,0,33113,0,1,1 +1774085316.617077,31.07,4,3992.50,54.80,1518.69,2145.45,0.00,3518932712852.721680,3518932716046.812012,238,2,121.183735,0.037302,32838558,21704483,0,0,33116,0,1,1 +1774085321.617652,29.96,4,3992.50,54.91,1514.58,2149.66,0.00,63098.559487,59901.272675,5538842,1056821,120.354435,0.044052,32851011,21707789,0,0,33118,0,1,1 +1774085326.617387,30.14,4,3992.50,55.00,1510.78,2153.45,0.00,3518624246510.514160,3518624249708.338867,238,2,119.573498,0.044659,32863309,21710944,0,0,33121,0,1,1 +1774085331.615552,29.87,4,3992.50,54.72,1521.77,2142.44,0.00,3519728371958.249023,3519728371960.256836,21,0,119.010854,0.050162,32875639,21714664,0,0,33123,0,1,1 +1774085336.613111,30.20,4,3992.50,55.14,1505.29,2158.89,0.00,63134.542353,59937.557313,5538068,1056713,120.225707,0.042172,32887975,21717801,0,0,33126,0,1,1 +1774085341.613414,30.24,4,3992.50,54.95,1512.84,2151.34,0.00,3518224069465.767578,3518224072659.488281,237,176,118.959233,0.046962,32900250,21721216,0,0,33128,0,1,1 +1774085346.613111,30.16,4,3992.50,54.78,1519.61,2144.60,0.00,63105.996333,59911.939729,5538068,1056739,119.373684,0.048943,32912579,21724876,0,0,33131,0,1,1 +1774085351.617005,5.96,4,3992.50,48.51,1764.84,1899.46,0.00,3515699753746.640625,3515699756939.527832,21,0,62.848540,0.032354,32919240,21726943,0,0,33133,0,1,1 +1774085356.612944,9.64,4,3992.50,48.54,1763.80,1900.50,0.00,1.539629,0.028343,237,176,4.043056,0.026813,32920775,21728044,0,0,33136,0,1,1 +1774085361.614146,20.00,4,3992.50,49.13,1740.72,1923.49,0.00,0.000000,0.000000,237,176,34.178544,0.140940,32931373,21735990,0,0,33138,0,1,1 +1774085366.614252,3.06,4,3992.50,48.98,1746.53,1917.69,0.00,63105.104046,59907.709662,5538857,1057901,2.026989,0.019110,32932301,21736721,0,0,33141,0,1,1 +1774085371.613199,15.18,4,3992.50,49.14,1738.16,1924.09,0.00,0.000000,24.553412,5538857,1058401,0.032494,59.908566,32934527,21743369,0,0,33143,0,1,1 +1774085376.617705,30.69,4,3992.50,49.21,1727.27,1926.67,0.00,3515269121967.709961,3515269125139.227539,70,0,0.037379,119.128020,32937197,21755812,0,0,33146,0,1,1 +1774085381.613018,8.09,4,3992.50,49.03,1732.45,1919.55,0.00,1.960627,0.000195,238,2,0.016082,26.009640,32938027,21758736,0,0,33148,0,1,1 +1774085386.617195,13.43,4,3992.50,49.38,1720.04,1933.30,0.00,63066.839809,60064.698878,5538221,1059456,40.028159,0.023131,32942377,21760161,0,0,33151,0,1,1 +1774085391.617463,0.80,4,3992.50,49.37,1720.55,1932.79,0.00,4.109057,0.040428,5538995,1059657,0.006378,0.008278,32942524,21760331,0,0,33153,0,1,1 +1774085396.617508,1.00,4,3992.50,49.09,1731.33,1922.00,0.00,3518405828427.321289,3518405831437.971191,70,0,0.004667,0.009491,32942646,21760504,0,0,33156,0,1,1 +1774085401.617379,0.70,4,3992.50,49.12,1730.34,1922.99,0.00,0.126956,0.000000,199,0,0.003878,0.007123,32942746,21760644,0,0,33158,0,1,1 +1774085406.617411,0.85,4,3992.50,49.11,1730.72,1922.61,0.00,1.831824,0.000195,238,2,0.003420,0.005852,32942832,21760760,0,0,33161,0,1,1 +1774085411.616796,0.75,4,3992.50,48.78,1743.49,1909.84,0.00,3518869694153.453613,3518869694155.412598,70,0,0.003878,0.007123,32942932,21760900,0,0,33163,0,1,1 +1774085416.615406,0.95,4,3992.50,48.69,1746.99,1906.35,0.00,3519415655003.179199,0.000000,21,0,0.004574,0.008706,32943037,21761047,0,0,33166,0,1,1 +1774085421.613025,1.55,4,3992.50,48.06,1771.77,1881.57,0.00,63155.717170,60144.068201,5538996,1060193,0.003422,0.005883,32943123,21761165,0,0,33168,0,1,1 +1774085426.612972,0.75,4,3992.50,48.11,1769.58,1883.77,0.00,3518475203697.978027,3518475206706.715332,237,176,0.003971,0.007208,32943229,21761312,0,0,33171,0,1,1 +1774085431.612977,0.70,4,3992.50,48.11,1769.59,1883.75,0.00,3518433268236.401367,3518433268237.911621,21,0,0.003865,0.007122,32943328,21761452,0,0,33173,0,1,1 +1774085436.617051,0.85,4,3992.50,48.11,1769.63,1883.71,0.00,63070.149003,60066.589621,5538222,1060130,0.003883,0.007122,32943429,21761593,0,0,33176,0,1,1 +1774085441.617420,0.70,4,3992.50,48.12,1769.52,1883.82,0.00,3518177685082.881836,3518177688088.619141,70,0,0.003495,0.005907,32943520,21761713,0,0,33178,0,1,1 +1774085446.617119,1.00,4,3992.50,48.14,1768.56,1884.78,0.00,63125.291337,60119.196136,5538222,1060180,0.003878,0.007108,32943620,21761852,0,0,33181,0,1,1 +1774085451.615322,0.65,4,3992.50,48.12,1769.20,1884.11,0.00,3519702469648.272461,3519702472655.315918,21,0,0.003879,0.007125,32943720,21761992,0,0,33183,0,1,1 +1774085456.613953,0.80,4,3992.50,48.15,1768.02,1885.32,0.00,63138.817747,60132.096517,5538222,1060247,0.003879,0.007134,32943820,21762133,0,0,33186,0,1,1 +1774085461.613492,0.80,4,3992.50,48.15,1768.04,1885.31,0.00,4.109657,0.062506,5538996,1060471,0.002626,0.005472,32943891,21762240,0,0,33188,0,1,1 +1774085466.617859,11.21,4,3992.50,48.80,1742.20,1910.57,0.00,3515366683882.719238,3515366686888.528809,237,176,0.026002,40.037281,32945589,21766876,0,0,33191,0,1,1 +1774085471.614689,1.05,4,3992.50,48.65,1748.17,1904.61,0.00,0.468754,3520668917253.524414,238,2,0.002776,0.006758,32945667,21767007,0,0,33193,0,1,1 +1774085476.613024,0.75,4,3992.50,48.59,1750.51,1902.27,0.00,3519609257065.763672,3519609257067.771484,21,0,0.002290,0.006368,32945737,21767130,0,0,33196,0,1,1 +1774085481.615194,0.85,4,3992.50,48.58,1750.70,1902.03,0.00,63098.270810,60125.817485,5538996,1060822,0.001838,0.005738,32945794,21767233,0,0,33198,0,1,1 +1774085486.614780,0.75,4,3992.50,48.61,1749.52,1903.25,0.00,3518728432215.309082,3518728432219.400391,5538222,1060648,0.002276,0.006366,32945863,21767356,0,0,33201,0,1,1 +1774085491.617419,0.90,4,3992.50,48.58,1750.57,1902.21,0.00,3516581242583.091797,3516581245549.668457,237,176,0.002275,0.006340,32945932,21767477,0,0,33203,0,1,1 +1774085496.612958,0.85,4,3992.50,48.60,1749.83,1902.94,0.00,3521579007426.927246,3521579007428.438965,21,0,0.002903,0.007513,32946015,21767624,0,0,33206,0,1,1 +1774085501.613055,0.70,4,3992.50,48.60,1749.84,1902.93,0.00,0.000000,0.000000,21,0,0.001869,0.005151,32946074,21767726,0,0,33208,0,1,1 +1774085506.613029,0.75,4,3992.50,48.60,1749.85,1902.93,0.00,63121.869053,60156.296746,5538222,1060730,0.002301,0.006397,32946145,21767851,0,0,33211,0,1,1 +1774085511.613124,0.80,4,3992.50,48.60,1749.85,1902.92,0.00,4.109199,0.034765,5538996,1060915,0.002764,0.007508,32946233,21768001,0,0,33213,0,1,1 +1774085516.613027,0.75,4,3992.50,48.56,1751.61,1901.16,0.00,3518505363245.241211,3518505366212.923340,238,2,0.002364,0.006416,32946308,21768128,0,0,33216,0,1,1 +1774085521.613095,0.80,4,3992.50,48.59,1750.39,1902.39,0.00,0.000000,0.000000,238,2,0.001831,0.005089,32946364,21768226,0,0,33218,0,1,1 +1774085526.617527,0.80,4,3992.50,48.59,1750.18,1902.60,0.00,3515320947167.996094,3515320947169.953125,70,0,0.003203,0.007025,32946436,21768352,0,0,33221,0,1,1 +1774085531.613499,33.92,4,3992.50,54.87,1513.76,2148.23,0.00,63176.505560,60204.570488,5538996,1060967,80.784796,0.041526,32954960,21771011,0,0,33223,0,1,1 +1774085536.616315,31.37,4,3992.50,55.06,1507.11,2155.89,0.00,0.000000,0.117512,5538996,1061071,122.100685,0.026799,32967450,21773076,0,0,33226,0,1,1 +1774085541.616375,29.98,4,3992.50,54.90,1513.38,2149.65,0.00,0.000000,0.006738,5538996,1061083,121.169392,0.035715,32979991,21775650,0,0,33228,0,1,1 +1774085546.613460,30.08,4,3992.50,54.75,1519.28,2143.71,0.00,3520489422108.687012,3520489425078.372070,237,176,120.437289,0.042584,32992255,21778644,0,0,33231,0,1,1 +1774085551.616762,29.89,4,3992.50,55.09,1506.27,2156.75,0.00,3516115576837.192871,3516115576838.526855,199,0,119.685978,0.045567,33004408,21781903,0,0,33233,0,1,1 +1774085556.613797,29.27,4,3992.50,54.90,1513.64,2149.38,0.00,1.364188,0.028337,237,176,119.431472,0.054903,33016370,21786157,0,0,33236,0,1,1 +1774085561.617741,29.69,4,3992.50,54.87,1514.88,2148.12,0.00,3515663447453.931641,3515663447455.440918,21,0,120.073020,0.037874,33028739,21788861,0,0,33238,0,1,1 +1774085566.617812,29.36,4,3992.50,54.87,1514.79,2148.25,0.00,0.048046,0.000000,70,0,119.362258,0.044168,33040865,21792074,0,0,33241,0,1,1 +1774085571.613002,14.57,4,3992.50,49.57,1722.16,1940.93,0.00,3521825173708.197754,0.000000,21,0,102.440295,0.046120,33051265,21795418,0,0,33243,0,1,1 +1774085576.616415,0.90,4,3992.50,49.18,1737.70,1925.39,0.00,0.000000,0.000000,21,0,0.004487,0.005253,33051365,21795531,0,0,33246,0,1,1 +1774085581.612985,16.89,4,3992.50,49.24,1735.32,1927.74,0.00,1.539435,0.028340,237,176,14.114831,0.076762,33056170,21799222,0,0,33248,0,1,1 +1774085586.617155,15.36,4,3992.50,49.92,1708.54,1954.44,0.00,3515505192475.911621,3515505192477.420410,21,0,26.135574,0.115507,33064672,21805560,0,0,33251,0,1,1 +1774085591.612951,0.85,4,3992.50,49.78,1714.02,1948.97,0.00,0.175147,0.000000,199,0,0.003869,0.007128,33064771,21805700,0,0,33253,0,1,1 +1774085596.614860,1.65,4,3992.50,48.82,1751.50,1911.49,0.00,1.362859,0.028310,237,176,0.003660,0.006484,33064865,21805828,0,0,33256,0,1,1 +1774085601.614814,0.80,4,3992.50,48.79,1752.57,1910.43,0.00,3518469845504.254883,3518469845505.765137,21,0,0.003637,0.006501,33064957,21805957,0,0,33258,0,1,1 +1774085606.617689,1.00,4,3992.50,48.81,1751.92,1911.04,0.00,0.174899,0.000000,199,0,0.003257,0.006891,33065045,21806091,0,0,33261,0,1,1 +1774085611.616390,21.82,4,3992.50,48.88,1745.49,1913.59,0.00,3519351228036.949219,0.000000,70,0,0.044352,87.154289,33068181,21815434,0,0,33263,0,1,1 +1774085616.617049,30.02,4,3992.50,49.09,1728.80,1922.06,0.00,63117.441614,60315.788414,5539013,1063840,0.030905,117.954513,33070440,21827706,0,0,33266,0,1,1 +1774085621.616980,1.81,4,3992.50,48.15,1765.70,1885.18,0.00,3518485167450.359375,3518485170252.468262,21,0,0.006846,0.008171,33070594,21827888,0,0,33268,0,1,1 +1774085626.617383,13.34,4,3992.50,49.92,1698.11,1954.48,0.00,1.538255,0.028318,237,176,40.062721,0.026163,33075082,21829208,0,0,33271,0,1,1 +1774085631.617482,1.05,4,3992.50,49.20,1726.29,1926.29,0.00,3518367205336.724121,3518367205338.234375,21,0,0.005316,0.007730,33075206,21829361,0,0,33273,0,1,1 +1774085636.617272,0.60,4,3992.50,48.64,1748.15,1904.43,0.00,0.175007,0.000000,199,0,0.004485,0.006292,33075314,21829493,0,0,33276,0,1,1 +1774085641.617233,0.55,4,3992.50,48.67,1746.98,1905.62,0.00,3518464580426.381836,0.000000,21,0,0.003886,0.007130,33075415,21829634,0,0,33278,0,1,1 +1774085646.617313,0.70,4,3992.50,48.67,1746.99,1905.61,0.00,63142.464325,60362.358097,5539164,1064423,0.003878,0.007132,33075515,21829775,0,0,33281,0,1,1 +1774085651.617033,0.65,4,3992.50,48.28,1762.17,1890.43,0.00,0.000000,0.108893,5539164,1064470,0.003878,0.007110,33075615,21829914,0,0,33283,0,1,1 +1774085656.617723,0.60,4,3992.50,48.31,1761.20,1891.39,0.00,3517951414450.446289,3517951417228.098145,238,2,0.003458,0.005908,33075704,21830034,0,0,33286,0,1,1 +1774085661.613049,0.60,4,3992.50,48.31,1761.21,1891.38,0.00,3521728976703.569824,3521728976705.530273,70,0,0.003890,0.007137,33075805,21830175,0,0,33288,0,1,1 +1774085666.613268,0.55,4,3992.50,48.31,1761.23,1891.36,0.00,1.958703,0.000195,238,2,0.003959,0.007195,33075910,21830321,0,0,33291,0,1,1 +1774085671.617837,0.55,4,3992.50,48.31,1761.03,1891.57,0.00,63083.829688,60308.546520,5539164,1064698,0.003906,0.007103,33076012,21830460,0,0,33293,0,1,1 +1774085676.612944,0.70,4,3992.50,48.31,1761.04,1891.56,0.00,3521883240167.702148,3521883242948.241699,238,2,0.003493,0.005955,33076103,21830583,0,0,33296,0,1,1 +1774085681.613129,0.60,4,3992.50,48.32,1760.64,1891.91,0.00,3518307365044.272949,3518307365046.231445,70,0,0.003903,0.007797,33076205,21830729,0,0,33298,0,1,1 +1774085686.617389,4.66,4,3992.50,48.78,1742.56,1909.96,0.00,1.489063,0.028296,237,176,0.017570,14.619160,33077261,21832636,0,0,33301,0,1,1 +1774085691.616376,7.62,4,3992.50,48.39,1757.12,1894.46,0.00,3519150056363.086914,3519150056364.549316,70,0,0.010142,25.449879,33077873,21835457,0,0,33303,0,1,1 +1774085696.613063,0.65,4,3992.50,48.36,1758.07,1893.52,0.00,3520769835084.299805,0.000000,21,0,0.002061,0.005749,33077936,21835569,0,0,33306,0,1,1 +1774085701.617034,0.50,4,3992.50,48.38,1757.58,1894.00,0.00,0.174861,0.000000,199,0,0.000457,0.001286,33077950,21835595,0,0,33308,0,1,1 +1774085706.612941,0.50,4,3992.50,48.38,1757.59,1893.99,0.00,1.833337,0.000195,238,2,0.000000,0.000030,33077950,21835598,0,0,33311,0,1,1 +1774085711.615592,0.45,4,3992.50,48.38,1757.34,1894.23,0.00,63107.996496,60367.944536,5539166,1065151,0.000000,0.000020,33077950,21835600,0,0,33313,0,1,1 +1774085716.616928,0.55,4,3992.50,48.36,1758.16,1893.39,0.00,3517497505375.121094,3517497508117.900879,21,0,0.000000,0.000030,33077950,21835603,0,0,33316,0,1,1 +1774085721.617617,0.40,4,3992.50,48.36,1758.20,1893.39,0.00,0.048040,0.000000,70,0,0.000000,0.000020,33077950,21835605,0,0,33318,0,1,1 +1774085726.612954,0.50,4,3992.50,48.36,1758.20,1893.39,0.00,0.127072,0.000000,199,0,0.000000,0.000030,33077950,21835608,0,0,33321,0,1,1 +1774085731.616973,0.60,4,3992.50,48.36,1758.20,1893.39,0.00,1.830365,0.000195,238,2,0.002396,0.006478,33078029,21835739,0,0,33323,0,1,1 +1774085736.617142,0.50,4,3992.50,48.36,1758.19,1893.38,0.00,3518318376270.707031,3518318376272.713867,21,0,0.001986,0.005224,33078095,21835848,0,0,33326,0,1,1 +1774085741.612958,0.60,4,3992.50,48.36,1758.21,1893.37,0.00,0.175147,0.000000,199,0,0.002291,0.006361,33078165,21835970,0,0,33328,0,1,1 +1774085746.617179,0.90,4,3992.50,48.41,1756.08,1895.50,0.00,0.000000,0.000000,199,0,0.002287,0.006361,33078235,21836093,0,0,33331,0,1,1 +1774085751.613882,0.60,4,3992.50,48.42,1756.02,1895.56,0.00,1.364279,0.028339,237,176,0.002298,0.007013,33078306,21836220,0,0,33333,0,1,1 +1774085756.616392,36.98,4,3992.50,54.67,1520.29,2140.57,0.00,3516671638565.484375,3516671638566.993652,21,0,72.670542,0.041861,33085940,21838989,0,0,33336,0,1,1 +1774085761.613122,6.40,4,3992.50,55.18,1500.57,2160.39,0.00,0.000000,0.000000,21,0,12.486963,0.003858,33087276,21839219,0,0,33338,0,1,1 +1774085766.617182,0.55,4,3992.50,55.16,1501.45,2159.55,0.00,2.005207,0.000195,238,2,0.000707,0.000030,33087287,21839222,0,0,33341,0,1,1 +1774085771.617599,0.65,4,3992.50,55.19,1500.23,2160.78,0.00,3518144288891.328613,3518144288893.335449,21,0,0.000707,0.000020,33087298,21839224,0,0,33343,0,1,1 +1774085776.617248,0.46,4,3992.50,55.22,1499.00,2162.01,0.00,63147.914038,60408.496689,5539166,1065443,0.000000,0.000030,33087298,21839227,0,0,33346,0,1,1 +1774085781.612859,0.56,4,3992.50,55.46,1489.45,2171.56,0.00,3521528186826.443848,3521528189567.900391,199,0,0.000000,0.000020,33087298,21839229,0,0,33348,0,1,1 +1774085786.617137,0.56,4,3992.50,55.48,1488.95,2172.05,0.00,1.362213,0.028296,237,176,0.000707,0.000030,33087309,21839232,0,0,33351,0,1,1 +1774085791.615075,0.91,4,3992.50,55.47,1489.05,2171.96,0.00,3519888968079.145508,3519888968080.656250,21,0,0.003712,0.007180,33087394,21839357,0,0,33353,0,1,1 +1774085796.615744,1.62,4,3992.50,55.29,1496.25,2164.76,0.00,0.048040,0.000000,70,0,0.007268,0.009902,33087554,21839552,0,0,33356,0,1,1 +1774085801.612926,0.86,4,3992.50,55.32,1495.27,2165.74,0.00,3520421183077.760742,0.000000,21,0,0.006671,0.008845,33087701,21839728,0,0,33358,0,1,1 +1774085806.617756,0.91,4,3992.50,55.32,1495.27,2165.73,0.00,0.174831,0.000000,199,0,0.005317,0.007034,33087818,21839867,0,0,33361,0,1,1 +1774085811.617442,15.82,4,3992.50,54.79,1516.71,2145.26,0.00,3518658479721.522461,0.000000,21,0,57.900769,0.046624,33094203,21842913,0,0,33363,0,1,1 +1774085816.616435,33.89,4,3992.50,54.81,1516.22,2145.74,0.00,0.175035,0.000000,199,0,133.432395,0.076378,33108337,21848577,0,0,33366,0,1,1 +1774085821.613281,5.57,4,3992.50,55.98,1470.07,2191.92,0.00,3520657704596.519043,0.000000,70,0,13.959783,0.007432,33109843,21849162,0,0,33368,0,1,1 +1774085826.613907,0.61,4,3992.50,56.02,1468.59,2193.45,0.00,1.490146,0.028317,237,176,0.000539,0.000030,33109853,21849165,0,0,33371,0,1,1 +1774085831.613623,0.61,4,3992.50,56.06,1467.11,2194.93,0.00,0.468484,3518636740920.566406,238,2,0.000539,0.000020,33109863,21849167,0,0,33373,0,1,1 +1774085836.612967,0.56,4,3992.50,56.06,1467.11,2194.93,0.00,63149.773409,60412.379728,5539168,1065633,0.000000,0.000030,33109863,21849170,0,0,33376,0,1,1 +1774085841.616382,0.61,4,3992.50,56.06,1467.11,2194.93,0.00,3516035604819.524414,3516035607554.690430,238,2,0.000099,0.000020,33109869,21849172,0,0,33378,0,1,1 +1774085846.612940,0.51,4,3992.50,56.06,1467.11,2194.92,0.00,3520861421258.021484,3520861421260.029785,21,0,0.000601,0.000030,33109884,21849175,0,0,33381,0,1,1 +1774085851.617513,1.37,4,3992.50,56.00,1469.63,2192.36,0.00,0.000000,0.000000,21,0,0.002936,0.005999,33109954,21849292,0,0,33383,0,1,1 +1774085856.617072,0.56,4,3992.50,55.71,1480.66,2181.34,0.00,63149.068784,60409.823624,5539168,1065666,0.001273,0.002977,33110007,21849368,0,0,33386,0,1,1 +1774085861.613920,0.61,4,3992.50,55.71,1480.70,2181.33,0.00,3520656836555.214355,3520656836559.302734,5538394,1065498,0.000634,0.000688,33110050,21849409,0,0,33388,0,1,1 +1774085866.612948,0.66,4,3992.50,55.72,1480.46,2181.58,0.00,3519121389631.868164,3519121392365.807129,237,176,0.000250,0.000381,33110067,21849432,0,0,33391,0,1,1 +1774085871.613131,0.56,4,3992.50,55.72,1480.46,2181.58,0.00,0.468440,3518308496492.459473,238,2,0.000795,0.000457,33110095,21849451,0,0,33393,0,1,1 +1774085876.616309,0.96,4,3992.50,55.75,1479.27,2182.76,0.00,3516202106179.542480,3516202106181.548340,21,0,0.006616,0.008608,33110212,21849592,0,0,33396,0,1,1 +1774085881.617024,0.75,4,3992.50,47.99,1783.00,1879.04,0.00,2.006549,0.000195,238,2,0.001749,0.001157,33110235,21849609,0,0,33398,0,1,1 +1774085886.616580,0.80,4,3992.50,48.03,1781.50,1880.50,0.00,3518749763940.272949,3518749763942.231934,70,0,0.000187,0.000030,33110237,21849612,0,0,33401,0,1,1 +1774085891.613107,0.55,4,3992.50,48.06,1780.31,1881.73,0.00,0.000000,0.000000,70,0,0.000000,0.000020,33110237,21849614,0,0,33403,0,1,1 +1774085896.615794,0.40,4,3992.50,48.08,1779.58,1882.46,0.00,1.957737,0.000195,238,2,0.000182,0.000030,33110239,21849617,0,0,33406,0,1,1 +1774085901.617310,0.50,4,3992.50,48.09,1779.36,1882.68,0.00,3517370922810.262695,3517370922812.269043,21,0,0.000000,0.000020,33110239,21849619,0,0,33408,0,1,1 +1774085906.616895,0.40,4,3992.50,48.09,1779.36,1882.67,0.00,1.538506,0.028323,237,176,0.000168,0.000030,33110240,21849622,0,0,33411,0,1,1 +1774085911.612943,0.60,4,3992.50,48.10,1778.63,1883.41,0.00,63191.958336,60452.399442,5539174,1065825,0.002191,0.005937,33110315,21849742,0,0,33413,0,1,1 +1774085916.612945,0.70,4,3992.50,48.10,1778.63,1883.41,0.00,3518436175354.996094,3518436178093.851074,70,0,0.002289,0.006366,33110385,21849865,0,0,33416,0,1,1 +1774085921.615457,0.80,4,3992.50,48.11,1778.57,1883.43,0.00,63107.688016,60374.297766,5538400,1065674,0.003651,0.006142,33110477,21849991,0,0,33418,0,1,1 +1774085926.612954,0.60,4,3992.50,48.11,1778.57,1883.43,0.00,4.111336,0.067612,5539174,1065891,0.002303,0.006388,33110548,21850115,0,0,33421,0,1,1 +1774085931.617717,0.75,4,3992.50,48.10,1778.62,1883.42,0.00,3515088583072.208984,3515088585808.407227,70,0,0.005456,0.009793,33110660,21850277,0,0,33423,0,1,1 +1774085936.617535,0.70,4,3992.50,48.10,1778.62,1883.41,0.00,3518565572488.654297,0.000000,21,0,0.003353,0.006776,33110752,21850414,0,0,33426,0,1,1 +1774085941.617857,0.55,4,3992.50,48.09,1779.36,1882.68,0.00,0.000000,0.000000,21,0,0.000000,0.000020,33110752,21850416,0,0,33428,0,1,1 +1774085946.617378,0.50,4,3992.50,48.11,1778.38,1883.66,0.00,0.000000,0.000000,21,0,0.000000,0.000674,33110752,21850423,0,0,33431,0,1,1 +1774085951.616004,0.60,4,3992.50,48.12,1778.02,1883.98,0.00,0.000000,0.000000,21,0,0.000000,0.000020,33110752,21850425,0,0,33433,0,1,1 +1774085956.613034,0.40,4,3992.50,48.12,1778.06,1883.98,0.00,0.048075,0.000000,70,0,0.000000,0.000030,33110752,21850428,0,0,33436,0,1,1 +1774085961.614512,0.55,4,3992.50,48.12,1778.06,1883.98,0.00,63124.850514,60386.933605,5539174,1065968,0.000000,0.000020,33110752,21850430,0,0,33438,0,1,1 +1774085966.613031,0.50,4,3992.50,48.12,1778.06,1883.98,0.00,0.000000,0.004689,5539174,1065973,0.000000,0.000030,33110752,21850433,0,0,33441,0,1,1 +1774085971.613858,26.17,4,3992.50,54.88,1513.37,2148.56,0.00,0.001562,0.020016,5539176,1066004,46.662285,0.052168,33115741,21852337,0,0,33443,0,1,1 +1774085976.612937,31.93,4,3992.50,54.68,1521.11,2140.84,0.00,3519084991487.068359,0.049619,5538402,1065885,118.188366,0.039166,33127918,21854950,0,0,33446,0,1,1 +1774085981.614818,30.21,4,3992.50,54.83,1515.32,2146.61,0.00,3517114410363.885742,3517114413097.450195,21,0,119.524898,0.034256,33140256,21857142,0,0,33448,0,1,1 +1774085986.617260,29.20,4,3992.50,54.85,1514.55,2147.45,0.00,0.000000,0.000000,21,0,118.704175,0.037747,33152267,21860008,0,0,33451,0,1,1 +1774085991.616912,29.38,4,3992.50,54.72,1519.61,2142.32,0.00,0.175012,0.000000,199,0,120.176596,0.028099,33164687,21862027,0,0,33453,0,1,1 +1774085996.617803,29.93,4,3992.50,54.86,1514.13,2147.80,0.00,3517810892906.716309,0.000000,21,0,118.144672,0.044668,33176786,21865162,0,0,33456,0,1,1 +1774086001.613894,4.40,4,3992.50,55.24,1499.22,2162.79,0.00,0.000000,0.000000,21,0,13.561247,0.002212,33178215,21865329,0,0,33458,0,1,1 +1774086006.614621,0.61,4,3992.50,55.45,1491.05,2170.98,0.00,2.006544,0.000195,238,2,0.000614,0.000030,33178227,21865332,0,0,33461,0,1,1 +1774086011.616431,0.51,4,3992.50,55.25,1498.80,2163.23,0.00,3517164152323.748047,3517164152325.579102,199,0,0.000278,0.000664,33178237,21865338,0,0,33463,0,1,1 +1774086016.613029,0.61,4,3992.50,55.25,1498.80,2163.23,0.00,3520832639761.146973,0.000000,21,0,0.000484,0.000030,33178257,21865341,0,0,33466,0,1,1 +1774086021.613713,0.56,4,3992.50,55.27,1498.09,2163.95,0.00,63134.927504,60396.832901,5539177,1066191,0.000092,0.000020,33178262,21865343,0,0,33468,0,1,1 +1774086026.616947,0.56,4,3992.50,55.27,1498.09,2163.95,0.00,3516162994187.010254,3516162996923.661133,70,0,0.000297,0.000030,33178273,21865346,0,0,33471,0,1,1 +1774086031.616491,1.16,4,3992.50,55.27,1498.09,2163.95,0.00,0.000000,0.000000,70,0,0.005344,0.007195,33178391,21865488,0,0,33473,0,1,1 +1774086036.617112,2.07,4,3992.50,55.27,1498.11,2163.93,0.00,63131.550442,60397.592012,5538403,1066058,0.006638,0.008795,33178536,21865661,0,0,33476,0,1,1 +1774086041.617646,10.23,4,3992.50,54.94,1511.10,2150.95,0.00,4.109620,0.034762,5539178,1066247,83.114991,0.033760,33187120,21867872,0,0,33478,0,1,1 +1774086046.613056,1.05,4,3992.50,54.96,1510.36,2151.68,0.00,3521670218607.512207,3521670221346.441406,238,2,0.005767,0.008412,33187249,21868042,0,0,33481,0,1,1 +1774086051.617736,2.05,4,3992.50,48.69,1755.68,1906.36,0.00,3515146912559.071777,3515146912561.077148,21,0,1.614651,0.015175,33188060,21868725,0,0,33483,0,1,1 +1774086056.617172,21.05,4,3992.50,49.84,1710.70,1951.34,0.00,0.048052,0.000000,70,0,24.313973,0.114269,33196055,21874572,0,0,33486,0,1,1 +1774086061.613529,5.63,4,3992.50,49.33,1730.47,1931.57,0.00,1.960217,0.000195,238,2,5.887842,0.022357,33197923,21875859,0,0,33488,0,1,1 +1774086066.616432,1.00,4,3992.50,48.92,1746.77,1915.27,0.00,3516395973371.032715,0.028109,237,176,0.001440,0.000030,33197951,21875862,0,0,33491,0,1,1 +1774086071.613519,1.36,4,3992.50,48.92,1746.81,1915.23,0.00,3520487960007.685059,3520487960009.148438,70,0,0.002031,0.000020,33197978,21875864,0,0,33493,0,1,1 +1774086076.617722,1.15,4,3992.50,48.61,1758.77,1903.25,0.00,63090.610417,60355.385007,5539192,1067274,0.000424,0.000673,33197986,21875871,0,0,33496,0,1,1 +1774086081.613005,0.91,4,3992.50,48.61,1759.02,1903.00,0.00,3521759248456.214844,3521759248460.306152,5538418,1067099,0.000192,0.000020,33197990,21875873,0,0,33498,0,1,1 +1774086086.615274,1.00,4,3992.50,48.64,1757.82,1904.20,0.00,3516841338894.109863,3516841341626.355469,21,0,0.001388,0.000503,33198015,21875886,0,0,33501,0,1,1 +1774086091.612939,1.71,4,3992.50,48.63,1758.15,1903.88,0.00,2.007774,0.000195,238,2,0.001499,0.002730,33198055,21875941,0,0,33503,0,1,1 +1774086096.617579,1.96,4,3992.50,48.61,1758.66,1903.37,0.00,63079.031443,60350.437800,5538418,1067327,0.000715,0.000764,33198091,21875983,0,0,33506,0,1,1 +1774086101.613901,0.75,4,3992.50,48.62,1758.45,1903.58,0.00,0.000000,0.008698,5538418,1067358,0.000732,0.000642,33198134,21876021,0,0,33508,0,1,1 +1774086106.616418,0.80,4,3992.50,48.58,1760.11,1901.93,0.00,3516667015226.379883,3516667017956.619629,237,176,0.000590,0.000727,33198174,21876063,0,0,33511,0,1,1 +1774086111.613786,1.96,4,3992.50,48.61,1758.88,1903.16,0.00,0.468704,3520290087520.591309,238,2,0.000711,0.002012,33198225,21876102,0,0,33513,0,1,1 +1774086116.613035,0.85,4,3992.50,48.60,1759.04,1902.99,0.00,3518966141866.979004,3518966141868.811523,199,0,0.000962,0.000327,33198286,21876123,0,0,33516,0,1,1 +1774086121.617660,0.90,4,3992.50,48.62,1758.61,1903.42,0.00,3515185506215.539551,0.000000,21,0,0.000440,0.000131,33198317,21876131,0,0,33518,0,1,1 +1774086126.613044,1.20,4,3992.50,48.61,1758.64,1903.39,0.00,63197.919776,60462.459839,5538418,1067581,0.000410,0.000127,33198346,21876139,0,0,33521,0,1,1 +1774086131.615135,0.75,4,3992.50,48.61,1758.68,1903.35,0.00,3516966498771.831055,3516966501501.617188,238,2,0.000210,0.000117,33198361,21876146,0,0,33523,0,1,1 +1774086136.615416,0.85,4,3992.50,48.70,1755.46,1906.53,0.00,3518239398685.593262,3518239398687.600098,21,0,0.000652,0.000140,33198403,21876154,0,0,33526,0,1,1 +1774086141.617147,0.70,4,3992.50,48.60,1759.19,1902.84,0.00,0.000000,0.000000,21,0,0.000424,0.000754,33198424,21876165,0,0,33528,0,1,1 +1774086146.616552,0.80,4,3992.50,48.60,1759.22,1902.82,0.00,1.538562,0.028324,237,176,0.000359,0.000151,33198448,21876174,0,0,33531,0,1,1 +1774086151.616610,0.55,4,3992.50,48.60,1759.22,1902.82,0.00,63141.421378,60406.131700,5539192,1067961,0.002705,0.003362,33198492,21876219,0,0,33533,0,1,1 +1774086156.617567,6.93,4,3992.50,48.63,1758.20,1903.82,0.00,3517763426502.281738,3517763429238.588867,21,0,8.054984,0.054271,33201286,21878459,0,0,33536,0,1,1 +1774086161.617911,0.90,4,3992.50,48.63,1757.98,1904.04,0.00,63139.362390,60402.892250,5539201,1068244,0.008982,0.021071,33201545,21878864,0,0,33538,0,1,1 +1774086166.612944,0.90,4,3992.50,48.63,1758.01,1904.02,0.00,0.000000,0.007429,5539201,1068252,0.009512,0.022347,33201823,21879292,0,0,33541,0,1,1 +1774086171.613049,1.10,4,3992.50,48.50,1763.21,1898.82,0.00,3518362918135.342285,3518362920869.928711,238,2,0.010456,0.024899,33202132,21879771,0,0,33543,0,1,1 +1774086176.617730,1.00,4,3992.50,48.50,1762.98,1899.05,0.00,3515146696228.528320,3515146696230.533203,21,0,0.008943,0.021052,33202389,21880176,0,0,33546,0,1,1 +1774086181.617423,0.40,4,3992.50,48.52,1762.50,1899.53,0.00,0.048050,0.000000,70,0,0.000187,0.000020,33202401,21880178,0,0,33548,0,1,1 +1774086186.616503,0.30,4,3992.50,48.52,1762.50,1899.53,0.00,0.126976,0.000000,199,0,0.000098,0.000030,33202407,21880181,0,0,33551,0,1,1 +1774086191.617259,0.50,4,3992.50,48.52,1762.52,1899.52,0.00,63133.993814,60398.104474,5539201,1068369,0.000093,0.000020,33202413,21880183,0,0,33553,0,1,1 +1774086196.617243,0.40,4,3992.50,48.52,1762.52,1899.52,0.00,3518448178889.338867,3518448181625.777344,70,0,0.000042,0.000030,33202416,21880186,0,0,33556,0,1,1 +1774086201.617179,0.55,4,3992.50,48.56,1760.65,1901.34,0.00,0.000000,0.000000,70,0,0.000038,0.000020,33202420,21880188,0,0,33558,0,1,1 +1774086206.613516,0.50,4,3992.50,48.56,1760.70,1901.33,0.00,3521016598604.385254,0.000000,21,0,0.000059,0.000749,33202424,21880199,0,0,33561,0,1,1 +1774086211.615622,1.05,4,3992.50,48.20,1774.80,1887.23,0.00,0.174926,0.000000,199,0,0.008096,0.022192,33202675,21880622,0,0,33563,0,1,1 +1774086216.613030,2.71,4,3992.50,48.49,1763.45,1898.58,0.00,1.364086,0.028335,237,176,2.019969,0.028883,33203516,21881447,0,0,33566,0,1,1 +1774086221.613017,1.25,4,3992.50,48.54,1761.52,1900.51,0.00,3518445993737.618652,3518445993739.128906,21,0,0.008986,0.022212,33203772,21881868,0,0,33568,0,1,1 +1774086226.612962,24.22,4,3992.50,48.72,1750.77,1907.52,0.00,0.175002,0.000000,199,0,0.047573,92.151750,33206987,21891931,0,0,33571,0,1,1 +1774086231.617336,30.78,4,3992.50,48.85,1738.14,1912.57,0.00,3515362615790.380371,0.000000,21,0,0.050165,112.867792,33210606,21903727,0,0,33573,0,1,1 +1774086236.617414,1.91,4,3992.50,48.68,1747.91,1906.02,0.00,0.048046,0.000000,70,0,0.012933,0.026755,33210928,21904214,0,0,33576,0,1,1 +1774086241.617826,10.48,4,3992.50,53.98,1541.90,2113.52,0.00,0.126943,0.000000,199,0,8.816437,0.008611,33212148,21904864,0,0,33578,0,1,1 +1774086246.616984,0.45,4,3992.50,53.97,1542.40,2113.02,0.00,1.832144,0.000195,238,2,0.000447,0.000030,33212159,21904867,0,0,33581,0,1,1 +1774086251.617719,0.50,4,3992.50,53.95,1543.25,2112.38,0.00,3517920106286.849609,3517920106288.855957,21,0,0.000446,0.000020,33212170,21904869,0,0,33583,0,1,1 +1774086256.616978,0.55,4,3992.50,53.98,1542.27,2113.36,0.00,63166.628919,60599.385669,5538576,1069805,0.000000,0.000030,33212170,21904872,0,0,33586,0,1,1 +1774086261.612980,0.75,4,3992.50,53.98,1542.27,2113.36,0.00,3521253301154.847656,3521253303722.254395,237,176,0.000037,0.000020,33212172,21904874,0,0,33588,0,1,1 +1774086266.612969,0.65,4,3992.50,54.20,1533.42,2122.17,0.00,0.468458,3518444653912.059082,238,2,0.000489,0.000030,33212187,21904877,0,0,33591,0,1,1 +1774086271.612939,0.60,4,3992.50,54.21,1533.00,2122.63,0.00,63155.640797,60613.202166,5538576,1070018,0.002929,0.008522,33212285,21905044,0,0,33593,0,1,1 +1774086276.613051,0.70,4,3992.50,54.23,1532.26,2123.37,0.00,3518358786246.386230,3518358788790.759277,21,0,0.001806,0.004437,33212358,21905155,0,0,33596,0,1,1 +1774086281.613053,0.60,4,3992.50,54.12,1536.53,2119.10,0.00,0.000000,0.000000,21,0,0.000978,0.000616,33212420,21905192,0,0,33598,0,1,1 +1774086286.617251,0.50,4,3992.50,54.12,1536.53,2119.10,0.00,2.005153,0.000195,238,2,0.000412,0.000355,33212446,21905213,0,0,33601,0,1,1 +1774086291.613039,0.60,4,3992.50,54.12,1536.53,2119.10,0.00,3521403616046.086426,3521403616048.094727,21,0,0.000587,0.000528,33212476,21905230,0,0,33603,0,1,1 +1774086296.613027,0.55,4,3992.50,54.16,1535.31,2120.32,0.00,1.538383,0.028320,237,176,0.000216,0.000205,33212491,21905243,0,0,33606,0,1,1 +1774086301.613886,0.85,4,3992.50,48.32,1763.82,1891.80,0.00,3517832923984.778809,3517832923986.288574,21,0,0.000560,0.000741,33212542,21905298,0,0,33608,0,1,1 +1774086306.616801,0.85,4,3992.50,48.36,1762.41,1893.21,0.00,0.000000,0.000000,21,0,0.002360,0.005590,33212643,21905435,0,0,33611,0,1,1 +1774086311.617557,1.15,4,3992.50,48.35,1762.44,1893.19,0.00,2.006532,0.000195,238,2,0.008531,0.023499,33212907,21905884,0,0,33613,0,1,1 +1774086316.615661,1.20,4,3992.50,48.37,1761.70,1893.91,0.00,0.000000,0.000000,238,2,0.008238,0.022849,33213159,21906319,0,0,33616,0,1,1 +1774086321.617134,1.50,4,3992.50,48.37,1761.75,1893.88,0.00,63136.661058,60595.210154,5538576,1070255,0.010814,0.024791,33213447,21906780,0,0,33618,0,1,1 +1774086326.617388,1.20,4,3992.50,48.17,1769.64,1886.00,0.00,3518259010644.544922,3518259013187.112793,237,176,0.008993,0.024764,33213725,21907252,0,0,33621,0,1,1 +1774086331.613027,1.05,4,3992.50,48.20,1768.45,1887.14,0.00,3521508499562.572266,3521508499564.083496,21,0,0.007720,0.021073,33213966,21907659,0,0,33623,0,1,1 +1774086336.617546,2.05,4,3992.50,48.20,1768.50,1887.13,0.00,0.000000,0.000000,21,0,0.007343,0.020931,33214192,21908050,0,0,33626,0,1,1 +1774086341.617268,1.00,4,3992.50,48.25,1766.55,1889.08,0.00,0.000000,0.000000,21,0,0.007337,0.020297,33214417,21908436,0,0,33628,0,1,1 +1774086346.616490,1.45,4,3992.50,48.25,1766.55,1889.07,0.00,0.175027,0.000000,199,0,0.007359,0.020317,33214644,21908824,0,0,33631,0,1,1 +1774086351.617777,1.20,4,3992.50,48.25,1766.57,1889.05,0.00,1.831365,0.000195,238,2,0.009629,0.026641,33214939,21909330,0,0,33633,0,1,1 +1774086356.614046,1.25,4,3992.50,48.25,1766.37,1889.25,0.00,0.000000,0.000000,238,2,0.007355,0.020321,33215165,21909717,0,0,33636,0,1,1 +1774086361.617744,14.11,4,3992.50,50.19,1690.71,1964.91,0.00,63112.692817,60568.555974,5539350,1070704,32.636081,0.042916,33219040,21911488,0,0,33638,0,1,1 +1774086366.617562,11.40,4,3992.50,48.65,1750.13,1904.92,0.00,3518565115935.135254,3518565118483.204590,70,0,0.031869,40.085469,33220983,21916340,0,0,33641,0,1,1 +1774086371.617762,1.20,4,3992.50,48.66,1749.90,1905.15,0.00,3518296244122.175293,0.000000,21,0,0.007349,0.020295,33221209,21916726,0,0,33643,0,1,1 +1774086376.616591,1.15,4,3992.50,48.66,1749.91,1905.14,0.00,63176.175188,60649.343762,5539350,1070956,0.008916,0.024722,33221481,21917195,0,0,33646,0,1,1 +1774086381.617836,1.25,4,3992.50,48.66,1749.93,1905.12,0.00,3517561744906.131836,3517561747429.736328,238,2,0.007572,0.020957,33221714,21917596,0,0,33648,0,1,1 +1774086386.616527,0.90,4,3992.50,48.59,1752.52,1902.54,0.00,0.000000,0.000000,238,2,0.005495,0.015241,33221882,21917887,0,0,33651,0,1,1 +1774086391.617300,1.10,4,3992.50,48.62,1751.54,1903.52,0.00,3517893420655.593262,3517893420657.600098,21,0,0.007336,0.020293,33222107,21918273,0,0,33653,0,1,1 +1774086396.616394,1.35,4,3992.50,48.65,1750.12,1904.89,0.00,2.007200,0.000195,238,2,0.008737,0.024087,33222376,21918730,0,0,33656,0,1,1 +1774086401.617730,1.25,4,3992.50,48.46,1757.58,1897.48,0.00,3517496877847.836914,3517496877849.843262,21,0,0.007805,0.022226,33222616,21919146,0,0,33658,0,1,1 +1774086406.612980,1.05,4,3992.50,48.46,1757.60,1897.46,0.00,0.175166,0.000000,199,0,0.008095,0.021591,33222865,21919565,0,0,33661,0,1,1 +1774086411.616523,1.15,4,3992.50,48.43,1759.01,1896.05,0.00,3515945901032.146973,0.000000,21,0,0.007494,0.020413,33223101,21919961,0,0,33663,0,1,1 +1774086416.617732,1.00,4,3992.50,48.46,1757.79,1897.26,0.00,63142.005900,60639.009134,5538576,1070953,0.007547,0.020930,33223332,21920360,0,0,33666,0,1,1 +1774086421.617048,1.30,4,3992.50,48.46,1757.82,1897.25,0.00,3518918369777.319336,3518918372281.263672,21,0,0.008953,0.024747,33223607,21920831,0,0,33668,0,1,1 +1774086426.617227,5.62,4,3992.50,55.00,1501.54,2153.24,0.00,0.000000,0.000000,21,0,2.014387,0.026294,33224213,21921527,0,0,33671,0,1,1 +1774086431.614127,42.28,4,3992.50,54.99,1511.18,2152.87,0.00,0.000000,0.000000,21,0,111.228333,0.046943,33235745,21924320,0,0,33673,0,1,1 +1774086436.617021,31.66,4,3992.50,54.73,1521.97,2142.92,0.00,0.048019,0.000000,70,0,119.095785,0.028691,33248006,21926419,0,0,33676,0,1,1 +1774086441.617216,30.99,4,3992.50,55.15,1505.64,2159.26,0.00,3518299869233.116211,0.000000,21,0,118.564808,0.047657,33260370,21929219,0,0,33678,0,1,1 +1774086446.617430,30.97,4,3992.50,54.87,1516.75,2148.14,0.00,0.000000,0.000000,21,0,119.761862,0.035578,33272688,21931605,0,0,33681,0,1,1 +1774086451.616385,30.17,4,3992.50,54.90,1515.48,2149.41,0.00,0.000000,0.000000,21,0,118.995421,0.032592,33285135,21933341,0,0,33683,0,1,1 +1774086456.613320,29.29,4,3992.50,54.81,1519.05,2145.89,0.00,2.008067,0.000195,238,2,119.440251,0.040776,33297384,21936097,0,0,33686,0,1,1 +1774086461.613306,30.92,4,3992.50,54.88,1516.33,2148.70,0.00,3518447164679.338379,3518447164681.297363,70,0,119.371700,0.049563,33309834,21939045,0,0,33688,0,1,1 +1774086466.613802,30.90,4,3992.50,54.87,1516.57,2148.34,0.00,0.126941,0.000000,199,0,119.159866,0.053587,33322217,21942303,0,0,33691,0,1,1 +1774086471.616821,9.98,4,3992.50,48.54,1764.37,1900.62,0.00,63123.156604,60617.548103,5539359,1071388,77.865441,0.036995,33330325,21944459,0,0,33693,0,1,1 +1774086476.617725,2.01,4,3992.50,48.58,1762.97,1902.02,0.00,3517800755162.081543,3517800757668.749512,199,0,0.012770,0.018750,33330621,21944834,0,0,33696,0,1,1 +1774086481.617384,20.76,4,3992.50,49.77,1716.36,1948.63,0.00,1.363472,0.028322,237,176,24.166897,0.126603,33338705,21950923,0,0,33698,0,1,1 +1774086486.617460,10.61,4,3992.50,49.96,1709.04,1955.95,0.00,3518383935623.187012,3518383935624.649414,70,0,16.095448,0.071699,33343877,21954780,0,0,33701,0,1,1 +1774086491.617621,4.11,4,3992.50,49.20,1738.59,1926.38,0.00,63159.412031,60653.183102,5539364,1072620,0.018281,13.350549,33344892,21956641,0,0,33703,0,1,1 +1774086496.614865,30.35,4,3992.50,49.15,1734.33,1924.37,0.00,3520378205521.515625,3520378208027.745605,237,176,0.033216,118.531607,33347094,21969246,0,0,33706,0,1,1 +1774086501.617532,19.36,4,3992.50,48.96,1739.37,1917.00,0.00,63122.188442,60795.048901,5538593,1073844,0.016229,73.274192,33348032,21976984,0,0,33708,0,1,1 +1774086506.616381,8.58,4,3992.50,53.69,1557.49,2102.14,0.00,3519247042015.029297,3519247044343.449219,238,2,1.418430,0.028713,33348703,21977677,0,0,33711,0,1,1 +1774086511.612941,6.68,4,3992.50,49.53,1720.23,1939.41,0.00,63220.665120,60902.567003,5539487,1074346,38.691491,0.029728,33352966,21979255,0,0,33713,0,1,1 +1774086516.614971,1.65,4,3992.50,48.94,1743.66,1915.99,0.00,3517009245577.529785,3517009247895.099121,21,0,0.011428,0.028351,33353290,21979779,0,0,33716,0,1,1 +1774086521.612965,1.00,4,3992.50,48.82,1748.34,1911.30,0.00,0.000000,0.000000,21,0,0.009043,0.021208,33353554,21980192,0,0,33718,0,1,1 +1774086526.612952,1.00,4,3992.50,48.82,1748.40,1911.25,0.00,0.048047,0.000000,70,0,0.008959,0.021080,33353812,21980598,0,0,33721,0,1,1 +1774086531.616432,1.15,4,3992.50,48.82,1748.42,1911.23,0.00,3515989794487.816895,0.000000,21,0,0.010742,0.022590,33354095,21981018,0,0,33723,0,1,1 +1774086536.617832,1.10,4,3992.50,48.98,1741.93,1917.72,0.00,1.537948,0.028312,237,176,0.010670,0.023064,33354376,21981444,0,0,33726,0,1,1 +1774086541.617566,1.25,4,3992.50,48.80,1749.09,1910.54,0.00,0.468482,3518624118196.330078,238,2,0.010770,0.026120,33354688,21981943,0,0,33728,0,1,1 +1774086546.617659,0.90,4,3992.50,48.81,1748.64,1911.01,0.00,3518371812904.354980,3518371812906.313965,70,0,0.008295,0.020847,33354930,21982342,0,0,33731,0,1,1 +1774086551.617315,0.85,4,3992.50,48.83,1747.93,1911.73,0.00,63183.487022,60865.430380,5539487,1074758,0.009020,0.021139,33355191,21982752,0,0,33733,0,1,1 +1774086556.617681,0.95,4,3992.50,48.83,1747.95,1911.71,0.00,3518179505198.577148,3518179507514.842285,237,176,0.008925,0.021070,33355446,21983157,0,0,33736,0,1,1 +1774086561.613270,0.95,4,3992.50,48.83,1747.97,1911.68,0.00,63233.422449,60915.014209,5539487,1074839,0.009734,0.022998,33355730,21983598,0,0,33738,0,1,1 +1774086566.613801,1.05,4,3992.50,48.91,1744.70,1914.92,0.00,3518063669472.094238,3518063671789.721191,21,0,0.010077,0.024271,33356021,21984066,0,0,33741,0,1,1 +1774086571.617213,0.85,4,3992.50,48.91,1744.75,1914.89,0.00,0.000000,0.000000,21,0,0.008907,0.021048,33356275,21984470,0,0,33743,0,1,1 +1774086576.615885,0.95,4,3992.50,48.92,1744.42,1915.23,0.00,0.048060,0.000000,70,0,0.008954,0.021109,33356532,21984877,0,0,33746,0,1,1 +1774086581.617545,0.90,4,3992.50,48.91,1744.70,1914.96,0.00,0.126911,0.000000,199,0,0.008973,0.021086,33356791,21985283,0,0,33748,0,1,1 +1774086586.617582,11.19,4,3992.50,49.09,1735.30,1922.08,0.00,3518410913687.220215,0.000000,21,0,0.035888,40.081773,33358951,21990053,0,0,33751,0,1,1 +1774086591.612948,0.95,4,3992.50,48.53,1757.28,1900.10,0.00,0.000000,0.000000,21,0,0.006568,0.017477,33359151,21990386,0,0,33753,0,1,1 +1774086596.613111,0.95,4,3992.50,48.57,1755.55,1901.81,0.00,0.000000,0.000000,21,0,0.008265,0.022814,33359405,21990819,0,0,33756,0,1,1 +1774086601.614391,0.95,4,3992.50,48.59,1755.05,1902.28,0.00,63163.004405,60882.052125,5539487,1075321,0.008301,0.023493,33359662,21991259,0,0,33758,0,1,1 +1774086606.617137,0.90,4,3992.50,48.60,1754.41,1902.96,0.00,3516506366390.316406,3516506368669.091797,237,176,0.007320,0.020294,33359886,21991646,0,0,33761,0,1,1 +1774086611.616964,1.66,4,3992.50,48.60,1754.65,1902.71,0.00,3518558867276.768555,3518558867278.278809,21,0,0.007350,0.020296,33360112,21992032,0,0,33763,0,1,1 +1774086616.612973,0.90,4,3992.50,48.62,1753.70,1903.68,0.00,63225.529063,60946.304458,5538714,1075194,0.007317,0.020322,33360335,21992419,0,0,33766,0,1,1 +1774086621.616909,1.00,4,3992.50,48.44,1760.84,1896.53,0.00,3515669857196.566895,3515669859472.181641,21,0,0.009194,0.025359,33360619,21992902,0,0,33768,0,1,1 +1774086626.613600,0.85,4,3992.50,48.45,1760.37,1897.00,0.00,63216.911663,60942.026937,5538714,1075223,0.007379,0.020406,33360847,21993295,0,0,33771,0,1,1 +1774086631.613491,0.95,4,3992.50,48.39,1762.61,1894.76,0.00,3518514005535.470703,3518514007808.899414,21,0,0.007431,0.020415,33361079,21993689,0,0,33773,0,1,1 +1774086636.617731,0.85,4,3992.50,48.40,1762.27,1895.06,0.00,63121.538300,60850.167583,5538714,1075281,0.007455,0.020389,33361312,21994084,0,0,33776,0,1,1 +1774086641.612959,0.95,4,3992.50,48.40,1762.32,1895.05,0.00,3521798785058.733398,3521798787334.027832,199,0,0.007344,0.020315,33361537,21994470,0,0,33778,0,1,1 +1774086646.615285,1.40,4,3992.50,48.40,1762.34,1895.04,0.00,1.830984,0.000195,238,2,0.009227,0.025363,33361823,21994953,0,0,33781,0,1,1 +1774086651.616963,10.58,4,3992.50,54.79,1515.34,2145.11,0.00,3517256488390.020996,0.028116,237,176,4.416100,0.028486,33362663,21995824,0,0,33783,0,1,1 +1774086656.612977,36.60,4,3992.50,55.02,1509.94,2154.07,0.00,0.468831,3521244678250.419922,238,2,122.269093,0.044591,33375202,21998648,0,0,33786,0,1,1 +1774086661.614724,29.18,4,3992.50,55.09,1507.30,2156.81,0.00,0.000000,0.000000,238,2,122.126613,0.037257,33387690,22001345,0,0,33788,0,1,1 +1774086666.616924,29.18,4,3992.50,54.91,1514.23,2149.86,0.00,63149.389839,60875.173746,5539488,1075614,120.512148,0.048399,33399915,22004724,0,0,33791,0,1,1 +1774086671.618376,29.04,4,3992.50,55.10,1506.78,2157.23,0.00,3517415496898.323730,3517415499172.879883,238,2,120.531963,0.047394,33412150,22007918,0,0,33793,0,1,1 +1774086676.614941,28.97,4,3992.50,55.25,1501.05,2163.02,0.00,3520856158179.313965,3520856158181.322266,21,0,119.649821,0.046134,33424354,22010754,0,0,33796,0,1,1 +1774086681.617877,28.88,4,3992.50,54.78,1519.35,2144.73,0.00,0.000000,0.000000,21,0,119.894492,0.044272,33436546,22014147,0,0,33798,0,1,1 +1774086686.617576,29.45,4,3992.50,54.87,1515.86,2148.16,0.00,63182.981069,60905.780244,5539488,1075664,119.975108,0.064842,33448850,22018693,0,0,33801,0,1,1 +1774086691.615381,29.56,4,3992.50,55.11,1506.50,2157.59,0.00,3519982916635.541504,3519982918912.094727,237,176,118.416061,0.054817,33460914,22022662,0,0,33803,0,1,1 +1774086696.612954,3.51,4,3992.50,49.43,1728.92,1935.22,0.00,0.000000,0.000000,237,176,57.713905,0.029804,33466945,22024371,0,0,33806,0,1,1 +1774086701.616397,3.46,4,3992.50,48.95,1747.57,1916.58,0.00,63130.201157,60860.475288,5538725,1075718,0.017266,0.025044,33467339,22024862,0,0,33808,0,1,1 +1774086706.616391,24.53,4,3992.50,49.05,1743.81,1920.34,0.00,0.000000,0.152735,5538725,1076282,34.205824,0.153864,33478410,22033071,0,0,33811,0,1,1 +1774086711.616474,5.78,4,3992.50,48.84,1751.80,1912.35,0.00,3518378679402.297852,3518378681674.730957,199,0,6.050291,0.044120,33480645,22034805,0,0,33813,0,1,1 +1774086716.617740,1.85,4,3992.50,49.58,1722.98,1941.14,0.00,0.000000,0.000000,199,0,0.009653,0.022450,33480918,22035233,0,0,33816,0,1,1 +1774086721.617076,0.85,4,3992.50,49.26,1735.50,1928.65,0.00,0.000000,0.000000,199,0,0.008940,0.021065,33481174,22035637,0,0,33818,0,1,1 +1774086726.617371,9.39,4,3992.50,49.27,1734.89,1929.00,0.00,3518229634038.310547,0.000000,70,0,0.030177,36.272554,33482962,22039942,0,0,33821,0,1,1 +1774086731.617748,31.01,4,3992.50,49.73,1709.15,1947.13,0.00,63170.401932,60979.083461,5538725,1077550,0.038219,122.175987,33485662,22052940,0,0,33823,0,1,1 +1774086736.617494,13.47,4,3992.50,49.64,1714.52,1943.40,0.00,3518615740087.109375,3518615742278.752441,21,0,0.019527,46.682224,33486873,22058119,0,0,33826,0,1,1 +1774086741.616126,14.27,4,3992.50,53.97,1545.56,2113.21,0.00,0.000000,0.000000,21,0,23.054120,0.036280,33489763,22059533,0,0,33828,0,1,1 +1774086746.616132,1.91,4,3992.50,48.27,1769.02,1889.76,0.00,63184.823552,61108.809718,5539718,1078615,17.033204,0.019052,33491778,22060307,0,0,33831,0,1,1 +1774086751.617000,1.55,4,3992.50,48.70,1752.00,1906.75,0.00,3517826119704.877441,3517826121780.358398,199,0,0.011215,0.027689,33492096,22060816,0,0,33833,0,1,1 +1774086756.613027,0.95,4,3992.50,48.71,1751.81,1906.97,0.00,3521235352217.488770,0.000000,70,0,0.010123,0.022418,33492363,22061238,0,0,33836,0,1,1 +1774086761.612986,0.90,4,3992.50,48.73,1750.84,1907.93,0.00,0.000000,0.000000,70,0,0.008951,0.021062,33492620,22061642,0,0,33838,0,1,1 +1774086766.616312,0.90,4,3992.50,48.54,1758.50,1900.28,0.00,63142.853062,61068.302902,5539722,1078664,0.008970,0.021058,33492879,22062047,0,0,33841,0,1,1 +1774086771.617710,0.85,4,3992.50,48.53,1758.54,1900.25,0.00,3517453073481.858887,3517453075555.250488,238,2,0.008969,0.021095,33493138,22062454,0,0,33843,0,1,1 +1774086776.612959,1.05,4,3992.50,48.53,1758.55,1900.23,0.00,3521784155472.519531,0.028152,237,176,0.010767,0.026166,33493449,22062955,0,0,33846,0,1,1 +1774086781.612953,0.80,4,3992.50,48.53,1758.57,1900.21,0.00,63183.438243,61109.154723,5539722,1078791,0.009019,0.021138,33493710,22063365,0,0,33848,0,1,1 +1774086786.614283,0.80,4,3992.50,48.55,1757.79,1900.95,0.00,3517501547270.246582,3517501549345.485840,21,0,0.008987,0.021066,33493970,22063770,0,0,33851,0,1,1 +1774086791.613038,0.75,4,3992.50,48.55,1757.84,1900.93,0.00,0.000000,0.000000,21,0,0.007109,0.015997,33494170,22064078,0,0,33853,0,1,1 +1774086796.613150,0.95,4,3992.50,48.55,1757.86,1900.91,0.00,0.000000,0.000000,21,0,0.009051,0.021755,33494434,22064490,0,0,33856,0,1,1 +1774086801.617505,1.00,4,3992.50,48.55,1757.89,1900.89,0.00,63129.911521,61056.012642,5539722,1078865,0.010768,0.026116,33494747,22064991,0,0,33858,0,1,1 +1774086806.617321,0.90,4,3992.50,48.55,1757.91,1900.86,0.00,3518566555762.901855,3518566557837.173340,237,176,0.008914,0.021073,33495001,22065396,0,0,33861,0,1,1 +1774086811.614630,9.49,4,3992.50,49.09,1734.56,1921.81,0.00,3520332300920.418457,3520332300921.929688,21,0,0.027582,37.295862,33496592,22069789,0,0,33863,0,1,1 +1774086816.617335,3.76,4,3992.50,49.72,1709.65,1946.84,0.00,0.000000,0.000000,21,0,0.009990,2.826638,33496925,22070539,0,0,33866,0,1,1 +1774086821.617079,1.05,4,3992.50,48.84,1744.36,1912.12,0.00,1.538458,0.028322,237,176,0.009194,0.025341,33497208,22071019,0,0,33868,0,1,1 +1774086826.617341,0.85,4,3992.50,48.63,1752.33,1904.15,0.00,3518253048740.427734,3518253048741.937988,21,0,0.007395,0.020338,33497438,22071409,0,0,33871,0,1,1 +1774086831.616211,1.05,4,3992.50,48.65,1751.91,1904.57,0.00,0.175040,0.000000,199,0,0.008448,0.020908,33497685,22071808,0,0,33873,0,1,1 +1774086836.613017,1.10,4,3992.50,48.64,1752.29,1904.20,0.00,3520686066824.050781,0.000000,21,0,0.009089,0.021643,33497936,22072210,0,0,33876,0,1,1 +1774086841.616565,0.90,4,3992.50,48.64,1752.29,1904.19,0.00,63140.105792,61102.128130,5539722,1079288,0.007764,0.021523,33498173,22072618,0,0,33878,0,1,1 +1774086846.616405,0.95,4,3992.50,48.56,1755.19,1901.29,0.00,0.000000,4.011066,5539722,1079314,0.008723,0.024133,33498441,22073079,0,0,33881,0,1,1 +1774086851.613396,0.75,4,3992.50,48.54,1755.88,1900.57,0.00,3520555015838.265625,3520555017873.392578,237,176,0.003690,0.010195,33498555,22073275,0,0,33883,0,1,1 +1774086856.612956,0.85,4,3992.50,48.58,1754.48,1902.00,0.00,3518747080305.794434,3518747080307.304688,21,0,0.007625,0.021030,33498792,22073680,0,0,33886,0,1,1 +1774086861.612971,1.00,4,3992.50,48.58,1754.49,1901.99,0.00,0.000000,0.000000,21,0,0.009107,0.025513,33499077,22074165,0,0,33888,0,1,1 +1774086866.616745,0.85,4,3992.50,48.57,1754.72,1901.77,0.00,63137.246844,61103.452123,5539722,1079377,0.007344,0.020290,33499303,22074552,0,0,33891,0,1,1 +1774086871.617699,1.00,4,3992.50,48.55,1755.57,1900.92,0.00,3517765744790.037598,3517765744793.344238,5538999,1079204,0.007411,0.020292,33499534,22074938,0,0,33893,0,1,1 +1774086876.617719,12.82,4,3992.50,55.08,1504.04,2156.34,0.00,3518423174746.881348,3518423176778.895996,21,0,10.026220,0.032500,33501029,22076126,0,0,33896,0,1,1 +1774086881.616615,36.16,4,3992.50,55.03,1508.11,2154.71,0.00,63195.533148,61163.194757,5538999,1079337,118.196539,0.073729,33513333,22080853,0,0,33898,0,1,1 +1774086886.614285,30.59,4,3992.50,55.04,1508.04,2154.89,0.00,0.000000,0.003420,5538999,1079345,119.021195,0.052898,33525609,22084669,0,0,33901,0,1,1 +1774086891.613598,31.30,4,3992.50,54.84,1515.51,2147.30,0.00,3518921054355.125488,3518921056385.284180,238,2,119.385393,0.052923,33537965,22088250,0,0,33903,0,1,1 +1774086896.617797,30.23,4,3992.50,54.96,1511.14,2151.76,0.00,63126.555392,61098.436749,5538999,1079374,119.067730,0.058105,33550237,22092209,0,0,33906,0,1,1 +1774086901.616673,30.15,4,3992.50,55.05,1507.51,2155.34,0.00,3519228518137.773438,3519228520170.011230,70,0,119.194110,0.060561,33562465,22096320,0,0,33908,0,1,1 +1774086906.616846,30.14,4,3992.50,54.90,1513.53,2149.33,0.00,63179.345698,61147.809048,5538999,1079466,119.359161,0.056654,33574595,22100483,0,0,33911,0,1,1 +1774086911.614068,30.04,4,3992.50,54.98,1510.02,2152.76,0.00,3520392708361.438477,3520392710394.174805,70,0,119.229773,0.050138,33586731,22104111,0,0,33913,0,1,1 +1774086916.617425,30.08,4,3992.50,54.80,1517.04,2145.73,0.00,3516076257204.068359,0.000000,21,0,119.488429,0.059230,33599029,22108138,0,0,33916,0,1,1 +1774086921.617598,4.76,4,3992.50,49.56,1722.56,1940.36,0.00,0.174994,0.000000,199,0,62.493125,0.046694,33605652,22110795,0,0,33918,0,1,1 +1774086926.617154,6.57,4,3992.50,48.58,1760.88,1902.03,0.00,3518749351507.998535,0.000000,21,0,6.047081,0.049162,33607856,22112651,0,0,33921,0,1,1 +1774086931.616469,15.53,4,3992.50,48.89,1748.64,1914.27,0.00,2.007111,0.000195,238,2,16.122273,0.087286,33613466,22116788,0,0,33923,0,1,1 +1774086936.617299,11.76,4,3992.50,49.71,1716.83,1946.08,0.00,3517853136912.127441,0.028120,237,176,18.103496,0.084833,33619299,22121142,0,0,33926,0,1,1 +1774086941.613063,1.46,4,3992.50,49.35,1730.66,1932.25,0.00,3521420375927.423828,3521420375928.935547,21,0,0.010594,0.023156,33619575,22121574,0,0,33928,0,1,1 +1774086946.617628,1.45,4,3992.50,49.19,1736.84,1926.04,0.00,0.000000,0.000000,21,0,0.008918,0.021053,33619830,22121979,0,0,33931,0,1,1 +1774086951.612973,1.00,4,3992.50,48.67,1757.49,1905.43,0.00,0.000000,0.000000,21,0,0.009405,0.022325,33620100,22122405,0,0,33933,0,1,1 +1774086956.613045,0.75,4,3992.50,48.70,1756.28,1906.63,0.00,63184.907043,61150.317471,5539791,1081045,0.010299,0.024899,33620397,22122884,0,0,33936,0,1,1 +1774086961.613213,0.60,4,3992.50,48.72,1755.32,1907.60,0.00,3518319172937.195801,3518319174971.746582,21,0,0.003649,0.006476,33620490,22123011,0,0,33938,0,1,1 +1774086966.617406,0.85,4,3992.50,48.54,1762.52,1900.39,0.00,0.000000,0.000000,21,0,0.009527,0.022451,33620771,22123448,0,0,33941,0,1,1 +1774086971.613427,0.95,4,3992.50,48.56,1761.84,1901.07,0.00,63232.026348,61200.363966,5539017,1081223,0.010104,0.024275,33621063,22123914,0,0,33943,0,1,1 +1774086976.617381,0.80,4,3992.50,48.56,1761.86,1901.05,0.00,3515656855977.555176,3515656858005.996582,21,0,0.008919,0.021055,33621318,22124319,0,0,33946,0,1,1 +1774086981.617693,0.90,4,3992.50,48.71,1755.97,1906.95,0.00,63177.771161,61147.895760,5539017,1081275,0.008921,0.021069,33621573,22124724,0,0,33948,0,1,1 +1774086986.615859,6.64,4,3992.50,49.26,1734.30,1928.53,0.00,3519728123549.771973,3519728125580.470703,70,0,0.028589,26.271594,33623233,22128078,0,0,33951,0,1,1 +1774086991.618398,29.25,4,3992.50,48.96,1739.16,1916.83,0.00,3516650910579.858398,0.000000,21,0,0.036231,118.123299,33625612,22140592,0,0,33953,0,1,1 +1774086996.616382,15.70,4,3992.50,48.96,1738.88,1917.08,0.00,0.000000,0.000000,21,0,0.019072,60.724289,33626697,22147099,0,0,33956,0,1,1 +1774087001.617604,16.13,4,3992.50,53.66,1558.00,2100.72,0.00,0.000000,0.000000,21,0,23.842872,0.041587,33629638,22148845,0,0,33958,0,1,1 +1774087006.617379,1.66,4,3992.50,49.62,1715.90,1942.82,0.00,63194.047166,61359.839260,5539998,1082962,16.232212,0.021184,33631482,22149561,0,0,33961,0,1,1 +1774087011.613405,2.26,4,3992.50,49.37,1725.87,1932.82,0.00,3521235926121.915527,3521235927957.500488,21,0,0.008958,0.021079,33631739,22149965,0,0,33963,0,1,1 +1774087016.617494,1.60,4,3992.50,49.12,1735.51,1923.21,0.00,1.537122,0.028297,237,176,0.010761,0.026120,33632051,22150466,0,0,33966,0,1,1 +1774087021.616885,0.90,4,3992.50,49.12,1735.52,1923.20,0.00,0.468514,3518865707494.331543,238,2,0.008960,0.021073,33632309,22150871,0,0,33968,0,1,1 +1774087026.616421,0.80,4,3992.50,49.11,1736.14,1922.59,0.00,63195.065359,61362.858805,5539998,1083057,0.008927,0.021074,33632564,22151276,0,0,33971,0,1,1 +1774087031.617740,0.90,4,3992.50,49.11,1735.91,1922.81,0.00,3517508939101.625977,3517508940935.185547,21,0,0.008723,0.021914,33632821,22151697,0,0,33973,0,1,1 +1774087036.615986,11.56,4,3992.50,48.82,1744.62,1911.55,0.00,0.175061,0.000000,199,0,0.036042,40.101511,33634949,22156508,0,0,33976,0,1,1 +1774087041.617833,0.90,4,3992.50,48.65,1751.53,1904.64,0.00,3517138011162.798340,0.000000,21,0,0.007575,0.020947,33635182,22156908,0,0,33978,0,1,1 +1774087046.615568,0.80,4,3992.50,48.37,1762.46,1893.68,0.00,0.000000,0.000000,21,0,0.005712,0.015865,33635356,22157210,0,0,33981,0,1,1 +1774087051.617733,0.80,4,3992.50,48.40,1761.23,1894.90,0.00,0.048026,0.000000,70,0,0.007105,0.019654,33635574,22157584,0,0,33983,0,1,1 +1774087056.616976,0.90,4,3992.50,48.41,1760.83,1895.34,0.00,0.126972,0.000000,199,0,0.008272,0.021623,33635802,22157978,0,0,33986,0,1,1 +1774087061.612957,0.90,4,3992.50,48.42,1760.61,1895.56,0.00,63241.874695,61442.885660,5539998,1083448,0.007351,0.020320,33636028,22158365,0,0,33988,0,1,1 +1774087066.613036,0.80,4,3992.50,48.43,1760.16,1896.02,0.00,3518381262394.961426,3.980015,5539224,1083294,0.007337,0.020293,33636253,22158751,0,0,33991,0,1,1 +1774087071.616838,1.05,4,3992.50,48.27,1766.41,1889.76,0.00,0.000000,0.045278,5539224,1083336,0.009236,0.025382,33636540,22159235,0,0,33993,0,1,1 +1774087076.617447,0.85,4,3992.50,48.34,1763.53,1892.60,0.00,3518008915358.815918,3518008917146.671875,237,176,0.007399,0.020391,33636770,22159628,0,0,33996,0,1,1 +1774087081.615847,0.95,4,3992.50,48.34,1763.57,1892.59,0.00,0.468607,3519563598754.713867,238,2,0.007545,0.020478,33637009,22160027,0,0,33998,0,1,1 +1774087086.617155,0.95,4,3992.50,48.34,1763.59,1892.58,0.00,3517516671250.858398,3517516671252.816406,70,0,0.007322,0.020300,33637233,22160414,0,0,34001,0,1,1 +1774087091.617853,0.90,4,3992.50,48.36,1762.62,1893.55,0.00,63182.341539,61389.058030,5539998,1083575,0.007579,0.021309,33637466,22160817,0,0,34003,0,1,1 +1774087096.617297,0.95,4,3992.50,48.39,1761.66,1894.51,0.00,3518828288793.393555,3518828290585.664551,237,176,0.008888,0.024361,33637736,22161283,0,0,34006,0,1,1 +1774087101.616889,15.55,4,3992.50,54.80,1515.44,2145.52,0.00,3518724814669.368164,3518724814670.878418,21,0,18.038274,0.034994,33639966,22162642,0,0,34008,0,1,1 +1774087106.612935,34.78,4,3992.50,55.22,1500.85,2162.11,0.00,0.000000,0.000000,21,0,123.082186,0.060639,33652905,22166367,0,0,34011,0,1,1 +1774087111.612953,28.23,4,3992.50,55.07,1506.82,2156.23,0.00,63190.975896,61397.563136,5539998,1083725,121.370134,0.032126,33665373,22168763,0,0,34013,0,1,1 +1774087116.616697,28.41,4,3992.50,55.05,1507.76,2155.18,0.00,3515804529542.502930,3515804531334.532227,70,0,120.082869,0.049557,33677845,22172265,0,0,34016,0,1,1 +1774087121.613589,28.95,4,3992.50,54.92,1512.69,2150.28,0.00,3520626150446.814941,0.000000,21,0,120.240657,0.053176,33690076,22176055,0,0,34018,0,1,1 +1774087126.616512,29.08,4,3992.50,55.15,1503.70,2159.25,0.00,63154.285664,61361.971202,5539998,1083759,120.100356,0.061695,33702464,22179953,0,0,34021,0,1,1 +1774087131.616465,29.41,4,3992.50,54.92,1512.83,2150.12,0.00,3518469764723.494141,3518469766514.866211,238,2,119.365179,0.044403,33714546,22183036,0,0,34023,0,1,1 +1774087136.617835,28.46,4,3992.50,54.99,1510.12,2152.84,0.00,63167.781574,61381.008802,5539224,1083600,118.933315,0.040910,33726689,22185821,0,0,34026,0,1,1 +1774087141.617820,27.94,4,3992.50,54.81,1517.06,2145.99,0.00,3518448187292.209961,3518448189079.478027,238,2,120.172063,0.053441,33739157,22189098,0,0,34028,0,1,1 +1774087146.616946,3.92,4,3992.50,48.99,1745.04,1917.99,0.00,63196.295545,61408.801130,5539243,1083695,44.089739,0.045127,33744113,22191224,0,0,34031,0,1,1 +1774087151.617408,20.42,4,3992.50,49.94,1707.82,1955.21,0.00,3518112076361.991699,3518112078150.840820,199,0,30.177024,0.132540,33753890,22198434,0,0,34033,0,1,1 +1774087156.616933,8.33,4,3992.50,49.46,1726.44,1936.59,0.00,3518771276805.519531,0.000000,21,0,10.065616,0.049219,33757137,22200910,0,0,34036,0,1,1 +1774087161.616405,2.11,4,3992.50,48.70,1756.36,1906.65,0.00,63198.058724,61405.441026,5540020,1085053,0.015074,0.028032,33757524,22201456,0,0,34038,0,1,1 +1774087166.616667,0.80,4,3992.50,48.71,1756.00,1907.04,0.00,3518253285152.102539,0.017968,5539246,1084884,0.009383,0.022363,33757793,22201887,0,0,34041,0,1,1 +1774087171.616233,0.90,4,3992.50,48.74,1754.57,1908.47,0.00,3518742206570.264160,3518742208358.720215,21,0,0.008927,0.021064,33758048,22202291,0,0,34043,0,1,1 +1774087176.615645,1.15,4,3992.50,48.57,1761.36,1901.68,0.00,0.048053,0.000000,70,0,0.008914,0.021074,33758302,22202696,0,0,34046,0,1,1 +1774087181.616406,1.00,4,3992.50,48.68,1757.18,1905.86,0.00,0.000000,0.000000,70,0,0.008937,0.021059,33758558,22203100,0,0,34048,0,1,1 +1774087186.617337,1.00,4,3992.50,48.62,1759.30,1903.74,0.00,3517782561508.915527,0.000000,21,0,0.010763,0.026144,33758870,22203602,0,0,34051,0,1,1 +1774087191.617139,0.80,4,3992.50,48.65,1758.34,1904.70,0.00,1.538440,0.028321,237,176,0.009077,0.021862,33759137,22204020,0,0,34053,0,1,1 +1774087196.617550,0.80,4,3992.50,48.65,1758.36,1904.68,0.00,3518148303468.436523,3518148303469.898926,70,0,0.008925,0.021070,33759392,22204425,0,0,34056,0,1,1 +1774087201.615923,1.30,4,3992.50,48.63,1758.72,1903.80,0.00,1.490817,0.028330,237,176,0.008954,0.021069,33759649,22204829,0,0,34058,0,1,1 +1774087206.617210,1.20,4,3992.50,48.66,1757.29,1905.24,0.00,63169.575207,61383.929490,5539279,1085421,0.010168,0.024249,33759946,22205295,0,0,34061,0,1,1 +1774087211.614268,1.81,4,3992.50,48.69,1756.05,1906.49,0.00,3520508589010.318848,3520508590798.812012,199,0,0.009631,0.023002,33760223,22205737,0,0,34063,0,1,1 +1774087216.613029,1.15,4,3992.50,48.70,1755.83,1906.70,0.00,63206.966607,61415.089611,5540053,1085657,0.008949,0.021085,33760480,22206143,0,0,34066,0,1,1 +1774087221.618434,2.40,4,3992.50,49.10,1740.20,1922.35,0.00,3514638138807.913086,0.031021,5539279,1085544,0.019466,6.827596,33761458,22207535,0,0,34068,0,1,1 +1774087226.612951,29.17,4,3992.50,49.13,1733.18,1923.60,0.00,0.000000,74.035976,5539279,1086030,0.048684,118.300568,33765054,22219776,0,0,34071,0,1,1 +1774087231.612984,20.82,4,3992.50,49.21,1729.42,1926.63,0.00,3518413962162.724121,3518413963876.050781,199,0,0.021907,80.127449,33766382,22228391,0,0,34073,0,1,1 +1774087236.616464,13.30,4,3992.50,53.66,1557.34,2100.89,0.00,0.000000,0.000000,199,0,20.827420,0.032289,33768902,22229732,0,0,34076,0,1,1 +1774087241.612938,4.47,4,3992.50,50.00,1700.77,1957.42,0.00,63239.414975,61648.612068,5540082,1087142,19.249031,0.021887,33771100,22230474,0,0,34078,0,1,1 +1774087246.617157,1.20,4,3992.50,49.15,1734.09,1924.14,0.00,3515471293724.952148,3515471295311.463379,238,2,0.010070,0.024240,33771391,22230941,0,0,34081,0,1,1 +1774087251.614648,1.10,4,3992.50,49.16,1733.65,1924.57,0.00,0.000000,0.000000,238,2,0.008968,0.021073,33771649,22231345,0,0,34083,0,1,1 +1774087256.616825,6.02,4,3992.50,48.93,1741.20,1915.57,0.00,63161.394249,61578.408518,5539308,1087097,0.024341,23.047927,33772913,22234311,0,0,34086,0,1,1 +1774087261.617468,5.66,4,3992.50,49.06,1734.75,1921.00,0.00,3517984302309.923828,3517984303895.226562,199,0,0.012849,17.039285,33773590,22236393,0,0,34088,0,1,1 +1774087266.616405,1.00,4,3992.50,49.04,1735.75,1919.99,0.00,63208.267494,61654.516075,5540082,1087583,0.007338,0.020341,33773815,22236782,0,0,34091,0,1,1 +1774087271.615500,1.25,4,3992.50,49.03,1736.05,1919.70,0.00,3519074162864.176758,3519074164416.543945,237,176,0.008116,0.022809,33774066,22237214,0,0,34093,0,1,1 +1774087276.616869,1.10,4,3992.50,49.02,1736.50,1919.25,0.00,63172.060402,61624.541337,5539308,1087413,0.008421,0.022867,33774324,22237652,0,0,34096,0,1,1 +1774087281.613117,1.00,4,3992.50,49.02,1736.51,1919.23,0.00,3521079761827.641113,3521079763378.209961,70,0,0.007368,0.020311,33774551,22238038,0,0,34098,0,1,1 +1774087286.616482,1.00,4,3992.50,49.03,1736.30,1919.45,0.00,3516070736460.758789,0.000000,21,0,0.007382,0.020292,33774780,22238425,0,0,34101,0,1,1 +1774087291.615956,1.20,4,3992.50,49.02,1736.31,1919.44,0.00,0.000000,0.000000,21,0,0.007350,0.020329,33775006,22238813,0,0,34103,0,1,1 +1774087296.613628,0.95,4,3992.50,48.83,1743.97,1911.77,0.00,0.175082,0.000000,199,0,0.009210,0.025449,33775290,22239300,0,0,34106,0,1,1 +1774087301.617035,1.10,4,3992.50,48.80,1745.04,1910.71,0.00,0.000000,0.000000,199,0,0.007438,0.020400,33775523,22239694,0,0,34108,0,1,1 +1774087306.612954,1.20,4,3992.50,48.81,1744.57,1911.18,0.00,3521311293300.993652,0.000000,70,0,0.008096,0.021574,33775771,22240113,0,0,34111,0,1,1 +1774087311.617461,1.05,4,3992.50,48.81,1744.58,1911.18,0.00,63133.934262,61590.051699,5539308,1087531,0.007305,0.020277,33775994,22240499,0,0,34113,0,1,1 +1774087316.616416,1.05,4,3992.50,48.84,1743.36,1912.39,0.00,3519173370838.353027,3519173372383.823730,199,0,0.008013,0.022186,33776239,22240920,0,0,34116,0,1,1 +1774087321.613643,17.79,4,3992.50,55.25,1496.88,2163.29,0.00,1.832852,0.000195,238,2,20.051671,0.039572,33778699,22242402,0,0,34118,0,1,1 +1774087326.615005,33.22,4,3992.50,54.90,1512.48,2149.43,0.00,63171.684379,61628.899654,5539308,1087662,120.137496,0.030495,33791155,22244127,0,0,34121,0,1,1 +1774087331.613116,28.59,4,3992.50,55.32,1496.06,2165.84,0.00,3519766955181.222168,3519766956727.018066,21,0,118.213363,0.027432,33803494,22245555,0,0,34123,0,1,1 +1774087336.616868,28.06,4,3992.50,55.01,1506.00,2153.89,0.00,1.537226,0.028299,237,176,120.079294,0.033515,33815776,22248095,0,0,34126,0,1,1 +1774087341.616645,28.20,4,3992.50,54.98,1509.36,2152.67,0.00,0.468478,3518593519585.404785,238,2,118.991205,0.083130,33828340,22254064,0,0,34128,0,1,1 +1774087346.616401,28.54,4,3992.50,55.06,1506.36,2155.55,0.00,3518609012707.353516,3518609012709.185547,199,0,119.404766,0.111941,33841169,22262256,0,0,34131,0,1,1 +1774087351.614887,28.41,4,3992.50,54.88,1513.32,2148.64,0.00,3519503155876.541016,0.000000,21,0,119.432915,0.103789,33853946,22270190,0,0,34133,0,1,1 +1774087356.612980,27.74,4,3992.50,54.86,1513.88,2148.04,0.00,0.048065,0.000000,70,0,119.038638,0.100757,33866641,22277925,0,0,34136,0,1,1 +1774087361.617926,28.00,4,3992.50,55.23,1499.67,2162.28,0.00,0.000000,0.000000,70,0,119.980383,0.111445,33879523,22286038,0,0,34138,0,1,1 +1774087366.616779,1.96,4,3992.50,50.58,1681.81,1980.14,0.00,3519244895294.393066,0.000000,21,0,50.197264,0.047293,33884979,22289033,0,0,34141,0,1,1 +1774087371.617316,5.32,4,3992.50,49.81,1711.96,1950.03,0.00,0.174981,0.000000,199,0,0.042749,0.030152,33885489,22289636,0,0,34143,0,1,1 +1774087376.617410,22.03,4,3992.50,49.65,1718.04,1943.82,0.00,1.831802,0.000195,238,2,34.189925,0.151344,33896698,22297837,0,0,34146,0,1,1 +1774087381.617939,4.57,4,3992.50,49.03,1742.18,1919.67,0.00,63182.273112,61640.679184,5539317,1089198,6.043508,0.043067,33898857,22299610,0,0,34148,0,1,1 +1774087386.616408,12.92,4,3992.50,49.47,1723.71,1937.04,0.00,3519514523992.455566,3519514525536.691895,21,0,0.037358,50.311614,33901185,22305465,0,0,34151,0,1,1 +1774087391.612989,29.28,4,3992.50,49.20,1727.83,1926.41,0.00,0.000000,0.000000,21,0,0.039969,118.456686,33904005,22317823,0,0,34153,0,1,1 +1774087396.612951,9.84,4,3992.50,49.35,1722.13,1932.18,0.00,63191.463809,61829.474510,5539321,1090411,0.011012,36.462169,33904589,22321852,0,0,34156,0,1,1 +1774087401.617628,2.20,4,3992.50,48.93,1739.62,1915.78,0.00,0.006244,0.040002,5539323,1090445,0.012777,0.025458,33904911,22322339,0,0,34158,0,1,1 +1774087406.615788,14.52,4,3992.50,48.94,1742.15,1915.93,0.00,3519732468484.143066,3519732469846.414062,199,0,40.086799,0.043842,33909557,22324179,0,0,34161,0,1,1 +1774087411.612942,1.15,4,3992.50,48.95,1741.47,1916.61,0.00,63234.398333,61864.515019,5540116,1090838,0.008994,0.021167,33909817,22324589,0,0,34163,0,1,1 +1774087416.617204,1.05,4,3992.50,48.96,1741.25,1916.84,0.00,3515440627685.038574,3515440629053.150879,21,0,0.008944,0.021085,33910074,22324996,0,0,34166,0,1,1 +1774087421.617740,1.15,4,3992.50,48.96,1741.27,1916.82,0.00,2.006621,0.000195,238,2,0.009657,0.022943,33910354,22325435,0,0,34168,0,1,1 +1774087426.616426,0.95,4,3992.50,48.98,1740.55,1917.54,0.00,0.000000,0.000000,238,2,0.006397,0.014131,33910531,22325710,0,0,34171,0,1,1 +1774087431.614300,1.36,4,3992.50,49.19,1732.03,1926.02,0.00,63223.463683,61879.132571,5540116,1091080,0.010052,0.021710,33910809,22326129,0,0,34173,0,1,1 +1774087436.614263,1.10,4,3992.50,49.00,1739.74,1918.36,0.00,3518463474348.798340,3518463475692.567871,238,2,0.009978,0.021473,33911085,22326547,0,0,34176,0,1,1 +1774087441.617632,1.10,4,3992.50,49.00,1739.52,1918.57,0.00,63154.015763,61811.258827,5540116,1091165,0.010750,0.026113,33911396,22327047,0,0,34178,0,1,1 +1774087446.615784,1.05,4,3992.50,49.00,1739.54,1918.55,0.00,3519738367617.004883,3519738368963.171387,21,0,0.009035,0.021155,33911658,22327458,0,0,34181,0,1,1 +1774087451.616497,0.85,4,3992.50,49.00,1739.57,1918.54,0.00,0.000000,0.000000,21,0,0.008970,0.021738,33911916,22327869,0,0,34183,0,1,1 +1774087456.613053,0.75,4,3992.50,49.00,1739.59,1918.50,0.00,0.000000,0.000000,21,0,0.008920,0.021087,33912170,22328274,0,0,34186,0,1,1 +1774087461.617420,0.90,4,3992.50,48.81,1747.02,1911.07,0.00,1.537037,0.028296,237,176,0.009376,0.022285,33912439,22328700,0,0,34188,0,1,1 +1774087466.613041,1.81,4,3992.50,48.86,1745.22,1912.87,0.00,3521520951251.554688,3521520951253.065918,21,0,0.010296,0.024921,33912735,22329179,0,0,34191,0,1,1 +1774087471.612977,0.80,4,3992.50,48.86,1745.25,1912.85,0.00,63199.405841,61853.932831,5540116,1091345,0.008901,0.021062,33912988,22329583,0,0,34193,0,1,1 +1774087476.612967,0.80,4,3992.50,48.86,1745.28,1912.82,0.00,3518444261386.335938,3518444262731.746094,70,0,0.008320,0.020866,33913232,22329983,0,0,34196,0,1,1 +1774087481.613488,11.13,4,3992.50,49.26,1726.92,1928.47,0.00,0.000000,0.000000,70,0,0.028630,40.076157,33914926,22334811,0,0,34198,0,1,1 +1774087486.616808,1.25,4,3992.50,49.27,1726.23,1929.16,0.00,0.126869,0.000000,199,0,0.009194,0.025056,33915210,22335285,0,0,34201,0,1,1 +1774087491.617392,0.90,4,3992.50,48.58,1753.73,1901.86,0.00,3518026384315.943848,0.000000,21,0,0.008035,0.022219,33915457,22335709,0,0,34203,0,1,1 +1774087496.617027,0.90,4,3992.50,48.78,1745.89,1909.70,0.00,0.000000,0.000000,21,0,0.007350,0.020307,33915683,22336096,0,0,34206,0,1,1 +1774087501.612959,0.80,4,3992.50,48.80,1744.92,1910.67,0.00,2.008470,0.000195,238,2,0.007330,0.020312,33915907,22336482,0,0,34208,0,1,1 +1774087506.617869,0.85,4,3992.50,48.80,1744.95,1910.64,0.00,3514985888527.608398,0.028097,237,176,0.007317,0.020286,33916131,22336869,0,0,34211,0,1,1 +1774087511.613828,1.00,4,3992.50,48.80,1744.96,1910.63,0.00,3521282833599.202637,3521282833600.713867,21,0,0.009175,0.025385,33916412,22337351,0,0,34213,0,1,1 +1774087516.613034,0.90,4,3992.50,48.80,1744.98,1910.61,0.00,0.175028,0.000000,199,0,0.007422,0.020379,33916644,22337743,0,0,34216,0,1,1 +1774087521.613024,0.75,4,3992.50,48.80,1745.00,1910.60,0.00,3518444629986.486816,0.000000,70,0,0.007400,0.021002,33916874,22338137,0,0,34218,0,1,1 +1774087526.618078,0.90,4,3992.50,48.63,1751.55,1904.04,0.00,63130.603074,61830.855520,5539342,1091574,0.007398,0.020372,33917104,22338530,0,0,34221,0,1,1 +1774087531.613938,1.00,4,3992.50,48.67,1750.23,1905.36,0.00,3521352904772.179199,3521352906074.367188,21,0,0.009313,0.025486,33917394,22339020,0,0,34223,0,1,1 +1774087536.612953,0.80,4,3992.50,48.67,1750.25,1905.35,0.00,63206.933032,61905.677090,5539342,1091669,0.007338,0.020297,33917619,22339406,0,0,34226,0,1,1 +1774087541.617177,0.85,4,3992.50,48.66,1750.25,1905.34,0.00,3515467370958.981934,3515467372258.883301,21,0,0.007343,0.020279,33917845,22339792,0,0,34228,0,1,1 +1774087546.612945,0.85,4,3992.50,48.66,1750.26,1905.33,0.00,1.539682,0.028344,237,176,0.007343,0.020323,33918070,22340179,0,0,34231,0,1,1 +1774087551.617376,40.85,4,3992.50,55.29,1496.93,2164.76,0.00,3515321613785.515137,3515321613787.023926,21,0,103.861825,0.053084,33929065,22343229,0,0,34233,0,1,1 +1774087556.617440,29.03,4,3992.50,54.84,1514.64,2147.02,0.00,1.538359,0.028320,237,176,122.174591,0.036235,33941781,22345438,0,0,34236,0,1,1 +1774087561.615691,28.42,4,3992.50,54.85,1514.30,2147.35,0.00,3519667712167.243164,3519667712168.753906,21,0,121.013969,0.034131,33954206,22347971,0,0,34238,0,1,1 +1774087566.614781,27.92,4,3992.50,54.86,1513.66,2148.00,0.00,2.007201,0.000195,238,2,120.195156,0.045926,33966542,22351333,0,0,34241,0,1,1 +1774087571.617147,28.19,4,3992.50,55.07,1505.60,2156.05,0.00,0.000000,0.000000,238,2,120.120093,0.055756,33979034,22355384,0,0,34243,0,1,1 +1774087576.616545,28.60,4,3992.50,55.15,1502.27,2159.37,0.00,3518860690393.786133,3518860690395.618164,199,0,119.987308,0.037133,33991482,22357699,0,0,34246,0,1,1 +1774087581.617899,28.25,4,3992.50,54.97,1509.67,2152.01,0.00,0.000000,0.000000,199,0,119.545839,0.064927,34003800,22362421,0,0,34248,0,1,1 +1774087586.612970,28.17,4,3992.50,54.90,1512.32,2149.28,0.00,0.000000,0.000000,199,0,119.092351,0.055963,34016029,22366419,0,0,34251,0,1,1 +1774087591.617524,8.29,4,3992.50,50.25,1694.52,1967.25,0.00,0.000000,0.000000,199,0,79.447389,0.042570,34024345,22368699,0,0,34253,0,1,1 +1774087596.616929,17.04,4,3992.50,51.09,1661.55,2000.18,0.00,3518855971041.629883,0.000000,21,0,18.135033,0.100208,34030567,22373488,0,0,34256,0,1,1 +1774087601.613021,15.76,4,3992.50,49.58,1720.62,1941.05,0.00,0.000000,0.000000,21,0,22.142746,0.095464,34037514,22378695,0,0,34258,0,1,1 +1774087606.612963,1.96,4,3992.50,48.87,1748.43,1913.26,0.00,0.175002,0.000000,199,0,0.016061,0.026528,34037886,22379206,0,0,34261,0,1,1 +1774087611.617392,0.90,4,3992.50,48.70,1754.79,1906.89,0.00,3515323111393.338379,0.000000,21,0,0.009604,0.022905,34038162,22379643,0,0,34263,0,1,1 +1774087616.612968,0.75,4,3992.50,48.73,1753.85,1907.82,0.00,0.175155,0.000000,199,0,0.010117,0.024287,34038455,22380110,0,0,34266,0,1,1 +1774087621.612946,0.85,4,3992.50,48.72,1754.15,1907.53,0.00,63194.745717,61895.395751,5539357,1093288,0.008909,0.020937,34038709,22380514,0,0,34268,0,1,1 +1774087626.613023,1.00,4,3992.50,48.68,1755.82,1905.81,0.00,3518383004107.267090,3518383005406.718262,70,0,0.008775,0.021047,34038963,22380917,0,0,34271,0,1,1 +1774087631.617377,0.90,4,3992.50,48.68,1755.64,1906.04,0.00,0.000000,0.000000,70,0,0.009332,0.022095,34039232,22381342,0,0,34273,0,1,1 +1774087636.612952,0.80,4,3992.50,48.66,1756.46,1905.22,0.00,1.960524,0.000195,238,2,0.008589,0.019934,34039482,22381730,0,0,34276,0,1,1 +1774087641.617198,0.70,4,3992.50,48.69,1755.26,1906.42,0.00,0.000000,0.000000,238,2,0.007634,0.017289,34039702,22382065,0,0,34278,0,1,1 +1774087646.617314,0.90,4,3992.50,48.69,1755.27,1906.41,0.00,3518356002410.020996,3518356002411.979492,70,0,0.008926,0.021072,34039957,22382470,0,0,34281,0,1,1 +1774087651.617069,1.00,4,3992.50,48.69,1755.31,1906.36,0.00,1.958885,0.000195,238,2,0.010229,0.025323,34040258,22382948,0,0,34283,0,1,1 +1774087656.616419,0.75,4,3992.50,48.69,1755.34,1906.35,0.00,3518894581428.626465,0.028129,237,176,0.008964,0.022364,34040520,22383378,0,0,34286,0,1,1 +1774087661.616932,23.09,4,3992.50,49.20,1731.07,1926.42,0.00,63190.727788,61978.612741,5540131,1094450,0.046444,94.350541,34043464,22393922,0,0,34288,0,1,1 +1774087666.613005,26.84,4,3992.50,48.92,1738.66,1915.49,0.00,3521202386061.473145,3521202387274.665039,237,176,0.017616,110.846266,34044676,22405507,0,0,34291,0,1,1 +1774087671.617672,1.60,4,3992.50,48.52,1754.75,1899.60,0.00,3515156380558.775391,3515156380560.284180,21,0,0.010706,0.019750,34044934,22405885,0,0,34293,0,1,1 +1774087676.617638,16.94,4,3992.50,50.44,1682.10,1974.75,0.00,2.006850,0.000195,238,2,40.065840,0.032528,34049406,22407552,0,0,34296,0,1,1 +1774087681.616568,1.46,4,3992.50,49.68,1711.72,1945.13,0.00,3519190266329.523438,3519190266331.531250,21,0,0.013482,0.028264,34049763,22408082,0,0,34298,0,1,1 +1774087686.614723,0.90,4,3992.50,49.09,1735.04,1921.80,0.00,0.048065,0.000000,70,0,0.008929,0.021080,34050018,22408487,0,0,34301,0,1,1 +1774087691.617683,1.25,4,3992.50,49.05,1736.44,1920.36,0.00,1.957630,0.000195,238,2,0.008954,0.021058,34050276,22408892,0,0,34303,0,1,1 +1774087696.617298,0.85,4,3992.50,49.05,1736.62,1920.23,0.00,0.000000,0.000000,238,2,0.008927,0.021074,34050531,22409297,0,0,34306,0,1,1 +1774087701.612953,6.08,4,3992.50,49.11,1732.91,1922.75,0.00,63251.078085,62155.190275,5539386,1095415,0.023914,20.075335,34051741,22412063,0,0,34308,0,1,1 +1774087706.617874,6.02,4,3992.50,48.95,1738.27,1916.54,0.00,4.105237,36.166844,5540160,1095900,0.010557,20.022791,34052295,22414423,0,0,34311,0,1,1 +1774087711.617024,0.90,4,3992.50,48.98,1737.11,1917.69,0.00,3519035554863.381836,3519035555926.901367,237,176,0.007325,0.020299,34052519,22414809,0,0,34313,0,1,1 +1774087716.616758,0.90,4,3992.50,48.98,1737.11,1917.68,0.00,3518624622792.570801,3518624622793.905762,199,0,0.007350,0.020307,34052745,22415196,0,0,34316,0,1,1 +1774087721.616920,0.90,4,3992.50,48.98,1737.12,1917.67,0.00,0.000000,0.000000,199,0,0.009180,0.026008,34053027,22415682,0,0,34318,0,1,1 +1774087726.617436,0.90,4,3992.50,48.89,1740.75,1914.04,0.00,1.831647,0.000195,238,2,0.007394,0.020312,34053257,22416070,0,0,34321,0,1,1 +1774087731.617038,0.95,4,3992.50,48.72,1747.44,1907.36,0.00,3518717811144.273438,3518717811146.280762,21,0,0.008447,0.020905,34053504,22416469,0,0,34323,0,1,1 +1774087736.613514,0.95,4,3992.50,48.72,1747.21,1907.59,0.00,63246.801031,62185.334684,5540160,1095999,0.008420,0.020722,34053752,22416869,0,0,34326,0,1,1 +1774087741.612966,1.00,4,3992.50,48.72,1747.22,1907.57,0.00,3518822842445.198242,3518822843506.033203,21,0,0.008521,0.023555,34054015,22417321,0,0,34328,0,1,1 +1774087746.613030,0.90,4,3992.50,48.72,1747.22,1907.57,0.00,0.000000,0.000000,21,0,0.008060,0.022242,34054264,22417746,0,0,34331,0,1,1 +1774087751.617565,0.80,4,3992.50,48.72,1747.23,1907.55,0.00,1.536985,0.028295,237,176,0.007511,0.020403,34054501,22418142,0,0,34333,0,1,1 +1774087756.617676,1.05,4,3992.50,48.75,1745.93,1908.82,0.00,3518358439872.909668,3518358439874.419922,21,0,0.007324,0.020305,34054725,22418529,0,0,34336,0,1,1 +1774087761.617536,0.80,4,3992.50,48.75,1745.98,1908.81,0.00,63204.016209,62143.335105,5540160,1096058,0.007345,0.020304,34054951,22418916,0,0,34338,0,1,1 +1774087766.617562,1.45,4,3992.50,48.71,1747.58,1907.23,0.00,3518418467806.696289,3518418468865.334961,238,2,0.009588,0.025461,34055240,22419404,0,0,34341,0,1,1 +1774087771.616430,35.70,4,3992.50,55.09,1503.73,2156.87,0.00,3519234111291.821777,3519234111293.829590,21,0,80.336801,0.052113,34063718,22422652,0,0,34343,0,1,1 +1774087776.617371,29.68,4,3992.50,55.00,1507.33,2153.22,0.00,63190.341497,62130.038680,5540160,1096207,119.747922,0.038218,34076175,22425043,0,0,34346,0,1,1 +1774087781.613973,27.32,4,3992.50,55.17,1500.61,2159.98,0.00,3520829523289.442383,3520829524349.154785,237,176,118.645532,0.047326,34088332,22428450,0,0,34348,0,1,1 +1774087786.613555,28.66,4,3992.50,54.95,1509.00,2151.60,0.00,3518731296702.405762,3518731296703.741211,199,0,119.774997,0.049594,34100493,22431902,0,0,34351,0,1,1 +1774087791.617392,28.41,4,3992.50,55.03,1506.04,2154.58,0.00,3515739324747.027832,0.000000,21,0,119.675946,0.052660,34112809,22435418,0,0,34353,0,1,1 +1774087796.616909,28.32,4,3992.50,55.10,1503.51,2157.11,0.00,63204.228489,62147.828889,5539386,1096089,118.575831,0.058936,34124838,22439419,0,0,34356,0,1,1 +1774087801.614101,28.22,4,3992.50,54.89,1511.57,2149.02,0.00,3520414178604.052734,3520414179660.943848,21,0,120.234578,0.054522,34137129,22443364,0,0,34358,0,1,1 +1774087806.612953,28.18,4,3992.50,54.92,1510.29,2150.28,0.00,63216.774961,62156.280565,5540162,1096366,118.191208,0.061349,34149213,22447586,0,0,34361,0,1,1 +1774087811.613115,15.28,4,3992.50,48.98,1742.91,1917.78,0.00,0.071091,0.097360,5540169,1096379,110.348982,0.051066,34160463,22451279,0,0,34363,0,1,1 +1774087816.617331,1.15,4,3992.50,49.00,1742.31,1918.38,0.00,3515473562094.726074,3515473563154.058105,21,0,0.010483,0.021712,34160749,22451704,0,0,34366,0,1,1 +1774087821.616570,11.95,4,3992.50,49.38,1727.12,1933.51,0.00,63212.006303,62151.832985,5540175,1096744,6.165608,0.051662,34163298,22453640,0,0,34368,0,1,1 +1774087826.613047,20.27,4,3992.50,49.03,1740.78,1919.74,0.00,3520917940804.520508,3520917941863.271973,238,2,34.118829,0.148787,34173934,22461743,0,0,34371,0,1,1 +1774087831.616645,1.25,4,3992.50,49.05,1739.96,1920.56,0.00,0.000000,0.000000,238,2,0.009017,0.022206,34174194,22462164,0,0,34373,0,1,1 +1774087836.616597,21.69,4,3992.50,49.42,1722.46,1934.77,0.00,63200.993105,62217.204381,5540175,1098305,0.046953,87.744432,34177347,22471800,0,0,34376,0,1,1 +1774087841.616418,28.59,4,3992.50,49.46,1717.65,1936.31,0.00,3518563149649.470215,3518563150635.291504,21,0,0.024576,117.374019,34179062,22484040,0,0,34378,0,1,1 +1774087846.617814,0.90,4,3992.50,48.68,1747.94,1906.02,0.00,0.000000,0.000000,21,0,0.004484,0.007694,34179171,22484190,0,0,34381,0,1,1 +1774087851.616952,16.21,4,3992.50,48.93,1741.18,1915.91,0.00,1.538644,0.028325,237,176,40.075619,0.037840,34183726,22486016,0,0,34383,0,1,1 +1774087856.614404,1.26,4,3992.50,49.54,1717.48,1939.54,0.00,3520231120773.121582,3520231120774.457520,199,0,0.011194,0.022365,34184020,22486443,0,0,34386,0,1,1 +1774087861.613424,1.26,4,3992.50,49.26,1728.25,1928.82,0.00,3519127009860.037598,0.000000,21,0,0.009750,0.023433,34184300,22486880,0,0,34388,0,1,1 +1774087866.617425,0.90,4,3992.50,49.30,1727.01,1930.07,0.00,0.048008,0.000000,70,0,0.008931,0.021055,34184556,22487285,0,0,34391,0,1,1 +1774087871.617630,1.91,4,3992.50,49.26,1728.27,1928.82,0.00,3518292720341.371582,0.000000,21,0,0.010337,0.024838,34184856,22487759,0,0,34393,0,1,1 +1774087876.616932,0.85,4,3992.50,49.26,1728.53,1928.56,0.00,63210.523085,62357.597271,5539428,1099305,0.009360,0.022368,34185123,22488190,0,0,34396,0,1,1 +1774087881.614436,0.90,4,3992.50,49.26,1728.55,1928.53,0.00,0.000000,0.032340,5539428,1099319,0.008968,0.021091,34185381,22488595,0,0,34398,0,1,1 +1774087886.616992,0.85,4,3992.50,49.20,1730.98,1926.15,0.00,3516639580193.864746,3516639581046.028809,199,0,0.008909,0.021061,34185635,22489000,0,0,34401,0,1,1 +1774087891.616669,0.90,4,3992.50,49.20,1731.01,1926.11,0.00,3518664225357.831543,0.000000,70,0,0.009261,0.021760,34185904,22489421,0,0,34403,0,1,1 +1774087896.617726,0.75,4,3992.50,49.19,1731.04,1926.09,0.00,3517693391911.893555,0.000000,21,0,0.007547,0.016313,34186100,22489722,0,0,34406,0,1,1 +1774087901.617040,0.85,4,3992.50,49.19,1731.05,1926.07,0.00,0.000000,0.000000,21,0,0.009207,0.021686,34186366,22490137,0,0,34408,0,1,1 +1774087906.617259,1.10,4,3992.50,49.23,1729.64,1927.47,0.00,2.006748,0.000195,238,2,0.011260,0.026668,34186692,22490652,0,0,34411,0,1,1 +1774087911.613035,0.80,4,3992.50,49.05,1736.54,1920.58,0.00,63257.228026,62401.954487,5540202,1099787,0.008946,0.021080,34186948,22491056,0,0,34413,0,1,1 +1774087916.613024,0.90,4,3992.50,49.09,1735.11,1922.02,0.00,3518445410505.661621,3518445411362.221191,21,0,0.008959,0.021724,34187206,22491466,0,0,34416,0,1,1 +1774087921.613024,0.85,4,3992.50,49.06,1736.32,1920.81,0.00,0.000000,0.000000,21,0,0.008926,0.021062,34187461,22491870,0,0,34418,0,1,1 +1774087926.617384,0.90,4,3992.50,49.06,1736.35,1920.79,0.00,1.537038,0.028296,237,176,0.009685,0.024590,34187747,22492338,0,0,34421,0,1,1 +1774087931.613037,11.66,4,3992.50,49.28,1725.49,1929.36,0.00,3521499249672.631836,3521499249674.143066,21,0,0.029513,40.121905,34189352,22497227,0,0,34423,0,1,1 +1774087936.615027,1.00,4,3992.50,49.01,1736.06,1918.93,0.00,0.048028,0.000000,70,0,0.007372,0.020298,34189580,22497614,0,0,34426,0,1,1 +1774087941.617151,0.85,4,3992.50,48.89,1740.89,1914.09,0.00,3516942864080.535156,0.000000,21,0,0.007309,0.020287,34189803,22498000,0,0,34428,0,1,1 +1774087946.617443,1.00,4,3992.50,48.87,1741.61,1913.37,0.00,0.000000,0.000000,21,0,0.007336,0.020304,34190028,22498387,0,0,34431,0,1,1 +1774087951.617040,0.80,4,3992.50,48.87,1741.61,1913.36,0.00,63206.783730,62390.561615,5539428,1100062,0.009143,0.025367,34190307,22498869,0,0,34433,0,1,1 +1774087956.617219,0.90,4,3992.50,48.89,1740.84,1914.10,0.00,3518311228137.343262,3518311228953.422852,70,0,0.007337,0.020305,34190532,22499256,0,0,34436,0,1,1 +1774087961.616982,0.90,4,3992.50,48.89,1740.89,1914.09,0.00,1.958882,0.000195,238,2,0.008297,0.020966,34190762,22499645,0,0,34438,0,1,1 +1774087966.618033,0.85,4,3992.50,48.89,1740.66,1914.31,0.00,3517698271332.761230,3517698271334.768066,21,0,0.006237,0.017204,34190956,22499977,0,0,34441,0,1,1 +1774087971.616454,0.50,4,3992.50,48.92,1739.69,1915.29,0.00,0.048062,0.000000,70,0,0.002798,0.007688,34191044,22500127,0,0,34443,0,1,1 +1774087976.617763,0.85,4,3992.50,48.92,1739.70,1915.29,0.00,3517515971450.229492,0.000000,21,0,0.007782,0.021109,34191291,22500539,0,0,34446,0,1,1 +1774087981.613826,0.95,4,3992.50,48.92,1739.46,1915.52,0.00,0.000000,0.000000,21,0,0.007380,0.020324,34191519,22500926,0,0,34448,0,1,1 +1774087986.615435,0.90,4,3992.50,48.98,1737.48,1917.50,0.00,0.000000,0.000000,21,0,0.007322,0.020979,34191743,22501318,0,0,34451,0,1,1 +1774087991.617087,0.80,4,3992.50,48.98,1737.49,1917.50,0.00,0.000000,0.000000,21,0,0.007334,0.020289,34191968,22501704,0,0,34453,0,1,1 +1774087996.613729,23.06,4,3992.50,54.87,1513.37,2148.09,0.00,63244.170304,62431.628641,5539428,1100211,41.699000,0.046990,34196661,22503802,0,0,34456,0,1,1 +1774088001.616586,33.45,4,3992.50,54.99,1508.90,2152.94,0.00,3516427866534.705078,3516427867346.237793,21,0,123.903985,0.039965,34209420,22506156,0,0,34458,0,1,1 +1774088006.612892,28.38,4,3992.50,55.17,1501.86,2160.02,0.00,0.000000,0.000000,21,0,122.259964,0.023430,34221955,22507661,0,0,34461,0,1,1 +1774088011.616646,28.45,4,3992.50,55.65,1483.10,2178.81,0.00,63154.282786,62343.066155,5539428,1100342,120.274862,0.032011,34234203,22509862,0,0,34463,0,1,1 +1774088016.616488,28.49,4,3992.50,54.87,1513.69,2148.20,0.00,3518547922942.604980,3518547923752.449219,238,2,120.173085,0.049335,34246583,22513082,0,0,34466,0,1,1 +1774088021.616405,28.69,4,3992.50,55.13,1503.54,2158.35,0.00,63204.860891,62390.985522,5540202,1100552,119.970933,0.055428,34258931,22516786,0,0,34468,0,1,1 +1774088026.617733,28.81,4,3992.50,55.19,1501.16,2160.73,0.00,3517502676770.949219,3517502677586.426270,199,0,120.137315,0.042816,34271339,22519613,0,0,34471,0,1,1 +1774088031.613382,28.73,4,3992.50,55.23,1499.43,2162.45,0.00,63256.562812,62444.400193,5539428,1100432,118.468997,0.048681,34283547,22522965,0,0,34473,0,1,1 +1774088036.613013,21.71,4,3992.50,55.33,1495.59,2166.39,0.00,3518697147843.846191,3518697148655.362305,199,0,119.977853,0.052725,34295895,22526464,0,0,34476,0,1,1 +1774088041.612951,12.07,4,3992.50,51.41,1649.03,2012.93,0.00,1.831859,0.000195,238,2,30.718311,0.080844,34302101,22530301,0,0,34478,0,1,1 +1774088046.613410,14.59,4,3992.50,50.12,1699.48,1962.38,0.00,63194.048818,62384.991897,5539444,1101348,22.127025,0.097705,34309166,22535583,0,0,34481,0,1,1 +1774088051.614401,5.37,4,3992.50,49.36,1729.40,1932.41,0.00,3517739753073.289551,3517739753882.756836,237,176,6.055486,0.054112,34311665,22537688,0,0,34483,0,1,1 +1774088056.616403,1.40,4,3992.50,49.14,1737.94,1923.92,0.00,63175.017083,62365.937952,5539444,1101557,0.009618,0.022397,34311935,22538112,0,0,34486,0,1,1 +1774088061.617624,0.80,4,3992.50,49.14,1737.88,1923.98,0.00,0.000000,0.016207,5539444,1101566,0.008949,0.021057,34312192,22538516,0,0,34488,0,1,1 +1774088066.617798,0.80,4,3992.50,49.15,1737.37,1924.50,0.00,0.000000,0.027636,5539444,1101574,0.008913,0.021071,34312446,22538921,0,0,34491,0,1,1 +1774088071.617184,6.07,4,3992.50,50.19,1680.38,1965.14,0.00,3518868779276.877930,3518868780085.839355,238,2,0.000621,0.001421,34312462,22538948,0,0,34493,0,1,1 +1774088076.619394,4.56,4,3992.50,48.97,1728.21,1917.43,0.00,0.000000,0.000000,238,2,0.001370,0.003857,34312504,22539025,0,0,34496,0,1,1 +1774088081.613031,10.20,4,3992.50,49.23,1715.24,1927.62,0.00,3522920355434.012695,0.028161,237,179,0.000217,0.000654,34312510,22539039,0,0,34498,0,1,1 +1774088086.614550,0.40,4,3992.50,49.83,1691.93,1950.95,0.00,3517368553526.044434,3517368553527.554199,21,0,0.000126,0.000185,34312520,22539052,0,0,34501,0,1,1 +1774088091.617812,3.26,4,3992.50,49.50,1705.07,1938.21,0.00,2.005527,0.000195,238,2,0.000497,0.001299,34312537,22539079,0,0,34503,0,1,1 +1774088096.615064,9.10,4,3992.50,49.84,1692.59,1951.52,0.00,3520372664007.019043,3520372664009.027344,21,0,0.010211,5.018175,34313114,22539934,0,0,34506,0,1,1 +1774088101.616961,32.84,4,3992.50,53.61,1542.19,2099.02,0.00,1.537795,0.028310,237,179,0.086389,122.550587,34319845,22553164,0,0,34508,0,1,1 +1774088106.618167,9.61,4,3992.50,57.20,1406.05,2239.62,0.00,63185.520349,63791.144111,5539513,1110126,0.024197,39.681527,34321630,22557462,0,0,34511,0,1,1 +1774088111.617638,15.02,4,3992.50,48.92,1743.06,1915.52,0.00,3518809549036.906250,3518809548432.534180,70,0,0.014446,37.836142,34322466,22561078,0,0,34513,0,1,1 +1774088116.615146,14.36,4,3992.50,49.15,1734.39,1924.19,0.00,1.491075,0.028334,237,182,40.089247,0.035917,34327036,22562734,0,0,34516,0,1,1 +1774088121.615128,1.10,4,3992.50,49.15,1734.18,1924.39,0.00,3518449801413.500977,3518449801415.011230,21,0,0.007907,0.016985,34327250,22563056,0,0,34518,0,1,1 +1774088126.616483,1.60,4,3992.50,48.97,1741.41,1917.16,0.00,0.000000,0.000000,21,0,0.011451,0.028536,34327576,22563583,0,0,34521,0,1,1 +1774088131.617772,1.00,4,3992.50,48.97,1741.44,1917.13,0.00,63194.055406,63912.284808,5540374,1111435,0.008924,0.021044,34327831,22563986,0,0,34523,0,1,1 +1774088136.616978,1.05,4,3992.50,48.97,1741.46,1917.11,0.00,3518995475126.869141,3518995474406.830566,237,182,0.008978,0.021075,34328090,22564391,0,0,34526,0,1,1 +1774088141.617902,1.00,4,3992.50,48.97,1741.26,1917.31,0.00,0.468371,3517787526997.306152,238,2,0.008924,0.021058,34328345,22564795,0,0,34528,0,1,1 +1774088146.612955,1.20,4,3992.50,48.93,1742.72,1915.86,0.00,3521921378784.767090,3521921378786.727539,70,0,0.009456,0.022392,34328619,22565226,0,0,34531,0,1,1 +1774088151.614655,1.10,4,3992.50,48.93,1742.73,1915.85,0.00,3517241566929.717773,0.000000,21,0,0.006648,0.014721,34328805,22565510,0,0,34533,0,1,1 +1774088156.613039,1.10,4,3992.50,48.93,1742.76,1915.82,0.00,63230.787375,63949.724288,5540374,1111665,0.009004,0.021129,34329065,22565919,0,0,34536,0,1,1 +1774088161.617203,1.00,4,3992.50,48.93,1742.78,1915.80,0.00,3515508829470.937500,3515508828752.656738,199,0,0.009445,0.022311,34329339,22566347,0,0,34538,0,1,1 +1774088166.617523,9.71,4,3992.50,49.80,1694.32,1949.76,0.00,3518212511204.571777,0.000000,21,0,0.005276,0.010959,34329483,22566562,0,0,34541,0,1,1 +1774088171.612957,1.11,4,3992.50,49.20,1715.24,1926.11,0.00,63268.162734,64311.626956,5540399,1113727,0.001099,0.001078,34329510,22566588,0,0,34543,0,1,1 +1774088176.612955,7.24,4,3992.50,49.29,1711.73,1929.63,0.00,3518439204537.812012,290.867157,5539631,1115093,0.000682,0.001926,34329531,22566627,0,0,34546,0,1,1 +1774088181.618423,1.95,4,3992.50,48.98,1725.84,1917.80,0.00,3514593322123.958496,3514593320786.428223,237,185,0.000822,0.000890,34329548,22566648,0,0,34548,0,1,1 +1774088186.617621,5.01,4,3992.50,49.56,1698.88,1940.21,0.00,0.000000,0.000000,237,185,0.000983,0.000559,34329567,22566662,0,0,34551,0,1,1 +1774088191.616699,7.39,4,3992.50,49.42,1705.31,1934.86,0.00,0.468544,3519086739391.373535,238,2,0.001871,0.001908,34329608,22566704,0,0,34553,0,1,1 +1774088196.613032,0.75,4,3992.50,49.74,1691.66,1947.42,0.00,0.000000,0.000000,238,2,0.000405,0.001293,34329618,22566724,0,0,34556,0,1,1 +1774088201.617638,5.11,4,3992.50,49.17,1735.10,1925.18,0.00,3515198735729.457031,3515198735731.461914,21,0,0.014883,6.418639,34330430,22567884,0,0,34558,0,1,1 +1774088206.616909,9.49,4,3992.50,49.46,1723.26,1936.47,0.00,1.538603,0.028324,237,194,0.019751,33.664191,34331706,22571540,0,0,34561,0,1,1 +1774088211.616172,1.45,4,3992.50,48.68,1753.84,1905.88,0.00,3518956471729.008789,3518956471730.470703,70,0,0.006908,0.018161,34331911,22571887,0,0,34563,0,1,1 +1774088216.617398,1.00,4,3992.50,48.66,1754.38,1905.34,0.00,63194.851721,65240.701541,5540407,1119744,0.007322,0.020301,34332135,22572274,0,0,34566,0,1,1 +1774088221.616968,1.15,4,3992.50,48.72,1752.08,1907.63,0.00,3518739874124.188477,3518739872077.661133,70,0,0.007325,0.020297,34332359,22572660,0,0,34568,0,1,1 +1774088226.617025,0.95,4,3992.50,48.74,1751.37,1908.36,0.00,1.490315,0.028320,237,194,0.007395,0.020313,34332589,22573048,0,0,34571,0,1,1 +1774088231.615909,1.26,4,3992.50,48.83,1747.71,1911.96,0.00,0.468562,3519222595901.432617,238,2,0.009175,0.023339,34332847,22573485,0,0,34573,0,1,1 +1774088236.614281,1.30,4,3992.50,48.84,1747.53,1912.19,0.00,3519583453445.894043,3519583453447.901367,21,0,0.008763,0.024171,34333118,22573948,0,0,34576,0,1,1 +1774088241.614200,0.95,4,3992.50,48.84,1747.55,1912.18,0.00,0.048048,0.000000,70,0,0.007387,0.020327,34333347,22574336,0,0,34578,0,1,1 +1774088246.617207,1.00,4,3992.50,48.85,1747.31,1912.41,0.00,63172.373319,65221.681419,5540409,1119894,0.007395,0.020356,34333577,22574727,0,0,34581,0,1,1 +1774088251.616943,1.05,4,3992.50,48.89,1745.60,1914.12,0.00,3518623568684.514648,3518623566632.402832,237,194,0.007368,0.020966,34333804,22575119,0,0,34583,0,1,1 +1774088256.615491,2.31,4,3992.50,48.89,1745.61,1914.10,0.00,0.000000,0.000000,237,194,0.008590,0.023531,34334071,22575570,0,0,34586,0,1,1 +1774088261.612957,7.63,4,3992.50,48.75,1729.57,1908.81,0.00,0.468695,3520221192915.715820,238,2,0.002506,0.007663,34334147,22575710,0,0,34588,0,1,1 +1774088266.617047,7.57,4,3992.50,48.72,1733.24,1907.65,0.00,3515562036000.770996,3515562036002.776367,21,0,0.001378,0.001965,34334163,22575740,0,0,34591,0,1,1 +1774088271.615412,4.52,4,3992.50,49.00,1720.48,1918.31,0.00,0.000000,0.000000,21,0,0.002071,0.002310,34334207,22575793,0,0,34593,0,1,1 +1774088276.616407,7.74,4,3992.50,49.21,1714.86,1926.74,0.00,0.000000,0.000000,21,0,0.000509,0.001644,34334225,22575824,0,0,34596,0,1,1 +1774088281.616590,3.87,4,3992.50,49.00,1721.57,1918.41,0.00,63208.106592,66305.049663,5540413,1125514,0.000241,0.001136,34334233,22575841,0,0,34598,0,1,1 +1774088286.613403,4.51,4,3992.50,49.04,1724.25,1920.17,0.00,3520681119381.471680,3520681116282.265137,199,0,0.002198,0.006506,34334305,22575963,0,0,34601,0,1,1 +1774088291.613603,10.60,4,3992.50,49.92,1687.04,1954.58,0.00,63207.724734,66897.455342,5540415,1128530,0.001144,0.003200,34334340,22576026,0,0,34603,0,1,1 +1774088296.614527,0.75,4,3992.50,49.88,1688.54,1953.04,0.00,3517786232800.799316,3517786229111.730957,70,0,0.000000,0.000030,34334340,22576029,0,0,34606,0,1,1 +1774088301.615164,24.82,4,3992.50,55.49,1488.98,2172.66,0.00,1.958540,0.000195,238,2,59.683939,0.039865,34340767,22578055,0,0,34608,0,1,1 +1774088306.617377,31.20,4,3992.50,55.24,1500.73,2162.86,0.00,63176.337507,66940.780072,5539641,1128834,121.718974,0.036133,34353406,22580227,0,0,34611,0,1,1 +1774088311.612952,28.37,4,3992.50,54.91,1513.93,2149.70,0.00,3521553574799.807129,3521553571030.859863,237,212,120.673718,0.027705,34365776,22582149,0,0,34613,0,1,1 +1774088316.617387,28.43,4,3992.50,54.92,1513.27,2150.39,0.00,3515319439027.360840,3515319439028.694824,199,0,120.061148,0.029042,34378177,22584150,0,0,34616,0,1,1 +1774088321.616604,28.57,4,3992.50,55.08,1507.01,2156.37,0.00,3518988165599.398438,0.000000,70,0,120.188845,0.036818,34390534,22586522,0,0,34618,0,1,1 +1774088326.616637,28.41,4,3992.50,55.00,1510.02,2153.53,0.00,0.126952,0.000000,199,0,120.172192,0.040558,34402981,22589381,0,0,34621,0,1,1 +1774088331.615527,28.64,4,3992.50,55.21,1501.89,2161.74,0.00,63220.174461,66985.363681,5539641,1128896,119.200177,0.038752,34415454,22591647,0,0,34623,0,1,1 +1774088336.617445,28.74,4,3992.50,55.09,1506.63,2156.92,0.00,0.000000,0.162047,5539641,1128937,119.121992,0.028553,34427699,22593491,0,0,34626,0,1,1 +1774088341.616800,18.89,4,3992.50,55.18,1503.30,2160.39,0.00,0.000781,0.007716,5539642,1128952,119.380606,0.038770,34439880,22596130,0,0,34628,0,1,1 +1774088346.617698,1.35,4,3992.50,49.89,1710.40,1953.29,0.00,3517805207852.910645,3517805204089.239746,21,0,5.214423,0.016640,34440632,22596564,0,0,34631,0,1,1 +1774088351.615324,16.64,4,3992.50,49.68,1718.71,1944.92,0.00,0.175083,0.000000,199,0,18.134061,0.096379,34446854,22601295,0,0,34633,0,1,1 +1774088356.613052,12.44,4,3992.50,49.53,1706.29,1939.39,0.00,63239.134685,67288.862754,5540430,1131899,8.053378,0.036299,34449524,22603292,0,0,34636,0,1,1 +1774088361.612941,8.97,4,3992.50,49.22,1716.16,1927.20,0.00,3518515698648.243164,3518515694598.929688,237,215,0.000619,0.000901,34449536,22603305,0,0,34638,0,1,1 +1774088366.612957,6.03,4,3992.50,49.30,1714.37,1930.38,0.00,3518426098395.776367,3518426098397.238281,70,0,2.010100,0.007057,34450124,22603718,0,0,34641,0,1,1 +1774088371.617223,6.81,4,3992.50,49.42,1708.96,1934.86,0.00,3515437477646.426270,0.000000,21,0,0.000665,0.000767,34450135,22603730,0,0,34643,0,1,1 +1774088376.617265,3.91,4,3992.50,49.23,1717.68,1927.38,0.00,1.538366,0.028320,237,215,0.002831,0.000700,34450183,22603760,0,0,34646,0,1,1 +1774088381.617255,5.45,4,3992.50,49.82,1694.57,1950.51,0.00,3518444452655.100586,3518444452656.610840,21,0,0.001680,0.001644,34450220,22603793,0,0,34648,0,1,1 +1774088386.613749,5.57,4,3992.50,49.03,1723.91,1919.71,0.00,63252.876544,68291.166146,5539820,1137596,0.000405,0.001293,34450230,22603813,0,0,34651,0,1,1 +1774088391.615942,0.90,4,3992.50,48.59,1741.32,1902.31,0.00,3516894748881.830078,3516894743849.281250,21,0,0.000329,0.000938,34450245,22603836,0,0,34653,0,1,1 +1774088396.613901,9.25,4,3992.50,49.15,1739.52,1924.27,0.00,0.048066,0.000000,70,0,12.088639,0.070608,34454399,22607124,0,0,34656,0,1,1 +1774088401.612967,0.85,4,3992.50,49.10,1741.36,1922.46,0.00,0.126977,0.000000,199,0,0.008890,0.021053,34454651,22607527,0,0,34658,0,1,1 +1774088406.616602,1.05,4,3992.50,49.14,1739.73,1924.09,0.00,63166.657483,68254.674691,5540620,1138796,0.008882,0.021057,34454903,22607932,0,0,34661,0,1,1 +1774088411.617801,0.85,4,3992.50,49.14,1739.77,1924.05,0.00,3517593137188.730957,3517593132096.902344,237,220,0.008924,0.021044,34455158,22608335,0,0,34663,0,1,1 +1774088416.617929,0.85,4,3992.50,49.14,1739.80,1924.03,0.00,3518347346772.078125,3518347346773.588379,21,0,0.007070,0.015990,34455355,22608643,0,0,34666,0,1,1 +1774088421.612979,0.85,4,3992.50,49.14,1739.82,1924.02,0.00,0.048094,0.000000,70,0,0.008955,0.021091,34455612,22609048,0,0,34668,0,1,1 +1774088426.616700,15.17,4,3992.50,49.66,1718.61,1944.21,0.00,63161.583837,68278.652091,5539847,1139063,0.036835,62.467611,34457870,22616157,0,0,34671,0,1,1 +1774088431.617832,28.65,4,3992.50,49.39,1721.05,1933.69,0.00,0.000781,132.688128,5539848,1139808,0.034790,118.548737,34460273,22628568,0,0,34673,0,1,1 +1774088436.617052,7.50,4,3992.50,48.87,1739.65,1913.47,0.00,3518986068088.540039,3518986062834.174805,21,0,0.014507,24.057087,34460823,22631466,0,0,34676,0,1,1 +1774088441.616149,15.17,4,3992.50,50.03,1695.52,1958.72,0.00,63245.783599,68522.200150,5549714,1140551,40.077401,0.036256,34465455,22633012,0,0,34678,0,1,1 +1774088446.616690,0.85,4,3992.50,49.56,1713.79,1940.43,0.00,3518056612240.923340,3518056606966.030273,21,0,0.007700,0.016898,34465665,22633332,0,0,34681,0,1,1 +1774088451.616441,6.06,4,3992.50,48.93,1722.48,1915.87,0.00,1.538456,0.028322,237,223,0.005501,0.011566,34465816,22633557,0,0,34683,0,1,1 +1774088456.617687,3.56,4,3992.50,48.42,1743.21,1895.93,0.00,63217.090472,68794.581731,5549719,1142316,0.002384,0.005491,34465879,22633657,0,0,34686,0,1,1 +1774088461.617429,6.31,4,3992.50,48.98,1723.86,1917.57,0.00,3518618689485.355469,3518618683906.185547,237,223,0.001293,0.002158,34465911,22633702,0,0,34688,0,1,1 +1774088466.612967,4.01,4,3992.50,49.40,1706.43,1934.22,0.00,63285.230172,69202.463633,5548947,1143783,0.001200,0.001194,34465936,22633728,0,0,34691,0,1,1 +1774088471.617459,5.57,4,3992.50,49.98,1683.94,1956.65,0.00,3515278718344.545410,3515278712439.361328,70,0,0.000254,0.000684,34465945,22633744,0,0,34693,0,1,1 +1774088476.616997,11.89,4,3992.50,49.79,1691.36,1949.44,0.00,63240.197523,69883.832414,5549728,1147745,0.001252,0.001680,34465974,22633780,0,0,34696,0,1,1 +1774088481.616448,1.10,4,3992.50,49.94,1684.18,1955.19,0.00,3518823494765.875488,61.095379,5548954,1147811,0.000896,0.000487,34465996,22633798,0,0,34698,0,1,1 +1774088486.617689,0.45,4,3992.50,49.84,1687.91,1951.46,0.00,3517564195266.143066,3517564188557.630371,238,2,0.000075,0.000070,34466001,22633804,0,0,34701,0,1,1 +1774088491.617383,1.15,4,3992.50,49.27,1729.56,1929.01,0.00,3518651927577.769531,3518651927579.776367,21,0,0.004686,0.011175,34466135,22634019,0,0,34703,0,1,1 +1774088496.613037,1.05,4,3992.50,49.26,1730.14,1928.45,0.00,0.000000,0.000000,21,0,0.008934,0.021735,34466390,22634428,0,0,34706,0,1,1 +1774088501.617175,7.68,4,3992.50,49.45,1722.34,1936.23,0.00,0.048007,0.000000,70,0,0.028137,29.240622,34468029,22637999,0,0,34708,0,1,1 +1774088506.617386,4.26,4,3992.50,48.82,1747.03,1911.56,0.00,3518288920745.378418,0.000000,21,0,0.009552,10.825240,34468569,22639322,0,0,34711,0,1,1 +1774088511.616635,1.05,4,3992.50,48.78,1748.89,1909.91,0.00,0.048054,0.000000,70,0,0.007599,0.019914,34468796,22639703,0,0,34713,0,1,1 +1774088516.613037,1.00,4,3992.50,48.74,1750.39,1908.41,0.00,1.491405,0.028341,237,228,0.009174,0.025393,34469077,22640186,0,0,34716,0,1,1 +1774088521.614842,0.90,4,3992.50,48.75,1750.19,1908.61,0.00,63210.074830,69955.398049,5549762,1148690,0.007359,0.020288,34469304,22640572,0,0,34718,0,1,1 +1774088526.613025,1.05,4,3992.50,48.75,1750.21,1908.58,0.00,3519715771101.467285,3519715764350.760254,238,2,0.007377,0.020313,34469532,22640959,0,0,34721,0,1,1 +1774088531.617079,0.85,4,3992.50,48.75,1750.23,1908.57,0.00,3515587315601.785645,3515587315603.742676,70,0,0.007724,0.021343,34469769,22641367,0,0,34723,0,1,1 +1774088536.614396,1.10,4,3992.50,48.77,1749.50,1909.30,0.00,63268.325421,70022.282470,5549762,1148738,0.008315,0.022866,34470027,22641803,0,0,34726,0,1,1 +1774088541.617083,0.90,4,3992.50,48.75,1750.23,1908.57,0.00,0.000000,0.011712,5549762,1148746,0.008349,0.023549,34470288,22642247,0,0,34728,0,1,1 +1774088546.616681,4.82,4,3992.50,49.36,1703.45,1932.66,0.00,0.000000,102.537918,5549762,1149291,0.005569,0.015331,34470462,22642544,0,0,34731,0,1,1 +1774088551.617160,7.69,4,3992.50,49.87,1681.59,1952.36,0.00,3518100063816.670898,3518100056964.326172,199,0,0.000520,0.001981,34470480,22642578,0,0,34733,0,1,1 +1774088556.616153,0.55,4,3992.50,49.49,1700.37,1937.51,0.00,3519145933905.629395,0.000000,21,0,0.000291,0.001358,34470491,22642601,0,0,34736,0,1,1 +1774088561.616974,3.78,4,3992.50,49.85,1690.96,1951.78,0.00,0.000000,0.000000,21,0,0.000229,0.000653,34470498,22642615,0,0,34738,0,1,1 +1774088566.617698,4.83,4,3992.50,49.98,1682.61,1956.95,0.00,2.006546,0.000195,238,2,0.001860,0.003290,34470530,22642671,0,0,34741,0,1,1 +1774088571.616491,3.71,4,3992.50,50.13,1675.11,1962.79,0.00,63243.592372,70883.809794,5548995,1152701,0.001371,0.000408,34470552,22642688,0,0,34743,0,1,1 +1774088576.616551,3.41,4,3992.50,49.89,1684.54,1953.33,0.00,3518394421085.735352,3518394413449.461914,21,0,0.002772,0.006128,34470620,22642794,0,0,34746,0,1,1 +1774088581.617636,4.82,4,3992.50,51.01,1640.72,1997.16,0.00,1.538045,0.028314,237,237,0.000229,0.000653,34470627,22642808,0,0,34748,0,1,1 +1774088586.613441,16.49,4,3992.50,56.18,1462.48,2199.56,0.00,0.468850,3521392010327.594727,238,2,11.831919,0.018076,34472075,22643773,0,0,34751,0,1,1 +1774088591.613073,33.74,4,3992.50,55.38,1493.86,2168.25,0.00,3518695705638.948242,3518695705640.780273,199,0,119.385446,0.054744,34484652,22646470,0,0,34753,0,1,1 +1774088596.616406,28.43,4,3992.50,55.23,1499.54,2162.56,0.00,0.000000,0.000000,199,0,118.898506,0.045688,34497229,22649365,0,0,34756,0,1,1 +1774088601.613798,28.15,4,3992.50,55.44,1491.43,2170.69,0.00,1.832792,0.000195,238,2,119.035731,0.038662,34509722,22651724,0,0,34758,0,1,1 +1774088606.616656,27.70,4,3992.50,55.41,1492.71,2169.39,0.00,63192.210322,71127.207449,5548996,1154635,119.298851,0.025897,34522028,22653632,0,0,34761,0,1,1 +1774088611.617379,28.20,4,3992.50,55.43,1491.90,2170.24,0.00,3517927949506.094727,3517927941567.711426,238,2,119.677713,0.038565,34534357,22656033,0,0,34763,0,1,1 +1774088616.612947,28.30,4,3992.50,55.28,1497.95,2164.24,0.00,3521558744613.491699,0.028150,237,240,118.752912,0.045803,34546734,22658921,0,0,34766,0,1,1 +1774088621.616384,28.11,4,3992.50,55.39,1493.50,2168.67,0.00,63185.362378,71119.003241,5548996,1154693,120.089989,0.039855,34559144,22661463,0,0,34768,0,1,1 +1774088626.617454,28.01,4,3992.50,55.26,1498.52,2163.70,0.00,3517684697418.453125,3517684689482.392090,199,0,118.145582,0.043356,34571361,22664512,0,0,34771,0,1,1 +1774088631.617936,3.71,4,3992.50,49.14,1738.29,1924.04,0.00,3518097867938.694824,0.000000,21,0,60.282873,0.018360,34577668,22665581,0,0,34773,0,1,1 +1774088636.613032,3.87,4,3992.50,49.12,1739.07,1923.26,0.00,0.048094,0.000000,70,0,0.019057,0.024570,34578093,22666075,0,0,34776,0,1,1 +1774088641.612947,17.51,4,3992.50,49.66,1700.71,1944.31,0.00,63231.444145,71327.250450,5549025,1156399,14.098443,0.078855,34582930,22669879,0,0,34778,0,1,1 +1774088646.617388,8.01,4,3992.50,49.98,1689.09,1956.84,0.00,3515314670209.270020,3515314662120.786133,70,0,0.003976,0.002349,34583003,22669933,0,0,34781,0,1,1 +1774088651.617007,1.20,4,3992.50,49.88,1693.25,1952.74,0.00,63239.311364,71612.605449,5549807,1158622,0.000104,0.000153,34583006,22669937,0,0,34783,0,1,1 +1774088656.614483,6.33,4,3992.50,51.29,1640.33,2008.00,0.00,3520214065928.053711,3520214057551.218750,21,0,0.001790,0.001789,34583043,22669970,0,0,34786,0,1,1 +1774088661.612984,9.43,4,3992.50,50.39,1674.39,1972.73,0.00,1.538840,0.028329,237,243,2.009054,0.006379,34583594,22670360,0,0,34788,0,1,1 +1774088666.614992,3.91,4,3992.50,50.46,1669.98,1975.68,0.00,0.468269,3517024756969.269043,238,2,0.000794,0.001056,34583609,22670376,0,0,34791,0,1,1 +1774088671.616525,1.70,4,3992.50,48.39,1751.00,1894.59,0.00,63214.684120,72223.644503,5550064,1162477,0.000923,0.001024,34583632,22670398,0,0,34793,0,1,1 +1774088676.617116,10.25,4,3992.50,48.59,1761.92,1902.59,0.00,3518020829394.622559,3518020820385.974121,21,0,14.067689,0.052350,34587835,22673453,0,0,34796,0,1,1 +1774088681.613037,7.38,4,3992.50,48.64,1760.04,1904.44,0.00,0.175143,0.000000,199,0,10.086006,0.064405,34591509,22676333,0,0,34798,0,1,1 +1774088686.616906,1.35,4,3992.50,48.67,1759.09,1905.38,0.00,3515716895512.578125,0.000000,70,0,0.010359,0.024326,34591805,22676796,0,0,34801,0,1,1 +1774088691.613770,1.00,4,3992.50,48.61,1761.46,1903.02,0.00,63271.702326,72330.958028,5549428,1163367,0.010102,0.024902,34592097,22677265,0,0,34803,0,1,1 +1774088696.617599,4.46,4,3992.50,48.97,1747.01,1917.38,0.00,3515745285038.404297,3515745275991.629395,199,0,0.023879,15.235302,34593386,22679495,0,0,34806,0,1,1 +1774088701.616418,29.12,4,3992.50,48.96,1742.48,1916.75,0.00,63250.983829,72400.499359,5550214,1164303,0.052547,118.208926,34597120,22692039,0,0,34808,0,1,1 +1774088706.613827,17.82,4,3992.50,48.50,1755.94,1898.87,0.00,3520261313948.982422,74.686259,5549448,1164530,0.028245,71.750942,34598955,22699688,0,0,34811,0,1,1 +1774088711.620385,5.10,4,3992.50,53.54,1558.55,2096.20,0.00,21.719071,32.984860,5550759,1165184,0.814107,0.025042,34599439,22700243,0,0,34813,0,1,1 +1774088716.615794,11.31,4,3992.50,50.07,1694.54,1960.30,0.00,3521670542788.045410,3521670533540.834961,237,246,39.299413,0.026653,34603750,22701612,0,0,34816,0,1,1 +1774088721.617194,1.30,4,3992.50,49.11,1732.16,1922.68,0.00,3517452265264.661133,3517452265266.170898,21,0,0.009624,0.023933,34604020,22702044,0,0,34818,0,1,1 +1774088726.612932,0.95,4,3992.50,48.53,1754.61,1900.23,0.00,0.048088,0.000000,70,0,0.010754,0.026138,34604330,22702543,0,0,34821,0,1,1 +1774088731.617148,0.80,4,3992.50,48.57,1753.19,1901.65,0.00,63200.521836,72430.125232,5550761,1165339,0.008918,0.021069,34604585,22702949,0,0,34823,0,1,1 +1774088736.617085,0.90,4,3992.50,48.57,1753.21,1901.62,0.00,0.000000,0.087110,5550761,1165354,0.008934,0.021080,34604841,22703355,0,0,34826,0,1,1 +1774088741.617470,0.80,4,3992.50,48.39,1760.14,1894.70,0.00,3518166049826.203125,3518166040589.489746,21,0,0.008988,0.021092,34605101,22703761,0,0,34828,0,1,1 +1774088746.616694,0.80,4,3992.50,48.39,1760.17,1894.68,0.00,2.007147,0.000195,238,2,0.008927,0.021075,34605356,22704166,0,0,34831,0,1,1 +1774088751.617407,1.20,4,3992.50,48.58,1752.71,1902.11,0.00,3517935702521.423340,3517935702523.255371,199,0,0.010824,0.026203,34605671,22704672,0,0,34833,0,1,1 +1774088756.616410,0.90,4,3992.50,48.57,1753.03,1901.81,0.00,63262.197498,72505.901008,5549987,1165261,0.008911,0.021084,34605925,22705078,0,0,34836,0,1,1 +1774088761.617374,0.80,4,3992.50,48.60,1752.07,1902.76,0.00,3517758436358.260742,3517758427116.352539,238,2,0.008381,0.020821,34606174,22705475,0,0,34838,0,1,1 +1774088766.614995,11.35,4,3992.50,48.79,1742.18,1910.27,0.00,63281.963014,72558.080495,5550762,1165741,0.027927,40.099893,34607765,22710210,0,0,34841,0,1,1 +1774088771.613040,1.35,4,3992.50,48.79,1742.24,1910.20,0.00,3519813712389.966797,3519813703116.643066,21,0,0.008988,0.024464,34608043,22710673,0,0,34843,0,1,1 +1774088776.617642,0.85,4,3992.50,48.82,1741.03,1911.42,0.00,0.174839,0.000000,199,0,0.007330,0.020930,34608268,22711064,0,0,34846,0,1,1 +1774088781.617875,0.90,4,3992.50,48.76,1743.27,1909.17,0.00,63250.747480,72524.312124,5550764,1165909,0.007344,0.020303,34608494,22711451,0,0,34848,0,1,1 +1774088786.617611,0.90,4,3992.50,48.76,1743.29,1909.16,0.00,3518622508688.816406,3518622508692.899902,5549990,1165664,0.007362,0.020307,34608721,22711838,0,0,34851,0,1,1 +1774088791.612966,0.95,4,3992.50,48.74,1744.06,1908.38,0.00,4.113099,0.033234,5550764,1165915,0.008031,0.022192,34608967,22712258,0,0,34853,0,1,1 +1774088796.617158,0.85,4,3992.50,48.65,1747.82,1904.62,0.00,3515490151718.109863,3515490142451.874512,199,0,0.008474,0.023479,34609227,22712707,0,0,34856,0,1,1 +1774088801.617629,0.95,4,3992.50,48.68,1746.35,1906.09,0.00,63247.726706,72524.942603,5550764,1165992,0.007394,0.020364,34609457,22713098,0,0,34858,0,1,1 +1774088806.617368,0.95,4,3992.50,48.57,1750.64,1901.80,0.00,3518620513611.508789,3518620504332.935059,199,0,0.007987,0.021478,34609698,22713511,0,0,34861,0,1,1 +1774088811.617253,0.90,4,3992.50,48.59,1750.18,1902.26,0.00,63251.032808,72533.437578,5549990,1165751,0.007400,0.020358,34609928,22713901,0,0,34863,0,1,1 +1774088816.613704,0.90,4,3992.50,48.59,1750.18,1902.25,0.00,3520936924939.339355,3520936915650.680176,70,0,0.009324,0.025481,34610219,22714391,0,0,34866,0,1,1 +1774088821.617453,0.85,4,3992.50,48.55,1751.49,1900.95,0.00,0.000000,0.000000,70,0,0.007319,0.020293,34610443,22714778,0,0,34868,0,1,1 +1774088826.616223,0.85,4,3992.50,48.58,1750.53,1901.91,0.00,0.000000,0.000000,70,0,0.007347,0.020319,34610669,22715166,0,0,34871,0,1,1 +1774088831.615786,18.91,4,3992.50,54.77,1510.90,2144.36,0.00,1.490462,0.028323,237,246,14.033191,0.035247,34612520,22716482,0,0,34873,0,1,1 +1774088836.613534,32.98,4,3992.50,55.03,1507.35,2154.48,0.00,3520022299563.311035,3520022299564.822266,21,0,118.227536,0.054325,34624837,22719856,0,0,34876,0,1,1 +1774088841.613401,27.93,4,3992.50,54.83,1517.64,2146.83,0.00,0.000000,0.000000,21,0,120.201912,0.112384,34637721,22728497,0,0,34878,0,1,1 +1774088846.617634,27.68,4,3992.50,54.74,1521.23,2143.20,0.00,0.174852,0.000000,199,0,118.099751,0.114529,34650527,22736871,0,0,34881,0,1,1 +1774088851.616912,28.32,4,3992.50,54.78,1519.95,2144.57,0.00,63258.704974,72542.534741,5549990,1165982,120.221827,0.117089,34663627,22745690,0,0,34883,0,1,1 +1774088856.615979,28.15,4,3992.50,54.81,1518.36,2146.11,0.00,3519093896533.423828,3519093887247.865723,237,246,118.421658,0.112090,34676461,22754099,0,0,34886,0,1,1 +1774088861.613559,28.47,4,3992.50,54.91,1514.62,2149.81,0.00,63278.839448,72567.176743,5549990,1166006,120.059794,0.114278,34689412,22762716,0,0,34888,0,1,1 +1774088866.617378,28.65,4,3992.50,54.86,1516.38,2148.05,0.00,3515752379300.656250,3515752370023.897949,237,246,119.708214,0.112738,34702393,22771288,0,0,34891,0,1,1 +1774088871.617234,28.69,4,3992.50,54.60,1526.63,2137.86,0.00,3518538478752.449707,3518538478753.959961,21,0,118.605618,0.118385,34715234,22779867,0,0,34893,0,1,1 +1774088876.617617,3.27,4,3992.50,48.04,1783.79,1880.77,0.00,0.048043,0.000000,70,0,58.098418,0.062480,34721659,22784042,0,0,34896,0,1,1 +1774088881.618410,5.37,4,3992.50,48.82,1753.02,1911.55,0.00,0.000000,0.000000,70,0,2.029566,0.033917,34722697,22785023,0,0,34898,0,1,1 +1774088886.617874,14.32,4,3992.50,49.14,1728.41,1924.11,0.00,63260.685919,72540.392759,5550791,1166953,18.124131,0.096232,34728921,22789852,0,0,34901,0,1,1 +1774088891.617033,12.95,4,3992.50,49.19,1726.45,1926.05,0.00,3519028635225.159668,3519028625942.929688,238,2,20.124311,0.093624,34735398,22794705,0,0,34903,0,1,1 +1774088896.617770,1.75,4,3992.50,48.88,1738.75,1913.74,0.00,63238.526098,72522.332588,5550040,1167428,0.011811,0.026898,34735713,22795206,0,0,34906,0,1,1 +1774088901.616499,0.80,4,3992.50,48.88,1738.78,1913.71,0.00,3519332203315.458984,3519332194029.753906,199,0,0.009549,0.022360,34735986,22795636,0,0,34908,0,1,1 +1774088906.617231,0.85,4,3992.50,48.88,1738.55,1913.93,0.00,3517921789718.601074,0.000000,21,0,0.008937,0.021713,34736242,22796045,0,0,34911,0,1,1 +1774088911.612965,0.85,4,3992.50,48.89,1738.35,1914.14,0.00,1.539693,0.028344,237,246,0.008929,0.021088,34736497,22796450,0,0,34913,0,1,1 +1774088916.613036,1.05,4,3992.50,49.17,1727.17,1925.30,0.00,3518387467327.003418,3518387467328.513672,21,0,0.008926,0.021072,34736752,22796855,0,0,34916,0,1,1 +1774088921.616395,1.71,4,3992.50,48.96,1735.73,1916.77,0.00,0.174883,0.000000,199,0,0.010672,0.025598,34737068,22797350,0,0,34918,0,1,1 +1774088926.617609,0.85,4,3992.50,48.96,1735.75,1916.75,0.00,1.831391,0.000195,238,2,0.009140,0.021726,34737329,22797769,0,0,34921,0,1,1 +1774088931.617336,0.85,4,3992.50,48.92,1737.18,1915.31,0.00,3518629798268.346191,3518629798270.304688,70,0,0.008379,0.016256,34737536,22798068,0,0,34923,0,1,1 +1774088936.617860,0.90,4,3992.50,48.74,1744.11,1908.38,0.00,63247.285753,72526.383325,5550814,1168151,0.008624,0.017678,34737772,22798415,0,0,34926,0,1,1 +1774088941.617766,0.80,4,3992.50,48.74,1744.12,1908.36,0.00,3518503073228.893555,3518503063948.522461,199,0,0.008988,0.021090,34738031,22798821,0,0,34928,0,1,1 +1774088946.616494,0.95,4,3992.50,48.76,1743.23,1909.21,0.00,0.000000,0.000000,199,0,0.008953,0.021077,34738288,22799226,0,0,34931,0,1,1 +1774088951.616977,8.74,4,3992.50,48.92,1737.13,1915.25,0.00,3518097340275.038086,0.000000,70,0,0.032528,33.040204,34740170,22803458,0,0,34933,0,1,1 +1774088956.617743,29.20,4,3992.50,50.00,1700.77,1957.57,0.00,1.490104,0.028316,237,246,0.076589,123.626400,34745769,22816848,0,0,34936,0,1,1 +1774088961.617413,14.17,4,3992.50,49.22,1727.75,1926.94,0.00,3518669635308.155762,3518669635309.666016,21,0,0.015329,48.489805,34746523,22821978,0,0,34938,0,1,1 +1774088966.613034,1.50,4,3992.50,49.09,1732.74,1921.96,0.00,1.539727,0.028345,237,246,0.009174,0.016573,34746744,22822300,0,0,34941,0,1,1 +1774088971.613026,15.00,4,3992.50,48.68,1749.00,1905.77,0.00,0.000000,0.000000,237,246,40.069874,0.050582,34751258,22824677,0,0,34943,0,1,1 +1774088976.613115,0.80,4,3992.50,48.71,1747.81,1906.96,0.00,0.000000,0.000000,237,246,0.009027,0.021734,34751521,22825087,0,0,34946,0,1,1 +1774088981.615210,0.85,4,3992.50,48.71,1747.70,1907.08,0.00,0.468261,3516963951980.294434,238,2,0.008955,0.021092,34751779,22825494,0,0,34948,0,1,1 +1774088986.612958,0.90,4,3992.50,48.72,1747.47,1907.30,0.00,63298.524163,72772.231950,5551416,1169893,0.008324,0.020844,34752023,22825892,0,0,34951,0,1,1 +1774088991.617396,11.50,4,3992.50,49.06,1731.06,1920.95,0.00,3515316745175.200195,3515316735714.653320,237,246,0.027273,40.046361,34753611,22830700,0,0,34953,0,1,1 +1774088996.617808,1.10,4,3992.50,48.87,1738.57,1913.44,0.00,3518147402896.606934,3518147402898.117188,21,0,0.008300,0.022386,34753867,22831131,0,0,34956,0,1,1 +1774089001.616404,0.95,4,3992.50,48.90,1737.39,1914.62,0.00,63285.689022,72796.129321,5550644,1170055,0.007385,0.020309,34754096,22831518,0,0,34958,0,1,1 +1774089006.617389,1.10,4,3992.50,48.90,1737.36,1914.65,0.00,3517743768066.177246,3517743758560.106934,199,0,0.007323,0.020302,34754320,22831905,0,0,34961,0,1,1 +1774089011.617099,1.10,4,3992.50,48.91,1736.88,1915.13,0.00,63275.621179,72780.037080,5551437,1170388,0.007325,0.020297,34754544,22832291,0,0,34963,0,1,1 +1774089016.612956,1.20,4,3992.50,48.91,1736.89,1915.12,0.00,3521354510353.114258,3521354500841.546875,21,0,0.009163,0.025383,34754824,22832773,0,0,34966,0,1,1 +1774089021.612955,1.00,4,3992.50,48.92,1736.67,1915.35,0.00,0.000000,0.000000,21,0,0.007357,0.020316,34755051,22833161,0,0,34968,0,1,1 +1774089026.616416,1.20,4,3992.50,48.97,1734.54,1917.46,0.00,1.537315,0.028301,237,246,0.007420,0.020354,34755283,22833552,0,0,34971,0,1,1 +1774089031.617738,1.05,4,3992.50,48.97,1734.55,1917.45,0.00,0.468333,3517506739709.348633,238,2,0.007473,0.020353,34755519,22833942,0,0,34973,0,1,1 +1774089036.617603,0.95,4,3992.50,48.97,1734.58,1917.43,0.00,63267.710980,72781.802401,5550663,1170182,0.007616,0.021090,34755762,22834352,0,0,34976,0,1,1 +1774089041.617592,1.00,4,3992.50,48.95,1735.53,1916.48,0.00,3518444650459.641602,3518444640945.787109,238,2,0.007264,0.020344,34755983,22834733,0,0,34978,0,1,1 +1774089046.617837,1.15,4,3992.50,48.95,1735.54,1916.47,0.00,3518264920151.706055,3518264920153.712891,21,0,0.007362,0.020305,34756210,22835120,0,0,34981,0,1,1 +1774089051.617260,1.20,4,3992.50,48.96,1735.30,1916.70,0.00,63275.302409,72788.266573,5550663,1170212,0.007363,0.020298,34756437,22835506,0,0,34983,0,1,1 +1774089056.616753,40.18,4,3992.50,54.76,1517.03,2144.02,0.00,3518793833782.227051,3518793824269.395996,21,0,103.166441,0.055773,34767460,22838438,0,0,34986,0,1,1 +1774089061.617337,29.05,4,3992.50,55.17,1504.38,2160.09,0.00,0.174980,0.000000,199,0,122.158388,0.031322,34780053,22840470,0,0,34988,0,1,1 +1774089066.616607,28.60,4,3992.50,54.79,1519.08,2145.33,0.00,0.000000,0.000000,199,0,121.392879,0.042493,34792547,22843107,0,0,34991,0,1,1 +1774089071.617114,28.95,4,3992.50,54.92,1514.16,2150.29,0.00,63261.406735,72772.674271,5550663,1170398,120.159531,0.044031,34804829,22846361,0,0,34993,0,1,1 +1774089076.613493,28.28,4,3992.50,54.70,1522.88,2141.58,0.00,3520987539137.689453,3520987529618.736328,21,0,120.069180,0.062936,34817546,22850425,0,0,34996,0,1,1 +1774089081.617493,28.24,4,3992.50,54.77,1519.91,2144.54,0.00,0.000000,0.000000,21,0,119.677404,0.038931,34830054,22852951,0,0,34998,0,1,1 +1774089086.617424,28.23,4,3992.50,54.96,1512.49,2151.92,0.00,0.048048,0.000000,70,0,119.373633,0.038983,34842429,22855402,0,0,35001,0,1,1 +1774089091.616747,28.36,4,3992.50,55.10,1507.23,2157.24,0.00,3518913602221.751465,0.000000,21,0,119.592074,0.056710,34854780,22859534,0,0,35003,0,1,1 +1774089096.617460,8.00,4,3992.50,49.46,1727.88,1936.66,0.00,1.538160,0.028316,237,246,79.909019,0.047907,34863078,22863002,0,0,35006,0,1,1 +1774089101.613620,20.56,4,3992.50,48.79,1754.11,1910.37,0.00,63319.353355,72836.378704,5551466,1171181,26.193198,0.130162,34871855,22869605,0,0,35008,0,1,1 +1774089106.617420,10.35,4,3992.50,49.73,1717.37,1947.10,0.00,3515764708088.535645,3515764698585.545898,238,2,14.077852,0.067040,34876413,22873001,0,0,35011,0,1,1 +1774089111.612946,2.11,4,3992.50,49.26,1735.64,1928.81,0.00,63326.949698,72846.224499,5551487,1171813,0.014390,0.024749,34876770,22873485,0,0,35013,0,1,1 +1774089116.613122,1.20,4,3992.50,48.99,1746.31,1918.15,0.00,3518312935796.703125,3518312926286.283203,238,2,0.010757,0.026140,34877081,22873986,0,0,35016,0,1,1 +1774089121.617471,1.10,4,3992.50,49.03,1744.95,1919.51,0.00,3515380015060.383301,3515380015062.388672,21,0,0.009745,0.021602,34877338,22874393,0,0,35018,0,1,1 +1774089126.617309,26.70,4,3992.50,49.02,1741.75,1919.25,0.00,0.175006,0.000000,199,0,0.057757,107.773385,34881443,22886048,0,0,35021,0,1,1 +1774089131.616420,24.77,4,3992.50,48.80,1743.71,1910.65,0.00,3519062726505.584961,0.000000,70,0,0.044167,97.365166,34884599,22896373,0,0,35023,0,1,1 +1774089136.613279,2.01,4,3992.50,48.67,1748.81,1905.54,0.00,3520648953080.845703,0.000000,21,0,0.012568,0.024875,34884914,22896849,0,0,35026,0,1,1 +1774089141.616645,14.36,4,3992.50,48.56,1753.00,1901.40,0.00,63243.552189,72937.810240,5551260,1173422,40.038004,0.032598,34889414,22898628,0,0,35028,0,1,1 +1774089146.617760,1.45,4,3992.50,48.58,1752.39,1902.01,0.00,3517652574698.636719,3517652564999.968262,70,0,0.011838,0.024516,34889732,22899090,0,0,35031,0,1,1 +1774089151.617388,1.20,4,3992.50,48.58,1752.54,1901.84,0.00,0.126963,0.000000,199,0,0.009892,0.022939,34890006,22899528,0,0,35033,0,1,1 +1774089156.617107,1.36,4,3992.50,49.01,1735.34,1919.02,0.00,1.831939,0.000195,238,2,0.010084,0.024267,34890297,22899995,0,0,35036,0,1,1 +1774089161.617701,1.10,4,3992.50,48.74,1746.24,1908.17,0.00,3518019047286.954102,3518019047288.786133,199,0,0.008963,0.021047,34890555,22900398,0,0,35038,0,1,1 +1774089166.616497,1.05,4,3992.50,48.77,1745.04,1909.37,0.00,0.000000,0.000000,199,0,0.008941,0.021077,34890811,22900803,0,0,35041,0,1,1 +1774089171.613096,1.10,4,3992.50,48.58,1752.31,1902.09,0.00,63329.031140,73036.982352,5551262,1173779,0.009880,0.022409,34891070,22901215,0,0,35043,0,1,1 +1774089176.617395,1.00,4,3992.50,48.59,1752.10,1902.29,0.00,3515414441097.796875,3515414431404.958984,21,0,0.009708,0.023548,34891352,22901665,0,0,35046,0,1,1 +1774089181.616078,0.85,4,3992.50,48.59,1752.14,1902.27,0.00,1.538784,0.028328,237,246,0.006399,0.013563,34891530,22901933,0,0,35048,0,1,1 +1774089186.613784,0.90,4,3992.50,48.59,1752.16,1902.24,0.00,3520052668765.144531,3520052668766.480469,199,0,0.008951,0.021090,34891787,22902339,0,0,35051,0,1,1 +1774089191.617505,1.10,4,3992.50,48.60,1751.44,1902.96,0.00,63238.885229,72933.201670,5551262,1173969,0.009192,0.021692,34892052,22902756,0,0,35053,0,1,1 +1774089196.617430,1.05,4,3992.50,48.40,1759.34,1895.06,0.00,3518489863132.230957,3518489853429.219238,237,246,0.010559,0.025523,34892358,22903246,0,0,35056,0,1,1 +1774089201.613477,1.86,4,3992.50,48.40,1759.36,1895.04,0.00,63334.656539,73045.253545,5551262,1174021,0.008946,0.021079,34892614,22903650,0,0,35058,0,1,1 +1774089206.617422,11.03,4,3992.50,48.82,1741.21,1911.60,0.00,0.000000,36.034855,5551262,1174257,0.028266,40.050640,34894200,22908445,0,0,35061,0,1,1 +1774089211.615971,1.25,4,3992.50,48.81,1741.89,1910.87,0.00,3519458614262.207031,3519458604519.898926,238,2,0.008777,0.023388,34894465,22908887,0,0,35063,0,1,1 +1774089216.615400,1.15,4,3992.50,48.74,1744.35,1908.40,0.00,63291.341990,73032.058099,5551263,1174367,0.009194,0.025352,34894748,22909368,0,0,35066,0,1,1 +1774089221.613665,1.15,4,3992.50,48.60,1749.88,1902.88,0.00,4.110703,0.063694,5552037,1174653,0.007339,0.020328,34894973,22909756,0,0,35068,0,1,1 +1774089226.615404,1.10,4,3992.50,48.60,1749.94,1902.82,0.00,3517213850877.757812,3517213841147.589355,21,0,0.007367,0.020307,34895201,22910144,0,0,35071,0,1,1 +1774089231.616498,1.10,4,3992.50,48.64,1748.30,1904.46,0.00,0.048036,0.000000,70,0,0.008432,0.020898,34895447,22910543,0,0,35073,0,1,1 +1774089236.616874,1.25,4,3992.50,48.67,1747.32,1905.43,0.00,1.958641,0.000195,238,2,0.009045,0.022271,34895695,22910949,0,0,35076,0,1,1 +1774089241.615606,1.15,4,3992.50,48.67,1747.33,1905.42,0.00,3519330040390.266602,0.028132,237,246,0.009158,0.025371,34895975,22911431,0,0,35078,0,1,1 +1774089246.616603,1.05,4,3992.50,48.67,1747.10,1905.65,0.00,3517735900388.710938,3517735900390.220703,21,0,0.005555,0.015265,34896148,22911724,0,0,35081,0,1,1 +1774089251.612943,1.15,4,3992.50,48.48,1754.77,1897.98,0.00,0.048082,0.000000,70,0,0.007461,0.020429,34896382,22912118,0,0,35083,0,1,1 +1774089256.617308,1.10,4,3992.50,48.68,1746.84,1905.88,0.00,63234.986092,72964.180763,5552037,1174719,0.007455,0.020389,34896615,22912513,0,0,35086,0,1,1 +1774089261.617884,1.20,4,3992.50,48.68,1746.89,1905.87,0.00,3518032086416.604492,3518032076678.079590,238,2,0.009192,0.025337,34896898,22912993,0,0,35088,0,1,1 +1774089266.617002,1.05,4,3992.50,48.68,1746.89,1905.86,0.00,3519058040397.043457,3519058040398.875488,199,0,0.007371,0.020342,34897126,22913383,0,0,35091,0,1,1 +1774089271.617616,1.05,4,3992.50,48.68,1746.91,1905.84,0.00,1.363211,0.028317,237,246,0.007336,0.020293,34897351,22913769,0,0,35093,0,1,1 +1774089276.613514,37.37,4,3992.50,54.87,1511.88,2148.27,0.00,0.468842,3521325614248.575684,238,2,79.986479,0.059077,34905776,22916979,0,0,35096,0,1,1 +1774089281.631674,35.92,4,3992.50,84.52,408.68,3309.02,0.00,3505704818516.768066,3505704818518.593262,199,0,118.735300,0.056569,34917940,22920760,0,0,35098,0,1,1 +1774089286.618148,60.03,4,3992.50,59.21,1415.46,2318.03,0.00,3527980872715.590332,0.000000,70,0,116.882451,0.050032,34930157,22924083,0,0,35101,0,1,1 +1774089291.622300,59.62,4,3992.50,88.93,261.21,3481.70,0.00,0.000000,0.000000,70,0,118.670452,0.056064,34942520,22927850,0,0,35103,0,1,1 +1774089296.619469,59.08,4,3992.50,92.49,88.77,3621.20,0.00,0.000000,0.000000,70,0,118.919682,0.049185,34954803,22931488,0,0,35106,0,1,1 +1774089301.614762,60.60,4,3992.50,78.49,636.38,3072.95,0.00,0.000000,0.000000,70,0,119.191207,0.052450,34967092,22935278,0,0,35108,0,1,1 +1774089306.616926,59.85,4,3992.50,68.61,1039.77,2686.39,0.00,3516914310428.153320,0.000000,21,0,118.516637,0.057215,34979431,22939271,0,0,35111,0,1,1 +1774089311.617143,60.19,4,3992.50,55.35,1580.39,2167.11,0.00,64349.606176,73038.848684,5625289,1187255,119.362625,0.052213,34991840,22943064,0,0,35113,0,1,1 +1774089316.617382,16.95,4,3992.50,50.36,1719.41,1971.80,0.00,3518269195728.869141,3518269187039.616699,70,0,115.156675,0.060336,35003737,22947178,0,0,35116,0,1,1 +1774089321.613037,1.05,4,3992.50,49.67,1746.27,1944.86,0.00,1.960493,0.000195,238,2,0.010501,0.021740,35004023,22947602,0,0,35118,0,1,1 +1774089326.617460,17.73,4,3992.50,50.40,1717.59,1973.45,0.00,3515328221668.599609,0.028100,237,246,18.318002,0.107982,35010531,22952630,0,0,35121,0,1,1 +1774089331.613742,12.02,4,3992.50,50.47,1715.06,1975.94,0.00,3521054917442.126465,3521054917443.637695,21,0,21.947088,0.092055,35017518,22957810,0,0,35123,0,1,1 +1774089336.613455,1.75,4,3992.50,49.94,1735.55,1955.46,0.00,64393.597645,73046.802367,5626821,1188289,0.011074,0.025842,35017835,22958305,0,0,35126,0,1,1 +1774089341.617922,0.95,4,3992.50,49.35,1758.80,1932.16,0.00,3515296601710.465332,3515296593065.306152,199,0,0.008905,0.021043,35018089,22958709,0,0,35128,0,1,1 +1774089346.617113,0.80,4,3992.50,49.31,1760.26,1930.73,0.00,64400.286674,73055.126046,5626828,1188739,0.007092,0.016014,35018288,22959019,0,0,35131,0,1,1 +1774089351.616421,1.15,4,3992.50,49.00,1772.32,1918.64,0.00,3518924329713.667480,3518924321059.157227,70,0,0.008927,0.021065,35018543,22959423,0,0,35133,0,1,1 +1774089356.617716,1.71,4,3992.50,48.45,1794.11,1896.88,0.00,64376.353223,73024.855647,5626978,1189014,0.008748,0.020921,35018795,22959826,0,0,35136,0,1,1 +1774089361.617093,0.90,4,3992.50,48.48,1792.97,1898.05,0.00,3518875805436.697266,3518875796784.923340,21,0,0.010796,0.026165,35019109,22960328,0,0,35138,0,1,1 +1774089366.617307,0.95,4,3992.50,48.47,1793.31,1897.70,0.00,0.048045,0.000000,70,0,0.009014,0.021839,35019371,22960745,0,0,35141,0,1,1 +1774089371.618228,3.51,4,3992.50,87.38,327.27,3420.93,0.00,3517789468458.514160,0.000000,21,0,0.009000,0.021058,35019632,22961149,0,0,35143,0,1,1 +1774089376.618198,30.06,4,3992.50,95.67,10.78,3745.65,0.00,64570.386949,73047.791493,5639273,1192546,0.008956,0.021110,35019889,22961557,0,0,35146,0,1,1 +1774089381.617697,29.79,4,3992.50,53.05,1665.20,2077.22,0.00,3518789465219.679688,3518789456741.477539,21,0,0.009025,0.021137,35020151,22961967,0,0,35148,0,1,1 +1774089386.618183,30.12,4,3992.50,56.44,1531.54,2209.67,0.00,0.174983,0.000000,199,0,0.008905,0.021120,35020404,22962376,0,0,35151,0,1,1 +1774089391.618363,29.27,4,3992.50,74.17,827.04,2904.00,0.00,3518310368164.956055,0.000000,21,0,0.009644,0.023000,35020682,22962819,0,0,35153,0,1,1 +1774089396.616983,29.88,4,3992.50,73.30,862.33,2869.88,0.00,2.007390,0.000195,238,2,0.010105,0.024322,35020974,22963290,0,0,35156,0,1,1 +1774089401.618089,28.98,4,3992.50,48.50,1845.18,1899.02,0.00,3517659141373.546875,3517659141375.378418,199,0,0.008901,0.021095,35021227,22963697,0,0,35158,0,1,1 +1774089406.617675,0.80,4,3992.50,48.47,1834.90,1897.52,0.00,1.831988,0.000195,238,2,0.008940,0.021946,35021485,22964117,0,0,35161,0,1,1 +1774089411.617102,21.02,4,3992.50,49.34,1744.67,1931.74,0.00,3518840536976.053711,3518840536978.012207,70,0,0.040718,86.353202,35024092,22973671,0,0,35163,0,1,1 +1774089416.617614,28.34,4,3992.50,49.34,1737.04,1931.82,0.00,1.958588,0.000195,238,2,0.036309,118.766827,35026703,22986176,0,0,35166,0,1,1 +1774089421.612961,1.81,4,3992.50,48.82,1756.53,1911.56,0.00,65511.811744,73303.295063,5706859,1209366,0.010318,0.018188,35026962,22986541,0,0,35168,0,1,1 +1774089426.616193,12.59,4,3992.50,50.86,1676.82,1991.23,0.00,3516164451551.334473,3516164443772.626465,237,246,40.037657,0.030291,35031295,22988108,0,0,35171,0,1,1 +1774089431.614750,1.36,4,3992.50,49.59,1726.50,1941.48,0.00,0.468592,3519452601930.011230,238,2,0.011126,0.025516,35031602,22988578,0,0,35173,0,1,1 +1774089436.617015,10.98,4,3992.50,49.59,1723.95,1941.53,0.00,3516844261306.722656,3516844261308.728516,21,0,0.025548,40.061074,35033080,22993324,0,0,35176,0,1,1 +1774089441.616903,0.90,4,3992.50,49.58,1724.45,1941.03,0.00,1.538414,0.028321,237,246,0.007362,0.020296,35033307,22993710,0,0,35178,0,1,1 +1774089446.617685,1.00,4,3992.50,49.16,1740.85,1924.62,0.00,0.468384,3517886547769.653320,238,2,0.009179,0.025358,35033589,22994192,0,0,35181,0,1,1 +1774089451.613098,0.85,4,3992.50,49.14,1741.46,1924.02,0.00,3521668168272.509766,3521668168274.518555,21,0,0.007331,0.020302,35033813,22994577,0,0,35183,0,1,1 +1774089456.617082,0.80,4,3992.50,49.14,1741.48,1924.00,0.00,1.537154,0.028298,237,246,0.007364,0.020329,35034041,22994967,0,0,35186,0,1,1 +1774089461.616391,3.41,4,3992.50,79.96,540.31,3130.80,0.00,3518923139793.222168,3518923139794.684570,70,0,0.007325,0.020299,35034265,22995353,0,0,35188,0,1,1 +1774089466.617051,29.99,4,3992.50,70.70,965.59,2768.25,0.00,65639.200217,73302.408114,5717220,1212878,0.007285,0.020303,35034486,22995740,0,0,35191,0,1,1 +1774089471.618026,28.87,4,3992.50,82.39,508.05,3225.94,0.00,3517751185271.914551,3517751177609.238281,21,0,0.010158,0.026073,35034774,22996228,0,0,35193,0,1,1 +1774089476.617600,28.93,4,3992.50,90.32,198.39,3536.35,0.00,65922.693505,73323.542057,5734015,1217853,0.007495,0.020495,35035011,22996628,0,0,35196,0,1,1 +1774089481.618616,29.52,4,3992.50,93.87,55.64,3675.39,0.00,149.408815,2.652196,5742938,1220161,0.007531,0.020461,35035249,22997027,0,0,35198,0,1,1 +1774089486.617922,29.46,4,3992.50,95.91,0.00,3755.02,0.00,3518925379637.402344,3518925372382.963379,21,0,0.007380,0.020334,35035477,22997416,0,0,35201,0,1,1 +1774089491.617558,29.72,4,3992.50,91.70,161.93,3590.29,0.00,0.048050,0.000000,70,0,0.007350,0.020330,35035703,22997805,0,0,35203,0,1,1 +1774089496.615825,1.30,4,3992.50,48.20,1845.43,1887.00,0.00,3519657044582.349121,0.000000,21,0,0.008295,0.023480,35035959,22998243,0,0,35206,0,1,1 +1774089501.613415,37.61,4,3992.50,54.95,1530.18,2151.58,0.00,1.539121,0.028334,237,246,92.178746,0.069029,35045494,23002638,0,0,35208,0,1,1 +1774089506.616380,29.44,4,3992.50,55.14,1522.83,2158.86,0.00,0.468179,3516352265870.144531,238,2,122.296563,0.053498,35057916,23006288,0,0,35211,0,1,1 +1774089511.617058,28.56,4,3992.50,55.02,1537.44,2154.27,0.00,66369.053289,73315.612377,5764233,1225566,121.152134,0.054805,35070232,23009943,0,0,35213,0,1,1 +1774089516.616436,28.28,4,3992.50,55.00,1538.58,2153.20,0.00,4.162139,0.032133,5765011,1225822,120.179380,0.054507,35082345,23013841,0,0,35216,0,1,1 +1774089521.613864,28.47,4,3992.50,55.05,1535.96,2155.30,0.00,3520247566595.280273,0.220328,5764242,1225820,120.229462,0.051646,35094669,23017339,0,0,35218,0,1,1 +1774089526.617236,28.25,4,3992.50,55.05,1535.21,2155.34,0.00,3516065864787.797852,3516065857846.852051,70,0,119.687987,0.060883,35106948,23021413,0,0,35221,0,1,1 +1774089531.617554,28.51,4,3992.50,54.97,1537.52,2152.33,0.00,0.126945,0.000000,199,0,119.558405,0.053466,35119059,23025002,0,0,35223,0,1,1 +1774089536.612963,28.29,4,3992.50,54.79,1543.91,2145.32,0.00,66445.184087,73393.536110,5765022,1226232,119.273024,0.058099,35131049,23029041,0,0,35226,0,1,1 +1774089541.613671,10.57,4,3992.50,49.07,1767.70,1921.30,0.00,3517938900331.871094,3517938893389.546875,237,246,90.911989,0.040845,35140280,23032140,0,0,35228,0,1,1 +1774089546.616327,1.15,4,3992.50,48.85,1776.27,1912.74,0.00,3516569163033.486816,3516569163034.996094,21,0,0.008847,0.017410,35140514,23032482,0,0,35231,0,1,1 +1774089551.617835,19.92,4,3992.50,84.75,354.21,3318.33,0.00,1.537915,0.028312,237,246,18.127074,0.097566,35146744,23037115,0,0,35233,0,1,1 +1774089556.618539,44.42,4,3992.50,75.54,742.12,2957.66,0.00,0.468391,3517942118335.032715,238,2,20.712659,0.091399,35153041,23042019,0,0,35236,0,1,1 +1774089561.615135,31.38,4,3992.50,78.28,659.66,3064.67,0.00,66841.913577,73382.802522,5789876,1232404,1.420126,0.028535,35153722,23042766,0,0,35238,0,1,1 +1774089566.621403,59.26,4,3992.50,95.50,6.12,3738.96,0.00,3514032072363.112305,3514032065835.355957,237,246,1.886873,99.490937,35303232,23200711,0,0,35241,0,1,1 +1774089571.613858,59.83,4,3992.50,88.90,226.52,3480.53,0.00,3523754325114.276367,3523754325115.740234,70,0,2.083423,109.640576,35468004,23374927,0,0,35243,0,1,1 +1774089576.613583,29.56,4,3992.50,95.27,8.97,3729.98,0.00,3518631052379.006348,0.000000,21,0,0.004743,0.009060,35468130,23375109,0,0,35246,0,1,1 +1774089581.617828,42.62,4,3992.50,48.70,1822.84,1906.55,0.00,67469.379113,73485.468086,5846152,1243270,40.039106,0.047063,35472744,23377331,0,0,35248,0,1,1 +1774089586.616417,1.05,4,3992.50,48.37,1831.67,1893.90,0.00,11.467982,0.036729,5847405,1243544,0.006308,0.013843,35472909,23377583,0,0,35251,0,1,1 +1774089591.614970,0.80,4,3992.50,48.27,1835.20,1889.95,0.00,0.157858,0.099541,5847413,1243552,0.009017,0.021180,35473171,23377994,0,0,35253,0,1,1 +1774089596.617438,0.90,4,3992.50,48.25,1835.68,1888.93,0.00,3516701578078.757812,3516701572072.011719,21,0,0.009807,0.023578,35473452,23378446,0,0,35256,0,1,1 +1774089601.613049,0.95,4,3992.50,48.21,1833.73,1887.48,0.00,0.000000,0.000000,21,0,0.009875,0.023643,35473737,23378900,0,0,35258,0,1,1 +1774089606.612952,0.85,4,3992.50,48.16,1833.27,1885.52,0.00,67542.099931,73549.450638,5847616,1243577,0.008951,0.021072,35473994,23379305,0,0,35261,0,1,1 +1774089611.612977,0.85,4,3992.50,48.16,1832.86,1885.52,0.00,0.148437,0.362108,5847625,1243932,0.008964,0.021093,35474252,23379711,0,0,35263,0,1,1 +1774089616.617941,0.95,4,3992.50,48.12,1833.22,1884.10,0.00,3514947689677.192383,3514947683675.654297,70,0,0.008917,0.021051,35474507,23380116,0,0,35266,0,1,1 +1774089621.617603,0.85,4,3992.50,48.10,1834.01,1883.05,0.00,0.126962,0.000000,199,0,0.010584,0.025550,35474814,23380608,0,0,35268,0,1,1 +1774089626.615042,0.90,4,3992.50,48.09,1833.86,1882.92,0.00,67571.907509,73586.234232,5846883,1243833,0.009160,0.021742,35475076,23381027,0,0,35271,0,1,1 +1774089631.617118,0.75,4,3992.50,48.10,1833.28,1883.39,0.00,4.157552,0.065598,5847659,1244123,0.009005,0.021732,35475337,23381438,0,0,35273,0,1,1 +1774089636.617286,0.75,4,3992.50,48.10,1833.06,1883.29,0.00,3518318756248.441895,3518318750241.618164,70,0,0.008926,0.021071,35475592,23381843,0,0,35276,0,1,1 +1774089641.612967,2.31,4,3992.50,70.18,948.63,2747.71,0.00,1.491621,0.028345,237,246,0.008934,0.021080,35475847,23382247,0,0,35278,0,1,1 +1774089646.614889,30.04,4,3992.50,72.17,899.36,2825.64,0.00,0.000000,0.000000,237,246,0.010111,0.024269,35476140,23382715,0,0,35281,0,1,1 +1774089651.618460,28.95,4,3992.50,96.40,0.00,3774.39,0.00,0.000000,0.000000,237,246,0.009661,0.023022,35476420,23383161,0,0,35283,0,1,1 +1774089656.625894,37.24,4,3992.50,94.41,55.68,3696.34,0.00,67884.744465,73470.938613,5875917,1252437,0.311995,27.313332,35500641,23409674,0,0,35286,0,1,1 +1774089661.618253,35.58,4,3992.50,91.20,164.49,3570.70,0.00,3523822192408.509766,3523822186806.785156,199,0,0.172584,13.218162,35513987,23424211,0,0,35288,0,1,1 +1774089666.617772,29.70,4,3992.50,92.95,115.44,3639.34,0.00,68316.295774,73609.629098,5906470,1257402,0.007363,0.020341,35514214,23424601,0,0,35291,0,1,1 +1774089671.617148,29.22,4,3992.50,49.03,1829.66,1919.49,0.00,162.176477,2.722215,5916595,1259979,0.007340,0.020311,35514439,23424988,0,0,35293,0,1,1 +1774089676.617415,0.85,4,3992.50,49.04,1811.58,1920.16,0.00,3518249420697.058594,3518249415562.110840,238,2,0.009180,0.025348,35514721,23425469,0,0,35296,0,1,1 +1774089681.617915,1.05,4,3992.50,49.05,1810.83,1920.45,0.00,68474.221969,73598.011630,5917938,1260233,0.007311,0.020319,35514944,23425857,0,0,35298,0,1,1 +1774089686.615873,0.80,4,3992.50,48.80,1820.44,1910.77,0.00,3519874165636.947266,3519874160510.552734,238,2,0.007327,0.020314,35515168,23426244,0,0,35301,0,1,1 +1774089691.617261,0.80,4,3992.50,48.68,1824.30,1906.11,0.00,68462.417485,73584.946740,5917962,1260236,0.007347,0.020321,35515394,23426632,0,0,35303,0,1,1 +1774089696.614002,1.10,4,3992.50,48.57,1826.38,1901.62,0.00,3520732063405.717773,3520732058280.257812,199,0,0.007367,0.021025,35515621,23427027,0,0,35306,0,1,1 +1774089701.617957,1.10,4,3992.50,48.58,1825.79,1902.12,0.00,1.830388,0.000195,238,2,0.009275,0.025471,35515911,23427518,0,0,35308,0,1,1 +1774089706.613045,0.90,4,3992.50,48.58,1825.83,1902.08,0.00,68549.767978,73678.116629,5918026,1260573,0.008102,0.021537,35516159,23427935,0,0,35311,0,1,1 +1774089711.617382,0.85,4,3992.50,48.58,1825.87,1902.00,0.00,3515387471741.101074,3515387471745.179688,5917254,1260330,0.007356,0.020278,35516386,23428321,0,0,35313,0,1,1 +1774089716.617421,0.80,4,3992.50,48.60,1824.90,1902.96,0.00,3518409836840.859375,3518409831713.506348,238,2,0.007349,0.020305,35516612,23428708,0,0,35316,0,1,1 +1774089721.616999,0.85,4,3992.50,48.54,1825.38,1900.28,0.00,3518734643298.109863,3518734643300.116699,21,0,0.008037,0.022173,35516859,23429128,0,0,35318,0,1,1 +1774089726.616460,30.36,4,3992.50,55.42,1511.79,2169.92,0.00,0.048052,0.000000,70,0,57.700695,0.049054,35523270,23431312,0,0,35321,0,1,1 +1774089731.617404,30.82,4,3992.50,81.98,465.64,3209.89,0.00,3517772619319.483398,0.000000,21,0,119.952257,0.042045,35535785,23434152,0,0,35323,0,1,1 +1774089736.618211,59.46,4,3992.50,83.80,434.64,3281.02,0.00,0.000000,0.000000,21,0,116.753947,0.047734,35548142,23437262,0,0,35326,0,1,1 +1774089741.613504,57.06,4,3992.50,89.96,151.63,3522.17,0.00,0.048092,0.000000,70,0,119.879782,0.028919,35560554,23439268,0,0,35328,0,1,0 +1774089746.616503,54.51,4,3992.50,89.70,163.41,3512.10,0.00,68726.533806,73565.657524,5936917,1264087,119.897567,0.037030,35572979,23441162,0,0,35331,0,1,0 +1774089751.614908,54.20,4,3992.50,89.97,152.27,3522.66,0.00,0.020319,0.001563,5936918,1264089,119.212092,0.053134,35585338,23444889,0,0,35333,0,1,0 +1774089756.616575,57.73,4,3992.50,90.45,133.64,3541.16,0.00,3517264277391.696777,3517264272549.842773,237,247,119.582659,0.044316,35597813,23447919,0,0,35336,0,1,1 +1774089761.616979,95.44,4,3992.50,44.28,1990.15,1733.82,0.00,3518153177821.204590,3518153177822.666504,70,0,118.708851,0.046573,35610124,23450374,0,0,35338,0,1,1 +1774089766.617061,47.76,4,3992.50,46.32,1874.45,1813.36,0.00,1.490308,0.028320,237,247,119.160223,0.034531,35622235,23452887,0,0,35341,0,1,1 +1774089771.616379,51.00,4,3992.50,42.40,2027.64,1660.21,0.00,68886.489847,73620.224493,5952572,1264516,14.623056,0.005961,35623735,23453273,0,0,35343,0,1,1 +1774089776.616416,32.25,4,3992.50,44.42,1948.43,1739.33,0.00,3518410535193.000488,3518410530459.946777,237,247,0.010903,0.021958,35623986,23453640,0,0,35346,0,1,1 +1774089781.618369,40.40,4,3992.50,46.61,1862.85,1824.84,0.00,3517064242665.472656,3517064242666.982422,21,0,16.131117,0.093950,35629604,23457940,0,0,35348,0,1,1 +1774089786.614496,30.01,4,3992.50,47.62,1822.99,1864.57,0.00,2.008391,0.000195,238,2,24.150185,0.114928,35637438,23463934,0,0,35351,0,1,1 +1774089791.615564,2.46,4,3992.50,47.21,1839.16,1848.43,0.00,0.000000,0.000000,238,2,0.009214,0.021070,35637692,23464339,0,0,35353,0,1,1 +1774089796.612946,2.61,4,3992.50,46.69,1859.65,1827.94,0.00,3520280769359.264160,3520280769361.272461,21,0,0.008286,0.020846,35637933,23464737,0,0,35356,0,1,1 +1774089801.617630,25.69,4,3992.50,46.94,1843.22,1837.73,0.00,68841.621155,73602.807842,5953818,1266288,0.050007,98.272086,35641234,23475613,0,0,35358,0,1,1 +1774089806.612961,27.64,4,3992.50,46.89,1837.71,1835.76,0.00,3521725649206.002441,3521725644435.900879,21,0,0.032262,106.862449,35643422,23486947,0,0,35361,0,1,1 +1774089811.612973,14.56,4,3992.50,46.60,1819.98,1824.30,0.00,0.000000,0.000000,21,0,40.073235,0.045703,35648180,23489320,0,0,35363,0,1,1 +1774089816.617881,1.65,4,3992.50,46.61,1819.50,1824.75,0.00,68872.596857,73744.681431,5965541,1267459,0.006864,0.011570,35648353,23489552,0,0,35366,0,1,1 +1774089821.617391,3.66,4,3992.50,61.15,1269.41,2394.13,0.00,3518782142458.472168,3518782137579.616699,237,247,0.009691,0.023392,35648628,23489986,0,0,35368,0,1,1 +1774089826.618008,31.11,4,3992.50,80.76,572.62,3161.94,0.00,0.000000,0.000000,237,247,0.006905,0.015424,35648823,23490287,0,0,35371,0,1,1 +1774089831.616320,30.92,4,3992.50,61.19,1335.55,2395.57,0.00,0.468615,3519625625257.967773,238,2,0.008954,0.021701,35649080,23490694,0,0,35373,0,1,1 +1774089836.636194,30.38,4,3992.50,95.91,4.77,3754.93,0.00,3504507412915.107422,0.028014,237,247,0.009154,0.021690,35649345,23491117,0,0,35376,0,1,1 +1774089841.614454,29.92,4,3992.50,79.63,614.28,3117.61,0.00,3533802121136.663086,3533802121138.003906,199,0,0.009005,0.021192,35649603,23491524,0,0,35378,0,1,1 +1774089846.614235,30.58,4,3992.50,62.31,1304.16,2439.46,0.00,69750.653307,73834.631175,6017108,1281187,0.009019,0.021142,35649865,23491934,0,0,35381,0,1,1 +1774089851.614052,29.94,4,3992.50,63.15,1273.46,2472.32,0.00,3518566029840.340332,3518566025755.056152,237,247,0.008975,0.021126,35650123,23492343,0,0,35383,0,1,1 +1774089856.612972,1.76,4,3992.50,46.88,1891.59,1835.44,0.00,3519197422389.648926,3519197422391.159180,21,0,0.008978,0.021140,35650381,23492753,0,0,35386,0,1,1 +1774089861.617120,1.50,4,3992.50,46.78,1895.23,1831.52,0.00,69853.681335,73773.153711,6027269,1283794,0.008944,0.021045,35650638,23493157,0,0,35388,0,1,1 +1774089866.612962,1.71,4,3992.50,46.60,1901.43,1824.57,0.00,3521365261940.697754,3521365258014.661133,70,0,0.009658,0.023007,35650916,23493599,0,0,35391,0,1,1 +1774089871.613031,2.06,4,3992.50,46.53,1903.50,1821.64,0.00,1.490311,0.028320,237,247,0.010141,0.024263,35651212,23494066,0,0,35393,0,1,1 +1774089876.617215,2.20,4,3992.50,46.30,1911.93,1812.90,0.00,69856.501548,73772.653200,6028095,1284076,0.008931,0.021054,35651468,23494471,0,0,35396,0,1,1 +1774089881.616960,2.06,4,3992.50,46.33,1908.67,1813.91,0.00,3518616518742.562988,3518616514822.437988,238,2,0.008939,0.021063,35651724,23494875,0,0,35398,0,1,1 +1774089886.617541,4.04,4,3992.50,46.39,1868.84,1816.30,0.00,69917.318138,73826.188098,6038336,1284189,0.016760,3.814222,35652486,23495967,0,0,35401,0,1,1 +1774089891.617180,11.50,4,3992.50,45.78,1890.39,1792.29,0.00,3518691088521.524414,3518691084613.925293,21,0,0.024643,36.288126,35654001,23500028,0,0,35403,0,1,1 +1774089896.613340,2.26,4,3992.50,45.75,1891.11,1791.10,0.00,0.000000,0.000000,21,0,0.007342,0.020966,35654226,23500419,0,0,35406,0,1,1 +1774089901.616266,2.01,4,3992.50,45.67,1894.11,1788.08,0.00,0.000000,0.000000,21,0,0.009200,0.025350,35654510,23500901,0,0,35408,0,1,1 +1774089906.616424,1.80,4,3992.50,45.59,1897.14,1785.03,0.00,0.174994,0.000000,199,0,0.007382,0.020313,35654739,23501289,0,0,35411,0,1,1 +1774089911.617688,1.85,4,3992.50,45.63,1895.46,1786.69,0.00,3517547889762.411133,0.000000,70,0,0.007360,0.020291,35654966,23501675,0,0,35413,0,1,1 +1774089916.617065,1.86,4,3992.50,45.66,1894.51,1787.64,0.00,69941.772833,73884.280212,6039832,1284953,0.007350,0.020308,35655192,23502062,0,0,35416,0,1,1 +1774089921.617902,2.46,4,3992.50,45.68,1893.75,1788.41,0.00,3517848445307.594238,3517848441364.279785,238,2,0.007386,0.020323,35655421,23502450,0,0,35418,0,1,1 +1774089926.617406,2.86,4,3992.50,45.70,1893.02,1789.13,0.00,3518786437175.014160,3518786437176.973145,70,0,0.008583,0.023513,35655689,23502899,0,0,35421,0,1,1 +1774089931.616595,1.65,4,3992.50,45.70,1893.02,1789.12,0.00,1.490574,0.028325,237,247,0.008113,0.022319,35655942,23503329,0,0,35423,0,1,1 +1774089936.617658,2.76,4,3992.50,45.70,1893.04,1789.10,0.00,69916.744232,73859.453662,6039837,1285046,0.007491,0.020415,35656177,23503725,0,0,35426,0,1,1 +1774089941.613033,1.81,4,3992.50,45.69,1893.33,1788.77,0.00,3521694715718.550781,3521694711772.815430,70,0,0.007364,0.020323,35656404,23504112,0,0,35428,0,1,1 +1774089946.612948,1.90,4,3992.50,45.69,1893.38,1788.73,0.00,3518497033184.507812,0.000000,21,0,0.007324,0.020306,35656628,23504499,0,0,35431,0,1,1 +1774089951.613025,2.06,4,3992.50,45.67,1894.11,1788.03,0.00,69934.752653,73874.078353,6039968,1285070,0.007362,0.020295,35656855,23504885,0,0,35433,0,1,1 +1774089956.617397,33.17,4,3992.50,52.57,1623.91,2058.08,0.00,3515363563779.961914,3515363559842.011719,238,2,68.445966,0.060053,35664207,23508210,0,0,35436,0,1,1 +1774089961.613008,31.37,4,3992.50,52.49,1626.66,2055.28,0.00,3521528240859.366699,3521528240861.200684,199,0,118.670455,0.065872,35676323,23512598,0,0,35438,0,1,1 +1774089966.617343,29.26,4,3992.50,52.57,1629.31,2058.05,0.00,3515388937796.504883,0.000000,21,0,119.262683,0.054560,35688477,23516293,0,0,35441,0,1,1 +1774089971.617545,28.82,4,3992.50,52.32,1638.57,2048.30,0.00,0.000000,0.000000,21,0,118.959743,0.058445,35700564,23520514,0,0,35443,0,1,1 +1774089976.613117,28.51,4,3992.50,52.58,1627.59,2058.58,0.00,0.175155,0.000000,199,0,119.469002,0.052941,35712696,23524496,0,0,35446,0,1,1 +1774089981.613231,29.63,4,3992.50,52.51,1629.64,2055.86,0.00,3518357022008.184570,0.000000,70,0,118.964539,0.066698,35724895,23529010,0,0,35448,0,1,1 +1774089986.617385,29.83,4,3992.50,52.41,1632.84,2052.05,0.00,69878.314800,73814.183825,6040010,1285285,120.068921,0.064044,35737236,23533450,0,0,35451,0,1,1 +1774089991.615686,29.62,4,3992.50,52.41,1632.14,2051.96,0.00,3519632896211.286133,3519632892270.808105,70,0,118.604098,0.068355,35749342,23538381,0,0,35453,0,1,1 +1774089996.616627,18.27,4,3992.50,52.17,1641.46,2042.41,0.00,0.126929,0.000000,199,0,119.740681,0.061617,35761484,23543104,0,0,35456,0,1,1 +1774090001.615022,2.76,4,3992.50,46.21,1874.75,1809.10,0.00,1.832424,0.000195,238,2,3.216127,0.023528,35762115,23543662,0,0,35458,0,1,1 +1774090006.617908,24.72,4,3992.50,46.83,1850.07,1833.69,0.00,3516407806948.579102,3516407806950.584961,21,0,16.115193,0.095761,35767914,23547963,0,0,35461,0,1,1 +1774090011.617857,21.98,4,3992.50,48.70,1777.06,1906.61,0.00,0.000000,0.000000,21,0,22.329455,0.098898,35775282,23553371,0,0,35463,0,1,1 +1774090016.617819,4.42,4,3992.50,47.28,1832.39,1851.24,0.00,2.006851,0.000195,238,2,1.827370,0.030042,35776145,23554215,0,0,35466,0,1,1 +1774090021.617338,2.56,4,3992.50,46.93,1846.20,1837.48,0.00,3518775679210.020996,3518775679212.028320,21,0,0.008965,0.021064,35776403,23554619,0,0,35468,0,1,1 +1774090026.613026,1.76,4,3992.50,46.95,1845.33,1838.36,0.00,0.048088,0.000000,70,0,0.008967,0.021743,35776661,23555029,0,0,35471,0,1,1 +1774090031.617114,2.11,4,3992.50,46.89,1847.68,1836.00,0.00,69904.237037,73816.502712,6040409,1286762,0.009345,0.022108,35776931,23555455,0,0,35473,0,1,1 +1774090036.612973,4.27,4,3992.50,46.92,1846.71,1836.94,0.00,0.019547,0.187949,6040412,1286775,0.010185,0.025900,35777233,23555947,0,0,35476,0,1,1 +1774090041.613034,24.08,4,3992.50,47.36,1825.91,1854.12,0.00,0.021875,57.905737,6040419,1287431,0.053063,95.947846,35780969,23566271,0,0,35478,0,1,1 +1774090046.617824,27.42,4,3992.50,46.93,1837.91,1837.55,0.00,3515069553955.110840,3515069549983.440430,238,2,0.045430,109.059262,35784231,23577835,0,0,35481,0,1,1 +1774090051.616657,3.61,4,3992.50,46.96,1836.64,1838.78,0.00,3519258557375.810547,0.028132,237,247,0.005701,0.012579,35784384,23578077,0,0,35483,0,1,1 +1774090056.617012,15.06,4,3992.50,46.82,1843.08,1833.13,0.00,0.468424,3518188004368.620605,238,2,40.068181,0.034665,35789006,23579831,0,0,35486,0,1,1 +1774090061.617116,1.81,4,3992.50,46.77,1844.97,1831.24,0.00,69975.186160,74080.877821,6039826,1288194,0.011188,0.021576,35789300,23580252,0,0,35488,0,1,1 +1774090066.614422,4.06,4,3992.50,46.89,1840.31,1835.90,0.00,3520333799002.375000,3520333794896.392578,21,0,0.009670,0.023318,35789573,23580681,0,0,35491,0,1,1 +1774090071.617405,3.21,4,3992.50,46.76,1845.55,1830.66,0.00,0.048018,0.000000,70,0,0.011227,0.025481,35789873,23581157,0,0,35493,0,1,1 +1774090076.616536,2.66,4,3992.50,46.72,1847.16,1829.06,0.00,3519048804785.418457,0.000000,21,0,0.011555,0.023385,35790186,23581615,0,0,35496,0,1,1 +1774090081.613066,3.41,4,3992.50,46.61,1851.25,1824.97,0.00,0.048080,0.000000,70,0,0.009628,0.021999,35790446,23582021,0,0,35498,0,1,1 +1774090086.617682,1.95,4,3992.50,46.61,1851.15,1825.07,0.00,3515192054585.238281,0.000000,21,0,0.008956,0.021084,35790704,23582428,0,0,35501,0,1,1 +1774090091.617484,1.40,4,3992.50,46.61,1851.38,1824.85,0.00,0.048049,0.000000,70,0,0.008939,0.021707,35790960,23582836,0,0,35503,0,1,1 +1774090096.616890,1.50,4,3992.50,46.61,1851.43,1824.80,0.00,1.959022,0.000195,238,2,0.010152,0.024293,35791255,23583305,0,0,35506,0,1,1 +1774090101.613055,1.26,4,3992.50,46.53,1854.49,1821.70,0.00,3521138412185.981934,3521138412187.815430,199,0,0.009658,0.023006,35791534,23583747,0,0,35508,0,1,1 +1774090106.612952,1.26,4,3992.50,46.52,1854.91,1821.32,0.00,69984.377625,74084.485430,6040624,1288875,0.008951,0.021072,35791791,23584152,0,0,35511,0,1,1 +1774090111.612964,11.95,4,3992.50,47.26,1823.15,1850.45,0.00,3518429120400.162109,3518429116300.274414,70,0,0.034144,40.081295,35793835,23588888,0,0,35513,0,1,1 +1774090116.617311,1.55,4,3992.50,46.78,1842.16,1831.45,0.00,0.126843,0.000000,199,0,0.007293,0.019117,35794062,23589258,0,0,35516,0,1,1 +1774090121.612988,1.35,4,3992.50,46.69,1845.69,1827.91,0.00,3521481695318.267090,0.000000,21,0,0.007457,0.020376,35794296,23589648,0,0,35518,0,1,1 +1774090126.613040,1.15,4,3992.50,46.49,1853.52,1820.07,0.00,69978.330470,74120.394799,6039856,1288992,0.007362,0.020305,35794523,23590035,0,0,35521,0,1,1 +1774090131.616422,1.40,4,3992.50,46.48,1853.70,1819.91,0.00,3516059148638.979980,3516059144499.671875,21,0,0.008234,0.022790,35794775,23590467,0,0,35523,0,1,1 +1774090136.616524,2.41,4,3992.50,46.48,1853.91,1819.71,0.00,0.048046,0.000000,70,0,0.008290,0.022852,35795031,23590903,0,0,35526,0,1,1 +1774090141.616494,1.05,4,3992.50,46.51,1852.78,1820.84,0.00,69983.537808,74121.666143,6040630,1289251,0.007299,0.020296,35795253,23591289,0,0,35528,0,1,1 +1774090146.612947,1.36,4,3992.50,46.51,1852.80,1820.80,0.00,0.000000,2.007674,6040630,1289265,0.007418,0.020351,35795484,23591678,0,0,35531,0,1,1 +1774090151.613233,1.15,4,3992.50,46.49,1853.25,1820.36,0.00,3518235778304.486816,3518235774164.613281,70,0,0.007437,0.020357,35795717,23592068,0,0,35533,0,1,1 +1774090156.617396,1.25,4,3992.50,46.41,1856.65,1816.97,0.00,1.489092,0.028297,237,247,0.008409,0.023533,35795983,23592511,0,0,35536,0,1,1 +1774090161.616478,1.40,4,3992.50,46.41,1856.66,1816.96,0.00,0.468543,3519082957790.659668,238,2,0.008409,0.022985,35796246,23592957,0,0,35538,0,1,1 +1774090166.617579,1.66,4,3992.50,46.41,1856.46,1817.13,0.00,3517662693427.016602,3517662693429.022949,21,0,0.007356,0.020309,35796473,23593345,0,0,35541,0,1,1 +1774090171.617563,1.25,4,3992.50,46.41,1856.50,1817.13,0.00,0.048047,0.000000,70,0,0.007362,0.020296,35796700,23593731,0,0,35543,0,1,1 +1774090176.617098,1.50,4,3992.50,46.34,1859.13,1814.51,0.00,1.958971,0.000195,238,2,0.007350,0.020308,35796926,23594118,0,0,35546,0,1,1 +1774090181.616999,35.83,4,3992.50,53.27,1588.43,2085.52,0.00,3518507345400.751953,0.028126,237,247,74.517123,0.055297,35804958,23597041,0,0,35548,0,1,1 +1774090186.616381,29.64,4,3992.50,53.32,1593.83,2087.48,0.00,3518872122474.089844,3518872122475.600098,21,0,119.584196,0.036822,35817381,23599373,0,0,35551,0,1,1 +1774090191.612958,28.38,4,3992.50,53.36,1594.03,2089.30,0.00,0.000000,0.000000,21,0,118.248125,0.041332,35829613,23601851,0,0,35553,0,1,1 +1774090196.616943,28.39,4,3992.50,53.03,1607.06,2076.24,0.00,2.005238,0.000195,238,2,120.069811,0.052596,35841865,23605696,0,0,35556,0,1,1 +1774090201.614377,28.13,4,3992.50,53.01,1607.89,2075.43,0.00,70013.195960,74161.526954,6039902,1289252,118.223820,0.040170,35853883,23608445,0,0,35558,0,1,1 +1774090206.612971,28.43,4,3992.50,53.06,1605.89,2077.38,0.00,3519426510934.171387,3519426506788.810547,21,0,120.204081,0.045593,35866233,23611135,0,0,35561,0,1,1 +1774090211.616520,28.18,4,3992.50,53.14,1602.62,2080.70,0.00,69933.791668,74071.168514,6040681,1289628,118.281870,0.037213,35878436,23613529,0,0,35563,0,1,1 +1774090216.614972,28.43,4,3992.50,52.94,1610.75,2072.59,0.00,3519527354733.763184,3519527350590.655762,237,247,120.005781,0.031350,35890859,23615805,0,0,35566,0,1,1 +1774090221.617379,18.01,4,3992.50,52.93,1611.07,2072.35,0.00,69948.212547,74088.094688,6040683,1289652,116.309017,0.048363,35902910,23618911,0,0,35568,0,1,1 +1774090226.613846,1.96,4,3992.50,47.87,1809.01,1874.38,0.00,3520925461425.741211,3520925457282.271973,199,0,0.011049,0.022223,35903209,23619354,0,0,35571,0,1,1 +1774090231.617237,21.56,4,3992.50,48.12,1795.34,1884.07,0.00,1.830594,0.000195,238,2,14.099583,0.081198,35908198,23623130,0,0,35573,0,1,1 +1774090236.615866,18.53,4,3992.50,48.07,1797.18,1882.23,0.00,0.000000,0.000000,238,2,22.125123,0.094018,35915018,23628289,0,0,35576,0,1,1 +1774090241.617480,7.18,4,3992.50,47.42,1822.60,1856.76,0.00,3517302168436.833984,3517302168438.840332,21,0,4.038339,0.038035,35916608,23629650,0,0,35578,0,1,1 +1774090246.617319,1.26,4,3992.50,47.32,1826.73,1852.68,0.00,1.538428,0.028321,237,247,0.008926,0.021073,35916863,23630055,0,0,35581,0,1,1 +1774090251.617484,3.31,4,3992.50,47.71,1811.46,1867.95,0.00,69981.984652,74122.235009,6040844,1290936,0.008963,0.021061,35917121,23630459,0,0,35583,0,1,1 +1774090256.617799,17.52,4,3992.50,47.75,1809.62,1869.45,0.00,3518215588739.192383,30.668381,6040077,1290884,0.042859,68.318394,35919853,23638134,0,0,35586,0,1,1 +1774090261.617692,29.58,4,3992.50,47.96,1794.02,1877.58,0.00,3518512258436.392578,3518512254260.751465,238,2,0.036146,119.731358,35922350,23650726,0,0,35588,0,1,1 +1774090266.617238,6.07,4,3992.50,47.30,1818.20,1852.06,0.00,69990.344745,74301.840019,6040873,1292051,0.013638,17.092964,35922867,23652880,0,0,35591,0,1,1 +1774090271.612972,15.26,4,3992.50,48.66,1765.08,1905.18,0.00,3521441811235.558105,3521441806922.732910,70,0,40.109009,0.044562,35927646,23654985,0,0,35593,0,1,1 +1774090276.612953,1.30,4,3992.50,47.75,1800.77,1869.49,0.00,3518450438960.492188,0.000000,21,0,0.006639,0.015069,35927824,23655258,0,0,35596,0,1,1 +1774090281.617529,1.40,4,3992.50,47.33,1817.21,1853.05,0.00,0.048003,0.000000,70,0,0.008893,0.021030,35928077,23655661,0,0,35598,0,1,1 +1774090286.612947,1.05,4,3992.50,46.94,1832.49,1837.77,0.00,0.000000,0.000000,70,0,0.010576,0.026150,35928384,23656152,0,0,35601,0,1,1 +1774090291.617081,1.00,4,3992.50,46.74,1840.15,1830.09,0.00,69943.532458,74233.979152,6040225,1292067,0.009135,0.021703,35928645,23656570,0,0,35603,0,1,1 +1774090296.617768,1.96,4,3992.50,46.74,1840.31,1829.96,0.00,3517953773440.542480,3517953769147.138184,70,0,0.008895,0.021077,35928898,23656976,0,0,35606,0,1,1 +1774090301.612984,1.15,4,3992.50,46.76,1839.47,1830.78,0.00,3521806679815.031738,0.000000,21,0,0.008960,0.021113,35929155,23657382,0,0,35608,0,1,1 +1774090306.613030,1.40,4,3992.50,46.76,1839.62,1830.64,0.00,0.000000,0.000000,21,0,0.009538,0.022194,35929423,23657810,0,0,35611,0,1,1 +1774090311.613413,1.10,4,3992.50,46.75,1839.89,1830.37,0.00,0.174987,0.000000,199,0,0.009472,0.022398,35929698,23658243,0,0,35613,0,1,1 +1774090316.613722,1.20,4,3992.50,46.75,1839.98,1830.28,0.00,0.000000,0.000000,199,0,0.010297,0.024865,35929995,23658720,0,0,35616,0,1,1 +1774090321.617545,1.10,4,3992.50,46.75,1840.01,1830.25,0.00,0.000000,0.000000,199,0,0.009019,0.021086,35930257,23659127,0,0,35618,0,1,1 +1774090326.612959,1.05,4,3992.50,46.66,1843.36,1826.90,0.00,70065.642042,74399.217910,6040233,1292661,0.007076,0.016018,35930454,23659436,0,0,35621,0,1,1 +1774090331.617373,1.20,4,3992.50,46.67,1843.15,1827.11,0.00,3515334137270.145996,3515334132942.533203,238,2,0.010500,0.025260,35930760,23659921,0,0,35623,0,1,1 +1774090336.616418,3.42,4,3992.50,47.37,1815.23,1854.56,0.00,70012.918202,74345.258689,6040233,1292766,0.019976,8.841237,35931743,23661547,0,0,35626,0,1,1 +1774090341.617523,9.37,4,3992.50,46.90,1831.32,1836.39,0.00,3517659693176.011719,3517659688845.455566,238,2,0.025210,31.260382,35933285,23665233,0,0,35628,0,1,1 +1774090346.617415,1.75,4,3992.50,46.92,1830.88,1836.86,0.00,3518512804128.838379,3518512804130.796875,70,0,0.007387,0.020306,35933514,23665620,0,0,35631,0,1,1 +1774090351.617830,1.00,4,3992.50,46.93,1830.31,1837.42,0.00,0.000000,0.000000,70,0,0.007336,0.020764,35933739,23666008,0,0,35633,0,1,1 +1774090356.617398,1.05,4,3992.50,46.93,1830.34,1837.40,0.00,70007.582693,74375.654147,6040242,1293109,0.008736,0.024245,35934008,23666466,0,0,35636,0,1,1 +1774090361.612947,1.05,4,3992.50,46.95,1829.61,1838.12,0.00,3521571979573.856445,3521571975202.319336,21,0,0.007802,0.021607,35934247,23666878,0,0,35638,0,1,1 +1774090366.617301,0.95,4,3992.50,46.95,1829.62,1838.12,0.00,69940.665357,74304.525383,6040242,1293119,0.007356,0.020288,35934474,23667265,0,0,35641,0,1,1 +1774090371.612971,1.10,4,3992.50,46.97,1828.90,1838.84,0.00,4.112840,2.038875,6041016,1293384,0.007368,0.020344,35934701,23667653,0,0,35643,0,1,1 +1774090376.617270,1.95,4,3992.50,46.97,1828.69,1839.05,0.00,0.000000,0.008586,6041016,1293387,0.009114,0.018193,35934935,23667999,0,0,35646,0,1,1 +1774090381.613166,1.81,4,3992.50,46.97,1828.70,1839.04,0.00,3521326863654.539551,3521326859283.348145,238,2,0.006998,0.019137,35935155,23668367,0,0,35648,0,1,1 +1774090386.613052,0.95,4,3992.50,46.97,1828.71,1839.03,0.00,3518517558452.036133,3518517558453.868164,199,0,0.007505,0.020432,35935391,23668764,0,0,35651,0,1,1 +1774090391.615041,1.05,4,3992.50,46.97,1828.72,1839.02,0.00,3517037844238.298828,0.000000,21,0,0.007862,0.021537,35935636,23669173,0,0,35653,0,1,1 +1774090396.616979,1.10,4,3992.50,46.92,1830.62,1837.12,0.00,69978.576076,74342.562863,6041016,1293449,0.008719,0.024123,35935904,23669634,0,0,35656,0,1,1 +1774090401.612920,22.48,4,3992.50,53.59,1574.00,2098.30,0.00,3521295411690.919922,3521295407319.687012,238,2,38.444939,0.045914,35940316,23671849,0,0,35658,0,1,1 +1774090406.616099,36.90,4,3992.50,53.90,1569.02,2110.48,0.00,3516201496857.698730,3516201496859.529297,199,0,123.571131,0.079149,35953459,23677048,0,0,35661,0,1,1 +1774090411.613267,31.14,4,3992.50,53.22,1598.18,2083.71,0.00,70041.150986,74413.654482,6040247,1293359,120.624145,0.026095,35965396,23678614,0,0,35663,0,1,1 +1774090416.616412,30.12,4,3992.50,53.47,1588.34,2093.58,0.00,4.106694,0.054653,6041021,1293619,120.848208,0.027490,35977301,23680492,0,0,35666,0,1,1 +1774090421.612936,30.45,4,3992.50,53.32,1594.17,2087.73,0.00,0.000000,0.005863,6041021,1293630,119.701576,0.032786,35988989,23682566,0,0,35668,0,1,1 +1774090426.617127,29.44,4,3992.50,53.31,1594.68,2087.27,0.00,3515490387029.459473,0.022247,6040247,1293399,119.984082,0.035675,36000644,23684821,0,0,35671,0,1,1 +1774090431.616544,30.43,4,3992.50,53.31,1594.79,2087.06,0.00,3518847464646.749023,3518847460276.256348,70,0,119.074522,0.035730,36012221,23687288,0,0,35673,0,1,1 +1774090436.612931,29.80,4,3992.50,53.47,1588.61,2093.29,0.00,0.127045,0.000000,199,0,119.488109,0.031977,36023780,23689734,0,0,35676,0,1,1 +1774090441.616989,24.94,4,3992.50,53.49,1587.56,2094.43,0.00,1.362274,0.028297,237,247,119.433481,0.041732,36035280,23692276,0,0,35678,0,1,1 +1774090446.613709,3.57,4,3992.50,46.65,1855.36,1826.58,0.00,3520746630663.507324,3520746630665.018066,21,0,24.207560,0.021448,36037814,23693078,0,0,35681,0,1,1 +1774090451.616411,12.71,4,3992.50,47.42,1825.51,1856.48,0.00,0.000000,0.000000,21,0,8.066195,0.058441,36040829,23695404,0,0,35683,0,1,1 +1774090456.617459,24.05,4,3992.50,47.65,1816.26,1865.72,0.00,2.006416,0.000195,238,2,30.165260,0.134524,36050398,23702636,0,0,35686,0,1,1 +1774090461.617137,4.51,4,3992.50,47.82,1797.77,1872.22,0.00,3518663496947.151367,0.028127,237,247,2.030908,0.024302,36051429,23703451,0,0,35688,0,1,1 +1774090466.613395,2.11,4,3992.50,47.40,1814.12,1855.81,0.00,3521071989728.212402,3521071989729.723633,21,0,0.011484,0.027508,36051757,23703972,0,0,35691,0,1,1 +1774090471.612934,15.20,4,3992.50,47.71,1810.33,1867.79,0.00,0.048051,0.000000,70,0,0.035849,61.317033,36054004,23710997,0,0,35693,0,1,1 +1774090476.614809,30.55,4,3992.50,49.60,1728.02,1941.96,0.00,69981.026446,74511.075706,6041180,1295945,0.025181,118.128809,36055778,23723454,0,0,35696,0,1,1 +1774090481.617070,7.87,4,3992.50,46.83,1834.86,1833.36,0.00,3516846846756.623047,3516846842226.796875,199,0,0.013075,25.638921,36056525,23726403,0,0,35698,0,1,1 +1774090486.617822,13.66,4,3992.50,49.17,1743.03,1925.23,0.00,1.363174,0.028316,237,247,40.064060,0.040475,36061117,23728401,0,0,35701,0,1,1 +1774090491.616942,1.56,4,3992.50,48.15,1783.21,1885.01,0.00,70037.099470,74591.496347,6041315,1296455,0.009505,0.019770,36061369,23728765,0,0,35703,0,1,1 diff --git a/evaluation/data/pipeline_validation_run3/pipeline.log b/evaluation/data/pipeline_validation_run3/pipeline.log new file mode 100644 index 0000000..d49e64c --- /dev/null +++ b/evaluation/data/pipeline_validation_run3/pipeline.log @@ -0,0 +1,5063 @@ +2026/03/20 16:48:24 detector: Ensemble method=sead contamination=0.15 +2026/03/20 16:48:24 detector: SEAD η=0.100 λ=0.010 quantile_window=300 +2026/03/20 16:48:24 detector: auto-scaling enabled +2026/03/20 16:48:24 pipeline started – waiting for SIGINT / SIGTERM +2026/03/20 16:48:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:48:29 ───────────────────────────────────────────────── +2026/03/20 16:48:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:48:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:29.575536451Z"} +2026/03/20 16:48:34 [metric_collector] {"stage_name":"metric_collector","events_processed":4,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0.8,"last_update":"2026-03-20T16:48:29.575783075Z"} +2026/03/20 16:48:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":4,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:29.58529338Z"} +2026/03/20 16:48:34 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:29.719577456Z"} +2026/03/20 16:48:34 [transform_engine] {"stage_name":"transform_engine","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:29.719599367Z"} +2026/03/20 16:48:34 ───────────────────────────────────────────────── +2026/03/20 16:48:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:48:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:34.575670538Z"} +2026/03/20 16:48:39 [metric_collector] {"stage_name":"metric_collector","events_processed":9,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":1.8,"last_update":"2026-03-20T16:48:34.575964341Z"} +2026/03/20 16:48:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":6,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:34.584570094Z"} +2026/03/20 16:48:39 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:34.718794313Z"} +2026/03/20 16:48:39 [transform_engine] {"stage_name":"transform_engine","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:34.718743998Z"} +2026/03/20 16:48:39 ───────────────────────────────────────────────── +2026/03/20 16:48:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:48:44 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:39.719693062Z"} +2026/03/20 16:48:44 [transform_engine] {"stage_name":"transform_engine","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:39.719805904Z"} +2026/03/20 16:48:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:39.575531231Z"} +2026/03/20 16:48:44 [metric_collector] {"stage_name":"metric_collector","events_processed":14,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":2.8,"last_update":"2026-03-20T16:48:39.575968435Z"} +2026/03/20 16:48:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":8,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:39.585382545Z"} +2026/03/20 16:48:44 ───────────────────────────────────────────────── +2026/03/20 16:48:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:48:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:44.575860115Z"} +2026/03/20 16:48:49 [metric_collector] {"stage_name":"metric_collector","events_processed":19,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":3.8,"last_update":"2026-03-20T16:48:44.576518826Z"} +2026/03/20 16:48:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":10,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:44.585441162Z"} +2026/03/20 16:48:49 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:44.7196865Z"} +2026/03/20 16:48:49 [transform_engine] {"stage_name":"transform_engine","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:44.719741723Z"} +2026/03/20 16:48:49 ───────────────────────────────────────────────── +2026/03/20 16:48:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:48:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":12,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:49.584959564Z"} +2026/03/20 16:48:54 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:49.719508177Z"} +2026/03/20 16:48:54 [transform_engine] {"stage_name":"transform_engine","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:49.719397649Z"} +2026/03/20 16:48:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:49.575603758Z"} +2026/03/20 16:48:54 [metric_collector] {"stage_name":"metric_collector","events_processed":24,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":4.8,"last_update":"2026-03-20T16:48:49.576337161Z"} +2026/03/20 16:48:54 ───────────────────────────────────────────────── +2026/03/20 16:48:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:48:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:54.576105206Z"} +2026/03/20 16:48:59 [metric_collector] {"stage_name":"metric_collector","events_processed":29,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":5.8,"last_update":"2026-03-20T16:48:54.576092272Z"} +2026/03/20 16:48:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":12,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:54.576205004Z"} +2026/03/20 16:48:59 [detection_layer] {"stage_name":"detection_layer","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:54.719540066Z"} +2026/03/20 16:48:59 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":116.941905,"throughput_eps":0,"last_update":"2026-03-20T16:48:54.836510845Z"} +2026/03/20 16:48:59 ───────────────────────────────────────────────── +2026/03/20 16:49:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:04 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":116.941905,"throughput_eps":0,"last_update":"2026-03-20T16:48:59.719123877Z"} +2026/03/20 16:49:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:59.575532235Z"} +2026/03/20 16:49:04 [metric_collector] {"stage_name":"metric_collector","events_processed":34,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":6.8,"last_update":"2026-03-20T16:48:59.576019795Z"} +2026/03/20 16:49:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":16,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:48:59.587720891Z"} +2026/03/20 16:49:04 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.336335999999999,"throughput_eps":0,"last_update":"2026-03-20T16:48:59.71917319Z"} +2026/03/20 16:49:04 ───────────────────────────────────────────────── +2026/03/20 16:49:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:09 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":116.941905,"throughput_eps":0,"last_update":"2026-03-20T16:49:04.719482906Z"} +2026/03/20 16:49:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:04.575944069Z"} +2026/03/20 16:49:09 [metric_collector] {"stage_name":"metric_collector","events_processed":39,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":7.8,"last_update":"2026-03-20T16:49:04.576692821Z"} +2026/03/20 16:49:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":18,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:04.585060822Z"} +2026/03/20 16:49:09 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.336335999999999,"throughput_eps":0,"last_update":"2026-03-20T16:49:04.719456406Z"} +2026/03/20 16:49:09 ───────────────────────────────────────────────── +2026/03/20 16:49:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:09.57549729Z"} +2026/03/20 16:49:14 [metric_collector] {"stage_name":"metric_collector","events_processed":44,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":8.8,"last_update":"2026-03-20T16:49:09.575818847Z"} +2026/03/20 16:49:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":20,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:09.586163401Z"} +2026/03/20 16:49:14 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.336335999999999,"throughput_eps":0,"last_update":"2026-03-20T16:49:09.719551276Z"} +2026/03/20 16:49:14 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":116.941905,"throughput_eps":0,"last_update":"2026-03-20T16:49:09.719565242Z"} +2026/03/20 16:49:14 ───────────────────────────────────────────────── +2026/03/20 16:49:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:14.575493572Z"} +2026/03/20 16:49:19 [metric_collector] {"stage_name":"metric_collector","events_processed":49,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":9.8,"last_update":"2026-03-20T16:49:14.575775264Z"} +2026/03/20 16:49:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":22,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:14.585754651Z"} +2026/03/20 16:49:19 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.336335999999999,"throughput_eps":0,"last_update":"2026-03-20T16:49:14.719166012Z"} +2026/03/20 16:49:19 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":116.941905,"throughput_eps":0,"last_update":"2026-03-20T16:49:14.719183655Z"} +2026/03/20 16:49:19 ───────────────────────────────────────────────── +2026/03/20 16:49:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:24 [transform_engine] {"stage_name":"transform_engine","events_processed":1,"events_dropped":0,"avg_latency_ms":116.941905,"throughput_eps":0,"last_update":"2026-03-20T16:49:19.718985592Z"} +2026/03/20 16:49:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:19.575935993Z"} +2026/03/20 16:49:24 [metric_collector] {"stage_name":"metric_collector","events_processed":54,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":10.8,"last_update":"2026-03-20T16:49:19.576692923Z"} +2026/03/20 16:49:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":24,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:19.58465779Z"} +2026/03/20 16:49:24 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.336335999999999,"throughput_eps":0,"last_update":"2026-03-20T16:49:19.718970323Z"} +2026/03/20 16:49:24 ───────────────────────────────────────────────── +2026/03/20 16:49:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:29 [detection_layer] {"stage_name":"detection_layer","events_processed":1,"events_dropped":0,"avg_latency_ms":5.336335999999999,"throughput_eps":0,"last_update":"2026-03-20T16:49:24.719142683Z"} +2026/03/20 16:49:29 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":116.26926880000002,"throughput_eps":0,"last_update":"2026-03-20T16:49:24.832734852Z"} +2026/03/20 16:49:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:24.575946834Z"} +2026/03/20 16:49:29 [metric_collector] {"stage_name":"metric_collector","events_processed":59,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":11.8,"last_update":"2026-03-20T16:49:24.576294771Z"} +2026/03/20 16:49:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":26,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:24.584827262Z"} +2026/03/20 16:49:29 ───────────────────────────────────────────────── +2026/03/20 16:49:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:34 [metric_collector] {"stage_name":"metric_collector","events_processed":64,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":12.8,"last_update":"2026-03-20T16:49:29.57599864Z"} +2026/03/20 16:49:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":28,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:29.585887356Z"} +2026/03/20 16:49:34 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.6488819999999995,"throughput_eps":0,"last_update":"2026-03-20T16:49:29.71930467Z"} +2026/03/20 16:49:34 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":116.26926880000002,"throughput_eps":0,"last_update":"2026-03-20T16:49:29.719319738Z"} +2026/03/20 16:49:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:29.575502624Z"} +2026/03/20 16:49:34 ───────────────────────────────────────────────── +2026/03/20 16:49:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:34.575556739Z"} +2026/03/20 16:49:39 [metric_collector] {"stage_name":"metric_collector","events_processed":69,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":13.8,"last_update":"2026-03-20T16:49:34.575595172Z"} +2026/03/20 16:49:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":30,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:34.585426081Z"} +2026/03/20 16:49:39 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.6488819999999995,"throughput_eps":0,"last_update":"2026-03-20T16:49:34.719770576Z"} +2026/03/20 16:49:39 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":116.26926880000002,"throughput_eps":0,"last_update":"2026-03-20T16:49:34.718646894Z"} +2026/03/20 16:49:39 ───────────────────────────────────────────────── +2026/03/20 16:49:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":32,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:39.585836618Z"} +2026/03/20 16:49:44 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.6488819999999995,"throughput_eps":0,"last_update":"2026-03-20T16:49:39.719228675Z"} +2026/03/20 16:49:44 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":116.26926880000002,"throughput_eps":0,"last_update":"2026-03-20T16:49:39.719239665Z"} +2026/03/20 16:49:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:39.575768218Z"} +2026/03/20 16:49:44 [metric_collector] {"stage_name":"metric_collector","events_processed":74,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":14.8,"last_update":"2026-03-20T16:49:39.576147224Z"} +2026/03/20 16:49:44 ───────────────────────────────────────────────── +2026/03/20 16:49:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:44.575853244Z"} +2026/03/20 16:49:49 [metric_collector] {"stage_name":"metric_collector","events_processed":79,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":15.8,"last_update":"2026-03-20T16:49:44.576470551Z"} +2026/03/20 16:49:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":34,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:44.587258184Z"} +2026/03/20 16:49:49 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.6488819999999995,"throughput_eps":0,"last_update":"2026-03-20T16:49:44.719628298Z"} +2026/03/20 16:49:49 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":116.26926880000002,"throughput_eps":0,"last_update":"2026-03-20T16:49:44.719639449Z"} +2026/03/20 16:49:49 ───────────────────────────────────────────────── +2026/03/20 16:49:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:49.575591094Z"} +2026/03/20 16:49:54 [metric_collector] {"stage_name":"metric_collector","events_processed":84,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":16.8,"last_update":"2026-03-20T16:49:49.575687335Z"} +2026/03/20 16:49:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":36,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:49.586302415Z"} +2026/03/20 16:49:54 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.6488819999999995,"throughput_eps":0,"last_update":"2026-03-20T16:49:49.719602785Z"} +2026/03/20 16:49:54 [transform_engine] {"stage_name":"transform_engine","events_processed":2,"events_dropped":0,"avg_latency_ms":116.26926880000002,"throughput_eps":0,"last_update":"2026-03-20T16:49:49.719615039Z"} +2026/03/20 16:49:54 ───────────────────────────────────────────────── +2026/03/20 16:49:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:49:59 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":106.24250644000003,"throughput_eps":0,"last_update":"2026-03-20T16:49:54.785284587Z"} +2026/03/20 16:49:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:54.575806051Z"} +2026/03/20 16:49:59 [metric_collector] {"stage_name":"metric_collector","events_processed":89,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":17.8,"last_update":"2026-03-20T16:49:54.576158607Z"} +2026/03/20 16:49:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":38,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:54.587900078Z"} +2026/03/20 16:49:59 [detection_layer] {"stage_name":"detection_layer","events_processed":2,"events_dropped":0,"avg_latency_ms":4.6488819999999995,"throughput_eps":0,"last_update":"2026-03-20T16:49:54.719139241Z"} +2026/03/20 16:49:59 ───────────────────────────────────────────────── +2026/03/20 16:50:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:04 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":106.24250644000003,"throughput_eps":0,"last_update":"2026-03-20T16:49:59.719235596Z"} +2026/03/20 16:50:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:59.575955204Z"} +2026/03/20 16:50:04 [metric_collector] {"stage_name":"metric_collector","events_processed":94,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":18.8,"last_update":"2026-03-20T16:49:59.576567402Z"} +2026/03/20 16:50:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":40,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:49:59.586833807Z"} +2026/03/20 16:50:04 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.5925302,"throughput_eps":0,"last_update":"2026-03-20T16:49:59.719209567Z"} +2026/03/20 16:50:04 ───────────────────────────────────────────────── +2026/03/20 16:50:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:09 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":106.24250644000003,"throughput_eps":0,"last_update":"2026-03-20T16:50:04.718781386Z"} +2026/03/20 16:50:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:04.575691504Z"} +2026/03/20 16:50:09 [metric_collector] {"stage_name":"metric_collector","events_processed":99,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":19.8,"last_update":"2026-03-20T16:50:04.576062586Z"} +2026/03/20 16:50:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":42,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:04.587571303Z"} +2026/03/20 16:50:09 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.5925302,"throughput_eps":0,"last_update":"2026-03-20T16:50:04.718882588Z"} +2026/03/20 16:50:09 ───────────────────────────────────────────────── +2026/03/20 16:50:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:14 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":106.24250644000003,"throughput_eps":0,"last_update":"2026-03-20T16:50:09.719720708Z"} +2026/03/20 16:50:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:09.57552283Z"} +2026/03/20 16:50:14 [metric_collector] {"stage_name":"metric_collector","events_processed":104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":20.8,"last_update":"2026-03-20T16:50:09.575517259Z"} +2026/03/20 16:50:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":44,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:09.586505556Z"} +2026/03/20 16:50:14 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.5925302,"throughput_eps":0,"last_update":"2026-03-20T16:50:09.719680411Z"} +2026/03/20 16:50:14 ───────────────────────────────────────────────── +2026/03/20 16:50:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:19 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.5925302,"throughput_eps":0,"last_update":"2026-03-20T16:50:14.719565237Z"} +2026/03/20 16:50:19 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":106.24250644000003,"throughput_eps":0,"last_update":"2026-03-20T16:50:14.719448135Z"} +2026/03/20 16:50:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:14.575595401Z"} +2026/03/20 16:50:19 [metric_collector] {"stage_name":"metric_collector","events_processed":109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":21.8,"last_update":"2026-03-20T16:50:14.575629916Z"} +2026/03/20 16:50:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":46,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:14.585055922Z"} +2026/03/20 16:50:19 ───────────────────────────────────────────────── +2026/03/20 16:50:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:19.57563212Z"} +2026/03/20 16:50:24 [metric_collector] {"stage_name":"metric_collector","events_processed":114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":22.8,"last_update":"2026-03-20T16:50:19.575936035Z"} +2026/03/20 16:50:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":48,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:19.585837934Z"} +2026/03/20 16:50:24 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.5925302,"throughput_eps":0,"last_update":"2026-03-20T16:50:19.719195087Z"} +2026/03/20 16:50:24 [transform_engine] {"stage_name":"transform_engine","events_processed":3,"events_dropped":0,"avg_latency_ms":106.24250644000003,"throughput_eps":0,"last_update":"2026-03-20T16:50:19.719237988Z"} +2026/03/20 16:50:24 ───────────────────────────────────────────────── +2026/03/20 16:50:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:29 [detection_layer] {"stage_name":"detection_layer","events_processed":3,"events_dropped":0,"avg_latency_ms":4.5925302,"throughput_eps":0,"last_update":"2026-03-20T16:50:24.719198455Z"} +2026/03/20 16:50:29 [transform_engine] {"stage_name":"transform_engine","events_processed":4,"events_dropped":0,"avg_latency_ms":107.08107695200003,"throughput_eps":0,"last_update":"2026-03-20T16:50:24.829228097Z"} +2026/03/20 16:50:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:24.575678131Z"} +2026/03/20 16:50:29 [metric_collector] {"stage_name":"metric_collector","events_processed":119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":23.8,"last_update":"2026-03-20T16:50:24.576015419Z"} +2026/03/20 16:50:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":50,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:24.585537732Z"} +2026/03/20 16:50:29 ───────────────────────────────────────────────── +2026/03/20 16:50:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:29.575676984Z"} +2026/03/20 16:50:34 [metric_collector] {"stage_name":"metric_collector","events_processed":124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":24.8,"last_update":"2026-03-20T16:50:29.576021606Z"} +2026/03/20 16:50:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":52,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:29.586575203Z"} +2026/03/20 16:50:34 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.74883116,"throughput_eps":0,"last_update":"2026-03-20T16:50:29.718849969Z"} +2026/03/20 16:50:34 [transform_engine] {"stage_name":"transform_engine","events_processed":4,"events_dropped":0,"avg_latency_ms":107.08107695200003,"throughput_eps":0,"last_update":"2026-03-20T16:50:29.718863625Z"} +2026/03/20 16:50:34 ───────────────────────────────────────────────── +2026/03/20 16:50:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":54,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:34.585291978Z"} +2026/03/20 16:50:39 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.74883116,"throughput_eps":0,"last_update":"2026-03-20T16:50:34.719545535Z"} +2026/03/20 16:50:39 [transform_engine] {"stage_name":"transform_engine","events_processed":4,"events_dropped":0,"avg_latency_ms":107.08107695200003,"throughput_eps":0,"last_update":"2026-03-20T16:50:34.71955884Z"} +2026/03/20 16:50:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:34.575538012Z"} +2026/03/20 16:50:39 [metric_collector] {"stage_name":"metric_collector","events_processed":129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":25.8,"last_update":"2026-03-20T16:50:34.575906299Z"} +2026/03/20 16:50:39 ───────────────────────────────────────────────── +2026/03/20 16:50:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:44 [transform_engine] {"stage_name":"transform_engine","events_processed":4,"events_dropped":0,"avg_latency_ms":107.08107695200003,"throughput_eps":0,"last_update":"2026-03-20T16:50:39.718729594Z"} +2026/03/20 16:50:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:39.575534169Z"} +2026/03/20 16:50:44 [metric_collector] {"stage_name":"metric_collector","events_processed":134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":26.8,"last_update":"2026-03-20T16:50:39.575770838Z"} +2026/03/20 16:50:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":56,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:39.585606031Z"} +2026/03/20 16:50:44 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.74883116,"throughput_eps":0,"last_update":"2026-03-20T16:50:39.718850903Z"} +2026/03/20 16:50:44 ───────────────────────────────────────────────── +2026/03/20 16:50:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:49 [metric_collector] {"stage_name":"metric_collector","events_processed":139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":27.8,"last_update":"2026-03-20T16:50:44.576706484Z"} +2026/03/20 16:50:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":58,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:44.586733943Z"} +2026/03/20 16:50:49 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.74883116,"throughput_eps":0,"last_update":"2026-03-20T16:50:44.718945104Z"} +2026/03/20 16:50:49 [transform_engine] {"stage_name":"transform_engine","events_processed":4,"events_dropped":0,"avg_latency_ms":107.08107695200003,"throughput_eps":0,"last_update":"2026-03-20T16:50:44.718955274Z"} +2026/03/20 16:50:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:44.575932649Z"} +2026/03/20 16:50:49 ───────────────────────────────────────────────── +2026/03/20 16:50:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:49.576000945Z"} +2026/03/20 16:50:54 [metric_collector] {"stage_name":"metric_collector","events_processed":144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":28.8,"last_update":"2026-03-20T16:50:49.576370875Z"} +2026/03/20 16:50:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":60,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:49.584641882Z"} +2026/03/20 16:50:54 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.74883116,"throughput_eps":0,"last_update":"2026-03-20T16:50:49.718788081Z"} +2026/03/20 16:50:54 [transform_engine] {"stage_name":"transform_engine","events_processed":4,"events_dropped":0,"avg_latency_ms":107.08107695200003,"throughput_eps":0,"last_update":"2026-03-20T16:50:49.718801366Z"} +2026/03/20 16:50:54 ───────────────────────────────────────────────── +2026/03/20 16:50:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:50:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:54.575959145Z"} +2026/03/20 16:50:59 [metric_collector] {"stage_name":"metric_collector","events_processed":149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":29.8,"last_update":"2026-03-20T16:50:54.576295311Z"} +2026/03/20 16:50:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":62,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:54.584911986Z"} +2026/03/20 16:50:59 [detection_layer] {"stage_name":"detection_layer","events_processed":4,"events_dropped":0,"avg_latency_ms":4.74883116,"throughput_eps":0,"last_update":"2026-03-20T16:50:54.719214694Z"} +2026/03/20 16:50:59 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":108.45506696160004,"throughput_eps":0,"last_update":"2026-03-20T16:50:54.833174689Z"} +2026/03/20 16:50:59 ───────────────────────────────────────────────── +2026/03/20 16:51:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:04 [metric_collector] {"stage_name":"metric_collector","events_processed":154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":30.8,"last_update":"2026-03-20T16:50:59.575604839Z"} +2026/03/20 16:51:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":64,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:59.585501618Z"} +2026/03/20 16:51:04 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":4.904423528000001,"throughput_eps":0,"last_update":"2026-03-20T16:50:59.719794733Z"} +2026/03/20 16:51:04 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":108.45506696160004,"throughput_eps":0,"last_update":"2026-03-20T16:50:59.718697826Z"} +2026/03/20 16:51:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:50:59.575497305Z"} +2026/03/20 16:51:04 ───────────────────────────────────────────────── +2026/03/20 16:51:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:04.575876206Z"} +2026/03/20 16:51:09 [metric_collector] {"stage_name":"metric_collector","events_processed":159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":31.8,"last_update":"2026-03-20T16:51:04.576536647Z"} +2026/03/20 16:51:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":66,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:04.585613267Z"} +2026/03/20 16:51:09 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":4.904423528000001,"throughput_eps":0,"last_update":"2026-03-20T16:51:04.718910449Z"} +2026/03/20 16:51:09 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":108.45506696160004,"throughput_eps":0,"last_update":"2026-03-20T16:51:04.718864632Z"} +2026/03/20 16:51:09 ───────────────────────────────────────────────── +2026/03/20 16:51:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:14 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":108.45506696160004,"throughput_eps":0,"last_update":"2026-03-20T16:51:09.719568995Z"} +2026/03/20 16:51:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:09.575865991Z"} +2026/03/20 16:51:14 [metric_collector] {"stage_name":"metric_collector","events_processed":164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":32.8,"last_update":"2026-03-20T16:51:09.576268643Z"} +2026/03/20 16:51:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":68,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:09.586227977Z"} +2026/03/20 16:51:14 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":4.904423528000001,"throughput_eps":0,"last_update":"2026-03-20T16:51:09.719469807Z"} +2026/03/20 16:51:14 ───────────────────────────────────────────────── +2026/03/20 16:51:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":70,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:14.585563722Z"} +2026/03/20 16:51:19 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":4.904423528000001,"throughput_eps":0,"last_update":"2026-03-20T16:51:14.718823028Z"} +2026/03/20 16:51:19 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":108.45506696160004,"throughput_eps":0,"last_update":"2026-03-20T16:51:14.718796428Z"} +2026/03/20 16:51:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:14.575802631Z"} +2026/03/20 16:51:19 [metric_collector] {"stage_name":"metric_collector","events_processed":169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":33.8,"last_update":"2026-03-20T16:51:14.576032186Z"} +2026/03/20 16:51:19 ───────────────────────────────────────────────── +2026/03/20 16:51:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:19.576239943Z"} +2026/03/20 16:51:24 [metric_collector] {"stage_name":"metric_collector","events_processed":174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":34.8,"last_update":"2026-03-20T16:51:19.576857783Z"} +2026/03/20 16:51:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":72,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:19.585763315Z"} +2026/03/20 16:51:24 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":4.904423528000001,"throughput_eps":0,"last_update":"2026-03-20T16:51:19.719098538Z"} +2026/03/20 16:51:24 [transform_engine] {"stage_name":"transform_engine","events_processed":5,"events_dropped":0,"avg_latency_ms":108.45506696160004,"throughput_eps":0,"last_update":"2026-03-20T16:51:19.71898359Z"} +2026/03/20 16:51:24 ───────────────────────────────────────────────── +2026/03/20 16:51:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:29 [metric_collector] {"stage_name":"metric_collector","events_processed":179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":35.8,"last_update":"2026-03-20T16:51:24.5759187Z"} +2026/03/20 16:51:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":74,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:24.586973626Z"} +2026/03/20 16:51:29 [detection_layer] {"stage_name":"detection_layer","events_processed":5,"events_dropped":0,"avg_latency_ms":4.904423528000001,"throughput_eps":0,"last_update":"2026-03-20T16:51:24.719256537Z"} +2026/03/20 16:51:29 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":110.37128296928003,"throughput_eps":0,"last_update":"2026-03-20T16:51:24.837440646Z"} +2026/03/20 16:51:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:24.575527129Z"} +2026/03/20 16:51:29 ───────────────────────────────────────────────── +2026/03/20 16:51:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:29.57587163Z"} +2026/03/20 16:51:34 [metric_collector] {"stage_name":"metric_collector","events_processed":184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":36.8,"last_update":"2026-03-20T16:51:29.57621459Z"} +2026/03/20 16:51:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":76,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:29.585142618Z"} +2026/03/20 16:51:34 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":5.3549208224000004,"throughput_eps":0,"last_update":"2026-03-20T16:51:29.719529348Z"} +2026/03/20 16:51:34 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":110.37128296928003,"throughput_eps":0,"last_update":"2026-03-20T16:51:29.719380996Z"} +2026/03/20 16:51:34 ───────────────────────────────────────────────── +2026/03/20 16:51:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:34.575817233Z"} +2026/03/20 16:51:39 [metric_collector] {"stage_name":"metric_collector","events_processed":189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":37.8,"last_update":"2026-03-20T16:51:34.576144453Z"} +2026/03/20 16:51:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":78,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:34.587217329Z"} +2026/03/20 16:51:39 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":5.3549208224000004,"throughput_eps":0,"last_update":"2026-03-20T16:51:34.719528386Z"} +2026/03/20 16:51:39 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":110.37128296928003,"throughput_eps":0,"last_update":"2026-03-20T16:51:34.719534618Z"} +2026/03/20 16:51:39 ───────────────────────────────────────────────── +2026/03/20 16:51:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:44 [metric_collector] {"stage_name":"metric_collector","events_processed":194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":38.8,"last_update":"2026-03-20T16:51:39.576155628Z"} +2026/03/20 16:51:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":80,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:39.586343099Z"} +2026/03/20 16:51:44 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":5.3549208224000004,"throughput_eps":0,"last_update":"2026-03-20T16:51:39.719745355Z"} +2026/03/20 16:51:44 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":110.37128296928003,"throughput_eps":0,"last_update":"2026-03-20T16:51:39.719759753Z"} +2026/03/20 16:51:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:39.575753866Z"} +2026/03/20 16:51:44 ───────────────────────────────────────────────── +2026/03/20 16:51:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:44.575792361Z"} +2026/03/20 16:51:49 [metric_collector] {"stage_name":"metric_collector","events_processed":199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":39.8,"last_update":"2026-03-20T16:51:44.576296226Z"} +2026/03/20 16:51:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":82,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:44.584910616Z"} +2026/03/20 16:51:49 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":5.3549208224000004,"throughput_eps":0,"last_update":"2026-03-20T16:51:44.71915501Z"} +2026/03/20 16:51:49 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":110.37128296928003,"throughput_eps":0,"last_update":"2026-03-20T16:51:44.719166973Z"} +2026/03/20 16:51:49 ───────────────────────────────────────────────── +2026/03/20 16:51:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":84,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:49.587098172Z"} +2026/03/20 16:51:54 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":5.3549208224000004,"throughput_eps":0,"last_update":"2026-03-20T16:51:49.719504342Z"} +2026/03/20 16:51:54 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":110.37128296928003,"throughput_eps":0,"last_update":"2026-03-20T16:51:49.719528368Z"} +2026/03/20 16:51:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:49.575813006Z"} +2026/03/20 16:51:54 [metric_collector] {"stage_name":"metric_collector","events_processed":204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":40.8,"last_update":"2026-03-20T16:51:49.575708538Z"} +2026/03/20 16:51:54 ───────────────────────────────────────────────── +2026/03/20 16:51:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:51:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:54.575847329Z"} +2026/03/20 16:51:59 [metric_collector] {"stage_name":"metric_collector","events_processed":209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":41.8,"last_update":"2026-03-20T16:51:54.57607407Z"} +2026/03/20 16:51:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":86,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:54.585249137Z"} +2026/03/20 16:51:59 [detection_layer] {"stage_name":"detection_layer","events_processed":6,"events_dropped":0,"avg_latency_ms":5.3549208224000004,"throughput_eps":0,"last_update":"2026-03-20T16:51:54.719640361Z"} +2026/03/20 16:51:59 [transform_engine] {"stage_name":"transform_engine","events_processed":6,"events_dropped":0,"avg_latency_ms":110.37128296928003,"throughput_eps":0,"last_update":"2026-03-20T16:51:54.719653957Z"} +2026/03/20 16:51:59 ───────────────────────────────────────────────── +2026/03/20 16:52:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:04 [transform_engine] {"stage_name":"transform_engine","events_processed":7,"events_dropped":0,"avg_latency_ms":100.96300297542402,"throughput_eps":0,"last_update":"2026-03-20T16:51:59.719323264Z"} +2026/03/20 16:52:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:59.576011202Z"} +2026/03/20 16:52:04 [metric_collector] {"stage_name":"metric_collector","events_processed":214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":42.8,"last_update":"2026-03-20T16:51:59.576553881Z"} +2026/03/20 16:52:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":88,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:51:59.585084197Z"} +2026/03/20 16:52:04 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.664770657920001,"throughput_eps":0,"last_update":"2026-03-20T16:51:59.719416651Z"} +2026/03/20 16:52:04 ───────────────────────────────────────────────── +2026/03/20 16:52:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:04.575725964Z"} +2026/03/20 16:52:09 [metric_collector] {"stage_name":"metric_collector","events_processed":219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":43.8,"last_update":"2026-03-20T16:52:04.575807548Z"} +2026/03/20 16:52:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":90,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:04.585678209Z"} +2026/03/20 16:52:09 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.664770657920001,"throughput_eps":0,"last_update":"2026-03-20T16:52:04.719025162Z"} +2026/03/20 16:52:09 [transform_engine] {"stage_name":"transform_engine","events_processed":7,"events_dropped":0,"avg_latency_ms":100.96300297542402,"throughput_eps":0,"last_update":"2026-03-20T16:52:04.718900646Z"} +2026/03/20 16:52:09 ───────────────────────────────────────────────── +2026/03/20 16:52:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":92,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:09.584733061Z"} +2026/03/20 16:52:14 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.664770657920001,"throughput_eps":0,"last_update":"2026-03-20T16:52:09.718969862Z"} +2026/03/20 16:52:14 [transform_engine] {"stage_name":"transform_engine","events_processed":7,"events_dropped":0,"avg_latency_ms":100.96300297542402,"throughput_eps":0,"last_update":"2026-03-20T16:52:09.718997284Z"} +2026/03/20 16:52:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:09.575830074Z"} +2026/03/20 16:52:14 [metric_collector] {"stage_name":"metric_collector","events_processed":224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":44.8,"last_update":"2026-03-20T16:52:09.576378333Z"} +2026/03/20 16:52:14 ───────────────────────────────────────────────── +2026/03/20 16:52:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:19 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.664770657920001,"throughput_eps":0,"last_update":"2026-03-20T16:52:14.719738352Z"} +2026/03/20 16:52:19 [transform_engine] {"stage_name":"transform_engine","events_processed":7,"events_dropped":0,"avg_latency_ms":100.96300297542402,"throughput_eps":0,"last_update":"2026-03-20T16:52:14.719698706Z"} +2026/03/20 16:52:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:14.575541236Z"} +2026/03/20 16:52:19 [metric_collector] {"stage_name":"metric_collector","events_processed":229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":45.8,"last_update":"2026-03-20T16:52:14.576072904Z"} +2026/03/20 16:52:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":94,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:14.585346217Z"} +2026/03/20 16:52:19 ───────────────────────────────────────────────── +2026/03/20 16:52:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:24 [transform_engine] {"stage_name":"transform_engine","events_processed":7,"events_dropped":0,"avg_latency_ms":100.96300297542402,"throughput_eps":0,"last_update":"2026-03-20T16:52:19.719384301Z"} +2026/03/20 16:52:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:19.575909094Z"} +2026/03/20 16:52:24 [metric_collector] {"stage_name":"metric_collector","events_processed":234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":46.8,"last_update":"2026-03-20T16:52:19.576231235Z"} +2026/03/20 16:52:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":96,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:19.586063179Z"} +2026/03/20 16:52:24 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.664770657920001,"throughput_eps":0,"last_update":"2026-03-20T16:52:19.719403157Z"} +2026/03/20 16:52:24 ───────────────────────────────────────────────── +2026/03/20 16:52:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:24.575498344Z"} +2026/03/20 16:52:29 [metric_collector] {"stage_name":"metric_collector","events_processed":239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":47.8,"last_update":"2026-03-20T16:52:24.575872955Z"} +2026/03/20 16:52:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":98,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:24.585687548Z"} +2026/03/20 16:52:29 [detection_layer] {"stage_name":"detection_layer","events_processed":7,"events_dropped":0,"avg_latency_ms":5.664770657920001,"throughput_eps":0,"last_update":"2026-03-20T16:52:24.718930802Z"} +2026/03/20 16:52:29 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":93.47140998033922,"throughput_eps":0,"last_update":"2026-03-20T16:52:24.782450026Z"} +2026/03/20 16:52:29 ───────────────────────────────────────────────── +2026/03/20 16:52:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:29.575694283Z"} +2026/03/20 16:52:34 [metric_collector] {"stage_name":"metric_collector","events_processed":244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":48.8,"last_update":"2026-03-20T16:52:29.576091317Z"} +2026/03/20 16:52:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:29.585402415Z"} +2026/03/20 16:52:34 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":5.952213726336001,"throughput_eps":0,"last_update":"2026-03-20T16:52:29.719765983Z"} +2026/03/20 16:52:34 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":93.47140998033922,"throughput_eps":0,"last_update":"2026-03-20T16:52:29.719728813Z"} +2026/03/20 16:52:34 ───────────────────────────────────────────────── +2026/03/20 16:52:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:39 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":93.47140998033922,"throughput_eps":0,"last_update":"2026-03-20T16:52:34.718976661Z"} +2026/03/20 16:52:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:34.575554192Z"} +2026/03/20 16:52:39 [metric_collector] {"stage_name":"metric_collector","events_processed":249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":49.8,"last_update":"2026-03-20T16:52:34.576156545Z"} +2026/03/20 16:52:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:34.585636687Z"} +2026/03/20 16:52:39 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":5.952213726336001,"throughput_eps":0,"last_update":"2026-03-20T16:52:34.718840303Z"} +2026/03/20 16:52:39 ───────────────────────────────────────────────── +2026/03/20 16:52:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:44 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":5.952213726336001,"throughput_eps":0,"last_update":"2026-03-20T16:52:39.719291779Z"} +2026/03/20 16:52:44 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":93.47140998033922,"throughput_eps":0,"last_update":"2026-03-20T16:52:39.719224441Z"} +2026/03/20 16:52:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:39.575734785Z"} +2026/03/20 16:52:44 [metric_collector] {"stage_name":"metric_collector","events_processed":254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":50.8,"last_update":"2026-03-20T16:52:39.576067947Z"} +2026/03/20 16:52:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:39.586983056Z"} +2026/03/20 16:52:44 ───────────────────────────────────────────────── +2026/03/20 16:52:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:44.575586853Z"} +2026/03/20 16:52:49 [metric_collector] {"stage_name":"metric_collector","events_processed":259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":51.8,"last_update":"2026-03-20T16:52:44.575682484Z"} +2026/03/20 16:52:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:44.58603727Z"} +2026/03/20 16:52:49 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":5.952213726336001,"throughput_eps":0,"last_update":"2026-03-20T16:52:44.719490244Z"} +2026/03/20 16:52:49 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":93.47140998033922,"throughput_eps":0,"last_update":"2026-03-20T16:52:44.719520561Z"} +2026/03/20 16:52:49 ───────────────────────────────────────────────── +2026/03/20 16:52:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:49.575728958Z"} +2026/03/20 16:52:54 [metric_collector] {"stage_name":"metric_collector","events_processed":264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":52.8,"last_update":"2026-03-20T16:52:49.576110122Z"} +2026/03/20 16:52:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:49.585335797Z"} +2026/03/20 16:52:54 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":5.952213726336001,"throughput_eps":0,"last_update":"2026-03-20T16:52:49.719685529Z"} +2026/03/20 16:52:54 [transform_engine] {"stage_name":"transform_engine","events_processed":8,"events_dropped":0,"avg_latency_ms":93.47140998033922,"throughput_eps":0,"last_update":"2026-03-20T16:52:49.719700708Z"} +2026/03/20 16:52:54 ───────────────────────────────────────────────── +2026/03/20 16:52:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:52:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:54.575819843Z"} +2026/03/20 16:52:59 [metric_collector] {"stage_name":"metric_collector","events_processed":269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":53.8,"last_update":"2026-03-20T16:52:54.576231174Z"} +2026/03/20 16:52:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:54.585836402Z"} +2026/03/20 16:52:59 [detection_layer] {"stage_name":"detection_layer","events_processed":8,"events_dropped":0,"avg_latency_ms":5.952213726336001,"throughput_eps":0,"last_update":"2026-03-20T16:52:54.719482946Z"} +2026/03/20 16:52:59 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":88.24757618427137,"throughput_eps":0,"last_update":"2026-03-20T16:52:54.786557941Z"} +2026/03/20 16:52:59 ───────────────────────────────────────────────── +2026/03/20 16:53:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:59.576043195Z"} +2026/03/20 16:53:04 [metric_collector] {"stage_name":"metric_collector","events_processed":274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":54.8,"last_update":"2026-03-20T16:52:59.576562771Z"} +2026/03/20 16:53:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:52:59.585064235Z"} +2026/03/20 16:53:04 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":6.407688381068801,"throughput_eps":0,"last_update":"2026-03-20T16:52:59.719271692Z"} +2026/03/20 16:53:04 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":88.24757618427137,"throughput_eps":0,"last_update":"2026-03-20T16:52:59.719377112Z"} +2026/03/20 16:53:04 ───────────────────────────────────────────────── +2026/03/20 16:53:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:04.575902495Z"} +2026/03/20 16:53:09 [metric_collector] {"stage_name":"metric_collector","events_processed":279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":55.8,"last_update":"2026-03-20T16:53:04.576469151Z"} +2026/03/20 16:53:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:04.586781976Z"} +2026/03/20 16:53:09 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":6.407688381068801,"throughput_eps":0,"last_update":"2026-03-20T16:53:04.718918306Z"} +2026/03/20 16:53:09 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":88.24757618427137,"throughput_eps":0,"last_update":"2026-03-20T16:53:04.718937242Z"} +2026/03/20 16:53:09 ───────────────────────────────────────────────── +2026/03/20 16:53:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:09.575760499Z"} +2026/03/20 16:53:14 [metric_collector] {"stage_name":"metric_collector","events_processed":283,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":56.6,"last_update":"2026-03-20T16:53:09.575765869Z"} +2026/03/20 16:53:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:09.58687059Z"} +2026/03/20 16:53:14 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":6.407688381068801,"throughput_eps":0,"last_update":"2026-03-20T16:53:09.719095243Z"} +2026/03/20 16:53:14 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":88.24757618427137,"throughput_eps":0,"last_update":"2026-03-20T16:53:09.719109782Z"} +2026/03/20 16:53:14 ───────────────────────────────────────────────── +2026/03/20 16:53:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:19 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":6.407688381068801,"throughput_eps":0,"last_update":"2026-03-20T16:53:14.719177148Z"} +2026/03/20 16:53:19 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":88.24757618427137,"throughput_eps":0,"last_update":"2026-03-20T16:53:14.719211033Z"} +2026/03/20 16:53:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:14.575551563Z"} +2026/03/20 16:53:19 [metric_collector] {"stage_name":"metric_collector","events_processed":289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":57.8,"last_update":"2026-03-20T16:53:14.575946093Z"} +2026/03/20 16:53:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:14.585796413Z"} +2026/03/20 16:53:19 ───────────────────────────────────────────────── +2026/03/20 16:53:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:24 [metric_collector] {"stage_name":"metric_collector","events_processed":294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":58.8,"last_update":"2026-03-20T16:53:19.576086358Z"} +2026/03/20 16:53:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:19.58581002Z"} +2026/03/20 16:53:24 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":6.407688381068801,"throughput_eps":0,"last_update":"2026-03-20T16:53:19.719095871Z"} +2026/03/20 16:53:24 [transform_engine] {"stage_name":"transform_engine","events_processed":9,"events_dropped":0,"avg_latency_ms":88.24757618427137,"throughput_eps":0,"last_update":"2026-03-20T16:53:19.719142219Z"} +2026/03/20 16:53:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:19.575839169Z"} +2026/03/20 16:53:24 ───────────────────────────────────────────────── +2026/03/20 16:53:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:24.575734349Z"} +2026/03/20 16:53:29 [metric_collector] {"stage_name":"metric_collector","events_processed":299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":59.8,"last_update":"2026-03-20T16:53:24.576022947Z"} +2026/03/20 16:53:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":122,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:24.586312305Z"} +2026/03/20 16:53:29 [detection_layer] {"stage_name":"detection_layer","events_processed":9,"events_dropped":0,"avg_latency_ms":6.407688381068801,"throughput_eps":0,"last_update":"2026-03-20T16:53:24.719919412Z"} +2026/03/20 16:53:29 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":83.2126591474171,"throughput_eps":0,"last_update":"2026-03-20T16:53:24.782817452Z"} +2026/03/20 16:53:29 ───────────────────────────────────────────────── +2026/03/20 16:53:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:34 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":6.370236304855041,"throughput_eps":0,"last_update":"2026-03-20T16:53:29.719497275Z"} +2026/03/20 16:53:34 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":83.2126591474171,"throughput_eps":0,"last_update":"2026-03-20T16:53:29.71950515Z"} +2026/03/20 16:53:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:34.575505873Z"} +2026/03/20 16:53:34 [metric_collector] {"stage_name":"metric_collector","events_processed":304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":60.8,"last_update":"2026-03-20T16:53:29.575825572Z"} +2026/03/20 16:53:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:29.585249427Z"} +2026/03/20 16:53:34 ───────────────────────────────────────────────── +2026/03/20 16:53:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:39 [metric_collector] {"stage_name":"metric_collector","events_processed":309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":61.8,"last_update":"2026-03-20T16:53:34.576313668Z"} +2026/03/20 16:53:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":126,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:34.585630352Z"} +2026/03/20 16:53:39 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":6.370236304855041,"throughput_eps":0,"last_update":"2026-03-20T16:53:34.718807572Z"} +2026/03/20 16:53:39 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":83.2126591474171,"throughput_eps":0,"last_update":"2026-03-20T16:53:34.718818903Z"} +2026/03/20 16:53:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:34.575505873Z"} +2026/03/20 16:53:39 ───────────────────────────────────────────────── +2026/03/20 16:53:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:39.576001175Z"} +2026/03/20 16:53:44 [metric_collector] {"stage_name":"metric_collector","events_processed":314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":62.8,"last_update":"2026-03-20T16:53:39.576513319Z"} +2026/03/20 16:53:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":128,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:39.585250303Z"} +2026/03/20 16:53:44 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":6.370236304855041,"throughput_eps":0,"last_update":"2026-03-20T16:53:39.719561894Z"} +2026/03/20 16:53:44 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":83.2126591474171,"throughput_eps":0,"last_update":"2026-03-20T16:53:39.71957584Z"} +2026/03/20 16:53:44 ───────────────────────────────────────────────── +2026/03/20 16:53:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:49 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":83.2126591474171,"throughput_eps":0,"last_update":"2026-03-20T16:53:44.719655129Z"} +2026/03/20 16:53:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:44.575795026Z"} +2026/03/20 16:53:49 [metric_collector] {"stage_name":"metric_collector","events_processed":319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":63.8,"last_update":"2026-03-20T16:53:44.576582994Z"} +2026/03/20 16:53:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":130,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:44.586229709Z"} +2026/03/20 16:53:49 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":6.370236304855041,"throughput_eps":0,"last_update":"2026-03-20T16:53:44.719638668Z"} +2026/03/20 16:53:49 ───────────────────────────────────────────────── +2026/03/20 16:53:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:49.575555506Z"} +2026/03/20 16:53:54 [metric_collector] {"stage_name":"metric_collector","events_processed":324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":64.8,"last_update":"2026-03-20T16:53:49.576014449Z"} +2026/03/20 16:53:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:49.58600057Z"} +2026/03/20 16:53:54 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":6.370236304855041,"throughput_eps":0,"last_update":"2026-03-20T16:53:49.718832186Z"} +2026/03/20 16:53:54 [transform_engine] {"stage_name":"transform_engine","events_processed":10,"events_dropped":0,"avg_latency_ms":83.2126591474171,"throughput_eps":0,"last_update":"2026-03-20T16:53:49.718843838Z"} +2026/03/20 16:53:54 ───────────────────────────────────────────────── +2026/03/20 16:53:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:53:59 [metric_collector] {"stage_name":"metric_collector","events_processed":329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":65.8,"last_update":"2026-03-20T16:53:54.575760867Z"} +2026/03/20 16:53:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:54.586197667Z"} +2026/03/20 16:53:59 [detection_layer] {"stage_name":"detection_layer","events_processed":10,"events_dropped":0,"avg_latency_ms":6.370236304855041,"throughput_eps":0,"last_update":"2026-03-20T16:53:54.71958779Z"} +2026/03/20 16:53:59 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":89.20370731793369,"throughput_eps":0,"last_update":"2026-03-20T16:53:54.832770387Z"} +2026/03/20 16:53:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:54.57554678Z"} +2026/03/20 16:53:59 ───────────────────────────────────────────────── +2026/03/20 16:54:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:59.575532939Z"} +2026/03/20 16:54:04 [metric_collector] {"stage_name":"metric_collector","events_processed":334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":66.8,"last_update":"2026-03-20T16:53:59.575765622Z"} +2026/03/20 16:54:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:53:59.585235605Z"} +2026/03/20 16:54:04 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":6.842923443884033,"throughput_eps":0,"last_update":"2026-03-20T16:53:59.719638476Z"} +2026/03/20 16:54:04 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":89.20370731793369,"throughput_eps":0,"last_update":"2026-03-20T16:53:59.719667271Z"} +2026/03/20 16:54:04 ───────────────────────────────────────────────── +2026/03/20 16:54:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:04.57575292Z"} +2026/03/20 16:54:09 [metric_collector] {"stage_name":"metric_collector","events_processed":339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":67.8,"last_update":"2026-03-20T16:54:04.57660009Z"} +2026/03/20 16:54:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:04.585226372Z"} +2026/03/20 16:54:09 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":6.842923443884033,"throughput_eps":0,"last_update":"2026-03-20T16:54:04.719446149Z"} +2026/03/20 16:54:09 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":89.20370731793369,"throughput_eps":0,"last_update":"2026-03-20T16:54:04.719554265Z"} +2026/03/20 16:54:09 ───────────────────────────────────────────────── +2026/03/20 16:54:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:14 [metric_collector] {"stage_name":"metric_collector","events_processed":344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":68.8,"last_update":"2026-03-20T16:54:09.576224527Z"} +2026/03/20 16:54:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:09.58438779Z"} +2026/03/20 16:54:14 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":6.842923443884033,"throughput_eps":0,"last_update":"2026-03-20T16:54:09.719824254Z"} +2026/03/20 16:54:14 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":89.20370731793369,"throughput_eps":0,"last_update":"2026-03-20T16:54:09.719631909Z"} +2026/03/20 16:54:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:09.575865194Z"} +2026/03/20 16:54:14 ───────────────────────────────────────────────── +2026/03/20 16:54:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:19 [metric_collector] {"stage_name":"metric_collector","events_processed":349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":69.8,"last_update":"2026-03-20T16:54:14.576145107Z"} +2026/03/20 16:54:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:14.586475181Z"} +2026/03/20 16:54:19 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":6.842923443884033,"throughput_eps":0,"last_update":"2026-03-20T16:54:14.719836021Z"} +2026/03/20 16:54:19 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":89.20370731793369,"throughput_eps":0,"last_update":"2026-03-20T16:54:14.718630619Z"} +2026/03/20 16:54:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:14.575866838Z"} +2026/03/20 16:54:19 ───────────────────────────────────────────────── +2026/03/20 16:54:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:24 [transform_engine] {"stage_name":"transform_engine","events_processed":11,"events_dropped":0,"avg_latency_ms":89.20370731793369,"throughput_eps":0,"last_update":"2026-03-20T16:54:19.718821427Z"} +2026/03/20 16:54:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:19.576055416Z"} +2026/03/20 16:54:24 [metric_collector] {"stage_name":"metric_collector","events_processed":354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":70.8,"last_update":"2026-03-20T16:54:19.576441672Z"} +2026/03/20 16:54:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:19.576203989Z"} +2026/03/20 16:54:24 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":6.842923443884033,"throughput_eps":0,"last_update":"2026-03-20T16:54:19.718846144Z"} +2026/03/20 16:54:24 ───────────────────────────────────────────────── +2026/03/20 16:54:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:24.575883493Z"} +2026/03/20 16:54:29 [metric_collector] {"stage_name":"metric_collector","events_processed":359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":71.8,"last_update":"2026-03-20T16:54:24.576404815Z"} +2026/03/20 16:54:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:24.585704593Z"} +2026/03/20 16:54:29 [detection_layer] {"stage_name":"detection_layer","events_processed":11,"events_dropped":0,"avg_latency_ms":6.842923443884033,"throughput_eps":0,"last_update":"2026-03-20T16:54:24.719109854Z"} +2026/03/20 16:54:29 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":84.08506565434695,"throughput_eps":0,"last_update":"2026-03-20T16:54:24.782639729Z"} +2026/03/20 16:54:29 ───────────────────────────────────────────────── +2026/03/20 16:54:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:29.575555578Z"} +2026/03/20 16:54:34 [metric_collector] {"stage_name":"metric_collector","events_processed":364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":72.8,"last_update":"2026-03-20T16:54:29.575971389Z"} +2026/03/20 16:54:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:29.585229179Z"} +2026/03/20 16:54:34 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":7.290607155107227,"throughput_eps":0,"last_update":"2026-03-20T16:54:29.719683307Z"} +2026/03/20 16:54:34 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":84.08506565434695,"throughput_eps":0,"last_update":"2026-03-20T16:54:29.719625487Z"} +2026/03/20 16:54:34 ───────────────────────────────────────────────── +2026/03/20 16:54:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:34.576027641Z"} +2026/03/20 16:54:39 [metric_collector] {"stage_name":"metric_collector","events_processed":369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":73.8,"last_update":"2026-03-20T16:54:34.5764107Z"} +2026/03/20 16:54:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:34.585479752Z"} +2026/03/20 16:54:39 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":7.290607155107227,"throughput_eps":0,"last_update":"2026-03-20T16:54:34.719877725Z"} +2026/03/20 16:54:39 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":84.08506565434695,"throughput_eps":0,"last_update":"2026-03-20T16:54:34.718696177Z"} +2026/03/20 16:54:39 ───────────────────────────────────────────────── +2026/03/20 16:54:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:39.575736301Z"} +2026/03/20 16:54:44 [metric_collector] {"stage_name":"metric_collector","events_processed":374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":74.8,"last_update":"2026-03-20T16:54:39.576049025Z"} +2026/03/20 16:54:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:39.586491042Z"} +2026/03/20 16:54:44 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":7.290607155107227,"throughput_eps":0,"last_update":"2026-03-20T16:54:39.719785568Z"} +2026/03/20 16:54:44 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":84.08506565434695,"throughput_eps":0,"last_update":"2026-03-20T16:54:39.718657542Z"} +2026/03/20 16:54:44 ───────────────────────────────────────────────── +2026/03/20 16:54:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:44.57583449Z"} +2026/03/20 16:54:49 [metric_collector] {"stage_name":"metric_collector","events_processed":379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":75.8,"last_update":"2026-03-20T16:54:44.576201658Z"} +2026/03/20 16:54:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:44.584894178Z"} +2026/03/20 16:54:49 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":7.290607155107227,"throughput_eps":0,"last_update":"2026-03-20T16:54:44.71925304Z"} +2026/03/20 16:54:49 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":84.08506565434695,"throughput_eps":0,"last_update":"2026-03-20T16:54:44.719145655Z"} +2026/03/20 16:54:49 ───────────────────────────────────────────────── +2026/03/20 16:54:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:49.586527651Z"} +2026/03/20 16:54:54 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":7.290607155107227,"throughput_eps":0,"last_update":"2026-03-20T16:54:49.719170119Z"} +2026/03/20 16:54:54 [transform_engine] {"stage_name":"transform_engine","events_processed":12,"events_dropped":0,"avg_latency_ms":84.08506565434695,"throughput_eps":0,"last_update":"2026-03-20T16:54:49.719046454Z"} +2026/03/20 16:54:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:49.575744653Z"} +2026/03/20 16:54:54 [metric_collector] {"stage_name":"metric_collector","events_processed":384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":76.8,"last_update":"2026-03-20T16:54:49.57612155Z"} +2026/03/20 16:54:54 ───────────────────────────────────────────────── +2026/03/20 16:54:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:54:59 [transform_engine] {"stage_name":"transform_engine","events_processed":13,"events_dropped":0,"avg_latency_ms":90.36144932347756,"throughput_eps":0,"last_update":"2026-03-20T16:54:54.834670611Z"} +2026/03/20 16:54:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:54.575535925Z"} +2026/03/20 16:54:59 [metric_collector] {"stage_name":"metric_collector","events_processed":389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":77.8,"last_update":"2026-03-20T16:54:54.576043151Z"} +2026/03/20 16:54:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:54.587903892Z"} +2026/03/20 16:54:59 [detection_layer] {"stage_name":"detection_layer","events_processed":12,"events_dropped":0,"avg_latency_ms":7.290607155107227,"throughput_eps":0,"last_update":"2026-03-20T16:54:54.719323364Z"} +2026/03/20 16:54:59 ───────────────────────────────────────────────── +2026/03/20 16:55:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:59.584555827Z"} +2026/03/20 16:55:04 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":7.767055124085782,"throughput_eps":0,"last_update":"2026-03-20T16:54:59.719143519Z"} +2026/03/20 16:55:04 [transform_engine] {"stage_name":"transform_engine","events_processed":13,"events_dropped":0,"avg_latency_ms":90.36144932347756,"throughput_eps":0,"last_update":"2026-03-20T16:54:59.719108363Z"} +2026/03/20 16:55:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:54:59.576022156Z"} +2026/03/20 16:55:04 [metric_collector] {"stage_name":"metric_collector","events_processed":394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":78.8,"last_update":"2026-03-20T16:54:59.576409864Z"} +2026/03/20 16:55:04 ───────────────────────────────────────────────── +2026/03/20 16:55:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:09 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":7.767055124085782,"throughput_eps":0,"last_update":"2026-03-20T16:55:04.719744299Z"} +2026/03/20 16:55:09 [transform_engine] {"stage_name":"transform_engine","events_processed":13,"events_dropped":0,"avg_latency_ms":90.36144932347756,"throughput_eps":0,"last_update":"2026-03-20T16:55:04.719617348Z"} +2026/03/20 16:55:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:04.576077945Z"} +2026/03/20 16:55:09 [metric_collector] {"stage_name":"metric_collector","events_processed":399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":79.8,"last_update":"2026-03-20T16:55:04.576308814Z"} +2026/03/20 16:55:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:04.585504547Z"} +2026/03/20 16:55:09 ───────────────────────────────────────────────── +2026/03/20 16:55:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:14 [transform_engine] {"stage_name":"transform_engine","events_processed":13,"events_dropped":0,"avg_latency_ms":90.36144932347756,"throughput_eps":0,"last_update":"2026-03-20T16:55:09.719697948Z"} +2026/03/20 16:55:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:09.575559774Z"} +2026/03/20 16:55:14 [metric_collector] {"stage_name":"metric_collector","events_processed":404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":80.8,"last_update":"2026-03-20T16:55:09.57548912Z"} +2026/03/20 16:55:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:09.585190185Z"} +2026/03/20 16:55:14 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":7.767055124085782,"throughput_eps":0,"last_update":"2026-03-20T16:55:09.719580695Z"} +2026/03/20 16:55:14 ───────────────────────────────────────────────── +2026/03/20 16:55:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:14.575894981Z"} +2026/03/20 16:55:19 [metric_collector] {"stage_name":"metric_collector","events_processed":409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":81.8,"last_update":"2026-03-20T16:55:14.576189191Z"} +2026/03/20 16:55:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:14.586503926Z"} +2026/03/20 16:55:19 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":7.767055124085782,"throughput_eps":0,"last_update":"2026-03-20T16:55:14.718792425Z"} +2026/03/20 16:55:19 [transform_engine] {"stage_name":"transform_engine","events_processed":13,"events_dropped":0,"avg_latency_ms":90.36144932347756,"throughput_eps":0,"last_update":"2026-03-20T16:55:14.718757749Z"} +2026/03/20 16:55:19 ───────────────────────────────────────────────── +2026/03/20 16:55:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:19.575517626Z"} +2026/03/20 16:55:24 [metric_collector] {"stage_name":"metric_collector","events_processed":414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":82.8,"last_update":"2026-03-20T16:55:19.575752924Z"} +2026/03/20 16:55:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:19.585904691Z"} +2026/03/20 16:55:24 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":7.767055124085782,"throughput_eps":0,"last_update":"2026-03-20T16:55:19.719147225Z"} +2026/03/20 16:55:24 [transform_engine] {"stage_name":"transform_engine","events_processed":13,"events_dropped":0,"avg_latency_ms":90.36144932347756,"throughput_eps":0,"last_update":"2026-03-20T16:55:19.719098583Z"} +2026/03/20 16:55:24 ───────────────────────────────────────────────── +2026/03/20 16:55:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:29 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":85.40071905878206,"throughput_eps":0,"last_update":"2026-03-20T16:55:24.785174402Z"} +2026/03/20 16:55:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:24.575506617Z"} +2026/03/20 16:55:29 [metric_collector] {"stage_name":"metric_collector","events_processed":419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":83.8,"last_update":"2026-03-20T16:55:24.575745953Z"} +2026/03/20 16:55:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":170,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:24.585218438Z"} +2026/03/20 16:55:29 [detection_layer] {"stage_name":"detection_layer","events_processed":13,"events_dropped":0,"avg_latency_ms":7.767055124085782,"throughput_eps":0,"last_update":"2026-03-20T16:55:24.719641792Z"} +2026/03/20 16:55:29 ───────────────────────────────────────────────── +2026/03/20 16:55:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:34 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":8.436163699268626,"throughput_eps":0,"last_update":"2026-03-20T16:55:29.719761646Z"} +2026/03/20 16:55:34 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":85.40071905878206,"throughput_eps":0,"last_update":"2026-03-20T16:55:29.719776074Z"} +2026/03/20 16:55:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:29.576029298Z"} +2026/03/20 16:55:34 [metric_collector] {"stage_name":"metric_collector","events_processed":424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":84.8,"last_update":"2026-03-20T16:55:29.57639345Z"} +2026/03/20 16:55:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:29.585419907Z"} +2026/03/20 16:55:34 ───────────────────────────────────────────────── +2026/03/20 16:55:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:34.575760995Z"} +2026/03/20 16:55:39 [metric_collector] {"stage_name":"metric_collector","events_processed":429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":85.8,"last_update":"2026-03-20T16:55:34.576023043Z"} +2026/03/20 16:55:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:34.585855857Z"} +2026/03/20 16:55:39 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":8.436163699268626,"throughput_eps":0,"last_update":"2026-03-20T16:55:34.719246173Z"} +2026/03/20 16:55:39 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":85.40071905878206,"throughput_eps":0,"last_update":"2026-03-20T16:55:34.71925987Z"} +2026/03/20 16:55:39 ───────────────────────────────────────────────── +2026/03/20 16:55:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:44 [metric_collector] {"stage_name":"metric_collector","events_processed":433,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":86.6,"last_update":"2026-03-20T16:55:39.575464814Z"} +2026/03/20 16:55:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:39.58478832Z"} +2026/03/20 16:55:44 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":8.436163699268626,"throughput_eps":0,"last_update":"2026-03-20T16:55:39.719183289Z"} +2026/03/20 16:55:44 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":85.40071905878206,"throughput_eps":0,"last_update":"2026-03-20T16:55:39.719192727Z"} +2026/03/20 16:55:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:39.575540108Z"} +2026/03/20 16:55:44 ───────────────────────────────────────────────── +2026/03/20 16:55:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:44.585197906Z"} +2026/03/20 16:55:49 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":8.436163699268626,"throughput_eps":0,"last_update":"2026-03-20T16:55:44.719345864Z"} +2026/03/20 16:55:49 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":85.40071905878206,"throughput_eps":0,"last_update":"2026-03-20T16:55:44.719372585Z"} +2026/03/20 16:55:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:44.575489576Z"} +2026/03/20 16:55:49 [metric_collector] {"stage_name":"metric_collector","events_processed":438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":87.6,"last_update":"2026-03-20T16:55:44.575030972Z"} +2026/03/20 16:55:49 ───────────────────────────────────────────────── +2026/03/20 16:55:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:54 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":8.436163699268626,"throughput_eps":0,"last_update":"2026-03-20T16:55:49.719600786Z"} +2026/03/20 16:55:54 [transform_engine] {"stage_name":"transform_engine","events_processed":14,"events_dropped":0,"avg_latency_ms":85.40071905878206,"throughput_eps":0,"last_update":"2026-03-20T16:55:49.719615836Z"} +2026/03/20 16:55:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:49.575543835Z"} +2026/03/20 16:55:54 [metric_collector] {"stage_name":"metric_collector","events_processed":444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":88.8,"last_update":"2026-03-20T16:55:49.575980307Z"} +2026/03/20 16:55:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:49.587210577Z"} +2026/03/20 16:55:54 ───────────────────────────────────────────────── +2026/03/20 16:55:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:55:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:54.576022909Z"} +2026/03/20 16:55:59 [metric_collector] {"stage_name":"metric_collector","events_processed":449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":89.8,"last_update":"2026-03-20T16:55:54.575952244Z"} +2026/03/20 16:55:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:54.587258731Z"} +2026/03/20 16:55:59 [detection_layer] {"stage_name":"detection_layer","events_processed":14,"events_dropped":0,"avg_latency_ms":8.436163699268626,"throughput_eps":0,"last_update":"2026-03-20T16:55:54.719614785Z"} +2026/03/20 16:55:59 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":82.50752664702564,"throughput_eps":0,"last_update":"2026-03-20T16:55:54.790568418Z"} +2026/03/20 16:55:59 ───────────────────────────────────────────────── +2026/03/20 16:56:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:59.586154048Z"} +2026/03/20 16:56:04 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":8.390728159414902,"throughput_eps":0,"last_update":"2026-03-20T16:55:59.719507891Z"} +2026/03/20 16:56:04 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":82.50752664702564,"throughput_eps":0,"last_update":"2026-03-20T16:55:59.719653858Z"} +2026/03/20 16:56:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:55:59.575541732Z"} +2026/03/20 16:56:04 [metric_collector] {"stage_name":"metric_collector","events_processed":454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":90.8,"last_update":"2026-03-20T16:55:59.575735861Z"} +2026/03/20 16:56:04 ───────────────────────────────────────────────── +2026/03/20 16:56:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:04.57558828Z"} +2026/03/20 16:56:09 [metric_collector] {"stage_name":"metric_collector","events_processed":459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":91.8,"last_update":"2026-03-20T16:56:04.5760661Z"} +2026/03/20 16:56:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:04.587239577Z"} +2026/03/20 16:56:09 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":8.390728159414902,"throughput_eps":0,"last_update":"2026-03-20T16:56:04.719489245Z"} +2026/03/20 16:56:09 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":82.50752664702564,"throughput_eps":0,"last_update":"2026-03-20T16:56:04.719396548Z"} +2026/03/20 16:56:09 ───────────────────────────────────────────────── +2026/03/20 16:56:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:09.575559209Z"} +2026/03/20 16:56:14 [metric_collector] {"stage_name":"metric_collector","events_processed":464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":92.8,"last_update":"2026-03-20T16:56:09.575658799Z"} +2026/03/20 16:56:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:09.58545374Z"} +2026/03/20 16:56:14 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":8.390728159414902,"throughput_eps":0,"last_update":"2026-03-20T16:56:09.719749415Z"} +2026/03/20 16:56:14 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":82.50752664702564,"throughput_eps":0,"last_update":"2026-03-20T16:56:09.719762489Z"} +2026/03/20 16:56:14 ───────────────────────────────────────────────── +2026/03/20 16:56:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:19 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":8.390728159414902,"throughput_eps":0,"last_update":"2026-03-20T16:56:14.719125277Z"} +2026/03/20 16:56:19 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":82.50752664702564,"throughput_eps":0,"last_update":"2026-03-20T16:56:14.719139725Z"} +2026/03/20 16:56:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:14.575547289Z"} +2026/03/20 16:56:19 [metric_collector] {"stage_name":"metric_collector","events_processed":469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":93.8,"last_update":"2026-03-20T16:56:14.575893308Z"} +2026/03/20 16:56:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:14.586733833Z"} +2026/03/20 16:56:19 ───────────────────────────────────────────────── +2026/03/20 16:56:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:24 [metric_collector] {"stage_name":"metric_collector","events_processed":474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":94.8,"last_update":"2026-03-20T16:56:19.575858485Z"} +2026/03/20 16:56:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:19.587047425Z"} +2026/03/20 16:56:24 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":8.390728159414902,"throughput_eps":0,"last_update":"2026-03-20T16:56:19.719274945Z"} +2026/03/20 16:56:24 [transform_engine] {"stage_name":"transform_engine","events_processed":15,"events_dropped":0,"avg_latency_ms":82.50752664702564,"throughput_eps":0,"last_update":"2026-03-20T16:56:19.719282861Z"} +2026/03/20 16:56:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:19.575526552Z"} +2026/03/20 16:56:24 ───────────────────────────────────────────────── +2026/03/20 16:56:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:29 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":88.80772311762053,"throughput_eps":0,"last_update":"2026-03-20T16:56:24.833725455Z"} +2026/03/20 16:56:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:24.575602065Z"} +2026/03/20 16:56:29 [metric_collector] {"stage_name":"metric_collector","events_processed":479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":95.8,"last_update":"2026-03-20T16:56:24.576074455Z"} +2026/03/20 16:56:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:24.58731196Z"} +2026/03/20 16:56:29 [detection_layer] {"stage_name":"detection_layer","events_processed":15,"events_dropped":0,"avg_latency_ms":8.390728159414902,"throughput_eps":0,"last_update":"2026-03-20T16:56:24.719701607Z"} +2026/03/20 16:56:29 ───────────────────────────────────────────────── +2026/03/20 16:56:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:29.575829836Z"} +2026/03/20 16:56:34 [metric_collector] {"stage_name":"metric_collector","events_processed":484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":96.8,"last_update":"2026-03-20T16:56:29.576146881Z"} +2026/03/20 16:56:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:29.585544931Z"} +2026/03/20 16:56:34 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":8.713176927531922,"throughput_eps":0,"last_update":"2026-03-20T16:56:29.718890977Z"} +2026/03/20 16:56:34 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":88.80772311762053,"throughput_eps":0,"last_update":"2026-03-20T16:56:29.718783152Z"} +2026/03/20 16:56:34 ───────────────────────────────────────────────── +2026/03/20 16:56:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:34.575543138Z"} +2026/03/20 16:56:39 [metric_collector] {"stage_name":"metric_collector","events_processed":489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":97.8,"last_update":"2026-03-20T16:56:34.575832029Z"} +2026/03/20 16:56:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:34.585683334Z"} +2026/03/20 16:56:39 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":8.713176927531922,"throughput_eps":0,"last_update":"2026-03-20T16:56:34.719077941Z"} +2026/03/20 16:56:39 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":88.80772311762053,"throughput_eps":0,"last_update":"2026-03-20T16:56:34.719090205Z"} +2026/03/20 16:56:39 ───────────────────────────────────────────────── +2026/03/20 16:56:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:44 [metric_collector] {"stage_name":"metric_collector","events_processed":494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":98.8,"last_update":"2026-03-20T16:56:39.576144958Z"} +2026/03/20 16:56:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:39.5853904Z"} +2026/03/20 16:56:44 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":8.713176927531922,"throughput_eps":0,"last_update":"2026-03-20T16:56:39.719629666Z"} +2026/03/20 16:56:44 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":88.80772311762053,"throughput_eps":0,"last_update":"2026-03-20T16:56:39.719638372Z"} +2026/03/20 16:56:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:39.575721321Z"} +2026/03/20 16:56:44 ───────────────────────────────────────────────── +2026/03/20 16:56:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:44.575758494Z"} +2026/03/20 16:56:49 [metric_collector] {"stage_name":"metric_collector","events_processed":499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":99.8,"last_update":"2026-03-20T16:56:44.576215354Z"} +2026/03/20 16:56:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:44.586823856Z"} +2026/03/20 16:56:49 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":8.713176927531922,"throughput_eps":0,"last_update":"2026-03-20T16:56:44.719051964Z"} +2026/03/20 16:56:49 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":88.80772311762053,"throughput_eps":0,"last_update":"2026-03-20T16:56:44.719061552Z"} +2026/03/20 16:56:49 ───────────────────────────────────────────────── +2026/03/20 16:56:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:54 [metric_collector] {"stage_name":"metric_collector","events_processed":504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":100.8,"last_update":"2026-03-20T16:56:49.576209245Z"} +2026/03/20 16:56:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:49.585223358Z"} +2026/03/20 16:56:54 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":8.713176927531922,"throughput_eps":0,"last_update":"2026-03-20T16:56:49.719316229Z"} +2026/03/20 16:56:54 [transform_engine] {"stage_name":"transform_engine","events_processed":16,"events_dropped":0,"avg_latency_ms":88.80772311762053,"throughput_eps":0,"last_update":"2026-03-20T16:56:49.719326117Z"} +2026/03/20 16:56:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:49.575811778Z"} +2026/03/20 16:56:54 ───────────────────────────────────────────────── +2026/03/20 16:56:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:56:59 [transform_engine] {"stage_name":"transform_engine","events_processed":17,"events_dropped":0,"avg_latency_ms":83.60704289409642,"throughput_eps":0,"last_update":"2026-03-20T16:56:54.782529026Z"} +2026/03/20 16:56:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:54.575850159Z"} +2026/03/20 16:56:59 [metric_collector] {"stage_name":"metric_collector","events_processed":509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":101.8,"last_update":"2026-03-20T16:56:54.57617563Z"} +2026/03/20 16:56:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":206,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:54.585377783Z"} +2026/03/20 16:56:59 [detection_layer] {"stage_name":"detection_layer","events_processed":16,"events_dropped":0,"avg_latency_ms":8.713176927531922,"throughput_eps":0,"last_update":"2026-03-20T16:56:54.719707291Z"} +2026/03/20 16:56:59 ───────────────────────────────────────────────── +2026/03/20 16:57:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:04 [metric_collector] {"stage_name":"metric_collector","events_processed":514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":102.8,"last_update":"2026-03-20T16:56:59.575686526Z"} +2026/03/20 16:57:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:59.586041218Z"} +2026/03/20 16:57:04 [detection_layer] {"stage_name":"detection_layer","events_processed":17,"events_dropped":0,"avg_latency_ms":8.876964142025539,"throughput_eps":0,"last_update":"2026-03-20T16:56:59.719407708Z"} +2026/03/20 16:57:04 [transform_engine] {"stage_name":"transform_engine","events_processed":17,"events_dropped":0,"avg_latency_ms":83.60704289409642,"throughput_eps":0,"last_update":"2026-03-20T16:56:59.719421233Z"} +2026/03/20 16:57:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:56:59.575543985Z"} +2026/03/20 16:57:04 ───────────────────────────────────────────────── +2026/03/20 16:57:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:04.575899054Z"} +2026/03/20 16:57:09 [metric_collector] {"stage_name":"metric_collector","events_processed":519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":103.8,"last_update":"2026-03-20T16:57:04.576824389Z"} +2026/03/20 16:57:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":210,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:04.586019501Z"} +2026/03/20 16:57:09 [detection_layer] {"stage_name":"detection_layer","events_processed":17,"events_dropped":0,"avg_latency_ms":8.876964142025539,"throughput_eps":0,"last_update":"2026-03-20T16:57:04.7194034Z"} +2026/03/20 16:57:09 [transform_engine] {"stage_name":"transform_engine","events_processed":17,"events_dropped":0,"avg_latency_ms":83.60704289409642,"throughput_eps":0,"last_update":"2026-03-20T16:57:04.719417286Z"} +2026/03/20 16:57:09 ───────────────────────────────────────────────── +2026/03/20 16:57:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:14 [metric_collector] {"stage_name":"metric_collector","events_processed":524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":104.8,"last_update":"2026-03-20T16:57:09.576556139Z"} +2026/03/20 16:57:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:09.586089276Z"} +2026/03/20 16:57:14 [detection_layer] {"stage_name":"detection_layer","events_processed":17,"events_dropped":0,"avg_latency_ms":8.876964142025539,"throughput_eps":0,"last_update":"2026-03-20T16:57:09.719323477Z"} +2026/03/20 16:57:14 [transform_engine] {"stage_name":"transform_engine","events_processed":17,"events_dropped":0,"avg_latency_ms":83.60704289409642,"throughput_eps":0,"last_update":"2026-03-20T16:57:09.719331361Z"} +2026/03/20 16:57:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:09.575862165Z"} +2026/03/20 16:57:14 ───────────────────────────────────────────────── +2026/03/20 16:57:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:14.575553079Z"} +2026/03/20 16:57:19 [metric_collector] {"stage_name":"metric_collector","events_processed":529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":105.8,"last_update":"2026-03-20T16:57:14.57594191Z"} +2026/03/20 16:57:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:14.586999606Z"} +2026/03/20 16:57:19 [detection_layer] {"stage_name":"detection_layer","events_processed":17,"events_dropped":0,"avg_latency_ms":8.876964142025539,"throughput_eps":0,"last_update":"2026-03-20T16:57:14.71932058Z"} +2026/03/20 16:57:19 [transform_engine] {"stage_name":"transform_engine","events_processed":17,"events_dropped":0,"avg_latency_ms":83.60704289409642,"throughput_eps":0,"last_update":"2026-03-20T16:57:14.719333706Z"} +2026/03/20 16:57:19 ───────────────────────────────────────────────── +2026/03/20 16:57:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:24 [detection_layer] {"stage_name":"detection_layer","events_processed":17,"events_dropped":0,"avg_latency_ms":8.876964142025539,"throughput_eps":0,"last_update":"2026-03-20T16:57:19.719404267Z"} +2026/03/20 16:57:24 [transform_engine] {"stage_name":"transform_engine","events_processed":17,"events_dropped":0,"avg_latency_ms":83.60704289409642,"throughput_eps":0,"last_update":"2026-03-20T16:57:19.719417692Z"} +2026/03/20 16:57:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:19.575801071Z"} +2026/03/20 16:57:24 [metric_collector] {"stage_name":"metric_collector","events_processed":534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":106.8,"last_update":"2026-03-20T16:57:19.576421774Z"} +2026/03/20 16:57:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:19.585954082Z"} +2026/03/20 16:57:24 ───────────────────────────────────────────────── +2026/03/20 16:57:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:24.57552926Z"} +2026/03/20 16:57:29 [metric_collector] {"stage_name":"metric_collector","events_processed":539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":107.8,"last_update":"2026-03-20T16:57:24.575711338Z"} +2026/03/20 16:57:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:24.585724104Z"} +2026/03/20 16:57:29 [detection_layer] {"stage_name":"detection_layer","events_processed":17,"events_dropped":0,"avg_latency_ms":8.876964142025539,"throughput_eps":0,"last_update":"2026-03-20T16:57:24.7190783Z"} +2026/03/20 16:57:29 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":80.27852051527715,"throughput_eps":0,"last_update":"2026-03-20T16:57:24.786060074Z"} +2026/03/20 16:57:29 ───────────────────────────────────────────────── +2026/03/20 16:57:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:34 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":9.075584113620431,"throughput_eps":0,"last_update":"2026-03-20T16:57:29.719434408Z"} +2026/03/20 16:57:34 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":80.27852051527715,"throughput_eps":0,"last_update":"2026-03-20T16:57:29.719450448Z"} +2026/03/20 16:57:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:29.576107806Z"} +2026/03/20 16:57:34 [metric_collector] {"stage_name":"metric_collector","events_processed":544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":108.8,"last_update":"2026-03-20T16:57:29.576087517Z"} +2026/03/20 16:57:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:29.585073305Z"} +2026/03/20 16:57:34 ───────────────────────────────────────────────── +2026/03/20 16:57:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:34.575720297Z"} +2026/03/20 16:57:39 [metric_collector] {"stage_name":"metric_collector","events_processed":549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":109.8,"last_update":"2026-03-20T16:57:34.575999069Z"} +2026/03/20 16:57:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":222,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:34.587021993Z"} +2026/03/20 16:57:39 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":9.075584113620431,"throughput_eps":0,"last_update":"2026-03-20T16:57:34.719337941Z"} +2026/03/20 16:57:39 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":80.27852051527715,"throughput_eps":0,"last_update":"2026-03-20T16:57:34.719345385Z"} +2026/03/20 16:57:39 ───────────────────────────────────────────────── +2026/03/20 16:57:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:39.575632021Z"} +2026/03/20 16:57:44 [metric_collector] {"stage_name":"metric_collector","events_processed":554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":110.8,"last_update":"2026-03-20T16:57:39.575947503Z"} +2026/03/20 16:57:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:39.586802438Z"} +2026/03/20 16:57:44 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":9.075584113620431,"throughput_eps":0,"last_update":"2026-03-20T16:57:39.719079497Z"} +2026/03/20 16:57:44 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":80.27852051527715,"throughput_eps":0,"last_update":"2026-03-20T16:57:39.719090067Z"} +2026/03/20 16:57:44 ───────────────────────────────────────────────── +2026/03/20 16:57:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:49 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":80.27852051527715,"throughput_eps":0,"last_update":"2026-03-20T16:57:44.718688617Z"} +2026/03/20 16:57:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:44.575509487Z"} +2026/03/20 16:57:49 [metric_collector] {"stage_name":"metric_collector","events_processed":559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":111.8,"last_update":"2026-03-20T16:57:44.575551587Z"} +2026/03/20 16:57:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:44.585529231Z"} +2026/03/20 16:57:49 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":9.075584113620431,"throughput_eps":0,"last_update":"2026-03-20T16:57:44.718805861Z"} +2026/03/20 16:57:49 ───────────────────────────────────────────────── +2026/03/20 16:57:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:49.575540938Z"} +2026/03/20 16:57:54 [metric_collector] {"stage_name":"metric_collector","events_processed":564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":112.8,"last_update":"2026-03-20T16:57:49.575743574Z"} +2026/03/20 16:57:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:49.585600018Z"} +2026/03/20 16:57:54 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":9.075584113620431,"throughput_eps":0,"last_update":"2026-03-20T16:57:49.718828753Z"} +2026/03/20 16:57:54 [transform_engine] {"stage_name":"transform_engine","events_processed":18,"events_dropped":0,"avg_latency_ms":80.27852051527715,"throughput_eps":0,"last_update":"2026-03-20T16:57:49.718721138Z"} +2026/03/20 16:57:54 ───────────────────────────────────────────────── +2026/03/20 16:57:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:57:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:54.575724805Z"} +2026/03/20 16:57:59 [metric_collector] {"stage_name":"metric_collector","events_processed":569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":113.8,"last_update":"2026-03-20T16:57:54.576225471Z"} +2026/03/20 16:57:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:54.584731208Z"} +2026/03/20 16:57:59 [detection_layer] {"stage_name":"detection_layer","events_processed":18,"events_dropped":0,"avg_latency_ms":9.075584113620431,"throughput_eps":0,"last_update":"2026-03-20T16:57:54.719212728Z"} +2026/03/20 16:57:59 [transform_engine] {"stage_name":"transform_engine","events_processed":19,"events_dropped":0,"avg_latency_ms":86.20804501222172,"throughput_eps":0,"last_update":"2026-03-20T16:57:54.829153318Z"} +2026/03/20 16:57:59 ───────────────────────────────────────────────── +2026/03/20 16:58:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:59.586271867Z"} +2026/03/20 16:58:04 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":9.584972090896345,"throughput_eps":0,"last_update":"2026-03-20T16:57:59.719584852Z"} +2026/03/20 16:58:04 [transform_engine] {"stage_name":"transform_engine","events_processed":19,"events_dropped":0,"avg_latency_ms":86.20804501222172,"throughput_eps":0,"last_update":"2026-03-20T16:57:59.719590873Z"} +2026/03/20 16:58:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:57:59.575801189Z"} +2026/03/20 16:58:04 [metric_collector] {"stage_name":"metric_collector","events_processed":574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":114.8,"last_update":"2026-03-20T16:57:59.576122382Z"} +2026/03/20 16:58:04 ───────────────────────────────────────────────── +2026/03/20 16:58:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:09 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":9.584972090896345,"throughput_eps":0,"last_update":"2026-03-20T16:58:04.719688176Z"} +2026/03/20 16:58:09 [transform_engine] {"stage_name":"transform_engine","events_processed":19,"events_dropped":0,"avg_latency_ms":86.20804501222172,"throughput_eps":0,"last_update":"2026-03-20T16:58:04.719696993Z"} +2026/03/20 16:58:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:04.575532428Z"} +2026/03/20 16:58:09 [metric_collector] {"stage_name":"metric_collector","events_processed":579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":115.8,"last_update":"2026-03-20T16:58:04.575775841Z"} +2026/03/20 16:58:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:04.58647136Z"} +2026/03/20 16:58:09 ───────────────────────────────────────────────── +2026/03/20 16:58:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:14 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":9.584972090896345,"throughput_eps":0,"last_update":"2026-03-20T16:58:09.719506727Z"} +2026/03/20 16:58:14 [transform_engine] {"stage_name":"transform_engine","events_processed":19,"events_dropped":0,"avg_latency_ms":86.20804501222172,"throughput_eps":0,"last_update":"2026-03-20T16:58:09.719512598Z"} +2026/03/20 16:58:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:09.575726629Z"} +2026/03/20 16:58:14 [metric_collector] {"stage_name":"metric_collector","events_processed":584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":116.8,"last_update":"2026-03-20T16:58:09.576043353Z"} +2026/03/20 16:58:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:09.586106406Z"} +2026/03/20 16:58:14 ───────────────────────────────────────────────── +2026/03/20 16:58:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:14.58661405Z"} +2026/03/20 16:58:19 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":9.584972090896345,"throughput_eps":0,"last_update":"2026-03-20T16:58:14.718911551Z"} +2026/03/20 16:58:19 [transform_engine] {"stage_name":"transform_engine","events_processed":19,"events_dropped":0,"avg_latency_ms":86.20804501222172,"throughput_eps":0,"last_update":"2026-03-20T16:58:14.718923323Z"} +2026/03/20 16:58:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:14.575872743Z"} +2026/03/20 16:58:19 [metric_collector] {"stage_name":"metric_collector","events_processed":589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":117.8,"last_update":"2026-03-20T16:58:14.576540878Z"} +2026/03/20 16:58:19 ───────────────────────────────────────────────── +2026/03/20 16:58:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:24 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":9.584972090896345,"throughput_eps":0,"last_update":"2026-03-20T16:58:19.719216854Z"} +2026/03/20 16:58:24 [transform_engine] {"stage_name":"transform_engine","events_processed":19,"events_dropped":0,"avg_latency_ms":86.20804501222172,"throughput_eps":0,"last_update":"2026-03-20T16:58:19.719232234Z"} +2026/03/20 16:58:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:19.575770101Z"} +2026/03/20 16:58:24 [metric_collector] {"stage_name":"metric_collector","events_processed":594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":118.8,"last_update":"2026-03-20T16:58:19.576173331Z"} +2026/03/20 16:58:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:19.584831553Z"} +2026/03/20 16:58:24 ───────────────────────────────────────────────── +2026/03/20 16:58:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:29 [metric_collector] {"stage_name":"metric_collector","events_processed":599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":119.8,"last_update":"2026-03-20T16:58:24.576344524Z"} +2026/03/20 16:58:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:24.586069063Z"} +2026/03/20 16:58:29 [detection_layer] {"stage_name":"detection_layer","events_processed":19,"events_dropped":0,"avg_latency_ms":9.584972090896345,"throughput_eps":0,"last_update":"2026-03-20T16:58:24.719417418Z"} +2026/03/20 16:58:29 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":91.04819300977738,"throughput_eps":0,"last_update":"2026-03-20T16:58:24.82984075Z"} +2026/03/20 16:58:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:24.575878514Z"} +2026/03/20 16:58:29 ───────────────────────────────────────────────── +2026/03/20 16:58:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:29.575511218Z"} +2026/03/20 16:58:34 [metric_collector] {"stage_name":"metric_collector","events_processed":604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":120.8,"last_update":"2026-03-20T16:58:29.575725848Z"} +2026/03/20 16:58:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:29.586417583Z"} +2026/03/20 16:58:34 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":10.264376872717076,"throughput_eps":0,"last_update":"2026-03-20T16:58:29.719686411Z"} +2026/03/20 16:58:34 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":91.04819300977738,"throughput_eps":0,"last_update":"2026-03-20T16:58:29.719695328Z"} +2026/03/20 16:58:34 ───────────────────────────────────────────────── +2026/03/20 16:58:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:34.575593102Z"} +2026/03/20 16:58:39 [metric_collector] {"stage_name":"metric_collector","events_processed":609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":121.8,"last_update":"2026-03-20T16:58:34.576004367Z"} +2026/03/20 16:58:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":246,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:34.587315396Z"} +2026/03/20 16:58:39 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":10.264376872717076,"throughput_eps":0,"last_update":"2026-03-20T16:58:34.71967959Z"} +2026/03/20 16:58:39 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":91.04819300977738,"throughput_eps":0,"last_update":"2026-03-20T16:58:34.719692595Z"} +2026/03/20 16:58:39 ───────────────────────────────────────────────── +2026/03/20 16:58:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:39.584840239Z"} +2026/03/20 16:58:44 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":10.264376872717076,"throughput_eps":0,"last_update":"2026-03-20T16:58:39.719037545Z"} +2026/03/20 16:58:44 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":91.04819300977738,"throughput_eps":0,"last_update":"2026-03-20T16:58:39.719045119Z"} +2026/03/20 16:58:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:39.575694411Z"} +2026/03/20 16:58:44 [metric_collector] {"stage_name":"metric_collector","events_processed":614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":122.8,"last_update":"2026-03-20T16:58:39.576193133Z"} +2026/03/20 16:58:44 ───────────────────────────────────────────────── +2026/03/20 16:58:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:44.576257424Z"} +2026/03/20 16:58:49 [metric_collector] {"stage_name":"metric_collector","events_processed":619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":123.8,"last_update":"2026-03-20T16:58:44.576568808Z"} +2026/03/20 16:58:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:44.585154418Z"} +2026/03/20 16:58:49 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":10.264376872717076,"throughput_eps":0,"last_update":"2026-03-20T16:58:44.719481015Z"} +2026/03/20 16:58:49 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":91.04819300977738,"throughput_eps":0,"last_update":"2026-03-20T16:58:44.719489452Z"} +2026/03/20 16:58:49 ───────────────────────────────────────────────── +2026/03/20 16:58:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:54 [transform_engine] {"stage_name":"transform_engine","events_processed":20,"events_dropped":0,"avg_latency_ms":91.04819300977738,"throughput_eps":0,"last_update":"2026-03-20T16:58:49.719404872Z"} +2026/03/20 16:58:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:49.575845996Z"} +2026/03/20 16:58:54 [metric_collector] {"stage_name":"metric_collector","events_processed":624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":124.8,"last_update":"2026-03-20T16:58:49.576218767Z"} +2026/03/20 16:58:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:49.584998508Z"} +2026/03/20 16:58:54 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":10.264376872717076,"throughput_eps":0,"last_update":"2026-03-20T16:58:49.719390464Z"} +2026/03/20 16:58:54 ───────────────────────────────────────────────── +2026/03/20 16:58:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:58:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:54.575615336Z"} +2026/03/20 16:58:59 [metric_collector] {"stage_name":"metric_collector","events_processed":629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":125.8,"last_update":"2026-03-20T16:58:54.576103578Z"} +2026/03/20 16:58:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:54.586979592Z"} +2026/03/20 16:58:59 [detection_layer] {"stage_name":"detection_layer","events_processed":20,"events_dropped":0,"avg_latency_ms":10.264376872717076,"throughput_eps":0,"last_update":"2026-03-20T16:58:54.719211618Z"} +2026/03/20 16:58:59 [transform_engine] {"stage_name":"transform_engine","events_processed":21,"events_dropped":0,"avg_latency_ms":95.5786058078219,"throughput_eps":0,"last_update":"2026-03-20T16:58:54.832922073Z"} +2026/03/20 16:58:59 ───────────────────────────────────────────────── +2026/03/20 16:59:04 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:59.575721116Z"} +2026/03/20 16:59:04 [metric_collector] {"stage_name":"metric_collector","events_processed":634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":126.8,"last_update":"2026-03-20T16:58:59.575961475Z"} +2026/03/20 16:59:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:58:59.587553747Z"} +2026/03/20 16:59:04 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":10.531482698173662,"throughput_eps":0,"last_update":"2026-03-20T16:58:59.719804651Z"} +2026/03/20 16:59:04 [transform_engine] {"stage_name":"transform_engine","events_processed":21,"events_dropped":0,"avg_latency_ms":95.5786058078219,"throughput_eps":0,"last_update":"2026-03-20T16:58:59.718706715Z"} +2026/03/20 16:59:04 ───────────────────────────────────────────────── +2026/03/20 16:59:09 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:04.575679277Z"} +2026/03/20 16:59:09 [metric_collector] {"stage_name":"metric_collector","events_processed":639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":127.8,"last_update":"2026-03-20T16:59:04.576062709Z"} +2026/03/20 16:59:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:04.587136813Z"} +2026/03/20 16:59:09 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":10.531482698173662,"throughput_eps":0,"last_update":"2026-03-20T16:59:04.719708694Z"} +2026/03/20 16:59:09 [transform_engine] {"stage_name":"transform_engine","events_processed":21,"events_dropped":0,"avg_latency_ms":95.5786058078219,"throughput_eps":0,"last_update":"2026-03-20T16:59:04.71959658Z"} +2026/03/20 16:59:09 ───────────────────────────────────────────────── +2026/03/20 16:59:14 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:14 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":10.531482698173662,"throughput_eps":0,"last_update":"2026-03-20T16:59:09.719780283Z"} +2026/03/20 16:59:14 [transform_engine] {"stage_name":"transform_engine","events_processed":21,"events_dropped":0,"avg_latency_ms":95.5786058078219,"throughput_eps":0,"last_update":"2026-03-20T16:59:09.718703898Z"} +2026/03/20 16:59:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:09.575552574Z"} +2026/03/20 16:59:14 [metric_collector] {"stage_name":"metric_collector","events_processed":644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":128.8,"last_update":"2026-03-20T16:59:09.575825525Z"} +2026/03/20 16:59:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:09.586483535Z"} +2026/03/20 16:59:14 ───────────────────────────────────────────────── +2026/03/20 16:59:19 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:14.575816182Z"} +2026/03/20 16:59:19 [metric_collector] {"stage_name":"metric_collector","events_processed":649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":129.8,"last_update":"2026-03-20T16:59:14.576060648Z"} +2026/03/20 16:59:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:14.585935846Z"} +2026/03/20 16:59:19 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":10.531482698173662,"throughput_eps":0,"last_update":"2026-03-20T16:59:14.719162963Z"} +2026/03/20 16:59:19 [transform_engine] {"stage_name":"transform_engine","events_processed":21,"events_dropped":0,"avg_latency_ms":95.5786058078219,"throughput_eps":0,"last_update":"2026-03-20T16:59:14.719265679Z"} +2026/03/20 16:59:19 ───────────────────────────────────────────────── +2026/03/20 16:59:24 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:19.575518716Z"} +2026/03/20 16:59:24 [metric_collector] {"stage_name":"metric_collector","events_processed":654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":130.8,"last_update":"2026-03-20T16:59:19.575961161Z"} +2026/03/20 16:59:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:19.586286869Z"} +2026/03/20 16:59:24 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":10.531482698173662,"throughput_eps":0,"last_update":"2026-03-20T16:59:19.719608981Z"} +2026/03/20 16:59:24 [transform_engine] {"stage_name":"transform_engine","events_processed":21,"events_dropped":0,"avg_latency_ms":95.5786058078219,"throughput_eps":0,"last_update":"2026-03-20T16:59:19.719640972Z"} +2026/03/20 16:59:24 ───────────────────────────────────────────────── +2026/03/20 16:59:29 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:24.575849435Z"} +2026/03/20 16:59:29 [metric_collector] {"stage_name":"metric_collector","events_processed":659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":131.8,"last_update":"2026-03-20T16:59:24.576193251Z"} +2026/03/20 16:59:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:24.585961265Z"} +2026/03/20 16:59:29 [detection_layer] {"stage_name":"detection_layer","events_processed":21,"events_dropped":0,"avg_latency_ms":10.531482698173662,"throughput_eps":0,"last_update":"2026-03-20T16:59:24.719320451Z"} +2026/03/20 16:59:29 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":99.16793024625753,"throughput_eps":0,"last_update":"2026-03-20T16:59:24.832801464Z"} +2026/03/20 16:59:29 ───────────────────────────────────────────────── +2026/03/20 16:59:34 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:29.585224084Z"} +2026/03/20 16:59:34 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":10.42396715853893,"throughput_eps":0,"last_update":"2026-03-20T16:59:29.719766712Z"} +2026/03/20 16:59:34 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":99.16793024625753,"throughput_eps":0,"last_update":"2026-03-20T16:59:29.719682101Z"} +2026/03/20 16:59:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:29.575519621Z"} +2026/03/20 16:59:34 [metric_collector] {"stage_name":"metric_collector","events_processed":664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":132.8,"last_update":"2026-03-20T16:59:29.575452604Z"} +2026/03/20 16:59:34 ───────────────────────────────────────────────── +2026/03/20 16:59:39 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:34.585855251Z"} +2026/03/20 16:59:39 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":10.42396715853893,"throughput_eps":0,"last_update":"2026-03-20T16:59:34.719084413Z"} +2026/03/20 16:59:39 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":99.16793024625753,"throughput_eps":0,"last_update":"2026-03-20T16:59:34.719106716Z"} +2026/03/20 16:59:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:34.575568926Z"} +2026/03/20 16:59:39 [metric_collector] {"stage_name":"metric_collector","events_processed":669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":133.8,"last_update":"2026-03-20T16:59:34.57561867Z"} +2026/03/20 16:59:39 ───────────────────────────────────────────────── +2026/03/20 16:59:44 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:39.575901274Z"} +2026/03/20 16:59:44 [metric_collector] {"stage_name":"metric_collector","events_processed":674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":134.8,"last_update":"2026-03-20T16:59:39.576251492Z"} +2026/03/20 16:59:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:39.585866968Z"} +2026/03/20 16:59:44 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":10.42396715853893,"throughput_eps":0,"last_update":"2026-03-20T16:59:39.719124587Z"} +2026/03/20 16:59:44 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":99.16793024625753,"throughput_eps":0,"last_update":"2026-03-20T16:59:39.71915793Z"} +2026/03/20 16:59:44 ───────────────────────────────────────────────── +2026/03/20 16:59:49 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:44.575915099Z"} +2026/03/20 16:59:49 [metric_collector] {"stage_name":"metric_collector","events_processed":679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":135.8,"last_update":"2026-03-20T16:59:44.576334601Z"} +2026/03/20 16:59:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:44.58510336Z"} +2026/03/20 16:59:49 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":10.42396715853893,"throughput_eps":0,"last_update":"2026-03-20T16:59:44.719332074Z"} +2026/03/20 16:59:49 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":99.16793024625753,"throughput_eps":0,"last_update":"2026-03-20T16:59:44.719314511Z"} +2026/03/20 16:59:49 ───────────────────────────────────────────────── +2026/03/20 16:59:54 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:54 [transform_engine] {"stage_name":"transform_engine","events_processed":22,"events_dropped":0,"avg_latency_ms":99.16793024625753,"throughput_eps":0,"last_update":"2026-03-20T16:59:49.718943767Z"} +2026/03/20 16:59:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:49.575497884Z"} +2026/03/20 16:59:54 [metric_collector] {"stage_name":"metric_collector","events_processed":684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":136.8,"last_update":"2026-03-20T16:59:49.575906925Z"} +2026/03/20 16:59:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":276,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:49.586744887Z"} +2026/03/20 16:59:54 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":10.42396715853893,"throughput_eps":0,"last_update":"2026-03-20T16:59:49.718963085Z"} +2026/03/20 16:59:54 ───────────────────────────────────────────────── +2026/03/20 16:59:59 ── Pipeline Health ────────────────────────────── +2026/03/20 16:59:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:54.575535614Z"} +2026/03/20 16:59:59 [metric_collector] {"stage_name":"metric_collector","events_processed":689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":137.8,"last_update":"2026-03-20T16:59:54.576138405Z"} +2026/03/20 16:59:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:54.586905182Z"} +2026/03/20 16:59:59 [detection_layer] {"stage_name":"detection_layer","events_processed":22,"events_dropped":0,"avg_latency_ms":10.42396715853893,"throughput_eps":0,"last_update":"2026-03-20T16:59:54.719183335Z"} +2026/03/20 16:59:59 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":92.60210879700604,"throughput_eps":0,"last_update":"2026-03-20T16:59:54.785489426Z"} +2026/03/20 16:59:59 ───────────────────────────────────────────────── +2026/03/20 17:00:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:59.575829146Z"} +2026/03/20 17:00:04 [metric_collector] {"stage_name":"metric_collector","events_processed":699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":139.8,"last_update":"2026-03-20T17:00:04.575767769Z"} +2026/03/20 17:00:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T16:59:59.585053397Z"} +2026/03/20 17:00:04 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":10.571536326831145,"throughput_eps":0,"last_update":"2026-03-20T16:59:59.719376068Z"} +2026/03/20 17:00:04 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":92.60210879700604,"throughput_eps":0,"last_update":"2026-03-20T16:59:59.719342303Z"} +2026/03/20 17:00:04 ───────────────────────────────────────────────── +2026/03/20 17:00:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:09 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":92.60210879700604,"throughput_eps":0,"last_update":"2026-03-20T17:00:04.719312079Z"} +2026/03/20 17:00:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:04.575905572Z"} +2026/03/20 17:00:09 [metric_collector] {"stage_name":"metric_collector","events_processed":699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":139.8,"last_update":"2026-03-20T17:00:04.575767769Z"} +2026/03/20 17:00:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:04.592106683Z"} +2026/03/20 17:00:09 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":10.571536326831145,"throughput_eps":0,"last_update":"2026-03-20T17:00:04.719443631Z"} +2026/03/20 17:00:09 ───────────────────────────────────────────────── +2026/03/20 17:00:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:09.575518206Z"} +2026/03/20 17:00:14 [metric_collector] {"stage_name":"metric_collector","events_processed":704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":140.8,"last_update":"2026-03-20T17:00:09.5757922Z"} +2026/03/20 17:00:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:09.585958272Z"} +2026/03/20 17:00:14 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":10.571536326831145,"throughput_eps":0,"last_update":"2026-03-20T17:00:09.719222052Z"} +2026/03/20 17:00:14 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":92.60210879700604,"throughput_eps":0,"last_update":"2026-03-20T17:00:09.71924693Z"} +2026/03/20 17:00:14 ───────────────────────────────────────────────── +2026/03/20 17:00:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":286,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:14.586416202Z"} +2026/03/20 17:00:19 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":10.571536326831145,"throughput_eps":0,"last_update":"2026-03-20T17:00:14.719767942Z"} +2026/03/20 17:00:19 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":92.60210879700604,"throughput_eps":0,"last_update":"2026-03-20T17:00:14.718642752Z"} +2026/03/20 17:00:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:14.575798857Z"} +2026/03/20 17:00:19 [metric_collector] {"stage_name":"metric_collector","events_processed":709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":141.8,"last_update":"2026-03-20T17:00:14.57612543Z"} +2026/03/20 17:00:19 ───────────────────────────────────────────────── +2026/03/20 17:00:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:19.575747379Z"} +2026/03/20 17:00:24 [metric_collector] {"stage_name":"metric_collector","events_processed":714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":142.8,"last_update":"2026-03-20T17:00:19.576547748Z"} +2026/03/20 17:00:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:19.585869228Z"} +2026/03/20 17:00:24 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":10.571536326831145,"throughput_eps":0,"last_update":"2026-03-20T17:00:19.719095851Z"} +2026/03/20 17:00:24 [transform_engine] {"stage_name":"transform_engine","events_processed":23,"events_dropped":0,"avg_latency_ms":92.60210879700604,"throughput_eps":0,"last_update":"2026-03-20T17:00:19.719104006Z"} +2026/03/20 17:00:24 ───────────────────────────────────────────────── +2026/03/20 17:00:24 [ANOMALY] time=2026-03-20T17:00:24Z score=0.9607 method=SEAD details=MAD!:w=0.24,s=0.87 RRCF-fast!:w=0.19,s=1.00 RRCF-mid!:w=0.19,s=1.00 RRCF-slow!:w=0.19,s=1.00 COPOD!:w=0.20,s=0.96 +2026/03/20 17:00:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:29 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":87.06673043760483,"throughput_eps":0,"last_update":"2026-03-20T17:00:24.783955897Z"} +2026/03/20 17:00:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:24.575689981Z"} +2026/03/20 17:00:29 [metric_collector] {"stage_name":"metric_collector","events_processed":719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":143.8,"last_update":"2026-03-20T17:00:24.576255702Z"} +2026/03/20 17:00:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:24.586677085Z"} +2026/03/20 17:00:29 [detection_layer] {"stage_name":"detection_layer","events_processed":23,"events_dropped":0,"avg_latency_ms":10.571536326831145,"throughput_eps":0,"last_update":"2026-03-20T17:00:24.71901454Z"} +2026/03/20 17:00:29 ───────────────────────────────────────────────── +2026/03/20 17:00:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:34 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":87.06673043760483,"throughput_eps":0,"last_update":"2026-03-20T17:00:29.719071412Z"} +2026/03/20 17:00:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:29.575573229Z"} +2026/03/20 17:00:34 [metric_collector] {"stage_name":"metric_collector","events_processed":724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":144.8,"last_update":"2026-03-20T17:00:29.575996638Z"} +2026/03/20 17:00:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:29.588715201Z"} +2026/03/20 17:00:34 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":10.324819661464916,"throughput_eps":0,"last_update":"2026-03-20T17:00:29.719062915Z"} +2026/03/20 17:00:34 ───────────────────────────────────────────────── +2026/03/20 17:00:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:34.575687901Z"} +2026/03/20 17:00:39 [metric_collector] {"stage_name":"metric_collector","events_processed":729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":145.8,"last_update":"2026-03-20T17:00:34.57602213Z"} +2026/03/20 17:00:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:34.585972834Z"} +2026/03/20 17:00:39 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":10.324819661464916,"throughput_eps":0,"last_update":"2026-03-20T17:00:34.719222645Z"} +2026/03/20 17:00:39 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":87.06673043760483,"throughput_eps":0,"last_update":"2026-03-20T17:00:34.719234627Z"} +2026/03/20 17:00:39 ───────────────────────────────────────────────── +2026/03/20 17:00:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:44 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":87.06673043760483,"throughput_eps":0,"last_update":"2026-03-20T17:00:39.719710071Z"} +2026/03/20 17:00:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:39.57603646Z"} +2026/03/20 17:00:44 [metric_collector] {"stage_name":"metric_collector","events_processed":734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":146.8,"last_update":"2026-03-20T17:00:39.576433108Z"} +2026/03/20 17:00:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:39.585402058Z"} +2026/03/20 17:00:44 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":10.324819661464916,"throughput_eps":0,"last_update":"2026-03-20T17:00:39.719702947Z"} +2026/03/20 17:00:44 ───────────────────────────────────────────────── +2026/03/20 17:00:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:44.575512829Z"} +2026/03/20 17:00:49 [metric_collector] {"stage_name":"metric_collector","events_processed":739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":147.8,"last_update":"2026-03-20T17:00:44.576029796Z"} +2026/03/20 17:00:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:44.584832629Z"} +2026/03/20 17:00:49 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":10.324819661464916,"throughput_eps":0,"last_update":"2026-03-20T17:00:44.719115715Z"} +2026/03/20 17:00:49 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":87.06673043760483,"throughput_eps":0,"last_update":"2026-03-20T17:00:44.719130795Z"} +2026/03/20 17:00:49 ───────────────────────────────────────────────── +2026/03/20 17:00:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:49.576094299Z"} +2026/03/20 17:00:54 [metric_collector] {"stage_name":"metric_collector","events_processed":744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":148.8,"last_update":"2026-03-20T17:00:49.576411686Z"} +2026/03/20 17:00:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:49.585564599Z"} +2026/03/20 17:00:54 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":10.324819661464916,"throughput_eps":0,"last_update":"2026-03-20T17:00:49.719809112Z"} +2026/03/20 17:00:54 [transform_engine] {"stage_name":"transform_engine","events_processed":24,"events_dropped":0,"avg_latency_ms":87.06673043760483,"throughput_eps":0,"last_update":"2026-03-20T17:00:49.718654225Z"} +2026/03/20 17:00:54 ───────────────────────────────────────────────── +2026/03/20 17:00:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:00:59 [transform_engine] {"stage_name":"transform_engine","events_processed":25,"events_dropped":0,"avg_latency_ms":92.18896135008387,"throughput_eps":0,"last_update":"2026-03-20T17:00:54.832073248Z"} +2026/03/20 17:00:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:54.575620644Z"} +2026/03/20 17:00:59 [metric_collector] {"stage_name":"metric_collector","events_processed":749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":149.8,"last_update":"2026-03-20T17:00:54.575819775Z"} +2026/03/20 17:00:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:54.586115603Z"} +2026/03/20 17:00:59 [detection_layer] {"stage_name":"detection_layer","events_processed":24,"events_dropped":0,"avg_latency_ms":10.324819661464916,"throughput_eps":0,"last_update":"2026-03-20T17:00:54.719382488Z"} +2026/03/20 17:00:59 ───────────────────────────────────────────────── +2026/03/20 17:01:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:59.575744382Z"} +2026/03/20 17:01:04 [metric_collector] {"stage_name":"metric_collector","events_processed":754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":150.8,"last_update":"2026-03-20T17:00:59.576250659Z"} +2026/03/20 17:01:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:00:59.584525485Z"} +2026/03/20 17:01:04 [detection_layer] {"stage_name":"detection_layer","events_processed":25,"events_dropped":0,"avg_latency_ms":10.383887329171934,"throughput_eps":0,"last_update":"2026-03-20T17:00:59.718788736Z"} +2026/03/20 17:01:04 [transform_engine] {"stage_name":"transform_engine","events_processed":25,"events_dropped":0,"avg_latency_ms":92.18896135008387,"throughput_eps":0,"last_update":"2026-03-20T17:00:59.718745774Z"} +2026/03/20 17:01:04 ───────────────────────────────────────────────── +2026/03/20 17:01:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:09 [detection_layer] {"stage_name":"detection_layer","events_processed":25,"events_dropped":0,"avg_latency_ms":10.383887329171934,"throughput_eps":0,"last_update":"2026-03-20T17:01:04.719662761Z"} +2026/03/20 17:01:09 [transform_engine] {"stage_name":"transform_engine","events_processed":25,"events_dropped":0,"avg_latency_ms":92.18896135008387,"throughput_eps":0,"last_update":"2026-03-20T17:01:04.719766309Z"} +2026/03/20 17:01:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:04.575958184Z"} +2026/03/20 17:01:09 [metric_collector] {"stage_name":"metric_collector","events_processed":759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":151.8,"last_update":"2026-03-20T17:01:04.576705833Z"} +2026/03/20 17:01:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:04.586416895Z"} +2026/03/20 17:01:09 ───────────────────────────────────────────────── +2026/03/20 17:01:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:14 [detection_layer] {"stage_name":"detection_layer","events_processed":25,"events_dropped":0,"avg_latency_ms":10.383887329171934,"throughput_eps":0,"last_update":"2026-03-20T17:01:09.71879442Z"} +2026/03/20 17:01:14 [transform_engine] {"stage_name":"transform_engine","events_processed":25,"events_dropped":0,"avg_latency_ms":92.18896135008387,"throughput_eps":0,"last_update":"2026-03-20T17:01:09.718734295Z"} +2026/03/20 17:01:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:09.575790943Z"} +2026/03/20 17:01:14 [metric_collector] {"stage_name":"metric_collector","events_processed":764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":152.8,"last_update":"2026-03-20T17:01:09.576098671Z"} +2026/03/20 17:01:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:09.586603221Z"} +2026/03/20 17:01:14 ───────────────────────────────────────────────── +2026/03/20 17:01:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:14.575749295Z"} +2026/03/20 17:01:19 [metric_collector] {"stage_name":"metric_collector","events_processed":769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":153.8,"last_update":"2026-03-20T17:01:14.576130213Z"} +2026/03/20 17:01:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:14.586229949Z"} +2026/03/20 17:01:19 [detection_layer] {"stage_name":"detection_layer","events_processed":25,"events_dropped":0,"avg_latency_ms":10.383887329171934,"throughput_eps":0,"last_update":"2026-03-20T17:01:14.71959791Z"} +2026/03/20 17:01:19 [transform_engine] {"stage_name":"transform_engine","events_processed":25,"events_dropped":0,"avg_latency_ms":92.18896135008387,"throughput_eps":0,"last_update":"2026-03-20T17:01:14.71955594Z"} +2026/03/20 17:01:19 ───────────────────────────────────────────────── +2026/03/20 17:01:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:19.575942033Z"} +2026/03/20 17:01:24 [metric_collector] {"stage_name":"metric_collector","events_processed":774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":154.8,"last_update":"2026-03-20T17:01:19.576226317Z"} +2026/03/20 17:01:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:19.584816288Z"} +2026/03/20 17:01:24 [detection_layer] {"stage_name":"detection_layer","events_processed":25,"events_dropped":0,"avg_latency_ms":10.383887329171934,"throughput_eps":0,"last_update":"2026-03-20T17:01:19.7192108Z"} +2026/03/20 17:01:24 [transform_engine] {"stage_name":"transform_engine","events_processed":25,"events_dropped":0,"avg_latency_ms":92.18896135008387,"throughput_eps":0,"last_update":"2026-03-20T17:01:19.719311162Z"} +2026/03/20 17:01:24 ───────────────────────────────────────────────── +2026/03/20 17:01:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:24.57618224Z"} +2026/03/20 17:01:29 [metric_collector] {"stage_name":"metric_collector","events_processed":779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":155.8,"last_update":"2026-03-20T17:01:24.576169595Z"} +2026/03/20 17:01:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:24.586245798Z"} +2026/03/20 17:01:29 [detection_layer] {"stage_name":"detection_layer","events_processed":25,"events_dropped":0,"avg_latency_ms":10.383887329171934,"throughput_eps":0,"last_update":"2026-03-20T17:01:24.719523225Z"} +2026/03/20 17:01:29 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":95.8821968800671,"throughput_eps":0,"last_update":"2026-03-20T17:01:24.830114342Z"} +2026/03/20 17:01:29 ───────────────────────────────────────────────── +2026/03/20 17:01:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:29.575918663Z"} +2026/03/20 17:01:34 [metric_collector] {"stage_name":"metric_collector","events_processed":784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":156.8,"last_update":"2026-03-20T17:01:29.576268762Z"} +2026/03/20 17:01:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:29.585905996Z"} +2026/03/20 17:01:34 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":10.453477063337548,"throughput_eps":0,"last_update":"2026-03-20T17:01:29.719393395Z"} +2026/03/20 17:01:34 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":95.8821968800671,"throughput_eps":0,"last_update":"2026-03-20T17:01:29.719253247Z"} +2026/03/20 17:01:34 ───────────────────────────────────────────────── +2026/03/20 17:01:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:34.575543111Z"} +2026/03/20 17:01:39 [metric_collector] {"stage_name":"metric_collector","events_processed":789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":157.8,"last_update":"2026-03-20T17:01:34.575946723Z"} +2026/03/20 17:01:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:34.585508674Z"} +2026/03/20 17:01:39 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":10.453477063337548,"throughput_eps":0,"last_update":"2026-03-20T17:01:34.719029125Z"} +2026/03/20 17:01:39 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":95.8821968800671,"throughput_eps":0,"last_update":"2026-03-20T17:01:34.718830094Z"} +2026/03/20 17:01:39 ───────────────────────────────────────────────── +2026/03/20 17:01:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:44 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":10.453477063337548,"throughput_eps":0,"last_update":"2026-03-20T17:01:39.719610316Z"} +2026/03/20 17:01:44 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":95.8821968800671,"throughput_eps":0,"last_update":"2026-03-20T17:01:39.719724615Z"} +2026/03/20 17:01:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:39.575779864Z"} +2026/03/20 17:01:44 [metric_collector] {"stage_name":"metric_collector","events_processed":794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":158.8,"last_update":"2026-03-20T17:01:39.576183374Z"} +2026/03/20 17:01:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":320,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:39.585218299Z"} +2026/03/20 17:01:44 ───────────────────────────────────────────────── +2026/03/20 17:01:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:44.575513875Z"} +2026/03/20 17:01:49 [metric_collector] {"stage_name":"metric_collector","events_processed":799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":159.8,"last_update":"2026-03-20T17:01:44.576051052Z"} +2026/03/20 17:01:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:44.586865951Z"} +2026/03/20 17:01:49 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":10.453477063337548,"throughput_eps":0,"last_update":"2026-03-20T17:01:44.719232424Z"} +2026/03/20 17:01:49 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":95.8821968800671,"throughput_eps":0,"last_update":"2026-03-20T17:01:44.719265669Z"} +2026/03/20 17:01:49 ───────────────────────────────────────────────── +2026/03/20 17:01:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:49.575863551Z"} +2026/03/20 17:01:54 [metric_collector] {"stage_name":"metric_collector","events_processed":804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":160.8,"last_update":"2026-03-20T17:01:49.576170658Z"} +2026/03/20 17:01:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:49.585713184Z"} +2026/03/20 17:01:54 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":10.453477063337548,"throughput_eps":0,"last_update":"2026-03-20T17:01:49.719167037Z"} +2026/03/20 17:01:54 [transform_engine] {"stage_name":"transform_engine","events_processed":26,"events_dropped":0,"avg_latency_ms":95.8821968800671,"throughput_eps":0,"last_update":"2026-03-20T17:01:49.719059381Z"} +2026/03/20 17:01:54 ───────────────────────────────────────────────── +2026/03/20 17:01:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:01:59 [metric_collector] {"stage_name":"metric_collector","events_processed":809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":161.8,"last_update":"2026-03-20T17:01:54.576707165Z"} +2026/03/20 17:01:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:54.585229511Z"} +2026/03/20 17:01:59 [detection_layer] {"stage_name":"detection_layer","events_processed":26,"events_dropped":0,"avg_latency_ms":10.453477063337548,"throughput_eps":0,"last_update":"2026-03-20T17:01:54.720430354Z"} +2026/03/20 17:01:59 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":89.91524970405368,"throughput_eps":0,"last_update":"2026-03-20T17:01:54.7855338Z"} +2026/03/20 17:01:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:54.57595145Z"} +2026/03/20 17:01:59 ───────────────────────────────────────────────── +2026/03/20 17:02:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:59.575594849Z"} +2026/03/20 17:02:04 [metric_collector] {"stage_name":"metric_collector","events_processed":814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":162.8,"last_update":"2026-03-20T17:01:59.575804821Z"} +2026/03/20 17:02:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:01:59.586144563Z"} +2026/03/20 17:02:04 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":9.202104650670039,"throughput_eps":0,"last_update":"2026-03-20T17:01:59.719473486Z"} +2026/03/20 17:02:04 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":89.91524970405368,"throughput_eps":0,"last_update":"2026-03-20T17:01:59.719484777Z"} +2026/03/20 17:02:04 ───────────────────────────────────────────────── +2026/03/20 17:02:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":330,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:04.585065168Z"} +2026/03/20 17:02:09 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":9.202104650670039,"throughput_eps":0,"last_update":"2026-03-20T17:02:04.719453314Z"} +2026/03/20 17:02:09 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":89.91524970405368,"throughput_eps":0,"last_update":"2026-03-20T17:02:04.719465789Z"} +2026/03/20 17:02:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:04.575867389Z"} +2026/03/20 17:02:09 [metric_collector] {"stage_name":"metric_collector","events_processed":819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":163.8,"last_update":"2026-03-20T17:02:04.576300587Z"} +2026/03/20 17:02:09 ───────────────────────────────────────────────── +2026/03/20 17:02:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:09.575917927Z"} +2026/03/20 17:02:14 [metric_collector] {"stage_name":"metric_collector","events_processed":824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":164.8,"last_update":"2026-03-20T17:02:09.576470714Z"} +2026/03/20 17:02:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:09.585536641Z"} +2026/03/20 17:02:14 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":9.202104650670039,"throughput_eps":0,"last_update":"2026-03-20T17:02:09.718826837Z"} +2026/03/20 17:02:14 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":89.91524970405368,"throughput_eps":0,"last_update":"2026-03-20T17:02:09.71883876Z"} +2026/03/20 17:02:14 ───────────────────────────────────────────────── +2026/03/20 17:02:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:14.585213956Z"} +2026/03/20 17:02:19 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":9.202104650670039,"throughput_eps":0,"last_update":"2026-03-20T17:02:14.719583856Z"} +2026/03/20 17:02:19 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":89.91524970405368,"throughput_eps":0,"last_update":"2026-03-20T17:02:14.719596631Z"} +2026/03/20 17:02:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:14.575900775Z"} +2026/03/20 17:02:19 [metric_collector] {"stage_name":"metric_collector","events_processed":829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":165.8,"last_update":"2026-03-20T17:02:14.576258329Z"} +2026/03/20 17:02:19 ───────────────────────────────────────────────── +2026/03/20 17:02:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:19.575856769Z"} +2026/03/20 17:02:24 [metric_collector] {"stage_name":"metric_collector","events_processed":834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":166.8,"last_update":"2026-03-20T17:02:19.576194084Z"} +2026/03/20 17:02:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:19.586460038Z"} +2026/03/20 17:02:24 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":9.202104650670039,"throughput_eps":0,"last_update":"2026-03-20T17:02:19.719718921Z"} +2026/03/20 17:02:24 [transform_engine] {"stage_name":"transform_engine","events_processed":27,"events_dropped":0,"avg_latency_ms":89.91524970405368,"throughput_eps":0,"last_update":"2026-03-20T17:02:19.719725955Z"} +2026/03/20 17:02:24 ───────────────────────────────────────────────── +2026/03/20 17:02:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:29 [metric_collector] {"stage_name":"metric_collector","events_processed":839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":167.8,"last_update":"2026-03-20T17:02:24.576565528Z"} +2026/03/20 17:02:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:24.58503712Z"} +2026/03/20 17:02:29 [detection_layer] {"stage_name":"detection_layer","events_processed":27,"events_dropped":0,"avg_latency_ms":9.202104650670039,"throughput_eps":0,"last_update":"2026-03-20T17:02:24.719268434Z"} +2026/03/20 17:02:29 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":84.77009876324294,"throughput_eps":0,"last_update":"2026-03-20T17:02:24.783602876Z"} +2026/03/20 17:02:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:29.57559238Z"} +2026/03/20 17:02:29 ───────────────────────────────────────────────── +2026/03/20 17:02:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:34 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":9.834080120536033,"throughput_eps":0,"last_update":"2026-03-20T17:02:29.719235774Z"} +2026/03/20 17:02:34 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":84.77009876324294,"throughput_eps":0,"last_update":"2026-03-20T17:02:29.719297973Z"} +2026/03/20 17:02:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:29.57559238Z"} +2026/03/20 17:02:34 [metric_collector] {"stage_name":"metric_collector","events_processed":844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":168.8,"last_update":"2026-03-20T17:02:29.576227244Z"} +2026/03/20 17:02:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:29.584908578Z"} +2026/03/20 17:02:34 ───────────────────────────────────────────────── +2026/03/20 17:02:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:39 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":84.77009876324294,"throughput_eps":0,"last_update":"2026-03-20T17:02:34.719522754Z"} +2026/03/20 17:02:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:34.575555541Z"} +2026/03/20 17:02:39 [metric_collector] {"stage_name":"metric_collector","events_processed":849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":169.8,"last_update":"2026-03-20T17:02:34.575954985Z"} +2026/03/20 17:02:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":342,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:34.586198849Z"} +2026/03/20 17:02:39 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":9.834080120536033,"throughput_eps":0,"last_update":"2026-03-20T17:02:34.719542461Z"} +2026/03/20 17:02:39 ───────────────────────────────────────────────── +2026/03/20 17:02:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:39.575797909Z"} +2026/03/20 17:02:44 [metric_collector] {"stage_name":"metric_collector","events_processed":854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":170.8,"last_update":"2026-03-20T17:02:39.576873456Z"} +2026/03/20 17:02:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:39.586510129Z"} +2026/03/20 17:02:44 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":9.834080120536033,"throughput_eps":0,"last_update":"2026-03-20T17:02:39.718863677Z"} +2026/03/20 17:02:44 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":84.77009876324294,"throughput_eps":0,"last_update":"2026-03-20T17:02:39.71872434Z"} +2026/03/20 17:02:44 ───────────────────────────────────────────────── +2026/03/20 17:02:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:49 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":84.77009876324294,"throughput_eps":0,"last_update":"2026-03-20T17:02:44.719521181Z"} +2026/03/20 17:02:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:44.575560984Z"} +2026/03/20 17:02:49 [metric_collector] {"stage_name":"metric_collector","events_processed":859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":171.8,"last_update":"2026-03-20T17:02:44.575623934Z"} +2026/03/20 17:02:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:44.586289085Z"} +2026/03/20 17:02:49 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":9.834080120536033,"throughput_eps":0,"last_update":"2026-03-20T17:02:44.719608959Z"} +2026/03/20 17:02:49 ───────────────────────────────────────────────── +2026/03/20 17:02:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:49.576055202Z"} +2026/03/20 17:02:54 [metric_collector] {"stage_name":"metric_collector","events_processed":864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":172.8,"last_update":"2026-03-20T17:02:49.576387287Z"} +2026/03/20 17:02:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:49.586262397Z"} +2026/03/20 17:02:54 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":9.834080120536033,"throughput_eps":0,"last_update":"2026-03-20T17:02:49.719555149Z"} +2026/03/20 17:02:54 [transform_engine] {"stage_name":"transform_engine","events_processed":28,"events_dropped":0,"avg_latency_ms":84.77009876324294,"throughput_eps":0,"last_update":"2026-03-20T17:02:49.719521855Z"} +2026/03/20 17:02:54 ───────────────────────────────────────────────── +2026/03/20 17:02:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:02:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:54.575635137Z"} +2026/03/20 17:02:59 [metric_collector] {"stage_name":"metric_collector","events_processed":869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":173.8,"last_update":"2026-03-20T17:02:54.576076873Z"} +2026/03/20 17:02:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":350,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:54.586379691Z"} +2026/03/20 17:02:59 [detection_layer] {"stage_name":"detection_layer","events_processed":28,"events_dropped":0,"avg_latency_ms":9.834080120536033,"throughput_eps":0,"last_update":"2026-03-20T17:02:54.719459032Z"} +2026/03/20 17:02:59 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":80.79570821059436,"throughput_eps":0,"last_update":"2026-03-20T17:02:54.78447845Z"} +2026/03/20 17:02:59 ───────────────────────────────────────────────── +2026/03/20 17:03:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:59.575522983Z"} +2026/03/20 17:03:04 [metric_collector] {"stage_name":"metric_collector","events_processed":874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":174.8,"last_update":"2026-03-20T17:02:59.575984966Z"} +2026/03/20 17:03:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:02:59.586496415Z"} +2026/03/20 17:03:04 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":10.233033896428827,"throughput_eps":0,"last_update":"2026-03-20T17:02:59.719831162Z"} +2026/03/20 17:03:04 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":80.79570821059436,"throughput_eps":0,"last_update":"2026-03-20T17:02:59.718681904Z"} +2026/03/20 17:03:04 ───────────────────────────────────────────────── +2026/03/20 17:03:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:09 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":80.79570821059436,"throughput_eps":0,"last_update":"2026-03-20T17:03:04.719157239Z"} +2026/03/20 17:03:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:04.575663207Z"} +2026/03/20 17:03:09 [metric_collector] {"stage_name":"metric_collector","events_processed":879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":175.8,"last_update":"2026-03-20T17:03:04.575982959Z"} +2026/03/20 17:03:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:04.58564333Z"} +2026/03/20 17:03:09 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":10.233033896428827,"throughput_eps":0,"last_update":"2026-03-20T17:03:04.71914206Z"} +2026/03/20 17:03:09 ───────────────────────────────────────────────── +2026/03/20 17:03:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:14 [metric_collector] {"stage_name":"metric_collector","events_processed":884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":176.8,"last_update":"2026-03-20T17:03:09.576140424Z"} +2026/03/20 17:03:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:09.585223531Z"} +2026/03/20 17:03:14 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":10.233033896428827,"throughput_eps":0,"last_update":"2026-03-20T17:03:09.719620329Z"} +2026/03/20 17:03:14 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":80.79570821059436,"throughput_eps":0,"last_update":"2026-03-20T17:03:09.719633043Z"} +2026/03/20 17:03:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:09.57576171Z"} +2026/03/20 17:03:14 ───────────────────────────────────────────────── +2026/03/20 17:03:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:14.575957943Z"} +2026/03/20 17:03:19 [metric_collector] {"stage_name":"metric_collector","events_processed":889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":177.8,"last_update":"2026-03-20T17:03:14.57626977Z"} +2026/03/20 17:03:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:14.586275714Z"} +2026/03/20 17:03:19 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":10.233033896428827,"throughput_eps":0,"last_update":"2026-03-20T17:03:14.719480146Z"} +2026/03/20 17:03:19 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":80.79570821059436,"throughput_eps":0,"last_update":"2026-03-20T17:03:14.719456721Z"} +2026/03/20 17:03:19 ───────────────────────────────────────────────── +2026/03/20 17:03:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:19.575715385Z"} +2026/03/20 17:03:24 [metric_collector] {"stage_name":"metric_collector","events_processed":894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":178.8,"last_update":"2026-03-20T17:03:19.576173812Z"} +2026/03/20 17:03:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":360,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:19.586097438Z"} +2026/03/20 17:03:24 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":10.233033896428827,"throughput_eps":0,"last_update":"2026-03-20T17:03:19.71956895Z"} +2026/03/20 17:03:24 [transform_engine] {"stage_name":"transform_engine","events_processed":29,"events_dropped":0,"avg_latency_ms":80.79570821059436,"throughput_eps":0,"last_update":"2026-03-20T17:03:19.719509086Z"} +2026/03/20 17:03:24 ───────────────────────────────────────────────── +2026/03/20 17:03:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:24.585258206Z"} +2026/03/20 17:03:29 [detection_layer] {"stage_name":"detection_layer","events_processed":29,"events_dropped":0,"avg_latency_ms":10.233033896428827,"throughput_eps":0,"last_update":"2026-03-20T17:03:24.719485842Z"} +2026/03/20 17:03:29 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":77.2287629684755,"throughput_eps":0,"last_update":"2026-03-20T17:03:24.782512812Z"} +2026/03/20 17:03:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:24.575658047Z"} +2026/03/20 17:03:29 [metric_collector] {"stage_name":"metric_collector","events_processed":899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":179.8,"last_update":"2026-03-20T17:03:24.575975615Z"} +2026/03/20 17:03:29 ───────────────────────────────────────────────── +2026/03/20 17:03:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:29.575803182Z"} +2026/03/20 17:03:34 [metric_collector] {"stage_name":"metric_collector","events_processed":904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":180.8,"last_update":"2026-03-20T17:03:29.576002673Z"} +2026/03/20 17:03:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:29.586547509Z"} +2026/03/20 17:03:34 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":10.668866717143061,"throughput_eps":0,"last_update":"2026-03-20T17:03:29.718787471Z"} +2026/03/20 17:03:34 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":77.2287629684755,"throughput_eps":0,"last_update":"2026-03-20T17:03:29.718778533Z"} +2026/03/20 17:03:34 ───────────────────────────────────────────────── +2026/03/20 17:03:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:39 [metric_collector] {"stage_name":"metric_collector","events_processed":909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":181.8,"last_update":"2026-03-20T17:03:34.575789623Z"} +2026/03/20 17:03:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:34.587231886Z"} +2026/03/20 17:03:39 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":10.668866717143061,"throughput_eps":0,"last_update":"2026-03-20T17:03:34.719810083Z"} +2026/03/20 17:03:39 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":77.2287629684755,"throughput_eps":0,"last_update":"2026-03-20T17:03:34.719690334Z"} +2026/03/20 17:03:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:34.575493747Z"} +2026/03/20 17:03:39 ───────────────────────────────────────────────── +2026/03/20 17:03:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:44 [metric_collector] {"stage_name":"metric_collector","events_processed":914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":182.8,"last_update":"2026-03-20T17:03:39.575853171Z"} +2026/03/20 17:03:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:39.585955751Z"} +2026/03/20 17:03:44 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":10.668866717143061,"throughput_eps":0,"last_update":"2026-03-20T17:03:39.719308728Z"} +2026/03/20 17:03:44 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":77.2287629684755,"throughput_eps":0,"last_update":"2026-03-20T17:03:39.719321402Z"} +2026/03/20 17:03:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:39.575555341Z"} +2026/03/20 17:03:44 ───────────────────────────────────────────────── +2026/03/20 17:03:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:44.575838092Z"} +2026/03/20 17:03:49 [metric_collector] {"stage_name":"metric_collector","events_processed":919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":183.8,"last_update":"2026-03-20T17:03:44.576175919Z"} +2026/03/20 17:03:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:44.586229216Z"} +2026/03/20 17:03:49 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":10.668866717143061,"throughput_eps":0,"last_update":"2026-03-20T17:03:44.719495564Z"} +2026/03/20 17:03:49 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":77.2287629684755,"throughput_eps":0,"last_update":"2026-03-20T17:03:44.71950844Z"} +2026/03/20 17:03:49 ───────────────────────────────────────────────── +2026/03/20 17:03:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:49.575893051Z"} +2026/03/20 17:03:54 [metric_collector] {"stage_name":"metric_collector","events_processed":924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":184.8,"last_update":"2026-03-20T17:03:49.576677242Z"} +2026/03/20 17:03:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:49.585231731Z"} +2026/03/20 17:03:54 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":10.668866717143061,"throughput_eps":0,"last_update":"2026-03-20T17:03:49.719470989Z"} +2026/03/20 17:03:54 [transform_engine] {"stage_name":"transform_engine","events_processed":30,"events_dropped":0,"avg_latency_ms":77.2287629684755,"throughput_eps":0,"last_update":"2026-03-20T17:03:49.719478723Z"} +2026/03/20 17:03:54 ───────────────────────────────────────────────── +2026/03/20 17:03:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:03:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:54.586304017Z"} +2026/03/20 17:03:59 [detection_layer] {"stage_name":"detection_layer","events_processed":30,"events_dropped":0,"avg_latency_ms":10.668866717143061,"throughput_eps":0,"last_update":"2026-03-20T17:03:54.71964884Z"} +2026/03/20 17:03:59 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":73.8666219747804,"throughput_eps":0,"last_update":"2026-03-20T17:03:54.78007828Z"} +2026/03/20 17:03:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:54.575764468Z"} +2026/03/20 17:03:59 [metric_collector] {"stage_name":"metric_collector","events_processed":929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":185.8,"last_update":"2026-03-20T17:03:54.575685146Z"} +2026/03/20 17:03:59 ───────────────────────────────────────────────── +2026/03/20 17:04:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:04 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":10.86302797371445,"throughput_eps":0,"last_update":"2026-03-20T17:03:59.719043709Z"} +2026/03/20 17:04:04 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":73.8666219747804,"throughput_eps":0,"last_update":"2026-03-20T17:03:59.719049711Z"} +2026/03/20 17:04:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:59.575868877Z"} +2026/03/20 17:04:04 [metric_collector] {"stage_name":"metric_collector","events_processed":934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":186.8,"last_update":"2026-03-20T17:03:59.576179391Z"} +2026/03/20 17:04:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:03:59.584643589Z"} +2026/03/20 17:04:04 ───────────────────────────────────────────────── +2026/03/20 17:04:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:09 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":10.86302797371445,"throughput_eps":0,"last_update":"2026-03-20T17:04:04.719206795Z"} +2026/03/20 17:04:09 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":73.8666219747804,"throughput_eps":0,"last_update":"2026-03-20T17:04:04.719214731Z"} +2026/03/20 17:04:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:04.575663549Z"} +2026/03/20 17:04:09 [metric_collector] {"stage_name":"metric_collector","events_processed":939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":187.8,"last_update":"2026-03-20T17:04:04.576038047Z"} +2026/03/20 17:04:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:04.58698711Z"} +2026/03/20 17:04:09 ───────────────────────────────────────────────── +2026/03/20 17:04:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:09.575810357Z"} +2026/03/20 17:04:14 [metric_collector] {"stage_name":"metric_collector","events_processed":944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":188.8,"last_update":"2026-03-20T17:04:09.576110571Z"} +2026/03/20 17:04:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":380,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:09.586661353Z"} +2026/03/20 17:04:14 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":10.86302797371445,"throughput_eps":0,"last_update":"2026-03-20T17:04:09.718890383Z"} +2026/03/20 17:04:14 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":73.8666219747804,"throughput_eps":0,"last_update":"2026-03-20T17:04:09.718896095Z"} +2026/03/20 17:04:14 ───────────────────────────────────────────────── +2026/03/20 17:04:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:19 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":73.8666219747804,"throughput_eps":0,"last_update":"2026-03-20T17:04:14.719070762Z"} +2026/03/20 17:04:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:14.57605958Z"} +2026/03/20 17:04:19 [metric_collector] {"stage_name":"metric_collector","events_processed":949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":189.8,"last_update":"2026-03-20T17:04:14.576416934Z"} +2026/03/20 17:04:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:14.585800823Z"} +2026/03/20 17:04:19 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":10.86302797371445,"throughput_eps":0,"last_update":"2026-03-20T17:04:14.719065312Z"} +2026/03/20 17:04:19 ───────────────────────────────────────────────── +2026/03/20 17:04:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:19.575780959Z"} +2026/03/20 17:04:24 [metric_collector] {"stage_name":"metric_collector","events_processed":954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":190.8,"last_update":"2026-03-20T17:04:19.576557765Z"} +2026/03/20 17:04:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:19.586291716Z"} +2026/03/20 17:04:24 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":10.86302797371445,"throughput_eps":0,"last_update":"2026-03-20T17:04:19.719509973Z"} +2026/03/20 17:04:24 [transform_engine] {"stage_name":"transform_engine","events_processed":31,"events_dropped":0,"avg_latency_ms":73.8666219747804,"throughput_eps":0,"last_update":"2026-03-20T17:04:19.719517667Z"} +2026/03/20 17:04:24 ───────────────────────────────────────────────── +2026/03/20 17:04:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:24.585487364Z"} +2026/03/20 17:04:29 [detection_layer] {"stage_name":"detection_layer","events_processed":31,"events_dropped":0,"avg_latency_ms":10.86302797371445,"throughput_eps":0,"last_update":"2026-03-20T17:04:24.719814811Z"} +2026/03/20 17:04:29 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":81.70124017982432,"throughput_eps":0,"last_update":"2026-03-20T17:04:24.831748146Z"} +2026/03/20 17:04:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:24.576042637Z"} +2026/03/20 17:04:29 [metric_collector] {"stage_name":"metric_collector","events_processed":959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":191.8,"last_update":"2026-03-20T17:04:24.576332001Z"} +2026/03/20 17:04:29 ───────────────────────────────────────────────── +2026/03/20 17:04:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:29.575567543Z"} +2026/03/20 17:04:34 [metric_collector] {"stage_name":"metric_collector","events_processed":964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":192.8,"last_update":"2026-03-20T17:04:29.575706238Z"} +2026/03/20 17:04:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":388,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:29.585586881Z"} +2026/03/20 17:04:34 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":11.15847997897156,"throughput_eps":0,"last_update":"2026-03-20T17:04:29.718810551Z"} +2026/03/20 17:04:34 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":81.70124017982432,"throughput_eps":0,"last_update":"2026-03-20T17:04:29.718826151Z"} +2026/03/20 17:04:34 ───────────────────────────────────────────────── +2026/03/20 17:04:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:39 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":81.70124017982432,"throughput_eps":0,"last_update":"2026-03-20T17:04:34.71893824Z"} +2026/03/20 17:04:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:34.575569353Z"} +2026/03/20 17:04:39 [metric_collector] {"stage_name":"metric_collector","events_processed":969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":193.8,"last_update":"2026-03-20T17:04:34.576379073Z"} +2026/03/20 17:04:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":390,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:34.585675336Z"} +2026/03/20 17:04:39 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":11.15847997897156,"throughput_eps":0,"last_update":"2026-03-20T17:04:34.718930095Z"} +2026/03/20 17:04:39 ───────────────────────────────────────────────── +2026/03/20 17:04:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:39.575881784Z"} +2026/03/20 17:04:44 [metric_collector] {"stage_name":"metric_collector","events_processed":974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":194.8,"last_update":"2026-03-20T17:04:39.576297851Z"} +2026/03/20 17:04:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:39.585585338Z"} +2026/03/20 17:04:44 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":11.15847997897156,"throughput_eps":0,"last_update":"2026-03-20T17:04:39.71884367Z"} +2026/03/20 17:04:44 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":81.70124017982432,"throughput_eps":0,"last_update":"2026-03-20T17:04:39.718855472Z"} +2026/03/20 17:04:44 ───────────────────────────────────────────────── +2026/03/20 17:04:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:44.575852944Z"} +2026/03/20 17:04:49 [metric_collector] {"stage_name":"metric_collector","events_processed":979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":195.8,"last_update":"2026-03-20T17:04:44.576177536Z"} +2026/03/20 17:04:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:44.584805601Z"} +2026/03/20 17:04:49 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":11.15847997897156,"throughput_eps":0,"last_update":"2026-03-20T17:04:44.719037894Z"} +2026/03/20 17:04:49 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":81.70124017982432,"throughput_eps":0,"last_update":"2026-03-20T17:04:44.719048234Z"} +2026/03/20 17:04:49 ───────────────────────────────────────────────── +2026/03/20 17:04:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:49.57605576Z"} +2026/03/20 17:04:54 [metric_collector] {"stage_name":"metric_collector","events_processed":984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":196.8,"last_update":"2026-03-20T17:04:49.576805996Z"} +2026/03/20 17:04:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:49.585139619Z"} +2026/03/20 17:04:54 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":11.15847997897156,"throughput_eps":0,"last_update":"2026-03-20T17:04:49.719584093Z"} +2026/03/20 17:04:54 [transform_engine] {"stage_name":"transform_engine","events_processed":32,"events_dropped":0,"avg_latency_ms":81.70124017982432,"throughput_eps":0,"last_update":"2026-03-20T17:04:49.71959791Z"} +2026/03/20 17:04:54 ───────────────────────────────────────────────── +2026/03/20 17:04:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:04:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:54.57597976Z"} +2026/03/20 17:04:59 [metric_collector] {"stage_name":"metric_collector","events_processed":989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":197.8,"last_update":"2026-03-20T17:04:54.576264917Z"} +2026/03/20 17:04:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:54.585003123Z"} +2026/03/20 17:04:59 [detection_layer] {"stage_name":"detection_layer","events_processed":32,"events_dropped":0,"avg_latency_ms":11.15847997897156,"throughput_eps":0,"last_update":"2026-03-20T17:04:54.719403601Z"} +2026/03/20 17:04:59 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":87.40977334385947,"throughput_eps":0,"last_update":"2026-03-20T17:04:54.829664099Z"} +2026/03/20 17:04:59 ───────────────────────────────────────────────── +2026/03/20 17:05:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:04 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":87.40977334385947,"throughput_eps":0,"last_update":"2026-03-20T17:04:59.719128053Z"} +2026/03/20 17:05:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:59.575545973Z"} +2026/03/20 17:05:04 [metric_collector] {"stage_name":"metric_collector","events_processed":994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":198.8,"last_update":"2026-03-20T17:04:59.575756175Z"} +2026/03/20 17:05:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":400,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:04:59.585750798Z"} +2026/03/20 17:05:04 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":11.57642818317725,"throughput_eps":0,"last_update":"2026-03-20T17:04:59.719113606Z"} +2026/03/20 17:05:04 ───────────────────────────────────────────────── +2026/03/20 17:05:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:04.576416155Z"} +2026/03/20 17:05:09 [metric_collector] {"stage_name":"metric_collector","events_processed":999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":199.8,"last_update":"2026-03-20T17:05:04.576854765Z"} +2026/03/20 17:05:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":402,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:04.585961699Z"} +2026/03/20 17:05:09 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":11.57642818317725,"throughput_eps":0,"last_update":"2026-03-20T17:05:04.719209102Z"} +2026/03/20 17:05:09 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":87.40977334385947,"throughput_eps":0,"last_update":"2026-03-20T17:05:04.719221146Z"} +2026/03/20 17:05:09 ───────────────────────────────────────────────── +2026/03/20 17:05:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:14 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":11.57642818317725,"throughput_eps":0,"last_update":"2026-03-20T17:05:09.719018353Z"} +2026/03/20 17:05:14 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":87.40977334385947,"throughput_eps":0,"last_update":"2026-03-20T17:05:09.719030627Z"} +2026/03/20 17:05:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:09.575555756Z"} +2026/03/20 17:05:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":200.8,"last_update":"2026-03-20T17:05:09.575903021Z"} +2026/03/20 17:05:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:09.585639211Z"} +2026/03/20 17:05:14 ───────────────────────────────────────────────── +2026/03/20 17:05:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:14.584911525Z"} +2026/03/20 17:05:19 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":11.57642818317725,"throughput_eps":0,"last_update":"2026-03-20T17:05:14.719303283Z"} +2026/03/20 17:05:19 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":87.40977334385947,"throughput_eps":0,"last_update":"2026-03-20T17:05:14.719318431Z"} +2026/03/20 17:05:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:14.576201911Z"} +2026/03/20 17:05:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":201.8,"last_update":"2026-03-20T17:05:14.576758948Z"} +2026/03/20 17:05:19 ───────────────────────────────────────────────── +2026/03/20 17:05:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:24 [transform_engine] {"stage_name":"transform_engine","events_processed":33,"events_dropped":0,"avg_latency_ms":87.40977334385947,"throughput_eps":0,"last_update":"2026-03-20T17:05:19.719070668Z"} +2026/03/20 17:05:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:19.575517565Z"} +2026/03/20 17:05:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":202.8,"last_update":"2026-03-20T17:05:19.575626404Z"} +2026/03/20 17:05:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":408,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:19.584732458Z"} +2026/03/20 17:05:24 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":11.57642818317725,"throughput_eps":0,"last_update":"2026-03-20T17:05:19.71906078Z"} +2026/03/20 17:05:24 ───────────────────────────────────────────────── +2026/03/20 17:05:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:24.57568769Z"} +2026/03/20 17:05:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":203.8,"last_update":"2026-03-20T17:05:24.575979388Z"} +2026/03/20 17:05:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:24.586257537Z"} +2026/03/20 17:05:29 [detection_layer] {"stage_name":"detection_layer","events_processed":33,"events_dropped":0,"avg_latency_ms":11.57642818317725,"throughput_eps":0,"last_update":"2026-03-20T17:05:24.71966952Z"} +2026/03/20 17:05:29 [transform_engine] {"stage_name":"transform_engine","events_processed":34,"events_dropped":0,"avg_latency_ms":92.53910307508758,"throughput_eps":0,"last_update":"2026-03-20T17:05:24.832748295Z"} +2026/03/20 17:05:29 ───────────────────────────────────────────────── +2026/03/20 17:05:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:29.575566379Z"} +2026/03/20 17:05:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":204.8,"last_update":"2026-03-20T17:05:29.576186135Z"} +2026/03/20 17:05:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:29.586797432Z"} +2026/03/20 17:05:34 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":11.892578546541799,"throughput_eps":0,"last_update":"2026-03-20T17:05:29.719079829Z"} +2026/03/20 17:05:34 [transform_engine] {"stage_name":"transform_engine","events_processed":34,"events_dropped":0,"avg_latency_ms":92.53910307508758,"throughput_eps":0,"last_update":"2026-03-20T17:05:29.719093195Z"} +2026/03/20 17:05:34 ───────────────────────────────────────────────── +2026/03/20 17:05:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":205.8,"last_update":"2026-03-20T17:05:34.576191117Z"} +2026/03/20 17:05:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:34.584790391Z"} +2026/03/20 17:05:39 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":11.892578546541799,"throughput_eps":0,"last_update":"2026-03-20T17:05:34.719085138Z"} +2026/03/20 17:05:39 [transform_engine] {"stage_name":"transform_engine","events_processed":34,"events_dropped":0,"avg_latency_ms":92.53910307508758,"throughput_eps":0,"last_update":"2026-03-20T17:05:34.719095008Z"} +2026/03/20 17:05:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:34.576285568Z"} +2026/03/20 17:05:39 ───────────────────────────────────────────────── +2026/03/20 17:05:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":206.8,"last_update":"2026-03-20T17:05:39.576683902Z"} +2026/03/20 17:05:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:39.585017979Z"} +2026/03/20 17:05:44 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":11.892578546541799,"throughput_eps":0,"last_update":"2026-03-20T17:05:39.719342058Z"} +2026/03/20 17:05:44 [transform_engine] {"stage_name":"transform_engine","events_processed":34,"events_dropped":0,"avg_latency_ms":92.53910307508758,"throughput_eps":0,"last_update":"2026-03-20T17:05:39.719387133Z"} +2026/03/20 17:05:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:39.575935669Z"} +2026/03/20 17:05:44 ───────────────────────────────────────────────── +2026/03/20 17:05:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:44.57568822Z"} +2026/03/20 17:05:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":207.8,"last_update":"2026-03-20T17:05:44.575992993Z"} +2026/03/20 17:05:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:44.58672363Z"} +2026/03/20 17:05:49 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":11.892578546541799,"throughput_eps":0,"last_update":"2026-03-20T17:05:44.718963895Z"} +2026/03/20 17:05:49 [transform_engine] {"stage_name":"transform_engine","events_processed":34,"events_dropped":0,"avg_latency_ms":92.53910307508758,"throughput_eps":0,"last_update":"2026-03-20T17:05:44.718972751Z"} +2026/03/20 17:05:49 ───────────────────────────────────────────────── +2026/03/20 17:05:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:54.575535127Z"} +2026/03/20 17:05:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":208.8,"last_update":"2026-03-20T17:05:49.576272739Z"} +2026/03/20 17:05:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":420,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:49.584536393Z"} +2026/03/20 17:05:54 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":11.892578546541799,"throughput_eps":0,"last_update":"2026-03-20T17:05:49.719837415Z"} +2026/03/20 17:05:54 [transform_engine] {"stage_name":"transform_engine","events_processed":34,"events_dropped":0,"avg_latency_ms":92.53910307508758,"throughput_eps":0,"last_update":"2026-03-20T17:05:49.718714594Z"} +2026/03/20 17:05:54 ───────────────────────────────────────────────── +2026/03/20 17:05:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:05:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:54.586257057Z"} +2026/03/20 17:05:59 [detection_layer] {"stage_name":"detection_layer","events_processed":34,"events_dropped":0,"avg_latency_ms":11.892578546541799,"throughput_eps":0,"last_update":"2026-03-20T17:05:54.719563866Z"} +2026/03/20 17:05:59 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":86.62396686007008,"throughput_eps":0,"last_update":"2026-03-20T17:05:54.782536447Z"} +2026/03/20 17:05:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:54.575535127Z"} +2026/03/20 17:05:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":209.8,"last_update":"2026-03-20T17:05:54.576153631Z"} +2026/03/20 17:05:59 ───────────────────────────────────────────────── +2026/03/20 17:06:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:59.575926826Z"} +2026/03/20 17:06:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":210.8,"last_update":"2026-03-20T17:05:59.576696329Z"} +2026/03/20 17:06:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:05:59.584591437Z"} +2026/03/20 17:06:04 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":11.820831837233438,"throughput_eps":0,"last_update":"2026-03-20T17:05:59.71881656Z"} +2026/03/20 17:06:04 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":86.62396686007008,"throughput_eps":0,"last_update":"2026-03-20T17:05:59.718960676Z"} +2026/03/20 17:06:04 ───────────────────────────────────────────────── +2026/03/20 17:06:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:04.587408378Z"} +2026/03/20 17:06:09 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":11.820831837233438,"throughput_eps":0,"last_update":"2026-03-20T17:06:04.719703321Z"} +2026/03/20 17:06:09 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":86.62396686007008,"throughput_eps":0,"last_update":"2026-03-20T17:06:04.719763246Z"} +2026/03/20 17:06:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:04.575600598Z"} +2026/03/20 17:06:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":211.8,"last_update":"2026-03-20T17:06:04.575967982Z"} +2026/03/20 17:06:09 ───────────────────────────────────────────────── +2026/03/20 17:06:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:09.575491338Z"} +2026/03/20 17:06:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":212.8,"last_update":"2026-03-20T17:06:09.575872598Z"} +2026/03/20 17:06:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:09.586002958Z"} +2026/03/20 17:06:14 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":11.820831837233438,"throughput_eps":0,"last_update":"2026-03-20T17:06:09.719506119Z"} +2026/03/20 17:06:14 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":86.62396686007008,"throughput_eps":0,"last_update":"2026-03-20T17:06:09.719389967Z"} +2026/03/20 17:06:14 ───────────────────────────────────────────────── +2026/03/20 17:06:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:14.575560726Z"} +2026/03/20 17:06:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":213.8,"last_update":"2026-03-20T17:06:14.575892632Z"} +2026/03/20 17:06:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:14.584829827Z"} +2026/03/20 17:06:19 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":11.820831837233438,"throughput_eps":0,"last_update":"2026-03-20T17:06:14.719226315Z"} +2026/03/20 17:06:19 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":86.62396686007008,"throughput_eps":0,"last_update":"2026-03-20T17:06:14.719201397Z"} +2026/03/20 17:06:19 ───────────────────────────────────────────────── +2026/03/20 17:06:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:24 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":11.820831837233438,"throughput_eps":0,"last_update":"2026-03-20T17:06:19.719293144Z"} +2026/03/20 17:06:24 [transform_engine] {"stage_name":"transform_engine","events_processed":35,"events_dropped":0,"avg_latency_ms":86.62396686007008,"throughput_eps":0,"last_update":"2026-03-20T17:06:19.719181439Z"} +2026/03/20 17:06:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:19.57593567Z"} +2026/03/20 17:06:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":214.8,"last_update":"2026-03-20T17:06:19.576303033Z"} +2026/03/20 17:06:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:19.585790722Z"} +2026/03/20 17:06:24 ───────────────────────────────────────────────── +2026/03/20 17:06:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:29 [detection_layer] {"stage_name":"detection_layer","events_processed":35,"events_dropped":0,"avg_latency_ms":11.820831837233438,"throughput_eps":0,"last_update":"2026-03-20T17:06:24.719470361Z"} +2026/03/20 17:06:29 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":82.42505248805607,"throughput_eps":0,"last_update":"2026-03-20T17:06:24.785156105Z"} +2026/03/20 17:06:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:24.575537729Z"} +2026/03/20 17:06:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":215.8,"last_update":"2026-03-20T17:06:24.575686134Z"} +2026/03/20 17:06:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:24.586069178Z"} +2026/03/20 17:06:29 ───────────────────────────────────────────────── +2026/03/20 17:06:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:29.585523473Z"} +2026/03/20 17:06:34 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":12.116314869786752,"throughput_eps":0,"last_update":"2026-03-20T17:06:29.718814421Z"} +2026/03/20 17:06:34 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":82.42505248805607,"throughput_eps":0,"last_update":"2026-03-20T17:06:29.718702888Z"} +2026/03/20 17:06:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:29.575861278Z"} +2026/03/20 17:06:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":216.8,"last_update":"2026-03-20T17:06:29.5762797Z"} +2026/03/20 17:06:34 ───────────────────────────────────────────────── +2026/03/20 17:06:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:34.575560027Z"} +2026/03/20 17:06:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":217.8,"last_update":"2026-03-20T17:06:34.57602654Z"} +2026/03/20 17:06:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:34.587055242Z"} +2026/03/20 17:06:39 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":12.116314869786752,"throughput_eps":0,"last_update":"2026-03-20T17:06:34.719219508Z"} +2026/03/20 17:06:39 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":82.42505248805607,"throughput_eps":0,"last_update":"2026-03-20T17:06:34.719247111Z"} +2026/03/20 17:06:39 ───────────────────────────────────────────────── +2026/03/20 17:06:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:39.585271063Z"} +2026/03/20 17:06:44 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":12.116314869786752,"throughput_eps":0,"last_update":"2026-03-20T17:06:39.719515849Z"} +2026/03/20 17:06:44 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":82.42505248805607,"throughput_eps":0,"last_update":"2026-03-20T17:06:39.719642661Z"} +2026/03/20 17:06:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:39.575843296Z"} +2026/03/20 17:06:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":218.8,"last_update":"2026-03-20T17:06:39.576324187Z"} +2026/03/20 17:06:44 ───────────────────────────────────────────────── +2026/03/20 17:06:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:44.575681274Z"} +2026/03/20 17:06:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":219.8,"last_update":"2026-03-20T17:06:44.57602414Z"} +2026/03/20 17:06:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":442,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:44.585896278Z"} +2026/03/20 17:06:49 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":12.116314869786752,"throughput_eps":0,"last_update":"2026-03-20T17:06:44.719304026Z"} +2026/03/20 17:06:49 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":82.42505248805607,"throughput_eps":0,"last_update":"2026-03-20T17:06:44.71927998Z"} +2026/03/20 17:06:49 ───────────────────────────────────────────────── +2026/03/20 17:06:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:49.575683717Z"} +2026/03/20 17:06:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":220.8,"last_update":"2026-03-20T17:06:49.576056912Z"} +2026/03/20 17:06:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:49.586071623Z"} +2026/03/20 17:06:54 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":12.116314869786752,"throughput_eps":0,"last_update":"2026-03-20T17:06:49.719440751Z"} +2026/03/20 17:06:54 [transform_engine] {"stage_name":"transform_engine","events_processed":36,"events_dropped":0,"avg_latency_ms":82.42505248805607,"throughput_eps":0,"last_update":"2026-03-20T17:06:49.71940862Z"} +2026/03/20 17:06:54 ───────────────────────────────────────────────── +2026/03/20 17:06:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:06:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:54.575842627Z"} +2026/03/20 17:06:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":221.8,"last_update":"2026-03-20T17:06:54.576616609Z"} +2026/03/20 17:06:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":446,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:54.586609119Z"} +2026/03/20 17:06:59 [detection_layer] {"stage_name":"detection_layer","events_processed":36,"events_dropped":0,"avg_latency_ms":12.116314869786752,"throughput_eps":0,"last_update":"2026-03-20T17:06:54.718842758Z"} +2026/03/20 17:06:59 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":78.44717919044486,"throughput_eps":0,"last_update":"2026-03-20T17:06:54.781497222Z"} +2026/03/20 17:06:59 ───────────────────────────────────────────────── +2026/03/20 17:07:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:59.57574551Z"} +2026/03/20 17:07:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":222.8,"last_update":"2026-03-20T17:06:59.576099568Z"} +2026/03/20 17:07:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":448,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:06:59.587026096Z"} +2026/03/20 17:07:04 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.228620895829403,"throughput_eps":0,"last_update":"2026-03-20T17:06:59.719451167Z"} +2026/03/20 17:07:04 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":78.44717919044486,"throughput_eps":0,"last_update":"2026-03-20T17:06:59.719419256Z"} +2026/03/20 17:07:04 ───────────────────────────────────────────────── +2026/03/20 17:07:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":223.8,"last_update":"2026-03-20T17:07:04.575718911Z"} +2026/03/20 17:07:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":450,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:04.585965638Z"} +2026/03/20 17:07:09 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.228620895829403,"throughput_eps":0,"last_update":"2026-03-20T17:07:04.719304826Z"} +2026/03/20 17:07:09 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":78.44717919044486,"throughput_eps":0,"last_update":"2026-03-20T17:07:04.719317149Z"} +2026/03/20 17:07:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:04.575598351Z"} +2026/03/20 17:07:09 ───────────────────────────────────────────────── +2026/03/20 17:07:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:09.575720658Z"} +2026/03/20 17:07:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":224.8,"last_update":"2026-03-20T17:07:09.576073173Z"} +2026/03/20 17:07:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":452,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:09.587393487Z"} +2026/03/20 17:07:14 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.228620895829403,"throughput_eps":0,"last_update":"2026-03-20T17:07:09.719625168Z"} +2026/03/20 17:07:14 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":78.44717919044486,"throughput_eps":0,"last_update":"2026-03-20T17:07:09.719632322Z"} +2026/03/20 17:07:14 ───────────────────────────────────────────────── +2026/03/20 17:07:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:19 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.228620895829403,"throughput_eps":0,"last_update":"2026-03-20T17:07:14.719253272Z"} +2026/03/20 17:07:19 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":78.44717919044486,"throughput_eps":0,"last_update":"2026-03-20T17:07:14.719261027Z"} +2026/03/20 17:07:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:14.575523191Z"} +2026/03/20 17:07:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":225.8,"last_update":"2026-03-20T17:07:14.575645065Z"} +2026/03/20 17:07:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:14.58600528Z"} +2026/03/20 17:07:19 ───────────────────────────────────────────────── +2026/03/20 17:07:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":456,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:19.58686201Z"} +2026/03/20 17:07:24 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.228620895829403,"throughput_eps":0,"last_update":"2026-03-20T17:07:19.719175218Z"} +2026/03/20 17:07:24 [transform_engine] {"stage_name":"transform_engine","events_processed":37,"events_dropped":0,"avg_latency_ms":78.44717919044486,"throughput_eps":0,"last_update":"2026-03-20T17:07:19.719181891Z"} +2026/03/20 17:07:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:19.575738915Z"} +2026/03/20 17:07:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":226.8,"last_update":"2026-03-20T17:07:19.576108682Z"} +2026/03/20 17:07:24 ───────────────────────────────────────────────── +2026/03/20 17:07:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:24.575512575Z"} +2026/03/20 17:07:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":227.8,"last_update":"2026-03-20T17:07:24.575829331Z"} +2026/03/20 17:07:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":458,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:24.585762259Z"} +2026/03/20 17:07:29 [detection_layer] {"stage_name":"detection_layer","events_processed":37,"events_dropped":0,"avg_latency_ms":11.228620895829403,"throughput_eps":0,"last_update":"2026-03-20T17:07:24.719069965Z"} +2026/03/20 17:07:29 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":84.71616535235589,"throughput_eps":0,"last_update":"2026-03-20T17:07:24.828871885Z"} +2026/03/20 17:07:29 ───────────────────────────────────────────────── +2026/03/20 17:07:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:29.576054672Z"} +2026/03/20 17:07:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":228.8,"last_update":"2026-03-20T17:07:29.576412798Z"} +2026/03/20 17:07:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":460,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:29.584500711Z"} +2026/03/20 17:07:34 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":11.607522316663523,"throughput_eps":0,"last_update":"2026-03-20T17:07:29.718798409Z"} +2026/03/20 17:07:34 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":84.71616535235589,"throughput_eps":0,"last_update":"2026-03-20T17:07:29.71875705Z"} +2026/03/20 17:07:34 ───────────────────────────────────────────────── +2026/03/20 17:07:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":462,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:34.587299684Z"} +2026/03/20 17:07:39 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":11.607522316663523,"throughput_eps":0,"last_update":"2026-03-20T17:07:34.719582367Z"} +2026/03/20 17:07:39 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":84.71616535235589,"throughput_eps":0,"last_update":"2026-03-20T17:07:34.719605943Z"} +2026/03/20 17:07:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:34.576033122Z"} +2026/03/20 17:07:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":229.8,"last_update":"2026-03-20T17:07:34.576014616Z"} +2026/03/20 17:07:39 ───────────────────────────────────────────────── +2026/03/20 17:07:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:39.575857927Z"} +2026/03/20 17:07:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":230.8,"last_update":"2026-03-20T17:07:39.576628573Z"} +2026/03/20 17:07:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:39.58582992Z"} +2026/03/20 17:07:44 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":11.607522316663523,"throughput_eps":0,"last_update":"2026-03-20T17:07:39.719019145Z"} +2026/03/20 17:07:44 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":84.71616535235589,"throughput_eps":0,"last_update":"2026-03-20T17:07:39.719119838Z"} +2026/03/20 17:07:44 ───────────────────────────────────────────────── +2026/03/20 17:07:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":466,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:44.586612169Z"} +2026/03/20 17:07:49 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":11.607522316663523,"throughput_eps":0,"last_update":"2026-03-20T17:07:44.718789158Z"} +2026/03/20 17:07:49 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":84.71616535235589,"throughput_eps":0,"last_update":"2026-03-20T17:07:44.718781684Z"} +2026/03/20 17:07:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:44.575930595Z"} +2026/03/20 17:07:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":231.8,"last_update":"2026-03-20T17:07:44.576529853Z"} +2026/03/20 17:07:49 ───────────────────────────────────────────────── +2026/03/20 17:07:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:49.575517521Z"} +2026/03/20 17:07:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":232.8,"last_update":"2026-03-20T17:07:49.575845029Z"} +2026/03/20 17:07:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":468,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:49.585529261Z"} +2026/03/20 17:07:54 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":11.607522316663523,"throughput_eps":0,"last_update":"2026-03-20T17:07:49.719840043Z"} +2026/03/20 17:07:54 [transform_engine] {"stage_name":"transform_engine","events_processed":38,"events_dropped":0,"avg_latency_ms":84.71616535235589,"throughput_eps":0,"last_update":"2026-03-20T17:07:49.718673068Z"} +2026/03/20 17:07:54 ───────────────────────────────────────────────── +2026/03/20 17:07:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:07:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:54.575972113Z"} +2026/03/20 17:07:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":233.8,"last_update":"2026-03-20T17:07:54.576536073Z"} +2026/03/20 17:07:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":470,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:54.588314268Z"} +2026/03/20 17:07:59 [detection_layer] {"stage_name":"detection_layer","events_processed":38,"events_dropped":0,"avg_latency_ms":11.607522316663523,"throughput_eps":0,"last_update":"2026-03-20T17:07:54.719528503Z"} +2026/03/20 17:07:59 [transform_engine] {"stage_name":"transform_engine","events_processed":39,"events_dropped":0,"avg_latency_ms":80.73669968188472,"throughput_eps":0,"last_update":"2026-03-20T17:07:54.78447763Z"} +2026/03/20 17:07:59 ───────────────────────────────────────────────── +2026/03/20 17:08:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:59.576164887Z"} +2026/03/20 17:08:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":234.8,"last_update":"2026-03-20T17:07:59.576324392Z"} +2026/03/20 17:08:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":472,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:07:59.586656716Z"} +2026/03/20 17:08:04 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":11.954327653330818,"throughput_eps":0,"last_update":"2026-03-20T17:07:59.719139066Z"} +2026/03/20 17:08:04 [transform_engine] {"stage_name":"transform_engine","events_processed":39,"events_dropped":0,"avg_latency_ms":80.73669968188472,"throughput_eps":0,"last_update":"2026-03-20T17:07:59.719254827Z"} +2026/03/20 17:08:04 ───────────────────────────────────────────────── +2026/03/20 17:08:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:04.575498204Z"} +2026/03/20 17:08:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":235.8,"last_update":"2026-03-20T17:08:04.576205469Z"} +2026/03/20 17:08:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:04.585558167Z"} +2026/03/20 17:08:09 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":11.954327653330818,"throughput_eps":0,"last_update":"2026-03-20T17:08:04.718852047Z"} +2026/03/20 17:08:09 [transform_engine] {"stage_name":"transform_engine","events_processed":39,"events_dropped":0,"avg_latency_ms":80.73669968188472,"throughput_eps":0,"last_update":"2026-03-20T17:08:04.718740001Z"} +2026/03/20 17:08:09 ───────────────────────────────────────────────── +2026/03/20 17:08:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:09.575759894Z"} +2026/03/20 17:08:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":236.8,"last_update":"2026-03-20T17:08:09.576139841Z"} +2026/03/20 17:08:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":476,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:09.584952655Z"} +2026/03/20 17:08:14 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":11.954327653330818,"throughput_eps":0,"last_update":"2026-03-20T17:08:09.719309714Z"} +2026/03/20 17:08:14 [transform_engine] {"stage_name":"transform_engine","events_processed":39,"events_dropped":0,"avg_latency_ms":80.73669968188472,"throughput_eps":0,"last_update":"2026-03-20T17:08:09.719206637Z"} +2026/03/20 17:08:14 ───────────────────────────────────────────────── +2026/03/20 17:08:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":478,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:14.585598477Z"} +2026/03/20 17:08:19 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":11.954327653330818,"throughput_eps":0,"last_update":"2026-03-20T17:08:14.718844572Z"} +2026/03/20 17:08:19 [transform_engine] {"stage_name":"transform_engine","events_processed":39,"events_dropped":0,"avg_latency_ms":80.73669968188472,"throughput_eps":0,"last_update":"2026-03-20T17:08:14.718836938Z"} +2026/03/20 17:08:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:14.575544163Z"} +2026/03/20 17:08:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":237.8,"last_update":"2026-03-20T17:08:14.575871702Z"} +2026/03/20 17:08:19 ───────────────────────────────────────────────── +2026/03/20 17:08:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:19.576005339Z"} +2026/03/20 17:08:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":238.8,"last_update":"2026-03-20T17:08:19.576795233Z"} +2026/03/20 17:08:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":480,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:19.586172389Z"} +2026/03/20 17:08:24 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":11.954327653330818,"throughput_eps":0,"last_update":"2026-03-20T17:08:19.719514492Z"} +2026/03/20 17:08:24 [transform_engine] {"stage_name":"transform_engine","events_processed":39,"events_dropped":0,"avg_latency_ms":80.73669968188472,"throughput_eps":0,"last_update":"2026-03-20T17:08:19.719532366Z"} +2026/03/20 17:08:24 ───────────────────────────────────────────────── +2026/03/20 17:08:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":482,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:24.58608058Z"} +2026/03/20 17:08:29 [detection_layer] {"stage_name":"detection_layer","events_processed":39,"events_dropped":0,"avg_latency_ms":11.954327653330818,"throughput_eps":0,"last_update":"2026-03-20T17:08:24.719435923Z"} +2026/03/20 17:08:29 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":85.82466574550779,"throughput_eps":0,"last_update":"2026-03-20T17:08:24.825563249Z"} +2026/03/20 17:08:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:24.575551646Z"} +2026/03/20 17:08:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":239.8,"last_update":"2026-03-20T17:08:24.575867882Z"} +2026/03/20 17:08:29 ───────────────────────────────────────────────── +2026/03/20 17:08:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:29.586302796Z"} +2026/03/20 17:08:34 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":12.378421522664656,"throughput_eps":0,"last_update":"2026-03-20T17:08:29.719668773Z"} +2026/03/20 17:08:34 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":85.82466574550779,"throughput_eps":0,"last_update":"2026-03-20T17:08:29.719684133Z"} +2026/03/20 17:08:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:29.575516579Z"} +2026/03/20 17:08:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":240.8,"last_update":"2026-03-20T17:08:29.575933348Z"} +2026/03/20 17:08:34 ───────────────────────────────────────────────── +2026/03/20 17:08:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:34.576183739Z"} +2026/03/20 17:08:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":241.8,"last_update":"2026-03-20T17:08:34.576339458Z"} +2026/03/20 17:08:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":486,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:34.58554659Z"} +2026/03/20 17:08:39 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":12.378421522664656,"throughput_eps":0,"last_update":"2026-03-20T17:08:34.718815455Z"} +2026/03/20 17:08:39 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":85.82466574550779,"throughput_eps":0,"last_update":"2026-03-20T17:08:34.718746814Z"} +2026/03/20 17:08:39 ───────────────────────────────────────────────── +2026/03/20 17:08:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:39.575759748Z"} +2026/03/20 17:08:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":242.8,"last_update":"2026-03-20T17:08:39.576480368Z"} +2026/03/20 17:08:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":488,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:39.585047303Z"} +2026/03/20 17:08:44 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":12.378421522664656,"throughput_eps":0,"last_update":"2026-03-20T17:08:39.719392147Z"} +2026/03/20 17:08:44 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":85.82466574550779,"throughput_eps":0,"last_update":"2026-03-20T17:08:39.719402135Z"} +2026/03/20 17:08:44 ───────────────────────────────────────────────── +2026/03/20 17:08:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:44.575700566Z"} +2026/03/20 17:08:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":243.8,"last_update":"2026-03-20T17:08:44.576022694Z"} +2026/03/20 17:08:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":490,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:44.586510178Z"} +2026/03/20 17:08:49 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":12.378421522664656,"throughput_eps":0,"last_update":"2026-03-20T17:08:44.718815256Z"} +2026/03/20 17:08:49 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":85.82466574550779,"throughput_eps":0,"last_update":"2026-03-20T17:08:44.718694805Z"} +2026/03/20 17:08:49 ───────────────────────────────────────────────── +2026/03/20 17:08:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":244.8,"last_update":"2026-03-20T17:08:49.576136731Z"} +2026/03/20 17:08:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":492,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:49.585892484Z"} +2026/03/20 17:08:54 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":12.378421522664656,"throughput_eps":0,"last_update":"2026-03-20T17:08:49.719129031Z"} +2026/03/20 17:08:54 [transform_engine] {"stage_name":"transform_engine","events_processed":40,"events_dropped":0,"avg_latency_ms":85.82466574550779,"throughput_eps":0,"last_update":"2026-03-20T17:08:49.719140783Z"} +2026/03/20 17:08:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:49.575745401Z"} +2026/03/20 17:08:54 ───────────────────────────────────────────────── +2026/03/20 17:08:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:08:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:54.575757977Z"} +2026/03/20 17:08:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":245.8,"last_update":"2026-03-20T17:08:54.576052321Z"} +2026/03/20 17:08:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:54.586206619Z"} +2026/03/20 17:08:59 [detection_layer] {"stage_name":"detection_layer","events_processed":40,"events_dropped":0,"avg_latency_ms":12.378421522664656,"throughput_eps":0,"last_update":"2026-03-20T17:08:54.719464382Z"} +2026/03/20 17:08:59 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":91.05275299640623,"throughput_eps":0,"last_update":"2026-03-20T17:08:54.831442338Z"} +2026/03/20 17:08:59 ───────────────────────────────────────────────── +2026/03/20 17:09:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:59.575590306Z"} +2026/03/20 17:09:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":246.8,"last_update":"2026-03-20T17:08:59.57566062Z"} +2026/03/20 17:09:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":496,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:08:59.585832611Z"} +2026/03/20 17:09:04 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":12.872329418131727,"throughput_eps":0,"last_update":"2026-03-20T17:08:59.719104174Z"} +2026/03/20 17:09:04 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":91.05275299640623,"throughput_eps":0,"last_update":"2026-03-20T17:08:59.719126817Z"} +2026/03/20 17:09:04 ───────────────────────────────────────────────── +2026/03/20 17:09:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:04.575977608Z"} +2026/03/20 17:09:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":247.8,"last_update":"2026-03-20T17:09:04.576444614Z"} +2026/03/20 17:09:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":498,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:04.585228185Z"} +2026/03/20 17:09:09 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":12.872329418131727,"throughput_eps":0,"last_update":"2026-03-20T17:09:04.719616883Z"} +2026/03/20 17:09:09 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":91.05275299640623,"throughput_eps":0,"last_update":"2026-03-20T17:09:04.719645457Z"} +2026/03/20 17:09:09 ───────────────────────────────────────────────── +2026/03/20 17:09:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:09.575907987Z"} +2026/03/20 17:09:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":248.8,"last_update":"2026-03-20T17:09:09.576544506Z"} +2026/03/20 17:09:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":500,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:09.586572232Z"} +2026/03/20 17:09:14 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":12.872329418131727,"throughput_eps":0,"last_update":"2026-03-20T17:09:09.718806645Z"} +2026/03/20 17:09:14 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":91.05275299640623,"throughput_eps":0,"last_update":"2026-03-20T17:09:09.718744316Z"} +2026/03/20 17:09:14 ───────────────────────────────────────────────── +2026/03/20 17:09:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:14.57568901Z"} +2026/03/20 17:09:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":249.8,"last_update":"2026-03-20T17:09:14.575683158Z"} +2026/03/20 17:09:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":502,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:14.586215301Z"} +2026/03/20 17:09:19 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":12.872329418131727,"throughput_eps":0,"last_update":"2026-03-20T17:09:14.71963542Z"} +2026/03/20 17:09:19 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":91.05275299640623,"throughput_eps":0,"last_update":"2026-03-20T17:09:14.719648605Z"} +2026/03/20 17:09:19 ───────────────────────────────────────────────── +2026/03/20 17:09:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:19.587386515Z"} +2026/03/20 17:09:24 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":12.872329418131727,"throughput_eps":0,"last_update":"2026-03-20T17:09:19.719721949Z"} +2026/03/20 17:09:24 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":91.05275299640623,"throughput_eps":0,"last_update":"2026-03-20T17:09:19.719735245Z"} +2026/03/20 17:09:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:19.575497322Z"} +2026/03/20 17:09:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":250.8,"last_update":"2026-03-20T17:09:19.576044551Z"} +2026/03/20 17:09:24 ───────────────────────────────────────────────── +2026/03/20 17:09:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:24.575519089Z"} +2026/03/20 17:09:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":251.8,"last_update":"2026-03-20T17:09:24.575595696Z"} +2026/03/20 17:09:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":506,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:24.586235355Z"} +2026/03/20 17:09:29 [detection_layer] {"stage_name":"detection_layer","events_processed":41,"events_dropped":0,"avg_latency_ms":12.872329418131727,"throughput_eps":0,"last_update":"2026-03-20T17:09:24.71948692Z"} +2026/03/20 17:09:29 [transform_engine] {"stage_name":"transform_engine","events_processed":41,"events_dropped":0,"avg_latency_ms":91.05275299640623,"throughput_eps":0,"last_update":"2026-03-20T17:09:24.719500866Z"} +2026/03/20 17:09:29 ───────────────────────────────────────────────── +2026/03/20 17:09:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:34 [transform_engine] {"stage_name":"transform_engine","events_processed":42,"events_dropped":0,"avg_latency_ms":85.94409599712498,"throughput_eps":0,"last_update":"2026-03-20T17:09:29.71881158Z"} +2026/03/20 17:09:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:29.575719635Z"} +2026/03/20 17:09:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":252.8,"last_update":"2026-03-20T17:09:29.575695108Z"} +2026/03/20 17:09:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:29.587556448Z"} +2026/03/20 17:09:34 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":12.885865134505382,"throughput_eps":0,"last_update":"2026-03-20T17:09:29.718798626Z"} +2026/03/20 17:09:34 ───────────────────────────────────────────────── +2026/03/20 17:09:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:39 [transform_engine] {"stage_name":"transform_engine","events_processed":42,"events_dropped":0,"avg_latency_ms":85.94409599712498,"throughput_eps":0,"last_update":"2026-03-20T17:09:34.718763497Z"} +2026/03/20 17:09:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:34.575600652Z"} +2026/03/20 17:09:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":253.8,"last_update":"2026-03-20T17:09:34.575761741Z"} +2026/03/20 17:09:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":510,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:34.585533697Z"} +2026/03/20 17:09:39 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":12.885865134505382,"throughput_eps":0,"last_update":"2026-03-20T17:09:34.718778467Z"} +2026/03/20 17:09:39 ───────────────────────────────────────────────── +2026/03/20 17:09:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:39.575519011Z"} +2026/03/20 17:09:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":254.8,"last_update":"2026-03-20T17:09:39.575698796Z"} +2026/03/20 17:09:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":512,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:39.586319409Z"} +2026/03/20 17:09:44 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":12.885865134505382,"throughput_eps":0,"last_update":"2026-03-20T17:09:39.719706104Z"} +2026/03/20 17:09:44 [transform_engine] {"stage_name":"transform_engine","events_processed":42,"events_dropped":0,"avg_latency_ms":85.94409599712498,"throughput_eps":0,"last_update":"2026-03-20T17:09:39.719718206Z"} +2026/03/20 17:09:44 ───────────────────────────────────────────────── +2026/03/20 17:09:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:49 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":12.885865134505382,"throughput_eps":0,"last_update":"2026-03-20T17:09:44.718809027Z"} +2026/03/20 17:09:49 [transform_engine] {"stage_name":"transform_engine","events_processed":42,"events_dropped":0,"avg_latency_ms":85.94409599712498,"throughput_eps":0,"last_update":"2026-03-20T17:09:44.718822544Z"} +2026/03/20 17:09:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:44.57588422Z"} +2026/03/20 17:09:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":255.8,"last_update":"2026-03-20T17:09:44.576396081Z"} +2026/03/20 17:09:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:44.586510926Z"} +2026/03/20 17:09:49 ───────────────────────────────────────────────── +2026/03/20 17:09:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:54 [transform_engine] {"stage_name":"transform_engine","events_processed":42,"events_dropped":0,"avg_latency_ms":85.94409599712498,"throughput_eps":0,"last_update":"2026-03-20T17:09:49.719563816Z"} +2026/03/20 17:09:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:49.575852147Z"} +2026/03/20 17:09:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":256.8,"last_update":"2026-03-20T17:09:49.576175166Z"} +2026/03/20 17:09:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":516,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:49.585257101Z"} +2026/03/20 17:09:54 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":12.885865134505382,"throughput_eps":0,"last_update":"2026-03-20T17:09:49.71953966Z"} +2026/03/20 17:09:54 ───────────────────────────────────────────────── +2026/03/20 17:09:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:09:59 [transform_engine] {"stage_name":"transform_engine","events_processed":43,"events_dropped":0,"avg_latency_ms":81.63562379769998,"throughput_eps":0,"last_update":"2026-03-20T17:09:54.783231066Z"} +2026/03/20 17:09:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:54.575662962Z"} +2026/03/20 17:09:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":257.8,"last_update":"2026-03-20T17:09:54.576052117Z"} +2026/03/20 17:09:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:54.58755844Z"} +2026/03/20 17:09:59 [detection_layer] {"stage_name":"detection_layer","events_processed":42,"events_dropped":0,"avg_latency_ms":12.885865134505382,"throughput_eps":0,"last_update":"2026-03-20T17:09:54.718796908Z"} +2026/03/20 17:09:59 ───────────────────────────────────────────────── +2026/03/20 17:10:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:04 [transform_engine] {"stage_name":"transform_engine","events_processed":43,"events_dropped":0,"avg_latency_ms":81.63562379769998,"throughput_eps":0,"last_update":"2026-03-20T17:09:59.719417826Z"} +2026/03/20 17:10:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:59.575798226Z"} +2026/03/20 17:10:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":258.8,"last_update":"2026-03-20T17:09:59.576437941Z"} +2026/03/20 17:10:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":520,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:09:59.586067487Z"} +2026/03/20 17:10:04 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":13.149079707604306,"throughput_eps":0,"last_update":"2026-03-20T17:09:59.719405583Z"} +2026/03/20 17:10:04 ───────────────────────────────────────────────── +2026/03/20 17:10:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:09 [transform_engine] {"stage_name":"transform_engine","events_processed":43,"events_dropped":0,"avg_latency_ms":81.63562379769998,"throughput_eps":0,"last_update":"2026-03-20T17:10:04.71912557Z"} +2026/03/20 17:10:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:04.575515844Z"} +2026/03/20 17:10:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":259.8,"last_update":"2026-03-20T17:10:04.575795491Z"} +2026/03/20 17:10:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":522,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:04.591685284Z"} +2026/03/20 17:10:09 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":13.149079707604306,"throughput_eps":0,"last_update":"2026-03-20T17:10:04.719065515Z"} +2026/03/20 17:10:09 ───────────────────────────────────────────────── +2026/03/20 17:10:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:09.575722974Z"} +2026/03/20 17:10:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":260.8,"last_update":"2026-03-20T17:10:09.576175081Z"} +2026/03/20 17:10:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:09.584369536Z"} +2026/03/20 17:10:14 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":13.149079707604306,"throughput_eps":0,"last_update":"2026-03-20T17:10:09.719813367Z"} +2026/03/20 17:10:14 [transform_engine] {"stage_name":"transform_engine","events_processed":43,"events_dropped":0,"avg_latency_ms":81.63562379769998,"throughput_eps":0,"last_update":"2026-03-20T17:10:09.718649596Z"} +2026/03/20 17:10:14 ───────────────────────────────────────────────── +2026/03/20 17:10:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:19 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":13.149079707604306,"throughput_eps":0,"last_update":"2026-03-20T17:10:14.719691683Z"} +2026/03/20 17:10:19 [transform_engine] {"stage_name":"transform_engine","events_processed":43,"events_dropped":0,"avg_latency_ms":81.63562379769998,"throughput_eps":0,"last_update":"2026-03-20T17:10:14.719593736Z"} +2026/03/20 17:10:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:14.575536283Z"} +2026/03/20 17:10:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":261.8,"last_update":"2026-03-20T17:10:14.57607205Z"} +2026/03/20 17:10:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":526,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:14.587312313Z"} +2026/03/20 17:10:19 ───────────────────────────────────────────────── +2026/03/20 17:10:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:24 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":13.149079707604306,"throughput_eps":0,"last_update":"2026-03-20T17:10:19.719865359Z"} +2026/03/20 17:10:24 [transform_engine] {"stage_name":"transform_engine","events_processed":43,"events_dropped":0,"avg_latency_ms":81.63562379769998,"throughput_eps":0,"last_update":"2026-03-20T17:10:19.718698753Z"} +2026/03/20 17:10:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:19.576043626Z"} +2026/03/20 17:10:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":262.8,"last_update":"2026-03-20T17:10:19.576024449Z"} +2026/03/20 17:10:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":528,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:19.586465752Z"} +2026/03/20 17:10:24 ───────────────────────────────────────────────── +2026/03/20 17:10:24 [ANOMALY] time=2026-03-20T17:10:24Z score=0.9382 method=SEAD details=MAD!:w=0.26,s=0.98 RRCF-fast!:w=0.18,s=0.95 RRCF-mid!:w=0.17,s=0.98 RRCF-slow!:w=0.17,s=0.98 COPOD!:w=0.21,s=0.81 +2026/03/20 17:10:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:24.575751595Z"} +2026/03/20 17:10:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":263.8,"last_update":"2026-03-20T17:10:24.57617692Z"} +2026/03/20 17:10:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":530,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:24.586092134Z"} +2026/03/20 17:10:29 [detection_layer] {"stage_name":"detection_layer","events_processed":43,"events_dropped":0,"avg_latency_ms":13.149079707604306,"throughput_eps":0,"last_update":"2026-03-20T17:10:24.718801552Z"} +2026/03/20 17:10:29 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":78.01222183815997,"throughput_eps":0,"last_update":"2026-03-20T17:10:24.782435207Z"} +2026/03/20 17:10:29 ───────────────────────────────────────────────── +2026/03/20 17:10:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:34 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":11.900673166083447,"throughput_eps":0,"last_update":"2026-03-20T17:10:29.71879841Z"} +2026/03/20 17:10:34 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":78.01222183815997,"throughput_eps":0,"last_update":"2026-03-20T17:10:29.718753715Z"} +2026/03/20 17:10:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:29.575516334Z"} +2026/03/20 17:10:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":264.8,"last_update":"2026-03-20T17:10:29.576255831Z"} +2026/03/20 17:10:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":532,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:29.585556337Z"} +2026/03/20 17:10:34 ───────────────────────────────────────────────── +2026/03/20 17:10:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:34.58514207Z"} +2026/03/20 17:10:39 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":11.900673166083447,"throughput_eps":0,"last_update":"2026-03-20T17:10:34.719508962Z"} +2026/03/20 17:10:39 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":78.01222183815997,"throughput_eps":0,"last_update":"2026-03-20T17:10:34.719544751Z"} +2026/03/20 17:10:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:34.576090781Z"} +2026/03/20 17:10:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":265.8,"last_update":"2026-03-20T17:10:34.576340048Z"} +2026/03/20 17:10:39 ───────────────────────────────────────────────── +2026/03/20 17:10:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:39.575516613Z"} +2026/03/20 17:10:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":266.8,"last_update":"2026-03-20T17:10:39.575628407Z"} +2026/03/20 17:10:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":536,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:39.587021284Z"} +2026/03/20 17:10:44 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":11.900673166083447,"throughput_eps":0,"last_update":"2026-03-20T17:10:39.719451998Z"} +2026/03/20 17:10:44 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":78.01222183815997,"throughput_eps":0,"last_update":"2026-03-20T17:10:39.719407123Z"} +2026/03/20 17:10:44 ───────────────────────────────────────────────── +2026/03/20 17:10:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:49 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":78.01222183815997,"throughput_eps":0,"last_update":"2026-03-20T17:10:44.719626807Z"} +2026/03/20 17:10:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:44.575501884Z"} +2026/03/20 17:10:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":267.8,"last_update":"2026-03-20T17:10:44.575748897Z"} +2026/03/20 17:10:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":538,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:44.586280354Z"} +2026/03/20 17:10:49 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":11.900673166083447,"throughput_eps":0,"last_update":"2026-03-20T17:10:44.719773949Z"} +2026/03/20 17:10:49 ───────────────────────────────────────────────── +2026/03/20 17:10:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:49.575943475Z"} +2026/03/20 17:10:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":268.8,"last_update":"2026-03-20T17:10:49.576261465Z"} +2026/03/20 17:10:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":540,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:49.584811504Z"} +2026/03/20 17:10:54 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":11.900673166083447,"throughput_eps":0,"last_update":"2026-03-20T17:10:49.719225647Z"} +2026/03/20 17:10:54 [transform_engine] {"stage_name":"transform_engine","events_processed":44,"events_dropped":0,"avg_latency_ms":78.01222183815997,"throughput_eps":0,"last_update":"2026-03-20T17:10:49.719054127Z"} +2026/03/20 17:10:54 ───────────────────────────────────────────────── +2026/03/20 17:10:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:10:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:54.57610964Z"} +2026/03/20 17:10:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":269.8,"last_update":"2026-03-20T17:10:54.576913311Z"} +2026/03/20 17:10:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":542,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:54.585661008Z"} +2026/03/20 17:10:59 [detection_layer] {"stage_name":"detection_layer","events_processed":44,"events_dropped":0,"avg_latency_ms":11.900673166083447,"throughput_eps":0,"last_update":"2026-03-20T17:10:54.719158407Z"} +2026/03/20 17:10:59 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":84.85405687052798,"throughput_eps":0,"last_update":"2026-03-20T17:10:54.831270846Z"} +2026/03/20 17:10:59 ───────────────────────────────────────────────── +2026/03/20 17:11:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:59.575740641Z"} +2026/03/20 17:11:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":270.8,"last_update":"2026-03-20T17:10:59.576058069Z"} +2026/03/20 17:11:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:10:59.587201439Z"} +2026/03/20 17:11:04 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":11.668261332866757,"throughput_eps":0,"last_update":"2026-03-20T17:10:59.719456842Z"} +2026/03/20 17:11:04 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":84.85405687052798,"throughput_eps":0,"last_update":"2026-03-20T17:10:59.719412967Z"} +2026/03/20 17:11:04 ───────────────────────────────────────────────── +2026/03/20 17:11:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:09 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":11.668261332866757,"throughput_eps":0,"last_update":"2026-03-20T17:11:04.719246171Z"} +2026/03/20 17:11:09 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":84.85405687052798,"throughput_eps":0,"last_update":"2026-03-20T17:11:04.719203228Z"} +2026/03/20 17:11:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:04.575863406Z"} +2026/03/20 17:11:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":271.8,"last_update":"2026-03-20T17:11:04.576195572Z"} +2026/03/20 17:11:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":546,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:04.585989045Z"} +2026/03/20 17:11:09 ───────────────────────────────────────────────── +2026/03/20 17:11:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:09.575530867Z"} +2026/03/20 17:11:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":272.8,"last_update":"2026-03-20T17:11:09.576213084Z"} +2026/03/20 17:11:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":548,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:09.585812515Z"} +2026/03/20 17:11:14 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":11.668261332866757,"throughput_eps":0,"last_update":"2026-03-20T17:11:09.719059645Z"} +2026/03/20 17:11:14 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":84.85405687052798,"throughput_eps":0,"last_update":"2026-03-20T17:11:09.719040989Z"} +2026/03/20 17:11:14 ───────────────────────────────────────────────── +2026/03/20 17:11:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:19 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":11.668261332866757,"throughput_eps":0,"last_update":"2026-03-20T17:11:14.719347569Z"} +2026/03/20 17:11:19 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":84.85405687052798,"throughput_eps":0,"last_update":"2026-03-20T17:11:14.719289558Z"} +2026/03/20 17:11:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:14.575832844Z"} +2026/03/20 17:11:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":273.8,"last_update":"2026-03-20T17:11:14.576085078Z"} +2026/03/20 17:11:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":550,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:14.585954216Z"} +2026/03/20 17:11:19 ───────────────────────────────────────────────── +2026/03/20 17:11:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:19.575571969Z"} +2026/03/20 17:11:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":274.8,"last_update":"2026-03-20T17:11:19.575664297Z"} +2026/03/20 17:11:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":552,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:19.586507252Z"} +2026/03/20 17:11:24 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":11.668261332866757,"throughput_eps":0,"last_update":"2026-03-20T17:11:19.71962033Z"} +2026/03/20 17:11:24 [transform_engine] {"stage_name":"transform_engine","events_processed":45,"events_dropped":0,"avg_latency_ms":84.85405687052798,"throughput_eps":0,"last_update":"2026-03-20T17:11:19.719631271Z"} +2026/03/20 17:11:24 ───────────────────────────────────────────────── +2026/03/20 17:11:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:24.576303873Z"} +2026/03/20 17:11:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":275.8,"last_update":"2026-03-20T17:11:24.576290378Z"} +2026/03/20 17:11:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:24.586141061Z"} +2026/03/20 17:11:29 [detection_layer] {"stage_name":"detection_layer","events_processed":45,"events_dropped":0,"avg_latency_ms":11.668261332866757,"throughput_eps":0,"last_update":"2026-03-20T17:11:24.719377319Z"} +2026/03/20 17:11:29 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":80.3387762964224,"throughput_eps":0,"last_update":"2026-03-20T17:11:24.781668148Z"} +2026/03/20 17:11:29 ───────────────────────────────────────────────── +2026/03/20 17:11:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:34 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":80.3387762964224,"throughput_eps":0,"last_update":"2026-03-20T17:11:29.719634231Z"} +2026/03/20 17:11:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:29.575495641Z"} +2026/03/20 17:11:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":276.8,"last_update":"2026-03-20T17:11:29.575465934Z"} +2026/03/20 17:11:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":556,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:29.587072033Z"} +2026/03/20 17:11:34 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":11.856389266293407,"throughput_eps":0,"last_update":"2026-03-20T17:11:29.719618482Z"} +2026/03/20 17:11:34 ───────────────────────────────────────────────── +2026/03/20 17:11:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:39 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":11.856389266293407,"throughput_eps":0,"last_update":"2026-03-20T17:11:34.719154333Z"} +2026/03/20 17:11:39 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":80.3387762964224,"throughput_eps":0,"last_update":"2026-03-20T17:11:34.719137952Z"} +2026/03/20 17:11:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:34.575840662Z"} +2026/03/20 17:11:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":277.8,"last_update":"2026-03-20T17:11:34.576482141Z"} +2026/03/20 17:11:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":558,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:34.585838667Z"} +2026/03/20 17:11:39 ───────────────────────────────────────────────── +2026/03/20 17:11:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:39.575950513Z"} +2026/03/20 17:11:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":278.8,"last_update":"2026-03-20T17:11:39.576413993Z"} +2026/03/20 17:11:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":560,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:39.585105815Z"} +2026/03/20 17:11:44 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":11.856389266293407,"throughput_eps":0,"last_update":"2026-03-20T17:11:39.719380522Z"} +2026/03/20 17:11:44 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":80.3387762964224,"throughput_eps":0,"last_update":"2026-03-20T17:11:39.719390581Z"} +2026/03/20 17:11:44 ───────────────────────────────────────────────── +2026/03/20 17:11:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:44.575679117Z"} +2026/03/20 17:11:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":279.8,"last_update":"2026-03-20T17:11:44.576002267Z"} +2026/03/20 17:11:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":562,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:44.587456345Z"} +2026/03/20 17:11:49 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":11.856389266293407,"throughput_eps":0,"last_update":"2026-03-20T17:11:44.719675986Z"} +2026/03/20 17:11:49 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":80.3387762964224,"throughput_eps":0,"last_update":"2026-03-20T17:11:44.719685754Z"} +2026/03/20 17:11:49 ───────────────────────────────────────────────── +2026/03/20 17:11:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:49.576062287Z"} +2026/03/20 17:11:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":280.8,"last_update":"2026-03-20T17:11:49.576380036Z"} +2026/03/20 17:11:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:49.586913439Z"} +2026/03/20 17:11:54 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":11.856389266293407,"throughput_eps":0,"last_update":"2026-03-20T17:11:49.719316494Z"} +2026/03/20 17:11:54 [transform_engine] {"stage_name":"transform_engine","events_processed":46,"events_dropped":0,"avg_latency_ms":80.3387762964224,"throughput_eps":0,"last_update":"2026-03-20T17:11:49.719331804Z"} +2026/03/20 17:11:54 ───────────────────────────────────────────────── +2026/03/20 17:11:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:11:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:54.575927944Z"} +2026/03/20 17:11:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":281.8,"last_update":"2026-03-20T17:11:54.576302342Z"} +2026/03/20 17:11:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":566,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:54.586046172Z"} +2026/03/20 17:11:59 [detection_layer] {"stage_name":"detection_layer","events_processed":46,"events_dropped":0,"avg_latency_ms":11.856389266293407,"throughput_eps":0,"last_update":"2026-03-20T17:11:54.719417456Z"} +2026/03/20 17:11:59 [transform_engine] {"stage_name":"transform_engine","events_processed":47,"events_dropped":0,"avg_latency_ms":87.13305163713791,"throughput_eps":0,"last_update":"2026-03-20T17:11:54.833744842Z"} +2026/03/20 17:11:59 ───────────────────────────────────────────────── +2026/03/20 17:12:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:59.576511857Z"} +2026/03/20 17:12:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":282.8,"last_update":"2026-03-20T17:11:59.576632288Z"} +2026/03/20 17:12:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":568,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:11:59.586971329Z"} +2026/03/20 17:12:04 [detection_layer] {"stage_name":"detection_layer","events_processed":47,"events_dropped":0,"avg_latency_ms":12.308179413034726,"throughput_eps":0,"last_update":"2026-03-20T17:11:59.719311749Z"} +2026/03/20 17:12:04 [transform_engine] {"stage_name":"transform_engine","events_processed":47,"events_dropped":0,"avg_latency_ms":87.13305163713791,"throughput_eps":0,"last_update":"2026-03-20T17:11:59.719321849Z"} +2026/03/20 17:12:04 ───────────────────────────────────────────────── +2026/03/20 17:12:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":283.8,"last_update":"2026-03-20T17:12:04.576177354Z"} +2026/03/20 17:12:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":570,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:04.584499148Z"} +2026/03/20 17:12:09 [detection_layer] {"stage_name":"detection_layer","events_processed":47,"events_dropped":0,"avg_latency_ms":12.308179413034726,"throughput_eps":0,"last_update":"2026-03-20T17:12:04.71880456Z"} +2026/03/20 17:12:09 [transform_engine] {"stage_name":"transform_engine","events_processed":47,"events_dropped":0,"avg_latency_ms":87.13305163713791,"throughput_eps":0,"last_update":"2026-03-20T17:12:04.71866958Z"} +2026/03/20 17:12:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:04.575767358Z"} +2026/03/20 17:12:09 ───────────────────────────────────────────────── +2026/03/20 17:12:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":284.8,"last_update":"2026-03-20T17:12:09.576239359Z"} +2026/03/20 17:12:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":572,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:09.586259279Z"} +2026/03/20 17:12:14 [detection_layer] {"stage_name":"detection_layer","events_processed":47,"events_dropped":0,"avg_latency_ms":12.308179413034726,"throughput_eps":0,"last_update":"2026-03-20T17:12:09.719502287Z"} +2026/03/20 17:12:14 [transform_engine] {"stage_name":"transform_engine","events_processed":47,"events_dropped":0,"avg_latency_ms":87.13305163713791,"throughput_eps":0,"last_update":"2026-03-20T17:12:09.719511494Z"} +2026/03/20 17:12:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:09.575920518Z"} +2026/03/20 17:12:14 ───────────────────────────────────────────────── +2026/03/20 17:12:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:14.575750312Z"} +2026/03/20 17:12:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":285.8,"last_update":"2026-03-20T17:12:14.576184094Z"} +2026/03/20 17:12:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:14.586024219Z"} +2026/03/20 17:12:19 [detection_layer] {"stage_name":"detection_layer","events_processed":47,"events_dropped":0,"avg_latency_ms":12.308179413034726,"throughput_eps":0,"last_update":"2026-03-20T17:12:14.719283771Z"} +2026/03/20 17:12:19 [transform_engine] {"stage_name":"transform_engine","events_processed":47,"events_dropped":0,"avg_latency_ms":87.13305163713791,"throughput_eps":0,"last_update":"2026-03-20T17:12:14.719291185Z"} +2026/03/20 17:12:19 ───────────────────────────────────────────────── +2026/03/20 17:12:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:19.575878725Z"} +2026/03/20 17:12:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":286.8,"last_update":"2026-03-20T17:12:19.576338476Z"} +2026/03/20 17:12:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":576,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:19.586468558Z"} +2026/03/20 17:12:24 [detection_layer] {"stage_name":"detection_layer","events_processed":47,"events_dropped":0,"avg_latency_ms":12.308179413034726,"throughput_eps":0,"last_update":"2026-03-20T17:12:19.719692163Z"} +2026/03/20 17:12:24 [transform_engine] {"stage_name":"transform_engine","events_processed":47,"events_dropped":0,"avg_latency_ms":87.13305163713791,"throughput_eps":0,"last_update":"2026-03-20T17:12:19.719699126Z"} +2026/03/20 17:12:24 ───────────────────────────────────────────────── +2026/03/20 17:12:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:29 [detection_layer] {"stage_name":"detection_layer","events_processed":47,"events_dropped":0,"avg_latency_ms":12.308179413034726,"throughput_eps":0,"last_update":"2026-03-20T17:12:24.71879707Z"} +2026/03/20 17:12:29 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":82.72725710971034,"throughput_eps":0,"last_update":"2026-03-20T17:12:24.783915997Z"} +2026/03/20 17:12:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:24.575511802Z"} +2026/03/20 17:12:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":287.8,"last_update":"2026-03-20T17:12:24.575742233Z"} +2026/03/20 17:12:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:24.586712877Z"} +2026/03/20 17:12:29 ───────────────────────────────────────────────── +2026/03/20 17:12:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:29.575732334Z"} +2026/03/20 17:12:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":288.8,"last_update":"2026-03-20T17:12:29.576021679Z"} +2026/03/20 17:12:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":580,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:29.586571096Z"} +2026/03/20 17:12:34 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":12.231014930427781,"throughput_eps":0,"last_update":"2026-03-20T17:12:29.718824717Z"} +2026/03/20 17:12:34 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":82.72725710971034,"throughput_eps":0,"last_update":"2026-03-20T17:12:29.718718793Z"} +2026/03/20 17:12:34 ───────────────────────────────────────────────── +2026/03/20 17:12:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:34.575798134Z"} +2026/03/20 17:12:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":289.8,"last_update":"2026-03-20T17:12:34.57607747Z"} +2026/03/20 17:12:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":582,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:34.586970625Z"} +2026/03/20 17:12:39 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":12.231014930427781,"throughput_eps":0,"last_update":"2026-03-20T17:12:34.719224639Z"} +2026/03/20 17:12:39 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":82.72725710971034,"throughput_eps":0,"last_update":"2026-03-20T17:12:34.719233778Z"} +2026/03/20 17:12:39 ───────────────────────────────────────────────── +2026/03/20 17:12:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:39.57551769Z"} +2026/03/20 17:12:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":290.8,"last_update":"2026-03-20T17:12:39.575455069Z"} +2026/03/20 17:12:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:39.584630762Z"} +2026/03/20 17:12:44 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":12.231014930427781,"throughput_eps":0,"last_update":"2026-03-20T17:12:39.718791254Z"} +2026/03/20 17:12:44 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":82.72725710971034,"throughput_eps":0,"last_update":"2026-03-20T17:12:39.718801814Z"} +2026/03/20 17:12:44 ───────────────────────────────────────────────── +2026/03/20 17:12:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:44.575791938Z"} +2026/03/20 17:12:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":291.8,"last_update":"2026-03-20T17:12:44.576082876Z"} +2026/03/20 17:12:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":586,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:44.585722687Z"} +2026/03/20 17:12:49 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":12.231014930427781,"throughput_eps":0,"last_update":"2026-03-20T17:12:44.719111003Z"} +2026/03/20 17:12:49 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":82.72725710971034,"throughput_eps":0,"last_update":"2026-03-20T17:12:44.719126402Z"} +2026/03/20 17:12:49 ───────────────────────────────────────────────── +2026/03/20 17:12:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:54 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":12.231014930427781,"throughput_eps":0,"last_update":"2026-03-20T17:12:49.719377847Z"} +2026/03/20 17:12:54 [transform_engine] {"stage_name":"transform_engine","events_processed":48,"events_dropped":0,"avg_latency_ms":82.72725710971034,"throughput_eps":0,"last_update":"2026-03-20T17:12:49.719388036Z"} +2026/03/20 17:12:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:49.575499868Z"} +2026/03/20 17:12:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":292.8,"last_update":"2026-03-20T17:12:49.575553291Z"} +2026/03/20 17:12:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":588,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:49.585037434Z"} +2026/03/20 17:12:54 ───────────────────────────────────────────────── +2026/03/20 17:12:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:12:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":293.8,"last_update":"2026-03-20T17:12:54.576215949Z"} +2026/03/20 17:12:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":590,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:54.584556761Z"} +2026/03/20 17:12:59 [detection_layer] {"stage_name":"detection_layer","events_processed":48,"events_dropped":0,"avg_latency_ms":12.231014930427781,"throughput_eps":0,"last_update":"2026-03-20T17:12:54.719824353Z"} +2026/03/20 17:12:59 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":79.25397128776828,"throughput_eps":0,"last_update":"2026-03-20T17:12:54.784081976Z"} +2026/03/20 17:12:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:54.575884183Z"} +2026/03/20 17:12:59 ───────────────────────────────────────────────── +2026/03/20 17:13:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":592,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:59.585136696Z"} +2026/03/20 17:13:04 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":13.083103944342225,"throughput_eps":0,"last_update":"2026-03-20T17:12:59.719422599Z"} +2026/03/20 17:13:04 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":79.25397128776828,"throughput_eps":0,"last_update":"2026-03-20T17:12:59.719450443Z"} +2026/03/20 17:13:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:12:59.576333758Z"} +2026/03/20 17:13:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":294.8,"last_update":"2026-03-20T17:12:59.576315783Z"} +2026/03/20 17:13:04 ───────────────────────────────────────────────── +2026/03/20 17:13:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:04.575974079Z"} +2026/03/20 17:13:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":295.8,"last_update":"2026-03-20T17:13:04.576322576Z"} +2026/03/20 17:13:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:04.585171744Z"} +2026/03/20 17:13:09 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":13.083103944342225,"throughput_eps":0,"last_update":"2026-03-20T17:13:04.719443212Z"} +2026/03/20 17:13:09 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":79.25397128776828,"throughput_eps":0,"last_update":"2026-03-20T17:13:04.719459633Z"} +2026/03/20 17:13:09 ───────────────────────────────────────────────── +2026/03/20 17:13:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:14 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":13.083103944342225,"throughput_eps":0,"last_update":"2026-03-20T17:13:09.719191245Z"} +2026/03/20 17:13:14 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":79.25397128776828,"throughput_eps":0,"last_update":"2026-03-20T17:13:09.719205403Z"} +2026/03/20 17:13:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:09.576541821Z"} +2026/03/20 17:13:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":296.8,"last_update":"2026-03-20T17:13:09.575419789Z"} +2026/03/20 17:13:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":596,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:09.584805525Z"} +2026/03/20 17:13:14 ───────────────────────────────────────────────── +2026/03/20 17:13:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:14.575875071Z"} +2026/03/20 17:13:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":297.8,"last_update":"2026-03-20T17:13:14.576278024Z"} +2026/03/20 17:13:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":598,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:14.585477202Z"} +2026/03/20 17:13:19 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":13.083103944342225,"throughput_eps":0,"last_update":"2026-03-20T17:13:14.718801519Z"} +2026/03/20 17:13:19 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":79.25397128776828,"throughput_eps":0,"last_update":"2026-03-20T17:13:14.718710655Z"} +2026/03/20 17:13:19 ───────────────────────────────────────────────── +2026/03/20 17:13:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":298.8,"last_update":"2026-03-20T17:13:19.57543631Z"} +2026/03/20 17:13:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":600,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:19.58522528Z"} +2026/03/20 17:13:24 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":13.083103944342225,"throughput_eps":0,"last_update":"2026-03-20T17:13:19.719630392Z"} +2026/03/20 17:13:24 [transform_engine] {"stage_name":"transform_engine","events_processed":49,"events_dropped":0,"avg_latency_ms":79.25397128776828,"throughput_eps":0,"last_update":"2026-03-20T17:13:19.719645972Z"} +2026/03/20 17:13:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:19.57650542Z"} +2026/03/20 17:13:24 ───────────────────────────────────────────────── +2026/03/20 17:13:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:24.575821922Z"} +2026/03/20 17:13:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":299.8,"last_update":"2026-03-20T17:13:24.576213623Z"} +2026/03/20 17:13:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":602,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:24.585154346Z"} +2026/03/20 17:13:29 [detection_layer] {"stage_name":"detection_layer","events_processed":49,"events_dropped":0,"avg_latency_ms":13.083103944342225,"throughput_eps":0,"last_update":"2026-03-20T17:13:24.719560402Z"} +2026/03/20 17:13:29 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":75.84135663021463,"throughput_eps":0,"last_update":"2026-03-20T17:13:24.781768353Z"} +2026/03/20 17:13:29 ───────────────────────────────────────────────── +2026/03/20 17:13:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:34 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":75.84135663021463,"throughput_eps":0,"last_update":"2026-03-20T17:13:29.71888431Z"} +2026/03/20 17:13:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:29.575504975Z"} +2026/03/20 17:13:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":300.8,"last_update":"2026-03-20T17:13:29.575744324Z"} +2026/03/20 17:13:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:29.585641512Z"} +2026/03/20 17:13:34 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":13.277495155473781,"throughput_eps":0,"last_update":"2026-03-20T17:13:29.71887375Z"} +2026/03/20 17:13:34 ───────────────────────────────────────────────── +2026/03/20 17:13:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:34.576013021Z"} +2026/03/20 17:13:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":301.8,"last_update":"2026-03-20T17:13:34.576303929Z"} +2026/03/20 17:13:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":606,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:34.586431899Z"} +2026/03/20 17:13:39 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":13.277495155473781,"throughput_eps":0,"last_update":"2026-03-20T17:13:34.719837993Z"} +2026/03/20 17:13:39 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":75.84135663021463,"throughput_eps":0,"last_update":"2026-03-20T17:13:34.718655235Z"} +2026/03/20 17:13:39 ───────────────────────────────────────────────── +2026/03/20 17:13:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:39.576279744Z"} +2026/03/20 17:13:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":302.8,"last_update":"2026-03-20T17:13:39.576264695Z"} +2026/03/20 17:13:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":608,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:39.58513262Z"} +2026/03/20 17:13:44 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":13.277495155473781,"throughput_eps":0,"last_update":"2026-03-20T17:13:39.719512983Z"} +2026/03/20 17:13:44 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":75.84135663021463,"throughput_eps":0,"last_update":"2026-03-20T17:13:39.719521991Z"} +2026/03/20 17:13:44 ───────────────────────────────────────────────── +2026/03/20 17:13:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:44.57577645Z"} +2026/03/20 17:13:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":303.8,"last_update":"2026-03-20T17:13:44.576076635Z"} +2026/03/20 17:13:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":610,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:44.585391838Z"} +2026/03/20 17:13:49 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":13.277495155473781,"throughput_eps":0,"last_update":"2026-03-20T17:13:44.719645311Z"} +2026/03/20 17:13:49 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":75.84135663021463,"throughput_eps":0,"last_update":"2026-03-20T17:13:44.719651192Z"} +2026/03/20 17:13:49 ───────────────────────────────────────────────── +2026/03/20 17:13:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:49.575584258Z"} +2026/03/20 17:13:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":304.8,"last_update":"2026-03-20T17:13:49.575718095Z"} +2026/03/20 17:13:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":612,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:49.584996918Z"} +2026/03/20 17:13:54 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":13.277495155473781,"throughput_eps":0,"last_update":"2026-03-20T17:13:49.719218312Z"} +2026/03/20 17:13:54 [transform_engine] {"stage_name":"transform_engine","events_processed":50,"events_dropped":0,"avg_latency_ms":75.84135663021463,"throughput_eps":0,"last_update":"2026-03-20T17:13:49.719228051Z"} +2026/03/20 17:13:54 ───────────────────────────────────────────────── +2026/03/20 17:13:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:13:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:54.575672965Z"} +2026/03/20 17:13:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":305.8,"last_update":"2026-03-20T17:13:54.575954214Z"} +2026/03/20 17:13:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:54.587493852Z"} +2026/03/20 17:13:59 [detection_layer] {"stage_name":"detection_layer","events_processed":50,"events_dropped":0,"avg_latency_ms":13.277495155473781,"throughput_eps":0,"last_update":"2026-03-20T17:13:54.718787974Z"} +2026/03/20 17:13:59 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":73.60143610417171,"throughput_eps":0,"last_update":"2026-03-20T17:13:54.783417114Z"} +2026/03/20 17:13:59 ───────────────────────────────────────────────── +2026/03/20 17:14:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:59.57550921Z"} +2026/03/20 17:14:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":306.8,"last_update":"2026-03-20T17:13:59.575835666Z"} +2026/03/20 17:14:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":616,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:13:59.586063941Z"} +2026/03/20 17:14:04 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":13.588248124379026,"throughput_eps":0,"last_update":"2026-03-20T17:13:59.719426782Z"} +2026/03/20 17:14:04 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":73.60143610417171,"throughput_eps":0,"last_update":"2026-03-20T17:13:59.719439367Z"} +2026/03/20 17:14:04 ───────────────────────────────────────────────── +2026/03/20 17:14:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:09 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":73.60143610417171,"throughput_eps":0,"last_update":"2026-03-20T17:14:04.718731037Z"} +2026/03/20 17:14:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:04.575975311Z"} +2026/03/20 17:14:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":307.8,"last_update":"2026-03-20T17:14:04.576466192Z"} +2026/03/20 17:14:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":618,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:04.586543577Z"} +2026/03/20 17:14:09 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":13.588248124379026,"throughput_eps":0,"last_update":"2026-03-20T17:14:04.718847109Z"} +2026/03/20 17:14:09 ───────────────────────────────────────────────── +2026/03/20 17:14:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:09.576036437Z"} +2026/03/20 17:14:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":308.8,"last_update":"2026-03-20T17:14:09.576580371Z"} +2026/03/20 17:14:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":620,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:09.586246436Z"} +2026/03/20 17:14:14 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":13.588248124379026,"throughput_eps":0,"last_update":"2026-03-20T17:14:09.719617069Z"} +2026/03/20 17:14:14 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":73.60143610417171,"throughput_eps":0,"last_update":"2026-03-20T17:14:09.71963326Z"} +2026/03/20 17:14:14 ───────────────────────────────────────────────── +2026/03/20 17:14:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:19 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":13.588248124379026,"throughput_eps":0,"last_update":"2026-03-20T17:14:14.719487615Z"} +2026/03/20 17:14:19 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":73.60143610417171,"throughput_eps":0,"last_update":"2026-03-20T17:14:14.719451074Z"} +2026/03/20 17:14:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:14.575746253Z"} +2026/03/20 17:14:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":309.8,"last_update":"2026-03-20T17:14:14.576159637Z"} +2026/03/20 17:14:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":622,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:14.585331264Z"} +2026/03/20 17:14:19 ───────────────────────────────────────────────── +2026/03/20 17:14:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:24 [transform_engine] {"stage_name":"transform_engine","events_processed":51,"events_dropped":0,"avg_latency_ms":73.60143610417171,"throughput_eps":0,"last_update":"2026-03-20T17:14:19.718941576Z"} +2026/03/20 17:14:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:19.576021127Z"} +2026/03/20 17:14:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":310.8,"last_update":"2026-03-20T17:14:19.576543228Z"} +2026/03/20 17:14:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":622,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:19.576201472Z"} +2026/03/20 17:14:24 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":13.588248124379026,"throughput_eps":0,"last_update":"2026-03-20T17:14:19.718921878Z"} +2026/03/20 17:14:24 ───────────────────────────────────────────────── +2026/03/20 17:14:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:24.575808036Z"} +2026/03/20 17:14:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":311.8,"last_update":"2026-03-20T17:14:24.576142607Z"} +2026/03/20 17:14:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":626,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:24.586452267Z"} +2026/03/20 17:14:29 [detection_layer] {"stage_name":"detection_layer","events_processed":51,"events_dropped":0,"avg_latency_ms":13.588248124379026,"throughput_eps":0,"last_update":"2026-03-20T17:14:24.718884176Z"} +2026/03/20 17:14:29 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":81.74561688333738,"throughput_eps":0,"last_update":"2026-03-20T17:14:24.833049615Z"} +2026/03/20 17:14:29 ───────────────────────────────────────────────── +2026/03/20 17:14:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:34 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":81.74561688333738,"throughput_eps":0,"last_update":"2026-03-20T17:14:29.719483805Z"} +2026/03/20 17:14:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:29.575933093Z"} +2026/03/20 17:14:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":312.8,"last_update":"2026-03-20T17:14:29.576553623Z"} +2026/03/20 17:14:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":628,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:29.585122074Z"} +2026/03/20 17:14:34 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":13.826673099503221,"throughput_eps":0,"last_update":"2026-03-20T17:14:29.719452095Z"} +2026/03/20 17:14:34 ───────────────────────────────────────────────── +2026/03/20 17:14:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:34.575532081Z"} +2026/03/20 17:14:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":313.8,"last_update":"2026-03-20T17:14:34.575777913Z"} +2026/03/20 17:14:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":630,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:34.585381008Z"} +2026/03/20 17:14:39 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":13.826673099503221,"throughput_eps":0,"last_update":"2026-03-20T17:14:34.719399794Z"} +2026/03/20 17:14:39 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":81.74561688333738,"throughput_eps":0,"last_update":"2026-03-20T17:14:34.719432547Z"} +2026/03/20 17:14:39 ───────────────────────────────────────────────── +2026/03/20 17:14:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":632,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:39.587045689Z"} +2026/03/20 17:14:44 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":13.826673099503221,"throughput_eps":0,"last_update":"2026-03-20T17:14:39.719300444Z"} +2026/03/20 17:14:44 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":81.74561688333738,"throughput_eps":0,"last_update":"2026-03-20T17:14:39.71933492Z"} +2026/03/20 17:14:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:39.575507161Z"} +2026/03/20 17:14:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":314.8,"last_update":"2026-03-20T17:14:39.575972313Z"} +2026/03/20 17:14:44 ───────────────────────────────────────────────── +2026/03/20 17:14:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:44.584910391Z"} +2026/03/20 17:14:49 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":13.826673099503221,"throughput_eps":0,"last_update":"2026-03-20T17:14:44.719348615Z"} +2026/03/20 17:14:49 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":81.74561688333738,"throughput_eps":0,"last_update":"2026-03-20T17:14:44.719291657Z"} +2026/03/20 17:14:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:44.575595548Z"} +2026/03/20 17:14:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1578,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":315.6,"last_update":"2026-03-20T17:14:44.575034161Z"} +2026/03/20 17:14:49 ───────────────────────────────────────────────── +2026/03/20 17:14:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:54 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":13.826673099503221,"throughput_eps":0,"last_update":"2026-03-20T17:14:49.719484632Z"} +2026/03/20 17:14:54 [transform_engine] {"stage_name":"transform_engine","events_processed":52,"events_dropped":0,"avg_latency_ms":81.74561688333738,"throughput_eps":0,"last_update":"2026-03-20T17:14:49.719528185Z"} +2026/03/20 17:14:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:49.575560774Z"} +2026/03/20 17:14:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1583,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":316.6,"last_update":"2026-03-20T17:14:49.575035767Z"} +2026/03/20 17:14:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":636,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:49.586165742Z"} +2026/03/20 17:14:54 ───────────────────────────────────────────────── +2026/03/20 17:14:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:14:59 [detection_layer] {"stage_name":"detection_layer","events_processed":52,"events_dropped":0,"avg_latency_ms":13.826673099503221,"throughput_eps":0,"last_update":"2026-03-20T17:14:54.718945852Z"} +2026/03/20 17:14:59 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":86.9098667066699,"throughput_eps":0,"last_update":"2026-03-20T17:14:54.826527536Z"} +2026/03/20 17:14:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:54.576182247Z"} +2026/03/20 17:14:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":317.8,"last_update":"2026-03-20T17:14:54.576768491Z"} +2026/03/20 17:14:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":638,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:54.585642169Z"} +2026/03/20 17:14:59 ───────────────────────────────────────────────── +2026/03/20 17:15:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:04 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":86.9098667066699,"throughput_eps":0,"last_update":"2026-03-20T17:14:59.718653069Z"} +2026/03/20 17:15:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:59.575551705Z"} +2026/03/20 17:15:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":318.8,"last_update":"2026-03-20T17:14:59.575660474Z"} +2026/03/20 17:15:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":640,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:14:59.585465958Z"} +2026/03/20 17:15:04 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":14.058482079602577,"throughput_eps":0,"last_update":"2026-03-20T17:14:59.719737068Z"} +2026/03/20 17:15:04 ───────────────────────────────────────────────── +2026/03/20 17:15:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:09 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":86.9098667066699,"throughput_eps":0,"last_update":"2026-03-20T17:15:04.719556395Z"} +2026/03/20 17:15:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:04.575789924Z"} +2026/03/20 17:15:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":319.8,"last_update":"2026-03-20T17:15:04.576280905Z"} +2026/03/20 17:15:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":642,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:04.586311581Z"} +2026/03/20 17:15:09 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":14.058482079602577,"throughput_eps":0,"last_update":"2026-03-20T17:15:04.719544372Z"} +2026/03/20 17:15:09 ───────────────────────────────────────────────── +2026/03/20 17:15:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:14 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":14.058482079602577,"throughput_eps":0,"last_update":"2026-03-20T17:15:09.718801217Z"} +2026/03/20 17:15:14 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":86.9098667066699,"throughput_eps":0,"last_update":"2026-03-20T17:15:09.71881397Z"} +2026/03/20 17:15:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:09.575585538Z"} +2026/03/20 17:15:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":320.8,"last_update":"2026-03-20T17:15:09.575828314Z"} +2026/03/20 17:15:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:09.585567802Z"} +2026/03/20 17:15:14 ───────────────────────────────────────────────── +2026/03/20 17:15:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:14.576605186Z"} +2026/03/20 17:15:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":321.8,"last_update":"2026-03-20T17:15:14.5766075Z"} +2026/03/20 17:15:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":646,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:14.585342341Z"} +2026/03/20 17:15:19 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":14.058482079602577,"throughput_eps":0,"last_update":"2026-03-20T17:15:14.71959389Z"} +2026/03/20 17:15:19 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":86.9098667066699,"throughput_eps":0,"last_update":"2026-03-20T17:15:14.719602627Z"} +2026/03/20 17:15:19 ───────────────────────────────────────────────── +2026/03/20 17:15:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:24 [transform_engine] {"stage_name":"transform_engine","events_processed":53,"events_dropped":0,"avg_latency_ms":86.9098667066699,"throughput_eps":0,"last_update":"2026-03-20T17:15:19.719156888Z"} +2026/03/20 17:15:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:19.575753536Z"} +2026/03/20 17:15:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":322.8,"last_update":"2026-03-20T17:15:19.576004617Z"} +2026/03/20 17:15:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":648,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:19.5857095Z"} +2026/03/20 17:15:24 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":14.058482079602577,"throughput_eps":0,"last_update":"2026-03-20T17:15:19.71914248Z"} +2026/03/20 17:15:24 ───────────────────────────────────────────────── +2026/03/20 17:15:24 [ANOMALY] time=2026-03-20T17:15:24Z score=0.8744 method=SEAD details=MAD!:w=0.28,s=0.68 RRCF-fast!:w=0.18,s=0.92 RRCF-mid!:w=0.17,s=0.94 RRCF-slow!:w=0.17,s=0.94 COPOD!:w=0.21,s=0.98 +2026/03/20 17:15:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:24.575821071Z"} +2026/03/20 17:15:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":323.8,"last_update":"2026-03-20T17:15:24.57588815Z"} +2026/03/20 17:15:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":650,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:24.586441931Z"} +2026/03/20 17:15:29 [detection_layer] {"stage_name":"detection_layer","events_processed":53,"events_dropped":0,"avg_latency_ms":14.058482079602577,"throughput_eps":0,"last_update":"2026-03-20T17:15:24.719831429Z"} +2026/03/20 17:15:29 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":92.14336216533593,"throughput_eps":0,"last_update":"2026-03-20T17:15:24.831786461Z"} +2026/03/20 17:15:29 ───────────────────────────────────────────────── +2026/03/20 17:15:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:29.575521306Z"} +2026/03/20 17:15:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":324.8,"last_update":"2026-03-20T17:15:29.575958564Z"} +2026/03/20 17:15:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":652,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:29.586674326Z"} +2026/03/20 17:15:34 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":12.871407463682061,"throughput_eps":0,"last_update":"2026-03-20T17:15:29.719049841Z"} +2026/03/20 17:15:34 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":92.14336216533593,"throughput_eps":0,"last_update":"2026-03-20T17:15:29.719062265Z"} +2026/03/20 17:15:34 ───────────────────────────────────────────────── +2026/03/20 17:15:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:34.585923606Z"} +2026/03/20 17:15:39 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":12.871407463682061,"throughput_eps":0,"last_update":"2026-03-20T17:15:34.719088669Z"} +2026/03/20 17:15:39 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":92.14336216533593,"throughput_eps":0,"last_update":"2026-03-20T17:15:34.719096984Z"} +2026/03/20 17:15:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:34.576674909Z"} +2026/03/20 17:15:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":325.8,"last_update":"2026-03-20T17:15:34.57670695Z"} +2026/03/20 17:15:39 ───────────────────────────────────────────────── +2026/03/20 17:15:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:44 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":92.14336216533593,"throughput_eps":0,"last_update":"2026-03-20T17:15:39.719365271Z"} +2026/03/20 17:15:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:39.575501328Z"} +2026/03/20 17:15:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":326.8,"last_update":"2026-03-20T17:15:39.575888841Z"} +2026/03/20 17:15:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":656,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:39.58609222Z"} +2026/03/20 17:15:44 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":12.871407463682061,"throughput_eps":0,"last_update":"2026-03-20T17:15:39.71933866Z"} +2026/03/20 17:15:44 ───────────────────────────────────────────────── +2026/03/20 17:15:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:49 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":12.871407463682061,"throughput_eps":0,"last_update":"2026-03-20T17:15:44.719307182Z"} +2026/03/20 17:15:49 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":92.14336216533593,"throughput_eps":0,"last_update":"2026-03-20T17:15:44.719315387Z"} +2026/03/20 17:15:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:44.575671905Z"} +2026/03/20 17:15:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":327.8,"last_update":"2026-03-20T17:15:44.575961681Z"} +2026/03/20 17:15:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":658,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:44.586042935Z"} +2026/03/20 17:15:49 ───────────────────────────────────────────────── +2026/03/20 17:15:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:49.57588809Z"} +2026/03/20 17:15:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":328.8,"last_update":"2026-03-20T17:15:49.576136396Z"} +2026/03/20 17:15:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":660,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:49.587326698Z"} +2026/03/20 17:15:54 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":12.871407463682061,"throughput_eps":0,"last_update":"2026-03-20T17:15:49.719659981Z"} +2026/03/20 17:15:54 [transform_engine] {"stage_name":"transform_engine","events_processed":54,"events_dropped":0,"avg_latency_ms":92.14336216533593,"throughput_eps":0,"last_update":"2026-03-20T17:15:49.719668097Z"} +2026/03/20 17:15:54 ───────────────────────────────────────────────── +2026/03/20 17:15:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:15:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":662,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:54.585503319Z"} +2026/03/20 17:15:59 [detection_layer] {"stage_name":"detection_layer","events_processed":54,"events_dropped":0,"avg_latency_ms":12.871407463682061,"throughput_eps":0,"last_update":"2026-03-20T17:15:54.719767817Z"} +2026/03/20 17:15:59 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":96.57884533226876,"throughput_eps":0,"last_update":"2026-03-20T17:15:54.834106419Z"} +2026/03/20 17:15:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:54.575508099Z"} +2026/03/20 17:15:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":329.8,"last_update":"2026-03-20T17:15:54.57547786Z"} +2026/03/20 17:15:59 ───────────────────────────────────────────────── +2026/03/20 17:16:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:59.575722035Z"} +2026/03/20 17:16:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":330.8,"last_update":"2026-03-20T17:15:59.57608457Z"} +2026/03/20 17:16:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:15:59.585630689Z"} +2026/03/20 17:16:04 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":13.33265217094565,"throughput_eps":0,"last_update":"2026-03-20T17:15:59.718798637Z"} +2026/03/20 17:16:04 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":96.57884533226876,"throughput_eps":0,"last_update":"2026-03-20T17:15:59.718807373Z"} +2026/03/20 17:16:04 ───────────────────────────────────────────────── +2026/03/20 17:16:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:09 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":13.33265217094565,"throughput_eps":0,"last_update":"2026-03-20T17:16:04.718842114Z"} +2026/03/20 17:16:09 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":96.57884533226876,"throughput_eps":0,"last_update":"2026-03-20T17:16:04.718737264Z"} +2026/03/20 17:16:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:04.576019038Z"} +2026/03/20 17:16:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":331.8,"last_update":"2026-03-20T17:16:04.576294235Z"} +2026/03/20 17:16:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":666,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:04.585616215Z"} +2026/03/20 17:16:09 ───────────────────────────────────────────────── +2026/03/20 17:16:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:09.575766565Z"} +2026/03/20 17:16:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":332.8,"last_update":"2026-03-20T17:16:09.576137215Z"} +2026/03/20 17:16:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":668,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:09.587169615Z"} +2026/03/20 17:16:14 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":13.33265217094565,"throughput_eps":0,"last_update":"2026-03-20T17:16:09.719565355Z"} +2026/03/20 17:16:14 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":96.57884533226876,"throughput_eps":0,"last_update":"2026-03-20T17:16:09.719579992Z"} +2026/03/20 17:16:14 ───────────────────────────────────────────────── +2026/03/20 17:16:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:14.575724517Z"} +2026/03/20 17:16:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":333.8,"last_update":"2026-03-20T17:16:14.576030264Z"} +2026/03/20 17:16:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":670,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:14.58634632Z"} +2026/03/20 17:16:19 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":13.33265217094565,"throughput_eps":0,"last_update":"2026-03-20T17:16:14.719701211Z"} +2026/03/20 17:16:19 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":96.57884533226876,"throughput_eps":0,"last_update":"2026-03-20T17:16:14.719717072Z"} +2026/03/20 17:16:19 ───────────────────────────────────────────────── +2026/03/20 17:16:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:19.576099478Z"} +2026/03/20 17:16:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":334.8,"last_update":"2026-03-20T17:16:19.576432998Z"} +2026/03/20 17:16:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":672,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:19.586365969Z"} +2026/03/20 17:16:24 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":13.33265217094565,"throughput_eps":0,"last_update":"2026-03-20T17:16:19.719672048Z"} +2026/03/20 17:16:24 [transform_engine] {"stage_name":"transform_engine","events_processed":55,"events_dropped":0,"avg_latency_ms":96.57884533226876,"throughput_eps":0,"last_update":"2026-03-20T17:16:19.719684823Z"} +2026/03/20 17:16:24 ───────────────────────────────────────────────── +2026/03/20 17:16:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:29 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":91.42948546581502,"throughput_eps":0,"last_update":"2026-03-20T17:16:24.790586118Z"} +2026/03/20 17:16:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:24.575694858Z"} +2026/03/20 17:16:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":335.8,"last_update":"2026-03-20T17:16:24.576021605Z"} +2026/03/20 17:16:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:24.586361116Z"} +2026/03/20 17:16:29 [detection_layer] {"stage_name":"detection_layer","events_processed":55,"events_dropped":0,"avg_latency_ms":13.33265217094565,"throughput_eps":0,"last_update":"2026-03-20T17:16:24.719735748Z"} +2026/03/20 17:16:29 ───────────────────────────────────────────────── +2026/03/20 17:16:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:29.575545469Z"} +2026/03/20 17:16:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":336.8,"last_update":"2026-03-20T17:16:29.575660971Z"} +2026/03/20 17:16:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":676,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:29.586657884Z"} +2026/03/20 17:16:34 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":13.700245136756521,"throughput_eps":0,"last_update":"2026-03-20T17:16:29.719191023Z"} +2026/03/20 17:16:34 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":91.42948546581502,"throughput_eps":0,"last_update":"2026-03-20T17:16:29.719049261Z"} +2026/03/20 17:16:34 ───────────────────────────────────────────────── +2026/03/20 17:16:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:34.576111025Z"} +2026/03/20 17:16:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":337.8,"last_update":"2026-03-20T17:16:34.576616595Z"} +2026/03/20 17:16:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":678,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:34.585755093Z"} +2026/03/20 17:16:39 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":13.700245136756521,"throughput_eps":0,"last_update":"2026-03-20T17:16:34.719153153Z"} +2026/03/20 17:16:39 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":91.42948546581502,"throughput_eps":0,"last_update":"2026-03-20T17:16:34.719204503Z"} +2026/03/20 17:16:39 ───────────────────────────────────────────────── +2026/03/20 17:16:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:44 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":91.42948546581502,"throughput_eps":0,"last_update":"2026-03-20T17:16:39.718955742Z"} +2026/03/20 17:16:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:39.575812749Z"} +2026/03/20 17:16:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":338.8,"last_update":"2026-03-20T17:16:39.576160416Z"} +2026/03/20 17:16:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":680,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:39.585594982Z"} +2026/03/20 17:16:44 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":13.700245136756521,"throughput_eps":0,"last_update":"2026-03-20T17:16:39.718931476Z"} +2026/03/20 17:16:44 ───────────────────────────────────────────────── +2026/03/20 17:16:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:44.575986349Z"} +2026/03/20 17:16:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":339.8,"last_update":"2026-03-20T17:16:44.575968976Z"} +2026/03/20 17:16:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":682,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:44.586881787Z"} +2026/03/20 17:16:49 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":13.700245136756521,"throughput_eps":0,"last_update":"2026-03-20T17:16:44.719432936Z"} +2026/03/20 17:16:49 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":91.42948546581502,"throughput_eps":0,"last_update":"2026-03-20T17:16:44.719313788Z"} +2026/03/20 17:16:49 ───────────────────────────────────────────────── +2026/03/20 17:16:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":340.8,"last_update":"2026-03-20T17:16:49.576160842Z"} +2026/03/20 17:16:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:49.585181905Z"} +2026/03/20 17:16:54 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":13.700245136756521,"throughput_eps":0,"last_update":"2026-03-20T17:16:49.71944502Z"} +2026/03/20 17:16:54 [transform_engine] {"stage_name":"transform_engine","events_processed":56,"events_dropped":0,"avg_latency_ms":91.42948546581502,"throughput_eps":0,"last_update":"2026-03-20T17:16:49.719546394Z"} +2026/03/20 17:16:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:49.575855286Z"} +2026/03/20 17:16:54 ───────────────────────────────────────────────── +2026/03/20 17:16:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:16:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:54.575734644Z"} +2026/03/20 17:16:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":341.8,"last_update":"2026-03-20T17:16:54.576125835Z"} +2026/03/20 17:16:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":686,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:54.58660776Z"} +2026/03/20 17:16:59 [detection_layer] {"stage_name":"detection_layer","events_processed":56,"events_dropped":0,"avg_latency_ms":13.700245136756521,"throughput_eps":0,"last_update":"2026-03-20T17:16:54.718912439Z"} +2026/03/20 17:16:59 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":85.54184317265202,"throughput_eps":0,"last_update":"2026-03-20T17:16:54.780845351Z"} +2026/03/20 17:16:59 ───────────────────────────────────────────────── +2026/03/20 17:17:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:04 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":85.54184317265202,"throughput_eps":0,"last_update":"2026-03-20T17:16:59.719561226Z"} +2026/03/20 17:17:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:59.575527236Z"} +2026/03/20 17:17:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":342.8,"last_update":"2026-03-20T17:16:59.57580566Z"} +2026/03/20 17:17:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":688,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:16:59.586072032Z"} +2026/03/20 17:17:04 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":12.578859109405217,"throughput_eps":0,"last_update":"2026-03-20T17:16:59.719455363Z"} +2026/03/20 17:17:04 ───────────────────────────────────────────────── +2026/03/20 17:17:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:04.575531133Z"} +2026/03/20 17:17:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":343.8,"last_update":"2026-03-20T17:17:04.575919328Z"} +2026/03/20 17:17:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":690,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:04.586657955Z"} +2026/03/20 17:17:09 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":12.578859109405217,"throughput_eps":0,"last_update":"2026-03-20T17:17:04.718930216Z"} +2026/03/20 17:17:09 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":85.54184317265202,"throughput_eps":0,"last_update":"2026-03-20T17:17:04.718907823Z"} +2026/03/20 17:17:09 ───────────────────────────────────────────────── +2026/03/20 17:17:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:09.575980944Z"} +2026/03/20 17:17:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":344.8,"last_update":"2026-03-20T17:17:09.576303563Z"} +2026/03/20 17:17:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":692,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:09.585336849Z"} +2026/03/20 17:17:14 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":12.578859109405217,"throughput_eps":0,"last_update":"2026-03-20T17:17:09.719764526Z"} +2026/03/20 17:17:14 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":85.54184317265202,"throughput_eps":0,"last_update":"2026-03-20T17:17:09.719715072Z"} +2026/03/20 17:17:14 ───────────────────────────────────────────────── +2026/03/20 17:17:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:14.575513305Z"} +2026/03/20 17:17:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":345.8,"last_update":"2026-03-20T17:17:14.575589812Z"} +2026/03/20 17:17:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:14.585046009Z"} +2026/03/20 17:17:19 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":12.578859109405217,"throughput_eps":0,"last_update":"2026-03-20T17:17:14.719341975Z"} +2026/03/20 17:17:19 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":85.54184317265202,"throughput_eps":0,"last_update":"2026-03-20T17:17:14.719290948Z"} +2026/03/20 17:17:19 ───────────────────────────────────────────────── +2026/03/20 17:17:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:24 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":12.578859109405217,"throughput_eps":0,"last_update":"2026-03-20T17:17:19.719068847Z"} +2026/03/20 17:17:24 [transform_engine] {"stage_name":"transform_engine","events_processed":57,"events_dropped":0,"avg_latency_ms":85.54184317265202,"throughput_eps":0,"last_update":"2026-03-20T17:17:19.719044751Z"} +2026/03/20 17:17:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:19.575818615Z"} +2026/03/20 17:17:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":346.8,"last_update":"2026-03-20T17:17:19.576140523Z"} +2026/03/20 17:17:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":696,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:19.585665222Z"} +2026/03/20 17:17:24 ───────────────────────────────────────────────── +2026/03/20 17:17:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":698,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:24.585914983Z"} +2026/03/20 17:17:29 [detection_layer] {"stage_name":"detection_layer","events_processed":57,"events_dropped":0,"avg_latency_ms":12.578859109405217,"throughput_eps":0,"last_update":"2026-03-20T17:17:24.720273692Z"} +2026/03/20 17:17:29 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":81.18141693812161,"throughput_eps":0,"last_update":"2026-03-20T17:17:24.782978659Z"} +2026/03/20 17:17:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:29.575545122Z"} +2026/03/20 17:17:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":347.8,"last_update":"2026-03-20T17:17:24.576140113Z"} +2026/03/20 17:17:29 ───────────────────────────────────────────────── +2026/03/20 17:17:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":348.8,"last_update":"2026-03-20T17:17:29.576066112Z"} +2026/03/20 17:17:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":700,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:29.586174913Z"} +2026/03/20 17:17:34 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":12.979230887524174,"throughput_eps":0,"last_update":"2026-03-20T17:17:29.719805536Z"} +2026/03/20 17:17:34 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":81.18141693812161,"throughput_eps":0,"last_update":"2026-03-20T17:17:29.719694624Z"} +2026/03/20 17:17:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:29.575545122Z"} +2026/03/20 17:17:34 ───────────────────────────────────────────────── +2026/03/20 17:17:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:39 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":81.18141693812161,"throughput_eps":0,"last_update":"2026-03-20T17:17:34.719524856Z"} +2026/03/20 17:17:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:34.576102758Z"} +2026/03/20 17:17:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":349.8,"last_update":"2026-03-20T17:17:34.576427792Z"} +2026/03/20 17:17:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":702,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:34.585265033Z"} +2026/03/20 17:17:39 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":12.979230887524174,"throughput_eps":0,"last_update":"2026-03-20T17:17:34.719545725Z"} +2026/03/20 17:17:39 ───────────────────────────────────────────────── +2026/03/20 17:17:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:44 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":81.18141693812161,"throughput_eps":0,"last_update":"2026-03-20T17:17:39.719574473Z"} +2026/03/20 17:17:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:39.575741376Z"} +2026/03/20 17:17:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":350.8,"last_update":"2026-03-20T17:17:39.575955777Z"} +2026/03/20 17:17:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:39.586251316Z"} +2026/03/20 17:17:44 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":12.979230887524174,"throughput_eps":0,"last_update":"2026-03-20T17:17:39.719686768Z"} +2026/03/20 17:17:44 ───────────────────────────────────────────────── +2026/03/20 17:17:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:44.57587089Z"} +2026/03/20 17:17:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":351.8,"last_update":"2026-03-20T17:17:44.576231571Z"} +2026/03/20 17:17:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":706,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:44.58671443Z"} +2026/03/20 17:17:49 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":12.979230887524174,"throughput_eps":0,"last_update":"2026-03-20T17:17:44.718925326Z"} +2026/03/20 17:17:49 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":81.18141693812161,"throughput_eps":0,"last_update":"2026-03-20T17:17:44.71893798Z"} +2026/03/20 17:17:49 ───────────────────────────────────────────────── +2026/03/20 17:17:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:49.575542702Z"} +2026/03/20 17:17:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":352.8,"last_update":"2026-03-20T17:17:49.576045327Z"} +2026/03/20 17:17:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":708,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:49.585933614Z"} +2026/03/20 17:17:54 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":12.979230887524174,"throughput_eps":0,"last_update":"2026-03-20T17:17:49.71939Z"} +2026/03/20 17:17:54 [transform_engine] {"stage_name":"transform_engine","events_processed":58,"events_dropped":0,"avg_latency_ms":81.18141693812161,"throughput_eps":0,"last_update":"2026-03-20T17:17:49.719286932Z"} +2026/03/20 17:17:54 ───────────────────────────────────────────────── +2026/03/20 17:17:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:17:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:54.575795663Z"} +2026/03/20 17:17:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":353.8,"last_update":"2026-03-20T17:17:54.576075039Z"} +2026/03/20 17:17:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":710,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:54.587240016Z"} +2026/03/20 17:17:59 [detection_layer] {"stage_name":"detection_layer","events_processed":58,"events_dropped":0,"avg_latency_ms":12.979230887524174,"throughput_eps":0,"last_update":"2026-03-20T17:17:54.719539353Z"} +2026/03/20 17:17:59 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":88.7056029504973,"throughput_eps":0,"last_update":"2026-03-20T17:17:54.838376988Z"} +2026/03/20 17:17:59 ───────────────────────────────────────────────── +2026/03/20 17:18:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:04 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":88.7056029504973,"throughput_eps":0,"last_update":"2026-03-20T17:17:59.719469059Z"} +2026/03/20 17:18:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:59.575759382Z"} +2026/03/20 17:18:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":354.8,"last_update":"2026-03-20T17:17:59.576171553Z"} +2026/03/20 17:18:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":712,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:17:59.585302298Z"} +2026/03/20 17:18:04 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.60797811001934,"throughput_eps":0,"last_update":"2026-03-20T17:17:59.719444702Z"} +2026/03/20 17:18:04 ───────────────────────────────────────────────── +2026/03/20 17:18:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:09 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":88.7056029504973,"throughput_eps":0,"last_update":"2026-03-20T17:18:04.719667263Z"} +2026/03/20 17:18:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:04.575572546Z"} +2026/03/20 17:18:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":355.8,"last_update":"2026-03-20T17:18:04.575513452Z"} +2026/03/20 17:18:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:04.585257063Z"} +2026/03/20 17:18:09 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.60797811001934,"throughput_eps":0,"last_update":"2026-03-20T17:18:04.719797803Z"} +2026/03/20 17:18:09 ───────────────────────────────────────────────── +2026/03/20 17:18:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:14 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.60797811001934,"throughput_eps":0,"last_update":"2026-03-20T17:18:09.719102776Z"} +2026/03/20 17:18:14 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":88.7056029504973,"throughput_eps":0,"last_update":"2026-03-20T17:18:09.718943199Z"} +2026/03/20 17:18:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:09.575916459Z"} +2026/03/20 17:18:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":356.8,"last_update":"2026-03-20T17:18:09.576271892Z"} +2026/03/20 17:18:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":716,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:09.586713081Z"} +2026/03/20 17:18:14 ───────────────────────────────────────────────── +2026/03/20 17:18:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":357.8,"last_update":"2026-03-20T17:18:14.576625006Z"} +2026/03/20 17:18:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":718,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:14.58589119Z"} +2026/03/20 17:18:19 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.60797811001934,"throughput_eps":0,"last_update":"2026-03-20T17:18:14.719062688Z"} +2026/03/20 17:18:19 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":88.7056029504973,"throughput_eps":0,"last_update":"2026-03-20T17:18:14.719047097Z"} +2026/03/20 17:18:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:14.575974068Z"} +2026/03/20 17:18:19 ───────────────────────────────────────────────── +2026/03/20 17:18:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:19.575788649Z"} +2026/03/20 17:18:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":358.8,"last_update":"2026-03-20T17:18:19.576212092Z"} +2026/03/20 17:18:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":720,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:19.585187008Z"} +2026/03/20 17:18:24 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.60797811001934,"throughput_eps":0,"last_update":"2026-03-20T17:18:19.719392629Z"} +2026/03/20 17:18:24 [transform_engine] {"stage_name":"transform_engine","events_processed":59,"events_dropped":0,"avg_latency_ms":88.7056029504973,"throughput_eps":0,"last_update":"2026-03-20T17:18:19.719412697Z"} +2026/03/20 17:18:24 ───────────────────────────────────────────────── +2026/03/20 17:18:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":722,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:24.586791947Z"} +2026/03/20 17:18:29 [detection_layer] {"stage_name":"detection_layer","events_processed":59,"events_dropped":0,"avg_latency_ms":13.60797811001934,"throughput_eps":0,"last_update":"2026-03-20T17:18:24.719051626Z"} +2026/03/20 17:18:29 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":94.30956456039785,"throughput_eps":0,"last_update":"2026-03-20T17:18:24.835811923Z"} +2026/03/20 17:18:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:24.576044389Z"} +2026/03/20 17:18:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":359.8,"last_update":"2026-03-20T17:18:24.577021283Z"} +2026/03/20 17:18:29 ───────────────────────────────────────────────── +2026/03/20 17:18:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":360.8,"last_update":"2026-03-20T17:18:29.575941401Z"} +2026/03/20 17:18:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:29.586940651Z"} +2026/03/20 17:18:34 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":14.462538488015472,"throughput_eps":0,"last_update":"2026-03-20T17:18:29.719306756Z"} +2026/03/20 17:18:34 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":94.30956456039785,"throughput_eps":0,"last_update":"2026-03-20T17:18:29.719272641Z"} +2026/03/20 17:18:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:29.575662696Z"} +2026/03/20 17:18:34 ───────────────────────────────────────────────── +2026/03/20 17:18:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":726,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:34.585178802Z"} +2026/03/20 17:18:39 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":14.462538488015472,"throughput_eps":0,"last_update":"2026-03-20T17:18:34.719565184Z"} +2026/03/20 17:18:39 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":94.30956456039785,"throughput_eps":0,"last_update":"2026-03-20T17:18:34.719535447Z"} +2026/03/20 17:18:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:34.576079276Z"} +2026/03/20 17:18:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":361.8,"last_update":"2026-03-20T17:18:34.576396905Z"} +2026/03/20 17:18:39 ───────────────────────────────────────────────── +2026/03/20 17:18:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:39.57581477Z"} +2026/03/20 17:18:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":362.8,"last_update":"2026-03-20T17:18:39.576135075Z"} +2026/03/20 17:18:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":728,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:39.58599572Z"} +2026/03/20 17:18:44 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":14.462538488015472,"throughput_eps":0,"last_update":"2026-03-20T17:18:39.719336888Z"} +2026/03/20 17:18:44 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":94.30956456039785,"throughput_eps":0,"last_update":"2026-03-20T17:18:39.719301501Z"} +2026/03/20 17:18:44 ───────────────────────────────────────────────── +2026/03/20 17:18:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:44.575826891Z"} +2026/03/20 17:18:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":363.8,"last_update":"2026-03-20T17:18:44.576069397Z"} +2026/03/20 17:18:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":730,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:44.587052165Z"} +2026/03/20 17:18:49 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":14.462538488015472,"throughput_eps":0,"last_update":"2026-03-20T17:18:44.719472359Z"} +2026/03/20 17:18:49 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":94.30956456039785,"throughput_eps":0,"last_update":"2026-03-20T17:18:44.719440297Z"} +2026/03/20 17:18:49 ───────────────────────────────────────────────── +2026/03/20 17:18:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":364.8,"last_update":"2026-03-20T17:18:49.57615038Z"} +2026/03/20 17:18:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":732,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:49.58750376Z"} +2026/03/20 17:18:54 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":14.462538488015472,"throughput_eps":0,"last_update":"2026-03-20T17:18:49.718815798Z"} +2026/03/20 17:18:54 [transform_engine] {"stage_name":"transform_engine","events_processed":60,"events_dropped":0,"avg_latency_ms":94.30956456039785,"throughput_eps":0,"last_update":"2026-03-20T17:18:49.718676851Z"} +2026/03/20 17:18:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:49.575838282Z"} +2026/03/20 17:18:54 ───────────────────────────────────────────────── +2026/03/20 17:18:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:18:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:54.575977284Z"} +2026/03/20 17:18:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":365.8,"last_update":"2026-03-20T17:18:54.576310523Z"} +2026/03/20 17:18:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:54.585294017Z"} +2026/03/20 17:18:59 [detection_layer] {"stage_name":"detection_layer","events_processed":60,"events_dropped":0,"avg_latency_ms":14.462538488015472,"throughput_eps":0,"last_update":"2026-03-20T17:18:54.719667078Z"} +2026/03/20 17:18:59 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":88.46718964831828,"throughput_eps":0,"last_update":"2026-03-20T17:18:54.784821666Z"} +2026/03/20 17:18:59 ───────────────────────────────────────────────── +2026/03/20 17:19:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:59.57551422Z"} +2026/03/20 17:19:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":366.8,"last_update":"2026-03-20T17:18:59.575684536Z"} +2026/03/20 17:19:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":736,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:18:59.58650857Z"} +2026/03/20 17:19:04 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.493468990412378,"throughput_eps":0,"last_update":"2026-03-20T17:18:59.719792164Z"} +2026/03/20 17:19:04 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":88.46718964831828,"throughput_eps":0,"last_update":"2026-03-20T17:18:59.718654812Z"} +2026/03/20 17:19:04 ───────────────────────────────────────────────── +2026/03/20 17:19:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":367.8,"last_update":"2026-03-20T17:19:04.576081058Z"} +2026/03/20 17:19:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":738,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:04.585973385Z"} +2026/03/20 17:19:09 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.493468990412378,"throughput_eps":0,"last_update":"2026-03-20T17:19:04.719347924Z"} +2026/03/20 17:19:09 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":88.46718964831828,"throughput_eps":0,"last_update":"2026-03-20T17:19:04.719238574Z"} +2026/03/20 17:19:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:04.575848803Z"} +2026/03/20 17:19:09 ───────────────────────────────────────────────── +2026/03/20 17:19:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:09.575547373Z"} +2026/03/20 17:19:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":368.8,"last_update":"2026-03-20T17:19:09.575851617Z"} +2026/03/20 17:19:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":740,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:09.586056213Z"} +2026/03/20 17:19:14 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.493468990412378,"throughput_eps":0,"last_update":"2026-03-20T17:19:09.719425664Z"} +2026/03/20 17:19:14 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":88.46718964831828,"throughput_eps":0,"last_update":"2026-03-20T17:19:09.719390316Z"} +2026/03/20 17:19:14 ───────────────────────────────────────────────── +2026/03/20 17:19:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":742,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:14.58486883Z"} +2026/03/20 17:19:19 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.493468990412378,"throughput_eps":0,"last_update":"2026-03-20T17:19:14.71924328Z"} +2026/03/20 17:19:19 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":88.46718964831828,"throughput_eps":0,"last_update":"2026-03-20T17:19:14.71913429Z"} +2026/03/20 17:19:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:14.575938899Z"} +2026/03/20 17:19:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":369.8,"last_update":"2026-03-20T17:19:14.576247001Z"} +2026/03/20 17:19:19 ───────────────────────────────────────────────── +2026/03/20 17:19:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:19.575732704Z"} +2026/03/20 17:19:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":370.8,"last_update":"2026-03-20T17:19:19.575993725Z"} +2026/03/20 17:19:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:19.585166682Z"} +2026/03/20 17:19:24 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.493468990412378,"throughput_eps":0,"last_update":"2026-03-20T17:19:19.718812245Z"} +2026/03/20 17:19:24 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":88.46718964831828,"throughput_eps":0,"last_update":"2026-03-20T17:19:19.718703817Z"} +2026/03/20 17:19:24 ───────────────────────────────────────────────── +2026/03/20 17:19:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:24.575764378Z"} +2026/03/20 17:19:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":371.8,"last_update":"2026-03-20T17:19:24.576091386Z"} +2026/03/20 17:19:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":746,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:24.586885122Z"} +2026/03/20 17:19:29 [detection_layer] {"stage_name":"detection_layer","events_processed":61,"events_dropped":0,"avg_latency_ms":14.493468990412378,"throughput_eps":0,"last_update":"2026-03-20T17:19:24.719481593Z"} +2026/03/20 17:19:29 [transform_engine] {"stage_name":"transform_engine","events_processed":61,"events_dropped":0,"avg_latency_ms":88.46718964831828,"throughput_eps":0,"last_update":"2026-03-20T17:19:24.719314894Z"} +2026/03/20 17:19:29 ───────────────────────────────────────────────── +2026/03/20 17:19:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:34 [detection_layer] {"stage_name":"detection_layer","events_processed":62,"events_dropped":0,"avg_latency_ms":14.657121792329903,"throughput_eps":0,"last_update":"2026-03-20T17:19:29.718917254Z"} +2026/03/20 17:19:34 [transform_engine] {"stage_name":"transform_engine","events_processed":62,"events_dropped":0,"avg_latency_ms":93.62624151865462,"throughput_eps":0,"last_update":"2026-03-20T17:19:29.719027515Z"} +2026/03/20 17:19:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:29.575559707Z"} +2026/03/20 17:19:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":372.8,"last_update":"2026-03-20T17:19:29.575740133Z"} +2026/03/20 17:19:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":748,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:29.586691944Z"} +2026/03/20 17:19:34 ───────────────────────────────────────────────── +2026/03/20 17:19:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:34.575683711Z"} +2026/03/20 17:19:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":373.8,"last_update":"2026-03-20T17:19:34.576242594Z"} +2026/03/20 17:19:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":750,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:34.585559798Z"} +2026/03/20 17:19:39 [detection_layer] {"stage_name":"detection_layer","events_processed":62,"events_dropped":0,"avg_latency_ms":14.657121792329903,"throughput_eps":0,"last_update":"2026-03-20T17:19:34.718826797Z"} +2026/03/20 17:19:39 [transform_engine] {"stage_name":"transform_engine","events_processed":62,"events_dropped":0,"avg_latency_ms":93.62624151865462,"throughput_eps":0,"last_update":"2026-03-20T17:19:34.71872381Z"} +2026/03/20 17:19:39 ───────────────────────────────────────────────── +2026/03/20 17:19:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:39.57587107Z"} +2026/03/20 17:19:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":374.8,"last_update":"2026-03-20T17:19:39.576124727Z"} +2026/03/20 17:19:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":752,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:39.587022955Z"} +2026/03/20 17:19:44 [detection_layer] {"stage_name":"detection_layer","events_processed":62,"events_dropped":0,"avg_latency_ms":14.657121792329903,"throughput_eps":0,"last_update":"2026-03-20T17:19:39.719428183Z"} +2026/03/20 17:19:44 [transform_engine] {"stage_name":"transform_engine","events_processed":62,"events_dropped":0,"avg_latency_ms":93.62624151865462,"throughput_eps":0,"last_update":"2026-03-20T17:19:39.719317901Z"} +2026/03/20 17:19:44 ───────────────────────────────────────────────── +2026/03/20 17:19:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:44.575493188Z"} +2026/03/20 17:19:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":375.8,"last_update":"2026-03-20T17:19:44.576062621Z"} +2026/03/20 17:19:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:44.587134041Z"} +2026/03/20 17:19:49 [detection_layer] {"stage_name":"detection_layer","events_processed":62,"events_dropped":0,"avg_latency_ms":14.657121792329903,"throughput_eps":0,"last_update":"2026-03-20T17:19:44.719376216Z"} +2026/03/20 17:19:49 [transform_engine] {"stage_name":"transform_engine","events_processed":62,"events_dropped":0,"avg_latency_ms":93.62624151865462,"throughput_eps":0,"last_update":"2026-03-20T17:19:44.71947706Z"} +2026/03/20 17:19:49 ───────────────────────────────────────────────── +2026/03/20 17:19:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:54 [detection_layer] {"stage_name":"detection_layer","events_processed":62,"events_dropped":0,"avg_latency_ms":14.657121792329903,"throughput_eps":0,"last_update":"2026-03-20T17:19:49.71958845Z"} +2026/03/20 17:19:54 [transform_engine] {"stage_name":"transform_engine","events_processed":62,"events_dropped":0,"avg_latency_ms":93.62624151865462,"throughput_eps":0,"last_update":"2026-03-20T17:19:49.719566237Z"} +2026/03/20 17:19:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:49.575768482Z"} +2026/03/20 17:19:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":376.8,"last_update":"2026-03-20T17:19:49.576619584Z"} +2026/03/20 17:19:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":756,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:49.586302691Z"} +2026/03/20 17:19:54 ───────────────────────────────────────────────── +2026/03/20 17:19:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:19:59 [detection_layer] {"stage_name":"detection_layer","events_processed":62,"events_dropped":0,"avg_latency_ms":14.657121792329903,"throughput_eps":0,"last_update":"2026-03-20T17:19:54.719641972Z"} +2026/03/20 17:19:59 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":97.17956121492371,"throughput_eps":0,"last_update":"2026-03-20T17:19:54.83115881Z"} +2026/03/20 17:19:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:54.57598765Z"} +2026/03/20 17:19:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":377.6,"last_update":"2026-03-20T17:19:54.576012578Z"} +2026/03/20 17:19:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":758,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:54.586237073Z"} +2026/03/20 17:19:59 ───────────────────────────────────────────────── +2026/03/20 17:20:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:59.576058007Z"} +2026/03/20 17:20:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1893,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":378.6,"last_update":"2026-03-20T17:19:59.576013862Z"} +2026/03/20 17:20:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":760,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:19:59.586650057Z"} +2026/03/20 17:20:04 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":14.990703033863923,"throughput_eps":0,"last_update":"2026-03-20T17:19:59.719468962Z"} +2026/03/20 17:20:04 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":97.17956121492371,"throughput_eps":0,"last_update":"2026-03-20T17:19:59.719409008Z"} +2026/03/20 17:20:04 ───────────────────────────────────────────────── +2026/03/20 17:20:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:04.575501682Z"} +2026/03/20 17:20:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":379.8,"last_update":"2026-03-20T17:20:04.575679584Z"} +2026/03/20 17:20:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":762,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:04.596817586Z"} +2026/03/20 17:20:09 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":14.990703033863923,"throughput_eps":0,"last_update":"2026-03-20T17:20:04.7192104Z"} +2026/03/20 17:20:09 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":97.17956121492371,"throughput_eps":0,"last_update":"2026-03-20T17:20:04.7191841Z"} +2026/03/20 17:20:09 ───────────────────────────────────────────────── +2026/03/20 17:20:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":380.8,"last_update":"2026-03-20T17:20:09.576337221Z"} +2026/03/20 17:20:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:09.585342556Z"} +2026/03/20 17:20:14 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":14.990703033863923,"throughput_eps":0,"last_update":"2026-03-20T17:20:09.719667253Z"} +2026/03/20 17:20:14 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":97.17956121492371,"throughput_eps":0,"last_update":"2026-03-20T17:20:09.719782675Z"} +2026/03/20 17:20:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:09.575891686Z"} +2026/03/20 17:20:14 ───────────────────────────────────────────────── +2026/03/20 17:20:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:14.575507744Z"} +2026/03/20 17:20:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":381.8,"last_update":"2026-03-20T17:20:14.575571987Z"} +2026/03/20 17:20:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":766,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:14.58594141Z"} +2026/03/20 17:20:19 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":14.990703033863923,"throughput_eps":0,"last_update":"2026-03-20T17:20:14.719218389Z"} +2026/03/20 17:20:19 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":97.17956121492371,"throughput_eps":0,"last_update":"2026-03-20T17:20:14.71919857Z"} +2026/03/20 17:20:19 ───────────────────────────────────────────────── +2026/03/20 17:20:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:24 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":14.990703033863923,"throughput_eps":0,"last_update":"2026-03-20T17:20:19.719748302Z"} +2026/03/20 17:20:24 [transform_engine] {"stage_name":"transform_engine","events_processed":63,"events_dropped":0,"avg_latency_ms":97.17956121492371,"throughput_eps":0,"last_update":"2026-03-20T17:20:19.718641991Z"} +2026/03/20 17:20:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:19.575759693Z"} +2026/03/20 17:20:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":382.8,"last_update":"2026-03-20T17:20:19.57616928Z"} +2026/03/20 17:20:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":768,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:19.585495742Z"} +2026/03/20 17:20:24 ───────────────────────────────────────────────── +2026/03/20 17:20:24 [ANOMALY] time=2026-03-20T17:20:24Z score=0.8711 method=SEAD details=MAD!:w=0.27,s=0.92 RRCF-fast:w=0.18,s=0.73 RRCF-mid:w=0.16,s=0.86 RRCF-slow!:w=0.16,s=0.89 COPOD!:w=0.22,s=0.92 +2026/03/20 17:20:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:29 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":90.82371897193897,"throughput_eps":0,"last_update":"2026-03-20T17:20:24.785057766Z"} +2026/03/20 17:20:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:24.575747817Z"} +2026/03/20 17:20:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":383.8,"last_update":"2026-03-20T17:20:24.576199915Z"} +2026/03/20 17:20:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":770,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:24.586366379Z"} +2026/03/20 17:20:29 [detection_layer] {"stage_name":"detection_layer","events_processed":63,"events_dropped":0,"avg_latency_ms":14.990703033863923,"throughput_eps":0,"last_update":"2026-03-20T17:20:24.7197688Z"} +2026/03/20 17:20:29 ───────────────────────────────────────────────── +2026/03/20 17:20:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:34 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":90.82371897193897,"throughput_eps":0,"last_update":"2026-03-20T17:20:29.719776815Z"} +2026/03/20 17:20:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:29.575542792Z"} +2026/03/20 17:20:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":384.8,"last_update":"2026-03-20T17:20:29.575830344Z"} +2026/03/20 17:20:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":772,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:29.586369763Z"} +2026/03/20 17:20:34 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":15.34554502709114,"throughput_eps":0,"last_update":"2026-03-20T17:20:29.719729915Z"} +2026/03/20 17:20:34 ───────────────────────────────────────────────── +2026/03/20 17:20:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:34.575734377Z"} +2026/03/20 17:20:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":385.8,"last_update":"2026-03-20T17:20:34.57563159Z"} +2026/03/20 17:20:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:34.584633169Z"} +2026/03/20 17:20:39 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":15.34554502709114,"throughput_eps":0,"last_update":"2026-03-20T17:20:34.718871987Z"} +2026/03/20 17:20:39 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":90.82371897193897,"throughput_eps":0,"last_update":"2026-03-20T17:20:34.718900552Z"} +2026/03/20 17:20:39 ───────────────────────────────────────────────── +2026/03/20 17:20:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":386.8,"last_update":"2026-03-20T17:20:39.575454747Z"} +2026/03/20 17:20:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":776,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:39.58563056Z"} +2026/03/20 17:20:44 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":15.34554502709114,"throughput_eps":0,"last_update":"2026-03-20T17:20:39.71882769Z"} +2026/03/20 17:20:44 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":90.82371897193897,"throughput_eps":0,"last_update":"2026-03-20T17:20:39.718944223Z"} +2026/03/20 17:20:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:39.575528529Z"} +2026/03/20 17:20:44 ───────────────────────────────────────────────── +2026/03/20 17:20:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:44.575508203Z"} +2026/03/20 17:20:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":387.8,"last_update":"2026-03-20T17:20:44.575815914Z"} +2026/03/20 17:20:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":778,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:44.585672896Z"} +2026/03/20 17:20:49 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":15.34554502709114,"throughput_eps":0,"last_update":"2026-03-20T17:20:44.71878839Z"} +2026/03/20 17:20:49 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":90.82371897193897,"throughput_eps":0,"last_update":"2026-03-20T17:20:44.718780694Z"} +2026/03/20 17:20:49 ───────────────────────────────────────────────── +2026/03/20 17:20:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:49.576030359Z"} +2026/03/20 17:20:54 [metric_collector] {"stage_name":"metric_collector","events_processed":1944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":388.8,"last_update":"2026-03-20T17:20:49.576290368Z"} +2026/03/20 17:20:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":780,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:49.585542869Z"} +2026/03/20 17:20:54 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":15.34554502709114,"throughput_eps":0,"last_update":"2026-03-20T17:20:49.718826177Z"} +2026/03/20 17:20:54 [transform_engine] {"stage_name":"transform_engine","events_processed":64,"events_dropped":0,"avg_latency_ms":90.82371897193897,"throughput_eps":0,"last_update":"2026-03-20T17:20:49.718779768Z"} +2026/03/20 17:20:54 ───────────────────────────────────────────────── +2026/03/20 17:20:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:20:59 [metric_collector] {"stage_name":"metric_collector","events_processed":1949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":389.8,"last_update":"2026-03-20T17:20:54.575986478Z"} +2026/03/20 17:20:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":782,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:54.586118257Z"} +2026/03/20 17:20:59 [detection_layer] {"stage_name":"detection_layer","events_processed":64,"events_dropped":0,"avg_latency_ms":15.34554502709114,"throughput_eps":0,"last_update":"2026-03-20T17:20:54.719375765Z"} +2026/03/20 17:20:59 [transform_engine] {"stage_name":"transform_engine","events_processed":65,"events_dropped":0,"avg_latency_ms":95.09567057755119,"throughput_eps":0,"last_update":"2026-03-20T17:20:54.831613558Z"} +2026/03/20 17:20:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:54.575998853Z"} +2026/03/20 17:20:59 ───────────────────────────────────────────────── +2026/03/20 17:21:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:59.586700883Z"} +2026/03/20 17:21:04 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":15.436566821672914,"throughput_eps":0,"last_update":"2026-03-20T17:20:59.719051181Z"} +2026/03/20 17:21:04 [transform_engine] {"stage_name":"transform_engine","events_processed":65,"events_dropped":0,"avg_latency_ms":95.09567057755119,"throughput_eps":0,"last_update":"2026-03-20T17:20:59.719064567Z"} +2026/03/20 17:21:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:20:59.575886444Z"} +2026/03/20 17:21:04 [metric_collector] {"stage_name":"metric_collector","events_processed":1954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":390.8,"last_update":"2026-03-20T17:20:59.576230575Z"} +2026/03/20 17:21:04 ───────────────────────────────────────────────── +2026/03/20 17:21:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:09 [metric_collector] {"stage_name":"metric_collector","events_processed":1959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":391.8,"last_update":"2026-03-20T17:21:04.575836114Z"} +2026/03/20 17:21:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":786,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:04.585478584Z"} +2026/03/20 17:21:09 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":15.436566821672914,"throughput_eps":0,"last_update":"2026-03-20T17:21:04.719753056Z"} +2026/03/20 17:21:09 [transform_engine] {"stage_name":"transform_engine","events_processed":65,"events_dropped":0,"avg_latency_ms":95.09567057755119,"throughput_eps":0,"last_update":"2026-03-20T17:21:04.718625794Z"} +2026/03/20 17:21:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:04.575504538Z"} +2026/03/20 17:21:09 ───────────────────────────────────────────────── +2026/03/20 17:21:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:09.575927802Z"} +2026/03/20 17:21:14 [metric_collector] {"stage_name":"metric_collector","events_processed":1964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":392.8,"last_update":"2026-03-20T17:21:09.576261272Z"} +2026/03/20 17:21:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:09.585852924Z"} +2026/03/20 17:21:14 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":15.436566821672914,"throughput_eps":0,"last_update":"2026-03-20T17:21:09.719167255Z"} +2026/03/20 17:21:14 [transform_engine] {"stage_name":"transform_engine","events_processed":65,"events_dropped":0,"avg_latency_ms":95.09567057755119,"throughput_eps":0,"last_update":"2026-03-20T17:21:09.719182314Z"} +2026/03/20 17:21:14 ───────────────────────────────────────────────── +2026/03/20 17:21:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:14.575757104Z"} +2026/03/20 17:21:19 [metric_collector] {"stage_name":"metric_collector","events_processed":1969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":393.8,"last_update":"2026-03-20T17:21:14.575998328Z"} +2026/03/20 17:21:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":788,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:14.577060476Z"} +2026/03/20 17:21:19 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":15.436566821672914,"throughput_eps":0,"last_update":"2026-03-20T17:21:14.719186262Z"} +2026/03/20 17:21:19 [transform_engine] {"stage_name":"transform_engine","events_processed":65,"events_dropped":0,"avg_latency_ms":95.09567057755119,"throughput_eps":0,"last_update":"2026-03-20T17:21:14.719196843Z"} +2026/03/20 17:21:19 ───────────────────────────────────────────────── +2026/03/20 17:21:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:24 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":15.436566821672914,"throughput_eps":0,"last_update":"2026-03-20T17:21:19.71939483Z"} +2026/03/20 17:21:24 [transform_engine] {"stage_name":"transform_engine","events_processed":65,"events_dropped":0,"avg_latency_ms":95.09567057755119,"throughput_eps":0,"last_update":"2026-03-20T17:21:19.719409098Z"} +2026/03/20 17:21:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:19.575571034Z"} +2026/03/20 17:21:24 [metric_collector] {"stage_name":"metric_collector","events_processed":1974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":394.8,"last_update":"2026-03-20T17:21:19.575467506Z"} +2026/03/20 17:21:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":790,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:19.576490158Z"} +2026/03/20 17:21:24 ───────────────────────────────────────────────── +2026/03/20 17:21:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":792,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:24.576719931Z"} +2026/03/20 17:21:29 [detection_layer] {"stage_name":"detection_layer","events_processed":65,"events_dropped":0,"avg_latency_ms":15.436566821672914,"throughput_eps":0,"last_update":"2026-03-20T17:21:24.719503202Z"} +2026/03/20 17:21:29 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":88.93729906204095,"throughput_eps":0,"last_update":"2026-03-20T17:21:24.783825469Z"} +2026/03/20 17:21:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:24.575579342Z"} +2026/03/20 17:21:29 [metric_collector] {"stage_name":"metric_collector","events_processed":1979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":395.8,"last_update":"2026-03-20T17:21:24.575693982Z"} +2026/03/20 17:21:29 ───────────────────────────────────────────────── +2026/03/20 17:21:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:34 [metric_collector] {"stage_name":"metric_collector","events_processed":1984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":396.8,"last_update":"2026-03-20T17:21:29.576028177Z"} +2026/03/20 17:21:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":796,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:29.587427393Z"} +2026/03/20 17:21:34 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":15.290875057338331,"throughput_eps":0,"last_update":"2026-03-20T17:21:29.719858697Z"} +2026/03/20 17:21:34 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":88.93729906204095,"throughput_eps":0,"last_update":"2026-03-20T17:21:29.718675623Z"} +2026/03/20 17:21:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:29.575817186Z"} +2026/03/20 17:21:34 ───────────────────────────────────────────────── +2026/03/20 17:21:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:34.575734403Z"} +2026/03/20 17:21:39 [metric_collector] {"stage_name":"metric_collector","events_processed":1989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":397.8,"last_update":"2026-03-20T17:21:34.575728182Z"} +2026/03/20 17:21:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":798,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:34.586533955Z"} +2026/03/20 17:21:39 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":15.290875057338331,"throughput_eps":0,"last_update":"2026-03-20T17:21:34.718803528Z"} +2026/03/20 17:21:39 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":88.93729906204095,"throughput_eps":0,"last_update":"2026-03-20T17:21:34.71874172Z"} +2026/03/20 17:21:39 ───────────────────────────────────────────────── +2026/03/20 17:21:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:39.575666044Z"} +2026/03/20 17:21:44 [metric_collector] {"stage_name":"metric_collector","events_processed":1994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":398.8,"last_update":"2026-03-20T17:21:39.576035604Z"} +2026/03/20 17:21:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":800,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:39.585767944Z"} +2026/03/20 17:21:44 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":15.290875057338331,"throughput_eps":0,"last_update":"2026-03-20T17:21:39.71904777Z"} +2026/03/20 17:21:44 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":88.93729906204095,"throughput_eps":0,"last_update":"2026-03-20T17:21:39.719019075Z"} +2026/03/20 17:21:44 ───────────────────────────────────────────────── +2026/03/20 17:21:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:44.576404844Z"} +2026/03/20 17:21:49 [metric_collector] {"stage_name":"metric_collector","events_processed":1999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":399.8,"last_update":"2026-03-20T17:21:44.576390777Z"} +2026/03/20 17:21:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":802,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:44.585743408Z"} +2026/03/20 17:21:49 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":15.290875057338331,"throughput_eps":0,"last_update":"2026-03-20T17:21:44.71899155Z"} +2026/03/20 17:21:49 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":88.93729906204095,"throughput_eps":0,"last_update":"2026-03-20T17:21:44.719038539Z"} +2026/03/20 17:21:49 ───────────────────────────────────────────────── +2026/03/20 17:21:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:49.575653165Z"} +2026/03/20 17:21:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":400.8,"last_update":"2026-03-20T17:21:49.576091838Z"} +2026/03/20 17:21:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:49.58644064Z"} +2026/03/20 17:21:54 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":15.290875057338331,"throughput_eps":0,"last_update":"2026-03-20T17:21:49.719850123Z"} +2026/03/20 17:21:54 [transform_engine] {"stage_name":"transform_engine","events_processed":66,"events_dropped":0,"avg_latency_ms":88.93729906204095,"throughput_eps":0,"last_update":"2026-03-20T17:21:49.718680905Z"} +2026/03/20 17:21:54 ───────────────────────────────────────────────── +2026/03/20 17:21:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:21:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":806,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:54.586797868Z"} +2026/03/20 17:21:59 [detection_layer] {"stage_name":"detection_layer","events_processed":66,"events_dropped":0,"avg_latency_ms":15.290875057338331,"throughput_eps":0,"last_update":"2026-03-20T17:21:54.719052245Z"} +2026/03/20 17:21:59 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":83.92129264963276,"throughput_eps":0,"last_update":"2026-03-20T17:21:54.782955328Z"} +2026/03/20 17:21:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:54.575496035Z"} +2026/03/20 17:21:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":401.8,"last_update":"2026-03-20T17:21:54.575835539Z"} +2026/03/20 17:21:59 ───────────────────────────────────────────────── +2026/03/20 17:22:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:59.575878928Z"} +2026/03/20 17:22:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":402.8,"last_update":"2026-03-20T17:21:59.576117741Z"} +2026/03/20 17:22:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":808,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:21:59.58592434Z"} +2026/03/20 17:22:04 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.231165845870665,"throughput_eps":0,"last_update":"2026-03-20T17:21:59.719294508Z"} +2026/03/20 17:22:04 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":83.92129264963276,"throughput_eps":0,"last_update":"2026-03-20T17:21:59.71930634Z"} +2026/03/20 17:22:04 ───────────────────────────────────────────────── +2026/03/20 17:22:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:04.576568765Z"} +2026/03/20 17:22:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":403.8,"last_update":"2026-03-20T17:22:04.575407862Z"} +2026/03/20 17:22:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":810,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:04.585331725Z"} +2026/03/20 17:22:09 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.231165845870665,"throughput_eps":0,"last_update":"2026-03-20T17:22:04.719734487Z"} +2026/03/20 17:22:09 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":83.92129264963276,"throughput_eps":0,"last_update":"2026-03-20T17:22:04.719749876Z"} +2026/03/20 17:22:09 ───────────────────────────────────────────────── +2026/03/20 17:22:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:14 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":83.92129264963276,"throughput_eps":0,"last_update":"2026-03-20T17:22:09.719210549Z"} +2026/03/20 17:22:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:09.575566342Z"} +2026/03/20 17:22:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":404.8,"last_update":"2026-03-20T17:22:09.575692441Z"} +2026/03/20 17:22:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":812,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:09.586834938Z"} +2026/03/20 17:22:14 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.231165845870665,"throughput_eps":0,"last_update":"2026-03-20T17:22:09.719198315Z"} +2026/03/20 17:22:14 ───────────────────────────────────────────────── +2026/03/20 17:22:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:19 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.231165845870665,"throughput_eps":0,"last_update":"2026-03-20T17:22:14.719111619Z"} +2026/03/20 17:22:19 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":83.92129264963276,"throughput_eps":0,"last_update":"2026-03-20T17:22:14.719119224Z"} +2026/03/20 17:22:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:14.57553788Z"} +2026/03/20 17:22:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":405.8,"last_update":"2026-03-20T17:22:14.575804205Z"} +2026/03/20 17:22:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:14.585893996Z"} +2026/03/20 17:22:19 ───────────────────────────────────────────────── +2026/03/20 17:22:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:24 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.231165845870665,"throughput_eps":0,"last_update":"2026-03-20T17:22:19.719654831Z"} +2026/03/20 17:22:24 [transform_engine] {"stage_name":"transform_engine","events_processed":67,"events_dropped":0,"avg_latency_ms":83.92129264963276,"throughput_eps":0,"last_update":"2026-03-20T17:22:19.719662385Z"} +2026/03/20 17:22:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:19.575529387Z"} +2026/03/20 17:22:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":406.8,"last_update":"2026-03-20T17:22:19.575868481Z"} +2026/03/20 17:22:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":816,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:19.586444587Z"} +2026/03/20 17:22:24 ───────────────────────────────────────────────── +2026/03/20 17:22:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:24.575815089Z"} +2026/03/20 17:22:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":407.8,"last_update":"2026-03-20T17:22:24.57607373Z"} +2026/03/20 17:22:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":818,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:24.587007918Z"} +2026/03/20 17:22:29 [detection_layer] {"stage_name":"detection_layer","events_processed":67,"events_dropped":0,"avg_latency_ms":14.231165845870665,"throughput_eps":0,"last_update":"2026-03-20T17:22:24.719419279Z"} +2026/03/20 17:22:29 [transform_engine] {"stage_name":"transform_engine","events_processed":68,"events_dropped":0,"avg_latency_ms":89.76489711970622,"throughput_eps":0,"last_update":"2026-03-20T17:22:24.832576046Z"} +2026/03/20 17:22:29 ───────────────────────────────────────────────── +2026/03/20 17:22:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:29.575508393Z"} +2026/03/20 17:22:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":408.8,"last_update":"2026-03-20T17:22:29.576085379Z"} +2026/03/20 17:22:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":820,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:29.585822936Z"} +2026/03/20 17:22:34 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":14.786109476696533,"throughput_eps":0,"last_update":"2026-03-20T17:22:29.719239519Z"} +2026/03/20 17:22:34 [transform_engine] {"stage_name":"transform_engine","events_processed":68,"events_dropped":0,"avg_latency_ms":89.76489711970622,"throughput_eps":0,"last_update":"2026-03-20T17:22:29.719255369Z"} +2026/03/20 17:22:34 ───────────────────────────────────────────────── +2026/03/20 17:22:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":822,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:34.586160762Z"} +2026/03/20 17:22:39 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":14.786109476696533,"throughput_eps":0,"last_update":"2026-03-20T17:22:34.719407315Z"} +2026/03/20 17:22:39 [transform_engine] {"stage_name":"transform_engine","events_processed":68,"events_dropped":0,"avg_latency_ms":89.76489711970622,"throughput_eps":0,"last_update":"2026-03-20T17:22:34.719420199Z"} +2026/03/20 17:22:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:34.575566866Z"} +2026/03/20 17:22:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":409.8,"last_update":"2026-03-20T17:22:34.575671384Z"} +2026/03/20 17:22:39 ───────────────────────────────────────────────── +2026/03/20 17:22:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:39.57574327Z"} +2026/03/20 17:22:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":410.8,"last_update":"2026-03-20T17:22:39.576104256Z"} +2026/03/20 17:22:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:39.586701009Z"} +2026/03/20 17:22:44 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":14.786109476696533,"throughput_eps":0,"last_update":"2026-03-20T17:22:39.718952135Z"} +2026/03/20 17:22:44 [transform_engine] {"stage_name":"transform_engine","events_processed":68,"events_dropped":0,"avg_latency_ms":89.76489711970622,"throughput_eps":0,"last_update":"2026-03-20T17:22:39.718960722Z"} +2026/03/20 17:22:44 ───────────────────────────────────────────────── +2026/03/20 17:22:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":411.8,"last_update":"2026-03-20T17:22:44.576212815Z"} +2026/03/20 17:22:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":826,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:44.585597627Z"} +2026/03/20 17:22:49 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":14.786109476696533,"throughput_eps":0,"last_update":"2026-03-20T17:22:44.719838246Z"} +2026/03/20 17:22:49 [transform_engine] {"stage_name":"transform_engine","events_processed":68,"events_dropped":0,"avg_latency_ms":89.76489711970622,"throughput_eps":0,"last_update":"2026-03-20T17:22:44.71875041Z"} +2026/03/20 17:22:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:44.575753362Z"} +2026/03/20 17:22:49 ───────────────────────────────────────────────── +2026/03/20 17:22:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":412.8,"last_update":"2026-03-20T17:22:49.5760293Z"} +2026/03/20 17:22:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":828,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:49.585322339Z"} +2026/03/20 17:22:54 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":14.786109476696533,"throughput_eps":0,"last_update":"2026-03-20T17:22:49.719688789Z"} +2026/03/20 17:22:54 [transform_engine] {"stage_name":"transform_engine","events_processed":68,"events_dropped":0,"avg_latency_ms":89.76489711970622,"throughput_eps":0,"last_update":"2026-03-20T17:22:49.719702134Z"} +2026/03/20 17:22:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:49.575503901Z"} +2026/03/20 17:22:54 ───────────────────────────────────────────────── +2026/03/20 17:22:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:22:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:54.575675814Z"} +2026/03/20 17:22:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":413.8,"last_update":"2026-03-20T17:22:54.575744263Z"} +2026/03/20 17:22:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":830,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:54.585666621Z"} +2026/03/20 17:22:59 [detection_layer] {"stage_name":"detection_layer","events_processed":68,"events_dropped":0,"avg_latency_ms":14.786109476696533,"throughput_eps":0,"last_update":"2026-03-20T17:22:54.718956478Z"} +2026/03/20 17:22:59 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":84.95861309576497,"throughput_eps":0,"last_update":"2026-03-20T17:22:54.784706808Z"} +2026/03/20 17:22:59 ───────────────────────────────────────────────── +2026/03/20 17:23:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:59.575758872Z"} +2026/03/20 17:23:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":414.8,"last_update":"2026-03-20T17:22:59.576124236Z"} +2026/03/20 17:23:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":832,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:22:59.586559358Z"} +2026/03/20 17:23:04 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":13.660901381357228,"throughput_eps":0,"last_update":"2026-03-20T17:22:59.718779035Z"} +2026/03/20 17:23:04 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":84.95861309576497,"throughput_eps":0,"last_update":"2026-03-20T17:22:59.718765159Z"} +2026/03/20 17:23:04 ───────────────────────────────────────────────── +2026/03/20 17:23:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:04.575865701Z"} +2026/03/20 17:23:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":415.8,"last_update":"2026-03-20T17:23:04.576473967Z"} +2026/03/20 17:23:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:04.587073103Z"} +2026/03/20 17:23:09 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":13.660901381357228,"throughput_eps":0,"last_update":"2026-03-20T17:23:04.719479007Z"} +2026/03/20 17:23:09 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":84.95861309576497,"throughput_eps":0,"last_update":"2026-03-20T17:23:04.719491611Z"} +2026/03/20 17:23:09 ───────────────────────────────────────────────── +2026/03/20 17:23:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:09.575728036Z"} +2026/03/20 17:23:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":416.8,"last_update":"2026-03-20T17:23:09.576281077Z"} +2026/03/20 17:23:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":836,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:09.585116093Z"} +2026/03/20 17:23:14 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":13.660901381357228,"throughput_eps":0,"last_update":"2026-03-20T17:23:09.719441274Z"} +2026/03/20 17:23:14 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":84.95861309576497,"throughput_eps":0,"last_update":"2026-03-20T17:23:09.719449199Z"} +2026/03/20 17:23:14 ───────────────────────────────────────────────── +2026/03/20 17:23:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:14.575765071Z"} +2026/03/20 17:23:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":417.8,"last_update":"2026-03-20T17:23:14.576061064Z"} +2026/03/20 17:23:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":838,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:14.586227331Z"} +2026/03/20 17:23:19 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":13.660901381357228,"throughput_eps":0,"last_update":"2026-03-20T17:23:14.719472412Z"} +2026/03/20 17:23:19 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":84.95861309576497,"throughput_eps":0,"last_update":"2026-03-20T17:23:14.719484234Z"} +2026/03/20 17:23:19 ───────────────────────────────────────────────── +2026/03/20 17:23:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:19.575937638Z"} +2026/03/20 17:23:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":418.8,"last_update":"2026-03-20T17:23:19.576270169Z"} +2026/03/20 17:23:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":840,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:19.586425658Z"} +2026/03/20 17:23:24 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":13.660901381357228,"throughput_eps":0,"last_update":"2026-03-20T17:23:19.719843328Z"} +2026/03/20 17:23:24 [transform_engine] {"stage_name":"transform_engine","events_processed":69,"events_dropped":0,"avg_latency_ms":84.95861309576497,"throughput_eps":0,"last_update":"2026-03-20T17:23:19.718661022Z"} +2026/03/20 17:23:24 ───────────────────────────────────────────────── +2026/03/20 17:23:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:29 [detection_layer] {"stage_name":"detection_layer","events_processed":69,"events_dropped":0,"avg_latency_ms":13.660901381357228,"throughput_eps":0,"last_update":"2026-03-20T17:23:24.719656769Z"} +2026/03/20 17:23:29 [transform_engine] {"stage_name":"transform_engine","events_processed":70,"events_dropped":0,"avg_latency_ms":80.32152187661198,"throughput_eps":0,"last_update":"2026-03-20T17:23:24.781440716Z"} +2026/03/20 17:23:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:24.575513905Z"} +2026/03/20 17:23:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":419.8,"last_update":"2026-03-20T17:23:24.575919225Z"} +2026/03/20 17:23:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":842,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:24.586379765Z"} +2026/03/20 17:23:29 ───────────────────────────────────────────────── +2026/03/20 17:23:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:29.575962446Z"} +2026/03/20 17:23:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":420.8,"last_update":"2026-03-20T17:23:29.576275792Z"} +2026/03/20 17:23:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:29.585845831Z"} +2026/03/20 17:23:34 [detection_layer] {"stage_name":"detection_layer","events_processed":70,"events_dropped":0,"avg_latency_ms":14.036212705085784,"throughput_eps":0,"last_update":"2026-03-20T17:23:29.719143455Z"} +2026/03/20 17:23:34 [transform_engine] {"stage_name":"transform_engine","events_processed":70,"events_dropped":0,"avg_latency_ms":80.32152187661198,"throughput_eps":0,"last_update":"2026-03-20T17:23:29.719149927Z"} +2026/03/20 17:23:34 ───────────────────────────────────────────────── +2026/03/20 17:23:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":846,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:34.584662923Z"} +2026/03/20 17:23:39 [detection_layer] {"stage_name":"detection_layer","events_processed":70,"events_dropped":0,"avg_latency_ms":14.036212705085784,"throughput_eps":0,"last_update":"2026-03-20T17:23:34.719044369Z"} +2026/03/20 17:23:39 [transform_engine] {"stage_name":"transform_engine","events_processed":70,"events_dropped":0,"avg_latency_ms":80.32152187661198,"throughput_eps":0,"last_update":"2026-03-20T17:23:34.719056261Z"} +2026/03/20 17:23:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:34.575997281Z"} +2026/03/20 17:23:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":421.8,"last_update":"2026-03-20T17:23:34.576378115Z"} +2026/03/20 17:23:39 ───────────────────────────────────────────────── +2026/03/20 17:23:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:44 [transform_engine] {"stage_name":"transform_engine","events_processed":70,"events_dropped":0,"avg_latency_ms":80.32152187661198,"throughput_eps":0,"last_update":"2026-03-20T17:23:39.718706077Z"} +2026/03/20 17:23:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:39.575737056Z"} +2026/03/20 17:23:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":422.8,"last_update":"2026-03-20T17:23:39.576043499Z"} +2026/03/20 17:23:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":848,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:39.58757589Z"} +2026/03/20 17:23:44 [detection_layer] {"stage_name":"detection_layer","events_processed":70,"events_dropped":0,"avg_latency_ms":14.036212705085784,"throughput_eps":0,"last_update":"2026-03-20T17:23:39.719800838Z"} +2026/03/20 17:23:44 ───────────────────────────────────────────────── +2026/03/20 17:23:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":423.8,"last_update":"2026-03-20T17:23:44.576050334Z"} +2026/03/20 17:23:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":850,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:44.586367698Z"} +2026/03/20 17:23:49 [detection_layer] {"stage_name":"detection_layer","events_processed":70,"events_dropped":0,"avg_latency_ms":14.036212705085784,"throughput_eps":0,"last_update":"2026-03-20T17:23:44.719596956Z"} +2026/03/20 17:23:49 [transform_engine] {"stage_name":"transform_engine","events_processed":70,"events_dropped":0,"avg_latency_ms":80.32152187661198,"throughput_eps":0,"last_update":"2026-03-20T17:23:44.719604229Z"} +2026/03/20 17:23:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:44.575751205Z"} +2026/03/20 17:23:49 ───────────────────────────────────────────────── +2026/03/20 17:23:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:49.575770233Z"} +2026/03/20 17:23:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":424.8,"last_update":"2026-03-20T17:23:49.576203125Z"} +2026/03/20 17:23:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":852,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:49.585390712Z"} +2026/03/20 17:23:54 [detection_layer] {"stage_name":"detection_layer","events_processed":70,"events_dropped":0,"avg_latency_ms":14.036212705085784,"throughput_eps":0,"last_update":"2026-03-20T17:23:49.719681819Z"} +2026/03/20 17:23:54 [transform_engine] {"stage_name":"transform_engine","events_processed":70,"events_dropped":0,"avg_latency_ms":80.32152187661198,"throughput_eps":0,"last_update":"2026-03-20T17:23:49.719688082Z"} +2026/03/20 17:23:54 ───────────────────────────────────────────────── +2026/03/20 17:23:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:23:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:54.585386885Z"} +2026/03/20 17:23:59 [detection_layer] {"stage_name":"detection_layer","events_processed":70,"events_dropped":0,"avg_latency_ms":14.036212705085784,"throughput_eps":0,"last_update":"2026-03-20T17:23:54.719583592Z"} +2026/03/20 17:23:59 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":77.28137710128959,"throughput_eps":0,"last_update":"2026-03-20T17:23:54.784716223Z"} +2026/03/20 17:23:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:54.576014063Z"} +2026/03/20 17:23:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":425.8,"last_update":"2026-03-20T17:23:54.576319664Z"} +2026/03/20 17:23:59 ───────────────────────────────────────────────── +2026/03/20 17:24:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:59.575812449Z"} +2026/03/20 17:24:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":426.8,"last_update":"2026-03-20T17:23:59.576211347Z"} +2026/03/20 17:24:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":856,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:23:59.585618937Z"} +2026/03/20 17:24:04 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.269265564068627,"throughput_eps":0,"last_update":"2026-03-20T17:23:59.718780024Z"} +2026/03/20 17:24:04 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":77.28137710128959,"throughput_eps":0,"last_update":"2026-03-20T17:23:59.718710682Z"} +2026/03/20 17:24:04 ───────────────────────────────────────────────── +2026/03/20 17:24:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:04.57598947Z"} +2026/03/20 17:24:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":427.8,"last_update":"2026-03-20T17:24:04.576498968Z"} +2026/03/20 17:24:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":858,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:04.584506416Z"} +2026/03/20 17:24:09 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.269265564068627,"throughput_eps":0,"last_update":"2026-03-20T17:24:04.719840776Z"} +2026/03/20 17:24:09 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":77.28137710128959,"throughput_eps":0,"last_update":"2026-03-20T17:24:04.71867551Z"} +2026/03/20 17:24:09 ───────────────────────────────────────────────── +2026/03/20 17:24:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:09.575548268Z"} +2026/03/20 17:24:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":428.8,"last_update":"2026-03-20T17:24:09.575529293Z"} +2026/03/20 17:24:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":860,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:09.585518811Z"} +2026/03/20 17:24:14 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.269265564068627,"throughput_eps":0,"last_update":"2026-03-20T17:24:09.71882852Z"} +2026/03/20 17:24:14 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":77.28137710128959,"throughput_eps":0,"last_update":"2026-03-20T17:24:09.718737708Z"} +2026/03/20 17:24:14 ───────────────────────────────────────────────── +2026/03/20 17:24:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":429.8,"last_update":"2026-03-20T17:24:14.575676692Z"} +2026/03/20 17:24:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":862,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:14.585948388Z"} +2026/03/20 17:24:19 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.269265564068627,"throughput_eps":0,"last_update":"2026-03-20T17:24:14.719258939Z"} +2026/03/20 17:24:19 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":77.28137710128959,"throughput_eps":0,"last_update":"2026-03-20T17:24:14.719265642Z"} +2026/03/20 17:24:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:14.575521186Z"} +2026/03/20 17:24:19 ───────────────────────────────────────────────── +2026/03/20 17:24:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:24 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.269265564068627,"throughput_eps":0,"last_update":"2026-03-20T17:24:19.719533143Z"} +2026/03/20 17:24:24 [transform_engine] {"stage_name":"transform_engine","events_processed":71,"events_dropped":0,"avg_latency_ms":77.28137710128959,"throughput_eps":0,"last_update":"2026-03-20T17:24:19.719545416Z"} +2026/03/20 17:24:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:19.575851476Z"} +2026/03/20 17:24:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":430.8,"last_update":"2026-03-20T17:24:19.576312293Z"} +2026/03/20 17:24:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:19.586209348Z"} +2026/03/20 17:24:24 ───────────────────────────────────────────────── +2026/03/20 17:24:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":431.8,"last_update":"2026-03-20T17:24:24.576374739Z"} +2026/03/20 17:24:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":866,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:24.586040966Z"} +2026/03/20 17:24:29 [detection_layer] {"stage_name":"detection_layer","events_processed":71,"events_dropped":0,"avg_latency_ms":13.269265564068627,"throughput_eps":0,"last_update":"2026-03-20T17:24:24.719239492Z"} +2026/03/20 17:24:29 [transform_engine] {"stage_name":"transform_engine","events_processed":72,"events_dropped":0,"avg_latency_ms":74.61178508103168,"throughput_eps":0,"last_update":"2026-03-20T17:24:24.783188739Z"} +2026/03/20 17:24:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:24.576053387Z"} +2026/03/20 17:24:29 ───────────────────────────────────────────────── +2026/03/20 17:24:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":868,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:29.584794973Z"} +2026/03/20 17:24:34 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":13.326357251254903,"throughput_eps":0,"last_update":"2026-03-20T17:24:29.719065167Z"} +2026/03/20 17:24:34 [transform_engine] {"stage_name":"transform_engine","events_processed":72,"events_dropped":0,"avg_latency_ms":74.61178508103168,"throughput_eps":0,"last_update":"2026-03-20T17:24:29.719172742Z"} +2026/03/20 17:24:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:29.575971217Z"} +2026/03/20 17:24:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":432.8,"last_update":"2026-03-20T17:24:29.576319639Z"} +2026/03/20 17:24:34 ───────────────────────────────────────────────── +2026/03/20 17:24:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:39 [transform_engine] {"stage_name":"transform_engine","events_processed":72,"events_dropped":0,"avg_latency_ms":74.61178508103168,"throughput_eps":0,"last_update":"2026-03-20T17:24:34.718990012Z"} +2026/03/20 17:24:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:34.575966136Z"} +2026/03/20 17:24:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":433.8,"last_update":"2026-03-20T17:24:34.576311332Z"} +2026/03/20 17:24:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":870,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:34.585693021Z"} +2026/03/20 17:24:39 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":13.326357251254903,"throughput_eps":0,"last_update":"2026-03-20T17:24:34.718883439Z"} +2026/03/20 17:24:39 ───────────────────────────────────────────────── +2026/03/20 17:24:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:44 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":13.326357251254903,"throughput_eps":0,"last_update":"2026-03-20T17:24:39.719108027Z"} +2026/03/20 17:24:44 [transform_engine] {"stage_name":"transform_engine","events_processed":72,"events_dropped":0,"avg_latency_ms":74.61178508103168,"throughput_eps":0,"last_update":"2026-03-20T17:24:39.719001645Z"} +2026/03/20 17:24:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:39.575586255Z"} +2026/03/20 17:24:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":434.8,"last_update":"2026-03-20T17:24:39.575905382Z"} +2026/03/20 17:24:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:39.585666824Z"} +2026/03/20 17:24:44 ───────────────────────────────────────────────── +2026/03/20 17:24:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:44.576149035Z"} +2026/03/20 17:24:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":435.8,"last_update":"2026-03-20T17:24:44.576752574Z"} +2026/03/20 17:24:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":872,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:44.576257622Z"} +2026/03/20 17:24:49 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":13.326357251254903,"throughput_eps":0,"last_update":"2026-03-20T17:24:44.719116773Z"} +2026/03/20 17:24:49 [transform_engine] {"stage_name":"transform_engine","events_processed":72,"events_dropped":0,"avg_latency_ms":74.61178508103168,"throughput_eps":0,"last_update":"2026-03-20T17:24:44.719093069Z"} +2026/03/20 17:24:49 ───────────────────────────────────────────────── +2026/03/20 17:24:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:54 [transform_engine] {"stage_name":"transform_engine","events_processed":72,"events_dropped":0,"avg_latency_ms":74.61178508103168,"throughput_eps":0,"last_update":"2026-03-20T17:24:49.718787847Z"} +2026/03/20 17:24:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:49.575652971Z"} +2026/03/20 17:24:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":436.8,"last_update":"2026-03-20T17:24:49.575598919Z"} +2026/03/20 17:24:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":876,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:49.586542103Z"} +2026/03/20 17:24:54 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":13.326357251254903,"throughput_eps":0,"last_update":"2026-03-20T17:24:49.718842502Z"} +2026/03/20 17:24:54 ───────────────────────────────────────────────── +2026/03/20 17:24:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:24:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":437.8,"last_update":"2026-03-20T17:24:54.576056895Z"} +2026/03/20 17:24:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":878,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:54.587592538Z"} +2026/03/20 17:24:59 [detection_layer] {"stage_name":"detection_layer","events_processed":72,"events_dropped":0,"avg_latency_ms":13.326357251254903,"throughput_eps":0,"last_update":"2026-03-20T17:24:54.71880264Z"} +2026/03/20 17:24:59 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":82.03675446482535,"throughput_eps":0,"last_update":"2026-03-20T17:24:54.830512341Z"} +2026/03/20 17:24:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:54.575662385Z"} +2026/03/20 17:24:59 ───────────────────────────────────────────────── +2026/03/20 17:25:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:59.575497825Z"} +2026/03/20 17:25:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":438.8,"last_update":"2026-03-20T17:24:59.575722762Z"} +2026/03/20 17:25:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":880,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:24:59.586027524Z"} +2026/03/20 17:25:04 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.181882001003924,"throughput_eps":0,"last_update":"2026-03-20T17:24:59.719440316Z"} +2026/03/20 17:25:04 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":82.03675446482535,"throughput_eps":0,"last_update":"2026-03-20T17:24:59.719479691Z"} +2026/03/20 17:25:04 ───────────────────────────────────────────────── +2026/03/20 17:25:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:04.575922921Z"} +2026/03/20 17:25:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":439.8,"last_update":"2026-03-20T17:25:04.576543912Z"} +2026/03/20 17:25:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":882,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:04.585042989Z"} +2026/03/20 17:25:09 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.181882001003924,"throughput_eps":0,"last_update":"2026-03-20T17:25:04.719404103Z"} +2026/03/20 17:25:09 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":82.03675446482535,"throughput_eps":0,"last_update":"2026-03-20T17:25:04.719436093Z"} +2026/03/20 17:25:09 ───────────────────────────────────────────────── +2026/03/20 17:25:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:09.576013895Z"} +2026/03/20 17:25:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":440.8,"last_update":"2026-03-20T17:25:09.576414248Z"} +2026/03/20 17:25:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:09.586364988Z"} +2026/03/20 17:25:14 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.181882001003924,"throughput_eps":0,"last_update":"2026-03-20T17:25:09.719665371Z"} +2026/03/20 17:25:14 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":82.03675446482535,"throughput_eps":0,"last_update":"2026-03-20T17:25:09.71968105Z"} +2026/03/20 17:25:14 ───────────────────────────────────────────────── +2026/03/20 17:25:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:14.575980952Z"} +2026/03/20 17:25:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":441.8,"last_update":"2026-03-20T17:25:14.576735889Z"} +2026/03/20 17:25:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":886,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:14.586013931Z"} +2026/03/20 17:25:19 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.181882001003924,"throughput_eps":0,"last_update":"2026-03-20T17:25:14.719456201Z"} +2026/03/20 17:25:19 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":82.03675446482535,"throughput_eps":0,"last_update":"2026-03-20T17:25:14.719412989Z"} +2026/03/20 17:25:19 ───────────────────────────────────────────────── +2026/03/20 17:25:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:24 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.181882001003924,"throughput_eps":0,"last_update":"2026-03-20T17:25:19.719833649Z"} +2026/03/20 17:25:24 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":82.03675446482535,"throughput_eps":0,"last_update":"2026-03-20T17:25:19.718674453Z"} +2026/03/20 17:25:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:19.575971356Z"} +2026/03/20 17:25:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":442.8,"last_update":"2026-03-20T17:25:19.576224988Z"} +2026/03/20 17:25:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":888,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:19.587418898Z"} +2026/03/20 17:25:24 ───────────────────────────────────────────────── +2026/03/20 17:25:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:24.575982174Z"} +2026/03/20 17:25:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":443.8,"last_update":"2026-03-20T17:25:24.576340416Z"} +2026/03/20 17:25:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":890,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:24.586092673Z"} +2026/03/20 17:25:29 [detection_layer] {"stage_name":"detection_layer","events_processed":73,"events_dropped":0,"avg_latency_ms":14.181882001003924,"throughput_eps":0,"last_update":"2026-03-20T17:25:24.719229495Z"} +2026/03/20 17:25:29 [transform_engine] {"stage_name":"transform_engine","events_processed":73,"events_dropped":0,"avg_latency_ms":82.03675446482535,"throughput_eps":0,"last_update":"2026-03-20T17:25:24.719283226Z"} +2026/03/20 17:25:29 ───────────────────────────────────────────────── +2026/03/20 17:25:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":892,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:29.58608652Z"} +2026/03/20 17:25:34 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":14.62459240080314,"throughput_eps":0,"last_update":"2026-03-20T17:25:29.719367253Z"} +2026/03/20 17:25:34 [transform_engine] {"stage_name":"transform_engine","events_processed":74,"events_dropped":0,"avg_latency_ms":88.08472097186028,"throughput_eps":0,"last_update":"2026-03-20T17:25:29.719380538Z"} +2026/03/20 17:25:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:29.57553492Z"} +2026/03/20 17:25:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":444.8,"last_update":"2026-03-20T17:25:29.575458715Z"} +2026/03/20 17:25:34 ───────────────────────────────────────────────── +2026/03/20 17:25:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:34.586604728Z"} +2026/03/20 17:25:39 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":14.62459240080314,"throughput_eps":0,"last_update":"2026-03-20T17:25:34.718834347Z"} +2026/03/20 17:25:39 [transform_engine] {"stage_name":"transform_engine","events_processed":74,"events_dropped":0,"avg_latency_ms":88.08472097186028,"throughput_eps":0,"last_update":"2026-03-20T17:25:34.718867049Z"} +2026/03/20 17:25:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:34.576056534Z"} +2026/03/20 17:25:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":445.8,"last_update":"2026-03-20T17:25:34.576212381Z"} +2026/03/20 17:25:39 ───────────────────────────────────────────────── +2026/03/20 17:25:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":896,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:39.587181869Z"} +2026/03/20 17:25:44 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":14.62459240080314,"throughput_eps":0,"last_update":"2026-03-20T17:25:39.719642304Z"} +2026/03/20 17:25:44 [transform_engine] {"stage_name":"transform_engine","events_processed":74,"events_dropped":0,"avg_latency_ms":88.08472097186028,"throughput_eps":0,"last_update":"2026-03-20T17:25:39.719620311Z"} +2026/03/20 17:25:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:39.575711177Z"} +2026/03/20 17:25:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":446.8,"last_update":"2026-03-20T17:25:39.57611727Z"} +2026/03/20 17:25:44 ───────────────────────────────────────────────── +2026/03/20 17:25:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:49 [transform_engine] {"stage_name":"transform_engine","events_processed":74,"events_dropped":0,"avg_latency_ms":88.08472097186028,"throughput_eps":0,"last_update":"2026-03-20T17:25:44.719480085Z"} +2026/03/20 17:25:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:44.575871254Z"} +2026/03/20 17:25:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":447.8,"last_update":"2026-03-20T17:25:44.576082637Z"} +2026/03/20 17:25:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":898,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:44.588268944Z"} +2026/03/20 17:25:49 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":14.62459240080314,"throughput_eps":0,"last_update":"2026-03-20T17:25:44.7195253Z"} +2026/03/20 17:25:49 ───────────────────────────────────────────────── +2026/03/20 17:25:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:49.575955554Z"} +2026/03/20 17:25:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":448.8,"last_update":"2026-03-20T17:25:49.57633201Z"} +2026/03/20 17:25:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":900,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:49.585704941Z"} +2026/03/20 17:25:54 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":14.62459240080314,"throughput_eps":0,"last_update":"2026-03-20T17:25:49.719074288Z"} +2026/03/20 17:25:54 [transform_engine] {"stage_name":"transform_engine","events_processed":74,"events_dropped":0,"avg_latency_ms":88.08472097186028,"throughput_eps":0,"last_update":"2026-03-20T17:25:49.719022039Z"} +2026/03/20 17:25:54 ───────────────────────────────────────────────── +2026/03/20 17:25:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:25:59 [transform_engine] {"stage_name":"transform_engine","events_processed":75,"events_dropped":0,"avg_latency_ms":93.18217817748823,"throughput_eps":0,"last_update":"2026-03-20T17:25:54.832909683Z"} +2026/03/20 17:25:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:54.575729573Z"} +2026/03/20 17:25:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":449.8,"last_update":"2026-03-20T17:25:54.576281083Z"} +2026/03/20 17:25:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":902,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:54.585097534Z"} +2026/03/20 17:25:59 [detection_layer] {"stage_name":"detection_layer","events_processed":74,"events_dropped":0,"avg_latency_ms":14.62459240080314,"throughput_eps":0,"last_update":"2026-03-20T17:25:54.719435392Z"} +2026/03/20 17:25:59 ───────────────────────────────────────────────── +2026/03/20 17:26:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:04 [transform_engine] {"stage_name":"transform_engine","events_processed":75,"events_dropped":0,"avg_latency_ms":93.18217817748823,"throughput_eps":0,"last_update":"2026-03-20T17:25:59.718635117Z"} +2026/03/20 17:26:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:59.576250877Z"} +2026/03/20 17:26:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":450.8,"last_update":"2026-03-20T17:25:59.576237853Z"} +2026/03/20 17:26:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:25:59.585402278Z"} +2026/03/20 17:26:04 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":15.418985720642512,"throughput_eps":0,"last_update":"2026-03-20T17:25:59.719908733Z"} +2026/03/20 17:26:04 ───────────────────────────────────────────────── +2026/03/20 17:26:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":451.8,"last_update":"2026-03-20T17:26:04.576066697Z"} +2026/03/20 17:26:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:04.577091389Z"} +2026/03/20 17:26:09 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":15.418985720642512,"throughput_eps":0,"last_update":"2026-03-20T17:26:04.719164612Z"} +2026/03/20 17:26:09 [transform_engine] {"stage_name":"transform_engine","events_processed":75,"events_dropped":0,"avg_latency_ms":93.18217817748823,"throughput_eps":0,"last_update":"2026-03-20T17:26:04.719275833Z"} +2026/03/20 17:26:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:09.575567791Z"} +2026/03/20 17:26:09 ───────────────────────────────────────────────── +2026/03/20 17:26:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:09.575567791Z"} +2026/03/20 17:26:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":452.8,"last_update":"2026-03-20T17:26:09.576023769Z"} +2026/03/20 17:26:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":908,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:09.586090395Z"} +2026/03/20 17:26:14 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":15.418985720642512,"throughput_eps":0,"last_update":"2026-03-20T17:26:09.719457881Z"} +2026/03/20 17:26:14 [transform_engine] {"stage_name":"transform_engine","events_processed":75,"events_dropped":0,"avg_latency_ms":93.18217817748823,"throughput_eps":0,"last_update":"2026-03-20T17:26:09.719367339Z"} +2026/03/20 17:26:14 ───────────────────────────────────────────────── +2026/03/20 17:26:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:19 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":15.418985720642512,"throughput_eps":0,"last_update":"2026-03-20T17:26:14.719826651Z"} +2026/03/20 17:26:19 [transform_engine] {"stage_name":"transform_engine","events_processed":75,"events_dropped":0,"avg_latency_ms":93.18217817748823,"throughput_eps":0,"last_update":"2026-03-20T17:26:14.719724276Z"} +2026/03/20 17:26:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:14.57599775Z"} +2026/03/20 17:26:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":453.8,"last_update":"2026-03-20T17:26:14.576691831Z"} +2026/03/20 17:26:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":910,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:14.585343754Z"} +2026/03/20 17:26:19 ───────────────────────────────────────────────── +2026/03/20 17:26:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:24 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":15.418985720642512,"throughput_eps":0,"last_update":"2026-03-20T17:26:19.719165248Z"} +2026/03/20 17:26:24 [transform_engine] {"stage_name":"transform_engine","events_processed":75,"events_dropped":0,"avg_latency_ms":93.18217817748823,"throughput_eps":0,"last_update":"2026-03-20T17:26:19.719189594Z"} +2026/03/20 17:26:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:19.575811346Z"} +2026/03/20 17:26:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":454.8,"last_update":"2026-03-20T17:26:19.576121296Z"} +2026/03/20 17:26:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":912,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:19.587764027Z"} +2026/03/20 17:26:24 ───────────────────────────────────────────────── +2026/03/20 17:26:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:24.575517603Z"} +2026/03/20 17:26:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":455.8,"last_update":"2026-03-20T17:26:24.57559507Z"} +2026/03/20 17:26:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:24.586445394Z"} +2026/03/20 17:26:29 [detection_layer] {"stage_name":"detection_layer","events_processed":75,"events_dropped":0,"avg_latency_ms":15.418985720642512,"throughput_eps":0,"last_update":"2026-03-20T17:26:24.719918396Z"} +2026/03/20 17:26:29 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":87.31412974199058,"throughput_eps":0,"last_update":"2026-03-20T17:26:24.782498368Z"} +2026/03/20 17:26:29 ───────────────────────────────────────────────── +2026/03/20 17:26:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:34 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.746548176514011,"throughput_eps":0,"last_update":"2026-03-20T17:26:29.719384282Z"} +2026/03/20 17:26:34 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":87.31412974199058,"throughput_eps":0,"last_update":"2026-03-20T17:26:29.719406265Z"} +2026/03/20 17:26:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:29.575816741Z"} +2026/03/20 17:26:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":456.8,"last_update":"2026-03-20T17:26:29.576254795Z"} +2026/03/20 17:26:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":916,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:29.585119756Z"} +2026/03/20 17:26:34 ───────────────────────────────────────────────── +2026/03/20 17:26:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:39 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.746548176514011,"throughput_eps":0,"last_update":"2026-03-20T17:26:34.719702195Z"} +2026/03/20 17:26:39 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":87.31412974199058,"throughput_eps":0,"last_update":"2026-03-20T17:26:34.71967888Z"} +2026/03/20 17:26:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:34.57595218Z"} +2026/03/20 17:26:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":457.8,"last_update":"2026-03-20T17:26:34.576201324Z"} +2026/03/20 17:26:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":918,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:34.586330436Z"} +2026/03/20 17:26:39 ───────────────────────────────────────────────── +2026/03/20 17:26:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":458.8,"last_update":"2026-03-20T17:26:39.575703618Z"} +2026/03/20 17:26:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":920,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:39.585950926Z"} +2026/03/20 17:26:44 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.746548176514011,"throughput_eps":0,"last_update":"2026-03-20T17:26:39.719400528Z"} +2026/03/20 17:26:44 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":87.31412974199058,"throughput_eps":0,"last_update":"2026-03-20T17:26:39.719445173Z"} +2026/03/20 17:26:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:39.575771628Z"} +2026/03/20 17:26:44 ───────────────────────────────────────────────── +2026/03/20 17:26:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:49 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.746548176514011,"throughput_eps":0,"last_update":"2026-03-20T17:26:44.718791719Z"} +2026/03/20 17:26:49 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":87.31412974199058,"throughput_eps":0,"last_update":"2026-03-20T17:26:44.718753657Z"} +2026/03/20 17:26:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:44.576109648Z"} +2026/03/20 17:26:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":459.8,"last_update":"2026-03-20T17:26:44.5767512Z"} +2026/03/20 17:26:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":922,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:44.586522181Z"} +2026/03/20 17:26:49 ───────────────────────────────────────────────── +2026/03/20 17:26:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:54 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.746548176514011,"throughput_eps":0,"last_update":"2026-03-20T17:26:49.719403335Z"} +2026/03/20 17:26:54 [transform_engine] {"stage_name":"transform_engine","events_processed":76,"events_dropped":0,"avg_latency_ms":87.31412974199058,"throughput_eps":0,"last_update":"2026-03-20T17:26:49.719535166Z"} +2026/03/20 17:26:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:49.575518826Z"} +2026/03/20 17:26:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":460.8,"last_update":"2026-03-20T17:26:49.575816924Z"} +2026/03/20 17:26:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:49.586092047Z"} +2026/03/20 17:26:54 ───────────────────────────────────────────────── +2026/03/20 17:26:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:26:59 [transform_engine] {"stage_name":"transform_engine","events_processed":77,"events_dropped":0,"avg_latency_ms":82.51719419359246,"throughput_eps":0,"last_update":"2026-03-20T17:26:54.781974315Z"} +2026/03/20 17:26:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:54.575754385Z"} +2026/03/20 17:26:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":461.8,"last_update":"2026-03-20T17:26:54.576159507Z"} +2026/03/20 17:26:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":926,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:54.58539516Z"} +2026/03/20 17:26:59 [detection_layer] {"stage_name":"detection_layer","events_processed":76,"events_dropped":0,"avg_latency_ms":15.746548176514011,"throughput_eps":0,"last_update":"2026-03-20T17:26:54.720557379Z"} +2026/03/20 17:26:59 ───────────────────────────────────────────────── +2026/03/20 17:27:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":462.8,"last_update":"2026-03-20T17:26:59.575461003Z"} +2026/03/20 17:27:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":928,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:59.585919397Z"} +2026/03/20 17:27:04 [detection_layer] {"stage_name":"detection_layer","events_processed":77,"events_dropped":0,"avg_latency_ms":16.03436954121121,"throughput_eps":0,"last_update":"2026-03-20T17:26:59.719146272Z"} +2026/03/20 17:27:04 [transform_engine] {"stage_name":"transform_engine","events_processed":77,"events_dropped":0,"avg_latency_ms":82.51719419359246,"throughput_eps":0,"last_update":"2026-03-20T17:26:59.719115874Z"} +2026/03/20 17:27:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:26:59.575532899Z"} +2026/03/20 17:27:04 ───────────────────────────────────────────────── +2026/03/20 17:27:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":930,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:04.585144352Z"} +2026/03/20 17:27:09 [detection_layer] {"stage_name":"detection_layer","events_processed":77,"events_dropped":0,"avg_latency_ms":16.03436954121121,"throughput_eps":0,"last_update":"2026-03-20T17:27:04.719594631Z"} +2026/03/20 17:27:09 [transform_engine] {"stage_name":"transform_engine","events_processed":77,"events_dropped":0,"avg_latency_ms":82.51719419359246,"throughput_eps":0,"last_update":"2026-03-20T17:27:04.719632023Z"} +2026/03/20 17:27:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:04.575507783Z"} +2026/03/20 17:27:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":463.8,"last_update":"2026-03-20T17:27:04.575854212Z"} +2026/03/20 17:27:09 ───────────────────────────────────────────────── +2026/03/20 17:27:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":464.8,"last_update":"2026-03-20T17:27:09.575736175Z"} +2026/03/20 17:27:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":932,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:09.585256674Z"} +2026/03/20 17:27:14 [detection_layer] {"stage_name":"detection_layer","events_processed":77,"events_dropped":0,"avg_latency_ms":16.03436954121121,"throughput_eps":0,"last_update":"2026-03-20T17:27:09.719558485Z"} +2026/03/20 17:27:14 [transform_engine] {"stage_name":"transform_engine","events_processed":77,"events_dropped":0,"avg_latency_ms":82.51719419359246,"throughput_eps":0,"last_update":"2026-03-20T17:27:09.719611657Z"} +2026/03/20 17:27:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:09.575519863Z"} +2026/03/20 17:27:14 ───────────────────────────────────────────────── +2026/03/20 17:27:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:19 [transform_engine] {"stage_name":"transform_engine","events_processed":77,"events_dropped":0,"avg_latency_ms":82.51719419359246,"throughput_eps":0,"last_update":"2026-03-20T17:27:14.719431088Z"} +2026/03/20 17:27:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:14.575821719Z"} +2026/03/20 17:27:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":465.8,"last_update":"2026-03-20T17:27:14.576203527Z"} +2026/03/20 17:27:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:14.586037745Z"} +2026/03/20 17:27:19 [detection_layer] {"stage_name":"detection_layer","events_processed":77,"events_dropped":0,"avg_latency_ms":16.03436954121121,"throughput_eps":0,"last_update":"2026-03-20T17:27:14.719401532Z"} +2026/03/20 17:27:19 ───────────────────────────────────────────────── +2026/03/20 17:27:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:24 [detection_layer] {"stage_name":"detection_layer","events_processed":77,"events_dropped":0,"avg_latency_ms":16.03436954121121,"throughput_eps":0,"last_update":"2026-03-20T17:27:19.719395786Z"} +2026/03/20 17:27:24 [transform_engine] {"stage_name":"transform_engine","events_processed":77,"events_dropped":0,"avg_latency_ms":82.51719419359246,"throughput_eps":0,"last_update":"2026-03-20T17:27:19.719416605Z"} +2026/03/20 17:27:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:19.575526907Z"} +2026/03/20 17:27:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":466.8,"last_update":"2026-03-20T17:27:19.575800609Z"} +2026/03/20 17:27:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":936,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:19.586117348Z"} +2026/03/20 17:27:24 ───────────────────────────────────────────────── +2026/03/20 17:27:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:24.575501923Z"} +2026/03/20 17:27:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":467.8,"last_update":"2026-03-20T17:27:24.575729025Z"} +2026/03/20 17:27:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":938,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:24.586522133Z"} +2026/03/20 17:27:29 [detection_layer] {"stage_name":"detection_layer","events_processed":77,"events_dropped":0,"avg_latency_ms":16.03436954121121,"throughput_eps":0,"last_update":"2026-03-20T17:27:24.719823699Z"} +2026/03/20 17:27:29 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":76.00469155487397,"throughput_eps":0,"last_update":"2026-03-20T17:27:24.768664085Z"} +2026/03/20 17:27:29 ───────────────────────────────────────────────── +2026/03/20 17:27:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:29.576429092Z"} +2026/03/20 17:27:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":468.8,"last_update":"2026-03-20T17:27:29.576515276Z"} +2026/03/20 17:27:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":940,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:29.585403973Z"} +2026/03/20 17:27:34 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":16.54737963296897,"throughput_eps":0,"last_update":"2026-03-20T17:27:29.719812322Z"} +2026/03/20 17:27:34 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":76.00469155487397,"throughput_eps":0,"last_update":"2026-03-20T17:27:29.719697934Z"} +2026/03/20 17:27:34 ───────────────────────────────────────────────── +2026/03/20 17:27:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":469.8,"last_update":"2026-03-20T17:27:34.576069431Z"} +2026/03/20 17:27:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":942,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:34.58640061Z"} +2026/03/20 17:27:39 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":16.54737963296897,"throughput_eps":0,"last_update":"2026-03-20T17:27:34.719908956Z"} +2026/03/20 17:27:39 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":76.00469155487397,"throughput_eps":0,"last_update":"2026-03-20T17:27:34.71865773Z"} +2026/03/20 17:27:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:34.575673627Z"} +2026/03/20 17:27:39 ───────────────────────────────────────────────── +2026/03/20 17:27:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:39.575618906Z"} +2026/03/20 17:27:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":470.8,"last_update":"2026-03-20T17:27:39.576015682Z"} +2026/03/20 17:27:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:39.585869091Z"} +2026/03/20 17:27:44 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":16.54737963296897,"throughput_eps":0,"last_update":"2026-03-20T17:27:39.719147692Z"} +2026/03/20 17:27:44 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":76.00469155487397,"throughput_eps":0,"last_update":"2026-03-20T17:27:39.719254495Z"} +2026/03/20 17:27:44 ───────────────────────────────────────────────── +2026/03/20 17:27:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:44.57564337Z"} +2026/03/20 17:27:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":471.8,"last_update":"2026-03-20T17:27:44.576019627Z"} +2026/03/20 17:27:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":946,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:44.586722928Z"} +2026/03/20 17:27:49 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":16.54737963296897,"throughput_eps":0,"last_update":"2026-03-20T17:27:44.718916542Z"} +2026/03/20 17:27:49 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":76.00469155487397,"throughput_eps":0,"last_update":"2026-03-20T17:27:44.718937051Z"} +2026/03/20 17:27:49 ───────────────────────────────────────────────── +2026/03/20 17:27:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:49.575541512Z"} +2026/03/20 17:27:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":472.8,"last_update":"2026-03-20T17:27:49.575500533Z"} +2026/03/20 17:27:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":948,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:49.586506582Z"} +2026/03/20 17:27:54 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":16.54737963296897,"throughput_eps":0,"last_update":"2026-03-20T17:27:49.719773145Z"} +2026/03/20 17:27:54 [transform_engine] {"stage_name":"transform_engine","events_processed":78,"events_dropped":0,"avg_latency_ms":76.00469155487397,"throughput_eps":0,"last_update":"2026-03-20T17:27:49.718653409Z"} +2026/03/20 17:27:54 ───────────────────────────────────────────────── +2026/03/20 17:27:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:27:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":473.8,"last_update":"2026-03-20T17:27:54.575736134Z"} +2026/03/20 17:27:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":950,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:54.586196192Z"} +2026/03/20 17:27:59 [detection_layer] {"stage_name":"detection_layer","events_processed":78,"events_dropped":0,"avg_latency_ms":16.54737963296897,"throughput_eps":0,"last_update":"2026-03-20T17:27:54.71958981Z"} +2026/03/20 17:27:59 [transform_engine] {"stage_name":"transform_engine","events_processed":79,"events_dropped":0,"avg_latency_ms":72.72493624389918,"throughput_eps":0,"last_update":"2026-03-20T17:27:54.779240482Z"} +2026/03/20 17:27:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:54.575493631Z"} +2026/03/20 17:27:59 ───────────────────────────────────────────────── +2026/03/20 17:28:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":952,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:59.58475271Z"} +2026/03/20 17:28:04 [detection_layer] {"stage_name":"detection_layer","events_processed":79,"events_dropped":0,"avg_latency_ms":16.556542906375178,"throughput_eps":0,"last_update":"2026-03-20T17:27:59.719123194Z"} +2026/03/20 17:28:04 [transform_engine] {"stage_name":"transform_engine","events_processed":79,"events_dropped":0,"avg_latency_ms":72.72493624389918,"throughput_eps":0,"last_update":"2026-03-20T17:27:59.719155545Z"} +2026/03/20 17:28:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:27:59.575706227Z"} +2026/03/20 17:28:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":474.8,"last_update":"2026-03-20T17:27:59.576098795Z"} +2026/03/20 17:28:04 ───────────────────────────────────────────────── +2026/03/20 17:28:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:04.575860867Z"} +2026/03/20 17:28:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":475.8,"last_update":"2026-03-20T17:28:04.576125461Z"} +2026/03/20 17:28:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:04.586955046Z"} +2026/03/20 17:28:09 [detection_layer] {"stage_name":"detection_layer","events_processed":79,"events_dropped":0,"avg_latency_ms":16.556542906375178,"throughput_eps":0,"last_update":"2026-03-20T17:28:04.71928403Z"} +2026/03/20 17:28:09 [transform_engine] {"stage_name":"transform_engine","events_processed":79,"events_dropped":0,"avg_latency_ms":72.72493624389918,"throughput_eps":0,"last_update":"2026-03-20T17:28:04.719345587Z"} +2026/03/20 17:28:09 ───────────────────────────────────────────────── +2026/03/20 17:28:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:09.575712331Z"} +2026/03/20 17:28:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":476.8,"last_update":"2026-03-20T17:28:09.575988608Z"} +2026/03/20 17:28:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":956,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:09.586928264Z"} +2026/03/20 17:28:14 [detection_layer] {"stage_name":"detection_layer","events_processed":79,"events_dropped":0,"avg_latency_ms":16.556542906375178,"throughput_eps":0,"last_update":"2026-03-20T17:28:09.719344134Z"} +2026/03/20 17:28:14 [transform_engine] {"stage_name":"transform_engine","events_processed":79,"events_dropped":0,"avg_latency_ms":72.72493624389918,"throughput_eps":0,"last_update":"2026-03-20T17:28:09.719325108Z"} +2026/03/20 17:28:14 ───────────────────────────────────────────────── +2026/03/20 17:28:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:19 [detection_layer] {"stage_name":"detection_layer","events_processed":79,"events_dropped":0,"avg_latency_ms":16.556542906375178,"throughput_eps":0,"last_update":"2026-03-20T17:28:14.719453698Z"} +2026/03/20 17:28:19 [transform_engine] {"stage_name":"transform_engine","events_processed":79,"events_dropped":0,"avg_latency_ms":72.72493624389918,"throughput_eps":0,"last_update":"2026-03-20T17:28:14.719502822Z"} +2026/03/20 17:28:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:14.575518171Z"} +2026/03/20 17:28:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":477.8,"last_update":"2026-03-20T17:28:14.576081045Z"} +2026/03/20 17:28:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":958,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:14.585199348Z"} +2026/03/20 17:28:19 ───────────────────────────────────────────────── +2026/03/20 17:28:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:19.575983274Z"} +2026/03/20 17:28:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":478.8,"last_update":"2026-03-20T17:28:19.575889345Z"} +2026/03/20 17:28:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":960,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:19.586514955Z"} +2026/03/20 17:28:24 [detection_layer] {"stage_name":"detection_layer","events_processed":79,"events_dropped":0,"avg_latency_ms":16.556542906375178,"throughput_eps":0,"last_update":"2026-03-20T17:28:19.718806762Z"} +2026/03/20 17:28:24 [transform_engine] {"stage_name":"transform_engine","events_processed":79,"events_dropped":0,"avg_latency_ms":72.72493624389918,"throughput_eps":0,"last_update":"2026-03-20T17:28:19.71869583Z"} +2026/03/20 17:28:24 ───────────────────────────────────────────────── +2026/03/20 17:28:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":479.8,"last_update":"2026-03-20T17:28:24.5760009Z"} +2026/03/20 17:28:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":962,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:24.585890226Z"} +2026/03/20 17:28:29 [detection_layer] {"stage_name":"detection_layer","events_processed":79,"events_dropped":0,"avg_latency_ms":16.556542906375178,"throughput_eps":0,"last_update":"2026-03-20T17:28:24.719141035Z"} +2026/03/20 17:28:29 [transform_engine] {"stage_name":"transform_engine","events_processed":80,"events_dropped":0,"avg_latency_ms":80.29599119511934,"throughput_eps":0,"last_update":"2026-03-20T17:28:24.82974449Z"} +2026/03/20 17:28:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:24.57558118Z"} +2026/03/20 17:28:29 ───────────────────────────────────────────────── +2026/03/20 17:28:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:29.57600853Z"} +2026/03/20 17:28:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":480.8,"last_update":"2026-03-20T17:28:29.576449861Z"} +2026/03/20 17:28:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:29.584869274Z"} +2026/03/20 17:28:34 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":15.645160525100142,"throughput_eps":0,"last_update":"2026-03-20T17:28:29.719145952Z"} +2026/03/20 17:28:34 [transform_engine] {"stage_name":"transform_engine","events_processed":80,"events_dropped":0,"avg_latency_ms":80.29599119511934,"throughput_eps":0,"last_update":"2026-03-20T17:28:29.719193001Z"} +2026/03/20 17:28:34 ───────────────────────────────────────────────── +2026/03/20 17:28:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:39 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":15.645160525100142,"throughput_eps":0,"last_update":"2026-03-20T17:28:34.719787941Z"} +2026/03/20 17:28:39 [transform_engine] {"stage_name":"transform_engine","events_processed":80,"events_dropped":0,"avg_latency_ms":80.29599119511934,"throughput_eps":0,"last_update":"2026-03-20T17:28:34.718643017Z"} +2026/03/20 17:28:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:34.575528957Z"} +2026/03/20 17:28:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":481.8,"last_update":"2026-03-20T17:28:34.575574595Z"} +2026/03/20 17:28:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":966,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:34.586465082Z"} +2026/03/20 17:28:39 ───────────────────────────────────────────────── +2026/03/20 17:28:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:39.576100947Z"} +2026/03/20 17:28:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":482.8,"last_update":"2026-03-20T17:28:39.576412452Z"} +2026/03/20 17:28:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":968,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:39.585446639Z"} +2026/03/20 17:28:44 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":15.645160525100142,"throughput_eps":0,"last_update":"2026-03-20T17:28:39.719641805Z"} +2026/03/20 17:28:44 [transform_engine] {"stage_name":"transform_engine","events_processed":80,"events_dropped":0,"avg_latency_ms":80.29599119511934,"throughput_eps":0,"last_update":"2026-03-20T17:28:39.719745041Z"} +2026/03/20 17:28:44 ───────────────────────────────────────────────── +2026/03/20 17:28:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:44.575853515Z"} +2026/03/20 17:28:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":483.8,"last_update":"2026-03-20T17:28:44.576463769Z"} +2026/03/20 17:28:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":970,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:44.585513146Z"} +2026/03/20 17:28:49 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":15.645160525100142,"throughput_eps":0,"last_update":"2026-03-20T17:28:44.718775433Z"} +2026/03/20 17:28:49 [transform_engine] {"stage_name":"transform_engine","events_processed":80,"events_dropped":0,"avg_latency_ms":80.29599119511934,"throughput_eps":0,"last_update":"2026-03-20T17:28:44.718760244Z"} +2026/03/20 17:28:49 ───────────────────────────────────────────────── +2026/03/20 17:28:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:49.576031399Z"} +2026/03/20 17:28:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":484.8,"last_update":"2026-03-20T17:28:49.576557473Z"} +2026/03/20 17:28:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":972,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:49.585424382Z"} +2026/03/20 17:28:54 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":15.645160525100142,"throughput_eps":0,"last_update":"2026-03-20T17:28:49.719786169Z"} +2026/03/20 17:28:54 [transform_engine] {"stage_name":"transform_engine","events_processed":80,"events_dropped":0,"avg_latency_ms":80.29599119511934,"throughput_eps":0,"last_update":"2026-03-20T17:28:49.718632398Z"} +2026/03/20 17:28:54 ───────────────────────────────────────────────── +2026/03/20 17:28:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:28:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:54.575806175Z"} +2026/03/20 17:28:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":485.8,"last_update":"2026-03-20T17:28:54.576221988Z"} +2026/03/20 17:28:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:54.584831226Z"} +2026/03/20 17:28:59 [detection_layer] {"stage_name":"detection_layer","events_processed":80,"events_dropped":0,"avg_latency_ms":15.645160525100142,"throughput_eps":0,"last_update":"2026-03-20T17:28:54.719236968Z"} +2026/03/20 17:28:59 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":76.92585395609547,"throughput_eps":0,"last_update":"2026-03-20T17:28:54.782563847Z"} +2026/03/20 17:28:59 ───────────────────────────────────────────────── +2026/03/20 17:29:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:59.575499766Z"} +2026/03/20 17:29:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":486.8,"last_update":"2026-03-20T17:28:59.575899919Z"} +2026/03/20 17:29:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":976,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:28:59.585499037Z"} +2026/03/20 17:29:04 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":16.056618020080116,"throughput_eps":0,"last_update":"2026-03-20T17:28:59.718822855Z"} +2026/03/20 17:29:04 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":76.92585395609547,"throughput_eps":0,"last_update":"2026-03-20T17:28:59.718708657Z"} +2026/03/20 17:29:04 ───────────────────────────────────────────────── +2026/03/20 17:29:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:04.575597742Z"} +2026/03/20 17:29:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":487.8,"last_update":"2026-03-20T17:29:04.575644891Z"} +2026/03/20 17:29:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":978,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:04.585497002Z"} +2026/03/20 17:29:09 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":16.056618020080116,"throughput_eps":0,"last_update":"2026-03-20T17:29:04.719990363Z"} +2026/03/20 17:29:09 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":76.92585395609547,"throughput_eps":0,"last_update":"2026-03-20T17:29:04.718738905Z"} +2026/03/20 17:29:09 ───────────────────────────────────────────────── +2026/03/20 17:29:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:09.575747295Z"} +2026/03/20 17:29:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":488.8,"last_update":"2026-03-20T17:29:09.576091251Z"} +2026/03/20 17:29:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":980,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:09.586399635Z"} +2026/03/20 17:29:14 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":16.056618020080116,"throughput_eps":0,"last_update":"2026-03-20T17:29:09.719663319Z"} +2026/03/20 17:29:14 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":76.92585395609547,"throughput_eps":0,"last_update":"2026-03-20T17:29:09.719638602Z"} +2026/03/20 17:29:14 ───────────────────────────────────────────────── +2026/03/20 17:29:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":982,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:14.585212925Z"} +2026/03/20 17:29:19 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":16.056618020080116,"throughput_eps":0,"last_update":"2026-03-20T17:29:14.719529571Z"} +2026/03/20 17:29:19 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":76.92585395609547,"throughput_eps":0,"last_update":"2026-03-20T17:29:14.719510605Z"} +2026/03/20 17:29:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:14.575537651Z"} +2026/03/20 17:29:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":489.8,"last_update":"2026-03-20T17:29:14.575578689Z"} +2026/03/20 17:29:19 ───────────────────────────────────────────────── +2026/03/20 17:29:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:19.587070909Z"} +2026/03/20 17:29:24 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":16.056618020080116,"throughput_eps":0,"last_update":"2026-03-20T17:29:19.719264883Z"} +2026/03/20 17:29:24 [transform_engine] {"stage_name":"transform_engine","events_processed":81,"events_dropped":0,"avg_latency_ms":76.92585395609547,"throughput_eps":0,"last_update":"2026-03-20T17:29:19.719285563Z"} +2026/03/20 17:29:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:19.576041387Z"} +2026/03/20 17:29:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":490.8,"last_update":"2026-03-20T17:29:19.576030066Z"} +2026/03/20 17:29:24 ───────────────────────────────────────────────── +2026/03/20 17:29:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":986,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:24.586570377Z"} +2026/03/20 17:29:29 [detection_layer] {"stage_name":"detection_layer","events_processed":81,"events_dropped":0,"avg_latency_ms":16.056618020080116,"throughput_eps":0,"last_update":"2026-03-20T17:29:24.718803358Z"} +2026/03/20 17:29:29 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":84.60938196487638,"throughput_eps":0,"last_update":"2026-03-20T17:29:24.834081356Z"} +2026/03/20 17:29:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:24.57560598Z"} +2026/03/20 17:29:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":491.8,"last_update":"2026-03-20T17:29:24.575721421Z"} +2026/03/20 17:29:29 ───────────────────────────────────────────────── +2026/03/20 17:29:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:29.575765152Z"} +2026/03/20 17:29:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":492.8,"last_update":"2026-03-20T17:29:29.576058863Z"} +2026/03/20 17:29:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":988,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:29.586185602Z"} +2026/03/20 17:29:34 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":16.417901416064094,"throughput_eps":0,"last_update":"2026-03-20T17:29:29.719371873Z"} +2026/03/20 17:29:34 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":84.60938196487638,"throughput_eps":0,"last_update":"2026-03-20T17:29:29.719450823Z"} +2026/03/20 17:29:34 ───────────────────────────────────────────────── +2026/03/20 17:29:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:34.576072379Z"} +2026/03/20 17:29:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":493.8,"last_update":"2026-03-20T17:29:34.576464657Z"} +2026/03/20 17:29:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":990,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:34.585764289Z"} +2026/03/20 17:29:39 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":16.417901416064094,"throughput_eps":0,"last_update":"2026-03-20T17:29:34.719223039Z"} +2026/03/20 17:29:39 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":84.60938196487638,"throughput_eps":0,"last_update":"2026-03-20T17:29:34.719165839Z"} +2026/03/20 17:29:39 ───────────────────────────────────────────────── +2026/03/20 17:29:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:44 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":84.60938196487638,"throughput_eps":0,"last_update":"2026-03-20T17:29:39.71978644Z"} +2026/03/20 17:29:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:39.576043689Z"} +2026/03/20 17:29:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":494.8,"last_update":"2026-03-20T17:29:39.576430527Z"} +2026/03/20 17:29:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":992,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:39.58641672Z"} +2026/03/20 17:29:44 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":16.417901416064094,"throughput_eps":0,"last_update":"2026-03-20T17:29:39.71983835Z"} +2026/03/20 17:29:44 ───────────────────────────────────────────────── +2026/03/20 17:29:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:44.57553199Z"} +2026/03/20 17:29:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":495.8,"last_update":"2026-03-20T17:29:44.575811264Z"} +2026/03/20 17:29:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:44.586069947Z"} +2026/03/20 17:29:49 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":16.417901416064094,"throughput_eps":0,"last_update":"2026-03-20T17:29:44.719297256Z"} +2026/03/20 17:29:49 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":84.60938196487638,"throughput_eps":0,"last_update":"2026-03-20T17:29:44.719402076Z"} +2026/03/20 17:29:49 ───────────────────────────────────────────────── +2026/03/20 17:29:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:54 [transform_engine] {"stage_name":"transform_engine","events_processed":82,"events_dropped":0,"avg_latency_ms":84.60938196487638,"throughput_eps":0,"last_update":"2026-03-20T17:29:49.718683232Z"} +2026/03/20 17:29:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:49.575746296Z"} +2026/03/20 17:29:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":496.8,"last_update":"2026-03-20T17:29:49.576520645Z"} +2026/03/20 17:29:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":996,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:49.585519244Z"} +2026/03/20 17:29:54 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":16.417901416064094,"throughput_eps":0,"last_update":"2026-03-20T17:29:49.719830502Z"} +2026/03/20 17:29:54 ───────────────────────────────────────────────── +2026/03/20 17:29:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:29:59 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":80.8326673719011,"throughput_eps":0,"last_update":"2026-03-20T17:29:54.784383504Z"} +2026/03/20 17:29:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:54.575834546Z"} +2026/03/20 17:29:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":497.8,"last_update":"2026-03-20T17:29:54.57660115Z"} +2026/03/20 17:29:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":998,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:54.585469611Z"} +2026/03/20 17:29:59 [detection_layer] {"stage_name":"detection_layer","events_processed":82,"events_dropped":0,"avg_latency_ms":16.417901416064094,"throughput_eps":0,"last_update":"2026-03-20T17:29:54.719795026Z"} +2026/03/20 17:29:59 ───────────────────────────────────────────────── +2026/03/20 17:30:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:59.575821595Z"} +2026/03/20 17:30:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2494,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":498.8,"last_update":"2026-03-20T17:29:59.576117049Z"} +2026/03/20 17:30:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1000,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:29:59.586165313Z"} +2026/03/20 17:30:04 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":16.659370932851278,"throughput_eps":0,"last_update":"2026-03-20T17:29:59.71937069Z"} +2026/03/20 17:30:04 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":80.8326673719011,"throughput_eps":0,"last_update":"2026-03-20T17:29:59.719417119Z"} +2026/03/20 17:30:04 ───────────────────────────────────────────────── +2026/03/20 17:30:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1002,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:04.591966811Z"} +2026/03/20 17:30:09 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":16.659370932851278,"throughput_eps":0,"last_update":"2026-03-20T17:30:04.719311338Z"} +2026/03/20 17:30:09 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":80.8326673719011,"throughput_eps":0,"last_update":"2026-03-20T17:30:04.719288754Z"} +2026/03/20 17:30:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:04.575723959Z"} +2026/03/20 17:30:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2499,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":499.8,"last_update":"2026-03-20T17:30:04.576497867Z"} +2026/03/20 17:30:09 ───────────────────────────────────────────────── +2026/03/20 17:30:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:09.57585164Z"} +2026/03/20 17:30:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":500.8,"last_update":"2026-03-20T17:30:09.576478567Z"} +2026/03/20 17:30:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:09.584781089Z"} +2026/03/20 17:30:14 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":16.659370932851278,"throughput_eps":0,"last_update":"2026-03-20T17:30:09.71925609Z"} +2026/03/20 17:30:14 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":80.8326673719011,"throughput_eps":0,"last_update":"2026-03-20T17:30:09.719168583Z"} +2026/03/20 17:30:14 ───────────────────────────────────────────────── +2026/03/20 17:30:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:14.575542617Z"} +2026/03/20 17:30:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2509,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":501.8,"last_update":"2026-03-20T17:30:14.575770422Z"} +2026/03/20 17:30:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1006,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:14.586410027Z"} +2026/03/20 17:30:19 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":16.659370932851278,"throughput_eps":0,"last_update":"2026-03-20T17:30:14.719778335Z"} +2026/03/20 17:30:19 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":80.8326673719011,"throughput_eps":0,"last_update":"2026-03-20T17:30:14.719903143Z"} +2026/03/20 17:30:19 ───────────────────────────────────────────────── +2026/03/20 17:30:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":502.8,"last_update":"2026-03-20T17:30:19.575572849Z"} +2026/03/20 17:30:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1008,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:19.585958932Z"} +2026/03/20 17:30:24 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":16.659370932851278,"throughput_eps":0,"last_update":"2026-03-20T17:30:19.719297201Z"} +2026/03/20 17:30:24 [transform_engine] {"stage_name":"transform_engine","events_processed":83,"events_dropped":0,"avg_latency_ms":80.8326673719011,"throughput_eps":0,"last_update":"2026-03-20T17:30:19.719196188Z"} +2026/03/20 17:30:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:19.575513366Z"} +2026/03/20 17:30:24 ───────────────────────────────────────────────── +2026/03/20 17:30:24 [ANOMALY] time=2026-03-20T17:30:24Z score=0.8529 method=SEAD details=MAD!:w=0.29,s=0.84 RRCF-fast:w=0.18,s=0.80 RRCF-mid:w=0.16,s=0.80 RRCF-slow:w=0.15,s=0.86 COPOD!:w=0.22,s=0.95 +2026/03/20 17:30:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1010,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:24.58568618Z"} +2026/03/20 17:30:29 [detection_layer] {"stage_name":"detection_layer","events_processed":83,"events_dropped":0,"avg_latency_ms":16.659370932851278,"throughput_eps":0,"last_update":"2026-03-20T17:30:24.719001444Z"} +2026/03/20 17:30:29 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":87.50973909752088,"throughput_eps":0,"last_update":"2026-03-20T17:30:24.833187511Z"} +2026/03/20 17:30:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:24.5755214Z"} +2026/03/20 17:30:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2518,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":503.6,"last_update":"2026-03-20T17:30:24.575253067Z"} +2026/03/20 17:30:29 ───────────────────────────────────────────────── +2026/03/20 17:30:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1012,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:29.585240559Z"} +2026/03/20 17:30:34 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":16.455199346281024,"throughput_eps":0,"last_update":"2026-03-20T17:30:29.719630245Z"} +2026/03/20 17:30:34 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":87.50973909752088,"throughput_eps":0,"last_update":"2026-03-20T17:30:29.719609936Z"} +2026/03/20 17:30:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:29.576021394Z"} +2026/03/20 17:30:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":504.8,"last_update":"2026-03-20T17:30:29.57633882Z"} +2026/03/20 17:30:34 ───────────────────────────────────────────────── +2026/03/20 17:30:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:34.575515063Z"} +2026/03/20 17:30:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":505.8,"last_update":"2026-03-20T17:30:34.576122914Z"} +2026/03/20 17:30:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:34.586657111Z"} +2026/03/20 17:30:39 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":16.455199346281024,"throughput_eps":0,"last_update":"2026-03-20T17:30:34.719002511Z"} +2026/03/20 17:30:39 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":87.50973909752088,"throughput_eps":0,"last_update":"2026-03-20T17:30:34.718904304Z"} +2026/03/20 17:30:39 ───────────────────────────────────────────────── +2026/03/20 17:30:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:39.575758047Z"} +2026/03/20 17:30:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":506.8,"last_update":"2026-03-20T17:30:39.57606342Z"} +2026/03/20 17:30:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1016,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:39.586186543Z"} +2026/03/20 17:30:44 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":16.455199346281024,"throughput_eps":0,"last_update":"2026-03-20T17:30:39.719568733Z"} +2026/03/20 17:30:44 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":87.50973909752088,"throughput_eps":0,"last_update":"2026-03-20T17:30:39.719604852Z"} +2026/03/20 17:30:44 ───────────────────────────────────────────────── +2026/03/20 17:30:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1018,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:44.586989589Z"} +2026/03/20 17:30:49 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":16.455199346281024,"throughput_eps":0,"last_update":"2026-03-20T17:30:44.719214598Z"} +2026/03/20 17:30:49 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":87.50973909752088,"throughput_eps":0,"last_update":"2026-03-20T17:30:44.719222573Z"} +2026/03/20 17:30:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:44.575793626Z"} +2026/03/20 17:30:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":507.8,"last_update":"2026-03-20T17:30:44.576132263Z"} +2026/03/20 17:30:49 ───────────────────────────────────────────────── +2026/03/20 17:30:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:49.57585976Z"} +2026/03/20 17:30:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":508.8,"last_update":"2026-03-20T17:30:49.576204098Z"} +2026/03/20 17:30:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1020,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:49.584899566Z"} +2026/03/20 17:30:54 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":16.455199346281024,"throughput_eps":0,"last_update":"2026-03-20T17:30:49.719130775Z"} +2026/03/20 17:30:54 [transform_engine] {"stage_name":"transform_engine","events_processed":84,"events_dropped":0,"avg_latency_ms":87.50973909752088,"throughput_eps":0,"last_update":"2026-03-20T17:30:49.719137298Z"} +2026/03/20 17:30:54 ───────────────────────────────────────────────── +2026/03/20 17:30:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:30:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:54.575538959Z"} +2026/03/20 17:30:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":509.8,"last_update":"2026-03-20T17:30:54.575583524Z"} +2026/03/20 17:30:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1022,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:54.586268182Z"} +2026/03/20 17:30:59 [detection_layer] {"stage_name":"detection_layer","events_processed":84,"events_dropped":0,"avg_latency_ms":16.455199346281024,"throughput_eps":0,"last_update":"2026-03-20T17:30:54.719629278Z"} +2026/03/20 17:30:59 [transform_engine] {"stage_name":"transform_engine","events_processed":85,"events_dropped":0,"avg_latency_ms":92.78222407801671,"throughput_eps":0,"last_update":"2026-03-20T17:30:54.833534835Z"} +2026/03/20 17:30:59 ───────────────────────────────────────────────── +2026/03/20 17:31:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:59.575702052Z"} +2026/03/20 17:31:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":510.8,"last_update":"2026-03-20T17:30:59.575980964Z"} +2026/03/20 17:31:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:30:59.587337677Z"} +2026/03/20 17:31:04 [detection_layer] {"stage_name":"detection_layer","events_processed":85,"events_dropped":0,"avg_latency_ms":16.64477347702482,"throughput_eps":0,"last_update":"2026-03-20T17:30:59.719728889Z"} +2026/03/20 17:31:04 [transform_engine] {"stage_name":"transform_engine","events_processed":85,"events_dropped":0,"avg_latency_ms":92.78222407801671,"throughput_eps":0,"last_update":"2026-03-20T17:30:59.719740412Z"} +2026/03/20 17:31:04 ───────────────────────────────────────────────── +2026/03/20 17:31:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:09 [transform_engine] {"stage_name":"transform_engine","events_processed":85,"events_dropped":0,"avg_latency_ms":92.78222407801671,"throughput_eps":0,"last_update":"2026-03-20T17:31:04.719019573Z"} +2026/03/20 17:31:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:04.575891073Z"} +2026/03/20 17:31:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":511.8,"last_update":"2026-03-20T17:31:04.576436875Z"} +2026/03/20 17:31:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1026,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:04.586777376Z"} +2026/03/20 17:31:09 [detection_layer] {"stage_name":"detection_layer","events_processed":85,"events_dropped":0,"avg_latency_ms":16.64477347702482,"throughput_eps":0,"last_update":"2026-03-20T17:31:04.719008061Z"} +2026/03/20 17:31:09 ───────────────────────────────────────────────── +2026/03/20 17:31:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:09.57603968Z"} +2026/03/20 17:31:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":512.8,"last_update":"2026-03-20T17:31:09.576407212Z"} +2026/03/20 17:31:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1028,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:09.586402615Z"} +2026/03/20 17:31:14 [detection_layer] {"stage_name":"detection_layer","events_processed":85,"events_dropped":0,"avg_latency_ms":16.64477347702482,"throughput_eps":0,"last_update":"2026-03-20T17:31:09.719646333Z"} +2026/03/20 17:31:14 [transform_engine] {"stage_name":"transform_engine","events_processed":85,"events_dropped":0,"avg_latency_ms":92.78222407801671,"throughput_eps":0,"last_update":"2026-03-20T17:31:09.719655861Z"} +2026/03/20 17:31:14 ───────────────────────────────────────────────── +2026/03/20 17:31:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:14.5755407Z"} +2026/03/20 17:31:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":513.8,"last_update":"2026-03-20T17:31:14.575702309Z"} +2026/03/20 17:31:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1030,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:14.585651545Z"} +2026/03/20 17:31:19 [detection_layer] {"stage_name":"detection_layer","events_processed":85,"events_dropped":0,"avg_latency_ms":16.64477347702482,"throughput_eps":0,"last_update":"2026-03-20T17:31:14.718866255Z"} +2026/03/20 17:31:19 [transform_engine] {"stage_name":"transform_engine","events_processed":85,"events_dropped":0,"avg_latency_ms":92.78222407801671,"throughput_eps":0,"last_update":"2026-03-20T17:31:14.718877537Z"} +2026/03/20 17:31:19 ───────────────────────────────────────────────── +2026/03/20 17:31:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1032,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:19.58604019Z"} +2026/03/20 17:31:24 [detection_layer] {"stage_name":"detection_layer","events_processed":85,"events_dropped":0,"avg_latency_ms":16.64477347702482,"throughput_eps":0,"last_update":"2026-03-20T17:31:19.719278114Z"} +2026/03/20 17:31:24 [transform_engine] {"stage_name":"transform_engine","events_processed":85,"events_dropped":0,"avg_latency_ms":92.78222407801671,"throughput_eps":0,"last_update":"2026-03-20T17:31:19.719288253Z"} +2026/03/20 17:31:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:19.575600346Z"} +2026/03/20 17:31:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":514.8,"last_update":"2026-03-20T17:31:19.575954513Z"} +2026/03/20 17:31:24 ───────────────────────────────────────────────── +2026/03/20 17:31:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:29 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":96.67436806241336,"throughput_eps":0,"last_update":"2026-03-20T17:31:24.831718389Z"} +2026/03/20 17:31:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:24.57580354Z"} +2026/03/20 17:31:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":515.8,"last_update":"2026-03-20T17:31:24.57613896Z"} +2026/03/20 17:31:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:24.586084109Z"} +2026/03/20 17:31:29 [detection_layer] {"stage_name":"detection_layer","events_processed":85,"events_dropped":0,"avg_latency_ms":16.64477347702482,"throughput_eps":0,"last_update":"2026-03-20T17:31:24.719458933Z"} +2026/03/20 17:31:29 ───────────────────────────────────────────────── +2026/03/20 17:31:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:29.575752502Z"} +2026/03/20 17:31:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":516.8,"last_update":"2026-03-20T17:31:29.576027577Z"} +2026/03/20 17:31:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1036,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:29.587410354Z"} +2026/03/20 17:31:34 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":16.828068581619856,"throughput_eps":0,"last_update":"2026-03-20T17:31:29.719689512Z"} +2026/03/20 17:31:34 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":96.67436806241336,"throughput_eps":0,"last_update":"2026-03-20T17:31:29.719724801Z"} +2026/03/20 17:31:34 ───────────────────────────────────────────────── +2026/03/20 17:31:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1038,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:34.585297745Z"} +2026/03/20 17:31:39 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":16.828068581619856,"throughput_eps":0,"last_update":"2026-03-20T17:31:34.719702183Z"} +2026/03/20 17:31:39 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":96.67436806241336,"throughput_eps":0,"last_update":"2026-03-20T17:31:34.71964871Z"} +2026/03/20 17:31:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:34.575521859Z"} +2026/03/20 17:31:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":517.8,"last_update":"2026-03-20T17:31:34.575713354Z"} +2026/03/20 17:31:39 ───────────────────────────────────────────────── +2026/03/20 17:31:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":518.8,"last_update":"2026-03-20T17:31:39.576167513Z"} +2026/03/20 17:31:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1040,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:39.585748108Z"} +2026/03/20 17:31:44 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":16.828068581619856,"throughput_eps":0,"last_update":"2026-03-20T17:31:39.719012195Z"} +2026/03/20 17:31:44 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":96.67436806241336,"throughput_eps":0,"last_update":"2026-03-20T17:31:39.718990203Z"} +2026/03/20 17:31:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:39.575740648Z"} +2026/03/20 17:31:44 ───────────────────────────────────────────────── +2026/03/20 17:31:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:44.575685157Z"} +2026/03/20 17:31:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":519.8,"last_update":"2026-03-20T17:31:44.576106542Z"} +2026/03/20 17:31:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1042,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:44.586572238Z"} +2026/03/20 17:31:49 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":16.828068581619856,"throughput_eps":0,"last_update":"2026-03-20T17:31:44.71982942Z"} +2026/03/20 17:31:49 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":96.67436806241336,"throughput_eps":0,"last_update":"2026-03-20T17:31:44.718724028Z"} +2026/03/20 17:31:49 ───────────────────────────────────────────────── +2026/03/20 17:31:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:49.576058596Z"} +2026/03/20 17:31:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":520.8,"last_update":"2026-03-20T17:31:49.576047074Z"} +2026/03/20 17:31:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:49.586434712Z"} +2026/03/20 17:31:54 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":16.828068581619856,"throughput_eps":0,"last_update":"2026-03-20T17:31:49.719884459Z"} +2026/03/20 17:31:54 [transform_engine] {"stage_name":"transform_engine","events_processed":86,"events_dropped":0,"avg_latency_ms":96.67436806241336,"throughput_eps":0,"last_update":"2026-03-20T17:31:49.718666042Z"} +2026/03/20 17:31:54 ───────────────────────────────────────────────── +2026/03/20 17:31:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:31:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2609,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":521.8,"last_update":"2026-03-20T17:31:54.576029263Z"} +2026/03/20 17:31:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1046,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:54.585983022Z"} +2026/03/20 17:31:59 [detection_layer] {"stage_name":"detection_layer","events_processed":86,"events_dropped":0,"avg_latency_ms":16.828068581619856,"throughput_eps":0,"last_update":"2026-03-20T17:31:54.719505417Z"} +2026/03/20 17:31:59 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":99.8949136499307,"throughput_eps":0,"last_update":"2026-03-20T17:31:54.832196197Z"} +2026/03/20 17:31:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:54.575725072Z"} +2026/03/20 17:31:59 ───────────────────────────────────────────────── +2026/03/20 17:32:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2614,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":522.8,"last_update":"2026-03-20T17:31:59.576063313Z"} +2026/03/20 17:32:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1048,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:59.586833894Z"} +2026/03/20 17:32:04 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":17.159376465295885,"throughput_eps":0,"last_update":"2026-03-20T17:31:59.719240885Z"} +2026/03/20 17:32:04 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":99.8949136499307,"throughput_eps":0,"last_update":"2026-03-20T17:31:59.719134141Z"} +2026/03/20 17:32:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:31:59.575738563Z"} +2026/03/20 17:32:04 ───────────────────────────────────────────────── +2026/03/20 17:32:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2619,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":523.8,"last_update":"2026-03-20T17:32:04.575708995Z"} +2026/03/20 17:32:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1050,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:04.585674927Z"} +2026/03/20 17:32:09 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":17.159376465295885,"throughput_eps":0,"last_update":"2026-03-20T17:32:04.718958561Z"} +2026/03/20 17:32:09 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":99.8949136499307,"throughput_eps":0,"last_update":"2026-03-20T17:32:04.718919126Z"} +2026/03/20 17:32:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:04.575592753Z"} +2026/03/20 17:32:09 ───────────────────────────────────────────────── +2026/03/20 17:32:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:09.575815272Z"} +2026/03/20 17:32:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2624,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":524.8,"last_update":"2026-03-20T17:32:09.576107049Z"} +2026/03/20 17:32:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1052,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:09.587084917Z"} +2026/03/20 17:32:14 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":17.159376465295885,"throughput_eps":0,"last_update":"2026-03-20T17:32:09.719560464Z"} +2026/03/20 17:32:14 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":99.8949136499307,"throughput_eps":0,"last_update":"2026-03-20T17:32:09.719668801Z"} +2026/03/20 17:32:14 ───────────────────────────────────────────────── +2026/03/20 17:32:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:14.575967552Z"} +2026/03/20 17:32:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2629,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":525.8,"last_update":"2026-03-20T17:32:14.576262476Z"} +2026/03/20 17:32:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:14.585407813Z"} +2026/03/20 17:32:19 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":17.159376465295885,"throughput_eps":0,"last_update":"2026-03-20T17:32:14.719737229Z"} +2026/03/20 17:32:19 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":99.8949136499307,"throughput_eps":0,"last_update":"2026-03-20T17:32:14.719718845Z"} +2026/03/20 17:32:19 ───────────────────────────────────────────────── +2026/03/20 17:32:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:19.575698201Z"} +2026/03/20 17:32:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2634,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":526.8,"last_update":"2026-03-20T17:32:19.576050685Z"} +2026/03/20 17:32:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1056,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:19.586782755Z"} +2026/03/20 17:32:24 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":17.159376465295885,"throughput_eps":0,"last_update":"2026-03-20T17:32:19.719151333Z"} +2026/03/20 17:32:24 [transform_engine] {"stage_name":"transform_engine","events_processed":87,"events_dropped":0,"avg_latency_ms":99.8949136499307,"throughput_eps":0,"last_update":"2026-03-20T17:32:19.719112739Z"} +2026/03/20 17:32:24 ───────────────────────────────────────────────── +2026/03/20 17:32:24 [ANOMALY] time=2026-03-20T17:32:24Z score=0.9031 method=SEAD details=MAD!:w=0.29,s=0.86 RRCF-fast!:w=0.18,s=0.97 RRCF-mid!:w=0.16,s=0.91 RRCF-slow!:w=0.15,s=0.90 COPOD!:w=0.22,s=0.91 +2026/03/20 17:32:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:29 [detection_layer] {"stage_name":"detection_layer","events_processed":87,"events_dropped":0,"avg_latency_ms":17.159376465295885,"throughput_eps":0,"last_update":"2026-03-20T17:32:24.719623244Z"} +2026/03/20 17:32:29 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":102.54730311994457,"throughput_eps":0,"last_update":"2026-03-20T17:32:24.832904542Z"} +2026/03/20 17:32:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:24.575704866Z"} +2026/03/20 17:32:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2639,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":527.8,"last_update":"2026-03-20T17:32:24.57598376Z"} +2026/03/20 17:32:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1058,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:24.5862452Z"} +2026/03/20 17:32:29 ───────────────────────────────────────────────── +2026/03/20 17:32:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:34 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":102.54730311994457,"throughput_eps":0,"last_update":"2026-03-20T17:32:29.718777176Z"} +2026/03/20 17:32:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:29.575489376Z"} +2026/03/20 17:32:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2644,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":528.8,"last_update":"2026-03-20T17:32:29.5756593Z"} +2026/03/20 17:32:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1060,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:29.585247334Z"} +2026/03/20 17:32:34 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":16.48181857223671,"throughput_eps":0,"last_update":"2026-03-20T17:32:29.718809037Z"} +2026/03/20 17:32:34 ───────────────────────────────────────────────── +2026/03/20 17:32:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:34.575565905Z"} +2026/03/20 17:32:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2649,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":529.8,"last_update":"2026-03-20T17:32:34.57600338Z"} +2026/03/20 17:32:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1062,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:34.586588361Z"} +2026/03/20 17:32:39 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":16.48181857223671,"throughput_eps":0,"last_update":"2026-03-20T17:32:34.718822745Z"} +2026/03/20 17:32:39 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":102.54730311994457,"throughput_eps":0,"last_update":"2026-03-20T17:32:34.718793338Z"} +2026/03/20 17:32:39 ───────────────────────────────────────────────── +2026/03/20 17:32:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:39.575671382Z"} +2026/03/20 17:32:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2654,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":530.8,"last_update":"2026-03-20T17:32:39.575953472Z"} +2026/03/20 17:32:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:39.585839836Z"} +2026/03/20 17:32:44 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":16.48181857223671,"throughput_eps":0,"last_update":"2026-03-20T17:32:39.719144021Z"} +2026/03/20 17:32:44 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":102.54730311994457,"throughput_eps":0,"last_update":"2026-03-20T17:32:39.719178057Z"} +2026/03/20 17:32:44 ───────────────────────────────────────────────── +2026/03/20 17:32:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2659,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":531.8,"last_update":"2026-03-20T17:32:44.575988865Z"} +2026/03/20 17:32:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1066,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:44.586171297Z"} +2026/03/20 17:32:49 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":16.48181857223671,"throughput_eps":0,"last_update":"2026-03-20T17:32:44.719487272Z"} +2026/03/20 17:32:49 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":102.54730311994457,"throughput_eps":0,"last_update":"2026-03-20T17:32:44.719463015Z"} +2026/03/20 17:32:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:44.575680536Z"} +2026/03/20 17:32:49 ───────────────────────────────────────────────── +2026/03/20 17:32:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2664,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":532.8,"last_update":"2026-03-20T17:32:49.576223186Z"} +2026/03/20 17:32:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1068,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:49.584451032Z"} +2026/03/20 17:32:54 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":16.48181857223671,"throughput_eps":0,"last_update":"2026-03-20T17:32:49.719895692Z"} +2026/03/20 17:32:54 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":102.54730311994457,"throughput_eps":0,"last_update":"2026-03-20T17:32:49.718687453Z"} +2026/03/20 17:32:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:49.57578083Z"} +2026/03/20 17:32:54 ───────────────────────────────────────────────── +2026/03/20 17:32:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:32:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1070,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:54.585764679Z"} +2026/03/20 17:32:59 [detection_layer] {"stage_name":"detection_layer","events_processed":88,"events_dropped":0,"avg_latency_ms":16.48181857223671,"throughput_eps":0,"last_update":"2026-03-20T17:32:54.719241515Z"} +2026/03/20 17:32:59 [transform_engine] {"stage_name":"transform_engine","events_processed":88,"events_dropped":0,"avg_latency_ms":102.54730311994457,"throughput_eps":0,"last_update":"2026-03-20T17:32:54.719086568Z"} +2026/03/20 17:32:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:54.575540837Z"} +2026/03/20 17:32:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2669,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":533.8,"last_update":"2026-03-20T17:32:54.575875507Z"} +2026/03/20 17:32:59 ───────────────────────────────────────────────── +2026/03/20 17:33:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2674,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":534.8,"last_update":"2026-03-20T17:32:59.576093924Z"} +2026/03/20 17:33:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1072,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:59.585441701Z"} +2026/03/20 17:33:04 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":16.690378257789366,"throughput_eps":0,"last_update":"2026-03-20T17:32:59.718808995Z"} +2026/03/20 17:33:04 [transform_engine] {"stage_name":"transform_engine","events_processed":89,"events_dropped":0,"avg_latency_ms":94.98600349595566,"throughput_eps":0,"last_update":"2026-03-20T17:32:59.718696409Z"} +2026/03/20 17:33:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:32:59.575755948Z"} +2026/03/20 17:33:04 ───────────────────────────────────────────────── +2026/03/20 17:33:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:04.575563766Z"} +2026/03/20 17:33:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2679,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":535.8,"last_update":"2026-03-20T17:33:04.575693725Z"} +2026/03/20 17:33:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:04.585786707Z"} +2026/03/20 17:33:09 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":16.690378257789366,"throughput_eps":0,"last_update":"2026-03-20T17:33:04.719167895Z"} +2026/03/20 17:33:09 [transform_engine] {"stage_name":"transform_engine","events_processed":89,"events_dropped":0,"avg_latency_ms":94.98600349595566,"throughput_eps":0,"last_update":"2026-03-20T17:33:04.719265902Z"} +2026/03/20 17:33:09 ───────────────────────────────────────────────── +2026/03/20 17:33:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:14 [transform_engine] {"stage_name":"transform_engine","events_processed":89,"events_dropped":0,"avg_latency_ms":94.98600349595566,"throughput_eps":0,"last_update":"2026-03-20T17:33:09.719001207Z"} +2026/03/20 17:33:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:09.57596195Z"} +2026/03/20 17:33:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2684,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":536.8,"last_update":"2026-03-20T17:33:09.576330835Z"} +2026/03/20 17:33:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1076,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:09.585741344Z"} +2026/03/20 17:33:14 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":16.690378257789366,"throughput_eps":0,"last_update":"2026-03-20T17:33:09.719105246Z"} +2026/03/20 17:33:14 ───────────────────────────────────────────────── +2026/03/20 17:33:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:14.57567642Z"} +2026/03/20 17:33:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2689,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":537.8,"last_update":"2026-03-20T17:33:14.57602673Z"} +2026/03/20 17:33:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1078,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:14.585866731Z"} +2026/03/20 17:33:19 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":16.690378257789366,"throughput_eps":0,"last_update":"2026-03-20T17:33:14.719122111Z"} +2026/03/20 17:33:19 [transform_engine] {"stage_name":"transform_engine","events_processed":89,"events_dropped":0,"avg_latency_ms":94.98600349595566,"throughput_eps":0,"last_update":"2026-03-20T17:33:14.719162778Z"} +2026/03/20 17:33:19 ───────────────────────────────────────────────── +2026/03/20 17:33:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2694,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":538.8,"last_update":"2026-03-20T17:33:19.575976653Z"} +2026/03/20 17:33:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1080,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:19.586363278Z"} +2026/03/20 17:33:24 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":16.690378257789366,"throughput_eps":0,"last_update":"2026-03-20T17:33:19.719596513Z"} +2026/03/20 17:33:24 [transform_engine] {"stage_name":"transform_engine","events_processed":89,"events_dropped":0,"avg_latency_ms":94.98600349595566,"throughput_eps":0,"last_update":"2026-03-20T17:33:19.71957396Z"} +2026/03/20 17:33:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:19.575988596Z"} +2026/03/20 17:33:24 ───────────────────────────────────────────────── +2026/03/20 17:33:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:24.576012698Z"} +2026/03/20 17:33:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2699,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":539.8,"last_update":"2026-03-20T17:33:24.575999654Z"} +2026/03/20 17:33:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1082,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:24.585577704Z"} +2026/03/20 17:33:29 [detection_layer] {"stage_name":"detection_layer","events_processed":89,"events_dropped":0,"avg_latency_ms":16.690378257789366,"throughput_eps":0,"last_update":"2026-03-20T17:33:24.718792049Z"} +2026/03/20 17:33:29 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":88.44331599676454,"throughput_eps":0,"last_update":"2026-03-20T17:33:24.781017936Z"} +2026/03/20 17:33:29 ───────────────────────────────────────────────── +2026/03/20 17:33:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:29.576052657Z"} +2026/03/20 17:33:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2704,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":540.8,"last_update":"2026-03-20T17:33:29.57603849Z"} +2026/03/20 17:33:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:29.587543495Z"} +2026/03/20 17:33:34 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":16.526943406231492,"throughput_eps":0,"last_update":"2026-03-20T17:33:29.718816576Z"} +2026/03/20 17:33:34 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":88.44331599676454,"throughput_eps":0,"last_update":"2026-03-20T17:33:29.718720692Z"} +2026/03/20 17:33:34 ───────────────────────────────────────────────── +2026/03/20 17:33:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:34.576067462Z"} +2026/03/20 17:33:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2709,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":541.8,"last_update":"2026-03-20T17:33:34.576235614Z"} +2026/03/20 17:33:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1086,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:34.585179533Z"} +2026/03/20 17:33:39 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":16.526943406231492,"throughput_eps":0,"last_update":"2026-03-20T17:33:34.719469728Z"} +2026/03/20 17:33:39 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":88.44331599676454,"throughput_eps":0,"last_update":"2026-03-20T17:33:34.719443437Z"} +2026/03/20 17:33:39 ───────────────────────────────────────────────── +2026/03/20 17:33:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:39.575579497Z"} +2026/03/20 17:33:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2714,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":542.8,"last_update":"2026-03-20T17:33:39.575682264Z"} +2026/03/20 17:33:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1088,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:39.586019757Z"} +2026/03/20 17:33:44 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":16.526943406231492,"throughput_eps":0,"last_update":"2026-03-20T17:33:39.719459924Z"} +2026/03/20 17:33:44 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":88.44331599676454,"throughput_eps":0,"last_update":"2026-03-20T17:33:39.719408605Z"} +2026/03/20 17:33:44 ───────────────────────────────────────────────── +2026/03/20 17:33:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:44.575794445Z"} +2026/03/20 17:33:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2719,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":543.8,"last_update":"2026-03-20T17:33:44.57612121Z"} +2026/03/20 17:33:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1090,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:44.585570085Z"} +2026/03/20 17:33:49 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":16.526943406231492,"throughput_eps":0,"last_update":"2026-03-20T17:33:44.718808461Z"} +2026/03/20 17:33:49 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":88.44331599676454,"throughput_eps":0,"last_update":"2026-03-20T17:33:44.718736013Z"} +2026/03/20 17:33:49 ───────────────────────────────────────────────── +2026/03/20 17:33:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:49.576175058Z"} +2026/03/20 17:33:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2724,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":544.8,"last_update":"2026-03-20T17:33:49.57675092Z"} +2026/03/20 17:33:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1092,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:49.585701202Z"} +2026/03/20 17:33:54 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":16.526943406231492,"throughput_eps":0,"last_update":"2026-03-20T17:33:49.719126223Z"} +2026/03/20 17:33:54 [transform_engine] {"stage_name":"transform_engine","events_processed":90,"events_dropped":0,"avg_latency_ms":88.44331599676454,"throughput_eps":0,"last_update":"2026-03-20T17:33:49.719110293Z"} +2026/03/20 17:33:54 ───────────────────────────────────────────────── +2026/03/20 17:33:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:33:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:54.575525969Z"} +2026/03/20 17:33:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2729,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":545.8,"last_update":"2026-03-20T17:33:54.57556331Z"} +2026/03/20 17:33:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:54.585879865Z"} +2026/03/20 17:33:59 [detection_layer] {"stage_name":"detection_layer","events_processed":90,"events_dropped":0,"avg_latency_ms":16.526943406231492,"throughput_eps":0,"last_update":"2026-03-20T17:33:54.719383222Z"} +2026/03/20 17:33:59 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":93.52199559741163,"throughput_eps":0,"last_update":"2026-03-20T17:33:54.833238842Z"} +2026/03/20 17:33:59 ───────────────────────────────────────────────── +2026/03/20 17:34:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:59.576024596Z"} +2026/03/20 17:34:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2734,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":546.8,"last_update":"2026-03-20T17:33:59.57643478Z"} +2026/03/20 17:34:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1096,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:33:59.585200451Z"} +2026/03/20 17:34:04 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":16.743047524985194,"throughput_eps":0,"last_update":"2026-03-20T17:33:59.719506077Z"} +2026/03/20 17:34:04 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":93.52199559741163,"throughput_eps":0,"last_update":"2026-03-20T17:33:59.719613803Z"} +2026/03/20 17:34:04 ───────────────────────────────────────────────── +2026/03/20 17:34:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1098,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:04.586132635Z"} +2026/03/20 17:34:09 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":16.743047524985194,"throughput_eps":0,"last_update":"2026-03-20T17:34:04.719475918Z"} +2026/03/20 17:34:09 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":93.52199559741163,"throughput_eps":0,"last_update":"2026-03-20T17:34:04.719364204Z"} +2026/03/20 17:34:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:04.575792314Z"} +2026/03/20 17:34:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2739,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":547.8,"last_update":"2026-03-20T17:34:04.576156991Z"} +2026/03/20 17:34:09 ───────────────────────────────────────────────── +2026/03/20 17:34:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:09.575828514Z"} +2026/03/20 17:34:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2744,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":548.8,"last_update":"2026-03-20T17:34:09.576410126Z"} +2026/03/20 17:34:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1100,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:09.586838847Z"} +2026/03/20 17:34:14 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":16.743047524985194,"throughput_eps":0,"last_update":"2026-03-20T17:34:09.719345546Z"} +2026/03/20 17:34:14 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":93.52199559741163,"throughput_eps":0,"last_update":"2026-03-20T17:34:09.719235906Z"} +2026/03/20 17:34:14 ───────────────────────────────────────────────── +2026/03/20 17:34:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:19 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":16.743047524985194,"throughput_eps":0,"last_update":"2026-03-20T17:34:14.719593333Z"} +2026/03/20 17:34:19 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":93.52199559741163,"throughput_eps":0,"last_update":"2026-03-20T17:34:14.719562544Z"} +2026/03/20 17:34:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:14.575914165Z"} +2026/03/20 17:34:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2749,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":549.8,"last_update":"2026-03-20T17:34:14.576198629Z"} +2026/03/20 17:34:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1102,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:14.588156575Z"} +2026/03/20 17:34:19 ───────────────────────────────────────────────── +2026/03/20 17:34:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:19.575878106Z"} +2026/03/20 17:34:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2754,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":550.8,"last_update":"2026-03-20T17:34:19.576225591Z"} +2026/03/20 17:34:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:19.585846428Z"} +2026/03/20 17:34:24 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":16.743047524985194,"throughput_eps":0,"last_update":"2026-03-20T17:34:19.71924314Z"} +2026/03/20 17:34:24 [transform_engine] {"stage_name":"transform_engine","events_processed":91,"events_dropped":0,"avg_latency_ms":93.52199559741163,"throughput_eps":0,"last_update":"2026-03-20T17:34:19.719277756Z"} +2026/03/20 17:34:24 ───────────────────────────────────────────────── +2026/03/20 17:34:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2759,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":551.8,"last_update":"2026-03-20T17:34:24.575937883Z"} +2026/03/20 17:34:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1106,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:24.585865167Z"} +2026/03/20 17:34:29 [detection_layer] {"stage_name":"detection_layer","events_processed":91,"events_dropped":0,"avg_latency_ms":16.743047524985194,"throughput_eps":0,"last_update":"2026-03-20T17:34:24.71915983Z"} +2026/03/20 17:34:29 [transform_engine] {"stage_name":"transform_engine","events_processed":92,"events_dropped":0,"avg_latency_ms":97.58340447792932,"throughput_eps":0,"last_update":"2026-03-20T17:34:24.832968671Z"} +2026/03/20 17:34:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:24.575512801Z"} +2026/03/20 17:34:29 ───────────────────────────────────────────────── +2026/03/20 17:34:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:29.576116536Z"} +2026/03/20 17:34:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2764,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":552.8,"last_update":"2026-03-20T17:34:29.576062573Z"} +2026/03/20 17:34:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1108,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:29.585422702Z"} +2026/03/20 17:34:34 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":16.954644019988155,"throughput_eps":0,"last_update":"2026-03-20T17:34:29.718818034Z"} +2026/03/20 17:34:34 [transform_engine] {"stage_name":"transform_engine","events_processed":92,"events_dropped":0,"avg_latency_ms":97.58340447792932,"throughput_eps":0,"last_update":"2026-03-20T17:34:29.718719014Z"} +2026/03/20 17:34:34 ───────────────────────────────────────────────── +2026/03/20 17:34:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2769,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":553.8,"last_update":"2026-03-20T17:34:34.576700681Z"} +2026/03/20 17:34:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1110,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:34.584979504Z"} +2026/03/20 17:34:39 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":16.954644019988155,"throughput_eps":0,"last_update":"2026-03-20T17:34:34.719394611Z"} +2026/03/20 17:34:39 [transform_engine] {"stage_name":"transform_engine","events_processed":92,"events_dropped":0,"avg_latency_ms":97.58340447792932,"throughput_eps":0,"last_update":"2026-03-20T17:34:34.719434577Z"} +2026/03/20 17:34:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:34.575886354Z"} +2026/03/20 17:34:39 ───────────────────────────────────────────────── +2026/03/20 17:34:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:39.575554602Z"} +2026/03/20 17:34:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2774,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":554.8,"last_update":"2026-03-20T17:34:39.575600209Z"} +2026/03/20 17:34:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1112,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:39.586810558Z"} +2026/03/20 17:34:44 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":16.954644019988155,"throughput_eps":0,"last_update":"2026-03-20T17:34:39.719059829Z"} +2026/03/20 17:34:44 [transform_engine] {"stage_name":"transform_engine","events_processed":92,"events_dropped":0,"avg_latency_ms":97.58340447792932,"throughput_eps":0,"last_update":"2026-03-20T17:34:39.719168597Z"} +2026/03/20 17:34:44 ───────────────────────────────────────────────── +2026/03/20 17:34:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:44.575525632Z"} +2026/03/20 17:34:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2779,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":555.8,"last_update":"2026-03-20T17:34:44.576083419Z"} +2026/03/20 17:34:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:44.586291452Z"} +2026/03/20 17:34:49 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":16.954644019988155,"throughput_eps":0,"last_update":"2026-03-20T17:34:44.719782623Z"} +2026/03/20 17:34:49 [transform_engine] {"stage_name":"transform_engine","events_processed":92,"events_dropped":0,"avg_latency_ms":97.58340447792932,"throughput_eps":0,"last_update":"2026-03-20T17:34:44.719667112Z"} +2026/03/20 17:34:49 ───────────────────────────────────────────────── +2026/03/20 17:34:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2784,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":556.8,"last_update":"2026-03-20T17:34:49.576072605Z"} +2026/03/20 17:34:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1116,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:49.586237625Z"} +2026/03/20 17:34:54 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":16.954644019988155,"throughput_eps":0,"last_update":"2026-03-20T17:34:49.719486319Z"} +2026/03/20 17:34:54 [transform_engine] {"stage_name":"transform_engine","events_processed":92,"events_dropped":0,"avg_latency_ms":97.58340447792932,"throughput_eps":0,"last_update":"2026-03-20T17:34:49.719509443Z"} +2026/03/20 17:34:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:49.575662761Z"} +2026/03/20 17:34:54 ───────────────────────────────────────────────── +2026/03/20 17:34:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:34:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:54.575993369Z"} +2026/03/20 17:34:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2789,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":557.8,"last_update":"2026-03-20T17:34:54.576194674Z"} +2026/03/20 17:34:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1118,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:54.585071711Z"} +2026/03/20 17:34:59 [detection_layer] {"stage_name":"detection_layer","events_processed":92,"events_dropped":0,"avg_latency_ms":16.954644019988155,"throughput_eps":0,"last_update":"2026-03-20T17:34:54.719529944Z"} +2026/03/20 17:34:59 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":91.38441778234346,"throughput_eps":0,"last_update":"2026-03-20T17:34:54.786079199Z"} +2026/03/20 17:34:59 ───────────────────────────────────────────────── +2026/03/20 17:35:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1120,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:59.585552021Z"} +2026/03/20 17:35:04 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":16.973065615990524,"throughput_eps":0,"last_update":"2026-03-20T17:34:59.71882865Z"} +2026/03/20 17:35:04 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":91.38441778234346,"throughput_eps":0,"last_update":"2026-03-20T17:34:59.718770809Z"} +2026/03/20 17:35:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:34:59.575992248Z"} +2026/03/20 17:35:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2794,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":558.8,"last_update":"2026-03-20T17:34:59.576388886Z"} +2026/03/20 17:35:04 ───────────────────────────────────────────────── +2026/03/20 17:35:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:09 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":16.973065615990524,"throughput_eps":0,"last_update":"2026-03-20T17:35:04.719604247Z"} +2026/03/20 17:35:09 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":91.38441778234346,"throughput_eps":0,"last_update":"2026-03-20T17:35:04.719619976Z"} +2026/03/20 17:35:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:04.575846346Z"} +2026/03/20 17:35:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2799,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":559.8,"last_update":"2026-03-20T17:35:04.576168442Z"} +2026/03/20 17:35:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1122,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:04.58641533Z"} +2026/03/20 17:35:09 ───────────────────────────────────────────────── +2026/03/20 17:35:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2804,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":560.8,"last_update":"2026-03-20T17:35:09.575836446Z"} +2026/03/20 17:35:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:09.584958803Z"} +2026/03/20 17:35:14 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":16.973065615990524,"throughput_eps":0,"last_update":"2026-03-20T17:35:09.719389872Z"} +2026/03/20 17:35:14 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":91.38441778234346,"throughput_eps":0,"last_update":"2026-03-20T17:35:09.719403467Z"} +2026/03/20 17:35:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:09.575495745Z"} +2026/03/20 17:35:14 ───────────────────────────────────────────────── +2026/03/20 17:35:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:14.575817048Z"} +2026/03/20 17:35:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2809,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":561.8,"last_update":"2026-03-20T17:35:14.576119296Z"} +2026/03/20 17:35:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1126,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:14.586210538Z"} +2026/03/20 17:35:19 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":16.973065615990524,"throughput_eps":0,"last_update":"2026-03-20T17:35:14.719477654Z"} +2026/03/20 17:35:19 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":91.38441778234346,"throughput_eps":0,"last_update":"2026-03-20T17:35:14.719485318Z"} +2026/03/20 17:35:19 ───────────────────────────────────────────────── +2026/03/20 17:35:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1128,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:19.584852439Z"} +2026/03/20 17:35:24 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":16.973065615990524,"throughput_eps":0,"last_update":"2026-03-20T17:35:19.71917548Z"} +2026/03/20 17:35:24 [transform_engine] {"stage_name":"transform_engine","events_processed":93,"events_dropped":0,"avg_latency_ms":91.38441778234346,"throughput_eps":0,"last_update":"2026-03-20T17:35:19.719186962Z"} +2026/03/20 17:35:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:19.575913872Z"} +2026/03/20 17:35:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2814,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":562.8,"last_update":"2026-03-20T17:35:19.576206963Z"} +2026/03/20 17:35:24 ───────────────────────────────────────────────── +2026/03/20 17:35:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:24.576262655Z"} +2026/03/20 17:35:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2819,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":563.8,"last_update":"2026-03-20T17:35:24.576951704Z"} +2026/03/20 17:35:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1130,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:24.584860761Z"} +2026/03/20 17:35:29 [detection_layer] {"stage_name":"detection_layer","events_processed":93,"events_dropped":0,"avg_latency_ms":16.973065615990524,"throughput_eps":0,"last_update":"2026-03-20T17:35:24.71925771Z"} +2026/03/20 17:35:29 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":95.56999942587477,"throughput_eps":0,"last_update":"2026-03-20T17:35:24.831586286Z"} +2026/03/20 17:35:29 ───────────────────────────────────────────────── +2026/03/20 17:35:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:29.575828235Z"} +2026/03/20 17:35:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2824,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":564.8,"last_update":"2026-03-20T17:35:29.57618627Z"} +2026/03/20 17:35:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1132,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:29.585073469Z"} +2026/03/20 17:35:34 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":16.85228469279242,"throughput_eps":0,"last_update":"2026-03-20T17:35:29.71944862Z"} +2026/03/20 17:35:34 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":95.56999942587477,"throughput_eps":0,"last_update":"2026-03-20T17:35:29.719464551Z"} +2026/03/20 17:35:34 ───────────────────────────────────────────────── +2026/03/20 17:35:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2829,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":565.8,"last_update":"2026-03-20T17:35:34.575990991Z"} +2026/03/20 17:35:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:34.585904373Z"} +2026/03/20 17:35:39 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":16.85228469279242,"throughput_eps":0,"last_update":"2026-03-20T17:35:34.719220915Z"} +2026/03/20 17:35:39 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":95.56999942587477,"throughput_eps":0,"last_update":"2026-03-20T17:35:34.719227518Z"} +2026/03/20 17:35:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:34.575595073Z"} +2026/03/20 17:35:39 ───────────────────────────────────────────────── +2026/03/20 17:35:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:39.575520577Z"} +2026/03/20 17:35:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2834,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":566.8,"last_update":"2026-03-20T17:35:39.576104905Z"} +2026/03/20 17:35:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1136,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:39.585828365Z"} +2026/03/20 17:35:44 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":16.85228469279242,"throughput_eps":0,"last_update":"2026-03-20T17:35:39.719095215Z"} +2026/03/20 17:35:44 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":95.56999942587477,"throughput_eps":0,"last_update":"2026-03-20T17:35:39.719104062Z"} +2026/03/20 17:35:44 ───────────────────────────────────────────────── +2026/03/20 17:35:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:44.575788422Z"} +2026/03/20 17:35:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2839,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":567.8,"last_update":"2026-03-20T17:35:44.575761851Z"} +2026/03/20 17:35:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1138,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:44.585789754Z"} +2026/03/20 17:35:49 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":16.85228469279242,"throughput_eps":0,"last_update":"2026-03-20T17:35:44.719238448Z"} +2026/03/20 17:35:49 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":95.56999942587477,"throughput_eps":0,"last_update":"2026-03-20T17:35:44.719252436Z"} +2026/03/20 17:35:49 ───────────────────────────────────────────────── +2026/03/20 17:35:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:49.575668925Z"} +2026/03/20 17:35:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2844,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":568.8,"last_update":"2026-03-20T17:35:49.575663144Z"} +2026/03/20 17:35:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1140,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:49.58620982Z"} +2026/03/20 17:35:54 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":16.85228469279242,"throughput_eps":0,"last_update":"2026-03-20T17:35:49.719464539Z"} +2026/03/20 17:35:54 [transform_engine] {"stage_name":"transform_engine","events_processed":94,"events_dropped":0,"avg_latency_ms":95.56999942587477,"throughput_eps":0,"last_update":"2026-03-20T17:35:49.719472483Z"} +2026/03/20 17:35:54 ───────────────────────────────────────────────── +2026/03/20 17:35:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:35:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:54.575692838Z"} +2026/03/20 17:35:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2849,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":569.8,"last_update":"2026-03-20T17:35:54.576010375Z"} +2026/03/20 17:35:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1142,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:54.58729891Z"} +2026/03/20 17:35:59 [detection_layer] {"stage_name":"detection_layer","events_processed":94,"events_dropped":0,"avg_latency_ms":16.85228469279242,"throughput_eps":0,"last_update":"2026-03-20T17:35:54.71962165Z"} +2026/03/20 17:35:59 [transform_engine] {"stage_name":"transform_engine","events_processed":95,"events_dropped":0,"avg_latency_ms":98.26300994069982,"throughput_eps":0,"last_update":"2026-03-20T17:35:54.828669697Z"} +2026/03/20 17:35:59 ───────────────────────────────────────────────── +2026/03/20 17:36:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:59.575970058Z"} +2026/03/20 17:36:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2854,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":570.8,"last_update":"2026-03-20T17:35:59.576238261Z"} +2026/03/20 17:36:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:35:59.585192311Z"} +2026/03/20 17:36:04 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":16.949330954233936,"throughput_eps":0,"last_update":"2026-03-20T17:35:59.719443616Z"} +2026/03/20 17:36:04 [transform_engine] {"stage_name":"transform_engine","events_processed":95,"events_dropped":0,"avg_latency_ms":98.26300994069982,"throughput_eps":0,"last_update":"2026-03-20T17:35:59.719458944Z"} +2026/03/20 17:36:04 ───────────────────────────────────────────────── +2026/03/20 17:36:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:09 [transform_engine] {"stage_name":"transform_engine","events_processed":95,"events_dropped":0,"avg_latency_ms":98.26300994069982,"throughput_eps":0,"last_update":"2026-03-20T17:36:04.718718476Z"} +2026/03/20 17:36:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:04.575798764Z"} +2026/03/20 17:36:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2859,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":571.8,"last_update":"2026-03-20T17:36:04.576172529Z"} +2026/03/20 17:36:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1146,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:04.586534141Z"} +2026/03/20 17:36:09 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":16.949330954233936,"throughput_eps":0,"last_update":"2026-03-20T17:36:04.718841271Z"} +2026/03/20 17:36:09 ───────────────────────────────────────────────── +2026/03/20 17:36:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:09.575882277Z"} +2026/03/20 17:36:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2864,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":572.8,"last_update":"2026-03-20T17:36:09.576503505Z"} +2026/03/20 17:36:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1148,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:09.585810842Z"} +2026/03/20 17:36:14 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":16.949330954233936,"throughput_eps":0,"last_update":"2026-03-20T17:36:09.719159428Z"} +2026/03/20 17:36:14 [transform_engine] {"stage_name":"transform_engine","events_processed":95,"events_dropped":0,"avg_latency_ms":98.26300994069982,"throughput_eps":0,"last_update":"2026-03-20T17:36:09.719062824Z"} +2026/03/20 17:36:14 ───────────────────────────────────────────────── +2026/03/20 17:36:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1150,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:14.585087691Z"} +2026/03/20 17:36:19 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":16.949330954233936,"throughput_eps":0,"last_update":"2026-03-20T17:36:14.719503674Z"} +2026/03/20 17:36:19 [transform_engine] {"stage_name":"transform_engine","events_processed":95,"events_dropped":0,"avg_latency_ms":98.26300994069982,"throughput_eps":0,"last_update":"2026-03-20T17:36:14.719408723Z"} +2026/03/20 17:36:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:14.576050382Z"} +2026/03/20 17:36:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2869,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":573.8,"last_update":"2026-03-20T17:36:14.576368721Z"} +2026/03/20 17:36:19 ───────────────────────────────────────────────── +2026/03/20 17:36:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:24 [transform_engine] {"stage_name":"transform_engine","events_processed":95,"events_dropped":0,"avg_latency_ms":98.26300994069982,"throughput_eps":0,"last_update":"2026-03-20T17:36:19.718743012Z"} +2026/03/20 17:36:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:19.575601931Z"} +2026/03/20 17:36:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2874,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":574.8,"last_update":"2026-03-20T17:36:19.575614975Z"} +2026/03/20 17:36:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1152,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:19.585514574Z"} +2026/03/20 17:36:24 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":16.949330954233936,"throughput_eps":0,"last_update":"2026-03-20T17:36:19.718778399Z"} +2026/03/20 17:36:24 ───────────────────────────────────────────────── +2026/03/20 17:36:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2879,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":575.8,"last_update":"2026-03-20T17:36:24.576093195Z"} +2026/03/20 17:36:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:24.58625135Z"} +2026/03/20 17:36:29 [detection_layer] {"stage_name":"detection_layer","events_processed":95,"events_dropped":0,"avg_latency_ms":16.949330954233936,"throughput_eps":0,"last_update":"2026-03-20T17:36:24.719644617Z"} +2026/03/20 17:36:29 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":91.67847575255985,"throughput_eps":0,"last_update":"2026-03-20T17:36:24.785039009Z"} +2026/03/20 17:36:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:24.575739889Z"} +2026/03/20 17:36:29 ───────────────────────────────────────────────── +2026/03/20 17:36:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:34 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":17.03294816338715,"throughput_eps":0,"last_update":"2026-03-20T17:36:29.718987802Z"} +2026/03/20 17:36:34 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":91.67847575255985,"throughput_eps":0,"last_update":"2026-03-20T17:36:29.719000096Z"} +2026/03/20 17:36:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:29.576166332Z"} +2026/03/20 17:36:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2884,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":576.8,"last_update":"2026-03-20T17:36:29.57614938Z"} +2026/03/20 17:36:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1156,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:29.586883737Z"} +2026/03/20 17:36:34 ───────────────────────────────────────────────── +2026/03/20 17:36:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:39 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":91.67847575255985,"throughput_eps":0,"last_update":"2026-03-20T17:36:34.71895859Z"} +2026/03/20 17:36:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:34.575841279Z"} +2026/03/20 17:36:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2889,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":577.8,"last_update":"2026-03-20T17:36:34.576194616Z"} +2026/03/20 17:36:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1158,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:34.585700863Z"} +2026/03/20 17:36:39 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":17.03294816338715,"throughput_eps":0,"last_update":"2026-03-20T17:36:34.718949723Z"} +2026/03/20 17:36:39 ───────────────────────────────────────────────── +2026/03/20 17:36:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1160,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:39.586541521Z"} +2026/03/20 17:36:44 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":17.03294816338715,"throughput_eps":0,"last_update":"2026-03-20T17:36:39.718868601Z"} +2026/03/20 17:36:44 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":91.67847575255985,"throughput_eps":0,"last_update":"2026-03-20T17:36:39.718913707Z"} +2026/03/20 17:36:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:39.575559859Z"} +2026/03/20 17:36:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2894,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":578.8,"last_update":"2026-03-20T17:36:39.575673006Z"} +2026/03/20 17:36:44 ───────────────────────────────────────────────── +2026/03/20 17:36:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:44.575521853Z"} +2026/03/20 17:36:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2899,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":579.8,"last_update":"2026-03-20T17:36:44.575959631Z"} +2026/03/20 17:36:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1162,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:44.586767721Z"} +2026/03/20 17:36:49 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":17.03294816338715,"throughput_eps":0,"last_update":"2026-03-20T17:36:44.719085508Z"} +2026/03/20 17:36:49 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":91.67847575255985,"throughput_eps":0,"last_update":"2026-03-20T17:36:44.719039359Z"} +2026/03/20 17:36:49 ───────────────────────────────────────────────── +2026/03/20 17:36:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:49.575981917Z"} +2026/03/20 17:36:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2904,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":580.8,"last_update":"2026-03-20T17:36:49.576215935Z"} +2026/03/20 17:36:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:49.586949122Z"} +2026/03/20 17:36:54 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":17.03294816338715,"throughput_eps":0,"last_update":"2026-03-20T17:36:49.719158095Z"} +2026/03/20 17:36:54 [transform_engine] {"stage_name":"transform_engine","events_processed":96,"events_dropped":0,"avg_latency_ms":91.67847575255985,"throughput_eps":0,"last_update":"2026-03-20T17:36:49.719188493Z"} +2026/03/20 17:36:54 ───────────────────────────────────────────────── +2026/03/20 17:36:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:36:59 [detection_layer] {"stage_name":"detection_layer","events_processed":96,"events_dropped":0,"avg_latency_ms":17.03294816338715,"throughput_eps":0,"last_update":"2026-03-20T17:36:54.719044593Z"} +2026/03/20 17:36:59 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":86.19104040204789,"throughput_eps":0,"last_update":"2026-03-20T17:36:54.783336037Z"} +2026/03/20 17:36:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:54.575743201Z"} +2026/03/20 17:36:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2909,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":581.8,"last_update":"2026-03-20T17:36:54.576054937Z"} +2026/03/20 17:36:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1166,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:54.586779417Z"} +2026/03/20 17:36:59 ───────────────────────────────────────────────── +2026/03/20 17:37:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:04 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":17.274344530709723,"throughput_eps":0,"last_update":"2026-03-20T17:36:59.719644469Z"} +2026/03/20 17:37:04 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":86.19104040204789,"throughput_eps":0,"last_update":"2026-03-20T17:36:59.719765229Z"} +2026/03/20 17:37:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:59.575532761Z"} +2026/03/20 17:37:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2914,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":582.8,"last_update":"2026-03-20T17:36:59.576015516Z"} +2026/03/20 17:37:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1168,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:36:59.585418558Z"} +2026/03/20 17:37:04 ───────────────────────────────────────────────── +2026/03/20 17:37:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2919,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":583.8,"last_update":"2026-03-20T17:37:04.576374557Z"} +2026/03/20 17:37:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1170,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:04.584808906Z"} +2026/03/20 17:37:09 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":17.274344530709723,"throughput_eps":0,"last_update":"2026-03-20T17:37:04.719271404Z"} +2026/03/20 17:37:09 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":86.19104040204789,"throughput_eps":0,"last_update":"2026-03-20T17:37:04.719231788Z"} +2026/03/20 17:37:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:04.576388044Z"} +2026/03/20 17:37:09 ───────────────────────────────────────────────── +2026/03/20 17:37:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:14 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":17.274344530709723,"throughput_eps":0,"last_update":"2026-03-20T17:37:09.719057985Z"} +2026/03/20 17:37:14 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":86.19104040204789,"throughput_eps":0,"last_update":"2026-03-20T17:37:09.719080488Z"} +2026/03/20 17:37:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:09.575732874Z"} +2026/03/20 17:37:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2924,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":584.8,"last_update":"2026-03-20T17:37:09.576135685Z"} +2026/03/20 17:37:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1172,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:09.585835195Z"} +2026/03/20 17:37:14 ───────────────────────────────────────────────── +2026/03/20 17:37:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:14.575665117Z"} +2026/03/20 17:37:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2929,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":585.8,"last_update":"2026-03-20T17:37:14.575644327Z"} +2026/03/20 17:37:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:14.587296834Z"} +2026/03/20 17:37:19 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":17.274344530709723,"throughput_eps":0,"last_update":"2026-03-20T17:37:14.719569451Z"} +2026/03/20 17:37:19 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":86.19104040204789,"throughput_eps":0,"last_update":"2026-03-20T17:37:14.719608355Z"} +2026/03/20 17:37:19 ───────────────────────────────────────────────── +2026/03/20 17:37:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:19.57576098Z"} +2026/03/20 17:37:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2934,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":586.8,"last_update":"2026-03-20T17:37:19.576107013Z"} +2026/03/20 17:37:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1176,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:19.58738293Z"} +2026/03/20 17:37:24 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":17.274344530709723,"throughput_eps":0,"last_update":"2026-03-20T17:37:19.718806805Z"} +2026/03/20 17:37:24 [transform_engine] {"stage_name":"transform_engine","events_processed":97,"events_dropped":0,"avg_latency_ms":86.19104040204789,"throughput_eps":0,"last_update":"2026-03-20T17:37:19.718724808Z"} +2026/03/20 17:37:24 ───────────────────────────────────────────────── +2026/03/20 17:37:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:24.575601612Z"} +2026/03/20 17:37:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2939,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":587.8,"last_update":"2026-03-20T17:37:24.575728775Z"} +2026/03/20 17:37:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1178,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:24.586042392Z"} +2026/03/20 17:37:29 [detection_layer] {"stage_name":"detection_layer","events_processed":97,"events_dropped":0,"avg_latency_ms":17.274344530709723,"throughput_eps":0,"last_update":"2026-03-20T17:37:24.719371608Z"} +2026/03/20 17:37:29 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":82.07541952163831,"throughput_eps":0,"last_update":"2026-03-20T17:37:24.78491467Z"} +2026/03/20 17:37:29 ───────────────────────────────────────────────── +2026/03/20 17:37:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:34 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":17.33203122456778,"throughput_eps":0,"last_update":"2026-03-20T17:37:29.719665677Z"} +2026/03/20 17:37:34 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":82.07541952163831,"throughput_eps":0,"last_update":"2026-03-20T17:37:29.719782831Z"} +2026/03/20 17:37:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:29.575527401Z"} +2026/03/20 17:37:34 [metric_collector] {"stage_name":"metric_collector","events_processed":2944,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":588.8,"last_update":"2026-03-20T17:37:29.575948527Z"} +2026/03/20 17:37:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1180,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:29.587441751Z"} +2026/03/20 17:37:34 ───────────────────────────────────────────────── +2026/03/20 17:37:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:34.575797182Z"} +2026/03/20 17:37:39 [metric_collector] {"stage_name":"metric_collector","events_processed":2949,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":589.8,"last_update":"2026-03-20T17:37:34.576112986Z"} +2026/03/20 17:37:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1182,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:34.586687352Z"} +2026/03/20 17:37:39 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":17.33203122456778,"throughput_eps":0,"last_update":"2026-03-20T17:37:34.719034086Z"} +2026/03/20 17:37:39 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":82.07541952163831,"throughput_eps":0,"last_update":"2026-03-20T17:37:34.718933143Z"} +2026/03/20 17:37:39 ───────────────────────────────────────────────── +2026/03/20 17:37:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:44 [metric_collector] {"stage_name":"metric_collector","events_processed":2954,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":590.8,"last_update":"2026-03-20T17:37:39.576734109Z"} +2026/03/20 17:37:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:39.584945864Z"} +2026/03/20 17:37:44 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":17.33203122456778,"throughput_eps":0,"last_update":"2026-03-20T17:37:39.719329481Z"} +2026/03/20 17:37:44 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":82.07541952163831,"throughput_eps":0,"last_update":"2026-03-20T17:37:39.719402219Z"} +2026/03/20 17:37:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:39.576113742Z"} +2026/03/20 17:37:44 ───────────────────────────────────────────────── +2026/03/20 17:37:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:49 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":82.07541952163831,"throughput_eps":0,"last_update":"2026-03-20T17:37:44.718627096Z"} +2026/03/20 17:37:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:44.575544288Z"} +2026/03/20 17:37:49 [metric_collector] {"stage_name":"metric_collector","events_processed":2959,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":591.8,"last_update":"2026-03-20T17:37:44.575590667Z"} +2026/03/20 17:37:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1186,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:44.585456987Z"} +2026/03/20 17:37:49 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":17.33203122456778,"throughput_eps":0,"last_update":"2026-03-20T17:37:44.719753912Z"} +2026/03/20 17:37:49 ───────────────────────────────────────────────── +2026/03/20 17:37:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:49.575580079Z"} +2026/03/20 17:37:54 [metric_collector] {"stage_name":"metric_collector","events_processed":2964,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":592.8,"last_update":"2026-03-20T17:37:49.575706902Z"} +2026/03/20 17:37:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1188,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:49.586040908Z"} +2026/03/20 17:37:54 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":17.33203122456778,"throughput_eps":0,"last_update":"2026-03-20T17:37:49.719416755Z"} +2026/03/20 17:37:54 [transform_engine] {"stage_name":"transform_engine","events_processed":98,"events_dropped":0,"avg_latency_ms":82.07541952163831,"throughput_eps":0,"last_update":"2026-03-20T17:37:49.719457652Z"} +2026/03/20 17:37:54 ───────────────────────────────────────────────── +2026/03/20 17:37:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:37:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:54.575545711Z"} +2026/03/20 17:37:59 [metric_collector] {"stage_name":"metric_collector","events_processed":2969,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":593.8,"last_update":"2026-03-20T17:37:54.575794056Z"} +2026/03/20 17:37:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1190,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:54.586274904Z"} +2026/03/20 17:37:59 [detection_layer] {"stage_name":"detection_layer","events_processed":98,"events_dropped":0,"avg_latency_ms":17.33203122456778,"throughput_eps":0,"last_update":"2026-03-20T17:37:54.719618703Z"} +2026/03/20 17:37:59 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":79.51010901731065,"throughput_eps":0,"last_update":"2026-03-20T17:37:54.789013608Z"} +2026/03/20 17:37:59 ───────────────────────────────────────────────── +2026/03/20 17:38:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1192,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:59.585364868Z"} +2026/03/20 17:38:04 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":17.480072179654222,"throughput_eps":0,"last_update":"2026-03-20T17:37:59.719820948Z"} +2026/03/20 17:38:04 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":79.51010901731065,"throughput_eps":0,"last_update":"2026-03-20T17:37:59.719854784Z"} +2026/03/20 17:38:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:37:59.575905073Z"} +2026/03/20 17:38:04 [metric_collector] {"stage_name":"metric_collector","events_processed":2974,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":594.8,"last_update":"2026-03-20T17:37:59.576148108Z"} +2026/03/20 17:38:04 ───────────────────────────────────────────────── +2026/03/20 17:38:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:04.585102225Z"} +2026/03/20 17:38:09 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":17.480072179654222,"throughput_eps":0,"last_update":"2026-03-20T17:38:04.719485019Z"} +2026/03/20 17:38:09 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":79.51010901731065,"throughput_eps":0,"last_update":"2026-03-20T17:38:04.719518403Z"} +2026/03/20 17:38:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:04.575927205Z"} +2026/03/20 17:38:09 [metric_collector] {"stage_name":"metric_collector","events_processed":2979,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":595.8,"last_update":"2026-03-20T17:38:04.576235264Z"} +2026/03/20 17:38:09 ───────────────────────────────────────────────── +2026/03/20 17:38:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:14 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":17.480072179654222,"throughput_eps":0,"last_update":"2026-03-20T17:38:09.719243124Z"} +2026/03/20 17:38:14 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":79.51010901731065,"throughput_eps":0,"last_update":"2026-03-20T17:38:09.71940327Z"} +2026/03/20 17:38:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:09.575874097Z"} +2026/03/20 17:38:14 [metric_collector] {"stage_name":"metric_collector","events_processed":2984,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":596.8,"last_update":"2026-03-20T17:38:09.576170554Z"} +2026/03/20 17:38:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1196,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:09.585005632Z"} +2026/03/20 17:38:14 ───────────────────────────────────────────────── +2026/03/20 17:38:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:14.575943922Z"} +2026/03/20 17:38:19 [metric_collector] {"stage_name":"metric_collector","events_processed":2989,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":597.8,"last_update":"2026-03-20T17:38:14.576502922Z"} +2026/03/20 17:38:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1198,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:14.585224614Z"} +2026/03/20 17:38:19 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":17.480072179654222,"throughput_eps":0,"last_update":"2026-03-20T17:38:14.719461146Z"} +2026/03/20 17:38:19 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":79.51010901731065,"throughput_eps":0,"last_update":"2026-03-20T17:38:14.71950485Z"} +2026/03/20 17:38:19 ───────────────────────────────────────────────── +2026/03/20 17:38:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:19.57556586Z"} +2026/03/20 17:38:24 [metric_collector] {"stage_name":"metric_collector","events_processed":2994,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":598.8,"last_update":"2026-03-20T17:38:19.575681631Z"} +2026/03/20 17:38:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1200,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:19.585343293Z"} +2026/03/20 17:38:24 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":17.480072179654222,"throughput_eps":0,"last_update":"2026-03-20T17:38:19.719489206Z"} +2026/03/20 17:38:24 [transform_engine] {"stage_name":"transform_engine","events_processed":99,"events_dropped":0,"avg_latency_ms":79.51010901731065,"throughput_eps":0,"last_update":"2026-03-20T17:38:19.719530154Z"} +2026/03/20 17:38:24 ───────────────────────────────────────────────── +2026/03/20 17:38:24 mad: auto-calibrated on 100 vectors (51 features) +2026/03/20 17:38:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:29 [metric_collector] {"stage_name":"metric_collector","events_processed":2999,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":599.8,"last_update":"2026-03-20T17:38:24.576497585Z"} +2026/03/20 17:38:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1202,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:24.586858585Z"} +2026/03/20 17:38:29 [detection_layer] {"stage_name":"detection_layer","events_processed":99,"events_dropped":0,"avg_latency_ms":17.480072179654222,"throughput_eps":0,"last_update":"2026-03-20T17:38:24.719090459Z"} +2026/03/20 17:38:29 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":86.33552421384853,"throughput_eps":0,"last_update":"2026-03-20T17:38:24.832840158Z"} +2026/03/20 17:38:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:24.575947021Z"} +2026/03/20 17:38:29 ───────────────────────────────────────────────── +2026/03/20 17:38:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:29.575510826Z"} +2026/03/20 17:38:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3004,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":600.8,"last_update":"2026-03-20T17:38:29.576042023Z"} +2026/03/20 17:38:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:29.586397363Z"} +2026/03/20 17:38:34 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":17.69173594372338,"throughput_eps":0,"last_update":"2026-03-20T17:38:29.719832072Z"} +2026/03/20 17:38:34 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":86.33552421384853,"throughput_eps":0,"last_update":"2026-03-20T17:38:29.718693903Z"} +2026/03/20 17:38:34 ───────────────────────────────────────────────── +2026/03/20 17:38:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:34.575508356Z"} +2026/03/20 17:38:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3009,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":601.8,"last_update":"2026-03-20T17:38:34.575712957Z"} +2026/03/20 17:38:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1206,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:34.586712811Z"} +2026/03/20 17:38:39 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":17.69173594372338,"throughput_eps":0,"last_update":"2026-03-20T17:38:34.719116019Z"} +2026/03/20 17:38:39 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":86.33552421384853,"throughput_eps":0,"last_update":"2026-03-20T17:38:34.719088126Z"} +2026/03/20 17:38:39 ───────────────────────────────────────────────── +2026/03/20 17:38:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:44 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":17.69173594372338,"throughput_eps":0,"last_update":"2026-03-20T17:38:39.719714325Z"} +2026/03/20 17:38:44 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":86.33552421384853,"throughput_eps":0,"last_update":"2026-03-20T17:38:39.719602722Z"} +2026/03/20 17:38:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:39.575758452Z"} +2026/03/20 17:38:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3014,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":602.8,"last_update":"2026-03-20T17:38:39.576191691Z"} +2026/03/20 17:38:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1208,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:39.585382743Z"} +2026/03/20 17:38:44 ───────────────────────────────────────────────── +2026/03/20 17:38:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:44.575683671Z"} +2026/03/20 17:38:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3019,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":603.8,"last_update":"2026-03-20T17:38:44.576034622Z"} +2026/03/20 17:38:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1210,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:44.586551812Z"} +2026/03/20 17:38:49 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":17.69173594372338,"throughput_eps":0,"last_update":"2026-03-20T17:38:44.718821062Z"} +2026/03/20 17:38:49 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":86.33552421384853,"throughput_eps":0,"last_update":"2026-03-20T17:38:44.718734566Z"} +2026/03/20 17:38:49 ───────────────────────────────────────────────── +2026/03/20 17:38:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:49.575606146Z"} +2026/03/20 17:38:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3024,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":604.8,"last_update":"2026-03-20T17:38:49.575758077Z"} +2026/03/20 17:38:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1212,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:49.585073858Z"} +2026/03/20 17:38:54 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":17.69173594372338,"throughput_eps":0,"last_update":"2026-03-20T17:38:49.719389537Z"} +2026/03/20 17:38:54 [transform_engine] {"stage_name":"transform_engine","events_processed":100,"events_dropped":0,"avg_latency_ms":86.33552421384853,"throughput_eps":0,"last_update":"2026-03-20T17:38:49.719389147Z"} +2026/03/20 17:38:54 ───────────────────────────────────────────────── +2026/03/20 17:38:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:38:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:54.576493789Z"} +2026/03/20 17:38:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3029,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":605.8,"last_update":"2026-03-20T17:38:54.57537152Z"} +2026/03/20 17:38:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:54.58516692Z"} +2026/03/20 17:38:59 [detection_layer] {"stage_name":"detection_layer","events_processed":100,"events_dropped":0,"avg_latency_ms":17.69173594372338,"throughput_eps":0,"last_update":"2026-03-20T17:38:54.720496494Z"} +2026/03/20 17:38:59 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":91.58801217107883,"throughput_eps":0,"last_update":"2026-03-20T17:38:54.831972409Z"} +2026/03/20 17:38:59 ───────────────────────────────────────────────── +2026/03/20 17:39:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:04 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":91.58801217107883,"throughput_eps":0,"last_update":"2026-03-20T17:38:59.718768573Z"} +2026/03/20 17:39:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:59.575523245Z"} +2026/03/20 17:39:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3034,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":606.8,"last_update":"2026-03-20T17:38:59.575761811Z"} +2026/03/20 17:39:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1216,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:38:59.586602011Z"} +2026/03/20 17:39:04 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":17.709567354978706,"throughput_eps":0,"last_update":"2026-03-20T17:38:59.718808069Z"} +2026/03/20 17:39:04 ───────────────────────────────────────────────── +2026/03/20 17:39:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:04.575913133Z"} +2026/03/20 17:39:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3039,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":607.8,"last_update":"2026-03-20T17:39:04.576216574Z"} +2026/03/20 17:39:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1218,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:04.58593717Z"} +2026/03/20 17:39:09 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":17.709567354978706,"throughput_eps":0,"last_update":"2026-03-20T17:39:04.719263757Z"} +2026/03/20 17:39:09 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":91.58801217107883,"throughput_eps":0,"last_update":"2026-03-20T17:39:04.719279237Z"} +2026/03/20 17:39:09 ───────────────────────────────────────────────── +2026/03/20 17:39:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:09.575815555Z"} +2026/03/20 17:39:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3044,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":608.8,"last_update":"2026-03-20T17:39:09.576186465Z"} +2026/03/20 17:39:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1220,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:09.584581544Z"} +2026/03/20 17:39:14 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":17.709567354978706,"throughput_eps":0,"last_update":"2026-03-20T17:39:09.718806073Z"} +2026/03/20 17:39:14 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":91.58801217107883,"throughput_eps":0,"last_update":"2026-03-20T17:39:09.71874165Z"} +2026/03/20 17:39:14 ───────────────────────────────────────────────── +2026/03/20 17:39:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:14.575834336Z"} +2026/03/20 17:39:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3049,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":609.8,"last_update":"2026-03-20T17:39:14.576147135Z"} +2026/03/20 17:39:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1222,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:14.585835159Z"} +2026/03/20 17:39:19 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":17.709567354978706,"throughput_eps":0,"last_update":"2026-03-20T17:39:14.719224393Z"} +2026/03/20 17:39:19 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":91.58801217107883,"throughput_eps":0,"last_update":"2026-03-20T17:39:14.719236446Z"} +2026/03/20 17:39:19 ───────────────────────────────────────────────── +2026/03/20 17:39:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:19.586266163Z"} +2026/03/20 17:39:24 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":17.709567354978706,"throughput_eps":0,"last_update":"2026-03-20T17:39:19.719583361Z"} +2026/03/20 17:39:24 [transform_engine] {"stage_name":"transform_engine","events_processed":101,"events_dropped":0,"avg_latency_ms":91.58801217107883,"throughput_eps":0,"last_update":"2026-03-20T17:39:19.719594984Z"} +2026/03/20 17:39:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:19.57566498Z"} +2026/03/20 17:39:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3054,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":610.8,"last_update":"2026-03-20T17:39:19.576039497Z"} +2026/03/20 17:39:24 ───────────────────────────────────────────────── +2026/03/20 17:39:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:24.57601994Z"} +2026/03/20 17:39:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3059,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":611.8,"last_update":"2026-03-20T17:39:24.576262325Z"} +2026/03/20 17:39:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1226,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:24.58554863Z"} +2026/03/20 17:39:29 [detection_layer] {"stage_name":"detection_layer","events_processed":101,"events_dropped":0,"avg_latency_ms":17.709567354978706,"throughput_eps":0,"last_update":"2026-03-20T17:39:24.718968519Z"} +2026/03/20 17:39:29 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":95.53450053686308,"throughput_eps":0,"last_update":"2026-03-20T17:39:24.830018705Z"} +2026/03/20 17:39:29 ───────────────────────────────────────────────── +2026/03/20 17:39:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:29.575564692Z"} +2026/03/20 17:39:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3064,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":612.8,"last_update":"2026-03-20T17:39:29.57567382Z"} +2026/03/20 17:39:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1228,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:29.585949161Z"} +2026/03/20 17:39:34 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":17.847818683982965,"throughput_eps":0,"last_update":"2026-03-20T17:39:29.719387648Z"} +2026/03/20 17:39:34 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":95.53450053686308,"throughput_eps":0,"last_update":"2026-03-20T17:39:29.719416634Z"} +2026/03/20 17:39:34 ───────────────────────────────────────────────── +2026/03/20 17:39:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3069,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":613.8,"last_update":"2026-03-20T17:39:34.575745944Z"} +2026/03/20 17:39:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1230,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:34.586117558Z"} +2026/03/20 17:39:39 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":17.847818683982965,"throughput_eps":0,"last_update":"2026-03-20T17:39:34.719549426Z"} +2026/03/20 17:39:39 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":95.53450053686308,"throughput_eps":0,"last_update":"2026-03-20T17:39:34.719499601Z"} +2026/03/20 17:39:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:34.575553605Z"} +2026/03/20 17:39:39 ───────────────────────────────────────────────── +2026/03/20 17:39:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:44 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":17.847818683982965,"throughput_eps":0,"last_update":"2026-03-20T17:39:39.719066188Z"} +2026/03/20 17:39:44 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":95.53450053686308,"throughput_eps":0,"last_update":"2026-03-20T17:39:39.719108038Z"} +2026/03/20 17:39:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:39.576012037Z"} +2026/03/20 17:39:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3074,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":614.8,"last_update":"2026-03-20T17:39:39.576342168Z"} +2026/03/20 17:39:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1232,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:39.58480586Z"} +2026/03/20 17:39:44 ───────────────────────────────────────────────── +2026/03/20 17:39:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3079,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":615.8,"last_update":"2026-03-20T17:39:44.575828288Z"} +2026/03/20 17:39:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:44.585213213Z"} +2026/03/20 17:39:49 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":17.847818683982965,"throughput_eps":0,"last_update":"2026-03-20T17:39:44.71952355Z"} +2026/03/20 17:39:49 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":95.53450053686308,"throughput_eps":0,"last_update":"2026-03-20T17:39:44.719540632Z"} +2026/03/20 17:39:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:44.575503616Z"} +2026/03/20 17:39:49 ───────────────────────────────────────────────── +2026/03/20 17:39:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:54 [transform_engine] {"stage_name":"transform_engine","events_processed":102,"events_dropped":0,"avg_latency_ms":95.53450053686308,"throughput_eps":0,"last_update":"2026-03-20T17:39:49.719322747Z"} +2026/03/20 17:39:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:49.575994995Z"} +2026/03/20 17:39:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3084,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":616.8,"last_update":"2026-03-20T17:39:49.576175822Z"} +2026/03/20 17:39:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1236,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:49.585949502Z"} +2026/03/20 17:39:54 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":17.847818683982965,"throughput_eps":0,"last_update":"2026-03-20T17:39:49.719275777Z"} +2026/03/20 17:39:54 ───────────────────────────────────────────────── +2026/03/20 17:39:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:39:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1238,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:54.586086461Z"} +2026/03/20 17:39:59 [detection_layer] {"stage_name":"detection_layer","events_processed":102,"events_dropped":0,"avg_latency_ms":17.847818683982965,"throughput_eps":0,"last_update":"2026-03-20T17:39:54.719545823Z"} +2026/03/20 17:39:59 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":89.12078422949047,"throughput_eps":0,"last_update":"2026-03-20T17:39:54.782912111Z"} +2026/03/20 17:39:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:54.575519652Z"} +2026/03/20 17:39:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3089,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":617.8,"last_update":"2026-03-20T17:39:54.575824305Z"} +2026/03/20 17:39:59 ───────────────────────────────────────────────── +2026/03/20 17:40:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3094,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":618.8,"last_update":"2026-03-20T17:39:59.576010935Z"} +2026/03/20 17:40:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1240,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:59.586233063Z"} +2026/03/20 17:40:04 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":17.667138547186372,"throughput_eps":0,"last_update":"2026-03-20T17:39:59.719412012Z"} +2026/03/20 17:40:04 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":89.12078422949047,"throughput_eps":0,"last_update":"2026-03-20T17:39:59.71951561Z"} +2026/03/20 17:40:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:39:59.575557837Z"} +2026/03/20 17:40:04 ───────────────────────────────────────────────── +2026/03/20 17:40:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:09 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":17.667138547186372,"throughput_eps":0,"last_update":"2026-03-20T17:40:04.719174024Z"} +2026/03/20 17:40:09 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":89.12078422949047,"throughput_eps":0,"last_update":"2026-03-20T17:40:04.719153765Z"} +2026/03/20 17:40:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:04.575672089Z"} +2026/03/20 17:40:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3099,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":619.8,"last_update":"2026-03-20T17:40:04.57608017Z"} +2026/03/20 17:40:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1242,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:04.594925789Z"} +2026/03/20 17:40:09 ───────────────────────────────────────────────── +2026/03/20 17:40:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:09.57560077Z"} +2026/03/20 17:40:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3104,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":620.8,"last_update":"2026-03-20T17:40:09.576111198Z"} +2026/03/20 17:40:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:09.586264345Z"} +2026/03/20 17:40:14 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":17.667138547186372,"throughput_eps":0,"last_update":"2026-03-20T17:40:09.719498796Z"} +2026/03/20 17:40:14 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":89.12078422949047,"throughput_eps":0,"last_update":"2026-03-20T17:40:09.719613336Z"} +2026/03/20 17:40:14 ───────────────────────────────────────────────── +2026/03/20 17:40:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:14.575836219Z"} +2026/03/20 17:40:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3109,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":621.8,"last_update":"2026-03-20T17:40:14.576608678Z"} +2026/03/20 17:40:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1246,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:14.586176085Z"} +2026/03/20 17:40:19 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":17.667138547186372,"throughput_eps":0,"last_update":"2026-03-20T17:40:14.719527564Z"} +2026/03/20 17:40:19 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":89.12078422949047,"throughput_eps":0,"last_update":"2026-03-20T17:40:14.71947841Z"} +2026/03/20 17:40:19 ───────────────────────────────────────────────── +2026/03/20 17:40:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:24 [transform_engine] {"stage_name":"transform_engine","events_processed":103,"events_dropped":0,"avg_latency_ms":89.12078422949047,"throughput_eps":0,"last_update":"2026-03-20T17:40:19.719393149Z"} +2026/03/20 17:40:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:19.575986518Z"} +2026/03/20 17:40:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3114,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":622.8,"last_update":"2026-03-20T17:40:19.576287174Z"} +2026/03/20 17:40:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1248,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:19.586154014Z"} +2026/03/20 17:40:24 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":17.667138547186372,"throughput_eps":0,"last_update":"2026-03-20T17:40:19.719437995Z"} +2026/03/20 17:40:24 ───────────────────────────────────────────────── +2026/03/20 17:40:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:29 [detection_layer] {"stage_name":"detection_layer","events_processed":103,"events_dropped":0,"avg_latency_ms":17.667138547186372,"throughput_eps":0,"last_update":"2026-03-20T17:40:24.719838314Z"} +2026/03/20 17:40:29 [transform_engine] {"stage_name":"transform_engine","events_processed":104,"events_dropped":0,"avg_latency_ms":93.97818178359239,"throughput_eps":0,"last_update":"2026-03-20T17:40:24.832153444Z"} +2026/03/20 17:40:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:24.575511247Z"} +2026/03/20 17:40:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3119,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":623.8,"last_update":"2026-03-20T17:40:24.575837481Z"} +2026/03/20 17:40:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1250,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:24.586194831Z"} +2026/03/20 17:40:29 ───────────────────────────────────────────────── +2026/03/20 17:40:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:29.575726077Z"} +2026/03/20 17:40:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3124,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":624.8,"last_update":"2026-03-20T17:40:29.576125672Z"} +2026/03/20 17:40:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1252,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:29.586005707Z"} +2026/03/20 17:40:34 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":17.7591440377491,"throughput_eps":0,"last_update":"2026-03-20T17:40:29.719421488Z"} +2026/03/20 17:40:34 [transform_engine] {"stage_name":"transform_engine","events_processed":104,"events_dropped":0,"avg_latency_ms":93.97818178359239,"throughput_eps":0,"last_update":"2026-03-20T17:40:29.719389346Z"} +2026/03/20 17:40:34 ───────────────────────────────────────────────── +2026/03/20 17:40:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3129,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":625.8,"last_update":"2026-03-20T17:40:34.575679031Z"} +2026/03/20 17:40:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:34.586907018Z"} +2026/03/20 17:40:39 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":17.7591440377491,"throughput_eps":0,"last_update":"2026-03-20T17:40:34.719148684Z"} +2026/03/20 17:40:39 [transform_engine] {"stage_name":"transform_engine","events_processed":104,"events_dropped":0,"avg_latency_ms":93.97818178359239,"throughput_eps":0,"last_update":"2026-03-20T17:40:34.719160416Z"} +2026/03/20 17:40:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:34.575522822Z"} +2026/03/20 17:40:39 ───────────────────────────────────────────────── +2026/03/20 17:40:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:39.575511792Z"} +2026/03/20 17:40:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3134,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":626.8,"last_update":"2026-03-20T17:40:39.57558381Z"} +2026/03/20 17:40:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1256,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:39.586226886Z"} +2026/03/20 17:40:44 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":17.7591440377491,"throughput_eps":0,"last_update":"2026-03-20T17:40:39.71953194Z"} +2026/03/20 17:40:44 [transform_engine] {"stage_name":"transform_engine","events_processed":104,"events_dropped":0,"avg_latency_ms":93.97818178359239,"throughput_eps":0,"last_update":"2026-03-20T17:40:39.719486684Z"} +2026/03/20 17:40:44 ───────────────────────────────────────────────── +2026/03/20 17:40:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:44.575942231Z"} +2026/03/20 17:40:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3139,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":627.8,"last_update":"2026-03-20T17:40:44.576294916Z"} +2026/03/20 17:40:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1258,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:44.585435527Z"} +2026/03/20 17:40:49 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":17.7591440377491,"throughput_eps":0,"last_update":"2026-03-20T17:40:44.71973091Z"} +2026/03/20 17:40:49 [transform_engine] {"stage_name":"transform_engine","events_processed":104,"events_dropped":0,"avg_latency_ms":93.97818178359239,"throughput_eps":0,"last_update":"2026-03-20T17:40:44.719848885Z"} +2026/03/20 17:40:49 ───────────────────────────────────────────────── +2026/03/20 17:40:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:54 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":17.7591440377491,"throughput_eps":0,"last_update":"2026-03-20T17:40:49.719370303Z"} +2026/03/20 17:40:54 [transform_engine] {"stage_name":"transform_engine","events_processed":104,"events_dropped":0,"avg_latency_ms":93.97818178359239,"throughput_eps":0,"last_update":"2026-03-20T17:40:49.719381183Z"} +2026/03/20 17:40:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:49.57587878Z"} +2026/03/20 17:40:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3144,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":628.8,"last_update":"2026-03-20T17:40:49.576170128Z"} +2026/03/20 17:40:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1260,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:49.584988181Z"} +2026/03/20 17:40:54 ───────────────────────────────────────────────── +2026/03/20 17:40:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:40:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1262,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:54.586085656Z"} +2026/03/20 17:40:59 [detection_layer] {"stage_name":"detection_layer","events_processed":104,"events_dropped":0,"avg_latency_ms":17.7591440377491,"throughput_eps":0,"last_update":"2026-03-20T17:40:54.719319652Z"} +2026/03/20 17:40:59 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":88.22361042687392,"throughput_eps":0,"last_update":"2026-03-20T17:40:54.784537591Z"} +2026/03/20 17:40:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:54.575959819Z"} +2026/03/20 17:40:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3149,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":629.8,"last_update":"2026-03-20T17:40:54.576276004Z"} +2026/03/20 17:40:59 ───────────────────────────────────────────────── +2026/03/20 17:41:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:59.585317592Z"} +2026/03/20 17:41:04 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":17.49918003019928,"throughput_eps":0,"last_update":"2026-03-20T17:40:59.719545894Z"} +2026/03/20 17:41:04 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":88.22361042687392,"throughput_eps":0,"last_update":"2026-03-20T17:40:59.719586582Z"} +2026/03/20 17:41:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:40:59.575813705Z"} +2026/03/20 17:41:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3154,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":630.8,"last_update":"2026-03-20T17:40:59.576183763Z"} +2026/03/20 17:41:04 ───────────────────────────────────────────────── +2026/03/20 17:41:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:04.576306004Z"} +2026/03/20 17:41:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3159,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":631.8,"last_update":"2026-03-20T17:41:04.576187136Z"} +2026/03/20 17:41:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1266,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:04.584783576Z"} +2026/03/20 17:41:09 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":17.49918003019928,"throughput_eps":0,"last_update":"2026-03-20T17:41:04.719160245Z"} +2026/03/20 17:41:09 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":88.22361042687392,"throughput_eps":0,"last_update":"2026-03-20T17:41:04.719215731Z"} +2026/03/20 17:41:09 ───────────────────────────────────────────────── +2026/03/20 17:41:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:14 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":88.22361042687392,"throughput_eps":0,"last_update":"2026-03-20T17:41:09.719588455Z"} +2026/03/20 17:41:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:09.575498555Z"} +2026/03/20 17:41:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3164,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":632.8,"last_update":"2026-03-20T17:41:09.576032026Z"} +2026/03/20 17:41:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1268,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:09.586188223Z"} +2026/03/20 17:41:14 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":17.49918003019928,"throughput_eps":0,"last_update":"2026-03-20T17:41:09.719731048Z"} +2026/03/20 17:41:14 ───────────────────────────────────────────────── +2026/03/20 17:41:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:14.57566398Z"} +2026/03/20 17:41:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3169,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":633.8,"last_update":"2026-03-20T17:41:14.576085808Z"} +2026/03/20 17:41:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1270,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:14.585666683Z"} +2026/03/20 17:41:19 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":17.49918003019928,"throughput_eps":0,"last_update":"2026-03-20T17:41:14.719006162Z"} +2026/03/20 17:41:19 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":88.22361042687392,"throughput_eps":0,"last_update":"2026-03-20T17:41:14.719060075Z"} +2026/03/20 17:41:19 ───────────────────────────────────────────────── +2026/03/20 17:41:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:19.575794585Z"} +2026/03/20 17:41:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3174,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":634.8,"last_update":"2026-03-20T17:41:19.576149926Z"} +2026/03/20 17:41:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1272,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:19.584465077Z"} +2026/03/20 17:41:24 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":17.49918003019928,"throughput_eps":0,"last_update":"2026-03-20T17:41:19.718923962Z"} +2026/03/20 17:41:24 [transform_engine] {"stage_name":"transform_engine","events_processed":105,"events_dropped":0,"avg_latency_ms":88.22361042687392,"throughput_eps":0,"last_update":"2026-03-20T17:41:19.71865156Z"} +2026/03/20 17:41:24 ───────────────────────────────────────────────── +2026/03/20 17:41:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:24.575703264Z"} +2026/03/20 17:41:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3179,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":635.8,"last_update":"2026-03-20T17:41:24.576094733Z"} +2026/03/20 17:41:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:24.587051563Z"} +2026/03/20 17:41:29 [detection_layer] {"stage_name":"detection_layer","events_processed":105,"events_dropped":0,"avg_latency_ms":17.49918003019928,"throughput_eps":0,"last_update":"2026-03-20T17:41:24.719443854Z"} +2026/03/20 17:41:29 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":93.35834174149915,"throughput_eps":0,"last_update":"2026-03-20T17:41:24.833309489Z"} +2026/03/20 17:41:29 ───────────────────────────────────────────────── +2026/03/20 17:41:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:29.575921282Z"} +2026/03/20 17:41:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3184,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":636.8,"last_update":"2026-03-20T17:41:29.576288444Z"} +2026/03/20 17:41:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1276,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:29.585732999Z"} +2026/03/20 17:41:34 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":17.439795824159425,"throughput_eps":0,"last_update":"2026-03-20T17:41:29.719188016Z"} +2026/03/20 17:41:34 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":93.35834174149915,"throughput_eps":0,"last_update":"2026-03-20T17:41:29.719220047Z"} +2026/03/20 17:41:34 ───────────────────────────────────────────────── +2026/03/20 17:41:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:39 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":93.35834174149915,"throughput_eps":0,"last_update":"2026-03-20T17:41:34.718776275Z"} +2026/03/20 17:41:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:34.575735149Z"} +2026/03/20 17:41:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3189,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":637.8,"last_update":"2026-03-20T17:41:34.576015586Z"} +2026/03/20 17:41:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1278,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:34.586541071Z"} +2026/03/20 17:41:39 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":17.439795824159425,"throughput_eps":0,"last_update":"2026-03-20T17:41:34.718795051Z"} +2026/03/20 17:41:39 ───────────────────────────────────────────────── +2026/03/20 17:41:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3194,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":638.8,"last_update":"2026-03-20T17:41:39.575425095Z"} +2026/03/20 17:41:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1280,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:39.585191817Z"} +2026/03/20 17:41:44 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":17.439795824159425,"throughput_eps":0,"last_update":"2026-03-20T17:41:39.719481258Z"} +2026/03/20 17:41:44 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":93.35834174149915,"throughput_eps":0,"last_update":"2026-03-20T17:41:39.719580858Z"} +2026/03/20 17:41:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:39.576486007Z"} +2026/03/20 17:41:44 ───────────────────────────────────────────────── +2026/03/20 17:41:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:44.575766842Z"} +2026/03/20 17:41:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3199,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":639.8,"last_update":"2026-03-20T17:41:44.57617322Z"} +2026/03/20 17:41:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1282,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:44.587059956Z"} +2026/03/20 17:41:49 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":17.439795824159425,"throughput_eps":0,"last_update":"2026-03-20T17:41:44.719438761Z"} +2026/03/20 17:41:49 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":93.35834174149915,"throughput_eps":0,"last_update":"2026-03-20T17:41:44.719540676Z"} +2026/03/20 17:41:49 ───────────────────────────────────────────────── +2026/03/20 17:41:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:49.575749313Z"} +2026/03/20 17:41:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3204,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":640.8,"last_update":"2026-03-20T17:41:49.576030892Z"} +2026/03/20 17:41:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:49.587399652Z"} +2026/03/20 17:41:54 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":17.439795824159425,"throughput_eps":0,"last_update":"2026-03-20T17:41:49.719780131Z"} +2026/03/20 17:41:54 [transform_engine] {"stage_name":"transform_engine","events_processed":106,"events_dropped":0,"avg_latency_ms":93.35834174149915,"throughput_eps":0,"last_update":"2026-03-20T17:41:49.719709516Z"} +2026/03/20 17:41:54 ───────────────────────────────────────────────── +2026/03/20 17:41:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:41:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1286,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:54.586621089Z"} +2026/03/20 17:41:59 [detection_layer] {"stage_name":"detection_layer","events_processed":106,"events_dropped":0,"avg_latency_ms":17.439795824159425,"throughput_eps":0,"last_update":"2026-03-20T17:41:54.719451553Z"} +2026/03/20 17:41:59 [transform_engine] {"stage_name":"transform_engine","events_processed":107,"events_dropped":0,"avg_latency_ms":87.75788319319932,"throughput_eps":0,"last_update":"2026-03-20T17:41:54.784146627Z"} +2026/03/20 17:41:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:54.576429644Z"} +2026/03/20 17:41:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3209,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":641.8,"last_update":"2026-03-20T17:41:54.575407857Z"} +2026/03/20 17:41:59 ───────────────────────────────────────────────── +2026/03/20 17:42:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:04 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":17.33786845932754,"throughput_eps":0,"last_update":"2026-03-20T17:41:59.71926674Z"} +2026/03/20 17:42:04 [transform_engine] {"stage_name":"transform_engine","events_processed":107,"events_dropped":0,"avg_latency_ms":87.75788319319932,"throughput_eps":0,"last_update":"2026-03-20T17:41:59.719238937Z"} +2026/03/20 17:42:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:59.576664733Z"} +2026/03/20 17:42:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3214,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":642.8,"last_update":"2026-03-20T17:41:59.575467048Z"} +2026/03/20 17:42:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1288,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:41:59.585852415Z"} +2026/03/20 17:42:04 ───────────────────────────────────────────────── +2026/03/20 17:42:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1290,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:04.585594802Z"} +2026/03/20 17:42:09 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":17.33786845932754,"throughput_eps":0,"last_update":"2026-03-20T17:42:04.718792834Z"} +2026/03/20 17:42:09 [transform_engine] {"stage_name":"transform_engine","events_processed":107,"events_dropped":0,"avg_latency_ms":87.75788319319932,"throughput_eps":0,"last_update":"2026-03-20T17:42:04.718753659Z"} +2026/03/20 17:42:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:04.575538876Z"} +2026/03/20 17:42:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3219,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":643.8,"last_update":"2026-03-20T17:42:04.575550618Z"} +2026/03/20 17:42:09 ───────────────────────────────────────────────── +2026/03/20 17:42:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:14 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":17.33786845932754,"throughput_eps":0,"last_update":"2026-03-20T17:42:09.719381462Z"} +2026/03/20 17:42:14 [transform_engine] {"stage_name":"transform_engine","events_processed":107,"events_dropped":0,"avg_latency_ms":87.75788319319932,"throughput_eps":0,"last_update":"2026-03-20T17:42:09.719400277Z"} +2026/03/20 17:42:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:09.575933678Z"} +2026/03/20 17:42:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3224,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":644.8,"last_update":"2026-03-20T17:42:09.576323676Z"} +2026/03/20 17:42:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1292,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:09.585018435Z"} +2026/03/20 17:42:14 ───────────────────────────────────────────────── +2026/03/20 17:42:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:14.575759912Z"} +2026/03/20 17:42:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3229,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":645.8,"last_update":"2026-03-20T17:42:14.576205305Z"} +2026/03/20 17:42:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:14.58542994Z"} +2026/03/20 17:42:19 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":17.33786845932754,"throughput_eps":0,"last_update":"2026-03-20T17:42:14.718881613Z"} +2026/03/20 17:42:19 [transform_engine] {"stage_name":"transform_engine","events_processed":107,"events_dropped":0,"avg_latency_ms":87.75788319319932,"throughput_eps":0,"last_update":"2026-03-20T17:42:14.718770781Z"} +2026/03/20 17:42:19 ───────────────────────────────────────────────── +2026/03/20 17:42:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:19.575487883Z"} +2026/03/20 17:42:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3234,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":646.8,"last_update":"2026-03-20T17:42:19.575841591Z"} +2026/03/20 17:42:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1296,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:19.586043939Z"} +2026/03/20 17:42:24 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":17.33786845932754,"throughput_eps":0,"last_update":"2026-03-20T17:42:19.719276264Z"} +2026/03/20 17:42:24 [transform_engine] {"stage_name":"transform_engine","events_processed":107,"events_dropped":0,"avg_latency_ms":87.75788319319932,"throughput_eps":0,"last_update":"2026-03-20T17:42:19.719307885Z"} +2026/03/20 17:42:24 ───────────────────────────────────────────────── +2026/03/20 17:42:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3239,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":647.8,"last_update":"2026-03-20T17:42:24.575712374Z"} +2026/03/20 17:42:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1298,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:24.586163508Z"} +2026/03/20 17:42:29 [detection_layer] {"stage_name":"detection_layer","events_processed":107,"events_dropped":0,"avg_latency_ms":17.33786845932754,"throughput_eps":0,"last_update":"2026-03-20T17:42:24.719410033Z"} +2026/03/20 17:42:29 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":93.36222375455947,"throughput_eps":0,"last_update":"2026-03-20T17:42:24.835215819Z"} +2026/03/20 17:42:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:24.575497482Z"} +2026/03/20 17:42:29 ───────────────────────────────────────────────── +2026/03/20 17:42:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:34 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":17.142302567462036,"throughput_eps":0,"last_update":"2026-03-20T17:42:29.719429559Z"} +2026/03/20 17:42:34 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":93.36222375455947,"throughput_eps":0,"last_update":"2026-03-20T17:42:29.719396074Z"} +2026/03/20 17:42:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:29.57552947Z"} +2026/03/20 17:42:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3244,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":648.8,"last_update":"2026-03-20T17:42:29.576001824Z"} +2026/03/20 17:42:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1300,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:29.586013527Z"} +2026/03/20 17:42:34 ───────────────────────────────────────────────── +2026/03/20 17:42:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:34.575532246Z"} +2026/03/20 17:42:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3249,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":649.8,"last_update":"2026-03-20T17:42:34.575756365Z"} +2026/03/20 17:42:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1302,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:34.587079178Z"} +2026/03/20 17:42:39 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":17.142302567462036,"throughput_eps":0,"last_update":"2026-03-20T17:42:34.71946543Z"} +2026/03/20 17:42:39 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":93.36222375455947,"throughput_eps":0,"last_update":"2026-03-20T17:42:34.719499846Z"} +2026/03/20 17:42:39 ───────────────────────────────────────────────── +2026/03/20 17:42:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:39.575508445Z"} +2026/03/20 17:42:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3254,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":650.8,"last_update":"2026-03-20T17:42:39.575648394Z"} +2026/03/20 17:42:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1304,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:39.586238714Z"} +2026/03/20 17:42:44 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":17.142302567462036,"throughput_eps":0,"last_update":"2026-03-20T17:42:39.719586962Z"} +2026/03/20 17:42:44 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":93.36222375455947,"throughput_eps":0,"last_update":"2026-03-20T17:42:39.719487351Z"} +2026/03/20 17:42:44 ───────────────────────────────────────────────── +2026/03/20 17:42:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1306,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:44.584844945Z"} +2026/03/20 17:42:49 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":17.142302567462036,"throughput_eps":0,"last_update":"2026-03-20T17:42:44.719304461Z"} +2026/03/20 17:42:49 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":93.36222375455947,"throughput_eps":0,"last_update":"2026-03-20T17:42:44.719193208Z"} +2026/03/20 17:42:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:44.575533092Z"} +2026/03/20 17:42:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3259,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":651.8,"last_update":"2026-03-20T17:42:44.575945642Z"} +2026/03/20 17:42:49 ───────────────────────────────────────────────── +2026/03/20 17:42:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:49.575504508Z"} +2026/03/20 17:42:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3264,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":652.8,"last_update":"2026-03-20T17:42:49.575721364Z"} +2026/03/20 17:42:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1308,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:49.586634364Z"} +2026/03/20 17:42:54 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":17.142302567462036,"throughput_eps":0,"last_update":"2026-03-20T17:42:49.719086598Z"} +2026/03/20 17:42:54 [transform_engine] {"stage_name":"transform_engine","events_processed":108,"events_dropped":0,"avg_latency_ms":93.36222375455947,"throughput_eps":0,"last_update":"2026-03-20T17:42:49.71920789Z"} +2026/03/20 17:42:54 ───────────────────────────────────────────────── +2026/03/20 17:42:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:42:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:54.575901552Z"} +2026/03/20 17:42:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3269,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":653.8,"last_update":"2026-03-20T17:42:54.576259357Z"} +2026/03/20 17:42:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1310,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:54.586329192Z"} +2026/03/20 17:42:59 [detection_layer] {"stage_name":"detection_layer","events_processed":108,"events_dropped":0,"avg_latency_ms":17.142302567462036,"throughput_eps":0,"last_update":"2026-03-20T17:42:54.719830758Z"} +2026/03/20 17:42:59 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":87.55988020364757,"throughput_eps":0,"last_update":"2026-03-20T17:42:54.784205742Z"} +2026/03/20 17:42:59 ───────────────────────────────────────────────── +2026/03/20 17:43:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1312,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:59.584846786Z"} +2026/03/20 17:43:04 [detection_layer] {"stage_name":"detection_layer","events_processed":109,"events_dropped":0,"avg_latency_ms":17.29237505396963,"throughput_eps":0,"last_update":"2026-03-20T17:42:59.719132737Z"} +2026/03/20 17:43:04 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":87.55988020364757,"throughput_eps":0,"last_update":"2026-03-20T17:42:59.719138057Z"} +2026/03/20 17:43:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:42:59.575766637Z"} +2026/03/20 17:43:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3274,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":654.8,"last_update":"2026-03-20T17:42:59.576092711Z"} +2026/03/20 17:43:04 ───────────────────────────────────────────────── +2026/03/20 17:43:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:04.575550325Z"} +2026/03/20 17:43:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3279,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":655.8,"last_update":"2026-03-20T17:43:04.575496352Z"} +2026/03/20 17:43:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:04.585974319Z"} +2026/03/20 17:43:09 [detection_layer] {"stage_name":"detection_layer","events_processed":109,"events_dropped":0,"avg_latency_ms":17.29237505396963,"throughput_eps":0,"last_update":"2026-03-20T17:43:04.719333307Z"} +2026/03/20 17:43:09 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":87.55988020364757,"throughput_eps":0,"last_update":"2026-03-20T17:43:04.719345471Z"} +2026/03/20 17:43:09 ───────────────────────────────────────────────── +2026/03/20 17:43:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:09.575518198Z"} +2026/03/20 17:43:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3284,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":656.8,"last_update":"2026-03-20T17:43:09.575774769Z"} +2026/03/20 17:43:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1316,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:09.584995057Z"} +2026/03/20 17:43:14 [detection_layer] {"stage_name":"detection_layer","events_processed":109,"events_dropped":0,"avg_latency_ms":17.29237505396963,"throughput_eps":0,"last_update":"2026-03-20T17:43:09.719401825Z"} +2026/03/20 17:43:14 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":87.55988020364757,"throughput_eps":0,"last_update":"2026-03-20T17:43:09.719414188Z"} +2026/03/20 17:43:14 ───────────────────────────────────────────────── +2026/03/20 17:43:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1318,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:14.585196333Z"} +2026/03/20 17:43:19 [detection_layer] {"stage_name":"detection_layer","events_processed":109,"events_dropped":0,"avg_latency_ms":17.29237505396963,"throughput_eps":0,"last_update":"2026-03-20T17:43:14.719403129Z"} +2026/03/20 17:43:19 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":87.55988020364757,"throughput_eps":0,"last_update":"2026-03-20T17:43:14.719411094Z"} +2026/03/20 17:43:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:14.575771293Z"} +2026/03/20 17:43:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3289,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":657.8,"last_update":"2026-03-20T17:43:14.576048824Z"} +2026/03/20 17:43:19 ───────────────────────────────────────────────── +2026/03/20 17:43:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:24 [detection_layer] {"stage_name":"detection_layer","events_processed":109,"events_dropped":0,"avg_latency_ms":17.29237505396963,"throughput_eps":0,"last_update":"2026-03-20T17:43:19.719470359Z"} +2026/03/20 17:43:24 [transform_engine] {"stage_name":"transform_engine","events_processed":109,"events_dropped":0,"avg_latency_ms":87.55988020364757,"throughput_eps":0,"last_update":"2026-03-20T17:43:19.719478133Z"} +2026/03/20 17:43:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:19.576015759Z"} +2026/03/20 17:43:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3294,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":658.8,"last_update":"2026-03-20T17:43:19.576195563Z"} +2026/03/20 17:43:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1320,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:19.585198606Z"} +2026/03/20 17:43:24 ───────────────────────────────────────────────── +2026/03/20 17:43:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:24.57562172Z"} +2026/03/20 17:43:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3299,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":659.8,"last_update":"2026-03-20T17:43:24.575606752Z"} +2026/03/20 17:43:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1322,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:24.586798405Z"} +2026/03/20 17:43:29 [detection_layer] {"stage_name":"detection_layer","events_processed":109,"events_dropped":0,"avg_latency_ms":17.29237505396963,"throughput_eps":0,"last_update":"2026-03-20T17:43:24.719191973Z"} +2026/03/20 17:43:29 [transform_engine] {"stage_name":"transform_engine","events_processed":110,"events_dropped":0,"avg_latency_ms":82.72056856291806,"throughput_eps":0,"last_update":"2026-03-20T17:43:24.782571446Z"} +2026/03/20 17:43:29 ───────────────────────────────────────────────── +2026/03/20 17:43:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3303,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":660.6,"last_update":"2026-03-20T17:43:29.575878664Z"} +2026/03/20 17:43:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:29.585613618Z"} +2026/03/20 17:43:34 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":16.313763243175703,"throughput_eps":0,"last_update":"2026-03-20T17:43:29.718822109Z"} +2026/03/20 17:43:34 [transform_engine] {"stage_name":"transform_engine","events_processed":110,"events_dropped":0,"avg_latency_ms":82.72056856291806,"throughput_eps":0,"last_update":"2026-03-20T17:43:29.718771321Z"} +2026/03/20 17:43:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:29.576060101Z"} +2026/03/20 17:43:34 ───────────────────────────────────────────────── +2026/03/20 17:43:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:39 [transform_engine] {"stage_name":"transform_engine","events_processed":110,"events_dropped":0,"avg_latency_ms":82.72056856291806,"throughput_eps":0,"last_update":"2026-03-20T17:43:34.71934049Z"} +2026/03/20 17:43:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:34.575517969Z"} +2026/03/20 17:43:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3309,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":661.8,"last_update":"2026-03-20T17:43:34.57554432Z"} +2026/03/20 17:43:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1326,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:34.586066803Z"} +2026/03/20 17:43:39 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":16.313763243175703,"throughput_eps":0,"last_update":"2026-03-20T17:43:34.71931455Z"} +2026/03/20 17:43:39 ───────────────────────────────────────────────── +2026/03/20 17:43:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:39.575891089Z"} +2026/03/20 17:43:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3314,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":662.8,"last_update":"2026-03-20T17:43:39.576076624Z"} +2026/03/20 17:43:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1328,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:39.58827155Z"} +2026/03/20 17:43:44 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":16.313763243175703,"throughput_eps":0,"last_update":"2026-03-20T17:43:39.719554987Z"} +2026/03/20 17:43:44 [transform_engine] {"stage_name":"transform_engine","events_processed":110,"events_dropped":0,"avg_latency_ms":82.72056856291806,"throughput_eps":0,"last_update":"2026-03-20T17:43:39.719599302Z"} +2026/03/20 17:43:44 ───────────────────────────────────────────────── +2026/03/20 17:43:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:49 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":16.313763243175703,"throughput_eps":0,"last_update":"2026-03-20T17:43:44.718896826Z"} +2026/03/20 17:43:49 [transform_engine] {"stage_name":"transform_engine","events_processed":110,"events_dropped":0,"avg_latency_ms":82.72056856291806,"throughput_eps":0,"last_update":"2026-03-20T17:43:44.718917004Z"} +2026/03/20 17:43:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:44.575753412Z"} +2026/03/20 17:43:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3319,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":663.8,"last_update":"2026-03-20T17:43:44.576001497Z"} +2026/03/20 17:43:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1330,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:44.585645488Z"} +2026/03/20 17:43:49 ───────────────────────────────────────────────── +2026/03/20 17:43:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:54 [transform_engine] {"stage_name":"transform_engine","events_processed":110,"events_dropped":0,"avg_latency_ms":82.72056856291806,"throughput_eps":0,"last_update":"2026-03-20T17:43:49.719389532Z"} +2026/03/20 17:43:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:49.575531247Z"} +2026/03/20 17:43:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3324,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":664.8,"last_update":"2026-03-20T17:43:49.575516639Z"} +2026/03/20 17:43:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1332,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:49.585149278Z"} +2026/03/20 17:43:54 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":16.313763243175703,"throughput_eps":0,"last_update":"2026-03-20T17:43:49.719417326Z"} +2026/03/20 17:43:54 ───────────────────────────────────────────────── +2026/03/20 17:43:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:43:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:54.575871462Z"} +2026/03/20 17:43:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3329,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":665.8,"last_update":"2026-03-20T17:43:54.576204369Z"} +2026/03/20 17:43:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:54.58555029Z"} +2026/03/20 17:43:59 [detection_layer] {"stage_name":"detection_layer","events_processed":110,"events_dropped":0,"avg_latency_ms":16.313763243175703,"throughput_eps":0,"last_update":"2026-03-20T17:43:54.718880122Z"} +2026/03/20 17:43:59 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":78.82423065033446,"throughput_eps":0,"last_update":"2026-03-20T17:43:54.781957652Z"} +2026/03/20 17:43:59 ───────────────────────────────────────────────── +2026/03/20 17:44:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:59.576062072Z"} +2026/03/20 17:44:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3334,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":666.8,"last_update":"2026-03-20T17:43:59.576511323Z"} +2026/03/20 17:44:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1336,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:43:59.5866285Z"} +2026/03/20 17:44:04 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":16.815925394540564,"throughput_eps":0,"last_update":"2026-03-20T17:43:59.718972035Z"} +2026/03/20 17:44:04 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":78.82423065033446,"throughput_eps":0,"last_update":"2026-03-20T17:43:59.718927339Z"} +2026/03/20 17:44:04 ───────────────────────────────────────────────── +2026/03/20 17:44:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1338,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:04.586383076Z"} +2026/03/20 17:44:09 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":16.815925394540564,"throughput_eps":0,"last_update":"2026-03-20T17:44:04.719728732Z"} +2026/03/20 17:44:09 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":78.82423065033446,"throughput_eps":0,"last_update":"2026-03-20T17:44:04.719698675Z"} +2026/03/20 17:44:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:04.575765861Z"} +2026/03/20 17:44:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3339,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":667.8,"last_update":"2026-03-20T17:44:04.576076104Z"} +2026/03/20 17:44:09 ───────────────────────────────────────────────── +2026/03/20 17:44:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:09.575609198Z"} +2026/03/20 17:44:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":668.8,"last_update":"2026-03-20T17:44:09.575487394Z"} +2026/03/20 17:44:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1340,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:09.58510208Z"} +2026/03/20 17:44:14 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":16.815925394540564,"throughput_eps":0,"last_update":"2026-03-20T17:44:09.719341099Z"} +2026/03/20 17:44:14 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":78.82423065033446,"throughput_eps":0,"last_update":"2026-03-20T17:44:09.719448715Z"} +2026/03/20 17:44:14 ───────────────────────────────────────────────── +2026/03/20 17:44:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:19 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":78.82423065033446,"throughput_eps":0,"last_update":"2026-03-20T17:44:14.719710695Z"} +2026/03/20 17:44:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:14.575728121Z"} +2026/03/20 17:44:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3349,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":669.8,"last_update":"2026-03-20T17:44:14.576238248Z"} +2026/03/20 17:44:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1342,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:14.585368696Z"} +2026/03/20 17:44:19 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":16.815925394540564,"throughput_eps":0,"last_update":"2026-03-20T17:44:14.719758195Z"} +2026/03/20 17:44:19 ───────────────────────────────────────────────── +2026/03/20 17:44:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:19.575746531Z"} +2026/03/20 17:44:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":670.8,"last_update":"2026-03-20T17:44:19.576120938Z"} +2026/03/20 17:44:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1344,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:19.585526153Z"} +2026/03/20 17:44:24 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":16.815925394540564,"throughput_eps":0,"last_update":"2026-03-20T17:44:19.71882812Z"} +2026/03/20 17:44:24 [transform_engine] {"stage_name":"transform_engine","events_processed":111,"events_dropped":0,"avg_latency_ms":78.82423065033446,"throughput_eps":0,"last_update":"2026-03-20T17:44:19.718780639Z"} +2026/03/20 17:44:24 ───────────────────────────────────────────────── +2026/03/20 17:44:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:24.575557342Z"} +2026/03/20 17:44:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3359,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":671.8,"last_update":"2026-03-20T17:44:24.575967989Z"} +2026/03/20 17:44:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1346,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:24.586031634Z"} +2026/03/20 17:44:29 [detection_layer] {"stage_name":"detection_layer","events_processed":111,"events_dropped":0,"avg_latency_ms":16.815925394540564,"throughput_eps":0,"last_update":"2026-03-20T17:44:24.719447752Z"} +2026/03/20 17:44:29 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":75.80829352026757,"throughput_eps":0,"last_update":"2026-03-20T17:44:24.783234757Z"} +2026/03/20 17:44:29 ───────────────────────────────────────────────── +2026/03/20 17:44:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:29.575509552Z"} +2026/03/20 17:44:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":672.8,"last_update":"2026-03-20T17:44:29.575928986Z"} +2026/03/20 17:44:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1348,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:29.585097437Z"} +2026/03/20 17:44:34 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":16.823191915632453,"throughput_eps":0,"last_update":"2026-03-20T17:44:29.719508213Z"} +2026/03/20 17:44:34 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":75.80829352026757,"throughput_eps":0,"last_update":"2026-03-20T17:44:29.719466453Z"} +2026/03/20 17:44:34 ───────────────────────────────────────────────── +2026/03/20 17:44:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:34.575876516Z"} +2026/03/20 17:44:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3369,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":673.8,"last_update":"2026-03-20T17:44:34.576153396Z"} +2026/03/20 17:44:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1350,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:34.585400958Z"} +2026/03/20 17:44:39 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":16.823191915632453,"throughput_eps":0,"last_update":"2026-03-20T17:44:34.720006609Z"} +2026/03/20 17:44:39 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":75.80829352026757,"throughput_eps":0,"last_update":"2026-03-20T17:44:34.719886198Z"} +2026/03/20 17:44:39 ───────────────────────────────────────────────── +2026/03/20 17:44:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:44 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":75.80829352026757,"throughput_eps":0,"last_update":"2026-03-20T17:44:39.719579448Z"} +2026/03/20 17:44:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:39.575926406Z"} +2026/03/20 17:44:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":674.8,"last_update":"2026-03-20T17:44:39.576425402Z"} +2026/03/20 17:44:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1352,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:39.585299008Z"} +2026/03/20 17:44:44 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":16.823191915632453,"throughput_eps":0,"last_update":"2026-03-20T17:44:39.719681894Z"} +2026/03/20 17:44:44 ───────────────────────────────────────────────── +2026/03/20 17:44:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:49 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":75.80829352026757,"throughput_eps":0,"last_update":"2026-03-20T17:44:44.718928013Z"} +2026/03/20 17:44:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:44.575907841Z"} +2026/03/20 17:44:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3379,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":675.8,"last_update":"2026-03-20T17:44:44.576213316Z"} +2026/03/20 17:44:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1354,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:44.586689843Z"} +2026/03/20 17:44:49 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":16.823191915632453,"throughput_eps":0,"last_update":"2026-03-20T17:44:44.7190255Z"} +2026/03/20 17:44:49 ───────────────────────────────────────────────── +2026/03/20 17:44:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1356,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:49.586159174Z"} +2026/03/20 17:44:54 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":16.823191915632453,"throughput_eps":0,"last_update":"2026-03-20T17:44:49.719424041Z"} +2026/03/20 17:44:54 [transform_engine] {"stage_name":"transform_engine","events_processed":112,"events_dropped":0,"avg_latency_ms":75.80829352026757,"throughput_eps":0,"last_update":"2026-03-20T17:44:49.71946514Z"} +2026/03/20 17:44:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:49.575659322Z"} +2026/03/20 17:44:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":676.8,"last_update":"2026-03-20T17:44:49.576014953Z"} +2026/03/20 17:44:54 ───────────────────────────────────────────────── +2026/03/20 17:44:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:44:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:54.575941523Z"} +2026/03/20 17:44:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3389,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":677.8,"last_update":"2026-03-20T17:44:54.576314197Z"} +2026/03/20 17:44:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1358,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:54.586648121Z"} +2026/03/20 17:44:59 [detection_layer] {"stage_name":"detection_layer","events_processed":112,"events_dropped":0,"avg_latency_ms":16.823191915632453,"throughput_eps":0,"last_update":"2026-03-20T17:44:54.719005873Z"} +2026/03/20 17:44:59 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":73.67076361621406,"throughput_eps":0,"last_update":"2026-03-20T17:44:54.784144862Z"} +2026/03/20 17:44:59 ───────────────────────────────────────────────── +2026/03/20 17:45:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:59.576521701Z"} +2026/03/20 17:45:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":678.8,"last_update":"2026-03-20T17:44:59.575428506Z"} +2026/03/20 17:45:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1360,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:44:59.585734887Z"} +2026/03/20 17:45:04 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.941326732505964,"throughput_eps":0,"last_update":"2026-03-20T17:44:59.718978499Z"} +2026/03/20 17:45:04 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":73.67076361621406,"throughput_eps":0,"last_update":"2026-03-20T17:44:59.719002545Z"} +2026/03/20 17:45:04 ───────────────────────────────────────────────── +2026/03/20 17:45:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:04.575721004Z"} +2026/03/20 17:45:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3399,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":679.8,"last_update":"2026-03-20T17:45:04.576087095Z"} +2026/03/20 17:45:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1362,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:04.587592764Z"} +2026/03/20 17:45:09 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.941326732505964,"throughput_eps":0,"last_update":"2026-03-20T17:45:04.718860762Z"} +2026/03/20 17:45:09 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":73.67076361621406,"throughput_eps":0,"last_update":"2026-03-20T17:45:04.718832487Z"} +2026/03/20 17:45:09 ───────────────────────────────────────────────── +2026/03/20 17:45:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1364,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:09.58553855Z"} +2026/03/20 17:45:14 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.941326732505964,"throughput_eps":0,"last_update":"2026-03-20T17:45:09.719843386Z"} +2026/03/20 17:45:14 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":73.67076361621406,"throughput_eps":0,"last_update":"2026-03-20T17:45:09.718720085Z"} +2026/03/20 17:45:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:09.57577637Z"} +2026/03/20 17:45:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":680.8,"last_update":"2026-03-20T17:45:09.576168741Z"} +2026/03/20 17:45:14 ───────────────────────────────────────────────── +2026/03/20 17:45:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3409,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":681.8,"last_update":"2026-03-20T17:45:14.576158977Z"} +2026/03/20 17:45:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1366,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:14.585871441Z"} +2026/03/20 17:45:19 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.941326732505964,"throughput_eps":0,"last_update":"2026-03-20T17:45:14.719108454Z"} +2026/03/20 17:45:19 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":73.67076361621406,"throughput_eps":0,"last_update":"2026-03-20T17:45:14.719118724Z"} +2026/03/20 17:45:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:14.575713534Z"} +2026/03/20 17:45:19 ───────────────────────────────────────────────── +2026/03/20 17:45:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1368,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:19.586512113Z"} +2026/03/20 17:45:24 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.941326732505964,"throughput_eps":0,"last_update":"2026-03-20T17:45:19.719859388Z"} +2026/03/20 17:45:24 [transform_engine] {"stage_name":"transform_engine","events_processed":113,"events_dropped":0,"avg_latency_ms":73.67076361621406,"throughput_eps":0,"last_update":"2026-03-20T17:45:19.71872196Z"} +2026/03/20 17:45:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:19.575770898Z"} +2026/03/20 17:45:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3413,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":682.6,"last_update":"2026-03-20T17:45:19.575776389Z"} +2026/03/20 17:45:24 ───────────────────────────────────────────────── +2026/03/20 17:45:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:24.575712862Z"} +2026/03/20 17:45:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3419,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":683.8,"last_update":"2026-03-20T17:45:24.576086047Z"} +2026/03/20 17:45:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1370,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:24.586540073Z"} +2026/03/20 17:45:29 [detection_layer] {"stage_name":"detection_layer","events_processed":113,"events_dropped":0,"avg_latency_ms":16.941326732505964,"throughput_eps":0,"last_update":"2026-03-20T17:45:24.718836828Z"} +2026/03/20 17:45:29 [transform_engine] {"stage_name":"transform_engine","events_processed":114,"events_dropped":0,"avg_latency_ms":71.62386329297125,"throughput_eps":0,"last_update":"2026-03-20T17:45:24.782218225Z"} +2026/03/20 17:45:29 ───────────────────────────────────────────────── +2026/03/20 17:45:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:34 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":16.96436758600477,"throughput_eps":0,"last_update":"2026-03-20T17:45:29.719684377Z"} +2026/03/20 17:45:34 [transform_engine] {"stage_name":"transform_engine","events_processed":114,"events_dropped":0,"avg_latency_ms":71.62386329297125,"throughput_eps":0,"last_update":"2026-03-20T17:45:29.719693385Z"} +2026/03/20 17:45:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:29.57557304Z"} +2026/03/20 17:45:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":684.8,"last_update":"2026-03-20T17:45:29.575671008Z"} +2026/03/20 17:45:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1372,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:29.58732974Z"} +2026/03/20 17:45:34 ───────────────────────────────────────────────── +2026/03/20 17:45:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:39 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":16.96436758600477,"throughput_eps":0,"last_update":"2026-03-20T17:45:34.719240553Z"} +2026/03/20 17:45:39 [transform_engine] {"stage_name":"transform_engine","events_processed":114,"events_dropped":0,"avg_latency_ms":71.62386329297125,"throughput_eps":0,"last_update":"2026-03-20T17:45:34.719250663Z"} +2026/03/20 17:45:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:34.575759171Z"} +2026/03/20 17:45:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3429,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":685.8,"last_update":"2026-03-20T17:45:34.576091488Z"} +2026/03/20 17:45:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1374,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:34.585986321Z"} +2026/03/20 17:45:39 ───────────────────────────────────────────────── +2026/03/20 17:45:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":686.8,"last_update":"2026-03-20T17:45:39.576149392Z"} +2026/03/20 17:45:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1376,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:39.586642723Z"} +2026/03/20 17:45:44 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":16.96436758600477,"throughput_eps":0,"last_update":"2026-03-20T17:45:39.719826742Z"} +2026/03/20 17:45:44 [transform_engine] {"stage_name":"transform_engine","events_processed":114,"events_dropped":0,"avg_latency_ms":71.62386329297125,"throughput_eps":0,"last_update":"2026-03-20T17:45:39.718715845Z"} +2026/03/20 17:45:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:39.575778272Z"} +2026/03/20 17:45:44 ───────────────────────────────────────────────── +2026/03/20 17:45:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:44.575793495Z"} +2026/03/20 17:45:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3439,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":687.8,"last_update":"2026-03-20T17:45:44.576190806Z"} +2026/03/20 17:45:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1378,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:44.584061572Z"} +2026/03/20 17:45:49 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":16.96436758600477,"throughput_eps":0,"last_update":"2026-03-20T17:45:44.719397536Z"} +2026/03/20 17:45:49 [transform_engine] {"stage_name":"transform_engine","events_processed":114,"events_dropped":0,"avg_latency_ms":71.62386329297125,"throughput_eps":0,"last_update":"2026-03-20T17:45:44.719412465Z"} +2026/03/20 17:45:49 ───────────────────────────────────────────────── +2026/03/20 17:45:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:49.575555011Z"} +2026/03/20 17:45:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":688.8,"last_update":"2026-03-20T17:45:49.575787877Z"} +2026/03/20 17:45:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1380,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:49.585207461Z"} +2026/03/20 17:45:54 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":16.96436758600477,"throughput_eps":0,"last_update":"2026-03-20T17:45:49.719521408Z"} +2026/03/20 17:45:54 [transform_engine] {"stage_name":"transform_engine","events_processed":114,"events_dropped":0,"avg_latency_ms":71.62386329297125,"throughput_eps":0,"last_update":"2026-03-20T17:45:49.719497993Z"} +2026/03/20 17:45:54 ───────────────────────────────────────────────── +2026/03/20 17:45:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:45:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:54.575747208Z"} +2026/03/20 17:45:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3449,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":689.8,"last_update":"2026-03-20T17:45:54.576287974Z"} +2026/03/20 17:45:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1382,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:54.585566888Z"} +2026/03/20 17:45:59 [detection_layer] {"stage_name":"detection_layer","events_processed":114,"events_dropped":0,"avg_latency_ms":16.96436758600477,"throughput_eps":0,"last_update":"2026-03-20T17:45:54.718954573Z"} +2026/03/20 17:45:59 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":79.56060403437701,"throughput_eps":0,"last_update":"2026-03-20T17:45:54.83015192Z"} +2026/03/20 17:45:59 ───────────────────────────────────────────────── +2026/03/20 17:46:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:04 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":17.230102468803814,"throughput_eps":0,"last_update":"2026-03-20T17:45:59.7195183Z"} +2026/03/20 17:46:04 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":79.56060403437701,"throughput_eps":0,"last_update":"2026-03-20T17:45:59.719545662Z"} +2026/03/20 17:46:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:59.575507374Z"} +2026/03/20 17:46:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3454,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":690.8,"last_update":"2026-03-20T17:45:59.576008885Z"} +2026/03/20 17:46:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1384,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:45:59.587301718Z"} +2026/03/20 17:46:04 ───────────────────────────────────────────────── +2026/03/20 17:46:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:09 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":17.230102468803814,"throughput_eps":0,"last_update":"2026-03-20T17:46:04.719326117Z"} +2026/03/20 17:46:09 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":79.56060403437701,"throughput_eps":0,"last_update":"2026-03-20T17:46:04.719267154Z"} +2026/03/20 17:46:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:04.575709495Z"} +2026/03/20 17:46:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3459,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":691.8,"last_update":"2026-03-20T17:46:04.575591449Z"} +2026/03/20 17:46:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1386,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:04.586860687Z"} +2026/03/20 17:46:09 ───────────────────────────────────────────────── +2026/03/20 17:46:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:09.575574265Z"} +2026/03/20 17:46:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3464,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":692.8,"last_update":"2026-03-20T17:46:09.576051799Z"} +2026/03/20 17:46:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1388,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:09.58581888Z"} +2026/03/20 17:46:14 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":17.230102468803814,"throughput_eps":0,"last_update":"2026-03-20T17:46:09.719179936Z"} +2026/03/20 17:46:14 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":79.56060403437701,"throughput_eps":0,"last_update":"2026-03-20T17:46:09.719208321Z"} +2026/03/20 17:46:14 ───────────────────────────────────────────────── +2026/03/20 17:46:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:19 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":17.230102468803814,"throughput_eps":0,"last_update":"2026-03-20T17:46:14.719533349Z"} +2026/03/20 17:46:19 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":79.56060403437701,"throughput_eps":0,"last_update":"2026-03-20T17:46:14.719587202Z"} +2026/03/20 17:46:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:14.575530725Z"} +2026/03/20 17:46:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3469,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":693.8,"last_update":"2026-03-20T17:46:14.575506338Z"} +2026/03/20 17:46:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1390,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:14.586153805Z"} +2026/03/20 17:46:19 ───────────────────────────────────────────────── +2026/03/20 17:46:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:24 [transform_engine] {"stage_name":"transform_engine","events_processed":115,"events_dropped":0,"avg_latency_ms":79.56060403437701,"throughput_eps":0,"last_update":"2026-03-20T17:46:19.719173119Z"} +2026/03/20 17:46:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:19.576052563Z"} +2026/03/20 17:46:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3474,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":694.8,"last_update":"2026-03-20T17:46:19.576224553Z"} +2026/03/20 17:46:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1392,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:19.58690846Z"} +2026/03/20 17:46:24 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":17.230102468803814,"throughput_eps":0,"last_update":"2026-03-20T17:46:19.719130057Z"} +2026/03/20 17:46:24 ───────────────────────────────────────────────── +2026/03/20 17:46:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:24.575513533Z"} +2026/03/20 17:46:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3479,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":695.8,"last_update":"2026-03-20T17:46:24.575941172Z"} +2026/03/20 17:46:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1394,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:24.586164085Z"} +2026/03/20 17:46:29 [detection_layer] {"stage_name":"detection_layer","events_processed":115,"events_dropped":0,"avg_latency_ms":17.230102468803814,"throughput_eps":0,"last_update":"2026-03-20T17:46:24.719362125Z"} +2026/03/20 17:46:29 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":86.8603606275016,"throughput_eps":0,"last_update":"2026-03-20T17:46:24.835437875Z"} +2026/03/20 17:46:29 ───────────────────────────────────────────────── +2026/03/20 17:46:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1396,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:29.586694327Z"} +2026/03/20 17:46:34 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":17.53027637504305,"throughput_eps":0,"last_update":"2026-03-20T17:46:29.719218748Z"} +2026/03/20 17:46:34 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":86.8603606275016,"throughput_eps":0,"last_update":"2026-03-20T17:46:29.7191885Z"} +2026/03/20 17:46:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:29.575669178Z"} +2026/03/20 17:46:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3484,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":696.8,"last_update":"2026-03-20T17:46:29.575981846Z"} +2026/03/20 17:46:34 ───────────────────────────────────────────────── +2026/03/20 17:46:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:34.575817732Z"} +2026/03/20 17:46:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3489,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":697.8,"last_update":"2026-03-20T17:46:34.576140229Z"} +2026/03/20 17:46:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1398,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:34.585694872Z"} +2026/03/20 17:46:39 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":17.53027637504305,"throughput_eps":0,"last_update":"2026-03-20T17:46:34.718829513Z"} +2026/03/20 17:46:39 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":86.8603606275016,"throughput_eps":0,"last_update":"2026-03-20T17:46:34.718739251Z"} +2026/03/20 17:46:39 ───────────────────────────────────────────────── +2026/03/20 17:46:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:39.575893066Z"} +2026/03/20 17:46:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3493,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":698.6,"last_update":"2026-03-20T17:46:39.575941598Z"} +2026/03/20 17:46:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1400,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:39.585291981Z"} +2026/03/20 17:46:44 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":17.53027637504305,"throughput_eps":0,"last_update":"2026-03-20T17:46:39.71959406Z"} +2026/03/20 17:46:44 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":86.8603606275016,"throughput_eps":0,"last_update":"2026-03-20T17:46:39.71969803Z"} +2026/03/20 17:46:44 ───────────────────────────────────────────────── +2026/03/20 17:46:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:49 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":17.53027637504305,"throughput_eps":0,"last_update":"2026-03-20T17:46:44.719331971Z"} +2026/03/20 17:46:49 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":86.8603606275016,"throughput_eps":0,"last_update":"2026-03-20T17:46:44.719312375Z"} +2026/03/20 17:46:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:44.575537067Z"} +2026/03/20 17:46:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3498,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":699.6,"last_update":"2026-03-20T17:46:44.575034353Z"} +2026/03/20 17:46:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1402,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:44.586054955Z"} +2026/03/20 17:46:49 ───────────────────────────────────────────────── +2026/03/20 17:46:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:54 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":17.53027637504305,"throughput_eps":0,"last_update":"2026-03-20T17:46:49.719375121Z"} +2026/03/20 17:46:54 [transform_engine] {"stage_name":"transform_engine","events_processed":116,"events_dropped":0,"avg_latency_ms":86.8603606275016,"throughput_eps":0,"last_update":"2026-03-20T17:46:49.719329664Z"} +2026/03/20 17:46:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:49.57587587Z"} +2026/03/20 17:46:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3504,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":700.8,"last_update":"2026-03-20T17:46:49.576295533Z"} +2026/03/20 17:46:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1404,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:49.586068225Z"} +2026/03/20 17:46:54 ───────────────────────────────────────────────── +2026/03/20 17:46:54 [ANOMALY] time=2026-03-20T17:46:54Z score=0.8409 method=SEAD details=MAD!:w=0.34,s=1.00 RRCF-fast!:w=0.17,s=0.99 RRCF-mid!:w=0.15,s=0.90 RRCF-slow!:w=0.13,s=0.99 COPOD!:w=0.22,s=0.34 +2026/03/20 17:46:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:46:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:54.575794328Z"} +2026/03/20 17:46:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3508,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":701.6,"last_update":"2026-03-20T17:46:54.57576918Z"} +2026/03/20 17:46:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1406,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:54.585395592Z"} +2026/03/20 17:46:59 [detection_layer] {"stage_name":"detection_layer","events_processed":116,"events_dropped":0,"avg_latency_ms":17.53027637504305,"throughput_eps":0,"last_update":"2026-03-20T17:46:54.719714788Z"} +2026/03/20 17:46:59 [transform_engine] {"stage_name":"transform_engine","events_processed":117,"events_dropped":0,"avg_latency_ms":91.57058970200129,"throughput_eps":0,"last_update":"2026-03-20T17:46:54.830152735Z"} +2026/03/20 17:46:59 ───────────────────────────────────────────────── +2026/03/20 17:47:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:04 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":16.37520470003444,"throughput_eps":0,"last_update":"2026-03-20T17:46:59.719595648Z"} +2026/03/20 17:47:04 [transform_engine] {"stage_name":"transform_engine","events_processed":117,"events_dropped":0,"avg_latency_ms":91.57058970200129,"throughput_eps":0,"last_update":"2026-03-20T17:46:59.719603052Z"} +2026/03/20 17:47:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:59.575567601Z"} +2026/03/20 17:47:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3514,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":702.8,"last_update":"2026-03-20T17:46:59.575656332Z"} +2026/03/20 17:47:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1408,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:46:59.586380155Z"} +2026/03/20 17:47:04 ───────────────────────────────────────────────── +2026/03/20 17:47:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1410,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:04.586007439Z"} +2026/03/20 17:47:09 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":16.37520470003444,"throughput_eps":0,"last_update":"2026-03-20T17:47:04.719248732Z"} +2026/03/20 17:47:09 [transform_engine] {"stage_name":"transform_engine","events_processed":117,"events_dropped":0,"avg_latency_ms":91.57058970200129,"throughput_eps":0,"last_update":"2026-03-20T17:47:04.719254593Z"} +2026/03/20 17:47:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:04.575669024Z"} +2026/03/20 17:47:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3519,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":703.8,"last_update":"2026-03-20T17:47:04.576038913Z"} +2026/03/20 17:47:09 ───────────────────────────────────────────────── +2026/03/20 17:47:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:09.575897748Z"} +2026/03/20 17:47:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3524,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":704.8,"last_update":"2026-03-20T17:47:09.576601617Z"} +2026/03/20 17:47:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1412,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:09.585684597Z"} +2026/03/20 17:47:14 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":16.37520470003444,"throughput_eps":0,"last_update":"2026-03-20T17:47:09.719075489Z"} +2026/03/20 17:47:14 [transform_engine] {"stage_name":"transform_engine","events_processed":117,"events_dropped":0,"avg_latency_ms":91.57058970200129,"throughput_eps":0,"last_update":"2026-03-20T17:47:09.719088304Z"} +2026/03/20 17:47:14 ───────────────────────────────────────────────── +2026/03/20 17:47:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:14.575723592Z"} +2026/03/20 17:47:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3529,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":705.8,"last_update":"2026-03-20T17:47:14.576105844Z"} +2026/03/20 17:47:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1414,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:14.585320386Z"} +2026/03/20 17:47:19 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":16.37520470003444,"throughput_eps":0,"last_update":"2026-03-20T17:47:14.71955729Z"} +2026/03/20 17:47:19 [transform_engine] {"stage_name":"transform_engine","events_processed":117,"events_dropped":0,"avg_latency_ms":91.57058970200129,"throughput_eps":0,"last_update":"2026-03-20T17:47:14.719564333Z"} +2026/03/20 17:47:19 ───────────────────────────────────────────────── +2026/03/20 17:47:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:19.576091983Z"} +2026/03/20 17:47:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3534,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":706.8,"last_update":"2026-03-20T17:47:19.576569657Z"} +2026/03/20 17:47:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1416,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:19.586441369Z"} +2026/03/20 17:47:24 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":16.37520470003444,"throughput_eps":0,"last_update":"2026-03-20T17:47:19.719826443Z"} +2026/03/20 17:47:24 [transform_engine] {"stage_name":"transform_engine","events_processed":117,"events_dropped":0,"avg_latency_ms":91.57058970200129,"throughput_eps":0,"last_update":"2026-03-20T17:47:19.718665188Z"} +2026/03/20 17:47:24 ───────────────────────────────────────────────── +2026/03/20 17:47:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:24.575737317Z"} +2026/03/20 17:47:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3539,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":707.8,"last_update":"2026-03-20T17:47:24.576265398Z"} +2026/03/20 17:47:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1418,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:24.58553131Z"} +2026/03/20 17:47:29 [detection_layer] {"stage_name":"detection_layer","events_processed":117,"events_dropped":0,"avg_latency_ms":16.37520470003444,"throughput_eps":0,"last_update":"2026-03-20T17:47:24.719663095Z"} +2026/03/20 17:47:29 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":95.42858856160103,"throughput_eps":0,"last_update":"2026-03-20T17:47:24.830535591Z"} +2026/03/20 17:47:29 ───────────────────────────────────────────────── +2026/03/20 17:47:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:29.575729823Z"} +2026/03/20 17:47:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3544,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":708.8,"last_update":"2026-03-20T17:47:29.576014258Z"} +2026/03/20 17:47:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1420,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:29.586386098Z"} +2026/03/20 17:47:34 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":16.873350360027555,"throughput_eps":0,"last_update":"2026-03-20T17:47:29.719743311Z"} +2026/03/20 17:47:34 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":95.42858856160103,"throughput_eps":0,"last_update":"2026-03-20T17:47:29.719755844Z"} +2026/03/20 17:47:34 ───────────────────────────────────────────────── +2026/03/20 17:47:39 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:39 [metric_collector] {"stage_name":"metric_collector","events_processed":3549,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":709.8,"last_update":"2026-03-20T17:47:34.576092035Z"} +2026/03/20 17:47:39 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1422,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:34.585813619Z"} +2026/03/20 17:47:39 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":16.873350360027555,"throughput_eps":0,"last_update":"2026-03-20T17:47:34.719236318Z"} +2026/03/20 17:47:39 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":95.42858856160103,"throughput_eps":0,"last_update":"2026-03-20T17:47:34.719248572Z"} +2026/03/20 17:47:39 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:34.575728668Z"} +2026/03/20 17:47:39 ───────────────────────────────────────────────── +2026/03/20 17:47:44 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:44 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1424,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:39.586199021Z"} +2026/03/20 17:47:44 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":16.873350360027555,"throughput_eps":0,"last_update":"2026-03-20T17:47:39.719637431Z"} +2026/03/20 17:47:44 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":95.42858856160103,"throughput_eps":0,"last_update":"2026-03-20T17:47:39.719650947Z"} +2026/03/20 17:47:44 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:39.575763409Z"} +2026/03/20 17:47:44 [metric_collector] {"stage_name":"metric_collector","events_processed":3554,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":710.8,"last_update":"2026-03-20T17:47:39.576066579Z"} +2026/03/20 17:47:44 ───────────────────────────────────────────────── +2026/03/20 17:47:49 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:49 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:44.575802523Z"} +2026/03/20 17:47:49 [metric_collector] {"stage_name":"metric_collector","events_processed":3559,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":711.8,"last_update":"2026-03-20T17:47:44.576329252Z"} +2026/03/20 17:47:49 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1426,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:44.584763611Z"} +2026/03/20 17:47:49 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":16.873350360027555,"throughput_eps":0,"last_update":"2026-03-20T17:47:44.719031862Z"} +2026/03/20 17:47:49 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":95.42858856160103,"throughput_eps":0,"last_update":"2026-03-20T17:47:44.719040899Z"} +2026/03/20 17:47:49 ───────────────────────────────────────────────── +2026/03/20 17:47:54 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:54 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:49.575814613Z"} +2026/03/20 17:47:54 [metric_collector] {"stage_name":"metric_collector","events_processed":3564,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":712.8,"last_update":"2026-03-20T17:47:49.576128314Z"} +2026/03/20 17:47:54 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1428,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:49.585633635Z"} +2026/03/20 17:47:54 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":16.873350360027555,"throughput_eps":0,"last_update":"2026-03-20T17:47:49.718863809Z"} +2026/03/20 17:47:54 [transform_engine] {"stage_name":"transform_engine","events_processed":118,"events_dropped":0,"avg_latency_ms":95.42858856160103,"throughput_eps":0,"last_update":"2026-03-20T17:47:49.718878286Z"} +2026/03/20 17:47:54 ───────────────────────────────────────────────── +2026/03/20 17:47:59 ── Pipeline Health ────────────────────────────── +2026/03/20 17:47:59 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:54.575905419Z"} +2026/03/20 17:47:59 [metric_collector] {"stage_name":"metric_collector","events_processed":3569,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":713.8,"last_update":"2026-03-20T17:47:54.57633365Z"} +2026/03/20 17:47:59 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1430,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:54.586293772Z"} +2026/03/20 17:47:59 [detection_layer] {"stage_name":"detection_layer","events_processed":118,"events_dropped":0,"avg_latency_ms":16.873350360027555,"throughput_eps":0,"last_update":"2026-03-20T17:47:54.719611654Z"} +2026/03/20 17:47:59 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":89.86432344928083,"throughput_eps":0,"last_update":"2026-03-20T17:47:54.78723056Z"} +2026/03/20 17:47:59 ───────────────────────────────────────────────── +2026/03/20 17:48:04 ── Pipeline Health ────────────────────────────── +2026/03/20 17:48:04 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:59.575612023Z"} +2026/03/20 17:48:04 [metric_collector] {"stage_name":"metric_collector","events_processed":3574,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":714.8,"last_update":"2026-03-20T17:47:59.575645247Z"} +2026/03/20 17:48:04 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1432,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:47:59.58589325Z"} +2026/03/20 17:48:04 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":17.174544688022046,"throughput_eps":0,"last_update":"2026-03-20T17:47:59.719227816Z"} +2026/03/20 17:48:04 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":89.86432344928083,"throughput_eps":0,"last_update":"2026-03-20T17:47:59.719238628Z"} +2026/03/20 17:48:04 ───────────────────────────────────────────────── +2026/03/20 17:48:09 ── Pipeline Health ────────────────────────────── +2026/03/20 17:48:09 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1434,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:04.586108835Z"} +2026/03/20 17:48:09 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":17.174544688022046,"throughput_eps":0,"last_update":"2026-03-20T17:48:04.719369711Z"} +2026/03/20 17:48:09 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":89.86432344928083,"throughput_eps":0,"last_update":"2026-03-20T17:48:04.719378899Z"} +2026/03/20 17:48:09 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:04.575729139Z"} +2026/03/20 17:48:09 [metric_collector] {"stage_name":"metric_collector","events_processed":3579,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":715.8,"last_update":"2026-03-20T17:48:04.576070253Z"} +2026/03/20 17:48:09 ───────────────────────────────────────────────── +2026/03/20 17:48:14 ── Pipeline Health ────────────────────────────── +2026/03/20 17:48:14 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:09.576275893Z"} +2026/03/20 17:48:14 [metric_collector] {"stage_name":"metric_collector","events_processed":3584,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":716.8,"last_update":"2026-03-20T17:48:09.57616961Z"} +2026/03/20 17:48:14 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1436,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:09.584993895Z"} +2026/03/20 17:48:14 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":17.174544688022046,"throughput_eps":0,"last_update":"2026-03-20T17:48:09.719394486Z"} +2026/03/20 17:48:14 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":89.86432344928083,"throughput_eps":0,"last_update":"2026-03-20T17:48:09.71940722Z"} +2026/03/20 17:48:14 ───────────────────────────────────────────────── +2026/03/20 17:48:19 ── Pipeline Health ────────────────────────────── +2026/03/20 17:48:19 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:14.576066382Z"} +2026/03/20 17:48:19 [metric_collector] {"stage_name":"metric_collector","events_processed":3589,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":717.8,"last_update":"2026-03-20T17:48:14.576501476Z"} +2026/03/20 17:48:19 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1438,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:14.585433929Z"} +2026/03/20 17:48:19 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":17.174544688022046,"throughput_eps":0,"last_update":"2026-03-20T17:48:14.719693851Z"} +2026/03/20 17:48:19 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":89.86432344928083,"throughput_eps":0,"last_update":"2026-03-20T17:48:14.719700855Z"} +2026/03/20 17:48:19 ───────────────────────────────────────────────── +2026/03/20 17:48:24 ── Pipeline Health ────────────────────────────── +2026/03/20 17:48:24 [transform_engine] {"stage_name":"transform_engine","events_processed":119,"events_dropped":0,"avg_latency_ms":89.86432344928083,"throughput_eps":0,"last_update":"2026-03-20T17:48:19.7191799Z"} +2026/03/20 17:48:24 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:19.575908713Z"} +2026/03/20 17:48:24 [metric_collector] {"stage_name":"metric_collector","events_processed":3594,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":718.8,"last_update":"2026-03-20T17:48:19.576400735Z"} +2026/03/20 17:48:24 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1440,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:19.584850944Z"} +2026/03/20 17:48:24 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":17.174544688022046,"throughput_eps":0,"last_update":"2026-03-20T17:48:19.719168389Z"} +2026/03/20 17:48:24 ───────────────────────────────────────────────── +2026/03/20 17:48:29 ── Pipeline Health ────────────────────────────── +2026/03/20 17:48:29 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:24.575898708Z"} +2026/03/20 17:48:29 [metric_collector] {"stage_name":"metric_collector","events_processed":3599,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":719.8,"last_update":"2026-03-20T17:48:24.576213832Z"} +2026/03/20 17:48:29 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1442,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:24.586045408Z"} +2026/03/20 17:48:29 [detection_layer] {"stage_name":"detection_layer","events_processed":119,"events_dropped":0,"avg_latency_ms":17.174544688022046,"throughput_eps":0,"last_update":"2026-03-20T17:48:24.719447799Z"} +2026/03/20 17:48:29 [transform_engine] {"stage_name":"transform_engine","events_processed":120,"events_dropped":0,"avg_latency_ms":94.59298595942467,"throughput_eps":0,"last_update":"2026-03-20T17:48:24.832971196Z"} +2026/03/20 17:48:29 ───────────────────────────────────────────────── +2026/03/20 17:48:34 ── Pipeline Health ────────────────────────────── +2026/03/20 17:48:34 [systemctl_collector] {"stage_name":"systemctl_collector","events_processed":1444,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:29.58604135Z"} +2026/03/20 17:48:34 [detection_layer] {"stage_name":"detection_layer","events_processed":120,"events_dropped":0,"avg_latency_ms":17.454276750417637,"throughput_eps":0,"last_update":"2026-03-20T17:48:29.719548844Z"} +2026/03/20 17:48:34 [transform_engine] {"stage_name":"transform_engine","events_processed":120,"events_dropped":0,"avg_latency_ms":94.59298595942467,"throughput_eps":0,"last_update":"2026-03-20T17:48:29.719560767Z"} +2026/03/20 17:48:34 [log_collector] {"stage_name":"log_collector","events_processed":0,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":0,"last_update":"2026-03-20T17:48:29.575496827Z"} +2026/03/20 17:48:34 [metric_collector] {"stage_name":"metric_collector","events_processed":3604,"events_dropped":0,"avg_latency_ms":0,"throughput_eps":720.8,"last_update":"2026-03-20T17:48:29.575562313Z"} +2026/03/20 17:48:34 ───────────────────────────────────────────────── +2026/03/20 17:48:35 shutting down… +2026/03/20 17:48:35 pipeline stopped diff --git a/evaluation/pyproject.toml b/evaluation/pyproject.toml new file mode 100644 index 0000000..9ee1a50 --- /dev/null +++ b/evaluation/pyproject.toml @@ -0,0 +1,13 @@ +[project] +name = "finthesis" +version = "0.1.0" +description = "Add your description here" +readme = "README.md" +requires-python = ">=3.11" +dependencies = [ + "duckdb>=1.5.1", + "matplotlib>=3.10.8", + "pandas>=3.0.1", + "scipy>=1.17.1", + "seaborn>=0.13.2", +] diff --git a/evaluation/run_all.py b/evaluation/run_all.py new file mode 100644 index 0000000..59c1159 --- /dev/null +++ b/evaluation/run_all.py @@ -0,0 +1,38 @@ +""" +run_all.py – Führt alle Auswertungsskripte in der richtigen Reihenfolge aus +============================================================================ +Verwendung: + ANALYSIS_ROOT=/pfad/zu/daten ANALYSIS_OUTPUT=/pfad/zu/output python run_all.py + +Reihenfolge: + 01_ground_truth.py → erzeugt injection_windows.csv (wird von 02-04 benötigt) + 02_throughput.py → REQ-NF7 + 03_resource_overhead.py → REQ-NF1, REQ-NF2 + 04_detection_behavior.py → Δt, Precision/Recall/F1, SEAD-Gewichte +""" + +import subprocess +import sys + +scripts = [ + "01_ground_truth.py", + "02_throughput.py", + "03_resource_overhead.py", + "04_detection_behavior.py", + "05_visualize_runs.py", + "06_sead_details.py", + "07_pipeline_health.py", +] + +for script in scripts: + print(f"\n{'#' * 60}") + print(f"# Starte: {script}") + print(f"{'#' * 60}") + result = subprocess.run([sys.executable, script], check=False) + if result.returncode != 0: + print(f"\nFEHLER in {script} (Exit-Code {result.returncode})") + print("Skript-Ausführung abgebrochen.") + sys.exit(result.returncode) + +print("\n\nAlle Skripte erfolgreich abgeschlossen.") +print("Ausgaben befinden sich im OUTPUT-Verzeichnis.") diff --git a/evaluation/uv.lock b/evaluation/uv.lock new file mode 100644 index 0000000..3658b84 --- /dev/null +++ b/evaluation/uv.lock @@ -0,0 +1,737 @@ +version = 1 +revision = 3 +requires-python = ">=3.11" +resolution-markers = [ + "python_full_version >= '3.14' and sys_platform == 'win32'", + "python_full_version >= '3.14' and sys_platform == 'emscripten'", + "python_full_version >= '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", + "python_full_version < '3.14' and sys_platform == 'win32'", + "python_full_version < '3.14' and sys_platform == 'emscripten'", + "python_full_version < '3.14' and sys_platform != 'emscripten' and sys_platform != 'win32'", +] + +[[package]] +name = "contourpy" +version = "1.3.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/58/01/1253e6698a07380cd31a736d248a3f2a50a7c88779a1813da27503cadc2a/contourpy-1.3.3.tar.gz", hash = "sha256:083e12155b210502d0bca491432bb04d56dc3432f95a979b429f2848c3dbe880", size = 13466174, upload-time = "2025-07-26T12:03:12.549Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/91/2e/c4390a31919d8a78b90e8ecf87cd4b4c4f05a5b48d05ec17db8e5404c6f4/contourpy-1.3.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:709a48ef9a690e1343202916450bc48b9e51c049b089c7f79a267b46cffcdaa1", size = 288773, upload-time = "2025-07-26T12:01:02.277Z" }, + { url = "https://files.pythonhosted.org/packages/0d/44/c4b0b6095fef4dc9c420e041799591e3b63e9619e3044f7f4f6c21c0ab24/contourpy-1.3.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:23416f38bfd74d5d28ab8429cc4d63fa67d5068bd711a85edb1c3fb0c3e2f381", size = 270149, upload-time = "2025-07-26T12:01:04.072Z" }, + { url = "https://files.pythonhosted.org/packages/30/2e/dd4ced42fefac8470661d7cb7e264808425e6c5d56d175291e93890cce09/contourpy-1.3.3-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:929ddf8c4c7f348e4c0a5a3a714b5c8542ffaa8c22954862a46ca1813b667ee7", size = 329222, upload-time = "2025-07-26T12:01:05.688Z" }, + { url = "https://files.pythonhosted.org/packages/f2/74/cc6ec2548e3d276c71389ea4802a774b7aa3558223b7bade3f25787fafc2/contourpy-1.3.3-cp311-cp311-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:9e999574eddae35f1312c2b4b717b7885d4edd6cb46700e04f7f02db454e67c1", size = 377234, upload-time = "2025-07-26T12:01:07.054Z" }, + { url = "https://files.pythonhosted.org/packages/03/b3/64ef723029f917410f75c09da54254c5f9ea90ef89b143ccadb09df14c15/contourpy-1.3.3-cp311-cp311-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:0bf67e0e3f482cb69779dd3061b534eb35ac9b17f163d851e2a547d56dba0a3a", size = 380555, upload-time = "2025-07-26T12:01:08.801Z" }, + { url = "https://files.pythonhosted.org/packages/5f/4b/6157f24ca425b89fe2eb7e7be642375711ab671135be21e6faa100f7448c/contourpy-1.3.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:51e79c1f7470158e838808d4a996fa9bac72c498e93d8ebe5119bc1e6becb0db", size = 355238, upload-time = "2025-07-26T12:01:10.319Z" }, + { url = "https://files.pythonhosted.org/packages/98/56/f914f0dd678480708a04cfd2206e7c382533249bc5001eb9f58aa693e200/contourpy-1.3.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:598c3aaece21c503615fd59c92a3598b428b2f01bfb4b8ca9c4edeecc2438620", size = 1326218, upload-time = "2025-07-26T12:01:12.659Z" }, + { url = "https://files.pythonhosted.org/packages/fb/d7/4a972334a0c971acd5172389671113ae82aa7527073980c38d5868ff1161/contourpy-1.3.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:322ab1c99b008dad206d406bb61d014cf0174df491ae9d9d0fac6a6fda4f977f", size = 1392867, upload-time = "2025-07-26T12:01:15.533Z" }, + { url = "https://files.pythonhosted.org/packages/75/3e/f2cc6cd56dc8cff46b1a56232eabc6feea52720083ea71ab15523daab796/contourpy-1.3.3-cp311-cp311-win32.whl", hash = "sha256:fd907ae12cd483cd83e414b12941c632a969171bf90fc937d0c9f268a31cafff", size = 183677, upload-time = "2025-07-26T12:01:17.088Z" }, + { url = "https://files.pythonhosted.org/packages/98/4b/9bd370b004b5c9d8045c6c33cf65bae018b27aca550a3f657cdc99acdbd8/contourpy-1.3.3-cp311-cp311-win_amd64.whl", hash = "sha256:3519428f6be58431c56581f1694ba8e50626f2dd550af225f82fb5f5814d2a42", size = 225234, upload-time = "2025-07-26T12:01:18.256Z" }, + { url = "https://files.pythonhosted.org/packages/d9/b6/71771e02c2e004450c12b1120a5f488cad2e4d5b590b1af8bad060360fe4/contourpy-1.3.3-cp311-cp311-win_arm64.whl", hash = "sha256:15ff10bfada4bf92ec8b31c62bf7c1834c244019b4a33095a68000d7075df470", size = 193123, upload-time = "2025-07-26T12:01:19.848Z" }, + { url = "https://files.pythonhosted.org/packages/be/45/adfee365d9ea3d853550b2e735f9d66366701c65db7855cd07621732ccfc/contourpy-1.3.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:b08a32ea2f8e42cf1d4be3169a98dd4be32bafe4f22b6c4cb4ba810fa9e5d2cb", size = 293419, upload-time = "2025-07-26T12:01:21.16Z" }, + { url = "https://files.pythonhosted.org/packages/53/3e/405b59cfa13021a56bba395a6b3aca8cec012b45bf177b0eaf7a202cde2c/contourpy-1.3.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:556dba8fb6f5d8742f2923fe9457dbdd51e1049c4a43fd3986a0b14a1d815fc6", size = 273979, upload-time = "2025-07-26T12:01:22.448Z" }, + { url = "https://files.pythonhosted.org/packages/d4/1c/a12359b9b2ca3a845e8f7f9ac08bdf776114eb931392fcad91743e2ea17b/contourpy-1.3.3-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:92d9abc807cf7d0e047b95ca5d957cf4792fcd04e920ca70d48add15c1a90ea7", size = 332653, upload-time = "2025-07-26T12:01:24.155Z" }, + { url = "https://files.pythonhosted.org/packages/63/12/897aeebfb475b7748ea67b61e045accdfcf0d971f8a588b67108ed7f5512/contourpy-1.3.3-cp312-cp312-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:b2e8faa0ed68cb29af51edd8e24798bb661eac3bd9f65420c1887b6ca89987c8", size = 379536, upload-time = "2025-07-26T12:01:25.91Z" }, + { url = "https://files.pythonhosted.org/packages/43/8a/a8c584b82deb248930ce069e71576fc09bd7174bbd35183b7943fb1064fd/contourpy-1.3.3-cp312-cp312-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:626d60935cf668e70a5ce6ff184fd713e9683fb458898e4249b63be9e28286ea", size = 384397, upload-time = "2025-07-26T12:01:27.152Z" }, + { url = "https://files.pythonhosted.org/packages/cc/8f/ec6289987824b29529d0dfda0d74a07cec60e54b9c92f3c9da4c0ac732de/contourpy-1.3.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4d00e655fcef08aba35ec9610536bfe90267d7ab5ba944f7032549c55a146da1", size = 362601, upload-time = "2025-07-26T12:01:28.808Z" }, + { url = "https://files.pythonhosted.org/packages/05/0a/a3fe3be3ee2dceb3e615ebb4df97ae6f3828aa915d3e10549ce016302bd1/contourpy-1.3.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:451e71b5a7d597379ef572de31eeb909a87246974d960049a9848c3bc6c41bf7", size = 1331288, upload-time = "2025-07-26T12:01:31.198Z" }, + { url = "https://files.pythonhosted.org/packages/33/1d/acad9bd4e97f13f3e2b18a3977fe1b4a37ecf3d38d815333980c6c72e963/contourpy-1.3.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:459c1f020cd59fcfe6650180678a9993932d80d44ccde1fa1868977438f0b411", size = 1403386, upload-time = "2025-07-26T12:01:33.947Z" }, + { url = "https://files.pythonhosted.org/packages/cf/8f/5847f44a7fddf859704217a99a23a4f6417b10e5ab1256a179264561540e/contourpy-1.3.3-cp312-cp312-win32.whl", hash = "sha256:023b44101dfe49d7d53932be418477dba359649246075c996866106da069af69", size = 185018, upload-time = "2025-07-26T12:01:35.64Z" }, + { url = "https://files.pythonhosted.org/packages/19/e8/6026ed58a64563186a9ee3f29f41261fd1828f527dd93d33b60feca63352/contourpy-1.3.3-cp312-cp312-win_amd64.whl", hash = "sha256:8153b8bfc11e1e4d75bcb0bff1db232f9e10b274e0929de9d608027e0d34ff8b", size = 226567, upload-time = "2025-07-26T12:01:36.804Z" }, + { url = "https://files.pythonhosted.org/packages/d1/e2/f05240d2c39a1ed228d8328a78b6f44cd695f7ef47beb3e684cf93604f86/contourpy-1.3.3-cp312-cp312-win_arm64.whl", hash = "sha256:07ce5ed73ecdc4a03ffe3e1b3e3c1166db35ae7584be76f65dbbe28a7791b0cc", size = 193655, upload-time = "2025-07-26T12:01:37.999Z" }, + { url = "https://files.pythonhosted.org/packages/68/35/0167aad910bbdb9599272bd96d01a9ec6852f36b9455cf2ca67bd4cc2d23/contourpy-1.3.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:177fb367556747a686509d6fef71d221a4b198a3905fe824430e5ea0fda54eb5", size = 293257, upload-time = "2025-07-26T12:01:39.367Z" }, + { url = "https://files.pythonhosted.org/packages/96/e4/7adcd9c8362745b2210728f209bfbcf7d91ba868a2c5f40d8b58f54c509b/contourpy-1.3.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:d002b6f00d73d69333dac9d0b8d5e84d9724ff9ef044fd63c5986e62b7c9e1b1", size = 274034, upload-time = "2025-07-26T12:01:40.645Z" }, + { url = "https://files.pythonhosted.org/packages/73/23/90e31ceeed1de63058a02cb04b12f2de4b40e3bef5e082a7c18d9c8ae281/contourpy-1.3.3-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:348ac1f5d4f1d66d3322420f01d42e43122f43616e0f194fc1c9f5d830c5b286", size = 334672, upload-time = "2025-07-26T12:01:41.942Z" }, + { url = "https://files.pythonhosted.org/packages/ed/93/b43d8acbe67392e659e1d984700e79eb67e2acb2bd7f62012b583a7f1b55/contourpy-1.3.3-cp313-cp313-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:655456777ff65c2c548b7c454af9c6f33f16c8884f11083244b5819cc214f1b5", size = 381234, upload-time = "2025-07-26T12:01:43.499Z" }, + { url = "https://files.pythonhosted.org/packages/46/3b/bec82a3ea06f66711520f75a40c8fc0b113b2a75edb36aa633eb11c4f50f/contourpy-1.3.3-cp313-cp313-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:644a6853d15b2512d67881586bd03f462c7ab755db95f16f14d7e238f2852c67", size = 385169, upload-time = "2025-07-26T12:01:45.219Z" }, + { url = "https://files.pythonhosted.org/packages/4b/32/e0f13a1c5b0f8572d0ec6ae2f6c677b7991fafd95da523159c19eff0696a/contourpy-1.3.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4debd64f124ca62069f313a9cb86656ff087786016d76927ae2cf37846b006c9", size = 362859, upload-time = "2025-07-26T12:01:46.519Z" }, + { url = "https://files.pythonhosted.org/packages/33/71/e2a7945b7de4e58af42d708a219f3b2f4cff7386e6b6ab0a0fa0033c49a9/contourpy-1.3.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a15459b0f4615b00bbd1e91f1b9e19b7e63aea7483d03d804186f278c0af2659", size = 1332062, upload-time = "2025-07-26T12:01:48.964Z" }, + { url = "https://files.pythonhosted.org/packages/12/fc/4e87ac754220ccc0e807284f88e943d6d43b43843614f0a8afa469801db0/contourpy-1.3.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ca0fdcd73925568ca027e0b17ab07aad764be4706d0a925b89227e447d9737b7", size = 1403932, upload-time = "2025-07-26T12:01:51.979Z" }, + { url = "https://files.pythonhosted.org/packages/a6/2e/adc197a37443f934594112222ac1aa7dc9a98faf9c3842884df9a9d8751d/contourpy-1.3.3-cp313-cp313-win32.whl", hash = "sha256:b20c7c9a3bf701366556e1b1984ed2d0cedf999903c51311417cf5f591d8c78d", size = 185024, upload-time = "2025-07-26T12:01:53.245Z" }, + { url = "https://files.pythonhosted.org/packages/18/0b/0098c214843213759692cc638fce7de5c289200a830e5035d1791d7a2338/contourpy-1.3.3-cp313-cp313-win_amd64.whl", hash = "sha256:1cadd8b8969f060ba45ed7c1b714fe69185812ab43bd6b86a9123fe8f99c3263", size = 226578, upload-time = "2025-07-26T12:01:54.422Z" }, + { url = "https://files.pythonhosted.org/packages/8a/9a/2f6024a0c5995243cd63afdeb3651c984f0d2bc727fd98066d40e141ad73/contourpy-1.3.3-cp313-cp313-win_arm64.whl", hash = "sha256:fd914713266421b7536de2bfa8181aa8c699432b6763a0ea64195ebe28bff6a9", size = 193524, upload-time = "2025-07-26T12:01:55.73Z" }, + { url = "https://files.pythonhosted.org/packages/c0/b3/f8a1a86bd3298513f500e5b1f5fd92b69896449f6cab6a146a5d52715479/contourpy-1.3.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:88df9880d507169449d434c293467418b9f6cbe82edd19284aa0409e7fdb933d", size = 306730, upload-time = "2025-07-26T12:01:57.051Z" }, + { url = "https://files.pythonhosted.org/packages/3f/11/4780db94ae62fc0c2053909b65dc3246bd7cecfc4f8a20d957ad43aa4ad8/contourpy-1.3.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:d06bb1f751ba5d417047db62bca3c8fde202b8c11fb50742ab3ab962c81e8216", size = 287897, upload-time = "2025-07-26T12:01:58.663Z" }, + { url = "https://files.pythonhosted.org/packages/ae/15/e59f5f3ffdd6f3d4daa3e47114c53daabcb18574a26c21f03dc9e4e42ff0/contourpy-1.3.3-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e4e6b05a45525357e382909a4c1600444e2a45b4795163d3b22669285591c1ae", size = 326751, upload-time = "2025-07-26T12:02:00.343Z" }, + { url = "https://files.pythonhosted.org/packages/0f/81/03b45cfad088e4770b1dcf72ea78d3802d04200009fb364d18a493857210/contourpy-1.3.3-cp313-cp313t-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:ab3074b48c4e2cf1a960e6bbeb7f04566bf36b1861d5c9d4d8ac04b82e38ba20", size = 375486, upload-time = "2025-07-26T12:02:02.128Z" }, + { url = "https://files.pythonhosted.org/packages/0c/ba/49923366492ffbdd4486e970d421b289a670ae8cf539c1ea9a09822b371a/contourpy-1.3.3-cp313-cp313t-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:6c3d53c796f8647d6deb1abe867daeb66dcc8a97e8455efa729516b997b8ed99", size = 388106, upload-time = "2025-07-26T12:02:03.615Z" }, + { url = "https://files.pythonhosted.org/packages/9f/52/5b00ea89525f8f143651f9f03a0df371d3cbd2fccd21ca9b768c7a6500c2/contourpy-1.3.3-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:50ed930df7289ff2a8d7afeb9603f8289e5704755c7e5c3bbd929c90c817164b", size = 352548, upload-time = "2025-07-26T12:02:05.165Z" }, + { url = "https://files.pythonhosted.org/packages/32/1d/a209ec1a3a3452d490f6b14dd92e72280c99ae3d1e73da74f8277d4ee08f/contourpy-1.3.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:4feffb6537d64b84877da813a5c30f1422ea5739566abf0bd18065ac040e120a", size = 1322297, upload-time = "2025-07-26T12:02:07.379Z" }, + { url = "https://files.pythonhosted.org/packages/bc/9e/46f0e8ebdd884ca0e8877e46a3f4e633f6c9c8c4f3f6e72be3fe075994aa/contourpy-1.3.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:2b7e9480ffe2b0cd2e787e4df64270e3a0440d9db8dc823312e2c940c167df7e", size = 1391023, upload-time = "2025-07-26T12:02:10.171Z" }, + { url = "https://files.pythonhosted.org/packages/b9/70/f308384a3ae9cd2209e0849f33c913f658d3326900d0ff5d378d6a1422d2/contourpy-1.3.3-cp313-cp313t-win32.whl", hash = "sha256:283edd842a01e3dcd435b1c5116798d661378d83d36d337b8dde1d16a5fc9ba3", size = 196157, upload-time = "2025-07-26T12:02:11.488Z" }, + { url = "https://files.pythonhosted.org/packages/b2/dd/880f890a6663b84d9e34a6f88cded89d78f0091e0045a284427cb6b18521/contourpy-1.3.3-cp313-cp313t-win_amd64.whl", hash = "sha256:87acf5963fc2b34825e5b6b048f40e3635dd547f590b04d2ab317c2619ef7ae8", size = 240570, upload-time = "2025-07-26T12:02:12.754Z" }, + { url = "https://files.pythonhosted.org/packages/80/99/2adc7d8ffead633234817ef8e9a87115c8a11927a94478f6bb3d3f4d4f7d/contourpy-1.3.3-cp313-cp313t-win_arm64.whl", hash = "sha256:3c30273eb2a55024ff31ba7d052dde990d7d8e5450f4bbb6e913558b3d6c2301", size = 199713, upload-time = "2025-07-26T12:02:14.4Z" }, + { url = "https://files.pythonhosted.org/packages/72/8b/4546f3ab60f78c514ffb7d01a0bd743f90de36f0019d1be84d0a708a580a/contourpy-1.3.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:fde6c716d51c04b1c25d0b90364d0be954624a0ee9d60e23e850e8d48353d07a", size = 292189, upload-time = "2025-07-26T12:02:16.095Z" }, + { url = "https://files.pythonhosted.org/packages/fd/e1/3542a9cb596cadd76fcef413f19c79216e002623158befe6daa03dbfa88c/contourpy-1.3.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:cbedb772ed74ff5be440fa8eee9bd49f64f6e3fc09436d9c7d8f1c287b121d77", size = 273251, upload-time = "2025-07-26T12:02:17.524Z" }, + { url = "https://files.pythonhosted.org/packages/b1/71/f93e1e9471d189f79d0ce2497007731c1e6bf9ef6d1d61b911430c3db4e5/contourpy-1.3.3-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:22e9b1bd7a9b1d652cd77388465dc358dafcd2e217d35552424aa4f996f524f5", size = 335810, upload-time = "2025-07-26T12:02:18.9Z" }, + { url = "https://files.pythonhosted.org/packages/91/f9/e35f4c1c93f9275d4e38681a80506b5510e9327350c51f8d4a5a724d178c/contourpy-1.3.3-cp314-cp314-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a22738912262aa3e254e4f3cb079a95a67132fc5a063890e224393596902f5a4", size = 382871, upload-time = "2025-07-26T12:02:20.418Z" }, + { url = "https://files.pythonhosted.org/packages/b5/71/47b512f936f66a0a900d81c396a7e60d73419868fba959c61efed7a8ab46/contourpy-1.3.3-cp314-cp314-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:afe5a512f31ee6bd7d0dda52ec9864c984ca3d66664444f2d72e0dc4eb832e36", size = 386264, upload-time = "2025-07-26T12:02:21.916Z" }, + { url = "https://files.pythonhosted.org/packages/04/5f/9ff93450ba96b09c7c2b3f81c94de31c89f92292f1380261bd7195bea4ea/contourpy-1.3.3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f64836de09927cba6f79dcd00fdd7d5329f3fccc633468507079c829ca4db4e3", size = 363819, upload-time = "2025-07-26T12:02:23.759Z" }, + { url = "https://files.pythonhosted.org/packages/3e/a6/0b185d4cc480ee494945cde102cb0149ae830b5fa17bf855b95f2e70ad13/contourpy-1.3.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:1fd43c3be4c8e5fd6e4f2baeae35ae18176cf2e5cced681cca908addf1cdd53b", size = 1333650, upload-time = "2025-07-26T12:02:26.181Z" }, + { url = "https://files.pythonhosted.org/packages/43/d7/afdc95580ca56f30fbcd3060250f66cedbde69b4547028863abd8aa3b47e/contourpy-1.3.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:6afc576f7b33cf00996e5c1102dc2a8f7cc89e39c0b55df93a0b78c1bd992b36", size = 1404833, upload-time = "2025-07-26T12:02:28.782Z" }, + { url = "https://files.pythonhosted.org/packages/e2/e2/366af18a6d386f41132a48f033cbd2102e9b0cf6345d35ff0826cd984566/contourpy-1.3.3-cp314-cp314-win32.whl", hash = "sha256:66c8a43a4f7b8df8b71ee1840e4211a3c8d93b214b213f590e18a1beca458f7d", size = 189692, upload-time = "2025-07-26T12:02:30.128Z" }, + { url = "https://files.pythonhosted.org/packages/7d/c2/57f54b03d0f22d4044b8afb9ca0e184f8b1afd57b4f735c2fa70883dc601/contourpy-1.3.3-cp314-cp314-win_amd64.whl", hash = "sha256:cf9022ef053f2694e31d630feaacb21ea24224be1c3ad0520b13d844274614fd", size = 232424, upload-time = "2025-07-26T12:02:31.395Z" }, + { url = "https://files.pythonhosted.org/packages/18/79/a9416650df9b525737ab521aa181ccc42d56016d2123ddcb7b58e926a42c/contourpy-1.3.3-cp314-cp314-win_arm64.whl", hash = "sha256:95b181891b4c71de4bb404c6621e7e2390745f887f2a026b2d99e92c17892339", size = 198300, upload-time = "2025-07-26T12:02:32.956Z" }, + { url = "https://files.pythonhosted.org/packages/1f/42/38c159a7d0f2b7b9c04c64ab317042bb6952b713ba875c1681529a2932fe/contourpy-1.3.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:33c82d0138c0a062380332c861387650c82e4cf1747aaa6938b9b6516762e772", size = 306769, upload-time = "2025-07-26T12:02:34.2Z" }, + { url = "https://files.pythonhosted.org/packages/c3/6c/26a8205f24bca10974e77460de68d3d7c63e282e23782f1239f226fcae6f/contourpy-1.3.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:ea37e7b45949df430fe649e5de8351c423430046a2af20b1c1961cae3afcda77", size = 287892, upload-time = "2025-07-26T12:02:35.807Z" }, + { url = "https://files.pythonhosted.org/packages/66/06/8a475c8ab718ebfd7925661747dbb3c3ee9c82ac834ccb3570be49d129f4/contourpy-1.3.3-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d304906ecc71672e9c89e87c4675dc5c2645e1f4269a5063b99b0bb29f232d13", size = 326748, upload-time = "2025-07-26T12:02:37.193Z" }, + { url = "https://files.pythonhosted.org/packages/b4/a3/c5ca9f010a44c223f098fccd8b158bb1cb287378a31ac141f04730dc49be/contourpy-1.3.3-cp314-cp314t-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:ca658cd1a680a5c9ea96dc61cdbae1e85c8f25849843aa799dfd3cb370ad4fbe", size = 375554, upload-time = "2025-07-26T12:02:38.894Z" }, + { url = "https://files.pythonhosted.org/packages/80/5b/68bd33ae63fac658a4145088c1e894405e07584a316738710b636c6d0333/contourpy-1.3.3-cp314-cp314t-manylinux_2_26_s390x.manylinux_2_28_s390x.whl", hash = "sha256:ab2fd90904c503739a75b7c8c5c01160130ba67944a7b77bbf36ef8054576e7f", size = 388118, upload-time = "2025-07-26T12:02:40.642Z" }, + { url = "https://files.pythonhosted.org/packages/40/52/4c285a6435940ae25d7410a6c36bda5145839bc3f0beb20c707cda18b9d2/contourpy-1.3.3-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b7301b89040075c30e5768810bc96a8e8d78085b47d8be6e4c3f5a0b4ed478a0", size = 352555, upload-time = "2025-07-26T12:02:42.25Z" }, + { url = "https://files.pythonhosted.org/packages/24/ee/3e81e1dd174f5c7fefe50e85d0892de05ca4e26ef1c9a59c2a57e43b865a/contourpy-1.3.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:2a2a8b627d5cc6b7c41a4beff6c5ad5eb848c88255fda4a8745f7e901b32d8e4", size = 1322295, upload-time = "2025-07-26T12:02:44.668Z" }, + { url = "https://files.pythonhosted.org/packages/3c/b2/6d913d4d04e14379de429057cd169e5e00f6c2af3bb13e1710bcbdb5da12/contourpy-1.3.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:fd6ec6be509c787f1caf6b247f0b1ca598bef13f4ddeaa126b7658215529ba0f", size = 1391027, upload-time = "2025-07-26T12:02:47.09Z" }, + { url = "https://files.pythonhosted.org/packages/93/8a/68a4ec5c55a2971213d29a9374913f7e9f18581945a7a31d1a39b5d2dfe5/contourpy-1.3.3-cp314-cp314t-win32.whl", hash = "sha256:e74a9a0f5e3fff48fb5a7f2fd2b9b70a3fe014a67522f79b7cca4c0c7e43c9ae", size = 202428, upload-time = "2025-07-26T12:02:48.691Z" }, + { url = "https://files.pythonhosted.org/packages/fa/96/fd9f641ffedc4fa3ace923af73b9d07e869496c9cc7a459103e6e978992f/contourpy-1.3.3-cp314-cp314t-win_amd64.whl", hash = "sha256:13b68d6a62db8eafaebb8039218921399baf6e47bf85006fd8529f2a08ef33fc", size = 250331, upload-time = "2025-07-26T12:02:50.137Z" }, + { url = "https://files.pythonhosted.org/packages/ae/8c/469afb6465b853afff216f9528ffda78a915ff880ed58813ba4faf4ba0b6/contourpy-1.3.3-cp314-cp314t-win_arm64.whl", hash = "sha256:b7448cb5a725bb1e35ce88771b86fba35ef418952474492cf7c764059933ff8b", size = 203831, upload-time = "2025-07-26T12:02:51.449Z" }, + { url = "https://files.pythonhosted.org/packages/a5/29/8dcfe16f0107943fa92388c23f6e05cff0ba58058c4c95b00280d4c75a14/contourpy-1.3.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:cd5dfcaeb10f7b7f9dc8941717c6c2ade08f587be2226222c12b25f0483ed497", size = 278809, upload-time = "2025-07-26T12:02:52.74Z" }, + { url = "https://files.pythonhosted.org/packages/85/a9/8b37ef4f7dafeb335daee3c8254645ef5725be4d9c6aa70b50ec46ef2f7e/contourpy-1.3.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:0c1fc238306b35f246d61a1d416a627348b5cf0648648a031e14bb8705fcdfe8", size = 261593, upload-time = "2025-07-26T12:02:54.037Z" }, + { url = "https://files.pythonhosted.org/packages/0a/59/ebfb8c677c75605cc27f7122c90313fd2f375ff3c8d19a1694bda74aaa63/contourpy-1.3.3-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:70f9aad7de812d6541d29d2bbf8feb22ff7e1c299523db288004e3157ff4674e", size = 302202, upload-time = "2025-07-26T12:02:55.947Z" }, + { url = "https://files.pythonhosted.org/packages/3c/37/21972a15834d90bfbfb009b9d004779bd5a07a0ec0234e5ba8f64d5736f4/contourpy-1.3.3-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5ed3657edf08512fc3fe81b510e35c2012fbd3081d2e26160f27ca28affec989", size = 329207, upload-time = "2025-07-26T12:02:57.468Z" }, + { url = "https://files.pythonhosted.org/packages/0c/58/bd257695f39d05594ca4ad60df5bcb7e32247f9951fd09a9b8edb82d1daa/contourpy-1.3.3-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:3d1a3799d62d45c18bafd41c5fa05120b96a28079f2393af559b843d1a966a77", size = 225315, upload-time = "2025-07-26T12:02:58.801Z" }, +] + +[[package]] +name = "cycler" +version = "0.12.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a9/95/a3dbbb5028f35eafb79008e7522a75244477d2838f38cbb722248dabc2a8/cycler-0.12.1.tar.gz", hash = "sha256:88bb128f02ba341da8ef447245a9e138fae777f6a23943da4540077d3601eb1c", size = 7615, upload-time = "2023-10-07T05:32:18.335Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl", hash = "sha256:85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30", size = 8321, upload-time = "2023-10-07T05:32:16.783Z" }, +] + +[[package]] +name = "duckdb" +version = "1.5.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ae/62/590caabec6c41003f46a244b6fd707d35ca2e552e0c70cbf454e08bf6685/duckdb-1.5.1.tar.gz", hash = "sha256:b370d1620a34a4538ef66524fcee9de8171fa263c701036a92bc0b4c1f2f9c6d", size = 17995082, upload-time = "2026-03-23T12:12:15.894Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/42/3e/827ffcf58f0abc6ad6dcf826c5d24ebfc65e03ad1a20d74cad9806f91c99/duckdb-1.5.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:bc7ca6a1a40e7e4c933017e6c09ef18032add793df4e42624c6c0c87e0bebdad", size = 30067835, upload-time = "2026-03-23T12:10:34.026Z" }, + { url = "https://files.pythonhosted.org/packages/04/b5/e921ecf8a7e0cc7da2100c98bef64b3da386df9444f467d6389364851302/duckdb-1.5.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:446d500a2977c6ae2077f340c510a25956da5c77597175c316edfa87248ceda3", size = 15970464, upload-time = "2026-03-23T12:10:42.063Z" }, + { url = "https://files.pythonhosted.org/packages/dd/da/ed804006cd09ba303389d573c8b15d74220667cbd1fd990c26e98d0e0a5b/duckdb-1.5.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b8b0808dba0c63b7633bdaefb34e08fe0612622224f9feb0e7518904b1615101", size = 14222994, upload-time = "2026-03-23T12:10:45.162Z" }, + { url = "https://files.pythonhosted.org/packages/b3/43/c904d81a61306edab81a9d74bb37bbe65679639abb7030d4c4fec9ed84f7/duckdb-1.5.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:553c273a6a8f140adaa6da6a6135c7f95bdc8c2e5f95252fcdf9832d758e2141", size = 19244880, upload-time = "2026-03-23T12:10:48.529Z" }, + { url = "https://files.pythonhosted.org/packages/50/db/358715d677bfe5e117d9e1f2d6cc2fc2b0bd621144d1f15335b8b59f95d7/duckdb-1.5.1-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:40c5220ec93790b18ec6278da9c6ac2608d997ee6d6f7cd44c5c3992764e8e71", size = 21350874, upload-time = "2026-03-23T12:10:52.095Z" }, + { url = "https://files.pythonhosted.org/packages/3f/db/fd647ce46315347976f5576a279bacb8134d23b1f004bd0bcda7ce9cf429/duckdb-1.5.1-cp311-cp311-win_amd64.whl", hash = "sha256:36e8e32621a9e2a9abe75dc15a4b54a3997f2d8b1e53ad754bae48a083c91130", size = 13068140, upload-time = "2026-03-23T12:10:55.622Z" }, + { url = "https://files.pythonhosted.org/packages/27/95/e29d42792707619da5867ffab338d7e7b086242c7296aa9cfc6dcf52d568/duckdb-1.5.1-cp311-cp311-win_arm64.whl", hash = "sha256:5ae7c0d744d64e2753149634787cc4ab60f05ef1e542b060eeab719f3cdb7723", size = 13908823, upload-time = "2026-03-23T12:10:58.572Z" }, + { url = "https://files.pythonhosted.org/packages/3f/06/be4c62f812c6e23898733073ace0482eeb18dffabe0585d63a3bf38bca1e/duckdb-1.5.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:6f7361d66cc801d9eb4df734b139cd7b0e3c257a16f3573ebd550ddb255549e6", size = 30113703, upload-time = "2026-03-23T12:11:02.536Z" }, + { url = "https://files.pythonhosted.org/packages/44/03/1794dcdda75ff203ab0982ff7eb5232549b58b9af66f243f1b7212d6d6be/duckdb-1.5.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:0a6acc2040bec1f05de62a2f3f68f4c12f3ec7d6012b4317d0ab1a195af26225", size = 15991802, upload-time = "2026-03-23T12:11:06.321Z" }, + { url = "https://files.pythonhosted.org/packages/87/03/293bccd838a293d42ea26dec7f4eb4f58b57b6c9ffcfabc6518a5f20a24a/duckdb-1.5.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ed6d23a3f806898e69c77430ebd8da0c79c219f97b9acbc9a29a653e09740c59", size = 14246803, upload-time = "2026-03-23T12:11:09.624Z" }, + { url = "https://files.pythonhosted.org/packages/15/2c/7b4f11879aa2924838168b4640da999dccda1b4a033d43cb998fd6dc33ea/duckdb-1.5.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6af347debc8b721aa72e48671166282da979d5e5ae52dbc660ab417282b48e23", size = 19271654, upload-time = "2026-03-23T12:11:13.354Z" }, + { url = "https://files.pythonhosted.org/packages/6f/d6/8f9a6b1fbcc669108ec6a4d625a70be9e480b437ed9b70cd56b78cd577a6/duckdb-1.5.1-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8150c569b2aa4573b51ba8475e814aa41fd53a3d510c1ffb96f1139f46faf611", size = 21386100, upload-time = "2026-03-23T12:11:16.758Z" }, + { url = "https://files.pythonhosted.org/packages/c4/fe/8d02c6473273468cf8d43fd5d73c677f8cdfcd036c1e884df0613f124c2b/duckdb-1.5.1-cp312-cp312-win_amd64.whl", hash = "sha256:054ad424b051b334052afac58cb216f3b1ebb8579fc8c641e60f0182e8725ea9", size = 13083506, upload-time = "2026-03-23T12:11:19.785Z" }, + { url = "https://files.pythonhosted.org/packages/96/0b/2be786b9c153eb263bf5d3d5f7ab621b14a715d7e70f92b24ecf8536369e/duckdb-1.5.1-cp312-cp312-win_arm64.whl", hash = "sha256:6ba302115f63f6482c000ccfd62efdb6c41d9d182a5bcd4a90e7ab8cd13856eb", size = 13888862, upload-time = "2026-03-23T12:11:22.84Z" }, + { url = "https://files.pythonhosted.org/packages/a5/f2/af476945e3b97417945b0f660b5efa661863547c0ea104251bb6387342b1/duckdb-1.5.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:26e56b5f0c96189e3288d83cf7b476e23615987902f801e5788dee15ee9f24a9", size = 30113759, upload-time = "2026-03-23T12:11:26.5Z" }, + { url = "https://files.pythonhosted.org/packages/fe/9d/5a542b3933647369e601175190093597ce0ac54909aea0dd876ec51ffad4/duckdb-1.5.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:972d0dbf283508f9bc446ee09c3838cb7c7f114b5bdceee41753288c97fe2f7c", size = 15991463, upload-time = "2026-03-23T12:11:30.025Z" }, + { url = "https://files.pythonhosted.org/packages/53/a5/b59cff67f5e0420b8f337ad86406801cffacae219deed83961dcceefda67/duckdb-1.5.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:482f8a13f2600f527e427f73c42b5aa75536f9892868068f0aaf573055a0135f", size = 14246482, upload-time = "2026-03-23T12:11:33.33Z" }, + { url = "https://files.pythonhosted.org/packages/e9/12/d72a82fe502aae82b97b481bf909be8e22db5a403290799ad054b4f90eb4/duckdb-1.5.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:da137802688190835b4c863cafa77fd7e29dff662ee6d905a9ffc14f00299c91", size = 19270816, upload-time = "2026-03-23T12:11:36.79Z" }, + { url = "https://files.pythonhosted.org/packages/f9/c3/ee49319b15f139e04c067378f0e763f78336fbab38ba54b0852467dd9da4/duckdb-1.5.1-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5d4147422d91ccdc2d2abf6ed24196025e020259d1d267970ae20c13c2ce84b1", size = 21385695, upload-time = "2026-03-23T12:11:40.465Z" }, + { url = "https://files.pythonhosted.org/packages/a8/f5/a15498e75a27a136c791ca1889beade96d388dadf9811375db155fc96d1a/duckdb-1.5.1-cp313-cp313-win_amd64.whl", hash = "sha256:05fc91767d0cfc4cf2fa68966ab5b479ac07561752e42dd0ae30327bd160f64a", size = 13084065, upload-time = "2026-03-23T12:11:43.763Z" }, + { url = "https://files.pythonhosted.org/packages/93/81/b3612d2bbe237f75791095e16767c61067ea5d31c76e8591c212dac13bd0/duckdb-1.5.1-cp313-cp313-win_arm64.whl", hash = "sha256:a28531cee2a5a42d89f9ba4da53bfeb15681f12acc0263476c8705380dadce07", size = 13892892, upload-time = "2026-03-23T12:11:47.222Z" }, + { url = "https://files.pythonhosted.org/packages/ad/75/e9e7893542ca738bcde2d41d459e3438950219c71c57ad28b049dc2ae616/duckdb-1.5.1-cp314-cp314-macosx_10_15_universal2.whl", hash = "sha256:eba81e0b3011c1f23df7ea47ef4ffaa8239817959ae291515b6efd068bde2161", size = 30123677, upload-time = "2026-03-23T12:11:51.511Z" }, + { url = "https://files.pythonhosted.org/packages/df/db/f7420ee7109a922124c02f377ae1c56156e9e4aa434f4726848adaef0219/duckdb-1.5.1-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:afab8b4b1f4469c3879bb049dd039f8fce402712050324e9524a43d7324c5e87", size = 15996808, upload-time = "2026-03-23T12:11:54.964Z" }, + { url = "https://files.pythonhosted.org/packages/df/57/2c4c3de1f1110417592741863ba58b4eca2f7690a421712762ddbdcd72e6/duckdb-1.5.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:71dddcebbc5a70e946a06c30b59b5dd7999c9833d307168f90fb4e4b672ab63e", size = 14248990, upload-time = "2026-03-23T12:11:58.576Z" }, + { url = "https://files.pythonhosted.org/packages/2b/81/e173b33ffac53124a3e39e97fb60a538f26651a0df6e393eb9bf7540126c/duckdb-1.5.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ac2804043bd1bc10b5da18f8f4c706877197263a510c41be9b4c0062f5783dcc", size = 19276013, upload-time = "2026-03-23T12:12:02.034Z" }, + { url = "https://files.pythonhosted.org/packages/d4/4c/47e838393aa90d3d78549c8c04cb09452efeb14aaae0ee24dc0bd61c3a41/duckdb-1.5.1-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8843bd9594e1387f1e601439e19ad73abdf57356104fd1e53a708255bb95a13d", size = 21387569, upload-time = "2026-03-23T12:12:05.693Z" }, + { url = "https://files.pythonhosted.org/packages/f4/9b/ce65743e0e85f5c984d2f7e8a81bc908d0bac345d6d8b6316436b29430e7/duckdb-1.5.1-cp314-cp314-win_amd64.whl", hash = "sha256:d68c5a01a283cb13b79eafe016fe5869aa11bff8c46e7141c70aa0aac808010f", size = 13603876, upload-time = "2026-03-23T12:12:09.344Z" }, + { url = "https://files.pythonhosted.org/packages/e6/ac/f9e4e731635192571f86f52d86234f537c7f8ca4f6917c56b29051c077ef/duckdb-1.5.1-cp314-cp314-win_arm64.whl", hash = "sha256:a3be2072315982e232bfe49c9d3db0a59ba67b2240a537ef42656cc772a887c7", size = 14370790, upload-time = "2026-03-23T12:12:12.497Z" }, +] + +[[package]] +name = "finthesis" +version = "0.1.0" +source = { virtual = "." } +dependencies = [ + { name = "duckdb" }, + { name = "matplotlib" }, + { name = "pandas" }, + { name = "scipy" }, + { name = "seaborn" }, +] + +[package.metadata] +requires-dist = [ + { name = "duckdb", specifier = ">=1.5.1" }, + { name = "matplotlib", specifier = ">=3.10.8" }, + { name = "pandas", specifier = ">=3.0.1" }, + { name = "scipy", specifier = ">=1.17.1" }, + { name = "seaborn", specifier = ">=0.13.2" }, +] + +[[package]] +name = "fonttools" +version = "4.62.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/9a/08/7012b00a9a5874311b639c3920270c36ee0c445b69d9989a85e5c92ebcb0/fonttools-4.62.1.tar.gz", hash = "sha256:e54c75fd6041f1122476776880f7c3c3295ffa31962dc6ebe2543c00dca58b5d", size = 3580737, upload-time = "2026-03-13T13:54:25.52Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/88/39/23ff32561ec8d45a4d48578b4d241369d9270dc50926c017570e60893701/fonttools-4.62.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:40975849bac44fb0b9253d77420c6d8b523ac4dcdcefeff6e4d706838a5b80f7", size = 2871039, upload-time = "2026-03-13T13:52:33.127Z" }, + { url = "https://files.pythonhosted.org/packages/24/7f/66d3f8a9338a9b67fe6e1739f47e1cd5cee78bd3bc1206ef9b0b982289a5/fonttools-4.62.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:9dde91633f77fa576879a0c76b1d89de373cae751a98ddf0109d54e173b40f14", size = 2416346, upload-time = "2026-03-13T13:52:35.676Z" }, + { url = "https://files.pythonhosted.org/packages/aa/53/5276ceba7bff95da7793a07c5284e1da901cf00341ce5e2f3273056c0cca/fonttools-4.62.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6acb4109f8bee00fec985c8c7afb02299e35e9c94b57287f3ea542f28bd0b0a7", size = 5100897, upload-time = "2026-03-13T13:52:38.102Z" }, + { url = "https://files.pythonhosted.org/packages/cc/a1/40a5c4d8e28b0851d53a8eeeb46fbd73c325a2a9a165f290a5ed90e6c597/fonttools-4.62.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:1c5c25671ce8805e0d080e2ffdeca7f1e86778c5cbfbeae86d7f866d8830517b", size = 5071078, upload-time = "2026-03-13T13:52:41.305Z" }, + { url = "https://files.pythonhosted.org/packages/e3/be/d378fca4c65ea1956fee6d90ace6e861776809cbbc5af22388a090c3c092/fonttools-4.62.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:a5d8825e1140f04e6c99bb7d37a9e31c172f3bc208afbe02175339e699c710e1", size = 5076908, upload-time = "2026-03-13T13:52:44.122Z" }, + { url = "https://files.pythonhosted.org/packages/f8/d9/ae6a1d0693a4185a84605679c8a1f719a55df87b9c6e8e817bfdd9ef5936/fonttools-4.62.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:268abb1cb221e66c014acc234e872b7870d8b5d4657a83a8f4205094c32d2416", size = 5202275, upload-time = "2026-03-13T13:52:46.591Z" }, + { url = "https://files.pythonhosted.org/packages/54/6c/af95d9c4efb15cabff22642b608342f2bd67137eea6107202d91b5b03184/fonttools-4.62.1-cp311-cp311-win32.whl", hash = "sha256:942b03094d7edbb99bdf1ae7e9090898cad7bf9030b3d21f33d7072dbcb51a53", size = 2293075, upload-time = "2026-03-13T13:52:48.711Z" }, + { url = "https://files.pythonhosted.org/packages/d3/97/bf54c5b3f2be34e1f143e6db838dfdc54f2ffa3e68c738934c82f3b2a08d/fonttools-4.62.1-cp311-cp311-win_amd64.whl", hash = "sha256:e8514f4924375f77084e81467e63238b095abda5107620f49421c368a6017ed2", size = 2344593, upload-time = "2026-03-13T13:52:50.725Z" }, + { url = "https://files.pythonhosted.org/packages/47/d4/dbacced3953544b9a93088cc10ef2b596d348c983d5c67a404fa41ec51ba/fonttools-4.62.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:90365821debbd7db678809c7491ca4acd1e0779b9624cdc6ddaf1f31992bf974", size = 2870219, upload-time = "2026-03-13T13:52:53.664Z" }, + { url = "https://files.pythonhosted.org/packages/66/9e/a769c8e99b81e5a87ab7e5e7236684de4e96246aae17274e5347d11ebd78/fonttools-4.62.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:12859ff0b47dd20f110804c3e0d0970f7b832f561630cd879969011541a464a9", size = 2414891, upload-time = "2026-03-13T13:52:56.493Z" }, + { url = "https://files.pythonhosted.org/packages/69/64/f19a9e3911968c37e1e620e14dfc5778299e1474f72f4e57c5ec771d9489/fonttools-4.62.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9c125ffa00c3d9003cdaaf7f2c79e6e535628093e14b5de1dccb08859b680936", size = 5033197, upload-time = "2026-03-13T13:52:59.179Z" }, + { url = "https://files.pythonhosted.org/packages/9b/8a/99c8b3c3888c5c474c08dbfd7c8899786de9604b727fcefb055b42c84bba/fonttools-4.62.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:149f7d84afca659d1a97e39a4778794a2f83bf344c5ee5134e09995086cc2392", size = 4988768, upload-time = "2026-03-13T13:53:02.761Z" }, + { url = "https://files.pythonhosted.org/packages/d1/c6/0f904540d3e6ab463c1243a0d803504826a11604c72dd58c2949796a1762/fonttools-4.62.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:0aa72c43a601cfa9273bb1ae0518f1acadc01ee181a6fc60cd758d7fdadffc04", size = 4971512, upload-time = "2026-03-13T13:53:05.678Z" }, + { url = "https://files.pythonhosted.org/packages/29/0b/5cbef6588dc9bd6b5c9ad6a4d5a8ca384d0cea089da31711bbeb4f9654a6/fonttools-4.62.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:19177c8d96c7c36359266e571c5173bcee9157b59cfc8cb0153c5673dc5a3a7d", size = 5122723, upload-time = "2026-03-13T13:53:08.662Z" }, + { url = "https://files.pythonhosted.org/packages/4a/47/b3a5342d381595ef439adec67848bed561ab7fdb1019fa522e82101b7d9c/fonttools-4.62.1-cp312-cp312-win32.whl", hash = "sha256:a24decd24d60744ee8b4679d38e88b8303d86772053afc29b19d23bb8207803c", size = 2281278, upload-time = "2026-03-13T13:53:10.998Z" }, + { url = "https://files.pythonhosted.org/packages/28/b1/0c2ab56a16f409c6c8a68816e6af707827ad5d629634691ff60a52879792/fonttools-4.62.1-cp312-cp312-win_amd64.whl", hash = "sha256:9e7863e10b3de72376280b515d35b14f5eeed639d1aa7824f4cf06779ec65e42", size = 2331414, upload-time = "2026-03-13T13:53:13.992Z" }, + { url = "https://files.pythonhosted.org/packages/3b/56/6f389de21c49555553d6a5aeed5ac9767631497ac836c4f076273d15bd72/fonttools-4.62.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:c22b1014017111c401469e3acc5433e6acf6ebcc6aa9efb538a533c800971c79", size = 2865155, upload-time = "2026-03-13T13:53:16.132Z" }, + { url = "https://files.pythonhosted.org/packages/03/c5/0e3966edd5ec668d41dfe418787726752bc07e2f5fd8c8f208615e61fa89/fonttools-4.62.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:68959f5fc58ed4599b44aad161c2837477d7f35f5f79402d97439974faebfebe", size = 2412802, upload-time = "2026-03-13T13:53:18.878Z" }, + { url = "https://files.pythonhosted.org/packages/52/94/e6ac4b44026de7786fe46e3bfa0c87e51d5d70a841054065d49cd62bb909/fonttools-4.62.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ef46db46c9447103b8f3ff91e8ba009d5fe181b1920a83757a5762551e32bb68", size = 5013926, upload-time = "2026-03-13T13:53:21.379Z" }, + { url = "https://files.pythonhosted.org/packages/e2/98/8b1e801939839d405f1f122e7d175cebe9aeb4e114f95bfc45e3152af9a7/fonttools-4.62.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:6706d1cb1d5e6251a97ad3c1b9347505c5615c112e66047abbef0f8545fa30d1", size = 4964575, upload-time = "2026-03-13T13:53:23.857Z" }, + { url = "https://files.pythonhosted.org/packages/46/76/7d051671e938b1881670528fec69cc4044315edd71a229c7fd712eaa5119/fonttools-4.62.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:2e7abd2b1e11736f58c1de27819e1955a53267c21732e78243fa2fa2e5c1e069", size = 4953693, upload-time = "2026-03-13T13:53:26.569Z" }, + { url = "https://files.pythonhosted.org/packages/1f/ae/b41f8628ec0be3c1b934fc12b84f4576a5c646119db4d3bdd76a217c90b5/fonttools-4.62.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:403d28ce06ebfc547fbcb0cb8b7f7cc2f7a2d3e1a67ba9a34b14632df9e080f9", size = 5094920, upload-time = "2026-03-13T13:53:29.329Z" }, + { url = "https://files.pythonhosted.org/packages/f2/f6/53a1e9469331a23dcc400970a27a4caa3d9f6edbf5baab0260285238b884/fonttools-4.62.1-cp313-cp313-win32.whl", hash = "sha256:93c316e0f5301b2adbe6a5f658634307c096fd5aae60a5b3412e4f3e1728ab24", size = 2279928, upload-time = "2026-03-13T13:53:32.352Z" }, + { url = "https://files.pythonhosted.org/packages/38/60/35186529de1db3c01f5ad625bde07c1f576305eab6d86bbda4c58445f721/fonttools-4.62.1-cp313-cp313-win_amd64.whl", hash = "sha256:7aa21ff53e28a9c2157acbc44e5b401149d3c9178107130e82d74ceb500e5056", size = 2330514, upload-time = "2026-03-13T13:53:34.991Z" }, + { url = "https://files.pythonhosted.org/packages/36/f0/2888cdac391807d68d90dcb16ef858ddc1b5309bfc6966195a459dd326e2/fonttools-4.62.1-cp314-cp314-macosx_10_15_universal2.whl", hash = "sha256:fa1d16210b6b10a826d71bed68dd9ec24a9e218d5a5e2797f37c573e7ec215ca", size = 2864442, upload-time = "2026-03-13T13:53:37.509Z" }, + { url = "https://files.pythonhosted.org/packages/4b/b2/e521803081f8dc35990816b82da6360fa668a21b44da4b53fc9e77efcd62/fonttools-4.62.1-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:aa69d10ed420d8121118e628ad47d86e4caa79ba37f968597b958f6cceab7eca", size = 2410901, upload-time = "2026-03-13T13:53:40.55Z" }, + { url = "https://files.pythonhosted.org/packages/00/a4/8c3511ff06e53110039358dbbdc1a65d72157a054638387aa2ada300a8b8/fonttools-4.62.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:bd13b7999d59c5eb1c2b442eb2d0c427cb517a0b7a1f5798fc5c9e003f5ff782", size = 4999608, upload-time = "2026-03-13T13:53:42.798Z" }, + { url = "https://files.pythonhosted.org/packages/28/63/cd0c3b26afe60995a5295f37c246a93d454023726c3261cfbb3559969bb9/fonttools-4.62.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:8d337fdd49a79b0d51c4da87bc38169d21c3abbf0c1aa9367eff5c6656fb6dae", size = 4912726, upload-time = "2026-03-13T13:53:45.405Z" }, + { url = "https://files.pythonhosted.org/packages/70/b9/ac677cb07c24c685cf34f64e140617d58789d67a3dd524164b63648c6114/fonttools-4.62.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:d241cdc4a67b5431c6d7f115fdf63335222414995e3a1df1a41e1182acd4bcc7", size = 4951422, upload-time = "2026-03-13T13:53:48.326Z" }, + { url = "https://files.pythonhosted.org/packages/e6/10/11c08419a14b85b7ca9a9faca321accccc8842dd9e0b1c8a72908de05945/fonttools-4.62.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:c05557a78f8fa514da0f869556eeda40887a8abc77c76ee3f74cf241778afd5a", size = 5060979, upload-time = "2026-03-13T13:53:51.366Z" }, + { url = "https://files.pythonhosted.org/packages/4e/3c/12eea4a4cf054e7ab058ed5ceada43b46809fce2bf319017c4d63ae55bb4/fonttools-4.62.1-cp314-cp314-win32.whl", hash = "sha256:49a445d2f544ce4a69338694cad575ba97b9a75fff02720da0882d1a73f12800", size = 2283733, upload-time = "2026-03-13T13:53:53.606Z" }, + { url = "https://files.pythonhosted.org/packages/6b/67/74b070029043186b5dd13462c958cb7c7f811be0d2e634309d9a1ffb1505/fonttools-4.62.1-cp314-cp314-win_amd64.whl", hash = "sha256:1eecc128c86c552fb963fe846ca4e011b1be053728f798185a1687502f6d398e", size = 2335663, upload-time = "2026-03-13T13:53:56.23Z" }, + { url = "https://files.pythonhosted.org/packages/42/c5/4d2ed3ca6e33617fc5624467da353337f06e7f637707478903c785bd8e20/fonttools-4.62.1-cp314-cp314t-macosx_10_15_universal2.whl", hash = "sha256:1596aeaddf7f78e21e68293c011316a25267b3effdaccaf4d59bc9159d681b82", size = 2947288, upload-time = "2026-03-13T13:53:59.397Z" }, + { url = "https://files.pythonhosted.org/packages/1f/e9/7ab11ddfda48ed0f89b13380e5595ba572619c27077be0b2c447a63ff351/fonttools-4.62.1-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:8f8fca95d3bb3208f59626a4b0ea6e526ee51f5a8ad5d91821c165903e8d9260", size = 2449023, upload-time = "2026-03-13T13:54:01.642Z" }, + { url = "https://files.pythonhosted.org/packages/b2/10/a800fa090b5e8819942e54e19b55fc7c21fe14a08757c3aa3ca8db358939/fonttools-4.62.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ee91628c08e76f77b533d65feb3fbe6d9dad699f95be51cf0d022db94089cdc4", size = 5137599, upload-time = "2026-03-13T13:54:04.495Z" }, + { url = "https://files.pythonhosted.org/packages/37/dc/8ccd45033fffd74deb6912fa1ca524643f584b94c87a16036855b498a1ed/fonttools-4.62.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:5f37df1cac61d906e7b836abe356bc2f34c99d4477467755c216b72aa3dc748b", size = 4920933, upload-time = "2026-03-13T13:54:07.557Z" }, + { url = "https://files.pythonhosted.org/packages/99/eb/e618adefb839598d25ac8136cd577925d6c513dc0d931d93b8af956210f0/fonttools-4.62.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:92bb00a947e666169c99b43753c4305fc95a890a60ef3aeb2a6963e07902cc87", size = 5016232, upload-time = "2026-03-13T13:54:10.611Z" }, + { url = "https://files.pythonhosted.org/packages/d9/5f/9b5c9bfaa8ec82def8d8168c4f13615990d6ce5996fe52bd49bfb5e05134/fonttools-4.62.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:bdfe592802ef939a0e33106ea4a318eeb17822c7ee168c290273cbd5fabd746c", size = 5042987, upload-time = "2026-03-13T13:54:13.569Z" }, + { url = "https://files.pythonhosted.org/packages/90/aa/dfbbe24c6a6afc5c203d90cc0343e24bcbb09e76d67c4d6eef8c2558d7ba/fonttools-4.62.1-cp314-cp314t-win32.whl", hash = "sha256:b820fcb92d4655513d8402d5b219f94481c4443d825b4372c75a2072aa4b357a", size = 2348021, upload-time = "2026-03-13T13:54:16.98Z" }, + { url = "https://files.pythonhosted.org/packages/13/6f/ae9c4e4dd417948407b680855c2c7790efb52add6009aaecff1e3bc50e8e/fonttools-4.62.1-cp314-cp314t-win_amd64.whl", hash = "sha256:59b372b4f0e113d3746b88985f1c796e7bf830dd54b28374cd85c2b8acd7583e", size = 2414147, upload-time = "2026-03-13T13:54:19.416Z" }, + { url = "https://files.pythonhosted.org/packages/fd/ba/56147c165442cc5ba7e82ecf301c9a68353cede498185869e6e02b4c264f/fonttools-4.62.1-py3-none-any.whl", hash = "sha256:7487782e2113861f4ddcc07c3436450659e3caa5e470b27dc2177cade2d8e7fd", size = 1152647, upload-time = "2026-03-13T13:54:22.735Z" }, +] + +[[package]] +name = "kiwisolver" +version = "1.5.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d0/67/9c61eccb13f0bdca9307614e782fec49ffdde0f7a2314935d489fa93cd9c/kiwisolver-1.5.0.tar.gz", hash = "sha256:d4193f3d9dc3f6f79aaed0e5637f45d98850ebf01f7ca20e69457f3e8946b66a", size = 103482, upload-time = "2026-03-09T13:15:53.382Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/12/dd/a495a9c104be1c476f0386e714252caf2b7eca883915422a64c50b88c6f5/kiwisolver-1.5.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9eed0f7edbb274413b6ee781cca50541c8c0facd3d6fd289779e494340a2b85c", size = 122798, upload-time = "2026-03-09T13:12:58.963Z" }, + { url = "https://files.pythonhosted.org/packages/11/60/37b4047a2af0cf5ef6d8b4b26e91829ae6fc6a2d1f74524bcb0e7cd28a32/kiwisolver-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c4923e404d6bcd91b6779c009542e5647fef32e4a5d75e115e3bbac6f2335eb", size = 66216, upload-time = "2026-03-09T13:13:00.155Z" }, + { url = "https://files.pythonhosted.org/packages/0a/aa/510dc933d87767584abfe03efa445889996c70c2990f6f87c3ebaa0a18c5/kiwisolver-1.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:0df54df7e686afa55e6f21fb86195224a6d9beb71d637e8d7920c95cf0f89aac", size = 63911, upload-time = "2026-03-09T13:13:01.671Z" }, + { url = "https://files.pythonhosted.org/packages/80/46/bddc13df6c2a40741e0cc7865bb1c9ed4796b6760bd04ce5fae3928ef917/kiwisolver-1.5.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:2517e24d7315eb51c10664cdb865195df38ab74456c677df67bb47f12d088a27", size = 1438209, upload-time = "2026-03-09T13:13:03.385Z" }, + { url = "https://files.pythonhosted.org/packages/fd/d6/76621246f5165e5372f02f5e6f3f48ea336a8f9e96e43997d45b240ed8cd/kiwisolver-1.5.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ff710414307fefa903e0d9bdf300972f892c23477829f49504e59834f4195398", size = 1248888, upload-time = "2026-03-09T13:13:05.231Z" }, + { url = "https://files.pythonhosted.org/packages/b2/c1/31559ec6fb39a5b48035ce29bb63ade628f321785f38c384dee3e2c08bc1/kiwisolver-1.5.0-cp311-cp311-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:6176c1811d9d5a04fa391c490cc44f451e240697a16977f11c6f722efb9041db", size = 1266304, upload-time = "2026-03-09T13:13:06.743Z" }, + { url = "https://files.pythonhosted.org/packages/5e/ef/1cb8276f2d29cc6a41e0a042f27946ca347d3a4a75acf85d0a16aa6dcc82/kiwisolver-1.5.0-cp311-cp311-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:50847dca5d197fcbd389c805aa1a1cf32f25d2e7273dc47ab181a517666b68cc", size = 1319650, upload-time = "2026-03-09T13:13:08.607Z" }, + { url = "https://files.pythonhosted.org/packages/4c/e4/5ba3cecd7ce6236ae4a80f67e5d5531287337d0e1f076ca87a5abe4cd5d0/kiwisolver-1.5.0-cp311-cp311-manylinux_2_39_riscv64.whl", hash = "sha256:01808c6d15f4c3e8559595d6d1fe6411c68e4a3822b4b9972b44473b24f4e679", size = 970949, upload-time = "2026-03-09T13:13:10.299Z" }, + { url = "https://files.pythonhosted.org/packages/5a/69/dc61f7ae9a2f071f26004ced87f078235b5507ab6e5acd78f40365655034/kiwisolver-1.5.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:f1f9f4121ec58628c96baa3de1a55a4e3a333c5102c8e94b64e23bf7b2083309", size = 2199125, upload-time = "2026-03-09T13:13:11.841Z" }, + { url = "https://files.pythonhosted.org/packages/e5/7b/abbe0f1b5afa85f8d084b73e90e5f801c0939eba16ac2e49af7c61a6c28d/kiwisolver-1.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:b7d335370ae48a780c6e6a6bbfa97342f563744c39c35562f3f367665f5c1de2", size = 2293783, upload-time = "2026-03-09T13:13:14.399Z" }, + { url = "https://files.pythonhosted.org/packages/8a/80/5908ae149d96d81580d604c7f8aefd0e98f4fd728cf172f477e9f2a81744/kiwisolver-1.5.0-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:800ee55980c18545af444d93fdd60c56b580db5cc54867d8cbf8a1dc0829938c", size = 1960726, upload-time = "2026-03-09T13:13:16.047Z" }, + { url = "https://files.pythonhosted.org/packages/84/08/a78cb776f8c085b7143142ce479859cfec086bd09ee638a317040b6ef420/kiwisolver-1.5.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:c438f6ca858697c9ab67eb28246c92508af972e114cac34e57a6d4ba17a3ac08", size = 2464738, upload-time = "2026-03-09T13:13:17.897Z" }, + { url = "https://files.pythonhosted.org/packages/b1/e1/65584da5356ed6cb12c63791a10b208860ac40a83de165cb6a6751a686e3/kiwisolver-1.5.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:8c63c91f95173f9c2a67c7c526b2cea976828a0e7fced9cdcead2802dc10f8a4", size = 2270718, upload-time = "2026-03-09T13:13:19.421Z" }, + { url = "https://files.pythonhosted.org/packages/be/6c/28f17390b62b8f2f520e2915095b3c94d88681ecf0041e75389d9667f202/kiwisolver-1.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:beb7f344487cdcb9e1efe4b7a29681b74d34c08f0043a327a74da852a6749e7b", size = 73480, upload-time = "2026-03-09T13:13:20.818Z" }, + { url = "https://files.pythonhosted.org/packages/d8/0e/2ee5debc4f77a625778fec5501ff3e8036fe361b7ee28ae402a485bb9694/kiwisolver-1.5.0-cp311-cp311-win_arm64.whl", hash = "sha256:ad4ae4ffd1ee9cd11357b4c66b612da9888f4f4daf2f36995eda64bd45370cac", size = 64930, upload-time = "2026-03-09T13:13:21.997Z" }, + { url = "https://files.pythonhosted.org/packages/4d/b2/818b74ebea34dabe6d0c51cb1c572e046730e64844da6ed646d5298c40ce/kiwisolver-1.5.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:4e9750bc21b886308024f8a54ccb9a2cc38ac9fa813bf4348434e3d54f337ff9", size = 123158, upload-time = "2026-03-09T13:13:23.127Z" }, + { url = "https://files.pythonhosted.org/packages/bf/d9/405320f8077e8e1c5c4bd6adc45e1e6edf6d727b6da7f2e2533cf58bff71/kiwisolver-1.5.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:72ec46b7eba5b395e0a7b63025490d3214c11013f4aacb4f5e8d6c3041829588", size = 66388, upload-time = "2026-03-09T13:13:24.765Z" }, + { url = "https://files.pythonhosted.org/packages/99/9f/795fedf35634f746151ca8839d05681ceb6287fbed6cc1c9bf235f7887c2/kiwisolver-1.5.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ed3a984b31da7481b103f68776f7128a89ef26ed40f4dc41a2223cda7fb24819", size = 64068, upload-time = "2026-03-09T13:13:25.878Z" }, + { url = "https://files.pythonhosted.org/packages/c4/13/680c54afe3e65767bed7ec1a15571e1a2f1257128733851ade24abcefbcc/kiwisolver-1.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:bb5136fb5352d3f422df33f0c879a1b0c204004324150cc3b5e3c4f310c9049f", size = 1477934, upload-time = "2026-03-09T13:13:27.166Z" }, + { url = "https://files.pythonhosted.org/packages/c8/2f/cebfcdb60fd6a9b0f6b47a9337198bcbad6fbe15e68189b7011fd914911f/kiwisolver-1.5.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b2af221f268f5af85e776a73d62b0845fc8baf8ef0abfae79d29c77d0e776aaf", size = 1278537, upload-time = "2026-03-09T13:13:28.707Z" }, + { url = "https://files.pythonhosted.org/packages/f2/0d/9b782923aada3fafb1d6b84e13121954515c669b18af0c26e7d21f579855/kiwisolver-1.5.0-cp312-cp312-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:b0f172dc8ffaccb8522d7c5d899de00133f2f1ca7b0a49b7da98e901de87bf2d", size = 1296685, upload-time = "2026-03-09T13:13:30.528Z" }, + { url = "https://files.pythonhosted.org/packages/27/70/83241b6634b04fe44e892688d5208332bde130f38e610c0418f9ede47ded/kiwisolver-1.5.0-cp312-cp312-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:6ab8ba9152203feec73758dad83af9a0bbe05001eb4639e547207c40cfb52083", size = 1346024, upload-time = "2026-03-09T13:13:32.818Z" }, + { url = "https://files.pythonhosted.org/packages/e4/db/30ed226fb271ae1a6431fc0fe0edffb2efe23cadb01e798caeb9f2ceae8f/kiwisolver-1.5.0-cp312-cp312-manylinux_2_39_riscv64.whl", hash = "sha256:cdee07c4d7f6d72008d3f73b9bf027f4e11550224c7c50d8df1ae4a37c1402a6", size = 987241, upload-time = "2026-03-09T13:13:34.435Z" }, + { url = "https://files.pythonhosted.org/packages/ec/bd/c314595208e4c9587652d50959ead9e461995389664e490f4dce7ff0f782/kiwisolver-1.5.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:7c60d3c9b06fb23bd9c6139281ccbdc384297579ae037f08ae90c69f6845c0b1", size = 2227742, upload-time = "2026-03-09T13:13:36.4Z" }, + { url = "https://files.pythonhosted.org/packages/c1/43/0499cec932d935229b5543d073c2b87c9c22846aab48881e9d8d6e742a2d/kiwisolver-1.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:e315e5ec90d88e140f57696ff85b484ff68bb311e36f2c414aa4286293e6dee0", size = 2323966, upload-time = "2026-03-09T13:13:38.204Z" }, + { url = "https://files.pythonhosted.org/packages/3d/6f/79b0d760907965acfd9d61826a3d41f8f093c538f55cd2633d3f0db269f6/kiwisolver-1.5.0-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:1465387ac63576c3e125e5337a6892b9e99e0627d52317f3ca79e6930d889d15", size = 1977417, upload-time = "2026-03-09T13:13:39.966Z" }, + { url = "https://files.pythonhosted.org/packages/ab/31/01d0537c41cb75a551a438c3c7a80d0c60d60b81f694dac83dd436aec0d0/kiwisolver-1.5.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:530a3fd64c87cffa844d4b6b9768774763d9caa299e9b75d8eca6a4423b31314", size = 2491238, upload-time = "2026-03-09T13:13:41.698Z" }, + { url = "https://files.pythonhosted.org/packages/e4/34/8aefdd0be9cfd00a44509251ba864f5caf2991e36772e61c408007e7f417/kiwisolver-1.5.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1d9daea4ea6b9be74fe2f01f7fbade8d6ffab263e781274cffca0dba9be9eec9", size = 2294947, upload-time = "2026-03-09T13:13:43.343Z" }, + { url = "https://files.pythonhosted.org/packages/ad/cf/0348374369ca588f8fe9c338fae49fa4e16eeb10ffb3d012f23a54578a9e/kiwisolver-1.5.0-cp312-cp312-win_amd64.whl", hash = "sha256:f18c2d9782259a6dc132fdc7a63c168cbc74b35284b6d75c673958982a378384", size = 73569, upload-time = "2026-03-09T13:13:45.792Z" }, + { url = "https://files.pythonhosted.org/packages/28/26/192b26196e2316e2bd29deef67e37cdf9870d9af8e085e521afff0fed526/kiwisolver-1.5.0-cp312-cp312-win_arm64.whl", hash = "sha256:f7c7553b13f69c1b29a5bde08ddc6d9d0c8bfb84f9ed01c30db25944aeb852a7", size = 64997, upload-time = "2026-03-09T13:13:46.878Z" }, + { url = "https://files.pythonhosted.org/packages/9d/69/024d6711d5ba575aa65d5538042e99964104e97fa153a9f10bc369182bc2/kiwisolver-1.5.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:fd40bb9cd0891c4c3cb1ddf83f8bbfa15731a248fdc8162669405451e2724b09", size = 123166, upload-time = "2026-03-09T13:13:48.032Z" }, + { url = "https://files.pythonhosted.org/packages/ce/48/adbb40df306f587054a348831220812b9b1d787aff714cfbc8556e38fccd/kiwisolver-1.5.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:c0e1403fd7c26d77c1f03e096dc58a5c726503fa0db0456678b8668f76f521e3", size = 66395, upload-time = "2026-03-09T13:13:49.365Z" }, + { url = "https://files.pythonhosted.org/packages/a8/3a/d0a972b34e1c63e2409413104216cd1caa02c5a37cb668d1687d466c1c45/kiwisolver-1.5.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:dda366d548e89a90d88a86c692377d18d8bd64b39c1fb2b92cb31370e2896bbd", size = 64065, upload-time = "2026-03-09T13:13:50.562Z" }, + { url = "https://files.pythonhosted.org/packages/2b/0a/7b98e1e119878a27ba8618ca1e18b14f992ff1eda40f47bccccf4de44121/kiwisolver-1.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:332b4f0145c30b5f5ad9374881133e5aa64320428a57c2c2b61e9d891a51c2f3", size = 1477903, upload-time = "2026-03-09T13:13:52.084Z" }, + { url = "https://files.pythonhosted.org/packages/18/d8/55638d89ffd27799d5cc3d8aa28e12f4ce7a64d67b285114dbedc8ea4136/kiwisolver-1.5.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0c50b89ffd3e1a911c69a1dd3de7173c0cd10b130f56222e57898683841e4f96", size = 1278751, upload-time = "2026-03-09T13:13:54.673Z" }, + { url = "https://files.pythonhosted.org/packages/b8/97/b4c8d0d18421ecceba20ad8701358453b88e32414e6f6950b5a4bad54e65/kiwisolver-1.5.0-cp313-cp313-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:4db576bb8c3ef9365f8b40fe0f671644de6736ae2c27a2c62d7d8a1b4329f099", size = 1296793, upload-time = "2026-03-09T13:13:56.287Z" }, + { url = "https://files.pythonhosted.org/packages/c4/10/f862f94b6389d8957448ec9df59450b81bec4abb318805375c401a1e6892/kiwisolver-1.5.0-cp313-cp313-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:0b85aad90cea8ac6797a53b5d5f2e967334fa4d1149f031c4537569972596cb8", size = 1346041, upload-time = "2026-03-09T13:13:58.269Z" }, + { url = "https://files.pythonhosted.org/packages/a3/6a/f1650af35821eaf09de398ec0bc2aefc8f211f0cda50204c9f1673741ba9/kiwisolver-1.5.0-cp313-cp313-manylinux_2_39_riscv64.whl", hash = "sha256:d36ca54cb4c6c4686f7cbb7b817f66f5911c12ddb519450bbe86707155028f87", size = 987292, upload-time = "2026-03-09T13:13:59.871Z" }, + { url = "https://files.pythonhosted.org/packages/de/19/d7fb82984b9238115fe629c915007be608ebd23dc8629703d917dbfaffd4/kiwisolver-1.5.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:38f4a703656f493b0ad185211ccfca7f0386120f022066b018eb5296d8613e23", size = 2227865, upload-time = "2026-03-09T13:14:01.401Z" }, + { url = "https://files.pythonhosted.org/packages/7f/b9/46b7f386589fd222dac9e9de9c956ce5bcefe2ee73b4e79891381dda8654/kiwisolver-1.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:3ac2360e93cb41be81121755c6462cff3beaa9967188c866e5fce5cf13170859", size = 2324369, upload-time = "2026-03-09T13:14:02.972Z" }, + { url = "https://files.pythonhosted.org/packages/92/8b/95e237cf3d9c642960153c769ddcbe278f182c8affb20cecc1cc983e7cc5/kiwisolver-1.5.0-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:c95cab08d1965db3d84a121f1c7ce7479bdd4072c9b3dafd8fecce48a2e6b902", size = 1977989, upload-time = "2026-03-09T13:14:04.503Z" }, + { url = "https://files.pythonhosted.org/packages/1b/95/980c9df53501892784997820136c01f62bc1865e31b82b9560f980c0e649/kiwisolver-1.5.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:fc20894c3d21194d8041a28b65622d5b86db786da6e3cfe73f0c762951a61167", size = 2491645, upload-time = "2026-03-09T13:14:06.106Z" }, + { url = "https://files.pythonhosted.org/packages/cb/32/900647fd0840abebe1561792c6b31e6a7c0e278fc3973d30572a965ca14c/kiwisolver-1.5.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:7a32f72973f0f950c1920475d5c5ea3d971b81b6f0ec53b8d0a956cc965f22e0", size = 2295237, upload-time = "2026-03-09T13:14:08.891Z" }, + { url = "https://files.pythonhosted.org/packages/be/8a/be60e3bbcf513cc5a50f4a3e88e1dcecebb79c1ad607a7222877becaa101/kiwisolver-1.5.0-cp313-cp313-win_amd64.whl", hash = "sha256:0bf3acf1419fa93064a4c2189ac0b58e3be7872bf6ee6177b0d4c63dc4cea276", size = 73573, upload-time = "2026-03-09T13:14:12.327Z" }, + { url = "https://files.pythonhosted.org/packages/4d/d2/64be2e429eb4fca7f7e1c52a91b12663aeaf25de3895e5cca0f47ef2a8d0/kiwisolver-1.5.0-cp313-cp313-win_arm64.whl", hash = "sha256:fa8eb9ecdb7efb0b226acec134e0d709e87a909fa4971a54c0c4f6e88635484c", size = 64998, upload-time = "2026-03-09T13:14:13.469Z" }, + { url = "https://files.pythonhosted.org/packages/b0/69/ce68dd0c85755ae2de490bf015b62f2cea5f6b14ff00a463f9d0774449ff/kiwisolver-1.5.0-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:db485b3847d182b908b483b2ed133c66d88d49cacf98fd278fadafe11b4478d1", size = 125700, upload-time = "2026-03-09T13:14:14.636Z" }, + { url = "https://files.pythonhosted.org/packages/74/aa/937aac021cf9d4349990d47eb319309a51355ed1dbdc9c077cdc9224cb11/kiwisolver-1.5.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:be12f931839a3bdfe28b584db0e640a65a8bcbc24560ae3fdb025a449b3d754e", size = 67537, upload-time = "2026-03-09T13:14:15.808Z" }, + { url = "https://files.pythonhosted.org/packages/ee/20/3a87fbece2c40ad0f6f0aefa93542559159c5f99831d596050e8afae7a9f/kiwisolver-1.5.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:16b85d37c2cbb3253226d26e64663f755d88a03439a9c47df6246b35defbdfb7", size = 65514, upload-time = "2026-03-09T13:14:18.035Z" }, + { url = "https://files.pythonhosted.org/packages/f0/7f/f943879cda9007c45e1f7dba216d705c3a18d6b35830e488b6c6a4e7cdf0/kiwisolver-1.5.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:4432b835675f0ea7414aab3d37d119f7226d24869b7a829caeab49ebda407b0c", size = 1584848, upload-time = "2026-03-09T13:14:19.745Z" }, + { url = "https://files.pythonhosted.org/packages/37/f8/4d4f85cc1870c127c88d950913370dd76138482161cd07eabbc450deff01/kiwisolver-1.5.0-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1b0feb50971481a2cc44d94e88bdb02cdd497618252ae226b8eb1201b957e368", size = 1391542, upload-time = "2026-03-09T13:14:21.54Z" }, + { url = "https://files.pythonhosted.org/packages/04/0b/65dd2916c84d252b244bd405303220f729e7c17c9d7d33dca6feeff9ffc4/kiwisolver-1.5.0-cp313-cp313t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:56fa888f10d0f367155e76ce849fa1166fc9730d13bd2d65a2aa13b6f5424489", size = 1404447, upload-time = "2026-03-09T13:14:23.205Z" }, + { url = "https://files.pythonhosted.org/packages/39/5c/2606a373247babce9b1d056c03a04b65f3cf5290a8eac5d7bdead0a17e21/kiwisolver-1.5.0-cp313-cp313t-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:940dda65d5e764406b9fb92761cbf462e4e63f712ab60ed98f70552e496f3bf1", size = 1455918, upload-time = "2026-03-09T13:14:24.74Z" }, + { url = "https://files.pythonhosted.org/packages/d5/d1/c6078b5756670658e9192a2ef11e939c92918833d2745f85cd14a6004bdf/kiwisolver-1.5.0-cp313-cp313t-manylinux_2_39_riscv64.whl", hash = "sha256:89fc958c702ee9a745e4700378f5d23fddbc46ff89e8fdbf5395c24d5c1452a3", size = 1072856, upload-time = "2026-03-09T13:14:26.597Z" }, + { url = "https://files.pythonhosted.org/packages/cb/c8/7def6ddf16eb2b3741d8b172bdaa9af882b03c78e9b0772975408801fa63/kiwisolver-1.5.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:9027d773c4ff81487181a925945743413f6069634d0b122d0b37684ccf4f1e18", size = 2333580, upload-time = "2026-03-09T13:14:28.237Z" }, + { url = "https://files.pythonhosted.org/packages/9e/87/2ac1fce0eb1e616fcd3c35caa23e665e9b1948bb984f4764790924594128/kiwisolver-1.5.0-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:5b233ea3e165e43e35dba1d2b8ecc21cf070b45b65ae17dd2747d2713d942021", size = 2423018, upload-time = "2026-03-09T13:14:30.018Z" }, + { url = "https://files.pythonhosted.org/packages/67/13/c6700ccc6cc218716bfcda4935e4b2997039869b4ad8a94f364c5a3b8e63/kiwisolver-1.5.0-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:ce9bf03dad3b46408c08649c6fbd6ca28a9fce0eb32fdfffa6775a13103b5310", size = 2062804, upload-time = "2026-03-09T13:14:32.888Z" }, + { url = "https://files.pythonhosted.org/packages/1b/bd/877056304626943ff0f1f44c08f584300c199b887cb3176cd7e34f1515f1/kiwisolver-1.5.0-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:fc4d3f1fb9ca0ae9f97b095963bc6326f1dbfd3779d6679a1e016b9baaa153d3", size = 2597482, upload-time = "2026-03-09T13:14:34.971Z" }, + { url = "https://files.pythonhosted.org/packages/75/19/c60626c47bf0f8ac5dcf72c6c98e266d714f2fbbfd50cf6dab5ede3aaa50/kiwisolver-1.5.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:f443b4825c50a51ee68585522ab4a1d1257fac65896f282b4c6763337ac9f5d2", size = 2394328, upload-time = "2026-03-09T13:14:36.816Z" }, + { url = "https://files.pythonhosted.org/packages/47/84/6a6d5e5bb8273756c27b7d810d47f7ef2f1f9b9fd23c9ee9a3f8c75c9cef/kiwisolver-1.5.0-cp313-cp313t-win_arm64.whl", hash = "sha256:893ff3a711d1b515ba9da14ee090519bad4610ed1962fbe298a434e8c5f8db53", size = 68410, upload-time = "2026-03-09T13:14:38.695Z" }, + { url = "https://files.pythonhosted.org/packages/e4/d7/060f45052f2a01ad5762c8fdecd6d7a752b43400dc29ff75cd47225a40fd/kiwisolver-1.5.0-cp314-cp314-macosx_10_15_universal2.whl", hash = "sha256:8df31fe574b8b3993cc61764f40941111b25c2d9fea13d3ce24a49907cd2d615", size = 123231, upload-time = "2026-03-09T13:14:41.323Z" }, + { url = "https://files.pythonhosted.org/packages/c2/a7/78da680eadd06ff35edef6ef68a1ad273bad3e2a0936c9a885103230aece/kiwisolver-1.5.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:1d49a49ac4cbfb7c1375301cd1ec90169dfeae55ff84710d782260ce77a75a02", size = 66489, upload-time = "2026-03-09T13:14:42.534Z" }, + { url = "https://files.pythonhosted.org/packages/49/b2/97980f3ad4fae37dd7fe31626e2bf75fbf8bdf5d303950ec1fab39a12da8/kiwisolver-1.5.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:0cbe94b69b819209a62cb27bdfa5dc2a8977d8de2f89dfd97ba4f53ed3af754e", size = 64063, upload-time = "2026-03-09T13:14:44.759Z" }, + { url = "https://files.pythonhosted.org/packages/e7/f9/b06c934a6aa8bc91f566bd2a214fd04c30506c2d9e2b6b171953216a65b6/kiwisolver-1.5.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:80aa065ffd378ff784822a6d7c3212f2d5f5e9c3589614b5c228b311fd3063ac", size = 1475913, upload-time = "2026-03-09T13:14:46.247Z" }, + { url = "https://files.pythonhosted.org/packages/6b/f0/f768ae564a710135630672981231320bc403cf9152b5596ec5289de0f106/kiwisolver-1.5.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4e7f886f47ab881692f278ae901039a234e4025a68e6dfab514263a0b1c4ae05", size = 1282782, upload-time = "2026-03-09T13:14:48.458Z" }, + { url = "https://files.pythonhosted.org/packages/e2/9f/1de7aad00697325f05238a5f2eafbd487fb637cc27a558b5367a5f37fb7f/kiwisolver-1.5.0-cp314-cp314-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:5060731cc3ed12ca3a8b57acd4aeca5bbc2f49216dd0bec1650a1acd89486bcd", size = 1300815, upload-time = "2026-03-09T13:14:50.721Z" }, + { url = "https://files.pythonhosted.org/packages/5a/c2/297f25141d2e468e0ce7f7a7b92e0cf8918143a0cbd3422c1ad627e85a06/kiwisolver-1.5.0-cp314-cp314-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:7a4aa69609f40fce3cbc3f87b2061f042eee32f94b8f11db707b66a26461591a", size = 1347925, upload-time = "2026-03-09T13:14:52.304Z" }, + { url = "https://files.pythonhosted.org/packages/b9/d3/f4c73a02eb41520c47610207b21afa8cdd18fdbf64ffd94674ae21c4812d/kiwisolver-1.5.0-cp314-cp314-manylinux_2_39_riscv64.whl", hash = "sha256:d168fda2dbff7b9b5f38e693182d792a938c31db4dac3a80a4888de603c99554", size = 991322, upload-time = "2026-03-09T13:14:54.637Z" }, + { url = "https://files.pythonhosted.org/packages/7b/46/d3f2efef7732fcda98d22bf4ad5d3d71d545167a852ca710a494f4c15343/kiwisolver-1.5.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:413b820229730d358efd838ecbab79902fe97094565fdc80ddb6b0a18c18a581", size = 2232857, upload-time = "2026-03-09T13:14:56.471Z" }, + { url = "https://files.pythonhosted.org/packages/3f/ec/2d9756bf2b6d26ae4349b8d3662fb3993f16d80c1f971c179ce862b9dbae/kiwisolver-1.5.0-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:5124d1ea754509b09e53738ec185584cc609aae4a3b510aaf4ed6aa047ef9303", size = 2329376, upload-time = "2026-03-09T13:14:58.072Z" }, + { url = "https://files.pythonhosted.org/packages/8f/9f/876a0a0f2260f1bde92e002b3019a5fabc35e0939c7d945e0fa66185eb20/kiwisolver-1.5.0-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:e4415a8db000bf49a6dd1c478bf70062eaacff0f462b92b0ba68791a905861f9", size = 1982549, upload-time = "2026-03-09T13:14:59.668Z" }, + { url = "https://files.pythonhosted.org/packages/6c/4f/ba3624dfac23a64d54ac4179832860cb537c1b0af06024936e82ca4154a0/kiwisolver-1.5.0-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:d618fd27420381a4f6044faa71f46d8bfd911bd077c555f7138ed88729bfbe79", size = 2494680, upload-time = "2026-03-09T13:15:01.364Z" }, + { url = "https://files.pythonhosted.org/packages/39/b7/97716b190ab98911b20d10bf92eca469121ec483b8ce0edd314f51bc85af/kiwisolver-1.5.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:5092eb5b1172947f57d6ea7d89b2f29650414e4293c47707eb499ec07a0ac796", size = 2297905, upload-time = "2026-03-09T13:15:03.925Z" }, + { url = "https://files.pythonhosted.org/packages/a3/36/4e551e8aa55c9188bca9abb5096805edbf7431072b76e2298e34fd3a3008/kiwisolver-1.5.0-cp314-cp314-win_amd64.whl", hash = "sha256:d76e2d8c75051d58177e762164d2e9ab92886534e3a12e795f103524f221dd8e", size = 75086, upload-time = "2026-03-09T13:15:07.775Z" }, + { url = "https://files.pythonhosted.org/packages/70/15/9b90f7df0e31a003c71649cf66ef61c3c1b862f48c81007fa2383c8bd8d7/kiwisolver-1.5.0-cp314-cp314-win_arm64.whl", hash = "sha256:fa6248cd194edff41d7ea9425ced8ca3a6f838bfb295f6f1d6e6bb694a8518df", size = 66577, upload-time = "2026-03-09T13:15:09.139Z" }, + { url = "https://files.pythonhosted.org/packages/17/01/7dc8c5443ff42b38e72731643ed7cf1ed9bf01691ae5cdca98501999ed83/kiwisolver-1.5.0-cp314-cp314t-macosx_10_15_universal2.whl", hash = "sha256:d1ffeb80b5676463d7a7d56acbe8e37a20ce725570e09549fe738e02ca6b7e1e", size = 125794, upload-time = "2026-03-09T13:15:10.525Z" }, + { url = "https://files.pythonhosted.org/packages/46/8a/b4ebe46ebaac6a303417fab10c2e165c557ddaff558f9699d302b256bc53/kiwisolver-1.5.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:bc4d8e252f532ab46a1de9349e2d27b91fce46736a9eedaa37beaca66f574ed4", size = 67646, upload-time = "2026-03-09T13:15:12.016Z" }, + { url = "https://files.pythonhosted.org/packages/60/35/10a844afc5f19d6f567359bf4789e26661755a2f36200d5d1ed8ad0126e5/kiwisolver-1.5.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:6783e069732715ad0c3ce96dbf21dbc2235ab0593f2baf6338101f70371f4028", size = 65511, upload-time = "2026-03-09T13:15:13.311Z" }, + { url = "https://files.pythonhosted.org/packages/f8/8a/685b297052dd041dcebce8e8787b58923b6e78acc6115a0dc9189011c44b/kiwisolver-1.5.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:e7c4c09a490dc4d4a7f8cbee56c606a320f9dc28cf92a7157a39d1ce7676a657", size = 1584858, upload-time = "2026-03-09T13:15:15.103Z" }, + { url = "https://files.pythonhosted.org/packages/9e/80/04865e3d4638ac5bddec28908916df4a3075b8c6cc101786a96803188b96/kiwisolver-1.5.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2a075bd7bd19c70cf67c8badfa36cf7c5d8de3c9ddb8420c51e10d9c50e94920", size = 1392539, upload-time = "2026-03-09T13:15:16.661Z" }, + { url = "https://files.pythonhosted.org/packages/ba/01/77a19cacc0893fa13fafa46d1bba06fb4dc2360b3292baf4b56d8e067b24/kiwisolver-1.5.0-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:bdd3e53429ff02aa319ba59dfe4ceeec345bf46cf180ec2cf6fd5b942e7975e9", size = 1405310, upload-time = "2026-03-09T13:15:18.229Z" }, + { url = "https://files.pythonhosted.org/packages/53/39/bcaf5d0cca50e604cfa9b4e3ae1d64b50ca1ae5b754122396084599ef903/kiwisolver-1.5.0-cp314-cp314t-manylinux_2_24_s390x.manylinux_2_28_s390x.whl", hash = "sha256:3cdcb35dc9d807259c981a85531048ede628eabcffb3239adf3d17463518992d", size = 1456244, upload-time = "2026-03-09T13:15:20.444Z" }, + { url = "https://files.pythonhosted.org/packages/d0/7a/72c187abc6975f6978c3e39b7cf67aeb8b3c0a8f9790aa7fd412855e9e1f/kiwisolver-1.5.0-cp314-cp314t-manylinux_2_39_riscv64.whl", hash = "sha256:70d593af6a6ca332d1df73d519fddb5148edb15cd90d5f0155e3746a6d4fcc65", size = 1073154, upload-time = "2026-03-09T13:15:22.039Z" }, + { url = "https://files.pythonhosted.org/packages/c7/ca/cf5b25783ebbd59143b4371ed0c8428a278abe68d6d0104b01865b1bbd0f/kiwisolver-1.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:377815a8616074cabbf3f53354e1d040c35815a134e01d7614b7692e4bf8acfa", size = 2334377, upload-time = "2026-03-09T13:15:23.741Z" }, + { url = "https://files.pythonhosted.org/packages/4a/e5/b1f492adc516796e88751282276745340e2a72dcd0d36cf7173e0daf3210/kiwisolver-1.5.0-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:0255a027391d52944eae1dbb5d4cc5903f57092f3674e8e544cdd2622826b3f0", size = 2425288, upload-time = "2026-03-09T13:15:25.789Z" }, + { url = "https://files.pythonhosted.org/packages/e6/e5/9b21fbe91a61b8f409d74a26498706e97a48008bfcd1864373d32a6ba31c/kiwisolver-1.5.0-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:012b1eb16e28718fa782b5e61dc6f2da1f0792ca73bd05d54de6cb9561665fc9", size = 2063158, upload-time = "2026-03-09T13:15:27.63Z" }, + { url = "https://files.pythonhosted.org/packages/b1/02/83f47986138310f95ea95531f851b2a62227c11cbc3e690ae1374fe49f0f/kiwisolver-1.5.0-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:0e3aafb33aed7479377e5e9a82e9d4bf87063741fc99fc7ae48b0f16e32bdd6f", size = 2597260, upload-time = "2026-03-09T13:15:29.421Z" }, + { url = "https://files.pythonhosted.org/packages/07/18/43a5f24608d8c313dd189cf838c8e68d75b115567c6279de7796197cfb6a/kiwisolver-1.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:e7a116ae737f0000343218c4edf5bd45893bfeaff0993c0b215d7124c9f77646", size = 2394403, upload-time = "2026-03-09T13:15:31.517Z" }, + { url = "https://files.pythonhosted.org/packages/3b/b5/98222136d839b8afabcaa943b09bd05888c2d36355b7e448550211d1fca4/kiwisolver-1.5.0-cp314-cp314t-win_amd64.whl", hash = "sha256:1dd9b0b119a350976a6d781e7278ec7aca0b201e1a9e2d23d9804afecb6ca681", size = 79687, upload-time = "2026-03-09T13:15:33.204Z" }, + { url = "https://files.pythonhosted.org/packages/99/a2/ca7dc962848040befed12732dff6acae7fb3c4f6fc4272b3f6c9a30b8713/kiwisolver-1.5.0-cp314-cp314t-win_arm64.whl", hash = "sha256:58f812017cd2985c21fbffb4864d59174d4903dd66fa23815e74bbc7a0e2dd57", size = 70032, upload-time = "2026-03-09T13:15:34.411Z" }, + { url = "https://files.pythonhosted.org/packages/1c/fa/2910df836372d8761bb6eff7d8bdcb1613b5c2e03f260efe7abe34d388a7/kiwisolver-1.5.0-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl", hash = "sha256:5ae8e62c147495b01a0f4765c878e9bfdf843412446a247e28df59936e99e797", size = 130262, upload-time = "2026-03-09T13:15:35.629Z" }, + { url = "https://files.pythonhosted.org/packages/0f/41/c5f71f9f00aabcc71fee8b7475e3f64747282580c2fe748961ba29b18385/kiwisolver-1.5.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl", hash = "sha256:f6764a4ccab3078db14a632420930f6186058750df066b8ea2a7106df91d3203", size = 138036, upload-time = "2026-03-09T13:15:36.894Z" }, + { url = "https://files.pythonhosted.org/packages/fa/06/7399a607f434119c6e1fdc8ec89a8d51ccccadf3341dee4ead6bd14caaf5/kiwisolver-1.5.0-graalpy312-graalpy250_312_native-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c31c13da98624f957b0fb1b5bae5383b2333c2c3f6793d9825dd5ce79b525cb7", size = 194295, upload-time = "2026-03-09T13:15:38.22Z" }, + { url = "https://files.pythonhosted.org/packages/b5/91/53255615acd2a1eaca307ede3c90eb550bae9c94581f8c00081b6b1c8f44/kiwisolver-1.5.0-graalpy312-graalpy250_312_native-win_amd64.whl", hash = "sha256:1f1489f769582498610e015a8ef2d36f28f505ab3096d0e16b4858a9ec214f57", size = 75987, upload-time = "2026-03-09T13:15:39.65Z" }, + { url = "https://files.pythonhosted.org/packages/e9/eb/5fcbbbf9a0e2c3a35effb88831a483345326bbc3a030a3b5b69aee647f84/kiwisolver-1.5.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:ec4c85dc4b687c7f7f15f553ff26a98bfe8c58f5f7f0ac8905f0ba4c7be60232", size = 59532, upload-time = "2026-03-09T13:15:47.047Z" }, + { url = "https://files.pythonhosted.org/packages/c3/9b/e17104555bb4db148fd52327feea1e96be4b88e8e008b029002c281a21ab/kiwisolver-1.5.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:12e91c215a96e39f57989c8912ae761286ac5a9584d04030ceb3368a357f017a", size = 57420, upload-time = "2026-03-09T13:15:48.199Z" }, + { url = "https://files.pythonhosted.org/packages/48/44/2b5b95b7aa39fb2d8d9d956e0f3d5d45aef2ae1d942d4c3ffac2f9cfed1a/kiwisolver-1.5.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:be4a51a55833dc29ab5d7503e7bcb3b3af3402d266018137127450005cdfe737", size = 79892, upload-time = "2026-03-09T13:15:49.694Z" }, + { url = "https://files.pythonhosted.org/packages/52/7d/7157f9bba6b455cfb4632ed411e199fc8b8977642c2b12082e1bd9e6d173/kiwisolver-1.5.0-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:daae526907e262de627d8f70058a0f64acc9e2641c164c99c8f594b34a799a16", size = 77603, upload-time = "2026-03-09T13:15:50.945Z" }, + { url = "https://files.pythonhosted.org/packages/0a/dd/8050c947d435c8d4bc94e3252f4d8bb8a76cfb424f043a8680be637a57f1/kiwisolver-1.5.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:59cd8683f575d96df5bb48f6add94afc055012c29e28124fcae2b63661b9efb1", size = 73558, upload-time = "2026-03-09T13:15:52.112Z" }, +] + +[[package]] +name = "matplotlib" +version = "3.10.8" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "contourpy" }, + { name = "cycler" }, + { name = "fonttools" }, + { name = "kiwisolver" }, + { name = "numpy" }, + { name = "packaging" }, + { name = "pillow" }, + { name = "pyparsing" }, + { name = "python-dateutil" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/8a/76/d3c6e3a13fe484ebe7718d14e269c9569c4eb0020a968a327acb3b9a8fe6/matplotlib-3.10.8.tar.gz", hash = "sha256:2299372c19d56bcd35cf05a2738308758d32b9eaed2371898d8f5bd33f084aa3", size = 34806269, upload-time = "2025-12-10T22:56:51.155Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f8/86/de7e3a1cdcfc941483af70609edc06b83e7c8a0e0dc9ac325200a3f4d220/matplotlib-3.10.8-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:6be43b667360fef5c754dda5d25a32e6307a03c204f3c0fc5468b78fa87b4160", size = 8251215, upload-time = "2025-12-10T22:55:16.175Z" }, + { url = "https://files.pythonhosted.org/packages/fd/14/baad3222f424b19ce6ad243c71de1ad9ec6b2e4eb1e458a48fdc6d120401/matplotlib-3.10.8-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a2b336e2d91a3d7006864e0990c83b216fcdca64b5a6484912902cef87313d78", size = 8139625, upload-time = "2025-12-10T22:55:17.712Z" }, + { url = "https://files.pythonhosted.org/packages/8f/a0/7024215e95d456de5883e6732e708d8187d9753a21d32f8ddb3befc0c445/matplotlib-3.10.8-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:efb30e3baaea72ce5928e32bab719ab4770099079d66726a62b11b1ef7273be4", size = 8712614, upload-time = "2025-12-10T22:55:20.8Z" }, + { url = "https://files.pythonhosted.org/packages/5a/f4/b8347351da9a5b3f41e26cf547252d861f685c6867d179a7c9d60ad50189/matplotlib-3.10.8-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d56a1efd5bfd61486c8bc968fa18734464556f0fb8e51690f4ac25d85cbbbbc2", size = 9540997, upload-time = "2025-12-10T22:55:23.258Z" }, + { url = "https://files.pythonhosted.org/packages/9e/c0/c7b914e297efe0bc36917bf216b2acb91044b91e930e878ae12981e461e5/matplotlib-3.10.8-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:238b7ce5717600615c895050239ec955d91f321c209dd110db988500558e70d6", size = 9596825, upload-time = "2025-12-10T22:55:25.217Z" }, + { url = "https://files.pythonhosted.org/packages/6f/d3/a4bbc01c237ab710a1f22b4da72f4ff6d77eb4c7735ea9811a94ae239067/matplotlib-3.10.8-cp311-cp311-win_amd64.whl", hash = "sha256:18821ace09c763ec93aef5eeff087ee493a24051936d7b9ebcad9662f66501f9", size = 8135090, upload-time = "2025-12-10T22:55:27.162Z" }, + { url = "https://files.pythonhosted.org/packages/89/dd/a0b6588f102beab33ca6f5218b31725216577b2a24172f327eaf6417d5c9/matplotlib-3.10.8-cp311-cp311-win_arm64.whl", hash = "sha256:bab485bcf8b1c7d2060b4fcb6fc368a9e6f4cd754c9c2fea281f4be21df394a2", size = 8012377, upload-time = "2025-12-10T22:55:29.185Z" }, + { url = "https://files.pythonhosted.org/packages/9e/67/f997cdcbb514012eb0d10cd2b4b332667997fb5ebe26b8d41d04962fa0e6/matplotlib-3.10.8-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:64fcc24778ca0404ce0cb7b6b77ae1f4c7231cdd60e6778f999ee05cbd581b9a", size = 8260453, upload-time = "2025-12-10T22:55:30.709Z" }, + { url = "https://files.pythonhosted.org/packages/7e/65/07d5f5c7f7c994f12c768708bd2e17a4f01a2b0f44a1c9eccad872433e2e/matplotlib-3.10.8-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b9a5ca4ac220a0cdd1ba6bcba3608547117d30468fefce49bb26f55c1a3d5c58", size = 8148321, upload-time = "2025-12-10T22:55:33.265Z" }, + { url = "https://files.pythonhosted.org/packages/3e/f3/c5195b1ae57ef85339fd7285dfb603b22c8b4e79114bae5f4f0fcf688677/matplotlib-3.10.8-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:3ab4aabc72de4ff77b3ec33a6d78a68227bf1123465887f9905ba79184a1cc04", size = 8716944, upload-time = "2025-12-10T22:55:34.922Z" }, + { url = "https://files.pythonhosted.org/packages/00/f9/7638f5cc82ec8a7aa005de48622eecc3ed7c9854b96ba15bd76b7fd27574/matplotlib-3.10.8-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:24d50994d8c5816ddc35411e50a86ab05f575e2530c02752e02538122613371f", size = 9550099, upload-time = "2025-12-10T22:55:36.789Z" }, + { url = "https://files.pythonhosted.org/packages/57/61/78cd5920d35b29fd2a0fe894de8adf672ff52939d2e9b43cb83cd5ce1bc7/matplotlib-3.10.8-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:99eefd13c0dc3b3c1b4d561c1169e65fe47aab7b8158754d7c084088e2329466", size = 9613040, upload-time = "2025-12-10T22:55:38.715Z" }, + { url = "https://files.pythonhosted.org/packages/30/4e/c10f171b6e2f44d9e3a2b96efa38b1677439d79c99357600a62cc1e9594e/matplotlib-3.10.8-cp312-cp312-win_amd64.whl", hash = "sha256:dd80ecb295460a5d9d260df63c43f4afbdd832d725a531f008dad1664f458adf", size = 8142717, upload-time = "2025-12-10T22:55:41.103Z" }, + { url = "https://files.pythonhosted.org/packages/f1/76/934db220026b5fef85f45d51a738b91dea7d70207581063cd9bd8fafcf74/matplotlib-3.10.8-cp312-cp312-win_arm64.whl", hash = "sha256:3c624e43ed56313651bc18a47f838b60d7b8032ed348911c54906b130b20071b", size = 8012751, upload-time = "2025-12-10T22:55:42.684Z" }, + { url = "https://files.pythonhosted.org/packages/3d/b9/15fd5541ef4f5b9a17eefd379356cf12175fe577424e7b1d80676516031a/matplotlib-3.10.8-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:3f2e409836d7f5ac2f1c013110a4d50b9f7edc26328c108915f9075d7d7a91b6", size = 8261076, upload-time = "2025-12-10T22:55:44.648Z" }, + { url = "https://files.pythonhosted.org/packages/8d/a0/2ba3473c1b66b9c74dc7107c67e9008cb1782edbe896d4c899d39ae9cf78/matplotlib-3.10.8-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:56271f3dac49a88d7fca5060f004d9d22b865f743a12a23b1e937a0be4818ee1", size = 8148794, upload-time = "2025-12-10T22:55:46.252Z" }, + { url = "https://files.pythonhosted.org/packages/75/97/a471f1c3eb1fd6f6c24a31a5858f443891d5127e63a7788678d14e249aea/matplotlib-3.10.8-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:a0a7f52498f72f13d4a25ea70f35f4cb60642b466cbb0a9be951b5bc3f45a486", size = 8718474, upload-time = "2025-12-10T22:55:47.864Z" }, + { url = "https://files.pythonhosted.org/packages/01/be/cd478f4b66f48256f42927d0acbcd63a26a893136456cd079c0cc24fbabf/matplotlib-3.10.8-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:646d95230efb9ca614a7a594d4fcacde0ac61d25e37dd51710b36477594963ce", size = 9549637, upload-time = "2025-12-10T22:55:50.048Z" }, + { url = "https://files.pythonhosted.org/packages/5d/7c/8dc289776eae5109e268c4fb92baf870678dc048a25d4ac903683b86d5bf/matplotlib-3.10.8-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:f89c151aab2e2e23cb3fe0acad1e8b82841fd265379c4cecd0f3fcb34c15e0f6", size = 9613678, upload-time = "2025-12-10T22:55:52.21Z" }, + { url = "https://files.pythonhosted.org/packages/64/40/37612487cc8a437d4dd261b32ca21fe2d79510fe74af74e1f42becb1bdb8/matplotlib-3.10.8-cp313-cp313-win_amd64.whl", hash = "sha256:e8ea3e2d4066083e264e75c829078f9e149fa119d27e19acd503de65e0b13149", size = 8142686, upload-time = "2025-12-10T22:55:54.253Z" }, + { url = "https://files.pythonhosted.org/packages/66/52/8d8a8730e968185514680c2a6625943f70269509c3dcfc0dcf7d75928cb8/matplotlib-3.10.8-cp313-cp313-win_arm64.whl", hash = "sha256:c108a1d6fa78a50646029cb6d49808ff0fc1330fda87fa6f6250c6b5369b6645", size = 8012917, upload-time = "2025-12-10T22:55:56.268Z" }, + { url = "https://files.pythonhosted.org/packages/b5/27/51fe26e1062f298af5ef66343d8ef460e090a27fea73036c76c35821df04/matplotlib-3.10.8-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:ad3d9833a64cf48cc4300f2b406c3d0f4f4724a91c0bd5640678a6ba7c102077", size = 8305679, upload-time = "2025-12-10T22:55:57.856Z" }, + { url = "https://files.pythonhosted.org/packages/2c/1e/4de865bc591ac8e3062e835f42dd7fe7a93168d519557837f0e37513f629/matplotlib-3.10.8-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:eb3823f11823deade26ce3b9f40dcb4a213da7a670013929f31d5f5ed1055b22", size = 8198336, upload-time = "2025-12-10T22:55:59.371Z" }, + { url = "https://files.pythonhosted.org/packages/c6/cb/2f7b6e75fb4dce87ef91f60cac4f6e34f4c145ab036a22318ec837971300/matplotlib-3.10.8-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:d9050fee89a89ed57b4fb2c1bfac9a3d0c57a0d55aed95949eedbc42070fea39", size = 8731653, upload-time = "2025-12-10T22:56:01.032Z" }, + { url = "https://files.pythonhosted.org/packages/46/b3/bd9c57d6ba670a37ab31fb87ec3e8691b947134b201f881665b28cc039ff/matplotlib-3.10.8-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b44d07310e404ba95f8c25aa5536f154c0a8ec473303535949e52eb71d0a1565", size = 9561356, upload-time = "2025-12-10T22:56:02.95Z" }, + { url = "https://files.pythonhosted.org/packages/c0/3d/8b94a481456dfc9dfe6e39e93b5ab376e50998cddfd23f4ae3b431708f16/matplotlib-3.10.8-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:0a33deb84c15ede243aead39f77e990469fff93ad1521163305095b77b72ce4a", size = 9614000, upload-time = "2025-12-10T22:56:05.411Z" }, + { url = "https://files.pythonhosted.org/packages/bd/cd/bc06149fe5585ba800b189a6a654a75f1f127e8aab02fd2be10df7fa500c/matplotlib-3.10.8-cp313-cp313t-win_amd64.whl", hash = "sha256:3a48a78d2786784cc2413e57397981fb45c79e968d99656706018d6e62e57958", size = 8220043, upload-time = "2025-12-10T22:56:07.551Z" }, + { url = "https://files.pythonhosted.org/packages/e3/de/b22cf255abec916562cc04eef457c13e58a1990048de0c0c3604d082355e/matplotlib-3.10.8-cp313-cp313t-win_arm64.whl", hash = "sha256:15d30132718972c2c074cd14638c7f4592bd98719e2308bccea40e0538bc0cb5", size = 8062075, upload-time = "2025-12-10T22:56:09.178Z" }, + { url = "https://files.pythonhosted.org/packages/3c/43/9c0ff7a2f11615e516c3b058e1e6e8f9614ddeca53faca06da267c48345d/matplotlib-3.10.8-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:b53285e65d4fa4c86399979e956235deb900be5baa7fc1218ea67fbfaeaadd6f", size = 8262481, upload-time = "2025-12-10T22:56:10.885Z" }, + { url = "https://files.pythonhosted.org/packages/6f/ca/e8ae28649fcdf039fda5ef554b40a95f50592a3c47e6f7270c9561c12b07/matplotlib-3.10.8-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:32f8dce744be5569bebe789e46727946041199030db8aeb2954d26013a0eb26b", size = 8151473, upload-time = "2025-12-10T22:56:12.377Z" }, + { url = "https://files.pythonhosted.org/packages/f1/6f/009d129ae70b75e88cbe7e503a12a4c0670e08ed748a902c2568909e9eb5/matplotlib-3.10.8-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4cf267add95b1c88300d96ca837833d4112756045364f5c734a2276038dae27d", size = 9553896, upload-time = "2025-12-10T22:56:14.432Z" }, + { url = "https://files.pythonhosted.org/packages/f5/26/4221a741eb97967bc1fd5e4c52b9aa5a91b2f4ec05b59f6def4d820f9df9/matplotlib-3.10.8-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2cf5bd12cecf46908f286d7838b2abc6c91cda506c0445b8223a7c19a00df008", size = 9824193, upload-time = "2025-12-10T22:56:16.29Z" }, + { url = "https://files.pythonhosted.org/packages/1f/f3/3abf75f38605772cf48a9daf5821cd4f563472f38b4b828c6fba6fa6d06e/matplotlib-3.10.8-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:41703cc95688f2516b480f7f339d8851a6035f18e100ee6a32bc0b8536a12a9c", size = 9615444, upload-time = "2025-12-10T22:56:18.155Z" }, + { url = "https://files.pythonhosted.org/packages/93/a5/de89ac80f10b8dc615807ee1133cd99ac74082581196d4d9590bea10690d/matplotlib-3.10.8-cp314-cp314-win_amd64.whl", hash = "sha256:83d282364ea9f3e52363da262ce32a09dfe241e4080dcedda3c0db059d3c1f11", size = 8272719, upload-time = "2025-12-10T22:56:20.366Z" }, + { url = "https://files.pythonhosted.org/packages/69/ce/b006495c19ccc0a137b48083168a37bd056392dee02f87dba0472f2797fe/matplotlib-3.10.8-cp314-cp314-win_arm64.whl", hash = "sha256:2c1998e92cd5999e295a731bcb2911c75f597d937341f3030cc24ef2733d78a8", size = 8144205, upload-time = "2025-12-10T22:56:22.239Z" }, + { url = "https://files.pythonhosted.org/packages/68/d9/b31116a3a855bd313c6fcdb7226926d59b041f26061c6c5b1be66a08c826/matplotlib-3.10.8-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:b5a2b97dbdc7d4f353ebf343744f1d1f1cca8aa8bfddb4262fcf4306c3761d50", size = 8305785, upload-time = "2025-12-10T22:56:24.218Z" }, + { url = "https://files.pythonhosted.org/packages/1e/90/6effe8103f0272685767ba5f094f453784057072f49b393e3ea178fe70a5/matplotlib-3.10.8-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:3f5c3e4da343bba819f0234186b9004faba952cc420fbc522dc4e103c1985908", size = 8198361, upload-time = "2025-12-10T22:56:26.787Z" }, + { url = "https://files.pythonhosted.org/packages/d7/65/a73188711bea603615fc0baecca1061429ac16940e2385433cc778a9d8e7/matplotlib-3.10.8-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5f62550b9a30afde8c1c3ae450e5eb547d579dd69b25c2fc7a1c67f934c1717a", size = 9561357, upload-time = "2025-12-10T22:56:28.953Z" }, + { url = "https://files.pythonhosted.org/packages/f4/3d/b5c5d5d5be8ce63292567f0e2c43dde9953d3ed86ac2de0a72e93c8f07a1/matplotlib-3.10.8-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:495672de149445ec1b772ff2c9ede9b769e3cb4f0d0aa7fa730d7f59e2d4e1c1", size = 9823610, upload-time = "2025-12-10T22:56:31.455Z" }, + { url = "https://files.pythonhosted.org/packages/4d/4b/e7beb6bbd49f6bae727a12b270a2654d13c397576d25bd6786e47033300f/matplotlib-3.10.8-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:595ba4d8fe983b88f0eec8c26a241e16d6376fe1979086232f481f8f3f67494c", size = 9614011, upload-time = "2025-12-10T22:56:33.85Z" }, + { url = "https://files.pythonhosted.org/packages/7c/e6/76f2813d31f032e65f6f797e3f2f6e4aab95b65015924b1c51370395c28a/matplotlib-3.10.8-cp314-cp314t-win_amd64.whl", hash = "sha256:25d380fe8b1dc32cf8f0b1b448470a77afb195438bafdf1d858bfb876f3edf7b", size = 8362801, upload-time = "2025-12-10T22:56:36.107Z" }, + { url = "https://files.pythonhosted.org/packages/5d/49/d651878698a0b67f23aa28e17f45a6d6dd3d3f933fa29087fa4ce5947b5a/matplotlib-3.10.8-cp314-cp314t-win_arm64.whl", hash = "sha256:113bb52413ea508ce954a02c10ffd0d565f9c3bc7f2eddc27dfe1731e71c7b5f", size = 8192560, upload-time = "2025-12-10T22:56:38.008Z" }, + { url = "https://files.pythonhosted.org/packages/04/30/3afaa31c757f34b7725ab9d2ba8b48b5e89c2019c003e7d0ead143aabc5a/matplotlib-3.10.8-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:6da7c2ce169267d0d066adcf63758f0604aa6c3eebf67458930f9d9b79ad1db1", size = 8249198, upload-time = "2025-12-10T22:56:45.584Z" }, + { url = "https://files.pythonhosted.org/packages/48/2f/6334aec331f57485a642a7c8be03cb286f29111ae71c46c38b363230063c/matplotlib-3.10.8-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:9153c3292705be9f9c64498a8872118540c3f4123d1a1c840172edf262c8be4a", size = 8136817, upload-time = "2025-12-10T22:56:47.339Z" }, + { url = "https://files.pythonhosted.org/packages/73/e4/6d6f14b2a759c622f191b2d67e9075a3f56aaccb3be4bb9bb6890030d0a0/matplotlib-3.10.8-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:1ae029229a57cd1e8fe542485f27e7ca7b23aa9e8944ddb4985d0bc444f1eca2", size = 8713867, upload-time = "2025-12-10T22:56:48.954Z" }, +] + +[[package]] +name = "numpy" +version = "2.4.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/10/8b/c265f4823726ab832de836cdd184d0986dcf94480f81e8739692a7ac7af2/numpy-2.4.3.tar.gz", hash = "sha256:483a201202b73495f00dbc83796c6ae63137a9bdade074f7648b3e32613412dd", size = 20727743, upload-time = "2026-03-09T07:58:53.426Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f9/51/5093a2df15c4dc19da3f79d1021e891f5dcf1d9d1db6ba38891d5590f3fe/numpy-2.4.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:33b3bf58ee84b172c067f56aeadc7ee9ab6de69c5e800ab5b10295d54c581adb", size = 16957183, upload-time = "2026-03-09T07:55:57.774Z" }, + { url = "https://files.pythonhosted.org/packages/b5/7c/c061f3de0630941073d2598dc271ac2f6cbcf5c83c74a5870fea07488333/numpy-2.4.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8ba7b51e71c05aa1f9bc3641463cd82308eab40ce0d5c7e1fd4038cbf9938147", size = 14968734, upload-time = "2026-03-09T07:56:00.494Z" }, + { url = "https://files.pythonhosted.org/packages/ef/27/d26c85cbcd86b26e4f125b0668e7a7c0542d19dd7d23ee12e87b550e95b5/numpy-2.4.3-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:a1988292870c7cb9d0ebb4cc96b4d447513a9644801de54606dc7aabf2b7d920", size = 5475288, upload-time = "2026-03-09T07:56:02.857Z" }, + { url = "https://files.pythonhosted.org/packages/2b/09/3c4abbc1dcd8010bf1a611d174c7aa689fc505585ec806111b4406f6f1b1/numpy-2.4.3-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:23b46bb6d8ecb68b58c09944483c135ae5f0e9b8d8858ece5e4ead783771d2a9", size = 6805253, upload-time = "2026-03-09T07:56:04.53Z" }, + { url = "https://files.pythonhosted.org/packages/21/bc/e7aa3f6817e40c3f517d407742337cbb8e6fc4b83ce0b55ab780c829243b/numpy-2.4.3-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a016db5c5dba78fa8fe9f5d80d6708f9c42ab087a739803c0ac83a43d686a470", size = 15969479, upload-time = "2026-03-09T07:56:06.638Z" }, + { url = "https://files.pythonhosted.org/packages/78/51/9f5d7a41f0b51649ddf2f2320595e15e122a40610b233d51928dd6c92353/numpy-2.4.3-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:715de7f82e192e8cae5a507a347d97ad17598f8e026152ca97233e3666daaa71", size = 16901035, upload-time = "2026-03-09T07:56:09.405Z" }, + { url = "https://files.pythonhosted.org/packages/64/6e/b221dd847d7181bc5ee4857bfb026182ef69499f9305eb1371cbb1aea626/numpy-2.4.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:2ddb7919366ee468342b91dea2352824c25b55814a987847b6c52003a7c97f15", size = 17325657, upload-time = "2026-03-09T07:56:12.067Z" }, + { url = "https://files.pythonhosted.org/packages/eb/b8/8f3fd2da596e1063964b758b5e3c970aed1949a05200d7e3d46a9d46d643/numpy-2.4.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a315e5234d88067f2d97e1f2ef670a7569df445d55400f1e33d117418d008d52", size = 18635512, upload-time = "2026-03-09T07:56:14.629Z" }, + { url = "https://files.pythonhosted.org/packages/5c/24/2993b775c37e39d2f8ab4125b44337ab0b2ba106c100980b7c274a22bee7/numpy-2.4.3-cp311-cp311-win32.whl", hash = "sha256:2b3f8d2c4589b1a2028d2a770b0fc4d1f332fb5e01521f4de3199a896d158ddd", size = 6238100, upload-time = "2026-03-09T07:56:17.243Z" }, + { url = "https://files.pythonhosted.org/packages/76/1d/edccf27adedb754db7c4511d5eac8b83f004ae948fe2d3509e8b78097d4c/numpy-2.4.3-cp311-cp311-win_amd64.whl", hash = "sha256:77e76d932c49a75617c6d13464e41203cd410956614d0a0e999b25e9e8d27eec", size = 12609816, upload-time = "2026-03-09T07:56:19.089Z" }, + { url = "https://files.pythonhosted.org/packages/92/82/190b99153480076c8dce85f4cfe7d53ea84444145ffa54cb58dcd460d66b/numpy-2.4.3-cp311-cp311-win_arm64.whl", hash = "sha256:eb610595dd91560905c132c709412b512135a60f1851ccbd2c959e136431ff67", size = 10485757, upload-time = "2026-03-09T07:56:21.753Z" }, + { url = "https://files.pythonhosted.org/packages/a9/ed/6388632536f9788cea23a3a1b629f25b43eaacd7d7377e5d6bc7b9deb69b/numpy-2.4.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:61b0cbabbb6126c8df63b9a3a0c4b1f44ebca5e12ff6997b80fcf267fb3150ef", size = 16669628, upload-time = "2026-03-09T07:56:24.252Z" }, + { url = "https://files.pythonhosted.org/packages/74/1b/ee2abfc68e1ce728b2958b6ba831d65c62e1b13ce3017c13943f8f9b5b2e/numpy-2.4.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7395e69ff32526710748f92cd8c9849b361830968ea3e24a676f272653e8983e", size = 14696872, upload-time = "2026-03-09T07:56:26.991Z" }, + { url = "https://files.pythonhosted.org/packages/ba/d1/780400e915ff5638166f11ca9dc2c5815189f3d7cf6f8759a1685e586413/numpy-2.4.3-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:abdce0f71dcb4a00e4e77f3faf05e4616ceccfe72ccaa07f47ee79cda3b7b0f4", size = 5203489, upload-time = "2026-03-09T07:56:29.414Z" }, + { url = "https://files.pythonhosted.org/packages/0b/bb/baffa907e9da4cc34a6e556d6d90e032f6d7a75ea47968ea92b4858826c4/numpy-2.4.3-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:48da3a4ee1336454b07497ff7ec83903efa5505792c4e6d9bf83d99dc07a1e18", size = 6550814, upload-time = "2026-03-09T07:56:32.225Z" }, + { url = "https://files.pythonhosted.org/packages/7b/12/8c9f0c6c95f76aeb20fc4a699c33e9f827fa0d0f857747c73bb7b17af945/numpy-2.4.3-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:32e3bef222ad6b052280311d1d60db8e259e4947052c3ae7dd6817451fc8a4c5", size = 15666601, upload-time = "2026-03-09T07:56:34.461Z" }, + { url = "https://files.pythonhosted.org/packages/bd/79/cc665495e4d57d0aa6fbcc0aa57aa82671dfc78fbf95fe733ed86d98f52a/numpy-2.4.3-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e7dd01a46700b1967487141a66ac1a3cf0dd8ebf1f08db37d46389401512ca97", size = 16621358, upload-time = "2026-03-09T07:56:36.852Z" }, + { url = "https://files.pythonhosted.org/packages/a8/40/b4ecb7224af1065c3539f5ecfff879d090de09608ad1008f02c05c770cb3/numpy-2.4.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:76f0f283506c28b12bba319c0fab98217e9f9b54e6160e9c79e9f7348ba32e9c", size = 17016135, upload-time = "2026-03-09T07:56:39.337Z" }, + { url = "https://files.pythonhosted.org/packages/f7/b1/6a88e888052eed951afed7a142dcdf3b149a030ca59b4c71eef085858e43/numpy-2.4.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:737f630a337364665aba3b5a77e56a68cc42d350edd010c345d65a3efa3addcc", size = 18345816, upload-time = "2026-03-09T07:56:42.31Z" }, + { url = "https://files.pythonhosted.org/packages/f3/8f/103a60c5f8c3d7fc678c19cd7b2476110da689ccb80bc18050efbaeae183/numpy-2.4.3-cp312-cp312-win32.whl", hash = "sha256:26952e18d82a1dbbc2f008d402021baa8d6fc8e84347a2072a25e08b46d698b9", size = 5960132, upload-time = "2026-03-09T07:56:44.851Z" }, + { url = "https://files.pythonhosted.org/packages/d7/7c/f5ee1bf6ed888494978046a809df2882aad35d414b622893322df7286879/numpy-2.4.3-cp312-cp312-win_amd64.whl", hash = "sha256:65f3c2455188f09678355f5cae1f959a06b778bc66d535da07bf2ef20cd319d5", size = 12316144, upload-time = "2026-03-09T07:56:47.057Z" }, + { url = "https://files.pythonhosted.org/packages/71/46/8d1cb3f7a00f2fb6394140e7e6623696e54c6318a9d9691bb4904672cf42/numpy-2.4.3-cp312-cp312-win_arm64.whl", hash = "sha256:2abad5c7fef172b3377502bde47892439bae394a71bc329f31df0fd829b41a9e", size = 10220364, upload-time = "2026-03-09T07:56:49.849Z" }, + { url = "https://files.pythonhosted.org/packages/b6/d0/1fe47a98ce0df229238b77611340aff92d52691bcbc10583303181abf7fc/numpy-2.4.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:b346845443716c8e542d54112966383b448f4a3ba5c66409771b8c0889485dd3", size = 16665297, upload-time = "2026-03-09T07:56:52.296Z" }, + { url = "https://files.pythonhosted.org/packages/27/d9/4e7c3f0e68dfa91f21c6fb6cf839bc829ec920688b1ce7ec722b1a6202fb/numpy-2.4.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:2629289168f4897a3c4e23dc98d6f1731f0fc0fe52fb9db19f974041e4cc12b9", size = 14691853, upload-time = "2026-03-09T07:56:54.992Z" }, + { url = "https://files.pythonhosted.org/packages/3a/66/bd096b13a87549683812b53ab211e6d413497f84e794fb3c39191948da97/numpy-2.4.3-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:bb2e3cf95854233799013779216c57e153c1ee67a0bf92138acca0e429aefaee", size = 5198435, upload-time = "2026-03-09T07:56:57.184Z" }, + { url = "https://files.pythonhosted.org/packages/a2/2f/687722910b5a5601de2135c891108f51dfc873d8e43c8ed9f4ebb440b4a2/numpy-2.4.3-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:7f3408ff897f8ab07a07fbe2823d7aee6ff644c097cc1f90382511fe982f647f", size = 6546347, upload-time = "2026-03-09T07:56:59.531Z" }, + { url = "https://files.pythonhosted.org/packages/bf/ec/7971c4e98d86c564750393fab8d7d83d0a9432a9d78bb8a163a6dc59967a/numpy-2.4.3-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:decb0eb8a53c3b009b0962378065589685d66b23467ef5dac16cbe818afde27f", size = 15664626, upload-time = "2026-03-09T07:57:01.385Z" }, + { url = "https://files.pythonhosted.org/packages/7e/eb/7daecbea84ec935b7fc732e18f532073064a3816f0932a40a17f3349185f/numpy-2.4.3-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d5f51900414fc9204a0e0da158ba2ac52b75656e7dce7e77fb9f84bfa343b4cc", size = 16608916, upload-time = "2026-03-09T07:57:04.008Z" }, + { url = "https://files.pythonhosted.org/packages/df/58/2a2b4a817ffd7472dca4421d9f0776898b364154e30c95f42195041dc03b/numpy-2.4.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:6bd06731541f89cdc01b261ba2c9e037f1543df7472517836b78dfb15bd6e476", size = 17015824, upload-time = "2026-03-09T07:57:06.347Z" }, + { url = "https://files.pythonhosted.org/packages/4a/ca/627a828d44e78a418c55f82dd4caea8ea4a8ef24e5144d9e71016e52fb40/numpy-2.4.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:22654fe6be0e5206f553a9250762c653d3698e46686eee53b399ab90da59bd92", size = 18334581, upload-time = "2026-03-09T07:57:09.114Z" }, + { url = "https://files.pythonhosted.org/packages/cd/c0/76f93962fc79955fcba30a429b62304332345f22d4daec1cb33653425643/numpy-2.4.3-cp313-cp313-win32.whl", hash = "sha256:d71e379452a2f670ccb689ec801b1218cd3983e253105d6e83780967e899d687", size = 5958618, upload-time = "2026-03-09T07:57:11.432Z" }, + { url = "https://files.pythonhosted.org/packages/b1/3c/88af0040119209b9b5cb59485fa48b76f372c73068dbf9254784b975ac53/numpy-2.4.3-cp313-cp313-win_amd64.whl", hash = "sha256:0a60e17a14d640f49146cb38e3f105f571318db7826d9b6fef7e4dce758faecd", size = 12312824, upload-time = "2026-03-09T07:57:13.586Z" }, + { url = "https://files.pythonhosted.org/packages/58/ce/3d07743aced3d173f877c3ef6a454c2174ba42b584ab0b7e6d99374f51ed/numpy-2.4.3-cp313-cp313-win_arm64.whl", hash = "sha256:c9619741e9da2059cd9c3f206110b97583c7152c1dc9f8aafd4beb450ac1c89d", size = 10221218, upload-time = "2026-03-09T07:57:16.183Z" }, + { url = "https://files.pythonhosted.org/packages/62/09/d96b02a91d09e9d97862f4fc8bfebf5400f567d8eb1fe4b0cc4795679c15/numpy-2.4.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:7aa4e54f6469300ebca1d9eb80acd5253cdfa36f2c03d79a35883687da430875", size = 14819570, upload-time = "2026-03-09T07:57:18.564Z" }, + { url = "https://files.pythonhosted.org/packages/b5/ca/0b1aba3905fdfa3373d523b2b15b19029f4f3031c87f4066bd9d20ef6c6b/numpy-2.4.3-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:d1b90d840b25874cf5cd20c219af10bac3667db3876d9a495609273ebe679070", size = 5326113, upload-time = "2026-03-09T07:57:21.052Z" }, + { url = "https://files.pythonhosted.org/packages/c0/63/406e0fd32fcaeb94180fd6a4c41e55736d676c54346b7efbce548b94a914/numpy-2.4.3-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:a749547700de0a20a6718293396ec237bb38218049cfce788e08fcb716e8cf73", size = 6646370, upload-time = "2026-03-09T07:57:22.804Z" }, + { url = "https://files.pythonhosted.org/packages/b6/d0/10f7dc157d4b37af92720a196be6f54f889e90dcd30dce9dc657ed92c257/numpy-2.4.3-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:94f3c4a151a2e529adf49c1d54f0f57ff8f9b233ee4d44af623a81553ab86368", size = 15723499, upload-time = "2026-03-09T07:57:24.693Z" }, + { url = "https://files.pythonhosted.org/packages/66/f1/d1c2bf1161396629701bc284d958dc1efa3a5a542aab83cf11ee6eb4cba5/numpy-2.4.3-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:22c31dc07025123aedf7f2db9e91783df13f1776dc52c6b22c620870dc0fab22", size = 16657164, upload-time = "2026-03-09T07:57:27.676Z" }, + { url = "https://files.pythonhosted.org/packages/1a/be/cca19230b740af199ac47331a21c71e7a3d0ba59661350483c1600d28c37/numpy-2.4.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:148d59127ac95979d6f07e4d460f934ebdd6eed641db9c0db6c73026f2b2101a", size = 17081544, upload-time = "2026-03-09T07:57:30.664Z" }, + { url = "https://files.pythonhosted.org/packages/b9/c5/9602b0cbb703a0936fb40f8a95407e8171935b15846de2f0776e08af04c7/numpy-2.4.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:a97cbf7e905c435865c2d939af3d93f99d18eaaa3cabe4256f4304fb51604349", size = 18380290, upload-time = "2026-03-09T07:57:33.763Z" }, + { url = "https://files.pythonhosted.org/packages/ed/81/9f24708953cd30be9ee36ec4778f4b112b45165812f2ada4cc5ea1c1f254/numpy-2.4.3-cp313-cp313t-win32.whl", hash = "sha256:be3b8487d725a77acccc9924f65fd8bce9af7fac8c9820df1049424a2115af6c", size = 6082814, upload-time = "2026-03-09T07:57:36.491Z" }, + { url = "https://files.pythonhosted.org/packages/e2/9e/52f6eaa13e1a799f0ab79066c17f7016a4a8ae0c1aefa58c82b4dab690b4/numpy-2.4.3-cp313-cp313t-win_amd64.whl", hash = "sha256:1ec84fd7c8e652b0f4aaaf2e6e9cc8eaa9b1b80a537e06b2e3a2fb176eedcb26", size = 12452673, upload-time = "2026-03-09T07:57:38.281Z" }, + { url = "https://files.pythonhosted.org/packages/c4/04/b8cece6ead0b30c9fbd99bb835ad7ea0112ac5f39f069788c5558e3b1ab2/numpy-2.4.3-cp313-cp313t-win_arm64.whl", hash = "sha256:120df8c0a81ebbf5b9020c91439fccd85f5e018a927a39f624845be194a2be02", size = 10290907, upload-time = "2026-03-09T07:57:40.747Z" }, + { url = "https://files.pythonhosted.org/packages/70/ae/3936f79adebf8caf81bd7a599b90a561334a658be4dcc7b6329ebf4ee8de/numpy-2.4.3-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:5884ce5c7acfae1e4e1b6fde43797d10aa506074d25b531b4f54bde33c0c31d4", size = 16664563, upload-time = "2026-03-09T07:57:43.817Z" }, + { url = "https://files.pythonhosted.org/packages/9b/62/760f2b55866b496bb1fa7da2a6db076bef908110e568b02fcfc1422e2a3a/numpy-2.4.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:297837823f5bc572c5f9379b0c9f3a3365f08492cbdc33bcc3af174372ebb168", size = 14702161, upload-time = "2026-03-09T07:57:46.169Z" }, + { url = "https://files.pythonhosted.org/packages/32/af/a7a39464e2c0a21526fb4fb76e346fb172ebc92f6d1c7a07c2c139cc17b1/numpy-2.4.3-cp314-cp314-macosx_14_0_arm64.whl", hash = "sha256:a111698b4a3f8dcbe54c64a7708f049355abd603e619013c346553c1fd4ca90b", size = 5208738, upload-time = "2026-03-09T07:57:48.506Z" }, + { url = "https://files.pythonhosted.org/packages/29/8c/2a0cf86a59558fa078d83805589c2de490f29ed4fb336c14313a161d358a/numpy-2.4.3-cp314-cp314-macosx_14_0_x86_64.whl", hash = "sha256:4bd4741a6a676770e0e97fe9ab2e51de01183df3dcbcec591d26d331a40de950", size = 6543618, upload-time = "2026-03-09T07:57:50.591Z" }, + { url = "https://files.pythonhosted.org/packages/aa/b8/612ce010c0728b1c363fa4ea3aa4c22fe1c5da1de008486f8c2f5cb92fae/numpy-2.4.3-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:54f29b877279d51e210e0c80709ee14ccbbad647810e8f3d375561c45ef613dd", size = 15680676, upload-time = "2026-03-09T07:57:52.34Z" }, + { url = "https://files.pythonhosted.org/packages/a9/7e/4f120ecc54ba26ddf3dc348eeb9eb063f421de65c05fc961941798feea18/numpy-2.4.3-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:679f2a834bae9020f81534671c56fd0cc76dd7e5182f57131478e23d0dc59e24", size = 16613492, upload-time = "2026-03-09T07:57:54.91Z" }, + { url = "https://files.pythonhosted.org/packages/2c/86/1b6020db73be330c4b45d5c6ee4295d59cfeef0e3ea323959d053e5a6909/numpy-2.4.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:d84f0f881cb2225c2dfd7f78a10a5645d487a496c6668d6cc39f0f114164f3d0", size = 17031789, upload-time = "2026-03-09T07:57:57.641Z" }, + { url = "https://files.pythonhosted.org/packages/07/3a/3b90463bf41ebc21d1b7e06079f03070334374208c0f9a1f05e4ae8455e7/numpy-2.4.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:d213c7e6e8d211888cc359bab7199670a00f5b82c0978b9d1c75baf1eddbeac0", size = 18339941, upload-time = "2026-03-09T07:58:00.577Z" }, + { url = "https://files.pythonhosted.org/packages/a8/74/6d736c4cd962259fd8bae9be27363eb4883a2f9069763747347544c2a487/numpy-2.4.3-cp314-cp314-win32.whl", hash = "sha256:52077feedeff7c76ed7c9f1a0428558e50825347b7545bbb8523da2cd55c547a", size = 6007503, upload-time = "2026-03-09T07:58:03.331Z" }, + { url = "https://files.pythonhosted.org/packages/48/39/c56ef87af669364356bb011922ef0734fc49dad51964568634c72a009488/numpy-2.4.3-cp314-cp314-win_amd64.whl", hash = "sha256:0448e7f9caefb34b4b7dd2b77f21e8906e5d6f0365ad525f9f4f530b13df2afc", size = 12444915, upload-time = "2026-03-09T07:58:06.353Z" }, + { url = "https://files.pythonhosted.org/packages/9d/1f/ab8528e38d295fd349310807496fabb7cf9fe2e1f70b97bc20a483ea9d4a/numpy-2.4.3-cp314-cp314-win_arm64.whl", hash = "sha256:b44fd60341c4d9783039598efadd03617fa28d041fc37d22b62d08f2027fa0e7", size = 10494875, upload-time = "2026-03-09T07:58:08.734Z" }, + { url = "https://files.pythonhosted.org/packages/e6/ef/b7c35e4d5ef141b836658ab21a66d1a573e15b335b1d111d31f26c8ef80f/numpy-2.4.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:0a195f4216be9305a73c0e91c9b026a35f2161237cf1c6de9b681637772ea657", size = 14822225, upload-time = "2026-03-09T07:58:11.034Z" }, + { url = "https://files.pythonhosted.org/packages/cd/8d/7730fa9278cf6648639946cc816e7cc89f0d891602584697923375f801ed/numpy-2.4.3-cp314-cp314t-macosx_14_0_arm64.whl", hash = "sha256:cd32fbacb9fd1bf041bf8e89e4576b6f00b895f06d00914820ae06a616bdfef7", size = 5328769, upload-time = "2026-03-09T07:58:13.67Z" }, + { url = "https://files.pythonhosted.org/packages/47/01/d2a137317c958b074d338807c1b6a383406cdf8b8e53b075d804cc3d211d/numpy-2.4.3-cp314-cp314t-macosx_14_0_x86_64.whl", hash = "sha256:2e03c05abaee1f672e9d67bc858f300b5ccba1c21397211e8d77d98350972093", size = 6649461, upload-time = "2026-03-09T07:58:15.912Z" }, + { url = "https://files.pythonhosted.org/packages/5c/34/812ce12bc0f00272a4b0ec0d713cd237cb390666eb6206323d1cc9cedbb2/numpy-2.4.3-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7d1ce23cce91fcea443320a9d0ece9b9305d4368875bab09538f7a5b4131938a", size = 15725809, upload-time = "2026-03-09T07:58:17.787Z" }, + { url = "https://files.pythonhosted.org/packages/25/c0/2aed473a4823e905e765fee3dc2cbf504bd3e68ccb1150fbdabd5c39f527/numpy-2.4.3-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c59020932feb24ed49ffd03704fbab89f22aa9c0d4b180ff45542fe8918f5611", size = 16655242, upload-time = "2026-03-09T07:58:20.476Z" }, + { url = "https://files.pythonhosted.org/packages/f2/c8/7e052b2fc87aa0e86de23f20e2c42bd261c624748aa8efd2c78f7bb8d8c6/numpy-2.4.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:9684823a78a6cd6ad7511fc5e25b07947d1d5b5e2812c93fe99d7d4195130720", size = 17080660, upload-time = "2026-03-09T07:58:23.067Z" }, + { url = "https://files.pythonhosted.org/packages/f3/3d/0876746044db2adcb11549f214d104f2e1be00f07a67edbb4e2812094847/numpy-2.4.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:0200b25c687033316fb39f0ff4e3e690e8957a2c3c8d22499891ec58c37a3eb5", size = 18380384, upload-time = "2026-03-09T07:58:25.839Z" }, + { url = "https://files.pythonhosted.org/packages/07/12/8160bea39da3335737b10308df4f484235fd297f556745f13092aa039d3b/numpy-2.4.3-cp314-cp314t-win32.whl", hash = "sha256:5e10da9e93247e554bb1d22f8edc51847ddd7dde52d85ce31024c1b4312bfba0", size = 6154547, upload-time = "2026-03-09T07:58:28.289Z" }, + { url = "https://files.pythonhosted.org/packages/42/f3/76534f61f80d74cc9cdf2e570d3d4eeb92c2280a27c39b0aaf471eda7b48/numpy-2.4.3-cp314-cp314t-win_amd64.whl", hash = "sha256:45f003dbdffb997a03da2d1d0cb41fbd24a87507fb41605c0420a3db5bd4667b", size = 12633645, upload-time = "2026-03-09T07:58:30.384Z" }, + { url = "https://files.pythonhosted.org/packages/1f/b6/7c0d4334c15983cec7f92a69e8ce9b1e6f31857e5ee3a413ac424e6bd63d/numpy-2.4.3-cp314-cp314t-win_arm64.whl", hash = "sha256:4d382735cecd7bcf090172489a525cd7d4087bc331f7df9f60ddc9a296cf208e", size = 10565454, upload-time = "2026-03-09T07:58:33.031Z" }, + { url = "https://files.pythonhosted.org/packages/64/e4/4dab9fb43c83719c29241c535d9e07be73bea4bc0c6686c5816d8e1b6689/numpy-2.4.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:c6b124bfcafb9e8d3ed09130dbee44848c20b3e758b6bbf006e641778927c028", size = 16834892, upload-time = "2026-03-09T07:58:35.334Z" }, + { url = "https://files.pythonhosted.org/packages/c9/29/f8b6d4af90fed3dfda84ebc0df06c9833d38880c79ce954e5b661758aa31/numpy-2.4.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:76dbb9d4e43c16cf9aa711fcd8de1e2eeb27539dcefb60a1d5e9f12fae1d1ed8", size = 14893070, upload-time = "2026-03-09T07:58:37.7Z" }, + { url = "https://files.pythonhosted.org/packages/9a/04/a19b3c91dbec0a49269407f15d5753673a09832daed40c45e8150e6fa558/numpy-2.4.3-pp311-pypy311_pp73-macosx_14_0_arm64.whl", hash = "sha256:29363fbfa6f8ee855d7569c96ce524845e3d726d6c19b29eceec7dd555dab152", size = 5399609, upload-time = "2026-03-09T07:58:39.853Z" }, + { url = "https://files.pythonhosted.org/packages/79/34/4d73603f5420eab89ea8a67097b31364bf7c30f811d4dd84b1659c7476d9/numpy-2.4.3-pp311-pypy311_pp73-macosx_14_0_x86_64.whl", hash = "sha256:bc71942c789ef415a37f0d4eab90341425a00d538cd0642445d30b41023d3395", size = 6714355, upload-time = "2026-03-09T07:58:42.365Z" }, + { url = "https://files.pythonhosted.org/packages/58/ad/1100d7229bb248394939a12a8074d485b655e8ed44207d328fdd7fcebc7b/numpy-2.4.3-pp311-pypy311_pp73-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7e58765ad74dcebd3ef0208a5078fba32dc8ec3578fe84a604432950cd043d79", size = 15800434, upload-time = "2026-03-09T07:58:44.837Z" }, + { url = "https://files.pythonhosted.org/packages/0c/fd/16d710c085d28ba4feaf29ac60c936c9d662e390344f94a6beaa2ac9899b/numpy-2.4.3-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8e236dbda4e1d319d681afcbb136c0c4a8e0f1a5c58ceec2adebb547357fe857", size = 16729409, upload-time = "2026-03-09T07:58:47.972Z" }, + { url = "https://files.pythonhosted.org/packages/57/a7/b35835e278c18b85206834b3aa3abe68e77a98769c59233d1f6300284781/numpy-2.4.3-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:4b42639cdde6d24e732ff823a3fa5b701d8acad89c4142bc1d0bd6dc85200ba5", size = 12504685, upload-time = "2026-03-09T07:58:50.525Z" }, +] + +[[package]] +name = "packaging" +version = "26.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/65/ee/299d360cdc32edc7d2cf530f3accf79c4fca01e96ffc950d8a52213bd8e4/packaging-26.0.tar.gz", hash = "sha256:00243ae351a257117b6a241061796684b084ed1c516a08c48a3f7e147a9d80b4", size = 143416, upload-time = "2026-01-21T20:50:39.064Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/b9/c538f279a4e237a006a2c98387d081e9eb060d203d8ed34467cc0f0b9b53/packaging-26.0-py3-none-any.whl", hash = "sha256:b36f1fef9334a5588b4166f8bcd26a14e521f2b55e6b9de3aaa80d3ff7a37529", size = 74366, upload-time = "2026-01-21T20:50:37.788Z" }, +] + +[[package]] +name = "pandas" +version = "3.0.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, + { name = "python-dateutil" }, + { name = "tzdata", marker = "sys_platform == 'emscripten' or sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/2e/0c/b28ed414f080ee0ad153f848586d61d1878f91689950f037f976ce15f6c8/pandas-3.0.1.tar.gz", hash = "sha256:4186a699674af418f655dbd420ed87f50d56b4cd6603784279d9eef6627823c8", size = 4641901, upload-time = "2026-02-17T22:20:16.434Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ff/07/c7087e003ceee9b9a82539b40414ec557aa795b584a1a346e89180853d79/pandas-3.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:de09668c1bf3b925c07e5762291602f0d789eca1b3a781f99c1c78f6cac0e7ea", size = 10323380, upload-time = "2026-02-17T22:18:16.133Z" }, + { url = "https://files.pythonhosted.org/packages/c1/27/90683c7122febeefe84a56f2cde86a9f05f68d53885cebcc473298dfc33e/pandas-3.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:24ba315ba3d6e5806063ac6eb717504e499ce30bd8c236d8693a5fd3f084c796", size = 9923455, upload-time = "2026-02-17T22:18:19.13Z" }, + { url = "https://files.pythonhosted.org/packages/0e/f1/ed17d927f9950643bc7631aa4c99ff0cc83a37864470bc419345b656a41f/pandas-3.0.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:406ce835c55bac912f2a0dcfaf27c06d73c6b04a5dde45f1fd3169ce31337389", size = 10753464, upload-time = "2026-02-17T22:18:21.134Z" }, + { url = "https://files.pythonhosted.org/packages/2e/7c/870c7e7daec2a6c7ff2ac9e33b23317230d4e4e954b35112759ea4a924a7/pandas-3.0.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:830994d7e1f31dd7e790045235605ab61cff6c94defc774547e8b7fdfbff3dc7", size = 11255234, upload-time = "2026-02-17T22:18:24.175Z" }, + { url = "https://files.pythonhosted.org/packages/5c/39/3653fe59af68606282b989c23d1a543ceba6e8099cbcc5f1d506a7bae2aa/pandas-3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:a64ce8b0f2de1d2efd2ae40b0abe7f8ae6b29fbfb3812098ed5a6f8e235ad9bf", size = 11767299, upload-time = "2026-02-17T22:18:26.824Z" }, + { url = "https://files.pythonhosted.org/packages/9b/31/1daf3c0c94a849c7a8dab8a69697b36d313b229918002ba3e409265c7888/pandas-3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:9832c2c69da24b602c32e0c7b1b508a03949c18ba08d4d9f1c1033426685b447", size = 12333292, upload-time = "2026-02-17T22:18:28.996Z" }, + { url = "https://files.pythonhosted.org/packages/1f/67/af63f83cd6ca603a00fe8530c10a60f0879265b8be00b5930e8e78c5b30b/pandas-3.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:84f0904a69e7365f79a0c77d3cdfccbfb05bf87847e3a51a41e1426b0edb9c79", size = 9892176, upload-time = "2026-02-17T22:18:31.79Z" }, + { url = "https://files.pythonhosted.org/packages/79/ab/9c776b14ac4b7b4140788eca18468ea39894bc7340a408f1d1e379856a6b/pandas-3.0.1-cp311-cp311-win_arm64.whl", hash = "sha256:4a68773d5a778afb31d12e34f7dd4612ab90de8c6fb1d8ffe5d4a03b955082a1", size = 9151328, upload-time = "2026-02-17T22:18:35.721Z" }, + { url = "https://files.pythonhosted.org/packages/37/51/b467209c08dae2c624873d7491ea47d2b47336e5403309d433ea79c38571/pandas-3.0.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:476f84f8c20c9f5bc47252b66b4bb25e1a9fc2fa98cead96744d8116cb85771d", size = 10344357, upload-time = "2026-02-17T22:18:38.262Z" }, + { url = "https://files.pythonhosted.org/packages/7c/f1/e2567ffc8951ab371db2e40b2fe068e36b81d8cf3260f06ae508700e5504/pandas-3.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0ab749dfba921edf641d4036c4c21c0b3ea70fea478165cb98a998fb2a261955", size = 9884543, upload-time = "2026-02-17T22:18:41.476Z" }, + { url = "https://files.pythonhosted.org/packages/d7/39/327802e0b6d693182403c144edacbc27eb82907b57062f23ef5a4c4a5ea7/pandas-3.0.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b8e36891080b87823aff3640c78649b91b8ff6eea3c0d70aeabd72ea43ab069b", size = 10396030, upload-time = "2026-02-17T22:18:43.822Z" }, + { url = "https://files.pythonhosted.org/packages/3d/fe/89d77e424365280b79d99b3e1e7d606f5165af2f2ecfaf0c6d24c799d607/pandas-3.0.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:532527a701281b9dd371e2f582ed9094f4c12dd9ffb82c0c54ee28d8ac9520c4", size = 10876435, upload-time = "2026-02-17T22:18:45.954Z" }, + { url = "https://files.pythonhosted.org/packages/b5/a6/2a75320849dd154a793f69c951db759aedb8d1dd3939eeacda9bdcfa1629/pandas-3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:356e5c055ed9b0da1580d465657bc7d00635af4fd47f30afb23025352ba764d1", size = 11405133, upload-time = "2026-02-17T22:18:48.533Z" }, + { url = "https://files.pythonhosted.org/packages/58/53/1d68fafb2e02d7881df66aa53be4cd748d25cbe311f3b3c85c93ea5d30ca/pandas-3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:9d810036895f9ad6345b8f2a338dd6998a74e8483847403582cab67745bff821", size = 11932065, upload-time = "2026-02-17T22:18:50.837Z" }, + { url = "https://files.pythonhosted.org/packages/75/08/67cc404b3a966b6df27b38370ddd96b3b023030b572283d035181854aac5/pandas-3.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:536232a5fe26dd989bd633e7a0c450705fdc86a207fec7254a55e9a22950fe43", size = 9741627, upload-time = "2026-02-17T22:18:53.905Z" }, + { url = "https://files.pythonhosted.org/packages/86/4f/caf9952948fb00d23795f09b893d11f1cacb384e666854d87249530f7cbe/pandas-3.0.1-cp312-cp312-win_arm64.whl", hash = "sha256:0f463ebfd8de7f326d38037c7363c6dacb857c5881ab8961fb387804d6daf2f7", size = 9052483, upload-time = "2026-02-17T22:18:57.31Z" }, + { url = "https://files.pythonhosted.org/packages/0b/48/aad6ec4f8d007534c091e9a7172b3ec1b1ee6d99a9cbb936b5eab6c6cf58/pandas-3.0.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:5272627187b5d9c20e55d27caf5f2cd23e286aba25cadf73c8590e432e2b7262", size = 10317509, upload-time = "2026-02-17T22:18:59.498Z" }, + { url = "https://files.pythonhosted.org/packages/a8/14/5990826f779f79148ae9d3a2c39593dc04d61d5d90541e71b5749f35af95/pandas-3.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:661e0f665932af88c7877f31da0dc743fe9c8f2524bdffe23d24fdcb67ef9d56", size = 9860561, upload-time = "2026-02-17T22:19:02.265Z" }, + { url = "https://files.pythonhosted.org/packages/fa/80/f01ff54664b6d70fed71475543d108a9b7c888e923ad210795bef04ffb7d/pandas-3.0.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:75e6e292ff898679e47a2199172593d9f6107fd2dd3617c22c2946e97d5df46e", size = 10365506, upload-time = "2026-02-17T22:19:05.017Z" }, + { url = "https://files.pythonhosted.org/packages/f2/85/ab6d04733a7d6ff32bfc8382bf1b07078228f5d6ebec5266b91bfc5c4ff7/pandas-3.0.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1ff8cf1d2896e34343197685f432450ec99a85ba8d90cce2030c5eee2ef98791", size = 10873196, upload-time = "2026-02-17T22:19:07.204Z" }, + { url = "https://files.pythonhosted.org/packages/48/a9/9301c83d0b47c23ac5deab91c6b39fd98d5b5db4d93b25df8d381451828f/pandas-3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:eca8b4510f6763f3d37359c2105df03a7a221a508f30e396a51d0713d462e68a", size = 11370859, upload-time = "2026-02-17T22:19:09.436Z" }, + { url = "https://files.pythonhosted.org/packages/59/fe/0c1fc5bd2d29c7db2ab372330063ad555fb83e08422829c785f5ec2176ca/pandas-3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:06aff2ad6f0b94a17822cf8b83bbb563b090ed82ff4fe7712db2ce57cd50d9b8", size = 11924584, upload-time = "2026-02-17T22:19:11.562Z" }, + { url = "https://files.pythonhosted.org/packages/d6/7d/216a1588b65a7aa5f4535570418a599d943c85afb1d95b0876fc00aa1468/pandas-3.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:9fea306c783e28884c29057a1d9baa11a349bbf99538ec1da44c8476563d1b25", size = 9742769, upload-time = "2026-02-17T22:19:13.926Z" }, + { url = "https://files.pythonhosted.org/packages/c4/cb/810a22a6af9a4e97c8ab1c946b47f3489c5bca5adc483ce0ffc84c9cc768/pandas-3.0.1-cp313-cp313-win_arm64.whl", hash = "sha256:a8d37a43c52917427e897cb2e429f67a449327394396a81034a4449b99afda59", size = 9043855, upload-time = "2026-02-17T22:19:16.09Z" }, + { url = "https://files.pythonhosted.org/packages/92/fa/423c89086cca1f039cf1253c3ff5b90f157b5b3757314aa635f6bf3e30aa/pandas-3.0.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:d54855f04f8246ed7b6fc96b05d4871591143c46c0b6f4af874764ed0d2d6f06", size = 10752673, upload-time = "2026-02-17T22:19:18.304Z" }, + { url = "https://files.pythonhosted.org/packages/22/23/b5a08ec1f40020397f0faba72f1e2c11f7596a6169c7b3e800abff0e433f/pandas-3.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:4e1b677accee34a09e0dc2ce5624e4a58a1870ffe56fc021e9caf7f23cd7668f", size = 10404967, upload-time = "2026-02-17T22:19:20.726Z" }, + { url = "https://files.pythonhosted.org/packages/5c/81/94841f1bb4afdc2b52a99daa895ac2c61600bb72e26525ecc9543d453ebc/pandas-3.0.1-cp313-cp313t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a9cabbdcd03f1b6cd254d6dda8ae09b0252524be1592594c00b7895916cb1324", size = 10320575, upload-time = "2026-02-17T22:19:24.919Z" }, + { url = "https://files.pythonhosted.org/packages/0a/8b/2ae37d66a5342a83adadfd0cb0b4bf9c3c7925424dd5f40d15d6cfaa35ee/pandas-3.0.1-cp313-cp313t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5ae2ab1f166668b41e770650101e7090824fd34d17915dd9cd479f5c5e0065e9", size = 10710921, upload-time = "2026-02-17T22:19:27.181Z" }, + { url = "https://files.pythonhosted.org/packages/a2/61/772b2e2757855e232b7ccf7cb8079a5711becb3a97f291c953def15a833f/pandas-3.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6bf0603c2e30e2cafac32807b06435f28741135cb8697eae8b28c7d492fc7d76", size = 11334191, upload-time = "2026-02-17T22:19:29.411Z" }, + { url = "https://files.pythonhosted.org/packages/1b/08/b16c6df3ef555d8495d1d265a7963b65be166785d28f06a350913a4fac78/pandas-3.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:6c426422973973cae1f4a23e51d4ae85974f44871b24844e4f7de752dd877098", size = 11782256, upload-time = "2026-02-17T22:19:32.34Z" }, + { url = "https://files.pythonhosted.org/packages/55/80/178af0594890dee17e239fca96d3d8670ba0f5ff59b7d0439850924a9c09/pandas-3.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:b03f91ae8c10a85c1613102c7bef5229b5379f343030a3ccefeca8a33414cf35", size = 10485047, upload-time = "2026-02-17T22:19:34.605Z" }, + { url = "https://files.pythonhosted.org/packages/bb/8b/4bb774a998b97e6c2fd62a9e6cfdaae133b636fd1c468f92afb4ae9a447a/pandas-3.0.1-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:99d0f92ed92d3083d140bf6b97774f9f13863924cf3f52a70711f4e7588f9d0a", size = 10322465, upload-time = "2026-02-17T22:19:36.803Z" }, + { url = "https://files.pythonhosted.org/packages/72/3a/5b39b51c64159f470f1ca3b1c2a87da290657ca022f7cd11442606f607d1/pandas-3.0.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:3b66857e983208654294bb6477b8a63dee26b37bdd0eb34d010556e91261784f", size = 9910632, upload-time = "2026-02-17T22:19:39.001Z" }, + { url = "https://files.pythonhosted.org/packages/4e/f7/b449ffb3f68c11da12fc06fbf6d2fa3a41c41e17d0284d23a79e1c13a7e4/pandas-3.0.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:56cf59638bf24dc9bdf2154c81e248b3289f9a09a6d04e63608c159022352749", size = 10440535, upload-time = "2026-02-17T22:19:41.157Z" }, + { url = "https://files.pythonhosted.org/packages/55/77/6ea82043db22cb0f2bbfe7198da3544000ddaadb12d26be36e19b03a2dc5/pandas-3.0.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c1a9f55e0f46951874b863d1f3906dcb57df2d9be5c5847ba4dfb55b2c815249", size = 10893940, upload-time = "2026-02-17T22:19:43.493Z" }, + { url = "https://files.pythonhosted.org/packages/03/30/f1b502a72468c89412c1b882a08f6eed8a4ee9dc033f35f65d0663df6081/pandas-3.0.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:1849f0bba9c8a2fb0f691d492b834cc8dadf617e29015c66e989448d58d011ee", size = 11442711, upload-time = "2026-02-17T22:19:46.074Z" }, + { url = "https://files.pythonhosted.org/packages/0d/f0/ebb6ddd8fc049e98cabac5c2924d14d1dda26a20adb70d41ea2e428d3ec4/pandas-3.0.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:c3d288439e11b5325b02ae6e9cc83e6805a62c40c5a6220bea9beb899c073b1c", size = 11963918, upload-time = "2026-02-17T22:19:48.838Z" }, + { url = "https://files.pythonhosted.org/packages/09/f8/8ce132104074f977f907442790eaae24e27bce3b3b454e82faa3237ff098/pandas-3.0.1-cp314-cp314-win_amd64.whl", hash = "sha256:93325b0fe372d192965f4cca88d97667f49557398bbf94abdda3bf1b591dbe66", size = 9862099, upload-time = "2026-02-17T22:19:51.081Z" }, + { url = "https://files.pythonhosted.org/packages/e6/b7/6af9aac41ef2456b768ef0ae60acf8abcebb450a52043d030a65b4b7c9bd/pandas-3.0.1-cp314-cp314-win_arm64.whl", hash = "sha256:97ca08674e3287c7148f4858b01136f8bdfe7202ad25ad04fec602dd1d29d132", size = 9185333, upload-time = "2026-02-17T22:19:53.266Z" }, + { url = "https://files.pythonhosted.org/packages/66/fc/848bb6710bc6061cb0c5badd65b92ff75c81302e0e31e496d00029fe4953/pandas-3.0.1-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:58eeb1b2e0fb322befcf2bbc9ba0af41e616abadb3d3414a6bc7167f6cbfce32", size = 10772664, upload-time = "2026-02-17T22:19:55.806Z" }, + { url = "https://files.pythonhosted.org/packages/69/5c/866a9bbd0f79263b4b0db6ec1a341be13a1473323f05c122388e0f15b21d/pandas-3.0.1-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:cd9af1276b5ca9e298bd79a26bda32fa9cc87ed095b2a9a60978d2ca058eaf87", size = 10421286, upload-time = "2026-02-17T22:19:58.091Z" }, + { url = "https://files.pythonhosted.org/packages/51/a4/2058fb84fb1cfbfb2d4a6d485e1940bb4ad5716e539d779852494479c580/pandas-3.0.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:94f87a04984d6b63788327cd9f79dda62b7f9043909d2440ceccf709249ca988", size = 10342050, upload-time = "2026-02-17T22:20:01.376Z" }, + { url = "https://files.pythonhosted.org/packages/22/1b/674e89996cc4be74db3c4eb09240c4bb549865c9c3f5d9b086ff8fcfbf00/pandas-3.0.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:85fe4c4df62e1e20f9db6ebfb88c844b092c22cd5324bdcf94bfa2fc1b391221", size = 10740055, upload-time = "2026-02-17T22:20:04.328Z" }, + { url = "https://files.pythonhosted.org/packages/d0/f8/e954b750764298c22fa4614376531fe63c521ef517e7059a51f062b87dca/pandas-3.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:331ca75a2f8672c365ae25c0b29e46f5ac0c6551fdace8eec4cd65e4fac271ff", size = 11357632, upload-time = "2026-02-17T22:20:06.647Z" }, + { url = "https://files.pythonhosted.org/packages/6d/02/c6e04b694ffd68568297abd03588b6d30295265176a5c01b7459d3bc35a3/pandas-3.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:15860b1fdb1973fffade772fdb931ccf9b2f400a3f5665aef94a00445d7d8dd5", size = 11810974, upload-time = "2026-02-17T22:20:08.946Z" }, + { url = "https://files.pythonhosted.org/packages/89/41/d7dfb63d2407f12055215070c42fc6ac41b66e90a2946cdc5e759058398b/pandas-3.0.1-cp314-cp314t-win_amd64.whl", hash = "sha256:44f1364411d5670efa692b146c748f4ed013df91ee91e9bec5677fb1fd58b937", size = 10884622, upload-time = "2026-02-17T22:20:11.711Z" }, + { url = "https://files.pythonhosted.org/packages/68/b0/34937815889fa982613775e4b97fddd13250f11012d769949c5465af2150/pandas-3.0.1-cp314-cp314t-win_arm64.whl", hash = "sha256:108dd1790337a494aa80e38def654ca3f0968cf4f362c85f44c15e471667102d", size = 9452085, upload-time = "2026-02-17T22:20:14.331Z" }, +] + +[[package]] +name = "pillow" +version = "12.1.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1f/42/5c74462b4fd957fcd7b13b04fb3205ff8349236ea74c7c375766d6c82288/pillow-12.1.1.tar.gz", hash = "sha256:9ad8fa5937ab05218e2b6a4cff30295ad35afd2f83ac592e68c0d871bb0fdbc4", size = 46980264, upload-time = "2026-02-11T04:23:07.146Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2b/46/5da1ec4a5171ee7bf1a0efa064aba70ba3d6e0788ce3f5acd1375d23c8c0/pillow-12.1.1-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:e879bb6cd5c73848ef3b2b48b8af9ff08c5b71ecda8048b7dd22d8a33f60be32", size = 5304084, upload-time = "2026-02-11T04:20:27.501Z" }, + { url = "https://files.pythonhosted.org/packages/78/93/a29e9bc02d1cf557a834da780ceccd54e02421627200696fcf805ebdc3fb/pillow-12.1.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:365b10bb9417dd4498c0e3b128018c4a624dc11c7b97d8cc54effe3b096f4c38", size = 4657866, upload-time = "2026-02-11T04:20:29.827Z" }, + { url = "https://files.pythonhosted.org/packages/13/84/583a4558d492a179d31e4aae32eadce94b9acf49c0337c4ce0b70e0a01f2/pillow-12.1.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:d4ce8e329c93845720cd2014659ca67eac35f6433fd3050393d85f3ecef0dad5", size = 6232148, upload-time = "2026-02-11T04:20:31.329Z" }, + { url = "https://files.pythonhosted.org/packages/d5/e2/53c43334bbbb2d3b938978532fbda8e62bb6e0b23a26ce8592f36bcc4987/pillow-12.1.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:fc354a04072b765eccf2204f588a7a532c9511e8b9c7f900e1b64e3e33487090", size = 8038007, upload-time = "2026-02-11T04:20:34.225Z" }, + { url = "https://files.pythonhosted.org/packages/b8/a6/3d0e79c8a9d58150dd98e199d7c1c56861027f3829a3a60b3c2784190180/pillow-12.1.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7e7976bf1910a8116b523b9f9f58bf410f3e8aa330cd9a2bb2953f9266ab49af", size = 6345418, upload-time = "2026-02-11T04:20:35.858Z" }, + { url = "https://files.pythonhosted.org/packages/a2/c8/46dfeac5825e600579157eea177be43e2f7ff4a99da9d0d0a49533509ac5/pillow-12.1.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:597bd9c8419bc7c6af5604e55847789b69123bbe25d65cc6ad3012b4f3c98d8b", size = 7034590, upload-time = "2026-02-11T04:20:37.91Z" }, + { url = "https://files.pythonhosted.org/packages/af/bf/e6f65d3db8a8bbfeaf9e13cc0417813f6319863a73de934f14b2229ada18/pillow-12.1.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:2c1fc0f2ca5f96a3c8407e41cca26a16e46b21060fe6d5b099d2cb01412222f5", size = 6458655, upload-time = "2026-02-11T04:20:39.496Z" }, + { url = "https://files.pythonhosted.org/packages/f9/c2/66091f3f34a25894ca129362e510b956ef26f8fb67a0e6417bc5744e56f1/pillow-12.1.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:578510d88c6229d735855e1f278aa305270438d36a05031dfaae5067cc8eb04d", size = 7159286, upload-time = "2026-02-11T04:20:41.139Z" }, + { url = "https://files.pythonhosted.org/packages/7b/5a/24bc8eb526a22f957d0cec6243146744966d40857e3d8deb68f7902ca6c1/pillow-12.1.1-cp311-cp311-win32.whl", hash = "sha256:7311c0a0dcadb89b36b7025dfd8326ecfa36964e29913074d47382706e516a7c", size = 6328663, upload-time = "2026-02-11T04:20:43.184Z" }, + { url = "https://files.pythonhosted.org/packages/31/03/bef822e4f2d8f9d7448c133d0a18185d3cce3e70472774fffefe8b0ed562/pillow-12.1.1-cp311-cp311-win_amd64.whl", hash = "sha256:fbfa2a7c10cc2623f412753cddf391c7f971c52ca40a3f65dc5039b2939e8563", size = 7031448, upload-time = "2026-02-11T04:20:44.696Z" }, + { url = "https://files.pythonhosted.org/packages/49/70/f76296f53610bd17b2e7d31728b8b7825e3ac3b5b3688b51f52eab7c0818/pillow-12.1.1-cp311-cp311-win_arm64.whl", hash = "sha256:b81b5e3511211631b3f672a595e3221252c90af017e399056d0faabb9538aa80", size = 2453651, upload-time = "2026-02-11T04:20:46.243Z" }, + { url = "https://files.pythonhosted.org/packages/07/d3/8df65da0d4df36b094351dce696f2989bec731d4f10e743b1c5f4da4d3bf/pillow-12.1.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:ab323b787d6e18b3d91a72fc99b1a2c28651e4358749842b8f8dfacd28ef2052", size = 5262803, upload-time = "2026-02-11T04:20:47.653Z" }, + { url = "https://files.pythonhosted.org/packages/d6/71/5026395b290ff404b836e636f51d7297e6c83beceaa87c592718747e670f/pillow-12.1.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:adebb5bee0f0af4909c30db0d890c773d1a92ffe83da908e2e9e720f8edf3984", size = 4657601, upload-time = "2026-02-11T04:20:49.328Z" }, + { url = "https://files.pythonhosted.org/packages/b1/2e/1001613d941c67442f745aff0f7cc66dd8df9a9c084eb497e6a543ee6f7e/pillow-12.1.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:bb66b7cc26f50977108790e2456b7921e773f23db5630261102233eb355a3b79", size = 6234995, upload-time = "2026-02-11T04:20:51.032Z" }, + { url = "https://files.pythonhosted.org/packages/07/26/246ab11455b2549b9233dbd44d358d033a2f780fa9007b61a913c5b2d24e/pillow-12.1.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:aee2810642b2898bb187ced9b349e95d2a7272930796e022efaf12e99dccd293", size = 8045012, upload-time = "2026-02-11T04:20:52.882Z" }, + { url = "https://files.pythonhosted.org/packages/b2/8b/07587069c27be7535ac1fe33874e32de118fbd34e2a73b7f83436a88368c/pillow-12.1.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a0b1cd6232e2b618adcc54d9882e4e662a089d5768cd188f7c245b4c8c44a397", size = 6349638, upload-time = "2026-02-11T04:20:54.444Z" }, + { url = "https://files.pythonhosted.org/packages/ff/79/6df7b2ee763d619cda2fb4fea498e5f79d984dae304d45a8999b80d6cf5c/pillow-12.1.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7aac39bcf8d4770d089588a2e1dd111cbaa42df5a94be3114222057d68336bd0", size = 7041540, upload-time = "2026-02-11T04:20:55.97Z" }, + { url = "https://files.pythonhosted.org/packages/2c/5e/2ba19e7e7236d7529f4d873bdaf317a318896bac289abebd4bb00ef247f0/pillow-12.1.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:ab174cd7d29a62dd139c44bf74b698039328f45cb03b4596c43473a46656b2f3", size = 6462613, upload-time = "2026-02-11T04:20:57.542Z" }, + { url = "https://files.pythonhosted.org/packages/03/03/31216ec124bb5c3dacd74ce8efff4cc7f52643653bad4825f8f08c697743/pillow-12.1.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:339ffdcb7cbeaa08221cd401d517d4b1fe7a9ed5d400e4a8039719238620ca35", size = 7166745, upload-time = "2026-02-11T04:20:59.196Z" }, + { url = "https://files.pythonhosted.org/packages/1f/e7/7c4552d80052337eb28653b617eafdef39adfb137c49dd7e831b8dc13bc5/pillow-12.1.1-cp312-cp312-win32.whl", hash = "sha256:5d1f9575a12bed9e9eedd9a4972834b08c97a352bd17955ccdebfeca5913fa0a", size = 6328823, upload-time = "2026-02-11T04:21:01.385Z" }, + { url = "https://files.pythonhosted.org/packages/3d/17/688626d192d7261bbbf98846fc98995726bddc2c945344b65bec3a29d731/pillow-12.1.1-cp312-cp312-win_amd64.whl", hash = "sha256:21329ec8c96c6e979cd0dfd29406c40c1d52521a90544463057d2aaa937d66a6", size = 7033367, upload-time = "2026-02-11T04:21:03.536Z" }, + { url = "https://files.pythonhosted.org/packages/ed/fe/a0ef1f73f939b0eca03ee2c108d0043a87468664770612602c63266a43c4/pillow-12.1.1-cp312-cp312-win_arm64.whl", hash = "sha256:af9a332e572978f0218686636610555ae3defd1633597be015ed50289a03c523", size = 2453811, upload-time = "2026-02-11T04:21:05.116Z" }, + { url = "https://files.pythonhosted.org/packages/d5/11/6db24d4bd7685583caeae54b7009584e38da3c3d4488ed4cd25b439de486/pillow-12.1.1-cp313-cp313-ios_13_0_arm64_iphoneos.whl", hash = "sha256:d242e8ac078781f1de88bf823d70c1a9b3c7950a44cdf4b7c012e22ccbcd8e4e", size = 4062689, upload-time = "2026-02-11T04:21:06.804Z" }, + { url = "https://files.pythonhosted.org/packages/33/c0/ce6d3b1fe190f0021203e0d9b5b99e57843e345f15f9ef22fcd43842fd21/pillow-12.1.1-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:02f84dfad02693676692746df05b89cf25597560db2857363a208e393429f5e9", size = 4138535, upload-time = "2026-02-11T04:21:08.452Z" }, + { url = "https://files.pythonhosted.org/packages/a0/c6/d5eb6a4fb32a3f9c21a8c7613ec706534ea1cf9f4b3663e99f0d83f6fca8/pillow-12.1.1-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:e65498daf4b583091ccbb2556c7000abf0f3349fcd57ef7adc9a84a394ed29f6", size = 3601364, upload-time = "2026-02-11T04:21:10.194Z" }, + { url = "https://files.pythonhosted.org/packages/14/a1/16c4b823838ba4c9c52c0e6bbda903a3fe5a1bdbf1b8eb4fff7156f3e318/pillow-12.1.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:6c6db3b84c87d48d0088943bf33440e0c42370b99b1c2a7989216f7b42eede60", size = 5262561, upload-time = "2026-02-11T04:21:11.742Z" }, + { url = "https://files.pythonhosted.org/packages/bb/ad/ad9dc98ff24f485008aa5cdedaf1a219876f6f6c42a4626c08bc4e80b120/pillow-12.1.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:8b7e5304e34942bf62e15184219a7b5ad4ff7f3bb5cca4d984f37df1a0e1aee2", size = 4657460, upload-time = "2026-02-11T04:21:13.786Z" }, + { url = "https://files.pythonhosted.org/packages/9e/1b/f1a4ea9a895b5732152789326202a82464d5254759fbacae4deea3069334/pillow-12.1.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:18e5bddd742a44b7e6b1e773ab5db102bd7a94c32555ba656e76d319d19c3850", size = 6232698, upload-time = "2026-02-11T04:21:15.949Z" }, + { url = "https://files.pythonhosted.org/packages/95/f4/86f51b8745070daf21fd2e5b1fe0eb35d4db9ca26e6d58366562fb56a743/pillow-12.1.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:fc44ef1f3de4f45b50ccf9136999d71abb99dca7706bc75d222ed350b9fd2289", size = 8041706, upload-time = "2026-02-11T04:21:17.723Z" }, + { url = "https://files.pythonhosted.org/packages/29/9b/d6ecd956bb1266dd1045e995cce9b8d77759e740953a1c9aad9502a0461e/pillow-12.1.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5a8eb7ed8d4198bccbd07058416eeec51686b498e784eda166395a23eb99138e", size = 6346621, upload-time = "2026-02-11T04:21:19.547Z" }, + { url = "https://files.pythonhosted.org/packages/71/24/538bff45bde96535d7d998c6fed1a751c75ac7c53c37c90dc2601b243893/pillow-12.1.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:47b94983da0c642de92ced1702c5b6c292a84bd3a8e1d1702ff923f183594717", size = 7038069, upload-time = "2026-02-11T04:21:21.378Z" }, + { url = "https://files.pythonhosted.org/packages/94/0e/58cb1a6bc48f746bc4cb3adb8cabff73e2742c92b3bf7a220b7cf69b9177/pillow-12.1.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:518a48c2aab7ce596d3bf79d0e275661b846e86e4d0e7dec34712c30fe07f02a", size = 6460040, upload-time = "2026-02-11T04:21:23.148Z" }, + { url = "https://files.pythonhosted.org/packages/6c/57/9045cb3ff11eeb6c1adce3b2d60d7d299d7b273a2e6c8381a524abfdc474/pillow-12.1.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a550ae29b95c6dc13cf69e2c9dc5747f814c54eeb2e32d683e5e93af56caa029", size = 7164523, upload-time = "2026-02-11T04:21:25.01Z" }, + { url = "https://files.pythonhosted.org/packages/73/f2/9be9cb99f2175f0d4dbadd6616ce1bf068ee54a28277ea1bf1fbf729c250/pillow-12.1.1-cp313-cp313-win32.whl", hash = "sha256:a003d7422449f6d1e3a34e3dd4110c22148336918ddbfc6a32581cd54b2e0b2b", size = 6332552, upload-time = "2026-02-11T04:21:27.238Z" }, + { url = "https://files.pythonhosted.org/packages/3f/eb/b0834ad8b583d7d9d42b80becff092082a1c3c156bb582590fcc973f1c7c/pillow-12.1.1-cp313-cp313-win_amd64.whl", hash = "sha256:344cf1e3dab3be4b1fa08e449323d98a2a3f819ad20f4b22e77a0ede31f0faa1", size = 7040108, upload-time = "2026-02-11T04:21:29.462Z" }, + { url = "https://files.pythonhosted.org/packages/d5/7d/fc09634e2aabdd0feabaff4a32f4a7d97789223e7c2042fd805ea4b4d2c2/pillow-12.1.1-cp313-cp313-win_arm64.whl", hash = "sha256:5c0dd1636633e7e6a0afe7bf6a51a14992b7f8e60de5789018ebbdfae55b040a", size = 2453712, upload-time = "2026-02-11T04:21:31.072Z" }, + { url = "https://files.pythonhosted.org/packages/19/2a/b9d62794fc8a0dd14c1943df68347badbd5511103e0d04c035ffe5cf2255/pillow-12.1.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:0330d233c1a0ead844fc097a7d16c0abff4c12e856c0b325f231820fee1f39da", size = 5264880, upload-time = "2026-02-11T04:21:32.865Z" }, + { url = "https://files.pythonhosted.org/packages/26/9d/e03d857d1347fa5ed9247e123fcd2a97b6220e15e9cb73ca0a8d91702c6e/pillow-12.1.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:5dae5f21afb91322f2ff791895ddd8889e5e947ff59f71b46041c8ce6db790bc", size = 4660616, upload-time = "2026-02-11T04:21:34.97Z" }, + { url = "https://files.pythonhosted.org/packages/f7/ec/8a6d22afd02570d30954e043f09c32772bfe143ba9285e2fdb11284952cd/pillow-12.1.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:2e0c664be47252947d870ac0d327fea7e63985a08794758aa8af5b6cb6ec0c9c", size = 6269008, upload-time = "2026-02-11T04:21:36.623Z" }, + { url = "https://files.pythonhosted.org/packages/3d/1d/6d875422c9f28a4a361f495a5f68d9de4a66941dc2c619103ca335fa6446/pillow-12.1.1-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:691ab2ac363b8217f7d31b3497108fb1f50faab2f75dfb03284ec2f217e87bf8", size = 8073226, upload-time = "2026-02-11T04:21:38.585Z" }, + { url = "https://files.pythonhosted.org/packages/a1/cd/134b0b6ee5eda6dc09e25e24b40fdafe11a520bc725c1d0bbaa5e00bf95b/pillow-12.1.1-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e9e8064fb1cc019296958595f6db671fba95209e3ceb0c4734c9baf97de04b20", size = 6380136, upload-time = "2026-02-11T04:21:40.562Z" }, + { url = "https://files.pythonhosted.org/packages/7a/a9/7628f013f18f001c1b98d8fffe3452f306a70dc6aba7d931019e0492f45e/pillow-12.1.1-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:472a8d7ded663e6162dafdf20015c486a7009483ca671cece7a9279b512fcb13", size = 7067129, upload-time = "2026-02-11T04:21:42.521Z" }, + { url = "https://files.pythonhosted.org/packages/1e/f8/66ab30a2193b277785601e82ee2d49f68ea575d9637e5e234faaa98efa4c/pillow-12.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:89b54027a766529136a06cfebeecb3a04900397a3590fd252160b888479517bf", size = 6491807, upload-time = "2026-02-11T04:21:44.22Z" }, + { url = "https://files.pythonhosted.org/packages/da/0b/a877a6627dc8318fdb84e357c5e1a758c0941ab1ddffdafd231983788579/pillow-12.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:86172b0831b82ce4f7877f280055892b31179e1576aa00d0df3bb1bbf8c3e524", size = 7190954, upload-time = "2026-02-11T04:21:46.114Z" }, + { url = "https://files.pythonhosted.org/packages/83/43/6f732ff85743cf746b1361b91665d9f5155e1483817f693f8d57ea93147f/pillow-12.1.1-cp313-cp313t-win32.whl", hash = "sha256:44ce27545b6efcf0fdbdceb31c9a5bdea9333e664cda58a7e674bb74608b3986", size = 6336441, upload-time = "2026-02-11T04:21:48.22Z" }, + { url = "https://files.pythonhosted.org/packages/3b/44/e865ef3986611bb75bfabdf94a590016ea327833f434558801122979cd0e/pillow-12.1.1-cp313-cp313t-win_amd64.whl", hash = "sha256:a285e3eb7a5a45a2ff504e31f4a8d1b12ef62e84e5411c6804a42197c1cf586c", size = 7045383, upload-time = "2026-02-11T04:21:50.015Z" }, + { url = "https://files.pythonhosted.org/packages/a8/c6/f4fb24268d0c6908b9f04143697ea18b0379490cb74ba9e8d41b898bd005/pillow-12.1.1-cp313-cp313t-win_arm64.whl", hash = "sha256:cc7d296b5ea4d29e6570dabeaed58d31c3fea35a633a69679fb03d7664f43fb3", size = 2456104, upload-time = "2026-02-11T04:21:51.633Z" }, + { url = "https://files.pythonhosted.org/packages/03/d0/bebb3ffbf31c5a8e97241476c4cf8b9828954693ce6744b4a2326af3e16b/pillow-12.1.1-cp314-cp314-ios_13_0_arm64_iphoneos.whl", hash = "sha256:417423db963cb4be8bac3fc1204fe61610f6abeed1580a7a2cbb2fbda20f12af", size = 4062652, upload-time = "2026-02-11T04:21:53.19Z" }, + { url = "https://files.pythonhosted.org/packages/2d/c0/0e16fb0addda4851445c28f8350d8c512f09de27bbb0d6d0bbf8b6709605/pillow-12.1.1-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:b957b71c6b2387610f556a7eb0828afbe40b4a98036fc0d2acfa5a44a0c2036f", size = 4138823, upload-time = "2026-02-11T04:22:03.088Z" }, + { url = "https://files.pythonhosted.org/packages/6b/fb/6170ec655d6f6bb6630a013dd7cf7bc218423d7b5fa9071bf63dc32175ae/pillow-12.1.1-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:097690ba1f2efdeb165a20469d59d8bb03c55fb6621eb2041a060ae8ea3e9642", size = 3601143, upload-time = "2026-02-11T04:22:04.909Z" }, + { url = "https://files.pythonhosted.org/packages/59/04/dc5c3f297510ba9a6837cbb318b87dd2b8f73eb41a43cc63767f65cb599c/pillow-12.1.1-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:2815a87ab27848db0321fb78c7f0b2c8649dee134b7f2b80c6a45c6831d75ccd", size = 5266254, upload-time = "2026-02-11T04:22:07.656Z" }, + { url = "https://files.pythonhosted.org/packages/05/30/5db1236b0d6313f03ebf97f5e17cda9ca060f524b2fcc875149a8360b21c/pillow-12.1.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:f7ed2c6543bad5a7d5530eb9e78c53132f93dfa44a28492db88b41cdab885202", size = 4657499, upload-time = "2026-02-11T04:22:09.613Z" }, + { url = "https://files.pythonhosted.org/packages/6f/18/008d2ca0eb612e81968e8be0bbae5051efba24d52debf930126d7eaacbba/pillow-12.1.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:652a2c9ccfb556235b2b501a3a7cf3742148cd22e04b5625c5fe057ea3e3191f", size = 6232137, upload-time = "2026-02-11T04:22:11.434Z" }, + { url = "https://files.pythonhosted.org/packages/70/f1/f14d5b8eeb4b2cd62b9f9f847eb6605f103df89ef619ac68f92f748614ea/pillow-12.1.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:d6e4571eedf43af33d0fc233a382a76e849badbccdf1ac438841308652a08e1f", size = 8042721, upload-time = "2026-02-11T04:22:13.321Z" }, + { url = "https://files.pythonhosted.org/packages/5a/d6/17824509146e4babbdabf04d8171491fa9d776f7061ff6e727522df9bd03/pillow-12.1.1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b574c51cf7d5d62e9be37ba446224b59a2da26dc4c1bb2ecbe936a4fb1a7cb7f", size = 6347798, upload-time = "2026-02-11T04:22:15.449Z" }, + { url = "https://files.pythonhosted.org/packages/d1/ee/c85a38a9ab92037a75615aba572c85ea51e605265036e00c5b67dfafbfe2/pillow-12.1.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a37691702ed687799de29a518d63d4682d9016932db66d4e90c345831b02fb4e", size = 7039315, upload-time = "2026-02-11T04:22:17.24Z" }, + { url = "https://files.pythonhosted.org/packages/ec/f3/bc8ccc6e08a148290d7523bde4d9a0d6c981db34631390dc6e6ec34cacf6/pillow-12.1.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:f95c00d5d6700b2b890479664a06e754974848afaae5e21beb4d83c106923fd0", size = 6462360, upload-time = "2026-02-11T04:22:19.111Z" }, + { url = "https://files.pythonhosted.org/packages/f6/ab/69a42656adb1d0665ab051eec58a41f169ad295cf81ad45406963105408f/pillow-12.1.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:559b38da23606e68681337ad74622c4dbba02254fc9cb4488a305dd5975c7eeb", size = 7165438, upload-time = "2026-02-11T04:22:21.041Z" }, + { url = "https://files.pythonhosted.org/packages/02/46/81f7aa8941873f0f01d4b55cc543b0a3d03ec2ee30d617a0448bf6bd6dec/pillow-12.1.1-cp314-cp314-win32.whl", hash = "sha256:03edcc34d688572014ff223c125a3f77fb08091e4607e7745002fc214070b35f", size = 6431503, upload-time = "2026-02-11T04:22:22.833Z" }, + { url = "https://files.pythonhosted.org/packages/40/72/4c245f7d1044b67affc7f134a09ea619d4895333d35322b775b928180044/pillow-12.1.1-cp314-cp314-win_amd64.whl", hash = "sha256:50480dcd74fa63b8e78235957d302d98d98d82ccbfac4c7e12108ba9ecbdba15", size = 7176748, upload-time = "2026-02-11T04:22:24.64Z" }, + { url = "https://files.pythonhosted.org/packages/e4/ad/8a87bdbe038c5c698736e3348af5c2194ffb872ea52f11894c95f9305435/pillow-12.1.1-cp314-cp314-win_arm64.whl", hash = "sha256:5cb1785d97b0c3d1d1a16bc1d710c4a0049daefc4935f3a8f31f827f4d3d2e7f", size = 2544314, upload-time = "2026-02-11T04:22:26.685Z" }, + { url = "https://files.pythonhosted.org/packages/6c/9d/efd18493f9de13b87ede7c47e69184b9e859e4427225ea962e32e56a49bc/pillow-12.1.1-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:1f90cff8aa76835cba5769f0b3121a22bd4eb9e6884cfe338216e557a9a548b8", size = 5268612, upload-time = "2026-02-11T04:22:29.884Z" }, + { url = "https://files.pythonhosted.org/packages/f8/f1/4f42eb2b388eb2ffc660dcb7f7b556c1015c53ebd5f7f754965ef997585b/pillow-12.1.1-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:1f1be78ce9466a7ee64bfda57bdba0f7cc499d9794d518b854816c41bf0aa4e9", size = 4660567, upload-time = "2026-02-11T04:22:31.799Z" }, + { url = "https://files.pythonhosted.org/packages/01/54/df6ef130fa43e4b82e32624a7b821a2be1c5653a5fdad8469687a7db4e00/pillow-12.1.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:42fc1f4677106188ad9a55562bbade416f8b55456f522430fadab3cef7cd4e60", size = 6269951, upload-time = "2026-02-11T04:22:33.921Z" }, + { url = "https://files.pythonhosted.org/packages/a9/48/618752d06cc44bb4aae8ce0cd4e6426871929ed7b46215638088270d9b34/pillow-12.1.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:98edb152429ab62a1818039744d8fbb3ccab98a7c29fc3d5fcef158f3f1f68b7", size = 8074769, upload-time = "2026-02-11T04:22:35.877Z" }, + { url = "https://files.pythonhosted.org/packages/c3/bd/f1d71eb39a72fa088d938655afba3e00b38018d052752f435838961127d8/pillow-12.1.1-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d470ab1178551dd17fdba0fef463359c41aaa613cdcd7ff8373f54be629f9f8f", size = 6381358, upload-time = "2026-02-11T04:22:37.698Z" }, + { url = "https://files.pythonhosted.org/packages/64/ef/c784e20b96674ed36a5af839305f55616f8b4f8aa8eeccf8531a6e312243/pillow-12.1.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6408a7b064595afcab0a49393a413732a35788f2a5092fdc6266952ed67de586", size = 7068558, upload-time = "2026-02-11T04:22:39.597Z" }, + { url = "https://files.pythonhosted.org/packages/73/cb/8059688b74422ae61278202c4e1ad992e8a2e7375227be0a21c6b87ca8d5/pillow-12.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:5d8c41325b382c07799a3682c1c258469ea2ff97103c53717b7893862d0c98ce", size = 6493028, upload-time = "2026-02-11T04:22:42.73Z" }, + { url = "https://files.pythonhosted.org/packages/c6/da/e3c008ed7d2dd1f905b15949325934510b9d1931e5df999bb15972756818/pillow-12.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:c7697918b5be27424e9ce568193efd13d925c4481dd364e43f5dff72d33e10f8", size = 7191940, upload-time = "2026-02-11T04:22:44.543Z" }, + { url = "https://files.pythonhosted.org/packages/01/4a/9202e8d11714c1fc5951f2e1ef362f2d7fbc595e1f6717971d5dd750e969/pillow-12.1.1-cp314-cp314t-win32.whl", hash = "sha256:d2912fd8114fc5545aa3a4b5576512f64c55a03f3ebcca4c10194d593d43ea36", size = 6438736, upload-time = "2026-02-11T04:22:46.347Z" }, + { url = "https://files.pythonhosted.org/packages/f3/ca/cbce2327eb9885476b3957b2e82eb12c866a8b16ad77392864ad601022ce/pillow-12.1.1-cp314-cp314t-win_amd64.whl", hash = "sha256:4ceb838d4bd9dab43e06c363cab2eebf63846d6a4aeaea283bbdfd8f1a8ed58b", size = 7182894, upload-time = "2026-02-11T04:22:48.114Z" }, + { url = "https://files.pythonhosted.org/packages/ec/d2/de599c95ba0a973b94410477f8bf0b6f0b5e67360eb89bcb1ad365258beb/pillow-12.1.1-cp314-cp314t-win_arm64.whl", hash = "sha256:7b03048319bfc6170e93bd60728a1af51d3dd7704935feb228c4d4faab35d334", size = 2546446, upload-time = "2026-02-11T04:22:50.342Z" }, + { url = "https://files.pythonhosted.org/packages/56/11/5d43209aa4cb58e0cc80127956ff1796a68b928e6324bbf06ef4db34367b/pillow-12.1.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:600fd103672b925fe62ed08e0d874ea34d692474df6f4bf7ebe148b30f89f39f", size = 5228606, upload-time = "2026-02-11T04:22:52.106Z" }, + { url = "https://files.pythonhosted.org/packages/5f/d5/3b005b4e4fda6698b371fa6c21b097d4707585d7db99e98d9b0b87ac612a/pillow-12.1.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:665e1b916b043cef294bc54d47bf02d87e13f769bc4bc5fa225a24b3a6c5aca9", size = 4622321, upload-time = "2026-02-11T04:22:53.827Z" }, + { url = "https://files.pythonhosted.org/packages/df/36/ed3ea2d594356fd8037e5a01f6156c74bc8d92dbb0fa60746cc96cabb6e8/pillow-12.1.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:495c302af3aad1ca67420ddd5c7bd480c8867ad173528767d906428057a11f0e", size = 5247579, upload-time = "2026-02-11T04:22:56.094Z" }, + { url = "https://files.pythonhosted.org/packages/54/9a/9cc3e029683cf6d20ae5085da0dafc63148e3252c2f13328e553aaa13cfb/pillow-12.1.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:8fd420ef0c52c88b5a035a0886f367748c72147b2b8f384c9d12656678dfdfa9", size = 6989094, upload-time = "2026-02-11T04:22:58.288Z" }, + { url = "https://files.pythonhosted.org/packages/00/98/fc53ab36da80b88df0967896b6c4b4cd948a0dc5aa40a754266aa3ae48b3/pillow-12.1.1-pp311-pypy311_pp73-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f975aa7ef9684ce7e2c18a3aa8f8e2106ce1e46b94ab713d156b2898811651d3", size = 5313850, upload-time = "2026-02-11T04:23:00.554Z" }, + { url = "https://files.pythonhosted.org/packages/30/02/00fa585abfd9fe9d73e5f6e554dc36cc2b842898cbfc46d70353dae227f8/pillow-12.1.1-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8089c852a56c2966cf18835db62d9b34fef7ba74c726ad943928d494fa7f4735", size = 5963343, upload-time = "2026-02-11T04:23:02.934Z" }, + { url = "https://files.pythonhosted.org/packages/f2/26/c56ce33ca856e358d27fda9676c055395abddb82c35ac0f593877ed4562e/pillow-12.1.1-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:cb9bb857b2d057c6dfc72ac5f3b44836924ba15721882ef103cecb40d002d80e", size = 7029880, upload-time = "2026-02-11T04:23:04.783Z" }, +] + +[[package]] +name = "pyparsing" +version = "3.3.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f3/91/9c6ee907786a473bf81c5f53cf703ba0957b23ab84c264080fb5a450416f/pyparsing-3.3.2.tar.gz", hash = "sha256:c777f4d763f140633dcb6d8a3eda953bf7a214dc4eff598413c070bcdc117cbc", size = 6851574, upload-time = "2026-01-21T03:57:59.36Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/10/bd/c038d7cc38edc1aa5bf91ab8068b63d4308c66c4c8bb3cbba7dfbc049f9c/pyparsing-3.3.2-py3-none-any.whl", hash = "sha256:850ba148bd908d7e2411587e247a1e4f0327839c40e2e5e6d05a007ecc69911d", size = 122781, upload-time = "2026-01-21T03:57:55.912Z" }, +] + +[[package]] +name = "python-dateutil" +version = "2.9.0.post0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "six" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/66/c0/0c8b6ad9f17a802ee498c46e004a0eb49bc148f2fd230864601a86dcf6db/python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", size = 342432, upload-time = "2024-03-01T18:36:20.211Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427", size = 229892, upload-time = "2024-03-01T18:36:18.57Z" }, +] + +[[package]] +name = "scipy" +version = "1.17.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/7a/97/5a3609c4f8d58b039179648e62dd220f89864f56f7357f5d4f45c29eb2cc/scipy-1.17.1.tar.gz", hash = "sha256:95d8e012d8cb8816c226aef832200b1d45109ed4464303e997c5b13122b297c0", size = 30573822, upload-time = "2026-02-23T00:26:24.851Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/df/75/b4ce781849931fef6fd529afa6b63711d5a733065722d0c3e2724af9e40a/scipy-1.17.1-cp311-cp311-macosx_10_14_x86_64.whl", hash = "sha256:1f95b894f13729334fb990162e911c9e5dc1ab390c58aa6cbecb389c5b5e28ec", size = 31613675, upload-time = "2026-02-23T00:16:00.13Z" }, + { url = "https://files.pythonhosted.org/packages/f7/58/bccc2861b305abdd1b8663d6130c0b3d7cc22e8d86663edbc8401bfd40d4/scipy-1.17.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:e18f12c6b0bc5a592ed23d3f7b891f68fd7f8241d69b7883769eb5d5dfb52696", size = 28162057, upload-time = "2026-02-23T00:16:09.456Z" }, + { url = "https://files.pythonhosted.org/packages/6d/ee/18146b7757ed4976276b9c9819108adbc73c5aad636e5353e20746b73069/scipy-1.17.1-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:a3472cfbca0a54177d0faa68f697d8ba4c80bbdc19908c3465556d9f7efce9ee", size = 20334032, upload-time = "2026-02-23T00:16:17.358Z" }, + { url = "https://files.pythonhosted.org/packages/ec/e6/cef1cf3557f0c54954198554a10016b6a03b2ec9e22a4e1df734936bd99c/scipy-1.17.1-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:766e0dc5a616d026a3a1cffa379af959671729083882f50307e18175797b3dfd", size = 22709533, upload-time = "2026-02-23T00:16:25.791Z" }, + { url = "https://files.pythonhosted.org/packages/4d/60/8804678875fc59362b0fb759ab3ecce1f09c10a735680318ac30da8cd76b/scipy-1.17.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:744b2bf3640d907b79f3fd7874efe432d1cf171ee721243e350f55234b4cec4c", size = 33062057, upload-time = "2026-02-23T00:16:36.931Z" }, + { url = "https://files.pythonhosted.org/packages/09/7d/af933f0f6e0767995b4e2d705a0665e454d1c19402aa7e895de3951ebb04/scipy-1.17.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:43af8d1f3bea642559019edfe64e9b11192a8978efbd1539d7bc2aaa23d92de4", size = 35349300, upload-time = "2026-02-23T00:16:49.108Z" }, + { url = "https://files.pythonhosted.org/packages/b4/3d/7ccbbdcbb54c8fdc20d3b6930137c782a163fa626f0aef920349873421ba/scipy-1.17.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:cd96a1898c0a47be4520327e01f874acfd61fb48a9420f8aa9f6483412ffa444", size = 35127333, upload-time = "2026-02-23T00:17:01.293Z" }, + { url = "https://files.pythonhosted.org/packages/e8/19/f926cb11c42b15ba08e3a71e376d816ac08614f769b4f47e06c3580c836a/scipy-1.17.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:4eb6c25dd62ee8d5edf68a8e1c171dd71c292fdae95d8aeb3dd7d7de4c364082", size = 37741314, upload-time = "2026-02-23T00:17:12.576Z" }, + { url = "https://files.pythonhosted.org/packages/95/da/0d1df507cf574b3f224ccc3d45244c9a1d732c81dcb26b1e8a766ae271a8/scipy-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:d30e57c72013c2a4fe441c2fcb8e77b14e152ad48b5464858e07e2ad9fbfceff", size = 36607512, upload-time = "2026-02-23T00:17:23.424Z" }, + { url = "https://files.pythonhosted.org/packages/68/7f/bdd79ceaad24b671543ffe0ef61ed8e659440eb683b66f033454dcee90eb/scipy-1.17.1-cp311-cp311-win_arm64.whl", hash = "sha256:9ecb4efb1cd6e8c4afea0daa91a87fbddbce1b99d2895d151596716c0b2e859d", size = 24599248, upload-time = "2026-02-23T00:17:34.561Z" }, + { url = "https://files.pythonhosted.org/packages/35/48/b992b488d6f299dbe3f11a20b24d3dda3d46f1a635ede1c46b5b17a7b163/scipy-1.17.1-cp312-cp312-macosx_10_14_x86_64.whl", hash = "sha256:35c3a56d2ef83efc372eaec584314bd0ef2e2f0d2adb21c55e6ad5b344c0dcb8", size = 31610954, upload-time = "2026-02-23T00:17:49.855Z" }, + { url = "https://files.pythonhosted.org/packages/b2/02/cf107b01494c19dc100f1d0b7ac3cc08666e96ba2d64db7626066cee895e/scipy-1.17.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:fcb310ddb270a06114bb64bbe53c94926b943f5b7f0842194d585c65eb4edd76", size = 28172662, upload-time = "2026-02-23T00:18:01.64Z" }, + { url = "https://files.pythonhosted.org/packages/cf/a9/599c28631bad314d219cf9ffd40e985b24d603fc8a2f4ccc5ae8419a535b/scipy-1.17.1-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:cc90d2e9c7e5c7f1a482c9875007c095c3194b1cfedca3c2f3291cdc2bc7c086", size = 20344366, upload-time = "2026-02-23T00:18:12.015Z" }, + { url = "https://files.pythonhosted.org/packages/35/f5/906eda513271c8deb5af284e5ef0206d17a96239af79f9fa0aebfe0e36b4/scipy-1.17.1-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:c80be5ede8f3f8eded4eff73cc99a25c388ce98e555b17d31da05287015ffa5b", size = 22704017, upload-time = "2026-02-23T00:18:21.502Z" }, + { url = "https://files.pythonhosted.org/packages/da/34/16f10e3042d2f1d6b66e0428308ab52224b6a23049cb2f5c1756f713815f/scipy-1.17.1-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e19ebea31758fac5893a2ac360fedd00116cbb7628e650842a6691ba7ca28a21", size = 32927842, upload-time = "2026-02-23T00:18:35.367Z" }, + { url = "https://files.pythonhosted.org/packages/01/8e/1e35281b8ab6d5d72ebe9911edcdffa3f36b04ed9d51dec6dd140396e220/scipy-1.17.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:02ae3b274fde71c5e92ac4d54bc06c42d80e399fec704383dcd99b301df37458", size = 35235890, upload-time = "2026-02-23T00:18:49.188Z" }, + { url = "https://files.pythonhosted.org/packages/c5/5c/9d7f4c88bea6e0d5a4f1bc0506a53a00e9fcb198de372bfe4d3652cef482/scipy-1.17.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8a604bae87c6195d8b1045eddece0514d041604b14f2727bbc2b3020172045eb", size = 35003557, upload-time = "2026-02-23T00:18:54.74Z" }, + { url = "https://files.pythonhosted.org/packages/65/94/7698add8f276dbab7a9de9fb6b0e02fc13ee61d51c7c3f85ac28b65e1239/scipy-1.17.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f590cd684941912d10becc07325a3eeb77886fe981415660d9265c4c418d0bea", size = 37625856, upload-time = "2026-02-23T00:19:00.307Z" }, + { url = "https://files.pythonhosted.org/packages/a2/84/dc08d77fbf3d87d3ee27f6a0c6dcce1de5829a64f2eae85a0ecc1f0daa73/scipy-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:41b71f4a3a4cab9d366cd9065b288efc4d4f3c0b37a91a8e0947fb5bd7f31d87", size = 36549682, upload-time = "2026-02-23T00:19:07.67Z" }, + { url = "https://files.pythonhosted.org/packages/bc/98/fe9ae9ffb3b54b62559f52dedaebe204b408db8109a8c66fdd04869e6424/scipy-1.17.1-cp312-cp312-win_arm64.whl", hash = "sha256:f4115102802df98b2b0db3cce5cb9b92572633a1197c77b7553e5203f284a5b3", size = 24547340, upload-time = "2026-02-23T00:19:12.024Z" }, + { url = "https://files.pythonhosted.org/packages/76/27/07ee1b57b65e92645f219b37148a7e7928b82e2b5dbeccecb4dff7c64f0b/scipy-1.17.1-cp313-cp313-macosx_10_14_x86_64.whl", hash = "sha256:5e3c5c011904115f88a39308379c17f91546f77c1667cea98739fe0fccea804c", size = 31590199, upload-time = "2026-02-23T00:19:17.192Z" }, + { url = "https://files.pythonhosted.org/packages/ec/ae/db19f8ab842e9b724bf5dbb7db29302a91f1e55bc4d04b1025d6d605a2c5/scipy-1.17.1-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:6fac755ca3d2c3edcb22f479fceaa241704111414831ddd3bc6056e18516892f", size = 28154001, upload-time = "2026-02-23T00:19:22.241Z" }, + { url = "https://files.pythonhosted.org/packages/5b/58/3ce96251560107b381cbd6e8413c483bbb1228a6b919fa8652b0d4090e7f/scipy-1.17.1-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:7ff200bf9d24f2e4d5dc6ee8c3ac64d739d3a89e2326ba68aaf6c4a2b838fd7d", size = 20325719, upload-time = "2026-02-23T00:19:26.329Z" }, + { url = "https://files.pythonhosted.org/packages/b2/83/15087d945e0e4d48ce2377498abf5ad171ae013232ae31d06f336e64c999/scipy-1.17.1-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:4b400bdc6f79fa02a4d86640310dde87a21fba0c979efff5248908c6f15fad1b", size = 22683595, upload-time = "2026-02-23T00:19:30.304Z" }, + { url = "https://files.pythonhosted.org/packages/b4/e0/e58fbde4a1a594c8be8114eb4aac1a55bcd6587047efc18a61eb1f5c0d30/scipy-1.17.1-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:2b64ca7d4aee0102a97f3ba22124052b4bd2152522355073580bf4845e2550b6", size = 32896429, upload-time = "2026-02-23T00:19:35.536Z" }, + { url = "https://files.pythonhosted.org/packages/f5/5f/f17563f28ff03c7b6799c50d01d5d856a1d55f2676f537ca8d28c7f627cd/scipy-1.17.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:581b2264fc0aa555f3f435a5944da7504ea3a065d7029ad60e7c3d1ae09c5464", size = 35203952, upload-time = "2026-02-23T00:19:42.259Z" }, + { url = "https://files.pythonhosted.org/packages/8d/a5/9afd17de24f657fdfe4df9a3f1ea049b39aef7c06000c13db1530d81ccca/scipy-1.17.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:beeda3d4ae615106d7094f7e7cef6218392e4465cc95d25f900bebabfded0950", size = 34979063, upload-time = "2026-02-23T00:19:47.547Z" }, + { url = "https://files.pythonhosted.org/packages/8b/13/88b1d2384b424bf7c924f2038c1c409f8d88bb2a8d49d097861dd64a57b2/scipy-1.17.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6609bc224e9568f65064cfa72edc0f24ee6655b47575954ec6339534b2798369", size = 37598449, upload-time = "2026-02-23T00:19:53.238Z" }, + { url = "https://files.pythonhosted.org/packages/35/e5/d6d0e51fc888f692a35134336866341c08655d92614f492c6860dc45bb2c/scipy-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:37425bc9175607b0268f493d79a292c39f9d001a357bebb6b88fdfaff13f6448", size = 36510943, upload-time = "2026-02-23T00:20:50.89Z" }, + { url = "https://files.pythonhosted.org/packages/2a/fd/3be73c564e2a01e690e19cc618811540ba5354c67c8680dce3281123fb79/scipy-1.17.1-cp313-cp313-win_arm64.whl", hash = "sha256:5cf36e801231b6a2059bf354720274b7558746f3b1a4efb43fcf557ccd484a87", size = 24545621, upload-time = "2026-02-23T00:20:55.871Z" }, + { url = "https://files.pythonhosted.org/packages/6f/6b/17787db8b8114933a66f9dcc479a8272e4b4da75fe03b0c282f7b0ade8cd/scipy-1.17.1-cp313-cp313t-macosx_10_14_x86_64.whl", hash = "sha256:d59c30000a16d8edc7e64152e30220bfbd724c9bbb08368c054e24c651314f0a", size = 31936708, upload-time = "2026-02-23T00:19:58.694Z" }, + { url = "https://files.pythonhosted.org/packages/38/2e/524405c2b6392765ab1e2b722a41d5da33dc5c7b7278184a8ad29b6cb206/scipy-1.17.1-cp313-cp313t-macosx_12_0_arm64.whl", hash = "sha256:010f4333c96c9bb1a4516269e33cb5917b08ef2166d5556ca2fd9f082a9e6ea0", size = 28570135, upload-time = "2026-02-23T00:20:03.934Z" }, + { url = "https://files.pythonhosted.org/packages/fd/c3/5bd7199f4ea8556c0c8e39f04ccb014ac37d1468e6cfa6a95c6b3562b76e/scipy-1.17.1-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:2ceb2d3e01c5f1d83c4189737a42d9cb2fc38a6eeed225e7515eef71ad301dce", size = 20741977, upload-time = "2026-02-23T00:20:07.935Z" }, + { url = "https://files.pythonhosted.org/packages/d9/b8/8ccd9b766ad14c78386599708eb745f6b44f08400a5fd0ade7cf89b6fc93/scipy-1.17.1-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:844e165636711ef41f80b4103ed234181646b98a53c8f05da12ca5ca289134f6", size = 23029601, upload-time = "2026-02-23T00:20:12.161Z" }, + { url = "https://files.pythonhosted.org/packages/6d/a0/3cb6f4d2fb3e17428ad2880333cac878909ad1a89f678527b5328b93c1d4/scipy-1.17.1-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:158dd96d2207e21c966063e1635b1063cd7787b627b6f07305315dd73d9c679e", size = 33019667, upload-time = "2026-02-23T00:20:17.208Z" }, + { url = "https://files.pythonhosted.org/packages/f3/c3/2d834a5ac7bf3a0c806ad1508efc02dda3c8c61472a56132d7894c312dea/scipy-1.17.1-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:74cbb80d93260fe2ffa334efa24cb8f2f0f622a9b9febf8b483c0b865bfb3475", size = 35264159, upload-time = "2026-02-23T00:20:23.087Z" }, + { url = "https://files.pythonhosted.org/packages/4d/77/d3ed4becfdbd217c52062fafe35a72388d1bd82c2d0ba5ca19d6fcc93e11/scipy-1.17.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:dbc12c9f3d185f5c737d801da555fb74b3dcfa1a50b66a1a93e09190f41fab50", size = 35102771, upload-time = "2026-02-23T00:20:28.636Z" }, + { url = "https://files.pythonhosted.org/packages/bd/12/d19da97efde68ca1ee5538bb261d5d2c062f0c055575128f11a2730e3ac1/scipy-1.17.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:94055a11dfebe37c656e70317e1996dc197e1a15bbcc351bcdd4610e128fe1ca", size = 37665910, upload-time = "2026-02-23T00:20:34.743Z" }, + { url = "https://files.pythonhosted.org/packages/06/1c/1172a88d507a4baaf72c5a09bb6c018fe2ae0ab622e5830b703a46cc9e44/scipy-1.17.1-cp313-cp313t-win_amd64.whl", hash = "sha256:e30bdeaa5deed6bc27b4cc490823cd0347d7dae09119b8803ae576ea0ce52e4c", size = 36562980, upload-time = "2026-02-23T00:20:40.575Z" }, + { url = "https://files.pythonhosted.org/packages/70/b0/eb757336e5a76dfa7911f63252e3b7d1de00935d7705cf772db5b45ec238/scipy-1.17.1-cp313-cp313t-win_arm64.whl", hash = "sha256:a720477885a9d2411f94a93d16f9d89bad0f28ca23c3f8daa521e2dcc3f44d49", size = 24856543, upload-time = "2026-02-23T00:20:45.313Z" }, + { url = "https://files.pythonhosted.org/packages/cf/83/333afb452af6f0fd70414dc04f898647ee1423979ce02efa75c3b0f2c28e/scipy-1.17.1-cp314-cp314-macosx_10_14_x86_64.whl", hash = "sha256:a48a72c77a310327f6a3a920092fa2b8fd03d7deaa60f093038f22d98e096717", size = 31584510, upload-time = "2026-02-23T00:21:01.015Z" }, + { url = "https://files.pythonhosted.org/packages/ed/a6/d05a85fd51daeb2e4ea71d102f15b34fedca8e931af02594193ae4fd25f7/scipy-1.17.1-cp314-cp314-macosx_12_0_arm64.whl", hash = "sha256:45abad819184f07240d8a696117a7aacd39787af9e0b719d00285549ed19a1e9", size = 28170131, upload-time = "2026-02-23T00:21:05.888Z" }, + { url = "https://files.pythonhosted.org/packages/db/7b/8624a203326675d7746a254083a187398090a179335b2e4a20e2ddc46e83/scipy-1.17.1-cp314-cp314-macosx_14_0_arm64.whl", hash = "sha256:3fd1fcdab3ea951b610dc4cef356d416d5802991e7e32b5254828d342f7b7e0b", size = 20342032, upload-time = "2026-02-23T00:21:09.904Z" }, + { url = "https://files.pythonhosted.org/packages/c9/35/2c342897c00775d688d8ff3987aced3426858fd89d5a0e26e020b660b301/scipy-1.17.1-cp314-cp314-macosx_14_0_x86_64.whl", hash = "sha256:7bdf2da170b67fdf10bca777614b1c7d96ae3ca5794fd9587dce41eb2966e866", size = 22678766, upload-time = "2026-02-23T00:21:14.313Z" }, + { url = "https://files.pythonhosted.org/packages/ef/f2/7cdb8eb308a1a6ae1e19f945913c82c23c0c442a462a46480ce487fdc0ac/scipy-1.17.1-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:adb2642e060a6549c343603a3851ba76ef0b74cc8c079a9a58121c7ec9fe2350", size = 32957007, upload-time = "2026-02-23T00:21:19.663Z" }, + { url = "https://files.pythonhosted.org/packages/0b/2e/7eea398450457ecb54e18e9d10110993fa65561c4f3add5e8eccd2b9cd41/scipy-1.17.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:eee2cfda04c00a857206a4330f0c5e3e56535494e30ca445eb19ec624ae75118", size = 35221333, upload-time = "2026-02-23T00:21:25.278Z" }, + { url = "https://files.pythonhosted.org/packages/d9/77/5b8509d03b77f093a0d52e606d3c4f79e8b06d1d38c441dacb1e26cacf46/scipy-1.17.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:d2650c1fb97e184d12d8ba010493ee7b322864f7d3d00d3f9bb97d9c21de4068", size = 35042066, upload-time = "2026-02-23T00:21:31.358Z" }, + { url = "https://files.pythonhosted.org/packages/f9/df/18f80fb99df40b4070328d5ae5c596f2f00fffb50167e31439e932f29e7d/scipy-1.17.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:08b900519463543aa604a06bec02461558a6e1cef8fdbb8098f77a48a83c8118", size = 37612763, upload-time = "2026-02-23T00:21:37.247Z" }, + { url = "https://files.pythonhosted.org/packages/4b/39/f0e8ea762a764a9dc52aa7dabcfad51a354819de1f0d4652b6a1122424d6/scipy-1.17.1-cp314-cp314-win_amd64.whl", hash = "sha256:3877ac408e14da24a6196de0ddcace62092bfc12a83823e92e49e40747e52c19", size = 37290984, upload-time = "2026-02-23T00:22:35.023Z" }, + { url = "https://files.pythonhosted.org/packages/7c/56/fe201e3b0f93d1a8bcf75d3379affd228a63d7e2d80ab45467a74b494947/scipy-1.17.1-cp314-cp314-win_arm64.whl", hash = "sha256:f8885db0bc2bffa59d5c1b72fad7a6a92d3e80e7257f967dd81abb553a90d293", size = 25192877, upload-time = "2026-02-23T00:22:39.798Z" }, + { url = "https://files.pythonhosted.org/packages/96/ad/f8c414e121f82e02d76f310f16db9899c4fcde36710329502a6b2a3c0392/scipy-1.17.1-cp314-cp314t-macosx_10_14_x86_64.whl", hash = "sha256:1cc682cea2ae55524432f3cdff9e9a3be743d52a7443d0cba9017c23c87ae2f6", size = 31949750, upload-time = "2026-02-23T00:21:42.289Z" }, + { url = "https://files.pythonhosted.org/packages/7c/b0/c741e8865d61b67c81e255f4f0a832846c064e426636cd7de84e74d209be/scipy-1.17.1-cp314-cp314t-macosx_12_0_arm64.whl", hash = "sha256:2040ad4d1795a0ae89bfc7e8429677f365d45aa9fd5e4587cf1ea737f927b4a1", size = 28585858, upload-time = "2026-02-23T00:21:47.706Z" }, + { url = "https://files.pythonhosted.org/packages/ed/1b/3985219c6177866628fa7c2595bfd23f193ceebbe472c98a08824b9466ff/scipy-1.17.1-cp314-cp314t-macosx_14_0_arm64.whl", hash = "sha256:131f5aaea57602008f9822e2115029b55d4b5f7c070287699fe45c661d051e39", size = 20757723, upload-time = "2026-02-23T00:21:52.039Z" }, + { url = "https://files.pythonhosted.org/packages/c0/19/2a04aa25050d656d6f7b9e7b685cc83d6957fb101665bfd9369ca6534563/scipy-1.17.1-cp314-cp314t-macosx_14_0_x86_64.whl", hash = "sha256:9cdc1a2fcfd5c52cfb3045feb399f7b3ce822abdde3a193a6b9a60b3cb5854ca", size = 23043098, upload-time = "2026-02-23T00:21:56.185Z" }, + { url = "https://files.pythonhosted.org/packages/86/f1/3383beb9b5d0dbddd030335bf8a8b32d4317185efe495374f134d8be6cce/scipy-1.17.1-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6e3dcd57ab780c741fde8dc68619de988b966db759a3c3152e8e9142c26295ad", size = 33030397, upload-time = "2026-02-23T00:22:01.404Z" }, + { url = "https://files.pythonhosted.org/packages/41/68/8f21e8a65a5a03f25a79165ec9d2b28c00e66dc80546cf5eb803aeeff35b/scipy-1.17.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a9956e4d4f4a301ebf6cde39850333a6b6110799d470dbbb1e25326ac447f52a", size = 35281163, upload-time = "2026-02-23T00:22:07.024Z" }, + { url = "https://files.pythonhosted.org/packages/84/8d/c8a5e19479554007a5632ed7529e665c315ae7492b4f946b0deb39870e39/scipy-1.17.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:a4328d245944d09fd639771de275701ccadf5f781ba0ff092ad141e017eccda4", size = 35116291, upload-time = "2026-02-23T00:22:12.585Z" }, + { url = "https://files.pythonhosted.org/packages/52/52/e57eceff0e342a1f50e274264ed47497b59e6a4e3118808ee58ddda7b74a/scipy-1.17.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:a77cbd07b940d326d39a1d1b37817e2ee4d79cb30e7338f3d0cddffae70fcaa2", size = 37682317, upload-time = "2026-02-23T00:22:18.513Z" }, + { url = "https://files.pythonhosted.org/packages/11/2f/b29eafe4a3fbc3d6de9662b36e028d5f039e72d345e05c250e121a230dd4/scipy-1.17.1-cp314-cp314t-win_amd64.whl", hash = "sha256:eb092099205ef62cd1782b006658db09e2fed75bffcae7cc0d44052d8aa0f484", size = 37345327, upload-time = "2026-02-23T00:22:24.442Z" }, + { url = "https://files.pythonhosted.org/packages/07/39/338d9219c4e87f3e708f18857ecd24d22a0c3094752393319553096b98af/scipy-1.17.1-cp314-cp314t-win_arm64.whl", hash = "sha256:200e1050faffacc162be6a486a984a0497866ec54149a01270adc8a59b7c7d21", size = 25489165, upload-time = "2026-02-23T00:22:29.563Z" }, +] + +[[package]] +name = "seaborn" +version = "0.13.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "matplotlib" }, + { name = "numpy" }, + { name = "pandas" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/86/59/a451d7420a77ab0b98f7affa3a1d78a313d2f7281a57afb1a34bae8ab412/seaborn-0.13.2.tar.gz", hash = "sha256:93e60a40988f4d65e9f4885df477e2fdaff6b73a9ded434c1ab356dd57eefff7", size = 1457696, upload-time = "2024-01-25T13:21:52.551Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/83/11/00d3c3dfc25ad54e731d91449895a79e4bf2384dc3ac01809010ba88f6d5/seaborn-0.13.2-py3-none-any.whl", hash = "sha256:636f8336facf092165e27924f223d3c62ca560b1f2bb5dff7ab7fad265361987", size = 294914, upload-time = "2024-01-25T13:21:49.598Z" }, +] + +[[package]] +name = "six" +version = "1.17.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/94/e7/b2c673351809dca68a0e064b6af791aa332cf192da575fd474ed7d6f16a2/six-1.17.0.tar.gz", hash = "sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81", size = 34031, upload-time = "2024-12-04T17:35:28.174Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274", size = 11050, upload-time = "2024-12-04T17:35:26.475Z" }, +] + +[[package]] +name = "tzdata" +version = "2025.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/5e/a7/c202b344c5ca7daf398f3b8a477eeb205cf3b6f32e7ec3a6bac0629ca975/tzdata-2025.3.tar.gz", hash = "sha256:de39c2ca5dc7b0344f2eba86f49d614019d29f060fc4ebc8a417896a620b56a7", size = 196772, upload-time = "2025-12-13T17:45:35.667Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c7/b0/003792df09decd6849a5e39c28b513c06e84436a54440380862b5aeff25d/tzdata-2025.3-py2.py3-none-any.whl", hash = "sha256:06a47e5700f3081aab02b2e513160914ff0694bce9947d6b76ebd6bf57cfc5d1", size = 348521, upload-time = "2025-12-13T17:45:33.889Z" }, +] diff --git a/infrastructure/ansible/ansible.cfg b/infrastructure/ansible/ansible.cfg new file mode 100644 index 0000000..c0f1911 --- /dev/null +++ b/infrastructure/ansible/ansible.cfg @@ -0,0 +1,7 @@ +[defaults] +timeout = 60 +host_key_checking = False + +[ssh_connection] +ssh_args = -o ControlMaster=auto -o ControlPersist=60s -o ConnectTimeout=60 +retries = 3 diff --git a/infrastructure/ansible/base-api-call b/infrastructure/ansible/base-api-call new file mode 100644 index 0000000..3709e5b --- /dev/null +++ b/infrastructure/ansible/base-api-call @@ -0,0 +1,16 @@ +curl --request POST \ + --url http://thesis-worker-0:60000/transfer-job-manager/v1/jobs \ + --header 'Authorization: Basic YWRtaW46dmVyeXNlY3JldA==' \ + --header 'Content-Type: application/json' \ + --cookie JSESSIONID=BC1446806DC8C5EFD336BA5C032ED67A \ + --data '{ + "description": "Insomnia envelope 2026-01-29T08:01:20.310Z", + "schedule": "NOW", + "destination_system": "thesis-worker-1", + "destination_share": "local_sequential_destination", + "source_file_uris": [ + "local_sequential_source/file_1.mxf" + ], + "wait_for_publish": false, + "flat_file_mode_disabled": false +}' diff --git a/infrastructure/ansible/deployment/TIXEL-5000123-current-temp-license.WibuCmRaU b/infrastructure/ansible/deployment/TIXEL-5000123-current-temp-license.WibuCmRaU new file mode 100644 index 0000000..648326a --- /dev/null +++ b/infrastructure/ansible/deployment/TIXEL-5000123-current-temp-license.WibuCmRaU @@ -0,0 +1,1842 @@ +[WIBU-SYSTEMS Control File] +Guid={00020007-0001-1100-8005-0000C06B5161} +Description=CodeMeterAct License Update File +Version=1.00 +Encoding=UTF-8 + + +[Info] +CreationTime=2026-01-31 16:33:53 +TimeStamp=823188833 +Size=87664 + + + +[Data] +eyIRMTrnekUuqSetCM93+p1DIyDqF7rpJZNfYBvE9OzB8hIYQjcwwBkgq2Tii/eN +MjYzEtN3B2f9yrg39h1NHUKg8SwMJnWtXM/Frsy52Zu97wRtMn8s4OAZNJxbnwmK +geWIygDDGsopPH4R6vBrhTlA7DQUtTzBQ4E3zcUUnQDgPTYspwX9d7heziNxxwi1 +ESobHri/kSf9SR3jmhpu+MgfJJkWuJd0a9m/aVoE2s/Bm43CIreIEAmYXuA6FFsL +oUU3r+KELPW5zDKBCgC9RFHF/uGyLX3gaUcisNo16L0B65XKgsArUhnI25eq9U8N +sXaX/lJ934fJDqbnen8Pi2EotuEipGebedtf/koT6i0RwLyA8nS7Lynuf3Ua8UoI +wf2NzMIv+r3YBhUM6jhTZXehYjWSFGuCieXF8bqKlIUha5OkYmN9CTlK0XGLxpv8 +rRsF2jNcwVXp9A3+WkxmrYFwvCQCPwvQmaXqmSpcp2cxLBR/0kstbkkcbqX6Nbok +4Q1/CaLCPQb5GDcIyhmi5JHVh+Vy43PYqVt8vJpHCitBQ9FwQu4u41mkDLpq/0Uc +8RYW4BIj9s8Js05BOoFQOqEQKTriwXiAuUdBhgoNzcFR8PSysgqOO2kie7va4gan +AXZ8ZoI9NXoZAyt9qkLxMrFh2nNSmpVUyakXnHpsJ0Bhc0F4ImH+jnnWn0hKoOwX +EWv8afLR5kYpSbqdGh4s78EIbtPCLO4/2cH1i+oleQNxDBFukrHb0IkAeSS69w5Y +ITZ4HWKgnnA5xQJEitPQEtFFTkoyOU7j6c/pnVr5SXmB+1WdArwpB5ngHCcqqa2N +MRdqGtJomEFJtyLh+iLXS+FYfZuifymM+RMaBcqmSYaRgJqrckCUIam2uY6adDBj +QU7kwULrt8pZX1AnasxeefGBldwSwJvLCc7EcDruT42h2wB84v5ucLnClbAKGifu +URuR/bLniDpp/dna2o+vcgEByVaCumitGT5A/aqPXBaxTEMwUre1u8lEDwp6WUk2 +Yb6yYCIeP9R50SUDSi05bhEW4sfyLvyOKaT6hBpLlxXBE7SJwikM+tl8nLHq8nZc +cXcjqZJOtoaJG7J7umSTCCEBQwNi3WmWOUB6UYrgT9LRcD2qMha+p+mqyydaprdh +gYZVoAI5ciOZGxXlKvZ96zEC5vLShW3JSVJdLPoP/m3ho2E1ojy/vfkOQ4jKMzuO +kStTXHKdnjWpEf31mqHgFEFZXfhC6GrEWRpa0GqZQQvx7DrREl2rSAnpwBo6W1l4 +oaa+4OI7D3m5PTAsCifLvVFG062yxG0Radg+uto84pQBjHsHgjfGnxl5G0Sq3JGr +sTfSH1LUP/HJ34zdekZ14WEJCgci2ykfeczxWUq6zyQRwW2G8ov7Oyn/QNcaeIzv +wR5gW8ImVKDZNwmp6r8+ZHHiW9KS6/rXiTZxo7rRIQshzPPBYhrfLjm7N8aK7Rgv +0ZvS5TLzF97phbNHWlOv2oERu5kCtuTYmVbT/ypDGHUx7Yf00qKsOUntHTP6/C7/ +4e4rQ6L5/k75CbK9ysB28JHWseNy+pJIqWxGnprOGrRBZDyAQuVHhFnVKeFqZu7F +8VcGqhL6JHsJBEPrOshsb6FxYtTieFlOubgQJQo0uSRRcbuvsqE89GmzqQXa6Z6B +AReU5IK0TQUZtLx9qimR5rEihy5S8TMpyXqQwnozq7VhVEfXIpi+I3nHA3lKR7Av +EWyfkfLo5IEpWo1AGqUL8cEpcrTCI8bm2fI7nuqM0A5xTbrVkoip+IlRtke6PrrT +IZeKxWJX/u05NjvOivorHdHGDeky0Fu66WChqVoAMViBnIb1AjOB25mRV6MqkHwe +MdhPC9K/VcZJiGSh+ulpc+E53DCitujz+QRn0cpN/KCRgbYtcldxjqnHlTOa+960 +QW+BxULiTr5ZkL+FajNlnfHC91ISlwiXCR9Ljjo1iuahPOzC4rVNpLkzN8cKQfEW +UZxJ77J+9RZpjhpp2pblrAGiElqCMf+RGe8j1qp2WruxDWJIUg6Sl8kVGmV6IOsm +YZ9qPSJV/ZV5wluMStTaghEXd9XyRbiUKbXfbBrSFI7BNOoAwiBigdmtNL3qWSxQ +cbg+n5IlwhyJbIEUuqtc1iFiB3pilMeHObGElYoHiZDR8e6fMq2JcOk7lflarTxO +gSe4HwKwR9+ZzKH7Kt2q2zHDPSPS3GijSSMxI/rWrj7hhHJqonN8YPn/Ye/K2suT +kSxhJnK0OTupIuthmigti0F6LDRC338mWUsb6moApoXxLQ+4EjRW0Ak62a86orFR +oQdcGOLy6y65rqM+Ck5ziFHHfViyW5itaWmRkNpDtooBLffTgq7a+RkqUXmqw+0d +sfhiWVIrWnDJsClxeg01qWHqc6UiEuYpeb35v0phTxIRwvQ98qJ1qCkQOAga/6c6 +wT/IrMIdKCTZaPMx6iZSHHEj6RqSwkR4iYfStboYCYchLWpLYtE6sDksFEiKFDB9 +0Rx29jKKoTTpFo/jWlrSMIGyT4QCLTiYmQeyNCoqo6AxrlEo0vnlBEm+g2T6w/3U +4c/uW6Iwukj5+qJDymflvJHXsblyEeyCqX1G1ZpVBatBhT04QtzacFkGPTpqzbBy +8ZhMxRLRDVsJVe37Og/jJKHSsUDiLzSiuSlWtwpbP21R8lfXsjgl7GlEDija8BCP +AbhBvoIr4PAZZUSTqhBLArHjiU1SSIznyUu/knr6iLBhNWN7Is94k3m43T9K7g3S +EW0Yt/L/HPEpa5a+GizFasFKDCTCGhiD2SN4KOrzQWdxjrk0kl8xP4miqde6hb9Z +IfiypWIOWBs5p+kRiiEh19FHo9gyZ6M66fGOE1oH8nOBPU2PAqpSuplCiHoqd2Vh +MZmLBtIWzR5JWVwR+rBWquEaUXGi7aFg+fUp+sr0SBCRgqjTcm6ImanYpzmagmeI +QZC0PULZX1FZwSSiapqFWPEDsGYSbi9rCXCHHjp8HtShne2n4mwmsrmkTl0KaFW5 +UR3YV7IVnAZpH5Hb2p31LQFD8oSCqA8rGaD9T6pdclyxztYQUmUoMcnm2nV65+aw +YYA4KyKMtYZ5swc4SnsWthEY4izyXK6iKcb6OxpZbJLBVbbSwhcyUtnewszqwPsk +cfmv2JL8h6WJvQYmuvJ/wiHD4fRiSx99OSIFH4ouXJLRcnYyMkSPtunMlDVatJuL +gciwrAInl/mZfST5KsTxETGE66nSMx4lSfS61fqduTLhZZkWoqozXPnw9j7KgfaB +kS1FYHLLDrOpMw87mq9Tl0GbkbBC1g58WXzSTWpnJCvxbjmIEgu7NAmLp8M66WPT +oWgPuuKpwhK5H41cCnW1YFFI/sWy8vwwafoZV9pKZNsBzgiUgiVpXBnbfNuqqmMg +sblJj1KCLoHJgXzGetROHmHL8yAiSZy3ea531EoIabIRw1GL8rkp8SkhZSwahp0l +wWDGJMIUdkXZmdNK6o1/SXFkzPKSmUjfidjpTLpfSjUhjvakYoiQiTmdZpuKO+Gi +0Z3v7zIhZdzpp6D1WmHP64FTekgCpAUKmbiG3CoRSKYxb3H+0lDZS0mPn136iibi +4bDHt6Jnb+/56wk+yg7uBZHYh0tyKH8DqY58hZrcyUtBptT8QtPnpFk3RmlqNI3e +8dnoFRKosOsJpk2XOlazlqEzF+Pi5gh4uZoR4QqCX1dRc8oNss9Hn2nVqEba91wL +AVmFV4Ki7DgZFsJhqvceQrGk4rRSn54LyRykMHrBwGxhFpXIIgYt2nmpLUFKlQW7 +EW5nvvIWjxApfNU7GrNYmMFrPIbCEeQQ2VSqzupazchxzw5vkjZzIInzUvi6zB4m +IVnxIWLFq/Q5GA6zikiw/NHIDv0y/iTg6YKy/1oOjQiB3qnOAiGen5nzrlAqXmgS +MVod8NJt/sZJKgpV+nedLOH728CiJFXO+eZiI8qbL5CRg3CBcoXZvqnp78SaCcoZ +QbF9jkLQ6n9Z8n8gagHAZvFEvvsSRRDECcF5RTrDDJKh/gSP4iP5lbkV3BYKj1OR +UZ48G7KsfIVpsD1W2qTfMQHkZzuCH5p0GVHNDqpEpLWxj6FtUrx4BMm3UWB6rjwQ +YWEcjiLDZ6J5pCmqSiLswxEZI7Lyc940KddLFhrgnV7Bdhhjwg58aNkPR4TqJ+WW +cTp3OZLTB52JDkLUujn9CCEk0tdiAnFyOZP7kYpVyZPR89NFMtvO9eldyv9au9RV +gWk/qwKeYG6ZLp2BKqtSSjFF72rSio3KScX6Z/pkHobhRtadouHkrPnhARvKKLsU +kS7/7XLiHRmpRGmlmjZUdUG8jNFCzRfBWa1/n2rOvLfxr7klEuLZ8QncK3o6MHA5 +ocnYKeJgkyC5kOwpCpyRAlHJVNqyiZsXaYvYMdpR7MIBb7CrgpxxwxmMng6qkfNu +sXqGpVLZvJ/JUoUBepvCfGGsid0igEzEeZ9rO0qvHMERxIRS8tAXkikyyGcaDW3s +wYFaJ8ILPgDZyqmX6vTGp3GlBT6ScAaJiSm3jLqm5VEh75gyYj/gtjkOL2SKYixc +0R4/tjK4YlHpOOihWmimR4H0OkoCG00qmWlRmyr4BkIxMOda0qeGiklgcUL6Uali +4ZG2uqKeHj/53OZQyrWQh5HZM31yP0xGqZ/o0ppjaNJBxwEyQspuHFloRRJqm4PF +8RrbfxJ/DakJ92PhOp3dAKGUkh/indfLuQtDRgqpGZ9R9BI3smakiWlmeYXa/oIy +AfpeFIIZc9kZxzWNqt4MYrFlkUhS9moRye0+wHqIUiZh99wiIj3b83ma8yBKPJem +EW+Mi/ItO1wpjUrcGjrGtcGMAj/CCCqM2YXSNOrBcu9xELpokg1vGIlEss26E9h0 +IbpFnmJ8+XU5iahVim/ZSdFJUDoyleAm6RMMkloVAlKBf5wXAphjh5mky8kqRYXt +MRsFrNLE6TpJ+22Q+j4+NuHcfIOiWwI5+dcR8cpCsNyRhA4bcpxkeqn6bfmakAal +QdLcG0LH70VZI9GkamgUhPGFIvYSHKsdCRIiJzoKVVyhXzLc4trFS7mG35cKtuta +UR93HbJDlw9pQSD92quj9AGFc+GClp5qGQKTtqor8IKxUMJCUhODjcmIfkh6deyA +YUIWyiL6E+V5lcGGSslbaBEaOknyikjHKejSHxpnqS7BlxAWwgVAwNlAwYfqjuhh +cXuUpZKqQX+JXzNDuoDU5SGF2IZiubxjOQRokop80FDRdAe+MnJIqunuNXxawufo +gQpkfwIVpDmZ3ws5KpLNQDEGSUrS4bYPSZbw/for3XThJylkohiQTvnSgifKzxkI +kS+Ps3L5ZumpVfnEmr0uYUHdHftCxJrxWd4ig2o1b+fx8I90ErmygwktZvc6d9a/ +oSq4y+IXXlS5AcJKCsMHKlFKgXmyIHTdaRzNRNpYTn0BEO5+ghP0Khk9traqeJ3F +sTsZgFIwBUjJI0RGemKQAGGNNT8it/ZLeZDVmEpWavoRxY138uc/BylDYd4alBbL +waKEGMICgFDZ+3W86lso83HmlOCSR37xiXo6mbrt2hghUFFYYvYpNDl/bUaKiRFl +0Z9kLTJPmg/pyWUMWm9XgIGVke0Ckg71mRoSFSrf3y8x8bIh0v7tPEkx+Tb6GIaS +4XK7yKLVxzP5zTkgylzN/ZHatTJyVlPHqbCK4Zrq4HpB6MQ7QsFv01mZOtlqApTj +8Vsj5xJWJA8JSDD+OuRhn6H1I1riVKCZuXzqigrQbQBRdTE3sv06J2n3fwjaBYNA +AZvOWIKQc84ZeJ+5qsUUHrEmluxSTfF0yb6PZXpPPhlh2DruInSD3HmLL4NK48JQ +EXCHAvJEIVApnvXDGsEN/8GtXrLC/+nw2bbw/uooMpdxUbsFkuQko4mVx3u6WuuB +IRuwfmIzQZs5+ridipacetHKZ3QyLNaK6aSb7locUYyBICXOAg+jbZlV3okqLLyu +MdxCHtIbj/ZJzIfn+gU5A+G9Mx2ikqmc+cg2B8rpyrGRhYKEcrMpSKkLIvuaFx1m +QfPRSUK+bp9ZVBjTas+CbPHG3DkS8//zCWOA5zpR926hwHXz4pGMz7n3WIQK3R3S +UaCHQrLa6yBp0jj02rJBsgEmFduCDR0JGbNO66oSVoCxETl0UmpHSMlZYVJ6PPY+ +YSMmQyIxukp5hs9xSnBlXxEbJ9byoezVKfmPfBrujj7BuJ5Pwvx9VdlxMXvq9QVC +cbwHAZKBNciJsNqWuscFlSHm9GVicAJNOXVKxIqjcYXR9RB/Mgn8T+l/185aydSA +gasejQKMYVeZkHDDKnlisTHH+CvSOJpwSWecu/ry9TrhCJLNok81PfnDeQjKdhIY +kTD1lHIQ6p+pZr+9mkTjlkH+RJFCu5cJWQ+8nGqcO3bxMbxYEpBFZgl+Vl86vpai +oYutA+LOIqq5cg1jCuoXk1HLg4eyt4b+aa33s9pfikYBscFxgorwjhnuw3eqX2Hg +sfwBA1KHB/bJ9Li4eim45WFu96ki7ppKeYG1kEr9URoRxmze8v6hzClUMLQaG5r9 +wcNEXML5OzLZLDhd6sKj53Ener6SHrCUictzlro0KsYhsR96Yq1t/TnwIeaKsJB5 +0SBgOTLmC5PpWhlZWnbi0YE2fpYCCUpmmcvI7SrG0isxstQ20lUP30kCN1/637yt +4VPWRaIMa8n5vgJQygOkJJHbDVBybZQCqcFi1ZpxM4FBCR5+QrjqxVnKJWJqab70 +8ZzBLxIt9ZkJmbIROitArqFWy/biC2Pdue0HUwr3WzdR9iXyspQL9GmIvPPaDF1x +ATzUiIIH7hMZKf+Kqqw2MrHn8IRSpDGyyY+WRHoWhIFhua6OIqslkHl84QtKioh1 +EXFYB/JbQWgpr9YWGkgvsMHOUETC9iM72ecE0eqPC3xxkhIqkruUPInmkia6oViJ +IXwwJ2LqgmA5az8vir35StFLVY8ywwWI6TVhOVojevOBwUNWAoZcTpkG5zQqEw0S +MZ3WKtJy7nVJnVd++syNz+GeAPKiyUr1+bnRCcqQf8uRhsyhcsoopKkcDO6ang2Z +QRRdfEK1Z4hZhVVPajYL3PEH7aoSyg7DCbSUqjqY8wWhIc844khNHbloSIAKBOqy +USFubrJxejVpY4df2rm5pgHHTIyChBVMGWQAUar51Wmx0gXmUsHFsMkq+qF6A1qG +YQRMXSJoWs95d1MPShcJZREc6jzyuMrcKQqDUBp1TsrB2cJzwvM1JNmilwLqXD3z +cf3QL5JY4/OJATjzug6RUiFHJ9liJ0IqOeaiy4rKrO3RdvBsMqDpYukQrxta0JtZ +gUxvOAIDmcOZQcvEKmARWDGI/vPSjzdpSTj+xPq5aBTh6RA+oobUdPm05mHKHaUA +kTExdnInp7ipd7uzmstxUkEfAvhCsg4FWUBLkGoDIiDxcj62EmeSFQnP/NU6BbEd +oey4NeKF4R25484WChHC+VFMXOiyTtP2aT5Yo9pmoFoBUivoggFn6xmfx/WqRj97 +sb1AElLewyXJxeN8evA5aGFPz4EiJTm8eXILx0qk09wRxyFr8hU+XillNQ0aove/ +weSaVsLwcaHZXfAd6ik5QXFotbuS9ZvuiRxjqLp705UhEgT8YmSrDjlhTOeK16lV +0aExvjJ9t1fp6wKsWn1HeIHXAKkCgP95mXx1ySqt3/Exc0x+0qzq7EnTKt/6pk3w +4TQHlqJDCPz5r0GEyqoUuJHcO7lyhA90qdJw0pr4XyFBKg1dQq/f71n7BlFq0AK1 +8d21PRIEgMUJ6uo/OnJ4aaG3iFniwh+TuV6bQgoe5P9Rd/BLsisWbGkZL2vaExEB +Ad1vCIJ+4qUZ2lSlqpNyWrGoofVS+ytFyWBTgXrdI5thmjhoIuLBCnltCV9KMejQ +EXL/ffJymyApwO34Gs8qBcHv2FjC7ddm2RgPT+r2/llx07+5kpK+YIk3FPK66B/H +Id3G+2KhvsE53DuuiuTwdtHMGG8yWm+a6cZclloqfcOBYvgTAv2PJZm35W4q+nfT +MV7AtdLJBzVJbt14+pM81+F/42WiAOY++arinMo3zuWRh+xWcuFhCqktLPaaJdh5 +QTV+F0Ks2vxZtoi9ap2tjvFIUy0SodcGCQVflDrfSV2hgj4Q4v8HMbnZrS8KK1C5 +UaIqhbIIQ8lp9Atj2sALDgFoGlmC+4cvGRWoi6rgb/uxkyh8Uhj+Qsn7SFt6yheT +YeWHfCKf9G55aE0DSr5GNREdg2Hyz+JXKRusvxr85w3B+nzmwupnKNnT88Hqw44x +cT7wFZIvS36JUkt8ulV2WiGob0Ri3nv3OVdxTIrxgUXR96VrMjcRX+mhvIZa1zyv +ge1V5QJ6SnqZ8hvhKkfa8DFJWobS5o51SQkWPvqANT3hyqUZor1t8fmlydfKxNF9 +kTJDO3I+nq+piO3KmlLaz0FAVZNCqf/fWXHQAWpqIqHxsxZxEj6ZDQkgWX86TCVt +oU3axeI8mqu5VAYKCjgGGlHNCoCy5VlCac/uNtptkPUB8ypGgnhXPBlQwdSqLTdS +sX7VkVI1OlPJlsS2ercVxGEwvSoiXNGceWPX30pL7/0RyKwB8iwUOCl2cA0aKS9O +wQWHa8LnIZrZjp6i6pDou3GpRrySzEF7iW0I87rC1sMhc/5BYhvjYznS7O2K/ly1 +0SLZnzIUndnpfCIpWoSGr4F4GYkC9y4smS0YTCqUBj4xNBrc0gOA4kmk1Nr6bTiW +4RVOHaJ6n8f5oPZgylEfdJHdP1Jym8SXqeO0/Jp/ZpdBS5I8QqZOTVks3klqN2Hg +8R4A9RLbxA0JO9msOrkKDaEYXObieda2uc+k/QpFBhZR+JAossJaC2mq15LaGp8r +AX6hO4L1UIAZi6CsqnrIUrFpqCJSUuCpyTHGP3qkHaJhe9jeIhlYSHlepyBK2OEe +EXN8SvKJL/Up0TqOGlYAOsEQ91PC5AVw2UkPHepdDO1xFMOYkmmii4mISwK6L0F3 +IT5zYGJY9Lo5Ta6+iguCutFNsvcy8RI+6VeOKVoxWjiBA0NrAnQ975lo2tsq4fyu +MR8Ao9Ig269JPxn7+lpFVuFg3NyiN3t1+ZtpZMretryRiOKHcvjU9qk+gjearHxE +QVY1f0Kjx/hZ57HBagRqQPGJD6USeFo7CVbfyDom+rCh48Pd4ra8BrlKiTYKUlCh +USO9arKfRVhphcYi2sc3JAEJfqWCcnSvGcZFP6rHI/GxVKEaUm/wesnMTaJ6kS+h +YcbZBCLWiCV5Wb3xSmUejBEe8ify5jTDKSwL7hqDW0XBG80LwuETXtkERl3qKvq4 +cX9ll5IGbeOJoxRWupy16CEJzgtila+wOci16ooY8UjReDFfMs5ywOkyADRa3re9 +gY7S9wLxdXeZo2K8Ki69NzEKDMfSPaARSdrjSvpHXPHhq1DEovQAr/mWIg7Ka5hL +kTMryHJVzwCpmVUnmtkcS0FhPsdCoGqWWaJLlWrRPLXx9ERtEhVayglxa386k/PM +oa4RGOLzTE+5xbPgCl/kr1FOjzKyfBpdaWC7ktp0WlMBlMDvgu/BfRkBsbiqFEkh +sT/AZVKMavrJZ1uKen5LNWERwQgik2PoeVQZf0rypDkRyQ2G8kMk1imH4dgasEDk +wSYJ/8LeSxjZv0KP6vexE3HqLaSSo6G2ib5jmroJNIwh1A6wYtIU+TlDA56KJapU +0aNWwjKrvJTpDXj0Woufs4EZyJoCbth4md6wGSp7R8wx9T000lrPO0l1NHb6NH3b +4faqP6KxMCj5kSGKyvjDFJHeGf9ysrPpqfQueJoGRx9BbK2AQp032lldq/Bqntky +8V+gORKyw+4JjH18OgD31KF5RQHiMIdEuUAkKApswjVReQdsslnZTWk7to7aIQct +AR9phoJsOZ8ZPOJEqmE417EqBfBSqU5cyQLvo3prcdJhXI5WIlDoRHlPu/RKf3Ub +EXTPUPKg/WEp4r36Gt2visExq5nC261S2XoF3+rEM/FxVRyrkkBAOYnZOHu6drzV +IZ81uWIPJEg5vpYEijKt0dHOIQ0yiPDu6ej1Flo4EY6BpCPAAutkp5kZxR8qyJtg +MeCV1tJ3aGJJEAsp+iGoiOFB67qibgqV+YxmBMqFOQyRia4Ycg+C5alPDtaaM/s0 +QXeCF0KaLnhZGNH/amtArfHKIfYST5fcCacVbDptBD2hRF8F4m1rmrm72jgKeeom +UaQlA7I2gl5pFrfC2s49JQGqd9WC6drHGXfZD6qu8QaxFXClUsac1MmdCJt6WKHs +YadBWiINF+95SqN+SgyQJREfN3Ty/cCaKT2g/xoKqazBPLNHwtg5wdk1jnjqkX9F +ccAwmJLdSJ+J9JOkuuNOOSFqQpNiTN1ROTlwSoo/+rPR+ZIrMmUOA+nDeUda5QzB +gS/l0wJoG7eZVJ/6KhW66DHLE5rSlGu5SatnD/oO3WzhjBGioiuOqfmH8ajKEvkl +kTTpAHJsOiipqvPsmmA5AEGCvfdCl08kWdO87mo4cRjxNcmOEuzUxwnCM/o62ht5 +oQ9fkOKq+QS5Ntc+CoZcd1HP6eOyExXDafG92tp7/q8BNexIgmamqxmylkWq+3Sk +sQABclLjVJfJOKgbekXb92Hy2n8iyu+aeUXRSEqZ9EsRykTc8lputCmYiJMaNyy+ +wUchdcLV7xfZ8NyH6l6VBHEra1eSersciQ91wrpQ6yohNTWqYolAyjm0j5uKTJHv +0SSqCTJCFgXpngMyWpKSwIG6DEIC5ftbmY8/1ipiolgxtrdq0rHYdElGStX6+xv8 +4dcdYaLouxn5gsKjyp8CVpHfyaNyydzlqQXfaJqNAfVBjV6NQpSaklmObulqBWxo +8aCW7xKJfOQJ3dfSOkc9/aHaRA7i5zE4ubEZZgqTGBtR+lP6svCRr2nMyoLaKElB +AcDGTILjm/4Z7RkSqkjCo7Hrt0FSAHfYydPN0XoyH2hhPVozIody/HlARX9KJqOC +EXX4dPK3BeMp83ZiGmQ5M8FS9Y3C0s8K2avxOOordSJxlsvUkheY5Ykq3IC6vZEe +IQAOamLGTWU5L/UjillyeNFPZ5MyHwgp6XmTglo/ogCBRZp2AmIGSpnKpd4qr1Sk +MaGBNNLOr8hJ4bIm+uhkquEiEGSipZOZ+X3ZIMosVpCRilDtciZpUqlg0PWaulOH +QZhlREKRD3dZSeYbatIwkfELigQSJo5mCfgBojq0aD2hpRDr4iQU6LksotoKoB4G +USVkMrLN+Fdpp91m2tUdTQFLB02CYLt0GShjoaqV2fix1pQAUh0DzMlueWl6H22x +YYi/4CJEn8d5O/9NSrObvREgUiryFIdaKU5rGBqR0H/BXS/+ws/ZTdlmzLfq+B6T +cQFS/JK03i2JRcmLuipCiCHLzD5iAwXXOaqgD4pmnULResq0MvzjoulUKeVa7Dv1 +gdCN3QLfOjWZBdI/KvzQvzGMcePS6/DoSXyhr/rVt+vhbegWomIV3fl4NkzKufPI +kTV9yXKD36Gpu8c/mucvK0Gj0ohCjq6FWQQksmqfv4bxdqO5EsMJggkTshM6IZ6t +oXDCkuJhoMi5p3DICq1uLFFQGniyqknwaYL2MtqCfEcB1q21gt0Ewhljch+q4rqX +scGXmlI6+aXJCauOegzFR2HTCvQiAXaweTb/4EpA3vARy1Ho8nHyTimpZWEavvEX +wWjPMcLMDZXZIW0w6sWSSnFs/rmSUY8piWA8j7qX/NshlnGUYkBm0zklkoqKcxJC +0aXTWTLZqabpL8UFWplfEoFb5+ICXJnRmUDEJSpJF58xd4dj0gicCUkXFhz6whQ0 +4bim5aIfQZj5c9lRykbb85HgTyRy4D8IqRbF8poUllRBrqXGQot3clm/J9hqbBg9 +8eHi+hJg72oJLujTOo7dwaE7WnHintaNuSKFWwq6CIJRe3a3soeErGldFZPaL2Wk +AWG68oJaeJoZnke4qi9mdLGswPtSV1mayaRi7Xr5Jp9hHjzZIr72ankxRWRKzWoQ +EXb3mvLOR/QpBGbpGuucb8Fz1ZTCyWuU2dzTzuqS0Dxx19D5ku6pDIl7NTe6BMGN +IWH81mJ9cQ45oMnAioDRatHQgm4ytllo6QpnkFpGDcyB5qbyAtkh05l7fLwqlic2 +MWLDoNIlsV5JshAY+q979+EDSzyi3BZ/+W7CXcrTDAWRi8jpcj2KualxyLqaQYZ3 +QbneaUKIavFZevG5ajk7qPFMSLQS/T5VCUmkjjr7Ju6hBtjy4tu267md378Kx+z6 +UaZ43LJkqcBpODoz2tzX1wHsLHCC1xWyGdnil6p824Kxlw8QUnQj3ck/oDF65pIr +YWlT/CJ7Iat5LNEDSlpBEBEhQy7yK4d+KV9sXBoY0vrBfkGTwsbz/9mXAL/qX9hd +cULJp5KLLguJlrQvunGPESEsbXJiuiY8ORtH3oqN2rDR+9feMpPzG+nlDjFa80SW +gXHMeAJW1O2ZtvovKuMBeTFNJYfSQjAcSU2RT/qc7KnhTtWGopmWRflp8ZvKYIjw +kTbnBXKavumpzNFDmm4ACEHEfd5ChYe2WTWBg2oGKLzxt9PREpr4dAlk5u86aHqm +odE7g+IYQZa5GIAhCtQai1HRINOyQbhgaRNlv9qJ1FUBdwWaglTdvBkUROqqyRq3 +sYKEw1KRV6LJ2mMHetMIYWG0UMkiOPYkeSej60rnYeQRzDSO8oiwISm6eGYaRZEt +wYkTmcLDpYvZUvMs6iyqoXGt56+SKB1ZibG5JLreZ9sh98PSYveFEDmWCg+Kmi0I +0SbTljJwd/XpwLyTWqAG5YH8V+EC07DVmfE+rCowplsxOK0C0l8Zdknol276iWe/ +4ZlFMaJWwJ/5ZGY4yu1NqpHhq2Ry99zMqSfhOZqbBHpBz4KQQoLOdVnw1mBq095s +8SKFPxI3HP4Jf66jOtXXXqGchY7iVXVBuZNmrArhkiZR/G6Hsh6xwGnulePaNluS +AQJE3ILRzm4ZT2vbqhYkBbFtHwJSrvUdyXWtGnrAiLNh/zOsIvV0jHkiu0dKdMyA +EXfMpvLlwxEpFYuzGnLae8GUSxLCwIHr2Q2sROr5RfxxGCz+ksV1KonMRMK6S0pf +IcIAZGI0jz85ERR/iqfKZNFRdIIyTeUo6ZtwZFpNUiyBh0mYAlC3PpksSV0qfRTS +MSNb/9J8bKBJgyQh+nbsq+Hkm6eiE5RB+V8hX8p6XSaRjBbyclTllqmC9kiayJJB +Qdrt60J/P+NZq/J9aqBfrvGNXOkS1KkkCZr8VTpCP4uhZ7WA4pJTobkOk4wK7lTB +USdj5bL7kxRpycxL2uNrAQGN6KKCTup7GYpYl6pj92CxWOC3Usv9g8kQfRd6rRKX +YUr9ECKynZV5HRlESgGB2REiCmTyQsGCKXCj7xqfrVnBn+lqwr2H09nIKjLqxqth +cYOWfpJiOLOJ51W0urg2ESGNI5JicUJ9OYxjWoq0sbrRfLuNMio96ul2Kk9a+ifg +gRKhCQLN59yZZxlvKspM0DEOL2nSmSnPSR43E/pje+PhL9hVotAR3/laIjzKB7dY +kTcnmnKx13up3REdmvWq0kHlvlxCfNqyWWbUBmptqnTx+Fm7EnGhHAm10LI6r7Cf +oTLLxeLP22m5iQXuCvtgT1FS/diy2GCQaaQJpNqQBhcBGPNZgssvmBnFC0qqsJS+ +sUPH0FLobwjJq9Kpepqmf2GVrGMib3D0eRi9DEqOf+IRze2x8p+oqCnLwcYazAo7 +wartDsK6t/fZg28h6pPbxXHuJh2S/2QniQLtprolLWUhWCzJYq6ffTkH+cyKweL9 +0aeopDIHf23pUer/WqeHdIGdXqECSkJkmaKvDSoXT0ox+Sgs0rZQNkm5z/D6UBTa +4Xr6p6KNOSz5VWn7ypRaNZHi3UhyDrSvqTgzYpoiTaFB8PVOQnmfmFkhfCdqOr+z +8WN9oRIOAxoJ0CpmOhwsEKH9xsniDA5PuQS+/AoIt8RRfT1OsrUXaGl/TJjaPStH +AaNjbYJIn3cZAIUfqv37EbEu1DhSBUzfyUaufXqHROFh4EEQIiztXHkTp81KG8iP +EXh3fPL8ebcpJubkGvnxk8G1V2rCtxEM2T56Pupg1RxxWd3Fkpz7uokdCka6ki3P +ISMbdWLrpvQ5gtQCis5dItHSO7My5Krm6SywIlpUcV2BKILLAsfGiJndC2UqZBs0 +MeRINNLT4QlJVO5l+j23A+HFAgqiSgvd+VD2yMohSLCRjTrqcmt6ZqmTWsSaT3kh +QfuSLkJ2jkhZ3OkLageeX/HOxocSq85QCesKHDqJsVChyKj44knqBLl/vOQKFVcV +UagjMbKSuM9pWpXU2urZBQEuOkmCxTjOGTvEQ6pKLU+xGQfcUiKSPMnhDz96dOwv +YSu9giLpE4N5DteySqha1REjp6/yWTXjKYEQ9homY9jBwCfpwrSVxNn5SrXqLZla +ccS5ZJI5/KGJOK09uv83wyHu7wFiKFiWOf31J4rbIhzR/XSlMsHAiekHfGNaAeUO +gbML9AJEdf6ZGC6hKrGxgTHPjm3S8Nx9Se+SHvoqZNThEPHnogeHpflLydDKrn+9 +kTg9anLIKtSp7ofvmnwvx0EGlmdCc6d2WZcd4GrURmzxOTZaEkgE9QkGcYA69kDV +oZNwvuKGcD+5+gDSCiJBNVHTr22yb0P7aTXkBNqXEscBuXZZgkL8Txl2yeKqlyhq +sQRgplI/QlTJfPeZemGe32F2HicipuQaeQlN6Eo1N6cRznw38rbaXyncQKYaU158 +wctd98KxQ9XZtOGx6vomc3EvvOWS1mYQiVPWObpsTLUhuarbYmWzFjl4XWiK6DHf +0ShUZzKewIrp4k1uWq7i/IE++4YCwU15mVMW7ir+EScxuvrD0g1CxkmKvcb6FxvA +4VvFraLErDn5RuI+yjsBUZHj5bRyJcUsqUm7j5qpbwZBEf9lQnDq1llSF9BqobnN +8aTLBBLlozoJIV0/OmPaEaFeHofiw6CyuXWL8AovdRhR/uHvsky4HmkQOdXaRNX+ +AUQZCoK/6bAZsZQoquTtVrHv3oNSXFxayRdlOnpOWmRhwWVpImNf2HkECZpKwl35 +EXn4//ITamEpN3ehGoDj88HW+QDCrhvy2W8+YOrHflpxmuQ0knM7Ooluhea62WoZ +IYRLbmKiuCk58wrwivWKX9FT2eQye6od6b0l71pbapuByVDwAj5QrZmOxHcqSzwY +MaWMI9IqERdJJW4K+gTcOuGmf8eigXxN+UFBP8rIzF6RjjS2coJJpKmk9FCa1jlT +QRzOlUJtVx1ZDdcHam72d/EPh3MSgq1VCTzPBDrQfXqhKbK+4gB7ErnwW2wKPPOy +USm6o7IpF25p65Px2vEhIQHPIceCPAGlGewlQaoxfQmx2oNgUnnggsmyWMx6OyAy +YQyTtSIghG95/wr0Sk/OvxEkGvXycOMbKZKzkxqt8rLB4ftxwqsdz9kqYezqlKAE +cQUzPpIQelOJibrvukaTYyFP0iVi32eDOW7+6ooCLpHRfgQKMlh+dumYA5JaCHxe +gVQMnAK7fE6ZyThqKpgwSTGQRHjSR0qkScCklfrxprjh8R+hoj72lPk85v3KVeLa +kTkpWnLft26p/zPfmgOOIUEnA2NCau79Wchcs2o7/V7xemiSEh8heglXx3w6PSuD +ofQr0eI9/xK5a3JxCkm7+FFUOHWyBmAdacb0Bdqe+KEBWpD8grlC4BknfViqftZ1 +scVOKFKWzgHJTdL7eijwvGFXpnci3VKUefpSIkrciO4Rz+EC8s1Gwynt9Sga2ost +wexjtsKoSSDZ5UmC6mGMZXFwp+2SrSKQiaR1AbqzxQchGj9uYhzB1znpN4WKDxto +0anVwjI1PMnpc+cCWrUXuoHfLfYCONMQmQRz8Srl7q0xeyKu0mTtoUlbYRT63nut +4TympqL7GcT5N9GmyuJBuZHkw4xyPBDAqVp55powbOVBMp45QmevLFmDqP5qCM52 +8eVvTRK8/tsJckVTOqrin6G/iyriei1ouebOKwpWzd1Rf1xQsuOSYGmhW77aS1n1 +AeVkFoI2rhYZYpqaqsv5j7GwP8dSsyYLyejRdHoVynhhop8bIprL+nn14FBKaY15 +EXpPFfIqlIspSD4NGgev18H3MTrCpZ+Z2aD4TeouQnFx20Evkko1JIm/tse6IAJ6 +IeWRs2JZxNo5ZLfqihxS2NHUTPsyEuRJ6U7R7VpiPSKBarVqArVTqJk/czkqMnc6 +MWYmsdKB+kNJ9qMy+stajeGHEkSiuOeO+TICZspv6+2RjwQ6cplSzKm1xBKaXdQS +QT2fhUJkml1ZProVatVos/FQnZASWUavCY1JNDoXpEShitE24rcFxrlhcccKYylW +UaomIbLAr2tpfMjG2vhDjwFwn4CCs0P8GZ19M6oY50uxm1YpUtDo0smDV+N6Aq7Z +Ye1+DSJX7lZ58LSrSvbbVBElYxjyh8uoKaOM7Bo0XCXBAmZpwqIf79lbbXvq+8Eb +cUYC75LnsUOJ2n3uuo1ILiGwymFilnFAOd98R4op09XR/2mfMu91LOkpwf5aD+0K +gfWiZQIy/siZejluKn/J4jFRUG3SnnG+SZFsnPq4Q8zh0mTlonVfqfkteWfK/N5s +kTrrTXL2fsepEBYQmorGHUFIBrNCYa9EWfmRJGqizQjxu/BHEvb3Jwmo08s6hG/l +oVX9YeL0h+C53FlwCnDPVVHVltOynbZyaVc7y9qluOMB+z+ngjADRRnYJk+qZZ6d +sYaTOlLtFI3JHmPzeu+bU2E4RLkiFLtceevOXkqDdHQR0Bz48uTsTin+4HIaYZOK +wQ0AsMKfydTZFqg26sgLWXGx6BiShJgiifXKIbr6mJghe+nkYtPIvDlaiMeKNp5U +0SotmzLM8aTpBLfhWrwm6IGA9lICr9ImmbXFuyrM5ZoxPKDO0rtSRUksu/36pTbe +4R2d9qIygcf5KDbXyokcKpHld7RyU5XlqWttipq3QnpBU9MtQl7ulVm0L1dqb/xq +8SZqXxKTE3oJw+PFOvFE9qEgDxjiMbRruVeIUgp9v9BRAK1TsnqnqWkytHfaUrdm +AYZG9oKt7KQZE5YZqrIfebFx9uZSCqttybn0UHrck1phg++KItExwHnmLpZKEFfM +EXt8oPJB+LEpWTtMGo5Ue8EYAHrCnJ3+2dGoq+qVHx1xHPWYkiHp9IkQng26Z/Ms +IUbuqGIQygM51dmWikOzSNFVltoyqVfn6d+yQlpp6i2BC7CeAizRdZnwF04qGcxW +MScWwdLYnQxJx48C+pIzN+Fou+Oi70yd+SM54coWpBmRkKpZcrCVWqnGyi2a5Eic +QV4GYkJbVwVZb5PZajz1zfGRCcMSMJnZCd55zjpeJOuh6wbF4m6KG7nS/JkKivm6 +UStpjbJXgkRpDTN42v8/jAERs9mCKgDQGU7Lvqr/atKxXH8aUierqMlUDKh6yZVi +Yc6A7iKOUjV54dR9Sp2DUBEmgv3ynu0FKbSbJBq7n2vBI2YzwpmbINmMbwbqYv1b +cYcnW5K+o+6JK/ddutRXXyER2RliTXXJOVBx4YpQEqbRgKVJMoanJ+m6tM1aFjhQ +gZbPtAKp+WmZKzBRKmZ8CjESsjDS9VJISWLqVvp/Okvhs78YoqzC3vkegrHKo3Uv +kTuDKXINgFqpIS6mmhHZ90Fpn7tCWOpGWSq912oJuCXx/M5eEs2Iegn5lZE6yw04 +obbk1OKrCqS5TbdyCpd9CFFWy2yyNEd3aei3eNqsUsgBnIW9gqc9ehmJxmqqTICd +sUcuwVJEFXLJ76mkerah32EZ+E8iSx1wedzAQUoq+vQR0S378vvMfikPAqga6HTP +wS4ySMKWw+7ZR/xy6i+lCXHyf0uSW8hDiUbWvrpBxqMh3KmjYorKwTnLTtOKXbtg +0ata1DJj4ZnplbwuWsMPw4EhVQECJky3mWYO8Sqz9qkx/XMJ0hJyLEn9yqb6bEuO +4f6pAaJp4j/5GRF0yjCRX5HmARByalQZqXyXn5o+8wBBdJ6mQlWnDlnlrH1q1kRm +8We6HhJq4pAJFDi7OjgBUaGBqLPi6DS5uci3CAqkS61RgdPdshH2dWnDQiXaWe+O +ASe+DYIkpVcZxIdJqplfzrEyA8dSYen9yYrN8nqjt0VhZFUbIgiSJHnX8g1Kt7qt +EXx/hfJYllApam6CGhXUGsE5ZCTCkxUd2QJPHer8FhpxXf5VkvhWKIlhO9y6rj5u +IadgsmLHyaA5RnKYimqubNHWtWYyQAVy6XDKEVpwcfqBrEDwAqPIEZmhslkqADsp +MehbN9Iv++xJmDGe+llmdOFJegqiJqx0+RTmVMq99p2RkSb5cscSy6nXBsaaa5cr +QX8Dj0JSjhBZoGL3aqObg/HSy+4SB6ZQCS9g9zql/qmhTFLN4iUJD7lD/ocKsWOd +UayBzLLujnRpntMp2gYWVAGyXDaCoTYcGf8Oh6rmCFmxHf4XUn4ngMkldz56kNcI +Ya+YvCLFsAZ50moOSkTFbhEnd4jytUmvKcXgXxpCvcHBRPwzwpCRX9m9ZzHqyVKB +cciiZpKVT9CJfCZiuhvBMiFy/bFiBHMaOcHbXIp3673RAbfsMh0T5OlL3iJaHV1q +gTeS7QIgby2Z3By3Kk1JfDHTaabSTO69STMe6fpGi3HhlDCfouMfMfkPAYDKSqbe +kTzx0HIku6OpMnzFmpjF60GKzuBCT58AWVvecGpwvHHxPQO7EqTT7QlKDvI6Ega3 +oRfijeJih1m5voocCr7FzFHX1SSyyxGnaXlqMtqzxosBPWGjgh7yexk6XE+qM3wx +sQgfoFKbzyzJwKYzen0BnWH6wZ8ignnKec0ob0rRGSwR0hTw8hLnzikgWewabzA4 +wU/64sKNN2rZeEbb6pZYM3EzbWmSMrJviZeX/LqITWUhPYAOYkHG4jk8i0yKhHJI +0SxeUjL6CiTpJvgNWsrShoHCSWUCnT++mRdNNSqaIZcxvp1C0mlL00nOkDP6M7r5 +4d/MK6KgPSn5CmIhytefFZHnYYNygU3XqY33SZrFfbVBlf8HQkzaklkWIBZqPack +8ahgbxJBa5wJZUJXOn8X7KHiV2Hin69MuTld8grLcS9RAtDSsqh+QWlUB+vaYAGq +AcjLwIKb1yoZdW/OqoC5S7HzZUtSuOE3yVtcfnpqNXZhRdEwIj/sI3nILFxKXrjZ +EX1YqPJvbuMpe9fTGpwt8sFaXp3Cigfx2TPrRupjKCRxnl1Kks9+Oomyjle69eN5 +IQjpM2J+w605t4CTipFDANFXq4My1+xl6QEYf1p30sOBTWfDAho6eJlSQwAq58Nt +Man399KGEmFJaYkp+iDzgOEqTxyiXQUR+QUJZcpk4zaRknj8ct7JmanoeP+a8r/8 +QaCWcEJJP3tZ0ScTagpckPET5PcS3myQCYD80jrsMr2hrbOz4tyBnLm0dTUK2Ge5 +US1wwrKF1XdpL6r/2g3GIgFTnPqCGOfcGbBIMKrNwJux3tIFUtVd1cn2l8p6V3MI +YZDG2yL8CMd5w3YBSuugaxEoQp3yzN8gKdZbwhrJtGPBZSjPwocBqNnuVaDqMMJH +cQl09ZJstWSJzQsfumKE5CHTN45iu2ovOTK8XYqeXtnRgp5sMrS43encPSJaJFyV +gdjqcwKXXg+Zjf9DKjQw9DGUd7LSo0ObSQQId/oNNnvhdbfcohp3nPkA9nbK8XA2 +kT01KHI7MB+pQwCSmh+MNUGrk4ZCRs5tWYz1k2rX2qjxfo1AEnvY/QmbPBE6WVie +oXj18OIZ/vy5L9QRCuWnXlFYtt+yYhZ+aQpTHNq6FGoB3tK8gpUgRhnr56CqGpIV +scllu1LyQznJkVnEekS7x2HboQwiuc9neb4Gi0p409UR09G68ik7uykx5mMa9sUA +wXBY5MKEJUPZqYYT6v0lknF0sFaSCVYiiegO/7rPLhkhnmyJYvi7GzmtPdeKq8PH +0a03+TKRbr/pt2mjWtFvb4Fj1OICFK03mciBLCqBZh4xfx1e0sDetUmfDMj6+oJc +4cAF2aLXkn/5+yiDyn5ICJHol/JymICbqZ6NrZpM4tNBtva1QkOHHllHicRqpCNi +8elcNRIYrhgJtgK+OsaHA6FDHYXiViQiuap4swryMRNRg6IWsj9BiGnlAe3aZ+3z +AWlvc4IShBoZJk1MqmctrbG0HlhSD5SXySyhF3oxDShhJmMvInZAunm53CRKBVAM +EX4H7fKGgOYpjHZkGiNhPcF77kjCgXN22WR9zOrKU/dx3xJakqZgp4kDmKO6POOL +IWmHkWI1tyY5KAUsirhyv9HYdhUybg4/6ZKbrlp+DcaB7iN8ApElpZkDyuUqzmbg +MWrp5tLd4+RJOpfI+ufZmOELOn2ilFhu+fahtcoLaqCRk6BHcvW6Qqn5IP6aecJL +QcG/akJAakFZAuPQanE2sPFUUsISte0UCdFOhTozwWChDivc4pP0v7klY0YK/wXL +Ua40U7IcVsppwLYd2hRQNAH0cYqCjxEOGWF4Xqq0klaxn/3HUixOJMnHbnB6Hmmd +YXEKsCIzW3J5tPj6SpIWAxEp4x/y46/WKecMcBpQho3Bhupown7r9dkfOvfql0tr +cUqb65JD1SeJHqe4uqmhsCE0iBJiclwEOaMSiIrFa7TRA1ytMkuYkOlt0+9aKzUN +gXnZqwIOyAuZPtibKhsxLjFV2zjS+lJcSdWnJPrUOqThVlQ1olHIHPnxYDrKmNXy +kT5PE3JS30ipVLovmqYsEUHM7hBCPXeKWb0C5Wo+E4fxv23TElKXJgnsIBM6oAQq +odkeYuLQboq5oJP2CgwkelHZbIGy+VR4aZtxWtrBPJ8Bf9ptggzJ1BmcaQOqAcIF +sYoC91JJchPJYsJ6egvPm2G8l/oi8B9Eea9aOUofJ64R1GQ/8kDJvylCqTIafTVl +wZFMsMJ7jXXZ2ry/6mQN4nG1SfeS4LPXiTk86roWavsh/254Yq+raDkeZheK0q6a +0S7nrDIoDOjpSBETWtjmuIEE9d0Ci5QfmXmseipoxfsxQPM/0hcsUElwPoj6waXy +4aFUbaIO4j757GU9yiWL85Hpo0Fyr+3hqa9Z7prTIJhB14MUQjqurVl46CxqC7ra +8SqvVBLvqoEJB3kTOg1S06Gk+ILiDZM1uRsK8AoZjBRRBEuNstY9xml2Mk/abrOo +AQqpiYKJqiIZ1yBnqk67rrF1LdFSZgCZyf2b4nr4PpdhBwt7Iq2O43mqAgxKrIEB +EX+MN/KdzNUpnUtYGqpuOMGcFIvCeFmp2ZUFUuoxmU9xIB5pkn386olUV+S6gzzg +Ico7L2LspAc5mf8Fit87ZtFZGAAyBWp56SNVxFqFIj2Bj3Z+AgiLlJm0Rq4qtSM9 +MSsx6NI0b/RJC1uf+q4a+OHsOpGiy6WI+eew6sqyipaRlJ6+cgzmQakK/+WaAJ9U +QeJ+4UI3D19ZM5TUatgqn/GVFjISjChaCSJXMjp6qdChb7iq4kphdbmWxl4KJj6O +US/PYrKzEOhpUfmn2hu0xAGV3UmCBrarGRKetaqbfkWxYH5CUoP46MmY+1N65bgD +YVJknSJqpwR5pfCeSjkm8REqWvTy+rlMKfjzjBrXMXvBp0JlwnVPRdlQFNrq/u6n +cYsYLZIar5WJb/hSuvAY0yGV7qJiKUiVORTff4rsEgvRhO+SMuKxeOn+nq9aMugN +gRpe+QKFqx6Z76ZiKgJM5jEWlR3SURx9Sab9FfqbmSjhNwcNoogTrvniQW7KP9TP +kT8/dnJpyJypZarCmi2nukHt3+NCNJpSWe4FCGqlZcjxAKRXEikQ5Ak9uxs65wqW +oTpeReKH2f25EcluCjM621qlyeiykM0RaSzGENrIPmcBIHgagoPrIxlN4Rqq6Au+ +sUv1NlKgWjfJM+F6etI8VWGdo80iJ2pbeaAkHkrGFHER1c1h8leRWClTonwaBH+h +wbLWqsJyb/3ZC+mD6ssO33H2OC+St8sLiYof4rpd/0chYIc/YmaVxTmPBLGK+TN9 +0a9sUTK/4xnp2e6AWt83n4Glq7oCAvZxmSrNwypPPusxAR/M0m4zHklBJpj6iCL4 +4YK5TKJFK2P53Rj0ysxnk5HqhVRyxpQmqcBbMJpaOT5B+KaHQjFPPFmpPfNqcmpK +8WtXsRLGYVMJWKV7OlR2l6EF6r7ixPuCuYwRTApAgO9Rhckasm10d2kHmTXadVME +Aat4Z4IASz8ZiOrCqjVjDLE2kppSvSa4yc5MA3q/yv9h6Mh3IuTWm3mbnrVKU011 +EYDna/K0Ui0prlbTGjFWH8G90MfCb7mF2caDe+qY+OhxYX9bklRSgYmlzD26yu+y +ISsGcWKjjEw5CnDFigafsNHajycynP+Q6bRE5FqMEWWBMF8uAn9qQplluf0qnPo/ +MezO39KLtAtJ3NTR+nW12uHNUbyiAu1b+dg1qMpZRdWRlXJFciNLE6kbE9uah1VT +QQPUOEIuLtBZZDvCaj85GfHWMCsSYx3cCXMV/jrB60ih0FuD4gHIuLkHoCIKTRC/ +UbA/1bJKBU1p4nHC2iLyDwE235yCfdSxGcO52aqChCSxIVVZUtpcn8lpPpl6rGJ3 +YTPUByKh7Xl5ll6RSuDP8RErp/7yEf7+KQkRPRpet2jByDAowmwtktmB5OzqZay5 +cczrnZLxQiqJwP8RujfqhyH2aqNi4C3eOYUh6YoTVJnRBVkBMnkFEumPoIVaOXXT +gbt4wAL8CESZoGs8KumA2DHXpETSqJ95SXcJb/piUkThGNDHor9YTPnTmLbK5myJ +kUAFNXKA65apdtBumrT7bUEOZ2NCKzfCWR//oGoM0ijxQTCxEgBDsgmOC086Lmse +oZuz/uI+PlO5gnQeClrqPVHbWwmyJ4DGab1QY9rPGv4BwasmgvqHLxn+Touqz2/6 +sQw+X1L3/CDJBLboepkEMGF+xekiXq6peZFk3UptnNoR1gwG8m6TASlk0WUai6Lx +wdP2N8Jpy9bZPAsE6jIqRXE3fuKSjp06idu4Crqk7johwbVCYh15LjkAGUiKIFMr +0TDIyjJW9dDpagIRWuZiXoFG+NwCedEqmdvjqyo20agxwqDm0sX0m0kSxBv6T/mo +4WM026J8buj5zkFLynPeo5HrPQ9y3XXlqdGTl5rhKwJBGWBzQihqxlnaiLtq2TRt +8axVLxKd0gkJqYcaOpv0i6Fm8Zzie14Guf2OawpnDmBRBh6jsgTlF2mYNcTafM1C +AUzecIJ3ZWwZOaoDqhwlgrH3TJhSFAdxyZ+znXqGsJ1hyZyJIhsZ33mMsMVK+rIj +EYEYbvLLEmkpv5f5GrgXLsHeImPCZpMH2ff37Or/cX9xojYVkiti5on299O6Ef0/ +IYzmumJabvE5e1YOii2cWtFb3W8yM88B6UVqMlqT2nmB0d3vAvbDqpkWIngqg+uk +Ma3CsdLis6ZJrQSE+jyqfOGufmKiOS7k+ckwksoAmhiRlhzAcjrqMqksXQGaDuaD +QSS/1EIlx5BZldg9aqZh2vEXoZESOswWCcSJDDoIiAWhMRXK4rgohrl47zUKdHwZ +UTGGjrLhM3VpcyCR2ikKUgHXdueC9GwcGXTLbqpppK+x4oHwUjF7w8k6N2R6c2Y0 +Z+u6UyLYLc55h0J2SocTwREsyiLyKHxpKRpkpBrlFpLB6bQVwmOF2NmyqtPqzINc +cQ0VIpLIkGGJEb0Zun4VCyFX/Xdilw3bOfbZZ4o6LxvRhpjcMhCT2Okg2JVaQNyZ +gVwpZQJz4HeZUSbNKtDPwDGYCpLS/9zNSUjLU/opZTPh+a7JovaX8/nEZbfKjZ/b +kUGhM3KXSLOphyxYmjsqZ0EvhPNCIk7VWVDuU2pzWGTxghLEEtcvDQnfEdE6dSX/ +ofwe8uL1nIa585WpCoE0XlFclLeyvmwSaU4RdtrW0J8CnYX2C/Gr5QErneDqdSBc +B1OrIiD/KxwByAuxWcRq3GFf/bI7OQ+0LaQTE5P3DNMOff0drdnd7tzv5Gm/uZvx +wfSsu7Q+JOC7bcp+LHCSJ3DhA7HPbZoTYInuRbmUbCYhIvrlc7ps55NT/qQ1Rzq1 +ga1WbXcGT1GghDfDai73w4Hn2qgC8CZGmYzw1iodfvAxg3hz0hxwRUnjFzf6FipB +4UTFfKKzq8r5v+Dmyhrv4JHsy1Vy9JCaqeIBSJpo+B9BOq87Qh//R1kLyilqQBn/ +8e2pshJ0/SAJ+h8UOuLM7KHHDoHiMru7uW6C8gqONiJTeMgKs5uPI2kpCJ/agyGg +Ae3ZCYLu+aUZ6l/NqgMBzLG4Xa5Sa6E/yXDQ1XpN8KxhqoYUIlJVqXl9OOBKobLI +EYIfIvLiDAUp0A7vGj+zoMH/CsHCXecq2ShiSupmBc9x40N6kgIslolH2cq6WGTD +Ie3ccGIRSvI57LKEilQzINkjxLs2NdhH6NbF0j6mNdVQ/+/D9gbASb1Uh6wp8C0g +RZ0d2qGDo6g1LSmpXVwJLAqpAbPMZkzL+bqhTINPEbAtgTARRxcjl2WeVZJBkPj0 +8eGfcZycIXNZxmvrag2knvFYZ0kSETWGCRW0gTpPfkKhkuTi4m+D2bnptDwKm4JZ +UbKicrJ4nNxpBAU42jD8xgF4pI2Ca3/nGSXTGKpQ3qKxowTsUohT0ckL5th6OsR2 +YfX14yIPaP15eJzxSi7xGhEtw0TyPzQIKSvt5hpsUDPBCs+RwlpXFNnjZjLqM3VM +cU6UnZKfmLeJYjCOusWamCG4pYRiTueHOWcIoIphpEzRB64IMqdaSOmxRQRaRx2d +gf1vSwLqMbaZAte4Krc4WzFZxunSVtT1SRlD6Prw0THh2qN2oi3Rn/m1qBTKNGyC +kUITVnKu322pmL6imsIy4kFQN/hCGd+HWYHTxGra+Dbxw0p0Eq7WcAkwzsU6vDl0 +oV2gg+Ks9ZO5ZC20CqgY+FHdotyyVZNxad8HbdrdYIgBA9XtgugubBlgDAeqnYXv +sY7R+FKlbzXJpoGdeieiOWFAS40izCTbeXNGe0q7eZER2Axk8pxFdCmG0aUamXe9 +wRX5mcJX8W3ZnjHI6gCvPHG5CkuSPG94iX0Nfroy2wMhg1SNYosuFDnio/6Kbl/a +0TIBzDKExr7pjMsnWvRGV4GIU4ICZ/a/mT3z6CoERX4xRKZW0nOllkm0IQ763bT8 +4SVslaLq4gX5sPVqysGZBpHtLwxyC+bBqfOlZZrvntNBW5REQhYOvVk8AeJqpxe8 +8S5UHxJL4hQJS26MOin/9aEoQs/i6RGfud/rhAq1+PFRCEk0sjJ0Fmm6EGraik9Y +AY5rloJlCOgZmwvEqur2pbF5xMBSwvWfyUGjz3oUimlhi4Z8IomL9nluNqlKSEwg +EYP8a/L5QH0p4bvXGsYos8EgiUXCVLXr2VnCN+rNspNxJKduktmvDImYcEa6nyV5 +IU7p9mLIH0s5XYXMintkvdFd+vIyYRzf6WdX6Vqh+lmBE503AuTkmpl41X0qURuF +MS+sdNKQ4FdJT4b3+sqh7uFwGrCip54D+auIe8pOEZ2RmPIgcmjWTKlOk3GaHJVq +QWZXakITZ/BZ9/RuanQAIvGZgzYS6FemCWaUgTqWzjuh88kx4ibYrrla8NoKwiI7 +UTOVZbIPP/9plR/b2jfIqgEZaPOC4gsPGdbQe6o3MrqxZN0vUt/lRMncSht6AXx6 +YdanHSJGnAN5aWynStVouxEukkjyViZXKTysKBrzY4jBK38AwlGjQdkUGa3qmoBF +cY9p9JJ2WqiJs1mTugx6bCEZZC1iBbvgOdisNYqIs+nRiJlpMj5c3elC6fRaTjgZ +gZ5M1wJh/fqZs32jKp67YzEa2C/SrYVtSepwUPq3mHvhu64yomQETfmmYXLK29I5 +kUNbgHLFsEKpqYZymkkVG0FxgNVCEOrVWbKul2pBs1zxBNmlEoU3WQmBQFE6A6i5 +ob43F+JjSHe51TriCs+Wx1Feh1yy7PNfaXA0bNrkyvMBpMpwgl85lRkRXFqqhDcg +sU8cMlL8P1jJd3gseu534GEhr9wiA1e2eWTooUpiz1YR2c3l8rP1NSmXokQaICmx +wTbbNsJOuyPZzzVU6mcYRnH6UciSE29/ic7IELp52FEh5MScYkIAiTlTGmaKlUxT +0bPeGzIbhu3pHYH2Wvv/CIEpYs0C3j+Ume7rhSrrJQ4xBSp00sqUC0mF4cT6pJkX +4QYpiaIhFJb5oYB7ymje0JHuaRZyInXXqQSAFJp2H1lBfA/yQg2XIVltLohqDjBg +8W9UWRIigWEJnHKnOnCL46GJi+vioGKsuVDLxgrcVItRiR8FssmSbGlLT8nakVen +AS+TeoLckC4ZTK2LqtEGzLE6gbNSGQQOyRIsr3rbfQ9hbJwlIsC7wnlfqsRK73/m +EYSvL/IQr00p8p7XGk14ocFBnVTCS/1F2YoYWeo0eolxZWDWkrDtxYnpvWq65kCd +Ia8LsWJ/7/c5zs2JiqIv7tHeyfUy+JlD6fgemlqoUZ2BtN2FAlusGpkpIFEqOFp4 +MfChLdLnDWZJINgA+pGkNuFRiR+i3s2S+Zzlwsr1M1aRmR7Pcn8jP6lffwNrhu+N +AkbdNxzH2qz4wm2xJMMejNa+XVe9xb7HP0Xq6bGo5QVPAYJ/9LDb57nLobQDx7Sj +d/vYQLje6nBKG+wBt8nGIcxX5VnvpkQ5GYfEO6oeoLGxJQygUjYymsmtZU96yI17 +YbdvZCJ9ytx5WrI7Snx6XhEvNxL/knLQIE2hjRp6Uc3FTMXFx0hpXN9FweftAaYD +edCUCptN1q+JBDhNulKzwt6FxymdQ3cexrY4M3VQo1Eu9qQczSpo7BYsPXSlqtK1 +fsBAk/0nvb1mm+XO1Xqnac4kwLct+w5PtkSrTwWBRrMeYzCeXWTOCAZob4s1fSxC +bruGaY0jRFJWRXsUmtDRTUGSX+9CB2+7WeN/cGqoh5HxRb08ElxSQgnSaJc6SnAL +oR/lEOIalSy5Rr7XCvauiFHfQRuyg45ZaQGXl9rrDh4BRVbjgta9ahnCoZaqawPF +sRC941JTyjDJSCW5erWnmGECKQUiOoO4eVUAM0oJv7IR2mR58srf9ymoqRIap7So +wVdT9sJF/xrZADAs6s6bqHE771CS6ihxiR86ZLrALzYhRUt4YvnL+TnEBluKvNOH +0TSS0DKyf5Hprmx3WgKTg4HKBu4CVQO/mZ/aUSrSIFwxxgOw0iE+IElWV3/6a9jN +4ef7u6JYP3f5koG8yg+9+5HveVhyOT5XqRWQeJr9eexBnSCoQgSacVmeUcBqdWKn +8bCqRBL52YIJ7SyJOrdx8aHq6jniV63fucEgXAoDS6pRCsxgsmDroWncw2DamDnJ +AdBQGoJTk3UZ/UTIqrgw+rH7k2pScMwFyeNqmHqiy9phTchzIvflCXlQlNZKlk3X +EYU4UfInV/IpA7gSGtShp8FiR1LCQr812btkUuqbW2xxpm+Vl3hJOIk6wVu6LbZr +IRBEA2I2ufQ5P4xgismUbtFfb6kyj1Hx6YkcCVqvgr2BVbR1AtLtRJnaYN8qH7O9 +MbHtUNI+9edJ8d8Z+lgBLuEyDpqiFffG+Y24xsic8AORmiABcpaqb6lwoVaaKqzo +QahHwkIB711ZWemHakIHVvEbvkC5r0Y+vhbTH2ALKvovAEC7AQZ5885/L/TJ97gU +JZGh6ArTzRUgYP1teE7RVeuOGSupJPR504xa9aeWQejL6+rhqpXnzNQ+aS6qaug2 +y80de1KVf6UIjEalWsGpa0n8mz0m4MnUXtSbZ7+VZvDmCpEjjVByye5vGqDu/+wu +gluIzCDtF6KjuXnjDxDHYtfxiKsZheFLlJSQ/CyfLCMCqHovMK+10/Un4kurm5UE +uRSrQzziBfNDVJK24xfUAhnND8CaN8V/5EkQqnMSBv/Vz50gRP6bctBIaGvomHLv +CKQk00uluPgdwnOIX/pCk+N5Mx+RmuB+NEwqPyr2T00+38HW5ENoWF7tclRid0RF +7/n7BHQtDezfMrGIUv0Qz/wyywDd5ab6SwgX5ojOy8LLDhXXWsdg8Rf/SHU+ox9o +obFbDv8Y6LP5wqcmTjOrDzXokfdYqrnFZn8XMyYcAFqvfWn1Zijyol5bJEVOBjnI +q3KW/LOOJk/faWhbC7NRpEG/XtVoPHr+xgHHckelvAJORYm+ywzPuYEMKTrjkWBg +3UFbhp95tzKXKvoPeAwAyLvAtF4YBRzE0WZhibwqbaCuGHJmg4+UJ9zm8nKUEd3I +OUdj52rbLT2Z0wpxgqo27aQlp+QinwhefvK7fGpxSyuiHE2vWao4znXgJumm96Fe +IdhU/AeA6nWSyqFMXWku20F/hxv43HsrhfHAaQzU0PVO3P37AEBF17d1MwC44s1D +AaXxFf02bbmZmePxly+muLzAY/ox/LD/09UpXe9L1xtW0QzawFjkOGkOLekZ4z0f +QA2C9xZy5S/qZFvxuTsCgd6BQ4Ya5y3pxRHy3+7KtvPfJeansxpz4GlMkeUi85W2 +1p+/BXtiQ6+OMoxsjahi/I/nA1xUL2f6TFiBeoKeOhgPUEfVNIflww8oGwLRus3D +kYi8NEM59CBIcnDV2OwKQtMK9eS70uu6kBw7lF01KNRyMaIPZmD0nIVgIm4IdsQI +odas7wm8p9ka8o1B0uh171u+1uqRqzyTDN2+CuKFg46nx8PSnA/p5xnZxs+Ohu1H +lyYtFewzd31TCbujhy5UKBxd+4Famj4LPEETOIOvx8qv+0SPpazTTGeIZWBhpo9U +P+Cp6L03qQuTw1J4h0pKWEXhL2fKzuM157QvDX494pmlpQGHuwfhqkB3oJEPE4GC +LI6yuMNgbKB6Ae8LLBKbb21TUE/hhBpprukEvSn26ZHGKJJzmLAnpl2GEYNYSU3x +USw9AciasiisCH/YgKZWaURNmU0Gb/X7BYK4Q2BQOcSF595f2B1ZKHjqgJNYYjJE +lm3LlxGto/8rB1R12ZjGr5AdDaMBtAU0ocnTjiM3quhO2vyHj40Dlyby1h9VvTlX +8GPul/Vuv/pzJiU+YMU/ia87W2tg5uVWwe1c+K8PLXOxArnVWtfhNni4wZi7M32C +BmnD95OqunpkpSUXmvqLgalwLxsZUKtAV/zlHiKCZluCFRhISEKwR/9IAwlYaaSr +DUTj3mgTIB6CSl45ecpFbQ8hq1Q7Stjs96jiU1drd5XnZX4TyTorT9h0d1I2ilhh +o0vXVS0j0AbblYO/xa9nTExIzPgmeRLqoYW1Hhu/s8KW6gOXwFg+/Qeld7TXrvvY +WMed63K87gR0QJ9hPnvNm/l9Xe3d1gCg/8KK6/ACDxh/qpk65BMB9zb8hyK4VZn+ +x7HhhO0Smri8g64xQPdwT6stKwpNyoeEgRjpwyKoNGjZt8BjemP1zUsVoZPQFW+Q +Be0yHINBBvUZX1Ywq4bSXrF9u7VSHouCyYUKGHowddFhD2KPImUo+Xkyym1K5LYo +EYfMPYX0Y+49vitS3jXFgpP1d600TLsDphNDIFL6ExHpzLsihP8qqqYWsva9U2V8 +WkmciGJdU7Gpdofg4+tNPcaxb1LqCfVyX9zCUM8dmrUstD0M0/HAi9sKyCWPTnEg +4VF1KgrCmYrxbvHyZB/2inX3e9h4vTzG2TKGa7lSYkKLwTkpSXcJ+amSh9CbOCPe +YneP/ELvXrlZu7WoahB2Vi0o/J3qn9/BGWlJAgP6mwSI8zO6y5aIIHmCV5R41Gw+ +ukUDbRHz+hHwzEHaHXsKHsLYBIC2vAxjvl8mjGZlocXiYlsv40PuN0kvrSVNI8Bv +qe5SZat17rL334051xWO96xa6StDXo8mKlJgH+shDn7Z4uOcd1VP4ENs3xce9T0k +B7/foYrjk4ePaMVvVC43qn+Y2Jvm9OlQyz6cl656o/xVpQHCSeFCAxqWW29cbHQw +dmNIjWXlqScTHtfXnVuZ9wlXKFBkBQW4g+byBezB1VovQO4WsVZfX1t+jNe24GFM +7JR1uaNdoKrmhYXwUrMEtsmYwJnv5wB7glkT5XVpTEOr+o5i8Pipl4AAc8Pr5w3R +DkfWbfvx4J5XgEM4NTfTidLQmdOQseTlx6PyObwQ6eDywGb85Tk+rzlzVOIhRweH +s9vJ0lqV9VFN7GKdBRbBFSHQdX6f3kin18wyLNRUqFi0ep6DJKicFyPZtYAlc+DU +4RsuhLqCfiQAAj2Wp5deZs3Li3gjZAcedrEdWOvRAycWSow+hKFlURCu0jcaogTp +KKb6W2G2zKQKLR92y9aSsJfJE+7dT5sFOJZHJ5dj5ak1TApInNPpgv5Q+FVvcReO +tV8DyfQUpQwRk9ERUkle0UQG+5oR6Trxw9qlwe+v/KxjS2ko8uSgPC59T5deLkL4 +JyBmlKm/xj85DOA6hSXYkM8aXNzs606Spu/3idc9okzRMAAkMJYRfkNHcbPB1MNr +tGYOt61KviX1aC/Omsji3eLtPlZlxpxsCWShjw2KH16vALGI+NStsLwaPQagJ/mr +0ng4llaF4WUBOSOZg6Z6ugCIdcp3IimzN8iq5Srat+ZotnWFSWGq+S6e1Ayws1xd +FRp8sMSruwWWcZkHIX3k0speKCDOLYJXafvYotej6h9JTw7EuPYe7JxrE9wg+WSy +9FZt+zRjgpDP483qF43qKDyqL7Jmfrq8ZBzCK142SgYAUD1K9+6+SM2mwAaGo36X +rUHsnYpObQwVsPFqYsBcCHVP2iumr3c6lcTF30aNv82aboR3K88qC6u97Kpu+98R +D9O1uEqv6juh4oBwONw5nhI79iffATgeVI0qcA/2N0GqmZg1lDaKwes2bjriTjsg +y/z0lH6s/F8LsosfuZ+fgP6z73/Y54UIhfp5TLqRkR96Hed0wouSbgLQCQz06Fn7 +2lTWfhVmbgfyNPdN6jiC6i+TnbsHiUtMLDufcrtUY0EeBEIeyhHD4OGt32Gg6v+V +ueqwUt5WYjQCSpnjYJoKNtlV8xqFhQIsrVNlEs0WDT9qgD19j2tm9j3iMUlbB2kg +yv+t9W77p0eaNPuKPTZhZw/Mnd94F19YKe073v30JDnI1NOqZPb4rvn9gcXqDLC2 +cj0gf8+aGoSP7B825k7FpphZXTk4qO0d4QwvFmumP6Er/eFpgr0JL7eq3e/2kEmY +sKuyZjRbiCQcX8vQqd9+iPrZXyqZbbXU4IKp+lt0fT6TxKpJyM5P0w1yLs315wEY +DQbOwtEWfB9nLobPgUfGkntjTArTf1nlQiek7nAcPT78kEIs18QNEto/PjSNuFOc +OAlFTe0dz1YeMdm2xeh3GYUIW2pjcgXuPzTcdwZkLKXzKphllP8J2Dw8TqIEX8Nz +UQrlNx2OcBSxJq2f+P/YTElF/F+DKZivMhUdoMo5a/apn7h5CDKHNFo6fne/sEkg +a9/RuiCxp4cbr+PLbb8Z9NP8CvQQVNyE35Zcl38XWSx8p5YEWOmIFhgH8fGixYFr +UAEg208Q88BAMaYW2JhtVi2hXfmZsXbttoRlkWdt17GYyjhhkVWT/OAPe4SbikO5 +xm432EZogCgqPPuc5mFhRTB1CFLzJujDz66yvMpQXJQyhl421cpAEYdySNLhDw2M +yRH/S2geA42HEyaDs4ACws0j0lt4V6ERXgptZ+MtbYqUrJWcetvakYQe3sDN2uvQ +nqL3nbRJ2RfX2Nn4kDFURWC7FUcNKTysefMF6NsnNMHxgmocNZwSMxc9xBhH5gxf +FZlBp+ge/jrQzz22IMQlyPlfJnTCzQCADzpCIKSiuKZDeQqd4rV30nBdZZwX3aQO +suYrXpPg6bO1K5CNImYxhmhGJrgM0f6Kx/N1nJIIyjx1b/Eplk24glQ40dNWM5D8 +VA1k1r+WxZGEVCMot00sUdUjPbKRXT03GpIZPWyp2LGa8zysaoJFAgPewNLKjhcc +wQ1CafFbwAU0JtaS3bORK/vNH6wHOx9qCxMVBSfKxmEfkg+W8Hm2c5be7W7Oqn8q +2mcMmFDFyRYU6I4Z0knsNlV2SBh0Gs55QWGMSaSWEkQh7vviqh39zHvJLwqCEJl4 +1b8QrjXYffFZ1tP24gmyXtfaR0U1aYFTHb5z5wIry+fiQ3ax+INK1q3+8ZMZ/soA +WqwWSnXigpfH382oE5alq2jANFoIeVLvjgt4uvU9im+5LpmYFrugIiOG2t5n88tc +VSvRNfJYpWLHvzitWwn7nsWOXppjdM0UngHshewAaiVHvHB0JDpJR+kZC6eezevr +sYXcRemmCxVmfDRUPOdWROlvScfGEGrlWDCqCbl5A7ikb/ehfkx8MYZqRaIokxZJ +n2ElkFnZgQOdJlVuzKXc5y/53HgcDp2JQyPqv+8RTWgOC3mvPRtdwisbABwQ7qoR ++Htqz/QRxzORtPkXMM02wKY2FOYXWjny1UTRQ9M4oE42U7GZ/bUexEpAKrZfrMJb +1tKAZZealBYdoNhrp9LfkCc8S6g9dTI6tgg0FQbT7iHP2ltZR0D4ghHfrsFUgozT +1xsGbQjMw40DYEo3TsOzETTHtgVJeAqiaEUygUcCZmRfWeQXJzVJC+kHI9dOaVwW +CoqNjCNXjKQnohJCHg8LZee/OUtifkUhKv0GdmsA2CeKVqx6BiU2tt/9QxA7hw/8 +vRp8GxvnlOebk14AfpE7DLwnZmKuhlJrU5K6zxKOOFhJv7V1JqsY4k2YTW14hX9+ +wQBbseE0Iu+Vtn7Js2XjdfdVY1ejV2h7KBEMAAzoVVTNnd0bKbkHeV8KB//TVeWr +khUPH2JHpZvlntexznidwYvUALIuPJkKTVrfLo2J+xX23BYh88rsTdeiiNFwW8Gq +cO2M8tPyusTT9ZthTpnRvvBaAnqiPrGiLQYThEVtAIomEySQZSiAfxiZrqO3EJiW +rzfuyQDLP9vymuX3rDLeGEwzTtU6ZVubtuGySZFeiilCZb4LqvwNeelTh+e6Suxz +Ce+WqvwR2oDLURHWen2uTgCBfEB/HoJtY7bvzA5bNvRL+XHR/bes5CYrO1xpHQnf +wAhZbxyobKOuPLPIG5hSDo45c8LJNWlxhylTnkeYjHWM3Nb9M2yB0uDeRev/jvQu +hR3cJEJE9lVlOUmrpnUqqAw2wh1vrADKrg6zF83NvVkh7X8UmQuf+X5Uv3GjfMhH +CJRv36tV0vJINHltJ12vJXDHiAdMaHNKIPDx4TqEEOClNdkOoVzLloKjC+IBcByr +p/8fGjGOoU78o03SHCVvil/qdjG4yJ0ocMNutl1dQmboNA2Po/IGH9c0fL45wiW9 +ifrL31VPdypse/TAKB0RXmUsyk8qxSz6W+Gh+mZAj28iOjCuOZMHCFx2Zus9QX3M +shYBoQNhV85E0e7M3SmAUqNrPdkPJnW9n6ofj8jEWJ1DachWzM1yFxJUyD4pOlWs +Vf4NfioagJkQT0/NJNvZiZaW516W4ejHKVZZBlepsAwVJYnWiI73XVGrPB+FTrIX +BgQ70q2ik9Mrzo4xDF+0scPPQbrN8j2rpY3+4tffTnbJAjYDIruWSfLS7dm6PS0G +d3cvUhq8fLBv3S412jx+/TXMq/NBlM2x6fajU2Kk/+h+LLtbQGbbP88N0Q5aoeBE +3bYRv86GuxrlzY67iXmNl0Nyowrq/53JaCWUCW8cH7AzH90GZ1+mggxdWKHu/vEN +ufue+OmsBc9lNcBZGL8bmvz4zvskyY4e4kptsc/z1In+cTZzPKJ4q7OswKvE2gA2 +fuu/aOfrUZIfPxlbsqgieMweL9jZzx+AZWBgrSkB8yY9sRQ1l3UOHTDxlqjH1OMw +rHI+LX4fia7m7m0mR3Xe1qty6pYY5C9cQgPi3tQUZeRceaT8VpMENLkXlZaXl5nB +KrMQaqYBtfDp4mZHKy4l2AiaiZji2tMegLpjcRlpnAJT25qxph2x3mxLweyKGkDw +rYuJkI3iZtao52yrJNn2yMud9pY1dccD9Vof9fjfMkpKSZKiP56ldM9AND05r3Fd +wq4pepr0f9G9qo472cmbae0kdhyCu4Q7wXSMCxpd4xL155YQo1dJcV/WHsanF3LV +RkQNeq8zZje7ibwyizj0g+IgQrVWPFdQQf7/A4me8ZBwppXPFHzOoVmUqHkdsB3+ +Mj01ynSY7DJ1WpFKcvCacHdZZIMvQad24Xg796KHEU2LX0Tbh0p0RWtx7rhPZ9UY +dBnuZP+p3B8bjHEqZC5WLgdqpa7hTZ38GY1Y+JS8PtVvdkQmtKpaeW19cZvPgUXw +K7wFLnyBnFUS9KxsG9g8TFqUZZbb65KfhTW3OfcSbiAftfDw+X4LMfPOkSuIUKxU +LU5/S8WLiqXq2YK2qUM+3NOY6sgCS5zDWc9qWETXM9x1vT2KgS5Ip7w0P/nEmqHF +WnsZgA7kRu65UaAhKYJs6P7KPzXSbefTgFLOy/zwUTwLyfpt5bexOIs3C5SiyXjW +LqHlIhfnd7fKrJy+8KGMdNEgJK6da0dO3HVzQBRDCBQloBc0CTQ7fQZi+1QlD3Jo +qhvwcGDYigbLVd5oinU7OGe+5HRHS73l7IAhZFfF6c54igYybOuyLH/ycaD2VRqA +k3FsA51JvANGQg6FExXVCscPL1ii4Wcb+XG4FAuWpTovy5QdxZj0cd3InSAAsp+D +/8XzD2W0whLcE3Xh3FhN3rK3qgZKXy0B8Thqdq4tJ6tv0qA3rfkCS1cqbmGOZ8jW +zv9e+ReiSJARzMCLrHKJefbwJ0TfiXgh+A4YwwFH4LW+jiLD2CcfDYVqfjQm+H2q +4h8+1ChD9uB2rlOqbOBkIy5RTVU8ZXJ1KEcoisrtUA/M8OekjBmfQEYEeb5xlS4w +qgDpQ96CIIec33hFte7TTpHVA74FMcJqbtRBHMm6tRJAj/1DQmafbCKEST4YIcj9 +wJ0KZxmte2L5vasa25HKJEzmqLimS1v/+8SgZLU/EH7U+0B2QTa1d9aMkMhcde34 +VXBcALgRRq8Sb42DOtH0TjKhPe0Nn13LpQVUDb7/mCm6aBzVyK4ZI0LoNshI7gPi +Rf7SFtt90FuG6UO76Sa3ni4fX3H0I8QJb2VP8R647OaoBerr9n2TwepzL81HO8pY +joY2VEklXOW75YoA5o/Sqjz6lHzBeJDfHwsNVGRVaI2etLYqkzDocB4FOKfD8sBG +sW/j0OjsH+/jg4kXhtE5Dncio5BrZU/tWlVZUBkYH74KeDN8SwRClezIcpaZJGj0 +dWY8mYMJ1ArVMB4xwwf3WPaGsd+X6fRTB8+gkp6XJZ4RVBRVgo1djiLDJOizvj+r +QcBQwcqhpq0jzA6MXHtHnPl4EvWVS4LLqGE9PQ6Zz3kdX6/O5ZlEs9PMHp+hJ8/q +Kwr2txh+2V9BeqNU4P6h0zNdCOX9lBMcegOYJd/gr6sjNy9TRVNrl5JUEzjpm4Rn +tuj3WR7vy9jOLY4Q03/hErxIvjCTn2TWwXjSNGMUKHXqNbj81xFGjy8EF99SweRA +pbjSgcDif5xMEDdEZusAtHZ5Dk+6WfWYrKY6/MoAezTOMh6OV8rPge9lLvy9rQ4w +jxeagcpUk7M30ZqpZAefTtR4cdoJQ+2EyjPLkTrvz5mOQpvPkULVpknxJjmPiq2e +UpWUs2+mqKIw4SJ7DrEzb09drvCi2Lt80dsCM/XvM1kD79rN4DUNS4GflFMFDvQJ +k2lIipZdErWO565sMp9dzc6QrAgckR47kkQMoM9cU3Mlv/60yjDfFvP7kaXeuYr4 +2fLSO/PW3Mi6bE1JnYGnGMxWYDGFFVO+ybTLDkfJUncmRwry6LOlP4ALMSxCmKq3 +K6NChfOYSZhz8EaC94im6z9UQukbHkzp/8SIa9vjsA0I819VW4qqxNsxLphhFLWp +ahXTlA98X5wB6pYKL7PjdZ0wrnZh4gSGZtOJ+WpkCY8Ya5J7zJ0xPSwKXE/2bZGG +rNN1ZAv2xmyKMFlsLyMh9CyzdXGzGodL6qFuW95taxWJ4Fehdd7MP7hQZS9EOCD+ +K7rB3RS1g2ukhr6noGPqttyH39HghNtcl+Iebi9qxlaJIFBVkRR2fhr8IG5aPnOs +BBMZb1b12HALdonEDXaahfCgG2ur3lCkxSYz3gFYq1dWbyMavfTdwsMPbSnIXjlm +3M8ypJNg4+P3wJPgTD9y7YphDFFpBB2H3Jmy/saB0F3GsUw9s9OplaWqaL67EZ6s +kbMiBPW5P0Axoq/gSx9vEKDfn6eiPTCLkZeGwIlnEnuGJjgaye69aPPiEzJ4YOPT +962kFJqiTRvXOE5jfZFBZL8OrqqiX9iL59wd+bVONKavUrJcchxCB4gcd/QOdWVS +i4DtL1d3AFnFj6FQ/Ezd7Pg9C2KIgCMxj7IOrAGgD5mDzX8m+qJdgmgzDp1sy1rC +qs6Ifd6mXgpyivA81rGwRW4fA/qqdld0m4h5rr+kozzPnLjnN6+h61rIVviLbRrU +w1G4f1yV6pUl3LR8MMj/FffBDwlTLdBZC0aSmgrssz+PLxV5HeAC288o21SvPIjf +T4y/xjDgX6q6SJSDSuMKcWCk+pT7aKv817RmEck9KY7B/bYj/2YvdK0EtEATo2Y7 +UOsPHbfSC5pZkBREFqQ3XUNUoSMm5SFydj4GMjfYMQO8g9Y550E5hkuEVRh6JgkT +ApTid8y7G0JHQihonKAnlsJy0R/aAnMy4ZLfjFLqomtkIJlWqUnGUBVdsfxpeQdG +KZynfRKvKRnXneCb29IK+5BGHJhtL2Cz3n6/91gzrhysoQEDr2JKnJKtPTTVS6Ec +qLAXsYEDjCHp0Sexkfgr751xSflbjPXuQ/fEz1jJ72oy28s3Zbk8WQteIt2onSdH +m0E4I0Ok2QmZtB6YRzzvCovT3Y8afqwch/W3kwGbfJrbyhDU+lRxuYT4f5vBD4zc +Ol1QMmVelqK3Ljt6Cf/HyCRyMnC3t8Ti0+nz8fzgCXjiZh5pJJChVxF90prPd3GX +P1abOop1drF0k9tzqJSCX7Q/HS4qNPbx7Vs+9XqK9xR9rc/+RmJdrpAT8nbpjQWl +Rrvq/1jYqVfGTdPnNu0EGGTjgqFbRUXhjkLjc8ZCkMn1owa6TO1ZEwh7BcdLNINN +TT6vVe7wy9U9oYUi+JOUfUU0ES+AlYBounC0rV+oRs9O6qdkQr7ahoyIl0bpubK9 +VfP4UWq/LFiz2OG0aaInGyvqmzGtTQRujxK8WVubgPEwYm9D22VwpW1J168nMzuT +zSr1Ra1zqeYALpR5yxQBwCFVLj6cQx7yvsyRb7LrS55KwofSstUxzX4lQ3E3sSbb +JYYlUajGvr9+yc9gTGATVobzdWEk5diYvgFLSidEa4/KKEyD+88AptVW+goJjD+q +/pk1zoYKoAUKxtjf7dz4CddZhe52qEwJS8iNs4DhZerD9ItozJi7AgjTZM9/7avV +aJm/bnqF9wS+RY8DJ8ZAkQuoCT1Xpe75L5e0VxfOBJKMxjqy4Yx+cw6xLiPVNgN2 +AWEYZpgJNL9I9hQdeejS00TY8FsnB3dQ9lj4owUVKKCU0jGPt0GK+GtiEVZiteQZ +tuSXDAEypaB1p2muOG/28VHkkuprDVuIWhCf2vVqYgJmSt3gdujRHaxB18fCP9jt +fFSie9vGvD0REaZule9Y1/44qcwC5maay2Dnz0eeYJC13Kaia0UcqZOuCSyb98V2 +QAupRXmSwctK+2LwKZ5wzHv9vUhG5AOYqyIZIu7ubMWhy7hC8c9AjswWyhSwfN2d +hTW7fz99GjKHUAHWg0fNISjWGB7ux+sprThpLaZxWQfyJ8aIWxzNdDP7Vatb9/3z +COmJW2PeWD+3Bm0EsCWFqQD8oVgIGK+JeokiLIkyqwr1N6iEvlykSLTjIK0MK3t0 +AABTodsZ3n1OVB8XPSRiDGG9ompwcLEuqVhANe3y5Q4X7Z86B8JEbUvWt8Ty/ET3 +AvmaUh/4qYsr1nQQxkhv4kiA6m8ZpOiMxsh8igbSBHfAOBDR80qDj1t3OODP0eDL +VRAS6Z48Ol1mZ74AlHOO7oMzpiHytw3qN/FHhMjJESDRfWGVzwr+z9T8W335Sjeq +wYIHDfwbBiIitsp/OFSILnamUkDqStNToS477hPwybdcqf5pU39/8itJijPkLFme +1mfKjC61wENRXwec+2oLsA1Jyv0OAn8Q7CpWSblI4zhR75UHIg+RRKIgJIWIu93H +dOOK6B+KU4plXsNpxEZbSZJRwzNaLdNu9X/zFnFFTu2TAPGEBSJ1fHhr42QgwhPr +esnH/X37p5m53MljysH0IsVIOMH5f5s0+NbIN3CXiGL5IfRBZ68gl9UjtK6WIQO1 +wW4EB9GmRaUhBPEbSCdOLdzT2QkzRzS2peCdInjc8PK1WIy7OC6c5AW1B8RDGiLG +ykRHxNe0lm8Lq02R0WUxiN195iJvK+bAnTVbTCpDw7myi0aJNGRE06iM+66UcRBn +XbPR4QagaYNmxone3or6OYbaKStyKUJqc5c52yMoTKOQ5ddmbevnRhqAocgxAijF +Iwr6BEIIaE51k/zPwlA8aw8ykNhvph5PatV9okKXJokWeJTTpZmDgYhvNdAuinMi +6R7edUHLXrZHgPf8uskSBWvnvKc/Iycw+Y/ZeA8RL1a+JVScKkHvf2H8B+MO1+AR +OuBmmyEEVPtN2MZs53IPI27TX2MMu+bzQT66RAjGM7Qn4ZI7endNLeu9SO2ZWnjK +CMephWJmSfeWy8lTMhpbpv7BUnB8qoCVapimVE0HR0lwS9TlLK3BB4rNov61K1aS +kyzE2/5nsd9K9CxyQ0vp8MgDH302oz6hLOlgT4je8tm51YOmx8zjzZvg0Fyx2Cq4 +1sr6Ot/9xNsGt37ti/a3G7TbYtGoW9blcR3yNiNDoatoos3OqmmmuS+extB5RfPH +6Y+SKMMpU4qnIJ2lSbD0XCto5lZjO+MlRn/QdVQ93LnrSKlRbyIUhCjCrnE4Tyvi +ZRa04SoSYlq5WAqQRdBihs1UrWcZUN8y0G+7pa3l99+p7DqC/htvVDuuXRx2B3YK +unaaxF7w8WP/byITBFJxlgnfaAsRJ9opO/r80EoOb5I71/RfajkbS1jot7aAfH26 +b7coqtgeOOkgxrWf/wdRwy6q5WoVc+XxL5JT3W0WVnwjO8+s/S+4iv3CIiACcOJK +WCk5Hxnqvcqcn0J+jnXoFfBZZUe/u3NfUETn8jJuXoUHN0WWN4Smsr5mJbfnSTNI +FUXXM9L1QbHcphXSpcW56ZJKunD1mPSJNFYZMdObsWorvo77fBR8nEUE9TIIYB1V +WhfVRkqIJSrFwqUPK4C7myCNJyJjJ2mDE1L8zWCwhCKaylB+j3nmJutgrJKhzhyj +cwdh0V72t4m161vZ5MwMrJEq48ieIekHc4Zk4fsi0tAO8wAtcvGhTcR8+lgck5jS +Y1/ayj26URRRxW5oO4sAbNdylh7wDBgKda9S4nqREL0gjE5B4xmVemdvkd6n6ALl +aVQdU5FAHzd+o/XJEeFjWrfnJZ7Fnlf/wJQ/mkMbRL1oL0qI3yeQjCj+1PZeOfs5 +UycT7vA0m1v674/ehbws4RtGh5qzz5V9/UTKAqqOfcUpulV0B9aZSZnHU/qKyD9n +MQPW6pZ4PwR9CEGtCFUOEJwRYybE/EBtLItv9LZzu3QlC9WjrxUV8vRnYGdeHNIz +Dk0aBEcGRWN9Xhe6YrEPgJ44oO6DcPD7xRxUUCogPT1bSosQyGmntoJE5xLguPnQ +xts4AYPmZRXjHe8qL1rI6708VR4lUCuKUZWOs6pNVWhiQNna4HImILo9DfIC4rxX +P9c64jZ4MFShmOpojLM/pdGcwtiAo5eRh/k7XCRRuPaY2AXq4S7WdjCOad4JKCTc +YfYGrZNtkrt3qq2ghX9mfH7Xh+gY3ISIVnsgK4bDBTKCpC41UuBnPY0btYOuqBHc +gzy31U3FxBOgSNxU3km5hZeHcfa+Oh521henTQL6ZEtiA9rf2Og+PQrfK5xMk/Cc +56Iysdf1qM/rECT1HCUMwqhuCG/Plz5TUlouG4rd0wcQNLxQPCsGRBcQ5/W92h3x +q5nXgB2n8XiufVZqEVAM0fQe9FG5t9/U/hjwNq/8bEQptU+Ni2YIEqDefUH2QIYq +n4fqjzyjHxtuSQZgG/0kmuLOysdCkkqfLVLfkkYgZRuhbSFNsox59BJM0N7CYmbY +v9y4Xbk/ep6udL2oxLG9VdJSWJoSTeaU48czH1DDigSorwr+lWylLZrpFIxPoKI9 +PBxl7lR3tN6v01rm0Lye9xzHK5nepl25aJaabB66vobJDaptwwhccuXhzUvswbd1 +Y6Auix3/hE168FJmC0hXzeLWneenie170hIvJ+37X8WdY1flQrT0kA98tJCXwpBI +sJBU9JpsqKln4/lrqqfJSHzhDMsW2pNp/SY5CuZG2obu0JcrJjPghL0Hem2c8WbN +5Vuis0ZTeg4tf9VbYxnL+tbNkll7lOJPRunQbeBxJJ8PIO4C7Fn8zT6XEwneth+c +E7fGPBRFjILIEj0QZQReINbGQzgkYmB9yD65CxTp1W/Ym8iu/eUdp8wGG0+7xHHK +qi/XgFolCdoON2BMLuc4qoWp6CR86icfsokrZz6eM1y9kUWXikxYSCkIGNgCjrgv +5UKeUoUuwIO4W6y2D29KSbBmzmKOrmW4OlFlwQvAJi/Sal29NquKbbZk/9psuO/5 +lSZCfARWEre6p1KGSZS9IgjC4nLdmDJJG/MV08KvZyVxXjtZg84BTx8TMTJ7BYdi +d61LhGnnt0BOjw56dpVvG8veXmt9zCNSz7kj+fuFHg67K6CZvIyzRSq6fpRF3sjl +sPd5wLZhGmxQQGtnof5RSbl2d+looPKkol/JVpALkMeNlBvDc6pCgFI6qEO5F8Li +Pg40h4OmSuLPvqW7VBS27O/j8q93ori16bxuqr+d3sg/L9BwqmgQuKPprowCzUhK +sPLSQq5AMG8p4fhq//YbKceuDRda7nsG1shmiCTT1eNWWebzWpq1IoZauxjjmGt/ +vNZdWin9s0sPUmiY6B5IAkd9IYS8ToK2LQahu7SKiVwiTJEY8s4AAXhPL/ldkJ3b +fuqBcChA2JjgOVhqYWEarf2IysuqYfPloeGsZsLK0V1xIlugLL7Iq5GhV6asLI5y +aX4LNcnJmWpQtwEdqWhLSaD73ciDfuRLSyvszpBF5r6bpqL8qVnFkG+hLF5WFlsL +9B+cnlnk3MFEs4KH0qfFuYmlP06QmA0g27ey0zxWxmWqetyx/3H8S1PJhFsSO//0 +v/WdBWIB26Uo3o+O5mb2ZlTjWRgEaIXwDgskthJi8w9jXH8jzFKcG0fXxB3R1sb5 +8coPCB/1Q+2yFR+vev3cDfb3K06518kVr/AXs60t11aDKmaIveFl70NRUAp9HXyz +DRrr0Rhn8XRedApBs1+BTA+XdI0OP68kuBQ5cgA8KVjKKWm644bgDSbbQD84nqlH +doyv07YWqkQ5cH8/XEiAGsd4ZDjF6Em6kbIpWnL9W1LFR/GrrIJhAICasT7HiSVc +JZAr1L8pZRJGx7jfCcjWVB7t3WGL+m++jyIGEZChOzq7bm7gZ64PEqmAXSBTAq9q +dWkHnMKij/tJciqt2weNJyfutMYIAOgqQKejvP2y2/EbkfkPEQjVvyOOnjvHDWJJ +wcXliPqvl9i+kEcOJMEogSwqbpDty2+0abMjwfmt71OXSv3KTt4fAyD9yLEnB87A +Hpuvt6MIagfLpmoqCxjVLPfBMSooDoWUPUyqPP3mIYtKeBqFf5kKPVlbElZR2n9u +5GuxffmDmbTl6hbGKKFg0mXdbl3n3Cvu2SN00P4//1zXCbKVOcCImyFVvH+i1W0c +HEPEpdv9LFDn1fY/GZ2WZN7+RfBb/w4RlkpSch+bLkTyCwA3byKIXIPuF/1X/jFH +sbJg4WJNJgsKsLXmjLippqnRyWVAn/FgQKPsfBoCrj++RZdfK9FyFN9zDnlbkDwj +jqxF6SzGDlei65XOiKZ/8UWDskNakwaq3yCqwQwpACayjUFnwJLzxGNZw/IlvDrO +8Vh6armeLoEyGuVhpGsiqpWOLFgp3osrO4eNmeEesAeNQcSAgZPUvsy4uDcmi4E1 +7ilkUlsoshJEtA0t/F+TA0Ankl5MJPLZSgDcKyx581gReD9jxUeemkJG3L6Cw8G7 +3IvSEjXWuNSEVFLJdvW9jEJJSwApILxbFV/I5TN1P887LnSVJ9+zqLymG9x/5YVy +6blbrHNeOMuKQVL55Blx+n2ICIbKU01VCRHPN6whBKqTp+i8BaOmNrcsaem554vn +YgFhhNbThR3Xan1Pwld9ElUwFmiCpl1K7xDvGcZ+8dEu7SaoTe+QElYvXTRpRYvI +FeO6WCNzestzpkFVEYdGBvmJHDMYn5hcpAck0RB8OBPdc9FvHwUO6jMeQ4Mf3vZt +60ibsi8UkwvsNGarjS4qAfUCOObMclEeury/RQzJYUyPFfBDH6S9CdD98OO49HZg +fdk9zuULSBVb/+SCfVZ1mLUV5BANktFeDVWIRLNyHcbzcyx5TflzxbctyfaSRAzv +PTSbCPzpgHj8IHXDebbp40kJhCkkKz+9WSHmcfkwwKsBsjYM3ii04sR/fxbTqrGR +8smzBfN8gjA7d2+4/aoSXv/LxSGCcyqmst5szlSqRwJnNIWkpwIr3qQyX+2gepOx +PuBX1IYN3SK//B1ajKSNOY6Mi5w0qhXWRotquLxWkOjMYVNJuuSokeCVEJQ6O/s8 +jxFXWnj3R4LL0Nq/aAFtWZFlQO1XnhRcWglnyutcuEmLCkuhyJiw6zyxGYLebGEj +pTxSUR1ptODvCVm3z+YnughwU+REvYVtXIiVMzj4woxqXU0zxXuNWGhY4pS1uuN0 +zqxBIzhZGENPv04heK+P+CKHjZUlqwLkh3przPNjNhYMa6kXCRFeV9H2U/3jQ7DY +HXyE3yhnMXTfxUBtb7zJ59oahnGDnYurIiRN9jnKLO5DVIN8TxZr1A79w0egsU0q +BIQC6mhKr1ian0LldYxAyeYHbeZNlRryTQtp1AJVdS2FEaQNhoNQOc3pdBjPKbWf +Q9YXXufyRrRB58+0HNcbR3P4/9FiqbMbtFzy0LxpqKVwZzpSm3BZI8WLZ8ZubmZe +hW0p7aD4GAQUUVIM+vA3ewt8RBXqA0xSrdsFYtexbyS/J9Ef0zL51BjsSpPYba3h +gEl6Vyl7/fKTz50Svn5zdbOst4Jt3LfU6t6YmcG+aa/l1iE55C8Ky0cc+cfaUsyG +PW+iDxeFq3pL1JH1gZrz55i5UJogyCMvXhS8F7YaQYSdHAXILKgUIDZ/RWKKEHCf +Z1c8te9fXhMjwAXld3+pGDYl3V7whJs0/UrGiGDXeA1jZna+U5RQ0I/OlaaJ8WaK +j3B82e9Ev5lm+mSpSWBJLdmeNgPK7COcAja7WE6Filp+h08EkAZm4bWwX0abMA2B +sPXMGOLY7SBvUQDUzsVZYS4KJzgYHY06LJDMQESzyoMLbdeKzd4IDGm3nesCasZn +nELz0qWsvMsnLtSdVBG5v5PxrTXZ1R57Bn9RcOZLR8Uw9KNWEe1W9N3XUSP1DvLn +C+QvuMsWfYFnhE8QX1rZneQ43ZvTp3IIMn49woO3uGC8uXzUQmPS3ROPsIRMxa8F +8lsXuf3I3ev9Yc+4vmingiYxTU7AwvLRVcB0e3Mx+qkS8GFnlUnC2PVmfyi+pext +OmdZERp/I6bQg+2MDBAI7mkvSUN5jc4A3fu+ogzYIb+3IW3YLBCa2eiQKczTmVIV +Bspz0ixm8H+aF7VUTLXnVejUzhcshK8+OQ2KpXzfQvOgZMo7kTzOCwZToQiY7EJI +BEj7gzPk3XHqk/IoUUvH6sInNBEeW7HGpo9d6uIa0oHUeRzantusfKcWzKy1Byac +sn9e5Zf+1FF+nrIAI0efjOTbRLIui6Y+iH//hjscVfXT0bN0vjNwzl5w1iDqAj0Z +6q4TJ6e9riOL3KBhcUvjmtams2BavAPyEtVXKl4UjI3Hp/HfrG7Xmnk3vHopLMIG +u+9TDkT+8Ni0Xh6JtG+A57iB2nrnL4PUyITyrMJiFsaNE/EpLnr8FY78LFQm0Czf +D61itbEHo/2WHUFE97P40dVesrJTvOdDkLofmYJDwpmdy8k3yNQz2poi463Ud5eI +U628U6rZKDNfsjkw81VU44qODzb6hayimYne9ZDCUsDdxDiOtmlWioIwmT2ikcmV +em96uY8YpIepEJm1ER+5vausxC3KPtv6wLkj7x+s+C+N8qYTXUOvcqdmXpIazzww +wlJD4Z9fDpwPKM86tJ8usnsAp5zfE7FkuY/a+B2zR3TNpNqWCKvMP1fdTveYUzjQ +N1FsXiZO1Fh2/GDmmHu6R1Dq9y6THgpQEkM6Q7xv9rWOHRoxLlfHQDpQVQjk1+H8 +3hcS3CJC/cKVHeKoU+NnxaCL859T73FcpETuj09sBO5gnk228073g0jYCgZ5gfoh +06uWO9rLfGvhNVPS6GmhEh2JFdo2olphVR0JSrAGb8NkFIJG4lbrm3MW7/2PTAn+ +Wts7PS75Vg47UaUnFTwWyF2yp6EnoqEq0jvT8iUeKxOjae2EhMV2ivW8/JlCEhEq +gNgndwl+o8Uxi5hxSIWSHmtLHerj9E2OWpV3KNVuyRBdbHLsmTVsct5vHNcy8sOm +0sjCf0ky8ePAAkQwPgmL9aGYZK7dcXDaCF3/hTyDbfAaSrfESI1gLXg9nXXf3oyP +hKvGtte4Gl3nri9HG6YAm8qFw+r3apGO2DYoson0XrRxRjqmqSN5yukCWr/M+Wqp +R4DxqMZR8jrI2+9PHAjY5Y9RQu4jEvST9MaARKiHV701zBevkMX6Vom3w7WZmsKu +GAzuBvq33YwkwtDnRGFZTRB61E26ThA4LEiWNEFl0iT5Y8ocGRasUn+Fp5kOdYkK +tWKjzvLgcK5m+xfI/WY4cWVCVBwek5EzHYty8olQg1vRu7OE81oqdvtA8RYZbMVK +KJlZELkHTb3npys6zPvLseV1afoBsz2SMCGctg3Gn9G/IZE6O3Xan3g+vHgN59H3 +uQKPFkQpXUiHO2AvKTlfJ87rcDar49i20uW7FPy5kegEXYLl6CsZ6D1XvuYvNiun +Ynx3saPvuaCmo3Q2qlOeY0Ro1sGl5YNhH3ayDvVfQeCca6zpcXS04xhmJGg/M/6O +F6JTOoaC9X50dNCw7hl/562ivtrT0gCrxeLAOlwjSdFQZ7wTljPGZnwAZJ3U/OPc +cseB03dH7fpZuSi/rZRMcZcPB90fzNjlYlHyqwSWDJbLyZKQh2uAhWr8L5XZDIrg +blmJSspXJTbfGQXEbPO3z+IjnyQLGiTCKWAmJCUnek2tX8ND43a7C8XkMdk8B7GT +QHd+mxwHuB8gtyllHwpqMA7GdIJyZtoEXvHVgJqZNi1xlEixVY33w/K/3GSH5M6w +Ow6Q4gkL1B9sE2mNIQqBAQ2R5HzueytAN/XVv5xkUnTlcyRK29cJ+x/3FRfaP0fb +xENOvr5lJua46VpEPytSPaqsCXHUCwgxlXQr2VagA/3ZApeAWqjyVIgMdyaEz7M+ +2rHPuAQwRDPebUsm1x6sorT3MYCJJ6r7Su4rM3JeQtfR5DfPM8kfGnlaPYYkPX7V +33cb1f6GnxdTB+t8B/ztWeppB50YdXuXUHowHd6csbRPATkstujMZXrQASYkZTGz +abuHf3xBt3fsDDR2LX9tRFuuLXMSozI4RZjt9T/wjILo98BhNQKMWsNlmpYvlhsW +tP8eHLY0rcUh+gAZQIMfgyeabFkAN9LRHM008y51Sp3z5/5wx5BybpQ+K7xR0yBV +8MTcN2NZIRNDhgXjWEUrG1wbkoYni1k80bgrNER0elf8paYnAFD8LxiT+OIgC82H +93uO3m8+yv8+aSkbNFlewgnl0LwEHJFYjnLddjzJExINAaywDhJcrj+i2buh48GB +8kql0hHm9z8cnVhchuymxLgI2Pqwef5ieNK+OW94FzIsbha2NDPLdp7NnIsXhQu1 +gioACwbgdMK/+jllO1y4UZrlcnL01K1T+clFn6A+llkM6dcOzPBdey7QmgMWm9Qz +LDeRGdmFEsiOQK/cdV9K8jkKRmFGhEvT6R80uy2FJSE9VT6r9IviYYHe6p82OHcQ +f8A61D+Ie88eS/U5r8H4JQ8NSgqM8njTrb4VfRT71JyX69lDUW8pxLYdWkt38F3+ +He8tKfuhZ+5bF3l/JcdRG7+Q13AsvoJBmPQX4B6ZncCxomfwVsEPjg53zoKnBIZb +svHwcl9hb/mRS5H46ZY3JyOy0ehRmDD2cVKf0Is29F9hzks7zPCp1lEt4ONb9Vkt +FXoR8nUPUUANw21sABr8/XbZ6Y8GVw3KW9gj+MT6HkdmZ+KY2sZc9Of2DUF6rQ7Y +qkeLQftngBQHqc6Fn2rlkZqFJ/FcTVn3/76uGv82rggdsvd4b6qv2gJeGSfAJswV +N4MTgRJ9GTqldOelO/NdJHAq28nTcuepDsJvN69NZuA5/MvMnV40sG351A3+FPWR +QcwkQH19jFMMLeAJ4i26I46M9H+UkvPWgeJLq2OioNBLpIaZVcHgEn7SMRwbcyyJ +whGjPl5m6OvfW6wqB+ho4OMzQGMXmUzBSGhYYRzEsKZEX972GywezexvTshNtE2I +q0l07aWop1B9WOLdGsXXfr2A/7diAW/HBcHs5wC2x+0v/CZpEHyVhoacpdIDbkOs +5MMd1r27fR8rpqIgycUHU8LaKoGb1nf0zEixxHLML7r3HrtYAramkty9Tyrlumps ++3aKwqSqlRKUyMoNNRLIX7ri+2Yo+tk1ALB7tHu8n8pXV+W5fS7mdTj7WGmjytbF +B0iM3VcJlD521YtgmwdyVqdKqoIBjqk6S8dfvolyAqFuZBWN82SWqvmlxuVPJ2TI +H55JFaLksGfUArRHnifTxORb83VxTuZcOv+kdazatWz5RcA9OA6y4EXV3m4a0nrs +TBJjJLfte/cwEaG/HcrF/kg22x+tA4bqUPbfqZ5hii0XT5FXTVf+T7TXohNy0yDp +VoKxyHZ5nWmv6LDwjd3yom85z7CR5IXHmrlbZGbBWrebiGKgH7+NsIEzMz6NJxjh +phiO5xSTFg+f0V7s1BeOjkm9iUJ2HvGuKrkDFwc08a+SZIcTzmSlgoXfCjOK2REr +Uw6M14rcejhIwbv1zrP14O3RpaP2Tnc4kbD2WOJLwyWoCCAFtLEDWlUM3wjiKE6m +Vxdhv1/b/I7h+kZK+WRztzSocutfkzqIIsPj/J1Z//1VpxiADt2zajCCOC8w02OL +sPqGDaqBnwYOYIF0sOWRt62U2BlAK+dbgH3tFYEzzw25Zck+FekjeU5lgHnEdP2d +Yz0Vu77efCoqPKWXmnujPwhIu/bBouAIREBAlhsMLFUEy4hMkagZlGGwBthi3Zam +UFqHOuH4gQvAs5DI0S7PS7DgrDZ3TuHFtTicT7H5hD2eH5IF/CTsoD4TOC1WpHIB +AlpQxOYWYaf9dZ7GhVbKCbB1rY2oKbd+wwtuGZnbA22dkq3krhMUUvIL3kpH4Q6u +hCzN1Mg7G7API2PJWTLY9JxAs19YWt/mzh44fFl9Xs0EXr5B7Gb5jNOQrzrby1R4 +Nhe4HmCSOkM4GXLJo8uFKGqyuPpwahaZtXE4Yb6Ht0GU0zvmEix8sTt2xFO7WSwN +Cd8781kykOzNC5MSrttIWFZDklD3H8JYlviAaPVyQ+r/9Gp+svic7jaNHiB/ppAb +h2DpuplFhE4TJrN9s4pPKuiMZjEy4lpWz7itM4KFWL+8FWBOD4513i5DuuhA52Ps +kJ+m3f83Bemg0Xiacs+5d5zYyQLgC1EqFsGP8x5owCcZW0FlwMSzAwmOWv9puPQI +t1/AzcL8dnrhvmGI7y5BDODgyTMQZAeLS5k4DyIMwFaOZoU8nFBsehFHl/K52yt7 +1SJaWV13opUZHZd9RcLGk4xX94S0Jm6oYEUBr3LqWZfgYB1SU8KQuNbEojMvo4z9 +vozNRBpLrH1nAj3rSlJQY4/7OxhzIklZ5WTuwugfMZ9hkogPtFqh4L+cEqu71eXi +jh8AONWoZmunnyzHHRcTm6xsANQIb9LphxERjkaDSTSSJroXa1Q14dhPn0JXp8j4 +ecTQO4ff6nhexFqiScw948udGfHID7ztQwpdKEUWZ0cuZ5TiUnCEUxGwkDQOjN21 +xX007zBR+LbqK6TjNMzQov61iwXo5jWGQQVnx1lyNxafTL26qxTgR3T++j1EtA3/ +hgdoV9BNZz2OdHp7UbUKICWvTTyIffOi6m8iD1hvwjVysdSMXHCkAKsOUrfvuaAc +caWFh/CFpWXL3P4e5ifnTfJ/upnDk+a4FfsZ4FjyI2xqdKH3YAgaeQGRuplo9hc8 +p364MdAQWX3TIRr16FtLAW8eUz+CYFoJwwzGuJ1Xjy7SngZWCr6LodsS4n6eLRok +mdLBV4komTz90UEjg0M+lrPGtz8pbYg8bpmIx5XPAGkfBQo9ywWl7oc26IJs5+xy +04GHkF8MZkvc7H6vBdja36NxLx7hS1JdRo+wMRZA0szWH2VUO5M+/TIqjOhX0LJc +YTvWszjhWGnaMOiXHVeEcl/Optp8TDkYWG0NvlK5EYpc18I8DyK6JeYTiIVwY2NV +a0DYeFqWij64xVGJDAtLQwXPFPx2efbp57TDTfX2VkgHRVpkUWTvSeG919SYf+KH +YMGBVQXheoHZmbWP8byOT5lbXuKj2HSU5kZ/ag5GRXB2vOxMUV3egICdMBh78u3y +X63Ke645TXaPuaBom27eyb/kW7DpurpYb2u5d9B2aNqm4weonDgOTwdFkcmw/QeF +QGKKgfJKAm5wgK6scu0yffXUdzesqEpe1Cuda2g2JrvNcOrTyKxoNhPmEfaEAYTn +iRyCF/DiX5Mm7YdVobScH/Eu+DNNGLrjJM9hDsbuQQTLLZlHY9OQZF1BBKoSxDaZ +ObDBOgps5dcAraOgDwYka/JgiMZ6ZWHID3AP1BxWFkmxOR1/Cq2JvEhVGT7iVnMa +2/98At4pFvv9/GoHrMw4ZRC2ydp3jJ40JLXYx9S2HaDuXz4w2uG4riV3p0Sxtq2b +Rc5T+V03L6w5Jkofw45U0Wx1FeuQqbDIWAfsjqiNvTtQYub3M8h98Nxnt9vOdK1d +uMHPmfOj/VOu7BJkgY9rUVD0na9ccKvip3Pku6OG56wU1X4WVW9rCYt3G9CovG9q +oPfoSdoW1x564nUUJqn/w15JfOF/5EaHNqUrZM7TJdrzyrD0wrZjxX0rUPylcaxF +WqZSZvA3pvvCEFnZ65Gf4wTCkOflO3niczWDgzw6p9zsy+7Cja4hNMpOLyrAMt5G +iwHy6Gm3bBNMqFPspL07BeV45MmjysJ0RTdkKFpH11OFLmRfIFA9VI5cTJzly8da +J9LqvdQE5Cyge50s5EHxfvTIEr0Ki4FAA4SdSuNQ9lx6MEAD1szrpHfn5Y1e7tew +ZprTWOydfeIU+s6/T1MXApSH4BwRvfP3sDtH6O6P9QGroS6Jd69fyF4TxR+vDolC +Tk+PHffDbwS/ly7Slpb1cRnBQxWYG1tOTzaxRdk4NOd1/yucSjl/+byaeTWtyK7u +jVeNlAUz+IW0hXF7DXMZYail8stvRmBXnF1x2dcnhrzUIRGtCRsPuXilIOxGAnqw +5/A6famu9DH0PHuUAPVYHIE2YtD2q+oRwoI7iQJaWFfYNg0SPJCDnNBlBP/2TQH/ +l0trDqkOCeEDZVv0TawiRxd4313KaOYKytjCKhcdKYAFCgtUy9g3Y6lGfTBmSJtH +qJZrmJYZgzragOXc3GuXo7txp9ThNXrXZDlsnhygcLHPfhTyC36dOaC5GeQ+C1Or +xsa18rAxa0uGznKn3BP3xLQr4oTEMwwdXAm830laCr1RDVVxfMyG4x3rbpUMxFic +y9Jw42db2OdDVLXMwPH3GN366x47Uz9tICPGhEUUb3ZhrjAZkucTuEel62sbS2p4 +XDPXgCkrJvPAH7gfFlbH06U/SL5ZQ4Rk4JnMZKGNGuzphc+hXif+m+ynhzpOtWMj +AGcPXOheVKRK5aBVClmFzMb1bTVOoN2TAkgzyg2HV7QaHV94KefJCbvLECYVMMoS +1KymD/zIdoYIqD4uMXDEvavspgrnZTq11J+vjqlJT3JTQH9CJqfK5o/9/K7l1Xt2 +ntSosiX3Y+6yLExJKBylc0QUm+exhU9jXmNuYE1A7EH3aOm+mVWww3SkRGikwiLP +xt2oiG5HAd1zJ0NVcVJG2Z1CN4fKMk0SAeKWKsVprGh6J+pZKl+tntyYXTO7POtL +19U6rRaxW6J5If6Xy558A4Q37rSLPDPiwAvPkIFg/izkkUIFQCYoorOa5H4oH0HU +PkTfvQKI19TUfnjl59TbmCwjrChQqFxmlCxdvgU9wwVY+FHbtoie2i+Q+nY6FKmw +D549hZHdbSbw0px3EAQY4eMUQDcvolTmrgfQuzzwSH7PCSTE99ga5Ec+ZxnUehdZ +Oq6g2yJvmwJfYDdafn+aM6b4JqLVAsw0Mf3gC4ZPxWZpvnX9OUOWoHCe2xTNAZII +o403maEgyiFHO/+gg4F+jNHx4yFvHayagCn/+4Hz3N7uPb1hN4zqgd9l603Y+fL+ +3z1azKipPtTLpAQp6cew/LqFcIFos076Bwj5oy8QY9f4+vkcwh6rub7tRwnIBAvK +qwcYgMY447l4d2ZMSyyn3ac7oNkayLOb6IFkXYlcmf1ofG629g1+7xaXAfEVFWUh +GIo2g14liCwScZlJseMzd7kKwebML1ILPggM9EANaJ4Gr2o6NqENKPMfwWWSdDpl +Y3IJ9c75iYFsOqHfVK62MWDiencikKQoQOmyIhsCfeShtCoHjjhP9bjZJF2+P/uC +ar+INRDVPqU5eS/tkJPxt9BPpmpd5n8WMIHISsrRUZ1qilHhM1aO3yFZZYZNC3sh +f4qQh/TJbvuCaKt4tstM9TihfSsDUXRD0OSJ6g/fN/zvD8K9D8JpWnDrIZVPWiD0 +Zrm7kUiK15DENWVHuaQVY0vAzbe+dEnKLVjf22WeKCw/+8FIu8hruN3SV0cJjNFc +O1Fv7pl1HHxAQrKfHE3VCP01pQXNMMyxHJa07EQ9mdG57FNnIrkuB0ypVc1GJpzS +AsWqPZ4oQ6IVbKpOfr1JN1w+ruY97DUVDmf40KIwfloX+Pd2+NukNtQxVfiTpbL9 +h2zkPH9DHCLV4D+O83DsuMGEytvBAxGWxQ3JfucGVlEBhQ7UCTnaXbmIkrWLhr8Y +X60hyl8mTOYyWjd7tusKVHWqBpnt5GK3PqQtIi5WOWMHIa9qCUJ4+fouFbDDxD9j +1tc/zA4qGmxIZT0S17nquUiqWz3ro7SqhNwMAJAsgXZYb3KuYfHhOcpwL4CHtOib +UU5EAscEcXiQzx78DZPX8EOmjisXSggkB8C5j7J6nRSXxHGTyqnQ2CiOxegQch76 +zWaTe/5wrjyflzQTX//TcxeeArpfZW8wTIYpOyAPKhblq8js7rcC7azP4cmWH4LA +gx2ClZzdC2oMH2bBX0h3HRls0jWK0uddWfYqo5D3Lq5UrJXClR3fQNc9QekVK8hm +cyApAQWsrsnXNyLp9EnRxpvib8BW+DTlQgoicgHpDiXVW49pMLZmTdItJXGmt39+ +9JmdNM99DADfkFB4DkdNev66c6HvCu/ViqCK6frjbEp57tR/izIFIMqxh4+U3X5s +C5XugO/Cf45xdW9QMlMboAuG5tyume0nBywKTbMrHeOT9UI6c/0fVVdu8tSgsW9O +zfv80vo+uxITgaoHZSIlJAO5NVCckS4wGFqqsw+KOo+eATiRUOl/N0Rc5xft09+3 +1DyNfctYKf0ktmM+3ObenyJxEFuVwiK2isDI3lSyzTZL2WQa0caHUJbuiaEOKItU +dJmX+FhL5OSLjS2HtG8sfIAau/1Jlfd1jPGru1uqjJJYJd4JvPG3xs5O4qm50bBu +u9wpLRjirheJmF+L/uwa65opaKHPGAtpC84APPTNKk3oJnaO15CCel8NqNanx2kV +eMHa5wFvg+qmpH9R5ebvsXq2+AwOpPShdEj1gDb1NixkOBOppqf/auq3uJKhEVaI +ojzZcCGAoOakihkA+2hjE5Yp+HxxF3tSQ98NNLeG4vUvn4Yw5/V36QA9K4hzPLqI +Wuu7ALgvruuVb/cuK6xX/38cknRvqXPwlhBi8fI8Ouz7jtr5AcLi12iUGic8jlff +SPI2Ip3Fc84qe6iWnijE1DJxWmM2zdhQlxu8eKogU/iCjzRVt1lzbVt3BgGEHBAJ +g1OXgYALTXtX7Hn0F+NvvPnz8aVZbs8IyIuddFWlF2TBsHktqLdvL856a+slDYuB +GUK1Ictp9aUFHKhtmxwNj5wD83nG7XP/juRUVVMqQZabIPTyskVkEazAjKz52RNn ++9b8BGtwz5AwuFva4ByeI0IlPwxHjuVwZwcMLrbPAn7NZ5PD86oZb8bM3Cg3sOIt +M39fDvoJGlCoDm/GLXzSrSQJx3MpZqk8Pre/fGzbKExyYHx1s4HlkyCyo5zkYQBA +O3Eu8ZENaRpmNoAq4RE7mi2W+yvchvujJaZpi1nHMXqZf61XvjmmQHNlHGbBj89x +tkLsBFIP8CUKrewmNMRo1A70OdqW1MxYJNbFaXAUcP0ouMJ3aScqig2s8pPcwBps +MvAiugZ5OL/doKCaXRXBwp6YMPZ9+XlcD2jPc5NSU1eDK1gm0HcCMi0iWvwJWq4c +8tzlbIRmV0OnJ7r957JTKs3pcpjQzwxcCy5bXQK9VwXy8X6oPYZGbST2e6L5ndjN +P8Onr06w0I5Ql+n9HtjzzyVKISNuJCd5krp7HhADIvBti+28Mgh9h5KV5aTmQEWn +PAKCVldLuCEoA0/R6gJQbds81i/2tH+aD26rJkXKXeHJoHrN4z6XsnfU8d23Rk5M +NqAwVI8OAOfI2kEeD3roboMMblx77ax7kkJw20gOofYCPSxAnx7YibxQmM4OEkoW +B+L918vwJo9WyhkNJV1bypStQjsD9SAfbK0gpe7+EYGF5ZCACnDFzFS5IWOmCakQ +rqgf6VZKkE8u4d25Sy6KRC5MjyFri4omctrDNb6wEn1mY3SzZYhkARGQN2VqrN6S +yoiA3YwF3B29gvGKJrvEBmQbqLeQQUZCk+IBtnZ1Ddb7E2i5RolSDDLNx8DUvrce +yR1gwcAQmVP7xNRiU2Lw7yqYn1G52LN9EX5MzduKPzG3jOE6h+iZwLXrbm54uu5o +rkNdMDm5i9TO0a5buQM6+2WuO+4ebicM1dnOqOHN2jlTTmtKFMxNonDAbZyYSG2/ +WQlS0HPPFJgh7EOU5TLuUk42PfteB/nYzFN7C4PIRZmJZzNveET0SjGb0nq3VoAx +AR+Sw0tUZ+KnL4GOW5fT4s7RJTeaQm+1kZbrsGbZBGWYFMg7CYaABxo+8sbPOfYx +uUUMsmR/YwYW7LmdFuIXQulpSA6nQDgW33QaBR/zpO+aqH8uwTQJjXDJuKUNXc+k +yPs0/oPjmXg5/r9vw3SB32Tc5C96XCuTRoUgyCiohhmlLW2AHw3xKUlnSR9GI6rS +BNRgI5QKDSrV+/fkTR4TQRbCNgSvPI4iUq8RAAPibv1n4FO5IF3Ait9Byq6Wxqhn +u3koJDnkImkZYQwtxwuasXKSxZpy542CXp5KEGb6PQWaBERiP5S4xSUcXChwlTt1 +7k7cn0MoxZMOT2iOFDpSAqAjYwSIcLDZUQxIVjUtYz06WIt0Uw5DkH02CtPfQOXL +EGP347WvJwne0VAtMAl64wuEJde12yP8Pp1wwd1Tj7y5zRmPMdtHxki0eyQRKC0X +yNHE75p1aPIz5Kt/I0kSuSzVLR0VH+3QrtAPBxApH1v1EGW5cOeYt/ibH6Dk3Bxt +RyP8jZGrQv3KfQmfcNb0RR6YiKW3aEIx/8fQ/Nrg5ar3e1l/fHlw7qm9CkikvwQB +cL+LdE1Y0iEqrqDgH6pPMbtlnjmQ9lvU5EMjvLMIXkz6JYZ/kKmmA4hL03DDu3pH +STURThhfNtkweCkloLF0A+DAPxdYHtIpV/XIIY1r6VIDNEd2ItGQ5lArdN1lWNnS +AqI3An8VhcOW6UoTYS6tTe1HrLWehcfqJ7SQYuvEvuAaLNx413xfqxdqw4JTs5xi +IcuvtRixu9mRP8a1644UgGPsoZW1TiufdVt6rz9UxJ41SZ3CkW/CAime8khBjzSQ +rEjNxAkQYOO3kSJQPRKAUua8wqH71V0BrVJ8+xD4H87mTp1S5DWZAXAw4rIhy50v +7GosNUQFpo4rkoO+NIgSE427c1YoEpWKbnorw3p9swa4zJNZTawHGohvgkob/BAa +xmlQki8feDEqDQfC8nIifCp9mupRcJltg5URSfVahSpspVDOSVbRnccZ9o/maZqi +m0KWTjjeLo5QS20gPWBps0nMTtdCLqeTRsnQAKxz4X91tYJp4TteHoRygiCyWSvU +qJs1tXqYPFoEMhPzc6ssFpSszYsM1JfqdXIRDy0rpr/QY13qEE9dfwAQSlVU3q4U +L39HLhQOzguISLjOdl3VNLrkVvQHEDPxT4JsItOiK14p3jX5tTew0TryB4k7AaBc +tPEublDOucqhlgyX1U/Dvg9xDE3NheKpTWv+gCsaK4vOlBPIF5Q9UJpt2KYvF2Ff +74p+UiQD9SVLj1GK/Q7YZ60ApqiMphCdQ7HWhKfLOhvGmHJc4QL95Lur+I5jdp0o +6ofqa9QHGvwWO9h3dGgbWsNcQ82Jn38nCD5o+ZHlf91ldju9M4mz4uPHpJ0999SN +F48OV1iEbJ18+iAK/4EBZCbJXeeXfr6Q6hLtkWtXPQ8KRLpYmSWSqSusJaDs9ZCg +X2B610m2g0JcQ9Hb+FCbFDT+behvt+IlVUkIvUnGiJ8b504QdEqRiZrcMyTyShr2 +hvRD2Fn5/UK/bkAUneQAKgad0QwQj0aRnf52Evt3YigsZdn3+gZA2oWAQkqk0hBH +yjohUnAyl4HwYdObcsJWzBI6A4ndixGNu8oAKc2eHRTZ9CkGBfGk0fB+vqSNdw4M +STvGzHX7n+nxGzC6pX4Hv/an2LDLxm60ga8EL6dUcrF2iZilTkVblW2EWUoW8iuV +Q71XgJNw4QM0bURlJ/E1bYbSRSMI3myCPWHnB09JGbA0NVHPoQEJjkvKLZH/LvlQ +VNlW5ZAwHbzz3H3vDkQdsiFXB0XkxFsbFqpGMGJOsc5R3wLZI5X3L7nHKAG7+Ej1 +BvOBpAqNiV+4X7282qGLypiQq9kDtGSFhq93g8kMkgLQaahiuFmjUb+KQF/NnRAn +1eWnF4QTBNwFg/6CdgRgWYgCQUTYsiYHdReROZTH4Ok5shcMhs9IT12lpy+cA5g9 +U7Eh3wIIqvCeqQHjSSWkLvHrA0DlC9IIhnf+QglHDZUdpoJuKoUrrBG33mTBVgie +fhtLpWuRc/ND29n9dTuLFLdlfkGx9S1DeyO0U29E7sWuN3BkIoocSvdKkM0B1/VV +mGcRjLu/1ahzCXCdZeQj9CKE/2jlb9FDuw+z/0aUUXB3Kmdw5XmzYW1Cp3EXr1YJ +ecDZXFY2HZH+iw8EEr6afL6/cFYEI7mDYzy9hQiXUG/y0rnmztPbVKflNSZljIRF +D+YIYToB90JgpFCunqIiVeJA9sDE+aFL11MkppqOfzluPz8iI85KF/r3EAR9fq2O +iDqMr/mFc+68k1XGsFnS7bsZoyjcOz9pR3CTtI3ZF283F8OXch46C5AAek5yI5Wk +Xgnd1V967WprKueKuyoHpPedL3Aj7vue0KUCglZKm9JzAGjDaET1GsopvSbMMtDw +MKYdULKAIH4SYvDkhRnOBJeu5WcOFJKtVl3vVBrxe+BtxTgO92zT8ThT4wv7nTz0 +k+CcXNy9JjiDSycMbcVFJIVbkoRCAnWlXnRjRm14/TZC5s8GA14/KEe2xd6l/HH5 +5KhxbR8qKnLG9CA8+M5+PxrPPk6LgGkH0S9y7nvFBMlYI2K34Nt6YU22Fhq1eZYa +5GoJZXhNbgSBOj6/tQUl3rzdK84PkrZePOcvdlcPMAegRagwwRVw/NDsgpOqHPAH +pTNhJm1gOqawmGV5bsIg4B51bQqMAWV8+6fWKXXrHaYXRE6bUU+SVHL2uTinQUqh +AVKEXMsyht/+SU92WXxtj+x6aEGJiHfpTEkACgjd9Ilx6Fjc9aaUqzoIZed/hV2n +0Osm4YLI5JEoDeOb7eWLC3Hq583Ag1peXeLZ4a+ORp72LMcB/sgkhFgL+q5BdC5j +p9zHwk8rly7QPCK3xaBJD/swMm3SubrMdutLkvkqkKYWiRLtIWlY9UhhGqu7PXzm +UctSl5+n6EHCZRvT8Xxy00s+yP8nGrno8J/3NXsRuHjsoXrb1nZHwOkBJ5DutRhV +9CiIGx1VIgZSIN42pqPmOjHTZEH6wF1JpovtCslPMu/OVJtCf667pfbjqpQh+YJ4 +cK6TpIZs4m7+Uo5qN7DmPeU1rfnAndSaCdwg6JlrSk20tHDOMKpn5AhmROOWdZ5Z +0HPqBPow1DCHxQacziYNPBgE++x9bcS4WboLs+hPnqWjaG4Eh560IIhN/A9kUaur +VtuVBXSX1dmkFN4yN3nJE2rVZKRia5UbfZC0r6tiADx3AaZgYibxuWNBDiEvOhwf +1IuGVM1oWs8pEQmAsCiR+vuwcokKVXnqpaHamDlJBgRXvRAgQ4i6/Sg1UGFTQVFN +/RrbUChLHkV6n2xRuJ+obPAwvivwRqTKl628+PQ8Kv92TTvmEjpwEaOWW4SKiU0v +OTBJqpgK75bJYK4SqqzFYiHq/7T5/fqUb0curxB9vZNEH9Ayzn6BE/FPBxOmY2/k +YAyH+9VI+NTEFeIiTcAC68E9YabAF2676NJKxFK7LaiZGCev6e3H5vHr+jtWr5ii +AYgB2XVH21gVppWi/sjjkupuGn2+xYp9P1lLork35kgo5m/zdWR/KbPqZG6sV1Tk +iWjUBa5k9iWcnYTXUKq1yF/EEIpV5qHflxK3Q1UGkdAnAoE9io6+6bkQWYa9v1/D +MZf1jKOqBb4evczU33y3I2mBiqpd/zOvhXgLwF6tQUow7eKbNtdc6yxxv3tiS5P3 +tesCpk+6CBhG2YkwIhrkEvvRdB0YCWXehwH4ZBt8RltAXCx+pIHeGYgn2VPJJkDw +UXOZCwZ3fUJ8atTHcX/z4dSkivfc4hKcJ+/URz0iu1rgtdsvwH8jrroBrdG3NWS1 ++jVGWI0VghvlaB28XEfcJrc6qPrq06+CmJ8Er5juv8hkyMupz1cfs8a/qCD3Ap88 +2kMwciN1eaYkjK03DwojX3lXYTfcPhS2pr9LKEsqCZ5pmmB6zITg821Xpma1wbeJ +P98AFzVe9wWTgCMNJ+0qy2fPKIKwtlLgszLwxJEaPkcG2FGp7MtBG87C7VzLvHHe +FWOiEXtzicR66lBuQCiF5iT90rxdXlDPwiFGN+X2lkxuWd5x0bCLiWR8fE4Uk9Ho +/rL0yh38m6nexLzimr/IDI9l1oJDdZcCPihAF7+XYWWFYpvqUMcjF2Orw8G/rcJR +tugXd8jPJXzoltiDWwx7b7l/t+UFBXUrfqxln+EcnEKHJv21SBe4+CakwxdDaUys +4ZXpwveONAjDW7RGv3FXO50SpD/tYVENaqZvKYUkx61RXcjXeFl/FQGHwidp05hE +DFOpeCmAGAyZn/52F5eIDGvH1Hmx9ne2fzvuGolLuJU9iLF1eyu9aO2JSiOP9Wzs +2Ep3Lvqf+4WplqKdfJfmYoGmpXOg5TkmB8c/L1ainwzNBPGoTC5HqIVRTGVxgBwn +QyK73idcuPsghUSwYLGUTHCMmDkeFj62Cl470HLfGOHGnFY0+i+Wm8J6oQA8x6DQ +ZSG8RYA4+UBMIn2MnjL3/gD9zNK1gt+DVeKusXW6PtVjghECJl6YcW5K1DvILsa2 +kA3UX0r00WdRVsX8TgDJH8Znzeus87woOw5bPd7cLAXR9+eLPs5Xd8yPOAeLZVLO +Zo/r4/7BjnxIx+kKcR7RwK1BrWjiHP39xtztgUXuVagdnfC8ImvD7+gW0YduVbqA +Zk8dIUWv58oWBzZrBCL4gh9ctxQQnB6kodNccBixoaDQLh1a+w/yzvQWaCjM1Ws3 +l3YaMWrUtRTkKdB+hta1tuT5jcJA7kscESCkv1YVE9c0XLyDpVn40LJgD0jez8AM +d3AvG28FrFdVMQgUT3XTs5LPkwMo/Df/ybrNswhLBkcVGjuuD3FLoQGEnKxo+oAc +NLFm+Woksp51raiRQRsHAA4VNV22BsZ/ghwM0KzD13eYYHxtpQOeufHd8lDjtlmW +F4aOmeCGezh9wrl1zItDCm9/Av5KNJk3QrJ2SgSoEfmiXbyX6I7XISGQb0ADrFti +Wtq8ZQudjd3XuRaLQyMmuSRFbtmQ2HLgrxfQLRbAFfmBxhN8RTWUHh++C1yCD5K8 +y6kX9Jp3m0cV7HUcfBPBrZ2fatnryf1FJV+r1v0w9p7ZrTozK3Cn+tT0dGY3QcCI +MAUD1MGnN2HyI56488n+WeurCbXSWcg40nOb0ju7gMKK3cv/OnjDbJANzKNlmdbP +QlKgIdh3mBNY+uAR6Lft0fyaD9P9wv/VgJwrVYNVcuFpqGkSJop4mhOwSpr40Ypb +i6GcdpGBiFniQWz3BSg7bKsQhFZHF1WR5cuASifB4GGQufNFMhqJZDt+fhfECEZO +eHDdgSL7v1cPnLJHhnfW4JfV5KMu77BtowCiDo9I11bvzMkahK2Rt+RA4CBtSz0m +GCAYg07edE3iyqSllSi2Gy/cAs9M3awafcWfCtwaTLztIu0m2bTcNlKq18PD0iW7 +jqW8aOMmhABkvnLwJH548r+e7yDcZCwi63kveuuE8XIlALzCFgdqVeawtOmHAdRw +UPFxZ44D7D9xA5D4aQAyUk6FbnXgrGhFIdfCsU052BR1JrPvv0l/I9F1m3IYqJfd +9GiWbZz8AVJ6yiDZ7vNggIj7HWpz+8Qps3x9038BD2/PwA05oyRq4kgkgeJtCqYV +VurNWEpdH951mUVps+iPUQsFOjNE3V4UhaPLo2QRb69wkoL/VhhACfQ+XjWJrDXC +FiecmvO2Eoi9P6jGdJy3lVZIg3O8X4S7CPq6qAAi3n6N7mai01O0Z1sta7tYk5zL ++m0HgoLpaXs00pEElf+sLTQBdHec2HdNG9y5WHn2g0rpyJAYOkVUhxqkGJUXFtWb +x8eQedl6pRSZJxKq0moTmLa9YY6bmpoll3s7PR5Vb3iJxaC84zo4dU6Qmo2mJjaQ +E9BSPNAh0lyMvHr1Icceuo2jfDA3I57WEbWnTS9yL6DtIqgsfrddAVLzx60mjpvy +wGjqzKOftK0E+5dHqFOeGT1NyQx2VyCBSi/1OXjyisp1Eith+MWPT/anVGTEl3dk +lbcVMYcR4Hpfei/nxK2HJsqkq1rNkSDdWSCcqKK6KGkFNOepTg18cp0QEnidsi/G +FrcQBS0DBVpuhNKtqz/S/RhmBE3UtdbrmmwvFfIvFVWjNudGodvMNu0q9Jmcak9G +tQlWjh9Nezc3qqWZmWD2TY5oWbF/qqvW/oYjR++sFk6Vg/vaTQ5Ojoh+O3IXUNcl +bKvKHt92IbhKMY6tKEzZrQ6DGcC8ZI+M++HgrtUIHZOm3IiPAuoAGq/M7dIKTABY +DxQnJBRmwBaq3GHCV8maZtQUIAziic0BqDXctpHm2hSVhej43fgHAgSfIFOuFNTz +uA24PFSWDeiA/qbDO76jLD9es+DLtfkMjWmkiIyJgfuSdVlbfwCxOODIvzA/cGBW +gUqvI6woW8H0jUwtEFzPPptZEt8CR67yiZWoYxDk5qjMVXMEIlGkT+hfdTY4BcbS +tL9GYx/jhX9od8BFbG4MSc9ag4BEuF3ZzoAxVvqElkWIK1vD8ihzeT7CKQNTa7nS +6kwN+pQq3qImG0v0fntHNdfUOO1c5YqB6qi5fT/Sl6yABxiMdKitTEmEe0wHZEJ9 +/QJDUCP35lhhu7H04/KETWEyiTbsSfgTFYB6VWQBPHKo3sCwkEzHmi6e4PczBsWA +OgfDg+plEXTG0CbrllVxMrf6yj0NyzzA4p5W6pxvZqGxVPgOZOCVlX4TQMG5o6UF +HUyILfib+v5rfe+tq0SGNbPyKJpTp+xLM73ERelYdtHxxt8JYsOnKSBfLEbAow3T +VOU6gUZ7ct15wT7UcWsHTned9ZSCfYgJ/rp9aBHYWTWaq1WKRfc6pDwoDM1YkCpU +VRmcUw5cnICYBGrd+PKSPT/ncnJDoDTEcI8zC8Zp/e0ir5gdyOWFtaeQGrpXmiJx +e5CqFcNXifOQqI2fC5AIiNwePVmZe2bb9wPoMUbMKsKccbMHVQKTtZMvD2owbPZw +75ZTm0ndBYi2niNdeyj4nsiuQKCgPoCbnLKr/gXGjye2V107i+ewejCpFr15LX/R +fJyhc34wT2TvwpL5aL51T8Q/1z7+nJIJRF01VDkh0H38stOwLOq9R9HoK1rqF5I1 +2HylIVkdDXbBEDLrfOZMs5Ysuuguy2WICvjevkJPLzPhhXVpEi7OjEN1oHjRGI3x +38aYy6gau77o/GTK8LJgjlVtcNfV3QNsmUCf9NfiQ9ukkpz/uKOklNh/WBk2VtNy +ci6k/1naOHCvSeUpw03CyfoWf+vwtPNwrwgknSxNHVQDsw/1hw+KOfcjWAyw6YLx +c1OCKsN0JD1OZrxAFwbKwGZqMKkNPwlxaFch6hno4MOTbzElU+njMozK9omK9FMe +oGGiR9Q5Up5yRBU4UaacC+gMSQJKQqt1+EQkbjI0BoryZUfhthXnGMGTeuWIT/Gp +XtNBBo/A3LZUcnVDKRTFqiz9ak7spDxXGpUslbtHP/buBN1lLnWjCWOCm5LTYspe +vDGpI5MzhEXAiNUInanRvTeI3giqXFpFYLBRN+uwRaAow3Jf6h+2PjRvc1R+zRdn +XtCJ2dcWW6xsIXJqtN2ZvIn3V8QtACjVlx2xPzFKfucEv7bowiHs2tSHgTT1Ryrg +cQARHQnkWv2d/bC89IZ16GD31O/FQ18sJstQ+MtpF/ntmiwznDgyJVGWt7uHugPv +9KJtyUBAb7eaWrZ1v+MVErhTszNci9pwFYd9O6zv/7irIT7xf1XL81GvStUcpFuc +smdTh9atdZeR0CRO6qEb1ElPhOgrZaFGSeK5r+EoYA1dhPM8W/dJskbCTA6icNIb +Yg4eUsm63RxDj5Az3IZw9OevsNbwod2T+cRsgHGHA0ssCvvmLsMvCnDHhGPNlT4p +T6Uj3oHtZaaQxkospBtULfPv22aHBuD8qCMdaNaQxP8wRBOaTvvieWcw29Y4UXjx ++P1F1Rke0tuOPwjRQsXBX6hK97PMbrmah7XXfN8PqVFnDN6gpFUUlWL8hEY4ETQX +VMiY8XkydYohp2+y64G+yLYQnjOKhwDRqi6XOJqt0J9OgVjg9mYtm6h3X2lERkAb +F4A5kIu3yszs56DmYOUssCFOM8mtHV5wOfl2jYPvt2+0ACJdLgyFahE5kNsC5bZ5 +Tbs6nb9dKpxysTrpM9szJpJzPbOPdKVgLaQmw8VV4BGs4/sUjRkWlYdGSS9QuWZS +ZQLTguxnWUZXayqMLk8yREPhRB4Enl0fCIhMnhWuhPFCYVo9iw/O0z9/0JK0iQAG +EbJHiwqysJ/CHzYOczMIvRvvcZ1kqGCsCvQiR0Lr9PpAKt9u9myHlzdlwwMN0nwC +WE7eFrRnfYfmXs5ntv/6jc/F/t9sNdvJP7uUBtF/AEZGO+3ohXcS0j5ohfjxAN9B +SMvJuiCr039HjVSgDqPiN1V2m9hGqLB/MyPsQoHucujYCpW0XVgN5fjzcYjS+r9/ +uBOB5nU+BMpHECp7ww1gyJ8J9uNJczjOpsq6HZt84XkdPpXjeDF81tsH2eYI5jyk +PqXfyc1O5GXXVGRSahES7dgsoYs2qXPGgZepGBT9xB671BUxPP5DvQ+aXimAIUy1 +W2VsDDWO+pIZJwxRnnN3R6XkaM3w0s7gmBxNtzGyV31zLMiEiQmrDuY8Y4ZoDgH/ +Vem7kZdqnGk48zrVBU6LKTCqeb2d2DZwCMRgyt9emW6wCE27gO1zVx+OIc2Nk3L/ +YI/s3oUpSFzoQF5O6AvAlhLJQ0V7IryxsOAXleNC0mcotpNA49Mz1LScSqqaUQyw +eTd4s9oFuCALxErd3uMCjnMs2ySgT6rxFnQ0LzlpkIXSsQRFcgp4+sHA5eobS0L0 +BywS6iPYkqGDQmZ3pQY2p47E5280mWSfcjavBf+vtEdwbG3xDAC8cM4DfMfavZq1 +ZT0mF6dHGa52ZuzG+GafAkUs5+CQ2JtYiNiSQ/c24km5OfAeYGriZ82Z4PHzPyHP +kDpX3koFA+5ct+6o2FX668s/I0XcJSKAQ15UxUHy9EKXhc02nfbojuuyd6g0KpLD +kbBkxrGpvbox6cJKcF/QNEOtAwI6vrECMjbf7Za2UbP6KFhgt4VU3J7904vZ1HKp +xk4Uy4LSQwT+5Yf+96pLXgURVJCnZGxFdXD+yUs95UEFuW1DrxQoPQh44yAB38aO +5bVY+gksLUL3WbuiRdv5L0unrCOh2ehn/EWA0Q//ccr6Rs857GKJeuTDd/hQtjSW +2uQlVqM8Zv30ZnNQA1zbVTo7Nk/VLXmcs4I8OvpeorEfCZ4xCmPJmq11cjK+3Vs9 +ASxucMejqXa1QHgftDyfzQuyHAvF/VTsU5Yyo61U4p7n/ucMzZ/3gpL6J10t3O2a +xPsd06xeboH9fnu5OzHlXk6qe3l9f89jCA8lRcfSXJG2EfIlMBUJZcfJjNHknMk/ +w3Z0npJS5AMceqSMUDpvC7RnbjW5EhKMzuqGeZ2myqnxZwfj2jijvrhlOZuAGlbe +YL22lZA/d6AKVWddCcc4P6U4aSZUzwoh56depySgnfpvqKd+J2o1rKFQjQzQOPbx +TXBBVoyaMGvCxSdwGiqY0OkhIXkFMB0CzLbNFLNxYNW/8fbpUIeDMv0nFaYAZGIz +oeSUoDB+lK1VkxChyeveCB9n+1ULkXWr9NwVy+stsm9iII4t/6VERZ0RtaojpALR +cL5ZvryFMmHVw8ilnjQi8ZHsrJQS37Z98lWQgDYLpbhoKBAOZz6LcZTG3zzj4Mlw +8kzEhEK9y6y1OneiVvC46rVyeV0yMQoTY6IIF52RD3T9ST4wLXaJSi0KOE/R674b +QpC0nUR1lKycG8zSYRBooOELb9MKJJamUf2/PrJyuvCU/cqgP7HI3a/I6aw2hm+2 +7wXq6o+E4s+138/KdNqBIw/yz/DVPMW3273AjIGgJyaGCxb5+vwLtgAJ0ht+YR9c +E50G+dP9cYH65FDaDkskYZNoOg/eNphSUo17+v+EgoSXCDB7QAWT9AZynxN4VHPG +bieTl5320/CEF75zM12MqgE43+PI/+BHhvlPOiXgJDHLb6Ra1gAlm217dCe2feSb +/gyimSrAfz12rI8oLHWO7ekVt1Elcou2w7usrkriDi5n4xhhwm/vbvI4asiIqG9h +gjNiE50GFHvYP6rQrNmCUmJPX568jGVzhHHYb1B5S8CQxvlBYTX1tJm8DrbV69bl +EV5YIfp8EWLuIWWW3UD23r2gIP/RLwdDj+6ZxkvjjyEfibAaYl9G0gpmK/fBTVWN +fwH5QD0RdJTxQ2ObWhG5s/eqbZOMdLHqg/jtsAnm4PYGvnGE1hdVbunnkT8sPa29 +B6AMaqBj1Os1z3/R7oyZKxfhbd+aAVAvL5TAk8aYD36t6NeAIA/NnIgWclWlWbop +kxsBZos/FGWBWtJUlsQT9CuwjZCO0+xgx+lRsmFjC7nVZDwi4JlpiLmR2ynP3vQd ++F5Hs8XFr/4wxiLlrr2pITZrRFFeUDr5J1ek8MAyptDryhOz1M7iDhi598GF/Z6V +59qLMhnMmqftWA2KDYChzCLudZCXfZ30Le+uejRjnUiYj10wR9A3nQEe+MbI4YZq +SQXUHVuJuqk+HUDEpBCz6j/XozX8tS+0+nqTxxm1Z7CY80gSV8G9aPuPEyagB36Y +WNo0fSlehZSBxD3t9NNuNqghqQApOsqZzs4hUng9L/voB0/gRvcsIFbV9EQpjYij +OTdbtlbeDMY6DuEtCmjz5k307UxVS5z3ZOvNxXKf1lp3lHemnGWh+QrWS7EdGi5G +bWS3LUfDcs/r6+6l8XFvZbhQHwrrjOGKfJRFXBg1SR9PUt3mk8WcLIGJXBXGBsWW +meiUK7qqc2p+DWZfwAmCJXa1fHiZMMceO74TVu9QSdJrTLYlz3xDIMozlU4NUV+a +Cb/Rgn6RGrq4AhqaUrh7nsdKRrpvp1zGuppZVGLTQ5A/bFL32KB+UycU6ky1Ez8k +LpUce0v81krssx+ws0dAHD82bgTQSPTGtrFOAEj+Vk1C4DX1/le6+CNx7HC/HrvF +TtDLswrrhenzLD7BKv6YGbl2NJ7Ck/OTVU5+Bj0olgDBfQhAJdeJZxfj/RArw53X +McsGNZNro+OEX0WlFg9+cq0LIhcK7FrP/5K3SIKH0/PfDaMf4/9RINO//qjqfdQy +4vwqLhEFRUKNZklQlhAqjQ/6HA/RY3W/8EeBacuT3A3Mj9LaHj4Ix4L66f+1myl9 +AlWNvuLlPOU3G6pZYIvQZ4gz7pRjJA69dakjrfvJN4MlYOeG+dCRtAx4LqoA9i9W +JZjQuI3I3XauMd2VEOJU3nEDLE9lMXJjOL/NP4kBKWV6tPQVtAKISBIsiKAcSLHN +By3VaUAomzXrB5CtSPIzYXmWqcmY3Z0aqE0Nu+uY92XBFESprQ3aeAOgOqZ+WRcl +M1cOLUIYlHDOYyRDGHDBrJyXcjIWfUMYgsdn+M5mfCznpl5YuoXafsv8HhkWh6Y0 +qoYB84QTJWtzKFwsc9vKYXniEerRmrcUxk06WNTvulywvBHGVhjwQiaLy2RY0Iit +fFOmqUSk+90rrXlaHbEjV+bn7QlzRjUmtof/AezPHehcPtx1BXws6dfQDxfJCqKK +l6RTwuKNVp8Ri7aCyRHvtvMuH01mCPYwz96NpitL4mUsHFuDyqxYXd6L8nRFzbc7 +jE4MdXR59neVcDBht+tJLmNwoHu1rcx+eQcpo8s1YTeG35huxvVmXCbZs/+VaUGK +0QMV2GnEvjGgxceuQCLXsk9DlmXB8O8BG9rsvPw1W8PQkTt3+9bDYlHw1ea44i1f +bZZIQDpJp2IHmIwAD6lexN3skeJcNO/SLNKhSC2BZH2/t34DcNSWnXxSCpzIUVjx +JHxQ3BtmqhmWic4T8k8F84MLl1ZqXagRyazIg24UXBwrvO9p6qQcxhCFcQD0FDBc +zapzIPSz03rEN6CuHQoDv0sfF6pXr9FaEqkmjQqxI567/oeJyYqL8DXC2yzyB4oo +JhvToIV/UusgLVu6hjX2726vqJLFrLSSq/6sYCu/Jl9CTR+Om+ST3KWtmInDkg3b +e2fDoQhHeg1FgnqRJ0SzXrHbccWxEPhTbZA+OlrZ7CU7q77F0iNiuurD8bYP2nNZ +FYUMKNtOc+MW3xA/C3Y6sAV9YAd+CRk+S44ZdKXVNHpqJ03eHObBuxXQK8hO8DiG +HXPl9edQIY0Bocf9H0z4LqgdKJ7DHI82WxNyXT/vv5MXCRL2yukHiNlt2F/fT8T4 ++l2iRGthl1RTAN0jLqnjS9d4qlXE1neoIyFWySIC4YMpSBVvZMkGcrYZeX4RwGOG +M7HIWcq3G2r4rPbbrTi52bbOKG11+nvoC5RKskk0uTYWWtEyA9GT3tJDEHctv9ff +QXTe7dJrKnbx7wjVIh2WZAq8AIfY9gZjs2u9COmauuRghRTx/eYLUQd6uKe+1Ywf +2JeOczK1dVJetybu0hbidpePTnTjYcbneLgxT7I+vB/1MUxcWyLlITnG5GDrdVx6 +zIG00i8uKqeAmdxE8l9L3N+bvFEfb65G/VByDZAHJbCCP443KLBth9akDL2wEQG0 +AfoGGNzvJmAVLXfl8T1RQz0FhuKSkTz3soVH5wYPeH8/201nchMVjYQDFzye4IUi +aNLE6Klk976XFbrkwndarJt+qqWtdOttey8O+WLzMeYi/ZdZNU+jlyv2ShXh8cF+ +xwmut2Un5A3DMpyHoEbwPOBDMdHe1V7n63a2hJYCgVKnA5ZSkSW+YAQu8Njd890g +X/T9T7jsoVmbkig1A06zWdatw0g1ucrk0KKF2nB6uyi/W+s5gV7ZYbN+aMZs9WD/ +vYbrnqvlb9dvKpPFuv8WZWMlIb9UJbWPoe52ooAZoKaU5h9SGIOJEpJhlwpiSk+K +7WENcSIaJGPpc75WycoHHBayqVaPxTXxzCTXqtj8LboqwgfFhOY7C22bzsNnjgSu ++oKIhDeI442mCTIlSivBJFXFIKvpw/gH1ecskxdJRCMtTxjXL2YepLU86kMfx/9k +KFkoFC/fCAVrsR3IO+wOl+4BsyH2x+vg4B764ewPgCo50ndYUQ3bbfKP5QXijn5B +QcTqmnXTpfazgQtkgcDAnr+RnlWtsQbHdglopUVhvMFFlFnD7g9bCFcWbmmee4u+ +LiTVi8YuGaDm2k7v+tgo/JCZKRre6NaUl9XVx2rnRREMg1yKQeeIwwsXBX6iVQOQ +EEdUkNo1MFENQXX4XrlJX9jfopq6B2c2tnBa48lcGcwKOodbNw4/la5kO+KHKcAr +HTspY9UVFKx6f3n6FR4PqQXtxYAyXaUmxhpedHsjL6gK2H/kNYjPjgRitoLizmhi +zIeRlWk+V36WihqoDJg/lW9GugPnvW7B5o3V7dkTGwuQv6BPn+R6i9mUwRpFNlVY +ZwdgeCCxOJwmUCciMo3Hkx8/y1YI1T8Iw3ci5VbTuo6nOdogR06oaFEivlgIVzRb +dDEn5EWiWKsTuoC6t67PoJy85UZTMbt+ImIVEewz4UXbA5I16skuwRuW7Z8gXJX7 +Gekd79WgztpdRM7EnSOzzSCLYVz+xJTJ2VTkl1A3gqz5I+dt+jk4uwlLwxE8mXgK +Xt1c2O1NDVotCEJ5iRt3nrNoi88/hzznlNhzhCgYiArL4Qjv8KHFRnDp3+pBYpWR +ys4t3myAvKkrTwuOBmjtRNvl6OZ+sMPkMydFovllg7CStu9YVuagwxz0NHoX7LRO +RzcRydJnlAFUXbrpLB+dYMqaoqN8+zh4qBdecHueMJ5LguSTV9wUccq54ZDRu43/ +S7DGS9jYfoEVPmuQa6FEroCnRl0l+KLBuDQz92eEJNkyq/U0Xvq7Pxlb/SAqh1+O +Upb+JDx0QwUY+Pa4gbzdPH0f3K9Sw/z22ORmpEdX491kXf1oBcx1PFQ7ZBq5b1Ta +3xt+eqBPE1uwkSUx2/YRRQmjwgGkaERKn/KohbtoBq7Pfu4XJvgfWX8P9GL7Zqik +wU6BjT3PGjNSl4HX/UQm0uwd/5Jza/mGBORWl6/GN9rxOLK+n5Q16zaWTrRJIbti +dql/K0+XWe/LTPfCBmM/iUnntsjjdyz3Zy1OcHGGXQjZT318vwwdxOLilKdXix8k +3mzEfjcZK8DYV0tDXmK0P97bFmlvxynkwlAoHN5t4SPOp3v3q7t8LTQ0FW3svpJS +8ZK8ehOLLubmFz+Md5Z92CfucaNaR1Y2ghmJ0bexKJ1YgPYPuwO/q+fLVXjadVBR +PbKJYXuAKpZj11FluFSP3wth3cn87E3D7I3oKLZvLMbwzaKgOM98KchupkKhVLcl +OgH584W8j9WA6fq3/0n49aDtbBjCJD+Mp4LIzlbogVlPPprooFveG9cig+AVYKzS +oNGdqJWZMo+WKGrmUhV+CNNT44lFW0jE9pWK9ZUq+oJbZygl3YI689hU8ziiGPNb +55JLUH6dIMj1s4gR4E1REe1URJ+IW2aQln87McdQzoW6zxkT9JP3PAI+qGeOCsLG +X4RmbsnQ/VqmhnT4cGihTtNrELXGe3bqWNytAa6xYaJ6H6RkW37t1IF4WOohETTe +l2u62D2XWtcez9c24I668LnCfXCJWkBy1y7A4DZk2mFCeGmCl2HJtLXDz2LWn77d +PlGSTWRdX8yLrJvCzSIOkyt0BgxyTvoDKRUZ7yNWf4nTm5toD73+ULpNhoYjnzr5 +efByYAMaPgu0RNCXgKaDb8BauSLd1urWcSqXRbF/tIgirM6W2vNpOkxo46kB5Tyj +1+o38lImMzm0rzdjhKMJYKliQ5E73qKT4pOboRS2Nk2dkZFNN6ToSiXeMtkCgVb+ +LW7v+AMdAQXGiXIgEHfC1eKwGQPY79+MOOWzjFd1C7Lblqn4EICjntzv/L8ZoAv1 +SVhEd0hua3O9+E53wk3zUelZuyoIlteNf03kqJM+VIG3dL3hqL5qPhIa434ChIYl +awTtfqiIaA6oFvyqGfr/yOKEYn+nWieig1S0dR+OXUgpUxCm+3jQ17eHZnfeV+1O +D1O0bHx5gR3FQZs0CmiRy6makYfFrcwnqLu+ttqHAxz4FAYAdTEzRzs0YcN35pP8 +t7vZmd4ZaNWGpkXnD7HT6eM8dsOv/IRQYhwbnCfgd/o1tCv1RXRkSogRuP60NrBh +UwdFxqlj3dovKt7HW2D74uZzxvlq4mS2x+jgAOm5VeLDiUJYHmydel0lBy7uXpwJ +IkLx7XtHyZ7vQfZBQFFJq9Cs3v22KH8lWxAUC6+NCUo2TvXfEQORu6+Zms9525k+ +loMNkGhaEy0PxFIGrOiA+H3IEGzemBoYmjh0cAsN1tsZwXSYxU6KDehRmtjN1oY8 +jVMBxtQ7RbEAAIXiV+mZQ+kseZ61XsgLluAl3XqVWYcIEqfBQXy+IxZhPwXIuJop +FFl+XVzJopxs3cw3JfAYg1lWkJZS4f2mXalpkmJOP99Yr3QYE919zxflwBkOnhYY +8y28QKIbG9yORkptzVlTzq7uzGbma7B79WKWZirHLwouVsw7L4WbSHodOMhgY/Fw +I1hIjloWQiRzkWttoQBKwPoeFy/oHGUyCoMcP6FXIvUFIxogPFOa8H58E2KX3ndP +SYDXT9pkSMwJXHjGPdcB1PsoajoBWHSea3FpyrpLusRNdQ+IyI1Qsx0V0YzMVMk2 +7YTgYaADv0DDJIzYe1/1bK9+inKcCDW/pIHZTowdVHtj8d7c/MgnVq6AB9HbHM/s +60XtRjoNHkS508TKvSbm5Y50oZdWxwe6i3YCXOo5DWzORSJtQaRDyblk9jCW3QJy +b5uNVowil8Qqd52CIngiQx6E6tsKZUcpNBj7mCH+9OzeCCgLqGWgSUvOdy+50SjK +l/YaJXcvTodihDGwX7DEdGxCQuKk+DpOzXplG73wF5DnNOyl5YmWIHAKErHqHGYV +AYmERqY+Oc8RrUdGt81KTQ1f3cKConen3zHAqfly9atHnxaE/iNKM8ROme/kyMXZ +PDCqq22M5fd3ZGZd7VxrXdoDkcZ8UeyrZMVDge9ZzTfa6g5wXAWpQH/RNIOYPscA +lXWuzNuVAtzNMfPAytExTkcwpHN2GnbC0slK5zU5mFU5R2WxJ1OmyYdNZv1OsmVO +C6u/iS/vRLt99Qv+hK9GOGQX8H0VRp2JXZucVu/xxoXNeUV48u0oIbnwDxVZhzlm +mIgNJJplXXmJ/1Rm/X7wi+oLt9Fv70dcCs82ddjXFzMwWbROMFRqznPfODUWewFp +Fbqg65/wYA7HGjeiwpo5U9U0eTDx8dauAXet0vErjp6JVPjR8/SGOP1kT5AGCY51 +2r8XudBHFAvObtCQ6L/2OcWuo9MFUUmUf9AV6UmjfyW4n8Nrbd/1eiSzHD1eYXTL +gyjRymAPm007S8h0u3+6N6eSJm/LA6f2uf5vxiUmdIDfQLU2N2/yqJ9OQvwT4BW4 +IkU1mMOggmqZz3ZRa+VrfOxskSAyAsAOBhuKT6yyRLCKwMLevqvI3nxXCOshMsRw +XhyjGQ+ylKEHiOnvaWUqHSowzhvMaOFwyIy46CjAklvYzfg6Pk5Rx8VaOeXdq6+v +pNgrHVkgFW7l9AifS88rs0pCDN+Q+y7k19XDd/u2iEsWoglXmvY7bTCtVIMu5ZBe +hpJWtgA6Ib5XOH6BtTN76+oo+p+/JjCqevRddfYtbXsCH95YgVIE20gepMRPNIt/ +5L/y56okiXrp8SCyNsGe/M2pdenHJdxt2Cm+N9GJI3Cn9tG4a0PTvJv5O3fUQ/yy +H5DSFP0ZuI7v+bUvsOc8Z3gNoWMn5yLHT/gnHU7lR97y1ClnkF2yPce0fkXrt728 +xGrxSTM50lnhr61WRdO/R41mQVd7UUL8AtFewA2r2P8FvfXXl63532FJ7HhaMtDT +8KlIC/zaG0IxJNnO3DyBO8rCrmnooREt5rrK6MWtSpOa96CrbTIBXogMLRJmj3+h +o5gsi/iPUDjz6ahxR1pYZo2IcwAQPddFCe3sxxnOKREmKBQqw+lh1o+If3KJnVTI +1ETgoaj/aXWq2JA3ccFfz6fSZVoHiBLjcGy/9wWhRh+OGRuqSuWfhgfvz2n1UXGJ +AsQ9lPb6YLo0EGubcYZLrWwgGtYpu0IW5McPZ534SqbDjf01RHFxdvvhYbXnb1IE +lp8smnmoGm160pNPZf1EmLOGTpkSirvG+bOV/oAN6vRt0h39y0gfjP4QZ9oNczCi +gciHsXcWan2zWeUk0NFDxfLExAKEjAIsZEoo6I/E2a6B5a47zE9eATFtCLIrqYgv +Td1ODcuGbSyamMsVhO8NV1HN0FNZ15KLQWChTAKuGyY0kVwXm4vp6yLXvkDeFF08 +p0j71Fg+eEGbi2sy5kNeQKFiMqGEEeyRYkjoKwQMJ788sBkfN6l+gNStT0PVR92T +PN9fv54zvwHlN8PCYfmX6w3szL+geN1d5QJgWZfXMAfQPYWSwYHmTqZ0L2V+zC/e +WkI/aNWeRKUa37RnImpW+YM3hNd9oKjOCqq+/SZHtoOrVSKzqO44bK6KimpS8Qlm +Yt+oOzme6yOFY8/N7TP9vaMjcEAbgX6RIWcawu8IG6kJ7AelJVKIn0fB9lTCmNQc +vlimjSvfznqR4Ex1jZiBnbCh3OIHPNV3Ls2usYZhJeKDB3oFVhUf81yQk7U24XSt +RPTAp/6lyERU+BqGN8aTQzf3Ni9utHINAtxGWhNMx6EspZNHH5LBZizp1VaINeOg +8sYzKLEWdoVaLqCUDaXHIl9+umhwhTJTyWJInfQmPFkUJRsCNC6uJ7W5kx/0/EPM +66w2sWDq2cPpCNHeVCLCyknSHYoSVMp9toL0TmFJKwxSey3wAV7Oz4Or8PaEpoWu +/7uUTm00TL+E2T8oU1970pmd5+7RfTe2ooKJq1Gw2iGGQLQNMz4mZdJ2OE7G1Wbq +Qu3ym2PJDgtz4rfV01C2b4Nb6EK6fIAkd/P88SRcyG7tw9aiwPyTafdwBZk/rpoO +mulXxA88jd0Y5ub3+tloAa5L90/ceRgMukybUiW+CxxwMr78nq4BTnE8rPDp+4nA +RFRjLQTNLZPwKEO7gfYnZpTe3ITFQPaoOMhom4BpdkhIlAELR6RRODH+0DLJiczq +/0EwK2+FiBTkuq2/99sV76Mc9tj7KBwZyE3WqFQWkVtqQ5Pi0Fr6O1YkDFpBrYSl +CjolGXmPBipm0ZHcQmIfl3vo0JDzksXq8Kaizdn81lUxGX4wqciSQirs/wGsFI/P +6vQnPBF4lYojF+0ZHjsVkipefgGhLEatCQxl9LZbe4FxV/eg7BOsSIfpoDURcfyQ +kkGCQkWYPgxqvexlztn64GF7x81CDYNuuNku0Y2YSu8wzsObLeaU5l7kWBisYa+S +z2wosl30uVR0UU61D0ZNxdVFqyBXS0gwkj0sAqYPGfT+aM1eF5eotCt0MqsB3jB0 +oHg8kZMIf8SUdqs7tGSAkQ/XIAdQWqN4PkbkmVsEIHpbewvgy5Lfuh3KHeh16Q4z +N4r75gjVe5W8dzaBWjRS5HAHXLJ5TxbNm3sQuAXlvpUodDwo0ALA1ECUf7wGLUqb +hObaJ4yEbimkU6YUZnhSUb/mrTlsff2Tve8LIgj4VU4avXFaocTOVF0KseK5cAMa +sKxIjTGmCf5ZHCTDmnK781sfRH0X99PmgcFLadbKJdhc1lvN1LLy/vm7FDnwKB/f +2YUb2iRpkAJLkHzBEQD1OdTbKoBb16ZMn1N/d+A/xAmg6gzxts3HsgII2SL2uNix +oU4cLc2k7Esc6qAB0DVfM283AYZPEpBOeVCoihBmE/uEnmT3iOnq8o6Kxx+3Q56X +vlPRYShD7rJ2NcmeXjAULUdStwYk6TW+bFGz+fBGivBcBr7EcBAyYlwTUym1f334 +AIk3k+2h+sjINQxQlM5a+tLOTNxGk/8RswpkAAGhULfDjlPPdJF8+LY+JR9BSMBY +eKIknfuNFcDGy50MmKmqIuTYpDRVzwWYPjUDNDQQeSmbMxZInJ7OznXyG73N0n+w +fethEG2IOO22lRDhYwoA0K1X1KIXfxCETWyta9KqwsY8lD9MI+xug9AwCNHJ6tjD +aLaXnMo8shgEHdB22BlgYyLGBQNZZExp0Hsb2KD67yZh2H+BQ4kjymzdBOQ1VTuE +wUQ4KT9GsVG+U4IFWF5JoH/UlzEbWEmr5l/hzerSqX0BVTGdYCJ3bD7Jlz0jJ1du +G0Z6IOJOzFe4qQea03gylFIoRhDqRGi2IVUMapPygawAP2yEriqv6gJPQTGWeWW8 +ysNjF2LhvghuUwPZyj8y4C/6xvu70ETCeoerqKmAJgBUtgh9GQV6h6VYTr/twsNn +n34YbcAxx/1qrsIsi85JzmESmhScYvs8Z91AaVgQcoFXmcKqtjqssDK/mlqcsPGR +kPIxu1Ajt5N9mQWHsTMD2lxE2UH9S67MaDcZ4OUe4UavxnPVMbw2fCPcdnKXWsCr +NSJN+3T0nG9HcUfocpc8+n5auZdOaSQX39udHOwmJ6FcMPni7NimGXyqai+UMlWe +6LMsMozzs15N+V4zfGg7tq5q3grewFtcPDRotby9FWK2T0mnoNYmP7l075hHiu3U +hgQATDvzJ+8bRfBf1sR30xJF+2WY90F1kY+JNN1SgrxCq6939JdvjIhl2MA987qf +C/J+Yr+4u8WoORrrJJr9GaeiTeNJDmwxCLTzBWd0dkKP1kdxK0EYPnMD5UOaJd09 +mWiSyi7Hsa1wUPB2WZGi2h0mfSwbgpjO0qwnHYhsXFNWm8unH2lGR1mnL2jhbkKP +kvL4ojQCyA7WTI1QjHNiqbl+ETayDh9pcu7yJKxslf7YDSV3E7OT+lBhxI9qwPLL +H+z7pLYiNBnne4r9MSJCY9Gd9dBB/r6LTEbBYGMwGSfIg8/T/1YT7iOz1b8PgPup +3DNCsj8UkipEyccsg4lwGflZSThYFkdHmGX34Fp4CNg1l4BsacXZ9dd2M8hG33i9 +tCmZc3ceipbsq7JvEzOfTUHuv1ZM3sYAXnLdvHsxB/o2g0zcyx0WCu/qFWwddMOd +Nt9vJiFFbQ+siYYWqIr6aYwS2Ekakx57NfnXttp/RPqUVowVCB8+5WM7EyOrVSW8 +sQKPow5NfIy8QdUmJjwCeaEyn+saGQ1MaFF/I2tsu2zuZtsYXP/COgxDxPZCIOjE +m3PtamSgaOEzyAplAkGRYM2NoOobipGxP6SuVfhSjrCKIey/0EjLpWn60kxQuvFm +PJYE6V/NUWrOeqqHeR6/GnKLei5mQGKwLweqRVsy4OCI3eFcx7bWMXX8CaYdCLxf +y3MCF5BldH3PsZ4zah7yf+He6BdswLZfHGbtttKPSUcx8wtvQ7Ms3T057vCBBVji +dZ+oJHGeSy2RlzMgmjs08/E3kw4V/IRVTEfFNsiwa/r7QwMTPWxIvDPhXPOYF/dq +EUi3llVRPGS2Eld/Gdwcj+wk8igYwS86jsR47qvxcvnErMEGXrRBudaphQznXmc7 +3A8ZzcmV3yGZcPeykxv37QIoNOvoR/XeRSsCO2BKTSlspgykV5lEmLMbw1Tb974n +YIp38EXQc+1zLbrl+ZnmRD5Qh2ZyK8P/aJ6WGvIkIl8oSOAwgt+Ee7sNw8oqaq2Q +nQInHPiiAd0Gq+TA4Be+AECaE1BZkrovVUV4K6EefHnmuF/86YL1c7ppzLcHMIM2 +czvaAhKjrHEyLBeOP9y7iqzsczLlGX3cogOjbDGqL1D/ty6XhsT/xjaw/7ikL1ww +CnGXRQKrJJnMujsKlkq4YbBdjiViyFFE40jx7CDONbBaCw523r1TkAbJqynNQOkv +Vb3B1m29ZV+mkGVIW+MSmUy8QAlGQkCSQsNkC29Si/XyungBQw55FlTARAWyqufg +uQIVYkFpWOjjM2Vg9Yv92AEa47YmMtOoM4IuUQNclq2V0l8qQOos6WHvt1SW9nc+ +Biisu52BlydQydlitt6g5ZFmM9Mejjr4RtAunnCxD/LDvFqjB+oNTiF+3F6XnuCd +eqWsaTXHeeba8geMOVe/Pe0o2YgNDaItfpwETxYxBxP4Zpz5ga4rWhVinpSot9iF +QVPHabMlcb7emQOrkp1r0HEBcw7VogSXl3Q9jS5/7BYgfduQ47kW+H+3PoY3Oywd +z2z1b+zMsB9ismOYyx8yOrq3V7o7rAABKLjif6Pw8v3edk2mig81Fn5M0p89QbGG +nz79Vh6eBlGBz68ZoO+jnWpw7vMcrfWpBTQv9W16JTC+Yb7Y1Ow2Jtevps4mItev +EgiCjunn5ArwdXAjvPfUUTRguP01l/H/H8IXv/MyAUaWa9nlVyVaab9S6cqWwwsL +oTT5ZImMPf/S6sx62bW3gq3ScmD1H1UIKK0fnOXtGfzjfVTXCsoog4l63HBR9bRM +wuHWBzZ2AOoEssFEdkN27+lSxWTVz3gkrCQOg3nqEQ2G5oKi23G344Nqvlb1g/Tq +4j48AKYCkBe4en+BTUBu2VK5OtNWJmYK/5hCffvNUyaWm/swcm8aK3+YWhjeHWYs +4GNcyxQFemgF0MkIEAp9/QkrjUCLfIYlX2VBy8ri3vBN7+PejXEOP3cmD4068TYM +yn4wr3EG5gnzFngkRecdG+LZSTci7Y0Zf4EuvQhOJnx57FQw2osnrv0hOPRnMfey +obFwuRLP2qDIQB0GLk45Bg0zAqa0E8XgYxzMQjselAqk+xMCNaGey9xEIMfM0E81 +oGgvuQwZRgn98TtTCXY0b+1+v3m4whhluNrChfeG0n5W8ZTQPny95iGVFnmg4Veq +l//fCYOGlShJnE4a7yw/CynhITF3QNSW8e4tAsy7NYKTtVez/QzUwINEGZubGhju +IIW8EJcop5979qhkK4w+E53ovjL2CEUSk+0I4+2lcuRIabyXNTltyc3EYcdziN+0 +a0aOc+0FE4fDAZAJfF/JbbwbM5RMOuPaZbSC5ycFwCGe0h1/Cdd/7enPHmJxeZwX +ynfnN/nJJLL2aKQ6qsGomA1NJ7dEAHbUGUdaGGzTK/k0PBEsPI6lLPVy/VOu//3R +JQPnPZnGJw22x3w89oe73IXvPosFoApopKK9u/oEXuaxvBrIQ5CzTKweBR2SAPlj +16n4XRiVlQZANeBIDuqZOG1S4sqpijglEcSQse77O5yCnfvZkcU2wI1IEzWlpQh3 +XzpSFhRcRE4uWozzAH/6Z0awAOagIjtTe3ANo9bkF60XhANcx/BXLiEevsTXS96W +7jVrevGtDo9pNhqpVPYzDsEcoFFRNy8MzJ2BE8UEraAEiFqzda9FKBL5SIshrXW/ +uymlyyc1Uw9s5FJrR970joFHxh6SBDhfI4rKjCA1WCWC6ALDJPxUD/0+dyZ9G6EG +9qA8j41JVT3c1Xxvh8oRrp7Gntgw7OpJWlMEeVZ4iI3Gi58iuYd61V8IcEZxxjwk +bOg6b475T5lTslmidiZPctoxfSTfdpukSDEk5P+o1UXEhTyMAf/3H4oEuM0r9O5s +NDJTiwbDglzhpMkGEDZWRbIFY69bmOsSGUEMFxBY+NwF8bfwjDzmJkukWRHA7x4y +t0vuqIg1iEHi9mnF5Pbcja6a62nnOAQiRq1bNrT4A0EHyZW6LXWNLRViJciir031 +d1cZV13w5jhqYQ//2D9tdmLZVvr9j54ulSTaETBj/+7DlJ/cAnnlfnOkcRzsGoXg +9UVw3HK8qxrCLeFEAOGpNaTpzb1ABD2EjvuLzfVNlP84l8q55OPhm1cZRTL3jPKB +hQMIq2DhP/M7bkft8Dtv8FZ646YlohHlIbC7MWQanGKpspwuGS7F7NZTxEpniI9q +lZZR8VlW2rJQmE85T2ZO5GKAFss0CZSCqDlsg7C1SYnQWs5eqOY56yl6YIu/tXMW +IJUXfoOXg0tDU5j6U56+4iTAeCXvBZfVM09+w4fYuFGlQF8m6uE7jVOZ6k8zCI2X +ruPyyb5/dKyQl1h0BeQsSN7JuAO+zW34Y0QHe8qReXorZACRkyFaWe0cweJqWCIy +qy8VRHu4ghrCWWhVBXHKW5+nRxTsVfHmqPhMOiUA2Ozyzf6JvJHpj5pIpPlSdhlR +MKf3LXyYDIsKgoj+NBdtowcmv8+uZNMvewokFj4zoDqawbz9oQ/P0LqlMUc9XS3p +wrSnWH7LNgCdj3Y3yXmMoZg9jxkx87Hi5EAGCHLTsbhZ6mWXvB2+mGPnjVkODG05 +3g+FsfN6dtHjDY0UiP4G/2lodPRZcY4+jF36n1xI/WBJN0cokiNNWTEXXC/lkbrB +OfpNDm8wGZdPl3bL9k2ccXotSqNVSTH1o8JM666j4Ck+QGQNm/LnFvQobaQaX/CX +MfEIVugBLpOUOoFARsxSqSoCSgNW0+REi+GHrHxFx0lECEboSIp0g0Uxud1vI0DG +XzGCiL5qMaKSJ13GhgHtfyFvCMC5Pms+RFxqJqOFS7RtdfB8ETq1a+EBpvlpu98Q +iUxDPzevKx6oVuW5Q7PmMjDeALBsNWUvhO7nCwa2WrO9Aofs/2Fz9cA6dwrislqL +0SCPp+ESueVY+SuG88PsHCyKjUpF/oq8uGpqfSQTsqkomLYq3bSFiH4cPjUgSpsr +ixstTPBBxLjGFH1z//opICoGmZAfnUu+7gdLL0j2p3TKE/EpnE8xL8CovYMW9+RP ++KM0KajxGX79h/DcuWrmEdFWooeVjgUnLzplklfNo7o0bdUQtJAZ68PUxuv4nCUa +DnXd69oEU9vY8/yi2FFh9WtUQCa7xbBEpZYuCk+/l3Ho8uNF/BXEDI6oVLlk46yz +CMFlFdmGBCvNLepk4sx1uxeFZlewpHUkIMVASS80G4e8yyuvpb3lFICxcxI8armo +FvPpmqmP7g4QObbot7JLuROsSo3cvH4LVM9tHtg1PVKt59aWFW5FuVh/Cc80zioX +nE7ha+tONRyd4SC54GZ/yp97OLyFyD4QLKIW4et3WTAswRQo/a0JDTNcqTUP4iyV +J4aZ+Mu04jxtC++2PDdcPiIzVGQzGIz9g2LMzz74/r2qH8v6iFqh+uAZdCtJOkZx +jGgyOnLM55zZwyRtoDxE7CY/ZVSns9IPcmlxeYbL5Q8zTQynUDHJ6qkgsd+PksjB +Tts+aP/mDobZbbuDWrtLUBDTfDGRZv4fIDk70/BYyXGlTM6epX9xo/rbxZaU/aPw +rfAwOxrLwn71SX5jr+4AqIYohm8S1J0rq1kigTB23zS4zJqdkXkuKynrW+wSrR2D +QbSWLqBfdp7Uvmx0AHLQLz4cSYCzkvXJYC8iWqZrU7DUXcquO1NI9+GbwDV6Bx4U +olTReVk6kTNsQu4leCd+4C5nO1Pdooc+S2q32/qo8mEJQLv+DqehsFJAY3/gs/Qm +QgqChnlae5poR4A/O5Rc3+YCmKU5s0X+Iwa5SBBL7sgrfa/8I53zHFmXaBEbDko7 +Jb+SXB4A11CXZhLVBPg26WQULC86teUdCR+VK8QaWtjLDaKuPPnUc6lU+3QA+YMS +Fx/HUIFOjng/Cc139ZSPjrh351aNN7/6LDUAK1bDRaqubQm9xzjwqZOQp7QBcbMZ +PQ2HX53FqmtHXCjNjuXbdafG5k+RhctY1Z1YIJsUZt+5WnEXtk5hi7l+1XIogXJL +N76HKfqXputckYF2/5Q8g1c71ynSrU0DYolR5pLdHKB0A+NlubtpC9wLZQBm5RAd +u52JFhQPbTzF0oIT/wzuG2rYfvV3FcB6KukHP51v/y1TsDoxurwH+YeRYAPJmreT +vfNjGx3u/j6+6AtNSoIQwH9lCuhFa+Tes95X3ziyEvi77DK3tYbv2Ug4c2DHhpJ0 +DSIc09Mwqueeq57T6Lj8K3fNyVs37rfsJ6kwqp7a/fOZJ4OO94SeWLETXVC8xhPz +EID1+PxtFE6UhfCwnN7CAGmQPtw2CRFVct8HVtmAcbV2uuGAQXJ/hNPRP11da7zW +i+c+rK2P682Ikcd5c68GcRqWgeRRWATR9CmSNdAtwl0O3en5F1AN9pjKYM93gDHK +FrTfY+3B74AKsY5danTL6rU4Ro0GGmk8Ub5nvXvOTzOp3wdHFFAhGerFlb/jl35T +jrvmJ6M0JLxN9bD2xRYfZW4XPA1h22Dst0GPCbH5KbTfAFm/RTF5leT1A24OspCv +1C0PB5XxzR7gkpbZQUedseun2iYeLQeDih5OuCDFTc7ANEWVWesVFxB3dSw6/oMl +X3KEcVHDiE/o3VILn0R7UHSiuiRuC22Zhe6Z5dky3d5Q5eyKotkA0opN0SlDHN3p +iAVkehi65K7i/M0/NmJAhb90Vo7gsy/FW8Y7ZT0GMCgOKYBuTK6Q9oV8ikElOlWM +2eDmpiBx24voO2bGRUCadAy8uYWYXqNrbSORd3pib0DPrZ7yypOqO3DDE2DPo0ty +gxWSwZ72KJOmdpT6l3KUIydcUkUA8qz4K5bZ0m+d68GWrBxVJ0CRXpZJm7MSlqmP +URCftggwnMlWFW6+rV4eVkhRyj9ebMoey0hqYiNVMxATrnUIwiitJpEvAoa4YxUZ +OLLa6OJao2L8B8c2pvmZNinUGW8eIwcvORyd8+dNLx3zzGbHGvnmwg9/8YdPDmnk +JZdkpLhJTY6Armjmwlkuw+0UHcByjN1kAIXqjqSl7tSEBlvXlmUJJ4t2Y9ipcg5b +y6m+786tDu0s49j1gDmFmDu5Zn5+A8gYQzVIqTnzkrnWdZKFwx2OF69olWOwbILX +G0g0FxoSAfUEDYrxrTNtHsQEMGdz0DFe7idEHN9rPI0wb5KEtzAk9NEwi/GNzApE +SVrYLpPj7BFH2FH+mpB9jRcdzncTVXubDgzuOXN41HTrKlx6XdDebFj6vZGMaCQ5 +Y2bt0OffE34tcBBWAwgDxa9G3S4kzePGsPIPDDR1w8z/IfsQ8rGlgFJJd1fNzoMT +aeZkLM0PqzihSeSUfmVJg9uyIeqbbWgd09eWU4XzcOxgBuKTdXgVCJDEHESQQpAe +oGfYbNE8oyhztnBbNiWvI4eBtqeO3/g7A3T4ChM9oUFA1Rzq1jyoj2Vly1R86GVC +kYeOwYsBQRPI4uAf7+vFU+WjK0OjhqfwWmpzhTgR+hsYgBnAYUIWoiV8jfurgxOR +VqI1ySQkfc6MryEnzUTDuMfAqg1i83AVuWx6UrxoAkj2dpCSPaZ2zIXIz6gKJYpG +Xm/8gXrnMTTRGOZur4CWCF87RFBNkdVZV6Y7FwDwTQtrA9r0LGnpBC1vnYnbl1Wf +gjtzr0YcEEQMSRLxFiqzf5SKDZJyTia13DwDwc0T0hSUdycr8TXwlfYlG+lbnHZp +I22N2l8n39rts4R1rkMRI1hOwOLL5+Amf/2G2T5ZQT3kCLxZ0wpQEi7p9M2nuQPQ +CfxfpiIJWdiLh8QAgXxvK7TUeAQ9LhQasz081FcpoAdxNnjfPoHcF/LkJZXV0JWG +a2AQhi2sD3x2qCTU6zS16FZCDf+jkpiYQQUSJItW9+Zg4PctWtSB1db9sU/Pkuck +ME2vrysjBRKZHMBr8USYKY2yXWTy2u2lsUdm/3dcBSaWAvHddFPw5NHrs/BeE4PL +FRPRFr4Vn9RC7NcXa57ULixPmhD2BrAJ8icSqc88fQ4s7hSc3Z4I+saCSsTh9V+e +zI/d6Q3umCFK47pWQF69jIgd/sLcdZdqgg+FTF1Vv1AUL/R64NcCbwRnjqhsQvjP +9LZzs6oV1+Uu1OIPy80dmka9lRPr9v0SZgYaevoY4Nwtt+l2J/ZkCcAbWR6/ax8A +8EROHABcsCo4x4LSglRTnvuAQ9QDrU8kkkrvwEmQWS4Z8iuJ/ebbZM9Ynn/P5RDW +7//+PdFMq88iAKXW2rdt/WmrTW22cawi2dK6zUMSlq2oVBrWDwV6csqRBOW8xwI3 +Q0HsBpg7JlE3rgaiXRBMGTu0RmNATHcHayemUFrQ9Epx3XYoo4ZHs0llXcLHLb08 +Jp82VUdbp1FbmD6BoLOIUQRSP4gzsakC58Ct6XKMytF6dcNVMBTEVc/51pbBahRy +PsES6X/HC0HpL3OluY9ksZRBNtSMbb/I7+QYEQ8E/6EW466X5eFzxeSEPkDEM0N8 +QJij4ybj7COaeAMy+LcyVoNMtr2PXH+ZH8QogPGyYbf0wqtB2TL6nkbYBg3seuoH +zgZTZYZUSSnqIcJDt8TpIB4StlcyaNNze42KVCdW1edoN60boEoOaN1QhSBQntMp +/0GGHu5q5qV/e7keQpdYU23B+lUIgnH3nfR2C379P1GC6QCoMtDk/C2+oruhNwm1 +MQnuhYDjmOfEyTXFK+Pm8FXmSz6ictNtCnLaJR93MolhaasqkY6INQFNrFWL1kJ8 +fOtmUq3YTw4+D1s1toTtaZpKJ8J4kbzvL7mRugIRrVGkRQU3HeVZ3AjLHPPAuMcC +Z+CemVcaRTPN7fdGhRw+re6CWVcsJmosXDp7HhAuwNwTcCtE3ixh8DZtq6N+Iyl3 +uWpk4AQvNrsC0y5hmz9ihd3Dn0Wwe/loj4c2PNAClr2hznt4xhKTq/+TTXUTnPMu +StuRc9QWq9QJ8fvdgvcSPi7r0fIJly+N4aWMpxBCAfL+Nm0SkyYMhJ0JedkeAc/u +8a0vkinN+EnmRMc+wANyrcqVdLVhcYtItpaTZ/UEpNQNZCRMY2x7Ds7QzsLHkHLV +JCsZ4w7U7af+JcTXcRcZoIbtxc0ePwnliJmO5Cq3hV22dohQypqAE6JeVsLweG/H +e27WafGBaoo1l8BOp/+6XS+8LixM24OgMAj+AM1Ks84LrvZ6Xu24C1WAtsZnv64h +mSqn42OuHAFt4GH8G0VUD879ThIWI7UjbhV2GfswiwdzuNdlM30in/Xr61OQgB8z +khb7ce8iN9ClK3mQKt+p5Vhpd0Yxp+AatUNRiEqhaDB5amf0SU09qb1ZSEg43nqt +IpyQFE8tN0Y/KhmdGttIamXWKkAj+8Z+15J9uWoD7T5itdUv6uDdSOKmIvyzXlB8 +xDwkQkkwU6WB0XmpE1ZqCT9cTTOBILU8YwifR59QS190s1Lk/w3V5B1vapHdblX8 +nlr/XVTpxDs5DpHdk6S61hb0SB1tq0zyuhlBiGNL9So/jyd4W7rN/KM6voBmRGJ0 +RmB2JTMjq2Rh8+TtHzX9hbtPdzMd+nMRpqDaz2GXorhrJCd+DmKMp82rMm793ih/ +Qf2DfXrSha4VZdxUbFu230njJ9JYcVdJUP2h0dGFZlCz3Qtx3d4M1+wlMpDKUawu +RcHCTZS4VKXoXboTka48JZC6+l9osoiksiH+0KSMonqgO78+khxk8Fttt/ciIXMx +thhMvnmI75Mt9T6jNGUbB8nV6TcZ2cf+Qn4gSMxpRx71ydgSPEAKv00pHeWitbvy +f/8OTa0Hc/MUuYH52eixgFZFvApiQIIfKgxXeDG2RGgu4ijFs1Hwe76yRLSnrZ9K +UXZWht9OE18rbXmtJzgFJBAut0DX2r4Mb1SMRIrQrkOpfzfo7e5Bve/2YsheGUCr +/C+BmUkJqBaLlk7AMqXNKSrZpzpwHsSiFtl1jPDCqbnG9hBTJnb4WmrSrhhYqIdj +enUCA3xkGKpY/Gv/PwgBvN/V3wgD6+puC3vwqKDvV1hpDlaSpUw9evimiX5Qiw2w +u/2oBOT5KnJ9NIihh5mQ7ZdQMoDJfhYoXaYRbazt4ATmUJ/hWcXnXuUP6PtN6gsA +j50+alj34GcJoc74N3XHPuhT64NYnQOZMN6wj1aF+ScbeuwarehBSpD5ctzzrrF/ +3NYuHXzON4RiT81rkfF7YCF2SQH7ZY8WgsTyrRrq5huJR6e4iWg/90fp/YsFh+tk +Sn4sQEX36E6c++gOpHTrnFWMGQA68EY1KWimUCzfXIbmGHD/tDGGtaOkk+gS3ezN +efQIdaQzpgFy4t9jxF6+M3KEPZwQ2ZE/Lq65CmxPt6cKuJv4I9Y6+X107f5H+Cfm +pWnSJEdfRyJqhzp8qsY/TP+3n9HPdZDWncfQv8YhqWhaFXcNn/z6lcQAcxcVm/gY +4XPl34dcT5uc0QVT2/dLCAsePTP0dzALpuhTanuw660Rexu6b6RH9MrCkLWQwpby +DPCbG+MjxWptAOZ3eMXfI+kCDJ9TrT7zQ7duhYGOVCZFeMoy9zk/kl3amrLOAIjX +SVMFDt6fiYPSxZoOBzpCUM7kt2IIDAL2NkU1TdiMV2PlyftOIhSJethHZTUdrO+y +bTTzsz+Ju43bJ1GRL689jHCGw2RJafQxariNb8tNGNOWeTvMTRkGEIbNltBrxnx6 +N6e1Z+4qOYsduqR/84s828DFxX3VMJyh0TePQ5GLPQ3CBYbBNUF8tNtvcVRwnReH +LKknSQSlvEj4VRCRW28si7zTim8OQg9UrCUw02X2PG82MbPGRzBNalb4nnYJa6RX +DJoJpZyhFzvMWMWQJFsSEWkH/yqi/Zs2ZK2pXlC55R40rnR8gghjXEj1yEB9M1iJ +fvx4oKytmoQ5kATRUPA03mgX8Fq9DcN9p5paYnvWVPF5g59cp8MwkPrf1SJOtq1B +HIQYbEB2VXaN1O3ijo0yw0Nk1cp2njbNMXqTnrmHwx4BDoucAwWFJlMLctGv6BDr +BRdZPMSEzwyN4JiMkzVZ++/fYPPDx2pzXRbQF7oSRwJvrZeFNfppKidqpyM61tyP +sD7e1/gQF6PaX4K1t5lIaXQKtK+wYR0DSawYX0TvloyA9mcWw6B7hzhKd3dhJj8M +t1eLIb0rL9ze1NLNfxsvV4L8fRkCnmIMYwm1I2jXQ8b78ptDKfaG0VRdy/w/6mhd +H7mHz/HP0VaLF/oIkKjXyHdlW4Yiv8+v4sbo2zHENR59IXzDeD7ZZA57MuNba2yn +PlmEXgECXeIPqpHnu+2YSLITi9Aud48SHp3//H9aPNrb0Jho1BNNy9799BnBtQqH +VmVj/7nFB0sWvNfjO7gpuetRy/bXILBfvMybpJvaHykmdI2F/ko3P8VmjLZSd35Y +KKpazGb0e7xI354FoxeJ6ilR7E6S+Q2qD498ICo72vgdzJBOgp0ygRbi49Ie1otD +l/SGrqrKB8RBVUgw7vWu6ZjRIRO2QEmCKqzV72vWG9j/8+gUSz20OZN3BOvW6b7e +xz9lTebUF5yzYi67FMhN+KFHiQ8DbK7osTuUR/Ut9a7354MxnHaGfOsvk4GiFcRp +W2U7f9nmxNqmvrdSQ0WUWIie0P9inuhxt1BbVk3lWAZaS61wF1WXqueinxFIsJts +RyTyUnYFnupiLPIVYyp0J2nA4zvSWkZqgMCt8veV4nlU3EwpJHA08t+xYdTAp+dh +u2QNmJsV7FKD9ggPjOTajxWuxQlUrqf+ljb7/dGC0dsjpYpO1zCY+P2SZzcGlpT6 +scpLE7XHyEpIdOokotI7b5Z14hHeckD8T3pgU6YzMyF3Kzt5+F69sCcU+gIXrtq+ +/NIDesQnH4bWTz/ceDVVZ/3PdcTalOytRX9HKy7YGLuNTNXAYLu98TQgn4tQP2F7 +ocYsL0MzQ77itON7AN2Q0oPAGqq7n3xwA72TygTfBXOlKihvypDnFpoOrpIXLEZJ +wwt7wgpLtwnG0qJMIgBXOV7YcHle7oRnxC3AMCABcaMhWTUcLCxkcdmzXrstkBc9 +58lmnc0Uv6PIjdgBjQ1ZFDCRzzjB0h8NudTKxJjzumeEFrUiwUTFEACg1dIMXuIi +DX0iQeCUsrOZ79q7rkFYduuDRzYqBcieMA2iMYX9OdI2VbpxnAEMSWOH08OmYYgC +S6WtTdSnaGKYS2DIX4nGn3ZlLEClOaRAVXBPQiRDCkd/dMrk8g6lZsNKiDBQN3sj +0A+l1EXQIdheAg9NpEBexelQY8cPlKThZbMzCBwDaJikMg3PBJe9zQPd9LI+LvZX +IWVEKkEc+Sw0iS6ttbuHA4djBWdvcwFaxXpNiAX748ZRKxaJ7Ly1DFbwVv9ohWo7 +0O/cwv494hipdHfFKKdDchvd57QONavR8sKlhhTQF1Q7co+8GVT+p6ymn0RjR/aN +BnsAvu8+7cOdlSCpq1vrovIeWmVK3hcIUYoP8ESLMmQX0fa3TvQf5bRsbjdu3W1s +2QZx+d5yLrryiIH/czJTmAzHOZ+HkL/b6TaSakiR6MSKRY1COSihrqcmCBJIlatH +uF6kCx18IjDAR+y/Hz+vlSbgCJKQ1AnCMv8bNKksTWt+EXqFpKF0O7P0Q/A9m+YR +5X+D5zlzefmS2QyU4pCg8L/rSVMxeiqkViUQ6sQ5iZxxNfw0c03U3jukNO7s5SVb +lQf0CM4Fyi9GmKrxPczU3UPeOeCcmCExEod5qvt9ohNBDfbKP/Rn8xB3GVnzMB2/ +SQmqwk/95/XUXOyxNSgTrH5I2rVgkAqjWg6nBYbPAuT9qzcE165uDM3fqM3Wx0T9 +atTCSul9sQRnloCLSHRvNQj8XxTNyWls5Pg7HDeeUXaNRqloHUa4u6jd5WOyShPI +/nS+jnrWlRuFCynQf4kzI6eFuGtDVRSl94FWAH2l4OMrq7rYNtibn33TtOblt1tn +vgPg1mxPZW9otkdiOR0kD04ZF/lAQnURgtN9aQPJPCDWCVIsg/WqZpMTk2u6L5uu +6erYZNQqA+0PA52SB+ZXigs28rcHRt2qhbWMzj4Vvzd0jKTrvE8XAnqmFShmmPHy +kWEoveM+d2cdAuZUKZllpwL+UNhAJHnUtcuNiiFrMk2V+GEN/549VCZgIecrKjVr ++P8o+GTK/9QbBfvQlkyBQcTL6ExwItSGjXNv0VLKWoNoqciigl3O/IUjGRvdgDKJ +0pGwRpL5MT/xcWH68uotizMmx0TOHGwLWILJQ1ULQVWHYHqG0qCdmMN2GVlQvKoM +V8Y3DS8KN76iX4b6mCPo8fmkFREaazu/O5XG163rXrXI+gJtbcVvdPXFGUgSEaNC +MYe8/5Pb+RPMLS5XQnrXkG821YS3DSwlO57xFMeq74q4EW/mNvcfvUUiX0DUEFKG +TE/g3Q//JMPTwVYAiHAnW+gxd5a5SeSdQCIn0FhDLVIcfYPT1EYolHEL7K07a6B3 +VBYy9/4L4Qgyt9DTayqNbhmelU0fQjl5h/RSFM5opxUECGe928itrnFdamNFu7zQ +9neBS+KW1nBlpz7jaDBETS6iT+0Adv0h0jL0lJn5+XK4R3z9cU+Jnh9lH7sCtuiJ +s15eIG6r4hcfQcOVto6OEpmZtrYX7VKZh2cbHiRmhGN+yloR42II3bseVhVelrSD +gb4PxP5cV9jToTiK5e/ra1JvRcOgvRpxxzWUIQyRkecs7JGeRCo+grZYwhcm8rpu +fD77+Bk+6/FrGhOPiw9v+SdbVO4yHGso1AGBholiI9Lr5Px8ljAzws+r5hzaQdsv +RATlxJtUBzRW4yOxJSO7M3xJvKa3gtI10HzOsHoiFcbsoKt/Wt5sBGrbxI7CgZr1 +BNeQ3Vb8K21e2W+0qlkEpIfJ2hRc2zi5ZVBeT0qRVnSCN7OOi5Mi0OtRM+EmUG1k +CLlzKNqplW9nExc+cffi6agT3G9X+GOsHRA/ChSmGUC/xXBTyKClHfWcjBzvT/e0 +X90N45JrWlLNv+8KclC6xWveIm/8QZPRDRcSwtyGMtoVoEH/FDSHFF+wAToietVM +w2KI68CihPe4/8lLpcJ9x/Nq2l+hkBEx5hqtBwvG9R3g7QPUTivOqeo2DR07DVYA +h7tIBNenISIYCj5+jSiiFIMUiMVbmWSa53kyQe5tN08OD2ZW3/2uGUAAHOxx2TZu +GF/GQVh4ozPHQqDaXhKzzbYFnFC40JGDZDhgQ1FSZ1bSPESyIfD+xTj8uCqXz2gQ +ynA59Rt++IO2jjbnODYhYQGbIIUu0a/xpmBMfY7phLjpHR78HIoMDhO1n6eQv9qc +tvNYzVgufbGhsNOMOw3CvrHz+qoPnvFWUOwKgp01rEkAZqN8iA5iBWvgQEs/0c7/ +Pza1PC+d9vYS9MFBDEmzX7GMdbM+qOXBJ/evpg07JenkGvTlpvUg60aUZviqVRqo +mYHt0/5xTZCHBQH3kB/vnV+5/5IToJPvLnxbevS+4GA216tpGgA/OYu80yip+M2o +9q5y3XD+Qpa8b9V4MHEjM/NTQj249atDRDMsATZpTOM5ukw1+PmN6WHfiO4x9FWK ++EI6EmhZYZ8BRfBuAajwXKka54UpZiAau2fBdFcBENqEecKkDuZBwqe1Xib+1K8g +Zj+0Qd/i2pHYcmnotDzJIb+mY3J2qTJlj+u3O8pJUWzYKBZOnFrCMbSmUr/Xf3ao +K/P/9XoHXgRYA0bP/v+UzRev5mmlFnHnBe3nPXKgjHiP+331UUwUUlcYhhN8vmKi +Sh8K2XabAp0OwyvwcQ6B4UrrCu7xgWJR3eahuvjF0q2cCUMw21MFRaFqNdVotzPx +fhXAqB5Zq4036MjbdkyfuBqNM1VMhTgwPqEks35fdrKSdYN5pMSCXw+mUj0AxJOz +K6eUejRWiKqMXfsJpdekVdz8MyRiZ+O79VF2Wr1QLhswKNg+SRTP6ELbWP0QnAv9 +hV/+goFrzqKeWNlcewsFsj+iUDqXhb+QeK3Fs2fq/BEKqZ2iV+zFNEeXoy+JPCgv +rEh9nv6yRNAWo9D+tD/XR2rtZ61bYTTsEcfT+xoid3PnjTRWKma3pdYsiD4TKV3v +DGpBVIuMXyZ1HZ6qEU8kh8/nRsjsSwqo2vX41G0Ad7agTQRjlsg3sSmDEA/dXpy/ +vwX0R0RswySkR87yOVaMTDMUyADOLkwWGDU3WMN24Z9QmsHWrEQ81tMnWflk5ZQN +xTmlnFoYjqFrFUNBqDdr/hR5N2jNCkBqvdSNLJLsiduhXhB6eUvba8ZWhVynvpte +yU6ZejaDZDdzA6rRBGygIdIsgaexsi0wwcEKUJNlrn5i95eFiFtU5tVNzrLQ17be +bIMyJ0M8QM915hoNCGGma/LQ9hKKZG/nY6qS9xul/GOgnHunx1WazCOE9ZjK2Ig+ +QJNA4pVdbRXN54i3YiqIzM01pLzKZ6me12j4r+is4FVIkxDdQ9Dqk6y49Joj1ZGM +LADXHs1Aq/r+gQu1Kbl1dZ5xz+iZRG4RZn9iXNm9d770ZkAT3MIwFpw0IQIejv3B +2RU//rNLk0iEWQpy1od1IMo2cAQgMVTMjFYnS0iqsJKsm02s4dQyek8ru4sIdmPj +iULBKUaLHr9V5rNXDTbUlZyBZXsgdR5XglMhvKpEANQroT0UQSddrD3mOnxtwHkz +uMe6WAMcmdKiooZgEhQb8EHg2TVbHt6rsq7yH6mi2D8Z2omjai5+Aky0XOJfCKc+ +rolPlvEAqWyc6EqDA0scWH8n2y0tPhhYGfIXhNGbFbCdAieNZcx7xkDbbGoEvHs8 +1HiJTJStHX/fpp8G89+yw5Sm2TNnA5QrJF+V5E4DOYj0d+cGegUwAe2gmr0DxYhA +agP8S8rn+qPjGc2+trtIp0nCQX50/5d7lkH1hhsha4YRSMw6ReEETN66Nev6q5Dx +vOaT0jTRCHPTaVWCa5lNtg4APjXmFwyCmOLsPjuNfhJh8WKgjRK6dFXB/JAANZVq +jlL2Vn5ZusKE2VNeXiFDuP/ZxMh2XehF6JrYNn6SkGRQ55HjRXF+Oac04FZhTdjg +qN1AxyXZVUS7vNbZB2hCrfu+Z/t2rCHgKPTd/by/I22JcW4+x5Tp0I7BFNw+Nhsx +NFJESRf35El/lJ2AnAOYV7KWn/WEBfe3e4aIdxEvHLA5i+3GtRxJQiuvnkedMf5w +2D1zVQ7vRnryu+TyGKm+El0ebKbQKrQiEbflyO4tOrs4oBAH1x7KJWL2ONkcif69 +RSwcZAAKYdbuMkqq3FOozIxTkbYsve1aQNcKKzusdG+17hTxUg1AXbzSdr4SmNuZ +/VcUSp+luUKkSb+3HRXKq7/LlfRUgE2O6zDRjVvWt+Pcn+Wnmi/V3VjXGmPFMINT +ykdMzD/7DxXDtPG7s1oXRKN0Uz/aBeficciOnIz1k5eYrmxYB2zrinqCkeZ4yM2X +xobNEmb9PWS3EPUMVG4VjQpvClGqiUNwatprvVyPhpgZsWSsoePAI/ESVMA2AUXD +CqYhQ+mcKqSQOIf3EZJcD2dg8yI4+f2VjLAqtLFZ0XE5InbuFTJw8M5M9CedMC5W +uNDgrcNr0A+i4KPxsBpyglJmPKrMng9AqZkFmEcxJ+tryPnMwNh/t/+EUGt4c8xi +SG+ci3hkjN1VNAL4mI+SwIpiCH+nXIw4/wJPF4hDyLIvqXUtbhLBKv3RDmRgFRxE +jq6elTX0ewiaflTL7elR5Ijs0NdBG9je+gBCq9yVzx94y08OyHuVNMkLcK6ALXNp +IjZhNfQYS1PDJ6ZlyzVJ6ILLFNDnQQ8ShemD/ymQuTeGjey/ghWww8a9eDVdEeTS +1KtOE3z/bTdj7/U9LF0RjA/EQPmUkQCThqIBM8dbuMqJjeQv1Yst7gvZi8MfgWQe +4wivCoVS4bGDD9nb7kggOw7MScLRPoGZyoVGz1MbhI8/UusFEpDi9uD0mOFSAwbn +beNP2GGPurekkHwl6vHReRQvEaTLnYXjZpfzeyeAVD2bQ8H7rL+ICPfb44b8sxnf +E5e54+SWVgtwz0DePaRtOQgBHgnPcLvZm4W2EkLu4sB/Tj7mtRilL8FSRbzg5vcv +m8dfAaE7ZAbuL4WicPCeRsUcOKOiyNzdqyMXOXcm2mUOPtwNSEd7FSqgdc21e6gl +oKr/9oiPbiXl+5hIr9UOd1WxbDfhTWmfuDZ+UheCDkK8fkQVo4BaYGfnzF76HGCc +yRjLb6Vt9BcgQmjyIFhF8P7tQFpHc+hcNQ08oLa1s7hR/FXcMKzx3jLMQhKOi20z +/BZdTACVD5lyCJCRoTZ+bMaqKe7YqOfnmImJeWxHjNGfy/Uv5hOTPbfgWCqu2tSx +gEmHnYPDzjXb9WOWZhochKFbZBiWbwfmnT3M0Nkw/+uCcG1GzLRfj6+BGZWY6gFU +Nco2hOS2PK2rfX46zcO6OTkzUJvMQ+PiW993e0LAXZyTb2qm/o3bc1KYhqQm0CM2 +uGUsC4e4322aRDDp6J9bdfB63Tm6FkrS/Qs6F/3dUW1ovtw0gNgHU9pxwJXfHQN+ +4HTNFbctLv2Ew9HzQHNRRrjeT0SPVeSIkk3O1RlGaAAsoB1lkfBelVEDoKnJRCnl +eKg0fBj7Pt7mAIPpjhSaBO6AYIB0QvM0qBJBjlwaedJrQ9b9jU5WkTvLZCNihPoL +qNtz3Ui+6Tme/1ScySpMKDNlJLIHUxxbeDsHA2U6TRLEBDpbZFDp06s4HoBlu2rH +3AxB/SINZCyNe0EoQiLGBopYR4dlsoYdyboyzOqfyZ1d3yvSfnfQrYZXohHURVZl +q2dAP5uAuen1HDxTt03YxDQW/4VS48dWuf5ehi8c5j9sd7q5yqYScxstUXMmcId1 +R3Btym2qSrJd6iG448DbbWICFQtLBOYDC0HXVkmcCEK453+f3mYz57pHZgCqJZ/6 +anC5+2Pon9jp04uLlmpBIOKgniIWPisbfxng5OAIFfl9f5ZsGciZdJI1sXyuknc7 +O2o3USK2o+487ZG8R5XGl7EifKIgL/yiYNVJNu29EIbz2XR3mbwpV6NfJOnrSAZD +ebSR3Y6NEhiYikWGaleO4U4qoap5EqQ5qoRKXvGXLJTSGweVSa5yVwL4nShewtyz +YgL1oLYMhbA17cOPdwh9fTpZdh/YC2bNBGDaoszw4T5bHOZK1o9ybHW5Ad/aNy0n +dy3El6ofhJF++yj91JIbzzF1TDUzTBYPua2WYfiZJaCuGfDQNJC1douc7bwjKnIC +MTuGOWUhJNIN3bqajI6orsLjnVTulv/VlcJCrylP8nPGC3vTFbJZkcLukTnNtVkR +M9uJucltvst6DhCirQRHp8FZXmZQhF8D4sXwhKNxJe5cGobbC9qAqAPoHdJHliDP +zCinfHT0iVWx2UGWNh0Gmq303Dg2HkoBYEFxf2rjm9FhTed6DsWhepNMx8eMUA0l +MQ5lEc7qB1FuU+rag+81DevN2eXCs0XrjY6/+qmBr/kIt51SCJqVg1wOVmUHxZbg +Zbdx4GTc5tm3nuhfuv6ngDXPPqEagkLWtRsMvJbMNzzKF9/8fwq1SQPosxztjVHw +zQ2wFReQ13Qn0BgRZ+/UV3hw3jDHWFvLurL1PSD3b4jYrP0QO+ujV9o64b7J3UiV +vS/OkQ83Z3Z5U5QGHPYEv3dpm2JG9mwVrEZkp1FB3BSMZWFQWIL0ZDmXsTIjN0JV +PDyb/1v82VOdz5vTHb6W5c3EPomXVl2QpctGoMtmP2qN2zXM73Q5LdMGcc5kXe4F +KxxqZ2Vc/hvXdlNdBeFuzoqHOau0TmUAXEJiWNPck7nWW1tvdnNQUHbp6FvbxGK/ +WHYObptj81cesbqWpsVrCGTip8BKcOVSpnOEwQn2FB3zhplStdsyGgVlDcvtfvjT +8KGXfRz+7PjTe2Blc1bMl8givWiVSPCK3NEcwR3R4Vd9J20NW9t1IF1mff+53z16 +Jmb0IIwgv/UQn5poXDVmhp+6ZtDHBpNrc4rzE4ZsquhTolU2FmDHd9gJluDJ3ZKW +/SHQ8CoU+2S6OL2Pbfsy8exi8zbzw4ntHOxA9kDn9YgAlnRJ6kRY6h8OuNl/PZ+h +0t/XbXzGp4nHMbLJWNk+Sf8cH8v0wdWnf8TCyyITvlp7V62x3510pfk3iebDG4rY +AYxsLLEj2x/AnuzDGCx5dlVhbrVjrd0BoBMEyXPHnk6hdZVB+H0EbFN0bFAD24t3 +lUbF8j0M8sFuuOmpoRxJPxGyw6YKf4d47PY1zb0IaQ1YfWTBGUjPOIX4f1x0MEDf +qNnw6/HVHQCarIdic04a05VLpjbsXfxJupf74MQU6WD+1Ry6rkzWPo9a3kJpKBSP +UGLR1ZPNAritejaQfYgL7oO7fmh6poZOVbV5XnCVoLtLUQB50A84Vs4M4ZaME1kz +eK0XinZ7wddOoRfftaNJvu7teG0KmUMLOP35k7zzGblIuFsR9iNySZVkkkTItloA +OR6ZSdoV6t0rxewMt1/E0DRSPlWV+qK9GTP6hEeXf0ZCmZIw/5CfQGLv+lXMur2b +qF0ILRbF/Virpfgq9VTqoJ+vFmrff8ltAgXcIFuPKyps96OLHIEXaz04OUL72w/f +VsmV6kc20AJgPjS+76GAxcoHihovokPJ9tn4CqGeOO08jRoh9RB6KYYHyXInxfZ+ +4NpvHpHOD7QtICXAQ1GLh9JkPVCF843DBhnfFiNiwFxL08MgfwobiRBVrF9uEwnW +OSNOKmrM1pe+PxUpP+J0/gf7dEQ7HQUcHiphS93jVlLgjF49EwDJybhOORuM3k8m +em17FntO4dFGR/V4eNF06RGWJZE9paFHlYRXdRM5sNlV6RxMns4BoXXe0UK4Dd7Y +42R9MkI6I9tVT6UUahAryZpAU3nmXZVYgPm+KQwYl19e0aECe7iofwfCn/RAmzbi +iiN3PpXK/ONJ6wQkQZ5tks3tFoCyUkLoizkhys+QtziMTjQriuegJzdrCTluyY8E +SdJcwF+SSwthOSSg4JdaAz80a0HhJbf8navOv0yYeaXYi43D4P1D/K5uSEyDzIaX +xHJsu/bugcoA3VowLDAwdUEiWHKCeTvYScJytzubOy2DhuFZ3unI9GN/aXqTQ4+b +rdQNUZ+Wg7rabj1Qprm8drm8vV4GdAxsDyG6l8MsdDv9c6F0ryFVI7Q4GdZbYqaV +tXJpm6NFfwsdAkizxvXY9UG+Io3NQsO/bl+JBXoggTWZZBXiq0trTq+tFZ+VP7UN +0E+ldfIGc/kHo9c0sJxZcHb8PcBhU4FenZaDHuDaWVWse1hFillddesd1A1JBwx+ +r/5Fhvi274JOLe2c5aTy8EDrZxVvpzVTan7z+J97PcnwAr/n7tLuu9MsgIH09c4Q +JqO8WatI1OCgZighvMCKRsDVB26qzs0lUWMirAdUSTbHVkRWqaOFe5ep7kupEAri +oSXxXsTqluuOShrzzrqScC5fQnnRmAVRm7u2K+nkLWiJvAthG3rmvCexwQhjlF9s +iJkgpJHWMTVoBLaBkIT3oLZGQ8adIBx/nfsD+sWPDD/ZaZzz4DTatzJwsDAIV0Zd +cVeuVygQ54S8AA2QuIvFfq8VBVjx/3bd0hzRXx/1VOyCDQ7bAHcp6akXrs/h3wCs +I97eWdnKo2fwev/XPB4OIYk6WoUxBAzXzOtFGUhiHx/EqU7z6/AV0hNXzGTo/UrM +/KvATnCUXH6/VTeLJRIToCCacim2+1Rj/pN931vVj9est+dBAGCydUBzfWPk16iK +ruFXJO8yB42p0Kf0HV4Vz8Fjim/xH/QrMGqUA9tfx9P2/xMo6BqX20Fl6XoxvPRb +UnrcJx7l5LK6HcEm2FZuMj8gZI6UxlIa7MejVNu/jgFMLohPuPN+xlLcViGKKWV5 +FlLPz3rvhm2N0+BZKhtGi3f1Bob2jKkxLytOzvOzMe+VieIWdLeFRQ1SwFzdzJMW +ugmcELmCffw6isiHyE61w6GbDoHWgrtq/kdUdZxMZ5/bRMO3NfyDsS0jNy6RNE7p +DJL/M5Fl675B9k0ZPemKyYe9boPwdxBSkwbfUPxtgO1iKXWjVBZ1Fu5v3b2SDDvP +XDwQB8V/8JUIdB2UYax/D+vN7ijSniji+S5SSXr2NXNMpIfk9IYxyNI71qVYcwBD +MCsk3TvKOiV/3US7GZEj1vqKNA/bTKvsgCoP80Kp1MRUkf27+u5i+hIbt3txCUY8 +/P4F6rYVn78T81oIQtI8VF4HXXpEeC6MPjWdbWy8KO4ILHahxd7tn3W9JszZfnJt +8ztRK/srQdk60JavHO2dY+9ItAQZhrjjrCbquGjBcS60DB51wQze169SSKM/YNx9 +FbRoNZb8wshw2+GJsvOnT+KqTTy8QSMnSm85mSa0C5oELDKeBAYkVVsKUdf3i5Fc +HBF1HLHaQKHTtnMYnN3h60GRbgKW6npH0+Gdff1+OzWegOZtcxa3+cHBzELYQTqr +yRFFNQOlwDIj9iRC4e6XNNZjACpocOoWzpkLICk6fX5HAt4rUFEsn0s5F4I990gT +MhDHyulftKsU2JXcnLgJ0W5xKcJGpfKkeYiLjzs+RKg8SXsDkrNDmqSCdHf6Uq+9 +18G4VRGj7TM8BxLPB/rFckyMcRFLoIqoHptj0GIb9gm8ym3fHYhM+47f8a3PiOmh +I+A63ado8a4GApaEm1LTSDs1yxj2NR6/cwuBdITEejxQG1YSAl3ydcqGSBgoTS6q +IL47+Q0EUxvrAeAfFzurpTOqcbGvl0vEn0VUOE160MRU8wVekcMteyMXguy4ull5 +jYJ4KXY9soU0ZUmLep25cJVXkRtvyvGaK4fSqLH06PuU7AmvxfyTafUflqHiG4Pz +C+WIEC/imVmVzGGxcfYPJV/ESamcY9Ub7vPXePEuHy/iLHuwu7wUY2cKz3Ndimot +wXMe+XCRfFz4IdNIHWg50nnW4uqqOOwlkYKiIkPlviBRws8gU0JB3Er/wCAgfOBc +JtGr4uDUKdEmNHcDboWjBAczdBLla4uI/l3wCq0Qk1G8y5XgIw+MdySgETF65Dgw +m5pneAiUh3JbJGDjglhaul2Zn/4xCAD7OuOJwXB8oE6hE/04lwIgjGqa4AVOWUcj +QuC6qTgep0TXT/Abv9xFHP1HsDZ04yZtyEOyuJEH0iVXYgoQI5ozWs1BYm+mczFn +fHPhLCuZcRz51LGQupHkggZxeWWktIw/2ImV2O1SEHdECcBTeKJcVcODEge/Dw0w +xP9tco0xHMwLWVAJek+IFEhkOjdvIEY67ZpmakKzi7oDgrtwcJNH+30ROpteL9c2 +cIaPhbmpN/HwuD6WhmXR7SGfmX+VHDP4wJwSG3vcUNhem4vKMW3PzKlS/6XrWHJz +pE1wSbLTAkZCW17t9r+v6duCBvJa6gGu9F4OPTIsT5k8BwrXWrBRJu8Od/J4B1Gz +RYvttBrlfF2yYAh93LLhDRRV9y2Lo2FXdf0TF3tqJri8WQwoQLac8wbFuQbgpFJs +uZw4ZyHb3z/kXFuWMHceKaEqm/VrTy4K06Sq/8DcrfsugqIaC4xYfSEm2GHzpCrU +6WRlgxPSTOop3DcXy9GQefgEFqcJeTaTFj3Ur2XDsDTlIK/C0b1TITYUtdV4ZsxK +Rc3MAqKFD8iA9qUaqy8HnK/BNT4qU3O8Oh0nB5PLVYFU8K5t26RecnkHb/JANrjL +t8rVRWHg+LKfS4HP3jcbrGwk4jK0RSfHfezDOOvd4FnVf+8xAlDBo/C6uSUTL7VF +HmNzV71rqBQdEofEhjyBYqshGMVLu8ZPnxR9XJJoVoulUm0+vyH9TI+QfSuHWPUc +vx44pUv9sNpEMidE8j5vpPCPGyYqPikl0nbfdr3K1ooBCTy7SM5QVE6Yu9GwUGUY +t6lvh9MhpoNX+VsrUFfRvohUdcoIJzyhm2dgLPfTGLlF6QaMAABrNHvhC0NN1VGl +UNifZL1CPRQT3YV7j4dTc+m9dkVKL2G2eylo0Q98fy4rPZB0OOvZQgRfsq5+RbpZ +Pqqcu9nBOrwHToPu+ss1eU3PYkf4FOQgBBaFVqz/3jv1tnYEf7kLOEafSIHwS65/ +CEsGRsLEphZXNA9xvwVmFISmKc2FO1hVceFz037syhS3eP2U4COBRDJp3905Oiy3 +MtseEc5Go4xH3VYJfeo37/v5j2GdXWWV3dINPjxfuNxFdlFHwuE7i0Efme+FT8D5 +mWFjSWAQkds2bFHZNMakGjBW1UIOgoXe9esbFTNSKse2o4nYMvjA0Ux+yfpfwoBy +OJVqcf+2MJigUF79U9N+3RVEbYH3dIcVPY0jk73e0+tZqt5XQrUBd9GFlW7w6aDA +YVBP847g+URzcRNLFxOyatH7qChbRZwYpWVsBBs5iMo+B2FA7adhAYmXnMKDfUX/ +QOzNu1CGN4oKWszsodDqXmODpB5dSSA24nDmhMC54ZQF32cmztnn2uPY63dqlsFH +1mp6uRRfE2DJG1VWEO3MNk5EQK9Ssx8ym30HQKYl4NGtSfIMLCNS4gIyhxmY815E +y6psi25e0V5m3vhS//nm8CLyeMKf2EwximV2CsnSlMpsWLsM6XtMW3KqdEjLjOTd +IShOvWgriFlhUtN3cA4/ON1KIrBV8Z74lg7kj1pCQeIqLSxntoICW/mNgh5dINRo +GK91OKT1sj8/nV6fkGgJc4dEZeqt0MlVXo+SHBdJf2UM4kTmn41qJyBsXMKtzwf0 +61hsxHiJBrCtjmoajNWUVTLUZuRFx+deR75YbBPwzGPuegkM6WNHSLYaIC+sT9bp +wPVe01Hip0FfQUrQ3VG+5pfcJSJ0GipkNEpVHDIouhHVn5FNv6d0ixYso4GnS1Mb +woIvHjZ3wrl98FSZwDRLZcdAxx5Q+mbYAp1dgbUjRijaYLW6OX/oU0/onQkOaOHf +3mg1FLMzwSFiU/4LLSqjCgwKqOzQTeQv7tLiNmzw/uq559auIu7JLeF1js2hl3P6 +2oGmLeYLrjfFPIfudhMy76AVfuJBLrlW+uck4Q6yQWMur+XczkS6iibjNl6BhbCK +DO8GQi5bB1cQhfd3tY3EFxdqQD+bFiNHPnLnyaOnQnKL9wtn72xpJUCUiHtzhHwU +iEvZ9h7gWwOqgFceCR3P21ILfe3GotMb4Mw6H+q6qcHd8JbgRCf9aZ8jJyya8PHO +2xMzQ8jg5xbAxCjMekSE7ckKW6p7XBPurCNrWUV6GjcizmJgCXY1/ws7HHqru4Oc +RlNNl/UKsU9LBockdA4eR+ogxAOgE3HRnitagAPS/vwL2Kc7b1RPhrWuhY9pQWkm +VAExsAHMFgzi6fzWB5Ls1GKmwS9JCaSIhXqgbAjy482IC6brq56eiWeU+9MC0izO +CEG2kP/jTvrlTMJ4eHp+PJBlPMNW6ujajSNTrfLsJvYBQKODBP4hq2v6FgK9yLqo +HyRrauDoWTDCqxCfg50WZoZG8z8H2p/WJ9BzCrG7Nd60L63S9Us0lQRFjCRLipin +boLUum3dvh/C5INbivqrB3JB211Jurj5HHEilMRZrzxQ+QSaT0cqDXlDpf0a9tj4 +l/Ed0f/MUk8KrECBNYFmQtvi+8aRHVLrq771wqF1HF3BTyIgU3YXKgdhSDlSZnHV +m4CMQ95cB5CIqlvSleDUQzc4GOLLxRFY2pzwuOUC5mkx5zQ5d8Xfbp30Kj3hs3op +XeYIWrhFt+wZRaKGVZYKpFqrFPaPAZJu3VvkO/vG/RTh5QGh0GMiSlRtNSZExrxg +G5lM/dPizbZx+zB2xMD5mgCjDg0w2e99zjaw6573HLKXDXfnsI6IJQUzcu0Ly8yl +h9A59NdigU7FLrtU7Bzb5dUUMuOEU3AwRdTAtlsXx5+sZniKkBFnMZWID7ic+XWF +gm8gV2wjcjpotZp407erMD9mtC9bZjUcF3HFn9TkPvmFN7+YThGHNg6TA0ctglrz +FTNcjMk+BXzl3W4s+CZxnwEJGdFsidWlJVEkA2KEW+EmcIoMLCYl2QRXeMKhbT4u +CVdepr3PhrRPaqipezpP7dJkbYrcx0I8dKp5KGQv2IPyl6HvUWqiBRqq2icKXXKl +oB14+l/qBXaoGQtJ9bYkv+t2IC9CfHklAiGHuglL1zrPL4uISoefO2GdyJBIcKdJ +YNn4WXKiHNpqLVgZq9qfdx/xWK7ruqEDUV5wFuH/0G/1opYKdR8PBcayPwyG8gIN +EaeUUxymyF8tSB5arzHuAfM9ZKJAhUagzBTkypN3ZYgw2wKoWUvMlQbAMSQEO8dy +xdIwn/Pdo8Mr0nyApKPIHijYk66moN/UWBcVNz69rQFexBrAVy4TJLsNzF8K37Pl +UBJiI2/Wfr3PY6NP7rfXE09Cohwt94My3HFHbL2772M/z+xetJrQd9NHDHUdHYzg +ofhCfGTbJrE+Rwq3yrddTJJmExMP6eXNNQiKKxq9zbCWvj5t0qUHk+JMONly3xk7 +zDzyN5z61V7CSNjDWKGs+OY39ZANKZbsz4Q9JUJtZTCCY5Lu28RoCK/dJPorr5HH +9xgGr2gOK4ohxQBzgPusRnHNnYiFHgTJtiEVh0WSOlHl6p+h4li+ewU4VxMCwrIh +uSZ9e+CKAqnJuw0u2RaBfjG1xfzP3ffbPLSKgtxmbMZesqeUbAMO2v6iSaJBghwN +WqMACYtBw1Jzv99ubrkOEHw58hMk8VV7pYJz0DOkkUJP50cygbFz628qP+p60Rxc +2TVdnlD+oBvjwAe42Q+2FPUiWeFt7nq4Yg01pSDn/45ntzDxLoe8mcBo7S9PVs77 +uLLKSegk311u37Os0qK4wDA0vQLuqowbcMf3hH/VQTI9BBXnTQd6ECso7PKMhgd1 +vDt+/kGwldpj5spz18SjmJrd9Mdpv1euKacMwILs1CYojiZKp/zj4VDkv0gzwrU8 +eWolz2xVo4FtdscvWdO8ln2AD1wc3XodLJYsWaybLk16abaJUFDuIOfXd+N6QfQJ +8WUb5wa1v4wiyKddHYn1zQhdOcfjkLuPfSaj5yeefiWXRIa0Heh/UgxAdMzTN1W2 +TXTCYAIzNljpOmY0PFKFekQnWOgjhE0lgEEOkKUlxYKs3EVG9zLgEoKAsWWifN2h +/n96iT/IP38UFD1KmBakJwUDNdppJ15mcSmzEScZS9ecwqIINSZMBBmHj+c8pO07 +OkOyUBzwJQQMvbprY6tYBvlPRaLiTfKIXOt+8JIRP7gghceJynWCtwV9/aUDh9mc +kvoXp5Y99IxWG159ijZaNwoTsPLjToP7kfeRLZd2DkzNX+ecCsjZuKu4BusDg2WG +Bn5oVxt83UrF9LZvXW0VaegWES7ZCdoSjezQmBzDHtnmfoMIkr5PM1527atgHZAh +f0SxM+GH2593wVjDlreaPBUmNvZ6drGscMnh7hVy/LDJrjYKOY2e0P4+5uSQ5W9B +v6UGPEdzbVXyZF5qAvgkOKAWb675dM+O1PZcPqOEIjW+Fm6K9kmeCnTT3g27CkHn +qXh6iPnljzSbNr0hIuRB7V3toa00q91S3EWRuswhbvYNO56UZQUMIYuHff8m+St7 +eo9IL62WBd2kX3jEm9/cIKkfa01UBZ0yvCA2r/kxfx8AXFKF6uTSLyQgab2MVcqw +CTLUYhpSttGJQrgOhnmwQ5c+a0D+72kExkMUv7sHSZ1dEL5edWBLwpiupQydCByl +U/88QwVdQ8XN9nNGqxcNsF3DEoeVj+bedbBNwJbympAT+uLZZvUlzhMvAW/R5IXp +bINhxc4ujDE/f5d78Y9EAvKFjJNwUAujDNx7z3mIlpo1ckCtBZfbmDDpH4ZlnggP +LQCM2qaVGo6h+1aWrwYoNjbxmp8aMmTfkh6M0ylgnaDx2jGbf1TkduKznV1HtBcm +oeMqoF5mPmvJJ3lImTHUCWdmOMYtBDlIlzzRexUXL0RdztcObSLO/7grzQFuVIFL +mPwPA9c63VIiyYToShIHJpkZKLnId19GhrTGUlikReo8m2s8PFSFkQkWfVRJaioG +PkqDF0s1Hoo2k5GtlQ0NSxAyPsLRVLhmtu48T+u7oPB4QgOOiWddy/sNxIW/xU1K +zNI3pO+rPt7ED2hXII3aOkSoQfG/6DAOar68ANr2vMkVDz6MMZbUPHwxfG6FqfZp +ycMSal4Utds3caZUqp/UVjC4I64AcTtJjZcAU/dxB4E8ZzomuheHkowXxuqHZmvn +BzDViZnOLhEWt7nNKyLgp8owsKXw6pKJRcuU8CbrCN7Gh++dFJTcQJU35/WnVmB0 +25/gH9bwHaFbDW5Lo3HOCYqvxgjRrc+pE7mwOgQe29A62A5NsQUG9ZqVwPYgR1hl +mzdfXDkdGIGk/MJG6qLtNkwjjCZpeVV7mqg5USmwPL4jQcL868CTXODrp8r4gwkb +f+T+KPFQ3dEPXbvvM1wFBIyj8OuhD2nnI6PbRpLlZdfelOw2xtLs2IX+/JeBfxbC +KWYL1RokPMsDwxSBpvFQtwQca20HWjIhxhK/2tCUsEaam2eGWQVYNLqhuedSqme7 +ij+Z/Mq/LrDWodvakyGDJX1SnU89NVBWdCHy5wgH232sEe24j7G0wuhaPKDIM0O4 +4Qel0Gm98huTz2bjjXEqCHn23na67m5CZMTQxPF+WpBkZATk++9CqtWSV47eMR6Q +hNfrzmTGY2ObV4A+O+JvOi1+ymRp95d6kapHLvA+9hIpHCei2aAvBI6yUgSS9pe2 +3unTlkdTdPj5EA82iiOl2LOxzH1srQi1qJ1q2jqnnqhkI3OLXrgp4zL1Z4M5IA3I +aWQuGBFxeEVKg+zJNuzYqzty7gnzVQ+P7caFh/0ue4tOrke5yVJdTJwiov4tiJ05 +MVWSysGJWLvMi77oJIdD0HYYmFKK/s/jE1m7srvoXUllcIyC7V29pJAZPwzC3UG8 +9hnZ/UXYmC1+thtkXGE5FVvTILc+f7tXGTYKR3sOVZNE0/ET5XDxcxlzU4PgTi1h +uPau47XcmwMxyNULFjOMZwBE4C1/ocpjPCwu+jaGxSuw5XZuWrTGZpl1ayKWAub0 +DLgDncBkP+uBS1wGGRbPRHPObbLM/oHAFwk0VmHfLk9zVgUA6NerLtV3fd+31uVO +sVrMHf0+e7jc81gINhlanNiv8+lcEjp1OhdF+ShR0YnXPxX80P7QiYxwA8KhtJel +K6FupG0M5KGWndSR3O+Ww/U4rnyMoDOW+YPdWA5z5zfku1pujjMrFQ1pzdsuwiAx +Bk6q/c1xPqxniE6DOuzHysV4oUdszix+pzpsCmCVApshStFxDj7JndsvtQzVHEge +UnOq//nVMqm44Xn5KI+sjhB1/OncspAJZCEDkyZ9EGpIS0BQcNQk4GLSXtA2JlBL +FT88W5wy9AFLav309PuAP3v6qoTHAmxg33x3rCimqiC9c9CalriIEMPS/1thkTPP +bQlVrlp+gVGP1NOk7DwEjzdxJ+QFr+lgOQYV/Ry9laknFSoNJyZHOo6plK5/qsf8 +3mL9z1rBmHtHKoLq0D0JEyDbgXeldH6N2SlTOQtNLIsrf7xxHUO5az5xPMuPYY9c +CkVPSGChuaco5jPp+BMEx9q1nTeF8CulLekbAbiRQIqQrfMIiLy086BjTLgTXL7G +ynCIaA+I2H4IRdTMuG5Jwv5wlR3956BRIyiwabrnlvemJsU0dXYJkN9OjR5z1Ys3 +RzqST6m5BWemc3DeTbt1fTWZKuBLz06Gh0H+1jY2HntXZnU8zpPqGAKWXje4hqjv +5MIoxYYMV2hdnVZbkbWT9UlEDy/S0yfWYbMHJbgTY4FIm51xYI3EE/nGpQjkwUCu +ks0/ENN1yLfisYpnb+JGP3iKMdzbtSsrcBrqXKvtKI589voX8M/+scnK/ICwBBEI +OAxUC2OgMAzlEEh7DydV/MMNOpZf+4965PY+FqJLL1AnGCfOr8uKBm61EzCG0RJ3 +mozk0PxPWddrdpBvSol10vZ5JBR6XUX8o7ouIyXgbZLur8TZP6NGt84tR6eomyCh +uLI5A9AYO+mCX89iK3of10vegQg6OkzFXBYSaVJ6VtSdL42rc71OZ4Up9I4hhy8z +FJKGkl7fJAJXn4qVmW0Qx0Q3D5D7EihEbesR6tTLzsIEDNnCXtlF8EOqvag/LXlO +vJ5eWkRgnSqI3COFClS03lPG9VhpC83U+mSYrmAn6OVZVMAMTR9dD8ApcmR0uiuT +Th+4GH88DTdVlA1KdanaL3YhxiqppU08RgQU/SQOFMFuzAsMWnxxKiN+lair6/R6 +miBzgsiTafis3/sK8KBxV/OJ0NKA2ea3K5YoNSWNSdbKHksQ4unqxp0ioWNE5Rw2 +RPB6gkXB42sqmUB8pfArqmcUzvEmjOufNu+wqhgHTo8inEqKRoeakYxO88Cv3R7I +V+UQDczo9nzj7bW9ScP021hKt7aS4TkdeuKzgAdGn2NY1ubhu6rbBJtCvlpoQG9I +NKCxVEYUBbskS0TquIkzfQjhB7NX6R04JWOJ+XWVRvB2vijLbhTXIxO9whd1vTGm +v2vcFC0A1lt7maXvdqSsWuFNuXual3nRS/ihAJqg76R21Vg1XQF5eGMCJB0hxlsg +IV3XiX05syKT8Nq2Zil31iuH04HKqJcDY1Oxn1f9JWOWBhcjtJEjdQI4UZBl/r3I +AW/XPKeuZg0Kh7w5+kxflpqqAhtYINW2qOdoWHBUmHoFzSDh0rhexMXZTsCFDnfW +5SVVDIoT9bcShMFEavVfHKbs9KAT9QVSsNwTaXiE+Cyf3G67Q4mvq8bc4h7/D4O+ +ezgIprI4OpLnEpOSxqsvpWIDx72HcS8BAjYubQ7n6z+rMIJCDBFr1R4501CMOl21 +xC9S/8CqlTSrrfB/y4q3KlrnL8LneEBG+pKTqHO0iNpYfDfKzerpnZXzkh5ZwhIw +4tVet0IUC2yuJdpx+kxIS1QFpm7k/TL6OklzBqGpCK61xJ7bjwnaSatSfayLprsi +pENjPobkj46i7iH7cXf6H7qReCN5hiU2JUItwB3iZDRjbu/Qy+FOzhUmOz192cwJ +LZTDxmc2yCpC1Dm9r5X1CYVGfLTT+oWH5wi2W6B/Z2Q2k0k+qlm72c1eiZTuIarW +HG7PPS65ttrNkRS2NR3qrT05tTxmpxw8DXrOClgFIfTA68maD0gCHTFheEUQOlcx +cssFlNx+wpSkoU8B8rm6LpVIDPrbPfgz7cpUwAGlyJZt5dWm7MOURNDleKnLTQVU +g88sqAJ8yWZqfb3gii7L7UxmqbZsaxGJaOIq3K+pRxb3RGa1ejvp21uaBBNzriQ3 +sgI71ajYAyVsPkRoYc6c1Hg7QiokF4B2GUgEApYP63IUBcFSFc1k0nMqTRNyDhD/ +WKxu2FYh/WyS4MdXES9bj3Lh1OwW2BF/2ofaByWGQBhRzCjw0wclONh7arvBw2qs +J7zvLcoO+v+tjbTNhW1FWSpf2kmgC+Bb2JgDJFb5GLV0lsdaKkTEWgqlyO/qsy9R +a8eDdzFDnhiGR0ojnckfcpV7+bq6WX9UN1T7hr1pESwaG2P4Ei4p9ildNK482mba +HxQxuZRYSjClH51FX3Ov8+iDKL+rsexKcUBmmYFuKYmtwzq1D7TcTrkA4aaMCVZ0 +Xz7CDAyvTSrTGG//rpIfPJv90R+METygxumvUcfGqDMbrkC82vDu4RhQ+cWXLoG6 +70/oIs/ES/+SOBBhJNRJ4p1VXMZsMUq4JGdBSZxXr3Ti0DTbOfjfAwh2uUocDI28 +twFmwq7rLp2nD0CVLG496unQj097Gg1vJe668al+roOzMOq9KVkK4ovAfVQim822 +f23MG44KkuYRMLstpuiMU8SpDk+oUZNEqxsYm/1Wgl3pbBs5WCcHsXZrQrYYWDm4 +VGVgPPyTEBh+mM7Jq0EscVNy4a2Yx2a1X9jwiCgsQpIgoSqp12OaXIOGXd+Llb9R +V1+BlP9PpPeZvnz6NGuaSAmUfBZXSWQ3ZVPFfq6NRBKnSnsq7YI6f7BTGPBqWVPV +HgLaFqxzPoRxIlSYO97FvuL6nA+FKoFqjsyghwYDqsmd/llwLPcQIakPPXz6FyPc +uURatZEOhek9MveiEPD+cXljqEFMaQyQopRIRLfqdEg1InQjxA/voNCjLsnhRaqQ +FyMUi1HTwFrVzUMXxumtB5HqtOlrwwtSKwTkbx/1DruWsdMfPJ8McSvYn155TfB4 +i58NqawQ9bcUK2kbubJV+qwQd5InC40n4QnXj2hOFSo6Sz3oMk/Qm1ZV7/q2gEkj +Va0ev5Q0nAdMJRX5uFkm/+scr1YOcGxNL2ml6yPINVXJrgoE225XJ959aEnvTsoD +zXG5AYAb3pntKxMHJamwixFb99bGaalKhGCOQD0mHp8trRkMl/gK2wMIGaFCgwro ++LvLqXTkbalrLheeETIxXT1wt7qoPiEuwzPU82ybRQzHVAhOSJ5cgRtXlIe5lGyF +7s0dmlCmF2UmeIV2UJKUtQ2CXQcn1+v5T/dOjnH34amkJnVdjWnib5YQhFixLbtf +UI6uYjObNsY02nHF8d2/upnBJda/rMuwfG4MFfHoPkJsmjpIQhAyVfy47r1rPW3L +fRzNryf44953GfZFkWmYJ8nnQfKs47Qbt/h4OuSXjOvsz2brDbz3jb7D/XnRyOmQ +siux4DRqBgoaMCo4sIR4Yfb75xadkgfvTuRvf+t0CBe4MdxOOGbpq2c40T1tKfyq +YxWjRad4iD27jauQiqw35Dnk4iE/X0dG+FQyDYWZtvst5dB8rCZ5FF6mNXACya22 +hgHAjahWvTVfOb7BR/JcJutVLbsSnROa7R8VgZvAnprTe6b0Ud43iS/axpqt+dPz +vkAiN2BNg0c/xCwYq8MVbkak6Z6m//wbyqLSBanV98EtBIcV9f7eTIAOVm//PPyc +ZMdld51DdN3V5RGcv1qcynuRiU5vVgX8ffSYSXZqYCcCDhZPErM4/ziW4Q7cSe2E +eLj4mafPJQCFHaFlgK8tII4f/B11NX+FcIuL1lZU3ZgRqW+9qFJlDDQ1RP4UHZOB +oJgwZMCgEiSXlxeqjvdKFLKIhOZ8+w9SwtJgbpg4JGxShWHy/LDod561ggff4AB6 +2BqYVkSBHAj+EnLKnQUm/qulxWkSV960iGOPW47x5+aspda5K/zfD1dv51IvNUxF +dZzBs0gyab+iq42ei7AyJJ+0AJcfTsiQugSw2CPI3FROLT4ALb7o9FlGm4MXNNJD +7cdyM4WZruntRDvUqhWQATRgbj2NCTbWd5JFFEtZB9jkp/qEXZWyudWMKYxm+OcR +fRNl7T8LsUhcg5whyYBswwisG17Hlwq5xYegF/Sauz/r+xLlJ4eZuURTk/MBe/gF +Re/lhukHQMr+YRorxztLNTeHF75CUTpa9yNRuvoc1EFhakDTxQkddHxqu4g7nKi6 +CLtx3xZgd+aWT/itWddH6On+DiJPNMhLMaBT0j0OPrPTo8sg8e6tMTBm4z4si6Ne +WM33Uh+KpOTYMqqVf3bUy1uxllJjBSJb9k3pDelnFl5KXK21NN2cZ9+fpTW3Jbfb +wMUn/2BGmlPHrvJ7GkQIYtx52b5rbc/LGCK7aNcDLqb3bE4fjQX0NfGfEm9qnSeI +EHRvvM6Kz9GFxws5rP5rh2FBsto7RNsLsANUoPPM2J+17XmzPj8IZX5EXx3Z3rnC +aL8SNy58TV02+k89t6nvVr2Jlyky6++KP1StPAZ6aqfmLiE2yHM1usPfqGJ435oy +OgR5QHW+kv1hCCpTX25ysPOd2dBII5UNrTLu3VFf7Y5hgZbBNY6HmfFFDtp1Zij2 +1wlCY9KTzimkf7TYajuF9+3mep6VlYqBsyK8I476ZvzF2X/48MetxRyZuyXIIcss +3/jVMgBDCmbqR4zUpKmHQhj8v6EaxmzVlxJ5ONk99uNGqJSPRzpaK48hUFgQAiFr +w6YHKkMlTghOa64AMnYUwQy42xzODmPCRyCsqGyf1YH3AcEXKJJQPIm+1nx3DEqz ++vfEHHHfSKaLMv/1A/j0oxTeqSdONofZu43GOQqbhyeKOdP9JWnXqNpEyD7tRt+M +/WS2ieAdoPusLYmxQnmpztrYB/hXYSNelcg/uZVoRFOHvOJqXw4bhg2nSVX1BzRD +ORjL4yQSUh9bmleQn7L5/TMgEeGLIwFazVIs359dVxMzfseknugGFPIw0sdISjnd +oNoQK5+o+R0o9rjCvZKxrVlPM4RSbCue4rBMiBaVp2onZ500mtYYZ2YCX+Qp1Ds8 +iC3Azar9MfetY+xJ+NtE600xfM5TM9dQrsE8sy7bLoLPpEAbdoJ0DrZesTkmweCU +TwTb5qsBa76ZgzcolM+ylO/WTeVP6Sy8Ti0TzG+2nxJSvel5rXtpHOS8XW5SZGxf +iQhUiQRcUkFpmY2THfzjH7G//TNl9l16MKKrce2BmE6YVr+DyiQGWcFqVLeBWhoz +gQcnJiGhmVDuXaMRf27JYRhYmY21SGpEUeunQMiIR4QlzYrFwOkaTk7FOniKPnee ++4TWYDhqtYSMzRewOX86S0Xx+XLB6JJtF9xqc40N09BgBukgED8NYjeqnpQZG6lY +YSJi/zOKKN2Z7UTghs62hAoQwObiwv5+RSWTLIG5Gd5qlXrsHPfBaNT270GA3tVg +lSG3ceMz32IkpVv5X86yIq9CxCPOwZwWB46ApK2N7Yc9oQw5hJvxr/t0FmP8Xi1h +KXkIuZ2a8b9xayau9ZeR72dCu8eDGTYS8GUZwIvmiUNIsn4s0hWvs3PLyKC4VNfL +TeH9tGwHbY/w6zLNgUkQOfQHRdODl8yj1aO2/sW97WkeTs3Eu5RW8GvJNh49Gdfe +S6gdkujjv0r2DvECeDhyAzOqYsTkUfbPxYD9gmBhAFO5f/PnCRYRQDGv8gQbT8SZ +d3jGdh+5ytE956+jFqP55LdYo0V/1nVQk9tH6PrWWVw6UPZ8+aFhv4Cnkfzzhl5S +KJUoLCLaneNfRSq6jDxy9zE56pHny08wla+O6+hUjHAOvM35Uxuw48UWm0x8N+QE +m8iKhrl1rNxFXKxpsqzzYBQsOPPwroexR5mBj7FH3raP0r/1hRySruOoQZWQeFr/ +NmRXKOuPpZ7/4lJ2PrTxUrebemd3j3DFL9oIgQ/BZtZd1eKsStN49CDV/E/8HaFp +gPeEVW+rUswKcLRFd1KV9LADX/A6P6XdxnJZ1Kk98/RacKPMUusaWrciTHHqZsn1 +jWvCcOqC3J+uOCYla2TyxqzlyCuAXHIGjit4Nz/syGWECaW2LJBW9kPZcXsqseqF +2BO2hII0FbICQkuvA9FIK7/Xu0NGgShUeDTswxxuf1vx/EXpr8uZqs7uYQ4yEnA0 +P1txskrupvJ6HODg6G4xcL7/pkKn3dvFfn6+GW3sl8Gi/xs/CiPq+tybCto0UMSv +iHVRlfosN+9+niQOtTI/zdAV851PNBRE5joqIspPPiM8ZqgONAphiG4x465qLvVw +91FkMN8q1LPpibR7eONCQsLw73DmdKhX6GNyFiSBsSiavri44CdkTeYe09gxQZDE +aTLUve7ylxo+dAo+Mo/rU2uPgMQJ/oH1oDJ71FrERZKDx5Th44qaHKk5GYgtGQ6A +rQwIzf9xVJrOIzaK5nlL80cA+Ssx1mEj9e4a+2oAaOVPMoj7EAEMHoG+qbL3foku +UXpEh6519+9FMQyrdL7KOkOlMOodY0kPnXUzvCebxqP71ONixL/LNCIUrLvfu9Vx +JszsrjJbg//nEdjoJ4i2K9Kcyp88DXtZv3MLVq/4YYu2eXJEhQQWJvXKPAa2zuEt ++4pe0RzmQBsm3AqiT0KIS8iVXTK2FY2q0ch25ltskrgIQ+Owl+0NBBZRf68RoWg7 +ERqPZ0+VyvJccBII0ZN2f6pYCP92kf6edz46xtP0UZEWxavxmmYSgYqzj6Et7it2 +NkNCL0d785ZHqRSU9BMctnMPgoJHKIFSVWaL2aoPWl7IndBvWk1wg2G2tDVu56Jd +aZEIMNxrqDx3xEGWWx7aZnudQ8PXX3iCgZo5Azw5pgKZzw6ycygwYqnksQ+IEaP9 +jx8PUvQ4JliB/OdGfHrS86A077y5XeAf9hRRuRRh7YH3zHaB2HWKEkWUDJwSzrLL +8lOyE2NEJfzlzDufiAyI+/Ac5i5n7aj7GUlJrslMao7M0RubtbG1WO2xMU3Kj/6J +NE/vkD2m/6XTO7YlxKjTXMq59UAMmgYS7sAB25Eb78QEM6craTQ+l9uzuiCzOvVR +jGK8oyzLXuGYoLHr0D4glq60u6E6+OgFqLhGXFSii0170ZrH/HtYcaIo4qjRtmmB +j3GJCtYS8OIejVL/xZO7MP5f3VA+vh75ILkm4iqzA+Y3phnTC8X5DGQygP8sDRTp ++QWTFHn+kmeydwTrAkOWm71vOmQtNPeW8h/nFs7+YLet7/hvzMLpYQXrvMeH9e0Y +rWi21V1PQphSiObNkTtt1/OMFCllTCMq8cCJWY3JhaUJgYDJUaYelkPlRLhxDQwP +0sodQnXhALAMV+qFrQhZQk8wCInjMkX+yWSt0alDOT1+GWIl4ln+7q/dc2MD30Hu +GY4vgy6Q9AZ9u9EDmmeuhtZh+ZIqcs8/S/ieL6oM93yLEp7UrSaz2F3Jg2GCAOCK +OF4GOh98GbWBUMTHRycU4ruBExKIXd5NJCDhGcufyyuTHw2bkXUCGuyLBD2ce23b +8mMl8KnqZaQWDPDy5f8KJp5CyTEVpZ4G8YcfBymu+mDVxkQ/zuFB43x9yKUwD1Ab +k/2tcTEBrRu15+rIJbO+/qeR4jk0bFacZe/Z/rYyhD6GewGWDFBvFxWquHBLikmd +eiU/YxY8FGNTQtUgl+9F83KXXnMyrPRhfOYnk6iPCgM9uQyuVTjCqxSO6iKHCyoB +f2b9qmdfU+XPl/vn1AxuIIsk4Y1RYmxAbCuG/0954G85rXx0JbASYAm355P4Dsff +1+azTdKDbbGxkEu4RsKPlOF4B869mVtoYXDO1tQxXL+zaBiO7Jk2AGJZ+NzpkXuJ ++Y1hE9ahBeU2wvXcqWKWXYcVNMWQCPjl2ZGRorJMN6iTEPIKNAMowC69G1XAssCC +XAYJK5nJLSPJ0kKm8ZCWqsRh4RUX0tpryQATt5BLbACfEpXWnHLkHJbTNIoGoVVL +zZjIib8ZUlees60UIjSxfrAXPuwa/QscpJ190mCTkMbeqIH00P1tM39JF3efaDP3 +5RPrgOpxFXjNmRLYrpUWubYWTSMFDS5TbuGPUBx0dRjKlzcUq4yCCRRQqsGksnJ6 +T9QJZPAL3Qub89g9rdtXS9qL5r0Y8MFnoBnqicu8a3MgQBO7UJsBQrCXJ2XVd6wh +Vxa992dNZLL8KaB852empiawtgJKO+mERX0dr5cA3JfR5lQzEsVBx6Z8+wa4RGYS +S79KOa6IDi9ZbnQeBH7a1OoNcARhcu+mkaXXYwolbcP36bLBjAWe1onS9xYoBBc4 +nSQujzwC46Iy7+e9LZ4idLS/Ky/2qrqpgB33h9C3TBg61uz8saDIy+9zE8QOj1kz +5kIUguPyjmtETQ8CfH5NhlqYT/SaPoWftrGcEc82w7gqT00YbAqvCggwR8teCWmj +DmB22Y9GsD4C8s48LAazFHI6GcWMUFupJlDuPzFB6WLP2ln5E3fMAs/WeBe8qzFM +pal1/vCbSfgoQp9/HsCskCRRVJD7V6QZ8M6Iz/dVIRvlaQPoA5PcNcAMR/YqrRi3 +D5OShWLHTx0Fk0Synn2XXY8jmP8q3fmPxj/VxUauLT9CmTsBZWmsy1ara1q8vGU+ +OY8kbO1737MHvdBk2IBjhIkLve3SX0qIE8eGl+TL1ljFr6A5kIA3cnhWk7KhglOJ +ajqFqbpPrKkL7RVlHJt5gemk3iOs19NCPiCEdhTMA12tDFC2BBo6FLNaEZnlRfsJ +hU9ZZAh897DlrZlyUecl1BHTm6UYACV2OM52OzOtuJfHd6u7zHjoB+MIeiXdnAz3 +H6nT8Jqdj5wA32ltvo7FZXTLtoJ0OUZrs5CskANTngjIw5aK6eU9jrEsGgYG2yNi +xYr4nqg+K7v9Z5Sez1lzr8RBFfhT/wlwod/58KgpeZH0CN9pR6eSB7P7mIzNOrsw +hJlTULdiXLuD+hUoGoe5gbV44Oi8i7fNGTXROSX67uy3K2m6g9HQOsytMiRwPba5 +nAYmjAXxCrbukznkyshhwI8YWMd+uBdgg7Wr86etdusrsDxCUg+AS5dbG+Csp4Fu +o7TCP2mpGN0HlqT/Xxvjg/CmFpXK/IL5sAL6SHwdX91YNyVzCGCHhuDOkrtBEs2Y +xotZ1M+aMtQ/9wbFF7Hck1hytu4amGB3t98tnI45onRLAxrQZ1TO3g69I89Xjv64 ++52zfGCB6jEEDrK+FBr1GWy/rgLqhJN5Yb6f7Mt4Mp4gzZMnSma8vPwg1bWuepYz +36MZef6+dat4gvw80FMmTOwEJqDlbUiVxSt5FfPRozyeuTJ15KDCJiNzr1FSFycH +vV7G+Kndyt8G0pLxqJaTBcMY9NIBl+zNoT1j0ZyYtDrX+u2hLfydazeybTJ1GFcA +G/byE8iveb48aXGGWdPvKtTIsMqCu2xjUl0EGREJsqzeAWzzKYFM46uB33Gt75Y4 +amHKkh1HzoC9AdFyerW8VW0oV0XTeMmCKQi6dF2TOEb5Od4A3KfrOOfP08d/Juii +glMz5cxq2ObX46IDfXmr3zAYAyCeO+/1yFZO7JwLGYOT016lDLcD9LEohrzwnyW+ +V6Pm3rKCqppkHW3lDZIJZtEcJZ98MpMUNsAByjEPibnWeOiMDhPgDGrw8QH+BeEK +Uv6YG+4q4/+9R7YB+vcdXkZu3Q/M0qv+4ZJLgfmfsJbckzR97YLCwQVb8N5moJtd +QTxQ3Tj1er0eSDdlp+oq606MVEEbjd0S/aZWUlWz9xfGw9vZMLfKFNoscAXtue7s +aBEoXXYF91Xr+E2k06ClT7Ol3IG1NkqVCpW64aJeuWoPzx6Aq8SnFWmBYNid5OFi +Q0ZRcGo1RVUxMt890fzztXL4J5M16jOy1VSl5tEdU0eDxkuc+uveBjPkcfvZ5lOn +p2zHw3YYJs1lu8x7V4YPi8XeaFHFnuz3d0AuUWAKs2b+DeRvkbMb4MrcllL2is3R +zV42iXrF1bQ03zACc6S/Ud/Peo/a1xhZsZ9aHw6QFVn1SvA4DlkMugh7rJ/0EPmO +olxUBkSnkDI7rNHPpQgQtf7dHdwzrqJ2xAQTadO6eQ9EiA9yFmXnl7Ait8DvMLJf +b5P5IJEmtB1EpbjRBYJN+tYGpiWtJo0ySowPvnWqE3GStnHvgcbqrpGmNif0ebSX +LesS4mk+Igiy+4DVZT5woaUpkGLQhXKkeEKTwrkFZqQfx0LRbl9/3IKNnskZWJB+ +dokJSUt0MuUGpYCYrvcXJ2ZjjGOf2THSl/ptYBmZlIBFKJAy+OZmsJBzgY4NXTeK +lrYXm0hbUhZm5dVG44zvpCR7beypzDgM9hYG+87C+L9qGXv4cDEk7N1nyZLPGgXp +eS1OFdD4TsE4NmHYV/4mmtXIIuyp+ruwPwiBrgUi5O32jUh9Xifxp3VUlcEn+hOb +SJu5nX8L5WKYv3iiNZVyt5D3+RZiYXmPk1oZ4n/3X+67ZqUdmfFyKI4GKrAtZg+2 +2IaeWEQ3K7FdbSao0yd0T2OdX3f1r2LcsERmisn6ZIEcIA3h8hteVpEnL6JMFQkR +iTINSW2Z0+gG2rcpaq1pF7mjbbCcHTBpWbPt1h0NU0TUvFQ3MG/aoyyZNeCA5fft +/aYnZcvLJpsEzN3g7PTKlovXpATzWee4UbT6puT52qCXQCcTrf/lyEncIIyQFZBB +ZykMtbtjbKJDgNdDCP9Ll4tgdHaST+ZKEqMhWyUXwLXCe+wJvVqTEmEqF++gDP4y +6q31RWY691RkoPeNMX0gxGclP6iUV3US3fnFtUV4c+BkZhMp42M5z8rODNyHfHUW +uHYi6QC3rCnZNTQA0BIvWopId2XYIKhpk/QkZPaCoalvbRx0SheJjZzpLzJI8+78 +fnJiviv0dcq41mzmlG/SEagPNBTjMfHhuNDOGP/JypUI3cDLKPceVW3wtD+/YDOL +Zt6N/tXVnWJh7Ox0sDSn/raxflfOfnGsqe05CDy52M3C3vpcuITOWxTAI5ipwcb+ +L8CVPkPaStE9JEiKuolScfesLOZ4tMac/YsA5x5UDnds36ft08iU/l/5pDeeeJm/ +5POw2n/D+8OQxseXsixpE6ZTwZKHe5TcA7KlFlPdZFvi4WzU18uIfiSz+9/P04i+ +N8FxJbJ3NvMtJf/WriGY5unZM01f9weXpmBkWfQZPjRMzElszPlKY1EbRi0N/pVi +JOcBrxFrqAFV48nRFDAk9XZKqZLPwDtiKk6d/vaqFHYx3vfxr84RGa7iFxyUBBY2 +Qjtf7/0Qe03dFYG9T4k/ioVb7u539HFnYg+VsukNZ4qiuu3rxBlKQooqAEfZDPQN +wurRrQNAuu5oaT9xHyrYN1tL14CZDeNM+bLi96KxrH6FvGqanXwb8+e1kTNWnc0/ +h0REwu93bEv8sCuwGXsKe17tMxdusra50RJKLwzvdntwWa9vqcmGOMLhG7mUkK5b +0rZfZL+18ohPIrLlH9Lk/jz6DJGcCISXj5xJsGz0xkbxyrna+qk1g/aWdQRXik5C +yB6En2CSFlf6DiUTd+tP8J5Z2RP+bTaDKv1inJkAMk8+8/HrZHe1PX6qX9/gqfoU +z74iWy1ujpYFIaM6jXpQNfe8SC3mKoQyWkpyJfEPxAU7Z70XyWMXX2z9mCPI0kVr +6GilQUbS4iNQ/XHeuejlFienPcAUJSfaB6sbhLDSCosgRVfOtAQNRjpW2PoJ9k26 +AdbgYpOm77O7Fg/xsQrk/FAUYf1cuOZ5d9loyEd6XiBlcwh4YXJTSy5jVrl0QLH7 +xPVhtYon0EPAujJDN5cyg61MQAO9Sqwa28s71EAdNtVmB9hZbff0qlXEx06u9nYJ +K6e3qXdcczKLczhbNsqawRIWeBTvrh5WW7QVeIn5+e9nEKnEfcjoHjoB2pCH2XPT +ACkVpPW0mnsIKkPlLOWY3k6n4k+biY6SsYUeHHLvCUl2mPG6+9QChEcFL4hm3mIJ +Gnn8HH7QkSTN7HJLNFIGoFU1aKLYBsOAYHMHwgL7ptM+h25nyNb8HFRQMO4ALpbQ +WAOxPj9lYSQhtcyz+7u5+nX98Kgk79ywdJZO45YQP1ei3utgC+8aMa/6wylXhqx7 +Fh5m+5aODH3FzfaYSB9PcExDZHoq5/sjcZiDjeXKxMP6zHuCv6DKH0g/zeAvSveL +S4vmdd6Z66bVA2purkyBtMtGCqgSQGLGOfPTuzzmuYnAaJTrDUjiSudsP1XeQ7gR +Zi7gOy3GY1ccy/bgA0B+0zcJNSSniQjA4vVecFH78oqEdwFot5POUY8fRHp2WTZ2 +T3fHfJjB3FxDCKNWDOSDMevOg4553uYCve+HrA4laXhBYv3rZKNm1wZj/kMR1Lx8 +iPDKFcd5pOOsIIKZNFEiKPfbHPTpv80MO70ovTrHFdbpKgkX0xX4ZRBuoE4SNIcV +lapodj45pjSAUR6d8sQXChY6smqviWJYxKXTt4q6ssVQW3L35VvoGBQLRMYGYW8+ +ZLAZO3Pl6wW/N7txcs3wa79cFZ2ufcTRiMm03urlXzFhiw+Xq2VdMokAewin1Tnb +HjNnutd+yCeyNIN72g1LkmOr/6Ya+2avH6vqajugHC5dyzJ8Lh215C9VvXcqQa/y +P2MWE/leGJi/X1MDgFQfJD+0yiG6JkBYsVgJaFgJ4Jc+dUzPjBYAGyFq4U677EXc +rCLD0LFmfHO5HBjUZWVWhsMjG8004dF/l8qKZ6y0zY3LVmTuZuhY35LMv5DsUjqZ +B7As2f0EDALcNYX1fsE2x7nhlWFdxo3wag+xfUCroaEZTx24udTTPA9NyUueq5cN +vOIrPgQ+rD+oJYC/V5f34KrRZzZrxOHeGZMopawvFdXJUW/I5Qp7nTevDYCSMAva +bUEdhJrogXGP2AFOhQQxNZtXepk/eTBQ5w0BfleoFJrPpDhYV9RrZc4w2SnTgIMU +tnnfBbYWfGuSDYg2ad1s3BaoGFmp3hGVCTafhPKa/aYS8vewConpDkgu6iQosQUH +iManhuyhhQ6ZWc3/0MfCvpCr1Tz94yEarqH0efgCzbqsfDUMfAHRHFquVMyiFX4L +YmaxY/lG39UdG+YGh8Z+m1xmE2n74aYLbmuDVulQcrMKwBZyT/PeETlsRMunT252 +xu5a7BdXo43iUDaThUc+Su/sh5rnnGfk3YaJHlGDqAjBVA6rOsRJCg2QXYdg2x5X +Pk61EaHze3vH2MY2pqQYNnavBT99AwPY87AFChPhsAE04jU1nKBjiuqJhniaY9PT +rwPtXl2VuxcjhAKjimaAQjUpdpZlZW5FihV+mQRqmxjU12tJtHf93WPr1uDl4mNP +GNiSDgTtZ6tLJ6GLO/npt/DOIxwnRgOJ3QnyS9xYf7q2T/MbDbORgkRmwarNNXsN +kKJwN0zmOUAUSB4C3zgD0zlKMMxYLe8cs0gp30LcQfHkiQ9A1hZ13Za9Dg4HuyQj +8XmHd4bkTdHqk9f67s3/2a7FoPVxkjPLgZ5OWnNhUp7b7Vgp/GUSnJtdJoDs7WWh +N3X+ZpJgWe84N5sTXGlafOXQqVzBuk4MDaXfRO0FHLQYMhOqJCGcAJGHpahsHJyk +Jb6N89oIF6MWWol70LIKnnm1q4sM3+TITz2nYZThF+3uwp9R3BIRmJVR75CCkYjh +yvyyvm7G0HtIaZG0WtX7eCKQhd/EpFLCoYipq0oCd29LhaDSquk5PiJafMWADsDG +XaW1J1lBtvP97ttIEDC55st8KU9RkbHy10QztzzMMe3+a1p0xtxhS1EeOYDjZxau +yvN7tggAoeXvfZvciO3WHUbKSZBmCEU7BD9kKfoedeo9yXlb5FWi6fGZR+2Veg4l +9vCR57YRjSxxMwmcipV4WdY4VCcGXyaQorzLY3EJGrKxVvw3kgcUDlXjeW8JBFnS +ipqP5qtf8yssogG84Cybo5rWTuiqPIPn1WyI22HOR/WPxrb05nu1W8zN/qUd1aLq +g6PuYTDyuNl3gH91iw0/GbBbDRzqVODCKDPv6n1kIGXhwAb0RKIo7GcAGvCw3n5T +Hm6tW9mjrllnvwaR2EAMYKUvjDXRvGsHmdalU2YSzVAzfYnvldiW+EmGjVkSAnR3 +OxrF25i9RmtFLZ4l/N5jeW7CGnViWHLflOBwkg7XQnpAL6/x3ux7GCJuBaYuftY5 +5xW5BKjJQf8q17nShldKam4dRcz4bRQ+g3vhO97RNm+nm2hzCH1J+JFk5NWWLixn +k1Ra6rgxJxOjTULPvkEIiDtYBCBoESySis2BqNhSEgqZ7a4RAP4k6YT9gi3Fc+Wa +vWKdhOr1403ZoNFeLgNXhkoC3EMnGuNFpx3KjlvOKRmNh8hp19Hign+3Cl03a1LW +To9YyDJ0uBYEs4lSGFdkdrKJVrJj094gWBfriEWA4iIqfEpZ61cCVNVzGnxlrMta +ltvLtUp+aYaey9s6J/2JV4IfWZShdx3p/scJcp/I6t1l0APCacFzXGNTNRUTTC4l +tfm7bpl1MNUP/3ZSOiPz52Tx/jGBclMfP2vr525FeC6s7rpAhhcANrAOYZqXIFgp +LVf8YZGNS/CmWs1tZmC1Fozi5WSBMtqXl9de6Wi0n1QEacTQ6d/Zg0QHopZJDf+6 +SnQJFL1+xe6XCt8VJl/HpBDgL9LX8yaIy9H+umVM9zpRZGFsaIGCl5MyNGo8t+VX +BGzQAXNKplm9hMsTqo4CQFdERBKH+WgHCYK4xCWtqvBHwiAEmNSSS/sSr2tAyhd7 +S6qz6LhUOMQ4Mp0GSp6uELZB/IRRaahp0D1LvdI0/axxvDC+WaztVDgybHiOHPxu +MapCMmr5T2YcHJioHBqn87U9lLgt6JZji/sLO6Hrib+7SqJ5ueXkEmtk1lCVtfPw +2J+03EpwNfQjkDo+WTwYS6gboFk2aO0cbDsx5El9avwo9NaTp0rDA25RS0LKYwgL +toSkJLhQbn9U6CygfAYnOmbGFKoLSz6lESK/zRRSLYx0gYh2tORiAbZm9EQDF9NN +pRh43wNOTw/beIwb333JPofNA9/0oL+nXW7ug7+0Q+dltRr/+hNO5ZvGhJdudkLU +qPA1Xy1g1Bh8BahBd3CFm/b170eN1+twnWvR2992qdlOVz2xM49WB7VTw9Aexc7s +aH5uG6WtAVixWLCVfmFl/7eYffhpwXFqj+7PkZBpCqcOH7zvcIktwN3Mzd5H40yd +s5HroYUojNB9YYQhBuOHzrU2E18IjvLJuZ9lUH4yiV1HZRlIrdeClW6VntE1kNOM +/JEbkErPNH7wbAAJYzAeW8raRgc9S51gaikPHD2A256bFKr3EFHSo5SLOA2N4HvA +gEi5i9cVvH+fSC7gByFaT3abzq1Zme4XDUxIkEWOFwVknkL0DWorHRUyZrj/Q58p +1zSAGcJ2YGMiPfFRerPXucz999eYtBP2oVdDm+MQiBDQ701WK9v/tEgiu55x9Bjt +guDnN7JrjQ4VGptswQY8MSTYBRCAV6XIIpR5IPT1cwGb9KJBODtGey7sKxwRfy7w +ZAg4wnnpM0Di+zsgfpy+OZXIwsUvq1VW8WnnIBKLINSIquzrnkZ++WdXJhuO3ZY2 +TfbRiRR1Lt/YBkohvKS06njbkHbwPTh0NBuRTlQY9gCBvYbVJibjo682lY3h7tLy +8BvFTi/wsSKH76E1+BuxKdOqMkg86is/TOLsfvYuHUwFLpmHyOwerQJeT5vXAfZw +EbegM6wEyiLPVqH3htnK8H4jWa9H6ikwPw7ZLhrZ5cvsJUNLBa2DFciHHTn4fVnl +QBYGqBRir5nHbhm77kcURyeHpoYF2oSomtMuVDub6wcA4wTlSIeIfpQeQCccy7J/ +TALgxn5WPqvkMwlmM3xPWJxCPrACpsHdIeEiL3pKJMjFkKN6UoFGGtjC8hEQv6kk +gdQ8iXIw0yjAtKKFDNhR6O0IG/eqH4H2FVnLvuB4mN0uH8jcMnVIhbT0CcM+xyTX +eKzKfuh06q+okfAGiyT2JNN4YXwdfZaWWMRmiacdIw7zliCJK195bzwRmgVHLM+D +M+kt26WE6kxMlOCRmqGhfsrcnRW/FOUQOJk8CcQaB+uzHzz7LhjNcS4TDTL62FMs +Kl7Pa/TsJ4eCjIG7/5V1kyo+qhbgG0m3o7fx9JLj+3hTQps76GWZhlgZmaRgY7w5 +foQf76Rm7B1+XGYR/om5VccfgI2gcWvDDqrhVg5TEKlYqqvChw37MfmnBzo4/SML +jHVyc3TtYMlZLFdShpnFZhBIlTDgHvyzjWgbpnkd1BjI8cpBS7O8pif9Rn2Of+oU +NI1rY+m9ottwZoDkjp9vbIh60uEqyA4rwTjXQtIg7SLd/acPiOzOfsZQpanaKAIO +j5HvGs8snRQPuL/V7HOdOMdlrcn3G6tqmWj5jOkqNLReB2fRC7woQ8/x9mpNdskQ +NhNH18uT1gEk0xJn/tQjJoOGqwkOByIDJ1bBd/6ru1QraD8QcEAOSOLebXjPnWNd +8qxW8dEfdezSC4rK3NxihEAlr6elzRPwL7o9C8fPkWO/cTJg0vXTtcmRsyKeSHOE +xlG3FK1PRunTK4Yo6RkCiVCBehkXPrPBjgmMTAMtrbfLMxSGIAlnebhiK31oWkEN +OqTMTREoVaIxWXISzEJbRfXO+/oLz6wL0y+IJ/Yu5wuvToZWz0Jncw+TYpzPsYH6 +eqDA3LrTCiJYdKnhkGqt32SLPXx+szImruwUSIPf4NbEETyV03/9ro2fH61eTYME +tuXJgOBHwBoZnR8nXSzu0o+mM2QVjVI4CfL/HPz2XEUHb8W7uTxSmPnMv/gFmOT1 +oGLJRvTP0cChXh0yDkthmOQ96PW7KnAWs52sUmBw/L6GjfUlq9OgvQ48EBlZN6bk +kC2qJdKKshTe8ymMrCDf9d3tKFvKb1S4JuBIQ+SLXfgI7eXBWretYJNQ2IT/NvlR +QLzZ197+rXdy2GptQDeXo6QeIE4Nc82m7yhNn1imyTqLl6jlRb3uEhnbsrIzwf6B +0v+lxT+9TaJPJb8Uv7mNg+GkYJxsyEKeAUGAslCpqNJtfYqrKh8eHvQzuZ+qpveS +mm+wN+gxNwDtECl+PflwNcWYBtzQNA83W4P+Kmgl9WoNuClO06fLAvTYjX22xwcp +qGhsll3Fy5CWzGStMBGGAwmwLwUTlgITD+ZMKGqnLr3cmo7TSJUswD5LsXjGEaNc +p0yQuYM4DBhhgxxVV1o36QO3FI+emiG5E39QtU/FL6hgrERwzaEA0E63MzufJeW3 +DiBK/HMzJxV1pCTdTS6YMDaZZFo8Y8U3+rwgaMoH2LJoCRLoY064fQtNwPIiixXp +/BoQmjH7MP6jLG/KcylTCA \ No newline at end of file diff --git a/infrastructure/ansible/deployment/TIXEL-5000123-current-temp-license.WibuCmRaU.sha256 b/infrastructure/ansible/deployment/TIXEL-5000123-current-temp-license.WibuCmRaU.sha256 new file mode 100644 index 0000000..87597af --- /dev/null +++ b/infrastructure/ansible/deployment/TIXEL-5000123-current-temp-license.WibuCmRaU.sha256 @@ -0,0 +1 @@ +8bcaf9e92ed085d089036577c93c31bd1e2d6a6a9322a5b3e1edea6a5d445ec4 *TIXEL-5000123-current-temp-license.WibuCmRaU diff --git a/infrastructure/ansible/deployment/codemeter_8.20.6558.501_amd64.deb b/infrastructure/ansible/deployment/codemeter_8.20.6558.501_amd64.deb new file mode 100644 index 0000000..540483f Binary files /dev/null and b/infrastructure/ansible/deployment/codemeter_8.20.6558.501_amd64.deb differ diff --git a/infrastructure/ansible/deployment/smtplog-1.1.0.zip b/infrastructure/ansible/deployment/smtplog-1.1.0.zip new file mode 100644 index 0000000..6043a44 Binary files /dev/null and b/infrastructure/ansible/deployment/smtplog-1.1.0.zip differ diff --git a/infrastructure/ansible/deployment/tixel-test-ca-key.pem b/infrastructure/ansible/deployment/tixel-test-ca-key.pem new file mode 100644 index 0000000..feafe27 --- /dev/null +++ b/infrastructure/ansible/deployment/tixel-test-ca-key.pem @@ -0,0 +1,28 @@ +-----BEGIN PRIVATE KEY----- +MIIEvAIBADANBgkqhkiG9w0BAQEFAASCBKYwggSiAgEAAoIBAQC64bsDdABe9bOL +fJBzU0AfjczYbYaiLSELiXU5oCAMleSK0d69Y9+ssyjZvPxd3gP3/PsSicH3IMUL +v49Zf+wNP6xP0rdRGyXVeP7FahH7/iJDFvagtUR6A1PuTqgjT7hdXg90LcuyMBbk +5RWdVKbVroe+kW4nVsBVkAjjEmN1yQ5Bp+2UM7KlLIuaaz6max7xf2Abhgc8cNLY +WicXr0pU6TcZylF6kRy3sFDnc/CqcMlI8HKde/uZUvDOODJzEKSkcpc7Wsfma8Tn +a5GMy0ngOLNzxoafoJOAmxxw4SvDWYn7t9yqZqVSir9qwl0/dMPk4phptWhjMDiF +1/TNdIB3AgMBAAECggEALI10EDavf/QDgdWIenX2a49arp4t4qvvnNiAYeSSv21c +ttuhxnTw9jMgIgi0AYzUVWKyWJEO9OOTFmHswuGEXQQ5CC6sFWHreyEFW/sVnoXP +lT78PQP59zyj3cRSwVhYE6pA9OmWDjz4uEkFBiUQQRECu6PgJvC/maZk9/2CSKnl +B0M6B0UUWLQUtg4ahBQUND5bV0u38WOdZhR9kE1247J1gyQbQkUdrNO0SvllaTVb +Vg9TNrDvwbwdWJWfrZz2c/cZ0JbzUVbYyPTS9pNa5na3wC+Z8prFMtYDwl3az5O7 +ajIyfjpnCPrWBZa31+NiyGcxrMe8+mgazJb5athjwQKBgQD1hm+J17gMxAjTCtcv +X/3j7OodHmlqTRHBRhOA00Wd2BRhkOWrA6fe8zRYe+r8OrRYNZObUSk3HWMSREkp +iaDPcbjdcgZGfMFg2AsEKYJ+DIwTefXjrk16TEIEqUn7wDY2pomBf95hFCGvzJen +9rQX+Oq6DDMsjxix8tRHYmJmPQKBgQDC2s50ms9ZXWWQzvmjOqcISNV/dIqaGUJA +NU8cKTrCnwVx8/WV+ZeUP61ejadb8oJMcr7eRySnFA7RvzwbFDleKXV4Hsgve5aQ +GzasZe77YRVjLCkUry7K243PasJb911YWQWDZp4zrBgR1tjTMX+cp4MKvITTlZ1G +AXxvYy0gwwKBgEpV03tGZqDm0U0kIRZk17ekSRVb2cqnXtLHZqxASvmJLFKFziNC +zhaAR77qdbC8DVIPlosVvYbETPSA3C3JT3i/E5toJGI+70Vk46D0+F81aUuUR1AR +u79lSy+iGZYxEbjmHweoMSnvMGvLY7ckyE3hvR9rBitdf7qQrJiYPvZ5AoGAF/qX +R5A5jhTJR+3AmM7B+WoFI/8yg04ycfZdeuiz+3lYUTKleURS3AKOEkG6Y71PPZst +U+tLXmhAfp1bBzYQ7T6K3zJijj1WRPukWcjdhP/oguDPWWVJi9tC81B/BJRHX3Tt +EcOSGmfGOoPHAQ5pVtzianLSobsatJ/AMXDx/8MCgYBlrgirMpjSFog0UozOAibv +WWyZwoqkgaeqVIN5tUpJ24GJ5szNcOKZ+xh9YfHze6PPcyQzyWmBr5tQyBrMq2bs +zWNuVCz1j4Cu230O+XiAnF87FCbKqwArSinfqzuWjxbykzC7du7p1rTHPuGIyXrv +QkSu3fGj5WVZUNnX9AYXhA== +-----END PRIVATE KEY----- diff --git a/infrastructure/ansible/deployment/tixel-test-ca.pem b/infrastructure/ansible/deployment/tixel-test-ca.pem new file mode 100644 index 0000000..94d7f06 --- /dev/null +++ b/infrastructure/ansible/deployment/tixel-test-ca.pem @@ -0,0 +1,23 @@ +-----BEGIN CERTIFICATE----- +MIIDxTCCAq2gAwIBAgIUcaZUmOKPQfRwJbhRI/BiGY2HTggwDQYJKoZIhvcNAQEL +BQAwcTELMAkGA1UEBhMCREUxFjAUBgNVBAgMDU5pZWRlcnNhY2hzZW4xETAPBgNV +BAcMCEhhbm5vdmVyMQ4wDAYDVQQKDAVUaXhlbDENMAsGA1UECwwEbWFpbjEYMBYG +A1UEAwwPYW5zaWJsZS1yb290LWNhMCAXDTIwMDIxMTA5MzQzMFoYDzIxMjAwMTE4 +MDkzNDMwWjBxMQswCQYDVQQGEwJERTEWMBQGA1UECAwNTmllZGVyc2FjaHNlbjER +MA8GA1UEBwwISGFubm92ZXIxDjAMBgNVBAoMBVRpeGVsMQ0wCwYDVQQLDARtYWlu +MRgwFgYDVQQDDA9hbnNpYmxlLXJvb3QtY2EwggEiMA0GCSqGSIb3DQEBAQUAA4IB +DwAwggEKAoIBAQC64bsDdABe9bOLfJBzU0AfjczYbYaiLSELiXU5oCAMleSK0d69 +Y9+ssyjZvPxd3gP3/PsSicH3IMULv49Zf+wNP6xP0rdRGyXVeP7FahH7/iJDFvag +tUR6A1PuTqgjT7hdXg90LcuyMBbk5RWdVKbVroe+kW4nVsBVkAjjEmN1yQ5Bp+2U +M7KlLIuaaz6max7xf2Abhgc8cNLYWicXr0pU6TcZylF6kRy3sFDnc/CqcMlI8HKd +e/uZUvDOODJzEKSkcpc7Wsfma8Tna5GMy0ngOLNzxoafoJOAmxxw4SvDWYn7t9yq +ZqVSir9qwl0/dMPk4phptWhjMDiF1/TNdIB3AgMBAAGjUzBRMB0GA1UdDgQWBBQ9 +fGBh8Uzz6lTdBJtkhEeqa5ryITAfBgNVHSMEGDAWgBQ9fGBh8Uzz6lTdBJtkhEeq +a5ryITAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQATlFd6zx8/ +NZlCjvVZto8As5/2Im13SCdJPhWD0d1n8kNYpniW31YL9u0RsUxEMce5S9LDBVV/ +88692UurPW+O6V8hEdcrhreTMBmRAnSyby4H3PZjYq5l4lo8HWvsTHrGKHEcvfvl +IXQX6O45eIXdvac9KiZBQqXP5s3YdQ4d/+FzHBbDiQ6brrKEdcCwGghQmBMxzeJb +WcZDepAYyvK0Bqq4d4ra1nrW6ALPAF1uNe0HExd0mvZAUff8hwH4bVXN7HqX2zWW +1bfsyVhVRtpNlQnxrLE4V4CbbRcRYi3DsgYgu4qKALqj+cAu3C6XVEf8Lycevgut +GFDM0E3JoWoJ +-----END CERTIFICATE----- diff --git a/infrastructure/ansible/deployment/tixel-test-ca.srl b/infrastructure/ansible/deployment/tixel-test-ca.srl new file mode 100644 index 0000000..f2af35d --- /dev/null +++ b/infrastructure/ansible/deployment/tixel-test-ca.srl @@ -0,0 +1 @@ +02A4CB445A2D2E134D0E545061E7267423D44E47 diff --git a/infrastructure/ansible/deployment/tixstream-mft-ubuntu-24-v2.12.0-alpha-3-gf08d5d3.tgz b/infrastructure/ansible/deployment/tixstream-mft-ubuntu-24-v2.12.0-alpha-3-gf08d5d3.tgz new file mode 100644 index 0000000..e69400d Binary files /dev/null and b/infrastructure/ansible/deployment/tixstream-mft-ubuntu-24-v2.12.0-alpha-3-gf08d5d3.tgz differ diff --git a/infrastructure/ansible/group_vars/all.yml b/infrastructure/ansible/group_vars/all.yml new file mode 100644 index 0000000..ac9259a --- /dev/null +++ b/infrastructure/ansible/group_vars/all.yml @@ -0,0 +1,182 @@ +tixel_root: /opt/tixel +tixel_root_v3: /opt/tixstream-fx +tixel_html: "{{ tixel_data }}/html" +tixel_data: "{{ data_dir }}/tixel" +share_name: share +share_mount: /mnt/share +data_dir: /data +tixstream_fx_user: tixstream +tixstream_fx_group: tixstream +tixway_user: tixway +mysql_root_password: standard_password + +tixel_config_directory: + path: "{{ tixel_root }}/config" + dest: "{{ share_mount }}/config" + +tixel_temp_directory: + path: "{{ tixel_root }}/tmp" + dest: "{{ share_mount }}/tmp" + +tixel_data_directory: + path: "{{ tixel_root }}/data" + dest: "{{ share_mount }}/data" + +proftpd_config: "/etc/proftpd/proftpd.conf" + +remote_deployment_dir: "{{ ansible_env.HOME }}/deployment" + +configs: + deployment_dir: "{{ playbook_dir }}/deployment" + tixel_root: "/opt/tixel" + host_config: + # --- Worker 0 --- + thesis-worker-0: + name: "Worker Node 0" + hostname: "thesis-worker-0" + ip: "10.10.1.10" + route_gateway: "10.10.1.1" + route_interface: "ens4" + contains_setup: + - mft + - java21 + encryption_policy: PREFERRED + checksum_policy: PREFERRED + + # --- Worker 1 --- + thesis-worker-1: + name: "Worker Node 1" + hostname: "thesis-worker-1" + ip: "10.10.2.10" + route_gateway: "10.10.2.1" + route_interface: "ens4" + contains_setup: + - mft + - java21 + encryption_policy: PREFERRED + checksum_policy: PREFERRED + + # --- Worker 2 --- + thesis-worker-2: + name: "Worker Node 2" + hostname: "thesis-worker-2" + ip: "10.10.3.10" + route_gateway: "10.10.3.1" + route_interface: "ens4" + contains_setup: + - mft + - java21 + encryption_policy: PREFERRED + checksum_policy: PREFERRED + + # --- Router + thesis-router: + name: "Router" + hostname: "thesis-router" + ip: "10.10.1.1" + contains_setup: [] + + mft_services: + access_manager: + name: access-manager + port: 9001 + proxy_port: 60011 + config: "{{ tixel_root }}/config/access-manager.properties" + demo_user: demo + demo_pass: secret + api_user: admin + api_pass: verysecret + database: access_manager + database_user: tixel + database_pass: tixel + tixstream: + name: tixstream + port: 60002 + proxy_port: 60003 + config: "{{ tixel_root }}/config/tixstream.conf" + transfer_job_manager: + name: transfer-job-manager + port: 60000 + proxy_port: 60001 + config: "{{ tixel_root }}/config/transfer-job-manager.properties" + demo_user: demo + demo_pass: secret + api_user: admin + api_pass: verysecret + scheduler_properties: + - option: "custom.transfer-job-manager.job-scheduler-interval-ms" + line: "custom.transfer-job-manager.job-scheduler-interval-ms=1000" + - option: "custom.transfer-job-manager.max-parallel-incoming-jobs" + line: "custom.transfer-job-manager.max-parallel-incoming-jobs=4" + - option: "custom.transfer-job-manager.max-parallel-outgoing-jobs" + line: "custom.transfer-job-manager.max-parallel-outgoing-jobs=10" + - option: "custom.transfer-job-manager.min-reschedule-time-seconds" + line: "custom.transfer-job-manager.min-reschedule-time-seconds=1" + - option: "custom.transfer-job-manager.max-reschedule-time-seconds" + line: "custom.transfer-job-manager.max-reschedule-time-seconds=10" + - option: "custom.transfer-job-manager.max-retries" + line: "custom.transfer-job-manager.max-retries=100" + - option: "custom.transfer-job-manager.job-scheduler-interval-ms" + line: "custom.transfer-job-manager.job-scheduler-interval-ms=1000" + watchfolder_properties: + - option: "custom.transfer-job-manager.watchfolder-enabled" + line: "custom.transfer-job-manager.watchfolder-enabled=true" + load_balancing_properties: + - option: "custom.transfer-job-manager.load-balancing-enabled" + line: "custom.transfer-job-manager.load-balancing-enabled=true" + - option: "custom.tixstream.checksum-file-dir" + line: "custom.tixstream.checksum-file-dir={{ tixel_data_directory.path }}/tixstream" + - option: "custom.transfer-job-manager.max-parallel-incoming-jobs" + line: "custom.transfer-job-manager.max-parallel-incoming-jobs=3" + - option: "custom.transfer-job-manager.max-parallel-outgoing-jobs" + line: "custom.transfer-job-manager.max-parallel-outgoing-jobs=2" + database: transfer_job_manager + tixel_control_center: + name: tixel-control-center + port: 9010 + config: "{{ tixel_root }}/config/tixel-control-center.properties" + nginx: + name: nginx + config: "/etc/nginx/nginx.conf" + config_win: "{{ tixel_root }}/nginx/conf/nginx.conf" + log_dir: "/opt/tixel/logs/nginx" + user: "nginx" + group: "nginx" + fx_services: + access_manager: + name: access-manager + port: 9001 + proxy_port: 60011 + config: "{{ tixel_root }}/config/access-manager.properties" + config_v3: "{{ tixel_root_v3 }}/config/access-manager.properties" + database: access_manager + database_user: tixel + database_pass: tixel + tixstream_express_job_manager: + name: tixstream-express-job-manager + port: 30010 + nonssl_port: 30009 + config: "{{ tixel_root }}/config/tixstream-express-job-manager.properties" + database: tixstream_express_job_manager + database_user: tixel + database_pass: tixel + tixstream_fx: + name: tixstream-fx + config: "{{ tixel_root }}/config/tixstream-fx.properties" + fx_core: + name: fx-core + port: 30010 + nonssl_port: 30009 + config: "{{ tixel_root_v3 }}/config/fx-core.properties" + database: fx_core + database_user: tixel + database_pass: tixel + tixway: + name: tixway + config: "{{ tixel_root }}/config/ssg.config" + config_v3: "{{ tixel_root_v3 }}/config/ssg.config" + nginx: + name: nginx + config: "/etc/nginx/conf.d/tixstream-fx-https.on" + config_v3: "/etc/nginx/conf.d/tixstream-fx.conf" +# vim:ft=ansible diff --git a/infrastructure/ansible/inventory.ini b/infrastructure/ansible/inventory.ini new file mode 100755 index 0000000..eaa6375 --- /dev/null +++ b/infrastructure/ansible/inventory.ini @@ -0,0 +1,17 @@ +[router] +thesis-router ansible_host=192.168.122.43 ansible_user=baUser ansible_ssh_private_key_file='/home/pata/dev/privat/Go/BachelorThesis/bachelor-infra/infrastructure/tf-cloud-init' ansible_ssh_common_args='-o StrictHostKeyChecking=no' + +[workers] +thesis-worker-0 ansible_host=192.168.122.97 ansible_user=baUser ansible_ssh_private_key_file='/home/pata/dev/privat/Go/BachelorThesis/bachelor-infra/infrastructure/tf-cloud-init' ansible_ssh_common_args='-o StrictHostKeyChecking=no' +thesis-worker-1 ansible_host=192.168.122.219 ansible_user=baUser ansible_ssh_private_key_file='/home/pata/dev/privat/Go/BachelorThesis/bachelor-infra/infrastructure/tf-cloud-init' ansible_ssh_common_args='-o StrictHostKeyChecking=no' +thesis-worker-2 ansible_host=192.168.122.244 ansible_user=baUser ansible_ssh_private_key_file='/home/pata/dev/privat/Go/BachelorThesis/bachelor-infra/infrastructure/tf-cloud-init' ansible_ssh_common_args='-o StrictHostKeyChecking=no' + +[orchestrator] +thesis-worker-0 + +[sinks] +thesis-worker-1 +thesis-worker-2 + +[all:vars] +ansible_python_interpreter=/usr/bin/python3 diff --git a/infrastructure/ansible/mft.yml b/infrastructure/ansible/mft.yml new file mode 100644 index 0000000..d0ba851 --- /dev/null +++ b/infrastructure/ansible/mft.yml @@ -0,0 +1,70 @@ +- hosts: workers + gather_facts: True + vars: + share_root: "/share" + selinux_state: enforcing + vars_files: + - vars/static-vars-{{ ansible_distribution | lower }}.yml + - vars/samba.yml + - vars/proftpd.yml + - vars/smtplog.yml + - vars/certificates.yml + - vars/local.yml + become: yes + + pre_tasks: + - name: Check if the directory containing the bundle to install exists + local_action: + module: stat + path: "{{ configs.deployment_dir }}" + register: deployment_dir_exists + become: no + + - fail: + msg: Deployment directory does not exist {{ configs.deployment_dir }} + when: deployment_dir_exists.stat.exists == False + + - name: Check if the license to install exists + local_action: + module: find + path: "{{ configs.deployment_dir }}" + patterns: "*.WibuCmRaU" + file_type: file + register: found_licenses + become: no + + - fail: + msg: No license file found in {{ configs.deployment_dir }} + when: found_licenses.matched == 0 + + - name: List MFT packages + local_action: + module: find + path: "{{ configs.deployment_dir }}" + patterns: "tixstream-mft-*.tgz" + file_type: file + register: found_packages + become: no + + - fail: + msg: No MFT package found in {{ configs.deployment_dir }} + when: found_packages.matched == 0 + + - name: Set global facts + import_tasks: set-global-facts.yml + + roles: + - role: mft + - role: mft-codemeter + - role: mft-setup-mariadb + - role: mft-setup-smtplog + - role: smtplog + - role: mft-setup-nginx + - role: mft-tls-enable + - role: mft-create-certificates + - role: mft-create-test-files + - role: mft-restart-services + - role: mft-create-nodes + - role: mft-create-local-shares + +# vim:ft=ansible diff --git a/infrastructure/ansible/roles/blackhole/tasks/main.yml b/infrastructure/ansible/roles/blackhole/tasks/main.yml new file mode 100644 index 0000000..4165821 --- /dev/null +++ b/infrastructure/ansible/roles/blackhole/tasks/main.yml @@ -0,0 +1,29 @@ +- name: Kopiere Blackhole Script + template: + src: blackhole.sh.j2 + dest: /usr/local/bin/blackhole.sh + mode: "0755" + +- name: Deploye Systemd Service für Blackhole + copy: + dest: /etc/systemd/system/blackhole.service + content: | + [Unit] + Description=Thesis Blackhole Service (Cleanup) + After=network.target + + [Service] + Type=simple + ExecStart=/usr/local/bin/blackhole.sh + Restart=always + User=root + + [Install] + WantedBy=multi-user.target + +- name: Starte Blackhole Service + systemd: + name: blackhole + state: started + enabled: yes + daemon_reload: yes diff --git a/infrastructure/ansible/roles/blackhole/templates/blackhole.sh.j2 b/infrastructure/ansible/roles/blackhole/templates/blackhole.sh.j2 new file mode 100644 index 0000000..d756f65 --- /dev/null +++ b/infrastructure/ansible/roles/blackhole/templates/blackhole.sh.j2 @@ -0,0 +1,45 @@ +#!/bin/bash + +TARGET_DIR="/local_testdata/test-destination" + +THRESHOLD=60 +TARGET_USAGE=50 + +SLEEP_INTERVAL=2 +DELETE_BATCH=200 +SAFE_MINUTES=5 + +echo "[$(date)] Blackhole Monitor gestartet für $TARGET_DIR" + +while true; do + + CURRENT_USAGE=$(df -P "$TARGET_DIR" | awk 'NR==2 {print $5}' | tr -d '%') + + if (( CURRENT_USAGE > THRESHOLD )); then + echo "[$(date)] Disk usage ${CURRENT_USAGE}% -> starte Cleanup" + + while (( CURRENT_USAGE > TARGET_USAGE )); do + + find "$TARGET_DIR" \ + -type f \ + -mmin +$SAFE_MINUTES \ + -print0 \ + | head -z -n $DELETE_BATCH \ + | xargs -0 -r rm -f + + CURRENT_USAGE=$(df -P "$TARGET_DIR" | awk 'NR==2 {print $5}' | tr -d '%') + + echo "[$(date)] aktuelle Auslastung: ${CURRENT_USAGE}%" + + if ! find "$TARGET_DIR" -type f -mmin +$SAFE_MINUTES | head -n 1 | grep -q .; then + echo "[$(date)] Keine alten Dateien mehr zum Löschen" + break + fi + + done + + echo "[$(date)] Cleanup beendet" + fi + + sleep "$SLEEP_INTERVAL" +done diff --git a/infrastructure/ansible/roles/common/tasks/main.yml b/infrastructure/ansible/roles/common/tasks/main.yml new file mode 100644 index 0000000..2ed8f77 --- /dev/null +++ b/infrastructure/ansible/roles/common/tasks/main.yml @@ -0,0 +1,60 @@ +--- +- name: Update apt cache + apt: + update_cache: yes + cache_valid_time: 3600 + +- name: Install base-packets for all nodes + apt: + name: + - ca-certificates + - curl + - wget + - vim + - tree + - git + - unzip + - htop + - sysstat + - net-tools + - python3-pip + - python3-venv + - curl + - jq + - bc + - sysstat + - stress-ng + state: present + +- name: Install python-libraries (System-Level) + apt: + name: + - python3-pymysql + state: present + +- name: Ensure NTP/Timesync is running + service: + name: systemd-timesyncd + state: started + enabled: yes + +- name: Stelle sicher, dass das Universe Repository aktiv ist (für OpenJDK 8) + apt_repository: + repo: "deb http://archive.ubuntu.com/ubuntu/ noble universe" + state: present + +- name: Installiere Java 8 (OpenJDK JRE Headless) + apt: + name: openjdk-8-jre-headless + state: present + update_cache: yes + +- name: Add hosts to /etc/hosts file on Linux + lineinfile: + dest: /etc/hosts + regexp: "^.*{{ item.value.ip }}.*{{ item.value.hostname }}.*$" + line: "{{ item.value.ip }} {{ item.value.hostname }}" + state: present + when: ansible_os_family != "Windows" + become: true + with_dict: "{{ configs.host_config }}" diff --git a/infrastructure/ansible/roles/common/templates/hosts_block.j2 b/infrastructure/ansible/roles/common/templates/hosts_block.j2 new file mode 100644 index 0000000..8389e57 --- /dev/null +++ b/infrastructure/ansible/roles/common/templates/hosts_block.j2 @@ -0,0 +1,7 @@ +127.0.0.1 localhost + +# Automatisch generiert aus host_config +{% for hostname, config in configs.host_config.items() %} +{{ config.ip }} {{ config.hostname }} {{ hostname }} +{% endfor %} + diff --git a/infrastructure/ansible/roles/configure-ssh-sftp-server/tasks/main.yml b/infrastructure/ansible/roles/configure-ssh-sftp-server/tasks/main.yml new file mode 100644 index 0000000..bfd3fd7 --- /dev/null +++ b/infrastructure/ansible/roles/configure-ssh-sftp-server/tasks/main.yml @@ -0,0 +1,2 @@ +- include_tasks: sftp-ubuntu20.yml + when: ansible_distribution == "Ubuntu" diff --git a/infrastructure/ansible/roles/configure-ssh-sftp-server/tasks/sftp-ubuntu20.yml b/infrastructure/ansible/roles/configure-ssh-sftp-server/tasks/sftp-ubuntu20.yml new file mode 100644 index 0000000..c99e129 --- /dev/null +++ b/infrastructure/ansible/roles/configure-ssh-sftp-server/tasks/sftp-ubuntu20.yml @@ -0,0 +1,42 @@ +--- +- name: add sftp user + user: + name: "{{ sftpuser }}" + group: "{{ sftpgroup }}" + password: "{{ ftphash }}" + become: true + +- name: Make sure password authentification is enabled + lineinfile: + path: /etc/ssh/sshd_config + regexp: "^PasswordAuthentication" + line: "PasswordAuthentication yes" + state: present + become: true + +- name: Add sftp config to sshd_config + blockinfile: + path: /etc/ssh/sshd_config + block: | + Match User {{ sftpuser }} + ForceCommand internal-sftp + PasswordAuthentication yes + PermitTunnel no + AllowAgentForwarding no + AllowTcpForwarding no + X11Forwarding no + become: true + +- name: restart sshd-server + service: + name: sshd + state: restarted + become: true + when: ansible_distribution == "Ubuntu" and (ansible_facts['distribution_version'] == "22.04" or ansible_facts['distribution_version'] == "20.04") + +- name: restart ssh-server + service: + name: ssh + state: restarted + become: true + when: ansible_distribution == "Ubuntu" and ansible_facts['distribution_version'] == "24.04" diff --git a/infrastructure/ansible/roles/mft-codemeter/tasks/main.yml b/infrastructure/ansible/roles/mft-codemeter/tasks/main.yml new file mode 100644 index 0000000..ce9fb89 --- /dev/null +++ b/infrastructure/ansible/roles/mft-codemeter/tasks/main.yml @@ -0,0 +1,33 @@ +--- + +- name: Codemeter is started + service: + name: codemeter + state: restarted + +- name: Start tixstream to find out if a new license has to be installed + command: "/opt/tixel/tixstream/bin/tixstream --check-license --license-type 380" + register: license_ok + ignore_errors: True + +- name: Find CodeMeter license + local_action: find paths="{{ configs.deployment_dir }}" patterns="*.WibuCmRaU" file_type=file + become: false + register: all_codemeter_licenses + when: license_ok is failed + +- name: Get latest CodeMeter license + set_fact: + codemeter_license: "{{ all_codemeter_licenses.files | sort(attribute='mtime',reverse=true) | first }}" + when: license_ok is failed + +- name: copy license file + copy: src={{ codemeter_license.path }} dest={{ remote_deployment_dir }} + when: license_ok is failed + +- name: Install license + shell: cmu -i -f {{ remote_deployment_dir }}/{{ codemeter_license.path | basename }} + when: license_ok is failed + ignore_errors: True + +# vim:ft=ansible diff --git a/infrastructure/ansible/roles/mft-create-certificates/tasks/main.yml b/infrastructure/ansible/roles/mft-create-certificates/tasks/main.yml new file mode 100644 index 0000000..86b90f1 --- /dev/null +++ b/infrastructure/ansible/roles/mft-create-certificates/tasks/main.yml @@ -0,0 +1,203 @@ +--- +# NOTE: There are also ansible modules that help generating certificates +# http://docs.ansible.com/ansible/latest/list_of_crypto_modules.html +# +# but I trust direct calls to openssl more.. + +- name: Delete local temporary directory for certificate generation + file: + path: "{{ local_sign_dir }}" + state: absent + become: false + delegate_to: localhost + +- name: Create local temporary directory for certificate generation + file: + path: "{{ local_sign_dir }}" + state: directory + mode: 0755 + become: false + delegate_to: localhost + +- name: Remove certificates if they already exist + file: + path: "{{ item }}" + state: absent + become: false + delegate_to: localhost + with_items: + - "{{ cert_key_path.local }}" + - "{{ cert_csr_path }}" + - "{{ cert_single_cert_path }}" + - "{{ cert_cert_path.local }}" + - "{{ cert_pcks12_cert_path.local }}" + +- name: Use current_host_config.hostname as common name (CN) in certificate generation + set_fact: + cert_host_fields: "/C={{cert_country}}/ST={{cert_state}}/L={{cert_locality}}/O={{cert_organization}}/OU=sub/CN={{ current_host_config.hostname }}" + when: (current_host_config.contains_setup is not defined or current_host_config.contains_setup is defined) and ("mft-cluster-node" not in current_host_config.contains_setup or "fx-cluster" not in current_host_config.contains_setup) + +- name: Use current_host_config.cluster_hostname as common name (CN) in certificate generation if operating as a MFT cluster node + set_fact: + cert_host_fields: "/C={{cert_country}}/ST={{cert_state}}/L={{cert_locality}}/O={{cert_organization}}/OU=sub/CN={{ current_host_config.cluster_hostname }}" + when: current_host_config.contains_setup is defined and ("mft-cluster-node" in current_host_config.contains_setup or "fx-cluster" in current_host_config.contains_setup) + +- name: Create local temporary openssl config + template: + src: openssl.cnf.j2 + dest: "{{ cert_config_path }}" + become: false + delegate_to: localhost + +- name: Generate intermediate CSR + command: > + openssl req + -newkey rsa:{{ cert_key_size }} + -nodes + -keyout {{ cert_inter_key_path }} + -out {{ cert_inter_csr_path }} + -days {{ cert_days_valid }} + -subj "{{ cert_inter_fields }}" + args: + creates: "{{ cert_inter_csr_path }}" + become: false + delegate_to: localhost + +- name: Generate intermediate certificate + command: > + openssl x509 + -extfile {{ cert_config_path }} + -extensions v3_intermediate_ca + -CA {{ cert_ca_cert_path.local }} + -CAkey {{ cert_ca_key_path }} + -req -in {{ cert_inter_csr_path }} + -out {{ cert_inter_cert_path }} + -days {{ cert_days_valid }} + -CAcreateserial + args: + creates: "{{ cert_inter_cert_path }}" + become: false + delegate_to: localhost + +- name: Generate PKCS12 store + command: > + keytool -storetype PKCS12 -noprompt + -storepass {{ cert_pkcs12_pass }} + -importcert -file {{ cert_ca_cert_path.local }} + -alias ca + -keystore {{ cert_truststore_path.local }} + args: + creates: "{{ cert_truststore_path.local }}" + become: false + delegate_to: localhost + +- name: Create host key + command: > + openssl req -new + -newkey rsa:{{ cert_key_size }} + -nodes + -out {{ cert_csr_path }} + -keyout {{ cert_key_path.local }} + -days {{ cert_days_valid }} + -subj "{{ cert_host_fields }}" + -config "{{ cert_config_path }}" + -extensions v3_req + args: + creates: "{{ cert_key_path.local }}" + become: false + delegate_to: localhost + +- name: Create host certificate + command: > + openssl x509 + -CA {{ cert_inter_cert_path }} + -CAkey {{ cert_inter_key_path }} + -req -in {{ cert_csr_path }} + -out {{ cert_single_cert_path }} + -days {{ cert_days_valid }} + -CAcreateserial + -extfile "{{ cert_config_path }}" + -extensions v3_req + args: + creates: "{{ cert_single_cert_path }}" + become: false + delegate_to: localhost + +- name: Concat certificate chain + shell: > + cat {{ cert_single_cert_path }} + {{ cert_inter_cert_path }} + {{ cert_ca_cert_path.local }} > {{ cert_cert_path.local }} + args: + creates: "{{ cert_cert_path.local }}" + become: false + delegate_to: localhost + +- name: Export host certificate to PCKS12 format + command: > + openssl pkcs12 -export + -inkey {{ cert_key_path.local }} + -in {{ cert_cert_path.local }} + -chain -CAfile {{ cert_cert_path.local }} + -name {{ ansible_hostname }} + -out {{ cert_pcks12_cert_path.local }} + -passout pass:{{ cert_pkcs12_pass }} + -noiter -nomaciter + args: + creates: "{{ cert_pcks12_cert_path.local }}" + become: false + delegate_to: localhost + +- name: Copy certificates to host linux + copy: + src: "{{ item.local }}" + dest: "{{ item.remote }}" + owner: "{{ cert_owner }}" + group: "{{ cert_group }}" + mode: 0600 + with_items: + - "{{ cert_key_path }}" + - "{{ cert_cert_path }}" + - "{{ cert_pcks12_cert_path }}" + - "{{ cert_ca_cert_path }}" + - "{{ cert_truststore_path }}" + when: ansible_os_family != "Windows" and (fx_version is not defined or fx_version is version('3.0.0', '<')) + become: true + +- name: Copy certificates to host linux + copy: + src: "{{ item.local }}" + dest: "{{ item.remote_v3 }}" + owner: "{{ cert_owner }}" + group: "{{ cert_group }}" + mode: 0600 + with_items: + - "{{ cert_key_path }}" + - "{{ cert_cert_path }}" + - "{{ cert_pcks12_cert_path }}" + - "{{ cert_ca_cert_path }}" + - "{{ cert_truststore_path }}" + when: fx_version is defined and ansible_os_family != "Windows" and fx_version is version('3.0.0', '>=') + become: true + + +- name: Copy certificates to host windows + win_copy: + src: "{{ item.local }}" + dest: "{{ item.remote }}" + with_items: + - "{{ cert_key_path }}" + - "{{ cert_cert_path }}" + - "{{ cert_pcks12_cert_path }}" + - "{{ cert_ca_cert_path }}" + - "{{ cert_truststore_path }}" + when: ansible_os_family == "Windows" + ignore_errors: true + +- name: Disable selinux + command: setenforce 0 + ignore_errors: true + + + +# vim:ft=ansible diff --git a/infrastructure/ansible/roles/mft-create-certificates/templates/openssl.cnf.j2 b/infrastructure/ansible/roles/mft-create-certificates/templates/openssl.cnf.j2 new file mode 100644 index 0000000..5bf270b --- /dev/null +++ b/infrastructure/ansible/roles/mft-create-certificates/templates/openssl.cnf.j2 @@ -0,0 +1,28 @@ +[ v3_ca ] +# Extensions for a typical CA (`man x509v3_config`). +subjectKeyIdentifier = hash +authorityKeyIdentifier = keyid:always,issuer +basicConstraints = critical, CA:true +keyUsage = critical, digitalSignature, cRLSign, keyCertSign + +[ v3_intermediate_ca ] +# Extensions for a typical intermediate CA (`man x509v3_config`). +# pathlen 0: no more intermediates beyond this +subjectKeyIdentifier = hash +authorityKeyIdentifier = keyid:always,issuer +basicConstraints = critical, CA:true, pathlen:0 +keyUsage = critical, digitalSignature, cRLSign, keyCertSign + +[ req ] +distinguished_name = req_distinguished_name +req_extensions = v3_req +prompt = no + +[ req_distinguished_name ] +CN = {{ current_host_config.hostname }} + +[ v3_req ] +#basicConstraints = CA:FALSE +keyUsage = critical, digitalSignature, keyEncipherment +extendedKeyUsage = serverAuth, clientAuth +subjectAltName = DNS:{{ current_host_config.hostname }} diff --git a/infrastructure/ansible/roles/mft-create-local-shares/tasks/main.yml b/infrastructure/ansible/roles/mft-create-local-shares/tasks/main.yml new file mode 100644 index 0000000..7757c1c --- /dev/null +++ b/infrastructure/ansible/roles/mft-create-local-shares/tasks/main.yml @@ -0,0 +1,40 @@ +--- +- name: Get Share List + uri: + url: https://{{ ansible_fqdn }}:{{ configs.mft_services.transfer_job_manager.proxy_port }}/transfer-job-manager/v1/admin/shares + status_code: 200 + user: "{{ configs.mft_services.transfer_job_manager.api_user }}" + password: "{{ configs.mft_services.transfer_job_manager.api_pass }}" + force_basic_auth: yes + client_cert: "{{ cert_cert_path.remote }}" + client_key: "{{ cert_key_path.remote }}" + validate_certs: false + register: shares_response + +- name: Create Local Shares + uri: + url: https://{{ ansible_fqdn }}:{{ configs.mft_services.transfer_job_manager.proxy_port }}/transfer-job-manager/v1/admin/shares + method: POST + status_code: 201 + user: "{{ configs.mft_services.transfer_job_manager.api_user }}" + password: "{{ configs.mft_services.transfer_job_manager.api_pass }}" + force_basic_auth: yes + client_cert: "{{ cert_cert_path.remote }}" + client_key: "{{ cert_key_path.remote }}" + validate_certs: false + body: + "name": "{{ item.value.name }}" + "local_path": "{{ item.value.local_path }}" + "public_uri": "{{ item.value.public_uri }}" + "description": "{{ item.value.description }}" + "permissions": "{{ item.value.permissions }}" + "user_id": "{{ item.value.user_id }}" + "public": "{{ item.value.public }}" + "file_io_type": "{{ item.value.file_io_type }}" + body_format: json + vars: + existing: "{{ shares_response|json_query('json[*].name') }}" + when: item.value.name not in existing + with_dict: "{{ local_shares }}" + +# vim:ft=ansible diff --git a/infrastructure/ansible/roles/mft-create-nodes/tasks/main.yml b/infrastructure/ansible/roles/mft-create-nodes/tasks/main.yml new file mode 100644 index 0000000..0bd6429 --- /dev/null +++ b/infrastructure/ansible/roles/mft-create-nodes/tasks/main.yml @@ -0,0 +1,74 @@ +--- + +- name: Get node list, retry on error + uri: + url: https://{{ ansible_fqdn }}:{{ configs.mft_services.transfer_job_manager.proxy_port }}/transfer-job-manager/v1/admin/nodes + status_code: 200 + user: "{{ configs.mft_services.transfer_job_manager.api_user }}" + password: "{{ configs.mft_services.transfer_job_manager.api_pass }}" + force_basic_auth: yes + client_cert: "{{ cert_cert_path.remote }}" + client_key: "{{ cert_key_path.remote }}" + validate_certs: false + register: nodes_response + until: nodes_response.status == 200 + retries: 20 + delay: 5 + become: true + +- name: Create nodes on a host operating as MFT normally + uri: + url: https://{{ ansible_fqdn }}:{{ configs.mft_services.transfer_job_manager.proxy_port }}/transfer-job-manager/v1/admin/nodes + method: POST + status_code: 201 + user: "{{ configs.mft_services.transfer_job_manager.api_user }}" + password: "{{ configs.mft_services.transfer_job_manager.api_pass }}" + force_basic_auth: yes + client_cert: "{{ cert_cert_path.remote }}" + client_key: "{{ cert_key_path.remote }}" + validate_certs: false + body: + name: "{{ item.value.name }}" + address: "https://{{ item.value.hostname }}:{{ configs.mft_services.transfer_job_manager.proxy_port }}/transfer-job-manager/v1" + encryption_policy: "{{item.value.encryption_policy}}" + checksum_policy: "{{item.value.checksum_policy}}" + body_format: json + vars: + existing: "{{ nodes_response|json_query('json[*].name') }}" + when: + - item.value.name not in existing + - item.value.contains_setup is defined + - "'mft' in item.value.contains_setup" + with_dict: "{{ configs.host_config }}" + become: true + +- name: Create nodes on a host operating as a clustered MFT + uri: + url: https://{{ ansible_fqdn }}:{{ configs.mft_services.transfer_job_manager.proxy_port }}/transfer-job-manager/v1/admin/nodes + method: POST + status_code: 201 + user: "{{ configs.mft_services.transfer_job_manager.api_user }}" + password: "{{ configs.mft_services.transfer_job_manager.api_pass }}" + force_basic_auth: yes + client_cert: "{{ cert_cert_path.remote }}" + client_key: "{{ cert_key_path.remote }}" + validate_certs: false + body: + name: "{{ item.value.name }}" + address: "https://{{ item.value.cluster_hostname }}:{{ configs.mft_services.transfer_job_manager.proxy_port }}/transfer-job-manager/v1" + encryption_policy: "{{item.value.encryption_policy}}" + checksum_policy: "{{item.value.checksum_policy}}" + body_format: json + + vars: + existing: "{{ nodes_response|json_query('json[*].name') }}" + when: + - item.value.name not in existing + - "'spain' not in existing" + - item.value.contains_setup is defined + - "'mft-cluster-node' in item.value.contains_setup" + - item.value.hostname != 'valencia.tixeltec.de' + with_dict: "{{ configs.host_config }}" + become: true + +# vim:ft=ansible diff --git a/infrastructure/ansible/roles/mft-create-relay-shares/tasks/main.yml b/infrastructure/ansible/roles/mft-create-relay-shares/tasks/main.yml new file mode 100644 index 0000000..9a7ddd4 --- /dev/null +++ b/infrastructure/ansible/roles/mft-create-relay-shares/tasks/main.yml @@ -0,0 +1,49 @@ +--- + +- name: Get Share List + uri: + url: https://{{ ansible_fqdn }}:{{ configs.mft_services.transfer_job_manager.proxy_port }}/transfer-job-manager/v1/admin/shares + status_code: 200 + user: "{{ configs.mft_services.transfer_job_manager.api_user }}" + password: "{{ configs.mft_services.transfer_job_manager.api_pass }}" + force_basic_auth: yes + client_cert: "{{ cert_cert_path.remote }}" + client_key: "{{ cert_key_path.remote }}" + validate_certs: false + register: shares_response + until: shares_response.status == 200 + retries: 10 + delay: 2 + become: true + +- name: Create FTP share for relay + uri: + url: http://{{ ansible_fqdn }}:{{ configs.mft_services.transfer_job_manager.port }}/transfer-job-manager/v1/admin/shares + method: POST + status_code: 201 + user: "{{ configs.mft_services.transfer_job_manager.api_user }}" + password: "{{ configs.mft_services.transfer_job_manager.api_pass }}" + force_basic_auth: yes + validate_certs: false + body: { "name": "fxrelay", + "protocol": "FTP", + "host":"{{ current_host_config.fx_server_hostname }}", + "port":"21", + "username":"fxftp", + "password":"verysecret", + "directory":"", + "description":"ftp2fx", + "permissions":"6", + "public_uri": "relay_share", + "user_id":"1", + "public":"true", + "relay_share":"true", + "relay_server_url":"https://{{ current_host_config.fx_server_hostname }}:{{ configs.fx_services.tixstream_express_job_manager.port }}/fx", + "default_relay_recipient_email":"admin@tixeltec.com", + "relay_server_username":"demo@tixeltec.com", + "relay_server_password":"secret", + "file_io_type":"FTP" } + body_format: json + vars: + existing: "{{ shares_response|json_query('json[*].name') }}" + when: '"fxrelay" not in existing' diff --git a/infrastructure/ansible/roles/mft-create-test-files/files/create-test-files.sh b/infrastructure/ansible/roles/mft-create-test-files/files/create-test-files.sh new file mode 100755 index 0000000..6e60905 --- /dev/null +++ b/infrastructure/ansible/roles/mft-create-test-files/files/create-test-files.sh @@ -0,0 +1,21 @@ +#!/bin/bash + +dest=$1 +test_dir=$2 +tixstream_user=$4 +tixstream_group=$5 + +if [ "${dest}" == "" ]; then + dest="/tmp" +fi + +echo "this is a plain text dummy metadata file" >${dest}/metadata.txt + +truncate -s 5g ${dest}/${test_dir}/5g.mxf +truncate -s 1g ${dest}/${test_dir}/1g.mxf + +for i in {1..100}; do + dd if=/dev/urandom of=/local_testdata/test-source/small_$i.dat bs=1M count=10 status=none +done + +chown ${tixstream_user}:${tixstream_group} ${dest}/${test_dir}/* diff --git a/infrastructure/ansible/roles/mft-create-test-files/tasks/main.yml b/infrastructure/ansible/roles/mft-create-test-files/tasks/main.yml new file mode 100644 index 0000000..f819678 --- /dev/null +++ b/infrastructure/ansible/roles/mft-create-test-files/tasks/main.yml @@ -0,0 +1,50 @@ +--- + +# TODO: this is a duplicate of already existing role: ansible/roles/test-data + +- name: create test data directories + file: path={{ local_testdata_dir }}/{{ item }} + state=directory + owner="{{ localuser }}" + group="{{ localgroup }}" + mode=0755 + with_items: + - test-source + - test-destination + become: True + +- name: create recursive test data directories + file: path={{ local_testdata_dir }}/{{ item }} + state=directory + owner="{{ localuser }}" + group="{{ localgroup }}" + mode=0755 + with_items: + - test-source-recursive + become: True + +- name: create subdir 1&2 + file: path={{ local_testdata_dir }}/test-source-recursive/{{ item }} + state=directory + owner="{{ localuser }}" + group="{{ localgroup }}" + mode=0755 + with_items: + - subdir1 + - subdir2 + become: True + +- name: create subdir 1_1 & 1_2 + file: path={{ local_testdata_dir }}/test-source-recursive/subdir1/{{ item }} + state=directory + owner="{{ localuser }}" + group="{{ localgroup }}" + mode=0755 + with_items: + - subdir1_1 + - subdir1_2 + become: True + +- name: create test files + script: create-test-files.sh {{ local_testdata_dir }} test-source test-source-recursive "{{ localuser }}" "{{ localgroup }}" + become: True diff --git a/infrastructure/ansible/roles/mft-restart-services/tasks/main.yml b/infrastructure/ansible/roles/mft-restart-services/tasks/main.yml new file mode 100644 index 0000000..c2b8f4c --- /dev/null +++ b/infrastructure/ansible/roles/mft-restart-services/tasks/main.yml @@ -0,0 +1,52 @@ +--- + +- name: change configs dir permissions + ansible.builtin.raw: chmod +x /opt/tixel/config/* + ignore_errors: true + become: true + +- name: Make sure nginx is restarted + service: name=nginx state=restarted enabled=True + +- name: Add Debug option to tjm service file + ansible.builtin.lineinfile: + path: /usr/lib/systemd/system/transfer-job-manager.service + regexp: 'ExecStart=/usr/bin/java -Dloader.path=/opt/tixel/drivers/tjm -Dsun.misc.URLClassPath.disableJarChecking=true -Dfile.encoding=UTF-8 -Djava.security.egd=file:/dev/./urandom -Djavax.net.ssl.trustStore=/opt/tixel/config/trusted.p12 -Djavax.net.ssl.trustStorePassword=changeit -Djavax.net.ssl.keyStore=/opt/tixel/config/host.p12 -Djavax.net.ssl.keyStorePassword=changeit -Dlogging.config=/opt/tixel/config/tjm-logback-spring-prod.xml -jar /opt/tixel/transfer-job-manager/bin/transfer-job-manager.jar --spring.config.location=classpath:application.properties,file:/opt/tixel/config/transfer-job-manager.properties' + line: 'ExecStart=/usr/bin/java -Dloader.path=/opt/tixel/drivers/tjm -Dsun.misc.URLClassPath.disableJarChecking=true -Dfile.encoding=UTF-8 -Djava.security.egd=file:/dev/./urandom -Djavax.net.ssl.trustStore=/opt/tixel/config/trusted.p12 -Djavax.net.ssl.trustStorePassword=changeit -Djavax.net.ssl.keyStore=/opt/tixel/config/host.p12 -Djavax.net.ssl.keyStorePassword=changeit -Dlogging.config=/opt/tixel/config/tjm-logback-spring-prod.xml -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=0.0.0.0:5005 -jar /opt/tixel/transfer-job-manager/bin/transfer-job-manager.jar --spring.config.location=classpath:application.properties,file:/opt/tixel/config/transfer-job-manager.properties' + +- name: Add Debug option to am service file + ansible.builtin.lineinfile: + path: /usr/lib/systemd/system/access-manager.service + regexp: 'ExecStart=/usr/bin/java -Dsun.misc.URLClassPath.disableJarChecking=true -Dfile.encoding=UTF-8 -Djava.security.egd=file:/dev/./urandom -Djavax.net.ssl.trustStore=/opt/tixel/config/trusted.p12 -Djavax.net.ssl.trustStorePassword=changeit -jar /opt/tixel/access-manager/bin/access-manager.jar --spring.config.location=classpath:application.properties,file:/opt/tixel/config/access-manager.properties' + line: 'ExecStart=/usr/bin/java -Dsun.misc.URLClassPath.disableJarChecking=true -Dfile.encoding=UTF-8 -Djava.security.egd=file:/dev/./urandom -Djavax.net.ssl.trustStore=/opt/tixel/config/trusted.p12 -Djavax.net.ssl.trustStorePassword=changeit -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=0.0.0.0:5006 -jar /opt/tixel/access-manager/bin/access-manager.jar --spring.config.location=classpath:application.properties,file:/opt/tixel/config/access-manager.properties' + +- name: Add Debug option to tcc service file + ansible.builtin.lineinfile: + path: /usr/lib/systemd/system/tixel-control-center.service + regexp: 'ExecStart=/usr/bin/java -Dsun.misc.URLClassPath.disableJarChecking=true -Dfile.encoding=UTF-8 -Djava.security.egd=file:/dev/./urandom -Djavax.net.ssl.trustStore=/opt/tixel/config/trusted.p12 -Djavax.net.ssl.trustStorePassword=changeit -Djavax.net.ssl.keyStore=/opt/tixel/config/host.p12 -Djavax.net.ssl.keyStorePassword=changeit -jar /opt/tixel/tixel-control-center/bin/tixel-control-center.jar --spring.config.location=classpath:application.properties,file:/opt/tixel/config/tixel-control-center.properties' + line: 'ExecStart=/usr/bin/java -Dsun.misc.URLClassPath.disableJarChecking=true -Dfile.encoding=UTF-8 -Djava.security.egd=file:/dev/./urandom -Djavax.net.ssl.trustStore=/opt/tixel/config/trusted.p12 -Djavax.net.ssl.trustStorePassword=changeit -Djavax.net.ssl.keyStore=/opt/tixel/config/host.p12 -Djavax.net.ssl.keyStorePassword=changeit -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=0.0.0.0:5007 -jar /opt/tixel/tixel-control-center/bin/tixel-control-center.jar --spring.config.location=classpath:application.properties,file:/opt/tixel/config/tixel-control-center.properties' + +- name: reload systemctl + command: systemctl daemon-reload + +- name: Installiere Java 17 (für TIXstream Runtime) + apt: + name: openjdk-21-jre-headless + state: present +- name: Setze Java 17 als Standard (alternatives) + community.general.alternatives: + name: java + path: /usr/lib/jvm/java-21-openjdk-amd64/bin/java + link: /usr/bin/java + +- name: Restart MFT services + service: name={{ item.value.name }} state=restarted + with_dict: "{{ configs.mft_services }}" + +- name: Wait for tixel_control_center to be reachable + wait_for: host="{{ ansible_fqdn }}" port="{{ configs.mft_services.tixel_control_center.port }}" delay=1 timeout=200 + +- name: Wait for transfer_job_manager to be reachable + wait_for: host="{{ ansible_fqdn }}" port="{{ configs.mft_services.transfer_job_manager.port }}" delay=1 timeout=200 + +# vim:ft=ansible diff --git a/infrastructure/ansible/roles/mft-setup-mariadb/tasks/main.yml b/infrastructure/ansible/roles/mft-setup-mariadb/tasks/main.yml new file mode 100644 index 0000000..17a84c4 --- /dev/null +++ b/infrastructure/ansible/roles/mft-setup-mariadb/tasks/main.yml @@ -0,0 +1,134 @@ +--- + +- name: Set database server to localhost if undefined + set_fact: + database_server_ip: "127.0.0.1" + when: current_host_config.mariadb_server_ip is undefined + +- name: Set database server to localhost if defined + set_fact: + database_server_ip: "{{current_host_config.mariadb_server_ip}}" + when: current_host_config.mariadb_server_ip is defined + +- name: Set transfer job manager database properties + lineinfile: + dest: "{{ configs.mft_services.transfer_job_manager.config }}" + regexp: '^{{ item.option }}.*$' + line: "{{ item.line }}" + state: present + with_items: + - option: "spring.datasource.platform" + line: "spring.datasource.platform=mysql" + - option: "datasource.mysql.username" + line: "datasource.mysql.username=tixel" + - option: "datasource.mysql.password" + line: "datasource.mysql.password=tixel" + - option: "datasource.mysql.url" + line: "datasource.mysql.url=jdbc\\:mysql\\://{{ database_server_ip }}\\:3306/transfer_job_manager?useSSL=false" + when: "mft_version is version('2.2.0', '<=')" + +- name: Set access manager database properties + lineinfile: + dest: "{{ configs.mft_services.access_manager.config }}" + regexp: '^{{ item.option }}.*$' + line: "{{ item.line }}" + state: present + with_items: + - option: "spring.datasource.platform" + line: "spring.datasource.platform=mysql" + - option: "datasource.mysql.username" + line: "datasource.mysql.username=tixel" + - option: "datasource.mysql.password" + line: "datasource.mysql.password=tixel" + - option: "datasource.mysql.url" + line: "datasource.mysql.url=jdbc\\:mysql\\://{{ database_server_ip }}\\:3306/access_manager?useSSL=false" + when: "mft_version is version('2.2.0', '<=')" + +- name: Set transfer job manager database properties + lineinfile: + dest: "{{ configs.mft_services.transfer_job_manager.config }}" + regexp: '^{{ item.option }}.*$' + line: "{{ item.line }}" + state: present + with_items: + - option: "spring.datasource.platform" + line: "spring.datasource.platform=mysql" + - option: "datasource.mysql.username" + line: "datasource.mysql.username=tixel" + - option: "datasource.mysql.password" + line: "datasource.mysql.password=tixel" + - option: "datasource.mysql.url" + line: "datasource.mysql.url=jdbc\\:mysql\\://{{ database_server_ip }}\\:3306/transfer_job_manager" + when: "mft_version is version('2.2.0', '<=')" + +- name: Set access manager database properties + lineinfile: + dest: "{{ configs.mft_services.access_manager.config }}" + regexp: '^{{ item.option }}.*$' + line: "{{ item.line }}" + state: present + with_items: + - option: "spring.datasource.platform" + line: "spring.datasource.platform=mysql" + - option: "datasource.mysql.username" + line: "datasource.mysql.username=tixel" + - option: "datasource.mysql.password" + line: "datasource.mysql.password=tixel" + - option: "datasource.mysql.url" + line: "datasource.mysql.url=jdbc\\:mysql\\://{{ database_server_ip }}\\:3306/access_manager" + when: "mft_version is version('2.2.0', '<=')" + +- name: Set transfer job manager database properties + lineinfile: + dest: "{{ configs.mft_services.transfer_job_manager.config }}" + regexp: '^{{ item.option }}.*$' + line: "{{ item.line }}" + state: present + with_items: + - option: "spring.sql.init.platform" + line: "spring.sql.init.platform=mysql" + - option: "datasource.mysql.username" + line: "datasource.mysql.username=tixel" + - option: "datasource.mysql.password" + line: "datasource.mysql.password=tixel" + - option: "datasource.mysql.url" + line: "datasource.mysql.url=jdbc\\:mysql\\://{{ database_server_ip }}\\:3306/transfer_job_manager?useSSL=false" + when: mft_version is version('2.3.0', '>=') + +- name: Set access manager database properties + lineinfile: + dest: "{{ configs.mft_services.access_manager.config }}" + regexp: '^{{ item.option }}.*$' + line: "{{ item.line }}" + state: present + with_items: + - option: "spring.sql.init.platform" + line: "spring.sql.init.platform=mysql" + - option: "datasource.mysql.username" + line: "datasource.mysql.username=tixel" + - option: "datasource.mysql.password" + line: "datasource.mysql.password=tixel" + - option: "datasource.mysql.url" + line: "datasource.mysql.url=jdbc\\:mysql\\://{{ database_server_ip }}\\:3306/access_manager" + when: mft_version is version('2.3.0', '>=') and (ansible_distribution_major_version != "24" or ansible_distribution != "Rocky") + +- name: Set access manager database properties + lineinfile: + dest: "{{ configs.mft_services.access_manager.config }}" + regexp: '^{{ item.option }}.*$' + line: "{{ item.line }}" + state: present + with_items: + - option: "spring.sql.init.platform" + line: "spring.sql.init.platform=mariadb" + - option: "datasource.mariadb.username" + line: "datasource.mariadb.username=tixel" + - option: "datasource.mariadb.password" + line: "datasource.mariadb.password=tixel" + - option: "datasource.mariadb.url" + line: "datasource.mariadb.url=jdbc\\:mariadb\\://{{ database_server_ip }}\\:3306/access_manager" + when: mft_version is version('2.3.0', '>=') and (ansible_distribution_major_version == "24" or ansible_distribution == "Rocky") + + + +# vim:ft=ansible diff --git a/infrastructure/ansible/roles/mft-setup-nginx/handlers/main.yml b/infrastructure/ansible/roles/mft-setup-nginx/handlers/main.yml new file mode 100644 index 0000000..0925983 --- /dev/null +++ b/infrastructure/ansible/roles/mft-setup-nginx/handlers/main.yml @@ -0,0 +1,28 @@ +--- +- name: Restart nginx with config check + debug: msg="checking nginx config before restart" + changed_when: True + notify: + - Check nginx configuration + - Restart nginx + +- name: Reload nginx with config check + debug: msg="checking nginx config before reload" + changed_when: True + notify: + - Check nginx configuration + - Reload nginx + +- name: Check nginx configuration + command: "nginx -t" + register: result + changed_when: "result.rc != 0" + check_mode: no + +- name: Restart nginx + service: name=nginx state=restarted + +- name: Reload nginx + service: name=nginx state=reloaded + +# vim:ft=ansible diff --git a/infrastructure/ansible/roles/mft-setup-nginx/tasks/main.yml b/infrastructure/ansible/roles/mft-setup-nginx/tasks/main.yml new file mode 100644 index 0000000..92cf056 --- /dev/null +++ b/infrastructure/ansible/roles/mft-setup-nginx/tasks/main.yml @@ -0,0 +1,86 @@ +--- + +- sefcontext: + target: "{{ configs.mft_services.nginx.log_dir }}(/.*)?" + setype: httpd_sys_rw_content_t + state: present + when: ansible_distribution == 'CentOS' + +- name: Apply SELinux context changes + command: restorecon -R -v "{{ configs.mft_services.nginx.log_dir }}" + when: ansible_distribution == 'CentOS' + +- name: Allow nginx to access cifs shares + seboolean: name=httpd_use_cifs state=yes persistent=yes + when: ansible_distribution == 'CentOS' + +- name: Create nginx group for ubuntu + group: + name: "{{ configs.mft_services.nginx.user }}" + state: present + when: ansible_distribution == 'Ubuntu' or ansible_distribution == 'Debian' + +- name: Create nginx user for ubuntu + user: + name: "{{ configs.mft_services.nginx.user }}" + groups: "{{ configs.mft_services.nginx.group }}" + state: present + createhome: no + when: ansible_distribution == 'Ubuntu' or ansible_distribution == 'Debian' + +- name: Find nginx config + find: + paths: "{{ remote_deployment_dir }}" + patterns: nginx_https.conf + file_type: file + recurse: yes + register: found_nginx_config + +- name: Copy nginx configuration + command: cp {{ found_nginx_config.files[0].path }} {{ configs.mft_services.nginx.config }} + notify: + - Restart nginx with config check + +- name: Open port 60011 in nginx config + lineinfile: + path: "{{ configs.mft_services.nginx.config }}" + insertbefore: '[ \t]* access_log /var/log/nginx/access.log;' + line: ' listen {{ configs.mft_services.access_manager.proxy_port }};' + become: true + +- name: Add Access Manager forwarding in nginx configuration + blockinfile: + path: "{{ configs.mft_services.nginx.config }}" + insertafter: '[ \t]* access_log /var/log/nginx/access.log;' + block: | + location /access-manager/oauth/token { + proxy_pass http://127.0.0.1:9001/access-manager/oauth/token; + } + location /access-manager/v1/admin/clients { + proxy_pass http://127.0.0.1:9001/access-manager/v1/admin/clients; + } + location /access-manager/v1/greeting { + proxy_pass http://127.0.0.1:9001/access-manager/v1/greeting; + } + location /access-manager/v1/admin/roles { + proxy_pass http://127.0.0.1:9001/access-manager/v1/admin/roles; + } + location /access-manager/v1/admin/users { + proxy_pass http://127.0.0.1:9001/access-manager/v1/admin/users; + } + location /access-manager/v1/me { + proxy_pass http://127.0.0.1:9001/access-manager/v1/me; + } + location /access-manager/v1/admin/user-role-membership { + proxy_pass http://127.0.0.1:9001/access-manager/v1/admin/user-role-membership; + } + become: true + +- name: Set nginx config ownership + file: + path: "{{ configs.mft_services.nginx.config }}" + owner: "{{ configs.mft_services.nginx.user }}" + group: "{{ configs.mft_services.nginx.group }}" + mode: "0660" + +# vim:ft=ansible diff --git a/infrastructure/ansible/roles/mft-setup-smtplog/tasks/main.yml b/infrastructure/ansible/roles/mft-setup-smtplog/tasks/main.yml new file mode 100644 index 0000000..527082d --- /dev/null +++ b/infrastructure/ansible/roles/mft-setup-smtplog/tasks/main.yml @@ -0,0 +1,80 @@ +--- + +- name: Enable email notifications + lineinfile: + dest: "{{ configs.mft_services.transfer_job_manager.config }}" + regexp: '^custom.transfer-job-manager.email-notification-enabled.*$' + line: "custom.transfer-job-manager.email-notification-enabled=true" + state: present + +- name: Set smtp host + lineinfile: + dest: "{{ configs.mft_services.transfer_job_manager.config }}" + regexp: '^spring.mail.host.*$' + line: "spring.mail.host={{ current_host_config.smtplog_server_ip | default(current_host_config.ip) }}" + state: present + +- name: Set smtp port + lineinfile: + dest: "{{ configs.mft_services.transfer_job_manager.config }}" + regexp: '^spring.mail.port.*$' + line: "spring.mail.port={{ smtplog_port }}" + state: present + +- name: Set smtp user + lineinfile: + dest: "{{ configs.mft_services.transfer_job_manager.config }}" + regexp: '^spring.mail.username.*$' + line: "spring.mail.username=" + state: present + +- name: Set smtp password + lineinfile: + dest: "{{ configs.mft_services.transfer_job_manager.config }}" + regexp: '^spring.mail.password.*$' + line: "spring.mail.password=" + state: present + +- name: Set smtp authentication + lineinfile: + dest: "{{ configs.mft_services.transfer_job_manager.config }}" + regexp: '^spring.mail.properties.mail.smtp.auth.*$' + line: "spring.mail.properties.mail.smtp.auth=false" + state: present + +- name: Set smtp ssl trust + lineinfile: + dest: "{{ configs.mft_services.transfer_job_manager.config }}" + regexp: '^spring.mail.properties.mail.smtp.ssl.trust.*$' + line: "spring.mail.properties.mail.smtp.ssl.trust=*" + state: present + +- name: Set smtp starttls + lineinfile: + dest: "{{ configs.mft_services.transfer_job_manager.config }}" + regexp: '^spring.mail.properties.mail.smtp.starttls.enable.*$' + line: "spring.mail.properties.mail.smtp.starttls.enable=false" + state: present + +- name: Set smtp tls + lineinfile: + dest: "{{ configs.mft_services.transfer_job_manager.config }}" + regexp: '^spring.mail.tls.*$' + line: "spring.mail.tls=false" + state: present + +- name: Set smtp protocol + lineinfile: + dest: "{{ configs.mft_services.transfer_job_manager.config }}" + regexp: '^spring.mail.protocol.*$' + line: "spring.mail.protocol=smtp" + state: present + +- name: Set mail encoding + lineinfile: + dest: "{{ configs.mft_services.transfer_job_manager.config }}" + regexp: '^spring.mail.defaultEncoding.*$' + line: "spring.mail.defaultEncoding=UTF-8" + state: present + +# vim:ft=ansible diff --git a/infrastructure/ansible/roles/mft-tls-enable/tasks/main.yml b/infrastructure/ansible/roles/mft-tls-enable/tasks/main.yml new file mode 100644 index 0000000..c213c16 --- /dev/null +++ b/infrastructure/ansible/roles/mft-tls-enable/tasks/main.yml @@ -0,0 +1,16 @@ +--- +- name: Set TIXstream internal-client-tlsverify = 1 + lineinfile: + dest: "{{ configs.mft_services.tixstream.config }}" + regexp: '^internal-client-tlsverify.*$' + line: "internal-client-tlsverify = 1" + state: present + +- name: Set TIXstream receiver port in Transfer-Job-Manager config + lineinfile: + dest: "{{ configs.mft_services.transfer_job_manager.config }}" + regexp: '^custom.tixstream.internal.port.*$' + line: "custom.tixstream.internal.port={{ configs.mft_services.tixstream.proxy_port }}" + state: present + +# vim:ft=ansible diff --git a/infrastructure/ansible/roles/mft/tasks/main.yml b/infrastructure/ansible/roles/mft/tasks/main.yml new file mode 100644 index 0000000..85a06fa --- /dev/null +++ b/infrastructure/ansible/roles/mft/tasks/main.yml @@ -0,0 +1,128 @@ +--- + +- name: Create tixstream group + group: + name: "{{ smbgroup }}" + state: present + +- name: create tixstream user + user: + name: "{{ smbuser }}" + shell: /bin/bash + groups: "{{ smbgroup }}" + append: yes + +- name: create deployment directory + file: path={{ remote_deployment_dir }} state=directory + +- include_tasks: mft-ubuntu-24.yml + when: ansible_distribution == "Ubuntu" and ansible_facts['distribution_version'] == "24.04" + +- name: Print the package name + debug: + msg: "The box is {{ package_to_install }}" + +- unarchive: + src: "{{ package_to_install.path }}" + dest: "{{ remote_deployment_dir }}" + when: oldpackage is undefined and newpackage is undefined + +- unarchive: + src: "{{ package_to_install }}" + dest: "{{ remote_deployment_dir }}" + when: oldpackage is defined or newpackage is defined + +- name: List unarchived MFT bundle directory + find: + paths: "{{ remote_deployment_dir }}" + patterns: "tixstream-mft-ubuntu*" + file_type: directory + register: found_directories + +- name: Get latest unarchived MFT bundle directory + set_fact: + package_dir: "{{ found_directories.files | sort(attribute='mtime',reverse=true) | first }}" + +- name: Check if an old version should be deployed (install script has different name) + stat: path={{ package_dir.path }}/install_mft_bundle.sh + register: old_install_script + +- name: Set the correct name of the install script + set_fact: + install_script: "{{'install_mft_bundle.sh' if old_install_script.stat.exists else 'install.sh'}}" + +- name: Execute MFT install script + command: "{{ package_dir.path }}/{{ install_script }} --assumeyes -u {{ smbuser }} -g {{ smbgroup }}" + +- name: Set name to the nodes name in transfer-job-manager config + lineinfile: + dest: "{{ configs.mft_services.transfer_job_manager.config }}" + regexp: '^custom.transfer-job-manager.name.*$' + line: "custom.transfer-job-manager.name={{ item.value.name }}" + state: present + when: item.value.hostname == ansible_fqdn and item.value.contains_setup is defined and "mft" in item.value.contains_setup + with_dict: "{{ configs.host_config }}" + +- name: Set hostname to the nodes hostname in transfer-job-manager config for a normal MFT node + lineinfile: + dest: "{{ configs.mft_services.transfer_job_manager.config }}" + regexp: '^custom.transfer-job-manager.hostname.*$' + line: "custom.transfer-job-manager.hostname={{ item.value.hostname }}" + state: present + when: item.value.hostname == ansible_fqdn and item.value.contains_setup is defined and "mft" in item.value.contains_setup + with_dict: "{{ configs.host_config }}" + +- name: Set hostname to the nodes hostname in transfer-job-manager config for a clustered MFT node + lineinfile: + dest: "{{ configs.mft_services.transfer_job_manager.config }}" + regexp: '^custom.transfer-job-manager.hostname.*$' + line: "custom.transfer-job-manager.hostname={{ item.value.cluster_hostname }}" + state: present + when: item.value.hostname == ansible_fqdn and item.value.contains_setup is defined and "mft-cluster-node" in item.value.contains_setup + with_dict: "{{ configs.host_config }}" + +- name: Set transfer-job-manager job scheduling options in the config + lineinfile: + dest: "{{ configs.mft_services.transfer_job_manager.config }}" + regexp: '^{{ item.option }}.*$' + line: "{{ item.line }}" + state: present + with_items: "{{ configs.mft_services.transfer_job_manager.scheduler_properties }}" + +- name: Set transfer-job-manager sending max-datarate options in the config + lineinfile: + dest: "{{ configs.mft_services.transfer_job_manager.config }}" + regexp: '^custom.transfer-job-manager.default-sending-data-rate' + line: "custom.transfer-job-manager.default-sending-data-rate=10000000" + state: present + +- name: Set transfer-job-manager receiving max-datarate options in the config + lineinfile: + dest: "{{ configs.mft_services.transfer_job_manager.config }}" + regexp: '^custom.transfer-job-manager.default-receiving-data-rate' + line: "custom.transfer-job-manager.default-receiving-data-rate=10000000" + state: present + +- name: Enable transfer-job-manager watch folder feature + lineinfile: + dest: "{{ configs.mft_services.transfer_job_manager.config }}" + regexp: '^{{ item.option }}.*$' + line: "{{ item.line }}" + state: present + with_items: "{{ configs.mft_services.transfer_job_manager.watchfolder_properties }}" + +# Use command module because service module fails to just 'enable' the services +- name: Enable MFT services to start on boot for centos + command: chkconfig {{ item.value.name }} on + with_dict: "{{ configs.mft_services }}" + when: (ansible_distribution == 'CentOS') + +- name: Enable MFT services to start on boot for Ubuntu + service: + name: "{{ item.value.name }}" + enabled: yes + with_dict: "{{ configs.mft_services }}" + when: (ansible_distribution == 'Ubuntu') + + + # vim:ft=ansible diff --git a/infrastructure/ansible/roles/mft/tasks/mft-ubuntu-24.yml b/infrastructure/ansible/roles/mft/tasks/mft-ubuntu-24.yml new file mode 100644 index 0000000..e95df98 --- /dev/null +++ b/infrastructure/ansible/roles/mft/tasks/mft-ubuntu-24.yml @@ -0,0 +1,102 @@ +--- + +- name: Install package dependencies for MFT on Ubuntu Java 8 + apt: + name: openjdk-8-jdk + state: present + update_cache: yes + become: true + when: '"java8" in current_host_config.contains_setup' + +- name: Install package dependencies for MFT on Ubuntu Java 11 + apt: + name: openjdk-11-jdk + state: present + update_cache: yes + become: true + when: '"java11" in current_host_config.contains_setup' + +- name: Install package dependencies for MFT on Ubuntu Java 21 + apt: + name: openjdk-21-jre-headless + state: present + update_cache: yes + become: true + when: '"java21" in current_host_config.contains_setup' + + #- name: Get package dependencies for MFT on CentOS Java21 + # shell: "curl -O https://download.java.net/java/GA/jdk21.0.1/415e3f918a1f4062a0074a2794853d0d/12/GPL/openjdk-21.0.1_linux-x64_bin.tar.gz && sudo tar xvf openjdk-21.0.1_linux-x64_bin.tar.gz && sudo mv jdk-21.0.1 /opt/" + # args: + # chdir: /home/vagrant + #become: true + #when: '"java21" in current_host_config.contains_setup' + + #- name: Get package dependencies for MFT on CentOS Java21 + #shell: "sudo update-alternatives --install /usr/bin/java java /opt/jdk-21.0.1/bin/java 99" + #args: + # chdir: /opt/ + #become: true + #when: '"java21" in current_host_config.contains_setup' + +- name: List MFT packages + local_action: find paths="{{ configs.deployment_dir }}" patterns="tixstream-mft-{{ ansible_distribution|lower }}-24*.tgz" file_type=file + become: false + register: found_packages + +- name: Get latest package + set_fact: + package_to_install: "{{ found_packages.files | sort(attribute='mtime',reverse=true) | first }}" + when: package_name is undefined or package_name == "" + +- name: Set package name + set_fact: + package_to_install: "{{ configs.deployment_dir }}/{{ package_name }}" + when: package_name is defined and package_name != "" + +- name: Get MFT version + set_fact: + mft_version: "{{ package_to_install.path | basename | regex_search('[0-9]+\\.[0-9]+\\.[0-9]+(?:\\.[0-9]+)?') }}" + +- name: Check if Codemeter is installed + shell: "cmu -v" + args: + executable: /bin/bash + register: codemeter_installed + ignore_errors: true + when: mft_version is version('2.1.0', '>=') + +- name: Codemeter packages local + local_action: find paths="{{ configs.deployment_dir }}" patterns="codemeter*.deb" file_type=file + become: false + register: codemeter_packages + when: mft_version is version('2.1.0', '>=') + +- name: Set deb package + set_fact: + codemeter_deb_path: "{{ codemeter_packages.files | sort(attribute='mtime',reverse=true) | first }}" + when: mft_version is version('2.1.0', '>=') + +- name: Copy Codemeter deb to VM + copy: + src: "{{ codemeter_deb_path.path }}" + dest: "{{ remote_deployment_dir }}" + when: mft_version is version('2.1.0', '>=') + +- name: Codemeter packages remote + find: + paths: "{{ remote_deployment_dir }}" + patterns: "codemeter*.deb" + file_type: file + register: remote_codemeter_path + when: mft_version is version('2.1.0', '>=') + +- name: Set deb package remote + set_fact: + codemeter_remote_deb: "{{ remote_codemeter_path.files | sort(attribute='mtime',reverse=true) | first }}" + when: mft_version is version('2.1.0', '>=') + +- name: Install Codemeter + apt: + deb: "{{ codemeter_remote_deb.path }}" + state: present + when: codemeter_installed.rc is defined and codemeter_installed.rc != 0 and mft_version is version('2.1.0', '>=') diff --git a/infrastructure/ansible/roles/monitoring_baseline/handlers/main.yml b/infrastructure/ansible/roles/monitoring_baseline/handlers/main.yml new file mode 100644 index 0000000..85c7eac --- /dev/null +++ b/infrastructure/ansible/roles/monitoring_baseline/handlers/main.yml @@ -0,0 +1,6 @@ +--- +- name: Restart Watch-Tool + systemd: + name: watch-tool + state: restarted + daemon_reload: yes diff --git a/infrastructure/ansible/roles/monitoring_baseline/tasks/main.yml b/infrastructure/ansible/roles/monitoring_baseline/tasks/main.yml new file mode 100644 index 0000000..49fa698 --- /dev/null +++ b/infrastructure/ansible/roles/monitoring_baseline/tasks/main.yml @@ -0,0 +1,109 @@ +--- +- name: Kopiere Journal Dumper Script + template: + src: journal_dumper.sh.j2 + dest: /usr/local/bin/journal_dumper.sh + mode: "0755" + +- name: Deploye Systemd Services für Monitoring + copy: + dest: "/etc/systemd/system/{{ item }}.service" + content: | + [Unit] + Description=Thesis {{ item }} Service + After=network.target + + [Service] + Type=simple + ExecStart=/usr/local/bin/{{ item }}.sh + Restart=always + User=root + + [Install] + WantedBy=multi-user.target + loop: + - journal_dumper + +- name: Starte und aktiviere Monitoring Services + systemd: + name: "{{ item }}" + state: started + enabled: yes + daemon_reload: yes + loop: + - journal_dumper + +- name: Erstelle Temp-Verzeichnis + tempfile: + state: directory + register: tmpdir + +- name: Download tar.gz + get_url: + url: "https://codeberg.org/Pata1704/metrics-collector/releases/download/v1.1.0/metrics-collector_Linux_x86_64.tar.gz" + dest: "{{ tmpdir.path }}/metrics-collector.tar.gz" + retries: 3 + delay: 5 + +- name: Entpacke Binary + unarchive: + src: "{{ tmpdir.path }}/metrics-collector.tar.gz" + dest: "{{ tmpdir.path }}" + remote_src: yes + +- name: Installiere Binary + copy: + src: "{{ tmpdir.path }}/metrics-collector" + dest: /usr/local/bin/metrics-collector + mode: "0755" + remote_src: yes + +- name: Cleanup Temp + file: + path: "{{ tmpdir.path }}" + state: absent + +- name: Deploy systemd Service + copy: + dest: /etc/systemd/system/metrics-collector.service + mode: "0644" + content: | + [Unit] + Description=Thesis Metrics Collector + After=network-online.target + + [Service] + Type=simple + ExecStart=/usr/local/bin/metrics-collector + Restart=always + RestartSec=10 + TimeoutStopSec=60 + KillMode=mixed + KillSignal=SIGTERM + StandardOutput=journal + StandardError=journal + + [Install] + WantedBy=multi-user.target + register: service_file + +- name: Reload systemd + systemd: + daemon_reload: yes + when: service_file.changed + +- name: Enable und Start Service + systemd: + name: metrics-collector + state: started + enabled: yes + +- name: Prüfe Service-Status + command: systemctl is-active metrics-collector + register: service_check + changed_when: false + failed_when: service_check.stdout != "active" + +- name: Zeige Erfolg + debug: + msg: "Metrics Collector erfolgreich deployed!" diff --git a/infrastructure/ansible/roles/monitoring_baseline/templates/blackhole.sh.j2 b/infrastructure/ansible/roles/monitoring_baseline/templates/blackhole.sh.j2 new file mode 100644 index 0000000..8ef05ed --- /dev/null +++ b/infrastructure/ansible/roles/monitoring_baseline/templates/blackhole.sh.j2 @@ -0,0 +1,9 @@ +#!/bin/bash +TARGET="/local_testdata/test-destination" + +echo "Starte Blackhole auf $TARGET" + +while true; do + find "$TARGET" -type f -mmin +0.5 -delete + sleep 10 +done diff --git a/infrastructure/ansible/roles/monitoring_baseline/templates/config.yaml.j2 b/infrastructure/ansible/roles/monitoring_baseline/templates/config.yaml.j2 new file mode 100644 index 0000000..8d1d664 --- /dev/null +++ b/infrastructure/ansible/roles/monitoring_baseline/templates/config.yaml.j2 @@ -0,0 +1,111 @@ +export: + enabled: true + batch_size: 100 + export_interval: "30s" + retry_attempts: 5 + retry_backoff: "10s" + health_check_interval: "60s" + +localstorage: + enabled: true + db_path: "./watch.db" + rotation: + max_sizes_bytes: 100 * 1024 * 1024 + max_age_hours: 24 + max_files: 3 + check_interval_minuntes: 5 + archive_dir: "" + +elasticsearch: + enabled: false + url: "http://10.0.0.99:9200" + index: "watch" + username: "your-configured-user" + password: "your-super-secret-password" + api_key: "your-api-key" + timeout: 30 + +web_service: + enabled: true + host: "0.0.0.0" + port: 9090 + +system_metrics: + enabled: true + collect_cpu: true + collect_memory: true + collect_disk: true + collect_network: true + disk_paths: + - "/" + - "/var" + - "/home" + network_interfaces: + - "ens6" + collect_network_connections: true + collect_load_average: true + collect_tcp_stats: true + collect_filehandles: true + collect_disk_io: true + collect_network_latency: true + collect_bandwidth_usage: true + transfer_ports: 60003 + latency_test_hosts: "www.google.de" + +poll_interval_seconds: 30 +patterns_file: "./configs/patterns.yaml" + +logging: + level: "info" + file_path: "/var/log/system-monitor.log" + +drain3: + enabled: true + state_dir: "./drain3_states" + depth: 4 + sim_th: 0.4 + max_children: 100 + max_clusters: 1000 + save_interval: 60 + +services: + - name: "nginx" + service: "nginx.service" + enabled: true + since_time: "" + priority: "info" + +tools: + - name: "nginx-access" + log_file: "/var/log/nginx/access.log" + enabled: true + buffer_size: 200 + format: + name: "nginx_combined" + pattern: '^(?P\S+) \S+ \S+ \[(?P[^\]]+)\] "(?P\S+) (?P\S+) (?P\S+)" (?P\d+) (?P\d+) "(?P[^"]*)" "(?P[^"]*)"' + fields: + client_ip: "remote_addr" + timestamp: "time_local" + method: "request_method" + path: "request_uri" + protocol: "server_protocol" + status: "status" + body_bytes: "body_bytes_sent" + referer: "http_referer" + user_agent: "http_user_agent" + + - name: "nginx-error" + log_file: "/var/log/nginx/error.log" + enabled: true + buffer_size: 100 + format: + name: "nginx_error" + pattern: '^(?P\d{4}/\d{2}/\d{2} \d{2}:\d{2}:\d{2}) \[(?P\w+)\] (?P\d+)#(?P\d+): (?P.*)' + fields: + timestamp: "time" + level: "log_level" + pid: "process_id" + tid: "thread_id" + message: "error_message" + + diff --git a/infrastructure/ansible/roles/monitoring_baseline/templates/data_sink.sh.j2 b/infrastructure/ansible/roles/monitoring_baseline/templates/data_sink.sh.j2 new file mode 100644 index 0000000..40812b4 --- /dev/null +++ b/infrastructure/ansible/roles/monitoring_baseline/templates/data_sink.sh.j2 @@ -0,0 +1,15 @@ +#!/bin/bash +# Verzeichnis, in dem TIXstream die Dateien ablegt (anpassen!) +INCOMING_DIR="/data/tixel/incoming" + +echo "Starte Blackhole-Service für $INCOMING_DIR..." + +while true; do + # Lösche alle Dateien, die älter als 1 Minute sind (damit wir laufende Transfers nicht killen) + # Oder radikaler: Sobald der Transfer fertig ist (Tixstream benennt temporäre Dateien oft um). + # Wir nehmen hier sicherheitshalber Dateien, auf die seit 10s nicht zugegriffen wurde. + + find "$INCOMING_DIR" -type f -mmin +0.1 -delete + + sleep 10 +done diff --git a/infrastructure/ansible/roles/monitoring_baseline/templates/journal_dumper.sh.j2 b/infrastructure/ansible/roles/monitoring_baseline/templates/journal_dumper.sh.j2 new file mode 100644 index 0000000..d324f26 --- /dev/null +++ b/infrastructure/ansible/roles/monitoring_baseline/templates/journal_dumper.sh.j2 @@ -0,0 +1,11 @@ +#!/bin/bash +# Speichert Logs der relevanten Services (TJM und Tixstream Engine) +# -f: Follow (Live) +# -u: Unit filter +# --no-pager: Wichtig für Background-Prozesse +# -o json: Speichert strukturiertes JSON (perfekt für deine ML-Pipeline!) + +LOGfile="/var/log/thesis_tixstream_logs.json" + +# Wir loggen Tixstream Engine UND den Job Manager +exec journalctl -u tixstream -u transfer-job-manager -f -o json --no-pager >> "$LOGfile" diff --git a/infrastructure/ansible/roles/monitoring_baseline/templates/patterns.yaml.j2 b/infrastructure/ansible/roles/monitoring_baseline/templates/patterns.yaml.j2 new file mode 100644 index 0000000..3fac034 --- /dev/null +++ b/infrastructure/ansible/roles/monitoring_baseline/templates/patterns.yaml.j2 @@ -0,0 +1,165 @@ +patterns: + # =========================================================================== + # Common / Shared Patterns + # =========================================================================== + common: + extractors: + - name: "syslog_header" + regex: '^(\w{3} \d{2} \d{2}:\d{2}:\d{2}) (?P[^\s]+) (?P[^:]+):\s*(?P.*)$' + fields: + syslog_timestamp: "time:Jan 02 15:04:05" + hostname: "string" + process_info: "string" + message_rest: "string" + + - name: "timestamp_rfc3339" + regex: '(?P\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(?:\.\d+)?Z?)' + fields: + timestamp: "time:2006-01-02T15:04:05.000000Z" + + # =========================================================================== + # TIXstream Service + # Deckt ab: tsServicePattern, tsTransferIDPattern, tsDetailPattern1-4 + # =========================================================================== + tixstream: + extractors: + - name: "service_log_base" + regex: '^(?P\S+)\s+(?P\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}\.\d{6})\s+(?P.*)' + fields: + log_level: "string" + timestamp: "time:2006-01-02 15:04:05.000000" + message: "string" + + - name: "transfer_id_extraction" + regex: '^(?P\w{8}-\w{4}-\w{4}-\w{4}-\w{12})\s+(?P.*)' + fields: + transfer_id: "string" + message: "string" + + - name: "transfer_start_in" + regex: 'in: Transfer start (?P\d+/\d+) buffers=(?P\d+) files=(?P\d+) size=(?P[0-9.]+) MByte chunksize=(?P\d+) streams=(?P\d+) target-datarate=(?P[0-9.]+) MByte/s protocol=(?P\w+) dest=(?P\S+) sender-id=(?P\S+)' + fields: + thread_info: "string" # z.B. "1/4" - Typisierung hier schwierig, also String + buffers: "int" + file_count: "int" + size_mb: "float" + chunk_size: "int" + streams: "int" + target_rate: "float" + protocol: "string" + destination: "string" + sender_id: "string" + direction: "string" # Wir können statische Felder im Parser injecten oder hier als "implizit" betrachten + + - name: "transfer_start_remote_out" + regex: 'out: Start remote transfer to (?P[^\s]+) request executed, duration=(?P[0-9.]+) s' + fields: + target: "string" + duration: "float" + + - name: "transfer_start_out" + regex: 'out: Transfer start (?P\d+/\d+) buffers=(?P\d+) files=(?P\d+) size=(?P[0-9.]+) MByte chunksize=(?P\d+) streams=(?P\d+) target-datarate=(?P[0-9.]+) MByte/s protocol=(?P\w+) src=(?P\S+) receiver=(?P\S+)' + fields: + thread_info: "string" + buffers: "int" + file_count: "int" + size_mb: "float" + chunk_size: "int" + streams: "int" + target_rate: "float" + protocol: "string" + source: "string" + receiver: "string" + + - name: "transfer_start_generic" + regex: 'out: Start transfer (?P\d+/\d+), src=(?P[^ ]*) dest=(?P[^ ]*) item\[0\]=(?P[^ ]*) count=(?P\d+)' + fields: + thread_info: "string" + source: "string" + destination: "string" + item0: "string" + count: "int" + + # =========================================================================== + # Transfer Job Manager (TJM) + # Deckt ab: tjmServicePattern, tjmTransferNamePattern, tjmTransferIDPattern1/2 + # =========================================================================== + transfer-job-manager: + extractors: + - name: "service_log_base" + regex: '^(?P\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}\.\d{3})\s+(?P\S+)\s+(?P\d+).*?\[(?P[^\]]*)\]\s+\[(?P[^\]]*)\]\s+\[(?P[^\]]*)\]\s+(?P.*?)\s+:\s+(?P.*)' + fields: + timestamp: "time:2006-01-02 15:04:05.000" + log_level: "string" + pid: "int" + correlation_id: "string" + username: "string" + thread_id: "string" + java_class: "string" + message: "string" + + - name: "transfer_name_info" + regex: '^(?P\d{8}T\d{6}-[A-Za-z0-9]+-.+?-(?:in|out)) ?: (?P.*)$' + fields: + transfer_name_raw: "string" + message: "string" + + - name: "transfer_id_mid" + regex: '(?P\w{8}-\w{4}-\w{4}-\w{4}-\w{12}).*?(?P.*)' + fields: + transfer_id: "string" + message: "string" + + - name: "transfer_id_prefixed" + regex: '(?P.*)(?P\w{8}-\w{4}-\w{4}-\w{4}-\w{12}).*?(?P.*)' + fields: + prefix: "string" + transfer_id: "string" + message: "string" + + # =========================================================================== + # Access Manager & TCC + # Deckt ab: amServicePattern, tccServicePattern + # =========================================================================== + access-manager: + extractors: + - name: "spring_boot_log" + regex: '^(?P\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(?:\.\d+)?Z)\s+(?P\w+)\s+(?P\d+)\s+---\s+\[\s*(?P[^\]]*)\]\s+(?P[\w\.]+)\s*:\s+(?P.*)$' + fields: + timestamp: "time:2006-01-02T15:04:05.000000Z" + log_level: "string" + pid: "int" + thread_id: "string" + logger: "string" + message: "string" + + tixel-control-center: + extractors: + - name: "spring_boot_log" + regex: '^(?P\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(?:\.\d+)?Z)\s+(?P\w+)\s+(?P\d+)\s+---\s+\[\s*(?P[^\]]*)\]\s+(?P[\w\.]+)\s*:\s+(?P.*)$' + fields: + timestamp: "time:2006-01-02T15:04:05.000000Z" + log_level: "string" + pid: "int" + thread_id: "string" + logger: "string" + message: "string" + + # =========================================================================== + # Nginx + # Deckt ab: nginxAccessPattern + # =========================================================================== + nginx: + extractors: + - name: "access_log" + regex: '^(?P\S+)\s+\S+\s+(?P\S+)\s+\[(?P[^\]]+)\]\s+"(?P[^"]+)"\s+(?P\d+)\s+(?P\d+|-)\s*(?:"(?P[^"]*)"\s+"(?P[^"]*)")?' + fields: + client_ip: "string" + remote_user: "string" + timestamp_nginx: "string" + request: "string" + status_code: "int" + bytes_sent: "int" + referer: "string" + user_agent: "string" + diff --git a/infrastructure/ansible/roles/monitoring_baseline/templates/resource_logger.sh.j2 b/infrastructure/ansible/roles/monitoring_baseline/templates/resource_logger.sh.j2 new file mode 100644 index 0000000..88168cd --- /dev/null +++ b/infrastructure/ansible/roles/monitoring_baseline/templates/resource_logger.sh.j2 @@ -0,0 +1,57 @@ +#!/bin/bash + +OUTPUT_FILE="/var/log/thesis_training_metrics.csv" +IFACE="ens4" +PING_TARGET="10.10.2.10" + +echo "timestamp,cpu_user,cpu_sys,cpu_wait,ram_used_mb,disk_read_iops,disk_write_iops,net_rx_kb_s,net_tx_kb_s,rtt_ms" >"$OUTPUT_FILE" + +get_disk_iops() { + awk '/(sd[a-z]|vd[a-z] |nvme[0-9]n[0-9])$/ {r+=$4; w+=$8} END {print r+0,w+0}' /proc/diskstats +} + +get_net_bytes() { + cat "/sys/class/net/$IFACE/statistics/$1" +} + +OLD_RX=$(get_net_bytes rx_bytes) +OLD_TX=$(get_net_bytes tx_bytes) +read OLD_DR OLD_DW <<<$(get_disk_iops) +OLD_TS=$(date +%s%N) + +while true; do + VMSTAT=$(vmstat 1 2 | tail -1) + CPU_US=$(echo "$VMSTAT" | awk '{print $13}') + CPU_SY=$(echo "$VMSTAT" | awk '{print $14}') + CPU_WA=$(echo "$VMSTAT" | awk '{print $16}') + + RAM_USED=$(free -m | awk '/Mem:/ {print $3}') + + RTT=$(ping -c 1 -W 1 -q "$PING_TARGET" | awk -F'/' '/rtt/ {printf "%.2f", $4}') + [ -z "$RTT" ] && RTT="0.0" + + NEW_TS=$(date +%s%N) + NEW_RX=$(get_net_bytes rx_bytes) + NEW_TX=$(get_net_bytes tx_bytes) + read NEW_DR NEW_DW <<<$(get_disk_iops) + + DT=$(echo "scale=3; ($NEW_TS - $OLD_TS) / 1000000000" | bc) + + RX_RATE=$(echo "scale=2; ($NEW_RX - $OLD_RX) / 1024 / $DT" | bc) + TX_RATE=$(echo "scale=2; ($NEW_TX - $OLD_TX) / 1024 / $DT" | bc) + + READ_IOPS=$(echo "scale=2; ($NEW_DR - $OLD_DR) / $DT" | bc) + WRITE_IOPS=$(echo "scale=2; ($NEW_DW - $OLD_DW) / $DT" | bc) + + TIMESTAMP=$(date +"%Y-%m-%d %H:%M:%S") + + echo "$TIMESTAMP,$CPU_US,$CPU_SY,$CPU_WA,$RAM_USED,$READ_IOPS,$WRITE_IOPS,$RX_RATE,$TX_RATE,$RTT" >>"$OUTPUT_FILE" + + OLD_RX=$NEW_RX + OLD_TX=$NEW_TX + OLD_DR=$NEW_DR + OLD_DW=$NEW_DW + OLD_TS=$NEW_TS + + sleep 5 +done diff --git a/infrastructure/ansible/roles/monitoring_baseline/templates/resource_logger_old.sh.j2 b/infrastructure/ansible/roles/monitoring_baseline/templates/resource_logger_old.sh.j2 new file mode 100644 index 0000000..15ed16d --- /dev/null +++ b/infrastructure/ansible/roles/monitoring_baseline/templates/resource_logger_old.sh.j2 @@ -0,0 +1,63 @@ +# #!/bin/bash +# +# OUTPUT_FILE="/var/log/thesis_resource_baseline.csv" +# +# if [ ! -f "$OUTPUT_FILE" ]; then +# echo "timestamp,cpu_percent,ram_kb,command" > "$OUTPUT_FILE" +# fi +# +# while true; do +# PID=$(pgrep -x "watch-tool") +# +# if [ ! -z "$PID" ]; then +# TIMESTAMP=$(date +"%Y-%m-%d %H:%M:%S") +# +# STATS=$(pidstat -p $PID -u -r 1 1 | tail -1) +# +# eval $(ps -p $PID -o %cpu,rss --no-headers | awk '{print "CPU="$1; print "RSS_KB="$2}') +# +# echo "$TIMESTAMP,$CPU,$RSS_KB,watch-tool" >> "$OUTPUT_FILE" +# fi +# +# sleep 10 +# done + +OUTPUT_FILE="/var/log/thesis_resource_usage.csv" +HEADER="timestamp,system_cpu_usage,system_ram_used_mb,tixstream_cpu,tixstream_rss_mb,watchtool_cpu,watchtool_rss_mb" + +if [ ! -f "$OUTPUT_FILE" ]; then + echo "$HEADER" >"$OUTPUT_FILE" +fi + +get_process_stats() { + local pattern=$1 + local pid=$(pgrep -f "$pattern" | head -1) + + if [ ! -z "$pid" ]; then + ps -p "$pid" -o %cpu,rss --no-headers | awk '{printf "%.2f,%.2f", $1, $2/1024}' + else + echo "0.00,0.00" + fi +} + +get_system_stats() { + local cpu_sys=$(top -bn1 | grep "Cpu(s)" | awk '{print $2 + $4}') + + local ram_sys=$(free -m | awk '/Mem:/ {print $3}') + + echo "$cpu_sys,$ram_sys" +} + +while true; do + TIMESTAMP=$(date +"%Y-%m-%d %H:%M:%S") + + SYS_STATS=$(get_system_stats) + + TIX_STATS=$(get_process_stats "transfer-job-manager") + + TOOL_STATS=$(get_process_stats "watch-tool") + + echo "$TIMESTAMP,$SYS_STATS,$TIX_STATS,$TOOL_STATS" >>"$OUTPUT_FILE" + + sleep 5 +done diff --git a/infrastructure/ansible/roles/monitoring_baseline/templates/run_thesis_scenario.sh.j2 b/infrastructure/ansible/roles/monitoring_baseline/templates/run_thesis_scenario.sh.j2 new file mode 100644 index 0000000..0d81372 --- /dev/null +++ b/infrastructure/ansible/roles/monitoring_baseline/templates/run_thesis_scenario.sh.j2 @@ -0,0 +1,68 @@ +#!/bin/bash + +W1="10.10.2.10" # Worker 1 (Big Files) +W2="10.10.3.10" # Worker 2 (Small Files) +MY_IP="10.10.1.10" # Worker 0 (Myself) + +# TIXstream Config +TIX="/opt/tixel/tixstream/bin/tix" +# Quelle Testdaten (auf W0) +SRC_LARGE="/data/testfiles/large/5G.dat" +SRC_SMALL="/data/testfiles/small/" + +SSH_OPTS="-o StrictHostKeyChecking=no -i /home/baUser/.ssh/id_rsa" + +SCENARIO_LOG="/var/log/thesis_scenario_ground_truth.csv" +echo "timestamp,event_type,description" >> "$SCENARIO_LOG" + +log_event() { + echo "$(date +"%Y-%m-%d %H:%M:%S"),$1,$2" >> "$SCENARIO_LOG" +} + +echo "Starting Thesis-Baseline-Scenario..." + +while true; do + log_event "NORMAL_LOAD" "Upload Large File to W1" + $TIX submit -s "$SRC_LARGE" -t "tixel://$W1/incoming/" --wait + + sleep 10 + + log_event "NORMAL_LOAD" "Upload Small Files to W2" + $TIX submit -s "$SRC_SMALL" -t "tixel://$W2/incoming/" -r --wait + + sleep 10 + + # --------------------------------------------------------- + # 3. Interferenz: Eingehender Traffic (W1 -> W0) + # Wir triggern das REMOTE auf W1 via SSH! + # --------------------------------------------------------- + log_event "INTERFERENCE" "Incoming Transfer from W1" + # W1 sendet eine generierte Datei an mich zurück + # (Voraussetzung: Auf W1 existiert /data/testfiles/large/1G.dat) + ssh $SSH_OPTS baUser@$W1 "$TIX submit -s /data/testfiles/large/1G.dat -t tixel://$MY_IP/incoming/ --wait" + + # Aufräumen bei mir (W0 ist KEIN Blackhole, wir löschen kontrolliert) + rm -rf /data/tixel/incoming/* + + sleep 10 + + # --------------------------------------------------------- + # 4. Stress-Test: Bidirektional (W0->W1 UND W2->W0) + # Simuliert "Busy Day" (Normal, aber hohe Last) + # --------------------------------------------------------- + log_event "HIGH_LOAD" "Bidirectional Transfer" + # Start Upload Background + $TIX submit -s "$SRC_LARGE" -t "tixel://$W1/incoming/" & + PID_UP=$! + + # Trigger Download Background + ssh $SSH_OPTS baUser@$W2 "$TIX submit -s /data/testfiles/small/ -t tixel://$MY_IP/incoming/ -r" & + + # Warten bis Upload fertig + wait $PID_UP + + # Aufräumen + rm -rf /data/tixel/incoming/* + + sleep 30 +done diff --git a/infrastructure/ansible/roles/monitoring_baseline/templates/scenario_orchestrator.sh.j2 b/infrastructure/ansible/roles/monitoring_baseline/templates/scenario_orchestrator.sh.j2 new file mode 100644 index 0000000..b09295a --- /dev/null +++ b/infrastructure/ansible/roles/monitoring_baseline/templates/scenario_orchestrator.sh.j2 @@ -0,0 +1,85 @@ +#!/bin/bash + +W0="thesis-worker-0" +W1="thesis-worker-1" +W2="thesis-worker-2" +PORT="60000" +AUTH="YWRtaW46dmVyeXNlY3JldA==" + +LOG="/var/log/thesis_scenario_ground_truth.csv" +[ ! -f "$LOG" ] && echo "timestamp,action,source,target" >"$LOG" + +log_gt() { echo "$(date +"%Y-%m-%d %H:%M:%S"),$1,$2,$3" >>"$LOG"; } + +wait_for_api() { + local host=$1 + echo "Prüfe Verfügbarkeit von TIXstream auf $host..." + + while true; do + HTTP_CODE=$(curl --write-out "%{http_code}" --silent --output /dev/null \ + --url "http://$host:$PORT/transfer-job-manager/v1/jobs?limit=1" \ + --header "Authorization: Basic $AUTH") + + if [ "$HTTP_CODE" -eq 200 ]; then + echo "API auf $host ist ONLINE (Code 200)." + break + else + echo "Warte auf API ($host)... Status: $HTTP_CODE. Retry in 10s." + sleep 10 + fi + done +} + +trigger_job() { + local host=$1 + local dest_sys=$2 + local file_uri=$3 + local desc=$4 + + DATA=$(jq -n \ + --arg desc "$desc" \ + --arg dest_sys "$dest_sys" \ + --arg file "$file_uri" \ + '{ + "description": $desc, + "schedule": "NOW", + "destination_system": $dest_sys, + "destination_share": "local_sync_destination", + "source_file_uris": [$file], + "wait_for_publish": false, + "flat_file_mode_disabled": false + }') + + curl --request POST \ + --url "http://$host:$PORT/transfer-job-manager/v1/jobs" \ + --header "Authorization: Basic $AUTH" \ + --header 'Content-Type: application/json' \ + --data "$DATA" --silent >/dev/null +} + +wait_for_api "$W0" + +wait_for_api "$W1" +wait_for_api "$W2" + +echo "Alle Systeme bereit. Starte Baseline-Szenario Loop..." +log_gt "SYSTEM_READY" "ALL" "Orchestrator started" +INCOMING_DIR="/local_testdata/test-destination" + +while true; do + log_gt "START_LARGE" "W0" "W1" + trigger_job "$W0" "Worker Node 1" "local_sync_source/5g.mxf" "Thesis Large File" + sleep 60 + + log_gt "START_SMALL" "W0" "W2" + for i in {1..10}; do + trigger_job "$W0" "Worker Node 2" "local_sync_source/small_$i.dat" "Thesis Small File $i" + done + sleep 30 + + log_gt "START_INTERFERENCE" "W1" "W0" + trigger_job "$W1" "Worker Node 0" "local_sync_source/5g.mxf" "Interference Load" + + sleep 60 + rm -rf "${INCOMING_DIR:?}/"* +done diff --git a/infrastructure/ansible/roles/monitoring_baseline/templates/watch-tool.service.j2 b/infrastructure/ansible/roles/monitoring_baseline/templates/watch-tool.service.j2 new file mode 100644 index 0000000..dc96c24 --- /dev/null +++ b/infrastructure/ansible/roles/monitoring_baseline/templates/watch-tool.service.j2 @@ -0,0 +1,13 @@ +[Unit] +Description=Thesis Watch Tool - Metrics Collector +After=network.target + +[Service] +User=root +WorkingDirectory=/opt/watch-tool +ExecStart=/opt/watch-tool/watch-tool +Restart=always +RestartSec=5 + +[Install] +WantedBy=multi-user.target diff --git a/infrastructure/ansible/roles/network_simulation/defaults/main.yaml b/infrastructure/ansible/roles/network_simulation/defaults/main.yaml new file mode 100644 index 0000000..73277b6 --- /dev/null +++ b/infrastructure/ansible/roles/network_simulation/defaults/main.yaml @@ -0,0 +1,119 @@ +network_scenarios: + # --------------------------------------------------------------------------- + # 00. Baseline + # --------------------------------------------------------------------------- + baseline: + description: "Normalzustand" + + # --------------------------------------------------------------------------- + # 01. Slow Connection + # --------------------------------------------------------------------------- + slow-connection: + description: "Langsam & Latenz (Satellit)" + interfaces: + ens4: + - { + root: true, + type: "tbf", + args: "rate 256kbit burst 1540 latency 50ms", + } + ens5: + - { + root: true, + type: "tbf", + args: "rate 256kbit burst 1540 latency 50ms", + } + ens6: + - { root: true, handle: "1:", type: "netem", args: "delay 300ms" } + - { + parent: "1:1", + handle: "10:", + type: "tbf", + args: "rate 512kbit burst 1540 latency 50ms", + } + + # --------------------------------------------------------------------------- + # 02. High Latency + # --------------------------------------------------------------------------- + high-latency: + description: "Hohe Latenz" + interfaces: + ens4: + - { + root: true, + type: "netem", + args: "delay 200ms 20ms distribution normal", + } + ens5: + - { + root: true, + type: "netem", + args: "delay 200ms 20ms distribution normal", + } + ens6: + - { + root: true, + type: "netem", + args: "delay 350ms 30ms distribution normal", + } + + # --------------------------------------------------------------------------- + # 03. Packet Loss + # --------------------------------------------------------------------------- + packet-loss: + description: "Paketverlust" + interfaces: + ens4: [{ root: true, type: "netem", args: "loss 15% 10%" }] + ens5: [{ root: true, type: "netem", args: "loss 15% 10%" }] + ens6: [{ root: true, type: "netem", args: "loss 5% 2%" }] + + # --------------------------------------------------------------------------- + # 06. Congestion + # --------------------------------------------------------------------------- + congestion: + description: "Überlastung (Delay + Loss + Rate Limit)" + interfaces: + ens4: + - { + root: true, + handle: "1:", + type: "netem", + args: "delay 50ms 20ms loss 3% 5%", + } + - { + parent: "1:1", + handle: "10:", + type: "tbf", + args: "rate 2mbit burst 32kbit latency 800ms", + } + ens5: + - { + root: true, + handle: "1:", + type: "netem", + args: "delay 50ms 20ms loss 3% 5%", + } + - { + parent: "1:1", + handle: "10:", + type: "tbf", + args: "rate 2mbit burst 32kbit latency 800ms", + } + + # --------------------------------------------------------------------------- + # 07. Partial Outage (IPTables Block) + # --------------------------------------------------------------------------- + partial-outage: + description: "Verbindung W0 <-> W1 tot" + blocks: + - { src: "ens4", dst: "ens5" } + - { src: "ens5", dst: "ens4" } + interfaces: + ens6: [{ root: true, type: "netem", args: "delay 10ms" }] + + # --------------------------------------------------------------------------- + # 08. Flapping + # --------------------------------------------------------------------------- + flapping: + description: "Wackelkontakt (30s an/aus)" + flapping_enabled: true diff --git a/infrastructure/ansible/roles/network_simulation/tasks/main.yml b/infrastructure/ansible/roles/network_simulation/tasks/main.yml new file mode 100644 index 0000000..2d34857 --- /dev/null +++ b/infrastructure/ansible/roles/network_simulation/tasks/main.yml @@ -0,0 +1,64 @@ +--- +- name: "Szenario-Info: {{ network_scenarios[scenario].description }}" + debug: + msg: "Activating Szenario '{{ scenario }}'" + +# --- 1. CLEANUP + +- name: Stop Flapping Service (falls aktiv) + systemd: + name: flapping_simulation + state: stopped + enabled: no + ignore_errors: true + +- name: Reset Traffic Control + shell: "tc qdisc del dev {{ item }} root" + loop: [ens4, ens5, ens6] + ignore_errors: true + changed_when: false + +- name: Reset IPTables Blocks + iptables: + chain: FORWARD + action: flush + changed_when: false + +# --- 2. INSTALL FLAPPING + +- name: Installing Flapping script & service + block: + - template: + src: flapping_service.sh.j2 + dest: /usr/local/bin/flapping_simulation.sh + mode: "0755" + - template: + src: flapping.service.j2 + dest: /etc/systemd/system/flapping_simulation.service + - systemd: + name: flapping_simulation + state: started + daemon_reload: yes + when: network_scenarios[scenario].flapping_enabled | default(false) + +# --- 3. APPLY TRAFFIC CONTROL + +- name: Apply Complex TC Rules + shell: > + tc qdisc add dev {{ item.0.key }} + {% if item.1.root | default(false) %}root{% else %}parent {{ item.1.parent }}{% endif %} + {% if item.1.handle is defined %}handle {{ item.1.handle }}{% endif %} + {{ item.1.type }} + {{ item.1.args }} + loop: "{{ network_scenarios[scenario].interfaces | default({}) | dict2items | subelements('value') }}" + when: network_scenarios[scenario].interfaces is defined + +# --- 4. APPLY IPTABLES BLOCKS --- + +- name: Apply Static Blocks + iptables: + chain: FORWARD + in_interface: "{{ item.src }}" + out_interface: "{{ item.dst }}" + jump: DROP + loop: "{{ network_scenarios[scenario].blocks | default([]) }}" diff --git a/infrastructure/ansible/roles/network_simulation/templates/flapping.service.j2 b/infrastructure/ansible/roles/network_simulation/templates/flapping.service.j2 new file mode 100644 index 0000000..0a41bfa --- /dev/null +++ b/infrastructure/ansible/roles/network_simulation/templates/flapping.service.j2 @@ -0,0 +1,11 @@ +[Unit] +Description=Network Flapping Simulation +After=network.target + +[Service] +ExecStart=/usr/local/bin/flapping_simulation.sh +ExecStop=/usr/bin/iptables -D FORWARD -i ens4 -o ens5 -j DROP ; /usr/bin/iptables -D FORWARD -i ens5 -o ens4 -j DROP +Restart=always + +[Install] +WantedBy=multi-user.target diff --git a/infrastructure/ansible/roles/network_simulation/templates/flapping_service.sh.j2 b/infrastructure/ansible/roles/network_simulation/templates/flapping_service.sh.j2 new file mode 100644 index 0000000..7b2ff25 --- /dev/null +++ b/infrastructure/ansible/roles/network_simulation/templates/flapping_service.sh.j2 @@ -0,0 +1,10 @@ +#!/bin/bash +while true; do + iptables -I FORWARD 1 -i ens4 -o ens5 -j DROP + iptables -I FORWARD 1 -i ens5 -o ens4 -j DROP + sleep 30 + + iptables -D FORWARD -i ens4 -o ens5 -j DROP 2>/dev/null || true + iptables -D FORWARD -i ens5 -o ens4 -j DROP 2>/dev/null || true + sleep 30 +done diff --git a/infrastructure/ansible/roles/router/tasks/main.yml b/infrastructure/ansible/roles/router/tasks/main.yml new file mode 100644 index 0000000..b05af5e --- /dev/null +++ b/infrastructure/ansible/roles/router/tasks/main.yml @@ -0,0 +1,57 @@ +--- +- name: Aktiviere IPv4 Forwarding (Kernel) + sysctl: + name: net.ipv4.ip_forward + value: "1" + sysctl_set: yes + state: present + reload: yes + +- name: Installiere iptables-persistent + apt: + name: iptables-persistent + state: present + +- name: Spüle existierende IPTables Regeln + iptables: + chain: "{{ item }}" + flush: yes + loop: + - INPUT + - FORWARD + - OUTPUT + +- name: Ermittle WAN Interface + shell: ip route show default | awk '/default/ {print $5}' + register: wan_interface + changed_when: false + +- name: Aktiviere Masquerading (NAT) auf dem WAN Interface + iptables: + table: nat + chain: POSTROUTING + out_interface: "{{ wan_interface.stdout }}" + jump: MASQUERADE + +- name: Erlaube Forwarding für internes Netz (10.10.0.0/16) + iptables: + chain: FORWARD + source: 10.10.0.0/16 + destination: 10.10.0.0/16 + jump: ACCEPT + +- name: Erlaube Forwarding von Intern ins Internet (Established) + iptables: + chain: FORWARD + ctstate: ESTABLISHED,RELATED + jump: ACCEPT + +- name: Erlaube Forwarding von Intern ins Internet (New) + iptables: + chain: FORWARD + source: 10.10.0.0/16 + out_interface: "{{ wan_interface.stdout }}" + jump: ACCEPT + +- name: Speichere IPTables Regeln dauerhaft + shell: netfilter-persistent save diff --git a/infrastructure/ansible/roles/smtplog/handlers/main.yml b/infrastructure/ansible/roles/smtplog/handlers/main.yml new file mode 100644 index 0000000..777250b --- /dev/null +++ b/infrastructure/ansible/roles/smtplog/handlers/main.yml @@ -0,0 +1,13 @@ +--- + +- name: Restart smtplog + service: + name: smtplog + state: restarted + +- name: Restart smtpweb + service: + name: smtpweb + state: restarted + +# vim:ft=ansible diff --git a/infrastructure/ansible/roles/smtplog/tasks/main.yml b/infrastructure/ansible/roles/smtplog/tasks/main.yml new file mode 100644 index 0000000..3a1f9b0 --- /dev/null +++ b/infrastructure/ansible/roles/smtplog/tasks/main.yml @@ -0,0 +1,175 @@ +--- + +- name: Set current_host_config variable to access parameters referencing this host + set_fact: + current_host_config: "{{ item.value }}" + when: item.value.hostname == ansible_fqdn + with_dict: "{{ configs.host_config }}" + +- name: install python-setuptools for Python interpreter + package: + name: python-setuptools + state: present + become: true + when: ansible_distribution_major_version == "7" + +- name: Deinstall postfix + package: + name: postfix + state: absent + become: true + ignore_errors: true + +- name: Install python 3.6 + package: + name: python36 + state: present + become: true + when: ansible_distribution == "CentOS" + +#Pip module has a parameter for system packages but it was added in 2.17 which might +# be to new for some developer work stations +# +- name: Install aiosmtpd for pip3 + command: pip3 install --break-system-packages aiosmtpd + become: true + when: ansible_distribution == "Ubuntu" and ansible_distribution_major_version == "24" + +- name: Install aiosmtpd for pip3 + command: pip3 install aiosmtpd + become: true + when: (ansible_distribution == "Ubuntu" and (ansible_distribution_major_version == "20" or ansible_distribution_major_version == "22")) + +- name: Install aiosmtpd for pip3 + command: pip3 install aiosmtpd + become: true + when: ((ansible_os_family == "RedHat" and (ansible_distribution_major_version == "7" or ansible_distribution_major_version == "8")) or ansible_distribution == "Rocky" ) + +- name: Create smtplog directory + file: + path: "{{ remote_deployment_dir }}/smtplog" + state: directory + +- name: Find smtpservices package + local_action: + module: find + paths: "{{ configs.deployment_dir }}" + patterns: "smtplog*.zip" + file_type: file + register: found_packages + become: false + +- name: Order packages to install + set_fact: + latest_package: "{{ found_packages.files | sort(attribute='mtime',reverse=true) | first }}" + +- name: Unpack smtpservice + unarchive: + src: "{{ latest_package.path }}" + dest: "{{ remote_deployment_dir }}/smtplog" + +- name: Set the smtplog/smtpweb script location + find: + path: "{{ remote_deployment_dir }}/smtplog" + pattern: "smtplog*" + file_type: directory + register: smtplog_deploy_dir + +- name: Set smtplog/smtpweb path + set_fact: + smtplog_path: "{{ smtplog_deploy_dir.files | map(attribute='path') | join('') }}" + +- name: Install smtplog script + copy: + src: "{{ smtplog_path }}/smtplog.py" + dest: /usr/local/bin/smtplog.py + owner: root + group: root + mode: 0755 + remote_src: true + become: true + +- name: Install smtplog systemd unit + copy: + src: "{{ smtplog_path }}/smtplog.service" + dest: "{{ smtplog_service_file }}" + owner: root + group: root + mode: 0644 + remote_src: true + become: true + +- name: Set smtplog log directory + lineinfile: + dest: "{{ smtplog_service_file }}" + regexp: '^WorkingDirectory.*$' + line: "WorkingDirectory={{ smtplog_logdir }}" + state: present + become: true + +- name: Set smtplog service start command line + lineinfile: + dest: "{{ smtplog_service_file }}" + regexp: '^ExecStart.*$' + line: "ExecStart={{ smtplog_dir }}/smtplog.py -a {{ current_host_config.smtplog_server_ip | default(current_host_config.ip) }} -d {{smtplog_maildir}} -p {{ smtplog_port }}" + state: present + become: true + +- name: Create log directory + file: + path: "{{ smtplog_logdir }}" + state: directory + mode: 0755 + become: true + +- name: Install smtpweb script + copy: + src: "{{ smtplog_path }}/smtpweb.py" + dest: /usr/local/bin/smtpweb.py + owner: root + group: root + mode: 0755 + remote_src: true + become: true + +- name: Install smtpweb systemd unit + copy: + src: "{{ smtplog_path }}/smtpweb.service" + dest: "{{ smtpweb_service_file }}" + owner: root + group: root + mode: 0644 + remote_src: true + become: true + +- name: Set smtpweb log directory + lineinfile: + dest: "{{ smtpweb_service_file }}" + regexp: '^WorkingDirectory.*$' + line: "WorkingDirectory={{ smtpweb_logdir }}" + state: present + become: true + +- name: Set smtpweb service start command line + lineinfile: + dest: "{{ smtpweb_service_file }}" + regexp: '^ExecStart.*$' + line: "ExecStart={{ smtplog_dir }}/smtpweb.py -a 127.0.0.1 -d {{smtplog_maildir}} -p {{ smtpweb_port }}" + state: present + become: true + +- name: Create smptweb log directory + file: + path: "{{ smtpweb_logdir }}" + state: directory + mode: 0755 + become: true + +- name: Start and enable smtplog + service: name={{ item }} state=started enabled=True + with_items: + - smtplog + - smtpweb + become: true + +# vim:ft=ansible diff --git a/infrastructure/ansible/roles/transfer_node/handlers/main.yml b/infrastructure/ansible/roles/transfer_node/handlers/main.yml new file mode 100644 index 0000000..98c870a --- /dev/null +++ b/infrastructure/ansible/roles/transfer_node/handlers/main.yml @@ -0,0 +1,4 @@ +- name: Restart Proftpd + service: + name: proftpd + state: restarted diff --git a/infrastructure/ansible/roles/transfer_node/tasks/main.yml b/infrastructure/ansible/roles/transfer_node/tasks/main.yml new file mode 100644 index 0000000..d786286 --- /dev/null +++ b/infrastructure/ansible/roles/transfer_node/tasks/main.yml @@ -0,0 +1,100 @@ +--- +- name: Install MariaDB server and client + apt: + name: + - mariadb-server + - python3-mysqldb + state: present + +- name: Start and activate MariaDB + service: + name: mariadb + state: started + enabled: yes + +- name: Erstelle TIXstream Datenbanken + community.mysql.mysql_db: + name: "{{ item }}" + state: present + login_unix_socket: /var/run/mysqld/mysqld.sock + loop: + - transfer_job_manager + - access_manager + become: true + +- name: Erstelle DB User 'tixel' (localhost) + community.mysql.mysql_user: + name: tixel + password: tixel + host: "localhost" + priv: "*.*:ALL" + state: present + login_unix_socket: /var/run/mysqld/mysqld.sock + become: true + +- name: Erstelle DB User 'tixel' (Any Host) + community.mysql.mysql_user: + name: tixel + password: tixel + host: "%" + priv: "*.*:ALL" + state: present + login_unix_socket: /var/run/mysqld/mysqld.sock + become: true + +- name: Install Nginx + apt: + name: nginx + state: present + +- name: Start and activate Nginx + service: + name: nginx + state: started + enabled: yes + +- name: Install ProFTPD with MySQL Modul + apt: + name: + - proftpd-core + - proftpd-mod-mysql + - proftpd-mod-crypto + state: present + +- name: Create FTP Group + group: + name: ftpgroup + state: present + +- name: Create FTP User + user: + name: ftpuser + group: ftpgroup + shell: /bin/false + home: /var/www/upload + create_home: yes + +- name: Create Upload-Dir + file: + path: /var/www/upload + state: directory + owner: ftpuser + group: ftpgroup + mode: "0775" + +- name: Konfiguriere ProFTPD + template: + src: proftpd.conf.j2 + dest: /etc/proftpd/proftpd.conf + owner: root + group: root + mode: "0644" + notify: Restart Proftpd + +- name: Installiere System-Abhängigkeiten für TIXstream (C++ Binaries) + apt: + name: + - libssh2-1-dev + - libssh2-1 + state: present + update_cache: yes diff --git a/infrastructure/ansible/roles/transfer_node/templates/proftpd.conf.j2 b/infrastructure/ansible/roles/transfer_node/templates/proftpd.conf.j2 new file mode 100644 index 0000000..e69de29 diff --git a/infrastructure/ansible/set-global-facts.yml b/infrastructure/ansible/set-global-facts.yml new file mode 100644 index 0000000..3a47482 --- /dev/null +++ b/infrastructure/ansible/set-global-facts.yml @@ -0,0 +1,6 @@ +--- +- name: Set current_host_config variable to access parameters referencing this host + set_fact: + current_host_config: "{{ item.value }}" + when: item.value.hostname == inventory_hostname + with_dict: "{{ configs.host_config }}" diff --git a/infrastructure/ansible/simulate.yml b/infrastructure/ansible/simulate.yml new file mode 100644 index 0000000..2a7a4bc --- /dev/null +++ b/infrastructure/ansible/simulate.yml @@ -0,0 +1,8 @@ +--- +- name: Network Simulation Controller + hosts: router + become: true + vars: + scenario: "baseline" + roles: + - network_simulation diff --git a/infrastructure/ansible/site.yml b/infrastructure/ansible/site.yml new file mode 100644 index 0000000..f2fb351 --- /dev/null +++ b/infrastructure/ansible/site.yml @@ -0,0 +1,24 @@ +--- +- name: Configure Common Base + hosts: all + become: true + roles: + - common + +- name: Setup Transfer Nodes & Pipeline + hosts: workers + become: true + roles: + - transfer_node + +- name: Setup Orchestrator (Worker-0) + hosts: orchestrator + become: true + roles: + - monitoring_baseline + +- name: Setup Sinks (Worker-1/2) + hosts: sinks + become: true + roles: + - blackhole diff --git a/infrastructure/ansible/test_scenarios.yml b/infrastructure/ansible/test_scenarios.yml new file mode 100644 index 0000000..d2ea6f2 --- /dev/null +++ b/infrastructure/ansible/test_scenarios.yml @@ -0,0 +1,48 @@ +--- +- name: Test Network Scenarios + hosts: localhost + gather_facts: no + vars: + router_ip: "192.168.122.125" + worker_ips: + - "192.168.122.174" + - "192.168.122.203" + ssh_key: "../tf-cloud-init" + scenarios: + - baseline + - slow-connection + - high-latency + - packet-loss + - jitter + test_duration: 30 + + tasks: + - name: Run scenario tests + loop: "{{ scenarios }}" + loop_control: + loop_var: scenario + block: + - name: Apply scenario {{ scenario }} + command: "./apply_scenario.sh {{ router_ip }} {{ scenario }} {{ ssh_key }}" + args: + chdir: "{{ playbook_dir }}" + + - name: Wait for scenario to stabilize + pause: + seconds: 10 + + - name: Collect metrics + command: > + ./monitor_network.sh + "{{ worker_ips | join(',') }}" + "{{ ssh_key }}" + "{{ test_duration }}" + args: + chdir: "{{ playbook_dir }}" + + - name: Archive metrics + command: > + mv metrics_*.csv + results/{{ scenario }}_{{ ansible_date_time.epoch }}/ + args: + creates: "results/{{ scenario }}_{{ ansible_date_time.epoch }}/" diff --git a/infrastructure/ansible/vars/aws.yml b/infrastructure/ansible/vars/aws.yml new file mode 100644 index 0000000..84b771c --- /dev/null +++ b/infrastructure/ansible/vars/aws.yml @@ -0,0 +1,6 @@ +instance_type: t2.small +security_group: aws-group # Change the security group name here +image: ami-337be65c # CentOS7 image +region: eu-central-1 +count: 1 +creator: diff --git a/infrastructure/ansible/vars/certificates.yml b/infrastructure/ansible/vars/certificates.yml new file mode 100644 index 0000000..cebcf5d --- /dev/null +++ b/infrastructure/ansible/vars/certificates.yml @@ -0,0 +1,52 @@ +--- + +cert_ca_name: "tixel-test-ca.pem" +cert_ca_key_name: "tixel-test-ca-key.pem" +cert_path: "/opt/tixel/config" +cert_path_v3: "/opt/tixstream-fx/config" +local_sign_dir: "/tmp/ansible-cert-sign/{{ansible_hostname}}" +cert_config_path: "{{local_sign_dir}}/openssl.cnf" +cert_ca_key_path: "{{ configs.deployment_dir }}/{{ cert_ca_key_name }}" +cert_ca_cert_path: + local: "{{ configs.deployment_dir }}/{{ cert_ca_name }}" + remote: "{{cert_path}}/trusted.pem" + remote_v3: "{{cert_path_v3}}/trusted.pem" +cert_inter_key_path: "{{local_sign_dir}}/inter-key.pem" +cert_inter_csr_path: "{{local_sign_dir}}/inter.csr" +cert_inter_cert_path: "{{local_sign_dir}}/inter-crt.pem" +cert_truststore_path: + local: "{{local_sign_dir}}/trusted.p12" + remote: "{{cert_path}}/trusted.p12" + remote_v3: "{{cert_path_v3}}/trusted.p12" + +cert_key_path: + local: "{{local_sign_dir}}/{{ansible_hostname}}-key.pem" + remote: "{{cert_path}}/host-key.pem" + remote_v3: "{{cert_path_v3}}/host-key.pem" + +cert_csr_path: "{{local_sign_dir}}/{{ansible_hostname}}.csr" +cert_single_cert_path: "{{local_sign_dir}}/{{ansible_hostname}}-single-crt.pem" +cert_cert_path: + local: "{{local_sign_dir}}/{{ansible_hostname}}-crt.pem" + remote: "{{cert_path}}/host-crt.pem" + remote_v3: "{{cert_path_v3}}/host-crt.pem" + +cert_pcks12_cert_path: + local: "{{local_sign_dir}}/{{ansible_hostname}}.p12" + remote: "{{cert_path}}/host.p12" + remote_v3: "{{cert_path_v3}}/host.p12" + +cert_owner: "tixstream" +cert_group: "tixstream" +cert_pkcs12_pass: "changeit" + +cert_key_size: "2048" +cert_days_valid: "365" +cert_country: "DE" +cert_state: "Niedersachsen" +cert_locality: "Hannover" +cert_organization: "Tixel" +cert_ca_fields: "/C={{cert_country}}/ST={{cert_state}}/L={{cert_locality}}/O={{cert_organization}}/OU=main/CN=ansible-root-ca" +cert_inter_fields: "/C={{cert_country}}/ST={{cert_state}}/L={{cert_locality}}/O={{cert_organization}}/OU=sub/CN=ansible-inter-ca" + +# vim:ft=ansible diff --git a/infrastructure/ansible/vars/cluster.yml b/infrastructure/ansible/vars/cluster.yml new file mode 100644 index 0000000..730126b --- /dev/null +++ b/infrastructure/ansible/vars/cluster.yml @@ -0,0 +1,6 @@ +--- + +pacemaker_user: hacluster +pacemaker_pass: hacluster + +# vim:ft=ansible diff --git a/infrastructure/ansible/vars/demovm.yml b/infrastructure/ansible/vars/demovm.yml new file mode 100644 index 0000000..e841b16 --- /dev/null +++ b/infrastructure/ansible/vars/demovm.yml @@ -0,0 +1,11 @@ +--- + +vagrant_hosts: + - hostname: "{{ ansible_fqdn }}" + name: "{{ ansible_fqdn }}" + ip: 127.0.0.1 + common_ip: 127.0.0.1 + +samba_server_ip: 127.0.0.1 + +# vim:ft=ansible diff --git a/infrastructure/ansible/vars/fx-all-parameters.yml b/infrastructure/ansible/vars/fx-all-parameters.yml new file mode 100644 index 0000000..6f2c63c --- /dev/null +++ b/infrastructure/ansible/vars/fx-all-parameters.yml @@ -0,0 +1,34 @@ +tjxm_parameters_all: + - option: "tixstream-express-job-manager.metadata-generator" + line: "tixstream-express-job-manager.metadata-generator=/opt/tixel/plugins/bmf-generator/createbmf.py" + - option: "tixstream-express-job-manager.metadata-options" + line: "tixstream-express-job-manager.metadata-options=NONE,AUTO_GENERATED,USER_INPUT,USER_INPUT_MANDATORY" + - option: "tixstream-express-job-manager.job-history-authorization" + line: "tixstream-express-job-manager.job-history-authorization=all" + - option: "tixstream-express-job-manager.create-accounting-information-on-lock" + line: "tixstream-express-job-manager.create-accounting-information-on-lock=true" + - option: "tixstream-express-job-manager.accounting-data-path" + line: "tixstream-express-job-manager.accounting-data-path=/opt/tixel/data/locked-jobs" + - option: "tixstream-express-job-manager.default-modify-description-mode" + line: "tixstream-express-job-manager.default-modify-description-mode=false" + - option: "tixstream-express-job-manager.default-modify-reference-mode" + line: "tixstream-express-job-manager.default-modify-reference-mode=false" + +fx_parameters_all: + - option: "custom.tixstream-fx.job-reference-entries-file" + line: "custom.tixstream-fx.job-reference-entries-file=/opt/tixel/config/references.json" + - option: "custom.tixstream-fx.metadata-enabled" + line: "custom.tixstream-fx.metadata-enabled=true" + - option: "custom.tixstream-fx.metadata-editor-enabled" + line: "custom.tixstream-fx.metadata-editor-enabled=true" + - option: "custom.tixstream-fx.metadata-editor-directory" + line: "custom.tixstream-fx.metadata-editor-directory=/opt/tixel/plugins/editor" + - option: "custom.tixstream-fx.metadata-editor-base-url" + line: "custom.tixstream-fx.metadata-editor-base-url=http://127.0.0.1:${server.port}/tixstream-fx/" + - option: "custom.tixstream-fx.job-history-visibility" + line: "custom.tixstream-fx.job-history-visibility=true" + - option: "custom.tixstream-fx.use-transfer-guides" + line: "custom.tixstream-fx.use-transfer-guides=true" + - option: "custom.tixstream-fx.enable-job-templates" + line: "custom.tixstream-fx.enable-job-templates=true" + diff --git a/infrastructure/ansible/vars/keycloak.yml b/infrastructure/ansible/vars/keycloak.yml new file mode 100644 index 0000000..af4d0d9 --- /dev/null +++ b/infrastructure/ansible/vars/keycloak.yml @@ -0,0 +1,16 @@ +keycloak_version: 26.0.1 +keycloak_dir: /var/lib/keycloak +keycloak_archive: keycloak-{{ keycloak_version }}.zip +keycloak_admin_username: "admin" +keycloak_admin_password: "admin" +keycloak_create_admin: True +keycloak_mysql_host: localhost +keycloak_mysql_user: keycloak +keycloak_mysql_password: keycloak +keycloak_mysql_database: keycloak +keycloak_mysql_port: 3306 +keycloak_user: keycloak +keycloak_group: keycloak +tixel_realm: tixel +tixel_client_id: tixstreamfx +tixel_client_secret: REALLYSECRET diff --git a/infrastructure/ansible/vars/ldap.yml b/infrastructure/ansible/vars/ldap.yml new file mode 100644 index 0000000..c8ee3d7 --- /dev/null +++ b/infrastructure/ansible/vars/ldap.yml @@ -0,0 +1,58 @@ +--- +ldap_conf: /etc/openldap/ldap.conf +slapd_conf: /etc/openldap/slapd.conf +ldap_db_config_example: /usr/share/openldap-servers/DB_CONFIG.example +ldap_db_dir: /var/lib/ldap +ldap_db_config: "{{ ldap_db_dir }}/DB_CONFIG" +ldap_user: ldap +ldap_group: ldap +ldap_root_passwd: ldap +ldap_user_passwd: ldap +ldif_dir: /etc/openldap/ldif +ldif_root_passwd_file: "root_pw.ldif" +ldif_manager_passwd_file: "manager_pw.ldif" +ldif_config_file: "config.ldif" +ldif_base_file: "base.ldif" +ldif_user_file: "user.ldif" +ldif_group_file: "group.ldif" + +# note: if a new user is added. group.ldif.j2 needs to be updeted too! +ldap_users: + - uid: ernie + uidNumber: 1000 + givenName: Ernie + - uid: bert + uidNumber: 1001 + givenName: Bert + - uid: oskar + uidNumber: 1002 + givenName: Oskar + +ldap_schemas: + - /etc/openldap/schema/cosine.ldif + - /etc/openldap/schema/nis.ldif + - /etc/openldap/schema/inetorgperson.ldif + +access_manager_ldap_config: + - option: "custom.security.ldap.enabled" + line: "custom.security.ldap.enabled=true" + - option: "custom.security.ldap.url" + line: "custom.security.ldap.url=ldap\\://{{ current_host_config.ldap_server_ip }}\\:389" + - option: "custom.security.ldap.root-dn" + line: "custom.security.ldap.root-dn=dc\\=tixel,dc\\=it" + - option: "custom.security.ldap.user-search-base" + line: "custom.security.ldap.user-search-base=ou\\=Users" + - option: "custom.security.ldap.group-base-search" + line: "custom.security.ldap.group-base-search=ou\\=Groups" + - option: "custom.security.ldap.user-search-filter" + line: "custom.security.ldap.user-search-filter=(uid\\={0})" + - option: "custom.security.ldap.group-search-filter" + line: "custom.security.ldap.group-search-filter=uniqueMember\\={0}" + - option: "custom.security.ldap.group-role-attribute" + line: "custom.security.ldap.group-role-attribute=cn" + - option: "custom.security.ldap.email-attribute" + line: "custom.security.ldap.email-attribute=email" + - option: "custom.security.ldap.fullname-attribute" + line: "custom.security.ldap.fullname-attribute=cn" + +# vim:ft=ansible diff --git a/infrastructure/ansible/vars/local.yml b/infrastructure/ansible/vars/local.yml new file mode 100644 index 0000000..312aafe --- /dev/null +++ b/infrastructure/ansible/vars/local.yml @@ -0,0 +1,91 @@ +--- + +local_testdata_dir: /local_testdata +localuser: tixstream +localpass: tixstream +localgroup: tixstream + +local_shares: + recursive_source: + name: local_recursive_directory + local_path: "{{ local_testdata_dir }}/test-source-recursive" + public_uri: "test-src-recursive" + description: "Source recursive Local Share" + permissions: "2" + user_id: "1" + public: "true" + file_io_type: "SYNC" + sync_source: + name: local_sync_source + local_path: "{{ local_testdata_dir }}/test-source" + public_uri: "local_sync_source" + description: "Share on local machine using syncronous file IO" + permissions: "2" + user_id: "1" + public: "true" + file_io_type: "SYNC" + sync_destination: + name: local_sync_destination + local_path: "{{ local_testdata_dir }}/test-destination" + public_uri: "local_sync_destination" + description: "Share on local machine using syncronous file IO" + permissions: "6" + user_id: "1" + public: "true" + file_io_type: "SYNC" + sequential_source: + name: local_sequential_source + local_path: "{{ local_testdata_dir }}/test-source" + public_uri: "local_sequential_source" + description: "Share on local machine using sequential file IO" + permissions: "2" + user_id: "1" + public: "true" + file_io_type: "SEQUENTIAL" + sequential_destination: + name: local_sequential_destination + local_path: "{{ local_testdata_dir }}/test-destination" + public_uri: "local_sequential_destination" + description: "Share on local machine using sequential file IO" + permissions: "6" + user_id: "1" + public: "true" + file_io_type: "SEQUENTIAL" + fake_source: + name: local_fake_source + local_path: "{{ local_testdata_dir }}/test-source" + public_uri: "local_fake_source" + description: "Share on local machine using fake file IO" + permissions: "2" + user_id: "1" + public: "true" + file_io_type: "FAKE" + fake_destination: + name: local_fake_destination + local_path: "{{ local_testdata_dir }}/test-destination" + public_uri: "local_fake_destination" + description: "Share on local machine using fake file IO" + permissions: "6" + user_id: "1" + public: "true" + file_io_type: "FAKE" + windows_source: + name: local_windows_source + local_path: "{{ local_testdata_dir }}/test-source" + public_uri: "local_windows_source" + description: "Share on local machine using windows file IO" + permissions: "2" + user_id: "1" + public: "true" + file_io_type: "WINDOWS" + windows_destination: + name: local_windows_destination + local_path: "{{ local_testdata_dir }}/test-destination" + public_uri: "local_windows_destination" + description: "Share on local machine using windows file IO" + permissions: "6" + user_id: "1" + public: "true" + file_io_type: "WINDOWS" + +# vim:ft=ansible diff --git a/infrastructure/ansible/vars/proftpd.yml b/infrastructure/ansible/vars/proftpd.yml new file mode 100644 index 0000000..9c4573a --- /dev/null +++ b/infrastructure/ansible/vars/proftpd.yml @@ -0,0 +1,76 @@ +--- +ftpuser: tixstream +ftppass: tixstream +# created with: mkpasswd --hash=md5 +ftphash: $1$s2zr1Mjt$ie/OUvBVd85Eu3n0t8N17/ +ftpgroup: tixstream +proftpd_ftp_port: 21 + +sftpuser: "{{ ftpuser }}" +sftppass: "{{ ftppass }}" +sftphash: "{{ ftphash }}" +sftpgroup: "{{ ftpgroup }}" +proftpd_sftp_port: 22 + +relay_ftp_user: fxftp +relay_ftp_password: verysecret + +tixstream_express_job_manager_database_user: tixel +tixstream_express_job_manager_database_password: tixel +tixstream_express_job_manager_database_name: tixstream_express_job_manager +proftpd_txe_port: 10021 +proftpd_virtual_host: 0.0.0.0 + +ftp_shares: + source: + name: ftp_source + protocol: "FTP" + host: "{{ current_host_config.proftpd_server_ip }}" + port: "{{ proftpd_ftp_port }}" + username: "{{ ftpuser }}" + password: "{{ ftppass }}" + directory: "src" + description: "Source FTP Share" + permissions: "2" + user_id: "1" + public: "true" + destination: + name: ftp_destination + protocol: "FTP" + host: "{{ current_host_config.proftpd_server_ip }}" + port: "{{ proftpd_ftp_port }}" + username: "{{ ftpuser }}" + password: "{{ ftppass }}" + directory: "dest" + description: "Destination FTP Share" + permissions: "6" + user_id: "1" + public: "true" + +sftp_shares: + source: + name: sftp_source + protocol: "SFTP" + host: "{{ current_host_config.proftpd_server_ip }}" + port: "{{ proftpd_sftp_port }}" + username: "{{ sftpuser }}" + password: "{{ sftppass }}" + directory: "src" + description: "Source SFTP Share" + permissions: "2" + user_id: "1" + public: "true" + destination: + name: sftp_destination + protocol: "SFTP" + host: "{{ current_host_config.proftpd_server_ip }}" + port: "{{ proftpd_sftp_port }}" + username: "{{ sftpuser }}" + password: "{{ sftppass }}" + directory: "dest" + description: "Destination SFTP Share" + permissions: "6" + user_id: "1" + public: "true" + +# vim:ft=ansible diff --git a/infrastructure/ansible/vars/samba.yml b/infrastructure/ansible/vars/samba.yml new file mode 100644 index 0000000..0fb3474 --- /dev/null +++ b/infrastructure/ansible/vars/samba.yml @@ -0,0 +1,24 @@ +--- +smbuser: tixstream +smbpass: tixstream +smbgroup: tixstream + +samba_shares: + source: + name: samba_source + local_path: "{{ share_mount }}/src" + public_uri: "samba_source" + description: "Source Samba Share" + permissions: "2" + user_id: "1" + public: "true" + destination: + name: samba_destination + local_path: "{{ share_mount }}/dest" + public_uri: "samba_destination" + description: "Destination Samba Share" + permissions: "6" + user_id: "1" + public: "true" + +# vim:ft=ansible diff --git a/infrastructure/ansible/vars/smtplog.yml b/infrastructure/ansible/vars/smtplog.yml new file mode 100644 index 0000000..07462a4 --- /dev/null +++ b/infrastructure/ansible/vars/smtplog.yml @@ -0,0 +1,11 @@ +--- + +- smtplog_port: 2500 +- smtplog_service_file: /etc/systemd/system/smtplog.service +- smtplog_logdir: /var/log/smtplog +- smtplog_dir: /usr/local/bin +- smtplog_maildir: /var/log/smtplog +- smtpweb_port: 8025 +- smtpweb_service_file: /etc/systemd/system/smtpweb.service +- smtpweb_logdir: /var/log/smtpweb +# vim:ft=ansible \ No newline at end of file diff --git a/infrastructure/ansible/vars/static-vars-almalinux.yml b/infrastructure/ansible/vars/static-vars-almalinux.yml new file mode 100644 index 0000000..eed0e7d --- /dev/null +++ b/infrastructure/ansible/vars/static-vars-almalinux.yml @@ -0,0 +1,29 @@ +--- + +tixel_root: /opt/tixel +tixel_root_v3: /opt/tixstream-fx +tixel_html: /data/tixel/html +tixel_data: /data/tixel +data_dir: /data +share_name: share +share_mount: /mnt/share +tixstream_fx_user: tixstream +tixstream_fx_group: tixstream +tixway_user: tixway +mysql_root_password: standard_password + +tixel_config_directory: + path: "{{ tixel_root }}/config" + dest: "{{ share_mount }}/config" + +tixel_temp_directory: + path: "{{ tixel_root }}/tmp" + dest: "{{ share_mount }}/tmp" + +tixel_data_directory: + path: "{{ tixel_root }}/data" + dest: "{{ share_mount }}/data" + +proftpd_config: /etc/proftpd.conf + +remote_deployment_dir: "{{ ansible_env.HOME }}/deployment" diff --git a/infrastructure/ansible/vars/static-vars-centos.yml b/infrastructure/ansible/vars/static-vars-centos.yml new file mode 100644 index 0000000..74dc880 --- /dev/null +++ b/infrastructure/ansible/vars/static-vars-centos.yml @@ -0,0 +1,29 @@ +--- + +tixel_root: /opt/tixel +tixel_html: /data/tixel/html +tixel_data: /data/tixel +tixel_root_v3: /opt/tixstream-fx +data_dir: /data +share_name: share +share_mount: /mnt/share +tixstream_fx_user: tixstream +tixstream_fx_group: tixstream +tixway_user: tixway +mysql_root_password: standard_password + +tixel_config_directory: + path: "{{ tixel_root }}/config" + dest: "{{ share_mount }}/config" + +tixel_temp_directory: + path: "{{ tixel_root }}/tmp" + dest: "{{ share_mount }}/tmp" + +tixel_data_directory: + path: "{{ tixel_root }}/data" + dest: "{{ share_mount }}/data" + +proftpd_config: /etc/proftpd.conf + +remote_deployment_dir: "{{ ansible_env.HOME }}/deployment" diff --git a/infrastructure/ansible/vars/static-vars-debian.yml b/infrastructure/ansible/vars/static-vars-debian.yml new file mode 100644 index 0000000..b9aed52 --- /dev/null +++ b/infrastructure/ansible/vars/static-vars-debian.yml @@ -0,0 +1,20 @@ +--- + +tixel_root: /opt/tixel +tixel_root_v3: /opt/tixstream-fx +share_name: share +share_mount: /mnt/share + +tixel_config_directory: + path: "{{ tixel_root }}/config" + dest: "{{ share_mount }}/config" + +tixel_temp_directory: + path: "{{ tixel_root }}/tmp" + dest: "{{ share_mount }}/tmp" + +tixel_data_directory: + path: "{{ tixel_root }}/data" + dest: "{{ share_mount }}/data" + +remote_deployment_dir: "{{ ansible_env.HOME }}/deployment" diff --git a/infrastructure/ansible/vars/static-vars-rocky.yml b/infrastructure/ansible/vars/static-vars-rocky.yml new file mode 100644 index 0000000..eed0e7d --- /dev/null +++ b/infrastructure/ansible/vars/static-vars-rocky.yml @@ -0,0 +1,29 @@ +--- + +tixel_root: /opt/tixel +tixel_root_v3: /opt/tixstream-fx +tixel_html: /data/tixel/html +tixel_data: /data/tixel +data_dir: /data +share_name: share +share_mount: /mnt/share +tixstream_fx_user: tixstream +tixstream_fx_group: tixstream +tixway_user: tixway +mysql_root_password: standard_password + +tixel_config_directory: + path: "{{ tixel_root }}/config" + dest: "{{ share_mount }}/config" + +tixel_temp_directory: + path: "{{ tixel_root }}/tmp" + dest: "{{ share_mount }}/tmp" + +tixel_data_directory: + path: "{{ tixel_root }}/data" + dest: "{{ share_mount }}/data" + +proftpd_config: /etc/proftpd.conf + +remote_deployment_dir: "{{ ansible_env.HOME }}/deployment" diff --git a/infrastructure/ansible/vars/static-vars-ubuntu.yml b/infrastructure/ansible/vars/static-vars-ubuntu.yml new file mode 100644 index 0000000..6235094 --- /dev/null +++ b/infrastructure/ansible/vars/static-vars-ubuntu.yml @@ -0,0 +1,29 @@ +--- + +tixel_root: /opt/tixel +tixel_root_v3: /opt/tixstream-fx +tixel_html: "{{ tixel_data }}/html" +tixel_data: "{{ data_dir }}/tixel" +share_name: share +share_mount: /mnt/share +data_dir: /data +tixstream_fx_user: tixstream +tixstream_fx_group: tixstream +tixway_user: tixway +mysql_root_password: standard_password + +tixel_config_directory: + path: "{{ tixel_root }}/config" + dest: "{{ share_mount }}/config" + +tixel_temp_directory: + path: "{{ tixel_root }}/tmp" + dest: "{{ share_mount }}/tmp" + +tixel_data_directory: + path: "{{ tixel_root }}/data" + dest: "{{ share_mount }}/data" + +proftpd_config: "/etc/proftpd/proftpd.conf" + +remote_deployment_dir: "{{ ansible_env.HOME }}/deployment" \ No newline at end of file diff --git a/infrastructure/ansible/vars/static-vars-windows.yml b/infrastructure/ansible/vars/static-vars-windows.yml new file mode 100644 index 0000000..810d157 --- /dev/null +++ b/infrastructure/ansible/vars/static-vars-windows.yml @@ -0,0 +1,27 @@ +--- +tixel_root_v3: /opt/tixstream-fx + +tixel_root: "c:/bin/tixel" +tixel_root_v3: /opt/tixstream-fx +share_name: share +share_mount: "c:/mnt/share" + +tixel_config_directory: + path: "{{ tixel_root }}/config" + dest: "{{ tixel_root }}/config" + nginx: "{{ tixel_root }}/nginx/conf" + +nginx_config: + main: "{{ tixel_config_directory.nginx }}/nginx.conf" + bak: "{{ tixel_config_directory.nginx }}/nginx_http.conf.bak" + https: "{{ tixel_config_directory.nginx }}/nginx_https.conf" + +tixel_temp_directory: + path: "{{ tixel_root }}/tmp" + dest: "{{ share_mount }}/tmp" + +tixel_data_directory: + path: "{{ tixel_root }}/data" + dest: "{{ share_mount }}/data" + +remote_deployment_dir: "{{ ansible_facts['user_dir'] }}/deployment" diff --git a/infrastructure/infrastructure/cloud_init_router.cfg b/infrastructure/infrastructure/cloud_init_router.cfg new file mode 100644 index 0000000..e5cf56b --- /dev/null +++ b/infrastructure/infrastructure/cloud_init_router.cfg @@ -0,0 +1,58 @@ +#cloud-config +hostname: thesis-router +users: + - name: baUser + sudo: ALL=(ALL) NOPASSWD:ALL + shell: /bin/bash + ssh_authorized_keys: + - ${ssh_public_key} + +package_update: true +packages: + - qemu-guest-agent + - iptables-persistent + - iproute2 + +write_files: + - content: | + net.ipv4.ip_forward=1 + path: /etc/sysctl.d/99-ip-forward.conf + + - content: | + network: + version: 2 + ethernets: + ens3: + dhcp4: true + ens4: + dhcp4: false + addresses: [10.10.1.1/24] + ens5: + dhcp4: false + addresses: [10.10.2.1/24] + ens6: + dhcp4: false + addresses: [10.10.3.1/24] + path: /etc/netplan/99-router-config.yaml + +runcmd: + - netplan apply + - sysctl -p /etc/sysctl.d/99-ip-forward.conf + - sleep 5 + + - iptables -F FORWARD + + - iptables -A FORWARD -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT + + - iptables -A FORWARD -i ens4 -o ens5 -j ACCEPT + - iptables -A FORWARD -i ens4 -o ens6 -j ACCEPT + - iptables -A FORWARD -i ens5 -o ens4 -j ACCEPT + - iptables -A FORWARD -i ens5 -o ens6 -j ACCEPT + - iptables -A FORWARD -i ens6 -o ens4 -j ACCEPT + - iptables -A FORWARD -i ens6 -o ens5 -j ACCEPT + + - iptables -A FORWARD -s 10.10.0.0/16 -o ens3 -j ACCEPT + + - iptables -t nat -A POSTROUTING -o ens3 -j MASQUERADE + + - netfilter-persistent save diff --git a/infrastructure/infrastructure/cloud_init_worker.cfg b/infrastructure/infrastructure/cloud_init_worker.cfg new file mode 100644 index 0000000..6f67b96 --- /dev/null +++ b/infrastructure/infrastructure/cloud_init_worker.cfg @@ -0,0 +1,32 @@ +#cloud-config +hostname: ${hostname} +users: + - name: baUser + sudo: ALL=(ALL) NOPASSWD:ALL + shell: /bin/bash + ssh_authorized_keys: + - ${ssh_public_key} + +package_update: true +packages: + - qemu-guest-agent + - openssh-server + +write_files: + - content: | + network: + version: 2 + ethernets: + ens3: + dhcp4: true + ens4: + dhcp4: false + addresses: [10.10.${worker_index + 1}.10/24] + routes: + - to: 10.10.0.0/16 + via: 10.10.${worker_index + 1}.1 + metric: 100 + path: /etc/netplan/99-config.yaml + +runcmd: + - netplan apply diff --git a/infrastructure/infrastructure/inventory.tmpl b/infrastructure/infrastructure/inventory.tmpl new file mode 100644 index 0000000..7e257ee --- /dev/null +++ b/infrastructure/infrastructure/inventory.tmpl @@ -0,0 +1,17 @@ +[router] +thesis-router ansible_host=${router_ip} ansible_user=baUser ansible_ssh_private_key_file='${ssh_key_path}' ansible_ssh_common_args='-o StrictHostKeyChecking=no' + +[workers] +%{ for index, ip in worker_ips ~} +thesis-worker-${index} ansible_host=${ip} ansible_user=baUser ansible_ssh_private_key_file='${ssh_key_path}' ansible_ssh_common_args='-o StrictHostKeyChecking=no' +%{ endfor ~} + +[orchestrator] +thesis-worker-0 + +[sinks] +thesis-worker-1 +thesis-worker-2 + +[all:vars] +ansible_python_interpreter=/usr/bin/python3 diff --git a/infrastructure/infrastructure/main.tf b/infrastructure/infrastructure/main.tf new file mode 100644 index 0000000..c557f5b --- /dev/null +++ b/infrastructure/infrastructure/main.tf @@ -0,0 +1,145 @@ +resource "libvirt_network" "worker_net" { + count = 3 + name = "thesis-worker-${count.index}" + mode = "none" + domain = "thesis.local" + addresses = ["10.10.${count.index + 1}.0/24"] + dhcp { + enabled = false + } + dns { + enabled = false + } +} + +resource "libvirt_volume" "ubuntu_base" { + name = "ubuntu-base.qcow2" + pool = "default" + source = "https://cloud-images.ubuntu.com/noble/current/noble-server-cloudimg-amd64.img" + format = "qcow2" +} + +resource "libvirt_volume" "router_disk" { + name = "router.qcow2" + base_volume_id = libvirt_volume.ubuntu_base.id + pool = "default" + size = 20 * 1024 * 1024 * 1024 +} + +data "template_file" "router_cloud_init" { + template = file("${path.module}/cloud_init_router.cfg") + vars = { + ssh_public_key = file(var.ssh_key_path) + } +} + +resource "libvirt_cloudinit_disk" "router_init" { + name = "router-init.iso" + user_data = data.template_file.router_cloud_init.rendered + pool = "default" +} + +resource "libvirt_domain" "router" { + name = "thesis-router" + memory = 2048 + vcpu = 2 + + cloudinit = libvirt_cloudinit_disk.router_init.id + + network_interface { + network_name = "default" + wait_for_lease = true + } + + dynamic "network_interface" { + for_each = range(3) + content { + network_id = libvirt_network.worker_net[network_interface.value].id + addresses = ["10.10.${network_interface.value + 1}.1"] + } + } + + disk { + volume_id = libvirt_volume.router_disk.id + } + + console { + type = "pty" + target_port = "0" + target_type = "serial" + } +} + +resource "libvirt_volume" "worker_disk" { + count = 3 + name = "worker-${count.index}.qcow2" + base_volume_id = libvirt_volume.ubuntu_base.id + pool = "default" + size = 50 * 1024 * 1024 * 1024 +} + +data "template_file" "worker_cloud_init" { + count = 3 + template = file("${path.module}/cloud_init_worker.cfg") + vars = { + hostname = "worker-${count.index}" + worker_index = count.index + ssh_public_key = file(var.ssh_key_path) + } +} + +resource "libvirt_cloudinit_disk" "worker_init" { + count = 3 + name = "worker-init-${count.index}.iso" + user_data = data.template_file.worker_cloud_init[count.index].rendered + pool = "default" +} + +resource "libvirt_domain" "worker" { + count = 3 + name = "thesis-worker-${count.index}" + memory = 4096 + vcpu = 4 + + cloudinit = libvirt_cloudinit_disk.worker_init[count.index].id + + boot_device { + dev = ["hd", "cdrom"] + } + + network_interface { + network_name = "default" + wait_for_lease = true + } + + network_interface { + network_id = libvirt_network.worker_net[count.index].id + addresses = ["10.10.${count.index + 1}.10"] + } + + disk { + volume_id = libvirt_volume.worker_disk[count.index].id + } + + console { + type = "pty" + target_port = "0" + target_type = "serial" + } + + graphics { + type = "vnc" + listen_type = "address" + } +} + +resource "local_file" "ansible_inventory" { + content = templatefile("${path.module}/inventory.tmpl", + { + router_ip = libvirt_domain.router.network_interface.0.addresses[0] + worker_ips = [for vm in libvirt_domain.worker : vm.network_interface.0.addresses[0]] + ssh_key_path = abspath("${path.module}/tf-cloud-init") + } + ) + filename = "${path.module}/../ansible/inventory.ini" +} diff --git a/infrastructure/infrastructure/outputs.tf b/infrastructure/infrastructure/outputs.tf new file mode 100644 index 0000000..674b084 --- /dev/null +++ b/infrastructure/infrastructure/outputs.tf @@ -0,0 +1,13 @@ +output "router_ip_wan" { + value = libvirt_domain.router.network_interface.0.addresses + description = "Die IP des Routers im Host-Netzwerk (zum Einloggen)" +} + +output "worker_ips" { + value = [for vm in libvirt_domain.worker : vm.network_interface.0.addresses] + description = "Die internen IPs der Worker (nur via Router erreichbar!)" +} + +output "ssh_command_router" { + value = "ssh -i ./tf-cloud-init baUser@" +} diff --git a/infrastructure/infrastructure/providers.tf b/infrastructure/infrastructure/providers.tf new file mode 100644 index 0000000..4244eb7 --- /dev/null +++ b/infrastructure/infrastructure/providers.tf @@ -0,0 +1,12 @@ +terraform { + required_providers { + libvirt = { + source = "dmacvicar/libvirt" + version = "0.7.6" + } + } +} + +provider "libvirt" { + uri = "qemu:///system" +} diff --git a/infrastructure/infrastructure/variables.tf b/infrastructure/infrastructure/variables.tf new file mode 100644 index 0000000..f95413d --- /dev/null +++ b/infrastructure/infrastructure/variables.tf @@ -0,0 +1,5 @@ +variable "ssh_key_path" { + description = "Pfad zum Public Key für die VMs" + type = string + default = "./tf-cloud-init.pub" +} diff --git a/infrastructure/init_infrastructure.sh b/infrastructure/init_infrastructure.sh new file mode 100755 index 0000000..0f49fcf --- /dev/null +++ b/infrastructure/init_infrastructure.sh @@ -0,0 +1,6 @@ +#1/bin/bash +cd infrastructure +terraform init +terraform plan +terraform apply -auto-approve +cd .. diff --git a/infrastructure/provision_infrastructure.sh b/infrastructure/provision_infrastructure.sh new file mode 100755 index 0000000..d033bd4 --- /dev/null +++ b/infrastructure/provision_infrastructure.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +cd ansible +ansible-playbook -i inventory.ini site.yml +ansible-playbook -i inventory.ini mft.yml +cd .. diff --git a/infrastructure/start_all.sh b/infrastructure/start_all.sh new file mode 100755 index 0000000..3f4c471 --- /dev/null +++ b/infrastructure/start_all.sh @@ -0,0 +1,11 @@ +./init_infrastructure.sh && sleep 30 +./provision_infrastructure.sh +sleep 20 +ansible thesis-router -i ansible/inventory.ini -m shell -a "ping -c 3 10.10.1.10" +ansible thesis-router -i ansible/inventory.ini -m shell -a "ping -c 3 10.10.2.10" +ansible thesis-router -i ansible/inventory.ini -m shell -a "ping -c 3 10.10.3.10" +ansible thesis-router -i ansible/inventory.ini -m shell -a "ping -c 3 10.10.1.10" +ansible thesis-router -i ansible/inventory.ini -m shell -a "ping -c 3 10.10.2.10" +ansible thesis-router -i ansible/inventory.ini -m shell -a "ping -c 3 10.10.3.10" + +cat ansible/inventory.ini diff --git a/scenario_generator/Makefile b/scenario_generator/Makefile new file mode 100644 index 0000000..dc12267 --- /dev/null +++ b/scenario_generator/Makefile @@ -0,0 +1,94 @@ +.PHONY: help build test clean install run release lint fmt vet + +# Variablen +BINARY_NAME=scenario-generator +VERSION?=$(shell git describe --tags --always --dirty 2>/dev/null || echo "dev") +BUILD_TIME=$(shell date -u '+%Y-%m-%d_%H:%M:%S') +LDFLAGS=-ldflags "-X main.Version=${VERSION} -X main.BuildTime=${BUILD_TIME}" +GO=go +GOFLAGS=-v +GOOS?=$(shell go env GOOS) +GOARCH?=$(shell go env GOARCH) + +# Farben für Output +COLOR_RESET=\033[0m +COLOR_BOLD=\033[1m +COLOR_GREEN=\033[32m +COLOR_YELLOW=\033[33m + +help: ## Zeige diese Hilfe + @echo "$(COLOR_BOLD)Thesis Scenario Generator - Makefile$(COLOR_RESET)" + @echo "" + @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf " $(COLOR_GREEN)%-15s$(COLOR_RESET) %s\n", $$1, $$2}' + @echo "" + +build: ## Baue das Binary + @echo "$(COLOR_BOLD)Building $(BINARY_NAME) $(VERSION)...$(COLOR_RESET)" + CGO_ENABLED=0 GOOS=$(GOOS) GOARCH=$(GOARCH) $(GO) build $(GOFLAGS) $(LDFLAGS) -o $(BINARY_NAME) . + @echo "$(COLOR_GREEN)✓ Build erfolgreich: $(BINARY_NAME)$(COLOR_RESET)" + +build-linux: ## Baue für Linux (amd64) + @echo "$(COLOR_BOLD)Building for Linux...$(COLOR_RESET)" + GOOS=linux GOARCH=amd64 $(MAKE) build + @mv $(BINARY_NAME) $(BINARY_NAME)-linux-amd64 + +build-all: build-linux ## Baue für alle Plattformen + @echo "$(COLOR_GREEN)✓ Alle Builds abgeschlossen$(COLOR_RESET)" + +test: ## Führe Tests aus + @echo "$(COLOR_BOLD)Running tests...$(COLOR_RESET)" + $(GO) test -v -race -coverprofile=coverage.out ./... + @echo "$(COLOR_GREEN)✓ Tests erfolgreich$(COLOR_RESET)" + +coverage: test ## Zeige Test-Coverage + $(GO) tool cover -html=coverage.out + +lint: ## Führe Linting aus (benötigt golangci-lint) + @echo "$(COLOR_BOLD)Running linter...$(COLOR_RESET)" + @if command -v golangci-lint >/dev/null 2>&1; then \ + golangci-lint run ./...; \ + else \ + echo "$(COLOR_YELLOW)⚠ golangci-lint nicht installiert. Überspringe...$(COLOR_RESET)"; \ + fi + +fmt: ## Formatiere Code + @echo "$(COLOR_BOLD)Formatting code...$(COLOR_RESET)" + $(GO) fmt ./... + @echo "$(COLOR_GREEN)✓ Code formatiert$(COLOR_RESET)" + +vet: ## Führe go vet aus + @echo "$(COLOR_BOLD)Running go vet...$(COLOR_RESET)" + $(GO) vet ./... + @echo "$(COLOR_GREEN)✓ Vet erfolgreich$(COLOR_RESET)" + +clean: + @echo "$(COLOR_BOLD)Cleaning...$(COLOR_RESET)" + rm -f $(BINARY_NAME) + rm -f $(BINARY_NAME)-* + rm -f coverage.out + @echo "$(COLOR_GREEN)✓ Cleanup abgeschlossen$(COLOR_RESET)" + +install: build + @echo "$(COLOR_BOLD)Installing to /usr/local/bin...$(COLOR_RESET)" + sudo cp $(BINARY_NAME) /usr/local/bin/ + sudo chmod +x /usr/local/bin/$(BINARY_NAME) + @echo "$(COLOR_GREEN)✓ Installation abgeschlossen$(COLOR_RESET)" + +run: build + @echo "$(COLOR_BOLD)Running $(BINARY_NAME)...$(COLOR_RESET)" + ./$(BINARY_NAME) + +# Release +release: clean fmt vet test build-all ## Erstelle Release (build, test, fmt) + @echo "$(COLOR_GREEN)✓ Release $(VERSION) bereit$(COLOR_RESET)" + @echo "" + @echo "Binaries:" + @ls -lh $(BINARY_NAME)-* + +# Development +dev: fmt vet run + +check: fmt vet test lint + +# Default target +.DEFAULT_GOAL := help diff --git a/scenario_generator/cleanup_jobs.py b/scenario_generator/cleanup_jobs.py new file mode 100644 index 0000000..30e2eb9 --- /dev/null +++ b/scenario_generator/cleanup_jobs.py @@ -0,0 +1,73 @@ +import requests +from requests.auth import HTTPBasicAuth +import time +from urllib.parse import quote +import os + +TARGET_IPS = [ + "192.168.122.97", + "192.168.122.219", + "192.168.122.244", +] # Bei einem Neuausetzen der Testumgebung mit Terraform müssen diese an die neuen Adressen angepasst werden +PORT = os.getenv("PORT") +USER = os.getenv("USER") +PASSWORD = os.getenv("PASSWORD") +BASE_PATH = os.getenv("BASE_PATH") + + +def cleanup_jobs(): + auth = HTTPBasicAuth(USER, PASSWORD) + + for ip in TARGET_IPS: + url = f"http://{ip}:{PORT}{BASE_PATH}" + print(f"\n--- Starte Bereinigung für Ziel: {ip} ---") + + while True: + try: + response = requests.get(url, auth=auth) + response.raise_for_status() + data = response.json() + + job_list = data.get("jobs", []) + total_remaining = data.get("total", 0) + + if not job_list: + print( + f"Keine weiteren Jobs auf {ip} gefunden (Total laut API: {total_remaining})." + ) + break + + print( + f"Verarbeite Seite {data.get('page')} von {data.get('pages')}. " + f"Noch insgesamt {total_remaining} Jobs vorhanden." + ) + + for job in job_list: + if isinstance(job, dict): + job_id = job.get("job_id") + else: + job_id = str(job) + + if not job_id: + continue + + encoded_id = quote(job_id) + delete_url = f"{url}/{encoded_id}" + + del_response = requests.delete(delete_url, auth=auth) + + if del_response.status_code in [200, 202, 204]: + print(f" [OK] Gelöscht: {job_id}") + else: + print(f" [FEHLER] {job_id}: Status {del_response.status_code}") + + time.sleep(0.5) + + except Exception as e: + print(f"Ein Fehler ist aufgetreten bei {ip}: {e}") + break + + +if __name__ == "__main__": + cleanup_jobs() + print("\nFertig. Alle Systeme wurden bereinigt.") diff --git a/scenario_generator/go.mod b/scenario_generator/go.mod new file mode 100644 index 0000000..7bcf4e6 --- /dev/null +++ b/scenario_generator/go.mod @@ -0,0 +1,7 @@ +module codeberg.org/pata1704/scenario-generator + +go 1.25.5 + +require golang.org/x/crypto v0.48.0 + +require golang.org/x/sys v0.41.0 // indirect diff --git a/scenario_generator/go.sum b/scenario_generator/go.sum new file mode 100644 index 0000000..18578fa --- /dev/null +++ b/scenario_generator/go.sum @@ -0,0 +1,6 @@ +golang.org/x/crypto v0.48.0 h1:/VRzVqiRSggnhY7gNRxPauEQ5Drw9haKdM0jqfcCFts= +golang.org/x/crypto v0.48.0/go.mod h1:r0kV5h3qnFPlQnBSrULhlsRfryS2pmewsg+XfMgkVos= +golang.org/x/sys v0.41.0 h1:Ivj+2Cp/ylzLiEU89QhWblYnOE9zerudt9Ftecq2C6k= +golang.org/x/sys v0.41.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks= +golang.org/x/term v0.40.0 h1:36e4zGLqU4yhjlmxEaagx2KuYbJq3EwY8K943ZsHcvg= +golang.org/x/term v0.40.0/go.mod h1:w2P8uVp06p2iyKKuvXIm7N/y0UCRt3UfJTfZ7oOpglM= diff --git a/scenario_generator/inventory.go b/scenario_generator/inventory.go new file mode 100644 index 0000000..e3d3a25 --- /dev/null +++ b/scenario_generator/inventory.go @@ -0,0 +1,83 @@ +package main + +import ( + "bufio" + "fmt" + "os" + "strings" +) + +type HostConfig struct { + Name string + IP string + User string + KeyPath string + SSHArgs string +} + +type Inventory struct { + Router HostConfig + Workers map[string]HostConfig +} + +func ParseInventory(path string) (*Inventory, error) { + file, err := os.Open(path) + if err != nil { + return nil, fmt.Errorf("could not open inventory: %w", err) + } + defer file.Close() + + inv := &Inventory{ + Workers: make(map[string]HostConfig), + } + + var currentGroup string + scanner := bufio.NewScanner(file) + for scanner.Scan() { + line := strings.TrimSpace(scanner.Text()) + if line == "" || strings.HasPrefix(line, ";") || strings.HasPrefix(line, "#") { + continue + } + + if strings.HasPrefix(line, "[") && strings.HasSuffix(line, "]") { + currentGroup = strings.Trim(line, "[]") + continue + } + + parts := strings.Fields(line) + if len(parts) < 2 { + continue + } + + config := HostConfig{Name: parts[0]} + for _, part := range parts[1:] { + kv := strings.SplitN(part, "=", 2) + if len(kv) != 2 { + continue + } + val := strings.Trim(kv[1], "'\"") + switch kv[0] { + case "ansible_host": + config.IP = val + case "ansible_user": + config.User = val + case "ansible_ssh_private_key_file": + config.KeyPath = val + case "ansible_ssh_common_args": + config.SSHArgs = val + } + } + + if currentGroup == "router" { + inv.Router = config + } else if currentGroup == "workers" { + inv.Workers[config.Name] = config + } + } + + if err := scanner.Err(); err != nil { + return nil, err + } + + return inv, nil +} diff --git a/scenario_generator/main.go b/scenario_generator/main.go new file mode 100644 index 0000000..ee15451 --- /dev/null +++ b/scenario_generator/main.go @@ -0,0 +1,1146 @@ +package main + +import ( + "bytes" + "context" + "encoding/csv" + "encoding/json" + "flag" + "fmt" + "io" + "log" + "math/rand" + "net/http" + "net/url" + "os" + "os/signal" + "strings" + "sync" + "syscall" + "time" +) + +const ( + Port = "60000" + APIPort = "60001" + AuthHeader = "Basic YWRtaW46dmVyeXNlY3JldA==" + LogFile = "./thesis_scenario_ground_truth.csv" + IncomingDir = "/local_testdata/test-destination" + WorkerPoolSize = 10 + MaxRetries = 3 + RetryBackoff = 2 * time.Second + + MFTStatusCompleted = 870 + MFTStatusFailed = 900 + + // How long to wait for a single job before giving up + JobCompletionTimeout = 5 * time.Minute +) + +type ScenarioMode string + +const ( + ModeTraining ScenarioMode = "training" + ModeTesting ScenarioMode = "testing" + ModeAnomalyOnly ScenarioMode = "anomaly-only" +) + +// ExperimentConfig holds the full experiment timing configuration. +// Used by the built-in experiment runner (--run-experiment flag). +type ExperimentConfig struct { + BaselineDuration time.Duration + ChaosDuration time.Duration + CooldownDuration time.Duration + Scenarios []string // if empty, all scenarios are used +} + +type Worker struct { + Name string + Host string + ID string +} + +type TransferJob struct { + Description string `json:"description"` + Schedule string `json:"schedule"` + DestinationSystem string `json:"destination_system"` + DestinationShare string `json:"destination_share"` + SourceFileURIs []string `json:"source_file_uris"` + WaitForPublish bool `json:"wait_for_publish"` + FlatFileModeDisabled bool `json:"flat_file_mode_disabled"` +} + +type MFTJobResponse struct { + ID int `json:"id"` + JobID string `json:"job_id"` + StatusCode int `json:"status_code"` + StatusMessage string `json:"status_message"` + StatusDetail string `json:"status_detail"` +} + +type JobRequest struct { + SourceWorker Worker + DestWorker Worker + Schedule string + FileURI string + FileURIs []string + Description string + WorkloadType string + IsAnomaly bool +} + +type WorkloadFilter string + +const ( + WorkloadAll WorkloadFilter = "all" + WorkloadHighBW WorkloadFilter = "high-bw" + WorkloadHighIOPS WorkloadFilter = "high-iops" + WorkloadInterference WorkloadFilter = "interference" + WorkloadBatchOut WorkloadFilter = "batch-out" + WorkloadBatchIn WorkloadFilter = "batch-in" + WorkloadIdle WorkloadFilter = "idle" +) + +type Config struct { + Mode ScenarioMode + MonitoredWorker string + EnableBurst bool + EnableMaintenance bool + AnomalyRate float64 + RunExperiment bool + Experiment ExperimentConfig + WorkloadFilter WorkloadFilter +} + +type ScenarioGenerator struct { + workers []Worker + config Config + logWriter *csv.Writer + logFile *os.File + logMutex sync.Mutex + httpClient *http.Client + rand *rand.Rand + randMutex sync.Mutex + jobQueue chan JobRequest + wg sync.WaitGroup + sm *ScenarioManager +} + +func NewScenarioGenerator(config Config, inv *Inventory) (*ScenarioGenerator, error) { + var workers []Worker + for i := range 3 { + id := fmt.Sprintf("thesis-worker-%d", i) + host := id + if inv != nil { + if h, ok := inv.Workers[id]; ok { + if h.IP != "" { + host = h.IP + } + } + } + workers = append(workers, Worker{ + Name: fmt.Sprintf("Worker Node %d", i), + Host: host, + ID: id, + }) + } + + logFile, err := os.OpenFile(LogFile, os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0o644) + if err != nil { + return nil, fmt.Errorf("kann Log-Datei nicht öffnen: %w", err) + } + + stat, _ := logFile.Stat() + writer := csv.NewWriter(logFile) + if stat.Size() == 0 { + if err := writer.Write([]string{ + "timestamp", "action", "source", "target", "workload_type", "is_anomaly", "scenario_mode", + }); err != nil { + logFile.Close() + return nil, fmt.Errorf("kann Header nicht schreiben: %w", err) + } + writer.Flush() + } + + return &ScenarioGenerator{ + workers: workers, + config: config, + logWriter: writer, + logFile: logFile, + httpClient: &http.Client{Timeout: 30 * time.Second}, + rand: rand.New(rand.NewSource(time.Now().UnixNano())), + jobQueue: make(chan JobRequest, 100), + sm: nil, + }, nil +} + +func (sg *ScenarioGenerator) Close() error { + sg.logMutex.Lock() + defer sg.logMutex.Unlock() + sg.logWriter.Flush() + return sg.logFile.Close() +} + +func (sg *ScenarioGenerator) logGroundTruth(action, source, target, workloadType string, isAnomaly bool) { + sg.logMutex.Lock() + defer sg.logMutex.Unlock() + + timestamp := time.Now().Format("2006-01-02 15:04:05") + anomalyStr := "0" + if isAnomaly { + anomalyStr = "1" + } + + if err := sg.logWriter.Write([]string{ + timestamp, action, source, target, workloadType, anomalyStr, string(sg.config.Mode), + }); err != nil { + log.Printf("Fehler beim Schreiben in Log: %v", err) + return + } + sg.logWriter.Flush() + + anomalyMarker := "" + if isAnomaly { + anomalyMarker = " [ANOMALY]" + } + log.Printf("[GT] %s | %s: %s -> %s (%s)%s", timestamp, action, source, target, workloadType, anomalyMarker) +} + +func (sg *ScenarioGenerator) cleanupRemote() { + monitoredHost := sg.config.MonitoredWorker + log.Printf("Bereinige Incoming-Ordner auf %s (via SSH)...", monitoredHost) + + cmd := fmt.Sprintf("sudo find %s -type f -mmin +10 -delete", IncomingDir) + client, ok := sg.sm.SSHManager[monitoredHost] + if !ok { + log.Printf("Fehler: Kein SSH-Client für %s gefunden", monitoredHost) + return + } + + out, err := client.RunCommand(cmd) + if err != nil { + log.Printf("Remote Cleanup fehlgeschlagen: %v (Output: %s)", err, out) + return + } + log.Println("Remote Cleanup erfolgreich abgeschlossen.") +} + +func (sg *ScenarioGenerator) waitForAPI(ctx context.Context, worker Worker) error { + apiURL := fmt.Sprintf("http://%s:%s/transfer-job-manager/v1/jobs", worker.Host, Port) + log.Printf("Prüfe Verfügbarkeit von %s (%s)...", worker.Name, worker.Host) + + ticker := time.NewTicker(10 * time.Second) + defer ticker.Stop() + + for { + select { + case <-ctx.Done(): + return ctx.Err() + case <-ticker.C: + req, err := http.NewRequestWithContext(ctx, "GET", apiURL, nil) + if err != nil { + continue + } + req.Header.Set("Authorization", AuthHeader) + + resp, err := sg.httpClient.Do(req) + if err == nil && resp.StatusCode == 200 { + resp.Body.Close() + log.Printf("%s ist ONLINE", worker.Name) + return nil + } + if resp != nil { + resp.Body.Close() + } + log.Printf("Warte auf %s... Retry in 10s", worker.Name) + } + } +} + +func (sg *ScenarioGenerator) triggerJobWithRetry(ctx context.Context, req JobRequest) (string, error) { + const maxServiceRecoveryAttempts = 2 + + for recoveryAttempt := range maxServiceRecoveryAttempts + 1 { + jobID, err := sg.tryTriggerJob(ctx, req) + if err == nil { + return jobID, nil + } + + if recoveryAttempt >= maxServiceRecoveryAttempts { + return "", fmt.Errorf("job failed after service recovery: %w", err) + } + + log.Printf("[TRIGGER] Alle %d Versuche fehlgeschlagen, starte Health-Check auf %s...", + MaxRetries, req.SourceWorker.Host) + sg.checkAndRestartWorkerServices(req.SourceWorker) + } + + return "", fmt.Errorf("job trigger fehlgeschlagen nach Service-Recovery") +} + +// tryTriggerJob fuehrt MaxRetries POST-Versuche durch ohne Service-Recovery. +func (sg *ScenarioGenerator) tryTriggerJob(ctx context.Context, req JobRequest) (string, error) { + var lastErr error + + for attempt := range MaxRetries { + if attempt > 0 { + select { + case <-ctx.Done(): + return "", ctx.Err() + case <-time.After(RetryBackoff * time.Duration(attempt)): + } + } + + sourceFiles := req.FileURIs + if len(sourceFiles) == 0 && req.FileURI != "" { + sourceFiles = []string{req.FileURI} + } + + job := TransferJob{ + Description: req.Description, + Schedule: "NOW", + DestinationSystem: req.DestWorker.Name, + DestinationShare: "local_sync_destination", + SourceFileURIs: sourceFiles, + WaitForPublish: false, + FlatFileModeDisabled: false, + } + + jsonData, err := json.Marshal(job) + if err != nil { + return "", fmt.Errorf("marshal error: %w", err) + } + + apiURL := fmt.Sprintf("http://%s:%s/transfer-job-manager/v1/jobs", req.SourceWorker.Host, Port) + httpReq, err := http.NewRequestWithContext(ctx, "POST", apiURL, bytes.NewBuffer(jsonData)) + if err != nil { + return "", fmt.Errorf("request creation error: %w", err) + } + httpReq.Header.Set("Authorization", AuthHeader) + httpReq.Header.Set("Content-Type", "application/json") + + resp, err := sg.httpClient.Do(httpReq) + if err != nil { + lastErr = err + log.Printf("Fehler bei Job-Trigger (Versuch %d/%d): %v", attempt+1, MaxRetries, err) + continue + } + + if resp.StatusCode >= 200 && resp.StatusCode < 300 { + var result MFTJobResponse + if err := json.NewDecoder(resp.Body).Decode(&result); err != nil { + resp.Body.Close() + return "", fmt.Errorf("response decode error: %w", err) + } + resp.Body.Close() + log.Printf("Job submitted: id=%d job_id=%s", result.ID, result.JobID) + return result.JobID, nil + } + + io.Copy(io.Discard, resp.Body) + resp.Body.Close() + lastErr = fmt.Errorf("HTTP %d", resp.StatusCode) + log.Printf("Job fehlgeschlagen mit Status %d (Versuch %d/%d)", resp.StatusCode, attempt+1, MaxRetries) + } + + return "", fmt.Errorf("job failed after %d attempts: %w", MaxRetries, lastErr) +} + +func (sg *ScenarioGenerator) fetchJobStatus(ctx context.Context, sourceWorker Worker, jobIDStr string) (*MFTJobResponse, error) { + encodedJobID := url.PathEscape(jobIDStr) + apiURL := fmt.Sprintf("http://%s:%s/transfer-job-manager/v1/jobs/%s", + sourceWorker.Host, Port, encodedJobID) + + httpReq, err := http.NewRequestWithContext(ctx, "GET", apiURL, nil) + if err != nil { + return nil, err + } + httpReq.Header.Set("Authorization", AuthHeader) + + resp, err := sg.httpClient.Do(httpReq) + if err != nil { + return nil, err + } + defer resp.Body.Close() + + if resp.StatusCode != 200 { + return nil, fmt.Errorf("HTTP %d für job %s", resp.StatusCode, jobIDStr) + } + + var result MFTJobResponse + if err := json.NewDecoder(resp.Body).Decode(&result); err != nil { + return nil, fmt.Errorf("decode error: %w", err) + } + return &result, nil +} + +const MFTServiceRestartThreshold = 3 + +const ( + serviceTransferJobManager = "transfer-job-manager" + serviceTixstream = "tixstream" +) + +func (sg *ScenarioGenerator) checkAndRestartWorkerServices(worker Worker) bool { + log.Printf("[HEALTH] Pruefe Services auf %s via SSH...", worker.Host) + + hostCfg, ok := sg.sm.Inventory.Workers[worker.ID] + if !ok { + log.Printf("[HEALTH] Worker %s nicht in Inventory gefunden", worker.ID) + return false + } + + client, err := NewSSHClient(hostCfg) + if err != nil { + log.Printf("[HEALTH] SSH-Verbindung zu %s fehlgeschlagen: %v", worker.Host, err) + return false + } + defer client.Close() + + restarted := false + + for _, svc := range []string{serviceTransferJobManager, serviceTixstream} { + out, err := client.RunCommand(fmt.Sprintf("systemctl is-active %s", svc)) + status := strings.TrimSpace(out) + + if err != nil || status != "active" { + log.Printf("[HEALTH] Service %s auf %s ist '%s' - starte neu...", svc, worker.Host, status) + sg.logGroundTruth("MFT_SERVICE_RESTART", worker.Host, svc, "N/A", false) + + restartOut, restartErr := client.RunCommand(fmt.Sprintf("sudo systemctl restart %s", svc)) + if restartErr != nil { + log.Printf("[HEALTH] Restart von %s auf %s fehlgeschlagen: %v (output: %s)", + svc, worker.Host, restartErr, restartOut) + continue + } + + log.Printf("[HEALTH] %s auf %s erfolgreich neugestartet", svc, worker.Host) + restarted = true + } else { + log.Printf("[HEALTH] Service %s auf %s: OK (active)", svc, worker.Host) + } + } + + if restarted { + log.Printf("[HEALTH] Warte 15s auf Service-Startup auf %s...", worker.Host) + time.Sleep(15 * time.Second) + } + + return restarted +} + +func (sg *ScenarioGenerator) waitForJobCompletion(ctx context.Context, sourceWorker Worker, jobIDStr string) error { + ticker := time.NewTicker(5 * time.Second) + defer ticker.Stop() + timeout := time.After(JobCompletionTimeout) + + log.Printf("Warte auf Job-Abschluss: %s", jobIDStr) + + consecutiveErrors := 0 + + for { + select { + case <-ctx.Done(): + return ctx.Err() + case <-timeout: + return fmt.Errorf("job %s timed out nach %s", jobIDStr, JobCompletionTimeout) + case <-ticker.C: + result, err := sg.fetchJobStatus(ctx, sourceWorker, jobIDStr) + if err != nil { + consecutiveErrors++ + log.Printf("Polling-Fehler fuer Job %s (%d/%d): %v", + jobIDStr, consecutiveErrors, MFTServiceRestartThreshold, err) + + if consecutiveErrors >= MFTServiceRestartThreshold { + sg.checkAndRestartWorkerServices(sourceWorker) + consecutiveErrors = 0 + } + continue + } + + consecutiveErrors = 0 + + log.Printf("Job %s: %s – %s (%d)", + jobIDStr, result.StatusMessage, result.StatusDetail, result.StatusCode) + + switch { + case result.StatusCode == MFTStatusCompleted: + log.Printf("Job abgeschlossen: %s", jobIDStr) + return nil + case result.StatusCode == 880: + log.Printf("Job %s: temporaerer Fehler (880), warte auf Auto-Retry...", jobIDStr) + case result.StatusCode >= MFTStatusFailed: + return fmt.Errorf("job %s fehlgeschlagen (terminal): %s – %s", + jobIDStr, result.StatusMessage, result.StatusDetail) + } + } + } +} + +func (sg *ScenarioGenerator) triggerAndWait(ctx context.Context, req JobRequest) error { + jobIDStr, err := sg.triggerJobWithRetry(ctx, req) + if err != nil { + return err + } + return sg.waitForJobCompletion(ctx, req.SourceWorker, jobIDStr) +} + +func (sg *ScenarioGenerator) triggerJobOverSSHWithRetry(ctx context.Context, req JobRequest) error { + var lastErr error + + for attempt := range MaxRetries { + if attempt > 0 { + select { + case <-ctx.Done(): + return ctx.Err() + case <-time.After(RetryBackoff * time.Duration(1<= 0 { + log.Printf("WorkloadFilter aktiv: nur Phase '%s' (phase=%d) wird wiederholt", sg.config.WorkloadFilter, fixedPhase) + } + + phase := initialPhase + + for { + select { + case <-ctx.Done(): + log.Println("Shutdown-Signal empfangen") + return ctx.Err() + default: + } + + if sg.config.EnableMaintenance && sg.config.Mode != ModeTraining && phase == 0 && sg.intn(100) < 5 { + sg.runMaintenanceWorkload(ctx) + } + + switch phase { + case 0: + log.Println("PHASE 1: High Bandwidth (W0 -> W1)") + sg.logGroundTruth("START_PHASE_BW", W0.Host, W1.Host, "HIGH_BW", false) + + if err := sg.triggerAndWait(ctx, JobRequest{ + SourceWorker: W0, + DestWorker: W1, + FileURI: "local_sync_source/5g.mxf", + Description: "Thesis Phase 1: High BW", + WorkloadType: "HIGH_BW", + }); err != nil { + log.Printf("Phase 1 fehlgeschlagen: %v", err) + } + + sg.logGroundTruth("END_PHASE_BW", W0.Host, W1.Host, "HIGH_BW", false) + if fixedPhase >= 0 { + phase = 5 + } else { + phase = 1 + } + + case 1: + log.Println("PHASE 2: High IOPS (W0 -> W2)") + sg.logGroundTruth("START_PHASE_IOPS", W0.Host, W2.Host, "HIGH_IOPS", false) + + var iopsWg sync.WaitGroup + for i := 1; i <= 20; i++ { + select { + case <-ctx.Done(): + return ctx.Err() + default: + } + + iopsWg.Add(1) + go func(fileIdx int) { + defer iopsWg.Done() + if err := sg.triggerAndWait(ctx, JobRequest{ + SourceWorker: W0, + DestWorker: W2, + FileURI: fmt.Sprintf("local_sync_source/small_%d.dat", (fileIdx%10)+1), + Description: fmt.Sprintf("Thesis Phase 2: File %d", fileIdx), + WorkloadType: "HIGH_IOPS", + }); err != nil { + log.Printf("IOPS Job %d fehlgeschlagen: %v", fileIdx, err) + } + }(i) + + time.Sleep(200 * time.Millisecond) + } + + iopsWg.Wait() + + sg.logGroundTruth("END_PHASE_IOPS", W0.Host, W2.Host, "HIGH_IOPS", false) + if fixedPhase >= 0 { + phase = 5 + } else { + phase = 2 + } + + case 2: + log.Println("PHASE 3: Interferenz (W1 -> W0)") + sg.logGroundTruth("START_PHASE_INTERFERENCE", W1.Host, W0.Host, "INTERFERENCE", false) + + if err := sg.triggerAndWait(ctx, JobRequest{ + SourceWorker: W1, + DestWorker: W0, + FileURI: "local_sync_source/1g.mxf", + Description: "Thesis Phase 3: Interference", + WorkloadType: "INTERFERENCE", + }); err != nil { + log.Printf("Phase 3 fehlgeschlagen: %v", err) + } + + sg.cleanupRemote() + sg.logGroundTruth("END_PHASE_INTERFERENCE", W1.Host, W0.Host, "INTERFERENCE", false) + if fixedPhase >= 0 { + phase = 5 + } else { + phase = 3 + } + + case 3: + log.Println("PHASE 4: Batch Transfer OUT (W0 -> W2)") + sg.logGroundTruth("START_PHASE_BATCH_OUT", W0.Host, W2.Host, "BATCH_IOPS_OUT", false) + + if err := sg.triggerAndWait(ctx, JobRequest{ + SourceWorker: W0, + DestWorker: W2, + FileURIs: localSyncSeries("small_", 1, 20), + Description: "Thesis Phase 4: Bulk Transfer Out", + WorkloadType: "BATCH_IOPS_OUT", + }); err != nil { + log.Printf("Batch Out fehlgeschlagen: %v", err) + } + + sg.logGroundTruth("END_PHASE_BATCH_OUT", W0.Host, W2.Host, "BATCH_IOPS_OUT", false) + if fixedPhase >= 0 { + phase = 5 + } else { + phase = 4 + } + + case 4: + log.Println("PHASE 5: Batch Transfer IN (W1 -> W0)") + sg.logGroundTruth("START_PHASE_BATCH_IN", W1.Host, W0.Host, "BATCH_IOPS_IN", false) + + if err := sg.triggerAndWait(ctx, JobRequest{ + SourceWorker: W1, + DestWorker: W0, + FileURIs: localSyncSeries("small_", 1, 20), + Description: "Thesis Phase 5: Bulk Transfer In", + WorkloadType: "BATCH_IOPS_IN", + }); err != nil { + log.Printf("Batch In fehlgeschlagen: %v", err) + } + + sg.cleanupRemote() + sg.logGroundTruth("END_PHASE_BATCH_IN", W1.Host, W0.Host, "BATCH_IOPS_IN", false) + if fixedPhase >= 0 { + phase = 5 + } else { + phase = 5 + } + + case 5: + if sg.config.Mode == ModeTesting && sg.shouldGenerateBurst() { + sg.runBurstWorkload(ctx) + } else { + log.Println("PHASE 6: IDLE (Baseline)") + sg.logGroundTruth("IDLE", "ALL", "ALL", "IDLE", false) + select { + case <-ctx.Done(): + return ctx.Err() + case <-time.After(60 * time.Second): + } + } + + phase = max(fixedPhase, 0) + sg.cleanupRemote() + log.Println("Zyklus abgeschlossen, starte von vorne...") + } + } +} + +func (sg *ScenarioGenerator) RunExperiment(ctx context.Context) error { + exp := sg.config.Experiment + + scenarios := exp.Scenarios + if len(scenarios) == 0 { + for _, s := range sg.sm.GetScenarios() { + scenarios = append(scenarios, s.ID) + } + } + + totalDuration := exp.BaselineDuration + time.Duration(len(scenarios))*(exp.ChaosDuration+exp.CooldownDuration) + log.Printf("Experiment gestartet. Geschätzte Gesamtdauer: %.1f Stunden", totalDuration.Hours()) + log.Printf(" Baseline: %.0f Min | Chaos/Szenario: %.0f Min | Cooldown: %.0f Min | Szenarien: %d", + exp.BaselineDuration.Minutes(), exp.ChaosDuration.Minutes(), exp.CooldownDuration.Minutes(), len(scenarios)) + + log.Printf(" PHASE 1: BASELINE (%.0f Min)", exp.BaselineDuration.Minutes()) + + sg.logGroundTruth("EXPERIMENT_BASELINE_START", "ALL", "ALL", "EXPERIMENT", false) + + baselineCtx, baselineCancel := context.WithTimeout(ctx, exp.BaselineDuration) + + if err := sg.Run(baselineCtx); err != nil && err != context.DeadlineExceeded && err != context.Canceled { + baselineCancel() + return fmt.Errorf("baseline fehlgeschlagen: %w", err) + } + baselineCancel() + + sg.logGroundTruth("EXPERIMENT_BASELINE_END", "ALL", "ALL", "EXPERIMENT", false) + log.Println("Baseline abgeschlossen. 10s Pause vor Chaos-Phase...") + select { + case <-ctx.Done(): + return ctx.Err() + case <-time.After(10 * time.Second): + } + + log.Printf(" PHASE 2: CHAOS INJEKTION (%d Szenarien)", len(scenarios)) + + chaosWorkloadCtx, chaosWorkloadCancel := context.WithCancel(ctx) + defer chaosWorkloadCancel() + + workloadDone := make(chan error, 1) + go func() { + workloadDone <- sg.Run(chaosWorkloadCtx) + }() + + for i, scenarioID := range scenarios { + select { + case <-ctx.Done(): + sg.sm.StopScenario() + chaosWorkloadCancel() + <-workloadDone + return ctx.Err() + default: + } + + log.Printf("[%d/%d] CHAOS START: %s", i+1, len(scenarios), scenarioID) + sg.logGroundTruth("EXPERIMENT_CHAOS_START", "Orchestrator", "System", scenarioID, true) + + if err := sg.sm.StartScenario(scenarioID); err != nil { + log.Printf("Fehler beim Starten von %s: %v – überspringe", scenarioID, err) + continue + } + + select { + case <-ctx.Done(): + sg.sm.StopScenario() + chaosWorkloadCancel() + <-workloadDone + return ctx.Err() + case <-time.After(exp.ChaosDuration): + } + + sg.sm.StopScenario() + sg.logGroundTruth("EXPERIMENT_CHAOS_END", "Orchestrator", "System", scenarioID, true) + log.Printf("[%d/%d] CHAOS STOP: %s | Cooldown: %.0f Min", i+1, len(scenarios), scenarioID, exp.CooldownDuration.Minutes()) + + select { + case <-ctx.Done(): + chaosWorkloadCancel() + <-workloadDone + return ctx.Err() + case <-time.After(exp.CooldownDuration): + } + } + + chaosWorkloadCancel() + <-workloadDone + + log.Println(" EXPERIMENT ABGESCHLOSSEN") + sg.logGroundTruth("EXPERIMENT_END", "ALL", "ALL", "EXPERIMENT", false) + + return nil +} + +func (sg *ScenarioGenerator) startAPIServer(ctx context.Context, cancelFunc context.CancelFunc) { + mux := http.NewServeMux() + + mux.HandleFunc("/scenarios", func(w http.ResponseWriter, r *http.Request) { + if r.Method != http.MethodGet { + http.Error(w, "Method not allowed", http.StatusMethodNotAllowed) + return + } + scenarios := sg.sm.GetScenarios() + w.Header().Set("Content-Type", "application/json") + json.NewEncoder(w).Encode(scenarios) + }) + + mux.HandleFunc("/scenarios/start", func(w http.ResponseWriter, r *http.Request) { + if r.Method != http.MethodPost { + http.Error(w, "Method not allowed", http.StatusMethodNotAllowed) + return + } + id := r.URL.Query().Get("id") + if id == "" { + http.Error(w, "Missing id parameter", http.StatusBadRequest) + return + } + if err := sg.sm.StartScenario(id); err != nil { + http.Error(w, err.Error(), http.StatusInternalServerError) + return + } + fmt.Fprintf(w, "Scenario %s started", id) + }) + + mux.HandleFunc("/scenarios/stop", func(w http.ResponseWriter, r *http.Request) { + if r.Method != http.MethodPost { + http.Error(w, "Method not allowed", http.StatusMethodNotAllowed) + return + } + sg.sm.StopScenario() + fmt.Fprintf(w, "Scenario stopped") + }) + + server := &http.Server{Addr: ":" + APIPort, Handler: mux} + + go func() { + log.Printf("API Server gestartet auf Port %s", APIPort) + if err := server.ListenAndServe(); err != nil && err != http.ErrServerClosed { + log.Printf("API Server Fehler: %v", err) + cancelFunc() + } + }() + + go func() { + <-ctx.Done() + shutdownCtx, cancel := context.WithTimeout(context.Background(), 5*time.Second) + defer cancel() + server.Shutdown(shutdownCtx) + }() +} + +func main() { + log.SetFlags(log.LstdFlags | log.Lshortfile) + + mode := flag.String("mode", "training", "Szenario-Modus: training, testing, anomaly-only") + worker := flag.String("worker", "thesis-worker-0", "Überwachter Worker") + burst := flag.Bool("burst", true, "Burst-Traffic aktivieren") + maintenance := flag.Bool("maintenance", true, "Wartungsfenster aktivieren") + anomalyRate := flag.Float64("anomaly-rate", 0.1, "Anomalie-Rate im Testing-Mode") + inventoryPath := flag.String("inventory", "inventory.ini", "Pfad zur Ansible inventory.ini") + + runExperiment := flag.Bool("run-experiment", false, "Vollständiges Experiment ausführen (Baseline + Chaos)") + baselineHours := flag.Float64("baseline-hours", 6, "Dauer der Baseline-Phase in Stunden") + chaosMins := flag.Float64("chaos-mins", 20, "Dauer jedes aktiven Chaos-Szenarios in Minuten") + cooldownMins := flag.Float64("cooldown-mins", 20, "Cooldown-Dauer zwischen Szenarien in Minuten") + workload := flag.String("workload", "all", "Workload-Filter: all | high-bw | high-iops | interference | batch-out | batch-in | idle") + + flag.Parse() + + config := Config{ + Mode: ScenarioMode(*mode), + MonitoredWorker: *worker, + EnableBurst: *burst, + EnableMaintenance: *maintenance, + AnomalyRate: *anomalyRate, + RunExperiment: *runExperiment, + WorkloadFilter: WorkloadFilter(*workload), + Experiment: ExperimentConfig{ + BaselineDuration: time.Duration(*baselineHours * float64(time.Hour)), + ChaosDuration: time.Duration(*chaosMins * float64(time.Minute)), + CooldownDuration: time.Duration(*cooldownMins * float64(time.Minute)), + }, + } + + if config.Mode != ModeTraining && config.Mode != ModeTesting && config.Mode != ModeAnomalyOnly { + log.Fatalf("Ungültiger Modus: %s", config.Mode) + } + + validWorkloads := map[WorkloadFilter]bool{ + WorkloadAll: true, WorkloadHighBW: true, WorkloadHighIOPS: true, + WorkloadInterference: true, WorkloadBatchOut: true, WorkloadBatchIn: true, + WorkloadIdle: true, + } + if !validWorkloads[config.WorkloadFilter] { + log.Fatalf("Ungültiger Workload-Filter: %s (erlaubt: all, high-bw, high-iops, interference, batch-out, batch-in, idle)", config.WorkloadFilter) + } + + log.Println("Thesis Scenario Generator gestartet") + log.Printf(" Modus: %s | Experiment: %v | Workload: %s", config.Mode, config.RunExperiment, config.WorkloadFilter) + + inv, err := ParseInventory(*inventoryPath) + if err != nil { + log.Fatalf("Fehler beim Parsen des Inventory: %v", err) + } + + generator, err := NewScenarioGenerator(config, inv) + if err != nil { + log.Fatalf("Fehler beim Initialisieren des Generators: %v", err) + } + + sm, err := NewScenarioManager(inv, generator.logGroundTruth) + if err != nil { + log.Fatalf("Fehler beim Initialisieren des Scenario Managers: %v", err) + } + generator.sm = sm + + defer func() { + if err := generator.Close(); err != nil { + log.Printf("Fehler beim Schließen: %v", err) + } + sm.StopScenario() + }() + + ctx, cancel := context.WithCancel(context.Background()) + defer cancel() + + generator.startAPIServer(ctx, cancel) + + sigChan := make(chan os.Signal, 1) + signal.Notify(sigChan, syscall.SIGINT, syscall.SIGTERM) + + errChan := make(chan error, 1) + go func() { + if config.RunExperiment { + errChan <- generator.RunExperiment(ctx) + } else { + errChan <- generator.Run(ctx) + } + }() + + select { + case sig := <-sigChan: + log.Printf("Signal %v empfangen, fahre graceful herunter...", sig) + cancel() + done := make(chan struct{}) + go func() { + generator.wg.Wait() + close(done) + }() + select { + case <-done: + log.Println("Alle Worker beendet") + case <-time.After(30 * time.Second): + log.Println("Shutdown Timeout erreicht") + } + + case err := <-errChan: + if err != nil && err != context.Canceled && err != context.DeadlineExceeded { + log.Fatalf("Generator-Fehler: %v", err) + } + } + + log.Println("Scenario Generator beendet") +} diff --git a/scenario_generator/run_evaluation.py b/scenario_generator/run_evaluation.py new file mode 100644 index 0000000..d9eeefc --- /dev/null +++ b/scenario_generator/run_evaluation.py @@ -0,0 +1,379 @@ +#!/usr/bin/env python3 +import argparse +import logging +import os +import shutil +import subprocess +import sys +import time +from pathlib import Path + +CONFIG = { + "INVENTORY": Path.home() + / "dev/privat/Go/BachelorThesis/bachelor-infra/ansible/inventory.ini", + "GENERATOR": "./scenario-generator", + "GROUND_TRUTH": "thesis_scenario_ground_truth.csv", + "OUTPUT_DIR": Path("./evaluation_results"), + "LOG_DIR": Path("./evaluation_logs"), + "CLEANUP_SCRIPT": "./cleanup_jobs.py", + "SSH_KEY": Path.home() + / "dev/privat/Go/BachelorThesis/bachelor-infra/infrastructure/tf-cloud-init", + "VM_USER": "baUser", + "VM_HOST": "192.168.122.97", + "PIPELINE_WORKDIR": "/home/baUser/anomaly-detector-pipeline", + "PIPELINE_BIN": "/home/baUser/anomaly-detector-pipeline/anomaly-pipeline", + "PIPELINE_DB": "/home/baUser/anomaly-detector-pipeline/data/pipeline_test.duckdb", + "PIPELINE_DB_WAL": "/home/baUser/anomaly-detector-pipeline/data/pipeline_test.duckdb.wal", + "PIPELINE_ANOMALIES": "/home/baUser/anomaly-detector-pipeline/logs/anomalies.jsonl", + "PIPELINE_LOG": "/tmp/thesis_pipeline.log", + "METRICS_CSV": "/var/log/thesis_baseline_metrics.csv", + "VM_PIDFILE": "/tmp/thesis_pipeline.pid", + "WORKLOADS": ["high-bw", "high-iops", "interference", "batch-out", "batch-in"], + "RUNS_PER_WORKLOAD": 3, + "DURATIONS": { + "full_baseline_hrs": 2, + "isolated_baseline_hrs": 1.5, + "chaos_mins": 10, + "cooldown_mins": 10, + "baseline_chaos_mins": 15, + "baseline_cooldown_mins": 15, + "idle_mins": 60, + }, +} + +DRY_RUN = False +RESUME = False + +os.makedirs(CONFIG["LOG_DIR"], exist_ok=True) +os.makedirs(CONFIG["OUTPUT_DIR"], exist_ok=True) + +logging.basicConfig( + level=logging.INFO, + format="[%(asctime)s] %(message)s", + handlers=[ + logging.FileHandler(CONFIG["LOG_DIR"] / "evaluation_master.log"), + logging.StreamHandler(sys.stdout), + ], +) + +def is_completed(label): + if not RESUME: + return False + path = CONFIG["OUTPUT_DIR"] / f"pipeline_{label}" + if path.exists(): + logging.info(f">>> [SKIP] '{label}' bereits abgeschlossen.") + return True + return False + + +def run_local(cmd, check=True, capture=False): + if DRY_RUN: + logging.info(f"[DRY-RUN] Local Exec: {cmd}") + return None + try: + return subprocess.run( + cmd, shell=True, check=check, capture_output=capture, text=True + ) + except subprocess.CalledProcessError as e: + if check: + logging.error(f"Kritischer Fehler bei Befehl: {cmd}") + raise + return None + + +def vm_ssh(cmd, check=True): + ssh_cmd = ( + f"ssh -i {CONFIG['SSH_KEY']} -o StrictHostKeyChecking=no " + f'{CONFIG["VM_USER"]}@{CONFIG["VM_HOST"]} "{cmd}"' + ) + return run_local(ssh_cmd, check=check) + + +def rsync_from_vm(remote_path, local_dest): + rsync_cmd = ( + f"rsync -avz -e 'ssh -i {CONFIG['SSH_KEY']} -o StrictHostKeyChecking=no' " + f"{CONFIG['VM_USER']}@{CONFIG['VM_HOST']}:{remote_path} {local_dest}" + ) + if DRY_RUN: + logging.info(f"[DRY-RUN] Rsync Exec: {rsync_cmd}") + else: + run_local(rsync_cmd, check=False) + + +def run_cleanup_jobs(): + logging.info("Starte cleanup_jobs.py...") + if DRY_RUN: + logging.info(f"[DRY-RUN] python3 {CONFIG['CLEANUP_SCRIPT']}") + else: + run_local(f"python3 {CONFIG['CLEANUP_SCRIPT']}") + + +def wait_for_port(port=60001, timeout=90): + if DRY_RUN: + return + logging.info(f"Warte auf Port {port}...") + start_time = time.time() + while True: + res = subprocess.run(f"ss -tlnp 2>/dev/null | grep -q ':{port}'", shell=True) + if res.returncode != 0: + break + if time.time() - start_time > timeout: + logging.error(f"Port {port} blockiert immer noch!") + sys.exit(1) + time.sleep(2) + + +def start_pipeline_on_vm(): + logging.info("Starte Pipeline auf VM...") + + cmd = ( + f"cd {CONFIG['PIPELINE_WORKDIR']} && bash -c '" + f"{CONFIG['PIPELINE_BIN']} > /tmp/thesis_pipeline.log 2>&1 & disown; " + f"echo \\$! > {CONFIG['VM_PIDFILE']}'" + ) + vm_ssh(cmd) + + if not DRY_RUN: + logging.info("Warte 10s auf Initialisierung...") + time.sleep(10) + + check_cmd = f"[ -f {CONFIG['VM_PIDFILE']} ] && kill -0 \\$(cat {CONFIG['VM_PIDFILE']}) 2>/dev/null" + result = vm_ssh(check_cmd, check=False) + + if result and result.returncode == 0: + logging.info("Pipeline erfolgreich gestartet und aktiv.") + else: + logging.error("Pipeline-Start-Check fehlgeschlagen!") + log_tail = vm_ssh(f"tail -n 20 /tmp/thesis_pipeline.log", check=False) + if log_tail and log_tail.stdout: + logging.error( + f"Letzte Zeilen aus /tmp/thesis_pipeline.log auf der VM:\n{log_tail.stdout}" + ) + else: + logging.error( + "Das Log-File auf der VM konnte nicht gelesen werden oder ist leer." + ) + sys.exit(1) + + +def stop_pipeline_on_vm(): + logging.info("Stoppe Pipeline auf VM...") + cmd = rf""" + if [ -f {CONFIG["VM_PIDFILE"]} ]; then + PID=\$(cat {CONFIG["VM_PIDFILE"]}) + if kill -0 "\$PID" 2>/dev/null; then + kill "\$PID" + for i in \$(seq 1 30); do + kill -0 "\$PID" 2>/dev/null || break + sleep 1 + done + fi + rm -f {CONFIG["VM_PIDFILE"]} + fi + """ + vm_ssh(cmd) + + +def toggle_metrics(state="start"): + action = "start" if state == "start" else "stop" + logging.info(f"{action.capitalize()}e Metrics-Collector...") + vm_ssh(f"sudo systemctl {action} metrics-collector.service") + + +def archive_and_reset(label): + dest = CONFIG["OUTPUT_DIR"] / f"pipeline_{label}" + if not DRY_RUN: + os.makedirs(dest, exist_ok=True) + rsync_from_vm(CONFIG["PIPELINE_DB"], dest / "pipeline.duckdb") + rsync_from_vm(CONFIG["PIPELINE_ANOMALIES"], dest / "anomalies.jsonl") + rsync_from_vm(CONFIG["METRICS_CSV"], dest / "baseline_metrics.csv") + rsync_from_vm(CONFIG["PIPELINE_LOG"], dest / "pipeline.log") + vm_ssh( + f"rm -f {CONFIG['PIPELINE_DB']}* {CONFIG['PIPELINE_ANOMALIES']} && sudo rm -f {CONFIG['METRICS_CSV']}" + ) + + +def run_validation_experiment(label, generator_args): + if is_completed(label): + return + + logging.info(f"\n{'=' * 60}\nRUN: {label}\n{'=' * 60}") + + run_local("pkill -f '[s]cenario-generator' || true", check=False) + + wait_for_port(60001) + run_cleanup_jobs() + toggle_metrics("start") + + log_file = CONFIG["LOG_DIR"] / f"{label}_generator.log" + run_local(f"{CONFIG['GENERATOR']} {generator_args} 2>&1 | tee {log_file}") + + toggle_metrics("stop") + archive_and_reset(label) + + gt_file = Path(CONFIG["GROUND_TRUTH"]) + if not DRY_RUN and gt_file.exists(): + shutil.move(gt_file, CONFIG["OUTPUT_DIR"] / f"gt_{label}.csv") + + +def run_experiment(label, generator_args): + if is_completed(label): + return + + logging.info(f"\n{'=' * 60}\nRUN: {label}\n{'=' * 60}") + + run_local("pkill -f '[s]cenario-generator' || true", check=False) + + wait_for_port(60001) + run_cleanup_jobs() + start_pipeline_on_vm() + toggle_metrics("start") + + log_file = CONFIG["LOG_DIR"] / f"{label}_generator.log" + run_local(f"{CONFIG['GENERATOR']} {generator_args} 2>&1 | tee {log_file}") + + stop_pipeline_on_vm() + toggle_metrics("stop") + archive_and_reset(label) + + gt_file = Path(CONFIG["GROUND_TRUTH"]) + if not DRY_RUN and gt_file.exists(): + shutil.move(gt_file, CONFIG["OUTPUT_DIR"] / f"gt_{label}.csv") + + +def step_1_system_baseline(): + if is_completed("system_baseline"): + return + logging.info("--- SCHRITT 1: System-Baseline ---") + run_cleanup_jobs() + toggle_metrics("start") + if not DRY_RUN: + time.sleep(CONFIG["DURATIONS"]["idle_mins"] * 60) + toggle_metrics("stop") + dest = CONFIG["OUTPUT_DIR"] / "pipeline_system_baseline" + if not DRY_RUN: + os.makedirs(dest, exist_ok=True) + rsync_from_vm(CONFIG["METRICS_CSV"], dest / "baseline_metrics.csv") + vm_ssh(f"sudo rm -f {CONFIG['METRICS_CSV']}") + + +def step_2_pipeline_baseline(): + if is_completed("idle_pipeline_baseline"): + return + logging.info("--- SCHRITT 2: Pipeline-Baseline ---") + run_cleanup_jobs() + start_pipeline_on_vm() + toggle_metrics("start") + idle_hrs = CONFIG["DURATIONS"]["idle_mins"] / 60.0 + gen_args = f"--inventory={CONFIG['INVENTORY']} --workload=idle --baseline-hours={idle_hrs} --run-experiment" + run_local( + f"{CONFIG['GENERATOR']} {gen_args} > {CONFIG['LOG_DIR']}/idle_baseline.log 2>&1 &" + ) + if not DRY_RUN: + time.sleep(CONFIG["DURATIONS"]["idle_mins"] * 60) + run_local("pkill -f '[s]cenario-generator' || true", check=False) + stop_pipeline_on_vm() + toggle_metrics("stop") + archive_and_reset("idle_pipeline_baseline") + + +def step_3_validation(target_run=None): + d = CONFIG["DURATIONS"] + runs_to_do = ( + [target_run] if target_run else range(1, CONFIG["RUNS_PER_WORKLOAD"] + 1) + ) + for r in runs_to_do: + label = f"validation_run{r}" + args = ( + f"--inventory={CONFIG['INVENTORY']} --workload=all --run-experiment " + f"--baseline-hours={d['isolated_baseline_hrs']} --chaos-mins={d['chaos_mins']} " + f"--cooldown-mins={d['cooldown_mins']}" + ) + run_validation_experiment(label, args) + if not DRY_RUN and r != runs_to_do[-1]: + logging.info("Pause zwischen Runs...") + time.sleep(120) + + +def step_4_full_cycle(target_run=None): + d = CONFIG["DURATIONS"] + runs_to_do = ( + [target_run] if target_run else range(1, CONFIG["RUNS_PER_WORKLOAD"] + 1) + ) + for r in runs_to_do: + label = f"full_cycle_run{r}" + args = ( + f"--inventory={CONFIG['INVENTORY']} --workload=all --run-experiment " + f"--baseline-hours={d['full_baseline_hrs']} --chaos-mins={d['baseline_chaos_mins']} " + f"--cooldown-mins={d['baseline_cooldown_mins']}" + ) + run_experiment(label, args) + if not DRY_RUN and r != runs_to_do[-1]: + logging.info("Pause zwischen Runs...") + time.sleep(120) + + +def step_5_isolated(target_workload=None, target_run=None): + workloads = [target_workload] if target_workload else CONFIG["WORKLOADS"] + runs_to_do = ( + [target_run] if target_run else range(1, CONFIG["RUNS_PER_WORKLOAD"] + 1) + ) + d = CONFIG["DURATIONS"] + + for wl in workloads: + for r in runs_to_do: + label = f"{wl}_run{r}" + args = ( + f"--inventory={CONFIG['INVENTORY']} --workload={wl} --run-experiment " + f"--baseline-hours={d['isolated_baseline_hrs']} --chaos-mins={d['chaos_mins']} " + f"--cooldown-mins={d['cooldown_mins']}" + ) + run_experiment(label, args) + if not DRY_RUN and r != runs_to_do[-1]: + logging.info("Pause zwischen Runs...") + time.sleep(120) + + +def main(): + global DRY_RUN, RESUME + parser = argparse.ArgumentParser(description="Evaluation Automator") + parser.add_argument( + "--step", choices=["1", "2", "3", "4", "5", "all"], default="all" + ) + parser.add_argument("--workload", choices=CONFIG["WORKLOADS"]) + parser.add_argument("--run", type=int) + parser.add_argument("--dry-run", action="store_true") + parser.add_argument("--resume", action="store_true") + + args = parser.parse_args() + DRY_RUN = args.dry_run + RESUME = args.resume + + if DRY_RUN: + logging.info("!!! DRY-RUN MODUS !!!") + if RESUME: + logging.info(">>> RESUME MODUS AKTIVIERT.") + + try: + if args.step in ["1", "all"]: + step_1_system_baseline() + if args.step in ["2", "all"]: + step_2_pipeline_baseline() + if args.step in ["3", "all"]: + step_3_validation(args.run) + if args.step in ["4", "all"]: + step_4_full_cycle(args.run) + if args.step in ["5", "all"]: + step_5_isolated(args.workload, args.run) + logging.info("\nEVALUATION ABGESCHLOSSEN.") + except KeyboardInterrupt: + logging.warning("\nAbbruch! Cleanup...") + if not DRY_RUN: + stop_pipeline_on_vm() + toggle_metrics("stop") + subprocess.run("pkill -f '[s]cenario-generator'", shell=True) + sys.exit(1) + + +if __name__ == "__main__": + main() diff --git a/scenario_generator/scenarios.go b/scenario_generator/scenarios.go new file mode 100644 index 0000000..c1412ae --- /dev/null +++ b/scenario_generator/scenarios.go @@ -0,0 +1,485 @@ +package main + +import ( + "context" + "fmt" + "log" + "sync" + "time" +) + +type ScenarioType string + +const ( + TypeNetwork ScenarioType = "network" + TypeResource ScenarioType = "resource" +) + +type InjectionMode string + +const ( + InjectionContinuous InjectionMode = "continuous" + InjectionPulsed InjectionMode = "pulsed" +) + +type Command struct { + Host string + Command string +} + +type ScenarioDef struct { + ID string + Description string + + ChaosHypothesis string + + RealWorldAnalog string + + Type ScenarioType + + InjectionMode InjectionMode + + PulseDuration time.Duration + + PauseDuration time.Duration + + StartCmds []Command + StopCmds []Command + + IsFlapping bool + + EnableRecoveryRestart bool + + RecoveryRestartHosts []string +} + +const tixstreamServiceUnit = "tixstream" +const tjmServiceUnit = "transfer-job-manager" + +func tixstreamRestart() string { + return fmt.Sprintf("sudo systemctl restart %s", tixstreamServiceUnit) +} + +func tjmRestart() string { + return fmt.Sprintf("sudo systemctl restart %s", tjmServiceUnit) +} + +type ScenarioManager struct { + Inventory *Inventory + SSHManager map[string]*SSHClient + ActiveScenario *ScenarioDef + mu sync.Mutex + logFn func(action, source, target, workloadType string, isAnomaly bool) + cancelFlap context.CancelFunc + cancelPulse context.CancelFunc +} + +func NewScenarioManager(inv *Inventory, logFn func(string, string, string, string, bool)) (*ScenarioManager, error) { + sm := &ScenarioManager{ + Inventory: inv, + SSHManager: make(map[string]*SSHClient), + logFn: logFn, + } + + client, err := NewSSHClient(inv.Router) + if err != nil { + return nil, fmt.Errorf("failed to connect to router: %v", err) + } + sm.SSHManager["router"] = client + + for name, config := range inv.Workers { + client, err := NewSSHClient(config) + if err != nil { + log.Printf("Warning: failed to connect to worker %s: %v", name, err) + continue + } + sm.SSHManager[name] = client + } + + return sm, nil +} + +func (sm *ScenarioManager) GetScenarios() []ScenarioDef { + return []ScenarioDef{ + + // ── NETWORK SCENARIOS ────────────────────────────────────────────────── + + { + ID: "slow-connection", + Description: "Niedrige Bandbreite + hohe Latenz (Satellit / WAN-Link)", + ChaosHypothesis: "Wir nehmen an, dass tixstream bei 50 Mbit/s und 300–400 ms RTT " + + "weiterhin Transfers abschließt, jedoch mit messbar reduziertem Durchsatz " + + "und erhöhter Transfer-Dauer.", + RealWorldAnalog: "WAN-Verbindung zwischen zwei DTN-Sites über Satellit oder " + + "stark ausgelasteten Backbone-Link (typisch in wissenschaftlichen Campusnetzen).", + Type: TypeNetwork, + InjectionMode: InjectionContinuous, + StartCmds: []Command{ + {"router", "sudo tc qdisc add dev ens4 root tbf rate 30mbit burst 128kbit latency 500ms"}, + {"router", "sudo tc qdisc add dev ens5 root tbf rate 30mbit burst 128kbit latency 500ms"}, + {"router", "sudo tc qdisc add dev ens6 root handle 1: netem delay 300ms"}, + {"router", "sudo tc qdisc add dev ens6 parent 1:1 handle 10: tbf rate 30mbit burst 128kbit latency 500ms"}, + }, + StopCmds: []Command{ + {"router", "sudo tc qdisc del dev ens4 root || true"}, + {"router", "sudo tc qdisc del dev ens5 root || true"}, + {"router", "sudo tc qdisc del dev ens6 root || true"}, + }, + }, + + { + ID: "high-latency", + Description: "Hohe Latenz (150–250 ms RTT)", + ChaosHypothesis: "Wir nehmen an, dass tixstream bei 150–250 ms RTT (mit ±10–20 ms Jitter) " + + "stabile Verbindungen aufrecht erhält, jedoch Protokoll-Timeouts und " + + "Retransmissions sichtbar werden.", + RealWorldAnalog: "Intercontinental DTN-Transfers (z.B. DE ↔ US), " + + "oder Routing über congested Peering-Points.", + Type: TypeNetwork, + InjectionMode: InjectionContinuous, + StartCmds: []Command{ + {"router", "sudo tc qdisc add dev ens4 root netem delay 250ms 20ms distribution normal"}, + {"router", "sudo tc qdisc add dev ens5 root netem delay 250ms 20ms distribution normal"}, + {"router", "sudo tc qdisc add dev ens6 root netem delay 350ms 40ms distribution normal"}, + }, + StopCmds: []Command{ + {"router", "sudo tc qdisc del dev ens4 root || true"}, + {"router", "sudo tc qdisc del dev ens5 root || true"}, + {"router", "sudo tc qdisc del dev ens6 root || true"}, + }, + }, + + { + ID: "packet-loss", + Description: "Paketverlust (1–3%)", + ChaosHypothesis: "Wir nehmen an, dass tixstream bei 3% Paketverlust auf dem Datenpfad " + + "Retransmissions durchführt und Transfers abschließt, ohne in einen " + + "Fehler-Zustand zu geraten, bei 1% marginal messbare Auswirkungen zeigt.", + RealWorldAnalog: "Fehlerhafte Transceiver, überlastete Switch-Ports, oder " + + "Wireless-Backhaul mit schlechter Signalqualität im ScienceDMZ.", + Type: TypeNetwork, + InjectionMode: InjectionContinuous, + StartCmds: []Command{ + {"router", "sudo tc qdisc add dev ens4 root netem loss 5% 30%"}, + {"router", "sudo tc qdisc add dev ens5 root netem loss 5% 30%"}, + {"router", "sudo tc qdisc add dev ens6 root netem loss 3% 30%"}, + }, + StopCmds: []Command{ + {"router", "sudo tc qdisc del dev ens4 root || true"}, + {"router", "sudo tc qdisc del dev ens5 root || true"}, + {"router", "sudo tc qdisc del dev ens6 root || true"}, + }, + }, + + { + ID: "congestion", + Description: "Netzüberlastung (Delay + Loss + Rate Limit kombiniert)", + ChaosHypothesis: "Wir nehmen an, dass tixstream unter kombinierter Überlastung " + + "(50 ms Delay, 1% Loss, 80 Mbit/s Rate Limit) Transfers verlangsamt, " + + "jedoch keine Verbindungsabbrüche erzeugt.", + RealWorldAnalog: "Shared-Use-Link im ScienceDMZ unter gleichzeitigem Bulk-Transfer " + + "mehrerer Nutzer; typisch bei BigData-Experimenten ohne Traffic-Shaping.", + Type: TypeNetwork, + InjectionMode: InjectionContinuous, + StartCmds: []Command{ + {"router", "sudo tc qdisc add dev ens4 root handle 1: netem delay 50ms 10ms loss 3% 25%"}, + {"router", "sudo tc qdisc add dev ens4 parent 1:1 handle 10: tbf rate 40mbit burst 128kbit latency 100ms"}, + {"router", "sudo tc qdisc add dev ens5 root handle 1: netem delay 50ms 10ms loss 3% 25%"}, + {"router", "sudo tc qdisc add dev ens5 parent 1:1 handle 10: tbf rate 40mbit burst 128kbit latency 100ms"}, + }, + StopCmds: []Command{ + {"router", "sudo tc qdisc del dev ens4 root || true"}, + {"router", "sudo tc qdisc del dev ens5 root || true"}, + }, + }, + + { + ID: "partial-outage", + Description: "Partielle Netzunterbrechung (W0 ↔ W1 Pfad gesperrt)", + ChaosHypothesis: "Wir nehmen an, dass tixstream bei vollständiger Unterbrechung des " + + "W0↔W1-Pfades Transfers auf diesem Pfad als fehlgeschlagen markiert, " + + "den W0↔W2-Pfad jedoch nicht beeinflusst.", + RealWorldAnalog: "Ausfall eines Switch-Ports oder einer Firewall-Regel im ScienceDMZ, " + + "die einen spezifischen DTN-zu-DTN-Pfad blockiert.", + Type: TypeNetwork, + InjectionMode: InjectionContinuous, + StartCmds: []Command{ + {"router", "sudo iptables -A FORWARD -i ens4 -o ens5 -j DROP"}, + {"router", "sudo iptables -A FORWARD -i ens5 -o ens4 -j DROP"}, + {"router", "sudo tc qdisc add dev ens6 root netem delay 10ms"}, + }, + StopCmds: []Command{ + {"router", "sudo iptables -D FORWARD -i ens4 -o ens5 -j DROP || true"}, + {"router", "sudo iptables -D FORWARD -i ens5 -o ens4 -j DROP || true"}, + {"router", "sudo tc qdisc del dev ens6 root || true"}, + }, + }, + + { + ID: "flapping", + Description: "Verbindungsinstabilität / Wackelkontakt (30s Periode)", + ChaosHypothesis: "Wir nehmen an, dass tixstream bei periodisch unterbrochenen " + + "Netzverbindungen (100% Loss für 30s, dann normal für 30s) " + + "Reconnect-Mechanismen aktiviert und Transfers nach Wiederherstellung " + + "der Verbindung fortsetzt.", + RealWorldAnalog: "Instabile optische Verbindung, failing SFP-Transceiver, oder " + + "BGP-Route-Flapping zwischen zwei DTN-Sites.", + Type: TypeNetwork, + InjectionMode: InjectionContinuous, // Flapping has its own goroutine + IsFlapping: true, + StartCmds: []Command{ + {"router", "sudo tc qdisc add dev ens4 root netem loss 100%"}, + {"router", "sudo tc qdisc add dev ens5 root netem loss 100%"}, + }, + StopCmds: []Command{ + {"router", "sudo tc qdisc del dev ens4 root || true"}, + {"router", "sudo tc qdisc del dev ens5 root || true"}, + }, + }, + + { + ID: "cpu-stress", + Description: "CPU-Sättigung auf W0 (pulsed, 4 Kerne, moderate Last)", + ChaosHypothesis: "Wir nehmen an, dass tixstream bei temporärer CPU-Sättigung " + + "(4 Kerne für 45s) messbar erhöhte Transfer-Latenz zeigt, sich aber " + + "nach Ende der Lastphase vollständig erholt.", + RealWorldAnalog: "Konkurrierende wissenschaftliche Rechenaufgabe auf einem DTN " + + "(z.B. On-the-fly Kompression, Checksummen-Validierung großer Datasets), " + + "wie sie im ScienceDMZ-Kontext bei fehlender CPU-Reservierung auftreten.", + Type: TypeResource, + InjectionMode: InjectionPulsed, + PulseDuration: 45 * time.Second, + PauseDuration: 55 * time.Second, + StartCmds: []Command{ + {"thesis-worker-0", "nohup stress-ng --cpu 4 --cpu-method matrix --timeout 50s > /dev/null 2>&1 &"}, + }, + StopCmds: []Command{ + {"thesis-worker-0", "pkill -f stress-ng || true"}, + }, + EnableRecoveryRestart: false, + }, + + { + ID: "io-stress", + Description: "Disk I/O Bottleneck auf W0 (pulsed, gemäßigt)", + ChaosHypothesis: "Wir nehmen an, dass tixstream bei kurzzeitiger Disk-I/O-Sättigung " + + "(30s) Schreib-Timeouts zeigt und transferierte Dateien mit Verzögerung " + + "schreibt, sich nach Ende der I/O-Last jedoch ohne Neustart erholt.", + RealWorldAnalog: "Paralleler Zugriff auf denselben Storage-Backend durch " + + "Archivierungs- oder Indexierungsprozesse auf einem DTN; typisch bei " + + "POSIX-Shared-Storage ohne I/O-Scheduling.", + Type: TypeResource, + InjectionMode: InjectionPulsed, + PulseDuration: 35 * time.Second, + PauseDuration: 60 * time.Second, + StartCmds: []Command{ + {"thesis-worker-0", "nohup stress-ng --io 3 --hdd 1 --hdd-bytes 512m --timeout 40s > /dev/null 2>&1 &"}, + }, + StopCmds: []Command{ + {"thesis-worker-0", "pkill -f stress-ng || true"}, + }, + EnableRecoveryRestart: true, + RecoveryRestartHosts: []string{"thesis-worker-0"}, + }, + + { + ID: "mem-stress", + Description: "Memory Pressure auf W0 (pulsed, 2.0 GB)", + ChaosHypothesis: "Wir nehmen an, dass tixstream unter moderatem Speicherdruck (2.0 GB) " + + "messbar erhöhte Latenz durch erhöhte Page-Fault-Rate zeigt, " + + "jedoch nicht vom OOM-Killer beendet wird.", + RealWorldAnalog: "In-Memory-Verarbeitung (z.B. Metadaten-Extraktion, " + + "Stream-Processing) eines konkurrierenden Prozesses auf einem DTN " + + "mit begrenztem RAM.", + Type: TypeResource, + InjectionMode: InjectionPulsed, + PulseDuration: 30 * time.Second, + PauseDuration: 60 * time.Second, + StartCmds: []Command{ + {"thesis-worker-0", "nohup stress-ng --vm 1 --vm-bytes 2000m --vm-keep --timeout 35s > /dev/null 2>&1 &"}, + }, + StopCmds: []Command{ + {"thesis-worker-0", "pkill -f stress-ng || true"}, + }, + EnableRecoveryRestart: true, + RecoveryRestartHosts: []string{"thesis-worker-0"}, + }, + } +} + +func (sm *ScenarioManager) StartScenario(id string) error { + sm.mu.Lock() + defer sm.mu.Unlock() + + if sm.ActiveScenario != nil { + sm.stopActiveScenario() + } + + scenarios := sm.GetScenarios() + var target *ScenarioDef + for _, s := range scenarios { + if s.ID == id { + target = &s + break + } + } + + if target == nil { + return fmt.Errorf("scenario %s not found", id) + } + + switch { + case target.IsFlapping: + ctx, cancel := context.WithCancel(context.Background()) + sm.cancelFlap = cancel + go sm.runFlapping(ctx, target) + + case target.InjectionMode == InjectionPulsed: + ctx, cancel := context.WithCancel(context.Background()) + sm.cancelPulse = cancel + go sm.runPulsed(ctx, target) + + default: + for _, cmd := range target.StartCmds { + client, ok := sm.SSHManager[cmd.Host] + if !ok { + log.Printf("Host %s not found in SSH manager", cmd.Host) + continue + } + if _, err := client.RunCommand(cmd.Command); err != nil { + log.Printf("Error running start command on %s: %v", cmd.Host, err) + } + } + } + + sm.ActiveScenario = target + sm.logFn("START_ANOMALY", "Orchestrator", "System", target.ID, true) + return nil +} + +func (sm *ScenarioManager) StopScenario() { + sm.mu.Lock() + defer sm.mu.Unlock() + sm.stopActiveScenario() +} + +func (sm *ScenarioManager) stopActiveScenario() { + if sm.ActiveScenario == nil { + return + } + + if sm.cancelFlap != nil { + sm.cancelFlap() + sm.cancelFlap = nil + } + + if sm.cancelPulse != nil { + sm.cancelPulse() + sm.cancelPulse = nil + } + + for _, cmd := range sm.ActiveScenario.StopCmds { + client, ok := sm.SSHManager[cmd.Host] + if !ok { + continue + } + if _, err := client.RunCommand(cmd.Command); err != nil { + log.Printf("Error running stop command on %s: %v", cmd.Host, err) + } + } + + sm.logFn("STOP_ANOMALY", "Orchestrator", "System", sm.ActiveScenario.ID, true) + + if sm.ActiveScenario.EnableRecoveryRestart { + log.Printf("Recovery restart triggered for scenario %s", sm.ActiveScenario.ID) + sm.logFn("RECOVERY_RESTART", "Orchestrator", "System", sm.ActiveScenario.ID, false) + + time.Sleep(3 * time.Second) + + for _, host := range sm.ActiveScenario.RecoveryRestartHosts { + client, ok := sm.SSHManager[host] + if !ok { + log.Printf("Recovery restart: host %s not found", host) + continue + } + out, err := client.RunCommand(tixstreamRestart()) + if err != nil { + log.Printf("Recovery restart failed on %s: %v (output: %s)", host, err, out) + } else { + log.Printf("Recovery restart successful on %s", host) + } + } + + time.Sleep(10 * time.Second) + } + + sm.ActiveScenario = nil +} + +func (sm *ScenarioManager) runPulsed(ctx context.Context, s *ScenarioDef) { + log.Printf("Pulsed injection started for scenario %s (pulse=%s pause=%s)", + s.ID, s.PulseDuration, s.PauseDuration) + + runCmds := func(cmds []Command) { + for _, cmd := range cmds { + client, ok := sm.SSHManager[cmd.Host] + if !ok { + continue + } + if _, err := client.RunCommand(cmd.Command); err != nil { + log.Printf("Pulsed cmd error on %s: %v", cmd.Host, err) + } + } + } + + for { + sm.logFn("PULSE_ON", "Orchestrator", "System", s.ID, true) + runCmds(s.StartCmds) + + select { + case <-ctx.Done(): + runCmds(s.StopCmds) + return + case <-time.After(s.PulseDuration): + } + + sm.logFn("PULSE_OFF", "Orchestrator", "System", s.ID, true) + runCmds(s.StopCmds) + + select { + case <-ctx.Done(): + return + case <-time.After(s.PauseDuration): + } + } +} + +func (sm *ScenarioManager) runFlapping(ctx context.Context, s *ScenarioDef) { + ticker := time.NewTicker(30 * time.Second) + defer ticker.Stop() + + active := false + for { + select { + case <-ctx.Done(): + return + case <-ticker.C: + active = !active + cmds := s.StopCmds + action := "FLAP_OFF" + if active { + cmds = s.StartCmds + action = "FLAP_ON" + } + + sm.logFn(action, "Orchestrator", "System", s.ID, true) + for _, cmd := range cmds { + client, ok := sm.SSHManager[cmd.Host] + if !ok { + continue + } + client.RunCommand(cmd.Command) + } + } + } +} diff --git a/scenario_generator/ssh.go b/scenario_generator/ssh.go new file mode 100644 index 0000000..8ff0c99 --- /dev/null +++ b/scenario_generator/ssh.go @@ -0,0 +1,87 @@ +package main + +import ( + "fmt" + "os" + "time" + + "golang.org/x/crypto/ssh" +) + +type SSHClient struct { + Config HostConfig + client *ssh.Client +} + +func NewSSHClient(config HostConfig) (*SSHClient, error) { + key, err := os.ReadFile(config.KeyPath) + if err != nil { + return nil, fmt.Errorf("unable to read private key: %v", err) + } + + signer, err := ssh.ParsePrivateKey(key) + if err != nil { + return nil, fmt.Errorf("unable to parse private key: %v", err) + } + + sshConfig := &ssh.ClientConfig{ + User: config.User, + Auth: []ssh.AuthMethod{ + ssh.PublicKeys(signer), + }, + HostKeyCallback: ssh.InsecureIgnoreHostKey(), + Timeout: 10 * time.Second, + } + + client, err := ssh.Dial("tcp", fmt.Sprintf("%s:22", config.IP), sshConfig) + if err != nil { + return nil, fmt.Errorf("failed to dial: %v", err) + } + + return &SSHClient{ + Config: config, + client: client, + }, nil +} + +func (s *SSHClient) Close() error { + if s.client != nil { + return s.client.Close() + } + return nil +} + +func (s *SSHClient) RunCommand(cmd string) (string, error) { + session, err := s.client.NewSession() + if err != nil { + return "", fmt.Errorf("failed to create session: %v", err) + } + defer session.Close() + + output, err := session.CombinedOutput(cmd) + if err != nil { + return string(output), fmt.Errorf("failed to run command '%s': %v (output: %s)", cmd, err, string(output)) + } + + return string(output), nil +} + +func (s *SSHClient) RunCommandBackground(cmd string) error { + session, err := s.client.NewSession() + if err != nil { + return fmt.Errorf("failed to create session: %v", err) + } + + err = session.Start(cmd) + if err != nil { + session.Close() + return fmt.Errorf("failed to start command: %v", err) + } + + go func() { + session.Wait() + session.Close() + }() + + return nil +}